# Importing libraries
from arch import arch_model
import pandas as pd
import numpy as np
import itertools
import plotly.express as px
import plotly.graph_objects as go
from sklearn.preprocessing import StandardScaler
from tqdm.notebook import tqdm
from statistics import mean
from datetime import date, timedelta
import yfinance as yf
# Getting the date five years ago to download the current timeframe
years = (date.today() - timedelta(weeks=104)).strftime("%Y-%m-%d")
# Stocks to analyze
stocks = ['GE', 'GPRO', 'FIT', 'F']
# Getting the data for multiple stocks
df = yf.download(stocks, start=years)
print('Number of Rows: ', df.shape[0])
[*********************100%***********************] 4 of 4 completed Number of Rows: 502
# Storing the dataframes in a dictionary
stock_df = {}
for col in set(df.columns.get_level_values(0)):
# Assigning the information (High, Low, etc.) for each stock in the dictionary
stock_df[col] = df[col]
The closing prices only
stock_df['Diff'] = stock_df['Close'].pct_change(1).dropna() * 100
stock_df['Diff']
| F | FIT | GE | GPRO | |
|---|---|---|---|---|
| Date | ||||
| 2018-09-24 | -2.639596 | -4.713808 | -3.533280 | -1.393191 |
| 2018-09-25 | -2.085504 | 0.530039 | -4.003410 | 3.924647 |
| 2018-09-26 | -1.277954 | -3.163442 | 1.064778 | 4.531725 |
| 2018-09-27 | -0.431509 | 0.725952 | 1.229144 | 4.913297 |
| 2018-09-28 | 0.216690 | -3.603609 | -2.081526 | -0.826452 |
| ... | ... | ... | ... | ... |
| 2020-09-14 | 1.714284 | 1.271859 | 3.361349 | 2.666664 |
| 2020-09-15 | -1.123594 | 0.156989 | -0.813011 | 1.038966 |
| 2020-09-16 | -0.284091 | 0.940438 | 10.655739 | 3.598974 |
| 2020-09-17 | 3.703707 | -0.155283 | 4.444447 | -0.248145 |
| 2020-09-18 | 0.688185 | 0.233287 | 0.212764 | 0.870643 |
501 rows × 4 columns
for stock in stock_df['Diff'].columns:
fig = px.line(stock_df['Diff'],
x=stock_df['Diff'].index,
y=stock_df['Diff'][stock],
title=f'Daily Return Percentage for {stock}')
fig.show()
def param_search(model, data, order):
"""
Loops through each iteration of the order combinations of the model and returns the best performing parameter
with the lowest AIC score
"""
# Empty list containing the combination and AIC score
lst = []
# Loop to find the best combination
for comb in order:
try:
# Instantiating the model
mod = model(data,
p=comb[0],
o=comb[1],
q=comb[2])
# Fitting the model
output = mod.fit()
# Appending to the list
lst.append([comb, output.aic])
except:
continue
# Sorting the list
lst = sorted(lst, key=lambda i: i[1])
# Returning the combination with the lowest score
return lst[0][0]
## For the param_search function
# Assigning variables to test out
p = o = q = range(0,5)
# Finding all possible combinations of p and q
poq = list(itertools.product(p, o, q))
# Train test split
# 80/20 Split
split = round(stock_df['Diff'].shape[0]*.95)
train = stock_df['Diff']['F'].iloc[:split]
test = stock_df['Diff']['F'].iloc[split:]
# Optimizing parameters
best_param = param_search(arch_model, train, poq)
# Using the best parameters
model = arch_model(train,
p=best_param[0],
o=best_param[1],
q=best_param[2])
output = model.fit()
# Getting the predictions
predictions = output.forecast(horizon=test.shape[0])
Iteration: 1, Func. Count: 5, Neg. LLF: 1761.6402333576002
Iteration: 2, Func. Count: 12, Neg. LLF: 3643.781999804649
Iteration: 3, Func. Count: 18, Neg. LLF: 186005357.29194742
Iteration: 4, Func. Count: 23, Neg. LLF: 1127.1807001112536
Iteration: 5, Func. Count: 27, Neg. LLF: 1126.9515030163748
Iteration: 6, Func. Count: 31, Neg. LLF: 1126.7649461802425
Iteration: 7, Func. Count: 35, Neg. LLF: 1126.7526468270894
Iteration: 8, Func. Count: 39, Neg. LLF: 1126.7520479717161
Iteration: 9, Func. Count: 43, Neg. LLF: 1126.7520456183922
Iteration: 10, Func. Count: 46, Neg. LLF: 1126.7520456183915
Optimization terminated successfully (Exit mode 0)
Current function value: 1126.7520456183922
Iterations: 10
Function evaluations: 46
Gradient evaluations: 10
Iteration: 1, Func. Count: 6, Neg. LLF: 2924363032.292517
Iteration: 2, Func. Count: 14, Neg. LLF: 1232.8170862234044
Iteration: 3, Func. Count: 20, Neg. LLF: 1099.9609201479561
Iteration: 4, Func. Count: 26, Neg. LLF: 1685.1404134926208
Iteration: 5, Func. Count: 32, Neg. LLF: 1085.6237965194912
Iteration: 6, Func. Count: 38, Neg. LLF: 1142.9100157771209
Iteration: 7, Func. Count: 44, Neg. LLF: 1082.6167037162695
Iteration: 8, Func. Count: 49, Neg. LLF: 1082.6162581527547
Iteration: 9, Func. Count: 55, Neg. LLF: 1082.6144565845173
Iteration: 10, Func. Count: 60, Neg. LLF: 1082.6144364439917
Iteration: 11, Func. Count: 65, Neg. LLF: 1082.6144360561375
Optimization terminated successfully (Exit mode 0)
Current function value: 1082.6144360561375
Iterations: 11
Function evaluations: 65
Gradient evaluations: 11
Iteration: 1, Func. Count: 7, Neg. LLF: 7652227264.617979
Iteration: 2, Func. Count: 16, Neg. LLF: 10313870.423393209
Iteration: 3, Func. Count: 25, Neg. LLF: 4170.2223989102185
Iteration: 4, Func. Count: 33, Neg. LLF: 1098.6076200126026
Iteration: 5, Func. Count: 40, Neg. LLF: 1084.0939855127904
Iteration: 6, Func. Count: 47, Neg. LLF: 1084.080659226308
Iteration: 7, Func. Count: 54, Neg. LLF: 1092.9414707215249
Iteration: 8, Func. Count: 61, Neg. LLF: 1083.960131815124
Iteration: 9, Func. Count: 68, Neg. LLF: 1079.8198417430485
Iteration: 10, Func. Count: 75, Neg. LLF: 1079.5698026766088
Iteration: 11, Func. Count: 81, Neg. LLF: 1079.5599970179267
Iteration: 12, Func. Count: 87, Neg. LLF: 1079.5547196562136
Iteration: 13, Func. Count: 93, Neg. LLF: 1079.5535901668827
Iteration: 14, Func. Count: 99, Neg. LLF: 1079.5535382999346
Iteration: 15, Func. Count: 105, Neg. LLF: 1079.553537189478
Iteration: 16, Func. Count: 110, Neg. LLF: 1079.5535371905576
Optimization terminated successfully (Exit mode 0)
Current function value: 1079.553537189478
Iterations: 16
Function evaluations: 110
Gradient evaluations: 16
Iteration: 1, Func. Count: 8, Neg. LLF: 2428.5364551972207
Iteration: 2, Func. Count: 21, Neg. LLF: 4032.398908058749
Iteration: 3, Func. Count: 30, Neg. LLF: 6046.2539114999145
Iteration: 4, Func. Count: 40, Neg. LLF: 1341.8113230285016
Iteration: 5, Func. Count: 48, Neg. LLF: 1088.6663579322556
Iteration: 6, Func. Count: 56, Neg. LLF: 1079.4757615105743
Iteration: 7, Func. Count: 64, Neg. LLF: 1080.9439942359136
Iteration: 8, Func. Count: 72, Neg. LLF: 1078.1113010468382
Iteration: 9, Func. Count: 79, Neg. LLF: 1077.8772299942411
Iteration: 10, Func. Count: 86, Neg. LLF: 1077.7747725840902
Iteration: 11, Func. Count: 93, Neg. LLF: 1077.7326052579012
Iteration: 12, Func. Count: 100, Neg. LLF: 1077.720870937052
Iteration: 13, Func. Count: 107, Neg. LLF: 1077.7169617501836
Iteration: 14, Func. Count: 114, Neg. LLF: 1077.7168171838807
Iteration: 15, Func. Count: 121, Neg. LLF: 1077.7167865689578
Iteration: 16, Func. Count: 128, Neg. LLF: 1077.7167830077774
Iteration: 17, Func. Count: 134, Neg. LLF: 1077.7167830078936
Optimization terminated successfully (Exit mode 0)
Current function value: 1077.7167830077774
Iterations: 17
Function evaluations: 134
Gradient evaluations: 17
Iteration: 1, Func. Count: 9, Neg. LLF: 2268.530412187834
Iteration: 2, Func. Count: 22, Neg. LLF: 4622.310145826272
Iteration: 3, Func. Count: 32, Neg. LLF: 4811.989897932377
Iteration: 4, Func. Count: 42, Neg. LLF: 1314.9760206606013
Iteration: 5, Func. Count: 52, Neg. LLF: 1086.387504549731
Iteration: 6, Func. Count: 61, Neg. LLF: 1075.089898335035
Iteration: 7, Func. Count: 69, Neg. LLF: 1076.4358436490575
Iteration: 8, Func. Count: 78, Neg. LLF: 1075.0218495093707
Iteration: 9, Func. Count: 86, Neg. LLF: 1074.9940330688257
Iteration: 10, Func. Count: 94, Neg. LLF: 1074.9876582300037
Iteration: 11, Func. Count: 102, Neg. LLF: 1074.9852476895321
Iteration: 12, Func. Count: 110, Neg. LLF: 1074.984623790862
Iteration: 13, Func. Count: 118, Neg. LLF: 1074.9845523500949
Iteration: 14, Func. Count: 126, Neg. LLF: 1074.984549317645
Iteration: 15, Func. Count: 133, Neg. LLF: 1074.9845493181192
Optimization terminated successfully (Exit mode 0)
Current function value: 1074.984549317645
Iterations: 15
Function evaluations: 133
Gradient evaluations: 15
Iteration: 1, Func. Count: 6, Neg. LLF: 2048.8351597764563
Iteration: 2, Func. Count: 14, Neg. LLF: 2101.127259676577
Iteration: 3, Func. Count: 21, Neg. LLF: 104365796.5386692
Iteration: 4, Func. Count: 27, Neg. LLF: 105097074.85759844
Iteration: 5, Func. Count: 33, Neg. LLF: 1232.0605142869258
Iteration: 6, Func. Count: 39, Neg. LLF: 1109.8307139741746
Iteration: 7, Func. Count: 44, Neg. LLF: 1108.6262739399738
Iteration: 8, Func. Count: 49, Neg. LLF: 1108.2716854711912
Iteration: 9, Func. Count: 54, Neg. LLF: 1108.2124626528607
Iteration: 10, Func. Count: 59, Neg. LLF: 1108.208885258235
Iteration: 11, Func. Count: 64, Neg. LLF: 1108.2088122391142
Iteration: 12, Func. Count: 69, Neg. LLF: 1108.208806244268
Iteration: 13, Func. Count: 74, Neg. LLF: 1108.208805458837
Optimization terminated successfully (Exit mode 0)
Current function value: 1108.208805458837
Iterations: 13
Function evaluations: 74
Gradient evaluations: 13
Iteration: 1, Func. Count: 7, Neg. LLF: 2101406655.021107
Iteration: 2, Func. Count: 16, Neg. LLF: 2140.742073050028
Iteration: 3, Func. Count: 25, Neg. LLF: 1100.2420720447058
Iteration: 4, Func. Count: 32, Neg. LLF: 1123.1452463067828
Iteration: 5, Func. Count: 39, Neg. LLF: 1085.6333437302847
Iteration: 6, Func. Count: 46, Neg. LLF: 1086.9366738942067
Iteration: 7, Func. Count: 53, Neg. LLF: 1083.4650211501253
Iteration: 8, Func. Count: 59, Neg. LLF: 1082.7889298747489
Iteration: 9, Func. Count: 65, Neg. LLF: 1082.797851287096
Iteration: 10, Func. Count: 72, Neg. LLF: 1082.6158361707892
Iteration: 11, Func. Count: 78, Neg. LLF: 1082.6145269041665
Iteration: 12, Func. Count: 84, Neg. LLF: 1082.614435881084
Iteration: 13, Func. Count: 89, Neg. LLF: 1082.6144358803942
Optimization terminated successfully (Exit mode 0)
Current function value: 1082.614435881084
Iterations: 13
Function evaluations: 89
Gradient evaluations: 13
Iteration: 1, Func. Count: 8, Neg. LLF: 6422553330.516438
Iteration: 2, Func. Count: 18, Neg. LLF: 10571664.830801124
Iteration: 3, Func. Count: 28, Neg. LLF: 5043.781733095518
Iteration: 4, Func. Count: 37, Neg. LLF: 1101.8431999881318
Iteration: 5, Func. Count: 45, Neg. LLF: 1084.0778759614361
Iteration: 6, Func. Count: 53, Neg. LLF: 1085.7547064927594
Iteration: 7, Func. Count: 61, Neg. LLF: 1084.173160399763
Iteration: 8, Func. Count: 69, Neg. LLF: 1079.5715965912586
Iteration: 9, Func. Count: 76, Neg. LLF: 1079.5586084547317
Iteration: 10, Func. Count: 83, Neg. LLF: 1079.5537019609842
Iteration: 11, Func. Count: 90, Neg. LLF: 1079.5535694695052
Iteration: 12, Func. Count: 97, Neg. LLF: 1079.553556701517
Iteration: 13, Func. Count: 104, Neg. LLF: 1079.5535378889952
Iteration: 14, Func. Count: 110, Neg. LLF: 1079.5535378864265
Optimization terminated successfully (Exit mode 0)
Current function value: 1079.5535378889952
Iterations: 14
Function evaluations: 110
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 9028034229.31718
Iteration: 2, Func. Count: 20, Neg. LLF: 14276713.486112757
Iteration: 3, Func. Count: 30, Neg. LLF: 5309.152828824727
Iteration: 4, Func. Count: 40, Neg. LLF: 1415.8665074565738
Iteration: 5, Func. Count: 50, Neg. LLF: 1088.4373500494748
Iteration: 6, Func. Count: 59, Neg. LLF: 1078.1078096543379
Iteration: 7, Func. Count: 67, Neg. LLF: 1077.8516697318157
Iteration: 8, Func. Count: 75, Neg. LLF: 1078.028903691025
Iteration: 9, Func. Count: 84, Neg. LLF: 1077.721815964757
Iteration: 10, Func. Count: 92, Neg. LLF: 1077.7175208620238
Iteration: 11, Func. Count: 100, Neg. LLF: 1077.7171512499433
Iteration: 12, Func. Count: 108, Neg. LLF: 1077.7168463481803
Iteration: 13, Func. Count: 116, Neg. LLF: 1077.716790635914
Iteration: 14, Func. Count: 124, Neg. LLF: 1077.7167833367812
Iteration: 15, Func. Count: 132, Neg. LLF: 1077.7167828783686
Optimization terminated successfully (Exit mode 0)
Current function value: 1077.7167828783686
Iterations: 15
Function evaluations: 132
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 2327.593469310531
Iteration: 2, Func. Count: 25, Neg. LLF: 4998.751138198495
Iteration: 3, Func. Count: 36, Neg. LLF: 1333.9660029322326
Iteration: 4, Func. Count: 47, Neg. LLF: 1798.4379786207314
Iteration: 5, Func. Count: 58, Neg. LLF: 1089.6917669829245
Iteration: 6, Func. Count: 68, Neg. LLF: 1080.9033308556336
Iteration: 7, Func. Count: 78, Neg. LLF: 1075.7680086490334
Iteration: 8, Func. Count: 87, Neg. LLF: 1075.2729792366665
Iteration: 9, Func. Count: 96, Neg. LLF: 1075.2159339476389
Iteration: 10, Func. Count: 106, Neg. LLF: 1075.019858678681
Iteration: 11, Func. Count: 115, Neg. LLF: 1074.9962857705711
Iteration: 12, Func. Count: 124, Neg. LLF: 1074.9853868097894
Iteration: 13, Func. Count: 133, Neg. LLF: 1074.9846182811843
Iteration: 14, Func. Count: 142, Neg. LLF: 1074.9845520561332
Iteration: 15, Func. Count: 151, Neg. LLF: 1074.9845494197025
Iteration: 16, Func. Count: 159, Neg. LLF: 1074.9845494201759
Optimization terminated successfully (Exit mode 0)
Current function value: 1074.9845494197025
Iterations: 16
Function evaluations: 159
Gradient evaluations: 16
Iteration: 1, Func. Count: 7, Neg. LLF: 2084.4561361744013
Iteration: 2, Func. Count: 16, Neg. LLF: 2469.580598112462
Iteration: 3, Func. Count: 24, Neg. LLF: 185820393.50503427
Iteration: 4, Func. Count: 31, Neg. LLF: 16052998.1461299
Iteration: 5, Func. Count: 38, Neg. LLF: 94992051.31411105
Iteration: 6, Func. Count: 45, Neg. LLF: 1177.7071678494979
Iteration: 7, Func. Count: 52, Neg. LLF: 1106.5371088778472
Iteration: 8, Func. Count: 58, Neg. LLF: 1104.847467592719
Iteration: 9, Func. Count: 64, Neg. LLF: 1104.2169839234393
Iteration: 10, Func. Count: 70, Neg. LLF: 1104.050795503866
Iteration: 11, Func. Count: 76, Neg. LLF: 1104.0333510672135
Iteration: 12, Func. Count: 82, Neg. LLF: 1104.0328133257653
Iteration: 13, Func. Count: 88, Neg. LLF: 1104.032808628946
Iteration: 14, Func. Count: 93, Neg. LLF: 1104.0328086288866
Optimization terminated successfully (Exit mode 0)
Current function value: 1104.032808628946
Iterations: 14
Function evaluations: 93
Gradient evaluations: 14
Iteration: 1, Func. Count: 8, Neg. LLF: 1660114994.1564498
Iteration: 2, Func. Count: 18, Neg. LLF: 2790.8033124303643
Iteration: 3, Func. Count: 28, Neg. LLF: 1087.7877361440412
Iteration: 4, Func. Count: 36, Neg. LLF: 1140.1889741075227
Iteration: 5, Func. Count: 44, Neg. LLF: 1722.9610698231177
Iteration: 6, Func. Count: 53, Neg. LLF: 1096.5729578966889
Iteration: 7, Func. Count: 61, Neg. LLF: 1084.2086247347747
Iteration: 8, Func. Count: 68, Neg. LLF: 1082.738743959701
Iteration: 9, Func. Count: 75, Neg. LLF: 1082.6618516245621
Iteration: 10, Func. Count: 82, Neg. LLF: 1082.6157729256101
Iteration: 11, Func. Count: 89, Neg. LLF: 1082.6144902146484
Iteration: 12, Func. Count: 96, Neg. LLF: 1082.6144399748696
Iteration: 13, Func. Count: 103, Neg. LLF: 1082.6144388646353
Iteration: 14, Func. Count: 110, Neg. LLF: 1082.6144361911756
Optimization terminated successfully (Exit mode 0)
Current function value: 1082.614436189736
Iterations: 14
Function evaluations: 110
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 5630224604.982871
Iteration: 2, Func. Count: 20, Neg. LLF: 10216107.666726407
Iteration: 3, Func. Count: 31, Neg. LLF: 6029.895581981538
Iteration: 4, Func. Count: 41, Neg. LLF: 1260.3180165445574
Iteration: 5, Func. Count: 52, Neg. LLF: 1084.4190527137257
Iteration: 6, Func. Count: 61, Neg. LLF: 1084.175774915142
Iteration: 7, Func. Count: 70, Neg. LLF: 1079.5882690368478
Iteration: 8, Func. Count: 78, Neg. LLF: 1079.5625977965972
Iteration: 9, Func. Count: 86, Neg. LLF: 1079.5539629099358
Iteration: 10, Func. Count: 94, Neg. LLF: 1079.553958437895
Iteration: 11, Func. Count: 103, Neg. LLF: 1079.553542845737
Iteration: 12, Func. Count: 111, Neg. LLF: 1079.5535370366774
Iteration: 13, Func. Count: 118, Neg. LLF: 1079.5535370363827
Optimization terminated successfully (Exit mode 0)
Current function value: 1079.5535370366774
Iterations: 13
Function evaluations: 118
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 8005271418.583008
Iteration: 2, Func. Count: 21, Neg. LLF: 97812.81082398428
Iteration: 3, Func. Count: 32, Neg. LLF: 1880.6145000423926
Iteration: 4, Func. Count: 44, Neg. LLF: 1458.6253048498825
Iteration: 5, Func. Count: 55, Neg. LLF: 1122.4567823356044
Iteration: 6, Func. Count: 65, Neg. LLF: 1088.598116503293
Iteration: 7, Func. Count: 75, Neg. LLF: 1078.8196818156043
Iteration: 8, Func. Count: 84, Neg. LLF: 1078.1340411686087
Iteration: 9, Func. Count: 93, Neg. LLF: 1079.7145715457289
Iteration: 10, Func. Count: 104, Neg. LLF: 1077.8427965415285
Iteration: 11, Func. Count: 113, Neg. LLF: 1077.7296846009633
Iteration: 12, Func. Count: 122, Neg. LLF: 1077.7187717240333
Iteration: 13, Func. Count: 131, Neg. LLF: 1077.7168256925265
Iteration: 14, Func. Count: 140, Neg. LLF: 1077.716788083887
Iteration: 15, Func. Count: 149, Neg. LLF: 1077.7167840487436
Iteration: 16, Func. Count: 158, Neg. LLF: 1077.7167829424466
Iteration: 17, Func. Count: 166, Neg. LLF: 1077.716782942811
Optimization terminated successfully (Exit mode 0)
Current function value: 1077.7167829424466
Iterations: 17
Function evaluations: 166
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 2309.999222970144
Iteration: 2, Func. Count: 27, Neg. LLF: 3894.5754672854646
Iteration: 3, Func. Count: 39, Neg. LLF: 1514.7343511613076
Iteration: 4, Func. Count: 51, Neg. LLF: 1609.145896729685
Iteration: 5, Func. Count: 63, Neg. LLF: 1089.7523942620537
Iteration: 6, Func. Count: 74, Neg. LLF: 1080.2240358763452
Iteration: 7, Func. Count: 85, Neg. LLF: 1076.2956788615218
Iteration: 8, Func. Count: 95, Neg. LLF: 1100.2080998053716
Iteration: 9, Func. Count: 106, Neg. LLF: 1076.3562154703855
Iteration: 10, Func. Count: 117, Neg. LLF: 1075.0512071428457
Iteration: 11, Func. Count: 127, Neg. LLF: 1074.9975049356212
Iteration: 12, Func. Count: 137, Neg. LLF: 1074.9863171435015
Iteration: 13, Func. Count: 147, Neg. LLF: 1074.984628228678
Iteration: 14, Func. Count: 157, Neg. LLF: 1074.9845655614922
Iteration: 15, Func. Count: 167, Neg. LLF: 1074.9845512286358
Iteration: 16, Func. Count: 177, Neg. LLF: 1074.9845491422723
Iteration: 17, Func. Count: 186, Neg. LLF: 1074.9845491420533
Optimization terminated successfully (Exit mode 0)
Current function value: 1074.9845491422723
Iterations: 17
Function evaluations: 186
Gradient evaluations: 17
Iteration: 1, Func. Count: 8, Neg. LLF: 2033.3912200082902
Iteration: 2, Func. Count: 18, Neg. LLF: 1774.2913442712725
Iteration: 3, Func. Count: 27, Neg. LLF: 190227118.02711263
Iteration: 4, Func. Count: 35, Neg. LLF: 20347970.731541
Iteration: 5, Func. Count: 43, Neg. LLF: 145341565.88155323
Iteration: 6, Func. Count: 51, Neg. LLF: 173545281.06302404
Iteration: 7, Func. Count: 59, Neg. LLF: 1164.7054587788446
Iteration: 8, Func. Count: 67, Neg. LLF: 1104.4979671553463
Iteration: 9, Func. Count: 75, Neg. LLF: 1100.3879565208522
Iteration: 10, Func. Count: 82, Neg. LLF: 1100.2778236836589
Iteration: 11, Func. Count: 89, Neg. LLF: 1100.2272365831645
Iteration: 12, Func. Count: 96, Neg. LLF: 1100.2216705323094
Iteration: 13, Func. Count: 103, Neg. LLF: 1100.2214613079518
Iteration: 14, Func. Count: 110, Neg. LLF: 1100.2214486648193
Iteration: 15, Func. Count: 117, Neg. LLF: 1100.2214460478178
Iteration: 16, Func. Count: 123, Neg. LLF: 1100.2214460478936
Optimization terminated successfully (Exit mode 0)
Current function value: 1100.2214460478178
Iterations: 16
Function evaluations: 123
Gradient evaluations: 16
Iteration: 1, Func. Count: 9, Neg. LLF: 1548552786.9984713
Iteration: 2, Func. Count: 20, Neg. LLF: 3853.1301588861525
Iteration: 3, Func. Count: 31, Neg. LLF: 1530.9418935604795
Iteration: 4, Func. Count: 42, Neg. LLF: 1224.9797717526446
Iteration: 5, Func. Count: 51, Neg. LLF: 1232.0234758837826
Iteration: 6, Func. Count: 60, Neg. LLF: 1208.7878800374697
Iteration: 7, Func. Count: 69, Neg. LLF: 1087.081144443365
Iteration: 8, Func. Count: 78, Neg. LLF: 1082.9356800607318
Iteration: 9, Func. Count: 86, Neg. LLF: 1082.6470870461626
Iteration: 10, Func. Count: 94, Neg. LLF: 1082.6253012987493
Iteration: 11, Func. Count: 102, Neg. LLF: 1082.6286907203826
Iteration: 12, Func. Count: 111, Neg. LLF: 1082.6201545978406
Iteration: 13, Func. Count: 119, Neg. LLF: 1082.6144821399403
Iteration: 14, Func. Count: 127, Neg. LLF: 1082.614436993927
Iteration: 15, Func. Count: 135, Neg. LLF: 1082.6144359520936
Iteration: 16, Func. Count: 142, Neg. LLF: 1082.6144359523335
Optimization terminated successfully (Exit mode 0)
Current function value: 1082.6144359520936
Iterations: 16
Function evaluations: 142
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 5422723365.400136
Iteration: 2, Func. Count: 21, Neg. LLF: 130677.08094530854
Iteration: 3, Func. Count: 33, Neg. LLF: 1688.27343829323
Iteration: 4, Func. Count: 45, Neg. LLF: 1427.2878847241507
Iteration: 5, Func. Count: 57, Neg. LLF: 1084.6155660242252
Iteration: 6, Func. Count: 67, Neg. LLF: 1084.3916314476623
Iteration: 7, Func. Count: 77, Neg. LLF: 1079.5849808606063
Iteration: 8, Func. Count: 86, Neg. LLF: 1079.5640411274871
Iteration: 9, Func. Count: 95, Neg. LLF: 1079.561958100625
Iteration: 10, Func. Count: 105, Neg. LLF: 1079.553992713781
Iteration: 11, Func. Count: 114, Neg. LLF: 1079.5535466303124
Iteration: 12, Func. Count: 123, Neg. LLF: 1079.5535375394102
Iteration: 13, Func. Count: 132, Neg. LLF: 1079.5535370251623
Optimization terminated successfully (Exit mode 0)
Current function value: 1079.5535370251623
Iterations: 13
Function evaluations: 132
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 7731429111.614695
Iteration: 2, Func. Count: 23, Neg. LLF: 127045.2862780934
Iteration: 3, Func. Count: 35, Neg. LLF: 1984.2776061837135
Iteration: 4, Func. Count: 48, Neg. LLF: 1437.763157889257
Iteration: 5, Func. Count: 60, Neg. LLF: 1142.2358462104307
Iteration: 6, Func. Count: 71, Neg. LLF: 1088.8421672381087
Iteration: 7, Func. Count: 82, Neg. LLF: 1080.3511939869652
Iteration: 8, Func. Count: 92, Neg. LLF: 1078.111472225555
Iteration: 9, Func. Count: 102, Neg. LLF: 1077.9239420009578
Iteration: 10, Func. Count: 112, Neg. LLF: 1078.4035130220911
Iteration: 11, Func. Count: 123, Neg. LLF: 1077.7353009501453
Iteration: 12, Func. Count: 133, Neg. LLF: 1077.7200498627558
Iteration: 13, Func. Count: 143, Neg. LLF: 1077.7169567463368
Iteration: 14, Func. Count: 153, Neg. LLF: 1077.7167983819659
Iteration: 15, Func. Count: 163, Neg. LLF: 1077.716784094795
Iteration: 16, Func. Count: 173, Neg. LLF: 1077.7167828929819
Iteration: 17, Func. Count: 182, Neg. LLF: 1077.716782892521
Optimization terminated successfully (Exit mode 0)
Current function value: 1077.7167828929819
Iterations: 17
Function evaluations: 182
Gradient evaluations: 17
Iteration: 1, Func. Count: 12, Neg. LLF: 2327.8923676287277
Iteration: 2, Func. Count: 29, Neg. LLF: 3841.1804226460335
Iteration: 3, Func. Count: 42, Neg. LLF: 1547.6986651031843
Iteration: 4, Func. Count: 55, Neg. LLF: 1608.2135760576907
Iteration: 5, Func. Count: 68, Neg. LLF: 1089.0972231772284
Iteration: 6, Func. Count: 80, Neg. LLF: 1078.2103152195702
Iteration: 7, Func. Count: 91, Neg. LLF: 1076.1638407464895
Iteration: 8, Func. Count: 102, Neg. LLF: 1096.5171713416557
Iteration: 9, Func. Count: 115, Neg. LLF: 1079.2957550560386
Iteration: 10, Func. Count: 127, Neg. LLF: 1075.3577010262504
Iteration: 11, Func. Count: 139, Neg. LLF: 1075.0187001214567
Iteration: 12, Func. Count: 150, Neg. LLF: 1074.9919984119197
Iteration: 13, Func. Count: 161, Neg. LLF: 1074.9849189848105
Iteration: 14, Func. Count: 172, Neg. LLF: 1074.9846385566402
Iteration: 15, Func. Count: 183, Neg. LLF: 1074.9845552381757
Iteration: 16, Func. Count: 194, Neg. LLF: 1074.984549409013
Iteration: 17, Func. Count: 204, Neg. LLF: 1074.9845494094798
Optimization terminated successfully (Exit mode 0)
Current function value: 1074.984549409013
Iterations: 17
Function evaluations: 204
Gradient evaluations: 17
Iteration: 1, Func. Count: 5, Neg. LLF: 1237.494054700415
Iteration: 2, Func. Count: 11, Neg. LLF: 1721.4308315118597
Iteration: 3, Func. Count: 17, Neg. LLF: 38784.47970870542
Iteration: 4, Func. Count: 22, Neg. LLF: 1101.1144173841876
Iteration: 5, Func. Count: 26, Neg. LLF: 1097.465311701471
Iteration: 6, Func. Count: 30, Neg. LLF: 1096.8626881786217
Iteration: 7, Func. Count: 34, Neg. LLF: 1096.7779983327296
Iteration: 8, Func. Count: 38, Neg. LLF: 1096.7742915168965
Iteration: 9, Func. Count: 42, Neg. LLF: 1096.7742628050141
Iteration: 10, Func. Count: 46, Neg. LLF: 1096.7742611079752
Iteration: 11, Func. Count: 49, Neg. LLF: 1096.7742611079393
Optimization terminated successfully (Exit mode 0)
Current function value: 1096.7742611079752
Iterations: 11
Function evaluations: 49
Gradient evaluations: 11
Iteration: 1, Func. Count: 6, Neg. LLF: 311817497.69636774
Iteration: 2, Func. Count: 13, Neg. LLF: 1191.491565061669
Iteration: 3, Func. Count: 19, Neg. LLF: 1517.510837105995
Iteration: 4, Func. Count: 26, Neg. LLF: 1101.9310332356647
Iteration: 5, Func. Count: 32, Neg. LLF: 1069.0708013642663
Iteration: 6, Func. Count: 37, Neg. LLF: 1068.85281331052
Iteration: 7, Func. Count: 42, Neg. LLF: 1068.807660626905
Iteration: 8, Func. Count: 47, Neg. LLF: 1068.7949954595665
Iteration: 9, Func. Count: 52, Neg. LLF: 1068.794274754243
Iteration: 10, Func. Count: 57, Neg. LLF: 1068.794267591203
Iteration: 11, Func. Count: 61, Neg. LLF: 1068.7942675914546
Optimization terminated successfully (Exit mode 0)
Current function value: 1068.794267591203
Iterations: 11
Function evaluations: 61
Gradient evaluations: 11
Iteration: 1, Func. Count: 7, Neg. LLF: 478244282.6679886
Iteration: 2, Func. Count: 15, Neg. LLF: 3934.9992408274275
Iteration: 3, Func. Count: 23, Neg. LLF: 1190.7375490382537
Iteration: 4, Func. Count: 30, Neg. LLF: 1102.2439343123226
Iteration: 5, Func. Count: 37, Neg. LLF: 1076.5825969595048
Iteration: 6, Func. Count: 44, Neg. LLF: 1068.355891330454
Iteration: 7, Func. Count: 51, Neg. LLF: 1071.6093886155018
Iteration: 8, Func. Count: 58, Neg. LLF: 1066.658871857622
Iteration: 9, Func. Count: 64, Neg. LLF: 1066.5455677887296
Iteration: 10, Func. Count: 70, Neg. LLF: 1066.4956489292963
Iteration: 11, Func. Count: 76, Neg. LLF: 1066.4872873601012
Iteration: 12, Func. Count: 82, Neg. LLF: 1066.4870810432433
Iteration: 13, Func. Count: 88, Neg. LLF: 1066.4870799416376
Iteration: 14, Func. Count: 93, Neg. LLF: 1066.4870799378193
Optimization terminated successfully (Exit mode 0)
Current function value: 1066.4870799416376
Iterations: 14
Function evaluations: 93
Gradient evaluations: 14
Iteration: 1, Func. Count: 8, Neg. LLF: 468282046.5235387
Iteration: 2, Func. Count: 17, Neg. LLF: 4234.372274765604
Iteration: 3, Func. Count: 26, Neg. LLF: 1203.6032289957889
Iteration: 4, Func. Count: 34, Neg. LLF: 1071.013682832312
Iteration: 5, Func. Count: 42, Neg. LLF: 1155.4501481868353
Iteration: 6, Func. Count: 50, Neg. LLF: 1068.8853135108548
Iteration: 7, Func. Count: 58, Neg. LLF: 1092.198174509423
Iteration: 8, Func. Count: 66, Neg. LLF: 1066.0043943602118
Iteration: 9, Func. Count: 73, Neg. LLF: 1066.566746809141
Iteration: 10, Func. Count: 81, Neg. LLF: 1065.8100620699279
Iteration: 11, Func. Count: 88, Neg. LLF: 1065.8082703758243
Iteration: 12, Func. Count: 96, Neg. LLF: 1065.80247551689
Iteration: 13, Func. Count: 103, Neg. LLF: 1065.8024135499873
Iteration: 14, Func. Count: 109, Neg. LLF: 1065.8024135274732
Optimization terminated successfully (Exit mode 0)
Current function value: 1065.8024135499873
Iterations: 14
Function evaluations: 109
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 443085531.2060517
Iteration: 2, Func. Count: 19, Neg. LLF: 3958.029948624432
Iteration: 3, Func. Count: 29, Neg. LLF: 1225.6878394933424
Iteration: 4, Func. Count: 38, Neg. LLF: 1071.0700689082273
Iteration: 5, Func. Count: 47, Neg. LLF: 1080.4611031014251
Iteration: 6, Func. Count: 56, Neg. LLF: 1064.8517860306747
Iteration: 7, Func. Count: 64, Neg. LLF: 1111.5381227916773
Iteration: 8, Func. Count: 73, Neg. LLF: 1078.366553562771
Iteration: 9, Func. Count: 82, Neg. LLF: 1063.198488547326
Iteration: 10, Func. Count: 90, Neg. LLF: 1063.0823494098581
Iteration: 11, Func. Count: 98, Neg. LLF: 1063.0368716905919
Iteration: 12, Func. Count: 106, Neg. LLF: 1063.0298181139924
Iteration: 13, Func. Count: 114, Neg. LLF: 1063.0242202974816
Iteration: 14, Func. Count: 122, Neg. LLF: 1063.024131901409
Iteration: 15, Func. Count: 129, Neg. LLF: 1063.0241318975127
Optimization terminated successfully (Exit mode 0)
Current function value: 1063.024131901409
Iterations: 15
Function evaluations: 129
Gradient evaluations: 15
Iteration: 1, Func. Count: 6, Neg. LLF: 1322.4058003171021
Iteration: 2, Func. Count: 13, Neg. LLF: 1175.578748568424
Iteration: 3, Func. Count: 19, Neg. LLF: 778664.4216665707
Iteration: 4, Func. Count: 25, Neg. LLF: 1160.321027330568
Iteration: 5, Func. Count: 31, Neg. LLF: 1102.6956648476116
Iteration: 6, Func. Count: 37, Neg. LLF: 1094.9782650533425
Iteration: 7, Func. Count: 42, Neg. LLF: 1094.9674367542723
Iteration: 8, Func. Count: 47, Neg. LLF: 1094.9671341604512
Iteration: 9, Func. Count: 52, Neg. LLF: 1094.9671292163273
Iteration: 10, Func. Count: 56, Neg. LLF: 1094.9671292163755
Optimization terminated successfully (Exit mode 0)
Current function value: 1094.9671292163273
Iterations: 10
Function evaluations: 56
Gradient evaluations: 10
Iteration: 1, Func. Count: 7, Neg. LLF: 2466.9271776607734
Iteration: 2, Func. Count: 15, Neg. LLF: 1141.032592764762
Iteration: 3, Func. Count: 22, Neg. LLF: 1204.3172281742754
Iteration: 4, Func. Count: 29, Neg. LLF: 1116.5035779747207
Iteration: 5, Func. Count: 37, Neg. LLF: 1067.973550633957
Iteration: 6, Func. Count: 43, Neg. LLF: 1128.7897751959954
Iteration: 7, Func. Count: 50, Neg. LLF: 1067.5573264307402
Iteration: 8, Func. Count: 56, Neg. LLF: 1067.55573797874
Iteration: 9, Func. Count: 62, Neg. LLF: 1067.5554797811367
Iteration: 10, Func. Count: 68, Neg. LLF: 1067.555421630837
Iteration: 11, Func. Count: 73, Neg. LLF: 1067.5554216306996
Optimization terminated successfully (Exit mode 0)
Current function value: 1067.555421630837
Iterations: 11
Function evaluations: 73
Gradient evaluations: 11
Iteration: 1, Func. Count: 8, Neg. LLF: 7858.014959483794
Iteration: 2, Func. Count: 17, Neg. LLF: 147264.38225119782
Iteration: 3, Func. Count: 25, Neg. LLF: 1123.47255395536
Iteration: 4, Func. Count: 33, Neg. LLF: 1157.5644457844023
Iteration: 5, Func. Count: 41, Neg. LLF: 1065.0345871770555
Iteration: 6, Func. Count: 48, Neg. LLF: 1078.058152738843
Iteration: 7, Func. Count: 57, Neg. LLF: 1065.1490416924328
Iteration: 8, Func. Count: 65, Neg. LLF: 1085.8197204984053
Iteration: 9, Func. Count: 74, Neg. LLF: 1064.5976944936901
Iteration: 10, Func. Count: 81, Neg. LLF: 1064.5850434963963
Iteration: 11, Func. Count: 88, Neg. LLF: 1064.584722767563
Iteration: 12, Func. Count: 95, Neg. LLF: 1064.5846691946986
Iteration: 13, Func. Count: 102, Neg. LLF: 1064.5846569339028
Iteration: 14, Func. Count: 109, Neg. LLF: 1064.5846560270857
Optimization terminated successfully (Exit mode 0)
Current function value: 1064.5846560270857
Iterations: 14
Function evaluations: 109
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 41147.48018929444
Iteration: 2, Func. Count: 19, Neg. LLF: 226301.69849897674
Iteration: 3, Func. Count: 28, Neg. LLF: 1122.5219652469618
Iteration: 4, Func. Count: 37, Neg. LLF: 1152.61753170683
Iteration: 5, Func. Count: 46, Neg. LLF: 1065.0724967982915
Iteration: 6, Func. Count: 54, Neg. LLF: 1076.4553839963896
Iteration: 7, Func. Count: 64, Neg. LLF: 1066.5844000050784
Iteration: 8, Func. Count: 73, Neg. LLF: 1121.8524845656673
Iteration: 9, Func. Count: 83, Neg. LLF: 1065.5112956911894
Iteration: 10, Func. Count: 93, Neg. LLF: 1064.835312697687
Iteration: 11, Func. Count: 102, Neg. LLF: 1064.1165142108912
Iteration: 12, Func. Count: 110, Neg. LLF: 1064.1157259401325
Iteration: 13, Func. Count: 118, Neg. LLF: 1064.1154919929495
Iteration: 14, Func. Count: 126, Neg. LLF: 1064.115435216399
Iteration: 15, Func. Count: 134, Neg. LLF: 1064.115421259908
Iteration: 16, Func. Count: 141, Neg. LLF: 1064.1154212402505
Optimization terminated successfully (Exit mode 0)
Current function value: 1064.115421259908
Iterations: 16
Function evaluations: 141
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 65899.47770735843
Iteration: 2, Func. Count: 21, Neg. LLF: 136548.89535980395
Iteration: 3, Func. Count: 31, Neg. LLF: 1146.8033315449302
Iteration: 4, Func. Count: 41, Neg. LLF: 1081.2997210758776
Iteration: 5, Func. Count: 51, Neg. LLF: 1065.353422565734
Iteration: 6, Func. Count: 61, Neg. LLF: 1073.4616141656486
Iteration: 7, Func. Count: 71, Neg. LLF: 1062.652210798543
Iteration: 8, Func. Count: 80, Neg. LLF: 1062.391775052228
Iteration: 9, Func. Count: 89, Neg. LLF: 1062.3762588552197
Iteration: 10, Func. Count: 98, Neg. LLF: 1062.3721982665807
Iteration: 11, Func. Count: 107, Neg. LLF: 1062.3720192095225
Iteration: 12, Func. Count: 116, Neg. LLF: 1062.371939292937
Iteration: 13, Func. Count: 124, Neg. LLF: 1062.3719391999318
Optimization terminated successfully (Exit mode 0)
Current function value: 1062.371939292937
Iterations: 13
Function evaluations: 124
Gradient evaluations: 13
Iteration: 1, Func. Count: 7, Neg. LLF: 1584.0564885794236
Iteration: 2, Func. Count: 15, Neg. LLF: 1555.5982802615445
Iteration: 3, Func. Count: 22, Neg. LLF: 1120.1331450649682
Iteration: 4, Func. Count: 29, Neg. LLF: 1118.550272820287
Iteration: 5, Func. Count: 37, Neg. LLF: 1282.7202834973964
Iteration: 6, Func. Count: 44, Neg. LLF: 1101.5701890275427
Iteration: 7, Func. Count: 51, Neg. LLF: 1085.1832794630122
Iteration: 8, Func. Count: 58, Neg. LLF: 1082.6283705376823
Iteration: 9, Func. Count: 64, Neg. LLF: 1082.487101520614
Iteration: 10, Func. Count: 70, Neg. LLF: 1082.4573122780407
Iteration: 11, Func. Count: 76, Neg. LLF: 1082.4494760102823
Iteration: 12, Func. Count: 82, Neg. LLF: 1082.449218970667
Iteration: 13, Func. Count: 88, Neg. LLF: 1082.44920151643
Iteration: 14, Func. Count: 94, Neg. LLF: 1082.449199916734
Iteration: 15, Func. Count: 99, Neg. LLF: 1082.449199916741
Optimization terminated successfully (Exit mode 0)
Current function value: 1082.449199916734
Iterations: 15
Function evaluations: 99
Gradient evaluations: 15
Iteration: 1, Func. Count: 8, Neg. LLF: 1920.1910049304593
Iteration: 2, Func. Count: 17, Neg. LLF: 1124.9112327969594
Iteration: 3, Func. Count: 25, Neg. LLF: 66500.486438944
Iteration: 4, Func. Count: 34, Neg. LLF: 1077.9585354572475
Iteration: 5, Func. Count: 43, Neg. LLF: 1067.8390054760816
Iteration: 6, Func. Count: 50, Neg. LLF: 1114.64848113983
Iteration: 7, Func. Count: 58, Neg. LLF: 1067.5575547504523
Iteration: 8, Func. Count: 65, Neg. LLF: 1067.5555092268896
Iteration: 9, Func. Count: 72, Neg. LLF: 1067.5554245383319
Iteration: 10, Func. Count: 79, Neg. LLF: 1067.555421574675
Iteration: 11, Func. Count: 85, Neg. LLF: 1067.5554215746536
Optimization terminated successfully (Exit mode 0)
Current function value: 1067.555421574675
Iterations: 11
Function evaluations: 85
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 1554037013.448688
Iteration: 2, Func. Count: 19, Neg. LLF: 240287.58476473548
Iteration: 3, Func. Count: 28, Neg. LLF: 1163.1691494766371
Iteration: 4, Func. Count: 37, Neg. LLF: 1159.1777125524218
Iteration: 5, Func. Count: 46, Neg. LLF: 1066.7976490882997
Iteration: 6, Func. Count: 54, Neg. LLF: 1066.3497092046146
Iteration: 7, Func. Count: 63, Neg. LLF: 1082.9191872221058
Iteration: 8, Func. Count: 72, Neg. LLF: 1065.4962014846105
Iteration: 9, Func. Count: 81, Neg. LLF: 1064.8137692431965
Iteration: 10, Func. Count: 90, Neg. LLF: 1064.5864933886764
Iteration: 11, Func. Count: 98, Neg. LLF: 1064.5849532396214
Iteration: 12, Func. Count: 106, Neg. LLF: 1064.5846828575118
Iteration: 13, Func. Count: 114, Neg. LLF: 1064.5846581815103
Iteration: 14, Func. Count: 122, Neg. LLF: 1064.5846559868705
Iteration: 15, Func. Count: 129, Neg. LLF: 1064.5846559758102
Optimization terminated successfully (Exit mode 0)
Current function value: 1064.5846559868705
Iterations: 15
Function evaluations: 129
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 1337923576.1056538
Iteration: 2, Func. Count: 21, Neg. LLF: 52813.47555920317
Iteration: 3, Func. Count: 31, Neg. LLF: 1159.9555492414045
Iteration: 4, Func. Count: 41, Neg. LLF: 1116.167744307962
Iteration: 5, Func. Count: 51, Neg. LLF: 1068.373339340988
Iteration: 6, Func. Count: 61, Neg. LLF: 1066.1455602398412
Iteration: 7, Func. Count: 71, Neg. LLF: 1096.985551955787
Iteration: 8, Func. Count: 81, Neg. LLF: 1064.1381169969065
Iteration: 9, Func. Count: 90, Neg. LLF: 1064.3469894068376
Iteration: 10, Func. Count: 100, Neg. LLF: 1066.3392282749005
Iteration: 11, Func. Count: 110, Neg. LLF: 1064.116078351987
Iteration: 12, Func. Count: 119, Neg. LLF: 1064.1174343514758
Iteration: 13, Func. Count: 129, Neg. LLF: 1064.1149166826867
Iteration: 14, Func. Count: 138, Neg. LLF: 1064.1160833149588
Iteration: 15, Func. Count: 148, Neg. LLF: 1064.11482934569
Iteration: 16, Func. Count: 156, Neg. LLF: 1064.1148293252784
Optimization terminated successfully (Exit mode 0)
Current function value: 1064.11482934569
Iterations: 16
Function evaluations: 156
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 1544864015.7798696
Iteration: 2, Func. Count: 23, Neg. LLF: 145921941.79160312
Iteration: 3, Func. Count: 35, Neg. LLF: 1203.449041285301
Iteration: 4, Func. Count: 46, Neg. LLF: 1105.6125316264458
Iteration: 5, Func. Count: 57, Neg. LLF: 1065.4902468709795
Iteration: 6, Func. Count: 67, Neg. LLF: 1213.7984641837547
Iteration: 7, Func. Count: 78, Neg. LLF: 1076.0184893920768
Iteration: 8, Func. Count: 89, Neg. LLF: 1068.2499801656709
Iteration: 9, Func. Count: 100, Neg. LLF: 1062.5387624936525
Iteration: 10, Func. Count: 110, Neg. LLF: 1062.8679965476956
Iteration: 11, Func. Count: 121, Neg. LLF: 1068.5636626632433
Iteration: 12, Func. Count: 132, Neg. LLF: 1062.4276275868378
Iteration: 13, Func. Count: 143, Neg. LLF: 1062.3711686140878
Iteration: 14, Func. Count: 153, Neg. LLF: 1062.3694724646173
Iteration: 15, Func. Count: 163, Neg. LLF: 1062.3694560920421
Iteration: 16, Func. Count: 173, Neg. LLF: 1062.369453760251
Iteration: 17, Func. Count: 182, Neg. LLF: 1062.3694536677835
Optimization terminated successfully (Exit mode 0)
Current function value: 1062.369453760251
Iterations: 17
Function evaluations: 182
Gradient evaluations: 17
Iteration: 1, Func. Count: 8, Neg. LLF: 1811.6744756136964
Iteration: 2, Func. Count: 16, Neg. LLF: 124636201.0119766
Iteration: 3, Func. Count: 24, Neg. LLF: 558888443.0329994
Iteration: 4, Func. Count: 32, Neg. LLF: 1157.762267808717
Iteration: 5, Func. Count: 41, Neg. LLF: 12570475.130755566
Iteration: 6, Func. Count: 49, Neg. LLF: 5926.348881108759
Iteration: 7, Func. Count: 57, Neg. LLF: 1090.3287857597113
Iteration: 8, Func. Count: 65, Neg. LLF: 1076.5943339850128
Iteration: 9, Func. Count: 73, Neg. LLF: 1074.1742183586305
Iteration: 10, Func. Count: 80, Neg. LLF: 1073.9791586838855
Iteration: 11, Func. Count: 87, Neg. LLF: 1073.8930961534838
Iteration: 12, Func. Count: 94, Neg. LLF: 1073.8759383479005
Iteration: 13, Func. Count: 101, Neg. LLF: 1073.8742462484981
Iteration: 14, Func. Count: 108, Neg. LLF: 1073.8740144196183
Iteration: 15, Func. Count: 115, Neg. LLF: 1073.8739778679524
Iteration: 16, Func. Count: 122, Neg. LLF: 1073.8739693356774
Iteration: 17, Func. Count: 129, Neg. LLF: 1073.8739673526952
Iteration: 18, Func. Count: 135, Neg. LLF: 1073.8739673526818
Optimization terminated successfully (Exit mode 0)
Current function value: 1073.8739673526952
Iterations: 18
Function evaluations: 135
Gradient evaluations: 18
Iteration: 1, Func. Count: 9, Neg. LLF: 2493.0715726696994
Iteration: 2, Func. Count: 19, Neg. LLF: 1129.9473530752066
Iteration: 3, Func. Count: 28, Neg. LLF: 1374.6520338099726
Iteration: 4, Func. Count: 37, Neg. LLF: 1101.6815603520547
Iteration: 5, Func. Count: 46, Neg. LLF: 1126.166923299359
Iteration: 6, Func. Count: 55, Neg. LLF: 1067.4115831878507
Iteration: 7, Func. Count: 64, Neg. LLF: 1183.0091146370114
Iteration: 8, Func. Count: 74, Neg. LLF: 1066.5507333401238
Iteration: 9, Func. Count: 82, Neg. LLF: 1066.5301898665434
Iteration: 10, Func. Count: 90, Neg. LLF: 1066.5294883940392
Iteration: 11, Func. Count: 98, Neg. LLF: 1066.529269680632
Iteration: 12, Func. Count: 106, Neg. LLF: 1066.5292624656004
Iteration: 13, Func. Count: 113, Neg. LLF: 1066.529262465366
Optimization terminated successfully (Exit mode 0)
Current function value: 1066.5292624656004
Iterations: 13
Function evaluations: 113
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 1066779215.7663223
Iteration: 2, Func. Count: 21, Neg. LLF: 151579710.95744503
Iteration: 3, Func. Count: 32, Neg. LLF: 1174.0896731712
Iteration: 4, Func. Count: 42, Neg. LLF: 1143.3336835728287
Iteration: 5, Func. Count: 53, Neg. LLF: 1126.8101347246052
Iteration: 6, Func. Count: 63, Neg. LLF: 1078.8733705087582
Iteration: 7, Func. Count: 73, Neg. LLF: 1065.872335028098
Iteration: 8, Func. Count: 83, Neg. LLF: 1064.7918080540785
Iteration: 9, Func. Count: 92, Neg. LLF: 1064.745285203934
Iteration: 10, Func. Count: 102, Neg. LLF: 1064.6165241811004
Iteration: 11, Func. Count: 112, Neg. LLF: 1093.3269967704377
Iteration: 12, Func. Count: 124, Neg. LLF: 1064.5597769539272
Iteration: 13, Func. Count: 133, Neg. LLF: 1064.5594261494425
Iteration: 14, Func. Count: 142, Neg. LLF: 1064.5594242500647
Iteration: 15, Func. Count: 150, Neg. LLF: 1064.5594242471996
Optimization terminated successfully (Exit mode 0)
Current function value: 1064.5594242500647
Iterations: 15
Function evaluations: 150
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 901971807.4209113
Iteration: 2, Func. Count: 23, Neg. LLF: 154234692.9287187
Iteration: 3, Func. Count: 35, Neg. LLF: 1179.2753882129693
Iteration: 4, Func. Count: 46, Neg. LLF: 1114.359488983793
Iteration: 5, Func. Count: 58, Neg. LLF: 1132.018801825935
Iteration: 6, Func. Count: 69, Neg. LLF: 1065.91726661101
Iteration: 7, Func. Count: 79, Neg. LLF: 1105.4801833590861
Iteration: 8, Func. Count: 90, Neg. LLF: 1126.3533974752982
Iteration: 9, Func. Count: 101, Neg. LLF: 1065.7280974302369
Iteration: 10, Func. Count: 112, Neg. LLF: 1064.1212467125388
Iteration: 11, Func. Count: 122, Neg. LLF: 1069.9234358104463
Iteration: 12, Func. Count: 133, Neg. LLF: 1064.053753127962
Iteration: 13, Func. Count: 143, Neg. LLF: 1064.2265200759111
Iteration: 14, Func. Count: 154, Neg. LLF: 1064.0367029993602
Iteration: 15, Func. Count: 164, Neg. LLF: 1064.0332366311384
Iteration: 16, Func. Count: 174, Neg. LLF: 1064.030905482939
Iteration: 17, Func. Count: 184, Neg. LLF: 1064.0307313406295
Iteration: 18, Func. Count: 194, Neg. LLF: 1064.0306927828353
Iteration: 19, Func. Count: 204, Neg. LLF: 1064.030688599215
Iteration: 20, Func. Count: 213, Neg. LLF: 1064.0306885837945
Optimization terminated successfully (Exit mode 0)
Current function value: 1064.030688599215
Iterations: 20
Function evaluations: 213
Gradient evaluations: 20
Iteration: 1, Func. Count: 12, Neg. LLF: 1046690072.4664214
Iteration: 2, Func. Count: 25, Neg. LLF: 152347110.9759642
Iteration: 3, Func. Count: 37, Neg. LLF: 1191.9129907272252
Iteration: 4, Func. Count: 49, Neg. LLF: 1105.6072883962
Iteration: 5, Func. Count: 62, Neg. LLF: 1757.1862995491579
Iteration: 6, Func. Count: 74, Neg. LLF: 1194.3254818397045
Iteration: 7, Func. Count: 86, Neg. LLF: 1062.723402397643
Iteration: 8, Func. Count: 97, Neg. LLF: 1073.7746446513047
Iteration: 9, Func. Count: 109, Neg. LLF: 1106.1569594558086
Iteration: 10, Func. Count: 121, Neg. LLF: 1060.844384951253
Iteration: 11, Func. Count: 132, Neg. LLF: 1060.7404225274474
Iteration: 12, Func. Count: 143, Neg. LLF: 1060.7267481291374
Iteration: 13, Func. Count: 154, Neg. LLF: 1060.7257380028614
Iteration: 14, Func. Count: 165, Neg. LLF: 1060.7257211061474
Iteration: 15, Func. Count: 175, Neg. LLF: 1060.7257210330304
Optimization terminated successfully (Exit mode 0)
Current function value: 1060.7257211061474
Iterations: 15
Function evaluations: 175
Gradient evaluations: 15
Iteration: 1, Func. Count: 9, Neg. LLF: 2112.0400581937392
Iteration: 2, Func. Count: 19, Neg. LLF: 911488133.1657971
Iteration: 3, Func. Count: 28, Neg. LLF: 784832.1808187588
Iteration: 4, Func. Count: 37, Neg. LLF: 14424.078174652872
Iteration: 5, Func. Count: 46, Neg. LLF: 1127.7527622845737
Iteration: 6, Func. Count: 56, Neg. LLF: 3406.525048633537
Iteration: 7, Func. Count: 65, Neg. LLF: 1111.017623883623
Iteration: 8, Func. Count: 74, Neg. LLF: 4085.810921582522
Iteration: 9, Func. Count: 83, Neg. LLF: 1072.2588869399087
Iteration: 10, Func. Count: 92, Neg. LLF: 1076.61196993476
Iteration: 11, Func. Count: 101, Neg. LLF: 1070.9381303385562
Iteration: 12, Func. Count: 109, Neg. LLF: 1070.8703685750413
Iteration: 13, Func. Count: 117, Neg. LLF: 1070.8521405117112
Iteration: 14, Func. Count: 125, Neg. LLF: 1070.8414983514417
Iteration: 15, Func. Count: 133, Neg. LLF: 1070.8411420708348
Iteration: 16, Func. Count: 141, Neg. LLF: 1070.8411122085854
Iteration: 17, Func. Count: 149, Neg. LLF: 1070.8411110450384
Iteration: 18, Func. Count: 156, Neg. LLF: 1070.8411110451427
Optimization terminated successfully (Exit mode 0)
Current function value: 1070.8411110450384
Iterations: 18
Function evaluations: 156
Gradient evaluations: 18
Iteration: 1, Func. Count: 10, Neg. LLF: 13244.062013990566
Iteration: 2, Func. Count: 21, Neg. LLF: 1129.8224708499356
Iteration: 3, Func. Count: 31, Neg. LLF: 1569.8947224281123
Iteration: 4, Func. Count: 41, Neg. LLF: 1108.0610506014518
Iteration: 5, Func. Count: 51, Neg. LLF: 1090.3302285872996
Iteration: 6, Func. Count: 61, Neg. LLF: 1119.5049815322511
Iteration: 7, Func. Count: 71, Neg. LLF: 1075.4842966191495
Iteration: 8, Func. Count: 82, Neg. LLF: 1069.217730304372
Iteration: 9, Func. Count: 92, Neg. LLF: 1065.794305669041
Iteration: 10, Func. Count: 101, Neg. LLF: 1065.9481558051957
Iteration: 11, Func. Count: 111, Neg. LLF: 1065.7874321675072
Iteration: 12, Func. Count: 120, Neg. LLF: 1065.7872189407256
Iteration: 13, Func. Count: 129, Neg. LLF: 1065.7871879448799
Iteration: 14, Func. Count: 138, Neg. LLF: 1065.7871819101572
Iteration: 15, Func. Count: 146, Neg. LLF: 1065.7871819100344
Optimization terminated successfully (Exit mode 0)
Current function value: 1065.7871819101572
Iterations: 15
Function evaluations: 146
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 872300648.1930975
Iteration: 2, Func. Count: 23, Neg. LLF: 137305532.58425006
Iteration: 3, Func. Count: 35, Neg. LLF: 1143.4900067579706
Iteration: 4, Func. Count: 46, Neg. LLF: 1136.6023052973392
Iteration: 5, Func. Count: 58, Neg. LLF: 1159.4792562837206
Iteration: 6, Func. Count: 69, Neg. LLF: 1092.0552417244887
Iteration: 7, Func. Count: 80, Neg. LLF: 1087.1026448785797
Iteration: 8, Func. Count: 91, Neg. LLF: 1066.013996196718
Iteration: 9, Func. Count: 102, Neg. LLF: 1064.4519274255367
Iteration: 10, Func. Count: 113, Neg. LLF: 1068.411902566298
Iteration: 11, Func. Count: 124, Neg. LLF: 1063.260152514455
Iteration: 12, Func. Count: 134, Neg. LLF: 1063.1781320496862
Iteration: 13, Func. Count: 144, Neg. LLF: 1063.1723349023205
Iteration: 14, Func. Count: 154, Neg. LLF: 1063.1721675603521
Iteration: 15, Func. Count: 164, Neg. LLF: 1063.1721520823116
Iteration: 16, Func. Count: 174, Neg. LLF: 1063.172149392638
Iteration: 17, Func. Count: 183, Neg. LLF: 1063.1721493682307
Optimization terminated successfully (Exit mode 0)
Current function value: 1063.172149392638
Iterations: 17
Function evaluations: 183
Gradient evaluations: 17
Iteration: 1, Func. Count: 12, Neg. LLF: 719875250.3329716
Iteration: 2, Func. Count: 25, Neg. LLF: 112981656.04467319
Iteration: 3, Func. Count: 38, Neg. LLF: 1172.4885051291567
Iteration: 4, Func. Count: 50, Neg. LLF: 1131.0422854903866
Iteration: 5, Func. Count: 63, Neg. LLF: 1144.7699194176078
Iteration: 6, Func. Count: 75, Neg. LLF: 1065.8398050976934
Iteration: 7, Func. Count: 86, Neg. LLF: 1096.5214196897098
Iteration: 8, Func. Count: 98, Neg. LLF: 1143.8573960048514
Iteration: 9, Func. Count: 110, Neg. LLF: 1075.5946180358426
Iteration: 10, Func. Count: 122, Neg. LLF: 1063.2820431156288
Iteration: 11, Func. Count: 133, Neg. LLF: 1063.1924007014568
Iteration: 12, Func. Count: 144, Neg. LLF: 1063.2040415018091
Iteration: 13, Func. Count: 156, Neg. LLF: 1063.1724029670168
Iteration: 14, Func. Count: 167, Neg. LLF: 1063.1722307599198
Iteration: 15, Func. Count: 178, Neg. LLF: 1063.1721538418776
Iteration: 16, Func. Count: 189, Neg. LLF: 1063.17214943024
Iteration: 17, Func. Count: 199, Neg. LLF: 1063.1721495625338
Optimization terminated successfully (Exit mode 0)
Current function value: 1063.17214943024
Iterations: 17
Function evaluations: 199
Gradient evaluations: 17
Iteration: 1, Func. Count: 13, Neg. LLF: 841722217.7833426
Iteration: 2, Func. Count: 27, Neg. LLF: 109814343.58027533
Iteration: 3, Func. Count: 41, Neg. LLF: 1183.7900322955506
Iteration: 4, Func. Count: 54, Neg. LLF: 1104.4770901458828
Iteration: 5, Func. Count: 67, Neg. LLF: 1817163.4684372463
Iteration: 6, Func. Count: 81, Neg. LLF: 1062.4318888545702
Iteration: 7, Func. Count: 93, Neg. LLF: 1076.0234401806224
Iteration: 8, Func. Count: 106, Neg. LLF: 1122.0066276174448
Iteration: 9, Func. Count: 119, Neg. LLF: 1060.9703835313887
Iteration: 10, Func. Count: 132, Neg. LLF: 1063.2626798458182
Iteration: 11, Func. Count: 145, Neg. LLF: 1060.6462118313477
Iteration: 12, Func. Count: 157, Neg. LLF: 1060.6390822012868
Iteration: 13, Func. Count: 169, Neg. LLF: 1060.6389047411603
Iteration: 14, Func. Count: 181, Neg. LLF: 1060.638873433856
Iteration: 15, Func. Count: 193, Neg. LLF: 1060.6388673342076
Iteration: 16, Func. Count: 205, Neg. LLF: 1060.6388656426811
Iteration: 17, Func. Count: 216, Neg. LLF: 1060.638865587116
Optimization terminated successfully (Exit mode 0)
Current function value: 1060.6388656426811
Iterations: 17
Function evaluations: 216
Gradient evaluations: 17
Iteration: 1, Func. Count: 6, Neg. LLF: 1459.2253091443176
Iteration: 2, Func. Count: 13, Neg. LLF: 1490.7946120284605
Iteration: 3, Func. Count: 20, Neg. LLF: 1836.2440214854998
Iteration: 4, Func. Count: 26, Neg. LLF: 1220219.6620234358
Iteration: 5, Func. Count: 32, Neg. LLF: 1122.9670420324276
Iteration: 6, Func. Count: 38, Neg. LLF: 1882.690302754404
Iteration: 7, Func. Count: 44, Neg. LLF: 1092.3657960905512
Iteration: 8, Func. Count: 50, Neg. LLF: 1074.4428482535027
Iteration: 9, Func. Count: 55, Neg. LLF: 1073.5258773305798
Iteration: 10, Func. Count: 60, Neg. LLF: 1073.3194547181943
Iteration: 11, Func. Count: 65, Neg. LLF: 1073.2687562482006
Iteration: 12, Func. Count: 70, Neg. LLF: 1073.2685580071711
Iteration: 13, Func. Count: 75, Neg. LLF: 1073.2684113163245
Iteration: 14, Func. Count: 80, Neg. LLF: 1073.2683994367721
Iteration: 15, Func. Count: 85, Neg. LLF: 1073.2683983848651
Iteration: 16, Func. Count: 89, Neg. LLF: 1073.2683983817933
Optimization terminated successfully (Exit mode 0)
Current function value: 1073.2683983848651
Iterations: 16
Function evaluations: 89
Gradient evaluations: 16
Iteration: 1, Func. Count: 7, Neg. LLF: 520155.6744546373
Iteration: 2, Func. Count: 14, Neg. LLF: 1810.3761490915138
Iteration: 3, Func. Count: 22, Neg. LLF: 1104.9610044716142
Iteration: 4, Func. Count: 29, Neg. LLF: 1110.631971133851
Iteration: 5, Func. Count: 36, Neg. LLF: 1086.4053856473051
Iteration: 6, Func. Count: 43, Neg. LLF: 1069.2149234234241
Iteration: 7, Func. Count: 49, Neg. LLF: 1068.8165112470003
Iteration: 8, Func. Count: 55, Neg. LLF: 1068.7957605664117
Iteration: 9, Func. Count: 61, Neg. LLF: 1068.7943244109456
Iteration: 10, Func. Count: 67, Neg. LLF: 1068.7942678197883
Iteration: 11, Func. Count: 72, Neg. LLF: 1068.794267819781
Optimization terminated successfully (Exit mode 0)
Current function value: 1068.7942678197883
Iterations: 11
Function evaluations: 72
Gradient evaluations: 11
Iteration: 1, Func. Count: 8, Neg. LLF: 778876.3432815068
Iteration: 2, Func. Count: 16, Neg. LLF: 1629.6738948090192
Iteration: 3, Func. Count: 25, Neg. LLF: 1110.471215288991
Iteration: 4, Func. Count: 33, Neg. LLF: 1112.9012249488617
Iteration: 5, Func. Count: 41, Neg. LLF: 1176.4542400807647
Iteration: 6, Func. Count: 49, Neg. LLF: 1068.8225339936882
Iteration: 7, Func. Count: 57, Neg. LLF: 1070.91473323112
Iteration: 8, Func. Count: 65, Neg. LLF: 1075.377095562196
Iteration: 9, Func. Count: 73, Neg. LLF: 1066.5896802009677
Iteration: 10, Func. Count: 80, Neg. LLF: 1066.5026221545882
Iteration: 11, Func. Count: 87, Neg. LLF: 1066.487990368028
Iteration: 12, Func. Count: 94, Neg. LLF: 1066.4871137007626
Iteration: 13, Func. Count: 101, Neg. LLF: 1066.4870799970913
Iteration: 14, Func. Count: 107, Neg. LLF: 1066.4870799932532
Optimization terminated successfully (Exit mode 0)
Current function value: 1066.4870799970913
Iterations: 14
Function evaluations: 107
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 92582.72875430401
Iteration: 2, Func. Count: 18, Neg. LLF: 2007.5998350389482
Iteration: 3, Func. Count: 28, Neg. LLF: 1102.6416593821627
Iteration: 4, Func. Count: 37, Neg. LLF: 1112.9149738737879
Iteration: 5, Func. Count: 46, Neg. LLF: 1152.8803271782958
Iteration: 6, Func. Count: 55, Neg. LLF: 1071.1714340482047
Iteration: 7, Func. Count: 64, Neg. LLF: 1139.5744793737395
Iteration: 8, Func. Count: 73, Neg. LLF: 1069.3327604810816
Iteration: 9, Func. Count: 82, Neg. LLF: 1065.9780062134091
Iteration: 10, Func. Count: 90, Neg. LLF: 1066.0546725527565
Iteration: 11, Func. Count: 99, Neg. LLF: 1087.8383077105104
Iteration: 12, Func. Count: 109, Neg. LLF: 1065.8060716003088
Iteration: 13, Func. Count: 117, Neg. LLF: 1065.8025033899958
Iteration: 14, Func. Count: 125, Neg. LLF: 1065.8024197997913
Iteration: 15, Func. Count: 133, Neg. LLF: 1065.8024134461311
Iteration: 16, Func. Count: 140, Neg. LLF: 1065.8024134235225
Optimization terminated successfully (Exit mode 0)
Current function value: 1065.8024134461311
Iterations: 16
Function evaluations: 140
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 66117.92255576074
Iteration: 2, Func. Count: 20, Neg. LLF: 16251.759363689816
Iteration: 3, Func. Count: 31, Neg. LLF: 1125.5325388003787
Iteration: 4, Func. Count: 41, Neg. LLF: 1078.5223595801529
Iteration: 5, Func. Count: 51, Neg. LLF: 1100.6700944451154
Iteration: 6, Func. Count: 61, Neg. LLF: 1063.7509615611511
Iteration: 7, Func. Count: 70, Neg. LLF: 1076.22893573642
Iteration: 8, Func. Count: 80, Neg. LLF: 1073.1119463814034
Iteration: 9, Func. Count: 90, Neg. LLF: 1063.041143463493
Iteration: 10, Func. Count: 99, Neg. LLF: 1063.026370294097
Iteration: 11, Func. Count: 108, Neg. LLF: 1063.0244332548125
Iteration: 12, Func. Count: 117, Neg. LLF: 1063.0241565479903
Iteration: 13, Func. Count: 126, Neg. LLF: 1063.0241319078061
Iteration: 14, Func. Count: 134, Neg. LLF: 1063.024131903816
Optimization terminated successfully (Exit mode 0)
Current function value: 1063.0241319078061
Iterations: 14
Function evaluations: 134
Gradient evaluations: 14
Iteration: 1, Func. Count: 7, Neg. LLF: 1675.2718870254294
Iteration: 2, Func. Count: 14, Neg. LLF: 3948.7065350400926
Iteration: 3, Func. Count: 21, Neg. LLF: 2033.8384863535698
Iteration: 4, Func. Count: 28, Neg. LLF: 1235.4749078055108
Iteration: 5, Func. Count: 35, Neg. LLF: 1153.033379847967
Iteration: 6, Func. Count: 43, Neg. LLF: 1440.849686985107
Iteration: 7, Func. Count: 50, Neg. LLF: 1077.2029048008142
Iteration: 8, Func. Count: 57, Neg. LLF: 1071.0672638615197
Iteration: 9, Func. Count: 63, Neg. LLF: 1070.669534061204
Iteration: 10, Func. Count: 69, Neg. LLF: 1070.6306470948425
Iteration: 11, Func. Count: 75, Neg. LLF: 1070.6278620960848
Iteration: 12, Func. Count: 81, Neg. LLF: 1070.6270289795161
Iteration: 13, Func. Count: 87, Neg. LLF: 1070.626587625287
Iteration: 14, Func. Count: 93, Neg. LLF: 1070.6264252229194
Iteration: 15, Func. Count: 99, Neg. LLF: 1070.6263662840497
Iteration: 16, Func. Count: 105, Neg. LLF: 1070.626359517231
Iteration: 17, Func. Count: 110, Neg. LLF: 1070.6263595171815
Optimization terminated successfully (Exit mode 0)
Current function value: 1070.626359517231
Iterations: 17
Function evaluations: 110
Gradient evaluations: 17
Iteration: 1, Func. Count: 8, Neg. LLF: 1839.7953295406369
Iteration: 2, Func. Count: 17, Neg. LLF: 1123.3548999973218
Iteration: 3, Func. Count: 25, Neg. LLF: 74579.51228172572
Iteration: 4, Func. Count: 33, Neg. LLF: 1158.9257389380618
Iteration: 5, Func. Count: 41, Neg. LLF: 1067.78466428409
Iteration: 6, Func. Count: 48, Neg. LLF: 1105.3403431390684
Iteration: 7, Func. Count: 56, Neg. LLF: 1067.557797317731
Iteration: 8, Func. Count: 63, Neg. LLF: 1067.5557113041273
Iteration: 9, Func. Count: 70, Neg. LLF: 1067.555446422684
Iteration: 10, Func. Count: 77, Neg. LLF: 1067.5554220848967
Iteration: 11, Func. Count: 84, Neg. LLF: 1067.555421490202
Optimization terminated successfully (Exit mode 0)
Current function value: 1067.555421490202
Iterations: 11
Function evaluations: 84
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 15140.74088758449
Iteration: 2, Func. Count: 19, Neg. LLF: 1368.722501278468
Iteration: 3, Func. Count: 28, Neg. LLF: 1104.7665952949824
Iteration: 4, Func. Count: 38, Neg. LLF: 1207.263251983863
Iteration: 5, Func. Count: 47, Neg. LLF: 1091.5858248702325
Iteration: 6, Func. Count: 56, Neg. LLF: 1079.727144681733
Iteration: 7, Func. Count: 65, Neg. LLF: 1065.3515954573459
Iteration: 8, Func. Count: 73, Neg. LLF: 1065.163408512607
Iteration: 9, Func. Count: 82, Neg. LLF: 1066.0070893446803
Iteration: 10, Func. Count: 91, Neg. LLF: 1064.5981405378948
Iteration: 11, Func. Count: 99, Neg. LLF: 1064.587381007034
Iteration: 12, Func. Count: 107, Neg. LLF: 1064.5847448268707
Iteration: 13, Func. Count: 115, Neg. LLF: 1064.5846717227537
Iteration: 14, Func. Count: 123, Neg. LLF: 1064.5846562027004
Iteration: 15, Func. Count: 130, Neg. LLF: 1064.58465619169
Optimization terminated successfully (Exit mode 0)
Current function value: 1064.5846562027004
Iterations: 15
Function evaluations: 130
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 4080.553398130316
Iteration: 2, Func. Count: 21, Neg. LLF: 214423.39948161194
Iteration: 3, Func. Count: 31, Neg. LLF: 1113.1423014800844
Iteration: 4, Func. Count: 41, Neg. LLF: 1406.0194470312192
Iteration: 5, Func. Count: 51, Neg. LLF: 1065.2138958162352
Iteration: 6, Func. Count: 60, Neg. LLF: 1065.4840679343051
Iteration: 7, Func. Count: 70, Neg. LLF: 1083.1419880155304
Iteration: 8, Func. Count: 81, Neg. LLF: 1074.5850408075783
Iteration: 9, Func. Count: 91, Neg. LLF: 1064.1445134426558
Iteration: 10, Func. Count: 100, Neg. LLF: 1064.842162276151
Iteration: 11, Func. Count: 110, Neg. LLF: 1064.129986940146
Iteration: 12, Func. Count: 119, Neg. LLF: 1064.1826763499648
Iteration: 13, Func. Count: 129, Neg. LLF: 1064.1155497287991
Iteration: 14, Func. Count: 138, Neg. LLF: 1064.1154227054467
Iteration: 15, Func. Count: 147, Neg. LLF: 1064.115421197092
Iteration: 16, Func. Count: 155, Neg. LLF: 1064.1154211773453
Optimization terminated successfully (Exit mode 0)
Current function value: 1064.115421197092
Iterations: 16
Function evaluations: 155
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 6306.264683621523
Iteration: 2, Func. Count: 23, Neg. LLF: 35436.889081937436
Iteration: 3, Func. Count: 34, Neg. LLF: 1119.3522502934861
Iteration: 4, Func. Count: 45, Neg. LLF: 1164.2192070678002
Iteration: 5, Func. Count: 56, Neg. LLF: 1075.0754673468282
Iteration: 6, Func. Count: 67, Neg. LLF: 1117.8726469769194
Iteration: 7, Func. Count: 79, Neg. LLF: 1064.7826943068087
Iteration: 8, Func. Count: 90, Neg. LLF: 1062.5557269023084
Iteration: 9, Func. Count: 100, Neg. LLF: 1076.5081893768029
Iteration: 10, Func. Count: 111, Neg. LLF: 1062.7570206706268
Iteration: 11, Func. Count: 122, Neg. LLF: 1062.3987737143484
Iteration: 12, Func. Count: 132, Neg. LLF: 1062.3787024758817
Iteration: 13, Func. Count: 142, Neg. LLF: 1062.3818304534311
Iteration: 14, Func. Count: 153, Neg. LLF: 1062.3684120488779
Iteration: 15, Func. Count: 163, Neg. LLF: 1062.3683225471766
Iteration: 16, Func. Count: 173, Neg. LLF: 1062.3683221748736
Optimization terminated successfully (Exit mode 0)
Current function value: 1062.3683221748736
Iterations: 16
Function evaluations: 173
Gradient evaluations: 16
Iteration: 1, Func. Count: 8, Neg. LLF: 1362.8876392888437
Iteration: 2, Func. Count: 16, Neg. LLF: 25350.11131223025
Iteration: 3, Func. Count: 25, Neg. LLF: 9725.958086604176
Iteration: 4, Func. Count: 33, Neg. LLF: 191661.18191723054
Iteration: 5, Func. Count: 41, Neg. LLF: 1156.6762805952894
Iteration: 6, Func. Count: 50, Neg. LLF: 1179.6362637384386
Iteration: 7, Func. Count: 58, Neg. LLF: 1079.3043210204046
Iteration: 8, Func. Count: 66, Neg. LLF: 1251.6597081275995
Iteration: 9, Func. Count: 74, Neg. LLF: 1070.7072991279558
Iteration: 10, Func. Count: 81, Neg. LLF: 1070.438660486141
Iteration: 11, Func. Count: 88, Neg. LLF: 1070.394486973718
Iteration: 12, Func. Count: 95, Neg. LLF: 1070.3865053934524
Iteration: 13, Func. Count: 102, Neg. LLF: 1070.3835623520313
Iteration: 14, Func. Count: 109, Neg. LLF: 1070.38329617738
Iteration: 15, Func. Count: 116, Neg. LLF: 1070.3832767349256
Iteration: 16, Func. Count: 123, Neg. LLF: 1070.3832712654282
Iteration: 17, Func. Count: 130, Neg. LLF: 1070.3832682002273
Iteration: 18, Func. Count: 136, Neg. LLF: 1070.383268200218
Optimization terminated successfully (Exit mode 0)
Current function value: 1070.3832682002273
Iterations: 18
Function evaluations: 136
Gradient evaluations: 18
Iteration: 1, Func. Count: 9, Neg. LLF: 1756.493285061853
Iteration: 2, Func. Count: 19, Neg. LLF: 1156.0505267353528
Iteration: 3, Func. Count: 28, Neg. LLF: 1490.5723282290219
Iteration: 4, Func. Count: 37, Neg. LLF: 1140.5797096424956
Iteration: 5, Func. Count: 46, Neg. LLF: 1131.6384366168984
Iteration: 6, Func. Count: 55, Neg. LLF: 1069.4556478975628
Iteration: 7, Func. Count: 64, Neg. LLF: 1069.6754721399604
Iteration: 8, Func. Count: 73, Neg. LLF: 1069.3281258608636
Iteration: 9, Func. Count: 82, Neg. LLF: 1067.559420958536
Iteration: 10, Func. Count: 90, Neg. LLF: 1067.5556054998892
Iteration: 11, Func. Count: 98, Neg. LLF: 1067.5554269907448
Iteration: 12, Func. Count: 106, Neg. LLF: 1067.5554215332145
Iteration: 13, Func. Count: 113, Neg. LLF: 1067.5554215333518
Optimization terminated successfully (Exit mode 0)
Current function value: 1067.5554215332145
Iterations: 13
Function evaluations: 113
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 1936.453878608867
Iteration: 2, Func. Count: 21, Neg. LLF: 1128.1852862227076
Iteration: 3, Func. Count: 31, Neg. LLF: 41849.98199113683
Iteration: 4, Func. Count: 41, Neg. LLF: 1082.6998756622725
Iteration: 5, Func. Count: 52, Neg. LLF: 1065.3173299602245
Iteration: 6, Func. Count: 61, Neg. LLF: 1070.403009149291
Iteration: 7, Func. Count: 71, Neg. LLF: 1068.3028456854722
Iteration: 8, Func. Count: 81, Neg. LLF: 1106.6038473969575
Iteration: 9, Func. Count: 92, Neg. LLF: 1064.6781621265513
Iteration: 10, Func. Count: 102, Neg. LLF: 1064.5857173152256
Iteration: 11, Func. Count: 111, Neg. LLF: 1064.5847429368373
Iteration: 12, Func. Count: 120, Neg. LLF: 1064.584658913769
Iteration: 13, Func. Count: 129, Neg. LLF: 1064.58465604701
Iteration: 14, Func. Count: 137, Neg. LLF: 1064.5846560358623
Optimization terminated successfully (Exit mode 0)
Current function value: 1064.58465604701
Iterations: 14
Function evaluations: 137
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 3340683242.6375513
Iteration: 2, Func. Count: 23, Neg. LLF: 1166.1203314324596
Iteration: 3, Func. Count: 34, Neg. LLF: 1121.1664580029283
Iteration: 4, Func. Count: 46, Neg. LLF: 51830.74041711846
Iteration: 5, Func. Count: 57, Neg. LLF: 1106.2533529876794
Iteration: 6, Func. Count: 68, Neg. LLF: 1087.8352094127385
Iteration: 7, Func. Count: 79, Neg. LLF: 1065.9341009008265
Iteration: 8, Func. Count: 89, Neg. LLF: 1065.297382669923
Iteration: 9, Func. Count: 100, Neg. LLF: 1079.5986929854844
Iteration: 10, Func. Count: 113, Neg. LLF: 1065.1307632412384
Iteration: 11, Func. Count: 125, Neg. LLF: 1065.9227974807413
Iteration: 12, Func. Count: 136, Neg. LLF: 1064.1418369353153
Iteration: 13, Func. Count: 146, Neg. LLF: 1064.1202461986863
Iteration: 14, Func. Count: 156, Neg. LLF: 1064.1189264543082
Iteration: 15, Func. Count: 167, Neg. LLF: 1064.1148990743823
Iteration: 16, Func. Count: 177, Neg. LLF: 1064.1148303576913
Iteration: 17, Func. Count: 187, Neg. LLF: 1064.1148293317892
Iteration: 18, Func. Count: 196, Neg. LLF: 1064.1148293112706
Optimization terminated successfully (Exit mode 0)
Current function value: 1064.1148293317892
Iterations: 18
Function evaluations: 196
Gradient evaluations: 18
Iteration: 1, Func. Count: 12, Neg. LLF: 4345657972.128729
Iteration: 2, Func. Count: 25, Neg. LLF: 149910278.03948575
Iteration: 3, Func. Count: 37, Neg. LLF: 1234.0942165115252
Iteration: 4, Func. Count: 49, Neg. LLF: 1137.916145644242
Iteration: 5, Func. Count: 62, Neg. LLF: 1258.998891808158
Iteration: 6, Func. Count: 74, Neg. LLF: 1257.9311918569847
Iteration: 7, Func. Count: 86, Neg. LLF: 1075.0875839736482
Iteration: 8, Func. Count: 98, Neg. LLF: 1077.0660131235497
Iteration: 9, Func. Count: 110, Neg. LLF: 1069.7430735794615
Iteration: 10, Func. Count: 122, Neg. LLF: 1062.7424912321749
Iteration: 11, Func. Count: 133, Neg. LLF: 1066.1639592780762
Iteration: 12, Func. Count: 145, Neg. LLF: 1063.3149869031358
Iteration: 13, Func. Count: 157, Neg. LLF: 1062.6248549612078
Iteration: 14, Func. Count: 169, Neg. LLF: 1062.3369187604692
Iteration: 15, Func. Count: 180, Neg. LLF: 1062.3360930030865
Iteration: 16, Func. Count: 191, Neg. LLF: 1062.3357182556185
Iteration: 17, Func. Count: 202, Neg. LLF: 1062.335713311072
Iteration: 18, Func. Count: 212, Neg. LLF: 1062.3357133110667
Optimization terminated successfully (Exit mode 0)
Current function value: 1062.335713311072
Iterations: 18
Function evaluations: 212
Gradient evaluations: 18
Iteration: 1, Func. Count: 9, Neg. LLF: 1876.6254792675045
Iteration: 2, Func. Count: 18, Neg. LLF: 2542777285.6100807
Iteration: 3, Func. Count: 28, Neg. LLF: 645528.1407985047
Iteration: 4, Func. Count: 37, Neg. LLF: 93876.30897919381
Iteration: 5, Func. Count: 46, Neg. LLF: 2044.5737246693589
Iteration: 6, Func. Count: 55, Neg. LLF: 1108.7411028553515
Iteration: 7, Func. Count: 65, Neg. LLF: 1074.811615284134
Iteration: 8, Func. Count: 73, Neg. LLF: 1076.9778128861549
Iteration: 9, Func. Count: 82, Neg. LLF: 1124.8247839210578
Iteration: 10, Func. Count: 91, Neg. LLF: 1081.4893790472818
Iteration: 11, Func. Count: 100, Neg. LLF: 1068.8712104909578
Iteration: 12, Func. Count: 108, Neg. LLF: 1068.8376668195563
Iteration: 13, Func. Count: 116, Neg. LLF: 1068.8226114238726
Iteration: 14, Func. Count: 124, Neg. LLF: 1068.8168929287267
Iteration: 15, Func. Count: 132, Neg. LLF: 1068.8106629251097
Iteration: 16, Func. Count: 140, Neg. LLF: 1068.807729070394
Iteration: 17, Func. Count: 148, Neg. LLF: 1068.8068418805774
Iteration: 18, Func. Count: 156, Neg. LLF: 1068.8067091213873
Iteration: 19, Func. Count: 164, Neg. LLF: 1068.806692207343
Iteration: 20, Func. Count: 172, Neg. LLF: 1068.806690735776
Iteration: 21, Func. Count: 179, Neg. LLF: 1068.8066907357957
Optimization terminated successfully (Exit mode 0)
Current function value: 1068.806690735776
Iterations: 21
Function evaluations: 179
Gradient evaluations: 21
Iteration: 1, Func. Count: 10, Neg. LLF: 1694.9721665684756
Iteration: 2, Func. Count: 21, Neg. LLF: 1252.0610931208641
Iteration: 3, Func. Count: 31, Neg. LLF: 1194.731709971887
Iteration: 4, Func. Count: 41, Neg. LLF: 345325.01241602877
Iteration: 5, Func. Count: 52, Neg. LLF: 1135.0604088053535
Iteration: 6, Func. Count: 62, Neg. LLF: 1095.8662284439922
Iteration: 7, Func. Count: 72, Neg. LLF: 1104.4953751947257
Iteration: 8, Func. Count: 82, Neg. LLF: 1067.3645120851368
Iteration: 9, Func. Count: 91, Neg. LLF: 1081.4368092940165
Iteration: 10, Func. Count: 101, Neg. LLF: 1066.9338779041555
Iteration: 11, Func. Count: 111, Neg. LLF: 1067.3753625903541
Iteration: 12, Func. Count: 121, Neg. LLF: 1066.5351952989795
Iteration: 13, Func. Count: 130, Neg. LLF: 1066.5294503326932
Iteration: 14, Func. Count: 139, Neg. LLF: 1066.5292720641737
Iteration: 15, Func. Count: 148, Neg. LLF: 1066.5292623247797
Iteration: 16, Func. Count: 156, Neg. LLF: 1066.5292623247847
Optimization terminated successfully (Exit mode 0)
Current function value: 1066.5292623247797
Iterations: 16
Function evaluations: 156
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 4350.877385437476
Iteration: 2, Func. Count: 23, Neg. LLF: 1285.3676519321275
Iteration: 3, Func. Count: 34, Neg. LLF: 1138.0683529293296
Iteration: 4, Func. Count: 45, Neg. LLF: 69863.73183674311
Iteration: 5, Func. Count: 56, Neg. LLF: 1133.375223212152
Iteration: 6, Func. Count: 67, Neg. LLF: 1069.1261478651118
Iteration: 7, Func. Count: 78, Neg. LLF: 1065.842392003327
Iteration: 8, Func. Count: 89, Neg. LLF: 1069.268702389057
Iteration: 9, Func. Count: 100, Neg. LLF: 1064.5842997614209
Iteration: 10, Func. Count: 110, Neg. LLF: 1066.969446915573
Iteration: 11, Func. Count: 121, Neg. LLF: 1064.5639590580877
Iteration: 12, Func. Count: 131, Neg. LLF: 1064.5595890840827
Iteration: 13, Func. Count: 141, Neg. LLF: 1064.5594428390182
Iteration: 14, Func. Count: 151, Neg. LLF: 1064.559426650449
Iteration: 15, Func. Count: 161, Neg. LLF: 1064.5594249275648
Iteration: 16, Func. Count: 171, Neg. LLF: 1064.5594241720278
Optimization terminated successfully (Exit mode 0)
Current function value: 1064.5594241720278
Iterations: 16
Function evaluations: 171
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 2441470399.6816435
Iteration: 2, Func. Count: 25, Neg. LLF: 1608.8631443139454
Iteration: 3, Func. Count: 37, Neg. LLF: 1111.3665757385506
Iteration: 4, Func. Count: 49, Neg. LLF: 501986.47491273005
Iteration: 5, Func. Count: 61, Neg. LLF: 1139.869890093413
Iteration: 6, Func. Count: 73, Neg. LLF: 1065.7563522383932
Iteration: 7, Func. Count: 84, Neg. LLF: 1069.6205634830226
Iteration: 8, Func. Count: 96, Neg. LLF: 1073.5285664156272
Iteration: 9, Func. Count: 108, Neg. LLF: 1071.996477827115
Iteration: 10, Func. Count: 121, Neg. LLF: 1072.6837833038417
Iteration: 11, Func. Count: 133, Neg. LLF: 1064.0534567175905
Iteration: 12, Func. Count: 144, Neg. LLF: 1064.0638378563299
Iteration: 13, Func. Count: 156, Neg. LLF: 1064.0356754189206
Iteration: 14, Func. Count: 167, Neg. LLF: 1064.0383609022617
Iteration: 15, Func. Count: 179, Neg. LLF: 1064.0460302953252
Iteration: 16, Func. Count: 191, Neg. LLF: 1064.0311980457295
Iteration: 17, Func. Count: 203, Neg. LLF: 1064.0307097829768
Iteration: 18, Func. Count: 214, Neg. LLF: 1064.0306911769067
Iteration: 19, Func. Count: 225, Neg. LLF: 1064.0306889807216
Iteration: 20, Func. Count: 236, Neg. LLF: 1064.0306881248566
Optimization terminated successfully (Exit mode 0)
Current function value: 1064.0306881248566
Iterations: 20
Function evaluations: 236
Gradient evaluations: 20
Iteration: 1, Func. Count: 13, Neg. LLF: 3125469238.251517
Iteration: 2, Func. Count: 27, Neg. LLF: 146138590.6013635
Iteration: 3, Func. Count: 40, Neg. LLF: 1132.3594710298826
Iteration: 4, Func. Count: 53, Neg. LLF: 58198.564908682354
Iteration: 5, Func. Count: 66, Neg. LLF: 1114.633299704274
Iteration: 6, Func. Count: 79, Neg. LLF: 1105.9075297920958
Iteration: 7, Func. Count: 92, Neg. LLF: 1062.7970242557776
Iteration: 8, Func. Count: 104, Neg. LLF: 1070.114522853456
Iteration: 9, Func. Count: 118, Neg. LLF: 1106.6866388413653
Iteration: 10, Func. Count: 132, Neg. LLF: 1065.827519085321
Iteration: 11, Func. Count: 145, Neg. LLF: 1061.5154718654994
Iteration: 12, Func. Count: 158, Neg. LLF: 1060.7792718597134
Iteration: 13, Func. Count: 170, Neg. LLF: 1060.7396636170702
Iteration: 14, Func. Count: 182, Neg. LLF: 1060.7254245174834
Iteration: 15, Func. Count: 194, Neg. LLF: 1060.7196707437233
Iteration: 16, Func. Count: 206, Neg. LLF: 1060.7174550439743
Iteration: 17, Func. Count: 218, Neg. LLF: 1060.7163709923077
Iteration: 18, Func. Count: 230, Neg. LLF: 1060.7160424263516
Iteration: 19, Func. Count: 242, Neg. LLF: 1060.716004982913
Iteration: 20, Func. Count: 254, Neg. LLF: 1060.7160039090354
Iteration: 21, Func. Count: 265, Neg. LLF: 1060.71600384062
Optimization terminated successfully (Exit mode 0)
Current function value: 1060.7160039090354
Iterations: 21
Function evaluations: 265
Gradient evaluations: 21
Iteration: 1, Func. Count: 10, Neg. LLF: 1895.626857357018
Iteration: 2, Func. Count: 20, Neg. LLF: 2262441146.8445816
Iteration: 3, Func. Count: 31, Neg. LLF: 21739.448588681178
Iteration: 4, Func. Count: 41, Neg. LLF: 16893.665670561233
Iteration: 5, Func. Count: 51, Neg. LLF: 1114.4795536114825
Iteration: 6, Func. Count: 62, Neg. LLF: 98653.00401505058
Iteration: 7, Func. Count: 72, Neg. LLF: 1077.2576354227324
Iteration: 8, Func. Count: 82, Neg. LLF: 5375.810660032212
Iteration: 9, Func. Count: 92, Neg. LLF: 1109.5981281787085
Iteration: 10, Func. Count: 102, Neg. LLF: 1103.3865232067076
Iteration: 11, Func. Count: 112, Neg. LLF: 1071.5439832358952
Iteration: 12, Func. Count: 122, Neg. LLF: 1070.4216788453923
Iteration: 13, Func. Count: 132, Neg. LLF: 1067.8207518411
Iteration: 14, Func. Count: 141, Neg. LLF: 1067.8033730396141
Iteration: 15, Func. Count: 150, Neg. LLF: 1067.8011717889754
Iteration: 16, Func. Count: 159, Neg. LLF: 1067.801035766614
Iteration: 17, Func. Count: 168, Neg. LLF: 1067.8009305309606
Iteration: 18, Func. Count: 177, Neg. LLF: 1067.8009084826217
Iteration: 19, Func. Count: 186, Neg. LLF: 1067.8008864250478
Iteration: 20, Func. Count: 195, Neg. LLF: 1067.8008826485286
Iteration: 21, Func. Count: 203, Neg. LLF: 1067.8008826485516
Optimization terminated successfully (Exit mode 0)
Current function value: 1067.8008826485286
Iterations: 21
Function evaluations: 203
Gradient evaluations: 21
Iteration: 1, Func. Count: 11, Neg. LLF: 2255.404065785113
Iteration: 2, Func. Count: 23, Neg. LLF: 1209.8027050789415
Iteration: 3, Func. Count: 34, Neg. LLF: 1372.1002790750936
Iteration: 4, Func. Count: 45, Neg. LLF: 1100.8768575598563
Iteration: 5, Func. Count: 56, Neg. LLF: 1085.6195502643795
Iteration: 6, Func. Count: 67, Neg. LLF: 1136.085818403993
Iteration: 7, Func. Count: 78, Neg. LLF: 1076.2928127342625
Iteration: 8, Func. Count: 89, Neg. LLF: 1148.6154582314439
Iteration: 9, Func. Count: 100, Neg. LLF: 1073.8857452468628
Iteration: 10, Func. Count: 111, Neg. LLF: 1068.9979445611498
Iteration: 11, Func. Count: 122, Neg. LLF: 1066.2473265046083
Iteration: 12, Func. Count: 133, Neg. LLF: 1065.916757244034
Iteration: 13, Func. Count: 144, Neg. LLF: 1065.8455199504915
Iteration: 14, Func. Count: 155, Neg. LLF: 1065.7239879753272
Iteration: 15, Func. Count: 165, Neg. LLF: 1065.719200558145
Iteration: 16, Func. Count: 175, Neg. LLF: 1065.7191058981794
Iteration: 17, Func. Count: 185, Neg. LLF: 1065.7190973127674
Iteration: 18, Func. Count: 194, Neg. LLF: 1065.7190973126596
Optimization terminated successfully (Exit mode 0)
Current function value: 1065.7190973127674
Iterations: 18
Function evaluations: 194
Gradient evaluations: 18
Iteration: 1, Func. Count: 12, Neg. LLF: 3538.94724583467
Iteration: 2, Func. Count: 25, Neg. LLF: 1315.4118591283127
Iteration: 3, Func. Count: 37, Neg. LLF: 1201.4870175758697
Iteration: 4, Func. Count: 49, Neg. LLF: 269824.418645768
Iteration: 5, Func. Count: 62, Neg. LLF: 1127.9042799336785
Iteration: 6, Func. Count: 74, Neg. LLF: 1098.9369798524153
Iteration: 7, Func. Count: 86, Neg. LLF: 1103.6253160328595
Iteration: 8, Func. Count: 98, Neg. LLF: 1068.8292385782029
Iteration: 9, Func. Count: 110, Neg. LLF: 1066.6709109269348
Iteration: 10, Func. Count: 122, Neg. LLF: 1093.9602840242974
Iteration: 11, Func. Count: 134, Neg. LLF: 1063.2615315669605
Iteration: 12, Func. Count: 145, Neg. LLF: 1064.3376793882505
Iteration: 13, Func. Count: 158, Neg. LLF: 1063.2133115340653
Iteration: 14, Func. Count: 170, Neg. LLF: 1063.1569533470156
Iteration: 15, Func. Count: 181, Neg. LLF: 1063.1564355631226
Iteration: 16, Func. Count: 192, Neg. LLF: 1063.1561751273084
Iteration: 17, Func. Count: 203, Neg. LLF: 1063.1561695738387
Iteration: 18, Func. Count: 214, Neg. LLF: 1063.1561688132529
Optimization terminated successfully (Exit mode 0)
Current function value: 1063.1561688132529
Iterations: 18
Function evaluations: 214
Gradient evaluations: 18
Iteration: 1, Func. Count: 13, Neg. LLF: 2290551202.196339
Iteration: 2, Func. Count: 27, Neg. LLF: 1368.5931915509734
Iteration: 3, Func. Count: 40, Neg. LLF: 1117.6531392423694
Iteration: 4, Func. Count: 53, Neg. LLF: 35578.381066846414
Iteration: 5, Func. Count: 66, Neg. LLF: 1138.7988694912451
Iteration: 6, Func. Count: 79, Neg. LLF: 1065.9897051075964
Iteration: 7, Func. Count: 92, Neg. LLF: 1065.4080472301507
Iteration: 8, Func. Count: 105, Neg. LLF: 1063.3306231855245
Iteration: 9, Func. Count: 117, Neg. LLF: 1081.3790916281798
Iteration: 10, Func. Count: 131, Neg. LLF: 1063.7691752388496
Iteration: 11, Func. Count: 144, Neg. LLF: 1063.163767219585
Iteration: 12, Func. Count: 156, Neg. LLF: 1063.1579680912523
Iteration: 13, Func. Count: 168, Neg. LLF: 1063.1563787841865
Iteration: 14, Func. Count: 180, Neg. LLF: 1063.1561768398512
Iteration: 15, Func. Count: 192, Neg. LLF: 1063.1561696485978
Iteration: 16, Func. Count: 204, Neg. LLF: 1063.1561686450789
Iteration: 17, Func. Count: 215, Neg. LLF: 1063.1561687813266
Optimization terminated successfully (Exit mode 0)
Current function value: 1063.1561686450789
Iterations: 17
Function evaluations: 215
Gradient evaluations: 17
Iteration: 1, Func. Count: 14, Neg. LLF: 2935217540.099044
Iteration: 2, Func. Count: 29, Neg. LLF: 145701105.71712124
Iteration: 3, Func. Count: 43, Neg. LLF: 1105.169763042848
Iteration: 4, Func. Count: 57, Neg. LLF: 23482.910878288294
Iteration: 5, Func. Count: 71, Neg. LLF: 1213.5396744429295
Iteration: 6, Func. Count: 85, Neg. LLF: 5611.817442649887
Iteration: 7, Func. Count: 99, Neg. LLF: 1062.6124848512354
Iteration: 8, Func. Count: 112, Neg. LLF: 1066.7977461594196
Iteration: 9, Func. Count: 127, Neg. LLF: 1091.0218447844677
Iteration: 10, Func. Count: 143, Neg. LLF: 1099.0028514420537
Iteration: 11, Func. Count: 157, Neg. LLF: 1130.24891531939
Iteration: 12, Func. Count: 171, Neg. LLF: 1061.4581202646445
Iteration: 13, Func. Count: 185, Neg. LLF: 1060.7990620607575
Iteration: 14, Func. Count: 198, Neg. LLF: 1060.9643206100582
Iteration: 15, Func. Count: 212, Neg. LLF: 1060.598362730986
Iteration: 16, Func. Count: 225, Neg. LLF: 1060.5440789927331
Iteration: 17, Func. Count: 238, Neg. LLF: 1060.5329637794757
Iteration: 18, Func. Count: 251, Neg. LLF: 1060.5306031700597
Iteration: 19, Func. Count: 264, Neg. LLF: 1060.5305361962185
Iteration: 20, Func. Count: 277, Neg. LLF: 1060.530532121321
Iteration: 21, Func. Count: 290, Neg. LLF: 1060.5305310643657
Iteration: 22, Func. Count: 302, Neg. LLF: 1060.5305310285075
Optimization terminated successfully (Exit mode 0)
Current function value: 1060.5305310643657
Iterations: 22
Function evaluations: 302
Gradient evaluations: 22
Iteration: 1, Func. Count: 7, Neg. LLF: 1685.6583150250312
Iteration: 2, Func. Count: 15, Neg. LLF: 1514.2315366617174
Iteration: 3, Func. Count: 23, Neg. LLF: 1779.6763825974374
Iteration: 4, Func. Count: 30, Neg. LLF: 1905.680522559285
Iteration: 5, Func. Count: 37, Neg. LLF: 3358.1370503682915
Iteration: 6, Func. Count: 44, Neg. LLF: 1491.1421397601684
Iteration: 7, Func. Count: 51, Neg. LLF: 1098.7842762996602
Iteration: 8, Func. Count: 58, Neg. LLF: 1451.4243678850503
Iteration: 9, Func. Count: 65, Neg. LLF: 1071.251901068368
Iteration: 10, Func. Count: 71, Neg. LLF: 1069.56983783571
Iteration: 11, Func. Count: 77, Neg. LLF: 1069.1525388257996
Iteration: 12, Func. Count: 83, Neg. LLF: 1068.9748076835435
Iteration: 13, Func. Count: 89, Neg. LLF: 1068.9594859151975
Iteration: 14, Func. Count: 95, Neg. LLF: 1068.9566297029644
Iteration: 15, Func. Count: 101, Neg. LLF: 1068.9563337825386
Iteration: 16, Func. Count: 107, Neg. LLF: 1068.9561434761042
Iteration: 17, Func. Count: 113, Neg. LLF: 1068.956123728663
Iteration: 18, Func. Count: 119, Neg. LLF: 1068.9561221773715
Iteration: 19, Func. Count: 124, Neg. LLF: 1068.9561221726249
Optimization terminated successfully (Exit mode 0)
Current function value: 1068.9561221773715
Iterations: 19
Function evaluations: 124
Gradient evaluations: 19
Iteration: 1, Func. Count: 8, Neg. LLF: 1562402.9393809834
Iteration: 2, Func. Count: 16, Neg. LLF: 350093.34255220834
Iteration: 3, Func. Count: 24, Neg. LLF: 1110.4918642863108
Iteration: 4, Func. Count: 32, Neg. LLF: 1125.851141211484
Iteration: 5, Func. Count: 40, Neg. LLF: 1436.820709664963
Iteration: 6, Func. Count: 48, Neg. LLF: 1070.007476844459
Iteration: 7, Func. Count: 55, Neg. LLF: 1079.8052278832959
Iteration: 8, Func. Count: 63, Neg. LLF: 1070.6119099233342
Iteration: 9, Func. Count: 71, Neg. LLF: 1068.8989117857398
Iteration: 10, Func. Count: 79, Neg. LLF: 1068.8007898303117
Iteration: 11, Func. Count: 86, Neg. LLF: 1068.7887642063968
Iteration: 12, Func. Count: 93, Neg. LLF: 1068.7878219969316
Iteration: 13, Func. Count: 100, Neg. LLF: 1068.7873776554743
Iteration: 14, Func. Count: 107, Neg. LLF: 1068.78735581903
Iteration: 15, Func. Count: 114, Neg. LLF: 1068.7873543575051
Iteration: 16, Func. Count: 120, Neg. LLF: 1068.7873543574997
Optimization terminated successfully (Exit mode 0)
Current function value: 1068.7873543575051
Iterations: 16
Function evaluations: 120
Gradient evaluations: 16
Iteration: 1, Func. Count: 9, Neg. LLF: 93638.41247674238
Iteration: 2, Func. Count: 18, Neg. LLF: 587914.7294154385
Iteration: 3, Func. Count: 27, Neg. LLF: 1111.1652304944446
Iteration: 4, Func. Count: 36, Neg. LLF: 1116.8885237508846
Iteration: 5, Func. Count: 45, Neg. LLF: 1080.9968331555363
Iteration: 6, Func. Count: 54, Neg. LLF: 1068.1482907229642
Iteration: 7, Func. Count: 63, Neg. LLF: 1068.4061142446312
Iteration: 8, Func. Count: 72, Neg. LLF: 1066.5181979868164
Iteration: 9, Func. Count: 80, Neg. LLF: 1066.5411254931364
Iteration: 10, Func. Count: 89, Neg. LLF: 1066.5253497975568
Iteration: 11, Func. Count: 98, Neg. LLF: 1066.4871056280676
Iteration: 12, Func. Count: 106, Neg. LLF: 1066.487081823426
Iteration: 13, Func. Count: 114, Neg. LLF: 1066.48707992326
Iteration: 14, Func. Count: 121, Neg. LLF: 1066.4870799195191
Optimization terminated successfully (Exit mode 0)
Current function value: 1066.48707992326
Iterations: 14
Function evaluations: 121
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 33024.694068123084
Iteration: 2, Func. Count: 20, Neg. LLF: 12776.204816970469
Iteration: 3, Func. Count: 30, Neg. LLF: 1106.4097023849472
Iteration: 4, Func. Count: 40, Neg. LLF: 1119.9467261008435
Iteration: 5, Func. Count: 50, Neg. LLF: 1245.6069190385238
Iteration: 6, Func. Count: 60, Neg. LLF: 1086.5345776859335
Iteration: 7, Func. Count: 70, Neg. LLF: 1083.3718655448322
Iteration: 8, Func. Count: 80, Neg. LLF: 1066.437835849597
Iteration: 9, Func. Count: 89, Neg. LLF: 1066.0296811772132
Iteration: 10, Func. Count: 98, Neg. LLF: 1066.3706044911107
Iteration: 11, Func. Count: 108, Neg. LLF: 1067.0758848704058
Iteration: 12, Func. Count: 118, Neg. LLF: 1065.8397211882034
Iteration: 13, Func. Count: 127, Neg. LLF: 1065.8224000211014
Iteration: 14, Func. Count: 136, Neg. LLF: 1065.812468787302
Iteration: 15, Func. Count: 145, Neg. LLF: 1065.8026404434158
Iteration: 16, Func. Count: 154, Neg. LLF: 1065.8024309880218
Iteration: 17, Func. Count: 163, Neg. LLF: 1065.8024134874508
Iteration: 18, Func. Count: 171, Neg. LLF: 1065.8024134650564
Optimization terminated successfully (Exit mode 0)
Current function value: 1065.8024134874508
Iterations: 18
Function evaluations: 171
Gradient evaluations: 18
Iteration: 1, Func. Count: 11, Neg. LLF: 34823.85311095875
Iteration: 2, Func. Count: 22, Neg. LLF: 16035.301047349612
Iteration: 3, Func. Count: 33, Neg. LLF: 1104.747897449231
Iteration: 4, Func. Count: 44, Neg. LLF: 1119.5938359152372
Iteration: 5, Func. Count: 55, Neg. LLF: 1796.1312595483432
Iteration: 6, Func. Count: 66, Neg. LLF: 1100.0248173713446
Iteration: 7, Func. Count: 77, Neg. LLF: 1121.23069382469
Iteration: 8, Func. Count: 88, Neg. LLF: 1065.12689060852
Iteration: 9, Func. Count: 98, Neg. LLF: 1063.3379772081007
Iteration: 10, Func. Count: 108, Neg. LLF: 1064.2589807931981
Iteration: 11, Func. Count: 119, Neg. LLF: 1063.165724165666
Iteration: 12, Func. Count: 129, Neg. LLF: 1063.027286936474
Iteration: 13, Func. Count: 139, Neg. LLF: 1063.024166203037
Iteration: 14, Func. Count: 149, Neg. LLF: 1063.0241326299592
Iteration: 15, Func. Count: 159, Neg. LLF: 1063.0241318077137
Optimization terminated successfully (Exit mode 0)
Current function value: 1063.0241318077137
Iterations: 15
Function evaluations: 159
Gradient evaluations: 15
Iteration: 1, Func. Count: 8, Neg. LLF: 2444.5189140205994
Iteration: 2, Func. Count: 16, Neg. LLF: 264836.95086792915
Iteration: 3, Func. Count: 24, Neg. LLF: 5544646.024696456
Iteration: 4, Func. Count: 32, Neg. LLF: 517427.74640042795
Iteration: 5, Func. Count: 40, Neg. LLF: 1120.9962960022408
Iteration: 6, Func. Count: 49, Neg. LLF: 3575.899933736168
Iteration: 7, Func. Count: 57, Neg. LLF: 1743.5457393154893
Iteration: 8, Func. Count: 65, Neg. LLF: 1072.9834650391101
Iteration: 9, Func. Count: 73, Neg. LLF: 1074.8673723336174
Iteration: 10, Func. Count: 81, Neg. LLF: 1067.544054774284
Iteration: 11, Func. Count: 88, Neg. LLF: 1067.442676474991
Iteration: 12, Func. Count: 95, Neg. LLF: 1067.3920601361847
Iteration: 13, Func. Count: 102, Neg. LLF: 1067.375023848244
Iteration: 14, Func. Count: 109, Neg. LLF: 1067.3694240318696
Iteration: 15, Func. Count: 116, Neg. LLF: 1067.3680375471622
Iteration: 16, Func. Count: 123, Neg. LLF: 1067.3678277491053
Iteration: 17, Func. Count: 130, Neg. LLF: 1067.367799043892
Iteration: 18, Func. Count: 137, Neg. LLF: 1067.3677969706678
Iteration: 19, Func. Count: 143, Neg. LLF: 1067.3677969706707
Optimization terminated successfully (Exit mode 0)
Current function value: 1067.3677969706678
Iterations: 19
Function evaluations: 143
Gradient evaluations: 19
Iteration: 1, Func. Count: 9, Neg. LLF: 1513.961846412391
Iteration: 2, Func. Count: 19, Neg. LLF: 1215.2713718390905
Iteration: 3, Func. Count: 28, Neg. LLF: 107806.88875596995
Iteration: 4, Func. Count: 37, Neg. LLF: 1140.7471090894164
Iteration: 5, Func. Count: 46, Neg. LLF: 1134.1400694611957
Iteration: 6, Func. Count: 56, Neg. LLF: 1071.2078580484388
Iteration: 7, Func. Count: 65, Neg. LLF: 1067.5652726452297
Iteration: 8, Func. Count: 73, Neg. LLF: 1067.5571740080604
Iteration: 9, Func. Count: 81, Neg. LLF: 1067.5554912215334
Iteration: 10, Func. Count: 89, Neg. LLF: 1067.555424587739
Iteration: 11, Func. Count: 97, Neg. LLF: 1067.5554215675143
Iteration: 12, Func. Count: 104, Neg. LLF: 1067.5554215675907
Optimization terminated successfully (Exit mode 0)
Current function value: 1067.5554215675143
Iterations: 12
Function evaluations: 104
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 1589.3741622966927
Iteration: 2, Func. Count: 21, Neg. LLF: 1167.679091211544
Iteration: 3, Func. Count: 31, Neg. LLF: 1783842.040891813
Iteration: 4, Func. Count: 41, Neg. LLF: 1184.4121316846008
Iteration: 5, Func. Count: 51, Neg. LLF: 1159.2197814852882
Iteration: 6, Func. Count: 61, Neg. LLF: 1072.3074390901656
Iteration: 7, Func. Count: 71, Neg. LLF: 1065.3242045694508
Iteration: 8, Func. Count: 80, Neg. LLF: 1066.7255716654818
Iteration: 9, Func. Count: 90, Neg. LLF: 1065.1478341651914
Iteration: 10, Func. Count: 100, Neg. LLF: 1064.651321984065
Iteration: 11, Func. Count: 109, Neg. LLF: 1064.5886604412772
Iteration: 12, Func. Count: 118, Neg. LLF: 1064.5853893547237
Iteration: 13, Func. Count: 127, Neg. LLF: 1064.5847778825892
Iteration: 14, Func. Count: 136, Neg. LLF: 1064.5846733177584
Iteration: 15, Func. Count: 145, Neg. LLF: 1064.58465618432
Iteration: 16, Func. Count: 153, Neg. LLF: 1064.5846561731978
Optimization terminated successfully (Exit mode 0)
Current function value: 1064.58465618432
Iterations: 16
Function evaluations: 153
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 3876.158503797082
Iteration: 2, Func. Count: 23, Neg. LLF: 258441.6158467113
Iteration: 3, Func. Count: 34, Neg. LLF: 1105.0765573000795
Iteration: 4, Func. Count: 45, Neg. LLF: 1424.4150643409555
Iteration: 5, Func. Count: 56, Neg. LLF: 1065.2629514347568
Iteration: 6, Func. Count: 66, Neg. LLF: 1109.0498435181037
Iteration: 7, Func. Count: 77, Neg. LLF: 1068.1143509941749
Iteration: 8, Func. Count: 88, Neg. LLF: 1147.7435313978997
Iteration: 9, Func. Count: 100, Neg. LLF: 1066.4638083590119
Iteration: 10, Func. Count: 111, Neg. LLF: 1064.1532776509857
Iteration: 11, Func. Count: 121, Neg. LLF: 1068.3524563817468
Iteration: 12, Func. Count: 133, Neg. LLF: 1064.1164246847575
Iteration: 13, Func. Count: 143, Neg. LLF: 1064.115454870857
Iteration: 14, Func. Count: 153, Neg. LLF: 1064.1154245045118
Iteration: 15, Func. Count: 163, Neg. LLF: 1064.1154214124665
Iteration: 16, Func. Count: 172, Neg. LLF: 1064.1154213922841
Optimization terminated successfully (Exit mode 0)
Current function value: 1064.1154214124665
Iterations: 16
Function evaluations: 172
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 8347.770011566365
Iteration: 2, Func. Count: 25, Neg. LLF: 303208.3273091645
Iteration: 3, Func. Count: 37, Neg. LLF: 1108.0484368424632
Iteration: 4, Func. Count: 49, Neg. LLF: 1434.9313227449904
Iteration: 5, Func. Count: 61, Neg. LLF: 1073.7046167244373
Iteration: 6, Func. Count: 73, Neg. LLF: 1098.7404160835754
Iteration: 7, Func. Count: 85, Neg. LLF: 1062.8076755592456
Iteration: 8, Func. Count: 96, Neg. LLF: 1063.1400669693933
Iteration: 9, Func. Count: 108, Neg. LLF: 1063.452158778301
Iteration: 10, Func. Count: 120, Neg. LLF: 1062.481651406782
Iteration: 11, Func. Count: 132, Neg. LLF: 1062.3754821564714
Iteration: 12, Func. Count: 143, Neg. LLF: 1062.3697834932987
Iteration: 13, Func. Count: 154, Neg. LLF: 1062.3683762244316
Iteration: 14, Func. Count: 165, Neg. LLF: 1062.368323849069
Iteration: 15, Func. Count: 176, Neg. LLF: 1062.3683221603003
Iteration: 16, Func. Count: 186, Neg. LLF: 1062.3683220710013
Optimization terminated successfully (Exit mode 0)
Current function value: 1062.3683221603003
Iterations: 16
Function evaluations: 186
Gradient evaluations: 16
Iteration: 1, Func. Count: 9, Neg. LLF: 1994.2000315250666
Iteration: 2, Func. Count: 18, Neg. LLF: 10479.353854847306
Iteration: 3, Func. Count: 27, Neg. LLF: 28084.15984171629
Iteration: 4, Func. Count: 36, Neg. LLF: 286573.1147886729
Iteration: 5, Func. Count: 45, Neg. LLF: 1152.7238042673987
Iteration: 6, Func. Count: 54, Neg. LLF: 1100.3119109558663
Iteration: 7, Func. Count: 63, Neg. LLF: 16508.060262196344
Iteration: 8, Func. Count: 72, Neg. LLF: 1231.5947710972976
Iteration: 9, Func. Count: 82, Neg. LLF: 1076.9632447700478
Iteration: 10, Func. Count: 91, Neg. LLF: 1068.9939190015227
Iteration: 11, Func. Count: 99, Neg. LLF: 1069.6145699751169
Iteration: 12, Func. Count: 108, Neg. LLF: 1067.2414030908858
Iteration: 13, Func. Count: 116, Neg. LLF: 1067.1573905969153
Iteration: 14, Func. Count: 124, Neg. LLF: 1067.1247855542508
Iteration: 15, Func. Count: 132, Neg. LLF: 1067.120864083999
Iteration: 16, Func. Count: 140, Neg. LLF: 1067.1197126122715
Iteration: 17, Func. Count: 148, Neg. LLF: 1067.1195912134106
Iteration: 18, Func. Count: 156, Neg. LLF: 1067.1195748441007
Iteration: 19, Func. Count: 164, Neg. LLF: 1067.1195734821852
Iteration: 20, Func. Count: 171, Neg. LLF: 1067.1195734822122
Optimization terminated successfully (Exit mode 0)
Current function value: 1067.1195734821852
Iterations: 20
Function evaluations: 171
Gradient evaluations: 20
Iteration: 1, Func. Count: 10, Neg. LLF: 1457.8815027707853
Iteration: 2, Func. Count: 22, Neg. LLF: 1250.8706655404244
Iteration: 3, Func. Count: 32, Neg. LLF: 2356.59610403418
Iteration: 4, Func. Count: 43, Neg. LLF: 1257.9364859935604
Iteration: 5, Func. Count: 53, Neg. LLF: 1116.5103989373401
Iteration: 6, Func. Count: 63, Neg. LLF: 1121.0684793265787
Iteration: 7, Func. Count: 73, Neg. LLF: 1079.4324643914426
Iteration: 8, Func. Count: 83, Neg. LLF: 1099.837230413798
Iteration: 9, Func. Count: 93, Neg. LLF: 1075.0660476919932
Iteration: 10, Func. Count: 103, Neg. LLF: 1068.8473450142692
Iteration: 11, Func. Count: 113, Neg. LLF: 1076.8949450543541
Iteration: 12, Func. Count: 123, Neg. LLF: 1067.4107958214372
Iteration: 13, Func. Count: 132, Neg. LLF: 1067.229858630258
Iteration: 14, Func. Count: 141, Neg. LLF: 1067.1799817243646
Iteration: 15, Func. Count: 150, Neg. LLF: 1067.1340272811444
Iteration: 16, Func. Count: 159, Neg. LLF: 1067.1235102600701
Iteration: 17, Func. Count: 168, Neg. LLF: 1067.1204845479792
Iteration: 18, Func. Count: 177, Neg. LLF: 1067.1198838356067
Iteration: 19, Func. Count: 186, Neg. LLF: 1067.1196266329562
Iteration: 20, Func. Count: 195, Neg. LLF: 1067.1195784661436
Iteration: 21, Func. Count: 204, Neg. LLF: 1067.119573548852
Iteration: 22, Func. Count: 212, Neg. LLF: 1067.1195736434247
Optimization terminated successfully (Exit mode 0)
Current function value: 1067.119573548852
Iterations: 22
Function evaluations: 212
Gradient evaluations: 22
Iteration: 1, Func. Count: 11, Neg. LLF: 1420.9379202976747
Iteration: 2, Func. Count: 23, Neg. LLF: 1196.1081090509072
Iteration: 3, Func. Count: 34, Neg. LLF: 62005.16990698919
Iteration: 4, Func. Count: 45, Neg. LLF: 1191.900981482682
Iteration: 5, Func. Count: 56, Neg. LLF: 1091.6092388054317
Iteration: 6, Func. Count: 67, Neg. LLF: 1065.6580644564824
Iteration: 7, Func. Count: 77, Neg. LLF: 1065.4088981593306
Iteration: 8, Func. Count: 88, Neg. LLF: 1106.1820281821556
Iteration: 9, Func. Count: 100, Neg. LLF: 1064.648159748395
Iteration: 10, Func. Count: 110, Neg. LLF: 1064.591870943263
Iteration: 11, Func. Count: 120, Neg. LLF: 1064.5858437525198
Iteration: 12, Func. Count: 130, Neg. LLF: 1064.5847622236784
Iteration: 13, Func. Count: 140, Neg. LLF: 1064.5846573559186
Iteration: 14, Func. Count: 150, Neg. LLF: 1064.5846560013767
Iteration: 15, Func. Count: 159, Neg. LLF: 1064.5846559902875
Optimization terminated successfully (Exit mode 0)
Current function value: 1064.5846560013767
Iterations: 15
Function evaluations: 159
Gradient evaluations: 15
Iteration: 1, Func. Count: 12, Neg. LLF: 1588.0509743429934
Iteration: 2, Func. Count: 25, Neg. LLF: 1154.8861831015668
Iteration: 3, Func. Count: 37, Neg. LLF: 151332.2308115861
Iteration: 4, Func. Count: 49, Neg. LLF: 1206.7924456328617
Iteration: 5, Func. Count: 62, Neg. LLF: 1108.3329598164278
Iteration: 6, Func. Count: 74, Neg. LLF: 1081.2049834524435
Iteration: 7, Func. Count: 86, Neg. LLF: 1065.8336874407064
Iteration: 8, Func. Count: 97, Neg. LLF: 1065.1313816413608
Iteration: 9, Func. Count: 109, Neg. LLF: 1082.7180940826413
Iteration: 10, Func. Count: 123, Neg. LLF: 1064.6542612653639
Iteration: 11, Func. Count: 135, Neg. LLF: 1066.11074493348
Iteration: 12, Func. Count: 147, Neg. LLF: 1064.1368317067381
Iteration: 13, Func. Count: 158, Neg. LLF: 1064.1193551719323
Iteration: 14, Func. Count: 169, Neg. LLF: 1064.118709780023
Iteration: 15, Func. Count: 181, Neg. LLF: 1064.1149896251193
Iteration: 16, Func. Count: 192, Neg. LLF: 1064.114843281653
Iteration: 17, Func. Count: 203, Neg. LLF: 1064.1148298348226
Iteration: 18, Func. Count: 214, Neg. LLF: 1064.1148293205558
Optimization terminated successfully (Exit mode 0)
Current function value: 1064.1148293205558
Iterations: 18
Function evaluations: 214
Gradient evaluations: 18
Iteration: 1, Func. Count: 13, Neg. LLF: 1362366609.0595593
Iteration: 2, Func. Count: 27, Neg. LLF: 1176.5280519252753
Iteration: 3, Func. Count: 40, Neg. LLF: 1381.6599444602643
Iteration: 4, Func. Count: 54, Neg. LLF: 88540.15897121963
Iteration: 5, Func. Count: 68, Neg. LLF: 1106.0730402118343
Iteration: 6, Func. Count: 81, Neg. LLF: 1131.9300826238618
Iteration: 7, Func. Count: 94, Neg. LLF: 1075.3376396520307
Iteration: 8, Func. Count: 107, Neg. LLF: 1068.7965978577286
Iteration: 9, Func. Count: 120, Neg. LLF: 1062.982290234775
Iteration: 10, Func. Count: 132, Neg. LLF: 1069.4136901591876
Iteration: 11, Func. Count: 145, Neg. LLF: 1064.5529323844494
Iteration: 12, Func. Count: 158, Neg. LLF: 1067.5383549156168
Iteration: 13, Func. Count: 171, Neg. LLF: 1062.3474258057631
Iteration: 14, Func. Count: 183, Neg. LLF: 1062.3499646144016
Iteration: 15, Func. Count: 196, Neg. LLF: 1062.3378104204392
Iteration: 16, Func. Count: 208, Neg. LLF: 1062.335863631434
Iteration: 17, Func. Count: 220, Neg. LLF: 1062.3357586295829
Iteration: 18, Func. Count: 232, Neg. LLF: 1062.335717284499
Iteration: 19, Func. Count: 244, Neg. LLF: 1062.3357134478072
Iteration: 20, Func. Count: 255, Neg. LLF: 1062.3357134478506
Optimization terminated successfully (Exit mode 0)
Current function value: 1062.3357134478072
Iterations: 20
Function evaluations: 255
Gradient evaluations: 20
Iteration: 1, Func. Count: 10, Neg. LLF: 1825.3080541094628
Iteration: 2, Func. Count: 21, Neg. LLF: 4026.798755402857
Iteration: 3, Func. Count: 31, Neg. LLF: 20035.392291361146
Iteration: 4, Func. Count: 41, Neg. LLF: 3045.0109321340015
Iteration: 5, Func. Count: 51, Neg. LLF: 58417816.747526705
Iteration: 6, Func. Count: 61, Neg. LLF: 1456.9012347712817
Iteration: 7, Func. Count: 71, Neg. LLF: 1084.7948484930719
Iteration: 8, Func. Count: 81, Neg. LLF: 181633.02348631655
Iteration: 9, Func. Count: 91, Neg. LLF: 1082.422509972552
Iteration: 10, Func. Count: 101, Neg. LLF: 1331.4341953768917
Iteration: 11, Func. Count: 111, Neg. LLF: 1091.4530929509087
Iteration: 12, Func. Count: 121, Neg. LLF: 1071.5000089221721
Iteration: 13, Func. Count: 131, Neg. LLF: 1067.6707300965945
Iteration: 14, Func. Count: 141, Neg. LLF: 1067.2079731677543
Iteration: 15, Func. Count: 150, Neg. LLF: 1067.083082271396
Iteration: 16, Func. Count: 159, Neg. LLF: 1067.075321132918
Iteration: 17, Func. Count: 168, Neg. LLF: 1067.0716786467942
Iteration: 18, Func. Count: 177, Neg. LLF: 1067.0650570671246
Iteration: 19, Func. Count: 186, Neg. LLF: 1067.0621762476374
Iteration: 20, Func. Count: 195, Neg. LLF: 1067.061506439619
Iteration: 21, Func. Count: 204, Neg. LLF: 1067.061448423281
Iteration: 22, Func. Count: 213, Neg. LLF: 1067.0614450572084
Iteration: 23, Func. Count: 221, Neg. LLF: 1067.0614450572612
Optimization terminated successfully (Exit mode 0)
Current function value: 1067.0614450572084
Iterations: 23
Function evaluations: 221
Gradient evaluations: 23
Iteration: 1, Func. Count: 11, Neg. LLF: 1365.211599214671
Iteration: 2, Func. Count: 24, Neg. LLF: 1339.0013907694984
Iteration: 3, Func. Count: 35, Neg. LLF: 1517.253059808601
Iteration: 4, Func. Count: 47, Neg. LLF: 1286.132343833407
Iteration: 5, Func. Count: 58, Neg. LLF: 1190.8232833763564
Iteration: 6, Func. Count: 69, Neg. LLF: 1124.3094102361144
Iteration: 7, Func. Count: 80, Neg. LLF: 1104.961967858127
Iteration: 8, Func. Count: 91, Neg. LLF: 1138.0758285686643
Iteration: 9, Func. Count: 102, Neg. LLF: 1111.5344720630678
Iteration: 10, Func. Count: 113, Neg. LLF: 1066.7981534255664
Iteration: 11, Func. Count: 123, Neg. LLF: 1066.765324617872
Iteration: 12, Func. Count: 134, Neg. LLF: 1066.700585780561
Iteration: 13, Func. Count: 145, Neg. LLF: 1066.5343940094422
Iteration: 14, Func. Count: 155, Neg. LLF: 1066.530836664168
Iteration: 15, Func. Count: 165, Neg. LLF: 1066.5294238352176
Iteration: 16, Func. Count: 175, Neg. LLF: 1066.5292818950002
Iteration: 17, Func. Count: 185, Neg. LLF: 1066.529262728065
Iteration: 18, Func. Count: 194, Neg. LLF: 1066.529262728206
Optimization terminated successfully (Exit mode 0)
Current function value: 1066.529262728065
Iterations: 18
Function evaluations: 194
Gradient evaluations: 18
Iteration: 1, Func. Count: 12, Neg. LLF: 1345.1610429210427
Iteration: 2, Func. Count: 25, Neg. LLF: 1212.6940593153488
Iteration: 3, Func. Count: 37, Neg. LLF: 119528.85789763894
Iteration: 4, Func. Count: 49, Neg. LLF: 1264.7978213275007
Iteration: 5, Func. Count: 61, Neg. LLF: 1132.3506900792045
Iteration: 6, Func. Count: 73, Neg. LLF: 1122.4135352213552
Iteration: 7, Func. Count: 85, Neg. LLF: 1065.8699712814525
Iteration: 8, Func. Count: 96, Neg. LLF: 1065.4870867420077
Iteration: 9, Func. Count: 108, Neg. LLF: 1159.0254148427935
Iteration: 10, Func. Count: 121, Neg. LLF: 1064.7765004820562
Iteration: 11, Func. Count: 133, Neg. LLF: 1064.5817546448545
Iteration: 12, Func. Count: 144, Neg. LLF: 1064.5617010562487
Iteration: 13, Func. Count: 155, Neg. LLF: 1064.5596584929567
Iteration: 14, Func. Count: 166, Neg. LLF: 1064.5594991373323
Iteration: 15, Func. Count: 177, Neg. LLF: 1064.5594272252274
Iteration: 16, Func. Count: 188, Neg. LLF: 1064.559424266866
Iteration: 17, Func. Count: 198, Neg. LLF: 1064.5594242641605
Optimization terminated successfully (Exit mode 0)
Current function value: 1064.559424266866
Iterations: 17
Function evaluations: 198
Gradient evaluations: 17
Iteration: 1, Func. Count: 13, Neg. LLF: 2084.87096266755
Iteration: 2, Func. Count: 26, Neg. LLF: 1326.851613821018
Iteration: 3, Func. Count: 39, Neg. LLF: 1256.138686607193
Iteration: 4, Func. Count: 52, Neg. LLF: 2377.2340048141446
Iteration: 5, Func. Count: 66, Neg. LLF: 1304.0368995931376
Iteration: 6, Func. Count: 79, Neg. LLF: 1110.0567530242715
Iteration: 7, Func. Count: 92, Neg. LLF: 1134.700523778464
Iteration: 8, Func. Count: 105, Neg. LLF: 1076.2928034170368
Iteration: 9, Func. Count: 118, Neg. LLF: 1090.0955349012193
Iteration: 10, Func. Count: 131, Neg. LLF: 1066.3067559474675
Iteration: 11, Func. Count: 144, Neg. LLF: 1064.6630980040163
Iteration: 12, Func. Count: 156, Neg. LLF: 1064.781333847403
Iteration: 13, Func. Count: 169, Neg. LLF: 1074.2811631582708
Iteration: 14, Func. Count: 182, Neg. LLF: 1064.9833843818374
Iteration: 15, Func. Count: 195, Neg. LLF: 1064.0693444130002
Iteration: 16, Func. Count: 207, Neg. LLF: 1064.0391061746961
Iteration: 17, Func. Count: 219, Neg. LLF: 1064.0315814055136
Iteration: 18, Func. Count: 231, Neg. LLF: 1064.0310324131644
Iteration: 19, Func. Count: 243, Neg. LLF: 1064.0307800070836
Iteration: 20, Func. Count: 255, Neg. LLF: 1064.0307049456255
Iteration: 21, Func. Count: 267, Neg. LLF: 1064.0306884449783
Iteration: 22, Func. Count: 278, Neg. LLF: 1064.0306884294314
Optimization terminated successfully (Exit mode 0)
Current function value: 1064.0306884449783
Iterations: 22
Function evaluations: 278
Gradient evaluations: 22
Iteration: 1, Func. Count: 14, Neg. LLF: 887391457.3722031
Iteration: 2, Func. Count: 29, Neg. LLF: 1501.318691348241
Iteration: 3, Func. Count: 43, Neg. LLF: 1125.295497461061
Iteration: 4, Func. Count: 57, Neg. LLF: 1132831.655348478
Iteration: 5, Func. Count: 71, Neg. LLF: 1145.9021297134632
Iteration: 6, Func. Count: 85, Neg. LLF: 1062.8106013334996
Iteration: 7, Func. Count: 98, Neg. LLF: 1062.364136798833
Iteration: 8, Func. Count: 112, Neg. LLF: 1086.9113551153687
Iteration: 9, Func. Count: 126, Neg. LLF: 1063.654524099594
Iteration: 10, Func. Count: 140, Neg. LLF: 1060.7672079382346
Iteration: 11, Func. Count: 153, Neg. LLF: 1065.0769423181944
Iteration: 12, Func. Count: 168, Neg. LLF: 1060.7267159072635
Iteration: 13, Func. Count: 181, Neg. LLF: 1060.7194440662188
Iteration: 14, Func. Count: 194, Neg. LLF: 1060.7167302201801
Iteration: 15, Func. Count: 207, Neg. LLF: 1060.7161512933426
Iteration: 16, Func. Count: 220, Neg. LLF: 1060.7160168931896
Iteration: 17, Func. Count: 233, Neg. LLF: 1060.7160045107657
Iteration: 18, Func. Count: 246, Neg. LLF: 1060.7160039025043
Optimization terminated successfully (Exit mode 0)
Current function value: 1060.7160039025043
Iterations: 18
Function evaluations: 246
Gradient evaluations: 18
Iteration: 1, Func. Count: 11, Neg. LLF: 2623.532052957049
Iteration: 2, Func. Count: 22, Neg. LLF: 491300812.7574555
Iteration: 3, Func. Count: 33, Neg. LLF: 31760.48578093094
Iteration: 4, Func. Count: 44, Neg. LLF: 1152.9040168518409
Iteration: 5, Func. Count: 55, Neg. LLF: 66100.80161041507
Iteration: 6, Func. Count: 66, Neg. LLF: 2745.2611829293955
Iteration: 7, Func. Count: 77, Neg. LLF: 1688.650314567748
Iteration: 8, Func. Count: 88, Neg. LLF: 1216.9105963790355
Iteration: 9, Func. Count: 99, Neg. LLF: 1086.4612958079854
Iteration: 10, Func. Count: 110, Neg. LLF: 1086.3716312872607
Iteration: 11, Func. Count: 121, Neg. LLF: 1067.6471843204245
Iteration: 12, Func. Count: 132, Neg. LLF: 1085.0820794608092
Iteration: 13, Func. Count: 143, Neg. LLF: 1069.8444470620454
Iteration: 14, Func. Count: 154, Neg. LLF: 1067.8360888114212
Iteration: 15, Func. Count: 165, Neg. LLF: 1066.0924507829902
Iteration: 16, Func. Count: 175, Neg. LLF: 1066.0761620127823
Iteration: 17, Func. Count: 185, Neg. LLF: 1066.063710041397
Iteration: 18, Func. Count: 195, Neg. LLF: 1066.0501110091172
Iteration: 19, Func. Count: 205, Neg. LLF: 1066.0408904875035
Iteration: 20, Func. Count: 215, Neg. LLF: 1066.0405045973646
Iteration: 21, Func. Count: 225, Neg. LLF: 1066.040394310195
Iteration: 22, Func. Count: 235, Neg. LLF: 1066.0403932767288
Iteration: 23, Func. Count: 244, Neg. LLF: 1066.0403932767472
Optimization terminated successfully (Exit mode 0)
Current function value: 1066.0403932767288
Iterations: 23
Function evaluations: 244
Gradient evaluations: 23
Iteration: 1, Func. Count: 12, Neg. LLF: 1310.0075187688726
Iteration: 2, Func. Count: 26, Neg. LLF: 1289.982854779688
Iteration: 3, Func. Count: 38, Neg. LLF: 1560.4706810755906
Iteration: 4, Func. Count: 50, Neg. LLF: 1198.528989839366
Iteration: 5, Func. Count: 62, Neg. LLF: 1136.8241524441064
Iteration: 6, Func. Count: 74, Neg. LLF: 1126.2198097887763
Iteration: 7, Func. Count: 86, Neg. LLF: 1101.4307597486054
Iteration: 8, Func. Count: 98, Neg. LLF: 1081.7958463057635
Iteration: 9, Func. Count: 110, Neg. LLF: 1080.2166956238098
Iteration: 10, Func. Count: 122, Neg. LLF: 1068.9987564362996
Iteration: 11, Func. Count: 134, Neg. LLF: 1076.5003835560804
Iteration: 12, Func. Count: 146, Neg. LLF: 1066.0421805102621
Iteration: 13, Func. Count: 158, Neg. LLF: 1068.294806505572
Iteration: 14, Func. Count: 170, Neg. LLF: 1065.705332806879
Iteration: 15, Func. Count: 181, Neg. LLF: 1065.6938036228803
Iteration: 16, Func. Count: 192, Neg. LLF: 1065.6916333313438
Iteration: 17, Func. Count: 203, Neg. LLF: 1065.6911274089712
Iteration: 18, Func. Count: 214, Neg. LLF: 1065.690981677667
Iteration: 19, Func. Count: 225, Neg. LLF: 1065.6909576457492
Iteration: 20, Func. Count: 236, Neg. LLF: 1065.6909567397274
Optimization terminated successfully (Exit mode 0)
Current function value: 1065.6909567397274
Iterations: 20
Function evaluations: 236
Gradient evaluations: 20
Iteration: 1, Func. Count: 13, Neg. LLF: 1260.3174925064181
Iteration: 2, Func. Count: 27, Neg. LLF: 2118.270571822188
Iteration: 3, Func. Count: 40, Neg. LLF: 1561.4753893895086
Iteration: 4, Func. Count: 53, Neg. LLF: 1355.1432255798732
Iteration: 5, Func. Count: 67, Neg. LLF: 1103.5512736269598
Iteration: 6, Func. Count: 80, Neg. LLF: 1090.9941052598438
Iteration: 7, Func. Count: 93, Neg. LLF: 1173.4964004816036
Iteration: 8, Func. Count: 106, Neg. LLF: 1069.9232446451329
Iteration: 9, Func. Count: 119, Neg. LLF: 1073.9972044613614
Iteration: 10, Func. Count: 132, Neg. LLF: 1064.739358362031
Iteration: 11, Func. Count: 145, Neg. LLF: 1063.4414545110967
Iteration: 12, Func. Count: 157, Neg. LLF: 1065.9918776247337
Iteration: 13, Func. Count: 171, Neg. LLF: 1065.33462074195
Iteration: 14, Func. Count: 185, Neg. LLF: 1066.6060393767896
Iteration: 15, Func. Count: 198, Neg. LLF: 1063.2007264571894
Iteration: 16, Func. Count: 210, Neg. LLF: 1063.1617157010378
Iteration: 17, Func. Count: 222, Neg. LLF: 1063.1566152984446
Iteration: 18, Func. Count: 234, Neg. LLF: 1063.1562572158969
Iteration: 19, Func. Count: 246, Neg. LLF: 1063.156171637103
Iteration: 20, Func. Count: 258, Neg. LLF: 1063.1561686490422
Iteration: 21, Func. Count: 269, Neg. LLF: 1063.1561686300593
Optimization terminated successfully (Exit mode 0)
Current function value: 1063.1561686490422
Iterations: 21
Function evaluations: 269
Gradient evaluations: 21
Iteration: 1, Func. Count: 14, Neg. LLF: 1627.1566379936341
Iteration: 2, Func. Count: 28, Neg. LLF: 1567.7692192924023
Iteration: 3, Func. Count: 42, Neg. LLF: 1450.9747752833678
Iteration: 4, Func. Count: 56, Neg. LLF: 2049.3134213468134
Iteration: 5, Func. Count: 71, Neg. LLF: 1312.7794706340633
Iteration: 6, Func. Count: 85, Neg. LLF: 1131.2858161901395
Iteration: 7, Func. Count: 99, Neg. LLF: 1083.0954370209065
Iteration: 8, Func. Count: 113, Neg. LLF: 1081.4901806156565
Iteration: 9, Func. Count: 127, Neg. LLF: 1103.9612692021353
Iteration: 10, Func. Count: 141, Neg. LLF: 1066.0257723659256
Iteration: 11, Func. Count: 155, Neg. LLF: 1067.0488162232787
Iteration: 12, Func. Count: 169, Neg. LLF: 1075.3040917230278
Iteration: 13, Func. Count: 183, Neg. LLF: 1063.2293011726447
Iteration: 14, Func. Count: 196, Neg. LLF: 1064.147400560562
Iteration: 15, Func. Count: 210, Neg. LLF: 1063.1809952860594
Iteration: 16, Func. Count: 223, Neg. LLF: 1063.1578071652937
Iteration: 17, Func. Count: 236, Neg. LLF: 1063.1564844648874
Iteration: 18, Func. Count: 249, Neg. LLF: 1063.1561766685754
Iteration: 19, Func. Count: 262, Neg. LLF: 1063.1561687988328
Iteration: 20, Func. Count: 274, Neg. LLF: 1063.1561689351565
Optimization terminated successfully (Exit mode 0)
Current function value: 1063.1561687988328
Iterations: 20
Function evaluations: 274
Gradient evaluations: 20
Iteration: 1, Func. Count: 15, Neg. LLF: 10997.282341643968
Iteration: 2, Func. Count: 31, Neg. LLF: 1456.3068314664347
Iteration: 3, Func. Count: 46, Neg. LLF: 1128.2232219876057
Iteration: 4, Func. Count: 61, Neg. LLF: 30058.60583941912
Iteration: 5, Func. Count: 76, Neg. LLF: 1147.4354315022906
Iteration: 6, Func. Count: 91, Neg. LLF: 1114.0566720275428
Iteration: 7, Func. Count: 106, Neg. LLF: 1062.7637236192015
Iteration: 8, Func. Count: 120, Neg. LLF: 1104.2401896069568
Iteration: 9, Func. Count: 135, Neg. LLF: 1132.2739645791926
Iteration: 10, Func. Count: 151, Neg. LLF: 1082.3988488349282
Iteration: 11, Func. Count: 167, Neg. LLF: 1061.3643794948543
Iteration: 12, Func. Count: 182, Neg. LLF: 1060.5566514962466
Iteration: 13, Func. Count: 196, Neg. LLF: 1060.7535813445934
Iteration: 14, Func. Count: 211, Neg. LLF: 1060.5325378430061
Iteration: 15, Func. Count: 225, Neg. LLF: 1060.5310052391455
Iteration: 16, Func. Count: 239, Neg. LLF: 1060.530676119368
Iteration: 17, Func. Count: 253, Neg. LLF: 1060.5305386699322
Iteration: 18, Func. Count: 267, Neg. LLF: 1060.5305309300359
Iteration: 19, Func. Count: 280, Neg. LLF: 1060.5305308944326
Optimization terminated successfully (Exit mode 0)
Current function value: 1060.5305309300359
Iterations: 19
Function evaluations: 280
Gradient evaluations: 19
Iteration: 1, Func. Count: 8, Neg. LLF: 1614.5673929669606
Iteration: 2, Func. Count: 17, Neg. LLF: 1407.668976467969
Iteration: 3, Func. Count: 25, Neg. LLF: 1871.2929892591071
Iteration: 4, Func. Count: 33, Neg. LLF: 2200.341144342775
Iteration: 5, Func. Count: 41, Neg. LLF: 3909.087519047223
Iteration: 6, Func. Count: 49, Neg. LLF: 1104.6303211328552
Iteration: 7, Func. Count: 57, Neg. LLF: 1085.3788639246052
Iteration: 8, Func. Count: 65, Neg. LLF: 1086.7881383248784
Iteration: 9, Func. Count: 73, Neg. LLF: 1069.6979585785161
Iteration: 10, Func. Count: 80, Neg. LLF: 1069.0721212224862
Iteration: 11, Func. Count: 87, Neg. LLF: 1068.9723570604529
Iteration: 12, Func. Count: 94, Neg. LLF: 1068.9571155092867
Iteration: 13, Func. Count: 101, Neg. LLF: 1068.956166269869
Iteration: 14, Func. Count: 108, Neg. LLF: 1068.9561268718016
Iteration: 15, Func. Count: 115, Neg. LLF: 1068.9561222409868
Iteration: 16, Func. Count: 121, Neg. LLF: 1068.9561226844412
Optimization terminated successfully (Exit mode 0)
Current function value: 1068.9561222409868
Iterations: 16
Function evaluations: 121
Gradient evaluations: 16
Iteration: 1, Func. Count: 9, Neg. LLF: 336723.52274538943
Iteration: 2, Func. Count: 18, Neg. LLF: 21330.329011803682
Iteration: 3, Func. Count: 27, Neg. LLF: 1119.2868040300734
Iteration: 4, Func. Count: 37, Neg. LLF: 1122.3023390458038
Iteration: 5, Func. Count: 46, Neg. LLF: 1117.1485613508457
Iteration: 6, Func. Count: 55, Neg. LLF: 1074.1227955800362
Iteration: 7, Func. Count: 64, Neg. LLF: 1070.4001443009874
Iteration: 8, Func. Count: 73, Neg. LLF: 1069.0629846018246
Iteration: 9, Func. Count: 81, Neg. LLF: 1068.8540095516162
Iteration: 10, Func. Count: 89, Neg. LLF: 1068.8030223046542
Iteration: 11, Func. Count: 97, Neg. LLF: 1068.7881072966643
Iteration: 12, Func. Count: 105, Neg. LLF: 1068.7874663421169
Iteration: 13, Func. Count: 113, Neg. LLF: 1068.7873607001625
Iteration: 14, Func. Count: 121, Neg. LLF: 1068.787354476864
Iteration: 15, Func. Count: 128, Neg. LLF: 1068.7873544767804
Optimization terminated successfully (Exit mode 0)
Current function value: 1068.787354476864
Iterations: 15
Function evaluations: 128
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 26590.79612545362
Iteration: 2, Func. Count: 20, Neg. LLF: 1162237.7832653564
Iteration: 3, Func. Count: 30, Neg. LLF: 1117.3085007584377
Iteration: 4, Func. Count: 40, Neg. LLF: 1121.50351268846
Iteration: 5, Func. Count: 50, Neg. LLF: 1073.509974163006
Iteration: 6, Func. Count: 60, Neg. LLF: 1068.0762702080276
Iteration: 7, Func. Count: 70, Neg. LLF: 1095.660758275941
Iteration: 8, Func. Count: 80, Neg. LLF: 1066.4991599600196
Iteration: 9, Func. Count: 89, Neg. LLF: 1066.8424153967064
Iteration: 10, Func. Count: 99, Neg. LLF: 1066.4890212965283
Iteration: 11, Func. Count: 108, Neg. LLF: 1066.487084287271
Iteration: 12, Func. Count: 117, Neg. LLF: 1066.4870799564605
Iteration: 13, Func. Count: 125, Neg. LLF: 1066.487079952719
Optimization terminated successfully (Exit mode 0)
Current function value: 1066.4870799564605
Iterations: 13
Function evaluations: 125
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 10917.576257887245
Iteration: 2, Func. Count: 22, Neg. LLF: 980938.9026813147
Iteration: 3, Func. Count: 33, Neg. LLF: 1112.9472776722528
Iteration: 4, Func. Count: 44, Neg. LLF: 1116.3204246256198
Iteration: 5, Func. Count: 55, Neg. LLF: 1085.8409481088568
Iteration: 6, Func. Count: 66, Neg. LLF: 1068.4228116393388
Iteration: 7, Func. Count: 77, Neg. LLF: 1130.1039729199952
Iteration: 8, Func. Count: 88, Neg. LLF: 1065.8588907668336
Iteration: 9, Func. Count: 98, Neg. LLF: 1066.7179685503415
Iteration: 10, Func. Count: 109, Neg. LLF: 1065.8311569302796
Iteration: 11, Func. Count: 120, Neg. LLF: 1065.804202322306
Iteration: 12, Func. Count: 130, Neg. LLF: 1065.8024203223197
Iteration: 13, Func. Count: 140, Neg. LLF: 1065.8024134324455
Iteration: 14, Func. Count: 149, Neg. LLF: 1065.8024134099512
Optimization terminated successfully (Exit mode 0)
Current function value: 1065.8024134324455
Iterations: 14
Function evaluations: 149
Gradient evaluations: 14
Iteration: 1, Func. Count: 12, Neg. LLF: 12514.63876563484
Iteration: 2, Func. Count: 24, Neg. LLF: 56702.88196157888
Iteration: 3, Func. Count: 36, Neg. LLF: 1110.5004320827431
Iteration: 4, Func. Count: 48, Neg. LLF: 1116.3317704306114
Iteration: 5, Func. Count: 60, Neg. LLF: 1089.673400399947
Iteration: 6, Func. Count: 72, Neg. LLF: 1079.305594205205
Iteration: 7, Func. Count: 84, Neg. LLF: 1342.825367786984
Iteration: 8, Func. Count: 96, Neg. LLF: 1063.3648249891044
Iteration: 9, Func. Count: 107, Neg. LLF: 1063.2247470630286
Iteration: 10, Func. Count: 118, Neg. LLF: 1063.0287243378107
Iteration: 11, Func. Count: 129, Neg. LLF: 1063.0250801874934
Iteration: 12, Func. Count: 140, Neg. LLF: 1063.0243252143662
Iteration: 13, Func. Count: 151, Neg. LLF: 1063.0241353134534
Iteration: 14, Func. Count: 162, Neg. LLF: 1063.0241318131923
Iteration: 15, Func. Count: 172, Neg. LLF: 1063.0241318088774
Optimization terminated successfully (Exit mode 0)
Current function value: 1063.0241318131923
Iterations: 15
Function evaluations: 172
Gradient evaluations: 15
Iteration: 1, Func. Count: 9, Neg. LLF: 2048.275476643348
Iteration: 2, Func. Count: 18, Neg. LLF: 2112.657769597952
Iteration: 3, Func. Count: 27, Neg. LLF: 90629.95754812768
Iteration: 4, Func. Count: 36, Neg. LLF: 143541.38259637213
Iteration: 5, Func. Count: 45, Neg. LLF: 1108.7862322363587
Iteration: 6, Func. Count: 54, Neg. LLF: 1654.5337147849073
Iteration: 7, Func. Count: 63, Neg. LLF: 1094.5416987984486
Iteration: 8, Func. Count: 72, Neg. LLF: 1068.070096244726
Iteration: 9, Func. Count: 80, Neg. LLF: 1067.639713137111
Iteration: 10, Func. Count: 88, Neg. LLF: 1067.4299387133585
Iteration: 11, Func. Count: 96, Neg. LLF: 1067.3777166196137
Iteration: 12, Func. Count: 104, Neg. LLF: 1067.370736482914
Iteration: 13, Func. Count: 112, Neg. LLF: 1067.3684759468724
Iteration: 14, Func. Count: 120, Neg. LLF: 1067.3680481408096
Iteration: 15, Func. Count: 128, Neg. LLF: 1067.3678611791356
Iteration: 16, Func. Count: 136, Neg. LLF: 1067.3678145612998
Iteration: 17, Func. Count: 144, Neg. LLF: 1067.3678002072595
Iteration: 18, Func. Count: 152, Neg. LLF: 1067.3677971436746
Iteration: 19, Func. Count: 159, Neg. LLF: 1067.3677971436518
Optimization terminated successfully (Exit mode 0)
Current function value: 1067.3677971436746
Iterations: 19
Function evaluations: 159
Gradient evaluations: 19
Iteration: 1, Func. Count: 10, Neg. LLF: 1355.0009821089538
Iteration: 2, Func. Count: 21, Neg. LLF: 1264.0001830916913
Iteration: 3, Func. Count: 31, Neg. LLF: 49501.01112093386
Iteration: 4, Func. Count: 41, Neg. LLF: 1138.93318386652
Iteration: 5, Func. Count: 51, Neg. LLF: 1139.549516058156
Iteration: 6, Func. Count: 61, Neg. LLF: 1113.4314059762442
Iteration: 7, Func. Count: 71, Neg. LLF: 1067.8029317717687
Iteration: 8, Func. Count: 80, Neg. LLF: 1069.1777979140184
Iteration: 9, Func. Count: 90, Neg. LLF: 1067.6381480533523
Iteration: 10, Func. Count: 100, Neg. LLF: 1067.5558038316944
Iteration: 11, Func. Count: 109, Neg. LLF: 1067.5554495157983
Iteration: 12, Func. Count: 118, Neg. LLF: 1067.5554241201576
Iteration: 13, Func. Count: 127, Neg. LLF: 1067.5554214892704
Iteration: 14, Func. Count: 135, Neg. LLF: 1067.5554214892725
Optimization terminated successfully (Exit mode 0)
Current function value: 1067.5554214892704
Iterations: 14
Function evaluations: 135
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 1318.671131029641
Iteration: 2, Func. Count: 22, Neg. LLF: 1224.7196264232489
Iteration: 3, Func. Count: 33, Neg. LLF: 260155.57928054582
Iteration: 4, Func. Count: 44, Neg. LLF: 1126.0368872401828
Iteration: 5, Func. Count: 55, Neg. LLF: 1067.905382496689
Iteration: 6, Func. Count: 66, Neg. LLF: 1065.6136539417703
Iteration: 7, Func. Count: 77, Neg. LLF: 1070.953178793106
Iteration: 8, Func. Count: 89, Neg. LLF: 1064.5953748259897
Iteration: 9, Func. Count: 99, Neg. LLF: 1064.585684630969
Iteration: 10, Func. Count: 109, Neg. LLF: 1064.58482513719
Iteration: 11, Func. Count: 119, Neg. LLF: 1064.5846585714712
Iteration: 12, Func. Count: 129, Neg. LLF: 1064.5846560852601
Iteration: 13, Func. Count: 138, Neg. LLF: 1064.5846560741145
Optimization terminated successfully (Exit mode 0)
Current function value: 1064.5846560852601
Iterations: 13
Function evaluations: 138
Gradient evaluations: 13
Iteration: 1, Func. Count: 12, Neg. LLF: 1863.658933538431
Iteration: 2, Func. Count: 24, Neg. LLF: 1204.926160015771
Iteration: 3, Func. Count: 36, Neg. LLF: 1184.5855224222714
Iteration: 4, Func. Count: 48, Neg. LLF: 101275.45296870198
Iteration: 5, Func. Count: 61, Neg. LLF: 1066.6864450347384
Iteration: 6, Func. Count: 72, Neg. LLF: 1110.3736755093084
Iteration: 7, Func. Count: 85, Neg. LLF: 1249.644268836253
Iteration: 8, Func. Count: 97, Neg. LLF: 1165.6119697697711
Iteration: 9, Func. Count: 110, Neg. LLF: 1064.9745303779223
Iteration: 10, Func. Count: 122, Neg. LLF: 1064.179850762111
Iteration: 11, Func. Count: 133, Neg. LLF: 1072.2281261059493
Iteration: 12, Func. Count: 146, Neg. LLF: 1064.1277570218622
Iteration: 13, Func. Count: 157, Neg. LLF: 1064.118544061801
Iteration: 14, Func. Count: 168, Neg. LLF: 1064.116575322279
Iteration: 15, Func. Count: 179, Neg. LLF: 1064.1154401770814
Iteration: 16, Func. Count: 190, Neg. LLF: 1064.1154214846079
Iteration: 17, Func. Count: 200, Neg. LLF: 1064.1154214644996
Optimization terminated successfully (Exit mode 0)
Current function value: 1064.1154214846079
Iterations: 17
Function evaluations: 200
Gradient evaluations: 17
Iteration: 1, Func. Count: 13, Neg. LLF: 114899.46592827632
Iteration: 2, Func. Count: 26, Neg. LLF: 8702.895137430643
Iteration: 3, Func. Count: 39, Neg. LLF: 1102.5202800080247
Iteration: 4, Func. Count: 52, Neg. LLF: 1380.360032691315
Iteration: 5, Func. Count: 65, Neg. LLF: 1074.914249694919
Iteration: 6, Func. Count: 78, Neg. LLF: 1741.9906372319178
Iteration: 7, Func. Count: 91, Neg. LLF: 1064.3400450066697
Iteration: 8, Func. Count: 103, Neg. LLF: 1065.9320546358567
Iteration: 9, Func. Count: 116, Neg. LLF: 1093.2377630166375
Iteration: 10, Func. Count: 129, Neg. LLF: 1062.5297304882024
Iteration: 11, Func. Count: 141, Neg. LLF: 1062.5817045309448
Iteration: 12, Func. Count: 154, Neg. LLF: 1062.4067454333413
Iteration: 13, Func. Count: 166, Neg. LLF: 1062.3723140230607
Iteration: 14, Func. Count: 178, Neg. LLF: 1062.3727358856536
Iteration: 15, Func. Count: 191, Neg. LLF: 1062.3689586652872
Iteration: 16, Func. Count: 204, Neg. LLF: 1062.3683284929202
Iteration: 17, Func. Count: 216, Neg. LLF: 1062.3683221321078
Iteration: 18, Func. Count: 227, Neg. LLF: 1062.3683220427522
Optimization terminated successfully (Exit mode 0)
Current function value: 1062.3683221321078
Iterations: 18
Function evaluations: 227
Gradient evaluations: 18
Iteration: 1, Func. Count: 10, Neg. LLF: 1683.3522616491032
Iteration: 2, Func. Count: 20, Neg. LLF: 19554.66554802259
Iteration: 3, Func. Count: 30, Neg. LLF: 1381474.2457414414
Iteration: 4, Func. Count: 40, Neg. LLF: 155026.11132909256
Iteration: 5, Func. Count: 50, Neg. LLF: 1239.0842967707688
Iteration: 6, Func. Count: 60, Neg. LLF: 1138.097385574115
Iteration: 7, Func. Count: 71, Neg. LLF: 1084.0585380387552
Iteration: 8, Func. Count: 81, Neg. LLF: 3105.3604900970904
Iteration: 9, Func. Count: 91, Neg. LLF: 1089.7202199645608
Iteration: 10, Func. Count: 101, Neg. LLF: 1118.5611590553617
Iteration: 11, Func. Count: 111, Neg. LLF: 1067.3124063580349
Iteration: 12, Func. Count: 120, Neg. LLF: 1067.2717195327373
Iteration: 13, Func. Count: 130, Neg. LLF: 1067.1275189236958
Iteration: 14, Func. Count: 139, Neg. LLF: 1067.1202257912
Iteration: 15, Func. Count: 148, Neg. LLF: 1067.1198245960964
Iteration: 16, Func. Count: 157, Neg. LLF: 1067.119612564824
Iteration: 17, Func. Count: 166, Neg. LLF: 1067.1195879751424
Iteration: 18, Func. Count: 175, Neg. LLF: 1067.1195768133884
Iteration: 19, Func. Count: 184, Neg. LLF: 1067.119573778683
Iteration: 20, Func. Count: 192, Neg. LLF: 1067.1195737786472
Optimization terminated successfully (Exit mode 0)
Current function value: 1067.119573778683
Iterations: 20
Function evaluations: 192
Gradient evaluations: 20
Iteration: 1, Func. Count: 11, Neg. LLF: 1324.1980790649054
Iteration: 2, Func. Count: 24, Neg. LLF: 1407.2216640209706
Iteration: 3, Func. Count: 35, Neg. LLF: 1656.3270056929266
Iteration: 4, Func. Count: 47, Neg. LLF: 1327.8549793846796
Iteration: 5, Func. Count: 58, Neg. LLF: 1114.1143657570249
Iteration: 6, Func. Count: 69, Neg. LLF: 1141.5367875823429
Iteration: 7, Func. Count: 80, Neg. LLF: 1068.5245975493438
Iteration: 8, Func. Count: 90, Neg. LLF: 1073.9153593349436
Iteration: 9, Func. Count: 101, Neg. LLF: 1067.5969474333115
Iteration: 10, Func. Count: 111, Neg. LLF: 1067.5581388340122
Iteration: 11, Func. Count: 121, Neg. LLF: 1067.5559568374274
Iteration: 12, Func. Count: 131, Neg. LLF: 1067.5554615156625
Iteration: 13, Func. Count: 141, Neg. LLF: 1067.555423804035
Iteration: 14, Func. Count: 151, Neg. LLF: 1067.5554215686825
Iteration: 15, Func. Count: 160, Neg. LLF: 1067.5554215687357
Optimization terminated successfully (Exit mode 0)
Current function value: 1067.5554215686825
Iterations: 15
Function evaluations: 160
Gradient evaluations: 15
Iteration: 1, Func. Count: 12, Neg. LLF: 1285.1960989980566
Iteration: 2, Func. Count: 25, Neg. LLF: 1270.673005276361
Iteration: 3, Func. Count: 37, Neg. LLF: 207176.05789161142
Iteration: 4, Func. Count: 49, Neg. LLF: 1200.0356368912023
Iteration: 5, Func. Count: 61, Neg. LLF: 1124.9104259773803
Iteration: 6, Func. Count: 73, Neg. LLF: 1068.3856356184365
Iteration: 7, Func. Count: 85, Neg. LLF: 1065.3450688641085
Iteration: 8, Func. Count: 96, Neg. LLF: 1066.5331172909544
Iteration: 9, Func. Count: 108, Neg. LLF: 1066.634143547331
Iteration: 10, Func. Count: 120, Neg. LLF: 1064.5863740097955
Iteration: 11, Func. Count: 131, Neg. LLF: 1064.585185581461
Iteration: 12, Func. Count: 142, Neg. LLF: 1064.584707627144
Iteration: 13, Func. Count: 153, Neg. LLF: 1064.5846589176444
Iteration: 14, Func. Count: 164, Neg. LLF: 1064.5846561678536
Iteration: 15, Func. Count: 174, Neg. LLF: 1064.5846561567669
Optimization terminated successfully (Exit mode 0)
Current function value: 1064.5846561678536
Iterations: 15
Function evaluations: 174
Gradient evaluations: 15
Iteration: 1, Func. Count: 13, Neg. LLF: 1302.6788709502243
Iteration: 2, Func. Count: 27, Neg. LLF: 1268.05167033599
Iteration: 3, Func. Count: 40, Neg. LLF: 76779.64073564745
Iteration: 4, Func. Count: 53, Neg. LLF: 1437.8940471439928
Iteration: 5, Func. Count: 66, Neg. LLF: 1115.5159852006336
Iteration: 6, Func. Count: 79, Neg. LLF: 1139.16300483735
Iteration: 7, Func. Count: 92, Neg. LLF: 1065.7871126216687
Iteration: 8, Func. Count: 104, Neg. LLF: 1065.0708656098775
Iteration: 9, Func. Count: 117, Neg. LLF: 1087.8716202576202
Iteration: 10, Func. Count: 131, Neg. LLF: 1064.3692382755062
Iteration: 11, Func. Count: 144, Neg. LLF: 1064.1392900588542
Iteration: 12, Func. Count: 156, Neg. LLF: 1064.2806665586484
Iteration: 13, Func. Count: 169, Neg. LLF: 1064.1186732522146
Iteration: 14, Func. Count: 181, Neg. LLF: 1064.116306923378
Iteration: 15, Func. Count: 193, Neg. LLF: 1064.1438849559813
Iteration: 16, Func. Count: 206, Neg. LLF: 1064.115158817728
Iteration: 17, Func. Count: 218, Neg. LLF: 1064.1152102314707
Iteration: 18, Func. Count: 231, Neg. LLF: 1064.1148312372652
Iteration: 19, Func. Count: 243, Neg. LLF: 1064.114829307884
Iteration: 20, Func. Count: 254, Neg. LLF: 1064.1148292873486
Optimization terminated successfully (Exit mode 0)
Current function value: 1064.114829307884
Iterations: 20
Function evaluations: 254
Gradient evaluations: 20
Iteration: 1, Func. Count: 14, Neg. LLF: 1401.7834348926772
Iteration: 2, Func. Count: 28, Neg. LLF: 1185.4179472187257
Iteration: 3, Func. Count: 42, Neg. LLF: 50771.47144707811
Iteration: 4, Func. Count: 56, Neg. LLF: 1370.536642399605
Iteration: 5, Func. Count: 70, Neg. LLF: 1266.4564913552044
Iteration: 6, Func. Count: 84, Neg. LLF: 1072.9770505987462
Iteration: 7, Func. Count: 98, Neg. LLF: 1068.8606356337527
Iteration: 8, Func. Count: 112, Neg. LLF: 1113.848554325236
Iteration: 9, Func. Count: 126, Neg. LLF: 1065.1718754783712
Iteration: 10, Func. Count: 140, Neg. LLF: 1065.5959675245495
Iteration: 11, Func. Count: 154, Neg. LLF: 1062.6918654396657
Iteration: 12, Func. Count: 167, Neg. LLF: 1062.511334277323
Iteration: 13, Func. Count: 180, Neg. LLF: 1063.2090425113204
Iteration: 14, Func. Count: 194, Neg. LLF: 1062.3531373825915
Iteration: 15, Func. Count: 207, Neg. LLF: 1062.3379908523912
Iteration: 16, Func. Count: 220, Neg. LLF: 1062.3362597781975
Iteration: 17, Func. Count: 233, Neg. LLF: 1062.3357672550173
Iteration: 18, Func. Count: 246, Neg. LLF: 1062.3357153657407
Iteration: 19, Func. Count: 259, Neg. LLF: 1062.3357133844393
Iteration: 20, Func. Count: 271, Neg. LLF: 1062.3357133844174
Optimization terminated successfully (Exit mode 0)
Current function value: 1062.3357133844393
Iterations: 20
Function evaluations: 271
Gradient evaluations: 20
Iteration: 1, Func. Count: 11, Neg. LLF: 1879.2973411425787
Iteration: 2, Func. Count: 23, Neg. LLF: 2001.7551716771216
Iteration: 3, Func. Count: 34, Neg. LLF: 182376023.67942846
Iteration: 4, Func. Count: 45, Neg. LLF: 117830.95600836039
Iteration: 5, Func. Count: 56, Neg. LLF: 4583.457178979419
Iteration: 6, Func. Count: 67, Neg. LLF: 1120.4842600538018
Iteration: 7, Func. Count: 78, Neg. LLF: 1098.1311285552429
Iteration: 8, Func. Count: 90, Neg. LLF: 1180.5991145819644
Iteration: 9, Func. Count: 101, Neg. LLF: 1105.3955672367715
Iteration: 10, Func. Count: 112, Neg. LLF: 1088.569191809319
Iteration: 11, Func. Count: 123, Neg. LLF: 1074.747109933715
Iteration: 12, Func. Count: 134, Neg. LLF: 1067.908252728003
Iteration: 13, Func. Count: 144, Neg. LLF: 1067.0781725241236
Iteration: 14, Func. Count: 154, Neg. LLF: 1067.062597921328
Iteration: 15, Func. Count: 164, Neg. LLF: 1067.0615816227328
Iteration: 16, Func. Count: 174, Neg. LLF: 1067.061493632052
Iteration: 17, Func. Count: 184, Neg. LLF: 1067.061468997009
Iteration: 18, Func. Count: 194, Neg. LLF: 1067.0614500248666
Iteration: 19, Func. Count: 204, Neg. LLF: 1067.0614455237624
Iteration: 20, Func. Count: 214, Neg. LLF: 1067.0614448909967
Optimization terminated successfully (Exit mode 0)
Current function value: 1067.0614448909967
Iterations: 20
Function evaluations: 214
Gradient evaluations: 20
Iteration: 1, Func. Count: 12, Neg. LLF: 1246.4336255854512
Iteration: 2, Func. Count: 26, Neg. LLF: 1422.860790402368
Iteration: 3, Func. Count: 38, Neg. LLF: 1711.6321859844106
Iteration: 4, Func. Count: 50, Neg. LLF: 1327.7990232469401
Iteration: 5, Func. Count: 62, Neg. LLF: 1115.236155994571
Iteration: 6, Func. Count: 74, Neg. LLF: 1098.0124807013383
Iteration: 7, Func. Count: 86, Neg. LLF: 1119.7341186555814
Iteration: 8, Func. Count: 98, Neg. LLF: 1075.0752924704059
Iteration: 9, Func. Count: 110, Neg. LLF: 1100.8297797716384
Iteration: 10, Func. Count: 122, Neg. LLF: 1066.6374946577407
Iteration: 11, Func. Count: 133, Neg. LLF: 1067.64586371844
Iteration: 12, Func. Count: 145, Neg. LLF: 1066.6232229674042
Iteration: 13, Func. Count: 157, Neg. LLF: 1066.5677513149412
Iteration: 14, Func. Count: 169, Neg. LLF: 1066.5299191144281
Iteration: 15, Func. Count: 180, Neg. LLF: 1066.5293679724182
Iteration: 16, Func. Count: 191, Neg. LLF: 1066.5292784215276
Iteration: 17, Func. Count: 202, Neg. LLF: 1066.5292630959525
Iteration: 18, Func. Count: 213, Neg. LLF: 1066.5292622899633
Optimization terminated successfully (Exit mode 0)
Current function value: 1066.5292622899633
Iterations: 18
Function evaluations: 213
Gradient evaluations: 18
Iteration: 1, Func. Count: 13, Neg. LLF: 1180.6703006711455
Iteration: 2, Func. Count: 28, Neg. LLF: 1363.1320352546759
Iteration: 3, Func. Count: 41, Neg. LLF: 1727.8274960462481
Iteration: 4, Func. Count: 54, Neg. LLF: 1258.451500014205
Iteration: 5, Func. Count: 67, Neg. LLF: 1107.8794240431698
Iteration: 6, Func. Count: 80, Neg. LLF: 1213.4648970744477
Iteration: 7, Func. Count: 93, Neg. LLF: 1066.7549946687657
Iteration: 8, Func. Count: 105, Neg. LLF: 1069.7181461533605
Iteration: 9, Func. Count: 118, Neg. LLF: 1137.060521113212
Iteration: 10, Func. Count: 131, Neg. LLF: 1067.0139624487429
Iteration: 11, Func. Count: 144, Neg. LLF: 1065.2493999657295
Iteration: 12, Func. Count: 157, Neg. LLF: 1064.6666663080885
Iteration: 13, Func. Count: 169, Neg. LLF: 1064.5942790370614
Iteration: 14, Func. Count: 181, Neg. LLF: 1064.5653128138388
Iteration: 15, Func. Count: 193, Neg. LLF: 1064.5599054944182
Iteration: 16, Func. Count: 205, Neg. LLF: 1064.5594696161247
Iteration: 17, Func. Count: 217, Neg. LLF: 1064.5594259977456
Iteration: 18, Func. Count: 229, Neg. LLF: 1064.5594243637238
Iteration: 19, Func. Count: 240, Neg. LLF: 1064.5594243609787
Optimization terminated successfully (Exit mode 0)
Current function value: 1064.5594243637238
Iterations: 19
Function evaluations: 240
Gradient evaluations: 19
Iteration: 1, Func. Count: 14, Neg. LLF: 1203.1739768582715
Iteration: 2, Func. Count: 29, Neg. LLF: 1205.3474510922565
Iteration: 3, Func. Count: 43, Neg. LLF: 192332379.65043622
Iteration: 4, Func. Count: 57, Neg. LLF: 1377.1584772540982
Iteration: 5, Func. Count: 72, Neg. LLF: 1118.4815215139317
Iteration: 6, Func. Count: 86, Neg. LLF: 1098.6245667605795
Iteration: 7, Func. Count: 100, Neg. LLF: 1073.6279732185617
Iteration: 8, Func. Count: 114, Neg. LLF: 1068.933510166296
Iteration: 9, Func. Count: 128, Neg. LLF: 1069.9639685741763
Iteration: 10, Func. Count: 142, Neg. LLF: 1064.3158539942765
Iteration: 11, Func. Count: 155, Neg. LLF: 1064.8774402934885
Iteration: 12, Func. Count: 169, Neg. LLF: 1066.5492974990034
Iteration: 13, Func. Count: 183, Neg. LLF: 1064.1309146175493
Iteration: 14, Func. Count: 197, Neg. LLF: 1064.0582645636894
Iteration: 15, Func. Count: 210, Neg. LLF: 1064.0390326137556
Iteration: 16, Func. Count: 223, Neg. LLF: 1064.0336432902172
Iteration: 17, Func. Count: 236, Neg. LLF: 1064.0548972895326
Iteration: 18, Func. Count: 250, Neg. LLF: 1064.031397729737
Iteration: 19, Func. Count: 263, Neg. LLF: 1064.0307135553037
Iteration: 20, Func. Count: 276, Neg. LLF: 1064.0306901274785
Iteration: 21, Func. Count: 289, Neg. LLF: 1064.0306881110535
Iteration: 22, Func. Count: 301, Neg. LLF: 1064.0306880954186
Optimization terminated successfully (Exit mode 0)
Current function value: 1064.0306881110535
Iterations: 22
Function evaluations: 301
Gradient evaluations: 22
Iteration: 1, Func. Count: 15, Neg. LLF: 1443.783618838617
Iteration: 2, Func. Count: 30, Neg. LLF: 1283.4753480050078
Iteration: 3, Func. Count: 45, Neg. LLF: 13629.821999497031
Iteration: 4, Func. Count: 60, Neg. LLF: 1175.6435131038197
Iteration: 5, Func. Count: 76, Neg. LLF: 1134.629553071979
Iteration: 6, Func. Count: 91, Neg. LLF: 1083.3732694577543
Iteration: 7, Func. Count: 106, Neg. LLF: 1065.1525821150265
Iteration: 8, Func. Count: 121, Neg. LLF: 1062.2469814627464
Iteration: 9, Func. Count: 135, Neg. LLF: 1067.0929824547597
Iteration: 10, Func. Count: 151, Neg. LLF: 1094.1694647756913
Iteration: 11, Func. Count: 167, Neg. LLF: 1060.995810669062
Iteration: 12, Func. Count: 181, Neg. LLF: 1060.7949103738329
Iteration: 13, Func. Count: 195, Neg. LLF: 1060.729037333398
Iteration: 14, Func. Count: 209, Neg. LLF: 1060.7198939235
Iteration: 15, Func. Count: 223, Neg. LLF: 1060.7161014113397
Iteration: 16, Func. Count: 237, Neg. LLF: 1060.7160099780288
Iteration: 17, Func. Count: 251, Neg. LLF: 1060.716004862579
Iteration: 18, Func. Count: 265, Neg. LLF: 1060.716004093513
Optimization terminated successfully (Exit mode 0)
Current function value: 1060.716004093513
Iterations: 18
Function evaluations: 265
Gradient evaluations: 18
Iteration: 1, Func. Count: 12, Neg. LLF: 1995.425506611266
Iteration: 2, Func. Count: 24, Neg. LLF: 49715.64728378927
Iteration: 3, Func. Count: 36, Neg. LLF: 492321482.9889046
Iteration: 4, Func. Count: 48, Neg. LLF: 41077.324973775074
Iteration: 5, Func. Count: 60, Neg. LLF: 1174.610417635853
Iteration: 6, Func. Count: 72, Neg. LLF: 1158.9618281429343
Iteration: 7, Func. Count: 85, Neg. LLF: 1146.5450179038166
Iteration: 8, Func. Count: 97, Neg. LLF: 1171.6219220677544
Iteration: 9, Func. Count: 109, Neg. LLF: 1078.3620807138145
Iteration: 10, Func. Count: 121, Neg. LLF: 1144.8435939016795
Iteration: 11, Func. Count: 133, Neg. LLF: 1071.8534714159707
Iteration: 12, Func. Count: 145, Neg. LLF: 1086.4044382850536
Iteration: 13, Func. Count: 157, Neg. LLF: 1068.1729060290268
Iteration: 14, Func. Count: 169, Neg. LLF: 1066.2929130450793
Iteration: 15, Func. Count: 180, Neg. LLF: 1066.424374776992
Iteration: 16, Func. Count: 192, Neg. LLF: 1066.0483752958844
Iteration: 17, Func. Count: 203, Neg. LLF: 1066.0416989348146
Iteration: 18, Func. Count: 214, Neg. LLF: 1066.0405604664463
Iteration: 19, Func. Count: 225, Neg. LLF: 1066.0404025384225
Iteration: 20, Func. Count: 236, Neg. LLF: 1066.0403945111698
Iteration: 21, Func. Count: 247, Neg. LLF: 1066.0403936153548
Optimization terminated successfully (Exit mode 0)
Current function value: 1066.0403936153548
Iterations: 21
Function evaluations: 247
Gradient evaluations: 21
Iteration: 1, Func. Count: 13, Neg. LLF: 1217.639353720778
Iteration: 2, Func. Count: 28, Neg. LLF: 1482.5288693519508
Iteration: 3, Func. Count: 41, Neg. LLF: 1551.537293252146
Iteration: 4, Func. Count: 54, Neg. LLF: 1332.5992414907814
Iteration: 5, Func. Count: 67, Neg. LLF: 1129.8261569266433
Iteration: 6, Func. Count: 80, Neg. LLF: 1080.214390298227
Iteration: 7, Func. Count: 93, Neg. LLF: 1115.8908054227893
Iteration: 8, Func. Count: 106, Neg. LLF: 1106.0718273646078
Iteration: 9, Func. Count: 119, Neg. LLF: 1089.4605138935458
Iteration: 10, Func. Count: 132, Neg. LLF: 1103.7727981061914
Iteration: 11, Func. Count: 145, Neg. LLF: 1066.152766679956
Iteration: 12, Func. Count: 157, Neg. LLF: 1066.7602252584252
Iteration: 13, Func. Count: 170, Neg. LLF: 1066.8289208474246
Iteration: 14, Func. Count: 183, Neg. LLF: 1065.704697189332
Iteration: 15, Func. Count: 195, Neg. LLF: 1065.9770535025104
Iteration: 16, Func. Count: 208, Neg. LLF: 1065.6918422110198
Iteration: 17, Func. Count: 220, Neg. LLF: 1065.6911206688699
Iteration: 18, Func. Count: 232, Neg. LLF: 1065.690970999341
Iteration: 19, Func. Count: 244, Neg. LLF: 1065.690959331824
Iteration: 20, Func. Count: 256, Neg. LLF: 1065.6909573108614
Iteration: 21, Func. Count: 267, Neg. LLF: 1065.6909573108824
Optimization terminated successfully (Exit mode 0)
Current function value: 1065.6909573108614
Iterations: 21
Function evaluations: 267
Gradient evaluations: 21
Iteration: 1, Func. Count: 14, Neg. LLF: 1156.8831382056303
Iteration: 2, Func. Count: 30, Neg. LLF: 1453.7288650554547
Iteration: 3, Func. Count: 44, Neg. LLF: 1943.5781718155185
Iteration: 4, Func. Count: 58, Neg. LLF: 1129.3296753318637
Iteration: 5, Func. Count: 72, Neg. LLF: 1117.0756185398245
Iteration: 6, Func. Count: 86, Neg. LLF: 1084.518145280419
Iteration: 7, Func. Count: 100, Neg. LLF: 1084.4385067838466
Iteration: 8, Func. Count: 114, Neg. LLF: 1097.6381520027935
Iteration: 9, Func. Count: 128, Neg. LLF: 1064.1208482680927
Iteration: 10, Func. Count: 141, Neg. LLF: 1063.552861852681
Iteration: 11, Func. Count: 154, Neg. LLF: 1083.2246709225246
Iteration: 12, Func. Count: 170, Neg. LLF: 1067.6760500731143
Iteration: 13, Func. Count: 184, Neg. LLF: 1064.6896353470547
Iteration: 14, Func. Count: 198, Neg. LLF: 1063.1886456971774
Iteration: 15, Func. Count: 211, Neg. LLF: 1063.1587217812041
Iteration: 16, Func. Count: 224, Neg. LLF: 1063.1567635435954
Iteration: 17, Func. Count: 237, Neg. LLF: 1063.156295628648
Iteration: 18, Func. Count: 250, Neg. LLF: 1063.1561802609453
Iteration: 19, Func. Count: 263, Neg. LLF: 1063.1561687469373
Iteration: 20, Func. Count: 275, Neg. LLF: 1063.1561687278509
Optimization terminated successfully (Exit mode 0)
Current function value: 1063.1561687469373
Iterations: 20
Function evaluations: 275
Gradient evaluations: 20
Iteration: 1, Func. Count: 15, Neg. LLF: 1153.7011581909742
Iteration: 2, Func. Count: 32, Neg. LLF: 940875.6376931872
Iteration: 3, Func. Count: 47, Neg. LLF: 1887.167549022722
Iteration: 4, Func. Count: 62, Neg. LLF: 1141.469505278881
Iteration: 5, Func. Count: 77, Neg. LLF: 1100.1399673003775
Iteration: 6, Func. Count: 92, Neg. LLF: 1086.0298035316173
Iteration: 7, Func. Count: 107, Neg. LLF: 1076.343227425205
Iteration: 8, Func. Count: 122, Neg. LLF: 1067.2078731925453
Iteration: 9, Func. Count: 137, Neg. LLF: 1063.3826147111456
Iteration: 10, Func. Count: 151, Neg. LLF: 1064.1034687774536
Iteration: 11, Func. Count: 166, Neg. LLF: 1077.0018832368326
Iteration: 12, Func. Count: 181, Neg. LLF: 1063.1705337197268
Iteration: 13, Func. Count: 195, Neg. LLF: 1063.1594200881136
Iteration: 14, Func. Count: 209, Neg. LLF: 1063.1569407859542
Iteration: 15, Func. Count: 223, Neg. LLF: 1063.1561840587951
Iteration: 16, Func. Count: 237, Neg. LLF: 1063.1561696554202
Iteration: 17, Func. Count: 251, Neg. LLF: 1063.1561686830419
Optimization terminated successfully (Exit mode 0)
Current function value: 1063.1561686830419
Iterations: 17
Function evaluations: 251
Gradient evaluations: 17
Iteration: 1, Func. Count: 16, Neg. LLF: 1231.8025643619524
Iteration: 2, Func. Count: 32, Neg. LLF: 1607.4640709526834
Iteration: 3, Func. Count: 48, Neg. LLF: 3181.8448136671086
Iteration: 4, Func. Count: 64, Neg. LLF: 1120.966861312093
Iteration: 5, Func. Count: 81, Neg. LLF: 1219.5702799403984
Iteration: 6, Func. Count: 97, Neg. LLF: 1112.398564304518
Iteration: 7, Func. Count: 113, Neg. LLF: 1239.39971294213
Iteration: 8, Func. Count: 129, Neg. LLF: 1074.4933870227578
Iteration: 9, Func. Count: 145, Neg. LLF: 1063.5667801356758
Iteration: 10, Func. Count: 160, Neg. LLF: 1082.0046292707543
Iteration: 11, Func. Count: 176, Neg. LLF: 1154.237800148484
Iteration: 12, Func. Count: 192, Neg. LLF: 1127.0439349300768
Iteration: 13, Func. Count: 210, Neg. LLF: 1068.1798530836838
Iteration: 14, Func. Count: 226, Neg. LLF: 1061.0219290986493
Iteration: 15, Func. Count: 242, Neg. LLF: 1060.655936344323
Iteration: 16, Func. Count: 257, Neg. LLF: 1060.5424246124603
Iteration: 17, Func. Count: 272, Neg. LLF: 1060.5338524679023
Iteration: 18, Func. Count: 287, Neg. LLF: 1060.5306704576103
Iteration: 19, Func. Count: 302, Neg. LLF: 1060.5305609154184
Iteration: 20, Func. Count: 317, Neg. LLF: 1060.5305346972411
Iteration: 21, Func. Count: 332, Neg. LLF: 1060.5305317503298
Iteration: 22, Func. Count: 347, Neg. LLF: 1060.5305306573
Iteration: 23, Func. Count: 361, Neg. LLF: 1060.5305306214204
Optimization terminated successfully (Exit mode 0)
Current function value: 1060.5305306573
Iterations: 23
Function evaluations: 361
Gradient evaluations: 23
Iteration: 1, Func. Count: 9, Neg. LLF: 443085531.2060517
Iteration: 2, Func. Count: 19, Neg. LLF: 3958.029948624432
Iteration: 3, Func. Count: 29, Neg. LLF: 1225.6878394933424
Iteration: 4, Func. Count: 38, Neg. LLF: 1071.0700689082273
Iteration: 5, Func. Count: 47, Neg. LLF: 1080.4611031014251
Iteration: 6, Func. Count: 56, Neg. LLF: 1064.8517860306747
Iteration: 7, Func. Count: 64, Neg. LLF: 1111.5381227916773
Iteration: 8, Func. Count: 73, Neg. LLF: 1078.366553562771
Iteration: 9, Func. Count: 82, Neg. LLF: 1063.198488547326
Iteration: 10, Func. Count: 90, Neg. LLF: 1063.0823494098581
Iteration: 11, Func. Count: 98, Neg. LLF: 1063.0368716905919
Iteration: 12, Func. Count: 106, Neg. LLF: 1063.0298181139924
Iteration: 13, Func. Count: 114, Neg. LLF: 1063.0242202974816
Iteration: 14, Func. Count: 122, Neg. LLF: 1063.024131901409
Iteration: 15, Func. Count: 129, Neg. LLF: 1063.0241318975127
Optimization terminated successfully (Exit mode 0)
Current function value: 1063.024131901409
Iterations: 15
Function evaluations: 129
Gradient evaluations: 15
garch_df = pd.DataFrame(index=test.index)
garch_df['Actual'] = test
garch_df['Predicted'] = np.sqrt(predictions.variance.values[-1,:])
px.line(garch_df, x=garch_df.index, y=['Actual', 'Predicted'])
pred_ahead = 5
days_to_train = 50
# Establishing new DF for predictions
stock_df['Predictions'] = pd.DataFrame(index=stock_df['Diff'].index,
columns=stock_df['Diff'].columns)
for stock in tqdm(stocks):
for day in tqdm(range(250,
stock_df['Diff'].shape[0]-pred_ahead,
pred_ahead)):
# The training data to use
training = stock_df['Diff'][stock].iloc[day-days_to_train:day+1]
# Optimizing parameters
best_param = param_search(arch_model, training, poq)
# Using the best parameters
model = arch_model(training,
p=best_param[0],
o=best_param[1],
q=best_param[2])
output = model.fit()
# Getting the predictions
predictions = output.forecast(horizon=pred_ahead)
# Getting the average volatility for the next N days
stock_df['Predictions'][stock].iloc[day:day+pred_ahead] = np.sqrt(predictions.variance.values[-1,:])[-1]
Iteration: 1, Func. Count: 5, Neg. LLF: 122.75246218111407
Iteration: 2, Func. Count: 10, Neg. LLF: 155.7877435888939
Iteration: 3, Func. Count: 15, Neg. LLF: 119.1211127837803
Iteration: 4, Func. Count: 19, Neg. LLF: 119.1089439917
Iteration: 5, Func. Count: 23, Neg. LLF: 119.0850922961047
Iteration: 6, Func. Count: 27, Neg. LLF: 119.07811450547482
Iteration: 7, Func. Count: 31, Neg. LLF: 119.07699865762547
Iteration: 8, Func. Count: 35, Neg. LLF: 119.0769260069557
Iteration: 9, Func. Count: 38, Neg. LLF: 119.07692600696195
Optimization terminated successfully (Exit mode 0)
Current function value: 119.0769260069557
Iterations: 9
Function evaluations: 38
Gradient evaluations: 9
Iteration: 1, Func. Count: 6, Neg. LLF: 120.93594827558849
Iteration: 2, Func. Count: 11, Neg. LLF: 120.40844110194165
Iteration: 3, Func. Count: 16, Neg. LLF: 127.87319027692705
Iteration: 4, Func. Count: 22, Neg. LLF: 119.31727892635594
Iteration: 5, Func. Count: 27, Neg. LLF: 121.05548858931769
Iteration: 6, Func. Count: 33, Neg. LLF: 119.18071194323169
Iteration: 7, Func. Count: 39, Neg. LLF: 119.0774628456969
Iteration: 8, Func. Count: 44, Neg. LLF: 119.07693041243766
Iteration: 9, Func. Count: 49, Neg. LLF: 119.07692605625755
Iteration: 10, Func. Count: 53, Neg. LLF: 119.07692620433119
Optimization terminated successfully (Exit mode 0)
Current function value: 119.07692605625755
Iterations: 10
Function evaluations: 53
Gradient evaluations: 10
Iteration: 1, Func. Count: 7, Neg. LLF: 121.06627426345344
Iteration: 2, Func. Count: 14, Neg. LLF: 122.9404999230854
Iteration: 3, Func. Count: 21, Neg. LLF: 120.63762656201563
Iteration: 4, Func. Count: 28, Neg. LLF: 119.36506400161579
Iteration: 5, Func. Count: 34, Neg. LLF: 119.09256903066931
Iteration: 6, Func. Count: 40, Neg. LLF: 119.68305383617397
Iteration: 7, Func. Count: 47, Neg. LLF: 119.04194734230208
Iteration: 8, Func. Count: 53, Neg. LLF: 119.04054043397801
Iteration: 9, Func. Count: 59, Neg. LLF: 119.04050880008293
Iteration: 10, Func. Count: 64, Neg. LLF: 119.04050879999986
Optimization terminated successfully (Exit mode 0)
Current function value: 119.04050880008293
Iterations: 10
Function evaluations: 64
Gradient evaluations: 10
Iteration: 1, Func. Count: 8, Neg. LLF: 121.26232126404098
Iteration: 2, Func. Count: 16, Neg. LLF: 125.29270905910415
Iteration: 3, Func. Count: 24, Neg. LLF: 117.32540956965329
Iteration: 4, Func. Count: 31, Neg. LLF: 119.32721054113766
Iteration: 5, Func. Count: 39, Neg. LLF: 158.0864955180112
Iteration: 6, Func. Count: 47, Neg. LLF: 121.10431337616716
Iteration: 7, Func. Count: 55, Neg. LLF: 116.45168124557044
Iteration: 8, Func. Count: 63, Neg. LLF: 115.53881670824931
Iteration: 9, Func. Count: 70, Neg. LLF: 115.33829540250026
Iteration: 10, Func. Count: 77, Neg. LLF: 115.35584188063676
Iteration: 11, Func. Count: 85, Neg. LLF: 115.30048953953309
Iteration: 12, Func. Count: 92, Neg. LLF: 115.29861413269508
Iteration: 13, Func. Count: 99, Neg. LLF: 115.2985255654992
Iteration: 14, Func. Count: 106, Neg. LLF: 115.2985249731749
Optimization terminated successfully (Exit mode 0)
Current function value: 115.2985249731749
Iterations: 14
Function evaluations: 106
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 121.02044469344821
Iteration: 2, Func. Count: 18, Neg. LLF: 121.51270581097084
Iteration: 3, Func. Count: 27, Neg. LLF: 135.93938010197562
Iteration: 4, Func. Count: 36, Neg. LLF: 145.45118992808787
Iteration: 5, Func. Count: 45, Neg. LLF: 128.99195887092114
Iteration: 6, Func. Count: 54, Neg. LLF: 125.64334935093487
Iteration: 7, Func. Count: 63, Neg. LLF: 121.43853477675515
Iteration: 8, Func. Count: 72, Neg. LLF: 159.17158018092465
Iteration: 9, Func. Count: 81, Neg. LLF: 117.25664782480851
Iteration: 10, Func. Count: 90, Neg. LLF: 116.8013938142417
Iteration: 11, Func. Count: 99, Neg. LLF: 116.31433565675003
Iteration: 12, Func. Count: 107, Neg. LLF: 116.01781131546242
Iteration: 13, Func. Count: 115, Neg. LLF: 115.56520330074886
Iteration: 14, Func. Count: 123, Neg. LLF: 115.31475175953949
Iteration: 15, Func. Count: 131, Neg. LLF: 115.30107470508273
Iteration: 16, Func. Count: 139, Neg. LLF: 115.30070032466271
Iteration: 17, Func. Count: 148, Neg. LLF: 115.29864673672085
Iteration: 18, Func. Count: 156, Neg. LLF: 115.29853065612023
Iteration: 19, Func. Count: 164, Neg. LLF: 115.29852513252324
Iteration: 20, Func. Count: 171, Neg. LLF: 115.29852528039937
Optimization terminated successfully (Exit mode 0)
Current function value: 115.29852513252324
Iterations: 20
Function evaluations: 171
Gradient evaluations: 20
Iteration: 1, Func. Count: 6, Neg. LLF: 123.62777565005761
Iteration: 2, Func. Count: 12, Neg. LLF: 176.6539882613957
Iteration: 3, Func. Count: 18, Neg. LLF: 119.14617076914602
Iteration: 4, Func. Count: 23, Neg. LLF: 119.11116725630197
Iteration: 5, Func. Count: 28, Neg. LLF: 119.10578232329715
Iteration: 6, Func. Count: 33, Neg. LLF: 119.08935687708868
Iteration: 7, Func. Count: 38, Neg. LLF: 119.08092595032568
Iteration: 8, Func. Count: 43, Neg. LLF: 119.07750223678475
Iteration: 9, Func. Count: 48, Neg. LLF: 119.07692896055424
Iteration: 10, Func. Count: 53, Neg. LLF: 119.07692595156078
Iteration: 11, Func. Count: 57, Neg. LLF: 119.0769261052888
Optimization terminated successfully (Exit mode 0)
Current function value: 119.07692595156078
Iterations: 11
Function evaluations: 57
Gradient evaluations: 11
Iteration: 1, Func. Count: 7, Neg. LLF: 120.73726187369208
Iteration: 2, Func. Count: 13, Neg. LLF: 139.78089241514402
Iteration: 3, Func. Count: 20, Neg. LLF: 119.83680105778446
Iteration: 4, Func. Count: 26, Neg. LLF: 119.5532438757661
Iteration: 5, Func. Count: 32, Neg. LLF: 119.2823070140073
Iteration: 6, Func. Count: 38, Neg. LLF: 119.13366077049258
Iteration: 7, Func. Count: 44, Neg. LLF: 119.08106312848835
Iteration: 8, Func. Count: 50, Neg. LLF: 119.07708318072164
Iteration: 9, Func. Count: 56, Neg. LLF: 119.07692664490455
Iteration: 10, Func. Count: 62, Neg. LLF: 119.07692596853327
Optimization terminated successfully (Exit mode 0)
Current function value: 119.07692596853327
Iterations: 10
Function evaluations: 62
Gradient evaluations: 10
Iteration: 1, Func. Count: 8, Neg. LLF: 121.00675902115296
Iteration: 2, Func. Count: 16, Neg. LLF: 131.44418364072547
Iteration: 3, Func. Count: 24, Neg. LLF: 120.15184802597395
Iteration: 4, Func. Count: 32, Neg. LLF: 119.17244519111814
Iteration: 5, Func. Count: 39, Neg. LLF: 119.61742860283165
Iteration: 6, Func. Count: 47, Neg. LLF: 119.04522921453992
Iteration: 7, Func. Count: 54, Neg. LLF: 119.0408557808021
Iteration: 8, Func. Count: 61, Neg. LLF: 119.04053279904234
Iteration: 9, Func. Count: 68, Neg. LLF: 119.04051092686375
Iteration: 10, Func. Count: 74, Neg. LLF: 119.04051092715893
Optimization terminated successfully (Exit mode 0)
Current function value: 119.04051092686375
Iterations: 10
Function evaluations: 74
Gradient evaluations: 10
Iteration: 1, Func. Count: 9, Neg. LLF: 120.80619474984837
Iteration: 2, Func. Count: 18, Neg. LLF: 129.85968269205543
Iteration: 3, Func. Count: 27, Neg. LLF: 120.74415316750533
Iteration: 4, Func. Count: 36, Neg. LLF: 128.07579372993172
Iteration: 5, Func. Count: 45, Neg. LLF: 115.7685635436316
Iteration: 6, Func. Count: 53, Neg. LLF: 116.03668168070995
Iteration: 7, Func. Count: 62, Neg. LLF: 115.50539521642189
Iteration: 8, Func. Count: 71, Neg. LLF: 116.34244734680132
Iteration: 9, Func. Count: 80, Neg. LLF: 115.29931240064872
Iteration: 10, Func. Count: 88, Neg. LLF: 115.29883074934533
Iteration: 11, Func. Count: 96, Neg. LLF: 115.29852600574402
Iteration: 12, Func. Count: 104, Neg. LLF: 115.29852497483333
Iteration: 13, Func. Count: 111, Neg. LLF: 115.29852497485616
Optimization terminated successfully (Exit mode 0)
Current function value: 115.29852497483333
Iterations: 13
Function evaluations: 111
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 120.5533062949668
Iteration: 2, Func. Count: 19, Neg. LLF: 123.01398795778253
Iteration: 3, Func. Count: 29, Neg. LLF: 131.90899297673448
Iteration: 4, Func. Count: 39, Neg. LLF: 132.19612086704723
Iteration: 5, Func. Count: 49, Neg. LLF: 146.995206988357
Iteration: 6, Func. Count: 59, Neg. LLF: 3442921.031932925
Iteration: 7, Func. Count: 69, Neg. LLF: 137.92341741100975
Iteration: 8, Func. Count: 79, Neg. LLF: 134.2360296785756
Iteration: 9, Func. Count: 89, Neg. LLF: 131.76656383046347
Iteration: 10, Func. Count: 99, Neg. LLF: 116.25635996280843
Iteration: 11, Func. Count: 108, Neg. LLF: 115.47240928924722
Iteration: 12, Func. Count: 117, Neg. LLF: 115.38495678495374
Iteration: 13, Func. Count: 126, Neg. LLF: 137.3423457686418
Iteration: 14, Func. Count: 137, Neg. LLF: 115.37101378143568
Iteration: 15, Func. Count: 147, Neg. LLF: 116.0006271455617
Iteration: 16, Func. Count: 157, Neg. LLF: 115.30419776798892
Iteration: 17, Func. Count: 166, Neg. LLF: 115.29856258955047
Iteration: 18, Func. Count: 175, Neg. LLF: 115.29852680703651
Iteration: 19, Func. Count: 184, Neg. LLF: 115.29852497034669
Iteration: 20, Func. Count: 192, Neg. LLF: 115.29852511828271
Optimization terminated successfully (Exit mode 0)
Current function value: 115.29852497034669
Iterations: 20
Function evaluations: 192
Gradient evaluations: 20
Iteration: 1, Func. Count: 7, Neg. LLF: 128.12787393907126
Iteration: 2, Func. Count: 15, Neg. LLF: 187.2850678228099
Iteration: 3, Func. Count: 22, Neg. LLF: 119.30624709722935
Iteration: 4, Func. Count: 28, Neg. LLF: 124.07432951428326
Iteration: 5, Func. Count: 35, Neg. LLF: 119.19461457938833
Iteration: 6, Func. Count: 41, Neg. LLF: 119.1491099258601
Iteration: 7, Func. Count: 47, Neg. LLF: 119.08584460681887
Iteration: 8, Func. Count: 53, Neg. LLF: 119.05740956856029
Iteration: 9, Func. Count: 59, Neg. LLF: 119.04086046507442
Iteration: 10, Func. Count: 65, Neg. LLF: 119.03943980053526
Iteration: 11, Func. Count: 71, Neg. LLF: 119.03925003176195
Iteration: 12, Func. Count: 77, Neg. LLF: 119.03921654974512
Iteration: 13, Func. Count: 83, Neg. LLF: 119.03921356145666
Iteration: 14, Func. Count: 88, Neg. LLF: 119.03921356142527
Optimization terminated successfully (Exit mode 0)
Current function value: 119.03921356145666
Iterations: 14
Function evaluations: 88
Gradient evaluations: 14
Iteration: 1, Func. Count: 8, Neg. LLF: 122.02350583257892
Iteration: 2, Func. Count: 16, Neg. LLF: 150.50894973470346
Iteration: 3, Func. Count: 24, Neg. LLF: 119.97675330445314
Iteration: 4, Func. Count: 31, Neg. LLF: 121.15201485995799
Iteration: 5, Func. Count: 40, Neg. LLF: 120.24520723832237
Iteration: 6, Func. Count: 48, Neg. LLF: 119.06499995095466
Iteration: 7, Func. Count: 55, Neg. LLF: 119.05109764872553
Iteration: 8, Func. Count: 62, Neg. LLF: 119.04679457893958
Iteration: 9, Func. Count: 69, Neg. LLF: 119.03929035709268
Iteration: 10, Func. Count: 76, Neg. LLF: 119.03921670281287
Iteration: 11, Func. Count: 83, Neg. LLF: 119.03921421180647
Iteration: 12, Func. Count: 90, Neg. LLF: 119.03921352498882
Optimization terminated successfully (Exit mode 0)
Current function value: 119.03921352498882
Iterations: 12
Function evaluations: 90
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 121.74692259747367
Iteration: 2, Func. Count: 18, Neg. LLF: 146.2141259717901
Iteration: 3, Func. Count: 27, Neg. LLF: 120.14541859497582
Iteration: 4, Func. Count: 36, Neg. LLF: 119.15815856862376
Iteration: 5, Func. Count: 44, Neg. LLF: 120.54504892496607
Iteration: 6, Func. Count: 53, Neg. LLF: 119.06209784124626
Iteration: 7, Func. Count: 61, Neg. LLF: 119.05327616756391
Iteration: 8, Func. Count: 69, Neg. LLF: 119.04510835515565
Iteration: 9, Func. Count: 77, Neg. LLF: 119.04065694518697
Iteration: 10, Func. Count: 85, Neg. LLF: 119.03950598502847
Iteration: 11, Func. Count: 93, Neg. LLF: 119.03923624599926
Iteration: 12, Func. Count: 101, Neg. LLF: 119.0392160463186
Iteration: 13, Func. Count: 109, Neg. LLF: 119.03921349399273
Iteration: 14, Func. Count: 116, Neg. LLF: 119.03921349516392
Optimization terminated successfully (Exit mode 0)
Current function value: 119.03921349399273
Iterations: 14
Function evaluations: 116
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 121.55971444445181
Iteration: 2, Func. Count: 20, Neg. LLF: 146.4049797548675
Iteration: 3, Func. Count: 30, Neg. LLF: 120.66795570599137
Iteration: 4, Func. Count: 40, Neg. LLF: 161.2719348997508
Iteration: 5, Func. Count: 50, Neg. LLF: 116.56091717749041
Iteration: 6, Func. Count: 59, Neg. LLF: 118.66284783477685
Iteration: 7, Func. Count: 69, Neg. LLF: 115.6810543423703
Iteration: 8, Func. Count: 79, Neg. LLF: 119.1158952452664
Iteration: 9, Func. Count: 89, Neg. LLF: 115.29881067068048
Iteration: 10, Func. Count: 98, Neg. LLF: 115.29856352704608
Iteration: 11, Func. Count: 107, Neg. LLF: 115.29854551734874
Iteration: 12, Func. Count: 116, Neg. LLF: 115.29852501732417
Iteration: 13, Func. Count: 124, Neg. LLF: 115.29852501730947
Optimization terminated successfully (Exit mode 0)
Current function value: 115.29852501732417
Iterations: 13
Function evaluations: 124
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 121.07402196654286
Iteration: 2, Func. Count: 22, Neg. LLF: 138.0645360277363
Iteration: 3, Func. Count: 33, Neg. LLF: 120.63612342436363
Iteration: 4, Func. Count: 44, Neg. LLF: 136.96690364064983
Iteration: 5, Func. Count: 55, Neg. LLF: 118.36550567908805
Iteration: 6, Func. Count: 65, Neg. LLF: 117.48835574063274
Iteration: 7, Func. Count: 76, Neg. LLF: 119.24527953780692
Iteration: 8, Func. Count: 88, Neg. LLF: 115.37095573721083
Iteration: 9, Func. Count: 98, Neg. LLF: 115.42143493951777
Iteration: 10, Func. Count: 109, Neg. LLF: 115.30382440581727
Iteration: 11, Func. Count: 119, Neg. LLF: 115.30105146978275
Iteration: 12, Func. Count: 129, Neg. LLF: 115.30007514523842
Iteration: 13, Func. Count: 139, Neg. LLF: 115.29867721249667
Iteration: 14, Func. Count: 149, Neg. LLF: 115.29853961342026
Iteration: 15, Func. Count: 159, Neg. LLF: 115.29852528930321
Iteration: 16, Func. Count: 168, Neg. LLF: 115.29852543702725
Optimization terminated successfully (Exit mode 0)
Current function value: 115.29852528930321
Iterations: 16
Function evaluations: 168
Gradient evaluations: 16
Iteration: 1, Func. Count: 8, Neg. LLF: 136.49013075151737
Iteration: 2, Func. Count: 17, Neg. LLF: 358.5383835797402
Iteration: 3, Func. Count: 25, Neg. LLF: 124.77060970036645
Iteration: 4, Func. Count: 33, Neg. LLF: 117.80240723717459
Iteration: 5, Func. Count: 40, Neg. LLF: 117.73105847495295
Iteration: 6, Func. Count: 47, Neg. LLF: 117.71610036227824
Iteration: 7, Func. Count: 54, Neg. LLF: 117.70336959262889
Iteration: 8, Func. Count: 61, Neg. LLF: 117.70093439948621
Iteration: 9, Func. Count: 68, Neg. LLF: 117.69701430844708
Iteration: 10, Func. Count: 75, Neg. LLF: 117.69474263774431
Iteration: 11, Func. Count: 82, Neg. LLF: 117.6938896377465
Iteration: 12, Func. Count: 89, Neg. LLF: 117.69386318729937
Iteration: 13, Func. Count: 96, Neg. LLF: 117.69386265256193
Optimization terminated successfully (Exit mode 0)
Current function value: 117.69386265256193
Iterations: 13
Function evaluations: 96
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 124.21886857852348
Iteration: 2, Func. Count: 18, Neg. LLF: 175.13120399592924
Iteration: 3, Func. Count: 27, Neg. LLF: 118.716523792338
Iteration: 4, Func. Count: 35, Neg. LLF: 119.39369097004207
Iteration: 5, Func. Count: 45, Neg. LLF: 119.68534312430607
Iteration: 6, Func. Count: 54, Neg. LLF: 118.22348597181329
Iteration: 7, Func. Count: 62, Neg. LLF: 120.5528221657136
Iteration: 8, Func. Count: 71, Neg. LLF: 118.1127208767853
Iteration: 9, Func. Count: 79, Neg. LLF: 117.96267613799314
Iteration: 10, Func. Count: 87, Neg. LLF: 126.38009420169166
Iteration: 11, Func. Count: 96, Neg. LLF: 125.70064792695352
Iteration: 12, Func. Count: 105, Neg. LLF: 125.36253208059222
Iteration: 13, Func. Count: 114, Neg. LLF: 125.21144586301284
Iteration: 14, Func. Count: 123, Neg. LLF: 117.87864679973833
Iteration: 15, Func. Count: 132, Neg. LLF: 117.69530096779498
Iteration: 16, Func. Count: 140, Neg. LLF: 117.69456734196568
Iteration: 17, Func. Count: 148, Neg. LLF: 117.69394208926542
Iteration: 18, Func. Count: 156, Neg. LLF: 117.69386647501196
Iteration: 19, Func. Count: 164, Neg. LLF: 117.69386271312078
Iteration: 20, Func. Count: 171, Neg. LLF: 117.69386288689145
Optimization terminated successfully (Exit mode 0)
Current function value: 117.69386271312078
Iterations: 20
Function evaluations: 171
Gradient evaluations: 20
Iteration: 1, Func. Count: 10, Neg. LLF: 124.14748887882533
Iteration: 2, Func. Count: 20, Neg. LLF: 173.70996150995128
Iteration: 3, Func. Count: 30, Neg. LLF: 118.92969674765348
Iteration: 4, Func. Count: 39, Neg. LLF: 119.70339397982785
Iteration: 5, Func. Count: 49, Neg. LLF: 122.5438380976376
Iteration: 6, Func. Count: 60, Neg. LLF: 118.37370890312043
Iteration: 7, Func. Count: 70, Neg. LLF: 118.17376641889318
Iteration: 8, Func. Count: 79, Neg. LLF: 118.10062779290004
Iteration: 9, Func. Count: 88, Neg. LLF: 117.85355280785693
Iteration: 10, Func. Count: 97, Neg. LLF: 125.53907321194215
Iteration: 11, Func. Count: 107, Neg. LLF: 117.83296599701434
Iteration: 12, Func. Count: 117, Neg. LLF: 117.70127179426916
Iteration: 13, Func. Count: 126, Neg. LLF: 117.69394144047892
Iteration: 14, Func. Count: 135, Neg. LLF: 117.69229669535613
Iteration: 15, Func. Count: 144, Neg. LLF: 117.69221150796423
Iteration: 16, Func. Count: 153, Neg. LLF: 117.6922099056662
Iteration: 17, Func. Count: 162, Neg. LLF: 117.69220849417454
Iteration: 18, Func. Count: 170, Neg. LLF: 117.69220849413327
Optimization terminated successfully (Exit mode 0)
Current function value: 117.69220849417454
Iterations: 18
Function evaluations: 170
Gradient evaluations: 18
Iteration: 1, Func. Count: 11, Neg. LLF: 123.75476643952099
Iteration: 2, Func. Count: 22, Neg. LLF: 179.00772980352488
Iteration: 3, Func. Count: 33, Neg. LLF: 119.16497220380832
Iteration: 4, Func. Count: 43, Neg. LLF: 117.65891428243634
Iteration: 5, Func. Count: 53, Neg. LLF: 115.85554355509423
Iteration: 6, Func. Count: 63, Neg. LLF: 115.97030917953896
Iteration: 7, Func. Count: 74, Neg. LLF: 120.69986306548053
Iteration: 8, Func. Count: 85, Neg. LLF: 115.33129434756191
Iteration: 9, Func. Count: 96, Neg. LLF: 116.03326397322276
Iteration: 10, Func. Count: 107, Neg. LLF: 115.10159855428884
Iteration: 11, Func. Count: 117, Neg. LLF: 115.01698788919165
Iteration: 12, Func. Count: 127, Neg. LLF: 115.00603448355261
Iteration: 13, Func. Count: 138, Neg. LLF: 114.92629967951162
Iteration: 14, Func. Count: 148, Neg. LLF: 114.92265624089383
Iteration: 15, Func. Count: 158, Neg. LLF: 114.92249410677488
Iteration: 16, Func. Count: 168, Neg. LLF: 114.92248301502944
Iteration: 17, Func. Count: 177, Neg. LLF: 114.92248301497017
Optimization terminated successfully (Exit mode 0)
Current function value: 114.92248301502944
Iterations: 17
Function evaluations: 177
Gradient evaluations: 17
Iteration: 1, Func. Count: 12, Neg. LLF: 123.25611724645731
Iteration: 2, Func. Count: 24, Neg. LLF: 170.19743813726683
Iteration: 3, Func. Count: 36, Neg. LLF: 118.88128113695244
Iteration: 4, Func. Count: 47, Neg. LLF: 117.14840793992772
Iteration: 5, Func. Count: 58, Neg. LLF: 115.85307954851795
Iteration: 6, Func. Count: 69, Neg. LLF: 115.83593322944485
Iteration: 7, Func. Count: 81, Neg. LLF: 120.45641215493988
Iteration: 8, Func. Count: 93, Neg. LLF: 115.1301662594739
Iteration: 9, Func. Count: 104, Neg. LLF: 116.26125238370018
Iteration: 10, Func. Count: 116, Neg. LLF: 115.04412688715485
Iteration: 11, Func. Count: 127, Neg. LLF: 115.00258870052016
Iteration: 12, Func. Count: 138, Neg. LLF: 115.32016728582192
Iteration: 13, Func. Count: 150, Neg. LLF: 115.73927866579825
Iteration: 14, Func. Count: 162, Neg. LLF: 114.95476651355203
Iteration: 15, Func. Count: 174, Neg. LLF: 114.92281302449028
Iteration: 16, Func. Count: 185, Neg. LLF: 114.92250937244575
Iteration: 17, Func. Count: 196, Neg. LLF: 114.92249019107409
Iteration: 18, Func. Count: 207, Neg. LLF: 114.92248284699131
Iteration: 19, Func. Count: 217, Neg. LLF: 114.92248290675951
Optimization terminated successfully (Exit mode 0)
Current function value: 114.92248284699131
Iterations: 19
Function evaluations: 217
Gradient evaluations: 19
Iteration: 1, Func. Count: 5, Neg. LLF: 124.4050689038922
Iteration: 2, Func. Count: 10, Neg. LLF: 132.93021179528728
Iteration: 3, Func. Count: 15, Neg. LLF: 121.9169036341737
Iteration: 4, Func. Count: 19, Neg. LLF: 121.89803275055931
Iteration: 5, Func. Count: 23, Neg. LLF: 121.89086964047311
Iteration: 6, Func. Count: 27, Neg. LLF: 121.89063258210788
Iteration: 7, Func. Count: 31, Neg. LLF: 121.89063074663454
Iteration: 8, Func. Count: 34, Neg. LLF: 121.89063074663602
Optimization terminated successfully (Exit mode 0)
Current function value: 121.89063074663454
Iterations: 8
Function evaluations: 34
Gradient evaluations: 8
Iteration: 1, Func. Count: 6, Neg. LLF: 123.38822283776734
Iteration: 2, Func. Count: 12, Neg. LLF: 123.5396493379077
Iteration: 3, Func. Count: 18, Neg. LLF: 123.81380712724845
Iteration: 4, Func. Count: 24, Neg. LLF: 121.66120536838736
Iteration: 5, Func. Count: 30, Neg. LLF: 121.63038943799813
Iteration: 6, Func. Count: 35, Neg. LLF: 121.63005788902515
Iteration: 7, Func. Count: 40, Neg. LLF: 121.63003482253463
Iteration: 8, Func. Count: 45, Neg. LLF: 121.63002910063081
Iteration: 9, Func. Count: 49, Neg. LLF: 121.6300291006362
Optimization terminated successfully (Exit mode 0)
Current function value: 121.63002910063081
Iterations: 9
Function evaluations: 49
Gradient evaluations: 9
Iteration: 1, Func. Count: 7, Neg. LLF: 124.32715230872842
Iteration: 2, Func. Count: 14, Neg. LLF: 123.45378816970072
Iteration: 3, Func. Count: 21, Neg. LLF: 128.8843344306792
Iteration: 4, Func. Count: 28, Neg. LLF: 121.74254647189196
Iteration: 5, Func. Count: 34, Neg. LLF: 121.63506542304924
Iteration: 6, Func. Count: 40, Neg. LLF: 121.63033567355419
Iteration: 7, Func. Count: 46, Neg. LLF: 121.63004549531915
Iteration: 8, Func. Count: 52, Neg. LLF: 121.63003075533847
Iteration: 9, Func. Count: 58, Neg. LLF: 121.63002946094785
Iteration: 10, Func. Count: 63, Neg. LLF: 121.63002949139849
Optimization terminated successfully (Exit mode 0)
Current function value: 121.63002946094785
Iterations: 10
Function evaluations: 63
Gradient evaluations: 10
Iteration: 1, Func. Count: 8, Neg. LLF: 125.40967468432137
Iteration: 2, Func. Count: 16, Neg. LLF: 124.74796222328905
Iteration: 3, Func. Count: 24, Neg. LLF: 126.62210096949839
Iteration: 4, Func. Count: 32, Neg. LLF: 121.83394667289656
Iteration: 5, Func. Count: 39, Neg. LLF: 121.63128165210513
Iteration: 6, Func. Count: 46, Neg. LLF: 121.63029653527059
Iteration: 7, Func. Count: 53, Neg. LLF: 121.63003455015823
Iteration: 8, Func. Count: 60, Neg. LLF: 121.63002979015624
Iteration: 9, Func. Count: 67, Neg. LLF: 121.63002912252031
Optimization terminated successfully (Exit mode 0)
Current function value: 121.63002912252031
Iterations: 9
Function evaluations: 67
Gradient evaluations: 9
Iteration: 1, Func. Count: 9, Neg. LLF: 125.21240998294216
Iteration: 2, Func. Count: 18, Neg. LLF: 125.55164304667697
Iteration: 3, Func. Count: 27, Neg. LLF: 124.14428003589339
Iteration: 4, Func. Count: 36, Neg. LLF: 143.39643867385414
Iteration: 5, Func. Count: 45, Neg. LLF: 121.63406175956565
Iteration: 6, Func. Count: 53, Neg. LLF: 121.63101541671685
Iteration: 7, Func. Count: 61, Neg. LLF: 121.63030105490832
Iteration: 8, Func. Count: 69, Neg. LLF: 121.63004241033113
Iteration: 9, Func. Count: 77, Neg. LLF: 121.63002938969453
Iteration: 10, Func. Count: 84, Neg. LLF: 121.63002947735875
Optimization terminated successfully (Exit mode 0)
Current function value: 121.63002938969453
Iterations: 10
Function evaluations: 84
Gradient evaluations: 10
Iteration: 1, Func. Count: 6, Neg. LLF: 122.3494281274843
Iteration: 2, Func. Count: 12, Neg. LLF: 133.86093932279653
Iteration: 3, Func. Count: 18, Neg. LLF: 119.14234566318623
Iteration: 4, Func. Count: 23, Neg. LLF: 119.12952923491558
Iteration: 5, Func. Count: 28, Neg. LLF: 119.10948535604425
Iteration: 6, Func. Count: 33, Neg. LLF: 119.0919210954295
Iteration: 7, Func. Count: 38, Neg. LLF: 119.08107485420337
Iteration: 8, Func. Count: 43, Neg. LLF: 119.0770730125965
Iteration: 9, Func. Count: 48, Neg. LLF: 119.07692622545358
Iteration: 10, Func. Count: 52, Neg. LLF: 119.07692622544563
Optimization terminated successfully (Exit mode 0)
Current function value: 119.07692622545358
Iterations: 10
Function evaluations: 52
Gradient evaluations: 10
Iteration: 1, Func. Count: 7, Neg. LLF: 121.29764449093204
Iteration: 2, Func. Count: 14, Neg. LLF: 125.82946786110462
Iteration: 3, Func. Count: 21, Neg. LLF: 119.41943076525104
Iteration: 4, Func. Count: 27, Neg. LLF: 119.44164755545191
Iteration: 5, Func. Count: 34, Neg. LLF: 119.19733952094307
Iteration: 6, Func. Count: 40, Neg. LLF: 119.08786275224628
Iteration: 7, Func. Count: 46, Neg. LLF: 119.07758133840689
Iteration: 8, Func. Count: 52, Neg. LLF: 119.07695008789119
Iteration: 9, Func. Count: 58, Neg. LLF: 119.07692732701064
Iteration: 10, Func. Count: 64, Neg. LLF: 119.0769260113261
Iteration: 11, Func. Count: 69, Neg. LLF: 119.0769261594338
Optimization terminated successfully (Exit mode 0)
Current function value: 119.0769260113261
Iterations: 11
Function evaluations: 69
Gradient evaluations: 11
Iteration: 1, Func. Count: 8, Neg. LLF: 122.35217294515195
Iteration: 2, Func. Count: 16, Neg. LLF: 125.409970875847
Iteration: 3, Func. Count: 24, Neg. LLF: 119.53787346591584
Iteration: 4, Func. Count: 31, Neg. LLF: 135.67569491174282
Iteration: 5, Func. Count: 39, Neg. LLF: 120.01484039724562
Iteration: 6, Func. Count: 47, Neg. LLF: 119.04203882887232
Iteration: 7, Func. Count: 54, Neg. LLF: 119.04097730981393
Iteration: 8, Func. Count: 61, Neg. LLF: 119.04053643075879
Iteration: 9, Func. Count: 68, Neg. LLF: 119.04051157789524
Iteration: 10, Func. Count: 75, Neg. LLF: 119.040508642329
Iteration: 11, Func. Count: 81, Neg. LLF: 119.04050864232558
Optimization terminated successfully (Exit mode 0)
Current function value: 119.040508642329
Iterations: 11
Function evaluations: 81
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 123.6801666986934
Iteration: 2, Func. Count: 18, Neg. LLF: 126.22923281442675
Iteration: 3, Func. Count: 27, Neg. LLF: 118.70682852920532
Iteration: 4, Func. Count: 35, Neg. LLF: 220.47349809080143
Iteration: 5, Func. Count: 44, Neg. LLF: 239.36766002849828
Iteration: 6, Func. Count: 53, Neg. LLF: 156.24672454702645
Iteration: 7, Func. Count: 62, Neg. LLF: 138.93683686061837
Iteration: 8, Func. Count: 71, Neg. LLF: 131.4744049653056
Iteration: 9, Func. Count: 80, Neg. LLF: 127.32307294972196
Iteration: 10, Func. Count: 89, Neg. LLF: 124.71011163818916
Iteration: 11, Func. Count: 98, Neg. LLF: 123.05071064739542
Iteration: 12, Func. Count: 107, Neg. LLF: 117.02627294568981
Iteration: 13, Func. Count: 116, Neg. LLF: 115.37603759512878
Iteration: 14, Func. Count: 124, Neg. LLF: 115.32327419859391
Iteration: 15, Func. Count: 132, Neg. LLF: 115.31670475513971
Iteration: 16, Func. Count: 140, Neg. LLF: 115.30247665729446
Iteration: 17, Func. Count: 148, Neg. LLF: 115.30029716376372
Iteration: 18, Func. Count: 156, Neg. LLF: 115.29927695858807
Iteration: 19, Func. Count: 164, Neg. LLF: 115.29892060143099
Iteration: 20, Func. Count: 172, Neg. LLF: 115.29860866837898
Iteration: 21, Func. Count: 180, Neg. LLF: 115.29854113481723
Iteration: 22, Func. Count: 188, Neg. LLF: 115.2985251804825
Iteration: 23, Func. Count: 196, Neg. LLF: 115.30022323745648
Optimization terminated successfully (Exit mode 0)
Current function value: 115.29852514463504
Iterations: 24
Function evaluations: 199
Gradient evaluations: 23
Iteration: 1, Func. Count: 10, Neg. LLF: 123.68399116907204
Iteration: 2, Func. Count: 20, Neg. LLF: 125.73491045427471
Iteration: 3, Func. Count: 30, Neg. LLF: 118.8424547653527
Iteration: 4, Func. Count: 39, Neg. LLF: 145.61014734442705
Iteration: 5, Func. Count: 49, Neg. LLF: 1071.9124952715833
Iteration: 6, Func. Count: 59, Neg. LLF: 1638.0488634289397
Iteration: 7, Func. Count: 69, Neg. LLF: 22050850.295628298
Iteration: 8, Func. Count: 79, Neg. LLF: 179.70673890373433
Iteration: 9, Func. Count: 89, Neg. LLF: 526.4748116066284
Iteration: 10, Func. Count: 99, Neg. LLF: 121.091672399399
Iteration: 11, Func. Count: 109, Neg. LLF: 147.27682859388415
Iteration: 12, Func. Count: 119, Neg. LLF: 119.40122867693849
Iteration: 13, Func. Count: 129, Neg. LLF: 115.87424259064082
Iteration: 14, Func. Count: 139, Neg. LLF: 115.36945036439383
Iteration: 15, Func. Count: 148, Neg. LLF: 115.31176762710298
Iteration: 16, Func. Count: 157, Neg. LLF: 115.30192402395768
Iteration: 17, Func. Count: 166, Neg. LLF: 115.29857686445321
Iteration: 18, Func. Count: 175, Neg. LLF: 115.29852636333528
Iteration: 19, Func. Count: 184, Neg. LLF: 115.29852617320347
Optimization terminated successfully (Exit mode 0)
Current function value: 115.29852617320347
Iterations: 19
Function evaluations: 184
Gradient evaluations: 19
Iteration: 1, Func. Count: 7, Neg. LLF: 123.04450862005929
Iteration: 2, Func. Count: 14, Neg. LLF: 144.89289680634707
Iteration: 3, Func. Count: 21, Neg. LLF: 119.14632643354169
Iteration: 4, Func. Count: 27, Neg. LLF: 119.12430901528614
Iteration: 5, Func. Count: 33, Neg. LLF: 119.11163556121912
Iteration: 6, Func. Count: 39, Neg. LLF: 119.10065950494588
Iteration: 7, Func. Count: 45, Neg. LLF: 119.08711738966115
Iteration: 8, Func. Count: 51, Neg. LLF: 119.07924035626348
Iteration: 9, Func. Count: 57, Neg. LLF: 119.07694851901879
Iteration: 10, Func. Count: 63, Neg. LLF: 119.07692614650796
Iteration: 11, Func. Count: 68, Neg. LLF: 119.07692630024438
Optimization terminated successfully (Exit mode 0)
Current function value: 119.07692614650796
Iterations: 11
Function evaluations: 68
Gradient evaluations: 11
Iteration: 1, Func. Count: 8, Neg. LLF: 121.39179066205172
Iteration: 2, Func. Count: 16, Neg. LLF: 132.03350238008085
Iteration: 3, Func. Count: 24, Neg. LLF: 119.37747675390806
Iteration: 4, Func. Count: 31, Neg. LLF: 119.0966244285304
Iteration: 5, Func. Count: 38, Neg. LLF: 119.0833843492621
Iteration: 6, Func. Count: 45, Neg. LLF: 119.08156692537762
Iteration: 7, Func. Count: 52, Neg. LLF: 119.07913668879651
Iteration: 8, Func. Count: 59, Neg. LLF: 119.07762232325439
Iteration: 9, Func. Count: 66, Neg. LLF: 119.07698442208685
Iteration: 10, Func. Count: 73, Neg. LLF: 119.07692795405723
Iteration: 11, Func. Count: 80, Neg. LLF: 119.07692596364173
Iteration: 12, Func. Count: 86, Neg. LLF: 119.07692611172222
Optimization terminated successfully (Exit mode 0)
Current function value: 119.07692596364173
Iterations: 12
Function evaluations: 86
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 122.56643953188066
Iteration: 2, Func. Count: 18, Neg. LLF: 132.34325183034198
Iteration: 3, Func. Count: 27, Neg. LLF: 119.48603828173435
Iteration: 4, Func. Count: 35, Neg. LLF: 141.89291844384044
Iteration: 5, Func. Count: 44, Neg. LLF: 119.1088445314534
Iteration: 6, Func. Count: 52, Neg. LLF: 119.04766808483991
Iteration: 7, Func. Count: 60, Neg. LLF: 119.0420188220103
Iteration: 8, Func. Count: 68, Neg. LLF: 119.04079151520635
Iteration: 9, Func. Count: 76, Neg. LLF: 119.0405464901633
Iteration: 10, Func. Count: 84, Neg. LLF: 119.0405099504963
Iteration: 11, Func. Count: 92, Neg. LLF: 119.04050866668258
Iteration: 12, Func. Count: 99, Neg. LLF: 119.04050866672763
Optimization terminated successfully (Exit mode 0)
Current function value: 119.04050866668258
Iterations: 12
Function evaluations: 99
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 123.61978798997517
Iteration: 2, Func. Count: 20, Neg. LLF: 134.99164198427871
Iteration: 3, Func. Count: 30, Neg. LLF: 119.01864827909543
Iteration: 4, Func. Count: 39, Neg. LLF: 191.86991964781805
Iteration: 5, Func. Count: 49, Neg. LLF: 272.6786486050656
Iteration: 6, Func. Count: 59, Neg. LLF: 180.70589931659214
Iteration: 7, Func. Count: 69, Neg. LLF: 153.19523643570292
Iteration: 8, Func. Count: 79, Neg. LLF: 141.31866542845108
Iteration: 9, Func. Count: 89, Neg. LLF: 134.51578968129485
Iteration: 10, Func. Count: 99, Neg. LLF: 129.9731614562756
Iteration: 11, Func. Count: 109, Neg. LLF: 126.73570702816829
Iteration: 12, Func. Count: 119, Neg. LLF: 118.84708243355364
Iteration: 13, Func. Count: 129, Neg. LLF: 115.6005410738979
Iteration: 14, Func. Count: 139, Neg. LLF: 115.34886283249102
Iteration: 15, Func. Count: 148, Neg. LLF: 115.31293346640993
Iteration: 16, Func. Count: 157, Neg. LLF: 115.30670692080287
Iteration: 17, Func. Count: 166, Neg. LLF: 115.30385836654274
Iteration: 18, Func. Count: 175, Neg. LLF: 115.30149713171527
Iteration: 19, Func. Count: 184, Neg. LLF: 115.29933005419338
Iteration: 20, Func. Count: 193, Neg. LLF: 115.29862261320913
Iteration: 21, Func. Count: 202, Neg. LLF: 115.29853196415463
Iteration: 22, Func. Count: 211, Neg. LLF: 115.31920582824289
Optimization terminated successfully (Exit mode 0)
Current function value: 115.29853159689826
Iterations: 23
Function evaluations: 214
Gradient evaluations: 22
Iteration: 1, Func. Count: 11, Neg. LLF: 123.66182016641972
Iteration: 2, Func. Count: 22, Neg. LLF: 134.35741662668633
Iteration: 3, Func. Count: 33, Neg. LLF: 119.13049123847068
Iteration: 4, Func. Count: 43, Neg. LLF: 116.73711487864666
Iteration: 5, Func. Count: 53, Neg. LLF: 116.05078093977374
Iteration: 6, Func. Count: 63, Neg. LLF: 116.57641921089262
Iteration: 7, Func. Count: 74, Neg. LLF: 757.222513915426
Iteration: 8, Func. Count: 86, Neg. LLF: 115.87721809870376
Iteration: 9, Func. Count: 97, Neg. LLF: 115.51208828942596
Iteration: 10, Func. Count: 107, Neg. LLF: 115.36127312570932
Iteration: 11, Func. Count: 117, Neg. LLF: 115.30371946638505
Iteration: 12, Func. Count: 127, Neg. LLF: 115.2987665969241
Iteration: 13, Func. Count: 137, Neg. LLF: 115.2985361491955
Iteration: 14, Func. Count: 147, Neg. LLF: 115.30501014647339
Optimization terminated successfully (Exit mode 0)
Current function value: 115.29853594046877
Iterations: 15
Function evaluations: 149
Gradient evaluations: 14
Iteration: 1, Func. Count: 8, Neg. LLF: 126.42357280342044
Iteration: 2, Func. Count: 16, Neg. LLF: 147.99812562249812
Iteration: 3, Func. Count: 24, Neg. LLF: 119.12713600770243
Iteration: 4, Func. Count: 31, Neg. LLF: 137.01224591800286
Iteration: 5, Func. Count: 41, Neg. LLF: 119.05895657084847
Iteration: 6, Func. Count: 48, Neg. LLF: 119.04678139236981
Iteration: 7, Func. Count: 55, Neg. LLF: 119.04494420975439
Iteration: 8, Func. Count: 62, Neg. LLF: 119.04098871447427
Iteration: 9, Func. Count: 69, Neg. LLF: 119.03960788387437
Iteration: 10, Func. Count: 76, Neg. LLF: 119.0392247110804
Iteration: 11, Func. Count: 83, Neg. LLF: 119.03921395880454
Iteration: 12, Func. Count: 89, Neg. LLF: 119.03921395897574
Optimization terminated successfully (Exit mode 0)
Current function value: 119.03921395880454
Iterations: 12
Function evaluations: 89
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 122.47113685358465
Iteration: 2, Func. Count: 18, Neg. LLF: 133.7984483796325
Iteration: 3, Func. Count: 27, Neg. LLF: 119.45510286038865
Iteration: 4, Func. Count: 35, Neg. LLF: 146.24440484162432
Iteration: 5, Func. Count: 44, Neg. LLF: 119.23395796923573
Iteration: 6, Func. Count: 52, Neg. LLF: 119.17394360742544
Iteration: 7, Func. Count: 60, Neg. LLF: 119.15213434508253
Iteration: 8, Func. Count: 68, Neg. LLF: 119.07289886194486
Iteration: 9, Func. Count: 76, Neg. LLF: 119.04471311113222
Iteration: 10, Func. Count: 84, Neg. LLF: 119.03961801509742
Iteration: 11, Func. Count: 92, Neg. LLF: 119.03925351611906
Iteration: 12, Func. Count: 100, Neg. LLF: 119.0392145735701
Iteration: 13, Func. Count: 108, Neg. LLF: 119.03921357474199
Optimization terminated successfully (Exit mode 0)
Current function value: 119.03921357474199
Iterations: 13
Function evaluations: 108
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 123.509222926791
Iteration: 2, Func. Count: 20, Neg. LLF: 135.04559358125047
Iteration: 3, Func. Count: 30, Neg. LLF: 119.50174054238788
Iteration: 4, Func. Count: 39, Neg. LLF: 127.8076944891988
Iteration: 5, Func. Count: 49, Neg. LLF: 119.05752344858789
Iteration: 6, Func. Count: 58, Neg. LLF: 119.04124937106724
Iteration: 7, Func. Count: 67, Neg. LLF: 119.04082382808058
Iteration: 8, Func. Count: 76, Neg. LLF: 119.04129239048731
Iteration: 9, Func. Count: 86, Neg. LLF: 119.03977246088493
Iteration: 10, Func. Count: 95, Neg. LLF: 119.03931468177824
Iteration: 11, Func. Count: 104, Neg. LLF: 119.03921451860751
Iteration: 12, Func. Count: 113, Neg. LLF: 119.03921358349716
Optimization terminated successfully (Exit mode 0)
Current function value: 119.03921358349716
Iterations: 12
Function evaluations: 113
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 125.02070513063089
Iteration: 2, Func. Count: 22, Neg. LLF: 137.53232624992495
Iteration: 3, Func. Count: 33, Neg. LLF: 118.46074318240422
Iteration: 4, Func. Count: 43, Neg. LLF: 120.24232721879453
Iteration: 5, Func. Count: 55, Neg. LLF: 119.62690569283546
Iteration: 6, Func. Count: 66, Neg. LLF: 125.30213013065313
Iteration: 7, Func. Count: 77, Neg. LLF: 118.06478934622797
Iteration: 8, Func. Count: 88, Neg. LLF: 118.05430505103067
Iteration: 9, Func. Count: 99, Neg. LLF: 121.00714452240987
Iteration: 10, Func. Count: 110, Neg. LLF: 121.34367502493804
Iteration: 11, Func. Count: 121, Neg. LLF: 116.63660842574429
Iteration: 12, Func. Count: 132, Neg. LLF: 115.37385115585619
Iteration: 13, Func. Count: 142, Neg. LLF: 115.33324688584632
Iteration: 14, Func. Count: 152, Neg. LLF: 115.31018329421421
Iteration: 15, Func. Count: 162, Neg. LLF: 115.30209533815562
Iteration: 16, Func. Count: 172, Neg. LLF: 115.29911474443671
Iteration: 17, Func. Count: 182, Neg. LLF: 115.2985383244268
Iteration: 18, Func. Count: 192, Neg. LLF: 115.29852529645099
Iteration: 19, Func. Count: 201, Neg. LLF: 115.29852529639199
Optimization terminated successfully (Exit mode 0)
Current function value: 115.29852529645099
Iterations: 19
Function evaluations: 201
Gradient evaluations: 19
Iteration: 1, Func. Count: 12, Neg. LLF: 125.04592087580208
Iteration: 2, Func. Count: 24, Neg. LLF: 136.86706488694068
Iteration: 3, Func. Count: 36, Neg. LLF: 119.32296435290199
Iteration: 4, Func. Count: 47, Neg. LLF: 118.29132089202255
Iteration: 5, Func. Count: 58, Neg. LLF: 471.41734533295437
Iteration: 6, Func. Count: 70, Neg. LLF: 1860.754339336593
Iteration: 7, Func. Count: 82, Neg. LLF: 6616.940508740115
Iteration: 8, Func. Count: 94, Neg. LLF: 139.76166730176735
Iteration: 9, Func. Count: 106, Neg. LLF: 134.07848984125974
Iteration: 10, Func. Count: 118, Neg. LLF: 117.7412608782492
Iteration: 11, Func. Count: 130, Neg. LLF: 125.4998048064568
Iteration: 12, Func. Count: 142, Neg. LLF: 115.69837924830358
Iteration: 13, Func. Count: 154, Neg. LLF: 115.3336401213114
Iteration: 14, Func. Count: 165, Neg. LLF: 115.31566401092775
Iteration: 15, Func. Count: 176, Neg. LLF: 115.29907801933253
Iteration: 16, Func. Count: 187, Neg. LLF: 115.29857670010115
Iteration: 17, Func. Count: 198, Neg. LLF: 115.29852521261637
Iteration: 18, Func. Count: 208, Neg. LLF: 115.2985253606534
Optimization terminated successfully (Exit mode 0)
Current function value: 115.29852521261637
Iterations: 18
Function evaluations: 208
Gradient evaluations: 18
Iteration: 1, Func. Count: 9, Neg. LLF: 127.57526757786573
Iteration: 2, Func. Count: 18, Neg. LLF: 133.67829790304165
Iteration: 3, Func. Count: 27, Neg. LLF: 122.89224088714128
Iteration: 4, Func. Count: 36, Neg. LLF: 117.97286952992998
Iteration: 5, Func. Count: 44, Neg. LLF: 117.70149157322754
Iteration: 6, Func. Count: 52, Neg. LLF: 117.69537474344473
Iteration: 7, Func. Count: 60, Neg. LLF: 117.69438660266802
Iteration: 8, Func. Count: 68, Neg. LLF: 117.69392646520706
Iteration: 9, Func. Count: 76, Neg. LLF: 117.69386857112333
Iteration: 10, Func. Count: 84, Neg. LLF: 117.69386270189723
Iteration: 11, Func. Count: 91, Neg. LLF: 117.69386270189818
Optimization terminated successfully (Exit mode 0)
Current function value: 117.69386270189723
Iterations: 11
Function evaluations: 91
Gradient evaluations: 11
Iteration: 1, Func. Count: 10, Neg. LLF: 122.62567670648863
Iteration: 2, Func. Count: 20, Neg. LLF: 129.21561109746122
Iteration: 3, Func. Count: 30, Neg. LLF: 118.47745914169835
Iteration: 4, Func. Count: 39, Neg. LLF: 121.25272232476968
Iteration: 5, Func. Count: 49, Neg. LLF: 123.71685423203051
Iteration: 6, Func. Count: 59, Neg. LLF: 125.20120680044379
Iteration: 7, Func. Count: 69, Neg. LLF: 125.30494534655497
Iteration: 8, Func. Count: 79, Neg. LLF: 125.22139800759753
Iteration: 9, Func. Count: 89, Neg. LLF: 118.45684931477906
Iteration: 10, Func. Count: 99, Neg. LLF: 117.70326641180678
Iteration: 11, Func. Count: 108, Neg. LLF: 117.69874471868924
Iteration: 12, Func. Count: 117, Neg. LLF: 117.6980080099243
Iteration: 13, Func. Count: 127, Neg. LLF: 117.6938973010741
Iteration: 14, Func. Count: 136, Neg. LLF: 117.6938659528614
Iteration: 15, Func. Count: 145, Neg. LLF: 117.69386297194545
Iteration: 16, Func. Count: 153, Neg. LLF: 117.6938631456461
Optimization terminated successfully (Exit mode 0)
Current function value: 117.69386297194545
Iterations: 16
Function evaluations: 153
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 123.54974957059108
Iteration: 2, Func. Count: 22, Neg. LLF: 131.8738197225594
Iteration: 3, Func. Count: 33, Neg. LLF: 118.48980722818406
Iteration: 4, Func. Count: 43, Neg. LLF: 145.13785000702427
Iteration: 5, Func. Count: 54, Neg. LLF: 126.99346940621939
Iteration: 6, Func. Count: 66, Neg. LLF: 120.79968439713616
Iteration: 7, Func. Count: 77, Neg. LLF: 125.16055791487611
Iteration: 8, Func. Count: 88, Neg. LLF: 118.48989061951822
Iteration: 9, Func. Count: 99, Neg. LLF: 117.73883104594147
Iteration: 10, Func. Count: 109, Neg. LLF: 117.70214157130172
Iteration: 11, Func. Count: 119, Neg. LLF: 117.69426407386712
Iteration: 12, Func. Count: 129, Neg. LLF: 117.69238247069227
Iteration: 13, Func. Count: 139, Neg. LLF: 117.6922113222072
Iteration: 14, Func. Count: 149, Neg. LLF: 117.69220853143186
Iteration: 15, Func. Count: 158, Neg. LLF: 117.69220853146062
Optimization terminated successfully (Exit mode 0)
Current function value: 117.69220853143186
Iterations: 15
Function evaluations: 158
Gradient evaluations: 15
Iteration: 1, Func. Count: 12, Neg. LLF: 124.94677862797268
Iteration: 2, Func. Count: 24, Neg. LLF: 130.70103267140175
Iteration: 3, Func. Count: 36, Neg. LLF: 118.56477984042574
Iteration: 4, Func. Count: 47, Neg. LLF: 127.45461147121627
Iteration: 5, Func. Count: 59, Neg. LLF: 129.00263891164627
Iteration: 6, Func. Count: 71, Neg. LLF: 127.45979291106599
Iteration: 7, Func. Count: 83, Neg. LLF: 127.65109239664704
Iteration: 8, Func. Count: 95, Neg. LLF: 141.01718599447847
Iteration: 9, Func. Count: 107, Neg. LLF: 115.77797909167678
Iteration: 10, Func. Count: 119, Neg. LLF: 117.50932669716278
Iteration: 11, Func. Count: 131, Neg. LLF: 115.19719287771369
Iteration: 12, Func. Count: 143, Neg. LLF: 114.92257363842495
Iteration: 13, Func. Count: 154, Neg. LLF: 114.92248323480443
Iteration: 14, Func. Count: 164, Neg. LLF: 114.92248323482828
Optimization terminated successfully (Exit mode 0)
Current function value: 114.92248323480443
Iterations: 14
Function evaluations: 164
Gradient evaluations: 14
Iteration: 1, Func. Count: 13, Neg. LLF: 124.8664134844711
Iteration: 2, Func. Count: 26, Neg. LLF: 132.1585775831029
Iteration: 3, Func. Count: 39, Neg. LLF: 118.42593454198145
Iteration: 4, Func. Count: 51, Neg. LLF: 166.30937907237796
Iteration: 5, Func. Count: 64, Neg. LLF: 132.38255227951035
Iteration: 6, Func. Count: 77, Neg. LLF: 129.88861663082074
Iteration: 7, Func. Count: 90, Neg. LLF: 130.47603031970522
Iteration: 8, Func. Count: 103, Neg. LLF: 121.5980989293054
Iteration: 9, Func. Count: 116, Neg. LLF: 122.19341529292942
Iteration: 10, Func. Count: 129, Neg. LLF: 115.31799155183514
Iteration: 11, Func. Count: 142, Neg. LLF: 118.25112961436025
Iteration: 12, Func. Count: 155, Neg. LLF: 114.93729594709102
Iteration: 13, Func. Count: 167, Neg. LLF: 114.9243610881302
Iteration: 14, Func. Count: 179, Neg. LLF: 114.92276339140078
Iteration: 15, Func. Count: 191, Neg. LLF: 114.92250337809826
Iteration: 16, Func. Count: 203, Neg. LLF: 114.92249037840007
Iteration: 17, Func. Count: 215, Neg. LLF: 114.92248353739991
Iteration: 18, Func. Count: 227, Neg. LLF: 114.92248282492054
Optimization terminated successfully (Exit mode 0)
Current function value: 114.92248282492054
Iterations: 18
Function evaluations: 227
Gradient evaluations: 18
Iteration: 1, Func. Count: 6, Neg. LLF: 123.0733773441077
Iteration: 2, Func. Count: 12, Neg. LLF: 122.28529510522668
Iteration: 3, Func. Count: 19, Neg. LLF: 122.08171825045112
Iteration: 4, Func. Count: 25, Neg. LLF: 123.22189348470938
Iteration: 5, Func. Count: 31, Neg. LLF: 121.55682342579297
Iteration: 6, Func. Count: 36, Neg. LLF: 121.50942870248873
Iteration: 7, Func. Count: 41, Neg. LLF: 121.50698974094892
Iteration: 8, Func. Count: 47, Neg. LLF: 121.47305151324724
Iteration: 9, Func. Count: 52, Neg. LLF: 121.46629728114326
Iteration: 10, Func. Count: 57, Neg. LLF: 121.46365618105882
Iteration: 11, Func. Count: 62, Neg. LLF: 121.46256457590064
Iteration: 12, Func. Count: 67, Neg. LLF: 121.46249812255769
Iteration: 13, Func. Count: 72, Neg. LLF: 121.46249411938396
Iteration: 14, Func. Count: 76, Neg. LLF: 121.4624941193826
Optimization terminated successfully (Exit mode 0)
Current function value: 121.46249411938396
Iterations: 14
Function evaluations: 76
Gradient evaluations: 14
Iteration: 1, Func. Count: 7, Neg. LLF: 122.7706729649262
Iteration: 2, Func. Count: 14, Neg. LLF: 123.59079705935603
Iteration: 3, Func. Count: 21, Neg. LLF: 123.66592050465198
Iteration: 4, Func. Count: 28, Neg. LLF: 122.04317737967271
Iteration: 5, Func. Count: 35, Neg. LLF: 121.53615847136396
Iteration: 6, Func. Count: 41, Neg. LLF: 121.52031508240619
Iteration: 7, Func. Count: 47, Neg. LLF: 121.45766378331685
Iteration: 8, Func. Count: 53, Neg. LLF: 121.44188336271793
Iteration: 9, Func. Count: 59, Neg. LLF: 121.44435802147548
Iteration: 10, Func. Count: 66, Neg. LLF: 121.43330359097615
Iteration: 11, Func. Count: 72, Neg. LLF: 121.43252838441511
Iteration: 12, Func. Count: 78, Neg. LLF: 121.43244028739797
Iteration: 13, Func. Count: 84, Neg. LLF: 121.43243948931755
Optimization terminated successfully (Exit mode 0)
Current function value: 121.43243948931755
Iterations: 13
Function evaluations: 84
Gradient evaluations: 13
Iteration: 1, Func. Count: 8, Neg. LLF: 123.40556034677373
Iteration: 2, Func. Count: 16, Neg. LLF: 124.13133181311679
Iteration: 3, Func. Count: 24, Neg. LLF: 124.38167546702189
Iteration: 4, Func. Count: 32, Neg. LLF: 123.2631390946405
Iteration: 5, Func. Count: 40, Neg. LLF: 121.53450379087734
Iteration: 6, Func. Count: 47, Neg. LLF: 121.6276637299725
Iteration: 7, Func. Count: 55, Neg. LLF: 121.51683372670104
Iteration: 8, Func. Count: 63, Neg. LLF: 121.45308533666369
Iteration: 9, Func. Count: 70, Neg. LLF: 121.49434491295449
Iteration: 10, Func. Count: 78, Neg. LLF: 121.4375827696498
Iteration: 11, Func. Count: 85, Neg. LLF: 121.43453743855223
Iteration: 12, Func. Count: 92, Neg. LLF: 121.43285224182874
Iteration: 13, Func. Count: 99, Neg. LLF: 121.43246316437339
Iteration: 14, Func. Count: 106, Neg. LLF: 121.43243964203302
Iteration: 15, Func. Count: 112, Neg. LLF: 121.43243964667339
Optimization terminated successfully (Exit mode 0)
Current function value: 121.43243964203302
Iterations: 15
Function evaluations: 112
Gradient evaluations: 15
Iteration: 1, Func. Count: 9, Neg. LLF: 123.70327530958753
Iteration: 2, Func. Count: 18, Neg. LLF: 123.63128463666281
Iteration: 3, Func. Count: 27, Neg. LLF: 124.6380191157442
Iteration: 4, Func. Count: 36, Neg. LLF: 130.73063826903737
Iteration: 5, Func. Count: 45, Neg. LLF: 121.56092865911296
Iteration: 6, Func. Count: 53, Neg. LLF: 121.57075800182457
Iteration: 7, Func. Count: 62, Neg. LLF: 121.49285522486515
Iteration: 8, Func. Count: 70, Neg. LLF: 121.47445425476707
Iteration: 9, Func. Count: 78, Neg. LLF: 121.46629772088
Iteration: 10, Func. Count: 86, Neg. LLF: 121.44732511313345
Iteration: 11, Func. Count: 94, Neg. LLF: 121.45975082053673
Iteration: 12, Func. Count: 103, Neg. LLF: 121.43284288453152
Iteration: 13, Func. Count: 111, Neg. LLF: 121.43244898949521
Iteration: 14, Func. Count: 119, Neg. LLF: 121.4324399930272
Iteration: 15, Func. Count: 127, Neg. LLF: 121.43243947531707
Optimization terminated successfully (Exit mode 0)
Current function value: 121.43243947531707
Iterations: 15
Function evaluations: 127
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 123.55145570593315
Iteration: 2, Func. Count: 20, Neg. LLF: 123.09791970310683
Iteration: 3, Func. Count: 30, Neg. LLF: 121.70865184011413
Iteration: 4, Func. Count: 39, Neg. LLF: 131.52282202765022
Iteration: 5, Func. Count: 49, Neg. LLF: 129.37812188861872
Iteration: 6, Func. Count: 59, Neg. LLF: 121.58915008768992
Iteration: 7, Func. Count: 69, Neg. LLF: 121.51720426047982
Iteration: 8, Func. Count: 79, Neg. LLF: 121.44092236415018
Iteration: 9, Func. Count: 88, Neg. LLF: 121.43441040943776
Iteration: 10, Func. Count: 97, Neg. LLF: 121.43316934802188
Iteration: 11, Func. Count: 106, Neg. LLF: 121.43261375618499
Iteration: 12, Func. Count: 115, Neg. LLF: 121.43246456493125
Iteration: 13, Func. Count: 124, Neg. LLF: 121.43243969529009
Iteration: 14, Func. Count: 132, Neg. LLF: 121.4324398431043
Optimization terminated successfully (Exit mode 0)
Current function value: 121.43243969529009
Iterations: 14
Function evaluations: 132
Gradient evaluations: 14
Iteration: 1, Func. Count: 7, Neg. LLF: 121.2053268000291
Iteration: 2, Func. Count: 14, Neg. LLF: 130.73507650540088
Iteration: 3, Func. Count: 21, Neg. LLF: 119.14344277220474
Iteration: 4, Func. Count: 27, Neg. LLF: 119.11181596109292
Iteration: 5, Func. Count: 33, Neg. LLF: 119.1044714135199
Iteration: 6, Func. Count: 39, Neg. LLF: 119.0919659504651
Iteration: 7, Func. Count: 45, Neg. LLF: 119.082397824409
Iteration: 8, Func. Count: 51, Neg. LLF: 119.07784501312628
Iteration: 9, Func. Count: 57, Neg. LLF: 119.07693326988873
Iteration: 10, Func. Count: 63, Neg. LLF: 119.0769259588604
Iteration: 11, Func. Count: 68, Neg. LLF: 119.07692595885715
Optimization terminated successfully (Exit mode 0)
Current function value: 119.0769259588604
Iterations: 11
Function evaluations: 68
Gradient evaluations: 11
Iteration: 1, Func. Count: 8, Neg. LLF: 120.52417846166183
Iteration: 2, Func. Count: 15, Neg. LLF: 125.4510652345256
Iteration: 3, Func. Count: 23, Neg. LLF: 119.25991735820746
Iteration: 4, Func. Count: 30, Neg. LLF: 119.50173783504009
Iteration: 5, Func. Count: 38, Neg. LLF: 119.0950898870037
Iteration: 6, Func. Count: 45, Neg. LLF: 119.07768915968971
Iteration: 7, Func. Count: 52, Neg. LLF: 119.07697004869128
Iteration: 8, Func. Count: 59, Neg. LLF: 119.07692675605418
Iteration: 9, Func. Count: 66, Neg. LLF: 119.07692600404995
Optimization terminated successfully (Exit mode 0)
Current function value: 119.07692600404995
Iterations: 9
Function evaluations: 66
Gradient evaluations: 9
Iteration: 1, Func. Count: 9, Neg. LLF: 121.17044530882639
Iteration: 2, Func. Count: 18, Neg. LLF: 126.36390682409626
Iteration: 3, Func. Count: 27, Neg. LLF: 119.54300729870242
Iteration: 4, Func. Count: 35, Neg. LLF: 134.20807508859582
Iteration: 5, Func. Count: 44, Neg. LLF: 121.18955044958119
Iteration: 6, Func. Count: 53, Neg. LLF: 119.04651754205112
Iteration: 7, Func. Count: 61, Neg. LLF: 119.04149540847673
Iteration: 8, Func. Count: 69, Neg. LLF: 119.04067250216276
Iteration: 9, Func. Count: 77, Neg. LLF: 119.04053033013813
Iteration: 10, Func. Count: 85, Neg. LLF: 119.0405091458882
Iteration: 11, Func. Count: 92, Neg. LLF: 119.0405091457482
Optimization terminated successfully (Exit mode 0)
Current function value: 119.0405091458882
Iterations: 11
Function evaluations: 92
Gradient evaluations: 11
Iteration: 1, Func. Count: 10, Neg. LLF: 121.90497259780189
Iteration: 2, Func. Count: 20, Neg. LLF: 128.72263579540066
Iteration: 3, Func. Count: 30, Neg. LLF: 118.49879279271696
Iteration: 4, Func. Count: 39, Neg. LLF: 212.7334675173447
Iteration: 5, Func. Count: 49, Neg. LLF: 153.69169010077795
Iteration: 6, Func. Count: 59, Neg. LLF: 140.51650990605592
Iteration: 7, Func. Count: 69, Neg. LLF: 134.0360431241091
Iteration: 8, Func. Count: 79, Neg. LLF: 128.9230823396438
Iteration: 9, Func. Count: 89, Neg. LLF: 126.24923527855665
Iteration: 10, Func. Count: 99, Neg. LLF: 124.08817909851643
Iteration: 11, Func. Count: 109, Neg. LLF: 122.53544856674698
Iteration: 12, Func. Count: 119, Neg. LLF: 116.11142098709782
Iteration: 13, Func. Count: 129, Neg. LLF: 115.35660617698929
Iteration: 14, Func. Count: 138, Neg. LLF: 115.32864861519134
Iteration: 15, Func. Count: 147, Neg. LLF: 115.3107376384084
Iteration: 16, Func. Count: 156, Neg. LLF: 115.309976090831
Iteration: 17, Func. Count: 166, Neg. LLF: 115.302054572341
Iteration: 18, Func. Count: 175, Neg. LLF: 115.3003270404132
Iteration: 19, Func. Count: 184, Neg. LLF: 115.298773162832
Iteration: 20, Func. Count: 193, Neg. LLF: 115.29854894214789
Iteration: 21, Func. Count: 202, Neg. LLF: 115.29852547259568
Iteration: 22, Func. Count: 210, Neg. LLF: 115.29852547271634
Optimization terminated successfully (Exit mode 0)
Current function value: 115.29852547259568
Iterations: 22
Function evaluations: 210
Gradient evaluations: 22
Iteration: 1, Func. Count: 11, Neg. LLF: 121.84855997137443
Iteration: 2, Func. Count: 22, Neg. LLF: 128.03589791425676
Iteration: 3, Func. Count: 33, Neg. LLF: 118.57477039566217
Iteration: 4, Func. Count: 43, Neg. LLF: 165.3062759668594
Iteration: 5, Func. Count: 54, Neg. LLF: 5829.422556494073
Iteration: 6, Func. Count: 65, Neg. LLF: 843.7274281075862
Iteration: 7, Func. Count: 76, Neg. LLF: 143.00740070335152
Iteration: 8, Func. Count: 87, Neg. LLF: 137.78230258857823
Iteration: 9, Func. Count: 98, Neg. LLF: 122.22680946321356
Iteration: 10, Func. Count: 109, Neg. LLF: 124.64903242621128
Iteration: 11, Func. Count: 120, Neg. LLF: 119.16951319030295
Iteration: 12, Func. Count: 131, Neg. LLF: 116.01306102577537
Iteration: 13, Func. Count: 142, Neg. LLF: 115.3522154270252
Iteration: 14, Func. Count: 152, Neg. LLF: 115.31206521040897
Iteration: 15, Func. Count: 162, Neg. LLF: 115.30338235922603
Iteration: 16, Func. Count: 172, Neg. LLF: 115.29917373532385
Iteration: 17, Func. Count: 182, Neg. LLF: 115.29859554184297
Iteration: 18, Func. Count: 192, Neg. LLF: 115.29854520079631
Iteration: 19, Func. Count: 202, Neg. LLF: 115.29853165288097
Iteration: 20, Func. Count: 212, Neg. LLF: 115.298530564955
Iteration: 21, Func. Count: 222, Neg. LLF: 115.29852497766964
Iteration: 22, Func. Count: 231, Neg. LLF: 115.29852512554994
Optimization terminated successfully (Exit mode 0)
Current function value: 115.29852497766964
Iterations: 22
Function evaluations: 231
Gradient evaluations: 22
Iteration: 1, Func. Count: 8, Neg. LLF: 120.62807542910429
Iteration: 2, Func. Count: 16, Neg. LLF: 129.8058372009036
Iteration: 3, Func. Count: 24, Neg. LLF: 119.15235858938289
Iteration: 4, Func. Count: 31, Neg. LLF: 135.40077369783387
Iteration: 5, Func. Count: 39, Neg. LLF: 119.02281544366595
Iteration: 6, Func. Count: 46, Neg. LLF: 119.00698288709893
Iteration: 7, Func. Count: 53, Neg. LLF: 118.99839561061107
Iteration: 8, Func. Count: 60, Neg. LLF: 118.98370100709695
Iteration: 9, Func. Count: 67, Neg. LLF: 118.97412993956138
Iteration: 10, Func. Count: 74, Neg. LLF: 118.96963979520457
Iteration: 11, Func. Count: 81, Neg. LLF: 118.96941957890203
Iteration: 12, Func. Count: 88, Neg. LLF: 118.9694180160407
Iteration: 13, Func. Count: 95, Neg. LLF: 118.96941731290373
Optimization terminated successfully (Exit mode 0)
Current function value: 118.96941731290373
Iterations: 13
Function evaluations: 95
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 120.22850289030744
Iteration: 2, Func. Count: 17, Neg. LLF: 123.04734261981982
Iteration: 3, Func. Count: 26, Neg. LLF: 119.38391796894882
Iteration: 4, Func. Count: 34, Neg. LLF: 122.08891036497182
Iteration: 5, Func. Count: 43, Neg. LLF: 129.8847575765935
Iteration: 6, Func. Count: 52, Neg. LLF: 119.16666375816935
Iteration: 7, Func. Count: 61, Neg. LLF: 118.97319873451879
Iteration: 8, Func. Count: 69, Neg. LLF: 118.97053236667985
Iteration: 9, Func. Count: 77, Neg. LLF: 118.96969881401937
Iteration: 10, Func. Count: 85, Neg. LLF: 118.9694215066716
Iteration: 11, Func. Count: 93, Neg. LLF: 118.96941728259613
Iteration: 12, Func. Count: 100, Neg. LLF: 118.96941740781283
Optimization terminated successfully (Exit mode 0)
Current function value: 118.96941728259613
Iterations: 12
Function evaluations: 100
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 120.91443841675542
Iteration: 2, Func. Count: 19, Neg. LLF: 134.01156809999165
Iteration: 3, Func. Count: 29, Neg. LLF: 124.0810773880518
Iteration: 4, Func. Count: 41, Neg. LLF: 129.63733901121884
Iteration: 5, Func. Count: 51, Neg. LLF: 131.2142274335915
Iteration: 6, Func. Count: 61, Neg. LLF: 131.4955878686264
Iteration: 7, Func. Count: 71, Neg. LLF: 130.9835342866474
Iteration: 8, Func. Count: 81, Neg. LLF: 119.6731992090502
Iteration: 9, Func. Count: 91, Neg. LLF: 118.9975708480249
Iteration: 10, Func. Count: 100, Neg. LLF: 118.9712849289202
Iteration: 11, Func. Count: 109, Neg. LLF: 118.96976435338307
Iteration: 12, Func. Count: 118, Neg. LLF: 118.96950313145248
Iteration: 13, Func. Count: 127, Neg. LLF: 118.96943612187101
Iteration: 14, Func. Count: 136, Neg. LLF: 118.96941825920926
Iteration: 15, Func. Count: 145, Neg. LLF: 118.96941697342464
Iteration: 16, Func. Count: 153, Neg. LLF: 118.96941701235579
Optimization terminated successfully (Exit mode 0)
Current function value: 118.96941697342464
Iterations: 16
Function evaluations: 153
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 121.2765082903845
Iteration: 2, Func. Count: 22, Neg. LLF: 133.55066643642246
Iteration: 3, Func. Count: 33, Neg. LLF: 118.96082330798501
Iteration: 4, Func. Count: 43, Neg. LLF: 117.48792548294628
Iteration: 5, Func. Count: 53, Neg. LLF: 695.780867244221
Iteration: 6, Func. Count: 64, Neg. LLF: 128.89775340513606
Iteration: 7, Func. Count: 75, Neg. LLF: 139.17627981228685
Iteration: 8, Func. Count: 86, Neg. LLF: 119.76109006322787
Iteration: 9, Func. Count: 97, Neg. LLF: 121.14718913834457
Iteration: 10, Func. Count: 108, Neg. LLF: 121.93980693831416
Iteration: 11, Func. Count: 119, Neg. LLF: 120.3239592899585
Iteration: 12, Func. Count: 130, Neg. LLF: 119.92758237526411
Iteration: 13, Func. Count: 141, Neg. LLF: 115.34660321041115
Iteration: 14, Func. Count: 151, Neg. LLF: 117.7426426917215
Iteration: 15, Func. Count: 163, Neg. LLF: 115.32691955159196
Iteration: 16, Func. Count: 174, Neg. LLF: 115.29420657255143
Iteration: 17, Func. Count: 184, Neg. LLF: 115.29240735185631
Iteration: 18, Func. Count: 194, Neg. LLF: 115.29202576182381
Iteration: 19, Func. Count: 204, Neg. LLF: 115.5228887135029
Iteration: 20, Func. Count: 217, Neg. LLF: 115.30106195790266
Iteration: 21, Func. Count: 229, Neg. LLF: 115.29336174963703
Iteration: 22, Func. Count: 240, Neg. LLF: 115.29213700964061
Iteration: 23, Func. Count: 251, Neg. LLF: 115.29197888930125
Iteration: 24, Func. Count: 261, Neg. LLF: 115.29197881547225
Optimization terminated successfully (Exit mode 0)
Current function value: 115.2919784090319
Iterations: 25
Function evaluations: 262
Gradient evaluations: 24
Iteration: 1, Func. Count: 12, Neg. LLF: 121.2261656964439
Iteration: 2, Func. Count: 24, Neg. LLF: 132.7622368574708
Iteration: 3, Func. Count: 36, Neg. LLF: 119.03293726518928
Iteration: 4, Func. Count: 47, Neg. LLF: 117.52650488820211
Iteration: 5, Func. Count: 58, Neg. LLF: 780.0760637343501
Iteration: 6, Func. Count: 70, Neg. LLF: 119.00841099679221
Iteration: 7, Func. Count: 82, Neg. LLF: 60789.72438653796
Iteration: 8, Func. Count: 94, Neg. LLF: 120.42072125582126
Iteration: 9, Func. Count: 106, Neg. LLF: 189.00109872442562
Iteration: 10, Func. Count: 119, Neg. LLF: 115.79520612867022
Iteration: 11, Func. Count: 131, Neg. LLF: 115.40494782922809
Iteration: 12, Func. Count: 142, Neg. LLF: 115.34561663884782
Iteration: 13, Func. Count: 153, Neg. LLF: 115.30521878129427
Iteration: 14, Func. Count: 164, Neg. LLF: 115.29231699606466
Iteration: 15, Func. Count: 175, Neg. LLF: 115.29205185704765
Iteration: 16, Func. Count: 186, Neg. LLF: 115.29197903409506
Iteration: 17, Func. Count: 197, Neg. LLF: 115.2919780793647
Optimization terminated successfully (Exit mode 0)
Current function value: 115.2919780793647
Iterations: 17
Function evaluations: 197
Gradient evaluations: 17
Iteration: 1, Func. Count: 9, Neg. LLF: 120.94653518756655
Iteration: 2, Func. Count: 18, Neg. LLF: 133.1531560527645
Iteration: 3, Func. Count: 27, Neg. LLF: 119.14809249062519
Iteration: 4, Func. Count: 35, Neg. LLF: 178.25997270142432
Iteration: 5, Func. Count: 44, Neg. LLF: 119.04326259725173
Iteration: 6, Func. Count: 52, Neg. LLF: 118.99087271064263
Iteration: 7, Func. Count: 60, Neg. LLF: 118.98425234057207
Iteration: 8, Func. Count: 68, Neg. LLF: 118.98244320391566
Iteration: 9, Func. Count: 76, Neg. LLF: 118.97873506447544
Iteration: 10, Func. Count: 84, Neg. LLF: 118.97522000475695
Iteration: 11, Func. Count: 92, Neg. LLF: 118.97110659621605
Iteration: 12, Func. Count: 100, Neg. LLF: 118.96965252218266
Iteration: 13, Func. Count: 108, Neg. LLF: 118.96946109797221
Iteration: 14, Func. Count: 116, Neg. LLF: 118.96943355557451
Iteration: 15, Func. Count: 124, Neg. LLF: 118.96941424494862
Iteration: 16, Func. Count: 132, Neg. LLF: 118.9694958243058
Optimization terminated successfully (Exit mode 0)
Current function value: 118.96941430151479
Iterations: 17
Function evaluations: 133
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 120.52043702307964
Iteration: 2, Func. Count: 19, Neg. LLF: 130.11690229511532
Iteration: 3, Func. Count: 29, Neg. LLF: 120.67585461379475
Iteration: 4, Func. Count: 40, Neg. LLF: 119.20627177319724
Iteration: 5, Func. Count: 49, Neg. LLF: 119.09173028158703
Iteration: 6, Func. Count: 58, Neg. LLF: 119.04241455464114
Iteration: 7, Func. Count: 67, Neg. LLF: 118.98352492430703
Iteration: 8, Func. Count: 76, Neg. LLF: 118.9765241563688
Iteration: 9, Func. Count: 85, Neg. LLF: 118.97252254691242
Iteration: 10, Func. Count: 94, Neg. LLF: 118.97142007320079
Iteration: 11, Func. Count: 103, Neg. LLF: 118.96963506409605
Iteration: 12, Func. Count: 112, Neg. LLF: 118.96943432956787
Iteration: 13, Func. Count: 121, Neg. LLF: 118.96941727018086
Iteration: 14, Func. Count: 129, Neg. LLF: 118.9694173954927
Optimization terminated successfully (Exit mode 0)
Current function value: 118.96941727018086
Iterations: 14
Function evaluations: 129
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 121.14419709066227
Iteration: 2, Func. Count: 22, Neg. LLF: 132.9485083736012
Iteration: 3, Func. Count: 33, Neg. LLF: 119.48518053643224
Iteration: 4, Func. Count: 43, Neg. LLF: 137.71198904667375
Iteration: 5, Func. Count: 54, Neg. LLF: 119.06738715267157
Iteration: 6, Func. Count: 64, Neg. LLF: 118.97517957471537
Iteration: 7, Func. Count: 74, Neg. LLF: 118.97261843924876
Iteration: 8, Func. Count: 84, Neg. LLF: 118.97107750802954
Iteration: 9, Func. Count: 94, Neg. LLF: 118.97019328742832
Iteration: 10, Func. Count: 104, Neg. LLF: 118.96949684485124
Iteration: 11, Func. Count: 114, Neg. LLF: 118.96941850650913
Iteration: 12, Func. Count: 124, Neg. LLF: 118.96941697655855
Iteration: 13, Func. Count: 133, Neg. LLF: 118.96941701548111
Optimization terminated successfully (Exit mode 0)
Current function value: 118.96941697655855
Iterations: 13
Function evaluations: 133
Gradient evaluations: 13
Iteration: 1, Func. Count: 12, Neg. LLF: 121.58571389687529
Iteration: 2, Func. Count: 24, Neg. LLF: 137.2802441983834
Iteration: 3, Func. Count: 36, Neg. LLF: 119.14855143536222
Iteration: 4, Func. Count: 47, Neg. LLF: 117.73139852310192
Iteration: 5, Func. Count: 58, Neg. LLF: 2033.3003102158173
Iteration: 6, Func. Count: 70, Neg. LLF: 5858.826221632685
Iteration: 7, Func. Count: 82, Neg. LLF: 143.84065696257449
Iteration: 8, Func. Count: 94, Neg. LLF: 128.86171715985893
Iteration: 9, Func. Count: 106, Neg. LLF: 125.19722215303919
Iteration: 10, Func. Count: 118, Neg. LLF: 141.3347077747297
Iteration: 11, Func. Count: 130, Neg. LLF: 126.42561228193061
Iteration: 12, Func. Count: 142, Neg. LLF: 115.60544981976304
Iteration: 13, Func. Count: 154, Neg. LLF: 115.31549012585126
Iteration: 14, Func. Count: 166, Neg. LLF: 115.33045723048767
Iteration: 15, Func. Count: 178, Neg. LLF: 115.30060417111088
Iteration: 16, Func. Count: 190, Neg. LLF: 115.29221537543845
Iteration: 17, Func. Count: 201, Neg. LLF: 115.29197923516608
Iteration: 18, Func. Count: 212, Neg. LLF: 115.29197830709802
Optimization terminated successfully (Exit mode 0)
Current function value: 115.29197830709802
Iterations: 18
Function evaluations: 212
Gradient evaluations: 18
Iteration: 1, Func. Count: 13, Neg. LLF: 121.4464346804496
Iteration: 2, Func. Count: 26, Neg. LLF: 135.7703804571026
Iteration: 3, Func. Count: 39, Neg. LLF: 119.23902268731717
Iteration: 4, Func. Count: 51, Neg. LLF: 117.38908241446707
Iteration: 5, Func. Count: 63, Neg. LLF: 8756.830235816453
Iteration: 6, Func. Count: 76, Neg. LLF: 133.2184863451878
Iteration: 7, Func. Count: 89, Neg. LLF: 131.18994294072434
Iteration: 8, Func. Count: 102, Neg. LLF: 125.54849803116919
Iteration: 9, Func. Count: 115, Neg. LLF: 123.10266848251018
Iteration: 10, Func. Count: 128, Neg. LLF: 127.35132093688296
Iteration: 11, Func. Count: 141, Neg. LLF: 123.56067684596471
Iteration: 12, Func. Count: 154, Neg. LLF: 115.37840568865303
Iteration: 13, Func. Count: 166, Neg. LLF: 115.47230431243989
Iteration: 14, Func. Count: 179, Neg. LLF: 115.32627241588204
Iteration: 15, Func. Count: 192, Neg. LLF: 115.29464884193818
Iteration: 16, Func. Count: 205, Neg. LLF: 115.2920428834968
Iteration: 17, Func. Count: 217, Neg. LLF: 115.29198616785075
Iteration: 18, Func. Count: 229, Neg. LLF: 115.29197867197674
Iteration: 19, Func. Count: 240, Neg. LLF: 115.29197880120368
Optimization terminated successfully (Exit mode 0)
Current function value: 115.29197867197674
Iterations: 19
Function evaluations: 240
Gradient evaluations: 19
Iteration: 1, Func. Count: 10, Neg. LLF: 123.49395322248314
Iteration: 2, Func. Count: 20, Neg. LLF: 159.40402794298402
Iteration: 3, Func. Count: 30, Neg. LLF: 117.79159057888565
Iteration: 4, Func. Count: 39, Neg. LLF: 127.68937751526471
Iteration: 5, Func. Count: 49, Neg. LLF: 117.73000604131906
Iteration: 6, Func. Count: 59, Neg. LLF: 117.63891691830513
Iteration: 7, Func. Count: 68, Neg. LLF: 117.59089476085458
Iteration: 8, Func. Count: 77, Neg. LLF: 117.57862564389085
Iteration: 9, Func. Count: 86, Neg. LLF: 117.56937587512904
Iteration: 10, Func. Count: 95, Neg. LLF: 117.56507169740611
Iteration: 11, Func. Count: 104, Neg. LLF: 117.55690751565612
Iteration: 12, Func. Count: 113, Neg. LLF: 117.55494669672089
Iteration: 13, Func. Count: 122, Neg. LLF: 117.59481371654469
Iteration: 14, Func. Count: 133, Neg. LLF: 117.55465816584021
Iteration: 15, Func. Count: 142, Neg. LLF: 117.55460377620695
Iteration: 16, Func. Count: 151, Neg. LLF: 117.55460288714629
Optimization terminated successfully (Exit mode 0)
Current function value: 117.55460288714629
Iterations: 16
Function evaluations: 151
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 122.07432881435335
Iteration: 2, Func. Count: 22, Neg. LLF: 124.40386421033058
Iteration: 3, Func. Count: 33, Neg. LLF: 120.08335077120046
Iteration: 4, Func. Count: 44, Neg. LLF: 118.65185207374167
Iteration: 5, Func. Count: 54, Neg. LLF: 138.45960984359556
Iteration: 6, Func. Count: 65, Neg. LLF: 119.00346166402939
Iteration: 7, Func. Count: 76, Neg. LLF: 117.74338691685313
Iteration: 8, Func. Count: 86, Neg. LLF: 126.1915794347544
Iteration: 9, Func. Count: 97, Neg. LLF: 118.57972889943903
Iteration: 10, Func. Count: 108, Neg. LLF: 117.75202656100264
Iteration: 11, Func. Count: 119, Neg. LLF: 117.61272656696461
Iteration: 12, Func. Count: 129, Neg. LLF: 117.60127812532653
Iteration: 13, Func. Count: 139, Neg. LLF: 117.5971398932475
Iteration: 14, Func. Count: 149, Neg. LLF: 117.58721358319592
Iteration: 15, Func. Count: 159, Neg. LLF: 117.5718294397508
Iteration: 16, Func. Count: 169, Neg. LLF: 117.5603546315593
Iteration: 17, Func. Count: 179, Neg. LLF: 117.55564953471277
Iteration: 18, Func. Count: 189, Neg. LLF: 117.6086840866118
Iteration: 19, Func. Count: 200, Neg. LLF: 117.55501616387977
Iteration: 20, Func. Count: 210, Neg. LLF: 117.55461207841059
Iteration: 21, Func. Count: 220, Neg. LLF: 117.5546057062253
Iteration: 22, Func. Count: 230, Neg. LLF: 117.55460288053997
Iteration: 23, Func. Count: 239, Neg. LLF: 117.55460298328745
Optimization terminated successfully (Exit mode 0)
Current function value: 117.55460288053997
Iterations: 23
Function evaluations: 239
Gradient evaluations: 23
Iteration: 1, Func. Count: 12, Neg. LLF: 123.1526551398347
Iteration: 2, Func. Count: 24, Neg. LLF: 125.06937435772683
Iteration: 3, Func. Count: 36, Neg. LLF: 119.31431271126482
Iteration: 4, Func. Count: 48, Neg. LLF: 119.18699086197574
Iteration: 5, Func. Count: 60, Neg. LLF: 138.45673247662998
Iteration: 6, Func. Count: 72, Neg. LLF: 117.69454037258062
Iteration: 7, Func. Count: 83, Neg. LLF: 127.33732123679573
Iteration: 8, Func. Count: 95, Neg. LLF: 120.19715162361025
Iteration: 9, Func. Count: 107, Neg. LLF: 117.64527220407135
Iteration: 10, Func. Count: 119, Neg. LLF: 117.57457195530698
Iteration: 11, Func. Count: 130, Neg. LLF: 117.57033635918637
Iteration: 12, Func. Count: 141, Neg. LLF: 117.56585730155321
Iteration: 13, Func. Count: 152, Neg. LLF: 117.56224970937171
Iteration: 14, Func. Count: 163, Neg. LLF: 117.55641077089432
Iteration: 15, Func. Count: 174, Neg. LLF: 117.55498210779
Iteration: 16, Func. Count: 185, Neg. LLF: 117.55469460624695
Iteration: 17, Func. Count: 196, Neg. LLF: 117.55462604607264
Iteration: 18, Func. Count: 207, Neg. LLF: 117.55460347052373
Iteration: 19, Func. Count: 218, Neg. LLF: 117.55460289453036
Optimization terminated successfully (Exit mode 0)
Current function value: 117.55460289453036
Iterations: 19
Function evaluations: 218
Gradient evaluations: 19
Iteration: 1, Func. Count: 13, Neg. LLF: 123.71105262209008
Iteration: 2, Func. Count: 26, Neg. LLF: 131.23072733327228
Iteration: 3, Func. Count: 39, Neg. LLF: 118.48996510826643
Iteration: 4, Func. Count: 51, Neg. LLF: 119.30842493662274
Iteration: 5, Func. Count: 64, Neg. LLF: 157.7785147383408
Iteration: 6, Func. Count: 77, Neg. LLF: 166.7972014296634
Iteration: 7, Func. Count: 90, Neg. LLF: 129.17218800677
Iteration: 8, Func. Count: 103, Neg. LLF: 116.3238288213107
Iteration: 9, Func. Count: 115, Neg. LLF: 116.53710178117585
Iteration: 10, Func. Count: 128, Neg. LLF: 118.54852985077656
Iteration: 11, Func. Count: 141, Neg. LLF: 115.29582255522789
Iteration: 12, Func. Count: 153, Neg. LLF: 119.75691236144874
Iteration: 13, Func. Count: 166, Neg. LLF: 115.01470250756059
Iteration: 14, Func. Count: 178, Neg. LLF: 114.93017878998995
Iteration: 15, Func. Count: 190, Neg. LLF: 114.88826549296817
Iteration: 16, Func. Count: 202, Neg. LLF: 114.87912148963876
Iteration: 17, Func. Count: 214, Neg. LLF: 114.87535892095643
Iteration: 18, Func. Count: 226, Neg. LLF: 114.87446419111987
Iteration: 19, Func. Count: 238, Neg. LLF: 114.87419346438686
Iteration: 20, Func. Count: 250, Neg. LLF: 114.87410706792059
Iteration: 21, Func. Count: 261, Neg. LLF: 114.8741070679374
Optimization terminated successfully (Exit mode 0)
Current function value: 114.87410706792059
Iterations: 21
Function evaluations: 261
Gradient evaluations: 21
Iteration: 1, Func. Count: 14, Neg. LLF: 123.7151065591204
Iteration: 2, Func. Count: 28, Neg. LLF: 129.376826985695
Iteration: 3, Func. Count: 42, Neg. LLF: 118.49305201367828
Iteration: 4, Func. Count: 55, Neg. LLF: 121.72534572533621
Iteration: 5, Func. Count: 69, Neg. LLF: 133.95099652853358
Iteration: 6, Func. Count: 83, Neg. LLF: 141.81465015245078
Iteration: 7, Func. Count: 97, Neg. LLF: 133.43859080267765
Iteration: 8, Func. Count: 111, Neg. LLF: 116.47423796321732
Iteration: 9, Func. Count: 124, Neg. LLF: 116.0480689341313
Iteration: 10, Func. Count: 137, Neg. LLF: 116.57012792452133
Iteration: 11, Func. Count: 151, Neg. LLF: 115.28706060952675
Iteration: 12, Func. Count: 164, Neg. LLF: 115.12585528766014
Iteration: 13, Func. Count: 177, Neg. LLF: 128.23467020353146
Iteration: 14, Func. Count: 191, Neg. LLF: 129.06395456908277
Iteration: 15, Func. Count: 205, Neg. LLF: 115.74773376233105
Iteration: 16, Func. Count: 219, Neg. LLF: 114.87928503866362
Iteration: 17, Func. Count: 232, Neg. LLF: 114.8757523443659
Iteration: 18, Func. Count: 245, Neg. LLF: 114.87474756345833
Iteration: 19, Func. Count: 258, Neg. LLF: 114.87419445423104
Iteration: 20, Func. Count: 271, Neg. LLF: 114.87411243027155
Iteration: 21, Func. Count: 284, Neg. LLF: 114.87410706580889
Iteration: 22, Func. Count: 296, Neg. LLF: 114.87410708135434
Optimization terminated successfully (Exit mode 0)
Current function value: 114.87410706580889
Iterations: 22
Function evaluations: 296
Gradient evaluations: 22
Iteration: 1, Func. Count: 7, Neg. LLF: 123.27744122934877
Iteration: 2, Func. Count: 14, Neg. LLF: 122.03745611031101
Iteration: 3, Func. Count: 21, Neg. LLF: 145.47335884189968
Iteration: 4, Func. Count: 28, Neg. LLF: 121.60001843974372
Iteration: 5, Func. Count: 34, Neg. LLF: 121.74182898950892
Iteration: 6, Func. Count: 41, Neg. LLF: 121.5261416080607
Iteration: 7, Func. Count: 47, Neg. LLF: 124.52193303155947
Iteration: 8, Func. Count: 54, Neg. LLF: 124.5944099557967
Iteration: 9, Func. Count: 61, Neg. LLF: 125.71799648666263
Iteration: 10, Func. Count: 68, Neg. LLF: 124.26560714662922
Iteration: 11, Func. Count: 75, Neg. LLF: 121.44587683083058
Iteration: 12, Func. Count: 81, Neg. LLF: 121.4439872937955
Iteration: 13, Func. Count: 87, Neg. LLF: 121.44034597297066
Iteration: 14, Func. Count: 93, Neg. LLF: 121.4348872737029
Iteration: 15, Func. Count: 99, Neg. LLF: 121.43306284248547
Iteration: 16, Func. Count: 105, Neg. LLF: 121.43293037716911
Iteration: 17, Func. Count: 111, Neg. LLF: 121.43292276875901
Iteration: 18, Func. Count: 116, Neg. LLF: 121.43292276875782
Optimization terminated successfully (Exit mode 0)
Current function value: 121.43292276875901
Iterations: 18
Function evaluations: 116
Gradient evaluations: 18
Iteration: 1, Func. Count: 8, Neg. LLF: 123.53592176617424
Iteration: 2, Func. Count: 16, Neg. LLF: 127.16716780202394
Iteration: 3, Func. Count: 24, Neg. LLF: 123.30053443814991
Iteration: 4, Func. Count: 32, Neg. LLF: 122.34253962034113
Iteration: 5, Func. Count: 40, Neg. LLF: 121.57819457845743
Iteration: 6, Func. Count: 47, Neg. LLF: 121.5515164204863
Iteration: 7, Func. Count: 54, Neg. LLF: 121.50299527620433
Iteration: 8, Func. Count: 61, Neg. LLF: 122.1777195874019
Iteration: 9, Func. Count: 69, Neg. LLF: 125.51029835912811
Iteration: 10, Func. Count: 77, Neg. LLF: 121.47367575268085
Iteration: 11, Func. Count: 85, Neg. LLF: 121.43289123106719
Iteration: 12, Func. Count: 92, Neg. LLF: 121.43258357072895
Iteration: 13, Func. Count: 99, Neg. LLF: 121.43255532565679
Iteration: 14, Func. Count: 106, Neg. LLF: 121.43272501946191
Iteration: 15, Func. Count: 114, Neg. LLF: 121.43243938886609
Iteration: 16, Func. Count: 121, Neg. LLF: 121.43243223574582
Iteration: 17, Func. Count: 128, Neg. LLF: 121.43242823846316
Iteration: 18, Func. Count: 135, Neg. LLF: 121.43242585165274
Iteration: 19, Func. Count: 142, Neg. LLF: 121.4324198399019
Iteration: 20, Func. Count: 149, Neg. LLF: 121.43241548142234
Iteration: 21, Func. Count: 156, Neg. LLF: 121.43241365508109
Iteration: 22, Func. Count: 162, Neg. LLF: 121.43241365501544
Optimization terminated successfully (Exit mode 0)
Current function value: 121.43241365508109
Iterations: 22
Function evaluations: 162
Gradient evaluations: 22
Iteration: 1, Func. Count: 9, Neg. LLF: 123.79466960454
Iteration: 2, Func. Count: 18, Neg. LLF: 127.39789490927572
Iteration: 3, Func. Count: 27, Neg. LLF: 123.0452561913118
Iteration: 4, Func. Count: 36, Neg. LLF: 125.92849284582738
Iteration: 5, Func. Count: 45, Neg. LLF: 121.56744147349124
Iteration: 6, Func. Count: 53, Neg. LLF: 121.53305856149143
Iteration: 7, Func. Count: 61, Neg. LLF: 121.56889650323042
Iteration: 8, Func. Count: 70, Neg. LLF: 123.25954008996621
Iteration: 9, Func. Count: 79, Neg. LLF: 121.48516879627385
Iteration: 10, Func. Count: 88, Neg. LLF: 121.43492106868014
Iteration: 11, Func. Count: 96, Neg. LLF: 121.44189410355986
Iteration: 12, Func. Count: 105, Neg. LLF: 121.43296395995176
Iteration: 13, Func. Count: 113, Neg. LLF: 121.43272026362582
Iteration: 14, Func. Count: 121, Neg. LLF: 121.43268077962095
Iteration: 15, Func. Count: 129, Neg. LLF: 121.43265812116881
Iteration: 16, Func. Count: 137, Neg. LLF: 121.4325783926581
Iteration: 17, Func. Count: 145, Neg. LLF: 121.43249592387569
Iteration: 18, Func. Count: 153, Neg. LLF: 121.43242875321228
Iteration: 19, Func. Count: 161, Neg. LLF: 121.43241396894985
Iteration: 20, Func. Count: 168, Neg. LLF: 121.4324139727826
Optimization terminated successfully (Exit mode 0)
Current function value: 121.43241396894985
Iterations: 20
Function evaluations: 168
Gradient evaluations: 20
Iteration: 1, Func. Count: 10, Neg. LLF: 123.99364195308068
Iteration: 2, Func. Count: 20, Neg. LLF: 126.58034558893715
Iteration: 3, Func. Count: 30, Neg. LLF: 123.19268315570228
Iteration: 4, Func. Count: 40, Neg. LLF: 140.37887159284818
Iteration: 5, Func. Count: 50, Neg. LLF: 121.57139166914104
Iteration: 6, Func. Count: 59, Neg. LLF: 121.54268451817586
Iteration: 7, Func. Count: 68, Neg. LLF: 121.56964972487401
Iteration: 8, Func. Count: 78, Neg. LLF: 121.57469085982025
Iteration: 9, Func. Count: 88, Neg. LLF: 121.47086288623267
Iteration: 10, Func. Count: 98, Neg. LLF: 121.44897744482145
Iteration: 11, Func. Count: 107, Neg. LLF: 121.43672164263246
Iteration: 12, Func. Count: 116, Neg. LLF: 121.43602058153009
Iteration: 13, Func. Count: 126, Neg. LLF: 121.43293781201086
Iteration: 14, Func. Count: 135, Neg. LLF: 121.43258734525934
Iteration: 15, Func. Count: 144, Neg. LLF: 121.43256602573047
Iteration: 16, Func. Count: 153, Neg. LLF: 121.43247761827293
Iteration: 17, Func. Count: 162, Neg. LLF: 121.43242409088901
Iteration: 18, Func. Count: 171, Neg. LLF: 121.43241510804458
Iteration: 19, Func. Count: 180, Neg. LLF: 121.43241350221689
Iteration: 20, Func. Count: 188, Neg. LLF: 121.43241359428991
Optimization terminated successfully (Exit mode 0)
Current function value: 121.43241350221689
Iterations: 20
Function evaluations: 188
Gradient evaluations: 20
Iteration: 1, Func. Count: 11, Neg. LLF: 123.80422228873995
Iteration: 2, Func. Count: 22, Neg. LLF: 125.00775872456414
Iteration: 3, Func. Count: 33, Neg. LLF: 123.30618932258415
Iteration: 4, Func. Count: 44, Neg. LLF: 288.2646804909375
Iteration: 5, Func. Count: 55, Neg. LLF: 121.57854467851969
Iteration: 6, Func. Count: 65, Neg. LLF: 121.56293337031006
Iteration: 7, Func. Count: 75, Neg. LLF: 121.4965137924696
Iteration: 8, Func. Count: 85, Neg. LLF: 121.50446247908033
Iteration: 9, Func. Count: 96, Neg. LLF: 121.46222886601507
Iteration: 10, Func. Count: 106, Neg. LLF: 121.44350346992778
Iteration: 11, Func. Count: 116, Neg. LLF: 121.6505024647962
Iteration: 12, Func. Count: 127, Neg. LLF: 121.44769837140915
Iteration: 13, Func. Count: 138, Neg. LLF: 121.43334428620993
Iteration: 14, Func. Count: 148, Neg. LLF: 121.43267685850118
Iteration: 15, Func. Count: 158, Neg. LLF: 121.43262521183033
Iteration: 16, Func. Count: 168, Neg. LLF: 121.43260363948123
Iteration: 17, Func. Count: 178, Neg. LLF: 121.4325474441871
Iteration: 18, Func. Count: 188, Neg. LLF: 121.43248116720994
Iteration: 19, Func. Count: 198, Neg. LLF: 121.43242837949572
Iteration: 20, Func. Count: 208, Neg. LLF: 121.43241420282021
Iteration: 21, Func. Count: 218, Neg. LLF: 121.43241343768214
Optimization terminated successfully (Exit mode 0)
Current function value: 121.43241343768214
Iterations: 21
Function evaluations: 218
Gradient evaluations: 21
Iteration: 1, Func. Count: 8, Neg. LLF: 121.8287851762425
Iteration: 2, Func. Count: 16, Neg. LLF: 137.72658975056962
Iteration: 3, Func. Count: 24, Neg. LLF: 119.16041177080452
Iteration: 4, Func. Count: 31, Neg. LLF: 126.81574762537475
Iteration: 5, Func. Count: 39, Neg. LLF: 119.02856431894503
Iteration: 6, Func. Count: 46, Neg. LLF: 119.018042613195
Iteration: 7, Func. Count: 53, Neg. LLF: 119.01754566466695
Iteration: 8, Func. Count: 60, Neg. LLF: 119.01744037214932
Iteration: 9, Func. Count: 67, Neg. LLF: 119.01740926564098
Iteration: 10, Func. Count: 74, Neg. LLF: 119.0174086502655
Optimization terminated successfully (Exit mode 0)
Current function value: 119.0174086502655
Iterations: 10
Function evaluations: 74
Gradient evaluations: 10
Iteration: 1, Func. Count: 9, Neg. LLF: 121.34463659155226
Iteration: 2, Func. Count: 18, Neg. LLF: 130.8454762777473
Iteration: 3, Func. Count: 27, Neg. LLF: 119.51656407224054
Iteration: 4, Func. Count: 35, Neg. LLF: 136.5086734751422
Iteration: 5, Func. Count: 44, Neg. LLF: 119.12875715390764
Iteration: 6, Func. Count: 52, Neg. LLF: 119.02211489679814
Iteration: 7, Func. Count: 60, Neg. LLF: 119.01810855267908
Iteration: 8, Func. Count: 68, Neg. LLF: 119.01757282846421
Iteration: 9, Func. Count: 76, Neg. LLF: 119.01743939451674
Iteration: 10, Func. Count: 84, Neg. LLF: 119.01740983913614
Iteration: 11, Func. Count: 92, Neg. LLF: 119.01740864218677
Iteration: 12, Func. Count: 99, Neg. LLF: 119.01740878679104
Optimization terminated successfully (Exit mode 0)
Current function value: 119.01740864218677
Iterations: 12
Function evaluations: 99
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 121.87342602330375
Iteration: 2, Func. Count: 20, Neg. LLF: 131.89097044761087
Iteration: 3, Func. Count: 30, Neg. LLF: 119.58493843362118
Iteration: 4, Func. Count: 39, Neg. LLF: 139.85331461166203
Iteration: 5, Func. Count: 49, Neg. LLF: 120.11619809666696
Iteration: 6, Func. Count: 59, Neg. LLF: 119.02287095832418
Iteration: 7, Func. Count: 68, Neg. LLF: 119.01908805252778
Iteration: 8, Func. Count: 77, Neg. LLF: 119.01743531944469
Iteration: 9, Func. Count: 86, Neg. LLF: 119.01741012172862
Iteration: 10, Func. Count: 95, Neg. LLF: 119.01740885354785
Iteration: 11, Func. Count: 103, Neg. LLF: 119.0174088653529
Optimization terminated successfully (Exit mode 0)
Current function value: 119.01740885354785
Iterations: 11
Function evaluations: 103
Gradient evaluations: 11
Iteration: 1, Func. Count: 11, Neg. LLF: 122.54794595693355
Iteration: 2, Func. Count: 22, Neg. LLF: 134.72715046924586
Iteration: 3, Func. Count: 33, Neg. LLF: 118.66055645301289
Iteration: 4, Func. Count: 43, Neg. LLF: 118.72972707352882
Iteration: 5, Func. Count: 54, Neg. LLF: 1679.6917950893817
Iteration: 6, Func. Count: 65, Neg. LLF: 1203.486231321439
Iteration: 7, Func. Count: 76, Neg. LLF: 129.5068434992579
Iteration: 8, Func. Count: 87, Neg. LLF: 117.38613120730191
Iteration: 9, Func. Count: 98, Neg. LLF: 119.00922420091727
Iteration: 10, Func. Count: 109, Neg. LLF: 115.501477925434
Iteration: 11, Func. Count: 119, Neg. LLF: 115.40292771460042
Iteration: 12, Func. Count: 129, Neg. LLF: 115.31678610166148
Iteration: 13, Func. Count: 139, Neg. LLF: 115.30048557666512
Iteration: 14, Func. Count: 149, Neg. LLF: 115.29896978240461
Iteration: 15, Func. Count: 159, Neg. LLF: 115.29855202503421
Iteration: 16, Func. Count: 169, Neg. LLF: 115.29852534508112
Iteration: 17, Func. Count: 178, Neg. LLF: 115.29852534495753
Optimization terminated successfully (Exit mode 0)
Current function value: 115.29852534508112
Iterations: 17
Function evaluations: 178
Gradient evaluations: 17
Iteration: 1, Func. Count: 12, Neg. LLF: 122.40224594686964
Iteration: 2, Func. Count: 24, Neg. LLF: 133.75392812548503
Iteration: 3, Func. Count: 36, Neg. LLF: 118.75810551890795
Iteration: 4, Func. Count: 47, Neg. LLF: 117.51771112273987
Iteration: 5, Func. Count: 58, Neg. LLF: 117.3143987089697
Iteration: 6, Func. Count: 70, Neg. LLF: 121.41060946329866
Iteration: 7, Func. Count: 82, Neg. LLF: 124.47378733817989
Iteration: 8, Func. Count: 94, Neg. LLF: 123.33980487792157
Iteration: 9, Func. Count: 106, Neg. LLF: 120.19315459236374
Iteration: 10, Func. Count: 118, Neg. LLF: 115.62204964253687
Iteration: 11, Func. Count: 129, Neg. LLF: 115.31595062467066
Iteration: 12, Func. Count: 140, Neg. LLF: 115.31169796135237
Iteration: 13, Func. Count: 151, Neg. LLF: 115.30117510209452
Iteration: 14, Func. Count: 162, Neg. LLF: 115.2996088902965
Iteration: 15, Func. Count: 173, Neg. LLF: 115.29855872869598
Iteration: 16, Func. Count: 184, Neg. LLF: 115.29852576176722
Iteration: 17, Func. Count: 195, Neg. LLF: 115.29852502636214
Optimization terminated successfully (Exit mode 0)
Current function value: 115.29852502636214
Iterations: 17
Function evaluations: 195
Gradient evaluations: 17
Iteration: 1, Func. Count: 9, Neg. LLF: 121.12300128610097
Iteration: 2, Func. Count: 18, Neg. LLF: 138.05280704431277
Iteration: 3, Func. Count: 27, Neg. LLF: 119.16044899151709
Iteration: 4, Func. Count: 35, Neg. LLF: 171.40405784871973
Iteration: 5, Func. Count: 45, Neg. LLF: 119.08798143314648
Iteration: 6, Func. Count: 53, Neg. LLF: 118.98246002646466
Iteration: 7, Func. Count: 61, Neg. LLF: 118.97848438373438
Iteration: 8, Func. Count: 69, Neg. LLF: 118.97494770158126
Iteration: 9, Func. Count: 77, Neg. LLF: 118.97078541302677
Iteration: 10, Func. Count: 85, Neg. LLF: 118.96952828627552
Iteration: 11, Func. Count: 93, Neg. LLF: 118.9694202188989
Iteration: 12, Func. Count: 101, Neg. LLF: 118.96941714703898
Iteration: 13, Func. Count: 108, Neg. LLF: 118.9694169972023
Optimization terminated successfully (Exit mode 0)
Current function value: 118.96941714703898
Iterations: 13
Function evaluations: 108
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 120.88253869795403
Iteration: 2, Func. Count: 19, Neg. LLF: 137.1242060759418
Iteration: 3, Func. Count: 29, Neg. LLF: 121.28903527527224
Iteration: 4, Func. Count: 41, Neg. LLF: 119.27456249792408
Iteration: 5, Func. Count: 50, Neg. LLF: 119.15767827156874
Iteration: 6, Func. Count: 59, Neg. LLF: 119.00104179270076
Iteration: 7, Func. Count: 68, Neg. LLF: 118.99760172008091
Iteration: 8, Func. Count: 78, Neg. LLF: 118.96943831203534
Iteration: 9, Func. Count: 87, Neg. LLF: 118.96941741223999
Iteration: 10, Func. Count: 95, Neg. LLF: 118.96941753754454
Optimization terminated successfully (Exit mode 0)
Current function value: 118.96941741223999
Iterations: 10
Function evaluations: 95
Gradient evaluations: 10
Iteration: 1, Func. Count: 11, Neg. LLF: 121.47824905658806
Iteration: 2, Func. Count: 22, Neg. LLF: 138.3054705887541
Iteration: 3, Func. Count: 33, Neg. LLF: 119.5298312817811
Iteration: 4, Func. Count: 43, Neg. LLF: 145.51785561336993
Iteration: 5, Func. Count: 54, Neg. LLF: 119.17839552577081
Iteration: 6, Func. Count: 64, Neg. LLF: 119.02097065513257
Iteration: 7, Func. Count: 74, Neg. LLF: 119.29050971624572
Iteration: 8, Func. Count: 85, Neg. LLF: 118.97184510194631
Iteration: 9, Func. Count: 95, Neg. LLF: 118.97009473534669
Iteration: 10, Func. Count: 105, Neg. LLF: 118.96964672687612
Iteration: 11, Func. Count: 115, Neg. LLF: 118.96958406456964
Iteration: 12, Func. Count: 125, Neg. LLF: 118.9694388149231
Iteration: 13, Func. Count: 135, Neg. LLF: 118.96941846653266
Iteration: 14, Func. Count: 145, Neg. LLF: 118.96941697082804
Iteration: 15, Func. Count: 154, Neg. LLF: 118.96941700979092
Optimization terminated successfully (Exit mode 0)
Current function value: 118.96941697082804
Iterations: 15
Function evaluations: 154
Gradient evaluations: 15
Iteration: 1, Func. Count: 12, Neg. LLF: 121.78629429791883
Iteration: 2, Func. Count: 24, Neg. LLF: 142.23504090770203
Iteration: 3, Func. Count: 36, Neg. LLF: 119.12595417713642
Iteration: 4, Func. Count: 47, Neg. LLF: 117.5009186454162
Iteration: 5, Func. Count: 58, Neg. LLF: 225.62335853773246
Iteration: 6, Func. Count: 70, Neg. LLF: 216.18630989859295
Iteration: 7, Func. Count: 82, Neg. LLF: 134.43339530901068
Iteration: 8, Func. Count: 94, Neg. LLF: 123.59335382433058
Iteration: 9, Func. Count: 106, Neg. LLF: 115.89855865742437
Iteration: 10, Func. Count: 118, Neg. LLF: 120.12365090121342
Iteration: 11, Func. Count: 130, Neg. LLF: 115.42620095718227
Iteration: 12, Func. Count: 142, Neg. LLF: 115.34424423050136
Iteration: 13, Func. Count: 154, Neg. LLF: 115.29237449402662
Iteration: 14, Func. Count: 165, Neg. LLF: 115.29291090060424
Iteration: 15, Func. Count: 177, Neg. LLF: 115.29198351827308
Iteration: 16, Func. Count: 188, Neg. LLF: 115.29197831579427
Iteration: 17, Func. Count: 198, Neg. LLF: 115.29197831581266
Optimization terminated successfully (Exit mode 0)
Current function value: 115.29197831579427
Iterations: 17
Function evaluations: 198
Gradient evaluations: 17
Iteration: 1, Func. Count: 13, Neg. LLF: 121.67518535155348
Iteration: 2, Func. Count: 26, Neg. LLF: 140.70332134146457
Iteration: 3, Func. Count: 39, Neg. LLF: 119.21438406725798
Iteration: 4, Func. Count: 51, Neg. LLF: 117.18339171506149
Iteration: 5, Func. Count: 63, Neg. LLF: 118864.17090184236
Iteration: 6, Func. Count: 76, Neg. LLF: 131.95427293538404
Iteration: 7, Func. Count: 89, Neg. LLF: 123.41706201288694
Iteration: 8, Func. Count: 102, Neg. LLF: 121.14823683318451
Iteration: 9, Func. Count: 115, Neg. LLF: 267.28634544460505
Iteration: 10, Func. Count: 129, Neg. LLF: 116.9717754699154
Iteration: 11, Func. Count: 142, Neg. LLF: 116.33366623434254
Iteration: 12, Func. Count: 155, Neg. LLF: 115.30149515438796
Iteration: 13, Func. Count: 167, Neg. LLF: 115.2924620895864
Iteration: 14, Func. Count: 179, Neg. LLF: 115.29201499974334
Iteration: 15, Func. Count: 191, Neg. LLF: 115.29198004771533
Iteration: 16, Func. Count: 203, Neg. LLF: 115.29197843794549
Iteration: 17, Func. Count: 214, Neg. LLF: 115.29197856704822
Optimization terminated successfully (Exit mode 0)
Current function value: 115.29197843794549
Iterations: 17
Function evaluations: 214
Gradient evaluations: 17
Iteration: 1, Func. Count: 10, Neg. LLF: 121.4356827080485
Iteration: 2, Func. Count: 20, Neg. LLF: 141.6739734913991
Iteration: 3, Func. Count: 30, Neg. LLF: 119.10550859875836
Iteration: 4, Func. Count: 39, Neg. LLF: 124.48524765401561
Iteration: 5, Func. Count: 50, Neg. LLF: 119.3167220203604
Iteration: 6, Func. Count: 60, Neg. LLF: 118.99840169402309
Iteration: 7, Func. Count: 69, Neg. LLF: 118.97707444801979
Iteration: 8, Func. Count: 78, Neg. LLF: 118.95568129873878
Iteration: 9, Func. Count: 87, Neg. LLF: 118.94387043043265
Iteration: 10, Func. Count: 96, Neg. LLF: 118.94250255631205
Iteration: 11, Func. Count: 105, Neg. LLF: 118.94234861057775
Iteration: 12, Func. Count: 114, Neg. LLF: 118.94202709396095
Iteration: 13, Func. Count: 123, Neg. LLF: 118.94193849172517
Iteration: 14, Func. Count: 132, Neg. LLF: 118.94191804588846
Iteration: 15, Func. Count: 140, Neg. LLF: 118.94191801485528
Optimization terminated successfully (Exit mode 0)
Current function value: 118.94191804588846
Iterations: 15
Function evaluations: 140
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 121.46722153668604
Iteration: 2, Func. Count: 22, Neg. LLF: 140.58452875271325
Iteration: 3, Func. Count: 33, Neg. LLF: 119.50960824763405
Iteration: 4, Func. Count: 43, Neg. LLF: 125.35026438421562
Iteration: 5, Func. Count: 54, Neg. LLF: 119.61619109709572
Iteration: 6, Func. Count: 65, Neg. LLF: 119.45192868309411
Iteration: 7, Func. Count: 76, Neg. LLF: 118.96110494447984
Iteration: 8, Func. Count: 86, Neg. LLF: 118.94633732388141
Iteration: 9, Func. Count: 96, Neg. LLF: 118.94342082522665
Iteration: 10, Func. Count: 106, Neg. LLF: 118.94241493669605
Iteration: 11, Func. Count: 116, Neg. LLF: 118.94219681650502
Iteration: 12, Func. Count: 126, Neg. LLF: 118.94207005124368
Iteration: 13, Func. Count: 136, Neg. LLF: 118.94194642497875
Iteration: 14, Func. Count: 146, Neg. LLF: 118.94192078935403
Iteration: 15, Func. Count: 156, Neg. LLF: 118.94191763057758
Iteration: 16, Func. Count: 165, Neg. LLF: 118.94191776922024
Optimization terminated successfully (Exit mode 0)
Current function value: 118.94191763057758
Iterations: 16
Function evaluations: 165
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 121.82449225833854
Iteration: 2, Func. Count: 24, Neg. LLF: 143.45302520303778
Iteration: 3, Func. Count: 36, Neg. LLF: 119.53639267222498
Iteration: 4, Func. Count: 47, Neg. LLF: 133.85135149738434
Iteration: 5, Func. Count: 59, Neg. LLF: 119.89417574790343
Iteration: 6, Func. Count: 71, Neg. LLF: 119.3585502206162
Iteration: 7, Func. Count: 83, Neg. LLF: 118.99653426241397
Iteration: 8, Func. Count: 94, Neg. LLF: 119.0867621059166
Iteration: 9, Func. Count: 106, Neg. LLF: 118.95345213937647
Iteration: 10, Func. Count: 117, Neg. LLF: 118.94328407966564
Iteration: 11, Func. Count: 128, Neg. LLF: 118.94197513034742
Iteration: 12, Func. Count: 139, Neg. LLF: 118.94192503982374
Iteration: 13, Func. Count: 150, Neg. LLF: 118.94192071422243
Iteration: 14, Func. Count: 161, Neg. LLF: 118.94191956698069
Iteration: 15, Func. Count: 172, Neg. LLF: 118.94191771549482
Iteration: 16, Func. Count: 182, Neg. LLF: 118.94191774952942
Optimization terminated successfully (Exit mode 0)
Current function value: 118.94191771549482
Iterations: 16
Function evaluations: 182
Gradient evaluations: 16
Iteration: 1, Func. Count: 13, Neg. LLF: 122.18551740561448
Iteration: 2, Func. Count: 26, Neg. LLF: 148.0594866452876
Iteration: 3, Func. Count: 39, Neg. LLF: 119.34165479917252
Iteration: 4, Func. Count: 51, Neg. LLF: 117.37575573661071
Iteration: 5, Func. Count: 63, Neg. LLF: 147.83647036645627
Iteration: 6, Func. Count: 76, Neg. LLF: 133.9037128155269
Iteration: 7, Func. Count: 89, Neg. LLF: 126.64541494041754
Iteration: 8, Func. Count: 102, Neg. LLF: 150.90773140949895
Iteration: 9, Func. Count: 115, Neg. LLF: 122.79721206097221
Iteration: 10, Func. Count: 128, Neg. LLF: 115.7396288345308
Iteration: 11, Func. Count: 141, Neg. LLF: 115.35365666013145
Iteration: 12, Func. Count: 154, Neg. LLF: 115.4223575246961
Iteration: 13, Func. Count: 167, Neg. LLF: 115.29332630539871
Iteration: 14, Func. Count: 179, Neg. LLF: 115.29278842334266
Iteration: 15, Func. Count: 191, Neg. LLF: 115.2974524198081
Iteration: 16, Func. Count: 204, Neg. LLF: 115.29198607274638
Iteration: 17, Func. Count: 216, Neg. LLF: 115.2919784484339
Iteration: 18, Func. Count: 227, Neg. LLF: 115.29197844843274
Optimization terminated successfully (Exit mode 0)
Current function value: 115.2919784484339
Iterations: 18
Function evaluations: 227
Gradient evaluations: 18
Iteration: 1, Func. Count: 14, Neg. LLF: 121.98244065983927
Iteration: 2, Func. Count: 28, Neg. LLF: 145.57050214145232
Iteration: 3, Func. Count: 42, Neg. LLF: 119.44992732863368
Iteration: 4, Func. Count: 55, Neg. LLF: 117.07673697813459
Iteration: 5, Func. Count: 68, Neg. LLF: 143.33141323371274
Iteration: 6, Func. Count: 82, Neg. LLF: 127.86944563669336
Iteration: 7, Func. Count: 96, Neg. LLF: 123.96967211176872
Iteration: 8, Func. Count: 110, Neg. LLF: 11399312.44097317
Iteration: 9, Func. Count: 125, Neg. LLF: 122.04291794042489
Iteration: 10, Func. Count: 139, Neg. LLF: 115.85108028001336
Iteration: 11, Func. Count: 153, Neg. LLF: 115.36327130469486
Iteration: 12, Func. Count: 167, Neg. LLF: 115.29897911774127
Iteration: 13, Func. Count: 181, Neg. LLF: 115.29286006550522
Iteration: 14, Func. Count: 194, Neg. LLF: 115.29326118977701
Iteration: 15, Func. Count: 208, Neg. LLF: 115.29198109609592
Iteration: 16, Func. Count: 221, Neg. LLF: 115.29197838792948
Iteration: 17, Func. Count: 233, Neg. LLF: 115.29197851707518
Optimization terminated successfully (Exit mode 0)
Current function value: 115.29197838792948
Iterations: 17
Function evaluations: 233
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 124.68790785906299
Iteration: 2, Func. Count: 22, Neg. LLF: 139.00666850213864
Iteration: 3, Func. Count: 33, Neg. LLF: 118.83526072367114
Iteration: 4, Func. Count: 44, Neg. LLF: 117.5251749975481
Iteration: 5, Func. Count: 54, Neg. LLF: 261.6599608687093
Iteration: 6, Func. Count: 65, Neg. LLF: 130.39285056034637
Iteration: 7, Func. Count: 76, Neg. LLF: 117.78942215407842
Iteration: 8, Func. Count: 87, Neg. LLF: 117.43275256218196
Iteration: 9, Func. Count: 98, Neg. LLF: 117.50034418801309
Iteration: 10, Func. Count: 109, Neg. LLF: 117.25666128813513
Iteration: 11, Func. Count: 119, Neg. LLF: 117.25421542828012
Iteration: 12, Func. Count: 129, Neg. LLF: 117.25043294646956
Iteration: 13, Func. Count: 139, Neg. LLF: 117.25140576027015
Iteration: 14, Func. Count: 150, Neg. LLF: 117.23836455858537
Iteration: 15, Func. Count: 160, Neg. LLF: 117.23738179668801
Iteration: 16, Func. Count: 170, Neg. LLF: 117.23713687482234
Iteration: 17, Func. Count: 180, Neg. LLF: 117.23705999929065
Iteration: 18, Func. Count: 190, Neg. LLF: 117.23705383864603
Iteration: 19, Func. Count: 200, Neg. LLF: 117.23705329329846
Optimization terminated successfully (Exit mode 0)
Current function value: 117.23705329329846
Iterations: 19
Function evaluations: 200
Gradient evaluations: 19
Iteration: 1, Func. Count: 12, Neg. LLF: 123.35765391043
Iteration: 2, Func. Count: 24, Neg. LLF: 133.39208814060143
Iteration: 3, Func. Count: 36, Neg. LLF: 118.47496019572725
Iteration: 4, Func. Count: 47, Neg. LLF: 119.49248088676136
Iteration: 5, Func. Count: 59, Neg. LLF: 121.4390753950381
Iteration: 6, Func. Count: 71, Neg. LLF: 118.34748133842761
Iteration: 7, Func. Count: 83, Neg. LLF: 121.38083949301277
Iteration: 8, Func. Count: 95, Neg. LLF: 127.24978213631371
Iteration: 9, Func. Count: 107, Neg. LLF: 129.3406853497962
Iteration: 10, Func. Count: 119, Neg. LLF: 129.41609310103797
Iteration: 11, Func. Count: 131, Neg. LLF: 129.3743922237548
Iteration: 12, Func. Count: 143, Neg. LLF: 117.71854724354009
Iteration: 13, Func. Count: 155, Neg. LLF: 123.65890123695155
Iteration: 14, Func. Count: 167, Neg. LLF: 117.26895632568679
Iteration: 15, Func. Count: 179, Neg. LLF: 117.23833105102278
Iteration: 16, Func. Count: 190, Neg. LLF: 117.23738507167101
Iteration: 17, Func. Count: 201, Neg. LLF: 117.23712768714695
Iteration: 18, Func. Count: 212, Neg. LLF: 117.23709084133291
Iteration: 19, Func. Count: 223, Neg. LLF: 117.2370795929224
Iteration: 20, Func. Count: 234, Neg. LLF: 117.23706774040174
Iteration: 21, Func. Count: 245, Neg. LLF: 117.2370567071161
Iteration: 22, Func. Count: 256, Neg. LLF: 117.23705362074557
Iteration: 23, Func. Count: 266, Neg. LLF: 117.23705379875058
Optimization terminated successfully (Exit mode 0)
Current function value: 117.23705362074557
Iterations: 23
Function evaluations: 266
Gradient evaluations: 23
Iteration: 1, Func. Count: 13, Neg. LLF: 123.98768958066782
Iteration: 2, Func. Count: 26, Neg. LLF: 134.14110687169372
Iteration: 3, Func. Count: 39, Neg. LLF: 118.31404320003344
Iteration: 4, Func. Count: 51, Neg. LLF: 120.35916630513043
Iteration: 5, Func. Count: 64, Neg. LLF: 129.40151262355158
Iteration: 6, Func. Count: 78, Neg. LLF: 119.94888339179356
Iteration: 7, Func. Count: 91, Neg. LLF: 118.10457742484397
Iteration: 8, Func. Count: 104, Neg. LLF: 126.64789335105151
Iteration: 9, Func. Count: 117, Neg. LLF: 129.62213198112335
Iteration: 10, Func. Count: 130, Neg. LLF: 128.38320620193196
Iteration: 11, Func. Count: 143, Neg. LLF: 126.334383228708
Iteration: 12, Func. Count: 156, Neg. LLF: 125.26525655370614
Iteration: 13, Func. Count: 169, Neg. LLF: 117.31850096902912
Iteration: 14, Func. Count: 181, Neg. LLF: 117.30970186359403
Iteration: 15, Func. Count: 194, Neg. LLF: 134.68545718289892
Iteration: 16, Func. Count: 208, Neg. LLF: 117.27121897820886
Iteration: 17, Func. Count: 221, Neg. LLF: 117.25777774999435
Iteration: 18, Func. Count: 233, Neg. LLF: 117.25691890768739
Iteration: 19, Func. Count: 245, Neg. LLF: 117.25470624917197
Iteration: 20, Func. Count: 257, Neg. LLF: 117.25765286339795
Iteration: 21, Func. Count: 270, Neg. LLF: 117.25065921776725
Iteration: 22, Func. Count: 282, Neg. LLF: 117.24553486859502
Iteration: 23, Func. Count: 294, Neg. LLF: 117.23991069407381
Iteration: 24, Func. Count: 306, Neg. LLF: 117.238109005683
Iteration: 25, Func. Count: 318, Neg. LLF: 117.23709943317519
Iteration: 26, Func. Count: 330, Neg. LLF: 117.23704502741886
Iteration: 27, Func. Count: 342, Neg. LLF: 117.23704362875158
Iteration: 28, Func. Count: 353, Neg. LLF: 117.23704362881662
Optimization terminated successfully (Exit mode 0)
Current function value: 117.23704362875158
Iterations: 28
Function evaluations: 353
Gradient evaluations: 28
Iteration: 1, Func. Count: 14, Neg. LLF: 124.37384291283536
Iteration: 2, Func. Count: 28, Neg. LLF: 143.59762413508423
Iteration: 3, Func. Count: 42, Neg. LLF: 118.42801266028899
Iteration: 4, Func. Count: 55, Neg. LLF: 119.88228239292769
Iteration: 5, Func. Count: 69, Neg. LLF: 135.72352396779368
Iteration: 6, Func. Count: 83, Neg. LLF: 119.20957503832479
Iteration: 7, Func. Count: 97, Neg. LLF: 121.69626278385498
Iteration: 8, Func. Count: 111, Neg. LLF: 118.45584505418748
Iteration: 9, Func. Count: 125, Neg. LLF: 125.45479117863341
Iteration: 10, Func. Count: 139, Neg. LLF: 124.53870443767403
Iteration: 11, Func. Count: 153, Neg. LLF: 126.56413653361588
Iteration: 12, Func. Count: 167, Neg. LLF: 128.4602146031608
Iteration: 13, Func. Count: 181, Neg. LLF: 129.47683102774124
Iteration: 14, Func. Count: 195, Neg. LLF: 3628470.1676538563
Iteration: 15, Func. Count: 209, Neg. LLF: 123.30659513100446
Iteration: 16, Func. Count: 223, Neg. LLF: 122.80427069253477
Iteration: 17, Func. Count: 237, Neg. LLF: 121.83227470568612
Iteration: 18, Func. Count: 251, Neg. LLF: 177.9017418214102
Iteration: 19, Func. Count: 265, Neg. LLF: 116.02199371296548
Iteration: 20, Func. Count: 279, Neg. LLF: 114.93805851221872
Iteration: 21, Func. Count: 292, Neg. LLF: 115.5781172481545
Iteration: 22, Func. Count: 306, Neg. LLF: 115.6512040012778
Iteration: 23, Func. Count: 320, Neg. LLF: 114.98047153774374
Iteration: 24, Func. Count: 334, Neg. LLF: 114.87429284193084
Iteration: 25, Func. Count: 347, Neg. LLF: 114.87413505094861
Iteration: 26, Func. Count: 360, Neg. LLF: 114.87410934269026
Iteration: 27, Func. Count: 373, Neg. LLF: 114.87410691591653
Iteration: 28, Func. Count: 385, Neg. LLF: 114.87410691598262
Optimization terminated successfully (Exit mode 0)
Current function value: 114.87410691591653
Iterations: 29
Function evaluations: 385
Gradient evaluations: 28
Iteration: 1, Func. Count: 15, Neg. LLF: 124.28925487689082
Iteration: 2, Func. Count: 30, Neg. LLF: 140.59797604277014
Iteration: 3, Func. Count: 45, Neg. LLF: 118.41104136479011
Iteration: 4, Func. Count: 59, Neg. LLF: 120.91980114675393
Iteration: 5, Func. Count: 74, Neg. LLF: 148.59401862304424
Iteration: 6, Func. Count: 89, Neg. LLF: 119.93346404719675
Iteration: 7, Func. Count: 104, Neg. LLF: 122.87725001924483
Iteration: 8, Func. Count: 119, Neg. LLF: 124.40033491830921
Iteration: 9, Func. Count: 134, Neg. LLF: 123.99108822934943
Iteration: 10, Func. Count: 149, Neg. LLF: 123.83871625289913
Iteration: 11, Func. Count: 164, Neg. LLF: 124.5956813308368
Iteration: 12, Func. Count: 179, Neg. LLF: 128.4246277306103
Iteration: 13, Func. Count: 194, Neg. LLF: 124.57762815549594
Iteration: 14, Func. Count: 209, Neg. LLF: 154.81133401630703
Iteration: 15, Func. Count: 224, Neg. LLF: 117.86003169080035
Iteration: 16, Func. Count: 239, Neg. LLF: 115.52841413266746
Iteration: 17, Func. Count: 253, Neg. LLF: 129.7636581450204
Iteration: 18, Func. Count: 268, Neg. LLF: 136.2843319156215
Iteration: 19, Func. Count: 284, Neg. LLF: 115.44572146482578
Iteration: 20, Func. Count: 299, Neg. LLF: 114.90669655505911
Iteration: 21, Func. Count: 313, Neg. LLF: 114.87797115927746
Iteration: 22, Func. Count: 327, Neg. LLF: 114.87504741814983
Iteration: 23, Func. Count: 341, Neg. LLF: 114.87436487988285
Iteration: 24, Func. Count: 355, Neg. LLF: 114.87410801540383
Iteration: 25, Func. Count: 369, Neg. LLF: 114.87410694233489
Iteration: 26, Func. Count: 382, Neg. LLF: 114.87410695799826
Optimization terminated successfully (Exit mode 0)
Current function value: 114.87410694233489
Iterations: 26
Function evaluations: 382
Gradient evaluations: 26
Iteration: 1, Func. Count: 8, Neg. LLF: 127.62915744271994
Iteration: 2, Func. Count: 16, Neg. LLF: 175.2764998863706
Iteration: 3, Func. Count: 24, Neg. LLF: 122.2241608579776
Iteration: 4, Func. Count: 32, Neg. LLF: 121.78454657062024
Iteration: 5, Func. Count: 39, Neg. LLF: 121.5729805229123
Iteration: 6, Func. Count: 46, Neg. LLF: 121.55041200718517
Iteration: 7, Func. Count: 53, Neg. LLF: 121.53336154554142
Iteration: 8, Func. Count: 60, Neg. LLF: 121.62026439333007
Iteration: 9, Func. Count: 68, Neg. LLF: 125.36611320497566
Iteration: 10, Func. Count: 76, Neg. LLF: 121.4981882990345
Iteration: 11, Func. Count: 83, Neg. LLF: 121.46448640068861
Iteration: 12, Func. Count: 90, Neg. LLF: 121.44621505218014
Iteration: 13, Func. Count: 97, Neg. LLF: 123.03877133383945
Iteration: 14, Func. Count: 105, Neg. LLF: 122.88157796713168
Iteration: 15, Func. Count: 113, Neg. LLF: 122.6002360079099
Iteration: 16, Func. Count: 121, Neg. LLF: 121.44152047135064
Iteration: 17, Func. Count: 129, Neg. LLF: 121.99055704656092
Iteration: 18, Func. Count: 137, Neg. LLF: 121.45587114840913
Iteration: 19, Func. Count: 145, Neg. LLF: 121.36443004340448
Iteration: 20, Func. Count: 152, Neg. LLF: 121.33307650583005
Iteration: 21, Func. Count: 159, Neg. LLF: 121.28764374368727
Iteration: 22, Func. Count: 166, Neg. LLF: 121.12942714539089
Iteration: 23, Func. Count: 173, Neg. LLF: 121.03529983153211
Iteration: 24, Func. Count: 180, Neg. LLF: 120.9355894441606
Iteration: 25, Func. Count: 187, Neg. LLF: 120.8755855937289
Iteration: 26, Func. Count: 194, Neg. LLF: 120.8746722335857
Iteration: 27, Func. Count: 201, Neg. LLF: 120.87458786170642
Iteration: 28, Func. Count: 208, Neg. LLF: 120.87458692289455
Optimization terminated successfully (Exit mode 0)
Current function value: 120.87458692289455
Iterations: 28
Function evaluations: 208
Gradient evaluations: 28
Iteration: 1, Func. Count: 9, Neg. LLF: 126.94002440490696
Iteration: 2, Func. Count: 18, Neg. LLF: 150.8761078504538
Iteration: 3, Func. Count: 27, Neg. LLF: 122.81406500420542
Iteration: 4, Func. Count: 36, Neg. LLF: 125.16182103831837
Iteration: 5, Func. Count: 45, Neg. LLF: 121.56071200269356
Iteration: 6, Func. Count: 53, Neg. LLF: 121.54241555451252
Iteration: 7, Func. Count: 61, Neg. LLF: 121.49758874241796
Iteration: 8, Func. Count: 69, Neg. LLF: 123.25982371021394
Iteration: 9, Func. Count: 78, Neg. LLF: 123.41470435908718
Iteration: 10, Func. Count: 87, Neg. LLF: 121.59644212299833
Iteration: 11, Func. Count: 96, Neg. LLF: 122.36813498502482
Iteration: 12, Func. Count: 105, Neg. LLF: 121.43700566352658
Iteration: 13, Func. Count: 113, Neg. LLF: 121.43802967046618
Iteration: 14, Func. Count: 122, Neg. LLF: 121.43356496961532
Iteration: 15, Func. Count: 130, Neg. LLF: 121.43267784567084
Iteration: 16, Func. Count: 138, Neg. LLF: 121.43098815973073
Iteration: 17, Func. Count: 146, Neg. LLF: 121.4696152700129
Iteration: 18, Func. Count: 155, Neg. LLF: 121.39575414930107
Iteration: 19, Func. Count: 163, Neg. LLF: 121.28350644360206
Iteration: 20, Func. Count: 171, Neg. LLF: 121.24604527829388
Iteration: 21, Func. Count: 179, Neg. LLF: 121.19994122441207
Iteration: 22, Func. Count: 187, Neg. LLF: 121.06630221823494
Iteration: 23, Func. Count: 195, Neg. LLF: 120.97738914977968
Iteration: 24, Func. Count: 203, Neg. LLF: 120.89817850763917
Iteration: 25, Func. Count: 211, Neg. LLF: 120.87507222021696
Iteration: 26, Func. Count: 219, Neg. LLF: 120.87467888147228
Iteration: 27, Func. Count: 227, Neg. LLF: 120.87459050965334
Iteration: 28, Func. Count: 235, Neg. LLF: 120.87458652430429
Iteration: 29, Func. Count: 242, Neg. LLF: 120.87458650968036
Optimization terminated successfully (Exit mode 0)
Current function value: 120.87458652430429
Iterations: 29
Function evaluations: 242
Gradient evaluations: 29
Iteration: 1, Func. Count: 10, Neg. LLF: 127.4571891977911
Iteration: 2, Func. Count: 20, Neg. LLF: 153.44520152763621
Iteration: 3, Func. Count: 30, Neg. LLF: 122.69052646315673
Iteration: 4, Func. Count: 40, Neg. LLF: 129.2324318035492
Iteration: 5, Func. Count: 50, Neg. LLF: 121.56165663323371
Iteration: 6, Func. Count: 59, Neg. LLF: 121.53368472238306
Iteration: 7, Func. Count: 68, Neg. LLF: 121.54109503764167
Iteration: 8, Func. Count: 78, Neg. LLF: 123.30930369589875
Iteration: 9, Func. Count: 88, Neg. LLF: 121.72556436160342
Iteration: 10, Func. Count: 98, Neg. LLF: 121.49647719229932
Iteration: 11, Func. Count: 108, Neg. LLF: 122.84851888841408
Iteration: 12, Func. Count: 118, Neg. LLF: 123.16502560289021
Iteration: 13, Func. Count: 128, Neg. LLF: 121.49523009168612
Iteration: 14, Func. Count: 138, Neg. LLF: 121.60291457024519
Iteration: 15, Func. Count: 148, Neg. LLF: 121.48755657127775
Iteration: 16, Func. Count: 158, Neg. LLF: 121.66170031327114
Iteration: 17, Func. Count: 168, Neg. LLF: 121.5654564313313
Iteration: 18, Func. Count: 178, Neg. LLF: 121.42955208624353
Iteration: 19, Func. Count: 188, Neg. LLF: 121.32403979850352
Iteration: 20, Func. Count: 197, Neg. LLF: 121.23849308251724
Iteration: 21, Func. Count: 206, Neg. LLF: 121.0777372511499
Iteration: 22, Func. Count: 215, Neg. LLF: 120.92055993121824
Iteration: 23, Func. Count: 224, Neg. LLF: 120.89216374718318
Iteration: 24, Func. Count: 233, Neg. LLF: 120.88428016564978
Iteration: 25, Func. Count: 242, Neg. LLF: 120.87537127565734
Iteration: 26, Func. Count: 251, Neg. LLF: 120.87471957831852
Iteration: 27, Func. Count: 260, Neg. LLF: 120.8746133748795
Iteration: 28, Func. Count: 269, Neg. LLF: 120.87458859099945
Iteration: 29, Func. Count: 278, Neg. LLF: 120.8745863336117
Iteration: 30, Func. Count: 286, Neg. LLF: 120.87458635343513
Optimization terminated successfully (Exit mode 0)
Current function value: 120.8745863336117
Iterations: 30
Function evaluations: 286
Gradient evaluations: 30
Iteration: 1, Func. Count: 11, Neg. LLF: 127.65792565478694
Iteration: 2, Func. Count: 22, Neg. LLF: 153.09904143369238
Iteration: 3, Func. Count: 33, Neg. LLF: 122.71610362305466
Iteration: 4, Func. Count: 44, Neg. LLF: 191.46510591584868
Iteration: 5, Func. Count: 55, Neg. LLF: 121.56486607406158
Iteration: 6, Func. Count: 65, Neg. LLF: 121.54535792943064
Iteration: 7, Func. Count: 75, Neg. LLF: 121.50832282903465
Iteration: 8, Func. Count: 85, Neg. LLF: 121.4854784362401
Iteration: 9, Func. Count: 95, Neg. LLF: 121.44999650742918
Iteration: 10, Func. Count: 105, Neg. LLF: 123.41427258832168
Iteration: 11, Func. Count: 116, Neg. LLF: 122.93598165775452
Iteration: 12, Func. Count: 127, Neg. LLF: 122.89224919650772
Iteration: 13, Func. Count: 138, Neg. LLF: 121.47052308413348
Iteration: 14, Func. Count: 149, Neg. LLF: 121.41315554966181
Iteration: 15, Func. Count: 159, Neg. LLF: 121.53285842764356
Iteration: 16, Func. Count: 170, Neg. LLF: 121.43029779820223
Iteration: 17, Func. Count: 181, Neg. LLF: 121.4369347200949
Iteration: 18, Func. Count: 192, Neg. LLF: 121.17294349184432
Iteration: 19, Func. Count: 202, Neg. LLF: 121.94869008114811
Iteration: 20, Func. Count: 213, Neg. LLF: 121.05980272260588
Iteration: 21, Func. Count: 223, Neg. LLF: 120.96935949594864
Iteration: 22, Func. Count: 233, Neg. LLF: 120.8916965560375
Iteration: 23, Func. Count: 243, Neg. LLF: 120.88331745875507
Iteration: 24, Func. Count: 253, Neg. LLF: 120.87489210604683
Iteration: 25, Func. Count: 263, Neg. LLF: 120.87463070479326
Iteration: 26, Func. Count: 273, Neg. LLF: 120.87458844377542
Iteration: 27, Func. Count: 283, Neg. LLF: 120.8745862810997
Iteration: 28, Func. Count: 292, Neg. LLF: 120.87458635547083
Optimization terminated successfully (Exit mode 0)
Current function value: 120.8745862810997
Iterations: 28
Function evaluations: 292
Gradient evaluations: 28
Iteration: 1, Func. Count: 12, Neg. LLF: 127.48891904845638
Iteration: 2, Func. Count: 24, Neg. LLF: 150.23538910391187
Iteration: 3, Func. Count: 36, Neg. LLF: 122.6943815085522
Iteration: 4, Func. Count: 48, Neg. LLF: 186.86658516385057
Iteration: 5, Func. Count: 60, Neg. LLF: 121.57315133364504
Iteration: 6, Func. Count: 71, Neg. LLF: 121.55665248650284
Iteration: 7, Func. Count: 82, Neg. LLF: 121.5186668856469
Iteration: 8, Func. Count: 93, Neg. LLF: 121.50904231214676
Iteration: 9, Func. Count: 104, Neg. LLF: 121.47339330947543
Iteration: 10, Func. Count: 115, Neg. LLF: 121.4627040561283
Iteration: 11, Func. Count: 126, Neg. LLF: 121.45717487417811
Iteration: 12, Func. Count: 137, Neg. LLF: 121.44266705536728
Iteration: 13, Func. Count: 148, Neg. LLF: 121.43617589814166
Iteration: 14, Func. Count: 159, Neg. LLF: 123.1523415849584
Iteration: 15, Func. Count: 171, Neg. LLF: 122.80294895030275
Iteration: 16, Func. Count: 183, Neg. LLF: 122.87193105497597
Iteration: 17, Func. Count: 195, Neg. LLF: 123.876199190074
Iteration: 18, Func. Count: 207, Neg. LLF: 122.53930975283903
Iteration: 19, Func. Count: 219, Neg. LLF: 121.92276220703347
Iteration: 20, Func. Count: 231, Neg. LLF: 121.27471904746349
Iteration: 21, Func. Count: 242, Neg. LLF: 121.06816790720383
Iteration: 22, Func. Count: 253, Neg. LLF: 120.94690296031038
Iteration: 23, Func. Count: 264, Neg. LLF: 120.90644049895954
Iteration: 24, Func. Count: 275, Neg. LLF: 120.88053793137159
Iteration: 25, Func. Count: 286, Neg. LLF: 120.87605660608676
Iteration: 26, Func. Count: 297, Neg. LLF: 120.87490464168847
Iteration: 27, Func. Count: 308, Neg. LLF: 120.87465288167537
Iteration: 28, Func. Count: 319, Neg. LLF: 120.87458941483402
Iteration: 29, Func. Count: 330, Neg. LLF: 120.87458632959533
Iteration: 30, Func. Count: 340, Neg. LLF: 120.87458656198642
Optimization terminated successfully (Exit mode 0)
Current function value: 120.87458632959533
Iterations: 30
Function evaluations: 340
Gradient evaluations: 30
Iteration: 1, Func. Count: 9, Neg. LLF: 126.42946080569753
Iteration: 2, Func. Count: 18, Neg. LLF: 142.47607615029563
Iteration: 3, Func. Count: 27, Neg. LLF: 119.18101721479296
Iteration: 4, Func. Count: 35, Neg. LLF: 131.03079429407774
Iteration: 5, Func. Count: 45, Neg. LLF: 119.04132545354784
Iteration: 6, Func. Count: 53, Neg. LLF: 119.02254755672405
Iteration: 7, Func. Count: 61, Neg. LLF: 119.01853143791088
Iteration: 8, Func. Count: 69, Neg. LLF: 119.01756766150889
Iteration: 9, Func. Count: 77, Neg. LLF: 119.01745430439024
Iteration: 10, Func. Count: 85, Neg. LLF: 119.0174148287577
Iteration: 11, Func. Count: 93, Neg. LLF: 119.01740920723233
Iteration: 12, Func. Count: 101, Neg. LLF: 119.01740863771873
Optimization terminated successfully (Exit mode 0)
Current function value: 119.01740863771873
Iterations: 12
Function evaluations: 101
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 124.34117504442368
Iteration: 2, Func. Count: 20, Neg. LLF: 130.8953874438367
Iteration: 3, Func. Count: 30, Neg. LLF: 119.80173786729065
Iteration: 4, Func. Count: 39, Neg. LLF: 155.25010677407934
Iteration: 5, Func. Count: 50, Neg. LLF: 120.03441640798113
Iteration: 6, Func. Count: 60, Neg. LLF: 119.05696456354268
Iteration: 7, Func. Count: 69, Neg. LLF: 119.02377296542542
Iteration: 8, Func. Count: 78, Neg. LLF: 119.01796994601204
Iteration: 9, Func. Count: 87, Neg. LLF: 119.01743735033719
Iteration: 10, Func. Count: 96, Neg. LLF: 119.01742088775053
Iteration: 11, Func. Count: 105, Neg. LLF: 119.01741103776847
Iteration: 12, Func. Count: 114, Neg. LLF: 119.01740893568382
Iteration: 13, Func. Count: 122, Neg. LLF: 119.01740908021316
Optimization terminated successfully (Exit mode 0)
Current function value: 119.01740893568382
Iterations: 13
Function evaluations: 122
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 125.1796244687007
Iteration: 2, Func. Count: 22, Neg. LLF: 130.81833435155013
Iteration: 3, Func. Count: 33, Neg. LLF: 119.89300166987901
Iteration: 4, Func. Count: 43, Neg. LLF: 185.98701050195328
Iteration: 5, Func. Count: 55, Neg. LLF: 121.65034346220747
Iteration: 6, Func. Count: 66, Neg. LLF: 119.06364774644105
Iteration: 7, Func. Count: 76, Neg. LLF: 119.3118160074437
Iteration: 8, Func. Count: 87, Neg. LLF: 119.01847371223572
Iteration: 9, Func. Count: 97, Neg. LLF: 119.01786843527975
Iteration: 10, Func. Count: 107, Neg. LLF: 119.01752506925335
Iteration: 11, Func. Count: 117, Neg. LLF: 119.017446096393
Iteration: 12, Func. Count: 127, Neg. LLF: 119.01741158820589
Iteration: 13, Func. Count: 137, Neg. LLF: 119.0174087536516
Iteration: 14, Func. Count: 146, Neg. LLF: 119.01740876540013
Optimization terminated successfully (Exit mode 0)
Current function value: 119.0174087536516
Iterations: 14
Function evaluations: 146
Gradient evaluations: 14
Iteration: 1, Func. Count: 12, Neg. LLF: 125.78375478392454
Iteration: 2, Func. Count: 24, Neg. LLF: 133.4012363273187
Iteration: 3, Func. Count: 36, Neg. LLF: 120.11288246020489
Iteration: 4, Func. Count: 48, Neg. LLF: 224.45679159868598
Iteration: 5, Func. Count: 60, Neg. LLF: 117.7664695275193
Iteration: 6, Func. Count: 71, Neg. LLF: 120.02805344424944
Iteration: 7, Func. Count: 83, Neg. LLF: 117.71503863431715
Iteration: 8, Func. Count: 95, Neg. LLF: 115.62391405980122
Iteration: 9, Func. Count: 106, Neg. LLF: 120.90664562686848
Iteration: 10, Func. Count: 118, Neg. LLF: 116.28343056959665
Iteration: 11, Func. Count: 130, Neg. LLF: 115.32295596734751
Iteration: 12, Func. Count: 141, Neg. LLF: 115.30335037195147
Iteration: 13, Func. Count: 152, Neg. LLF: 115.29902545320695
Iteration: 14, Func. Count: 163, Neg. LLF: 115.29853743327517
Iteration: 15, Func. Count: 174, Neg. LLF: 115.29852742728553
Iteration: 16, Func. Count: 185, Neg. LLF: 115.29852497209316
Iteration: 17, Func. Count: 195, Neg. LLF: 115.29852497211446
Optimization terminated successfully (Exit mode 0)
Current function value: 115.29852497209316
Iterations: 17
Function evaluations: 195
Gradient evaluations: 17
Iteration: 1, Func. Count: 13, Neg. LLF: 125.56269809733801
Iteration: 2, Func. Count: 26, Neg. LLF: 132.5724476287392
Iteration: 3, Func. Count: 39, Neg. LLF: 118.14359724488332
Iteration: 4, Func. Count: 51, Neg. LLF: 130.18424208262695
Iteration: 5, Func. Count: 64, Neg. LLF: 117.71719787663291
Iteration: 6, Func. Count: 77, Neg. LLF: 120.12043108339732
Iteration: 7, Func. Count: 90, Neg. LLF: 119.2058553650395
Iteration: 8, Func. Count: 103, Neg. LLF: 115.59324425204461
Iteration: 9, Func. Count: 115, Neg. LLF: 115.36572246190835
Iteration: 10, Func. Count: 127, Neg. LLF: 115.31796685569078
Iteration: 11, Func. Count: 139, Neg. LLF: 115.47201898565811
Iteration: 12, Func. Count: 152, Neg. LLF: 115.29987407829982
Iteration: 13, Func. Count: 164, Neg. LLF: 115.29884669455222
Iteration: 14, Func. Count: 176, Neg. LLF: 115.29854362348479
Iteration: 15, Func. Count: 188, Neg. LLF: 115.29852511986937
Iteration: 16, Func. Count: 199, Neg. LLF: 115.29852526799534
Optimization terminated successfully (Exit mode 0)
Current function value: 115.29852511986937
Iterations: 16
Function evaluations: 199
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 126.5730180375849
Iteration: 2, Func. Count: 20, Neg. LLF: 143.21324295180733
Iteration: 3, Func. Count: 30, Neg. LLF: 119.1902853637791
Iteration: 4, Func. Count: 39, Neg. LLF: 138.99927224611397
Iteration: 5, Func. Count: 50, Neg. LLF: 119.03903290881729
Iteration: 6, Func. Count: 59, Neg. LLF: 119.01841229110896
Iteration: 7, Func. Count: 68, Neg. LLF: 118.99245528897941
Iteration: 8, Func. Count: 77, Neg. LLF: 118.98277762488978
Iteration: 9, Func. Count: 86, Neg. LLF: 118.9730055198973
Iteration: 10, Func. Count: 95, Neg. LLF: 118.96943813407042
Iteration: 11, Func. Count: 104, Neg. LLF: 118.9694206852962
Iteration: 12, Func. Count: 113, Neg. LLF: 118.96941941161462
Iteration: 13, Func. Count: 122, Neg. LLF: 118.96941729023943
Iteration: 14, Func. Count: 130, Neg. LLF: 118.96941714038257
Optimization terminated successfully (Exit mode 0)
Current function value: 118.96941729023943
Iterations: 14
Function evaluations: 130
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 124.31871879950826
Iteration: 2, Func. Count: 22, Neg. LLF: 149.1774715032462
Iteration: 3, Func. Count: 33, Neg. LLF: 119.65142548535643
Iteration: 4, Func. Count: 43, Neg. LLF: 23168.037637357407
Iteration: 5, Func. Count: 55, Neg. LLF: 119.06052330488241
Iteration: 6, Func. Count: 65, Neg. LLF: 119.00827164475047
Iteration: 7, Func. Count: 75, Neg. LLF: 118.98264187475155
Iteration: 8, Func. Count: 85, Neg. LLF: 118.97540692874371
Iteration: 9, Func. Count: 95, Neg. LLF: 118.9711192143517
Iteration: 10, Func. Count: 105, Neg. LLF: 118.97068316901299
Iteration: 11, Func. Count: 115, Neg. LLF: 118.96951020128303
Iteration: 12, Func. Count: 125, Neg. LLF: 118.96942389633723
Iteration: 13, Func. Count: 135, Neg. LLF: 118.96941696199428
Iteration: 14, Func. Count: 144, Neg. LLF: 118.96941708729264
Optimization terminated successfully (Exit mode 0)
Current function value: 118.96941696199428
Iterations: 14
Function evaluations: 144
Gradient evaluations: 14
Iteration: 1, Func. Count: 12, Neg. LLF: 125.30456872717875
Iteration: 2, Func. Count: 24, Neg. LLF: 150.63773881608162
Iteration: 3, Func. Count: 36, Neg. LLF: 119.75782843614121
Iteration: 4, Func. Count: 47, Neg. LLF: 2410.3375433649726
Iteration: 5, Func. Count: 60, Neg. LLF: 119.59155314809793
Iteration: 6, Func. Count: 72, Neg. LLF: 119.07456507944589
Iteration: 7, Func. Count: 84, Neg. LLF: 118.99490660781748
Iteration: 8, Func. Count: 95, Neg. LLF: 118.99453239778664
Iteration: 9, Func. Count: 107, Neg. LLF: 118.97280226181283
Iteration: 10, Func. Count: 118, Neg. LLF: 118.97052658569265
Iteration: 11, Func. Count: 129, Neg. LLF: 118.97024662592216
Iteration: 12, Func. Count: 140, Neg. LLF: 118.9696927188652
Iteration: 13, Func. Count: 151, Neg. LLF: 118.9694638064025
Iteration: 14, Func. Count: 162, Neg. LLF: 118.96941882978726
Iteration: 15, Func. Count: 173, Neg. LLF: 118.96941705142842
Iteration: 16, Func. Count: 183, Neg. LLF: 118.96941709041845
Optimization terminated successfully (Exit mode 0)
Current function value: 118.96941705142842
Iterations: 16
Function evaluations: 183
Gradient evaluations: 16
Iteration: 1, Func. Count: 13, Neg. LLF: 125.60050831269614
Iteration: 2, Func. Count: 26, Neg. LLF: 155.90626923398796
Iteration: 3, Func. Count: 39, Neg. LLF: 119.92676200130494
Iteration: 4, Func. Count: 51, Neg. LLF: 185.1382549166051
Iteration: 5, Func. Count: 64, Neg. LLF: 124.10928789630611
Iteration: 6, Func. Count: 77, Neg. LLF: 118.19780612758825
Iteration: 7, Func. Count: 89, Neg. LLF: 134.16813236282698
Iteration: 8, Func. Count: 102, Neg. LLF: 129.34441950197012
Iteration: 9, Func. Count: 115, Neg. LLF: 127.61591934622675
Iteration: 10, Func. Count: 128, Neg. LLF: 121.8059608394244
Iteration: 11, Func. Count: 141, Neg. LLF: 138.83452167835375
Iteration: 12, Func. Count: 154, Neg. LLF: 353.7977268436136
Iteration: 13, Func. Count: 168, Neg. LLF: 127.43099204401726
Iteration: 14, Func. Count: 181, Neg. LLF: 119.95619862630058
Iteration: 15, Func. Count: 194, Neg. LLF: 120.51656389268234
Iteration: 16, Func. Count: 207, Neg. LLF: 118.69109584754327
Iteration: 17, Func. Count: 220, Neg. LLF: 115.3316338914804
Iteration: 18, Func. Count: 232, Neg. LLF: 115.3025885164471
Iteration: 19, Func. Count: 244, Neg. LLF: 115.29957507694246
Iteration: 20, Func. Count: 257, Neg. LLF: 115.29322466375926
Iteration: 21, Func. Count: 269, Neg. LLF: 115.29199020632547
Iteration: 22, Func. Count: 281, Neg. LLF: 115.29197905615116
Iteration: 23, Func. Count: 293, Neg. LLF: 115.29197835181057
Optimization terminated successfully (Exit mode 0)
Current function value: 115.29197835181057
Iterations: 24
Function evaluations: 293
Gradient evaluations: 23
Iteration: 1, Func. Count: 14, Neg. LLF: 125.50076719622892
Iteration: 2, Func. Count: 28, Neg. LLF: 154.45048306877314
Iteration: 3, Func. Count: 42, Neg. LLF: 119.88666088178034
Iteration: 4, Func. Count: 55, Neg. LLF: 179.16958465373747
Iteration: 5, Func. Count: 69, Neg. LLF: 122.47952444065338
Iteration: 6, Func. Count: 83, Neg. LLF: 120.20299824521138
Iteration: 7, Func. Count: 97, Neg. LLF: 116.30037222430585
Iteration: 8, Func. Count: 110, Neg. LLF: 119.33653890250294
Iteration: 9, Func. Count: 124, Neg. LLF: 116.82890506967692
Iteration: 10, Func. Count: 138, Neg. LLF: 118.60563893472913
Iteration: 11, Func. Count: 152, Neg. LLF: 115.56284871340347
Iteration: 12, Func. Count: 166, Neg. LLF: 115.3477580944076
Iteration: 13, Func. Count: 180, Neg. LLF: 115.29335184157657
Iteration: 14, Func. Count: 193, Neg. LLF: 115.29202969305737
Iteration: 15, Func. Count: 206, Neg. LLF: 115.29199612060613
Iteration: 16, Func. Count: 219, Neg. LLF: 115.29198319330573
Iteration: 17, Func. Count: 232, Neg. LLF: 115.29197873851737
Iteration: 18, Func. Count: 244, Neg. LLF: 115.29197886776522
Optimization terminated successfully (Exit mode 0)
Current function value: 115.29197873851737
Iterations: 18
Function evaluations: 244
Gradient evaluations: 18
Iteration: 1, Func. Count: 11, Neg. LLF: 128.0062396162355
Iteration: 2, Func. Count: 22, Neg. LLF: 158.97944004134953
Iteration: 3, Func. Count: 33, Neg. LLF: 119.37007975869146
Iteration: 4, Func. Count: 43, Neg. LLF: 120.91908730991545
Iteration: 5, Func. Count: 56, Neg. LLF: 119.58270951909665
Iteration: 6, Func. Count: 67, Neg. LLF: 119.0951811822254
Iteration: 7, Func. Count: 78, Neg. LLF: 118.9800068878421
Iteration: 8, Func. Count: 88, Neg. LLF: 118.96907878014638
Iteration: 9, Func. Count: 98, Neg. LLF: 118.95867428260479
Iteration: 10, Func. Count: 108, Neg. LLF: 118.944117274626
Iteration: 11, Func. Count: 118, Neg. LLF: 118.94240626884297
Iteration: 12, Func. Count: 128, Neg. LLF: 118.94220350517352
Iteration: 13, Func. Count: 138, Neg. LLF: 118.94209620899132
Iteration: 14, Func. Count: 148, Neg. LLF: 118.94195122749001
Iteration: 15, Func. Count: 158, Neg. LLF: 118.94192120171557
Iteration: 16, Func. Count: 168, Neg. LLF: 118.94191766618475
Iteration: 17, Func. Count: 177, Neg. LLF: 118.94191763511452
Optimization terminated successfully (Exit mode 0)
Current function value: 118.94191766618475
Iterations: 17
Function evaluations: 177
Gradient evaluations: 17
Iteration: 1, Func. Count: 12, Neg. LLF: 125.65235258446353
Iteration: 2, Func. Count: 24, Neg. LLF: 163.44901373647642
Iteration: 3, Func. Count: 36, Neg. LLF: 119.7131613043075
Iteration: 4, Func. Count: 47, Neg. LLF: 85450.64027831919
Iteration: 5, Func. Count: 60, Neg. LLF: 122.422586094123
Iteration: 6, Func. Count: 72, Neg. LLF: 121.02280133909888
Iteration: 7, Func. Count: 84, Neg. LLF: 119.00435326965241
Iteration: 8, Func. Count: 95, Neg. LLF: 118.96591639365226
Iteration: 9, Func. Count: 106, Neg. LLF: 118.95353694337373
Iteration: 10, Func. Count: 117, Neg. LLF: 118.94801115331362
Iteration: 11, Func. Count: 128, Neg. LLF: 118.94285662224787
Iteration: 12, Func. Count: 139, Neg. LLF: 118.94227197976561
Iteration: 13, Func. Count: 150, Neg. LLF: 118.9420667024078
Iteration: 14, Func. Count: 161, Neg. LLF: 118.94202404421688
Iteration: 15, Func. Count: 172, Neg. LLF: 118.94193362157131
Iteration: 16, Func. Count: 183, Neg. LLF: 118.94191904445195
Iteration: 17, Func. Count: 194, Neg. LLF: 118.94191761360118
Iteration: 18, Func. Count: 204, Neg. LLF: 118.9419177522285
Optimization terminated successfully (Exit mode 0)
Current function value: 118.94191761360118
Iterations: 18
Function evaluations: 204
Gradient evaluations: 18
Iteration: 1, Func. Count: 13, Neg. LLF: 126.30507303989191
Iteration: 2, Func. Count: 26, Neg. LLF: 166.9139899805413
Iteration: 3, Func. Count: 39, Neg. LLF: 119.75653369011583
Iteration: 4, Func. Count: 51, Neg. LLF: 97098.03523604701
Iteration: 5, Func. Count: 65, Neg. LLF: 121.0177606230707
Iteration: 6, Func. Count: 78, Neg. LLF: 119.91794849917852
Iteration: 7, Func. Count: 91, Neg. LLF: 119.04273803278171
Iteration: 8, Func. Count: 103, Neg. LLF: 119.50374634452503
Iteration: 9, Func. Count: 116, Neg. LLF: 118.98777141476985
Iteration: 10, Func. Count: 128, Neg. LLF: 118.96039454317496
Iteration: 11, Func. Count: 140, Neg. LLF: 118.95328302481126
Iteration: 12, Func. Count: 152, Neg. LLF: 118.94324327235633
Iteration: 13, Func. Count: 164, Neg. LLF: 118.9422638096603
Iteration: 14, Func. Count: 176, Neg. LLF: 118.94209520892854
Iteration: 15, Func. Count: 188, Neg. LLF: 118.94203674986352
Iteration: 16, Func. Count: 200, Neg. LLF: 118.94195094716362
Iteration: 17, Func. Count: 212, Neg. LLF: 118.94192288859747
Iteration: 18, Func. Count: 224, Neg. LLF: 118.94191778824775
Iteration: 19, Func. Count: 235, Neg. LLF: 118.94191782224495
Optimization terminated successfully (Exit mode 0)
Current function value: 118.94191778824775
Iterations: 19
Function evaluations: 235
Gradient evaluations: 19
Iteration: 1, Func. Count: 14, Neg. LLF: 126.70706582010983
Iteration: 2, Func. Count: 28, Neg. LLF: 173.75432993202415
Iteration: 3, Func. Count: 42, Neg. LLF: 119.9270948780313
Iteration: 4, Func. Count: 55, Neg. LLF: 266.75733325530666
Iteration: 5, Func. Count: 69, Neg. LLF: 128.26510486236677
Iteration: 6, Func. Count: 83, Neg. LLF: 118.00901965114915
Iteration: 7, Func. Count: 96, Neg. LLF: 128.63398484404908
Iteration: 8, Func. Count: 110, Neg. LLF: 124.90331623152599
Iteration: 9, Func. Count: 124, Neg. LLF: 123.86470063061041
Iteration: 10, Func. Count: 138, Neg. LLF: 123.35163820583224
Iteration: 11, Func. Count: 152, Neg. LLF: 118.62255047738466
Iteration: 12, Func. Count: 166, Neg. LLF: 121.9820275599788
Iteration: 13, Func. Count: 180, Neg. LLF: 120.72266349977335
Iteration: 14, Func. Count: 194, Neg. LLF: 128.59030302910946
Iteration: 15, Func. Count: 208, Neg. LLF: 115.32611608343633
Iteration: 16, Func. Count: 221, Neg. LLF: 115.29876699834247
Iteration: 17, Func. Count: 234, Neg. LLF: 115.29441771832225
Iteration: 18, Func. Count: 247, Neg. LLF: 115.29275959955046
Iteration: 19, Func. Count: 260, Neg. LLF: 115.29198359047614
Iteration: 20, Func. Count: 273, Neg. LLF: 115.29197848131314
Iteration: 21, Func. Count: 285, Neg. LLF: 115.29197848129589
Optimization terminated successfully (Exit mode 0)
Current function value: 115.29197848131314
Iterations: 21
Function evaluations: 285
Gradient evaluations: 21
Iteration: 1, Func. Count: 15, Neg. LLF: 126.53849288886026
Iteration: 2, Func. Count: 30, Neg. LLF: 171.90863432224302
Iteration: 3, Func. Count: 45, Neg. LLF: 119.88952978851256
Iteration: 4, Func. Count: 59, Neg. LLF: 216.88255394440756
Iteration: 5, Func. Count: 74, Neg. LLF: 127.31807968208297
Iteration: 6, Func. Count: 89, Neg. LLF: 118.41784387524747
Iteration: 7, Func. Count: 103, Neg. LLF: 195.95855096581133
Iteration: 8, Func. Count: 118, Neg. LLF: 148.26271819938697
Iteration: 9, Func. Count: 133, Neg. LLF: 147.64812868512243
Iteration: 10, Func. Count: 148, Neg. LLF: 145.6807918160698
Iteration: 11, Func. Count: 163, Neg. LLF: 127.20719240981359
Iteration: 12, Func. Count: 178, Neg. LLF: 124.68919862315458
Iteration: 13, Func. Count: 193, Neg. LLF: 133.54343914813737
Iteration: 14, Func. Count: 208, Neg. LLF: 123.16222017659629
Iteration: 15, Func. Count: 223, Neg. LLF: 126.59433551393239
Iteration: 16, Func. Count: 238, Neg. LLF: 125.54745666756064
Iteration: 17, Func. Count: 253, Neg. LLF: 116.6105850521371
Iteration: 18, Func. Count: 268, Neg. LLF: 115.44139067273467
Iteration: 19, Func. Count: 283, Neg. LLF: 116.07800273010119
Iteration: 20, Func. Count: 298, Neg. LLF: 115.36521965822686
Iteration: 21, Func. Count: 312, Neg. LLF: 115.30148055126539
Iteration: 22, Func. Count: 326, Neg. LLF: 115.29335147878314
Iteration: 23, Func. Count: 340, Neg. LLF: 115.29205623529408
Iteration: 24, Func. Count: 354, Neg. LLF: 115.29197971516938
Iteration: 25, Func. Count: 368, Neg. LLF: 115.29197836137168
Iteration: 26, Func. Count: 381, Neg. LLF: 115.29197849045283
Optimization terminated successfully (Exit mode 0)
Current function value: 115.29197836137168
Iterations: 26
Function evaluations: 381
Gradient evaluations: 26
Iteration: 1, Func. Count: 12, Neg. LLF: 131.4365292707246
Iteration: 2, Func. Count: 25, Neg. LLF: 141.48285568410665
Iteration: 3, Func. Count: 37, Neg. LLF: 121.21969532846641
Iteration: 4, Func. Count: 49, Neg. LLF: 117.53641006082415
Iteration: 5, Func. Count: 60, Neg. LLF: 148.18244306160275
Iteration: 6, Func. Count: 72, Neg. LLF: 118.14830119750977
Iteration: 7, Func. Count: 84, Neg. LLF: 117.90140231548844
Iteration: 8, Func. Count: 96, Neg. LLF: 117.27311818194482
Iteration: 9, Func. Count: 107, Neg. LLF: 117.66992644977661
Iteration: 10, Func. Count: 119, Neg. LLF: 117.26241262586227
Iteration: 11, Func. Count: 130, Neg. LLF: 117.25880133570394
Iteration: 12, Func. Count: 141, Neg. LLF: 117.25153520700144
Iteration: 13, Func. Count: 152, Neg. LLF: 117.2452898412426
Iteration: 14, Func. Count: 163, Neg. LLF: 117.24054516795854
Iteration: 15, Func. Count: 174, Neg. LLF: 117.23868736280063
Iteration: 16, Func. Count: 185, Neg. LLF: 117.23765973880568
Iteration: 17, Func. Count: 196, Neg. LLF: 117.2371041197247
Iteration: 18, Func. Count: 207, Neg. LLF: 117.23705498726909
Iteration: 19, Func. Count: 218, Neg. LLF: 117.23705332412452
Iteration: 20, Func. Count: 228, Neg. LLF: 117.23705332412464
Optimization terminated successfully (Exit mode 0)
Current function value: 117.23705332412452
Iterations: 20
Function evaluations: 228
Gradient evaluations: 20
Iteration: 1, Func. Count: 13, Neg. LLF: 127.96050127747274
Iteration: 2, Func. Count: 26, Neg. LLF: 154.58275687154168
Iteration: 3, Func. Count: 39, Neg. LLF: 118.47597364981183
Iteration: 4, Func. Count: 51, Neg. LLF: 119.10086574620894
Iteration: 5, Func. Count: 64, Neg. LLF: 119.29148981019694
Iteration: 6, Func. Count: 77, Neg. LLF: 124.59756208702981
Iteration: 7, Func. Count: 90, Neg. LLF: 121.07706814143107
Iteration: 8, Func. Count: 103, Neg. LLF: 125.64316813919191
Iteration: 9, Func. Count: 116, Neg. LLF: 125.84426969217478
Iteration: 10, Func. Count: 129, Neg. LLF: 126.36653518706328
Iteration: 11, Func. Count: 142, Neg. LLF: 125.01673596864774
Iteration: 12, Func. Count: 155, Neg. LLF: 124.19901675566699
Iteration: 13, Func. Count: 168, Neg. LLF: 123.24753674579209
Iteration: 14, Func. Count: 181, Neg. LLF: 123.17227497192289
Iteration: 15, Func. Count: 194, Neg. LLF: 117.72067324310741
Iteration: 16, Func. Count: 207, Neg. LLF: 117.28376636046843
Iteration: 17, Func. Count: 220, Neg. LLF: 117.27644532027765
Iteration: 18, Func. Count: 232, Neg. LLF: 117.27334562205719
Iteration: 19, Func. Count: 244, Neg. LLF: 117.26349500750118
Iteration: 20, Func. Count: 256, Neg. LLF: 117.24650887814268
Iteration: 21, Func. Count: 268, Neg. LLF: 117.2169010458605
Iteration: 22, Func. Count: 280, Neg. LLF: 117.1573509471881
Iteration: 23, Func. Count: 292, Neg. LLF: 117.11388822685342
Iteration: 24, Func. Count: 304, Neg. LLF: 117.02922219950653
Iteration: 25, Func. Count: 316, Neg. LLF: 116.97539074427725
Iteration: 26, Func. Count: 328, Neg. LLF: 116.92204481016944
Iteration: 27, Func. Count: 340, Neg. LLF: 116.9111835082583
Iteration: 28, Func. Count: 353, Neg. LLF: 116.86189188354547
Iteration: 29, Func. Count: 365, Neg. LLF: 116.85808451144221
Iteration: 30, Func. Count: 377, Neg. LLF: 116.85717961790326
Iteration: 31, Func. Count: 389, Neg. LLF: 116.85713369844035
Iteration: 32, Func. Count: 401, Neg. LLF: 116.8571316205148
Iteration: 33, Func. Count: 412, Neg. LLF: 116.85713162700483
Optimization terminated successfully (Exit mode 0)
Current function value: 116.8571316205148
Iterations: 33
Function evaluations: 412
Gradient evaluations: 33
Iteration: 1, Func. Count: 14, Neg. LLF: 128.80920237580256
Iteration: 2, Func. Count: 28, Neg. LLF: 156.01261751106202
Iteration: 3, Func. Count: 42, Neg. LLF: 118.46643202764272
Iteration: 4, Func. Count: 55, Neg. LLF: 119.22749493167888
Iteration: 5, Func. Count: 69, Neg. LLF: 133.1533220574888
Iteration: 6, Func. Count: 84, Neg. LLF: 119.0770494079027
Iteration: 7, Func. Count: 98, Neg. LLF: 119.24054938871545
Iteration: 8, Func. Count: 112, Neg. LLF: 117.52934060301229
Iteration: 9, Func. Count: 125, Neg. LLF: 117.46647819613553
Iteration: 10, Func. Count: 139, Neg. LLF: 117.30504036144579
Iteration: 11, Func. Count: 152, Neg. LLF: 117.44453680353895
Iteration: 12, Func. Count: 166, Neg. LLF: 117.37978365318969
Iteration: 13, Func. Count: 180, Neg. LLF: 117.26848302779673
Iteration: 14, Func. Count: 194, Neg. LLF: 117.241726144979
Iteration: 15, Func. Count: 207, Neg. LLF: 117.24070367676111
Iteration: 16, Func. Count: 220, Neg. LLF: 117.23944416697469
Iteration: 17, Func. Count: 233, Neg. LLF: 117.23778409688391
Iteration: 18, Func. Count: 246, Neg. LLF: 117.23719370945966
Iteration: 19, Func. Count: 259, Neg. LLF: 117.23704542608188
Iteration: 20, Func. Count: 272, Neg. LLF: 117.2370436509152
Iteration: 21, Func. Count: 284, Neg. LLF: 117.2370436509029
Optimization terminated successfully (Exit mode 0)
Current function value: 117.2370436509152
Iterations: 21
Function evaluations: 284
Gradient evaluations: 21
Iteration: 1, Func. Count: 15, Neg. LLF: 129.18567314333865
Iteration: 2, Func. Count: 30, Neg. LLF: 168.4034751316156
Iteration: 3, Func. Count: 45, Neg. LLF: 118.43307158646603
Iteration: 4, Func. Count: 59, Neg. LLF: 118.64157994184146
Iteration: 5, Func. Count: 74, Neg. LLF: 133.73607328184337
Iteration: 6, Func. Count: 91, Neg. LLF: 118.59354556737425
Iteration: 7, Func. Count: 106, Neg. LLF: 121.28933467435672
Iteration: 8, Func. Count: 121, Neg. LLF: 122.57545482894263
Iteration: 9, Func. Count: 136, Neg. LLF: 123.11497673856425
Iteration: 10, Func. Count: 151, Neg. LLF: 123.13251190170101
Iteration: 11, Func. Count: 166, Neg. LLF: 123.56157709608303
Iteration: 12, Func. Count: 181, Neg. LLF: 125.87485753543234
Iteration: 13, Func. Count: 196, Neg. LLF: 122.31912036943545
Iteration: 14, Func. Count: 211, Neg. LLF: 117.58825731032202
Iteration: 15, Func. Count: 226, Neg. LLF: 126.093532575729
Iteration: 16, Func. Count: 241, Neg. LLF: 121.2968599277213
Iteration: 17, Func. Count: 256, Neg. LLF: 116.23382616073378
Iteration: 18, Func. Count: 270, Neg. LLF: 115.6076743302083
Iteration: 19, Func. Count: 284, Neg. LLF: 115.33032822166686
Iteration: 20, Func. Count: 298, Neg. LLF: 114.9704880335416
Iteration: 21, Func. Count: 312, Neg. LLF: 116.60994323183009
Iteration: 22, Func. Count: 327, Neg. LLF: 114.89717238324248
Iteration: 23, Func. Count: 341, Neg. LLF: 114.95340013688029
Iteration: 24, Func. Count: 356, Neg. LLF: 114.87465359284784
Iteration: 25, Func. Count: 370, Neg. LLF: 114.8741945184492
Iteration: 26, Func. Count: 384, Neg. LLF: 114.87410762622851
Iteration: 27, Func. Count: 398, Neg. LLF: 114.87410674610102
Optimization terminated successfully (Exit mode 0)
Current function value: 114.87410674610102
Iterations: 27
Function evaluations: 398
Gradient evaluations: 27
Iteration: 1, Func. Count: 16, Neg. LLF: 129.115259936963
Iteration: 2, Func. Count: 32, Neg. LLF: 165.10741117786824
Iteration: 3, Func. Count: 48, Neg. LLF: 118.39036839895465
Iteration: 4, Func. Count: 63, Neg. LLF: 118.87011698666991
Iteration: 5, Func. Count: 79, Neg. LLF: 142.50404907033595
Iteration: 6, Func. Count: 96, Neg. LLF: 118.59387680471607
Iteration: 7, Func. Count: 112, Neg. LLF: 119.73570050113223
Iteration: 8, Func. Count: 128, Neg. LLF: 122.18947864184473
Iteration: 9, Func. Count: 144, Neg. LLF: 122.6774182885071
Iteration: 10, Func. Count: 160, Neg. LLF: 123.03913836678022
Iteration: 11, Func. Count: 176, Neg. LLF: 123.84020866744792
Iteration: 12, Func. Count: 192, Neg. LLF: 130.02657231185307
Iteration: 13, Func. Count: 208, Neg. LLF: 134.20338253165045
Iteration: 14, Func. Count: 224, Neg. LLF: 133.48956961656873
Iteration: 15, Func. Count: 240, Neg. LLF: 124.36424298484872
Iteration: 16, Func. Count: 256, Neg. LLF: 117.0831054078508
Iteration: 17, Func. Count: 272, Neg. LLF: 116.14296472651911
Iteration: 18, Func. Count: 288, Neg. LLF: 115.95070674510366
Iteration: 19, Func. Count: 304, Neg. LLF: 114.95956353282932
Iteration: 20, Func. Count: 319, Neg. LLF: 114.93349226193544
Iteration: 21, Func. Count: 334, Neg. LLF: 114.88044928852969
Iteration: 22, Func. Count: 349, Neg. LLF: 114.87462879188321
Iteration: 23, Func. Count: 364, Neg. LLF: 114.87418957011177
Iteration: 24, Func. Count: 379, Neg. LLF: 114.87411459898125
Iteration: 25, Func. Count: 394, Neg. LLF: 114.87410680542415
Iteration: 26, Func. Count: 408, Neg. LLF: 114.87410682100085
Optimization terminated successfully (Exit mode 0)
Current function value: 114.87410680542415
Iterations: 26
Function evaluations: 408
Gradient evaluations: 26
Iteration: 1, Func. Count: 8, Neg. LLF: 121.26232126404098
Iteration: 2, Func. Count: 16, Neg. LLF: 125.29270905910415
Iteration: 3, Func. Count: 24, Neg. LLF: 117.32540956965329
Iteration: 4, Func. Count: 31, Neg. LLF: 119.32721054113766
Iteration: 5, Func. Count: 39, Neg. LLF: 158.0864955180112
Iteration: 6, Func. Count: 47, Neg. LLF: 121.10431337616716
Iteration: 7, Func. Count: 55, Neg. LLF: 116.45168124557044
Iteration: 8, Func. Count: 63, Neg. LLF: 115.53881670824931
Iteration: 9, Func. Count: 70, Neg. LLF: 115.33829540250026
Iteration: 10, Func. Count: 77, Neg. LLF: 115.35584188063676
Iteration: 11, Func. Count: 85, Neg. LLF: 115.30048953953309
Iteration: 12, Func. Count: 92, Neg. LLF: 115.29861413269508
Iteration: 13, Func. Count: 99, Neg. LLF: 115.2985255654992
Iteration: 14, Func. Count: 106, Neg. LLF: 115.2985249731749
Optimization terminated successfully (Exit mode 0)
Current function value: 115.2985249731749
Iterations: 14
Function evaluations: 106
Gradient evaluations: 14
Iteration: 1, Func. Count: 5, Neg. LLF: 122.22195210108715
Iteration: 2, Func. Count: 10, Neg. LLF: 148.20716206901264
Iteration: 3, Func. Count: 15, Neg. LLF: 119.08124039216298
Iteration: 4, Func. Count: 19, Neg. LLF: 119.06446186927869
Iteration: 5, Func. Count: 23, Neg. LLF: 119.01996164956128
Iteration: 6, Func. Count: 27, Neg. LLF: 119.01987585329863
Iteration: 7, Func. Count: 31, Neg. LLF: 119.01987398238742
Iteration: 8, Func. Count: 34, Neg. LLF: 119.0198739823808
Optimization terminated successfully (Exit mode 0)
Current function value: 119.01987398238742
Iterations: 8
Function evaluations: 34
Gradient evaluations: 8
Iteration: 1, Func. Count: 6, Neg. LLF: 121.1088869188215
Iteration: 2, Func. Count: 12, Neg. LLF: 120.78388523626334
Iteration: 3, Func. Count: 18, Neg. LLF: 120.55901462466444
Iteration: 4, Func. Count: 24, Neg. LLF: 119.14467527509363
Iteration: 5, Func. Count: 29, Neg. LLF: 119.0348238668353
Iteration: 6, Func. Count: 34, Neg. LLF: 119.02326744758842
Iteration: 7, Func. Count: 39, Neg. LLF: 119.01998915607211
Iteration: 8, Func. Count: 44, Neg. LLF: 119.01989081588899
Iteration: 9, Func. Count: 49, Neg. LLF: 119.01987393842221
Iteration: 10, Func. Count: 53, Neg. LLF: 119.01987408095226
Optimization terminated successfully (Exit mode 0)
Current function value: 119.01987393842221
Iterations: 10
Function evaluations: 53
Gradient evaluations: 10
Iteration: 1, Func. Count: 7, Neg. LLF: 121.19667290372495
Iteration: 2, Func. Count: 14, Neg. LLF: 121.30351786481894
Iteration: 3, Func. Count: 21, Neg. LLF: 120.8794485296746
Iteration: 4, Func. Count: 28, Neg. LLF: 120.36914395508406
Iteration: 5, Func. Count: 35, Neg. LLF: 119.03718316039148
Iteration: 6, Func. Count: 41, Neg. LLF: 119.01869969885568
Iteration: 7, Func. Count: 48, Neg. LLF: 118.97349744984149
Iteration: 8, Func. Count: 54, Neg. LLF: 118.97211637459903
Iteration: 9, Func. Count: 60, Neg. LLF: 118.97204076428567
Iteration: 10, Func. Count: 66, Neg. LLF: 118.97203904905551
Iteration: 11, Func. Count: 71, Neg. LLF: 118.97203904907276
Optimization terminated successfully (Exit mode 0)
Current function value: 118.97203904905551
Iterations: 11
Function evaluations: 71
Gradient evaluations: 11
Iteration: 1, Func. Count: 8, Neg. LLF: 121.3636244286733
Iteration: 2, Func. Count: 16, Neg. LLF: 122.15197542222903
Iteration: 3, Func. Count: 24, Neg. LLF: 121.13221176811605
Iteration: 4, Func. Count: 32, Neg. LLF: 123.39402164742981
Iteration: 5, Func. Count: 40, Neg. LLF: 133.90743724924775
Iteration: 6, Func. Count: 48, Neg. LLF: 131.8170660914296
Iteration: 7, Func. Count: 56, Neg. LLF: 123.8368995740386
Iteration: 8, Func. Count: 64, Neg. LLF: 131.80191169078253
Iteration: 9, Func. Count: 72, Neg. LLF: 118.81427429934848
Iteration: 10, Func. Count: 79, Neg. LLF: 118.78846911157211
Iteration: 11, Func. Count: 86, Neg. LLF: 118.7555637111653
Iteration: 12, Func. Count: 93, Neg. LLF: 118.5130016205107
Iteration: 13, Func. Count: 100, Neg. LLF: 117.41441928869149
Iteration: 14, Func. Count: 107, Neg. LLF: 117.63377262318036
Iteration: 15, Func. Count: 115, Neg. LLF: 117.0990600944326
Iteration: 16, Func. Count: 122, Neg. LLF: 117.00724935762022
Iteration: 17, Func. Count: 129, Neg. LLF: 116.92221809908825
Iteration: 18, Func. Count: 136, Neg. LLF: 116.91742476832954
Iteration: 19, Func. Count: 143, Neg. LLF: 116.91549330892771
Iteration: 20, Func. Count: 150, Neg. LLF: 116.91548196659416
Iteration: 21, Func. Count: 156, Neg. LLF: 116.91548196653193
Optimization terminated successfully (Exit mode 0)
Current function value: 116.91548196659416
Iterations: 21
Function evaluations: 156
Gradient evaluations: 21
Iteration: 1, Func. Count: 9, Neg. LLF: 121.27710359266266
Iteration: 2, Func. Count: 18, Neg. LLF: 120.69766654135462
Iteration: 3, Func. Count: 27, Neg. LLF: 120.6259894734831
Iteration: 4, Func. Count: 36, Neg. LLF: 121.04408005750636
Iteration: 5, Func. Count: 45, Neg. LLF: 132.65111125351385
Iteration: 6, Func. Count: 54, Neg. LLF: 119.04147085313087
Iteration: 7, Func. Count: 62, Neg. LLF: 118.87010274629267
Iteration: 8, Func. Count: 70, Neg. LLF: 6167.863129855172
Iteration: 9, Func. Count: 79, Neg. LLF: 215.98439998513072
Iteration: 10, Func. Count: 88, Neg. LLF: 120.12297972107244
Iteration: 11, Func. Count: 97, Neg. LLF: 177.57571872633937
Iteration: 12, Func. Count: 106, Neg. LLF: 165.43144798383142
Iteration: 13, Func. Count: 115, Neg. LLF: 156.50408503046552
Iteration: 14, Func. Count: 124, Neg. LLF: 129.79719747738537
Iteration: 15, Func. Count: 133, Neg. LLF: 119.3803634771347
Iteration: 16, Func. Count: 142, Neg. LLF: 117.73926939488325
Iteration: 17, Func. Count: 150, Neg. LLF: 117.6959613936376
Iteration: 18, Func. Count: 159, Neg. LLF: 117.12794234389445
Iteration: 19, Func. Count: 167, Neg. LLF: 116.96016303564046
Iteration: 20, Func. Count: 175, Neg. LLF: 116.92298236375879
Iteration: 21, Func. Count: 183, Neg. LLF: 116.91575794703448
Iteration: 22, Func. Count: 191, Neg. LLF: 116.9154850314964
Iteration: 23, Func. Count: 199, Neg. LLF: 116.91548226342869
Iteration: 24, Func. Count: 206, Neg. LLF: 116.91548250563989
Optimization terminated successfully (Exit mode 0)
Current function value: 116.91548226342869
Iterations: 24
Function evaluations: 206
Gradient evaluations: 24
Iteration: 1, Func. Count: 6, Neg. LLF: 123.00428955069434
Iteration: 2, Func. Count: 12, Neg. LLF: 163.1084841355165
Iteration: 3, Func. Count: 18, Neg. LLF: 119.10659062511081
Iteration: 4, Func. Count: 23, Neg. LLF: 119.07244922724387
Iteration: 5, Func. Count: 28, Neg. LLF: 119.06256111647708
Iteration: 6, Func. Count: 33, Neg. LLF: 119.04236021486619
Iteration: 7, Func. Count: 38, Neg. LLF: 119.02794509835657
Iteration: 8, Func. Count: 43, Neg. LLF: 119.02156126373436
Iteration: 9, Func. Count: 48, Neg. LLF: 119.01988566459642
Iteration: 10, Func. Count: 53, Neg. LLF: 119.01987393910818
Iteration: 11, Func. Count: 57, Neg. LLF: 119.01987409406865
Optimization terminated successfully (Exit mode 0)
Current function value: 119.01987393910818
Iterations: 11
Function evaluations: 57
Gradient evaluations: 11
Iteration: 1, Func. Count: 7, Neg. LLF: 120.64924125095405
Iteration: 2, Func. Count: 13, Neg. LLF: 127.81958471368384
Iteration: 3, Func. Count: 20, Neg. LLF: 120.2758691353642
Iteration: 4, Func. Count: 27, Neg. LLF: 119.60041571986355
Iteration: 5, Func. Count: 33, Neg. LLF: 119.13025751307347
Iteration: 6, Func. Count: 39, Neg. LLF: 119.09146039280634
Iteration: 7, Func. Count: 45, Neg. LLF: 119.02924928807536
Iteration: 8, Func. Count: 51, Neg. LLF: 119.0212797403803
Iteration: 9, Func. Count: 57, Neg. LLF: 119.01990649196908
Iteration: 10, Func. Count: 63, Neg. LLF: 119.01987496273624
Iteration: 11, Func. Count: 69, Neg. LLF: 119.01987393861258
Iteration: 12, Func. Count: 74, Neg. LLF: 119.01987408114539
Optimization terminated successfully (Exit mode 0)
Current function value: 119.01987393861258
Iterations: 12
Function evaluations: 74
Gradient evaluations: 12
Iteration: 1, Func. Count: 8, Neg. LLF: 120.83457890851878
Iteration: 2, Func. Count: 16, Neg. LLF: 127.08377949912145
Iteration: 3, Func. Count: 24, Neg. LLF: 120.08925710655568
Iteration: 4, Func. Count: 32, Neg. LLF: 119.14576086017462
Iteration: 5, Func. Count: 39, Neg. LLF: 119.3596606135562
Iteration: 6, Func. Count: 47, Neg. LLF: 118.97786282511359
Iteration: 7, Func. Count: 54, Neg. LLF: 118.97351153434848
Iteration: 8, Func. Count: 61, Neg. LLF: 118.97267866787173
Iteration: 9, Func. Count: 68, Neg. LLF: 118.97242949764836
Iteration: 10, Func. Count: 75, Neg. LLF: 118.97211920526416
Iteration: 11, Func. Count: 82, Neg. LLF: 118.97204738096555
Iteration: 12, Func. Count: 89, Neg. LLF: 118.97203928588667
Iteration: 13, Func. Count: 95, Neg. LLF: 118.97203928597145
Optimization terminated successfully (Exit mode 0)
Current function value: 118.97203928588667
Iterations: 13
Function evaluations: 95
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 120.74742663309887
Iteration: 2, Func. Count: 18, Neg. LLF: 125.14349259865736
Iteration: 3, Func. Count: 27, Neg. LLF: 120.30531387158409
Iteration: 4, Func. Count: 36, Neg. LLF: 119.07800215318449
Iteration: 5, Func. Count: 44, Neg. LLF: 119.09534966815721
Iteration: 6, Func. Count: 53, Neg. LLF: 119.00556283425502
Iteration: 7, Func. Count: 61, Neg. LLF: 118.98497190498765
Iteration: 8, Func. Count: 69, Neg. LLF: 118.97251898357591
Iteration: 9, Func. Count: 77, Neg. LLF: 118.9720520654412
Iteration: 10, Func. Count: 85, Neg. LLF: 118.97203900964375
Iteration: 11, Func. Count: 92, Neg. LLF: 118.9720390148157
Optimization terminated successfully (Exit mode 0)
Current function value: 118.97203900964375
Iterations: 11
Function evaluations: 92
Gradient evaluations: 11
Iteration: 1, Func. Count: 10, Neg. LLF: 120.60082968738556
Iteration: 2, Func. Count: 19, Neg. LLF: 121.55697698960726
Iteration: 3, Func. Count: 29, Neg. LLF: 128.6261600127005
Iteration: 4, Func. Count: 39, Neg. LLF: 131.47192935301146
Iteration: 5, Func. Count: 49, Neg. LLF: 133.4658523394728
Iteration: 6, Func. Count: 59, Neg. LLF: 130.3301127802455
Iteration: 7, Func. Count: 69, Neg. LLF: 119.89394042701794
Iteration: 8, Func. Count: 79, Neg. LLF: 119.25825939203219
Iteration: 9, Func. Count: 89, Neg. LLF: 119.0631315604968
Iteration: 10, Func. Count: 99, Neg. LLF: 118.98729005425707
Iteration: 11, Func. Count: 108, Neg. LLF: 118.97983468981363
Iteration: 12, Func. Count: 117, Neg. LLF: 118.97866035702724
Iteration: 13, Func. Count: 126, Neg. LLF: 118.97664492698325
Iteration: 14, Func. Count: 135, Neg. LLF: 118.97382125727994
Iteration: 15, Func. Count: 144, Neg. LLF: 118.97249828575002
Iteration: 16, Func. Count: 153, Neg. LLF: 118.97220452247383
Iteration: 17, Func. Count: 162, Neg. LLF: 118.97204401670405
Iteration: 18, Func. Count: 171, Neg. LLF: 118.97203908289488
Iteration: 19, Func. Count: 179, Neg. LLF: 118.9720391664898
Optimization terminated successfully (Exit mode 0)
Current function value: 118.97203908289488
Iterations: 19
Function evaluations: 179
Gradient evaluations: 19
Iteration: 1, Func. Count: 7, Neg. LLF: 126.73716419396114
Iteration: 2, Func. Count: 15, Neg. LLF: 168.702250587496
Iteration: 3, Func. Count: 22, Neg. LLF: 119.21462977481033
Iteration: 4, Func. Count: 28, Neg. LLF: 123.20887835974895
Iteration: 5, Func. Count: 35, Neg. LLF: 119.1023500040177
Iteration: 6, Func. Count: 41, Neg. LLF: 119.05860831928172
Iteration: 7, Func. Count: 47, Neg. LLF: 119.01474630829959
Iteration: 8, Func. Count: 53, Neg. LLF: 118.99076341655868
Iteration: 9, Func. Count: 59, Neg. LLF: 118.97242794078845
Iteration: 10, Func. Count: 65, Neg. LLF: 118.97004644359565
Iteration: 11, Func. Count: 71, Neg. LLF: 118.96927636995122
Iteration: 12, Func. Count: 77, Neg. LLF: 118.96904301604225
Iteration: 13, Func. Count: 83, Neg. LLF: 118.96901596682358
Iteration: 14, Func. Count: 89, Neg. LLF: 118.96901430555909
Iteration: 15, Func. Count: 94, Neg. LLF: 118.96901430554537
Optimization terminated successfully (Exit mode 0)
Current function value: 118.96901430555909
Iterations: 15
Function evaluations: 94
Gradient evaluations: 15
Iteration: 1, Func. Count: 8, Neg. LLF: 121.40795842415505
Iteration: 2, Func. Count: 16, Neg. LLF: 143.6237070991798
Iteration: 3, Func. Count: 24, Neg. LLF: 119.87180869837574
Iteration: 4, Func. Count: 31, Neg. LLF: 120.19692489917028
Iteration: 5, Func. Count: 39, Neg. LLF: 119.70822510125542
Iteration: 6, Func. Count: 47, Neg. LLF: 119.00885330346269
Iteration: 7, Func. Count: 54, Neg. LLF: 118.98467030384293
Iteration: 8, Func. Count: 61, Neg. LLF: 118.97473001641193
Iteration: 9, Func. Count: 68, Neg. LLF: 118.97073783248909
Iteration: 10, Func. Count: 75, Neg. LLF: 118.9690743513397
Iteration: 11, Func. Count: 82, Neg. LLF: 118.96902311584256
Iteration: 12, Func. Count: 89, Neg. LLF: 118.96901445422698
Iteration: 13, Func. Count: 95, Neg. LLF: 118.96901459084748
Optimization terminated successfully (Exit mode 0)
Current function value: 118.96901445422698
Iterations: 13
Function evaluations: 95
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 121.2336394850425
Iteration: 2, Func. Count: 18, Neg. LLF: 138.81900167997975
Iteration: 3, Func. Count: 27, Neg. LLF: 120.07389387657997
Iteration: 4, Func. Count: 36, Neg. LLF: 119.11875228012876
Iteration: 5, Func. Count: 44, Neg. LLF: 119.80173458695259
Iteration: 6, Func. Count: 53, Neg. LLF: 119.00829927814678
Iteration: 7, Func. Count: 61, Neg. LLF: 118.98815646304666
Iteration: 8, Func. Count: 69, Neg. LLF: 118.97674001128279
Iteration: 9, Func. Count: 77, Neg. LLF: 118.971955777093
Iteration: 10, Func. Count: 85, Neg. LLF: 118.9702411035407
Iteration: 11, Func. Count: 93, Neg. LLF: 118.96919396272952
Iteration: 12, Func. Count: 101, Neg. LLF: 118.96904571420474
Iteration: 13, Func. Count: 109, Neg. LLF: 118.96901469345036
Iteration: 14, Func. Count: 116, Neg. LLF: 118.96901469546815
Optimization terminated successfully (Exit mode 0)
Current function value: 118.96901469345036
Iterations: 14
Function evaluations: 116
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 121.10938955002221
Iteration: 2, Func. Count: 20, Neg. LLF: 136.8944136242714
Iteration: 3, Func. Count: 30, Neg. LLF: 120.22295461494537
Iteration: 4, Func. Count: 40, Neg. LLF: 119.10698719404702
Iteration: 5, Func. Count: 49, Neg. LLF: 119.32234409861856
Iteration: 6, Func. Count: 59, Neg. LLF: 119.00469989246513
Iteration: 7, Func. Count: 68, Neg. LLF: 118.984520944582
Iteration: 8, Func. Count: 77, Neg. LLF: 118.97611087897133
Iteration: 9, Func. Count: 86, Neg. LLF: 118.97308892343835
Iteration: 10, Func. Count: 95, Neg. LLF: 118.9721101059136
Iteration: 11, Func. Count: 104, Neg. LLF: 118.97027828009313
Iteration: 12, Func. Count: 113, Neg. LLF: 118.96913065861973
Iteration: 13, Func. Count: 122, Neg. LLF: 118.96902207381473
Iteration: 14, Func. Count: 131, Neg. LLF: 118.9690143000565
Iteration: 15, Func. Count: 139, Neg. LLF: 118.96901430615944
Optimization terminated successfully (Exit mode 0)
Current function value: 118.9690143000565
Iterations: 15
Function evaluations: 139
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 120.79395129530018
Iteration: 2, Func. Count: 22, Neg. LLF: 130.9604353707376
Iteration: 3, Func. Count: 33, Neg. LLF: 120.34254482263876
Iteration: 4, Func. Count: 44, Neg. LLF: 119.0998587956673
Iteration: 5, Func. Count: 54, Neg. LLF: 119.37808785953303
Iteration: 6, Func. Count: 65, Neg. LLF: 119.00917378301577
Iteration: 7, Func. Count: 75, Neg. LLF: 118.9825189426344
Iteration: 8, Func. Count: 85, Neg. LLF: 118.97520407311983
Iteration: 9, Func. Count: 95, Neg. LLF: 118.97320328689044
Iteration: 10, Func. Count: 105, Neg. LLF: 118.97220660048298
Iteration: 11, Func. Count: 115, Neg. LLF: 118.97024274727605
Iteration: 12, Func. Count: 125, Neg. LLF: 118.96942813502861
Iteration: 13, Func. Count: 135, Neg. LLF: 118.9690268040273
Iteration: 14, Func. Count: 145, Neg. LLF: 118.96901464363472
Iteration: 15, Func. Count: 154, Neg. LLF: 118.96901472756352
Optimization terminated successfully (Exit mode 0)
Current function value: 118.96901464363472
Iterations: 15
Function evaluations: 154
Gradient evaluations: 15
Iteration: 1, Func. Count: 8, Neg. LLF: 134.31953656479132
Iteration: 2, Func. Count: 17, Neg. LLF: 483.472083687344
Iteration: 3, Func. Count: 25, Neg. LLF: 119.29940856864937
Iteration: 4, Func. Count: 32, Neg. LLF: 119.00229523798795
Iteration: 5, Func. Count: 39, Neg. LLF: 119.00131967740829
Iteration: 6, Func. Count: 46, Neg. LLF: 119.00117035006498
Iteration: 7, Func. Count: 53, Neg. LLF: 119.00113273089137
Iteration: 8, Func. Count: 60, Neg. LLF: 119.00097463534662
Iteration: 9, Func. Count: 67, Neg. LLF: 119.00079472038271
Iteration: 10, Func. Count: 74, Neg. LLF: 119.00066236611517
Iteration: 11, Func. Count: 81, Neg. LLF: 119.00062227154251
Iteration: 12, Func. Count: 88, Neg. LLF: 119.00061963544101
Iteration: 13, Func. Count: 94, Neg. LLF: 119.00061963544076
Optimization terminated successfully (Exit mode 0)
Current function value: 119.00061963544101
Iterations: 13
Function evaluations: 94
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 123.01765539529576
Iteration: 2, Func. Count: 18, Neg. LLF: 167.99388326619047
Iteration: 3, Func. Count: 27, Neg. LLF: 119.9536075019999
Iteration: 4, Func. Count: 35, Neg. LLF: 124.60889297100027
Iteration: 5, Func. Count: 45, Neg. LLF: 119.43355458989103
Iteration: 6, Func. Count: 53, Neg. LLF: 119.21275966652355
Iteration: 7, Func. Count: 61, Neg. LLF: 119.00491436954893
Iteration: 8, Func. Count: 69, Neg. LLF: 118.97839819274232
Iteration: 9, Func. Count: 77, Neg. LLF: 118.97541615578758
Iteration: 10, Func. Count: 85, Neg. LLF: 118.97226656904425
Iteration: 11, Func. Count: 93, Neg. LLF: 118.96950688024945
Iteration: 12, Func. Count: 101, Neg. LLF: 118.96907239079479
Iteration: 13, Func. Count: 109, Neg. LLF: 118.96901841466122
Iteration: 14, Func. Count: 117, Neg. LLF: 118.96901588657947
Iteration: 15, Func. Count: 125, Neg. LLF: 118.96901460803701
Iteration: 16, Func. Count: 132, Neg. LLF: 118.96901474463827
Optimization terminated successfully (Exit mode 0)
Current function value: 118.96901460803701
Iterations: 16
Function evaluations: 132
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 122.95746701911519
Iteration: 2, Func. Count: 20, Neg. LLF: 164.99911804431915
Iteration: 3, Func. Count: 30, Neg. LLF: 120.17084727235033
Iteration: 4, Func. Count: 40, Neg. LLF: 119.15972942400745
Iteration: 5, Func. Count: 49, Neg. LLF: 120.57474038392773
Iteration: 6, Func. Count: 59, Neg. LLF: 119.00205549022714
Iteration: 7, Func. Count: 68, Neg. LLF: 118.99046229531669
Iteration: 8, Func. Count: 77, Neg. LLF: 118.98254278871843
Iteration: 9, Func. Count: 86, Neg. LLF: 118.97389844809939
Iteration: 10, Func. Count: 95, Neg. LLF: 118.97013026349808
Iteration: 11, Func. Count: 104, Neg. LLF: 118.96924423997872
Iteration: 12, Func. Count: 113, Neg. LLF: 118.96901895433089
Iteration: 13, Func. Count: 122, Neg. LLF: 118.96901434651241
Iteration: 14, Func. Count: 130, Neg. LLF: 118.96901434855901
Optimization terminated successfully (Exit mode 0)
Current function value: 118.96901434651241
Iterations: 14
Function evaluations: 130
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 122.68936290904264
Iteration: 2, Func. Count: 22, Neg. LLF: 162.90416136355805
Iteration: 3, Func. Count: 33, Neg. LLF: 120.29323892459306
Iteration: 4, Func. Count: 44, Neg. LLF: 119.12788296144728
Iteration: 5, Func. Count: 54, Neg. LLF: 125.43346877495897
Iteration: 6, Func. Count: 65, Neg. LLF: 119.0021196651509
Iteration: 7, Func. Count: 75, Neg. LLF: 118.98727702864294
Iteration: 8, Func. Count: 85, Neg. LLF: 118.97896349118771
Iteration: 9, Func. Count: 95, Neg. LLF: 118.9734006640258
Iteration: 10, Func. Count: 105, Neg. LLF: 118.96981689086132
Iteration: 11, Func. Count: 115, Neg. LLF: 118.9691343956332
Iteration: 12, Func. Count: 125, Neg. LLF: 118.96902609060893
Iteration: 13, Func. Count: 135, Neg. LLF: 118.96901544373014
Iteration: 14, Func. Count: 145, Neg. LLF: 118.96901431382543
Iteration: 15, Func. Count: 154, Neg. LLF: 118.96901431994097
Optimization terminated successfully (Exit mode 0)
Current function value: 118.96901431382543
Iterations: 15
Function evaluations: 154
Gradient evaluations: 15
Iteration: 1, Func. Count: 12, Neg. LLF: 122.33226078387013
Iteration: 2, Func. Count: 24, Neg. LLF: 157.2832983588926
Iteration: 3, Func. Count: 36, Neg. LLF: 120.37580648747333
Iteration: 4, Func. Count: 48, Neg. LLF: 119.06961578541755
Iteration: 5, Func. Count: 59, Neg. LLF: 119.20489847103404
Iteration: 6, Func. Count: 71, Neg. LLF: 119.08868135278297
Iteration: 7, Func. Count: 83, Neg. LLF: 119.00023617450988
Iteration: 8, Func. Count: 94, Neg. LLF: 118.98884947733934
Iteration: 9, Func. Count: 105, Neg. LLF: 118.97951960908429
Iteration: 10, Func. Count: 116, Neg. LLF: 118.97138484697734
Iteration: 11, Func. Count: 127, Neg. LLF: 118.96915630760398
Iteration: 12, Func. Count: 138, Neg. LLF: 118.96902042644662
Iteration: 13, Func. Count: 149, Neg. LLF: 118.96901456685015
Iteration: 14, Func. Count: 159, Neg. LLF: 118.96901465078369
Optimization terminated successfully (Exit mode 0)
Current function value: 118.96901456685015
Iterations: 14
Function evaluations: 159
Gradient evaluations: 14
Iteration: 1, Func. Count: 5, Neg. LLF: 124.10920232938354
Iteration: 2, Func. Count: 10, Neg. LLF: 128.19938260639248
Iteration: 3, Func. Count: 15, Neg. LLF: 121.95020445216646
Iteration: 4, Func. Count: 19, Neg. LLF: 121.91285673536473
Iteration: 5, Func. Count: 23, Neg. LLF: 121.91141470786089
Iteration: 6, Func. Count: 27, Neg. LLF: 121.91140624084919
Iteration: 7, Func. Count: 30, Neg. LLF: 121.9114062408344
Optimization terminated successfully (Exit mode 0)
Current function value: 121.91140624084919
Iterations: 7
Function evaluations: 30
Gradient evaluations: 7
Iteration: 1, Func. Count: 6, Neg. LLF: 123.18219197621572
Iteration: 2, Func. Count: 12, Neg. LLF: 123.72578424403129
Iteration: 3, Func. Count: 18, Neg. LLF: 122.83343886826731
Iteration: 4, Func. Count: 24, Neg. LLF: 121.76826659120222
Iteration: 5, Func. Count: 30, Neg. LLF: 121.66202027186132
Iteration: 6, Func. Count: 35, Neg. LLF: 121.6618178251939
Iteration: 7, Func. Count: 40, Neg. LLF: 121.66178129756156
Iteration: 8, Func. Count: 44, Neg. LLF: 121.6617812975813
Optimization terminated successfully (Exit mode 0)
Current function value: 121.66178129756156
Iterations: 8
Function evaluations: 44
Gradient evaluations: 8
Iteration: 1, Func. Count: 7, Neg. LLF: 123.76665354594331
Iteration: 2, Func. Count: 14, Neg. LLF: 123.50083547874418
Iteration: 3, Func. Count: 21, Neg. LLF: 127.65749349813018
Iteration: 4, Func. Count: 28, Neg. LLF: 121.762022843714
Iteration: 5, Func. Count: 34, Neg. LLF: 121.66426435433412
Iteration: 6, Func. Count: 40, Neg. LLF: 121.66188729602555
Iteration: 7, Func. Count: 46, Neg. LLF: 121.661783151166
Iteration: 8, Func. Count: 52, Neg. LLF: 121.66178116404716
Iteration: 9, Func. Count: 57, Neg. LLF: 121.66178120648458
Optimization terminated successfully (Exit mode 0)
Current function value: 121.66178116404716
Iterations: 9
Function evaluations: 57
Gradient evaluations: 9
Iteration: 1, Func. Count: 8, Neg. LLF: 124.42194751983988
Iteration: 2, Func. Count: 16, Neg. LLF: 124.70102077759724
Iteration: 3, Func. Count: 24, Neg. LLF: 125.2187435957822
Iteration: 4, Func. Count: 32, Neg. LLF: 135.28321422110088
Iteration: 5, Func. Count: 40, Neg. LLF: 121.66291016542513
Iteration: 6, Func. Count: 47, Neg. LLF: 121.66215009643005
Iteration: 7, Func. Count: 54, Neg. LLF: 121.66178276556198
Iteration: 8, Func. Count: 61, Neg. LLF: 121.66178182365118
Optimization terminated successfully (Exit mode 0)
Current function value: 121.66178182365118
Iterations: 8
Function evaluations: 61
Gradient evaluations: 8
Iteration: 1, Func. Count: 9, Neg. LLF: 124.34874796940963
Iteration: 2, Func. Count: 18, Neg. LLF: 125.13188483451752
Iteration: 3, Func. Count: 27, Neg. LLF: 124.27608009509238
Iteration: 4, Func. Count: 36, Neg. LLF: 134.84986433210875
Iteration: 5, Func. Count: 45, Neg. LLF: 121.66352592907981
Iteration: 6, Func. Count: 53, Neg. LLF: 121.66211774276523
Iteration: 7, Func. Count: 61, Neg. LLF: 121.66186457693807
Iteration: 8, Func. Count: 69, Neg. LLF: 121.66178889611551
Iteration: 9, Func. Count: 77, Neg. LLF: 121.66178150050467
Iteration: 10, Func. Count: 84, Neg. LLF: 121.66178158600407
Optimization terminated successfully (Exit mode 0)
Current function value: 121.66178150050467
Iterations: 10
Function evaluations: 84
Gradient evaluations: 10
Iteration: 1, Func. Count: 6, Neg. LLF: 121.65894304947503
Iteration: 2, Func. Count: 12, Neg. LLF: 131.99599943180334
Iteration: 3, Func. Count: 18, Neg. LLF: 119.1126281912027
Iteration: 4, Func. Count: 23, Neg. LLF: 119.09763479461117
Iteration: 5, Func. Count: 28, Neg. LLF: 119.05991404924163
Iteration: 6, Func. Count: 33, Neg. LLF: 119.03253623273463
Iteration: 7, Func. Count: 38, Neg. LLF: 119.02253941434945
Iteration: 8, Func. Count: 43, Neg. LLF: 119.01990157048257
Iteration: 9, Func. Count: 48, Neg. LLF: 119.0198740772555
Iteration: 10, Func. Count: 52, Neg. LLF: 119.01987407724175
Optimization terminated successfully (Exit mode 0)
Current function value: 119.0198740772555
Iterations: 10
Function evaluations: 52
Gradient evaluations: 10
Iteration: 1, Func. Count: 7, Neg. LLF: 120.79652584532548
Iteration: 2, Func. Count: 14, Neg. LLF: 125.02772309714825
Iteration: 3, Func. Count: 21, Neg. LLF: 119.30481203668593
Iteration: 4, Func. Count: 27, Neg. LLF: 119.12000907933019
Iteration: 5, Func. Count: 33, Neg. LLF: 119.0302578768242
Iteration: 6, Func. Count: 39, Neg. LLF: 119.02394129975532
Iteration: 7, Func. Count: 45, Neg. LLF: 119.02144504889587
Iteration: 8, Func. Count: 51, Neg. LLF: 119.01996058142637
Iteration: 9, Func. Count: 57, Neg. LLF: 119.01987662299322
Iteration: 10, Func. Count: 63, Neg. LLF: 119.01987399715013
Iteration: 11, Func. Count: 68, Neg. LLF: 119.01987413971044
Optimization terminated successfully (Exit mode 0)
Current function value: 119.01987399715013
Iterations: 11
Function evaluations: 68
Gradient evaluations: 11
Iteration: 1, Func. Count: 8, Neg. LLF: 121.46244571628377
Iteration: 2, Func. Count: 16, Neg. LLF: 125.46338639344006
Iteration: 3, Func. Count: 24, Neg. LLF: 119.41083335021139
Iteration: 4, Func. Count: 31, Neg. LLF: 133.80516388252119
Iteration: 5, Func. Count: 39, Neg. LLF: 119.62708090622243
Iteration: 6, Func. Count: 47, Neg. LLF: 118.97881553923035
Iteration: 7, Func. Count: 54, Neg. LLF: 118.97433717289395
Iteration: 8, Func. Count: 61, Neg. LLF: 118.97217074560471
Iteration: 9, Func. Count: 68, Neg. LLF: 118.97204149066822
Iteration: 10, Func. Count: 75, Neg. LLF: 118.9720390770683
Iteration: 11, Func. Count: 81, Neg. LLF: 118.97203907705351
Optimization terminated successfully (Exit mode 0)
Current function value: 118.9720390770683
Iterations: 11
Function evaluations: 81
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 122.14067449645763
Iteration: 2, Func. Count: 18, Neg. LLF: 125.52845968399586
Iteration: 3, Func. Count: 27, Neg. LLF: 119.47134008987526
Iteration: 4, Func. Count: 35, Neg. LLF: 134.63053236758438
Iteration: 5, Func. Count: 44, Neg. LLF: 121.3527839938659
Iteration: 6, Func. Count: 53, Neg. LLF: 118.99478380285973
Iteration: 7, Func. Count: 61, Neg. LLF: 119.75016823425246
Iteration: 8, Func. Count: 70, Neg. LLF: 118.91956774985913
Iteration: 9, Func. Count: 78, Neg. LLF: 119.9246729296251
Iteration: 10, Func. Count: 87, Neg. LLF: 119.15139592628306
Iteration: 11, Func. Count: 96, Neg. LLF: 128.11763335461075
Iteration: 12, Func. Count: 105, Neg. LLF: 118.16078311810321
Iteration: 13, Func. Count: 114, Neg. LLF: 116.97737671654377
Iteration: 14, Func. Count: 122, Neg. LLF: 116.92739592374099
Iteration: 15, Func. Count: 130, Neg. LLF: 116.91988247184652
Iteration: 16, Func. Count: 138, Neg. LLF: 116.9160822118869
Iteration: 17, Func. Count: 146, Neg. LLF: 116.915688070461
Iteration: 18, Func. Count: 154, Neg. LLF: 116.91548420967493
Iteration: 19, Func. Count: 162, Neg. LLF: 116.91548202709001
Iteration: 20, Func. Count: 169, Neg. LLF: 116.91548202717104
Optimization terminated successfully (Exit mode 0)
Current function value: 116.91548202709001
Iterations: 20
Function evaluations: 169
Gradient evaluations: 20
Iteration: 1, Func. Count: 10, Neg. LLF: 122.21835860172826
Iteration: 2, Func. Count: 20, Neg. LLF: 125.53910692458977
Iteration: 3, Func. Count: 30, Neg. LLF: 119.45457284691432
Iteration: 4, Func. Count: 39, Neg. LLF: 135.01922018784916
Iteration: 5, Func. Count: 49, Neg. LLF: 120.24031391957769
Iteration: 6, Func. Count: 59, Neg. LLF: 118.98553939769997
Iteration: 7, Func. Count: 68, Neg. LLF: 120.5416242568386
Iteration: 8, Func. Count: 78, Neg. LLF: 118.83416931214765
Iteration: 9, Func. Count: 87, Neg. LLF: 123.13066256797579
Iteration: 10, Func. Count: 97, Neg. LLF: 120.21863370153679
Iteration: 11, Func. Count: 107, Neg. LLF: 119.81958130602244
Iteration: 12, Func. Count: 117, Neg. LLF: 133.39625553147124
Iteration: 13, Func. Count: 127, Neg. LLF: 118.70423998375948
Iteration: 14, Func. Count: 137, Neg. LLF: 117.62328182145411
Iteration: 15, Func. Count: 147, Neg. LLF: 116.92225861186047
Iteration: 16, Func. Count: 156, Neg. LLF: 116.91794651523955
Iteration: 17, Func. Count: 165, Neg. LLF: 116.91556103575073
Iteration: 18, Func. Count: 174, Neg. LLF: 116.91549776076168
Iteration: 19, Func. Count: 183, Neg. LLF: 116.9154820218489
Iteration: 20, Func. Count: 191, Neg. LLF: 116.9154822640912
Optimization terminated successfully (Exit mode 0)
Current function value: 116.9154820218489
Iterations: 20
Function evaluations: 191
Gradient evaluations: 20
Iteration: 1, Func. Count: 7, Neg. LLF: 122.05057495496423
Iteration: 2, Func. Count: 14, Neg. LLF: 139.94219093533212
Iteration: 3, Func. Count: 21, Neg. LLF: 119.11959005706944
Iteration: 4, Func. Count: 27, Neg. LLF: 119.09420037774024
Iteration: 5, Func. Count: 33, Neg. LLF: 119.07873605401015
Iteration: 6, Func. Count: 39, Neg. LLF: 119.05504737250759
Iteration: 7, Func. Count: 45, Neg. LLF: 119.03519500339799
Iteration: 8, Func. Count: 51, Neg. LLF: 119.02251918989278
Iteration: 9, Func. Count: 57, Neg. LLF: 119.01988436776037
Iteration: 10, Func. Count: 63, Neg. LLF: 119.01987397311184
Iteration: 11, Func. Count: 68, Neg. LLF: 119.01987412807418
Optimization terminated successfully (Exit mode 0)
Current function value: 119.01987397311184
Iterations: 11
Function evaluations: 68
Gradient evaluations: 11
Iteration: 1, Func. Count: 8, Neg. LLF: 120.74778358166378
Iteration: 2, Func. Count: 15, Neg. LLF: 124.89666839789973
Iteration: 3, Func. Count: 23, Neg. LLF: 119.31258544993582
Iteration: 4, Func. Count: 30, Neg. LLF: 119.35986047108834
Iteration: 5, Func. Count: 38, Neg. LLF: 119.0510894651258
Iteration: 6, Func. Count: 46, Neg. LLF: 119.02035142490246
Iteration: 7, Func. Count: 53, Neg. LLF: 119.01988519751592
Iteration: 8, Func. Count: 60, Neg. LLF: 119.01987419712242
Iteration: 9, Func. Count: 66, Neg. LLF: 119.01987433963625
Optimization terminated successfully (Exit mode 0)
Current function value: 119.01987419712242
Iterations: 9
Function evaluations: 66
Gradient evaluations: 9
Iteration: 1, Func. Count: 9, Neg. LLF: 121.46342014098184
Iteration: 2, Func. Count: 18, Neg. LLF: 131.27703220830074
Iteration: 3, Func. Count: 27, Neg. LLF: 119.39431366127832
Iteration: 4, Func. Count: 35, Neg. LLF: 136.45542902245458
Iteration: 5, Func. Count: 44, Neg. LLF: 119.1381011971907
Iteration: 6, Func. Count: 52, Neg. LLF: 119.03889295636458
Iteration: 7, Func. Count: 60, Neg. LLF: 118.98314663269021
Iteration: 8, Func. Count: 68, Neg. LLF: 118.97472450986064
Iteration: 9, Func. Count: 76, Neg. LLF: 118.97275357763077
Iteration: 10, Func. Count: 84, Neg. LLF: 118.97207628245657
Iteration: 11, Func. Count: 92, Neg. LLF: 118.97204041191091
Iteration: 12, Func. Count: 100, Neg. LLF: 118.97203928385395
Iteration: 13, Func. Count: 107, Neg. LLF: 118.97203928387395
Optimization terminated successfully (Exit mode 0)
Current function value: 118.97203928385395
Iterations: 13
Function evaluations: 107
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 122.04507840149631
Iteration: 2, Func. Count: 20, Neg. LLF: 132.83370637552434
Iteration: 3, Func. Count: 30, Neg. LLF: 119.42270193166426
Iteration: 4, Func. Count: 39, Neg. LLF: 139.3108446820504
Iteration: 5, Func. Count: 49, Neg. LLF: 119.3456036407336
Iteration: 6, Func. Count: 59, Neg. LLF: 119.01272727763272
Iteration: 7, Func. Count: 68, Neg. LLF: 118.98146251041037
Iteration: 8, Func. Count: 77, Neg. LLF: 118.97508303417129
Iteration: 9, Func. Count: 86, Neg. LLF: 118.97318376630655
Iteration: 10, Func. Count: 95, Neg. LLF: 118.97205136221386
Iteration: 11, Func. Count: 104, Neg. LLF: 118.97203910126282
Iteration: 12, Func. Count: 112, Neg. LLF: 118.97203910640535
Optimization terminated successfully (Exit mode 0)
Current function value: 118.97203910126282
Iterations: 12
Function evaluations: 112
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 122.1133571227432
Iteration: 2, Func. Count: 22, Neg. LLF: 132.85832476378752
Iteration: 3, Func. Count: 33, Neg. LLF: 119.42318548572219
Iteration: 4, Func. Count: 43, Neg. LLF: 140.527829851874
Iteration: 5, Func. Count: 54, Neg. LLF: 119.36991870791738
Iteration: 6, Func. Count: 65, Neg. LLF: 118.98275151615304
Iteration: 7, Func. Count: 75, Neg. LLF: 118.9742915450277
Iteration: 8, Func. Count: 85, Neg. LLF: 118.97268566132969
Iteration: 9, Func. Count: 95, Neg. LLF: 118.97226752036634
Iteration: 10, Func. Count: 105, Neg. LLF: 118.9720578759024
Iteration: 11, Func. Count: 115, Neg. LLF: 118.97203989912916
Iteration: 12, Func. Count: 125, Neg. LLF: 118.97203906237486
Optimization terminated successfully (Exit mode 0)
Current function value: 118.97203906237486
Iterations: 12
Function evaluations: 125
Gradient evaluations: 12
Iteration: 1, Func. Count: 8, Neg. LLF: 125.09064297587429
Iteration: 2, Func. Count: 16, Neg. LLF: 150.979437370933
Iteration: 3, Func. Count: 24, Neg. LLF: 119.10228647790234
Iteration: 4, Func. Count: 31, Neg. LLF: 130.866737521365
Iteration: 5, Func. Count: 41, Neg. LLF: 118.99915957250609
Iteration: 6, Func. Count: 48, Neg. LLF: 118.98150402546912
Iteration: 7, Func. Count: 55, Neg. LLF: 118.97848772996083
Iteration: 8, Func. Count: 62, Neg. LLF: 118.96991835439097
Iteration: 9, Func. Count: 69, Neg. LLF: 118.9690945342577
Iteration: 10, Func. Count: 76, Neg. LLF: 118.96901478733574
Iteration: 11, Func. Count: 82, Neg. LLF: 118.96901478747942
Optimization terminated successfully (Exit mode 0)
Current function value: 118.96901478733574
Iterations: 11
Function evaluations: 82
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 121.43191696044664
Iteration: 2, Func. Count: 18, Neg. LLF: 132.65964722884752
Iteration: 3, Func. Count: 27, Neg. LLF: 119.37481505006376
Iteration: 4, Func. Count: 35, Neg. LLF: 139.72934188082675
Iteration: 5, Func. Count: 44, Neg. LLF: 118.97924114778372
Iteration: 6, Func. Count: 52, Neg. LLF: 118.97143478385235
Iteration: 7, Func. Count: 60, Neg. LLF: 118.96918940306921
Iteration: 8, Func. Count: 68, Neg. LLF: 118.96906051866537
Iteration: 9, Func. Count: 76, Neg. LLF: 118.96904891210805
Iteration: 10, Func. Count: 84, Neg. LLF: 118.96901667713733
Iteration: 11, Func. Count: 92, Neg. LLF: 118.96901439227206
Iteration: 12, Func. Count: 99, Neg. LLF: 118.96901452887893
Optimization terminated successfully (Exit mode 0)
Current function value: 118.96901439227206
Iterations: 12
Function evaluations: 99
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 122.15681050708697
Iteration: 2, Func. Count: 20, Neg. LLF: 134.42902810725775
Iteration: 3, Func. Count: 30, Neg. LLF: 119.42574392603396
Iteration: 4, Func. Count: 39, Neg. LLF: 141.1293871204021
Iteration: 5, Func. Count: 49, Neg. LLF: 118.99150474953233
Iteration: 6, Func. Count: 58, Neg. LLF: 118.9743408426779
Iteration: 7, Func. Count: 67, Neg. LLF: 118.96929038622648
Iteration: 8, Func. Count: 76, Neg. LLF: 118.96907835434688
Iteration: 9, Func. Count: 85, Neg. LLF: 118.96902103156762
Iteration: 10, Func. Count: 94, Neg. LLF: 118.96901435185063
Iteration: 11, Func. Count: 102, Neg. LLF: 118.96901435393757
Optimization terminated successfully (Exit mode 0)
Current function value: 118.96901435185063
Iterations: 11
Function evaluations: 102
Gradient evaluations: 11
Iteration: 1, Func. Count: 11, Neg. LLF: 123.11029214366198
Iteration: 2, Func. Count: 22, Neg. LLF: 135.77630608814073
Iteration: 3, Func. Count: 33, Neg. LLF: 119.4680336631859
Iteration: 4, Func. Count: 43, Neg. LLF: 149.22854295604486
Iteration: 5, Func. Count: 54, Neg. LLF: 119.76225570431328
Iteration: 6, Func. Count: 65, Neg. LLF: 120.6106201561923
Iteration: 7, Func. Count: 76, Neg. LLF: 118.95312807679184
Iteration: 8, Func. Count: 86, Neg. LLF: 119.02936811272585
Iteration: 9, Func. Count: 97, Neg. LLF: 119.0986971028488
Iteration: 10, Func. Count: 108, Neg. LLF: 133.2837178577469
Iteration: 11, Func. Count: 119, Neg. LLF: 119.83674621207108
Iteration: 12, Func. Count: 130, Neg. LLF: 122.67784271395048
Iteration: 13, Func. Count: 141, Neg. LLF: 124.10717770133334
Iteration: 14, Func. Count: 152, Neg. LLF: 120.63657048068565
Iteration: 15, Func. Count: 163, Neg. LLF: 120.594197786511
Iteration: 16, Func. Count: 174, Neg. LLF: 120.67107956561063
Iteration: 17, Func. Count: 185, Neg. LLF: 119.86168780622019
Iteration: 18, Func. Count: 196, Neg. LLF: 118.60468041439887
Iteration: 19, Func. Count: 207, Neg. LLF: 117.81800730004817
Iteration: 20, Func. Count: 217, Neg. LLF: 117.32645963471518
Iteration: 21, Func. Count: 227, Neg. LLF: 117.15417144976635
Iteration: 22, Func. Count: 237, Neg. LLF: 116.94382919148298
Iteration: 23, Func. Count: 247, Neg. LLF: 116.9230977481721
Iteration: 24, Func. Count: 257, Neg. LLF: 116.91642692249602
Iteration: 25, Func. Count: 267, Neg. LLF: 116.91549538908177
Iteration: 26, Func. Count: 277, Neg. LLF: 116.91548240810026
Iteration: 27, Func. Count: 286, Neg. LLF: 116.915482408178
Optimization terminated successfully (Exit mode 0)
Current function value: 116.91548240810026
Iterations: 27
Function evaluations: 286
Gradient evaluations: 27
Iteration: 1, Func. Count: 12, Neg. LLF: 123.2155988349754
Iteration: 2, Func. Count: 24, Neg. LLF: 135.72342053479557
Iteration: 3, Func. Count: 36, Neg. LLF: 119.47552024925696
Iteration: 4, Func. Count: 47, Neg. LLF: 152.1203499344291
Iteration: 5, Func. Count: 59, Neg. LLF: 119.55288860093349
Iteration: 6, Func. Count: 71, Neg. LLF: 120.64160243331779
Iteration: 7, Func. Count: 83, Neg. LLF: 118.96079187586281
Iteration: 8, Func. Count: 94, Neg. LLF: 119.05969303255381
Iteration: 9, Func. Count: 106, Neg. LLF: 119.14346624395849
Iteration: 10, Func. Count: 118, Neg. LLF: 153.2155187202233
Iteration: 11, Func. Count: 130, Neg. LLF: 119.40708777465034
Iteration: 12, Func. Count: 142, Neg. LLF: 119.74224912393423
Iteration: 13, Func. Count: 154, Neg. LLF: 122.72755925761328
Iteration: 14, Func. Count: 166, Neg. LLF: 123.31173380181359
Iteration: 15, Func. Count: 178, Neg. LLF: 122.38958310996485
Iteration: 16, Func. Count: 190, Neg. LLF: 122.09710002446276
Iteration: 17, Func. Count: 202, Neg. LLF: 121.86917159266198
Iteration: 18, Func. Count: 214, Neg. LLF: 120.99818597888965
Iteration: 19, Func. Count: 226, Neg. LLF: 119.0666484145821
Iteration: 20, Func. Count: 238, Neg. LLF: 117.88891739875666
Iteration: 21, Func. Count: 249, Neg. LLF: 117.54416797408243
Iteration: 22, Func. Count: 260, Neg. LLF: 117.0688452892826
Iteration: 23, Func. Count: 271, Neg. LLF: 116.95272522247436
Iteration: 24, Func. Count: 282, Neg. LLF: 116.92376676582847
Iteration: 25, Func. Count: 293, Neg. LLF: 116.91579260990501
Iteration: 26, Func. Count: 304, Neg. LLF: 116.91548977120976
Iteration: 27, Func. Count: 315, Neg. LLF: 116.915482109554
Iteration: 28, Func. Count: 325, Neg. LLF: 116.91548235180919
Optimization terminated successfully (Exit mode 0)
Current function value: 116.915482109554
Iterations: 28
Function evaluations: 325
Gradient evaluations: 28
Iteration: 1, Func. Count: 9, Neg. LLF: 127.21224654688636
Iteration: 2, Func. Count: 18, Neg. LLF: 139.38405586614712
Iteration: 3, Func. Count: 27, Neg. LLF: 119.1216448646019
Iteration: 4, Func. Count: 35, Neg. LLF: 120.44668709668456
Iteration: 5, Func. Count: 45, Neg. LLF: 119.00162828180878
Iteration: 6, Func. Count: 53, Neg. LLF: 118.97602372939139
Iteration: 7, Func. Count: 61, Neg. LLF: 118.97440738942414
Iteration: 8, Func. Count: 69, Neg. LLF: 118.96996701981651
Iteration: 9, Func. Count: 77, Neg. LLF: 118.96917682918009
Iteration: 10, Func. Count: 85, Neg. LLF: 118.96902526297771
Iteration: 11, Func. Count: 93, Neg. LLF: 118.96901648573923
Iteration: 12, Func. Count: 101, Neg. LLF: 118.9690146644272
Iteration: 13, Func. Count: 108, Neg. LLF: 118.96901467248348
Optimization terminated successfully (Exit mode 0)
Current function value: 118.9690146644272
Iterations: 13
Function evaluations: 108
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 122.57110428623174
Iteration: 2, Func. Count: 20, Neg. LLF: 132.91432050046282
Iteration: 3, Func. Count: 30, Neg. LLF: 119.44387811573874
Iteration: 4, Func. Count: 39, Neg. LLF: 143.5904815151583
Iteration: 5, Func. Count: 49, Neg. LLF: 119.34653688561131
Iteration: 6, Func. Count: 59, Neg. LLF: 119.11344249549603
Iteration: 7, Func. Count: 68, Neg. LLF: 119.07483086768131
Iteration: 8, Func. Count: 77, Neg. LLF: 119.04289357241099
Iteration: 9, Func. Count: 86, Neg. LLF: 118.98839974590709
Iteration: 10, Func. Count: 95, Neg. LLF: 118.97149302387419
Iteration: 11, Func. Count: 104, Neg. LLF: 118.9690783524369
Iteration: 12, Func. Count: 113, Neg. LLF: 118.96901960437776
Iteration: 13, Func. Count: 122, Neg. LLF: 119.01354958248736
Iteration: 14, Func. Count: 133, Neg. LLF: 118.9690350294663
Optimization terminated successfully (Exit mode 0)
Current function value: 118.9690159997868
Iterations: 15
Function evaluations: 134
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 123.37691592379568
Iteration: 2, Func. Count: 22, Neg. LLF: 133.5075482814851
Iteration: 3, Func. Count: 33, Neg. LLF: 119.50825548660804
Iteration: 4, Func. Count: 43, Neg. LLF: 146.02023042140758
Iteration: 5, Func. Count: 54, Neg. LLF: 119.03585381955585
Iteration: 6, Func. Count: 64, Neg. LLF: 119.03760629876244
Iteration: 7, Func. Count: 75, Neg. LLF: 119.0137050642353
Iteration: 8, Func. Count: 86, Neg. LLF: 119.00073754201145
Iteration: 9, Func. Count: 96, Neg. LLF: 119.00063561540065
Iteration: 10, Func. Count: 106, Neg. LLF: 119.00062037412826
Iteration: 11, Func. Count: 116, Neg. LLF: 119.00061972297605
Optimization terminated successfully (Exit mode 0)
Current function value: 119.00061972297605
Iterations: 11
Function evaluations: 116
Gradient evaluations: 11
Iteration: 1, Func. Count: 12, Neg. LLF: 124.26782646073809
Iteration: 2, Func. Count: 24, Neg. LLF: 134.56952396330237
Iteration: 3, Func. Count: 36, Neg. LLF: 119.5502485850049
Iteration: 4, Func. Count: 47, Neg. LLF: 156.95811080821917
Iteration: 5, Func. Count: 59, Neg. LLF: 120.19724626690194
Iteration: 6, Func. Count: 71, Neg. LLF: 121.13423943983553
Iteration: 7, Func. Count: 83, Neg. LLF: 118.8939410177604
Iteration: 8, Func. Count: 94, Neg. LLF: 119.30533267694183
Iteration: 9, Func. Count: 106, Neg. LLF: 151.47799205119478
Iteration: 10, Func. Count: 118, Neg. LLF: 122.84043954729617
Iteration: 11, Func. Count: 130, Neg. LLF: 123.31265657808123
Iteration: 12, Func. Count: 142, Neg. LLF: 125.65448997932181
Iteration: 13, Func. Count: 154, Neg. LLF: 122.71671216495335
Iteration: 14, Func. Count: 166, Neg. LLF: 122.40816154094615
Iteration: 15, Func. Count: 178, Neg. LLF: 123.09625636511898
Iteration: 16, Func. Count: 190, Neg. LLF: 121.70693840865626
Iteration: 17, Func. Count: 202, Neg. LLF: 119.83615850046438
Iteration: 18, Func. Count: 214, Neg. LLF: 118.13048349094457
Iteration: 19, Func. Count: 226, Neg. LLF: 117.54175214504534
Iteration: 20, Func. Count: 237, Neg. LLF: 117.05939765657891
Iteration: 21, Func. Count: 248, Neg. LLF: 116.94066390733308
Iteration: 22, Func. Count: 259, Neg. LLF: 116.92067493355817
Iteration: 23, Func. Count: 270, Neg. LLF: 116.85376240188481
Iteration: 24, Func. Count: 281, Neg. LLF: 116.82790274130599
Iteration: 25, Func. Count: 292, Neg. LLF: 116.82167188645641
Iteration: 26, Func. Count: 303, Neg. LLF: 116.81632045875935
Iteration: 27, Func. Count: 314, Neg. LLF: 116.81627287606739
Iteration: 28, Func. Count: 325, Neg. LLF: 116.8162702706389
Iteration: 29, Func. Count: 335, Neg. LLF: 116.81627027058344
Optimization terminated successfully (Exit mode 0)
Current function value: 116.8162702706389
Iterations: 29
Function evaluations: 335
Gradient evaluations: 29
Iteration: 1, Func. Count: 13, Neg. LLF: 124.47166923825394
Iteration: 2, Func. Count: 26, Neg. LLF: 134.0942620338344
Iteration: 3, Func. Count: 39, Neg. LLF: 119.56392292406228
Iteration: 4, Func. Count: 51, Neg. LLF: 158.98344267580495
Iteration: 5, Func. Count: 64, Neg. LLF: 120.00323577286478
Iteration: 6, Func. Count: 77, Neg. LLF: 121.15301979960688
Iteration: 7, Func. Count: 90, Neg. LLF: 118.88794190089168
Iteration: 8, Func. Count: 102, Neg. LLF: 120.15897990141787
Iteration: 9, Func. Count: 115, Neg. LLF: 146.8477374258036
Iteration: 10, Func. Count: 128, Neg. LLF: 172.05216737068602
Iteration: 11, Func. Count: 141, Neg. LLF: 119.58763192824856
Iteration: 12, Func. Count: 154, Neg. LLF: 119.28637772214337
Iteration: 13, Func. Count: 167, Neg. LLF: 119.41027675402907
Iteration: 14, Func. Count: 180, Neg. LLF: 119.56615721627095
Iteration: 15, Func. Count: 193, Neg. LLF: 119.98703443579632
Iteration: 16, Func. Count: 206, Neg. LLF: 118.92304522684555
Iteration: 17, Func. Count: 219, Neg. LLF: 117.5558791431232
Iteration: 18, Func. Count: 231, Neg. LLF: 117.04254120465129
Iteration: 19, Func. Count: 243, Neg. LLF: 116.94268415449741
Iteration: 20, Func. Count: 255, Neg. LLF: 116.99844709063902
Iteration: 21, Func. Count: 268, Neg. LLF: 116.85060833588038
Iteration: 22, Func. Count: 280, Neg. LLF: 116.82592726095892
Iteration: 23, Func. Count: 292, Neg. LLF: 116.8187927453269
Iteration: 24, Func. Count: 304, Neg. LLF: 116.81645167681071
Iteration: 25, Func. Count: 316, Neg. LLF: 116.81627368421769
Iteration: 26, Func. Count: 328, Neg. LLF: 116.81627032224606
Iteration: 27, Func. Count: 339, Neg. LLF: 116.8162705345372
Optimization terminated successfully (Exit mode 0)
Current function value: 116.81627032224606
Iterations: 27
Function evaluations: 339
Gradient evaluations: 27
Iteration: 1, Func. Count: 6, Neg. LLF: 123.17207838926839
Iteration: 2, Func. Count: 12, Neg. LLF: 123.74506248171225
Iteration: 3, Func. Count: 19, Neg. LLF: 122.34268524822528
Iteration: 4, Func. Count: 25, Neg. LLF: 121.75741386778581
Iteration: 5, Func. Count: 31, Neg. LLF: 121.50293981078384
Iteration: 6, Func. Count: 36, Neg. LLF: 122.62299428484921
Iteration: 7, Func. Count: 42, Neg. LLF: 121.52371908097975
Iteration: 8, Func. Count: 48, Neg. LLF: 121.41588679364739
Iteration: 9, Func. Count: 53, Neg. LLF: 121.41517223411202
Iteration: 10, Func. Count: 58, Neg. LLF: 121.41507461484689
Iteration: 11, Func. Count: 63, Neg. LLF: 121.4150578979725
Iteration: 12, Func. Count: 68, Neg. LLF: 121.41505080929696
Iteration: 13, Func. Count: 72, Neg. LLF: 121.41505080927095
Optimization terminated successfully (Exit mode 0)
Current function value: 121.41505080929696
Iterations: 13
Function evaluations: 72
Gradient evaluations: 13
Iteration: 1, Func. Count: 7, Neg. LLF: 122.7915077363422
Iteration: 2, Func. Count: 14, Neg. LLF: 123.37413669090472
Iteration: 3, Func. Count: 21, Neg. LLF: 122.14482450246702
Iteration: 4, Func. Count: 28, Neg. LLF: 145.87493165229225
Iteration: 5, Func. Count: 35, Neg. LLF: 132.27364148191006
Iteration: 6, Func. Count: 42, Neg. LLF: 122.64021587458365
Iteration: 7, Func. Count: 49, Neg. LLF: 121.88245054588059
Iteration: 8, Func. Count: 56, Neg. LLF: 121.44364962915137
Iteration: 9, Func. Count: 62, Neg. LLF: 121.40599454008691
Iteration: 10, Func. Count: 68, Neg. LLF: 121.4027729001006
Iteration: 11, Func. Count: 74, Neg. LLF: 121.40018117060018
Iteration: 12, Func. Count: 80, Neg. LLF: 121.39975262328188
Iteration: 13, Func. Count: 86, Neg. LLF: 121.39965289856212
Iteration: 14, Func. Count: 92, Neg. LLF: 121.39964321851949
Iteration: 15, Func. Count: 97, Neg. LLF: 121.39964321850273
Optimization terminated successfully (Exit mode 0)
Current function value: 121.39964321851949
Iterations: 15
Function evaluations: 97
Gradient evaluations: 15
Iteration: 1, Func. Count: 8, Neg. LLF: 123.05886166423274
Iteration: 2, Func. Count: 16, Neg. LLF: 123.38047688068076
Iteration: 3, Func. Count: 24, Neg. LLF: 121.64271604802933
Iteration: 4, Func. Count: 31, Neg. LLF: 132.55304216039167
Iteration: 5, Func. Count: 39, Neg. LLF: 123.97600409715353
Iteration: 6, Func. Count: 47, Neg. LLF: 121.5357871444898
Iteration: 7, Func. Count: 55, Neg. LLF: 121.4425709188082
Iteration: 8, Func. Count: 62, Neg. LLF: 121.40677114459187
Iteration: 9, Func. Count: 69, Neg. LLF: 121.40042533259243
Iteration: 10, Func. Count: 76, Neg. LLF: 121.39969783388607
Iteration: 11, Func. Count: 83, Neg. LLF: 121.39964877499953
Iteration: 12, Func. Count: 90, Neg. LLF: 121.39964470440623
Iteration: 13, Func. Count: 97, Neg. LLF: 121.39964305074216
Iteration: 14, Func. Count: 103, Neg. LLF: 121.399643094171
Optimization terminated successfully (Exit mode 0)
Current function value: 121.39964305074216
Iterations: 14
Function evaluations: 103
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 123.23362248296829
Iteration: 2, Func. Count: 18, Neg. LLF: 123.18891056069307
Iteration: 3, Func. Count: 27, Neg. LLF: 123.27664981278909
Iteration: 4, Func. Count: 36, Neg. LLF: 126.79207630575505
Iteration: 5, Func. Count: 45, Neg. LLF: 121.47594413301606
Iteration: 6, Func. Count: 53, Neg. LLF: 125.62879339861144
Iteration: 7, Func. Count: 62, Neg. LLF: 121.53308058553918
Iteration: 8, Func. Count: 71, Neg. LLF: 121.40316375239922
Iteration: 9, Func. Count: 79, Neg. LLF: 121.40110672422962
Iteration: 10, Func. Count: 87, Neg. LLF: 121.40007338684005
Iteration: 11, Func. Count: 95, Neg. LLF: 121.39966134428259
Iteration: 12, Func. Count: 103, Neg. LLF: 121.39964377499771
Iteration: 13, Func. Count: 111, Neg. LLF: 121.39964305718588
Optimization terminated successfully (Exit mode 0)
Current function value: 121.39964305718588
Iterations: 13
Function evaluations: 111
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 123.14792550483435
Iteration: 2, Func. Count: 20, Neg. LLF: 122.93881072133603
Iteration: 3, Func. Count: 30, Neg. LLF: 150.17509549569436
Iteration: 4, Func. Count: 40, Neg. LLF: 122.65874188322664
Iteration: 5, Func. Count: 50, Neg. LLF: 121.50631725337173
Iteration: 6, Func. Count: 59, Neg. LLF: 126.512225633622
Iteration: 7, Func. Count: 69, Neg. LLF: 121.47399578606903
Iteration: 8, Func. Count: 79, Neg. LLF: 121.42015826492498
Iteration: 9, Func. Count: 88, Neg. LLF: 121.41050858747646
Iteration: 10, Func. Count: 97, Neg. LLF: 121.40095795080471
Iteration: 11, Func. Count: 106, Neg. LLF: 121.3998868091299
Iteration: 12, Func. Count: 115, Neg. LLF: 121.39969360439851
Iteration: 13, Func. Count: 124, Neg. LLF: 121.39964319818837
Iteration: 14, Func. Count: 132, Neg. LLF: 121.39964331569239
Optimization terminated successfully (Exit mode 0)
Current function value: 121.39964319818837
Iterations: 14
Function evaluations: 132
Gradient evaluations: 14
Iteration: 1, Func. Count: 7, Neg. LLF: 120.46885269321993
Iteration: 2, Func. Count: 14, Neg. LLF: 126.15433085030023
Iteration: 3, Func. Count: 21, Neg. LLF: 119.11108600750846
Iteration: 4, Func. Count: 27, Neg. LLF: 119.07865534905119
Iteration: 5, Func. Count: 33, Neg. LLF: 119.06529008376545
Iteration: 6, Func. Count: 39, Neg. LLF: 119.03323638009634
Iteration: 7, Func. Count: 45, Neg. LLF: 119.02385964594325
Iteration: 8, Func. Count: 51, Neg. LLF: 119.01993540228735
Iteration: 9, Func. Count: 57, Neg. LLF: 119.01987401627407
Iteration: 10, Func. Count: 62, Neg. LLF: 119.01987401628016
Optimization terminated successfully (Exit mode 0)
Current function value: 119.01987401627407
Iterations: 10
Function evaluations: 62
Gradient evaluations: 10
Iteration: 1, Func. Count: 8, Neg. LLF: 120.36206689475213
Iteration: 2, Func. Count: 15, Neg. LLF: 120.58123046612586
Iteration: 3, Func. Count: 23, Neg. LLF: 120.98112376002322
Iteration: 4, Func. Count: 31, Neg. LLF: 119.25486190089018
Iteration: 5, Func. Count: 38, Neg. LLF: 132.89508726439178
Iteration: 6, Func. Count: 46, Neg. LLF: 119.33201957716008
Iteration: 7, Func. Count: 54, Neg. LLF: 119.0251089353783
Iteration: 8, Func. Count: 61, Neg. LLF: 119.01999526486695
Iteration: 9, Func. Count: 68, Neg. LLF: 119.0198799597842
Iteration: 10, Func. Count: 75, Neg. LLF: 119.01987428906243
Iteration: 11, Func. Count: 81, Neg. LLF: 119.01987443156906
Optimization terminated successfully (Exit mode 0)
Current function value: 119.01987428906243
Iterations: 11
Function evaluations: 81
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 120.55490741416563
Iteration: 2, Func. Count: 17, Neg. LLF: 121.78877913707448
Iteration: 3, Func. Count: 26, Neg. LLF: 131.25135917129617
Iteration: 4, Func. Count: 35, Neg. LLF: 132.71659520128944
Iteration: 5, Func. Count: 44, Neg. LLF: 133.16927837130487
Iteration: 6, Func. Count: 53, Neg. LLF: 120.37818438639725
Iteration: 7, Func. Count: 62, Neg. LLF: 119.03726741298361
Iteration: 8, Func. Count: 71, Neg. LLF: 118.97934384406459
Iteration: 9, Func. Count: 79, Neg. LLF: 118.97260270592227
Iteration: 10, Func. Count: 87, Neg. LLF: 118.97209608449764
Iteration: 11, Func. Count: 95, Neg. LLF: 118.97204042910104
Iteration: 12, Func. Count: 103, Neg. LLF: 118.9720389913057
Iteration: 13, Func. Count: 110, Neg. LLF: 118.97203899130118
Optimization terminated successfully (Exit mode 0)
Current function value: 118.9720389913057
Iterations: 13
Function evaluations: 110
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 120.87662339304246
Iteration: 2, Func. Count: 20, Neg. LLF: 124.81448066608634
Iteration: 3, Func. Count: 30, Neg. LLF: 119.4998179482342
Iteration: 4, Func. Count: 39, Neg. LLF: 133.0891222141545
Iteration: 5, Func. Count: 49, Neg. LLF: 126.08579752799656
Iteration: 6, Func. Count: 59, Neg. LLF: 119.02385948667973
Iteration: 7, Func. Count: 69, Neg. LLF: 119.27892562630767
Iteration: 8, Func. Count: 79, Neg. LLF: 118.94602161257757
Iteration: 9, Func. Count: 88, Neg. LLF: 118.40444788124947
Iteration: 10, Func. Count: 97, Neg. LLF: 119.24606019080528
Iteration: 11, Func. Count: 107, Neg. LLF: 123.697949029675
Iteration: 12, Func. Count: 117, Neg. LLF: 137.6449222445284
Iteration: 13, Func. Count: 127, Neg. LLF: 128.91773206655373
Iteration: 14, Func. Count: 137, Neg. LLF: 117.00847301431743
Iteration: 15, Func. Count: 146, Neg. LLF: 116.9267927982828
Iteration: 16, Func. Count: 155, Neg. LLF: 116.91701386244522
Iteration: 17, Func. Count: 164, Neg. LLF: 116.91567320355217
Iteration: 18, Func. Count: 173, Neg. LLF: 116.91549964851338
Iteration: 19, Func. Count: 182, Neg. LLF: 116.91548192093327
Iteration: 20, Func. Count: 190, Neg. LLF: 116.91548192094237
Optimization terminated successfully (Exit mode 0)
Current function value: 116.91548192093327
Iterations: 20
Function evaluations: 190
Gradient evaluations: 20
Iteration: 1, Func. Count: 11, Neg. LLF: 120.84913907719154
Iteration: 2, Func. Count: 22, Neg. LLF: 124.5441181693405
Iteration: 3, Func. Count: 33, Neg. LLF: 119.47998811554115
Iteration: 4, Func. Count: 43, Neg. LLF: 133.0613241880728
Iteration: 5, Func. Count: 54, Neg. LLF: 125.94006555858107
Iteration: 6, Func. Count: 65, Neg. LLF: 119.03730732718887
Iteration: 7, Func. Count: 76, Neg. LLF: 119.37086062354726
Iteration: 8, Func. Count: 87, Neg. LLF: 118.95981700677065
Iteration: 9, Func. Count: 97, Neg. LLF: 118.62152843551988
Iteration: 10, Func. Count: 107, Neg. LLF: 208.08101878009015
Iteration: 11, Func. Count: 118, Neg. LLF: 120.15419680886636
Iteration: 12, Func. Count: 129, Neg. LLF: 120.46074780465221
Iteration: 13, Func. Count: 140, Neg. LLF: 117.01054011569217
Iteration: 14, Func. Count: 150, Neg. LLF: 117.36846716492502
Iteration: 15, Func. Count: 161, Neg. LLF: 116.92990952127475
Iteration: 16, Func. Count: 171, Neg. LLF: 116.91645448770674
Iteration: 17, Func. Count: 181, Neg. LLF: 116.91572307296947
Iteration: 18, Func. Count: 191, Neg. LLF: 116.91548285136508
Iteration: 19, Func. Count: 201, Neg. LLF: 116.91548191585552
Optimization terminated successfully (Exit mode 0)
Current function value: 116.91548191585552
Iterations: 19
Function evaluations: 201
Gradient evaluations: 19
Iteration: 1, Func. Count: 8, Neg. LLF: 120.17064583344582
Iteration: 2, Func. Count: 16, Neg. LLF: 121.85742282128291
Iteration: 3, Func. Count: 24, Neg. LLF: 119.1271766264351
Iteration: 4, Func. Count: 31, Neg. LLF: 124.93430611906159
Iteration: 5, Func. Count: 39, Neg. LLF: 118.99063200858083
Iteration: 6, Func. Count: 46, Neg. LLF: 118.91824957789153
Iteration: 7, Func. Count: 53, Neg. LLF: 118.91158864357102
Iteration: 8, Func. Count: 60, Neg. LLF: 118.90124872276155
Iteration: 9, Func. Count: 67, Neg. LLF: 118.89403705899157
Iteration: 10, Func. Count: 74, Neg. LLF: 118.8895592937009
Iteration: 11, Func. Count: 81, Neg. LLF: 118.88738365120449
Iteration: 12, Func. Count: 88, Neg. LLF: 118.88665524004787
Iteration: 13, Func. Count: 95, Neg. LLF: 118.88630676129189
Iteration: 14, Func. Count: 102, Neg. LLF: 118.8860392706752
Iteration: 15, Func. Count: 109, Neg. LLF: 118.8840408350583
Iteration: 16, Func. Count: 116, Neg. LLF: 129.17114886181412
Iteration: 17, Func. Count: 124, Neg. LLF: 129.27469231991688
Iteration: 18, Func. Count: 132, Neg. LLF: 129.17645051623126
Iteration: 19, Func. Count: 140, Neg. LLF: 120.75077062299871
Iteration: 20, Func. Count: 148, Neg. LLF: 128.38451673203681
Iteration: 21, Func. Count: 156, Neg. LLF: 118.87107689354887
Iteration: 22, Func. Count: 164, Neg. LLF: 118.92437124134796
Iteration: 23, Func. Count: 172, Neg. LLF: 118.77598644912169
Iteration: 24, Func. Count: 179, Neg. LLF: 118.7750072694808
Iteration: 25, Func. Count: 186, Neg. LLF: 118.77497813180281
Iteration: 26, Func. Count: 193, Neg. LLF: 118.77497732854768
Optimization terminated successfully (Exit mode 0)
Current function value: 118.77497732854768
Iterations: 26
Function evaluations: 193
Gradient evaluations: 26
Iteration: 1, Func. Count: 9, Neg. LLF: 120.18746326581352
Iteration: 2, Func. Count: 17, Neg. LLF: 120.24235674210101
Iteration: 3, Func. Count: 27, Neg. LLF: 119.0440766731533
Iteration: 4, Func. Count: 35, Neg. LLF: 122.59717904131087
Iteration: 5, Func. Count: 44, Neg. LLF: 119.12672148655406
Iteration: 6, Func. Count: 53, Neg. LLF: 118.88771446366562
Iteration: 7, Func. Count: 61, Neg. LLF: 118.88637962458817
Iteration: 8, Func. Count: 69, Neg. LLF: 118.88634699947212
Iteration: 9, Func. Count: 77, Neg. LLF: 118.88630061982299
Iteration: 10, Func. Count: 85, Neg. LLF: 118.88619166249855
Iteration: 11, Func. Count: 93, Neg. LLF: 118.88592673915579
Iteration: 12, Func. Count: 101, Neg. LLF: 118.87709288807248
Iteration: 13, Func. Count: 109, Neg. LLF: 128.80480282788568
Iteration: 14, Func. Count: 118, Neg. LLF: 128.86804495265423
Iteration: 15, Func. Count: 127, Neg. LLF: 132.68435581175018
Iteration: 16, Func. Count: 136, Neg. LLF: 129.97246934880116
Iteration: 17, Func. Count: 145, Neg. LLF: 120.77026647069343
Iteration: 18, Func. Count: 155, Neg. LLF: 122.87301282964117
Iteration: 19, Func. Count: 164, Neg. LLF: 118.78654653991549
Iteration: 20, Func. Count: 172, Neg. LLF: 118.78107815617885
Iteration: 21, Func. Count: 180, Neg. LLF: 118.77988892494818
Iteration: 22, Func. Count: 188, Neg. LLF: 118.77911122158883
Iteration: 23, Func. Count: 196, Neg. LLF: 118.77816318603026
Iteration: 24, Func. Count: 204, Neg. LLF: 118.77606550928694
Iteration: 25, Func. Count: 212, Neg. LLF: 118.77541786483287
Iteration: 26, Func. Count: 220, Neg. LLF: 118.77502884481954
Iteration: 27, Func. Count: 228, Neg. LLF: 118.77498001204017
Iteration: 28, Func. Count: 236, Neg. LLF: 118.77497730064687
Iteration: 29, Func. Count: 243, Neg. LLF: 118.77497733025714
Optimization terminated successfully (Exit mode 0)
Current function value: 118.77497730064687
Iterations: 29
Function evaluations: 243
Gradient evaluations: 29
Iteration: 1, Func. Count: 10, Neg. LLF: 120.3396841173364
Iteration: 2, Func. Count: 19, Neg. LLF: 121.97145489970238
Iteration: 3, Func. Count: 29, Neg. LLF: 119.00849512711281
Iteration: 4, Func. Count: 38, Neg. LLF: 123.71005398673958
Iteration: 5, Func. Count: 48, Neg. LLF: 119.25982371207873
Iteration: 6, Func. Count: 58, Neg. LLF: 118.88450027026929
Iteration: 7, Func. Count: 67, Neg. LLF: 118.8826704872999
Iteration: 8, Func. Count: 76, Neg. LLF: 118.88127342312491
Iteration: 9, Func. Count: 85, Neg. LLF: 118.86648457121461
Iteration: 10, Func. Count: 94, Neg. LLF: 119.01397332681091
Iteration: 11, Func. Count: 104, Neg. LLF: 118.83831137768892
Iteration: 12, Func. Count: 113, Neg. LLF: 118.79745318559007
Iteration: 13, Func. Count: 122, Neg. LLF: 118.77758644150026
Iteration: 14, Func. Count: 131, Neg. LLF: 118.7752151457854
Iteration: 15, Func. Count: 140, Neg. LLF: 118.77508545593682
Iteration: 16, Func. Count: 149, Neg. LLF: 118.77497877959222
Iteration: 17, Func. Count: 158, Neg. LLF: 118.77497729305345
Iteration: 18, Func. Count: 166, Neg. LLF: 118.77497738693185
Optimization terminated successfully (Exit mode 0)
Current function value: 118.77497729305345
Iterations: 18
Function evaluations: 166
Gradient evaluations: 18
Iteration: 1, Func. Count: 11, Neg. LLF: 120.48615786594084
Iteration: 2, Func. Count: 21, Neg. LLF: 123.6411966670411
Iteration: 3, Func. Count: 32, Neg. LLF: 120.07414731079493
Iteration: 4, Func. Count: 43, Neg. LLF: 130.50033880574478
Iteration: 5, Func. Count: 54, Neg. LLF: 131.32612561617958
Iteration: 6, Func. Count: 65, Neg. LLF: 131.12429981386342
Iteration: 7, Func. Count: 76, Neg. LLF: 130.8639061347569
Iteration: 8, Func. Count: 87, Neg. LLF: 130.9725491935718
Iteration: 9, Func. Count: 98, Neg. LLF: 119.38811875955197
Iteration: 10, Func. Count: 109, Neg. LLF: 118.88958571127138
Iteration: 11, Func. Count: 119, Neg. LLF: 118.88989354563817
Iteration: 12, Func. Count: 130, Neg. LLF: 118.88359902542294
Iteration: 13, Func. Count: 140, Neg. LLF: 118.88173682493365
Iteration: 14, Func. Count: 150, Neg. LLF: 118.87500775301596
Iteration: 15, Func. Count: 160, Neg. LLF: 118.86608003021969
Iteration: 16, Func. Count: 170, Neg. LLF: 118.82233727811081
Iteration: 17, Func. Count: 180, Neg. LLF: 119.04170382913955
Iteration: 18, Func. Count: 192, Neg. LLF: 118.83954901926624
Iteration: 19, Func. Count: 203, Neg. LLF: 118.7831246120482
Iteration: 20, Func. Count: 213, Neg. LLF: 118.77441669568236
Iteration: 21, Func. Count: 223, Neg. LLF: 118.76831674791336
Iteration: 22, Func. Count: 233, Neg. LLF: 118.76605308247404
Iteration: 23, Func. Count: 243, Neg. LLF: 118.7635883441791
Iteration: 24, Func. Count: 253, Neg. LLF: 118.76357505118914
Iteration: 25, Func. Count: 262, Neg. LLF: 118.7635750511692
Optimization terminated successfully (Exit mode 0)
Current function value: 118.76357505118914
Iterations: 25
Function evaluations: 262
Gradient evaluations: 25
Iteration: 1, Func. Count: 12, Neg. LLF: 120.44913891969614
Iteration: 2, Func. Count: 23, Neg. LLF: 123.43028003075075
Iteration: 3, Func. Count: 35, Neg. LLF: 119.19065683209305
Iteration: 4, Func. Count: 46, Neg. LLF: 180.21827357946833
Iteration: 5, Func. Count: 59, Neg. LLF: 119.08852683904162
Iteration: 6, Func. Count: 71, Neg. LLF: 118.90896673861964
Iteration: 7, Func. Count: 82, Neg. LLF: 118.90535791722853
Iteration: 8, Func. Count: 93, Neg. LLF: 118.89450271656067
Iteration: 9, Func. Count: 104, Neg. LLF: 118.8905065074316
Iteration: 10, Func. Count: 115, Neg. LLF: 118.88896434044952
Iteration: 11, Func. Count: 126, Neg. LLF: 118.88817241953474
Iteration: 12, Func. Count: 137, Neg. LLF: 118.88725742657769
Iteration: 13, Func. Count: 148, Neg. LLF: 118.88657172661316
Iteration: 14, Func. Count: 159, Neg. LLF: 118.88551425195794
Iteration: 15, Func. Count: 170, Neg. LLF: 118.9102016507339
Iteration: 16, Func. Count: 182, Neg. LLF: 131.11033104854852
Iteration: 17, Func. Count: 194, Neg. LLF: 131.34292988179158
Iteration: 18, Func. Count: 206, Neg. LLF: 118.87982873031167
Iteration: 19, Func. Count: 218, Neg. LLF: 118.87572360161782
Iteration: 20, Func. Count: 229, Neg. LLF: 118.87022005230827
Iteration: 21, Func. Count: 240, Neg. LLF: 118.85835188740344
Iteration: 22, Func. Count: 251, Neg. LLF: 118.84322198009794
Iteration: 23, Func. Count: 262, Neg. LLF: 118.82031913693022
Iteration: 24, Func. Count: 273, Neg. LLF: 119.22337253047036
Iteration: 25, Func. Count: 285, Neg. LLF: 118.78152277322309
Iteration: 26, Func. Count: 296, Neg. LLF: 118.76731176556126
Iteration: 27, Func. Count: 307, Neg. LLF: 118.76411245903523
Iteration: 28, Func. Count: 318, Neg. LLF: 118.76382021783047
Iteration: 29, Func. Count: 329, Neg. LLF: 118.76359378742005
Iteration: 30, Func. Count: 340, Neg. LLF: 118.76357585780829
Iteration: 31, Func. Count: 351, Neg. LLF: 118.76357500672523
Optimization terminated successfully (Exit mode 0)
Current function value: 118.76357500672523
Iterations: 31
Function evaluations: 351
Gradient evaluations: 31
Iteration: 1, Func. Count: 9, Neg. LLF: 120.22770296470003
Iteration: 2, Func. Count: 18, Neg. LLF: 124.11145323627298
Iteration: 3, Func. Count: 27, Neg. LLF: 119.11955622392898
Iteration: 4, Func. Count: 35, Neg. LLF: 161.54950277062522
Iteration: 5, Func. Count: 44, Neg. LLF: 118.96998633112966
Iteration: 6, Func. Count: 52, Neg. LLF: 118.904149540669
Iteration: 7, Func. Count: 60, Neg. LLF: 118.90106988233417
Iteration: 8, Func. Count: 68, Neg. LLF: 118.89879772038974
Iteration: 9, Func. Count: 76, Neg. LLF: 118.89742908366769
Iteration: 10, Func. Count: 84, Neg. LLF: 118.89422677991926
Iteration: 11, Func. Count: 92, Neg. LLF: 118.89010578467631
Iteration: 12, Func. Count: 100, Neg. LLF: 118.88707462592545
Iteration: 13, Func. Count: 108, Neg. LLF: 118.88640065315882
Iteration: 14, Func. Count: 116, Neg. LLF: 118.88629210632512
Iteration: 15, Func. Count: 124, Neg. LLF: 118.88613260585323
Iteration: 16, Func. Count: 132, Neg. LLF: 118.88515537030266
Iteration: 17, Func. Count: 140, Neg. LLF: 121.8357939476032
Iteration: 18, Func. Count: 149, Neg. LLF: 128.94529050835024
Iteration: 19, Func. Count: 158, Neg. LLF: 129.03870355605358
Iteration: 20, Func. Count: 167, Neg. LLF: 131.58935013142303
Iteration: 21, Func. Count: 176, Neg. LLF: 129.60634948909276
Iteration: 22, Func. Count: 185, Neg. LLF: 118.95309314914297
Iteration: 23, Func. Count: 194, Neg. LLF: 129.30321274737418
Iteration: 24, Func. Count: 203, Neg. LLF: 118.77550770766588
Iteration: 25, Func. Count: 211, Neg. LLF: 118.77507992870133
Iteration: 26, Func. Count: 219, Neg. LLF: 118.77499201339371
Iteration: 27, Func. Count: 227, Neg. LLF: 118.77497669198705
Iteration: 28, Func. Count: 235, Neg. LLF: 118.77497420900156
Iteration: 29, Func. Count: 243, Neg. LLF: 118.77497629797034
Optimization terminated successfully (Exit mode 0)
Current function value: 118.77497421259122
Iterations: 29
Function evaluations: 253
Gradient evaluations: 29
Iteration: 1, Func. Count: 10, Neg. LLF: 120.20619154960801
Iteration: 2, Func. Count: 19, Neg. LLF: 121.21022546948956
Iteration: 3, Func. Count: 30, Neg. LLF: 119.857981505691
Iteration: 4, Func. Count: 40, Neg. LLF: 128.4609107454417
Iteration: 5, Func. Count: 50, Neg. LLF: 119.1801193510459
Iteration: 6, Func. Count: 60, Neg. LLF: 118.89785210156296
Iteration: 7, Func. Count: 69, Neg. LLF: 118.8905091197369
Iteration: 8, Func. Count: 78, Neg. LLF: 118.88777550981749
Iteration: 9, Func. Count: 87, Neg. LLF: 118.88732133413257
Iteration: 10, Func. Count: 96, Neg. LLF: 118.88691552476959
Iteration: 11, Func. Count: 105, Neg. LLF: 118.88648383521351
Iteration: 12, Func. Count: 114, Neg. LLF: 118.88615338277387
Iteration: 13, Func. Count: 123, Neg. LLF: 118.88575234784935
Iteration: 14, Func. Count: 132, Neg. LLF: 118.86125508355393
Iteration: 15, Func. Count: 141, Neg. LLF: 129.33575849517803
Iteration: 16, Func. Count: 151, Neg. LLF: 130.38674680300727
Iteration: 17, Func. Count: 161, Neg. LLF: 127.12080907413859
Iteration: 18, Func. Count: 171, Neg. LLF: 119.51125303542031
Iteration: 19, Func. Count: 181, Neg. LLF: 118.78181325338807
Iteration: 20, Func. Count: 190, Neg. LLF: 118.77614131233118
Iteration: 21, Func. Count: 199, Neg. LLF: 118.77520922606699
Iteration: 22, Func. Count: 208, Neg. LLF: 118.77498275117759
Iteration: 23, Func. Count: 217, Neg. LLF: 118.7749774603192
Iteration: 24, Func. Count: 225, Neg. LLF: 118.77497748988935
Optimization terminated successfully (Exit mode 0)
Current function value: 118.7749774603192
Iterations: 24
Function evaluations: 225
Gradient evaluations: 24
Iteration: 1, Func. Count: 11, Neg. LLF: 120.40500948589558
Iteration: 2, Func. Count: 21, Neg. LLF: 124.54238219132176
Iteration: 3, Func. Count: 32, Neg. LLF: 122.28835998381408
Iteration: 4, Func. Count: 43, Neg. LLF: 130.1010330050331
Iteration: 5, Func. Count: 54, Neg. LLF: 131.53321321685206
Iteration: 6, Func. Count: 65, Neg. LLF: 132.11168306335162
Iteration: 7, Func. Count: 76, Neg. LLF: 130.64174628549233
Iteration: 8, Func. Count: 87, Neg. LLF: 120.49018759238614
Iteration: 9, Func. Count: 98, Neg. LLF: 119.06103264015465
Iteration: 10, Func. Count: 109, Neg. LLF: 118.88643405965462
Iteration: 11, Func. Count: 119, Neg. LLF: 118.8860992271412
Iteration: 12, Func. Count: 129, Neg. LLF: 118.8859678526621
Iteration: 13, Func. Count: 139, Neg. LLF: 118.88584896941444
Iteration: 14, Func. Count: 149, Neg. LLF: 118.8858093204383
Iteration: 15, Func. Count: 159, Neg. LLF: 118.88546075216733
Iteration: 16, Func. Count: 169, Neg. LLF: 118.86815414546527
Iteration: 17, Func. Count: 179, Neg. LLF: 128.64758040463397
Iteration: 18, Func. Count: 190, Neg. LLF: 128.66998342267894
Iteration: 19, Func. Count: 201, Neg. LLF: 129.09954668482845
Iteration: 20, Func. Count: 212, Neg. LLF: 122.2724067334628
Iteration: 21, Func. Count: 224, Neg. LLF: 118.95356492903255
Iteration: 22, Func. Count: 235, Neg. LLF: 118.77780729409386
Iteration: 23, Func. Count: 245, Neg. LLF: 118.77511831714152
Iteration: 24, Func. Count: 255, Neg. LLF: 118.77501304185321
Iteration: 25, Func. Count: 265, Neg. LLF: 118.77498453104822
Iteration: 26, Func. Count: 275, Neg. LLF: 118.77497807926828
Iteration: 27, Func. Count: 285, Neg. LLF: 118.77497728578575
Optimization terminated successfully (Exit mode 0)
Current function value: 118.77497728578575
Iterations: 27
Function evaluations: 285
Gradient evaluations: 27
Iteration: 1, Func. Count: 12, Neg. LLF: 120.59591059845468
Iteration: 2, Func. Count: 23, Neg. LLF: 129.01399531523646
Iteration: 3, Func. Count: 35, Neg. LLF: 121.73160608530321
Iteration: 4, Func. Count: 47, Neg. LLF: 129.22259463554627
Iteration: 5, Func. Count: 59, Neg. LLF: 130.92442579356486
Iteration: 6, Func. Count: 71, Neg. LLF: 130.0432361899512
Iteration: 7, Func. Count: 83, Neg. LLF: 129.52861680476863
Iteration: 8, Func. Count: 95, Neg. LLF: 129.55699477539443
Iteration: 9, Func. Count: 107, Neg. LLF: 130.41525449850147
Iteration: 10, Func. Count: 119, Neg. LLF: 120.106475039061
Iteration: 11, Func. Count: 131, Neg. LLF: 118.9016321381663
Iteration: 12, Func. Count: 142, Neg. LLF: 118.89083352942711
Iteration: 13, Func. Count: 153, Neg. LLF: 118.88734475400021
Iteration: 14, Func. Count: 164, Neg. LLF: 118.88519722597165
Iteration: 15, Func. Count: 175, Neg. LLF: 118.88478466846578
Iteration: 16, Func. Count: 186, Neg. LLF: 118.88195078906742
Iteration: 17, Func. Count: 197, Neg. LLF: 118.87324079477096
Iteration: 18, Func. Count: 208, Neg. LLF: 119.13685507707106
Iteration: 19, Func. Count: 220, Neg. LLF: 127.92857972217121
Iteration: 20, Func. Count: 232, Neg. LLF: 128.0706205837515
Iteration: 21, Func. Count: 244, Neg. LLF: 120.56057694195025
Iteration: 22, Func. Count: 257, Neg. LLF: 128.23681616536211
Iteration: 23, Func. Count: 269, Neg. LLF: 118.81511154375929
Iteration: 24, Func. Count: 280, Neg. LLF: 118.8008847197393
Iteration: 25, Func. Count: 291, Neg. LLF: 118.76674041546778
Iteration: 26, Func. Count: 302, Neg. LLF: 118.76418783397294
Iteration: 27, Func. Count: 313, Neg. LLF: 118.76364746540482
Iteration: 28, Func. Count: 324, Neg. LLF: 118.76359062087431
Iteration: 29, Func. Count: 335, Neg. LLF: 118.76357686462163
Iteration: 30, Func. Count: 346, Neg. LLF: 118.7635751000798
Iteration: 31, Func. Count: 356, Neg. LLF: 118.76357510011813
Optimization terminated successfully (Exit mode 0)
Current function value: 118.7635751000798
Iterations: 31
Function evaluations: 356
Gradient evaluations: 31
Iteration: 1, Func. Count: 13, Neg. LLF: 120.52067406805685
Iteration: 2, Func. Count: 25, Neg. LLF: 128.0530046055109
Iteration: 3, Func. Count: 38, Neg. LLF: 121.70280720265696
Iteration: 4, Func. Count: 51, Neg. LLF: 129.31197105531376
Iteration: 5, Func. Count: 64, Neg. LLF: 131.0196263801169
Iteration: 6, Func. Count: 77, Neg. LLF: 130.2836767415914
Iteration: 7, Func. Count: 90, Neg. LLF: 129.4910823415604
Iteration: 8, Func. Count: 103, Neg. LLF: 130.30595975040688
Iteration: 9, Func. Count: 116, Neg. LLF: 130.09500822353124
Iteration: 10, Func. Count: 129, Neg. LLF: 119.19220383995005
Iteration: 11, Func. Count: 142, Neg. LLF: 118.89235448010565
Iteration: 12, Func. Count: 154, Neg. LLF: 118.88597362321147
Iteration: 13, Func. Count: 166, Neg. LLF: 118.88530998504308
Iteration: 14, Func. Count: 178, Neg. LLF: 118.88422337000927
Iteration: 15, Func. Count: 190, Neg. LLF: 118.87883072688801
Iteration: 16, Func. Count: 202, Neg. LLF: 118.86653673030071
Iteration: 17, Func. Count: 214, Neg. LLF: 118.84774387878066
Iteration: 18, Func. Count: 226, Neg. LLF: 118.81797590573126
Iteration: 19, Func. Count: 238, Neg. LLF: 118.79218410922184
Iteration: 20, Func. Count: 250, Neg. LLF: 132.72119292570508
Iteration: 21, Func. Count: 264, Neg. LLF: 118.96417088551996
Iteration: 22, Func. Count: 277, Neg. LLF: 118.76473629695299
Iteration: 23, Func. Count: 289, Neg. LLF: 118.76382023257767
Iteration: 24, Func. Count: 301, Neg. LLF: 118.76367595660135
Iteration: 25, Func. Count: 313, Neg. LLF: 118.76357526529733
Iteration: 26, Func. Count: 324, Neg. LLF: 118.76357541172138
Optimization terminated successfully (Exit mode 0)
Current function value: 118.76357526529733
Iterations: 26
Function evaluations: 324
Gradient evaluations: 26
Iteration: 1, Func. Count: 10, Neg. LLF: 122.38759267322972
Iteration: 2, Func. Count: 20, Neg. LLF: 139.65921403938404
Iteration: 3, Func. Count: 30, Neg. LLF: 119.1255546643552
Iteration: 4, Func. Count: 39, Neg. LLF: 119.49521706881
Iteration: 5, Func. Count: 49, Neg. LLF: 118.98409510230194
Iteration: 6, Func. Count: 58, Neg. LLF: 118.9336818725324
Iteration: 7, Func. Count: 67, Neg. LLF: 118.92172877862568
Iteration: 8, Func. Count: 76, Neg. LLF: 118.90638992204697
Iteration: 9, Func. Count: 85, Neg. LLF: 118.89769227735482
Iteration: 10, Func. Count: 94, Neg. LLF: 118.89058855302248
Iteration: 11, Func. Count: 103, Neg. LLF: 118.88782044857629
Iteration: 12, Func. Count: 112, Neg. LLF: 118.88689692898588
Iteration: 13, Func. Count: 121, Neg. LLF: 118.88642515023801
Iteration: 14, Func. Count: 130, Neg. LLF: 118.88613573113308
Iteration: 15, Func. Count: 139, Neg. LLF: 118.88568230399363
Iteration: 16, Func. Count: 148, Neg. LLF: 128.75822736156937
Iteration: 17, Func. Count: 158, Neg. LLF: 128.8739924802408
Iteration: 18, Func. Count: 168, Neg. LLF: 128.53585216810734
Iteration: 19, Func. Count: 178, Neg. LLF: 119.0734836221051
Iteration: 20, Func. Count: 188, Neg. LLF: 118.79380567113392
Iteration: 21, Func. Count: 197, Neg. LLF: 118.91049806749602
Iteration: 22, Func. Count: 207, Neg. LLF: 118.81672361775261
Iteration: 23, Func. Count: 218, Neg. LLF: 118.93624066530158
Iteration: 24, Func. Count: 228, Neg. LLF: 118.77409329718063
Iteration: 25, Func. Count: 237, Neg. LLF: 118.77277176271032
Iteration: 26, Func. Count: 246, Neg. LLF: 118.77275113168753
Iteration: 27, Func. Count: 254, Neg. LLF: 118.77275113174673
Optimization terminated successfully (Exit mode 0)
Current function value: 118.77275113168753
Iterations: 28
Function evaluations: 254
Gradient evaluations: 27
Iteration: 1, Func. Count: 11, Neg. LLF: 120.88814947346097
Iteration: 2, Func. Count: 22, Neg. LLF: 130.4079591462109
Iteration: 3, Func. Count: 33, Neg. LLF: 119.44851852847184
Iteration: 4, Func. Count: 43, Neg. LLF: 134.87069298458178
Iteration: 5, Func. Count: 54, Neg. LLF: 128.40591366067167
Iteration: 6, Func. Count: 65, Neg. LLF: 119.02949696964642
Iteration: 7, Func. Count: 75, Neg. LLF: 118.92155513019836
Iteration: 8, Func. Count: 85, Neg. LLF: 118.90565720899768
Iteration: 9, Func. Count: 95, Neg. LLF: 118.8995570492442
Iteration: 10, Func. Count: 105, Neg. LLF: 118.89350074790535
Iteration: 11, Func. Count: 115, Neg. LLF: 118.88883563714388
Iteration: 12, Func. Count: 125, Neg. LLF: 118.8870919758229
Iteration: 13, Func. Count: 135, Neg. LLF: 118.88660001165223
Iteration: 14, Func. Count: 145, Neg. LLF: 118.88628964909904
Iteration: 15, Func. Count: 155, Neg. LLF: 118.88599208308375
Iteration: 16, Func. Count: 165, Neg. LLF: 118.88162118385894
Iteration: 17, Func. Count: 175, Neg. LLF: 128.87185966871928
Iteration: 18, Func. Count: 186, Neg. LLF: 129.08382576172266
Iteration: 19, Func. Count: 197, Neg. LLF: 119.27729370705171
Iteration: 20, Func. Count: 209, Neg. LLF: 118.78811656800652
Iteration: 21, Func. Count: 219, Neg. LLF: 119.88870476553147
Iteration: 22, Func. Count: 230, Neg. LLF: 118.82280957700348
Iteration: 23, Func. Count: 241, Neg. LLF: 118.83740560866053
Iteration: 24, Func. Count: 252, Neg. LLF: 118.77391152280097
Iteration: 25, Func. Count: 263, Neg. LLF: 118.7727810559299
Iteration: 26, Func. Count: 273, Neg. LLF: 118.77275091678662
Iteration: 27, Func. Count: 282, Neg. LLF: 118.77275094898168
Optimization terminated successfully (Exit mode 0)
Current function value: 118.77275091678662
Iterations: 28
Function evaluations: 282
Gradient evaluations: 27
Iteration: 1, Func. Count: 12, Neg. LLF: 121.40838519696256
Iteration: 2, Func. Count: 24, Neg. LLF: 134.23742839877372
Iteration: 3, Func. Count: 36, Neg. LLF: 119.51521362159487
Iteration: 4, Func. Count: 47, Neg. LLF: 136.82900424981452
Iteration: 5, Func. Count: 59, Neg. LLF: 127.69754047728348
Iteration: 6, Func. Count: 71, Neg. LLF: 118.90953682515955
Iteration: 7, Func. Count: 82, Neg. LLF: 118.9061210180097
Iteration: 8, Func. Count: 93, Neg. LLF: 118.89853786564959
Iteration: 9, Func. Count: 104, Neg. LLF: 118.89546934024831
Iteration: 10, Func. Count: 115, Neg. LLF: 118.8903803178443
Iteration: 11, Func. Count: 126, Neg. LLF: 118.88774928905201
Iteration: 12, Func. Count: 137, Neg. LLF: 118.88673318252245
Iteration: 13, Func. Count: 148, Neg. LLF: 118.8863807138582
Iteration: 14, Func. Count: 159, Neg. LLF: 118.88611847344923
Iteration: 15, Func. Count: 170, Neg. LLF: 118.8854702720796
Iteration: 16, Func. Count: 181, Neg. LLF: 128.92036753383414
Iteration: 17, Func. Count: 193, Neg. LLF: 129.0329258609191
Iteration: 18, Func. Count: 205, Neg. LLF: 129.21829883460484
Iteration: 19, Func. Count: 217, Neg. LLF: 120.12973583948656
Iteration: 20, Func. Count: 229, Neg. LLF: 129.19208212877317
Iteration: 21, Func. Count: 241, Neg. LLF: 120.45202682744116
Iteration: 22, Func. Count: 253, Neg. LLF: 129.5884875065949
Iteration: 23, Func. Count: 265, Neg. LLF: 119.22119975415471
Iteration: 24, Func. Count: 277, Neg. LLF: 118.81359516807474
Iteration: 25, Func. Count: 289, Neg. LLF: 118.79659788740352
Iteration: 26, Func. Count: 301, Neg. LLF: 118.7904093212579
Iteration: 27, Func. Count: 313, Neg. LLF: 118.78276919254446
Iteration: 28, Func. Count: 324, Neg. LLF: 118.78152436376183
Iteration: 29, Func. Count: 335, Neg. LLF: 118.78037640752979
Iteration: 30, Func. Count: 346, Neg. LLF: 118.77380760040921
Iteration: 31, Func. Count: 357, Neg. LLF: 118.77276676898715
Iteration: 32, Func. Count: 368, Neg. LLF: 118.77275112732042
Iteration: 33, Func. Count: 378, Neg. LLF: 118.77275122052585
Optimization terminated successfully (Exit mode 0)
Current function value: 118.77275112732042
Iterations: 33
Function evaluations: 378
Gradient evaluations: 33
Iteration: 1, Func. Count: 13, Neg. LLF: 121.74597117770128
Iteration: 2, Func. Count: 26, Neg. LLF: 136.8982941756577
Iteration: 3, Func. Count: 39, Neg. LLF: 119.55108618926322
Iteration: 4, Func. Count: 51, Neg. LLF: 140.32403741401936
Iteration: 5, Func. Count: 64, Neg. LLF: 129.60168627431423
Iteration: 6, Func. Count: 77, Neg. LLF: 119.41488931240912
Iteration: 7, Func. Count: 90, Neg. LLF: 118.97535071984751
Iteration: 8, Func. Count: 103, Neg. LLF: 129.1535458154437
Iteration: 9, Func. Count: 116, Neg. LLF: 130.55397971456154
Iteration: 10, Func. Count: 129, Neg. LLF: 131.86553480913605
Iteration: 11, Func. Count: 142, Neg. LLF: 119.69294625758441
Iteration: 12, Func. Count: 155, Neg. LLF: 118.82168706477732
Iteration: 13, Func. Count: 168, Neg. LLF: 118.61649702343536
Iteration: 14, Func. Count: 181, Neg. LLF: 118.80448432537445
Iteration: 15, Func. Count: 194, Neg. LLF: 117.99616154451783
Iteration: 16, Func. Count: 206, Neg. LLF: 117.2400850778398
Iteration: 17, Func. Count: 218, Neg. LLF: 116.9095855738047
Iteration: 18, Func. Count: 230, Neg. LLF: 116.9177676754165
Iteration: 19, Func. Count: 243, Neg. LLF: 116.82451068193812
Iteration: 20, Func. Count: 255, Neg. LLF: 116.81794187875398
Iteration: 21, Func. Count: 267, Neg. LLF: 116.81700277906272
Iteration: 22, Func. Count: 279, Neg. LLF: 116.81641851272184
Iteration: 23, Func. Count: 291, Neg. LLF: 116.81629217381219
Iteration: 24, Func. Count: 303, Neg. LLF: 116.81627430073439
Iteration: 25, Func. Count: 315, Neg. LLF: 116.81627048392363
Iteration: 26, Func. Count: 326, Neg. LLF: 116.81627048402466
Optimization terminated successfully (Exit mode 0)
Current function value: 116.81627048392363
Iterations: 26
Function evaluations: 326
Gradient evaluations: 26
Iteration: 1, Func. Count: 14, Neg. LLF: 121.74930895655422
Iteration: 2, Func. Count: 28, Neg. LLF: 136.30763162744577
Iteration: 3, Func. Count: 42, Neg. LLF: 119.55746356821004
Iteration: 4, Func. Count: 55, Neg. LLF: 140.9155218561449
Iteration: 5, Func. Count: 69, Neg. LLF: 130.15514002595464
Iteration: 6, Func. Count: 83, Neg. LLF: 119.46015159063566
Iteration: 7, Func. Count: 97, Neg. LLF: 118.9521585031992
Iteration: 8, Func. Count: 110, Neg. LLF: 118.90410621497215
Iteration: 9, Func. Count: 123, Neg. LLF: 118.6853014231115
Iteration: 10, Func. Count: 136, Neg. LLF: 130.18733284254512
Iteration: 11, Func. Count: 150, Neg. LLF: 138.0181913723106
Iteration: 12, Func. Count: 164, Neg. LLF: 151.78601370385627
Iteration: 13, Func. Count: 178, Neg. LLF: 148.1037747267597
Iteration: 14, Func. Count: 192, Neg. LLF: 127.5344696116374
Iteration: 15, Func. Count: 206, Neg. LLF: 134.48675442474809
Iteration: 16, Func. Count: 220, Neg. LLF: 118.57401705198855
Iteration: 17, Func. Count: 234, Neg. LLF: 129.52590847141067
Iteration: 18, Func. Count: 248, Neg. LLF: 117.09001968418403
Iteration: 19, Func. Count: 262, Neg. LLF: 116.88112514790421
Iteration: 20, Func. Count: 275, Neg. LLF: 116.8289042875201
Iteration: 21, Func. Count: 288, Neg. LLF: 116.8178941579378
Iteration: 22, Func. Count: 301, Neg. LLF: 116.81694477113717
Iteration: 23, Func. Count: 314, Neg. LLF: 116.8165704037183
Iteration: 24, Func. Count: 327, Neg. LLF: 116.8163199151043
Iteration: 25, Func. Count: 340, Neg. LLF: 116.81627348049516
Iteration: 26, Func. Count: 353, Neg. LLF: 116.81627009486463
Iteration: 27, Func. Count: 365, Neg. LLF: 116.81627030700994
Optimization terminated successfully (Exit mode 0)
Current function value: 116.81627009486463
Iterations: 27
Function evaluations: 365
Gradient evaluations: 27
Iteration: 1, Func. Count: 7, Neg. LLF: 123.31932482812492
Iteration: 2, Func. Count: 14, Neg. LLF: 122.97253047354253
Iteration: 3, Func. Count: 21, Neg. LLF: 123.10692011433768
Iteration: 4, Func. Count: 28, Neg. LLF: 126.73206032367058
Iteration: 5, Func. Count: 35, Neg. LLF: 121.55318795643801
Iteration: 6, Func. Count: 41, Neg. LLF: 128.68691107498972
Iteration: 7, Func. Count: 48, Neg. LLF: 122.2418082124377
Iteration: 8, Func. Count: 55, Neg. LLF: 121.60365070132214
Iteration: 9, Func. Count: 62, Neg. LLF: 121.40353235198326
Iteration: 10, Func. Count: 68, Neg. LLF: 121.39684282640884
Iteration: 11, Func. Count: 74, Neg. LLF: 121.39659740811334
Iteration: 12, Func. Count: 80, Neg. LLF: 121.39620191382986
Iteration: 13, Func. Count: 86, Neg. LLF: 121.39616376990398
Iteration: 14, Func. Count: 92, Neg. LLF: 121.39614416416678
Iteration: 15, Func. Count: 98, Neg. LLF: 121.39614298981576
Iteration: 16, Func. Count: 103, Neg. LLF: 121.39614298983504
Optimization terminated successfully (Exit mode 0)
Current function value: 121.39614298981576
Iterations: 16
Function evaluations: 103
Gradient evaluations: 16
Iteration: 1, Func. Count: 8, Neg. LLF: 123.01868388616299
Iteration: 2, Func. Count: 16, Neg. LLF: 123.91589782546133
Iteration: 3, Func. Count: 24, Neg. LLF: 123.5952647884323
Iteration: 4, Func. Count: 32, Neg. LLF: 122.5848355758909
Iteration: 5, Func. Count: 40, Neg. LLF: 121.59715057674117
Iteration: 6, Func. Count: 47, Neg. LLF: 121.6378958228886
Iteration: 7, Func. Count: 55, Neg. LLF: 121.55879712175008
Iteration: 8, Func. Count: 63, Neg. LLF: 121.42630872039149
Iteration: 9, Func. Count: 70, Neg. LLF: 121.40429103990162
Iteration: 10, Func. Count: 77, Neg. LLF: 121.40355893302207
Iteration: 11, Func. Count: 85, Neg. LLF: 121.39862651695326
Iteration: 12, Func. Count: 92, Neg. LLF: 121.39701886542625
Iteration: 13, Func. Count: 99, Neg. LLF: 121.39630516265622
Iteration: 14, Func. Count: 106, Neg. LLF: 121.39615023020882
Iteration: 15, Func. Count: 113, Neg. LLF: 121.39614357789587
Iteration: 16, Func. Count: 120, Neg. LLF: 121.3961429616246
Optimization terminated successfully (Exit mode 0)
Current function value: 121.3961429616246
Iterations: 16
Function evaluations: 120
Gradient evaluations: 16
Iteration: 1, Func. Count: 9, Neg. LLF: 123.16079607697061
Iteration: 2, Func. Count: 18, Neg. LLF: 123.77464569051035
Iteration: 3, Func. Count: 27, Neg. LLF: 123.38284796102772
Iteration: 4, Func. Count: 36, Neg. LLF: 126.64511291170133
Iteration: 5, Func. Count: 45, Neg. LLF: 121.54664863588086
Iteration: 6, Func. Count: 53, Neg. LLF: 127.59931317939915
Iteration: 7, Func. Count: 62, Neg. LLF: 126.53975694213598
Iteration: 8, Func. Count: 71, Neg. LLF: 125.2425937801137
Iteration: 9, Func. Count: 80, Neg. LLF: 121.41016113354607
Iteration: 10, Func. Count: 88, Neg. LLF: 121.40028527352946
Iteration: 11, Func. Count: 96, Neg. LLF: 121.40050095261046
Iteration: 12, Func. Count: 105, Neg. LLF: 121.39719016356388
Iteration: 13, Func. Count: 113, Neg. LLF: 121.39651652547921
Iteration: 14, Func. Count: 121, Neg. LLF: 121.39620925477546
Iteration: 15, Func. Count: 129, Neg. LLF: 121.3961741579354
Iteration: 16, Func. Count: 137, Neg. LLF: 121.39614537829138
Iteration: 17, Func. Count: 145, Neg. LLF: 121.39614309118501
Iteration: 18, Func. Count: 152, Neg. LLF: 121.39614313456318
Optimization terminated successfully (Exit mode 0)
Current function value: 121.39614309118501
Iterations: 18
Function evaluations: 152
Gradient evaluations: 18
Iteration: 1, Func. Count: 10, Neg. LLF: 123.27115823162703
Iteration: 2, Func. Count: 20, Neg. LLF: 123.49841749886194
Iteration: 3, Func. Count: 30, Neg. LLF: 123.4751085201164
Iteration: 4, Func. Count: 40, Neg. LLF: 143.65692955721988
Iteration: 5, Func. Count: 50, Neg. LLF: 121.5628031371293
Iteration: 6, Func. Count: 59, Neg. LLF: 126.4100497345912
Iteration: 7, Func. Count: 69, Neg. LLF: 125.46342125659508
Iteration: 8, Func. Count: 79, Neg. LLF: 122.7588831445806
Iteration: 9, Func. Count: 89, Neg. LLF: 121.47367556090855
Iteration: 10, Func. Count: 99, Neg. LLF: 121.4251848369998
Iteration: 11, Func. Count: 109, Neg. LLF: 121.41874039320766
Iteration: 12, Func. Count: 119, Neg. LLF: 121.39887583146634
Iteration: 13, Func. Count: 128, Neg. LLF: 121.39666131286499
Iteration: 14, Func. Count: 137, Neg. LLF: 121.3961981146913
Iteration: 15, Func. Count: 146, Neg. LLF: 121.39615526815487
Iteration: 16, Func. Count: 155, Neg. LLF: 121.39614409085785
Iteration: 17, Func. Count: 164, Neg. LLF: 121.39614298924764
Iteration: 18, Func. Count: 172, Neg. LLF: 121.39614309018677
Optimization terminated successfully (Exit mode 0)
Current function value: 121.39614298924764
Iterations: 18
Function evaluations: 172
Gradient evaluations: 18
Iteration: 1, Func. Count: 11, Neg. LLF: 123.20736973603198
Iteration: 2, Func. Count: 22, Neg. LLF: 122.91505412757418
Iteration: 3, Func. Count: 33, Neg. LLF: 123.66864448357043
Iteration: 4, Func. Count: 44, Neg. LLF: 137.83309567205313
Iteration: 5, Func. Count: 55, Neg. LLF: 121.58332824655541
Iteration: 6, Func. Count: 65, Neg. LLF: 125.9087375168264
Iteration: 7, Func. Count: 76, Neg. LLF: 121.64839543587445
Iteration: 8, Func. Count: 87, Neg. LLF: 121.47040178091761
Iteration: 9, Func. Count: 98, Neg. LLF: 121.41621947313072
Iteration: 10, Func. Count: 108, Neg. LLF: 121.40809302274843
Iteration: 11, Func. Count: 118, Neg. LLF: 121.39720065554295
Iteration: 12, Func. Count: 128, Neg. LLF: 121.39626950420339
Iteration: 13, Func. Count: 138, Neg. LLF: 121.39617711824697
Iteration: 14, Func. Count: 148, Neg. LLF: 121.39614338036085
Iteration: 15, Func. Count: 157, Neg. LLF: 121.39614349537663
Optimization terminated successfully (Exit mode 0)
Current function value: 121.39614338036085
Iterations: 15
Function evaluations: 157
Gradient evaluations: 15
Iteration: 1, Func. Count: 8, Neg. LLF: 120.74432066008492
Iteration: 2, Func. Count: 16, Neg. LLF: 130.82926032440258
Iteration: 3, Func. Count: 24, Neg. LLF: 119.13006038598809
Iteration: 4, Func. Count: 31, Neg. LLF: 137.38564640988304
Iteration: 5, Func. Count: 39, Neg. LLF: 118.95216032223861
Iteration: 6, Func. Count: 46, Neg. LLF: 118.94577892120729
Iteration: 7, Func. Count: 53, Neg. LLF: 118.94527525813315
Iteration: 8, Func. Count: 60, Neg. LLF: 118.9451732086002
Iteration: 9, Func. Count: 67, Neg. LLF: 118.94514805176108
Iteration: 10, Func. Count: 74, Neg. LLF: 118.94514663784695
Iteration: 11, Func. Count: 80, Neg. LLF: 118.94514663784753
Optimization terminated successfully (Exit mode 0)
Current function value: 118.94514663784695
Iterations: 11
Function evaluations: 80
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 120.5688659084796
Iteration: 2, Func. Count: 17, Neg. LLF: 125.75591345779594
Iteration: 3, Func. Count: 26, Neg. LLF: 120.46399799874935
Iteration: 4, Func. Count: 35, Neg. LLF: 130.20125082331603
Iteration: 5, Func. Count: 44, Neg. LLF: 132.0146258990565
Iteration: 6, Func. Count: 53, Neg. LLF: 123.48402593233882
Iteration: 7, Func. Count: 62, Neg. LLF: 119.7213667312522
Iteration: 8, Func. Count: 71, Neg. LLF: 119.08211108704963
Iteration: 9, Func. Count: 80, Neg. LLF: 118.9593820854156
Iteration: 10, Func. Count: 89, Neg. LLF: 118.9451893909236
Iteration: 11, Func. Count: 97, Neg. LLF: 118.94514812665764
Iteration: 12, Func. Count: 105, Neg. LLF: 118.94514665362607
Iteration: 13, Func. Count: 112, Neg. LLF: 118.9451467962572
Optimization terminated successfully (Exit mode 0)
Current function value: 118.94514665362607
Iterations: 13
Function evaluations: 112
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 120.79371716917572
Iteration: 2, Func. Count: 19, Neg. LLF: 125.38923543437949
Iteration: 3, Func. Count: 29, Neg. LLF: 121.48857416407492
Iteration: 4, Func. Count: 39, Neg. LLF: 131.19292752542344
Iteration: 5, Func. Count: 49, Neg. LLF: 132.2253646525477
Iteration: 6, Func. Count: 59, Neg. LLF: 120.59426321995745
Iteration: 7, Func. Count: 69, Neg. LLF: 119.11028117759055
Iteration: 8, Func. Count: 79, Neg. LLF: 118.98591071613507
Iteration: 9, Func. Count: 89, Neg. LLF: 118.94909762513677
Iteration: 10, Func. Count: 98, Neg. LLF: 118.94624376395893
Iteration: 11, Func. Count: 107, Neg. LLF: 118.94535680289916
Iteration: 12, Func. Count: 116, Neg. LLF: 118.94514883182217
Iteration: 13, Func. Count: 125, Neg. LLF: 118.94514678129944
Iteration: 14, Func. Count: 133, Neg. LLF: 118.94514679047691
Optimization terminated successfully (Exit mode 0)
Current function value: 118.94514678129944
Iterations: 14
Function evaluations: 133
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 121.08655172456427
Iteration: 2, Func. Count: 22, Neg. LLF: 129.4017505128441
Iteration: 3, Func. Count: 33, Neg. LLF: 119.52795837446818
Iteration: 4, Func. Count: 43, Neg. LLF: 136.5289973252598
Iteration: 5, Func. Count: 54, Neg. LLF: 130.4453480000163
Iteration: 6, Func. Count: 65, Neg. LLF: 120.110877389972
Iteration: 7, Func. Count: 76, Neg. LLF: 119.6333068746277
Iteration: 8, Func. Count: 87, Neg. LLF: 129.21369841109794
Iteration: 9, Func. Count: 98, Neg. LLF: 134.1330515034406
Iteration: 10, Func. Count: 109, Neg. LLF: 120.47648769350374
Iteration: 11, Func. Count: 120, Neg. LLF: 118.69444915696413
Iteration: 12, Func. Count: 130, Neg. LLF: 119.90289141619161
Iteration: 13, Func. Count: 141, Neg. LLF: 119.06185048174282
Iteration: 14, Func. Count: 152, Neg. LLF: 118.09631515724053
Iteration: 15, Func. Count: 162, Neg. LLF: 117.57181354888637
Iteration: 16, Func. Count: 172, Neg. LLF: 117.77646228953726
Iteration: 17, Func. Count: 183, Neg. LLF: 116.98629054663031
Iteration: 18, Func. Count: 193, Neg. LLF: 116.92493315115338
Iteration: 19, Func. Count: 203, Neg. LLF: 116.91759933028365
Iteration: 20, Func. Count: 213, Neg. LLF: 116.91595366102929
Iteration: 21, Func. Count: 223, Neg. LLF: 116.9154861318583
Iteration: 22, Func. Count: 233, Neg. LLF: 116.91548196039636
Iteration: 23, Func. Count: 242, Neg. LLF: 116.91548196042353
Optimization terminated successfully (Exit mode 0)
Current function value: 116.91548196039636
Iterations: 23
Function evaluations: 242
Gradient evaluations: 23
Iteration: 1, Func. Count: 12, Neg. LLF: 121.06118841723325
Iteration: 2, Func. Count: 24, Neg. LLF: 128.98310468923157
Iteration: 3, Func. Count: 36, Neg. LLF: 119.51877473381437
Iteration: 4, Func. Count: 47, Neg. LLF: 136.4939241470691
Iteration: 5, Func. Count: 59, Neg. LLF: 129.75490078900032
Iteration: 6, Func. Count: 71, Neg. LLF: 120.97192727896739
Iteration: 7, Func. Count: 83, Neg. LLF: 118.93588087210483
Iteration: 8, Func. Count: 95, Neg. LLF: 129.7244434130519
Iteration: 9, Func. Count: 107, Neg. LLF: 119.07962696523188
Iteration: 10, Func. Count: 119, Neg. LLF: 118.6546332761228
Iteration: 11, Func. Count: 130, Neg. LLF: 118.20122105552967
Iteration: 12, Func. Count: 141, Neg. LLF: 117.73892469907605
Iteration: 13, Func. Count: 152, Neg. LLF: 117.14351910805621
Iteration: 14, Func. Count: 163, Neg. LLF: 117.03231230175518
Iteration: 15, Func. Count: 174, Neg. LLF: 117.05377944628907
Iteration: 16, Func. Count: 186, Neg. LLF: 116.91611433974187
Iteration: 17, Func. Count: 197, Neg. LLF: 116.91550246791017
Iteration: 18, Func. Count: 208, Neg. LLF: 116.91548734395651
Iteration: 19, Func. Count: 219, Neg. LLF: 116.91548196726218
Iteration: 20, Func. Count: 229, Neg. LLF: 116.91548220940611
Optimization terminated successfully (Exit mode 0)
Current function value: 116.91548196726218
Iterations: 20
Function evaluations: 229
Gradient evaluations: 20
Iteration: 1, Func. Count: 9, Neg. LLF: 120.30183957983607
Iteration: 2, Func. Count: 18, Neg. LLF: 127.02108248182824
Iteration: 3, Func. Count: 27, Neg. LLF: 119.1316323390096
Iteration: 4, Func. Count: 35, Neg. LLF: 139.5205731096711
Iteration: 5, Func. Count: 45, Neg. LLF: 119.0518512081828
Iteration: 6, Func. Count: 53, Neg. LLF: 119.00644689342815
Iteration: 7, Func. Count: 61, Neg. LLF: 118.9452464976846
Iteration: 8, Func. Count: 69, Neg. LLF: 118.93570511806168
Iteration: 9, Func. Count: 77, Neg. LLF: 118.91288516885601
Iteration: 10, Func. Count: 85, Neg. LLF: 118.90102346117052
Iteration: 11, Func. Count: 93, Neg. LLF: 118.89172083117498
Iteration: 12, Func. Count: 101, Neg. LLF: 118.88851212142404
Iteration: 13, Func. Count: 109, Neg. LLF: 118.88723768474856
Iteration: 14, Func. Count: 117, Neg. LLF: 118.88658162485628
Iteration: 15, Func. Count: 125, Neg. LLF: 118.8862302431709
Iteration: 16, Func. Count: 133, Neg. LLF: 118.88596260892025
Iteration: 17, Func. Count: 141, Neg. LLF: 118.88048120181362
Iteration: 18, Func. Count: 149, Neg. LLF: 128.87990490457292
Iteration: 19, Func. Count: 158, Neg. LLF: 128.8487121306208
Iteration: 20, Func. Count: 167, Neg. LLF: 119.13573275691681
Iteration: 21, Func. Count: 176, Neg. LLF: 118.80476245307091
Iteration: 22, Func. Count: 184, Neg. LLF: 124.71459553204265
Iteration: 23, Func. Count: 194, Neg. LLF: 121.31841791939908
Iteration: 24, Func. Count: 203, Neg. LLF: 118.81859302713009
Iteration: 25, Func. Count: 212, Neg. LLF: 118.76466632192385
Iteration: 26, Func. Count: 220, Neg. LLF: 118.76258920574519
Iteration: 27, Func. Count: 228, Neg. LLF: 118.76253733119621
Iteration: 28, Func. Count: 235, Neg. LLF: 118.76253719350177
Optimization terminated successfully (Exit mode 0)
Current function value: 118.76253733119621
Iterations: 29
Function evaluations: 235
Gradient evaluations: 28
Iteration: 1, Func. Count: 10, Neg. LLF: 120.25961945150908
Iteration: 2, Func. Count: 19, Neg. LLF: 123.24970255411601
Iteration: 3, Func. Count: 29, Neg. LLF: 120.44248422996768
Iteration: 4, Func. Count: 39, Neg. LLF: 130.7405301194546
Iteration: 5, Func. Count: 49, Neg. LLF: 132.21929412432252
Iteration: 6, Func. Count: 59, Neg. LLF: 132.5696100985408
Iteration: 7, Func. Count: 69, Neg. LLF: 120.82993010306586
Iteration: 8, Func. Count: 79, Neg. LLF: 119.06534525716295
Iteration: 9, Func. Count: 89, Neg. LLF: 118.88690528478291
Iteration: 10, Func. Count: 98, Neg. LLF: 118.88634608136063
Iteration: 11, Func. Count: 107, Neg. LLF: 118.88620435026266
Iteration: 12, Func. Count: 116, Neg. LLF: 118.88616738588986
Iteration: 13, Func. Count: 125, Neg. LLF: 118.88608972584329
Iteration: 14, Func. Count: 134, Neg. LLF: 118.88533777320133
Iteration: 15, Func. Count: 143, Neg. LLF: 118.926045815543
Iteration: 16, Func. Count: 153, Neg. LLF: 129.27235607133656
Iteration: 17, Func. Count: 163, Neg. LLF: 129.3203760243938
Iteration: 18, Func. Count: 173, Neg. LLF: 3791236.8927919916
Iteration: 19, Func. Count: 183, Neg. LLF: 129.70982616731965
Iteration: 20, Func. Count: 193, Neg. LLF: 121.78476718094598
Iteration: 21, Func. Count: 204, Neg. LLF: 127.83793572806276
Iteration: 22, Func. Count: 214, Neg. LLF: 119.11197728035738
Iteration: 23, Func. Count: 224, Neg. LLF: 118.79619548605994
Iteration: 24, Func. Count: 234, Neg. LLF: 118.77436766157119
Iteration: 25, Func. Count: 243, Neg. LLF: 118.77384144900033
Iteration: 26, Func. Count: 252, Neg. LLF: 118.7721135343002
Iteration: 27, Func. Count: 261, Neg. LLF: 118.76691105275003
Iteration: 28, Func. Count: 270, Neg. LLF: 118.76456379795374
Iteration: 29, Func. Count: 279, Neg. LLF: 118.76257017859406
Iteration: 30, Func. Count: 288, Neg. LLF: 118.76253909262002
Iteration: 31, Func. Count: 297, Neg. LLF: 118.76253692567799
Iteration: 32, Func. Count: 305, Neg. LLF: 118.76253696736337
Optimization terminated successfully (Exit mode 0)
Current function value: 118.76253692567799
Iterations: 32
Function evaluations: 305
Gradient evaluations: 32
Iteration: 1, Func. Count: 11, Neg. LLF: 120.50424303039479
Iteration: 2, Func. Count: 21, Neg. LLF: 127.01058116214536
Iteration: 3, Func. Count: 32, Neg. LLF: 120.56039727533305
Iteration: 4, Func. Count: 43, Neg. LLF: 130.89014435344717
Iteration: 5, Func. Count: 54, Neg. LLF: 132.3126192631199
Iteration: 6, Func. Count: 65, Neg. LLF: 132.01775946454913
Iteration: 7, Func. Count: 76, Neg. LLF: 120.00912185472716
Iteration: 8, Func. Count: 87, Neg. LLF: 118.97251730043
Iteration: 9, Func. Count: 97, Neg. LLF: 118.89836190407752
Iteration: 10, Func. Count: 107, Neg. LLF: 118.88983166852576
Iteration: 11, Func. Count: 117, Neg. LLF: 118.88663827666336
Iteration: 12, Func. Count: 127, Neg. LLF: 118.88648205206917
Iteration: 13, Func. Count: 137, Neg. LLF: 118.88631030202863
Iteration: 14, Func. Count: 147, Neg. LLF: 118.88610463625365
Iteration: 15, Func. Count: 157, Neg. LLF: 118.8851360969624
Iteration: 16, Func. Count: 167, Neg. LLF: 119.59672366086305
Iteration: 17, Func. Count: 178, Neg. LLF: 129.29595388735206
Iteration: 18, Func. Count: 189, Neg. LLF: 129.47052617184525
Iteration: 19, Func. Count: 200, Neg. LLF: 118.91757207385382
Iteration: 20, Func. Count: 211, Neg. LLF: 129.27307563949668
Iteration: 21, Func. Count: 222, Neg. LLF: 118.8919096547773
Iteration: 22, Func. Count: 233, Neg. LLF: 127.68885846292581
Iteration: 23, Func. Count: 244, Neg. LLF: 124.37914376547073
Iteration: 24, Func. Count: 256, Neg. LLF: 118.86339593342464
Iteration: 25, Func. Count: 267, Neg. LLF: 118.7733921475962
Iteration: 26, Func. Count: 277, Neg. LLF: 118.77283352413895
Iteration: 27, Func. Count: 287, Neg. LLF: 118.772343248377
Iteration: 28, Func. Count: 297, Neg. LLF: 118.77045727166492
Iteration: 29, Func. Count: 307, Neg. LLF: 118.7660305357387
Iteration: 30, Func. Count: 317, Neg. LLF: 118.76419325139291
Iteration: 31, Func. Count: 327, Neg. LLF: 118.76255868134183
Iteration: 32, Func. Count: 337, Neg. LLF: 118.76253791178269
Iteration: 33, Func. Count: 347, Neg. LLF: 118.7625368948096
Iteration: 34, Func. Count: 356, Neg. LLF: 118.7625369952464
Optimization terminated successfully (Exit mode 0)
Current function value: 118.7625368948096
Iterations: 34
Function evaluations: 356
Gradient evaluations: 34
Iteration: 1, Func. Count: 12, Neg. LLF: 120.63559935952605
Iteration: 2, Func. Count: 23, Neg. LLF: 130.77826116996812
Iteration: 3, Func. Count: 35, Neg. LLF: 120.42540420537004
Iteration: 4, Func. Count: 47, Neg. LLF: 130.33865191988932
Iteration: 5, Func. Count: 59, Neg. LLF: 131.76355078570896
Iteration: 6, Func. Count: 71, Neg. LLF: 132.01355771186542
Iteration: 7, Func. Count: 83, Neg. LLF: 120.9152396126739
Iteration: 8, Func. Count: 95, Neg. LLF: 119.14402339519722
Iteration: 9, Func. Count: 107, Neg. LLF: 118.88987055031043
Iteration: 10, Func. Count: 118, Neg. LLF: 118.89026865775466
Iteration: 11, Func. Count: 130, Neg. LLF: 118.88666754389746
Iteration: 12, Func. Count: 141, Neg. LLF: 118.88651392173695
Iteration: 13, Func. Count: 152, Neg. LLF: 118.88650015531792
Iteration: 14, Func. Count: 164, Neg. LLF: 118.88468781594736
Iteration: 15, Func. Count: 175, Neg. LLF: 128.46373855177407
Iteration: 16, Func. Count: 187, Neg. LLF: 131.21067737351163
Iteration: 17, Func. Count: 199, Neg. LLF: 131.05659738354882
Iteration: 18, Func. Count: 211, Neg. LLF: 131.28410790921893
Iteration: 19, Func. Count: 223, Neg. LLF: 119.6838428554998
Iteration: 20, Func. Count: 235, Neg. LLF: 119.23767482399025
Iteration: 21, Func. Count: 247, Neg. LLF: 120.08921600905676
Iteration: 22, Func. Count: 259, Neg. LLF: 118.87481219976586
Iteration: 23, Func. Count: 271, Neg. LLF: 118.76456520684447
Iteration: 24, Func. Count: 282, Neg. LLF: 118.75858396086817
Iteration: 25, Func. Count: 293, Neg. LLF: 118.75690483624629
Iteration: 26, Func. Count: 304, Neg. LLF: 118.75611395038021
Iteration: 27, Func. Count: 315, Neg. LLF: 118.75592709380948
Iteration: 28, Func. Count: 326, Neg. LLF: 118.75592568912819
Iteration: 29, Func. Count: 336, Neg. LLF: 118.75592568913358
Optimization terminated successfully (Exit mode 0)
Current function value: 118.75592568912819
Iterations: 29
Function evaluations: 336
Gradient evaluations: 29
Iteration: 1, Func. Count: 13, Neg. LLF: 120.60217212311437
Iteration: 2, Func. Count: 25, Neg. LLF: 130.5135804303131
Iteration: 3, Func. Count: 38, Neg. LLF: 120.40954031364662
Iteration: 4, Func. Count: 51, Neg. LLF: 130.35525753847193
Iteration: 5, Func. Count: 64, Neg. LLF: 131.75909946110625
Iteration: 6, Func. Count: 77, Neg. LLF: 131.9933661281882
Iteration: 7, Func. Count: 90, Neg. LLF: 121.00883268547253
Iteration: 8, Func. Count: 103, Neg. LLF: 119.1649700870961
Iteration: 9, Func. Count: 116, Neg. LLF: 118.89072480891397
Iteration: 10, Func. Count: 128, Neg. LLF: 118.89120692157375
Iteration: 11, Func. Count: 141, Neg. LLF: 118.88663755596988
Iteration: 12, Func. Count: 153, Neg. LLF: 118.88649668533047
Iteration: 13, Func. Count: 165, Neg. LLF: 118.88629113431716
Iteration: 14, Func. Count: 177, Neg. LLF: 118.88604039732874
Iteration: 15, Func. Count: 189, Neg. LLF: 118.87786308759021
Iteration: 16, Func. Count: 201, Neg. LLF: 131.42638517353853
Iteration: 17, Func. Count: 214, Neg. LLF: 131.29877049314942
Iteration: 18, Func. Count: 227, Neg. LLF: 131.63152552971636
Iteration: 19, Func. Count: 240, Neg. LLF: 119.37069230700969
Iteration: 20, Func. Count: 253, Neg. LLF: 129.93403753566477
Iteration: 21, Func. Count: 266, Neg. LLF: 118.8193396349164
Iteration: 22, Func. Count: 279, Neg. LLF: 118.75977817384998
Iteration: 23, Func. Count: 291, Neg. LLF: 118.75633461360458
Iteration: 24, Func. Count: 303, Neg. LLF: 118.75605672008275
Iteration: 25, Func. Count: 315, Neg. LLF: 118.75595062839722
Iteration: 26, Func. Count: 327, Neg. LLF: 118.75593603971096
Iteration: 27, Func. Count: 339, Neg. LLF: 118.75592576335158
Iteration: 28, Func. Count: 350, Neg. LLF: 118.75592591802987
Optimization terminated successfully (Exit mode 0)
Current function value: 118.75592576335158
Iterations: 28
Function evaluations: 350
Gradient evaluations: 28
Iteration: 1, Func. Count: 10, Neg. LLF: 120.47277293082122
Iteration: 2, Func. Count: 20, Neg. LLF: 128.4932573805706
Iteration: 3, Func. Count: 30, Neg. LLF: 119.08731407876614
Iteration: 4, Func. Count: 39, Neg. LLF: 121.39135497781936
Iteration: 5, Func. Count: 50, Neg. LLF: 119.61194363191201
Iteration: 6, Func. Count: 60, Neg. LLF: 118.95184440267336
Iteration: 7, Func. Count: 69, Neg. LLF: 118.92225817706299
Iteration: 8, Func. Count: 78, Neg. LLF: 118.88403435678364
Iteration: 9, Func. Count: 87, Neg. LLF: 118.8653675751633
Iteration: 10, Func. Count: 96, Neg. LLF: 118.86521252149059
Iteration: 11, Func. Count: 105, Neg. LLF: 118.86490157707584
Iteration: 12, Func. Count: 114, Neg. LLF: 118.86453822323719
Iteration: 13, Func. Count: 123, Neg. LLF: 118.8641948486279
Iteration: 14, Func. Count: 132, Neg. LLF: 118.8640515729025
Iteration: 15, Func. Count: 141, Neg. LLF: 118.86403514852323
Iteration: 16, Func. Count: 150, Neg. LLF: 118.86403441681358
Optimization terminated successfully (Exit mode 0)
Current function value: 118.86403441681358
Iterations: 16
Function evaluations: 150
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 120.46949618646961
Iteration: 2, Func. Count: 21, Neg. LLF: 130.201263913687
Iteration: 3, Func. Count: 32, Neg. LLF: 121.75189110287616
Iteration: 4, Func. Count: 43, Neg. LLF: 122.27084140321718
Iteration: 5, Func. Count: 54, Neg. LLF: 131.86002106395568
Iteration: 6, Func. Count: 65, Neg. LLF: 132.8921827445311
Iteration: 7, Func. Count: 76, Neg. LLF: 122.4081510010816
Iteration: 8, Func. Count: 87, Neg. LLF: 119.76522618412427
Iteration: 9, Func. Count: 98, Neg. LLF: 118.93938000675483
Iteration: 10, Func. Count: 108, Neg. LLF: 118.88402534082368
Iteration: 11, Func. Count: 118, Neg. LLF: 118.87374938730177
Iteration: 12, Func. Count: 128, Neg. LLF: 118.86481958804339
Iteration: 13, Func. Count: 138, Neg. LLF: 118.86421291670219
Iteration: 14, Func. Count: 148, Neg. LLF: 118.86412906690768
Iteration: 15, Func. Count: 158, Neg. LLF: 118.86409395266908
Iteration: 16, Func. Count: 168, Neg. LLF: 118.86404389520477
Iteration: 17, Func. Count: 178, Neg. LLF: 118.86403500768094
Iteration: 18, Func. Count: 188, Neg. LLF: 118.86403433961787
Optimization terminated successfully (Exit mode 0)
Current function value: 118.86403433961787
Iterations: 18
Function evaluations: 188
Gradient evaluations: 18
Iteration: 1, Func. Count: 12, Neg. LLF: 120.63299286403786
Iteration: 2, Func. Count: 23, Neg. LLF: 137.9498737319486
Iteration: 3, Func. Count: 35, Neg. LLF: 122.27149857196483
Iteration: 4, Func. Count: 47, Neg. LLF: 130.4467827142233
Iteration: 5, Func. Count: 60, Neg. LLF: 131.9820790432038
Iteration: 6, Func. Count: 72, Neg. LLF: 130.64414703949865
Iteration: 7, Func. Count: 84, Neg. LLF: 131.06576170337604
Iteration: 8, Func. Count: 96, Neg. LLF: 120.04738891385975
Iteration: 9, Func. Count: 108, Neg. LLF: 118.9682974174545
Iteration: 10, Func. Count: 120, Neg. LLF: 118.87037223248306
Iteration: 11, Func. Count: 131, Neg. LLF: 118.86498935216228
Iteration: 12, Func. Count: 142, Neg. LLF: 118.86459579925275
Iteration: 13, Func. Count: 153, Neg. LLF: 118.86446295589933
Iteration: 14, Func. Count: 164, Neg. LLF: 118.86435901247991
Iteration: 15, Func. Count: 175, Neg. LLF: 118.86418225873489
Iteration: 16, Func. Count: 186, Neg. LLF: 118.86406306266512
Iteration: 17, Func. Count: 197, Neg. LLF: 118.8640350859274
Iteration: 18, Func. Count: 208, Neg. LLF: 118.86403433768021
Optimization terminated successfully (Exit mode 0)
Current function value: 118.86403433768021
Iterations: 18
Function evaluations: 208
Gradient evaluations: 18
Iteration: 1, Func. Count: 13, Neg. LLF: 120.78517450868023
Iteration: 2, Func. Count: 25, Neg. LLF: 143.4726323824755
Iteration: 3, Func. Count: 38, Neg. LLF: 121.5736484812956
Iteration: 4, Func. Count: 51, Neg. LLF: 129.11293159914248
Iteration: 5, Func. Count: 66, Neg. LLF: 130.42818790242777
Iteration: 6, Func. Count: 79, Neg. LLF: 130.2966402390534
Iteration: 7, Func. Count: 92, Neg. LLF: 131.54424266820803
Iteration: 8, Func. Count: 105, Neg. LLF: 120.43191800367075
Iteration: 9, Func. Count: 118, Neg. LLF: 119.1883617249564
Iteration: 10, Func. Count: 131, Neg. LLF: 118.98112205161095
Iteration: 11, Func. Count: 144, Neg. LLF: 118.87074233029658
Iteration: 12, Func. Count: 156, Neg. LLF: 118.86874291631729
Iteration: 13, Func. Count: 168, Neg. LLF: 118.86581450860204
Iteration: 14, Func. Count: 180, Neg. LLF: 118.86547601334928
Iteration: 15, Func. Count: 192, Neg. LLF: 118.86495914162234
Iteration: 16, Func. Count: 204, Neg. LLF: 118.86452447559769
Iteration: 17, Func. Count: 216, Neg. LLF: 118.86414629392843
Iteration: 18, Func. Count: 228, Neg. LLF: 118.86404412843058
Iteration: 19, Func. Count: 240, Neg. LLF: 118.86403491790084
Iteration: 20, Func. Count: 251, Neg. LLF: 118.86403492112919
Optimization terminated successfully (Exit mode 0)
Current function value: 118.86403491790084
Iterations: 20
Function evaluations: 251
Gradient evaluations: 20
Iteration: 1, Func. Count: 14, Neg. LLF: 120.71717303706407
Iteration: 2, Func. Count: 27, Neg. LLF: 141.61930806780717
Iteration: 3, Func. Count: 41, Neg. LLF: 121.62373301563821
Iteration: 4, Func. Count: 55, Neg. LLF: 131.33187149637496
Iteration: 5, Func. Count: 70, Neg. LLF: 131.12861527097058
Iteration: 6, Func. Count: 84, Neg. LLF: 130.66634966689716
Iteration: 7, Func. Count: 98, Neg. LLF: 131.14174073412974
Iteration: 8, Func. Count: 112, Neg. LLF: 120.98804788650368
Iteration: 9, Func. Count: 126, Neg. LLF: 119.11530614428125
Iteration: 10, Func. Count: 140, Neg. LLF: 118.87392048706127
Iteration: 11, Func. Count: 153, Neg. LLF: 118.86571929740572
Iteration: 12, Func. Count: 166, Neg. LLF: 118.8646840946369
Iteration: 13, Func. Count: 179, Neg. LLF: 118.86455125604235
Iteration: 14, Func. Count: 192, Neg. LLF: 118.8644635405561
Iteration: 15, Func. Count: 205, Neg. LLF: 118.86435282519327
Iteration: 16, Func. Count: 218, Neg. LLF: 118.86410027635124
Iteration: 17, Func. Count: 231, Neg. LLF: 118.86404265825304
Iteration: 18, Func. Count: 244, Neg. LLF: 118.86403461456143
Iteration: 19, Func. Count: 256, Neg. LLF: 118.8640347171439
Optimization terminated successfully (Exit mode 0)
Current function value: 118.86403461456143
Iterations: 19
Function evaluations: 256
Gradient evaluations: 19
Iteration: 1, Func. Count: 11, Neg. LLF: 122.36260780604806
Iteration: 2, Func. Count: 22, Neg. LLF: 153.02947116192348
Iteration: 3, Func. Count: 33, Neg. LLF: 119.18236487056163
Iteration: 4, Func. Count: 43, Neg. LLF: 121.51664814980337
Iteration: 5, Func. Count: 55, Neg. LLF: 119.23288885492843
Iteration: 6, Func. Count: 66, Neg. LLF: 118.94869528935085
Iteration: 7, Func. Count: 76, Neg. LLF: 118.91727985391809
Iteration: 8, Func. Count: 86, Neg. LLF: 118.82249146817858
Iteration: 9, Func. Count: 96, Neg. LLF: 118.79188502847279
Iteration: 10, Func. Count: 106, Neg. LLF: 118.79024487198652
Iteration: 11, Func. Count: 117, Neg. LLF: 118.7816303592199
Iteration: 12, Func. Count: 128, Neg. LLF: 118.77537628642618
Iteration: 13, Func. Count: 138, Neg. LLF: 118.77537362127379
Iteration: 14, Func. Count: 147, Neg. LLF: 118.77537362128447
Optimization terminated successfully (Exit mode 0)
Current function value: 118.77537362127379
Iterations: 14
Function evaluations: 147
Gradient evaluations: 14
Iteration: 1, Func. Count: 12, Neg. LLF: 121.43413420108902
Iteration: 2, Func. Count: 24, Neg. LLF: 140.94045315580252
Iteration: 3, Func. Count: 36, Neg. LLF: 119.30284726473683
Iteration: 4, Func. Count: 47, Neg. LLF: 129.40413784364904
Iteration: 5, Func. Count: 59, Neg. LLF: 119.0437019761371
Iteration: 6, Func. Count: 70, Neg. LLF: 119.15919847558689
Iteration: 7, Func. Count: 82, Neg. LLF: 119.02661497357253
Iteration: 8, Func. Count: 94, Neg. LLF: 118.8050932392868
Iteration: 9, Func. Count: 105, Neg. LLF: 118.97834911368284
Iteration: 10, Func. Count: 117, Neg. LLF: 118.79227871589993
Iteration: 11, Func. Count: 129, Neg. LLF: 118.77925815048263
Iteration: 12, Func. Count: 140, Neg. LLF: 118.77617480159115
Iteration: 13, Func. Count: 151, Neg. LLF: 118.77554245398787
Iteration: 14, Func. Count: 162, Neg. LLF: 118.77543067943131
Iteration: 15, Func. Count: 173, Neg. LLF: 118.77542206251334
Iteration: 16, Func. Count: 184, Neg. LLF: 118.77541446464485
Iteration: 17, Func. Count: 195, Neg. LLF: 118.7753990623584
Iteration: 18, Func. Count: 206, Neg. LLF: 118.77538306168455
Iteration: 19, Func. Count: 217, Neg. LLF: 118.77537418178441
Iteration: 20, Func. Count: 228, Neg. LLF: 118.7753727094344
Iteration: 21, Func. Count: 238, Neg. LLF: 118.77537287251944
Optimization terminated successfully (Exit mode 0)
Current function value: 118.7753727094344
Iterations: 21
Function evaluations: 238
Gradient evaluations: 21
Iteration: 1, Func. Count: 13, Neg. LLF: 121.78741071803603
Iteration: 2, Func. Count: 26, Neg. LLF: 143.61614541509448
Iteration: 3, Func. Count: 39, Neg. LLF: 119.43500831243666
Iteration: 4, Func. Count: 51, Neg. LLF: 66893.92696932427
Iteration: 5, Func. Count: 64, Neg. LLF: 119.43298039479603
Iteration: 6, Func. Count: 77, Neg. LLF: 119.69632363547295
Iteration: 7, Func. Count: 90, Neg. LLF: 118.93277593956961
Iteration: 8, Func. Count: 102, Neg. LLF: 119.08574548837485
Iteration: 9, Func. Count: 115, Neg. LLF: 119.26747412398119
Iteration: 10, Func. Count: 128, Neg. LLF: 118.81047593237615
Iteration: 11, Func. Count: 140, Neg. LLF: 118.78958797104167
Iteration: 12, Func. Count: 152, Neg. LLF: 118.78776930475313
Iteration: 13, Func. Count: 165, Neg. LLF: 118.77669961086622
Iteration: 14, Func. Count: 177, Neg. LLF: 118.7758773916599
Iteration: 15, Func. Count: 189, Neg. LLF: 118.77582380644652
Iteration: 16, Func. Count: 201, Neg. LLF: 118.77578731650783
Iteration: 17, Func. Count: 213, Neg. LLF: 118.77568959001937
Iteration: 18, Func. Count: 225, Neg. LLF: 118.77539783819026
Iteration: 19, Func. Count: 237, Neg. LLF: 118.77532722954082
Iteration: 20, Func. Count: 249, Neg. LLF: 118.77530280601243
Iteration: 21, Func. Count: 260, Neg. LLF: 118.77530280597969
Optimization terminated successfully (Exit mode 0)
Current function value: 118.77530280601243
Iterations: 21
Function evaluations: 260
Gradient evaluations: 21
Iteration: 1, Func. Count: 14, Neg. LLF: 122.00905159080322
Iteration: 2, Func. Count: 28, Neg. LLF: 146.06720310713914
Iteration: 3, Func. Count: 42, Neg. LLF: 119.55959153005386
Iteration: 4, Func. Count: 55, Neg. LLF: 280.28736301852666
Iteration: 5, Func. Count: 70, Neg. LLF: 120.13901548556727
Iteration: 6, Func. Count: 84, Neg. LLF: 119.6867381162954
Iteration: 7, Func. Count: 98, Neg. LLF: 118.95498339024827
Iteration: 8, Func. Count: 111, Neg. LLF: 118.91886936772038
Iteration: 9, Func. Count: 124, Neg. LLF: 119.30480714090744
Iteration: 10, Func. Count: 138, Neg. LLF: 118.81648429386719
Iteration: 11, Func. Count: 151, Neg. LLF: 118.88420754929182
Iteration: 12, Func. Count: 165, Neg. LLF: 118.80888288043867
Iteration: 13, Func. Count: 179, Neg. LLF: 118.77673011029975
Iteration: 14, Func. Count: 192, Neg. LLF: 118.77562764823624
Iteration: 15, Func. Count: 205, Neg. LLF: 118.7754704877167
Iteration: 16, Func. Count: 218, Neg. LLF: 118.77543872892959
Iteration: 17, Func. Count: 231, Neg. LLF: 118.77539220207017
Iteration: 18, Func. Count: 244, Neg. LLF: 118.77538436835681
Iteration: 19, Func. Count: 257, Neg. LLF: 118.77537743286761
Iteration: 20, Func. Count: 270, Neg. LLF: 118.77534273319135
Iteration: 21, Func. Count: 283, Neg. LLF: 118.77531666985362
Iteration: 22, Func. Count: 296, Neg. LLF: 118.77530450829514
Iteration: 23, Func. Count: 309, Neg. LLF: 118.77530266094128
Iteration: 24, Func. Count: 321, Neg. LLF: 118.77530267220327
Optimization terminated successfully (Exit mode 0)
Current function value: 118.77530266094128
Iterations: 24
Function evaluations: 321
Gradient evaluations: 24
Iteration: 1, Func. Count: 15, Neg. LLF: 122.02018325494953
Iteration: 2, Func. Count: 30, Neg. LLF: 145.25021015370362
Iteration: 3, Func. Count: 45, Neg. LLF: 119.61494024494431
Iteration: 4, Func. Count: 59, Neg. LLF: 3057.8641209395205
Iteration: 5, Func. Count: 75, Neg. LLF: 121.23129767670889
Iteration: 6, Func. Count: 90, Neg. LLF: 120.32631548897164
Iteration: 7, Func. Count: 105, Neg. LLF: 118.99818154119241
Iteration: 8, Func. Count: 119, Neg. LLF: 118.90711866919631
Iteration: 9, Func. Count: 133, Neg. LLF: 118.91270068752898
Iteration: 10, Func. Count: 148, Neg. LLF: 118.82243660185758
Iteration: 11, Func. Count: 162, Neg. LLF: 126.16042140563223
Iteration: 12, Func. Count: 177, Neg. LLF: 118.84273293210104
Iteration: 13, Func. Count: 192, Neg. LLF: 118.78081380684503
Iteration: 14, Func. Count: 206, Neg. LLF: 118.77757879183409
Iteration: 15, Func. Count: 220, Neg. LLF: 118.77571373325831
Iteration: 16, Func. Count: 234, Neg. LLF: 118.77548029701101
Iteration: 17, Func. Count: 248, Neg. LLF: 118.77543605529699
Iteration: 18, Func. Count: 263, Neg. LLF: 118.7753154092386
Iteration: 19, Func. Count: 277, Neg. LLF: 118.77531369900109
Iteration: 20, Func. Count: 291, Neg. LLF: 118.77531279276192
Optimization terminated successfully (Exit mode 0)
Current function value: 118.77531279276192
Iterations: 20
Function evaluations: 291
Gradient evaluations: 20
Iteration: 1, Func. Count: 8, Neg. LLF: 125.44197997643258
Iteration: 2, Func. Count: 16, Neg. LLF: 150.15080664588643
Iteration: 3, Func. Count: 24, Neg. LLF: 121.63342614631219
Iteration: 4, Func. Count: 31, Neg. LLF: 123.02624031205323
Iteration: 5, Func. Count: 39, Neg. LLF: 121.57891408814928
Iteration: 6, Func. Count: 46, Neg. LLF: 124.3454576617744
Iteration: 7, Func. Count: 54, Neg. LLF: 130.2850663340403
Iteration: 8, Func. Count: 62, Neg. LLF: 121.50062268540411
Iteration: 9, Func. Count: 69, Neg. LLF: 121.43299524889838
Iteration: 10, Func. Count: 76, Neg. LLF: 121.41728333331253
Iteration: 11, Func. Count: 83, Neg. LLF: 121.39765872120921
Iteration: 12, Func. Count: 90, Neg. LLF: 121.39644193361066
Iteration: 13, Func. Count: 97, Neg. LLF: 121.39615034724478
Iteration: 14, Func. Count: 104, Neg. LLF: 121.39614345769351
Iteration: 15, Func. Count: 110, Neg. LLF: 121.39614355878119
Optimization terminated successfully (Exit mode 0)
Current function value: 121.39614345769351
Iterations: 15
Function evaluations: 110
Gradient evaluations: 15
Iteration: 1, Func. Count: 9, Neg. LLF: 124.92605737082434
Iteration: 2, Func. Count: 18, Neg. LLF: 138.340465724631
Iteration: 3, Func. Count: 27, Neg. LLF: 122.73598260578443
Iteration: 4, Func. Count: 36, Neg. LLF: 125.6707749867184
Iteration: 5, Func. Count: 45, Neg. LLF: 121.57177228495753
Iteration: 6, Func. Count: 53, Neg. LLF: 121.50134549656254
Iteration: 7, Func. Count: 61, Neg. LLF: 126.1491804657511
Iteration: 8, Func. Count: 70, Neg. LLF: 121.65178136298164
Iteration: 9, Func. Count: 79, Neg. LLF: 121.42519097011886
Iteration: 10, Func. Count: 88, Neg. LLF: 121.39670783188554
Iteration: 11, Func. Count: 96, Neg. LLF: 121.3963268250296
Iteration: 12, Func. Count: 104, Neg. LLF: 121.39618941602177
Iteration: 13, Func. Count: 112, Neg. LLF: 121.39615588098451
Iteration: 14, Func. Count: 120, Neg. LLF: 121.39614411059377
Iteration: 15, Func. Count: 128, Neg. LLF: 121.3961429646539
Iteration: 16, Func. Count: 135, Neg. LLF: 121.39614296604819
Optimization terminated successfully (Exit mode 0)
Current function value: 121.3961429646539
Iterations: 16
Function evaluations: 135
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 125.28682655723317
Iteration: 2, Func. Count: 20, Neg. LLF: 140.0923131271867
Iteration: 3, Func. Count: 30, Neg. LLF: 122.61563564110973
Iteration: 4, Func. Count: 40, Neg. LLF: 158.78305699578212
Iteration: 5, Func. Count: 50, Neg. LLF: 121.57320488222447
Iteration: 6, Func. Count: 59, Neg. LLF: 121.45681539954106
Iteration: 7, Func. Count: 68, Neg. LLF: 124.8645914598022
Iteration: 8, Func. Count: 78, Neg. LLF: 121.41706455794656
Iteration: 9, Func. Count: 87, Neg. LLF: 121.4452540127758
Iteration: 10, Func. Count: 97, Neg. LLF: 121.4047166391428
Iteration: 11, Func. Count: 107, Neg. LLF: 121.40085530326444
Iteration: 12, Func. Count: 117, Neg. LLF: 121.39753108860806
Iteration: 13, Func. Count: 126, Neg. LLF: 121.3966525293337
Iteration: 14, Func. Count: 135, Neg. LLF: 121.39624208738643
Iteration: 15, Func. Count: 144, Neg. LLF: 121.3961726617363
Iteration: 16, Func. Count: 153, Neg. LLF: 121.39614311803305
Iteration: 17, Func. Count: 161, Neg. LLF: 121.3961431613947
Optimization terminated successfully (Exit mode 0)
Current function value: 121.39614311803305
Iterations: 17
Function evaluations: 161
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 125.50589339654488
Iteration: 2, Func. Count: 22, Neg. LLF: 140.14160917920145
Iteration: 3, Func. Count: 33, Neg. LLF: 122.60840618214809
Iteration: 4, Func. Count: 44, Neg. LLF: 210.85835101076597
Iteration: 5, Func. Count: 55, Neg. LLF: 121.58128283331513
Iteration: 6, Func. Count: 65, Neg. LLF: 121.5202499507966
Iteration: 7, Func. Count: 75, Neg. LLF: 125.15668222992775
Iteration: 8, Func. Count: 86, Neg. LLF: 124.79457230179628
Iteration: 9, Func. Count: 97, Neg. LLF: 122.37552999954777
Iteration: 10, Func. Count: 108, Neg. LLF: 121.4430337345075
Iteration: 11, Func. Count: 119, Neg. LLF: 121.40028442987379
Iteration: 12, Func. Count: 129, Neg. LLF: 121.39865426153429
Iteration: 13, Func. Count: 139, Neg. LLF: 121.39721677069039
Iteration: 14, Func. Count: 149, Neg. LLF: 121.39625235517217
Iteration: 15, Func. Count: 159, Neg. LLF: 121.39614965722943
Iteration: 16, Func. Count: 169, Neg. LLF: 121.39614364983024
Iteration: 17, Func. Count: 179, Neg. LLF: 121.39614296923347
Optimization terminated successfully (Exit mode 0)
Current function value: 121.39614296923347
Iterations: 17
Function evaluations: 179
Gradient evaluations: 17
Iteration: 1, Func. Count: 12, Neg. LLF: 125.45990001172143
Iteration: 2, Func. Count: 24, Neg. LLF: 137.957827905665
Iteration: 3, Func. Count: 36, Neg. LLF: 122.60941573915925
Iteration: 4, Func. Count: 48, Neg. LLF: 211.86366500821362
Iteration: 5, Func. Count: 60, Neg. LLF: 121.59192022513567
Iteration: 6, Func. Count: 71, Neg. LLF: 121.54231399129675
Iteration: 7, Func. Count: 82, Neg. LLF: 121.55989748594816
Iteration: 8, Func. Count: 94, Neg. LLF: 125.52040192990333
Iteration: 9, Func. Count: 106, Neg. LLF: 121.42176615564917
Iteration: 10, Func. Count: 117, Neg. LLF: 121.83462882629847
Iteration: 11, Func. Count: 129, Neg. LLF: 121.40676450543053
Iteration: 12, Func. Count: 140, Neg. LLF: 121.40062755593665
Iteration: 13, Func. Count: 151, Neg. LLF: 121.39630903363849
Iteration: 14, Func. Count: 162, Neg. LLF: 121.39615963072663
Iteration: 15, Func. Count: 173, Neg. LLF: 121.39614305629426
Iteration: 16, Func. Count: 183, Neg. LLF: 121.39614317132175
Optimization terminated successfully (Exit mode 0)
Current function value: 121.39614305629426
Iterations: 16
Function evaluations: 183
Gradient evaluations: 16
Iteration: 1, Func. Count: 9, Neg. LLF: 122.86909313131113
Iteration: 2, Func. Count: 18, Neg. LLF: 140.1294046053045
Iteration: 3, Func. Count: 27, Neg. LLF: 119.12809243540651
Iteration: 4, Func. Count: 35, Neg. LLF: 149.89790711562657
Iteration: 5, Func. Count: 45, Neg. LLF: 118.97011594259126
Iteration: 6, Func. Count: 53, Neg. LLF: 118.94579824911023
Iteration: 7, Func. Count: 61, Neg. LLF: 118.94515138844253
Iteration: 8, Func. Count: 69, Neg. LLF: 118.94514664770261
Iteration: 9, Func. Count: 76, Neg. LLF: 118.94514664770256
Optimization terminated successfully (Exit mode 0)
Current function value: 118.94514664770261
Iterations: 9
Function evaluations: 76
Gradient evaluations: 9
Iteration: 1, Func. Count: 10, Neg. LLF: 121.7285833602183
Iteration: 2, Func. Count: 20, Neg. LLF: 131.8223782789482
Iteration: 3, Func. Count: 30, Neg. LLF: 119.45791866559618
Iteration: 4, Func. Count: 39, Neg. LLF: 135.8014964885747
Iteration: 5, Func. Count: 49, Neg. LLF: 118.99245106959641
Iteration: 6, Func. Count: 58, Neg. LLF: 118.94997885210597
Iteration: 7, Func. Count: 67, Neg. LLF: 118.94685275608032
Iteration: 8, Func. Count: 76, Neg. LLF: 118.94534754965389
Iteration: 9, Func. Count: 85, Neg. LLF: 118.94515406197507
Iteration: 10, Func. Count: 94, Neg. LLF: 118.94514663207165
Iteration: 11, Func. Count: 102, Neg. LLF: 118.94514677470163
Optimization terminated successfully (Exit mode 0)
Current function value: 118.94514663207165
Iterations: 11
Function evaluations: 102
Gradient evaluations: 11
Iteration: 1, Func. Count: 11, Neg. LLF: 122.17204376598377
Iteration: 2, Func. Count: 22, Neg. LLF: 132.16517333046824
Iteration: 3, Func. Count: 33, Neg. LLF: 119.5353731645013
Iteration: 4, Func. Count: 43, Neg. LLF: 139.21382677294162
Iteration: 5, Func. Count: 54, Neg. LLF: 119.62580646490707
Iteration: 6, Func. Count: 65, Neg. LLF: 118.9612583216203
Iteration: 7, Func. Count: 75, Neg. LLF: 118.94607697487457
Iteration: 8, Func. Count: 85, Neg. LLF: 118.9453538704454
Iteration: 9, Func. Count: 95, Neg. LLF: 118.94521982867803
Iteration: 10, Func. Count: 105, Neg. LLF: 118.94515631910566
Iteration: 11, Func. Count: 115, Neg. LLF: 118.94514674732297
Iteration: 12, Func. Count: 124, Neg. LLF: 118.94514675655142
Optimization terminated successfully (Exit mode 0)
Current function value: 118.94514674732297
Iterations: 12
Function evaluations: 124
Gradient evaluations: 12
Iteration: 1, Func. Count: 12, Neg. LLF: 121.3241245128142
Iteration: 2, Func. Count: 24, Neg. LLF: 123.32648851238203
Iteration: 3, Func. Count: 36, Neg. LLF: 120.75914585324301
Iteration: 4, Func. Count: 48, Neg. LLF: 130.3691848760751
Iteration: 5, Func. Count: 60, Neg. LLF: 132.79676713823517
Iteration: 6, Func. Count: 72, Neg. LLF: 121.57657635620531
Iteration: 7, Func. Count: 84, Neg. LLF: 131.60587115680067
Iteration: 8, Func. Count: 96, Neg. LLF: 119.97532300768853
Iteration: 9, Func. Count: 108, Neg. LLF: 118.8502122816485
Iteration: 10, Func. Count: 119, Neg. LLF: 118.83810414789968
Iteration: 11, Func. Count: 130, Neg. LLF: 120.51989291009272
Iteration: 12, Func. Count: 143, Neg. LLF: 118.82284959791521
Iteration: 13, Func. Count: 155, Neg. LLF: 118.75922212094058
Iteration: 14, Func. Count: 166, Neg. LLF: 118.53111586087435
Iteration: 15, Func. Count: 177, Neg. LLF: 118.19832381153783
Iteration: 16, Func. Count: 188, Neg. LLF: 118.01659785558954
Iteration: 17, Func. Count: 200, Neg. LLF: 122.16831932939326
Iteration: 18, Func. Count: 212, Neg. LLF: 116.98500500553966
Iteration: 19, Func. Count: 223, Neg. LLF: 117.1261364397493
Iteration: 20, Func. Count: 235, Neg. LLF: 116.9212896704532
Iteration: 21, Func. Count: 246, Neg. LLF: 116.9154972564481
Iteration: 22, Func. Count: 257, Neg. LLF: 116.9154840373004
Iteration: 23, Func. Count: 268, Neg. LLF: 116.91548199016403
Iteration: 24, Func. Count: 278, Neg. LLF: 116.91548199009296
Optimization terminated successfully (Exit mode 0)
Current function value: 116.91548199016403
Iterations: 24
Function evaluations: 278
Gradient evaluations: 24
Iteration: 1, Func. Count: 13, Neg. LLF: 121.18485702967352
Iteration: 2, Func. Count: 26, Neg. LLF: 121.13751966284809
Iteration: 3, Func. Count: 39, Neg. LLF: 121.04919554501548
Iteration: 4, Func. Count: 52, Neg. LLF: 147.93011753395567
Iteration: 5, Func. Count: 66, Neg. LLF: 132.28436323137998
Iteration: 6, Func. Count: 79, Neg. LLF: 119.55140036754521
Iteration: 7, Func. Count: 92, Neg. LLF: 119.30723945625611
Iteration: 8, Func. Count: 105, Neg. LLF: 119.60081729481286
Iteration: 9, Func. Count: 118, Neg. LLF: 118.72931729013203
Iteration: 10, Func. Count: 130, Neg. LLF: 191.1008178876326
Iteration: 11, Func. Count: 143, Neg. LLF: 119.33940247803542
Iteration: 12, Func. Count: 156, Neg. LLF: 129.14271585797823
Iteration: 13, Func. Count: 169, Neg. LLF: 140.92236797677165
Iteration: 14, Func. Count: 182, Neg. LLF: 130.80591333923553
Iteration: 15, Func. Count: 195, Neg. LLF: 135.58547857880842
Iteration: 16, Func. Count: 208, Neg. LLF: 118.86734150488985
Iteration: 17, Func. Count: 221, Neg. LLF: 117.27347964007811
Iteration: 18, Func. Count: 233, Neg. LLF: 116.99558564711907
Iteration: 19, Func. Count: 245, Neg. LLF: 116.93866984938815
Iteration: 20, Func. Count: 257, Neg. LLF: 116.9223508712062
Iteration: 21, Func. Count: 269, Neg. LLF: 116.91562466668232
Iteration: 22, Func. Count: 281, Neg. LLF: 116.91548424005755
Iteration: 23, Func. Count: 293, Neg. LLF: 116.91548193551473
Iteration: 24, Func. Count: 304, Neg. LLF: 116.91548217761894
Optimization terminated successfully (Exit mode 0)
Current function value: 116.91548193551473
Iterations: 24
Function evaluations: 304
Gradient evaluations: 24
Iteration: 1, Func. Count: 10, Neg. LLF: 123.10997893587148
Iteration: 2, Func. Count: 20, Neg. LLF: 141.32476453467956
Iteration: 3, Func. Count: 30, Neg. LLF: 119.15343365557887
Iteration: 4, Func. Count: 39, Neg. LLF: 127.45363194410115
Iteration: 5, Func. Count: 49, Neg. LLF: 118.99235264285471
Iteration: 6, Func. Count: 58, Neg. LLF: 118.97711591359874
Iteration: 7, Func. Count: 67, Neg. LLF: 118.92815542432777
Iteration: 8, Func. Count: 76, Neg. LLF: 118.90073885316428
Iteration: 9, Func. Count: 85, Neg. LLF: 118.88920603025238
Iteration: 10, Func. Count: 94, Neg. LLF: 118.88818269278802
Iteration: 11, Func. Count: 103, Neg. LLF: 118.88792589230817
Iteration: 12, Func. Count: 112, Neg. LLF: 118.88717735109768
Iteration: 13, Func. Count: 121, Neg. LLF: 118.88658934896971
Iteration: 14, Func. Count: 130, Neg. LLF: 118.88617878375827
Iteration: 15, Func. Count: 139, Neg. LLF: 118.88590390563112
Iteration: 16, Func. Count: 148, Neg. LLF: 118.87568604030037
Iteration: 17, Func. Count: 157, Neg. LLF: 130.15210069217534
Iteration: 18, Func. Count: 167, Neg. LLF: 129.8285053060172
Iteration: 19, Func. Count: 177, Neg. LLF: 129.02316589699296
Iteration: 20, Func. Count: 187, Neg. LLF: 121.06260649677147
Iteration: 21, Func. Count: 197, Neg. LLF: 128.69355992477554
Iteration: 22, Func. Count: 207, Neg. LLF: 118.80738046473523
Iteration: 23, Func. Count: 217, Neg. LLF: 118.7668641066941
Iteration: 24, Func. Count: 226, Neg. LLF: 118.76783535084503
Iteration: 25, Func. Count: 236, Neg. LLF: 118.76276517528525
Iteration: 26, Func. Count: 245, Neg. LLF: 118.762550665038
Iteration: 27, Func. Count: 254, Neg. LLF: 118.76253790100472
Iteration: 28, Func. Count: 263, Neg. LLF: 118.76253690805876
Optimization terminated successfully (Exit mode 0)
Current function value: 118.76253690805876
Iterations: 28
Function evaluations: 263
Gradient evaluations: 28
Iteration: 1, Func. Count: 11, Neg. LLF: 121.73182963327217
Iteration: 2, Func. Count: 22, Neg. LLF: 141.75926787624206
Iteration: 3, Func. Count: 33, Neg. LLF: 119.44405311064693
Iteration: 4, Func. Count: 43, Neg. LLF: 148.42768649057584
Iteration: 5, Func. Count: 54, Neg. LLF: 119.14223295463862
Iteration: 6, Func. Count: 64, Neg. LLF: 118.95645304599292
Iteration: 7, Func. Count: 74, Neg. LLF: 118.91425292867855
Iteration: 8, Func. Count: 84, Neg. LLF: 118.90500418270524
Iteration: 9, Func. Count: 94, Neg. LLF: 118.89649966745363
Iteration: 10, Func. Count: 104, Neg. LLF: 118.89086946056528
Iteration: 11, Func. Count: 114, Neg. LLF: 118.88787532645892
Iteration: 12, Func. Count: 124, Neg. LLF: 118.88684958984535
Iteration: 13, Func. Count: 134, Neg. LLF: 118.8864188226706
Iteration: 14, Func. Count: 144, Neg. LLF: 118.88614029287191
Iteration: 15, Func. Count: 154, Neg. LLF: 118.88567088516335
Iteration: 16, Func. Count: 164, Neg. LLF: 118.85398814952153
Iteration: 17, Func. Count: 174, Neg. LLF: 129.35675771650168
Iteration: 18, Func. Count: 185, Neg. LLF: 130.98250742803774
Iteration: 19, Func. Count: 196, Neg. LLF: 119.81332265761313
Iteration: 20, Func. Count: 207, Neg. LLF: 128.0304745607706
Iteration: 21, Func. Count: 218, Neg. LLF: 119.04749964358896
Iteration: 22, Func. Count: 229, Neg. LLF: 118.76450442085266
Iteration: 23, Func. Count: 239, Neg. LLF: 118.76264998477588
Iteration: 24, Func. Count: 249, Neg. LLF: 118.7625505860395
Iteration: 25, Func. Count: 259, Neg. LLF: 118.76253722325359
Iteration: 26, Func. Count: 268, Neg. LLF: 118.76253726489504
Optimization terminated successfully (Exit mode 0)
Current function value: 118.76253722325359
Iterations: 26
Function evaluations: 268
Gradient evaluations: 26
Iteration: 1, Func. Count: 12, Neg. LLF: 122.3054905487615
Iteration: 2, Func. Count: 24, Neg. LLF: 143.86742057597291
Iteration: 3, Func. Count: 36, Neg. LLF: 119.51788687327921
Iteration: 4, Func. Count: 47, Neg. LLF: 156.3500079859771
Iteration: 5, Func. Count: 60, Neg. LLF: 119.01843629409167
Iteration: 6, Func. Count: 71, Neg. LLF: 118.97345505810941
Iteration: 7, Func. Count: 82, Neg. LLF: 118.91024969689667
Iteration: 8, Func. Count: 93, Neg. LLF: 118.90965977795625
Iteration: 9, Func. Count: 105, Neg. LLF: 118.89384751179401
Iteration: 10, Func. Count: 116, Neg. LLF: 118.89175245427835
Iteration: 11, Func. Count: 127, Neg. LLF: 118.89069954899222
Iteration: 12, Func. Count: 138, Neg. LLF: 118.88849282161569
Iteration: 13, Func. Count: 149, Neg. LLF: 118.8869416829112
Iteration: 14, Func. Count: 160, Neg. LLF: 118.88636452315296
Iteration: 15, Func. Count: 171, Neg. LLF: 118.88618317010118
Iteration: 16, Func. Count: 182, Neg. LLF: 118.88588763043316
Iteration: 17, Func. Count: 193, Neg. LLF: 118.87641934555835
Iteration: 18, Func. Count: 204, Neg. LLF: 129.70362357967556
Iteration: 19, Func. Count: 216, Neg. LLF: 129.51743136957833
Iteration: 20, Func. Count: 228, Neg. LLF: 130.69490819672043
Iteration: 21, Func. Count: 240, Neg. LLF: 127.82079132115904
Iteration: 22, Func. Count: 252, Neg. LLF: 121.07111951233993
Iteration: 23, Func. Count: 264, Neg. LLF: 119.5354515235764
Iteration: 24, Func. Count: 276, Neg. LLF: 119.52754068935563
Iteration: 25, Func. Count: 289, Neg. LLF: 119.07925181983737
Iteration: 26, Func. Count: 301, Neg. LLF: 118.78953421698428
Iteration: 27, Func. Count: 313, Neg. LLF: 118.77073353834393
Iteration: 28, Func. Count: 324, Neg. LLF: 118.76981192325525
Iteration: 29, Func. Count: 335, Neg. LLF: 118.76774456736702
Iteration: 30, Func. Count: 346, Neg. LLF: 118.76394089606663
Iteration: 31, Func. Count: 357, Neg. LLF: 118.76309547486312
Iteration: 32, Func. Count: 368, Neg. LLF: 118.76257538640662
Iteration: 33, Func. Count: 379, Neg. LLF: 118.7625396948818
Iteration: 34, Func. Count: 390, Neg. LLF: 118.76253691939336
Iteration: 35, Func. Count: 400, Neg. LLF: 118.76253701985463
Optimization terminated successfully (Exit mode 0)
Current function value: 118.76253691939336
Iterations: 35
Function evaluations: 400
Gradient evaluations: 35
Iteration: 1, Func. Count: 13, Neg. LLF: 122.55099055747073
Iteration: 2, Func. Count: 26, Neg. LLF: 145.9626615705118
Iteration: 3, Func. Count: 39, Neg. LLF: 119.54731505702989
Iteration: 4, Func. Count: 51, Neg. LLF: 1426.0957911010094
Iteration: 5, Func. Count: 65, Neg. LLF: 119.33641128130736
Iteration: 6, Func. Count: 78, Neg. LLF: 120.66532390989099
Iteration: 7, Func. Count: 91, Neg. LLF: 118.81906361413655
Iteration: 8, Func. Count: 103, Neg. LLF: 140.44469158286813
Iteration: 9, Func. Count: 116, Neg. LLF: 169.65803530591776
Iteration: 10, Func. Count: 129, Neg. LLF: 171.94349602119112
Iteration: 11, Func. Count: 142, Neg. LLF: 169.04078119690953
Iteration: 12, Func. Count: 155, Neg. LLF: 118.95904236145739
Iteration: 13, Func. Count: 168, Neg. LLF: 118.38747493136592
Iteration: 14, Func. Count: 181, Neg. LLF: 118.30860899616606
Iteration: 15, Func. Count: 193, Neg. LLF: 118.00151872373395
Iteration: 16, Func. Count: 205, Neg. LLF: 117.35501484297963
Iteration: 17, Func. Count: 217, Neg. LLF: 117.68646153611226
Iteration: 18, Func. Count: 230, Neg. LLF: 116.95930256741524
Iteration: 19, Func. Count: 242, Neg. LLF: 116.91765925419456
Iteration: 20, Func. Count: 254, Neg. LLF: 116.9158662222473
Iteration: 21, Func. Count: 266, Neg. LLF: 116.91557528955738
Iteration: 22, Func. Count: 278, Neg. LLF: 116.91548451754338
Iteration: 23, Func. Count: 290, Neg. LLF: 116.91548195361399
Iteration: 24, Func. Count: 301, Neg. LLF: 116.91548195360248
Optimization terminated successfully (Exit mode 0)
Current function value: 116.91548195361399
Iterations: 24
Function evaluations: 301
Gradient evaluations: 24
Iteration: 1, Func. Count: 14, Neg. LLF: 122.51454134585556
Iteration: 2, Func. Count: 28, Neg. LLF: 145.3495899039595
Iteration: 3, Func. Count: 42, Neg. LLF: 119.55398131399264
Iteration: 4, Func. Count: 55, Neg. LLF: 581.8308851461996
Iteration: 5, Func. Count: 70, Neg. LLF: 119.33762294890028
Iteration: 6, Func. Count: 83, Neg. LLF: 120.10061717275418
Iteration: 7, Func. Count: 97, Neg. LLF: 118.82108542925094
Iteration: 8, Func. Count: 110, Neg. LLF: 120.9955473859343
Iteration: 9, Func. Count: 124, Neg. LLF: 175.1370898221191
Iteration: 10, Func. Count: 138, Neg. LLF: 746.2176166279572
Iteration: 11, Func. Count: 152, Neg. LLF: 122.1578420669497
Iteration: 12, Func. Count: 166, Neg. LLF: 118.51307165348543
Iteration: 13, Func. Count: 179, Neg. LLF: 118.41365631778133
Iteration: 14, Func. Count: 192, Neg. LLF: 118.55962672146896
Iteration: 15, Func. Count: 206, Neg. LLF: 117.68833920758861
Iteration: 16, Func. Count: 219, Neg. LLF: 118.8547697333407
Iteration: 17, Func. Count: 233, Neg. LLF: 117.00904952337189
Iteration: 18, Func. Count: 246, Neg. LLF: 116.93014967294272
Iteration: 19, Func. Count: 259, Neg. LLF: 116.91904728966436
Iteration: 20, Func. Count: 272, Neg. LLF: 116.91704784104631
Iteration: 21, Func. Count: 285, Neg. LLF: 116.91552269428088
Iteration: 22, Func. Count: 298, Neg. LLF: 116.91548444029176
Iteration: 23, Func. Count: 311, Neg. LLF: 116.9154819161186
Iteration: 24, Func. Count: 323, Neg. LLF: 116.91548215826782
Optimization terminated successfully (Exit mode 0)
Current function value: 116.9154819161186
Iterations: 24
Function evaluations: 323
Gradient evaluations: 24
Iteration: 1, Func. Count: 11, Neg. LLF: 124.1350180397092
Iteration: 2, Func. Count: 22, Neg. LLF: 153.37229884635428
Iteration: 3, Func. Count: 33, Neg. LLF: 119.24306078547617
Iteration: 4, Func. Count: 43, Neg. LLF: 120.51193360141187
Iteration: 5, Func. Count: 55, Neg. LLF: 119.45378695816622
Iteration: 6, Func. Count: 66, Neg. LLF: 119.02672618220124
Iteration: 7, Func. Count: 77, Neg. LLF: 118.93460651366976
Iteration: 8, Func. Count: 87, Neg. LLF: 118.9142582096066
Iteration: 9, Func. Count: 97, Neg. LLF: 118.88434059799309
Iteration: 10, Func. Count: 107, Neg. LLF: 118.86591550419884
Iteration: 11, Func. Count: 117, Neg. LLF: 118.86529554257147
Iteration: 12, Func. Count: 127, Neg. LLF: 118.86512705763101
Iteration: 13, Func. Count: 137, Neg. LLF: 118.86476672021244
Iteration: 14, Func. Count: 147, Neg. LLF: 118.86438772069714
Iteration: 15, Func. Count: 157, Neg. LLF: 118.86410579922033
Iteration: 16, Func. Count: 167, Neg. LLF: 118.86403879249752
Iteration: 17, Func. Count: 177, Neg. LLF: 118.86403461094436
Iteration: 18, Func. Count: 186, Neg. LLF: 118.86403458070859
Optimization terminated successfully (Exit mode 0)
Current function value: 118.86403461094436
Iterations: 18
Function evaluations: 186
Gradient evaluations: 18
Iteration: 1, Func. Count: 12, Neg. LLF: 122.57327865450746
Iteration: 2, Func. Count: 24, Neg. LLF: 150.95454525065176
Iteration: 3, Func. Count: 36, Neg. LLF: 119.35315106895618
Iteration: 4, Func. Count: 47, Neg. LLF: 26918.585286115227
Iteration: 5, Func. Count: 60, Neg. LLF: 119.1698993821816
Iteration: 6, Func. Count: 71, Neg. LLF: 120.21871676734963
Iteration: 7, Func. Count: 83, Neg. LLF: 118.90995872160742
Iteration: 8, Func. Count: 94, Neg. LLF: 118.9010942502382
Iteration: 9, Func. Count: 105, Neg. LLF: 118.87759584052198
Iteration: 10, Func. Count: 116, Neg. LLF: 118.87143514157167
Iteration: 11, Func. Count: 127, Neg. LLF: 118.86645321171346
Iteration: 12, Func. Count: 138, Neg. LLF: 118.866073246037
Iteration: 13, Func. Count: 149, Neg. LLF: 118.86564931554354
Iteration: 14, Func. Count: 160, Neg. LLF: 118.86482900798997
Iteration: 15, Func. Count: 171, Neg. LLF: 118.86429760309511
Iteration: 16, Func. Count: 182, Neg. LLF: 118.86406188292125
Iteration: 17, Func. Count: 193, Neg. LLF: 118.86403736590822
Iteration: 18, Func. Count: 204, Neg. LLF: 118.86403480183289
Iteration: 19, Func. Count: 214, Neg. LLF: 118.8640349264086
Optimization terminated successfully (Exit mode 0)
Current function value: 118.86403480183289
Iterations: 19
Function evaluations: 214
Gradient evaluations: 19
Iteration: 1, Func. Count: 13, Neg. LLF: 122.980120735533
Iteration: 2, Func. Count: 26, Neg. LLF: 153.29209186043988
Iteration: 3, Func. Count: 39, Neg. LLF: 119.54323431840126
Iteration: 4, Func. Count: 51, Neg. LLF: 39198.665936147976
Iteration: 5, Func. Count: 65, Neg. LLF: 120.03783668752804
Iteration: 6, Func. Count: 78, Neg. LLF: 120.41932001097979
Iteration: 7, Func. Count: 91, Neg. LLF: 118.99457509703294
Iteration: 8, Func. Count: 103, Neg. LLF: 119.01071386895097
Iteration: 9, Func. Count: 116, Neg. LLF: 118.90102190418702
Iteration: 10, Func. Count: 128, Neg. LLF: 118.87751703177858
Iteration: 11, Func. Count: 140, Neg. LLF: 118.87064315526459
Iteration: 12, Func. Count: 152, Neg. LLF: 118.8670184706132
Iteration: 13, Func. Count: 164, Neg. LLF: 118.86589141664068
Iteration: 14, Func. Count: 176, Neg. LLF: 118.86562908207176
Iteration: 15, Func. Count: 188, Neg. LLF: 118.86461470686741
Iteration: 16, Func. Count: 200, Neg. LLF: 118.86417123582072
Iteration: 17, Func. Count: 212, Neg. LLF: 118.86405092755078
Iteration: 18, Func. Count: 224, Neg. LLF: 118.86403591806759
Iteration: 19, Func. Count: 236, Neg. LLF: 118.86403444894844
Iteration: 20, Func. Count: 247, Neg. LLF: 118.86403448522933
Optimization terminated successfully (Exit mode 0)
Current function value: 118.86403444894844
Iterations: 20
Function evaluations: 247
Gradient evaluations: 20
Iteration: 1, Func. Count: 14, Neg. LLF: 123.27709794180443
Iteration: 2, Func. Count: 28, Neg. LLF: 156.22491063154166
Iteration: 3, Func. Count: 42, Neg. LLF: 119.57646837883149
Iteration: 4, Func. Count: 55, Neg. LLF: 149.14717066901832
Iteration: 5, Func. Count: 70, Neg. LLF: 120.36923606441712
Iteration: 6, Func. Count: 84, Neg. LLF: 120.21996049733552
Iteration: 7, Func. Count: 98, Neg. LLF: 119.0070682979955
Iteration: 8, Func. Count: 111, Neg. LLF: 119.04889621120707
Iteration: 9, Func. Count: 125, Neg. LLF: 118.89997629718918
Iteration: 10, Func. Count: 138, Neg. LLF: 118.88158395384745
Iteration: 11, Func. Count: 151, Neg. LLF: 118.87099216524886
Iteration: 12, Func. Count: 164, Neg. LLF: 118.86730892823624
Iteration: 13, Func. Count: 177, Neg. LLF: 118.86622271076949
Iteration: 14, Func. Count: 190, Neg. LLF: 118.86569431582492
Iteration: 15, Func. Count: 203, Neg. LLF: 118.86541014517874
Iteration: 16, Func. Count: 216, Neg. LLF: 118.86445553943777
Iteration: 17, Func. Count: 229, Neg. LLF: 118.86413854346752
Iteration: 18, Func. Count: 242, Neg. LLF: 118.86404523865258
Iteration: 19, Func. Count: 255, Neg. LLF: 118.86403523914433
Iteration: 20, Func. Count: 268, Neg. LLF: 118.864034361965
Optimization terminated successfully (Exit mode 0)
Current function value: 118.864034361965
Iterations: 20
Function evaluations: 268
Gradient evaluations: 20
Iteration: 1, Func. Count: 15, Neg. LLF: 123.21855433431769
Iteration: 2, Func. Count: 30, Neg. LLF: 155.28306817149812
Iteration: 3, Func. Count: 45, Neg. LLF: 119.58552362174134
Iteration: 4, Func. Count: 59, Neg. LLF: 150.87321027499183
Iteration: 5, Func. Count: 75, Neg. LLF: 120.8304441007597
Iteration: 6, Func. Count: 90, Neg. LLF: 120.58053452264222
Iteration: 7, Func. Count: 105, Neg. LLF: 119.00360736007995
Iteration: 8, Func. Count: 119, Neg. LLF: 119.08162760503795
Iteration: 9, Func. Count: 134, Neg. LLF: 118.902646279703
Iteration: 10, Func. Count: 148, Neg. LLF: 118.88433221338161
Iteration: 11, Func. Count: 162, Neg. LLF: 118.8695385565776
Iteration: 12, Func. Count: 176, Neg. LLF: 118.86704579575807
Iteration: 13, Func. Count: 190, Neg. LLF: 118.86612900589739
Iteration: 14, Func. Count: 204, Neg. LLF: 118.86580332790534
Iteration: 15, Func. Count: 218, Neg. LLF: 118.86461231849219
Iteration: 16, Func. Count: 232, Neg. LLF: 118.86417765014481
Iteration: 17, Func. Count: 246, Neg. LLF: 118.8640542740187
Iteration: 18, Func. Count: 260, Neg. LLF: 118.86403590703019
Iteration: 19, Func. Count: 274, Neg. LLF: 118.86403440678039
Iteration: 20, Func. Count: 287, Neg. LLF: 118.86403450940477
Optimization terminated successfully (Exit mode 0)
Current function value: 118.86403440678039
Iterations: 20
Function evaluations: 287
Gradient evaluations: 20
Iteration: 1, Func. Count: 12, Neg. LLF: 126.76509988534279
Iteration: 2, Func. Count: 24, Neg. LLF: 163.0520651759335
Iteration: 3, Func. Count: 36, Neg. LLF: 119.57829237126205
Iteration: 4, Func. Count: 47, Neg. LLF: 120.5012052487195
Iteration: 5, Func. Count: 61, Neg. LLF: 120.15903103498404
Iteration: 6, Func. Count: 73, Neg. LLF: 119.18679628800741
Iteration: 7, Func. Count: 85, Neg. LLF: 119.09335377140584
Iteration: 8, Func. Count: 97, Neg. LLF: 118.93132814132254
Iteration: 9, Func. Count: 108, Neg. LLF: 118.90121359533345
Iteration: 10, Func. Count: 119, Neg. LLF: 118.87175498909099
Iteration: 11, Func. Count: 130, Neg. LLF: 118.86609360980992
Iteration: 12, Func. Count: 141, Neg. LLF: 118.8600651871199
Iteration: 13, Func. Count: 152, Neg. LLF: 118.97625241245782
Iteration: 14, Func. Count: 164, Neg. LLF: 123.8067424776922
Iteration: 15, Func. Count: 176, Neg. LLF: 118.8318710184634
Iteration: 16, Func. Count: 188, Neg. LLF: 118.80083184008774
Iteration: 17, Func. Count: 200, Neg. LLF: 118.77996130980142
Iteration: 18, Func. Count: 211, Neg. LLF: 118.77809044807634
Iteration: 19, Func. Count: 222, Neg. LLF: 118.77737045719907
Iteration: 20, Func. Count: 233, Neg. LLF: 118.77685130616425
Iteration: 21, Func. Count: 244, Neg. LLF: 118.77674249100845
Iteration: 22, Func. Count: 255, Neg. LLF: 118.77667755725817
Iteration: 23, Func. Count: 266, Neg. LLF: 118.77655626136446
Iteration: 24, Func. Count: 277, Neg. LLF: 118.77627286609984
Iteration: 25, Func. Count: 288, Neg. LLF: 118.77589080622568
Iteration: 26, Func. Count: 299, Neg. LLF: 118.77558000793842
Iteration: 27, Func. Count: 310, Neg. LLF: 118.77537403865013
Iteration: 28, Func. Count: 321, Neg. LLF: 118.77537268416461
Iteration: 29, Func. Count: 331, Neg. LLF: 118.7753726841671
Optimization terminated successfully (Exit mode 0)
Current function value: 118.77537268416461
Iterations: 29
Function evaluations: 331
Gradient evaluations: 29
Iteration: 1, Func. Count: 13, Neg. LLF: 124.19276422740782
Iteration: 2, Func. Count: 26, Neg. LLF: 163.50705650971443
Iteration: 3, Func. Count: 39, Neg. LLF: 119.57720782936651
Iteration: 4, Func. Count: 51, Neg. LLF: 149.3606740971755
Iteration: 5, Func. Count: 65, Neg. LLF: 120.6015452926533
Iteration: 6, Func. Count: 78, Neg. LLF: 121.04415692101541
Iteration: 7, Func. Count: 91, Neg. LLF: 119.1094132814138
Iteration: 8, Func. Count: 104, Neg. LLF: 118.90817975555775
Iteration: 9, Func. Count: 116, Neg. LLF: 118.86873105474541
Iteration: 10, Func. Count: 128, Neg. LLF: 118.84864806270177
Iteration: 11, Func. Count: 140, Neg. LLF: 118.82031917602121
Iteration: 12, Func. Count: 152, Neg. LLF: 118.80572547835973
Iteration: 13, Func. Count: 165, Neg. LLF: 118.77779649561369
Iteration: 14, Func. Count: 177, Neg. LLF: 118.7755877853402
Iteration: 15, Func. Count: 189, Neg. LLF: 118.77542861496302
Iteration: 16, Func. Count: 201, Neg. LLF: 118.77539458185154
Iteration: 17, Func. Count: 213, Neg. LLF: 118.77539128976247
Iteration: 18, Func. Count: 225, Neg. LLF: 118.77538921898334
Iteration: 19, Func. Count: 237, Neg. LLF: 118.77538415808144
Iteration: 20, Func. Count: 249, Neg. LLF: 118.77537818955001
Iteration: 21, Func. Count: 261, Neg. LLF: 118.77537375996751
Iteration: 22, Func. Count: 273, Neg. LLF: 118.77537271864472
Iteration: 23, Func. Count: 284, Neg. LLF: 118.77537288179013
Optimization terminated successfully (Exit mode 0)
Current function value: 118.77537271864472
Iterations: 23
Function evaluations: 284
Gradient evaluations: 23
Iteration: 1, Func. Count: 14, Neg. LLF: 124.73181062804248
Iteration: 2, Func. Count: 28, Neg. LLF: 166.6738240436139
Iteration: 3, Func. Count: 42, Neg. LLF: 119.63321039394705
Iteration: 4, Func. Count: 55, Neg. LLF: 141.07776397232968
Iteration: 5, Func. Count: 70, Neg. LLF: 120.66681915771377
Iteration: 6, Func. Count: 84, Neg. LLF: 121.15747663676945
Iteration: 7, Func. Count: 98, Neg. LLF: 119.0574299089021
Iteration: 8, Func. Count: 111, Neg. LLF: 118.93896894582439
Iteration: 9, Func. Count: 124, Neg. LLF: 118.98265234481616
Iteration: 10, Func. Count: 138, Neg. LLF: 118.88407553436932
Iteration: 11, Func. Count: 151, Neg. LLF: 119.03458787460048
Iteration: 12, Func. Count: 165, Neg. LLF: 118.81797646241502
Iteration: 13, Func. Count: 178, Neg. LLF: 118.79845194004614
Iteration: 14, Func. Count: 191, Neg. LLF: 118.78212512559482
Iteration: 15, Func. Count: 204, Neg. LLF: 118.77583392295189
Iteration: 16, Func. Count: 217, Neg. LLF: 118.77674534846558
Iteration: 17, Func. Count: 231, Neg. LLF: 118.77545143479233
Iteration: 18, Func. Count: 244, Neg. LLF: 118.77530338773703
Iteration: 19, Func. Count: 256, Neg. LLF: 118.77530338778597
Optimization terminated successfully (Exit mode 0)
Current function value: 118.77530338773703
Iterations: 19
Function evaluations: 256
Gradient evaluations: 19
Iteration: 1, Func. Count: 15, Neg. LLF: 125.07094187889486
Iteration: 2, Func. Count: 30, Neg. LLF: 170.52751057204324
Iteration: 3, Func. Count: 45, Neg. LLF: 119.66957605457155
Iteration: 4, Func. Count: 59, Neg. LLF: 140.7630457114789
Iteration: 5, Func. Count: 75, Neg. LLF: 121.08883340652453
Iteration: 6, Func. Count: 90, Neg. LLF: 120.7722228522744
Iteration: 7, Func. Count: 105, Neg. LLF: 119.0638005031147
Iteration: 8, Func. Count: 119, Neg. LLF: 118.93195858180823
Iteration: 9, Func. Count: 133, Neg. LLF: 119.00024513808673
Iteration: 10, Func. Count: 148, Neg. LLF: 118.93784870870314
Iteration: 11, Func. Count: 163, Neg. LLF: 118.86447426931684
Iteration: 12, Func. Count: 177, Neg. LLF: 118.83378556840402
Iteration: 13, Func. Count: 191, Neg. LLF: 118.8022774598461
Iteration: 14, Func. Count: 205, Neg. LLF: 118.79412813270436
Iteration: 15, Func. Count: 219, Neg. LLF: 118.78980305978762
Iteration: 16, Func. Count: 234, Neg. LLF: 118.77618468469238
Iteration: 17, Func. Count: 248, Neg. LLF: 118.77563386123016
Iteration: 18, Func. Count: 262, Neg. LLF: 118.77535120394921
Iteration: 19, Func. Count: 276, Neg. LLF: 118.77532996972899
Iteration: 20, Func. Count: 290, Neg. LLF: 118.7753175454238
Iteration: 21, Func. Count: 304, Neg. LLF: 118.77531627591976
Iteration: 22, Func. Count: 318, Neg. LLF: 118.7753118222914
Iteration: 23, Func. Count: 332, Neg. LLF: 118.77530855163242
Iteration: 24, Func. Count: 346, Neg. LLF: 118.77530425429572
Iteration: 25, Func. Count: 360, Neg. LLF: 118.7753028290152
Iteration: 26, Func. Count: 373, Neg. LLF: 118.77530284025725
Optimization terminated successfully (Exit mode 0)
Current function value: 118.7753028290152
Iterations: 26
Function evaluations: 373
Gradient evaluations: 26
Iteration: 1, Func. Count: 16, Neg. LLF: 125.09662445911368
Iteration: 2, Func. Count: 32, Neg. LLF: 170.05395503577492
Iteration: 3, Func. Count: 48, Neg. LLF: 119.68425968258786
Iteration: 4, Func. Count: 63, Neg. LLF: 141.80671118506592
Iteration: 5, Func. Count: 80, Neg. LLF: 121.7642641821251
Iteration: 6, Func. Count: 96, Neg. LLF: 121.26826892232681
Iteration: 7, Func. Count: 112, Neg. LLF: 119.06322927302944
Iteration: 8, Func. Count: 127, Neg. LLF: 118.94148052398393
Iteration: 9, Func. Count: 142, Neg. LLF: 119.05230042287373
Iteration: 10, Func. Count: 158, Neg. LLF: 118.95389104753889
Iteration: 11, Func. Count: 174, Neg. LLF: 118.86112253228487
Iteration: 12, Func. Count: 189, Neg. LLF: 118.82339793906792
Iteration: 13, Func. Count: 204, Neg. LLF: 118.79716157211324
Iteration: 14, Func. Count: 219, Neg. LLF: 118.77969219756795
Iteration: 15, Func. Count: 234, Neg. LLF: 118.7813688489435
Iteration: 16, Func. Count: 250, Neg. LLF: 118.77564304763413
Iteration: 17, Func. Count: 265, Neg. LLF: 118.77562377853585
Iteration: 18, Func. Count: 281, Neg. LLF: 118.77531710583885
Iteration: 19, Func. Count: 296, Neg. LLF: 118.77531608526878
Iteration: 20, Func. Count: 311, Neg. LLF: 118.77531156033609
Iteration: 21, Func. Count: 326, Neg. LLF: 118.7753066778919
Iteration: 22, Func. Count: 341, Neg. LLF: 118.77530339653953
Iteration: 23, Func. Count: 356, Neg. LLF: 118.77530264115984
Optimization terminated successfully (Exit mode 0)
Current function value: 118.77530264115984
Iterations: 23
Function evaluations: 356
Gradient evaluations: 23
Iteration: 1, Func. Count: 5, Neg. LLF: 122.22195210108715
Iteration: 2, Func. Count: 10, Neg. LLF: 148.20716206901264
Iteration: 3, Func. Count: 15, Neg. LLF: 119.08124039216298
Iteration: 4, Func. Count: 19, Neg. LLF: 119.06446186927869
Iteration: 5, Func. Count: 23, Neg. LLF: 119.01996164956128
Iteration: 6, Func. Count: 27, Neg. LLF: 119.01987585329863
Iteration: 7, Func. Count: 31, Neg. LLF: 119.01987398238742
Iteration: 8, Func. Count: 34, Neg. LLF: 119.0198739823808
Optimization terminated successfully (Exit mode 0)
Current function value: 119.01987398238742
Iterations: 8
Function evaluations: 34
Gradient evaluations: 8
Iteration: 1, Func. Count: 5, Neg. LLF: 121.1542304595611
Iteration: 2, Func. Count: 10, Neg. LLF: 143.25232062910138
Iteration: 3, Func. Count: 15, Neg. LLF: 118.36298816195762
Iteration: 4, Func. Count: 19, Neg. LLF: 118.3501601719606
Iteration: 5, Func. Count: 23, Neg. LLF: 118.3282392827106
Iteration: 6, Func. Count: 27, Neg. LLF: 118.3192039343108
Iteration: 7, Func. Count: 31, Neg. LLF: 118.31796091509902
Iteration: 8, Func. Count: 35, Neg. LLF: 118.31783431562232
Iteration: 9, Func. Count: 38, Neg. LLF: 118.31783431562938
Optimization terminated successfully (Exit mode 0)
Current function value: 118.31783431562232
Iterations: 9
Function evaluations: 38
Gradient evaluations: 9
Iteration: 1, Func. Count: 6, Neg. LLF: 120.28348780426366
Iteration: 2, Func. Count: 11, Neg. LLF: 124.79248362143039
Iteration: 3, Func. Count: 17, Neg. LLF: 119.06894025578522
Iteration: 4, Func. Count: 22, Neg. LLF: 118.40392028262661
Iteration: 5, Func. Count: 27, Neg. LLF: 118.33225429151413
Iteration: 6, Func. Count: 32, Neg. LLF: 118.31860727156258
Iteration: 7, Func. Count: 37, Neg. LLF: 118.31831899325518
Iteration: 8, Func. Count: 42, Neg. LLF: 118.3178377032746
Iteration: 9, Func. Count: 47, Neg. LLF: 118.31783462509645
Iteration: 10, Func. Count: 51, Neg. LLF: 118.31783477753162
Optimization terminated successfully (Exit mode 0)
Current function value: 118.31783462509645
Iterations: 10
Function evaluations: 51
Gradient evaluations: 10
Iteration: 1, Func. Count: 7, Neg. LLF: 120.08171077627377
Iteration: 2, Func. Count: 13, Neg. LLF: 121.25632482055305
Iteration: 3, Func. Count: 20, Neg. LLF: 128.91819029200812
Iteration: 4, Func. Count: 27, Neg. LLF: 132.551486395823
Iteration: 5, Func. Count: 34, Neg. LLF: 131.46343249512267
Iteration: 6, Func. Count: 41, Neg. LLF: 118.6686148006461
Iteration: 7, Func. Count: 48, Neg. LLF: 118.32001983849904
Iteration: 8, Func. Count: 54, Neg. LLF: 118.31380478265542
Iteration: 9, Func. Count: 60, Neg. LLF: 118.30910374857824
Iteration: 10, Func. Count: 66, Neg. LLF: 118.30855200504931
Iteration: 11, Func. Count: 72, Neg. LLF: 118.30847758897424
Iteration: 12, Func. Count: 78, Neg. LLF: 118.3084631280789
Iteration: 13, Func. Count: 83, Neg. LLF: 118.30846312816897
Optimization terminated successfully (Exit mode 0)
Current function value: 118.3084631280789
Iterations: 13
Function evaluations: 83
Gradient evaluations: 13
Iteration: 1, Func. Count: 8, Neg. LLF: 120.13920292934164
Iteration: 2, Func. Count: 15, Neg. LLF: 120.8137069957106
Iteration: 3, Func. Count: 23, Neg. LLF: 129.10898219071316
Iteration: 4, Func. Count: 31, Neg. LLF: 132.4771441469423
Iteration: 5, Func. Count: 39, Neg. LLF: 131.03499032522976
Iteration: 6, Func. Count: 47, Neg. LLF: 118.61395237081484
Iteration: 7, Func. Count: 55, Neg. LLF: 118.32091094922386
Iteration: 8, Func. Count: 62, Neg. LLF: 118.31493862474748
Iteration: 9, Func. Count: 69, Neg. LLF: 118.3094540025844
Iteration: 10, Func. Count: 76, Neg. LLF: 118.30858892367041
Iteration: 11, Func. Count: 83, Neg. LLF: 118.30847670276863
Iteration: 12, Func. Count: 90, Neg. LLF: 118.30846304247471
Iteration: 13, Func. Count: 96, Neg. LLF: 118.30846309187919
Optimization terminated successfully (Exit mode 0)
Current function value: 118.30846304247471
Iterations: 13
Function evaluations: 96
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 120.20326508968675
Iteration: 2, Func. Count: 17, Neg. LLF: 122.32194344523089
Iteration: 3, Func. Count: 26, Neg. LLF: 128.8991035701486
Iteration: 4, Func. Count: 35, Neg. LLF: 132.08858543309444
Iteration: 5, Func. Count: 44, Neg. LLF: 134.40237164826638
Iteration: 6, Func. Count: 53, Neg. LLF: 119.057160015919
Iteration: 7, Func. Count: 62, Neg. LLF: 118.32123791460832
Iteration: 8, Func. Count: 70, Neg. LLF: 118.31719887637564
Iteration: 9, Func. Count: 79, Neg. LLF: 118.30871764591392
Iteration: 10, Func. Count: 87, Neg. LLF: 118.30848564408167
Iteration: 11, Func. Count: 95, Neg. LLF: 118.3084634640893
Iteration: 12, Func. Count: 102, Neg. LLF: 118.30846356274226
Optimization terminated successfully (Exit mode 0)
Current function value: 118.3084634640893
Iterations: 12
Function evaluations: 102
Gradient evaluations: 12
Iteration: 1, Func. Count: 6, Neg. LLF: 121.12552107953336
Iteration: 2, Func. Count: 12, Neg. LLF: 138.635487461068
Iteration: 3, Func. Count: 18, Neg. LLF: 118.41619081916689
Iteration: 4, Func. Count: 23, Neg. LLF: 118.35238309874316
Iteration: 5, Func. Count: 28, Neg. LLF: 118.34789966401378
Iteration: 6, Func. Count: 33, Neg. LLF: 118.33052795608067
Iteration: 7, Func. Count: 38, Neg. LLF: 118.31880584514339
Iteration: 8, Func. Count: 43, Neg. LLF: 118.31785647774716
Iteration: 9, Func. Count: 48, Neg. LLF: 118.31783424131173
Iteration: 10, Func. Count: 52, Neg. LLF: 118.31783439887629
Optimization terminated successfully (Exit mode 0)
Current function value: 118.31783424131173
Iterations: 10
Function evaluations: 52
Gradient evaluations: 10
Iteration: 1, Func. Count: 7, Neg. LLF: 119.50233699528933
Iteration: 2, Func. Count: 13, Neg. LLF: 119.45318565711673
Iteration: 3, Func. Count: 20, Neg. LLF: 124.46315987459643
Iteration: 4, Func. Count: 27, Neg. LLF: 118.8713387431078
Iteration: 5, Func. Count: 33, Neg. LLF: 118.38950875455308
Iteration: 6, Func. Count: 39, Neg. LLF: 118.33107440475757
Iteration: 7, Func. Count: 45, Neg. LLF: 118.32640233068896
Iteration: 8, Func. Count: 51, Neg. LLF: 118.31794503207927
Iteration: 9, Func. Count: 57, Neg. LLF: 118.31784024430577
Iteration: 10, Func. Count: 63, Neg. LLF: 118.31783473968595
Iteration: 11, Func. Count: 68, Neg. LLF: 118.31783489211661
Optimization terminated successfully (Exit mode 0)
Current function value: 118.31783473968595
Iterations: 11
Function evaluations: 68
Gradient evaluations: 11
Iteration: 1, Func. Count: 8, Neg. LLF: 119.55154308629042
Iteration: 2, Func. Count: 15, Neg. LLF: 121.2116549960605
Iteration: 3, Func. Count: 24, Neg. LLF: 127.33146196554465
Iteration: 4, Func. Count: 32, Neg. LLF: 119.4787223078841
Iteration: 5, Func. Count: 40, Neg. LLF: 130.1739710579041
Iteration: 6, Func. Count: 48, Neg. LLF: 118.34196603079018
Iteration: 7, Func. Count: 55, Neg. LLF: 118.34592325922355
Iteration: 8, Func. Count: 63, Neg. LLF: 118.30864055939811
Iteration: 9, Func. Count: 70, Neg. LLF: 118.30847168999328
Iteration: 10, Func. Count: 77, Neg. LLF: 118.30846333890388
Iteration: 11, Func. Count: 83, Neg. LLF: 118.30846333900642
Optimization terminated successfully (Exit mode 0)
Current function value: 118.30846333890388
Iterations: 11
Function evaluations: 83
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 119.53172780051844
Iteration: 2, Func. Count: 17, Neg. LLF: 120.5399505754102
Iteration: 3, Func. Count: 27, Neg. LLF: 127.12173581137088
Iteration: 4, Func. Count: 36, Neg. LLF: 123.89191189043957
Iteration: 5, Func. Count: 45, Neg. LLF: 122.6859572546939
Iteration: 6, Func. Count: 54, Neg. LLF: 118.42086954248678
Iteration: 7, Func. Count: 62, Neg. LLF: 118.33206821015374
Iteration: 8, Func. Count: 70, Neg. LLF: 118.31435080784034
Iteration: 9, Func. Count: 78, Neg. LLF: 118.30876295298283
Iteration: 10, Func. Count: 86, Neg. LLF: 118.30846351418256
Iteration: 11, Func. Count: 93, Neg. LLF: 118.30846356359874
Optimization terminated successfully (Exit mode 0)
Current function value: 118.30846351418256
Iterations: 11
Function evaluations: 93
Gradient evaluations: 11
Iteration: 1, Func. Count: 10, Neg. LLF: 119.52372235055746
Iteration: 2, Func. Count: 19, Neg. LLF: 121.42222314371196
Iteration: 3, Func. Count: 30, Neg. LLF: 123.39288612658922
Iteration: 4, Func. Count: 40, Neg. LLF: 118.6955192021058
Iteration: 5, Func. Count: 50, Neg. LLF: 131.05759492056748
Iteration: 6, Func. Count: 60, Neg. LLF: 118.31399590973577
Iteration: 7, Func. Count: 69, Neg. LLF: 118.31724594123631
Iteration: 8, Func. Count: 79, Neg. LLF: 118.30884751271371
Iteration: 9, Func. Count: 88, Neg. LLF: 118.30850004849052
Iteration: 10, Func. Count: 97, Neg. LLF: 118.30846551352451
Iteration: 11, Func. Count: 106, Neg. LLF: 118.30846304188462
Iteration: 12, Func. Count: 114, Neg. LLF: 118.30846314051013
Optimization terminated successfully (Exit mode 0)
Current function value: 118.30846304188462
Iterations: 12
Function evaluations: 114
Gradient evaluations: 12
Iteration: 1, Func. Count: 7, Neg. LLF: 125.1588374129043
Iteration: 2, Func. Count: 14, Neg. LLF: 283.772875652249
Iteration: 3, Func. Count: 21, Neg. LLF: 118.47160157745525
Iteration: 4, Func. Count: 27, Neg. LLF: 118.70733631565604
Iteration: 5, Func. Count: 35, Neg. LLF: 127.56063184730563
Iteration: 6, Func. Count: 43, Neg. LLF: 118.33532513244175
Iteration: 7, Func. Count: 49, Neg. LLF: 118.3317798923118
Iteration: 8, Func. Count: 55, Neg. LLF: 118.32618234119063
Iteration: 9, Func. Count: 61, Neg. LLF: 118.31407443595691
Iteration: 10, Func. Count: 67, Neg. LLF: 118.30929511973767
Iteration: 11, Func. Count: 73, Neg. LLF: 118.30770249552748
Iteration: 12, Func. Count: 79, Neg. LLF: 118.30763464432712
Iteration: 13, Func. Count: 84, Neg. LLF: 118.30763464429563
Optimization terminated successfully (Exit mode 0)
Current function value: 118.30763464432712
Iterations: 13
Function evaluations: 84
Gradient evaluations: 13
Iteration: 1, Func. Count: 8, Neg. LLF: 119.97896282907463
Iteration: 2, Func. Count: 16, Neg. LLF: 141.4412864015677
Iteration: 3, Func. Count: 24, Neg. LLF: 119.03168018009046
Iteration: 4, Func. Count: 31, Neg. LLF: 118.43175797781774
Iteration: 5, Func. Count: 38, Neg. LLF: 119.68085587557825
Iteration: 6, Func. Count: 47, Neg. LLF: 118.3385149295489
Iteration: 7, Func. Count: 54, Neg. LLF: 118.32725924711201
Iteration: 8, Func. Count: 61, Neg. LLF: 118.31743516144599
Iteration: 9, Func. Count: 68, Neg. LLF: 118.3095012409736
Iteration: 10, Func. Count: 75, Neg. LLF: 118.30792352314565
Iteration: 11, Func. Count: 82, Neg. LLF: 118.30763510070494
Iteration: 12, Func. Count: 88, Neg. LLF: 118.30763525060198
Optimization terminated successfully (Exit mode 0)
Current function value: 118.30763510070494
Iterations: 12
Function evaluations: 88
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 119.88858934778433
Iteration: 2, Func. Count: 18, Neg. LLF: 133.4802313190444
Iteration: 3, Func. Count: 27, Neg. LLF: 119.1099639776894
Iteration: 4, Func. Count: 35, Neg. LLF: 118.45112648337606
Iteration: 5, Func. Count: 43, Neg. LLF: 122.16875824569908
Iteration: 6, Func. Count: 53, Neg. LLF: 118.35805993844514
Iteration: 7, Func. Count: 61, Neg. LLF: 118.3404375864807
Iteration: 8, Func. Count: 69, Neg. LLF: 118.32564974627412
Iteration: 9, Func. Count: 77, Neg. LLF: 118.31193071089199
Iteration: 10, Func. Count: 85, Neg. LLF: 118.3088270438987
Iteration: 11, Func. Count: 93, Neg. LLF: 118.31029810085207
Iteration: 12, Func. Count: 102, Neg. LLF: 118.30765858169033
Iteration: 13, Func. Count: 110, Neg. LLF: 118.30763665314959
Iteration: 14, Func. Count: 118, Neg. LLF: 118.30763481379894
Iteration: 15, Func. Count: 125, Neg. LLF: 118.30763481555014
Optimization terminated successfully (Exit mode 0)
Current function value: 118.30763481379894
Iterations: 15
Function evaluations: 125
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 119.80187160790798
Iteration: 2, Func. Count: 20, Neg. LLF: 131.52728436457343
Iteration: 3, Func. Count: 30, Neg. LLF: 119.19472100536353
Iteration: 4, Func. Count: 39, Neg. LLF: 118.42939380066531
Iteration: 5, Func. Count: 48, Neg. LLF: 126.04293357522886
Iteration: 6, Func. Count: 59, Neg. LLF: 118.35470409025179
Iteration: 7, Func. Count: 68, Neg. LLF: 118.33951403084068
Iteration: 8, Func. Count: 77, Neg. LLF: 118.32506775337929
Iteration: 9, Func. Count: 86, Neg. LLF: 118.31202919308494
Iteration: 10, Func. Count: 95, Neg. LLF: 118.308802966564
Iteration: 11, Func. Count: 104, Neg. LLF: 118.30986006247232
Iteration: 12, Func. Count: 114, Neg. LLF: 118.3076593986336
Iteration: 13, Func. Count: 123, Neg. LLF: 118.30763801254005
Iteration: 14, Func. Count: 132, Neg. LLF: 118.3076348001545
Iteration: 15, Func. Count: 140, Neg. LLF: 118.30763484972057
Optimization terminated successfully (Exit mode 0)
Current function value: 118.3076348001545
Iterations: 15
Function evaluations: 140
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 119.5572740374123
Iteration: 2, Func. Count: 22, Neg. LLF: 126.51782138686634
Iteration: 3, Func. Count: 33, Neg. LLF: 119.3527274883086
Iteration: 4, Func. Count: 43, Neg. LLF: 118.41424111305192
Iteration: 5, Func. Count: 53, Neg. LLF: 136.10860916021338
Iteration: 6, Func. Count: 66, Neg. LLF: 118.34775769157875
Iteration: 7, Func. Count: 76, Neg. LLF: 118.33831157545409
Iteration: 8, Func. Count: 86, Neg. LLF: 118.31411816955773
Iteration: 9, Func. Count: 96, Neg. LLF: 118.30924527629452
Iteration: 10, Func. Count: 106, Neg. LLF: 118.30778723087758
Iteration: 11, Func. Count: 116, Neg. LLF: 118.30763660154017
Iteration: 12, Func. Count: 126, Neg. LLF: 118.3076346894253
Iteration: 13, Func. Count: 135, Neg. LLF: 118.30763478804484
Optimization terminated successfully (Exit mode 0)
Current function value: 118.3076346894253
Iterations: 13
Function evaluations: 135
Gradient evaluations: 13
Iteration: 1, Func. Count: 8, Neg. LLF: 132.9996300397094
Iteration: 2, Func. Count: 17, Neg. LLF: 442.1822456796391
Iteration: 3, Func. Count: 25, Neg. LLF: 118.59059215602409
Iteration: 4, Func. Count: 32, Neg. LLF: 143.85345780489752
Iteration: 5, Func. Count: 41, Neg. LLF: 118.53374908246549
Iteration: 6, Func. Count: 48, Neg. LLF: 118.4796542130171
Iteration: 7, Func. Count: 55, Neg. LLF: 118.38975901476621
Iteration: 8, Func. Count: 62, Neg. LLF: 118.32662586556197
Iteration: 9, Func. Count: 69, Neg. LLF: 118.30856025566995
Iteration: 10, Func. Count: 76, Neg. LLF: 118.30765088004578
Iteration: 11, Func. Count: 83, Neg. LLF: 118.30763549151642
Iteration: 12, Func. Count: 90, Neg. LLF: 118.30763463265384
Optimization terminated successfully (Exit mode 0)
Current function value: 118.30763463265384
Iterations: 12
Function evaluations: 90
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 121.50964173090736
Iteration: 2, Func. Count: 18, Neg. LLF: 170.55079604828498
Iteration: 3, Func. Count: 27, Neg. LLF: 119.07386357870249
Iteration: 4, Func. Count: 35, Neg. LLF: 118.42372040580857
Iteration: 5, Func. Count: 43, Neg. LLF: 119.1710208979384
Iteration: 6, Func. Count: 53, Neg. LLF: 118.3432796619047
Iteration: 7, Func. Count: 61, Neg. LLF: 118.32551598841313
Iteration: 8, Func. Count: 69, Neg. LLF: 118.32038572524368
Iteration: 9, Func. Count: 77, Neg. LLF: 118.31591784983328
Iteration: 10, Func. Count: 85, Neg. LLF: 118.30951456755199
Iteration: 11, Func. Count: 93, Neg. LLF: 118.30792054135486
Iteration: 12, Func. Count: 101, Neg. LLF: 118.30763735092609
Iteration: 13, Func. Count: 109, Neg. LLF: 118.3076345975397
Iteration: 14, Func. Count: 116, Neg. LLF: 118.30763474751906
Optimization terminated successfully (Exit mode 0)
Current function value: 118.3076345975397
Iterations: 14
Function evaluations: 116
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 121.50796136890902
Iteration: 2, Func. Count: 20, Neg. LLF: 161.08350160288614
Iteration: 3, Func. Count: 30, Neg. LLF: 119.13794605399825
Iteration: 4, Func. Count: 39, Neg. LLF: 118.42432976239346
Iteration: 5, Func. Count: 48, Neg. LLF: 118.35737654990027
Iteration: 6, Func. Count: 57, Neg. LLF: 119.87590146784547
Iteration: 7, Func. Count: 67, Neg. LLF: 118.33192738415582
Iteration: 8, Func. Count: 76, Neg. LLF: 118.32459627479675
Iteration: 9, Func. Count: 85, Neg. LLF: 118.31653842018858
Iteration: 10, Func. Count: 94, Neg. LLF: 118.30994556202292
Iteration: 11, Func. Count: 103, Neg. LLF: 118.30782946037338
Iteration: 12, Func. Count: 112, Neg. LLF: 118.30764048316308
Iteration: 13, Func. Count: 121, Neg. LLF: 118.30763459713941
Iteration: 14, Func. Count: 129, Neg. LLF: 118.30763459878717
Optimization terminated successfully (Exit mode 0)
Current function value: 118.30763459713941
Iterations: 14
Function evaluations: 129
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 121.24435128673738
Iteration: 2, Func. Count: 22, Neg. LLF: 157.74906642278629
Iteration: 3, Func. Count: 33, Neg. LLF: 119.19740574289804
Iteration: 4, Func. Count: 43, Neg. LLF: 118.43348931379289
Iteration: 5, Func. Count: 53, Neg. LLF: 168.747196496892
Iteration: 6, Func. Count: 65, Neg. LLF: 118.36418269837168
Iteration: 7, Func. Count: 75, Neg. LLF: 118.33358691942273
Iteration: 8, Func. Count: 85, Neg. LLF: 118.3267447024456
Iteration: 9, Func. Count: 95, Neg. LLF: 118.3181160544991
Iteration: 10, Func. Count: 105, Neg. LLF: 118.31194654871209
Iteration: 11, Func. Count: 115, Neg. LLF: 118.30834276807714
Iteration: 12, Func. Count: 125, Neg. LLF: 118.30777136665553
Iteration: 13, Func. Count: 135, Neg. LLF: 118.30763465392909
Iteration: 14, Func. Count: 144, Neg. LLF: 118.30763470346048
Optimization terminated successfully (Exit mode 0)
Current function value: 118.30763465392909
Iterations: 14
Function evaluations: 144
Gradient evaluations: 14
Iteration: 1, Func. Count: 12, Neg. LLF: 120.94688143790866
Iteration: 2, Func. Count: 24, Neg. LLF: 153.05757976991674
Iteration: 3, Func. Count: 36, Neg. LLF: 119.30318474047375
Iteration: 4, Func. Count: 47, Neg. LLF: 118.41063116476633
Iteration: 5, Func. Count: 58, Neg. LLF: 1200689.834510103
Iteration: 6, Func. Count: 71, Neg. LLF: 118.353145097378
Iteration: 7, Func. Count: 82, Neg. LLF: 118.33386446775647
Iteration: 8, Func. Count: 93, Neg. LLF: 118.32742401963462
Iteration: 9, Func. Count: 104, Neg. LLF: 118.31821848949573
Iteration: 10, Func. Count: 115, Neg. LLF: 118.3117181931102
Iteration: 11, Func. Count: 126, Neg. LLF: 118.30847045842248
Iteration: 12, Func. Count: 137, Neg. LLF: 118.30786318696057
Iteration: 13, Func. Count: 148, Neg. LLF: 118.30763491982388
Iteration: 14, Func. Count: 158, Neg. LLF: 118.30763501847154
Optimization terminated successfully (Exit mode 0)
Current function value: 118.30763491982388
Iterations: 14
Function evaluations: 158
Gradient evaluations: 14
Iteration: 1, Func. Count: 5, Neg. LLF: 124.1958393439878
Iteration: 2, Func. Count: 10, Neg. LLF: 131.4410933631812
Iteration: 3, Func. Count: 15, Neg. LLF: 121.4184428087579
Iteration: 4, Func. Count: 19, Neg. LLF: 121.38269427839788
Iteration: 5, Func. Count: 23, Neg. LLF: 121.37427563145587
Iteration: 6, Func. Count: 27, Neg. LLF: 121.3738439326106
Iteration: 7, Func. Count: 31, Neg. LLF: 121.37384015357765
Iteration: 8, Func. Count: 34, Neg. LLF: 121.3738401535714
Optimization terminated successfully (Exit mode 0)
Current function value: 121.37384015357765
Iterations: 8
Function evaluations: 34
Gradient evaluations: 8
Iteration: 1, Func. Count: 6, Neg. LLF: 122.49694792534358
Iteration: 2, Func. Count: 12, Neg. LLF: 123.88401947737434
Iteration: 3, Func. Count: 18, Neg. LLF: 122.99160366014577
Iteration: 4, Func. Count: 24, Neg. LLF: 121.32125852114804
Iteration: 5, Func. Count: 30, Neg. LLF: 121.10136769330077
Iteration: 6, Func. Count: 36, Neg. LLF: 121.09272238357158
Iteration: 7, Func. Count: 41, Neg. LLF: 121.09263941102509
Iteration: 8, Func. Count: 45, Neg. LLF: 121.09263941105121
Optimization terminated successfully (Exit mode 0)
Current function value: 121.09263941102509
Iterations: 8
Function evaluations: 45
Gradient evaluations: 8
Iteration: 1, Func. Count: 7, Neg. LLF: 122.83102425222914
Iteration: 2, Func. Count: 14, Neg. LLF: 123.10764845863594
Iteration: 3, Func. Count: 21, Neg. LLF: 136.81933193341098
Iteration: 4, Func. Count: 28, Neg. LLF: 121.18073465578642
Iteration: 5, Func. Count: 34, Neg. LLF: 121.10924401088
Iteration: 6, Func. Count: 40, Neg. LLF: 121.09900151759693
Iteration: 7, Func. Count: 46, Neg. LLF: 121.09286533848336
Iteration: 8, Func. Count: 52, Neg. LLF: 121.09265499062158
Iteration: 9, Func. Count: 58, Neg. LLF: 121.09264196511454
Iteration: 10, Func. Count: 64, Neg. LLF: 121.0926395612633
Iteration: 11, Func. Count: 69, Neg. LLF: 121.09263961731403
Optimization terminated successfully (Exit mode 0)
Current function value: 121.0926395612633
Iterations: 11
Function evaluations: 69
Gradient evaluations: 11
Iteration: 1, Func. Count: 8, Neg. LLF: 123.31861527834538
Iteration: 2, Func. Count: 16, Neg. LLF: 123.63635545327608
Iteration: 3, Func. Count: 24, Neg. LLF: 124.10882819443154
Iteration: 4, Func. Count: 32, Neg. LLF: 121.34530180153084
Iteration: 5, Func. Count: 39, Neg. LLF: 121.11263180294125
Iteration: 6, Func. Count: 46, Neg. LLF: 121.12564801109909
Iteration: 7, Func. Count: 54, Neg. LLF: 121.09292472926761
Iteration: 8, Func. Count: 61, Neg. LLF: 121.09270172722816
Iteration: 9, Func. Count: 68, Neg. LLF: 121.09264219424291
Iteration: 10, Func. Count: 75, Neg. LLF: 121.09263930701842
Iteration: 11, Func. Count: 81, Neg. LLF: 121.09263939451488
Optimization terminated successfully (Exit mode 0)
Current function value: 121.09263930701842
Iterations: 11
Function evaluations: 81
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 123.43304152911838
Iteration: 2, Func. Count: 18, Neg. LLF: 124.07605337292294
Iteration: 3, Func. Count: 27, Neg. LLF: 124.29151443411374
Iteration: 4, Func. Count: 36, Neg. LLF: 133.32886519625785
Iteration: 5, Func. Count: 45, Neg. LLF: 121.09845728367786
Iteration: 6, Func. Count: 53, Neg. LLF: 121.09351793424875
Iteration: 7, Func. Count: 61, Neg. LLF: 121.09294931672268
Iteration: 8, Func. Count: 69, Neg. LLF: 121.09264594050609
Iteration: 9, Func. Count: 77, Neg. LLF: 121.0926393763165
Iteration: 10, Func. Count: 84, Neg. LLF: 121.09263947082631
Optimization terminated successfully (Exit mode 0)
Current function value: 121.0926393763165
Iterations: 10
Function evaluations: 84
Gradient evaluations: 10
Iteration: 1, Func. Count: 6, Neg. LLF: 122.5966225694173
Iteration: 2, Func. Count: 12, Neg. LLF: 131.78849344725435
Iteration: 3, Func. Count: 18, Neg. LLF: 118.37044015563283
Iteration: 4, Func. Count: 23, Neg. LLF: 118.3574890202102
Iteration: 5, Func. Count: 28, Neg. LLF: 118.34522568576948
Iteration: 6, Func. Count: 33, Neg. LLF: 118.32965752529594
Iteration: 7, Func. Count: 38, Neg. LLF: 118.32129124569322
Iteration: 8, Func. Count: 43, Neg. LLF: 118.31793720921846
Iteration: 9, Func. Count: 48, Neg. LLF: 118.31783475041341
Iteration: 10, Func. Count: 53, Neg. LLF: 118.31783420771328
Optimization terminated successfully (Exit mode 0)
Current function value: 118.31783420771328
Iterations: 10
Function evaluations: 53
Gradient evaluations: 10
Iteration: 1, Func. Count: 7, Neg. LLF: 119.67662628093984
Iteration: 2, Func. Count: 13, Neg. LLF: 121.14836791091278
Iteration: 3, Func. Count: 20, Neg. LLF: 118.55879688176587
Iteration: 4, Func. Count: 26, Neg. LLF: 122.3296531428133
Iteration: 5, Func. Count: 33, Neg. LLF: 118.5539531520301
Iteration: 6, Func. Count: 40, Neg. LLF: 118.32086701683521
Iteration: 7, Func. Count: 46, Neg. LLF: 118.31787881986793
Iteration: 8, Func. Count: 52, Neg. LLF: 118.3178346153391
Iteration: 9, Func. Count: 57, Neg. LLF: 118.31783476776222
Optimization terminated successfully (Exit mode 0)
Current function value: 118.3178346153391
Iterations: 9
Function evaluations: 57
Gradient evaluations: 9
Iteration: 1, Func. Count: 8, Neg. LLF: 120.55092294082728
Iteration: 2, Func. Count: 16, Neg. LLF: 124.8218258580609
Iteration: 3, Func. Count: 24, Neg. LLF: 118.66658252489859
Iteration: 4, Func. Count: 31, Neg. LLF: 133.36537460085069
Iteration: 5, Func. Count: 39, Neg. LLF: 119.815514014892
Iteration: 6, Func. Count: 47, Neg. LLF: 118.30943410557853
Iteration: 7, Func. Count: 54, Neg. LLF: 118.30853916408951
Iteration: 8, Func. Count: 61, Neg. LLF: 118.30846645702263
Iteration: 9, Func. Count: 68, Neg. LLF: 118.30846324274924
Iteration: 10, Func. Count: 74, Neg. LLF: 118.30846324263332
Optimization terminated successfully (Exit mode 0)
Current function value: 118.30846324274924
Iterations: 10
Function evaluations: 74
Gradient evaluations: 10
Iteration: 1, Func. Count: 9, Neg. LLF: 121.30092394726981
Iteration: 2, Func. Count: 18, Neg. LLF: 124.50469344481368
Iteration: 3, Func. Count: 27, Neg. LLF: 118.69624451020127
Iteration: 4, Func. Count: 35, Neg. LLF: 133.92780738275192
Iteration: 5, Func. Count: 44, Neg. LLF: 119.61412510426851
Iteration: 6, Func. Count: 53, Neg. LLF: 118.30907610417724
Iteration: 7, Func. Count: 61, Neg. LLF: 118.30852076261291
Iteration: 8, Func. Count: 69, Neg. LLF: 118.30846548393885
Iteration: 9, Func. Count: 77, Neg. LLF: 118.30846328172586
Iteration: 10, Func. Count: 84, Neg. LLF: 118.30846333108437
Optimization terminated successfully (Exit mode 0)
Current function value: 118.30846328172586
Iterations: 10
Function evaluations: 84
Gradient evaluations: 10
Iteration: 1, Func. Count: 10, Neg. LLF: 121.65861633883696
Iteration: 2, Func. Count: 20, Neg. LLF: 124.54930606559314
Iteration: 3, Func. Count: 30, Neg. LLF: 118.70283525276548
Iteration: 4, Func. Count: 39, Neg. LLF: 134.89339350793028
Iteration: 5, Func. Count: 49, Neg. LLF: 118.91575293544072
Iteration: 6, Func. Count: 59, Neg. LLF: 118.30874117246455
Iteration: 7, Func. Count: 68, Neg. LLF: 118.30848821190766
Iteration: 8, Func. Count: 77, Neg. LLF: 118.3084657636511
Iteration: 9, Func. Count: 86, Neg. LLF: 118.30846306256473
Iteration: 10, Func. Count: 94, Neg. LLF: 118.30846316117123
Optimization terminated successfully (Exit mode 0)
Current function value: 118.30846306256473
Iterations: 10
Function evaluations: 94
Gradient evaluations: 10
Iteration: 1, Func. Count: 7, Neg. LLF: 121.80069694267793
Iteration: 2, Func. Count: 14, Neg. LLF: 142.84015924635432
Iteration: 3, Func. Count: 21, Neg. LLF: 118.39135751547818
Iteration: 4, Func. Count: 27, Neg. LLF: 118.3638899266331
Iteration: 5, Func. Count: 33, Neg. LLF: 118.34679182286152
Iteration: 6, Func. Count: 39, Neg. LLF: 118.3384414255491
Iteration: 7, Func. Count: 45, Neg. LLF: 118.32542891880573
Iteration: 8, Func. Count: 51, Neg. LLF: 118.31930556633158
Iteration: 9, Func. Count: 57, Neg. LLF: 118.31784136492543
Iteration: 10, Func. Count: 63, Neg. LLF: 118.31783426714549
Iteration: 11, Func. Count: 68, Neg. LLF: 118.31783442470987
Optimization terminated successfully (Exit mode 0)
Current function value: 118.31783426714549
Iterations: 11
Function evaluations: 68
Gradient evaluations: 11
Iteration: 1, Func. Count: 8, Neg. LLF: 119.41478751247246
Iteration: 2, Func. Count: 15, Neg. LLF: 123.33717590812978
Iteration: 3, Func. Count: 23, Neg. LLF: 118.78485052179323
Iteration: 4, Func. Count: 30, Neg. LLF: 118.41415662998008
Iteration: 5, Func. Count: 37, Neg. LLF: 118.7565077847977
Iteration: 6, Func. Count: 45, Neg. LLF: 118.32228977104316
Iteration: 7, Func. Count: 52, Neg. LLF: 118.31802631850117
Iteration: 8, Func. Count: 59, Neg. LLF: 118.31784372041956
Iteration: 9, Func. Count: 66, Neg. LLF: 118.31783424452813
Iteration: 10, Func. Count: 72, Neg. LLF: 118.31783439695023
Optimization terminated successfully (Exit mode 0)
Current function value: 118.31783424452813
Iterations: 10
Function evaluations: 72
Gradient evaluations: 10
Iteration: 1, Func. Count: 9, Neg. LLF: 120.10424395417928
Iteration: 2, Func. Count: 17, Neg. LLF: 125.98696085672593
Iteration: 3, Func. Count: 26, Neg. LLF: 123.79220016932753
Iteration: 4, Func. Count: 37, Neg. LLF: 129.8058771757668
Iteration: 5, Func. Count: 46, Neg. LLF: 133.1227432700499
Iteration: 6, Func. Count: 55, Neg. LLF: 132.53431337368582
Iteration: 7, Func. Count: 64, Neg. LLF: 131.75016183609034
Iteration: 8, Func. Count: 73, Neg. LLF: 118.44479808661136
Iteration: 9, Func. Count: 81, Neg. LLF: 118.32668445322751
Iteration: 10, Func. Count: 89, Neg. LLF: 118.31248089380946
Iteration: 11, Func. Count: 97, Neg. LLF: 118.30887777436409
Iteration: 12, Func. Count: 105, Neg. LLF: 118.30856373887453
Iteration: 13, Func. Count: 113, Neg. LLF: 118.30846342198873
Iteration: 14, Func. Count: 120, Neg. LLF: 118.30846342179038
Optimization terminated successfully (Exit mode 0)
Current function value: 118.30846342198873
Iterations: 14
Function evaluations: 120
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 120.66471565104254
Iteration: 2, Func. Count: 20, Neg. LLF: 132.6281767656444
Iteration: 3, Func. Count: 30, Neg. LLF: 118.64444724902869
Iteration: 4, Func. Count: 39, Neg. LLF: 138.06467351293207
Iteration: 5, Func. Count: 49, Neg. LLF: 118.53436072181638
Iteration: 6, Func. Count: 58, Neg. LLF: 118.40884005774511
Iteration: 7, Func. Count: 67, Neg. LLF: 118.37699011750544
Iteration: 8, Func. Count: 76, Neg. LLF: 118.31642757666766
Iteration: 9, Func. Count: 85, Neg. LLF: 118.31006747195048
Iteration: 10, Func. Count: 94, Neg. LLF: 118.3087069062524
Iteration: 11, Func. Count: 103, Neg. LLF: 118.30847405570621
Iteration: 12, Func. Count: 112, Neg. LLF: 118.30846805906127
Iteration: 13, Func. Count: 121, Neg. LLF: 118.30846364954986
Iteration: 14, Func. Count: 130, Neg. LLF: 118.30846303583718
Optimization terminated successfully (Exit mode 0)
Current function value: 118.30846303583718
Iterations: 14
Function evaluations: 130
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 120.94276860368457
Iteration: 2, Func. Count: 22, Neg. LLF: 133.4889106901644
Iteration: 3, Func. Count: 33, Neg. LLF: 118.66219228946625
Iteration: 4, Func. Count: 43, Neg. LLF: 141.1094770793283
Iteration: 5, Func. Count: 54, Neg. LLF: 118.55024367342837
Iteration: 6, Func. Count: 64, Neg. LLF: 118.45626498341487
Iteration: 7, Func. Count: 74, Neg. LLF: 118.42409129851293
Iteration: 8, Func. Count: 84, Neg. LLF: 118.32734726953016
Iteration: 9, Func. Count: 94, Neg. LLF: 118.31255911087618
Iteration: 10, Func. Count: 104, Neg. LLF: 118.3091254175459
Iteration: 11, Func. Count: 114, Neg. LLF: 118.30852142086218
Iteration: 12, Func. Count: 124, Neg. LLF: 118.3084640970477
Iteration: 13, Func. Count: 134, Neg. LLF: 118.30846308263393
Iteration: 14, Func. Count: 143, Neg. LLF: 118.3084631812661
Optimization terminated successfully (Exit mode 0)
Current function value: 118.30846308263393
Iterations: 14
Function evaluations: 143
Gradient evaluations: 14
Iteration: 1, Func. Count: 8, Neg. LLF: 125.74064506074285
Iteration: 2, Func. Count: 16, Neg. LLF: 148.08920085340395
Iteration: 3, Func. Count: 24, Neg. LLF: 118.3728472991552
Iteration: 4, Func. Count: 31, Neg. LLF: 127.45008064675439
Iteration: 5, Func. Count: 41, Neg. LLF: 118.33025192838237
Iteration: 6, Func. Count: 48, Neg. LLF: 118.31165916160865
Iteration: 7, Func. Count: 55, Neg. LLF: 118.3106422142158
Iteration: 8, Func. Count: 62, Neg. LLF: 118.30795794947386
Iteration: 9, Func. Count: 69, Neg. LLF: 118.30766962567196
Iteration: 10, Func. Count: 76, Neg. LLF: 118.30763478538498
Iteration: 11, Func. Count: 82, Neg. LLF: 118.30763478550614
Optimization terminated successfully (Exit mode 0)
Current function value: 118.30763478538498
Iterations: 11
Function evaluations: 82
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 120.01770505467557
Iteration: 2, Func. Count: 17, Neg. LLF: 124.82664192384006
Iteration: 3, Func. Count: 26, Neg. LLF: 120.34361129029986
Iteration: 4, Func. Count: 37, Neg. LLF: 128.24475062943554
Iteration: 5, Func. Count: 46, Neg. LLF: 131.675566944249
Iteration: 6, Func. Count: 55, Neg. LLF: 132.31499957047123
Iteration: 7, Func. Count: 64, Neg. LLF: 119.19315194696595
Iteration: 8, Func. Count: 73, Neg. LLF: 118.33958778927033
Iteration: 9, Func. Count: 81, Neg. LLF: 118.30963088154854
Iteration: 10, Func. Count: 89, Neg. LLF: 118.30780815471238
Iteration: 11, Func. Count: 97, Neg. LLF: 118.30763857685795
Iteration: 12, Func. Count: 105, Neg. LLF: 118.30763481092667
Iteration: 13, Func. Count: 112, Neg. LLF: 118.30763496084236
Optimization terminated successfully (Exit mode 0)
Current function value: 118.30763481092667
Iterations: 13
Function evaluations: 112
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 120.92667679909249
Iteration: 2, Func. Count: 20, Neg. LLF: 134.21239065839524
Iteration: 3, Func. Count: 30, Neg. LLF: 118.64578801444068
Iteration: 4, Func. Count: 39, Neg. LLF: 140.51804135835314
Iteration: 5, Func. Count: 49, Neg. LLF: 118.35319821017534
Iteration: 6, Func. Count: 58, Neg. LLF: 118.30866636944174
Iteration: 7, Func. Count: 67, Neg. LLF: 118.30765315226081
Iteration: 8, Func. Count: 76, Neg. LLF: 118.30763502954629
Iteration: 9, Func. Count: 84, Neg. LLF: 118.30763503142148
Optimization terminated successfully (Exit mode 0)
Current function value: 118.30763502954629
Iterations: 9
Function evaluations: 84
Gradient evaluations: 9
Iteration: 1, Func. Count: 11, Neg. LLF: 121.89897725188831
Iteration: 2, Func. Count: 22, Neg. LLF: 135.51924840296275
Iteration: 3, Func. Count: 33, Neg. LLF: 118.66157844479172
Iteration: 4, Func. Count: 43, Neg. LLF: 145.63055402744857
Iteration: 5, Func. Count: 54, Neg. LLF: 118.32797945022847
Iteration: 6, Func. Count: 64, Neg. LLF: 118.3107665635196
Iteration: 7, Func. Count: 74, Neg. LLF: 118.30783385000264
Iteration: 8, Func. Count: 84, Neg. LLF: 118.30763813009428
Iteration: 9, Func. Count: 94, Neg. LLF: 118.30763460970812
Iteration: 10, Func. Count: 103, Neg. LLF: 118.30763465922576
Optimization terminated successfully (Exit mode 0)
Current function value: 118.30763460970812
Iterations: 10
Function evaluations: 103
Gradient evaluations: 10
Iteration: 1, Func. Count: 12, Neg. LLF: 122.21905965954521
Iteration: 2, Func. Count: 24, Neg. LLF: 135.9926036547155
Iteration: 3, Func. Count: 36, Neg. LLF: 118.68310761601876
Iteration: 4, Func. Count: 47, Neg. LLF: 127.97130119814139
Iteration: 5, Func. Count: 60, Neg. LLF: 118.32674772138603
Iteration: 6, Func. Count: 71, Neg. LLF: 118.31046301163069
Iteration: 7, Func. Count: 82, Neg. LLF: 118.30775584055608
Iteration: 8, Func. Count: 93, Neg. LLF: 118.30764917668034
Iteration: 9, Func. Count: 104, Neg. LLF: 118.30763469126624
Iteration: 10, Func. Count: 114, Neg. LLF: 118.307634789919
Optimization terminated successfully (Exit mode 0)
Current function value: 118.30763469126624
Iterations: 10
Function evaluations: 114
Gradient evaluations: 10
Iteration: 1, Func. Count: 9, Neg. LLF: 128.36290723932692
Iteration: 2, Func. Count: 18, Neg. LLF: 142.09174169909446
Iteration: 3, Func. Count: 27, Neg. LLF: 118.36322965854868
Iteration: 4, Func. Count: 35, Neg. LLF: 124.23317437454222
Iteration: 5, Func. Count: 46, Neg. LLF: 118.31948889673725
Iteration: 6, Func. Count: 54, Neg. LLF: 118.30973921435529
Iteration: 7, Func. Count: 62, Neg. LLF: 118.30919311416936
Iteration: 8, Func. Count: 70, Neg. LLF: 118.30801517897771
Iteration: 9, Func. Count: 78, Neg. LLF: 118.3077076723055
Iteration: 10, Func. Count: 86, Neg. LLF: 118.3076364120384
Iteration: 11, Func. Count: 94, Neg. LLF: 118.30763461828734
Iteration: 12, Func. Count: 101, Neg. LLF: 118.30763466883904
Optimization terminated successfully (Exit mode 0)
Current function value: 118.30763461828734
Iterations: 12
Function evaluations: 101
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 121.09520829139692
Iteration: 2, Func. Count: 20, Neg. LLF: 135.1620907409352
Iteration: 3, Func. Count: 30, Neg. LLF: 118.68213680129158
Iteration: 4, Func. Count: 39, Neg. LLF: 150.68420482128417
Iteration: 5, Func. Count: 50, Neg. LLF: 118.3533760915789
Iteration: 6, Func. Count: 59, Neg. LLF: 118.31662161603535
Iteration: 7, Func. Count: 68, Neg. LLF: 118.30932871666036
Iteration: 8, Func. Count: 77, Neg. LLF: 118.30891716413893
Iteration: 9, Func. Count: 86, Neg. LLF: 118.30807342552295
Iteration: 10, Func. Count: 95, Neg. LLF: 118.30772613597384
Iteration: 11, Func. Count: 104, Neg. LLF: 118.30764056189255
Iteration: 12, Func. Count: 113, Neg. LLF: 118.30763489364611
Iteration: 13, Func. Count: 121, Neg. LLF: 118.30763504368764
Optimization terminated successfully (Exit mode 0)
Current function value: 118.30763489364611
Iterations: 13
Function evaluations: 121
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 122.18781051234463
Iteration: 2, Func. Count: 22, Neg. LLF: 133.4844409642644
Iteration: 3, Func. Count: 33, Neg. LLF: 118.6981422743376
Iteration: 4, Func. Count: 43, Neg. LLF: 142.54713341601598
Iteration: 5, Func. Count: 54, Neg. LLF: 118.33968138138975
Iteration: 6, Func. Count: 64, Neg. LLF: 118.3112775766802
Iteration: 7, Func. Count: 74, Neg. LLF: 118.30776937190487
Iteration: 8, Func. Count: 84, Neg. LLF: 118.30764052771526
Iteration: 9, Func. Count: 94, Neg. LLF: 118.30763462034926
Iteration: 10, Func. Count: 103, Neg. LLF: 118.30763462200754
Optimization terminated successfully (Exit mode 0)
Current function value: 118.30763462034926
Iterations: 10
Function evaluations: 103
Gradient evaluations: 10
Iteration: 1, Func. Count: 12, Neg. LLF: 123.13440778346515
Iteration: 2, Func. Count: 24, Neg. LLF: 134.22400100672579
Iteration: 3, Func. Count: 36, Neg. LLF: 118.71064573422007
Iteration: 4, Func. Count: 47, Neg. LLF: 124.12046400301
Iteration: 5, Func. Count: 59, Neg. LLF: 118.34156990407926
Iteration: 6, Func. Count: 70, Neg. LLF: 118.31379889257997
Iteration: 7, Func. Count: 81, Neg. LLF: 118.30874753400397
Iteration: 8, Func. Count: 92, Neg. LLF: 118.30837599425026
Iteration: 9, Func. Count: 103, Neg. LLF: 118.3077252320318
Iteration: 10, Func. Count: 114, Neg. LLF: 118.30763907465354
Iteration: 11, Func. Count: 125, Neg. LLF: 118.30763467755051
Iteration: 12, Func. Count: 135, Neg. LLF: 118.30763472704668
Optimization terminated successfully (Exit mode 0)
Current function value: 118.30763467755051
Iterations: 12
Function evaluations: 135
Gradient evaluations: 12
Iteration: 1, Func. Count: 13, Neg. LLF: 123.63725418984495
Iteration: 2, Func. Count: 26, Neg. LLF: 134.02530158502205
Iteration: 3, Func. Count: 39, Neg. LLF: 118.73953635650916
Iteration: 4, Func. Count: 51, Neg. LLF: 121.54542544862753
Iteration: 5, Func. Count: 64, Neg. LLF: 118.38781026105045
Iteration: 6, Func. Count: 76, Neg. LLF: 118.31896011217064
Iteration: 7, Func. Count: 88, Neg. LLF: 118.30872388514224
Iteration: 8, Func. Count: 100, Neg. LLF: 118.3081500415245
Iteration: 9, Func. Count: 112, Neg. LLF: 118.30772479821914
Iteration: 10, Func. Count: 124, Neg. LLF: 118.30763763860472
Iteration: 11, Func. Count: 136, Neg. LLF: 118.30763466080266
Iteration: 12, Func. Count: 147, Neg. LLF: 118.30763475943374
Optimization terminated successfully (Exit mode 0)
Current function value: 118.30763466080266
Iterations: 12
Function evaluations: 147
Gradient evaluations: 12
Iteration: 1, Func. Count: 6, Neg. LLF: 123.82843504036015
Iteration: 2, Func. Count: 12, Neg. LLF: 130.9370762081207
Iteration: 3, Func. Count: 18, Neg. LLF: 121.04396507267863
Iteration: 4, Func. Count: 23, Neg. LLF: 120.4282405469929
Iteration: 5, Func. Count: 28, Neg. LLF: 120.14856209105022
Iteration: 6, Func. Count: 33, Neg. LLF: 120.15957684035774
Iteration: 7, Func. Count: 39, Neg. LLF: 120.13227734679789
Iteration: 8, Func. Count: 44, Neg. LLF: 120.13189244849666
Iteration: 9, Func. Count: 49, Neg. LLF: 120.13174971986093
Iteration: 10, Func. Count: 54, Neg. LLF: 120.13174852030788
Iteration: 11, Func. Count: 58, Neg. LLF: 120.13174852031423
Optimization terminated successfully (Exit mode 0)
Current function value: 120.13174852030788
Iterations: 11
Function evaluations: 58
Gradient evaluations: 11
Iteration: 1, Func. Count: 7, Neg. LLF: 123.02119957069918
Iteration: 2, Func. Count: 14, Neg. LLF: 124.37287964923361
Iteration: 3, Func. Count: 21, Neg. LLF: 123.86806675600047
Iteration: 4, Func. Count: 28, Neg. LLF: 125.05384422858678
Iteration: 5, Func. Count: 35, Neg. LLF: 132.63301051812766
Iteration: 6, Func. Count: 42, Neg. LLF: 133.03010140357088
Iteration: 7, Func. Count: 49, Neg. LLF: 132.29189224331287
Iteration: 8, Func. Count: 56, Neg. LLF: 125.68758296832064
Iteration: 9, Func. Count: 63, Neg. LLF: 130.6861834656156
Iteration: 10, Func. Count: 70, Neg. LLF: 121.64746741744233
Iteration: 11, Func. Count: 77, Neg. LLF: 120.14188039395685
Iteration: 12, Func. Count: 84, Neg. LLF: 120.12078867515359
Iteration: 13, Func. Count: 91, Neg. LLF: 120.08392157177347
Iteration: 14, Func. Count: 98, Neg. LLF: 120.07239200676464
Iteration: 15, Func. Count: 104, Neg. LLF: 120.06115439035315
Iteration: 16, Func. Count: 110, Neg. LLF: 120.06048265072766
Iteration: 17, Func. Count: 116, Neg. LLF: 120.0604623087486
Iteration: 18, Func. Count: 121, Neg. LLF: 120.06046230870722
Optimization terminated successfully (Exit mode 0)
Current function value: 120.0604623087486
Iterations: 18
Function evaluations: 121
Gradient evaluations: 18
Iteration: 1, Func. Count: 8, Neg. LLF: 122.55980840818903
Iteration: 2, Func. Count: 16, Neg. LLF: 123.45269267912676
Iteration: 3, Func. Count: 24, Neg. LLF: 120.6004008898307
Iteration: 4, Func. Count: 31, Neg. LLF: 127.01905668734786
Iteration: 5, Func. Count: 39, Neg. LLF: 140.5428643311331
Iteration: 6, Func. Count: 47, Neg. LLF: 124.79757866318243
Iteration: 7, Func. Count: 55, Neg. LLF: 125.65814232451565
Iteration: 8, Func. Count: 63, Neg. LLF: 120.4133073131188
Iteration: 9, Func. Count: 71, Neg. LLF: 120.06165331293305
Iteration: 10, Func. Count: 78, Neg. LLF: 120.06052011655159
Iteration: 11, Func. Count: 85, Neg. LLF: 120.06046345791893
Iteration: 12, Func. Count: 92, Neg. LLF: 120.06046221282038
Iteration: 13, Func. Count: 98, Neg. LLF: 120.06046228687576
Optimization terminated successfully (Exit mode 0)
Current function value: 120.06046221282038
Iterations: 13
Function evaluations: 98
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 122.44713257889494
Iteration: 2, Func. Count: 18, Neg. LLF: 123.22222202550063
Iteration: 3, Func. Count: 27, Neg. LLF: 121.59708994185435
Iteration: 4, Func. Count: 36, Neg. LLF: 126.57126395330184
Iteration: 5, Func. Count: 45, Neg. LLF: 128.55456912857147
Iteration: 6, Func. Count: 54, Neg. LLF: 127.29672778067231
Iteration: 7, Func. Count: 63, Neg. LLF: 131.8888186759088
Iteration: 8, Func. Count: 72, Neg. LLF: 124.28212822569824
Iteration: 9, Func. Count: 81, Neg. LLF: 120.85299501873594
Iteration: 10, Func. Count: 90, Neg. LLF: 120.22718573757366
Iteration: 11, Func. Count: 99, Neg. LLF: 120.17205070345592
Iteration: 12, Func. Count: 108, Neg. LLF: 120.0730394416277
Iteration: 13, Func. Count: 116, Neg. LLF: 120.06713974351993
Iteration: 14, Func. Count: 124, Neg. LLF: 120.06061108370405
Iteration: 15, Func. Count: 132, Neg. LLF: 120.06046597750125
Iteration: 16, Func. Count: 140, Neg. LLF: 120.06046217279008
Iteration: 17, Func. Count: 147, Neg. LLF: 120.06046230681122
Optimization terminated successfully (Exit mode 0)
Current function value: 120.06046217279008
Iterations: 17
Function evaluations: 147
Gradient evaluations: 17
Iteration: 1, Func. Count: 10, Neg. LLF: 122.43902346192579
Iteration: 2, Func. Count: 20, Neg. LLF: 123.63889004006195
Iteration: 3, Func. Count: 30, Neg. LLF: 120.88963374147673
Iteration: 4, Func. Count: 39, Neg. LLF: 126.67041467164508
Iteration: 5, Func. Count: 49, Neg. LLF: 124.00116837539566
Iteration: 6, Func. Count: 59, Neg. LLF: 124.43290322288355
Iteration: 7, Func. Count: 69, Neg. LLF: 120.69990279741685
Iteration: 8, Func. Count: 79, Neg. LLF: 123.95607780197177
Iteration: 9, Func. Count: 89, Neg. LLF: 120.08371546794584
Iteration: 10, Func. Count: 98, Neg. LLF: 120.0630722953889
Iteration: 11, Func. Count: 107, Neg. LLF: 120.06115206142623
Iteration: 12, Func. Count: 116, Neg. LLF: 120.06056878189146
Iteration: 13, Func. Count: 125, Neg. LLF: 120.06047057686767
Iteration: 14, Func. Count: 134, Neg. LLF: 120.0604623580332
Iteration: 15, Func. Count: 142, Neg. LLF: 120.06046250679837
Optimization terminated successfully (Exit mode 0)
Current function value: 120.0604623580332
Iterations: 15
Function evaluations: 142
Gradient evaluations: 15
Iteration: 1, Func. Count: 7, Neg. LLF: 119.00174186646889
Iteration: 2, Func. Count: 13, Neg. LLF: 118.85980856127563
Iteration: 3, Func. Count: 19, Neg. LLF: 135.48577753843048
Iteration: 4, Func. Count: 26, Neg. LLF: 132.93733821582472
Iteration: 5, Func. Count: 33, Neg. LLF: 122.29504706009301
Iteration: 6, Func. Count: 40, Neg. LLF: 118.61415722368451
Iteration: 7, Func. Count: 47, Neg. LLF: 118.32082608818243
Iteration: 8, Func. Count: 53, Neg. LLF: 118.31796105914881
Iteration: 9, Func. Count: 59, Neg. LLF: 118.31783526574772
Iteration: 10, Func. Count: 65, Neg. LLF: 118.31783421864523
Iteration: 11, Func. Count: 70, Neg. LLF: 118.3178342186426
Optimization terminated successfully (Exit mode 0)
Current function value: 118.31783421864523
Iterations: 11
Function evaluations: 70
Gradient evaluations: 11
Iteration: 1, Func. Count: 8, Neg. LLF: 120.33680030276803
Iteration: 2, Func. Count: 16, Neg. LLF: 120.72701283882715
Iteration: 3, Func. Count: 24, Neg. LLF: 118.88721431631136
Iteration: 4, Func. Count: 31, Neg. LLF: 126.50742025417394
Iteration: 5, Func. Count: 40, Neg. LLF: 122.97025164905352
Iteration: 6, Func. Count: 48, Neg. LLF: 118.33431945707329
Iteration: 7, Func. Count: 55, Neg. LLF: 118.32751823293388
Iteration: 8, Func. Count: 62, Neg. LLF: 118.32157813656276
Iteration: 9, Func. Count: 69, Neg. LLF: 118.31831429563609
Iteration: 10, Func. Count: 76, Neg. LLF: 118.31785726047872
Iteration: 11, Func. Count: 83, Neg. LLF: 118.3178345500881
Iteration: 12, Func. Count: 89, Neg. LLF: 118.31783470254109
Optimization terminated successfully (Exit mode 0)
Current function value: 118.3178345500881
Iterations: 12
Function evaluations: 89
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 119.647315512095
Iteration: 2, Func. Count: 17, Neg. LLF: 122.538615059369
Iteration: 3, Func. Count: 26, Neg. LLF: 119.10703506298184
Iteration: 4, Func. Count: 35, Neg. LLF: 119.46623835220058
Iteration: 5, Func. Count: 45, Neg. LLF: 131.71876274561765
Iteration: 6, Func. Count: 54, Neg. LLF: 118.30895916766279
Iteration: 7, Func. Count: 62, Neg. LLF: 118.30848302855519
Iteration: 8, Func. Count: 70, Neg. LLF: 118.30846598195588
Iteration: 9, Func. Count: 78, Neg. LLF: 118.30846304932722
Iteration: 10, Func. Count: 85, Neg. LLF: 118.30846304930931
Optimization terminated successfully (Exit mode 0)
Current function value: 118.30846304932722
Iterations: 10
Function evaluations: 85
Gradient evaluations: 10
Iteration: 1, Func. Count: 10, Neg. LLF: 119.43896752772157
Iteration: 2, Func. Count: 19, Neg. LLF: 120.0835663621974
Iteration: 3, Func. Count: 30, Neg. LLF: 129.5195577885114
Iteration: 4, Func. Count: 40, Neg. LLF: 136.53316192617288
Iteration: 5, Func. Count: 50, Neg. LLF: 133.11730552092084
Iteration: 6, Func. Count: 60, Neg. LLF: 118.85888888500293
Iteration: 7, Func. Count: 70, Neg. LLF: 118.31801824163153
Iteration: 8, Func. Count: 79, Neg. LLF: 118.31140779963091
Iteration: 9, Func. Count: 88, Neg. LLF: 118.30870269928384
Iteration: 10, Func. Count: 97, Neg. LLF: 118.30847152054528
Iteration: 11, Func. Count: 106, Neg. LLF: 118.30846338568102
Iteration: 12, Func. Count: 114, Neg. LLF: 118.30846343510372
Optimization terminated successfully (Exit mode 0)
Current function value: 118.30846338568102
Iterations: 12
Function evaluations: 114
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 119.4110310098094
Iteration: 2, Func. Count: 21, Neg. LLF: 119.94145640248637
Iteration: 3, Func. Count: 33, Neg. LLF: 129.34239653547104
Iteration: 4, Func. Count: 44, Neg. LLF: 131.69708444109918
Iteration: 5, Func. Count: 55, Neg. LLF: 134.38430930813132
Iteration: 6, Func. Count: 66, Neg. LLF: 118.81812439468386
Iteration: 7, Func. Count: 77, Neg. LLF: 118.31639416483728
Iteration: 8, Func. Count: 87, Neg. LLF: 118.31040104504821
Iteration: 9, Func. Count: 97, Neg. LLF: 118.30874353382687
Iteration: 10, Func. Count: 107, Neg. LLF: 118.30846840121737
Iteration: 11, Func. Count: 117, Neg. LLF: 118.30846311020495
Iteration: 12, Func. Count: 126, Neg. LLF: 118.30846320881122
Optimization terminated successfully (Exit mode 0)
Current function value: 118.30846311020495
Iterations: 12
Function evaluations: 126
Gradient evaluations: 12
Iteration: 1, Func. Count: 8, Neg. LLF: 119.80540076617736
Iteration: 2, Func. Count: 16, Neg. LLF: 120.60835139823844
Iteration: 3, Func. Count: 24, Neg. LLF: 117.75338939842871
Iteration: 4, Func. Count: 31, Neg. LLF: 122.31192201324656
Iteration: 5, Func. Count: 39, Neg. LLF: 118.22505051170668
Iteration: 6, Func. Count: 47, Neg. LLF: 117.6346301230694
Iteration: 7, Func. Count: 54, Neg. LLF: 117.60860109893062
Iteration: 8, Func. Count: 61, Neg. LLF: 117.60256559204623
Iteration: 9, Func. Count: 68, Neg. LLF: 117.60107947362518
Iteration: 10, Func. Count: 75, Neg. LLF: 117.6009872235282
Iteration: 11, Func. Count: 82, Neg. LLF: 117.60093213974442
Iteration: 12, Func. Count: 89, Neg. LLF: 117.6009296396712
Iteration: 13, Func. Count: 95, Neg. LLF: 117.600929499132
Optimization terminated successfully (Exit mode 0)
Current function value: 117.6009296396712
Iterations: 13
Function evaluations: 95
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 120.02704524997502
Iteration: 2, Func. Count: 17, Neg. LLF: 123.17603329041404
Iteration: 3, Func. Count: 26, Neg. LLF: 118.53113976921135
Iteration: 4, Func. Count: 34, Neg. LLF: 127.05160889570797
Iteration: 5, Func. Count: 43, Neg. LLF: 121.85726379505417
Iteration: 6, Func. Count: 52, Neg. LLF: 118.1736202494738
Iteration: 7, Func. Count: 60, Neg. LLF: 118.1546175197808
Iteration: 8, Func. Count: 68, Neg. LLF: 118.12204170859528
Iteration: 9, Func. Count: 76, Neg. LLF: 117.93760957514995
Iteration: 10, Func. Count: 84, Neg. LLF: 130.36644414349436
Iteration: 11, Func. Count: 93, Neg. LLF: 132.67769286358626
Iteration: 12, Func. Count: 102, Neg. LLF: 129.42073275293197
Iteration: 13, Func. Count: 111, Neg. LLF: 118.54936878534323
Iteration: 14, Func. Count: 120, Neg. LLF: 128.41870474046064
Iteration: 15, Func. Count: 129, Neg. LLF: 117.72992428442579
Iteration: 16, Func. Count: 138, Neg. LLF: 117.60134211164416
Iteration: 17, Func. Count: 146, Neg. LLF: 117.60098535304364
Iteration: 18, Func. Count: 154, Neg. LLF: 117.60092951901262
Iteration: 19, Func. Count: 161, Neg. LLF: 117.60092952837093
Optimization terminated successfully (Exit mode 0)
Current function value: 117.60092951901262
Iterations: 19
Function evaluations: 161
Gradient evaluations: 19
Iteration: 1, Func. Count: 10, Neg. LLF: 119.86653477660325
Iteration: 2, Func. Count: 19, Neg. LLF: 119.99894812528512
Iteration: 3, Func. Count: 29, Neg. LLF: 128.44797555717992
Iteration: 4, Func. Count: 39, Neg. LLF: 128.57519707314407
Iteration: 5, Func. Count: 49, Neg. LLF: 128.84270759474552
Iteration: 6, Func. Count: 59, Neg. LLF: 128.72979771367736
Iteration: 7, Func. Count: 69, Neg. LLF: 128.6496046151386
Iteration: 8, Func. Count: 79, Neg. LLF: 128.54228919718608
Iteration: 9, Func. Count: 89, Neg. LLF: 128.49205132436612
Iteration: 10, Func. Count: 99, Neg. LLF: 128.47900515008286
Iteration: 11, Func. Count: 109, Neg. LLF: 128.4895567708738
Iteration: 12, Func. Count: 119, Neg. LLF: 128.51129416811224
Iteration: 13, Func. Count: 129, Neg. LLF: 128.5318487950242
Iteration: 14, Func. Count: 139, Neg. LLF: 127.89912120824222
Iteration: 15, Func. Count: 149, Neg. LLF: 117.951112363609
Iteration: 16, Func. Count: 159, Neg. LLF: 117.69147543538402
Iteration: 17, Func. Count: 168, Neg. LLF: 117.67452551282084
Iteration: 18, Func. Count: 177, Neg. LLF: 117.66173141276956
Iteration: 19, Func. Count: 186, Neg. LLF: 117.61445992684165
Iteration: 20, Func. Count: 195, Neg. LLF: 117.6014968115216
Iteration: 21, Func. Count: 204, Neg. LLF: 117.60094992034773
Iteration: 22, Func. Count: 213, Neg. LLF: 117.60092981302147
Iteration: 23, Func. Count: 221, Neg. LLF: 117.60092991736626
Optimization terminated successfully (Exit mode 0)
Current function value: 117.60092981302147
Iterations: 23
Function evaluations: 221
Gradient evaluations: 23
Iteration: 1, Func. Count: 11, Neg. LLF: 119.5502084131666
Iteration: 2, Func. Count: 21, Neg. LLF: 120.1911106618834
Iteration: 3, Func. Count: 32, Neg. LLF: 130.21737689756708
Iteration: 4, Func. Count: 43, Neg. LLF: 128.25924037097582
Iteration: 5, Func. Count: 54, Neg. LLF: 128.62115835802433
Iteration: 6, Func. Count: 65, Neg. LLF: 128.60038014828888
Iteration: 7, Func. Count: 76, Neg. LLF: 128.50041157180817
Iteration: 8, Func. Count: 87, Neg. LLF: 128.4203744214642
Iteration: 9, Func. Count: 98, Neg. LLF: 128.38259931615542
Iteration: 10, Func. Count: 109, Neg. LLF: 128.381753381901
Iteration: 11, Func. Count: 120, Neg. LLF: 128.40479758467663
Iteration: 12, Func. Count: 131, Neg. LLF: 128.43770707159857
Iteration: 13, Func. Count: 142, Neg. LLF: 128.46782305612436
Iteration: 14, Func. Count: 153, Neg. LLF: 121.0809928589174
Iteration: 15, Func. Count: 164, Neg. LLF: 117.9072297393314
Iteration: 16, Func. Count: 175, Neg. LLF: 117.68653862450265
Iteration: 17, Func. Count: 185, Neg. LLF: 117.67099588216553
Iteration: 18, Func. Count: 195, Neg. LLF: 117.65727199782074
Iteration: 19, Func. Count: 205, Neg. LLF: 117.61274019124328
Iteration: 20, Func. Count: 215, Neg. LLF: 117.60163600215779
Iteration: 21, Func. Count: 225, Neg. LLF: 117.6009342775969
Iteration: 22, Func. Count: 235, Neg. LLF: 117.60092959947593
Iteration: 23, Func. Count: 244, Neg. LLF: 117.60092961832935
Optimization terminated successfully (Exit mode 0)
Current function value: 117.60092959947593
Iterations: 23
Function evaluations: 244
Gradient evaluations: 23
Iteration: 1, Func. Count: 12, Neg. LLF: 119.50428249017828
Iteration: 2, Func. Count: 23, Neg. LLF: 120.21306786355557
Iteration: 3, Func. Count: 36, Neg. LLF: 126.97336311147433
Iteration: 4, Func. Count: 48, Neg. LLF: 128.65830457784324
Iteration: 5, Func. Count: 60, Neg. LLF: 130.4325775256073
Iteration: 6, Func. Count: 72, Neg. LLF: 129.78184577487772
Iteration: 7, Func. Count: 84, Neg. LLF: 129.50367012329968
Iteration: 8, Func. Count: 96, Neg. LLF: 129.14124744177465
Iteration: 9, Func. Count: 108, Neg. LLF: 119.94443721401879
Iteration: 10, Func. Count: 120, Neg. LLF: 119.25629906205111
Iteration: 11, Func. Count: 132, Neg. LLF: 119.62644496560519
Iteration: 12, Func. Count: 144, Neg. LLF: 128.2223044225984
Iteration: 13, Func. Count: 156, Neg. LLF: 128.16736417344896
Iteration: 14, Func. Count: 168, Neg. LLF: 119.89313033677327
Iteration: 15, Func. Count: 180, Neg. LLF: 118.20488693034645
Iteration: 16, Func. Count: 192, Neg. LLF: 117.85637612303013
Iteration: 17, Func. Count: 203, Neg. LLF: 117.80283699380757
Iteration: 18, Func. Count: 214, Neg. LLF: 117.75843639095362
Iteration: 19, Func. Count: 225, Neg. LLF: 117.64004364849924
Iteration: 20, Func. Count: 236, Neg. LLF: 117.60429629992097
Iteration: 21, Func. Count: 247, Neg. LLF: 117.6010055187218
Iteration: 22, Func. Count: 258, Neg. LLF: 117.60093040248259
Iteration: 23, Func. Count: 269, Neg. LLF: 117.60092948595182
Optimization terminated successfully (Exit mode 0)
Current function value: 117.60092948595182
Iterations: 23
Function evaluations: 269
Gradient evaluations: 23
Iteration: 1, Func. Count: 9, Neg. LLF: 119.20217952123168
Iteration: 2, Func. Count: 17, Neg. LLF: 125.24093079176915
Iteration: 3, Func. Count: 26, Neg. LLF: 118.8795817321429
Iteration: 4, Func. Count: 34, Neg. LLF: 235.34980262946968
Iteration: 5, Func. Count: 43, Neg. LLF: 118.55066091069938
Iteration: 6, Func. Count: 51, Neg. LLF: 119.01657218908109
Iteration: 7, Func. Count: 60, Neg. LLF: 119.07120312475473
Iteration: 8, Func. Count: 69, Neg. LLF: 118.11636196566214
Iteration: 9, Func. Count: 77, Neg. LLF: 118.0916904361483
Iteration: 10, Func. Count: 85, Neg. LLF: 118.07356819727966
Iteration: 11, Func. Count: 93, Neg. LLF: 117.94981443808463
Iteration: 12, Func. Count: 101, Neg. LLF: 128.3739236112313
Iteration: 13, Func. Count: 110, Neg. LLF: 130.2004032690388
Iteration: 14, Func. Count: 119, Neg. LLF: 130.29720369296805
Iteration: 15, Func. Count: 128, Neg. LLF: 117.68455295746242
Iteration: 16, Func. Count: 136, Neg. LLF: 117.75276589254707
Iteration: 17, Func. Count: 145, Neg. LLF: 117.77840263715791
Iteration: 18, Func. Count: 154, Neg. LLF: 117.60198624364348
Iteration: 19, Func. Count: 162, Neg. LLF: 117.60108844746391
Iteration: 20, Func. Count: 170, Neg. LLF: 117.60095157553667
Iteration: 21, Func. Count: 178, Neg. LLF: 117.60092933995006
Iteration: 22, Func. Count: 185, Neg. LLF: 117.60092939752096
Optimization terminated successfully (Exit mode 0)
Current function value: 117.60092933995006
Iterations: 22
Function evaluations: 185
Gradient evaluations: 22
Iteration: 1, Func. Count: 10, Neg. LLF: 119.9321473144059
Iteration: 2, Func. Count: 19, Neg. LLF: 120.78135951761087
Iteration: 3, Func. Count: 29, Neg. LLF: 118.22589007429902
Iteration: 4, Func. Count: 38, Neg. LLF: 130.1352356409255
Iteration: 5, Func. Count: 48, Neg. LLF: 121.7566830168959
Iteration: 6, Func. Count: 58, Neg. LLF: 117.80653933237153
Iteration: 7, Func. Count: 67, Neg. LLF: 118.29390599648359
Iteration: 8, Func. Count: 77, Neg. LLF: 117.7212033400438
Iteration: 9, Func. Count: 86, Neg. LLF: 117.64423049508076
Iteration: 10, Func. Count: 95, Neg. LLF: 117.61287602244678
Iteration: 11, Func. Count: 104, Neg. LLF: 117.60119701061417
Iteration: 12, Func. Count: 113, Neg. LLF: 117.60093303980643
Iteration: 13, Func. Count: 122, Neg. LLF: 117.60092943091698
Iteration: 14, Func. Count: 130, Neg. LLF: 117.60092944031031
Optimization terminated successfully (Exit mode 0)
Current function value: 117.60092943091698
Iterations: 14
Function evaluations: 130
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 119.42926199781412
Iteration: 2, Func. Count: 21, Neg. LLF: 120.91313028785312
Iteration: 3, Func. Count: 33, Neg. LLF: 118.12833339047779
Iteration: 4, Func. Count: 43, Neg. LLF: 119.07924154192531
Iteration: 5, Func. Count: 54, Neg. LLF: 118.06212967131597
Iteration: 6, Func. Count: 64, Neg. LLF: 117.95068325316855
Iteration: 7, Func. Count: 74, Neg. LLF: 131.51499341368586
Iteration: 8, Func. Count: 85, Neg. LLF: 132.05735432944664
Iteration: 9, Func. Count: 96, Neg. LLF: 130.71653220689663
Iteration: 10, Func. Count: 107, Neg. LLF: 117.93069591801685
Iteration: 11, Func. Count: 118, Neg. LLF: 117.65766241559679
Iteration: 12, Func. Count: 128, Neg. LLF: 117.61780693274208
Iteration: 13, Func. Count: 138, Neg. LLF: 117.63203968629018
Iteration: 14, Func. Count: 149, Neg. LLF: 117.60098039935997
Iteration: 15, Func. Count: 159, Neg. LLF: 117.60093003023667
Iteration: 16, Func. Count: 169, Neg. LLF: 117.60092934829997
Optimization terminated successfully (Exit mode 0)
Current function value: 117.60092934829997
Iterations: 16
Function evaluations: 169
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 119.26214216208251
Iteration: 2, Func. Count: 23, Neg. LLF: 119.89505596041444
Iteration: 3, Func. Count: 36, Neg. LLF: 118.64181434655003
Iteration: 4, Func. Count: 47, Neg. LLF: 128.98724450396028
Iteration: 5, Func. Count: 59, Neg. LLF: 118.67700280435827
Iteration: 6, Func. Count: 71, Neg. LLF: 118.25725404519841
Iteration: 7, Func. Count: 83, Neg. LLF: 117.97173950866154
Iteration: 8, Func. Count: 94, Neg. LLF: 117.87316889896425
Iteration: 9, Func. Count: 105, Neg. LLF: 117.75481553952555
Iteration: 10, Func. Count: 116, Neg. LLF: 125.70683612865625
Iteration: 11, Func. Count: 128, Neg. LLF: 119.41603808881881
Iteration: 12, Func. Count: 140, Neg. LLF: 124.61406669294747
Iteration: 13, Func. Count: 152, Neg. LLF: 117.6494134616476
Iteration: 14, Func. Count: 164, Neg. LLF: 117.60683437159982
Iteration: 15, Func. Count: 175, Neg. LLF: 117.60112230991686
Iteration: 16, Func. Count: 186, Neg. LLF: 117.60093132724452
Iteration: 17, Func. Count: 197, Neg. LLF: 117.60092936251804
Iteration: 18, Func. Count: 207, Neg. LLF: 117.60092938143627
Optimization terminated successfully (Exit mode 0)
Current function value: 117.60092936251804
Iterations: 18
Function evaluations: 207
Gradient evaluations: 18
Iteration: 1, Func. Count: 13, Neg. LLF: 119.25616824932162
Iteration: 2, Func. Count: 25, Neg. LLF: 120.02420460113132
Iteration: 3, Func. Count: 39, Neg. LLF: 118.5204959871214
Iteration: 4, Func. Count: 51, Neg. LLF: 129.29161321716708
Iteration: 5, Func. Count: 64, Neg. LLF: 118.35813879851351
Iteration: 6, Func. Count: 77, Neg. LLF: 118.31221554901143
Iteration: 7, Func. Count: 90, Neg. LLF: 117.9695919070767
Iteration: 8, Func. Count: 102, Neg. LLF: 117.87826857909099
Iteration: 9, Func. Count: 114, Neg. LLF: 117.70440884278592
Iteration: 10, Func. Count: 126, Neg. LLF: 124.56664250807802
Iteration: 11, Func. Count: 139, Neg. LLF: 117.74795334681325
Iteration: 12, Func. Count: 152, Neg. LLF: 117.60961373783714
Iteration: 13, Func. Count: 164, Neg. LLF: 117.60136525298554
Iteration: 14, Func. Count: 176, Neg. LLF: 117.6009416113512
Iteration: 15, Func. Count: 188, Neg. LLF: 117.60092941561206
Iteration: 16, Func. Count: 199, Neg. LLF: 117.6009295614853
Optimization terminated successfully (Exit mode 0)
Current function value: 117.60092941561206
Iterations: 16
Function evaluations: 199
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 119.52887616175302
Iteration: 2, Func. Count: 20, Neg. LLF: 126.32724213940361
Iteration: 3, Func. Count: 30, Neg. LLF: 118.3957757649239
Iteration: 4, Func. Count: 39, Neg. LLF: 201.18065364462626
Iteration: 5, Func. Count: 49, Neg. LLF: 118.22929427158604
Iteration: 6, Func. Count: 58, Neg. LLF: 118.16195945099683
Iteration: 7, Func. Count: 67, Neg. LLF: 118.15143055945008
Iteration: 8, Func. Count: 76, Neg. LLF: 118.14106447777861
Iteration: 9, Func. Count: 85, Neg. LLF: 118.13212989042246
Iteration: 10, Func. Count: 94, Neg. LLF: 118.12009447822679
Iteration: 11, Func. Count: 103, Neg. LLF: 118.0926832888593
Iteration: 12, Func. Count: 112, Neg. LLF: 118.07502599243499
Iteration: 13, Func. Count: 121, Neg. LLF: 117.98678175693495
Iteration: 14, Func. Count: 130, Neg. LLF: 117.85709036784803
Iteration: 15, Func. Count: 139, Neg. LLF: 117.71355671558668
Iteration: 16, Func. Count: 148, Neg. LLF: 117.6255418537999
Iteration: 17, Func. Count: 157, Neg. LLF: 117.60712547055208
Iteration: 18, Func. Count: 166, Neg. LLF: 117.60197913131745
Iteration: 19, Func. Count: 175, Neg. LLF: 117.60100821589158
Iteration: 20, Func. Count: 184, Neg. LLF: 117.60094734262816
Iteration: 21, Func. Count: 193, Neg. LLF: 117.60092692852683
Iteration: 22, Func. Count: 202, Neg. LLF: 117.60092653106824
Optimization terminated successfully (Exit mode 0)
Current function value: 117.6009269278166
Iterations: 22
Function evaluations: 212
Gradient evaluations: 22
Iteration: 1, Func. Count: 11, Neg. LLF: 119.32574666281927
Iteration: 2, Func. Count: 21, Neg. LLF: 119.4426035771219
Iteration: 3, Func. Count: 33, Neg. LLF: 119.0817101670799
Iteration: 4, Func. Count: 44, Neg. LLF: 128.40975981674754
Iteration: 5, Func. Count: 55, Neg. LLF: 129.1291753695144
Iteration: 6, Func. Count: 66, Neg. LLF: 129.14734283743192
Iteration: 7, Func. Count: 77, Neg. LLF: 128.97003787970394
Iteration: 8, Func. Count: 88, Neg. LLF: 128.81880570247304
Iteration: 9, Func. Count: 99, Neg. LLF: 128.7067632915686
Iteration: 10, Func. Count: 110, Neg. LLF: 123.80010617680676
Iteration: 11, Func. Count: 121, Neg. LLF: 118.89030981807359
Iteration: 12, Func. Count: 132, Neg. LLF: 117.8833723269533
Iteration: 13, Func. Count: 143, Neg. LLF: 117.8065111803173
Iteration: 14, Func. Count: 154, Neg. LLF: 117.73253597975818
Iteration: 15, Func. Count: 164, Neg. LLF: 117.66649233489275
Iteration: 16, Func. Count: 174, Neg. LLF: 117.60591399368944
Iteration: 17, Func. Count: 184, Neg. LLF: 117.60143619343917
Iteration: 18, Func. Count: 194, Neg. LLF: 117.60094324438467
Iteration: 19, Func. Count: 204, Neg. LLF: 117.60093049196739
Iteration: 20, Func. Count: 214, Neg. LLF: 117.6009294050393
Iteration: 21, Func. Count: 223, Neg. LLF: 117.60092941446138
Optimization terminated successfully (Exit mode 0)
Current function value: 117.6009294050393
Iterations: 21
Function evaluations: 223
Gradient evaluations: 21
Iteration: 1, Func. Count: 12, Neg. LLF: 119.33684438867543
Iteration: 2, Func. Count: 23, Neg. LLF: 120.08118944396769
Iteration: 3, Func. Count: 35, Neg. LLF: 119.50148059898542
Iteration: 4, Func. Count: 47, Neg. LLF: 127.67893239889378
Iteration: 5, Func. Count: 59, Neg. LLF: 128.50331783395325
Iteration: 6, Func. Count: 71, Neg. LLF: 128.54460601800844
Iteration: 7, Func. Count: 83, Neg. LLF: 128.38176926220544
Iteration: 8, Func. Count: 95, Neg. LLF: 128.2918519691799
Iteration: 9, Func. Count: 107, Neg. LLF: 128.29787838851786
Iteration: 10, Func. Count: 119, Neg. LLF: 128.38079850652002
Iteration: 11, Func. Count: 131, Neg. LLF: 128.50230557263924
Iteration: 12, Func. Count: 143, Neg. LLF: 128.61568334487953
Iteration: 13, Func. Count: 155, Neg. LLF: 128.68592507564398
Iteration: 14, Func. Count: 167, Neg. LLF: 118.46861612636168
Iteration: 15, Func. Count: 179, Neg. LLF: 117.71842162936085
Iteration: 16, Func. Count: 191, Neg. LLF: 117.65561843494007
Iteration: 17, Func. Count: 202, Neg. LLF: 117.64179699388585
Iteration: 18, Func. Count: 213, Neg. LLF: 117.61204778306421
Iteration: 19, Func. Count: 224, Neg. LLF: 117.60121301882482
Iteration: 20, Func. Count: 235, Neg. LLF: 117.60093313475377
Iteration: 21, Func. Count: 246, Neg. LLF: 117.60092934089359
Iteration: 22, Func. Count: 256, Neg. LLF: 117.60092944527554
Optimization terminated successfully (Exit mode 0)
Current function value: 117.60092934089359
Iterations: 22
Function evaluations: 256
Gradient evaluations: 22
Iteration: 1, Func. Count: 13, Neg. LLF: 119.4627407184733
Iteration: 2, Func. Count: 25, Neg. LLF: 122.80530791992994
Iteration: 3, Func. Count: 38, Neg. LLF: 120.9642279128595
Iteration: 4, Func. Count: 51, Neg. LLF: 118.16477790833869
Iteration: 5, Func. Count: 63, Neg. LLF: 119.14461604236978
Iteration: 6, Func. Count: 76, Neg. LLF: 118.00774942711386
Iteration: 7, Func. Count: 88, Neg. LLF: 117.900449920003
Iteration: 8, Func. Count: 100, Neg. LLF: 117.71512476427458
Iteration: 9, Func. Count: 112, Neg. LLF: 126.86290538938827
Iteration: 10, Func. Count: 125, Neg. LLF: 127.2603481260111
Iteration: 11, Func. Count: 138, Neg. LLF: 118.34777441552428
Iteration: 12, Func. Count: 151, Neg. LLF: 117.60294812137941
Iteration: 13, Func. Count: 163, Neg. LLF: 117.60143715668336
Iteration: 14, Func. Count: 175, Neg. LLF: 117.60096647537773
Iteration: 15, Func. Count: 187, Neg. LLF: 117.60093831811403
Iteration: 16, Func. Count: 199, Neg. LLF: 117.60092938285923
Iteration: 17, Func. Count: 210, Neg. LLF: 117.60092940178778
Optimization terminated successfully (Exit mode 0)
Current function value: 117.60092938285923
Iterations: 17
Function evaluations: 210
Gradient evaluations: 17
Iteration: 1, Func. Count: 14, Neg. LLF: 119.49451399195888
Iteration: 2, Func. Count: 27, Neg. LLF: 123.67995612100475
Iteration: 3, Func. Count: 41, Neg. LLF: 120.61632614380804
Iteration: 4, Func. Count: 55, Neg. LLF: 118.19721780758636
Iteration: 5, Func. Count: 68, Neg. LLF: 118.40807732010882
Iteration: 6, Func. Count: 82, Neg. LLF: 118.02083875359708
Iteration: 7, Func. Count: 95, Neg. LLF: 117.90680122437733
Iteration: 8, Func. Count: 108, Neg. LLF: 128.5097964788587
Iteration: 9, Func. Count: 122, Neg. LLF: 117.72762168490078
Iteration: 10, Func. Count: 135, Neg. LLF: 129.45268446059364
Iteration: 11, Func. Count: 149, Neg. LLF: 119.34685648719612
Iteration: 12, Func. Count: 163, Neg. LLF: 117.60872192395776
Iteration: 13, Func. Count: 176, Neg. LLF: 117.60303855989456
Iteration: 14, Func. Count: 189, Neg. LLF: 117.60126647404968
Iteration: 15, Func. Count: 202, Neg. LLF: 117.6009699097285
Iteration: 16, Func. Count: 215, Neg. LLF: 117.60093183697083
Iteration: 17, Func. Count: 228, Neg. LLF: 117.60092936083979
Iteration: 18, Func. Count: 240, Neg. LLF: 117.60092950669112
Optimization terminated successfully (Exit mode 0)
Current function value: 117.60092936083979
Iterations: 18
Function evaluations: 240
Gradient evaluations: 18
Iteration: 1, Func. Count: 7, Neg. LLF: 123.81735721434138
Iteration: 2, Func. Count: 14, Neg. LLF: 134.60404409360552
Iteration: 3, Func. Count: 21, Neg. LLF: 120.61846908958648
Iteration: 4, Func. Count: 27, Neg. LLF: 128.75910996703277
Iteration: 5, Func. Count: 34, Neg. LLF: 122.20408802759633
Iteration: 6, Func. Count: 41, Neg. LLF: 642.2414969592137
Iteration: 7, Func. Count: 48, Neg. LLF: 123.92651679509606
Iteration: 8, Func. Count: 55, Neg. LLF: 120.05885691839462
Iteration: 9, Func. Count: 61, Neg. LLF: 120.0533721324341
Iteration: 10, Func. Count: 67, Neg. LLF: 120.05241272719813
Iteration: 11, Func. Count: 73, Neg. LLF: 120.0523381966159
Iteration: 12, Func. Count: 79, Neg. LLF: 120.05233474580587
Iteration: 13, Func. Count: 84, Neg. LLF: 120.05233474581317
Optimization terminated successfully (Exit mode 0)
Current function value: 120.05233474580587
Iterations: 13
Function evaluations: 84
Gradient evaluations: 13
Iteration: 1, Func. Count: 8, Neg. LLF: 122.46865791269232
Iteration: 2, Func. Count: 16, Neg. LLF: 122.8454972493201
Iteration: 3, Func. Count: 24, Neg. LLF: 121.6101525858814
Iteration: 4, Func. Count: 32, Neg. LLF: 155.61777368813392
Iteration: 5, Func. Count: 40, Neg. LLF: 151.47373260137576
Iteration: 6, Func. Count: 48, Neg. LLF: 142.6265389272515
Iteration: 7, Func. Count: 56, Neg. LLF: 122.93218838329467
Iteration: 8, Func. Count: 64, Neg. LLF: 131.42536819621972
Iteration: 9, Func. Count: 72, Neg. LLF: 120.69988155831959
Iteration: 10, Func. Count: 80, Neg. LLF: 120.11488775183227
Iteration: 11, Func. Count: 88, Neg. LLF: 120.1633472586656
Iteration: 12, Func. Count: 96, Neg. LLF: 120.1160733299079
Iteration: 13, Func. Count: 104, Neg. LLF: 120.0602398427184
Iteration: 14, Func. Count: 111, Neg. LLF: 120.0597096053759
Iteration: 15, Func. Count: 118, Neg. LLF: 120.05892309456861
Iteration: 16, Func. Count: 125, Neg. LLF: 120.05679394384154
Iteration: 17, Func. Count: 132, Neg. LLF: 120.05419443189732
Iteration: 18, Func. Count: 139, Neg. LLF: 120.05262665441415
Iteration: 19, Func. Count: 146, Neg. LLF: 120.05237102663106
Iteration: 20, Func. Count: 153, Neg. LLF: 120.05233681982271
Iteration: 21, Func. Count: 160, Neg. LLF: 120.05233471213829
Iteration: 22, Func. Count: 166, Neg. LLF: 120.05233471493686
Optimization terminated successfully (Exit mode 0)
Current function value: 120.05233471213829
Iterations: 22
Function evaluations: 166
Gradient evaluations: 22
Iteration: 1, Func. Count: 9, Neg. LLF: 122.36157226657426
Iteration: 2, Func. Count: 18, Neg. LLF: 122.51790583861475
Iteration: 3, Func. Count: 27, Neg. LLF: 120.74727354332241
Iteration: 4, Func. Count: 35, Neg. LLF: 130.97747343390563
Iteration: 5, Func. Count: 44, Neg. LLF: 126.21994510772764
Iteration: 6, Func. Count: 53, Neg. LLF: 127.69987128000542
Iteration: 7, Func. Count: 62, Neg. LLF: 122.68418748417088
Iteration: 8, Func. Count: 71, Neg. LLF: 124.34499663895225
Iteration: 9, Func. Count: 80, Neg. LLF: 120.0859875875978
Iteration: 10, Func. Count: 88, Neg. LLF: 120.05672562958782
Iteration: 11, Func. Count: 96, Neg. LLF: 120.05376556283838
Iteration: 12, Func. Count: 104, Neg. LLF: 120.052498727038
Iteration: 13, Func. Count: 112, Neg. LLF: 120.05236960346747
Iteration: 14, Func. Count: 120, Neg. LLF: 120.05233822134872
Iteration: 15, Func. Count: 128, Neg. LLF: 120.05233472901064
Iteration: 16, Func. Count: 135, Neg. LLF: 120.05233480018715
Optimization terminated successfully (Exit mode 0)
Current function value: 120.05233472901064
Iterations: 16
Function evaluations: 135
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 122.34034592662847
Iteration: 2, Func. Count: 20, Neg. LLF: 122.49798550118084
Iteration: 3, Func. Count: 30, Neg. LLF: 120.72544098911476
Iteration: 4, Func. Count: 39, Neg. LLF: 146.59732011618647
Iteration: 5, Func. Count: 49, Neg. LLF: 132.27485926055795
Iteration: 6, Func. Count: 59, Neg. LLF: 126.85258940695802
Iteration: 7, Func. Count: 69, Neg. LLF: 126.93412779042154
Iteration: 8, Func. Count: 80, Neg. LLF: 123.03001264633066
Iteration: 9, Func. Count: 90, Neg. LLF: 120.10436723562918
Iteration: 10, Func. Count: 99, Neg. LLF: 120.06440098885669
Iteration: 11, Func. Count: 108, Neg. LLF: 120.05795108811405
Iteration: 12, Func. Count: 117, Neg. LLF: 120.05728213682028
Iteration: 13, Func. Count: 126, Neg. LLF: 120.05490016474563
Iteration: 14, Func. Count: 135, Neg. LLF: 120.05324962050372
Iteration: 15, Func. Count: 144, Neg. LLF: 120.05247461413214
Iteration: 16, Func. Count: 153, Neg. LLF: 120.05237087453531
Iteration: 17, Func. Count: 162, Neg. LLF: 120.05233471332396
Iteration: 18, Func. Count: 170, Neg. LLF: 120.05233484290441
Optimization terminated successfully (Exit mode 0)
Current function value: 120.05233471332396
Iterations: 18
Function evaluations: 170
Gradient evaluations: 18
Iteration: 1, Func. Count: 11, Neg. LLF: 122.33836360221952
Iteration: 2, Func. Count: 21, Neg. LLF: 121.91414676099883
Iteration: 3, Func. Count: 31, Neg. LLF: 129.02836472072698
Iteration: 4, Func. Count: 42, Neg. LLF: 124.97406640294989
Iteration: 5, Func. Count: 53, Neg. LLF: 150.60770050243187
Iteration: 6, Func. Count: 64, Neg. LLF: 139.76344854934968
Iteration: 7, Func. Count: 75, Neg. LLF: 124.46631329924791
Iteration: 8, Func. Count: 86, Neg. LLF: 125.90406838797291
Iteration: 9, Func. Count: 97, Neg. LLF: 122.9941209183772
Iteration: 10, Func. Count: 108, Neg. LLF: 120.62403662494603
Iteration: 11, Func. Count: 119, Neg. LLF: 120.17923491072752
Iteration: 12, Func. Count: 130, Neg. LLF: 120.07286791710214
Iteration: 13, Func. Count: 140, Neg. LLF: 120.05770353704183
Iteration: 14, Func. Count: 150, Neg. LLF: 120.05262184783791
Iteration: 15, Func. Count: 160, Neg. LLF: 120.05235371453085
Iteration: 16, Func. Count: 170, Neg. LLF: 120.05233492731988
Iteration: 17, Func. Count: 179, Neg. LLF: 120.0523350683861
Optimization terminated successfully (Exit mode 0)
Current function value: 120.05233492731988
Iterations: 17
Function evaluations: 179
Gradient evaluations: 17
Iteration: 1, Func. Count: 8, Neg. LLF: 119.05196206722108
Iteration: 2, Func. Count: 15, Neg. LLF: 121.97803148211048
Iteration: 3, Func. Count: 23, Neg. LLF: 119.17302852128421
Iteration: 4, Func. Count: 31, Neg. LLF: 140.28861841338005
Iteration: 5, Func. Count: 39, Neg. LLF: 135.3814295315067
Iteration: 6, Func. Count: 47, Neg. LLF: 133.90194445357736
Iteration: 7, Func. Count: 55, Neg. LLF: 119.47244363833985
Iteration: 8, Func. Count: 63, Neg. LLF: 118.34442849026081
Iteration: 9, Func. Count: 71, Neg. LLF: 118.28728713111525
Iteration: 10, Func. Count: 78, Neg. LLF: 118.28691748979176
Iteration: 11, Func. Count: 85, Neg. LLF: 118.28687822262098
Iteration: 12, Func. Count: 92, Neg. LLF: 118.28686739434788
Iteration: 13, Func. Count: 98, Neg. LLF: 118.28686739434835
Optimization terminated successfully (Exit mode 0)
Current function value: 118.28686739434788
Iterations: 13
Function evaluations: 98
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 119.5656779515198
Iteration: 2, Func. Count: 17, Neg. LLF: 123.22130193449084
Iteration: 3, Func. Count: 26, Neg. LLF: 120.28190487011913
Iteration: 4, Func. Count: 35, Neg. LLF: 129.4138707397052
Iteration: 5, Func. Count: 44, Neg. LLF: 131.6269847851945
Iteration: 6, Func. Count: 53, Neg. LLF: 122.25689924285676
Iteration: 7, Func. Count: 62, Neg. LLF: 118.64456581432094
Iteration: 8, Func. Count: 71, Neg. LLF: 118.32192623799028
Iteration: 9, Func. Count: 80, Neg. LLF: 118.29122615592722
Iteration: 10, Func. Count: 89, Neg. LLF: 118.2869598738926
Iteration: 11, Func. Count: 97, Neg. LLF: 118.28687843902472
Iteration: 12, Func. Count: 105, Neg. LLF: 118.28686766421063
Iteration: 13, Func. Count: 112, Neg. LLF: 118.28686781599119
Optimization terminated successfully (Exit mode 0)
Current function value: 118.28686766421063
Iterations: 13
Function evaluations: 112
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 119.33831489244346
Iteration: 2, Func. Count: 19, Neg. LLF: 120.34285663316393
Iteration: 3, Func. Count: 30, Neg. LLF: 129.54887486129226
Iteration: 4, Func. Count: 40, Neg. LLF: 130.64295050167783
Iteration: 5, Func. Count: 50, Neg. LLF: 133.09921809789915
Iteration: 6, Func. Count: 60, Neg. LLF: 119.09074952156504
Iteration: 7, Func. Count: 70, Neg. LLF: 118.33452906682162
Iteration: 8, Func. Count: 79, Neg. LLF: 118.31910016341075
Iteration: 9, Func. Count: 88, Neg. LLF: 118.36040753584744
Iteration: 10, Func. Count: 98, Neg. LLF: 118.28727662636281
Iteration: 11, Func. Count: 107, Neg. LLF: 118.28690304749888
Iteration: 12, Func. Count: 116, Neg. LLF: 118.28686765257903
Iteration: 13, Func. Count: 124, Neg. LLF: 118.28686767615329
Optimization terminated successfully (Exit mode 0)
Current function value: 118.28686765257903
Iterations: 13
Function evaluations: 124
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 119.35403070061125
Iteration: 2, Func. Count: 21, Neg. LLF: 120.53405471518953
Iteration: 3, Func. Count: 33, Neg. LLF: 129.67562889867975
Iteration: 4, Func. Count: 44, Neg. LLF: 141.1178037802079
Iteration: 5, Func. Count: 56, Neg. LLF: 131.81128116060188
Iteration: 6, Func. Count: 67, Neg. LLF: 132.29258315005305
Iteration: 7, Func. Count: 78, Neg. LLF: 118.96008530708055
Iteration: 8, Func. Count: 89, Neg. LLF: 118.34138571303868
Iteration: 9, Func. Count: 99, Neg. LLF: 118.33077048948942
Iteration: 10, Func. Count: 109, Neg. LLF: 118.33087737744664
Iteration: 11, Func. Count: 120, Neg. LLF: 118.28809334191806
Iteration: 12, Func. Count: 130, Neg. LLF: 118.2869273540485
Iteration: 13, Func. Count: 140, Neg. LLF: 118.2868700425857
Iteration: 14, Func. Count: 150, Neg. LLF: 118.28686744019774
Iteration: 15, Func. Count: 159, Neg. LLF: 118.28686749104087
Optimization terminated successfully (Exit mode 0)
Current function value: 118.28686744019774
Iterations: 15
Function evaluations: 159
Gradient evaluations: 15
Iteration: 1, Func. Count: 12, Neg. LLF: 119.34975364065038
Iteration: 2, Func. Count: 23, Neg. LLF: 120.77562572149357
Iteration: 3, Func. Count: 36, Neg. LLF: 130.12920997869676
Iteration: 4, Func. Count: 48, Neg. LLF: 144.95393903644788
Iteration: 5, Func. Count: 61, Neg. LLF: 131.8009916004622
Iteration: 6, Func. Count: 73, Neg. LLF: 132.31925643624328
Iteration: 7, Func. Count: 85, Neg. LLF: 119.37481218988079
Iteration: 8, Func. Count: 97, Neg. LLF: 118.36159493206557
Iteration: 9, Func. Count: 108, Neg. LLF: 118.32491746345187
Iteration: 10, Func. Count: 119, Neg. LLF: 118.36420427426818
Iteration: 11, Func. Count: 131, Neg. LLF: 118.28807870286671
Iteration: 12, Func. Count: 142, Neg. LLF: 118.28689003723224
Iteration: 13, Func. Count: 153, Neg. LLF: 118.28686797510578
Iteration: 14, Func. Count: 163, Neg. LLF: 118.28686807657607
Optimization terminated successfully (Exit mode 0)
Current function value: 118.28686797510578
Iterations: 14
Function evaluations: 163
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 119.43647207135304
Iteration: 2, Func. Count: 18, Neg. LLF: 118.90941813755836
Iteration: 3, Func. Count: 26, Neg. LLF: 118.06676460842975
Iteration: 4, Func. Count: 34, Neg. LLF: 124.6501920210775
Iteration: 5, Func. Count: 44, Neg. LLF: 127.8543043370055
Iteration: 6, Func. Count: 53, Neg. LLF: 128.79545116145266
Iteration: 7, Func. Count: 62, Neg. LLF: 128.44262048642076
Iteration: 8, Func. Count: 71, Neg. LLF: 128.40319070123846
Iteration: 9, Func. Count: 80, Neg. LLF: 128.3799461712773
Iteration: 10, Func. Count: 89, Neg. LLF: 117.87617606313744
Iteration: 11, Func. Count: 98, Neg. LLF: 117.60496696146653
Iteration: 12, Func. Count: 106, Neg. LLF: 117.60202712979039
Iteration: 13, Func. Count: 114, Neg. LLF: 117.60149237710158
Iteration: 14, Func. Count: 122, Neg. LLF: 117.60101127997888
Iteration: 15, Func. Count: 130, Neg. LLF: 117.60096585945928
Iteration: 16, Func. Count: 138, Neg. LLF: 117.60093345976826
Iteration: 17, Func. Count: 146, Neg. LLF: 117.60092940358304
Iteration: 18, Func. Count: 154, Neg. LLF: 117.60092816906094
Iteration: 19, Func. Count: 161, Neg. LLF: 117.6009280285688
Optimization terminated successfully (Exit mode 0)
Current function value: 117.60092816906094
Iterations: 19
Function evaluations: 161
Gradient evaluations: 19
Iteration: 1, Func. Count: 10, Neg. LLF: 119.7192103708271
Iteration: 2, Func. Count: 19, Neg. LLF: 121.18573638090555
Iteration: 3, Func. Count: 29, Neg. LLF: 119.30204066862424
Iteration: 4, Func. Count: 39, Neg. LLF: 128.24124508457172
Iteration: 5, Func. Count: 49, Neg. LLF: 128.89658031682168
Iteration: 6, Func. Count: 59, Neg. LLF: 128.88761197655055
Iteration: 7, Func. Count: 69, Neg. LLF: 128.81229060718525
Iteration: 8, Func. Count: 79, Neg. LLF: 128.76402568046353
Iteration: 9, Func. Count: 89, Neg. LLF: 128.72460928532422
Iteration: 10, Func. Count: 99, Neg. LLF: 128.6939501809886
Iteration: 11, Func. Count: 109, Neg. LLF: 128.66271315108352
Iteration: 12, Func. Count: 119, Neg. LLF: 117.93422454434081
Iteration: 13, Func. Count: 129, Neg. LLF: 117.65845825356573
Iteration: 14, Func. Count: 138, Neg. LLF: 117.76272937950063
Iteration: 15, Func. Count: 148, Neg. LLF: 117.63245003656587
Iteration: 16, Func. Count: 157, Neg. LLF: 117.6228366072173
Iteration: 17, Func. Count: 166, Neg. LLF: 118.69730930791955
Iteration: 18, Func. Count: 177, Neg. LLF: 117.6086151995886
Iteration: 19, Func. Count: 186, Neg. LLF: 117.60109707705638
Iteration: 20, Func. Count: 195, Neg. LLF: 117.60093377110186
Iteration: 21, Func. Count: 204, Neg. LLF: 117.60092813092636
Iteration: 22, Func. Count: 212, Neg. LLF: 117.60092814052916
Optimization terminated successfully (Exit mode 0)
Current function value: 117.60092813092636
Iterations: 22
Function evaluations: 212
Gradient evaluations: 22
Iteration: 1, Func. Count: 11, Neg. LLF: 119.33088845005256
Iteration: 2, Func. Count: 21, Neg. LLF: 120.71849482940758
Iteration: 3, Func. Count: 33, Neg. LLF: 118.1797495183748
Iteration: 4, Func. Count: 43, Neg. LLF: 131.00570663101163
Iteration: 5, Func. Count: 54, Neg. LLF: 117.99205648156799
Iteration: 6, Func. Count: 64, Neg. LLF: 117.94125369024154
Iteration: 7, Func. Count: 74, Neg. LLF: 117.82816415008998
Iteration: 8, Func. Count: 84, Neg. LLF: 117.68565502096817
Iteration: 9, Func. Count: 94, Neg. LLF: 118.9272387110711
Iteration: 10, Func. Count: 106, Neg. LLF: 117.82717772921112
Iteration: 11, Func. Count: 117, Neg. LLF: 117.60923758991251
Iteration: 12, Func. Count: 127, Neg. LLF: 117.60164897789925
Iteration: 13, Func. Count: 137, Neg. LLF: 117.60099858250997
Iteration: 14, Func. Count: 147, Neg. LLF: 117.6009321083122
Iteration: 15, Func. Count: 157, Neg. LLF: 117.60092835184739
Iteration: 16, Func. Count: 166, Neg. LLF: 117.60092845627553
Optimization terminated successfully (Exit mode 0)
Current function value: 117.60092835184739
Iterations: 16
Function evaluations: 166
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 119.24440804120226
Iteration: 2, Func. Count: 23, Neg. LLF: 120.10192435240312
Iteration: 3, Func. Count: 36, Neg. LLF: 118.73017413301629
Iteration: 4, Func. Count: 47, Neg. LLF: 128.64749820640301
Iteration: 5, Func. Count: 59, Neg. LLF: 118.03146907718723
Iteration: 6, Func. Count: 70, Neg. LLF: 118.22898825791444
Iteration: 7, Func. Count: 82, Neg. LLF: 118.02672143145519
Iteration: 8, Func. Count: 94, Neg. LLF: 117.80608556251366
Iteration: 9, Func. Count: 105, Neg. LLF: 117.7544247479244
Iteration: 10, Func. Count: 116, Neg. LLF: 117.62708819762057
Iteration: 11, Func. Count: 127, Neg. LLF: 119.37131404139929
Iteration: 12, Func. Count: 140, Neg. LLF: 117.60347390982776
Iteration: 13, Func. Count: 151, Neg. LLF: 117.60111096885532
Iteration: 14, Func. Count: 162, Neg. LLF: 117.60093231455754
Iteration: 15, Func. Count: 173, Neg. LLF: 117.60092820020174
Iteration: 16, Func. Count: 183, Neg. LLF: 117.60092821919045
Optimization terminated successfully (Exit mode 0)
Current function value: 117.60092820020174
Iterations: 16
Function evaluations: 183
Gradient evaluations: 16
Iteration: 1, Func. Count: 13, Neg. LLF: 119.22741862801581
Iteration: 2, Func. Count: 25, Neg. LLF: 120.04971867791586
Iteration: 3, Func. Count: 39, Neg. LLF: 118.75401536592099
Iteration: 4, Func. Count: 51, Neg. LLF: 128.6381947182496
Iteration: 5, Func. Count: 64, Neg. LLF: 118.0283165283404
Iteration: 6, Func. Count: 76, Neg. LLF: 117.91491529989368
Iteration: 7, Func. Count: 88, Neg. LLF: 118.01906834261621
Iteration: 8, Func. Count: 101, Neg. LLF: 117.75702810555671
Iteration: 9, Func. Count: 113, Neg. LLF: 117.7086777923247
Iteration: 10, Func. Count: 125, Neg. LLF: 117.62346069197338
Iteration: 11, Func. Count: 137, Neg. LLF: 121.47344560490001
Iteration: 12, Func. Count: 152, Neg. LLF: 117.60281465262479
Iteration: 13, Func. Count: 164, Neg. LLF: 117.60114865937564
Iteration: 14, Func. Count: 176, Neg. LLF: 117.60093182002474
Iteration: 15, Func. Count: 188, Neg. LLF: 117.60092836870461
Iteration: 16, Func. Count: 199, Neg. LLF: 117.60092851459908
Optimization terminated successfully (Exit mode 0)
Current function value: 117.60092836870461
Iterations: 16
Function evaluations: 199
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 119.09981839707103
Iteration: 2, Func. Count: 19, Neg. LLF: 119.93532719448415
Iteration: 3, Func. Count: 31, Neg. LLF: 118.977736574114
Iteration: 4, Func. Count: 41, Neg. LLF: 124.59688164060256
Iteration: 5, Func. Count: 51, Neg. LLF: 122.22876979782647
Iteration: 6, Func. Count: 61, Neg. LLF: 118.32484620694312
Iteration: 7, Func. Count: 70, Neg. LLF: 118.1286448958923
Iteration: 8, Func. Count: 79, Neg. LLF: 118.05477115384907
Iteration: 9, Func. Count: 88, Neg. LLF: 118.04110043994771
Iteration: 10, Func. Count: 97, Neg. LLF: 118.00483788721009
Iteration: 11, Func. Count: 106, Neg. LLF: 117.9000859102993
Iteration: 12, Func. Count: 115, Neg. LLF: 117.7293157143629
Iteration: 13, Func. Count: 124, Neg. LLF: 118.40841839212271
Iteration: 14, Func. Count: 134, Neg. LLF: 117.58249162929928
Iteration: 15, Func. Count: 143, Neg. LLF: 117.5641578097026
Iteration: 16, Func. Count: 152, Neg. LLF: 117.55305731568015
Iteration: 17, Func. Count: 161, Neg. LLF: 117.55213879499175
Iteration: 18, Func. Count: 170, Neg. LLF: 117.55207592939675
Iteration: 19, Func. Count: 179, Neg. LLF: 117.552074530876
Iteration: 20, Func. Count: 187, Neg. LLF: 117.55207447472074
Optimization terminated successfully (Exit mode 0)
Current function value: 117.552074530876
Iterations: 20
Function evaluations: 187
Gradient evaluations: 20
Iteration: 1, Func. Count: 11, Neg. LLF: 119.2354099769218
Iteration: 2, Func. Count: 21, Neg. LLF: 120.98256065458273
Iteration: 3, Func. Count: 33, Neg. LLF: 120.20460869485437
Iteration: 4, Func. Count: 44, Neg. LLF: 130.23514544320733
Iteration: 5, Func. Count: 55, Neg. LLF: 128.922886766066
Iteration: 6, Func. Count: 66, Neg. LLF: 130.35358401659784
Iteration: 7, Func. Count: 77, Neg. LLF: 129.69001059913063
Iteration: 8, Func. Count: 88, Neg. LLF: 129.58899668125153
Iteration: 9, Func. Count: 99, Neg. LLF: 129.37500675229725
Iteration: 10, Func. Count: 110, Neg. LLF: 129.30655437580663
Iteration: 11, Func. Count: 121, Neg. LLF: 125.29613326314941
Iteration: 12, Func. Count: 132, Neg. LLF: 120.15424131587064
Iteration: 13, Func. Count: 143, Neg. LLF: 118.78328047605407
Iteration: 14, Func. Count: 154, Neg. LLF: 118.19243604274921
Iteration: 15, Func. Count: 165, Neg. LLF: 117.91757180736238
Iteration: 16, Func. Count: 176, Neg. LLF: 117.8620626324101
Iteration: 17, Func. Count: 186, Neg. LLF: 117.75677455855416
Iteration: 18, Func. Count: 196, Neg. LLF: 117.63874916230161
Iteration: 19, Func. Count: 206, Neg. LLF: 117.64338674239404
Iteration: 20, Func. Count: 217, Neg. LLF: 117.5846167657764
Iteration: 21, Func. Count: 228, Neg. LLF: 117.55214670377018
Iteration: 22, Func. Count: 238, Neg. LLF: 117.55207959516306
Iteration: 23, Func. Count: 248, Neg. LLF: 117.55207482341919
Iteration: 24, Func. Count: 257, Neg. LLF: 117.55207487298824
Optimization terminated successfully (Exit mode 0)
Current function value: 117.55207482341919
Iterations: 24
Function evaluations: 257
Gradient evaluations: 24
Iteration: 1, Func. Count: 12, Neg. LLF: 119.12769290379856
Iteration: 2, Func. Count: 23, Neg. LLF: 119.37076656164571
Iteration: 3, Func. Count: 37, Neg. LLF: 120.34376946851891
Iteration: 4, Func. Count: 49, Neg. LLF: 118.53674974681066
Iteration: 5, Func. Count: 60, Neg. LLF: 118.31261641858627
Iteration: 6, Func. Count: 71, Neg. LLF: 119.32182198001257
Iteration: 7, Func. Count: 83, Neg. LLF: 118.08324274014399
Iteration: 8, Func. Count: 94, Neg. LLF: 118.06510877452429
Iteration: 9, Func. Count: 106, Neg. LLF: 118.00715275999296
Iteration: 10, Func. Count: 117, Neg. LLF: 117.91117972763338
Iteration: 11, Func. Count: 128, Neg. LLF: 128.70948345093694
Iteration: 12, Func. Count: 140, Neg. LLF: 128.93437062408955
Iteration: 13, Func. Count: 152, Neg. LLF: 128.93733304124592
Iteration: 14, Func. Count: 164, Neg. LLF: 128.83772688245946
Iteration: 15, Func. Count: 176, Neg. LLF: 128.14161398749437
Iteration: 16, Func. Count: 188, Neg. LLF: 117.93539142454692
Iteration: 17, Func. Count: 200, Neg. LLF: 117.56706018193057
Iteration: 18, Func. Count: 211, Neg. LLF: 117.55737528340468
Iteration: 19, Func. Count: 222, Neg. LLF: 117.55497156119809
Iteration: 20, Func. Count: 233, Neg. LLF: 117.55246122201588
Iteration: 21, Func. Count: 244, Neg. LLF: 117.55209145745182
Iteration: 22, Func. Count: 255, Neg. LLF: 117.55207482188682
Iteration: 23, Func. Count: 265, Neg. LLF: 117.55207492383636
Optimization terminated successfully (Exit mode 0)
Current function value: 117.55207482188682
Iterations: 23
Function evaluations: 265
Gradient evaluations: 23
Iteration: 1, Func. Count: 13, Neg. LLF: 119.12209987353528
Iteration: 2, Func. Count: 25, Neg. LLF: 119.3699790753776
Iteration: 3, Func. Count: 39, Neg. LLF: 120.26822305868833
Iteration: 4, Func. Count: 53, Neg. LLF: 125.10116507077484
Iteration: 5, Func. Count: 66, Neg. LLF: 128.59152116235245
Iteration: 6, Func. Count: 79, Neg. LLF: 129.81829386522503
Iteration: 7, Func. Count: 92, Neg. LLF: 129.84295626002773
Iteration: 8, Func. Count: 105, Neg. LLF: 129.5987498432679
Iteration: 9, Func. Count: 118, Neg. LLF: 129.46057329944063
Iteration: 10, Func. Count: 131, Neg. LLF: 129.3980854955629
Iteration: 11, Func. Count: 144, Neg. LLF: 129.373141235341
Iteration: 12, Func. Count: 157, Neg. LLF: 129.37265397484444
Iteration: 13, Func. Count: 170, Neg. LLF: 120.4680675601883
Iteration: 14, Func. Count: 183, Neg. LLF: 118.41077712530729
Iteration: 15, Func. Count: 196, Neg. LLF: 117.88808927861382
Iteration: 16, Func. Count: 209, Neg. LLF: 117.79214979894653
Iteration: 17, Func. Count: 221, Neg. LLF: 117.73715783836253
Iteration: 18, Func. Count: 233, Neg. LLF: 117.62244748668853
Iteration: 19, Func. Count: 245, Neg. LLF: 118.49630492595253
Iteration: 20, Func. Count: 258, Neg. LLF: 117.96366823750608
Iteration: 21, Func. Count: 271, Neg. LLF: 117.55246128441996
Iteration: 22, Func. Count: 283, Neg. LLF: 117.55210321308722
Iteration: 23, Func. Count: 295, Neg. LLF: 117.55208122229376
Iteration: 24, Func. Count: 307, Neg. LLF: 117.55207460520414
Iteration: 25, Func. Count: 318, Neg. LLF: 117.55207462976273
Optimization terminated successfully (Exit mode 0)
Current function value: 117.55207460520414
Iterations: 25
Function evaluations: 318
Gradient evaluations: 25
Iteration: 1, Func. Count: 14, Neg. LLF: 119.10997318456363
Iteration: 2, Func. Count: 27, Neg. LLF: 119.29056912231279
Iteration: 3, Func. Count: 43, Neg. LLF: 120.70276415057583
Iteration: 4, Func. Count: 57, Neg. LLF: 118.27303872328855
Iteration: 5, Func. Count: 70, Neg. LLF: 119.1006067492748
Iteration: 6, Func. Count: 84, Neg. LLF: 118.4409476571814
Iteration: 7, Func. Count: 98, Neg. LLF: 118.101399426741
Iteration: 8, Func. Count: 112, Neg. LLF: 118.025240078525
Iteration: 9, Func. Count: 125, Neg. LLF: 117.99234700139253
Iteration: 10, Func. Count: 138, Neg. LLF: 117.87140396260406
Iteration: 11, Func. Count: 151, Neg. LLF: 117.65898672792567
Iteration: 12, Func. Count: 164, Neg. LLF: 118.11735723923498
Iteration: 13, Func. Count: 178, Neg. LLF: 117.57176877940752
Iteration: 14, Func. Count: 191, Neg. LLF: 117.5557505833964
Iteration: 15, Func. Count: 204, Neg. LLF: 117.55332865543176
Iteration: 16, Func. Count: 217, Neg. LLF: 117.55211123320142
Iteration: 17, Func. Count: 230, Neg. LLF: 117.55207562869137
Iteration: 18, Func. Count: 243, Neg. LLF: 117.55207456301117
Iteration: 19, Func. Count: 255, Neg. LLF: 117.55207472058774
Optimization terminated successfully (Exit mode 0)
Current function value: 117.55207456301117
Iterations: 19
Function evaluations: 255
Gradient evaluations: 19
Iteration: 1, Func. Count: 11, Neg. LLF: 119.6726043542839
Iteration: 2, Func. Count: 22, Neg. LLF: 129.46053734092607
Iteration: 3, Func. Count: 33, Neg. LLF: 119.49184433987325
Iteration: 4, Func. Count: 44, Neg. LLF: 118.34071662139654
Iteration: 5, Func. Count: 54, Neg. LLF: 120.71072882591004
Iteration: 6, Func. Count: 65, Neg. LLF: 118.17844432923147
Iteration: 7, Func. Count: 75, Neg. LLF: 118.2374776245632
Iteration: 8, Func. Count: 86, Neg. LLF: 118.13548249352029
Iteration: 9, Func. Count: 96, Neg. LLF: 118.09502517715781
Iteration: 10, Func. Count: 106, Neg. LLF: 118.04864654887255
Iteration: 11, Func. Count: 116, Neg. LLF: 118.02878101116946
Iteration: 12, Func. Count: 126, Neg. LLF: 117.99540727928138
Iteration: 13, Func. Count: 136, Neg. LLF: 117.75529967234624
Iteration: 14, Func. Count: 146, Neg. LLF: 117.72086004348566
Iteration: 15, Func. Count: 156, Neg. LLF: 117.88446286670015
Iteration: 16, Func. Count: 167, Neg. LLF: 117.59510811345667
Iteration: 17, Func. Count: 177, Neg. LLF: 117.60747872316506
Iteration: 18, Func. Count: 188, Neg. LLF: 117.55344096611525
Iteration: 19, Func. Count: 198, Neg. LLF: 117.55245705736888
Iteration: 20, Func. Count: 208, Neg. LLF: 117.55208280507038
Iteration: 21, Func. Count: 218, Neg. LLF: 117.55207534630074
Iteration: 22, Func. Count: 228, Neg. LLF: 117.55207452408604
Optimization terminated successfully (Exit mode 0)
Current function value: 117.55207452408604
Iterations: 22
Function evaluations: 228
Gradient evaluations: 22
Iteration: 1, Func. Count: 12, Neg. LLF: 119.28741068865122
Iteration: 2, Func. Count: 23, Neg. LLF: 121.69203021653986
Iteration: 3, Func. Count: 36, Neg. LLF: 125.58001680671848
Iteration: 4, Func. Count: 49, Neg. LLF: 118.61190982897487
Iteration: 5, Func. Count: 60, Neg. LLF: 129.24133199688623
Iteration: 6, Func. Count: 72, Neg. LLF: 118.61933039726054
Iteration: 7, Func. Count: 84, Neg. LLF: 118.2616809533261
Iteration: 8, Func. Count: 96, Neg. LLF: 118.12713772676386
Iteration: 9, Func. Count: 107, Neg. LLF: 118.10514407162204
Iteration: 10, Func. Count: 118, Neg. LLF: 118.06881586968834
Iteration: 11, Func. Count: 129, Neg. LLF: 117.86045802887436
Iteration: 12, Func. Count: 140, Neg. LLF: 129.00755408582202
Iteration: 13, Func. Count: 152, Neg. LLF: 119.58812046040228
Iteration: 14, Func. Count: 164, Neg. LLF: 117.69857353261936
Iteration: 15, Func. Count: 176, Neg. LLF: 117.62490287355838
Iteration: 16, Func. Count: 188, Neg. LLF: 117.55458064102683
Iteration: 17, Func. Count: 199, Neg. LLF: 117.55215641998457
Iteration: 18, Func. Count: 210, Neg. LLF: 117.55209973996166
Iteration: 19, Func. Count: 221, Neg. LLF: 117.55207466527662
Iteration: 20, Func. Count: 231, Neg. LLF: 117.55207471486266
Optimization terminated successfully (Exit mode 0)
Current function value: 117.55207466527662
Iterations: 20
Function evaluations: 231
Gradient evaluations: 20
Iteration: 1, Func. Count: 13, Neg. LLF: 119.48396234794522
Iteration: 2, Func. Count: 25, Neg. LLF: 127.83099064087958
Iteration: 3, Func. Count: 38, Neg. LLF: 126.90785356746436
Iteration: 4, Func. Count: 52, Neg. LLF: 118.4014027423263
Iteration: 5, Func. Count: 64, Neg. LLF: 131.16405968388176
Iteration: 6, Func. Count: 77, Neg. LLF: 118.16242687604128
Iteration: 7, Func. Count: 89, Neg. LLF: 118.03365420627782
Iteration: 8, Func. Count: 101, Neg. LLF: 117.88256536361308
Iteration: 9, Func. Count: 113, Neg. LLF: 129.15565288878204
Iteration: 10, Func. Count: 126, Neg. LLF: 129.61630011732632
Iteration: 11, Func. Count: 139, Neg. LLF: 130.83890584346628
Iteration: 12, Func. Count: 152, Neg. LLF: 128.42888161163478
Iteration: 13, Func. Count: 165, Neg. LLF: 117.783357238023
Iteration: 14, Func. Count: 178, Neg. LLF: 127.97694777230146
Iteration: 15, Func. Count: 191, Neg. LLF: 117.55260280233216
Iteration: 16, Func. Count: 203, Neg. LLF: 117.55219075452572
Iteration: 17, Func. Count: 215, Neg. LLF: 117.55209397040491
Iteration: 18, Func. Count: 227, Neg. LLF: 117.55207466707786
Iteration: 19, Func. Count: 238, Neg. LLF: 117.55207476907054
Optimization terminated successfully (Exit mode 0)
Current function value: 117.55207466707786
Iterations: 19
Function evaluations: 238
Gradient evaluations: 19
Iteration: 1, Func. Count: 14, Neg. LLF: 119.59700371241047
Iteration: 2, Func. Count: 27, Neg. LLF: 132.4880290081794
Iteration: 3, Func. Count: 41, Neg. LLF: 124.74927660022323
Iteration: 4, Func. Count: 56, Neg. LLF: 118.68948953847841
Iteration: 5, Func. Count: 69, Neg. LLF: 130.6382827334995
Iteration: 6, Func. Count: 83, Neg. LLF: 119.06788167268436
Iteration: 7, Func. Count: 97, Neg. LLF: 118.06675723001298
Iteration: 8, Func. Count: 110, Neg. LLF: 117.95153316924808
Iteration: 9, Func. Count: 123, Neg. LLF: 128.5631569328403
Iteration: 10, Func. Count: 137, Neg. LLF: 129.2168755500876
Iteration: 11, Func. Count: 151, Neg. LLF: 129.08502318272252
Iteration: 12, Func. Count: 165, Neg. LLF: 120.52903906614783
Iteration: 13, Func. Count: 179, Neg. LLF: 117.76359603403088
Iteration: 14, Func. Count: 193, Neg. LLF: 128.794283597388
Iteration: 15, Func. Count: 207, Neg. LLF: 117.595124402165
Iteration: 16, Func. Count: 221, Neg. LLF: 117.56879796090354
Iteration: 17, Func. Count: 234, Neg. LLF: 117.55618151166784
Iteration: 18, Func. Count: 247, Neg. LLF: 117.55228157503825
Iteration: 19, Func. Count: 260, Neg. LLF: 117.55208146632467
Iteration: 20, Func. Count: 273, Neg. LLF: 117.55207463620316
Iteration: 21, Func. Count: 285, Neg. LLF: 117.5520746607402
Optimization terminated successfully (Exit mode 0)
Current function value: 117.55207463620316
Iterations: 21
Function evaluations: 285
Gradient evaluations: 21
Iteration: 1, Func. Count: 15, Neg. LLF: 119.6191864680902
Iteration: 2, Func. Count: 29, Neg. LLF: 133.9186278420423
Iteration: 3, Func. Count: 44, Neg. LLF: 124.04443424207258
Iteration: 4, Func. Count: 60, Neg. LLF: 118.93181383489396
Iteration: 5, Func. Count: 75, Neg. LLF: 130.69001664229012
Iteration: 6, Func. Count: 90, Neg. LLF: 131.1003072854456
Iteration: 7, Func. Count: 105, Neg. LLF: 129.34599759365418
Iteration: 8, Func. Count: 120, Neg. LLF: 121.33717347342424
Iteration: 9, Func. Count: 135, Neg. LLF: 127.80872013013094
Iteration: 10, Func. Count: 150, Neg. LLF: 127.80550940597216
Iteration: 11, Func. Count: 165, Neg. LLF: 128.0391549718406
Iteration: 12, Func. Count: 180, Neg. LLF: 128.4609560473495
Iteration: 13, Func. Count: 195, Neg. LLF: 128.93479171632498
Iteration: 14, Func. Count: 210, Neg. LLF: 129.12251287182204
Iteration: 15, Func. Count: 225, Neg. LLF: 122.09337566590891
Iteration: 16, Func. Count: 240, Neg. LLF: 117.90785185108426
Iteration: 17, Func. Count: 255, Neg. LLF: 117.7240671415644
Iteration: 18, Func. Count: 269, Neg. LLF: 117.72756856917364
Iteration: 19, Func. Count: 284, Neg. LLF: 117.6480301838203
Iteration: 20, Func. Count: 298, Neg. LLF: 117.56217336554734
Iteration: 21, Func. Count: 312, Neg. LLF: 117.55295188347176
Iteration: 22, Func. Count: 326, Neg. LLF: 117.55212729028847
Iteration: 23, Func. Count: 340, Neg. LLF: 117.55207494655315
Iteration: 24, Func. Count: 354, Neg. LLF: 117.55207454367431
Optimization terminated successfully (Exit mode 0)
Current function value: 117.55207454367431
Iterations: 24
Function evaluations: 354
Gradient evaluations: 24
Iteration: 1, Func. Count: 8, Neg. LLF: 123.24052676429217
Iteration: 2, Func. Count: 16, Neg. LLF: 122.24961919098776
Iteration: 3, Func. Count: 24, Neg. LLF: 120.83377674025841
Iteration: 4, Func. Count: 31, Neg. LLF: 127.09562117922776
Iteration: 5, Func. Count: 39, Neg. LLF: 123.29269334328684
Iteration: 6, Func. Count: 48, Neg. LLF: 120.31514033559671
Iteration: 7, Func. Count: 55, Neg. LLF: 140.16100073609127
Iteration: 8, Func. Count: 63, Neg. LLF: 120.71087818294606
Iteration: 9, Func. Count: 71, Neg. LLF: 120.05322435440405
Iteration: 10, Func. Count: 78, Neg. LLF: 120.0524385448763
Iteration: 11, Func. Count: 85, Neg. LLF: 120.05237146746128
Iteration: 12, Func. Count: 92, Neg. LLF: 120.05233980018946
Iteration: 13, Func. Count: 99, Neg. LLF: 120.05233492306134
Iteration: 14, Func. Count: 105, Neg. LLF: 120.05233504312615
Optimization terminated successfully (Exit mode 0)
Current function value: 120.05233492306134
Iterations: 14
Function evaluations: 105
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 122.83552183574646
Iteration: 2, Func. Count: 18, Neg. LLF: 126.80784839702133
Iteration: 3, Func. Count: 27, Neg. LLF: 122.44505748197844
Iteration: 4, Func. Count: 36, Neg. LLF: 127.46355027889472
Iteration: 5, Func. Count: 45, Neg. LLF: 143.5448337830901
Iteration: 6, Func. Count: 54, Neg. LLF: 148.05384029498157
Iteration: 7, Func. Count: 63, Neg. LLF: 142.25622636254462
Iteration: 8, Func. Count: 72, Neg. LLF: 130.58790979021765
Iteration: 9, Func. Count: 81, Neg. LLF: 125.99633656051212
Iteration: 10, Func. Count: 90, Neg. LLF: 120.57206968584981
Iteration: 11, Func. Count: 99, Neg. LLF: 120.24443437943793
Iteration: 12, Func. Count: 108, Neg. LLF: 120.07288445162425
Iteration: 13, Func. Count: 116, Neg. LLF: 120.06566529632656
Iteration: 14, Func. Count: 124, Neg. LLF: 120.0579537919756
Iteration: 15, Func. Count: 132, Neg. LLF: 120.08787289930629
Iteration: 16, Func. Count: 141, Neg. LLF: 120.0526906907571
Iteration: 17, Func. Count: 149, Neg. LLF: 120.05233810337485
Iteration: 18, Func. Count: 157, Neg. LLF: 120.05233547802358
Iteration: 19, Func. Count: 165, Neg. LLF: 120.05233475683833
Optimization terminated successfully (Exit mode 0)
Current function value: 120.05233475683833
Iterations: 19
Function evaluations: 165
Gradient evaluations: 19
Iteration: 1, Func. Count: 10, Neg. LLF: 123.06360216026549
Iteration: 2, Func. Count: 20, Neg. LLF: 127.40766638503072
Iteration: 3, Func. Count: 30, Neg. LLF: 122.23018594429021
Iteration: 4, Func. Count: 40, Neg. LLF: 154.5771266828703
Iteration: 5, Func. Count: 50, Neg. LLF: 120.78556325675785
Iteration: 6, Func. Count: 59, Neg. LLF: 128.23920038315143
Iteration: 7, Func. Count: 69, Neg. LLF: 122.9043211303239
Iteration: 8, Func. Count: 80, Neg. LLF: 120.35757980041886
Iteration: 9, Func. Count: 90, Neg. LLF: 120.07356701621917
Iteration: 10, Func. Count: 99, Neg. LLF: 120.06551022811989
Iteration: 11, Func. Count: 108, Neg. LLF: 120.06586620525692
Iteration: 12, Func. Count: 118, Neg. LLF: 120.05600440619014
Iteration: 13, Func. Count: 127, Neg. LLF: 120.05305771236034
Iteration: 14, Func. Count: 136, Neg. LLF: 120.05234752772076
Iteration: 15, Func. Count: 145, Neg. LLF: 120.05233850498162
Iteration: 16, Func. Count: 154, Neg. LLF: 120.05233556269748
Iteration: 17, Func. Count: 163, Neg. LLF: 120.0523348460651
Optimization terminated successfully (Exit mode 0)
Current function value: 120.0523348460651
Iterations: 17
Function evaluations: 163
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 123.19963134941439
Iteration: 2, Func. Count: 22, Neg. LLF: 127.41651249103802
Iteration: 3, Func. Count: 33, Neg. LLF: 122.18844880786914
Iteration: 4, Func. Count: 44, Neg. LLF: 423.2259634643182
Iteration: 5, Func. Count: 55, Neg. LLF: 120.66768779661787
Iteration: 6, Func. Count: 65, Neg. LLF: 127.94945990743963
Iteration: 7, Func. Count: 76, Neg. LLF: 127.09502228937872
Iteration: 8, Func. Count: 87, Neg. LLF: 126.53414451198145
Iteration: 9, Func. Count: 98, Neg. LLF: 120.48391537779949
Iteration: 10, Func. Count: 109, Neg. LLF: 120.07547618374491
Iteration: 11, Func. Count: 119, Neg. LLF: 120.06267528543013
Iteration: 12, Func. Count: 129, Neg. LLF: 120.06129649870584
Iteration: 13, Func. Count: 139, Neg. LLF: 120.05746106405648
Iteration: 14, Func. Count: 149, Neg. LLF: 120.05636901008695
Iteration: 15, Func. Count: 159, Neg. LLF: 120.0532765691357
Iteration: 16, Func. Count: 169, Neg. LLF: 120.05259027347483
Iteration: 17, Func. Count: 179, Neg. LLF: 120.05237685410546
Iteration: 18, Func. Count: 189, Neg. LLF: 120.0523359970104
Iteration: 19, Func. Count: 199, Neg. LLF: 120.05233468777486
Iteration: 20, Func. Count: 208, Neg. LLF: 120.05233481735843
Optimization terminated successfully (Exit mode 0)
Current function value: 120.05233468777486
Iterations: 20
Function evaluations: 208
Gradient evaluations: 20
Iteration: 1, Func. Count: 12, Neg. LLF: 123.21099786857079
Iteration: 2, Func. Count: 24, Neg. LLF: 126.11630361904581
Iteration: 3, Func. Count: 36, Neg. LLF: 122.26209703496494
Iteration: 4, Func. Count: 48, Neg. LLF: 707.740246995923
Iteration: 5, Func. Count: 60, Neg. LLF: 120.79368880133862
Iteration: 6, Func. Count: 71, Neg. LLF: 128.54805175943827
Iteration: 7, Func. Count: 83, Neg. LLF: 126.86077564321096
Iteration: 8, Func. Count: 95, Neg. LLF: 124.66376510599385
Iteration: 9, Func. Count: 107, Neg. LLF: 125.17446709039139
Iteration: 10, Func. Count: 119, Neg. LLF: 121.09864100752613
Iteration: 11, Func. Count: 131, Neg. LLF: 120.17688564840455
Iteration: 12, Func. Count: 143, Neg. LLF: 120.08215014834337
Iteration: 13, Func. Count: 154, Neg. LLF: 120.06263875543488
Iteration: 14, Func. Count: 165, Neg. LLF: 120.05372692317569
Iteration: 15, Func. Count: 176, Neg. LLF: 120.05258115115222
Iteration: 16, Func. Count: 187, Neg. LLF: 120.0523927726483
Iteration: 17, Func. Count: 198, Neg. LLF: 120.05234590953306
Iteration: 18, Func. Count: 209, Neg. LLF: 120.05233512274762
Iteration: 19, Func. Count: 219, Neg. LLF: 120.05233526388609
Optimization terminated successfully (Exit mode 0)
Current function value: 120.05233512274762
Iterations: 19
Function evaluations: 219
Gradient evaluations: 19
Iteration: 1, Func. Count: 9, Neg. LLF: 119.88979514589874
Iteration: 2, Func. Count: 18, Neg. LLF: 131.8006722051467
Iteration: 3, Func. Count: 27, Neg. LLF: 118.41051731999427
Iteration: 4, Func. Count: 35, Neg. LLF: 164.123834602568
Iteration: 5, Func. Count: 44, Neg. LLF: 118.30685869191412
Iteration: 6, Func. Count: 52, Neg. LLF: 118.28772266516556
Iteration: 7, Func. Count: 60, Neg. LLF: 118.28694162005687
Iteration: 8, Func. Count: 68, Neg. LLF: 118.28687454158084
Iteration: 9, Func. Count: 76, Neg. LLF: 118.28686752628049
Iteration: 10, Func. Count: 83, Neg. LLF: 118.28686752628317
Optimization terminated successfully (Exit mode 0)
Current function value: 118.28686752628049
Iterations: 10
Function evaluations: 83
Gradient evaluations: 10
Iteration: 1, Func. Count: 10, Neg. LLF: 119.44529886718334
Iteration: 2, Func. Count: 19, Neg. LLF: 123.1013304859231
Iteration: 3, Func. Count: 29, Neg. LLF: 119.8026238999598
Iteration: 4, Func. Count: 39, Neg. LLF: 128.9426731767667
Iteration: 5, Func. Count: 49, Neg. LLF: 130.9237933955855
Iteration: 6, Func. Count: 59, Neg. LLF: 124.26732762581793
Iteration: 7, Func. Count: 69, Neg. LLF: 118.89082465736793
Iteration: 8, Func. Count: 79, Neg. LLF: 118.32641698864929
Iteration: 9, Func. Count: 88, Neg. LLF: 118.29848031571849
Iteration: 10, Func. Count: 97, Neg. LLF: 118.28887114277624
Iteration: 11, Func. Count: 106, Neg. LLF: 118.28803312434415
Iteration: 12, Func. Count: 115, Neg. LLF: 118.28687331220023
Iteration: 13, Func. Count: 124, Neg. LLF: 118.28686770660573
Iteration: 14, Func. Count: 132, Neg. LLF: 118.28686785849294
Optimization terminated successfully (Exit mode 0)
Current function value: 118.28686770660573
Iterations: 14
Function evaluations: 132
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 119.68567183760756
Iteration: 2, Func. Count: 21, Neg. LLF: 129.12686278792827
Iteration: 3, Func. Count: 32, Neg. LLF: 120.15232731247113
Iteration: 4, Func. Count: 44, Neg. LLF: 129.56954109772795
Iteration: 5, Func. Count: 55, Neg. LLF: 131.91294315630523
Iteration: 6, Func. Count: 66, Neg. LLF: 128.05984283978546
Iteration: 7, Func. Count: 77, Neg. LLF: 119.00242579034074
Iteration: 8, Func. Count: 88, Neg. LLF: 118.33839383024674
Iteration: 9, Func. Count: 99, Neg. LLF: 118.28784014923464
Iteration: 10, Func. Count: 109, Neg. LLF: 118.28693365337023
Iteration: 11, Func. Count: 119, Neg. LLF: 118.286876372819
Iteration: 12, Func. Count: 129, Neg. LLF: 118.28686759238673
Iteration: 13, Func. Count: 138, Neg. LLF: 118.28686761600598
Optimization terminated successfully (Exit mode 0)
Current function value: 118.28686759238673
Iterations: 13
Function evaluations: 138
Gradient evaluations: 13
Iteration: 1, Func. Count: 12, Neg. LLF: 120.04253904946911
Iteration: 2, Func. Count: 23, Neg. LLF: 120.41589141281656
Iteration: 3, Func. Count: 35, Neg. LLF: 128.54250978496265
Iteration: 4, Func. Count: 47, Neg. LLF: 132.05831008608942
Iteration: 5, Func. Count: 59, Neg. LLF: 134.34481443344052
Iteration: 6, Func. Count: 71, Neg. LLF: 131.64424465787252
Iteration: 7, Func. Count: 83, Neg. LLF: 118.35233519056885
Iteration: 8, Func. Count: 94, Neg. LLF: 118.37959131671693
Iteration: 9, Func. Count: 106, Neg. LLF: 118.30624386330872
Iteration: 10, Func. Count: 118, Neg. LLF: 118.28795572578589
Iteration: 11, Func. Count: 129, Neg. LLF: 118.28688877203074
Iteration: 12, Func. Count: 140, Neg. LLF: 118.28686889970047
Iteration: 13, Func. Count: 151, Neg. LLF: 118.28686739236304
Iteration: 14, Func. Count: 161, Neg. LLF: 118.28686744318483
Optimization terminated successfully (Exit mode 0)
Current function value: 118.28686739236304
Iterations: 14
Function evaluations: 161
Gradient evaluations: 14
Iteration: 1, Func. Count: 13, Neg. LLF: 120.05511615900835
Iteration: 2, Func. Count: 25, Neg. LLF: 121.28359816191464
Iteration: 3, Func. Count: 38, Neg. LLF: 128.85976999481346
Iteration: 4, Func. Count: 51, Neg. LLF: 132.38476661376492
Iteration: 5, Func. Count: 64, Neg. LLF: 131.42642713912107
Iteration: 6, Func. Count: 77, Neg. LLF: 118.99529422242448
Iteration: 7, Func. Count: 90, Neg. LLF: 118.30843452840308
Iteration: 8, Func. Count: 102, Neg. LLF: 118.30166292488214
Iteration: 9, Func. Count: 115, Neg. LLF: 118.28773024883101
Iteration: 10, Func. Count: 127, Neg. LLF: 118.28690688989558
Iteration: 11, Func. Count: 139, Neg. LLF: 118.28686749707329
Iteration: 12, Func. Count: 150, Neg. LLF: 118.28686759846298
Optimization terminated successfully (Exit mode 0)
Current function value: 118.28686749707329
Iterations: 12
Function evaluations: 150
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 119.50193135791754
Iteration: 2, Func. Count: 20, Neg. LLF: 128.34634738521038
Iteration: 3, Func. Count: 30, Neg. LLF: 118.24269311671665
Iteration: 4, Func. Count: 39, Neg. LLF: 118.198962902265
Iteration: 5, Func. Count: 48, Neg. LLF: 123.3141306889448
Iteration: 6, Func. Count: 58, Neg. LLF: 126.83954524123507
Iteration: 7, Func. Count: 68, Neg. LLF: 126.77585390659763
Iteration: 8, Func. Count: 78, Neg. LLF: 122.62836618565339
Iteration: 9, Func. Count: 88, Neg. LLF: 130.3626274925636
Iteration: 10, Func. Count: 98, Neg. LLF: 129.29455616286896
Iteration: 11, Func. Count: 108, Neg. LLF: 130.38570654618596
Iteration: 12, Func. Count: 118, Neg. LLF: 129.35262098788468
Iteration: 13, Func. Count: 128, Neg. LLF: 117.81983411574933
Iteration: 14, Func. Count: 138, Neg. LLF: 117.60488118599845
Iteration: 15, Func. Count: 147, Neg. LLF: 126.03361101921496
Iteration: 16, Func. Count: 158, Neg. LLF: 117.60371351546895
Iteration: 17, Func. Count: 168, Neg. LLF: 117.60136884604695
Iteration: 18, Func. Count: 178, Neg. LLF: 117.60093235926726
Iteration: 19, Func. Count: 187, Neg. LLF: 117.60092863025642
Iteration: 20, Func. Count: 196, Neg. LLF: 117.60092810992293
Optimization terminated successfully (Exit mode 0)
Current function value: 117.60092810992293
Iterations: 21
Function evaluations: 196
Gradient evaluations: 20
Iteration: 1, Func. Count: 11, Neg. LLF: 119.258488391695
Iteration: 2, Func. Count: 21, Neg. LLF: 120.54255611614552
Iteration: 3, Func. Count: 33, Neg. LLF: 118.63277990444456
Iteration: 4, Func. Count: 43, Neg. LLF: 128.37036508004826
Iteration: 5, Func. Count: 54, Neg. LLF: 119.2649056492789
Iteration: 6, Func. Count: 65, Neg. LLF: 118.12941358360858
Iteration: 7, Func. Count: 75, Neg. LLF: 118.07203584859141
Iteration: 8, Func. Count: 85, Neg. LLF: 118.00677292855357
Iteration: 9, Func. Count: 95, Neg. LLF: 117.89734611776034
Iteration: 10, Func. Count: 105, Neg. LLF: 122.43765864588666
Iteration: 11, Func. Count: 116, Neg. LLF: 117.81451393679579
Iteration: 12, Func. Count: 126, Neg. LLF: 117.72110444313455
Iteration: 13, Func. Count: 136, Neg. LLF: 121.85156816027309
Iteration: 14, Func. Count: 148, Neg. LLF: 117.70749439357351
Iteration: 15, Func. Count: 159, Neg. LLF: 117.60355319181667
Iteration: 16, Func. Count: 169, Neg. LLF: 117.60326281376727
Iteration: 17, Func. Count: 180, Neg. LLF: 117.6018279219894
Iteration: 18, Func. Count: 191, Neg. LLF: 117.60094867731102
Iteration: 19, Func. Count: 201, Neg. LLF: 117.60093050030454
Iteration: 20, Func. Count: 211, Neg. LLF: 117.60092816755969
Iteration: 21, Func. Count: 220, Neg. LLF: 117.60092817722432
Optimization terminated successfully (Exit mode 0)
Current function value: 117.60092816755969
Iterations: 21
Function evaluations: 220
Gradient evaluations: 21
Iteration: 1, Func. Count: 12, Neg. LLF: 119.48076115057187
Iteration: 2, Func. Count: 23, Neg. LLF: 124.91098753861436
Iteration: 3, Func. Count: 35, Neg. LLF: 120.1041744165376
Iteration: 4, Func. Count: 47, Neg. LLF: 119.65307383710679
Iteration: 5, Func. Count: 59, Neg. LLF: 130.00161626701512
Iteration: 6, Func. Count: 71, Neg. LLF: 118.8481646340618
Iteration: 7, Func. Count: 83, Neg. LLF: 118.66994900054631
Iteration: 8, Func. Count: 95, Neg. LLF: 128.20755189150245
Iteration: 9, Func. Count: 107, Neg. LLF: 128.50471938843143
Iteration: 10, Func. Count: 119, Neg. LLF: 129.07363332975842
Iteration: 11, Func. Count: 131, Neg. LLF: 129.75845189725788
Iteration: 12, Func. Count: 143, Neg. LLF: 119.23954609931009
Iteration: 13, Func. Count: 155, Neg. LLF: 117.8364060234389
Iteration: 14, Func. Count: 167, Neg. LLF: 117.72829822318606
Iteration: 15, Func. Count: 178, Neg. LLF: 117.66868325972314
Iteration: 16, Func. Count: 189, Neg. LLF: 117.6068813163076
Iteration: 17, Func. Count: 200, Neg. LLF: 117.79963471192512
Iteration: 18, Func. Count: 213, Neg. LLF: 117.6020342596266
Iteration: 19, Func. Count: 224, Neg. LLF: 117.60094515401005
Iteration: 20, Func. Count: 235, Neg. LLF: 117.60092988290127
Iteration: 21, Func. Count: 246, Neg. LLF: 117.60092811007621
Iteration: 22, Func. Count: 256, Neg. LLF: 117.60092821448774
Optimization terminated successfully (Exit mode 0)
Current function value: 117.60092811007621
Iterations: 22
Function evaluations: 256
Gradient evaluations: 22
Iteration: 1, Func. Count: 13, Neg. LLF: 119.60056001949465
Iteration: 2, Func. Count: 25, Neg. LLF: 127.69057230849144
Iteration: 3, Func. Count: 38, Neg. LLF: 119.82604481412031
Iteration: 4, Func. Count: 51, Neg. LLF: 119.39312766803738
Iteration: 5, Func. Count: 64, Neg. LLF: 130.82512604883036
Iteration: 6, Func. Count: 77, Neg. LLF: 118.21720180737655
Iteration: 7, Func. Count: 89, Neg. LLF: 118.10494833065823
Iteration: 8, Func. Count: 101, Neg. LLF: 118.02153716689492
Iteration: 9, Func. Count: 113, Neg. LLF: 128.7921972823103
Iteration: 10, Func. Count: 126, Neg. LLF: 129.36608244972197
Iteration: 11, Func. Count: 139, Neg. LLF: 129.57284830673035
Iteration: 12, Func. Count: 152, Neg. LLF: 131.78606247233137
Iteration: 13, Func. Count: 165, Neg. LLF: 129.47759908769493
Iteration: 14, Func. Count: 178, Neg. LLF: 117.97524624726816
Iteration: 15, Func. Count: 191, Neg. LLF: 128.4809982206133
Iteration: 16, Func. Count: 204, Neg. LLF: 117.61774762167224
Iteration: 17, Func. Count: 216, Neg. LLF: 117.60291367485884
Iteration: 18, Func. Count: 228, Neg. LLF: 117.60154566330375
Iteration: 19, Func. Count: 240, Neg. LLF: 117.60093720501077
Iteration: 20, Func. Count: 252, Neg. LLF: 117.60092978484236
Iteration: 21, Func. Count: 264, Neg. LLF: 117.6009281828977
Iteration: 22, Func. Count: 275, Neg. LLF: 117.60092820192733
Optimization terminated successfully (Exit mode 0)
Current function value: 117.6009281828977
Iterations: 22
Function evaluations: 275
Gradient evaluations: 22
Iteration: 1, Func. Count: 14, Neg. LLF: 119.61986371155528
Iteration: 2, Func. Count: 27, Neg. LLF: 128.43383591248016
Iteration: 3, Func. Count: 41, Neg. LLF: 119.7723957054777
Iteration: 4, Func. Count: 55, Neg. LLF: 119.2194518514634
Iteration: 5, Func. Count: 69, Neg. LLF: 121.50969953501642
Iteration: 6, Func. Count: 83, Neg. LLF: 118.18563418605683
Iteration: 7, Func. Count: 96, Neg. LLF: 118.09605260175768
Iteration: 8, Func. Count: 109, Neg. LLF: 118.00662265929023
Iteration: 9, Func. Count: 122, Neg. LLF: 129.20443321969233
Iteration: 10, Func. Count: 136, Neg. LLF: 129.97873141428232
Iteration: 11, Func. Count: 150, Neg. LLF: 129.60800825976372
Iteration: 12, Func. Count: 164, Neg. LLF: 130.78563775225408
Iteration: 13, Func. Count: 178, Neg. LLF: 129.10786593610408
Iteration: 14, Func. Count: 192, Neg. LLF: 118.1274277845201
Iteration: 15, Func. Count: 206, Neg. LLF: 117.61917873525543
Iteration: 16, Func. Count: 219, Neg. LLF: 117.60334351260836
Iteration: 17, Func. Count: 232, Neg. LLF: 117.60166058710851
Iteration: 18, Func. Count: 245, Neg. LLF: 117.60226097163832
Iteration: 19, Func. Count: 259, Neg. LLF: 117.60200173700504
Iteration: 20, Func. Count: 273, Neg. LLF: 117.60093758636427
Iteration: 21, Func. Count: 286, Neg. LLF: 117.6009290812465
Iteration: 22, Func. Count: 299, Neg. LLF: 117.60092811280556
Optimization terminated successfully (Exit mode 0)
Current function value: 117.60092811280556
Iterations: 22
Function evaluations: 299
Gradient evaluations: 22
Iteration: 1, Func. Count: 11, Neg. LLF: 120.41306078489109
Iteration: 2, Func. Count: 22, Neg. LLF: 140.12054916927065
Iteration: 3, Func. Count: 33, Neg. LLF: 119.86273604114153
Iteration: 4, Func. Count: 44, Neg. LLF: 118.33697911919865
Iteration: 5, Func. Count: 54, Neg. LLF: 120.68069001973168
Iteration: 6, Func. Count: 65, Neg. LLF: 118.20487269680682
Iteration: 7, Func. Count: 75, Neg. LLF: 118.23737104620429
Iteration: 8, Func. Count: 86, Neg. LLF: 118.14704879869038
Iteration: 9, Func. Count: 96, Neg. LLF: 118.11003087001998
Iteration: 10, Func. Count: 106, Neg. LLF: 118.05699526648091
Iteration: 11, Func. Count: 116, Neg. LLF: 118.03908794716443
Iteration: 12, Func. Count: 126, Neg. LLF: 117.97104603838581
Iteration: 13, Func. Count: 136, Neg. LLF: 117.90198917396228
Iteration: 14, Func. Count: 146, Neg. LLF: 117.84511706027058
Iteration: 15, Func. Count: 156, Neg. LLF: 117.62128103245696
Iteration: 16, Func. Count: 166, Neg. LLF: 117.62510696458314
Iteration: 17, Func. Count: 177, Neg. LLF: 117.55531055846669
Iteration: 18, Func. Count: 187, Neg. LLF: 117.5535690406741
Iteration: 19, Func. Count: 197, Neg. LLF: 117.55224842211808
Iteration: 20, Func. Count: 207, Neg. LLF: 117.55208879389643
Iteration: 21, Func. Count: 217, Neg. LLF: 117.55207463543009
Iteration: 22, Func. Count: 226, Neg. LLF: 117.55207457927126
Optimization terminated successfully (Exit mode 0)
Current function value: 117.55207463543009
Iterations: 22
Function evaluations: 226
Gradient evaluations: 22
Iteration: 1, Func. Count: 12, Neg. LLF: 119.69164418213701
Iteration: 2, Func. Count: 23, Neg. LLF: 136.6507557688012
Iteration: 3, Func. Count: 35, Neg. LLF: 122.6764521659917
Iteration: 4, Func. Count: 47, Neg. LLF: 119.53677294240708
Iteration: 5, Func. Count: 62, Neg. LLF: 118.28782664152183
Iteration: 6, Func. Count: 73, Neg. LLF: 118.19859311211795
Iteration: 7, Func. Count: 84, Neg. LLF: 118.11140395822089
Iteration: 8, Func. Count: 95, Neg. LLF: 118.08726609984924
Iteration: 9, Func. Count: 106, Neg. LLF: 118.06671188173877
Iteration: 10, Func. Count: 117, Neg. LLF: 118.03355628568106
Iteration: 11, Func. Count: 128, Neg. LLF: 117.69222168611326
Iteration: 12, Func. Count: 139, Neg. LLF: 130.4535069917596
Iteration: 13, Func. Count: 151, Neg. LLF: 117.5833919572696
Iteration: 14, Func. Count: 162, Neg. LLF: 117.63051313557388
Iteration: 15, Func. Count: 174, Neg. LLF: 117.55636692665247
Iteration: 16, Func. Count: 185, Neg. LLF: 117.55246687012347
Iteration: 17, Func. Count: 196, Neg. LLF: 117.5522069984839
Iteration: 18, Func. Count: 207, Neg. LLF: 117.55207571178839
Iteration: 19, Func. Count: 218, Neg. LLF: 117.55207465044283
Iteration: 20, Func. Count: 228, Neg. LLF: 117.55207469997086
Optimization terminated successfully (Exit mode 0)
Current function value: 117.55207465044283
Iterations: 20
Function evaluations: 228
Gradient evaluations: 20
Iteration: 1, Func. Count: 13, Neg. LLF: 119.98881364354358
Iteration: 2, Func. Count: 25, Neg. LLF: 149.4275008135243
Iteration: 3, Func. Count: 38, Neg. LLF: 122.42047831601187
Iteration: 4, Func. Count: 52, Neg. LLF: 118.88140999347004
Iteration: 5, Func. Count: 65, Neg. LLF: 128.1948377498995
Iteration: 6, Func. Count: 78, Neg. LLF: 129.77192602570634
Iteration: 7, Func. Count: 91, Neg. LLF: 129.75243061039598
Iteration: 8, Func. Count: 104, Neg. LLF: 129.67233339708437
Iteration: 9, Func. Count: 117, Neg. LLF: 129.61209042058155
Iteration: 10, Func. Count: 130, Neg. LLF: 129.5562374572816
Iteration: 11, Func. Count: 143, Neg. LLF: 129.4938203949447
Iteration: 12, Func. Count: 156, Neg. LLF: 120.84048979858052
Iteration: 13, Func. Count: 169, Neg. LLF: 118.45365043290384
Iteration: 14, Func. Count: 182, Neg. LLF: 117.96608257179076
Iteration: 15, Func. Count: 195, Neg. LLF: 117.85070553782546
Iteration: 16, Func. Count: 207, Neg. LLF: 117.82134101234831
Iteration: 17, Func. Count: 219, Neg. LLF: 117.65640986428993
Iteration: 18, Func. Count: 231, Neg. LLF: 117.582142982031
Iteration: 19, Func. Count: 243, Neg. LLF: 117.55429739711892
Iteration: 20, Func. Count: 255, Neg. LLF: 117.55557144677286
Iteration: 21, Func. Count: 268, Neg. LLF: 117.5524013223928
Iteration: 22, Func. Count: 280, Neg. LLF: 117.55207769282923
Iteration: 23, Func. Count: 292, Neg. LLF: 117.55207519513581
Iteration: 24, Func. Count: 304, Neg. LLF: 117.55207451681002
Optimization terminated successfully (Exit mode 0)
Current function value: 117.55207451681002
Iterations: 24
Function evaluations: 304
Gradient evaluations: 24
Iteration: 1, Func. Count: 14, Neg. LLF: 120.18625731364521
Iteration: 2, Func. Count: 27, Neg. LLF: 151.18854392508274
Iteration: 3, Func. Count: 41, Neg. LLF: 122.32458230426946
Iteration: 4, Func. Count: 56, Neg. LLF: 118.8427700266361
Iteration: 5, Func. Count: 70, Neg. LLF: 128.43085324200794
Iteration: 6, Func. Count: 84, Neg. LLF: 129.82542239707809
Iteration: 7, Func. Count: 98, Neg. LLF: 129.76772917046523
Iteration: 8, Func. Count: 112, Neg. LLF: 129.69109482926336
Iteration: 9, Func. Count: 126, Neg. LLF: 129.64416510525922
Iteration: 10, Func. Count: 140, Neg. LLF: 129.60036832261684
Iteration: 11, Func. Count: 154, Neg. LLF: 129.55150866161284
Iteration: 12, Func. Count: 168, Neg. LLF: 120.0497343704001
Iteration: 13, Func. Count: 182, Neg. LLF: 118.37928645339962
Iteration: 14, Func. Count: 196, Neg. LLF: 117.95268079501453
Iteration: 15, Func. Count: 210, Neg. LLF: 117.85137797640051
Iteration: 16, Func. Count: 223, Neg. LLF: 117.81803212184049
Iteration: 17, Func. Count: 236, Neg. LLF: 117.65958149600596
Iteration: 18, Func. Count: 249, Neg. LLF: 117.57083734207379
Iteration: 19, Func. Count: 262, Neg. LLF: 117.56377944361905
Iteration: 20, Func. Count: 275, Neg. LLF: 117.55222647917725
Iteration: 21, Func. Count: 288, Neg. LLF: 117.55208012498385
Iteration: 22, Func. Count: 301, Neg. LLF: 117.55207516606983
Iteration: 23, Func. Count: 313, Neg. LLF: 117.5520751906426
Optimization terminated successfully (Exit mode 0)
Current function value: 117.55207516606983
Iterations: 23
Function evaluations: 313
Gradient evaluations: 23
Iteration: 1, Func. Count: 15, Neg. LLF: 120.17411000243757
Iteration: 2, Func. Count: 29, Neg. LLF: 151.1675060198657
Iteration: 3, Func. Count: 44, Neg. LLF: 122.12706835839049
Iteration: 4, Func. Count: 60, Neg. LLF: 118.90162123766866
Iteration: 5, Func. Count: 75, Neg. LLF: 128.16950259495067
Iteration: 6, Func. Count: 90, Neg. LLF: 129.81273149889333
Iteration: 7, Func. Count: 105, Neg. LLF: 129.7823659347469
Iteration: 8, Func. Count: 120, Neg. LLF: 129.70348165708904
Iteration: 9, Func. Count: 135, Neg. LLF: 129.6437763837753
Iteration: 10, Func. Count: 150, Neg. LLF: 129.58774370082014
Iteration: 11, Func. Count: 165, Neg. LLF: 129.5273845427131
Iteration: 12, Func. Count: 180, Neg. LLF: 120.7117083109106
Iteration: 13, Func. Count: 195, Neg. LLF: 118.43595569845652
Iteration: 14, Func. Count: 210, Neg. LLF: 117.9616257016512
Iteration: 15, Func. Count: 225, Neg. LLF: 117.8491340891277
Iteration: 16, Func. Count: 239, Neg. LLF: 117.81959261197055
Iteration: 17, Func. Count: 253, Neg. LLF: 117.65168205013624
Iteration: 18, Func. Count: 267, Neg. LLF: 117.58307560675172
Iteration: 19, Func. Count: 281, Neg. LLF: 117.56553396018654
Iteration: 20, Func. Count: 295, Neg. LLF: 117.55248821590038
Iteration: 21, Func. Count: 309, Neg. LLF: 117.55209275585737
Iteration: 22, Func. Count: 323, Neg. LLF: 117.55207648824648
Iteration: 23, Func. Count: 337, Neg. LLF: 117.5520747618283
Iteration: 24, Func. Count: 350, Neg. LLF: 117.55207491937833
Optimization terminated successfully (Exit mode 0)
Current function value: 117.5520747618283
Iterations: 24
Function evaluations: 350
Gradient evaluations: 24
Iteration: 1, Func. Count: 12, Neg. LLF: 122.36125990660601
Iteration: 2, Func. Count: 24, Neg. LLF: 167.59046062631214
Iteration: 3, Func. Count: 36, Neg. LLF: 120.26160225921804
Iteration: 4, Func. Count: 48, Neg. LLF: 118.32970834429533
Iteration: 5, Func. Count: 59, Neg. LLF: 119.25769312423732
Iteration: 6, Func. Count: 71, Neg. LLF: 120.04309315502773
Iteration: 7, Func. Count: 84, Neg. LLF: 118.16352524653622
Iteration: 8, Func. Count: 95, Neg. LLF: 118.1504926005661
Iteration: 9, Func. Count: 106, Neg. LLF: 118.11394456151373
Iteration: 10, Func. Count: 117, Neg. LLF: 118.06329352358246
Iteration: 11, Func. Count: 128, Neg. LLF: 118.0376343731171
Iteration: 12, Func. Count: 139, Neg. LLF: 118.00294986009686
Iteration: 13, Func. Count: 150, Neg. LLF: 117.95741990016371
Iteration: 14, Func. Count: 161, Neg. LLF: 117.92263297482367
Iteration: 15, Func. Count: 172, Neg. LLF: 117.71904057300728
Iteration: 16, Func. Count: 183, Neg. LLF: 117.62476871547098
Iteration: 17, Func. Count: 194, Neg. LLF: 117.71796927934085
Iteration: 18, Func. Count: 206, Neg. LLF: 117.56074540597709
Iteration: 19, Func. Count: 218, Neg. LLF: 117.55220839661769
Iteration: 20, Func. Count: 229, Neg. LLF: 117.55210765088071
Iteration: 21, Func. Count: 240, Neg. LLF: 117.55207688561427
Iteration: 22, Func. Count: 251, Neg. LLF: 117.5520745643638
Iteration: 23, Func. Count: 261, Neg. LLF: 117.55207462576483
Optimization terminated successfully (Exit mode 0)
Current function value: 117.5520745643638
Iterations: 23
Function evaluations: 261
Gradient evaluations: 23
Iteration: 1, Func. Count: 13, Neg. LLF: 120.80815935725632
Iteration: 2, Func. Count: 26, Neg. LLF: 151.8720331997829
Iteration: 3, Func. Count: 39, Neg. LLF: 120.46240513933171
Iteration: 4, Func. Count: 52, Neg. LLF: 118.5874951330183
Iteration: 5, Func. Count: 64, Neg. LLF: 119.50108650854837
Iteration: 6, Func. Count: 78, Neg. LLF: 120.01383654191659
Iteration: 7, Func. Count: 91, Neg. LLF: 118.23337097978691
Iteration: 8, Func. Count: 103, Neg. LLF: 118.2118787886824
Iteration: 9, Func. Count: 116, Neg. LLF: 118.14936068403021
Iteration: 10, Func. Count: 128, Neg. LLF: 118.12530680418608
Iteration: 11, Func. Count: 140, Neg. LLF: 118.09608922123552
Iteration: 12, Func. Count: 152, Neg. LLF: 118.07811911597092
Iteration: 13, Func. Count: 164, Neg. LLF: 118.06319181215726
Iteration: 14, Func. Count: 176, Neg. LLF: 118.03424770073106
Iteration: 15, Func. Count: 188, Neg. LLF: 118.5348591990675
Iteration: 16, Func. Count: 201, Neg. LLF: 124.73164408702823
Iteration: 17, Func. Count: 214, Neg. LLF: 124.61792713673698
Iteration: 18, Func. Count: 227, Neg. LLF: 118.12973813184838
Iteration: 19, Func. Count: 240, Neg. LLF: 117.81021513921542
Iteration: 20, Func. Count: 252, Neg. LLF: 117.89053673672848
Iteration: 21, Func. Count: 265, Neg. LLF: 117.68295687031727
Iteration: 22, Func. Count: 277, Neg. LLF: 117.5968137677258
Iteration: 23, Func. Count: 289, Neg. LLF: 117.56169105021154
Iteration: 24, Func. Count: 301, Neg. LLF: 117.5532542228971
Iteration: 25, Func. Count: 313, Neg. LLF: 117.55218715066736
Iteration: 26, Func. Count: 325, Neg. LLF: 117.5520861607855
Iteration: 27, Func. Count: 337, Neg. LLF: 117.55207459609008
Iteration: 28, Func. Count: 348, Neg. LLF: 117.55207464561227
Optimization terminated successfully (Exit mode 0)
Current function value: 117.55207459609008
Iterations: 28
Function evaluations: 348
Gradient evaluations: 28
Iteration: 1, Func. Count: 14, Neg. LLF: 121.29041906889857
Iteration: 2, Func. Count: 28, Neg. LLF: 152.43613661100042
Iteration: 3, Func. Count: 42, Neg. LLF: 119.92182111555992
Iteration: 4, Func. Count: 56, Neg. LLF: 118.58707506308801
Iteration: 5, Func. Count: 69, Neg. LLF: 119.10092152565865
Iteration: 6, Func. Count: 84, Neg. LLF: 120.51643559670283
Iteration: 7, Func. Count: 98, Neg. LLF: 118.21767206412329
Iteration: 8, Func. Count: 111, Neg. LLF: 118.19817141173183
Iteration: 9, Func. Count: 125, Neg. LLF: 118.13434825011392
Iteration: 10, Func. Count: 138, Neg. LLF: 118.11488556993253
Iteration: 11, Func. Count: 151, Neg. LLF: 118.09410059729254
Iteration: 12, Func. Count: 164, Neg. LLF: 118.0749269657352
Iteration: 13, Func. Count: 177, Neg. LLF: 118.05735987223194
Iteration: 14, Func. Count: 190, Neg. LLF: 118.01932288886685
Iteration: 15, Func. Count: 203, Neg. LLF: 118.99561601777933
Iteration: 16, Func. Count: 217, Neg. LLF: 124.86193546323324
Iteration: 17, Func. Count: 231, Neg. LLF: 118.64441158268541
Iteration: 18, Func. Count: 245, Neg. LLF: 117.86341229262842
Iteration: 19, Func. Count: 258, Neg. LLF: 117.8500446001985
Iteration: 20, Func. Count: 272, Neg. LLF: 117.72001744336633
Iteration: 21, Func. Count: 285, Neg. LLF: 117.62567114190577
Iteration: 22, Func. Count: 298, Neg. LLF: 117.56059599102936
Iteration: 23, Func. Count: 311, Neg. LLF: 117.55571146570075
Iteration: 24, Func. Count: 324, Neg. LLF: 117.55225533310859
Iteration: 25, Func. Count: 337, Neg. LLF: 117.55207977079873
Iteration: 26, Func. Count: 350, Neg. LLF: 117.55207471348736
Iteration: 27, Func. Count: 362, Neg. LLF: 117.55207481541908
Optimization terminated successfully (Exit mode 0)
Current function value: 117.55207471348736
Iterations: 27
Function evaluations: 362
Gradient evaluations: 27
Iteration: 1, Func. Count: 15, Neg. LLF: 121.53246151584663
Iteration: 2, Func. Count: 30, Neg. LLF: 155.26991882967135
Iteration: 3, Func. Count: 45, Neg. LLF: 119.96886833235524
Iteration: 4, Func. Count: 60, Neg. LLF: 118.59472062748995
Iteration: 5, Func. Count: 74, Neg. LLF: 119.08952636427631
Iteration: 6, Func. Count: 90, Neg. LLF: 120.56354297048688
Iteration: 7, Func. Count: 105, Neg. LLF: 118.2137771550153
Iteration: 8, Func. Count: 119, Neg. LLF: 118.1974870594284
Iteration: 9, Func. Count: 134, Neg. LLF: 118.13178288322992
Iteration: 10, Func. Count: 148, Neg. LLF: 118.11423644418335
Iteration: 11, Func. Count: 162, Neg. LLF: 118.0945358035428
Iteration: 12, Func. Count: 176, Neg. LLF: 118.07415580732838
Iteration: 13, Func. Count: 190, Neg. LLF: 118.05527869264142
Iteration: 14, Func. Count: 204, Neg. LLF: 118.01721887990553
Iteration: 15, Func. Count: 218, Neg. LLF: 118.35589492356176
Iteration: 16, Func. Count: 233, Neg. LLF: 118.52024095950524
Iteration: 17, Func. Count: 248, Neg. LLF: 117.92675943996467
Iteration: 18, Func. Count: 262, Neg. LLF: 117.90887741374391
Iteration: 19, Func. Count: 277, Neg. LLF: 117.7501333580463
Iteration: 20, Func. Count: 291, Neg. LLF: 117.66002649039832
Iteration: 21, Func. Count: 305, Neg. LLF: 117.56900765013062
Iteration: 22, Func. Count: 319, Neg. LLF: 117.56502768320692
Iteration: 23, Func. Count: 334, Neg. LLF: 117.55261785295957
Iteration: 24, Func. Count: 348, Neg. LLF: 117.55212473407238
Iteration: 25, Func. Count: 362, Neg. LLF: 117.55207845815553
Iteration: 26, Func. Count: 376, Neg. LLF: 117.55207463694525
Iteration: 27, Func. Count: 389, Neg. LLF: 117.55207466146207
Optimization terminated successfully (Exit mode 0)
Current function value: 117.55207463694525
Iterations: 27
Function evaluations: 389
Gradient evaluations: 27
Iteration: 1, Func. Count: 16, Neg. LLF: 121.60502348878587
Iteration: 2, Func. Count: 32, Neg. LLF: 155.79575486134613
Iteration: 3, Func. Count: 48, Neg. LLF: 119.27215731104307
Iteration: 4, Func. Count: 63, Neg. LLF: 120.35865091231526
Iteration: 5, Func. Count: 81, Neg. LLF: 119.1587485207168
Iteration: 6, Func. Count: 97, Neg. LLF: 118.33977004724493
Iteration: 7, Func. Count: 112, Neg. LLF: 118.34958704695335
Iteration: 8, Func. Count: 128, Neg. LLF: 118.16850707043177
Iteration: 9, Func. Count: 143, Neg. LLF: 118.14214905426576
Iteration: 10, Func. Count: 158, Neg. LLF: 118.1080663605132
Iteration: 11, Func. Count: 173, Neg. LLF: 118.08819782879344
Iteration: 12, Func. Count: 188, Neg. LLF: 118.07143007212004
Iteration: 13, Func. Count: 203, Neg. LLF: 118.05951452060164
Iteration: 14, Func. Count: 218, Neg. LLF: 117.99199103817956
Iteration: 15, Func. Count: 233, Neg. LLF: 117.91177624223475
Iteration: 16, Func. Count: 248, Neg. LLF: 117.78243801074179
Iteration: 17, Func. Count: 263, Neg. LLF: 125.43419380090377
Iteration: 18, Func. Count: 279, Neg. LLF: 117.61584654959931
Iteration: 19, Func. Count: 294, Neg. LLF: 117.57593050092984
Iteration: 20, Func. Count: 309, Neg. LLF: 117.55723202040546
Iteration: 21, Func. Count: 324, Neg. LLF: 117.5533015513891
Iteration: 22, Func. Count: 339, Neg. LLF: 117.55212917163217
Iteration: 23, Func. Count: 354, Neg. LLF: 117.55210219501633
Iteration: 24, Func. Count: 369, Neg. LLF: 117.55207571246558
Iteration: 25, Func. Count: 384, Neg. LLF: 117.55207463980385
Iteration: 26, Func. Count: 398, Neg. LLF: 117.55207479744365
Optimization terminated successfully (Exit mode 0)
Current function value: 117.55207463980385
Iterations: 26
Function evaluations: 398
Gradient evaluations: 26
Iteration: 1, Func. Count: 5, Neg. LLF: 121.1542304595611
Iteration: 2, Func. Count: 10, Neg. LLF: 143.25232062910138
Iteration: 3, Func. Count: 15, Neg. LLF: 118.36298816195762
Iteration: 4, Func. Count: 19, Neg. LLF: 118.3501601719606
Iteration: 5, Func. Count: 23, Neg. LLF: 118.3282392827106
Iteration: 6, Func. Count: 27, Neg. LLF: 118.3192039343108
Iteration: 7, Func. Count: 31, Neg. LLF: 118.31796091509902
Iteration: 8, Func. Count: 35, Neg. LLF: 118.31783431562232
Iteration: 9, Func. Count: 38, Neg. LLF: 118.31783431562938
Optimization terminated successfully (Exit mode 0)
Current function value: 118.31783431562232
Iterations: 9
Function evaluations: 38
Gradient evaluations: 9
Iteration: 1, Func. Count: 5, Neg. LLF: 123.07922105592019
Iteration: 2, Func. Count: 10, Neg. LLF: 141.8532357375996
Iteration: 3, Func. Count: 15, Neg. LLF: 120.23077107686608
Iteration: 4, Func. Count: 19, Neg. LLF: 120.20239687528334
Iteration: 5, Func. Count: 23, Neg. LLF: 120.1599048244769
Iteration: 6, Func. Count: 27, Neg. LLF: 120.15180911188828
Iteration: 7, Func. Count: 31, Neg. LLF: 120.1511051559406
Iteration: 8, Func. Count: 35, Neg. LLF: 120.15108512128818
Iteration: 9, Func. Count: 38, Neg. LLF: 120.1510851212799
Optimization terminated successfully (Exit mode 0)
Current function value: 120.15108512128818
Iterations: 9
Function evaluations: 38
Gradient evaluations: 9
Iteration: 1, Func. Count: 6, Neg. LLF: 122.23571182086876
Iteration: 2, Func. Count: 12, Neg. LLF: 121.74327066878597
Iteration: 3, Func. Count: 18, Neg. LLF: 122.21902733885271
Iteration: 4, Func. Count: 24, Neg. LLF: 120.25300231778351
Iteration: 5, Func. Count: 29, Neg. LLF: 120.16343238182692
Iteration: 6, Func. Count: 34, Neg. LLF: 120.15334928061893
Iteration: 7, Func. Count: 39, Neg. LLF: 120.15150310942603
Iteration: 8, Func. Count: 44, Neg. LLF: 120.1512037865579
Iteration: 9, Func. Count: 49, Neg. LLF: 120.15108540884752
Iteration: 10, Func. Count: 53, Neg. LLF: 120.15108554747091
Optimization terminated successfully (Exit mode 0)
Current function value: 120.15108540884752
Iterations: 10
Function evaluations: 53
Gradient evaluations: 10
Iteration: 1, Func. Count: 7, Neg. LLF: 122.27421429776125
Iteration: 2, Func. Count: 14, Neg. LLF: 122.83705095581296
Iteration: 3, Func. Count: 21, Neg. LLF: 122.21469641007238
Iteration: 4, Func. Count: 28, Neg. LLF: 133.34704175084485
Iteration: 5, Func. Count: 35, Neg. LLF: 120.10803654569752
Iteration: 6, Func. Count: 41, Neg. LLF: 120.10116141310448
Iteration: 7, Func. Count: 47, Neg. LLF: 120.09320115186026
Iteration: 8, Func. Count: 53, Neg. LLF: 120.09198378110078
Iteration: 9, Func. Count: 59, Neg. LLF: 120.09183953097815
Iteration: 10, Func. Count: 65, Neg. LLF: 120.09181528628208
Iteration: 11, Func. Count: 71, Neg. LLF: 120.09180348829892
Iteration: 12, Func. Count: 76, Neg. LLF: 120.09180348829487
Optimization terminated successfully (Exit mode 0)
Current function value: 120.09180348829892
Iterations: 12
Function evaluations: 76
Gradient evaluations: 12
Iteration: 1, Func. Count: 8, Neg. LLF: 122.40897722577242
Iteration: 2, Func. Count: 16, Neg. LLF: 123.27868718244468
Iteration: 3, Func. Count: 24, Neg. LLF: 122.27132038937141
Iteration: 4, Func. Count: 32, Neg. LLF: 134.24758800219445
Iteration: 5, Func. Count: 40, Neg. LLF: 120.11383719278116
Iteration: 6, Func. Count: 47, Neg. LLF: 120.09286626894604
Iteration: 7, Func. Count: 54, Neg. LLF: 120.09198330683412
Iteration: 8, Func. Count: 61, Neg. LLF: 120.09184233011618
Iteration: 9, Func. Count: 68, Neg. LLF: 120.0918047598352
Iteration: 10, Func. Count: 75, Neg. LLF: 120.09180349691826
Iteration: 11, Func. Count: 81, Neg. LLF: 120.09180352993648
Optimization terminated successfully (Exit mode 0)
Current function value: 120.09180349691826
Iterations: 11
Function evaluations: 81
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 122.38089894387969
Iteration: 2, Func. Count: 18, Neg. LLF: 122.04554213406799
Iteration: 3, Func. Count: 27, Neg. LLF: 122.01353598558208
Iteration: 4, Func. Count: 36, Neg. LLF: 120.88129159802249
Iteration: 5, Func. Count: 45, Neg. LLF: 120.82670970937038
Iteration: 6, Func. Count: 54, Neg. LLF: 120.10020098767001
Iteration: 7, Func. Count: 62, Neg. LLF: 120.09604737696138
Iteration: 8, Func. Count: 70, Neg. LLF: 120.09193176079721
Iteration: 9, Func. Count: 78, Neg. LLF: 120.09181026617874
Iteration: 10, Func. Count: 86, Neg. LLF: 120.09180369979416
Iteration: 11, Func. Count: 93, Neg. LLF: 120.09180376637023
Optimization terminated successfully (Exit mode 0)
Current function value: 120.09180369979416
Iterations: 11
Function evaluations: 93
Gradient evaluations: 11
Iteration: 1, Func. Count: 6, Neg. LLF: 122.73017056222484
Iteration: 2, Func. Count: 12, Neg. LLF: 134.83391213099696
Iteration: 3, Func. Count: 18, Neg. LLF: 120.2454429047116
Iteration: 4, Func. Count: 23, Neg. LLF: 120.22615761722662
Iteration: 5, Func. Count: 28, Neg. LLF: 120.19397576215047
Iteration: 6, Func. Count: 33, Neg. LLF: 120.17543682149115
Iteration: 7, Func. Count: 38, Neg. LLF: 120.15870658149464
Iteration: 8, Func. Count: 43, Neg. LLF: 120.15257474548508
Iteration: 9, Func. Count: 48, Neg. LLF: 120.15109083696994
Iteration: 10, Func. Count: 53, Neg. LLF: 120.15108503007907
Iteration: 11, Func. Count: 57, Neg. LLF: 120.15108518790063
Optimization terminated successfully (Exit mode 0)
Current function value: 120.15108503007907
Iterations: 11
Function evaluations: 57
Gradient evaluations: 11
Iteration: 1, Func. Count: 7, Neg. LLF: 121.70663953719941
Iteration: 2, Func. Count: 13, Neg. LLF: 122.79179015010648
Iteration: 3, Func. Count: 20, Neg. LLF: 122.9025728226367
Iteration: 4, Func. Count: 27, Neg. LLF: 120.83997059807847
Iteration: 5, Func. Count: 33, Neg. LLF: 120.4181520247861
Iteration: 6, Func. Count: 39, Neg. LLF: 120.24583286686061
Iteration: 7, Func. Count: 45, Neg. LLF: 120.15272851020015
Iteration: 8, Func. Count: 51, Neg. LLF: 120.15342416407373
Iteration: 9, Func. Count: 58, Neg. LLF: 120.15109203201374
Iteration: 10, Func. Count: 64, Neg. LLF: 120.1510850553349
Iteration: 11, Func. Count: 69, Neg. LLF: 120.15108519406111
Optimization terminated successfully (Exit mode 0)
Current function value: 120.1510850553349
Iterations: 11
Function evaluations: 69
Gradient evaluations: 11
Iteration: 1, Func. Count: 8, Neg. LLF: 121.88522827050387
Iteration: 2, Func. Count: 16, Neg. LLF: 126.49573333123472
Iteration: 3, Func. Count: 24, Neg. LLF: 121.2701892412487
Iteration: 4, Func. Count: 32, Neg. LLF: 120.25672026746237
Iteration: 5, Func. Count: 39, Neg. LLF: 120.3129654926534
Iteration: 6, Func. Count: 47, Neg. LLF: 120.11777678960405
Iteration: 7, Func. Count: 54, Neg. LLF: 120.10274708042222
Iteration: 8, Func. Count: 61, Neg. LLF: 120.0955085152309
Iteration: 9, Func. Count: 68, Neg. LLF: 120.0922214340519
Iteration: 10, Func. Count: 75, Neg. LLF: 120.091865879138
Iteration: 11, Func. Count: 82, Neg. LLF: 120.09180421238862
Iteration: 12, Func. Count: 89, Neg. LLF: 120.0918035129706
Optimization terminated successfully (Exit mode 0)
Current function value: 120.0918035129706
Iterations: 12
Function evaluations: 89
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 121.84750363747456
Iteration: 2, Func. Count: 18, Neg. LLF: 124.65709071162931
Iteration: 3, Func. Count: 27, Neg. LLF: 121.37433259126847
Iteration: 4, Func. Count: 36, Neg. LLF: 121.09132931727112
Iteration: 5, Func. Count: 45, Neg. LLF: 120.16983026519499
Iteration: 6, Func. Count: 53, Neg. LLF: 120.10008451353181
Iteration: 7, Func. Count: 61, Neg. LLF: 120.09277725441287
Iteration: 8, Func. Count: 69, Neg. LLF: 120.09184912487392
Iteration: 9, Func. Count: 77, Neg. LLF: 120.09181591006408
Iteration: 10, Func. Count: 85, Neg. LLF: 120.09180401760156
Iteration: 11, Func. Count: 92, Neg. LLF: 120.09180405069179
Optimization terminated successfully (Exit mode 0)
Current function value: 120.09180401760156
Iterations: 11
Function evaluations: 92
Gradient evaluations: 11
Iteration: 1, Func. Count: 10, Neg. LLF: 143.2613714018312
Iteration: 2, Func. Count: 20, Neg. LLF: 137.44240812622374
Iteration: 3, Func. Count: 30, Neg. LLF: 155.92202033224936
Iteration: 4, Func. Count: 41, Neg. LLF: 119.92108230762057
Iteration: 5, Func. Count: 50, Neg. LLF: 120.07620531348962
Iteration: 6, Func. Count: 60, Neg. LLF: 119.97873687300354
Iteration: 7, Func. Count: 70, Neg. LLF: 120.70672355014422
Iteration: 8, Func. Count: 80, Neg. LLF: 123.19872221805534
Iteration: 9, Func. Count: 90, Neg. LLF: 119.7008829495513
Iteration: 10, Func. Count: 100, Neg. LLF: 119.67426395219135
Iteration: 11, Func. Count: 110, Neg. LLF: 119.59854339913794
Iteration: 12, Func. Count: 119, Neg. LLF: 119.59092373128846
Iteration: 13, Func. Count: 128, Neg. LLF: 119.58794286654485
Iteration: 14, Func. Count: 137, Neg. LLF: 119.58759902585454
Iteration: 15, Func. Count: 146, Neg. LLF: 119.58757654396958
Iteration: 16, Func. Count: 155, Neg. LLF: 119.5875757835041
Optimization terminated successfully (Exit mode 0)
Current function value: 119.5875757835041
Iterations: 16
Function evaluations: 155
Gradient evaluations: 16
Iteration: 1, Func. Count: 7, Neg. LLF: 126.9484735121497
Iteration: 2, Func. Count: 15, Neg. LLF: 153.54954270541236
Iteration: 3, Func. Count: 22, Neg. LLF: 120.29215727809245
Iteration: 4, Func. Count: 28, Neg. LLF: 120.29079105246852
Iteration: 5, Func. Count: 35, Neg. LLF: 120.15451663028776
Iteration: 6, Func. Count: 41, Neg. LLF: 120.12081597103172
Iteration: 7, Func. Count: 47, Neg. LLF: 120.10040501207543
Iteration: 8, Func. Count: 53, Neg. LLF: 120.09373458047837
Iteration: 9, Func. Count: 59, Neg. LLF: 120.09063105790972
Iteration: 10, Func. Count: 65, Neg. LLF: 120.08992157783217
Iteration: 11, Func. Count: 71, Neg. LLF: 120.0895426056104
Iteration: 12, Func. Count: 77, Neg. LLF: 120.08949969465066
Iteration: 13, Func. Count: 83, Neg. LLF: 120.08949586055331
Iteration: 14, Func. Count: 88, Neg. LLF: 120.08949586053889
Optimization terminated successfully (Exit mode 0)
Current function value: 120.08949586055331
Iterations: 14
Function evaluations: 88
Gradient evaluations: 14
Iteration: 1, Func. Count: 8, Neg. LLF: 122.6083789691245
Iteration: 2, Func. Count: 16, Neg. LLF: 146.7659625330613
Iteration: 3, Func. Count: 24, Neg. LLF: 120.95077272480978
Iteration: 4, Func. Count: 31, Neg. LLF: 121.18708896082961
Iteration: 5, Func. Count: 39, Neg. LLF: 120.18911086766543
Iteration: 6, Func. Count: 46, Neg. LLF: 120.11902126238571
Iteration: 7, Func. Count: 53, Neg. LLF: 120.10187767596224
Iteration: 8, Func. Count: 60, Neg. LLF: 120.09405538726287
Iteration: 9, Func. Count: 67, Neg. LLF: 120.09102937084094
Iteration: 10, Func. Count: 74, Neg. LLF: 120.08958753130842
Iteration: 11, Func. Count: 81, Neg. LLF: 120.08950817484477
Iteration: 12, Func. Count: 88, Neg. LLF: 120.08949859359859
Iteration: 13, Func. Count: 95, Neg. LLF: 120.08949604491131
Iteration: 14, Func. Count: 101, Neg. LLF: 120.08949617957414
Optimization terminated successfully (Exit mode 0)
Current function value: 120.08949604491131
Iterations: 14
Function evaluations: 101
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 122.59789903431223
Iteration: 2, Func. Count: 18, Neg. LLF: 141.6007205142061
Iteration: 3, Func. Count: 27, Neg. LLF: 121.22440381552711
Iteration: 4, Func. Count: 36, Neg. LLF: 120.28514725006723
Iteration: 5, Func. Count: 44, Neg. LLF: 120.60643745353875
Iteration: 6, Func. Count: 53, Neg. LLF: 120.13929305342432
Iteration: 7, Func. Count: 61, Neg. LLF: 120.10321975934227
Iteration: 8, Func. Count: 69, Neg. LLF: 120.09507981705183
Iteration: 9, Func. Count: 77, Neg. LLF: 120.09235312008656
Iteration: 10, Func. Count: 85, Neg. LLF: 120.09207360763602
Iteration: 11, Func. Count: 93, Neg. LLF: 120.09160912808109
Iteration: 12, Func. Count: 101, Neg. LLF: 120.08985645067763
Iteration: 13, Func. Count: 109, Neg. LLF: 120.08950418479753
Iteration: 14, Func. Count: 117, Neg. LLF: 120.08949631117314
Iteration: 15, Func. Count: 124, Neg. LLF: 120.08949631207449
Optimization terminated successfully (Exit mode 0)
Current function value: 120.08949631117314
Iterations: 15
Function evaluations: 124
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 122.44602170376055
Iteration: 2, Func. Count: 20, Neg. LLF: 137.68627796547221
Iteration: 3, Func. Count: 30, Neg. LLF: 121.2865914090352
Iteration: 4, Func. Count: 40, Neg. LLF: 120.20903026855116
Iteration: 5, Func. Count: 49, Neg. LLF: 120.54205675172865
Iteration: 6, Func. Count: 60, Neg. LLF: 120.15499888563194
Iteration: 7, Func. Count: 69, Neg. LLF: 120.11302858404657
Iteration: 8, Func. Count: 78, Neg. LLF: 120.10392242504487
Iteration: 9, Func. Count: 87, Neg. LLF: 120.09128271953944
Iteration: 10, Func. Count: 96, Neg. LLF: 120.09087228102594
Iteration: 11, Func. Count: 105, Neg. LLF: 120.08991757029871
Iteration: 12, Func. Count: 114, Neg. LLF: 120.08950367612407
Iteration: 13, Func. Count: 123, Neg. LLF: 120.08949600889268
Iteration: 14, Func. Count: 131, Neg. LLF: 120.08949604117356
Optimization terminated successfully (Exit mode 0)
Current function value: 120.08949600889268
Iterations: 14
Function evaluations: 131
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 137.77206573275873
Iteration: 2, Func. Count: 22, Neg. LLF: 126.49041179711588
Iteration: 3, Func. Count: 33, Neg. LLF: 133.64335903279584
Iteration: 4, Func. Count: 44, Neg. LLF: 119.88447541939452
Iteration: 5, Func. Count: 54, Neg. LLF: 259.59681175547155
Iteration: 6, Func. Count: 65, Neg. LLF: 121.50524225033762
Iteration: 7, Func. Count: 77, Neg. LLF: 122.68577613231614
Iteration: 8, Func. Count: 88, Neg. LLF: 121.44555169584427
Iteration: 9, Func. Count: 99, Neg. LLF: 119.54560030568013
Iteration: 10, Func. Count: 109, Neg. LLF: 119.52596979907666
Iteration: 11, Func. Count: 119, Neg. LLF: 119.5129131238895
Iteration: 12, Func. Count: 129, Neg. LLF: 119.5057277212418
Iteration: 13, Func. Count: 139, Neg. LLF: 119.50499165819083
Iteration: 14, Func. Count: 149, Neg. LLF: 119.50495601212282
Iteration: 15, Func. Count: 159, Neg. LLF: 119.50495449120353
Iteration: 16, Func. Count: 168, Neg. LLF: 119.50495449121773
Optimization terminated successfully (Exit mode 0)
Current function value: 119.50495449120353
Iterations: 16
Function evaluations: 168
Gradient evaluations: 16
Iteration: 1, Func. Count: 8, Neg. LLF: 134.97005319122107
Iteration: 2, Func. Count: 17, Neg. LLF: 397.4177698962467
Iteration: 3, Func. Count: 25, Neg. LLF: 120.37494307020557
Iteration: 4, Func. Count: 32, Neg. LLF: 132.56877124165322
Iteration: 5, Func. Count: 41, Neg. LLF: 120.26395248908307
Iteration: 6, Func. Count: 48, Neg. LLF: 120.22067062952486
Iteration: 7, Func. Count: 55, Neg. LLF: 120.19480648600972
Iteration: 8, Func. Count: 62, Neg. LLF: 120.13946085553044
Iteration: 9, Func. Count: 69, Neg. LLF: 120.1068522667757
Iteration: 10, Func. Count: 76, Neg. LLF: 120.092484668373
Iteration: 11, Func. Count: 83, Neg. LLF: 120.09046317751564
Iteration: 12, Func. Count: 90, Neg. LLF: 120.0897087987912
Iteration: 13, Func. Count: 97, Neg. LLF: 120.08951076410806
Iteration: 14, Func. Count: 104, Neg. LLF: 120.08949636217466
Iteration: 15, Func. Count: 111, Neg. LLF: 120.08949584705837
Optimization terminated successfully (Exit mode 0)
Current function value: 120.08949584705837
Iterations: 15
Function evaluations: 111
Gradient evaluations: 15
Iteration: 1, Func. Count: 9, Neg. LLF: 124.46965836627018
Iteration: 2, Func. Count: 18, Neg. LLF: 173.32126749207148
Iteration: 3, Func. Count: 27, Neg. LLF: 120.99521287763235
Iteration: 4, Func. Count: 35, Neg. LLF: 128.54738151378945
Iteration: 5, Func. Count: 44, Neg. LLF: 120.14889102698339
Iteration: 6, Func. Count: 52, Neg. LLF: 120.12393748564358
Iteration: 7, Func. Count: 60, Neg. LLF: 120.10772168871229
Iteration: 8, Func. Count: 68, Neg. LLF: 120.10002612422164
Iteration: 9, Func. Count: 76, Neg. LLF: 120.09241362043483
Iteration: 10, Func. Count: 84, Neg. LLF: 120.09039989115408
Iteration: 11, Func. Count: 92, Neg. LLF: 120.08974603476258
Iteration: 12, Func. Count: 100, Neg. LLF: 120.08960949689796
Iteration: 13, Func. Count: 108, Neg. LLF: 120.08950449822001
Iteration: 14, Func. Count: 116, Neg. LLF: 120.0894963097983
Iteration: 15, Func. Count: 123, Neg. LLF: 120.08949644440966
Optimization terminated successfully (Exit mode 0)
Current function value: 120.0894963097983
Iterations: 15
Function evaluations: 123
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 124.44996143172455
Iteration: 2, Func. Count: 20, Neg. LLF: 167.78743980256135
Iteration: 3, Func. Count: 30, Neg. LLF: 121.27351715614846
Iteration: 4, Func. Count: 40, Neg. LLF: 120.31380185083574
Iteration: 5, Func. Count: 49, Neg. LLF: 120.37846345066609
Iteration: 6, Func. Count: 59, Neg. LLF: 120.14672581558897
Iteration: 7, Func. Count: 68, Neg. LLF: 120.11896809326433
Iteration: 8, Func. Count: 77, Neg. LLF: 120.10767784407071
Iteration: 9, Func. Count: 86, Neg. LLF: 120.09765995955175
Iteration: 10, Func. Count: 95, Neg. LLF: 120.09118704987753
Iteration: 11, Func. Count: 104, Neg. LLF: 120.0897840773922
Iteration: 12, Func. Count: 113, Neg. LLF: 120.08950864400914
Iteration: 13, Func. Count: 122, Neg. LLF: 120.08949669553851
Iteration: 14, Func. Count: 131, Neg. LLF: 120.08949586183243
Optimization terminated successfully (Exit mode 0)
Current function value: 120.08949586183243
Iterations: 14
Function evaluations: 131
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 124.06484881568758
Iteration: 2, Func. Count: 22, Neg. LLF: 161.453099745822
Iteration: 3, Func. Count: 33, Neg. LLF: 121.30767614340296
Iteration: 4, Func. Count: 44, Neg. LLF: 120.82768925682582
Iteration: 5, Func. Count: 55, Neg. LLF: 120.2468478170685
Iteration: 6, Func. Count: 65, Neg. LLF: 120.13785037981397
Iteration: 7, Func. Count: 75, Neg. LLF: 120.18217061710052
Iteration: 8, Func. Count: 86, Neg. LLF: 120.11109021191893
Iteration: 9, Func. Count: 96, Neg. LLF: 120.10194894335596
Iteration: 10, Func. Count: 106, Neg. LLF: 120.08995560256434
Iteration: 11, Func. Count: 116, Neg. LLF: 120.08952663039608
Iteration: 12, Func. Count: 126, Neg. LLF: 120.08949778259255
Iteration: 13, Func. Count: 136, Neg. LLF: 120.0894958678551
Iteration: 14, Func. Count: 145, Neg. LLF: 120.08949590008525
Optimization terminated successfully (Exit mode 0)
Current function value: 120.0894958678551
Iterations: 14
Function evaluations: 145
Gradient evaluations: 14
Iteration: 1, Func. Count: 12, Neg. LLF: 137.76798177798267
Iteration: 2, Func. Count: 24, Neg. LLF: 122.10608375078237
Iteration: 3, Func. Count: 36, Neg. LLF: 120.15030995587082
Iteration: 4, Func. Count: 47, Neg. LLF: 665.2144853714385
Iteration: 5, Func. Count: 61, Neg. LLF: 322108.22729304584
Iteration: 6, Func. Count: 73, Neg. LLF: 130.29831449717247
Iteration: 7, Func. Count: 86, Neg. LLF: 131.12025310490853
Iteration: 8, Func. Count: 98, Neg. LLF: 119.54735169758254
Iteration: 9, Func. Count: 109, Neg. LLF: 119.53003103134351
Iteration: 10, Func. Count: 120, Neg. LLF: 119.51155396487495
Iteration: 11, Func. Count: 131, Neg. LLF: 119.50535044950225
Iteration: 12, Func. Count: 142, Neg. LLF: 119.50497216386694
Iteration: 13, Func. Count: 153, Neg. LLF: 119.50495490818363
Iteration: 14, Func. Count: 163, Neg. LLF: 119.50495490822848
Optimization terminated successfully (Exit mode 0)
Current function value: 119.50495490818363
Iterations: 14
Function evaluations: 163
Gradient evaluations: 14
Iteration: 1, Func. Count: 5, Neg. LLF: 125.98998608637551
Iteration: 2, Func. Count: 10, Neg. LLF: 128.4722331708431
Iteration: 3, Func. Count: 15, Neg. LLF: 123.20043080658645
Iteration: 4, Func. Count: 19, Neg. LLF: 123.15794423855677
Iteration: 5, Func. Count: 23, Neg. LLF: 123.1488068020692
Iteration: 6, Func. Count: 27, Neg. LLF: 123.14824824439083
Iteration: 7, Func. Count: 31, Neg. LLF: 123.14823257445909
Iteration: 8, Func. Count: 34, Neg. LLF: 123.14823257445069
Optimization terminated successfully (Exit mode 0)
Current function value: 123.14823257445909
Iterations: 8
Function evaluations: 34
Gradient evaluations: 8
Iteration: 1, Func. Count: 6, Neg. LLF: 124.74589922666877
Iteration: 2, Func. Count: 12, Neg. LLF: 125.08388963246485
Iteration: 3, Func. Count: 18, Neg. LLF: 123.98723182078977
Iteration: 4, Func. Count: 24, Neg. LLF: 123.00993947836297
Iteration: 5, Func. Count: 30, Neg. LLF: 122.97214641322601
Iteration: 6, Func. Count: 36, Neg. LLF: 122.96530009812949
Iteration: 7, Func. Count: 41, Neg. LLF: 122.96444358627276
Iteration: 8, Func. Count: 46, Neg. LLF: 122.96444255767409
Iteration: 9, Func. Count: 50, Neg. LLF: 122.96444255766991
Optimization terminated successfully (Exit mode 0)
Current function value: 122.96444255767409
Iterations: 9
Function evaluations: 50
Gradient evaluations: 9
Iteration: 1, Func. Count: 7, Neg. LLF: 125.63421497511885
Iteration: 2, Func. Count: 14, Neg. LLF: 126.47771844957366
Iteration: 3, Func. Count: 21, Neg. LLF: 125.13177218156034
Iteration: 4, Func. Count: 28, Neg. LLF: 123.81435277098244
Iteration: 5, Func. Count: 35, Neg. LLF: 122.96518401382448
Iteration: 6, Func. Count: 41, Neg. LLF: 122.96447727044223
Iteration: 7, Func. Count: 47, Neg. LLF: 122.96445174760228
Iteration: 8, Func. Count: 53, Neg. LLF: 122.96444637049008
Iteration: 9, Func. Count: 59, Neg. LLF: 122.96444283568547
Iteration: 10, Func. Count: 64, Neg. LLF: 122.96444286336605
Optimization terminated successfully (Exit mode 0)
Current function value: 122.96444283568547
Iterations: 10
Function evaluations: 64
Gradient evaluations: 10
Iteration: 1, Func. Count: 8, Neg. LLF: 125.58128319543987
Iteration: 2, Func. Count: 16, Neg. LLF: 139.56948445356593
Iteration: 3, Func. Count: 24, Neg. LLF: 124.31464096827462
Iteration: 4, Func. Count: 32, Neg. LLF: 122.99124852202614
Iteration: 5, Func. Count: 39, Neg. LLF: 122.99331567431534
Iteration: 6, Func. Count: 47, Neg. LLF: 122.97393508467837
Iteration: 7, Func. Count: 54, Neg. LLF: 122.9658577294523
Iteration: 8, Func. Count: 61, Neg. LLF: 122.96507854052783
Iteration: 9, Func. Count: 68, Neg. LLF: 122.96444971177198
Iteration: 10, Func. Count: 75, Neg. LLF: 122.96444273553536
Iteration: 11, Func. Count: 81, Neg. LLF: 122.96444280365266
Optimization terminated successfully (Exit mode 0)
Current function value: 122.96444273553536
Iterations: 11
Function evaluations: 81
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 126.10099333934933
Iteration: 2, Func. Count: 18, Neg. LLF: 125.66711662980232
Iteration: 3, Func. Count: 27, Neg. LLF: 124.30954587092329
Iteration: 4, Func. Count: 36, Neg. LLF: 124.59892205812999
Iteration: 5, Func. Count: 45, Neg. LLF: 122.96996429498799
Iteration: 6, Func. Count: 53, Neg. LLF: 122.96565568592976
Iteration: 7, Func. Count: 61, Neg. LLF: 122.96455856844901
Iteration: 8, Func. Count: 69, Neg. LLF: 122.96448122536411
Iteration: 9, Func. Count: 77, Neg. LLF: 122.96445886460324
Iteration: 10, Func. Count: 85, Neg. LLF: 122.96444410504618
Iteration: 11, Func. Count: 93, Neg. LLF: 122.964442633925
Iteration: 12, Func. Count: 100, Neg. LLF: 122.9644427169084
Optimization terminated successfully (Exit mode 0)
Current function value: 122.964442633925
Iterations: 12
Function evaluations: 100
Gradient evaluations: 12
Iteration: 1, Func. Count: 6, Neg. LLF: 124.17270577999923
Iteration: 2, Func. Count: 12, Neg. LLF: 130.87714640245386
Iteration: 3, Func. Count: 18, Neg. LLF: 120.24043492705916
Iteration: 4, Func. Count: 23, Neg. LLF: 120.22585231831289
Iteration: 5, Func. Count: 28, Neg. LLF: 120.16769390694705
Iteration: 6, Func. Count: 33, Neg. LLF: 120.15415445328085
Iteration: 7, Func. Count: 38, Neg. LLF: 120.1511999136508
Iteration: 8, Func. Count: 43, Neg. LLF: 120.15109102473369
Iteration: 9, Func. Count: 48, Neg. LLF: 120.15108503694955
Iteration: 10, Func. Count: 52, Neg. LLF: 120.15108503694671
Optimization terminated successfully (Exit mode 0)
Current function value: 120.15108503694955
Iterations: 10
Function evaluations: 52
Gradient evaluations: 10
Iteration: 1, Func. Count: 7, Neg. LLF: 121.91456155437135
Iteration: 2, Func. Count: 14, Neg. LLF: 124.7149997166133
Iteration: 3, Func. Count: 21, Neg. LLF: 120.41013522149467
Iteration: 4, Func. Count: 27, Neg. LLF: 120.18717079724176
Iteration: 5, Func. Count: 33, Neg. LLF: 120.15417649999503
Iteration: 6, Func. Count: 39, Neg. LLF: 120.15213112444627
Iteration: 7, Func. Count: 45, Neg. LLF: 120.15135275241104
Iteration: 8, Func. Count: 51, Neg. LLF: 120.15110401771791
Iteration: 9, Func. Count: 57, Neg. LLF: 120.15108562940016
Iteration: 10, Func. Count: 63, Neg. LLF: 120.15108503338945
Optimization terminated successfully (Exit mode 0)
Current function value: 120.15108503338945
Iterations: 10
Function evaluations: 63
Gradient evaluations: 10
Iteration: 1, Func. Count: 8, Neg. LLF: 123.39544262731786
Iteration: 2, Func. Count: 16, Neg. LLF: 123.85295520600067
Iteration: 3, Func. Count: 24, Neg. LLF: 120.61147638258619
Iteration: 4, Func. Count: 31, Neg. LLF: 133.31608693524217
Iteration: 5, Func. Count: 39, Neg. LLF: 122.12169626556033
Iteration: 6, Func. Count: 47, Neg. LLF: 120.10294780076393
Iteration: 7, Func. Count: 54, Neg. LLF: 120.09499628525114
Iteration: 8, Func. Count: 61, Neg. LLF: 120.09324513166682
Iteration: 9, Func. Count: 68, Neg. LLF: 120.09192330059587
Iteration: 10, Func. Count: 75, Neg. LLF: 120.09180817138716
Iteration: 11, Func. Count: 82, Neg. LLF: 120.09180357670115
Iteration: 12, Func. Count: 88, Neg. LLF: 120.09180357676148
Optimization terminated successfully (Exit mode 0)
Current function value: 120.09180357670115
Iterations: 12
Function evaluations: 88
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 124.37103600247183
Iteration: 2, Func. Count: 18, Neg. LLF: 123.3065170438231
Iteration: 3, Func. Count: 27, Neg. LLF: 120.6411450769556
Iteration: 4, Func. Count: 35, Neg. LLF: 132.70368894041206
Iteration: 5, Func. Count: 44, Neg. LLF: 122.32611467303639
Iteration: 6, Func. Count: 53, Neg. LLF: 120.10179621381994
Iteration: 7, Func. Count: 61, Neg. LLF: 120.09303556217012
Iteration: 8, Func. Count: 69, Neg. LLF: 120.09231288377018
Iteration: 9, Func. Count: 77, Neg. LLF: 120.09191839583994
Iteration: 10, Func. Count: 85, Neg. LLF: 120.09181245645728
Iteration: 11, Func. Count: 93, Neg. LLF: 120.0918038089349
Iteration: 12, Func. Count: 100, Neg. LLF: 120.09180384202963
Optimization terminated successfully (Exit mode 0)
Current function value: 120.0918038089349
Iterations: 12
Function evaluations: 100
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 124.99097846231294
Iteration: 2, Func. Count: 20, Neg. LLF: 123.11118281263049
Iteration: 3, Func. Count: 30, Neg. LLF: 120.6733894796688
Iteration: 4, Func. Count: 39, Neg. LLF: 133.08506762175136
Iteration: 5, Func. Count: 49, Neg. LLF: 121.81870988958131
Iteration: 6, Func. Count: 59, Neg. LLF: 120.10241039183232
Iteration: 7, Func. Count: 68, Neg. LLF: 120.09301549443721
Iteration: 8, Func. Count: 77, Neg. LLF: 120.09223106222088
Iteration: 9, Func. Count: 86, Neg. LLF: 120.09195633378415
Iteration: 10, Func. Count: 95, Neg. LLF: 120.09180924577201
Iteration: 11, Func. Count: 104, Neg. LLF: 120.09180369912175
Iteration: 12, Func. Count: 112, Neg. LLF: 120.09180376577535
Optimization terminated successfully (Exit mode 0)
Current function value: 120.09180369912175
Iterations: 12
Function evaluations: 112
Gradient evaluations: 12
Iteration: 1, Func. Count: 7, Neg. LLF: 123.11031912452103
Iteration: 2, Func. Count: 14, Neg. LLF: 136.94735396953254
Iteration: 3, Func. Count: 21, Neg. LLF: 120.27597391217304
Iteration: 4, Func. Count: 27, Neg. LLF: 120.26116926630299
Iteration: 5, Func. Count: 33, Neg. LLF: 120.23050782144388
Iteration: 6, Func. Count: 39, Neg. LLF: 120.18131732903063
Iteration: 7, Func. Count: 45, Neg. LLF: 120.16191546862899
Iteration: 8, Func. Count: 51, Neg. LLF: 120.15112188649485
Iteration: 9, Func. Count: 57, Neg. LLF: 120.15108539327044
Iteration: 10, Func. Count: 62, Neg. LLF: 120.15108555109295
Optimization terminated successfully (Exit mode 0)
Current function value: 120.15108539327044
Iterations: 10
Function evaluations: 62
Gradient evaluations: 10
Iteration: 1, Func. Count: 8, Neg. LLF: 121.65529398963515
Iteration: 2, Func. Count: 15, Neg. LLF: 124.01895816707213
Iteration: 3, Func. Count: 23, Neg. LLF: 120.59830826643436
Iteration: 4, Func. Count: 30, Neg. LLF: 120.48929185905811
Iteration: 5, Func. Count: 37, Neg. LLF: 120.31946438166425
Iteration: 6, Func. Count: 44, Neg. LLF: 120.20688159514089
Iteration: 7, Func. Count: 51, Neg. LLF: 120.20017360379309
Iteration: 8, Func. Count: 59, Neg. LLF: 120.15122607159857
Iteration: 9, Func. Count: 66, Neg. LLF: 120.15109737313126
Iteration: 10, Func. Count: 73, Neg. LLF: 120.1510851414489
Iteration: 11, Func. Count: 79, Neg. LLF: 120.15108528018436
Optimization terminated successfully (Exit mode 0)
Current function value: 120.1510851414489
Iterations: 11
Function evaluations: 79
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 122.72522229026457
Iteration: 2, Func. Count: 18, Neg. LLF: 129.83812128939192
Iteration: 3, Func. Count: 27, Neg. LLF: 120.53578426077561
Iteration: 4, Func. Count: 35, Neg. LLF: 135.5104375839879
Iteration: 5, Func. Count: 44, Neg. LLF: 120.3093405991367
Iteration: 6, Func. Count: 52, Neg. LLF: 120.23109637389993
Iteration: 7, Func. Count: 60, Neg. LLF: 120.15848818324534
Iteration: 8, Func. Count: 68, Neg. LLF: 120.11093679214912
Iteration: 9, Func. Count: 76, Neg. LLF: 120.10014537042485
Iteration: 10, Func. Count: 84, Neg. LLF: 120.09339047792518
Iteration: 11, Func. Count: 92, Neg. LLF: 120.09194501371604
Iteration: 12, Func. Count: 100, Neg. LLF: 120.09181326017463
Iteration: 13, Func. Count: 108, Neg. LLF: 120.09180380587411
Iteration: 14, Func. Count: 115, Neg. LLF: 120.0918038058424
Optimization terminated successfully (Exit mode 0)
Current function value: 120.09180380587411
Iterations: 14
Function evaluations: 115
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 123.46169772747982
Iteration: 2, Func. Count: 20, Neg. LLF: 130.3839838278905
Iteration: 3, Func. Count: 30, Neg. LLF: 120.52934798864374
Iteration: 4, Func. Count: 39, Neg. LLF: 136.15136078947705
Iteration: 5, Func. Count: 49, Neg. LLF: 120.29855510849949
Iteration: 6, Func. Count: 58, Neg. LLF: 120.22098995032621
Iteration: 7, Func. Count: 67, Neg. LLF: 120.12066237448232
Iteration: 8, Func. Count: 76, Neg. LLF: 120.10157392550799
Iteration: 9, Func. Count: 85, Neg. LLF: 120.09564425674871
Iteration: 10, Func. Count: 94, Neg. LLF: 120.09238123991199
Iteration: 11, Func. Count: 103, Neg. LLF: 120.09183046102852
Iteration: 12, Func. Count: 112, Neg. LLF: 120.09180484137777
Iteration: 13, Func. Count: 121, Neg. LLF: 120.09180352048067
Iteration: 14, Func. Count: 129, Neg. LLF: 120.09180355348991
Optimization terminated successfully (Exit mode 0)
Current function value: 120.09180352048067
Iterations: 14
Function evaluations: 129
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 123.79396831123206
Iteration: 2, Func. Count: 22, Neg. LLF: 130.33765367542736
Iteration: 3, Func. Count: 33, Neg. LLF: 120.55503880417784
Iteration: 4, Func. Count: 43, Neg. LLF: 137.87077511668488
Iteration: 5, Func. Count: 54, Neg. LLF: 120.32019212737393
Iteration: 6, Func. Count: 64, Neg. LLF: 120.22010756634603
Iteration: 7, Func. Count: 74, Neg. LLF: 120.1091955749289
Iteration: 8, Func. Count: 84, Neg. LLF: 120.09829048383035
Iteration: 9, Func. Count: 94, Neg. LLF: 120.09432615136566
Iteration: 10, Func. Count: 104, Neg. LLF: 120.09213839059828
Iteration: 11, Func. Count: 114, Neg. LLF: 120.09180918704756
Iteration: 12, Func. Count: 124, Neg. LLF: 120.09180505646579
Iteration: 13, Func. Count: 134, Neg. LLF: 120.09180349714124
Iteration: 14, Func. Count: 143, Neg. LLF: 120.09180356374283
Optimization terminated successfully (Exit mode 0)
Current function value: 120.09180349714124
Iterations: 14
Function evaluations: 143
Gradient evaluations: 14
Iteration: 1, Func. Count: 8, Neg. LLF: 127.42202630883266
Iteration: 2, Func. Count: 16, Neg. LLF: 147.69573957007287
Iteration: 3, Func. Count: 24, Neg. LLF: 120.2441110755168
Iteration: 4, Func. Count: 31, Neg. LLF: 126.72126802374449
Iteration: 5, Func. Count: 42, Neg. LLF: 120.12615248090539
Iteration: 6, Func. Count: 49, Neg. LLF: 120.11638067565123
Iteration: 7, Func. Count: 56, Neg. LLF: 120.1059753331946
Iteration: 8, Func. Count: 63, Neg. LLF: 120.09520618079738
Iteration: 9, Func. Count: 70, Neg. LLF: 120.09014452415578
Iteration: 10, Func. Count: 77, Neg. LLF: 120.08950694633637
Iteration: 11, Func. Count: 84, Neg. LLF: 120.0894975128876
Iteration: 12, Func. Count: 91, Neg. LLF: 120.08949591690917
Iteration: 13, Func. Count: 97, Neg. LLF: 120.0894959168997
Optimization terminated successfully (Exit mode 0)
Current function value: 120.08949591690917
Iterations: 13
Function evaluations: 97
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 122.76117118685846
Iteration: 2, Func. Count: 18, Neg. LLF: 131.4853351047603
Iteration: 3, Func. Count: 27, Neg. LLF: 120.50958589141621
Iteration: 4, Func. Count: 35, Neg. LLF: 136.67348380634283
Iteration: 5, Func. Count: 44, Neg. LLF: 120.12280285381176
Iteration: 6, Func. Count: 52, Neg. LLF: 120.10535168828832
Iteration: 7, Func. Count: 60, Neg. LLF: 120.09760757853842
Iteration: 8, Func. Count: 68, Neg. LLF: 120.09451683750915
Iteration: 9, Func. Count: 76, Neg. LLF: 120.09041510733582
Iteration: 10, Func. Count: 84, Neg. LLF: 120.08973947043377
Iteration: 11, Func. Count: 92, Neg. LLF: 120.0895004353959
Iteration: 12, Func. Count: 100, Neg. LLF: 120.0894961291824
Iteration: 13, Func. Count: 107, Neg. LLF: 120.08949626376857
Optimization terminated successfully (Exit mode 0)
Current function value: 120.0894961291824
Iterations: 13
Function evaluations: 107
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 124.17496483897858
Iteration: 2, Func. Count: 20, Neg. LLF: 131.90820484296702
Iteration: 3, Func. Count: 30, Neg. LLF: 120.59820103168543
Iteration: 4, Func. Count: 39, Neg. LLF: 141.40294238945643
Iteration: 5, Func. Count: 49, Neg. LLF: 120.12354412898013
Iteration: 6, Func. Count: 58, Neg. LLF: 120.10033735171054
Iteration: 7, Func. Count: 67, Neg. LLF: 120.08999138046242
Iteration: 8, Func. Count: 76, Neg. LLF: 120.08958085564205
Iteration: 9, Func. Count: 85, Neg. LLF: 120.089511908295
Iteration: 10, Func. Count: 94, Neg. LLF: 120.08950276355918
Iteration: 11, Func. Count: 103, Neg. LLF: 120.08949607102053
Iteration: 12, Func. Count: 111, Neg. LLF: 120.08949607208699
Optimization terminated successfully (Exit mode 0)
Current function value: 120.08949607102053
Iterations: 12
Function evaluations: 111
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 125.29916598292914
Iteration: 2, Func. Count: 22, Neg. LLF: 132.04382450944198
Iteration: 3, Func. Count: 33, Neg. LLF: 120.6061736200369
Iteration: 4, Func. Count: 43, Neg. LLF: 143.28989567664448
Iteration: 5, Func. Count: 54, Neg. LLF: 121.5523460494345
Iteration: 6, Func. Count: 65, Neg. LLF: 120.33198652257502
Iteration: 7, Func. Count: 76, Neg. LLF: 120.11056981323243
Iteration: 8, Func. Count: 86, Neg. LLF: 120.09167417871667
Iteration: 9, Func. Count: 96, Neg. LLF: 120.09039694212305
Iteration: 10, Func. Count: 106, Neg. LLF: 120.08993681740941
Iteration: 11, Func. Count: 116, Neg. LLF: 120.08976209916305
Iteration: 12, Func. Count: 126, Neg. LLF: 120.08959562350567
Iteration: 13, Func. Count: 136, Neg. LLF: 120.0895114996026
Iteration: 14, Func. Count: 146, Neg. LLF: 120.08949730996247
Iteration: 15, Func. Count: 156, Neg. LLF: 120.08949589990489
Iteration: 16, Func. Count: 165, Neg. LLF: 120.08949593216968
Optimization terminated successfully (Exit mode 0)
Current function value: 120.08949589990489
Iterations: 16
Function evaluations: 165
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 125.66211142782011
Iteration: 2, Func. Count: 24, Neg. LLF: 131.95997775780407
Iteration: 3, Func. Count: 36, Neg. LLF: 120.64719654416336
Iteration: 4, Func. Count: 47, Neg. LLF: 147.50019595113392
Iteration: 5, Func. Count: 59, Neg. LLF: 120.24039566445546
Iteration: 6, Func. Count: 70, Neg. LLF: 120.13429760662717
Iteration: 7, Func. Count: 81, Neg. LLF: 120.09758108026018
Iteration: 8, Func. Count: 92, Neg. LLF: 120.09051020086615
Iteration: 9, Func. Count: 103, Neg. LLF: 120.08973505891296
Iteration: 10, Func. Count: 114, Neg. LLF: 120.08961209706213
Iteration: 11, Func. Count: 125, Neg. LLF: 120.08953593367379
Iteration: 12, Func. Count: 136, Neg. LLF: 120.08950526995788
Iteration: 13, Func. Count: 147, Neg. LLF: 120.08949744534904
Iteration: 14, Func. Count: 158, Neg. LLF: 120.08949590667868
Iteration: 15, Func. Count: 168, Neg. LLF: 120.0894959728336
Optimization terminated successfully (Exit mode 0)
Current function value: 120.08949590667868
Iterations: 15
Function evaluations: 168
Gradient evaluations: 15
Iteration: 1, Func. Count: 9, Neg. LLF: 130.3372158599768
Iteration: 2, Func. Count: 18, Neg. LLF: 140.78592400345224
Iteration: 3, Func. Count: 27, Neg. LLF: 120.22961431498054
Iteration: 4, Func. Count: 35, Neg. LLF: 127.02073629076395
Iteration: 5, Func. Count: 47, Neg. LLF: 120.10873087459487
Iteration: 6, Func. Count: 55, Neg. LLF: 120.10361103701369
Iteration: 7, Func. Count: 63, Neg. LLF: 120.09652797888586
Iteration: 8, Func. Count: 71, Neg. LLF: 120.09305803215425
Iteration: 9, Func. Count: 79, Neg. LLF: 120.08964022637971
Iteration: 10, Func. Count: 87, Neg. LLF: 120.08951170701486
Iteration: 11, Func. Count: 95, Neg. LLF: 120.08949591647156
Iteration: 12, Func. Count: 102, Neg. LLF: 120.08949595356489
Optimization terminated successfully (Exit mode 0)
Current function value: 120.08949591647156
Iterations: 12
Function evaluations: 102
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 124.31277016824139
Iteration: 2, Func. Count: 20, Neg. LLF: 130.43141995467724
Iteration: 3, Func. Count: 30, Neg. LLF: 120.54880062192369
Iteration: 4, Func. Count: 39, Neg. LLF: 138.91998043340686
Iteration: 5, Func. Count: 49, Neg. LLF: 120.10265609253291
Iteration: 6, Func. Count: 58, Neg. LLF: 120.09834609363166
Iteration: 7, Func. Count: 67, Neg. LLF: 120.09406186002374
Iteration: 8, Func. Count: 76, Neg. LLF: 120.09215335449326
Iteration: 9, Func. Count: 85, Neg. LLF: 120.09057137352733
Iteration: 10, Func. Count: 94, Neg. LLF: 120.0897166774342
Iteration: 11, Func. Count: 103, Neg. LLF: 120.08952215613152
Iteration: 12, Func. Count: 112, Neg. LLF: 120.08949785842002
Iteration: 13, Func. Count: 121, Neg. LLF: 120.08949585930309
Iteration: 14, Func. Count: 129, Neg. LLF: 120.08949599394096
Optimization terminated successfully (Exit mode 0)
Current function value: 120.08949585930309
Iterations: 14
Function evaluations: 129
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 125.82282375919638
Iteration: 2, Func. Count: 22, Neg. LLF: 130.10173643960587
Iteration: 3, Func. Count: 33, Neg. LLF: 120.66084549813228
Iteration: 4, Func. Count: 43, Neg. LLF: 142.8223213145598
Iteration: 5, Func. Count: 54, Neg. LLF: 120.12631922558683
Iteration: 6, Func. Count: 64, Neg. LLF: 120.09767619819682
Iteration: 7, Func. Count: 74, Neg. LLF: 120.09234272151676
Iteration: 8, Func. Count: 84, Neg. LLF: 120.08980959438782
Iteration: 9, Func. Count: 94, Neg. LLF: 120.0895345677806
Iteration: 10, Func. Count: 104, Neg. LLF: 120.0894994283003
Iteration: 11, Func. Count: 114, Neg. LLF: 120.08949694927682
Iteration: 12, Func. Count: 124, Neg. LLF: 120.08949608390341
Optimization terminated successfully (Exit mode 0)
Current function value: 120.08949608390341
Iterations: 12
Function evaluations: 124
Gradient evaluations: 12
Iteration: 1, Func. Count: 12, Neg. LLF: 126.8306261629849
Iteration: 2, Func. Count: 24, Neg. LLF: 130.4080012480317
Iteration: 3, Func. Count: 36, Neg. LLF: 120.66359120987768
Iteration: 4, Func. Count: 47, Neg. LLF: 144.24454959964086
Iteration: 5, Func. Count: 59, Neg. LLF: 123.41285302660735
Iteration: 6, Func. Count: 71, Neg. LLF: 120.40416712681797
Iteration: 7, Func. Count: 83, Neg. LLF: 120.12349326549105
Iteration: 8, Func. Count: 94, Neg. LLF: 120.0999304260588
Iteration: 9, Func. Count: 105, Neg. LLF: 120.09173149111652
Iteration: 10, Func. Count: 116, Neg. LLF: 120.09111238183952
Iteration: 11, Func. Count: 127, Neg. LLF: 120.09051712236557
Iteration: 12, Func. Count: 138, Neg. LLF: 120.09012635105096
Iteration: 13, Func. Count: 149, Neg. LLF: 120.0898222259077
Iteration: 14, Func. Count: 160, Neg. LLF: 120.08956748647445
Iteration: 15, Func. Count: 171, Neg. LLF: 120.08950788429368
Iteration: 16, Func. Count: 182, Neg. LLF: 120.08949624542856
Iteration: 17, Func. Count: 192, Neg. LLF: 120.08949627773703
Optimization terminated successfully (Exit mode 0)
Current function value: 120.08949624542856
Iterations: 17
Function evaluations: 192
Gradient evaluations: 17
Iteration: 1, Func. Count: 13, Neg. LLF: 127.34337574857261
Iteration: 2, Func. Count: 26, Neg. LLF: 129.99574622217153
Iteration: 3, Func. Count: 39, Neg. LLF: 120.71720486973722
Iteration: 4, Func. Count: 51, Neg. LLF: 148.11515106922002
Iteration: 5, Func. Count: 64, Neg. LLF: 121.7997227749911
Iteration: 6, Func. Count: 77, Neg. LLF: 120.53619522751028
Iteration: 7, Func. Count: 90, Neg. LLF: 120.13475670254128
Iteration: 8, Func. Count: 102, Neg. LLF: 120.10103394661171
Iteration: 9, Func. Count: 114, Neg. LLF: 120.09308986172202
Iteration: 10, Func. Count: 126, Neg. LLF: 120.09110077289486
Iteration: 11, Func. Count: 138, Neg. LLF: 120.09032413485771
Iteration: 12, Func. Count: 150, Neg. LLF: 120.08997831421597
Iteration: 13, Func. Count: 162, Neg. LLF: 120.08976831904927
Iteration: 14, Func. Count: 174, Neg. LLF: 120.08954307736843
Iteration: 15, Func. Count: 186, Neg. LLF: 120.08950093935383
Iteration: 16, Func. Count: 198, Neg. LLF: 120.08949661218759
Iteration: 17, Func. Count: 210, Neg. LLF: 120.08949596662168
Optimization terminated successfully (Exit mode 0)
Current function value: 120.08949596662168
Iterations: 17
Function evaluations: 210
Gradient evaluations: 17
Iteration: 1, Func. Count: 6, Neg. LLF: 125.11546320008856
Iteration: 2, Func. Count: 12, Neg. LLF: 129.25066690946036
Iteration: 3, Func. Count: 18, Neg. LLF: 122.89589169792936
Iteration: 4, Func. Count: 23, Neg. LLF: 128.19490489127193
Iteration: 5, Func. Count: 29, Neg. LLF: 127.06811447220718
Iteration: 6, Func. Count: 35, Neg. LLF: 125.58586305979848
Iteration: 7, Func. Count: 41, Neg. LLF: 126.08006651885852
Iteration: 8, Func. Count: 47, Neg. LLF: 122.7806264406684
Iteration: 9, Func. Count: 53, Neg. LLF: 122.54616266558313
Iteration: 10, Func. Count: 58, Neg. LLF: 122.54294339955922
Iteration: 11, Func. Count: 63, Neg. LLF: 122.5408023813971
Iteration: 12, Func. Count: 68, Neg. LLF: 122.5400392995774
Iteration: 13, Func. Count: 73, Neg. LLF: 122.54000107715112
Iteration: 14, Func. Count: 78, Neg. LLF: 122.5400002909411
Optimization terminated successfully (Exit mode 0)
Current function value: 122.5400002909411
Iterations: 14
Function evaluations: 78
Gradient evaluations: 14
Iteration: 1, Func. Count: 7, Neg. LLF: 124.44143017333232
Iteration: 2, Func. Count: 14, Neg. LLF: 124.50597125960184
Iteration: 3, Func. Count: 21, Neg. LLF: 124.42206254845506
Iteration: 4, Func. Count: 28, Neg. LLF: 125.88237336631306
Iteration: 5, Func. Count: 35, Neg. LLF: 126.49942764760573
Iteration: 6, Func. Count: 42, Neg. LLF: 126.50890793535828
Iteration: 7, Func. Count: 49, Neg. LLF: 126.45812106955852
Iteration: 8, Func. Count: 56, Neg. LLF: 126.92222382718492
Iteration: 9, Func. Count: 63, Neg. LLF: 126.06538124496839
Iteration: 10, Func. Count: 70, Neg. LLF: 124.05644431865548
Iteration: 11, Func. Count: 77, Neg. LLF: 123.00687185638114
Iteration: 12, Func. Count: 84, Neg. LLF: 122.53522179068761
Iteration: 13, Func. Count: 91, Neg. LLF: 122.50198039323958
Iteration: 14, Func. Count: 97, Neg. LLF: 122.50156624703358
Iteration: 15, Func. Count: 103, Neg. LLF: 122.50154185384048
Iteration: 16, Func. Count: 109, Neg. LLF: 122.50146229180248
Iteration: 17, Func. Count: 115, Neg. LLF: 122.50144169166516
Iteration: 18, Func. Count: 121, Neg. LLF: 122.50143723024202
Iteration: 19, Func. Count: 126, Neg. LLF: 122.50143723029376
Optimization terminated successfully (Exit mode 0)
Current function value: 122.50143723024202
Iterations: 19
Function evaluations: 126
Gradient evaluations: 19
Iteration: 1, Func. Count: 8, Neg. LLF: 124.52021031396865
Iteration: 2, Func. Count: 16, Neg. LLF: 124.37247882243372
Iteration: 3, Func. Count: 24, Neg. LLF: 124.85268822902081
Iteration: 4, Func. Count: 32, Neg. LLF: 125.99567404997792
Iteration: 5, Func. Count: 40, Neg. LLF: 126.39094266394918
Iteration: 6, Func. Count: 48, Neg. LLF: 126.61828522555633
Iteration: 7, Func. Count: 56, Neg. LLF: 126.60425182504784
Iteration: 8, Func. Count: 64, Neg. LLF: 130.21472491756657
Iteration: 9, Func. Count: 72, Neg. LLF: 125.57915655260383
Iteration: 10, Func. Count: 80, Neg. LLF: 126.43105110787508
Iteration: 11, Func. Count: 88, Neg. LLF: 122.61448117924265
Iteration: 12, Func. Count: 95, Neg. LLF: 122.51393124473132
Iteration: 13, Func. Count: 102, Neg. LLF: 122.51229122517096
Iteration: 14, Func. Count: 110, Neg. LLF: 122.50377926743607
Iteration: 15, Func. Count: 117, Neg. LLF: 122.50264907380858
Iteration: 16, Func. Count: 124, Neg. LLF: 122.50175536756976
Iteration: 17, Func. Count: 131, Neg. LLF: 122.5014562775764
Iteration: 18, Func. Count: 138, Neg. LLF: 122.5014373821557
Iteration: 19, Func. Count: 144, Neg. LLF: 122.5014374619337
Optimization terminated successfully (Exit mode 0)
Current function value: 122.5014373821557
Iterations: 19
Function evaluations: 144
Gradient evaluations: 19
Iteration: 1, Func. Count: 9, Neg. LLF: 124.66281745654797
Iteration: 2, Func. Count: 18, Neg. LLF: 124.23408307641553
Iteration: 3, Func. Count: 27, Neg. LLF: 127.68362076568256
Iteration: 4, Func. Count: 36, Neg. LLF: 123.10962941612873
Iteration: 5, Func. Count: 44, Neg. LLF: 123.98850521493111
Iteration: 6, Func. Count: 53, Neg. LLF: 125.65079916531292
Iteration: 7, Func. Count: 62, Neg. LLF: 122.54579713087385
Iteration: 8, Func. Count: 70, Neg. LLF: 125.12249214094844
Iteration: 9, Func. Count: 79, Neg. LLF: 122.50675610446008
Iteration: 10, Func. Count: 87, Neg. LLF: 122.50227242233665
Iteration: 11, Func. Count: 95, Neg. LLF: 122.50150103215005
Iteration: 12, Func. Count: 103, Neg. LLF: 122.50144351870414
Iteration: 13, Func. Count: 111, Neg. LLF: 122.5014372006151
Iteration: 14, Func. Count: 118, Neg. LLF: 122.5014373287332
Optimization terminated successfully (Exit mode 0)
Current function value: 122.5014372006151
Iterations: 14
Function evaluations: 118
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 124.61942316189233
Iteration: 2, Func. Count: 20, Neg. LLF: 124.29917487305809
Iteration: 3, Func. Count: 30, Neg. LLF: 127.88384600223198
Iteration: 4, Func. Count: 40, Neg. LLF: 136.21297822333509
Iteration: 5, Func. Count: 50, Neg. LLF: 122.74099214956458
Iteration: 6, Func. Count: 59, Neg. LLF: 125.84457969317714
Iteration: 7, Func. Count: 69, Neg. LLF: 123.83173287306319
Iteration: 8, Func. Count: 79, Neg. LLF: 122.64615607399314
Iteration: 9, Func. Count: 89, Neg. LLF: 122.54533600678694
Iteration: 10, Func. Count: 98, Neg. LLF: 123.3954992728686
Iteration: 11, Func. Count: 108, Neg. LLF: 122.51103057772077
Iteration: 12, Func. Count: 117, Neg. LLF: 122.50305319150604
Iteration: 13, Func. Count: 126, Neg. LLF: 122.50156017009407
Iteration: 14, Func. Count: 135, Neg. LLF: 122.50144538687252
Iteration: 15, Func. Count: 144, Neg. LLF: 122.50143724294404
Iteration: 16, Func. Count: 152, Neg. LLF: 122.50143738798658
Optimization terminated successfully (Exit mode 0)
Current function value: 122.50143724294404
Iterations: 16
Function evaluations: 152
Gradient evaluations: 16
Iteration: 1, Func. Count: 7, Neg. LLF: 121.08250305666998
Iteration: 2, Func. Count: 13, Neg. LLF: 125.14437217900053
Iteration: 3, Func. Count: 20, Neg. LLF: 120.7177206081851
Iteration: 4, Func. Count: 26, Neg. LLF: 121.11149717032508
Iteration: 5, Func. Count: 33, Neg. LLF: 122.10393332185795
Iteration: 6, Func. Count: 40, Neg. LLF: 120.17272020182631
Iteration: 7, Func. Count: 46, Neg. LLF: 120.15272422615212
Iteration: 8, Func. Count: 52, Neg. LLF: 120.15113482472233
Iteration: 9, Func. Count: 58, Neg. LLF: 120.1510851731984
Iteration: 10, Func. Count: 63, Neg. LLF: 120.15108517318373
Optimization terminated successfully (Exit mode 0)
Current function value: 120.1510851731984
Iterations: 10
Function evaluations: 63
Gradient evaluations: 10
Iteration: 1, Func. Count: 8, Neg. LLF: 121.62883635379085
Iteration: 2, Func. Count: 15, Neg. LLF: 122.98257198899331
Iteration: 3, Func. Count: 23, Neg. LLF: 120.36510702038888
Iteration: 4, Func. Count: 30, Neg. LLF: 121.02561830544093
Iteration: 5, Func. Count: 38, Neg. LLF: 120.18976757768621
Iteration: 6, Func. Count: 45, Neg. LLF: 120.15333324338462
Iteration: 7, Func. Count: 52, Neg. LLF: 120.15119493321534
Iteration: 8, Func. Count: 59, Neg. LLF: 120.15108552902946
Iteration: 9, Func. Count: 65, Neg. LLF: 120.15108566763764
Optimization terminated successfully (Exit mode 0)
Current function value: 120.15108552902946
Iterations: 9
Function evaluations: 65
Gradient evaluations: 9
Iteration: 1, Func. Count: 9, Neg. LLF: 121.50020148807789
Iteration: 2, Func. Count: 17, Neg. LLF: 121.61221699022057
Iteration: 3, Func. Count: 26, Neg. LLF: 131.71257600294044
Iteration: 4, Func. Count: 35, Neg. LLF: 132.6288089113795
Iteration: 5, Func. Count: 44, Neg. LLF: 131.90600102511078
Iteration: 6, Func. Count: 53, Neg. LLF: 124.56943487713276
Iteration: 7, Func. Count: 62, Neg. LLF: 120.3687962764031
Iteration: 8, Func. Count: 71, Neg. LLF: 120.09338479378485
Iteration: 9, Func. Count: 79, Neg. LLF: 120.09205249101062
Iteration: 10, Func. Count: 87, Neg. LLF: 120.09186239349984
Iteration: 11, Func. Count: 95, Neg. LLF: 120.0918075034632
Iteration: 12, Func. Count: 103, Neg. LLF: 120.0918035400524
Iteration: 13, Func. Count: 110, Neg. LLF: 120.0918035400826
Optimization terminated successfully (Exit mode 0)
Current function value: 120.0918035400524
Iterations: 13
Function evaluations: 110
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 121.72018868247721
Iteration: 2, Func. Count: 19, Neg. LLF: 122.9166693261165
Iteration: 3, Func. Count: 29, Neg. LLF: 132.34216129167268
Iteration: 4, Func. Count: 39, Neg. LLF: 148.71217910571744
Iteration: 5, Func. Count: 50, Neg. LLF: 132.7614601189489
Iteration: 6, Func. Count: 60, Neg. LLF: 132.27069441316496
Iteration: 7, Func. Count: 70, Neg. LLF: 132.56897217109767
Iteration: 8, Func. Count: 80, Neg. LLF: 131.45676652026592
Iteration: 9, Func. Count: 90, Neg. LLF: 120.58436785792145
Iteration: 10, Func. Count: 100, Neg. LLF: 120.11984233267908
Iteration: 11, Func. Count: 109, Neg. LLF: 120.09900240471377
Iteration: 12, Func. Count: 118, Neg. LLF: 120.09443359095523
Iteration: 13, Func. Count: 127, Neg. LLF: 120.09216771726902
Iteration: 14, Func. Count: 136, Neg. LLF: 120.09186220393532
Iteration: 15, Func. Count: 145, Neg. LLF: 120.09180528576512
Iteration: 16, Func. Count: 154, Neg. LLF: 120.09180349544864
Iteration: 17, Func. Count: 162, Neg. LLF: 120.09180352846454
Optimization terminated successfully (Exit mode 0)
Current function value: 120.09180349544864
Iterations: 17
Function evaluations: 162
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 121.78065507233917
Iteration: 2, Func. Count: 21, Neg. LLF: 123.18962816366356
Iteration: 3, Func. Count: 32, Neg. LLF: 132.63695101831087
Iteration: 4, Func. Count: 43, Neg. LLF: 181.13799438236734
Iteration: 5, Func. Count: 55, Neg. LLF: 132.74020167229767
Iteration: 6, Func. Count: 66, Neg. LLF: 132.23655458597793
Iteration: 7, Func. Count: 77, Neg. LLF: 132.56797193256
Iteration: 8, Func. Count: 88, Neg. LLF: 131.34627174782386
Iteration: 9, Func. Count: 99, Neg. LLF: 120.6276424394045
Iteration: 10, Func. Count: 110, Neg. LLF: 120.11497534652126
Iteration: 11, Func. Count: 120, Neg. LLF: 120.09856864855244
Iteration: 12, Func. Count: 130, Neg. LLF: 120.09375368282026
Iteration: 13, Func. Count: 140, Neg. LLF: 120.09226962541231
Iteration: 14, Func. Count: 150, Neg. LLF: 120.09185006357534
Iteration: 15, Func. Count: 160, Neg. LLF: 120.09180557766831
Iteration: 16, Func. Count: 170, Neg. LLF: 120.09180352877858
Iteration: 17, Func. Count: 179, Neg. LLF: 120.09180359538922
Optimization terminated successfully (Exit mode 0)
Current function value: 120.09180352877858
Iterations: 17
Function evaluations: 179
Gradient evaluations: 17
Iteration: 1, Func. Count: 8, Neg. LLF: 121.35294538700921
Iteration: 2, Func. Count: 16, Neg. LLF: 120.66872162083396
Iteration: 3, Func. Count: 23, Neg. LLF: 119.58743603389888
Iteration: 4, Func. Count: 30, Neg. LLF: 129.29319574655702
Iteration: 5, Func. Count: 38, Neg. LLF: 119.71974443751968
Iteration: 6, Func. Count: 46, Neg. LLF: 119.39096442678814
Iteration: 7, Func. Count: 53, Neg. LLF: 119.38803231014336
Iteration: 8, Func. Count: 60, Neg. LLF: 119.38794075059096
Iteration: 9, Func. Count: 67, Neg. LLF: 119.3878125954182
Iteration: 10, Func. Count: 74, Neg. LLF: 119.38778237764136
Iteration: 11, Func. Count: 81, Neg. LLF: 119.38777971432349
Iteration: 12, Func. Count: 87, Neg. LLF: 119.38777955682286
Optimization terminated successfully (Exit mode 0)
Current function value: 119.38777971432349
Iterations: 12
Function evaluations: 87
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 121.53065269254887
Iteration: 2, Func. Count: 17, Neg. LLF: 125.21155664939832
Iteration: 3, Func. Count: 26, Neg. LLF: 120.53615192731829
Iteration: 4, Func. Count: 34, Neg. LLF: 123.80628435987836
Iteration: 5, Func. Count: 43, Neg. LLF: 128.8945356514468
Iteration: 6, Func. Count: 52, Neg. LLF: 128.35880925687064
Iteration: 7, Func. Count: 61, Neg. LLF: 128.3262091581843
Iteration: 8, Func. Count: 70, Neg. LLF: 128.43626628768303
Iteration: 9, Func. Count: 79, Neg. LLF: 128.51995570334103
Iteration: 10, Func. Count: 88, Neg. LLF: 128.4108207262392
Iteration: 11, Func. Count: 97, Neg. LLF: 128.42527359067148
Iteration: 12, Func. Count: 106, Neg. LLF: 128.28753870787068
Iteration: 13, Func. Count: 115, Neg. LLF: 120.03168999399767
Iteration: 14, Func. Count: 124, Neg. LLF: 119.7326733256329
Iteration: 15, Func. Count: 133, Neg. LLF: 119.70566671521816
Iteration: 16, Func. Count: 141, Neg. LLF: 119.66928578295312
Iteration: 17, Func. Count: 149, Neg. LLF: 119.53340734477513
Iteration: 18, Func. Count: 157, Neg. LLF: 119.45031059935644
Iteration: 19, Func. Count: 165, Neg. LLF: 119.3960408696894
Iteration: 20, Func. Count: 173, Neg. LLF: 119.40063359845949
Iteration: 21, Func. Count: 182, Neg. LLF: 119.38835494593809
Iteration: 22, Func. Count: 190, Neg. LLF: 119.38778800909549
Iteration: 23, Func. Count: 198, Neg. LLF: 119.3877800948087
Iteration: 24, Func. Count: 205, Neg. LLF: 119.38778010790918
Optimization terminated successfully (Exit mode 0)
Current function value: 119.3877800948087
Iterations: 24
Function evaluations: 205
Gradient evaluations: 24
Iteration: 1, Func. Count: 10, Neg. LLF: 121.3668526406333
Iteration: 2, Func. Count: 19, Neg. LLF: 121.13661227920127
Iteration: 3, Func. Count: 29, Neg. LLF: 132.66183621741763
Iteration: 4, Func. Count: 39, Neg. LLF: 128.417369216963
Iteration: 5, Func. Count: 49, Neg. LLF: 128.65091049699427
Iteration: 6, Func. Count: 59, Neg. LLF: 128.8104838864456
Iteration: 7, Func. Count: 69, Neg. LLF: 128.725630070424
Iteration: 8, Func. Count: 79, Neg. LLF: 128.61853097117432
Iteration: 9, Func. Count: 89, Neg. LLF: 128.54072754350577
Iteration: 10, Func. Count: 99, Neg. LLF: 128.49189586635472
Iteration: 11, Func. Count: 109, Neg. LLF: 128.46634466333336
Iteration: 12, Func. Count: 119, Neg. LLF: 128.45708815981664
Iteration: 13, Func. Count: 129, Neg. LLF: 128.45713425545532
Iteration: 14, Func. Count: 139, Neg. LLF: 120.4981473178752
Iteration: 15, Func. Count: 149, Neg. LLF: 119.59960268056854
Iteration: 16, Func. Count: 159, Neg. LLF: 119.49588347367761
Iteration: 17, Func. Count: 168, Neg. LLF: 119.47931780519474
Iteration: 18, Func. Count: 177, Neg. LLF: 119.41702278152981
Iteration: 19, Func. Count: 186, Neg. LLF: 119.3906080719955
Iteration: 20, Func. Count: 195, Neg. LLF: 119.68605399836973
Iteration: 21, Func. Count: 206, Neg. LLF: 119.38821069978447
Iteration: 22, Func. Count: 215, Neg. LLF: 119.38779007248161
Iteration: 23, Func. Count: 224, Neg. LLF: 119.38777987321455
Iteration: 24, Func. Count: 232, Neg. LLF: 119.38777999877226
Optimization terminated successfully (Exit mode 0)
Current function value: 119.38777987321455
Iterations: 24
Function evaluations: 232
Gradient evaluations: 24
Iteration: 1, Func. Count: 11, Neg. LLF: 121.3619877114232
Iteration: 2, Func. Count: 21, Neg. LLF: 121.57294972318773
Iteration: 3, Func. Count: 32, Neg. LLF: 128.2065417019265
Iteration: 4, Func. Count: 43, Neg. LLF: 128.9418923160545
Iteration: 5, Func. Count: 54, Neg. LLF: 129.055994306204
Iteration: 6, Func. Count: 65, Neg. LLF: 128.8759193372764
Iteration: 7, Func. Count: 76, Neg. LLF: 128.73706815619147
Iteration: 8, Func. Count: 87, Neg. LLF: 128.65015687943293
Iteration: 9, Func. Count: 98, Neg. LLF: 128.59445756852105
Iteration: 10, Func. Count: 109, Neg. LLF: 128.55189280942452
Iteration: 11, Func. Count: 120, Neg. LLF: 128.5163950887022
Iteration: 12, Func. Count: 131, Neg. LLF: 128.48616447748117
Iteration: 13, Func. Count: 142, Neg. LLF: 128.46174915278397
Iteration: 14, Func. Count: 153, Neg. LLF: 128.442711945125
Iteration: 15, Func. Count: 164, Neg. LLF: 119.89419386484882
Iteration: 16, Func. Count: 175, Neg. LLF: 119.54152841515732
Iteration: 17, Func. Count: 185, Neg. LLF: 119.51556294542954
Iteration: 18, Func. Count: 195, Neg. LLF: 119.49431106464213
Iteration: 19, Func. Count: 205, Neg. LLF: 119.41811180387708
Iteration: 20, Func. Count: 215, Neg. LLF: 119.38864638064405
Iteration: 21, Func. Count: 225, Neg. LLF: 119.38816239174253
Iteration: 22, Func. Count: 235, Neg. LLF: 119.3878204659039
Iteration: 23, Func. Count: 245, Neg. LLF: 119.38778804051618
Iteration: 24, Func. Count: 255, Neg. LLF: 119.38777977406467
Iteration: 25, Func. Count: 264, Neg. LLF: 119.38777979729447
Optimization terminated successfully (Exit mode 0)
Current function value: 119.38777977406467
Iterations: 25
Function evaluations: 264
Gradient evaluations: 25
Iteration: 1, Func. Count: 12, Neg. LLF: 121.3444567612939
Iteration: 2, Func. Count: 23, Neg. LLF: 121.58291403540686
Iteration: 3, Func. Count: 35, Neg. LLF: 128.26785180115198
Iteration: 4, Func. Count: 47, Neg. LLF: 129.01694140986578
Iteration: 5, Func. Count: 59, Neg. LLF: 129.1079775574131
Iteration: 6, Func. Count: 71, Neg. LLF: 128.86112883458205
Iteration: 7, Func. Count: 83, Neg. LLF: 128.72539758737219
Iteration: 8, Func. Count: 95, Neg. LLF: 128.6450363828885
Iteration: 9, Func. Count: 107, Neg. LLF: 128.59918581283733
Iteration: 10, Func. Count: 119, Neg. LLF: 128.56238318464335
Iteration: 11, Func. Count: 131, Neg. LLF: 128.53152828364475
Iteration: 12, Func. Count: 143, Neg. LLF: 128.50387257138516
Iteration: 13, Func. Count: 155, Neg. LLF: 128.48118596319316
Iteration: 14, Func. Count: 167, Neg. LLF: 128.46278247452733
Iteration: 15, Func. Count: 179, Neg. LLF: 119.88690519818739
Iteration: 16, Func. Count: 191, Neg. LLF: 119.54412101948634
Iteration: 17, Func. Count: 202, Neg. LLF: 119.51987125853886
Iteration: 18, Func. Count: 213, Neg. LLF: 119.49695881766193
Iteration: 19, Func. Count: 224, Neg. LLF: 119.41422667077892
Iteration: 20, Func. Count: 235, Neg. LLF: 119.3920002319909
Iteration: 21, Func. Count: 246, Neg. LLF: 119.38853621486933
Iteration: 22, Func. Count: 257, Neg. LLF: 119.3878003443114
Iteration: 23, Func. Count: 268, Neg. LLF: 119.38778432558769
Iteration: 24, Func. Count: 279, Neg. LLF: 119.38777995413068
Iteration: 25, Func. Count: 289, Neg. LLF: 119.38778007989828
Optimization terminated successfully (Exit mode 0)
Current function value: 119.38777995413068
Iterations: 25
Function evaluations: 289
Gradient evaluations: 25
Iteration: 1, Func. Count: 9, Neg. LLF: 121.06090077224606
Iteration: 2, Func. Count: 17, Neg. LLF: 122.49256373359079
Iteration: 3, Func. Count: 27, Neg. LLF: 121.2638565904959
Iteration: 4, Func. Count: 36, Neg. LLF: 120.33338720188785
Iteration: 5, Func. Count: 44, Neg. LLF: 119.98941991968641
Iteration: 6, Func. Count: 52, Neg. LLF: 119.98199083695322
Iteration: 7, Func. Count: 61, Neg. LLF: 119.86254761393467
Iteration: 8, Func. Count: 69, Neg. LLF: 119.75962562060072
Iteration: 9, Func. Count: 77, Neg. LLF: 127.20909396356468
Iteration: 10, Func. Count: 86, Neg. LLF: 119.53224167856162
Iteration: 11, Func. Count: 94, Neg. LLF: 119.46770004069448
Iteration: 12, Func. Count: 102, Neg. LLF: 119.40048903386429
Iteration: 13, Func. Count: 110, Neg. LLF: 119.3892019281319
Iteration: 14, Func. Count: 118, Neg. LLF: 119.38800740715533
Iteration: 15, Func. Count: 126, Neg. LLF: 119.38778813722966
Iteration: 16, Func. Count: 134, Neg. LLF: 119.38777968823163
Iteration: 17, Func. Count: 141, Neg. LLF: 119.38777969835972
Optimization terminated successfully (Exit mode 0)
Current function value: 119.38777968823163
Iterations: 17
Function evaluations: 141
Gradient evaluations: 17
Iteration: 1, Func. Count: 10, Neg. LLF: 121.36304477866594
Iteration: 2, Func. Count: 19, Neg. LLF: 121.26082889135472
Iteration: 3, Func. Count: 29, Neg. LLF: 123.1209462850141
Iteration: 4, Func. Count: 39, Neg. LLF: 128.3102317571965
Iteration: 5, Func. Count: 49, Neg. LLF: 128.77427014389505
Iteration: 6, Func. Count: 59, Neg. LLF: 129.03314057027455
Iteration: 7, Func. Count: 69, Neg. LLF: 128.95579875974994
Iteration: 8, Func. Count: 79, Neg. LLF: 128.91240868401636
Iteration: 9, Func. Count: 89, Neg. LLF: 128.86917673273788
Iteration: 10, Func. Count: 99, Neg. LLF: 128.8153217564078
Iteration: 11, Func. Count: 109, Neg. LLF: 128.79386715591048
Iteration: 12, Func. Count: 119, Neg. LLF: 128.70332788689555
Iteration: 13, Func. Count: 129, Neg. LLF: 120.60090427190772
Iteration: 14, Func. Count: 139, Neg. LLF: 128.1669330835858
Iteration: 15, Func. Count: 149, Neg. LLF: 119.5919961804442
Iteration: 16, Func. Count: 159, Neg. LLF: 119.43592363446731
Iteration: 17, Func. Count: 168, Neg. LLF: 119.4148366262093
Iteration: 18, Func. Count: 177, Neg. LLF: 119.39806266497584
Iteration: 19, Func. Count: 186, Neg. LLF: 119.38980431495361
Iteration: 20, Func. Count: 195, Neg. LLF: 119.38819264071644
Iteration: 21, Func. Count: 204, Neg. LLF: 119.38781504041849
Iteration: 22, Func. Count: 213, Neg. LLF: 119.38777995348138
Iteration: 23, Func. Count: 221, Neg. LLF: 119.3877799665883
Optimization terminated successfully (Exit mode 0)
Current function value: 119.38777995348138
Iterations: 23
Function evaluations: 221
Gradient evaluations: 23
Iteration: 1, Func. Count: 11, Neg. LLF: 121.41871468844802
Iteration: 2, Func. Count: 21, Neg. LLF: 122.75768064691846
Iteration: 3, Func. Count: 32, Neg. LLF: 119.91354141483639
Iteration: 4, Func. Count: 42, Neg. LLF: 119.91214816642619
Iteration: 5, Func. Count: 53, Neg. LLF: 119.60568851466452
Iteration: 6, Func. Count: 63, Neg. LLF: 120.31852464785669
Iteration: 7, Func. Count: 74, Neg. LLF: 119.4116257896299
Iteration: 8, Func. Count: 84, Neg. LLF: 119.40545615696894
Iteration: 9, Func. Count: 95, Neg. LLF: 119.38797290729038
Iteration: 10, Func. Count: 105, Neg. LLF: 119.38778209552589
Iteration: 11, Func. Count: 115, Neg. LLF: 119.38777966613941
Iteration: 12, Func. Count: 124, Neg. LLF: 119.38777979165971
Optimization terminated successfully (Exit mode 0)
Current function value: 119.38777966613941
Iterations: 12
Function evaluations: 124
Gradient evaluations: 12
Iteration: 1, Func. Count: 12, Neg. LLF: 121.58739164265072
Iteration: 2, Func. Count: 23, Neg. LLF: 125.98725168404523
Iteration: 3, Func. Count: 35, Neg. LLF: 123.71537560186549
Iteration: 4, Func. Count: 47, Neg. LLF: 130.92603712549737
Iteration: 5, Func. Count: 59, Neg. LLF: 131.86139238836014
Iteration: 6, Func. Count: 71, Neg. LLF: 132.08804950727887
Iteration: 7, Func. Count: 83, Neg. LLF: 130.24279930725825
Iteration: 8, Func. Count: 95, Neg. LLF: 129.45374909811352
Iteration: 9, Func. Count: 107, Neg. LLF: 129.1683302169878
Iteration: 10, Func. Count: 119, Neg. LLF: 128.99526402825336
Iteration: 11, Func. Count: 131, Neg. LLF: 128.86378309756742
Iteration: 12, Func. Count: 143, Neg. LLF: 128.76126833865283
Iteration: 13, Func. Count: 155, Neg. LLF: 128.68313258765397
Iteration: 14, Func. Count: 167, Neg. LLF: 120.95926926812707
Iteration: 15, Func. Count: 179, Neg. LLF: 120.17155078023839
Iteration: 16, Func. Count: 191, Neg. LLF: 119.83718723225644
Iteration: 17, Func. Count: 202, Neg. LLF: 119.78262435825879
Iteration: 18, Func. Count: 213, Neg. LLF: 119.75129437158515
Iteration: 19, Func. Count: 224, Neg. LLF: 119.61646523127524
Iteration: 20, Func. Count: 235, Neg. LLF: 119.55735442891614
Iteration: 21, Func. Count: 246, Neg. LLF: 119.42587106413288
Iteration: 22, Func. Count: 257, Neg. LLF: 119.40548925508382
Iteration: 23, Func. Count: 268, Neg. LLF: 119.38933285911007
Iteration: 24, Func. Count: 279, Neg. LLF: 119.38797857504143
Iteration: 25, Func. Count: 290, Neg. LLF: 119.38778319253854
Iteration: 26, Func. Count: 301, Neg. LLF: 119.38777986564321
Iteration: 27, Func. Count: 311, Neg. LLF: 119.3877798888827
Optimization terminated successfully (Exit mode 0)
Current function value: 119.38777986564321
Iterations: 27
Function evaluations: 311
Gradient evaluations: 27
Iteration: 1, Func. Count: 13, Neg. LLF: 121.52374712815546
Iteration: 2, Func. Count: 25, Neg. LLF: 125.1888896682283
Iteration: 3, Func. Count: 38, Neg. LLF: 123.84966050256851
Iteration: 4, Func. Count: 51, Neg. LLF: 131.1376609144629
Iteration: 5, Func. Count: 64, Neg. LLF: 131.96498911652117
Iteration: 6, Func. Count: 77, Neg. LLF: 131.91255853296002
Iteration: 7, Func. Count: 90, Neg. LLF: 130.56380724726347
Iteration: 8, Func. Count: 103, Neg. LLF: 129.5529814707156
Iteration: 9, Func. Count: 116, Neg. LLF: 129.19912867397954
Iteration: 10, Func. Count: 129, Neg. LLF: 129.01906106339135
Iteration: 11, Func. Count: 142, Neg. LLF: 128.8961280047482
Iteration: 12, Func. Count: 155, Neg. LLF: 128.80513129938322
Iteration: 13, Func. Count: 168, Neg. LLF: 128.73724409625586
Iteration: 14, Func. Count: 181, Neg. LLF: 121.36291570368066
Iteration: 15, Func. Count: 194, Neg. LLF: 120.23153084114368
Iteration: 16, Func. Count: 207, Neg. LLF: 119.8433393702648
Iteration: 17, Func. Count: 219, Neg. LLF: 119.77816906626491
Iteration: 18, Func. Count: 231, Neg. LLF: 119.74944028842143
Iteration: 19, Func. Count: 243, Neg. LLF: 119.62681603362839
Iteration: 20, Func. Count: 255, Neg. LLF: 119.56541895592818
Iteration: 21, Func. Count: 267, Neg. LLF: 119.42798250687471
Iteration: 22, Func. Count: 279, Neg. LLF: 119.40669196171963
Iteration: 23, Func. Count: 291, Neg. LLF: 119.38865774541559
Iteration: 24, Func. Count: 303, Neg. LLF: 119.38782463193698
Iteration: 25, Func. Count: 315, Neg. LLF: 119.38778165682601
Iteration: 26, Func. Count: 327, Neg. LLF: 119.38777983912156
Iteration: 27, Func. Count: 338, Neg. LLF: 119.38777996497672
Optimization terminated successfully (Exit mode 0)
Current function value: 119.38777983912156
Iterations: 27
Function evaluations: 338
Gradient evaluations: 27
Iteration: 1, Func. Count: 10, Neg. LLF: 122.55945158919855
Iteration: 2, Func. Count: 20, Neg. LLF: 134.21108072256683
Iteration: 3, Func. Count: 30, Neg. LLF: 120.26903747786919
Iteration: 4, Func. Count: 39, Neg. LLF: 135.82733859388546
Iteration: 5, Func. Count: 49, Neg. LLF: 120.03672314738795
Iteration: 6, Func. Count: 58, Neg. LLF: 119.97538853483697
Iteration: 7, Func. Count: 67, Neg. LLF: 119.9186956653828
Iteration: 8, Func. Count: 76, Neg. LLF: 119.90788541687954
Iteration: 9, Func. Count: 85, Neg. LLF: 119.88733581708621
Iteration: 10, Func. Count: 94, Neg. LLF: 119.87171081733752
Iteration: 11, Func. Count: 103, Neg. LLF: 119.78414122348389
Iteration: 12, Func. Count: 112, Neg. LLF: 119.67090427649084
Iteration: 13, Func. Count: 121, Neg. LLF: 119.48813594416589
Iteration: 14, Func. Count: 130, Neg. LLF: 119.53761238489457
Iteration: 15, Func. Count: 140, Neg. LLF: 119.38818848144507
Iteration: 16, Func. Count: 149, Neg. LLF: 119.38781091063136
Iteration: 17, Func. Count: 158, Neg. LLF: 119.38778365019849
Iteration: 18, Func. Count: 167, Neg. LLF: 119.38777863144665
Iteration: 19, Func. Count: 176, Neg. LLF: 119.38777564009656
Optimization terminated successfully (Exit mode 0)
Current function value: 119.38777862632796
Iterations: 19
Function evaluations: 186
Gradient evaluations: 19
Iteration: 1, Func. Count: 11, Neg. LLF: 121.75301195970007
Iteration: 2, Func. Count: 21, Neg. LLF: 126.53445170482698
Iteration: 3, Func. Count: 32, Neg. LLF: 121.96713099024635
Iteration: 4, Func. Count: 43, Neg. LLF: 120.12725199357865
Iteration: 5, Func. Count: 53, Neg. LLF: 119.88869833785346
Iteration: 6, Func. Count: 63, Neg. LLF: 119.69753562834853
Iteration: 7, Func. Count: 73, Neg. LLF: 120.79131066681907
Iteration: 8, Func. Count: 84, Neg. LLF: 119.47424950363008
Iteration: 9, Func. Count: 94, Neg. LLF: 119.82746893727808
Iteration: 10, Func. Count: 105, Neg. LLF: 119.38913587102981
Iteration: 11, Func. Count: 115, Neg. LLF: 119.38828962507151
Iteration: 12, Func. Count: 125, Neg. LLF: 119.38789576573929
Iteration: 13, Func. Count: 135, Neg. LLF: 119.38780207111513
Iteration: 14, Func. Count: 145, Neg. LLF: 119.38777993024888
Iteration: 15, Func. Count: 154, Neg. LLF: 119.38777994327135
Optimization terminated successfully (Exit mode 0)
Current function value: 119.38777993024888
Iterations: 15
Function evaluations: 154
Gradient evaluations: 15
Iteration: 1, Func. Count: 12, Neg. LLF: 122.29471218244615
Iteration: 2, Func. Count: 24, Neg. LLF: 132.21457998900402
Iteration: 3, Func. Count: 36, Neg. LLF: 120.6210390324797
Iteration: 4, Func. Count: 47, Neg. LLF: 134.00292290606492
Iteration: 5, Func. Count: 59, Neg. LLF: 120.13820543483821
Iteration: 6, Func. Count: 70, Neg. LLF: 120.10122910105672
Iteration: 7, Func. Count: 81, Neg. LLF: 120.00604679637708
Iteration: 8, Func. Count: 92, Neg. LLF: 119.99107454404813
Iteration: 9, Func. Count: 103, Neg. LLF: 119.98016881501647
Iteration: 10, Func. Count: 114, Neg. LLF: 119.92334695501422
Iteration: 11, Func. Count: 125, Neg. LLF: 119.49229016607622
Iteration: 12, Func. Count: 136, Neg. LLF: 129.94893685111384
Iteration: 13, Func. Count: 148, Neg. LLF: 119.40239102989712
Iteration: 14, Func. Count: 159, Neg. LLF: 119.38866675961313
Iteration: 15, Func. Count: 170, Neg. LLF: 119.38781701235405
Iteration: 16, Func. Count: 181, Neg. LLF: 119.387780808506
Iteration: 17, Func. Count: 192, Neg. LLF: 119.3877796612439
Iteration: 18, Func. Count: 202, Neg. LLF: 119.3877797867636
Optimization terminated successfully (Exit mode 0)
Current function value: 119.3877796612439
Iterations: 18
Function evaluations: 202
Gradient evaluations: 18
Iteration: 1, Func. Count: 13, Neg. LLF: 122.65793851736417
Iteration: 2, Func. Count: 26, Neg. LLF: 134.38923755003583
Iteration: 3, Func. Count: 39, Neg. LLF: 120.61564233979662
Iteration: 4, Func. Count: 51, Neg. LLF: 134.2741446616082
Iteration: 5, Func. Count: 64, Neg. LLF: 129.06590948300368
Iteration: 6, Func. Count: 77, Neg. LLF: 120.10861914876467
Iteration: 7, Func. Count: 89, Neg. LLF: 120.04173659649167
Iteration: 8, Func. Count: 101, Neg. LLF: 119.99350399271219
Iteration: 9, Func. Count: 113, Neg. LLF: 119.98374858920334
Iteration: 10, Func. Count: 125, Neg. LLF: 119.96190248726899
Iteration: 11, Func. Count: 137, Neg. LLF: 119.93153493781998
Iteration: 12, Func. Count: 149, Neg. LLF: 121.99785477466078
Iteration: 13, Func. Count: 162, Neg. LLF: 128.64879332814144
Iteration: 14, Func. Count: 175, Neg. LLF: 134.51257547182436
Iteration: 15, Func. Count: 188, Neg. LLF: 129.05853353068989
Iteration: 16, Func. Count: 201, Neg. LLF: 121.13828222678276
Iteration: 17, Func. Count: 214, Neg. LLF: 119.86048244657105
Iteration: 18, Func. Count: 227, Neg. LLF: 119.4633536364022
Iteration: 19, Func. Count: 239, Neg. LLF: 119.38995638451242
Iteration: 20, Func. Count: 251, Neg. LLF: 119.38782841435152
Iteration: 21, Func. Count: 263, Neg. LLF: 119.38777970028107
Iteration: 22, Func. Count: 274, Neg. LLF: 119.38777972354418
Optimization terminated successfully (Exit mode 0)
Current function value: 119.38777970028107
Iterations: 22
Function evaluations: 274
Gradient evaluations: 22
Iteration: 1, Func. Count: 14, Neg. LLF: 122.65664526484734
Iteration: 2, Func. Count: 28, Neg. LLF: 133.48647827831473
Iteration: 3, Func. Count: 42, Neg. LLF: 120.64779378213896
Iteration: 4, Func. Count: 55, Neg. LLF: 136.74496988971254
Iteration: 5, Func. Count: 69, Neg. LLF: 129.36048407945788
Iteration: 6, Func. Count: 83, Neg. LLF: 120.13984868254039
Iteration: 7, Func. Count: 96, Neg. LLF: 119.99187305929013
Iteration: 8, Func. Count: 109, Neg. LLF: 119.98389410214111
Iteration: 9, Func. Count: 122, Neg. LLF: 119.96265124438303
Iteration: 10, Func. Count: 135, Neg. LLF: 119.85795266333804
Iteration: 11, Func. Count: 148, Neg. LLF: 128.66204026338687
Iteration: 12, Func. Count: 162, Neg. LLF: 129.4161576456619
Iteration: 13, Func. Count: 176, Neg. LLF: 129.61460754481877
Iteration: 14, Func. Count: 190, Neg. LLF: 129.65011918832414
Iteration: 15, Func. Count: 204, Neg. LLF: 129.40171889544862
Iteration: 16, Func. Count: 218, Neg. LLF: 121.01501229403218
Iteration: 17, Func. Count: 232, Neg. LLF: 130.22625203711905
Iteration: 18, Func. Count: 246, Neg. LLF: 119.43045783472965
Iteration: 19, Func. Count: 259, Neg. LLF: 119.40193690872269
Iteration: 20, Func. Count: 272, Neg. LLF: 119.39458524048749
Iteration: 21, Func. Count: 285, Neg. LLF: 119.38785021562846
Iteration: 22, Func. Count: 298, Neg. LLF: 119.3877869288746
Iteration: 23, Func. Count: 311, Neg. LLF: 119.38777991762188
Iteration: 24, Func. Count: 323, Neg. LLF: 119.3877800433819
Optimization terminated successfully (Exit mode 0)
Current function value: 119.38777991762188
Iterations: 24
Function evaluations: 323
Gradient evaluations: 24
Iteration: 1, Func. Count: 7, Neg. LLF: 124.7259731533934
Iteration: 2, Func. Count: 14, Neg. LLF: 124.54965397927889
Iteration: 3, Func. Count: 21, Neg. LLF: 123.5878979359783
Iteration: 4, Func. Count: 28, Neg. LLF: 122.81656824089778
Iteration: 5, Func. Count: 34, Neg. LLF: 164.6161138894901
Iteration: 6, Func. Count: 41, Neg. LLF: 122.71703844039327
Iteration: 7, Func. Count: 48, Neg. LLF: 125.77795156469247
Iteration: 8, Func. Count: 55, Neg. LLF: 122.537637505161
Iteration: 9, Func. Count: 61, Neg. LLF: 122.49962010527017
Iteration: 10, Func. Count: 67, Neg. LLF: 122.4882527331201
Iteration: 11, Func. Count: 73, Neg. LLF: 122.48699655446883
Iteration: 12, Func. Count: 79, Neg. LLF: 122.48695757222912
Iteration: 13, Func. Count: 84, Neg. LLF: 122.48695757211541
Optimization terminated successfully (Exit mode 0)
Current function value: 122.48695757222912
Iterations: 13
Function evaluations: 84
Gradient evaluations: 13
Iteration: 1, Func. Count: 8, Neg. LLF: 124.63811199482564
Iteration: 2, Func. Count: 16, Neg. LLF: 125.04585689597788
Iteration: 3, Func. Count: 24, Neg. LLF: 124.65448519189664
Iteration: 4, Func. Count: 32, Neg. LLF: 122.67464368900417
Iteration: 5, Func. Count: 39, Neg. LLF: 126.19656995630507
Iteration: 6, Func. Count: 47, Neg. LLF: 122.52734884191985
Iteration: 7, Func. Count: 54, Neg. LLF: 123.24704429926764
Iteration: 8, Func. Count: 62, Neg. LLF: 122.49296808441227
Iteration: 9, Func. Count: 69, Neg. LLF: 122.48789444170949
Iteration: 10, Func. Count: 76, Neg. LLF: 122.48710671458285
Iteration: 11, Func. Count: 83, Neg. LLF: 122.48696287413347
Iteration: 12, Func. Count: 90, Neg. LLF: 122.48695683481945
Iteration: 13, Func. Count: 96, Neg. LLF: 122.48695683954784
Optimization terminated successfully (Exit mode 0)
Current function value: 122.48695683481945
Iterations: 13
Function evaluations: 96
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 124.86732881707191
Iteration: 2, Func. Count: 18, Neg. LLF: 124.90213721196241
Iteration: 3, Func. Count: 27, Neg. LLF: 124.74284117207094
Iteration: 4, Func. Count: 36, Neg. LLF: 122.65621735144249
Iteration: 5, Func. Count: 44, Neg. LLF: 126.33978387136217
Iteration: 6, Func. Count: 53, Neg. LLF: 122.61384850947984
Iteration: 7, Func. Count: 62, Neg. LLF: 122.56449924727086
Iteration: 8, Func. Count: 71, Neg. LLF: 122.49397433948265
Iteration: 9, Func. Count: 79, Neg. LLF: 122.49326539044657
Iteration: 10, Func. Count: 88, Neg. LLF: 122.48723329935598
Iteration: 11, Func. Count: 96, Neg. LLF: 122.48697190281923
Iteration: 12, Func. Count: 104, Neg. LLF: 122.4869592176965
Iteration: 13, Func. Count: 112, Neg. LLF: 122.48695711431562
Iteration: 14, Func. Count: 119, Neg. LLF: 122.48695719377253
Optimization terminated successfully (Exit mode 0)
Current function value: 122.48695711431562
Iterations: 14
Function evaluations: 119
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 124.95289460889875
Iteration: 2, Func. Count: 20, Neg. LLF: 124.5295097192142
Iteration: 3, Func. Count: 30, Neg. LLF: 124.880935221383
Iteration: 4, Func. Count: 40, Neg. LLF: 125.80142826657348
Iteration: 5, Func. Count: 50, Neg. LLF: 122.6455385982595
Iteration: 6, Func. Count: 59, Neg. LLF: 126.07684070332242
Iteration: 7, Func. Count: 69, Neg. LLF: 122.74573096215687
Iteration: 8, Func. Count: 79, Neg. LLF: 122.58417764677743
Iteration: 9, Func. Count: 89, Neg. LLF: 122.51583869810399
Iteration: 10, Func. Count: 98, Neg. LLF: 122.63510842530353
Iteration: 11, Func. Count: 108, Neg. LLF: 122.49368888408844
Iteration: 12, Func. Count: 117, Neg. LLF: 122.48734749982373
Iteration: 13, Func. Count: 126, Neg. LLF: 122.48697290577272
Iteration: 14, Func. Count: 135, Neg. LLF: 122.4869576432099
Iteration: 15, Func. Count: 144, Neg. LLF: 122.4869568644357
Optimization terminated successfully (Exit mode 0)
Current function value: 122.4869568644357
Iterations: 15
Function evaluations: 144
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 124.89377621948468
Iteration: 2, Func. Count: 22, Neg. LLF: 124.04061489100224
Iteration: 3, Func. Count: 33, Neg. LLF: 123.32722161629464
Iteration: 4, Func. Count: 44, Neg. LLF: 126.76278889503023
Iteration: 5, Func. Count: 55, Neg. LLF: 127.27690059911959
Iteration: 6, Func. Count: 66, Neg. LLF: 126.252210747054
Iteration: 7, Func. Count: 77, Neg. LLF: 126.5634132918882
Iteration: 8, Func. Count: 88, Neg. LLF: 125.99679455127026
Iteration: 9, Func. Count: 99, Neg. LLF: 123.18055419964503
Iteration: 10, Func. Count: 110, Neg. LLF: 125.26302941396494
Iteration: 11, Func. Count: 121, Neg. LLF: 123.2532662657075
Iteration: 12, Func. Count: 133, Neg. LLF: 122.48979395359133
Iteration: 13, Func. Count: 143, Neg. LLF: 122.48767564279903
Iteration: 14, Func. Count: 153, Neg. LLF: 122.48748677858688
Iteration: 15, Func. Count: 163, Neg. LLF: 122.48740200167796
Iteration: 16, Func. Count: 173, Neg. LLF: 122.48715076002702
Iteration: 17, Func. Count: 183, Neg. LLF: 122.48699520757623
Iteration: 18, Func. Count: 193, Neg. LLF: 122.48695934479878
Iteration: 19, Func. Count: 203, Neg. LLF: 122.48695671477324
Iteration: 20, Func. Count: 212, Neg. LLF: 122.48695685528055
Optimization terminated successfully (Exit mode 0)
Current function value: 122.48695671477324
Iterations: 20
Function evaluations: 212
Gradient evaluations: 20
Iteration: 1, Func. Count: 8, Neg. LLF: 122.00030180057726
Iteration: 2, Func. Count: 16, Neg. LLF: 130.21643703880272
Iteration: 3, Func. Count: 24, Neg. LLF: 120.27666865196858
Iteration: 4, Func. Count: 31, Neg. LLF: 132.39060875366425
Iteration: 5, Func. Count: 39, Neg. LLF: 120.07325058058694
Iteration: 6, Func. Count: 46, Neg. LLF: 120.05610619603839
Iteration: 7, Func. Count: 53, Neg. LLF: 120.05268805129244
Iteration: 8, Func. Count: 60, Neg. LLF: 120.05194747707293
Iteration: 9, Func. Count: 67, Neg. LLF: 120.05185199647181
Iteration: 10, Func. Count: 74, Neg. LLF: 120.05184245730652
Iteration: 11, Func. Count: 80, Neg. LLF: 120.0518424573008
Optimization terminated successfully (Exit mode 0)
Current function value: 120.05184245730652
Iterations: 11
Function evaluations: 80
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 121.6234928999439
Iteration: 2, Func. Count: 17, Neg. LLF: 123.44721637951548
Iteration: 3, Func. Count: 26, Neg. LLF: 122.12452366722893
Iteration: 4, Func. Count: 35, Neg. LLF: 130.67174295775973
Iteration: 5, Func. Count: 44, Neg. LLF: 131.83920670869355
Iteration: 6, Func. Count: 53, Neg. LLF: 132.4403040727018
Iteration: 7, Func. Count: 62, Neg. LLF: 122.32116711720278
Iteration: 8, Func. Count: 71, Neg. LLF: 120.22130395018816
Iteration: 9, Func. Count: 80, Neg. LLF: 120.05483606846569
Iteration: 10, Func. Count: 88, Neg. LLF: 120.05194741150507
Iteration: 11, Func. Count: 96, Neg. LLF: 120.05187292244753
Iteration: 12, Func. Count: 104, Neg. LLF: 120.05184342362293
Iteration: 13, Func. Count: 112, Neg. LLF: 120.05184256856768
Optimization terminated successfully (Exit mode 0)
Current function value: 120.05184256856768
Iterations: 13
Function evaluations: 112
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 122.09419283003697
Iteration: 2, Func. Count: 20, Neg. LLF: 127.89840552965534
Iteration: 3, Func. Count: 30, Neg. LLF: 120.6610505988437
Iteration: 4, Func. Count: 39, Neg. LLF: 134.59628790722138
Iteration: 5, Func. Count: 49, Neg. LLF: 121.17035547475687
Iteration: 6, Func. Count: 59, Neg. LLF: 120.08892478966335
Iteration: 7, Func. Count: 68, Neg. LLF: 120.06209815873962
Iteration: 8, Func. Count: 77, Neg. LLF: 120.05554669470713
Iteration: 9, Func. Count: 86, Neg. LLF: 120.05301967087168
Iteration: 10, Func. Count: 95, Neg. LLF: 120.05213979315432
Iteration: 11, Func. Count: 104, Neg. LLF: 120.05184814767104
Iteration: 12, Func. Count: 113, Neg. LLF: 120.05184250063571
Iteration: 13, Func. Count: 121, Neg. LLF: 120.0518425099907
Optimization terminated successfully (Exit mode 0)
Current function value: 120.05184250063571
Iterations: 13
Function evaluations: 121
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 122.42635602743844
Iteration: 2, Func. Count: 22, Neg. LLF: 128.8118701555187
Iteration: 3, Func. Count: 33, Neg. LLF: 120.68075858717746
Iteration: 4, Func. Count: 43, Neg. LLF: 134.91297088343333
Iteration: 5, Func. Count: 54, Neg. LLF: 125.90710139647987
Iteration: 6, Func. Count: 65, Neg. LLF: 120.10723145962552
Iteration: 7, Func. Count: 75, Neg. LLF: 120.06458523836325
Iteration: 8, Func. Count: 85, Neg. LLF: 120.05343966434532
Iteration: 9, Func. Count: 95, Neg. LLF: 120.05209684713536
Iteration: 10, Func. Count: 105, Neg. LLF: 120.05198664593398
Iteration: 11, Func. Count: 115, Neg. LLF: 120.05191056097667
Iteration: 12, Func. Count: 125, Neg. LLF: 120.05185643163162
Iteration: 13, Func. Count: 135, Neg. LLF: 120.05184366479526
Iteration: 14, Func. Count: 145, Neg. LLF: 120.05184244495125
Iteration: 15, Func. Count: 154, Neg. LLF: 120.05184247805454
Optimization terminated successfully (Exit mode 0)
Current function value: 120.05184244495125
Iterations: 15
Function evaluations: 154
Gradient evaluations: 15
Iteration: 1, Func. Count: 12, Neg. LLF: 122.50949627603916
Iteration: 2, Func. Count: 24, Neg. LLF: 128.54767455632273
Iteration: 3, Func. Count: 36, Neg. LLF: 120.71195010451301
Iteration: 4, Func. Count: 47, Neg. LLF: 135.85210317146175
Iteration: 5, Func. Count: 59, Neg. LLF: 127.0635431039006
Iteration: 6, Func. Count: 71, Neg. LLF: 120.21706694728447
Iteration: 7, Func. Count: 82, Neg. LLF: 120.07868532071026
Iteration: 8, Func. Count: 93, Neg. LLF: 120.12362179365401
Iteration: 9, Func. Count: 105, Neg. LLF: 120.05389635050662
Iteration: 10, Func. Count: 116, Neg. LLF: 120.05219356494106
Iteration: 11, Func. Count: 127, Neg. LLF: 120.05187415285859
Iteration: 12, Func. Count: 138, Neg. LLF: 120.05185362865244
Iteration: 13, Func. Count: 149, Neg. LLF: 120.05184872038193
Iteration: 14, Func. Count: 160, Neg. LLF: 120.0518454011849
Iteration: 15, Func. Count: 171, Neg. LLF: 120.05184290564281
Iteration: 16, Func. Count: 181, Neg. LLF: 120.05184298157015
Optimization terminated successfully (Exit mode 0)
Current function value: 120.05184290564281
Iterations: 16
Function evaluations: 181
Gradient evaluations: 16
Iteration: 1, Func. Count: 9, Neg. LLF: 121.14953817300379
Iteration: 2, Func. Count: 18, Neg. LLF: 122.55217038807181
Iteration: 3, Func. Count: 27, Neg. LLF: 120.20264304152057
Iteration: 4, Func. Count: 35, Neg. LLF: 125.02924699574608
Iteration: 5, Func. Count: 46, Neg. LLF: 120.02783495042414
Iteration: 6, Func. Count: 54, Neg. LLF: 119.90240089084783
Iteration: 7, Func. Count: 62, Neg. LLF: 119.85537443283792
Iteration: 8, Func. Count: 70, Neg. LLF: 119.75098606732531
Iteration: 9, Func. Count: 78, Neg. LLF: 119.65370052874026
Iteration: 10, Func. Count: 86, Neg. LLF: 126.20004228913578
Iteration: 11, Func. Count: 95, Neg. LLF: 129.36016197417771
Iteration: 12, Func. Count: 104, Neg. LLF: 119.48536930077111
Iteration: 13, Func. Count: 112, Neg. LLF: 119.44430730923422
Iteration: 14, Func. Count: 120, Neg. LLF: 119.42007182821214
Iteration: 15, Func. Count: 128, Neg. LLF: 119.37648295381217
Iteration: 16, Func. Count: 136, Neg. LLF: 119.36524370872127
Iteration: 17, Func. Count: 144, Neg. LLF: 119.36225039800742
Iteration: 18, Func. Count: 152, Neg. LLF: 119.36217129309513
Iteration: 19, Func. Count: 160, Neg. LLF: 119.36217005253683
Iteration: 20, Func. Count: 167, Neg. LLF: 119.36216990141146
Optimization terminated successfully (Exit mode 0)
Current function value: 119.36217005253683
Iterations: 20
Function evaluations: 167
Gradient evaluations: 20
Iteration: 1, Func. Count: 10, Neg. LLF: 121.31914144225566
Iteration: 2, Func. Count: 19, Neg. LLF: 121.19204934899177
Iteration: 3, Func. Count: 29, Neg. LLF: 120.44849287422265
Iteration: 4, Func. Count: 38, Neg. LLF: 127.70656737952568
Iteration: 5, Func. Count: 48, Neg. LLF: 128.8858451070781
Iteration: 6, Func. Count: 58, Neg. LLF: 128.90164569798222
Iteration: 7, Func. Count: 68, Neg. LLF: 129.1739448250954
Iteration: 8, Func. Count: 78, Neg. LLF: 129.37478612413886
Iteration: 9, Func. Count: 88, Neg. LLF: 129.08823045078603
Iteration: 10, Func. Count: 98, Neg. LLF: 129.3900877239286
Iteration: 11, Func. Count: 108, Neg. LLF: 126.17047098109913
Iteration: 12, Func. Count: 118, Neg. LLF: 129.75376715383908
Iteration: 13, Func. Count: 128, Neg. LLF: 119.4420350880795
Iteration: 14, Func. Count: 138, Neg. LLF: 119.37641952223665
Iteration: 15, Func. Count: 147, Neg. LLF: 119.37291838210496
Iteration: 16, Func. Count: 156, Neg. LLF: 119.36541422645143
Iteration: 17, Func. Count: 165, Neg. LLF: 119.36242102906282
Iteration: 18, Func. Count: 174, Neg. LLF: 119.36217507501978
Iteration: 19, Func. Count: 183, Neg. LLF: 119.36217006889969
Iteration: 20, Func. Count: 191, Neg. LLF: 119.3621701106514
Optimization terminated successfully (Exit mode 0)
Current function value: 119.36217006889969
Iterations: 20
Function evaluations: 191
Gradient evaluations: 20
Iteration: 1, Func. Count: 11, Neg. LLF: 121.54485913769459
Iteration: 2, Func. Count: 21, Neg. LLF: 124.76050680475245
Iteration: 3, Func. Count: 32, Neg. LLF: 122.12789522639761
Iteration: 4, Func. Count: 43, Neg. LLF: 131.3061039860739
Iteration: 5, Func. Count: 54, Neg. LLF: 133.18522170640531
Iteration: 6, Func. Count: 65, Neg. LLF: 131.22112825244128
Iteration: 7, Func. Count: 76, Neg. LLF: 129.82054939339716
Iteration: 8, Func. Count: 87, Neg. LLF: 129.72335753250317
Iteration: 9, Func. Count: 98, Neg. LLF: 130.06593609947996
Iteration: 10, Func. Count: 109, Neg. LLF: 130.32527672983147
Iteration: 11, Func. Count: 120, Neg. LLF: 130.35171461102405
Iteration: 12, Func. Count: 131, Neg. LLF: 130.43499434334376
Iteration: 13, Func. Count: 142, Neg. LLF: 120.9970587431252
Iteration: 14, Func. Count: 153, Neg. LLF: 119.95655561341322
Iteration: 15, Func. Count: 164, Neg. LLF: 119.76519180012735
Iteration: 16, Func. Count: 174, Neg. LLF: 119.73276616738411
Iteration: 17, Func. Count: 184, Neg. LLF: 119.7306407279096
Iteration: 18, Func. Count: 195, Neg. LLF: 119.66524638865243
Iteration: 19, Func. Count: 205, Neg. LLF: 119.5553885283536
Iteration: 20, Func. Count: 215, Neg. LLF: 119.44766670879974
Iteration: 21, Func. Count: 225, Neg. LLF: 119.37059367350332
Iteration: 22, Func. Count: 235, Neg. LLF: 119.36291316884018
Iteration: 23, Func. Count: 245, Neg. LLF: 119.36235364810295
Iteration: 24, Func. Count: 255, Neg. LLF: 119.36217425135133
Iteration: 25, Func. Count: 265, Neg. LLF: 119.3621702495058
Iteration: 26, Func. Count: 274, Neg. LLF: 119.36217038106375
Optimization terminated successfully (Exit mode 0)
Current function value: 119.3621702495058
Iterations: 26
Function evaluations: 274
Gradient evaluations: 26
Iteration: 1, Func. Count: 12, Neg. LLF: 121.67834729970906
Iteration: 2, Func. Count: 23, Neg. LLF: 127.96819882689374
Iteration: 3, Func. Count: 35, Neg. LLF: 121.7575602583157
Iteration: 4, Func. Count: 47, Neg. LLF: 131.42157278628687
Iteration: 5, Func. Count: 59, Neg. LLF: 132.55985470372167
Iteration: 6, Func. Count: 71, Neg. LLF: 131.65315529266795
Iteration: 7, Func. Count: 83, Neg. LLF: 128.03502470697526
Iteration: 8, Func. Count: 95, Neg. LLF: 129.79301931186652
Iteration: 9, Func. Count: 107, Neg. LLF: 129.7997072399894
Iteration: 10, Func. Count: 119, Neg. LLF: 129.86806798813905
Iteration: 11, Func. Count: 131, Neg. LLF: 122.03685058031104
Iteration: 12, Func. Count: 143, Neg. LLF: 120.34381998011581
Iteration: 13, Func. Count: 155, Neg. LLF: 119.87725603422615
Iteration: 14, Func. Count: 166, Neg. LLF: 119.8569095829047
Iteration: 15, Func. Count: 177, Neg. LLF: 119.83017571931454
Iteration: 16, Func. Count: 188, Neg. LLF: 119.78625473510448
Iteration: 17, Func. Count: 199, Neg. LLF: 119.75157400965125
Iteration: 18, Func. Count: 210, Neg. LLF: 119.66090746220996
Iteration: 19, Func. Count: 221, Neg. LLF: 119.56480766665965
Iteration: 20, Func. Count: 232, Neg. LLF: 119.39369677824541
Iteration: 21, Func. Count: 243, Neg. LLF: 119.3981788200785
Iteration: 22, Func. Count: 255, Neg. LLF: 119.3659046532347
Iteration: 23, Func. Count: 266, Neg. LLF: 119.36223778138314
Iteration: 24, Func. Count: 277, Neg. LLF: 119.36217178338838
Iteration: 25, Func. Count: 288, Neg. LLF: 119.36217004506217
Iteration: 26, Func. Count: 298, Neg. LLF: 119.36217007700023
Optimization terminated successfully (Exit mode 0)
Current function value: 119.36217004506217
Iterations: 26
Function evaluations: 298
Gradient evaluations: 26
Iteration: 1, Func. Count: 13, Neg. LLF: 121.64546603818626
Iteration: 2, Func. Count: 25, Neg. LLF: 127.5725747511685
Iteration: 3, Func. Count: 38, Neg. LLF: 121.77754566288685
Iteration: 4, Func. Count: 51, Neg. LLF: 131.46337019920173
Iteration: 5, Func. Count: 64, Neg. LLF: 132.68774546089205
Iteration: 6, Func. Count: 77, Neg. LLF: 131.61321266958169
Iteration: 7, Func. Count: 90, Neg. LLF: 130.23198107732102
Iteration: 8, Func. Count: 103, Neg. LLF: 129.83000189249267
Iteration: 9, Func. Count: 116, Neg. LLF: 129.86011981154653
Iteration: 10, Func. Count: 129, Neg. LLF: 129.92640779150827
Iteration: 11, Func. Count: 142, Neg. LLF: 121.91304610928572
Iteration: 12, Func. Count: 155, Neg. LLF: 120.31065793995377
Iteration: 13, Func. Count: 168, Neg. LLF: 119.86720845159286
Iteration: 14, Func. Count: 180, Neg. LLF: 119.84557694689036
Iteration: 15, Func. Count: 192, Neg. LLF: 119.82006461678074
Iteration: 16, Func. Count: 204, Neg. LLF: 119.77472877255991
Iteration: 17, Func. Count: 216, Neg. LLF: 119.76667010466183
Iteration: 18, Func. Count: 229, Neg. LLF: 119.60946377541983
Iteration: 19, Func. Count: 241, Neg. LLF: 119.45907451781112
Iteration: 20, Func. Count: 253, Neg. LLF: 119.3849302597305
Iteration: 21, Func. Count: 265, Neg. LLF: 119.39921159117824
Iteration: 22, Func. Count: 278, Neg. LLF: 119.37268833128297
Iteration: 23, Func. Count: 291, Neg. LLF: 119.3622208311524
Iteration: 24, Func. Count: 303, Neg. LLF: 119.36217026845766
Iteration: 25, Func. Count: 314, Neg. LLF: 119.36217040556836
Optimization terminated successfully (Exit mode 0)
Current function value: 119.36217026845766
Iterations: 25
Function evaluations: 314
Gradient evaluations: 25
Iteration: 1, Func. Count: 10, Neg. LLF: 121.59692653016546
Iteration: 2, Func. Count: 20, Neg. LLF: 127.63820753145671
Iteration: 3, Func. Count: 30, Neg. LLF: 120.70087319654219
Iteration: 4, Func. Count: 39, Neg. LLF: 122.1187097725386
Iteration: 5, Func. Count: 51, Neg. LLF: 120.67269227730145
Iteration: 6, Func. Count: 61, Neg. LLF: 120.16331179688014
Iteration: 7, Func. Count: 70, Neg. LLF: 120.0765555450031
Iteration: 8, Func. Count: 79, Neg. LLF: 120.03897379799943
Iteration: 9, Func. Count: 88, Neg. LLF: 119.9845714517238
Iteration: 10, Func. Count: 97, Neg. LLF: 119.9438294404899
Iteration: 11, Func. Count: 106, Neg. LLF: 119.92986913545803
Iteration: 12, Func. Count: 115, Neg. LLF: 119.9188871963747
Iteration: 13, Func. Count: 124, Neg. LLF: 119.89063852961257
Iteration: 14, Func. Count: 133, Neg. LLF: 120.04931559467647
Iteration: 15, Func. Count: 143, Neg. LLF: 121.11324062539597
Iteration: 16, Func. Count: 153, Neg. LLF: 123.33903461041722
Iteration: 17, Func. Count: 163, Neg. LLF: 121.10786531151015
Iteration: 18, Func. Count: 173, Neg. LLF: 119.7930188387543
Iteration: 19, Func. Count: 183, Neg. LLF: 119.44862618966498
Iteration: 20, Func. Count: 192, Neg. LLF: 119.35699426133579
Iteration: 21, Func. Count: 201, Neg. LLF: 119.34662047790613
Iteration: 22, Func. Count: 210, Neg. LLF: 119.34565054775949
Iteration: 23, Func. Count: 219, Neg. LLF: 119.34545554958136
Iteration: 24, Func. Count: 228, Neg. LLF: 119.34540759942458
Iteration: 25, Func. Count: 236, Neg. LLF: 119.34540759324354
Optimization terminated successfully (Exit mode 0)
Current function value: 119.34540759942458
Iterations: 25
Function evaluations: 236
Gradient evaluations: 25
Iteration: 1, Func. Count: 11, Neg. LLF: 121.6155485723035
Iteration: 2, Func. Count: 21, Neg. LLF: 128.22149041614466
Iteration: 3, Func. Count: 32, Neg. LLF: 123.8323863782145
Iteration: 4, Func. Count: 44, Neg. LLF: 123.28034969514613
Iteration: 5, Func. Count: 55, Neg. LLF: 130.9344453043465
Iteration: 6, Func. Count: 66, Neg. LLF: 131.85851621341564
Iteration: 7, Func. Count: 77, Neg. LLF: 130.46430351106707
Iteration: 8, Func. Count: 88, Neg. LLF: 129.43328528777147
Iteration: 9, Func. Count: 99, Neg. LLF: 129.2843533216978
Iteration: 10, Func. Count: 110, Neg. LLF: 129.40159342610653
Iteration: 11, Func. Count: 121, Neg. LLF: 129.49314997738443
Iteration: 12, Func. Count: 132, Neg. LLF: 129.50807902140266
Iteration: 13, Func. Count: 143, Neg. LLF: 123.94734197728702
Iteration: 14, Func. Count: 154, Neg. LLF: 120.14911230763471
Iteration: 15, Func. Count: 165, Neg. LLF: 119.81130450452287
Iteration: 16, Func. Count: 175, Neg. LLF: 119.77667468522219
Iteration: 17, Func. Count: 185, Neg. LLF: 119.74034131461985
Iteration: 18, Func. Count: 195, Neg. LLF: 119.56485862838316
Iteration: 19, Func. Count: 205, Neg. LLF: 119.70066967674612
Iteration: 20, Func. Count: 216, Neg. LLF: 119.36294612386892
Iteration: 21, Func. Count: 226, Neg. LLF: 119.3469634285682
Iteration: 22, Func. Count: 236, Neg. LLF: 119.34559932453791
Iteration: 23, Func. Count: 246, Neg. LLF: 119.34541260758775
Iteration: 24, Func. Count: 256, Neg. LLF: 119.34540742610099
Iteration: 25, Func. Count: 265, Neg. LLF: 119.34540747856312
Optimization terminated successfully (Exit mode 0)
Current function value: 119.34540742610099
Iterations: 25
Function evaluations: 265
Gradient evaluations: 25
Iteration: 1, Func. Count: 12, Neg. LLF: 121.97688717568094
Iteration: 2, Func. Count: 24, Neg. LLF: 132.90601409041145
Iteration: 3, Func. Count: 36, Neg. LLF: 120.41858465450335
Iteration: 4, Func. Count: 47, Neg. LLF: 122.93843888115389
Iteration: 5, Func. Count: 60, Neg. LLF: 120.30088233985032
Iteration: 6, Func. Count: 71, Neg. LLF: 120.16996068026032
Iteration: 7, Func. Count: 82, Neg. LLF: 120.04062317507511
Iteration: 8, Func. Count: 93, Neg. LLF: 120.05472276870226
Iteration: 9, Func. Count: 105, Neg. LLF: 119.95892628360215
Iteration: 10, Func. Count: 116, Neg. LLF: 119.93574473669655
Iteration: 11, Func. Count: 127, Neg. LLF: 119.92791802496592
Iteration: 12, Func. Count: 138, Neg. LLF: 119.9062578868007
Iteration: 13, Func. Count: 149, Neg. LLF: 119.78070756495991
Iteration: 14, Func. Count: 160, Neg. LLF: 130.0102101799887
Iteration: 15, Func. Count: 172, Neg. LLF: 119.65455826915533
Iteration: 16, Func. Count: 183, Neg. LLF: 119.71691352751859
Iteration: 17, Func. Count: 195, Neg. LLF: 119.49437428451279
Iteration: 18, Func. Count: 206, Neg. LLF: 119.40160375617518
Iteration: 19, Func. Count: 217, Neg. LLF: 119.36155856381565
Iteration: 20, Func. Count: 228, Neg. LLF: 119.34761025828105
Iteration: 21, Func. Count: 239, Neg. LLF: 119.34574432694968
Iteration: 22, Func. Count: 250, Neg. LLF: 119.34547048679403
Iteration: 23, Func. Count: 261, Neg. LLF: 119.34541675160816
Iteration: 24, Func. Count: 272, Neg. LLF: 119.3454073111701
Iteration: 25, Func. Count: 282, Neg. LLF: 119.34540743742174
Optimization terminated successfully (Exit mode 0)
Current function value: 119.3454073111701
Iterations: 25
Function evaluations: 282
Gradient evaluations: 25
Iteration: 1, Func. Count: 13, Neg. LLF: 122.1288798937857
Iteration: 2, Func. Count: 26, Neg. LLF: 134.0212906821023
Iteration: 3, Func. Count: 39, Neg. LLF: 120.48241576709262
Iteration: 4, Func. Count: 51, Neg. LLF: 122.47480327075394
Iteration: 5, Func. Count: 65, Neg. LLF: 120.39839453289464
Iteration: 6, Func. Count: 78, Neg. LLF: 120.07382420001305
Iteration: 7, Func. Count: 90, Neg. LLF: 120.04770978727285
Iteration: 8, Func. Count: 102, Neg. LLF: 119.97706762577005
Iteration: 9, Func. Count: 114, Neg. LLF: 119.94739564281282
Iteration: 10, Func. Count: 126, Neg. LLF: 119.93419072142632
Iteration: 11, Func. Count: 138, Neg. LLF: 119.92285938170508
Iteration: 12, Func. Count: 150, Neg. LLF: 119.90658311431166
Iteration: 13, Func. Count: 162, Neg. LLF: 119.86049195241229
Iteration: 14, Func. Count: 174, Neg. LLF: 119.72347939510438
Iteration: 15, Func. Count: 186, Neg. LLF: 119.5295416545473
Iteration: 16, Func. Count: 198, Neg. LLF: 119.57330890932506
Iteration: 17, Func. Count: 211, Neg. LLF: 119.370533779546
Iteration: 18, Func. Count: 223, Neg. LLF: 119.34842069252807
Iteration: 19, Func. Count: 235, Neg. LLF: 119.34556802343953
Iteration: 20, Func. Count: 247, Neg. LLF: 119.34542328636081
Iteration: 21, Func. Count: 259, Neg. LLF: 119.34540734937242
Iteration: 22, Func. Count: 270, Neg. LLF: 119.34540737562074
Optimization terminated successfully (Exit mode 0)
Current function value: 119.34540734937242
Iterations: 22
Function evaluations: 270
Gradient evaluations: 22
Iteration: 1, Func. Count: 14, Neg. LLF: 122.0268475339421
Iteration: 2, Func. Count: 28, Neg. LLF: 131.7843753477252
Iteration: 3, Func. Count: 42, Neg. LLF: 120.41103054072941
Iteration: 4, Func. Count: 55, Neg. LLF: 125.2828706213123
Iteration: 5, Func. Count: 70, Neg. LLF: 120.16575143120235
Iteration: 6, Func. Count: 83, Neg. LLF: 121.26656715890233
Iteration: 7, Func. Count: 97, Neg. LLF: 120.01070715854847
Iteration: 8, Func. Count: 110, Neg. LLF: 119.96416466110765
Iteration: 9, Func. Count: 123, Neg. LLF: 119.94027044686655
Iteration: 10, Func. Count: 136, Neg. LLF: 119.92387413720823
Iteration: 11, Func. Count: 149, Neg. LLF: 119.91031632384949
Iteration: 12, Func. Count: 162, Neg. LLF: 119.84038506563067
Iteration: 13, Func. Count: 175, Neg. LLF: 127.24752533772363
Iteration: 14, Func. Count: 189, Neg. LLF: 120.06080987634469
Iteration: 15, Func. Count: 203, Neg. LLF: 119.64332936026727
Iteration: 16, Func. Count: 216, Neg. LLF: 119.52139544514831
Iteration: 17, Func. Count: 229, Neg. LLF: 119.66670070679886
Iteration: 18, Func. Count: 243, Neg. LLF: 119.35482733762869
Iteration: 19, Func. Count: 256, Neg. LLF: 119.3469086377819
Iteration: 20, Func. Count: 269, Neg. LLF: 119.34589721098375
Iteration: 21, Func. Count: 282, Neg. LLF: 119.34541495100768
Iteration: 22, Func. Count: 295, Neg. LLF: 119.34540729401587
Iteration: 23, Func. Count: 307, Neg. LLF: 119.3454074318152
Optimization terminated successfully (Exit mode 0)
Current function value: 119.34540729401587
Iterations: 23
Function evaluations: 307
Gradient evaluations: 23
Iteration: 1, Func. Count: 11, Neg. LLF: 123.72196505510442
Iteration: 2, Func. Count: 22, Neg. LLF: 151.76947897228308
Iteration: 3, Func. Count: 33, Neg. LLF: 120.95736650201329
Iteration: 4, Func. Count: 44, Neg. LLF: 120.2148081438226
Iteration: 5, Func. Count: 54, Neg. LLF: 120.63301476574959
Iteration: 6, Func. Count: 65, Neg. LLF: 121.43570615641217
Iteration: 7, Func. Count: 77, Neg. LLF: 120.05485466685055
Iteration: 8, Func. Count: 87, Neg. LLF: 120.01358835943468
Iteration: 9, Func. Count: 97, Neg. LLF: 119.98629034914318
Iteration: 10, Func. Count: 107, Neg. LLF: 119.94021571224795
Iteration: 11, Func. Count: 117, Neg. LLF: 119.92343191344587
Iteration: 12, Func. Count: 127, Neg. LLF: 119.88099422322715
Iteration: 13, Func. Count: 137, Neg. LLF: 119.83263150075854
Iteration: 14, Func. Count: 147, Neg. LLF: 120.2453065334701
Iteration: 15, Func. Count: 158, Neg. LLF: 119.7541207563836
Iteration: 16, Func. Count: 168, Neg. LLF: 119.70534930606807
Iteration: 17, Func. Count: 178, Neg. LLF: 119.6247718386722
Iteration: 18, Func. Count: 188, Neg. LLF: 119.50029993147068
Iteration: 19, Func. Count: 198, Neg. LLF: 119.4383708170774
Iteration: 20, Func. Count: 208, Neg. LLF: 119.3710161781298
Iteration: 21, Func. Count: 218, Neg. LLF: 119.35239609833279
Iteration: 22, Func. Count: 228, Neg. LLF: 119.34586773872968
Iteration: 23, Func. Count: 238, Neg. LLF: 119.34549178514506
Iteration: 24, Func. Count: 248, Neg. LLF: 119.34540790852417
Iteration: 25, Func. Count: 258, Neg. LLF: 119.34540732910975
Optimization terminated successfully (Exit mode 0)
Current function value: 119.34540732910975
Iterations: 25
Function evaluations: 258
Gradient evaluations: 25
Iteration: 1, Func. Count: 12, Neg. LLF: 122.8027822465963
Iteration: 2, Func. Count: 24, Neg. LLF: 142.5090907869039
Iteration: 3, Func. Count: 36, Neg. LLF: 120.41428911013732
Iteration: 4, Func. Count: 47, Neg. LLF: 124.27344078637184
Iteration: 5, Func. Count: 60, Neg. LLF: 120.49993595908298
Iteration: 6, Func. Count: 72, Neg. LLF: 120.0815371892438
Iteration: 7, Func. Count: 83, Neg. LLF: 120.00289400439367
Iteration: 8, Func. Count: 94, Neg. LLF: 119.98369202706698
Iteration: 9, Func. Count: 105, Neg. LLF: 119.9677897709474
Iteration: 10, Func. Count: 116, Neg. LLF: 119.94988589520283
Iteration: 11, Func. Count: 127, Neg. LLF: 119.87919050989383
Iteration: 12, Func. Count: 138, Neg. LLF: 121.52739923977072
Iteration: 13, Func. Count: 150, Neg. LLF: 129.3497652475101
Iteration: 14, Func. Count: 162, Neg. LLF: 129.4343882549782
Iteration: 15, Func. Count: 174, Neg. LLF: 129.6656646161671
Iteration: 16, Func. Count: 186, Neg. LLF: 129.2565460255088
Iteration: 17, Func. Count: 198, Neg. LLF: 121.02405555800638
Iteration: 18, Func. Count: 210, Neg. LLF: 129.11876922087333
Iteration: 19, Func. Count: 222, Neg. LLF: 120.0425192609489
Iteration: 20, Func. Count: 234, Neg. LLF: 120.11530199095797
Iteration: 21, Func. Count: 246, Neg. LLF: 119.96100962091393
Iteration: 22, Func. Count: 258, Neg. LLF: 119.39062493334639
Iteration: 23, Func. Count: 269, Neg. LLF: 119.38200059070591
Iteration: 24, Func. Count: 280, Neg. LLF: 119.37085186418942
Iteration: 25, Func. Count: 291, Neg. LLF: 119.34614364159738
Iteration: 26, Func. Count: 302, Neg. LLF: 119.34541252396937
Iteration: 27, Func. Count: 313, Neg. LLF: 119.34540733240394
Iteration: 28, Func. Count: 323, Neg. LLF: 119.34540738491158
Optimization terminated successfully (Exit mode 0)
Current function value: 119.34540733240394
Iterations: 28
Function evaluations: 323
Gradient evaluations: 28
Iteration: 1, Func. Count: 13, Neg. LLF: 123.39001886658879
Iteration: 2, Func. Count: 26, Neg. LLF: 145.1425314714942
Iteration: 3, Func. Count: 39, Neg. LLF: 120.41941655660939
Iteration: 4, Func. Count: 51, Neg. LLF: 124.39030446284599
Iteration: 5, Func. Count: 65, Neg. LLF: 120.21099660662557
Iteration: 6, Func. Count: 77, Neg. LLF: 120.41814775170813
Iteration: 7, Func. Count: 90, Neg. LLF: 120.02422037563913
Iteration: 8, Func. Count: 102, Neg. LLF: 119.9814663368376
Iteration: 9, Func. Count: 114, Neg. LLF: 119.94836302655366
Iteration: 10, Func. Count: 126, Neg. LLF: 119.93215561569515
Iteration: 11, Func. Count: 138, Neg. LLF: 119.92495600209759
Iteration: 12, Func. Count: 150, Neg. LLF: 119.87559588123452
Iteration: 13, Func. Count: 162, Neg. LLF: 120.82806934959223
Iteration: 14, Func. Count: 175, Neg. LLF: 129.0358866807344
Iteration: 15, Func. Count: 188, Neg. LLF: 129.33490626587394
Iteration: 16, Func. Count: 201, Neg. LLF: 121.4370111282799
Iteration: 17, Func. Count: 214, Neg. LLF: 130.8770696576495
Iteration: 18, Func. Count: 227, Neg. LLF: 129.54121987546165
Iteration: 19, Func. Count: 240, Neg. LLF: 119.73052304659905
Iteration: 20, Func. Count: 253, Neg. LLF: 119.35881252088062
Iteration: 21, Func. Count: 265, Neg. LLF: 119.34627344016724
Iteration: 22, Func. Count: 277, Neg. LLF: 119.34568745570499
Iteration: 23, Func. Count: 289, Neg. LLF: 119.34541079296278
Iteration: 24, Func. Count: 301, Neg. LLF: 119.34540747057919
Iteration: 25, Func. Count: 312, Neg. LLF: 119.34540759680525
Optimization terminated successfully (Exit mode 0)
Current function value: 119.34540747057919
Iterations: 25
Function evaluations: 312
Gradient evaluations: 25
Iteration: 1, Func. Count: 14, Neg. LLF: 123.55788274241912
Iteration: 2, Func. Count: 28, Neg. LLF: 146.02260427569888
Iteration: 3, Func. Count: 42, Neg. LLF: 120.45101653285325
Iteration: 4, Func. Count: 55, Neg. LLF: 123.26695860746925
Iteration: 5, Func. Count: 70, Neg. LLF: 120.25794647411102
Iteration: 6, Func. Count: 83, Neg. LLF: 120.28249636942402
Iteration: 7, Func. Count: 97, Neg. LLF: 120.05782255249083
Iteration: 8, Func. Count: 110, Neg. LLF: 119.99557071012524
Iteration: 9, Func. Count: 123, Neg. LLF: 119.95351886062393
Iteration: 10, Func. Count: 136, Neg. LLF: 119.9380875017195
Iteration: 11, Func. Count: 149, Neg. LLF: 119.92816726116871
Iteration: 12, Func. Count: 162, Neg. LLF: 119.90910594016349
Iteration: 13, Func. Count: 175, Neg. LLF: 119.85630798203654
Iteration: 14, Func. Count: 188, Neg. LLF: 120.23561325570451
Iteration: 15, Func. Count: 202, Neg. LLF: 119.8258402511861
Iteration: 16, Func. Count: 216, Neg. LLF: 119.6434900043832
Iteration: 17, Func. Count: 229, Neg. LLF: 119.60025755350766
Iteration: 18, Func. Count: 242, Neg. LLF: 119.40649835434505
Iteration: 19, Func. Count: 255, Neg. LLF: 119.36358332271689
Iteration: 20, Func. Count: 268, Neg. LLF: 119.34976876616028
Iteration: 21, Func. Count: 281, Neg. LLF: 119.34590713964351
Iteration: 22, Func. Count: 294, Neg. LLF: 119.34544405038882
Iteration: 23, Func. Count: 307, Neg. LLF: 119.34541244613317
Iteration: 24, Func. Count: 320, Neg. LLF: 119.34540735085328
Iteration: 25, Func. Count: 332, Neg. LLF: 119.34540737709793
Optimization terminated successfully (Exit mode 0)
Current function value: 119.34540735085328
Iterations: 25
Function evaluations: 332
Gradient evaluations: 25
Iteration: 1, Func. Count: 15, Neg. LLF: 123.51637582483278
Iteration: 2, Func. Count: 30, Neg. LLF: 144.41534022569945
Iteration: 3, Func. Count: 45, Neg. LLF: 120.49124945413135
Iteration: 4, Func. Count: 59, Neg. LLF: 148.16746017011636
Iteration: 5, Func. Count: 75, Neg. LLF: 120.1877250914362
Iteration: 6, Func. Count: 89, Neg. LLF: 121.39378394818378
Iteration: 7, Func. Count: 105, Neg. LLF: 120.0418871652185
Iteration: 8, Func. Count: 119, Neg. LLF: 119.9876355092983
Iteration: 9, Func. Count: 133, Neg. LLF: 119.9786297153934
Iteration: 10, Func. Count: 148, Neg. LLF: 119.93877915204567
Iteration: 11, Func. Count: 162, Neg. LLF: 119.91554351078675
Iteration: 12, Func. Count: 176, Neg. LLF: 119.89281276209847
Iteration: 13, Func. Count: 190, Neg. LLF: 119.80848155084806
Iteration: 14, Func. Count: 204, Neg. LLF: 119.74962163546273
Iteration: 15, Func. Count: 218, Neg. LLF: 119.68788368670222
Iteration: 16, Func. Count: 232, Neg. LLF: 119.482520495496
Iteration: 17, Func. Count: 246, Neg. LLF: 119.41177719871024
Iteration: 18, Func. Count: 260, Neg. LLF: 119.36065380498727
Iteration: 19, Func. Count: 274, Neg. LLF: 119.34782752142799
Iteration: 20, Func. Count: 288, Neg. LLF: 119.34558690859835
Iteration: 21, Func. Count: 302, Neg. LLF: 119.34541935266559
Iteration: 22, Func. Count: 316, Neg. LLF: 119.3454101751584
Iteration: 23, Func. Count: 330, Neg. LLF: 119.34540730974578
Iteration: 24, Func. Count: 343, Neg. LLF: 119.34540744752907
Optimization terminated successfully (Exit mode 0)
Current function value: 119.34540730974578
Iterations: 24
Function evaluations: 343
Gradient evaluations: 24
Iteration: 1, Func. Count: 8, Neg. LLF: 126.9400703912788
Iteration: 2, Func. Count: 16, Neg. LLF: 165.22158892966698
Iteration: 3, Func. Count: 24, Neg. LLF: 123.27424419305808
Iteration: 4, Func. Count: 31, Neg. LLF: 122.95810188075538
Iteration: 5, Func. Count: 38, Neg. LLF: 152.2579482059868
Iteration: 6, Func. Count: 47, Neg. LLF: 122.84277904250925
Iteration: 7, Func. Count: 54, Neg. LLF: 123.37990277559229
Iteration: 8, Func. Count: 62, Neg. LLF: 122.51696179285591
Iteration: 9, Func. Count: 69, Neg. LLF: 122.49274354480448
Iteration: 10, Func. Count: 76, Neg. LLF: 122.49011749174527
Iteration: 11, Func. Count: 83, Neg. LLF: 122.48702993125862
Iteration: 12, Func. Count: 90, Neg. LLF: 122.48695955059901
Iteration: 13, Func. Count: 97, Neg. LLF: 122.48695673500558
Iteration: 14, Func. Count: 103, Neg. LLF: 122.48695688506578
Optimization terminated successfully (Exit mode 0)
Current function value: 122.48695673500558
Iterations: 14
Function evaluations: 103
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 126.48328527385665
Iteration: 2, Func. Count: 18, Neg. LLF: 139.50522942616797
Iteration: 3, Func. Count: 27, Neg. LLF: 123.99211729702313
Iteration: 4, Func. Count: 36, Neg. LLF: 122.94502689551415
Iteration: 5, Func. Count: 44, Neg. LLF: 128.43126765064744
Iteration: 6, Func. Count: 53, Neg. LLF: 123.29319295826546
Iteration: 7, Func. Count: 62, Neg. LLF: 125.95855015490227
Iteration: 8, Func. Count: 71, Neg. LLF: 125.40872180704626
Iteration: 9, Func. Count: 80, Neg. LLF: 122.72752541091168
Iteration: 10, Func. Count: 89, Neg. LLF: 122.4941511228343
Iteration: 11, Func. Count: 97, Neg. LLF: 122.4882437199798
Iteration: 12, Func. Count: 105, Neg. LLF: 122.48731992162404
Iteration: 13, Func. Count: 113, Neg. LLF: 122.48696855368547
Iteration: 14, Func. Count: 121, Neg. LLF: 122.4869577160158
Iteration: 15, Func. Count: 129, Neg. LLF: 122.48695666121881
Iteration: 16, Func. Count: 136, Neg. LLF: 122.4869566658939
Optimization terminated successfully (Exit mode 0)
Current function value: 122.48695666121881
Iterations: 16
Function evaluations: 136
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 126.80373303329871
Iteration: 2, Func. Count: 20, Neg. LLF: 140.06906543322788
Iteration: 3, Func. Count: 30, Neg. LLF: 123.98774020727734
Iteration: 4, Func. Count: 40, Neg. LLF: 122.94829245103128
Iteration: 5, Func. Count: 49, Neg. LLF: 127.30090471621153
Iteration: 6, Func. Count: 59, Neg. LLF: 126.03038070100551
Iteration: 7, Func. Count: 69, Neg. LLF: 126.19999454012202
Iteration: 8, Func. Count: 79, Neg. LLF: 122.69660313541132
Iteration: 9, Func. Count: 89, Neg. LLF: 122.49330259679445
Iteration: 10, Func. Count: 98, Neg. LLF: 122.4882031286098
Iteration: 11, Func. Count: 107, Neg. LLF: 122.48717517691071
Iteration: 12, Func. Count: 116, Neg. LLF: 122.48701520762714
Iteration: 13, Func. Count: 125, Neg. LLF: 122.48696234051248
Iteration: 14, Func. Count: 134, Neg. LLF: 122.48695686439336
Iteration: 15, Func. Count: 142, Neg. LLF: 122.48695694382941
Optimization terminated successfully (Exit mode 0)
Current function value: 122.48695686439336
Iterations: 15
Function evaluations: 142
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 126.92449871387888
Iteration: 2, Func. Count: 22, Neg. LLF: 138.89634382115582
Iteration: 3, Func. Count: 33, Neg. LLF: 123.97363564133856
Iteration: 4, Func. Count: 44, Neg. LLF: 123.86858156946066
Iteration: 5, Func. Count: 55, Neg. LLF: 122.77926548791972
Iteration: 6, Func. Count: 65, Neg. LLF: 127.4096430701659
Iteration: 7, Func. Count: 76, Neg. LLF: 126.3081491490645
Iteration: 8, Func. Count: 87, Neg. LLF: 126.52289972987062
Iteration: 9, Func. Count: 98, Neg. LLF: 122.51167298338528
Iteration: 10, Func. Count: 108, Neg. LLF: 122.49784481432268
Iteration: 11, Func. Count: 118, Neg. LLF: 122.4928282375719
Iteration: 12, Func. Count: 128, Neg. LLF: 122.48777710427814
Iteration: 13, Func. Count: 138, Neg. LLF: 122.48710453986486
Iteration: 14, Func. Count: 148, Neg. LLF: 122.48697678067813
Iteration: 15, Func. Count: 158, Neg. LLF: 122.48695934196515
Iteration: 16, Func. Count: 168, Neg. LLF: 122.48695671117197
Iteration: 17, Func. Count: 177, Neg. LLF: 122.48695683660866
Optimization terminated successfully (Exit mode 0)
Current function value: 122.48695671117197
Iterations: 17
Function evaluations: 177
Gradient evaluations: 17
Iteration: 1, Func. Count: 12, Neg. LLF: 126.87670367563358
Iteration: 2, Func. Count: 24, Neg. LLF: 135.65068608257832
Iteration: 3, Func. Count: 36, Neg. LLF: 124.03777839140066
Iteration: 4, Func. Count: 48, Neg. LLF: 125.41106213796057
Iteration: 5, Func. Count: 60, Neg. LLF: 122.93364224415309
Iteration: 6, Func. Count: 71, Neg. LLF: 128.5959660916288
Iteration: 7, Func. Count: 83, Neg. LLF: 123.55265850017479
Iteration: 8, Func. Count: 95, Neg. LLF: 125.26430591934718
Iteration: 9, Func. Count: 107, Neg. LLF: 122.73327620902454
Iteration: 10, Func. Count: 119, Neg. LLF: 122.55333624838033
Iteration: 11, Func. Count: 130, Neg. LLF: 122.52647919859699
Iteration: 12, Func. Count: 141, Neg. LLF: 122.49774138352045
Iteration: 13, Func. Count: 152, Neg. LLF: 122.48801546448834
Iteration: 14, Func. Count: 163, Neg. LLF: 122.48701096308808
Iteration: 15, Func. Count: 174, Neg. LLF: 122.48695939469282
Iteration: 16, Func. Count: 185, Neg. LLF: 122.48695679912355
Iteration: 17, Func. Count: 195, Neg. LLF: 122.48695693966901
Optimization terminated successfully (Exit mode 0)
Current function value: 122.48695679912355
Iterations: 17
Function evaluations: 195
Gradient evaluations: 17
Iteration: 1, Func. Count: 9, Neg. LLF: 124.53339648365208
Iteration: 2, Func. Count: 18, Neg. LLF: 134.95040478038922
Iteration: 3, Func. Count: 27, Neg. LLF: 120.29548607116854
Iteration: 4, Func. Count: 35, Neg. LLF: 137.68208389634916
Iteration: 5, Func. Count: 44, Neg. LLF: 120.06418152382915
Iteration: 6, Func. Count: 52, Neg. LLF: 120.05465522247951
Iteration: 7, Func. Count: 60, Neg. LLF: 120.05279447321496
Iteration: 8, Func. Count: 68, Neg. LLF: 120.05220794916951
Iteration: 9, Func. Count: 76, Neg. LLF: 120.05188853465347
Iteration: 10, Func. Count: 84, Neg. LLF: 120.05184575534766
Iteration: 11, Func. Count: 92, Neg. LLF: 120.05184244736192
Iteration: 12, Func. Count: 99, Neg. LLF: 120.05184244735912
Optimization terminated successfully (Exit mode 0)
Current function value: 120.05184244736192
Iterations: 12
Function evaluations: 99
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 122.95043055724643
Iteration: 2, Func. Count: 20, Neg. LLF: 130.88560393761713
Iteration: 3, Func. Count: 30, Neg. LLF: 120.56509608656417
Iteration: 4, Func. Count: 39, Neg. LLF: 134.02860429998918
Iteration: 5, Func. Count: 49, Neg. LLF: 120.12205634571639
Iteration: 6, Func. Count: 58, Neg. LLF: 120.06391840060056
Iteration: 7, Func. Count: 67, Neg. LLF: 120.05673349065599
Iteration: 8, Func. Count: 76, Neg. LLF: 120.0532733136158
Iteration: 9, Func. Count: 85, Neg. LLF: 120.05197149302147
Iteration: 10, Func. Count: 94, Neg. LLF: 120.05184764750115
Iteration: 11, Func. Count: 103, Neg. LLF: 120.05184244589775
Iteration: 12, Func. Count: 111, Neg. LLF: 120.05184258832217
Optimization terminated successfully (Exit mode 0)
Current function value: 120.05184244589775
Iterations: 12
Function evaluations: 111
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 122.25640538932457
Iteration: 2, Func. Count: 22, Neg. LLF: 123.82374473125266
Iteration: 3, Func. Count: 33, Neg. LLF: 121.77698669598736
Iteration: 4, Func. Count: 44, Neg. LLF: 137.50824498419948
Iteration: 5, Func. Count: 55, Neg. LLF: 120.2213301386451
Iteration: 6, Func. Count: 65, Neg. LLF: 120.12876971237417
Iteration: 7, Func. Count: 75, Neg. LLF: 120.05776597091068
Iteration: 8, Func. Count: 85, Neg. LLF: 120.0525603170334
Iteration: 9, Func. Count: 95, Neg. LLF: 120.0518703556797
Iteration: 10, Func. Count: 105, Neg. LLF: 120.05184307790714
Iteration: 11, Func. Count: 115, Neg. LLF: 120.05184242725984
Optimization terminated successfully (Exit mode 0)
Current function value: 120.05184242725984
Iterations: 11
Function evaluations: 115
Gradient evaluations: 11
Iteration: 1, Func. Count: 12, Neg. LLF: 122.40701306833382
Iteration: 2, Func. Count: 24, Neg. LLF: 124.28956370134796
Iteration: 3, Func. Count: 36, Neg. LLF: 121.88446089655416
Iteration: 4, Func. Count: 48, Neg. LLF: 140.14866485759123
Iteration: 5, Func. Count: 60, Neg. LLF: 120.20216306755319
Iteration: 6, Func. Count: 71, Neg. LLF: 120.14498710035345
Iteration: 7, Func. Count: 82, Neg. LLF: 120.05435612074847
Iteration: 8, Func. Count: 93, Neg. LLF: 120.05198798949478
Iteration: 9, Func. Count: 104, Neg. LLF: 120.05184822626164
Iteration: 10, Func. Count: 115, Neg. LLF: 120.05184265104981
Iteration: 11, Func. Count: 125, Neg. LLF: 120.05184268416282
Optimization terminated successfully (Exit mode 0)
Current function value: 120.05184265104981
Iterations: 11
Function evaluations: 125
Gradient evaluations: 11
Iteration: 1, Func. Count: 13, Neg. LLF: 122.33913092300494
Iteration: 2, Func. Count: 26, Neg. LLF: 122.64395209275698
Iteration: 3, Func. Count: 39, Neg. LLF: 122.35532577028398
Iteration: 4, Func. Count: 52, Neg. LLF: 149.14863998269837
Iteration: 5, Func. Count: 65, Neg. LLF: 120.20086640393787
Iteration: 6, Func. Count: 77, Neg. LLF: 120.20345280581482
Iteration: 7, Func. Count: 90, Neg. LLF: 120.0550755007975
Iteration: 8, Func. Count: 102, Neg. LLF: 120.05231922287996
Iteration: 9, Func. Count: 114, Neg. LLF: 120.05184852653113
Iteration: 10, Func. Count: 126, Neg. LLF: 120.05184248359052
Iteration: 11, Func. Count: 137, Neg. LLF: 120.05184255954153
Optimization terminated successfully (Exit mode 0)
Current function value: 120.05184248359052
Iterations: 11
Function evaluations: 137
Gradient evaluations: 11
Iteration: 1, Func. Count: 10, Neg. LLF: 123.44264643750859
Iteration: 2, Func. Count: 20, Neg. LLF: 136.61736089093208
Iteration: 3, Func. Count: 30, Neg. LLF: 120.33078758099784
Iteration: 4, Func. Count: 39, Neg. LLF: 135.97983723418398
Iteration: 5, Func. Count: 49, Neg. LLF: 120.12509703248601
Iteration: 6, Func. Count: 58, Neg. LLF: 120.08697818014413
Iteration: 7, Func. Count: 67, Neg. LLF: 120.00934124526985
Iteration: 8, Func. Count: 76, Neg. LLF: 119.96997858174913
Iteration: 9, Func. Count: 85, Neg. LLF: 119.93692476233781
Iteration: 10, Func. Count: 94, Neg. LLF: 119.89033692651986
Iteration: 11, Func. Count: 103, Neg. LLF: 119.82104895105809
Iteration: 12, Func. Count: 112, Neg. LLF: 119.77030183441825
Iteration: 13, Func. Count: 121, Neg. LLF: 119.64378718632533
Iteration: 14, Func. Count: 130, Neg. LLF: 119.4549416394874
Iteration: 15, Func. Count: 139, Neg. LLF: 119.42055445801333
Iteration: 16, Func. Count: 148, Neg. LLF: 120.22628600197758
Iteration: 17, Func. Count: 158, Neg. LLF: 119.42048812508924
Iteration: 18, Func. Count: 168, Neg. LLF: 119.36366634894898
Iteration: 19, Func. Count: 177, Neg. LLF: 119.36223278023854
Iteration: 20, Func. Count: 186, Neg. LLF: 119.3621770602757
Iteration: 21, Func. Count: 195, Neg. LLF: 119.36217014495269
Iteration: 22, Func. Count: 203, Neg. LLF: 119.36216999381433
Optimization terminated successfully (Exit mode 0)
Current function value: 119.36217014495269
Iterations: 22
Function evaluations: 203
Gradient evaluations: 22
Iteration: 1, Func. Count: 11, Neg. LLF: 122.58421753104845
Iteration: 2, Func. Count: 22, Neg. LLF: 139.8481301575487
Iteration: 3, Func. Count: 33, Neg. LLF: 120.54567087447828
Iteration: 4, Func. Count: 43, Neg. LLF: 135.14748891067683
Iteration: 5, Func. Count: 54, Neg. LLF: 120.30159065234248
Iteration: 6, Func. Count: 64, Neg. LLF: 120.22543265815541
Iteration: 7, Func. Count: 74, Neg. LLF: 120.20369950790217
Iteration: 8, Func. Count: 84, Neg. LLF: 120.1521527416667
Iteration: 9, Func. Count: 94, Neg. LLF: 120.06409472233753
Iteration: 10, Func. Count: 104, Neg. LLF: 120.02986763729659
Iteration: 11, Func. Count: 114, Neg. LLF: 120.00328947279364
Iteration: 12, Func. Count: 124, Neg. LLF: 119.96785144804302
Iteration: 13, Func. Count: 134, Neg. LLF: 119.86113016027453
Iteration: 14, Func. Count: 144, Neg. LLF: 129.4330915051136
Iteration: 15, Func. Count: 155, Neg. LLF: 129.96061777342803
Iteration: 16, Func. Count: 166, Neg. LLF: 130.08856239072168
Iteration: 17, Func. Count: 177, Neg. LLF: 122.41717776818606
Iteration: 18, Func. Count: 188, Neg. LLF: 119.90707182389222
Iteration: 19, Func. Count: 199, Neg. LLF: 129.00041100544937
Iteration: 20, Func. Count: 210, Neg. LLF: 119.69947163730433
Iteration: 21, Func. Count: 221, Neg. LLF: 119.37358336525588
Iteration: 22, Func. Count: 231, Neg. LLF: 119.36403632752558
Iteration: 23, Func. Count: 241, Neg. LLF: 119.3621935750539
Iteration: 24, Func. Count: 251, Neg. LLF: 119.36216604636682
Iteration: 25, Func. Count: 261, Neg. LLF: 119.36216557254613
Optimization terminated successfully (Exit mode 0)
Current function value: 119.36216557254613
Iterations: 25
Function evaluations: 261
Gradient evaluations: 25
Iteration: 1, Func. Count: 12, Neg. LLF: 123.19933562232012
Iteration: 2, Func. Count: 24, Neg. LLF: 141.30775509846228
Iteration: 3, Func. Count: 36, Neg. LLF: 120.63364991172264
Iteration: 4, Func. Count: 47, Neg. LLF: 141.3980688627347
Iteration: 5, Func. Count: 59, Neg. LLF: 120.10865772328786
Iteration: 6, Func. Count: 70, Neg. LLF: 120.06162733763324
Iteration: 7, Func. Count: 81, Neg. LLF: 119.98029708893331
Iteration: 8, Func. Count: 92, Neg. LLF: 119.96679842097248
Iteration: 9, Func. Count: 103, Neg. LLF: 119.9414872956435
Iteration: 10, Func. Count: 114, Neg. LLF: 119.85505828233116
Iteration: 11, Func. Count: 125, Neg. LLF: 126.99126830908138
Iteration: 12, Func. Count: 137, Neg. LLF: 126.26889212504365
Iteration: 13, Func. Count: 149, Neg. LLF: 127.4613609323403
Iteration: 14, Func. Count: 161, Neg. LLF: 121.28906958139734
Iteration: 15, Func. Count: 173, Neg. LLF: 123.46021862577582
Iteration: 16, Func. Count: 185, Neg. LLF: 122.22286240652687
Iteration: 17, Func. Count: 197, Neg. LLF: 119.56785992434766
Iteration: 18, Func. Count: 209, Neg. LLF: 119.36784806185736
Iteration: 19, Func. Count: 220, Neg. LLF: 119.36446085204565
Iteration: 20, Func. Count: 231, Neg. LLF: 119.36309350539837
Iteration: 21, Func. Count: 242, Neg. LLF: 119.36252501739082
Iteration: 22, Func. Count: 253, Neg. LLF: 119.3622171702128
Iteration: 23, Func. Count: 264, Neg. LLF: 119.3621701873659
Iteration: 24, Func. Count: 274, Neg. LLF: 119.36217031891066
Optimization terminated successfully (Exit mode 0)
Current function value: 119.3621701873659
Iterations: 24
Function evaluations: 274
Gradient evaluations: 24
Iteration: 1, Func. Count: 13, Neg. LLF: 123.46161634638491
Iteration: 2, Func. Count: 26, Neg. LLF: 142.4411570778339
Iteration: 3, Func. Count: 39, Neg. LLF: 120.6249212528857
Iteration: 4, Func. Count: 51, Neg. LLF: 152.64655257064115
Iteration: 5, Func. Count: 64, Neg. LLF: 120.12220502951712
Iteration: 6, Func. Count: 76, Neg. LLF: 120.06352494162549
Iteration: 7, Func. Count: 88, Neg. LLF: 119.98020227510757
Iteration: 8, Func. Count: 100, Neg. LLF: 119.96412961693584
Iteration: 9, Func. Count: 112, Neg. LLF: 119.94409956799447
Iteration: 10, Func. Count: 124, Neg. LLF: 119.85893602550365
Iteration: 11, Func. Count: 136, Neg. LLF: 127.09999967331963
Iteration: 12, Func. Count: 149, Neg. LLF: 126.23815376184038
Iteration: 13, Func. Count: 162, Neg. LLF: 127.29373700177021
Iteration: 14, Func. Count: 175, Neg. LLF: 121.39570527790626
Iteration: 15, Func. Count: 188, Neg. LLF: 123.09185586219911
Iteration: 16, Func. Count: 201, Neg. LLF: 121.89716441118496
Iteration: 17, Func. Count: 214, Neg. LLF: 119.56214519719184
Iteration: 18, Func. Count: 227, Neg. LLF: 119.36592054283302
Iteration: 19, Func. Count: 239, Neg. LLF: 119.36380091396455
Iteration: 20, Func. Count: 251, Neg. LLF: 119.36286930518781
Iteration: 21, Func. Count: 263, Neg. LLF: 119.36238716185373
Iteration: 22, Func. Count: 275, Neg. LLF: 119.36225321117621
Iteration: 23, Func. Count: 287, Neg. LLF: 119.36217068264612
Iteration: 24, Func. Count: 299, Neg. LLF: 119.36217002577573
Optimization terminated successfully (Exit mode 0)
Current function value: 119.36217002577573
Iterations: 24
Function evaluations: 299
Gradient evaluations: 24
Iteration: 1, Func. Count: 14, Neg. LLF: 123.42747240323637
Iteration: 2, Func. Count: 28, Neg. LLF: 141.5025484677665
Iteration: 3, Func. Count: 42, Neg. LLF: 120.65238600013669
Iteration: 4, Func. Count: 55, Neg. LLF: 157.02736204247026
Iteration: 5, Func. Count: 69, Neg. LLF: 120.12634298647446
Iteration: 6, Func. Count: 82, Neg. LLF: 120.06784319993425
Iteration: 7, Func. Count: 95, Neg. LLF: 119.98076636192594
Iteration: 8, Func. Count: 108, Neg. LLF: 119.9647980130627
Iteration: 9, Func. Count: 121, Neg. LLF: 119.9408721678452
Iteration: 10, Func. Count: 134, Neg. LLF: 119.8883922631494
Iteration: 11, Func. Count: 147, Neg. LLF: 126.83224218647015
Iteration: 12, Func. Count: 161, Neg. LLF: 125.38273578731373
Iteration: 13, Func. Count: 175, Neg. LLF: 126.93889895123952
Iteration: 14, Func. Count: 189, Neg. LLF: 120.04568122865861
Iteration: 15, Func. Count: 203, Neg. LLF: 120.84884706723165
Iteration: 16, Func. Count: 218, Neg. LLF: 119.53810255380805
Iteration: 17, Func. Count: 231, Neg. LLF: 119.45318163988803
Iteration: 18, Func. Count: 244, Neg. LLF: 119.42294843696715
Iteration: 19, Func. Count: 257, Neg. LLF: 119.36747685144356
Iteration: 20, Func. Count: 270, Neg. LLF: 119.3628603365673
Iteration: 21, Func. Count: 283, Neg. LLF: 119.36235080731888
Iteration: 22, Func. Count: 296, Neg. LLF: 119.36218530868692
Iteration: 23, Func. Count: 309, Neg. LLF: 119.36217042669118
Iteration: 24, Func. Count: 321, Neg. LLF: 119.36217056383227
Optimization terminated successfully (Exit mode 0)
Current function value: 119.36217042669118
Iterations: 24
Function evaluations: 321
Gradient evaluations: 24
Iteration: 1, Func. Count: 11, Neg. LLF: 125.34256145295439
Iteration: 2, Func. Count: 22, Neg. LLF: 152.53259658575857
Iteration: 3, Func. Count: 33, Neg. LLF: 121.15977064222805
Iteration: 4, Func. Count: 44, Neg. LLF: 120.22892250785449
Iteration: 5, Func. Count: 54, Neg. LLF: 121.35530434468484
Iteration: 6, Func. Count: 65, Neg. LLF: 120.65360086804642
Iteration: 7, Func. Count: 76, Neg. LLF: 120.11167484074197
Iteration: 8, Func. Count: 86, Neg. LLF: 120.04617629599149
Iteration: 9, Func. Count: 96, Neg. LLF: 120.01933896562088
Iteration: 10, Func. Count: 106, Neg. LLF: 119.96495684033435
Iteration: 11, Func. Count: 116, Neg. LLF: 119.92669439808604
Iteration: 12, Func. Count: 126, Neg. LLF: 119.89501811033784
Iteration: 13, Func. Count: 136, Neg. LLF: 119.86754214256592
Iteration: 14, Func. Count: 146, Neg. LLF: 120.02551442680632
Iteration: 15, Func. Count: 157, Neg. LLF: 126.2533574380642
Iteration: 16, Func. Count: 168, Neg. LLF: 119.72250622435278
Iteration: 17, Func. Count: 178, Neg. LLF: 119.6648221860808
Iteration: 18, Func. Count: 188, Neg. LLF: 119.55623736523094
Iteration: 19, Func. Count: 198, Neg. LLF: 119.4551349814029
Iteration: 20, Func. Count: 208, Neg. LLF: 119.37346750375974
Iteration: 21, Func. Count: 218, Neg. LLF: 119.35149366642995
Iteration: 22, Func. Count: 228, Neg. LLF: 119.34651093711877
Iteration: 23, Func. Count: 238, Neg. LLF: 119.34552364597431
Iteration: 24, Func. Count: 248, Neg. LLF: 119.34540861461653
Iteration: 25, Func. Count: 258, Neg. LLF: 119.34540733986792
Iteration: 26, Func. Count: 267, Neg. LLF: 119.34540733367261
Optimization terminated successfully (Exit mode 0)
Current function value: 119.34540733986792
Iterations: 26
Function evaluations: 267
Gradient evaluations: 26
Iteration: 1, Func. Count: 12, Neg. LLF: 123.92928917347537
Iteration: 2, Func. Count: 24, Neg. LLF: 151.10707200784293
Iteration: 3, Func. Count: 36, Neg. LLF: 120.43632165502885
Iteration: 4, Func. Count: 47, Neg. LLF: 124.26413939427435
Iteration: 5, Func. Count: 60, Neg. LLF: 120.45260044920109
Iteration: 6, Func. Count: 72, Neg. LLF: 120.0532269951858
Iteration: 7, Func. Count: 83, Neg. LLF: 119.99244712193986
Iteration: 8, Func. Count: 94, Neg. LLF: 119.97212484533263
Iteration: 9, Func. Count: 105, Neg. LLF: 119.95910934182491
Iteration: 10, Func. Count: 116, Neg. LLF: 119.91876873746891
Iteration: 11, Func. Count: 127, Neg. LLF: 119.87273955749815
Iteration: 12, Func. Count: 138, Neg. LLF: 120.82705501619166
Iteration: 13, Func. Count: 150, Neg. LLF: 120.24036691074406
Iteration: 14, Func. Count: 162, Neg. LLF: 119.94036457681595
Iteration: 15, Func. Count: 174, Neg. LLF: 119.69615608346128
Iteration: 16, Func. Count: 185, Neg. LLF: 119.55727833651365
Iteration: 17, Func. Count: 196, Neg. LLF: 121.00921928262538
Iteration: 18, Func. Count: 208, Neg. LLF: 119.40834431969634
Iteration: 19, Func. Count: 219, Neg. LLF: 119.34916619692382
Iteration: 20, Func. Count: 230, Neg. LLF: 119.34573025687382
Iteration: 21, Func. Count: 241, Neg. LLF: 119.3454329985606
Iteration: 22, Func. Count: 252, Neg. LLF: 119.34541434522535
Iteration: 23, Func. Count: 263, Neg. LLF: 119.3454074446021
Iteration: 24, Func. Count: 273, Neg. LLF: 119.34540749714158
Optimization terminated successfully (Exit mode 0)
Current function value: 119.3454074446021
Iterations: 24
Function evaluations: 273
Gradient evaluations: 24
Iteration: 1, Func. Count: 13, Neg. LLF: 124.50756174676613
Iteration: 2, Func. Count: 26, Neg. LLF: 153.01643950265802
Iteration: 3, Func. Count: 39, Neg. LLF: 120.42142328601874
Iteration: 4, Func. Count: 51, Neg. LLF: 124.16858547989
Iteration: 5, Func. Count: 65, Neg. LLF: 120.24669569381035
Iteration: 6, Func. Count: 77, Neg. LLF: 120.41457438488682
Iteration: 7, Func. Count: 90, Neg. LLF: 120.09846162265346
Iteration: 8, Func. Count: 102, Neg. LLF: 120.00558099691246
Iteration: 9, Func. Count: 114, Neg. LLF: 119.96449692855424
Iteration: 10, Func. Count: 126, Neg. LLF: 119.94230999730836
Iteration: 11, Func. Count: 138, Neg. LLF: 119.92961896834686
Iteration: 12, Func. Count: 150, Neg. LLF: 119.91871459970484
Iteration: 13, Func. Count: 162, Neg. LLF: 119.85447260093883
Iteration: 14, Func. Count: 174, Neg. LLF: 121.26363158711423
Iteration: 15, Func. Count: 187, Neg. LLF: 122.16860590838151
Iteration: 16, Func. Count: 200, Neg. LLF: 120.24470059645266
Iteration: 17, Func. Count: 213, Neg. LLF: 119.67248865918528
Iteration: 18, Func. Count: 225, Neg. LLF: 119.56578672970683
Iteration: 19, Func. Count: 237, Neg. LLF: 119.41848047253202
Iteration: 20, Func. Count: 249, Neg. LLF: 119.45974775583105
Iteration: 21, Func. Count: 262, Neg. LLF: 119.36088130954612
Iteration: 22, Func. Count: 274, Neg. LLF: 119.34665120739935
Iteration: 23, Func. Count: 286, Neg. LLF: 119.34551603436586
Iteration: 24, Func. Count: 298, Neg. LLF: 119.3454100254815
Iteration: 25, Func. Count: 310, Neg. LLF: 119.34540742817693
Iteration: 26, Func. Count: 321, Neg. LLF: 119.34540755442674
Optimization terminated successfully (Exit mode 0)
Current function value: 119.34540742817693
Iterations: 26
Function evaluations: 321
Gradient evaluations: 26
Iteration: 1, Func. Count: 14, Neg. LLF: 124.75227036973277
Iteration: 2, Func. Count: 28, Neg. LLF: 154.2977334876248
Iteration: 3, Func. Count: 42, Neg. LLF: 120.46956399228075
Iteration: 4, Func. Count: 55, Neg. LLF: 123.23757246733398
Iteration: 5, Func. Count: 70, Neg. LLF: 120.3049735359196
Iteration: 6, Func. Count: 83, Neg. LLF: 120.26720961518048
Iteration: 7, Func. Count: 97, Neg. LLF: 120.22093608237569
Iteration: 8, Func. Count: 111, Neg. LLF: 120.02086627595487
Iteration: 9, Func. Count: 124, Neg. LLF: 119.97964139522315
Iteration: 10, Func. Count: 137, Neg. LLF: 119.94888780718014
Iteration: 11, Func. Count: 150, Neg. LLF: 119.93377533633533
Iteration: 12, Func. Count: 163, Neg. LLF: 119.9238870908263
Iteration: 13, Func. Count: 176, Neg. LLF: 119.90275993843164
Iteration: 14, Func. Count: 189, Neg. LLF: 119.86896660729036
Iteration: 15, Func. Count: 202, Neg. LLF: 119.7865159773115
Iteration: 16, Func. Count: 215, Neg. LLF: 119.67595971618934
Iteration: 17, Func. Count: 228, Neg. LLF: 119.88482270269812
Iteration: 18, Func. Count: 242, Neg. LLF: 119.39718333940364
Iteration: 19, Func. Count: 255, Neg. LLF: 119.35527685994899
Iteration: 20, Func. Count: 268, Neg. LLF: 119.34709212747758
Iteration: 21, Func. Count: 281, Neg. LLF: 119.34606950344536
Iteration: 22, Func. Count: 294, Neg. LLF: 119.34543061030804
Iteration: 23, Func. Count: 307, Neg. LLF: 119.34540901877503
Iteration: 24, Func. Count: 320, Neg. LLF: 119.34540732717247
Iteration: 25, Func. Count: 332, Neg. LLF: 119.34540735340615
Optimization terminated successfully (Exit mode 0)
Current function value: 119.34540732717247
Iterations: 25
Function evaluations: 332
Gradient evaluations: 25
Iteration: 1, Func. Count: 15, Neg. LLF: 124.63048577509882
Iteration: 2, Func. Count: 30, Neg. LLF: 152.69779035108343
Iteration: 3, Func. Count: 45, Neg. LLF: 120.44402968472545
Iteration: 4, Func. Count: 59, Neg. LLF: 146.80830895937711
Iteration: 5, Func. Count: 75, Neg. LLF: 120.19302715385719
Iteration: 6, Func. Count: 89, Neg. LLF: 121.7938650044131
Iteration: 7, Func. Count: 105, Neg. LLF: 120.0831330952397
Iteration: 8, Func. Count: 119, Neg. LLF: 120.01533046423137
Iteration: 9, Func. Count: 133, Neg. LLF: 119.97572290656665
Iteration: 10, Func. Count: 147, Neg. LLF: 119.94464129095455
Iteration: 11, Func. Count: 161, Neg. LLF: 119.92742566461177
Iteration: 12, Func. Count: 175, Neg. LLF: 119.90523763184424
Iteration: 13, Func. Count: 189, Neg. LLF: 119.87641917700542
Iteration: 14, Func. Count: 203, Neg. LLF: 120.07705631381933
Iteration: 15, Func. Count: 218, Neg. LLF: 126.73392655938281
Iteration: 16, Func. Count: 233, Neg. LLF: 119.77804856707219
Iteration: 17, Func. Count: 247, Neg. LLF: 119.70285396441587
Iteration: 18, Func. Count: 261, Neg. LLF: 119.62789387285488
Iteration: 19, Func. Count: 275, Neg. LLF: 119.51152638896896
Iteration: 20, Func. Count: 289, Neg. LLF: 119.42720049298676
Iteration: 21, Func. Count: 303, Neg. LLF: 119.36185628491181
Iteration: 22, Func. Count: 317, Neg. LLF: 119.34960915916855
Iteration: 23, Func. Count: 331, Neg. LLF: 119.34569612016854
Iteration: 24, Func. Count: 345, Neg. LLF: 119.34541873751598
Iteration: 25, Func. Count: 359, Neg. LLF: 119.34540752061548
Iteration: 26, Func. Count: 372, Neg. LLF: 119.34540765837626
Optimization terminated successfully (Exit mode 0)
Current function value: 119.34540752061548
Iterations: 26
Function evaluations: 372
Gradient evaluations: 26
Iteration: 1, Func. Count: 12, Neg. LLF: 128.47705866834949
Iteration: 2, Func. Count: 24, Neg. LLF: 164.8507249705371
Iteration: 3, Func. Count: 36, Neg. LLF: 121.64175469092855
Iteration: 4, Func. Count: 48, Neg. LLF: 120.2391852031482
Iteration: 5, Func. Count: 59, Neg. LLF: 122.16777706883565
Iteration: 6, Func. Count: 71, Neg. LLF: 120.28346362558663
Iteration: 7, Func. Count: 83, Neg. LLF: 120.2540092480808
Iteration: 8, Func. Count: 95, Neg. LLF: 120.0397981815402
Iteration: 9, Func. Count: 106, Neg. LLF: 120.01116724627227
Iteration: 10, Func. Count: 117, Neg. LLF: 119.97103448429748
Iteration: 11, Func. Count: 128, Neg. LLF: 119.91905018814285
Iteration: 12, Func. Count: 139, Neg. LLF: 119.89189362775153
Iteration: 13, Func. Count: 150, Neg. LLF: 119.80258499380915
Iteration: 14, Func. Count: 161, Neg. LLF: 119.76271521765291
Iteration: 15, Func. Count: 172, Neg. LLF: 119.62082256195148
Iteration: 16, Func. Count: 183, Neg. LLF: 119.4055009169805
Iteration: 17, Func. Count: 194, Neg. LLF: 119.44540283732734
Iteration: 18, Func. Count: 206, Neg. LLF: 119.35446251075233
Iteration: 19, Func. Count: 217, Neg. LLF: 119.34574359428782
Iteration: 20, Func. Count: 228, Neg. LLF: 119.3455654122696
Iteration: 21, Func. Count: 239, Neg. LLF: 119.34540898819664
Iteration: 22, Func. Count: 250, Neg. LLF: 119.34540731264511
Iteration: 23, Func. Count: 260, Neg. LLF: 119.3454073660035
Optimization terminated successfully (Exit mode 0)
Current function value: 119.34540731264511
Iterations: 23
Function evaluations: 260
Gradient evaluations: 23
Iteration: 1, Func. Count: 13, Neg. LLF: 126.0204541867616
Iteration: 2, Func. Count: 26, Neg. LLF: 164.30217082045195
Iteration: 3, Func. Count: 39, Neg. LLF: 120.4133293519044
Iteration: 4, Func. Count: 51, Neg. LLF: 126.5806738608616
Iteration: 5, Func. Count: 65, Neg. LLF: 120.34216400700001
Iteration: 6, Func. Count: 78, Neg. LLF: 120.22427550500606
Iteration: 7, Func. Count: 91, Neg. LLF: 120.00746456169769
Iteration: 8, Func. Count: 103, Neg. LLF: 119.9821393401673
Iteration: 9, Func. Count: 115, Neg. LLF: 119.96248155431982
Iteration: 10, Func. Count: 127, Neg. LLF: 119.93953056805357
Iteration: 11, Func. Count: 139, Neg. LLF: 119.92766087233726
Iteration: 12, Func. Count: 151, Neg. LLF: 119.88136199728086
Iteration: 13, Func. Count: 163, Neg. LLF: 119.96638666688165
Iteration: 14, Func. Count: 176, Neg. LLF: 119.8513505968401
Iteration: 15, Func. Count: 189, Neg. LLF: 119.68548237110342
Iteration: 16, Func. Count: 201, Neg. LLF: 119.5075213394507
Iteration: 17, Func. Count: 213, Neg. LLF: 119.40743100051422
Iteration: 18, Func. Count: 225, Neg. LLF: 119.35402133436699
Iteration: 19, Func. Count: 237, Neg. LLF: 119.3488088124152
Iteration: 20, Func. Count: 249, Neg. LLF: 119.34567407557653
Iteration: 21, Func. Count: 261, Neg. LLF: 119.34545521256395
Iteration: 22, Func. Count: 273, Neg. LLF: 119.34541571482882
Iteration: 23, Func. Count: 285, Neg. LLF: 119.34540754841973
Iteration: 24, Func. Count: 296, Neg. LLF: 119.34540760087937
Optimization terminated successfully (Exit mode 0)
Current function value: 119.34540754841973
Iterations: 24
Function evaluations: 296
Gradient evaluations: 24
Iteration: 1, Func. Count: 14, Neg. LLF: 126.6045082795327
Iteration: 2, Func. Count: 28, Neg. LLF: 166.75572650304872
Iteration: 3, Func. Count: 42, Neg. LLF: 120.42789814311922
Iteration: 4, Func. Count: 55, Neg. LLF: 126.51889960249576
Iteration: 5, Func. Count: 70, Neg. LLF: 120.25069190378706
Iteration: 6, Func. Count: 83, Neg. LLF: 120.7368142944103
Iteration: 7, Func. Count: 97, Neg. LLF: 120.13184352722233
Iteration: 8, Func. Count: 110, Neg. LLF: 120.01031354172758
Iteration: 9, Func. Count: 123, Neg. LLF: 119.98134045302012
Iteration: 10, Func. Count: 136, Neg. LLF: 119.95064757957554
Iteration: 11, Func. Count: 149, Neg. LLF: 119.93276656241001
Iteration: 12, Func. Count: 162, Neg. LLF: 119.92102229664305
Iteration: 13, Func. Count: 175, Neg. LLF: 119.89674840527837
Iteration: 14, Func. Count: 188, Neg. LLF: 119.84457530611802
Iteration: 15, Func. Count: 201, Neg. LLF: 119.95143822431093
Iteration: 16, Func. Count: 215, Neg. LLF: 119.70911663005668
Iteration: 17, Func. Count: 228, Neg. LLF: 119.54926822411868
Iteration: 18, Func. Count: 241, Neg. LLF: 119.39354582668287
Iteration: 19, Func. Count: 254, Neg. LLF: 119.35568972456075
Iteration: 20, Func. Count: 267, Neg. LLF: 119.36375668557656
Iteration: 21, Func. Count: 281, Neg. LLF: 119.34858253979239
Iteration: 22, Func. Count: 294, Neg. LLF: 119.34547174608059
Iteration: 23, Func. Count: 307, Neg. LLF: 119.34541004554937
Iteration: 24, Func. Count: 320, Neg. LLF: 119.34540733517089
Iteration: 25, Func. Count: 332, Neg. LLF: 119.3454074614021
Optimization terminated successfully (Exit mode 0)
Current function value: 119.34540733517089
Iterations: 25
Function evaluations: 332
Gradient evaluations: 25
Iteration: 1, Func. Count: 15, Neg. LLF: 126.80463116899764
Iteration: 2, Func. Count: 30, Neg. LLF: 168.43473629474877
Iteration: 3, Func. Count: 45, Neg. LLF: 120.45301121668419
Iteration: 4, Func. Count: 59, Neg. LLF: 124.72950999996979
Iteration: 5, Func. Count: 75, Neg. LLF: 120.29291046586815
Iteration: 6, Func. Count: 89, Neg. LLF: 120.45610789195435
Iteration: 7, Func. Count: 104, Neg. LLF: 120.47929865015269
Iteration: 8, Func. Count: 119, Neg. LLF: 120.02253055345305
Iteration: 9, Func. Count: 133, Neg. LLF: 120.0220474703236
Iteration: 10, Func. Count: 148, Neg. LLF: 119.96260503311086
Iteration: 11, Func. Count: 162, Neg. LLF: 119.93921614987144
Iteration: 12, Func. Count: 176, Neg. LLF: 119.92815482154637
Iteration: 13, Func. Count: 190, Neg. LLF: 119.88673326282051
Iteration: 14, Func. Count: 204, Neg. LLF: 119.84782493979777
Iteration: 15, Func. Count: 218, Neg. LLF: 120.71743440000093
Iteration: 16, Func. Count: 233, Neg. LLF: 127.42853500489194
Iteration: 17, Func. Count: 248, Neg. LLF: 120.03032399917034
Iteration: 18, Func. Count: 263, Neg. LLF: 119.62586825660559
Iteration: 19, Func. Count: 277, Neg. LLF: 119.52124390849562
Iteration: 20, Func. Count: 291, Neg. LLF: 119.40912133732974
Iteration: 21, Func. Count: 305, Neg. LLF: 119.53823862660697
Iteration: 22, Func. Count: 320, Neg. LLF: 119.36096326982211
Iteration: 23, Func. Count: 334, Neg. LLF: 119.34849373798878
Iteration: 24, Func. Count: 348, Neg. LLF: 119.34591652559652
Iteration: 25, Func. Count: 362, Neg. LLF: 119.34542214114056
Iteration: 26, Func. Count: 376, Neg. LLF: 119.34540732461915
Iteration: 27, Func. Count: 389, Neg. LLF: 119.34540735084452
Optimization terminated successfully (Exit mode 0)
Current function value: 119.34540732461915
Iterations: 27
Function evaluations: 389
Gradient evaluations: 27
Iteration: 1, Func. Count: 16, Neg. LLF: 126.7536551970262
Iteration: 2, Func. Count: 32, Neg. LLF: 167.30232983810984
Iteration: 3, Func. Count: 48, Neg. LLF: 120.54464045455974
Iteration: 4, Func. Count: 63, Neg. LLF: 149.5018006218266
Iteration: 5, Func. Count: 80, Neg. LLF: 120.35164025609919
Iteration: 6, Func. Count: 96, Neg. LLF: 120.13186734018566
Iteration: 7, Func. Count: 112, Neg. LLF: 120.00919280589586
Iteration: 8, Func. Count: 127, Neg. LLF: 120.00412465774849
Iteration: 9, Func. Count: 143, Neg. LLF: 119.95037466410503
Iteration: 10, Func. Count: 158, Neg. LLF: 119.92244943668412
Iteration: 11, Func. Count: 173, Neg. LLF: 119.90557049012547
Iteration: 12, Func. Count: 188, Neg. LLF: 119.86158668349869
Iteration: 13, Func. Count: 203, Neg. LLF: 119.80896046589397
Iteration: 14, Func. Count: 218, Neg. LLF: 119.70382722261323
Iteration: 15, Func. Count: 233, Neg. LLF: 119.60685474423812
Iteration: 16, Func. Count: 248, Neg. LLF: 120.79901187595861
Iteration: 17, Func. Count: 264, Neg. LLF: 119.53849458748475
Iteration: 18, Func. Count: 280, Neg. LLF: 119.36656389059513
Iteration: 19, Func. Count: 295, Neg. LLF: 119.36595662653417
Iteration: 20, Func. Count: 311, Neg. LLF: 119.34625216834948
Iteration: 21, Func. Count: 326, Neg. LLF: 119.34546355625915
Iteration: 22, Func. Count: 341, Neg. LLF: 119.34540970341243
Iteration: 23, Func. Count: 356, Neg. LLF: 119.34540732313569
Iteration: 24, Func. Count: 370, Neg. LLF: 119.34540746092699
Optimization terminated successfully (Exit mode 0)
Current function value: 119.34540732313569
Iterations: 24
Function evaluations: 370
Gradient evaluations: 24
Iteration: 1, Func. Count: 5, Neg. LLF: 123.07922105592019
Iteration: 2, Func. Count: 10, Neg. LLF: 141.8532357375996
Iteration: 3, Func. Count: 15, Neg. LLF: 120.23077107686608
Iteration: 4, Func. Count: 19, Neg. LLF: 120.20239687528334
Iteration: 5, Func. Count: 23, Neg. LLF: 120.1599048244769
Iteration: 6, Func. Count: 27, Neg. LLF: 120.15180911188828
Iteration: 7, Func. Count: 31, Neg. LLF: 120.1511051559406
Iteration: 8, Func. Count: 35, Neg. LLF: 120.15108512128818
Iteration: 9, Func. Count: 38, Neg. LLF: 120.1510851212799
Optimization terminated successfully (Exit mode 0)
Current function value: 120.15108512128818
Iterations: 9
Function evaluations: 38
Gradient evaluations: 9
Iteration: 1, Func. Count: 5, Neg. LLF: 123.66720266481418
Iteration: 2, Func. Count: 10, Neg. LLF: 171.26723780594128
Iteration: 3, Func. Count: 15, Neg. LLF: 118.80894889431457
Iteration: 4, Func. Count: 19, Neg. LLF: 118.79971363237767
Iteration: 5, Func. Count: 23, Neg. LLF: 118.79588655072367
Iteration: 6, Func. Count: 27, Neg. LLF: 118.78799204497665
Iteration: 7, Func. Count: 31, Neg. LLF: 118.78757821097774
Iteration: 8, Func. Count: 35, Neg. LLF: 118.78754072640677
Iteration: 9, Func. Count: 38, Neg. LLF: 118.78754072640406
Optimization terminated successfully (Exit mode 0)
Current function value: 118.78754072640677
Iterations: 9
Function evaluations: 38
Gradient evaluations: 9
Iteration: 1, Func. Count: 6, Neg. LLF: 19333097.959176727
Iteration: 2, Func. Count: 13, Neg. LLF: 127.51956928831395
Iteration: 3, Func. Count: 19, Neg. LLF: 452.79686962377866
Iteration: 4, Func. Count: 25, Neg. LLF: 127.23650443153629
Iteration: 5, Func. Count: 31, Neg. LLF: 160.5324248270844
Iteration: 6, Func. Count: 37, Neg. LLF: 120.98553114815799
Iteration: 7, Func. Count: 43, Neg. LLF: 122.26734395198966
Iteration: 8, Func. Count: 49, Neg. LLF: 119.61136916658243
Iteration: 9, Func. Count: 54, Neg. LLF: 119.60359781687993
Iteration: 10, Func. Count: 59, Neg. LLF: 119.59712278050354
Iteration: 11, Func. Count: 64, Neg. LLF: 119.59295598125217
Iteration: 12, Func. Count: 69, Neg. LLF: 119.59295583664588
Iteration: 13, Func. Count: 75, Neg. LLF: 119.59293387218918
Iteration: 14, Func. Count: 79, Neg. LLF: 119.59293387234452
Optimization terminated successfully (Exit mode 0)
Current function value: 119.59293387218918
Iterations: 14
Function evaluations: 79
Gradient evaluations: 14
Iteration: 1, Func. Count: 7, Neg. LLF: 23726034.20801882
Iteration: 2, Func. Count: 14, Neg. LLF: 201.32152031547014
Iteration: 3, Func. Count: 22, Neg. LLF: 120.29981065185483
Iteration: 4, Func. Count: 30, Neg. LLF: 117.04663654747662
Iteration: 5, Func. Count: 36, Neg. LLF: 117.25681258867073
Iteration: 6, Func. Count: 43, Neg. LLF: 116.78488531773446
Iteration: 7, Func. Count: 49, Neg. LLF: 116.63629420971048
Iteration: 8, Func. Count: 55, Neg. LLF: 116.58759377934255
Iteration: 9, Func. Count: 61, Neg. LLF: 116.58316395201352
Iteration: 10, Func. Count: 67, Neg. LLF: 116.58254665734094
Iteration: 11, Func. Count: 73, Neg. LLF: 116.58248948759325
Iteration: 12, Func. Count: 79, Neg. LLF: 116.58248246966566
Iteration: 13, Func. Count: 84, Neg. LLF: 116.58248246938908
Optimization terminated successfully (Exit mode 0)
Current function value: 116.58248246966566
Iterations: 13
Function evaluations: 84
Gradient evaluations: 13
Iteration: 1, Func. Count: 8, Neg. LLF: 27483.911577638406
Iteration: 2, Func. Count: 16, Neg. LLF: 4390694.445139909
Iteration: 3, Func. Count: 24, Neg. LLF: 152.3983179405642
Iteration: 4, Func. Count: 32, Neg. LLF: 153.07251645937606
Iteration: 5, Func. Count: 40, Neg. LLF: 143.71897220789705
Iteration: 6, Func. Count: 48, Neg. LLF: 138.5520444562601
Iteration: 7, Func. Count: 56, Neg. LLF: 127.95999127587702
Iteration: 8, Func. Count: 64, Neg. LLF: 119.89559497683996
Iteration: 9, Func. Count: 72, Neg. LLF: 118.36375768970375
Iteration: 10, Func. Count: 80, Neg. LLF: 117.73592021440098
Iteration: 11, Func. Count: 87, Neg. LLF: 118.67074518351116
Iteration: 12, Func. Count: 96, Neg. LLF: 117.90754496489338
Iteration: 13, Func. Count: 104, Neg. LLF: 117.07044509928079
Iteration: 14, Func. Count: 111, Neg. LLF: 117.00029169519135
Iteration: 15, Func. Count: 118, Neg. LLF: 116.9513619038694
Iteration: 16, Func. Count: 125, Neg. LLF: 116.9337216869267
Iteration: 17, Func. Count: 132, Neg. LLF: 116.9237286536032
Iteration: 18, Func. Count: 139, Neg. LLF: 116.92154770672639
Iteration: 19, Func. Count: 146, Neg. LLF: 116.92149990613056
Iteration: 20, Func. Count: 153, Neg. LLF: 116.92149845128398
Iteration: 21, Func. Count: 159, Neg. LLF: 116.92149845128904
Optimization terminated successfully (Exit mode 0)
Current function value: 116.92149845128398
Iterations: 21
Function evaluations: 159
Gradient evaluations: 21
Iteration: 1, Func. Count: 9, Neg. LLF: 17980386.00618451
Iteration: 2, Func. Count: 18, Neg. LLF: 4497645.335271248
Iteration: 3, Func. Count: 27, Neg. LLF: 139.27792684899342
Iteration: 4, Func. Count: 36, Neg. LLF: 144.37868923370561
Iteration: 5, Func. Count: 45, Neg. LLF: 143.1584793648688
Iteration: 6, Func. Count: 54, Neg. LLF: 142.4225658866191
Iteration: 7, Func. Count: 63, Neg. LLF: 140.9592762910225
Iteration: 8, Func. Count: 72, Neg. LLF: 140.23064901055838
Iteration: 9, Func. Count: 81, Neg. LLF: 276.6628806435334
Iteration: 10, Func. Count: 90, Neg. LLF: 118.61670542838601
Iteration: 11, Func. Count: 99, Neg. LLF: 117.45633169621767
Iteration: 12, Func. Count: 108, Neg. LLF: 136.00606936433184
Iteration: 13, Func. Count: 117, Neg. LLF: 116.67597917516643
Iteration: 14, Func. Count: 125, Neg. LLF: 116.95542591097407
Iteration: 15, Func. Count: 134, Neg. LLF: 116.69198670543331
Iteration: 16, Func. Count: 144, Neg. LLF: 116.55521378360125
Iteration: 17, Func. Count: 152, Neg. LLF: 116.49690380637865
Iteration: 18, Func. Count: 160, Neg. LLF: 116.42381031254358
Iteration: 19, Func. Count: 168, Neg. LLF: 116.19458947669214
Iteration: 20, Func. Count: 176, Neg. LLF: 116.04145281434504
Iteration: 21, Func. Count: 184, Neg. LLF: 116.20815665892688
Iteration: 22, Func. Count: 193, Neg. LLF: 115.92192775611062
Iteration: 23, Func. Count: 201, Neg. LLF: 115.8729312613635
Iteration: 24, Func. Count: 209, Neg. LLF: 115.8649962885715
Iteration: 25, Func. Count: 217, Neg. LLF: 115.86241019882335
Iteration: 26, Func. Count: 225, Neg. LLF: 115.8621729997952
Iteration: 27, Func. Count: 233, Neg. LLF: 115.86210679758086
Iteration: 28, Func. Count: 241, Neg. LLF: 115.8621045745713
Iteration: 29, Func. Count: 248, Neg. LLF: 115.86210457464935
Optimization terminated successfully (Exit mode 0)
Current function value: 115.8621045745713
Iterations: 29
Function evaluations: 248
Gradient evaluations: 29
Iteration: 1, Func. Count: 6, Neg. LLF: 122.63648886090483
Iteration: 2, Func. Count: 12, Neg. LLF: 157.34697792705362
Iteration: 3, Func. Count: 18, Neg. LLF: 118.8481034154669
Iteration: 4, Func. Count: 23, Neg. LLF: 118.80098725242841
Iteration: 5, Func. Count: 28, Neg. LLF: 118.79813647458329
Iteration: 6, Func. Count: 33, Neg. LLF: 118.79524448590406
Iteration: 7, Func. Count: 38, Neg. LLF: 118.79136830856642
Iteration: 8, Func. Count: 43, Neg. LLF: 118.78840104187987
Iteration: 9, Func. Count: 48, Neg. LLF: 118.78762527850442
Iteration: 10, Func. Count: 53, Neg. LLF: 118.78754123328812
Iteration: 11, Func. Count: 58, Neg. LLF: 118.78754071898337
Optimization terminated successfully (Exit mode 0)
Current function value: 118.78754071898337
Iterations: 11
Function evaluations: 58
Gradient evaluations: 11
Iteration: 1, Func. Count: 7, Neg. LLF: 19114717.77756861
Iteration: 2, Func. Count: 15, Neg. LLF: 167.88450445897544
Iteration: 3, Func. Count: 23, Neg. LLF: 136.2191187920868
Iteration: 4, Func. Count: 30, Neg. LLF: 129.37676965967347
Iteration: 5, Func. Count: 37, Neg. LLF: 128.52415517133457
Iteration: 6, Func. Count: 44, Neg. LLF: 367.153826136258
Iteration: 7, Func. Count: 51, Neg. LLF: 126.81591803707221
Iteration: 8, Func. Count: 58, Neg. LLF: 120.97181898736478
Iteration: 9, Func. Count: 65, Neg. LLF: 119.8071704256695
Iteration: 10, Func. Count: 71, Neg. LLF: 120.25140712135473
Iteration: 11, Func. Count: 78, Neg. LLF: 119.64390538467009
Iteration: 12, Func. Count: 84, Neg. LLF: 119.59482163930028
Iteration: 13, Func. Count: 90, Neg. LLF: 119.5934484917531
Iteration: 14, Func. Count: 96, Neg. LLF: 119.59294736492645
Iteration: 15, Func. Count: 102, Neg. LLF: 119.59293405841244
Iteration: 16, Func. Count: 107, Neg. LLF: 119.59293405887432
Optimization terminated successfully (Exit mode 0)
Current function value: 119.59293405841244
Iterations: 16
Function evaluations: 107
Gradient evaluations: 16
Iteration: 1, Func. Count: 8, Neg. LLF: 23392991.87708661
Iteration: 2, Func. Count: 16, Neg. LLF: 3628827.2648386
Iteration: 3, Func. Count: 24, Neg. LLF: 142.19378921354837
Iteration: 4, Func. Count: 33, Neg. LLF: 118.80358244113405
Iteration: 5, Func. Count: 40, Neg. LLF: 117.88062407038635
Iteration: 6, Func. Count: 47, Neg. LLF: 118.50842481721499
Iteration: 7, Func. Count: 55, Neg. LLF: 116.90436304347365
Iteration: 8, Func. Count: 62, Neg. LLF: 116.6314633990196
Iteration: 9, Func. Count: 69, Neg. LLF: 116.5873020517634
Iteration: 10, Func. Count: 76, Neg. LLF: 116.58290442437549
Iteration: 11, Func. Count: 83, Neg. LLF: 116.58249724756
Iteration: 12, Func. Count: 90, Neg. LLF: 116.58248273013756
Iteration: 13, Func. Count: 96, Neg. LLF: 116.58248273015309
Optimization terminated successfully (Exit mode 0)
Current function value: 116.58248273013756
Iterations: 13
Function evaluations: 96
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 25816581.59519696
Iteration: 2, Func. Count: 18, Neg. LLF: 4192450.613384494
Iteration: 3, Func. Count: 27, Neg. LLF: 118.11617148087663
Iteration: 4, Func. Count: 35, Neg. LLF: 158.59657462138324
Iteration: 5, Func. Count: 44, Neg. LLF: 117.23096249291089
Iteration: 6, Func. Count: 52, Neg. LLF: 117.38997096129158
Iteration: 7, Func. Count: 61, Neg. LLF: 116.96914880068499
Iteration: 8, Func. Count: 69, Neg. LLF: 116.92818469297633
Iteration: 9, Func. Count: 77, Neg. LLF: 116.92207618937388
Iteration: 10, Func. Count: 85, Neg. LLF: 116.92185623212742
Iteration: 11, Func. Count: 93, Neg. LLF: 116.9215463281155
Iteration: 12, Func. Count: 101, Neg. LLF: 116.92150313716462
Iteration: 13, Func. Count: 109, Neg. LLF: 116.92149852639855
Iteration: 14, Func. Count: 116, Neg. LLF: 116.92149852632087
Optimization terminated successfully (Exit mode 0)
Current function value: 116.92149852639855
Iterations: 14
Function evaluations: 116
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 876.2323670892624
Iteration: 2, Func. Count: 20, Neg. LLF: 17850836.884488404
Iteration: 3, Func. Count: 30, Neg. LLF: 140.3878279838561
Iteration: 4, Func. Count: 40, Neg. LLF: 147.57750677271835
Iteration: 5, Func. Count: 50, Neg. LLF: 139.39611829658304
Iteration: 6, Func. Count: 60, Neg. LLF: 138.54747780223514
Iteration: 7, Func. Count: 70, Neg. LLF: 138.14327271738554
Iteration: 8, Func. Count: 80, Neg. LLF: 118.48947372240568
Iteration: 9, Func. Count: 90, Neg. LLF: 163.32832092640933
Iteration: 10, Func. Count: 100, Neg. LLF: 119.03532273819329
Iteration: 11, Func. Count: 110, Neg. LLF: 137.966768408496
Iteration: 12, Func. Count: 120, Neg. LLF: 115.97157682960908
Iteration: 13, Func. Count: 129, Neg. LLF: 129.65288480733093
Iteration: 14, Func. Count: 139, Neg. LLF: 116.82985928492411
Iteration: 15, Func. Count: 150, Neg. LLF: 116.77999396796197
Iteration: 16, Func. Count: 160, Neg. LLF: 115.89270490462505
Iteration: 17, Func. Count: 170, Neg. LLF: 115.87512669457728
Iteration: 18, Func. Count: 180, Neg. LLF: 115.8621402286188
Iteration: 19, Func. Count: 189, Neg. LLF: 115.86210517716671
Iteration: 20, Func. Count: 198, Neg. LLF: 115.86210450701707
Optimization terminated successfully (Exit mode 0)
Current function value: 115.86210450701707
Iterations: 21
Function evaluations: 198
Gradient evaluations: 20
Iteration: 1, Func. Count: 7, Neg. LLF: 127.72617239929652
Iteration: 2, Func. Count: 14, Neg. LLF: 400.41522838344076
Iteration: 3, Func. Count: 21, Neg. LLF: 118.99157224200842
Iteration: 4, Func. Count: 27, Neg. LLF: 2791100.489441084
Iteration: 5, Func. Count: 34, Neg. LLF: 122.39097041716158
Iteration: 6, Func. Count: 42, Neg. LLF: 118.49267549548578
Iteration: 7, Func. Count: 48, Neg. LLF: 118.4838921897533
Iteration: 8, Func. Count: 54, Neg. LLF: 118.4634291947606
Iteration: 9, Func. Count: 60, Neg. LLF: 118.45895943641183
Iteration: 10, Func. Count: 66, Neg. LLF: 118.45717691399113
Iteration: 11, Func. Count: 72, Neg. LLF: 118.45698643085152
Iteration: 12, Func. Count: 78, Neg. LLF: 118.45658416194246
Iteration: 13, Func. Count: 84, Neg. LLF: 118.45618516124159
Iteration: 14, Func. Count: 90, Neg. LLF: 118.45595513135957
Iteration: 15, Func. Count: 96, Neg. LLF: 118.45591280695312
Iteration: 16, Func. Count: 102, Neg. LLF: 118.45591047706215
Iteration: 17, Func. Count: 107, Neg. LLF: 118.45591047705823
Optimization terminated successfully (Exit mode 0)
Current function value: 118.45591047706215
Iterations: 17
Function evaluations: 107
Gradient evaluations: 17
Iteration: 1, Func. Count: 8, Neg. LLF: 7664637.378737828
Iteration: 2, Func. Count: 16, Neg. LLF: 130.52257323288393
Iteration: 3, Func. Count: 24, Neg. LLF: 9532.216182854823
Iteration: 4, Func. Count: 32, Neg. LLF: 123.1298220561261
Iteration: 5, Func. Count: 40, Neg. LLF: 123.81022061328413
Iteration: 6, Func. Count: 48, Neg. LLF: 122.16190150348
Iteration: 7, Func. Count: 56, Neg. LLF: 119.83969427971107
Iteration: 8, Func. Count: 63, Neg. LLF: 119.66675365909141
Iteration: 9, Func. Count: 70, Neg. LLF: 119.89161014367299
Iteration: 10, Func. Count: 78, Neg. LLF: 119.5983752768738
Iteration: 11, Func. Count: 85, Neg. LLF: 119.59568705667976
Iteration: 12, Func. Count: 92, Neg. LLF: 119.59294474775635
Iteration: 13, Func. Count: 99, Neg. LLF: 119.59293475871023
Iteration: 14, Func. Count: 106, Neg. LLF: 119.5929336615359
Iteration: 15, Func. Count: 112, Neg. LLF: 119.59293366153044
Optimization terminated successfully (Exit mode 0)
Current function value: 119.5929336615359
Iterations: 15
Function evaluations: 112
Gradient evaluations: 15
Iteration: 1, Func. Count: 9, Neg. LLF: 23275745.218335602
Iteration: 2, Func. Count: 18, Neg. LLF: 4207962.117882398
Iteration: 3, Func. Count: 27, Neg. LLF: 234.3686206973673
Iteration: 4, Func. Count: 37, Neg. LLF: 117.82127263949873
Iteration: 5, Func. Count: 45, Neg. LLF: 117.42575997940686
Iteration: 6, Func. Count: 53, Neg. LLF: 117.20734303098294
Iteration: 7, Func. Count: 61, Neg. LLF: 116.96730864195328
Iteration: 8, Func. Count: 69, Neg. LLF: 116.6440134768605
Iteration: 9, Func. Count: 77, Neg. LLF: 116.60261307610197
Iteration: 10, Func. Count: 85, Neg. LLF: 116.58838233389812
Iteration: 11, Func. Count: 93, Neg. LLF: 116.58423326093697
Iteration: 12, Func. Count: 101, Neg. LLF: 116.58291964167522
Iteration: 13, Func. Count: 109, Neg. LLF: 116.58249807639805
Iteration: 14, Func. Count: 117, Neg. LLF: 116.72673537419148
Optimization terminated successfully (Exit mode 0)
Current function value: 116.58249757443824
Iterations: 15
Function evaluations: 120
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 25488515.96990741
Iteration: 2, Func. Count: 20, Neg. LLF: 4238660.768771911
Iteration: 3, Func. Count: 30, Neg. LLF: 538.8105086897756
Iteration: 4, Func. Count: 41, Neg. LLF: 117.15784391846633
Iteration: 5, Func. Count: 50, Neg. LLF: 117.02359272001537
Iteration: 6, Func. Count: 59, Neg. LLF: 116.94952292087963
Iteration: 7, Func. Count: 68, Neg. LLF: 116.92966147607306
Iteration: 8, Func. Count: 77, Neg. LLF: 116.92699267613436
Iteration: 9, Func. Count: 86, Neg. LLF: 116.92371414626697
Iteration: 10, Func. Count: 95, Neg. LLF: 116.92215902085071
Iteration: 11, Func. Count: 104, Neg. LLF: 116.92153809722723
Iteration: 12, Func. Count: 113, Neg. LLF: 116.9214998312436
Iteration: 13, Func. Count: 122, Neg. LLF: 116.92149847934449
Iteration: 14, Func. Count: 130, Neg. LLF: 116.92149847936501
Optimization terminated successfully (Exit mode 0)
Current function value: 116.92149847934449
Iterations: 14
Function evaluations: 130
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 590.1512345783968
Iteration: 2, Func. Count: 22, Neg. LLF: 7205722.420931182
Iteration: 3, Func. Count: 33, Neg. LLF: 150.3083763533798
Iteration: 4, Func. Count: 44, Neg. LLF: 140.34620889225167
Iteration: 5, Func. Count: 55, Neg. LLF: 132.55869220619377
Iteration: 6, Func. Count: 66, Neg. LLF: 131.24195238407657
Iteration: 7, Func. Count: 77, Neg. LLF: 130.85747321777168
Iteration: 8, Func. Count: 88, Neg. LLF: 124.89485224320713
Iteration: 9, Func. Count: 99, Neg. LLF: 121.00823134051497
Iteration: 10, Func. Count: 110, Neg. LLF: 127.16789549441826
Iteration: 11, Func. Count: 121, Neg. LLF: 118.25036459950742
Iteration: 12, Func. Count: 132, Neg. LLF: 116.63834054121565
Iteration: 13, Func. Count: 143, Neg. LLF: 161.06730532970988
Iteration: 14, Func. Count: 155, Neg. LLF: 116.05700106391862
Iteration: 15, Func. Count: 165, Neg. LLF: 116.20607421472802
Iteration: 16, Func. Count: 176, Neg. LLF: 116.28566663526281
Iteration: 17, Func. Count: 187, Neg. LLF: 116.02642674066138
Iteration: 18, Func. Count: 197, Neg. LLF: 115.99450577844308
Iteration: 19, Func. Count: 207, Neg. LLF: 115.96206808660213
Iteration: 20, Func. Count: 217, Neg. LLF: 115.8701358000617
Iteration: 21, Func. Count: 227, Neg. LLF: 115.8408527319316
Iteration: 22, Func. Count: 237, Neg. LLF: 115.86366844908099
Iteration: 23, Func. Count: 248, Neg. LLF: 115.80167537561505
Iteration: 24, Func. Count: 258, Neg. LLF: 115.79331875695831
Iteration: 25, Func. Count: 268, Neg. LLF: 115.79252155286457
Iteration: 26, Func. Count: 278, Neg. LLF: 115.79238097405273
Iteration: 27, Func. Count: 288, Neg. LLF: 115.79232664613158
Iteration: 28, Func. Count: 298, Neg. LLF: 115.79232279947946
Iteration: 29, Func. Count: 307, Neg. LLF: 115.7923227994124
Optimization terminated successfully (Exit mode 0)
Current function value: 115.79232279947946
Iterations: 29
Function evaluations: 307
Gradient evaluations: 29
Iteration: 1, Func. Count: 8, Neg. LLF: 135.4372315763176
Iteration: 2, Func. Count: 17, Neg. LLF: 466.6194314502702
Iteration: 3, Func. Count: 25, Neg. LLF: 118.938918064993
Iteration: 4, Func. Count: 32, Neg. LLF: 154.04903630183725
Iteration: 5, Func. Count: 41, Neg. LLF: 118.78035927230812
Iteration: 6, Func. Count: 48, Neg. LLF: 118.65739987301602
Iteration: 7, Func. Count: 55, Neg. LLF: 118.5411575525166
Iteration: 8, Func. Count: 62, Neg. LLF: 118.49042971343323
Iteration: 9, Func. Count: 69, Neg. LLF: 118.46642821531192
Iteration: 10, Func. Count: 76, Neg. LLF: 118.45722818050587
Iteration: 11, Func. Count: 83, Neg. LLF: 118.45612486551174
Iteration: 12, Func. Count: 90, Neg. LLF: 118.45593398684079
Iteration: 13, Func. Count: 97, Neg. LLF: 118.45591066439488
Iteration: 14, Func. Count: 103, Neg. LLF: 118.45591071185831
Optimization terminated successfully (Exit mode 0)
Current function value: 118.45591066439488
Iterations: 14
Function evaluations: 103
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 8560408.910177914
Iteration: 2, Func. Count: 18, Neg. LLF: 3626465.7715492547
Iteration: 3, Func. Count: 27, Neg. LLF: 122.49628604133817
Iteration: 4, Func. Count: 36, Neg. LLF: 130.40569768997406
Iteration: 5, Func. Count: 45, Neg. LLF: 128.45344752150976
Iteration: 6, Func. Count: 54, Neg. LLF: 128.51222287752293
Iteration: 7, Func. Count: 63, Neg. LLF: 120.22073323780465
Iteration: 8, Func. Count: 72, Neg. LLF: 119.64367630606743
Iteration: 9, Func. Count: 80, Neg. LLF: 134.80215093818626
Iteration: 10, Func. Count: 90, Neg. LLF: 119.59931067911371
Iteration: 11, Func. Count: 98, Neg. LLF: 119.59884950611483
Iteration: 12, Func. Count: 107, Neg. LLF: 119.59293961665193
Iteration: 13, Func. Count: 115, Neg. LLF: 119.59293371364967
Iteration: 14, Func. Count: 122, Neg. LLF: 119.59293371351961
Optimization terminated successfully (Exit mode 0)
Current function value: 119.59293371364967
Iterations: 14
Function evaluations: 122
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 23132296.456805322
Iteration: 2, Func. Count: 20, Neg. LLF: 7055647.804476693
Iteration: 3, Func. Count: 30, Neg. LLF: 209.2980141162997
Iteration: 4, Func. Count: 41, Neg. LLF: 118.20283572376513
Iteration: 5, Func. Count: 50, Neg. LLF: 117.84316546993182
Iteration: 6, Func. Count: 59, Neg. LLF: 117.25877529365908
Iteration: 7, Func. Count: 68, Neg. LLF: 117.18304631840608
Iteration: 8, Func. Count: 78, Neg. LLF: 116.69162010034327
Iteration: 9, Func. Count: 87, Neg. LLF: 119.28649871134571
Iteration: 10, Func. Count: 97, Neg. LLF: 116.64492660333322
Iteration: 11, Func. Count: 106, Neg. LLF: 116.6117041592349
Iteration: 12, Func. Count: 115, Neg. LLF: 116.58372265748332
Iteration: 13, Func. Count: 124, Neg. LLF: 116.58264541137594
Iteration: 14, Func. Count: 133, Neg. LLF: 116.58249030129153
Iteration: 15, Func. Count: 142, Neg. LLF: 116.58248589554974
Iteration: 16, Func. Count: 151, Neg. LLF: 116.58439370764316
Optimization terminated successfully (Exit mode 0)
Current function value: 116.58248589133069
Iterations: 17
Function evaluations: 154
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 25060488.648501072
Iteration: 2, Func. Count: 22, Neg. LLF: 6859277.311541217
Iteration: 3, Func. Count: 33, Neg. LLF: 231.9817089221283
Iteration: 4, Func. Count: 45, Neg. LLF: 117.16992583914747
Iteration: 5, Func. Count: 55, Neg. LLF: 117.0572551526097
Iteration: 6, Func. Count: 65, Neg. LLF: 116.99210108722866
Iteration: 7, Func. Count: 75, Neg. LLF: 116.94493257633967
Iteration: 8, Func. Count: 85, Neg. LLF: 116.93585344638998
Iteration: 9, Func. Count: 95, Neg. LLF: 116.9306337116314
Iteration: 10, Func. Count: 105, Neg. LLF: 116.92544283952142
Iteration: 11, Func. Count: 115, Neg. LLF: 116.92205336809202
Iteration: 12, Func. Count: 125, Neg. LLF: 116.9215237908339
Iteration: 13, Func. Count: 135, Neg. LLF: 116.92149943778038
Iteration: 14, Func. Count: 145, Neg. LLF: 116.92149847758321
Optimization terminated successfully (Exit mode 0)
Current function value: 116.92149847758321
Iterations: 14
Function evaluations: 145
Gradient evaluations: 14
Iteration: 1, Func. Count: 12, Neg. LLF: 479.9370699758435
Iteration: 2, Func. Count: 24, Neg. LLF: 7239538.495594467
Iteration: 3, Func. Count: 36, Neg. LLF: 154.45890854610866
Iteration: 4, Func. Count: 48, Neg. LLF: 141.43619049434014
Iteration: 5, Func. Count: 60, Neg. LLF: 133.90993686970344
Iteration: 6, Func. Count: 72, Neg. LLF: 132.14972361027472
Iteration: 7, Func. Count: 84, Neg. LLF: 131.18585957245242
Iteration: 8, Func. Count: 96, Neg. LLF: 123.5533889940576
Iteration: 9, Func. Count: 108, Neg. LLF: 9371258.631457327
Iteration: 10, Func. Count: 121, Neg. LLF: 170.80139073908336
Iteration: 11, Func. Count: 133, Neg. LLF: 134.23732151636392
Iteration: 12, Func. Count: 145, Neg. LLF: 116.74198835994608
Iteration: 13, Func. Count: 156, Neg. LLF: 116.36244250448618
Iteration: 14, Func. Count: 168, Neg. LLF: 116.84594942377305
Iteration: 15, Func. Count: 180, Neg. LLF: 115.97422748140932
Iteration: 16, Func. Count: 192, Neg. LLF: 115.9731996529695
Iteration: 17, Func. Count: 204, Neg. LLF: 115.85694882147827
Iteration: 18, Func. Count: 215, Neg. LLF: 115.82250999434699
Iteration: 19, Func. Count: 226, Neg. LLF: 115.82020110088708
Iteration: 20, Func. Count: 238, Neg. LLF: 115.79425919361192
Iteration: 21, Func. Count: 249, Neg. LLF: 115.79260362493716
Iteration: 22, Func. Count: 260, Neg. LLF: 115.79235439911365
Iteration: 23, Func. Count: 271, Neg. LLF: 115.792333661684
Iteration: 24, Func. Count: 282, Neg. LLF: 115.79232360235399
Iteration: 25, Func. Count: 293, Neg. LLF: 115.79232272063321
Optimization terminated successfully (Exit mode 0)
Current function value: 115.79232272063321
Iterations: 26
Function evaluations: 293
Gradient evaluations: 25
Iteration: 1, Func. Count: 5, Neg. LLF: 128.9476446661741
Iteration: 2, Func. Count: 10, Neg. LLF: 133.64341252799062
Iteration: 3, Func. Count: 15, Neg. LLF: 122.07063611719742
Iteration: 4, Func. Count: 19, Neg. LLF: 122.06245423938886
Iteration: 5, Func. Count: 23, Neg. LLF: 122.06224793397911
Iteration: 6, Func. Count: 27, Neg. LLF: 122.06224362817065
Iteration: 7, Func. Count: 30, Neg. LLF: 122.06224362818695
Optimization terminated successfully (Exit mode 0)
Current function value: 122.06224362817065
Iterations: 7
Function evaluations: 30
Gradient evaluations: 7
Iteration: 1, Func. Count: 6, Neg. LLF: 572.8968176177963
Iteration: 2, Func. Count: 13, Neg. LLF: 153.88595564922394
Iteration: 3, Func. Count: 19, Neg. LLF: 125.14529034281956
Iteration: 4, Func. Count: 25, Neg. LLF: 122.3887560937886
Iteration: 5, Func. Count: 31, Neg. LLF: 131.12973850755208
Iteration: 6, Func. Count: 37, Neg. LLF: 121.95872469370279
Iteration: 7, Func. Count: 43, Neg. LLF: 134.02636372887974
Iteration: 8, Func. Count: 49, Neg. LLF: 121.32466860568923
Iteration: 9, Func. Count: 54, Neg. LLF: 122.69169140098282
Iteration: 10, Func. Count: 60, Neg. LLF: 120.99653331718144
Iteration: 11, Func. Count: 66, Neg. LLF: 120.33916382535658
Iteration: 12, Func. Count: 71, Neg. LLF: 120.29266184405743
Iteration: 13, Func. Count: 76, Neg. LLF: 120.25882920459405
Iteration: 14, Func. Count: 81, Neg. LLF: 120.25697137049923
Iteration: 15, Func. Count: 86, Neg. LLF: 120.25688826152395
Iteration: 16, Func. Count: 91, Neg. LLF: 120.25688582293944
Iteration: 17, Func. Count: 95, Neg. LLF: 120.25688582295163
Optimization terminated successfully (Exit mode 0)
Current function value: 120.25688582293944
Iterations: 17
Function evaluations: 95
Gradient evaluations: 17
Iteration: 1, Func. Count: 7, Neg. LLF: 22214229.91726323
Iteration: 2, Func. Count: 15, Neg. LLF: 217.67963068342772
Iteration: 3, Func. Count: 23, Neg. LLF: 122.82546295415983
Iteration: 4, Func. Count: 30, Neg. LLF: 123.73541904592173
Iteration: 5, Func. Count: 37, Neg. LLF: 124.85504504188869
Iteration: 6, Func. Count: 44, Neg. LLF: 120.79473008066009
Iteration: 7, Func. Count: 51, Neg. LLF: 120.58739162557619
Iteration: 8, Func. Count: 58, Neg. LLF: 120.35959711166774
Iteration: 9, Func. Count: 64, Neg. LLF: 120.32370753178941
Iteration: 10, Func. Count: 70, Neg. LLF: 120.32729597744749
Iteration: 11, Func. Count: 77, Neg. LLF: 120.3089767804126
Iteration: 12, Func. Count: 83, Neg. LLF: 120.30886323432958
Iteration: 13, Func. Count: 89, Neg. LLF: 120.30885939419464
Iteration: 14, Func. Count: 94, Neg. LLF: 120.30885939418754
Optimization terminated successfully (Exit mode 0)
Current function value: 120.30885939419464
Iterations: 14
Function evaluations: 94
Gradient evaluations: 14
Iteration: 1, Func. Count: 8, Neg. LLF: 20904089.95101927
Iteration: 2, Func. Count: 16, Neg. LLF: 153.66215679907333
Iteration: 3, Func. Count: 24, Neg. LLF: 123.77227451248606
Iteration: 4, Func. Count: 32, Neg. LLF: 121.06570222279814
Iteration: 5, Func. Count: 39, Neg. LLF: 123.79242888425266
Iteration: 6, Func. Count: 47, Neg. LLF: 120.68713344969343
Iteration: 7, Func. Count: 55, Neg. LLF: 120.06998949838827
Iteration: 8, Func. Count: 62, Neg. LLF: 120.05226012093797
Iteration: 9, Func. Count: 69, Neg. LLF: 120.04541511160741
Iteration: 10, Func. Count: 76, Neg. LLF: 120.04408775334254
Iteration: 11, Func. Count: 83, Neg. LLF: 120.04362610716787
Iteration: 12, Func. Count: 90, Neg. LLF: 120.04362405704526
Iteration: 13, Func. Count: 96, Neg. LLF: 120.0436240570464
Optimization terminated successfully (Exit mode 0)
Current function value: 120.04362405704526
Iterations: 13
Function evaluations: 96
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 20624506.14016465
Iteration: 2, Func. Count: 18, Neg. LLF: 178.53345067776596
Iteration: 3, Func. Count: 27, Neg. LLF: 122.8936337570739
Iteration: 4, Func. Count: 36, Neg. LLF: 129.7555788404127
Iteration: 5, Func. Count: 45, Neg. LLF: 120.58991345280053
Iteration: 6, Func. Count: 54, Neg. LLF: 120.00080173766537
Iteration: 7, Func. Count: 62, Neg. LLF: 120.37683599844465
Iteration: 8, Func. Count: 71, Neg. LLF: 119.98043686607878
Iteration: 9, Func. Count: 80, Neg. LLF: 119.92079968477604
Iteration: 10, Func. Count: 88, Neg. LLF: 119.89989635455817
Iteration: 11, Func. Count: 96, Neg. LLF: 119.89881787053038
Iteration: 12, Func. Count: 104, Neg. LLF: 119.89864062853731
Iteration: 13, Func. Count: 112, Neg. LLF: 119.89858031841847
Iteration: 14, Func. Count: 120, Neg. LLF: 119.89857825684098
Iteration: 15, Func. Count: 127, Neg. LLF: 119.89857825678504
Optimization terminated successfully (Exit mode 0)
Current function value: 119.89857825684098
Iterations: 15
Function evaluations: 127
Gradient evaluations: 15
Iteration: 1, Func. Count: 6, Neg. LLF: 131.12984024096087
Iteration: 2, Func. Count: 12, Neg. LLF: 128.40512411531037
Iteration: 3, Func. Count: 18, Neg. LLF: 118.79276190321771
Iteration: 4, Func. Count: 23, Neg. LLF: 118.78971425531722
Iteration: 5, Func. Count: 28, Neg. LLF: 118.7883937904521
Iteration: 6, Func. Count: 33, Neg. LLF: 118.78794449316642
Iteration: 7, Func. Count: 38, Neg. LLF: 118.7877383233689
Iteration: 8, Func. Count: 43, Neg. LLF: 118.78756722118408
Iteration: 9, Func. Count: 48, Neg. LLF: 118.78754248757669
Iteration: 10, Func. Count: 53, Neg. LLF: 118.78754073790932
Iteration: 11, Func. Count: 57, Neg. LLF: 118.78754073790573
Optimization terminated successfully (Exit mode 0)
Current function value: 118.78754073790932
Iterations: 11
Function evaluations: 57
Gradient evaluations: 11
Iteration: 1, Func. Count: 7, Neg. LLF: 18451231.545595564
Iteration: 2, Func. Count: 15, Neg. LLF: 126.08042236435284
Iteration: 3, Func. Count: 22, Neg. LLF: 467.4265413922385
Iteration: 4, Func. Count: 29, Neg. LLF: 239.37034841399839
Iteration: 5, Func. Count: 36, Neg. LLF: 174.72723578639417
Iteration: 6, Func. Count: 43, Neg. LLF: 122.02215250209852
Iteration: 7, Func. Count: 50, Neg. LLF: 122.44153462673991
Iteration: 8, Func. Count: 57, Neg. LLF: 120.71058851044032
Iteration: 9, Func. Count: 64, Neg. LLF: 119.62694244379993
Iteration: 10, Func. Count: 70, Neg. LLF: 119.59479758059334
Iteration: 11, Func. Count: 76, Neg. LLF: 119.59455269722092
Iteration: 12, Func. Count: 83, Neg. LLF: 119.59297792237658
Iteration: 13, Func. Count: 89, Neg. LLF: 119.59293414991501
Iteration: 14, Func. Count: 94, Neg. LLF: 119.59293415027088
Optimization terminated successfully (Exit mode 0)
Current function value: 119.59293414991501
Iterations: 14
Function evaluations: 94
Gradient evaluations: 14
Iteration: 1, Func. Count: 8, Neg. LLF: 18262438.02264643
Iteration: 2, Func. Count: 16, Neg. LLF: 137.31400104401382
Iteration: 3, Func. Count: 24, Neg. LLF: 119.80082225025058
Iteration: 4, Func. Count: 31, Neg. LLF: 119.54207430576581
Iteration: 5, Func. Count: 39, Neg. LLF: 119.45400736035059
Iteration: 6, Func. Count: 47, Neg. LLF: 117.28688939103664
Iteration: 7, Func. Count: 55, Neg. LLF: 116.65553242105722
Iteration: 8, Func. Count: 62, Neg. LLF: 117.41300323449265
Iteration: 9, Func. Count: 70, Neg. LLF: 116.58291449066627
Iteration: 10, Func. Count: 77, Neg. LLF: 116.58248405355347
Iteration: 11, Func. Count: 84, Neg. LLF: 116.58248280774598
Iteration: 12, Func. Count: 90, Neg. LLF: 116.58248280809282
Optimization terminated successfully (Exit mode 0)
Current function value: 116.58248280774598
Iterations: 12
Function evaluations: 90
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 17664243.82203596
Iteration: 2, Func. Count: 18, Neg. LLF: 128.3363808919212
Iteration: 3, Func. Count: 27, Neg. LLF: 117.85285191674583
Iteration: 4, Func. Count: 35, Neg. LLF: 128.85963318551146
Iteration: 5, Func. Count: 44, Neg. LLF: 120.05695540029957
Iteration: 6, Func. Count: 53, Neg. LLF: 117.17433918365451
Iteration: 7, Func. Count: 62, Neg. LLF: 116.93993220293024
Iteration: 8, Func. Count: 70, Neg. LLF: 116.92304242780656
Iteration: 9, Func. Count: 78, Neg. LLF: 116.92161049994021
Iteration: 10, Func. Count: 86, Neg. LLF: 116.92150737521376
Iteration: 11, Func. Count: 94, Neg. LLF: 116.92150030291529
Iteration: 12, Func. Count: 102, Neg. LLF: 116.92149845990885
Iteration: 13, Func. Count: 109, Neg. LLF: 116.92149845991523
Optimization terminated successfully (Exit mode 0)
Current function value: 116.92149845990885
Iterations: 13
Function evaluations: 109
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 19619536.645662338
Iteration: 2, Func. Count: 21, Neg. LLF: 140.19975917456415
Iteration: 3, Func. Count: 31, Neg. LLF: 117.53966063514197
Iteration: 4, Func. Count: 40, Neg. LLF: 118.87624005576328
Iteration: 5, Func. Count: 51, Neg. LLF: 137.69216622622136
Iteration: 6, Func. Count: 61, Neg. LLF: 128.14391301596055
Iteration: 7, Func. Count: 71, Neg. LLF: 116.35503755977975
Iteration: 8, Func. Count: 81, Neg. LLF: 116.0507051776583
Iteration: 9, Func. Count: 91, Neg. LLF: 116.06656488223585
Iteration: 10, Func. Count: 101, Neg. LLF: 115.90222971015245
Iteration: 11, Func. Count: 111, Neg. LLF: 115.93274245912554
Iteration: 12, Func. Count: 121, Neg. LLF: 115.86311830081686
Iteration: 13, Func. Count: 130, Neg. LLF: 115.86235013104856
Iteration: 14, Func. Count: 139, Neg. LLF: 115.86213257028275
Iteration: 15, Func. Count: 148, Neg. LLF: 115.86210685137296
Iteration: 16, Func. Count: 157, Neg. LLF: 115.8621045158583
Iteration: 17, Func. Count: 165, Neg. LLF: 115.862104515843
Optimization terminated successfully (Exit mode 0)
Current function value: 115.8621045158583
Iterations: 17
Function evaluations: 165
Gradient evaluations: 17
Iteration: 1, Func. Count: 7, Neg. LLF: 128.60822259831804
Iteration: 2, Func. Count: 14, Neg. LLF: 141.67966632351283
Iteration: 3, Func. Count: 21, Neg. LLF: 118.80155428499442
Iteration: 4, Func. Count: 27, Neg. LLF: 118.79344088135466
Iteration: 5, Func. Count: 33, Neg. LLF: 118.78827277054074
Iteration: 6, Func. Count: 39, Neg. LLF: 118.78787899848209
Iteration: 7, Func. Count: 45, Neg. LLF: 118.78772769897896
Iteration: 8, Func. Count: 51, Neg. LLF: 118.7876017156905
Iteration: 9, Func. Count: 57, Neg. LLF: 118.7875482812769
Iteration: 10, Func. Count: 63, Neg. LLF: 118.78754102197118
Iteration: 11, Func. Count: 68, Neg. LLF: 118.78754117036443
Optimization terminated successfully (Exit mode 0)
Current function value: 118.78754102197118
Iterations: 11
Function evaluations: 68
Gradient evaluations: 11
Iteration: 1, Func. Count: 8, Neg. LLF: 4865547.085816119
Iteration: 2, Func. Count: 17, Neg. LLF: 129.80670280110553
Iteration: 3, Func. Count: 26, Neg. LLF: 121.13661806142895
Iteration: 4, Func. Count: 33, Neg. LLF: 120.336695163062
Iteration: 5, Func. Count: 40, Neg. LLF: 243.41452579396326
Iteration: 6, Func. Count: 49, Neg. LLF: 120.53511379107186
Iteration: 7, Func. Count: 57, Neg. LLF: 119.68939681400724
Iteration: 8, Func. Count: 64, Neg. LLF: 119.60192489258813
Iteration: 9, Func. Count: 71, Neg. LLF: 119.59492699299528
Iteration: 10, Func. Count: 78, Neg. LLF: 119.5931443572776
Iteration: 11, Func. Count: 85, Neg. LLF: 119.59296510614116
Iteration: 12, Func. Count: 92, Neg. LLF: 119.59294048775426
Iteration: 13, Func. Count: 99, Neg. LLF: 119.59293383306374
Iteration: 14, Func. Count: 105, Neg. LLF: 119.59293383296655
Optimization terminated successfully (Exit mode 0)
Current function value: 119.59293383306374
Iterations: 14
Function evaluations: 105
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 17767310.898065988
Iteration: 2, Func. Count: 19, Neg. LLF: 125.15091516197738
Iteration: 3, Func. Count: 28, Neg. LLF: 119.15906870131768
Iteration: 4, Func. Count: 36, Neg. LLF: 118.5083205936176
Iteration: 5, Func. Count: 44, Neg. LLF: 117.64020812055158
Iteration: 6, Func. Count: 52, Neg. LLF: 117.25329466306202
Iteration: 7, Func. Count: 61, Neg. LLF: 117.50114367890072
Iteration: 8, Func. Count: 70, Neg. LLF: 117.09908873908257
Iteration: 9, Func. Count: 78, Neg. LLF: 117.06005677085437
Iteration: 10, Func. Count: 86, Neg. LLF: 116.73385788964762
Iteration: 11, Func. Count: 94, Neg. LLF: 116.62759484469727
Iteration: 12, Func. Count: 102, Neg. LLF: 116.58676910101035
Iteration: 13, Func. Count: 110, Neg. LLF: 116.5834376592651
Iteration: 14, Func. Count: 118, Neg. LLF: 116.5825097092313
Iteration: 15, Func. Count: 126, Neg. LLF: 116.58248413110445
Iteration: 16, Func. Count: 134, Neg. LLF: 116.58248364808223
Optimization terminated successfully (Exit mode 0)
Current function value: 116.58248364808223
Iterations: 16
Function evaluations: 134
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 17754007.54310773
Iteration: 2, Func. Count: 20, Neg. LLF: 136.9821127604285
Iteration: 3, Func. Count: 30, Neg. LLF: 122.01084192807176
Iteration: 4, Func. Count: 40, Neg. LLF: 118.94345576550249
Iteration: 5, Func. Count: 49, Neg. LLF: 117.27728927263578
Iteration: 6, Func. Count: 58, Neg. LLF: 122.79450727165533
Iteration: 7, Func. Count: 68, Neg. LLF: 116.98876371739257
Iteration: 8, Func. Count: 77, Neg. LLF: 116.93648347530896
Iteration: 9, Func. Count: 86, Neg. LLF: 116.92749677101297
Iteration: 10, Func. Count: 95, Neg. LLF: 116.92195472870347
Iteration: 11, Func. Count: 104, Neg. LLF: 116.92158741691289
Iteration: 12, Func. Count: 113, Neg. LLF: 116.9215036854387
Iteration: 13, Func. Count: 122, Neg. LLF: 116.92149859455908
Iteration: 14, Func. Count: 130, Neg. LLF: 116.92149859464477
Optimization terminated successfully (Exit mode 0)
Current function value: 116.92149859455908
Iterations: 14
Function evaluations: 130
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 4133528.00144887
Iteration: 2, Func. Count: 23, Neg. LLF: 133.87831247001955
Iteration: 3, Func. Count: 34, Neg. LLF: 125.89986893010203
Iteration: 4, Func. Count: 45, Neg. LLF: 116.08192214014608
Iteration: 5, Func. Count: 55, Neg. LLF: 122.36481586604506
Iteration: 6, Func. Count: 67, Neg. LLF: 120.12101335291375
Iteration: 7, Func. Count: 78, Neg. LLF: 115.91368768943374
Iteration: 8, Func. Count: 89, Neg. LLF: 115.89969485963815
Iteration: 9, Func. Count: 100, Neg. LLF: 115.87022768161854
Iteration: 10, Func. Count: 111, Neg. LLF: 115.86214974176582
Iteration: 11, Func. Count: 121, Neg. LLF: 115.86211198576265
Iteration: 12, Func. Count: 131, Neg. LLF: 115.86210637224646
Iteration: 13, Func. Count: 141, Neg. LLF: 115.86210465220329
Iteration: 14, Func. Count: 150, Neg. LLF: 115.86210465224094
Optimization terminated successfully (Exit mode 0)
Current function value: 115.86210465220329
Iterations: 14
Function evaluations: 150
Gradient evaluations: 14
Iteration: 1, Func. Count: 8, Neg. LLF: 134.7726304614598
Iteration: 2, Func. Count: 16, Neg. LLF: 144.43582364087933
Iteration: 3, Func. Count: 24, Neg. LLF: 120.5796137610509
Iteration: 4, Func. Count: 33, Neg. LLF: 118.49684737283869
Iteration: 5, Func. Count: 40, Neg. LLF: 118.45719225925576
Iteration: 6, Func. Count: 47, Neg. LLF: 118.45635108617655
Iteration: 7, Func. Count: 54, Neg. LLF: 118.45605270342449
Iteration: 8, Func. Count: 61, Neg. LLF: 118.4559544499572
Iteration: 9, Func. Count: 68, Neg. LLF: 118.4559145304685
Iteration: 10, Func. Count: 75, Neg. LLF: 118.45591098541772
Iteration: 11, Func. Count: 81, Neg. LLF: 118.45591098544523
Optimization terminated successfully (Exit mode 0)
Current function value: 118.45591098541772
Iterations: 11
Function evaluations: 81
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 919.0135168590384
Iteration: 2, Func. Count: 19, Neg. LLF: 170.27503078306248
Iteration: 3, Func. Count: 29, Neg. LLF: 138.08157498073572
Iteration: 4, Func. Count: 38, Neg. LLF: 124.04879458407505
Iteration: 5, Func. Count: 47, Neg. LLF: 121.34066202200376
Iteration: 6, Func. Count: 56, Neg. LLF: 119.75497512980323
Iteration: 7, Func. Count: 64, Neg. LLF: 130.02001684349284
Iteration: 8, Func. Count: 74, Neg. LLF: 119.64195756789414
Iteration: 9, Func. Count: 82, Neg. LLF: 119.617518245053
Iteration: 10, Func. Count: 90, Neg. LLF: 119.59928505492287
Iteration: 11, Func. Count: 98, Neg. LLF: 119.59304425934735
Iteration: 12, Func. Count: 106, Neg. LLF: 119.59293712475105
Iteration: 13, Func. Count: 114, Neg. LLF: 119.59293367132763
Iteration: 14, Func. Count: 121, Neg. LLF: 119.59293367130161
Optimization terminated successfully (Exit mode 0)
Current function value: 119.59293367132763
Iterations: 14
Function evaluations: 121
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 4870401.418984743
Iteration: 2, Func. Count: 21, Neg. LLF: 129.1198659837219
Iteration: 3, Func. Count: 31, Neg. LLF: 120.98470728588178
Iteration: 4, Func. Count: 41, Neg. LLF: 118.24694892541558
Iteration: 5, Func. Count: 50, Neg. LLF: 117.41290727295005
Iteration: 6, Func. Count: 59, Neg. LLF: 117.37264129439393
Iteration: 7, Func. Count: 69, Neg. LLF: 116.94571357693097
Iteration: 8, Func. Count: 78, Neg. LLF: 116.99512319650218
Iteration: 9, Func. Count: 88, Neg. LLF: 116.5946003053254
Iteration: 10, Func. Count: 97, Neg. LLF: 116.58457896625283
Iteration: 11, Func. Count: 106, Neg. LLF: 116.58250948298414
Iteration: 12, Func. Count: 115, Neg. LLF: 116.58248326632125
Iteration: 13, Func. Count: 124, Neg. LLF: 116.58248245199631
Optimization terminated successfully (Exit mode 0)
Current function value: 116.58248245199631
Iterations: 13
Function evaluations: 124
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 17768300.639275063
Iteration: 2, Func. Count: 22, Neg. LLF: 143.72201309541956
Iteration: 3, Func. Count: 33, Neg. LLF: 124.31979002794311
Iteration: 4, Func. Count: 44, Neg. LLF: 120.02128279168831
Iteration: 5, Func. Count: 55, Neg. LLF: 117.28856103047728
Iteration: 6, Func. Count: 65, Neg. LLF: 124.67155205588863
Iteration: 7, Func. Count: 76, Neg. LLF: 117.1242594332591
Iteration: 8, Func. Count: 87, Neg. LLF: 116.92708095005104
Iteration: 9, Func. Count: 97, Neg. LLF: 116.92240909189525
Iteration: 10, Func. Count: 107, Neg. LLF: 116.9217933159513
Iteration: 11, Func. Count: 117, Neg. LLF: 116.9215493125682
Iteration: 12, Func. Count: 127, Neg. LLF: 116.92151509892527
Iteration: 13, Func. Count: 137, Neg. LLF: 116.92150219360484
Iteration: 14, Func. Count: 147, Neg. LLF: 116.92149870175568
Iteration: 15, Func. Count: 156, Neg. LLF: 116.92149870164886
Optimization terminated successfully (Exit mode 0)
Current function value: 116.92149870175568
Iterations: 15
Function evaluations: 156
Gradient evaluations: 15
Iteration: 1, Func. Count: 12, Neg. LLF: 4123271.1041755397
Iteration: 2, Func. Count: 24, Neg. LLF: 133.26036013535827
Iteration: 3, Func. Count: 36, Neg. LLF: 121.46623359015777
Iteration: 4, Func. Count: 48, Neg. LLF: 117.01232790765907
Iteration: 5, Func. Count: 59, Neg. LLF: 126.63539832530346
Iteration: 6, Func. Count: 71, Neg. LLF: 134.66157811701333
Iteration: 7, Func. Count: 83, Neg. LLF: 134.8313692472916
Iteration: 8, Func. Count: 95, Neg. LLF: 117.46326265466286
Iteration: 9, Func. Count: 107, Neg. LLF: 119.2566150154586
Iteration: 10, Func. Count: 119, Neg. LLF: 117.0037967801855
Iteration: 11, Func. Count: 131, Neg. LLF: 115.89698721911013
Iteration: 12, Func. Count: 143, Neg. LLF: 115.91690996587097
Iteration: 13, Func. Count: 155, Neg. LLF: 115.79723320755197
Iteration: 14, Func. Count: 166, Neg. LLF: 115.7931882937491
Iteration: 15, Func. Count: 177, Neg. LLF: 115.79244593021774
Iteration: 16, Func. Count: 188, Neg. LLF: 115.79232494029772
Iteration: 17, Func. Count: 199, Neg. LLF: 115.79232270904913
Iteration: 18, Func. Count: 209, Neg. LLF: 115.79232270906019
Optimization terminated successfully (Exit mode 0)
Current function value: 115.79232270904913
Iterations: 18
Function evaluations: 209
Gradient evaluations: 18
Iteration: 1, Func. Count: 9, Neg. LLF: 136.5838531387266
Iteration: 2, Func. Count: 18, Neg. LLF: 136.57239108956546
Iteration: 3, Func. Count: 27, Neg. LLF: 119.85617873912108
Iteration: 4, Func. Count: 36, Neg. LLF: 118.55668143735427
Iteration: 5, Func. Count: 44, Neg. LLF: 118.46290190236466
Iteration: 6, Func. Count: 52, Neg. LLF: 118.45777531565416
Iteration: 7, Func. Count: 60, Neg. LLF: 118.45601100582947
Iteration: 8, Func. Count: 68, Neg. LLF: 118.4559247228737
Iteration: 9, Func. Count: 76, Neg. LLF: 118.45591696050545
Iteration: 10, Func. Count: 84, Neg. LLF: 118.45591075954574
Iteration: 11, Func. Count: 91, Neg. LLF: 118.45591080702674
Optimization terminated successfully (Exit mode 0)
Current function value: 118.45591075954574
Iterations: 11
Function evaluations: 91
Gradient evaluations: 11
Iteration: 1, Func. Count: 10, Neg. LLF: 4874165.686404527
Iteration: 2, Func. Count: 20, Neg. LLF: 146.15686036786988
Iteration: 3, Func. Count: 30, Neg. LLF: 126.66812105053226
Iteration: 4, Func. Count: 40, Neg. LLF: 120.10837180229979
Iteration: 5, Func. Count: 49, Neg. LLF: 124.65619273487866
Iteration: 6, Func. Count: 59, Neg. LLF: 121.88315388328255
Iteration: 7, Func. Count: 69, Neg. LLF: 125.11980208439486
Iteration: 8, Func. Count: 79, Neg. LLF: 119.69068750649916
Iteration: 9, Func. Count: 88, Neg. LLF: 119.63000483268092
Iteration: 10, Func. Count: 97, Neg. LLF: 119.60547769214344
Iteration: 11, Func. Count: 106, Neg. LLF: 119.59739550337899
Iteration: 12, Func. Count: 115, Neg. LLF: 119.59379968236132
Iteration: 13, Func. Count: 124, Neg. LLF: 119.59299633960724
Iteration: 14, Func. Count: 133, Neg. LLF: 119.59293410805758
Iteration: 15, Func. Count: 141, Neg. LLF: 119.59293410771375
Optimization terminated successfully (Exit mode 0)
Current function value: 119.59293410805758
Iterations: 15
Function evaluations: 141
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 4878817.7147705145
Iteration: 2, Func. Count: 22, Neg. LLF: 126.57687233813166
Iteration: 3, Func. Count: 33, Neg. LLF: 122.61472473183693
Iteration: 4, Func. Count: 44, Neg. LLF: 118.38711980953046
Iteration: 5, Func. Count: 54, Neg. LLF: 117.21139707075409
Iteration: 6, Func. Count: 64, Neg. LLF: 117.04843143377359
Iteration: 7, Func. Count: 74, Neg. LLF: 116.96718902884665
Iteration: 8, Func. Count: 84, Neg. LLF: 116.76483857441558
Iteration: 9, Func. Count: 94, Neg. LLF: 116.58984500861708
Iteration: 10, Func. Count: 104, Neg. LLF: 116.58257865172669
Iteration: 11, Func. Count: 114, Neg. LLF: 116.5824841655865
Iteration: 12, Func. Count: 124, Neg. LLF: 116.58248415283092
Optimization terminated successfully (Exit mode 0)
Current function value: 116.58248372986117
Iterations: 12
Function evaluations: 125
Gradient evaluations: 12
Iteration: 1, Func. Count: 12, Neg. LLF: 193.7761498029004
Iteration: 2, Func. Count: 24, Neg. LLF: 129.2521238412103
Iteration: 3, Func. Count: 36, Neg. LLF: 120.82678029079275
Iteration: 4, Func. Count: 47, Neg. LLF: 126.3491566106687
Iteration: 5, Func. Count: 59, Neg. LLF: 130.0397814716274
Iteration: 6, Func. Count: 71, Neg. LLF: 124.65227140245614
Iteration: 7, Func. Count: 83, Neg. LLF: 123.82549064782117
Iteration: 8, Func. Count: 95, Neg. LLF: 124.1675835730603
Iteration: 9, Func. Count: 107, Neg. LLF: 118.20069538579293
Iteration: 10, Func. Count: 119, Neg. LLF: 117.20490390582566
Iteration: 11, Func. Count: 130, Neg. LLF: 117.17872303169882
Iteration: 12, Func. Count: 141, Neg. LLF: 117.12457251127846
Iteration: 13, Func. Count: 152, Neg. LLF: 117.04515497683475
Iteration: 14, Func. Count: 163, Neg. LLF: 116.9776683578036
Iteration: 15, Func. Count: 174, Neg. LLF: 116.9385031964957
Iteration: 16, Func. Count: 185, Neg. LLF: 116.92281981742288
Iteration: 17, Func. Count: 196, Neg. LLF: 116.92156009814724
Iteration: 18, Func. Count: 207, Neg. LLF: 116.92149931955656
Iteration: 19, Func. Count: 218, Neg. LLF: 116.9214984481074
Optimization terminated successfully (Exit mode 0)
Current function value: 116.9214984481074
Iterations: 19
Function evaluations: 218
Gradient evaluations: 19
Iteration: 1, Func. Count: 13, Neg. LLF: 4128907.593676806
Iteration: 2, Func. Count: 26, Neg. LLF: 132.01966288903807
Iteration: 3, Func. Count: 39, Neg. LLF: 121.292284480563
Iteration: 4, Func. Count: 52, Neg. LLF: 117.13349526812377
Iteration: 5, Func. Count: 64, Neg. LLF: 131.30628812062383
Iteration: 6, Func. Count: 77, Neg. LLF: 131.0027694400245
Iteration: 7, Func. Count: 90, Neg. LLF: 126.44883915277865
Iteration: 8, Func. Count: 103, Neg. LLF: 161.30882579918952
Iteration: 9, Func. Count: 116, Neg. LLF: 116.65854377788769
Iteration: 10, Func. Count: 129, Neg. LLF: 116.50665519139537
Iteration: 11, Func. Count: 142, Neg. LLF: 118.45598880740663
Iteration: 12, Func. Count: 156, Neg. LLF: 115.89850535399702
Iteration: 13, Func. Count: 169, Neg. LLF: 115.7952735635579
Iteration: 14, Func. Count: 181, Neg. LLF: 115.7925336267273
Iteration: 15, Func. Count: 193, Neg. LLF: 115.79233137115885
Iteration: 16, Func. Count: 205, Neg. LLF: 115.79232288765499
Iteration: 17, Func. Count: 216, Neg. LLF: 115.79232288766666
Optimization terminated successfully (Exit mode 0)
Current function value: 115.79232288765499
Iterations: 17
Function evaluations: 216
Gradient evaluations: 17
Iteration: 1, Func. Count: 6, Neg. LLF: 123.42766803513024
Iteration: 2, Func. Count: 12, Neg. LLF: 123.66984626126853
Iteration: 3, Func. Count: 18, Neg. LLF: 122.17661659144758
Iteration: 4, Func. Count: 24, Neg. LLF: 186.39273911894526
Iteration: 5, Func. Count: 30, Neg. LLF: 121.94439616989096
Iteration: 6, Func. Count: 35, Neg. LLF: 121.92595252031956
Iteration: 7, Func. Count: 40, Neg. LLF: 121.92216225209938
Iteration: 8, Func. Count: 45, Neg. LLF: 121.9217235023331
Iteration: 9, Func. Count: 50, Neg. LLF: 121.92171963712292
Iteration: 10, Func. Count: 54, Neg. LLF: 121.92171963713102
Optimization terminated successfully (Exit mode 0)
Current function value: 121.92171963712292
Iterations: 10
Function evaluations: 54
Gradient evaluations: 10
Iteration: 1, Func. Count: 7, Neg. LLF: 1466.6206200423937
Iteration: 2, Func. Count: 15, Neg. LLF: 134.68807963200305
Iteration: 3, Func. Count: 22, Neg. LLF: 125.27994871015389
Iteration: 4, Func. Count: 29, Neg. LLF: 122.90046508334694
Iteration: 5, Func. Count: 35, Neg. LLF: 122.3208488807093
Iteration: 6, Func. Count: 41, Neg. LLF: 122.05329369698306
Iteration: 7, Func. Count: 47, Neg. LLF: 124.61080196547567
Iteration: 8, Func. Count: 54, Neg. LLF: 121.8871496809106
Iteration: 9, Func. Count: 61, Neg. LLF: 120.76804733576114
Iteration: 10, Func. Count: 67, Neg. LLF: 120.63821271009053
Iteration: 11, Func. Count: 74, Neg. LLF: 120.35853075119927
Iteration: 12, Func. Count: 81, Neg. LLF: 120.26189347614836
Iteration: 13, Func. Count: 87, Neg. LLF: 120.25737961453646
Iteration: 14, Func. Count: 93, Neg. LLF: 120.25689093026712
Iteration: 15, Func. Count: 99, Neg. LLF: 120.25688596693873
Iteration: 16, Func. Count: 104, Neg. LLF: 120.25688596734844
Optimization terminated successfully (Exit mode 0)
Current function value: 120.25688596693873
Iterations: 16
Function evaluations: 104
Gradient evaluations: 16
Iteration: 1, Func. Count: 8, Neg. LLF: 20274112.874312717
Iteration: 2, Func. Count: 17, Neg. LLF: 195.0658451173923
Iteration: 3, Func. Count: 25, Neg. LLF: 122.18589459047217
Iteration: 4, Func. Count: 32, Neg. LLF: 120.79275039260132
Iteration: 5, Func. Count: 39, Neg. LLF: 120.70816962572762
Iteration: 6, Func. Count: 47, Neg. LLF: 120.88640316438554
Iteration: 7, Func. Count: 55, Neg. LLF: 120.40829128313031
Iteration: 8, Func. Count: 62, Neg. LLF: 120.32860921944133
Iteration: 9, Func. Count: 69, Neg. LLF: 120.31489304929116
Iteration: 10, Func. Count: 76, Neg. LLF: 120.30987412748615
Iteration: 11, Func. Count: 83, Neg. LLF: 120.30890813517163
Iteration: 12, Func. Count: 90, Neg. LLF: 120.30885987133972
Iteration: 13, Func. Count: 96, Neg. LLF: 120.30885987149802
Optimization terminated successfully (Exit mode 0)
Current function value: 120.30885987133972
Iterations: 13
Function evaluations: 96
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 19484475.371376015
Iteration: 2, Func. Count: 18, Neg. LLF: 151.28379096993478
Iteration: 3, Func. Count: 27, Neg. LLF: 121.79148592569315
Iteration: 4, Func. Count: 36, Neg. LLF: 123.61803698971808
Iteration: 5, Func. Count: 47, Neg. LLF: 120.344899644049
Iteration: 6, Func. Count: 55, Neg. LLF: 120.1113395434151
Iteration: 7, Func. Count: 63, Neg. LLF: 120.12587936083558
Iteration: 8, Func. Count: 72, Neg. LLF: 120.04428736947798
Iteration: 9, Func. Count: 80, Neg. LLF: 120.04366163422145
Iteration: 10, Func. Count: 88, Neg. LLF: 120.04362780474442
Iteration: 11, Func. Count: 96, Neg. LLF: 120.04362415883018
Iteration: 12, Func. Count: 103, Neg. LLF: 120.04362415887913
Optimization terminated successfully (Exit mode 0)
Current function value: 120.04362415883018
Iterations: 12
Function evaluations: 103
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 18745621.044059165
Iteration: 2, Func. Count: 20, Neg. LLF: 130.4449465444997
Iteration: 3, Func. Count: 30, Neg. LLF: 120.14298564351473
Iteration: 4, Func. Count: 39, Neg. LLF: 121.02538873936577
Iteration: 5, Func. Count: 50, Neg. LLF: 120.23493151974326
Iteration: 6, Func. Count: 60, Neg. LLF: 120.24567878406019
Iteration: 7, Func. Count: 70, Neg. LLF: 120.2171046994913
Iteration: 8, Func. Count: 80, Neg. LLF: 119.90590879159383
Iteration: 9, Func. Count: 89, Neg. LLF: 119.90087748149743
Iteration: 10, Func. Count: 98, Neg. LLF: 119.89890493220568
Iteration: 11, Func. Count: 107, Neg. LLF: 119.89858135311135
Iteration: 12, Func. Count: 116, Neg. LLF: 119.89857855225644
Iteration: 13, Func. Count: 124, Neg. LLF: 119.8985785521437
Optimization terminated successfully (Exit mode 0)
Current function value: 119.89857855225644
Iterations: 13
Function evaluations: 124
Gradient evaluations: 13
Iteration: 1, Func. Count: 7, Neg. LLF: 122.01163378936802
Iteration: 2, Func. Count: 14, Neg. LLF: 133.08027079147573
Iteration: 3, Func. Count: 21, Neg. LLF: 118.82071378759234
Iteration: 4, Func. Count: 27, Neg. LLF: 118.79957251044222
Iteration: 5, Func. Count: 33, Neg. LLF: 118.78772401632355
Iteration: 6, Func. Count: 39, Neg. LLF: 118.78766356512152
Iteration: 7, Func. Count: 45, Neg. LLF: 118.78761542868342
Iteration: 8, Func. Count: 51, Neg. LLF: 118.78755621543215
Iteration: 9, Func. Count: 57, Neg. LLF: 118.78754227819518
Iteration: 10, Func. Count: 63, Neg. LLF: 118.78754075073734
Iteration: 11, Func. Count: 68, Neg. LLF: 118.78754075073799
Optimization terminated successfully (Exit mode 0)
Current function value: 118.78754075073734
Iterations: 11
Function evaluations: 68
Gradient evaluations: 11
Iteration: 1, Func. Count: 8, Neg. LLF: 18517315.09982428
Iteration: 2, Func. Count: 17, Neg. LLF: 126.16072708254181
Iteration: 3, Func. Count: 25, Neg. LLF: 500.5357783279988
Iteration: 4, Func. Count: 33, Neg. LLF: 273.6470849683147
Iteration: 5, Func. Count: 41, Neg. LLF: 197.99644348953564
Iteration: 6, Func. Count: 49, Neg. LLF: 153.82908628406688
Iteration: 7, Func. Count: 57, Neg. LLF: 120.09488462839413
Iteration: 8, Func. Count: 65, Neg. LLF: 121.78593572372228
Iteration: 9, Func. Count: 73, Neg. LLF: 119.93639224784799
Iteration: 10, Func. Count: 81, Neg. LLF: 119.59680808043858
Iteration: 11, Func. Count: 88, Neg. LLF: 119.59542105862135
Iteration: 12, Func. Count: 95, Neg. LLF: 119.59295131171893
Iteration: 13, Func. Count: 102, Neg. LLF: 119.59293411548244
Iteration: 14, Func. Count: 108, Neg. LLF: 119.59293411578385
Optimization terminated successfully (Exit mode 0)
Current function value: 119.59293411548244
Iterations: 14
Function evaluations: 108
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 18636564.858769525
Iteration: 2, Func. Count: 18, Neg. LLF: 148.90103025458828
Iteration: 3, Func. Count: 27, Neg. LLF: 121.47740724513831
Iteration: 4, Func. Count: 36, Neg. LLF: 117.63822975578108
Iteration: 5, Func. Count: 44, Neg. LLF: 117.07024252840316
Iteration: 6, Func. Count: 52, Neg. LLF: 135.7944320167246
Iteration: 7, Func. Count: 61, Neg. LLF: 116.60115090029656
Iteration: 8, Func. Count: 69, Neg. LLF: 116.58297316650646
Iteration: 9, Func. Count: 77, Neg. LLF: 116.58250677221898
Iteration: 10, Func. Count: 85, Neg. LLF: 116.58248276252853
Iteration: 11, Func. Count: 92, Neg. LLF: 116.582482762007
Optimization terminated successfully (Exit mode 0)
Current function value: 116.58248276252853
Iterations: 11
Function evaluations: 92
Gradient evaluations: 11
Iteration: 1, Func. Count: 10, Neg. LLF: 18008903.30483993
Iteration: 2, Func. Count: 20, Neg. LLF: 133.91345362926668
Iteration: 3, Func. Count: 30, Neg. LLF: 117.24089379207756
Iteration: 4, Func. Count: 39, Neg. LLF: 131.7702967305357
Iteration: 5, Func. Count: 49, Neg. LLF: 118.12429034302882
Iteration: 6, Func. Count: 59, Neg. LLF: 116.92566373349919
Iteration: 7, Func. Count: 68, Neg. LLF: 116.92160878168103
Iteration: 8, Func. Count: 77, Neg. LLF: 116.92151241872074
Iteration: 9, Func. Count: 86, Neg. LLF: 116.92150294006265
Iteration: 10, Func. Count: 95, Neg. LLF: 116.92149868039914
Iteration: 11, Func. Count: 103, Neg. LLF: 116.9214986804296
Optimization terminated successfully (Exit mode 0)
Current function value: 116.92149868039914
Iterations: 11
Function evaluations: 103
Gradient evaluations: 11
Iteration: 1, Func. Count: 11, Neg. LLF: 17737036.755517412
Iteration: 2, Func. Count: 22, Neg. LLF: 124.32952753739661
Iteration: 3, Func. Count: 33, Neg. LLF: 124.6558952660358
Iteration: 4, Func. Count: 44, Neg. LLF: 116.2768608063823
Iteration: 5, Func. Count: 54, Neg. LLF: 125.34602428583007
Iteration: 6, Func. Count: 66, Neg. LLF: 120.03303242516807
Iteration: 7, Func. Count: 77, Neg. LLF: 124.43136931466755
Iteration: 8, Func. Count: 89, Neg. LLF: 117.00779698655674
Iteration: 9, Func. Count: 100, Neg. LLF: 118.1816104796209
Iteration: 10, Func. Count: 111, Neg. LLF: 115.86473493467703
Iteration: 11, Func. Count: 121, Neg. LLF: 115.86231425151198
Iteration: 12, Func. Count: 131, Neg. LLF: 115.86212203348636
Iteration: 13, Func. Count: 141, Neg. LLF: 115.86211006692766
Iteration: 14, Func. Count: 151, Neg. LLF: 115.86210710899412
Iteration: 15, Func. Count: 161, Neg. LLF: 115.86210480140154
Iteration: 16, Func. Count: 170, Neg. LLF: 115.86210480143113
Optimization terminated successfully (Exit mode 0)
Current function value: 115.86210480140154
Iterations: 16
Function evaluations: 170
Gradient evaluations: 16
Iteration: 1, Func. Count: 8, Neg. LLF: 120.27095367480688
Iteration: 2, Func. Count: 15, Neg. LLF: 137.8242094776591
Iteration: 3, Func. Count: 23, Neg. LLF: 119.67828596904042
Iteration: 4, Func. Count: 32, Neg. LLF: 119.42594192954655
Iteration: 5, Func. Count: 40, Neg. LLF: 118.84641206381625
Iteration: 6, Func. Count: 47, Neg. LLF: 118.80714559475672
Iteration: 7, Func. Count: 54, Neg. LLF: 118.72500793771279
Iteration: 8, Func. Count: 61, Neg. LLF: 118.70908272565369
Iteration: 9, Func. Count: 68, Neg. LLF: 118.70749312830387
Iteration: 10, Func. Count: 75, Neg. LLF: 118.70747048483697
Iteration: 11, Func. Count: 81, Neg. LLF: 118.7074703385213
Optimization terminated successfully (Exit mode 0)
Current function value: 118.70747048483697
Iterations: 11
Function evaluations: 81
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 33342114.193179376
Iteration: 2, Func. Count: 19, Neg. LLF: 120.20182543584663
Iteration: 3, Func. Count: 30, Neg. LLF: 260.4717417772022
Iteration: 4, Func. Count: 40, Neg. LLF: 122.75815136979026
Iteration: 5, Func. Count: 49, Neg. LLF: 119.89304364321958
Iteration: 6, Func. Count: 57, Neg. LLF: 119.73248658531301
Iteration: 7, Func. Count: 65, Neg. LLF: 119.65282950451437
Iteration: 8, Func. Count: 73, Neg. LLF: 119.61134414110217
Iteration: 9, Func. Count: 81, Neg. LLF: 119.5968996073929
Iteration: 10, Func. Count: 89, Neg. LLF: 119.5939043854267
Iteration: 11, Func. Count: 97, Neg. LLF: 119.59299271443147
Iteration: 12, Func. Count: 105, Neg. LLF: 119.59293378505868
Iteration: 13, Func. Count: 112, Neg. LLF: 119.5929337851655
Optimization terminated successfully (Exit mode 0)
Current function value: 119.59293378505868
Iterations: 13
Function evaluations: 112
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 4998340.101613622
Iteration: 2, Func. Count: 20, Neg. LLF: 122.24616566522785
Iteration: 3, Func. Count: 30, Neg. LLF: 118.89778631698908
Iteration: 4, Func. Count: 39, Neg. LLF: 117.66407947137702
Iteration: 5, Func. Count: 48, Neg. LLF: 121.49653005073517
Iteration: 6, Func. Count: 58, Neg. LLF: 119.57634391614417
Iteration: 7, Func. Count: 68, Neg. LLF: 117.32672111035997
Iteration: 8, Func. Count: 78, Neg. LLF: 117.11148893376132
Iteration: 9, Func. Count: 87, Neg. LLF: 117.05724667726926
Iteration: 10, Func. Count: 96, Neg. LLF: 117.01970182348553
Iteration: 11, Func. Count: 105, Neg. LLF: 117.50407281122992
Iteration: 12, Func. Count: 116, Neg. LLF: 117.97382305304193
Iteration: 13, Func. Count: 127, Neg. LLF: 116.593393596156
Iteration: 14, Func. Count: 136, Neg. LLF: 116.58488987898568
Iteration: 15, Func. Count: 145, Neg. LLF: 116.58276126192908
Iteration: 16, Func. Count: 154, Neg. LLF: 116.58249303617276
Iteration: 17, Func. Count: 163, Neg. LLF: 116.58248302482784
Iteration: 18, Func. Count: 172, Neg. LLF: 116.58248243690221
Optimization terminated successfully (Exit mode 0)
Current function value: 116.58248243690221
Iterations: 18
Function evaluations: 172
Gradient evaluations: 18
Iteration: 1, Func. Count: 11, Neg. LLF: 18075529.84343763
Iteration: 2, Func. Count: 22, Neg. LLF: 144.37511341245792
Iteration: 3, Func. Count: 33, Neg. LLF: 127.36733972235376
Iteration: 4, Func. Count: 44, Neg. LLF: 118.59513355372017
Iteration: 5, Func. Count: 54, Neg. LLF: 117.59032466837604
Iteration: 6, Func. Count: 64, Neg. LLF: 117.63459045379886
Iteration: 7, Func. Count: 75, Neg. LLF: 116.97232434408409
Iteration: 8, Func. Count: 85, Neg. LLF: 116.92470483385915
Iteration: 9, Func. Count: 95, Neg. LLF: 116.92286032629217
Iteration: 10, Func. Count: 105, Neg. LLF: 116.92156336779071
Iteration: 11, Func. Count: 115, Neg. LLF: 116.92150621656002
Iteration: 12, Func. Count: 125, Neg. LLF: 116.92149891096867
Iteration: 13, Func. Count: 134, Neg. LLF: 116.92149891076542
Optimization terminated successfully (Exit mode 0)
Current function value: 116.92149891096867
Iterations: 13
Function evaluations: 134
Gradient evaluations: 13
Iteration: 1, Func. Count: 12, Neg. LLF: 4958128.187674765
Iteration: 2, Func. Count: 24, Neg. LLF: 118.53165083011713
Iteration: 3, Func. Count: 35, Neg. LLF: 120.55895906179153
Iteration: 4, Func. Count: 49, Neg. LLF: 404.1923181511584
Iteration: 5, Func. Count: 61, Neg. LLF: 129.26295222288033
Iteration: 6, Func. Count: 73, Neg. LLF: 167.65751587864023
Iteration: 7, Func. Count: 85, Neg. LLF: 117.11261056132685
Iteration: 8, Func. Count: 97, Neg. LLF: 135.9276218179092
Iteration: 9, Func. Count: 109, Neg. LLF: 116.08405822391428
Iteration: 10, Func. Count: 121, Neg. LLF: 115.8902497274904
Iteration: 11, Func. Count: 133, Neg. LLF: 115.87699820767635
Iteration: 12, Func. Count: 145, Neg. LLF: 115.85940329136655
Iteration: 13, Func. Count: 156, Neg. LLF: 115.85921165189794
Iteration: 14, Func. Count: 167, Neg. LLF: 115.85915248552205
Iteration: 15, Func. Count: 178, Neg. LLF: 115.8591421975423
Iteration: 16, Func. Count: 189, Neg. LLF: 115.85914141001777
Optimization terminated successfully (Exit mode 0)
Current function value: 115.85914141001777
Iterations: 16
Function evaluations: 189
Gradient evaluations: 16
Iteration: 1, Func. Count: 9, Neg. LLF: 121.22773034300572
Iteration: 2, Func. Count: 18, Neg. LLF: 135.29771620225125
Iteration: 3, Func. Count: 27, Neg. LLF: 118.98181153534664
Iteration: 4, Func. Count: 35, Neg. LLF: 1743758.9196962335
Iteration: 5, Func. Count: 44, Neg. LLF: 118.6863499225596
Iteration: 6, Func. Count: 52, Neg. LLF: 118.5233413516543
Iteration: 7, Func. Count: 60, Neg. LLF: 118.49065157990249
Iteration: 8, Func. Count: 68, Neg. LLF: 118.4781404083734
Iteration: 9, Func. Count: 76, Neg. LLF: 118.4586396869257
Iteration: 10, Func. Count: 84, Neg. LLF: 118.45778396290017
Iteration: 11, Func. Count: 92, Neg. LLF: 118.45683446080238
Iteration: 12, Func. Count: 100, Neg. LLF: 118.45610178001998
Iteration: 13, Func. Count: 108, Neg. LLF: 118.45592882492133
Iteration: 14, Func. Count: 116, Neg. LLF: 118.45591126769912
Iteration: 15, Func. Count: 124, Neg. LLF: 118.4559104561767
Optimization terminated successfully (Exit mode 0)
Current function value: 118.4559104561767
Iterations: 15
Function evaluations: 124
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 21320617.33732689
Iteration: 2, Func. Count: 21, Neg. LLF: 158.18390653375567
Iteration: 3, Func. Count: 32, Neg. LLF: 166.46487630976733
Iteration: 4, Func. Count: 42, Neg. LLF: 124.63562671586129
Iteration: 5, Func. Count: 52, Neg. LLF: 119.7976350477783
Iteration: 6, Func. Count: 61, Neg. LLF: 119.63064795318303
Iteration: 7, Func. Count: 70, Neg. LLF: 119.59376163572175
Iteration: 8, Func. Count: 79, Neg. LLF: 119.59366356921487
Iteration: 9, Func. Count: 89, Neg. LLF: 119.59293570676776
Iteration: 10, Func. Count: 98, Neg. LLF: 119.59293385427293
Iteration: 11, Func. Count: 106, Neg. LLF: 119.5929338547036
Optimization terminated successfully (Exit mode 0)
Current function value: 119.59293385427293
Iterations: 11
Function evaluations: 106
Gradient evaluations: 11
Iteration: 1, Func. Count: 11, Neg. LLF: 4985575.669976079
Iteration: 2, Func. Count: 22, Neg. LLF: 140.10217030416945
Iteration: 3, Func. Count: 33, Neg. LLF: 121.06996945654328
Iteration: 4, Func. Count: 44, Neg. LLF: 117.49295961542437
Iteration: 5, Func. Count: 54, Neg. LLF: 116.80464293290103
Iteration: 6, Func. Count: 64, Neg. LLF: 116.980354950906
Iteration: 7, Func. Count: 75, Neg. LLF: 116.6668722706934
Iteration: 8, Func. Count: 85, Neg. LLF: 116.6158730572406
Iteration: 9, Func. Count: 95, Neg. LLF: 116.58329881333991
Iteration: 10, Func. Count: 105, Neg. LLF: 116.5824964790836
Iteration: 11, Func. Count: 115, Neg. LLF: 116.5824821984289
Iteration: 12, Func. Count: 124, Neg. LLF: 116.58248219822276
Optimization terminated successfully (Exit mode 0)
Current function value: 116.5824821984289
Iterations: 12
Function evaluations: 124
Gradient evaluations: 12
Iteration: 1, Func. Count: 12, Neg. LLF: 405.1667682443213
Iteration: 2, Func. Count: 24, Neg. LLF: 122.06339332436649
Iteration: 3, Func. Count: 36, Neg. LLF: 118.67336272333422
Iteration: 4, Func. Count: 47, Neg. LLF: 143.80723328369658
Iteration: 5, Func. Count: 59, Neg. LLF: 117.4300022628379
Iteration: 6, Func. Count: 70, Neg. LLF: 136.54029032994052
Iteration: 7, Func. Count: 82, Neg. LLF: 117.52289480552912
Iteration: 8, Func. Count: 94, Neg. LLF: 117.18978804245262
Iteration: 9, Func. Count: 106, Neg. LLF: 116.94630846068814
Iteration: 10, Func. Count: 117, Neg. LLF: 116.92421169713363
Iteration: 11, Func. Count: 128, Neg. LLF: 116.92151977280761
Iteration: 12, Func. Count: 139, Neg. LLF: 116.92149897453095
Iteration: 13, Func. Count: 150, Neg. LLF: 116.9214984577455
Optimization terminated successfully (Exit mode 0)
Current function value: 116.9214984577455
Iterations: 13
Function evaluations: 150
Gradient evaluations: 13
Iteration: 1, Func. Count: 13, Neg. LLF: 4989366.7740610065
Iteration: 2, Func. Count: 26, Neg. LLF: 118.03474904171539
Iteration: 3, Func. Count: 38, Neg. LLF: 116.24705498356047
Iteration: 4, Func. Count: 50, Neg. LLF: 339.89752369302994
Iteration: 5, Func. Count: 64, Neg. LLF: 145.53096593927177
Iteration: 6, Func. Count: 77, Neg. LLF: 117.40851848869849
Iteration: 7, Func. Count: 90, Neg. LLF: 135.82006750277026
Iteration: 8, Func. Count: 103, Neg. LLF: 115.93920399044943
Iteration: 9, Func. Count: 116, Neg. LLF: 115.81802594251279
Iteration: 10, Func. Count: 128, Neg. LLF: 115.79576130794138
Iteration: 11, Func. Count: 140, Neg. LLF: 115.79293364047776
Iteration: 12, Func. Count: 152, Neg. LLF: 115.79238825058029
Iteration: 13, Func. Count: 164, Neg. LLF: 115.79232376995756
Iteration: 14, Func. Count: 176, Neg. LLF: 115.79232274519923
Iteration: 15, Func. Count: 187, Neg. LLF: 115.79232274518465
Optimization terminated successfully (Exit mode 0)
Current function value: 115.79232274519923
Iterations: 15
Function evaluations: 187
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 123.73472121190532
Iteration: 2, Func. Count: 20, Neg. LLF: 149.82130194856907
Iteration: 3, Func. Count: 30, Neg. LLF: 118.91384587969202
Iteration: 4, Func. Count: 39, Neg. LLF: 3772807.359631206
Iteration: 5, Func. Count: 50, Neg. LLF: 118.67215559981139
Iteration: 6, Func. Count: 59, Neg. LLF: 118.540179389516
Iteration: 7, Func. Count: 68, Neg. LLF: 118.50543461846895
Iteration: 8, Func. Count: 77, Neg. LLF: 118.4882668466177
Iteration: 9, Func. Count: 86, Neg. LLF: 118.46309332333844
Iteration: 10, Func. Count: 95, Neg. LLF: 118.46033024039784
Iteration: 11, Func. Count: 104, Neg. LLF: 118.45806573790423
Iteration: 12, Func. Count: 113, Neg. LLF: 118.45651551909648
Iteration: 13, Func. Count: 122, Neg. LLF: 118.45600596020297
Iteration: 14, Func. Count: 131, Neg. LLF: 118.4559176776491
Iteration: 15, Func. Count: 140, Neg. LLF: 118.45591059010046
Iteration: 16, Func. Count: 148, Neg. LLF: 118.45591063758435
Optimization terminated successfully (Exit mode 0)
Current function value: 118.45591059010046
Iterations: 16
Function evaluations: 148
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 4881195.493570408
Iteration: 2, Func. Count: 22, Neg. LLF: 125.4616599049917
Iteration: 3, Func. Count: 33, Neg. LLF: 176.6714090537439
Iteration: 4, Func. Count: 44, Neg. LLF: 120.02210849858433
Iteration: 5, Func. Count: 54, Neg. LLF: 120.85776487880756
Iteration: 6, Func. Count: 65, Neg. LLF: 120.36653303889771
Iteration: 7, Func. Count: 76, Neg. LLF: 142.35914249141447
Iteration: 8, Func. Count: 87, Neg. LLF: 122.76096570729254
Iteration: 9, Func. Count: 98, Neg. LLF: 119.92489981671301
Iteration: 10, Func. Count: 109, Neg. LLF: 119.6053510078745
Iteration: 11, Func. Count: 120, Neg. LLF: 119.59305736291607
Iteration: 12, Func. Count: 130, Neg. LLF: 119.59297424025854
Iteration: 13, Func. Count: 140, Neg. LLF: 119.59293470685253
Iteration: 14, Func. Count: 150, Neg. LLF: 119.59293393961853
Optimization terminated successfully (Exit mode 0)
Current function value: 119.59293393961853
Iterations: 14
Function evaluations: 150
Gradient evaluations: 14
Iteration: 1, Func. Count: 12, Neg. LLF: 4963855.5635702675
Iteration: 2, Func. Count: 24, Neg. LLF: 143.10222639197303
Iteration: 3, Func. Count: 36, Neg. LLF: 119.36720600876785
Iteration: 4, Func. Count: 47, Neg. LLF: 117.88989643876894
Iteration: 5, Func. Count: 58, Neg. LLF: 120.59857377070432
Iteration: 6, Func. Count: 70, Neg. LLF: 117.1457346569592
Iteration: 7, Func. Count: 81, Neg. LLF: 116.95622218213666
Iteration: 8, Func. Count: 92, Neg. LLF: 116.64054744460368
Iteration: 9, Func. Count: 103, Neg. LLF: 116.68838010041107
Iteration: 10, Func. Count: 115, Neg. LLF: 116.603740226864
Iteration: 11, Func. Count: 126, Neg. LLF: 116.59304471344399
Iteration: 12, Func. Count: 137, Neg. LLF: 116.58332340057035
Iteration: 13, Func. Count: 148, Neg. LLF: 116.5825298120124
Iteration: 14, Func. Count: 159, Neg. LLF: 116.58249274121985
Iteration: 15, Func. Count: 170, Neg. LLF: 116.5824818817286
Iteration: 16, Func. Count: 181, Neg. LLF: 116.68951137518125
Optimization terminated successfully (Exit mode 0)
Current function value: 116.58248186025426
Iterations: 17
Function evaluations: 185
Gradient evaluations: 16
Iteration: 1, Func. Count: 13, Neg. LLF: 356.56334987024155
Iteration: 2, Func. Count: 26, Neg. LLF: 122.26856123323981
Iteration: 3, Func. Count: 39, Neg. LLF: 118.71361367900963
Iteration: 4, Func. Count: 51, Neg. LLF: 134.68461007413381
Iteration: 5, Func. Count: 65, Neg. LLF: 117.64740635326977
Iteration: 6, Func. Count: 77, Neg. LLF: 149.5181870613163
Iteration: 7, Func. Count: 90, Neg. LLF: 125.77967483306637
Iteration: 8, Func. Count: 103, Neg. LLF: 117.1227106006096
Iteration: 9, Func. Count: 115, Neg. LLF: 117.05528535464406
Iteration: 10, Func. Count: 127, Neg. LLF: 116.96265790689765
Iteration: 11, Func. Count: 139, Neg. LLF: 116.92798758683278
Iteration: 12, Func. Count: 151, Neg. LLF: 116.92377938089649
Iteration: 13, Func. Count: 163, Neg. LLF: 116.92170956108806
Iteration: 14, Func. Count: 175, Neg. LLF: 116.92150377958545
Iteration: 15, Func. Count: 187, Neg. LLF: 116.92149862352643
Iteration: 16, Func. Count: 198, Neg. LLF: 116.92149862365856
Optimization terminated successfully (Exit mode 0)
Current function value: 116.92149862352643
Iterations: 16
Function evaluations: 198
Gradient evaluations: 16
Iteration: 1, Func. Count: 14, Neg. LLF: 4921885.353743693
Iteration: 2, Func. Count: 28, Neg. LLF: 145.5569960383428
Iteration: 3, Func. Count: 42, Neg. LLF: 116.60005612525298
Iteration: 4, Func. Count: 55, Neg. LLF: 119.31654064332156
Iteration: 5, Func. Count: 71, Neg. LLF: 132.04155823115087
Iteration: 6, Func. Count: 85, Neg. LLF: 123.40613632765739
Iteration: 7, Func. Count: 99, Neg. LLF: 120.13584664184054
Iteration: 8, Func. Count: 113, Neg. LLF: 116.83938847097123
Iteration: 9, Func. Count: 127, Neg. LLF: 115.81971142442075
Iteration: 10, Func. Count: 141, Neg. LLF: 115.79968350064087
Iteration: 11, Func. Count: 155, Neg. LLF: 115.7926417655054
Iteration: 12, Func. Count: 168, Neg. LLF: 115.79233094711772
Iteration: 13, Func. Count: 181, Neg. LLF: 115.79232373859712
Iteration: 14, Func. Count: 194, Neg. LLF: 115.79232291673216
Optimization terminated successfully (Exit mode 0)
Current function value: 115.79232291673216
Iterations: 14
Function evaluations: 194
Gradient evaluations: 14
Iteration: 1, Func. Count: 7, Neg. LLF: 123.72058689399837
Iteration: 2, Func. Count: 14, Neg. LLF: 122.78844493982723
Iteration: 3, Func. Count: 21, Neg. LLF: 123.39802235773105
Iteration: 4, Func. Count: 28, Neg. LLF: 185.62985086397708
Iteration: 5, Func. Count: 35, Neg. LLF: 121.83607450777222
Iteration: 6, Func. Count: 41, Neg. LLF: 121.82834623637432
Iteration: 7, Func. Count: 47, Neg. LLF: 121.82466958077892
Iteration: 8, Func. Count: 53, Neg. LLF: 121.82392536813975
Iteration: 9, Func. Count: 59, Neg. LLF: 121.82392126413552
Iteration: 10, Func. Count: 64, Neg. LLF: 121.82392126409185
Optimization terminated successfully (Exit mode 0)
Current function value: 121.82392126413552
Iterations: 10
Function evaluations: 64
Gradient evaluations: 10
Iteration: 1, Func. Count: 8, Neg. LLF: 440.8024707567009
Iteration: 2, Func. Count: 16, Neg. LLF: 127.69992193222664
Iteration: 3, Func. Count: 24, Neg. LLF: 146.62752340651818
Iteration: 4, Func. Count: 32, Neg. LLF: 124.86952718434378
Iteration: 5, Func. Count: 40, Neg. LLF: 122.50796437171898
Iteration: 6, Func. Count: 48, Neg. LLF: 121.97977141183313
Iteration: 7, Func. Count: 55, Neg. LLF: 121.84660540813671
Iteration: 8, Func. Count: 62, Neg. LLF: 121.84131243413835
Iteration: 9, Func. Count: 69, Neg. LLF: 121.83153243175637
Iteration: 10, Func. Count: 76, Neg. LLF: 121.82941684115767
Iteration: 11, Func. Count: 83, Neg. LLF: 121.82462572954901
Iteration: 12, Func. Count: 90, Neg. LLF: 121.82402227862538
Iteration: 13, Func. Count: 97, Neg. LLF: 121.82395625928285
Iteration: 14, Func. Count: 104, Neg. LLF: 121.82394776179095
Iteration: 15, Func. Count: 111, Neg. LLF: 121.82393470253635
Iteration: 16, Func. Count: 118, Neg. LLF: 121.8239252210975
Iteration: 17, Func. Count: 125, Neg. LLF: 121.82392159983374
Iteration: 18, Func. Count: 131, Neg. LLF: 121.82392161560365
Optimization terminated successfully (Exit mode 0)
Current function value: 121.82392159983374
Iterations: 18
Function evaluations: 131
Gradient evaluations: 18
Iteration: 1, Func. Count: 9, Neg. LLF: 21125585.678898044
Iteration: 2, Func. Count: 19, Neg. LLF: 136.21112063804975
Iteration: 3, Func. Count: 29, Neg. LLF: 121.36744012079308
Iteration: 4, Func. Count: 37, Neg. LLF: 129.74279654730276
Iteration: 5, Func. Count: 46, Neg. LLF: 123.46903764327277
Iteration: 6, Func. Count: 55, Neg. LLF: 120.84924371965168
Iteration: 7, Func. Count: 64, Neg. LLF: 120.63393963157469
Iteration: 8, Func. Count: 73, Neg. LLF: 120.40330868446071
Iteration: 9, Func. Count: 82, Neg. LLF: 120.31731751334047
Iteration: 10, Func. Count: 91, Neg. LLF: 120.30891380341455
Iteration: 11, Func. Count: 99, Neg. LLF: 120.30886063608462
Iteration: 12, Func. Count: 107, Neg. LLF: 120.30885943068272
Iteration: 13, Func. Count: 114, Neg. LLF: 120.3088594306057
Optimization terminated successfully (Exit mode 0)
Current function value: 120.30885943068272
Iterations: 13
Function evaluations: 114
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 19638229.408342212
Iteration: 2, Func. Count: 20, Neg. LLF: 129.0512066919011
Iteration: 3, Func. Count: 32, Neg. LLF: 155.04683566053964
Iteration: 4, Func. Count: 42, Neg. LLF: 121.0608092926952
Iteration: 5, Func. Count: 51, Neg. LLF: 120.37967857690714
Iteration: 6, Func. Count: 60, Neg. LLF: 123.8270787278356
Iteration: 7, Func. Count: 70, Neg. LLF: 120.08608210510013
Iteration: 8, Func. Count: 79, Neg. LLF: 120.09278996284685
Iteration: 9, Func. Count: 89, Neg. LLF: 120.06326054183012
Iteration: 10, Func. Count: 99, Neg. LLF: 120.04505744171912
Iteration: 11, Func. Count: 109, Neg. LLF: 120.04362827959382
Iteration: 12, Func. Count: 118, Neg. LLF: 120.04362406120566
Iteration: 13, Func. Count: 126, Neg. LLF: 120.04362406118366
Optimization terminated successfully (Exit mode 0)
Current function value: 120.04362406120566
Iterations: 13
Function evaluations: 126
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 18862332.397496708
Iteration: 2, Func. Count: 22, Neg. LLF: 128.35633409017152
Iteration: 3, Func. Count: 34, Neg. LLF: 131.64565402594044
Iteration: 4, Func. Count: 45, Neg. LLF: 120.06018689670753
Iteration: 5, Func. Count: 55, Neg. LLF: 120.35774179463512
Iteration: 6, Func. Count: 66, Neg. LLF: 120.2516948168498
Iteration: 7, Func. Count: 77, Neg. LLF: 120.0782697208003
Iteration: 8, Func. Count: 88, Neg. LLF: 119.91007388600154
Iteration: 9, Func. Count: 98, Neg. LLF: 119.90086507048873
Iteration: 10, Func. Count: 108, Neg. LLF: 119.89901939092073
Iteration: 11, Func. Count: 118, Neg. LLF: 119.89861726434361
Iteration: 12, Func. Count: 128, Neg. LLF: 119.89858008224961
Iteration: 13, Func. Count: 138, Neg. LLF: 119.8985781830606
Iteration: 14, Func. Count: 147, Neg. LLF: 119.89857818303722
Optimization terminated successfully (Exit mode 0)
Current function value: 119.8985781830606
Iterations: 14
Function evaluations: 147
Gradient evaluations: 14
Iteration: 1, Func. Count: 8, Neg. LLF: 123.9271469599744
Iteration: 2, Func. Count: 16, Neg. LLF: 143.42108742368063
Iteration: 3, Func. Count: 24, Neg. LLF: 118.85981397538923
Iteration: 4, Func. Count: 31, Neg. LLF: 3152.1269976213366
Iteration: 5, Func. Count: 39, Neg. LLF: 118.62427321772518
Iteration: 6, Func. Count: 46, Neg. LLF: 118.52953783700437
Iteration: 7, Func. Count: 53, Neg. LLF: 118.51243413274689
Iteration: 8, Func. Count: 60, Neg. LLF: 118.507293247173
Iteration: 9, Func. Count: 67, Neg. LLF: 118.4998298784086
Iteration: 10, Func. Count: 74, Neg. LLF: 118.49853721886565
Iteration: 11, Func. Count: 81, Neg. LLF: 118.49758386447114
Iteration: 12, Func. Count: 88, Neg. LLF: 118.49738473337764
Iteration: 13, Func. Count: 95, Neg. LLF: 118.49735301473665
Iteration: 14, Func. Count: 102, Neg. LLF: 118.49735083102222
Iteration: 15, Func. Count: 108, Neg. LLF: 118.49735083102543
Optimization terminated successfully (Exit mode 0)
Current function value: 118.49735083102222
Iterations: 15
Function evaluations: 108
Gradient evaluations: 15
Iteration: 1, Func. Count: 9, Neg. LLF: 18525155.278951384
Iteration: 2, Func. Count: 19, Neg. LLF: 126.4079411384134
Iteration: 3, Func. Count: 28, Neg. LLF: 513.0515205843061
Iteration: 4, Func. Count: 37, Neg. LLF: 289.4197046253063
Iteration: 5, Func. Count: 46, Neg. LLF: 209.31407395818457
Iteration: 6, Func. Count: 55, Neg. LLF: 140.36511518382193
Iteration: 7, Func. Count: 64, Neg. LLF: 120.56393458126352
Iteration: 8, Func. Count: 73, Neg. LLF: 121.94490605077401
Iteration: 9, Func. Count: 82, Neg. LLF: 119.64480949383744
Iteration: 10, Func. Count: 90, Neg. LLF: 119.59521734485512
Iteration: 11, Func. Count: 98, Neg. LLF: 119.5942988956133
Iteration: 12, Func. Count: 106, Neg. LLF: 119.59302811778096
Iteration: 13, Func. Count: 114, Neg. LLF: 119.5930156808964
Iteration: 14, Func. Count: 123, Neg. LLF: 119.59293366558043
Iteration: 15, Func. Count: 130, Neg. LLF: 119.59293366561522
Optimization terminated successfully (Exit mode 0)
Current function value: 119.59293366558043
Iterations: 15
Function evaluations: 130
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 18688372.1242054
Iteration: 2, Func. Count: 20, Neg. LLF: 151.42117941726417
Iteration: 3, Func. Count: 30, Neg. LLF: 119.8615719556378
Iteration: 4, Func. Count: 40, Neg. LLF: 117.92767844353568
Iteration: 5, Func. Count: 49, Neg. LLF: 117.03446395338659
Iteration: 6, Func. Count: 58, Neg. LLF: 117.32340280408164
Iteration: 7, Func. Count: 69, Neg. LLF: 117.21833631345686
Iteration: 8, Func. Count: 79, Neg. LLF: 116.59912247897944
Iteration: 9, Func. Count: 88, Neg. LLF: 116.5883678483296
Iteration: 10, Func. Count: 97, Neg. LLF: 116.58481878858862
Iteration: 11, Func. Count: 106, Neg. LLF: 116.58283905041793
Iteration: 12, Func. Count: 115, Neg. LLF: 116.5825026365671
Iteration: 13, Func. Count: 124, Neg. LLF: 116.58248299197223
Iteration: 14, Func. Count: 133, Neg. LLF: 116.58248249318058
Optimization terminated successfully (Exit mode 0)
Current function value: 116.58248249318058
Iterations: 14
Function evaluations: 133
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 18090753.4184253
Iteration: 2, Func. Count: 22, Neg. LLF: 136.60100427458153
Iteration: 3, Func. Count: 33, Neg. LLF: 117.7121521748634
Iteration: 4, Func. Count: 43, Neg. LLF: 142.39386702044973
Iteration: 5, Func. Count: 54, Neg. LLF: 117.10506949964767
Iteration: 6, Func. Count: 64, Neg. LLF: 116.97380491174003
Iteration: 7, Func. Count: 74, Neg. LLF: 116.93972621293686
Iteration: 8, Func. Count: 84, Neg. LLF: 116.92185896699512
Iteration: 9, Func. Count: 94, Neg. LLF: 116.92152311550885
Iteration: 10, Func. Count: 104, Neg. LLF: 116.92149874402489
Iteration: 11, Func. Count: 113, Neg. LLF: 116.921498744018
Optimization terminated successfully (Exit mode 0)
Current function value: 116.92149874402489
Iterations: 11
Function evaluations: 113
Gradient evaluations: 11
Iteration: 1, Func. Count: 12, Neg. LLF: 17660837.79554208
Iteration: 2, Func. Count: 24, Neg. LLF: 129.15980143578813
Iteration: 3, Func. Count: 36, Neg. LLF: 118.6932664162459
Iteration: 4, Func. Count: 47, Neg. LLF: 120.20011443054989
Iteration: 5, Func. Count: 59, Neg. LLF: 227.3171212137623
Iteration: 6, Func. Count: 71, Neg. LLF: 131.0881727319282
Iteration: 7, Func. Count: 83, Neg. LLF: 196.32243445479858
Iteration: 8, Func. Count: 95, Neg. LLF: 118.01587740876076
Iteration: 9, Func. Count: 107, Neg. LLF: 117.21541925448341
Iteration: 10, Func. Count: 119, Neg. LLF: 115.9254871226558
Iteration: 11, Func. Count: 131, Neg. LLF: 115.89277872126142
Iteration: 12, Func. Count: 143, Neg. LLF: 116.39724861666905
Iteration: 13, Func. Count: 155, Neg. LLF: 115.86354668763546
Iteration: 14, Func. Count: 166, Neg. LLF: 115.86867579709813
Iteration: 15, Func. Count: 178, Neg. LLF: 115.86217335901517
Iteration: 16, Func. Count: 189, Neg. LLF: 115.86212477270593
Iteration: 17, Func. Count: 200, Neg. LLF: 115.86211460190755
Iteration: 18, Func. Count: 211, Neg. LLF: 115.86210494469013
Iteration: 19, Func. Count: 221, Neg. LLF: 115.86210494458695
Optimization terminated successfully (Exit mode 0)
Current function value: 115.86210494469013
Iterations: 19
Function evaluations: 221
Gradient evaluations: 19
Iteration: 1, Func. Count: 9, Neg. LLF: 121.6148794988353
Iteration: 2, Func. Count: 18, Neg. LLF: 144.07978426415102
Iteration: 3, Func. Count: 27, Neg. LLF: 118.84643405320877
Iteration: 4, Func. Count: 35, Neg. LLF: 381.09280042318505
Iteration: 5, Func. Count: 44, Neg. LLF: 118.57159477489047
Iteration: 6, Func. Count: 52, Neg. LLF: 118.5409078120295
Iteration: 7, Func. Count: 60, Neg. LLF: 118.50470870480648
Iteration: 8, Func. Count: 68, Neg. LLF: 118.50034114889237
Iteration: 9, Func. Count: 76, Neg. LLF: 118.4991548254909
Iteration: 10, Func. Count: 84, Neg. LLF: 118.49844738684314
Iteration: 11, Func. Count: 92, Neg. LLF: 118.49764456832355
Iteration: 12, Func. Count: 100, Neg. LLF: 118.49739182027862
Iteration: 13, Func. Count: 108, Neg. LLF: 118.49735337108237
Iteration: 14, Func. Count: 116, Neg. LLF: 118.49735083766024
Iteration: 15, Func. Count: 123, Neg. LLF: 118.49735098274576
Optimization terminated successfully (Exit mode 0)
Current function value: 118.49735083766024
Iterations: 15
Function evaluations: 123
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 33362655.456644103
Iteration: 2, Func. Count: 21, Neg. LLF: 120.34146876523171
Iteration: 3, Func. Count: 33, Neg. LLF: 237.0266724641821
Iteration: 4, Func. Count: 44, Neg. LLF: 122.98090344188728
Iteration: 5, Func. Count: 54, Neg. LLF: 119.74570433968927
Iteration: 6, Func. Count: 63, Neg. LLF: 119.6402486918109
Iteration: 7, Func. Count: 72, Neg. LLF: 119.60982363565249
Iteration: 8, Func. Count: 81, Neg. LLF: 119.60625553630244
Iteration: 9, Func. Count: 90, Neg. LLF: 119.593131198072
Iteration: 10, Func. Count: 99, Neg. LLF: 119.59294985514084
Iteration: 11, Func. Count: 108, Neg. LLF: 119.59293369304866
Iteration: 12, Func. Count: 116, Neg. LLF: 119.59293369303877
Optimization terminated successfully (Exit mode 0)
Current function value: 119.59293369304866
Iterations: 12
Function evaluations: 116
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 4991869.24211592
Iteration: 2, Func. Count: 22, Neg. LLF: 121.45002113739355
Iteration: 3, Func. Count: 33, Neg. LLF: 117.28832769428585
Iteration: 4, Func. Count: 43, Neg. LLF: 7219.878020743759
Iteration: 5, Func. Count: 54, Neg. LLF: 118.13514430600921
Iteration: 6, Func. Count: 65, Neg. LLF: 117.07583277810897
Iteration: 7, Func. Count: 75, Neg. LLF: 117.03603509828909
Iteration: 8, Func. Count: 85, Neg. LLF: 117.1553973716093
Iteration: 9, Func. Count: 96, Neg. LLF: 118.25116503871031
Iteration: 10, Func. Count: 107, Neg. LLF: 117.17759804827713
Iteration: 11, Func. Count: 118, Neg. LLF: 123.66494386733478
Iteration: 12, Func. Count: 130, Neg. LLF: 116.86111977753019
Iteration: 13, Func. Count: 140, Neg. LLF: 116.75692573920907
Iteration: 14, Func. Count: 150, Neg. LLF: 116.6600924392341
Iteration: 15, Func. Count: 160, Neg. LLF: 116.60310277839825
Iteration: 16, Func. Count: 170, Neg. LLF: 116.58293225629475
Iteration: 17, Func. Count: 180, Neg. LLF: 116.58248606748407
Iteration: 18, Func. Count: 190, Neg. LLF: 149.12744045254215
Iteration: 19, Func. Count: 204, Neg. LLF: 116.58271998053173
Optimization terminated successfully (Exit mode 0)
Current function value: 116.58248253510959
Iterations: 20
Function evaluations: 206
Gradient evaluations: 19
Iteration: 1, Func. Count: 12, Neg. LLF: 18126359.45350211
Iteration: 2, Func. Count: 24, Neg. LLF: 155.069633796953
Iteration: 3, Func. Count: 36, Neg. LLF: 128.25767422176656
Iteration: 4, Func. Count: 48, Neg. LLF: 119.04644068250664
Iteration: 5, Func. Count: 59, Neg. LLF: 117.55147761716955
Iteration: 6, Func. Count: 70, Neg. LLF: 120.20011144091065
Iteration: 7, Func. Count: 82, Neg. LLF: 116.95766002761121
Iteration: 8, Func. Count: 93, Neg. LLF: 116.92656295155672
Iteration: 9, Func. Count: 104, Neg. LLF: 116.9237091943501
Iteration: 10, Func. Count: 115, Neg. LLF: 116.92193855824478
Iteration: 11, Func. Count: 126, Neg. LLF: 116.9216220152323
Iteration: 12, Func. Count: 137, Neg. LLF: 116.92151001416006
Iteration: 13, Func. Count: 148, Neg. LLF: 116.92149847556352
Iteration: 14, Func. Count: 158, Neg. LLF: 116.92149847556145
Optimization terminated successfully (Exit mode 0)
Current function value: 116.92149847556352
Iterations: 14
Function evaluations: 158
Gradient evaluations: 14
Iteration: 1, Func. Count: 13, Neg. LLF: 5042832.530937806
Iteration: 2, Func. Count: 26, Neg. LLF: 144.06205873984692
Iteration: 3, Func. Count: 39, Neg. LLF: 116.18828334042436
Iteration: 4, Func. Count: 51, Neg. LLF: 119.26171576483539
Iteration: 5, Func. Count: 65, Neg. LLF: 123.97691135666962
Iteration: 6, Func. Count: 78, Neg. LLF: 122.20357483901125
Iteration: 7, Func. Count: 91, Neg. LLF: 117.744222361243
Iteration: 8, Func. Count: 105, Neg. LLF: 116.078583908638
Iteration: 9, Func. Count: 118, Neg. LLF: 115.8613584424952
Iteration: 10, Func. Count: 130, Neg. LLF: 115.85943628479589
Iteration: 11, Func. Count: 142, Neg. LLF: 115.85917388629915
Iteration: 12, Func. Count: 154, Neg. LLF: 115.85914373689184
Iteration: 13, Func. Count: 166, Neg. LLF: 115.85914159855038
Iteration: 14, Func. Count: 177, Neg. LLF: 115.85914159851669
Optimization terminated successfully (Exit mode 0)
Current function value: 115.85914159855038
Iterations: 14
Function evaluations: 177
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 122.55972354897072
Iteration: 2, Func. Count: 20, Neg. LLF: 156.68311151262378
Iteration: 3, Func. Count: 30, Neg. LLF: 118.87095566173105
Iteration: 4, Func. Count: 39, Neg. LLF: 3831185.460439
Iteration: 5, Func. Count: 49, Neg. LLF: 119.08054777872584
Iteration: 6, Func. Count: 59, Neg. LLF: 118.50333701894272
Iteration: 7, Func. Count: 68, Neg. LLF: 118.8954196666292
Iteration: 8, Func. Count: 78, Neg. LLF: 118.4708225353932
Iteration: 9, Func. Count: 87, Neg. LLF: 118.45068197734612
Iteration: 10, Func. Count: 96, Neg. LLF: 118.44613118483133
Iteration: 11, Func. Count: 105, Neg. LLF: 118.44512716642265
Iteration: 12, Func. Count: 114, Neg. LLF: 118.44499367777229
Iteration: 13, Func. Count: 123, Neg. LLF: 118.44478881579359
Iteration: 14, Func. Count: 132, Neg. LLF: 118.44467985989708
Iteration: 15, Func. Count: 141, Neg. LLF: 118.44464853102926
Iteration: 16, Func. Count: 150, Neg. LLF: 118.44464625751709
Iteration: 17, Func. Count: 158, Neg. LLF: 118.44464625752835
Optimization terminated successfully (Exit mode 0)
Current function value: 118.44464625751709
Iterations: 17
Function evaluations: 158
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 21393384.666656427
Iteration: 2, Func. Count: 23, Neg. LLF: 154.657938655789
Iteration: 3, Func. Count: 35, Neg. LLF: 162.90910786030602
Iteration: 4, Func. Count: 46, Neg. LLF: 120.30391438765602
Iteration: 5, Func. Count: 56, Neg. LLF: 119.7468509093594
Iteration: 6, Func. Count: 66, Neg. LLF: 119.70177321980029
Iteration: 7, Func. Count: 76, Neg. LLF: 119.62076598429077
Iteration: 8, Func. Count: 86, Neg. LLF: 119.5938412197203
Iteration: 9, Func. Count: 96, Neg. LLF: 119.59319407752282
Iteration: 10, Func. Count: 106, Neg. LLF: 119.59293474871285
Iteration: 11, Func. Count: 116, Neg. LLF: 119.59293371317763
Iteration: 12, Func. Count: 125, Neg. LLF: 119.59293371311229
Optimization terminated successfully (Exit mode 0)
Current function value: 119.59293371317763
Iterations: 12
Function evaluations: 125
Gradient evaluations: 12
Iteration: 1, Func. Count: 12, Neg. LLF: 4977890.161106798
Iteration: 2, Func. Count: 24, Neg. LLF: 146.71547492920598
Iteration: 3, Func. Count: 36, Neg. LLF: 119.89909191240675
Iteration: 4, Func. Count: 47, Neg. LLF: 117.5313796625981
Iteration: 5, Func. Count: 58, Neg. LLF: 128.47882816168317
Iteration: 6, Func. Count: 70, Neg. LLF: 130.09449064865214
Iteration: 7, Func. Count: 83, Neg. LLF: 117.11665318889375
Iteration: 8, Func. Count: 94, Neg. LLF: 116.99899178390054
Iteration: 9, Func. Count: 105, Neg. LLF: 116.71472006685309
Iteration: 10, Func. Count: 116, Neg. LLF: 116.70284849743966
Iteration: 11, Func. Count: 128, Neg. LLF: 116.58438903147294
Iteration: 12, Func. Count: 139, Neg. LLF: 116.58253350608048
Iteration: 13, Func. Count: 150, Neg. LLF: 116.58248573080844
Iteration: 14, Func. Count: 161, Neg. LLF: 116.58248271269323
Iteration: 15, Func. Count: 171, Neg. LLF: 116.58248271268509
Optimization terminated successfully (Exit mode 0)
Current function value: 116.58248271269323
Iterations: 15
Function evaluations: 171
Gradient evaluations: 15
Iteration: 1, Func. Count: 13, Neg. LLF: 4374130.324495137
Iteration: 2, Func. Count: 26, Neg. LLF: 121.42632080558806
Iteration: 3, Func. Count: 39, Neg. LLF: 118.01488669468635
Iteration: 4, Func. Count: 51, Neg. LLF: 117.17669329179846
Iteration: 5, Func. Count: 63, Neg. LLF: 163.63508683646396
Iteration: 6, Func. Count: 76, Neg. LLF: 116.98106839094204
Iteration: 7, Func. Count: 88, Neg. LLF: 116.9965489000526
Iteration: 8, Func. Count: 101, Neg. LLF: 116.92998542767451
Iteration: 9, Func. Count: 113, Neg. LLF: 116.92418706494404
Iteration: 10, Func. Count: 125, Neg. LLF: 116.92153898358312
Iteration: 11, Func. Count: 137, Neg. LLF: 116.92149893399501
Iteration: 12, Func. Count: 148, Neg. LLF: 116.92149893416037
Optimization terminated successfully (Exit mode 0)
Current function value: 116.92149893399501
Iterations: 12
Function evaluations: 148
Gradient evaluations: 12
Iteration: 1, Func. Count: 14, Neg. LLF: 5847878.835494932
Iteration: 2, Func. Count: 28, Neg. LLF: 158.39034927756973
Iteration: 3, Func. Count: 42, Neg. LLF: 116.34512333394531
Iteration: 4, Func. Count: 55, Neg. LLF: 119.15403225135185
Iteration: 5, Func. Count: 70, Neg. LLF: 136.62039234687856
Iteration: 6, Func. Count: 84, Neg. LLF: 118.79621192201384
Iteration: 7, Func. Count: 98, Neg. LLF: 118.59611686422764
Iteration: 8, Func. Count: 113, Neg. LLF: 120.01269936009832
Iteration: 9, Func. Count: 127, Neg. LLF: 115.80105680709735
Iteration: 10, Func. Count: 140, Neg. LLF: 115.7934796767033
Iteration: 11, Func. Count: 153, Neg. LLF: 115.79254396635044
Iteration: 12, Func. Count: 166, Neg. LLF: 115.79233868626282
Iteration: 13, Func. Count: 179, Neg. LLF: 115.79232330412029
Iteration: 14, Func. Count: 192, Neg. LLF: 115.79232269848967
Optimization terminated successfully (Exit mode 0)
Current function value: 115.79232269848967
Iterations: 14
Function evaluations: 192
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 125.06970681052964
Iteration: 2, Func. Count: 22, Neg. LLF: 184.4222866859872
Iteration: 3, Func. Count: 33, Neg. LLF: 118.9218276261363
Iteration: 4, Func. Count: 43, Neg. LLF: 4009388.072078943
Iteration: 5, Func. Count: 55, Neg. LLF: 119.38407829301288
Iteration: 6, Func. Count: 66, Neg. LLF: 118.53951012396968
Iteration: 7, Func. Count: 76, Neg. LLF: 120.02716455873711
Iteration: 8, Func. Count: 87, Neg. LLF: 118.49096908882836
Iteration: 9, Func. Count: 97, Neg. LLF: 118.46228930160926
Iteration: 10, Func. Count: 107, Neg. LLF: 118.44862164381495
Iteration: 11, Func. Count: 117, Neg. LLF: 118.44678844569655
Iteration: 12, Func. Count: 127, Neg. LLF: 118.44610589086048
Iteration: 13, Func. Count: 137, Neg. LLF: 118.4451980633735
Iteration: 14, Func. Count: 147, Neg. LLF: 118.44476100849967
Iteration: 15, Func. Count: 157, Neg. LLF: 118.44465586562768
Iteration: 16, Func. Count: 167, Neg. LLF: 118.44464646679748
Iteration: 17, Func. Count: 176, Neg. LLF: 118.44464651299339
Optimization terminated successfully (Exit mode 0)
Current function value: 118.44464646679748
Iterations: 17
Function evaluations: 176
Gradient evaluations: 17
Iteration: 1, Func. Count: 12, Neg. LLF: 13045852.050658207
Iteration: 2, Func. Count: 25, Neg. LLF: 171.65200618387652
Iteration: 3, Func. Count: 38, Neg. LLF: 196.25952591779608
Iteration: 4, Func. Count: 50, Neg. LLF: 119.95116221361236
Iteration: 5, Func. Count: 61, Neg. LLF: 120.31712401254718
Iteration: 6, Func. Count: 73, Neg. LLF: 119.81221982695529
Iteration: 7, Func. Count: 84, Neg. LLF: 119.68847001861496
Iteration: 8, Func. Count: 95, Neg. LLF: 119.67751679841359
Iteration: 9, Func. Count: 107, Neg. LLF: 119.59459694371249
Iteration: 10, Func. Count: 118, Neg. LLF: 119.59297751912709
Iteration: 11, Func. Count: 129, Neg. LLF: 119.59288457067228
Iteration: 12, Func. Count: 140, Neg. LLF: 119.59290622789929
Iteration: 13, Func. Count: 152, Neg. LLF: 121.58972982055091
Iteration: 14, Func. Count: 167, Neg. LLF: 119.59336833004419
Iteration: 15, Func. Count: 180, Neg. LLF: 119.59293512800923
Iteration: 16, Func. Count: 192, Neg. LLF: 119.59293367635436
Iteration: 17, Func. Count: 204, Neg. LLF: 119.59293366000178
Iteration: 18, Func. Count: 214, Neg. LLF: 119.59293366000178
Optimization terminated successfully (Exit mode 0)
Current function value: 119.59293366000178
Iterations: 19
Function evaluations: 214
Gradient evaluations: 18
Iteration: 1, Func. Count: 13, Neg. LLF: 4953816.348506859
Iteration: 2, Func. Count: 26, Neg. LLF: 153.23648238243737
Iteration: 3, Func. Count: 39, Neg. LLF: 118.25870619823904
Iteration: 4, Func. Count: 51, Neg. LLF: 117.99443171770154
Iteration: 5, Func. Count: 63, Neg. LLF: 117.55504665678126
Iteration: 6, Func. Count: 75, Neg. LLF: 119.34507818207206
Iteration: 7, Func. Count: 88, Neg. LLF: 117.19041840441946
Iteration: 8, Func. Count: 100, Neg. LLF: 117.14542659145576
Iteration: 9, Func. Count: 112, Neg. LLF: 118.38273924443426
Iteration: 10, Func. Count: 126, Neg. LLF: 117.13394612869523
Iteration: 11, Func. Count: 138, Neg. LLF: 117.12709121481933
Iteration: 12, Func. Count: 150, Neg. LLF: 117.12322013355096
Iteration: 13, Func. Count: 162, Neg. LLF: 117.08535033291726
Iteration: 14, Func. Count: 174, Neg. LLF: 119.24851915162716
Iteration: 15, Func. Count: 187, Neg. LLF: 118.71186176680389
Iteration: 16, Func. Count: 200, Neg. LLF: 118.11186819545685
Iteration: 17, Func. Count: 213, Neg. LLF: 118.7778885487211
Iteration: 18, Func. Count: 226, Neg. LLF: 119.14132562999808
Iteration: 19, Func. Count: 239, Neg. LLF: 116.96574623239732
Iteration: 20, Func. Count: 252, Neg. LLF: 146.692430504738
Iteration: 21, Func. Count: 266, Neg. LLF: 116.64501210915444
Iteration: 22, Func. Count: 278, Neg. LLF: 116.59550081213713
Iteration: 23, Func. Count: 290, Neg. LLF: 116.5837451282161
Iteration: 24, Func. Count: 302, Neg. LLF: 116.5826512729114
Iteration: 25, Func. Count: 314, Neg. LLF: 116.58251877093994
Iteration: 26, Func. Count: 326, Neg. LLF: 116.65984171182052
Optimization terminated successfully (Exit mode 0)
Current function value: 116.58251873973404
Iterations: 27
Function evaluations: 329
Gradient evaluations: 26
Iteration: 1, Func. Count: 14, Neg. LLF: 4375458.937310962
Iteration: 2, Func. Count: 28, Neg. LLF: 121.76187093651104
Iteration: 3, Func. Count: 42, Neg. LLF: 118.44880529837731
Iteration: 4, Func. Count: 55, Neg. LLF: 120.88351776419435
Iteration: 5, Func. Count: 69, Neg. LLF: 117.50193881218364
Iteration: 6, Func. Count: 82, Neg. LLF: 117.51190478185599
Iteration: 7, Func. Count: 96, Neg. LLF: 116.95261037932327
Iteration: 8, Func. Count: 109, Neg. LLF: 116.93080136050108
Iteration: 9, Func. Count: 122, Neg. LLF: 116.92625757179673
Iteration: 10, Func. Count: 135, Neg. LLF: 116.92187771106286
Iteration: 11, Func. Count: 148, Neg. LLF: 116.92155336192188
Iteration: 12, Func. Count: 161, Neg. LLF: 116.9214989831792
Iteration: 13, Func. Count: 173, Neg. LLF: 116.92149898311554
Optimization terminated successfully (Exit mode 0)
Current function value: 116.9214989831792
Iterations: 13
Function evaluations: 173
Gradient evaluations: 13
Iteration: 1, Func. Count: 15, Neg. LLF: 4969276.924308654
Iteration: 2, Func. Count: 30, Neg. LLF: 169.87799174970647
Iteration: 3, Func. Count: 45, Neg. LLF: 119.40843358090662
Iteration: 4, Func. Count: 59, Neg. LLF: 118.2380858072038
Iteration: 5, Func. Count: 73, Neg. LLF: 125.08817412674446
Iteration: 6, Func. Count: 90, Neg. LLF: 136.05971207422675
Iteration: 7, Func. Count: 105, Neg. LLF: 129.34004039019368
Iteration: 8, Func. Count: 120, Neg. LLF: 133.68030132733497
Iteration: 9, Func. Count: 135, Neg. LLF: 126.78517343234628
Iteration: 10, Func. Count: 150, Neg. LLF: 118.92230995171882
Iteration: 11, Func. Count: 165, Neg. LLF: 125.08530608734968
Iteration: 12, Func. Count: 180, Neg. LLF: 137.1648610995355
Iteration: 13, Func. Count: 195, Neg. LLF: 115.86318702013514
Iteration: 14, Func. Count: 209, Neg. LLF: 116.24741388172895
Iteration: 15, Func. Count: 224, Neg. LLF: 115.91709896431142
Iteration: 16, Func. Count: 239, Neg. LLF: 115.8256417533953
Iteration: 17, Func. Count: 253, Neg. LLF: 115.80242011170574
Iteration: 18, Func. Count: 267, Neg. LLF: 115.79439627252931
Iteration: 19, Func. Count: 281, Neg. LLF: 115.79253327385462
Iteration: 20, Func. Count: 295, Neg. LLF: 115.79232834076255
Iteration: 21, Func. Count: 309, Neg. LLF: 115.79232278198647
Iteration: 22, Func. Count: 322, Neg. LLF: 115.79232278194254
Optimization terminated successfully (Exit mode 0)
Current function value: 115.79232278198647
Iterations: 22
Function evaluations: 322
Gradient evaluations: 22
Iteration: 1, Func. Count: 8, Neg. LLF: 126.8984935649577
Iteration: 2, Func. Count: 16, Neg. LLF: 181.5433642079433
Iteration: 3, Func. Count: 24, Neg. LLF: 122.10340341416284
Iteration: 4, Func. Count: 31, Neg. LLF: 312.34437135250704
Iteration: 5, Func. Count: 40, Neg. LLF: 122.26887164478136
Iteration: 6, Func. Count: 48, Neg. LLF: 121.8506673419018
Iteration: 7, Func. Count: 55, Neg. LLF: 121.83591994857646
Iteration: 8, Func. Count: 62, Neg. LLF: 121.82511471642093
Iteration: 9, Func. Count: 69, Neg. LLF: 121.82402109718545
Iteration: 10, Func. Count: 76, Neg. LLF: 121.8239437431139
Iteration: 11, Func. Count: 83, Neg. LLF: 121.82393767875942
Iteration: 12, Func. Count: 90, Neg. LLF: 121.82392498151772
Iteration: 13, Func. Count: 97, Neg. LLF: 121.8239217370801
Iteration: 14, Func. Count: 103, Neg. LLF: 121.82392185751068
Optimization terminated successfully (Exit mode 0)
Current function value: 121.8239217370801
Iterations: 14
Function evaluations: 103
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 1300.123112359662
Iteration: 2, Func. Count: 18, Neg. LLF: 132.16355563388942
Iteration: 3, Func. Count: 27, Neg. LLF: 144.46429173262555
Iteration: 4, Func. Count: 36, Neg. LLF: 126.3921196158004
Iteration: 5, Func. Count: 45, Neg. LLF: 123.20727753536005
Iteration: 6, Func. Count: 54, Neg. LLF: 122.0633837143994
Iteration: 7, Func. Count: 62, Neg. LLF: 121.8959172116917
Iteration: 8, Func. Count: 70, Neg. LLF: 121.85879132955458
Iteration: 9, Func. Count: 78, Neg. LLF: 121.83700761728475
Iteration: 10, Func. Count: 86, Neg. LLF: 121.83357562289655
Iteration: 11, Func. Count: 94, Neg. LLF: 121.82741997882975
Iteration: 12, Func. Count: 102, Neg. LLF: 121.8250975357566
Iteration: 13, Func. Count: 110, Neg. LLF: 121.8241996771311
Iteration: 14, Func. Count: 118, Neg. LLF: 121.8240095566631
Iteration: 15, Func. Count: 126, Neg. LLF: 121.82398080113683
Iteration: 16, Func. Count: 134, Neg. LLF: 121.82396658971054
Iteration: 17, Func. Count: 142, Neg. LLF: 121.82394384878597
Iteration: 18, Func. Count: 150, Neg. LLF: 121.82392746509127
Iteration: 19, Func. Count: 158, Neg. LLF: 121.82392180294963
Iteration: 20, Func. Count: 166, Neg. LLF: 121.8239212181601
Optimization terminated successfully (Exit mode 0)
Current function value: 121.8239212181601
Iterations: 20
Function evaluations: 166
Gradient evaluations: 20
Iteration: 1, Func. Count: 10, Neg. LLF: 21867933.592465557
Iteration: 2, Func. Count: 21, Neg. LLF: 143.0875507452377
Iteration: 3, Func. Count: 32, Neg. LLF: 121.2872273728821
Iteration: 4, Func. Count: 41, Neg. LLF: 120.87233109138847
Iteration: 5, Func. Count: 50, Neg. LLF: 125.93194491578403
Iteration: 6, Func. Count: 61, Neg. LLF: 120.72317124127487
Iteration: 7, Func. Count: 71, Neg. LLF: 120.43129727851812
Iteration: 8, Func. Count: 81, Neg. LLF: 120.31711106658881
Iteration: 9, Func. Count: 91, Neg. LLF: 120.30897253780127
Iteration: 10, Func. Count: 100, Neg. LLF: 120.30885975920762
Iteration: 11, Func. Count: 108, Neg. LLF: 120.30885975929161
Optimization terminated successfully (Exit mode 0)
Current function value: 120.30885975920762
Iterations: 11
Function evaluations: 108
Gradient evaluations: 11
Iteration: 1, Func. Count: 11, Neg. LLF: 20085820.10191388
Iteration: 2, Func. Count: 22, Neg. LLF: 139.2643680528818
Iteration: 3, Func. Count: 34, Neg. LLF: 121.70011796651266
Iteration: 4, Func. Count: 44, Neg. LLF: 141.10429502603276
Iteration: 5, Func. Count: 55, Neg. LLF: 120.38113915889116
Iteration: 6, Func. Count: 65, Neg. LLF: 123.24321255397666
Iteration: 7, Func. Count: 76, Neg. LLF: 120.24951906373452
Iteration: 8, Func. Count: 86, Neg. LLF: 120.09419023825544
Iteration: 9, Func. Count: 96, Neg. LLF: 120.05881383180414
Iteration: 10, Func. Count: 106, Neg. LLF: 120.06097730430237
Iteration: 11, Func. Count: 117, Neg. LLF: 120.04364209558466
Iteration: 12, Func. Count: 127, Neg. LLF: 120.04362522151683
Iteration: 13, Func. Count: 137, Neg. LLF: 120.043624055837
Iteration: 14, Func. Count: 146, Neg. LLF: 120.04362405581905
Optimization terminated successfully (Exit mode 0)
Current function value: 120.043624055837
Iterations: 14
Function evaluations: 146
Gradient evaluations: 14
Iteration: 1, Func. Count: 12, Neg. LLF: 19272633.118504778
Iteration: 2, Func. Count: 24, Neg. LLF: 136.0508480083549
Iteration: 3, Func. Count: 37, Neg. LLF: 121.47808019961552
Iteration: 4, Func. Count: 48, Neg. LLF: 121.01179369445718
Iteration: 5, Func. Count: 60, Neg. LLF: 125.60840955783983
Iteration: 6, Func. Count: 72, Neg. LLF: 123.38003053066193
Iteration: 7, Func. Count: 84, Neg. LLF: 121.04988583893119
Iteration: 8, Func. Count: 96, Neg. LLF: 119.93013764288531
Iteration: 9, Func. Count: 107, Neg. LLF: 119.91369497953893
Iteration: 10, Func. Count: 118, Neg. LLF: 119.90347607737554
Iteration: 11, Func. Count: 129, Neg. LLF: 119.89895430338534
Iteration: 12, Func. Count: 140, Neg. LLF: 119.89861418180169
Iteration: 13, Func. Count: 151, Neg. LLF: 119.8985802636538
Iteration: 14, Func. Count: 162, Neg. LLF: 119.8985783215075
Iteration: 15, Func. Count: 172, Neg. LLF: 119.8985783214128
Optimization terminated successfully (Exit mode 0)
Current function value: 119.8985783215075
Iterations: 15
Function evaluations: 172
Gradient evaluations: 15
Iteration: 1, Func. Count: 9, Neg. LLF: 126.39128382938195
Iteration: 2, Func. Count: 18, Neg. LLF: 144.27006348261978
Iteration: 3, Func. Count: 27, Neg. LLF: 118.84740064346609
Iteration: 4, Func. Count: 35, Neg. LLF: 125.04446627817674
Iteration: 5, Func. Count: 44, Neg. LLF: 118.51578290069483
Iteration: 6, Func. Count: 52, Neg. LLF: 118.49822254994137
Iteration: 7, Func. Count: 60, Neg. LLF: 118.49780725390507
Iteration: 8, Func. Count: 68, Neg. LLF: 118.49735725505319
Iteration: 9, Func. Count: 76, Neg. LLF: 118.49735143263544
Iteration: 10, Func. Count: 84, Neg. LLF: 118.49735079555892
Optimization terminated successfully (Exit mode 0)
Current function value: 118.49735079555892
Iterations: 10
Function evaluations: 84
Gradient evaluations: 10
Iteration: 1, Func. Count: 10, Neg. LLF: 18528537.55487947
Iteration: 2, Func. Count: 21, Neg. LLF: 126.44923292105217
Iteration: 3, Func. Count: 31, Neg. LLF: 517.9918564597758
Iteration: 4, Func. Count: 41, Neg. LLF: 283.3291177432475
Iteration: 5, Func. Count: 51, Neg. LLF: 204.46442597933233
Iteration: 6, Func. Count: 61, Neg. LLF: 146.13986011934824
Iteration: 7, Func. Count: 71, Neg. LLF: 120.16694210272571
Iteration: 8, Func. Count: 81, Neg. LLF: 121.85818914559346
Iteration: 9, Func. Count: 91, Neg. LLF: 119.90038669680911
Iteration: 10, Func. Count: 101, Neg. LLF: 119.59753395218469
Iteration: 11, Func. Count: 110, Neg. LLF: 119.59850204751376
Iteration: 12, Func. Count: 120, Neg. LLF: 119.59294286479332
Iteration: 13, Func. Count: 129, Neg. LLF: 119.59293388908436
Iteration: 14, Func. Count: 137, Neg. LLF: 119.59293388924254
Optimization terminated successfully (Exit mode 0)
Current function value: 119.59293388908436
Iterations: 14
Function evaluations: 137
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 18714816.10966171
Iteration: 2, Func. Count: 22, Neg. LLF: 152.1522110306286
Iteration: 3, Func. Count: 33, Neg. LLF: 119.74475292583304
Iteration: 4, Func. Count: 43, Neg. LLF: 118.26058882494456
Iteration: 5, Func. Count: 53, Neg. LLF: 120.92667171669238
Iteration: 6, Func. Count: 64, Neg. LLF: 117.5984329339431
Iteration: 7, Func. Count: 75, Neg. LLF: 116.651642045854
Iteration: 8, Func. Count: 85, Neg. LLF: 116.77504459209904
Iteration: 9, Func. Count: 96, Neg. LLF: 116.58429083470007
Iteration: 10, Func. Count: 106, Neg. LLF: 116.58249195901752
Iteration: 11, Func. Count: 116, Neg. LLF: 116.5824830172764
Iteration: 12, Func. Count: 126, Neg. LLF: 116.58248240123649
Optimization terminated successfully (Exit mode 0)
Current function value: 116.58248240123649
Iterations: 12
Function evaluations: 126
Gradient evaluations: 12
Iteration: 1, Func. Count: 12, Neg. LLF: 18113702.557433426
Iteration: 2, Func. Count: 24, Neg. LLF: 137.67848645471915
Iteration: 3, Func. Count: 36, Neg. LLF: 118.29894720655805
Iteration: 4, Func. Count: 47, Neg. LLF: 121.10342415123962
Iteration: 5, Func. Count: 59, Neg. LLF: 117.76561301083461
Iteration: 6, Func. Count: 70, Neg. LLF: 117.44544803738205
Iteration: 7, Func. Count: 81, Neg. LLF: 117.22175140767983
Iteration: 8, Func. Count: 92, Neg. LLF: 117.0026914549737
Iteration: 9, Func. Count: 103, Neg. LLF: 116.92588460218943
Iteration: 10, Func. Count: 114, Neg. LLF: 116.92237512351392
Iteration: 11, Func. Count: 125, Neg. LLF: 116.92156337507576
Iteration: 12, Func. Count: 136, Neg. LLF: 116.92150738033314
Iteration: 13, Func. Count: 147, Neg. LLF: 116.92149849145099
Iteration: 14, Func. Count: 157, Neg. LLF: 116.92149849143257
Optimization terminated successfully (Exit mode 0)
Current function value: 116.92149849145099
Iterations: 14
Function evaluations: 157
Gradient evaluations: 14
Iteration: 1, Func. Count: 13, Neg. LLF: 17673952.92008179
Iteration: 2, Func. Count: 26, Neg. LLF: 129.55772524690167
Iteration: 3, Func. Count: 39, Neg. LLF: 118.8103145955919
Iteration: 4, Func. Count: 51, Neg. LLF: 123.38564056363316
Iteration: 5, Func. Count: 65, Neg. LLF: 1310.2429712567837
Iteration: 6, Func. Count: 78, Neg. LLF: 118.028587206558
Iteration: 7, Func. Count: 91, Neg. LLF: 116.99237713762552
Iteration: 8, Func. Count: 104, Neg. LLF: 116.04658053596937
Iteration: 9, Func. Count: 117, Neg. LLF: 115.89401897486057
Iteration: 10, Func. Count: 130, Neg. LLF: 115.89880475365024
Iteration: 11, Func. Count: 143, Neg. LLF: 115.99075104861117
Iteration: 12, Func. Count: 157, Neg. LLF: 115.86221038088995
Iteration: 13, Func. Count: 169, Neg. LLF: 115.86212847643024
Iteration: 14, Func. Count: 181, Neg. LLF: 115.86211697989243
Iteration: 15, Func. Count: 193, Neg. LLF: 115.86210661263914
Iteration: 16, Func. Count: 205, Neg. LLF: 115.86210455097728
Iteration: 17, Func. Count: 216, Neg. LLF: 115.86210455096574
Optimization terminated successfully (Exit mode 0)
Current function value: 115.86210455097728
Iterations: 17
Function evaluations: 216
Gradient evaluations: 17
Iteration: 1, Func. Count: 10, Neg. LLF: 124.93421869379348
Iteration: 2, Func. Count: 20, Neg. LLF: 174.90101217928526
Iteration: 3, Func. Count: 30, Neg. LLF: 118.85934572345437
Iteration: 4, Func. Count: 39, Neg. LLF: 485.986597666004
Iteration: 5, Func. Count: 50, Neg. LLF: 118.58552295034922
Iteration: 6, Func. Count: 59, Neg. LLF: 118.54716565647213
Iteration: 7, Func. Count: 68, Neg. LLF: 118.51541616738561
Iteration: 8, Func. Count: 77, Neg. LLF: 118.50771609602529
Iteration: 9, Func. Count: 86, Neg. LLF: 118.50209580247314
Iteration: 10, Func. Count: 95, Neg. LLF: 118.50001023581618
Iteration: 11, Func. Count: 104, Neg. LLF: 118.49801669545973
Iteration: 12, Func. Count: 113, Neg. LLF: 118.49746627323526
Iteration: 13, Func. Count: 122, Neg. LLF: 118.49736159161213
Iteration: 14, Func. Count: 131, Neg. LLF: 118.49735110697773
Iteration: 15, Func. Count: 139, Neg. LLF: 118.49735125206271
Optimization terminated successfully (Exit mode 0)
Current function value: 118.49735110697773
Iterations: 15
Function evaluations: 139
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 33409406.737238772
Iteration: 2, Func. Count: 23, Neg. LLF: 120.49656766435606
Iteration: 3, Func. Count: 36, Neg. LLF: 203.9271771240261
Iteration: 4, Func. Count: 48, Neg. LLF: 123.19585462735978
Iteration: 5, Func. Count: 59, Neg. LLF: 119.70678220572151
Iteration: 6, Func. Count: 69, Neg. LLF: 119.74389942259874
Iteration: 7, Func. Count: 80, Neg. LLF: 119.63736438166131
Iteration: 8, Func. Count: 90, Neg. LLF: 119.6035843953339
Iteration: 9, Func. Count: 100, Neg. LLF: 119.59513630253417
Iteration: 10, Func. Count: 110, Neg. LLF: 119.59298033540804
Iteration: 11, Func. Count: 120, Neg. LLF: 119.59293429587161
Iteration: 12, Func. Count: 130, Neg. LLF: 119.59293359317132
Optimization terminated successfully (Exit mode 0)
Current function value: 119.59293359317132
Iterations: 12
Function evaluations: 130
Gradient evaluations: 12
Iteration: 1, Func. Count: 12, Neg. LLF: 18581256.40300197
Iteration: 2, Func. Count: 24, Neg. LLF: 178.64720849329788
Iteration: 3, Func. Count: 36, Neg. LLF: 132.52302058731678
Iteration: 4, Func. Count: 48, Neg. LLF: 119.08120294998784
Iteration: 5, Func. Count: 59, Neg. LLF: 117.7608386889993
Iteration: 6, Func. Count: 70, Neg. LLF: 118.24796291716275
Iteration: 7, Func. Count: 82, Neg. LLF: 116.77025456344438
Iteration: 8, Func. Count: 93, Neg. LLF: 116.58609165717219
Iteration: 9, Func. Count: 104, Neg. LLF: 116.58303025724487
Iteration: 10, Func. Count: 115, Neg. LLF: 116.58260712440507
Iteration: 11, Func. Count: 126, Neg. LLF: 116.58249843915637
Iteration: 12, Func. Count: 137, Neg. LLF: 116.58248284638324
Iteration: 13, Func. Count: 147, Neg. LLF: 116.58248284582979
Optimization terminated successfully (Exit mode 0)
Current function value: 116.58248284638324
Iterations: 13
Function evaluations: 147
Gradient evaluations: 13
Iteration: 1, Func. Count: 13, Neg. LLF: 18084356.424290314
Iteration: 2, Func. Count: 26, Neg. LLF: 162.03335751981993
Iteration: 3, Func. Count: 39, Neg. LLF: 127.9303417359909
Iteration: 4, Func. Count: 52, Neg. LLF: 119.03920775716229
Iteration: 5, Func. Count: 64, Neg. LLF: 117.52339066517295
Iteration: 6, Func. Count: 76, Neg. LLF: 119.4615901214745
Iteration: 7, Func. Count: 89, Neg. LLF: 116.95822158357244
Iteration: 8, Func. Count: 101, Neg. LLF: 116.9264458645007
Iteration: 9, Func. Count: 113, Neg. LLF: 116.92395837864939
Iteration: 10, Func. Count: 125, Neg. LLF: 116.92248629301982
Iteration: 11, Func. Count: 137, Neg. LLF: 116.92170411480889
Iteration: 12, Func. Count: 149, Neg. LLF: 116.92153576359011
Iteration: 13, Func. Count: 161, Neg. LLF: 116.9215006072947
Iteration: 14, Func. Count: 173, Neg. LLF: 116.92149849946179
Iteration: 15, Func. Count: 184, Neg. LLF: 116.92149849951453
Optimization terminated successfully (Exit mode 0)
Current function value: 116.92149849946179
Iterations: 15
Function evaluations: 184
Gradient evaluations: 15
Iteration: 1, Func. Count: 14, Neg. LLF: 4948874.234367909
Iteration: 2, Func. Count: 28, Neg. LLF: 149.69682553554517
Iteration: 3, Func. Count: 42, Neg. LLF: 116.32904330342869
Iteration: 4, Func. Count: 55, Neg. LLF: 119.285355088896
Iteration: 5, Func. Count: 69, Neg. LLF: 116.69309817864756
Iteration: 6, Func. Count: 83, Neg. LLF: 119.15194416341393
Iteration: 7, Func. Count: 97, Neg. LLF: 115.94744872691722
Iteration: 8, Func. Count: 111, Neg. LLF: 116.06622353349262
Iteration: 9, Func. Count: 126, Neg. LLF: 115.92907879924601
Iteration: 10, Func. Count: 140, Neg. LLF: 115.85919109134736
Iteration: 11, Func. Count: 153, Neg. LLF: 115.85914913955126
Iteration: 12, Func. Count: 166, Neg. LLF: 115.85914140384466
Iteration: 13, Func. Count: 178, Neg. LLF: 115.85914140382596
Optimization terminated successfully (Exit mode 0)
Current function value: 115.85914140384466
Iterations: 13
Function evaluations: 178
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 127.06351888084393
Iteration: 2, Func. Count: 22, Neg. LLF: 210.25648095626403
Iteration: 3, Func. Count: 33, Neg. LLF: 118.89599046342
Iteration: 4, Func. Count: 43, Neg. LLF: 6509176.13193985
Iteration: 5, Func. Count: 55, Neg. LLF: 119.21669602095912
Iteration: 6, Func. Count: 66, Neg. LLF: 118.53389176495489
Iteration: 7, Func. Count: 76, Neg. LLF: 118.76892949420586
Iteration: 8, Func. Count: 87, Neg. LLF: 118.49112909868951
Iteration: 9, Func. Count: 97, Neg. LLF: 118.46759915496462
Iteration: 10, Func. Count: 107, Neg. LLF: 118.45015534657564
Iteration: 11, Func. Count: 117, Neg. LLF: 118.44665090655752
Iteration: 12, Func. Count: 127, Neg. LLF: 118.4459141991954
Iteration: 13, Func. Count: 137, Neg. LLF: 118.44542991290683
Iteration: 14, Func. Count: 147, Neg. LLF: 118.44489286278097
Iteration: 15, Func. Count: 157, Neg. LLF: 118.44468513280158
Iteration: 16, Func. Count: 167, Neg. LLF: 118.44464796403666
Iteration: 17, Func. Count: 177, Neg. LLF: 118.44464622308472
Iteration: 18, Func. Count: 186, Neg. LLF: 118.44464622309629
Optimization terminated successfully (Exit mode 0)
Current function value: 118.44464622308472
Iterations: 18
Function evaluations: 186
Gradient evaluations: 18
Iteration: 1, Func. Count: 12, Neg. LLF: 21376572.60477491
Iteration: 2, Func. Count: 25, Neg. LLF: 145.67771100605734
Iteration: 3, Func. Count: 38, Neg. LLF: 156.06149883368786
Iteration: 4, Func. Count: 50, Neg. LLF: 120.43612155645309
Iteration: 5, Func. Count: 61, Neg. LLF: 119.7693624603826
Iteration: 6, Func. Count: 72, Neg. LLF: 119.8627596688717
Iteration: 7, Func. Count: 84, Neg. LLF: 119.59735568191664
Iteration: 8, Func. Count: 95, Neg. LLF: 119.59351843812506
Iteration: 9, Func. Count: 106, Neg. LLF: 119.59311419683797
Iteration: 10, Func. Count: 117, Neg. LLF: 119.59293947841961
Iteration: 11, Func. Count: 128, Neg. LLF: 119.5929341677147
Iteration: 12, Func. Count: 139, Neg. LLF: 119.59293366194295
Optimization terminated successfully (Exit mode 0)
Current function value: 119.59293366194295
Iterations: 12
Function evaluations: 139
Gradient evaluations: 12
Iteration: 1, Func. Count: 13, Neg. LLF: 4942597.059419796
Iteration: 2, Func. Count: 26, Neg. LLF: 151.7395117821669
Iteration: 3, Func. Count: 39, Neg. LLF: 120.09131943298544
Iteration: 4, Func. Count: 51, Neg. LLF: 117.58299053963103
Iteration: 5, Func. Count: 63, Neg. LLF: 170.76283535425108
Iteration: 6, Func. Count: 76, Neg. LLF: 131.56866288127537
Iteration: 7, Func. Count: 90, Neg. LLF: 116.98932709998626
Iteration: 8, Func. Count: 102, Neg. LLF: 116.90261223273113
Iteration: 9, Func. Count: 114, Neg. LLF: 116.70548949883779
Iteration: 10, Func. Count: 126, Neg. LLF: 116.96411281276197
Iteration: 11, Func. Count: 139, Neg. LLF: 116.60687207312787
Iteration: 12, Func. Count: 151, Neg. LLF: 116.58335734696321
Iteration: 13, Func. Count: 163, Neg. LLF: 116.58249173033775
Iteration: 14, Func. Count: 175, Neg. LLF: 116.58248248033159
Iteration: 15, Func. Count: 186, Neg. LLF: 116.58248248035196
Optimization terminated successfully (Exit mode 0)
Current function value: 116.58248248033159
Iterations: 15
Function evaluations: 186
Gradient evaluations: 15
Iteration: 1, Func. Count: 14, Neg. LLF: 7069290.093863627
Iteration: 2, Func. Count: 28, Neg. LLF: 140.20918764011034
Iteration: 3, Func. Count: 42, Neg. LLF: 119.93797680036676
Iteration: 4, Func. Count: 55, Neg. LLF: 117.27387754553784
Iteration: 5, Func. Count: 68, Neg. LLF: 122.5295649530497
Iteration: 6, Func. Count: 82, Neg. LLF: 118.00969443570966
Iteration: 7, Func. Count: 96, Neg. LLF: 116.97945431297921
Iteration: 8, Func. Count: 109, Neg. LLF: 116.92726681194776
Iteration: 9, Func. Count: 122, Neg. LLF: 116.92211457038859
Iteration: 10, Func. Count: 135, Neg. LLF: 116.921523170281
Iteration: 11, Func. Count: 148, Neg. LLF: 116.9214989933104
Iteration: 12, Func. Count: 160, Neg. LLF: 116.92149899355945
Optimization terminated successfully (Exit mode 0)
Current function value: 116.9214989933104
Iterations: 12
Function evaluations: 160
Gradient evaluations: 12
Iteration: 1, Func. Count: 15, Neg. LLF: 4959497.869050751
Iteration: 2, Func. Count: 30, Neg. LLF: 175.05395744216037
Iteration: 3, Func. Count: 45, Neg. LLF: 119.71207046026582
Iteration: 4, Func. Count: 59, Neg. LLF: 117.23971906719132
Iteration: 5, Func. Count: 73, Neg. LLF: 167.53511371616963
Iteration: 6, Func. Count: 90, Neg. LLF: 116.91693713401821
Iteration: 7, Func. Count: 104, Neg. LLF: 119.26797630621756
Iteration: 8, Func. Count: 119, Neg. LLF: 116.46975672477653
Iteration: 9, Func. Count: 134, Neg. LLF: 115.8230447075778
Iteration: 10, Func. Count: 148, Neg. LLF: 117.58643513367845
Iteration: 11, Func. Count: 164, Neg. LLF: 115.79633944041032
Iteration: 12, Func. Count: 178, Neg. LLF: 115.79296605841967
Iteration: 13, Func. Count: 192, Neg. LLF: 115.79241040790923
Iteration: 14, Func. Count: 206, Neg. LLF: 115.79235364551423
Iteration: 15, Func. Count: 220, Neg. LLF: 115.7923328002211
Iteration: 16, Func. Count: 234, Neg. LLF: 115.79232466908253
Iteration: 17, Func. Count: 248, Neg. LLF: 115.79232278689653
Iteration: 18, Func. Count: 261, Neg. LLF: 115.7923227869869
Optimization terminated successfully (Exit mode 0)
Current function value: 115.79232278689653
Iterations: 18
Function evaluations: 261
Gradient evaluations: 18
Iteration: 1, Func. Count: 12, Neg. LLF: 129.83978987459082
Iteration: 2, Func. Count: 24, Neg. LLF: 221.75378188835504
Iteration: 3, Func. Count: 36, Neg. LLF: 118.91251210740461
Iteration: 4, Func. Count: 47, Neg. LLF: 11180382.64993835
Iteration: 5, Func. Count: 60, Neg. LLF: 119.07505566943703
Iteration: 6, Func. Count: 72, Neg. LLF: 118.53167905891239
Iteration: 7, Func. Count: 83, Neg. LLF: 118.98891652173185
Iteration: 8, Func. Count: 95, Neg. LLF: 118.4846674887007
Iteration: 9, Func. Count: 106, Neg. LLF: 118.45637844978502
Iteration: 10, Func. Count: 117, Neg. LLF: 118.4485293905524
Iteration: 11, Func. Count: 128, Neg. LLF: 118.44657714838786
Iteration: 12, Func. Count: 139, Neg. LLF: 118.44591171553813
Iteration: 13, Func. Count: 150, Neg. LLF: 118.4451029356192
Iteration: 14, Func. Count: 161, Neg. LLF: 118.44473711289051
Iteration: 15, Func. Count: 172, Neg. LLF: 118.44465202622193
Iteration: 16, Func. Count: 183, Neg. LLF: 118.44464633215523
Iteration: 17, Func. Count: 193, Neg. LLF: 118.44464628596427
Optimization terminated successfully (Exit mode 0)
Current function value: 118.44464633215523
Iterations: 17
Function evaluations: 193
Gradient evaluations: 17
Iteration: 1, Func. Count: 13, Neg. LLF: 13000946.705778124
Iteration: 2, Func. Count: 27, Neg. LLF: 151.2860305929513
Iteration: 3, Func. Count: 41, Neg. LLF: 194.0987532746044
Iteration: 4, Func. Count: 54, Neg. LLF: 122.64184929167077
Iteration: 5, Func. Count: 67, Neg. LLF: 119.89303880926396
Iteration: 6, Func. Count: 79, Neg. LLF: 119.6865556821261
Iteration: 7, Func. Count: 91, Neg. LLF: 119.64094559363147
Iteration: 8, Func. Count: 103, Neg. LLF: 119.63950096074873
Iteration: 9, Func. Count: 116, Neg. LLF: 119.59558184785777
Iteration: 10, Func. Count: 128, Neg. LLF: 119.59298869945182
Iteration: 11, Func. Count: 140, Neg. LLF: 119.59294218189213
Iteration: 12, Func. Count: 152, Neg. LLF: 119.592933762264
Iteration: 13, Func. Count: 163, Neg. LLF: 119.59293376218865
Optimization terminated successfully (Exit mode 0)
Current function value: 119.592933762264
Iterations: 13
Function evaluations: 163
Gradient evaluations: 13
Iteration: 1, Func. Count: 14, Neg. LLF: 4918163.401999963
Iteration: 2, Func. Count: 28, Neg. LLF: 161.17466066126806
Iteration: 3, Func. Count: 42, Neg. LLF: 117.92875721519857
Iteration: 4, Func. Count: 55, Neg. LLF: 119.04800944093628
Iteration: 5, Func. Count: 69, Neg. LLF: 117.8629326336534
Iteration: 6, Func. Count: 83, Neg. LLF: 118.72030587747746
Iteration: 7, Func. Count: 97, Neg. LLF: 117.59113141799915
Iteration: 8, Func. Count: 111, Neg. LLF: 117.08446473900605
Iteration: 9, Func. Count: 124, Neg. LLF: 117.02810687014036
Iteration: 10, Func. Count: 137, Neg. LLF: 117.92284178121807
Iteration: 11, Func. Count: 151, Neg. LLF: 117.92803222280381
Iteration: 12, Func. Count: 165, Neg. LLF: 117.37154655945037
Iteration: 13, Func. Count: 179, Neg. LLF: 117.21439695775665
Iteration: 14, Func. Count: 193, Neg. LLF: 117.03630783151105
Iteration: 15, Func. Count: 207, Neg. LLF: 116.88054282338193
Iteration: 16, Func. Count: 220, Neg. LLF: 116.75347977887071
Iteration: 17, Func. Count: 233, Neg. LLF: 116.69942412696425
Iteration: 18, Func. Count: 246, Neg. LLF: 116.62384060595699
Iteration: 19, Func. Count: 259, Neg. LLF: 116.60426812652273
Iteration: 20, Func. Count: 272, Neg. LLF: 116.58972082534557
Iteration: 21, Func. Count: 285, Neg. LLF: 116.58301556088404
Iteration: 22, Func. Count: 298, Neg. LLF: 116.58250877989737
Iteration: 23, Func. Count: 311, Neg. LLF: 116.58248691648379
Iteration: 24, Func. Count: 324, Neg. LLF: 116.58248330242573
Iteration: 25, Func. Count: 337, Neg. LLF: 116.58248299559628
Optimization terminated successfully (Exit mode 0)
Current function value: 116.58248299559628
Iterations: 25
Function evaluations: 337
Gradient evaluations: 25
Iteration: 1, Func. Count: 15, Neg. LLF: 4187781.0783180557
Iteration: 2, Func. Count: 30, Neg. LLF: 122.13541078346631
Iteration: 3, Func. Count: 45, Neg. LLF: 118.70006935531607
Iteration: 4, Func. Count: 59, Neg. LLF: 123.48297734942753
Iteration: 5, Func. Count: 74, Neg. LLF: 117.2872315951882
Iteration: 6, Func. Count: 88, Neg. LLF: 117.03544735124123
Iteration: 7, Func. Count: 102, Neg. LLF: 118.62394341990587
Iteration: 8, Func. Count: 117, Neg. LLF: 116.9254706143437
Iteration: 9, Func. Count: 131, Neg. LLF: 116.92382897800816
Iteration: 10, Func. Count: 145, Neg. LLF: 116.92200329222564
Iteration: 11, Func. Count: 159, Neg. LLF: 116.9215490058665
Iteration: 12, Func. Count: 173, Neg. LLF: 116.92149953751468
Iteration: 13, Func. Count: 187, Neg. LLF: 116.92149845746886
Iteration: 14, Func. Count: 200, Neg. LLF: 116.92149845747528
Optimization terminated successfully (Exit mode 0)
Current function value: 116.92149845746886
Iterations: 14
Function evaluations: 200
Gradient evaluations: 14
Iteration: 1, Func. Count: 16, Neg. LLF: 4896706.288911101
Iteration: 2, Func. Count: 32, Neg. LLF: 199.22968453232536
Iteration: 3, Func. Count: 48, Neg. LLF: 128.14363449318748
Iteration: 4, Func. Count: 64, Neg. LLF: 116.2090753709888
Iteration: 5, Func. Count: 79, Neg. LLF: 131.03265367005278
Iteration: 6, Func. Count: 97, Neg. LLF: 116.2917499310821
Iteration: 7, Func. Count: 113, Neg. LLF: 121.91357155959524
Iteration: 8, Func. Count: 130, Neg. LLF: 116.29102952763748
Iteration: 9, Func. Count: 146, Neg. LLF: 115.8113652397451
Iteration: 10, Func. Count: 161, Neg. LLF: 115.79446560476474
Iteration: 11, Func. Count: 176, Neg. LLF: 115.79239318478305
Iteration: 12, Func. Count: 191, Neg. LLF: 115.79232942083797
Iteration: 13, Func. Count: 206, Neg. LLF: 115.79232313348699
Iteration: 14, Func. Count: 220, Neg. LLF: 115.79232313335935
Optimization terminated successfully (Exit mode 0)
Current function value: 115.79232313348699
Iterations: 14
Function evaluations: 220
Gradient evaluations: 14
Iteration: 1, Func. Count: 7, Neg. LLF: 23726034.20801882
Iteration: 2, Func. Count: 14, Neg. LLF: 201.32152031547014
Iteration: 3, Func. Count: 22, Neg. LLF: 120.29981065185483
Iteration: 4, Func. Count: 30, Neg. LLF: 117.04663654747662
Iteration: 5, Func. Count: 36, Neg. LLF: 117.25681258867073
Iteration: 6, Func. Count: 43, Neg. LLF: 116.78488531773446
Iteration: 7, Func. Count: 49, Neg. LLF: 116.63629420971048
Iteration: 8, Func. Count: 55, Neg. LLF: 116.58759377934255
Iteration: 9, Func. Count: 61, Neg. LLF: 116.58316395201352
Iteration: 10, Func. Count: 67, Neg. LLF: 116.58254665734094
Iteration: 11, Func. Count: 73, Neg. LLF: 116.58248948759325
Iteration: 12, Func. Count: 79, Neg. LLF: 116.58248246966566
Iteration: 13, Func. Count: 84, Neg. LLF: 116.58248246938908
Optimization terminated successfully (Exit mode 0)
Current function value: 116.58248246966566
Iterations: 13
Function evaluations: 84
Gradient evaluations: 13
Iteration: 1, Func. Count: 5, Neg. LLF: 120.1141229237237
Iteration: 2, Func. Count: 10, Neg. LLF: 116.60109543029331
Iteration: 3, Func. Count: 15, Neg. LLF: 117.12017783707762
Iteration: 4, Func. Count: 20, Neg. LLF: 115.34959589526079
Iteration: 5, Func. Count: 24, Neg. LLF: 115.3190571764621
Iteration: 6, Func. Count: 28, Neg. LLF: 115.30243816387281
Iteration: 7, Func. Count: 32, Neg. LLF: 115.283896438288
Iteration: 8, Func. Count: 36, Neg. LLF: 115.28283789988406
Iteration: 9, Func. Count: 40, Neg. LLF: 115.28280769084508
Iteration: 10, Func. Count: 43, Neg. LLF: 115.28280769084124
Optimization terminated successfully (Exit mode 0)
Current function value: 115.28280769084508
Iterations: 10
Function evaluations: 43
Gradient evaluations: 10
Iteration: 1, Func. Count: 6, Neg. LLF: 39829604.00225775
Iteration: 2, Func. Count: 13, Neg. LLF: 142.75934021507118
Iteration: 3, Func. Count: 20, Neg. LLF: 148.86988642269537
Iteration: 4, Func. Count: 26, Neg. LLF: 129.9503871118521
Iteration: 5, Func. Count: 32, Neg. LLF: 120.15618389033583
Iteration: 6, Func. Count: 38, Neg. LLF: 112.76378453567133
Iteration: 7, Func. Count: 44, Neg. LLF: 112.28481630865706
Iteration: 8, Func. Count: 50, Neg. LLF: 112.18688810831449
Iteration: 9, Func. Count: 56, Neg. LLF: 112.9220506811283
Iteration: 10, Func. Count: 62, Neg. LLF: 112.14940382383915
Iteration: 11, Func. Count: 67, Neg. LLF: 112.14921807141916
Iteration: 12, Func. Count: 72, Neg. LLF: 112.14921670579304
Iteration: 13, Func. Count: 76, Neg. LLF: 112.14921670539177
Optimization terminated successfully (Exit mode 0)
Current function value: 112.14921670579304
Iterations: 13
Function evaluations: 76
Gradient evaluations: 13
Iteration: 1, Func. Count: 7, Neg. LLF: 47462110.722347476
Iteration: 2, Func. Count: 15, Neg. LLF: 129.62898542593604
Iteration: 3, Func. Count: 23, Neg. LLF: 128.20958027862392
Iteration: 4, Func. Count: 30, Neg. LLF: 112.75831360732096
Iteration: 5, Func. Count: 37, Neg. LLF: 112.26888473239556
Iteration: 6, Func. Count: 44, Neg. LLF: 111.83309413068378
Iteration: 7, Func. Count: 50, Neg. LLF: 112.5296214826345
Iteration: 8, Func. Count: 57, Neg. LLF: 112.19472249808707
Iteration: 9, Func. Count: 64, Neg. LLF: 111.63122763458028
Iteration: 10, Func. Count: 70, Neg. LLF: 111.61191006483931
Iteration: 11, Func. Count: 76, Neg. LLF: 111.60720785699452
Iteration: 12, Func. Count: 82, Neg. LLF: 111.60585709562207
Iteration: 13, Func. Count: 88, Neg. LLF: 111.6058325884044
Iteration: 14, Func. Count: 93, Neg. LLF: 111.60583258838527
Optimization terminated successfully (Exit mode 0)
Current function value: 111.6058325884044
Iterations: 14
Function evaluations: 93
Gradient evaluations: 14
Iteration: 1, Func. Count: 8, Neg. LLF: 48679978.18439899
Iteration: 2, Func. Count: 17, Neg. LLF: 130.987517538249
Iteration: 3, Func. Count: 26, Neg. LLF: 116.47063085897494
Iteration: 4, Func. Count: 34, Neg. LLF: 112.46203509088163
Iteration: 5, Func. Count: 41, Neg. LLF: 112.45313625058459
Iteration: 6, Func. Count: 49, Neg. LLF: 112.26808298410398
Iteration: 7, Func. Count: 56, Neg. LLF: 112.18404813824486
Iteration: 8, Func. Count: 63, Neg. LLF: 112.15497812209972
Iteration: 9, Func. Count: 70, Neg. LLF: 112.15097451877772
Iteration: 10, Func. Count: 77, Neg. LLF: 112.14936132985972
Iteration: 11, Func. Count: 84, Neg. LLF: 112.14923168917049
Iteration: 12, Func. Count: 91, Neg. LLF: 112.14921649795785
Iteration: 13, Func. Count: 97, Neg. LLF: 112.1492165110362
Optimization terminated successfully (Exit mode 0)
Current function value: 112.14921649795785
Iterations: 13
Function evaluations: 97
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 47666863.21137428
Iteration: 2, Func. Count: 18, Neg. LLF: 693.4036919114848
Iteration: 3, Func. Count: 28, Neg. LLF: 113.281009859476
Iteration: 4, Func. Count: 37, Neg. LLF: 113.08457188780521
Iteration: 5, Func. Count: 46, Neg. LLF: 111.64235332519908
Iteration: 6, Func. Count: 54, Neg. LLF: 111.43677546592676
Iteration: 7, Func. Count: 62, Neg. LLF: 111.28766805519723
Iteration: 8, Func. Count: 70, Neg. LLF: 111.25911423771709
Iteration: 9, Func. Count: 78, Neg. LLF: 111.25749684800861
Iteration: 10, Func. Count: 86, Neg. LLF: 111.25746501272766
Iteration: 11, Func. Count: 95, Neg. LLF: 111.2573814586221
Iteration: 12, Func. Count: 102, Neg. LLF: 111.25738145845382
Optimization terminated successfully (Exit mode 0)
Current function value: 111.2573814586221
Iterations: 12
Function evaluations: 102
Gradient evaluations: 12
Iteration: 1, Func. Count: 6, Neg. LLF: 121.56056916846343
Iteration: 2, Func. Count: 12, Neg. LLF: 133.9064403966067
Iteration: 3, Func. Count: 18, Neg. LLF: 116.63863980655668
Iteration: 4, Func. Count: 24, Neg. LLF: 115.77794990843236
Iteration: 5, Func. Count: 29, Neg. LLF: 115.46780997416434
Iteration: 6, Func. Count: 34, Neg. LLF: 115.47134659227225
Iteration: 7, Func. Count: 40, Neg. LLF: 115.30796173388948
Iteration: 8, Func. Count: 45, Neg. LLF: 115.29416551989573
Iteration: 9, Func. Count: 50, Neg. LLF: 115.2859110419332
Iteration: 10, Func. Count: 55, Neg. LLF: 115.28306318657513
Iteration: 11, Func. Count: 60, Neg. LLF: 115.28281291477973
Iteration: 12, Func. Count: 65, Neg. LLF: 115.28280770748358
Iteration: 13, Func. Count: 69, Neg. LLF: 115.2828077196275
Optimization terminated successfully (Exit mode 0)
Current function value: 115.28280770748358
Iterations: 13
Function evaluations: 69
Gradient evaluations: 13
Iteration: 1, Func. Count: 7, Neg. LLF: 39763136.06760535
Iteration: 2, Func. Count: 15, Neg. LLF: 137.02123127304205
Iteration: 3, Func. Count: 23, Neg. LLF: 159.79019622827332
Iteration: 4, Func. Count: 30, Neg. LLF: 121.5436167866537
Iteration: 5, Func. Count: 37, Neg. LLF: 113.03340255927246
Iteration: 6, Func. Count: 44, Neg. LLF: 112.32251809595019
Iteration: 7, Func. Count: 51, Neg. LLF: 112.57782889574317
Iteration: 8, Func. Count: 58, Neg. LLF: 112.16402531681186
Iteration: 9, Func. Count: 65, Neg. LLF: 112.06489651326
Iteration: 10, Func. Count: 71, Neg. LLF: 112.06464611553837
Iteration: 11, Func. Count: 77, Neg. LLF: 112.06463603284352
Iteration: 12, Func. Count: 82, Neg. LLF: 112.06463603301874
Optimization terminated successfully (Exit mode 0)
Current function value: 112.06463603284352
Iterations: 12
Function evaluations: 82
Gradient evaluations: 12
Iteration: 1, Func. Count: 8, Neg. LLF: 46013288.13264683
Iteration: 2, Func. Count: 17, Neg. LLF: 128.01645622791503
Iteration: 3, Func. Count: 26, Neg. LLF: 139.6812155587559
Iteration: 4, Func. Count: 34, Neg. LLF: 112.483772452472
Iteration: 5, Func. Count: 41, Neg. LLF: 112.41834219702992
Iteration: 6, Func. Count: 49, Neg. LLF: 113.13802823692541
Iteration: 7, Func. Count: 57, Neg. LLF: 112.20378509854189
Iteration: 8, Func. Count: 64, Neg. LLF: 112.07902637426773
Iteration: 9, Func. Count: 71, Neg. LLF: 112.06919762897111
Iteration: 10, Func. Count: 78, Neg. LLF: 112.06494864365602
Iteration: 11, Func. Count: 85, Neg. LLF: 112.06464974827226
Iteration: 12, Func. Count: 92, Neg. LLF: 112.06463584279273
Iteration: 13, Func. Count: 98, Neg. LLF: 112.06463585012087
Optimization terminated successfully (Exit mode 0)
Current function value: 112.06463584279273
Iterations: 13
Function evaluations: 98
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 47450899.60611345
Iteration: 2, Func. Count: 19, Neg. LLF: 168.3434320025905
Iteration: 3, Func. Count: 29, Neg. LLF: 124.64020344585649
Iteration: 4, Func. Count: 38, Neg. LLF: 112.2964570292056
Iteration: 5, Func. Count: 46, Neg. LLF: 112.46003722099711
Iteration: 6, Func. Count: 55, Neg. LLF: 112.26055781696142
Iteration: 7, Func. Count: 64, Neg. LLF: 112.23506056090567
Iteration: 8, Func. Count: 72, Neg. LLF: 112.23392544078406
Iteration: 9, Func. Count: 80, Neg. LLF: 112.08458306058502
Iteration: 10, Func. Count: 88, Neg. LLF: 112.06898452058589
Iteration: 11, Func. Count: 96, Neg. LLF: 112.06483037386334
Iteration: 12, Func. Count: 104, Neg. LLF: 112.06464086701564
Iteration: 13, Func. Count: 112, Neg. LLF: 112.06463682805561
Iteration: 14, Func. Count: 120, Neg. LLF: 112.06463593226721
Optimization terminated successfully (Exit mode 0)
Current function value: 112.06463593226721
Iterations: 14
Function evaluations: 120
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 46635451.37562051
Iteration: 2, Func. Count: 20, Neg. LLF: 731.5428987845428
Iteration: 3, Func. Count: 31, Neg. LLF: 113.22437495706902
Iteration: 4, Func. Count: 41, Neg. LLF: 112.55827873531265
Iteration: 5, Func. Count: 50, Neg. LLF: 113.43229421133061
Iteration: 6, Func. Count: 60, Neg. LLF: 112.61673364186534
Iteration: 7, Func. Count: 70, Neg. LLF: 112.11453265530177
Iteration: 8, Func. Count: 79, Neg. LLF: 112.10459359985758
Iteration: 9, Func. Count: 88, Neg. LLF: 112.08720252701927
Iteration: 10, Func. Count: 97, Neg. LLF: 112.09030706730283
Iteration: 11, Func. Count: 107, Neg. LLF: 112.06479864150737
Iteration: 12, Func. Count: 116, Neg. LLF: 112.06463759697448
Iteration: 13, Func. Count: 125, Neg. LLF: 112.06463581971778
Iteration: 14, Func. Count: 133, Neg. LLF: 112.06463584498786
Optimization terminated successfully (Exit mode 0)
Current function value: 112.06463581971778
Iterations: 14
Function evaluations: 133
Gradient evaluations: 14
Iteration: 1, Func. Count: 7, Neg. LLF: 120.28680249940915
Iteration: 2, Func. Count: 14, Neg. LLF: 160.78809608329775
Iteration: 3, Func. Count: 21, Neg. LLF: 118.31883418591023
Iteration: 4, Func. Count: 28, Neg. LLF: 115.26246910103896
Iteration: 5, Func. Count: 35, Neg. LLF: 114.18938708806922
Iteration: 6, Func. Count: 41, Neg. LLF: 114.18008028448911
Iteration: 7, Func. Count: 48, Neg. LLF: 114.13601991839575
Iteration: 8, Func. Count: 54, Neg. LLF: 114.12292148684935
Iteration: 9, Func. Count: 60, Neg. LLF: 114.10837998344262
Iteration: 10, Func. Count: 66, Neg. LLF: 114.09920074810155
Iteration: 11, Func. Count: 72, Neg. LLF: 114.09775622422
Iteration: 12, Func. Count: 78, Neg. LLF: 114.09766199494888
Iteration: 13, Func. Count: 84, Neg. LLF: 114.09766124633346
Optimization terminated successfully (Exit mode 0)
Current function value: 114.09766124633346
Iterations: 13
Function evaluations: 84
Gradient evaluations: 13
Iteration: 1, Func. Count: 8, Neg. LLF: 40852775.27458319
Iteration: 2, Func. Count: 17, Neg. LLF: 131.52832140920373
Iteration: 3, Func. Count: 25, Neg. LLF: 138.05067247536812
Iteration: 4, Func. Count: 33, Neg. LLF: 113.00106284917682
Iteration: 5, Func. Count: 41, Neg. LLF: 114.13820667804038
Iteration: 6, Func. Count: 49, Neg. LLF: 112.19400099952436
Iteration: 7, Func. Count: 57, Neg. LLF: 111.93476449580072
Iteration: 8, Func. Count: 64, Neg. LLF: 111.9449190078646
Iteration: 9, Func. Count: 72, Neg. LLF: 111.92770143375871
Iteration: 10, Func. Count: 79, Neg. LLF: 111.92689517264485
Iteration: 11, Func. Count: 86, Neg. LLF: 111.9268901004663
Iteration: 12, Func. Count: 92, Neg. LLF: 111.92689010034292
Optimization terminated successfully (Exit mode 0)
Current function value: 111.9268901004663
Iterations: 12
Function evaluations: 92
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 47183373.84988211
Iteration: 2, Func. Count: 19, Neg. LLF: 119.38793445618268
Iteration: 3, Func. Count: 28, Neg. LLF: 115.76210010366377
Iteration: 4, Func. Count: 37, Neg. LLF: 114.14062620619778
Iteration: 5, Func. Count: 46, Neg. LLF: 111.55490853776568
Iteration: 6, Func. Count: 54, Neg. LLF: 112.43078416181096
Iteration: 7, Func. Count: 63, Neg. LLF: 115.24040109320646
Iteration: 8, Func. Count: 73, Neg. LLF: 111.38756599706367
Iteration: 9, Func. Count: 81, Neg. LLF: 111.35283313849078
Iteration: 10, Func. Count: 89, Neg. LLF: 111.34689377899265
Iteration: 11, Func. Count: 97, Neg. LLF: 111.33900287686629
Iteration: 12, Func. Count: 105, Neg. LLF: 111.3386387603158
Iteration: 13, Func. Count: 113, Neg. LLF: 111.33857946829329
Iteration: 14, Func. Count: 121, Neg. LLF: 111.33856007043671
Iteration: 15, Func. Count: 129, Neg. LLF: 111.33855932020761
Optimization terminated successfully (Exit mode 0)
Current function value: 111.33855932020761
Iterations: 15
Function evaluations: 129
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 48158562.601551004
Iteration: 2, Func. Count: 21, Neg. LLF: 267.59050721580127
Iteration: 3, Func. Count: 32, Neg. LLF: 112.36929004507975
Iteration: 4, Func. Count: 42, Neg. LLF: 114.77239597051056
Iteration: 5, Func. Count: 52, Neg. LLF: 112.74397934604235
Iteration: 6, Func. Count: 62, Neg. LLF: 112.08152282985844
Iteration: 7, Func. Count: 72, Neg. LLF: 117.3070829113361
Iteration: 8, Func. Count: 82, Neg. LLF: 111.45207359152354
Iteration: 9, Func. Count: 91, Neg. LLF: 111.66128151610769
Iteration: 10, Func. Count: 101, Neg. LLF: 111.31656885891148
Iteration: 11, Func. Count: 110, Neg. LLF: 111.28015905623104
Iteration: 12, Func. Count: 119, Neg. LLF: 111.27309443028824
Iteration: 13, Func. Count: 128, Neg. LLF: 111.26965892453758
Iteration: 14, Func. Count: 137, Neg. LLF: 111.26939584073712
Iteration: 15, Func. Count: 146, Neg. LLF: 111.2692635924338
Iteration: 16, Func. Count: 154, Neg. LLF: 111.26926359282741
Optimization terminated successfully (Exit mode 0)
Current function value: 111.2692635924338
Iterations: 16
Function evaluations: 154
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 26556137.873323664
Iteration: 2, Func. Count: 22, Neg. LLF: 353.22712221912843
Iteration: 3, Func. Count: 33, Neg. LLF: 119.88523459442652
Iteration: 4, Func. Count: 44, Neg. LLF: 118.72142466213798
Iteration: 5, Func. Count: 55, Neg. LLF: 113.75511484247231
Iteration: 6, Func. Count: 66, Neg. LLF: 113.30790301000492
Iteration: 7, Func. Count: 77, Neg. LLF: 113.0095286469882
Iteration: 8, Func. Count: 88, Neg. LLF: 112.20882636291296
Iteration: 9, Func. Count: 99, Neg. LLF: 111.34247350900364
Iteration: 10, Func. Count: 109, Neg. LLF: 111.2989816966599
Iteration: 11, Func. Count: 119, Neg. LLF: 111.30633831518838
Iteration: 12, Func. Count: 130, Neg. LLF: 111.27964349729915
Iteration: 13, Func. Count: 140, Neg. LLF: 111.26991060810639
Iteration: 14, Func. Count: 150, Neg. LLF: 111.26934360478579
Iteration: 15, Func. Count: 160, Neg. LLF: 111.2692677633673
Iteration: 16, Func. Count: 170, Neg. LLF: 111.26926294758078
Iteration: 17, Func. Count: 179, Neg. LLF: 111.26926297413362
Optimization terminated successfully (Exit mode 0)
Current function value: 111.26926294758078
Iterations: 17
Function evaluations: 179
Gradient evaluations: 17
Iteration: 1, Func. Count: 8, Neg. LLF: 121.12192511700297
Iteration: 2, Func. Count: 16, Neg. LLF: 176.3110054042943
Iteration: 3, Func. Count: 24, Neg. LLF: 118.2717532020296
Iteration: 4, Func. Count: 32, Neg. LLF: 115.34200844692573
Iteration: 5, Func. Count: 40, Neg. LLF: 114.15715595611515
Iteration: 6, Func. Count: 47, Neg. LLF: 114.1816222632965
Iteration: 7, Func. Count: 55, Neg. LLF: 114.13791519157216
Iteration: 8, Func. Count: 62, Neg. LLF: 114.12260205751504
Iteration: 9, Func. Count: 69, Neg. LLF: 114.10339531901744
Iteration: 10, Func. Count: 76, Neg. LLF: 114.09841392753998
Iteration: 11, Func. Count: 83, Neg. LLF: 114.09767860210641
Iteration: 12, Func. Count: 90, Neg. LLF: 114.09766126781821
Iteration: 13, Func. Count: 96, Neg. LLF: 114.09766131581279
Optimization terminated successfully (Exit mode 0)
Current function value: 114.09766126781821
Iterations: 13
Function evaluations: 96
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 41386024.91443673
Iteration: 2, Func. Count: 19, Neg. LLF: 126.71294510343952
Iteration: 3, Func. Count: 28, Neg. LLF: 190.26773860421298
Iteration: 4, Func. Count: 37, Neg. LLF: 112.41068714549172
Iteration: 5, Func. Count: 46, Neg. LLF: 114.87525143015584
Iteration: 6, Func. Count: 55, Neg. LLF: 111.94076057494144
Iteration: 7, Func. Count: 63, Neg. LLF: 111.96559554905801
Iteration: 8, Func. Count: 72, Neg. LLF: 111.92925097401346
Iteration: 9, Func. Count: 81, Neg. LLF: 111.92692802033099
Iteration: 10, Func. Count: 89, Neg. LLF: 111.92688996576945
Iteration: 11, Func. Count: 96, Neg. LLF: 111.92688996575588
Optimization terminated successfully (Exit mode 0)
Current function value: 111.92688996576945
Iterations: 11
Function evaluations: 96
Gradient evaluations: 11
Iteration: 1, Func. Count: 10, Neg. LLF: 46676600.27906871
Iteration: 2, Func. Count: 21, Neg. LLF: 125.42203005594001
Iteration: 3, Func. Count: 31, Neg. LLF: 117.01342908617038
Iteration: 4, Func. Count: 41, Neg. LLF: 111.99729067031362
Iteration: 5, Func. Count: 50, Neg. LLF: 111.51971075562085
Iteration: 6, Func. Count: 59, Neg. LLF: 111.51247820055265
Iteration: 7, Func. Count: 69, Neg. LLF: 117.1725021876826
Iteration: 8, Func. Count: 80, Neg. LLF: 111.34688032274562
Iteration: 9, Func. Count: 89, Neg. LLF: 111.34029344715336
Iteration: 10, Func. Count: 98, Neg. LLF: 111.33869948532711
Iteration: 11, Func. Count: 107, Neg. LLF: 111.33859700471906
Iteration: 12, Func. Count: 116, Neg. LLF: 111.33858065024165
Iteration: 13, Func. Count: 125, Neg. LLF: 111.33856595008552
Iteration: 14, Func. Count: 134, Neg. LLF: 111.33855993150935
Iteration: 15, Func. Count: 143, Neg. LLF: 111.33855914145468
Optimization terminated successfully (Exit mode 0)
Current function value: 111.33855914145468
Iterations: 15
Function evaluations: 143
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 47623242.003053516
Iteration: 2, Func. Count: 23, Neg. LLF: 186.18709708084705
Iteration: 3, Func. Count: 35, Neg. LLF: 124.46798045390793
Iteration: 4, Func. Count: 46, Neg. LLF: 112.37130073129852
Iteration: 5, Func. Count: 56, Neg. LLF: 112.01572759737674
Iteration: 6, Func. Count: 66, Neg. LLF: 112.20256303199997
Iteration: 7, Func. Count: 77, Neg. LLF: 111.86655505693929
Iteration: 8, Func. Count: 88, Neg. LLF: 112.01707790860686
Iteration: 9, Func. Count: 99, Neg. LLF: 111.39086250685801
Iteration: 10, Func. Count: 109, Neg. LLF: 112.0150176095073
Iteration: 11, Func. Count: 120, Neg. LLF: 111.30901983103169
Iteration: 12, Func. Count: 130, Neg. LLF: 111.28040877591778
Iteration: 13, Func. Count: 140, Neg. LLF: 111.27486292855761
Iteration: 14, Func. Count: 150, Neg. LLF: 111.27101691121952
Iteration: 15, Func. Count: 160, Neg. LLF: 111.26966743641476
Iteration: 16, Func. Count: 170, Neg. LLF: 111.2693202791199
Iteration: 17, Func. Count: 180, Neg. LLF: 111.26926707327955
Iteration: 18, Func. Count: 190, Neg. LLF: 111.26926286875889
Iteration: 19, Func. Count: 199, Neg. LLF: 111.26926286875408
Optimization terminated successfully (Exit mode 0)
Current function value: 111.26926286875889
Iterations: 19
Function evaluations: 199
Gradient evaluations: 19
Iteration: 1, Func. Count: 12, Neg. LLF: 26259210.812902752
Iteration: 2, Func. Count: 24, Neg. LLF: 234.02119465037973
Iteration: 3, Func. Count: 36, Neg. LLF: 119.50893039234079
Iteration: 4, Func. Count: 48, Neg. LLF: 116.76401320781076
Iteration: 5, Func. Count: 60, Neg. LLF: 112.62315724815988
Iteration: 6, Func. Count: 72, Neg. LLF: 113.90618683493093
Iteration: 7, Func. Count: 84, Neg. LLF: 111.67052260447832
Iteration: 8, Func. Count: 95, Neg. LLF: 111.37272884732785
Iteration: 9, Func. Count: 106, Neg. LLF: 111.33188058865083
Iteration: 10, Func. Count: 117, Neg. LLF: 111.29080463709882
Iteration: 11, Func. Count: 128, Neg. LLF: 111.27264830616349
Iteration: 12, Func. Count: 139, Neg. LLF: 111.27081782031367
Iteration: 13, Func. Count: 150, Neg. LLF: 111.27001251417441
Iteration: 14, Func. Count: 161, Neg. LLF: 111.26927523314039
Iteration: 15, Func. Count: 172, Neg. LLF: 111.26926374638154
Iteration: 16, Func. Count: 183, Neg. LLF: 111.26926285442237
Optimization terminated successfully (Exit mode 0)
Current function value: 111.26926285442237
Iterations: 16
Function evaluations: 183
Gradient evaluations: 16
Iteration: 1, Func. Count: 5, Neg. LLF: 121.5077557235926
Iteration: 2, Func. Count: 10, Neg. LLF: 116.88394043302195
Iteration: 3, Func. Count: 14, Neg. LLF: 116.62492151294593
Iteration: 4, Func. Count: 18, Neg. LLF: 116.50608403719522
Iteration: 5, Func. Count: 22, Neg. LLF: 116.50044220646387
Iteration: 6, Func. Count: 26, Neg. LLF: 116.49902403100978
Iteration: 7, Func. Count: 30, Neg. LLF: 116.49902061627402
Iteration: 8, Func. Count: 33, Neg. LLF: 116.49902063175885
Optimization terminated successfully (Exit mode 0)
Current function value: 116.49902061627402
Iterations: 8
Function evaluations: 33
Gradient evaluations: 8
Iteration: 1, Func. Count: 6, Neg. LLF: 19461965.14620834
Iteration: 2, Func. Count: 12, Neg. LLF: 1968.603904689606
Iteration: 3, Func. Count: 18, Neg. LLF: 693.6520819790979
Iteration: 4, Func. Count: 24, Neg. LLF: 133.08734435293493
Iteration: 5, Func. Count: 30, Neg. LLF: 112.88424180751885
Iteration: 6, Func. Count: 36, Neg. LLF: 118.9569208011222
Iteration: 7, Func. Count: 42, Neg. LLF: 112.19811373677406
Iteration: 8, Func. Count: 47, Neg. LLF: 112.15820767504317
Iteration: 9, Func. Count: 52, Neg. LLF: 112.15618954233909
Iteration: 10, Func. Count: 57, Neg. LLF: 112.15542576111444
Iteration: 11, Func. Count: 62, Neg. LLF: 112.1545473372347
Iteration: 12, Func. Count: 67, Neg. LLF: 112.15453949172237
Iteration: 13, Func. Count: 71, Neg. LLF: 112.15453949155967
Optimization terminated successfully (Exit mode 0)
Current function value: 112.15453949172237
Iterations: 13
Function evaluations: 71
Gradient evaluations: 13
Iteration: 1, Func. Count: 7, Neg. LLF: 19435756.04795893
Iteration: 2, Func. Count: 14, Neg. LLF: 421.5675832783386
Iteration: 3, Func. Count: 21, Neg. LLF: 263.5963940117627
Iteration: 4, Func. Count: 28, Neg. LLF: 130.37357056182717
Iteration: 5, Func. Count: 35, Neg. LLF: 114.1713826433609
Iteration: 6, Func. Count: 42, Neg. LLF: 113.39670843228092
Iteration: 7, Func. Count: 49, Neg. LLF: 112.41404095645221
Iteration: 8, Func. Count: 56, Neg. LLF: 112.16354178305434
Iteration: 9, Func. Count: 62, Neg. LLF: 112.16139652776451
Iteration: 10, Func. Count: 69, Neg. LLF: 112.15659544123106
Iteration: 11, Func. Count: 76, Neg. LLF: 112.15458261483519
Iteration: 12, Func. Count: 82, Neg. LLF: 112.15453943481792
Iteration: 13, Func. Count: 87, Neg. LLF: 112.15453944082122
Optimization terminated successfully (Exit mode 0)
Current function value: 112.15453943481792
Iterations: 13
Function evaluations: 87
Gradient evaluations: 13
Iteration: 1, Func. Count: 8, Neg. LLF: 19443594.538769238
Iteration: 2, Func. Count: 16, Neg. LLF: 407.5671162777594
Iteration: 3, Func. Count: 24, Neg. LLF: 463.19903402367424
Iteration: 4, Func. Count: 32, Neg. LLF: 181.6834733690319
Iteration: 5, Func. Count: 40, Neg. LLF: 114.44152100238746
Iteration: 6, Func. Count: 48, Neg. LLF: 112.92458731651395
Iteration: 7, Func. Count: 56, Neg. LLF: 112.32237399999114
Iteration: 8, Func. Count: 63, Neg. LLF: 112.17653600175143
Iteration: 9, Func. Count: 70, Neg. LLF: 112.15966100231847
Iteration: 10, Func. Count: 77, Neg. LLF: 112.1550317820169
Iteration: 11, Func. Count: 84, Neg. LLF: 112.15467538434847
Iteration: 12, Func. Count: 91, Neg. LLF: 112.15457929267518
Iteration: 13, Func. Count: 98, Neg. LLF: 112.15454011280073
Iteration: 14, Func. Count: 105, Neg. LLF: 112.15453942853416
Optimization terminated successfully (Exit mode 0)
Current function value: 112.15453942853416
Iterations: 14
Function evaluations: 105
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 19449171.01909855
Iteration: 2, Func. Count: 18, Neg. LLF: 342.13186381312124
Iteration: 3, Func. Count: 27, Neg. LLF: 659.1185632518759
Iteration: 4, Func. Count: 36, Neg. LLF: 232.11695798458038
Iteration: 5, Func. Count: 45, Neg. LLF: 113.32027314820459
Iteration: 6, Func. Count: 54, Neg. LLF: 112.65764466246887
Iteration: 7, Func. Count: 63, Neg. LLF: 112.37256232424323
Iteration: 8, Func. Count: 71, Neg. LLF: 112.19648849473005
Iteration: 9, Func. Count: 79, Neg. LLF: 112.16723882214383
Iteration: 10, Func. Count: 87, Neg. LLF: 112.156250647804
Iteration: 11, Func. Count: 95, Neg. LLF: 112.15457383172642
Iteration: 12, Func. Count: 103, Neg. LLF: 112.15453968717055
Iteration: 13, Func. Count: 110, Neg. LLF: 112.15453970409395
Optimization terminated successfully (Exit mode 0)
Current function value: 112.15453968717055
Iterations: 13
Function evaluations: 110
Gradient evaluations: 13
Iteration: 1, Func. Count: 6, Neg. LLF: 118.93252599718771
Iteration: 2, Func. Count: 12, Neg. LLF: 118.02125348111176
Iteration: 3, Func. Count: 18, Neg. LLF: 115.45008470711484
Iteration: 4, Func. Count: 23, Neg. LLF: 115.30905677422943
Iteration: 5, Func. Count: 28, Neg. LLF: 115.29198412864979
Iteration: 6, Func. Count: 33, Neg. LLF: 115.28795497992806
Iteration: 7, Func. Count: 38, Neg. LLF: 115.28566512817464
Iteration: 8, Func. Count: 43, Neg. LLF: 115.28301671779829
Iteration: 9, Func. Count: 48, Neg. LLF: 115.28282395044292
Iteration: 10, Func. Count: 53, Neg. LLF: 115.28280766451074
Iteration: 11, Func. Count: 57, Neg. LLF: 115.28280766451178
Optimization terminated successfully (Exit mode 0)
Current function value: 115.28280766451074
Iterations: 11
Function evaluations: 57
Gradient evaluations: 11
Iteration: 1, Func. Count: 7, Neg. LLF: 35757772.5659753
Iteration: 2, Func. Count: 15, Neg. LLF: 143.6974373071152
Iteration: 3, Func. Count: 23, Neg. LLF: 123.7272031358873
Iteration: 4, Func. Count: 30, Neg. LLF: 136.42247676047498
Iteration: 5, Func. Count: 37, Neg. LLF: 122.94589841615459
Iteration: 6, Func. Count: 44, Neg. LLF: 113.1656947576489
Iteration: 7, Func. Count: 51, Neg. LLF: 115.047685393161
Iteration: 8, Func. Count: 58, Neg. LLF: 112.27420565555636
Iteration: 9, Func. Count: 64, Neg. LLF: 112.1836459981787
Iteration: 10, Func. Count: 70, Neg. LLF: 112.1549244353095
Iteration: 11, Func. Count: 76, Neg. LLF: 112.14938305820618
Iteration: 12, Func. Count: 82, Neg. LLF: 112.14924079278559
Iteration: 13, Func. Count: 88, Neg. LLF: 112.14922156943746
Iteration: 14, Func. Count: 94, Neg. LLF: 112.14921647479824
Iteration: 15, Func. Count: 99, Neg. LLF: 112.14921647477536
Optimization terminated successfully (Exit mode 0)
Current function value: 112.14921647479824
Iterations: 15
Function evaluations: 99
Gradient evaluations: 15
Iteration: 1, Func. Count: 8, Neg. LLF: 43513791.92451518
Iteration: 2, Func. Count: 17, Neg. LLF: 132.96761971052476
Iteration: 3, Func. Count: 26, Neg. LLF: 121.20551161453412
Iteration: 4, Func. Count: 34, Neg. LLF: 112.82402864697507
Iteration: 5, Func. Count: 42, Neg. LLF: 112.2959049017837
Iteration: 6, Func. Count: 50, Neg. LLF: 111.83426438591523
Iteration: 7, Func. Count: 57, Neg. LLF: 111.78748729559663
Iteration: 8, Func. Count: 64, Neg. LLF: 111.67053186487327
Iteration: 9, Func. Count: 71, Neg. LLF: 111.6060935495835
Iteration: 10, Func. Count: 78, Neg. LLF: 111.6058504807997
Iteration: 11, Func. Count: 85, Neg. LLF: 111.60583636879088
Iteration: 12, Func. Count: 92, Neg. LLF: 111.60583250223164
Iteration: 13, Func. Count: 98, Neg. LLF: 111.60583250239002
Optimization terminated successfully (Exit mode 0)
Current function value: 111.60583250223164
Iterations: 13
Function evaluations: 98
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 45194682.75410524
Iteration: 2, Func. Count: 19, Neg. LLF: 134.4317111283384
Iteration: 3, Func. Count: 29, Neg. LLF: 113.47318563088817
Iteration: 4, Func. Count: 38, Neg. LLF: 112.36936870703487
Iteration: 5, Func. Count: 46, Neg. LLF: 112.34600004081874
Iteration: 6, Func. Count: 54, Neg. LLF: 112.30095544819842
Iteration: 7, Func. Count: 62, Neg. LLF: 112.23640736917226
Iteration: 8, Func. Count: 70, Neg. LLF: 112.1684845421459
Iteration: 9, Func. Count: 78, Neg. LLF: 112.15613234151607
Iteration: 10, Func. Count: 86, Neg. LLF: 112.15201960461222
Iteration: 11, Func. Count: 94, Neg. LLF: 112.15054518320525
Iteration: 12, Func. Count: 102, Neg. LLF: 112.14987078796976
Iteration: 13, Func. Count: 110, Neg. LLF: 112.14922288973654
Iteration: 14, Func. Count: 118, Neg. LLF: 112.14921666252218
Iteration: 15, Func. Count: 125, Neg. LLF: 112.14921667551177
Optimization terminated successfully (Exit mode 0)
Current function value: 112.14921666252218
Iterations: 15
Function evaluations: 125
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 44650800.48349057
Iteration: 2, Func. Count: 20, Neg. LLF: 581.0101463605693
Iteration: 3, Func. Count: 31, Neg. LLF: 113.31710388209041
Iteration: 4, Func. Count: 41, Neg. LLF: 112.74959297066891
Iteration: 5, Func. Count: 51, Neg. LLF: 111.81784227350322
Iteration: 6, Func. Count: 60, Neg. LLF: 111.5126227750164
Iteration: 7, Func. Count: 69, Neg. LLF: 111.33707321965487
Iteration: 8, Func. Count: 78, Neg. LLF: 111.26072403335985
Iteration: 9, Func. Count: 87, Neg. LLF: 111.2579458356607
Iteration: 10, Func. Count: 96, Neg. LLF: 111.25751764720815
Iteration: 11, Func. Count: 105, Neg. LLF: 111.25738488960508
Iteration: 12, Func. Count: 114, Neg. LLF: 111.25738125191927
Iteration: 13, Func. Count: 122, Neg. LLF: 111.25738125205145
Optimization terminated successfully (Exit mode 0)
Current function value: 111.25738125191927
Iterations: 13
Function evaluations: 122
Gradient evaluations: 13
Iteration: 1, Func. Count: 7, Neg. LLF: 118.02685361856402
Iteration: 2, Func. Count: 14, Neg. LLF: 119.12044238384894
Iteration: 3, Func. Count: 21, Neg. LLF: 115.70806378655043
Iteration: 4, Func. Count: 27, Neg. LLF: 115.60395856795625
Iteration: 5, Func. Count: 33, Neg. LLF: 115.5953843038583
Iteration: 6, Func. Count: 39, Neg. LLF: 115.59474473137655
Iteration: 7, Func. Count: 45, Neg. LLF: 115.59395928953553
Iteration: 8, Func. Count: 51, Neg. LLF: 115.59391938485412
Iteration: 9, Func. Count: 57, Neg. LLF: 115.59391840552671
Optimization terminated successfully (Exit mode 0)
Current function value: 115.59391840552671
Iterations: 9
Function evaluations: 57
Gradient evaluations: 9
Iteration: 1, Func. Count: 8, Neg. LLF: 35683807.24668648
Iteration: 2, Func. Count: 17, Neg. LLF: 138.72521655251984
Iteration: 3, Func. Count: 26, Neg. LLF: 116.4852912651461
Iteration: 4, Func. Count: 34, Neg. LLF: 132.7063757242072
Iteration: 5, Func. Count: 42, Neg. LLF: 112.63771322761592
Iteration: 6, Func. Count: 50, Neg. LLF: 112.43957218040629
Iteration: 7, Func. Count: 58, Neg. LLF: 112.22652035207368
Iteration: 8, Func. Count: 66, Neg. LLF: 112.06589462475128
Iteration: 9, Func. Count: 73, Neg. LLF: 112.06477389703171
Iteration: 10, Func. Count: 80, Neg. LLF: 112.06481130467114
Iteration: 11, Func. Count: 88, Neg. LLF: 112.06463966112528
Iteration: 12, Func. Count: 95, Neg. LLF: 112.06463576531898
Iteration: 13, Func. Count: 101, Neg. LLF: 112.06463576528921
Optimization terminated successfully (Exit mode 0)
Current function value: 112.06463576531898
Iterations: 13
Function evaluations: 101
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 42247930.03748263
Iteration: 2, Func. Count: 19, Neg. LLF: 131.48450250264705
Iteration: 3, Func. Count: 29, Neg. LLF: 115.05806497794998
Iteration: 4, Func. Count: 38, Neg. LLF: 112.41562870190513
Iteration: 5, Func. Count: 46, Neg. LLF: 112.43887774607693
Iteration: 6, Func. Count: 55, Neg. LLF: 112.81492467233045
Iteration: 7, Func. Count: 64, Neg. LLF: 112.25275793108375
Iteration: 8, Func. Count: 73, Neg. LLF: 112.0766343571915
Iteration: 9, Func. Count: 81, Neg. LLF: 112.06705193963887
Iteration: 10, Func. Count: 89, Neg. LLF: 112.06465957978766
Iteration: 11, Func. Count: 97, Neg. LLF: 112.06463929531756
Iteration: 12, Func. Count: 105, Neg. LLF: 112.0646357755359
Iteration: 13, Func. Count: 112, Neg. LLF: 112.06463578295258
Optimization terminated successfully (Exit mode 0)
Current function value: 112.0646357755359
Iterations: 13
Function evaluations: 112
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 44152993.49048716
Iteration: 2, Func. Count: 21, Neg. LLF: 114.42056333051123
Iteration: 3, Func. Count: 31, Neg. LLF: 115.29823379497164
Iteration: 4, Func. Count: 41, Neg. LLF: 112.31804015757238
Iteration: 5, Func. Count: 50, Neg. LLF: 112.47823330275719
Iteration: 6, Func. Count: 60, Neg. LLF: 112.24224618251736
Iteration: 7, Func. Count: 69, Neg. LLF: 112.15321495781176
Iteration: 8, Func. Count: 78, Neg. LLF: 112.13580921239996
Iteration: 9, Func. Count: 87, Neg. LLF: 112.08526004470896
Iteration: 10, Func. Count: 96, Neg. LLF: 112.06971820838748
Iteration: 11, Func. Count: 105, Neg. LLF: 112.06496911021351
Iteration: 12, Func. Count: 114, Neg. LLF: 112.06470558561921
Iteration: 13, Func. Count: 123, Neg. LLF: 112.06463838313732
Iteration: 14, Func. Count: 132, Neg. LLF: 112.06463589935069
Iteration: 15, Func. Count: 140, Neg. LLF: 112.06463591261995
Optimization terminated successfully (Exit mode 0)
Current function value: 112.06463589935069
Iterations: 15
Function evaluations: 140
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 43819840.924404874
Iteration: 2, Func. Count: 22, Neg. LLF: 612.5550724159996
Iteration: 3, Func. Count: 34, Neg. LLF: 113.31140092934329
Iteration: 4, Func. Count: 45, Neg. LLF: 112.62015388407647
Iteration: 5, Func. Count: 55, Neg. LLF: 113.55847139900469
Iteration: 6, Func. Count: 66, Neg. LLF: 112.94683291970561
Iteration: 7, Func. Count: 77, Neg. LLF: 112.18146545237315
Iteration: 8, Func. Count: 87, Neg. LLF: 112.16650145451572
Iteration: 9, Func. Count: 98, Neg. LLF: 112.18422788860813
Iteration: 10, Func. Count: 109, Neg. LLF: 112.38727580721925
Iteration: 11, Func. Count: 120, Neg. LLF: 112.06486009065891
Iteration: 12, Func. Count: 130, Neg. LLF: 112.06463886763625
Iteration: 13, Func. Count: 140, Neg. LLF: 112.06463610377885
Iteration: 14, Func. Count: 149, Neg. LLF: 112.06463612888562
Optimization terminated successfully (Exit mode 0)
Current function value: 112.06463610377885
Iterations: 14
Function evaluations: 149
Gradient evaluations: 14
Iteration: 1, Func. Count: 8, Neg. LLF: 116.6264138744021
Iteration: 2, Func. Count: 16, Neg. LLF: 134.98722750802827
Iteration: 3, Func. Count: 24, Neg. LLF: 114.22432036395578
Iteration: 4, Func. Count: 31, Neg. LLF: 115.3672318365156
Iteration: 5, Func. Count: 39, Neg. LLF: 114.16051372960153
Iteration: 6, Func. Count: 46, Neg. LLF: 114.10829508786102
Iteration: 7, Func. Count: 53, Neg. LLF: 114.10301318381426
Iteration: 8, Func. Count: 60, Neg. LLF: 114.10079062239878
Iteration: 9, Func. Count: 67, Neg. LLF: 114.09773365944976
Iteration: 10, Func. Count: 74, Neg. LLF: 114.09767830492589
Iteration: 11, Func. Count: 81, Neg. LLF: 114.09766429506945
Iteration: 12, Func. Count: 88, Neg. LLF: 114.097661292951
Iteration: 13, Func. Count: 94, Neg. LLF: 114.09766129295596
Optimization terminated successfully (Exit mode 0)
Current function value: 114.097661292951
Iterations: 13
Function evaluations: 94
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 36658640.04429516
Iteration: 2, Func. Count: 19, Neg. LLF: 134.46599297363463
Iteration: 3, Func. Count: 28, Neg. LLF: 114.33086754070045
Iteration: 4, Func. Count: 37, Neg. LLF: 114.9410509633366
Iteration: 5, Func. Count: 46, Neg. LLF: 112.53227145099478
Iteration: 6, Func. Count: 55, Neg. LLF: 112.1989404163686
Iteration: 7, Func. Count: 64, Neg. LLF: 112.0677982747328
Iteration: 8, Func. Count: 73, Neg. LLF: 111.9315375985371
Iteration: 9, Func. Count: 81, Neg. LLF: 111.92700367291
Iteration: 10, Func. Count: 89, Neg. LLF: 111.92689235296692
Iteration: 11, Func. Count: 97, Neg. LLF: 111.92688997666647
Iteration: 12, Func. Count: 104, Neg. LLF: 111.92688997672947
Optimization terminated successfully (Exit mode 0)
Current function value: 111.92688997666647
Iterations: 12
Function evaluations: 104
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 43385381.28301896
Iteration: 2, Func. Count: 21, Neg. LLF: 117.90334674035796
Iteration: 3, Func. Count: 31, Neg. LLF: 121.34187274663226
Iteration: 4, Func. Count: 41, Neg. LLF: 113.34397724056906
Iteration: 5, Func. Count: 51, Neg. LLF: 111.51860399091065
Iteration: 6, Func. Count: 60, Neg. LLF: 112.76279850376947
Iteration: 7, Func. Count: 71, Neg. LLF: 112.16723201208606
Iteration: 8, Func. Count: 81, Neg. LLF: 111.36700103011215
Iteration: 9, Func. Count: 90, Neg. LLF: 111.3445667621921
Iteration: 10, Func. Count: 99, Neg. LLF: 111.34294701673318
Iteration: 11, Func. Count: 108, Neg. LLF: 111.33889825355396
Iteration: 12, Func. Count: 117, Neg. LLF: 111.33860099891066
Iteration: 13, Func. Count: 126, Neg. LLF: 111.33856091549
Iteration: 14, Func. Count: 135, Neg. LLF: 111.33855934285826
Iteration: 15, Func. Count: 143, Neg. LLF: 111.33855934299754
Optimization terminated successfully (Exit mode 0)
Current function value: 111.33855934285826
Iterations: 15
Function evaluations: 143
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 44904902.24701772
Iteration: 2, Func. Count: 23, Neg. LLF: 170.2579307810981
Iteration: 3, Func. Count: 35, Neg. LLF: 112.6462415186338
Iteration: 4, Func. Count: 46, Neg. LLF: 117.6383574092057
Iteration: 5, Func. Count: 57, Neg. LLF: 111.66675949811966
Iteration: 6, Func. Count: 67, Neg. LLF: 112.05920588839217
Iteration: 7, Func. Count: 78, Neg. LLF: 113.31791728572833
Iteration: 8, Func. Count: 89, Neg. LLF: 111.33578355951722
Iteration: 9, Func. Count: 99, Neg. LLF: 111.30432332480532
Iteration: 10, Func. Count: 109, Neg. LLF: 111.27866645674169
Iteration: 11, Func. Count: 119, Neg. LLF: 111.27459659932386
Iteration: 12, Func. Count: 129, Neg. LLF: 111.27131558944866
Iteration: 13, Func. Count: 139, Neg. LLF: 111.26971364690826
Iteration: 14, Func. Count: 149, Neg. LLF: 111.26929938946449
Iteration: 15, Func. Count: 159, Neg. LLF: 111.26926615783265
Iteration: 16, Func. Count: 169, Neg. LLF: 111.26926341098576
Iteration: 17, Func. Count: 178, Neg. LLF: 111.26926341079317
Optimization terminated successfully (Exit mode 0)
Current function value: 111.26926341098576
Iterations: 17
Function evaluations: 178
Gradient evaluations: 17
Iteration: 1, Func. Count: 12, Neg. LLF: 45023943.88208965
Iteration: 2, Func. Count: 24, Neg. LLF: 283.09711068762965
Iteration: 3, Func. Count: 37, Neg. LLF: 142.11557184718265
Iteration: 4, Func. Count: 49, Neg. LLF: 112.60779352332072
Iteration: 5, Func. Count: 61, Neg. LLF: 111.57489421187714
Iteration: 6, Func. Count: 72, Neg. LLF: 111.55435621188161
Iteration: 7, Func. Count: 84, Neg. LLF: 111.39019760771993
Iteration: 8, Func. Count: 96, Neg. LLF: 111.29844782562348
Iteration: 9, Func. Count: 107, Neg. LLF: 111.31019796823327
Iteration: 10, Func. Count: 119, Neg. LLF: 111.30313028300621
Iteration: 11, Func. Count: 131, Neg. LLF: 111.26942071349045
Iteration: 12, Func. Count: 142, Neg. LLF: 111.26926648789316
Iteration: 13, Func. Count: 153, Neg. LLF: 111.26926386213783
Iteration: 14, Func. Count: 164, Neg. LLF: 111.2692628331312
Iteration: 15, Func. Count: 174, Neg. LLF: 111.26926285969952
Optimization terminated successfully (Exit mode 0)
Current function value: 111.2692628331312
Iterations: 15
Function evaluations: 174
Gradient evaluations: 15
Iteration: 1, Func. Count: 9, Neg. LLF: 116.93985094156344
Iteration: 2, Func. Count: 18, Neg. LLF: 140.407008526217
Iteration: 3, Func. Count: 27, Neg. LLF: 114.23279374452967
Iteration: 4, Func. Count: 35, Neg. LLF: 115.2734554995967
Iteration: 5, Func. Count: 44, Neg. LLF: 114.18644607249834
Iteration: 6, Func. Count: 53, Neg. LLF: 114.10629122119178
Iteration: 7, Func. Count: 61, Neg. LLF: 114.09893358901826
Iteration: 8, Func. Count: 69, Neg. LLF: 114.09812369679165
Iteration: 9, Func. Count: 77, Neg. LLF: 114.09768837129668
Iteration: 10, Func. Count: 85, Neg. LLF: 114.0976652631466
Iteration: 11, Func. Count: 93, Neg. LLF: 114.09766127120949
Iteration: 12, Func. Count: 100, Neg. LLF: 114.09766131920219
Optimization terminated successfully (Exit mode 0)
Current function value: 114.09766127120949
Iterations: 12
Function evaluations: 100
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 37091159.348333105
Iteration: 2, Func. Count: 21, Neg. LLF: 130.53674315953242
Iteration: 3, Func. Count: 31, Neg. LLF: 114.20955045209755
Iteration: 4, Func. Count: 41, Neg. LLF: 112.5404484558741
Iteration: 5, Func. Count: 51, Neg. LLF: 112.48787243047815
Iteration: 6, Func. Count: 61, Neg. LLF: 111.95580680263701
Iteration: 7, Func. Count: 70, Neg. LLF: 113.32980608304582
Iteration: 8, Func. Count: 81, Neg. LLF: 111.927291452856
Iteration: 9, Func. Count: 90, Neg. LLF: 111.92691663458878
Iteration: 10, Func. Count: 99, Neg. LLF: 111.92689053695648
Iteration: 11, Func. Count: 108, Neg. LLF: 111.92688994445447
Optimization terminated successfully (Exit mode 0)
Current function value: 111.92688994445447
Iterations: 11
Function evaluations: 108
Gradient evaluations: 11
Iteration: 1, Func. Count: 11, Neg. LLF: 42942316.25287762
Iteration: 2, Func. Count: 23, Neg. LLF: 121.30834889624778
Iteration: 3, Func. Count: 34, Neg. LLF: 111.58724612640222
Iteration: 4, Func. Count: 44, Neg. LLF: 155.38301688939868
Iteration: 5, Func. Count: 56, Neg. LLF: 111.39417769804892
Iteration: 6, Func. Count: 66, Neg. LLF: 111.8658102380552
Iteration: 7, Func. Count: 77, Neg. LLF: 111.49718997680068
Iteration: 8, Func. Count: 88, Neg. LLF: 111.3413567264174
Iteration: 9, Func. Count: 98, Neg. LLF: 111.33916974614039
Iteration: 10, Func. Count: 108, Neg. LLF: 111.3388087351635
Iteration: 11, Func. Count: 118, Neg. LLF: 111.33857319580247
Iteration: 12, Func. Count: 128, Neg. LLF: 111.3385595547257
Iteration: 13, Func. Count: 137, Neg. LLF: 111.33855955470096
Optimization terminated successfully (Exit mode 0)
Current function value: 111.3385595547257
Iterations: 13
Function evaluations: 137
Gradient evaluations: 13
Iteration: 1, Func. Count: 12, Neg. LLF: 44455654.03701113
Iteration: 2, Func. Count: 25, Neg. LLF: 143.494468872339
Iteration: 3, Func. Count: 38, Neg. LLF: 125.04331874879252
Iteration: 4, Func. Count: 50, Neg. LLF: 112.06121469833998
Iteration: 5, Func. Count: 61, Neg. LLF: 111.92879464103619
Iteration: 6, Func. Count: 72, Neg. LLF: 111.72098946091162
Iteration: 7, Func. Count: 83, Neg. LLF: 111.59710566259922
Iteration: 8, Func. Count: 95, Neg. LLF: 111.2896802010957
Iteration: 9, Func. Count: 106, Neg. LLF: 111.28331610260246
Iteration: 10, Func. Count: 117, Neg. LLF: 111.27125174576273
Iteration: 11, Func. Count: 128, Neg. LLF: 111.27016570766044
Iteration: 12, Func. Count: 139, Neg. LLF: 111.26948000879716
Iteration: 13, Func. Count: 150, Neg. LLF: 111.26929597106398
Iteration: 14, Func. Count: 161, Neg. LLF: 111.26926452801581
Iteration: 15, Func. Count: 172, Neg. LLF: 111.26926284751148
Iteration: 16, Func. Count: 182, Neg. LLF: 111.26926284747746
Optimization terminated successfully (Exit mode 0)
Current function value: 111.26926284751148
Iterations: 16
Function evaluations: 182
Gradient evaluations: 16
Iteration: 1, Func. Count: 13, Neg. LLF: 25405691.710561436
Iteration: 2, Func. Count: 26, Neg. LLF: 215.1360888987386
Iteration: 3, Func. Count: 39, Neg. LLF: 118.96187824378893
Iteration: 4, Func. Count: 52, Neg. LLF: 117.07406604914675
Iteration: 5, Func. Count: 65, Neg. LLF: 112.55455621879942
Iteration: 6, Func. Count: 78, Neg. LLF: 112.95505805082539
Iteration: 7, Func. Count: 91, Neg. LLF: 112.32523669226632
Iteration: 8, Func. Count: 104, Neg. LLF: 111.4391544480995
Iteration: 9, Func. Count: 116, Neg. LLF: 112.42118559248011
Iteration: 10, Func. Count: 129, Neg. LLF: 111.59980899804079
Iteration: 11, Func. Count: 142, Neg. LLF: 111.28866534491029
Iteration: 12, Func. Count: 154, Neg. LLF: 111.28154143916183
Iteration: 13, Func. Count: 166, Neg. LLF: 111.270389522188
Iteration: 14, Func. Count: 178, Neg. LLF: 111.26943816909966
Iteration: 15, Func. Count: 190, Neg. LLF: 111.26930422592295
Iteration: 16, Func. Count: 202, Neg. LLF: 111.2692633565811
Iteration: 17, Func. Count: 213, Neg. LLF: 111.2692633833843
Optimization terminated successfully (Exit mode 0)
Current function value: 111.2692633565811
Iterations: 17
Function evaluations: 213
Gradient evaluations: 17
Iteration: 1, Func. Count: 6, Neg. LLF: 120.42744319166302
Iteration: 2, Func. Count: 12, Neg. LLF: 125.3702926138033
Iteration: 3, Func. Count: 18, Neg. LLF: 115.42790996226967
Iteration: 4, Func. Count: 23, Neg. LLF: 115.25737333965168
Iteration: 5, Func. Count: 28, Neg. LLF: 115.22978946913092
Iteration: 6, Func. Count: 33, Neg. LLF: 115.2265040526149
Iteration: 7, Func. Count: 38, Neg. LLF: 115.22647167225621
Iteration: 8, Func. Count: 43, Neg. LLF: 115.22647094451627
Optimization terminated successfully (Exit mode 0)
Current function value: 115.22647094451627
Iterations: 8
Function evaluations: 43
Gradient evaluations: 8
Iteration: 1, Func. Count: 7, Neg. LLF: 19457112.96956296
Iteration: 2, Func. Count: 14, Neg. LLF: 2076.7510105194124
Iteration: 3, Func. Count: 22, Neg. LLF: 2539.1493638304178
Iteration: 4, Func. Count: 29, Neg. LLF: 115.57029449725772
Iteration: 5, Func. Count: 36, Neg. LLF: 151.40383569300806
Iteration: 6, Func. Count: 43, Neg. LLF: 116.18169748315947
Iteration: 7, Func. Count: 50, Neg. LLF: 113.1298898488259
Iteration: 8, Func. Count: 57, Neg. LLF: 115.40391829266878
Iteration: 9, Func. Count: 64, Neg. LLF: 112.29731349690894
Iteration: 10, Func. Count: 70, Neg. LLF: 112.16677095757215
Iteration: 11, Func. Count: 76, Neg. LLF: 112.24815394087709
Iteration: 12, Func. Count: 83, Neg. LLF: 112.15468947642529
Iteration: 13, Func. Count: 89, Neg. LLF: 112.15454499504338
Iteration: 14, Func. Count: 95, Neg. LLF: 112.15453942044554
Iteration: 15, Func. Count: 100, Neg. LLF: 112.1545394204433
Optimization terminated successfully (Exit mode 0)
Current function value: 112.15453942044554
Iterations: 15
Function evaluations: 100
Gradient evaluations: 15
Iteration: 1, Func. Count: 8, Neg. LLF: 19432964.389532596
Iteration: 2, Func. Count: 16, Neg. LLF: 524.6522862762293
Iteration: 3, Func. Count: 24, Neg. LLF: 336.6158307678776
Iteration: 4, Func. Count: 32, Neg. LLF: 145.24431524814835
Iteration: 5, Func. Count: 40, Neg. LLF: 116.35283295577102
Iteration: 6, Func. Count: 48, Neg. LLF: 113.00834410683028
Iteration: 7, Func. Count: 56, Neg. LLF: 112.53983654206576
Iteration: 8, Func. Count: 64, Neg. LLF: 112.15914525944964
Iteration: 9, Func. Count: 71, Neg. LLF: 112.15575140781392
Iteration: 10, Func. Count: 78, Neg. LLF: 112.15592778399441
Iteration: 11, Func. Count: 86, Neg. LLF: 112.15454341207207
Iteration: 12, Func. Count: 93, Neg. LLF: 112.15453944728354
Iteration: 13, Func. Count: 99, Neg. LLF: 112.15453945327829
Optimization terminated successfully (Exit mode 0)
Current function value: 112.15453944728354
Iterations: 13
Function evaluations: 99
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 19435868.10133008
Iteration: 2, Func. Count: 18, Neg. LLF: 356.5059471489696
Iteration: 3, Func. Count: 27, Neg. LLF: 324.2444426424257
Iteration: 4, Func. Count: 36, Neg. LLF: 202.38689460781902
Iteration: 5, Func. Count: 45, Neg. LLF: 113.9135609868388
Iteration: 6, Func. Count: 54, Neg. LLF: 112.83200173089134
Iteration: 7, Func. Count: 63, Neg. LLF: 112.37731806582569
Iteration: 8, Func. Count: 72, Neg. LLF: 112.15573508306903
Iteration: 9, Func. Count: 80, Neg. LLF: 112.1552397703381
Iteration: 10, Func. Count: 88, Neg. LLF: 112.15455639944672
Iteration: 11, Func. Count: 96, Neg. LLF: 112.15454334272806
Iteration: 12, Func. Count: 104, Neg. LLF: 112.15453975091184
Iteration: 13, Func. Count: 111, Neg. LLF: 112.15453976230452
Optimization terminated successfully (Exit mode 0)
Current function value: 112.15453975091184
Iterations: 13
Function evaluations: 111
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 19447110.43460865
Iteration: 2, Func. Count: 20, Neg. LLF: 457.0098199188082
Iteration: 3, Func. Count: 30, Neg. LLF: 590.6752395020856
Iteration: 4, Func. Count: 40, Neg. LLF: 328.0313513805642
Iteration: 5, Func. Count: 50, Neg. LLF: 113.19118994237225
Iteration: 6, Func. Count: 60, Neg. LLF: 112.5419223424006
Iteration: 7, Func. Count: 70, Neg. LLF: 112.38472488384826
Iteration: 8, Func. Count: 80, Neg. LLF: 112.15855526574268
Iteration: 9, Func. Count: 89, Neg. LLF: 112.15518763528955
Iteration: 10, Func. Count: 98, Neg. LLF: 112.15456776226551
Iteration: 11, Func. Count: 107, Neg. LLF: 112.15455319043497
Iteration: 12, Func. Count: 116, Neg. LLF: 112.15453942038825
Iteration: 13, Func. Count: 124, Neg. LLF: 112.15453943751943
Optimization terminated successfully (Exit mode 0)
Current function value: 112.15453942038825
Iterations: 13
Function evaluations: 124
Gradient evaluations: 13
Iteration: 1, Func. Count: 7, Neg. LLF: 118.22105284802123
Iteration: 2, Func. Count: 14, Neg. LLF: 115.36092912921195
Iteration: 3, Func. Count: 20, Neg. LLF: 116.0362333884803
Iteration: 4, Func. Count: 27, Neg. LLF: 115.6172043889024
Iteration: 5, Func. Count: 34, Neg. LLF: 115.22650592691122
Iteration: 6, Func. Count: 40, Neg. LLF: 115.2264710060554
Iteration: 7, Func. Count: 45, Neg. LLF: 115.2264710114602
Optimization terminated successfully (Exit mode 0)
Current function value: 115.2264710060554
Iterations: 7
Function evaluations: 45
Gradient evaluations: 7
Iteration: 1, Func. Count: 8, Neg. LLF: 36218017.81618016
Iteration: 2, Func. Count: 17, Neg. LLF: 143.47651776768063
Iteration: 3, Func. Count: 26, Neg. LLF: 121.69939669910002
Iteration: 4, Func. Count: 34, Neg. LLF: 136.5709072110199
Iteration: 5, Func. Count: 42, Neg. LLF: 121.40367628739732
Iteration: 6, Func. Count: 50, Neg. LLF: 113.10908057584233
Iteration: 7, Func. Count: 58, Neg. LLF: 115.36599495154539
Iteration: 8, Func. Count: 66, Neg. LLF: 112.2719221655055
Iteration: 9, Func. Count: 73, Neg. LLF: 112.17911492242116
Iteration: 10, Func. Count: 80, Neg. LLF: 112.154746264958
Iteration: 11, Func. Count: 87, Neg. LLF: 112.14933065000106
Iteration: 12, Func. Count: 94, Neg. LLF: 112.14922324115004
Iteration: 13, Func. Count: 101, Neg. LLF: 112.14921721092598
Iteration: 14, Func. Count: 108, Neg. LLF: 112.14921671493704
Optimization terminated successfully (Exit mode 0)
Current function value: 112.14921671493704
Iterations: 14
Function evaluations: 108
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 43722530.224802755
Iteration: 2, Func. Count: 19, Neg. LLF: 132.322694610042
Iteration: 3, Func. Count: 29, Neg. LLF: 121.02956200266074
Iteration: 4, Func. Count: 38, Neg. LLF: 112.78344915776304
Iteration: 5, Func. Count: 47, Neg. LLF: 112.3446690016362
Iteration: 6, Func. Count: 56, Neg. LLF: 111.8895798785656
Iteration: 7, Func. Count: 64, Neg. LLF: 112.63982346111789
Iteration: 8, Func. Count: 74, Neg. LLF: 112.58347167742632
Iteration: 9, Func. Count: 83, Neg. LLF: 111.65029120522699
Iteration: 10, Func. Count: 91, Neg. LLF: 111.6264881491924
Iteration: 11, Func. Count: 99, Neg. LLF: 111.6085800125868
Iteration: 12, Func. Count: 107, Neg. LLF: 111.60650877388156
Iteration: 13, Func. Count: 115, Neg. LLF: 111.60587029568524
Iteration: 14, Func. Count: 123, Neg. LLF: 111.60583353757707
Iteration: 15, Func. Count: 131, Neg. LLF: 111.6058323721778
Iteration: 16, Func. Count: 138, Neg. LLF: 111.60583237223274
Optimization terminated successfully (Exit mode 0)
Current function value: 111.6058323721778
Iterations: 16
Function evaluations: 138
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 45385291.21362152
Iteration: 2, Func. Count: 21, Neg. LLF: 133.37599398888997
Iteration: 3, Func. Count: 32, Neg. LLF: 113.55589478385282
Iteration: 4, Func. Count: 42, Neg. LLF: 112.35528154320163
Iteration: 5, Func. Count: 51, Neg. LLF: 112.33030693950651
Iteration: 6, Func. Count: 60, Neg. LLF: 112.22960029616362
Iteration: 7, Func. Count: 69, Neg. LLF: 112.17755167234213
Iteration: 8, Func. Count: 78, Neg. LLF: 112.15677228446197
Iteration: 9, Func. Count: 87, Neg. LLF: 112.149744352749
Iteration: 10, Func. Count: 96, Neg. LLF: 112.14928222665127
Iteration: 11, Func. Count: 105, Neg. LLF: 112.14924338098649
Iteration: 12, Func. Count: 114, Neg. LLF: 112.14921657455676
Iteration: 13, Func. Count: 122, Neg. LLF: 112.14921658767194
Optimization terminated successfully (Exit mode 0)
Current function value: 112.14921657455676
Iterations: 13
Function evaluations: 122
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 44840714.2696674
Iteration: 2, Func. Count: 22, Neg. LLF: 599.0652189485036
Iteration: 3, Func. Count: 34, Neg. LLF: 113.28946064018452
Iteration: 4, Func. Count: 45, Neg. LLF: 112.8460833428036
Iteration: 5, Func. Count: 56, Neg. LLF: 111.73868952099934
Iteration: 6, Func. Count: 66, Neg. LLF: 111.51972556065306
Iteration: 7, Func. Count: 76, Neg. LLF: 111.47538537787183
Iteration: 8, Func. Count: 87, Neg. LLF: 111.06873213767275
Iteration: 9, Func. Count: 97, Neg. LLF: 111.05166788355412
Iteration: 10, Func. Count: 107, Neg. LLF: 111.05084940518509
Iteration: 11, Func. Count: 117, Neg. LLF: 111.05071393726713
Iteration: 12, Func. Count: 127, Neg. LLF: 111.05067773894062
Iteration: 13, Func. Count: 136, Neg. LLF: 111.05067773892995
Optimization terminated successfully (Exit mode 0)
Current function value: 111.05067773894062
Iterations: 13
Function evaluations: 136
Gradient evaluations: 13
Iteration: 1, Func. Count: 8, Neg. LLF: 118.13699772235609
Iteration: 2, Func. Count: 16, Neg. LLF: 116.68936119770396
Iteration: 3, Func. Count: 24, Neg. LLF: 115.27553695600986
Iteration: 4, Func. Count: 31, Neg. LLF: 115.23556899977743
Iteration: 5, Func. Count: 39, Neg. LLF: 115.0642960009134
Iteration: 6, Func. Count: 46, Neg. LLF: 115.00133084724716
Iteration: 7, Func. Count: 53, Neg. LLF: 114.99319123718703
Iteration: 8, Func. Count: 60, Neg. LLF: 114.97222917313792
Iteration: 9, Func. Count: 67, Neg. LLF: 114.96767736929999
Iteration: 10, Func. Count: 74, Neg. LLF: 114.96757434778209
Iteration: 11, Func. Count: 81, Neg. LLF: 114.9675603279007
Iteration: 12, Func. Count: 87, Neg. LLF: 114.96756032789438
Optimization terminated successfully (Exit mode 0)
Current function value: 114.9675603279007
Iterations: 12
Function evaluations: 87
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 36044031.47465272
Iteration: 2, Func. Count: 19, Neg. LLF: 138.38515701250125
Iteration: 3, Func. Count: 29, Neg. LLF: 115.83316563301675
Iteration: 4, Func. Count: 38, Neg. LLF: 132.21261441584244
Iteration: 5, Func. Count: 47, Neg. LLF: 112.50899282968547
Iteration: 6, Func. Count: 55, Neg. LLF: 112.38810244952353
Iteration: 7, Func. Count: 64, Neg. LLF: 113.01725227646438
Iteration: 8, Func. Count: 73, Neg. LLF: 112.09689091790177
Iteration: 9, Func. Count: 82, Neg. LLF: 112.06744248823622
Iteration: 10, Func. Count: 90, Neg. LLF: 112.06471007770472
Iteration: 11, Func. Count: 98, Neg. LLF: 112.06464595920264
Iteration: 12, Func. Count: 106, Neg. LLF: 112.06463593772912
Iteration: 13, Func. Count: 113, Neg. LLF: 112.06463593776624
Optimization terminated successfully (Exit mode 0)
Current function value: 112.06463593772912
Iterations: 13
Function evaluations: 113
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 42335016.23235985
Iteration: 2, Func. Count: 21, Neg. LLF: 131.0168760928386
Iteration: 3, Func. Count: 32, Neg. LLF: 114.92439219193975
Iteration: 4, Func. Count: 42, Neg. LLF: 112.46452246240386
Iteration: 5, Func. Count: 51, Neg. LLF: 112.56025286143597
Iteration: 6, Func. Count: 61, Neg. LLF: 113.60034062246369
Iteration: 7, Func. Count: 71, Neg. LLF: 112.77517781427369
Iteration: 8, Func. Count: 81, Neg. LLF: 112.16799025188524
Iteration: 9, Func. Count: 90, Neg. LLF: 112.07858982995975
Iteration: 10, Func. Count: 99, Neg. LLF: 112.06891853123608
Iteration: 11, Func. Count: 108, Neg. LLF: 112.06494133236123
Iteration: 12, Func. Count: 117, Neg. LLF: 112.06465472124451
Iteration: 13, Func. Count: 126, Neg. LLF: 112.0646364573546
Iteration: 14, Func. Count: 135, Neg. LLF: 112.06463576875285
Optimization terminated successfully (Exit mode 0)
Current function value: 112.06463576875285
Iterations: 14
Function evaluations: 135
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 44222298.78528737
Iteration: 2, Func. Count: 23, Neg. LLF: 123.21427707227417
Iteration: 3, Func. Count: 34, Neg. LLF: 120.12366586140996
Iteration: 4, Func. Count: 45, Neg. LLF: 112.24807376214844
Iteration: 5, Func. Count: 55, Neg. LLF: 112.5188180012201
Iteration: 6, Func. Count: 66, Neg. LLF: 112.16312395711351
Iteration: 7, Func. Count: 76, Neg. LLF: 112.05985321043411
Iteration: 8, Func. Count: 86, Neg. LLF: 111.95114604817206
Iteration: 9, Func. Count: 96, Neg. LLF: 111.8624271210808
Iteration: 10, Func. Count: 106, Neg. LLF: 111.8276930786939
Iteration: 11, Func. Count: 116, Neg. LLF: 111.81842753320277
Iteration: 12, Func. Count: 126, Neg. LLF: 111.81703216778672
Iteration: 13, Func. Count: 136, Neg. LLF: 111.81678284432151
Iteration: 14, Func. Count: 146, Neg. LLF: 111.81675747804258
Iteration: 15, Func. Count: 156, Neg. LLF: 111.81675662865743
Optimization terminated successfully (Exit mode 0)
Current function value: 111.81675662865743
Iterations: 15
Function evaluations: 156
Gradient evaluations: 15
Iteration: 1, Func. Count: 12, Neg. LLF: 43892627.05890247
Iteration: 2, Func. Count: 24, Neg. LLF: 627.3450756210972
Iteration: 3, Func. Count: 37, Neg. LLF: 113.24604185348996
Iteration: 4, Func. Count: 49, Neg. LLF: 112.5645426745674
Iteration: 5, Func. Count: 60, Neg. LLF: 113.0936158398105
Iteration: 6, Func. Count: 72, Neg. LLF: 112.72829415002433
Iteration: 7, Func. Count: 84, Neg. LLF: 112.12607977221151
Iteration: 8, Func. Count: 95, Neg. LLF: 112.09211293252368
Iteration: 9, Func. Count: 106, Neg. LLF: 112.07238097647348
Iteration: 10, Func. Count: 117, Neg. LLF: 112.07281149370131
Iteration: 11, Func. Count: 129, Neg. LLF: 112.06596791193613
Iteration: 12, Func. Count: 141, Neg. LLF: 112.06463903745683
Iteration: 13, Func. Count: 152, Neg. LLF: 112.06463577398733
Iteration: 14, Func. Count: 162, Neg. LLF: 112.06463579926296
Optimization terminated successfully (Exit mode 0)
Current function value: 112.06463577398733
Iterations: 14
Function evaluations: 162
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 118.10972984596143
Iteration: 2, Func. Count: 18, Neg. LLF: 150.32592665967132
Iteration: 3, Func. Count: 27, Neg. LLF: 114.17827645584958
Iteration: 4, Func. Count: 35, Neg. LLF: 116.09084836727146
Iteration: 5, Func. Count: 44, Neg. LLF: 114.1097844298625
Iteration: 6, Func. Count: 52, Neg. LLF: 114.33007649191025
Iteration: 7, Func. Count: 62, Neg. LLF: 114.09629422046253
Iteration: 8, Func. Count: 70, Neg. LLF: 114.09570707437813
Iteration: 9, Func. Count: 78, Neg. LLF: 114.09464211151374
Iteration: 10, Func. Count: 86, Neg. LLF: 114.09459239200747
Iteration: 11, Func. Count: 94, Neg. LLF: 114.09456498645174
Iteration: 12, Func. Count: 102, Neg. LLF: 114.09456287264983
Iteration: 13, Func. Count: 109, Neg. LLF: 114.09456287264898
Optimization terminated successfully (Exit mode 0)
Current function value: 114.09456287264983
Iterations: 13
Function evaluations: 109
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 36971279.4819323
Iteration: 2, Func. Count: 21, Neg. LLF: 134.0745587513501
Iteration: 3, Func. Count: 32, Neg. LLF: 114.04056904685712
Iteration: 4, Func. Count: 42, Neg. LLF: 118.84897907482201
Iteration: 5, Func. Count: 52, Neg. LLF: 112.2726026622575
Iteration: 6, Func. Count: 61, Neg. LLF: 112.08226888604821
Iteration: 7, Func. Count: 70, Neg. LLF: 112.37734367867624
Iteration: 8, Func. Count: 80, Neg. LLF: 111.94363352651078
Iteration: 9, Func. Count: 89, Neg. LLF: 111.93643323243651
Iteration: 10, Func. Count: 98, Neg. LLF: 111.92874452495876
Iteration: 11, Func. Count: 107, Neg. LLF: 111.92724507062682
Iteration: 12, Func. Count: 116, Neg. LLF: 111.926898016126
Iteration: 13, Func. Count: 125, Neg. LLF: 111.92688998155764
Iteration: 14, Func. Count: 133, Neg. LLF: 111.92688998163545
Optimization terminated successfully (Exit mode 0)
Current function value: 111.92688998155764
Iterations: 14
Function evaluations: 133
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 43438871.58698207
Iteration: 2, Func. Count: 23, Neg. LLF: 116.7024311764109
Iteration: 3, Func. Count: 34, Neg. LLF: 117.83320745039688
Iteration: 4, Func. Count: 45, Neg. LLF: 113.34175189813638
Iteration: 5, Func. Count: 56, Neg. LLF: 111.56209987601065
Iteration: 6, Func. Count: 66, Neg. LLF: 112.72516795810512
Iteration: 7, Func. Count: 78, Neg. LLF: 113.96544129404532
Iteration: 8, Func. Count: 90, Neg. LLF: 111.3784829208586
Iteration: 9, Func. Count: 100, Neg. LLF: 111.35075961202251
Iteration: 10, Func. Count: 110, Neg. LLF: 111.34225814379556
Iteration: 11, Func. Count: 120, Neg. LLF: 111.33880813498878
Iteration: 12, Func. Count: 130, Neg. LLF: 111.33858583981129
Iteration: 13, Func. Count: 140, Neg. LLF: 111.33856424705982
Iteration: 14, Func. Count: 150, Neg. LLF: 111.3385596450659
Iteration: 15, Func. Count: 159, Neg. LLF: 111.33855964482989
Optimization terminated successfully (Exit mode 0)
Current function value: 111.3385596450659
Iterations: 15
Function evaluations: 159
Gradient evaluations: 15
Iteration: 1, Func. Count: 12, Neg. LLF: 44963697.07851672
Iteration: 2, Func. Count: 25, Neg. LLF: 199.5444538707124
Iteration: 3, Func. Count: 38, Neg. LLF: 112.11379439928045
Iteration: 4, Func. Count: 49, Neg. LLF: 111.68518844157339
Iteration: 5, Func. Count: 60, Neg. LLF: 114.63935543172805
Iteration: 6, Func. Count: 74, Neg. LLF: 111.38330911228084
Iteration: 7, Func. Count: 85, Neg. LLF: 112.68070077640243
Iteration: 8, Func. Count: 97, Neg. LLF: 111.2711084730301
Iteration: 9, Func. Count: 108, Neg. LLF: 111.26979831192436
Iteration: 10, Func. Count: 119, Neg. LLF: 111.26932943850335
Iteration: 11, Func. Count: 130, Neg. LLF: 111.26929172104265
Iteration: 12, Func. Count: 141, Neg. LLF: 111.2692643716743
Iteration: 13, Func. Count: 152, Neg. LLF: 111.26926303793513
Iteration: 14, Func. Count: 162, Neg. LLF: 111.2692630380614
Optimization terminated successfully (Exit mode 0)
Current function value: 111.26926303793513
Iterations: 14
Function evaluations: 162
Gradient evaluations: 14
Iteration: 1, Func. Count: 13, Neg. LLF: 25671923.127877917
Iteration: 2, Func. Count: 26, Neg. LLF: 324.28921212503474
Iteration: 3, Func. Count: 39, Neg. LLF: 118.99316302871443
Iteration: 4, Func. Count: 52, Neg. LLF: 118.0650936190931
Iteration: 5, Func. Count: 65, Neg. LLF: 113.76246658740203
Iteration: 6, Func. Count: 78, Neg. LLF: 113.1479576022025
Iteration: 7, Func. Count: 91, Neg. LLF: 112.56820571615734
Iteration: 8, Func. Count: 104, Neg. LLF: 112.32848359716975
Iteration: 9, Func. Count: 117, Neg. LLF: 111.40113078450584
Iteration: 10, Func. Count: 129, Neg. LLF: 111.33947253643724
Iteration: 11, Func. Count: 141, Neg. LLF: 111.33732690707843
Iteration: 12, Func. Count: 154, Neg. LLF: 111.28862850688289
Iteration: 13, Func. Count: 166, Neg. LLF: 111.27648327149164
Iteration: 14, Func. Count: 178, Neg. LLF: 111.27263865008936
Iteration: 15, Func. Count: 190, Neg. LLF: 111.2693155912274
Iteration: 16, Func. Count: 202, Neg. LLF: 111.26926430316536
Iteration: 17, Func. Count: 214, Neg. LLF: 111.26926286636737
Iteration: 18, Func. Count: 225, Neg. LLF: 111.26926289294224
Optimization terminated successfully (Exit mode 0)
Current function value: 111.26926286636737
Iterations: 18
Function evaluations: 225
Gradient evaluations: 18
Iteration: 1, Func. Count: 10, Neg. LLF: 118.40873242244396
Iteration: 2, Func. Count: 20, Neg. LLF: 154.18232102627877
Iteration: 3, Func. Count: 30, Neg. LLF: 114.18743774199608
Iteration: 4, Func. Count: 39, Neg. LLF: 116.07775756237376
Iteration: 5, Func. Count: 49, Neg. LLF: 114.11753664938794
Iteration: 6, Func. Count: 58, Neg. LLF: 114.32724557996727
Iteration: 7, Func. Count: 69, Neg. LLF: 114.09673293079884
Iteration: 8, Func. Count: 78, Neg. LLF: 114.0958483585836
Iteration: 9, Func. Count: 87, Neg. LLF: 114.09525861155001
Iteration: 10, Func. Count: 96, Neg. LLF: 114.09465287234474
Iteration: 11, Func. Count: 105, Neg. LLF: 114.09457745462518
Iteration: 12, Func. Count: 114, Neg. LLF: 114.09456518187616
Iteration: 13, Func. Count: 123, Neg. LLF: 114.09456321102941
Iteration: 14, Func. Count: 131, Neg. LLF: 114.0945632587122
Optimization terminated successfully (Exit mode 0)
Current function value: 114.09456321102941
Iterations: 14
Function evaluations: 131
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 37346468.59231883
Iteration: 2, Func. Count: 23, Neg. LLF: 127.06955975888977
Iteration: 3, Func. Count: 34, Neg. LLF: 113.94275058970489
Iteration: 4, Func. Count: 45, Neg. LLF: 113.12079128628834
Iteration: 5, Func. Count: 56, Neg. LLF: 112.50495086204077
Iteration: 6, Func. Count: 67, Neg. LLF: 112.20398716597789
Iteration: 7, Func. Count: 78, Neg. LLF: 111.98665564521211
Iteration: 8, Func. Count: 88, Neg. LLF: 111.93119911423479
Iteration: 9, Func. Count: 98, Neg. LLF: 111.92699486754051
Iteration: 10, Func. Count: 108, Neg. LLF: 111.92689093964586
Iteration: 11, Func. Count: 118, Neg. LLF: 111.92688994787494
Optimization terminated successfully (Exit mode 0)
Current function value: 111.92688994787494
Iterations: 11
Function evaluations: 118
Gradient evaluations: 11
Iteration: 1, Func. Count: 12, Neg. LLF: 42958440.929714315
Iteration: 2, Func. Count: 25, Neg. LLF: 122.23066768954176
Iteration: 3, Func. Count: 37, Neg. LLF: 111.68281671375122
Iteration: 4, Func. Count: 48, Neg. LLF: 118.61913740845152
Iteration: 5, Func. Count: 61, Neg. LLF: 111.46177002044647
Iteration: 6, Func. Count: 72, Neg. LLF: 111.46733218994424
Iteration: 7, Func. Count: 84, Neg. LLF: 111.35129709403239
Iteration: 8, Func. Count: 95, Neg. LLF: 111.34455159156043
Iteration: 9, Func. Count: 106, Neg. LLF: 111.34087936305096
Iteration: 10, Func. Count: 117, Neg. LLF: 111.33858178622275
Iteration: 11, Func. Count: 128, Neg. LLF: 111.33856107427054
Iteration: 12, Func. Count: 139, Neg. LLF: 111.33855936546959
Iteration: 13, Func. Count: 149, Neg. LLF: 111.33855936548095
Optimization terminated successfully (Exit mode 0)
Current function value: 111.33855936546959
Iterations: 13
Function evaluations: 149
Gradient evaluations: 13
Iteration: 1, Func. Count: 13, Neg. LLF: 44475590.43376874
Iteration: 2, Func. Count: 27, Neg. LLF: 157.19493005732048
Iteration: 3, Func. Count: 41, Neg. LLF: 125.2456251304291
Iteration: 4, Func. Count: 54, Neg. LLF: 112.1176124091998
Iteration: 5, Func. Count: 66, Neg. LLF: 112.00333382378348
Iteration: 6, Func. Count: 78, Neg. LLF: 112.00241129954853
Iteration: 7, Func. Count: 91, Neg. LLF: 111.81798927662871
Iteration: 8, Func. Count: 104, Neg. LLF: 114.3335119715794
Iteration: 9, Func. Count: 117, Neg. LLF: 111.40224524775583
Iteration: 10, Func. Count: 129, Neg. LLF: 111.34827003297461
Iteration: 11, Func. Count: 141, Neg. LLF: 111.3269135027024
Iteration: 12, Func. Count: 153, Neg. LLF: 111.30683962167855
Iteration: 13, Func. Count: 165, Neg. LLF: 111.29134173854165
Iteration: 14, Func. Count: 177, Neg. LLF: 111.27515438561076
Iteration: 15, Func. Count: 189, Neg. LLF: 111.27128129185051
Iteration: 16, Func. Count: 201, Neg. LLF: 111.26943349703126
Iteration: 17, Func. Count: 213, Neg. LLF: 111.26927155019735
Iteration: 18, Func. Count: 225, Neg. LLF: 111.26926366179637
Iteration: 19, Func. Count: 237, Neg. LLF: 111.26926292573648
Optimization terminated successfully (Exit mode 0)
Current function value: 111.26926292573648
Iterations: 19
Function evaluations: 237
Gradient evaluations: 19
Iteration: 1, Func. Count: 14, Neg. LLF: 25389830.637796223
Iteration: 2, Func. Count: 28, Neg. LLF: 221.29814521150263
Iteration: 3, Func. Count: 42, Neg. LLF: 118.85016111610719
Iteration: 4, Func. Count: 56, Neg. LLF: 115.93046674029155
Iteration: 5, Func. Count: 70, Neg. LLF: 112.57411952953524
Iteration: 6, Func. Count: 84, Neg. LLF: 112.93364891232461
Iteration: 7, Func. Count: 98, Neg. LLF: 114.05646607362213
Iteration: 8, Func. Count: 112, Neg. LLF: 111.55409625355004
Iteration: 9, Func. Count: 125, Neg. LLF: 112.89229212957198
Iteration: 10, Func. Count: 139, Neg. LLF: 111.92706977102638
Iteration: 11, Func. Count: 153, Neg. LLF: 111.32214454778652
Iteration: 12, Func. Count: 166, Neg. LLF: 111.31101154084784
Iteration: 13, Func. Count: 179, Neg. LLF: 111.29169983403898
Iteration: 14, Func. Count: 192, Neg. LLF: 111.27894845600125
Iteration: 15, Func. Count: 205, Neg. LLF: 111.26956539616712
Iteration: 16, Func. Count: 218, Neg. LLF: 111.26934635072966
Iteration: 17, Func. Count: 231, Neg. LLF: 111.2692882226848
Iteration: 18, Func. Count: 244, Neg. LLF: 111.26926739644139
Iteration: 19, Func. Count: 257, Neg. LLF: 111.26926337908431
Iteration: 20, Func. Count: 269, Neg. LLF: 111.26926340544904
Optimization terminated successfully (Exit mode 0)
Current function value: 111.26926337908431
Iterations: 20
Function evaluations: 269
Gradient evaluations: 20
Iteration: 1, Func. Count: 7, Neg. LLF: 118.31119955911845
Iteration: 2, Func. Count: 14, Neg. LLF: 138.74738497058175
Iteration: 3, Func. Count: 21, Neg. LLF: 133.21078091024862
Iteration: 4, Func. Count: 28, Neg. LLF: 133.61169746469795
Iteration: 5, Func. Count: 35, Neg. LLF: 114.42788282625902
Iteration: 6, Func. Count: 42, Neg. LLF: 113.18584765546878
Iteration: 7, Func. Count: 48, Neg. LLF: 113.1674810445983
Iteration: 8, Func. Count: 54, Neg. LLF: 113.16572241246318
Iteration: 9, Func. Count: 60, Neg. LLF: 113.16528258952746
Iteration: 10, Func. Count: 66, Neg. LLF: 113.16511044161366
Iteration: 11, Func. Count: 72, Neg. LLF: 113.16508555020829
Iteration: 12, Func. Count: 77, Neg. LLF: 113.16508555018794
Optimization terminated successfully (Exit mode 0)
Current function value: 113.16508555020829
Iterations: 12
Function evaluations: 77
Gradient evaluations: 12
Iteration: 1, Func. Count: 8, Neg. LLF: 19462425.491963096
Iteration: 2, Func. Count: 16, Neg. LLF: 4286.999591924144
Iteration: 3, Func. Count: 25, Neg. LLF: 2641.0330631746715
Iteration: 4, Func. Count: 33, Neg. LLF: 115.71353756610307
Iteration: 5, Func. Count: 41, Neg. LLF: 154.18673941379444
Iteration: 6, Func. Count: 49, Neg. LLF: 116.5668049947948
Iteration: 7, Func. Count: 57, Neg. LLF: 113.00805108835442
Iteration: 8, Func. Count: 65, Neg. LLF: 115.38695144208133
Iteration: 9, Func. Count: 73, Neg. LLF: 112.24936311885166
Iteration: 10, Func. Count: 80, Neg. LLF: 112.16105069997802
Iteration: 11, Func. Count: 87, Neg. LLF: 112.28933724865196
Iteration: 12, Func. Count: 95, Neg. LLF: 112.15456295864368
Iteration: 13, Func. Count: 102, Neg. LLF: 112.15453942340248
Iteration: 14, Func. Count: 108, Neg. LLF: 112.15453942344553
Optimization terminated successfully (Exit mode 0)
Current function value: 112.15453942340248
Iterations: 14
Function evaluations: 108
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 19435466.572123174
Iteration: 2, Func. Count: 18, Neg. LLF: 681.0929372511744
Iteration: 3, Func. Count: 28, Neg. LLF: 313.9728244947742
Iteration: 4, Func. Count: 37, Neg. LLF: 127.75412254860554
Iteration: 5, Func. Count: 46, Neg. LLF: 124.5833423500948
Iteration: 6, Func. Count: 55, Neg. LLF: 113.52901591500569
Iteration: 7, Func. Count: 64, Neg. LLF: 112.6901521687881
Iteration: 8, Func. Count: 73, Neg. LLF: 112.42117503661895
Iteration: 9, Func. Count: 81, Neg. LLF: 112.41507760825921
Iteration: 10, Func. Count: 89, Neg. LLF: 112.40657334578874
Iteration: 11, Func. Count: 97, Neg. LLF: 112.39680525421437
Iteration: 12, Func. Count: 105, Neg. LLF: 112.37984167231399
Iteration: 13, Func. Count: 113, Neg. LLF: 112.36332345564489
Iteration: 14, Func. Count: 121, Neg. LLF: 112.2769953528501
Iteration: 15, Func. Count: 129, Neg. LLF: 112.15501591141731
Iteration: 16, Func. Count: 137, Neg. LLF: 112.16480273421864
Iteration: 17, Func. Count: 147, Neg. LLF: 195.99394624605387
Iteration: 18, Func. Count: 158, Neg. LLF: 112.1628615580644
Iteration: 19, Func. Count: 167, Neg. LLF: 112.15923840751307
Iteration: 20, Func. Count: 176, Neg. LLF: 112.15453946048109
Iteration: 21, Func. Count: 183, Neg. LLF: 112.15453946666031
Optimization terminated successfully (Exit mode 0)
Current function value: 112.15453946048109
Iterations: 22
Function evaluations: 183
Gradient evaluations: 21
Iteration: 1, Func. Count: 10, Neg. LLF: 19441475.69234474
Iteration: 2, Func. Count: 20, Neg. LLF: 344.7564262015687
Iteration: 3, Func. Count: 30, Neg. LLF: 314.70681051974225
Iteration: 4, Func. Count: 40, Neg. LLF: 189.85386282800022
Iteration: 5, Func. Count: 50, Neg. LLF: 113.86831694633095
Iteration: 6, Func. Count: 60, Neg. LLF: 113.00719712589357
Iteration: 7, Func. Count: 70, Neg. LLF: 112.40239079589011
Iteration: 8, Func. Count: 80, Neg. LLF: 112.15888616745495
Iteration: 9, Func. Count: 89, Neg. LLF: 112.15662713571011
Iteration: 10, Func. Count: 98, Neg. LLF: 112.15481791897452
Iteration: 11, Func. Count: 107, Neg. LLF: 112.15462126057906
Iteration: 12, Func. Count: 116, Neg. LLF: 112.15454596526965
Iteration: 13, Func. Count: 125, Neg. LLF: 112.15453947190119
Iteration: 14, Func. Count: 133, Neg. LLF: 112.15453948347785
Optimization terminated successfully (Exit mode 0)
Current function value: 112.15453947190119
Iterations: 14
Function evaluations: 133
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 19410810.760510348
Iteration: 2, Func. Count: 22, Neg. LLF: 319.1509079540936
Iteration: 3, Func. Count: 33, Neg. LLF: 303.54222920228204
Iteration: 4, Func. Count: 44, Neg. LLF: 206.63533697572032
Iteration: 5, Func. Count: 55, Neg. LLF: 113.53044699555441
Iteration: 6, Func. Count: 66, Neg. LLF: 112.88900253076619
Iteration: 7, Func. Count: 77, Neg. LLF: 112.33047819929763
Iteration: 8, Func. Count: 87, Neg. LLF: 112.21160047806958
Iteration: 9, Func. Count: 97, Neg. LLF: 112.16951347230176
Iteration: 10, Func. Count: 107, Neg. LLF: 112.15646703858722
Iteration: 11, Func. Count: 117, Neg. LLF: 112.15460488609075
Iteration: 12, Func. Count: 127, Neg. LLF: 112.15453954556598
Iteration: 13, Func. Count: 136, Neg. LLF: 112.15453956242392
Optimization terminated successfully (Exit mode 0)
Current function value: 112.15453954556598
Iterations: 13
Function evaluations: 136
Gradient evaluations: 13
Iteration: 1, Func. Count: 8, Neg. LLF: 116.46771089720761
Iteration: 2, Func. Count: 16, Neg. LLF: 126.3251834835424
Iteration: 3, Func. Count: 24, Neg. LLF: 157.09011663632464
Iteration: 4, Func. Count: 32, Neg. LLF: 115.04397436446959
Iteration: 5, Func. Count: 40, Neg. LLF: 113.21122453212088
Iteration: 6, Func. Count: 47, Neg. LLF: 113.17571018981728
Iteration: 7, Func. Count: 54, Neg. LLF: 113.316115972315
Iteration: 8, Func. Count: 62, Neg. LLF: 113.16521107374741
Iteration: 9, Func. Count: 69, Neg. LLF: 113.16452470585526
Iteration: 10, Func. Count: 76, Neg. LLF: 113.16450940129626
Iteration: 11, Func. Count: 83, Neg. LLF: 113.16450676926846
Iteration: 12, Func. Count: 90, Neg. LLF: 113.16450595724675
Optimization terminated successfully (Exit mode 0)
Current function value: 113.16450595724675
Iterations: 12
Function evaluations: 90
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 36704700.17182227
Iteration: 2, Func. Count: 19, Neg. LLF: 143.76175356344606
Iteration: 3, Func. Count: 29, Neg. LLF: 123.50480871291273
Iteration: 4, Func. Count: 38, Neg. LLF: 136.13118582713972
Iteration: 5, Func. Count: 47, Neg. LLF: 121.36113712551298
Iteration: 6, Func. Count: 56, Neg. LLF: 113.08361996044482
Iteration: 7, Func. Count: 65, Neg. LLF: 114.74109564226087
Iteration: 8, Func. Count: 74, Neg. LLF: 112.26198747957781
Iteration: 9, Func. Count: 82, Neg. LLF: 112.18448063704037
Iteration: 10, Func. Count: 90, Neg. LLF: 112.1563620655625
Iteration: 11, Func. Count: 98, Neg. LLF: 112.14956992649022
Iteration: 12, Func. Count: 106, Neg. LLF: 112.14925512674016
Iteration: 13, Func. Count: 114, Neg. LLF: 112.14922183037707
Iteration: 14, Func. Count: 122, Neg. LLF: 112.1492165710519
Iteration: 15, Func. Count: 129, Neg. LLF: 112.14921657088415
Optimization terminated successfully (Exit mode 0)
Current function value: 112.1492165710519
Iterations: 15
Function evaluations: 129
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 44250731.51548018
Iteration: 2, Func. Count: 21, Neg. LLF: 132.05564110450356
Iteration: 3, Func. Count: 32, Neg. LLF: 122.55886200083421
Iteration: 4, Func. Count: 42, Neg. LLF: 112.76026085888115
Iteration: 5, Func. Count: 52, Neg. LLF: 112.3149112596228
Iteration: 6, Func. Count: 62, Neg. LLF: 111.87521819604515
Iteration: 7, Func. Count: 71, Neg. LLF: 112.45068508452339
Iteration: 8, Func. Count: 81, Neg. LLF: 112.40304116818426
Iteration: 9, Func. Count: 91, Neg. LLF: 111.6365058165357
Iteration: 10, Func. Count: 100, Neg. LLF: 111.62330304807693
Iteration: 11, Func. Count: 109, Neg. LLF: 111.60892845959293
Iteration: 12, Func. Count: 118, Neg. LLF: 111.60660921728523
Iteration: 13, Func. Count: 127, Neg. LLF: 111.60588810574993
Iteration: 14, Func. Count: 136, Neg. LLF: 111.60583287223444
Iteration: 15, Func. Count: 144, Neg. LLF: 111.60583287242953
Optimization terminated successfully (Exit mode 0)
Current function value: 111.60583287223444
Iterations: 15
Function evaluations: 144
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 45835695.16496487
Iteration: 2, Func. Count: 23, Neg. LLF: 133.04753561612017
Iteration: 3, Func. Count: 35, Neg. LLF: 113.57333445141171
Iteration: 4, Func. Count: 46, Neg. LLF: 112.39098524236209
Iteration: 5, Func. Count: 56, Neg. LLF: 112.38365263967309
Iteration: 6, Func. Count: 67, Neg. LLF: 112.2942071247053
Iteration: 7, Func. Count: 77, Neg. LLF: 112.26494536285175
Iteration: 8, Func. Count: 87, Neg. LLF: 112.20756194803484
Iteration: 9, Func. Count: 97, Neg. LLF: 112.17305754786865
Iteration: 10, Func. Count: 107, Neg. LLF: 112.18083004509636
Iteration: 11, Func. Count: 118, Neg. LLF: 112.1537686226895
Iteration: 12, Func. Count: 129, Neg. LLF: 112.14921967403312
Iteration: 13, Func. Count: 139, Neg. LLF: 112.14921755410042
Iteration: 14, Func. Count: 149, Neg. LLF: 112.14921647139627
Iteration: 15, Func. Count: 158, Neg. LLF: 112.14921648442892
Optimization terminated successfully (Exit mode 0)
Current function value: 112.14921647139627
Iterations: 15
Function evaluations: 158
Gradient evaluations: 15
Iteration: 1, Func. Count: 12, Neg. LLF: 45252934.41005739
Iteration: 2, Func. Count: 24, Neg. LLF: 609.5911225616594
Iteration: 3, Func. Count: 37, Neg. LLF: 113.2734047049451
Iteration: 4, Func. Count: 49, Neg. LLF: 112.80834428006406
Iteration: 5, Func. Count: 61, Neg. LLF: 111.72611591576457
Iteration: 6, Func. Count: 72, Neg. LLF: 111.51694843648549
Iteration: 7, Func. Count: 83, Neg. LLF: 111.4745715080122
Iteration: 8, Func. Count: 95, Neg. LLF: 111.0689197177329
Iteration: 9, Func. Count: 106, Neg. LLF: 111.05442052678312
Iteration: 10, Func. Count: 117, Neg. LLF: 111.05177051429726
Iteration: 11, Func. Count: 128, Neg. LLF: 111.05074074613056
Iteration: 12, Func. Count: 139, Neg. LLF: 111.05068020457985
Iteration: 13, Func. Count: 150, Neg. LLF: 111.05067737910491
Iteration: 14, Func. Count: 160, Neg. LLF: 111.0506773791161
Optimization terminated successfully (Exit mode 0)
Current function value: 111.05067737910491
Iterations: 14
Function evaluations: 160
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 115.92838583375048
Iteration: 2, Func. Count: 18, Neg. LLF: 113.86184135281874
Iteration: 3, Func. Count: 26, Neg. LLF: 116.4384597932763
Iteration: 4, Func. Count: 35, Neg. LLF: 121.88405910403634
Iteration: 5, Func. Count: 45, Neg. LLF: 113.19616083587343
Iteration: 6, Func. Count: 53, Neg. LLF: 113.16824176430634
Iteration: 7, Func. Count: 61, Neg. LLF: 113.16504788548401
Iteration: 8, Func. Count: 69, Neg. LLF: 113.16466572478633
Iteration: 9, Func. Count: 77, Neg. LLF: 113.16451352163794
Iteration: 10, Func. Count: 85, Neg. LLF: 113.16450672926153
Iteration: 11, Func. Count: 93, Neg. LLF: 113.16450599487528
Optimization terminated successfully (Exit mode 0)
Current function value: 113.16450599487528
Iterations: 11
Function evaluations: 93
Gradient evaluations: 11
Iteration: 1, Func. Count: 10, Neg. LLF: 36512304.941144705
Iteration: 2, Func. Count: 21, Neg. LLF: 138.6518727156261
Iteration: 3, Func. Count: 32, Neg. LLF: 116.19484580537875
Iteration: 4, Func. Count: 42, Neg. LLF: 132.7376132038664
Iteration: 5, Func. Count: 52, Neg. LLF: 112.59856565088307
Iteration: 6, Func. Count: 62, Neg. LLF: 112.55405658355677
Iteration: 7, Func. Count: 72, Neg. LLF: 112.19468932159955
Iteration: 8, Func. Count: 82, Neg. LLF: 112.06572629708832
Iteration: 9, Func. Count: 91, Neg. LLF: 112.06552894140806
Iteration: 10, Func. Count: 101, Neg. LLF: 112.06464467963767
Iteration: 11, Func. Count: 110, Neg. LLF: 112.06463648911132
Iteration: 12, Func. Count: 119, Neg. LLF: 112.06463577850079
Optimization terminated successfully (Exit mode 0)
Current function value: 112.06463577850079
Iterations: 12
Function evaluations: 119
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 42825083.448523015
Iteration: 2, Func. Count: 23, Neg. LLF: 130.60954696800076
Iteration: 3, Func. Count: 35, Neg. LLF: 115.05335910687499
Iteration: 4, Func. Count: 46, Neg. LLF: 112.4212561395828
Iteration: 5, Func. Count: 56, Neg. LLF: 112.46472301261343
Iteration: 6, Func. Count: 67, Neg. LLF: 113.03063734619681
Iteration: 7, Func. Count: 78, Neg. LLF: 112.33468204140696
Iteration: 8, Func. Count: 89, Neg. LLF: 112.08483062662658
Iteration: 9, Func. Count: 99, Neg. LLF: 112.06994725414901
Iteration: 10, Func. Count: 109, Neg. LLF: 112.065676599798
Iteration: 11, Func. Count: 119, Neg. LLF: 112.06464366444088
Iteration: 12, Func. Count: 129, Neg. LLF: 112.06463631160389
Iteration: 13, Func. Count: 139, Neg. LLF: 112.06463576485328
Optimization terminated successfully (Exit mode 0)
Current function value: 112.06463576485328
Iterations: 13
Function evaluations: 139
Gradient evaluations: 13
Iteration: 1, Func. Count: 12, Neg. LLF: 44638999.20223486
Iteration: 2, Func. Count: 25, Neg. LLF: 129.9811401413232
Iteration: 3, Func. Count: 38, Neg. LLF: 117.97565748447418
Iteration: 4, Func. Count: 50, Neg. LLF: 112.24995569115849
Iteration: 5, Func. Count: 61, Neg. LLF: 112.21737617085299
Iteration: 6, Func. Count: 72, Neg. LLF: 112.60225972049022
Iteration: 7, Func. Count: 84, Neg. LLF: 112.06464583582277
Iteration: 8, Func. Count: 95, Neg. LLF: 112.0648437564795
Iteration: 9, Func. Count: 107, Neg. LLF: 111.84448342043353
Iteration: 10, Func. Count: 118, Neg. LLF: 111.81876237049968
Iteration: 11, Func. Count: 129, Neg. LLF: 111.81736308682538
Iteration: 12, Func. Count: 140, Neg. LLF: 111.81687321017307
Iteration: 13, Func. Count: 151, Neg. LLF: 111.81675903122941
Iteration: 14, Func. Count: 162, Neg. LLF: 111.81675692341089
Iteration: 15, Func. Count: 173, Neg. LLF: 111.81675633691047
Optimization terminated successfully (Exit mode 0)
Current function value: 111.81675633691047
Iterations: 15
Function evaluations: 173
Gradient evaluations: 15
Iteration: 1, Func. Count: 13, Neg. LLF: 44281646.99948379
Iteration: 2, Func. Count: 26, Neg. LLF: 639.8202346558711
Iteration: 3, Func. Count: 40, Neg. LLF: 113.53791958658529
Iteration: 4, Func. Count: 53, Neg. LLF: 112.73154856024584
Iteration: 5, Func. Count: 65, Neg. LLF: 111.9482095196115
Iteration: 6, Func. Count: 77, Neg. LLF: 128.05410068165193
Iteration: 7, Func. Count: 90, Neg. LLF: 111.80451821832881
Iteration: 8, Func. Count: 103, Neg. LLF: 112.12784815800326
Iteration: 9, Func. Count: 116, Neg. LLF: 111.62671346392024
Iteration: 10, Func. Count: 128, Neg. LLF: 111.60897986405969
Iteration: 11, Func. Count: 140, Neg. LLF: 111.60590325801385
Iteration: 12, Func. Count: 152, Neg. LLF: 111.60583891393948
Iteration: 13, Func. Count: 164, Neg. LLF: 111.6058331016015
Iteration: 14, Func. Count: 176, Neg. LLF: 111.60583239224243
Optimization terminated successfully (Exit mode 0)
Current function value: 111.60583239224243
Iterations: 14
Function evaluations: 176
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 115.66186610526556
Iteration: 2, Func. Count: 20, Neg. LLF: 113.92530853811546
Iteration: 3, Func. Count: 29, Neg. LLF: 114.17429409830254
Iteration: 4, Func. Count: 39, Neg. LLF: 122.04535639146755
Iteration: 5, Func. Count: 50, Neg. LLF: 113.1852242517834
Iteration: 6, Func. Count: 59, Neg. LLF: 113.10037605798884
Iteration: 7, Func. Count: 68, Neg. LLF: 113.20790920937026
Iteration: 8, Func. Count: 78, Neg. LLF: 113.27719119771785
Iteration: 9, Func. Count: 88, Neg. LLF: 113.05820571057815
Iteration: 10, Func. Count: 97, Neg. LLF: 113.05739680155585
Iteration: 11, Func. Count: 106, Neg. LLF: 113.05728822503454
Iteration: 12, Func. Count: 115, Neg. LLF: 113.05727764154261
Iteration: 13, Func. Count: 123, Neg. LLF: 113.057277641534
Optimization terminated successfully (Exit mode 0)
Current function value: 113.05727764154261
Iterations: 13
Function evaluations: 123
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 37413558.6142974
Iteration: 2, Func. Count: 23, Neg. LLF: 134.2984212368042
Iteration: 3, Func. Count: 35, Neg. LLF: 114.14051469308197
Iteration: 4, Func. Count: 46, Neg. LLF: 120.95505987408976
Iteration: 5, Func. Count: 57, Neg. LLF: 112.26595693550155
Iteration: 6, Func. Count: 67, Neg. LLF: 112.10511534690826
Iteration: 7, Func. Count: 77, Neg. LLF: 112.41908544625659
Iteration: 8, Func. Count: 88, Neg. LLF: 111.94365454365062
Iteration: 9, Func. Count: 98, Neg. LLF: 111.93876003686147
Iteration: 10, Func. Count: 108, Neg. LLF: 111.92902281728367
Iteration: 11, Func. Count: 118, Neg. LLF: 111.92742328197016
Iteration: 12, Func. Count: 128, Neg. LLF: 111.92689633380044
Iteration: 13, Func. Count: 138, Neg. LLF: 111.92688998594578
Iteration: 14, Func. Count: 147, Neg. LLF: 111.92688998601557
Optimization terminated successfully (Exit mode 0)
Current function value: 111.92688998594578
Iterations: 14
Function evaluations: 147
Gradient evaluations: 14
Iteration: 1, Func. Count: 12, Neg. LLF: 43901174.352108456
Iteration: 2, Func. Count: 25, Neg. LLF: 116.15508180102505
Iteration: 3, Func. Count: 37, Neg. LLF: 112.57089380703688
Iteration: 4, Func. Count: 49, Neg. LLF: 115.41946653549395
Iteration: 5, Func. Count: 61, Neg. LLF: 111.5399570889832
Iteration: 6, Func. Count: 72, Neg. LLF: 111.3953550950488
Iteration: 7, Func. Count: 83, Neg. LLF: 112.50958727802768
Iteration: 8, Func. Count: 96, Neg. LLF: 111.39256862139
Iteration: 9, Func. Count: 108, Neg. LLF: 111.34732696599953
Iteration: 10, Func. Count: 119, Neg. LLF: 111.34142783519644
Iteration: 11, Func. Count: 130, Neg. LLF: 111.3388013723174
Iteration: 12, Func. Count: 141, Neg. LLF: 111.33856032798785
Iteration: 13, Func. Count: 152, Neg. LLF: 111.33855921956572
Iteration: 14, Func. Count: 162, Neg. LLF: 111.33855921948964
Optimization terminated successfully (Exit mode 0)
Current function value: 111.33855921956572
Iterations: 14
Function evaluations: 162
Gradient evaluations: 14
Iteration: 1, Func. Count: 13, Neg. LLF: 45342228.62967036
Iteration: 2, Func. Count: 27, Neg. LLF: 212.14952240004112
Iteration: 3, Func. Count: 41, Neg. LLF: 111.94806736682118
Iteration: 4, Func. Count: 53, Neg. LLF: 111.89909219439483
Iteration: 5, Func. Count: 66, Neg. LLF: 113.91374920241239
Iteration: 6, Func. Count: 80, Neg. LLF: 111.42329674238388
Iteration: 7, Func. Count: 92, Neg. LLF: 111.27922617882133
Iteration: 8, Func. Count: 104, Neg. LLF: 111.27089579830444
Iteration: 9, Func. Count: 116, Neg. LLF: 111.26931023736702
Iteration: 10, Func. Count: 128, Neg. LLF: 111.26927361874
Iteration: 11, Func. Count: 140, Neg. LLF: 111.26926616962635
Iteration: 12, Func. Count: 152, Neg. LLF: 111.26926290279793
Iteration: 13, Func. Count: 163, Neg. LLF: 111.26926290284955
Optimization terminated successfully (Exit mode 0)
Current function value: 111.26926290279793
Iterations: 13
Function evaluations: 163
Gradient evaluations: 13
Iteration: 1, Func. Count: 14, Neg. LLF: 25865621.101585045
Iteration: 2, Func. Count: 28, Neg. LLF: 219.77089800514122
Iteration: 3, Func. Count: 42, Neg. LLF: 121.15372934536079
Iteration: 4, Func. Count: 56, Neg. LLF: 120.2548480592357
Iteration: 5, Func. Count: 70, Neg. LLF: 114.35302757514958
Iteration: 6, Func. Count: 84, Neg. LLF: 113.89499697691144
Iteration: 7, Func. Count: 98, Neg. LLF: 114.07610444079585
Iteration: 8, Func. Count: 112, Neg. LLF: 112.44936298021034
Iteration: 9, Func. Count: 126, Neg. LLF: 111.36373628633953
Iteration: 10, Func. Count: 139, Neg. LLF: 111.30645475928233
Iteration: 11, Func. Count: 152, Neg. LLF: 111.36261240787255
Iteration: 12, Func. Count: 166, Neg. LLF: 111.2828744873373
Iteration: 13, Func. Count: 179, Neg. LLF: 111.27503566014528
Iteration: 14, Func. Count: 192, Neg. LLF: 111.27012885315891
Iteration: 15, Func. Count: 205, Neg. LLF: 111.26931844868786
Iteration: 16, Func. Count: 218, Neg. LLF: 111.26926475213682
Iteration: 17, Func. Count: 231, Neg. LLF: 111.2692628371932
Iteration: 18, Func. Count: 243, Neg. LLF: 111.26926286378536
Optimization terminated successfully (Exit mode 0)
Current function value: 111.2692628371932
Iterations: 18
Function evaluations: 243
Gradient evaluations: 18
Iteration: 1, Func. Count: 11, Neg. LLF: 115.80403065531159
Iteration: 2, Func. Count: 22, Neg. LLF: 117.54851960512389
Iteration: 3, Func. Count: 33, Neg. LLF: 3220.247180310565
Iteration: 4, Func. Count: 44, Neg. LLF: 113.52214033675608
Iteration: 5, Func. Count: 54, Neg. LLF: 113.22865963846994
Iteration: 6, Func. Count: 64, Neg. LLF: 113.1539753018926
Iteration: 7, Func. Count: 74, Neg. LLF: 114.11728621033953
Iteration: 8, Func. Count: 85, Neg. LLF: 113.13522669268309
Iteration: 9, Func. Count: 96, Neg. LLF: 113.07482962347854
Iteration: 10, Func. Count: 106, Neg. LLF: 113.05848098847113
Iteration: 11, Func. Count: 116, Neg. LLF: 113.05776054084137
Iteration: 12, Func. Count: 126, Neg. LLF: 113.05727945405296
Iteration: 13, Func. Count: 136, Neg. LLF: 113.05727756819232
Iteration: 14, Func. Count: 145, Neg. LLF: 113.05727763482096
Optimization terminated successfully (Exit mode 0)
Current function value: 113.05727756819232
Iterations: 14
Function evaluations: 145
Gradient evaluations: 14
Iteration: 1, Func. Count: 12, Neg. LLF: 37767161.708214246
Iteration: 2, Func. Count: 25, Neg. LLF: 128.73363989406445
Iteration: 3, Func. Count: 37, Neg. LLF: 113.99505395415204
Iteration: 4, Func. Count: 49, Neg. LLF: 112.8434583198421
Iteration: 5, Func. Count: 61, Neg. LLF: 112.49544766121625
Iteration: 6, Func. Count: 73, Neg. LLF: 112.26885414573286
Iteration: 7, Func. Count: 85, Neg. LLF: 112.00977820134152
Iteration: 8, Func. Count: 96, Neg. LLF: 111.93123514837464
Iteration: 9, Func. Count: 107, Neg. LLF: 111.9270607959652
Iteration: 10, Func. Count: 118, Neg. LLF: 111.92689098493115
Iteration: 11, Func. Count: 129, Neg. LLF: 111.92688995037204
Iteration: 12, Func. Count: 139, Neg. LLF: 111.92688995032373
Optimization terminated successfully (Exit mode 0)
Current function value: 111.92688995037204
Iterations: 12
Function evaluations: 139
Gradient evaluations: 12
Iteration: 1, Func. Count: 13, Neg. LLF: 43383473.32777142
Iteration: 2, Func. Count: 27, Neg. LLF: 121.59560899319885
Iteration: 3, Func. Count: 40, Neg. LLF: 111.6994255397775
Iteration: 4, Func. Count: 52, Neg. LLF: 113.62369541061464
Iteration: 5, Func. Count: 65, Neg. LLF: 111.47076527833491
Iteration: 6, Func. Count: 77, Neg. LLF: 111.47227112622352
Iteration: 7, Func. Count: 90, Neg. LLF: 126.96541987925093
Iteration: 8, Func. Count: 103, Neg. LLF: 111.36919111323255
Iteration: 9, Func. Count: 115, Neg. LLF: 111.3540007333924
Iteration: 10, Func. Count: 127, Neg. LLF: 111.35004243113487
Iteration: 11, Func. Count: 140, Neg. LLF: 111.33877911493941
Iteration: 12, Func. Count: 152, Neg. LLF: 111.33860452687131
Iteration: 13, Func. Count: 164, Neg. LLF: 111.33856275406798
Iteration: 14, Func. Count: 176, Neg. LLF: 111.3385598151094
Iteration: 15, Func. Count: 188, Neg. LLF: 111.33855911829527
Optimization terminated successfully (Exit mode 0)
Current function value: 111.33855911829527
Iterations: 15
Function evaluations: 188
Gradient evaluations: 15
Iteration: 1, Func. Count: 14, Neg. LLF: 44828018.61254235
Iteration: 2, Func. Count: 29, Neg. LLF: 163.88212992851203
Iteration: 3, Func. Count: 44, Neg. LLF: 122.86664247444138
Iteration: 4, Func. Count: 58, Neg. LLF: 112.06010484429535
Iteration: 5, Func. Count: 71, Neg. LLF: 111.95975855538262
Iteration: 6, Func. Count: 84, Neg. LLF: 111.68014463164539
Iteration: 7, Func. Count: 97, Neg. LLF: 111.73729462039866
Iteration: 8, Func. Count: 111, Neg. LLF: 111.29915498747042
Iteration: 9, Func. Count: 124, Neg. LLF: 111.27512150529871
Iteration: 10, Func. Count: 137, Neg. LLF: 111.27030686487362
Iteration: 11, Func. Count: 150, Neg. LLF: 111.26947886278535
Iteration: 12, Func. Count: 163, Neg. LLF: 111.26935919211488
Iteration: 13, Func. Count: 176, Neg. LLF: 111.26927556093952
Iteration: 14, Func. Count: 189, Neg. LLF: 111.26926484245136
Iteration: 15, Func. Count: 202, Neg. LLF: 111.26926287675572
Iteration: 16, Func. Count: 214, Neg. LLF: 111.26926287679854
Optimization terminated successfully (Exit mode 0)
Current function value: 111.26926287675572
Iterations: 16
Function evaluations: 214
Gradient evaluations: 16
Iteration: 1, Func. Count: 15, Neg. LLF: 25568321.3126522
Iteration: 2, Func. Count: 30, Neg. LLF: 195.02239648991
Iteration: 3, Func. Count: 45, Neg. LLF: 120.29145707637737
Iteration: 4, Func. Count: 60, Neg. LLF: 117.81705399062206
Iteration: 5, Func. Count: 75, Neg. LLF: 113.15807521160049
Iteration: 6, Func. Count: 90, Neg. LLF: 115.20027241357016
Iteration: 7, Func. Count: 105, Neg. LLF: 111.44865155656451
Iteration: 8, Func. Count: 119, Neg. LLF: 112.38297962227519
Iteration: 9, Func. Count: 134, Neg. LLF: 112.82540236432267
Iteration: 10, Func. Count: 149, Neg. LLF: 111.29386183712509
Iteration: 11, Func. Count: 163, Neg. LLF: 111.28277929896309
Iteration: 12, Func. Count: 177, Neg. LLF: 111.27559962645486
Iteration: 13, Func. Count: 191, Neg. LLF: 111.27169716795515
Iteration: 14, Func. Count: 205, Neg. LLF: 111.26940773760009
Iteration: 15, Func. Count: 219, Neg. LLF: 111.2692776703411
Iteration: 16, Func. Count: 233, Neg. LLF: 111.26926290896681
Iteration: 17, Func. Count: 246, Neg. LLF: 111.26926293561057
Optimization terminated successfully (Exit mode 0)
Current function value: 111.26926290896681
Iterations: 17
Function evaluations: 246
Gradient evaluations: 17
Iteration: 1, Func. Count: 8, Neg. LLF: 118.86818369516992
Iteration: 2, Func. Count: 16, Neg. LLF: 140.10642058756034
Iteration: 3, Func. Count: 24, Neg. LLF: 133.56235995861493
Iteration: 4, Func. Count: 32, Neg. LLF: 165.9689787929513
Iteration: 5, Func. Count: 40, Neg. LLF: 115.98553710121122
Iteration: 6, Func. Count: 48, Neg. LLF: 113.2688807377211
Iteration: 7, Func. Count: 55, Neg. LLF: 113.1737156589408
Iteration: 8, Func. Count: 62, Neg. LLF: 113.16657195126399
Iteration: 9, Func. Count: 69, Neg. LLF: 113.16551196758202
Iteration: 10, Func. Count: 76, Neg. LLF: 113.16524598641803
Iteration: 11, Func. Count: 83, Neg. LLF: 113.1650853423523
Iteration: 12, Func. Count: 89, Neg. LLF: 113.16508555764116
Optimization terminated successfully (Exit mode 0)
Current function value: 113.1650853423523
Iterations: 12
Function evaluations: 89
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 19464843.581880584
Iteration: 2, Func. Count: 18, Neg. LLF: 4085.937562435763
Iteration: 3, Func. Count: 28, Neg. LLF: 2642.2813520963523
Iteration: 4, Func. Count: 37, Neg. LLF: 115.81659279876978
Iteration: 5, Func. Count: 46, Neg. LLF: 148.92584964896994
Iteration: 6, Func. Count: 55, Neg. LLF: 116.8883610172752
Iteration: 7, Func. Count: 64, Neg. LLF: 113.09740438719268
Iteration: 8, Func. Count: 73, Neg. LLF: 115.3418755111033
Iteration: 9, Func. Count: 82, Neg. LLF: 112.27413407686251
Iteration: 10, Func. Count: 90, Neg. LLF: 112.1686368045079
Iteration: 11, Func. Count: 98, Neg. LLF: 112.46742699608173
Iteration: 12, Func. Count: 107, Neg. LLF: 112.15469545044989
Iteration: 13, Func. Count: 115, Neg. LLF: 112.15454642376143
Iteration: 14, Func. Count: 123, Neg. LLF: 112.15453989610621
Iteration: 15, Func. Count: 130, Neg. LLF: 112.15453989651085
Optimization terminated successfully (Exit mode 0)
Current function value: 112.15453989610621
Iterations: 15
Function evaluations: 130
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 19441511.463861346
Iteration: 2, Func. Count: 20, Neg. LLF: 615.8135218607548
Iteration: 3, Func. Count: 31, Neg. LLF: 315.1849099236879
Iteration: 4, Func. Count: 41, Neg. LLF: 130.51069889080867
Iteration: 5, Func. Count: 51, Neg. LLF: 123.75580590781325
Iteration: 6, Func. Count: 61, Neg. LLF: 113.97006670895821
Iteration: 7, Func. Count: 71, Neg. LLF: 112.7086544249552
Iteration: 8, Func. Count: 81, Neg. LLF: 112.4251086472347
Iteration: 9, Func. Count: 90, Neg. LLF: 112.41765631456694
Iteration: 10, Func. Count: 99, Neg. LLF: 112.40803815868837
Iteration: 11, Func. Count: 108, Neg. LLF: 112.40173881175888
Iteration: 12, Func. Count: 117, Neg. LLF: 112.38351720650498
Iteration: 13, Func. Count: 126, Neg. LLF: 112.37340489512188
Iteration: 14, Func. Count: 135, Neg. LLF: 112.32076048137068
Iteration: 15, Func. Count: 144, Neg. LLF: 112.15493105987228
Iteration: 16, Func. Count: 153, Neg. LLF: 112.15485278225651
Iteration: 17, Func. Count: 162, Neg. LLF: 112.47181459853607
Iteration: 18, Func. Count: 173, Neg. LLF: 112.15667119479843
Iteration: 19, Func. Count: 184, Neg. LLF: 119.04528499864287
Iteration: 20, Func. Count: 196, Neg. LLF: 112.15540656551624
Iteration: 21, Func. Count: 206, Neg. LLF: 112.15488606177276
Iteration: 22, Func. Count: 216, Neg. LLF: 112.154539423583
Iteration: 23, Func. Count: 224, Neg. LLF: 112.15453942962539
Optimization terminated successfully (Exit mode 0)
Current function value: 112.154539423583
Iterations: 24
Function evaluations: 224
Gradient evaluations: 23
Iteration: 1, Func. Count: 11, Neg. LLF: 19448413.969600316
Iteration: 2, Func. Count: 22, Neg. LLF: 121.67481194410655
Iteration: 3, Func. Count: 33, Neg. LLF: 381.8507660533724
Iteration: 4, Func. Count: 44, Neg. LLF: 165.09653717751323
Iteration: 5, Func. Count: 55, Neg. LLF: 115.0355834522368
Iteration: 6, Func. Count: 66, Neg. LLF: 113.4189760342583
Iteration: 7, Func. Count: 77, Neg. LLF: 113.10604366406773
Iteration: 8, Func. Count: 88, Neg. LLF: 112.92866597088107
Iteration: 9, Func. Count: 99, Neg. LLF: 112.9411952981028
Iteration: 10, Func. Count: 110, Neg. LLF: 112.46429931287093
Iteration: 11, Func. Count: 121, Neg. LLF: 112.39723697183626
Iteration: 12, Func. Count: 131, Neg. LLF: 112.3643929063751
Iteration: 13, Func. Count: 141, Neg. LLF: 112.34379715913951
Iteration: 14, Func. Count: 151, Neg. LLF: 112.34314946718732
Iteration: 15, Func. Count: 161, Neg. LLF: 112.34300986151692
Iteration: 16, Func. Count: 171, Neg. LLF: 112.34296872488781
Iteration: 17, Func. Count: 181, Neg. LLF: 112.34293872456672
Iteration: 18, Func. Count: 191, Neg. LLF: 112.34293309706618
Iteration: 19, Func. Count: 200, Neg. LLF: 112.34293309714955
Optimization terminated successfully (Exit mode 0)
Current function value: 112.34293309706618
Iterations: 19
Function evaluations: 200
Gradient evaluations: 19
Iteration: 1, Func. Count: 12, Neg. LLF: 19461075.914102904
Iteration: 2, Func. Count: 24, Neg. LLF: 125.82685068936708
Iteration: 3, Func. Count: 36, Neg. LLF: 522.7569486574716
Iteration: 4, Func. Count: 48, Neg. LLF: 114.59087894507677
Iteration: 5, Func. Count: 60, Neg. LLF: 118.07248116337833
Iteration: 6, Func. Count: 72, Neg. LLF: 113.08275519276135
Iteration: 7, Func. Count: 84, Neg. LLF: 112.85601019787046
Iteration: 8, Func. Count: 96, Neg. LLF: 112.77250283184175
Iteration: 9, Func. Count: 108, Neg. LLF: 112.44903920102904
Iteration: 10, Func. Count: 119, Neg. LLF: 112.40744819641388
Iteration: 11, Func. Count: 130, Neg. LLF: 112.37909359056282
Iteration: 12, Func. Count: 141, Neg. LLF: 112.35970153681845
Iteration: 13, Func. Count: 152, Neg. LLF: 112.34615926966288
Iteration: 14, Func. Count: 163, Neg. LLF: 112.34338755064422
Iteration: 15, Func. Count: 174, Neg. LLF: 112.3429565395428
Iteration: 16, Func. Count: 185, Neg. LLF: 112.34293368407259
Iteration: 17, Func. Count: 196, Neg. LLF: 112.34293271938235
Optimization terminated successfully (Exit mode 0)
Current function value: 112.34293271938235
Iterations: 17
Function evaluations: 196
Gradient evaluations: 17
Iteration: 1, Func. Count: 9, Neg. LLF: 116.61951104622887
Iteration: 2, Func. Count: 18, Neg. LLF: 121.6910844743466
Iteration: 3, Func. Count: 27, Neg. LLF: 926.928573382311
Iteration: 4, Func. Count: 36, Neg. LLF: 115.06241023322569
Iteration: 5, Func. Count: 45, Neg. LLF: 113.20618077948163
Iteration: 6, Func. Count: 53, Neg. LLF: 113.16879186948742
Iteration: 7, Func. Count: 61, Neg. LLF: 113.33472828482928
Iteration: 8, Func. Count: 70, Neg. LLF: 113.16460496553456
Iteration: 9, Func. Count: 78, Neg. LLF: 113.1645419110829
Iteration: 10, Func. Count: 86, Neg. LLF: 113.16450813108737
Iteration: 11, Func. Count: 94, Neg. LLF: 113.16450605413259
Iteration: 12, Func. Count: 101, Neg. LLF: 113.16450605412177
Optimization terminated successfully (Exit mode 0)
Current function value: 113.16450605413259
Iterations: 12
Function evaluations: 101
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 36781884.629996374
Iteration: 2, Func. Count: 21, Neg. LLF: 143.60610823573197
Iteration: 3, Func. Count: 32, Neg. LLF: 128.03337228328786
Iteration: 4, Func. Count: 42, Neg. LLF: 135.4843820917857
Iteration: 5, Func. Count: 52, Neg. LLF: 121.2262651999649
Iteration: 6, Func. Count: 62, Neg. LLF: 113.0449988240546
Iteration: 7, Func. Count: 72, Neg. LLF: 113.60299532941377
Iteration: 8, Func. Count: 82, Neg. LLF: 112.23776026827116
Iteration: 9, Func. Count: 91, Neg. LLF: 112.21108722451497
Iteration: 10, Func. Count: 100, Neg. LLF: 112.15644787879307
Iteration: 11, Func. Count: 109, Neg. LLF: 112.15004166855329
Iteration: 12, Func. Count: 118, Neg. LLF: 112.14933516519497
Iteration: 13, Func. Count: 127, Neg. LLF: 112.1492197469271
Iteration: 14, Func. Count: 136, Neg. LLF: 112.149216730855
Iteration: 15, Func. Count: 144, Neg. LLF: 112.14921673068794
Optimization terminated successfully (Exit mode 0)
Current function value: 112.149216730855
Iterations: 15
Function evaluations: 144
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 44341253.1887225
Iteration: 2, Func. Count: 23, Neg. LLF: 132.14498742395318
Iteration: 3, Func. Count: 35, Neg. LLF: 123.24412725115467
Iteration: 4, Func. Count: 46, Neg. LLF: 112.77570294324293
Iteration: 5, Func. Count: 57, Neg. LLF: 112.31206272333489
Iteration: 6, Func. Count: 68, Neg. LLF: 111.87236272685826
Iteration: 7, Func. Count: 78, Neg. LLF: 112.58055471627078
Iteration: 8, Func. Count: 90, Neg. LLF: 112.27269393258482
Iteration: 9, Func. Count: 101, Neg. LLF: 111.64127358980222
Iteration: 10, Func. Count: 111, Neg. LLF: 111.61846799031545
Iteration: 11, Func. Count: 121, Neg. LLF: 111.60793569684778
Iteration: 12, Func. Count: 131, Neg. LLF: 111.6060888926738
Iteration: 13, Func. Count: 141, Neg. LLF: 111.6058478518106
Iteration: 14, Func. Count: 151, Neg. LLF: 111.60583253675561
Iteration: 15, Func. Count: 160, Neg. LLF: 111.60583253689533
Optimization terminated successfully (Exit mode 0)
Current function value: 111.60583253675561
Iterations: 15
Function evaluations: 160
Gradient evaluations: 15
Iteration: 1, Func. Count: 12, Neg. LLF: 45965324.79128838
Iteration: 2, Func. Count: 25, Neg. LLF: 133.32725851836028
Iteration: 3, Func. Count: 38, Neg. LLF: 113.62960345462946
Iteration: 4, Func. Count: 50, Neg. LLF: 112.37472201220118
Iteration: 5, Func. Count: 61, Neg. LLF: 112.36509291318806
Iteration: 6, Func. Count: 73, Neg. LLF: 112.26302887172851
Iteration: 7, Func. Count: 84, Neg. LLF: 112.17842378214377
Iteration: 8, Func. Count: 95, Neg. LLF: 112.15497698835212
Iteration: 9, Func. Count: 106, Neg. LLF: 112.14948958724351
Iteration: 10, Func. Count: 117, Neg. LLF: 112.14927111323539
Iteration: 11, Func. Count: 128, Neg. LLF: 112.1492178073059
Iteration: 12, Func. Count: 139, Neg. LLF: 112.14921670651901
Iteration: 13, Func. Count: 149, Neg. LLF: 112.14921671950181
Optimization terminated successfully (Exit mode 0)
Current function value: 112.14921670651901
Iterations: 13
Function evaluations: 149
Gradient evaluations: 13
Iteration: 1, Func. Count: 13, Neg. LLF: 45318212.33806677
Iteration: 2, Func. Count: 26, Neg. LLF: 604.7928501606305
Iteration: 3, Func. Count: 40, Neg. LLF: 113.2818472683409
Iteration: 4, Func. Count: 53, Neg. LLF: 112.8204053853726
Iteration: 5, Func. Count: 66, Neg. LLF: 111.73105561763134
Iteration: 6, Func. Count: 78, Neg. LLF: 111.51741751767915
Iteration: 7, Func. Count: 90, Neg. LLF: 111.51243124101589
Iteration: 8, Func. Count: 103, Neg. LLF: 111.0702517797282
Iteration: 9, Func. Count: 115, Neg. LLF: 111.05706976601468
Iteration: 10, Func. Count: 127, Neg. LLF: 111.05198622782866
Iteration: 11, Func. Count: 139, Neg. LLF: 111.0507975817392
Iteration: 12, Func. Count: 151, Neg. LLF: 111.05068511549675
Iteration: 13, Func. Count: 163, Neg. LLF: 111.05067755013762
Iteration: 14, Func. Count: 174, Neg. LLF: 111.05067755017211
Optimization terminated successfully (Exit mode 0)
Current function value: 111.05067755013762
Iterations: 14
Function evaluations: 174
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 116.25328565910296
Iteration: 2, Func. Count: 20, Neg. LLF: 114.35852991391602
Iteration: 3, Func. Count: 29, Neg. LLF: 115.08305729373194
Iteration: 4, Func. Count: 39, Neg. LLF: 125.00150123804158
Iteration: 5, Func. Count: 50, Neg. LLF: 113.24274625346344
Iteration: 6, Func. Count: 59, Neg. LLF: 113.18566013442191
Iteration: 7, Func. Count: 68, Neg. LLF: 113.1658184873742
Iteration: 8, Func. Count: 77, Neg. LLF: 113.16467476194019
Iteration: 9, Func. Count: 86, Neg. LLF: 113.16451218146562
Iteration: 10, Func. Count: 95, Neg. LLF: 113.16450622091754
Iteration: 11, Func. Count: 103, Neg. LLF: 113.16450622807722
Optimization terminated successfully (Exit mode 0)
Current function value: 113.16450622091754
Iterations: 11
Function evaluations: 103
Gradient evaluations: 11
Iteration: 1, Func. Count: 11, Neg. LLF: 36598067.68617308
Iteration: 2, Func. Count: 23, Neg. LLF: 138.56046506458878
Iteration: 3, Func. Count: 35, Neg. LLF: 117.31814006857981
Iteration: 4, Func. Count: 46, Neg. LLF: 133.8526186746467
Iteration: 5, Func. Count: 57, Neg. LLF: 112.85847690312595
Iteration: 6, Func. Count: 68, Neg. LLF: 112.32624802340956
Iteration: 7, Func. Count: 79, Neg. LLF: 112.20490348667117
Iteration: 8, Func. Count: 90, Neg. LLF: 112.24687283693103
Iteration: 9, Func. Count: 101, Neg. LLF: 112.06587148367096
Iteration: 10, Func. Count: 111, Neg. LLF: 112.06495650408655
Iteration: 11, Func. Count: 121, Neg. LLF: 112.06464406411457
Iteration: 12, Func. Count: 131, Neg. LLF: 112.06463650178871
Iteration: 13, Func. Count: 141, Neg. LLF: 112.06463576654168
Optimization terminated successfully (Exit mode 0)
Current function value: 112.06463576654168
Iterations: 13
Function evaluations: 141
Gradient evaluations: 13
Iteration: 1, Func. Count: 12, Neg. LLF: 42916386.56377369
Iteration: 2, Func. Count: 25, Neg. LLF: 130.7955067242379
Iteration: 3, Func. Count: 38, Neg. LLF: 115.39261946782847
Iteration: 4, Func. Count: 50, Neg. LLF: 112.47618595109134
Iteration: 5, Func. Count: 61, Neg. LLF: 112.5658116589982
Iteration: 6, Func. Count: 73, Neg. LLF: 113.42732542763616
Iteration: 7, Func. Count: 85, Neg. LLF: 112.94674808082252
Iteration: 8, Func. Count: 97, Neg. LLF: 112.20737314711054
Iteration: 9, Func. Count: 109, Neg. LLF: 112.08431581203344
Iteration: 10, Func. Count: 120, Neg. LLF: 112.06797366805208
Iteration: 11, Func. Count: 131, Neg. LLF: 112.06483605000288
Iteration: 12, Func. Count: 142, Neg. LLF: 112.0646518688322
Iteration: 13, Func. Count: 153, Neg. LLF: 112.0646358220351
Iteration: 14, Func. Count: 163, Neg. LLF: 112.0646358294112
Optimization terminated successfully (Exit mode 0)
Current function value: 112.0646358220351
Iterations: 14
Function evaluations: 163
Gradient evaluations: 14
Iteration: 1, Func. Count: 13, Neg. LLF: 44769512.24456665
Iteration: 2, Func. Count: 27, Neg. LLF: 124.40206862371852
Iteration: 3, Func. Count: 40, Neg. LLF: 119.98791268028526
Iteration: 4, Func. Count: 53, Neg. LLF: 112.27864843327973
Iteration: 5, Func. Count: 65, Neg. LLF: 112.71472124809272
Iteration: 6, Func. Count: 78, Neg. LLF: 112.1937112998665
Iteration: 7, Func. Count: 90, Neg. LLF: 112.07155858281064
Iteration: 8, Func. Count: 102, Neg. LLF: 111.90485623918478
Iteration: 9, Func. Count: 114, Neg. LLF: 111.83372838766931
Iteration: 10, Func. Count: 126, Neg. LLF: 111.81685818608277
Iteration: 11, Func. Count: 138, Neg. LLF: 111.81675986941129
Iteration: 12, Func. Count: 150, Neg. LLF: 111.8167566688665
Iteration: 13, Func. Count: 161, Neg. LLF: 111.81675666887672
Optimization terminated successfully (Exit mode 0)
Current function value: 111.8167566688665
Iterations: 13
Function evaluations: 161
Gradient evaluations: 13
Iteration: 1, Func. Count: 14, Neg. LLF: 44351880.59957316
Iteration: 2, Func. Count: 28, Neg. LLF: 635.1429325566326
Iteration: 3, Func. Count: 43, Neg. LLF: 113.78759620629907
Iteration: 4, Func. Count: 58, Neg. LLF: 112.78743452256663
Iteration: 5, Func. Count: 71, Neg. LLF: 112.31154062258156
Iteration: 6, Func. Count: 84, Neg. LLF: 112.85710366659434
Iteration: 7, Func. Count: 98, Neg. LLF: 111.8447342617679
Iteration: 8, Func. Count: 111, Neg. LLF: 111.71136257367678
Iteration: 9, Func. Count: 124, Neg. LLF: 111.68605347232018
Iteration: 10, Func. Count: 137, Neg. LLF: 111.64673134519245
Iteration: 11, Func. Count: 150, Neg. LLF: 111.63474013514222
Iteration: 12, Func. Count: 163, Neg. LLF: 111.60709375119453
Iteration: 13, Func. Count: 176, Neg. LLF: 111.60594633263369
Iteration: 14, Func. Count: 189, Neg. LLF: 111.60583333758386
Iteration: 15, Func. Count: 202, Neg. LLF: 111.60583239871728
Optimization terminated successfully (Exit mode 0)
Current function value: 111.60583239871728
Iterations: 15
Function evaluations: 202
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 116.14683961895928
Iteration: 2, Func. Count: 22, Neg. LLF: 114.35144229588684
Iteration: 3, Func. Count: 32, Neg. LLF: 113.96381010661902
Iteration: 4, Func. Count: 43, Neg. LLF: 122.33024836739844
Iteration: 5, Func. Count: 54, Neg. LLF: 113.16308466992245
Iteration: 6, Func. Count: 64, Neg. LLF: 113.4794328650295
Iteration: 7, Func. Count: 75, Neg. LLF: 113.13999566491663
Iteration: 8, Func. Count: 86, Neg. LLF: 113.09317860262122
Iteration: 9, Func. Count: 96, Neg. LLF: 113.10062085383655
Iteration: 10, Func. Count: 107, Neg. LLF: 113.06443234206533
Iteration: 11, Func. Count: 117, Neg. LLF: 113.05780840314964
Iteration: 12, Func. Count: 127, Neg. LLF: 113.05738647238792
Iteration: 13, Func. Count: 137, Neg. LLF: 113.05729699336479
Iteration: 14, Func. Count: 147, Neg. LLF: 113.0572790960887
Iteration: 15, Func. Count: 157, Neg. LLF: 113.05727752872079
Iteration: 16, Func. Count: 166, Neg. LLF: 113.05727752871712
Optimization terminated successfully (Exit mode 0)
Current function value: 113.05727752872079
Iterations: 16
Function evaluations: 166
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 37503286.48207664
Iteration: 2, Func. Count: 25, Neg. LLF: 134.2272096692062
Iteration: 3, Func. Count: 38, Neg. LLF: 114.62238472512834
Iteration: 4, Func. Count: 50, Neg. LLF: 117.50913094268748
Iteration: 5, Func. Count: 62, Neg. LLF: 112.23068838699325
Iteration: 6, Func. Count: 73, Neg. LLF: 113.02309548861794
Iteration: 7, Func. Count: 85, Neg. LLF: 112.43515104507027
Iteration: 8, Func. Count: 98, Neg. LLF: 111.92839217994454
Iteration: 9, Func. Count: 109, Neg. LLF: 111.92723098908728
Iteration: 10, Func. Count: 120, Neg. LLF: 111.92696788555641
Iteration: 11, Func. Count: 131, Neg. LLF: 111.92689575414862
Iteration: 12, Func. Count: 142, Neg. LLF: 111.92689014303262
Iteration: 13, Func. Count: 152, Neg. LLF: 111.92689014285241
Optimization terminated successfully (Exit mode 0)
Current function value: 111.92689014303262
Iterations: 13
Function evaluations: 152
Gradient evaluations: 13
Iteration: 1, Func. Count: 13, Neg. LLF: 43991336.08288927
Iteration: 2, Func. Count: 27, Neg. LLF: 116.79163525177542
Iteration: 3, Func. Count: 40, Neg. LLF: 119.26259078816489
Iteration: 4, Func. Count: 53, Neg. LLF: 113.302669019667
Iteration: 5, Func. Count: 66, Neg. LLF: 111.54293174521277
Iteration: 6, Func. Count: 78, Neg. LLF: 112.77615926493303
Iteration: 7, Func. Count: 92, Neg. LLF: 112.93664599129794
Iteration: 8, Func. Count: 106, Neg. LLF: 111.37700623255719
Iteration: 9, Func. Count: 118, Neg. LLF: 111.35271569237868
Iteration: 10, Func. Count: 130, Neg. LLF: 111.34318723679952
Iteration: 11, Func. Count: 142, Neg. LLF: 111.33873787234918
Iteration: 12, Func. Count: 154, Neg. LLF: 111.33858467652075
Iteration: 13, Func. Count: 166, Neg. LLF: 111.33856048610932
Iteration: 14, Func. Count: 178, Neg. LLF: 111.33855940108572
Iteration: 15, Func. Count: 189, Neg. LLF: 111.33855940091233
Optimization terminated successfully (Exit mode 0)
Current function value: 111.33855940108572
Iterations: 15
Function evaluations: 189
Gradient evaluations: 15
Iteration: 1, Func. Count: 14, Neg. LLF: 45473933.69199822
Iteration: 2, Func. Count: 29, Neg. LLF: 201.12997752600535
Iteration: 3, Func. Count: 44, Neg. LLF: 112.12510079223152
Iteration: 4, Func. Count: 57, Neg. LLF: 111.78109403054019
Iteration: 5, Func. Count: 70, Neg. LLF: 115.03211356458165
Iteration: 6, Func. Count: 86, Neg. LLF: 111.36926725915747
Iteration: 7, Func. Count: 99, Neg. LLF: 114.35189466569153
Iteration: 8, Func. Count: 113, Neg. LLF: 111.27496611362139
Iteration: 9, Func. Count: 126, Neg. LLF: 111.27067259661239
Iteration: 10, Func. Count: 139, Neg. LLF: 111.26973206712897
Iteration: 11, Func. Count: 152, Neg. LLF: 111.26935163101639
Iteration: 12, Func. Count: 165, Neg. LLF: 111.26928403737368
Iteration: 13, Func. Count: 178, Neg. LLF: 111.26926996575519
Iteration: 14, Func. Count: 191, Neg. LLF: 111.26926402572374
Iteration: 15, Func. Count: 204, Neg. LLF: 111.26926290609731
Iteration: 16, Func. Count: 216, Neg. LLF: 111.26926290621344
Optimization terminated successfully (Exit mode 0)
Current function value: 111.26926290609731
Iterations: 16
Function evaluations: 216
Gradient evaluations: 16
Iteration: 1, Func. Count: 15, Neg. LLF: 25902505.41595041
Iteration: 2, Func. Count: 30, Neg. LLF: 196.34643954316002
Iteration: 3, Func. Count: 45, Neg. LLF: 122.86877258935193
Iteration: 4, Func. Count: 60, Neg. LLF: 121.51333251976465
Iteration: 5, Func. Count: 75, Neg. LLF: 114.73519378266752
Iteration: 6, Func. Count: 90, Neg. LLF: 114.50694018849946
Iteration: 7, Func. Count: 105, Neg. LLF: 114.82540657666738
Iteration: 8, Func. Count: 120, Neg. LLF: 112.34193802887727
Iteration: 9, Func. Count: 135, Neg. LLF: 111.37828632482467
Iteration: 10, Func. Count: 149, Neg. LLF: 111.33858304985274
Iteration: 11, Func. Count: 163, Neg. LLF: 111.74654438508081
Iteration: 12, Func. Count: 179, Neg. LLF: 111.2920842249491
Iteration: 13, Func. Count: 193, Neg. LLF: 111.28147286765567
Iteration: 14, Func. Count: 207, Neg. LLF: 111.27655432408694
Iteration: 15, Func. Count: 221, Neg. LLF: 111.26937689255125
Iteration: 16, Func. Count: 235, Neg. LLF: 111.26927580855076
Iteration: 17, Func. Count: 249, Neg. LLF: 111.26926296733475
Iteration: 18, Func. Count: 262, Neg. LLF: 111.26926299391035
Optimization terminated successfully (Exit mode 0)
Current function value: 111.26926296733475
Iterations: 18
Function evaluations: 262
Gradient evaluations: 18
Iteration: 1, Func. Count: 12, Neg. LLF: 116.19085348480985
Iteration: 2, Func. Count: 24, Neg. LLF: 120.62782236325793
Iteration: 3, Func. Count: 36, Neg. LLF: 214.68848075802438
Iteration: 4, Func. Count: 48, Neg. LLF: 114.09468800909922
Iteration: 5, Func. Count: 60, Neg. LLF: 113.15830247697998
Iteration: 6, Func. Count: 71, Neg. LLF: 113.9847043528203
Iteration: 7, Func. Count: 83, Neg. LLF: 113.32814809801663
Iteration: 8, Func. Count: 95, Neg. LLF: 113.1024695790436
Iteration: 9, Func. Count: 106, Neg. LLF: 113.06825337216956
Iteration: 10, Func. Count: 117, Neg. LLF: 113.15935175962154
Iteration: 11, Func. Count: 129, Neg. LLF: 113.05734143851747
Iteration: 12, Func. Count: 140, Neg. LLF: 113.0572791530685
Iteration: 13, Func. Count: 151, Neg. LLF: 113.05727755272281
Iteration: 14, Func. Count: 161, Neg. LLF: 113.05727748609442
Optimization terminated successfully (Exit mode 0)
Current function value: 113.05727755272281
Iterations: 14
Function evaluations: 161
Gradient evaluations: 14
Iteration: 1, Func. Count: 13, Neg. LLF: 37858698.76837625
Iteration: 2, Func. Count: 27, Neg. LLF: 130.31540922624782
Iteration: 3, Func. Count: 40, Neg. LLF: 114.47270408124466
Iteration: 4, Func. Count: 53, Neg. LLF: 112.44282935178977
Iteration: 5, Func. Count: 66, Neg. LLF: 115.83509232447763
Iteration: 6, Func. Count: 79, Neg. LLF: 112.06455517427253
Iteration: 7, Func. Count: 91, Neg. LLF: 111.93184963375093
Iteration: 8, Func. Count: 103, Neg. LLF: 111.93034040346944
Iteration: 9, Func. Count: 116, Neg. LLF: 111.92701075640754
Iteration: 10, Func. Count: 128, Neg. LLF: 111.92689116642367
Iteration: 11, Func. Count: 140, Neg. LLF: 111.92689034381476
Optimization terminated successfully (Exit mode 0)
Current function value: 111.92689034381476
Iterations: 11
Function evaluations: 140
Gradient evaluations: 11
Iteration: 1, Func. Count: 14, Neg. LLF: 43472751.42607575
Iteration: 2, Func. Count: 29, Neg. LLF: 121.71902730630526
Iteration: 3, Func. Count: 43, Neg. LLF: 111.669896901116
Iteration: 4, Func. Count: 56, Neg. LLF: 128.39195183257348
Iteration: 5, Func. Count: 71, Neg. LLF: 111.41054300919976
Iteration: 6, Func. Count: 84, Neg. LLF: 111.55588713439214
Iteration: 7, Func. Count: 98, Neg. LLF: 111.39724305889249
Iteration: 8, Func. Count: 112, Neg. LLF: 111.3462680688916
Iteration: 9, Func. Count: 125, Neg. LLF: 111.33921342235044
Iteration: 10, Func. Count: 138, Neg. LLF: 111.33865326322923
Iteration: 11, Func. Count: 151, Neg. LLF: 111.33859907628002
Iteration: 12, Func. Count: 164, Neg. LLF: 111.33856495035873
Iteration: 13, Func. Count: 177, Neg. LLF: 111.33855961573418
Iteration: 14, Func. Count: 189, Neg. LLF: 111.33855961555187
Optimization terminated successfully (Exit mode 0)
Current function value: 111.33855961573418
Iterations: 14
Function evaluations: 189
Gradient evaluations: 14
Iteration: 1, Func. Count: 15, Neg. LLF: 44959984.90708075
Iteration: 2, Func. Count: 31, Neg. LLF: 158.20430889482247
Iteration: 3, Func. Count: 47, Neg. LLF: 125.11688925231594
Iteration: 4, Func. Count: 62, Neg. LLF: 112.09300579156378
Iteration: 5, Func. Count: 76, Neg. LLF: 111.98178837205083
Iteration: 6, Func. Count: 90, Neg. LLF: 111.82152416227585
Iteration: 7, Func. Count: 104, Neg. LLF: 111.83683423994292
Iteration: 8, Func. Count: 119, Neg. LLF: 111.34669050098569
Iteration: 9, Func. Count: 133, Neg. LLF: 111.29430820500083
Iteration: 10, Func. Count: 147, Neg. LLF: 111.2707942374525
Iteration: 11, Func. Count: 161, Neg. LLF: 111.26937369118598
Iteration: 12, Func. Count: 175, Neg. LLF: 111.2692726179777
Iteration: 13, Func. Count: 189, Neg. LLF: 111.26926721715883
Iteration: 14, Func. Count: 203, Neg. LLF: 111.26926360087029
Iteration: 15, Func. Count: 216, Neg. LLF: 111.26926360098642
Optimization terminated successfully (Exit mode 0)
Current function value: 111.26926360087029
Iterations: 15
Function evaluations: 216
Gradient evaluations: 15
Iteration: 1, Func. Count: 16, Neg. LLF: 25605699.70494122
Iteration: 2, Func. Count: 32, Neg. LLF: 183.72473407615257
Iteration: 3, Func. Count: 48, Neg. LLF: 122.06241628019589
Iteration: 4, Func. Count: 64, Neg. LLF: 119.24531755329407
Iteration: 5, Func. Count: 80, Neg. LLF: 113.4739279884941
Iteration: 6, Func. Count: 96, Neg. LLF: 115.93879490756511
Iteration: 7, Func. Count: 112, Neg. LLF: 112.29991276980036
Iteration: 8, Func. Count: 128, Neg. LLF: 114.66723270838096
Iteration: 9, Func. Count: 144, Neg. LLF: 112.52774866719727
Iteration: 10, Func. Count: 160, Neg. LLF: 111.36421990875084
Iteration: 11, Func. Count: 175, Neg. LLF: 111.36370710548381
Iteration: 12, Func. Count: 191, Neg. LLF: 111.3032645562135
Iteration: 13, Func. Count: 206, Neg. LLF: 111.27417830896518
Iteration: 14, Func. Count: 221, Neg. LLF: 111.2718440355302
Iteration: 15, Func. Count: 236, Neg. LLF: 111.26964810109916
Iteration: 16, Func. Count: 251, Neg. LLF: 111.26931091441641
Iteration: 17, Func. Count: 266, Neg. LLF: 111.26926619168721
Iteration: 18, Func. Count: 281, Neg. LLF: 111.2692630531306
Iteration: 19, Func. Count: 295, Neg. LLF: 111.26926307965311
Optimization terminated successfully (Exit mode 0)
Current function value: 111.2692630531306
Iterations: 19
Function evaluations: 295
Gradient evaluations: 19
Iteration: 1, Func. Count: 6, Neg. LLF: 39829604.00225775
Iteration: 2, Func. Count: 13, Neg. LLF: 142.75934021507118
Iteration: 3, Func. Count: 20, Neg. LLF: 148.86988642269537
Iteration: 4, Func. Count: 26, Neg. LLF: 129.9503871118521
Iteration: 5, Func. Count: 32, Neg. LLF: 120.15618389033583
Iteration: 6, Func. Count: 38, Neg. LLF: 112.76378453567133
Iteration: 7, Func. Count: 44, Neg. LLF: 112.28481630865706
Iteration: 8, Func. Count: 50, Neg. LLF: 112.18688810831449
Iteration: 9, Func. Count: 56, Neg. LLF: 112.9220506811283
Iteration: 10, Func. Count: 62, Neg. LLF: 112.14940382383915
Iteration: 11, Func. Count: 67, Neg. LLF: 112.14921807141916
Iteration: 12, Func. Count: 72, Neg. LLF: 112.14921670579304
Iteration: 13, Func. Count: 76, Neg. LLF: 112.14921670539177
Optimization terminated successfully (Exit mode 0)
Current function value: 112.14921670579304
Iterations: 13
Function evaluations: 76
Gradient evaluations: 13
Iteration: 1, Func. Count: 5, Neg. LLF: 123.26711226894932
Iteration: 2, Func. Count: 10, Neg. LLF: 120.65259976864661
Iteration: 3, Func. Count: 15, Neg. LLF: 120.43676396375183
Iteration: 4, Func. Count: 19, Neg. LLF: 120.41804689372402
Iteration: 5, Func. Count: 23, Neg. LLF: 120.41657414074801
Iteration: 6, Func. Count: 27, Neg. LLF: 120.41656352198903
Iteration: 7, Func. Count: 30, Neg. LLF: 120.41656359075847
Optimization terminated successfully (Exit mode 0)
Current function value: 120.41656352198903
Iterations: 7
Function evaluations: 30
Gradient evaluations: 7
Iteration: 1, Func. Count: 6, Neg. LLF: 162.16788997873027
Iteration: 2, Func. Count: 13, Neg. LLF: 118.51440559731275
Iteration: 3, Func. Count: 18, Neg. LLF: 126.48893207609383
Iteration: 4, Func. Count: 24, Neg. LLF: 118.3819045477604
Iteration: 5, Func. Count: 29, Neg. LLF: 118.3724083219677
Iteration: 6, Func. Count: 34, Neg. LLF: 118.37185810203225
Iteration: 7, Func. Count: 39, Neg. LLF: 118.37181754950143
Iteration: 8, Func. Count: 44, Neg. LLF: 118.37181692509793
Optimization terminated successfully (Exit mode 0)
Current function value: 118.37181692509793
Iterations: 8
Function evaluations: 44
Gradient evaluations: 8
Iteration: 1, Func. Count: 7, Neg. LLF: 157.4321811668686
Iteration: 2, Func. Count: 16, Neg. LLF: 118.58344002428426
Iteration: 3, Func. Count: 22, Neg. LLF: 118.59617616662953
Iteration: 4, Func. Count: 29, Neg. LLF: 118.4671145744808
Iteration: 5, Func. Count: 35, Neg. LLF: 118.49066825092959
Iteration: 6, Func. Count: 42, Neg. LLF: 118.40639053543318
Iteration: 7, Func. Count: 48, Neg. LLF: 118.39412347360953
Iteration: 8, Func. Count: 54, Neg. LLF: 118.39376801516451
Iteration: 9, Func. Count: 60, Neg. LLF: 118.39297294653063
Iteration: 10, Func. Count: 66, Neg. LLF: 118.39198789666028
Iteration: 11, Func. Count: 72, Neg. LLF: 118.39025702128782
Iteration: 12, Func. Count: 78, Neg. LLF: 118.38873201384612
Iteration: 13, Func. Count: 84, Neg. LLF: 118.38783709313536
Iteration: 14, Func. Count: 90, Neg. LLF: 118.38518577946103
Iteration: 15, Func. Count: 96, Neg. LLF: 118.372607406058
Iteration: 16, Func. Count: 102, Neg. LLF: 118.46756704167245
Iteration: 17, Func. Count: 109, Neg. LLF: 120.78133249594383
Iteration: 18, Func. Count: 118, Neg. LLF: 118.37612586331285
Iteration: 19, Func. Count: 125, Neg. LLF: 118.37181692389242
Iteration: 20, Func. Count: 130, Neg. LLF: 118.37181654797055
Optimization terminated successfully (Exit mode 0)
Current function value: 118.37181692389242
Iterations: 21
Function evaluations: 130
Gradient evaluations: 20
Iteration: 1, Func. Count: 8, Neg. LLF: 154.66344795969843
Iteration: 2, Func. Count: 18, Neg. LLF: 118.55159366669425
Iteration: 3, Func. Count: 25, Neg. LLF: 118.43314951797566
Iteration: 4, Func. Count: 32, Neg. LLF: 118.42356383024396
Iteration: 5, Func. Count: 39, Neg. LLF: 118.4188795259749
Iteration: 6, Func. Count: 46, Neg. LLF: 118.4114173165218
Iteration: 7, Func. Count: 53, Neg. LLF: 118.40837544906022
Iteration: 8, Func. Count: 60, Neg. LLF: 118.40782212885236
Iteration: 9, Func. Count: 67, Neg. LLF: 118.40729754036911
Iteration: 10, Func. Count: 74, Neg. LLF: 118.40660611469222
Iteration: 11, Func. Count: 81, Neg. LLF: 118.47222904110005
Iteration: 12, Func. Count: 89, Neg. LLF: 118.49594708147256
Iteration: 13, Func. Count: 97, Neg. LLF: 118.49578050896105
Iteration: 14, Func. Count: 105, Neg. LLF: 118.4771585918352
Iteration: 15, Func. Count: 113, Neg. LLF: 118.41706422145845
Iteration: 16, Func. Count: 121, Neg. LLF: 122.6432751351426
Iteration: 17, Func. Count: 130, Neg. LLF: 118.40610620166828
Iteration: 18, Func. Count: 138, Neg. LLF: 118.40443704027592
Iteration: 19, Func. Count: 145, Neg. LLF: 118.40417378479754
Iteration: 20, Func. Count: 152, Neg. LLF: 118.40406870709654
Iteration: 21, Func. Count: 159, Neg. LLF: 118.40406781521614
Optimization terminated successfully (Exit mode 0)
Current function value: 118.40406781521614
Iterations: 21
Function evaluations: 159
Gradient evaluations: 21
Iteration: 1, Func. Count: 9, Neg. LLF: 154.5861582511069
Iteration: 2, Func. Count: 20, Neg. LLF: 118.55365548965983
Iteration: 3, Func. Count: 28, Neg. LLF: 118.48401967386788
Iteration: 4, Func. Count: 36, Neg. LLF: 118.42644789522305
Iteration: 5, Func. Count: 44, Neg. LLF: 118.41931080442427
Iteration: 6, Func. Count: 52, Neg. LLF: 118.40968737225191
Iteration: 7, Func. Count: 60, Neg. LLF: 118.40691523928497
Iteration: 8, Func. Count: 68, Neg. LLF: 118.40685662610865
Iteration: 9, Func. Count: 76, Neg. LLF: 118.40685135284352
Iteration: 10, Func. Count: 83, Neg. LLF: 118.40685123753764
Optimization terminated successfully (Exit mode 0)
Current function value: 118.40685135284352
Iterations: 10
Function evaluations: 83
Gradient evaluations: 10
Iteration: 1, Func. Count: 6, Neg. LLF: 128.55838980227068
Iteration: 2, Func. Count: 12, Neg. LLF: 137.974980933702
Iteration: 3, Func. Count: 18, Neg. LLF: 120.53675761257873
Iteration: 4, Func. Count: 23, Neg. LLF: 120.47968679794413
Iteration: 5, Func. Count: 28, Neg. LLF: 120.42143088359182
Iteration: 6, Func. Count: 33, Neg. LLF: 120.4172408670325
Iteration: 7, Func. Count: 38, Neg. LLF: 120.4165648524731
Iteration: 8, Func. Count: 43, Neg. LLF: 120.41656350691537
Iteration: 9, Func. Count: 47, Neg. LLF: 120.41656356114234
Optimization terminated successfully (Exit mode 0)
Current function value: 120.41656350691537
Iterations: 9
Function evaluations: 47
Gradient evaluations: 9
Iteration: 1, Func. Count: 7, Neg. LLF: 161.81514298293166
Iteration: 2, Func. Count: 15, Neg. LLF: 118.5175733014318
Iteration: 3, Func. Count: 21, Neg. LLF: 126.54248766531937
Iteration: 4, Func. Count: 28, Neg. LLF: 118.3870464881968
Iteration: 5, Func. Count: 34, Neg. LLF: 118.37239217667779
Iteration: 6, Func. Count: 40, Neg. LLF: 118.37185244787582
Iteration: 7, Func. Count: 46, Neg. LLF: 118.37181762290368
Iteration: 8, Func. Count: 52, Neg. LLF: 118.37181692473266
Optimization terminated successfully (Exit mode 0)
Current function value: 118.37181692473266
Iterations: 8
Function evaluations: 52
Gradient evaluations: 8
Iteration: 1, Func. Count: 8, Neg. LLF: 157.22091009931557
Iteration: 2, Func. Count: 18, Neg. LLF: 118.57806690561883
Iteration: 3, Func. Count: 25, Neg. LLF: 118.58580549534592
Iteration: 4, Func. Count: 33, Neg. LLF: 118.47994483347458
Iteration: 5, Func. Count: 41, Neg. LLF: 118.3977710219968
Iteration: 6, Func. Count: 48, Neg. LLF: 118.39347232297013
Iteration: 7, Func. Count: 55, Neg. LLF: 118.39187272191994
Iteration: 8, Func. Count: 62, Neg. LLF: 118.38977075670499
Iteration: 9, Func. Count: 69, Neg. LLF: 118.38871208925893
Iteration: 10, Func. Count: 76, Neg. LLF: 118.38768406210481
Iteration: 11, Func. Count: 83, Neg. LLF: 118.37977753108973
Iteration: 12, Func. Count: 90, Neg. LLF: 118.37184652672072
Iteration: 13, Func. Count: 97, Neg. LLF: 118.9463480691505
Iteration: 14, Func. Count: 107, Neg. LLF: 118.371818523159
Iteration: 15, Func. Count: 114, Neg. LLF: 118.37181693358617
Iteration: 16, Func. Count: 120, Neg. LLF: 118.37181655768573
Optimization terminated successfully (Exit mode 0)
Current function value: 118.37181693358617
Iterations: 17
Function evaluations: 120
Gradient evaluations: 16
Iteration: 1, Func. Count: 9, Neg. LLF: 154.57379824875585
Iteration: 2, Func. Count: 20, Neg. LLF: 118.54621711288841
Iteration: 3, Func. Count: 28, Neg. LLF: 118.42773199034379
Iteration: 4, Func. Count: 36, Neg. LLF: 118.4239860663863
Iteration: 5, Func. Count: 44, Neg. LLF: 118.41498782548354
Iteration: 6, Func. Count: 52, Neg. LLF: 118.40975212747364
Iteration: 7, Func. Count: 60, Neg. LLF: 118.405368989771
Iteration: 8, Func. Count: 68, Neg. LLF: 118.40445823895818
Iteration: 9, Func. Count: 76, Neg. LLF: 118.40418556866344
Iteration: 10, Func. Count: 84, Neg. LLF: 118.40411263117929
Iteration: 11, Func. Count: 92, Neg. LLF: 118.40406910529448
Iteration: 12, Func. Count: 100, Neg. LLF: 118.40406783016611
Iteration: 13, Func. Count: 107, Neg. LLF: 118.40406768895939
Optimization terminated successfully (Exit mode 0)
Current function value: 118.40406783016611
Iterations: 13
Function evaluations: 107
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 155.34016953139465
Iteration: 2, Func. Count: 22, Neg. LLF: 118.55129724846554
Iteration: 3, Func. Count: 31, Neg. LLF: 118.47151827601141
Iteration: 4, Func. Count: 40, Neg. LLF: 118.42710410774313
Iteration: 5, Func. Count: 49, Neg. LLF: 118.41971352676623
Iteration: 6, Func. Count: 58, Neg. LLF: 118.41073204572272
Iteration: 7, Func. Count: 67, Neg. LLF: 118.40690268119445
Iteration: 8, Func. Count: 76, Neg. LLF: 118.4068513868269
Iteration: 9, Func. Count: 84, Neg. LLF: 118.40685127207517
Optimization terminated successfully (Exit mode 0)
Current function value: 118.4068513868269
Iterations: 9
Function evaluations: 84
Gradient evaluations: 9
Iteration: 1, Func. Count: 7, Neg. LLF: 129.34994350540205
Iteration: 2, Func. Count: 14, Neg. LLF: 140.89434182815884
Iteration: 3, Func. Count: 21, Neg. LLF: 120.48455676021912
Iteration: 4, Func. Count: 27, Neg. LLF: 120.45297447922925
Iteration: 5, Func. Count: 33, Neg. LLF: 120.4176540705964
Iteration: 6, Func. Count: 39, Neg. LLF: 120.41659172503212
Iteration: 7, Func. Count: 45, Neg. LLF: 120.41656581013918
Iteration: 8, Func. Count: 51, Neg. LLF: 120.41656351316468
Iteration: 9, Func. Count: 56, Neg. LLF: 120.41656356394644
Optimization terminated successfully (Exit mode 0)
Current function value: 120.41656351316468
Iterations: 9
Function evaluations: 56
Gradient evaluations: 9
Iteration: 1, Func. Count: 8, Neg. LLF: 161.47953880309973
Iteration: 2, Func. Count: 17, Neg. LLF: 118.52267314408428
Iteration: 3, Func. Count: 24, Neg. LLF: 126.87024739514855
Iteration: 4, Func. Count: 32, Neg. LLF: 118.39180041294105
Iteration: 5, Func. Count: 39, Neg. LLF: 118.37241191368773
Iteration: 6, Func. Count: 46, Neg. LLF: 118.3718496749603
Iteration: 7, Func. Count: 53, Neg. LLF: 118.37181781352444
Iteration: 8, Func. Count: 60, Neg. LLF: 118.37181694369349
Optimization terminated successfully (Exit mode 0)
Current function value: 118.37181694369349
Iterations: 8
Function evaluations: 60
Gradient evaluations: 8
Iteration: 1, Func. Count: 9, Neg. LLF: 157.10855918270278
Iteration: 2, Func. Count: 20, Neg. LLF: 118.57799089937578
Iteration: 3, Func. Count: 28, Neg. LLF: 118.58717609096976
Iteration: 4, Func. Count: 37, Neg. LLF: 118.48052287986498
Iteration: 5, Func. Count: 46, Neg. LLF: 118.3979523821056
Iteration: 6, Func. Count: 54, Neg. LLF: 118.39347763640967
Iteration: 7, Func. Count: 62, Neg. LLF: 118.39184807823915
Iteration: 8, Func. Count: 70, Neg. LLF: 118.38976315077862
Iteration: 9, Func. Count: 78, Neg. LLF: 118.38870529213807
Iteration: 10, Func. Count: 86, Neg. LLF: 118.38767572928323
Iteration: 11, Func. Count: 94, Neg. LLF: 118.37964020145024
Iteration: 12, Func. Count: 102, Neg. LLF: 118.37219758067417
Iteration: 13, Func. Count: 110, Neg. LLF: 121.21755370124163
Iteration: 14, Func. Count: 121, Neg. LLF: 120.91762399771422
Iteration: 15, Func. Count: 132, Neg. LLF: 118.37181911226166
Iteration: 16, Func. Count: 140, Neg. LLF: 118.37181722750222
Iteration: 17, Func. Count: 147, Neg. LLF: 118.37181685150782
Optimization terminated successfully (Exit mode 0)
Current function value: 118.37181722750222
Iterations: 18
Function evaluations: 147
Gradient evaluations: 17
Iteration: 1, Func. Count: 10, Neg. LLF: 155.07626984073104
Iteration: 2, Func. Count: 22, Neg. LLF: 118.5496393518996
Iteration: 3, Func. Count: 31, Neg. LLF: 118.42282930504135
Iteration: 4, Func. Count: 40, Neg. LLF: 118.41630828076727
Iteration: 5, Func. Count: 49, Neg. LLF: 118.40794930687282
Iteration: 6, Func. Count: 58, Neg. LLF: 118.40564927931005
Iteration: 7, Func. Count: 67, Neg. LLF: 118.4051792496595
Iteration: 8, Func. Count: 76, Neg. LLF: 118.41294711724646
Iteration: 9, Func. Count: 86, Neg. LLF: 118.49402550504264
Iteration: 10, Func. Count: 96, Neg. LLF: 118.40898331278069
Iteration: 11, Func. Count: 106, Neg. LLF: 118.40426659580889
Iteration: 12, Func. Count: 115, Neg. LLF: 118.40410549541632
Iteration: 13, Func. Count: 124, Neg. LLF: 118.40407538089808
Iteration: 14, Func. Count: 133, Neg. LLF: 118.40406780778896
Iteration: 15, Func. Count: 141, Neg. LLF: 118.40406766658897
Optimization terminated successfully (Exit mode 0)
Current function value: 118.40406780778896
Iterations: 15
Function evaluations: 141
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 155.40656402107
Iteration: 2, Func. Count: 24, Neg. LLF: 118.55163540944518
Iteration: 3, Func. Count: 34, Neg. LLF: 118.48036564419246
Iteration: 4, Func. Count: 44, Neg. LLF: 118.43110216896656
Iteration: 5, Func. Count: 54, Neg. LLF: 118.42305227582702
Iteration: 6, Func. Count: 64, Neg. LLF: 118.41503310364374
Iteration: 7, Func. Count: 74, Neg. LLF: 118.40704906509792
Iteration: 8, Func. Count: 84, Neg. LLF: 118.40685606961573
Iteration: 9, Func. Count: 94, Neg. LLF: 118.406851332699
Iteration: 10, Func. Count: 103, Neg. LLF: 118.40685121748017
Optimization terminated successfully (Exit mode 0)
Current function value: 118.406851332699
Iterations: 10
Function evaluations: 103
Gradient evaluations: 10
Iteration: 1, Func. Count: 8, Neg. LLF: 135.56048363998676
Iteration: 2, Func. Count: 16, Neg. LLF: 190.22263312723393
Iteration: 3, Func. Count: 24, Neg. LLF: 118.89083724117069
Iteration: 4, Func. Count: 31, Neg. LLF: 118.62632201428946
Iteration: 5, Func. Count: 38, Neg. LLF: 118.53558327127533
Iteration: 6, Func. Count: 45, Neg. LLF: 118.5049136660588
Iteration: 7, Func. Count: 52, Neg. LLF: 118.48470923349205
Iteration: 8, Func. Count: 59, Neg. LLF: 118.4535992975927
Iteration: 9, Func. Count: 66, Neg. LLF: 118.45079671748415
Iteration: 10, Func. Count: 73, Neg. LLF: 118.45068505397498
Iteration: 11, Func. Count: 80, Neg. LLF: 118.45068430554763
Optimization terminated successfully (Exit mode 0)
Current function value: 118.45068430554763
Iterations: 11
Function evaluations: 80
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 161.13834129495066
Iteration: 2, Func. Count: 19, Neg. LLF: 119.48125651497172
Iteration: 3, Func. Count: 27, Neg. LLF: 118.54091853644111
Iteration: 4, Func. Count: 35, Neg. LLF: 118.37187031063063
Iteration: 5, Func. Count: 43, Neg. LLF: 118.37775404028218
Iteration: 6, Func. Count: 52, Neg. LLF: 118.37181722806656
Iteration: 7, Func. Count: 59, Neg. LLF: 118.37181760524486
Optimization terminated successfully (Exit mode 0)
Current function value: 118.37181722806656
Iterations: 7
Function evaluations: 59
Gradient evaluations: 7
Iteration: 1, Func. Count: 10, Neg. LLF: 157.00098696697998
Iteration: 2, Func. Count: 22, Neg. LLF: 118.57895552877513
Iteration: 3, Func. Count: 31, Neg. LLF: 118.59350566486049
Iteration: 4, Func. Count: 41, Neg. LLF: 118.49207059112534
Iteration: 5, Func. Count: 51, Neg. LLF: 118.39781352436248
Iteration: 6, Func. Count: 60, Neg. LLF: 118.39320928709711
Iteration: 7, Func. Count: 69, Neg. LLF: 118.39140683777063
Iteration: 8, Func. Count: 78, Neg. LLF: 118.38957315763768
Iteration: 9, Func. Count: 87, Neg. LLF: 118.38855488192281
Iteration: 10, Func. Count: 96, Neg. LLF: 118.38744767887152
Iteration: 11, Func. Count: 105, Neg. LLF: 118.3751663592798
Iteration: 12, Func. Count: 114, Neg. LLF: 118.37263766465314
Iteration: 13, Func. Count: 123, Neg. LLF: 122.4943832973201
Iteration: 14, Func. Count: 135, Neg. LLF: 122.69539633616426
Optimization terminated successfully (Exit mode 0)
Current function value: 118.37262262211917
Iterations: 14
Function evaluations: 140
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 126.35026455231491
Iteration: 2, Func. Count: 25, Neg. LLF: 125.81704269251951
Iteration: 3, Func. Count: 36, Neg. LLF: 123.8937367343706
Iteration: 4, Func. Count: 47, Neg. LLF: 123.23220998027911
Iteration: 5, Func. Count: 58, Neg. LLF: 122.74461436993137
Iteration: 6, Func. Count: 69, Neg. LLF: 118.76465064964933
Iteration: 7, Func. Count: 80, Neg. LLF: 118.69886886279599
Iteration: 8, Func. Count: 91, Neg. LLF: 118.114356121046
Iteration: 9, Func. Count: 101, Neg. LLF: 117.78192177097803
Iteration: 10, Func. Count: 111, Neg. LLF: 117.40677396532536
Iteration: 11, Func. Count: 121, Neg. LLF: 117.3441909544233
Iteration: 12, Func. Count: 131, Neg. LLF: 117.34519919141968
Iteration: 13, Func. Count: 142, Neg. LLF: 117.32998907026553
Iteration: 14, Func. Count: 152, Neg. LLF: 117.32126713981847
Iteration: 15, Func. Count: 162, Neg. LLF: 117.30610397023698
Iteration: 16, Func. Count: 172, Neg. LLF: 117.30227618068704
Iteration: 17, Func. Count: 182, Neg. LLF: 117.30059930927624
Iteration: 18, Func. Count: 192, Neg. LLF: 117.30021649648126
Iteration: 19, Func. Count: 202, Neg. LLF: 117.30016941090643
Iteration: 20, Func. Count: 212, Neg. LLF: 117.30016125853298
Iteration: 21, Func. Count: 222, Neg. LLF: 117.30016015049222
Iteration: 22, Func. Count: 231, Neg. LLF: 117.30016014824496
Optimization terminated successfully (Exit mode 0)
Current function value: 117.30016015049222
Iterations: 22
Function evaluations: 231
Gradient evaluations: 22
Iteration: 1, Func. Count: 12, Neg. LLF: 123.97899670360734
Iteration: 2, Func. Count: 27, Neg. LLF: 128.80297676856418
Iteration: 3, Func. Count: 39, Neg. LLF: 120.68999568241813
Iteration: 4, Func. Count: 51, Neg. LLF: 119.48312367474655
Iteration: 5, Func. Count: 63, Neg. LLF: 118.46575749169845
Iteration: 6, Func. Count: 75, Neg. LLF: 117.78020839563986
Iteration: 7, Func. Count: 86, Neg. LLF: 119.07389217297947
Iteration: 8, Func. Count: 99, Neg. LLF: 117.57335041062906
Iteration: 9, Func. Count: 110, Neg. LLF: 117.58618597144591
Iteration: 10, Func. Count: 122, Neg. LLF: 117.42145848237945
Iteration: 11, Func. Count: 133, Neg. LLF: 117.35499673943784
Iteration: 12, Func. Count: 144, Neg. LLF: 117.34581082922536
Iteration: 13, Func. Count: 155, Neg. LLF: 117.32473494396817
Iteration: 14, Func. Count: 166, Neg. LLF: 117.31373780115507
Iteration: 15, Func. Count: 177, Neg. LLF: 117.30242683777449
Iteration: 16, Func. Count: 188, Neg. LLF: 117.30047355285788
Iteration: 17, Func. Count: 199, Neg. LLF: 117.30017554001111
Iteration: 18, Func. Count: 210, Neg. LLF: 117.3001616841308
Iteration: 19, Func. Count: 221, Neg. LLF: 117.30016056788769
Iteration: 20, Func. Count: 231, Neg. LLF: 117.3001606224829
Optimization terminated successfully (Exit mode 0)
Current function value: 117.30016056788769
Iterations: 20
Function evaluations: 231
Gradient evaluations: 20
Iteration: 1, Func. Count: 5, Neg. LLF: 128.85429150919867
Iteration: 2, Func. Count: 10, Neg. LLF: 120.56350905496465
Iteration: 3, Func. Count: 14, Neg. LLF: 120.63016883207615
Iteration: 4, Func. Count: 19, Neg. LLF: 120.46936257570073
Iteration: 5, Func. Count: 23, Neg. LLF: 120.41960722027298
Iteration: 6, Func. Count: 27, Neg. LLF: 120.41661850942677
Iteration: 7, Func. Count: 31, Neg. LLF: 120.41656355398787
Iteration: 8, Func. Count: 34, Neg. LLF: 120.41656371028998
Optimization terminated successfully (Exit mode 0)
Current function value: 120.41656355398787
Iterations: 8
Function evaluations: 34
Gradient evaluations: 8
Iteration: 1, Func. Count: 6, Neg. LLF: 163.3983071639845
Iteration: 2, Func. Count: 13, Neg. LLF: 118.5737932783601
Iteration: 3, Func. Count: 18, Neg. LLF: 131.32155807543515
Iteration: 4, Func. Count: 24, Neg. LLF: 118.3855756254468
Iteration: 5, Func. Count: 29, Neg. LLF: 118.37409727978931
Iteration: 6, Func. Count: 34, Neg. LLF: 118.37211984643355
Iteration: 7, Func. Count: 39, Neg. LLF: 118.37182201458667
Iteration: 8, Func. Count: 44, Neg. LLF: 118.37181695482602
Iteration: 9, Func. Count: 48, Neg. LLF: 118.37181733123542
Optimization terminated successfully (Exit mode 0)
Current function value: 118.37181695482602
Iterations: 9
Function evaluations: 48
Gradient evaluations: 9
Iteration: 1, Func. Count: 7, Neg. LLF: 158.47772365075008
Iteration: 2, Func. Count: 16, Neg. LLF: 118.62407461190112
Iteration: 3, Func. Count: 22, Neg. LLF: 118.7605115398451
Iteration: 4, Func. Count: 29, Neg. LLF: 118.46761351368755
Iteration: 5, Func. Count: 35, Neg. LLF: 118.49661835251008
Iteration: 6, Func. Count: 42, Neg. LLF: 118.40291084083357
Iteration: 7, Func. Count: 48, Neg. LLF: 118.392638359976
Iteration: 8, Func. Count: 54, Neg. LLF: 118.39245418896101
Iteration: 9, Func. Count: 60, Neg. LLF: 118.3915151229564
Iteration: 10, Func. Count: 66, Neg. LLF: 118.38947974873574
Iteration: 11, Func. Count: 72, Neg. LLF: 118.38852957899793
Iteration: 12, Func. Count: 78, Neg. LLF: 118.38736819801444
Iteration: 13, Func. Count: 84, Neg. LLF: 118.37288755193535
Iteration: 14, Func. Count: 90, Neg. LLF: 118.37195765517349
Iteration: 15, Func. Count: 96, Neg. LLF: 118.559327271292
Iteration: 16, Func. Count: 104, Neg. LLF: 118.4219884170633
Optimization terminated successfully (Exit mode 0)
Current function value: 118.37194403309739
Iterations: 17
Function evaluations: 107
Gradient evaluations: 16
Iteration: 1, Func. Count: 8, Neg. LLF: 156.88152020238564
Iteration: 2, Func. Count: 18, Neg. LLF: 118.55504634792077
Iteration: 3, Func. Count: 25, Neg. LLF: 118.44124509328576
Iteration: 4, Func. Count: 32, Neg. LLF: 118.48476830753226
Iteration: 5, Func. Count: 40, Neg. LLF: 118.40672425125769
Iteration: 6, Func. Count: 47, Neg. LLF: 118.4055554383605
Iteration: 7, Func. Count: 54, Neg. LLF: 118.40467033107184
Iteration: 8, Func. Count: 61, Neg. LLF: 118.40440670306249
Iteration: 9, Func. Count: 68, Neg. LLF: 118.40422434331802
Iteration: 10, Func. Count: 75, Neg. LLF: 118.40409301499834
Iteration: 11, Func. Count: 82, Neg. LLF: 118.40407097726094
Iteration: 12, Func. Count: 89, Neg. LLF: 118.40406790001403
Iteration: 13, Func. Count: 95, Neg. LLF: 118.40406775905596
Optimization terminated successfully (Exit mode 0)
Current function value: 118.40406790001403
Iterations: 13
Function evaluations: 95
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 157.6693452476011
Iteration: 2, Func. Count: 20, Neg. LLF: 118.5347168144587
Iteration: 3, Func. Count: 28, Neg. LLF: 118.46735959307813
Iteration: 4, Func. Count: 36, Neg. LLF: 118.44485303682877
Iteration: 5, Func. Count: 44, Neg. LLF: 118.43280009445809
Iteration: 6, Func. Count: 52, Neg. LLF: 118.42385197468546
Iteration: 7, Func. Count: 60, Neg. LLF: 118.41251776153439
Iteration: 8, Func. Count: 68, Neg. LLF: 118.40730944628956
Iteration: 9, Func. Count: 76, Neg. LLF: 118.4068623268024
Iteration: 10, Func. Count: 84, Neg. LLF: 118.4068528630376
Iteration: 11, Func. Count: 92, Neg. LLF: 118.4068513403328
Iteration: 12, Func. Count: 99, Neg. LLF: 118.40685122520752
Optimization terminated successfully (Exit mode 0)
Current function value: 118.4068513403328
Iterations: 12
Function evaluations: 99
Gradient evaluations: 12
Iteration: 1, Func. Count: 6, Neg. LLF: 126.97053471256599
Iteration: 2, Func. Count: 12, Neg. LLF: 120.61008376951153
Iteration: 3, Func. Count: 17, Neg. LLF: 121.92465451069795
Iteration: 4, Func. Count: 23, Neg. LLF: 120.49004671274312
Iteration: 5, Func. Count: 28, Neg. LLF: 120.42094320540266
Iteration: 6, Func. Count: 33, Neg. LLF: 120.41667788189292
Iteration: 7, Func. Count: 38, Neg. LLF: 120.41656365183732
Iteration: 8, Func. Count: 42, Neg. LLF: 120.41656358306645
Optimization terminated successfully (Exit mode 0)
Current function value: 120.41656365183732
Iterations: 8
Function evaluations: 42
Gradient evaluations: 8
Iteration: 1, Func. Count: 7, Neg. LLF: 165.23246273909146
Iteration: 2, Func. Count: 15, Neg. LLF: 118.62665844017543
Iteration: 3, Func. Count: 21, Neg. LLF: 153.54201123098193
Iteration: 4, Func. Count: 28, Neg. LLF: 118.37457433132236
Iteration: 5, Func. Count: 34, Neg. LLF: 118.37188046908506
Iteration: 6, Func. Count: 40, Neg. LLF: 118.37184876264165
Iteration: 7, Func. Count: 46, Neg. LLF: 118.37181703889509
Iteration: 8, Func. Count: 51, Neg. LLF: 118.37181741616821
Optimization terminated successfully (Exit mode 0)
Current function value: 118.37181703889509
Iterations: 8
Function evaluations: 51
Gradient evaluations: 8
Iteration: 1, Func. Count: 8, Neg. LLF: 159.05924425377435
Iteration: 2, Func. Count: 18, Neg. LLF: 118.6900554114961
Iteration: 3, Func. Count: 25, Neg. LLF: 118.77201749774974
Iteration: 4, Func. Count: 33, Neg. LLF: 118.51884023725249
Iteration: 5, Func. Count: 40, Neg. LLF: 119.75076881798803
Iteration: 6, Func. Count: 48, Neg. LLF: 118.39561678622927
Iteration: 7, Func. Count: 55, Neg. LLF: 118.39495498331478
Iteration: 8, Func. Count: 62, Neg. LLF: 118.39418587832691
Iteration: 9, Func. Count: 69, Neg. LLF: 118.392654021565
Iteration: 10, Func. Count: 76, Neg. LLF: 118.39081030241836
Iteration: 11, Func. Count: 83, Neg. LLF: 118.38913124037428
Iteration: 12, Func. Count: 90, Neg. LLF: 118.38819090812845
Iteration: 13, Func. Count: 97, Neg. LLF: 118.38683683653063
Iteration: 14, Func. Count: 104, Neg. LLF: 118.37234629849983
Iteration: 15, Func. Count: 111, Neg. LLF: 127.07663413304064
Iteration: 16, Func. Count: 121, Neg. LLF: 118.38771698367324
Iteration: 17, Func. Count: 128, Neg. LLF: 118.37181658621421
Optimization terminated successfully (Exit mode 0)
Current function value: 118.37181696163022
Iterations: 18
Function evaluations: 128
Gradient evaluations: 17
Iteration: 1, Func. Count: 9, Neg. LLF: 156.3511926220875
Iteration: 2, Func. Count: 20, Neg. LLF: 118.60308488947979
Iteration: 3, Func. Count: 28, Neg. LLF: 118.42325039266659
Iteration: 4, Func. Count: 36, Neg. LLF: 118.43122651357547
Iteration: 5, Func. Count: 45, Neg. LLF: 118.41916127975183
Iteration: 6, Func. Count: 53, Neg. LLF: 118.41914351611658
Iteration: 7, Func. Count: 61, Neg. LLF: 118.41913949278218
Iteration: 8, Func. Count: 69, Neg. LLF: 118.41913657973083
Iteration: 9, Func. Count: 76, Neg. LLF: 118.41913644785994
Optimization terminated successfully (Exit mode 0)
Current function value: 118.41913657973083
Iterations: 9
Function evaluations: 76
Gradient evaluations: 9
Iteration: 1, Func. Count: 10, Neg. LLF: 156.4199173558454
Iteration: 2, Func. Count: 22, Neg. LLF: 118.5820443514105
Iteration: 3, Func. Count: 31, Neg. LLF: 118.4630760200992
Iteration: 4, Func. Count: 40, Neg. LLF: 118.44034774265346
Iteration: 5, Func. Count: 49, Neg. LLF: 118.42947667049549
Iteration: 6, Func. Count: 58, Neg. LLF: 118.42107139888444
Iteration: 7, Func. Count: 67, Neg. LLF: 118.41369222040277
Iteration: 8, Func. Count: 76, Neg. LLF: 118.41043448108394
Iteration: 9, Func. Count: 85, Neg. LLF: 118.40709019865476
Iteration: 10, Func. Count: 94, Neg. LLF: 118.40706202045627
Iteration: 11, Func. Count: 103, Neg. LLF: 118.40701067456024
Iteration: 12, Func. Count: 112, Neg. LLF: 118.40716708341988
Iteration: 13, Func. Count: 122, Neg. LLF: 118.40693266372885
Iteration: 14, Func. Count: 131, Neg. LLF: 118.40687771766207
Iteration: 15, Func. Count: 140, Neg. LLF: 118.40685140181121
Iteration: 16, Func. Count: 148, Neg. LLF: 118.4068512866023
Optimization terminated successfully (Exit mode 0)
Current function value: 118.40685140181121
Iterations: 16
Function evaluations: 148
Gradient evaluations: 16
Iteration: 1, Func. Count: 7, Neg. LLF: 129.4162269185759
Iteration: 2, Func. Count: 14, Neg. LLF: 132.18706386347316
Iteration: 3, Func. Count: 21, Neg. LLF: 120.52481818789816
Iteration: 4, Func. Count: 27, Neg. LLF: 120.474708442408
Iteration: 5, Func. Count: 33, Neg. LLF: 120.41954397825505
Iteration: 6, Func. Count: 39, Neg. LLF: 120.41677058691504
Iteration: 7, Func. Count: 45, Neg. LLF: 120.41660659759391
Iteration: 8, Func. Count: 51, Neg. LLF: 120.41656359872032
Iteration: 9, Func. Count: 56, Neg. LLF: 120.41656365294743
Optimization terminated successfully (Exit mode 0)
Current function value: 120.41656359872032
Iterations: 9
Function evaluations: 56
Gradient evaluations: 9
Iteration: 1, Func. Count: 8, Neg. LLF: 164.9200419463907
Iteration: 2, Func. Count: 17, Neg. LLF: 118.6308453304322
Iteration: 3, Func. Count: 24, Neg. LLF: 155.7274949572376
Iteration: 4, Func. Count: 32, Neg. LLF: 118.37517384266988
Iteration: 5, Func. Count: 39, Neg. LLF: 118.37200561489571
Iteration: 6, Func. Count: 46, Neg. LLF: 118.37189210280685
Iteration: 7, Func. Count: 53, Neg. LLF: 118.37181723819367
Iteration: 8, Func. Count: 59, Neg. LLF: 118.37181761611437
Optimization terminated successfully (Exit mode 0)
Current function value: 118.37181723819367
Iterations: 8
Function evaluations: 59
Gradient evaluations: 8
Iteration: 1, Func. Count: 9, Neg. LLF: 158.86800691059125
Iteration: 2, Func. Count: 20, Neg. LLF: 118.68400284744999
Iteration: 3, Func. Count: 28, Neg. LLF: 118.78030393346027
Iteration: 4, Func. Count: 37, Neg. LLF: 118.54387399119233
Iteration: 5, Func. Count: 45, Neg. LLF: 118.767851595138
Iteration: 6, Func. Count: 54, Neg. LLF: 118.39453303518545
Iteration: 7, Func. Count: 62, Neg. LLF: 118.39403771124651
Iteration: 8, Func. Count: 70, Neg. LLF: 118.3934789697108
Iteration: 9, Func. Count: 78, Neg. LLF: 118.39210671335003
Iteration: 10, Func. Count: 86, Neg. LLF: 118.39052388336582
Iteration: 11, Func. Count: 94, Neg. LLF: 118.38895426811993
Iteration: 12, Func. Count: 102, Neg. LLF: 118.38798443147911
Iteration: 13, Func. Count: 110, Neg. LLF: 118.386040493009
Iteration: 14, Func. Count: 118, Neg. LLF: 118.37237629165992
Iteration: 15, Func. Count: 126, Neg. LLF: 120.61118349274301
Iteration: 16, Func. Count: 137, Neg. LLF: 118.42146705071697
Iteration: 17, Func. Count: 146, Neg. LLF: 118.3718169240485
Iteration: 18, Func. Count: 153, Neg. LLF: 118.37181654813884
Optimization terminated successfully (Exit mode 0)
Current function value: 118.3718169240485
Iterations: 19
Function evaluations: 153
Gradient evaluations: 18
Iteration: 1, Func. Count: 10, Neg. LLF: 156.28722292535755
Iteration: 2, Func. Count: 22, Neg. LLF: 118.59897399711676
Iteration: 3, Func. Count: 31, Neg. LLF: 118.42609356795849
Iteration: 4, Func. Count: 40, Neg. LLF: 118.42782499889086
Iteration: 5, Func. Count: 50, Neg. LLF: 118.4071052340367
Iteration: 6, Func. Count: 59, Neg. LLF: 118.40500365265135
Iteration: 7, Func. Count: 68, Neg. LLF: 118.40433048793834
Iteration: 8, Func. Count: 77, Neg. LLF: 118.4042039899914
Iteration: 9, Func. Count: 86, Neg. LLF: 118.40409554098771
Iteration: 10, Func. Count: 95, Neg. LLF: 118.40407109028081
Iteration: 11, Func. Count: 104, Neg. LLF: 118.40406815778583
Iteration: 12, Func. Count: 112, Neg. LLF: 118.40406801700821
Optimization terminated successfully (Exit mode 0)
Current function value: 118.40406815778583
Iterations: 12
Function evaluations: 112
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 157.2628790806621
Iteration: 2, Func. Count: 24, Neg. LLF: 118.58228323504817
Iteration: 3, Func. Count: 34, Neg. LLF: 118.45412581438605
Iteration: 4, Func. Count: 44, Neg. LLF: 118.44057657892402
Iteration: 5, Func. Count: 54, Neg. LLF: 118.42904624399094
Iteration: 6, Func. Count: 64, Neg. LLF: 118.42026889781388
Iteration: 7, Func. Count: 74, Neg. LLF: 118.41316411350024
Iteration: 8, Func. Count: 84, Neg. LLF: 118.41007908808142
Iteration: 9, Func. Count: 94, Neg. LLF: 118.40708442637381
Iteration: 10, Func. Count: 104, Neg. LLF: 118.40705160456076
Iteration: 11, Func. Count: 114, Neg. LLF: 118.4069926497374
Iteration: 12, Func. Count: 124, Neg. LLF: 118.40695425460194
Iteration: 13, Func. Count: 134, Neg. LLF: 118.40689604943213
Iteration: 14, Func. Count: 144, Neg. LLF: 118.40685270809462
Iteration: 15, Func. Count: 154, Neg. LLF: 118.40685124924211
Iteration: 16, Func. Count: 163, Neg. LLF: 118.4068511341853
Optimization terminated successfully (Exit mode 0)
Current function value: 118.40685124924211
Iterations: 16
Function evaluations: 163
Gradient evaluations: 16
Iteration: 1, Func. Count: 8, Neg. LLF: 129.33499226057995
Iteration: 2, Func. Count: 16, Neg. LLF: 139.32508650267724
Iteration: 3, Func. Count: 24, Neg. LLF: 120.47782955260652
Iteration: 4, Func. Count: 31, Neg. LLF: 120.44762063765226
Iteration: 5, Func. Count: 38, Neg. LLF: 120.41741256152663
Iteration: 6, Func. Count: 45, Neg. LLF: 120.4165886083718
Iteration: 7, Func. Count: 52, Neg. LLF: 120.41656730139385
Iteration: 8, Func. Count: 59, Neg. LLF: 120.41656354589597
Iteration: 9, Func. Count: 65, Neg. LLF: 120.41656359667803
Optimization terminated successfully (Exit mode 0)
Current function value: 120.41656354589597
Iterations: 9
Function evaluations: 65
Gradient evaluations: 9
Iteration: 1, Func. Count: 9, Neg. LLF: 164.61017892579846
Iteration: 2, Func. Count: 19, Neg. LLF: 118.63883005212526
Iteration: 3, Func. Count: 27, Neg. LLF: 122.68178008605472
Iteration: 4, Func. Count: 37, Neg. LLF: 118.40472661464325
Iteration: 5, Func. Count: 45, Neg. LLF: 118.37336509677681
Iteration: 6, Func. Count: 53, Neg. LLF: 118.37186272076687
Iteration: 7, Func. Count: 61, Neg. LLF: 118.37184444368626
Iteration: 8, Func. Count: 69, Neg. LLF: 118.37181692169642
Iteration: 9, Func. Count: 76, Neg. LLF: 118.37181729835923
Optimization terminated successfully (Exit mode 0)
Current function value: 118.37181692169642
Iterations: 9
Function evaluations: 76
Gradient evaluations: 9
Iteration: 1, Func. Count: 10, Neg. LLF: 158.77430358153413
Iteration: 2, Func. Count: 22, Neg. LLF: 118.6847156080642
Iteration: 3, Func. Count: 31, Neg. LLF: 118.77618149984117
Iteration: 4, Func. Count: 41, Neg. LLF: 118.5320259981628
Iteration: 5, Func. Count: 50, Neg. LLF: 119.14089408006272
Iteration: 6, Func. Count: 60, Neg. LLF: 118.39498982929527
Iteration: 7, Func. Count: 69, Neg. LLF: 118.3943810714573
Iteration: 8, Func. Count: 78, Neg. LLF: 118.3937983181675
Iteration: 9, Func. Count: 87, Neg. LLF: 118.39235668033282
Iteration: 10, Func. Count: 96, Neg. LLF: 118.39070770846138
Iteration: 11, Func. Count: 105, Neg. LLF: 118.38906705666454
Iteration: 12, Func. Count: 114, Neg. LLF: 118.38809834364359
Iteration: 13, Func. Count: 123, Neg. LLF: 118.38656478778269
Iteration: 14, Func. Count: 132, Neg. LLF: 118.3723671688324
Iteration: 15, Func. Count: 141, Neg. LLF: 123.35314194288024
Iteration: 16, Func. Count: 153, Neg. LLF: 118.398376914749
Iteration: 17, Func. Count: 162, Neg. LLF: 118.37181654846876
Optimization terminated successfully (Exit mode 0)
Current function value: 118.37181692426527
Iterations: 18
Function evaluations: 162
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 156.8412748931552
Iteration: 2, Func. Count: 24, Neg. LLF: 118.60403912852921
Iteration: 3, Func. Count: 34, Neg. LLF: 118.43495452291135
Iteration: 4, Func. Count: 44, Neg. LLF: 118.45019263160412
Iteration: 5, Func. Count: 55, Neg. LLF: 118.41016436252285
Iteration: 6, Func. Count: 65, Neg. LLF: 118.4054356250056
Iteration: 7, Func. Count: 75, Neg. LLF: 118.40471802238076
Iteration: 8, Func. Count: 85, Neg. LLF: 118.40446001538602
Iteration: 9, Func. Count: 95, Neg. LLF: 118.40423614502177
Iteration: 10, Func. Count: 105, Neg. LLF: 118.40410442750031
Iteration: 11, Func. Count: 115, Neg. LLF: 118.40407820446855
Iteration: 12, Func. Count: 125, Neg. LLF: 118.40406817257545
Iteration: 13, Func. Count: 134, Neg. LLF: 118.40406803174827
Optimization terminated successfully (Exit mode 0)
Current function value: 118.40406817257545
Iterations: 13
Function evaluations: 134
Gradient evaluations: 13
Iteration: 1, Func. Count: 12, Neg. LLF: 157.35779897733693
Iteration: 2, Func. Count: 26, Neg. LLF: 118.58203246753646
Iteration: 3, Func. Count: 37, Neg. LLF: 118.4611543138945
Iteration: 4, Func. Count: 48, Neg. LLF: 118.44516931697572
Iteration: 5, Func. Count: 59, Neg. LLF: 118.43417601659165
Iteration: 6, Func. Count: 70, Neg. LLF: 118.42437531988338
Iteration: 7, Func. Count: 81, Neg. LLF: 118.41463329817515
Iteration: 8, Func. Count: 92, Neg. LLF: 118.41104483119543
Iteration: 9, Func. Count: 103, Neg. LLF: 118.40724066652098
Iteration: 10, Func. Count: 114, Neg. LLF: 118.4070700534027
Iteration: 11, Func. Count: 125, Neg. LLF: 118.40701948731764
Iteration: 12, Func. Count: 136, Neg. LLF: 118.40768980664956
Iteration: 13, Func. Count: 148, Neg. LLF: 118.40784734984322
Iteration: 14, Func. Count: 160, Neg. LLF: 118.40685210975035
Iteration: 15, Func. Count: 171, Neg. LLF: 118.4068512587181
Optimization terminated successfully (Exit mode 0)
Current function value: 118.4068512587181
Iterations: 15
Function evaluations: 171
Gradient evaluations: 15
Iteration: 1, Func. Count: 9, Neg. LLF: 136.8813959100269
Iteration: 2, Func. Count: 18, Neg. LLF: 188.88083026235134
Iteration: 3, Func. Count: 27, Neg. LLF: 118.86503343969541
Iteration: 4, Func. Count: 35, Neg. LLF: 118.60932364936961
Iteration: 5, Func. Count: 43, Neg. LLF: 118.52635295371422
Iteration: 6, Func. Count: 51, Neg. LLF: 118.49879642966135
Iteration: 7, Func. Count: 59, Neg. LLF: 118.48014845779528
Iteration: 8, Func. Count: 67, Neg. LLF: 118.4527371938517
Iteration: 9, Func. Count: 75, Neg. LLF: 118.45075268577378
Iteration: 10, Func. Count: 83, Neg. LLF: 118.45068526043165
Iteration: 11, Func. Count: 91, Neg. LLF: 118.4506843055794
Optimization terminated successfully (Exit mode 0)
Current function value: 118.4506843055794
Iterations: 11
Function evaluations: 91
Gradient evaluations: 11
Iteration: 1, Func. Count: 10, Neg. LLF: 164.29992390498785
Iteration: 2, Func. Count: 21, Neg. LLF: 124.67863975257474
Iteration: 3, Func. Count: 31, Neg. LLF: 150.96934922726464
Iteration: 4, Func. Count: 41, Neg. LLF: 145.04241049077032
Iteration: 5, Func. Count: 51, Neg. LLF: 125.50051902234466
Iteration: 6, Func. Count: 61, Neg. LLF: 134.38922533539176
Iteration: 7, Func. Count: 71, Neg. LLF: 139.91436290073466
Iteration: 8, Func. Count: 82, Neg. LLF: 122.39304288124919
Iteration: 9, Func. Count: 92, Neg. LLF: 119.73380274764746
Iteration: 10, Func. Count: 102, Neg. LLF: 120.80559840736352
Iteration: 11, Func. Count: 112, Neg. LLF: 117.97034656074874
Iteration: 12, Func. Count: 122, Neg. LLF: 117.75704554959403
Iteration: 13, Func. Count: 131, Neg. LLF: 117.74896183589455
Iteration: 14, Func. Count: 140, Neg. LLF: 117.73320285669921
Iteration: 15, Func. Count: 149, Neg. LLF: 117.72459222492544
Iteration: 16, Func. Count: 158, Neg. LLF: 117.69903274862494
Iteration: 17, Func. Count: 167, Neg. LLF: 117.67208874544178
Iteration: 18, Func. Count: 176, Neg. LLF: 117.64810208227237
Iteration: 19, Func. Count: 185, Neg. LLF: 117.63813781408209
Iteration: 20, Func. Count: 194, Neg. LLF: 117.63702178226441
Iteration: 21, Func. Count: 203, Neg. LLF: 117.6369602319596
Iteration: 22, Func. Count: 212, Neg. LLF: 117.63694708251222
Iteration: 23, Func. Count: 221, Neg. LLF: 117.63694172935081
Iteration: 24, Func. Count: 230, Neg. LLF: 117.63692865924203
Iteration: 25, Func. Count: 239, Neg. LLF: 117.63692216452037
Iteration: 26, Func. Count: 248, Neg. LLF: 117.63692033172322
Iteration: 27, Func. Count: 256, Neg. LLF: 117.63692033170372
Optimization terminated successfully (Exit mode 0)
Current function value: 117.63692033172322
Iterations: 27
Function evaluations: 256
Gradient evaluations: 27
Iteration: 1, Func. Count: 11, Neg. LLF: 158.6782363633343
Iteration: 2, Func. Count: 24, Neg. LLF: 118.68699574342273
Iteration: 3, Func. Count: 34, Neg. LLF: 118.79645218644819
Iteration: 4, Func. Count: 45, Neg. LLF: 118.54500348978054
Iteration: 5, Func. Count: 55, Neg. LLF: 124.37146669120159
Iteration: 6, Func. Count: 66, Neg. LLF: 118.4134530819227
Iteration: 7, Func. Count: 76, Neg. LLF: 118.4041732022296
Iteration: 8, Func. Count: 86, Neg. LLF: 118.40011225296956
Iteration: 9, Func. Count: 96, Neg. LLF: 118.39842766816315
Iteration: 10, Func. Count: 106, Neg. LLF: 118.39616323380753
Iteration: 11, Func. Count: 116, Neg. LLF: 118.3935138116829
Iteration: 12, Func. Count: 126, Neg. LLF: 118.39095064107043
Iteration: 13, Func. Count: 136, Neg. LLF: 118.38947325714265
Iteration: 14, Func. Count: 146, Neg. LLF: 118.38850112775523
Iteration: 15, Func. Count: 156, Neg. LLF: 118.38731072481252
Iteration: 16, Func. Count: 166, Neg. LLF: 118.37181949916516
Iteration: 17, Func. Count: 176, Neg. LLF: 118.90203409171565
Iteration: 18, Func. Count: 190, Neg. LLF: 118.44255761975019
Optimization terminated successfully (Exit mode 0)
Current function value: 118.3718165048195
Iterations: 19
Function evaluations: 193
Gradient evaluations: 18
Iteration: 1, Func. Count: 12, Neg. LLF: 122.32662404669676
Iteration: 2, Func. Count: 27, Neg. LLF: 150.89728961521485
Iteration: 3, Func. Count: 39, Neg. LLF: 122.17554661757973
Iteration: 4, Func. Count: 51, Neg. LLF: 120.81402770776481
Iteration: 5, Func. Count: 63, Neg. LLF: 118.64613835663712
Iteration: 6, Func. Count: 75, Neg. LLF: 117.68822166061173
Iteration: 7, Func. Count: 86, Neg. LLF: 117.74946800784757
Iteration: 8, Func. Count: 98, Neg. LLF: 122.39081235234818
Iteration: 9, Func. Count: 111, Neg. LLF: 117.46373904519305
Iteration: 10, Func. Count: 123, Neg. LLF: 117.34733898703728
Iteration: 11, Func. Count: 134, Neg. LLF: 117.33173496394232
Iteration: 12, Func. Count: 145, Neg. LLF: 117.3163959316978
Iteration: 13, Func. Count: 156, Neg. LLF: 117.30447800739897
Iteration: 14, Func. Count: 167, Neg. LLF: 117.30045905651706
Iteration: 15, Func. Count: 178, Neg. LLF: 117.30018992746619
Iteration: 16, Func. Count: 189, Neg. LLF: 117.3001710194286
Iteration: 17, Func. Count: 200, Neg. LLF: 117.30016300652044
Iteration: 18, Func. Count: 211, Neg. LLF: 117.30016050268534
Iteration: 19, Func. Count: 221, Neg. LLF: 117.30016050051714
Optimization terminated successfully (Exit mode 0)
Current function value: 117.30016050268534
Iterations: 19
Function evaluations: 221
Gradient evaluations: 19
Iteration: 1, Func. Count: 13, Neg. LLF: 121.25170522342107
Iteration: 2, Func. Count: 29, Neg. LLF: 159.96018908714885
Iteration: 3, Func. Count: 42, Neg. LLF: 121.8690908331823
Iteration: 4, Func. Count: 55, Neg. LLF: 119.68958305408147
Iteration: 5, Func. Count: 68, Neg. LLF: 118.37191417966537
Iteration: 6, Func. Count: 80, Neg. LLF: 120.14425033594955
Iteration: 7, Func. Count: 93, Neg. LLF: 121.52663779835645
Iteration: 8, Func. Count: 106, Neg. LLF: 117.45382763160568
Iteration: 9, Func. Count: 118, Neg. LLF: 118.14564541367118
Iteration: 10, Func. Count: 131, Neg. LLF: 117.36273304666327
Iteration: 11, Func. Count: 143, Neg. LLF: 117.34214731954788
Iteration: 12, Func. Count: 155, Neg. LLF: 117.31926126807117
Iteration: 13, Func. Count: 167, Neg. LLF: 117.30674069286597
Iteration: 14, Func. Count: 179, Neg. LLF: 117.30057635324263
Iteration: 15, Func. Count: 191, Neg. LLF: 117.30017141337439
Iteration: 16, Func. Count: 203, Neg. LLF: 117.3001653636517
Iteration: 17, Func. Count: 214, Neg. LLF: 117.30016541729242
Optimization terminated successfully (Exit mode 0)
Current function value: 117.3001653636517
Iterations: 17
Function evaluations: 214
Gradient evaluations: 17
Iteration: 1, Func. Count: 6, Neg. LLF: 127.78272415165671
Iteration: 2, Func. Count: 12, Neg. LLF: 122.31613837335576
Iteration: 3, Func. Count: 17, Neg. LLF: 122.62267738885606
Iteration: 4, Func. Count: 23, Neg. LLF: 120.44325535491109
Iteration: 5, Func. Count: 28, Neg. LLF: 121.27571777360586
Iteration: 6, Func. Count: 35, Neg. LLF: 120.45567586527163
Iteration: 7, Func. Count: 41, Neg. LLF: 120.41618281603951
Iteration: 8, Func. Count: 46, Neg. LLF: 120.41618014403225
Iteration: 9, Func. Count: 50, Neg. LLF: 120.41618014405998
Optimization terminated successfully (Exit mode 0)
Current function value: 120.41618014403225
Iterations: 9
Function evaluations: 50
Gradient evaluations: 9
Iteration: 1, Func. Count: 7, Neg. LLF: 162.74324946745588
Iteration: 2, Func. Count: 15, Neg. LLF: 118.60376331220098
Iteration: 3, Func. Count: 21, Neg. LLF: 136.09774735570628
Iteration: 4, Func. Count: 28, Neg. LLF: 118.37718421328927
Iteration: 5, Func. Count: 34, Neg. LLF: 118.3723937575367
Iteration: 6, Func. Count: 40, Neg. LLF: 118.37206761857823
Iteration: 7, Func. Count: 46, Neg. LLF: 118.37181904469803
Iteration: 8, Func. Count: 52, Neg. LLF: 118.3718169526983
Iteration: 9, Func. Count: 57, Neg. LLF: 118.37181732899194
Optimization terminated successfully (Exit mode 0)
Current function value: 118.3718169526983
Iterations: 9
Function evaluations: 57
Gradient evaluations: 9
Iteration: 1, Func. Count: 8, Neg. LLF: 158.58658523026463
Iteration: 2, Func. Count: 18, Neg. LLF: 118.64713545940864
Iteration: 3, Func. Count: 25, Neg. LLF: 118.89832781404458
Iteration: 4, Func. Count: 33, Neg. LLF: 118.46463641526714
Iteration: 5, Func. Count: 40, Neg. LLF: 118.44431793468762
Iteration: 6, Func. Count: 48, Neg. LLF: 118.39608446076531
Iteration: 7, Func. Count: 55, Neg. LLF: 118.39302628433605
Iteration: 8, Func. Count: 62, Neg. LLF: 118.39281271608138
Iteration: 9, Func. Count: 69, Neg. LLF: 118.39179817663789
Iteration: 10, Func. Count: 76, Neg. LLF: 118.3896430652317
Iteration: 11, Func. Count: 83, Neg. LLF: 118.38865121796825
Iteration: 12, Func. Count: 90, Neg. LLF: 118.38757851551215
Iteration: 13, Func. Count: 97, Neg. LLF: 118.37789628641055
Iteration: 14, Func. Count: 104, Neg. LLF: 118.37181904351212
Iteration: 15, Func. Count: 111, Neg. LLF: 118.7081921359604
Iteration: 16, Func. Count: 120, Neg. LLF: 118.37181656158612
Optimization terminated successfully (Exit mode 0)
Current function value: 118.37181693750705
Iterations: 17
Function evaluations: 120
Gradient evaluations: 16
Iteration: 1, Func. Count: 9, Neg. LLF: 156.8053839320418
Iteration: 2, Func. Count: 20, Neg. LLF: 118.56546314928991
Iteration: 3, Func. Count: 28, Neg. LLF: 118.4313160312228
Iteration: 4, Func. Count: 36, Neg. LLF: 118.43875975144407
Iteration: 5, Func. Count: 45, Neg. LLF: 118.40563213109807
Iteration: 6, Func. Count: 53, Neg. LLF: 118.40449150526487
Iteration: 7, Func. Count: 61, Neg. LLF: 118.40417599850035
Iteration: 8, Func. Count: 69, Neg. LLF: 118.40408600492778
Iteration: 9, Func. Count: 77, Neg. LLF: 118.40406941250345
Iteration: 10, Func. Count: 85, Neg. LLF: 118.40406786505461
Iteration: 11, Func. Count: 92, Neg. LLF: 118.40406772397758
Optimization terminated successfully (Exit mode 0)
Current function value: 118.40406786505461
Iterations: 11
Function evaluations: 92
Gradient evaluations: 11
Iteration: 1, Func. Count: 10, Neg. LLF: 157.3961054307768
Iteration: 2, Func. Count: 22, Neg. LLF: 118.54433248939873
Iteration: 3, Func. Count: 31, Neg. LLF: 118.46498218482375
Iteration: 4, Func. Count: 40, Neg. LLF: 118.4395374090198
Iteration: 5, Func. Count: 49, Neg. LLF: 118.4286544278572
Iteration: 6, Func. Count: 58, Neg. LLF: 118.4206501490547
Iteration: 7, Func. Count: 67, Neg. LLF: 118.41186143573199
Iteration: 8, Func. Count: 76, Neg. LLF: 118.40722815135076
Iteration: 9, Func. Count: 85, Neg. LLF: 118.40691208965256
Iteration: 10, Func. Count: 94, Neg. LLF: 118.40687441417353
Iteration: 11, Func. Count: 103, Neg. LLF: 118.40685284451732
Iteration: 12, Func. Count: 112, Neg. LLF: 118.40685127606326
Iteration: 13, Func. Count: 120, Neg. LLF: 118.40685116105332
Optimization terminated successfully (Exit mode 0)
Current function value: 118.40685127606326
Iterations: 13
Function evaluations: 120
Gradient evaluations: 13
Iteration: 1, Func. Count: 7, Neg. LLF: 127.78095382257743
Iteration: 2, Func. Count: 14, Neg. LLF: 122.88749308791024
Iteration: 3, Func. Count: 20, Neg. LLF: 122.64999726831235
Iteration: 4, Func. Count: 27, Neg. LLF: 120.44269398991563
Iteration: 5, Func. Count: 33, Neg. LLF: 121.35622190834454
Iteration: 6, Func. Count: 41, Neg. LLF: 120.44876304731662
Iteration: 7, Func. Count: 48, Neg. LLF: 120.41618184799155
Iteration: 8, Func. Count: 54, Neg. LLF: 120.41618015104702
Iteration: 9, Func. Count: 59, Neg. LLF: 120.41618008208165
Optimization terminated successfully (Exit mode 0)
Current function value: 120.41618015104702
Iterations: 9
Function evaluations: 59
Gradient evaluations: 9
Iteration: 1, Func. Count: 8, Neg. LLF: 164.6253693182659
Iteration: 2, Func. Count: 17, Neg. LLF: 118.66408908613703
Iteration: 3, Func. Count: 24, Neg. LLF: 163.6222748975028
Iteration: 4, Func. Count: 32, Neg. LLF: 118.37764126408403
Iteration: 5, Func. Count: 39, Neg. LLF: 118.37187469529024
Iteration: 6, Func. Count: 46, Neg. LLF: 118.3718423199117
Iteration: 7, Func. Count: 53, Neg. LLF: 118.37181695699404
Iteration: 8, Func. Count: 59, Neg. LLF: 118.37181733402532
Optimization terminated successfully (Exit mode 0)
Current function value: 118.37181695699404
Iterations: 8
Function evaluations: 59
Gradient evaluations: 8
Iteration: 1, Func. Count: 9, Neg. LLF: 159.19372171246377
Iteration: 2, Func. Count: 20, Neg. LLF: 118.71848691292575
Iteration: 3, Func. Count: 28, Neg. LLF: 118.84156586859616
Iteration: 4, Func. Count: 37, Neg. LLF: 118.50592171884935
Iteration: 5, Func. Count: 45, Neg. LLF: 120.10217860883193
Iteration: 6, Func. Count: 54, Neg. LLF: 118.39511749171378
Iteration: 7, Func. Count: 62, Neg. LLF: 118.39454531595075
Iteration: 8, Func. Count: 70, Neg. LLF: 118.39375125746875
Iteration: 9, Func. Count: 78, Neg. LLF: 118.39236455773931
Iteration: 10, Func. Count: 86, Neg. LLF: 118.39059951717752
Iteration: 11, Func. Count: 94, Neg. LLF: 118.38900807528466
Iteration: 12, Func. Count: 102, Neg. LLF: 118.38806084526493
Iteration: 13, Func. Count: 110, Neg. LLF: 118.38637936162426
Iteration: 14, Func. Count: 118, Neg. LLF: 118.37234901376986
Iteration: 15, Func. Count: 126, Neg. LLF: 118.3733982565475
Iteration: 16, Func. Count: 135, Neg. LLF: 121.42526917330521
Iteration: 17, Func. Count: 146, Neg. LLF: 118.4002862251182
Iteration: 18, Func. Count: 154, Neg. LLF: 118.37181656012294
Optimization terminated successfully (Exit mode 0)
Current function value: 118.37181693602746
Iterations: 19
Function evaluations: 154
Gradient evaluations: 18
Iteration: 1, Func. Count: 10, Neg. LLF: 156.2924878225192
Iteration: 2, Func. Count: 22, Neg. LLF: 118.6163403840034
Iteration: 3, Func. Count: 31, Neg. LLF: 118.42416175578488
Iteration: 4, Func. Count: 40, Neg. LLF: 118.428022865857
Iteration: 5, Func. Count: 50, Neg. LLF: 118.41865001208298
Iteration: 6, Func. Count: 59, Neg. LLF: 118.44318813778483
Iteration: 7, Func. Count: 69, Neg. LLF: 118.41784611743158
Iteration: 8, Func. Count: 79, Neg. LLF: 118.409302837078
Iteration: 9, Func. Count: 88, Neg. LLF: 118.40666540262785
Iteration: 10, Func. Count: 97, Neg. LLF: 118.4061056641722
Iteration: 11, Func. Count: 106, Neg. LLF: 118.40527360599651
Iteration: 12, Func. Count: 115, Neg. LLF: 118.49470568099221
Iteration: 13, Func. Count: 125, Neg. LLF: 118.49392572358866
Iteration: 14, Func. Count: 135, Neg. LLF: 118.40554875662642
Iteration: 15, Func. Count: 145, Neg. LLF: 118.40414661607598
Iteration: 16, Func. Count: 154, Neg. LLF: 118.40408778786569
Iteration: 17, Func. Count: 163, Neg. LLF: 118.40406987857422
Iteration: 18, Func. Count: 172, Neg. LLF: 118.40406780775996
Iteration: 19, Func. Count: 180, Neg. LLF: 118.40406766656167
Optimization terminated successfully (Exit mode 0)
Current function value: 118.40406780775996
Iterations: 19
Function evaluations: 180
Gradient evaluations: 19
Iteration: 1, Func. Count: 11, Neg. LLF: 156.15774016782467
Iteration: 2, Func. Count: 24, Neg. LLF: 118.59478661542084
Iteration: 3, Func. Count: 34, Neg. LLF: 118.46299890270177
Iteration: 4, Func. Count: 44, Neg. LLF: 118.43592810454399
Iteration: 5, Func. Count: 54, Neg. LLF: 118.42573456764414
Iteration: 6, Func. Count: 64, Neg. LLF: 118.41854727126203
Iteration: 7, Func. Count: 74, Neg. LLF: 118.41238062565589
Iteration: 8, Func. Count: 84, Neg. LLF: 118.40733157486059
Iteration: 9, Func. Count: 94, Neg. LLF: 118.40696772626715
Iteration: 10, Func. Count: 104, Neg. LLF: 118.4069165883102
Iteration: 11, Func. Count: 114, Neg. LLF: 118.40686784114847
Iteration: 12, Func. Count: 124, Neg. LLF: 118.40685397861238
Iteration: 13, Func. Count: 134, Neg. LLF: 118.40685125268509
Iteration: 14, Func. Count: 143, Neg. LLF: 118.40685113772011
Optimization terminated successfully (Exit mode 0)
Current function value: 118.40685125268509
Iterations: 14
Function evaluations: 143
Gradient evaluations: 14
Iteration: 1, Func. Count: 8, Neg. LLF: 127.94457613918895
Iteration: 2, Func. Count: 16, Neg. LLF: 124.13072643116259
Iteration: 3, Func. Count: 24, Neg. LLF: 120.5241289669656
Iteration: 4, Func. Count: 31, Neg. LLF: 165.99958663265602
Iteration: 5, Func. Count: 40, Neg. LLF: 120.42209806664177
Iteration: 6, Func. Count: 47, Neg. LLF: 120.39484265367633
Iteration: 7, Func. Count: 54, Neg. LLF: 120.38803882263383
Iteration: 8, Func. Count: 61, Neg. LLF: 120.38729539096276
Iteration: 9, Func. Count: 68, Neg. LLF: 120.38727363162813
Iteration: 10, Func. Count: 74, Neg. LLF: 120.38727357790027
Optimization terminated successfully (Exit mode 0)
Current function value: 120.38727363162813
Iterations: 10
Function evaluations: 74
Gradient evaluations: 10
Iteration: 1, Func. Count: 9, Neg. LLF: 146.0228772541792
Iteration: 2, Func. Count: 20, Neg. LLF: 137.0936625643766
Iteration: 3, Func. Count: 30, Neg. LLF: 119.10309593142529
Iteration: 4, Func. Count: 38, Neg. LLF: 119.58919367636943
Iteration: 5, Func. Count: 47, Neg. LLF: 119.02250973095713
Iteration: 6, Func. Count: 55, Neg. LLF: 118.90093331934261
Iteration: 7, Func. Count: 63, Neg. LLF: 118.46503940835682
Iteration: 8, Func. Count: 71, Neg. LLF: 118.38681398916312
Iteration: 9, Func. Count: 79, Neg. LLF: 118.37483843329639
Iteration: 10, Func. Count: 87, Neg. LLF: 122.57783472461085
Iteration: 11, Func. Count: 97, Neg. LLF: 118.3763925726135
Iteration: 12, Func. Count: 106, Neg. LLF: 118.37181692527467
Iteration: 13, Func. Count: 113, Neg. LLF: 118.3718173020799
Optimization terminated successfully (Exit mode 0)
Current function value: 118.37181692527467
Iterations: 14
Function evaluations: 113
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 158.99359644142902
Iteration: 2, Func. Count: 22, Neg. LLF: 118.7121201338357
Iteration: 3, Func. Count: 31, Neg. LLF: 118.849622124356
Iteration: 4, Func. Count: 41, Neg. LLF: 118.52696440806747
Iteration: 5, Func. Count: 50, Neg. LLF: 119.18580285844922
Iteration: 6, Func. Count: 60, Neg. LLF: 118.39440493065804
Iteration: 7, Func. Count: 69, Neg. LLF: 118.39383643730942
Iteration: 8, Func. Count: 78, Neg. LLF: 118.3933350296033
Iteration: 9, Func. Count: 87, Neg. LLF: 118.39204312854993
Iteration: 10, Func. Count: 96, Neg. LLF: 118.39054886686213
Iteration: 11, Func. Count: 105, Neg. LLF: 118.3889782628055
Iteration: 12, Func. Count: 114, Neg. LLF: 118.3879812975158
Iteration: 13, Func. Count: 123, Neg. LLF: 118.38606427734844
Iteration: 14, Func. Count: 132, Neg. LLF: 118.37240547385652
Iteration: 15, Func. Count: 141, Neg. LLF: 118.37337080080617
Optimization terminated successfully (Exit mode 0)
Current function value: 118.3724053131143
Iterations: 15
Function evaluations: 143
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 156.21846892192116
Iteration: 2, Func. Count: 24, Neg. LLF: 118.61193695398634
Iteration: 3, Func. Count: 34, Neg. LLF: 118.42182662974935
Iteration: 4, Func. Count: 44, Neg. LLF: 118.41572519014146
Iteration: 5, Func. Count: 54, Neg. LLF: 118.41305064658596
Iteration: 6, Func. Count: 64, Neg. LLF: 118.43677211424043
Iteration: 7, Func. Count: 75, Neg. LLF: 118.40668691574639
Iteration: 8, Func. Count: 85, Neg. LLF: 118.40446123817016
Iteration: 9, Func. Count: 95, Neg. LLF: 118.40406857973646
Iteration: 10, Func. Count: 104, Neg. LLF: 118.40406843851885
Optimization terminated successfully (Exit mode 0)
Current function value: 118.40406857973646
Iterations: 10
Function evaluations: 104
Gradient evaluations: 10
Iteration: 1, Func. Count: 12, Neg. LLF: 157.00075938748844
Iteration: 2, Func. Count: 26, Neg. LLF: 118.59444692545182
Iteration: 3, Func. Count: 37, Neg. LLF: 118.45424608684635
Iteration: 4, Func. Count: 48, Neg. LLF: 118.43677570096153
Iteration: 5, Func. Count: 59, Neg. LLF: 118.42524709311975
Iteration: 6, Func. Count: 70, Neg. LLF: 118.41793435400827
Iteration: 7, Func. Count: 81, Neg. LLF: 118.41219487047418
Iteration: 8, Func. Count: 92, Neg. LLF: 118.40733015831779
Iteration: 9, Func. Count: 103, Neg. LLF: 118.40699074944493
Iteration: 10, Func. Count: 114, Neg. LLF: 118.40693244245523
Iteration: 11, Func. Count: 125, Neg. LLF: 118.40690207211173
Iteration: 12, Func. Count: 136, Neg. LLF: 118.40685783849149
Iteration: 13, Func. Count: 147, Neg. LLF: 118.40685215426373
Iteration: 14, Func. Count: 158, Neg. LLF: 118.40685117252862
Optimization terminated successfully (Exit mode 0)
Current function value: 118.40685117252862
Iterations: 14
Function evaluations: 158
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 128.56364149316224
Iteration: 2, Func. Count: 18, Neg. LLF: 126.80438093448842
Iteration: 3, Func. Count: 27, Neg. LLF: 120.6160025328525
Iteration: 4, Func. Count: 35, Neg. LLF: 121.49808768506439
Iteration: 5, Func. Count: 45, Neg. LLF: 120.50511986224934
Iteration: 6, Func. Count: 53, Neg. LLF: 120.39640078379229
Iteration: 7, Func. Count: 61, Neg. LLF: 120.38749525693599
Iteration: 8, Func. Count: 69, Neg. LLF: 120.38727431552009
Iteration: 9, Func. Count: 77, Neg. LLF: 120.38727364426883
Optimization terminated successfully (Exit mode 0)
Current function value: 120.38727364426883
Iterations: 9
Function evaluations: 77
Gradient evaluations: 9
Iteration: 1, Func. Count: 10, Neg. LLF: 142.04049797253217
Iteration: 2, Func. Count: 22, Neg. LLF: 130.26020618044842
Iteration: 3, Func. Count: 33, Neg. LLF: 119.17881382567033
Iteration: 4, Func. Count: 42, Neg. LLF: 119.35322881314548
Iteration: 5, Func. Count: 52, Neg. LLF: 119.01808365474288
Iteration: 6, Func. Count: 61, Neg. LLF: 118.71135702667203
Iteration: 7, Func. Count: 70, Neg. LLF: 118.43049464695105
Iteration: 8, Func. Count: 79, Neg. LLF: 118.37742334625118
Iteration: 9, Func. Count: 88, Neg. LLF: 118.37188052776061
Iteration: 10, Func. Count: 97, Neg. LLF: 122.53459195975437
Iteration: 11, Func. Count: 108, Neg. LLF: 118.37246157043933
Iteration: 12, Func. Count: 118, Neg. LLF: 118.3718186697521
Iteration: 13, Func. Count: 127, Neg. LLF: 118.37181692419888
Iteration: 14, Func. Count: 135, Neg. LLF: 118.37181730090806
Optimization terminated successfully (Exit mode 0)
Current function value: 118.37181692419888
Iterations: 15
Function evaluations: 135
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 158.89666652043005
Iteration: 2, Func. Count: 24, Neg. LLF: 118.71262575198926
Iteration: 3, Func. Count: 34, Neg. LLF: 118.84630978659891
Iteration: 4, Func. Count: 45, Neg. LLF: 118.51429805773867
Iteration: 5, Func. Count: 55, Neg. LLF: 119.7860300163615
Iteration: 6, Func. Count: 66, Neg. LLF: 118.39496385614423
Iteration: 7, Func. Count: 76, Neg. LLF: 118.39436784046865
Iteration: 8, Func. Count: 86, Neg. LLF: 118.39370262236149
Iteration: 9, Func. Count: 96, Neg. LLF: 118.39232974858318
Iteration: 10, Func. Count: 106, Neg. LLF: 118.39065504052303
Iteration: 11, Func. Count: 116, Neg. LLF: 118.38904068174975
Iteration: 12, Func. Count: 126, Neg. LLF: 118.38807099931903
Iteration: 13, Func. Count: 136, Neg. LLF: 118.38645445076114
Iteration: 14, Func. Count: 146, Neg. LLF: 118.3723944266769
Iteration: 15, Func. Count: 156, Neg. LLF: 118.39656157697095
Iteration: 16, Func. Count: 168, Neg. LLF: 118.37284768350501
Iteration: 17, Func. Count: 179, Neg. LLF: 123.10741819169753
Iteration: 18, Func. Count: 192, Neg. LLF: 118.39676904034832
Iteration: 19, Func. Count: 203, Neg. LLF: 118.37181692418997
Iteration: 20, Func. Count: 212, Neg. LLF: 118.3718165482683
Optimization terminated successfully (Exit mode 0)
Current function value: 118.37181692418997
Iterations: 21
Function evaluations: 212
Gradient evaluations: 20
Iteration: 1, Func. Count: 12, Neg. LLF: 156.78271639821818
Iteration: 2, Func. Count: 26, Neg. LLF: 118.61718009245931
Iteration: 3, Func. Count: 37, Neg. LLF: 118.42884897397096
Iteration: 4, Func. Count: 48, Neg. LLF: 118.42593073637113
Iteration: 5, Func. Count: 60, Neg. LLF: 118.4088800911474
Iteration: 6, Func. Count: 71, Neg. LLF: 118.40515241064924
Iteration: 7, Func. Count: 82, Neg. LLF: 118.40428078130628
Iteration: 8, Func. Count: 93, Neg. LLF: 118.40419527878694
Iteration: 9, Func. Count: 104, Neg. LLF: 118.40408467550368
Iteration: 10, Func. Count: 115, Neg. LLF: 118.40406918665363
Iteration: 11, Func. Count: 126, Neg. LLF: 118.4040678234166
Iteration: 12, Func. Count: 136, Neg. LLF: 118.40406768226781
Optimization terminated successfully (Exit mode 0)
Current function value: 118.4040678234166
Iterations: 12
Function evaluations: 136
Gradient evaluations: 12
Iteration: 1, Func. Count: 13, Neg. LLF: 157.08936651617591
Iteration: 2, Func. Count: 28, Neg. LLF: 118.59437743683186
Iteration: 3, Func. Count: 40, Neg. LLF: 118.46082266257761
Iteration: 4, Func. Count: 52, Neg. LLF: 118.44182512161157
Iteration: 5, Func. Count: 64, Neg. LLF: 118.43044287841829
Iteration: 6, Func. Count: 76, Neg. LLF: 118.42136743966046
Iteration: 7, Func. Count: 88, Neg. LLF: 118.41452195328087
Iteration: 8, Func. Count: 100, Neg. LLF: 118.41258728243207
Iteration: 9, Func. Count: 112, Neg. LLF: 118.407010999731
Iteration: 10, Func. Count: 124, Neg. LLF: 118.40633052667154
Iteration: 11, Func. Count: 136, Neg. LLF: 118.49576934757614
Iteration: 12, Func. Count: 149, Neg. LLF: 118.4954513121669
Iteration: 13, Func. Count: 162, Neg. LLF: 118.40627677853189
Iteration: 14, Func. Count: 175, Neg. LLF: 118.4049344043604
Iteration: 15, Func. Count: 187, Neg. LLF: 118.40492225234303
Iteration: 16, Func. Count: 198, Neg. LLF: 118.4049221309711
Optimization terminated successfully (Exit mode 0)
Current function value: 118.40492225234303
Iterations: 16
Function evaluations: 198
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 132.81602331657453
Iteration: 2, Func. Count: 20, Neg. LLF: 196.80034210259697
Iteration: 3, Func. Count: 30, Neg. LLF: 122.1255777630197
Iteration: 4, Func. Count: 41, Neg. LLF: 120.3012365609005
Iteration: 5, Func. Count: 51, Neg. LLF: 118.64735411142874
Iteration: 6, Func. Count: 61, Neg. LLF: 118.27594804187473
Iteration: 7, Func. Count: 70, Neg. LLF: 118.2686015255845
Iteration: 8, Func. Count: 79, Neg. LLF: 119.46128984463492
Iteration: 9, Func. Count: 90, Neg. LLF: 118.25126457070206
Iteration: 10, Func. Count: 99, Neg. LLF: 118.24427669536142
Iteration: 11, Func. Count: 108, Neg. LLF: 118.2373323716541
Iteration: 12, Func. Count: 117, Neg. LLF: 118.23481683392397
Iteration: 13, Func. Count: 126, Neg. LLF: 118.23439020160846
Iteration: 14, Func. Count: 135, Neg. LLF: 118.23436711682523
Iteration: 15, Func. Count: 143, Neg. LLF: 118.23436711682062
Optimization terminated successfully (Exit mode 0)
Current function value: 118.23436711682523
Iterations: 15
Function evaluations: 143
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 139.72402997275847
Iteration: 2, Func. Count: 24, Neg. LLF: 122.35443769140323
Iteration: 3, Func. Count: 35, Neg. LLF: 179.42421939471706
Iteration: 4, Func. Count: 46, Neg. LLF: 172.71412442921124
Iteration: 5, Func. Count: 57, Neg. LLF: 120.91280851980095
Iteration: 6, Func. Count: 68, Neg. LLF: 125.1618379506926
Iteration: 7, Func. Count: 79, Neg. LLF: 119.18409524246717
Iteration: 8, Func. Count: 90, Neg. LLF: 117.37029018199308
Iteration: 9, Func. Count: 101, Neg. LLF: 116.84968477004988
Iteration: 10, Func. Count: 112, Neg. LLF: 116.7853849602665
Iteration: 11, Func. Count: 122, Neg. LLF: 116.76132375086958
Iteration: 12, Func. Count: 132, Neg. LLF: 116.72227175978878
Iteration: 13, Func. Count: 142, Neg. LLF: 116.71150218969525
Iteration: 14, Func. Count: 152, Neg. LLF: 116.70124076885006
Iteration: 15, Func. Count: 162, Neg. LLF: 116.68215390667359
Iteration: 16, Func. Count: 172, Neg. LLF: 116.65757669035253
Iteration: 17, Func. Count: 182, Neg. LLF: 116.63492695167469
Iteration: 18, Func. Count: 192, Neg. LLF: 116.6243404518404
Iteration: 19, Func. Count: 202, Neg. LLF: 116.61877897381368
Iteration: 20, Func. Count: 212, Neg. LLF: 116.61751159570022
Iteration: 21, Func. Count: 222, Neg. LLF: 116.61416754409774
Iteration: 22, Func. Count: 232, Neg. LLF: 116.61379785009643
Iteration: 23, Func. Count: 242, Neg. LLF: 116.61379634805165
Iteration: 24, Func. Count: 251, Neg. LLF: 116.61379634653098
Optimization terminated successfully (Exit mode 0)
Current function value: 116.61379634805165
Iterations: 24
Function evaluations: 251
Gradient evaluations: 24
Iteration: 1, Func. Count: 12, Neg. LLF: 158.80350165457892
Iteration: 2, Func. Count: 26, Neg. LLF: 118.71487450775994
Iteration: 3, Func. Count: 37, Neg. LLF: 119.00623810344764
Iteration: 4, Func. Count: 49, Neg. LLF: 118.52637220021859
Iteration: 5, Func. Count: 60, Neg. LLF: 120.42156222792961
Iteration: 6, Func. Count: 72, Neg. LLF: 118.4026469658592
Iteration: 7, Func. Count: 83, Neg. LLF: 118.3968449087068
Iteration: 8, Func. Count: 94, Neg. LLF: 118.39602904685462
Iteration: 9, Func. Count: 105, Neg. LLF: 118.39528436496848
Iteration: 10, Func. Count: 116, Neg. LLF: 118.39287581742704
Iteration: 11, Func. Count: 127, Neg. LLF: 118.39062247859864
Iteration: 12, Func. Count: 138, Neg. LLF: 118.38923313341073
Iteration: 13, Func. Count: 149, Neg. LLF: 118.38825361560403
Iteration: 14, Func. Count: 160, Neg. LLF: 118.38673545063912
Iteration: 15, Func. Count: 171, Neg. LLF: 118.37182471004141
Iteration: 16, Func. Count: 182, Neg. LLF: 119.01149439054375
Iteration: 17, Func. Count: 196, Neg. LLF: 118.37182799469575
Optimization terminated successfully (Exit mode 0)
Current function value: 118.37181945232679
Iterations: 18
Function evaluations: 197
Gradient evaluations: 17
Iteration: 1, Func. Count: 13, Neg. LLF: 121.6639451599419
Iteration: 2, Func. Count: 29, Neg. LLF: 156.3226518558506
Iteration: 3, Func. Count: 42, Neg. LLF: 158.40246428534988
Iteration: 4, Func. Count: 55, Neg. LLF: 147.06736010463752
Iteration: 5, Func. Count: 68, Neg. LLF: 135.60299928211637
Iteration: 6, Func. Count: 81, Neg. LLF: 149.39091218487087
Iteration: 7, Func. Count: 94, Neg. LLF: 119.26970200611619
Iteration: 8, Func. Count: 107, Neg. LLF: 118.31513477018255
Iteration: 9, Func. Count: 120, Neg. LLF: 117.38212703027239
Iteration: 10, Func. Count: 132, Neg. LLF: 117.05854521004211
Iteration: 11, Func. Count: 144, Neg. LLF: 116.85795612235276
Iteration: 12, Func. Count: 156, Neg. LLF: 116.81348068449223
Iteration: 13, Func. Count: 168, Neg. LLF: 116.67395705884198
Iteration: 14, Func. Count: 180, Neg. LLF: 116.53999860949052
Iteration: 15, Func. Count: 192, Neg. LLF: 116.4626700456377
Iteration: 16, Func. Count: 204, Neg. LLF: 116.445389186597
Iteration: 17, Func. Count: 216, Neg. LLF: 116.4385471409027
Iteration: 18, Func. Count: 228, Neg. LLF: 116.42911941797848
Iteration: 19, Func. Count: 240, Neg. LLF: 116.42133742709333
Iteration: 20, Func. Count: 252, Neg. LLF: 116.41236682608003
Iteration: 21, Func. Count: 264, Neg. LLF: 116.40715361243352
Iteration: 22, Func. Count: 276, Neg. LLF: 116.4057113466899
Iteration: 23, Func. Count: 288, Neg. LLF: 116.40555946035336
Iteration: 24, Func. Count: 300, Neg. LLF: 116.40554062613948
Iteration: 25, Func. Count: 312, Neg. LLF: 116.40553930933052
Iteration: 26, Func. Count: 323, Neg. LLF: 116.4055393093182
Optimization terminated successfully (Exit mode 0)
Current function value: 116.40553930933052
Iterations: 26
Function evaluations: 323
Gradient evaluations: 26
Iteration: 1, Func. Count: 14, Neg. LLF: 120.85644466650231
Iteration: 2, Func. Count: 31, Neg. LLF: 152.7369021552201
Iteration: 3, Func. Count: 45, Neg. LLF: 148.85024625447727
Iteration: 4, Func. Count: 59, Neg. LLF: 157.60349165779513
Iteration: 5, Func. Count: 73, Neg. LLF: 118.95580895602117
Iteration: 6, Func. Count: 87, Neg. LLF: 117.92011910125343
Iteration: 7, Func. Count: 101, Neg. LLF: 117.9592800979917
Iteration: 8, Func. Count: 115, Neg. LLF: 119.30654980612502
Iteration: 9, Func. Count: 130, Neg. LLF: 116.622734692953
Iteration: 10, Func. Count: 143, Neg. LLF: 116.47479222388331
Iteration: 11, Func. Count: 156, Neg. LLF: 116.44564538746039
Iteration: 12, Func. Count: 169, Neg. LLF: 116.38526486268952
Iteration: 13, Func. Count: 182, Neg. LLF: 116.3532082317118
Iteration: 14, Func. Count: 195, Neg. LLF: 116.33380017324785
Iteration: 15, Func. Count: 208, Neg. LLF: 116.32707616013894
Iteration: 16, Func. Count: 221, Neg. LLF: 116.32309937366064
Iteration: 17, Func. Count: 234, Neg. LLF: 116.32219509312397
Iteration: 18, Func. Count: 247, Neg. LLF: 116.32208000999731
Iteration: 19, Func. Count: 260, Neg. LLF: 116.32207136221835
Iteration: 20, Func. Count: 272, Neg. LLF: 116.32207133882072
Optimization terminated successfully (Exit mode 0)
Current function value: 116.32207136221835
Iterations: 20
Function evaluations: 272
Gradient evaluations: 20
Iteration: 1, Func. Count: 7, Neg. LLF: 126.9787089303157
Iteration: 2, Func. Count: 14, Neg. LLF: 121.20943771084448
Iteration: 3, Func. Count: 20, Neg. LLF: 121.81344153682417
Iteration: 4, Func. Count: 27, Neg. LLF: 120.42713311271193
Iteration: 5, Func. Count: 33, Neg. LLF: 670.8126767385925
Iteration: 6, Func. Count: 41, Neg. LLF: 121.6160752927351
Iteration: 7, Func. Count: 48, Neg. LLF: 872.8051536249402
Iteration: 8, Func. Count: 56, Neg. LLF: 120.17976080417036
Iteration: 9, Func. Count: 62, Neg. LLF: 120.17432379752807
Iteration: 10, Func. Count: 68, Neg. LLF: 120.17376304517923
Iteration: 11, Func. Count: 74, Neg. LLF: 120.1737479427387
Iteration: 12, Func. Count: 80, Neg. LLF: 120.17374615406985
Iteration: 13, Func. Count: 85, Neg. LLF: 120.17374615407809
Optimization terminated successfully (Exit mode 0)
Current function value: 120.17374615406985
Iterations: 13
Function evaluations: 85
Gradient evaluations: 13
Iteration: 1, Func. Count: 8, Neg. LLF: 162.52356746004136
Iteration: 2, Func. Count: 17, Neg. LLF: 118.61887537394827
Iteration: 3, Func. Count: 24, Neg. LLF: 139.14331685077244
Iteration: 4, Func. Count: 32, Neg. LLF: 118.37858794077673
Iteration: 5, Func. Count: 39, Neg. LLF: 118.37256943837728
Iteration: 6, Func. Count: 46, Neg. LLF: 118.37212777390097
Iteration: 7, Func. Count: 53, Neg. LLF: 118.37182005763603
Iteration: 8, Func. Count: 60, Neg. LLF: 118.37181696119181
Iteration: 9, Func. Count: 66, Neg. LLF: 118.37181733739949
Optimization terminated successfully (Exit mode 0)
Current function value: 118.37181696119181
Iterations: 9
Function evaluations: 66
Gradient evaluations: 9
Iteration: 1, Func. Count: 9, Neg. LLF: 158.11248106472416
Iteration: 2, Func. Count: 20, Neg. LLF: 118.64965117079525
Iteration: 3, Func. Count: 28, Neg. LLF: 118.86889664641183
Iteration: 4, Func. Count: 37, Neg. LLF: 118.47424587461677
Iteration: 5, Func. Count: 45, Neg. LLF: 118.45026098122021
Iteration: 6, Func. Count: 54, Neg. LLF: 118.39555070677686
Iteration: 7, Func. Count: 62, Neg. LLF: 118.3932860693381
Iteration: 8, Func. Count: 70, Neg. LLF: 118.3930533501167
Iteration: 9, Func. Count: 78, Neg. LLF: 118.39196482148085
Iteration: 10, Func. Count: 86, Neg. LLF: 118.38975279313551
Iteration: 11, Func. Count: 94, Neg. LLF: 118.38872477563879
Iteration: 12, Func. Count: 102, Neg. LLF: 118.38768964657663
Iteration: 13, Func. Count: 110, Neg. LLF: 118.37975953794292
Iteration: 14, Func. Count: 118, Neg. LLF: 118.37183151921624
Iteration: 15, Func. Count: 126, Neg. LLF: 122.54192314590547
Iteration: 16, Func. Count: 137, Neg. LLF: 118.37182130272132
Optimization terminated successfully (Exit mode 0)
Current function value: 118.37181692354332
Iterations: 17
Function evaluations: 138
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 156.01613108281293
Iteration: 2, Func. Count: 22, Neg. LLF: 118.5743262792328
Iteration: 3, Func. Count: 31, Neg. LLF: 118.42893907543615
Iteration: 4, Func. Count: 40, Neg. LLF: 118.42136763134503
Iteration: 5, Func. Count: 49, Neg. LLF: 118.40593823931655
Iteration: 6, Func. Count: 58, Neg. LLF: 118.4041262576298
Iteration: 7, Func. Count: 67, Neg. LLF: 118.40407238805011
Iteration: 8, Func. Count: 76, Neg. LLF: 118.40406796858284
Iteration: 9, Func. Count: 84, Neg. LLF: 118.40406782743918
Optimization terminated successfully (Exit mode 0)
Current function value: 118.40406796858284
Iterations: 9
Function evaluations: 84
Gradient evaluations: 9
Iteration: 1, Func. Count: 11, Neg. LLF: 155.9499328717357
Iteration: 2, Func. Count: 24, Neg. LLF: 131.48868772709025
Iteration: 3, Func. Count: 36, Neg. LLF: 118.75383585830727
Iteration: 4, Func. Count: 46, Neg. LLF: 118.4662080206297
Iteration: 5, Func. Count: 56, Neg. LLF: 118.44137085055372
Iteration: 6, Func. Count: 66, Neg. LLF: 118.43208900266593
Iteration: 7, Func. Count: 76, Neg. LLF: 118.42275456554215
Iteration: 8, Func. Count: 86, Neg. LLF: 118.41620589296363
Iteration: 9, Func. Count: 96, Neg. LLF: 118.41414962137644
Iteration: 10, Func. Count: 106, Neg. LLF: 118.41293633845645
Iteration: 11, Func. Count: 116, Neg. LLF: 118.40754499841557
Iteration: 12, Func. Count: 126, Neg. LLF: 118.40702008063451
Iteration: 13, Func. Count: 136, Neg. LLF: 118.40685674162526
Iteration: 14, Func. Count: 146, Neg. LLF: 118.40685200801356
Iteration: 15, Func. Count: 156, Neg. LLF: 118.40685118044412
Optimization terminated successfully (Exit mode 0)
Current function value: 118.40685118044412
Iterations: 15
Function evaluations: 156
Gradient evaluations: 15
Iteration: 1, Func. Count: 8, Neg. LLF: 126.86560117557913
Iteration: 2, Func. Count: 16, Neg. LLF: 121.02849834560284
Iteration: 3, Func. Count: 23, Neg. LLF: 121.48540324770201
Iteration: 4, Func. Count: 31, Neg. LLF: 124.60006776482913
Iteration: 5, Func. Count: 39, Neg. LLF: 120.35570118914387
Iteration: 6, Func. Count: 46, Neg. LLF: 129.1835521931087
Iteration: 7, Func. Count: 55, Neg. LLF: 121.21269972193684
Iteration: 8, Func. Count: 63, Neg. LLF: 120.20598785257238
Iteration: 9, Func. Count: 71, Neg. LLF: 120.17452804048865
Iteration: 10, Func. Count: 78, Neg. LLF: 120.17374819622756
Iteration: 11, Func. Count: 85, Neg. LLF: 120.1737462069125
Iteration: 12, Func. Count: 91, Neg. LLF: 120.17374614038332
Optimization terminated successfully (Exit mode 0)
Current function value: 120.1737462069125
Iterations: 12
Function evaluations: 91
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 164.42308510468584
Iteration: 2, Func. Count: 19, Neg. LLF: 118.67917615104238
Iteration: 3, Func. Count: 27, Neg. LLF: 171.59971296443106
Iteration: 4, Func. Count: 36, Neg. LLF: 118.37807929239487
Iteration: 5, Func. Count: 44, Neg. LLF: 118.37185357295314
Iteration: 6, Func. Count: 52, Neg. LLF: 118.37182997192654
Iteration: 7, Func. Count: 60, Neg. LLF: 118.37181705553776
Iteration: 8, Func. Count: 67, Neg. LLF: 118.37181743298244
Optimization terminated successfully (Exit mode 0)
Current function value: 118.37181705553776
Iterations: 8
Function evaluations: 67
Gradient evaluations: 8
Iteration: 1, Func. Count: 10, Neg. LLF: 158.72768459118396
Iteration: 2, Func. Count: 22, Neg. LLF: 118.72247236351464
Iteration: 3, Func. Count: 31, Neg. LLF: 118.79746273919194
Iteration: 4, Func. Count: 41, Neg. LLF: 118.46448847320136
Iteration: 5, Func. Count: 50, Neg. LLF: 124.11644147144136
Iteration: 6, Func. Count: 60, Neg. LLF: 118.39760929848336
Iteration: 7, Func. Count: 69, Neg. LLF: 118.39675204758446
Iteration: 8, Func. Count: 78, Neg. LLF: 118.39498715293514
Iteration: 9, Func. Count: 87, Neg. LLF: 118.39303936745762
Iteration: 10, Func. Count: 96, Neg. LLF: 118.39067186511262
Iteration: 11, Func. Count: 105, Neg. LLF: 118.38917691918931
Iteration: 12, Func. Count: 114, Neg. LLF: 118.38828655479283
Iteration: 13, Func. Count: 123, Neg. LLF: 118.3868442419872
Iteration: 14, Func. Count: 132, Neg. LLF: 118.37192389040939
Iteration: 15, Func. Count: 141, Neg. LLF: 118.37244297438542
Iteration: 16, Func. Count: 151, Neg. LLF: 118.47028422722798
Iteration: 17, Func. Count: 162, Neg. LLF: 118.3886656166602
Iteration: 18, Func. Count: 173, Neg. LLF: 118.37181692409364
Iteration: 19, Func. Count: 181, Neg. LLF: 118.37181654816341
Optimization terminated successfully (Exit mode 0)
Current function value: 118.37181692409364
Iterations: 20
Function evaluations: 181
Gradient evaluations: 19
Iteration: 1, Func. Count: 11, Neg. LLF: 155.5099238558557
Iteration: 2, Func. Count: 24, Neg. LLF: 118.62830681696421
Iteration: 3, Func. Count: 34, Neg. LLF: 118.424226878176
Iteration: 4, Func. Count: 44, Neg. LLF: 118.42619974835321
Iteration: 5, Func. Count: 55, Neg. LLF: 118.41840918788895
Iteration: 6, Func. Count: 65, Neg. LLF: 118.44442179983658
Iteration: 7, Func. Count: 76, Neg. LLF: 118.41054018411204
Iteration: 8, Func. Count: 86, Neg. LLF: 118.40805280784153
Iteration: 9, Func. Count: 96, Neg. LLF: 118.40768256997
Iteration: 10, Func. Count: 106, Neg. LLF: 118.40727763415255
Iteration: 11, Func. Count: 116, Neg. LLF: 118.40654370294044
Iteration: 12, Func. Count: 126, Neg. LLF: 118.40484742268565
Iteration: 13, Func. Count: 136, Neg. LLF: 118.49432863778063
Iteration: 14, Func. Count: 147, Neg. LLF: 118.49591182602957
Iteration: 15, Func. Count: 158, Neg. LLF: 118.40410402325712
Iteration: 16, Func. Count: 168, Neg. LLF: 118.40407203543342
Iteration: 17, Func. Count: 178, Neg. LLF: 118.40406832735947
Iteration: 18, Func. Count: 187, Neg. LLF: 118.40406818668578
Optimization terminated successfully (Exit mode 0)
Current function value: 118.40406832735947
Iterations: 18
Function evaluations: 187
Gradient evaluations: 18
Iteration: 1, Func. Count: 12, Neg. LLF: 154.76109968267934
Iteration: 2, Func. Count: 26, Neg. LLF: 138.36026768442602
Iteration: 3, Func. Count: 39, Neg. LLF: 118.78859889390873
Iteration: 4, Func. Count: 50, Neg. LLF: 118.46361309106696
Iteration: 5, Func. Count: 61, Neg. LLF: 118.43813409483937
Iteration: 6, Func. Count: 72, Neg. LLF: 118.42747880590005
Iteration: 7, Func. Count: 83, Neg. LLF: 118.41948058878349
Iteration: 8, Func. Count: 94, Neg. LLF: 118.41472835002682
Iteration: 9, Func. Count: 105, Neg. LLF: 118.41353505283053
Iteration: 10, Func. Count: 116, Neg. LLF: 118.40722442912933
Iteration: 11, Func. Count: 127, Neg. LLF: 118.40504740368213
Iteration: 12, Func. Count: 138, Neg. LLF: 118.41311202441324
Iteration: 13, Func. Count: 150, Neg. LLF: 118.40492863699808
Iteration: 14, Func. Count: 161, Neg. LLF: 118.40492234433177
Iteration: 15, Func. Count: 171, Neg. LLF: 118.40492222294077
Optimization terminated successfully (Exit mode 0)
Current function value: 118.40492234433177
Iterations: 15
Function evaluations: 171
Gradient evaluations: 15
Iteration: 1, Func. Count: 9, Neg. LLF: 126.87552368165592
Iteration: 2, Func. Count: 18, Neg. LLF: 122.93208470647363
Iteration: 3, Func. Count: 28, Neg. LLF: 121.00687725972402
Iteration: 4, Func. Count: 36, Neg. LLF: 121.04754983710211
Iteration: 5, Func. Count: 45, Neg. LLF: 125.33636291219042
Iteration: 6, Func. Count: 54, Neg. LLF: 120.33455286888262
Iteration: 7, Func. Count: 62, Neg. LLF: 127.70287400010466
Iteration: 8, Func. Count: 71, Neg. LLF: 120.16897424650931
Iteration: 9, Func. Count: 79, Neg. LLF: 120.1299484553094
Iteration: 10, Func. Count: 87, Neg. LLF: 120.12984064631976
Iteration: 11, Func. Count: 95, Neg. LLF: 120.12983198163981
Iteration: 12, Func. Count: 103, Neg. LLF: 120.129830717619
Iteration: 13, Func. Count: 110, Neg. LLF: 120.12983065785704
Optimization terminated successfully (Exit mode 0)
Current function value: 120.129830717619
Iterations: 13
Function evaluations: 110
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 130.89578201287367
Iteration: 2, Func. Count: 22, Neg. LLF: 119.20162500457594
Iteration: 3, Func. Count: 31, Neg. LLF: 132.2972305642641
Iteration: 4, Func. Count: 42, Neg. LLF: 119.15198313902754
Iteration: 5, Func. Count: 51, Neg. LLF: 118.95637923988508
Iteration: 6, Func. Count: 60, Neg. LLF: 118.43144240744054
Iteration: 7, Func. Count: 69, Neg. LLF: 118.37254639376641
Iteration: 8, Func. Count: 78, Neg. LLF: 118.37217487911705
Iteration: 9, Func. Count: 87, Neg. LLF: 121.75830481719983
Iteration: 10, Func. Count: 99, Neg. LLF: 118.37215553958795
Iteration: 11, Func. Count: 109, Neg. LLF: 118.37181692414052
Iteration: 12, Func. Count: 117, Neg. LLF: 118.37181730085135
Optimization terminated successfully (Exit mode 0)
Current function value: 118.37181692414052
Iterations: 13
Function evaluations: 117
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 158.52807784386616
Iteration: 2, Func. Count: 24, Neg. LLF: 118.71562484365113
Iteration: 3, Func. Count: 34, Neg. LLF: 118.80663709268217
Iteration: 4, Func. Count: 45, Neg. LLF: 118.47994769285545
Iteration: 5, Func. Count: 55, Neg. LLF: 122.9848797565609
Iteration: 6, Func. Count: 66, Neg. LLF: 118.39725426732203
Iteration: 7, Func. Count: 76, Neg. LLF: 118.39648657341871
Iteration: 8, Func. Count: 86, Neg. LLF: 118.39431509448733
Iteration: 9, Func. Count: 96, Neg. LLF: 118.39236478348738
Iteration: 10, Func. Count: 106, Neg. LLF: 118.39016085216977
Iteration: 11, Func. Count: 116, Neg. LLF: 118.38890425795655
Iteration: 12, Func. Count: 126, Neg. LLF: 118.3880086684866
Iteration: 13, Func. Count: 136, Neg. LLF: 118.38514365358273
Iteration: 14, Func. Count: 146, Neg. LLF: 118.3718817006042
Iteration: 15, Func. Count: 156, Neg. LLF: 118.50498309645819
Iteration: 16, Func. Count: 169, Neg. LLF: 118.39013849629023
Iteration: 17, Func. Count: 181, Neg. LLF: 118.37181692432709
Optimization terminated successfully (Exit mode 0)
Current function value: 118.37181692432709
Iterations: 18
Function evaluations: 181
Gradient evaluations: 17
Iteration: 1, Func. Count: 12, Neg. LLF: 155.44392475325424
Iteration: 2, Func. Count: 26, Neg. LLF: 118.62323866591439
Iteration: 3, Func. Count: 37, Neg. LLF: 118.4214888372287
Iteration: 4, Func. Count: 48, Neg. LLF: 118.4180849579107
Iteration: 5, Func. Count: 59, Neg. LLF: 118.41940253060106
Iteration: 6, Func. Count: 71, Neg. LLF: 118.41099774232713
Iteration: 7, Func. Count: 82, Neg. LLF: 118.40576944720713
Iteration: 8, Func. Count: 93, Neg. LLF: 118.40419695751564
Iteration: 9, Func. Count: 104, Neg. LLF: 118.4041298410695
Iteration: 10, Func. Count: 115, Neg. LLF: 118.40407379022342
Iteration: 11, Func. Count: 126, Neg. LLF: 118.40406799478639
Iteration: 12, Func. Count: 136, Neg. LLF: 118.404067853864
Optimization terminated successfully (Exit mode 0)
Current function value: 118.40406799478639
Iterations: 12
Function evaluations: 136
Gradient evaluations: 12
Iteration: 1, Func. Count: 13, Neg. LLF: 155.56541248398034
Iteration: 2, Func. Count: 28, Neg. LLF: 134.3057316382846
Iteration: 3, Func. Count: 42, Neg. LLF: 118.81080765112476
Iteration: 4, Func. Count: 54, Neg. LLF: 118.46047166544902
Iteration: 5, Func. Count: 66, Neg. LLF: 118.43795309352596
Iteration: 6, Func. Count: 78, Neg. LLF: 118.42675661620335
Iteration: 7, Func. Count: 90, Neg. LLF: 118.41901807783316
Iteration: 8, Func. Count: 102, Neg. LLF: 118.4148173070863
Iteration: 9, Func. Count: 114, Neg. LLF: 118.4137242058117
Iteration: 10, Func. Count: 126, Neg. LLF: 118.40690343720534
Iteration: 11, Func. Count: 138, Neg. LLF: 118.40500552896356
Iteration: 12, Func. Count: 150, Neg. LLF: 118.4095711550069
Iteration: 13, Func. Count: 163, Neg. LLF: 118.40493635190363
Iteration: 14, Func. Count: 175, Neg. LLF: 118.40492220983988
Iteration: 15, Func. Count: 186, Neg. LLF: 118.40492208829224
Optimization terminated successfully (Exit mode 0)
Current function value: 118.40492220983988
Iterations: 15
Function evaluations: 186
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 127.75668482105867
Iteration: 2, Func. Count: 20, Neg. LLF: 123.40181763968175
Iteration: 3, Func. Count: 30, Neg. LLF: 120.76301536354268
Iteration: 4, Func. Count: 39, Neg. LLF: 121.82088823826429
Iteration: 5, Func. Count: 50, Neg. LLF: 123.31027301840474
Iteration: 6, Func. Count: 62, Neg. LLF: 120.21749380710732
Iteration: 7, Func. Count: 71, Neg. LLF: 119.97599049656431
Iteration: 8, Func. Count: 80, Neg. LLF: 119.96086726939834
Iteration: 9, Func. Count: 89, Neg. LLF: 119.9544934898006
Iteration: 10, Func. Count: 98, Neg. LLF: 119.9523659485855
Iteration: 11, Func. Count: 107, Neg. LLF: 119.95225294997928
Iteration: 12, Func. Count: 116, Neg. LLF: 119.95225169747538
Iteration: 13, Func. Count: 124, Neg. LLF: 119.95225165066913
Optimization terminated successfully (Exit mode 0)
Current function value: 119.95225169747538
Iterations: 13
Function evaluations: 124
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 129.70439939412836
Iteration: 2, Func. Count: 24, Neg. LLF: 119.28004755705577
Iteration: 3, Func. Count: 34, Neg. LLF: 132.20478636289204
Iteration: 4, Func. Count: 46, Neg. LLF: 118.86382778570055
Iteration: 5, Func. Count: 56, Neg. LLF: 118.64005276007971
Iteration: 6, Func. Count: 66, Neg. LLF: 135.69907106897412
Iteration: 7, Func. Count: 78, Neg. LLF: 118.4254217606101
Iteration: 8, Func. Count: 88, Neg. LLF: 118.3721563656996
Iteration: 9, Func. Count: 98, Neg. LLF: 118.3718224772253
Iteration: 10, Func. Count: 108, Neg. LLF: 118.3718169538246
Iteration: 11, Func. Count: 117, Neg. LLF: 118.37181733065175
Optimization terminated successfully (Exit mode 0)
Current function value: 118.3718169538246
Iterations: 11
Function evaluations: 117
Gradient evaluations: 11
Iteration: 1, Func. Count: 12, Neg. LLF: 146.41376638758265
Iteration: 2, Func. Count: 26, Neg. LLF: 136.1925103362721
Iteration: 3, Func. Count: 39, Neg. LLF: 118.79720635366442
Iteration: 4, Func. Count: 50, Neg. LLF: 118.68422983941167
Iteration: 5, Func. Count: 61, Neg. LLF: 119.38896289411296
Iteration: 6, Func. Count: 73, Neg. LLF: 119.06546568860882
Iteration: 7, Func. Count: 85, Neg. LLF: 118.39528137452378
Iteration: 8, Func. Count: 96, Neg. LLF: 118.39450424778401
Iteration: 9, Func. Count: 107, Neg. LLF: 118.39297307014272
Iteration: 10, Func. Count: 118, Neg. LLF: 118.39085083269343
Iteration: 11, Func. Count: 129, Neg. LLF: 118.38916852359351
Iteration: 12, Func. Count: 140, Neg. LLF: 118.38826425554414
Iteration: 13, Func. Count: 151, Neg. LLF: 118.3869874970143
Iteration: 14, Func. Count: 162, Neg. LLF: 118.3720705233207
Iteration: 15, Func. Count: 173, Neg. LLF: 120.67368611996574
Iteration: 16, Func. Count: 187, Neg. LLF: 118.40474914528765
Iteration: 17, Func. Count: 199, Neg. LLF: 118.3718169241347
Iteration: 18, Func. Count: 209, Neg. LLF: 118.3718165482323
Optimization terminated successfully (Exit mode 0)
Current function value: 118.3718169241347
Iterations: 19
Function evaluations: 209
Gradient evaluations: 18
Iteration: 1, Func. Count: 13, Neg. LLF: 127.19335879201866
Iteration: 2, Func. Count: 29, Neg. LLF: 119.19744290801997
Iteration: 3, Func. Count: 41, Neg. LLF: 119.70656899921059
Iteration: 4, Func. Count: 54, Neg. LLF: 2901.284385676369
Iteration: 5, Func. Count: 67, Neg. LLF: 119.41298239761423
Iteration: 6, Func. Count: 80, Neg. LLF: 118.85111131789266
Iteration: 7, Func. Count: 93, Neg. LLF: 118.3938787339485
Iteration: 8, Func. Count: 105, Neg. LLF: 118.37527255198802
Iteration: 9, Func. Count: 117, Neg. LLF: 118.34744467340523
Iteration: 10, Func. Count: 129, Neg. LLF: 118.78794323161851
Iteration: 11, Func. Count: 142, Neg. LLF: 118.80536568767305
Iteration: 12, Func. Count: 155, Neg. LLF: 119.26356693226612
Iteration: 13, Func. Count: 168, Neg. LLF: 118.75968988077385
Iteration: 14, Func. Count: 181, Neg. LLF: 118.31821708246387
Iteration: 15, Func. Count: 194, Neg. LLF: 118.31659586881717
Iteration: 16, Func. Count: 206, Neg. LLF: 118.31617886885205
Iteration: 17, Func. Count: 218, Neg. LLF: 118.31552509106729
Iteration: 18, Func. Count: 230, Neg. LLF: 118.31463164765529
Iteration: 19, Func. Count: 242, Neg. LLF: 118.3141335632364
Iteration: 20, Func. Count: 254, Neg. LLF: 118.3140177953031
Iteration: 21, Func. Count: 266, Neg. LLF: 118.31400304121475
Iteration: 22, Func. Count: 277, Neg. LLF: 118.31400291732976
Optimization terminated successfully (Exit mode 0)
Current function value: 118.31400304121475
Iterations: 22
Function evaluations: 277
Gradient evaluations: 22
Iteration: 1, Func. Count: 14, Neg. LLF: 128.472331774442
Iteration: 2, Func. Count: 31, Neg. LLF: 119.06685595415072
Iteration: 3, Func. Count: 44, Neg. LLF: 118.40392211922764
Iteration: 4, Func. Count: 57, Neg. LLF: 118.37496679776778
Iteration: 5, Func. Count: 70, Neg. LLF: 119.90895214795923
Iteration: 6, Func. Count: 84, Neg. LLF: 118.29214327455013
Iteration: 7, Func. Count: 97, Neg. LLF: 118.90473684612576
Iteration: 8, Func. Count: 111, Neg. LLF: 119.44664436317801
Iteration: 9, Func. Count: 125, Neg. LLF: 118.8834795155855
Iteration: 10, Func. Count: 139, Neg. LLF: 118.38344530086475
Iteration: 11, Func. Count: 153, Neg. LLF: 119.29838039486
Iteration: 12, Func. Count: 167, Neg. LLF: 118.25284127296544
Iteration: 13, Func. Count: 180, Neg. LLF: 118.25224192777749
Iteration: 14, Func. Count: 193, Neg. LLF: 118.25089956907675
Iteration: 15, Func. Count: 206, Neg. LLF: 118.24811841300777
Iteration: 16, Func. Count: 219, Neg. LLF: 118.24553750458148
Iteration: 17, Func. Count: 232, Neg. LLF: 118.24349430571012
Iteration: 18, Func. Count: 245, Neg. LLF: 118.24265148003484
Iteration: 19, Func. Count: 258, Neg. LLF: 118.24244958309346
Iteration: 20, Func. Count: 271, Neg. LLF: 118.24244521618829
Iteration: 21, Func. Count: 283, Neg. LLF: 118.24244510075695
Optimization terminated successfully (Exit mode 0)
Current function value: 118.24244521618829
Iterations: 21
Function evaluations: 283
Gradient evaluations: 21
Iteration: 1, Func. Count: 11, Neg. LLF: 124.58113139153551
Iteration: 2, Func. Count: 22, Neg. LLF: 136.026645919144
Iteration: 3, Func. Count: 33, Neg. LLF: 122.38915972946117
Iteration: 4, Func. Count: 46, Neg. LLF: 126.66425450509657
Iteration: 5, Func. Count: 57, Neg. LLF: 118.9137471178293
Iteration: 6, Func. Count: 68, Neg. LLF: 119.67718024548783
Iteration: 7, Func. Count: 79, Neg. LLF: 117.35897961588407
Iteration: 8, Func. Count: 89, Neg. LLF: 117.2947717169792
Iteration: 9, Func. Count: 99, Neg. LLF: 117.28203111316546
Iteration: 10, Func. Count: 109, Neg. LLF: 117.275739688932
Iteration: 11, Func. Count: 119, Neg. LLF: 117.27523100571017
Iteration: 12, Func. Count: 129, Neg. LLF: 117.27496151801986
Iteration: 13, Func. Count: 139, Neg. LLF: 117.27471414219512
Iteration: 14, Func. Count: 149, Neg. LLF: 117.27465210643385
Iteration: 15, Func. Count: 159, Neg. LLF: 117.27464542606272
Iteration: 16, Func. Count: 168, Neg. LLF: 117.27464542605462
Optimization terminated successfully (Exit mode 0)
Current function value: 117.27464542606272
Iterations: 16
Function evaluations: 168
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 128.94872401799267
Iteration: 2, Func. Count: 26, Neg. LLF: 128.36697474891673
Iteration: 3, Func. Count: 38, Neg. LLF: 157.23507696932444
Iteration: 4, Func. Count: 50, Neg. LLF: 152.62325956315277
Iteration: 5, Func. Count: 62, Neg. LLF: 168.91717781036888
Iteration: 6, Func. Count: 75, Neg. LLF: 119.27706913846124
Iteration: 7, Func. Count: 87, Neg. LLF: 119.20480511060214
Iteration: 8, Func. Count: 99, Neg. LLF: 119.12662923307921
Iteration: 9, Func. Count: 111, Neg. LLF: 118.77301399003333
Iteration: 10, Func. Count: 122, Neg. LLF: 118.21945959624017
Iteration: 11, Func. Count: 133, Neg. LLF: 118.6020326320591
Iteration: 12, Func. Count: 145, Neg. LLF: 118.43541803970324
Iteration: 13, Func. Count: 157, Neg. LLF: 116.55778367339529
Iteration: 14, Func. Count: 168, Neg. LLF: 116.27641696432536
Iteration: 15, Func. Count: 179, Neg. LLF: 116.1712299965351
Iteration: 16, Func. Count: 190, Neg. LLF: 116.06804877112482
Iteration: 17, Func. Count: 201, Neg. LLF: 116.02939860530641
Iteration: 18, Func. Count: 212, Neg. LLF: 116.01650478377552
Iteration: 19, Func. Count: 223, Neg. LLF: 116.01598090095278
Iteration: 20, Func. Count: 234, Neg. LLF: 116.01551684804234
Iteration: 21, Func. Count: 245, Neg. LLF: 116.01550774436791
Iteration: 22, Func. Count: 256, Neg. LLF: 116.01549332011412
Iteration: 23, Func. Count: 267, Neg. LLF: 116.01548779107684
Iteration: 24, Func. Count: 278, Neg. LLF: 116.01548650060025
Iteration: 25, Func. Count: 288, Neg. LLF: 116.01548649795382
Optimization terminated successfully (Exit mode 0)
Current function value: 116.01548650060025
Iterations: 25
Function evaluations: 288
Gradient evaluations: 25
Iteration: 1, Func. Count: 13, Neg. LLF: 144.07614939967377
Iteration: 2, Func. Count: 28, Neg. LLF: 132.41770827566364
Iteration: 3, Func. Count: 42, Neg. LLF: 122.72606754583636
Iteration: 4, Func. Count: 55, Neg. LLF: 118.73819124423247
Iteration: 5, Func. Count: 67, Neg. LLF: 118.68015809893205
Iteration: 6, Func. Count: 79, Neg. LLF: 119.15264312134958
Iteration: 7, Func. Count: 92, Neg. LLF: 118.9686884669405
Iteration: 8, Func. Count: 105, Neg. LLF: 118.35716989053891
Iteration: 9, Func. Count: 117, Neg. LLF: 118.33902943878631
Iteration: 10, Func. Count: 129, Neg. LLF: 118.32818580481792
Iteration: 11, Func. Count: 141, Neg. LLF: 118.32537064937911
Iteration: 12, Func. Count: 153, Neg. LLF: 118.32237438330098
Iteration: 13, Func. Count: 165, Neg. LLF: 118.32167259635284
Iteration: 14, Func. Count: 177, Neg. LLF: 118.32134027200087
Iteration: 15, Func. Count: 189, Neg. LLF: 118.3213141185218
Iteration: 16, Func. Count: 201, Neg. LLF: 118.32131241239964
Iteration: 17, Func. Count: 212, Neg. LLF: 118.32131226875357
Optimization terminated successfully (Exit mode 0)
Current function value: 118.32131241239964
Iterations: 17
Function evaluations: 212
Gradient evaluations: 17
Iteration: 1, Func. Count: 14, Neg. LLF: 120.82242146875738
Iteration: 2, Func. Count: 31, Neg. LLF: 185.88859787145165
Iteration: 3, Func. Count: 45, Neg. LLF: 157.59059851427236
Iteration: 4, Func. Count: 59, Neg. LLF: 143.42612285312288
Iteration: 5, Func. Count: 73, Neg. LLF: 162.85630387384708
Iteration: 6, Func. Count: 88, Neg. LLF: 118.24119246470364
Iteration: 7, Func. Count: 102, Neg. LLF: 120.44795441846833
Iteration: 8, Func. Count: 116, Neg. LLF: 117.96763959958841
Iteration: 9, Func. Count: 130, Neg. LLF: 123.7480275636561
Iteration: 10, Func. Count: 144, Neg. LLF: 117.68414182201515
Iteration: 11, Func. Count: 158, Neg. LLF: 116.69984667686603
Iteration: 12, Func. Count: 171, Neg. LLF: 116.32653465388547
Iteration: 13, Func. Count: 184, Neg. LLF: 116.18373742599908
Iteration: 14, Func. Count: 197, Neg. LLF: 116.00359763768088
Iteration: 15, Func. Count: 210, Neg. LLF: 115.94442421873177
Iteration: 16, Func. Count: 223, Neg. LLF: 115.90999838436372
Iteration: 17, Func. Count: 236, Neg. LLF: 115.8861129881985
Iteration: 18, Func. Count: 249, Neg. LLF: 115.87000482405615
Iteration: 19, Func. Count: 262, Neg. LLF: 115.85803636731562
Iteration: 20, Func. Count: 275, Neg. LLF: 115.8525593818342
Iteration: 21, Func. Count: 288, Neg. LLF: 115.8510540965494
Iteration: 22, Func. Count: 301, Neg. LLF: 115.85083711387851
Iteration: 23, Func. Count: 314, Neg. LLF: 115.8508036397275
Iteration: 24, Func. Count: 327, Neg. LLF: 115.85079792291621
Iteration: 25, Func. Count: 340, Neg. LLF: 115.85079519560861
Iteration: 26, Func. Count: 352, Neg. LLF: 115.85079519557947
Optimization terminated successfully (Exit mode 0)
Current function value: 115.85079519560861
Iterations: 26
Function evaluations: 352
Gradient evaluations: 26
Iteration: 1, Func. Count: 15, Neg. LLF: 121.41270356888974
Iteration: 2, Func. Count: 33, Neg. LLF: 205.57496317200926
Iteration: 3, Func. Count: 48, Neg. LLF: 164.30323169750443
Iteration: 4, Func. Count: 63, Neg. LLF: 142.96282066299742
Iteration: 5, Func. Count: 78, Neg. LLF: 167.36626215854275
Iteration: 6, Func. Count: 93, Neg. LLF: 120.22419545039378
Iteration: 7, Func. Count: 108, Neg. LLF: 136.20528853786297
Iteration: 8, Func. Count: 123, Neg. LLF: 115.79645265607013
Iteration: 9, Func. Count: 137, Neg. LLF: 115.74460010659156
Iteration: 10, Func. Count: 151, Neg. LLF: 119.62402913218581
Iteration: 11, Func. Count: 167, Neg. LLF: 115.80450942169668
Iteration: 12, Func. Count: 182, Neg. LLF: 115.68426007969775
Iteration: 13, Func. Count: 196, Neg. LLF: 115.65788221420543
Iteration: 14, Func. Count: 210, Neg. LLF: 115.6357786289892
Iteration: 15, Func. Count: 224, Neg. LLF: 115.61476445370589
Iteration: 16, Func. Count: 238, Neg. LLF: 115.60360994685057
Iteration: 17, Func. Count: 252, Neg. LLF: 115.5974278269084
Iteration: 18, Func. Count: 266, Neg. LLF: 115.59642907443147
Iteration: 19, Func. Count: 280, Neg. LLF: 115.59624606283948
Iteration: 20, Func. Count: 294, Neg. LLF: 115.59623574567414
Iteration: 21, Func. Count: 307, Neg. LLF: 115.59623571760264
Optimization terminated successfully (Exit mode 0)
Current function value: 115.59623574567414
Iterations: 21
Function evaluations: 307
Gradient evaluations: 21
Iteration: 1, Func. Count: 8, Neg. LLF: 123.74262715894857
Iteration: 2, Func. Count: 16, Neg. LLF: 123.94727979622945
Iteration: 3, Func. Count: 25, Neg. LLF: 135.04018501000166
Iteration: 4, Func. Count: 33, Neg. LLF: 120.14992677596318
Iteration: 5, Func. Count: 40, Neg. LLF: 131.35975513561806
Iteration: 6, Func. Count: 48, Neg. LLF: 120.37741825968004
Iteration: 7, Func. Count: 56, Neg. LLF: 119.88030533315197
Iteration: 8, Func. Count: 63, Neg. LLF: 119.88142482850715
Iteration: 9, Func. Count: 71, Neg. LLF: 119.87519905373689
Iteration: 10, Func. Count: 78, Neg. LLF: 119.87515630690362
Iteration: 11, Func. Count: 85, Neg. LLF: 119.8751387944606
Iteration: 12, Func. Count: 91, Neg. LLF: 119.87513879446493
Optimization terminated successfully (Exit mode 0)
Current function value: 119.8751387944606
Iterations: 12
Function evaluations: 91
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 162.95747644408388
Iteration: 2, Func. Count: 19, Neg. LLF: 119.17046348212885
Iteration: 3, Func. Count: 27, Neg. LLF: 122.68934906075685
Iteration: 4, Func. Count: 36, Neg. LLF: 118.5459643047105
Iteration: 5, Func. Count: 44, Neg. LLF: 118.44293501489621
Iteration: 6, Func. Count: 52, Neg. LLF: 119.30394178446512
Iteration: 7, Func. Count: 61, Neg. LLF: 118.37244559663833
Iteration: 8, Func. Count: 69, Neg. LLF: 118.37182230082679
Iteration: 9, Func. Count: 77, Neg. LLF: 118.37181693400743
Iteration: 10, Func. Count: 84, Neg. LLF: 118.37181731062674
Optimization terminated successfully (Exit mode 0)
Current function value: 118.37181693400743
Iterations: 10
Function evaluations: 84
Gradient evaluations: 10
Iteration: 1, Func. Count: 10, Neg. LLF: 158.35387209898173
Iteration: 2, Func. Count: 22, Neg. LLF: 118.64241602267343
Iteration: 3, Func. Count: 31, Neg. LLF: 118.8460242776775
Iteration: 4, Func. Count: 41, Neg. LLF: 118.46409700941864
Iteration: 5, Func. Count: 50, Neg. LLF: 118.47937241982098
Iteration: 6, Func. Count: 60, Neg. LLF: 118.39777346189483
Iteration: 7, Func. Count: 69, Neg. LLF: 118.39273595829187
Iteration: 8, Func. Count: 78, Neg. LLF: 118.39254543777099
Iteration: 9, Func. Count: 87, Neg. LLF: 118.39165104531412
Iteration: 10, Func. Count: 96, Neg. LLF: 118.38953111084828
Iteration: 11, Func. Count: 105, Neg. LLF: 118.38857775870864
Iteration: 12, Func. Count: 114, Neg. LLF: 118.38745021343358
Iteration: 13, Func. Count: 123, Neg. LLF: 118.37506309790857
Iteration: 14, Func. Count: 132, Neg. LLF: 118.37187981010207
Iteration: 15, Func. Count: 141, Neg. LLF: 122.79049334948051
Iteration: 16, Func. Count: 153, Neg. LLF: 118.57975518743395
Iteration: 17, Func. Count: 165, Neg. LLF: 118.37181695884678
Iteration: 18, Func. Count: 173, Neg. LLF: 118.37181658294327
Optimization terminated successfully (Exit mode 0)
Current function value: 118.37181695884678
Iterations: 19
Function evaluations: 173
Gradient evaluations: 18
Iteration: 1, Func. Count: 11, Neg. LLF: 155.9816570683512
Iteration: 2, Func. Count: 24, Neg. LLF: 119.26674732124026
Iteration: 3, Func. Count: 34, Neg. LLF: 118.55088316731285
Iteration: 4, Func. Count: 44, Neg. LLF: 120.75450897369036
Iteration: 5, Func. Count: 55, Neg. LLF: 118.45370982623744
Iteration: 6, Func. Count: 65, Neg. LLF: 118.41194978545526
Iteration: 7, Func. Count: 75, Neg. LLF: 118.40765318231252
Iteration: 8, Func. Count: 85, Neg. LLF: 118.40499584999802
Iteration: 9, Func. Count: 95, Neg. LLF: 118.40133294965905
Iteration: 10, Func. Count: 105, Neg. LLF: 118.39732133618045
Iteration: 11, Func. Count: 115, Neg. LLF: 118.39588141382558
Iteration: 12, Func. Count: 125, Neg. LLF: 118.39549293330353
Iteration: 13, Func. Count: 135, Neg. LLF: 118.39449514202383
Iteration: 14, Func. Count: 145, Neg. LLF: 118.39277646444717
Iteration: 15, Func. Count: 155, Neg. LLF: 118.38921798027178
Iteration: 16, Func. Count: 165, Neg. LLF: 118.38453789365444
Iteration: 17, Func. Count: 175, Neg. LLF: 118.37462288160322
Iteration: 18, Func. Count: 185, Neg. LLF: 145.62743872651046
Iteration: 19, Func. Count: 198, Neg. LLF: 118.37255268857923
Iteration: 20, Func. Count: 209, Neg. LLF: 118.37181695663678
Iteration: 21, Func. Count: 218, Neg. LLF: 118.37181658201715
Optimization terminated successfully (Exit mode 0)
Current function value: 118.37181695663678
Iterations: 22
Function evaluations: 218
Gradient evaluations: 21
Iteration: 1, Func. Count: 12, Neg. LLF: 155.97703556107913
Iteration: 2, Func. Count: 26, Neg. LLF: 162.30558426770494
Iteration: 3, Func. Count: 39, Neg. LLF: 118.59115630115133
Iteration: 4, Func. Count: 50, Neg. LLF: 118.46694682417765
Iteration: 5, Func. Count: 61, Neg. LLF: 118.43636744962194
Iteration: 6, Func. Count: 72, Neg. LLF: 118.42639161711115
Iteration: 7, Func. Count: 83, Neg. LLF: 118.41858233261414
Iteration: 8, Func. Count: 94, Neg. LLF: 118.41352555206547
Iteration: 9, Func. Count: 105, Neg. LLF: 118.41091130271478
Iteration: 10, Func. Count: 116, Neg. LLF: 118.40714663304064
Iteration: 11, Func. Count: 127, Neg. LLF: 118.40709949953587
Iteration: 12, Func. Count: 138, Neg. LLF: 118.40708961940334
Iteration: 13, Func. Count: 149, Neg. LLF: 118.40708156460217
Iteration: 14, Func. Count: 160, Neg. LLF: 118.40694544736806
Iteration: 15, Func. Count: 171, Neg. LLF: 118.40771201694814
Iteration: 16, Func. Count: 183, Neg. LLF: 118.40687912157985
Iteration: 17, Func. Count: 194, Neg. LLF: 118.40685118026543
Iteration: 18, Func. Count: 204, Neg. LLF: 118.40685106526657
Optimization terminated successfully (Exit mode 0)
Current function value: 118.40685118026543
Iterations: 18
Function evaluations: 204
Gradient evaluations: 18
Iteration: 1, Func. Count: 9, Neg. LLF: 123.80516491710803
Iteration: 2, Func. Count: 18, Neg. LLF: 124.15964971607913
Iteration: 3, Func. Count: 28, Neg. LLF: 146.58633752536593
Iteration: 4, Func. Count: 37, Neg. LLF: 120.123559160002
Iteration: 5, Func. Count: 45, Neg. LLF: 131.71775289391616
Iteration: 6, Func. Count: 54, Neg. LLF: 120.4077557769355
Iteration: 7, Func. Count: 63, Neg. LLF: 119.8811136668043
Iteration: 8, Func. Count: 71, Neg. LLF: 119.87788724842426
Iteration: 9, Func. Count: 79, Neg. LLF: 119.87527804375429
Iteration: 10, Func. Count: 87, Neg. LLF: 119.87517878040049
Iteration: 11, Func. Count: 95, Neg. LLF: 119.87514079748811
Iteration: 12, Func. Count: 103, Neg. LLF: 119.87513873295838
Iteration: 13, Func. Count: 110, Neg. LLF: 119.8751386660586
Optimization terminated successfully (Exit mode 0)
Current function value: 119.87513873295838
Iterations: 13
Function evaluations: 110
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 164.83467481016353
Iteration: 2, Func. Count: 21, Neg. LLF: 125.15258605454525
Iteration: 3, Func. Count: 32, Neg. LLF: 118.7662036469633
Iteration: 4, Func. Count: 41, Neg. LLF: 176.91667106594798
Iteration: 5, Func. Count: 51, Neg. LLF: 118.49872988634908
Iteration: 6, Func. Count: 60, Neg. LLF: 118.37190582159077
Iteration: 7, Func. Count: 69, Neg. LLF: 118.37183759979139
Iteration: 8, Func. Count: 78, Neg. LLF: 118.37181692619568
Iteration: 9, Func. Count: 86, Neg. LLF: 118.371817302843
Optimization terminated successfully (Exit mode 0)
Current function value: 118.37181692619568
Iterations: 9
Function evaluations: 86
Gradient evaluations: 9
Iteration: 1, Func. Count: 11, Neg. LLF: 158.95881979321226
Iteration: 2, Func. Count: 24, Neg. LLF: 118.71009962744594
Iteration: 3, Func. Count: 34, Neg. LLF: 118.81425016157958
Iteration: 4, Func. Count: 45, Neg. LLF: 118.50653109544687
Iteration: 5, Func. Count: 55, Neg. LLF: 121.12569217524506
Iteration: 6, Func. Count: 66, Neg. LLF: 118.39639794109702
Iteration: 7, Func. Count: 76, Neg. LLF: 118.39570585051109
Iteration: 8, Func. Count: 86, Neg. LLF: 118.39431300502733
Iteration: 9, Func. Count: 96, Neg. LLF: 118.39260714160699
Iteration: 10, Func. Count: 106, Neg. LLF: 118.39047119354312
Iteration: 11, Func. Count: 116, Neg. LLF: 118.38899617159939
Iteration: 12, Func. Count: 126, Neg. LLF: 118.38812659143451
Iteration: 13, Func. Count: 136, Neg. LLF: 118.38631380417294
Iteration: 14, Func. Count: 146, Neg. LLF: 118.372153334527
Iteration: 15, Func. Count: 156, Neg. LLF: 127.34825382343135
Iteration: 16, Func. Count: 169, Neg. LLF: 118.37791361971722
Iteration: 17, Func. Count: 179, Neg. LLF: 118.3718165974895
Optimization terminated successfully (Exit mode 0)
Current function value: 118.37181697282668
Iterations: 18
Function evaluations: 179
Gradient evaluations: 17
Iteration: 1, Func. Count: 12, Neg. LLF: 155.4795511670621
Iteration: 2, Func. Count: 26, Neg. LLF: 122.85312324833284
Iteration: 3, Func. Count: 38, Neg. LLF: 119.41718509307002
Iteration: 4, Func. Count: 50, Neg. LLF: 118.51263913810007
Iteration: 5, Func. Count: 61, Neg. LLF: 133.33116120147943
Iteration: 6, Func. Count: 73, Neg. LLF: 118.23824868773957
Iteration: 7, Func. Count: 84, Neg. LLF: 118.06996932736834
Iteration: 8, Func. Count: 95, Neg. LLF: 118.04262032121872
Iteration: 9, Func. Count: 106, Neg. LLF: 118.03242113374812
Iteration: 10, Func. Count: 117, Neg. LLF: 118.03208405141213
Iteration: 11, Func. Count: 128, Neg. LLF: 118.03207719495957
Iteration: 12, Func. Count: 138, Neg. LLF: 118.03207702427912
Optimization terminated successfully (Exit mode 0)
Current function value: 118.03207719495957
Iterations: 12
Function evaluations: 138
Gradient evaluations: 12
Iteration: 1, Func. Count: 13, Neg. LLF: 154.78957937594026
Iteration: 2, Func. Count: 28, Neg. LLF: 188.20933668123217
Iteration: 3, Func. Count: 42, Neg. LLF: 118.64919576489719
Iteration: 4, Func. Count: 54, Neg. LLF: 118.46729562837625
Iteration: 5, Func. Count: 66, Neg. LLF: 118.43333366339763
Iteration: 6, Func. Count: 78, Neg. LLF: 118.42317617255725
Iteration: 7, Func. Count: 90, Neg. LLF: 118.41717123617607
Iteration: 8, Func. Count: 102, Neg. LLF: 118.41220881550802
Iteration: 9, Func. Count: 114, Neg. LLF: 118.4071589002924
Iteration: 10, Func. Count: 126, Neg. LLF: 118.40704307166051
Iteration: 11, Func. Count: 138, Neg. LLF: 118.4069724546524
Iteration: 12, Func. Count: 150, Neg. LLF: 118.40760844813727
Iteration: 13, Func. Count: 163, Neg. LLF: 118.40688298615616
Iteration: 14, Func. Count: 175, Neg. LLF: 118.40685845447231
Iteration: 15, Func. Count: 187, Neg. LLF: 118.4068516954346
Iteration: 16, Func. Count: 199, Neg. LLF: 118.4068511622472
Optimization terminated successfully (Exit mode 0)
Current function value: 118.4068511622472
Iterations: 16
Function evaluations: 199
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 123.78477507362453
Iteration: 2, Func. Count: 20, Neg. LLF: 124.07977765054707
Iteration: 3, Func. Count: 31, Neg. LLF: 146.23414315282002
Iteration: 4, Func. Count: 41, Neg. LLF: 120.4021806002937
Iteration: 5, Func. Count: 50, Neg. LLF: 121.89180125018257
Iteration: 6, Func. Count: 60, Neg. LLF: 120.08902372878168
Iteration: 7, Func. Count: 69, Neg. LLF: 120.19666376479405
Iteration: 8, Func. Count: 79, Neg. LLF: 120.22291964724174
Iteration: 9, Func. Count: 89, Neg. LLF: 119.80427303274335
Iteration: 10, Func. Count: 98, Neg. LLF: 119.79457121715927
Iteration: 11, Func. Count: 107, Neg. LLF: 119.790026567409
Iteration: 12, Func. Count: 116, Neg. LLF: 119.78956307245767
Iteration: 13, Func. Count: 125, Neg. LLF: 119.78953869847709
Iteration: 14, Func. Count: 133, Neg. LLF: 119.78953864620495
Optimization terminated successfully (Exit mode 0)
Current function value: 119.78953869847709
Iterations: 14
Function evaluations: 133
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 125.92396465053054
Iteration: 2, Func. Count: 25, Neg. LLF: 121.18987425543541
Iteration: 3, Func. Count: 36, Neg. LLF: 119.51725486728886
Iteration: 4, Func. Count: 46, Neg. LLF: 118.37194249325414
Iteration: 5, Func. Count: 56, Neg. LLF: 118.37189621878039
Iteration: 6, Func. Count: 66, Neg. LLF: 118.37181727490733
Iteration: 7, Func. Count: 76, Neg. LLF: 118.37181726626324
Optimization terminated successfully (Exit mode 0)
Current function value: 118.37181692541712
Iterations: 7
Function evaluations: 77
Gradient evaluations: 7
Iteration: 1, Func. Count: 12, Neg. LLF: 158.76158950763872
Iteration: 2, Func. Count: 26, Neg. LLF: 118.70405381829556
Iteration: 3, Func. Count: 37, Neg. LLF: 118.81998505357879
Iteration: 4, Func. Count: 49, Neg. LLF: 118.52848764363195
Iteration: 5, Func. Count: 60, Neg. LLF: 119.54967603472072
Iteration: 6, Func. Count: 72, Neg. LLF: 118.39509412007503
Iteration: 7, Func. Count: 83, Neg. LLF: 118.39445632510433
Iteration: 8, Func. Count: 94, Neg. LLF: 118.39382820887397
Iteration: 9, Func. Count: 105, Neg. LLF: 118.39239180033799
Iteration: 10, Func. Count: 116, Neg. LLF: 118.39071518206993
Iteration: 11, Func. Count: 127, Neg. LLF: 118.38907383369282
Iteration: 12, Func. Count: 138, Neg. LLF: 118.38810874829096
Iteration: 13, Func. Count: 149, Neg. LLF: 118.38659265442371
Iteration: 14, Func. Count: 160, Neg. LLF: 118.37238684610067
Iteration: 15, Func. Count: 171, Neg. LLF: 125.19480521999793
Iteration: 16, Func. Count: 185, Neg. LLF: 118.39411974206017
Iteration: 17, Func. Count: 197, Neg. LLF: 118.37181692403476
Iteration: 18, Func. Count: 207, Neg. LLF: 118.3718165481147
Optimization terminated successfully (Exit mode 0)
Current function value: 118.37181692403476
Iterations: 19
Function evaluations: 207
Gradient evaluations: 18
Iteration: 1, Func. Count: 13, Neg. LLF: 155.4099203874213
Iteration: 2, Func. Count: 28, Neg. LLF: 121.3261628442199
Iteration: 3, Func. Count: 41, Neg. LLF: 119.33063765951313
Iteration: 4, Func. Count: 53, Neg. LLF: 118.49332602167715
Iteration: 5, Func. Count: 65, Neg. LLF: 118.43162512738557
Iteration: 6, Func. Count: 77, Neg. LLF: 118.41917855662498
Iteration: 7, Func. Count: 89, Neg. LLF: 118.41944114327374
Iteration: 8, Func. Count: 102, Neg. LLF: 118.41327630733424
Iteration: 9, Func. Count: 114, Neg. LLF: 118.40895583403385
Iteration: 10, Func. Count: 126, Neg. LLF: 118.40847495051077
Iteration: 11, Func. Count: 138, Neg. LLF: 118.40832798708593
Iteration: 12, Func. Count: 150, Neg. LLF: 118.4081713105665
Iteration: 13, Func. Count: 162, Neg. LLF: 118.40754192710916
Iteration: 14, Func. Count: 174, Neg. LLF: 118.40693051215683
Iteration: 15, Func. Count: 186, Neg. LLF: 118.39971392383896
Iteration: 16, Func. Count: 198, Neg. LLF: 118.38916029213446
Iteration: 17, Func. Count: 210, Neg. LLF: 163.8997745295903
Iteration: 18, Func. Count: 225, Neg. LLF: 118.4041976163633
Iteration: 19, Func. Count: 238, Neg. LLF: 118.37182290813145
Iteration: 20, Func. Count: 250, Neg. LLF: 118.3718169256565
Iteration: 21, Func. Count: 261, Neg. LLF: 118.37181655163371
Optimization terminated successfully (Exit mode 0)
Current function value: 118.3718169256565
Iterations: 22
Function evaluations: 261
Gradient evaluations: 21
Iteration: 1, Func. Count: 14, Neg. LLF: 155.58419654523541
Iteration: 2, Func. Count: 30, Neg. LLF: 174.8735983313398
Iteration: 3, Func. Count: 45, Neg. LLF: 118.64981353515063
Iteration: 4, Func. Count: 58, Neg. LLF: 118.46204719469085
Iteration: 5, Func. Count: 71, Neg. LLF: 118.4340975693858
Iteration: 6, Func. Count: 84, Neg. LLF: 118.42332049734658
Iteration: 7, Func. Count: 97, Neg. LLF: 118.416699804249
Iteration: 8, Func. Count: 110, Neg. LLF: 118.41206157659046
Iteration: 9, Func. Count: 123, Neg. LLF: 118.40712185153754
Iteration: 10, Func. Count: 136, Neg. LLF: 118.40706083427925
Iteration: 11, Func. Count: 149, Neg. LLF: 118.4069964702252
Iteration: 12, Func. Count: 162, Neg. LLF: 118.41163680695104
Iteration: 13, Func. Count: 176, Neg. LLF: 118.40692019508407
Iteration: 14, Func. Count: 190, Neg. LLF: 118.4068706244669
Iteration: 15, Func. Count: 203, Neg. LLF: 118.40685121991473
Iteration: 16, Func. Count: 215, Neg. LLF: 118.4068511047897
Optimization terminated successfully (Exit mode 0)
Current function value: 118.40685121991473
Iterations: 16
Function evaluations: 215
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 123.76358065074234
Iteration: 2, Func. Count: 22, Neg. LLF: 123.7753948405553
Iteration: 3, Func. Count: 34, Neg. LLF: 121.41395963378979
Iteration: 4, Func. Count: 45, Neg. LLF: 120.51559718338726
Iteration: 5, Func. Count: 56, Neg. LLF: 120.47074027060088
Iteration: 6, Func. Count: 67, Neg. LLF: 119.75441621454289
Iteration: 7, Func. Count: 77, Neg. LLF: 119.76902809035448
Iteration: 8, Func. Count: 88, Neg. LLF: 119.6209684699581
Iteration: 9, Func. Count: 98, Neg. LLF: 119.60619927225356
Iteration: 10, Func. Count: 108, Neg. LLF: 119.61338854898
Iteration: 11, Func. Count: 119, Neg. LLF: 119.6016281898961
Iteration: 12, Func. Count: 129, Neg. LLF: 119.60158839678807
Iteration: 13, Func. Count: 139, Neg. LLF: 119.60158668189544
Iteration: 14, Func. Count: 148, Neg. LLF: 119.60158664720083
Optimization terminated successfully (Exit mode 0)
Current function value: 119.60158668189544
Iterations: 14
Function evaluations: 148
Gradient evaluations: 14
Iteration: 1, Func. Count: 12, Neg. LLF: 125.60120650359352
Iteration: 2, Func. Count: 27, Neg. LLF: 121.46656575157873
Iteration: 3, Func. Count: 39, Neg. LLF: 119.60051901323547
Iteration: 4, Func. Count: 50, Neg. LLF: 118.51013600989899
Iteration: 5, Func. Count: 61, Neg. LLF: 118.3848585078544
Iteration: 6, Func. Count: 72, Neg. LLF: 118.37186754023482
Iteration: 7, Func. Count: 83, Neg. LLF: 118.37182909400047
Iteration: 8, Func. Count: 94, Neg. LLF: 118.37181928266538
Iteration: 9, Func. Count: 105, Neg. LLF: 118.37181694560196
Iteration: 10, Func. Count: 115, Neg. LLF: 118.37181732210581
Optimization terminated successfully (Exit mode 0)
Current function value: 118.37181694560196
Iterations: 10
Function evaluations: 115
Gradient evaluations: 10
Iteration: 1, Func. Count: 13, Neg. LLF: 128.80141273970833
Iteration: 2, Func. Count: 28, Neg. LLF: 118.8526654642417
Iteration: 3, Func. Count: 40, Neg. LLF: 125.57326015689313
Iteration: 4, Func. Count: 54, Neg. LLF: 118.54032508781572
Iteration: 5, Func. Count: 66, Neg. LLF: 122.52668425016813
Iteration: 6, Func. Count: 80, Neg. LLF: 119.54054564287519
Iteration: 7, Func. Count: 94, Neg. LLF: 118.47746365006522
Iteration: 8, Func. Count: 107, Neg. LLF: 118.40152539752621
Iteration: 9, Func. Count: 119, Neg. LLF: 118.40029679476808
Iteration: 10, Func. Count: 131, Neg. LLF: 118.39634938356765
Iteration: 11, Func. Count: 143, Neg. LLF: 118.39357006861115
Iteration: 12, Func. Count: 155, Neg. LLF: 118.39120027834261
Iteration: 13, Func. Count: 167, Neg. LLF: 118.38958173012402
Iteration: 14, Func. Count: 179, Neg. LLF: 118.38853014476133
Iteration: 15, Func. Count: 191, Neg. LLF: 118.38742399615262
Iteration: 16, Func. Count: 203, Neg. LLF: 118.37469338817274
Iteration: 17, Func. Count: 215, Neg. LLF: 118.37195709001948
Iteration: 18, Func. Count: 227, Neg. LLF: 125.90112902750856
Iteration: 19, Func. Count: 242, Neg. LLF: 118.37182672608589
Iteration: 20, Func. Count: 254, Neg. LLF: 118.37181692428922
Iteration: 21, Func. Count: 265, Neg. LLF: 118.37181654836237
Optimization terminated successfully (Exit mode 0)
Current function value: 118.37181692428922
Iterations: 22
Function evaluations: 265
Gradient evaluations: 21
Iteration: 1, Func. Count: 14, Neg. LLF: 127.16157778721795
Iteration: 2, Func. Count: 31, Neg. LLF: 119.17761404625054
Iteration: 3, Func. Count: 44, Neg. LLF: 120.1704608699163
Iteration: 4, Func. Count: 58, Neg. LLF: 2738.466600929895
Iteration: 5, Func. Count: 72, Neg. LLF: 118.54265246577124
Iteration: 6, Func. Count: 86, Neg. LLF: 118.40446009883763
Iteration: 7, Func. Count: 99, Neg. LLF: 120.4785804305635
Iteration: 8, Func. Count: 114, Neg. LLF: 118.37992696088122
Iteration: 9, Func. Count: 127, Neg. LLF: 118.36155462999655
Iteration: 10, Func. Count: 140, Neg. LLF: 118.70475962827561
Iteration: 11, Func. Count: 154, Neg. LLF: 118.72884199304657
Iteration: 12, Func. Count: 168, Neg. LLF: 118.75776336133498
Iteration: 13, Func. Count: 182, Neg. LLF: 119.2039734601951
Iteration: 14, Func. Count: 196, Neg. LLF: 118.7822002883562
Iteration: 15, Func. Count: 210, Neg. LLF: 119.67742874443324
Iteration: 16, Func. Count: 225, Neg. LLF: 118.31450543301304
Iteration: 17, Func. Count: 238, Neg. LLF: 118.3143336136255
Iteration: 18, Func. Count: 251, Neg. LLF: 118.31432538866797
Iteration: 19, Func. Count: 264, Neg. LLF: 118.31430885091925
Iteration: 20, Func. Count: 277, Neg. LLF: 118.31428800096492
Iteration: 21, Func. Count: 290, Neg. LLF: 118.31423656539852
Iteration: 22, Func. Count: 303, Neg. LLF: 118.31415292481199
Iteration: 23, Func. Count: 316, Neg. LLF: 118.31405876980904
Iteration: 24, Func. Count: 329, Neg. LLF: 118.31401209248915
Iteration: 25, Func. Count: 342, Neg. LLF: 118.31400315009606
Iteration: 26, Func. Count: 354, Neg. LLF: 118.3140030260752
Optimization terminated successfully (Exit mode 0)
Current function value: 118.31400315009606
Iterations: 26
Function evaluations: 354
Gradient evaluations: 26
Iteration: 1, Func. Count: 15, Neg. LLF: 128.4365491036896
Iteration: 2, Func. Count: 33, Neg. LLF: 119.05283544609786
Iteration: 3, Func. Count: 47, Neg. LLF: 118.47787725717302
Iteration: 4, Func. Count: 61, Neg. LLF: 120.79791307664235
Iteration: 5, Func. Count: 76, Neg. LLF: 118.31540807429613
Iteration: 6, Func. Count: 90, Neg. LLF: 118.26316453849847
Iteration: 7, Func. Count: 104, Neg. LLF: 118.91200130841996
Iteration: 8, Func. Count: 119, Neg. LLF: 138.92283569284237
Iteration: 9, Func. Count: 135, Neg. LLF: 118.253414561716
Iteration: 10, Func. Count: 149, Neg. LLF: 118.25044964146332
Iteration: 11, Func. Count: 163, Neg. LLF: 118.24257141750314
Iteration: 12, Func. Count: 177, Neg. LLF: 118.24245396859932
Iteration: 13, Func. Count: 191, Neg. LLF: 118.24244529164221
Iteration: 14, Func. Count: 204, Neg. LLF: 118.24244517609063
Optimization terminated successfully (Exit mode 0)
Current function value: 118.24244529164221
Iterations: 14
Function evaluations: 204
Gradient evaluations: 14
Iteration: 1, Func. Count: 12, Neg. LLF: 128.19240223736222
Iteration: 2, Func. Count: 24, Neg. LLF: 159.61961700373564
Iteration: 3, Func. Count: 36, Neg. LLF: 119.12547147320282
Iteration: 4, Func. Count: 49, Neg. LLF: 118.48377184316676
Iteration: 5, Func. Count: 61, Neg. LLF: 510.40017042850764
Iteration: 6, Func. Count: 73, Neg. LLF: 117.28965480977725
Iteration: 7, Func. Count: 84, Neg. LLF: 117.2864511383037
Iteration: 8, Func. Count: 95, Neg. LLF: 117.27800050701141
Iteration: 9, Func. Count: 106, Neg. LLF: 117.27652789209998
Iteration: 10, Func. Count: 117, Neg. LLF: 117.27515757923051
Iteration: 11, Func. Count: 128, Neg. LLF: 117.27466466308249
Iteration: 12, Func. Count: 139, Neg. LLF: 117.27464627492357
Iteration: 13, Func. Count: 150, Neg. LLF: 117.2746452902449
Optimization terminated successfully (Exit mode 0)
Current function value: 117.2746452902449
Iterations: 13
Function evaluations: 150
Gradient evaluations: 13
Iteration: 1, Func. Count: 13, Neg. LLF: 125.38357830185186
Iteration: 2, Func. Count: 29, Neg. LLF: 129.0127933783765
Iteration: 3, Func. Count: 42, Neg. LLF: 139.7534865357311
Iteration: 4, Func. Count: 55, Neg. LLF: 131.96014550313464
Iteration: 5, Func. Count: 68, Neg. LLF: 192.942688930522
Iteration: 6, Func. Count: 82, Neg. LLF: 118.56631087401428
Iteration: 7, Func. Count: 94, Neg. LLF: 122.61885106369114
Iteration: 8, Func. Count: 107, Neg. LLF: 118.62177502388296
Iteration: 9, Func. Count: 120, Neg. LLF: 132.98272346507306
Iteration: 10, Func. Count: 133, Neg. LLF: 118.73783586674529
Iteration: 11, Func. Count: 146, Neg. LLF: 116.81444815981521
Iteration: 12, Func. Count: 159, Neg. LLF: 116.18842137601813
Iteration: 13, Func. Count: 171, Neg. LLF: 116.1033946847902
Iteration: 14, Func. Count: 183, Neg. LLF: 116.07734868836442
Iteration: 15, Func. Count: 195, Neg. LLF: 116.04729422331795
Iteration: 16, Func. Count: 207, Neg. LLF: 116.03310321673366
Iteration: 17, Func. Count: 219, Neg. LLF: 116.02978528278176
Iteration: 18, Func. Count: 231, Neg. LLF: 116.02806866607628
Iteration: 19, Func. Count: 243, Neg. LLF: 116.02481911488779
Iteration: 20, Func. Count: 255, Neg. LLF: 116.02090509621777
Iteration: 21, Func. Count: 267, Neg. LLF: 116.0175418234791
Iteration: 22, Func. Count: 279, Neg. LLF: 116.01588741121417
Iteration: 23, Func. Count: 291, Neg. LLF: 116.01561813660112
Iteration: 24, Func. Count: 303, Neg. LLF: 116.01555816797989
Iteration: 25, Func. Count: 315, Neg. LLF: 116.01550137449561
Iteration: 26, Func. Count: 327, Neg. LLF: 116.01548826743047
Iteration: 27, Func. Count: 339, Neg. LLF: 116.01548643497725
Iteration: 28, Func. Count: 350, Neg. LLF: 116.0154864322618
Optimization terminated successfully (Exit mode 0)
Current function value: 116.01548643497725
Iterations: 28
Function evaluations: 350
Gradient evaluations: 28
Iteration: 1, Func. Count: 14, Neg. LLF: 128.20226917797254
Iteration: 2, Func. Count: 30, Neg. LLF: 129.353516234294
Iteration: 3, Func. Count: 44, Neg. LLF: 144.39441579583766
Iteration: 4, Func. Count: 58, Neg. LLF: 135.2291441480352
Iteration: 5, Func. Count: 72, Neg. LLF: 133.68856195088458
Iteration: 6, Func. Count: 86, Neg. LLF: 125.92376044135133
Iteration: 7, Func. Count: 100, Neg. LLF: 124.326036082131
Iteration: 8, Func. Count: 114, Neg. LLF: 118.00750508086993
Iteration: 9, Func. Count: 128, Neg. LLF: 117.11993639391667
Iteration: 10, Func. Count: 141, Neg. LLF: 118.1072573743965
Iteration: 11, Func. Count: 155, Neg. LLF: 118.13187105726364
Iteration: 12, Func. Count: 169, Neg. LLF: 119.09995266462468
Iteration: 13, Func. Count: 183, Neg. LLF: 116.26844224617157
Iteration: 14, Func. Count: 196, Neg. LLF: 116.21362013276652
Iteration: 15, Func. Count: 209, Neg. LLF: 116.20389253657312
Iteration: 16, Func. Count: 222, Neg. LLF: 116.19189213765601
Iteration: 17, Func. Count: 235, Neg. LLF: 116.14630747218744
Iteration: 18, Func. Count: 248, Neg. LLF: 116.08494643418385
Iteration: 19, Func. Count: 261, Neg. LLF: 116.03418401389533
Iteration: 20, Func. Count: 274, Neg. LLF: 116.0186665039878
Iteration: 21, Func. Count: 287, Neg. LLF: 116.01563245801135
Iteration: 22, Func. Count: 300, Neg. LLF: 116.01553703236266
Iteration: 23, Func. Count: 313, Neg. LLF: 116.01551192067062
Iteration: 24, Func. Count: 326, Neg. LLF: 116.01548817136394
Iteration: 25, Func. Count: 339, Neg. LLF: 116.01548660033733
Iteration: 26, Func. Count: 351, Neg. LLF: 116.0154868284721
Optimization terminated successfully (Exit mode 0)
Current function value: 116.01548660033733
Iterations: 26
Function evaluations: 351
Gradient evaluations: 26
Iteration: 1, Func. Count: 15, Neg. LLF: 120.833355949109
Iteration: 2, Func. Count: 33, Neg. LLF: 181.14868434234268
Iteration: 3, Func. Count: 48, Neg. LLF: 159.07242245801424
Iteration: 4, Func. Count: 63, Neg. LLF: 143.637933345912
Iteration: 5, Func. Count: 78, Neg. LLF: 167.00008820222163
Iteration: 6, Func. Count: 94, Neg. LLF: 118.3794507125456
Iteration: 7, Func. Count: 109, Neg. LLF: 121.20268119569272
Iteration: 8, Func. Count: 124, Neg. LLF: 118.44935485913672
Iteration: 9, Func. Count: 139, Neg. LLF: 122.16643857492012
Iteration: 10, Func. Count: 154, Neg. LLF: 117.53431058372719
Iteration: 11, Func. Count: 169, Neg. LLF: 116.3399738271694
Iteration: 12, Func. Count: 183, Neg. LLF: 116.16924991560562
Iteration: 13, Func. Count: 197, Neg. LLF: 115.96119030013735
Iteration: 14, Func. Count: 211, Neg. LLF: 115.93209628227838
Iteration: 15, Func. Count: 225, Neg. LLF: 115.8967337599507
Iteration: 16, Func. Count: 239, Neg. LLF: 115.88257866580571
Iteration: 17, Func. Count: 253, Neg. LLF: 115.8600256363856
Iteration: 18, Func. Count: 267, Neg. LLF: 115.85294000127492
Iteration: 19, Func. Count: 281, Neg. LLF: 115.8509466269618
Iteration: 20, Func. Count: 295, Neg. LLF: 115.8508079843348
Iteration: 21, Func. Count: 309, Neg. LLF: 115.85079628117582
Iteration: 22, Func. Count: 323, Neg. LLF: 115.85079528207866
Optimization terminated successfully (Exit mode 0)
Current function value: 115.85079528207866
Iterations: 22
Function evaluations: 323
Gradient evaluations: 22
Iteration: 1, Func. Count: 16, Neg. LLF: 121.42880594251474
Iteration: 2, Func. Count: 35, Neg. LLF: 198.9793126992116
Iteration: 3, Func. Count: 51, Neg. LLF: 165.5378163221232
Iteration: 4, Func. Count: 67, Neg. LLF: 141.25925911948093
Iteration: 5, Func. Count: 83, Neg. LLF: 175.29243816630213
Iteration: 6, Func. Count: 99, Neg. LLF: 119.83593723007917
Iteration: 7, Func. Count: 115, Neg. LLF: 132.36428640239757
Iteration: 8, Func. Count: 131, Neg. LLF: 116.058841663993
Iteration: 9, Func. Count: 146, Neg. LLF: 117.63692519407297
Iteration: 10, Func. Count: 162, Neg. LLF: 117.35067209897004
Iteration: 11, Func. Count: 178, Neg. LLF: 115.72922293639361
Iteration: 12, Func. Count: 194, Neg. LLF: 115.63502964611658
Iteration: 13, Func. Count: 209, Neg. LLF: 115.61106796415682
Iteration: 14, Func. Count: 224, Neg. LLF: 115.60637290148885
Iteration: 15, Func. Count: 239, Neg. LLF: 115.59793557283564
Iteration: 16, Func. Count: 254, Neg. LLF: 115.59682538102109
Iteration: 17, Func. Count: 269, Neg. LLF: 115.59632177775782
Iteration: 18, Func. Count: 284, Neg. LLF: 115.59624514706084
Iteration: 19, Func. Count: 299, Neg. LLF: 115.59623602209919
Iteration: 20, Func. Count: 313, Neg. LLF: 115.59623599404947
Optimization terminated successfully (Exit mode 0)
Current function value: 115.59623602209919
Iterations: 20
Function evaluations: 313
Gradient evaluations: 20
Iteration: 1, Func. Count: 6, Neg. LLF: 162.16788997873027
Iteration: 2, Func. Count: 13, Neg. LLF: 118.51440559731275
Iteration: 3, Func. Count: 18, Neg. LLF: 126.48893207609383
Iteration: 4, Func. Count: 24, Neg. LLF: 118.3819045477604
Iteration: 5, Func. Count: 29, Neg. LLF: 118.3724083219677
Iteration: 6, Func. Count: 34, Neg. LLF: 118.37185810203225
Iteration: 7, Func. Count: 39, Neg. LLF: 118.37181754950143
Iteration: 8, Func. Count: 44, Neg. LLF: 118.37181692509793
Optimization terminated successfully (Exit mode 0)
Current function value: 118.37181692509793
Iterations: 8
Function evaluations: 44
Gradient evaluations: 8
Iteration: 1, Func. Count: 5, Neg. LLF: 130.35463136582385
Iteration: 2, Func. Count: 10, Neg. LLF: 143.31621715426857
Iteration: 3, Func. Count: 15, Neg. LLF: 119.87502722016536
Iteration: 4, Func. Count: 19, Neg. LLF: 119.83439270402454
Iteration: 5, Func. Count: 23, Neg. LLF: 119.76842881469192
Iteration: 6, Func. Count: 27, Neg. LLF: 119.76359000042976
Iteration: 7, Func. Count: 31, Neg. LLF: 119.76292711446986
Iteration: 8, Func. Count: 35, Neg. LLF: 119.76292652846098
Optimization terminated successfully (Exit mode 0)
Current function value: 119.76292652846098
Iterations: 8
Function evaluations: 35
Gradient evaluations: 8
Iteration: 1, Func. Count: 6, Neg. LLF: 160.51240844671943
Iteration: 2, Func. Count: 13, Neg. LLF: 118.64904866001342
Iteration: 3, Func. Count: 18, Neg. LLF: 135.0858072565539
Iteration: 4, Func. Count: 24, Neg. LLF: 118.4975439688377
Iteration: 5, Func. Count: 29, Neg. LLF: 118.48575710628779
Iteration: 6, Func. Count: 34, Neg. LLF: 118.48575610041233
Iteration: 7, Func. Count: 38, Neg. LLF: 118.48575627932695
Optimization terminated successfully (Exit mode 0)
Current function value: 118.48575610041233
Iterations: 7
Function evaluations: 38
Gradient evaluations: 7
Iteration: 1, Func. Count: 7, Neg. LLF: 156.27356942099988
Iteration: 2, Func. Count: 15, Neg. LLF: 118.5680251285762
Iteration: 3, Func. Count: 21, Neg. LLF: 122.57059847149716
Iteration: 4, Func. Count: 28, Neg. LLF: 118.50061978469999
Iteration: 5, Func. Count: 34, Neg. LLF: 118.4943279916979
Iteration: 6, Func. Count: 40, Neg. LLF: 118.49407471167491
Iteration: 7, Func. Count: 46, Neg. LLF: 118.49365625213808
Iteration: 8, Func. Count: 52, Neg. LLF: 118.48568187517607
Iteration: 9, Func. Count: 58, Neg. LLF: 118.44356525071312
Iteration: 10, Func. Count: 64, Neg. LLF: 121.12562015658239
Iteration: 11, Func. Count: 72, Neg. LLF: 118.44266782014166
Optimization terminated successfully (Exit mode 0)
Current function value: 118.44266782014166
Iterations: 12
Function evaluations: 72
Gradient evaluations: 11
Iteration: 1, Func. Count: 8, Neg. LLF: 153.97535217967484
Iteration: 2, Func. Count: 18, Neg. LLF: 118.60909295139355
Iteration: 3, Func. Count: 25, Neg. LLF: 118.55453535026413
Iteration: 4, Func. Count: 32, Neg. LLF: 118.57669778306392
Iteration: 5, Func. Count: 40, Neg. LLF: 118.54160534507116
Iteration: 6, Func. Count: 48, Neg. LLF: 118.52059180249664
Iteration: 7, Func. Count: 55, Neg. LLF: 118.4950763646612
Iteration: 8, Func. Count: 62, Neg. LLF: 118.49480642958088
Iteration: 9, Func. Count: 69, Neg. LLF: 118.49421409770059
Iteration: 10, Func. Count: 76, Neg. LLF: 118.49238649801654
Iteration: 11, Func. Count: 83, Neg. LLF: 118.48963381346981
Iteration: 12, Func. Count: 90, Neg. LLF: 118.4860957118461
Iteration: 13, Func. Count: 97, Neg. LLF: 118.48575894018516
Iteration: 14, Func. Count: 104, Neg. LLF: 118.48575681380314
Iteration: 15, Func. Count: 111, Neg. LLF: 118.48575611156572
Optimization terminated successfully (Exit mode 0)
Current function value: 118.48575611156572
Iterations: 15
Function evaluations: 111
Gradient evaluations: 15
Iteration: 1, Func. Count: 9, Neg. LLF: 153.94975637627843
Iteration: 2, Func. Count: 20, Neg. LLF: 118.58120380718981
Iteration: 3, Func. Count: 28, Neg. LLF: 118.60915287865119
Iteration: 4, Func. Count: 37, Neg. LLF: 118.62855007767794
Iteration: 5, Func. Count: 46, Neg. LLF: 118.53882049395972
Iteration: 6, Func. Count: 54, Neg. LLF: 118.51827802103708
Iteration: 7, Func. Count: 62, Neg. LLF: 118.51308484923271
Iteration: 8, Func. Count: 70, Neg. LLF: 118.49897089240463
Iteration: 9, Func. Count: 78, Neg. LLF: 118.49634476573077
Iteration: 10, Func. Count: 86, Neg. LLF: 118.49587813056071
Iteration: 11, Func. Count: 94, Neg. LLF: 118.4957579580805
Iteration: 12, Func. Count: 102, Neg. LLF: 118.49478289551922
Iteration: 13, Func. Count: 110, Neg. LLF: 118.48630542635375
Iteration: 14, Func. Count: 118, Neg. LLF: 118.48584776967985
Iteration: 15, Func. Count: 126, Neg. LLF: 118.4857833228021
Iteration: 16, Func. Count: 134, Neg. LLF: 118.48575614258608
Iteration: 17, Func. Count: 141, Neg. LLF: 118.4857559645961
Optimization terminated successfully (Exit mode 0)
Current function value: 118.48575614258608
Iterations: 17
Function evaluations: 141
Gradient evaluations: 17
Iteration: 1, Func. Count: 6, Neg. LLF: 128.51206980371396
Iteration: 2, Func. Count: 12, Neg. LLF: 141.2801587408299
Iteration: 3, Func. Count: 18, Neg. LLF: 119.86007464100966
Iteration: 4, Func. Count: 23, Neg. LLF: 119.82767522915877
Iteration: 5, Func. Count: 28, Neg. LLF: 119.76590636839526
Iteration: 6, Func. Count: 33, Neg. LLF: 119.76311530705546
Iteration: 7, Func. Count: 38, Neg. LLF: 119.76292704794258
Iteration: 8, Func. Count: 43, Neg. LLF: 119.76292651798724
Optimization terminated successfully (Exit mode 0)
Current function value: 119.76292651798724
Iterations: 8
Function evaluations: 43
Gradient evaluations: 8
Iteration: 1, Func. Count: 7, Neg. LLF: 160.13493599075133
Iteration: 2, Func. Count: 15, Neg. LLF: 118.65744775442663
Iteration: 3, Func. Count: 21, Neg. LLF: 121.24039928116376
Iteration: 4, Func. Count: 28, Neg. LLF: 118.60826125945142
Iteration: 5, Func. Count: 35, Neg. LLF: 136.96461542714377
Iteration: 6, Func. Count: 43, Neg. LLF: 118.4805438570621
Iteration: 7, Func. Count: 49, Neg. LLF: 118.47641093641202
Iteration: 8, Func. Count: 55, Neg. LLF: 118.47611944783687
Iteration: 9, Func. Count: 61, Neg. LLF: 118.47611525152973
Iteration: 10, Func. Count: 66, Neg. LLF: 118.47611506096172
Optimization terminated successfully (Exit mode 0)
Current function value: 118.47611525152973
Iterations: 10
Function evaluations: 66
Gradient evaluations: 10
Iteration: 1, Func. Count: 8, Neg. LLF: 156.03218034296344
Iteration: 2, Func. Count: 17, Neg. LLF: 118.57328996628789
Iteration: 3, Func. Count: 24, Neg. LLF: 122.0593730772249
Iteration: 4, Func. Count: 32, Neg. LLF: 118.50595888371421
Iteration: 5, Func. Count: 40, Neg. LLF: 117.99577721708077
Iteration: 6, Func. Count: 47, Neg. LLF: 118.44800340840717
Iteration: 7, Func. Count: 55, Neg. LLF: 117.65684491272778
Iteration: 8, Func. Count: 62, Neg. LLF: 117.829106299208
Iteration: 9, Func. Count: 79, Neg. LLF: 120.61414065840923
Iteration: 10, Func. Count: 96, Neg. LLF: 184.82822184660736
Iteration: 11, Func. Count: 105, Neg. LLF: 119.43930056788184
Iteration: 12, Func. Count: 113, Neg. LLF: 117.90032987001194
Iteration: 13, Func. Count: 121, Neg. LLF: 117.62147727730954
Iteration: 14, Func. Count: 128, Neg. LLF: 117.62096407934868
Iteration: 15, Func. Count: 135, Neg. LLF: 117.62096134053913
Iteration: 16, Func. Count: 141, Neg. LLF: 117.62096115501063
Optimization terminated successfully (Exit mode 0)
Current function value: 117.62096134053913
Iterations: 17
Function evaluations: 141
Gradient evaluations: 16
Iteration: 1, Func. Count: 9, Neg. LLF: 153.99922092295245
Iteration: 2, Func. Count: 20, Neg. LLF: 118.61089988922835
Iteration: 3, Func. Count: 28, Neg. LLF: 118.54644671652477
Iteration: 4, Func. Count: 36, Neg. LLF: 118.68086485689675
Iteration: 5, Func. Count: 45, Neg. LLF: 118.50366654019538
Iteration: 6, Func. Count: 54, Neg. LLF: 118.46391730753953
Iteration: 7, Func. Count: 63, Neg. LLF: 118.39431715282032
Iteration: 8, Func. Count: 71, Neg. LLF: 118.39415516373215
Iteration: 9, Func. Count: 79, Neg. LLF: 118.39414387942317
Iteration: 10, Func. Count: 87, Neg. LLF: 118.39414108724294
Iteration: 11, Func. Count: 94, Neg. LLF: 118.39414098985584
Optimization terminated successfully (Exit mode 0)
Current function value: 118.39414108724294
Iterations: 11
Function evaluations: 94
Gradient evaluations: 11
Iteration: 1, Func. Count: 10, Neg. LLF: 154.75479842975486
Iteration: 2, Func. Count: 22, Neg. LLF: 118.58315598230159
Iteration: 3, Func. Count: 31, Neg. LLF: 118.59232550387642
Iteration: 4, Func. Count: 41, Neg. LLF: 118.64491713594613
Iteration: 5, Func. Count: 51, Neg. LLF: 118.53635460661098
Iteration: 6, Func. Count: 60, Neg. LLF: 118.51778241624844
Iteration: 7, Func. Count: 69, Neg. LLF: 118.51106666086955
Iteration: 8, Func. Count: 78, Neg. LLF: 118.49808876214618
Iteration: 9, Func. Count: 87, Neg. LLF: 118.49541376021065
Iteration: 10, Func. Count: 96, Neg. LLF: 118.49511490000377
Iteration: 11, Func. Count: 105, Neg. LLF: 118.4931799185349
Iteration: 12, Func. Count: 114, Neg. LLF: 118.4843309155632
Iteration: 13, Func. Count: 123, Neg. LLF: 118.48087052951806
Iteration: 14, Func. Count: 132, Neg. LLF: 118.47464611872132
Iteration: 15, Func. Count: 141, Neg. LLF: 118.47620215382511
Iteration: 16, Func. Count: 150, Neg. LLF: 118.47618765742162
Iteration: 17, Func. Count: 159, Neg. LLF: 118.47401224435306
Iteration: 18, Func. Count: 172, Neg. LLF: 118.50336076712495
Iteration: 19, Func. Count: 183, Neg. LLF: 118.49854888239902
Iteration: 20, Func. Count: 194, Neg. LLF: 118.47616146797452
Iteration: 21, Func. Count: 204, Neg. LLF: 118.47611507445937
Iteration: 22, Func. Count: 212, Neg. LLF: 118.47611488882853
Optimization terminated successfully (Exit mode 0)
Current function value: 118.47611507445937
Iterations: 23
Function evaluations: 212
Gradient evaluations: 22
Iteration: 1, Func. Count: 7, Neg. LLF: 131.93395746989023
Iteration: 2, Func. Count: 14, Neg. LLF: 139.63673517273128
Iteration: 3, Func. Count: 21, Neg. LLF: 119.95387074855341
Iteration: 4, Func. Count: 27, Neg. LLF: 119.83804797142949
Iteration: 5, Func. Count: 33, Neg. LLF: 119.79128690555649
Iteration: 6, Func. Count: 39, Neg. LLF: 119.76354689105271
Iteration: 7, Func. Count: 45, Neg. LLF: 119.7629332508276
Iteration: 8, Func. Count: 51, Neg. LLF: 119.76292653841978
Iteration: 9, Func. Count: 56, Neg. LLF: 119.76292657341442
Optimization terminated successfully (Exit mode 0)
Current function value: 119.76292653841978
Iterations: 9
Function evaluations: 56
Gradient evaluations: 9
Iteration: 1, Func. Count: 8, Neg. LLF: 145.03947819500144
Iteration: 2, Func. Count: 17, Neg. LLF: 126.88734456885422
Iteration: 3, Func. Count: 26, Neg. LLF: 118.57794902038438
Iteration: 4, Func. Count: 33, Neg. LLF: 123.16359723275043
Iteration: 5, Func. Count: 41, Neg. LLF: 118.4195852757909
Iteration: 6, Func. Count: 48, Neg. LLF: 118.3992218396726
Iteration: 7, Func. Count: 55, Neg. LLF: 118.39805247083922
Iteration: 8, Func. Count: 62, Neg. LLF: 118.3964835358437
Iteration: 9, Func. Count: 69, Neg. LLF: 118.39643461599225
Iteration: 10, Func. Count: 76, Neg. LLF: 118.3964336663515
Optimization terminated successfully (Exit mode 0)
Current function value: 118.3964336663515
Iterations: 10
Function evaluations: 76
Gradient evaluations: 10
Iteration: 1, Func. Count: 9, Neg. LLF: 155.95358554345145
Iteration: 2, Func. Count: 19, Neg. LLF: 123.35536527149989
Iteration: 3, Func. Count: 28, Neg. LLF: 118.50319417686568
Iteration: 4, Func. Count: 36, Neg. LLF: 119.41589788749282
Iteration: 5, Func. Count: 45, Neg. LLF: 118.48288900315106
Iteration: 6, Func. Count: 54, Neg. LLF: 118.46969298850262
Iteration: 7, Func. Count: 63, Neg. LLF: 118.45575174621247
Iteration: 8, Func. Count: 71, Neg. LLF: 118.45413233029517
Iteration: 9, Func. Count: 79, Neg. LLF: 118.45307504527305
Iteration: 10, Func. Count: 87, Neg. LLF: 118.45213741562584
Iteration: 11, Func. Count: 95, Neg. LLF: 118.45100919186326
Iteration: 12, Func. Count: 103, Neg. LLF: 118.41211337754257
Iteration: 13, Func. Count: 111, Neg. LLF: 118.3964790777335
Iteration: 14, Func. Count: 119, Neg. LLF: 118.39645966177262
Iteration: 15, Func. Count: 127, Neg. LLF: 118.39643570335681
Iteration: 16, Func. Count: 135, Neg. LLF: 118.39643568003011
Optimization terminated successfully (Exit mode 0)
Current function value: 118.39643521185236
Iterations: 16
Function evaluations: 136
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 154.4853790579554
Iteration: 2, Func. Count: 22, Neg. LLF: 118.61691752995613
Iteration: 3, Func. Count: 31, Neg. LLF: 118.53806834062168
Iteration: 4, Func. Count: 40, Neg. LLF: 118.60132685946814
Iteration: 5, Func. Count: 50, Neg. LLF: 118.52972618283981
Iteration: 6, Func. Count: 60, Neg. LLF: 118.45075678562866
Iteration: 7, Func. Count: 70, Neg. LLF: 118.3962032147965
Iteration: 8, Func. Count: 79, Neg. LLF: 118.39420000238628
Iteration: 9, Func. Count: 88, Neg. LLF: 118.39415184303448
Iteration: 10, Func. Count: 97, Neg. LLF: 118.39414092458985
Iteration: 11, Func. Count: 105, Neg. LLF: 118.39414082745105
Optimization terminated successfully (Exit mode 0)
Current function value: 118.39414092458985
Iterations: 11
Function evaluations: 105
Gradient evaluations: 11
Iteration: 1, Func. Count: 11, Neg. LLF: 154.9314151740653
Iteration: 2, Func. Count: 24, Neg. LLF: 118.58300609781432
Iteration: 3, Func. Count: 34, Neg. LLF: 118.59203390597855
Iteration: 4, Func. Count: 45, Neg. LLF: 118.64642480521748
Iteration: 5, Func. Count: 56, Neg. LLF: 118.53629878666959
Iteration: 6, Func. Count: 66, Neg. LLF: 118.51917159131978
Iteration: 7, Func. Count: 76, Neg. LLF: 118.50873054516306
Iteration: 8, Func. Count: 86, Neg. LLF: 118.49034430305329
Iteration: 9, Func. Count: 96, Neg. LLF: 118.48436872568006
Iteration: 10, Func. Count: 106, Neg. LLF: 118.48243257244816
Iteration: 11, Func. Count: 116, Neg. LLF: 118.47402753862589
Iteration: 12, Func. Count: 126, Neg. LLF: 118.45470892307773
Iteration: 13, Func. Count: 136, Neg. LLF: 118.45318565246336
Iteration: 14, Func. Count: 146, Neg. LLF: 118.45202979784939
Iteration: 15, Func. Count: 156, Neg. LLF: 118.45144850047323
Iteration: 16, Func. Count: 166, Neg. LLF: 118.43816565211323
Iteration: 17, Func. Count: 176, Neg. LLF: 126.62960345280473
Iteration: 18, Func. Count: 196, Neg. LLF: 118.56223347570344
Iteration: 19, Func. Count: 216, Neg. LLF: 118.4043395390334
Iteration: 20, Func. Count: 227, Neg. LLF: 4581.977142937715
Iteration: 21, Func. Count: 240, Neg. LLF: 118.54327150455622
Iteration: 22, Func. Count: 251, Neg. LLF: 118.45905416367526
Iteration: 23, Func. Count: 262, Neg. LLF: 118.45796398072713
Iteration: 24, Func. Count: 273, Neg. LLF: 118.39735878468052
Iteration: 25, Func. Count: 283, Neg. LLF: 118.39660871770936
Iteration: 26, Func. Count: 293, Neg. LLF: 118.39643749765699
Iteration: 27, Func. Count: 303, Neg. LLF: 118.3964337527042
Iteration: 28, Func. Count: 312, Neg. LLF: 118.39643355439736
Optimization terminated successfully (Exit mode 0)
Current function value: 118.3964337527042
Iterations: 29
Function evaluations: 312
Gradient evaluations: 28
Iteration: 1, Func. Count: 8, Neg. LLF: 136.32954391411954
Iteration: 2, Func. Count: 17, Neg. LLF: 470.55275519179565
Iteration: 3, Func. Count: 25, Neg. LLF: 117.21494631063092
Iteration: 4, Func. Count: 33, Neg. LLF: 116.7238039359499
Iteration: 5, Func. Count: 40, Neg. LLF: 117.10685082179825
Iteration: 6, Func. Count: 48, Neg. LLF: 116.48397884149885
Iteration: 7, Func. Count: 55, Neg. LLF: 116.46506183164533
Iteration: 8, Func. Count: 62, Neg. LLF: 116.46351467764576
Iteration: 9, Func. Count: 69, Neg. LLF: 116.46346684957078
Iteration: 10, Func. Count: 76, Neg. LLF: 116.46346076014714
Iteration: 11, Func. Count: 82, Neg. LLF: 116.4634607601461
Optimization terminated successfully (Exit mode 0)
Current function value: 116.46346076014714
Iterations: 11
Function evaluations: 82
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 116.83390540527267
Iteration: 2, Func. Count: 17, Neg. LLF: 159.08970853854927
Iteration: 3, Func. Count: 27, Neg. LLF: 143.48379247065367
Iteration: 4, Func. Count: 36, Neg. LLF: 115.63981630676737
Iteration: 5, Func. Count: 44, Neg. LLF: 115.9710522991373
Iteration: 6, Func. Count: 53, Neg. LLF: 115.60240391130078
Iteration: 7, Func. Count: 62, Neg. LLF: 115.51018272739556
Iteration: 8, Func. Count: 70, Neg. LLF: 115.5087804171241
Iteration: 9, Func. Count: 78, Neg. LLF: 115.50790529355312
Iteration: 10, Func. Count: 86, Neg. LLF: 115.50759734204848
Iteration: 11, Func. Count: 94, Neg. LLF: 115.50756692522796
Iteration: 12, Func. Count: 102, Neg. LLF: 115.50756596040219
Optimization terminated successfully (Exit mode 0)
Current function value: 115.50756596040219
Iterations: 12
Function evaluations: 102
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 117.30607732551742
Iteration: 2, Func. Count: 23, Neg. LLF: 163.44415289529258
Iteration: 3, Func. Count: 33, Neg. LLF: 129.6981669768305
Iteration: 4, Func. Count: 43, Neg. LLF: 119.48209046345711
Iteration: 5, Func. Count: 53, Neg. LLF: 119.06695395224963
Iteration: 6, Func. Count: 63, Neg. LLF: 116.33235709486974
Iteration: 7, Func. Count: 72, Neg. LLF: 115.70869724242874
Iteration: 8, Func. Count: 81, Neg. LLF: 115.66584857807405
Iteration: 9, Func. Count: 90, Neg. LLF: 115.62308218319502
Iteration: 10, Func. Count: 99, Neg. LLF: 115.61555560010422
Iteration: 11, Func. Count: 108, Neg. LLF: 115.61060772958676
Iteration: 12, Func. Count: 117, Neg. LLF: 115.58677908970138
Iteration: 13, Func. Count: 126, Neg. LLF: 115.5228301462652
Iteration: 14, Func. Count: 135, Neg. LLF: 115.50888761314522
Iteration: 15, Func. Count: 144, Neg. LLF: 115.50768947170654
Iteration: 16, Func. Count: 153, Neg. LLF: 115.50761313595567
Iteration: 17, Func. Count: 162, Neg. LLF: 115.5075791757871
Iteration: 18, Func. Count: 171, Neg. LLF: 115.5075670582671
Iteration: 19, Func. Count: 180, Neg. LLF: 115.50756597705634
Iteration: 20, Func. Count: 188, Neg. LLF: 115.50756609045756
Optimization terminated successfully (Exit mode 0)
Current function value: 115.50756597705634
Iterations: 20
Function evaluations: 188
Gradient evaluations: 20
Iteration: 1, Func. Count: 11, Neg. LLF: 117.88996795432928
Iteration: 2, Func. Count: 25, Neg. LLF: 400.75467782147655
Iteration: 3, Func. Count: 36, Neg. LLF: 121.70226027073849
Iteration: 4, Func. Count: 47, Neg. LLF: 117.85484382966749
Iteration: 5, Func. Count: 58, Neg. LLF: 155.40080498375121
Iteration: 6, Func. Count: 69, Neg. LLF: 116.01891749862398
Iteration: 7, Func. Count: 79, Neg. LLF: 115.7316999231799
Iteration: 8, Func. Count: 89, Neg. LLF: 115.70812178993866
Iteration: 9, Func. Count: 99, Neg. LLF: 115.69703442697605
Iteration: 10, Func. Count: 109, Neg. LLF: 115.67481477763225
Iteration: 11, Func. Count: 119, Neg. LLF: 115.61580787545913
Iteration: 12, Func. Count: 129, Neg. LLF: 115.56658209161509
Iteration: 13, Func. Count: 139, Neg. LLF: 115.51943358524218
Iteration: 14, Func. Count: 149, Neg. LLF: 115.5076601115029
Iteration: 15, Func. Count: 159, Neg. LLF: 115.50757032512367
Iteration: 16, Func. Count: 169, Neg. LLF: 115.50756620343434
Iteration: 17, Func. Count: 178, Neg. LLF: 115.5075662411922
Optimization terminated successfully (Exit mode 0)
Current function value: 115.50756620343434
Iterations: 17
Function evaluations: 178
Gradient evaluations: 17
Iteration: 1, Func. Count: 12, Neg. LLF: 118.39560575901803
Iteration: 2, Func. Count: 27, Neg. LLF: 5495505.463797363
Iteration: 3, Func. Count: 39, Neg. LLF: 120.20700108890124
Iteration: 4, Func. Count: 51, Neg. LLF: 119.86985588059791
Iteration: 5, Func. Count: 63, Neg. LLF: 123.35587783906936
Iteration: 6, Func. Count: 75, Neg. LLF: 120.23262809181129
Iteration: 7, Func. Count: 87, Neg. LLF: 119.16523289809129
Iteration: 8, Func. Count: 99, Neg. LLF: 115.8857397271906
Iteration: 9, Func. Count: 110, Neg. LLF: 115.87267771744581
Iteration: 10, Func. Count: 122, Neg. LLF: 115.680771253238
Iteration: 11, Func. Count: 133, Neg. LLF: 115.63309247878897
Iteration: 12, Func. Count: 144, Neg. LLF: 115.61239652711275
Iteration: 13, Func. Count: 155, Neg. LLF: 115.59081405336538
Iteration: 14, Func. Count: 166, Neg. LLF: 115.5145264305054
Iteration: 15, Func. Count: 177, Neg. LLF: 115.46615855301366
Iteration: 16, Func. Count: 188, Neg. LLF: 115.43950776977177
Iteration: 17, Func. Count: 199, Neg. LLF: 115.42995121554799
Iteration: 18, Func. Count: 210, Neg. LLF: 115.42718100780985
Iteration: 19, Func. Count: 221, Neg. LLF: 115.42677118305946
Iteration: 20, Func. Count: 232, Neg. LLF: 115.4267309362841
Iteration: 21, Func. Count: 243, Neg. LLF: 115.42672829322947
Iteration: 22, Func. Count: 253, Neg. LLF: 115.42672829325812
Optimization terminated successfully (Exit mode 0)
Current function value: 115.42672829322947
Iterations: 22
Function evaluations: 253
Gradient evaluations: 22
Iteration: 1, Func. Count: 5, Neg. LLF: 128.72933780429733
Iteration: 2, Func. Count: 10, Neg. LLF: 120.09899511607162
Iteration: 3, Func. Count: 14, Neg. LLF: 121.96939747383564
Iteration: 4, Func. Count: 19, Neg. LLF: 119.85977467481247
Iteration: 5, Func. Count: 23, Neg. LLF: 119.76404053641754
Iteration: 6, Func. Count: 27, Neg. LLF: 119.76296214424639
Iteration: 7, Func. Count: 31, Neg. LLF: 119.76292653065768
Iteration: 8, Func. Count: 34, Neg. LLF: 119.76292669354389
Optimization terminated successfully (Exit mode 0)
Current function value: 119.76292653065768
Iterations: 8
Function evaluations: 34
Gradient evaluations: 8
Iteration: 1, Func. Count: 6, Neg. LLF: 163.07391117754642
Iteration: 2, Func. Count: 13, Neg. LLF: 118.75234970301635
Iteration: 3, Func. Count: 18, Neg. LLF: 284.04022314217974
Iteration: 4, Func. Count: 24, Neg. LLF: 118.49855093690262
Iteration: 5, Func. Count: 29, Neg. LLF: 118.48581795803373
Iteration: 6, Func. Count: 34, Neg. LLF: 118.4857628765297
Iteration: 7, Func. Count: 39, Neg. LLF: 118.48575606161283
Iteration: 8, Func. Count: 43, Neg. LLF: 118.48575624124427
Optimization terminated successfully (Exit mode 0)
Current function value: 118.48575606161283
Iterations: 8
Function evaluations: 43
Gradient evaluations: 8
Iteration: 1, Func. Count: 7, Neg. LLF: 157.37983633962003
Iteration: 2, Func. Count: 16, Neg. LLF: 118.75664023246449
Iteration: 3, Func. Count: 22, Neg. LLF: 118.49180950101062
Iteration: 4, Func. Count: 28, Neg. LLF: 119.98705896230959
Iteration: 5, Func. Count: 35, Neg. LLF: 118.44326147342973
Iteration: 6, Func. Count: 41, Neg. LLF: 118.44280712921028
Iteration: 7, Func. Count: 47, Neg. LLF: 118.44268520658176
Iteration: 8, Func. Count: 53, Neg. LLF: 118.44266828834937
Iteration: 9, Func. Count: 58, Neg. LLF: 118.4426683835208
Optimization terminated successfully (Exit mode 0)
Current function value: 118.44266828834937
Iterations: 9
Function evaluations: 58
Gradient evaluations: 9
Iteration: 1, Func. Count: 8, Neg. LLF: 155.66465742517317
Iteration: 2, Func. Count: 18, Neg. LLF: 118.6769354141985
Iteration: 3, Func. Count: 25, Neg. LLF: 118.53458523017255
Iteration: 4, Func. Count: 32, Neg. LLF: 118.55971684042125
Iteration: 5, Func. Count: 40, Neg. LLF: 118.52267317075776
Iteration: 6, Func. Count: 47, Neg. LLF: 118.51066721553704
Iteration: 7, Func. Count: 54, Neg. LLF: 118.49337250292723
Iteration: 8, Func. Count: 61, Neg. LLF: 118.4436154639207
Iteration: 9, Func. Count: 68, Neg. LLF: 118.44296932187967
Iteration: 10, Func. Count: 75, Neg. LLF: 118.4426690645433
Iteration: 11, Func. Count: 82, Neg. LLF: 118.45366369338896
Optimization terminated successfully (Exit mode 0)
Current function value: 118.44266824219487
Iterations: 12
Function evaluations: 84
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 155.9131610278349
Iteration: 2, Func. Count: 20, Neg. LLF: 118.63194855203136
Iteration: 3, Func. Count: 28, Neg. LLF: 118.57040654534175
Iteration: 4, Func. Count: 36, Neg. LLF: 118.55177968350525
Iteration: 5, Func. Count: 44, Neg. LLF: 118.49257971244549
Iteration: 6, Func. Count: 52, Neg. LLF: 118.48913641984177
Iteration: 7, Func. Count: 60, Neg. LLF: 118.48526031626704
Iteration: 8, Func. Count: 68, Neg. LLF: 118.4610834379056
Iteration: 9, Func. Count: 76, Neg. LLF: 118.44964334279922
Iteration: 10, Func. Count: 84, Neg. LLF: 118.44410192593458
Iteration: 11, Func. Count: 92, Neg. LLF: 118.4427725732804
Iteration: 12, Func. Count: 100, Neg. LLF: 118.44267643114094
Iteration: 13, Func. Count: 108, Neg. LLF: 118.44266783382206
Iteration: 14, Func. Count: 115, Neg. LLF: 118.44266773943252
Optimization terminated successfully (Exit mode 0)
Current function value: 118.44266783382206
Iterations: 14
Function evaluations: 115
Gradient evaluations: 14
Iteration: 1, Func. Count: 6, Neg. LLF: 132.25087883014078
Iteration: 2, Func. Count: 12, Neg. LLF: 140.57525038733712
Iteration: 3, Func. Count: 18, Neg. LLF: 119.8626071492525
Iteration: 4, Func. Count: 23, Neg. LLF: 119.82519901380232
Iteration: 5, Func. Count: 28, Neg. LLF: 119.7670521143619
Iteration: 6, Func. Count: 33, Neg. LLF: 119.76352258560392
Iteration: 7, Func. Count: 38, Neg. LLF: 119.762927577848
Iteration: 8, Func. Count: 43, Neg. LLF: 119.76292652063144
Iteration: 9, Func. Count: 47, Neg. LLF: 119.7629264633642
Optimization terminated successfully (Exit mode 0)
Current function value: 119.76292652063144
Iterations: 9
Function evaluations: 47
Gradient evaluations: 9
Iteration: 1, Func. Count: 7, Neg. LLF: 164.3622087398375
Iteration: 2, Func. Count: 15, Neg. LLF: 118.69830228502519
Iteration: 3, Func. Count: 21, Neg. LLF: 180.92840229169246
Iteration: 4, Func. Count: 28, Neg. LLF: 118.50772566309335
Iteration: 5, Func. Count: 34, Neg. LLF: 118.48585412989209
Iteration: 6, Func. Count: 40, Neg. LLF: 118.4857661364276
Iteration: 7, Func. Count: 46, Neg. LLF: 118.48575601974177
Iteration: 8, Func. Count: 51, Neg. LLF: 118.48575619937381
Optimization terminated successfully (Exit mode 0)
Current function value: 118.48575601974177
Iterations: 8
Function evaluations: 51
Gradient evaluations: 8
Iteration: 1, Func. Count: 8, Neg. LLF: 157.68110660897824
Iteration: 2, Func. Count: 18, Neg. LLF: 118.73290871678948
Iteration: 3, Func. Count: 25, Neg. LLF: 118.51394163221451
Iteration: 4, Func. Count: 32, Neg. LLF: 121.31504276941727
Iteration: 5, Func. Count: 40, Neg. LLF: 118.44896707219026
Iteration: 6, Func. Count: 47, Neg. LLF: 118.44269442150187
Iteration: 7, Func. Count: 54, Neg. LLF: 118.4426679120871
Iteration: 8, Func. Count: 60, Neg. LLF: 118.44266800778169
Optimization terminated successfully (Exit mode 0)
Current function value: 118.4426679120871
Iterations: 8
Function evaluations: 60
Gradient evaluations: 8
Iteration: 1, Func. Count: 9, Neg. LLF: 154.98316010600888
Iteration: 2, Func. Count: 20, Neg. LLF: 118.65409605344868
Iteration: 3, Func. Count: 28, Neg. LLF: 118.53912019992272
Iteration: 4, Func. Count: 36, Neg. LLF: 118.60120734952129
Iteration: 5, Func. Count: 45, Neg. LLF: 118.5262259183619
Iteration: 6, Func. Count: 53, Neg. LLF: 118.50280428902464
Iteration: 7, Func. Count: 61, Neg. LLF: 118.4969071942568
Iteration: 8, Func. Count: 69, Neg. LLF: 118.49664147610783
Iteration: 9, Func. Count: 77, Neg. LLF: 118.49658106978123
Iteration: 10, Func. Count: 85, Neg. LLF: 118.49646937866231
Iteration: 11, Func. Count: 93, Neg. LLF: 118.49189273864532
Iteration: 12, Func. Count: 101, Neg. LLF: 118.445581618659
Iteration: 13, Func. Count: 109, Neg. LLF: 127.33871161339911
Iteration: 14, Func. Count: 119, Neg. LLF: 118.44369016669964
Iteration: 15, Func. Count: 128, Neg. LLF: 118.44272379449333
Iteration: 16, Func. Count: 136, Neg. LLF: 118.44266781513363
Iteration: 17, Func. Count: 143, Neg. LLF: 118.44266774306696
Optimization terminated successfully (Exit mode 0)
Current function value: 118.44266781513363
Iterations: 18
Function evaluations: 143
Gradient evaluations: 17
Iteration: 1, Func. Count: 10, Neg. LLF: 154.84244056460017
Iteration: 2, Func. Count: 22, Neg. LLF: 118.62046624274271
Iteration: 3, Func. Count: 31, Neg. LLF: 118.58913824603314
Iteration: 4, Func. Count: 40, Neg. LLF: 118.62004863110859
Iteration: 5, Func. Count: 50, Neg. LLF: 118.54413468785611
Iteration: 6, Func. Count: 59, Neg. LLF: 118.5333656966806
Iteration: 7, Func. Count: 68, Neg. LLF: 118.49059638014168
Iteration: 8, Func. Count: 77, Neg. LLF: 118.48625212729291
Iteration: 9, Func. Count: 86, Neg. LLF: 118.48267934771238
Iteration: 10, Func. Count: 95, Neg. LLF: 118.47988501432056
Iteration: 11, Func. Count: 104, Neg. LLF: 118.46654144785107
Iteration: 12, Func. Count: 113, Neg. LLF: 118.44998986530857
Iteration: 13, Func. Count: 122, Neg. LLF: 118.44315035589582
Iteration: 14, Func. Count: 131, Neg. LLF: 118.44266963343549
Iteration: 15, Func. Count: 140, Neg. LLF: 118.44266935787346
Optimization terminated successfully (Exit mode 0)
Current function value: 118.44266935787346
Iterations: 15
Function evaluations: 140
Gradient evaluations: 15
Iteration: 1, Func. Count: 7, Neg. LLF: 129.14305331383773
Iteration: 2, Func. Count: 14, Neg. LLF: 142.91921916743573
Iteration: 3, Func. Count: 21, Neg. LLF: 119.85916120236936
Iteration: 4, Func. Count: 27, Neg. LLF: 119.82486733089819
Iteration: 5, Func. Count: 33, Neg. LLF: 119.76455286094412
Iteration: 6, Func. Count: 39, Neg. LLF: 119.76298359361937
Iteration: 7, Func. Count: 45, Neg. LLF: 119.76292832920569
Iteration: 8, Func. Count: 51, Neg. LLF: 119.76292651695222
Iteration: 9, Func. Count: 56, Neg. LLF: 119.76292656903998
Optimization terminated successfully (Exit mode 0)
Current function value: 119.76292651695222
Iterations: 9
Function evaluations: 56
Gradient evaluations: 9
Iteration: 1, Func. Count: 8, Neg. LLF: 164.03934725027668
Iteration: 2, Func. Count: 17, Neg. LLF: 118.70994172424864
Iteration: 3, Func. Count: 24, Neg. LLF: 148.70661305040505
Iteration: 4, Func. Count: 32, Neg. LLF: 118.7655376116985
Iteration: 5, Func. Count: 40, Neg. LLF: 118.48159446644844
Iteration: 6, Func. Count: 47, Neg. LLF: 119.015279885869
Iteration: 7, Func. Count: 55, Neg. LLF: 118.47622220401787
Iteration: 8, Func. Count: 62, Neg. LLF: 118.476119140113
Iteration: 9, Func. Count: 69, Neg. LLF: 118.47611514320113
Iteration: 10, Func. Count: 75, Neg. LLF: 118.47611495318263
Optimization terminated successfully (Exit mode 0)
Current function value: 118.47611514320113
Iterations: 10
Function evaluations: 75
Gradient evaluations: 10
Iteration: 1, Func. Count: 9, Neg. LLF: 157.46735745481567
Iteration: 2, Func. Count: 20, Neg. LLF: 118.73671039093045
Iteration: 3, Func. Count: 28, Neg. LLF: 118.51504388736669
Iteration: 4, Func. Count: 36, Neg. LLF: 178.84448648942342
Iteration: 5, Func. Count: 45, Neg. LLF: 118.53014065058277
Iteration: 6, Func. Count: 54, Neg. LLF: 118.07567989333909
Iteration: 7, Func. Count: 62, Neg. LLF: 117.78407420379965
Iteration: 8, Func. Count: 70, Neg. LLF: 117.66557632044464
Iteration: 9, Func. Count: 78, Neg. LLF: 117.62767250973332
Iteration: 10, Func. Count: 86, Neg. LLF: 117.62156422359556
Iteration: 11, Func. Count: 94, Neg. LLF: 117.61979507861075
Iteration: 12, Func. Count: 102, Neg. LLF: 117.61964810474046
Iteration: 13, Func. Count: 120, Neg. LLF: 117.62080214962543
Iteration: 14, Func. Count: 130, Neg. LLF: 117.65477815661097
Iteration: 15, Func. Count: 140, Neg. LLF: 117.62105067300364
Iteration: 16, Func. Count: 149, Neg. LLF: 117.6210523759005
Iteration: 17, Func. Count: 159, Neg. LLF: 117.62096133771634
Iteration: 18, Func. Count: 166, Neg. LLF: 117.62096115212739
Optimization terminated successfully (Exit mode 0)
Current function value: 117.62096133771634
Iterations: 19
Function evaluations: 166
Gradient evaluations: 18
Iteration: 1, Func. Count: 10, Neg. LLF: 155.03766365547907
Iteration: 2, Func. Count: 22, Neg. LLF: 118.6553396797902
Iteration: 3, Func. Count: 31, Neg. LLF: 118.5385211146824
Iteration: 4, Func. Count: 40, Neg. LLF: 118.81220663144042
Iteration: 5, Func. Count: 50, Neg. LLF: 118.45289997912667
Iteration: 6, Func. Count: 60, Neg. LLF: 118.5553853490427
Iteration: 7, Func. Count: 70, Neg. LLF: 118.39478055778326
Iteration: 8, Func. Count: 79, Neg. LLF: 118.39424634621425
Iteration: 9, Func. Count: 88, Neg. LLF: 118.39414586322455
Iteration: 10, Func. Count: 97, Neg. LLF: 118.39414090624769
Iteration: 11, Func. Count: 105, Neg. LLF: 118.39414080906735
Optimization terminated successfully (Exit mode 0)
Current function value: 118.39414090624769
Iterations: 11
Function evaluations: 105
Gradient evaluations: 11
Iteration: 1, Func. Count: 11, Neg. LLF: 155.68248017102607
Iteration: 2, Func. Count: 24, Neg. LLF: 118.62319350108524
Iteration: 3, Func. Count: 34, Neg. LLF: 118.57084241771149
Iteration: 4, Func. Count: 44, Neg. LLF: 118.6251068624162
Iteration: 5, Func. Count: 55, Neg. LLF: 118.53232610838377
Iteration: 6, Func. Count: 65, Neg. LLF: 118.4889308368901
Iteration: 7, Func. Count: 75, Neg. LLF: 118.09453132364943
Iteration: 8, Func. Count: 85, Neg. LLF: 117.68624284463125
Iteration: 9, Func. Count: 95, Neg. LLF: 117.66188186282865
Iteration: 10, Func. Count: 105, Neg. LLF: 117.64382258353531
Iteration: 11, Func. Count: 115, Neg. LLF: 117.62243498277152
Iteration: 12, Func. Count: 125, Neg. LLF: 117.62087533764158
Iteration: 13, Func. Count: 135, Neg. LLF: 117.86874537596104
Iteration: 14, Func. Count: 147, Neg. LLF: 117.68852551151492
Iteration: 15, Func. Count: 159, Neg. LLF: 117.62116434124937
Iteration: 16, Func. Count: 170, Neg. LLF: 117.62096133715754
Iteration: 17, Func. Count: 179, Neg. LLF: 117.62096115732537
Optimization terminated successfully (Exit mode 0)
Current function value: 117.62096133715754
Iterations: 18
Function evaluations: 179
Gradient evaluations: 17
Iteration: 1, Func. Count: 8, Neg. LLF: 133.28430981283967
Iteration: 2, Func. Count: 16, Neg. LLF: 138.8731168981633
Iteration: 3, Func. Count: 24, Neg. LLF: 119.94468816558253
Iteration: 4, Func. Count: 31, Neg. LLF: 119.83068141823793
Iteration: 5, Func. Count: 38, Neg. LLF: 119.78916575703363
Iteration: 6, Func. Count: 45, Neg. LLF: 119.76347169670353
Iteration: 7, Func. Count: 52, Neg. LLF: 119.76293181111205
Iteration: 8, Func. Count: 59, Neg. LLF: 119.76292652207076
Iteration: 9, Func. Count: 65, Neg. LLF: 119.76292655706492
Optimization terminated successfully (Exit mode 0)
Current function value: 119.76292652207076
Iterations: 9
Function evaluations: 65
Gradient evaluations: 9
Iteration: 1, Func. Count: 9, Neg. LLF: 129.65588260195224
Iteration: 2, Func. Count: 20, Neg. LLF: 136.29477995082917
Iteration: 3, Func. Count: 29, Neg. LLF: 119.05405027354382
Iteration: 4, Func. Count: 37, Neg. LLF: 118.70113258092073
Iteration: 5, Func. Count: 45, Neg. LLF: 142.65116887107416
Iteration: 6, Func. Count: 54, Neg. LLF: 118.57833339868813
Iteration: 7, Func. Count: 63, Neg. LLF: 118.39905012525465
Iteration: 8, Func. Count: 71, Neg. LLF: 118.39651348988637
Iteration: 9, Func. Count: 79, Neg. LLF: 118.39643476169014
Iteration: 10, Func. Count: 87, Neg. LLF: 118.3964336856929
Iteration: 11, Func. Count: 94, Neg. LLF: 118.39643348781601
Optimization terminated successfully (Exit mode 0)
Current function value: 118.3964336856929
Iterations: 11
Function evaluations: 94
Gradient evaluations: 11
Iteration: 1, Func. Count: 10, Neg. LLF: 157.4130732011116
Iteration: 2, Func. Count: 22, Neg. LLF: 118.97150976111779
Iteration: 3, Func. Count: 31, Neg. LLF: 118.53717496440879
Iteration: 4, Func. Count: 40, Neg. LLF: 443.584564224126
Iteration: 5, Func. Count: 51, Neg. LLF: 117.96971338932816
Iteration: 6, Func. Count: 60, Neg. LLF: 117.69435014442519
Iteration: 7, Func. Count: 69, Neg. LLF: 117.64423113434273
Iteration: 8, Func. Count: 78, Neg. LLF: 117.62481018732032
Iteration: 9, Func. Count: 87, Neg. LLF: 117.62101860313149
Iteration: 10, Func. Count: 96, Neg. LLF: 117.62088717772225
Iteration: 11, Func. Count: 105, Neg. LLF: 117.62079245075023
Iteration: 12, Func. Count: 124, Neg. LLF: 117.6329339005781
Iteration: 13, Func. Count: 135, Neg. LLF: 117.62097036438212
Iteration: 14, Func. Count: 145, Neg. LLF: 117.62096309069237
Iteration: 15, Func. Count: 156, Neg. LLF: 117.62096133798224
Iteration: 16, Func. Count: 164, Neg. LLF: 117.62096115238688
Optimization terminated successfully (Exit mode 0)
Current function value: 117.62096133798224
Iterations: 17
Function evaluations: 164
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 155.54453409674494
Iteration: 2, Func. Count: 24, Neg. LLF: 118.6633088685421
Iteration: 3, Func. Count: 34, Neg. LLF: 118.53366196914781
Iteration: 4, Func. Count: 44, Neg. LLF: 118.62988401128062
Iteration: 5, Func. Count: 55, Neg. LLF: 118.75117217746059
Iteration: 6, Func. Count: 66, Neg. LLF: 118.51500879216752
Iteration: 7, Func. Count: 77, Neg. LLF: 118.39510140020494
Iteration: 8, Func. Count: 87, Neg. LLF: 118.39418321494506
Iteration: 9, Func. Count: 97, Neg. LLF: 118.39414475310225
Iteration: 10, Func. Count: 107, Neg. LLF: 118.3941409537033
Iteration: 11, Func. Count: 116, Neg. LLF: 118.39414085654842
Optimization terminated successfully (Exit mode 0)
Current function value: 118.3941409537033
Iterations: 11
Function evaluations: 116
Gradient evaluations: 11
Iteration: 1, Func. Count: 12, Neg. LLF: 155.8822771663746
Iteration: 2, Func. Count: 26, Neg. LLF: 118.62195382199563
Iteration: 3, Func. Count: 37, Neg. LLF: 118.5711150963081
Iteration: 4, Func. Count: 48, Neg. LLF: 118.61499848413135
Iteration: 5, Func. Count: 60, Neg. LLF: 118.49953179367434
Iteration: 6, Func. Count: 71, Neg. LLF: 118.93740122198476
Iteration: 7, Func. Count: 83, Neg. LLF: 118.35657536551308
Iteration: 8, Func. Count: 94, Neg. LLF: 118.19584213208113
Iteration: 9, Func. Count: 105, Neg. LLF: 117.93975896133627
Iteration: 10, Func. Count: 116, Neg. LLF: 117.61537823808878
Iteration: 11, Func. Count: 127, Neg. LLF: 117.60911035066725
Iteration: 12, Func. Count: 138, Neg. LLF: 117.61376358243116
Iteration: 13, Func. Count: 149, Neg. LLF: 118.93114884590833
Iteration: 14, Func. Count: 162, Neg. LLF: 118.75077404388789
Iteration: 15, Func. Count: 175, Neg. LLF: 117.62336996323924
Iteration: 16, Func. Count: 187, Neg. LLF: 117.62096135071431
Iteration: 17, Func. Count: 197, Neg. LLF: 117.6209611709857
Optimization terminated successfully (Exit mode 0)
Current function value: 117.62096135071431
Iterations: 18
Function evaluations: 197
Gradient evaluations: 17
Iteration: 1, Func. Count: 9, Neg. LLF: 137.98823549871827
Iteration: 2, Func. Count: 19, Neg. LLF: 431.55238525045064
Iteration: 3, Func. Count: 28, Neg. LLF: 117.2243548129622
Iteration: 4, Func. Count: 37, Neg. LLF: 116.74270298874882
Iteration: 5, Func. Count: 45, Neg. LLF: 120.2541916923685
Iteration: 6, Func. Count: 55, Neg. LLF: 117.59937218869656
Iteration: 7, Func. Count: 65, Neg. LLF: 116.49659073168772
Iteration: 8, Func. Count: 73, Neg. LLF: 116.46472430808991
Iteration: 9, Func. Count: 81, Neg. LLF: 116.46350556927545
Iteration: 10, Func. Count: 89, Neg. LLF: 116.46325176221853
Iteration: 11, Func. Count: 97, Neg. LLF: 116.46324376716763
Iteration: 12, Func. Count: 104, Neg. LLF: 116.4632437671502
Optimization terminated successfully (Exit mode 0)
Current function value: 116.46324376716763
Iterations: 12
Function evaluations: 104
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 117.19257689489085
Iteration: 2, Func. Count: 19, Neg. LLF: 144.10234603699348
Iteration: 3, Func. Count: 30, Neg. LLF: 148.21459400328902
Iteration: 4, Func. Count: 40, Neg. LLF: 116.12379725822917
Iteration: 5, Func. Count: 49, Neg. LLF: 337.1304485335743
Iteration: 6, Func. Count: 59, Neg. LLF: 119.82760917373619
Iteration: 7, Func. Count: 70, Neg. LLF: 115.46502343156634
Iteration: 8, Func. Count: 79, Neg. LLF: 115.47534565764333
Iteration: 9, Func. Count: 89, Neg. LLF: 115.43314694801965
Iteration: 10, Func. Count: 98, Neg. LLF: 115.43058814036665
Iteration: 11, Func. Count: 107, Neg. LLF: 115.42861276265003
Iteration: 12, Func. Count: 116, Neg. LLF: 115.42820652565203
Iteration: 13, Func. Count: 125, Neg. LLF: 115.42814621590941
Iteration: 14, Func. Count: 134, Neg. LLF: 115.42813581037018
Iteration: 15, Func. Count: 143, Neg. LLF: 115.42813236447921
Iteration: 16, Func. Count: 151, Neg. LLF: 115.428132364501
Optimization terminated successfully (Exit mode 0)
Current function value: 115.42813236447921
Iterations: 16
Function evaluations: 151
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 117.92107232310383
Iteration: 2, Func. Count: 25, Neg. LLF: 178.1910291088438
Iteration: 3, Func. Count: 36, Neg. LLF: 140.56872505416393
Iteration: 4, Func. Count: 47, Neg. LLF: 136.43737545545784
Iteration: 5, Func. Count: 58, Neg. LLF: 129.5356606316804
Iteration: 6, Func. Count: 69, Neg. LLF: 136.3867464986485
Iteration: 7, Func. Count: 80, Neg. LLF: 116.5170317684066
Iteration: 8, Func. Count: 90, Neg. LLF: 121.05656661082267
Iteration: 9, Func. Count: 101, Neg. LLF: 116.2803251680621
Iteration: 10, Func. Count: 112, Neg. LLF: 115.81070090478808
Iteration: 11, Func. Count: 122, Neg. LLF: 115.83296639163191
Iteration: 12, Func. Count: 133, Neg. LLF: 115.72971956116558
Iteration: 13, Func. Count: 143, Neg. LLF: 115.67274065905332
Iteration: 14, Func. Count: 153, Neg. LLF: 115.58416586682151
Iteration: 15, Func. Count: 163, Neg. LLF: 115.52200302910983
Iteration: 16, Func. Count: 173, Neg. LLF: 115.50758464835708
Iteration: 17, Func. Count: 183, Neg. LLF: 115.49852323826823
Iteration: 18, Func. Count: 193, Neg. LLF: 115.4889710018095
Iteration: 19, Func. Count: 203, Neg. LLF: 115.48102428762589
Iteration: 20, Func. Count: 213, Neg. LLF: 115.47262668408575
Iteration: 21, Func. Count: 223, Neg. LLF: 115.45844944889548
Iteration: 22, Func. Count: 233, Neg. LLF: 115.44247214780002
Iteration: 23, Func. Count: 243, Neg. LLF: 115.43127392140322
Iteration: 24, Func. Count: 253, Neg. LLF: 115.4283006422185
Iteration: 25, Func. Count: 263, Neg. LLF: 115.42815327865013
Iteration: 26, Func. Count: 273, Neg. LLF: 115.42813216532385
Iteration: 27, Func. Count: 282, Neg. LLF: 115.42813228869981
Optimization terminated successfully (Exit mode 0)
Current function value: 115.42813216532385
Iterations: 27
Function evaluations: 282
Gradient evaluations: 27
Iteration: 1, Func. Count: 12, Neg. LLF: 118.65476207315447
Iteration: 2, Func. Count: 27, Neg. LLF: 4216.66696292584
Iteration: 3, Func. Count: 39, Neg. LLF: 118.9526961847468
Iteration: 4, Func. Count: 51, Neg. LLF: 118.95658450764866
Iteration: 5, Func. Count: 63, Neg. LLF: 155.40638068657597
Iteration: 6, Func. Count: 75, Neg. LLF: 115.7935832134923
Iteration: 7, Func. Count: 86, Neg. LLF: 117.6316160828459
Iteration: 8, Func. Count: 98, Neg. LLF: 116.78183640955852
Iteration: 9, Func. Count: 110, Neg. LLF: 115.6263652109142
Iteration: 10, Func. Count: 121, Neg. LLF: 115.60949156998764
Iteration: 11, Func. Count: 132, Neg. LLF: 115.57535750257483
Iteration: 12, Func. Count: 143, Neg. LLF: 115.5404769717612
Iteration: 13, Func. Count: 154, Neg. LLF: 115.51827399857721
Iteration: 14, Func. Count: 165, Neg. LLF: 115.50100845697581
Iteration: 15, Func. Count: 176, Neg. LLF: 115.47535373147907
Iteration: 16, Func. Count: 187, Neg. LLF: 115.44605092910227
Iteration: 17, Func. Count: 198, Neg. LLF: 115.42986507082858
Iteration: 18, Func. Count: 209, Neg. LLF: 115.42838653419685
Iteration: 19, Func. Count: 220, Neg. LLF: 115.42815302720632
Iteration: 20, Func. Count: 231, Neg. LLF: 115.42813252412364
Iteration: 21, Func. Count: 241, Neg. LLF: 115.42813258731772
Optimization terminated successfully (Exit mode 0)
Current function value: 115.42813252412364
Iterations: 21
Function evaluations: 241
Gradient evaluations: 21
Iteration: 1, Func. Count: 13, Neg. LLF: 119.19583545215869
Iteration: 2, Func. Count: 29, Neg. LLF: 5510497.069024177
Iteration: 3, Func. Count: 42, Neg. LLF: 120.18836322230388
Iteration: 4, Func. Count: 55, Neg. LLF: 116.98903089254709
Iteration: 5, Func. Count: 67, Neg. LLF: 118.74893950896026
Iteration: 6, Func. Count: 80, Neg. LLF: 117.18750365888761
Iteration: 7, Func. Count: 94, Neg. LLF: 141.62037170933337
Iteration: 8, Func. Count: 107, Neg. LLF: 120.23059600722121
Iteration: 9, Func. Count: 120, Neg. LLF: 115.76416316336656
Iteration: 10, Func. Count: 133, Neg. LLF: 115.58042474296174
Iteration: 11, Func. Count: 145, Neg. LLF: 115.54621701702435
Iteration: 12, Func. Count: 157, Neg. LLF: 115.50570046015699
Iteration: 13, Func. Count: 169, Neg. LLF: 115.42763170690539
Iteration: 14, Func. Count: 181, Neg. LLF: 115.36928956087772
Iteration: 15, Func. Count: 193, Neg. LLF: 115.33485996288887
Iteration: 16, Func. Count: 205, Neg. LLF: 115.32094801763557
Iteration: 17, Func. Count: 217, Neg. LLF: 115.30485803200482
Iteration: 18, Func. Count: 229, Neg. LLF: 115.29640175922654
Iteration: 19, Func. Count: 241, Neg. LLF: 115.2956948229103
Iteration: 20, Func. Count: 253, Neg. LLF: 115.29562936291453
Iteration: 21, Func. Count: 265, Neg. LLF: 115.29562794683847
Iteration: 22, Func. Count: 276, Neg. LLF: 115.29562793967352
Optimization terminated successfully (Exit mode 0)
Current function value: 115.29562794683847
Iterations: 22
Function evaluations: 276
Gradient evaluations: 22
Iteration: 1, Func. Count: 6, Neg. LLF: 128.47545069654814
Iteration: 2, Func. Count: 12, Neg. LLF: 120.65966802161896
Iteration: 3, Func. Count: 17, Neg. LLF: 120.7912467175158
Iteration: 4, Func. Count: 23, Neg. LLF: 119.87102894393696
Iteration: 5, Func. Count: 28, Neg. LLF: 119.77501050847786
Iteration: 6, Func. Count: 33, Neg. LLF: 119.763394561812
Iteration: 7, Func. Count: 38, Neg. LLF: 119.76292818945163
Iteration: 8, Func. Count: 43, Neg. LLF: 119.76292651712404
Iteration: 9, Func. Count: 47, Neg. LLF: 119.76292654949972
Optimization terminated successfully (Exit mode 0)
Current function value: 119.76292651712404
Iterations: 9
Function evaluations: 47
Gradient evaluations: 9
Iteration: 1, Func. Count: 7, Neg. LLF: 162.49362997840765
Iteration: 2, Func. Count: 15, Neg. LLF: 118.75260588169779
Iteration: 3, Func. Count: 21, Neg. LLF: 410.2048133406479
Iteration: 4, Func. Count: 28, Neg. LLF: 118.50723082480293
Iteration: 5, Func. Count: 34, Neg. LLF: 118.48622116219651
Iteration: 6, Func. Count: 40, Neg. LLF: 118.48581520594281
Iteration: 7, Func. Count: 46, Neg. LLF: 118.48575607907806
Iteration: 8, Func. Count: 51, Neg. LLF: 118.48575625846578
Optimization terminated successfully (Exit mode 0)
Current function value: 118.48575607907806
Iterations: 8
Function evaluations: 51
Gradient evaluations: 8
Iteration: 1, Func. Count: 8, Neg. LLF: 157.6084871528136
Iteration: 2, Func. Count: 18, Neg. LLF: 118.76114838761433
Iteration: 3, Func. Count: 25, Neg. LLF: 118.51381185994116
Iteration: 4, Func. Count: 32, Neg. LLF: 121.82552439845293
Iteration: 5, Func. Count: 40, Neg. LLF: 118.4437942160538
Iteration: 6, Func. Count: 47, Neg. LLF: 118.44318638028959
Iteration: 7, Func. Count: 54, Neg. LLF: 118.44271482422273
Iteration: 8, Func. Count: 61, Neg. LLF: 118.4426679746139
Iteration: 9, Func. Count: 67, Neg. LLF: 118.44266806987838
Optimization terminated successfully (Exit mode 0)
Current function value: 118.4426679746139
Iterations: 9
Function evaluations: 67
Gradient evaluations: 9
Iteration: 1, Func. Count: 9, Neg. LLF: 155.80356869595917
Iteration: 2, Func. Count: 20, Neg. LLF: 118.67195693027452
Iteration: 3, Func. Count: 28, Neg. LLF: 118.53769019060213
Iteration: 4, Func. Count: 36, Neg. LLF: 118.53698284121701
Iteration: 5, Func. Count: 45, Neg. LLF: 118.52932145161807
Iteration: 6, Func. Count: 53, Neg. LLF: 118.5094311228846
Iteration: 7, Func. Count: 61, Neg. LLF: 118.49769533087664
Iteration: 8, Func. Count: 69, Neg. LLF: 118.49698180711846
Iteration: 9, Func. Count: 77, Neg. LLF: 118.49672586939992
Iteration: 10, Func. Count: 85, Neg. LLF: 118.49671561313635
Iteration: 11, Func. Count: 93, Neg. LLF: 118.49671451895573
Iteration: 12, Func. Count: 101, Neg. LLF: 118.49670446363007
Iteration: 13, Func. Count: 109, Neg. LLF: 118.49641587021303
Iteration: 14, Func. Count: 117, Neg. LLF: 118.44287192983762
Iteration: 15, Func. Count: 125, Neg. LLF: 119.7992051085714
Iteration: 16, Func. Count: 135, Neg. LLF: 118.44411876750948
Iteration: 17, Func. Count: 144, Neg. LLF: 118.44266781325574
Iteration: 18, Func. Count: 151, Neg. LLF: 118.44266774110041
Optimization terminated successfully (Exit mode 0)
Current function value: 118.44266781325574
Iterations: 19
Function evaluations: 151
Gradient evaluations: 18
Iteration: 1, Func. Count: 10, Neg. LLF: 155.35550782676026
Iteration: 2, Func. Count: 22, Neg. LLF: 118.61243975082581
Iteration: 3, Func. Count: 31, Neg. LLF: 118.63887585654078
Iteration: 4, Func. Count: 41, Neg. LLF: 118.5742008820949
Iteration: 5, Func. Count: 51, Neg. LLF: 118.53934379526883
Iteration: 6, Func. Count: 60, Neg. LLF: 118.52269394936293
Iteration: 7, Func. Count: 69, Neg. LLF: 118.48503733107269
Iteration: 8, Func. Count: 78, Neg. LLF: 118.48411516728102
Iteration: 9, Func. Count: 87, Neg. LLF: 118.47948295480415
Iteration: 10, Func. Count: 96, Neg. LLF: 118.47185081660102
Iteration: 11, Func. Count: 105, Neg. LLF: 118.45835686854474
Iteration: 12, Func. Count: 114, Neg. LLF: 118.44532397939628
Iteration: 13, Func. Count: 123, Neg. LLF: 118.44268031461363
Iteration: 14, Func. Count: 132, Neg. LLF: 118.44266782844451
Iteration: 15, Func. Count: 141, Neg. LLF: 118.44308872049972
Optimization terminated successfully (Exit mode 0)
Current function value: 118.44266779820767
Iterations: 16
Function evaluations: 143
Gradient evaluations: 15
Iteration: 1, Func. Count: 7, Neg. LLF: 128.5534083756985
Iteration: 2, Func. Count: 14, Neg. LLF: 121.26674207331426
Iteration: 3, Func. Count: 20, Neg. LLF: 120.86217913284295
Iteration: 4, Func. Count: 27, Neg. LLF: 119.86956154262879
Iteration: 5, Func. Count: 33, Neg. LLF: 119.77436127694867
Iteration: 6, Func. Count: 39, Neg. LLF: 119.76336279000097
Iteration: 7, Func. Count: 45, Neg. LLF: 119.76292799275201
Iteration: 8, Func. Count: 51, Neg. LLF: 119.76292651699995
Iteration: 9, Func. Count: 56, Neg. LLF: 119.76292657426703
Optimization terminated successfully (Exit mode 0)
Current function value: 119.76292651699995
Iterations: 9
Function evaluations: 56
Gradient evaluations: 9
Iteration: 1, Func. Count: 8, Neg. LLF: 163.81696480905984
Iteration: 2, Func. Count: 17, Neg. LLF: 118.70447736593378
Iteration: 3, Func. Count: 24, Neg. LLF: 213.51497101545579
Iteration: 4, Func. Count: 32, Neg. LLF: 118.50350219782034
Iteration: 5, Func. Count: 39, Neg. LLF: 118.48579828342754
Iteration: 6, Func. Count: 46, Neg. LLF: 118.48576056258463
Iteration: 7, Func. Count: 53, Neg. LLF: 118.48575602772
Iteration: 8, Func. Count: 59, Neg. LLF: 118.48575620755325
Optimization terminated successfully (Exit mode 0)
Current function value: 118.48575602772
Iterations: 8
Function evaluations: 59
Gradient evaluations: 8
Iteration: 1, Func. Count: 9, Neg. LLF: 157.92662675121514
Iteration: 2, Func. Count: 20, Neg. LLF: 118.74311343485057
Iteration: 3, Func. Count: 28, Neg. LLF: 118.53560865040416
Iteration: 4, Func. Count: 36, Neg. LLF: 123.01931440974555
Iteration: 5, Func. Count: 45, Neg. LLF: 118.45315620769148
Iteration: 6, Func. Count: 53, Neg. LLF: 118.44318086560114
Iteration: 7, Func. Count: 61, Neg. LLF: 118.44268715402215
Iteration: 8, Func. Count: 69, Neg. LLF: 118.44266824819245
Iteration: 9, Func. Count: 76, Neg. LLF: 118.44266815294104
Optimization terminated successfully (Exit mode 0)
Current function value: 118.44266824819245
Iterations: 9
Function evaluations: 76
Gradient evaluations: 9
Iteration: 1, Func. Count: 10, Neg. LLF: 155.12708933596576
Iteration: 2, Func. Count: 22, Neg. LLF: 118.65380993821341
Iteration: 3, Func. Count: 31, Neg. LLF: 118.54360706626747
Iteration: 4, Func. Count: 40, Neg. LLF: 118.55665708350777
Iteration: 5, Func. Count: 50, Neg. LLF: 118.52048467909145
Iteration: 6, Func. Count: 59, Neg. LLF: 118.49460465374078
Iteration: 7, Func. Count: 68, Neg. LLF: 118.49493712348846
Iteration: 8, Func. Count: 78, Neg. LLF: 118.49386666228128
Iteration: 9, Func. Count: 87, Neg. LLF: 118.49195737763218
Iteration: 10, Func. Count: 96, Neg. LLF: 118.48579722308719
Iteration: 11, Func. Count: 105, Neg. LLF: 118.4857577285037
Iteration: 12, Func. Count: 114, Neg. LLF: 118.48575606178244
Iteration: 13, Func. Count: 123, Neg. LLF: 118.49256111307402
Optimization terminated successfully (Exit mode 0)
Current function value: 118.48575602921683
Iterations: 14
Function evaluations: 126
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 154.3062463759474
Iteration: 2, Func. Count: 24, Neg. LLF: 118.60691614192773
Iteration: 3, Func. Count: 34, Neg. LLF: 118.6274228842506
Iteration: 4, Func. Count: 45, Neg. LLF: 118.68158019252672
Iteration: 5, Func. Count: 56, Neg. LLF: 118.54282340447972
Iteration: 6, Func. Count: 66, Neg. LLF: 118.52897348041625
Iteration: 7, Func. Count: 76, Neg. LLF: 118.52479893616001
Iteration: 8, Func. Count: 86, Neg. LLF: 118.49920846676208
Iteration: 9, Func. Count: 96, Neg. LLF: 118.50177854644983
Iteration: 10, Func. Count: 107, Neg. LLF: 118.49553419074378
Iteration: 11, Func. Count: 117, Neg. LLF: 118.49532678982564
Iteration: 12, Func. Count: 127, Neg. LLF: 118.49438242947872
Iteration: 13, Func. Count: 137, Neg. LLF: 118.490822824163
Iteration: 14, Func. Count: 147, Neg. LLF: 118.48983836168294
Iteration: 15, Func. Count: 157, Neg. LLF: 118.48663240080344
Iteration: 16, Func. Count: 167, Neg. LLF: 118.4858848615417
Iteration: 17, Func. Count: 177, Neg. LLF: 118.48579717875657
Iteration: 18, Func. Count: 187, Neg. LLF: 118.48575629616842
Iteration: 19, Func. Count: 197, Neg. LLF: 118.53247982265536
Optimization terminated successfully (Exit mode 0)
Current function value: 118.48575604626453
Iterations: 20
Function evaluations: 200
Gradient evaluations: 19
Iteration: 1, Func. Count: 8, Neg. LLF: 129.6657218486821
Iteration: 2, Func. Count: 16, Neg. LLF: 128.16700176450564
Iteration: 3, Func. Count: 24, Neg. LLF: 119.91290029455322
Iteration: 4, Func. Count: 31, Neg. LLF: 121.14150498585487
Iteration: 5, Func. Count: 39, Neg. LLF: 119.82031920468009
Iteration: 6, Func. Count: 46, Neg. LLF: 119.76680162039638
Iteration: 7, Func. Count: 53, Neg. LLF: 119.76222450388104
Iteration: 8, Func. Count: 60, Neg. LLF: 119.76044592943435
Iteration: 9, Func. Count: 67, Neg. LLF: 119.76038953438086
Iteration: 10, Func. Count: 74, Neg. LLF: 119.76038804844755
Iteration: 11, Func. Count: 80, Neg. LLF: 119.76038799649783
Optimization terminated successfully (Exit mode 0)
Current function value: 119.76038804844755
Iterations: 11
Function evaluations: 80
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 163.48900034563138
Iteration: 2, Func. Count: 19, Neg. LLF: 118.716403066608
Iteration: 3, Func. Count: 27, Neg. LLF: 137.9411179525801
Iteration: 4, Func. Count: 37, Neg. LLF: 120.9206395018053
Iteration: 5, Func. Count: 46, Neg. LLF: 118.53121552203318
Iteration: 6, Func. Count: 55, Neg. LLF: 118.48795370643344
Iteration: 7, Func. Count: 64, Neg. LLF: 118.47611796400733
Iteration: 8, Func. Count: 72, Neg. LLF: 118.47611504087666
Iteration: 9, Func. Count: 79, Neg. LLF: 118.47611485023855
Optimization terminated successfully (Exit mode 0)
Current function value: 118.47611504087666
Iterations: 9
Function evaluations: 79
Gradient evaluations: 9
Iteration: 1, Func. Count: 10, Neg. LLF: 157.70373198345771
Iteration: 2, Func. Count: 21, Neg. LLF: 118.59777469128043
Iteration: 3, Func. Count: 30, Neg. LLF: 125.93856029326811
Iteration: 4, Func. Count: 40, Neg. LLF: 118.50084806398571
Iteration: 5, Func. Count: 50, Neg. LLF: 118.46684681689092
Iteration: 6, Func. Count: 59, Neg. LLF: 118.22765453909697
Iteration: 7, Func. Count: 68, Neg. LLF: 117.69861368797943
Iteration: 8, Func. Count: 77, Neg. LLF: 117.6332950943917
Iteration: 9, Func. Count: 86, Neg. LLF: 117.62837212435531
Iteration: 10, Func. Count: 95, Neg. LLF: 129.48223498998152
Iteration: 11, Func. Count: 106, Neg. LLF: 119.31661034310409
Iteration: 12, Func. Count: 116, Neg. LLF: 117.75512397148557
Iteration: 13, Func. Count: 126, Neg. LLF: 117.62096174166331
Iteration: 14, Func. Count: 134, Neg. LLF: 117.62096155654056
Optimization terminated successfully (Exit mode 0)
Current function value: 117.62096174166331
Iterations: 15
Function evaluations: 134
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 155.17371008779406
Iteration: 2, Func. Count: 24, Neg. LLF: 118.65581465481725
Iteration: 3, Func. Count: 34, Neg. LLF: 118.53921354104742
Iteration: 4, Func. Count: 44, Neg. LLF: 118.95456098879424
Iteration: 5, Func. Count: 55, Neg. LLF: 118.451923200343
Iteration: 6, Func. Count: 65, Neg. LLF: 118.4578591255966
Iteration: 7, Func. Count: 76, Neg. LLF: 118.40835526557409
Iteration: 8, Func. Count: 87, Neg. LLF: 118.3942732700362
Iteration: 9, Func. Count: 97, Neg. LLF: 118.39418223630778
Iteration: 10, Func. Count: 107, Neg. LLF: 118.39414163050495
Iteration: 11, Func. Count: 117, Neg. LLF: 118.3941409044181
Optimization terminated successfully (Exit mode 0)
Current function value: 118.3941409044181
Iterations: 11
Function evaluations: 117
Gradient evaluations: 11
Iteration: 1, Func. Count: 12, Neg. LLF: 155.13210195322912
Iteration: 2, Func. Count: 26, Neg. LLF: 118.61002977776857
Iteration: 3, Func. Count: 37, Neg. LLF: 118.60394657386735
Iteration: 4, Func. Count: 49, Neg. LLF: 118.67668956565089
Iteration: 5, Func. Count: 61, Neg. LLF: 118.54023470254766
Iteration: 6, Func. Count: 72, Neg. LLF: 118.52895569298047
Iteration: 7, Func. Count: 83, Neg. LLF: 118.52397847785168
Iteration: 8, Func. Count: 94, Neg. LLF: 118.51714910691933
Iteration: 9, Func. Count: 105, Neg. LLF: 118.49620072338972
Iteration: 10, Func. Count: 116, Neg. LLF: 118.49375945385985
Iteration: 11, Func. Count: 127, Neg. LLF: 118.414637813853
Iteration: 12, Func. Count: 138, Neg. LLF: 118.61709164778823
Iteration: 13, Func. Count: 150, Neg. LLF: 118.15047290840289
Iteration: 14, Func. Count: 161, Neg. LLF: 119.30181093247639
Iteration: 15, Func. Count: 182, Neg. LLF: 117.95297096308478
Iteration: 16, Func. Count: 193, Neg. LLF: 120.85963440838627
Iteration: 17, Func. Count: 214, Neg. LLF: 30707387.21162533
Iteration: 18, Func. Count: 227, Neg. LLF: 118.49977889581466
Iteration: 19, Func. Count: 239, Neg. LLF: 118.56475473246986
Iteration: 20, Func. Count: 251, Neg. LLF: 117.62586367536626
Iteration: 21, Func. Count: 262, Neg. LLF: 117.6212306107766
Iteration: 22, Func. Count: 273, Neg. LLF: 117.62096608990365
Iteration: 23, Func. Count: 284, Neg. LLF: 117.62096134033096
Iteration: 24, Func. Count: 294, Neg. LLF: 117.62096116046041
Optimization terminated successfully (Exit mode 0)
Current function value: 117.62096134033096
Iterations: 25
Function evaluations: 294
Gradient evaluations: 24
Iteration: 1, Func. Count: 9, Neg. LLF: 131.72767984295893
Iteration: 2, Func. Count: 18, Neg. LLF: 136.96436753240027
Iteration: 3, Func. Count: 27, Neg. LLF: 119.89427608335873
Iteration: 4, Func. Count: 35, Neg. LLF: 119.8062723707762
Iteration: 5, Func. Count: 43, Neg. LLF: 119.97986191161266
Iteration: 6, Func. Count: 53, Neg. LLF: 119.76576240515925
Iteration: 7, Func. Count: 61, Neg. LLF: 119.76043502175887
Iteration: 8, Func. Count: 69, Neg. LLF: 119.76038807380003
Iteration: 9, Func. Count: 76, Neg. LLF: 119.76038810861736
Optimization terminated successfully (Exit mode 0)
Current function value: 119.76038807380003
Iterations: 9
Function evaluations: 76
Gradient evaluations: 9
Iteration: 1, Func. Count: 10, Neg. LLF: 129.28778677088854
Iteration: 2, Func. Count: 22, Neg. LLF: 135.78114163601975
Iteration: 3, Func. Count: 32, Neg. LLF: 119.01403696278979
Iteration: 4, Func. Count: 41, Neg. LLF: 118.68158558607615
Iteration: 5, Func. Count: 50, Neg. LLF: 142.53682159968423
Iteration: 6, Func. Count: 60, Neg. LLF: 118.53904480380643
Iteration: 7, Func. Count: 70, Neg. LLF: 118.39885980020178
Iteration: 8, Func. Count: 79, Neg. LLF: 118.39650475106207
Iteration: 9, Func. Count: 88, Neg. LLF: 118.39643432487469
Iteration: 10, Func. Count: 97, Neg. LLF: 118.39643367433457
Optimization terminated successfully (Exit mode 0)
Current function value: 118.39643367433457
Iterations: 10
Function evaluations: 97
Gradient evaluations: 10
Iteration: 1, Func. Count: 11, Neg. LLF: 157.64661740017303
Iteration: 2, Func. Count: 23, Neg. LLF: 131.29573576914098
Iteration: 3, Func. Count: 34, Neg. LLF: 118.49998705412537
Iteration: 4, Func. Count: 44, Neg. LLF: 119.07419764460867
Iteration: 5, Func. Count: 55, Neg. LLF: 118.81150605396968
Iteration: 6, Func. Count: 66, Neg. LLF: 118.45399886962566
Iteration: 7, Func. Count: 76, Neg. LLF: 118.45354461308709
Iteration: 8, Func. Count: 86, Neg. LLF: 118.45211709882258
Iteration: 9, Func. Count: 96, Neg. LLF: 118.45124589430637
Iteration: 10, Func. Count: 106, Neg. LLF: 118.42119219014799
Iteration: 11, Func. Count: 116, Neg. LLF: 118.39534015982032
Iteration: 12, Func. Count: 126, Neg. LLF: 118.39595517115325
Iteration: 13, Func. Count: 136, Neg. LLF: 118.3963883162454
Iteration: 14, Func. Count: 146, Neg. LLF: 118.39643754213299
Iteration: 15, Func. Count: 157, Neg. LLF: 118.40413757208985
Iteration: 16, Func. Count: 170, Neg. LLF: 118.39648694086706
Iteration: 17, Func. Count: 182, Neg. LLF: 118.39644179797574
Iteration: 18, Func. Count: 193, Neg. LLF: 118.39643366557092
Iteration: 19, Func. Count: 202, Neg. LLF: 118.39643346940241
Optimization terminated successfully (Exit mode 0)
Current function value: 118.39643366557092
Iterations: 20
Function evaluations: 202
Gradient evaluations: 19
Iteration: 1, Func. Count: 12, Neg. LLF: 155.6955266339032
Iteration: 2, Func. Count: 26, Neg. LLF: 118.66433599820412
Iteration: 3, Func. Count: 37, Neg. LLF: 118.535939178353
Iteration: 4, Func. Count: 48, Neg. LLF: 118.74284343996551
Iteration: 5, Func. Count: 60, Neg. LLF: 118.56442683663771
Iteration: 6, Func. Count: 72, Neg. LLF: 118.39467300158866
Iteration: 7, Func. Count: 83, Neg. LLF: 118.39946064793392
Iteration: 8, Func. Count: 95, Neg. LLF: 118.39417176284107
Iteration: 9, Func. Count: 106, Neg. LLF: 118.39414139700914
Iteration: 10, Func. Count: 116, Neg. LLF: 118.3941412994716
Optimization terminated successfully (Exit mode 0)
Current function value: 118.39414139700914
Iterations: 10
Function evaluations: 116
Gradient evaluations: 10
Iteration: 1, Func. Count: 13, Neg. LLF: 155.32042589941207
Iteration: 2, Func. Count: 28, Neg. LLF: 118.60878258444298
Iteration: 3, Func. Count: 40, Neg. LLF: 118.60914626581098
Iteration: 4, Func. Count: 53, Neg. LLF: 118.6762052201649
Iteration: 5, Func. Count: 66, Neg. LLF: 118.53932268813358
Iteration: 6, Func. Count: 78, Neg. LLF: 118.5249830903698
Iteration: 7, Func. Count: 90, Neg. LLF: 118.45735276514294
Iteration: 8, Func. Count: 102, Neg. LLF: 118.38224275586
Iteration: 9, Func. Count: 114, Neg. LLF: 118.05092910501614
Iteration: 10, Func. Count: 126, Neg. LLF: 25752117.559895385
Iteration: 11, Func. Count: 140, Neg. LLF: 118.80547588226241
Iteration: 12, Func. Count: 153, Neg. LLF: 117.90956028130488
Iteration: 13, Func. Count: 166, Neg. LLF: 117.62662382870234
Iteration: 14, Func. Count: 178, Neg. LLF: 117.62105926565685
Iteration: 15, Func. Count: 190, Neg. LLF: 117.62096222263241
Iteration: 16, Func. Count: 202, Neg. LLF: 117.62096133733417
Optimization terminated successfully (Exit mode 0)
Current function value: 117.62096133733417
Iterations: 17
Function evaluations: 202
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 135.53597220501825
Iteration: 2, Func. Count: 20, Neg. LLF: 206.45899248764275
Iteration: 3, Func. Count: 30, Neg. LLF: 122.08233600120909
Iteration: 4, Func. Count: 40, Neg. LLF: 6077077.683631702
Iteration: 5, Func. Count: 50, Neg. LLF: 117.1947917756422
Iteration: 6, Func. Count: 60, Neg. LLF: 116.51526353023482
Iteration: 7, Func. Count: 70, Neg. LLF: 117.88062413004144
Iteration: 8, Func. Count: 81, Neg. LLF: 117.5505330197703
Iteration: 9, Func. Count: 91, Neg. LLF: 116.2149556879854
Iteration: 10, Func. Count: 100, Neg. LLF: 116.29689206675775
Iteration: 11, Func. Count: 110, Neg. LLF: 116.21225694206117
Iteration: 12, Func. Count: 119, Neg. LLF: 116.21045916584728
Iteration: 13, Func. Count: 128, Neg. LLF: 116.2103646744022
Iteration: 14, Func. Count: 137, Neg. LLF: 116.21026255013665
Iteration: 15, Func. Count: 146, Neg. LLF: 116.21011967649422
Iteration: 16, Func. Count: 155, Neg. LLF: 116.21008317157093
Iteration: 17, Func. Count: 164, Neg. LLF: 116.21007902353365
Iteration: 18, Func. Count: 172, Neg. LLF: 116.21007902353952
Optimization terminated successfully (Exit mode 0)
Current function value: 116.21007902353365
Iterations: 18
Function evaluations: 172
Gradient evaluations: 18
Iteration: 1, Func. Count: 11, Neg. LLF: 117.02226613471939
Iteration: 2, Func. Count: 21, Neg. LLF: 148.91799313158597
Iteration: 3, Func. Count: 33, Neg. LLF: 126.85603452975295
Iteration: 4, Func. Count: 46, Neg. LLF: 1870.7062064577926
Iteration: 5, Func. Count: 57, Neg. LLF: 130.63422867592988
Iteration: 6, Func. Count: 68, Neg. LLF: 134.6064635980315
Iteration: 7, Func. Count: 79, Neg. LLF: 126.59877212545733
Iteration: 8, Func. Count: 90, Neg. LLF: 116.33102346032247
Iteration: 9, Func. Count: 101, Neg. LLF: 114.63859896911161
Iteration: 10, Func. Count: 111, Neg. LLF: 114.59314128530777
Iteration: 11, Func. Count: 121, Neg. LLF: 114.58819656843016
Iteration: 12, Func. Count: 131, Neg. LLF: 114.58269323391181
Iteration: 13, Func. Count: 141, Neg. LLF: 114.58265634814771
Iteration: 14, Func. Count: 151, Neg. LLF: 114.58265527642914
Iteration: 15, Func. Count: 161, Neg. LLF: 114.58265397348299
Iteration: 16, Func. Count: 170, Neg. LLF: 114.58265396650641
Optimization terminated successfully (Exit mode 0)
Current function value: 114.58265397348299
Iterations: 16
Function evaluations: 170
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 117.76766007455545
Iteration: 2, Func. Count: 27, Neg. LLF: 176.8054570381057
Iteration: 3, Func. Count: 39, Neg. LLF: 140.3625834884456
Iteration: 4, Func. Count: 51, Neg. LLF: 133.75114114503938
Iteration: 5, Func. Count: 63, Neg. LLF: 116.81564562828258
Iteration: 6, Func. Count: 74, Neg. LLF: 132.87635166519755
Iteration: 7, Func. Count: 86, Neg. LLF: 138.58358338950342
Iteration: 8, Func. Count: 98, Neg. LLF: 116.27638391326067
Iteration: 9, Func. Count: 110, Neg. LLF: 116.01392639782343
Iteration: 10, Func. Count: 122, Neg. LLF: 114.97998500269
Iteration: 11, Func. Count: 133, Neg. LLF: 114.91670194256092
Iteration: 12, Func. Count: 144, Neg. LLF: 114.84951208136269
Iteration: 13, Func. Count: 155, Neg. LLF: 114.8027227566147
Iteration: 14, Func. Count: 166, Neg. LLF: 114.76174427882695
Iteration: 15, Func. Count: 177, Neg. LLF: 114.71719990181433
Iteration: 16, Func. Count: 188, Neg. LLF: 114.67950408144158
Iteration: 17, Func. Count: 199, Neg. LLF: 114.65293860482045
Iteration: 18, Func. Count: 210, Neg. LLF: 114.6379033976297
Iteration: 19, Func. Count: 221, Neg. LLF: 114.61944537678767
Iteration: 20, Func. Count: 232, Neg. LLF: 114.60244323857947
Iteration: 21, Func. Count: 243, Neg. LLF: 114.58893644901543
Iteration: 22, Func. Count: 254, Neg. LLF: 114.58380073429441
Iteration: 23, Func. Count: 265, Neg. LLF: 114.58265806777477
Iteration: 24, Func. Count: 276, Neg. LLF: 114.58265431597279
Iteration: 25, Func. Count: 287, Neg. LLF: 114.58265360049583
Optimization terminated successfully (Exit mode 0)
Current function value: 114.58265360049583
Iterations: 25
Function evaluations: 287
Gradient evaluations: 25
Iteration: 1, Func. Count: 13, Neg. LLF: 118.4283144009492
Iteration: 2, Func. Count: 29, Neg. LLF: 5218.586485033833
Iteration: 3, Func. Count: 42, Neg. LLF: 143.8531365831285
Iteration: 4, Func. Count: 55, Neg. LLF: 130.19299209756582
Iteration: 5, Func. Count: 68, Neg. LLF: 149.19911819710325
Iteration: 6, Func. Count: 81, Neg. LLF: 119.06204363450198
Iteration: 7, Func. Count: 94, Neg. LLF: 119.18738644833394
Iteration: 8, Func. Count: 107, Neg. LLF: 115.08112122066285
Iteration: 9, Func. Count: 119, Neg. LLF: 115.00311961548586
Iteration: 10, Func. Count: 131, Neg. LLF: 114.92761402559648
Iteration: 11, Func. Count: 143, Neg. LLF: 114.90172708880957
Iteration: 12, Func. Count: 155, Neg. LLF: 114.86662290473319
Iteration: 13, Func. Count: 167, Neg. LLF: 114.78910121838842
Iteration: 14, Func. Count: 179, Neg. LLF: 114.7551753548693
Iteration: 15, Func. Count: 191, Neg. LLF: 114.72594475310348
Iteration: 16, Func. Count: 203, Neg. LLF: 114.69572234707485
Iteration: 17, Func. Count: 215, Neg. LLF: 114.66156066651224
Iteration: 18, Func. Count: 227, Neg. LLF: 114.63149197508939
Iteration: 19, Func. Count: 239, Neg. LLF: 114.61490413765932
Iteration: 20, Func. Count: 251, Neg. LLF: 114.5860761951768
Iteration: 21, Func. Count: 263, Neg. LLF: 114.5832124570629
Iteration: 22, Func. Count: 275, Neg. LLF: 114.58274126263804
Iteration: 23, Func. Count: 287, Neg. LLF: 114.58265404260233
Iteration: 24, Func. Count: 299, Neg. LLF: 114.5826530571967
Optimization terminated successfully (Exit mode 0)
Current function value: 114.5826530571967
Iterations: 24
Function evaluations: 299
Gradient evaluations: 24
Iteration: 1, Func. Count: 14, Neg. LLF: 118.86667155650022
Iteration: 2, Func. Count: 31, Neg. LLF: 5499795.620317082
Iteration: 3, Func. Count: 45, Neg. LLF: 159.26742768261587
Iteration: 4, Func. Count: 59, Neg. LLF: 121.26090299709868
Iteration: 5, Func. Count: 73, Neg. LLF: 174.92728539220548
Iteration: 6, Func. Count: 87, Neg. LLF: 117.99562330241363
Iteration: 7, Func. Count: 101, Neg. LLF: 120.1805397176371
Iteration: 8, Func. Count: 115, Neg. LLF: 115.23430159178676
Iteration: 9, Func. Count: 128, Neg. LLF: 125.81587265925853
Iteration: 10, Func. Count: 142, Neg. LLF: 114.70002706753003
Iteration: 11, Func. Count: 155, Neg. LLF: 114.86476403753447
Iteration: 12, Func. Count: 169, Neg. LLF: 114.52580701772858
Iteration: 13, Func. Count: 182, Neg. LLF: 114.44936848001876
Iteration: 14, Func. Count: 195, Neg. LLF: 114.42552855842757
Iteration: 15, Func. Count: 208, Neg. LLF: 114.38685080862092
Iteration: 16, Func. Count: 221, Neg. LLF: 114.36692574083322
Iteration: 17, Func. Count: 234, Neg. LLF: 114.3568363122167
Iteration: 18, Func. Count: 247, Neg. LLF: 114.34928575446567
Iteration: 19, Func. Count: 260, Neg. LLF: 114.3484543733443
Iteration: 20, Func. Count: 273, Neg. LLF: 114.34839863066776
Iteration: 21, Func. Count: 286, Neg. LLF: 114.34839491555469
Iteration: 22, Func. Count: 298, Neg. LLF: 114.34839489194566
Optimization terminated successfully (Exit mode 0)
Current function value: 114.34839491555469
Iterations: 22
Function evaluations: 298
Gradient evaluations: 22
Iteration: 1, Func. Count: 7, Neg. LLF: 126.78982088456014
Iteration: 2, Func. Count: 14, Neg. LLF: 120.30601646922037
Iteration: 3, Func. Count: 20, Neg. LLF: 121.21595368701827
Iteration: 4, Func. Count: 28, Neg. LLF: 120.28576749891262
Iteration: 5, Func. Count: 35, Neg. LLF: 119.57206355078372
Iteration: 6, Func. Count: 41, Neg. LLF: 119.56234868395576
Iteration: 7, Func. Count: 47, Neg. LLF: 119.56058227181911
Iteration: 8, Func. Count: 53, Neg. LLF: 119.56057471112847
Iteration: 9, Func. Count: 59, Neg. LLF: 119.56057392083885
Optimization terminated successfully (Exit mode 0)
Current function value: 119.56057392083885
Iterations: 9
Function evaluations: 59
Gradient evaluations: 9
Iteration: 1, Func. Count: 8, Neg. LLF: 162.25125593060247
Iteration: 2, Func. Count: 17, Neg. LLF: 118.76786991513201
Iteration: 3, Func. Count: 24, Neg. LLF: 545.4137863528895
Iteration: 4, Func. Count: 33, Neg. LLF: 118.50719192539593
Iteration: 5, Func. Count: 40, Neg. LLF: 118.48590585641999
Iteration: 6, Func. Count: 47, Neg. LLF: 118.48577595493856
Iteration: 7, Func. Count: 54, Neg. LLF: 118.48575626521745
Iteration: 8, Func. Count: 60, Neg. LLF: 118.48575644490205
Optimization terminated successfully (Exit mode 0)
Current function value: 118.48575626521745
Iterations: 8
Function evaluations: 60
Gradient evaluations: 8
Iteration: 1, Func. Count: 9, Neg. LLF: 157.1071165063285
Iteration: 2, Func. Count: 19, Neg. LLF: 118.61153153267827
Iteration: 3, Func. Count: 27, Neg. LLF: 126.48295136999704
Iteration: 4, Func. Count: 36, Neg. LLF: 118.4981548905903
Iteration: 5, Func. Count: 44, Neg. LLF: 118.49432273866695
Iteration: 6, Func. Count: 52, Neg. LLF: 118.49328146886207
Iteration: 7, Func. Count: 60, Neg. LLF: 118.49292087878968
Iteration: 8, Func. Count: 68, Neg. LLF: 118.48845863829722
Iteration: 9, Func. Count: 76, Neg. LLF: 118.44311389808632
Iteration: 10, Func. Count: 84, Neg. LLF: 118.51436443798931
Iteration: 11, Func. Count: 94, Neg. LLF: 118.91541449803535
Iteration: 12, Func. Count: 103, Neg. LLF: 118.44266793230703
Optimization terminated successfully (Exit mode 0)
Current function value: 118.4426678370999
Iterations: 13
Function evaluations: 103
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 154.67153596485338
Iteration: 2, Func. Count: 22, Neg. LLF: 118.65034399369823
Iteration: 3, Func. Count: 31, Neg. LLF: 118.54479626617803
Iteration: 4, Func. Count: 40, Neg. LLF: 118.5828082553786
Iteration: 5, Func. Count: 50, Neg. LLF: 118.52546264786969
Iteration: 6, Func. Count: 59, Neg. LLF: 118.49359396400078
Iteration: 7, Func. Count: 68, Neg. LLF: 118.49381934240361
Iteration: 8, Func. Count: 78, Neg. LLF: 118.4930090048419
Iteration: 9, Func. Count: 87, Neg. LLF: 118.49017213592494
Iteration: 10, Func. Count: 96, Neg. LLF: 118.48576767088737
Iteration: 11, Func. Count: 105, Neg. LLF: 118.51847634313731
Optimization terminated successfully (Exit mode 0)
Current function value: 118.48576714424406
Iterations: 12
Function evaluations: 108
Gradient evaluations: 11
Iteration: 1, Func. Count: 11, Neg. LLF: 153.81171728942206
Iteration: 2, Func. Count: 24, Neg. LLF: 118.60070894788285
Iteration: 3, Func. Count: 34, Neg. LLF: 118.66244675541836
Iteration: 4, Func. Count: 45, Neg. LLF: 118.6000964983704
Iteration: 5, Func. Count: 56, Neg. LLF: 118.54148299988184
Iteration: 6, Func. Count: 66, Neg. LLF: 118.52889130406625
Iteration: 7, Func. Count: 76, Neg. LLF: 118.52467121688184
Iteration: 8, Func. Count: 86, Neg. LLF: 118.51081750166993
Iteration: 9, Func. Count: 96, Neg. LLF: 118.46212766231483
Iteration: 10, Func. Count: 106, Neg. LLF: 118.44871283140834
Iteration: 11, Func. Count: 116, Neg. LLF: 118.44710077981732
Iteration: 12, Func. Count: 126, Neg. LLF: 118.44426025723796
Iteration: 13, Func. Count: 136, Neg. LLF: 118.44324825333828
Iteration: 14, Func. Count: 146, Neg. LLF: 118.44268975198558
Iteration: 15, Func. Count: 156, Neg. LLF: 118.4426786346157
Iteration: 16, Func. Count: 166, Neg. LLF: 118.44266780982558
Iteration: 17, Func. Count: 175, Neg. LLF: 118.4426677155719
Optimization terminated successfully (Exit mode 0)
Current function value: 118.44266780982558
Iterations: 17
Function evaluations: 175
Gradient evaluations: 17
Iteration: 1, Func. Count: 8, Neg. LLF: 126.71545042847917
Iteration: 2, Func. Count: 16, Neg. LLF: 120.37584062307455
Iteration: 3, Func. Count: 23, Neg. LLF: 121.59818077961627
Iteration: 4, Func. Count: 32, Neg. LLF: 120.152338146081
Iteration: 5, Func. Count: 39, Neg. LLF: 119.59557266061378
Iteration: 6, Func. Count: 46, Neg. LLF: 119.56953078635507
Iteration: 7, Func. Count: 53, Neg. LLF: 119.56069832768388
Iteration: 8, Func. Count: 60, Neg. LLF: 119.56058191013753
Iteration: 9, Func. Count: 67, Neg. LLF: 119.56057394660408
Iteration: 10, Func. Count: 73, Neg. LLF: 119.56057389151638
Optimization terminated successfully (Exit mode 0)
Current function value: 119.56057394660408
Iterations: 10
Function evaluations: 73
Gradient evaluations: 10
Iteration: 1, Func. Count: 9, Neg. LLF: 129.30619500071904
Iteration: 2, Func. Count: 20, Neg. LLF: 120.31012884411632
Iteration: 3, Func. Count: 29, Neg. LLF: 119.72864263168503
Iteration: 4, Func. Count: 37, Neg. LLF: 119.66462253738553
Iteration: 5, Func. Count: 45, Neg. LLF: 119.66013780802507
Iteration: 6, Func. Count: 53, Neg. LLF: 119.65643025902813
Iteration: 7, Func. Count: 61, Neg. LLF: 119.63364440207322
Iteration: 8, Func. Count: 69, Neg. LLF: 119.56391192181201
Iteration: 9, Func. Count: 77, Neg. LLF: 119.56139457981057
Iteration: 10, Func. Count: 85, Neg. LLF: 119.56061210003342
Iteration: 11, Func. Count: 93, Neg. LLF: 119.56058014393807
Iteration: 12, Func. Count: 101, Neg. LLF: 119.5605749530846
Iteration: 13, Func. Count: 108, Neg. LLF: 119.56057495563104
Optimization terminated successfully (Exit mode 0)
Current function value: 119.5605749530846
Iterations: 13
Function evaluations: 108
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 157.43213436346383
Iteration: 2, Func. Count: 21, Neg. LLF: 118.58746754806242
Iteration: 3, Func. Count: 30, Neg. LLF: 123.71789179368069
Iteration: 4, Func. Count: 40, Neg. LLF: 118.50049874556777
Iteration: 5, Func. Count: 49, Neg. LLF: 118.49688888922991
Iteration: 6, Func. Count: 58, Neg. LLF: 118.4939529959949
Iteration: 7, Func. Count: 67, Neg. LLF: 118.4936149783623
Iteration: 8, Func. Count: 76, Neg. LLF: 118.49308774794821
Iteration: 9, Func. Count: 85, Neg. LLF: 118.4624961755419
Iteration: 10, Func. Count: 94, Neg. LLF: 118.44457712676311
Iteration: 11, Func. Count: 103, Neg. LLF: 118.44419975548415
Iteration: 12, Func. Count: 112, Neg. LLF: 118.44285590420044
Iteration: 13, Func. Count: 121, Neg. LLF: 118.44268973028773
Iteration: 14, Func. Count: 130, Neg. LLF: 118.48417755228289
Iteration: 15, Func. Count: 141, Neg. LLF: 118.4427908569197
Iteration: 16, Func. Count: 151, Neg. LLF: 118.44266781271403
Iteration: 17, Func. Count: 159, Neg. LLF: 118.44266790806304
Optimization terminated successfully (Exit mode 0)
Current function value: 118.44266781271403
Iterations: 18
Function evaluations: 159
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 154.00876830937202
Iteration: 2, Func. Count: 24, Neg. LLF: 118.63637698486731
Iteration: 3, Func. Count: 34, Neg. LLF: 118.55521427251735
Iteration: 4, Func. Count: 44, Neg. LLF: 118.57355242893559
Iteration: 5, Func. Count: 55, Neg. LLF: 118.39619229542186
Iteration: 6, Func. Count: 65, Neg. LLF: 118.60516875458327
Iteration: 7, Func. Count: 76, Neg. LLF: 118.1878499207129
Iteration: 8, Func. Count: 86, Neg. LLF: 118.154635053944
Iteration: 9, Func. Count: 96, Neg. LLF: 118.14138923156273
Iteration: 10, Func. Count: 106, Neg. LLF: 118.13902688461012
Iteration: 11, Func. Count: 116, Neg. LLF: 118.13644605525582
Iteration: 12, Func. Count: 126, Neg. LLF: 118.13619339544395
Iteration: 13, Func. Count: 136, Neg. LLF: 118.13618277499047
Iteration: 14, Func. Count: 145, Neg. LLF: 118.13618273681077
Optimization terminated successfully (Exit mode 0)
Current function value: 118.13618277499047
Iterations: 14
Function evaluations: 145
Gradient evaluations: 14
Iteration: 1, Func. Count: 12, Neg. LLF: 152.80131441879777
Iteration: 2, Func. Count: 26, Neg. LLF: 118.59937710831039
Iteration: 3, Func. Count: 37, Neg. LLF: 118.60243311421752
Iteration: 4, Func. Count: 49, Neg. LLF: 118.71625257510729
Iteration: 5, Func. Count: 61, Neg. LLF: 118.54365525516563
Iteration: 6, Func. Count: 72, Neg. LLF: 118.52723561001824
Iteration: 7, Func. Count: 83, Neg. LLF: 118.52303819923596
Iteration: 8, Func. Count: 94, Neg. LLF: 118.5041938239377
Iteration: 9, Func. Count: 105, Neg. LLF: 118.49888309948429
Iteration: 10, Func. Count: 116, Neg. LLF: 118.49669717379545
Iteration: 11, Func. Count: 127, Neg. LLF: 118.49664896526978
Iteration: 12, Func. Count: 138, Neg. LLF: 118.49663396825747
Iteration: 13, Func. Count: 149, Neg. LLF: 118.49649538551665
Iteration: 14, Func. Count: 160, Neg. LLF: 118.4928173384971
Iteration: 15, Func. Count: 171, Neg. LLF: 118.48764754599125
Iteration: 16, Func. Count: 182, Neg. LLF: 121.1967965957568
Iteration: 17, Func. Count: 195, Neg. LLF: 120.80844300744766
Iteration: 18, Func. Count: 208, Neg. LLF: 118.48575601907181
Iteration: 19, Func. Count: 218, Neg. LLF: 118.48575584220993
Optimization terminated successfully (Exit mode 0)
Current function value: 118.48575601907181
Iterations: 20
Function evaluations: 218
Gradient evaluations: 19
Iteration: 1, Func. Count: 9, Neg. LLF: 126.72767147355484
Iteration: 2, Func. Count: 18, Neg. LLF: 120.33684277991713
Iteration: 3, Func. Count: 26, Neg. LLF: 121.52444818445693
Iteration: 4, Func. Count: 36, Neg. LLF: 119.9354707849274
Iteration: 5, Func. Count: 44, Neg. LLF: 124.03393064374194
Iteration: 6, Func. Count: 53, Neg. LLF: 342.28400764070847
Iteration: 7, Func. Count: 64, Neg. LLF: 119.5704888169705
Iteration: 8, Func. Count: 72, Neg. LLF: 119.5524899798173
Iteration: 9, Func. Count: 80, Neg. LLF: 119.55203020352317
Iteration: 10, Func. Count: 88, Neg. LLF: 119.55201904623257
Iteration: 11, Func. Count: 96, Neg. LLF: 119.55201814640066
Optimization terminated successfully (Exit mode 0)
Current function value: 119.55201814640066
Iterations: 11
Function evaluations: 96
Gradient evaluations: 11
Iteration: 1, Func. Count: 10, Neg. LLF: 163.26424207995828
Iteration: 2, Func. Count: 21, Neg. LLF: 118.73132276207359
Iteration: 3, Func. Count: 30, Neg. LLF: 130.3204190608714
Iteration: 4, Func. Count: 41, Neg. LLF: 122.36792369533921
Iteration: 5, Func. Count: 51, Neg. LLF: 118.55786880031035
Iteration: 6, Func. Count: 61, Neg. LLF: 118.65047372039629
Iteration: 7, Func. Count: 71, Neg. LLF: 118.47620664324516
Iteration: 8, Func. Count: 80, Neg. LLF: 118.47611633600377
Iteration: 9, Func. Count: 89, Neg. LLF: 118.4761150343719
Iteration: 10, Func. Count: 97, Neg. LLF: 118.47611484440137
Optimization terminated successfully (Exit mode 0)
Current function value: 118.4761150343719
Iterations: 10
Function evaluations: 97
Gradient evaluations: 10
Iteration: 1, Func. Count: 11, Neg. LLF: 157.20948113496883
Iteration: 2, Func. Count: 23, Neg. LLF: 118.59243412849382
Iteration: 3, Func. Count: 33, Neg. LLF: 125.99577889532414
Iteration: 4, Func. Count: 44, Neg. LLF: 118.50224261238704
Iteration: 5, Func. Count: 55, Neg. LLF: 118.48754562418247
Iteration: 6, Func. Count: 65, Neg. LLF: 117.75968774939588
Iteration: 7, Func. Count: 75, Neg. LLF: 118.64516249215383
Iteration: 8, Func. Count: 87, Neg. LLF: 7790901.018313995
Iteration: 9, Func. Count: 99, Neg. LLF: 124.30937335310016
Iteration: 10, Func. Count: 111, Neg. LLF: 118.74816488923292
Iteration: 11, Func. Count: 122, Neg. LLF: 117.62106227996117
Iteration: 12, Func. Count: 132, Neg. LLF: 117.62096173883094
Iteration: 13, Func. Count: 141, Neg. LLF: 117.62096155348989
Optimization terminated successfully (Exit mode 0)
Current function value: 117.62096173883094
Iterations: 14
Function evaluations: 141
Gradient evaluations: 13
Iteration: 1, Func. Count: 12, Neg. LLF: 154.05919813361368
Iteration: 2, Func. Count: 26, Neg. LLF: 118.63825209727342
Iteration: 3, Func. Count: 37, Neg. LLF: 118.54937025183341
Iteration: 4, Func. Count: 48, Neg. LLF: 118.88982198975384
Iteration: 5, Func. Count: 60, Neg. LLF: 118.45677096230901
Iteration: 6, Func. Count: 71, Neg. LLF: 118.43330132847804
Iteration: 7, Func. Count: 82, Neg. LLF: 118.406105376508
Iteration: 8, Func. Count: 93, Neg. LLF: 118.39645201306531
Iteration: 9, Func. Count: 104, Neg. LLF: 118.39476240541943
Iteration: 10, Func. Count: 115, Neg. LLF: 118.39418375338641
Iteration: 11, Func. Count: 126, Neg. LLF: 118.39414575461265
Iteration: 12, Func. Count: 137, Neg. LLF: 118.39414097250054
Iteration: 13, Func. Count: 147, Neg. LLF: 118.39414087531581
Optimization terminated successfully (Exit mode 0)
Current function value: 118.39414097250054
Iterations: 13
Function evaluations: 147
Gradient evaluations: 13
Iteration: 1, Func. Count: 13, Neg. LLF: 153.58401776047313
Iteration: 2, Func. Count: 28, Neg. LLF: 118.60255257435375
Iteration: 3, Func. Count: 40, Neg. LLF: 118.59194354624536
Iteration: 4, Func. Count: 53, Neg. LLF: 118.720892524103
Iteration: 5, Func. Count: 66, Neg. LLF: 118.54204474836024
Iteration: 6, Func. Count: 78, Neg. LLF: 118.52732421739628
Iteration: 7, Func. Count: 90, Neg. LLF: 118.52240703403703
Iteration: 8, Func. Count: 102, Neg. LLF: 118.50993950554191
Iteration: 9, Func. Count: 114, Neg. LLF: 118.49898255201185
Iteration: 10, Func. Count: 126, Neg. LLF: 118.49664323802503
Iteration: 11, Func. Count: 138, Neg. LLF: 118.49581817934585
Iteration: 12, Func. Count: 150, Neg. LLF: 118.49539931809075
Iteration: 13, Func. Count: 162, Neg. LLF: 118.49339335542437
Iteration: 14, Func. Count: 174, Neg. LLF: 118.48787125250993
Iteration: 15, Func. Count: 186, Neg. LLF: 118.48148815118512
Iteration: 16, Func. Count: 198, Neg. LLF: 118.94796661077557
Iteration: 17, Func. Count: 212, Neg. LLF: 118.99152094499155
Iteration: 18, Func. Count: 234, Neg. LLF: 118.47516192574393
Iteration: 19, Func. Count: 256, Neg. LLF: 118.91103458057256
Iteration: 20, Func. Count: 278, Neg. LLF: 121.16566265761345
Iteration: 21, Func. Count: 292, Neg. LLF: 118.53646425196118
Iteration: 22, Func. Count: 305, Neg. LLF: 118.49317876940647
Iteration: 23, Func. Count: 318, Neg. LLF: 118.47611568193531
Iteration: 24, Func. Count: 330, Neg. LLF: 118.47611518361316
Optimization terminated successfully (Exit mode 0)
Current function value: 118.47611518361316
Iterations: 25
Function evaluations: 330
Gradient evaluations: 24
Iteration: 1, Func. Count: 10, Neg. LLF: 126.58971930736364
Iteration: 2, Func. Count: 20, Neg. LLF: 122.98291203385185
Iteration: 3, Func. Count: 30, Neg. LLF: 120.12671775226892
Iteration: 4, Func. Count: 39, Neg. LLF: 133.89112619124234
Iteration: 5, Func. Count: 50, Neg. LLF: 119.72837433414684
Iteration: 6, Func. Count: 59, Neg. LLF: 119.58444885973168
Iteration: 7, Func. Count: 68, Neg. LLF: 119.87291489674936
Iteration: 8, Func. Count: 78, Neg. LLF: 119.47434871890115
Iteration: 9, Func. Count: 87, Neg. LLF: 119.46740638870901
Iteration: 10, Func. Count: 96, Neg. LLF: 119.45823775184667
Iteration: 11, Func. Count: 105, Neg. LLF: 119.45710693876015
Iteration: 12, Func. Count: 114, Neg. LLF: 119.45695194827938
Iteration: 13, Func. Count: 123, Neg. LLF: 119.45693854552383
Iteration: 14, Func. Count: 131, Neg. LLF: 119.45693851433565
Optimization terminated successfully (Exit mode 0)
Current function value: 119.45693854552383
Iterations: 14
Function evaluations: 131
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 130.28839785038463
Iteration: 2, Func. Count: 24, Neg. LLF: 133.27905085127756
Iteration: 3, Func. Count: 35, Neg. LLF: 118.98463101486725
Iteration: 4, Func. Count: 45, Neg. LLF: 118.66670808131137
Iteration: 5, Func. Count: 55, Neg. LLF: 138.27175168845545
Iteration: 6, Func. Count: 66, Neg. LLF: 118.50635152113749
Iteration: 7, Func. Count: 77, Neg. LLF: 118.39884353470717
Iteration: 8, Func. Count: 87, Neg. LLF: 118.39651794141416
Iteration: 9, Func. Count: 97, Neg. LLF: 118.39643394691778
Iteration: 10, Func. Count: 106, Neg. LLF: 118.396433749847
Optimization terminated successfully (Exit mode 0)
Current function value: 118.39643394691778
Iterations: 10
Function evaluations: 106
Gradient evaluations: 10
Iteration: 1, Func. Count: 12, Neg. LLF: 157.1521852043761
Iteration: 2, Func. Count: 25, Neg. LLF: 129.6390644239884
Iteration: 3, Func. Count: 37, Neg. LLF: 118.49915294168832
Iteration: 4, Func. Count: 48, Neg. LLF: 118.95507858377655
Iteration: 5, Func. Count: 60, Neg. LLF: 118.70335891824826
Iteration: 6, Func. Count: 72, Neg. LLF: 118.45531678234325
Iteration: 7, Func. Count: 83, Neg. LLF: 118.45436848026526
Iteration: 8, Func. Count: 94, Neg. LLF: 118.4532328781105
Iteration: 9, Func. Count: 105, Neg. LLF: 118.45211382683442
Iteration: 10, Func. Count: 116, Neg. LLF: 118.45126599434994
Iteration: 11, Func. Count: 127, Neg. LLF: 118.42905998236698
Iteration: 12, Func. Count: 138, Neg. LLF: 118.39669280034721
Iteration: 13, Func. Count: 149, Neg. LLF: 118.51616870536998
Iteration: 14, Func. Count: 162, Neg. LLF: 119.41241826882937
Iteration: 15, Func. Count: 176, Neg. LLF: 118.39655513653611
Iteration: 16, Func. Count: 188, Neg. LLF: 118.39643366673653
Iteration: 17, Func. Count: 198, Neg. LLF: 118.39643347056814
Optimization terminated successfully (Exit mode 0)
Current function value: 118.39643366673653
Iterations: 18
Function evaluations: 198
Gradient evaluations: 17
Iteration: 1, Func. Count: 13, Neg. LLF: 154.55445831476538
Iteration: 2, Func. Count: 28, Neg. LLF: 118.64695176346699
Iteration: 3, Func. Count: 40, Neg. LLF: 118.54207988897537
Iteration: 4, Func. Count: 52, Neg. LLF: 118.78499280497337
Iteration: 5, Func. Count: 65, Neg. LLF: 118.44481052453582
Iteration: 6, Func. Count: 77, Neg. LLF: 118.5102896643771
Iteration: 7, Func. Count: 90, Neg. LLF: 118.40532493343261
Iteration: 8, Func. Count: 103, Neg. LLF: 118.39444161405004
Iteration: 9, Func. Count: 115, Neg. LLF: 118.39419355040182
Iteration: 10, Func. Count: 127, Neg. LLF: 118.39414291248386
Iteration: 11, Func. Count: 139, Neg. LLF: 118.39414090334398
Iteration: 12, Func. Count: 150, Neg. LLF: 118.39414080622046
Optimization terminated successfully (Exit mode 0)
Current function value: 118.39414090334398
Iterations: 12
Function evaluations: 150
Gradient evaluations: 12
Iteration: 1, Func. Count: 14, Neg. LLF: 153.76222089657497
Iteration: 2, Func. Count: 30, Neg. LLF: 118.6016017909872
Iteration: 3, Func. Count: 43, Neg. LLF: 118.59340550120939
Iteration: 4, Func. Count: 57, Neg. LLF: 118.72200284840389
Iteration: 5, Func. Count: 71, Neg. LLF: 118.54174310222938
Iteration: 6, Func. Count: 84, Neg. LLF: 118.52891089118847
Iteration: 7, Func. Count: 97, Neg. LLF: 118.52435836952588
Iteration: 8, Func. Count: 110, Neg. LLF: 118.51518367138966
Iteration: 9, Func. Count: 123, Neg. LLF: 118.4978234008184
Iteration: 10, Func. Count: 136, Neg. LLF: 118.49279346395797
Iteration: 11, Func. Count: 149, Neg. LLF: 118.48965122946055
Iteration: 12, Func. Count: 162, Neg. LLF: 118.15846018938404
Iteration: 13, Func. Count: 175, Neg. LLF: 118.17313400730157
Iteration: 14, Func. Count: 189, Neg. LLF: 117.71368448000173
Iteration: 15, Func. Count: 202, Neg. LLF: 117.64337074548565
Iteration: 16, Func. Count: 217, Neg. LLF: 117.66203983717165
Iteration: 17, Func. Count: 230, Neg. LLF: 117.58849013609718
Iteration: 18, Func. Count: 243, Neg. LLF: 117.64683632829804
Iteration: 19, Func. Count: 266, Neg. LLF: 117.59157764256781
Iteration: 20, Func. Count: 279, Neg. LLF: 117.61481515302182
Iteration: 21, Func. Count: 295, Neg. LLF: 117.58047509893963
Iteration: 22, Func. Count: 312, Neg. LLF: 117.59179368834019
Iteration: 23, Func. Count: 327, Neg. LLF: 117.65277376248834
Iteration: 24, Func. Count: 350, Neg. LLF: 117.87667335752744
Iteration: 25, Func. Count: 365, Neg. LLF: 118.31418941251523
Iteration: 26, Func. Count: 380, Neg. LLF: 117.81366099739466
Iteration: 27, Func. Count: 395, Neg. LLF: 117.62096297814892
Iteration: 28, Func. Count: 407, Neg. LLF: 117.62096279903592
Optimization terminated successfully (Exit mode 0)
Current function value: 117.62096297814892
Iterations: 29
Function evaluations: 407
Gradient evaluations: 28
Iteration: 1, Func. Count: 11, Neg. LLF: 127.03852998568523
Iteration: 2, Func. Count: 22, Neg. LLF: 216.22861039445607
Iteration: 3, Func. Count: 33, Neg. LLF: 129.72024137996507
Iteration: 4, Func. Count: 45, Neg. LLF: 121.96416665893766
Iteration: 5, Func. Count: 56, Neg. LLF: 4187707.972553096
Iteration: 6, Func. Count: 67, Neg. LLF: 138.81770898098617
Iteration: 7, Func. Count: 78, Neg. LLF: 119.1132228453016
Iteration: 8, Func. Count: 89, Neg. LLF: 117.05693012992178
Iteration: 9, Func. Count: 100, Neg. LLF: 115.76063015870453
Iteration: 10, Func. Count: 111, Neg. LLF: 115.21130702079644
Iteration: 11, Func. Count: 121, Neg. LLF: 115.20102444238628
Iteration: 12, Func. Count: 131, Neg. LLF: 116.29114790550551
Iteration: 13, Func. Count: 143, Neg. LLF: 115.26672503519856
Iteration: 14, Func. Count: 154, Neg. LLF: 115.18618861201247
Iteration: 15, Func. Count: 164, Neg. LLF: 115.18582568651611
Iteration: 16, Func. Count: 174, Neg. LLF: 115.18581300973352
Iteration: 17, Func. Count: 183, Neg. LLF: 115.18581300972741
Optimization terminated successfully (Exit mode 0)
Current function value: 115.18581300973352
Iterations: 17
Function evaluations: 183
Gradient evaluations: 17
Iteration: 1, Func. Count: 12, Neg. LLF: 117.0024621175039
Iteration: 2, Func. Count: 23, Neg. LLF: 151.06728737483581
Iteration: 3, Func. Count: 36, Neg. LLF: 129.15528301020967
Iteration: 4, Func. Count: 50, Neg. LLF: 181.00212306188794
Iteration: 5, Func. Count: 62, Neg. LLF: 166.6097641015364
Iteration: 6, Func. Count: 74, Neg. LLF: 141.11191862664504
Iteration: 7, Func. Count: 86, Neg. LLF: 132.3189560855698
Iteration: 8, Func. Count: 98, Neg. LLF: 119.21587786316766
Iteration: 9, Func. Count: 110, Neg. LLF: 116.3939698159184
Iteration: 10, Func. Count: 122, Neg. LLF: 115.08745210208852
Iteration: 11, Func. Count: 134, Neg. LLF: 113.93150994093808
Iteration: 12, Func. Count: 145, Neg. LLF: 113.92724949612239
Iteration: 13, Func. Count: 156, Neg. LLF: 113.92653022063887
Iteration: 14, Func. Count: 167, Neg. LLF: 113.92652645300431
Iteration: 15, Func. Count: 179, Neg. LLF: 113.92651517319942
Iteration: 16, Func. Count: 189, Neg. LLF: 113.92651516471719
Optimization terminated successfully (Exit mode 0)
Current function value: 113.92651517319942
Iterations: 16
Function evaluations: 189
Gradient evaluations: 16
Iteration: 1, Func. Count: 13, Neg. LLF: 117.6366294120705
Iteration: 2, Func. Count: 29, Neg. LLF: 176.72053660526254
Iteration: 3, Func. Count: 42, Neg. LLF: 139.3539872466053
Iteration: 4, Func. Count: 55, Neg. LLF: 134.46754192985546
Iteration: 5, Func. Count: 68, Neg. LLF: 210.32307061780335
Iteration: 6, Func. Count: 82, Neg. LLF: 119.68300741636615
Iteration: 7, Func. Count: 95, Neg. LLF: 149.7190484765609
Iteration: 8, Func. Count: 108, Neg. LLF: 114.775451498475
Iteration: 9, Func. Count: 120, Neg. LLF: 118.55390187576758
Iteration: 10, Func. Count: 133, Neg. LLF: 122.59807936385191
Iteration: 11, Func. Count: 146, Neg. LLF: 117.77496192198
Iteration: 12, Func. Count: 159, Neg. LLF: 114.35602485976227
Iteration: 13, Func. Count: 171, Neg. LLF: 114.31137904697039
Iteration: 14, Func. Count: 183, Neg. LLF: 114.27172543322024
Iteration: 15, Func. Count: 195, Neg. LLF: 114.22986740207534
Iteration: 16, Func. Count: 207, Neg. LLF: 114.17665614591452
Iteration: 17, Func. Count: 219, Neg. LLF: 114.07265594547614
Iteration: 18, Func. Count: 231, Neg. LLF: 114.03096153008
Iteration: 19, Func. Count: 243, Neg. LLF: 113.98719105457471
Iteration: 20, Func. Count: 255, Neg. LLF: 113.94173579349872
Iteration: 21, Func. Count: 267, Neg. LLF: 113.93176106078936
Iteration: 22, Func. Count: 279, Neg. LLF: 113.92675991371698
Iteration: 23, Func. Count: 291, Neg. LLF: 113.92656961103123
Iteration: 24, Func. Count: 303, Neg. LLF: 113.92651815829541
Iteration: 25, Func. Count: 315, Neg. LLF: 113.92651538719907
Iteration: 26, Func. Count: 326, Neg. LLF: 113.92651564764137
Optimization terminated successfully (Exit mode 0)
Current function value: 113.92651538719907
Iterations: 26
Function evaluations: 326
Gradient evaluations: 26
Iteration: 1, Func. Count: 14, Neg. LLF: 118.17233661139718
Iteration: 2, Func. Count: 31, Neg. LLF: 9028.273483434383
Iteration: 3, Func. Count: 45, Neg. LLF: 172.92936731720062
Iteration: 4, Func. Count: 59, Neg. LLF: 140.2777244915849
Iteration: 5, Func. Count: 73, Neg. LLF: 125.2298300049908
Iteration: 6, Func. Count: 87, Neg. LLF: 142.11537686668302
Iteration: 7, Func. Count: 101, Neg. LLF: 117.18427114357503
Iteration: 8, Func. Count: 115, Neg. LLF: 117.78652525122905
Iteration: 9, Func. Count: 129, Neg. LLF: 114.3469344866555
Iteration: 10, Func. Count: 142, Neg. LLF: 114.25874824400947
Iteration: 11, Func. Count: 155, Neg. LLF: 114.1997118436749
Iteration: 12, Func. Count: 168, Neg. LLF: 114.15154581767015
Iteration: 13, Func. Count: 181, Neg. LLF: 114.12536917245411
Iteration: 14, Func. Count: 194, Neg. LLF: 114.29840744165715
Iteration: 15, Func. Count: 208, Neg. LLF: 114.07888158746205
Iteration: 16, Func. Count: 221, Neg. LLF: 114.02019477305784
Iteration: 17, Func. Count: 234, Neg. LLF: 113.9733816086007
Iteration: 18, Func. Count: 247, Neg. LLF: 113.92904060290877
Iteration: 19, Func. Count: 260, Neg. LLF: 113.92669159227381
Iteration: 20, Func. Count: 273, Neg. LLF: 113.92651729124636
Iteration: 21, Func. Count: 286, Neg. LLF: 113.92651515478883
Iteration: 22, Func. Count: 298, Neg. LLF: 113.92651525444968
Optimization terminated successfully (Exit mode 0)
Current function value: 113.92651515478883
Iterations: 22
Function evaluations: 298
Gradient evaluations: 22
Iteration: 1, Func. Count: 15, Neg. LLF: 118.57935418067237
Iteration: 2, Func. Count: 33, Neg. LLF: 5489638.903731043
Iteration: 3, Func. Count: 48, Neg. LLF: 256.03711212107794
Iteration: 4, Func. Count: 63, Neg. LLF: 163.3101752481505
Iteration: 5, Func. Count: 78, Neg. LLF: 124.03304185782042
Iteration: 6, Func. Count: 93, Neg. LLF: 153.28388491298833
Iteration: 7, Func. Count: 108, Neg. LLF: 116.56830321752173
Iteration: 8, Func. Count: 123, Neg. LLF: 116.81089842495545
Iteration: 9, Func. Count: 138, Neg. LLF: 113.8375313983675
Iteration: 10, Func. Count: 152, Neg. LLF: 114.03803917032344
Iteration: 11, Func. Count: 167, Neg. LLF: 119.32795334029363
Iteration: 12, Func. Count: 183, Neg. LLF: 113.62213958715951
Iteration: 13, Func. Count: 197, Neg. LLF: 113.5793032400035
Iteration: 14, Func. Count: 211, Neg. LLF: 113.49847303638164
Iteration: 15, Func. Count: 225, Neg. LLF: 113.47619321130504
Iteration: 16, Func. Count: 239, Neg. LLF: 113.4667491559537
Iteration: 17, Func. Count: 253, Neg. LLF: 113.46536304878468
Iteration: 18, Func. Count: 267, Neg. LLF: 113.4650541075968
Iteration: 19, Func. Count: 281, Neg. LLF: 113.46476491538067
Iteration: 20, Func. Count: 295, Neg. LLF: 113.46465868118239
Iteration: 21, Func. Count: 309, Neg. LLF: 113.46462702769513
Iteration: 22, Func. Count: 323, Neg. LLF: 113.46462480784608
Iteration: 23, Func. Count: 336, Neg. LLF: 113.46462477177225
Optimization terminated successfully (Exit mode 0)
Current function value: 113.46462480784608
Iterations: 23
Function evaluations: 336
Gradient evaluations: 23
Iteration: 1, Func. Count: 8, Neg. LLF: 125.95171216384229
Iteration: 2, Func. Count: 16, Neg. LLF: 132.45154500375162
Iteration: 3, Func. Count: 24, Neg. LLF: 121.1116232148708
Iteration: 4, Func. Count: 32, Neg. LLF: 302.18725428990706
Iteration: 5, Func. Count: 40, Neg. LLF: 239.2006571343384
Iteration: 6, Func. Count: 49, Neg. LLF: 120.53513161555611
Iteration: 7, Func. Count: 57, Neg. LLF: 120.0987643508415
Iteration: 8, Func. Count: 64, Neg. LLF: 120.03065553504997
Iteration: 9, Func. Count: 71, Neg. LLF: 119.60351549716688
Iteration: 10, Func. Count: 78, Neg. LLF: 119.57395316755341
Iteration: 11, Func. Count: 85, Neg. LLF: 119.56266371306118
Iteration: 12, Func. Count: 92, Neg. LLF: 119.5606606582724
Iteration: 13, Func. Count: 99, Neg. LLF: 119.56058029884045
Iteration: 14, Func. Count: 106, Neg. LLF: 119.56057436229266
Iteration: 15, Func. Count: 112, Neg. LLF: 119.5605744808305
Optimization terminated successfully (Exit mode 0)
Current function value: 119.56057436229266
Iterations: 15
Function evaluations: 112
Gradient evaluations: 15
Iteration: 1, Func. Count: 9, Neg. LLF: 162.67832741646913
Iteration: 2, Func. Count: 19, Neg. LLF: 118.78245019708757
Iteration: 3, Func. Count: 27, Neg. LLF: 463.1744223450575
Iteration: 4, Func. Count: 37, Neg. LLF: 118.49185940410833
Iteration: 5, Func. Count: 45, Neg. LLF: 118.48621501125058
Iteration: 6, Func. Count: 53, Neg. LLF: 118.48576672673822
Iteration: 7, Func. Count: 61, Neg. LLF: 118.48575612508411
Iteration: 8, Func. Count: 68, Neg. LLF: 118.48575630507035
Optimization terminated successfully (Exit mode 0)
Current function value: 118.48575612508411
Iterations: 8
Function evaluations: 68
Gradient evaluations: 8
Iteration: 1, Func. Count: 10, Neg. LLF: 157.26907665464452
Iteration: 2, Func. Count: 21, Neg. LLF: 118.62360724999591
Iteration: 3, Func. Count: 30, Neg. LLF: 126.04175275538076
Iteration: 4, Func. Count: 40, Neg. LLF: 118.50373988660823
Iteration: 5, Func. Count: 49, Neg. LLF: 118.49206923969489
Iteration: 6, Func. Count: 58, Neg. LLF: 118.4913381873282
Iteration: 7, Func. Count: 67, Neg. LLF: 118.48584597894926
Iteration: 8, Func. Count: 76, Neg. LLF: 118.44419814759917
Iteration: 9, Func. Count: 85, Neg. LLF: 121.12495488385035
Iteration: 10, Func. Count: 96, Neg. LLF: 118.44268170553086
Optimization terminated successfully (Exit mode 0)
Current function value: 118.44266864426912
Iterations: 11
Function evaluations: 97
Gradient evaluations: 10
Iteration: 1, Func. Count: 11, Neg. LLF: 154.69029885229887
Iteration: 2, Func. Count: 24, Neg. LLF: 118.65823360522357
Iteration: 3, Func. Count: 34, Neg. LLF: 118.54441455890552
Iteration: 4, Func. Count: 44, Neg. LLF: 118.5713843267485
Iteration: 5, Func. Count: 55, Neg. LLF: 118.52587199448394
Iteration: 6, Func. Count: 65, Neg. LLF: 118.4947601405286
Iteration: 7, Func. Count: 75, Neg. LLF: 118.49549112174682
Iteration: 8, Func. Count: 86, Neg. LLF: 118.49419877390282
Iteration: 9, Func. Count: 96, Neg. LLF: 118.49213647549023
Iteration: 10, Func. Count: 106, Neg. LLF: 118.48764663524227
Iteration: 11, Func. Count: 116, Neg. LLF: 118.48674524578185
Iteration: 12, Func. Count: 126, Neg. LLF: 118.48592283918633
Iteration: 13, Func. Count: 136, Neg. LLF: 118.48577605722966
Iteration: 14, Func. Count: 146, Neg. LLF: 120.58440138309282
Iteration: 15, Func. Count: 158, Neg. LLF: 118.4857558746067
Optimization terminated successfully (Exit mode 0)
Current function value: 118.48575605269161
Iterations: 16
Function evaluations: 158
Gradient evaluations: 15
Iteration: 1, Func. Count: 12, Neg. LLF: 153.838275949089
Iteration: 2, Func. Count: 26, Neg. LLF: 118.6081243753847
Iteration: 3, Func. Count: 37, Neg. LLF: 118.64802936039277
Iteration: 4, Func. Count: 49, Neg. LLF: 118.57891094285165
Iteration: 5, Func. Count: 61, Neg. LLF: 118.54117067027603
Iteration: 6, Func. Count: 72, Neg. LLF: 118.52898775486725
Iteration: 7, Func. Count: 83, Neg. LLF: 118.52482514407016
Iteration: 8, Func. Count: 94, Neg. LLF: 118.50652174807094
Iteration: 9, Func. Count: 105, Neg. LLF: 118.45435092840546
Iteration: 10, Func. Count: 116, Neg. LLF: 118.46570225075048
Iteration: 11, Func. Count: 128, Neg. LLF: 118.45130869865142
Iteration: 12, Func. Count: 139, Neg. LLF: 118.44770596471342
Iteration: 13, Func. Count: 150, Neg. LLF: 118.4439899799587
Iteration: 14, Func. Count: 161, Neg. LLF: 118.44285118575807
Iteration: 15, Func. Count: 172, Neg. LLF: 118.44267362235583
Iteration: 16, Func. Count: 183, Neg. LLF: 118.44266628058568
Iteration: 17, Func. Count: 194, Neg. LLF: 118.44266701565319
Optimization terminated successfully (Exit mode 0)
Current function value: 118.44266701565319
Iterations: 17
Function evaluations: 194
Gradient evaluations: 17
Iteration: 1, Func. Count: 9, Neg. LLF: 126.16820703926578
Iteration: 2, Func. Count: 18, Neg. LLF: 134.23954890140314
Iteration: 3, Func. Count: 27, Neg. LLF: 120.95891295975707
Iteration: 4, Func. Count: 36, Neg. LLF: 424.2035846001043
Iteration: 5, Func. Count: 45, Neg. LLF: 903.0678183857598
Iteration: 6, Func. Count: 55, Neg. LLF: 120.17561036384036
Iteration: 7, Func. Count: 63, Neg. LLF: 119.89779340890986
Iteration: 8, Func. Count: 71, Neg. LLF: 119.62066427269451
Iteration: 9, Func. Count: 79, Neg. LLF: 119.56708706269548
Iteration: 10, Func. Count: 87, Neg. LLF: 119.56071813905183
Iteration: 11, Func. Count: 95, Neg. LLF: 119.56057707110266
Iteration: 12, Func. Count: 103, Neg. LLF: 119.56057403607123
Iteration: 13, Func. Count: 110, Neg. LLF: 119.56057409115785
Optimization terminated successfully (Exit mode 0)
Current function value: 119.56057403607123
Iterations: 13
Function evaluations: 110
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 129.24067291790325
Iteration: 2, Func. Count: 22, Neg. LLF: 120.24767886063925
Iteration: 3, Func. Count: 32, Neg. LLF: 119.71247996414374
Iteration: 4, Func. Count: 41, Neg. LLF: 119.67293671779956
Iteration: 5, Func. Count: 50, Neg. LLF: 119.65907927772085
Iteration: 6, Func. Count: 59, Neg. LLF: 119.65495199456322
Iteration: 7, Func. Count: 68, Neg. LLF: 119.64663944570606
Iteration: 8, Func. Count: 77, Neg. LLF: 119.61085444907742
Iteration: 9, Func. Count: 86, Neg. LLF: 119.57850582057029
Iteration: 10, Func. Count: 95, Neg. LLF: 119.57198355818836
Iteration: 11, Func. Count: 104, Neg. LLF: 119.5611142204889
Iteration: 12, Func. Count: 113, Neg. LLF: 119.56062958989942
Iteration: 13, Func. Count: 122, Neg. LLF: 119.56057898738726
Iteration: 14, Func. Count: 131, Neg. LLF: 119.56057438645355
Iteration: 15, Func. Count: 139, Neg. LLF: 119.56057438914006
Optimization terminated successfully (Exit mode 0)
Current function value: 119.56057438645355
Iterations: 15
Function evaluations: 139
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 157.58270619014806
Iteration: 2, Func. Count: 23, Neg. LLF: 118.59556082247765
Iteration: 3, Func. Count: 33, Neg. LLF: 123.89893989917809
Iteration: 4, Func. Count: 44, Neg. LLF: 118.49474635361864
Iteration: 5, Func. Count: 54, Neg. LLF: 118.49533831202099
Iteration: 6, Func. Count: 65, Neg. LLF: 118.49307031531396
Iteration: 7, Func. Count: 75, Neg. LLF: 118.49245786592172
Iteration: 8, Func. Count: 85, Neg. LLF: 118.46891742513829
Iteration: 9, Func. Count: 95, Neg. LLF: 118.44301717595546
Iteration: 10, Func. Count: 105, Neg. LLF: 121.15097404332624
Iteration: 11, Func. Count: 117, Neg. LLF: 118.45121150485338
Iteration: 12, Func. Count: 127, Neg. LLF: 118.44266817030093
Optimization terminated successfully (Exit mode 0)
Current function value: 118.44266807565246
Iterations: 13
Function evaluations: 127
Gradient evaluations: 12
Iteration: 1, Func. Count: 12, Neg. LLF: 154.0329182477551
Iteration: 2, Func. Count: 26, Neg. LLF: 118.64060794696073
Iteration: 3, Func. Count: 37, Neg. LLF: 118.55611451329486
Iteration: 4, Func. Count: 48, Neg. LLF: 118.57923302695184
Iteration: 5, Func. Count: 60, Neg. LLF: 118.31449923427523
Iteration: 6, Func. Count: 71, Neg. LLF: 119.2064904453839
Iteration: 7, Func. Count: 83, Neg. LLF: 118.17694835520183
Iteration: 8, Func. Count: 94, Neg. LLF: 118.15164037420298
Iteration: 9, Func. Count: 105, Neg. LLF: 118.145075443531
Iteration: 10, Func. Count: 116, Neg. LLF: 118.14254469731345
Iteration: 11, Func. Count: 127, Neg. LLF: 118.13741659236098
Iteration: 12, Func. Count: 138, Neg. LLF: 118.13626701835095
Iteration: 13, Func. Count: 149, Neg. LLF: 118.1361837384629
Iteration: 14, Func. Count: 160, Neg. LLF: 118.13618265933849
Iteration: 15, Func. Count: 170, Neg. LLF: 118.1361826211886
Optimization terminated successfully (Exit mode 0)
Current function value: 118.13618265933849
Iterations: 15
Function evaluations: 170
Gradient evaluations: 15
Iteration: 1, Func. Count: 13, Neg. LLF: 152.82630584909475
Iteration: 2, Func. Count: 28, Neg. LLF: 118.60314024363686
Iteration: 3, Func. Count: 40, Neg. LLF: 118.62741821472804
Iteration: 4, Func. Count: 53, Neg. LLF: 118.69130076084777
Iteration: 5, Func. Count: 66, Neg. LLF: 118.54373836282157
Iteration: 6, Func. Count: 78, Neg. LLF: 118.529164974208
Iteration: 7, Func. Count: 90, Neg. LLF: 118.52411614282347
Iteration: 8, Func. Count: 102, Neg. LLF: 118.49979054882907
Iteration: 9, Func. Count: 114, Neg. LLF: 118.4947328223923
Iteration: 10, Func. Count: 126, Neg. LLF: 118.48845304203326
Iteration: 11, Func. Count: 148, Neg. LLF: 118.49443597763718
Iteration: 12, Func. Count: 160, Neg. LLF: 118.49209654315831
Iteration: 13, Func. Count: 172, Neg. LLF: 118.49009471268243
Iteration: 14, Func. Count: 184, Neg. LLF: 149.28614261558155
Iteration: 15, Func. Count: 199, Neg. LLF: 118.4948804906763
Iteration: 16, Func. Count: 212, Neg. LLF: 118.48575603528427
Iteration: 17, Func. Count: 223, Neg. LLF: 118.48575585870766
Optimization terminated successfully (Exit mode 0)
Current function value: 118.48575603528427
Iterations: 18
Function evaluations: 223
Gradient evaluations: 17
Iteration: 1, Func. Count: 10, Neg. LLF: 126.08793655942891
Iteration: 2, Func. Count: 20, Neg. LLF: 133.75531962531468
Iteration: 3, Func. Count: 30, Neg. LLF: 120.98680959347892
Iteration: 4, Func. Count: 40, Neg. LLF: 384.0322157515113
Iteration: 5, Func. Count: 50, Neg. LLF: 17321.367219515247
Iteration: 6, Func. Count: 60, Neg. LLF: 120.11033261221098
Iteration: 7, Func. Count: 69, Neg. LLF: 119.73360919098435
Iteration: 8, Func. Count: 78, Neg. LLF: 119.64313339397013
Iteration: 9, Func. Count: 87, Neg. LLF: 119.56210901288425
Iteration: 10, Func. Count: 96, Neg. LLF: 119.5527766210836
Iteration: 11, Func. Count: 105, Neg. LLF: 119.5520461138195
Iteration: 12, Func. Count: 114, Neg. LLF: 119.55201851680322
Iteration: 13, Func. Count: 122, Neg. LLF: 119.5520184583488
Optimization terminated successfully (Exit mode 0)
Current function value: 119.55201851680322
Iterations: 13
Function evaluations: 122
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 163.67974913874068
Iteration: 2, Func. Count: 23, Neg. LLF: 118.73891960352023
Iteration: 3, Func. Count: 33, Neg. LLF: 129.3727394933092
Iteration: 4, Func. Count: 45, Neg. LLF: 120.83800602677799
Iteration: 5, Func. Count: 56, Neg. LLF: 118.48310323489207
Iteration: 6, Func. Count: 66, Neg. LLF: 118.94557228631025
Iteration: 7, Func. Count: 77, Neg. LLF: 118.47642481461618
Iteration: 8, Func. Count: 87, Neg. LLF: 118.47611670420277
Iteration: 9, Func. Count: 97, Neg. LLF: 118.47611512576984
Iteration: 10, Func. Count: 106, Neg. LLF: 118.47611493559693
Optimization terminated successfully (Exit mode 0)
Current function value: 118.47611512576984
Iterations: 10
Function evaluations: 106
Gradient evaluations: 10
Iteration: 1, Func. Count: 12, Neg. LLF: 157.3630320458914
Iteration: 2, Func. Count: 25, Neg. LLF: 118.60083831806661
Iteration: 3, Func. Count: 36, Neg. LLF: 123.7130882248339
Iteration: 4, Func. Count: 48, Neg. LLF: 118.51126418780458
Iteration: 5, Func. Count: 60, Neg. LLF: 117.8230859640252
Iteration: 6, Func. Count: 71, Neg. LLF: 118.49811101971467
Iteration: 7, Func. Count: 83, Neg. LLF: 117.6615024858608
Iteration: 8, Func. Count: 94, Neg. LLF: 117.63684886361318
Iteration: 9, Func. Count: 105, Neg. LLF: 117.62527799054324
Iteration: 10, Func. Count: 116, Neg. LLF: 117.62022324086948
Iteration: 11, Func. Count: 127, Neg. LLF: 117.63249201072634
Iteration: 12, Func. Count: 140, Neg. LLF: 117.6247930772292
Iteration: 13, Func. Count: 153, Neg. LLF: 117.62153650929318
Iteration: 14, Func. Count: 166, Neg. LLF: 117.62096133732462
Iteration: 15, Func. Count: 176, Neg. LLF: 117.6209611517487
Optimization terminated successfully (Exit mode 0)
Current function value: 117.62096133732462
Iterations: 17
Function evaluations: 176
Gradient evaluations: 15
Iteration: 1, Func. Count: 13, Neg. LLF: 154.0764661603763
Iteration: 2, Func. Count: 28, Neg. LLF: 118.64262794015373
Iteration: 3, Func. Count: 40, Neg. LLF: 118.55102993937771
Iteration: 4, Func. Count: 52, Neg. LLF: 119.06394477068723
Iteration: 5, Func. Count: 65, Neg. LLF: 118.46783649453039
Iteration: 6, Func. Count: 77, Neg. LLF: 118.41030672674825
Iteration: 7, Func. Count: 89, Neg. LLF: 118.4009105606037
Iteration: 8, Func. Count: 101, Neg. LLF: 118.39509411997714
Iteration: 9, Func. Count: 113, Neg. LLF: 118.39430109962662
Iteration: 10, Func. Count: 125, Neg. LLF: 118.39414737513917
Iteration: 11, Func. Count: 137, Neg. LLF: 118.39414110556417
Iteration: 12, Func. Count: 148, Neg. LLF: 118.39414100847819
Optimization terminated successfully (Exit mode 0)
Current function value: 118.39414110556417
Iterations: 12
Function evaluations: 148
Gradient evaluations: 12
Iteration: 1, Func. Count: 14, Neg. LLF: 153.5977231586947
Iteration: 2, Func. Count: 30, Neg. LLF: 118.60638259019899
Iteration: 3, Func. Count: 43, Neg. LLF: 118.60955820972903
Iteration: 4, Func. Count: 57, Neg. LLF: 118.68971059768737
Iteration: 5, Func. Count: 71, Neg. LLF: 118.54214252442787
Iteration: 6, Func. Count: 84, Neg. LLF: 118.52736222504598
Iteration: 7, Func. Count: 97, Neg. LLF: 118.52228881252445
Iteration: 8, Func. Count: 110, Neg. LLF: 118.50296104210635
Iteration: 9, Func. Count: 123, Neg. LLF: 118.4973058545698
Iteration: 10, Func. Count: 136, Neg. LLF: 118.49557697871298
Iteration: 11, Func. Count: 149, Neg. LLF: 118.494886851361
Iteration: 12, Func. Count: 162, Neg. LLF: 118.49311376877392
Iteration: 13, Func. Count: 175, Neg. LLF: 118.4908095571491
Iteration: 14, Func. Count: 188, Neg. LLF: 118.48586913660878
Iteration: 15, Func. Count: 201, Neg. LLF: 118.48193631071268
Iteration: 16, Func. Count: 214, Neg. LLF: 118.47612556218988
Iteration: 17, Func. Count: 227, Neg. LLF: 118.47602318074797
Iteration: 18, Func. Count: 240, Neg. LLF: 118.47595278230041
Iteration: 19, Func. Count: 253, Neg. LLF: 118.4759677883058
Iteration: 20, Func. Count: 276, Neg. LLF: 118.47592335204256
Iteration: 21, Func. Count: 299, Neg. LLF: 118.47553376898908
Iteration: 22, Func. Count: 322, Neg. LLF: 118.47598420985295
Iteration: 23, Func. Count: 345, Neg. LLF: 118.47457102637334
Iteration: 24, Func. Count: 368, Neg. LLF: 118.47562231886756
Iteration: 25, Func. Count: 391, Neg. LLF: 118.47610491937246
Iteration: 26, Func. Count: 404, Neg. LLF: 118.47530519903778
Optimization terminated successfully (Exit mode 0)
Current function value: 118.47610420393234
Iterations: 26
Function evaluations: 414
Gradient evaluations: 26
Iteration: 1, Func. Count: 11, Neg. LLF: 126.05205554755749
Iteration: 2, Func. Count: 22, Neg. LLF: 131.9244096145129
Iteration: 3, Func. Count: 34, Neg. LLF: 124.55904027954837
Iteration: 4, Func. Count: 45, Neg. LLF: 120.29782661753244
Iteration: 5, Func. Count: 55, Neg. LLF: 10317.67825809636
Iteration: 6, Func. Count: 66, Neg. LLF: 119.99484292248312
Iteration: 7, Func. Count: 76, Neg. LLF: 119.8559515208531
Iteration: 8, Func. Count: 86, Neg. LLF: 119.70085797096213
Iteration: 9, Func. Count: 96, Neg. LLF: 119.58675384381925
Iteration: 10, Func. Count: 106, Neg. LLF: 119.5108650256668
Iteration: 11, Func. Count: 116, Neg. LLF: 119.4688198621669
Iteration: 12, Func. Count: 126, Neg. LLF: 119.45954300392785
Iteration: 13, Func. Count: 136, Neg. LLF: 119.45713785466148
Iteration: 14, Func. Count: 146, Neg. LLF: 119.45696034984974
Iteration: 15, Func. Count: 156, Neg. LLF: 119.45693877344426
Iteration: 16, Func. Count: 165, Neg. LLF: 119.45693874225357
Optimization terminated successfully (Exit mode 0)
Current function value: 119.45693877344426
Iterations: 16
Function evaluations: 165
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 135.0005973138411
Iteration: 2, Func. Count: 26, Neg. LLF: 129.02385673378748
Iteration: 3, Func. Count: 38, Neg. LLF: 118.96456849022083
Iteration: 4, Func. Count: 49, Neg. LLF: 118.6624391695893
Iteration: 5, Func. Count: 60, Neg. LLF: 131.34416717286885
Iteration: 6, Func. Count: 72, Neg. LLF: 118.46187020423224
Iteration: 7, Func. Count: 84, Neg. LLF: 118.39716106110168
Iteration: 8, Func. Count: 95, Neg. LLF: 118.39647471159718
Iteration: 9, Func. Count: 106, Neg. LLF: 118.39643394062618
Iteration: 10, Func. Count: 116, Neg. LLF: 118.39643374298534
Optimization terminated successfully (Exit mode 0)
Current function value: 118.39643394062618
Iterations: 10
Function evaluations: 116
Gradient evaluations: 10
Iteration: 1, Func. Count: 13, Neg. LLF: 157.3057378191967
Iteration: 2, Func. Count: 27, Neg. LLF: 129.4406877398757
Iteration: 3, Func. Count: 40, Neg. LLF: 118.50697164856676
Iteration: 4, Func. Count: 52, Neg. LLF: 119.23595324302416
Iteration: 5, Func. Count: 65, Neg. LLF: 118.64464989686854
Iteration: 6, Func. Count: 78, Neg. LLF: 118.45832073619414
Iteration: 7, Func. Count: 90, Neg. LLF: 118.4559729754288
Iteration: 8, Func. Count: 102, Neg. LLF: 118.45390250697135
Iteration: 9, Func. Count: 114, Neg. LLF: 118.45263184516166
Iteration: 10, Func. Count: 126, Neg. LLF: 118.45201254629647
Iteration: 11, Func. Count: 138, Neg. LLF: 118.4492709433438
Iteration: 12, Func. Count: 150, Neg. LLF: 118.39678131786614
Iteration: 13, Func. Count: 162, Neg. LLF: 118.39746246039599
Optimization terminated successfully (Exit mode 0)
Current function value: 118.39678157510004
Iterations: 13
Function evaluations: 164
Gradient evaluations: 13
Iteration: 1, Func. Count: 14, Neg. LLF: 154.56419695153423
Iteration: 2, Func. Count: 30, Neg. LLF: 118.65104788254641
Iteration: 3, Func. Count: 43, Neg. LLF: 118.54288880621726
Iteration: 4, Func. Count: 56, Neg. LLF: 118.95168324210496
Iteration: 5, Func. Count: 70, Neg. LLF: 118.44695083774533
Iteration: 6, Func. Count: 83, Neg. LLF: 118.45559225691585
Iteration: 7, Func. Count: 97, Neg. LLF: 118.40196934722836
Iteration: 8, Func. Count: 111, Neg. LLF: 118.3944523149749
Iteration: 9, Func. Count: 124, Neg. LLF: 118.39415989345237
Iteration: 10, Func. Count: 137, Neg. LLF: 118.39414101824327
Iteration: 11, Func. Count: 149, Neg. LLF: 118.3941409210623
Optimization terminated successfully (Exit mode 0)
Current function value: 118.39414101824327
Iterations: 11
Function evaluations: 149
Gradient evaluations: 11
Iteration: 1, Func. Count: 15, Neg. LLF: 153.77300586420958
Iteration: 2, Func. Count: 32, Neg. LLF: 118.60535141357421
Iteration: 3, Func. Count: 46, Neg. LLF: 118.61275071841283
Iteration: 4, Func. Count: 61, Neg. LLF: 118.68680314077406
Iteration: 5, Func. Count: 76, Neg. LLF: 118.54173726260308
Iteration: 6, Func. Count: 90, Neg. LLF: 118.52925784580741
Iteration: 7, Func. Count: 104, Neg. LLF: 118.52444107280921
Iteration: 8, Func. Count: 118, Neg. LLF: 118.51508531252381
Iteration: 9, Func. Count: 132, Neg. LLF: 118.49773292706364
Iteration: 10, Func. Count: 146, Neg. LLF: 118.4925691624055
Iteration: 11, Func. Count: 160, Neg. LLF: 118.48891738244184
Iteration: 12, Func. Count: 174, Neg. LLF: 118.47836261282688
Iteration: 13, Func. Count: 188, Neg. LLF: 118.13219237995389
Iteration: 14, Func. Count: 202, Neg. LLF: 121.23947921755875
Iteration: 15, Func. Count: 218, Neg. LLF: 117.79970516918878
Iteration: 16, Func. Count: 232, Neg. LLF: 44075343.38213076
Iteration: 17, Func. Count: 248, Neg. LLF: 171.1800382668394
Iteration: 18, Func. Count: 264, Neg. LLF: 120.47811891646488
Iteration: 19, Func. Count: 279, Neg. LLF: 117.63162163909763
Iteration: 20, Func. Count: 293, Neg. LLF: 117.62098924001562
Iteration: 21, Func. Count: 307, Neg. LLF: 117.62096259935227
Iteration: 22, Func. Count: 321, Neg. LLF: 117.62096142060817
Iteration: 23, Func. Count: 334, Neg. LLF: 117.62096124058517
Optimization terminated successfully (Exit mode 0)
Current function value: 117.62096142060817
Iterations: 24
Function evaluations: 334
Gradient evaluations: 23
Iteration: 1, Func. Count: 12, Neg. LLF: 131.1002891404587
Iteration: 2, Func. Count: 24, Neg. LLF: 201.0379684854896
Iteration: 3, Func. Count: 36, Neg. LLF: 126.22224225958522
Iteration: 4, Func. Count: 49, Neg. LLF: 117.58680715805258
Iteration: 5, Func. Count: 61, Neg. LLF: 1519739.1221831841
Iteration: 6, Func. Count: 73, Neg. LLF: 116.46234962086977
Iteration: 7, Func. Count: 85, Neg. LLF: 120.50117119766583
Iteration: 8, Func. Count: 97, Neg. LLF: 115.69485387614044
Iteration: 9, Func. Count: 109, Neg. LLF: 115.28099872610662
Iteration: 10, Func. Count: 120, Neg. LLF: 115.20389529615706
Iteration: 11, Func. Count: 131, Neg. LLF: 116.48838025099418
Iteration: 12, Func. Count: 144, Neg. LLF: 115.20398252314807
Iteration: 13, Func. Count: 156, Neg. LLF: 115.18885447945395
Iteration: 14, Func. Count: 167, Neg. LLF: 115.18585546029334
Iteration: 15, Func. Count: 178, Neg. LLF: 115.18581349158441
Iteration: 16, Func. Count: 189, Neg. LLF: 115.18581259348792
Optimization terminated successfully (Exit mode 0)
Current function value: 115.18581259348792
Iterations: 16
Function evaluations: 189
Gradient evaluations: 16
Iteration: 1, Func. Count: 13, Neg. LLF: 117.15681115056907
Iteration: 2, Func. Count: 25, Neg. LLF: 149.5229980094076
Iteration: 3, Func. Count: 39, Neg. LLF: 133.35531388233323
Iteration: 4, Func. Count: 54, Neg. LLF: 192.78937610166653
Iteration: 5, Func. Count: 67, Neg. LLF: 146.04413646223077
Iteration: 6, Func. Count: 80, Neg. LLF: 142.92988256804045
Iteration: 7, Func. Count: 93, Neg. LLF: 237.67607019295033
Iteration: 8, Func. Count: 106, Neg. LLF: 134.1454624630073
Iteration: 9, Func. Count: 119, Neg. LLF: 115.06167827067405
Iteration: 10, Func. Count: 132, Neg. LLF: 113.96856506454675
Iteration: 11, Func. Count: 144, Neg. LLF: 113.93476287535765
Iteration: 12, Func. Count: 156, Neg. LLF: 113.92903785382777
Iteration: 13, Func. Count: 168, Neg. LLF: 113.92658261232592
Iteration: 14, Func. Count: 180, Neg. LLF: 113.9265207019085
Iteration: 15, Func. Count: 192, Neg. LLF: 113.926515370303
Iteration: 16, Func. Count: 203, Neg. LLF: 113.92651536191086
Optimization terminated successfully (Exit mode 0)
Current function value: 113.926515370303
Iterations: 16
Function evaluations: 203
Gradient evaluations: 16
Iteration: 1, Func. Count: 14, Neg. LLF: 117.78880541033918
Iteration: 2, Func. Count: 31, Neg. LLF: 174.58323076515805
Iteration: 3, Func. Count: 45, Neg. LLF: 140.73405469900166
Iteration: 4, Func. Count: 59, Neg. LLF: 137.29748506026252
Iteration: 5, Func. Count: 73, Neg. LLF: 216.53057207591345
Iteration: 6, Func. Count: 88, Neg. LLF: 119.29225012002985
Iteration: 7, Func. Count: 102, Neg. LLF: 224.36952005873917
Iteration: 8, Func. Count: 116, Neg. LLF: 117.15344599841421
Iteration: 9, Func. Count: 130, Neg. LLF: 114.95772983132761
Iteration: 10, Func. Count: 143, Neg. LLF: 114.80297861502208
Iteration: 11, Func. Count: 156, Neg. LLF: 114.69334727491291
Iteration: 12, Func. Count: 169, Neg. LLF: 114.57827301924851
Iteration: 13, Func. Count: 182, Neg. LLF: 114.32726987586837
Iteration: 14, Func. Count: 195, Neg. LLF: 114.25811298362869
Iteration: 15, Func. Count: 208, Neg. LLF: 114.21227232585144
Iteration: 16, Func. Count: 221, Neg. LLF: 114.10453569157119
Iteration: 17, Func. Count: 234, Neg. LLF: 114.0405059336671
Iteration: 18, Func. Count: 247, Neg. LLF: 113.95716952570767
Iteration: 19, Func. Count: 260, Neg. LLF: 113.94436732138709
Iteration: 20, Func. Count: 273, Neg. LLF: 113.9413683506223
Iteration: 21, Func. Count: 286, Neg. LLF: 113.94044368454043
Iteration: 22, Func. Count: 299, Neg. LLF: 113.93824136241595
Iteration: 23, Func. Count: 312, Neg. LLF: 113.93523136729189
Iteration: 24, Func. Count: 325, Neg. LLF: 113.93167709940833
Iteration: 25, Func. Count: 338, Neg. LLF: 113.92873878383942
Iteration: 26, Func. Count: 351, Neg. LLF: 113.92679609646967
Iteration: 27, Func. Count: 364, Neg. LLF: 113.92653908510322
Iteration: 28, Func. Count: 377, Neg. LLF: 113.92652006206191
Iteration: 29, Func. Count: 390, Neg. LLF: 113.92651882258049
Iteration: 30, Func. Count: 403, Neg. LLF: 113.92688170991661
Optimization terminated successfully (Exit mode 0)
Current function value: 113.92651874821749
Iterations: 31
Function evaluations: 405
Gradient evaluations: 30
Iteration: 1, Func. Count: 15, Neg. LLF: 118.3208714038609
Iteration: 2, Func. Count: 33, Neg. LLF: 2267.8550147247356
Iteration: 3, Func. Count: 48, Neg. LLF: 179.77403821477512
Iteration: 4, Func. Count: 63, Neg. LLF: 140.58637844457527
Iteration: 5, Func. Count: 78, Neg. LLF: 127.1045671828266
Iteration: 6, Func. Count: 93, Neg. LLF: 131.5079130879524
Iteration: 7, Func. Count: 108, Neg. LLF: 117.17571347568075
Iteration: 8, Func. Count: 123, Neg. LLF: 118.71423561213224
Iteration: 9, Func. Count: 138, Neg. LLF: 114.39659566717138
Iteration: 10, Func. Count: 152, Neg. LLF: 114.26947766354213
Iteration: 11, Func. Count: 166, Neg. LLF: 114.19292207218486
Iteration: 12, Func. Count: 180, Neg. LLF: 114.1630831606154
Iteration: 13, Func. Count: 194, Neg. LLF: 114.1374639316752
Iteration: 14, Func. Count: 208, Neg. LLF: 114.08502738950774
Iteration: 15, Func. Count: 222, Neg. LLF: 114.02901973579591
Iteration: 16, Func. Count: 236, Neg. LLF: 114.00537947705902
Iteration: 17, Func. Count: 250, Neg. LLF: 114.11349387358104
Iteration: 18, Func. Count: 265, Neg. LLF: 113.92817139955659
Iteration: 19, Func. Count: 279, Neg. LLF: 113.92660723940772
Iteration: 20, Func. Count: 293, Neg. LLF: 113.92651791142157
Iteration: 21, Func. Count: 307, Neg. LLF: 113.92651541913347
Iteration: 22, Func. Count: 320, Neg. LLF: 113.92651551884128
Optimization terminated successfully (Exit mode 0)
Current function value: 113.92651541913347
Iterations: 22
Function evaluations: 320
Gradient evaluations: 22
Iteration: 1, Func. Count: 16, Neg. LLF: 118.73648232103776
Iteration: 2, Func. Count: 35, Neg. LLF: 5496252.366678687
Iteration: 3, Func. Count: 51, Neg. LLF: 288.6478898902212
Iteration: 4, Func. Count: 67, Neg. LLF: 165.7518128770361
Iteration: 5, Func. Count: 83, Neg. LLF: 122.77068475315745
Iteration: 6, Func. Count: 99, Neg. LLF: 156.35910512997768
Iteration: 7, Func. Count: 115, Neg. LLF: 116.38000521777712
Iteration: 8, Func. Count: 131, Neg. LLF: 116.41076385039995
Iteration: 9, Func. Count: 147, Neg. LLF: 115.07409487328782
Iteration: 10, Func. Count: 163, Neg. LLF: 124.71010225203511
Iteration: 11, Func. Count: 180, Neg. LLF: 113.72056080163738
Iteration: 12, Func. Count: 195, Neg. LLF: 113.60305222313892
Iteration: 13, Func. Count: 210, Neg. LLF: 113.55666318337376
Iteration: 14, Func. Count: 225, Neg. LLF: 113.49794837830291
Iteration: 15, Func. Count: 240, Neg. LLF: 113.47779810113046
Iteration: 16, Func. Count: 255, Neg. LLF: 113.47047961497921
Iteration: 17, Func. Count: 270, Neg. LLF: 113.46703488220933
Iteration: 18, Func. Count: 285, Neg. LLF: 113.46497335448437
Iteration: 19, Func. Count: 300, Neg. LLF: 113.46466316577389
Iteration: 20, Func. Count: 315, Neg. LLF: 113.46462657460188
Iteration: 21, Func. Count: 330, Neg. LLF: 113.46462484599566
Iteration: 22, Func. Count: 344, Neg. LLF: 113.46462480996254
Optimization terminated successfully (Exit mode 0)
Current function value: 113.46462484599566
Iterations: 22
Function evaluations: 344
Gradient evaluations: 22
Iteration: 1, Func. Count: 8, Neg. LLF: 136.32954391411954
Iteration: 2, Func. Count: 17, Neg. LLF: 470.55275519179565
Iteration: 3, Func. Count: 25, Neg. LLF: 117.21494631063092
Iteration: 4, Func. Count: 33, Neg. LLF: 116.7238039359499
Iteration: 5, Func. Count: 40, Neg. LLF: 117.10685082179825
Iteration: 6, Func. Count: 48, Neg. LLF: 116.48397884149885
Iteration: 7, Func. Count: 55, Neg. LLF: 116.46506183164533
Iteration: 8, Func. Count: 62, Neg. LLF: 116.46351467764576
Iteration: 9, Func. Count: 69, Neg. LLF: 116.46346684957078
Iteration: 10, Func. Count: 76, Neg. LLF: 116.46346076014714
Iteration: 11, Func. Count: 82, Neg. LLF: 116.4634607601461
Optimization terminated successfully (Exit mode 0)
Current function value: 116.46346076014714
Iterations: 11
Function evaluations: 82
Gradient evaluations: 11
Iteration: 1, Func. Count: 5, Neg. LLF: 123.46123220502709
Iteration: 2, Func. Count: 10, Neg. LLF: 130.8112071723818
Iteration: 3, Func. Count: 15, Neg. LLF: 118.22304679428622
Iteration: 4, Func. Count: 19, Neg. LLF: 118.05931592551698
Iteration: 5, Func. Count: 23, Neg. LLF: 117.96040701772269
Iteration: 6, Func. Count: 27, Neg. LLF: 117.94027868201896
Iteration: 7, Func. Count: 31, Neg. LLF: 117.93939059111436
Iteration: 8, Func. Count: 35, Neg. LLF: 117.93938513244812
Iteration: 9, Func. Count: 38, Neg. LLF: 117.93938519274582
Optimization terminated successfully (Exit mode 0)
Current function value: 117.93938513244812
Iterations: 9
Function evaluations: 38
Gradient evaluations: 9
Iteration: 1, Func. Count: 6, Neg. LLF: 165.16388631943244
Iteration: 2, Func. Count: 13, Neg. LLF: 116.77789151143709
Iteration: 3, Func. Count: 18, Neg. LLF: 144.74796585167542
Iteration: 4, Func. Count: 25, Neg. LLF: 116.72911539264567
Iteration: 5, Func. Count: 30, Neg. LLF: 117.52429414668522
Iteration: 6, Func. Count: 36, Neg. LLF: 116.69000898126299
Iteration: 7, Func. Count: 41, Neg. LLF: 116.68795783357832
Iteration: 8, Func. Count: 46, Neg. LLF: 116.68795263986632
Iteration: 9, Func. Count: 50, Neg. LLF: 116.68795256261666
Optimization terminated successfully (Exit mode 0)
Current function value: 116.68795263986632
Iterations: 9
Function evaluations: 50
Gradient evaluations: 9
Iteration: 1, Func. Count: 7, Neg. LLF: 160.8463645931917
Iteration: 2, Func. Count: 16, Neg. LLF: 116.85743549939843
Iteration: 3, Func. Count: 22, Neg. LLF: 117.0895383202947
Iteration: 4, Func. Count: 29, Neg. LLF: 118.32805529718226
Iteration: 5, Func. Count: 36, Neg. LLF: 116.72785688353443
Iteration: 6, Func. Count: 42, Neg. LLF: 116.72524584253789
Iteration: 7, Func. Count: 48, Neg. LLF: 116.72420911829757
Iteration: 8, Func. Count: 54, Neg. LLF: 116.70617155591013
Iteration: 9, Func. Count: 60, Neg. LLF: 116.68841933133322
Iteration: 10, Func. Count: 66, Neg. LLF: 116.6881601639306
Iteration: 11, Func. Count: 72, Neg. LLF: 116.6879811048059
Iteration: 12, Func. Count: 78, Neg. LLF: 116.68796236821971
Iteration: 13, Func. Count: 84, Neg. LLF: 116.68795629035878
Iteration: 14, Func. Count: 90, Neg. LLF: 116.68795177640224
Iteration: 15, Func. Count: 96, Neg. LLF: 116.68795263146285
Optimization terminated successfully (Exit mode 0)
Current function value: 116.68795191288703
Iterations: 15
Function evaluations: 97
Gradient evaluations: 15
Iteration: 1, Func. Count: 8, Neg. LLF: 159.18287363775374
Iteration: 2, Func. Count: 18, Neg. LLF: 116.83248726270699
Iteration: 3, Func. Count: 25, Neg. LLF: 116.80622656569973
Iteration: 4, Func. Count: 33, Neg. LLF: 116.7383852312156
Iteration: 5, Func. Count: 40, Neg. LLF: 117.04004413182932
Iteration: 6, Func. Count: 48, Neg. LLF: 115.77796005112187
Iteration: 7, Func. Count: 55, Neg. LLF: 116.74363048111175
Iteration: 8, Func. Count: 63, Neg. LLF: 115.59849227648367
Iteration: 9, Func. Count: 70, Neg. LLF: 115.58033913237517
Iteration: 10, Func. Count: 77, Neg. LLF: 115.55554338992566
Iteration: 11, Func. Count: 84, Neg. LLF: 115.52982817627924
Iteration: 12, Func. Count: 91, Neg. LLF: 115.51789073931647
Iteration: 13, Func. Count: 98, Neg. LLF: 115.51656699398124
Iteration: 14, Func. Count: 105, Neg. LLF: 115.51646607071419
Iteration: 15, Func. Count: 112, Neg. LLF: 115.51645140946869
Iteration: 16, Func. Count: 119, Neg. LLF: 115.51645038810615
Iteration: 17, Func. Count: 125, Neg. LLF: 115.51645034916508
Optimization terminated successfully (Exit mode 0)
Current function value: 115.51645038810615
Iterations: 17
Function evaluations: 125
Gradient evaluations: 17
Iteration: 1, Func. Count: 9, Neg. LLF: 161.1889319449238
Iteration: 2, Func. Count: 20, Neg. LLF: 116.8589629045852
Iteration: 3, Func. Count: 28, Neg. LLF: 116.7999300464749
Iteration: 4, Func. Count: 36, Neg. LLF: 117.02296024091807
Iteration: 5, Func. Count: 45, Neg. LLF: 116.53945686115328
Iteration: 6, Func. Count: 53, Neg. LLF: 115.74852935376587
Iteration: 7, Func. Count: 61, Neg. LLF: 115.62564898846755
Iteration: 8, Func. Count: 69, Neg. LLF: 115.60612906806291
Iteration: 9, Func. Count: 77, Neg. LLF: 115.5791655526607
Iteration: 10, Func. Count: 85, Neg. LLF: 115.5542238370661
Iteration: 11, Func. Count: 93, Neg. LLF: 115.52411839604213
Iteration: 12, Func. Count: 101, Neg. LLF: 115.51668144283124
Iteration: 13, Func. Count: 109, Neg. LLF: 115.51645173046218
Iteration: 14, Func. Count: 117, Neg. LLF: 115.51645056432406
Iteration: 15, Func. Count: 124, Neg. LLF: 115.51645057643715
Optimization terminated successfully (Exit mode 0)
Current function value: 115.51645056432406
Iterations: 15
Function evaluations: 124
Gradient evaluations: 15
Iteration: 1, Func. Count: 6, Neg. LLF: 128.37748678503115
Iteration: 2, Func. Count: 12, Neg. LLF: 142.7967764957663
Iteration: 3, Func. Count: 18, Neg. LLF: 118.16306046304051
Iteration: 4, Func. Count: 23, Neg. LLF: 118.08035681454953
Iteration: 5, Func. Count: 28, Neg. LLF: 117.94496081461357
Iteration: 6, Func. Count: 33, Neg. LLF: 117.93968430932337
Iteration: 7, Func. Count: 38, Neg. LLF: 117.93938563443379
Iteration: 8, Func. Count: 43, Neg. LLF: 117.93938513101038
Optimization terminated successfully (Exit mode 0)
Current function value: 117.93938513101038
Iterations: 8
Function evaluations: 43
Gradient evaluations: 8
Iteration: 1, Func. Count: 7, Neg. LLF: 164.79375462311302
Iteration: 2, Func. Count: 15, Neg. LLF: 116.78887088934566
Iteration: 3, Func. Count: 21, Neg. LLF: 135.9192133549878
Iteration: 4, Func. Count: 29, Neg. LLF: 116.61870703898198
Iteration: 5, Func. Count: 35, Neg. LLF: 122.07642084075736
Iteration: 6, Func. Count: 42, Neg. LLF: 116.58249802948494
Iteration: 7, Func. Count: 48, Neg. LLF: 116.58135194660609
Iteration: 8, Func. Count: 54, Neg. LLF: 116.58125299221909
Iteration: 9, Func. Count: 60, Neg. LLF: 116.58122253894322
Iteration: 10, Func. Count: 66, Neg. LLF: 116.58122124301276
Iteration: 11, Func. Count: 71, Neg. LLF: 116.58122112763321
Optimization terminated successfully (Exit mode 0)
Current function value: 116.58122124301276
Iterations: 11
Function evaluations: 71
Gradient evaluations: 11
Iteration: 1, Func. Count: 8, Neg. LLF: 160.55161586145167
Iteration: 2, Func. Count: 18, Neg. LLF: 116.85781668138014
Iteration: 3, Func. Count: 25, Neg. LLF: 116.37583673708563
Iteration: 4, Func. Count: 32, Neg. LLF: 136.80935708863444
Iteration: 5, Func. Count: 41, Neg. LLF: 115.96998576495105
Iteration: 6, Func. Count: 49, Neg. LLF: 115.53253671290217
Iteration: 7, Func. Count: 56, Neg. LLF: 115.48771300693052
Iteration: 8, Func. Count: 63, Neg. LLF: 115.47503999246652
Iteration: 9, Func. Count: 70, Neg. LLF: 115.46970024979872
Iteration: 10, Func. Count: 77, Neg. LLF: 115.46965119149448
Iteration: 11, Func. Count: 84, Neg. LLF: 115.46964406095881
Iteration: 12, Func. Count: 91, Neg. LLF: 115.46964507016652
Optimization terminated successfully (Exit mode 0)
Current function value: 115.46964406202189
Iterations: 12
Function evaluations: 101
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 159.14018764034176
Iteration: 2, Func. Count: 20, Neg. LLF: 116.83060529945924
Iteration: 3, Func. Count: 28, Neg. LLF: 117.04041553927992
Iteration: 4, Func. Count: 37, Neg. LLF: 119.5689804158143
Iteration: 5, Func. Count: 46, Neg. LLF: 116.52555454234081
Iteration: 6, Func. Count: 54, Neg. LLF: 116.317451961367
Iteration: 7, Func. Count: 62, Neg. LLF: 117.67506979452963
Iteration: 8, Func. Count: 71, Neg. LLF: 116.24640866066753
Iteration: 9, Func. Count: 79, Neg. LLF: 116.22636094916778
Iteration: 10, Func. Count: 87, Neg. LLF: 116.22451255485767
Iteration: 11, Func. Count: 95, Neg. LLF: 116.22384617328915
Iteration: 12, Func. Count: 103, Neg. LLF: 116.22372493752624
Iteration: 13, Func. Count: 111, Neg. LLF: 116.22359158163182
Iteration: 14, Func. Count: 119, Neg. LLF: 116.2235883724079
Iteration: 15, Func. Count: 126, Neg. LLF: 116.22358827676408
Optimization terminated successfully (Exit mode 0)
Current function value: 116.2235883724079
Iterations: 15
Function evaluations: 126
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 161.94969147776024
Iteration: 2, Func. Count: 22, Neg. LLF: 116.86264864933601
Iteration: 3, Func. Count: 31, Neg. LLF: 116.78820399420061
Iteration: 4, Func. Count: 40, Neg. LLF: 117.18450888723366
Iteration: 5, Func. Count: 50, Neg. LLF: 116.57521299451106
Iteration: 6, Func. Count: 59, Neg. LLF: 115.79352696355595
Iteration: 7, Func. Count: 68, Neg. LLF: 115.75939572939929
Iteration: 8, Func. Count: 77, Neg. LLF: 115.66022641397822
Iteration: 9, Func. Count: 86, Neg. LLF: 115.70714953101361
Iteration: 10, Func. Count: 96, Neg. LLF: 115.74754236295752
Iteration: 11, Func. Count: 106, Neg. LLF: 115.57616523147856
Iteration: 12, Func. Count: 115, Neg. LLF: 115.53334674436677
Iteration: 13, Func. Count: 124, Neg. LLF: 115.52037544487422
Iteration: 14, Func. Count: 133, Neg. LLF: 115.5165668791587
Iteration: 15, Func. Count: 142, Neg. LLF: 115.51645145841084
Iteration: 16, Func. Count: 151, Neg. LLF: 115.51645036279555
Iteration: 17, Func. Count: 159, Neg. LLF: 115.51645037478457
Optimization terminated successfully (Exit mode 0)
Current function value: 115.51645036279555
Iterations: 17
Function evaluations: 159
Gradient evaluations: 17
Iteration: 1, Func. Count: 7, Neg. LLF: 130.6175975338579
Iteration: 2, Func. Count: 14, Neg. LLF: 141.54593031323964
Iteration: 3, Func. Count: 21, Neg. LLF: 118.1872617725197
Iteration: 4, Func. Count: 27, Neg. LLF: 118.0771991308894
Iteration: 5, Func. Count: 33, Neg. LLF: 117.9490558641379
Iteration: 6, Func. Count: 39, Neg. LLF: 117.93966007445464
Iteration: 7, Func. Count: 45, Neg. LLF: 117.93938542764462
Iteration: 8, Func. Count: 50, Neg. LLF: 117.93938546805163
Optimization terminated successfully (Exit mode 0)
Current function value: 117.93938542764462
Iterations: 8
Function evaluations: 50
Gradient evaluations: 8
Iteration: 1, Func. Count: 8, Neg. LLF: 164.4469989676077
Iteration: 2, Func. Count: 17, Neg. LLF: 129.3619978913174
Iteration: 3, Func. Count: 26, Neg. LLF: 116.67333222468856
Iteration: 4, Func. Count: 33, Neg. LLF: 119.81682048542874
Iteration: 5, Func. Count: 41, Neg. LLF: 116.67975831202982
Iteration: 6, Func. Count: 49, Neg. LLF: 116.54575109359715
Iteration: 7, Func. Count: 57, Neg. LLF: 116.46073485405343
Iteration: 8, Func. Count: 65, Neg. LLF: 116.45912515660171
Iteration: 9, Func. Count: 72, Neg. LLF: 116.45912034686506
Iteration: 10, Func. Count: 78, Neg. LLF: 116.45912022137419
Optimization terminated successfully (Exit mode 0)
Current function value: 116.45912034686506
Iterations: 10
Function evaluations: 78
Gradient evaluations: 10
Iteration: 1, Func. Count: 9, Neg. LLF: 160.476258080712
Iteration: 2, Func. Count: 20, Neg. LLF: 117.59866739113878
Iteration: 3, Func. Count: 29, Neg. LLF: 116.61334189898729
Iteration: 4, Func. Count: 37, Neg. LLF: 116.58585100854594
Iteration: 5, Func. Count: 45, Neg. LLF: 116.62977579895745
Iteration: 6, Func. Count: 54, Neg. LLF: 116.61513977349297
Iteration: 7, Func. Count: 63, Neg. LLF: 116.57308582933511
Iteration: 8, Func. Count: 71, Neg. LLF: 116.54963595752484
Iteration: 9, Func. Count: 79, Neg. LLF: 116.49167059615093
Iteration: 10, Func. Count: 87, Neg. LLF: 116.59964758129041
Iteration: 11, Func. Count: 96, Neg. LLF: 116.45975040275522
Iteration: 12, Func. Count: 104, Neg. LLF: 116.45912982683545
Iteration: 13, Func. Count: 112, Neg. LLF: 116.45912290444655
Iteration: 14, Func. Count: 120, Neg. LLF: 116.45912035885851
Iteration: 15, Func. Count: 127, Neg. LLF: 116.45912023717896
Optimization terminated successfully (Exit mode 0)
Current function value: 116.45912035885851
Iterations: 15
Function evaluations: 127
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 159.77172600195442
Iteration: 2, Func. Count: 22, Neg. LLF: 116.83819134659193
Iteration: 3, Func. Count: 31, Neg. LLF: 117.07043839774181
Iteration: 4, Func. Count: 41, Neg. LLF: 119.80018310634406
Iteration: 5, Func. Count: 51, Neg. LLF: 116.53250733984395
Iteration: 6, Func. Count: 60, Neg. LLF: 116.36632592922759
Iteration: 7, Func. Count: 69, Neg. LLF: 117.86910385075336
Iteration: 8, Func. Count: 79, Neg. LLF: 116.34816869068405
Iteration: 9, Func. Count: 89, Neg. LLF: 116.23287102464107
Iteration: 10, Func. Count: 98, Neg. LLF: 116.26694665919904
Iteration: 11, Func. Count: 108, Neg. LLF: 116.22487142267077
Iteration: 12, Func. Count: 117, Neg. LLF: 116.22398637219632
Iteration: 13, Func. Count: 126, Neg. LLF: 116.2235927285757
Iteration: 14, Func. Count: 135, Neg. LLF: 116.22358836970928
Iteration: 15, Func. Count: 143, Neg. LLF: 116.22358827394856
Optimization terminated successfully (Exit mode 0)
Current function value: 116.22358836970928
Iterations: 15
Function evaluations: 143
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 162.49511049041305
Iteration: 2, Func. Count: 24, Neg. LLF: 116.86535925873764
Iteration: 3, Func. Count: 34, Neg. LLF: 117.13988800752222
Iteration: 4, Func. Count: 45, Neg. LLF: 124.6377951227043
Iteration: 5, Func. Count: 56, Neg. LLF: 116.84037119454618
Iteration: 6, Func. Count: 67, Neg. LLF: 116.70973540556736
Iteration: 7, Func. Count: 77, Neg. LLF: 117.08123943020199
Iteration: 8, Func. Count: 88, Neg. LLF: 117.24862971007725
Iteration: 9, Func. Count: 99, Neg. LLF: 116.96144494075162
Iteration: 10, Func. Count: 110, Neg. LLF: 116.7470318221623
Iteration: 11, Func. Count: 121, Neg. LLF: 116.58232077442447
Iteration: 12, Func. Count: 132, Neg. LLF: 116.48957481722105
Iteration: 13, Func. Count: 142, Neg. LLF: 116.48097937593421
Iteration: 14, Func. Count: 153, Neg. LLF: 116.4618577843641
Iteration: 15, Func. Count: 164, Neg. LLF: 116.45944915735731
Iteration: 16, Func. Count: 174, Neg. LLF: 116.45912232658617
Iteration: 17, Func. Count: 184, Neg. LLF: 116.45912036019834
Iteration: 18, Func. Count: 193, Neg. LLF: 116.45912023714516
Optimization terminated successfully (Exit mode 0)
Current function value: 116.45912036019834
Iterations: 18
Function evaluations: 193
Gradient evaluations: 18
Iteration: 1, Func. Count: 8, Neg. LLF: 135.07376176008972
Iteration: 2, Func. Count: 17, Neg. LLF: 508.4694904078538
Iteration: 3, Func. Count: 25, Neg. LLF: 116.51238802581176
Iteration: 4, Func. Count: 33, Neg. LLF: 114.75914768128338
Iteration: 5, Func. Count: 40, Neg. LLF: 114.66216405824213
Iteration: 6, Func. Count: 47, Neg. LLF: 114.53257718079783
Iteration: 7, Func. Count: 54, Neg. LLF: 114.51695081155313
Iteration: 8, Func. Count: 61, Neg. LLF: 114.51526942604497
Iteration: 9, Func. Count: 68, Neg. LLF: 114.51523414533828
Iteration: 10, Func. Count: 75, Neg. LLF: 114.51523341281549
Optimization terminated successfully (Exit mode 0)
Current function value: 114.51523341281549
Iterations: 10
Function evaluations: 75
Gradient evaluations: 10
Iteration: 1, Func. Count: 9, Neg. LLF: 115.46462913175927
Iteration: 2, Func. Count: 21, Neg. LLF: 131.86023790841773
Iteration: 3, Func. Count: 30, Neg. LLF: 128.34792889508796
Iteration: 4, Func. Count: 39, Neg. LLF: 114.74391319098478
Iteration: 5, Func. Count: 47, Neg. LLF: 114.98366913565961
Iteration: 6, Func. Count: 56, Neg. LLF: 114.41714589086189
Iteration: 7, Func. Count: 65, Neg. LLF: 113.82301708949122
Iteration: 8, Func. Count: 73, Neg. LLF: 113.73808648376459
Iteration: 9, Func. Count: 81, Neg. LLF: 113.70183374332152
Iteration: 10, Func. Count: 89, Neg. LLF: 113.68960653225929
Iteration: 11, Func. Count: 97, Neg. LLF: 113.68700336502746
Iteration: 12, Func. Count: 105, Neg. LLF: 113.68574381480772
Iteration: 13, Func. Count: 113, Neg. LLF: 113.6796464224768
Iteration: 14, Func. Count: 121, Neg. LLF: 113.6637842764362
Iteration: 15, Func. Count: 129, Neg. LLF: 113.65964701467558
Iteration: 16, Func. Count: 137, Neg. LLF: 113.6574126809841
Iteration: 17, Func. Count: 145, Neg. LLF: 113.65727468042965
Iteration: 18, Func. Count: 153, Neg. LLF: 113.65726856751938
Iteration: 19, Func. Count: 160, Neg. LLF: 113.65726856755171
Optimization terminated successfully (Exit mode 0)
Current function value: 113.65726856751938
Iterations: 19
Function evaluations: 160
Gradient evaluations: 19
Iteration: 1, Func. Count: 10, Neg. LLF: 116.4865023996747
Iteration: 2, Func. Count: 23, Neg. LLF: 181.15008959198326
Iteration: 3, Func. Count: 33, Neg. LLF: 147.5529472809626
Iteration: 4, Func. Count: 43, Neg. LLF: 117.04324208386574
Iteration: 5, Func. Count: 53, Neg. LLF: 124.51207180721511
Iteration: 6, Func. Count: 63, Neg. LLF: 115.08730036129
Iteration: 7, Func. Count: 73, Neg. LLF: 113.8494051736137
Iteration: 8, Func. Count: 82, Neg. LLF: 113.78626154922075
Iteration: 9, Func. Count: 91, Neg. LLF: 113.77267355884503
Iteration: 10, Func. Count: 100, Neg. LLF: 113.76832002451766
Iteration: 11, Func. Count: 109, Neg. LLF: 113.74395932609532
Iteration: 12, Func. Count: 118, Neg. LLF: 113.70016511666299
Iteration: 13, Func. Count: 127, Neg. LLF: 113.67202830526423
Iteration: 14, Func. Count: 136, Neg. LLF: 113.65829721777536
Iteration: 15, Func. Count: 145, Neg. LLF: 113.65730836773947
Iteration: 16, Func. Count: 154, Neg. LLF: 113.65727403107086
Iteration: 17, Func. Count: 163, Neg. LLF: 113.65726841455142
Iteration: 18, Func. Count: 171, Neg. LLF: 113.65726850773336
Optimization terminated successfully (Exit mode 0)
Current function value: 113.65726841455142
Iterations: 18
Function evaluations: 171
Gradient evaluations: 18
Iteration: 1, Func. Count: 11, Neg. LLF: 117.33334639667031
Iteration: 2, Func. Count: 25, Neg. LLF: 887.2834522903415
Iteration: 3, Func. Count: 36, Neg. LLF: 134.70142095111382
Iteration: 4, Func. Count: 47, Neg. LLF: 119.06258172757359
Iteration: 5, Func. Count: 58, Neg. LLF: 115.20970501183623
Iteration: 6, Func. Count: 69, Neg. LLF: 126.43914529145995
Iteration: 7, Func. Count: 80, Neg. LLF: 113.91506293612538
Iteration: 8, Func. Count: 90, Neg. LLF: 113.7617523065723
Iteration: 9, Func. Count: 100, Neg. LLF: 113.71239186737921
Iteration: 10, Func. Count: 110, Neg. LLF: 113.69430664118352
Iteration: 11, Func. Count: 120, Neg. LLF: 113.6804101927823
Iteration: 12, Func. Count: 130, Neg. LLF: 113.65094816381053
Iteration: 13, Func. Count: 140, Neg. LLF: 113.60003603039988
Iteration: 14, Func. Count: 150, Neg. LLF: 113.56595129478697
Iteration: 15, Func. Count: 160, Neg. LLF: 113.55737285766774
Iteration: 16, Func. Count: 170, Neg. LLF: 113.55660363501414
Iteration: 17, Func. Count: 180, Neg. LLF: 113.55650418943307
Iteration: 18, Func. Count: 190, Neg. LLF: 113.55648608647283
Iteration: 19, Func. Count: 200, Neg. LLF: 113.5564852700022
Optimization terminated successfully (Exit mode 0)
Current function value: 113.5564852700022
Iterations: 19
Function evaluations: 200
Gradient evaluations: 19
Iteration: 1, Func. Count: 12, Neg. LLF: 117.93749177633768
Iteration: 2, Func. Count: 27, Neg. LLF: 5811777.667098064
Iteration: 3, Func. Count: 39, Neg. LLF: 131.84932474066906
Iteration: 4, Func. Count: 51, Neg. LLF: 118.65571234620965
Iteration: 5, Func. Count: 63, Neg. LLF: 123.58705461838674
Iteration: 6, Func. Count: 75, Neg. LLF: 115.07851037614014
Iteration: 7, Func. Count: 87, Neg. LLF: 114.08139058784245
Iteration: 8, Func. Count: 98, Neg. LLF: 113.85335195887913
Iteration: 9, Func. Count: 109, Neg. LLF: 113.78136045894311
Iteration: 10, Func. Count: 120, Neg. LLF: 113.77722733438902
Iteration: 11, Func. Count: 132, Neg. LLF: 113.74172911130424
Iteration: 12, Func. Count: 143, Neg. LLF: 113.66760870966947
Iteration: 13, Func. Count: 154, Neg. LLF: 113.57398353982522
Iteration: 14, Func. Count: 165, Neg. LLF: 113.55830675422935
Iteration: 15, Func. Count: 176, Neg. LLF: 113.55656306858613
Iteration: 16, Func. Count: 187, Neg. LLF: 113.55649424064717
Iteration: 17, Func. Count: 198, Neg. LLF: 113.55648616610725
Iteration: 18, Func. Count: 209, Neg. LLF: 113.55648524020587
Optimization terminated successfully (Exit mode 0)
Current function value: 113.55648524020587
Iterations: 18
Function evaluations: 209
Gradient evaluations: 18
Iteration: 1, Func. Count: 5, Neg. LLF: 126.04792362644095
Iteration: 2, Func. Count: 10, Neg. LLF: 121.79651083694095
Iteration: 3, Func. Count: 15, Neg. LLF: 118.18116142260611
Iteration: 4, Func. Count: 19, Neg. LLF: 118.08090919256328
Iteration: 5, Func. Count: 23, Neg. LLF: 117.96100027546026
Iteration: 6, Func. Count: 27, Neg. LLF: 117.94183860115712
Iteration: 7, Func. Count: 31, Neg. LLF: 117.9400242131003
Iteration: 8, Func. Count: 35, Neg. LLF: 117.93940736420079
Iteration: 9, Func. Count: 39, Neg. LLF: 117.93938594639171
Iteration: 10, Func. Count: 43, Neg. LLF: 117.93938513176441
Optimization terminated successfully (Exit mode 0)
Current function value: 117.93938513176441
Iterations: 10
Function evaluations: 43
Gradient evaluations: 10
Iteration: 1, Func. Count: 6, Neg. LLF: 166.9804545692935
Iteration: 2, Func. Count: 14, Neg. LLF: 117.25021461338875
Iteration: 3, Func. Count: 19, Neg. LLF: 116.82165029499191
Iteration: 4, Func. Count: 24, Neg. LLF: 116.75841440653298
Iteration: 5, Func. Count: 29, Neg. LLF: 116.81894890338792
Iteration: 6, Func. Count: 35, Neg. LLF: 116.87725102273558
Iteration: 7, Func. Count: 41, Neg. LLF: 116.71318035600393
Iteration: 8, Func. Count: 46, Neg. LLF: 116.71317853144407
Iteration: 9, Func. Count: 50, Neg. LLF: 116.71317857211879
Optimization terminated successfully (Exit mode 0)
Current function value: 116.71317853144407
Iterations: 9
Function evaluations: 50
Gradient evaluations: 9
Iteration: 1, Func. Count: 7, Neg. LLF: 161.67030933919298
Iteration: 2, Func. Count: 16, Neg. LLF: 116.92957129518165
Iteration: 3, Func. Count: 22, Neg. LLF: 116.87052120720041
Iteration: 4, Func. Count: 28, Neg. LLF: 118.05759036097055
Iteration: 5, Func. Count: 37, Neg. LLF: 119.6625010196178
Iteration: 6, Func. Count: 44, Neg. LLF: 116.82228008229086
Iteration: 7, Func. Count: 51, Neg. LLF: 116.73901101664633
Iteration: 8, Func. Count: 57, Neg. LLF: 116.7359097009259
Iteration: 9, Func. Count: 63, Neg. LLF: 116.73408426857168
Iteration: 10, Func. Count: 69, Neg. LLF: 116.73215407560379
Iteration: 11, Func. Count: 75, Neg. LLF: 116.73095999763915
Iteration: 12, Func. Count: 81, Neg. LLF: 116.72965962652925
Iteration: 13, Func. Count: 87, Neg. LLF: 116.72814979270677
Iteration: 14, Func. Count: 93, Neg. LLF: 116.71842143697914
Iteration: 15, Func. Count: 99, Neg. LLF: 116.71318098518331
Iteration: 16, Func. Count: 105, Neg. LLF: 117.22348201662551
Iteration: 17, Func. Count: 114, Neg. LLF: 116.71321528190107
Optimization terminated successfully (Exit mode 0)
Current function value: 116.71317853172586
Iterations: 18
Function evaluations: 115
Gradient evaluations: 17
Iteration: 1, Func. Count: 8, Neg. LLF: 161.00506753646147
Iteration: 2, Func. Count: 18, Neg. LLF: 116.8473658888205
Iteration: 3, Func. Count: 25, Neg. LLF: 116.79335575414123
Iteration: 4, Func. Count: 32, Neg. LLF: 117.89250747587357
Iteration: 5, Func. Count: 40, Neg. LLF: 116.75191521272042
Iteration: 6, Func. Count: 47, Neg. LLF: 116.74437732910218
Iteration: 7, Func. Count: 54, Neg. LLF: 116.74404309006944
Iteration: 8, Func. Count: 61, Neg. LLF: 116.74360546074132
Iteration: 9, Func. Count: 68, Neg. LLF: 116.74301123068672
Iteration: 10, Func. Count: 75, Neg. LLF: 116.74007095871572
Iteration: 11, Func. Count: 82, Neg. LLF: 116.73214638330018
Iteration: 12, Func. Count: 89, Neg. LLF: 116.73208746933298
Iteration: 13, Func. Count: 97, Neg. LLF: 116.73110998487223
Iteration: 14, Func. Count: 104, Neg. LLF: 116.7295670979078
Iteration: 15, Func. Count: 111, Neg. LLF: 116.72814791182192
Iteration: 16, Func. Count: 118, Neg. LLF: 116.71890179784029
Iteration: 17, Func. Count: 125, Neg. LLF: 116.72105006678997
Iteration: 18, Func. Count: 133, Neg. LLF: 116.71558715569871
Iteration: 19, Func. Count: 140, Neg. LLF: 117.25010138476527
Iteration: 20, Func. Count: 153, Neg. LLF: 119.0994290804802
Iteration: 21, Func. Count: 163, Neg. LLF: 116.71448289943329
Iteration: 22, Func. Count: 170, Neg. LLF: 116.71367415610561
Iteration: 23, Func. Count: 177, Neg. LLF: 116.71319550174766
Iteration: 24, Func. Count: 184, Neg. LLF: 116.71317853152284
Iteration: 25, Func. Count: 190, Neg. LLF: 116.71317849284475
Optimization terminated successfully (Exit mode 0)
Current function value: 116.71317853152284
Iterations: 26
Function evaluations: 190
Gradient evaluations: 25
Iteration: 1, Func. Count: 9, Neg. LLF: 134.75185142947726
Iteration: 2, Func. Count: 18, Neg. LLF: 116.90774821052665
Iteration: 3, Func. Count: 26, Neg. LLF: 116.97531378385113
Iteration: 4, Func. Count: 35, Neg. LLF: 116.87260314613714
Iteration: 5, Func. Count: 44, Neg. LLF: 116.76277922647131
Iteration: 6, Func. Count: 52, Neg. LLF: 116.76133231357984
Iteration: 7, Func. Count: 60, Neg. LLF: 116.75937116026148
Iteration: 8, Func. Count: 68, Neg. LLF: 116.75676988803093
Iteration: 9, Func. Count: 76, Neg. LLF: 116.74438747012076
Iteration: 10, Func. Count: 84, Neg. LLF: 116.74397281003525
Iteration: 11, Func. Count: 92, Neg. LLF: 116.74359934603224
Iteration: 12, Func. Count: 100, Neg. LLF: 116.74335686993774
Iteration: 13, Func. Count: 108, Neg. LLF: 116.74273826155842
Iteration: 14, Func. Count: 116, Neg. LLF: 116.73627622809097
Iteration: 15, Func. Count: 124, Neg. LLF: 116.7368642060838
Iteration: 16, Func. Count: 133, Neg. LLF: 116.7344836269883
Iteration: 17, Func. Count: 141, Neg. LLF: 116.73209952781541
Iteration: 18, Func. Count: 149, Neg. LLF: 116.73011546623933
Iteration: 19, Func. Count: 157, Neg. LLF: 116.72853867059703
Iteration: 20, Func. Count: 165, Neg. LLF: 116.72451063956338
Iteration: 21, Func. Count: 173, Neg. LLF: 116.71690526053959
Iteration: 22, Func. Count: 181, Neg. LLF: 117.33616523876998
Iteration: 23, Func. Count: 190, Neg. LLF: 124.88563843918524
Iteration: 24, Func. Count: 201, Neg. LLF: 116.7385005502649
Iteration: 25, Func. Count: 210, Neg. LLF: 116.71317853247675
Iteration: 26, Func. Count: 217, Neg. LLF: 116.71317849560991
Optimization terminated successfully (Exit mode 0)
Current function value: 116.71317853247675
Iterations: 27
Function evaluations: 217
Gradient evaluations: 26
Iteration: 1, Func. Count: 6, Neg. LLF: 125.01496101979325
Iteration: 2, Func. Count: 12, Neg. LLF: 131.39955444403202
Iteration: 3, Func. Count: 18, Neg. LLF: 118.15849293401048
Iteration: 4, Func. Count: 23, Neg. LLF: 118.09750761999743
Iteration: 5, Func. Count: 28, Neg. LLF: 117.97694114403185
Iteration: 6, Func. Count: 33, Neg. LLF: 117.94900524396685
Iteration: 7, Func. Count: 38, Neg. LLF: 117.93940902605246
Iteration: 8, Func. Count: 43, Neg. LLF: 117.93938519651775
Iteration: 9, Func. Count: 47, Neg. LLF: 117.9393851362215
Optimization terminated successfully (Exit mode 0)
Current function value: 117.93938519651775
Iterations: 9
Function evaluations: 47
Gradient evaluations: 9
Iteration: 1, Func. Count: 7, Neg. LLF: 168.03199017304223
Iteration: 2, Func. Count: 16, Neg. LLF: 117.2659128573374
Iteration: 3, Func. Count: 22, Neg. LLF: 116.84017033808743
Iteration: 4, Func. Count: 28, Neg. LLF: 130.1341613858165
Iteration: 5, Func. Count: 36, Neg. LLF: 116.80647612878354
Iteration: 6, Func. Count: 43, Neg. LLF: 116.76678150477981
Iteration: 7, Func. Count: 50, Neg. LLF: 116.69074350981842
Iteration: 8, Func. Count: 56, Neg. LLF: 116.68802273305297
Iteration: 9, Func. Count: 62, Neg. LLF: 116.68796100476649
Iteration: 10, Func. Count: 68, Neg. LLF: 116.68795266798209
Iteration: 11, Func. Count: 73, Neg. LLF: 116.68795259083616
Optimization terminated successfully (Exit mode 0)
Current function value: 116.68795266798209
Iterations: 11
Function evaluations: 73
Gradient evaluations: 11
Iteration: 1, Func. Count: 8, Neg. LLF: 161.78726001599932
Iteration: 2, Func. Count: 18, Neg. LLF: 116.93626553015636
Iteration: 3, Func. Count: 25, Neg. LLF: 116.88172003107087
Iteration: 4, Func. Count: 33, Neg. LLF: 117.74917393657338
Iteration: 5, Func. Count: 41, Neg. LLF: 116.73086988837339
Iteration: 6, Func. Count: 48, Neg. LLF: 116.76924217592577
Iteration: 7, Func. Count: 56, Neg. LLF: 116.7231064123083
Iteration: 8, Func. Count: 63, Neg. LLF: 116.71461225406624
Iteration: 9, Func. Count: 70, Neg. LLF: 116.70423787025749
Iteration: 10, Func. Count: 77, Neg. LLF: 116.7135571206357
Iteration: 11, Func. Count: 85, Neg. LLF: 116.68994813128683
Iteration: 12, Func. Count: 92, Neg. LLF: 116.6880388325762
Iteration: 13, Func. Count: 99, Neg. LLF: 116.68795358276864
Iteration: 14, Func. Count: 106, Neg. LLF: 116.68795266445113
Optimization terminated successfully (Exit mode 0)
Current function value: 116.68795266445113
Iterations: 14
Function evaluations: 106
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 159.96607690057948
Iteration: 2, Func. Count: 20, Neg. LLF: 116.85367245346742
Iteration: 3, Func. Count: 28, Neg. LLF: 116.76761799807876
Iteration: 4, Func. Count: 36, Neg. LLF: 116.65854843118198
Iteration: 5, Func. Count: 44, Neg. LLF: 115.61079211647248
Iteration: 6, Func. Count: 52, Neg. LLF: 115.61227158930302
Iteration: 7, Func. Count: 61, Neg. LLF: 115.52836427356283
Iteration: 8, Func. Count: 69, Neg. LLF: 115.52694517240123
Iteration: 9, Func. Count: 77, Neg. LLF: 115.52607522310842
Iteration: 10, Func. Count: 85, Neg. LLF: 115.52256166206604
Iteration: 11, Func. Count: 93, Neg. LLF: 115.51917858171264
Iteration: 12, Func. Count: 101, Neg. LLF: 115.51693606276055
Iteration: 13, Func. Count: 109, Neg. LLF: 115.51648986127074
Iteration: 14, Func. Count: 117, Neg. LLF: 115.51645206454626
Iteration: 15, Func. Count: 125, Neg. LLF: 115.51645036856013
Iteration: 16, Func. Count: 132, Neg. LLF: 115.51645032960369
Optimization terminated successfully (Exit mode 0)
Current function value: 115.51645036856013
Iterations: 16
Function evaluations: 132
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 134.9116337964984
Iteration: 2, Func. Count: 20, Neg. LLF: 116.93746496996403
Iteration: 3, Func. Count: 29, Neg. LLF: 116.80684365732318
Iteration: 4, Func. Count: 38, Neg. LLF: 117.10561184004641
Iteration: 5, Func. Count: 48, Neg. LLF: 116.81956581722038
Iteration: 6, Func. Count: 58, Neg. LLF: 116.7843671651365
Iteration: 7, Func. Count: 68, Neg. LLF: 116.63373071216087
Iteration: 8, Func. Count: 77, Neg. LLF: 116.04813091246314
Iteration: 9, Func. Count: 86, Neg. LLF: 116.37386014018676
Iteration: 10, Func. Count: 96, Neg. LLF: 115.64041657100353
Iteration: 11, Func. Count: 105, Neg. LLF: 115.53728743446636
Iteration: 12, Func. Count: 114, Neg. LLF: 115.53338037628046
Iteration: 13, Func. Count: 123, Neg. LLF: 115.52094552595993
Iteration: 14, Func. Count: 132, Neg. LLF: 115.5165700609147
Iteration: 15, Func. Count: 141, Neg. LLF: 115.51645148747096
Iteration: 16, Func. Count: 150, Neg. LLF: 115.51645038655265
Iteration: 17, Func. Count: 158, Neg. LLF: 115.51645039852598
Optimization terminated successfully (Exit mode 0)
Current function value: 115.51645038655265
Iterations: 17
Function evaluations: 158
Gradient evaluations: 17
Iteration: 1, Func. Count: 7, Neg. LLF: 130.8486551246805
Iteration: 2, Func. Count: 14, Neg. LLF: 133.22340247501475
Iteration: 3, Func. Count: 21, Neg. LLF: 118.16335757480643
Iteration: 4, Func. Count: 27, Neg. LLF: 118.07750975082224
Iteration: 5, Func. Count: 33, Neg. LLF: 117.95502515103647
Iteration: 6, Func. Count: 39, Neg. LLF: 117.94046967410513
Iteration: 7, Func. Count: 45, Neg. LLF: 117.93948072697461
Iteration: 8, Func. Count: 51, Neg. LLF: 117.93938674211462
Iteration: 9, Func. Count: 57, Neg. LLF: 117.93938515712682
Iteration: 10, Func. Count: 62, Neg. LLF: 117.93938520430311
Optimization terminated successfully (Exit mode 0)
Current function value: 117.93938515712682
Iterations: 10
Function evaluations: 62
Gradient evaluations: 10
Iteration: 1, Func. Count: 8, Neg. LLF: 167.70694919239648
Iteration: 2, Func. Count: 18, Neg. LLF: 117.27040667537037
Iteration: 3, Func. Count: 25, Neg. LLF: 116.5959494065233
Iteration: 4, Func. Count: 32, Neg. LLF: 118.138614218615
Iteration: 5, Func. Count: 40, Neg. LLF: 116.58128604362966
Iteration: 6, Func. Count: 47, Neg. LLF: 116.58170451752656
Iteration: 7, Func. Count: 55, Neg. LLF: 116.58123746527016
Iteration: 8, Func. Count: 62, Neg. LLF: 116.58122123253099
Iteration: 9, Func. Count: 68, Neg. LLF: 116.58122111734131
Optimization terminated successfully (Exit mode 0)
Current function value: 116.58122123253099
Iterations: 9
Function evaluations: 68
Gradient evaluations: 9
Iteration: 1, Func. Count: 9, Neg. LLF: 161.5234227441865
Iteration: 2, Func. Count: 20, Neg. LLF: 116.93716596373278
Iteration: 3, Func. Count: 28, Neg. LLF: 116.23953735642412
Iteration: 4, Func. Count: 36, Neg. LLF: 129.19543670673087
Iteration: 5, Func. Count: 46, Neg. LLF: 116.79245707321677
Iteration: 6, Func. Count: 55, Neg. LLF: 115.56683540413293
Iteration: 7, Func. Count: 63, Neg. LLF: 115.53984870498327
Iteration: 8, Func. Count: 71, Neg. LLF: 115.52364479378727
Iteration: 9, Func. Count: 79, Neg. LLF: 115.47344801705367
Iteration: 10, Func. Count: 87, Neg. LLF: 115.46969698043323
Iteration: 11, Func. Count: 95, Neg. LLF: 115.46964920883018
Iteration: 12, Func. Count: 103, Neg. LLF: 115.47155642112092
Optimization terminated successfully (Exit mode 0)
Current function value: 115.46964889248386
Iterations: 13
Function evaluations: 105
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 159.95872157793903
Iteration: 2, Func. Count: 22, Neg. LLF: 116.85233706245255
Iteration: 3, Func. Count: 31, Neg. LLF: 116.62377733273009
Iteration: 4, Func. Count: 40, Neg. LLF: 119.91684784981275
Iteration: 5, Func. Count: 50, Neg. LLF: 117.76739919444834
Iteration: 6, Func. Count: 60, Neg. LLF: 116.25958180810622
Iteration: 7, Func. Count: 69, Neg. LLF: 116.2242682647584
Iteration: 8, Func. Count: 78, Neg. LLF: 116.2238105758551
Iteration: 9, Func. Count: 87, Neg. LLF: 116.22361679586133
Iteration: 10, Func. Count: 96, Neg. LLF: 116.22359614145691
Iteration: 11, Func. Count: 105, Neg. LLF: 116.2235890834595
Iteration: 12, Func. Count: 114, Neg. LLF: 116.22358831713908
Optimization terminated successfully (Exit mode 0)
Current function value: 116.22358831713908
Iterations: 12
Function evaluations: 114
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 135.2003137756679
Iteration: 2, Func. Count: 22, Neg. LLF: 116.93869035315944
Iteration: 3, Func. Count: 32, Neg. LLF: 116.81195400422367
Iteration: 4, Func. Count: 42, Neg. LLF: 117.16276960530578
Iteration: 5, Func. Count: 53, Neg. LLF: 116.86904772702316
Iteration: 6, Func. Count: 64, Neg. LLF: 116.76820363565933
Iteration: 7, Func. Count: 75, Neg. LLF: 116.66128708263201
Iteration: 8, Func. Count: 85, Neg. LLF: 116.50716919248104
Iteration: 9, Func. Count: 95, Neg. LLF: 115.83717077856174
Iteration: 10, Func. Count: 105, Neg. LLF: 115.8924453895717
Iteration: 11, Func. Count: 116, Neg. LLF: 115.62094807859438
Iteration: 12, Func. Count: 126, Neg. LLF: 115.5661730454269
Iteration: 13, Func. Count: 136, Neg. LLF: 115.55316974267832
Iteration: 14, Func. Count: 146, Neg. LLF: 115.52075329321302
Iteration: 15, Func. Count: 156, Neg. LLF: 115.51683493051435
Iteration: 16, Func. Count: 166, Neg. LLF: 115.5164542912665
Iteration: 17, Func. Count: 176, Neg. LLF: 115.51645040333872
Iteration: 18, Func. Count: 185, Neg. LLF: 115.51645041537941
Optimization terminated successfully (Exit mode 0)
Current function value: 115.51645040333872
Iterations: 18
Function evaluations: 185
Gradient evaluations: 18
Iteration: 1, Func. Count: 8, Neg. LLF: 130.29746929591855
Iteration: 2, Func. Count: 16, Neg. LLF: 132.69388984481276
Iteration: 3, Func. Count: 24, Neg. LLF: 118.17109007145656
Iteration: 4, Func. Count: 31, Neg. LLF: 118.07167533047671
Iteration: 5, Func. Count: 38, Neg. LLF: 117.95720464802949
Iteration: 6, Func. Count: 45, Neg. LLF: 117.94023467324914
Iteration: 7, Func. Count: 52, Neg. LLF: 117.93939338376416
Iteration: 8, Func. Count: 59, Neg. LLF: 117.93938524059101
Iteration: 9, Func. Count: 65, Neg. LLF: 117.93938528099383
Optimization terminated successfully (Exit mode 0)
Current function value: 117.93938524059101
Iterations: 9
Function evaluations: 65
Gradient evaluations: 9
Iteration: 1, Func. Count: 9, Neg. LLF: 127.78552929418979
Iteration: 2, Func. Count: 20, Neg. LLF: 171.95659111531543
Iteration: 3, Func. Count: 30, Neg. LLF: 117.04661322407733
Iteration: 4, Func. Count: 38, Neg. LLF: 116.58340490298175
Iteration: 5, Func. Count: 46, Neg. LLF: 117.84774888935893
Iteration: 6, Func. Count: 55, Neg. LLF: 116.608821546332
Iteration: 7, Func. Count: 64, Neg. LLF: 116.4761614570531
Iteration: 8, Func. Count: 73, Neg. LLF: 116.4591205577737
Iteration: 9, Func. Count: 80, Neg. LLF: 116.45912043214786
Optimization terminated successfully (Exit mode 0)
Current function value: 116.4591205577737
Iterations: 9
Function evaluations: 80
Gradient evaluations: 9
Iteration: 1, Func. Count: 10, Neg. LLF: 161.47057767819524
Iteration: 2, Func. Count: 22, Neg. LLF: 123.59994168317664
Iteration: 3, Func. Count: 32, Neg. LLF: 116.66669890019124
Iteration: 4, Func. Count: 41, Neg. LLF: 117.26927276365738
Iteration: 5, Func. Count: 51, Neg. LLF: 116.58957598254841
Iteration: 6, Func. Count: 60, Neg. LLF: 116.5784479613259
Iteration: 7, Func. Count: 69, Neg. LLF: 116.57593671732585
Iteration: 8, Func. Count: 78, Neg. LLF: 116.57230767140648
Iteration: 9, Func. Count: 87, Neg. LLF: 116.55378587433812
Iteration: 10, Func. Count: 96, Neg. LLF: 116.51684763561326
Iteration: 11, Func. Count: 105, Neg. LLF: 116.46180406921104
Iteration: 12, Func. Count: 114, Neg. LLF: 116.45923341628429
Iteration: 13, Func. Count: 123, Neg. LLF: 116.45912138292329
Iteration: 14, Func. Count: 132, Neg. LLF: 116.4591203507966
Iteration: 15, Func. Count: 140, Neg. LLF: 116.45912022899496
Optimization terminated successfully (Exit mode 0)
Current function value: 116.4591203507966
Iterations: 15
Function evaluations: 140
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 160.6073537369375
Iteration: 2, Func. Count: 24, Neg. LLF: 116.86270736966168
Iteration: 3, Func. Count: 34, Neg. LLF: 116.64528878495183
Iteration: 4, Func. Count: 44, Neg. LLF: 120.13977600171994
Iteration: 5, Func. Count: 55, Neg. LLF: 117.4737465396859
Iteration: 6, Func. Count: 66, Neg. LLF: 116.323834140366
Iteration: 7, Func. Count: 77, Neg. LLF: 116.23513358821589
Iteration: 8, Func. Count: 88, Neg. LLF: 116.22362685679818
Iteration: 9, Func. Count: 98, Neg. LLF: 116.22359944430664
Iteration: 10, Func. Count: 108, Neg. LLF: 116.22359096432609
Iteration: 11, Func. Count: 118, Neg. LLF: 116.22358833312106
Iteration: 12, Func. Count: 127, Neg. LLF: 116.22358823731341
Optimization terminated successfully (Exit mode 0)
Current function value: 116.22358833312106
Iterations: 12
Function evaluations: 127
Gradient evaluations: 12
Iteration: 1, Func. Count: 12, Neg. LLF: 135.16547222010277
Iteration: 2, Func. Count: 24, Neg. LLF: 116.94075624980191
Iteration: 3, Func. Count: 35, Neg. LLF: 116.81861272938741
Iteration: 4, Func. Count: 46, Neg. LLF: 117.1836830650918
Iteration: 5, Func. Count: 58, Neg. LLF: 116.8651788649985
Iteration: 6, Func. Count: 70, Neg. LLF: 117.21423891814699
Iteration: 7, Func. Count: 83, Neg. LLF: 116.73527218725609
Iteration: 8, Func. Count: 94, Neg. LLF: 116.54237083258575
Iteration: 9, Func. Count: 105, Neg. LLF: 116.13906956885336
Iteration: 10, Func. Count: 116, Neg. LLF: 117.67736797155712
Iteration: 11, Func. Count: 128, Neg. LLF: 115.62664093094067
Iteration: 12, Func. Count: 139, Neg. LLF: 115.56188241352835
Iteration: 13, Func. Count: 150, Neg. LLF: 115.5423677892625
Iteration: 14, Func. Count: 161, Neg. LLF: 115.53512300341208
Iteration: 15, Func. Count: 172, Neg. LLF: 115.52773992512712
Iteration: 16, Func. Count: 183, Neg. LLF: 115.51873205708439
Iteration: 17, Func. Count: 194, Neg. LLF: 115.51661138880637
Iteration: 18, Func. Count: 205, Neg. LLF: 115.5164545535061
Iteration: 19, Func. Count: 216, Neg. LLF: 115.51645076047583
Iteration: 20, Func. Count: 226, Neg. LLF: 115.51645077263706
Optimization terminated successfully (Exit mode 0)
Current function value: 115.51645076047583
Iterations: 20
Function evaluations: 226
Gradient evaluations: 20
Iteration: 1, Func. Count: 9, Neg. LLF: 136.35398468872236
Iteration: 2, Func. Count: 19, Neg. LLF: 482.0668002517083
Iteration: 3, Func. Count: 28, Neg. LLF: 116.39248895952336
Iteration: 4, Func. Count: 37, Neg. LLF: 170.36964157508956
Iteration: 5, Func. Count: 48, Neg. LLF: 114.76132194018585
Iteration: 6, Func. Count: 56, Neg. LLF: 114.65082683735066
Iteration: 7, Func. Count: 64, Neg. LLF: 114.52800243678097
Iteration: 8, Func. Count: 72, Neg. LLF: 114.5123775490169
Iteration: 9, Func. Count: 80, Neg. LLF: 114.51122899800106
Iteration: 10, Func. Count: 88, Neg. LLF: 114.51119164893575
Iteration: 11, Func. Count: 96, Neg. LLF: 114.51119033462619
Iteration: 12, Func. Count: 103, Neg. LLF: 114.51119033462754
Optimization terminated successfully (Exit mode 0)
Current function value: 114.51119033462619
Iterations: 12
Function evaluations: 103
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 116.09075152224362
Iteration: 2, Func. Count: 23, Neg. LLF: 140.62415981487783
Iteration: 3, Func. Count: 33, Neg. LLF: 126.74913386062379
Iteration: 4, Func. Count: 43, Neg. LLF: 143.27805792174274
Iteration: 5, Func. Count: 53, Neg. LLF: 114.89164998067767
Iteration: 6, Func. Count: 63, Neg. LLF: 115.76702578407082
Iteration: 7, Func. Count: 73, Neg. LLF: 113.39152986780324
Iteration: 8, Func. Count: 82, Neg. LLF: 113.34152824302521
Iteration: 9, Func. Count: 91, Neg. LLF: 113.33410293921524
Iteration: 10, Func. Count: 101, Neg. LLF: 113.29702678541383
Iteration: 11, Func. Count: 110, Neg. LLF: 113.27140130165505
Iteration: 12, Func. Count: 119, Neg. LLF: 113.24795440096075
Iteration: 13, Func. Count: 128, Neg. LLF: 113.23437358797439
Iteration: 14, Func. Count: 137, Neg. LLF: 113.2322121385063
Iteration: 15, Func. Count: 146, Neg. LLF: 113.22972969002097
Iteration: 16, Func. Count: 155, Neg. LLF: 113.22395201438727
Iteration: 17, Func. Count: 164, Neg. LLF: 113.21645667626171
Iteration: 18, Func. Count: 173, Neg. LLF: 113.21028990634773
Iteration: 19, Func. Count: 182, Neg. LLF: 113.2083645108763
Iteration: 20, Func. Count: 191, Neg. LLF: 113.2081848216276
Iteration: 21, Func. Count: 200, Neg. LLF: 113.20817465386743
Iteration: 22, Func. Count: 208, Neg. LLF: 113.20817465390651
Optimization terminated successfully (Exit mode 0)
Current function value: 113.20817465386743
Iterations: 22
Function evaluations: 208
Gradient evaluations: 22
Iteration: 1, Func. Count: 11, Neg. LLF: 117.17979108579814
Iteration: 2, Func. Count: 25, Neg. LLF: 201.77363074752765
Iteration: 3, Func. Count: 36, Neg. LLF: 158.37456205383083
Iteration: 4, Func. Count: 47, Neg. LLF: 139.81049616664265
Iteration: 5, Func. Count: 58, Neg. LLF: 117.6286083383608
Iteration: 6, Func. Count: 69, Neg. LLF: 195.45193778490673
Iteration: 7, Func. Count: 80, Neg. LLF: 114.30374105205867
Iteration: 8, Func. Count: 90, Neg. LLF: 113.78024723413172
Iteration: 9, Func. Count: 100, Neg. LLF: 114.4357873262098
Iteration: 10, Func. Count: 111, Neg. LLF: 113.46578960532825
Iteration: 11, Func. Count: 121, Neg. LLF: 113.39305192783735
Iteration: 12, Func. Count: 131, Neg. LLF: 113.36034248858418
Iteration: 13, Func. Count: 141, Neg. LLF: 113.32710548080152
Iteration: 14, Func. Count: 151, Neg. LLF: 113.31018298890199
Iteration: 15, Func. Count: 161, Neg. LLF: 113.29281242204587
Iteration: 16, Func. Count: 171, Neg. LLF: 113.28110141759686
Iteration: 17, Func. Count: 181, Neg. LLF: 113.26447033415268
Iteration: 18, Func. Count: 191, Neg. LLF: 113.23883244965454
Iteration: 19, Func. Count: 201, Neg. LLF: 113.21571429805151
Iteration: 20, Func. Count: 211, Neg. LLF: 113.20912920974465
Iteration: 21, Func. Count: 221, Neg. LLF: 113.20831421802133
Iteration: 22, Func. Count: 231, Neg. LLF: 113.20818230587022
Iteration: 23, Func. Count: 241, Neg. LLF: 113.20817481624769
Iteration: 24, Func. Count: 250, Neg. LLF: 113.20817492355214
Optimization terminated successfully (Exit mode 0)
Current function value: 113.20817481624769
Iterations: 24
Function evaluations: 250
Gradient evaluations: 24
Iteration: 1, Func. Count: 12, Neg. LLF: 118.11187915657557
Iteration: 2, Func. Count: 27, Neg. LLF: 5637403.266677306
Iteration: 3, Func. Count: 39, Neg. LLF: 139.65572258263902
Iteration: 4, Func. Count: 51, Neg. LLF: 117.21913606210659
Iteration: 5, Func. Count: 63, Neg. LLF: 115.59253158843055
Iteration: 6, Func. Count: 75, Neg. LLF: 118.44318354995957
Iteration: 7, Func. Count: 87, Neg. LLF: 114.99949208039924
Iteration: 8, Func. Count: 99, Neg. LLF: 113.58801310589003
Iteration: 9, Func. Count: 110, Neg. LLF: 113.53045060100764
Iteration: 10, Func. Count: 121, Neg. LLF: 113.41410723261782
Iteration: 11, Func. Count: 132, Neg. LLF: 113.35247968492804
Iteration: 12, Func. Count: 143, Neg. LLF: 113.32195002828354
Iteration: 13, Func. Count: 154, Neg. LLF: 113.28498089279084
Iteration: 14, Func. Count: 165, Neg. LLF: 113.2747297483189
Iteration: 15, Func. Count: 176, Neg. LLF: 113.26639016285328
Iteration: 16, Func. Count: 187, Neg. LLF: 113.25409612541164
Iteration: 17, Func. Count: 198, Neg. LLF: 113.23702138826825
Iteration: 18, Func. Count: 209, Neg. LLF: 113.21898479654016
Iteration: 19, Func. Count: 220, Neg. LLF: 113.2093977785174
Iteration: 20, Func. Count: 231, Neg. LLF: 113.20831631228356
Iteration: 21, Func. Count: 242, Neg. LLF: 113.20818393822115
Iteration: 22, Func. Count: 253, Neg. LLF: 113.2081744893019
Iteration: 23, Func. Count: 263, Neg. LLF: 113.20817454187153
Optimization terminated successfully (Exit mode 0)
Current function value: 113.2081744893019
Iterations: 23
Function evaluations: 263
Gradient evaluations: 23
Iteration: 1, Func. Count: 13, Neg. LLF: 115.00373962578766
Iteration: 2, Func. Count: 25, Neg. LLF: 117.57747139146717
Iteration: 3, Func. Count: 39, Neg. LLF: 130.4870104871419
Iteration: 4, Func. Count: 52, Neg. LLF: 136.2223565859714
Iteration: 5, Func. Count: 65, Neg. LLF: 145.16154356006624
Iteration: 6, Func. Count: 78, Neg. LLF: 223.20114870333785
Iteration: 7, Func. Count: 91, Neg. LLF: 125.38731654981929
Iteration: 8, Func. Count: 104, Neg. LLF: 113.78852221604237
Iteration: 9, Func. Count: 117, Neg. LLF: 113.19001866149075
Iteration: 10, Func. Count: 129, Neg. LLF: 113.11439712668289
Iteration: 11, Func. Count: 141, Neg. LLF: 113.10183524766623
Iteration: 12, Func. Count: 153, Neg. LLF: 113.10053951395729
Iteration: 13, Func. Count: 165, Neg. LLF: 113.10028217367187
Iteration: 14, Func. Count: 177, Neg. LLF: 113.10026408049168
Iteration: 15, Func. Count: 189, Neg. LLF: 113.10026212741523
Iteration: 16, Func. Count: 200, Neg. LLF: 113.10026212265961
Optimization terminated successfully (Exit mode 0)
Current function value: 113.10026212741523
Iterations: 16
Function evaluations: 200
Gradient evaluations: 16
Iteration: 1, Func. Count: 6, Neg. LLF: 120.8499360770736
Iteration: 2, Func. Count: 12, Neg. LLF: 118.08465704293023
Iteration: 3, Func. Count: 17, Neg. LLF: 18015.926904312415
Iteration: 4, Func. Count: 24, Neg. LLF: 124.31590441552794
Iteration: 5, Func. Count: 30, Neg. LLF: 117.94000377137559
Iteration: 6, Func. Count: 35, Neg. LLF: 117.9369480057394
Iteration: 7, Func. Count: 40, Neg. LLF: 117.93672852757052
Iteration: 8, Func. Count: 45, Neg. LLF: 117.9367256873895
Iteration: 9, Func. Count: 49, Neg. LLF: 117.93672568733885
Optimization terminated successfully (Exit mode 0)
Current function value: 117.9367256873895
Iterations: 9
Function evaluations: 49
Gradient evaluations: 9
Iteration: 1, Func. Count: 7, Neg. LLF: 166.45008193214042
Iteration: 2, Func. Count: 15, Neg. LLF: 116.8640243108027
Iteration: 3, Func. Count: 21, Neg. LLF: 158.82773188512883
Iteration: 4, Func. Count: 29, Neg. LLF: 116.74686113200221
Iteration: 5, Func. Count: 36, Neg. LLF: 116.71440565131779
Iteration: 6, Func. Count: 42, Neg. LLF: 116.71516878310263
Iteration: 7, Func. Count: 49, Neg. LLF: 116.71319638324508
Iteration: 8, Func. Count: 55, Neg. LLF: 116.71317866631405
Iteration: 9, Func. Count: 60, Neg. LLF: 116.71317870693426
Optimization terminated successfully (Exit mode 0)
Current function value: 116.71317866631405
Iterations: 9
Function evaluations: 60
Gradient evaluations: 9
Iteration: 1, Func. Count: 8, Neg. LLF: 161.88030283477286
Iteration: 2, Func. Count: 18, Neg. LLF: 116.94389135095781
Iteration: 3, Func. Count: 25, Neg. LLF: 116.94328339113574
Iteration: 4, Func. Count: 33, Neg. LLF: 118.24012731782473
Iteration: 5, Func. Count: 41, Neg. LLF: 116.73069287784587
Iteration: 6, Func. Count: 48, Neg. LLF: 116.72992397231752
Iteration: 7, Func. Count: 55, Neg. LLF: 116.72909601714657
Iteration: 8, Func. Count: 62, Neg. LLF: 116.72756509842037
Iteration: 9, Func. Count: 69, Neg. LLF: 116.71420070951446
Iteration: 10, Func. Count: 76, Neg. LLF: 116.71349271914455
Iteration: 11, Func. Count: 83, Neg. LLF: 116.71318025947983
Iteration: 12, Func. Count: 90, Neg. LLF: 116.7382617020456
Optimization terminated successfully (Exit mode 0)
Current function value: 116.71318014096857
Iterations: 13
Function evaluations: 93
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 160.99346704080725
Iteration: 2, Func. Count: 20, Neg. LLF: 116.85779748215383
Iteration: 3, Func. Count: 28, Neg. LLF: 116.85130112846991
Iteration: 4, Func. Count: 37, Neg. LLF: 119.21568700805074
Iteration: 5, Func. Count: 46, Neg. LLF: 116.74612621557665
Iteration: 6, Func. Count: 54, Neg. LLF: 116.74511412674893
Iteration: 7, Func. Count: 62, Neg. LLF: 116.74315627971845
Iteration: 8, Func. Count: 70, Neg. LLF: 116.74210300239241
Iteration: 9, Func. Count: 78, Neg. LLF: 116.79582657397626
Iteration: 10, Func. Count: 87, Neg. LLF: 116.79377070426291
Iteration: 11, Func. Count: 96, Neg. LLF: 116.79294584762128
Iteration: 12, Func. Count: 105, Neg. LLF: 116.7695506032403
Iteration: 13, Func. Count: 114, Neg. LLF: 116.75232422776786
Iteration: 14, Func. Count: 123, Neg. LLF: 116.73489225439567
Iteration: 15, Func. Count: 131, Neg. LLF: 116.7325863344907
Iteration: 16, Func. Count: 139, Neg. LLF: 116.73061551528961
Iteration: 17, Func. Count: 147, Neg. LLF: 116.7291027443878
Iteration: 18, Func. Count: 155, Neg. LLF: 116.72697378090318
Iteration: 19, Func. Count: 163, Neg. LLF: 116.72462167597745
Iteration: 20, Func. Count: 171, Neg. LLF: 116.7203216842569
Iteration: 21, Func. Count: 179, Neg. LLF: 116.7196663295471
Iteration: 22, Func. Count: 187, Neg. LLF: 116.71555849604687
Iteration: 23, Func. Count: 195, Neg. LLF: 116.71321782034049
Iteration: 24, Func. Count: 203, Neg. LLF: 119.8498683890102
Iteration: 25, Func. Count: 214, Neg. LLF: 116.71351533767749
Iteration: 26, Func. Count: 222, Neg. LLF: 116.71317849420915
Optimization terminated successfully (Exit mode 0)
Current function value: 116.71317853282622
Iterations: 27
Function evaluations: 222
Gradient evaluations: 26
Iteration: 1, Func. Count: 10, Neg. LLF: 134.17465426247125
Iteration: 2, Func. Count: 20, Neg. LLF: 116.90363011744465
Iteration: 3, Func. Count: 29, Neg. LLF: 117.89412709591707
Iteration: 4, Func. Count: 39, Neg. LLF: 117.18866425683315
Iteration: 5, Func. Count: 49, Neg. LLF: 116.7608910409552
Iteration: 6, Func. Count: 58, Neg. LLF: 116.75949193704733
Iteration: 7, Func. Count: 67, Neg. LLF: 116.75610503738532
Iteration: 8, Func. Count: 76, Neg. LLF: 116.75238824038395
Iteration: 9, Func. Count: 85, Neg. LLF: 116.74354813835183
Iteration: 10, Func. Count: 94, Neg. LLF: 116.74312437801046
Iteration: 11, Func. Count: 103, Neg. LLF: 116.7429120307072
Iteration: 12, Func. Count: 112, Neg. LLF: 116.74284571445875
Iteration: 13, Func. Count: 121, Neg. LLF: 116.74239242398221
Iteration: 14, Func. Count: 130, Neg. LLF: 116.7410467362267
Iteration: 15, Func. Count: 139, Neg. LLF: 116.74158465609577
Iteration: 16, Func. Count: 149, Neg. LLF: 116.736778351268
Iteration: 17, Func. Count: 158, Neg. LLF: 116.73436001137048
Iteration: 18, Func. Count: 167, Neg. LLF: 116.73248096402934
Iteration: 19, Func. Count: 176, Neg. LLF: 116.73109296480199
Iteration: 20, Func. Count: 185, Neg. LLF: 116.7299571492641
Iteration: 21, Func. Count: 194, Neg. LLF: 116.72851111838676
Iteration: 22, Func. Count: 203, Neg. LLF: 116.72332102813034
Iteration: 23, Func. Count: 212, Neg. LLF: 116.71351673173474
Iteration: 24, Func. Count: 221, Neg. LLF: 137.45311378185303
Iteration: 25, Func. Count: 236, Neg. LLF: 119.76922167827183
Iteration: 26, Func. Count: 248, Neg. LLF: 116.75276968355608
Iteration: 27, Func. Count: 259, Neg. LLF: 116.71496589961819
Iteration: 28, Func. Count: 269, Neg. LLF: 116.71317884576368
Iteration: 29, Func. Count: 277, Neg. LLF: 116.71317880887118
Optimization terminated successfully (Exit mode 0)
Current function value: 116.71317884576368
Iterations: 30
Function evaluations: 277
Gradient evaluations: 29
Iteration: 1, Func. Count: 7, Neg. LLF: 120.82283825283062
Iteration: 2, Func. Count: 14, Neg. LLF: 118.31547242853586
Iteration: 3, Func. Count: 20, Neg. LLF: 117.97461102270516
Iteration: 4, Func. Count: 26, Neg. LLF: 171.92557536978057
Iteration: 5, Func. Count: 35, Neg. LLF: 117.93721708885684
Iteration: 6, Func. Count: 41, Neg. LLF: 117.93673324821205
Iteration: 7, Func. Count: 47, Neg. LLF: 117.9367256319067
Iteration: 8, Func. Count: 52, Neg. LLF: 117.9367256928192
Optimization terminated successfully (Exit mode 0)
Current function value: 117.9367256319067
Iterations: 8
Function evaluations: 52
Gradient evaluations: 8
Iteration: 1, Func. Count: 8, Neg. LLF: 167.52738394315605
Iteration: 2, Func. Count: 18, Neg. LLF: 117.27030142980041
Iteration: 3, Func. Count: 25, Neg. LLF: 116.8434088701874
Iteration: 4, Func. Count: 32, Neg. LLF: 120.02383538875272
Iteration: 5, Func. Count: 41, Neg. LLF: 116.70966037647706
Iteration: 6, Func. Count: 48, Neg. LLF: 116.81778554596453
Iteration: 7, Func. Count: 56, Neg. LLF: 116.68799291921749
Iteration: 8, Func. Count: 63, Neg. LLF: 116.6879534075833
Iteration: 9, Func. Count: 70, Neg. LLF: 116.68795262867292
Optimization terminated successfully (Exit mode 0)
Current function value: 116.68795262867292
Iterations: 9
Function evaluations: 70
Gradient evaluations: 9
Iteration: 1, Func. Count: 9, Neg. LLF: 162.01170550703534
Iteration: 2, Func. Count: 20, Neg. LLF: 116.9558457889777
Iteration: 3, Func. Count: 28, Neg. LLF: 116.95173040483783
Iteration: 4, Func. Count: 37, Neg. LLF: 119.1988138038532
Iteration: 5, Func. Count: 46, Neg. LLF: 116.73053393934214
Iteration: 6, Func. Count: 54, Neg. LLF: 116.74245396168291
Iteration: 7, Func. Count: 63, Neg. LLF: 116.72381073838571
Iteration: 8, Func. Count: 71, Neg. LLF: 116.72125450949666
Iteration: 9, Func. Count: 79, Neg. LLF: 116.70025135804457
Iteration: 10, Func. Count: 87, Neg. LLF: 116.69459845503074
Iteration: 11, Func. Count: 95, Neg. LLF: 116.68850256061542
Iteration: 12, Func. Count: 103, Neg. LLF: 116.6879703584105
Iteration: 13, Func. Count: 111, Neg. LLF: 116.68778682393798
Iteration: 14, Func. Count: 119, Neg. LLF: 116.68784865797129
Iteration: 15, Func. Count: 137, Neg. LLF: 116.68795981393643
Iteration: 16, Func. Count: 146, Neg. LLF: 116.6876593212958
Iteration: 17, Func. Count: 164, Neg. LLF: 116.68764204367349
Iteration: 18, Func. Count: 182, Neg. LLF: 117.14718955770941
Iteration: 19, Func. Count: 193, Neg. LLF: 116.68796818327536
Iteration: 20, Func. Count: 202, Neg. LLF: 116.68795924088067
Iteration: 21, Func. Count: 211, Neg. LLF: 116.68795265054526
Iteration: 22, Func. Count: 218, Neg. LLF: 116.68795257507465
Optimization terminated successfully (Exit mode 0)
Current function value: 116.68795265054526
Iterations: 23
Function evaluations: 218
Gradient evaluations: 22
Iteration: 1, Func. Count: 10, Neg. LLF: 159.96991175417457
Iteration: 2, Func. Count: 22, Neg. LLF: 116.86800240005314
Iteration: 3, Func. Count: 31, Neg. LLF: 116.80349556671058
Iteration: 4, Func. Count: 40, Neg. LLF: 116.1415625979347
Iteration: 5, Func. Count: 49, Neg. LLF: 157.12350093160248
Iteration: 6, Func. Count: 59, Neg. LLF: 131.72650599599842
Iteration: 7, Func. Count: 70, Neg. LLF: 115.78461058304393
Iteration: 8, Func. Count: 79, Neg. LLF: 115.69016470729149
Iteration: 9, Func. Count: 88, Neg. LLF: 115.60631576490653
Iteration: 10, Func. Count: 97, Neg. LLF: 115.53527999432566
Iteration: 11, Func. Count: 106, Neg. LLF: 115.51892312194397
Iteration: 12, Func. Count: 115, Neg. LLF: 115.5165196182166
Iteration: 13, Func. Count: 124, Neg. LLF: 115.51645263179748
Iteration: 14, Func. Count: 133, Neg. LLF: 115.51645049890391
Iteration: 15, Func. Count: 141, Neg. LLF: 115.51645045982639
Optimization terminated successfully (Exit mode 0)
Current function value: 115.51645049890391
Iterations: 15
Function evaluations: 141
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 134.09546623309663
Iteration: 2, Func. Count: 22, Neg. LLF: 116.92929309525205
Iteration: 3, Func. Count: 32, Neg. LLF: 117.66636626892478
Iteration: 4, Func. Count: 43, Neg. LLF: 116.84698033671492
Iteration: 5, Func. Count: 54, Neg. LLF: 116.74858142395438
Iteration: 6, Func. Count: 64, Neg. LLF: 116.69774145469634
Iteration: 7, Func. Count: 74, Neg. LLF: 116.66179314356602
Iteration: 8, Func. Count: 84, Neg. LLF: 116.45719463138563
Iteration: 9, Func. Count: 94, Neg. LLF: 115.68644158241744
Iteration: 10, Func. Count: 104, Neg. LLF: 115.59723524978511
Iteration: 11, Func. Count: 114, Neg. LLF: 115.58295921612641
Iteration: 12, Func. Count: 124, Neg. LLF: 115.56340647915454
Iteration: 13, Func. Count: 134, Neg. LLF: 115.5380804298912
Iteration: 14, Func. Count: 144, Neg. LLF: 115.52278854932403
Iteration: 15, Func. Count: 154, Neg. LLF: 115.51735064137166
Iteration: 16, Func. Count: 164, Neg. LLF: 115.5165956957587
Iteration: 17, Func. Count: 174, Neg. LLF: 115.51646907447088
Iteration: 18, Func. Count: 184, Neg. LLF: 115.51645025214735
Iteration: 19, Func. Count: 194, Neg. LLF: 115.51644946839798
Optimization terminated successfully (Exit mode 0)
Current function value: 115.5164497205828
Iterations: 19
Function evaluations: 195
Gradient evaluations: 19
Iteration: 1, Func. Count: 8, Neg. LLF: 127.15509824466294
Iteration: 2, Func. Count: 16, Neg. LLF: 123.21742658412393
Iteration: 3, Func. Count: 24, Neg. LLF: 118.27358914997039
Iteration: 4, Func. Count: 31, Neg. LLF: 130.5685678868915
Iteration: 5, Func. Count: 39, Neg. LLF: 118.06906849129564
Iteration: 6, Func. Count: 46, Neg. LLF: 117.92229704381037
Iteration: 7, Func. Count: 53, Neg. LLF: 117.91434663053066
Iteration: 8, Func. Count: 60, Neg. LLF: 117.91317021768161
Iteration: 9, Func. Count: 67, Neg. LLF: 117.91312526241465
Iteration: 10, Func. Count: 74, Neg. LLF: 117.9131240083185
Iteration: 11, Func. Count: 80, Neg. LLF: 117.91312396171877
Optimization terminated successfully (Exit mode 0)
Current function value: 117.9131240083185
Iterations: 11
Function evaluations: 80
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 167.19832385883808
Iteration: 2, Func. Count: 19, Neg. LLF: 116.84877000322281
Iteration: 3, Func. Count: 27, Neg. LLF: 2922.0187708775566
Iteration: 4, Func. Count: 37, Neg. LLF: 116.64722056481807
Iteration: 5, Func. Count: 46, Neg. LLF: 116.60647829944342
Iteration: 6, Func. Count: 55, Neg. LLF: 116.641092372726
Iteration: 7, Func. Count: 64, Neg. LLF: 116.5812363040544
Iteration: 8, Func. Count: 72, Neg. LLF: 116.58122203451624
Iteration: 9, Func. Count: 80, Neg. LLF: 116.58122051436848
Iteration: 10, Func. Count: 88, Neg. LLF: 116.58122089789684
Optimization terminated successfully (Exit mode 0)
Current function value: 116.58122051475495
Iterations: 10
Function evaluations: 98
Gradient evaluations: 10
Iteration: 1, Func. Count: 10, Neg. LLF: 161.73741173218002
Iteration: 2, Func. Count: 22, Neg. LLF: 116.95624976531276
Iteration: 3, Func. Count: 31, Neg. LLF: 116.35745903164515
Iteration: 4, Func. Count: 40, Neg. LLF: 132.18502066526372
Iteration: 5, Func. Count: 51, Neg. LLF: 115.89071395871406
Iteration: 6, Func. Count: 61, Neg. LLF: 115.54798499974328
Iteration: 7, Func. Count: 70, Neg. LLF: 115.53351285564202
Iteration: 8, Func. Count: 79, Neg. LLF: 115.48578270442188
Iteration: 9, Func. Count: 88, Neg. LLF: 115.4705774228272
Iteration: 10, Func. Count: 97, Neg. LLF: 115.4696607000401
Iteration: 11, Func. Count: 106, Neg. LLF: 115.4696371797728
Iteration: 12, Func. Count: 115, Neg. LLF: 115.4697108695778
Optimization terminated successfully (Exit mode 0)
Current function value: 115.46963738009333
Iterations: 13
Function evaluations: 117
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 159.9491880538202
Iteration: 2, Func. Count: 24, Neg. LLF: 116.86704484749559
Iteration: 3, Func. Count: 34, Neg. LLF: 116.86967588229791
Iteration: 4, Func. Count: 45, Neg. LLF: 118.45814913889646
Iteration: 5, Func. Count: 56, Neg. LLF: 117.27018013158222
Iteration: 6, Func. Count: 67, Neg. LLF: 116.27058407883068
Iteration: 7, Func. Count: 77, Neg. LLF: 116.24028278014778
Iteration: 8, Func. Count: 87, Neg. LLF: 116.22882435700642
Iteration: 9, Func. Count: 97, Neg. LLF: 116.22470274575754
Iteration: 10, Func. Count: 107, Neg. LLF: 116.22386203759075
Iteration: 11, Func. Count: 117, Neg. LLF: 116.22361198576797
Iteration: 12, Func. Count: 127, Neg. LLF: 116.22358847537801
Iteration: 13, Func. Count: 136, Neg. LLF: 116.2235883795288
Optimization terminated successfully (Exit mode 0)
Current function value: 116.22358847537801
Iterations: 13
Function evaluations: 136
Gradient evaluations: 13
Iteration: 1, Func. Count: 12, Neg. LLF: 134.50033684342634
Iteration: 2, Func. Count: 24, Neg. LLF: 116.91096247529251
Iteration: 3, Func. Count: 35, Neg. LLF: 116.8169962767491
Iteration: 4, Func. Count: 46, Neg. LLF: 116.93112809833634
Iteration: 5, Func. Count: 58, Neg. LLF: 117.37751840754056
Iteration: 6, Func. Count: 71, Neg. LLF: 120.31258859963322
Iteration: 7, Func. Count: 83, Neg. LLF: 116.6838815518968
Iteration: 8, Func. Count: 94, Neg. LLF: 116.64601255049841
Iteration: 9, Func. Count: 105, Neg. LLF: 116.1902834211272
Iteration: 10, Func. Count: 116, Neg. LLF: 116.18649847595795
Iteration: 11, Func. Count: 128, Neg. LLF: 116.11747452179628
Iteration: 12, Func. Count: 140, Neg. LLF: 115.83752990558862
Iteration: 13, Func. Count: 151, Neg. LLF: 115.80283501901759
Iteration: 14, Func. Count: 163, Neg. LLF: 115.66531133249275
Iteration: 15, Func. Count: 174, Neg. LLF: 115.60494788676797
Iteration: 16, Func. Count: 185, Neg. LLF: 115.53158090993054
Iteration: 17, Func. Count: 196, Neg. LLF: 115.51855054057023
Iteration: 18, Func. Count: 207, Neg. LLF: 115.51650875256743
Iteration: 19, Func. Count: 218, Neg. LLF: 115.51645335858015
Iteration: 20, Func. Count: 229, Neg. LLF: 115.51741946606464
Iteration: 21, Func. Count: 242, Neg. LLF: 115.51645647776537
Optimization terminated successfully (Exit mode 0)
Current function value: 115.51645240334823
Iterations: 22
Function evaluations: 243
Gradient evaluations: 21
Iteration: 1, Func. Count: 9, Neg. LLF: 127.68767060384644
Iteration: 2, Func. Count: 18, Neg. LLF: 127.69811415326429
Iteration: 3, Func. Count: 27, Neg. LLF: 118.16016227374122
Iteration: 4, Func. Count: 35, Neg. LLF: 118.97720692569182
Iteration: 5, Func. Count: 45, Neg. LLF: 118.12532015783758
Iteration: 6, Func. Count: 54, Neg. LLF: 117.93381753006999
Iteration: 7, Func. Count: 62, Neg. LLF: 117.91382246603175
Iteration: 8, Func. Count: 70, Neg. LLF: 117.91312782177265
Iteration: 9, Func. Count: 78, Neg. LLF: 117.91312401372949
Iteration: 10, Func. Count: 85, Neg. LLF: 117.91312405345616
Optimization terminated successfully (Exit mode 0)
Current function value: 117.91312401372949
Iterations: 10
Function evaluations: 85
Gradient evaluations: 10
Iteration: 1, Func. Count: 10, Neg. LLF: 127.42804573555212
Iteration: 2, Func. Count: 22, Neg. LLF: 164.91077953206482
Iteration: 3, Func. Count: 33, Neg. LLF: 117.01856734877795
Iteration: 4, Func. Count: 42, Neg. LLF: 116.57730965148276
Iteration: 5, Func. Count: 51, Neg. LLF: 117.80376329428483
Iteration: 6, Func. Count: 61, Neg. LLF: 116.59218236487142
Iteration: 7, Func. Count: 71, Neg. LLF: 116.46994329397575
Iteration: 8, Func. Count: 81, Neg. LLF: 116.4591206997007
Iteration: 9, Func. Count: 89, Neg. LLF: 116.45912057404787
Optimization terminated successfully (Exit mode 0)
Current function value: 116.4591206997007
Iterations: 9
Function evaluations: 89
Gradient evaluations: 9
Iteration: 1, Func. Count: 11, Neg. LLF: 161.6810962560475
Iteration: 2, Func. Count: 24, Neg. LLF: 122.86662627415542
Iteration: 3, Func. Count: 35, Neg. LLF: 116.65046526447436
Iteration: 4, Func. Count: 45, Neg. LLF: 117.22420809796206
Iteration: 5, Func. Count: 56, Neg. LLF: 116.60163796986318
Iteration: 6, Func. Count: 66, Neg. LLF: 116.57986813124178
Iteration: 7, Func. Count: 76, Neg. LLF: 116.57467885267701
Iteration: 8, Func. Count: 86, Neg. LLF: 116.56692943398272
Iteration: 9, Func. Count: 96, Neg. LLF: 116.49372123018165
Iteration: 10, Func. Count: 106, Neg. LLF: 116.47629533968852
Iteration: 11, Func. Count: 116, Neg. LLF: 116.45951145951429
Iteration: 12, Func. Count: 126, Neg. LLF: 116.45919318461057
Iteration: 13, Func. Count: 136, Neg. LLF: 116.45911686443702
Iteration: 14, Func. Count: 146, Neg. LLF: 116.4591210066414
Iteration: 15, Func. Count: 156, Neg. LLF: 116.459117489329
Iteration: 16, Func. Count: 166, Neg. LLF: 116.45911278722691
Optimization terminated successfully (Exit mode 0)
Current function value: 116.45911748474329
Iterations: 16
Function evaluations: 176
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 160.61313644283112
Iteration: 2, Func. Count: 26, Neg. LLF: 116.87771259500353
Iteration: 3, Func. Count: 37, Neg. LLF: 116.86234338904518
Iteration: 4, Func. Count: 49, Neg. LLF: 118.55677368716452
Iteration: 5, Func. Count: 61, Neg. LLF: 117.09759470559943
Iteration: 6, Func. Count: 73, Neg. LLF: 116.25742406590103
Iteration: 7, Func. Count: 84, Neg. LLF: 116.24610475165888
Iteration: 8, Func. Count: 95, Neg. LLF: 116.22709239236995
Iteration: 9, Func. Count: 106, Neg. LLF: 116.22449397262159
Iteration: 10, Func. Count: 117, Neg. LLF: 116.22379424398953
Iteration: 11, Func. Count: 128, Neg. LLF: 116.22361204517674
Iteration: 12, Func. Count: 139, Neg. LLF: 116.22358847562202
Iteration: 13, Func. Count: 149, Neg. LLF: 116.22358837977639
Optimization terminated successfully (Exit mode 0)
Current function value: 116.22358847562202
Iterations: 13
Function evaluations: 149
Gradient evaluations: 13
Iteration: 1, Func. Count: 13, Neg. LLF: 134.5835100427695
Iteration: 2, Func. Count: 26, Neg. LLF: 116.90790918868312
Iteration: 3, Func. Count: 38, Neg. LLF: 116.84252266675709
Iteration: 4, Func. Count: 50, Neg. LLF: 116.94573800704894
Iteration: 5, Func. Count: 63, Neg. LLF: 118.36629132804285
Iteration: 6, Func. Count: 77, Neg. LLF: 118.74139130850799
Iteration: 7, Func. Count: 90, Neg. LLF: 116.73651819336837
Iteration: 8, Func. Count: 102, Neg. LLF: 116.73518766398797
Iteration: 9, Func. Count: 114, Neg. LLF: 116.72888559067474
Iteration: 10, Func. Count: 126, Neg. LLF: 116.35593553176848
Iteration: 11, Func. Count: 138, Neg. LLF: 116.16353119150332
Iteration: 12, Func. Count: 150, Neg. LLF: 269.73755264642955
Iteration: 13, Func. Count: 163, Neg. LLF: 115.63218487659121
Iteration: 14, Func. Count: 175, Neg. LLF: 115.55470186961514
Iteration: 15, Func. Count: 187, Neg. LLF: 115.54367157551944
Iteration: 16, Func. Count: 199, Neg. LLF: 115.53127156931711
Iteration: 17, Func. Count: 211, Neg. LLF: 115.52240471691543
Iteration: 18, Func. Count: 223, Neg. LLF: 115.51754050422461
Iteration: 19, Func. Count: 235, Neg. LLF: 115.51656158721129
Iteration: 20, Func. Count: 247, Neg. LLF: 115.51645343266637
Iteration: 21, Func. Count: 259, Neg. LLF: 115.5164504970684
Iteration: 22, Func. Count: 270, Neg. LLF: 115.51645050910054
Optimization terminated successfully (Exit mode 0)
Current function value: 115.5164504970684
Iterations: 22
Function evaluations: 270
Gradient evaluations: 22
Iteration: 1, Func. Count: 10, Neg. LLF: 131.0346209226579
Iteration: 2, Func. Count: 20, Neg. LLF: 220.39311210778516
Iteration: 3, Func. Count: 30, Neg. LLF: 120.53622388114435
Iteration: 4, Func. Count: 40, Neg. LLF: 5764519.082612762
Iteration: 5, Func. Count: 50, Neg. LLF: 117.05685328102065
Iteration: 6, Func. Count: 60, Neg. LLF: 117.2847046137587
Iteration: 7, Func. Count: 70, Neg. LLF: 114.9968024538032
Iteration: 8, Func. Count: 80, Neg. LLF: 114.56360742914401
Iteration: 9, Func. Count: 90, Neg. LLF: 115.35697822673671
Iteration: 10, Func. Count: 101, Neg. LLF: 114.1869713980952
Iteration: 11, Func. Count: 110, Neg. LLF: 114.16179882074597
Iteration: 12, Func. Count: 119, Neg. LLF: 114.16327600371399
Iteration: 13, Func. Count: 129, Neg. LLF: 114.15911366460405
Iteration: 14, Func. Count: 138, Neg. LLF: 114.15908789121207
Iteration: 15, Func. Count: 147, Neg. LLF: 114.15907108577554
Iteration: 16, Func. Count: 156, Neg. LLF: 114.15903326053609
Iteration: 17, Func. Count: 165, Neg. LLF: 114.1590204002387
Iteration: 18, Func. Count: 174, Neg. LLF: 114.15901829378845
Iteration: 19, Func. Count: 182, Neg. LLF: 114.15901829378929
Optimization terminated successfully (Exit mode 0)
Current function value: 114.15901829378845
Iterations: 19
Function evaluations: 182
Gradient evaluations: 19
Iteration: 1, Func. Count: 11, Neg. LLF: 115.89034756564475
Iteration: 2, Func. Count: 25, Neg. LLF: 139.71646357294483
Iteration: 3, Func. Count: 36, Neg. LLF: 124.5269738293321
Iteration: 4, Func. Count: 47, Neg. LLF: 148.0514458841356
Iteration: 5, Func. Count: 58, Neg. LLF: 114.87551399206107
Iteration: 6, Func. Count: 69, Neg. LLF: 116.13992213513959
Iteration: 7, Func. Count: 80, Neg. LLF: 113.27474403900104
Iteration: 8, Func. Count: 91, Neg. LLF: 112.56826221401042
Iteration: 9, Func. Count: 101, Neg. LLF: 112.51098855914555
Iteration: 10, Func. Count: 111, Neg. LLF: 112.50037945583563
Iteration: 11, Func. Count: 121, Neg. LLF: 112.48176277404522
Iteration: 12, Func. Count: 131, Neg. LLF: 112.47414924774714
Iteration: 13, Func. Count: 141, Neg. LLF: 112.46270160144164
Iteration: 14, Func. Count: 151, Neg. LLF: 112.44826438792214
Iteration: 15, Func. Count: 161, Neg. LLF: 112.43254148856062
Iteration: 16, Func. Count: 171, Neg. LLF: 112.42120350465187
Iteration: 17, Func. Count: 181, Neg. LLF: 112.41695206009464
Iteration: 18, Func. Count: 191, Neg. LLF: 112.41660799369286
Iteration: 19, Func. Count: 201, Neg. LLF: 112.41658236995968
Iteration: 20, Func. Count: 211, Neg. LLF: 112.41658101899277
Iteration: 21, Func. Count: 220, Neg. LLF: 112.41658101898757
Optimization terminated successfully (Exit mode 0)
Current function value: 112.41658101899277
Iterations: 21
Function evaluations: 220
Gradient evaluations: 21
Iteration: 1, Func. Count: 12, Neg. LLF: 117.01979812568247
Iteration: 2, Func. Count: 27, Neg. LLF: 200.1706417776354
Iteration: 3, Func. Count: 39, Neg. LLF: 157.66510935110966
Iteration: 4, Func. Count: 51, Neg. LLF: 139.93419465556528
Iteration: 5, Func. Count: 63, Neg. LLF: 117.87503390010785
Iteration: 6, Func. Count: 75, Neg. LLF: 195.54453005447073
Iteration: 7, Func. Count: 87, Neg. LLF: 116.8934771277428
Iteration: 8, Func. Count: 99, Neg. LLF: 114.11765135630633
Iteration: 9, Func. Count: 110, Neg. LLF: 113.63040288072337
Iteration: 10, Func. Count: 121, Neg. LLF: 112.9260063739218
Iteration: 11, Func. Count: 132, Neg. LLF: 113.18171333137003
Iteration: 12, Func. Count: 144, Neg. LLF: 112.64597305684129
Iteration: 13, Func. Count: 155, Neg. LLF: 112.60162660717383
Iteration: 14, Func. Count: 166, Neg. LLF: 112.55323831256888
Iteration: 15, Func. Count: 177, Neg. LLF: 112.52092788949109
Iteration: 16, Func. Count: 188, Neg. LLF: 112.51253951175707
Iteration: 17, Func. Count: 199, Neg. LLF: 112.49979038170846
Iteration: 18, Func. Count: 210, Neg. LLF: 112.47866314067046
Iteration: 19, Func. Count: 221, Neg. LLF: 112.45303832121604
Iteration: 20, Func. Count: 232, Neg. LLF: 112.42980002143877
Iteration: 21, Func. Count: 243, Neg. LLF: 112.41792727801354
Iteration: 22, Func. Count: 254, Neg. LLF: 112.41672973630168
Iteration: 23, Func. Count: 265, Neg. LLF: 112.41659722650796
Iteration: 24, Func. Count: 276, Neg. LLF: 112.41658110249986
Iteration: 25, Func. Count: 286, Neg. LLF: 112.41658133051968
Optimization terminated successfully (Exit mode 0)
Current function value: 112.41658110249986
Iterations: 25
Function evaluations: 286
Gradient evaluations: 25
Iteration: 1, Func. Count: 13, Neg. LLF: 117.8806743485849
Iteration: 2, Func. Count: 29, Neg. LLF: 5631134.820502323
Iteration: 3, Func. Count: 42, Neg. LLF: 206.0511918542285
Iteration: 4, Func. Count: 55, Neg. LLF: 146.12017845693038
Iteration: 5, Func. Count: 68, Neg. LLF: 118.45574257431484
Iteration: 6, Func. Count: 81, Neg. LLF: 122.53115641095546
Iteration: 7, Func. Count: 94, Neg. LLF: 113.81273017061244
Iteration: 8, Func. Count: 106, Neg. LLF: 113.95287226475516
Iteration: 9, Func. Count: 119, Neg. LLF: 131.53589467682517
Iteration: 10, Func. Count: 133, Neg. LLF: 112.68848430785171
Iteration: 11, Func. Count: 145, Neg. LLF: 112.64275801878243
Iteration: 12, Func. Count: 157, Neg. LLF: 112.61551396439377
Iteration: 13, Func. Count: 169, Neg. LLF: 112.59167286834348
Iteration: 14, Func. Count: 181, Neg. LLF: 112.55908517871957
Iteration: 15, Func. Count: 193, Neg. LLF: 112.51806171668537
Iteration: 16, Func. Count: 205, Neg. LLF: 112.47504105162342
Iteration: 17, Func. Count: 217, Neg. LLF: 112.4373369426619
Iteration: 18, Func. Count: 229, Neg. LLF: 112.4186562091238
Iteration: 19, Func. Count: 241, Neg. LLF: 112.41680679475802
Iteration: 20, Func. Count: 253, Neg. LLF: 112.416610157448
Iteration: 21, Func. Count: 265, Neg. LLF: 112.41658144000574
Iteration: 22, Func. Count: 276, Neg. LLF: 112.41658145990405
Optimization terminated successfully (Exit mode 0)
Current function value: 112.41658144000574
Iterations: 22
Function evaluations: 276
Gradient evaluations: 22
Iteration: 1, Func. Count: 14, Neg. LLF: 115.08387913147718
Iteration: 2, Func. Count: 27, Neg. LLF: 116.14631909846156
Iteration: 3, Func. Count: 42, Neg. LLF: 165.74002801524674
Iteration: 4, Func. Count: 57, Neg. LLF: 145.07940011938757
Iteration: 5, Func. Count: 71, Neg. LLF: 7525185.352177209
Iteration: 6, Func. Count: 85, Neg. LLF: 118.48441450933056
Iteration: 7, Func. Count: 99, Neg. LLF: 169.97976794089757
Iteration: 8, Func. Count: 113, Neg. LLF: 136.6114711827948
Iteration: 9, Func. Count: 128, Neg. LLF: 114.62313772263428
Iteration: 10, Func. Count: 142, Neg. LLF: 112.33639203286299
Iteration: 11, Func. Count: 155, Neg. LLF: 112.32860195412053
Iteration: 12, Func. Count: 169, Neg. LLF: 112.26561843016407
Iteration: 13, Func. Count: 182, Neg. LLF: 112.23057343729707
Iteration: 14, Func. Count: 195, Neg. LLF: 112.21876357557258
Iteration: 15, Func. Count: 208, Neg. LLF: 112.21558587204845
Iteration: 16, Func. Count: 221, Neg. LLF: 112.21289317729602
Iteration: 17, Func. Count: 234, Neg. LLF: 112.21090074979517
Iteration: 18, Func. Count: 247, Neg. LLF: 112.21056176643245
Iteration: 19, Func. Count: 260, Neg. LLF: 112.2105440606997
Iteration: 20, Func. Count: 273, Neg. LLF: 112.21054337834472
Optimization terminated successfully (Exit mode 0)
Current function value: 112.21054337834472
Iterations: 20
Function evaluations: 273
Gradient evaluations: 20
Iteration: 1, Func. Count: 7, Neg. LLF: 126.39838597429447
Iteration: 2, Func. Count: 15, Neg. LLF: 119.20295155350084
Iteration: 3, Func. Count: 21, Neg. LLF: 120.76849470341926
Iteration: 4, Func. Count: 28, Neg. LLF: 141.03115719212198
Iteration: 5, Func. Count: 37, Neg. LLF: 125.8635992352096
Iteration: 6, Func. Count: 46, Neg. LLF: 117.67031768710413
Iteration: 7, Func. Count: 52, Neg. LLF: 117.64665215625533
Iteration: 8, Func. Count: 58, Neg. LLF: 117.64606379054426
Iteration: 9, Func. Count: 64, Neg. LLF: 117.6460472611452
Iteration: 10, Func. Count: 70, Neg. LLF: 117.64604343560447
Iteration: 11, Func. Count: 75, Neg. LLF: 117.64604343561393
Optimization terminated successfully (Exit mode 0)
Current function value: 117.64604343560447
Iterations: 11
Function evaluations: 75
Gradient evaluations: 11
Iteration: 1, Func. Count: 8, Neg. LLF: 166.33196670080423
Iteration: 2, Func. Count: 17, Neg. LLF: 116.88384060339435
Iteration: 3, Func. Count: 24, Neg. LLF: 6818320.677311995
Iteration: 4, Func. Count: 33, Neg. LLF: 116.81725560900912
Iteration: 5, Func. Count: 41, Neg. LLF: 116.71403689961049
Iteration: 6, Func. Count: 48, Neg. LLF: 116.7131993262236
Iteration: 7, Func. Count: 55, Neg. LLF: 116.71317892864707
Iteration: 8, Func. Count: 61, Neg. LLF: 116.71317888826518
Optimization terminated successfully (Exit mode 0)
Current function value: 116.71317892864707
Iterations: 8
Function evaluations: 61
Gradient evaluations: 8
Iteration: 1, Func. Count: 9, Neg. LLF: 161.32076513952939
Iteration: 2, Func. Count: 20, Neg. LLF: 116.93855636902433
Iteration: 3, Func. Count: 28, Neg. LLF: 116.95939889035694
Iteration: 4, Func. Count: 37, Neg. LLF: 118.4165315799501
Iteration: 5, Func. Count: 46, Neg. LLF: 116.73061084132506
Iteration: 6, Func. Count: 54, Neg. LLF: 116.72972189207098
Iteration: 7, Func. Count: 62, Neg. LLF: 116.72908335948209
Iteration: 8, Func. Count: 70, Neg. LLF: 116.72732701356173
Iteration: 9, Func. Count: 78, Neg. LLF: 116.71477415794408
Iteration: 10, Func. Count: 86, Neg. LLF: 116.71344649987469
Iteration: 11, Func. Count: 94, Neg. LLF: 116.71317943429437
Iteration: 12, Func. Count: 101, Neg. LLF: 116.71317939228379
Optimization terminated successfully (Exit mode 0)
Current function value: 116.71317943429437
Iterations: 12
Function evaluations: 101
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 159.46634961528702
Iteration: 2, Func. Count: 22, Neg. LLF: 116.84995940044031
Iteration: 3, Func. Count: 31, Neg. LLF: 116.78616947220696
Iteration: 4, Func. Count: 40, Neg. LLF: 117.90220970363532
Iteration: 5, Func. Count: 50, Neg. LLF: 116.75481869748977
Iteration: 6, Func. Count: 59, Neg. LLF: 116.74661392179613
Iteration: 7, Func. Count: 68, Neg. LLF: 116.74566568853811
Iteration: 8, Func. Count: 77, Neg. LLF: 116.74398318490837
Iteration: 9, Func. Count: 86, Neg. LLF: 116.74305892246757
Iteration: 10, Func. Count: 95, Neg. LLF: 116.74157756815977
Iteration: 11, Func. Count: 104, Neg. LLF: 116.73367364723644
Iteration: 12, Func. Count: 113, Neg. LLF: 116.73186606485893
Iteration: 13, Func. Count: 122, Neg. LLF: 116.73035926507713
Iteration: 14, Func. Count: 131, Neg. LLF: 116.72913596632864
Iteration: 15, Func. Count: 140, Neg. LLF: 116.72683605508612
Iteration: 16, Func. Count: 149, Neg. LLF: 116.71318438025568
Iteration: 17, Func. Count: 158, Neg. LLF: 116.98545360295581
Iteration: 18, Func. Count: 170, Neg. LLF: 116.71342735280557
Iteration: 19, Func. Count: 179, Neg. LLF: 116.71317849264801
Optimization terminated successfully (Exit mode 0)
Current function value: 116.71317853135287
Iterations: 20
Function evaluations: 179
Gradient evaluations: 19
Iteration: 1, Func. Count: 11, Neg. LLF: 123.01653085043111
Iteration: 2, Func. Count: 24, Neg. LLF: 121.24352348439628
Iteration: 3, Func. Count: 35, Neg. LLF: 117.57946798936375
Iteration: 4, Func. Count: 46, Neg. LLF: 116.90796061998299
Iteration: 5, Func. Count: 56, Neg. LLF: 117.6105533538465
Iteration: 6, Func. Count: 67, Neg. LLF: 116.77224646085155
Iteration: 7, Func. Count: 77, Neg. LLF: 116.76386091611231
Iteration: 8, Func. Count: 87, Neg. LLF: 116.76309595193311
Iteration: 9, Func. Count: 97, Neg. LLF: 116.76092185670657
Iteration: 10, Func. Count: 107, Neg. LLF: 116.7589008107034
Iteration: 11, Func. Count: 117, Neg. LLF: 116.75626928489568
Iteration: 12, Func. Count: 127, Neg. LLF: 116.75802568443112
Iteration: 13, Func. Count: 139, Neg. LLF: 116.75349961185144
Iteration: 14, Func. Count: 149, Neg. LLF: 116.75147988430814
Iteration: 15, Func. Count: 159, Neg. LLF: 116.74994048600234
Iteration: 16, Func. Count: 169, Neg. LLF: 116.74308063368062
Iteration: 17, Func. Count: 179, Neg. LLF: 116.73772249703676
Iteration: 18, Func. Count: 189, Neg. LLF: 116.73168148576677
Iteration: 19, Func. Count: 199, Neg. LLF: 116.73138967488123
Iteration: 20, Func. Count: 209, Neg. LLF: 116.73056859550208
Iteration: 21, Func. Count: 219, Neg. LLF: 116.729066577784
Iteration: 22, Func. Count: 229, Neg. LLF: 116.726939865092
Iteration: 23, Func. Count: 239, Neg. LLF: 116.71320019924399
Iteration: 24, Func. Count: 249, Neg. LLF: 117.6645264529368
Iteration: 25, Func. Count: 262, Neg. LLF: 116.71402937685784
Iteration: 26, Func. Count: 272, Neg. LLF: 116.71317849690385
Optimization terminated successfully (Exit mode 0)
Current function value: 116.71317853368538
Iterations: 27
Function evaluations: 272
Gradient evaluations: 26
Iteration: 1, Func. Count: 8, Neg. LLF: 126.21972293751229
Iteration: 2, Func. Count: 17, Neg. LLF: 118.76318054659906
Iteration: 3, Func. Count: 24, Neg. LLF: 122.07306498954293
Iteration: 4, Func. Count: 32, Neg. LLF: 141.9898024346167
Iteration: 5, Func. Count: 42, Neg. LLF: 126.28219576796954
Iteration: 6, Func. Count: 52, Neg. LLF: 117.66762138074932
Iteration: 7, Func. Count: 59, Neg. LLF: 117.64662304445818
Iteration: 8, Func. Count: 66, Neg. LLF: 117.64607314879021
Iteration: 9, Func. Count: 73, Neg. LLF: 117.6460493911443
Iteration: 10, Func. Count: 80, Neg. LLF: 117.64604342214174
Iteration: 11, Func. Count: 86, Neg. LLF: 117.64604336367353
Optimization terminated successfully (Exit mode 0)
Current function value: 117.64604342214174
Iterations: 11
Function evaluations: 86
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 167.41549868776286
Iteration: 2, Func. Count: 20, Neg. LLF: 117.2896565401968
Iteration: 3, Func. Count: 28, Neg. LLF: 116.86245027833377
Iteration: 4, Func. Count: 36, Neg. LLF: 119.80260510261513
Iteration: 5, Func. Count: 46, Neg. LLF: 116.74981747509146
Iteration: 6, Func. Count: 54, Neg. LLF: 116.82415863842816
Iteration: 7, Func. Count: 63, Neg. LLF: 116.71623992958395
Iteration: 8, Func. Count: 72, Neg. LLF: 116.68796541666003
Iteration: 9, Func. Count: 80, Neg. LLF: 116.68795261299357
Iteration: 10, Func. Count: 87, Neg. LLF: 116.68795253595444
Optimization terminated successfully (Exit mode 0)
Current function value: 116.68795261299357
Iterations: 10
Function evaluations: 87
Gradient evaluations: 10
Iteration: 1, Func. Count: 10, Neg. LLF: 161.45591597484417
Iteration: 2, Func. Count: 22, Neg. LLF: 116.95091388287628
Iteration: 3, Func. Count: 31, Neg. LLF: 116.94684023941477
Iteration: 4, Func. Count: 41, Neg. LLF: 119.81392646525701
Iteration: 5, Func. Count: 51, Neg. LLF: 116.72723090264147
Iteration: 6, Func. Count: 60, Neg. LLF: 116.8362650486752
Iteration: 7, Func. Count: 70, Neg. LLF: 116.7241316751969
Iteration: 8, Func. Count: 79, Neg. LLF: 116.70325715001375
Iteration: 9, Func. Count: 88, Neg. LLF: 116.69209635990957
Iteration: 10, Func. Count: 97, Neg. LLF: 116.68806043899878
Iteration: 11, Func. Count: 106, Neg. LLF: 116.68807359354683
Iteration: 12, Func. Count: 115, Neg. LLF: 116.6867446040153
Optimization terminated successfully (Exit mode 0)
Current function value: 116.68807309447025
Iterations: 12
Function evaluations: 125
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 158.46731601377115
Iteration: 2, Func. Count: 24, Neg. LLF: 116.86209724470642
Iteration: 3, Func. Count: 34, Neg. LLF: 116.78937741298984
Iteration: 4, Func. Count: 44, Neg. LLF: 116.14084799647142
Iteration: 5, Func. Count: 54, Neg. LLF: 149.03152442238786
Iteration: 6, Func. Count: 65, Neg. LLF: 116.24455595580662
Iteration: 7, Func. Count: 76, Neg. LLF: 118.59968151184121
Iteration: 8, Func. Count: 88, Neg. LLF: 115.76400737691797
Iteration: 9, Func. Count: 98, Neg. LLF: 115.60854041642483
Iteration: 10, Func. Count: 108, Neg. LLF: 115.55789337726198
Iteration: 11, Func. Count: 118, Neg. LLF: 115.52269742334818
Iteration: 12, Func. Count: 128, Neg. LLF: 115.51687156670522
Iteration: 13, Func. Count: 138, Neg. LLF: 115.51645840261243
Iteration: 14, Func. Count: 148, Neg. LLF: 115.51645054940487
Iteration: 15, Func. Count: 157, Neg. LLF: 115.51645051031014
Optimization terminated successfully (Exit mode 0)
Current function value: 115.51645054940487
Iterations: 15
Function evaluations: 157
Gradient evaluations: 15
Iteration: 1, Func. Count: 12, Neg. LLF: 126.22770620742548
Iteration: 2, Func. Count: 26, Neg. LLF: 125.79957202552023
Iteration: 3, Func. Count: 38, Neg. LLF: 117.57753053899555
Iteration: 4, Func. Count: 50, Neg. LLF: 116.95171744073969
Iteration: 5, Func. Count: 61, Neg. LLF: 117.35083789673928
Iteration: 6, Func. Count: 73, Neg. LLF: 116.8707459052098
Iteration: 7, Func. Count: 85, Neg. LLF: 116.5365094258494
Iteration: 8, Func. Count: 96, Neg. LLF: 115.92369729937722
Iteration: 9, Func. Count: 107, Neg. LLF: 115.77210645455006
Iteration: 10, Func. Count: 118, Neg. LLF: 115.6242826316344
Iteration: 11, Func. Count: 129, Neg. LLF: 115.544109907577
Iteration: 12, Func. Count: 140, Neg. LLF: 115.52438981552727
Iteration: 13, Func. Count: 151, Neg. LLF: 115.51681218765516
Iteration: 14, Func. Count: 162, Neg. LLF: 115.5164530113837
Iteration: 15, Func. Count: 173, Neg. LLF: 115.51645051016028
Iteration: 16, Func. Count: 183, Neg. LLF: 115.51645052210384
Optimization terminated successfully (Exit mode 0)
Current function value: 115.51645051016028
Iterations: 16
Function evaluations: 183
Gradient evaluations: 16
Iteration: 1, Func. Count: 9, Neg. LLF: 126.25381126490156
Iteration: 2, Func. Count: 19, Neg. LLF: 120.44310733394082
Iteration: 3, Func. Count: 28, Neg. LLF: 118.21273650728858
Iteration: 4, Func. Count: 36, Neg. LLF: 120.30021429306208
Iteration: 5, Func. Count: 46, Neg. LLF: 123.03759708373173
Iteration: 6, Func. Count: 57, Neg. LLF: 130.09445394192974
Iteration: 7, Func. Count: 66, Neg. LLF: 117.65941182476173
Iteration: 8, Func. Count: 74, Neg. LLF: 117.65646766275303
Iteration: 9, Func. Count: 83, Neg. LLF: 117.61020041897739
Iteration: 10, Func. Count: 91, Neg. LLF: 117.60861303089808
Iteration: 11, Func. Count: 99, Neg. LLF: 117.60853940291642
Iteration: 12, Func. Count: 107, Neg. LLF: 117.60852566973821
Iteration: 13, Func. Count: 115, Neg. LLF: 117.60852301803773
Iteration: 14, Func. Count: 122, Neg. LLF: 117.60852296402689
Optimization terminated successfully (Exit mode 0)
Current function value: 117.60852301803773
Iterations: 14
Function evaluations: 122
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 167.09069455260138
Iteration: 2, Func. Count: 21, Neg. LLF: 116.8658875047283
Iteration: 3, Func. Count: 30, Neg. LLF: 287.5840357808951
Iteration: 4, Func. Count: 41, Neg. LLF: 117.34580313481341
Iteration: 5, Func. Count: 51, Neg. LLF: 117.35225499247971
Iteration: 6, Func. Count: 61, Neg. LLF: 116.58153695812368
Iteration: 7, Func. Count: 70, Neg. LLF: 116.58122582122189
Iteration: 8, Func. Count: 79, Neg. LLF: 116.58121983486429
Iteration: 9, Func. Count: 88, Neg. LLF: 116.59658071723882
Optimization terminated successfully (Exit mode 0)
Current function value: 116.58121956989469
Iterations: 10
Function evaluations: 91
Gradient evaluations: 9
Iteration: 1, Func. Count: 11, Neg. LLF: 161.1833112274114
Iteration: 2, Func. Count: 24, Neg. LLF: 116.95092522105236
Iteration: 3, Func. Count: 34, Neg. LLF: 116.2477790488447
Iteration: 4, Func. Count: 44, Neg. LLF: 131.33395919324434
Iteration: 5, Func. Count: 56, Neg. LLF: 116.06856776159866
Iteration: 6, Func. Count: 67, Neg. LLF: 115.56861769416305
Iteration: 7, Func. Count: 77, Neg. LLF: 115.50617129070228
Iteration: 8, Func. Count: 87, Neg. LLF: 115.48289730171874
Iteration: 9, Func. Count: 97, Neg. LLF: 115.46991280622187
Iteration: 10, Func. Count: 107, Neg. LLF: 115.46965873403866
Iteration: 11, Func. Count: 117, Neg. LLF: 115.4696616209276
Iteration: 12, Func. Count: 127, Neg. LLF: 115.46963926914582
Iteration: 13, Func. Count: 137, Neg. LLF: 115.46964592809545
Iteration: 14, Func. Count: 147, Neg. LLF: 115.46964310802507
Optimization terminated successfully (Exit mode 0)
Current function value: 115.46964592539007
Iterations: 14
Function evaluations: 157
Gradient evaluations: 14
Iteration: 1, Func. Count: 12, Neg. LLF: 158.45610939291535
Iteration: 2, Func. Count: 26, Neg. LLF: 116.86072851758998
Iteration: 3, Func. Count: 37, Neg. LLF: 117.00541195979079
Iteration: 4, Func. Count: 49, Neg. LLF: 118.51549296939517
Iteration: 5, Func. Count: 61, Neg. LLF: 117.3489359155531
Iteration: 6, Func. Count: 73, Neg. LLF: 116.27194548529839
Iteration: 7, Func. Count: 84, Neg. LLF: 116.24176729445043
Iteration: 8, Func. Count: 95, Neg. LLF: 116.228272140164
Iteration: 9, Func. Count: 106, Neg. LLF: 116.22479423893857
Iteration: 10, Func. Count: 117, Neg. LLF: 116.22379378954321
Iteration: 11, Func. Count: 128, Neg. LLF: 116.22360353556549
Iteration: 12, Func. Count: 139, Neg. LLF: 116.22358838763923
Iteration: 13, Func. Count: 149, Neg. LLF: 116.22358829182261
Optimization terminated successfully (Exit mode 0)
Current function value: 116.22358838763923
Iterations: 13
Function evaluations: 149
Gradient evaluations: 13
Iteration: 1, Func. Count: 13, Neg. LLF: 124.52145389351683
Iteration: 2, Func. Count: 28, Neg. LLF: 124.23671685111096
Iteration: 3, Func. Count: 41, Neg. LLF: 117.60304285559702
Iteration: 4, Func. Count: 54, Neg. LLF: 116.96335188454096
Iteration: 5, Func. Count: 66, Neg. LLF: 117.28212252796796
Iteration: 6, Func. Count: 79, Neg. LLF: 116.88826457188665
Iteration: 7, Func. Count: 92, Neg. LLF: 116.56464485107145
Iteration: 8, Func. Count: 104, Neg. LLF: 116.14043378612307
Iteration: 9, Func. Count: 116, Neg. LLF: 115.96294105968755
Iteration: 10, Func. Count: 128, Neg. LLF: 115.68245885937306
Iteration: 11, Func. Count: 140, Neg. LLF: 115.58075200111251
Iteration: 12, Func. Count: 152, Neg. LLF: 115.52548427612851
Iteration: 13, Func. Count: 164, Neg. LLF: 115.51739920489024
Iteration: 14, Func. Count: 176, Neg. LLF: 115.51646200900069
Iteration: 15, Func. Count: 188, Neg. LLF: 115.51645086380495
Iteration: 16, Func. Count: 199, Neg. LLF: 115.5164508757359
Optimization terminated successfully (Exit mode 0)
Current function value: 115.51645086380495
Iterations: 16
Function evaluations: 199
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 125.84756340083449
Iteration: 2, Func. Count: 21, Neg. LLF: 119.5651206350339
Iteration: 3, Func. Count: 30, Neg. LLF: 118.1494821492699
Iteration: 4, Func. Count: 39, Neg. LLF: 123.79713618637847
Iteration: 5, Func. Count: 51, Neg. LLF: 129.35413359338702
Iteration: 6, Func. Count: 61, Neg. LLF: 117.68648643357993
Iteration: 7, Func. Count: 70, Neg. LLF: 117.93486930368205
Iteration: 8, Func. Count: 80, Neg. LLF: 117.77888742127737
Iteration: 9, Func. Count: 90, Neg. LLF: 117.49556661604494
Iteration: 10, Func. Count: 99, Neg. LLF: 117.49280689482028
Iteration: 11, Func. Count: 108, Neg. LLF: 117.49239581019016
Iteration: 12, Func. Count: 117, Neg. LLF: 117.49236568505246
Iteration: 13, Func. Count: 125, Neg. LLF: 117.49236564950242
Optimization terminated successfully (Exit mode 0)
Current function value: 117.49236568505246
Iterations: 13
Function evaluations: 125
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 128.68026231342174
Iteration: 2, Func. Count: 24, Neg. LLF: 152.95676833809384
Iteration: 3, Func. Count: 36, Neg. LLF: 117.01869726512167
Iteration: 4, Func. Count: 46, Neg. LLF: 116.5654493095568
Iteration: 5, Func. Count: 56, Neg. LLF: 117.85320539210278
Iteration: 6, Func. Count: 67, Neg. LLF: 116.46056107038757
Iteration: 7, Func. Count: 77, Neg. LLF: 116.48263779322039
Iteration: 8, Func. Count: 88, Neg. LLF: 116.45912898397444
Iteration: 9, Func. Count: 98, Neg. LLF: 116.45912042134684
Iteration: 10, Func. Count: 107, Neg. LLF: 116.45912029590365
Optimization terminated successfully (Exit mode 0)
Current function value: 116.45912042134684
Iterations: 10
Function evaluations: 107
Gradient evaluations: 10
Iteration: 1, Func. Count: 12, Neg. LLF: 161.1274231333533
Iteration: 2, Func. Count: 26, Neg. LLF: 122.09857692540062
Iteration: 3, Func. Count: 38, Neg. LLF: 116.65035980491459
Iteration: 4, Func. Count: 49, Neg. LLF: 116.99243775340567
Iteration: 5, Func. Count: 61, Neg. LLF: 116.59643049684534
Iteration: 6, Func. Count: 72, Neg. LLF: 116.58138319154374
Iteration: 7, Func. Count: 83, Neg. LLF: 116.57654751254071
Iteration: 8, Func. Count: 94, Neg. LLF: 116.57229958535494
Iteration: 9, Func. Count: 105, Neg. LLF: 116.54642706253615
Iteration: 10, Func. Count: 116, Neg. LLF: 116.51692546503651
Iteration: 11, Func. Count: 127, Neg. LLF: 116.47987325058483
Iteration: 12, Func. Count: 138, Neg. LLF: 116.46127496619944
Iteration: 13, Func. Count: 149, Neg. LLF: 116.4592389819479
Iteration: 14, Func. Count: 160, Neg. LLF: 116.45912584463407
Iteration: 15, Func. Count: 171, Neg. LLF: 116.45911990424774
Iteration: 16, Func. Count: 181, Neg. LLF: 116.4591197824951
Optimization terminated successfully (Exit mode 0)
Current function value: 116.45911990424774
Iterations: 16
Function evaluations: 181
Gradient evaluations: 16
Iteration: 1, Func. Count: 13, Neg. LLF: 159.07791203647955
Iteration: 2, Func. Count: 28, Neg. LLF: 116.87108374581646
Iteration: 3, Func. Count: 40, Neg. LLF: 116.9691770961534
Iteration: 4, Func. Count: 53, Neg. LLF: 118.58910196742688
Iteration: 5, Func. Count: 66, Neg. LLF: 117.05484852897254
Iteration: 6, Func. Count: 79, Neg. LLF: 116.25825169538595
Iteration: 7, Func. Count: 91, Neg. LLF: 116.25637583587539
Iteration: 8, Func. Count: 104, Neg. LLF: 116.22539713055896
Iteration: 9, Func. Count: 116, Neg. LLF: 116.2242608038779
Iteration: 10, Func. Count: 128, Neg. LLF: 116.22359048106682
Iteration: 11, Func. Count: 140, Neg. LLF: 116.22358834854911
Iteration: 12, Func. Count: 151, Neg. LLF: 116.22358825282127
Optimization terminated successfully (Exit mode 0)
Current function value: 116.22358834854911
Iterations: 12
Function evaluations: 151
Gradient evaluations: 12
Iteration: 1, Func. Count: 14, Neg. LLF: 123.03312785577455
Iteration: 2, Func. Count: 30, Neg. LLF: 127.78072200560221
Iteration: 3, Func. Count: 44, Neg. LLF: 117.51871114404318
Iteration: 4, Func. Count: 58, Neg. LLF: 116.99292427829884
Iteration: 5, Func. Count: 71, Neg. LLF: 116.86535742568798
Iteration: 6, Func. Count: 84, Neg. LLF: 116.78746846873298
Iteration: 7, Func. Count: 97, Neg. LLF: 116.6791318557307
Iteration: 8, Func. Count: 110, Neg. LLF: 116.44409223051855
Iteration: 9, Func. Count: 123, Neg. LLF: 115.81265951330963
Iteration: 10, Func. Count: 136, Neg. LLF: 115.84395674390161
Iteration: 11, Func. Count: 150, Neg. LLF: 115.61104854424971
Iteration: 12, Func. Count: 163, Neg. LLF: 115.5505425841922
Iteration: 13, Func. Count: 176, Neg. LLF: 116.55093524975247
Iteration: 14, Func. Count: 190, Neg. LLF: 115.49952544945837
Iteration: 15, Func. Count: 203, Neg. LLF: 115.48236835007881
Iteration: 16, Func. Count: 216, Neg. LLF: 115.4809466825382
Iteration: 17, Func. Count: 229, Neg. LLF: 115.48084200066916
Iteration: 18, Func. Count: 242, Neg. LLF: 115.48082929288704
Iteration: 19, Func. Count: 255, Neg. LLF: 115.48082642842697
Iteration: 20, Func. Count: 267, Neg. LLF: 115.48082644262938
Optimization terminated successfully (Exit mode 0)
Current function value: 115.48082642842697
Iterations: 20
Function evaluations: 267
Gradient evaluations: 20
Iteration: 1, Func. Count: 11, Neg. LLF: 122.60188712371955
Iteration: 2, Func. Count: 22, Neg. LLF: 147.40874639858035
Iteration: 3, Func. Count: 33, Neg. LLF: 128.5293361642238
Iteration: 4, Func. Count: 44, Neg. LLF: 3260570.1452926532
Iteration: 5, Func. Count: 55, Neg. LLF: 155.9614211459364
Iteration: 6, Func. Count: 66, Neg. LLF: 1195841.9331602568
Iteration: 7, Func. Count: 77, Neg. LLF: 116.83303787499005
Iteration: 8, Func. Count: 88, Neg. LLF: 115.2247195136854
Iteration: 9, Func. Count: 99, Neg. LLF: 113.8911506163855
Iteration: 10, Func. Count: 110, Neg. LLF: 112.91135265879828
Iteration: 11, Func. Count: 121, Neg. LLF: 112.83576616552195
Iteration: 12, Func. Count: 131, Neg. LLF: 112.80992608336778
Iteration: 13, Func. Count: 141, Neg. LLF: 112.80190874941277
Iteration: 14, Func. Count: 151, Neg. LLF: 112.78503840856774
Iteration: 15, Func. Count: 161, Neg. LLF: 112.78393875789934
Iteration: 16, Func. Count: 171, Neg. LLF: 112.78277897665443
Iteration: 17, Func. Count: 181, Neg. LLF: 112.78276782581962
Iteration: 18, Func. Count: 191, Neg. LLF: 112.78276704406417
Optimization terminated successfully (Exit mode 0)
Current function value: 112.78276704406417
Iterations: 18
Function evaluations: 191
Gradient evaluations: 18
Iteration: 1, Func. Count: 12, Neg. LLF: 115.90582147793351
Iteration: 2, Func. Count: 27, Neg. LLF: 138.34257333957066
Iteration: 3, Func. Count: 39, Neg. LLF: 124.11830154069415
Iteration: 4, Func. Count: 51, Neg. LLF: 127.55981676102286
Iteration: 5, Func. Count: 63, Neg. LLF: 113.95648107487752
Iteration: 6, Func. Count: 75, Neg. LLF: 124.39857603979375
Iteration: 7, Func. Count: 87, Neg. LLF: 115.38774486483597
Iteration: 8, Func. Count: 99, Neg. LLF: 112.76968092702047
Iteration: 9, Func. Count: 111, Neg. LLF: 115.16546516863372
Iteration: 10, Func. Count: 123, Neg. LLF: 111.78221113455847
Iteration: 11, Func. Count: 134, Neg. LLF: 111.77325991167747
Iteration: 12, Func. Count: 146, Neg. LLF: 111.73261461963114
Iteration: 13, Func. Count: 157, Neg. LLF: 111.72420914706697
Iteration: 14, Func. Count: 168, Neg. LLF: 111.71107428517148
Iteration: 15, Func. Count: 179, Neg. LLF: 111.69108634459906
Iteration: 16, Func. Count: 190, Neg. LLF: 111.65596367343932
Iteration: 17, Func. Count: 201, Neg. LLF: 111.6287818719283
Iteration: 18, Func. Count: 212, Neg. LLF: 111.62173994651528
Iteration: 19, Func. Count: 223, Neg. LLF: 111.61985134269987
Iteration: 20, Func. Count: 234, Neg. LLF: 111.61977265188052
Iteration: 21, Func. Count: 245, Neg. LLF: 111.61976345241284
Iteration: 22, Func. Count: 255, Neg. LLF: 111.61976345118134
Optimization terminated successfully (Exit mode 0)
Current function value: 111.61976345241284
Iterations: 22
Function evaluations: 255
Gradient evaluations: 22
Iteration: 1, Func. Count: 13, Neg. LLF: 116.90160340109011
Iteration: 2, Func. Count: 29, Neg. LLF: 199.7774846541251
Iteration: 3, Func. Count: 42, Neg. LLF: 148.03907216817657
Iteration: 4, Func. Count: 55, Neg. LLF: 146.56280678185607
Iteration: 5, Func. Count: 68, Neg. LLF: 123.69820830386831
Iteration: 6, Func. Count: 81, Neg. LLF: 355.84846929662865
Iteration: 7, Func. Count: 94, Neg. LLF: 114.57366233042698
Iteration: 8, Func. Count: 107, Neg. LLF: 118.780117431653
Iteration: 9, Func. Count: 120, Neg. LLF: 114.26447213518234
Iteration: 10, Func. Count: 133, Neg. LLF: 115.12171158749943
Iteration: 11, Func. Count: 146, Neg. LLF: 120.19380279888968
Iteration: 12, Func. Count: 159, Neg. LLF: 112.55883591105652
Iteration: 13, Func. Count: 171, Neg. LLF: 112.8793681376688
Iteration: 14, Func. Count: 184, Neg. LLF: 119.12520975184219
Iteration: 15, Func. Count: 198, Neg. LLF: 114.14737503646434
Iteration: 16, Func. Count: 211, Neg. LLF: 111.71985987986359
Iteration: 17, Func. Count: 223, Neg. LLF: 111.66022973008519
Iteration: 18, Func. Count: 235, Neg. LLF: 111.64734333207423
Iteration: 19, Func. Count: 247, Neg. LLF: 111.63810756023054
Iteration: 20, Func. Count: 259, Neg. LLF: 111.63040599269377
Iteration: 21, Func. Count: 271, Neg. LLF: 111.625975612153
Iteration: 22, Func. Count: 283, Neg. LLF: 111.62395788110706
Iteration: 23, Func. Count: 295, Neg. LLF: 111.62270128582972
Iteration: 24, Func. Count: 307, Neg. LLF: 111.62137187074552
Iteration: 25, Func. Count: 319, Neg. LLF: 111.62026062614994
Iteration: 26, Func. Count: 331, Neg. LLF: 111.61985517195359
Iteration: 27, Func. Count: 343, Neg. LLF: 111.61976704179517
Iteration: 28, Func. Count: 355, Neg. LLF: 111.61976323869368
Iteration: 29, Func. Count: 366, Neg. LLF: 111.6197634730196
Optimization terminated successfully (Exit mode 0)
Current function value: 111.61976323869368
Iterations: 29
Function evaluations: 366
Gradient evaluations: 29
Iteration: 1, Func. Count: 14, Neg. LLF: 117.62079679923937
Iteration: 2, Func. Count: 31, Neg. LLF: 5633126.184724014
Iteration: 3, Func. Count: 45, Neg. LLF: 190.7553189703017
Iteration: 4, Func. Count: 59, Neg. LLF: 260.05246957003925
Iteration: 5, Func. Count: 73, Neg. LLF: 154.79180544022586
Iteration: 6, Func. Count: 87, Neg. LLF: 115.23873495371153
Iteration: 7, Func. Count: 101, Neg. LLF: 140.0049453926375
Iteration: 8, Func. Count: 115, Neg. LLF: 113.7701595968315
Iteration: 9, Func. Count: 129, Neg. LLF: 112.17676104227299
Iteration: 10, Func. Count: 142, Neg. LLF: 115.36205461887494
Iteration: 11, Func. Count: 157, Neg. LLF: 112.92678247318955
Iteration: 12, Func. Count: 171, Neg. LLF: 111.92125679045951
Iteration: 13, Func. Count: 184, Neg. LLF: 111.89651282273832
Iteration: 14, Func. Count: 197, Neg. LLF: 111.8775738478132
Iteration: 15, Func. Count: 210, Neg. LLF: 111.78505620607358
Iteration: 16, Func. Count: 223, Neg. LLF: 111.70779737000866
Iteration: 17, Func. Count: 236, Neg. LLF: 111.64843440233271
Iteration: 18, Func. Count: 249, Neg. LLF: 111.62586236680396
Iteration: 19, Func. Count: 262, Neg. LLF: 111.62024532576093
Iteration: 20, Func. Count: 275, Neg. LLF: 111.61977224969137
Iteration: 21, Func. Count: 288, Neg. LLF: 111.61976424219392
Iteration: 22, Func. Count: 301, Neg. LLF: 111.61976303649544
Iteration: 23, Func. Count: 313, Neg. LLF: 111.61976307978793
Optimization terminated successfully (Exit mode 0)
Current function value: 111.61976303649544
Iterations: 23
Function evaluations: 313
Gradient evaluations: 23
Iteration: 1, Func. Count: 15, Neg. LLF: 115.22925272338148
Iteration: 2, Func. Count: 29, Neg. LLF: 114.65746946370193
Iteration: 3, Func. Count: 44, Neg. LLF: 161.15816745771414
Iteration: 4, Func. Count: 61, Neg. LLF: 126.54906702071928
Iteration: 5, Func. Count: 77, Neg. LLF: 279411.17296917335
Iteration: 6, Func. Count: 92, Neg. LLF: 1099.5407572509566
Iteration: 7, Func. Count: 107, Neg. LLF: 132.9433515782079
Iteration: 8, Func. Count: 122, Neg. LLF: 128.07519769139407
Iteration: 9, Func. Count: 137, Neg. LLF: 113.28813447104935
Iteration: 10, Func. Count: 152, Neg. LLF: 111.4337100351421
Iteration: 11, Func. Count: 166, Neg. LLF: 111.27459071192227
Iteration: 12, Func. Count: 180, Neg. LLF: 111.20971320553654
Iteration: 13, Func. Count: 194, Neg. LLF: 111.20487282384516
Iteration: 14, Func. Count: 208, Neg. LLF: 111.19930423530674
Iteration: 15, Func. Count: 222, Neg. LLF: 111.19870310407167
Iteration: 16, Func. Count: 236, Neg. LLF: 111.19844133669538
Iteration: 17, Func. Count: 250, Neg. LLF: 111.19843658132778
Iteration: 18, Func. Count: 264, Neg. LLF: 111.19843449046027
Iteration: 19, Func. Count: 277, Neg. LLF: 111.19843446968687
Optimization terminated successfully (Exit mode 0)
Current function value: 111.19843449046027
Iterations: 19
Function evaluations: 277
Gradient evaluations: 19
Iteration: 1, Func. Count: 8, Neg. LLF: 123.34250629530584
Iteration: 2, Func. Count: 16, Neg. LLF: 124.38899794698284
Iteration: 3, Func. Count: 25, Neg. LLF: 139.9385135034989
Iteration: 4, Func. Count: 33, Neg. LLF: 119.62394218766272
Iteration: 5, Func. Count: 41, Neg. LLF: 161.5759188932688
Iteration: 6, Func. Count: 49, Neg. LLF: 120.2746308382191
Iteration: 7, Func. Count: 57, Neg. LLF: 119.95165391032128
Iteration: 8, Func. Count: 65, Neg. LLF: 117.87918742393332
Iteration: 9, Func. Count: 72, Neg. LLF: 117.83821096404286
Iteration: 10, Func. Count: 79, Neg. LLF: 117.83522214375347
Iteration: 11, Func. Count: 86, Neg. LLF: 117.83510592105273
Iteration: 12, Func. Count: 93, Neg. LLF: 117.835095501968
Iteration: 13, Func. Count: 100, Neg. LLF: 117.83509493471891
Optimization terminated successfully (Exit mode 0)
Current function value: 117.83509493471891
Iterations: 13
Function evaluations: 100
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 166.90298633231612
Iteration: 2, Func. Count: 20, Neg. LLF: 117.30608998447741
Iteration: 3, Func. Count: 28, Neg. LLF: 116.86496974080741
Iteration: 4, Func. Count: 36, Neg. LLF: 116.96718031862346
Iteration: 5, Func. Count: 45, Neg. LLF: 116.72573467214318
Iteration: 6, Func. Count: 53, Neg. LLF: 117.55929442281058
Iteration: 7, Func. Count: 62, Neg. LLF: 116.71319030720143
Iteration: 8, Func. Count: 70, Neg. LLF: 116.7131785723761
Iteration: 9, Func. Count: 77, Neg. LLF: 116.71317861332267
Optimization terminated successfully (Exit mode 0)
Current function value: 116.7131785723761
Iterations: 9
Function evaluations: 77
Gradient evaluations: 9
Iteration: 1, Func. Count: 10, Neg. LLF: 161.4938036182889
Iteration: 2, Func. Count: 22, Neg. LLF: 116.94159636152362
Iteration: 3, Func. Count: 31, Neg. LLF: 116.86948974497102
Iteration: 4, Func. Count: 40, Neg. LLF: 118.02714783923018
Iteration: 5, Func. Count: 52, Neg. LLF: 119.59256509628861
Iteration: 6, Func. Count: 62, Neg. LLF: 116.82545521814481
Iteration: 7, Func. Count: 72, Neg. LLF: 116.73890835783736
Iteration: 8, Func. Count: 81, Neg. LLF: 116.73590514888059
Iteration: 9, Func. Count: 90, Neg. LLF: 116.73409277063118
Iteration: 10, Func. Count: 99, Neg. LLF: 116.73215387252128
Iteration: 11, Func. Count: 108, Neg. LLF: 116.73095912749618
Iteration: 12, Func. Count: 117, Neg. LLF: 116.72965951726258
Iteration: 13, Func. Count: 126, Neg. LLF: 116.72814948302305
Iteration: 14, Func. Count: 135, Neg. LLF: 116.71842575329256
Iteration: 15, Func. Count: 144, Neg. LLF: 116.71318074620797
Iteration: 16, Func. Count: 153, Neg. LLF: 117.16136072048936
Iteration: 17, Func. Count: 165, Neg. LLF: 116.71321257995143
Optimization terminated successfully (Exit mode 0)
Current function value: 116.71317853351312
Iterations: 18
Function evaluations: 166
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 159.4056626628579
Iteration: 2, Func. Count: 24, Neg. LLF: 116.8407852878445
Iteration: 3, Func. Count: 34, Neg. LLF: 116.7980807418411
Iteration: 4, Func. Count: 44, Neg. LLF: 117.46134104226238
Iteration: 5, Func. Count: 55, Neg. LLF: 116.77282212619598
Iteration: 6, Func. Count: 66, Neg. LLF: 116.74661889830877
Iteration: 7, Func. Count: 76, Neg. LLF: 116.74446763092955
Iteration: 8, Func. Count: 86, Neg. LLF: 116.74307364939351
Iteration: 9, Func. Count: 96, Neg. LLF: 116.74089558105086
Iteration: 10, Func. Count: 106, Neg. LLF: 116.73147497745386
Iteration: 11, Func. Count: 116, Neg. LLF: 116.73046697992909
Iteration: 12, Func. Count: 126, Neg. LLF: 116.72926624359305
Iteration: 13, Func. Count: 136, Neg. LLF: 116.72877371476002
Iteration: 14, Func. Count: 146, Neg. LLF: 116.72542049335347
Iteration: 15, Func. Count: 156, Neg. LLF: 116.71550530540179
Iteration: 16, Func. Count: 166, Neg. LLF: 116.80079160624082
Iteration: 17, Func. Count: 177, Neg. LLF: 120.9722170099168
Iteration: 18, Func. Count: 189, Neg. LLF: 116.71318083851561
Iteration: 19, Func. Count: 199, Neg. LLF: 116.71317882206138
Iteration: 20, Func. Count: 208, Neg. LLF: 116.71317878434054
Optimization terminated successfully (Exit mode 0)
Current function value: 116.71317882206138
Iterations: 21
Function evaluations: 208
Gradient evaluations: 20
Iteration: 1, Func. Count: 12, Neg. LLF: 131.46780732104773
Iteration: 2, Func. Count: 26, Neg. LLF: 126.52940664654145
Iteration: 3, Func. Count: 38, Neg. LLF: 117.52621986822571
Iteration: 4, Func. Count: 50, Neg. LLF: 116.92448093880387
Iteration: 5, Func. Count: 61, Neg. LLF: 118.05000825433125
Iteration: 6, Func. Count: 73, Neg. LLF: 116.86121716431629
Iteration: 7, Func. Count: 85, Neg. LLF: 116.7585323065528
Iteration: 8, Func. Count: 96, Neg. LLF: 116.75295028662534
Iteration: 9, Func. Count: 107, Neg. LLF: 116.74099022596018
Iteration: 10, Func. Count: 118, Neg. LLF: 116.72488344684524
Iteration: 11, Func. Count: 129, Neg. LLF: 116.72031115886826
Iteration: 12, Func. Count: 140, Neg. LLF: 116.7174801812062
Iteration: 13, Func. Count: 151, Neg. LLF: 116.71733057748996
Iteration: 14, Func. Count: 162, Neg. LLF: 116.71732548501775
Iteration: 15, Func. Count: 172, Neg. LLF: 116.71732546599654
Optimization terminated successfully (Exit mode 0)
Current function value: 116.71732548501775
Iterations: 15
Function evaluations: 172
Gradient evaluations: 15
Iteration: 1, Func. Count: 9, Neg. LLF: 123.43340138220576
Iteration: 2, Func. Count: 18, Neg. LLF: 125.16706878095083
Iteration: 3, Func. Count: 28, Neg. LLF: 131.39330840648964
Iteration: 4, Func. Count: 37, Neg. LLF: 120.52527844575361
Iteration: 5, Func. Count: 46, Neg. LLF: 195.03707329578933
Iteration: 6, Func. Count: 55, Neg. LLF: 121.18824414329595
Iteration: 7, Func. Count: 64, Neg. LLF: 118.89580591961759
Iteration: 8, Func. Count: 73, Neg. LLF: 118.04149634696216
Iteration: 9, Func. Count: 82, Neg. LLF: 117.83612092533642
Iteration: 10, Func. Count: 90, Neg. LLF: 117.83629169444363
Iteration: 11, Func. Count: 99, Neg. LLF: 117.85854968943106
Iteration: 12, Func. Count: 109, Neg. LLF: 117.83512043371601
Iteration: 13, Func. Count: 117, Neg. LLF: 117.83509491525902
Iteration: 14, Func. Count: 124, Neg. LLF: 117.83509486110754
Optimization terminated successfully (Exit mode 0)
Current function value: 117.83509491525902
Iterations: 14
Function evaluations: 124
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 167.9676043538001
Iteration: 2, Func. Count: 22, Neg. LLF: 117.31557593651485
Iteration: 3, Func. Count: 31, Neg. LLF: 116.90161359374859
Iteration: 4, Func. Count: 40, Neg. LLF: 140.81247291786323
Iteration: 5, Func. Count: 51, Neg. LLF: 117.27230741374055
Iteration: 6, Func. Count: 61, Neg. LLF: 116.689725781967
Iteration: 7, Func. Count: 70, Neg. LLF: 116.68802748000454
Iteration: 8, Func. Count: 79, Neg. LLF: 116.68795506519002
Iteration: 9, Func. Count: 88, Neg. LLF: 116.68795284953183
Iteration: 10, Func. Count: 96, Neg. LLF: 116.68795277222127
Optimization terminated successfully (Exit mode 0)
Current function value: 116.68795284953183
Iterations: 10
Function evaluations: 96
Gradient evaluations: 10
Iteration: 1, Func. Count: 11, Neg. LLF: 161.61326836960424
Iteration: 2, Func. Count: 24, Neg. LLF: 116.94792066722427
Iteration: 3, Func. Count: 34, Neg. LLF: 116.8782253919556
Iteration: 4, Func. Count: 44, Neg. LLF: 118.74424043540508
Iteration: 5, Func. Count: 56, Neg. LLF: 122.22995659379646
Iteration: 6, Func. Count: 67, Neg. LLF: 117.47672664623263
Iteration: 7, Func. Count: 78, Neg. LLF: 116.9085156138289
Iteration: 8, Func. Count: 89, Neg. LLF: 116.73589348079139
Iteration: 9, Func. Count: 99, Neg. LLF: 116.72873245452966
Iteration: 10, Func. Count: 109, Neg. LLF: 116.7273064102823
Iteration: 11, Func. Count: 119, Neg. LLF: 116.72715523468773
Iteration: 12, Func. Count: 129, Neg. LLF: 116.72707778161758
Iteration: 13, Func. Count: 139, Neg. LLF: 116.7266942837021
Iteration: 14, Func. Count: 149, Neg. LLF: 116.72613343083142
Iteration: 15, Func. Count: 159, Neg. LLF: 116.72516857884517
Iteration: 16, Func. Count: 169, Neg. LLF: 116.72275953108185
Iteration: 17, Func. Count: 179, Neg. LLF: 116.69519990368121
Iteration: 18, Func. Count: 189, Neg. LLF: 116.6876905876586
Iteration: 19, Func. Count: 199, Neg. LLF: 116.68812858052016
Iteration: 20, Func. Count: 209, Neg. LLF: 116.68799137407655
Iteration: 21, Func. Count: 219, Neg. LLF: 116.68796586169216
Iteration: 22, Func. Count: 229, Neg. LLF: 116.68836617385698
Optimization terminated successfully (Exit mode 0)
Current function value: 116.68796568514993
Iterations: 23
Function evaluations: 231
Gradient evaluations: 22
Iteration: 1, Func. Count: 12, Neg. LLF: 158.41385600615862
Iteration: 2, Func. Count: 26, Neg. LLF: 116.84853030940911
Iteration: 3, Func. Count: 37, Neg. LLF: 116.80272721484849
Iteration: 4, Func. Count: 48, Neg. LLF: 116.25116587935432
Iteration: 5, Func. Count: 59, Neg. LLF: 170.1453128793566
Iteration: 6, Func. Count: 71, Neg. LLF: 116.29361111802504
Iteration: 7, Func. Count: 83, Neg. LLF: 119.16853232325857
Iteration: 8, Func. Count: 96, Neg. LLF: 115.77465186624266
Iteration: 9, Func. Count: 107, Neg. LLF: 115.61775326026067
Iteration: 10, Func. Count: 118, Neg. LLF: 115.55338980316208
Iteration: 11, Func. Count: 129, Neg. LLF: 115.52512494673564
Iteration: 12, Func. Count: 140, Neg. LLF: 115.51703370366093
Iteration: 13, Func. Count: 151, Neg. LLF: 115.51645850447437
Iteration: 14, Func. Count: 162, Neg. LLF: 115.51645039364237
Iteration: 15, Func. Count: 172, Neg. LLF: 115.51645035462752
Optimization terminated successfully (Exit mode 0)
Current function value: 115.51645039364237
Iterations: 15
Function evaluations: 172
Gradient evaluations: 15
Iteration: 1, Func. Count: 13, Neg. LLF: 130.96921126019438
Iteration: 2, Func. Count: 28, Neg. LLF: 126.96718716257402
Iteration: 3, Func. Count: 41, Neg. LLF: 117.526735965077
Iteration: 4, Func. Count: 54, Neg. LLF: 116.90511903952891
Iteration: 5, Func. Count: 66, Neg. LLF: 118.21338045097711
Iteration: 6, Func. Count: 79, Neg. LLF: 116.76815705141279
Iteration: 7, Func. Count: 91, Neg. LLF: 116.76172498943195
Iteration: 8, Func. Count: 104, Neg. LLF: 115.98308731201058
Iteration: 9, Func. Count: 116, Neg. LLF: 116.70428114176822
Iteration: 10, Func. Count: 130, Neg. LLF: 115.72821265040334
Iteration: 11, Func. Count: 142, Neg. LLF: 115.60066967753909
Iteration: 12, Func. Count: 154, Neg. LLF: 115.56494618723903
Iteration: 13, Func. Count: 166, Neg. LLF: 115.5251902623738
Iteration: 14, Func. Count: 178, Neg. LLF: 115.51689766272865
Iteration: 15, Func. Count: 190, Neg. LLF: 115.51646323318913
Iteration: 16, Func. Count: 202, Neg. LLF: 115.51645104745818
Iteration: 17, Func. Count: 213, Neg. LLF: 115.51645105960716
Optimization terminated successfully (Exit mode 0)
Current function value: 115.51645104745818
Iterations: 17
Function evaluations: 213
Gradient evaluations: 17
Iteration: 1, Func. Count: 10, Neg. LLF: 123.39046945210882
Iteration: 2, Func. Count: 20, Neg. LLF: 124.90180527220272
Iteration: 3, Func. Count: 31, Neg. LLF: 133.2658033977355
Iteration: 4, Func. Count: 41, Neg. LLF: 118.95030556316361
Iteration: 5, Func. Count: 51, Neg. LLF: 118.49437302097351
Iteration: 6, Func. Count: 61, Neg. LLF: 76575.061173144
Iteration: 7, Func. Count: 71, Neg. LLF: 118.03690264209095
Iteration: 8, Func. Count: 81, Neg. LLF: 117.8130275800877
Iteration: 9, Func. Count: 91, Neg. LLF: 117.75860129008488
Iteration: 10, Func. Count: 100, Neg. LLF: 117.75730348423824
Iteration: 11, Func. Count: 109, Neg. LLF: 117.76405879672538
Optimization terminated successfully (Exit mode 0)
Current function value: 117.75730324211206
Iterations: 11
Function evaluations: 112
Gradient evaluations: 11
Iteration: 1, Func. Count: 11, Neg. LLF: 167.6499994448833
Iteration: 2, Func. Count: 24, Neg. LLF: 117.32004536077095
Iteration: 3, Func. Count: 34, Neg. LLF: 116.91613469403461
Iteration: 4, Func. Count: 44, Neg. LLF: 146.99586108812792
Iteration: 5, Func. Count: 56, Neg. LLF: 116.62320628472847
Iteration: 6, Func. Count: 66, Neg. LLF: 116.65220335212587
Iteration: 7, Func. Count: 77, Neg. LLF: 116.5999500448978
Iteration: 8, Func. Count: 88, Neg. LLF: 116.5814505769259
Iteration: 9, Func. Count: 98, Neg. LLF: 116.58122281562841
Iteration: 10, Func. Count: 108, Neg. LLF: 116.58122121924698
Iteration: 11, Func. Count: 117, Neg. LLF: 116.58122110395088
Optimization terminated successfully (Exit mode 0)
Current function value: 116.58122121924698
Iterations: 11
Function evaluations: 117
Gradient evaluations: 11
Iteration: 1, Func. Count: 12, Neg. LLF: 161.3457005304207
Iteration: 2, Func. Count: 26, Neg. LLF: 116.94881602083397
Iteration: 3, Func. Count: 37, Neg. LLF: 116.23573479388409
Iteration: 4, Func. Count: 48, Neg. LLF: 129.31187100629978
Iteration: 5, Func. Count: 61, Neg. LLF: 116.91369369959801
Iteration: 6, Func. Count: 73, Neg. LLF: 115.56348017480312
Iteration: 7, Func. Count: 84, Neg. LLF: 115.53676425259455
Iteration: 8, Func. Count: 95, Neg. LLF: 115.52130420303142
Iteration: 9, Func. Count: 106, Neg. LLF: 115.47566734467438
Iteration: 10, Func. Count: 117, Neg. LLF: 115.46974913593537
Iteration: 11, Func. Count: 128, Neg. LLF: 115.46962787444497
Iteration: 12, Func. Count: 139, Neg. LLF: 115.46964273157543
Iteration: 13, Func. Count: 150, Neg. LLF: 115.46964242298202
Optimization terminated successfully (Exit mode 0)
Current function value: 115.46964273127408
Iterations: 13
Function evaluations: 160
Gradient evaluations: 13
Iteration: 1, Func. Count: 13, Neg. LLF: 158.3951801626639
Iteration: 2, Func. Count: 28, Neg. LLF: 116.84770107699916
Iteration: 3, Func. Count: 40, Neg. LLF: 116.87751495500528
Iteration: 4, Func. Count: 53, Neg. LLF: 118.08582326388411
Iteration: 5, Func. Count: 66, Neg. LLF: 117.11444854342136
Iteration: 6, Func. Count: 79, Neg. LLF: 116.2589732380387
Iteration: 7, Func. Count: 91, Neg. LLF: 116.23797168660523
Iteration: 8, Func. Count: 103, Neg. LLF: 116.22879412344292
Iteration: 9, Func. Count: 115, Neg. LLF: 116.22429614057297
Iteration: 10, Func. Count: 127, Neg. LLF: 116.2237615666328
Iteration: 11, Func. Count: 139, Neg. LLF: 116.22360067271904
Iteration: 12, Func. Count: 151, Neg. LLF: 116.22358838095589
Iteration: 13, Func. Count: 162, Neg. LLF: 116.22358828518973
Optimization terminated successfully (Exit mode 0)
Current function value: 116.22358838095589
Iterations: 13
Function evaluations: 162
Gradient evaluations: 13
Iteration: 1, Func. Count: 14, Neg. LLF: 130.99203257658868
Iteration: 2, Func. Count: 30, Neg. LLF: 126.99748201796159
Iteration: 3, Func. Count: 44, Neg. LLF: 117.53559145883435
Iteration: 4, Func. Count: 58, Neg. LLF: 116.92140514145503
Iteration: 5, Func. Count: 71, Neg. LLF: 118.01340378559219
Iteration: 6, Func. Count: 85, Neg. LLF: 116.77775212790156
Iteration: 7, Func. Count: 98, Neg. LLF: 116.8023197675229
Iteration: 8, Func. Count: 112, Neg. LLF: 116.48665195983752
Iteration: 9, Func. Count: 125, Neg. LLF: 115.97794223068526
Iteration: 10, Func. Count: 138, Neg. LLF: 120.484139635346
Iteration: 11, Func. Count: 152, Neg. LLF: 115.62001110111572
Iteration: 12, Func. Count: 165, Neg. LLF: 115.5930134510226
Iteration: 13, Func. Count: 178, Neg. LLF: 115.57848996476994
Iteration: 14, Func. Count: 191, Neg. LLF: 115.53167213885018
Iteration: 15, Func. Count: 204, Neg. LLF: 115.51748844921006
Iteration: 16, Func. Count: 217, Neg. LLF: 115.51646379414828
Iteration: 17, Func. Count: 230, Neg. LLF: 115.51645039583435
Iteration: 18, Func. Count: 242, Neg. LLF: 115.51645040781612
Optimization terminated successfully (Exit mode 0)
Current function value: 115.51645039583435
Iterations: 18
Function evaluations: 242
Gradient evaluations: 18
Iteration: 1, Func. Count: 11, Neg. LLF: 123.36388963541843
Iteration: 2, Func. Count: 22, Neg. LLF: 125.4700910646693
Iteration: 3, Func. Count: 34, Neg. LLF: 128.3970582618475
Iteration: 4, Func. Count: 45, Neg. LLF: 119.33321898472916
Iteration: 5, Func. Count: 56, Neg. LLF: 541.189367132181
Iteration: 6, Func. Count: 67, Neg. LLF: 118.06589254315861
Iteration: 7, Func. Count: 78, Neg. LLF: 117.72038090521376
Iteration: 8, Func. Count: 88, Neg. LLF: 117.71517689505622
Iteration: 9, Func. Count: 99, Neg. LLF: 117.70100658794404
Iteration: 10, Func. Count: 109, Neg. LLF: 117.69767177210682
Iteration: 11, Func. Count: 119, Neg. LLF: 117.69766157403035
Iteration: 12, Func. Count: 129, Neg. LLF: 117.6976564600112
Iteration: 13, Func. Count: 138, Neg. LLF: 117.69765645480734
Optimization terminated successfully (Exit mode 0)
Current function value: 117.6976564600112
Iterations: 13
Function evaluations: 138
Gradient evaluations: 13
Iteration: 1, Func. Count: 12, Neg. LLF: 133.9460258737232
Iteration: 2, Func. Count: 26, Neg. LLF: 140.06131547276414
Iteration: 3, Func. Count: 39, Neg. LLF: 117.04349931351791
Iteration: 4, Func. Count: 50, Neg. LLF: 116.57057434232102
Iteration: 5, Func. Count: 61, Neg. LLF: 117.2582322203197
Iteration: 6, Func. Count: 73, Neg. LLF: 116.60750931790818
Iteration: 7, Func. Count: 85, Neg. LLF: 116.459149303526
Iteration: 8, Func. Count: 96, Neg. LLF: 116.45912043616492
Iteration: 9, Func. Count: 106, Neg. LLF: 116.45912031069615
Optimization terminated successfully (Exit mode 0)
Current function value: 116.45912043616492
Iterations: 9
Function evaluations: 106
Gradient evaluations: 9
Iteration: 1, Func. Count: 13, Neg. LLF: 161.2897024065696
Iteration: 2, Func. Count: 28, Neg. LLF: 120.6979764653787
Iteration: 3, Func. Count: 41, Neg. LLF: 116.67859168951956
Iteration: 4, Func. Count: 53, Neg. LLF: 116.84053579716223
Iteration: 5, Func. Count: 66, Neg. LLF: 116.60842852228669
Iteration: 6, Func. Count: 78, Neg. LLF: 116.58327103852557
Iteration: 7, Func. Count: 90, Neg. LLF: 116.56371354527742
Iteration: 8, Func. Count: 102, Neg. LLF: 116.53847768928142
Iteration: 9, Func. Count: 114, Neg. LLF: 116.48011229404126
Iteration: 10, Func. Count: 126, Neg. LLF: 116.46493516845922
Iteration: 11, Func. Count: 138, Neg. LLF: 116.45932394821692
Iteration: 12, Func. Count: 150, Neg. LLF: 116.45914173467513
Iteration: 13, Func. Count: 162, Neg. LLF: 116.4591221512838
Iteration: 14, Func. Count: 174, Neg. LLF: 116.45911983114293
Iteration: 15, Func. Count: 186, Neg. LLF: 116.45911859587619
Optimization terminated successfully (Exit mode 0)
Current function value: 116.45911982988248
Iterations: 15
Function evaluations: 196
Gradient evaluations: 15
Iteration: 1, Func. Count: 14, Neg. LLF: 159.00295681728028
Iteration: 2, Func. Count: 30, Neg. LLF: 116.85795691757644
Iteration: 3, Func. Count: 43, Neg. LLF: 116.83719872787434
Iteration: 4, Func. Count: 57, Neg. LLF: 118.33245459429222
Iteration: 5, Func. Count: 71, Neg. LLF: 117.1454323411553
Iteration: 6, Func. Count: 85, Neg. LLF: 116.25686112624378
Iteration: 7, Func. Count: 98, Neg. LLF: 116.24029057761017
Iteration: 8, Func. Count: 111, Neg. LLF: 116.2276198670932
Iteration: 9, Func. Count: 124, Neg. LLF: 116.22434108677565
Iteration: 10, Func. Count: 137, Neg. LLF: 116.22377077354678
Iteration: 11, Func. Count: 150, Neg. LLF: 116.22360186027905
Iteration: 12, Func. Count: 163, Neg. LLF: 116.22358840861233
Iteration: 13, Func. Count: 175, Neg. LLF: 116.22358831281785
Optimization terminated successfully (Exit mode 0)
Current function value: 116.22358840861233
Iterations: 13
Function evaluations: 175
Gradient evaluations: 13
Iteration: 1, Func. Count: 15, Neg. LLF: 122.96785653008264
Iteration: 2, Func. Count: 33, Neg. LLF: 125.99977971888609
Iteration: 3, Func. Count: 48, Neg. LLF: 117.57746305815871
Iteration: 4, Func. Count: 63, Neg. LLF: 117.00109525333599
Iteration: 5, Func. Count: 77, Neg. LLF: 117.97298094861603
Iteration: 6, Func. Count: 92, Neg. LLF: 116.79160132008982
Iteration: 7, Func. Count: 106, Neg. LLF: 116.74484251602904
Iteration: 8, Func. Count: 120, Neg. LLF: 116.68454497126481
Iteration: 9, Func. Count: 134, Neg. LLF: 116.51545624952438
Iteration: 10, Func. Count: 148, Neg. LLF: 116.03521319378369
Iteration: 11, Func. Count: 162, Neg. LLF: 115.68883635751156
Iteration: 12, Func. Count: 176, Neg. LLF: 115.87037854304342
Iteration: 13, Func. Count: 191, Neg. LLF: 115.55963036561509
Iteration: 14, Func. Count: 205, Neg. LLF: 115.51495325192994
Iteration: 15, Func. Count: 219, Neg. LLF: 115.48931524968587
Iteration: 16, Func. Count: 233, Neg. LLF: 115.48145868619245
Iteration: 17, Func. Count: 247, Neg. LLF: 115.48084942601955
Iteration: 18, Func. Count: 261, Neg. LLF: 115.48082642062818
Iteration: 19, Func. Count: 274, Neg. LLF: 115.48082643465231
Optimization terminated successfully (Exit mode 0)
Current function value: 115.48082642062818
Iterations: 19
Function evaluations: 274
Gradient evaluations: 19
Iteration: 1, Func. Count: 12, Neg. LLF: 126.40802005836886
Iteration: 2, Func. Count: 24, Neg. LLF: 219.49669484827018
Iteration: 3, Func. Count: 36, Neg. LLF: 125.2680413547054
Iteration: 4, Func. Count: 49, Neg. LLF: 119.68314640353854
Iteration: 5, Func. Count: 61, Neg. LLF: 4784257.45130343
Iteration: 6, Func. Count: 73, Neg. LLF: 232.12735032290803
Iteration: 7, Func. Count: 85, Neg. LLF: 118.00013501960977
Iteration: 8, Func. Count: 97, Neg. LLF: 114.08330724608282
Iteration: 9, Func. Count: 109, Neg. LLF: 113.5670327307825
Iteration: 10, Func. Count: 121, Neg. LLF: 112.82567644910947
Iteration: 11, Func. Count: 132, Neg. LLF: 112.79216502569633
Iteration: 12, Func. Count: 143, Neg. LLF: 112.78861067312103
Iteration: 13, Func. Count: 154, Neg. LLF: 112.78324645795935
Iteration: 14, Func. Count: 165, Neg. LLF: 112.78285030345509
Iteration: 15, Func. Count: 176, Neg. LLF: 112.78276880934907
Iteration: 16, Func. Count: 187, Neg. LLF: 112.78276723677685
Iteration: 17, Func. Count: 197, Neg. LLF: 112.78276723677006
Optimization terminated successfully (Exit mode 0)
Current function value: 112.78276723677685
Iterations: 17
Function evaluations: 197
Gradient evaluations: 17
Iteration: 1, Func. Count: 13, Neg. LLF: 116.18881245552875
Iteration: 2, Func. Count: 29, Neg. LLF: 136.91456277905277
Iteration: 3, Func. Count: 42, Neg. LLF: 124.7822473806918
Iteration: 4, Func. Count: 55, Neg. LLF: 129.0829460050162
Iteration: 5, Func. Count: 68, Neg. LLF: 116.05818278553949
Iteration: 6, Func. Count: 81, Neg. LLF: 129.2405818927638
Iteration: 7, Func. Count: 95, Neg. LLF: 114.05840196187727
Iteration: 8, Func. Count: 108, Neg. LLF: 113.670269828524
Iteration: 9, Func. Count: 121, Neg. LLF: 114.25794873629052
Iteration: 10, Func. Count: 134, Neg. LLF: 113.19275352227835
Iteration: 11, Func. Count: 147, Neg. LLF: 111.81940320402492
Iteration: 12, Func. Count: 160, Neg. LLF: 111.7432050080395
Iteration: 13, Func. Count: 172, Neg. LLF: 111.73418778664933
Iteration: 14, Func. Count: 184, Neg. LLF: 111.70575174362982
Iteration: 15, Func. Count: 196, Neg. LLF: 111.66945627317558
Iteration: 16, Func. Count: 208, Neg. LLF: 111.63297150905998
Iteration: 17, Func. Count: 220, Neg. LLF: 111.62234759327268
Iteration: 18, Func. Count: 232, Neg. LLF: 111.61993679758184
Iteration: 19, Func. Count: 244, Neg. LLF: 111.6197860942714
Iteration: 20, Func. Count: 256, Neg. LLF: 111.61976512912796
Iteration: 21, Func. Count: 268, Neg. LLF: 111.61976308685972
Iteration: 22, Func. Count: 279, Neg. LLF: 111.6197630855454
Optimization terminated successfully (Exit mode 0)
Current function value: 111.61976308685972
Iterations: 22
Function evaluations: 279
Gradient evaluations: 22
Iteration: 1, Func. Count: 14, Neg. LLF: 117.11963061553486
Iteration: 2, Func. Count: 31, Neg. LLF: 193.88932267838754
Iteration: 3, Func. Count: 45, Neg. LLF: 148.11880276617075
Iteration: 4, Func. Count: 59, Neg. LLF: 148.1740443080196
Iteration: 5, Func. Count: 73, Neg. LLF: 268.2652706753439
Iteration: 6, Func. Count: 87, Neg. LLF: 7312003.832353259
Iteration: 7, Func. Count: 101, Neg. LLF: 123.25826154944748
Iteration: 8, Func. Count: 115, Neg. LLF: 114.78079624410775
Iteration: 9, Func. Count: 129, Neg. LLF: 114.91297160109833
Iteration: 10, Func. Count: 143, Neg. LLF: 114.55514134347129
Iteration: 11, Func. Count: 157, Neg. LLF: 114.23865548603884
Iteration: 12, Func. Count: 170, Neg. LLF: 117.47010761718576
Iteration: 13, Func. Count: 184, Neg. LLF: 113.41821690078929
Iteration: 14, Func. Count: 197, Neg. LLF: 112.02547410037799
Iteration: 15, Func. Count: 210, Neg. LLF: 111.9396583160384
Iteration: 16, Func. Count: 223, Neg. LLF: 111.79721043304853
Iteration: 17, Func. Count: 236, Neg. LLF: 111.67096408227148
Iteration: 18, Func. Count: 249, Neg. LLF: 111.64563098097217
Iteration: 19, Func. Count: 262, Neg. LLF: 111.62454852538602
Iteration: 20, Func. Count: 275, Neg. LLF: 111.62158409162737
Iteration: 21, Func. Count: 288, Neg. LLF: 111.62007257040636
Iteration: 22, Func. Count: 301, Neg. LLF: 111.61983338778832
Iteration: 23, Func. Count: 314, Neg. LLF: 111.61979994104271
Iteration: 24, Func. Count: 327, Neg. LLF: 111.6197806011718
Iteration: 25, Func. Count: 340, Neg. LLF: 111.61976689973146
Iteration: 26, Func. Count: 353, Neg. LLF: 111.61976335564775
Iteration: 27, Func. Count: 365, Neg. LLF: 111.6197635899957
Optimization terminated successfully (Exit mode 0)
Current function value: 111.61976335564775
Iterations: 27
Function evaluations: 365
Gradient evaluations: 27
Iteration: 1, Func. Count: 15, Neg. LLF: 117.8150899876601
Iteration: 2, Func. Count: 33, Neg. LLF: 5632336.311363432
Iteration: 3, Func. Count: 48, Neg. LLF: 199.5421771220426
Iteration: 4, Func. Count: 63, Neg. LLF: 288.45512053156904
Iteration: 5, Func. Count: 78, Neg. LLF: 156.45515095476162
Iteration: 6, Func. Count: 93, Neg. LLF: 115.20747553159649
Iteration: 7, Func. Count: 108, Neg. LLF: 132.51104563378416
Iteration: 8, Func. Count: 123, Neg. LLF: 113.64545490128374
Iteration: 9, Func. Count: 138, Neg. LLF: 112.18946087775733
Iteration: 10, Func. Count: 152, Neg. LLF: 115.92931622446343
Iteration: 11, Func. Count: 168, Neg. LLF: 113.21425023935224
Iteration: 12, Func. Count: 183, Neg. LLF: 111.91698820807102
Iteration: 13, Func. Count: 197, Neg. LLF: 111.89349010051991
Iteration: 14, Func. Count: 211, Neg. LLF: 111.87142111256455
Iteration: 15, Func. Count: 225, Neg. LLF: 111.78314432962252
Iteration: 16, Func. Count: 239, Neg. LLF: 111.71265697686621
Iteration: 17, Func. Count: 253, Neg. LLF: 111.64557021537149
Iteration: 18, Func. Count: 267, Neg. LLF: 111.62433285279094
Iteration: 19, Func. Count: 281, Neg. LLF: 111.61993455946919
Iteration: 20, Func. Count: 295, Neg. LLF: 111.61976456327262
Iteration: 21, Func. Count: 309, Neg. LLF: 111.61976320746828
Iteration: 22, Func. Count: 322, Neg. LLF: 111.61976325078993
Optimization terminated successfully (Exit mode 0)
Current function value: 111.61976320746828
Iterations: 22
Function evaluations: 322
Gradient evaluations: 22
Iteration: 1, Func. Count: 16, Neg. LLF: 115.1208051146486
Iteration: 2, Func. Count: 31, Neg. LLF: 115.38726390840998
Iteration: 3, Func. Count: 47, Neg. LLF: 161.6188191157771
Iteration: 4, Func. Count: 64, Neg. LLF: 163.8062111255587
Iteration: 5, Func. Count: 80, Neg. LLF: 211.50204262706598
Iteration: 6, Func. Count: 96, Neg. LLF: 125.25792435564782
Iteration: 7, Func. Count: 112, Neg. LLF: 124.32562507439582
Iteration: 8, Func. Count: 128, Neg. LLF: 129.9880692489664
Iteration: 9, Func. Count: 144, Neg. LLF: 113.51051267287085
Iteration: 10, Func. Count: 160, Neg. LLF: 113.43405674652958
Iteration: 11, Func. Count: 176, Neg. LLF: 118.58215652066251
Iteration: 12, Func. Count: 192, Neg. LLF: 113.31714190135774
Iteration: 13, Func. Count: 208, Neg. LLF: 111.21846326773921
Iteration: 14, Func. Count: 223, Neg. LLF: 111.20416653610113
Iteration: 15, Func. Count: 238, Neg. LLF: 111.19986081762485
Iteration: 16, Func. Count: 253, Neg. LLF: 111.1987792277994
Iteration: 17, Func. Count: 268, Neg. LLF: 111.19846039164594
Iteration: 18, Func. Count: 283, Neg. LLF: 111.19844459717307
Iteration: 19, Func. Count: 298, Neg. LLF: 111.19843511379926
Iteration: 20, Func. Count: 313, Neg. LLF: 111.19843416137226
Optimization terminated successfully (Exit mode 0)
Current function value: 111.19843416137226
Iterations: 20
Function evaluations: 313
Gradient evaluations: 20
Iteration: 1, Func. Count: 8, Neg. LLF: 135.07376176008972
Iteration: 2, Func. Count: 17, Neg. LLF: 508.4694904078538
Iteration: 3, Func. Count: 25, Neg. LLF: 116.51238802581176
Iteration: 4, Func. Count: 33, Neg. LLF: 114.75914768128338
Iteration: 5, Func. Count: 40, Neg. LLF: 114.66216405824213
Iteration: 6, Func. Count: 47, Neg. LLF: 114.53257718079783
Iteration: 7, Func. Count: 54, Neg. LLF: 114.51695081155313
Iteration: 8, Func. Count: 61, Neg. LLF: 114.51526942604497
Iteration: 9, Func. Count: 68, Neg. LLF: 114.51523414533828
Iteration: 10, Func. Count: 75, Neg. LLF: 114.51523341281549
Optimization terminated successfully (Exit mode 0)
Current function value: 114.51523341281549
Iterations: 10
Function evaluations: 75
Gradient evaluations: 10
Iteration: 1, Func. Count: 5, Neg. LLF: 122.670898035804
Iteration: 2, Func. Count: 10, Neg. LLF: 117.95424730561066
Iteration: 3, Func. Count: 14, Neg. LLF: 117.14483850025972
Iteration: 4, Func. Count: 18, Neg. LLF: 117.017427080967
Iteration: 5, Func. Count: 22, Neg. LLF: 116.98415805713013
Iteration: 6, Func. Count: 26, Neg. LLF: 116.98268573712666
Iteration: 7, Func. Count: 30, Neg. LLF: 116.98267588765778
Iteration: 8, Func. Count: 33, Neg. LLF: 116.98267594861693
Optimization terminated successfully (Exit mode 0)
Current function value: 116.98267588765778
Iterations: 8
Function evaluations: 33
Gradient evaluations: 8
Iteration: 1, Func. Count: 6, Neg. LLF: 165.01646553218035
Iteration: 2, Func. Count: 13, Neg. LLF: 116.84136220307006
Iteration: 3, Func. Count: 19, Neg. LLF: 118.99880970333263
Iteration: 4, Func. Count: 25, Neg. LLF: 118.66221621889208
Iteration: 5, Func. Count: 31, Neg. LLF: 116.39245273212414
Iteration: 6, Func. Count: 36, Neg. LLF: 116.65907814921769
Iteration: 7, Func. Count: 42, Neg. LLF: 116.22594103577859
Iteration: 8, Func. Count: 47, Neg. LLF: 116.20583469928036
Iteration: 9, Func. Count: 52, Neg. LLF: 116.19974544546142
Iteration: 10, Func. Count: 57, Neg. LLF: 116.19953663467494
Iteration: 11, Func. Count: 62, Neg. LLF: 116.19953284330231
Iteration: 12, Func. Count: 66, Neg. LLF: 116.19953271911729
Optimization terminated successfully (Exit mode 0)
Current function value: 116.19953284330231
Iterations: 12
Function evaluations: 66
Gradient evaluations: 12
Iteration: 1, Func. Count: 7, Neg. LLF: 158.79392021258707
Iteration: 2, Func. Count: 16, Neg. LLF: 117.08074570128457
Iteration: 3, Func. Count: 23, Neg. LLF: 116.85420168834723
Iteration: 4, Func. Count: 30, Neg. LLF: 116.48256956301448
Iteration: 5, Func. Count: 37, Neg. LLF: 116.40421051343681
Iteration: 6, Func. Count: 43, Neg. LLF: 116.32923483420977
Iteration: 7, Func. Count: 49, Neg. LLF: 116.30099807656296
Iteration: 8, Func. Count: 55, Neg. LLF: 116.26979885595316
Iteration: 9, Func. Count: 61, Neg. LLF: 116.20429401550982
Iteration: 10, Func. Count: 67, Neg. LLF: 116.20128218121435
Iteration: 11, Func. Count: 73, Neg. LLF: 116.1997544688608
Iteration: 12, Func. Count: 79, Neg. LLF: 116.19953804473137
Iteration: 13, Func. Count: 85, Neg. LLF: 116.19953267734144
Iteration: 14, Func. Count: 90, Neg. LLF: 116.19953255796858
Optimization terminated successfully (Exit mode 0)
Current function value: 116.19953267734144
Iterations: 14
Function evaluations: 90
Gradient evaluations: 14
Iteration: 1, Func. Count: 8, Neg. LLF: 155.22717254528814
Iteration: 2, Func. Count: 18, Neg. LLF: 117.55249069117343
Iteration: 3, Func. Count: 26, Neg. LLF: 116.88041304731807
Iteration: 4, Func. Count: 34, Neg. LLF: 116.4428708714372
Iteration: 5, Func. Count: 41, Neg. LLF: 116.42852910286423
Iteration: 6, Func. Count: 48, Neg. LLF: 116.36176103228235
Iteration: 7, Func. Count: 55, Neg. LLF: 116.2287148874111
Iteration: 8, Func. Count: 62, Neg. LLF: 116.28022760039299
Iteration: 9, Func. Count: 70, Neg. LLF: 119.86551913797965
Iteration: 10, Func. Count: 78, Neg. LLF: 114.79353387364526
Iteration: 11, Func. Count: 85, Neg. LLF: 114.36253108700399
Iteration: 12, Func. Count: 92, Neg. LLF: 114.61940179148951
Iteration: 13, Func. Count: 100, Neg. LLF: 113.88646460956106
Iteration: 14, Func. Count: 107, Neg. LLF: 113.88445773648944
Iteration: 15, Func. Count: 114, Neg. LLF: 113.88413543936167
Iteration: 16, Func. Count: 121, Neg. LLF: 113.88240291658623
Iteration: 17, Func. Count: 128, Neg. LLF: 113.88041376702509
Iteration: 18, Func. Count: 135, Neg. LLF: 113.88015649354041
Iteration: 19, Func. Count: 142, Neg. LLF: 113.88011185922804
Iteration: 20, Func. Count: 148, Neg. LLF: 113.88011174285252
Optimization terminated successfully (Exit mode 0)
Current function value: 113.88011185922804
Iterations: 20
Function evaluations: 148
Gradient evaluations: 20
Iteration: 1, Func. Count: 9, Neg. LLF: 135.61068274394597
Iteration: 2, Func. Count: 18, Neg. LLF: 116.52220676284529
Iteration: 3, Func. Count: 26, Neg. LLF: 117.08978401764375
Iteration: 4, Func. Count: 35, Neg. LLF: 116.52611510434467
Iteration: 5, Func. Count: 44, Neg. LLF: 116.51134413148841
Iteration: 6, Func. Count: 52, Neg. LLF: 116.49107294268524
Iteration: 7, Func. Count: 60, Neg. LLF: 116.49189074823002
Iteration: 8, Func. Count: 69, Neg. LLF: 116.48675102426691
Iteration: 9, Func. Count: 77, Neg. LLF: 116.47735772653283
Iteration: 10, Func. Count: 85, Neg. LLF: 116.47699978394634
Iteration: 11, Func. Count: 93, Neg. LLF: 116.47632632314793
Iteration: 12, Func. Count: 101, Neg. LLF: 116.41565807470099
Iteration: 13, Func. Count: 109, Neg. LLF: 116.35223289990091
Iteration: 14, Func. Count: 117, Neg. LLF: 116.21883011351906
Iteration: 15, Func. Count: 125, Neg. LLF: 116.23647279311547
Iteration: 16, Func. Count: 134, Neg. LLF: 116.22385748764897
Iteration: 17, Func. Count: 143, Neg. LLF: 116.20246443893396
Iteration: 18, Func. Count: 152, Neg. LLF: 35500290.20014612
Iteration: 19, Func. Count: 163, Neg. LLF: 116.48371948523845
Iteration: 20, Func. Count: 172, Neg. LLF: 116.86248704049075
Iteration: 21, Func. Count: 182, Neg. LLF: 116.19962276985488
Iteration: 22, Func. Count: 190, Neg. LLF: 116.19953285032274
Iteration: 23, Func. Count: 197, Neg. LLF: 116.19953275207685
Optimization terminated successfully (Exit mode 0)
Current function value: 116.19953285032274
Iterations: 24
Function evaluations: 197
Gradient evaluations: 23
Iteration: 1, Func. Count: 6, Neg. LLF: 127.27494049277585
Iteration: 2, Func. Count: 12, Neg. LLF: 139.62911660492512
Iteration: 3, Func. Count: 18, Neg. LLF: 117.44343460251639
Iteration: 4, Func. Count: 23, Neg. LLF: 117.26466359104286
Iteration: 5, Func. Count: 28, Neg. LLF: 117.03641686796585
Iteration: 6, Func. Count: 33, Neg. LLF: 116.9872246288832
Iteration: 7, Func. Count: 38, Neg. LLF: 116.98276076731213
Iteration: 8, Func. Count: 43, Neg. LLF: 116.98267606093724
Iteration: 9, Func. Count: 47, Neg. LLF: 116.98267610874245
Optimization terminated successfully (Exit mode 0)
Current function value: 116.98267606093724
Iterations: 9
Function evaluations: 47
Gradient evaluations: 9
Iteration: 1, Func. Count: 7, Neg. LLF: 164.619440277561
Iteration: 2, Func. Count: 15, Neg. LLF: 120.45568994598644
Iteration: 3, Func. Count: 22, Neg. LLF: 116.42154866650586
Iteration: 4, Func. Count: 28, Neg. LLF: 116.06752196554055
Iteration: 5, Func. Count: 34, Neg. LLF: 118.12200216678775
Iteration: 6, Func. Count: 41, Neg. LLF: 115.88729923066002
Iteration: 7, Func. Count: 47, Neg. LLF: 115.885356415588
Iteration: 8, Func. Count: 53, Neg. LLF: 115.88498863191323
Iteration: 9, Func. Count: 59, Neg. LLF: 115.88486475470654
Iteration: 10, Func. Count: 64, Neg. LLF: 115.88486456243656
Optimization terminated successfully (Exit mode 0)
Current function value: 115.88486475470654
Iterations: 10
Function evaluations: 64
Gradient evaluations: 10
Iteration: 1, Func. Count: 8, Neg. LLF: 143.02951715567826
Iteration: 2, Func. Count: 18, Neg. LLF: 142.5289791891752
Iteration: 3, Func. Count: 27, Neg. LLF: 116.00846655240112
Iteration: 4, Func. Count: 34, Neg. LLF: 115.50330274786187
Iteration: 5, Func. Count: 41, Neg. LLF: 114.91830320933425
Iteration: 6, Func. Count: 48, Neg. LLF: 114.88989896234224
Iteration: 7, Func. Count: 56, Neg. LLF: 114.73416309095947
Iteration: 8, Func. Count: 63, Neg. LLF: 114.73119004993899
Iteration: 9, Func. Count: 70, Neg. LLF: 114.73045892334976
Iteration: 10, Func. Count: 78, Neg. LLF: 114.75706201404002
Iteration: 11, Func. Count: 87, Neg. LLF: 114.74037726480466
Iteration: 12, Func. Count: 96, Neg. LLF: 114.73249426141805
Iteration: 13, Func. Count: 105, Neg. LLF: 114.73132736871206
Iteration: 14, Func. Count: 111, Neg. LLF: 114.7313271441084
Optimization terminated successfully (Exit mode 0)
Current function value: 114.73132736871206
Iterations: 15
Function evaluations: 111
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 125.18125866331926
Iteration: 2, Func. Count: 20, Neg. LLF: 139.22654567159475
Iteration: 3, Func. Count: 30, Neg. LLF: 116.04746361340136
Iteration: 4, Func. Count: 38, Neg. LLF: 115.7924862510595
Iteration: 5, Func. Count: 46, Neg. LLF: 117.23604977792135
Iteration: 6, Func. Count: 55, Neg. LLF: 118.06914746630139
Iteration: 7, Func. Count: 64, Neg. LLF: 117.79673422684667
Iteration: 8, Func. Count: 73, Neg. LLF: 115.41222115446433
Iteration: 9, Func. Count: 81, Neg. LLF: 115.37888512196285
Iteration: 10, Func. Count: 89, Neg. LLF: 115.36449867455877
Iteration: 11, Func. Count: 97, Neg. LLF: 115.36168382953375
Iteration: 12, Func. Count: 105, Neg. LLF: 115.36160412434144
Iteration: 13, Func. Count: 113, Neg. LLF: 115.36159345549105
Iteration: 14, Func. Count: 121, Neg. LLF: 115.36158956703294
Iteration: 15, Func. Count: 128, Neg. LLF: 115.36158942467614
Optimization terminated successfully (Exit mode 0)
Current function value: 115.36158956703294
Iterations: 15
Function evaluations: 128
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 136.0568760514178
Iteration: 2, Func. Count: 21, Neg. LLF: 117.06040192644075
Iteration: 3, Func. Count: 31, Neg. LLF: 116.90713147268782
Iteration: 4, Func. Count: 41, Neg. LLF: 116.67263364988021
Iteration: 5, Func. Count: 51, Neg. LLF: 116.53949867086116
Iteration: 6, Func. Count: 61, Neg. LLF: 116.50957990671719
Iteration: 7, Func. Count: 70, Neg. LLF: 116.45366964717245
Iteration: 8, Func. Count: 79, Neg. LLF: 116.21862546962649
Iteration: 9, Func. Count: 88, Neg. LLF: 116.2719924304847
Iteration: 10, Func. Count: 98, Neg. LLF: 116.23428234296422
Iteration: 11, Func. Count: 108, Neg. LLF: 115.67998925144272
Iteration: 12, Func. Count: 117, Neg. LLF: 115.17901936202608
Iteration: 13, Func. Count: 126, Neg. LLF: 115.08272726842577
Iteration: 14, Func. Count: 136, Neg. LLF: 114.63713161766567
Iteration: 15, Func. Count: 145, Neg. LLF: 114.2189484095193
Iteration: 16, Func. Count: 154, Neg. LLF: 113.96511568494422
Iteration: 17, Func. Count: 163, Neg. LLF: 113.88813151938356
Iteration: 18, Func. Count: 172, Neg. LLF: 113.88322228425838
Iteration: 19, Func. Count: 181, Neg. LLF: 113.88185964604443
Iteration: 20, Func. Count: 190, Neg. LLF: 113.88023286455905
Iteration: 21, Func. Count: 199, Neg. LLF: 113.8801201976316
Iteration: 22, Func. Count: 208, Neg. LLF: 113.8801203305223
Optimization terminated successfully (Exit mode 0)
Current function value: 113.88011930064931
Iterations: 22
Function evaluations: 209
Gradient evaluations: 22
Iteration: 1, Func. Count: 7, Neg. LLF: 129.68983230147498
Iteration: 2, Func. Count: 14, Neg. LLF: 146.734280993473
Iteration: 3, Func. Count: 21, Neg. LLF: 117.33041882743899
Iteration: 4, Func. Count: 27, Neg. LLF: 117.1826570223796
Iteration: 5, Func. Count: 33, Neg. LLF: 117.03163099898212
Iteration: 6, Func. Count: 39, Neg. LLF: 116.986146046334
Iteration: 7, Func. Count: 45, Neg. LLF: 116.9827239075169
Iteration: 8, Func. Count: 51, Neg. LLF: 116.98267594002002
Iteration: 9, Func. Count: 56, Neg. LLF: 116.98267598269244
Optimization terminated successfully (Exit mode 0)
Current function value: 116.98267594002002
Iterations: 9
Function evaluations: 56
Gradient evaluations: 9
Iteration: 1, Func. Count: 8, Neg. LLF: 120.37168304780829
Iteration: 2, Func. Count: 19, Neg. LLF: 219.19354276530336
Iteration: 3, Func. Count: 28, Neg. LLF: 115.70628950238817
Iteration: 4, Func. Count: 35, Neg. LLF: 118.15553231171118
Iteration: 5, Func. Count: 43, Neg. LLF: 115.68163116065566
Iteration: 6, Func. Count: 51, Neg. LLF: 115.58134166150968
Iteration: 7, Func. Count: 58, Neg. LLF: 115.5739760942137
Iteration: 8, Func. Count: 65, Neg. LLF: 115.57373055718602
Iteration: 9, Func. Count: 72, Neg. LLF: 115.57369818465746
Iteration: 10, Func. Count: 78, Neg. LLF: 115.5736979567623
Optimization terminated successfully (Exit mode 0)
Current function value: 115.57369818465746
Iterations: 10
Function evaluations: 78
Gradient evaluations: 10
Iteration: 1, Func. Count: 9, Neg. LLF: 120.76810068027613
Iteration: 2, Func. Count: 21, Neg. LLF: 149.11214871774752
Iteration: 3, Func. Count: 31, Neg. LLF: 116.10189764839235
Iteration: 4, Func. Count: 39, Neg. LLF: 116.01619123662395
Iteration: 5, Func. Count: 47, Neg. LLF: 115.90083689049136
Iteration: 6, Func. Count: 55, Neg. LLF: 115.90110020183769
Iteration: 7, Func. Count: 64, Neg. LLF: 115.89534866474197
Iteration: 8, Func. Count: 72, Neg. LLF: 115.89512485319459
Iteration: 9, Func. Count: 80, Neg. LLF: 115.89469957798708
Iteration: 10, Func. Count: 88, Neg. LLF: 115.846377605556
Iteration: 11, Func. Count: 96, Neg. LLF: 115.59643183986807
Iteration: 12, Func. Count: 104, Neg. LLF: 115.57752284030543
Iteration: 13, Func. Count: 112, Neg. LLF: 115.57351359486404
Iteration: 14, Func. Count: 120, Neg. LLF: 115.57356620449123
Iteration: 15, Func. Count: 128, Neg. LLF: 115.57349059006857
Iteration: 16, Func. Count: 146, Neg. LLF: 115.57601864373247
Iteration: 17, Func. Count: 156, Neg. LLF: 115.57427796094663
Iteration: 18, Func. Count: 166, Neg. LLF: 115.5849308645026
Iteration: 19, Func. Count: 176, Neg. LLF: 115.57369812583481
Iteration: 20, Func. Count: 183, Neg. LLF: 115.57369790709726
Optimization terminated successfully (Exit mode 0)
Current function value: 115.57369812583481
Iterations: 21
Function evaluations: 183
Gradient evaluations: 20
Iteration: 1, Func. Count: 10, Neg. LLF: 123.99975366158499
Iteration: 2, Func. Count: 22, Neg. LLF: 152.9492172681013
Iteration: 3, Func. Count: 33, Neg. LLF: 116.32970627440328
Iteration: 4, Func. Count: 42, Neg. LLF: 115.81512422480016
Iteration: 5, Func. Count: 51, Neg. LLF: 117.21594187365139
Iteration: 6, Func. Count: 61, Neg. LLF: 117.23108502783279
Iteration: 7, Func. Count: 71, Neg. LLF: 117.87338493656183
Iteration: 8, Func. Count: 81, Neg. LLF: 115.54203380404475
Iteration: 9, Func. Count: 91, Neg. LLF: 115.36709706124222
Iteration: 10, Func. Count: 100, Neg. LLF: 115.3620211645456
Iteration: 11, Func. Count: 109, Neg. LLF: 115.36166673119305
Iteration: 12, Func. Count: 118, Neg. LLF: 115.36158994786983
Iteration: 13, Func. Count: 126, Neg. LLF: 115.36158980562726
Optimization terminated successfully (Exit mode 0)
Current function value: 115.36158994786983
Iterations: 13
Function evaluations: 126
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 136.1036130813999
Iteration: 2, Func. Count: 23, Neg. LLF: 117.05926754820027
Iteration: 3, Func. Count: 34, Neg. LLF: 116.89208056722666
Iteration: 4, Func. Count: 45, Neg. LLF: 116.55054542943097
Iteration: 5, Func. Count: 56, Neg. LLF: 121.85345898894411
Iteration: 6, Func. Count: 67, Neg. LLF: 116.35388448593297
Iteration: 7, Func. Count: 77, Neg. LLF: 115.84627552689338
Iteration: 8, Func. Count: 87, Neg. LLF: 116.52562516088399
Iteration: 9, Func. Count: 98, Neg. LLF: 115.70790002795337
Iteration: 10, Func. Count: 108, Neg. LLF: 115.63922621713998
Iteration: 11, Func. Count: 118, Neg. LLF: 115.57814110336656
Iteration: 12, Func. Count: 128, Neg. LLF: 115.57452782272651
Iteration: 13, Func. Count: 138, Neg. LLF: 115.57378372138709
Iteration: 14, Func. Count: 148, Neg. LLF: 115.57371064709871
Iteration: 15, Func. Count: 158, Neg. LLF: 115.57369816005072
Iteration: 16, Func. Count: 167, Neg. LLF: 115.57369794340532
Optimization terminated successfully (Exit mode 0)
Current function value: 115.57369816005072
Iterations: 16
Function evaluations: 167
Gradient evaluations: 16
Iteration: 1, Func. Count: 8, Neg. LLF: 135.1371037107591
Iteration: 2, Func. Count: 17, Neg. LLF: 415.2457817061897
Iteration: 3, Func. Count: 25, Neg. LLF: 115.7627634217533
Iteration: 4, Func. Count: 33, Neg. LLF: 114.25213856485009
Iteration: 5, Func. Count: 40, Neg. LLF: 114.20408132652587
Iteration: 6, Func. Count: 47, Neg. LLF: 114.14961247321904
Iteration: 7, Func. Count: 54, Neg. LLF: 114.14530043038572
Iteration: 8, Func. Count: 61, Neg. LLF: 114.14513475614663
Iteration: 9, Func. Count: 68, Neg. LLF: 114.145132216194
Iteration: 10, Func. Count: 74, Neg. LLF: 114.14513221619312
Optimization terminated successfully (Exit mode 0)
Current function value: 114.145132216194
Iterations: 10
Function evaluations: 74
Gradient evaluations: 10
Iteration: 1, Func. Count: 9, Neg. LLF: 134.55206398307487
Iteration: 2, Func. Count: 23, Neg. LLF: 13872182.104802426
Iteration: 3, Func. Count: 33, Neg. LLF: 121.63003179671612
Iteration: 4, Func. Count: 42, Neg. LLF: 114.73286023071616
Iteration: 5, Func. Count: 50, Neg. LLF: 114.72413063237144
Iteration: 6, Func. Count: 58, Neg. LLF: 114.72042905331674
Iteration: 7, Func. Count: 66, Neg. LLF: 114.72020593641926
Iteration: 8, Func. Count: 74, Neg. LLF: 114.72019310891497
Iteration: 9, Func. Count: 82, Neg. LLF: 114.7201886973194
Iteration: 10, Func. Count: 90, Neg. LLF: 114.72017072478849
Iteration: 11, Func. Count: 98, Neg. LLF: 114.72015839948406
Iteration: 12, Func. Count: 106, Neg. LLF: 114.72015247681755
Iteration: 13, Func. Count: 114, Neg. LLF: 114.72015170341874
Optimization terminated successfully (Exit mode 0)
Current function value: 114.72015170341874
Iterations: 13
Function evaluations: 114
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 138.72008872767094
Iteration: 2, Func. Count: 24, Neg. LLF: 1368.8345645338447
Iteration: 3, Func. Count: 34, Neg. LLF: 120.86421956355592
Iteration: 4, Func. Count: 44, Neg. LLF: 114.62268560376323
Iteration: 5, Func. Count: 53, Neg. LLF: 114.41084412469229
Iteration: 6, Func. Count: 62, Neg. LLF: 114.38632879745344
Iteration: 7, Func. Count: 71, Neg. LLF: 114.3777830835822
Iteration: 8, Func. Count: 80, Neg. LLF: 114.36070533476783
Iteration: 9, Func. Count: 89, Neg. LLF: 114.14258939808455
Iteration: 10, Func. Count: 98, Neg. LLF: 116.05326852761497
Iteration: 11, Func. Count: 108, Neg. LLF: 114.84268009879935
Iteration: 12, Func. Count: 118, Neg. LLF: 114.38900778319508
Iteration: 13, Func. Count: 128, Neg. LLF: 113.96032029578909
Iteration: 14, Func. Count: 137, Neg. LLF: 113.96021101991359
Iteration: 15, Func. Count: 146, Neg. LLF: 113.96014331578742
Iteration: 16, Func. Count: 155, Neg. LLF: 113.96013129021132
Iteration: 17, Func. Count: 164, Neg. LLF: 113.96006745116523
Iteration: 18, Func. Count: 173, Neg. LLF: 113.95993573145932
Iteration: 19, Func. Count: 182, Neg. LLF: 113.9596767776048
Iteration: 20, Func. Count: 191, Neg. LLF: 113.94254058360096
Iteration: 21, Func. Count: 200, Neg. LLF: 113.62266385590311
Iteration: 22, Func. Count: 209, Neg. LLF: 113.61675674307084
Iteration: 23, Func. Count: 218, Neg. LLF: 113.61854941605317
Iteration: 24, Func. Count: 228, Neg. LLF: 117.28097553587087
Iteration: 25, Func. Count: 238, Neg. LLF: 125.62748809508527
Iteration: 26, Func. Count: 248, Neg. LLF: 115.16987243113968
Iteration: 27, Func. Count: 259, Neg. LLF: 113.51527890576145
Iteration: 28, Func. Count: 268, Neg. LLF: 113.5150602182545
Iteration: 29, Func. Count: 277, Neg. LLF: 113.5150596096101
Optimization terminated successfully (Exit mode 0)
Current function value: 113.5150596096101
Iterations: 30
Function evaluations: 277
Gradient evaluations: 29
Iteration: 1, Func. Count: 11, Neg. LLF: 116.03348005131232
Iteration: 2, Func. Count: 24, Neg. LLF: 260.42705390381127
Iteration: 3, Func. Count: 35, Neg. LLF: 17122.981472844822
Iteration: 4, Func. Count: 46, Neg. LLF: 114.87427629219866
Iteration: 5, Func. Count: 57, Neg. LLF: 113.54249044814493
Iteration: 6, Func. Count: 68, Neg. LLF: 112.62820418385986
Iteration: 7, Func. Count: 79, Neg. LLF: 112.17269093774551
Iteration: 8, Func. Count: 89, Neg. LLF: 112.2838075091334
Iteration: 9, Func. Count: 100, Neg. LLF: 113.94735937716736
Iteration: 10, Func. Count: 111, Neg. LLF: 111.9637807079332
Iteration: 11, Func. Count: 121, Neg. LLF: 111.95812518399784
Iteration: 12, Func. Count: 131, Neg. LLF: 111.95546584432425
Iteration: 13, Func. Count: 141, Neg. LLF: 111.9488921713031
Iteration: 14, Func. Count: 151, Neg. LLF: 111.9474127943566
Iteration: 15, Func. Count: 161, Neg. LLF: 111.94707475766211
Iteration: 16, Func. Count: 171, Neg. LLF: 111.94707292638192
Iteration: 17, Func. Count: 180, Neg. LLF: 111.94707285263739
Optimization terminated successfully (Exit mode 0)
Current function value: 111.94707292638192
Iterations: 17
Function evaluations: 180
Gradient evaluations: 17
Iteration: 1, Func. Count: 12, Neg. LLF: 118.63778659984193
Iteration: 2, Func. Count: 26, Neg. LLF: 315.5739024002836
Iteration: 3, Func. Count: 38, Neg. LLF: 470.1045012175736
Iteration: 4, Func. Count: 50, Neg. LLF: 115.5667117657518
Iteration: 5, Func. Count: 62, Neg. LLF: 113.86523907011644
Iteration: 6, Func. Count: 74, Neg. LLF: 113.2335696137458
Iteration: 7, Func. Count: 86, Neg. LLF: 112.55515454943693
Iteration: 8, Func. Count: 98, Neg. LLF: 112.21774838138509
Iteration: 9, Func. Count: 109, Neg. LLF: 112.00011286036707
Iteration: 10, Func. Count: 120, Neg. LLF: 111.96167489292387
Iteration: 11, Func. Count: 131, Neg. LLF: 111.95429651318275
Iteration: 12, Func. Count: 142, Neg. LLF: 111.95302253087088
Iteration: 13, Func. Count: 153, Neg. LLF: 111.94845421344657
Iteration: 14, Func. Count: 164, Neg. LLF: 111.94715592610802
Iteration: 15, Func. Count: 175, Neg. LLF: 111.94707409220705
Iteration: 16, Func. Count: 186, Neg. LLF: 111.94707293551689
Iteration: 17, Func. Count: 196, Neg. LLF: 111.94707293059564
Optimization terminated successfully (Exit mode 0)
Current function value: 111.94707293551689
Iterations: 17
Function evaluations: 196
Gradient evaluations: 17
Iteration: 1, Func. Count: 5, Neg. LLF: 121.76488405639083
Iteration: 2, Func. Count: 10, Neg. LLF: 121.90295304919287
Iteration: 3, Func. Count: 15, Neg. LLF: 117.30488073257142
Iteration: 4, Func. Count: 19, Neg. LLF: 116.9841751397622
Iteration: 5, Func. Count: 23, Neg. LLF: 116.98281229836341
Iteration: 6, Func. Count: 27, Neg. LLF: 116.98267674037619
Iteration: 7, Func. Count: 31, Neg. LLF: 116.98267593209067
Optimization terminated successfully (Exit mode 0)
Current function value: 116.98267593209067
Iterations: 7
Function evaluations: 31
Gradient evaluations: 7
Iteration: 1, Func. Count: 6, Neg. LLF: 150.40930676271321
Iteration: 2, Func. Count: 13, Neg. LLF: 116.77108706343546
Iteration: 3, Func. Count: 18, Neg. LLF: 116.65849523794033
Iteration: 4, Func. Count: 23, Neg. LLF: 116.68738710027661
Iteration: 5, Func. Count: 29, Neg. LLF: 117.2472400433796
Iteration: 6, Func. Count: 35, Neg. LLF: 117.16372219923817
Iteration: 7, Func. Count: 41, Neg. LLF: 117.99414118524811
Iteration: 8, Func. Count: 47, Neg. LLF: 116.47208456252146
Iteration: 9, Func. Count: 53, Neg. LLF: 116.46107650981068
Iteration: 10, Func. Count: 58, Neg. LLF: 116.45987961291132
Iteration: 11, Func. Count: 63, Neg. LLF: 116.45971652277275
Iteration: 12, Func. Count: 68, Neg. LLF: 116.4597056234952
Iteration: 13, Func. Count: 73, Neg. LLF: 116.45970513036727
Optimization terminated successfully (Exit mode 0)
Current function value: 116.45970513036727
Iterations: 13
Function evaluations: 73
Gradient evaluations: 13
Iteration: 1, Func. Count: 7, Neg. LLF: 143.88177222833107
Iteration: 2, Func. Count: 15, Neg. LLF: 116.66526074114087
Iteration: 3, Func. Count: 21, Neg. LLF: 117.02638120417218
Iteration: 4, Func. Count: 28, Neg. LLF: 116.79653772883483
Iteration: 5, Func. Count: 35, Neg. LLF: 116.64119919325987
Iteration: 6, Func. Count: 42, Neg. LLF: 116.47501388500709
Iteration: 7, Func. Count: 48, Neg. LLF: 116.56619988348419
Iteration: 8, Func. Count: 55, Neg. LLF: 116.46337483172786
Iteration: 9, Func. Count: 61, Neg. LLF: 116.46218400899674
Iteration: 10, Func. Count: 67, Neg. LLF: 116.46166795999568
Iteration: 11, Func. Count: 73, Neg. LLF: 116.46166543631136
Iteration: 12, Func. Count: 78, Neg. LLF: 116.46166543632482
Optimization terminated successfully (Exit mode 0)
Current function value: 116.46166543631136
Iterations: 12
Function evaluations: 78
Gradient evaluations: 12
Iteration: 1, Func. Count: 8, Neg. LLF: 141.0532813860377
Iteration: 2, Func. Count: 17, Neg. LLF: 116.5782131015074
Iteration: 3, Func. Count: 24, Neg. LLF: 116.81807952340168
Iteration: 4, Func. Count: 32, Neg. LLF: 116.79517735504467
Iteration: 5, Func. Count: 40, Neg. LLF: 116.67694071236974
Iteration: 6, Func. Count: 48, Neg. LLF: 116.49825133361347
Iteration: 7, Func. Count: 55, Neg. LLF: 116.49633836560392
Iteration: 8, Func. Count: 62, Neg. LLF: 116.49562179530031
Iteration: 9, Func. Count: 69, Neg. LLF: 116.48984894669779
Iteration: 10, Func. Count: 76, Neg. LLF: 116.47553815979396
Iteration: 11, Func. Count: 83, Neg. LLF: 116.4753152499194
Iteration: 12, Func. Count: 90, Neg. LLF: 116.4744922401982
Iteration: 13, Func. Count: 97, Neg. LLF: 116.47033618627299
Iteration: 14, Func. Count: 104, Neg. LLF: 116.47180901787208
Iteration: 15, Func. Count: 112, Neg. LLF: 1497.811122601325
Iteration: 16, Func. Count: 122, Neg. LLF: 116.73267177360874
Iteration: 17, Func. Count: 130, Neg. LLF: 116.46320683901791
Iteration: 18, Func. Count: 137, Neg. LLF: 116.46060945770323
Iteration: 19, Func. Count: 144, Neg. LLF: 116.45972826657461
Iteration: 20, Func. Count: 151, Neg. LLF: 116.45970599722803
Iteration: 21, Func. Count: 158, Neg. LLF: 116.45970519559967
Optimization terminated successfully (Exit mode 0)
Current function value: 116.45970519559967
Iterations: 22
Function evaluations: 158
Gradient evaluations: 21
Iteration: 1, Func. Count: 9, Neg. LLF: 139.5574582453594
Iteration: 2, Func. Count: 18, Neg. LLF: 116.80846684072418
Iteration: 3, Func. Count: 26, Neg. LLF: 116.96197272187253
Iteration: 4, Func. Count: 35, Neg. LLF: 116.70976989182105
Iteration: 5, Func. Count: 44, Neg. LLF: 116.71168278981746
Iteration: 6, Func. Count: 53, Neg. LLF: 116.52211253354469
Iteration: 7, Func. Count: 62, Neg. LLF: 116.51267469891644
Iteration: 8, Func. Count: 70, Neg. LLF: 116.50753462484475
Iteration: 9, Func. Count: 78, Neg. LLF: 116.48856376815463
Iteration: 10, Func. Count: 86, Neg. LLF: 116.48519602910063
Iteration: 11, Func. Count: 94, Neg. LLF: 116.4808487289112
Iteration: 12, Func. Count: 102, Neg. LLF: 116.48057841311575
Iteration: 13, Func. Count: 110, Neg. LLF: 116.48042636281895
Iteration: 14, Func. Count: 118, Neg. LLF: 116.48041682164734
Iteration: 15, Func. Count: 125, Neg. LLF: 116.48041682338673
Optimization terminated successfully (Exit mode 0)
Current function value: 116.48041682164734
Iterations: 15
Function evaluations: 125
Gradient evaluations: 15
Iteration: 1, Func. Count: 6, Neg. LLF: 122.69613539739301
Iteration: 2, Func. Count: 12, Neg. LLF: 120.73403164278504
Iteration: 3, Func. Count: 18, Neg. LLF: 117.28882808992216
Iteration: 4, Func. Count: 23, Neg. LLF: 117.18468772684575
Iteration: 5, Func. Count: 28, Neg. LLF: 117.0214361027667
Iteration: 6, Func. Count: 33, Neg. LLF: 116.98981993786569
Iteration: 7, Func. Count: 38, Neg. LLF: 116.98274631618281
Iteration: 8, Func. Count: 43, Neg. LLF: 116.9826778112118
Iteration: 9, Func. Count: 48, Neg. LLF: 116.98267588362543
Iteration: 10, Func. Count: 52, Neg. LLF: 116.9826758226667
Optimization terminated successfully (Exit mode 0)
Current function value: 116.98267588362543
Iterations: 10
Function evaluations: 52
Gradient evaluations: 10
Iteration: 1, Func. Count: 7, Neg. LLF: 151.46214940797802
Iteration: 2, Func. Count: 15, Neg. LLF: 116.76883172879893
Iteration: 3, Func. Count: 21, Neg. LLF: 116.5741216776085
Iteration: 4, Func. Count: 27, Neg. LLF: 117.8118338340644
Iteration: 5, Func. Count: 34, Neg. LLF: 116.76499125902382
Iteration: 6, Func. Count: 41, Neg. LLF: 116.90198194034856
Iteration: 7, Func. Count: 48, Neg. LLF: 116.55775743689597
Iteration: 8, Func. Count: 55, Neg. LLF: 116.41303702735804
Iteration: 9, Func. Count: 61, Neg. LLF: 116.41343557933939
Iteration: 10, Func. Count: 68, Neg. LLF: 116.33553528774642
Iteration: 11, Func. Count: 74, Neg. LLF: 116.2133276731785
Iteration: 12, Func. Count: 80, Neg. LLF: 116.20413744939596
Iteration: 13, Func. Count: 86, Neg. LLF: 116.19964347847434
Iteration: 14, Func. Count: 92, Neg. LLF: 116.19953185201729
Iteration: 15, Func. Count: 98, Neg. LLF: 116.19953367363513
Iteration: 16, Func. Count: 104, Neg. LLF: 116.19955622502704
Optimization terminated successfully (Exit mode 0)
Current function value: 116.19953366260259
Iterations: 17
Function evaluations: 106
Gradient evaluations: 16
Iteration: 1, Func. Count: 8, Neg. LLF: 144.57829759151963
Iteration: 2, Func. Count: 17, Neg. LLF: 116.65484516597469
Iteration: 3, Func. Count: 24, Neg. LLF: 117.0046878819009
Iteration: 4, Func. Count: 32, Neg. LLF: 116.61996905389157
Iteration: 5, Func. Count: 40, Neg. LLF: 116.53905553509796
Iteration: 6, Func. Count: 47, Neg. LLF: 116.50002135956281
Iteration: 7, Func. Count: 54, Neg. LLF: 116.48489726713504
Iteration: 8, Func. Count: 61, Neg. LLF: 116.47796949516902
Iteration: 9, Func. Count: 68, Neg. LLF: 116.4636666290311
Iteration: 10, Func. Count: 75, Neg. LLF: 116.4616967997817
Iteration: 11, Func. Count: 82, Neg. LLF: 116.46166574753966
Iteration: 12, Func. Count: 88, Neg. LLF: 116.46166574788374
Optimization terminated successfully (Exit mode 0)
Current function value: 116.46166574753966
Iterations: 12
Function evaluations: 88
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 140.97572952073446
Iteration: 2, Func. Count: 18, Neg. LLF: 116.70919737295623
Iteration: 3, Func. Count: 26, Neg. LLF: 120.93866140039266
Iteration: 4, Func. Count: 35, Neg. LLF: 117.1140140729275
Iteration: 5, Func. Count: 44, Neg. LLF: 116.83810142995236
Iteration: 6, Func. Count: 53, Neg. LLF: 116.7076016055728
Iteration: 7, Func. Count: 62, Neg. LLF: 116.51171619494367
Iteration: 8, Func. Count: 71, Neg. LLF: 116.49709163051173
Iteration: 9, Func. Count: 79, Neg. LLF: 116.4966240846752
Iteration: 10, Func. Count: 87, Neg. LLF: 116.49202104946309
Iteration: 11, Func. Count: 95, Neg. LLF: 116.47521280333683
Iteration: 12, Func. Count: 103, Neg. LLF: 116.47371363539538
Iteration: 13, Func. Count: 111, Neg. LLF: 116.47167247135278
Iteration: 14, Func. Count: 119, Neg. LLF: 116.46753404658124
Iteration: 15, Func. Count: 127, Neg. LLF: 116.38386162224502
Iteration: 16, Func. Count: 135, Neg. LLF: 119.29923732896742
Iteration: 17, Func. Count: 145, Neg. LLF: 118.85921384537573
Iteration: 18, Func. Count: 163, Neg. LLF: 126.51233565494002
Iteration: 19, Func. Count: 181, Neg. LLF: 132.42313779205256
Iteration: 20, Func. Count: 192, Neg. LLF: 137.99546992759758
Iteration: 21, Func. Count: 202, Neg. LLF: 116.20395644338096
Iteration: 22, Func. Count: 210, Neg. LLF: 116.76927316573305
Iteration: 23, Func. Count: 228, Neg. LLF: 174.94129732671905
Iteration: 24, Func. Count: 239, Neg. LLF: 117.12722143933624
Iteration: 25, Func. Count: 249, Neg. LLF: 116.20475740740584
Iteration: 26, Func. Count: 258, Neg. LLF: 116.19953416429703
Iteration: 27, Func. Count: 266, Neg. LLF: 116.19953286866767
Iteration: 28, Func. Count: 273, Neg. LLF: 116.1995327573896
Optimization terminated successfully (Exit mode 0)
Current function value: 116.19953286866767
Iterations: 29
Function evaluations: 273
Gradient evaluations: 28
Iteration: 1, Func. Count: 10, Neg. LLF: 139.23170663744278
Iteration: 2, Func. Count: 20, Neg. LLF: 116.7027722436197
Iteration: 3, Func. Count: 29, Neg. LLF: 119.5961767241245
Iteration: 4, Func. Count: 39, Neg. LLF: 116.7266056613807
Iteration: 5, Func. Count: 49, Neg. LLF: 116.55847001183291
Iteration: 6, Func. Count: 59, Neg. LLF: 116.52594238064839
Iteration: 7, Func. Count: 69, Neg. LLF: 116.5090933424493
Iteration: 8, Func. Count: 78, Neg. LLF: 116.50190837259774
Iteration: 9, Func. Count: 87, Neg. LLF: 116.4887125074131
Iteration: 10, Func. Count: 96, Neg. LLF: 116.4851346235887
Iteration: 11, Func. Count: 105, Neg. LLF: 116.47801616626799
Iteration: 12, Func. Count: 114, Neg. LLF: 116.47743125616876
Iteration: 13, Func. Count: 123, Neg. LLF: 116.4761577547077
Iteration: 14, Func. Count: 132, Neg. LLF: 116.46716741700718
Iteration: 15, Func. Count: 141, Neg. LLF: 116.46189257588014
Iteration: 16, Func. Count: 150, Neg. LLF: 116.44860672520834
Iteration: 17, Func. Count: 159, Neg. LLF: 117.84567467505394
Iteration: 18, Func. Count: 169, Neg. LLF: 120.32713758303449
Iteration: 19, Func. Count: 180, Neg. LLF: 35428091.72112524
Iteration: 20, Func. Count: 192, Neg. LLF: 118.63308559776895
Iteration: 21, Func. Count: 203, Neg. LLF: 116.22816811370029
Iteration: 22, Func. Count: 212, Neg. LLF: 116.24082385678635
Iteration: 23, Func. Count: 222, Neg. LLF: 116.22388261616017
Iteration: 24, Func. Count: 232, Neg. LLF: 116.19956574216143
Iteration: 25, Func. Count: 241, Neg. LLF: 116.19953547633469
Iteration: 26, Func. Count: 250, Neg. LLF: 116.19953059451099
Iteration: 27, Func. Count: 259, Neg. LLF: 116.20024349769659
Optimization terminated successfully (Exit mode 0)
Current function value: 116.19953059199938
Iterations: 29
Function evaluations: 262
Gradient evaluations: 27
Iteration: 1, Func. Count: 7, Neg. LLF: 127.89422760665506
Iteration: 2, Func. Count: 15, Neg. LLF: 124.34110987978985
Iteration: 3, Func. Count: 22, Neg. LLF: 116.98649088721295
Iteration: 4, Func. Count: 28, Neg. LLF: 116.98525618041144
Iteration: 5, Func. Count: 34, Neg. LLF: 116.98275482851959
Iteration: 6, Func. Count: 40, Neg. LLF: 116.98269539676822
Iteration: 7, Func. Count: 46, Neg. LLF: 116.98267816656879
Iteration: 8, Func. Count: 52, Neg. LLF: 116.98267596548587
Iteration: 9, Func. Count: 57, Neg. LLF: 116.9826760132954
Optimization terminated successfully (Exit mode 0)
Current function value: 116.98267596548587
Iterations: 9
Function evaluations: 57
Gradient evaluations: 9
Iteration: 1, Func. Count: 8, Neg. LLF: 151.2865397503857
Iteration: 2, Func. Count: 17, Neg. LLF: 116.76193920048186
Iteration: 3, Func. Count: 24, Neg. LLF: 116.53061679998083
Iteration: 4, Func. Count: 31, Neg. LLF: 118.03010600367152
Iteration: 5, Func. Count: 39, Neg. LLF: 118.31272420972306
Iteration: 6, Func. Count: 47, Neg. LLF: 116.2506111567375
Iteration: 7, Func. Count: 54, Neg. LLF: 137.46579910423765
Iteration: 8, Func. Count: 63, Neg. LLF: 116.21866695594271
Iteration: 9, Func. Count: 70, Neg. LLF: 116.10741460948998
Iteration: 10, Func. Count: 77, Neg. LLF: 115.93075514164265
Iteration: 11, Func. Count: 84, Neg. LLF: 115.89836951219364
Iteration: 12, Func. Count: 91, Neg. LLF: 115.88584185113184
Iteration: 13, Func. Count: 98, Neg. LLF: 115.88485752546605
Iteration: 14, Func. Count: 105, Neg. LLF: 115.8849564892799
Iteration: 15, Func. Count: 113, Neg. LLF: 116.64983260117634
Iteration: 16, Func. Count: 123, Neg. LLF: 115.91920868492268
Iteration: 17, Func. Count: 132, Neg. LLF: 115.88623760096434
Iteration: 18, Func. Count: 140, Neg. LLF: 115.88486454883072
Iteration: 19, Func. Count: 146, Neg. LLF: 115.88486435730648
Optimization terminated successfully (Exit mode 0)
Current function value: 115.88486454883072
Iterations: 20
Function evaluations: 146
Gradient evaluations: 19
Iteration: 1, Func. Count: 9, Neg. LLF: 144.40481587307272
Iteration: 2, Func. Count: 19, Neg. LLF: 116.65029049018769
Iteration: 3, Func. Count: 27, Neg. LLF: 116.88138221229649
Iteration: 4, Func. Count: 36, Neg. LLF: 116.89946589197517
Iteration: 5, Func. Count: 45, Neg. LLF: 116.21413417371797
Iteration: 6, Func. Count: 53, Neg. LLF: 230.73786614244702
Iteration: 7, Func. Count: 62, Neg. LLF: 115.6593514103687
Iteration: 8, Func. Count: 70, Neg. LLF: 115.65133257737536
Iteration: 9, Func. Count: 79, Neg. LLF: 115.08685779062053
Iteration: 10, Func. Count: 87, Neg. LLF: 114.85332783000841
Iteration: 11, Func. Count: 95, Neg. LLF: 114.7932031106781
Iteration: 12, Func. Count: 103, Neg. LLF: 114.7490791752207
Iteration: 13, Func. Count: 111, Neg. LLF: 114.73763028364505
Iteration: 14, Func. Count: 119, Neg. LLF: 114.72914610138415
Iteration: 15, Func. Count: 127, Neg. LLF: 114.73161274400482
Iteration: 16, Func. Count: 135, Neg. LLF: 114.72912543132453
Iteration: 17, Func. Count: 143, Neg. LLF: 114.7679549069189
Iteration: 18, Func. Count: 153, Neg. LLF: 114.73259901375536
Iteration: 19, Func. Count: 163, Neg. LLF: 114.73132738228422
Iteration: 20, Func. Count: 170, Neg. LLF: 114.7313271576899
Optimization terminated successfully (Exit mode 0)
Current function value: 114.73132738228422
Iterations: 21
Function evaluations: 170
Gradient evaluations: 20
Iteration: 1, Func. Count: 10, Neg. LLF: 141.02976473390638
Iteration: 2, Func. Count: 20, Neg. LLF: 116.72794413183267
Iteration: 3, Func. Count: 29, Neg. LLF: 117.92981522630578
Iteration: 4, Func. Count: 39, Neg. LLF: 116.93503533499634
Iteration: 5, Func. Count: 49, Neg. LLF: 116.55795474787004
Iteration: 6, Func. Count: 59, Neg. LLF: 116.19153810574818
Iteration: 7, Func. Count: 68, Neg. LLF: 118.57289842684419
Iteration: 8, Func. Count: 78, Neg. LLF: 116.29583315158429
Iteration: 9, Func. Count: 88, Neg. LLF: 117.78853159487284
Iteration: 10, Func. Count: 98, Neg. LLF: 116.98464493618953
Iteration: 11, Func. Count: 108, Neg. LLF: 115.64574599714068
Iteration: 12, Func. Count: 117, Neg. LLF: 115.55848671622901
Iteration: 13, Func. Count: 126, Neg. LLF: 115.50408891639667
Iteration: 14, Func. Count: 135, Neg. LLF: 115.45096391470113
Iteration: 15, Func. Count: 144, Neg. LLF: 115.42344010572383
Iteration: 16, Func. Count: 153, Neg. LLF: 115.38757900243311
Iteration: 17, Func. Count: 162, Neg. LLF: 115.37116646211695
Iteration: 18, Func. Count: 171, Neg. LLF: 115.36321623539257
Iteration: 19, Func. Count: 180, Neg. LLF: 115.36167564866453
Iteration: 20, Func. Count: 189, Neg. LLF: 115.36159285136193
Iteration: 21, Func. Count: 198, Neg. LLF: 115.36158975658472
Iteration: 22, Func. Count: 206, Neg. LLF: 115.36158961434471
Optimization terminated successfully (Exit mode 0)
Current function value: 115.36158975658472
Iterations: 22
Function evaluations: 206
Gradient evaluations: 22
Iteration: 1, Func. Count: 11, Neg. LLF: 139.8315149890882
Iteration: 2, Func. Count: 22, Neg. LLF: 116.74945152818252
Iteration: 3, Func. Count: 32, Neg. LLF: 117.2542225572303
Iteration: 4, Func. Count: 43, Neg. LLF: 116.69824712135677
Iteration: 5, Func. Count: 54, Neg. LLF: 116.932165430572
Iteration: 6, Func. Count: 65, Neg. LLF: 116.52425012073627
Iteration: 7, Func. Count: 76, Neg. LLF: 116.51041493748994
Iteration: 8, Func. Count: 86, Neg. LLF: 116.62473633835172
Iteration: 9, Func. Count: 97, Neg. LLF: 116.60232546699736
Iteration: 10, Func. Count: 108, Neg. LLF: 116.4492316797126
Iteration: 11, Func. Count: 118, Neg. LLF: 116.23729298152243
Iteration: 12, Func. Count: 128, Neg. LLF: 123.83666095236872
Iteration: 13, Func. Count: 139, Neg. LLF: 115.44164479498636
Iteration: 14, Func. Count: 149, Neg. LLF: 115.40113639355886
Iteration: 15, Func. Count: 159, Neg. LLF: 115.37849729181738
Iteration: 16, Func. Count: 169, Neg. LLF: 115.36688313797171
Iteration: 17, Func. Count: 179, Neg. LLF: 115.36250911634991
Iteration: 18, Func. Count: 189, Neg. LLF: 115.36198340736964
Iteration: 19, Func. Count: 199, Neg. LLF: 115.36164601848812
Iteration: 20, Func. Count: 209, Neg. LLF: 115.3615929835872
Iteration: 21, Func. Count: 219, Neg. LLF: 115.36158863505504
Iteration: 22, Func. Count: 229, Neg. LLF: 115.36158962103178
Optimization terminated successfully (Exit mode 0)
Current function value: 115.36158962103178
Iterations: 22
Function evaluations: 229
Gradient evaluations: 22
Iteration: 1, Func. Count: 8, Neg. LLF: 128.9309413318169
Iteration: 2, Func. Count: 17, Neg. LLF: 130.83135017793128
Iteration: 3, Func. Count: 25, Neg. LLF: 116.9963117369659
Iteration: 4, Func. Count: 32, Neg. LLF: 116.9894094804698
Iteration: 5, Func. Count: 39, Neg. LLF: 116.98434771016842
Iteration: 6, Func. Count: 46, Neg. LLF: 116.98360457673243
Iteration: 7, Func. Count: 53, Neg. LLF: 116.9827621518966
Iteration: 8, Func. Count: 60, Neg. LLF: 116.98268200704749
Iteration: 9, Func. Count: 67, Neg. LLF: 116.98267595131294
Iteration: 10, Func. Count: 73, Neg. LLF: 116.98267599399186
Optimization terminated successfully (Exit mode 0)
Current function value: 116.98267595131294
Iterations: 10
Function evaluations: 73
Gradient evaluations: 10
Iteration: 1, Func. Count: 9, Neg. LLF: 119.69944315163508
Iteration: 2, Func. Count: 19, Neg. LLF: 133.78572537392358
Iteration: 3, Func. Count: 29, Neg. LLF: 116.82060522181425
Iteration: 4, Func. Count: 38, Neg. LLF: 119.28793492605315
Iteration: 5, Func. Count: 48, Neg. LLF: 116.52658180922556
Iteration: 6, Func. Count: 56, Neg. LLF: 116.69473639581307
Iteration: 7, Func. Count: 65, Neg. LLF: 117.14082565692298
Iteration: 8, Func. Count: 74, Neg. LLF: 116.64355401572462
Iteration: 9, Func. Count: 83, Neg. LLF: 118.45462779569144
Iteration: 10, Func. Count: 92, Neg. LLF: 116.12281991436632
Iteration: 11, Func. Count: 100, Neg. LLF: 115.81234569395686
Iteration: 12, Func. Count: 108, Neg. LLF: 115.60103425716815
Iteration: 13, Func. Count: 116, Neg. LLF: 115.57462500792265
Iteration: 14, Func. Count: 124, Neg. LLF: 115.5737316756834
Iteration: 15, Func. Count: 132, Neg. LLF: 115.57370167974389
Iteration: 16, Func. Count: 140, Neg. LLF: 115.5736985052849
Iteration: 17, Func. Count: 147, Neg. LLF: 115.5736982781432
Optimization terminated successfully (Exit mode 0)
Current function value: 115.5736985052849
Iterations: 17
Function evaluations: 147
Gradient evaluations: 17
Iteration: 1, Func. Count: 10, Neg. LLF: 144.4079048458206
Iteration: 2, Func. Count: 21, Neg. LLF: 116.64636460515918
Iteration: 3, Func. Count: 30, Neg. LLF: 116.80544984638517
Iteration: 4, Func. Count: 40, Neg. LLF: 116.85660124927325
Iteration: 5, Func. Count: 50, Neg. LLF: 116.91949522829344
Iteration: 6, Func. Count: 60, Neg. LLF: 120.42833839247315
Iteration: 7, Func. Count: 70, Neg. LLF: 116.24978059748513
Iteration: 8, Func. Count: 79, Neg. LLF: 116.74551457783647
Iteration: 9, Func. Count: 89, Neg. LLF: 115.94809751798525
Iteration: 10, Func. Count: 98, Neg. LLF: 115.71452707341797
Iteration: 11, Func. Count: 107, Neg. LLF: 68925950.11912121
Iteration: 12, Func. Count: 119, Neg. LLF: 334.8459253177591
Iteration: 13, Func. Count: 130, Neg. LLF: 122.06579154453611
Iteration: 14, Func. Count: 141, Neg. LLF: 115.57409444395668
Iteration: 15, Func. Count: 150, Neg. LLF: 115.57370534186947
Iteration: 16, Func. Count: 159, Neg. LLF: 115.5736981337761
Iteration: 17, Func. Count: 167, Neg. LLF: 115.57369791510222
Optimization terminated successfully (Exit mode 0)
Current function value: 115.5736981337761
Iterations: 18
Function evaluations: 167
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 141.50120048963225
Iteration: 2, Func. Count: 22, Neg. LLF: 116.72671576961916
Iteration: 3, Func. Count: 32, Neg. LLF: 118.71722305674855
Iteration: 4, Func. Count: 43, Neg. LLF: 117.06624194480379
Iteration: 5, Func. Count: 54, Neg. LLF: 116.55449203478858
Iteration: 6, Func. Count: 64, Neg. LLF: 116.11324947860095
Iteration: 7, Func. Count: 74, Neg. LLF: 198.01533236238905
Iteration: 8, Func. Count: 85, Neg. LLF: 116.14827027021721
Iteration: 9, Func. Count: 96, Neg. LLF: 115.58406539165291
Iteration: 10, Func. Count: 106, Neg. LLF: 115.58169034913551
Iteration: 11, Func. Count: 117, Neg. LLF: 115.3950065807446
Iteration: 12, Func. Count: 127, Neg. LLF: 115.37115454035157
Iteration: 13, Func. Count: 137, Neg. LLF: 115.36219496259979
Iteration: 14, Func. Count: 147, Neg. LLF: 115.36159692309505
Iteration: 15, Func. Count: 157, Neg. LLF: 115.36158954140865
Iteration: 16, Func. Count: 166, Neg. LLF: 115.36158939905572
Optimization terminated successfully (Exit mode 0)
Current function value: 115.36158954140865
Iterations: 16
Function evaluations: 166
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 139.9176634499484
Iteration: 2, Func. Count: 24, Neg. LLF: 116.72774870502748
Iteration: 3, Func. Count: 35, Neg. LLF: 118.22581932965235
Iteration: 4, Func. Count: 47, Neg. LLF: 116.71441001825153
Iteration: 5, Func. Count: 59, Neg. LLF: 117.13524583079234
Iteration: 6, Func. Count: 71, Neg. LLF: 116.36477448612095
Iteration: 7, Func. Count: 82, Neg. LLF: 116.33829342197896
Iteration: 8, Func. Count: 93, Neg. LLF: 116.78877876479403
Iteration: 9, Func. Count: 105, Neg. LLF: 115.75055272420188
Iteration: 10, Func. Count: 116, Neg. LLF: 115.61681065152895
Iteration: 11, Func. Count: 127, Neg. LLF: 116.14632245632313
Iteration: 12, Func. Count: 139, Neg. LLF: 115.54360057785645
Iteration: 13, Func. Count: 150, Neg. LLF: 115.53843725253866
Iteration: 14, Func. Count: 161, Neg. LLF: 115.53764966300072
Iteration: 15, Func. Count: 172, Neg. LLF: 115.5373382190357
Iteration: 16, Func. Count: 183, Neg. LLF: 115.53727311120666
Iteration: 17, Func. Count: 194, Neg. LLF: 115.53727139721988
Iteration: 18, Func. Count: 205, Neg. LLF: 115.53727087022679
Optimization terminated successfully (Exit mode 0)
Current function value: 115.53727087022679
Iterations: 18
Function evaluations: 205
Gradient evaluations: 18
Iteration: 1, Func. Count: 9, Neg. LLF: 136.24491865224599
Iteration: 2, Func. Count: 19, Neg. LLF: 408.5447511195904
Iteration: 3, Func. Count: 28, Neg. LLF: 115.69621840786522
Iteration: 4, Func. Count: 37, Neg. LLF: 114.26620727533685
Iteration: 5, Func. Count: 45, Neg. LLF: 128.17556643048442
Iteration: 6, Func. Count: 55, Neg. LLF: 114.19566802954425
Iteration: 7, Func. Count: 63, Neg. LLF: 114.14866441068581
Iteration: 8, Func. Count: 71, Neg. LLF: 114.14482819211452
Iteration: 9, Func. Count: 79, Neg. LLF: 114.14467812716696
Iteration: 10, Func. Count: 87, Neg. LLF: 114.144676201156
Iteration: 11, Func. Count: 94, Neg. LLF: 114.14467620115838
Optimization terminated successfully (Exit mode 0)
Current function value: 114.144676201156
Iterations: 11
Function evaluations: 94
Gradient evaluations: 11
Iteration: 1, Func. Count: 10, Neg. LLF: 116.93192457837173
Iteration: 2, Func. Count: 20, Neg. LLF: 117.04636774605804
Iteration: 3, Func. Count: 30, Neg. LLF: 129.0792126651338
Iteration: 4, Func. Count: 40, Neg. LLF: 121.13344717592113
Iteration: 5, Func. Count: 50, Neg. LLF: 481.3661057825366
Iteration: 6, Func. Count: 60, Neg. LLF: 112.98269827713698
Iteration: 7, Func. Count: 69, Neg. LLF: 112.97574387633652
Iteration: 8, Func. Count: 78, Neg. LLF: 112.97462762054636
Iteration: 9, Func. Count: 87, Neg. LLF: 112.97369332483554
Iteration: 10, Func. Count: 96, Neg. LLF: 112.97368816279958
Iteration: 11, Func. Count: 104, Neg. LLF: 112.97368816281423
Optimization terminated successfully (Exit mode 0)
Current function value: 112.97368816279958
Iterations: 11
Function evaluations: 104
Gradient evaluations: 11
Iteration: 1, Func. Count: 11, Neg. LLF: 116.27842834936712
Iteration: 2, Func. Count: 22, Neg. LLF: 116.86778865229498
Iteration: 3, Func. Count: 33, Neg. LLF: 124.78716137292368
Iteration: 4, Func. Count: 44, Neg. LLF: 128.2380998752399
Iteration: 5, Func. Count: 55, Neg. LLF: 147799.96614013
Iteration: 6, Func. Count: 66, Neg. LLF: 113.21744504426039
Iteration: 7, Func. Count: 76, Neg. LLF: 113.00562253171661
Iteration: 8, Func. Count: 86, Neg. LLF: 112.98642621766915
Iteration: 9, Func. Count: 96, Neg. LLF: 112.97827875158002
Iteration: 10, Func. Count: 106, Neg. LLF: 112.9739340689354
Iteration: 11, Func. Count: 116, Neg. LLF: 112.97373426000708
Iteration: 12, Func. Count: 126, Neg. LLF: 112.97368883687312
Iteration: 13, Func. Count: 136, Neg. LLF: 112.97368814716903
Optimization terminated successfully (Exit mode 0)
Current function value: 112.97368814716903
Iterations: 13
Function evaluations: 136
Gradient evaluations: 13
Iteration: 1, Func. Count: 12, Neg. LLF: 115.75608451023564
Iteration: 2, Func. Count: 24, Neg. LLF: 119.01452725126504
Iteration: 3, Func. Count: 36, Neg. LLF: 112.35022653641914
Iteration: 4, Func. Count: 47, Neg. LLF: 139.4037590002171
Iteration: 5, Func. Count: 59, Neg. LLF: 118.60042052948064
Iteration: 6, Func. Count: 71, Neg. LLF: 143.31907504944917
Iteration: 7, Func. Count: 84, Neg. LLF: 112.01937375504244
Iteration: 8, Func. Count: 95, Neg. LLF: 112.042071168894
Iteration: 9, Func. Count: 107, Neg. LLF: 111.95344295499247
Iteration: 10, Func. Count: 118, Neg. LLF: 111.94775409185999
Iteration: 11, Func. Count: 129, Neg. LLF: 111.947159442434
Iteration: 12, Func. Count: 140, Neg. LLF: 111.94709721861163
Iteration: 13, Func. Count: 151, Neg. LLF: 111.94707475172916
Iteration: 14, Func. Count: 162, Neg. LLF: 111.94707299875677
Iteration: 15, Func. Count: 172, Neg. LLF: 111.94707292493712
Optimization terminated successfully (Exit mode 0)
Current function value: 111.94707299875677
Iterations: 15
Function evaluations: 172
Gradient evaluations: 15
Iteration: 1, Func. Count: 13, Neg. LLF: 115.50325120627267
Iteration: 2, Func. Count: 26, Neg. LLF: 119.35343460209283
Iteration: 3, Func. Count: 39, Neg. LLF: 117.24068832798771
Iteration: 4, Func. Count: 52, Neg. LLF: 113.92068053794365
Iteration: 5, Func. Count: 65, Neg. LLF: 370.5192492389868
Iteration: 6, Func. Count: 78, Neg. LLF: 116.5324166865212
Iteration: 7, Func. Count: 91, Neg. LLF: 112.19626588672303
Iteration: 8, Func. Count: 103, Neg. LLF: 112.15365181968049
Iteration: 9, Func. Count: 115, Neg. LLF: 112.02572192709461
Iteration: 10, Func. Count: 127, Neg. LLF: 111.98140291108919
Iteration: 11, Func. Count: 139, Neg. LLF: 111.95885788699054
Iteration: 12, Func. Count: 151, Neg. LLF: 111.95356841971159
Iteration: 13, Func. Count: 163, Neg. LLF: 111.94827449191719
Iteration: 14, Func. Count: 175, Neg. LLF: 111.94728871991755
Iteration: 15, Func. Count: 187, Neg. LLF: 111.9470896070289
Iteration: 16, Func. Count: 199, Neg. LLF: 111.94707355410408
Iteration: 17, Func. Count: 211, Neg. LLF: 111.94707291826651
Optimization terminated successfully (Exit mode 0)
Current function value: 111.94707291826651
Iterations: 17
Function evaluations: 211
Gradient evaluations: 17
Iteration: 1, Func. Count: 6, Neg. LLF: 126.44876071074353
Iteration: 2, Func. Count: 13, Neg. LLF: 117.12545787476088
Iteration: 3, Func. Count: 18, Neg. LLF: 119.46801381317788
Iteration: 4, Func. Count: 24, Neg. LLF: 119.5389098530759
Iteration: 5, Func. Count: 31, Neg. LLF: 116.96871856839327
Iteration: 6, Func. Count: 36, Neg. LLF: 116.96838258051936
Iteration: 7, Func. Count: 41, Neg. LLF: 116.96834500193233
Iteration: 8, Func. Count: 46, Neg. LLF: 116.96833475736754
Iteration: 9, Func. Count: 50, Neg. LLF: 116.96833475736568
Optimization terminated successfully (Exit mode 0)
Current function value: 116.96833475736754
Iterations: 9
Function evaluations: 50
Gradient evaluations: 9
Iteration: 1, Func. Count: 7, Neg. LLF: 149.83407861017363
Iteration: 2, Func. Count: 15, Neg. LLF: 116.84914424219278
Iteration: 3, Func. Count: 22, Neg. LLF: 120.87164820015904
Iteration: 4, Func. Count: 30, Neg. LLF: 116.71722946147933
Iteration: 5, Func. Count: 36, Neg. LLF: 116.62771951167016
Iteration: 6, Func. Count: 42, Neg. LLF: 116.61824173341694
Iteration: 7, Func. Count: 49, Neg. LLF: 116.83508714787571
Iteration: 8, Func. Count: 56, Neg. LLF: 116.76293148010659
Iteration: 9, Func. Count: 63, Neg. LLF: 116.4664145434427
Iteration: 10, Func. Count: 69, Neg. LLF: 116.46088467899607
Iteration: 11, Func. Count: 75, Neg. LLF: 116.45995153632688
Iteration: 12, Func. Count: 81, Neg. LLF: 116.45972465993263
Iteration: 13, Func. Count: 87, Neg. LLF: 116.45971755479061
Iteration: 14, Func. Count: 93, Neg. LLF: 116.45970515247504
Iteration: 15, Func. Count: 98, Neg. LLF: 116.4597051525297
Optimization terminated successfully (Exit mode 0)
Current function value: 116.45970515247504
Iterations: 15
Function evaluations: 98
Gradient evaluations: 15
Iteration: 1, Func. Count: 8, Neg. LLF: 144.18932978824313
Iteration: 2, Func. Count: 17, Neg. LLF: 116.71517941074495
Iteration: 3, Func. Count: 24, Neg. LLF: 116.60421386907583
Iteration: 4, Func. Count: 31, Neg. LLF: 116.54345705406021
Iteration: 5, Func. Count: 38, Neg. LLF: 116.58530978559669
Iteration: 6, Func. Count: 46, Neg. LLF: 116.56027852975322
Iteration: 7, Func. Count: 54, Neg. LLF: 116.48271178922575
Iteration: 8, Func. Count: 62, Neg. LLF: 116.4796163131818
Iteration: 9, Func. Count: 69, Neg. LLF: 116.47949198599352
Iteration: 10, Func. Count: 76, Neg. LLF: 116.4786338012249
Iteration: 11, Func. Count: 83, Neg. LLF: 116.47760313435606
Iteration: 12, Func. Count: 90, Neg. LLF: 116.47348313036261
Iteration: 13, Func. Count: 97, Neg. LLF: 116.46246062390543
Iteration: 14, Func. Count: 104, Neg. LLF: 116.45989104410333
Iteration: 15, Func. Count: 111, Neg. LLF: 116.4598285468421
Iteration: 16, Func. Count: 118, Neg. LLF: 116.45970631350822
Iteration: 17, Func. Count: 125, Neg. LLF: 116.45970514133535
Iteration: 18, Func. Count: 131, Neg. LLF: 116.45970514213026
Optimization terminated successfully (Exit mode 0)
Current function value: 116.45970514133535
Iterations: 18
Function evaluations: 131
Gradient evaluations: 18
Iteration: 1, Func. Count: 9, Neg. LLF: 141.11780869687436
Iteration: 2, Func. Count: 19, Neg. LLF: 116.58125211598225
Iteration: 3, Func. Count: 27, Neg. LLF: 116.83542595194803
Iteration: 4, Func. Count: 36, Neg. LLF: 117.35456951780716
Iteration: 5, Func. Count: 45, Neg. LLF: 116.51476032839574
Iteration: 6, Func. Count: 54, Neg. LLF: 116.49713175200972
Iteration: 7, Func. Count: 62, Neg. LLF: 116.49626809008154
Iteration: 8, Func. Count: 70, Neg. LLF: 116.49523594043734
Iteration: 9, Func. Count: 78, Neg. LLF: 116.49207580402832
Iteration: 10, Func. Count: 86, Neg. LLF: 116.48313782879423
Iteration: 11, Func. Count: 94, Neg. LLF: 116.4761990984869
Iteration: 12, Func. Count: 102, Neg. LLF: 116.47432322229724
Iteration: 13, Func. Count: 110, Neg. LLF: 116.47377153660467
Iteration: 14, Func. Count: 118, Neg. LLF: 116.47001265201615
Iteration: 15, Func. Count: 126, Neg. LLF: 116.45988599008926
Iteration: 16, Func. Count: 134, Neg. LLF: 116.4597577120412
Iteration: 17, Func. Count: 142, Neg. LLF: 159.32392696561973
Iteration: 18, Func. Count: 154, Neg. LLF: 116.45972589729838
Iteration: 19, Func. Count: 162, Neg. LLF: 116.45970813814988
Iteration: 20, Func. Count: 170, Neg. LLF: 116.45971204744735
Iteration: 21, Func. Count: 178, Neg. LLF: 116.45970539748814
Optimization terminated successfully (Exit mode 0)
Current function value: 116.45970539523891
Iterations: 22
Function evaluations: 178
Gradient evaluations: 21
Iteration: 1, Func. Count: 10, Neg. LLF: 138.5618211315926
Iteration: 2, Func. Count: 20, Neg. LLF: 116.89286644948395
Iteration: 3, Func. Count: 30, Neg. LLF: 117.38580399848274
Iteration: 4, Func. Count: 40, Neg. LLF: 116.74348996520382
Iteration: 5, Func. Count: 50, Neg. LLF: 116.53009932513089
Iteration: 6, Func. Count: 59, Neg. LLF: 116.51903555788468
Iteration: 7, Func. Count: 68, Neg. LLF: 116.51562698211148
Iteration: 8, Func. Count: 77, Neg. LLF: 116.51064207429118
Iteration: 9, Func. Count: 86, Neg. LLF: 116.4889716571347
Iteration: 10, Func. Count: 95, Neg. LLF: 116.48208964836543
Iteration: 11, Func. Count: 104, Neg. LLF: 116.48041741144709
Iteration: 12, Func. Count: 113, Neg. LLF: 116.48030350443896
Iteration: 13, Func. Count: 122, Neg. LLF: 116.48023244521015
Iteration: 14, Func. Count: 131, Neg. LLF: 116.48003319488043
Iteration: 15, Func. Count: 140, Neg. LLF: 116.463877153387
Iteration: 16, Func. Count: 149, Neg. LLF: 122.80468735645914
Iteration: 17, Func. Count: 161, Neg. LLF: 119.79186207223854
Iteration: 18, Func. Count: 171, Neg. LLF: 116.4616656312555
Optimization terminated successfully (Exit mode 0)
Current function value: 116.46166562985361
Iterations: 19
Function evaluations: 171
Gradient evaluations: 18
Iteration: 1, Func. Count: 7, Neg. LLF: 126.39287729476011
Iteration: 2, Func. Count: 15, Neg. LLF: 117.00923413901772
Iteration: 3, Func. Count: 21, Neg. LLF: 117.87528285235365
Iteration: 4, Func. Count: 28, Neg. LLF: 116.98155545538586
Iteration: 5, Func. Count: 35, Neg. LLF: 116.96840275633755
Iteration: 6, Func. Count: 41, Neg. LLF: 116.96833705340995
Iteration: 7, Func. Count: 47, Neg. LLF: 116.96833475731307
Iteration: 8, Func. Count: 52, Neg. LLF: 116.96833469504746
Optimization terminated successfully (Exit mode 0)
Current function value: 116.96833475731307
Iterations: 8
Function evaluations: 52
Gradient evaluations: 8
Iteration: 1, Func. Count: 8, Neg. LLF: 138.33694680939712
Iteration: 2, Func. Count: 17, Neg. LLF: 116.97196367042864
Iteration: 3, Func. Count: 25, Neg. LLF: 116.7414030249704
Iteration: 4, Func. Count: 32, Neg. LLF: 124.14407166561304
Iteration: 5, Func. Count: 41, Neg. LLF: 116.67336349154002
Iteration: 6, Func. Count: 48, Neg. LLF: 116.66323454472254
Iteration: 7, Func. Count: 56, Neg. LLF: 116.80212812657624
Iteration: 8, Func. Count: 64, Neg. LLF: 1479.1818304733076
Iteration: 9, Func. Count: 74, Neg. LLF: 116.678108938142
Iteration: 10, Func. Count: 82, Neg. LLF: 116.45092773029879
Iteration: 11, Func. Count: 89, Neg. LLF: 116.4976988626255
Iteration: 12, Func. Count: 97, Neg. LLF: 116.36507666166922
Iteration: 13, Func. Count: 104, Neg. LLF: 116.27407610024417
Iteration: 14, Func. Count: 111, Neg. LLF: 116.25654307916842
Iteration: 15, Func. Count: 119, Neg. LLF: 116.19956715953066
Iteration: 16, Func. Count: 126, Neg. LLF: 116.19953284448404
Iteration: 17, Func. Count: 132, Neg. LLF: 116.19953272053955
Optimization terminated successfully (Exit mode 0)
Current function value: 116.19953284448404
Iterations: 17
Function evaluations: 132
Gradient evaluations: 17
Iteration: 1, Func. Count: 9, Neg. LLF: 144.9156862058788
Iteration: 2, Func. Count: 19, Neg. LLF: 116.69868199092983
Iteration: 3, Func. Count: 27, Neg. LLF: 117.00074888831975
Iteration: 4, Func. Count: 36, Neg. LLF: 116.71200999922758
Iteration: 5, Func. Count: 45, Neg. LLF: 136.92681662977654
Iteration: 6, Func. Count: 55, Neg. LLF: 117.09971749577379
Iteration: 7, Func. Count: 64, Neg. LLF: 116.64762402920675
Iteration: 8, Func. Count: 73, Neg. LLF: 116.51309383397854
Iteration: 9, Func. Count: 82, Neg. LLF: 116.48072343099231
Iteration: 10, Func. Count: 90, Neg. LLF: 116.48031448381063
Iteration: 11, Func. Count: 98, Neg. LLF: 116.48370677865323
Iteration: 12, Func. Count: 107, Neg. LLF: 116.4799293298129
Iteration: 13, Func. Count: 115, Neg. LLF: 116.47940506338568
Iteration: 14, Func. Count: 123, Neg. LLF: 116.47917584910216
Iteration: 15, Func. Count: 131, Neg. LLF: 116.47764908001858
Iteration: 16, Func. Count: 139, Neg. LLF: 116.4623208055048
Iteration: 17, Func. Count: 147, Neg. LLF: 116.44467452338111
Iteration: 18, Func. Count: 155, Neg. LLF: 116.20283086886816
Iteration: 19, Func. Count: 163, Neg. LLF: 118.1384141459711
Iteration: 20, Func. Count: 172, Neg. LLF: 118.2216233792732
Iteration: 21, Func. Count: 182, Neg. LLF: 116.52405464312153
Iteration: 22, Func. Count: 192, Neg. LLF: 116.20009258676198
Iteration: 23, Func. Count: 200, Neg. LLF: 116.19953305835664
Iteration: 24, Func. Count: 207, Neg. LLF: 116.1995329393466
Optimization terminated successfully (Exit mode 0)
Current function value: 116.19953305835664
Iterations: 25
Function evaluations: 207
Gradient evaluations: 24
Iteration: 1, Func. Count: 10, Neg. LLF: 141.06322435289383
Iteration: 2, Func. Count: 21, Neg. LLF: 116.55638452968432
Iteration: 3, Func. Count: 30, Neg. LLF: 116.7740747971909
Iteration: 4, Func. Count: 40, Neg. LLF: 121.50005288346985
Iteration: 5, Func. Count: 50, Neg. LLF: 116.49777794400093
Iteration: 6, Func. Count: 59, Neg. LLF: 116.40244914195831
Iteration: 7, Func. Count: 68, Neg. LLF: 115.74409530186198
Iteration: 8, Func. Count: 77, Neg. LLF: 115.74457884585296
Iteration: 9, Func. Count: 87, Neg. LLF: 114.06538642632859
Iteration: 10, Func. Count: 96, Neg. LLF: 114.01155737524256
Iteration: 11, Func. Count: 105, Neg. LLF: 113.89457864017416
Iteration: 12, Func. Count: 114, Neg. LLF: 113.884668909416
Iteration: 13, Func. Count: 123, Neg. LLF: 113.88146964868835
Iteration: 14, Func. Count: 132, Neg. LLF: 113.88013202625301
Iteration: 15, Func. Count: 141, Neg. LLF: 113.8801119145656
Iteration: 16, Func. Count: 149, Neg. LLF: 113.88011179812551
Optimization terminated successfully (Exit mode 0)
Current function value: 113.8801119145656
Iterations: 16
Function evaluations: 149
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 138.27877707715652
Iteration: 2, Func. Count: 22, Neg. LLF: 116.73716908444491
Iteration: 3, Func. Count: 32, Neg. LLF: 120.96144774503821
Iteration: 4, Func. Count: 43, Neg. LLF: 116.64941665824105
Iteration: 5, Func. Count: 54, Neg. LLF: 116.5218595172458
Iteration: 6, Func. Count: 65, Neg. LLF: 116.5164547610142
Iteration: 7, Func. Count: 75, Neg. LLF: 116.50934898861735
Iteration: 8, Func. Count: 85, Neg. LLF: 116.4965904399493
Iteration: 9, Func. Count: 95, Neg. LLF: 116.48972089306224
Iteration: 10, Func. Count: 105, Neg. LLF: 116.48562433263056
Iteration: 11, Func. Count: 115, Neg. LLF: 116.48165357239054
Iteration: 12, Func. Count: 125, Neg. LLF: 116.47750244377787
Iteration: 13, Func. Count: 135, Neg. LLF: 116.47705133585407
Iteration: 14, Func. Count: 145, Neg. LLF: 116.47620319738368
Iteration: 15, Func. Count: 155, Neg. LLF: 116.47423753207357
Iteration: 16, Func. Count: 165, Neg. LLF: 116.46832360914368
Iteration: 17, Func. Count: 175, Neg. LLF: 116.3874869138925
Iteration: 18, Func. Count: 185, Neg. LLF: 116.26995607149091
Iteration: 19, Func. Count: 195, Neg. LLF: 35479352.74437387
Iteration: 20, Func. Count: 208, Neg. LLF: 136.97476351141273
Iteration: 21, Func. Count: 220, Neg. LLF: 116.30717990736336
Iteration: 22, Func. Count: 231, Neg. LLF: 116.20121322616633
Iteration: 23, Func. Count: 241, Neg. LLF: 116.19957700472352
Iteration: 24, Func. Count: 251, Neg. LLF: 116.1995340385406
Iteration: 25, Func. Count: 261, Neg. LLF: 116.19953289335744
Iteration: 26, Func. Count: 270, Neg. LLF: 116.19953279501105
Optimization terminated successfully (Exit mode 0)
Current function value: 116.19953289335744
Iterations: 27
Function evaluations: 270
Gradient evaluations: 26
Iteration: 1, Func. Count: 8, Neg. LLF: 126.37985626134416
Iteration: 2, Func. Count: 17, Neg. LLF: 117.00451579826037
Iteration: 3, Func. Count: 24, Neg. LLF: 117.63367852226433
Iteration: 4, Func. Count: 33, Neg. LLF: 118.41837046472658
Iteration: 5, Func. Count: 41, Neg. LLF: 116.9321961270237
Iteration: 6, Func. Count: 48, Neg. LLF: 116.93146959068946
Iteration: 7, Func. Count: 55, Neg. LLF: 116.9314424777109
Iteration: 8, Func. Count: 62, Neg. LLF: 116.93143800766418
Iteration: 9, Func. Count: 68, Neg. LLF: 116.93143796063003
Optimization terminated successfully (Exit mode 0)
Current function value: 116.93143800766418
Iterations: 9
Function evaluations: 68
Gradient evaluations: 9
Iteration: 1, Func. Count: 9, Neg. LLF: 123.60731159966811
Iteration: 2, Func. Count: 20, Neg. LLF: 119.70469638156926
Iteration: 3, Func. Count: 29, Neg. LLF: 116.8417658267113
Iteration: 4, Func. Count: 38, Neg. LLF: 116.725334788267
Iteration: 5, Func. Count: 46, Neg. LLF: 116.71408557830735
Iteration: 6, Func. Count: 54, Neg. LLF: 116.71233979092113
Iteration: 7, Func. Count: 62, Neg. LLF: 116.71227537532798
Iteration: 8, Func. Count: 70, Neg. LLF: 116.71227334578346
Iteration: 9, Func. Count: 78, Neg. LLF: 116.71223613074882
Iteration: 10, Func. Count: 86, Neg. LLF: 116.70956866032584
Iteration: 11, Func. Count: 94, Neg. LLF: 117.4505172693417
Iteration: 12, Func. Count: 103, Neg. LLF: 116.70347728866908
Iteration: 13, Func. Count: 111, Neg. LLF: 116.69953282345143
Iteration: 14, Func. Count: 119, Neg. LLF: 116.69762881113034
Iteration: 15, Func. Count: 127, Neg. LLF: 116.69663055716644
Iteration: 16, Func. Count: 135, Neg. LLF: 116.69644257330685
Iteration: 17, Func. Count: 143, Neg. LLF: 116.69639024287211
Iteration: 18, Func. Count: 151, Neg. LLF: 116.6963865861486
Iteration: 19, Func. Count: 158, Neg. LLF: 116.69638658613034
Optimization terminated successfully (Exit mode 0)
Current function value: 116.6963865861486
Iterations: 19
Function evaluations: 158
Gradient evaluations: 19
Iteration: 1, Func. Count: 10, Neg. LLF: 144.72862890857778
Iteration: 2, Func. Count: 21, Neg. LLF: 116.68788880275078
Iteration: 3, Func. Count: 30, Neg. LLF: 117.03434594107533
Iteration: 4, Func. Count: 40, Neg. LLF: 116.97612570783771
Iteration: 5, Func. Count: 50, Neg. LLF: 116.86317494212896
Iteration: 6, Func. Count: 60, Neg. LLF: 116.7594200571986
Iteration: 7, Func. Count: 70, Neg. LLF: 116.88215929544043
Iteration: 8, Func. Count: 80, Neg. LLF: 116.51093271122234
Iteration: 9, Func. Count: 89, Neg. LLF: 116.51524634848175
Iteration: 10, Func. Count: 99, Neg. LLF: 117.76885992815413
Iteration: 11, Func. Count: 109, Neg. LLF: 115.67037259677022
Iteration: 12, Func. Count: 118, Neg. LLF: 50078078.592955954
Iteration: 13, Func. Count: 129, Neg. LLF: 154.08578229287428
Iteration: 14, Func. Count: 140, Neg. LLF: 126.06126046340714
Iteration: 15, Func. Count: 150, Neg. LLF: 114.74676347680963
Iteration: 16, Func. Count: 159, Neg. LLF: 114.73466948609521
Iteration: 17, Func. Count: 168, Neg. LLF: 114.73151706707392
Iteration: 18, Func. Count: 177, Neg. LLF: 114.73134325553525
Iteration: 19, Func. Count: 186, Neg. LLF: 114.73132741600126
Iteration: 20, Func. Count: 194, Neg. LLF: 114.7313271915516
Optimization terminated successfully (Exit mode 0)
Current function value: 114.73132741600126
Iterations: 21
Function evaluations: 194
Gradient evaluations: 20
Iteration: 1, Func. Count: 11, Neg. LLF: 141.10593794777122
Iteration: 2, Func. Count: 23, Neg. LLF: 116.5553529033277
Iteration: 3, Func. Count: 33, Neg. LLF: 116.66369235917638
Iteration: 4, Func. Count: 44, Neg. LLF: 122.01540540222592
Iteration: 5, Func. Count: 55, Neg. LLF: 116.18356581245311
Iteration: 6, Func. Count: 65, Neg. LLF: 116.21654653405308
Iteration: 7, Func. Count: 76, Neg. LLF: 116.29484445794431
Iteration: 8, Func. Count: 87, Neg. LLF: 115.5876598703743
Iteration: 9, Func. Count: 97, Neg. LLF: 115.38327601194483
Iteration: 10, Func. Count: 107, Neg. LLF: 115.36507192341246
Iteration: 11, Func. Count: 117, Neg. LLF: 115.36259886829589
Iteration: 12, Func. Count: 127, Neg. LLF: 115.36285184110947
Iteration: 13, Func. Count: 138, Neg. LLF: 115.36198903468288
Iteration: 14, Func. Count: 148, Neg. LLF: 115.36164798116961
Iteration: 15, Func. Count: 158, Neg. LLF: 115.36159977695095
Iteration: 16, Func. Count: 168, Neg. LLF: 115.36245507787004
Iteration: 17, Func. Count: 179, Neg. LLF: 115.36159144597164
Optimization terminated successfully (Exit mode 0)
Current function value: 115.36159025044982
Iterations: 18
Function evaluations: 180
Gradient evaluations: 17
Iteration: 1, Func. Count: 12, Neg. LLF: 138.8457345048066
Iteration: 2, Func. Count: 24, Neg. LLF: 116.73284542588661
Iteration: 3, Func. Count: 35, Neg. LLF: 121.55253308925776
Iteration: 4, Func. Count: 47, Neg. LLF: 116.63781444726311
Iteration: 5, Func. Count: 59, Neg. LLF: 116.5240906399171
Iteration: 6, Func. Count: 71, Neg. LLF: 116.51529600345516
Iteration: 7, Func. Count: 82, Neg. LLF: 116.5090402242862
Iteration: 8, Func. Count: 93, Neg. LLF: 116.4440720519258
Iteration: 9, Func. Count: 104, Neg. LLF: 116.16668465717656
Iteration: 10, Func. Count: 115, Neg. LLF: 116.0056935001179
Iteration: 11, Func. Count: 126, Neg. LLF: 115.93666795126238
Iteration: 12, Func. Count: 137, Neg. LLF: 115.93374826016928
Iteration: 13, Func. Count: 148, Neg. LLF: 115.90900309712683
Iteration: 14, Func. Count: 159, Neg. LLF: 115.87689320300066
Iteration: 15, Func. Count: 171, Neg. LLF: 115.88018607146475
Iteration: 16, Func. Count: 192, Neg. LLF: 125.42019741518936
Iteration: 17, Func. Count: 205, Neg. LLF: 116.12319506924736
Iteration: 18, Func. Count: 218, Neg. LLF: 115.90782951908035
Iteration: 19, Func. Count: 230, Neg. LLF: 115.90125701100456
Iteration: 20, Func. Count: 241, Neg. LLF: 115.90114044636039
Iteration: 21, Func. Count: 252, Neg. LLF: 115.90226664784207
Iteration: 22, Func. Count: 264, Neg. LLF: 115.90105751765579
Iteration: 23, Func. Count: 275, Neg. LLF: 115.90105516149666
Iteration: 24, Func. Count: 285, Neg. LLF: 115.90105505869832
Optimization terminated successfully (Exit mode 0)
Current function value: 115.90105516149666
Iterations: 25
Function evaluations: 285
Gradient evaluations: 24
Iteration: 1, Func. Count: 9, Neg. LLF: 126.15265708290556
Iteration: 2, Func. Count: 19, Neg. LLF: 122.66578687209568
Iteration: 3, Func. Count: 28, Neg. LLF: 116.98651641960963
Iteration: 4, Func. Count: 36, Neg. LLF: 119.27461736529725
Iteration: 5, Func. Count: 46, Neg. LLF: 116.94502117916879
Iteration: 6, Func. Count: 54, Neg. LLF: 116.93370084371992
Iteration: 7, Func. Count: 62, Neg. LLF: 116.93208768653334
Iteration: 8, Func. Count: 70, Neg. LLF: 116.93148397522067
Iteration: 9, Func. Count: 78, Neg. LLF: 116.93144129621375
Iteration: 10, Func. Count: 86, Neg. LLF: 116.9314380358568
Iteration: 11, Func. Count: 93, Neg. LLF: 116.93143807746878
Optimization terminated successfully (Exit mode 0)
Current function value: 116.9314380358568
Iterations: 11
Function evaluations: 93
Gradient evaluations: 11
Iteration: 1, Func. Count: 10, Neg. LLF: 123.74587626409601
Iteration: 2, Func. Count: 22, Neg. LLF: 121.48771420276857
Iteration: 3, Func. Count: 32, Neg. LLF: 137.03143332820724
Iteration: 4, Func. Count: 43, Neg. LLF: 116.86687157502452
Iteration: 5, Func. Count: 53, Neg. LLF: 116.99481834059245
Iteration: 6, Func. Count: 63, Neg. LLF: 116.5669838173704
Iteration: 7, Func. Count: 72, Neg. LLF: 116.56686829852916
Iteration: 8, Func. Count: 81, Neg. LLF: 116.56686135426341
Iteration: 9, Func. Count: 89, Neg. LLF: 116.56686135419606
Optimization terminated successfully (Exit mode 0)
Current function value: 116.56686135426341
Iterations: 9
Function evaluations: 89
Gradient evaluations: 9
Iteration: 1, Func. Count: 11, Neg. LLF: 144.730763016807
Iteration: 2, Func. Count: 23, Neg. LLF: 116.68494188558456
Iteration: 3, Func. Count: 33, Neg. LLF: 117.06720363390707
Iteration: 4, Func. Count: 44, Neg. LLF: 116.95518285238383
Iteration: 5, Func. Count: 55, Neg. LLF: 116.85869555376576
Iteration: 6, Func. Count: 66, Neg. LLF: 116.49799171640234
Iteration: 7, Func. Count: 76, Neg. LLF: 116.40266631210682
Iteration: 8, Func. Count: 86, Neg. LLF: 169.62257165782424
Iteration: 9, Func. Count: 98, Neg. LLF: 115.08830185361188
Iteration: 10, Func. Count: 108, Neg. LLF: 114.85919279352181
Iteration: 11, Func. Count: 118, Neg. LLF: 114.49033215554975
Iteration: 12, Func. Count: 129, Neg. LLF: 118.9814750579446
Iteration: 13, Func. Count: 140, Neg. LLF: 118.38171702446633
Iteration: 14, Func. Count: 151, Neg. LLF: 114.94562556965698
Iteration: 15, Func. Count: 162, Neg. LLF: 114.73649289634413
Iteration: 16, Func. Count: 172, Neg. LLF: 115.29482397621817
Iteration: 17, Func. Count: 183, Neg. LLF: 114.7313384835845
Iteration: 18, Func. Count: 193, Neg. LLF: 114.73132748481076
Iteration: 19, Func. Count: 202, Neg. LLF: 114.73132726045291
Optimization terminated successfully (Exit mode 0)
Current function value: 114.73132748481076
Iterations: 20
Function evaluations: 202
Gradient evaluations: 19
Iteration: 1, Func. Count: 12, Neg. LLF: 141.59523111604824
Iteration: 2, Func. Count: 25, Neg. LLF: 116.55627480511976
Iteration: 3, Func. Count: 36, Neg. LLF: 116.72961986935931
Iteration: 4, Func. Count: 48, Neg. LLF: 121.78344391903187
Iteration: 5, Func. Count: 60, Neg. LLF: 116.22805671156654
Iteration: 6, Func. Count: 71, Neg. LLF: 115.8009147563294
Iteration: 7, Func. Count: 82, Neg. LLF: 115.58575990104157
Iteration: 8, Func. Count: 93, Neg. LLF: 120.58242789226534
Iteration: 9, Func. Count: 105, Neg. LLF: 115.36286182044229
Iteration: 10, Func. Count: 116, Neg. LLF: 115.35709569683227
Iteration: 11, Func. Count: 127, Neg. LLF: 115.36101664238352
Iteration: 12, Func. Count: 138, Neg. LLF: 115.36293932546224
Iteration: 13, Func. Count: 150, Neg. LLF: 115.36346697626428
Iteration: 14, Func. Count: 163, Neg. LLF: 115.36164900896115
Iteration: 15, Func. Count: 175, Neg. LLF: 115.36159104251958
Iteration: 16, Func. Count: 186, Neg. LLF: 115.36159615203093
Optimization terminated successfully (Exit mode 0)
Current function value: 115.36159019103694
Iterations: 17
Function evaluations: 187
Gradient evaluations: 16
Iteration: 1, Func. Count: 13, Neg. LLF: 138.92013344544586
Iteration: 2, Func. Count: 26, Neg. LLF: 116.74751655767749
Iteration: 3, Func. Count: 38, Neg. LLF: 121.76980832476895
Iteration: 4, Func. Count: 51, Neg. LLF: 116.61558143963613
Iteration: 5, Func. Count: 63, Neg. LLF: 117.23942029004778
Iteration: 6, Func. Count: 76, Neg. LLF: 117.10023214016607
Iteration: 7, Func. Count: 89, Neg. LLF: 115.70659206580524
Iteration: 8, Func. Count: 101, Neg. LLF: 115.73915214658575
Iteration: 9, Func. Count: 114, Neg. LLF: 115.63761734348759
Iteration: 10, Func. Count: 126, Neg. LLF: 118.82496558922351
Iteration: 11, Func. Count: 139, Neg. LLF: 120.97465160114447
Iteration: 12, Func. Count: 152, Neg. LLF: 115.64294810815447
Iteration: 13, Func. Count: 165, Neg. LLF: 115.53791436558906
Iteration: 14, Func. Count: 177, Neg. LLF: 115.53750599538908
Iteration: 15, Func. Count: 189, Neg. LLF: 115.53730786793727
Iteration: 16, Func. Count: 201, Neg. LLF: 115.53724501704804
Iteration: 17, Func. Count: 213, Neg. LLF: 115.53793138715854
Iteration: 18, Func. Count: 227, Neg. LLF: 115.53728533640981
Iteration: 19, Func. Count: 240, Neg. LLF: 115.53727319468061
Iteration: 20, Func. Count: 253, Neg. LLF: 115.53727086004612
Iteration: 21, Func. Count: 264, Neg. LLF: 115.537270772536
Optimization terminated successfully (Exit mode 0)
Current function value: 115.53727086004612
Iterations: 22
Function evaluations: 264
Gradient evaluations: 21
Iteration: 1, Func. Count: 10, Neg. LLF: 129.699731238342
Iteration: 2, Func. Count: 20, Neg. LLF: 218.55200215407135
Iteration: 3, Func. Count: 30, Neg. LLF: 119.72292325753583
Iteration: 4, Func. Count: 40, Neg. LLF: 8669970.573672194
Iteration: 5, Func. Count: 50, Neg. LLF: 116.19406882595678
Iteration: 6, Func. Count: 60, Neg. LLF: 122.53975039282655
Iteration: 7, Func. Count: 70, Neg. LLF: 114.69208257464659
Iteration: 8, Func. Count: 80, Neg. LLF: 114.26259693638946
Iteration: 9, Func. Count: 90, Neg. LLF: 113.848201886072
Iteration: 10, Func. Count: 99, Neg. LLF: 113.82075018065046
Iteration: 11, Func. Count: 108, Neg. LLF: 113.81105738712428
Iteration: 12, Func. Count: 117, Neg. LLF: 113.80942069545311
Iteration: 13, Func. Count: 126, Neg. LLF: 113.81160140525205
Iteration: 14, Func. Count: 136, Neg. LLF: 113.79821933562732
Iteration: 15, Func. Count: 145, Neg. LLF: 113.79675763427136
Iteration: 16, Func. Count: 154, Neg. LLF: 113.79664130615913
Iteration: 17, Func. Count: 163, Neg. LLF: 113.79663569446417
Iteration: 18, Func. Count: 171, Neg. LLF: 113.79663569445682
Optimization terminated successfully (Exit mode 0)
Current function value: 113.79663569446417
Iterations: 18
Function evaluations: 171
Gradient evaluations: 18
Iteration: 1, Func. Count: 11, Neg. LLF: 117.5141879617502
Iteration: 2, Func. Count: 22, Neg. LLF: 115.78576689935738
Iteration: 3, Func. Count: 33, Neg. LLF: 124.05028299418859
Iteration: 4, Func. Count: 44, Neg. LLF: 122.02798901562532
Iteration: 5, Func. Count: 55, Neg. LLF: 5887.888157433739
Iteration: 6, Func. Count: 66, Neg. LLF: 112.8027393680303
Iteration: 7, Func. Count: 77, Neg. LLF: 112.16106487121404
Iteration: 8, Func. Count: 87, Neg. LLF: 112.16391500084738
Iteration: 9, Func. Count: 98, Neg. LLF: 112.15225632233425
Iteration: 10, Func. Count: 108, Neg. LLF: 112.14738273913699
Iteration: 11, Func. Count: 118, Neg. LLF: 112.14614420465229
Iteration: 12, Func. Count: 128, Neg. LLF: 112.14604324852102
Iteration: 13, Func. Count: 138, Neg. LLF: 112.14604226332779
Optimization terminated successfully (Exit mode 0)
Current function value: 112.14604226332779
Iterations: 13
Function evaluations: 138
Gradient evaluations: 13
Iteration: 1, Func. Count: 12, Neg. LLF: 116.60404956719337
Iteration: 2, Func. Count: 24, Neg. LLF: 115.36233634011373
Iteration: 3, Func. Count: 36, Neg. LLF: 133.0711322849684
Iteration: 4, Func. Count: 49, Neg. LLF: 125.50688825594354
Iteration: 5, Func. Count: 61, Neg. LLF: 214.28425147420947
Iteration: 6, Func. Count: 73, Neg. LLF: 121.75183207951154
Iteration: 7, Func. Count: 85, Neg. LLF: 112.2976498162473
Iteration: 8, Func. Count: 96, Neg. LLF: 112.15130436798263
Iteration: 9, Func. Count: 107, Neg. LLF: 112.1467731600652
Iteration: 10, Func. Count: 118, Neg. LLF: 112.14612372282306
Iteration: 11, Func. Count: 129, Neg. LLF: 112.14605983883814
Iteration: 12, Func. Count: 140, Neg. LLF: 112.14605111745587
Iteration: 13, Func. Count: 151, Neg. LLF: 112.14604399082808
Iteration: 14, Func. Count: 162, Neg. LLF: 112.146042369455
Iteration: 15, Func. Count: 172, Neg. LLF: 112.14604252424056
Optimization terminated successfully (Exit mode 0)
Current function value: 112.146042369455
Iterations: 15
Function evaluations: 172
Gradient evaluations: 15
Iteration: 1, Func. Count: 13, Neg. LLF: 116.08870911418363
Iteration: 2, Func. Count: 26, Neg. LLF: 115.58486500118717
Iteration: 3, Func. Count: 40, Neg. LLF: 119.2586747586829
Iteration: 4, Func. Count: 54, Neg. LLF: 308.1165863558777
Iteration: 5, Func. Count: 67, Neg. LLF: 162.35631688377325
Iteration: 6, Func. Count: 80, Neg. LLF: 122.25051713487363
Iteration: 7, Func. Count: 93, Neg. LLF: 115.94156166074141
Iteration: 8, Func. Count: 106, Neg. LLF: 118.68101875493372
Iteration: 9, Func. Count: 119, Neg. LLF: 122.79680304366603
Iteration: 10, Func. Count: 132, Neg. LLF: 112.72421159878787
Iteration: 11, Func. Count: 145, Neg. LLF: 111.09192445595642
Iteration: 12, Func. Count: 157, Neg. LLF: 110.97970738171803
Iteration: 13, Func. Count: 169, Neg. LLF: 110.98462961724856
Iteration: 14, Func. Count: 182, Neg. LLF: 110.93056351486551
Iteration: 15, Func. Count: 194, Neg. LLF: 110.92711991300989
Iteration: 16, Func. Count: 206, Neg. LLF: 110.92710523302145
Iteration: 17, Func. Count: 218, Neg. LLF: 110.92710321060052
Iteration: 18, Func. Count: 230, Neg. LLF: 110.92710174963884
Iteration: 19, Func. Count: 241, Neg. LLF: 110.92710167665649
Optimization terminated successfully (Exit mode 0)
Current function value: 110.92710174963884
Iterations: 19
Function evaluations: 241
Gradient evaluations: 19
Iteration: 1, Func. Count: 14, Neg. LLF: 115.92366247375801
Iteration: 2, Func. Count: 28, Neg. LLF: 115.34726095051528
Iteration: 3, Func. Count: 43, Neg. LLF: 128.26495960536965
Iteration: 4, Func. Count: 58, Neg. LLF: 97521.82213080504
Iteration: 5, Func. Count: 72, Neg. LLF: 185.02551565804663
Iteration: 6, Func. Count: 86, Neg. LLF: 115.00826235634267
Iteration: 7, Func. Count: 100, Neg. LLF: 113.29660104177138
Iteration: 8, Func. Count: 114, Neg. LLF: 112.62887375006399
Iteration: 9, Func. Count: 128, Neg. LLF: 111.19053824921289
Iteration: 10, Func. Count: 141, Neg. LLF: 111.00031569148561
Iteration: 11, Func. Count: 154, Neg. LLF: 111.33969621042976
Iteration: 12, Func. Count: 168, Neg. LLF: 110.93715031611858
Iteration: 13, Func. Count: 181, Neg. LLF: 110.94692789419513
Iteration: 14, Func. Count: 195, Neg. LLF: 110.92733952159081
Iteration: 15, Func. Count: 208, Neg. LLF: 110.92710291179418
Iteration: 16, Func. Count: 221, Neg. LLF: 110.92710168165671
Iteration: 17, Func. Count: 233, Neg. LLF: 110.92710169913141
Optimization terminated successfully (Exit mode 0)
Current function value: 110.92710168165671
Iterations: 17
Function evaluations: 233
Gradient evaluations: 17
Iteration: 1, Func. Count: 7, Neg. LLF: 126.56067311546485
Iteration: 2, Func. Count: 15, Neg. LLF: 119.10712103359384
Iteration: 3, Func. Count: 22, Neg. LLF: 117.37829925203918
Iteration: 4, Func. Count: 28, Neg. LLF: 139.73879453389011
Iteration: 5, Func. Count: 36, Neg. LLF: 118.65117888289036
Iteration: 6, Func. Count: 43, Neg. LLF: 116.6274164197111
Iteration: 7, Func. Count: 49, Neg. LLF: 241.35434308196514
Iteration: 8, Func. Count: 57, Neg. LLF: 116.5786159493961
Iteration: 9, Func. Count: 63, Neg. LLF: 116.57705168892595
Iteration: 10, Func. Count: 69, Neg. LLF: 116.57607326623906
Iteration: 11, Func. Count: 75, Neg. LLF: 116.57590699347365
Iteration: 12, Func. Count: 81, Neg. LLF: 116.57589584755151
Iteration: 13, Func. Count: 86, Neg. LLF: 116.57589584748818
Optimization terminated successfully (Exit mode 0)
Current function value: 116.57589584755151
Iterations: 13
Function evaluations: 86
Gradient evaluations: 13
Iteration: 1, Func. Count: 8, Neg. LLF: 122.90660333613656
Iteration: 2, Func. Count: 17, Neg. LLF: 117.65743772473625
Iteration: 3, Func. Count: 25, Neg. LLF: 116.79414445079624
Iteration: 4, Func. Count: 33, Neg. LLF: 116.73287535777644
Iteration: 5, Func. Count: 40, Neg. LLF: 116.71691835111147
Iteration: 6, Func. Count: 47, Neg. LLF: 116.64629488083064
Iteration: 7, Func. Count: 54, Neg. LLF: 116.51499901259774
Iteration: 8, Func. Count: 61, Neg. LLF: 117.10968264633249
Iteration: 9, Func. Count: 69, Neg. LLF: 116.53594713144102
Iteration: 10, Func. Count: 77, Neg. LLF: 116.51460864481368
Iteration: 11, Func. Count: 85, Neg. LLF: 116.45974683821673
Iteration: 12, Func. Count: 92, Neg. LLF: 116.45971560553961
Iteration: 13, Func. Count: 99, Neg. LLF: 116.45971111728664
Iteration: 14, Func. Count: 106, Neg. LLF: 116.45970771369493
Iteration: 15, Func. Count: 113, Neg. LLF: 116.45970757695642
Optimization terminated successfully (Exit mode 0)
Current function value: 116.45970757695642
Iterations: 15
Function evaluations: 113
Gradient evaluations: 15
Iteration: 1, Func. Count: 9, Neg. LLF: 143.64201026575847
Iteration: 2, Func. Count: 19, Neg. LLF: 116.77913157143892
Iteration: 3, Func. Count: 28, Neg. LLF: 116.62823647643808
Iteration: 4, Func. Count: 36, Neg. LLF: 116.78086204091483
Iteration: 5, Func. Count: 45, Neg. LLF: 117.03267426024719
Iteration: 6, Func. Count: 54, Neg. LLF: 116.52722274596502
Iteration: 7, Func. Count: 63, Neg. LLF: 116.4903873384764
Iteration: 8, Func. Count: 72, Neg. LLF: 116.48075107741927
Iteration: 9, Func. Count: 80, Neg. LLF: 116.48041439017256
Iteration: 10, Func. Count: 88, Neg. LLF: 116.48040674279918
Iteration: 11, Func. Count: 96, Neg. LLF: 116.48040439147645
Iteration: 12, Func. Count: 104, Neg. LLF: 116.48037996546556
Iteration: 13, Func. Count: 112, Neg. LLF: 116.47970236884764
Iteration: 14, Func. Count: 120, Neg. LLF: 116.4657084738659
Iteration: 15, Func. Count: 128, Neg. LLF: 116.46288317107225
Iteration: 16, Func. Count: 136, Neg. LLF: 116.46051207205079
Iteration: 17, Func. Count: 144, Neg. LLF: 116.46086945853874
Iteration: 18, Func. Count: 153, Neg. LLF: 116.51866442743814
Iteration: 19, Func. Count: 163, Neg. LLF: 116.46002158984695
Optimization terminated successfully (Exit mode 0)
Current function value: 116.45998011512593
Iterations: 19
Function evaluations: 165
Gradient evaluations: 19
Iteration: 1, Func. Count: 10, Neg. LLF: 130.610900937049
Iteration: 2, Func. Count: 22, Neg. LLF: 120.49271865605229
Iteration: 3, Func. Count: 32, Neg. LLF: 116.73564240244318
Iteration: 4, Func. Count: 42, Neg. LLF: 116.62769872861729
Iteration: 5, Func. Count: 51, Neg. LLF: 116.7891100158682
Iteration: 6, Func. Count: 61, Neg. LLF: 116.54364271450136
Iteration: 7, Func. Count: 70, Neg. LLF: 116.52836446594368
Iteration: 8, Func. Count: 79, Neg. LLF: 116.51119091509176
Iteration: 9, Func. Count: 88, Neg. LLF: 116.5111991626009
Iteration: 10, Func. Count: 98, Neg. LLF: 116.50023528846211
Iteration: 11, Func. Count: 107, Neg. LLF: 116.4989244571386
Iteration: 12, Func. Count: 116, Neg. LLF: 116.4987791327437
Iteration: 13, Func. Count: 125, Neg. LLF: 116.49868353030513
Iteration: 14, Func. Count: 134, Neg. LLF: 116.49863398754916
Iteration: 15, Func. Count: 143, Neg. LLF: 116.49862475049738
Iteration: 16, Func. Count: 151, Neg. LLF: 116.49862475049358
Optimization terminated successfully (Exit mode 0)
Current function value: 116.49862475049738
Iterations: 16
Function evaluations: 151
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 129.73573903770185
Iteration: 2, Func. Count: 24, Neg. LLF: 121.62452241853235
Iteration: 3, Func. Count: 35, Neg. LLF: 116.73233408854084
Iteration: 4, Func. Count: 46, Neg. LLF: 116.559272035052
Iteration: 5, Func. Count: 56, Neg. LLF: 116.53694532894895
Iteration: 6, Func. Count: 66, Neg. LLF: 116.51191174360093
Iteration: 7, Func. Count: 76, Neg. LLF: 116.54394578269743
Iteration: 8, Func. Count: 87, Neg. LLF: 116.50543304056828
Iteration: 9, Func. Count: 98, Neg. LLF: 116.49026599326245
Iteration: 10, Func. Count: 108, Neg. LLF: 116.4895012692181
Iteration: 11, Func. Count: 118, Neg. LLF: 116.48915523962125
Iteration: 12, Func. Count: 128, Neg. LLF: 116.48913599026787
Iteration: 13, Func. Count: 137, Neg. LLF: 116.48913599017541
Optimization terminated successfully (Exit mode 0)
Current function value: 116.48913599026787
Iterations: 13
Function evaluations: 137
Gradient evaluations: 13
Iteration: 1, Func. Count: 8, Neg. LLF: 126.36194452301865
Iteration: 2, Func. Count: 17, Neg. LLF: 118.64534813336675
Iteration: 3, Func. Count: 25, Neg. LLF: 117.45878125992415
Iteration: 4, Func. Count: 33, Neg. LLF: 130.3373038279454
Iteration: 5, Func. Count: 43, Neg. LLF: 116.97642198130075
Iteration: 6, Func. Count: 51, Neg. LLF: 116.58103875073142
Iteration: 7, Func. Count: 58, Neg. LLF: 116.57713921181931
Iteration: 8, Func. Count: 65, Neg. LLF: 116.57589699789516
Iteration: 9, Func. Count: 72, Neg. LLF: 116.57589562062664
Iteration: 10, Func. Count: 78, Neg. LLF: 116.57589567995024
Optimization terminated successfully (Exit mode 0)
Current function value: 116.57589562062664
Iterations: 10
Function evaluations: 78
Gradient evaluations: 10
Iteration: 1, Func. Count: 9, Neg. LLF: 121.89983710225525
Iteration: 2, Func. Count: 20, Neg. LLF: 118.16388013652735
Iteration: 3, Func. Count: 29, Neg. LLF: 116.82719706716074
Iteration: 4, Func. Count: 38, Neg. LLF: 116.73921002404872
Iteration: 5, Func. Count: 46, Neg. LLF: 116.73682357003273
Iteration: 6, Func. Count: 55, Neg. LLF: 116.6959516751168
Iteration: 7, Func. Count: 63, Neg. LLF: 116.57681354006216
Iteration: 8, Func. Count: 71, Neg. LLF: 116.67246272843249
Iteration: 9, Func. Count: 80, Neg. LLF: 116.63526354252792
Iteration: 10, Func. Count: 89, Neg. LLF: 116.72589954908737
Iteration: 11, Func. Count: 98, Neg. LLF: 117.3199334779835
Iteration: 12, Func. Count: 107, Neg. LLF: 116.46986228758027
Iteration: 13, Func. Count: 116, Neg. LLF: 116.42492589536842
Iteration: 14, Func. Count: 124, Neg. LLF: 116.4065173803292
Iteration: 15, Func. Count: 132, Neg. LLF: 116.36696624888546
Iteration: 16, Func. Count: 140, Neg. LLF: 116.27463264822363
Iteration: 17, Func. Count: 148, Neg. LLF: 116.23025291702662
Iteration: 18, Func. Count: 156, Neg. LLF: 116.20195581117954
Iteration: 19, Func. Count: 164, Neg. LLF: 116.19960130435264
Iteration: 20, Func. Count: 172, Neg. LLF: 116.199576649146
Iteration: 21, Func. Count: 180, Neg. LLF: 116.1995449864567
Iteration: 22, Func. Count: 188, Neg. LLF: 116.1997929985141
Optimization terminated successfully (Exit mode 0)
Current function value: 116.19954480627416
Iterations: 23
Function evaluations: 190
Gradient evaluations: 22
Iteration: 1, Func. Count: 10, Neg. LLF: 144.36896414287258
Iteration: 2, Func. Count: 21, Neg. LLF: 116.76263892811524
Iteration: 3, Func. Count: 30, Neg. LLF: 116.58685253888193
Iteration: 4, Func. Count: 39, Neg. LLF: 116.70275820184777
Iteration: 5, Func. Count: 49, Neg. LLF: 117.09938635137628
Iteration: 6, Func. Count: 59, Neg. LLF: 116.5629762154105
Iteration: 7, Func. Count: 69, Neg. LLF: 116.4805848489052
Iteration: 8, Func. Count: 78, Neg. LLF: 116.48040819746195
Iteration: 9, Func. Count: 87, Neg. LLF: 116.48040379759087
Iteration: 10, Func. Count: 96, Neg. LLF: 116.48039938923063
Iteration: 11, Func. Count: 105, Neg. LLF: 116.48034629435551
Iteration: 12, Func. Count: 114, Neg. LLF: 116.47846486260362
Iteration: 13, Func. Count: 123, Neg. LLF: 116.46271850215186
Iteration: 14, Func. Count: 132, Neg. LLF: 116.45055078122198
Iteration: 15, Func. Count: 141, Neg. LLF: 116.39235116840236
Iteration: 16, Func. Count: 150, Neg. LLF: 178.1912933283461
Iteration: 17, Func. Count: 162, Neg. LLF: 6591960.148706786
Iteration: 18, Func. Count: 174, Neg. LLF: 165.1024811486037
Iteration: 19, Func. Count: 185, Neg. LLF: 116.35524363439765
Iteration: 20, Func. Count: 195, Neg. LLF: 116.19954137658455
Iteration: 21, Func. Count: 204, Neg. LLF: 116.19953339004815
Iteration: 22, Func. Count: 212, Neg. LLF: 116.19953326984411
Optimization terminated successfully (Exit mode 0)
Current function value: 116.19953339004815
Iterations: 23
Function evaluations: 212
Gradient evaluations: 22
Iteration: 1, Func. Count: 11, Neg. LLF: 129.97363955599008
Iteration: 2, Func. Count: 24, Neg. LLF: 121.06355238879578
Iteration: 3, Func. Count: 35, Neg. LLF: 116.760419785492
Iteration: 4, Func. Count: 46, Neg. LLF: 116.60090907079163
Iteration: 5, Func. Count: 56, Neg. LLF: 117.03532165365137
Iteration: 6, Func. Count: 67, Neg. LLF: 116.4345622861777
Iteration: 7, Func. Count: 77, Neg. LLF: 115.85106933732528
Iteration: 8, Func. Count: 87, Neg. LLF: 115.13868378256686
Iteration: 9, Func. Count: 97, Neg. LLF: 128.39057867146798
Iteration: 10, Func. Count: 108, Neg. LLF: 114.12004563576463
Iteration: 11, Func. Count: 118, Neg. LLF: 114.02184334204311
Iteration: 12, Func. Count: 128, Neg. LLF: 113.96302604906919
Iteration: 13, Func. Count: 138, Neg. LLF: 113.8877659248157
Iteration: 14, Func. Count: 148, Neg. LLF: 113.8758855144266
Iteration: 15, Func. Count: 158, Neg. LLF: 113.87557357116692
Iteration: 16, Func. Count: 168, Neg. LLF: 113.87554644885714
Iteration: 17, Func. Count: 178, Neg. LLF: 113.87554470982344
Iteration: 18, Func. Count: 187, Neg. LLF: 113.87554459602046
Optimization terminated successfully (Exit mode 0)
Current function value: 113.87554470982344
Iterations: 18
Function evaluations: 187
Gradient evaluations: 18
Iteration: 1, Func. Count: 12, Neg. LLF: 129.2252852831353
Iteration: 2, Func. Count: 26, Neg. LLF: 122.33220178783641
Iteration: 3, Func. Count: 38, Neg. LLF: 116.77023819901633
Iteration: 4, Func. Count: 50, Neg. LLF: 116.54159612981067
Iteration: 5, Func. Count: 61, Neg. LLF: 116.51928886476895
Iteration: 6, Func. Count: 72, Neg. LLF: 116.34693182389853
Iteration: 7, Func. Count: 83, Neg. LLF: 115.73582353801574
Iteration: 8, Func. Count: 94, Neg. LLF: 119.20419360137863
Iteration: 9, Func. Count: 106, Neg. LLF: 114.86731020582037
Iteration: 10, Func. Count: 117, Neg. LLF: 114.14680437394358
Iteration: 11, Func. Count: 128, Neg. LLF: 114.02339820068188
Iteration: 12, Func. Count: 139, Neg. LLF: 113.9259460208924
Iteration: 13, Func. Count: 150, Neg. LLF: 113.88817594720554
Iteration: 14, Func. Count: 161, Neg. LLF: 113.8775552044486
Iteration: 15, Func. Count: 172, Neg. LLF: 113.87565316142859
Iteration: 16, Func. Count: 183, Neg. LLF: 113.87554234143678
Iteration: 17, Func. Count: 194, Neg. LLF: 113.8755513552508
Iteration: 18, Func. Count: 206, Neg. LLF: 113.91234976431906
Optimization terminated successfully (Exit mode 0)
Current function value: 113.87554462714395
Iterations: 19
Function evaluations: 209
Gradient evaluations: 18
Iteration: 1, Func. Count: 9, Neg. LLF: 126.38827316170033
Iteration: 2, Func. Count: 19, Neg. LLF: 121.42927787143279
Iteration: 3, Func. Count: 30, Neg. LLF: 117.51281227726363
Iteration: 4, Func. Count: 38, Neg. LLF: 122.44377905320214
Iteration: 5, Func. Count: 47, Neg. LLF: 141.20274449573486
Iteration: 6, Func. Count: 57, Neg. LLF: 116.60915606305788
Iteration: 7, Func. Count: 65, Neg. LLF: 116.54131300630085
Iteration: 8, Func. Count: 73, Neg. LLF: 116.52915300458386
Iteration: 9, Func. Count: 81, Neg. LLF: 116.5219496861026
Iteration: 10, Func. Count: 89, Neg. LLF: 116.5207114532708
Iteration: 11, Func. Count: 97, Neg. LLF: 116.52061299773875
Iteration: 12, Func. Count: 105, Neg. LLF: 116.52061198063828
Iteration: 13, Func. Count: 112, Neg. LLF: 116.52061192564695
Optimization terminated successfully (Exit mode 0)
Current function value: 116.52061198063828
Iterations: 13
Function evaluations: 112
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 123.62625705271446
Iteration: 2, Func. Count: 22, Neg. LLF: 119.52896060259442
Iteration: 3, Func. Count: 32, Neg. LLF: 116.74718608132439
Iteration: 4, Func. Count: 41, Neg. LLF: 116.94761847825632
Iteration: 5, Func. Count: 51, Neg. LLF: 116.72087567366665
Iteration: 6, Func. Count: 60, Neg. LLF: 116.71196540170018
Iteration: 7, Func. Count: 69, Neg. LLF: 116.71175556503094
Iteration: 8, Func. Count: 78, Neg. LLF: 116.71115139688793
Iteration: 9, Func. Count: 87, Neg. LLF: 116.60641145988927
Iteration: 10, Func. Count: 96, Neg. LLF: 116.57215016886629
Iteration: 11, Func. Count: 105, Neg. LLF: 116.556253378305
Iteration: 12, Func. Count: 114, Neg. LLF: 116.5520528288022
Iteration: 13, Func. Count: 123, Neg. LLF: 116.53612573591293
Iteration: 14, Func. Count: 132, Neg. LLF: 116.52734552800833
Iteration: 15, Func. Count: 141, Neg. LLF: 116.52588355324804
Iteration: 16, Func. Count: 150, Neg. LLF: 116.52366106196449
Iteration: 17, Func. Count: 159, Neg. LLF: 116.52177305351348
Iteration: 18, Func. Count: 168, Neg. LLF: 116.52082807586439
Iteration: 19, Func. Count: 177, Neg. LLF: 116.52062745734538
Iteration: 20, Func. Count: 186, Neg. LLF: 116.52061240614007
Iteration: 21, Func. Count: 194, Neg. LLF: 116.52061240948592
Optimization terminated successfully (Exit mode 0)
Current function value: 116.52061240614007
Iterations: 21
Function evaluations: 194
Gradient evaluations: 21
Iteration: 1, Func. Count: 11, Neg. LLF: 144.1849551217163
Iteration: 2, Func. Count: 23, Neg. LLF: 116.74486357874547
Iteration: 3, Func. Count: 33, Neg. LLF: 116.57492466368474
Iteration: 4, Func. Count: 43, Neg. LLF: 116.59614066435452
Iteration: 5, Func. Count: 54, Neg. LLF: 116.89035842557635
Iteration: 6, Func. Count: 65, Neg. LLF: 115.30984827792683
Iteration: 7, Func. Count: 75, Neg. LLF: 124.04552727091337
Iteration: 8, Func. Count: 87, Neg. LLF: 116.91127311251226
Iteration: 9, Func. Count: 98, Neg. LLF: 114.98872342640448
Iteration: 10, Func. Count: 108, Neg. LLF: 114.9593635490191
Iteration: 11, Func. Count: 118, Neg. LLF: 114.74216414778095
Iteration: 12, Func. Count: 128, Neg. LLF: 114.73406844967862
Iteration: 13, Func. Count: 138, Neg. LLF: 114.73167583452685
Iteration: 14, Func. Count: 148, Neg. LLF: 114.73133141534541
Iteration: 15, Func. Count: 158, Neg. LLF: 114.75687878768252
Iteration: 16, Func. Count: 170, Neg. LLF: 114.73389664339653
Iteration: 17, Func. Count: 182, Neg. LLF: 114.73156334885459
Optimization terminated successfully (Exit mode 0)
Current function value: 114.73132363296345
Iterations: 18
Function evaluations: 183
Gradient evaluations: 17
Iteration: 1, Func. Count: 12, Neg. LLF: 130.0795262810312
Iteration: 2, Func. Count: 26, Neg. LLF: 121.0377243386752
Iteration: 3, Func. Count: 38, Neg. LLF: 116.75569641255437
Iteration: 4, Func. Count: 50, Neg. LLF: 116.61111405986746
Iteration: 5, Func. Count: 61, Neg. LLF: 116.98998767727205
Iteration: 6, Func. Count: 73, Neg. LLF: 116.34907971814752
Iteration: 7, Func. Count: 84, Neg. LLF: 116.29662536102636
Iteration: 8, Func. Count: 95, Neg. LLF: 126.6074071022042
Iteration: 9, Func. Count: 108, Neg. LLF: 116.06190494615775
Iteration: 10, Func. Count: 119, Neg. LLF: 116.26113095877356
Iteration: 11, Func. Count: 131, Neg. LLF: 114.39203752443242
Iteration: 12, Func. Count: 142, Neg. LLF: 114.01383746003657
Iteration: 13, Func. Count: 153, Neg. LLF: 113.94844337585413
Iteration: 14, Func. Count: 164, Neg. LLF: 113.8843343616054
Iteration: 15, Func. Count: 175, Neg. LLF: 113.87596340360004
Iteration: 16, Func. Count: 186, Neg. LLF: 113.87583558265709
Iteration: 17, Func. Count: 197, Neg. LLF: 113.87565598913595
Iteration: 18, Func. Count: 208, Neg. LLF: 113.87554605688031
Iteration: 19, Func. Count: 219, Neg. LLF: 113.87554481929902
Iteration: 20, Func. Count: 229, Neg. LLF: 113.87554470550279
Optimization terminated successfully (Exit mode 0)
Current function value: 113.87554481929902
Iterations: 20
Function evaluations: 229
Gradient evaluations: 20
Iteration: 1, Func. Count: 13, Neg. LLF: 129.25677269209194
Iteration: 2, Func. Count: 28, Neg. LLF: 122.32976460938877
Iteration: 3, Func. Count: 41, Neg. LLF: 116.7605012659354
Iteration: 4, Func. Count: 54, Neg. LLF: 116.54317515691423
Iteration: 5, Func. Count: 66, Neg. LLF: 116.52112024561518
Iteration: 6, Func. Count: 78, Neg. LLF: 116.49766001426505
Iteration: 7, Func. Count: 90, Neg. LLF: 116.36579522256545
Iteration: 8, Func. Count: 102, Neg. LLF: 116.2848253704743
Iteration: 9, Func. Count: 114, Neg. LLF: 115.924518332949
Iteration: 10, Func. Count: 126, Neg. LLF: 114.99474722230852
Iteration: 11, Func. Count: 138, Neg. LLF: 114.1310271041988
Iteration: 12, Func. Count: 150, Neg. LLF: 114.04099858464717
Iteration: 13, Func. Count: 162, Neg. LLF: 113.95629083819385
Iteration: 14, Func. Count: 174, Neg. LLF: 113.88974160214677
Iteration: 15, Func. Count: 186, Neg. LLF: 113.8787808321767
Iteration: 16, Func. Count: 198, Neg. LLF: 113.87563515455783
Iteration: 17, Func. Count: 210, Neg. LLF: 113.87557158392733
Iteration: 18, Func. Count: 222, Neg. LLF: 113.87554861605356
Iteration: 19, Func. Count: 234, Neg. LLF: 113.87551738494437
Iteration: 20, Func. Count: 249, Neg. LLF: 113.87586477890034
Optimization terminated successfully (Exit mode 0)
Current function value: 113.87554655326949
Iterations: 21
Function evaluations: 251
Gradient evaluations: 20
Iteration: 1, Func. Count: 10, Neg. LLF: 126.40727984344507
Iteration: 2, Func. Count: 21, Neg. LLF: 121.46611261660546
Iteration: 3, Func. Count: 33, Neg. LLF: 117.52027985743034
Iteration: 4, Func. Count: 42, Neg. LLF: 116.91998742091887
Iteration: 5, Func. Count: 51, Neg. LLF: 117.68667725454796
Iteration: 6, Func. Count: 61, Neg. LLF: 116.43525953643135
Iteration: 7, Func. Count: 70, Neg. LLF: 116.67133771575645
Iteration: 8, Func. Count: 80, Neg. LLF: 116.41182874870103
Iteration: 9, Func. Count: 90, Neg. LLF: 116.3917727363237
Iteration: 10, Func. Count: 99, Neg. LLF: 116.38730282935586
Iteration: 11, Func. Count: 108, Neg. LLF: 116.38724177445653
Iteration: 12, Func. Count: 117, Neg. LLF: 116.38723789848426
Iteration: 13, Func. Count: 125, Neg. LLF: 116.3872378618662
Optimization terminated successfully (Exit mode 0)
Current function value: 116.38723789848426
Iterations: 13
Function evaluations: 125
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 124.21909423137711
Iteration: 2, Func. Count: 24, Neg. LLF: 125.86428308944431
Iteration: 3, Func. Count: 35, Neg. LLF: 137.78646491518467
Iteration: 4, Func. Count: 47, Neg. LLF: 117.3200823882869
Iteration: 5, Func. Count: 58, Neg. LLF: 116.60499423321274
Iteration: 6, Func. Count: 68, Neg. LLF: 117.18450286202551
Iteration: 7, Func. Count: 79, Neg. LLF: 116.58882016513924
Iteration: 8, Func. Count: 90, Neg. LLF: 116.56592860849942
Iteration: 9, Func. Count: 100, Neg. LLF: 116.56588916591159
Iteration: 10, Func. Count: 110, Neg. LLF: 116.56586633365963
Iteration: 11, Func. Count: 120, Neg. LLF: 116.56585870043284
Iteration: 12, Func. Count: 129, Neg. LLF: 116.565858700278
Optimization terminated successfully (Exit mode 0)
Current function value: 116.56585870043284
Iterations: 12
Function evaluations: 129
Gradient evaluations: 12
Iteration: 1, Func. Count: 12, Neg. LLF: 128.39208236947775
Iteration: 2, Func. Count: 25, Neg. LLF: 117.44016333123969
Iteration: 3, Func. Count: 37, Neg. LLF: 116.76872266532398
Iteration: 4, Func. Count: 49, Neg. LLF: 116.66210976253956
Iteration: 5, Func. Count: 60, Neg. LLF: 116.77857923206454
Iteration: 6, Func. Count: 72, Neg. LLF: 116.59619382455433
Iteration: 7, Func. Count: 83, Neg. LLF: 116.5607176354852
Iteration: 8, Func. Count: 94, Neg. LLF: 116.57271371836651
Iteration: 9, Func. Count: 106, Neg. LLF: 116.61874624363183
Iteration: 10, Func. Count: 118, Neg. LLF: 115.96624640544142
Iteration: 11, Func. Count: 129, Neg. LLF: 115.13520564432962
Iteration: 12, Func. Count: 140, Neg. LLF: 114.96830854659171
Iteration: 13, Func. Count: 151, Neg. LLF: 114.7642169597671
Iteration: 14, Func. Count: 162, Neg. LLF: 114.75367830612745
Iteration: 15, Func. Count: 173, Neg. LLF: 114.73324794753202
Iteration: 16, Func. Count: 184, Neg. LLF: 114.73096138755086
Iteration: 17, Func. Count: 195, Neg. LLF: 114.7309864709942
Iteration: 18, Func. Count: 206, Neg. LLF: 114.73050234680466
Iteration: 19, Func. Count: 227, Neg. LLF: 114.73086316611699
Iteration: 20, Func. Count: 239, Neg. LLF: 114.73007761719526
Iteration: 21, Func. Count: 260, Neg. LLF: 114.8517551640166
Iteration: 22, Func. Count: 273, Neg. LLF: 114.73158395305867
Iteration: 23, Func. Count: 286, Neg. LLF: 114.73136860231764
Iteration: 24, Func. Count: 298, Neg. LLF: 114.73132736866876
Iteration: 25, Func. Count: 308, Neg. LLF: 114.73132714406525
Optimization terminated successfully (Exit mode 0)
Current function value: 114.73132736866876
Iterations: 26
Function evaluations: 308
Gradient evaluations: 25
Iteration: 1, Func. Count: 13, Neg. LLF: 122.982291937843
Iteration: 2, Func. Count: 28, Neg. LLF: 120.41326269766421
Iteration: 3, Func. Count: 41, Neg. LLF: 116.55256606580845
Iteration: 4, Func. Count: 53, Neg. LLF: 116.4719367587133
Iteration: 5, Func. Count: 65, Neg. LLF: 116.45277331253678
Iteration: 6, Func. Count: 77, Neg. LLF: 116.45977225834734
Iteration: 7, Func. Count: 90, Neg. LLF: 116.35731900501727
Iteration: 8, Func. Count: 102, Neg. LLF: 115.87137984074064
Iteration: 9, Func. Count: 114, Neg. LLF: 114.75700084361321
Iteration: 10, Func. Count: 126, Neg. LLF: 330.2944165229128
Iteration: 11, Func. Count: 140, Neg. LLF: 114.2671213607038
Iteration: 12, Func. Count: 152, Neg. LLF: 114.05671500428528
Iteration: 13, Func. Count: 164, Neg. LLF: 113.95296948939209
Iteration: 14, Func. Count: 176, Neg. LLF: 113.8921229178641
Iteration: 15, Func. Count: 188, Neg. LLF: 113.83654021031819
Iteration: 16, Func. Count: 200, Neg. LLF: 113.8271628897916
Iteration: 17, Func. Count: 212, Neg. LLF: 113.82627420388192
Iteration: 18, Func. Count: 224, Neg. LLF: 113.82626215945216
Iteration: 19, Func. Count: 241, Neg. LLF: 113.82625178193614
Iteration: 20, Func. Count: 253, Neg. LLF: 113.82624031869365
Iteration: 21, Func. Count: 265, Neg. LLF: 113.84460136253247
Optimization terminated successfully (Exit mode 0)
Current function value: 113.82624019952368
Iterations: 22
Function evaluations: 268
Gradient evaluations: 21
Iteration: 1, Func. Count: 14, Neg. LLF: 123.90877687582848
Iteration: 2, Func. Count: 30, Neg. LLF: 121.49197536397196
Iteration: 3, Func. Count: 44, Neg. LLF: 116.75883280121475
Iteration: 4, Func. Count: 58, Neg. LLF: 116.54778214621432
Iteration: 5, Func. Count: 71, Neg. LLF: 116.46733409696611
Iteration: 6, Func. Count: 84, Neg. LLF: 116.15095779120638
Iteration: 7, Func. Count: 97, Neg. LLF: 115.46871553312275
Iteration: 8, Func. Count: 110, Neg. LLF: 114.38704824024789
Iteration: 9, Func. Count: 123, Neg. LLF: 114.10183438690089
Iteration: 10, Func. Count: 136, Neg. LLF: 114.02103458194351
Iteration: 11, Func. Count: 149, Neg. LLF: 113.92821149336663
Iteration: 12, Func. Count: 162, Neg. LLF: 113.91824990333973
Iteration: 13, Func. Count: 176, Neg. LLF: 113.8326269099373
Iteration: 14, Func. Count: 189, Neg. LLF: 113.82681312767647
Iteration: 15, Func. Count: 202, Neg. LLF: 114.05642468125471
Iteration: 16, Func. Count: 217, Neg. LLF: 114.09364101326942
Iteration: 17, Func. Count: 232, Neg. LLF: 114.00608480200981
Iteration: 18, Func. Count: 247, Neg. LLF: 113.82662199757836
Iteration: 19, Func. Count: 261, Neg. LLF: 113.82624190713258
Iteration: 20, Func. Count: 273, Neg. LLF: 113.82624185757345
Optimization terminated successfully (Exit mode 0)
Current function value: 113.82624190713258
Iterations: 21
Function evaluations: 273
Gradient evaluations: 20
Iteration: 1, Func. Count: 11, Neg. LLF: 120.61735832741363
Iteration: 2, Func. Count: 22, Neg. LLF: 132.5346312931244
Iteration: 3, Func. Count: 34, Neg. LLF: 146.08557738618637
Iteration: 4, Func. Count: 45, Neg. LLF: 6106800.59000781
Iteration: 5, Func. Count: 56, Neg. LLF: 2954796.928169689
Iteration: 6, Func. Count: 67, Neg. LLF: 3863421.897125446
Iteration: 7, Func. Count: 78, Neg. LLF: 118.02421068811725
Iteration: 8, Func. Count: 89, Neg. LLF: 115.13770208150659
Iteration: 9, Func. Count: 100, Neg. LLF: 114.1492729458529
Iteration: 10, Func. Count: 111, Neg. LLF: 112.25403956864648
Iteration: 11, Func. Count: 121, Neg. LLF: 112.23579907443577
Iteration: 12, Func. Count: 131, Neg. LLF: 112.23225981802729
Iteration: 13, Func. Count: 141, Neg. LLF: 112.22986203558439
Iteration: 14, Func. Count: 151, Neg. LLF: 112.2291983794462
Iteration: 15, Func. Count: 161, Neg. LLF: 112.22835774390944
Iteration: 16, Func. Count: 171, Neg. LLF: 112.2278966848748
Iteration: 17, Func. Count: 181, Neg. LLF: 112.22784763192347
Iteration: 18, Func. Count: 191, Neg. LLF: 112.22784038850645
Iteration: 19, Func. Count: 200, Neg. LLF: 112.22784038850953
Optimization terminated successfully (Exit mode 0)
Current function value: 112.22784038850645
Iterations: 19
Function evaluations: 200
Gradient evaluations: 19
Iteration: 1, Func. Count: 12, Neg. LLF: 117.60726491876261
Iteration: 2, Func. Count: 24, Neg. LLF: 115.95529110466455
Iteration: 3, Func. Count: 36, Neg. LLF: 117.37597602545895
Iteration: 4, Func. Count: 48, Neg. LLF: 128.51176849217782
Iteration: 5, Func. Count: 60, Neg. LLF: 136.8436067142372
Iteration: 6, Func. Count: 72, Neg. LLF: 112.9635663985068
Iteration: 7, Func. Count: 84, Neg. LLF: 113.41438744500859
Iteration: 8, Func. Count: 96, Neg. LLF: 112.39896105944578
Iteration: 9, Func. Count: 108, Neg. LLF: 111.35936979432034
Iteration: 10, Func. Count: 119, Neg. LLF: 111.34831603498412
Iteration: 11, Func. Count: 130, Neg. LLF: 111.34738124504935
Iteration: 12, Func. Count: 141, Neg. LLF: 111.3469382149687
Iteration: 13, Func. Count: 152, Neg. LLF: 111.34680395581621
Iteration: 14, Func. Count: 163, Neg. LLF: 111.34678744388194
Iteration: 15, Func. Count: 173, Neg. LLF: 111.34678744387152
Optimization terminated successfully (Exit mode 0)
Current function value: 111.34678744388194
Iterations: 15
Function evaluations: 173
Gradient evaluations: 15
Iteration: 1, Func. Count: 13, Neg. LLF: 116.85092235816744
Iteration: 2, Func. Count: 26, Neg. LLF: 113.48944492924703
Iteration: 3, Func. Count: 39, Neg. LLF: 120.1159565112821
Iteration: 4, Func. Count: 55, Neg. LLF: 116.1440118964738
Iteration: 5, Func. Count: 68, Neg. LLF: 20282.567756769302
Iteration: 6, Func. Count: 81, Neg. LLF: 9342.880732526817
Iteration: 7, Func. Count: 94, Neg. LLF: 111.61086873928868
Iteration: 8, Func. Count: 106, Neg. LLF: 111.37898404841009
Iteration: 9, Func. Count: 118, Neg. LLF: 111.57457199828187
Iteration: 10, Func. Count: 131, Neg. LLF: 111.35673878380037
Iteration: 11, Func. Count: 143, Neg. LLF: 111.34977605476955
Iteration: 12, Func. Count: 155, Neg. LLF: 111.34750746490799
Iteration: 13, Func. Count: 167, Neg. LLF: 111.34682759826661
Iteration: 14, Func. Count: 179, Neg. LLF: 111.34679482002028
Iteration: 15, Func. Count: 191, Neg. LLF: 111.34679040040263
Iteration: 16, Func. Count: 203, Neg. LLF: 111.34678774739032
Iteration: 17, Func. Count: 214, Neg. LLF: 111.34678792038123
Optimization terminated successfully (Exit mode 0)
Current function value: 111.34678774739032
Iterations: 17
Function evaluations: 214
Gradient evaluations: 17
Iteration: 1, Func. Count: 14, Neg. LLF: 114.63861703549101
Iteration: 2, Func. Count: 27, Neg. LLF: 114.92163622056033
Iteration: 3, Func. Count: 41, Neg. LLF: 153.47548785010986
Iteration: 4, Func. Count: 56, Neg. LLF: 148.94812211828577
Iteration: 5, Func. Count: 70, Neg. LLF: 117.71633048678686
Iteration: 6, Func. Count: 84, Neg. LLF: 168.49090406420575
Iteration: 7, Func. Count: 98, Neg. LLF: 165.9715035692022
Iteration: 8, Func. Count: 112, Neg. LLF: 119.87852704740526
Iteration: 9, Func. Count: 126, Neg. LLF: 116.10530978928553
Iteration: 10, Func. Count: 140, Neg. LLF: 115.37151615080597
Iteration: 11, Func. Count: 154, Neg. LLF: 112.2124848246581
Iteration: 12, Func. Count: 168, Neg. LLF: 112.80064189681143
Iteration: 13, Func. Count: 182, Neg. LLF: 121.43388754559523
Iteration: 14, Func. Count: 196, Neg. LLF: 110.80746042253936
Iteration: 15, Func. Count: 210, Neg. LLF: 110.46165124431947
Iteration: 16, Func. Count: 223, Neg. LLF: 111.16103219157705
Iteration: 17, Func. Count: 237, Neg. LLF: 110.44719906091466
Iteration: 18, Func. Count: 251, Neg. LLF: 110.35620831211254
Iteration: 19, Func. Count: 264, Neg. LLF: 110.3559474970069
Iteration: 20, Func. Count: 277, Neg. LLF: 110.35588574336786
Iteration: 21, Func. Count: 290, Neg. LLF: 110.35587627278125
Iteration: 22, Func. Count: 303, Neg. LLF: 110.35587381702967
Iteration: 23, Func. Count: 316, Neg. LLF: 110.35587190025076
Iteration: 24, Func. Count: 328, Neg. LLF: 110.35587183492133
Optimization terminated successfully (Exit mode 0)
Current function value: 110.35587190025076
Iterations: 24
Function evaluations: 328
Gradient evaluations: 24
Iteration: 1, Func. Count: 15, Neg. LLF: 114.91617072793771
Iteration: 2, Func. Count: 29, Neg. LLF: 115.0919368174722
Iteration: 3, Func. Count: 44, Neg. LLF: 154.95609187460653
Iteration: 4, Func. Count: 60, Neg. LLF: 151.25851919581248
Iteration: 5, Func. Count: 75, Neg. LLF: 1311664.3185790968
Iteration: 6, Func. Count: 90, Neg. LLF: 230.8104972847483
Iteration: 7, Func. Count: 105, Neg. LLF: 129.52104623644877
Iteration: 8, Func. Count: 120, Neg. LLF: 119.22960629345005
Iteration: 9, Func. Count: 135, Neg. LLF: 117.76481847677255
Iteration: 10, Func. Count: 150, Neg. LLF: 113.81437043212074
Iteration: 11, Func. Count: 165, Neg. LLF: 113.98399744953625
Iteration: 12, Func. Count: 180, Neg. LLF: 113.35824680807004
Iteration: 13, Func. Count: 195, Neg. LLF: 113.79109036715184
Iteration: 14, Func. Count: 210, Neg. LLF: 110.65777613341118
Iteration: 15, Func. Count: 224, Neg. LLF: 110.99266777234473
Iteration: 16, Func. Count: 240, Neg. LLF: 110.60989392945785
Iteration: 17, Func. Count: 254, Neg. LLF: 110.99168033421915
Iteration: 18, Func. Count: 270, Neg. LLF: 110.6018619884139
Iteration: 19, Func. Count: 284, Neg. LLF: 110.60013581973487
Iteration: 20, Func. Count: 298, Neg. LLF: 110.6000194415343
Iteration: 21, Func. Count: 312, Neg. LLF: 110.59988558321092
Iteration: 22, Func. Count: 326, Neg. LLF: 110.59986194775877
Iteration: 23, Func. Count: 340, Neg. LLF: 110.59983808203009
Iteration: 24, Func. Count: 354, Neg. LLF: 110.59983035059619
Iteration: 25, Func. Count: 368, Neg. LLF: 110.5998289471935
Iteration: 26, Func. Count: 381, Neg. LLF: 110.59982891574599
Optimization terminated successfully (Exit mode 0)
Current function value: 110.5998289471935
Iterations: 26
Function evaluations: 381
Gradient evaluations: 26
Iteration: 1, Func. Count: 8, Neg. LLF: 122.22321931861724
Iteration: 2, Func. Count: 16, Neg. LLF: 123.53891393775885
Iteration: 3, Func. Count: 26, Neg. LLF: 117.45459243811416
Iteration: 4, Func. Count: 33, Neg. LLF: 197.62475440389443
Iteration: 5, Func. Count: 41, Neg. LLF: 119.00974111931916
Iteration: 6, Func. Count: 49, Neg. LLF: 116.67282817215886
Iteration: 7, Func. Count: 56, Neg. LLF: 116.6308834878474
Iteration: 8, Func. Count: 63, Neg. LLF: 116.65412968534478
Iteration: 9, Func. Count: 71, Neg. LLF: 116.5820446264474
Iteration: 10, Func. Count: 78, Neg. LLF: 116.57674380500904
Iteration: 11, Func. Count: 85, Neg. LLF: 116.57601660386854
Iteration: 12, Func. Count: 92, Neg. LLF: 116.5758978124156
Iteration: 13, Func. Count: 99, Neg. LLF: 116.57589560722789
Iteration: 14, Func. Count: 105, Neg. LLF: 116.57589573971327
Optimization terminated successfully (Exit mode 0)
Current function value: 116.57589560722789
Iterations: 14
Function evaluations: 105
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 133.6251494055065
Iteration: 2, Func. Count: 20, Neg. LLF: 120.33716134386128
Iteration: 3, Func. Count: 29, Neg. LLF: 116.79760246651693
Iteration: 4, Func. Count: 37, Neg. LLF: 116.85594358012129
Iteration: 5, Func. Count: 46, Neg. LLF: 117.10035505929523
Iteration: 6, Func. Count: 55, Neg. LLF: 116.95986768395463
Iteration: 7, Func. Count: 64, Neg. LLF: 116.7349203094686
Iteration: 8, Func. Count: 72, Neg. LLF: 116.73277496874391
Iteration: 9, Func. Count: 80, Neg. LLF: 116.6884958830944
Iteration: 10, Func. Count: 88, Neg. LLF: 116.54154731459346
Iteration: 11, Func. Count: 96, Neg. LLF: 118.48297827234474
Iteration: 12, Func. Count: 105, Neg. LLF: 117.79829022599924
Iteration: 13, Func. Count: 114, Neg. LLF: 116.67984504964454
Iteration: 14, Func. Count: 123, Neg. LLF: 116.66783314495927
Iteration: 15, Func. Count: 132, Neg. LLF: 116.46165799567707
Iteration: 16, Func. Count: 140, Neg. LLF: 116.45984697912272
Iteration: 17, Func. Count: 148, Neg. LLF: 116.45971841644607
Iteration: 18, Func. Count: 156, Neg. LLF: 171.9905848906407
Iteration: 19, Func. Count: 168, Neg. LLF: 116.45981565990826
Iteration: 20, Func. Count: 177, Neg. LLF: 116.45971334032949
Iteration: 21, Func. Count: 185, Neg. LLF: 116.45970513153468
Optimization terminated successfully (Exit mode 0)
Current function value: 116.45970513154629
Iterations: 22
Function evaluations: 185
Gradient evaluations: 21
Iteration: 1, Func. Count: 10, Neg. LLF: 124.64561238172345
Iteration: 2, Func. Count: 22, Neg. LLF: 118.13984336580052
Iteration: 3, Func. Count: 32, Neg. LLF: 116.7692787529706
Iteration: 4, Func. Count: 41, Neg. LLF: 116.66543539536147
Iteration: 5, Func. Count: 50, Neg. LLF: 116.59965178312308
Iteration: 6, Func. Count: 59, Neg. LLF: 116.64679253672861
Iteration: 7, Func. Count: 69, Neg. LLF: 116.6734345022419
Iteration: 8, Func. Count: 79, Neg. LLF: 116.48091719862484
Iteration: 9, Func. Count: 88, Neg. LLF: 116.46576687674298
Iteration: 10, Func. Count: 97, Neg. LLF: 116.46372705989455
Iteration: 11, Func. Count: 106, Neg. LLF: 116.46300749973186
Iteration: 12, Func. Count: 115, Neg. LLF: 116.46199448169466
Iteration: 13, Func. Count: 124, Neg. LLF: 116.46169933043326
Iteration: 14, Func. Count: 133, Neg. LLF: 116.46166657757934
Iteration: 15, Func. Count: 142, Neg. LLF: 116.46166543175072
Iteration: 16, Func. Count: 150, Neg. LLF: 116.46166543180475
Optimization terminated successfully (Exit mode 0)
Current function value: 116.46166543175072
Iterations: 16
Function evaluations: 150
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 130.4537500484254
Iteration: 2, Func. Count: 24, Neg. LLF: 120.20616797860316
Iteration: 3, Func. Count: 35, Neg. LLF: 116.73789650363439
Iteration: 4, Func. Count: 45, Neg. LLF: 116.61162944749115
Iteration: 5, Func. Count: 55, Neg. LLF: 117.20466096047423
Iteration: 6, Func. Count: 66, Neg. LLF: 116.55386523416182
Iteration: 7, Func. Count: 76, Neg. LLF: 116.5391657043931
Iteration: 8, Func. Count: 86, Neg. LLF: 116.52431958938573
Iteration: 9, Func. Count: 96, Neg. LLF: 116.50999284478824
Iteration: 10, Func. Count: 106, Neg. LLF: 116.50402638463709
Iteration: 11, Func. Count: 116, Neg. LLF: 116.50280568777652
Iteration: 12, Func. Count: 126, Neg. LLF: 116.50287736988568
Iteration: 13, Func. Count: 137, Neg. LLF: 116.5024827868572
Iteration: 14, Func. Count: 147, Neg. LLF: 116.50240759924974
Iteration: 15, Func. Count: 157, Neg. LLF: 116.5023735993944
Iteration: 16, Func. Count: 167, Neg. LLF: 116.50236689236498
Iteration: 17, Func. Count: 177, Neg. LLF: 116.50236073824247
Iteration: 18, Func. Count: 187, Neg. LLF: 116.50199131148759
Iteration: 19, Func. Count: 197, Neg. LLF: 116.4712827526677
Iteration: 20, Func. Count: 207, Neg. LLF: 35557531.412158474
Iteration: 21, Func. Count: 220, Neg. LLF: 116.6460613969883
Iteration: 22, Func. Count: 231, Neg. LLF: 116.4659467810581
Iteration: 23, Func. Count: 241, Neg. LLF: 116.4632501750262
Iteration: 24, Func. Count: 251, Neg. LLF: 116.45970633797445
Iteration: 25, Func. Count: 260, Neg. LLF: 116.45970634008306
Optimization terminated successfully (Exit mode 0)
Current function value: 116.45970633797445
Iterations: 26
Function evaluations: 260
Gradient evaluations: 25
Iteration: 1, Func. Count: 12, Neg. LLF: 129.6197024090438
Iteration: 2, Func. Count: 26, Neg. LLF: 121.34814706557852
Iteration: 3, Func. Count: 38, Neg. LLF: 116.74135688575001
Iteration: 4, Func. Count: 50, Neg. LLF: 116.5544525900805
Iteration: 5, Func. Count: 61, Neg. LLF: 116.53090532225329
Iteration: 6, Func. Count: 72, Neg. LLF: 116.51452714661033
Iteration: 7, Func. Count: 83, Neg. LLF: 116.50286850743055
Iteration: 8, Func. Count: 94, Neg. LLF: 116.49419100683112
Iteration: 9, Func. Count: 105, Neg. LLF: 116.49218306271287
Iteration: 10, Func. Count: 116, Neg. LLF: 116.48961000028193
Iteration: 11, Func. Count: 127, Neg. LLF: 116.48919450821194
Iteration: 12, Func. Count: 138, Neg. LLF: 116.48914150494566
Iteration: 13, Func. Count: 149, Neg. LLF: 116.48913583735455
Iteration: 14, Func. Count: 159, Neg. LLF: 116.4891358371784
Optimization terminated successfully (Exit mode 0)
Current function value: 116.48913583735455
Iterations: 14
Function evaluations: 159
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 122.21501140599871
Iteration: 2, Func. Count: 18, Neg. LLF: 123.30905200051386
Iteration: 3, Func. Count: 29, Neg. LLF: 117.61607770145073
Iteration: 4, Func. Count: 37, Neg. LLF: 257.12618959246805
Iteration: 5, Func. Count: 46, Neg. LLF: 166.53578683192998
Iteration: 6, Func. Count: 55, Neg. LLF: 117.06388999080194
Iteration: 7, Func. Count: 65, Neg. LLF: 116.91010385822932
Iteration: 8, Func. Count: 73, Neg. LLF: 116.88187909261079
Iteration: 9, Func. Count: 81, Neg. LLF: 116.87986519893902
Iteration: 10, Func. Count: 89, Neg. LLF: 116.8794492511988
Iteration: 11, Func. Count: 97, Neg. LLF: 116.87935507043234
Iteration: 12, Func. Count: 105, Neg. LLF: 116.87934875592168
Iteration: 13, Func. Count: 112, Neg. LLF: 116.87934880816569
Optimization terminated successfully (Exit mode 0)
Current function value: 116.87934875592168
Iterations: 13
Function evaluations: 112
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 132.38154007885885
Iteration: 2, Func. Count: 22, Neg. LLF: 121.74698502531234
Iteration: 3, Func. Count: 32, Neg. LLF: 116.81709648355914
Iteration: 4, Func. Count: 41, Neg. LLF: 116.82952564531784
Iteration: 5, Func. Count: 51, Neg. LLF: 117.21552717116742
Iteration: 6, Func. Count: 61, Neg. LLF: 116.93228278100497
Iteration: 7, Func. Count: 71, Neg. LLF: 116.73621069953421
Iteration: 8, Func. Count: 80, Neg. LLF: 116.7340660191247
Iteration: 9, Func. Count: 89, Neg. LLF: 116.68687674434027
Iteration: 10, Func. Count: 98, Neg. LLF: 116.58819368115297
Iteration: 11, Func. Count: 107, Neg. LLF: 117.2440332396599
Iteration: 12, Func. Count: 117, Neg. LLF: 549.1581100334483
Iteration: 13, Func. Count: 129, Neg. LLF: 116.46894657127278
Iteration: 14, Func. Count: 138, Neg. LLF: 116.90850484409346
Iteration: 15, Func. Count: 148, Neg. LLF: 116.45813278388847
Iteration: 16, Func. Count: 158, Neg. LLF: 116.42377816802858
Iteration: 17, Func. Count: 167, Neg. LLF: 124.92691366873228
Iteration: 18, Func. Count: 178, Neg. LLF: 116.36640756928861
Iteration: 19, Func. Count: 187, Neg. LLF: 116.20351604140401
Iteration: 20, Func. Count: 196, Neg. LLF: 116.1997708952919
Iteration: 21, Func. Count: 205, Neg. LLF: 116.19954196953148
Iteration: 22, Func. Count: 214, Neg. LLF: 116.19953541079173
Iteration: 23, Func. Count: 223, Neg. LLF: 116.19953326124308
Iteration: 24, Func. Count: 232, Neg. LLF: 116.19953188302962
Iteration: 25, Func. Count: 240, Neg. LLF: 116.19953175895911
Optimization terminated successfully (Exit mode 0)
Current function value: 116.19953188302962
Iterations: 29
Function evaluations: 240
Gradient evaluations: 25
Iteration: 1, Func. Count: 11, Neg. LLF: 130.77410488085835
Iteration: 2, Func. Count: 24, Neg. LLF: 119.2482150636325
Iteration: 3, Func. Count: 35, Neg. LLF: 116.77708068072016
Iteration: 4, Func. Count: 45, Neg. LLF: 116.66483197907341
Iteration: 5, Func. Count: 55, Neg. LLF: 116.60342582861571
Iteration: 6, Func. Count: 65, Neg. LLF: 116.59721015315482
Iteration: 7, Func. Count: 76, Neg. LLF: 116.78609503870476
Iteration: 8, Func. Count: 87, Neg. LLF: 116.46372158981518
Iteration: 9, Func. Count: 97, Neg. LLF: 116.46169435103039
Iteration: 10, Func. Count: 107, Neg. LLF: 116.46169094588885
Iteration: 11, Func. Count: 117, Neg. LLF: 116.4616716782647
Iteration: 12, Func. Count: 127, Neg. LLF: 116.46166601036141
Iteration: 13, Func. Count: 136, Neg. LLF: 116.46166601020374
Optimization terminated successfully (Exit mode 0)
Current function value: 116.46166601036141
Iterations: 13
Function evaluations: 136
Gradient evaluations: 13
Iteration: 1, Func. Count: 12, Neg. LLF: 129.83012282852283
Iteration: 2, Func. Count: 26, Neg. LLF: 120.77564462362626
Iteration: 3, Func. Count: 38, Neg. LLF: 116.76158501216507
Iteration: 4, Func. Count: 49, Neg. LLF: 116.5843066835661
Iteration: 5, Func. Count: 60, Neg. LLF: 140.53567659283752
Iteration: 6, Func. Count: 72, Neg. LLF: 116.31740027755498
Iteration: 7, Func. Count: 83, Neg. LLF: 115.69483764540642
Iteration: 8, Func. Count: 94, Neg. LLF: 115.41102973203833
Iteration: 9, Func. Count: 105, Neg. LLF: 114.33632191275055
Iteration: 10, Func. Count: 116, Neg. LLF: 114.38182722586836
Iteration: 11, Func. Count: 128, Neg. LLF: 113.94041619484804
Iteration: 12, Func. Count: 139, Neg. LLF: 113.88236738496886
Iteration: 13, Func. Count: 150, Neg. LLF: 113.87637638249205
Iteration: 14, Func. Count: 161, Neg. LLF: 113.87554902670745
Iteration: 15, Func. Count: 172, Neg. LLF: 113.87554495889182
Iteration: 16, Func. Count: 182, Neg. LLF: 113.87554484510298
Optimization terminated successfully (Exit mode 0)
Current function value: 113.87554495889182
Iterations: 16
Function evaluations: 182
Gradient evaluations: 16
Iteration: 1, Func. Count: 13, Neg. LLF: 129.11906306109455
Iteration: 2, Func. Count: 28, Neg. LLF: 122.08079006030563
Iteration: 3, Func. Count: 41, Neg. LLF: 116.77596405510856
Iteration: 4, Func. Count: 54, Neg. LLF: 116.5430506382415
Iteration: 5, Func. Count: 66, Neg. LLF: 116.51920122555288
Iteration: 6, Func. Count: 78, Neg. LLF: 116.26095745677486
Iteration: 7, Func. Count: 90, Neg. LLF: 116.27560947108944
Iteration: 8, Func. Count: 103, Neg. LLF: 115.72736638046861
Iteration: 9, Func. Count: 115, Neg. LLF: 114.05896977577484
Iteration: 10, Func. Count: 127, Neg. LLF: 113.94358576892344
Iteration: 11, Func. Count: 139, Neg. LLF: 113.88473060228628
Iteration: 12, Func. Count: 151, Neg. LLF: 113.87680215514902
Iteration: 13, Func. Count: 163, Neg. LLF: 113.87556761789016
Iteration: 14, Func. Count: 175, Neg. LLF: 113.87554845252829
Iteration: 15, Func. Count: 187, Neg. LLF: 113.87554611194304
Iteration: 16, Func. Count: 199, Neg. LLF: 113.87554484356168
Iteration: 17, Func. Count: 210, Neg. LLF: 113.87554479359548
Optimization terminated successfully (Exit mode 0)
Current function value: 113.87554484356168
Iterations: 17
Function evaluations: 210
Gradient evaluations: 17
Iteration: 1, Func. Count: 10, Neg. LLF: 122.2090980468499
Iteration: 2, Func. Count: 20, Neg. LLF: 123.36900839571375
Iteration: 3, Func. Count: 32, Neg. LLF: 117.56438580949727
Iteration: 4, Func. Count: 41, Neg. LLF: 498.5988677525041
Iteration: 5, Func. Count: 51, Neg. LLF: 145.95138368091395
Iteration: 6, Func. Count: 61, Neg. LLF: 116.6525626541715
Iteration: 7, Func. Count: 70, Neg. LLF: 116.56573805444619
Iteration: 8, Func. Count: 79, Neg. LLF: 116.5218105610043
Iteration: 9, Func. Count: 88, Neg. LLF: 116.52077586125142
Iteration: 10, Func. Count: 97, Neg. LLF: 116.52074657194302
Iteration: 11, Func. Count: 106, Neg. LLF: 116.52070374698114
Iteration: 12, Func. Count: 115, Neg. LLF: 116.52064437220355
Iteration: 13, Func. Count: 124, Neg. LLF: 116.52061752578209
Iteration: 14, Func. Count: 133, Neg. LLF: 116.52061223277833
Iteration: 15, Func. Count: 141, Neg. LLF: 116.52061217778538
Optimization terminated successfully (Exit mode 0)
Current function value: 116.52061223277833
Iterations: 15
Function evaluations: 141
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 130.59320767056965
Iteration: 2, Func. Count: 24, Neg. LLF: 120.15366196379964
Iteration: 3, Func. Count: 35, Neg. LLF: 118.31932062987565
Iteration: 4, Func. Count: 46, Neg. LLF: 116.71259878915328
Iteration: 5, Func. Count: 56, Neg. LLF: 116.80398045346323
Iteration: 6, Func. Count: 67, Neg. LLF: 116.71204577587447
Iteration: 7, Func. Count: 78, Neg. LLF: 116.69542114430418
Iteration: 8, Func. Count: 88, Neg. LLF: 116.6345431369567
Iteration: 9, Func. Count: 98, Neg. LLF: 116.55862483864702
Iteration: 10, Func. Count: 108, Neg. LLF: 116.54012122531103
Iteration: 11, Func. Count: 118, Neg. LLF: 116.52733387000258
Iteration: 12, Func. Count: 128, Neg. LLF: 116.52217162920579
Iteration: 13, Func. Count: 138, Neg. LLF: 116.52090601039292
Iteration: 14, Func. Count: 148, Neg. LLF: 116.52080577407187
Iteration: 15, Func. Count: 158, Neg. LLF: 116.52072547761956
Iteration: 16, Func. Count: 168, Neg. LLF: 116.52064174423397
Iteration: 17, Func. Count: 178, Neg. LLF: 116.52061522816182
Iteration: 18, Func. Count: 188, Neg. LLF: 116.52061207165737
Iteration: 19, Func. Count: 197, Neg. LLF: 116.5206120749392
Optimization terminated successfully (Exit mode 0)
Current function value: 116.52061207165737
Iterations: 19
Function evaluations: 197
Gradient evaluations: 19
Iteration: 1, Func. Count: 12, Neg. LLF: 130.98601273841487
Iteration: 2, Func. Count: 26, Neg. LLF: 119.19142741568349
Iteration: 3, Func. Count: 38, Neg. LLF: 116.77350037733419
Iteration: 4, Func. Count: 49, Neg. LLF: 116.66349440717164
Iteration: 5, Func. Count: 60, Neg. LLF: 116.60006183284851
Iteration: 6, Func. Count: 71, Neg. LLF: 116.56868800333224
Iteration: 7, Func. Count: 82, Neg. LLF: 115.95821784360948
Iteration: 8, Func. Count: 93, Neg. LLF: 133.24240247598152
Iteration: 9, Func. Count: 105, Neg. LLF: 114.94154314304828
Iteration: 10, Func. Count: 116, Neg. LLF: 114.80672699976324
Iteration: 11, Func. Count: 127, Neg. LLF: 114.78136400481075
Iteration: 12, Func. Count: 138, Neg. LLF: 114.72722689806082
Iteration: 13, Func. Count: 149, Neg. LLF: 114.71756557673326
Iteration: 14, Func. Count: 170, Neg. LLF: 114.71813209690075
Iteration: 15, Func. Count: 191, Neg. LLF: 115.0928420251068
Iteration: 16, Func. Count: 204, Neg. LLF: 115.04159609634317
Iteration: 17, Func. Count: 217, Neg. LLF: 114.75206400206378
Iteration: 18, Func. Count: 229, Neg. LLF: 114.73132736911676
Iteration: 19, Func. Count: 239, Neg. LLF: 114.73132714451177
Optimization terminated successfully (Exit mode 0)
Current function value: 114.73132736911676
Iterations: 20
Function evaluations: 239
Gradient evaluations: 19
Iteration: 1, Func. Count: 13, Neg. LLF: 129.93501134419
Iteration: 2, Func. Count: 28, Neg. LLF: 120.74522295801862
Iteration: 3, Func. Count: 41, Neg. LLF: 116.75719442877538
Iteration: 4, Func. Count: 53, Neg. LLF: 116.60120066690759
Iteration: 5, Func. Count: 65, Neg. LLF: 130.0727182389017
Iteration: 6, Func. Count: 79, Neg. LLF: 116.19835915429142
Iteration: 7, Func. Count: 91, Neg. LLF: 114.63347321900288
Iteration: 8, Func. Count: 103, Neg. LLF: 122.09513638088673
Iteration: 9, Func. Count: 117, Neg. LLF: 114.16598444643886
Iteration: 10, Func. Count: 129, Neg. LLF: 114.00900949573295
Iteration: 11, Func. Count: 141, Neg. LLF: 113.9143859820269
Iteration: 12, Func. Count: 153, Neg. LLF: 113.87820393849954
Iteration: 13, Func. Count: 165, Neg. LLF: 113.87670301892581
Iteration: 14, Func. Count: 177, Neg. LLF: 113.87563920232488
Iteration: 15, Func. Count: 189, Neg. LLF: 113.8755468235796
Iteration: 16, Func. Count: 201, Neg. LLF: 113.8755447551489
Iteration: 17, Func. Count: 212, Neg. LLF: 113.87554464132555
Optimization terminated successfully (Exit mode 0)
Current function value: 113.8755447551489
Iterations: 17
Function evaluations: 212
Gradient evaluations: 17
Iteration: 1, Func. Count: 14, Neg. LLF: 129.1519279551062
Iteration: 2, Func. Count: 30, Neg. LLF: 122.06863506763851
Iteration: 3, Func. Count: 44, Neg. LLF: 116.76790091177875
Iteration: 4, Func. Count: 58, Neg. LLF: 116.54269508259074
Iteration: 5, Func. Count: 71, Neg. LLF: 116.51978444685948
Iteration: 6, Func. Count: 84, Neg. LLF: 116.34538693190227
Iteration: 7, Func. Count: 97, Neg. LLF: 116.25874701856762
Iteration: 8, Func. Count: 110, Neg. LLF: 116.10622866328056
Iteration: 9, Func. Count: 123, Neg. LLF: 115.16415658533734
Iteration: 10, Func. Count: 136, Neg. LLF: 114.11240794061835
Iteration: 11, Func. Count: 149, Neg. LLF: 113.96869566267861
Iteration: 12, Func. Count: 162, Neg. LLF: 114.14272751408969
Iteration: 13, Func. Count: 176, Neg. LLF: 113.88773444342706
Iteration: 14, Func. Count: 189, Neg. LLF: 113.87725766089753
Iteration: 15, Func. Count: 202, Neg. LLF: 113.87590461328769
Iteration: 16, Func. Count: 215, Neg. LLF: 113.87555999186385
Iteration: 17, Func. Count: 228, Neg. LLF: 113.87554188006325
Iteration: 18, Func. Count: 241, Neg. LLF: 113.87554536273339
Iteration: 19, Func. Count: 254, Neg. LLF: 113.87554503803463
Optimization terminated successfully (Exit mode 0)
Current function value: 113.87554503803463
Iterations: 19
Function evaluations: 254
Gradient evaluations: 19
Iteration: 1, Func. Count: 11, Neg. LLF: 122.19727433945165
Iteration: 2, Func. Count: 22, Neg. LLF: 120.31725625840922
Iteration: 3, Func. Count: 35, Neg. LLF: 117.58698505333405
Iteration: 4, Func. Count: 45, Neg. LLF: 7110.191705725194
Iteration: 5, Func. Count: 56, Neg. LLF: 149.10023715721994
Iteration: 6, Func. Count: 68, Neg. LLF: 121.12681509409981
Iteration: 7, Func. Count: 81, Neg. LLF: 116.49063633469551
Iteration: 8, Func. Count: 91, Neg. LLF: 116.4649510771433
Iteration: 9, Func. Count: 102, Neg. LLF: 116.39102759492131
Iteration: 10, Func. Count: 112, Neg. LLF: 116.38941426490452
Iteration: 11, Func. Count: 122, Neg. LLF: 116.38884964585469
Iteration: 12, Func. Count: 132, Neg. LLF: 116.38731097100903
Iteration: 13, Func. Count: 142, Neg. LLF: 116.38724277229211
Iteration: 14, Func. Count: 152, Neg. LLF: 116.38723791055398
Iteration: 15, Func. Count: 161, Neg. LLF: 116.38723787393347
Optimization terminated successfully (Exit mode 0)
Current function value: 116.38723791055398
Iterations: 15
Function evaluations: 161
Gradient evaluations: 15
Iteration: 1, Func. Count: 12, Neg. LLF: 130.8845362927673
Iteration: 2, Func. Count: 26, Neg. LLF: 121.39719292258305
Iteration: 3, Func. Count: 38, Neg. LLF: 137.3914940080525
Iteration: 4, Func. Count: 51, Neg. LLF: 117.01483123699899
Iteration: 5, Func. Count: 63, Neg. LLF: 117.37108175068704
Iteration: 6, Func. Count: 75, Neg. LLF: 116.58302018027227
Iteration: 7, Func. Count: 86, Neg. LLF: 117.00222934985779
Iteration: 8, Func. Count: 98, Neg. LLF: 116.57425995125786
Iteration: 9, Func. Count: 110, Neg. LLF: 116.56592616917831
Iteration: 10, Func. Count: 121, Neg. LLF: 116.56587998806768
Iteration: 11, Func. Count: 132, Neg. LLF: 116.56585993520258
Iteration: 12, Func. Count: 143, Neg. LLF: 116.5658581799847
Iteration: 13, Func. Count: 153, Neg. LLF: 116.5658581800128
Optimization terminated successfully (Exit mode 0)
Current function value: 116.5658581799847
Iterations: 13
Function evaluations: 153
Gradient evaluations: 13
Iteration: 1, Func. Count: 13, Neg. LLF: 123.86043201529155
Iteration: 2, Func. Count: 28, Neg. LLF: 119.91628798848475
Iteration: 3, Func. Count: 42, Neg. LLF: 116.70751828483891
Iteration: 4, Func. Count: 54, Neg. LLF: 116.68699895838937
Iteration: 5, Func. Count: 66, Neg. LLF: 116.63787659942993
Iteration: 6, Func. Count: 78, Neg. LLF: 116.53505581956288
Iteration: 7, Func. Count: 90, Neg. LLF: 116.20028239366174
Iteration: 8, Func. Count: 102, Neg. LLF: 116.56461037543595
Iteration: 9, Func. Count: 115, Neg. LLF: 116.45776139743597
Iteration: 10, Func. Count: 128, Neg. LLF: 21583711.456440017
Iteration: 11, Func. Count: 142, Neg. LLF: 119.6834192428914
Iteration: 12, Func. Count: 155, Neg. LLF: 114.92926411362942
Iteration: 13, Func. Count: 167, Neg. LLF: 115.05176232274793
Iteration: 14, Func. Count: 180, Neg. LLF: 114.79269999270029
Iteration: 15, Func. Count: 193, Neg. LLF: 114.73571204459098
Iteration: 16, Func. Count: 205, Neg. LLF: 114.73144744038426
Iteration: 17, Func. Count: 217, Neg. LLF: 114.73132841026612
Iteration: 18, Func. Count: 229, Neg. LLF: 114.73132738151877
Iteration: 19, Func. Count: 240, Neg. LLF: 114.73132715690669
Optimization terminated successfully (Exit mode 0)
Current function value: 114.73132738151877
Iterations: 20
Function evaluations: 240
Gradient evaluations: 19
Iteration: 1, Func. Count: 14, Neg. LLF: 122.813352778005
Iteration: 2, Func. Count: 31, Neg. LLF: 119.90317297535074
Iteration: 3, Func. Count: 45, Neg. LLF: 116.54855421591262
Iteration: 4, Func. Count: 58, Neg. LLF: 116.47028848820507
Iteration: 5, Func. Count: 71, Neg. LLF: 117.20903812102328
Iteration: 6, Func. Count: 86, Neg. LLF: 116.37450747821799
Iteration: 7, Func. Count: 99, Neg. LLF: 119.6799176640073
Iteration: 8, Func. Count: 113, Neg. LLF: 125.9072778723138
Iteration: 9, Func. Count: 127, Neg. LLF: 116.72635525010595
Iteration: 10, Func. Count: 141, Neg. LLF: 115.2156136167952
Iteration: 11, Func. Count: 154, Neg. LLF: 114.49083969307316
Iteration: 12, Func. Count: 167, Neg. LLF: 114.23296249684745
Iteration: 13, Func. Count: 180, Neg. LLF: 113.9628754792045
Iteration: 14, Func. Count: 193, Neg. LLF: 113.89059630862316
Iteration: 15, Func. Count: 206, Neg. LLF: 113.83584114115546
Iteration: 16, Func. Count: 219, Neg. LLF: 113.8270478883464
Iteration: 17, Func. Count: 232, Neg. LLF: 113.8255935927709
Iteration: 18, Func. Count: 245, Neg. LLF: 113.99671967496225
Iteration: 19, Func. Count: 260, Neg. LLF: 114.73132058781603
Iteration: 20, Func. Count: 275, Neg. LLF: 113.83945140319368
Iteration: 21, Func. Count: 290, Neg. LLF: 113.82624745605649
Iteration: 22, Func. Count: 303, Neg. LLF: 113.8262438491767
Iteration: 23, Func. Count: 316, Neg. LLF: 113.8262419144541
Iteration: 24, Func. Count: 328, Neg. LLF: 113.8262418091357
Optimization terminated successfully (Exit mode 0)
Current function value: 113.8262419144541
Iterations: 25
Function evaluations: 328
Gradient evaluations: 24
Iteration: 1, Func. Count: 15, Neg. LLF: 123.67178962648455
Iteration: 2, Func. Count: 33, Neg. LLF: 120.76443930587885
Iteration: 3, Func. Count: 48, Neg. LLF: 116.7035034675845
Iteration: 4, Func. Count: 62, Neg. LLF: 116.48866526367509
Iteration: 5, Func. Count: 76, Neg. LLF: 116.1888686892372
Iteration: 6, Func. Count: 90, Neg. LLF: 115.59314928489414
Iteration: 7, Func. Count: 104, Neg. LLF: 114.77267495569656
Iteration: 8, Func. Count: 118, Neg. LLF: 113.90502863005555
Iteration: 9, Func. Count: 132, Neg. LLF: 113.83596019506935
Iteration: 10, Func. Count: 146, Neg. LLF: 113.82922783519153
Iteration: 11, Func. Count: 160, Neg. LLF: 113.82601069422788
Iteration: 12, Func. Count: 174, Neg. LLF: 113.82649189684301
Iteration: 13, Func. Count: 189, Neg. LLF: 113.8263904517883
Iteration: 14, Func. Count: 204, Neg. LLF: 113.8262439660595
Iteration: 15, Func. Count: 218, Neg. LLF: 113.82602816249752
Iteration: 16, Func. Count: 237, Neg. LLF: 113.83215111048855
Optimization terminated successfully (Exit mode 0)
Current function value: 113.8262356818824
Iterations: 17
Function evaluations: 240
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 122.68907082380086
Iteration: 2, Func. Count: 24, Neg. LLF: 173.57165521879995
Iteration: 3, Func. Count: 36, Neg. LLF: 114.78094979628563
Iteration: 4, Func. Count: 49, Neg. LLF: 1347957.5644569541
Iteration: 5, Func. Count: 61, Neg. LLF: 5490939.922355418
Iteration: 6, Func. Count: 73, Neg. LLF: 150.94500099890664
Iteration: 7, Func. Count: 85, Neg. LLF: 116.7779303093728
Iteration: 8, Func. Count: 97, Neg. LLF: 114.80270222836336
Iteration: 9, Func. Count: 109, Neg. LLF: 112.66201749468294
Iteration: 10, Func. Count: 121, Neg. LLF: 112.24271799401359
Iteration: 11, Func. Count: 132, Neg. LLF: 112.23364558837808
Iteration: 12, Func. Count: 143, Neg. LLF: 112.22803900906379
Iteration: 13, Func. Count: 154, Neg. LLF: 112.22786089909
Iteration: 14, Func. Count: 165, Neg. LLF: 112.22785657885828
Iteration: 15, Func. Count: 177, Neg. LLF: 112.22784047725568
Iteration: 16, Func. Count: 187, Neg. LLF: 112.2278404772576
Optimization terminated successfully (Exit mode 0)
Current function value: 112.22784047725568
Iterations: 16
Function evaluations: 187
Gradient evaluations: 16
Iteration: 1, Func. Count: 13, Neg. LLF: 119.35876460621351
Iteration: 2, Func. Count: 26, Neg. LLF: 114.82562568731063
Iteration: 3, Func. Count: 39, Neg. LLF: 118.66844560698053
Iteration: 4, Func. Count: 52, Neg. LLF: 5502521.746098227
Iteration: 5, Func. Count: 65, Neg. LLF: 113.57056834685379
Iteration: 6, Func. Count: 78, Neg. LLF: 112.38958978641074
Iteration: 7, Func. Count: 91, Neg. LLF: 112.42718047357837
Iteration: 8, Func. Count: 104, Neg. LLF: 111.56286015302481
Iteration: 9, Func. Count: 117, Neg. LLF: 112.83315080985446
Iteration: 10, Func. Count: 131, Neg. LLF: 111.57389799499674
Iteration: 11, Func. Count: 144, Neg. LLF: 111.34721594080713
Iteration: 12, Func. Count: 156, Neg. LLF: 111.3468747764585
Iteration: 13, Func. Count: 168, Neg. LLF: 111.34678997442023
Iteration: 14, Func. Count: 180, Neg. LLF: 111.34678743060248
Iteration: 15, Func. Count: 191, Neg. LLF: 111.34678743052432
Optimization terminated successfully (Exit mode 0)
Current function value: 111.34678743060248
Iterations: 15
Function evaluations: 191
Gradient evaluations: 15
Iteration: 1, Func. Count: 14, Neg. LLF: 113.82730648281107
Iteration: 2, Func. Count: 27, Neg. LLF: 115.15137778898801
Iteration: 3, Func. Count: 42, Neg. LLF: 152.69765957781226
Iteration: 4, Func. Count: 57, Neg. LLF: 138.40378884899113
Iteration: 5, Func. Count: 71, Neg. LLF: 418.22935444700363
Iteration: 6, Func. Count: 85, Neg. LLF: 113.44246935071497
Iteration: 7, Func. Count: 99, Neg. LLF: 386.36074317214167
Iteration: 8, Func. Count: 113, Neg. LLF: 112.5071966348321
Iteration: 9, Func. Count: 127, Neg. LLF: 111.45956453826224
Iteration: 10, Func. Count: 141, Neg. LLF: 111.3496671631237
Iteration: 11, Func. Count: 154, Neg. LLF: 111.3471136670294
Iteration: 12, Func. Count: 167, Neg. LLF: 111.34680103470117
Iteration: 13, Func. Count: 180, Neg. LLF: 111.34678802329012
Iteration: 14, Func. Count: 192, Neg. LLF: 111.34678819619393
Optimization terminated successfully (Exit mode 0)
Current function value: 111.34678802329012
Iterations: 14
Function evaluations: 192
Gradient evaluations: 14
Iteration: 1, Func. Count: 15, Neg. LLF: 116.83116702845913
Iteration: 2, Func. Count: 33, Neg. LLF: 115.57199504448437
Iteration: 3, Func. Count: 48, Neg. LLF: 113.97763441618979
Iteration: 4, Func. Count: 63, Neg. LLF: 28121521.305975854
Iteration: 5, Func. Count: 78, Neg. LLF: 377.97500861333015
Iteration: 6, Func. Count: 93, Neg. LLF: 118.27911314128212
Iteration: 7, Func. Count: 108, Neg. LLF: 123.55494174225915
Iteration: 8, Func. Count: 123, Neg. LLF: 119.21804123250716
Iteration: 9, Func. Count: 138, Neg. LLF: 117.21157641505638
Iteration: 10, Func. Count: 153, Neg. LLF: 116.70838086287189
Iteration: 11, Func. Count: 168, Neg. LLF: 115.68884332251564
Iteration: 12, Func. Count: 183, Neg. LLF: 114.71399065614798
Iteration: 13, Func. Count: 198, Neg. LLF: 113.97095317419496
Iteration: 14, Func. Count: 213, Neg. LLF: 111.45605060436135
Iteration: 15, Func. Count: 228, Neg. LLF: 113.44744058790354
Iteration: 16, Func. Count: 243, Neg. LLF: 110.39867362739179
Iteration: 17, Func. Count: 257, Neg. LLF: 110.48476611186317
Iteration: 18, Func. Count: 272, Neg. LLF: 110.3643495171652
Iteration: 19, Func. Count: 286, Neg. LLF: 110.43013354241154
Iteration: 20, Func. Count: 301, Neg. LLF: 110.38926088304366
Iteration: 21, Func. Count: 316, Neg. LLF: 110.35587780979247
Iteration: 22, Func. Count: 330, Neg. LLF: 110.3558720204106
Iteration: 23, Func. Count: 343, Neg. LLF: 110.3558719551407
Optimization terminated successfully (Exit mode 0)
Current function value: 110.3558720204106
Iterations: 23
Function evaluations: 343
Gradient evaluations: 23
Iteration: 1, Func. Count: 16, Neg. LLF: 117.0164325783064
Iteration: 2, Func. Count: 35, Neg. LLF: 115.70855119526414
Iteration: 3, Func. Count: 51, Neg. LLF: 114.41720582236982
Iteration: 4, Func. Count: 68, Neg. LLF: 28109147.40414691
Iteration: 5, Func. Count: 84, Neg. LLF: 398.22075311656084
Iteration: 6, Func. Count: 100, Neg. LLF: 146.42437470752031
Iteration: 7, Func. Count: 116, Neg. LLF: 116.42054426195703
Iteration: 8, Func. Count: 132, Neg. LLF: 113.25616425473608
Iteration: 9, Func. Count: 148, Neg. LLF: 112.89158131512558
Iteration: 10, Func. Count: 164, Neg. LLF: 110.63593845005396
Iteration: 11, Func. Count: 179, Neg. LLF: 110.70884793811794
Iteration: 12, Func. Count: 195, Neg. LLF: 110.60388353466995
Iteration: 13, Func. Count: 210, Neg. LLF: 110.61129581425179
Iteration: 14, Func. Count: 226, Neg. LLF: 110.64576660767284
Iteration: 15, Func. Count: 242, Neg. LLF: 110.60030747857277
Iteration: 16, Func. Count: 257, Neg. LLF: 110.60006578686492
Iteration: 17, Func. Count: 272, Neg. LLF: 110.59986478452093
Iteration: 18, Func. Count: 287, Neg. LLF: 110.5998321645569
Iteration: 19, Func. Count: 302, Neg. LLF: 110.59982906303705
Iteration: 20, Func. Count: 316, Neg. LLF: 110.59982903151936
Optimization terminated successfully (Exit mode 0)
Current function value: 110.59982906303705
Iterations: 20
Function evaluations: 316
Gradient evaluations: 20
Iteration: 1, Func. Count: 8, Neg. LLF: 155.22717254528814
Iteration: 2, Func. Count: 18, Neg. LLF: 117.55249069117343
Iteration: 3, Func. Count: 26, Neg. LLF: 116.88041304731807
Iteration: 4, Func. Count: 34, Neg. LLF: 116.4428708714372
Iteration: 5, Func. Count: 41, Neg. LLF: 116.42852910286423
Iteration: 6, Func. Count: 48, Neg. LLF: 116.36176103228235
Iteration: 7, Func. Count: 55, Neg. LLF: 116.2287148874111
Iteration: 8, Func. Count: 62, Neg. LLF: 116.28022760039299
Iteration: 9, Func. Count: 70, Neg. LLF: 119.86551913797965
Iteration: 10, Func. Count: 78, Neg. LLF: 114.79353387364526
Iteration: 11, Func. Count: 85, Neg. LLF: 114.36253108700399
Iteration: 12, Func. Count: 92, Neg. LLF: 114.61940179148951
Iteration: 13, Func. Count: 100, Neg. LLF: 113.88646460956106
Iteration: 14, Func. Count: 107, Neg. LLF: 113.88445773648944
Iteration: 15, Func. Count: 114, Neg. LLF: 113.88413543936167
Iteration: 16, Func. Count: 121, Neg. LLF: 113.88240291658623
Iteration: 17, Func. Count: 128, Neg. LLF: 113.88041376702509
Iteration: 18, Func. Count: 135, Neg. LLF: 113.88015649354041
Iteration: 19, Func. Count: 142, Neg. LLF: 113.88011185922804
Iteration: 20, Func. Count: 148, Neg. LLF: 113.88011174285252
Optimization terminated successfully (Exit mode 0)
Current function value: 113.88011185922804
Iterations: 20
Function evaluations: 148
Gradient evaluations: 20
Iteration: 1, Func. Count: 5, Neg. LLF: 122.37032190292724
Iteration: 2, Func. Count: 10, Neg. LLF: 118.34320354498043
Iteration: 3, Func. Count: 14, Neg. LLF: 120.99793996545795
Iteration: 4, Func. Count: 19, Neg. LLF: 117.94942497906037
Iteration: 5, Func. Count: 23, Neg. LLF: 117.9351049318787
Iteration: 6, Func. Count: 27, Neg. LLF: 117.93475948975814
Iteration: 7, Func. Count: 31, Neg. LLF: 117.93475694305629
Iteration: 8, Func. Count: 34, Neg. LLF: 117.93475700765109
Optimization terminated successfully (Exit mode 0)
Current function value: 117.93475694305629
Iterations: 8
Function evaluations: 34
Gradient evaluations: 8
Iteration: 1, Func. Count: 6, Neg. LLF: 164.6168948768694
Iteration: 2, Func. Count: 14, Neg. LLF: 127.53832142252615
Iteration: 3, Func. Count: 21, Neg. LLF: 117.1901544989934
Iteration: 4, Func. Count: 26, Neg. LLF: 117.32938770140117
Iteration: 5, Func. Count: 32, Neg. LLF: 117.17440387773307
Iteration: 6, Func. Count: 37, Neg. LLF: 117.17426104465055
Iteration: 7, Func. Count: 42, Neg. LLF: 117.17423440873452
Iteration: 8, Func. Count: 47, Neg. LLF: 117.17423176482289
Iteration: 9, Func. Count: 51, Neg. LLF: 117.17423139849794
Optimization terminated successfully (Exit mode 0)
Current function value: 117.17423176482289
Iterations: 9
Function evaluations: 51
Gradient evaluations: 9
Iteration: 1, Func. Count: 7, Neg. LLF: 188.88963688528358
Iteration: 2, Func. Count: 15, Neg. LLF: 122.0271304085911
Iteration: 3, Func. Count: 24, Neg. LLF: 117.30465852725509
Iteration: 4, Func. Count: 30, Neg. LLF: 117.40529058880347
Iteration: 5, Func. Count: 37, Neg. LLF: 117.28157413749791
Iteration: 6, Func. Count: 43, Neg. LLF: 117.1918537333214
Iteration: 7, Func. Count: 49, Neg. LLF: 117.17533253762926
Iteration: 8, Func. Count: 55, Neg. LLF: 117.17484838555956
Iteration: 9, Func. Count: 61, Neg. LLF: 117.17413753576866
Iteration: 10, Func. Count: 67, Neg. LLF: 117.1742383324363
Iteration: 11, Func. Count: 74, Neg. LLF: 117.17423671050803
Iteration: 12, Func. Count: 81, Neg. LLF: 117.17408251275738
Iteration: 13, Func. Count: 97, Neg. LLF: 117.17380761860731
Iteration: 14, Func. Count: 113, Neg. LLF: 117.17423316973661
Iteration: 15, Func. Count: 119, Neg. LLF: 117.1741116551081
Optimization terminated successfully (Exit mode 0)
Current function value: 117.17423303713394
Iterations: 15
Function evaluations: 129
Gradient evaluations: 15
Iteration: 1, Func. Count: 8, Neg. LLF: 135.84128226883772
Iteration: 2, Func. Count: 17, Neg. LLF: 115.66411904663397
Iteration: 3, Func. Count: 24, Neg. LLF: 126.21799853455224
Iteration: 4, Func. Count: 32, Neg. LLF: 116.1579875564134
Iteration: 5, Func. Count: 40, Neg. LLF: 114.78267965154171
Iteration: 6, Func. Count: 47, Neg. LLF: 114.7665745593555
Iteration: 7, Func. Count: 54, Neg. LLF: 114.76027365087317
Iteration: 8, Func. Count: 61, Neg. LLF: 114.76000003010236
Iteration: 9, Func. Count: 68, Neg. LLF: 114.7599953664255
Iteration: 10, Func. Count: 74, Neg. LLF: 114.75999520695048
Optimization terminated successfully (Exit mode 0)
Current function value: 114.7599953664255
Iterations: 10
Function evaluations: 74
Gradient evaluations: 10
Iteration: 1, Func. Count: 9, Neg. LLF: 128.5721159051793
Iteration: 2, Func. Count: 19, Neg. LLF: 115.18758044699823
Iteration: 3, Func. Count: 27, Neg. LLF: 129.37014527791945
Iteration: 4, Func. Count: 36, Neg. LLF: 114.98686186691378
Iteration: 5, Func. Count: 44, Neg. LLF: 114.77961649229604
Iteration: 6, Func. Count: 52, Neg. LLF: 114.76496542642805
Iteration: 7, Func. Count: 60, Neg. LLF: 114.76000072290967
Iteration: 8, Func. Count: 68, Neg. LLF: 114.75999531502953
Iteration: 9, Func. Count: 75, Neg. LLF: 114.75999520061006
Optimization terminated successfully (Exit mode 0)
Current function value: 114.75999531502953
Iterations: 9
Function evaluations: 75
Gradient evaluations: 9
Iteration: 1, Func. Count: 6, Neg. LLF: 127.04945407818497
Iteration: 2, Func. Count: 12, Neg. LLF: 137.80430914920314
Iteration: 3, Func. Count: 18, Neg. LLF: 118.32045218527675
Iteration: 4, Func. Count: 23, Neg. LLF: 118.14362358273131
Iteration: 5, Func. Count: 28, Neg. LLF: 117.96535746097621
Iteration: 6, Func. Count: 33, Neg. LLF: 117.93904804593456
Iteration: 7, Func. Count: 38, Neg. LLF: 117.9347769353817
Iteration: 8, Func. Count: 43, Neg. LLF: 117.9347578302849
Iteration: 9, Func. Count: 48, Neg. LLF: 117.9347568082396
Iteration: 10, Func. Count: 52, Neg. LLF: 117.93475685344944
Optimization terminated successfully (Exit mode 0)
Current function value: 117.9347568082396
Iterations: 10
Function evaluations: 52
Gradient evaluations: 10
Iteration: 1, Func. Count: 7, Neg. LLF: 129.40472062527044
Iteration: 2, Func. Count: 17, Neg. LLF: 121.642037599916
Iteration: 3, Func. Count: 24, Neg. LLF: 116.85223651720264
Iteration: 4, Func. Count: 30, Neg. LLF: 116.81302905011991
Iteration: 5, Func. Count: 36, Neg. LLF: 116.7565306988536
Iteration: 6, Func. Count: 42, Neg. LLF: 116.75184406788988
Iteration: 7, Func. Count: 48, Neg. LLF: 116.75166488411051
Iteration: 8, Func. Count: 54, Neg. LLF: 116.75165848407114
Iteration: 9, Func. Count: 59, Neg. LLF: 116.75165806435942
Optimization terminated successfully (Exit mode 0)
Current function value: 116.75165848407114
Iterations: 9
Function evaluations: 59
Gradient evaluations: 9
Iteration: 1, Func. Count: 8, Neg. LLF: 156.1560251134978
Iteration: 2, Func. Count: 18, Neg. LLF: 144.04611994657813
Iteration: 3, Func. Count: 27, Neg. LLF: 116.74515363028014
Iteration: 4, Func. Count: 34, Neg. LLF: 116.66054935706002
Iteration: 5, Func. Count: 41, Neg. LLF: 115.31133248118849
Iteration: 6, Func. Count: 48, Neg. LLF: 116.17263422553341
Optimization terminated successfully (Exit mode 0)
Current function value: 115.31133239086564
Iterations: 6
Function evaluations: 58
Gradient evaluations: 6
Iteration: 1, Func. Count: 9, Neg. LLF: 120.0010770906725
Iteration: 2, Func. Count: 20, Neg. LLF: 144.865285501759
Iteration: 3, Func. Count: 30, Neg. LLF: 116.69124883159279
Iteration: 4, Func. Count: 38, Neg. LLF: 116.6449489981302
Iteration: 5, Func. Count: 46, Neg. LLF: 115.67062800186531
Iteration: 6, Func. Count: 54, Neg. LLF: 115.5634436512281
Iteration: 7, Func. Count: 62, Neg. LLF: 115.33504201776564
Iteration: 8, Func. Count: 70, Neg. LLF: 115.27026194128896
Iteration: 9, Func. Count: 78, Neg. LLF: 115.25573093789839
Iteration: 10, Func. Count: 86, Neg. LLF: 115.25451611055715
Iteration: 11, Func. Count: 94, Neg. LLF: 115.25315109938096
Iteration: 12, Func. Count: 112, Neg. LLF: 115.28697157588637
Iteration: 13, Func. Count: 122, Neg. LLF: 115.25645143532371
Iteration: 14, Func. Count: 131, Neg. LLF: 115.25612944695943
Iteration: 15, Func. Count: 140, Neg. LLF: 115.25527153487744
Iteration: 16, Func. Count: 147, Neg. LLF: 115.2552714863833
Optimization terminated successfully (Exit mode 0)
Current function value: 115.25527153487744
Iterations: 17
Function evaluations: 147
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 118.06802567505264
Iteration: 2, Func. Count: 21, Neg. LLF: 133.4163461171073
Iteration: 3, Func. Count: 32, Neg. LLF: 117.07807490529274
Iteration: 4, Func. Count: 41, Neg. LLF: 115.94350872813546
Iteration: 5, Func. Count: 50, Neg. LLF: 115.8278082172881
Iteration: 6, Func. Count: 59, Neg. LLF: 115.64111025091508
Iteration: 7, Func. Count: 68, Neg. LLF: 115.27412493789122
Iteration: 8, Func. Count: 77, Neg. LLF: 115.25871511268404
Iteration: 9, Func. Count: 86, Neg. LLF: 115.25687733802236
Iteration: 10, Func. Count: 95, Neg. LLF: 115.25656867324783
Iteration: 11, Func. Count: 104, Neg. LLF: 115.25421989188517
Iteration: 12, Func. Count: 113, Neg. LLF: 115.29485741505964
Iteration: 13, Func. Count: 124, Neg. LLF: 115.25639938805443
Iteration: 14, Func. Count: 135, Neg. LLF: 115.25527576464046
Iteration: 15, Func. Count: 145, Neg. LLF: 115.25527153714144
Iteration: 16, Func. Count: 155, Neg. LLF: 115.25527153683427
Iteration: 17, Func. Count: 163, Neg. LLF: 115.25527123453178
Optimization terminated successfully (Exit mode 0)
Current function value: 115.25527153683427
Iterations: 18
Function evaluations: 163
Gradient evaluations: 17
Iteration: 1, Func. Count: 7, Neg. LLF: 128.06417022790262
Iteration: 2, Func. Count: 14, Neg. LLF: 146.57118063171765
Iteration: 3, Func. Count: 21, Neg. LLF: 118.2742187545427
Iteration: 4, Func. Count: 27, Neg. LLF: 118.09810332594868
Iteration: 5, Func. Count: 33, Neg. LLF: 117.95507889047983
Iteration: 6, Func. Count: 39, Neg. LLF: 117.93649161039478
Iteration: 7, Func. Count: 45, Neg. LLF: 117.93477740118358
Iteration: 8, Func. Count: 51, Neg. LLF: 117.9347568121486
Iteration: 9, Func. Count: 56, Neg. LLF: 117.93475684649093
Optimization terminated successfully (Exit mode 0)
Current function value: 117.9347568121486
Iterations: 9
Function evaluations: 56
Gradient evaluations: 9
Iteration: 1, Func. Count: 8, Neg. LLF: 137.7037623823344
Iteration: 2, Func. Count: 18, Neg. LLF: 119.08170697589674
Iteration: 3, Func. Count: 26, Neg. LLF: 116.56178600150871
Iteration: 4, Func. Count: 33, Neg. LLF: 116.64448091856839
Iteration: 5, Func. Count: 41, Neg. LLF: 116.67141884152315
Iteration: 6, Func. Count: 49, Neg. LLF: 116.31861903496342
Iteration: 7, Func. Count: 56, Neg. LLF: 116.31723853335606
Iteration: 8, Func. Count: 63, Neg. LLF: 116.31712632560294
Iteration: 9, Func. Count: 70, Neg. LLF: 116.31712580758803
Optimization terminated successfully (Exit mode 0)
Current function value: 116.31712580758803
Iterations: 9
Function evaluations: 70
Gradient evaluations: 9
Iteration: 1, Func. Count: 9, Neg. LLF: 148.71525030638801
Iteration: 2, Func. Count: 20, Neg. LLF: 147.8685235394686
Iteration: 3, Func. Count: 30, Neg. LLF: 116.68677183152384
Iteration: 4, Func. Count: 38, Neg. LLF: 116.56418326143725
Iteration: 5, Func. Count: 46, Neg. LLF: 116.445779434744
Iteration: 6, Func. Count: 54, Neg. LLF: 116.34082895149255
Iteration: 7, Func. Count: 62, Neg. LLF: 116.31907806255313
Iteration: 8, Func. Count: 70, Neg. LLF: 116.31753945956214
Iteration: 9, Func. Count: 78, Neg. LLF: 116.31715014000679
Iteration: 10, Func. Count: 86, Neg. LLF: 116.31714429964984
Iteration: 11, Func. Count: 94, Neg. LLF: 116.31701703842093
Iteration: 12, Func. Count: 102, Neg. LLF: 116.31710789230434
Iteration: 13, Func. Count: 120, Neg. LLF: 116.31360368464713
Iteration: 14, Func. Count: 138, Neg. LLF: 116.32256159464441
Iteration: 15, Func. Count: 149, Neg. LLF: 116.31714484969272
Iteration: 16, Func. Count: 159, Neg. LLF: 116.31712603217348
Iteration: 17, Func. Count: 171, Neg. LLF: 116.31712581604728
Iteration: 18, Func. Count: 181, Neg. LLF: 116.31712580944264
Iteration: 19, Func. Count: 197, Neg. LLF: 116.31712581948065
Iteration: 20, Func. Count: 206, Neg. LLF: 116.31712581616948
Iteration: 21, Func. Count: 215, Neg. LLF: 116.31712581356672
Iteration: 22, Func. Count: 222, Neg. LLF: 116.31712537039465
Optimization terminated successfully (Exit mode 0)
Current function value: 116.31712581356672
Iterations: 24
Function evaluations: 222
Gradient evaluations: 22
Iteration: 1, Func. Count: 10, Neg. LLF: 137.95819526467906
Iteration: 2, Func. Count: 21, Neg. LLF: 144.26190942538364
Iteration: 3, Func. Count: 32, Neg. LLF: 116.86373280313315
Iteration: 4, Func. Count: 41, Neg. LLF: 116.79671383863317
Iteration: 5, Func. Count: 50, Neg. LLF: 116.70102499367671
Iteration: 6, Func. Count: 59, Neg. LLF: 115.95608340209999
Iteration: 7, Func. Count: 68, Neg. LLF: 3295123.971729299
Iteration: 8, Func. Count: 79, Neg. LLF: 130.52068327092442
Iteration: 9, Func. Count: 90, Neg. LLF: 115.26503092153546
Iteration: 10, Func. Count: 99, Neg. LLF: 115.2606580790072
Iteration: 11, Func. Count: 108, Neg. LLF: 115.2556226117019
Iteration: 12, Func. Count: 117, Neg. LLF: 115.25549966542478
Iteration: 13, Func. Count: 127, Neg. LLF: 115.25527160862367
Iteration: 14, Func. Count: 135, Neg. LLF: 115.25527156040816
Optimization terminated successfully (Exit mode 0)
Current function value: 115.25527160862367
Iterations: 15
Function evaluations: 135
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 250.5660729133781
Iteration: 2, Func. Count: 23, Neg. LLF: 120.87583862874204
Iteration: 3, Func. Count: 35, Neg. LLF: 117.08206278513441
Iteration: 4, Func. Count: 45, Neg. LLF: 116.47940519912758
Iteration: 5, Func. Count: 55, Neg. LLF: 117.30016467279368
Iteration: 6, Func. Count: 66, Neg. LLF: 116.21435085537826
Iteration: 7, Func. Count: 76, Neg. LLF: 116.23944392542101
Iteration: 8, Func. Count: 87, Neg. LLF: 116.13763987739048
Iteration: 9, Func. Count: 97, Neg. LLF: 116.12414010433534
Iteration: 10, Func. Count: 107, Neg. LLF: 116.12386545743979
Iteration: 11, Func. Count: 117, Neg. LLF: 116.12386201162563
Iteration: 12, Func. Count: 126, Neg. LLF: 116.12386183317412
Optimization terminated successfully (Exit mode 0)
Current function value: 116.12386201162563
Iterations: 12
Function evaluations: 126
Gradient evaluations: 12
Iteration: 1, Func. Count: 8, Neg. LLF: 132.6463229932547
Iteration: 2, Func. Count: 16, Neg. LLF: 198.70553506842415
Iteration: 3, Func. Count: 24, Neg. LLF: 119.20556667102822
Iteration: 4, Func. Count: 32, Neg. LLF: 122.78533365158133
Iteration: 5, Func. Count: 40, Neg. LLF: 114.78839951912757
Iteration: 6, Func. Count: 48, Neg. LLF: 114.43817707046561
Iteration: 7, Func. Count: 56, Neg. LLF: 114.45205860603633
Iteration: 8, Func. Count: 64, Neg. LLF: 114.32932170123159
Iteration: 9, Func. Count: 71, Neg. LLF: 114.32331507814152
Iteration: 10, Func. Count: 78, Neg. LLF: 114.316073924536
Iteration: 11, Func. Count: 85, Neg. LLF: 114.314519870923
Iteration: 12, Func. Count: 92, Neg. LLF: 114.31429694505894
Iteration: 13, Func. Count: 99, Neg. LLF: 114.31429455232708
Iteration: 14, Func. Count: 105, Neg. LLF: 114.31429455232596
Optimization terminated successfully (Exit mode 0)
Current function value: 114.31429455232708
Iterations: 14
Function evaluations: 105
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 120.20376621696208
Iteration: 2, Func. Count: 18, Neg. LLF: 116.24731121609835
Iteration: 3, Func. Count: 28, Neg. LLF: 121.22059934457003
Iteration: 4, Func. Count: 37, Neg. LLF: 114.73506198457063
Iteration: 5, Func. Count: 46, Neg. LLF: 114.71571308825806
Iteration: 6, Func. Count: 55, Neg. LLF: 114.7604361043242
Iteration: 7, Func. Count: 64, Neg. LLF: 114.72905905568513
Iteration: 8, Func. Count: 73, Neg. LLF: 113.72569064908254
Iteration: 9, Func. Count: 82, Neg. LLF: 113.43748448414195
Iteration: 10, Func. Count: 90, Neg. LLF: 113.42683672559487
Iteration: 11, Func. Count: 98, Neg. LLF: 113.4019324714148
Iteration: 12, Func. Count: 106, Neg. LLF: 113.39344218552095
Iteration: 13, Func. Count: 114, Neg. LLF: 113.3851150154961
Iteration: 14, Func. Count: 122, Neg. LLF: 113.38099363779658
Iteration: 15, Func. Count: 130, Neg. LLF: 113.37955636803332
Iteration: 16, Func. Count: 138, Neg. LLF: 113.37934135751256
Iteration: 17, Func. Count: 146, Neg. LLF: 113.37932619762498
Iteration: 18, Func. Count: 153, Neg. LLF: 113.37932619761469
Optimization terminated successfully (Exit mode 0)
Current function value: 113.37932619762498
Iterations: 18
Function evaluations: 153
Gradient evaluations: 18
Iteration: 1, Func. Count: 10, Neg. LLF: 118.2737273061276
Iteration: 2, Func. Count: 20, Neg. LLF: 170.2354332389432
Iteration: 3, Func. Count: 30, Neg. LLF: 142.59819271160703
Iteration: 4, Func. Count: 40, Neg. LLF: 114.3225209627518
Iteration: 5, Func. Count: 50, Neg. LLF: 113.66349137189893
Iteration: 6, Func. Count: 59, Neg. LLF: 113.46936810660915
Iteration: 7, Func. Count: 68, Neg. LLF: 113.39968524955574
Iteration: 8, Func. Count: 77, Neg. LLF: 113.3864775575164
Iteration: 9, Func. Count: 86, Neg. LLF: 113.37970746927121
Iteration: 10, Func. Count: 95, Neg. LLF: 113.37936138901394
Iteration: 11, Func. Count: 104, Neg. LLF: 113.3793410866725
Iteration: 12, Func. Count: 113, Neg. LLF: 113.37933893866224
Iteration: 13, Func. Count: 122, Neg. LLF: 113.3793363622753
Iteration: 14, Func. Count: 131, Neg. LLF: 113.37933262310067
Iteration: 15, Func. Count: 140, Neg. LLF: 113.37932838253313
Iteration: 16, Func. Count: 149, Neg. LLF: 113.37932637811961
Iteration: 17, Func. Count: 157, Neg. LLF: 113.37932643636829
Optimization terminated successfully (Exit mode 0)
Current function value: 113.37932637811961
Iterations: 17
Function evaluations: 157
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 172.22374205873209
Iteration: 2, Func. Count: 22, Neg. LLF: 146.38788485873178
Iteration: 3, Func. Count: 34, Neg. LLF: 116.94193984437284
Iteration: 4, Func. Count: 45, Neg. LLF: 112.58338436242583
Iteration: 5, Func. Count: 55, Neg. LLF: 286.1870176679069
Iteration: 6, Func. Count: 67, Neg. LLF: 120.04851425512128
Iteration: 7, Func. Count: 79, Neg. LLF: 111.55159940282292
Iteration: 8, Func. Count: 89, Neg. LLF: 111.53644161565323
Iteration: 9, Func. Count: 99, Neg. LLF: 111.52951516718258
Iteration: 10, Func. Count: 109, Neg. LLF: 111.52605455475582
Iteration: 11, Func. Count: 119, Neg. LLF: 111.52479805667704
Iteration: 12, Func. Count: 129, Neg. LLF: 111.52441780808385
Iteration: 13, Func. Count: 139, Neg. LLF: 111.52430882834757
Iteration: 14, Func. Count: 149, Neg. LLF: 111.52429963037976
Iteration: 15, Func. Count: 158, Neg. LLF: 111.52429952580103
Optimization terminated successfully (Exit mode 0)
Current function value: 111.52429963037976
Iterations: 15
Function evaluations: 158
Gradient evaluations: 15
Iteration: 1, Func. Count: 12, Neg. LLF: 124.46198172030834
Iteration: 2, Func. Count: 25, Neg. LLF: 163.4882559270785
Iteration: 3, Func. Count: 37, Neg. LLF: 432.40635898208586
Iteration: 4, Func. Count: 49, Neg. LLF: 114.36181322662318
Iteration: 5, Func. Count: 61, Neg. LLF: 113.05978309714291
Iteration: 6, Func. Count: 73, Neg. LLF: 111.72662906340244
Iteration: 7, Func. Count: 84, Neg. LLF: 112.16782871061943
Iteration: 8, Func. Count: 96, Neg. LLF: 112.41755300097479
Iteration: 9, Func. Count: 108, Neg. LLF: 111.53205833900645
Iteration: 10, Func. Count: 119, Neg. LLF: 111.52756987066535
Iteration: 11, Func. Count: 130, Neg. LLF: 111.52479016359537
Iteration: 12, Func. Count: 141, Neg. LLF: 111.5243131163397
Iteration: 13, Func. Count: 152, Neg. LLF: 111.52430323855009
Iteration: 14, Func. Count: 163, Neg. LLF: 111.52429913879543
Iteration: 15, Func. Count: 173, Neg. LLF: 111.52429910114033
Optimization terminated successfully (Exit mode 0)
Current function value: 111.52429913879543
Iterations: 15
Function evaluations: 173
Gradient evaluations: 15
Iteration: 1, Func. Count: 5, Neg. LLF: 127.7298334103044
Iteration: 2, Func. Count: 10, Neg. LLF: 118.46509455275338
Iteration: 3, Func. Count: 14, Neg. LLF: 119.62517246380366
Iteration: 4, Func. Count: 19, Neg. LLF: 118.17147418599835
Iteration: 5, Func. Count: 23, Neg. LLF: 117.9366259836299
Iteration: 6, Func. Count: 27, Neg. LLF: 117.9348922888303
Iteration: 7, Func. Count: 31, Neg. LLF: 117.93475730911878
Iteration: 8, Func. Count: 35, Neg. LLF: 117.93475681700016
Optimization terminated successfully (Exit mode 0)
Current function value: 117.93475681700016
Iterations: 8
Function evaluations: 35
Gradient evaluations: 8
Iteration: 1, Func. Count: 6, Neg. LLF: 133.5276025552405
Iteration: 2, Func. Count: 13, Neg. LLF: 117.95463471041307
Iteration: 3, Func. Count: 18, Neg. LLF: 117.93970438700215
Iteration: 4, Func. Count: 23, Neg. LLF: 117.93488782883878
Iteration: 5, Func. Count: 28, Neg. LLF: 117.93488535740569
Iteration: 6, Func. Count: 32, Neg. LLF: 117.93488535738389
Optimization terminated successfully (Exit mode 0)
Current function value: 117.93488535740569
Iterations: 6
Function evaluations: 32
Gradient evaluations: 6
Iteration: 1, Func. Count: 7, Neg. LLF: 124.9538375140507
Iteration: 2, Func. Count: 15, Neg. LLF: 117.94505078800121
Iteration: 3, Func. Count: 21, Neg. LLF: 117.93897789864782
Iteration: 4, Func. Count: 27, Neg. LLF: 117.93454228485513
Iteration: 5, Func. Count: 33, Neg. LLF: 117.93453819077875
Iteration: 6, Func. Count: 39, Neg. LLF: 117.93453543704584
Iteration: 7, Func. Count: 45, Neg. LLF: 117.93451960195577
Iteration: 8, Func. Count: 51, Neg. LLF: 117.93443245438156
Iteration: 9, Func. Count: 57, Neg. LLF: 117.93400213018295
Iteration: 10, Func. Count: 63, Neg. LLF: 117.93399996310268
Iteration: 11, Func. Count: 68, Neg. LLF: 117.93399996305351
Optimization terminated successfully (Exit mode 0)
Current function value: 117.93399996310268
Iterations: 11
Function evaluations: 68
Gradient evaluations: 11
Iteration: 1, Func. Count: 8, Neg. LLF: 147.4478674684524
Iteration: 2, Func. Count: 17, Neg. LLF: 117.93556014673328
Iteration: 3, Func. Count: 24, Neg. LLF: 117.9636172342481
Iteration: 4, Func. Count: 32, Neg. LLF: 117.9344296892054
Iteration: 5, Func. Count: 39, Neg. LLF: 117.93441781781613
Iteration: 6, Func. Count: 46, Neg. LLF: 117.93441037308908
Iteration: 7, Func. Count: 53, Neg. LLF: 117.93439819278052
Iteration: 8, Func. Count: 60, Neg. LLF: 117.93433440132074
Iteration: 9, Func. Count: 67, Neg. LLF: 117.93398738645094
Iteration: 10, Func. Count: 74, Neg. LLF: 117.93398607064468
Iteration: 11, Func. Count: 81, Neg. LLF: 117.9339848000968
Iteration: 12, Func. Count: 87, Neg. LLF: 117.93398480007743
Optimization terminated successfully (Exit mode 0)
Current function value: 117.9339848000968
Iterations: 12
Function evaluations: 87
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 146.18856197371628
Iteration: 2, Func. Count: 19, Neg. LLF: 117.93644056028523
Iteration: 3, Func. Count: 27, Neg. LLF: 117.97749899594018
Iteration: 4, Func. Count: 36, Neg. LLF: 117.93441875161366
Iteration: 5, Func. Count: 44, Neg. LLF: 117.93438544357126
Iteration: 6, Func. Count: 52, Neg. LLF: 117.93437795491327
Iteration: 7, Func. Count: 60, Neg. LLF: 117.93436812937134
Iteration: 8, Func. Count: 68, Neg. LLF: 117.934344580055
Iteration: 9, Func. Count: 76, Neg. LLF: 117.93420888499335
Iteration: 10, Func. Count: 84, Neg. LLF: 117.93398553396963
Iteration: 11, Func. Count: 92, Neg. LLF: 117.93397584731758
Iteration: 12, Func. Count: 100, Neg. LLF: 117.9339726303061
Iteration: 13, Func. Count: 107, Neg. LLF: 117.93397263038372
Optimization terminated successfully (Exit mode 0)
Current function value: 117.9339726303061
Iterations: 13
Function evaluations: 107
Gradient evaluations: 13
Iteration: 1, Func. Count: 6, Neg. LLF: 125.002710842535
Iteration: 2, Func. Count: 12, Neg. LLF: 119.34570403901597
Iteration: 3, Func. Count: 17, Neg. LLF: 118.45609685019647
Iteration: 4, Func. Count: 22, Neg. LLF: 117.98573431382734
Iteration: 5, Func. Count: 27, Neg. LLF: 117.94929575565493
Iteration: 6, Func. Count: 32, Neg. LLF: 117.937443192624
Iteration: 7, Func. Count: 37, Neg. LLF: 117.9347688817558
Iteration: 8, Func. Count: 42, Neg. LLF: 117.93475685793494
Iteration: 9, Func. Count: 46, Neg. LLF: 117.93475692252662
Optimization terminated successfully (Exit mode 0)
Current function value: 117.93475685793494
Iterations: 9
Function evaluations: 46
Gradient evaluations: 9
Iteration: 1, Func. Count: 7, Neg. LLF: 158.3452850842941
Iteration: 2, Func. Count: 15, Neg. LLF: 117.97400637053677
Iteration: 3, Func. Count: 21, Neg. LLF: 117.93731068693263
Iteration: 4, Func. Count: 27, Neg. LLF: 124.55488395559735
Iteration: 5, Func. Count: 35, Neg. LLF: 117.9314015296142
Iteration: 6, Func. Count: 41, Neg. LLF: 117.93123811826148
Iteration: 7, Func. Count: 47, Neg. LLF: 117.9304956017341
Iteration: 8, Func. Count: 53, Neg. LLF: 117.92878620871802
Iteration: 9, Func. Count: 59, Neg. LLF: 117.92789544617251
Iteration: 10, Func. Count: 65, Neg. LLF: 117.92700188304921
Iteration: 11, Func. Count: 71, Neg. LLF: 117.92681477468474
Iteration: 12, Func. Count: 77, Neg. LLF: 117.92677700323438
Iteration: 13, Func. Count: 83, Neg. LLF: 117.92677570011818
Iteration: 14, Func. Count: 88, Neg. LLF: 117.92677570002286
Optimization terminated successfully (Exit mode 0)
Current function value: 117.92677570011818
Iterations: 14
Function evaluations: 88
Gradient evaluations: 14
Iteration: 1, Func. Count: 8, Neg. LLF: 150.36735740782265
Iteration: 2, Func. Count: 17, Neg. LLF: 117.95748164357741
Iteration: 3, Func. Count: 24, Neg. LLF: 117.93654753235062
Iteration: 4, Func. Count: 31, Neg. LLF: 117.93452462233908
Iteration: 5, Func. Count: 38, Neg. LLF: 117.93452076420067
Iteration: 6, Func. Count: 45, Neg. LLF: 117.93451699966269
Iteration: 7, Func. Count: 52, Neg. LLF: 117.93449237739293
Iteration: 8, Func. Count: 59, Neg. LLF: 117.9344191456961
Iteration: 9, Func. Count: 66, Neg. LLF: 117.93415306729852
Iteration: 10, Func. Count: 73, Neg. LLF: 117.93385625772252
Iteration: 11, Func. Count: 80, Neg. LLF: 117.93284717739434
Iteration: 12, Func. Count: 87, Neg. LLF: 117.9322623894038
Iteration: 13, Func. Count: 94, Neg. LLF: 117.93209991125924
Iteration: 14, Func. Count: 101, Neg. LLF: 117.93146496136293
Iteration: 15, Func. Count: 108, Neg. LLF: 117.93120256727349
Iteration: 16, Func. Count: 115, Neg. LLF: 117.93112997103397
Iteration: 17, Func. Count: 122, Neg. LLF: 117.93112108835294
Iteration: 18, Func. Count: 129, Neg. LLF: 117.93111680363646
Iteration: 19, Func. Count: 136, Neg. LLF: 117.93110655340104
Iteration: 20, Func. Count: 143, Neg. LLF: 117.93108611985949
Iteration: 21, Func. Count: 150, Neg. LLF: 117.9310546064998
Iteration: 22, Func. Count: 157, Neg. LLF: 117.93103150831143
Iteration: 23, Func. Count: 164, Neg. LLF: 117.93102488120716
Iteration: 24, Func. Count: 171, Neg. LLF: 117.93102358769072
Iteration: 25, Func. Count: 177, Neg. LLF: 117.93102358769184
Optimization terminated successfully (Exit mode 0)
Current function value: 117.93102358769072
Iterations: 25
Function evaluations: 177
Gradient evaluations: 25
Iteration: 1, Func. Count: 9, Neg. LLF: 147.09709323124062
Iteration: 2, Func. Count: 19, Neg. LLF: 117.93963609515252
Iteration: 3, Func. Count: 27, Neg. LLF: 117.98930605680633
Iteration: 4, Func. Count: 36, Neg. LLF: 117.93441566442826
Iteration: 5, Func. Count: 44, Neg. LLF: 117.93440372275275
Iteration: 6, Func. Count: 52, Neg. LLF: 117.93439948497218
Iteration: 7, Func. Count: 60, Neg. LLF: 117.93437971190399
Iteration: 8, Func. Count: 68, Neg. LLF: 117.93422381594725
Iteration: 9, Func. Count: 76, Neg. LLF: 117.93360981385855
Iteration: 10, Func. Count: 84, Neg. LLF: 117.93345234294166
Iteration: 11, Func. Count: 92, Neg. LLF: 117.93273500951102
Iteration: 12, Func. Count: 100, Neg. LLF: 117.93114712706434
Iteration: 13, Func. Count: 108, Neg. LLF: 117.93107932890356
Iteration: 14, Func. Count: 116, Neg. LLF: 117.93107232208783
Iteration: 15, Func. Count: 124, Neg. LLF: 117.93107038932183
Iteration: 16, Func. Count: 132, Neg. LLF: 117.93106577655087
Iteration: 17, Func. Count: 140, Neg. LLF: 117.93105717374861
Iteration: 18, Func. Count: 148, Neg. LLF: 117.93104211599167
Iteration: 19, Func. Count: 156, Neg. LLF: 117.93102947406352
Iteration: 20, Func. Count: 164, Neg. LLF: 117.9310244235924
Iteration: 21, Func. Count: 172, Neg. LLF: 117.93102358092041
Optimization terminated successfully (Exit mode 0)
Current function value: 117.93102358092041
Iterations: 21
Function evaluations: 172
Gradient evaluations: 21
Iteration: 1, Func. Count: 10, Neg. LLF: 145.7581441527183
Iteration: 2, Func. Count: 21, Neg. LLF: 117.93550302450976
Iteration: 3, Func. Count: 30, Neg. LLF: 117.95282253567854
Iteration: 4, Func. Count: 40, Neg. LLF: 117.93437342321158
Iteration: 5, Func. Count: 49, Neg. LLF: 117.93432236408064
Iteration: 6, Func. Count: 58, Neg. LLF: 117.93431346220008
Iteration: 7, Func. Count: 67, Neg. LLF: 117.93421879246716
Iteration: 8, Func. Count: 76, Neg. LLF: 117.9311369453468
Iteration: 9, Func. Count: 85, Neg. LLF: 117.93107149878807
Iteration: 10, Func. Count: 94, Neg. LLF: 117.93106483936269
Iteration: 11, Func. Count: 103, Neg. LLF: 117.93106344659668
Iteration: 12, Func. Count: 112, Neg. LLF: 117.93105620868197
Iteration: 13, Func. Count: 121, Neg. LLF: 117.93104721831155
Iteration: 14, Func. Count: 130, Neg. LLF: 117.93103535102026
Iteration: 15, Func. Count: 139, Neg. LLF: 117.93102673127726
Iteration: 16, Func. Count: 148, Neg. LLF: 117.93102376008504
Iteration: 17, Func. Count: 156, Neg. LLF: 117.93102376218772
Optimization terminated successfully (Exit mode 0)
Current function value: 117.93102376008504
Iterations: 17
Function evaluations: 156
Gradient evaluations: 17
Iteration: 1, Func. Count: 7, Neg. LLF: 127.61417187601955
Iteration: 2, Func. Count: 14, Neg. LLF: 127.19044806660406
Iteration: 3, Func. Count: 21, Neg. LLF: 118.37033023138677
Iteration: 4, Func. Count: 27, Neg. LLF: 118.19842136534507
Iteration: 5, Func. Count: 33, Neg. LLF: 117.97281099588238
Iteration: 6, Func. Count: 39, Neg. LLF: 117.93816476432224
Iteration: 7, Func. Count: 45, Neg. LLF: 117.93482672325432
Iteration: 8, Func. Count: 51, Neg. LLF: 117.93476042054515
Iteration: 9, Func. Count: 57, Neg. LLF: 117.93475707178654
Iteration: 10, Func. Count: 62, Neg. LLF: 117.93475711700198
Optimization terminated successfully (Exit mode 0)
Current function value: 117.93475707178654
Iterations: 10
Function evaluations: 62
Gradient evaluations: 10
Iteration: 1, Func. Count: 8, Neg. LLF: 158.28444951149564
Iteration: 2, Func. Count: 17, Neg. LLF: 117.96768835665372
Iteration: 3, Func. Count: 24, Neg. LLF: 117.9378767526111
Iteration: 4, Func. Count: 31, Neg. LLF: 123.37005841157978
Iteration: 5, Func. Count: 40, Neg. LLF: 117.93135238595367
Iteration: 6, Func. Count: 47, Neg. LLF: 117.9311913647114
Iteration: 7, Func. Count: 54, Neg. LLF: 117.93022031611656
Iteration: 8, Func. Count: 61, Neg. LLF: 117.92835230376463
Iteration: 9, Func. Count: 68, Neg. LLF: 117.92752635701652
Iteration: 10, Func. Count: 75, Neg. LLF: 117.92689882002065
Iteration: 11, Func. Count: 82, Neg. LLF: 117.9267910905725
Iteration: 12, Func. Count: 89, Neg. LLF: 117.9267762868688
Iteration: 13, Func. Count: 96, Neg. LLF: 117.92677557241318
Optimization terminated successfully (Exit mode 0)
Current function value: 117.92677557241318
Iterations: 13
Function evaluations: 96
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 150.27150669981071
Iteration: 2, Func. Count: 19, Neg. LLF: 117.95182664249363
Iteration: 3, Func. Count: 27, Neg. LLF: 117.93747796505284
Iteration: 4, Func. Count: 35, Neg. LLF: 117.9345189207047
Iteration: 5, Func. Count: 43, Neg. LLF: 117.93451433346968
Iteration: 6, Func. Count: 51, Neg. LLF: 117.93451043297888
Iteration: 7, Func. Count: 59, Neg. LLF: 117.93448399686595
Iteration: 8, Func. Count: 67, Neg. LLF: 117.93433386009117
Iteration: 9, Func. Count: 75, Neg. LLF: 117.93412039743998
Iteration: 10, Func. Count: 83, Neg. LLF: 117.93379372496607
Iteration: 11, Func. Count: 91, Neg. LLF: 117.93269917484328
Iteration: 12, Func. Count: 99, Neg. LLF: 117.9320749154076
Iteration: 13, Func. Count: 107, Neg. LLF: 117.93187154499833
Iteration: 14, Func. Count: 115, Neg. LLF: 117.93136412685486
Iteration: 15, Func. Count: 123, Neg. LLF: 117.9311810170924
Iteration: 16, Func. Count: 131, Neg. LLF: 117.93113649769523
Iteration: 17, Func. Count: 139, Neg. LLF: 117.93112997680795
Iteration: 18, Func. Count: 147, Neg. LLF: 117.93112453912778
Iteration: 19, Func. Count: 155, Neg. LLF: 117.93111046012729
Iteration: 20, Func. Count: 163, Neg. LLF: 117.93108385534434
Iteration: 21, Func. Count: 171, Neg. LLF: 117.93104809103447
Iteration: 22, Func. Count: 179, Neg. LLF: 117.93102892214668
Iteration: 23, Func. Count: 187, Neg. LLF: 117.93102430171442
Iteration: 24, Func. Count: 195, Neg. LLF: 117.93102355310445
Optimization terminated successfully (Exit mode 0)
Current function value: 117.93102355310445
Iterations: 24
Function evaluations: 195
Gradient evaluations: 24
Iteration: 1, Func. Count: 10, Neg. LLF: 129.3019877218591
Iteration: 2, Func. Count: 22, Neg. LLF: 161.49209097927437
Iteration: 3, Func. Count: 33, Neg. LLF: 116.80737148070217
Iteration: 4, Func. Count: 42, Neg. LLF: 115.44728453680835
Iteration: 5, Func. Count: 51, Neg. LLF: 115.26359893217993
Iteration: 6, Func. Count: 60, Neg. LLF: 118.8415230961265
Iteration: 7, Func. Count: 71, Neg. LLF: 115.25136297997375
Iteration: 8, Func. Count: 80, Neg. LLF: 115.24823604714432
Iteration: 9, Func. Count: 89, Neg. LLF: 115.24470198112121
Iteration: 10, Func. Count: 98, Neg. LLF: 115.27437031566161
Iteration: 11, Func. Count: 108, Neg. LLF: 115.26602682676007
Iteration: 12, Func. Count: 119, Neg. LLF: 115.25452643572996
Iteration: 13, Func. Count: 130, Neg. LLF: 115.25027409248473
Iteration: 14, Func. Count: 140, Neg. LLF: 115.24842585762903
Iteration: 15, Func. Count: 151, Neg. LLF: 115.24843248823231
Iteration: 16, Func. Count: 161, Neg. LLF: 115.24844325999034
Iteration: 17, Func. Count: 171, Neg. LLF: 115.24842582017153
Iteration: 18, Func. Count: 181, Neg. LLF: 115.24842578150057
Iteration: 19, Func. Count: 189, Neg. LLF: 115.24842576241404
Optimization terminated successfully (Exit mode 0)
Current function value: 115.24842578150057
Iterations: 20
Function evaluations: 189
Gradient evaluations: 19
Iteration: 1, Func. Count: 11, Neg. LLF: 146.43094717685585
Iteration: 2, Func. Count: 23, Neg. LLF: 117.93590689457804
Iteration: 3, Func. Count: 33, Neg. LLF: 117.94627148007496
Iteration: 4, Func. Count: 44, Neg. LLF: 117.93460074508273
Iteration: 5, Func. Count: 54, Neg. LLF: 117.93423550096554
Iteration: 6, Func. Count: 64, Neg. LLF: 117.93418233817127
Iteration: 7, Func. Count: 74, Neg. LLF: 117.93351223129035
Iteration: 8, Func. Count: 84, Neg. LLF: 117.93111339167218
Iteration: 9, Func. Count: 94, Neg. LLF: 117.93108909242083
Iteration: 10, Func. Count: 104, Neg. LLF: 117.93108397681118
Iteration: 11, Func. Count: 114, Neg. LLF: 117.93108166066483
Iteration: 12, Func. Count: 124, Neg. LLF: 117.93107020811658
Iteration: 13, Func. Count: 134, Neg. LLF: 117.93105521980864
Iteration: 14, Func. Count: 144, Neg. LLF: 117.931036318431
Iteration: 15, Func. Count: 154, Neg. LLF: 117.93102630180695
Iteration: 16, Func. Count: 164, Neg. LLF: 117.93102369957835
Iteration: 17, Func. Count: 173, Neg. LLF: 117.93102370171583
Optimization terminated successfully (Exit mode 0)
Current function value: 117.93102369957835
Iterations: 17
Function evaluations: 173
Gradient evaluations: 17
Iteration: 1, Func. Count: 8, Neg. LLF: 128.39115605291258
Iteration: 2, Func. Count: 16, Neg. LLF: 146.85635311335264
Iteration: 3, Func. Count: 24, Neg. LLF: 118.25414093243555
Iteration: 4, Func. Count: 31, Neg. LLF: 118.08550483803072
Iteration: 5, Func. Count: 38, Neg. LLF: 117.95264837529088
Iteration: 6, Func. Count: 45, Neg. LLF: 117.93621072143911
Iteration: 7, Func. Count: 52, Neg. LLF: 117.93476608243205
Iteration: 8, Func. Count: 59, Neg. LLF: 117.93475680953247
Iteration: 9, Func. Count: 65, Neg. LLF: 117.93475684387536
Optimization terminated successfully (Exit mode 0)
Current function value: 117.93475680953247
Iterations: 9
Function evaluations: 65
Gradient evaluations: 9
Iteration: 1, Func. Count: 9, Neg. LLF: 122.56676968172336
Iteration: 2, Func. Count: 18, Neg. LLF: 138.00709620340535
Iteration: 3, Func. Count: 27, Neg. LLF: 123.48791357410978
Iteration: 4, Func. Count: 36, Neg. LLF: 119.11673973368667
Iteration: 5, Func. Count: 45, Neg. LLF: 118.06067822332021
Iteration: 6, Func. Count: 54, Neg. LLF: 117.38502988779614
Iteration: 7, Func. Count: 62, Neg. LLF: 117.28812134118947
Iteration: 8, Func. Count: 70, Neg. LLF: 117.28562555572391
Iteration: 9, Func. Count: 78, Neg. LLF: 117.28535573797338
Iteration: 10, Func. Count: 86, Neg. LLF: 117.2853551187983
Optimization terminated successfully (Exit mode 0)
Current function value: 117.2853551187983
Iterations: 10
Function evaluations: 86
Gradient evaluations: 10
Iteration: 1, Func. Count: 10, Neg. LLF: 150.33815895839263
Iteration: 2, Func. Count: 21, Neg. LLF: 117.94831361046649
Iteration: 3, Func. Count: 30, Neg. LLF: 117.93786413678093
Iteration: 4, Func. Count: 39, Neg. LLF: 117.93453657133293
Iteration: 5, Func. Count: 48, Neg. LLF: 117.93453288555945
Iteration: 6, Func. Count: 57, Neg. LLF: 117.93452933142915
Iteration: 7, Func. Count: 66, Neg. LLF: 117.9345056579728
Iteration: 8, Func. Count: 75, Neg. LLF: 117.9344162636906
Iteration: 9, Func. Count: 84, Neg. LLF: 117.93415839337219
Iteration: 10, Func. Count: 93, Neg. LLF: 117.93383153611364
Iteration: 11, Func. Count: 102, Neg. LLF: 117.93272799326706
Iteration: 12, Func. Count: 111, Neg. LLF: 117.9321278800551
Iteration: 13, Func. Count: 120, Neg. LLF: 117.93199301565193
Iteration: 14, Func. Count: 129, Neg. LLF: 117.93143435692997
Iteration: 15, Func. Count: 138, Neg. LLF: 117.93120673919958
Iteration: 16, Func. Count: 147, Neg. LLF: 117.93114120345948
Iteration: 17, Func. Count: 156, Neg. LLF: 117.93113246734988
Iteration: 18, Func. Count: 165, Neg. LLF: 117.93112757367862
Iteration: 19, Func. Count: 174, Neg. LLF: 117.93111543610416
Iteration: 20, Func. Count: 183, Neg. LLF: 117.9310915491655
Iteration: 21, Func. Count: 192, Neg. LLF: 117.93105588747048
Iteration: 22, Func. Count: 201, Neg. LLF: 117.93103164839606
Iteration: 23, Func. Count: 210, Neg. LLF: 117.93102475421057
Iteration: 24, Func. Count: 219, Neg. LLF: 117.93102358535461
Iteration: 25, Func. Count: 227, Neg. LLF: 117.93102358535765
Optimization terminated successfully (Exit mode 0)
Current function value: 117.93102358535461
Iterations: 25
Function evaluations: 227
Gradient evaluations: 25
Iteration: 1, Func. Count: 11, Neg. LLF: 125.07794294401637
Iteration: 2, Func. Count: 24, Neg. LLF: 256.93424139606884
Iteration: 3, Func. Count: 36, Neg. LLF: 117.0953131504527
Iteration: 4, Func. Count: 46, Neg. LLF: 116.71352244020233
Iteration: 5, Func. Count: 56, Neg. LLF: 115.29173155124496
Iteration: 6, Func. Count: 66, Neg. LLF: 115.32629864542243
Iteration: 7, Func. Count: 77, Neg. LLF: 115.26591179963701
Iteration: 8, Func. Count: 87, Neg. LLF: 115.24213258529893
Iteration: 9, Func. Count: 97, Neg. LLF: 155.84382419432094
Iteration: 10, Func. Count: 109, Neg. LLF: 3861580.5072062323
Iteration: 11, Func. Count: 122, Neg. LLF: 115.40841237786167
Iteration: 12, Func. Count: 133, Neg. LLF: 115.24842590444287
Iteration: 13, Func. Count: 142, Neg. LLF: 115.2484258855885
Optimization terminated successfully (Exit mode 0)
Current function value: 115.24842590444287
Iterations: 14
Function evaluations: 142
Gradient evaluations: 13
Iteration: 1, Func. Count: 12, Neg. LLF: 141.86006405045023
Iteration: 2, Func. Count: 25, Neg. LLF: 132.17707033128366
Iteration: 3, Func. Count: 38, Neg. LLF: 117.251144135828
Iteration: 4, Func. Count: 49, Neg. LLF: 116.46874815294584
Iteration: 5, Func. Count: 60, Neg. LLF: 117.42022267127345
Iteration: 6, Func. Count: 72, Neg. LLF: 122.69175764400879
Iteration: 7, Func. Count: 84, Neg. LLF: 123.12549867615748
Iteration: 8, Func. Count: 96, Neg. LLF: 116.2248512903089
Iteration: 9, Func. Count: 107, Neg. LLF: 116.17431853943428
Iteration: 10, Func. Count: 118, Neg. LLF: 116.21570341848982
Iteration: 11, Func. Count: 130, Neg. LLF: 116.13208897036813
Iteration: 12, Func. Count: 141, Neg. LLF: 116.12730968541845
Iteration: 13, Func. Count: 152, Neg. LLF: 116.12513650186868
Iteration: 14, Func. Count: 163, Neg. LLF: 116.12386809510636
Iteration: 15, Func. Count: 174, Neg. LLF: 116.12386225565486
Iteration: 16, Func. Count: 184, Neg. LLF: 116.12386207677419
Optimization terminated successfully (Exit mode 0)
Current function value: 116.12386225565486
Iterations: 16
Function evaluations: 184
Gradient evaluations: 16
Iteration: 1, Func. Count: 9, Neg. LLF: 133.43889836362357
Iteration: 2, Func. Count: 18, Neg. LLF: 198.54075194079275
Iteration: 3, Func. Count: 27, Neg. LLF: 119.02302263022374
Iteration: 4, Func. Count: 36, Neg. LLF: 123.91541518188521
Iteration: 5, Func. Count: 45, Neg. LLF: 116.85059053024106
Iteration: 6, Func. Count: 54, Neg. LLF: 116.04367022638193
Iteration: 7, Func. Count: 63, Neg. LLF: 114.58644668462932
Iteration: 8, Func. Count: 72, Neg. LLF: 114.32490751825395
Iteration: 9, Func. Count: 80, Neg. LLF: 114.32209349247421
Iteration: 10, Func. Count: 89, Neg. LLF: 114.55393916511264
Iteration: 11, Func. Count: 98, Neg. LLF: 114.3106204678411
Iteration: 12, Func. Count: 106, Neg. LLF: 114.30582417302058
Iteration: 13, Func. Count: 114, Neg. LLF: 114.30529059120649
Iteration: 14, Func. Count: 122, Neg. LLF: 114.30523372238548
Iteration: 15, Func. Count: 129, Neg. LLF: 114.30523372238117
Optimization terminated successfully (Exit mode 0)
Current function value: 114.30523372238548
Iterations: 15
Function evaluations: 129
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 114.77084251653731
Iteration: 2, Func. Count: 19, Neg. LLF: 120.48811196096598
Iteration: 3, Func. Count: 30, Neg. LLF: 144.1319124576878
Iteration: 4, Func. Count: 40, Neg. LLF: 139.97687627263718
Iteration: 5, Func. Count: 50, Neg. LLF: 177.70188498314448
Iteration: 6, Func. Count: 60, Neg. LLF: 154.2338228537174
Iteration: 7, Func. Count: 70, Neg. LLF: 158.65890188480287
Iteration: 8, Func. Count: 80, Neg. LLF: 162.86200179950913
Iteration: 9, Func. Count: 90, Neg. LLF: 115.23674673041776
Iteration: 10, Func. Count: 100, Neg. LLF: 112.0619382575689
Iteration: 11, Func. Count: 110, Neg. LLF: 111.74927323620516
Iteration: 12, Func. Count: 119, Neg. LLF: 111.83995169839768
Iteration: 13, Func. Count: 129, Neg. LLF: 111.70657482173037
Iteration: 14, Func. Count: 138, Neg. LLF: 111.69989520202618
Iteration: 15, Func. Count: 147, Neg. LLF: 111.69864377432167
Iteration: 16, Func. Count: 156, Neg. LLF: 111.6986388135371
Iteration: 17, Func. Count: 164, Neg. LLF: 111.69863878538494
Optimization terminated successfully (Exit mode 0)
Current function value: 111.6986388135371
Iterations: 17
Function evaluations: 164
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 122.6523043010555
Iteration: 2, Func. Count: 24, Neg. LLF: 235.15869769676416
Iteration: 3, Func. Count: 35, Neg. LLF: 131.34969155281792
Iteration: 4, Func. Count: 46, Neg. LLF: 125.88080375692978
Iteration: 5, Func. Count: 57, Neg. LLF: 132.74403270748675
Iteration: 6, Func. Count: 68, Neg. LLF: 111.9445599801627
Iteration: 7, Func. Count: 78, Neg. LLF: 113.06995933420762
Iteration: 8, Func. Count: 89, Neg. LLF: 111.97428393728865
Iteration: 9, Func. Count: 100, Neg. LLF: 111.79240787040908
Iteration: 10, Func. Count: 110, Neg. LLF: 111.75881156784727
Iteration: 11, Func. Count: 120, Neg. LLF: 111.73589763070274
Iteration: 12, Func. Count: 130, Neg. LLF: 111.70946145389607
Iteration: 13, Func. Count: 140, Neg. LLF: 111.69947315316101
Iteration: 14, Func. Count: 150, Neg. LLF: 111.69869060735759
Iteration: 15, Func. Count: 160, Neg. LLF: 111.69864592761841
Iteration: 16, Func. Count: 170, Neg. LLF: 111.6986387562547
Iteration: 17, Func. Count: 179, Neg. LLF: 111.69863877338824
Optimization terminated successfully (Exit mode 0)
Current function value: 111.6986387562547
Iterations: 17
Function evaluations: 179
Gradient evaluations: 17
Iteration: 1, Func. Count: 12, Neg. LLF: 119.37098561936214
Iteration: 2, Func. Count: 24, Neg. LLF: 318.0275350982207
Iteration: 3, Func. Count: 36, Neg. LLF: 126.3264239160558
Iteration: 4, Func. Count: 48, Neg. LLF: 113.93886549784631
Iteration: 5, Func. Count: 60, Neg. LLF: 112.11909457168287
Iteration: 6, Func. Count: 72, Neg. LLF: 118.70553484616836
Iteration: 7, Func. Count: 84, Neg. LLF: 111.84206510694948
Iteration: 8, Func. Count: 96, Neg. LLF: 111.670072298701
Iteration: 9, Func. Count: 107, Neg. LLF: 115.85157951663508
Iteration: 10, Func. Count: 120, Neg. LLF: 111.58660900161347
Iteration: 11, Func. Count: 131, Neg. LLF: 111.57247596976184
Iteration: 12, Func. Count: 142, Neg. LLF: 111.5277266869595
Iteration: 13, Func. Count: 153, Neg. LLF: 111.52450697804767
Iteration: 14, Func. Count: 164, Neg. LLF: 111.52436108517739
Iteration: 15, Func. Count: 175, Neg. LLF: 111.52429958104584
Iteration: 16, Func. Count: 185, Neg. LLF: 111.5242994764859
Optimization terminated successfully (Exit mode 0)
Current function value: 111.52429958104584
Iterations: 16
Function evaluations: 185
Gradient evaluations: 16
Iteration: 1, Func. Count: 13, Neg. LLF: 130.38418248989365
Iteration: 2, Func. Count: 27, Neg. LLF: 159.08061058019044
Iteration: 3, Func. Count: 40, Neg. LLF: 255.32067633298104
Iteration: 4, Func. Count: 53, Neg. LLF: 124.75081507074111
Iteration: 5, Func. Count: 66, Neg. LLF: 237.94509560548798
Iteration: 6, Func. Count: 79, Neg. LLF: 113.71179548898535
Iteration: 7, Func. Count: 92, Neg. LLF: 112.73069856727003
Iteration: 8, Func. Count: 105, Neg. LLF: 111.82468787950582
Iteration: 9, Func. Count: 117, Neg. LLF: 111.49941406101361
Iteration: 10, Func. Count: 129, Neg. LLF: 111.44270001408982
Iteration: 11, Func. Count: 141, Neg. LLF: 111.40800278318653
Iteration: 12, Func. Count: 153, Neg. LLF: 111.40277215527018
Iteration: 13, Func. Count: 165, Neg. LLF: 111.40235420966012
Iteration: 14, Func. Count: 177, Neg. LLF: 111.40227859973625
Iteration: 15, Func. Count: 189, Neg. LLF: 111.40227772476771
Optimization terminated successfully (Exit mode 0)
Current function value: 111.40227772476771
Iterations: 15
Function evaluations: 189
Gradient evaluations: 15
Iteration: 1, Func. Count: 6, Neg. LLF: 124.80820812876327
Iteration: 2, Func. Count: 12, Neg. LLF: 121.02190214519905
Iteration: 3, Func. Count: 18, Neg. LLF: 118.06892887839588
Iteration: 4, Func. Count: 23, Neg. LLF: 131.53101851043735
Iteration: 5, Func. Count: 30, Neg. LLF: 118.01165142476674
Iteration: 6, Func. Count: 35, Neg. LLF: 117.91313052029054
Iteration: 7, Func. Count: 40, Neg. LLF: 117.91150270504423
Iteration: 8, Func. Count: 45, Neg. LLF: 117.91144989595118
Iteration: 9, Func. Count: 49, Neg. LLF: 117.91144989598213
Optimization terminated successfully (Exit mode 0)
Current function value: 117.91144989595118
Iterations: 9
Function evaluations: 49
Gradient evaluations: 9
Iteration: 1, Func. Count: 7, Neg. LLF: 128.47341263328687
Iteration: 2, Func. Count: 16, Neg. LLF: 126.59103041430073
Iteration: 3, Func. Count: 24, Neg. LLF: 118.70659224335108
Iteration: 4, Func. Count: 31, Neg. LLF: 117.77552579436441
Iteration: 5, Func. Count: 37, Neg. LLF: 117.77505684066303
Iteration: 6, Func. Count: 43, Neg. LLF: 117.77497820470467
Iteration: 7, Func. Count: 49, Neg. LLF: 117.77467475248123
Iteration: 8, Func. Count: 55, Neg. LLF: 117.77458179663738
Iteration: 9, Func. Count: 61, Neg. LLF: 117.77456553257448
Iteration: 10, Func. Count: 67, Neg. LLF: 117.7745646679911
Optimization terminated successfully (Exit mode 0)
Current function value: 117.7745646679911
Iterations: 10
Function evaluations: 67
Gradient evaluations: 10
Iteration: 1, Func. Count: 8, Neg. LLF: 128.6115716744957
Iteration: 2, Func. Count: 18, Neg. LLF: 125.23053405091702
Iteration: 3, Func. Count: 27, Neg. LLF: 117.93380319129139
Iteration: 4, Func. Count: 35, Neg. LLF: 117.79562945937927
Iteration: 5, Func. Count: 42, Neg. LLF: 117.77842650136996
Iteration: 6, Func. Count: 49, Neg. LLF: 117.77471981637557
Iteration: 7, Func. Count: 56, Neg. LLF: 117.77467897211231
Iteration: 8, Func. Count: 63, Neg. LLF: 117.77465379955967
Iteration: 9, Func. Count: 70, Neg. LLF: 117.77461463275291
Iteration: 10, Func. Count: 77, Neg. LLF: 117.774580422233
Iteration: 11, Func. Count: 84, Neg. LLF: 117.77456674186456
Iteration: 12, Func. Count: 91, Neg. LLF: 117.77456473387574
Iteration: 13, Func. Count: 97, Neg. LLF: 117.77456474261305
Optimization terminated successfully (Exit mode 0)
Current function value: 117.77456473387574
Iterations: 13
Function evaluations: 97
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 117.9653707476875
Iteration: 2, Func. Count: 17, Neg. LLF: 120.55517865372676
Iteration: 3, Func. Count: 27, Neg. LLF: 120.10224524764193
Iteration: 4, Func. Count: 37, Neg. LLF: 118.58536476503971
Iteration: 5, Func. Count: 46, Neg. LLF: 117.7760719763617
Iteration: 6, Func. Count: 54, Neg. LLF: 117.7748083338497
Iteration: 7, Func. Count: 62, Neg. LLF: 117.77474017446555
Iteration: 8, Func. Count: 70, Neg. LLF: 117.77470772958308
Iteration: 9, Func. Count: 78, Neg. LLF: 117.7746238656323
Iteration: 10, Func. Count: 86, Neg. LLF: 117.77457972693091
Iteration: 11, Func. Count: 94, Neg. LLF: 117.77456611288022
Iteration: 12, Func. Count: 102, Neg. LLF: 117.77456474791171
Iteration: 13, Func. Count: 109, Neg. LLF: 117.77456475567257
Optimization terminated successfully (Exit mode 0)
Current function value: 117.77456474791171
Iterations: 13
Function evaluations: 109
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 124.4239101584169
Iteration: 2, Func. Count: 21, Neg. LLF: 117.99457284692876
Iteration: 3, Func. Count: 31, Neg. LLF: 117.84575242097173
Iteration: 4, Func. Count: 40, Neg. LLF: 119.39869712701733
Iteration: 5, Func. Count: 50, Neg. LLF: 117.77564700876194
Iteration: 6, Func. Count: 59, Neg. LLF: 117.77523104271297
Iteration: 7, Func. Count: 68, Neg. LLF: 117.77474949438864
Iteration: 8, Func. Count: 77, Neg. LLF: 117.77459783820272
Iteration: 9, Func. Count: 86, Neg. LLF: 117.77458895930026
Iteration: 10, Func. Count: 95, Neg. LLF: 117.77458378409194
Iteration: 11, Func. Count: 104, Neg. LLF: 117.77457508949911
Iteration: 12, Func. Count: 113, Neg. LLF: 117.77456778073378
Iteration: 13, Func. Count: 122, Neg. LLF: 117.77456500343283
Iteration: 14, Func. Count: 130, Neg. LLF: 117.77456500958776
Optimization terminated successfully (Exit mode 0)
Current function value: 117.77456500343283
Iterations: 14
Function evaluations: 130
Gradient evaluations: 14
Iteration: 1, Func. Count: 7, Neg. LLF: 124.44995606592585
Iteration: 2, Func. Count: 14, Neg. LLF: 120.90189556097577
Iteration: 3, Func. Count: 21, Neg. LLF: 118.06350212565212
Iteration: 4, Func. Count: 27, Neg. LLF: 131.54215744401398
Iteration: 5, Func. Count: 35, Neg. LLF: 117.99205466343761
Iteration: 6, Func. Count: 41, Neg. LLF: 117.91265949388098
Iteration: 7, Func. Count: 47, Neg. LLF: 117.91148635085752
Iteration: 8, Func. Count: 53, Neg. LLF: 117.91144992588318
Iteration: 9, Func. Count: 58, Neg. LLF: 117.91144985997441
Optimization terminated successfully (Exit mode 0)
Current function value: 117.91144992588318
Iterations: 9
Function evaluations: 58
Gradient evaluations: 9
Iteration: 1, Func. Count: 8, Neg. LLF: 128.0414095666257
Iteration: 2, Func. Count: 18, Neg. LLF: 126.2264629422646
Iteration: 3, Func. Count: 27, Neg. LLF: 119.3455577370512
Iteration: 4, Func. Count: 35, Neg. LLF: 117.77563735233875
Iteration: 5, Func. Count: 42, Neg. LLF: 117.7749780892766
Iteration: 6, Func. Count: 49, Neg. LLF: 117.77491549589195
Iteration: 7, Func. Count: 56, Neg. LLF: 117.77465531922907
Iteration: 8, Func. Count: 63, Neg. LLF: 117.77457752743186
Iteration: 9, Func. Count: 70, Neg. LLF: 117.77456532166688
Iteration: 10, Func. Count: 77, Neg. LLF: 117.77456466043152
Optimization terminated successfully (Exit mode 0)
Current function value: 117.77456466043152
Iterations: 10
Function evaluations: 77
Gradient evaluations: 10
Iteration: 1, Func. Count: 9, Neg. LLF: 128.2242458158439
Iteration: 2, Func. Count: 20, Neg. LLF: 118.12314609271759
Iteration: 3, Func. Count: 29, Neg. LLF: 121.57362607645773
Iteration: 4, Func. Count: 39, Neg. LLF: 117.788429862868
Iteration: 5, Func. Count: 47, Neg. LLF: 117.777475144554
Iteration: 6, Func. Count: 55, Neg. LLF: 117.77473844617668
Iteration: 7, Func. Count: 63, Neg. LLF: 117.77471418305224
Iteration: 8, Func. Count: 71, Neg. LLF: 117.7746116199159
Iteration: 9, Func. Count: 79, Neg. LLF: 117.77457218363304
Iteration: 10, Func. Count: 87, Neg. LLF: 117.77456523317795
Iteration: 11, Func. Count: 95, Neg. LLF: 117.77456466272324
Optimization terminated successfully (Exit mode 0)
Current function value: 117.77456466272324
Iterations: 11
Function evaluations: 95
Gradient evaluations: 11
Iteration: 1, Func. Count: 10, Neg. LLF: 147.52702615567546
Iteration: 2, Func. Count: 21, Neg. LLF: 117.98877133602284
Iteration: 3, Func. Count: 30, Neg. LLF: 117.90597786253102
Iteration: 4, Func. Count: 39, Neg. LLF: 122.58041092324315
Iteration: 5, Func. Count: 49, Neg. LLF: 117.77778373197002
Iteration: 6, Func. Count: 58, Neg. LLF: 117.77491733918261
Iteration: 7, Func. Count: 67, Neg. LLF: 117.7746454595728
Iteration: 8, Func. Count: 76, Neg. LLF: 117.7746250268183
Iteration: 9, Func. Count: 85, Neg. LLF: 117.77461302476674
Iteration: 10, Func. Count: 94, Neg. LLF: 117.77458357676339
Iteration: 11, Func. Count: 103, Neg. LLF: 117.77456901466702
Iteration: 12, Func. Count: 112, Neg. LLF: 117.77456493908844
Iteration: 13, Func. Count: 120, Neg. LLF: 117.77456494677546
Optimization terminated successfully (Exit mode 0)
Current function value: 117.77456493908844
Iterations: 13
Function evaluations: 120
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 144.90061752421647
Iteration: 2, Func. Count: 23, Neg. LLF: 117.99664719022213
Iteration: 3, Func. Count: 33, Neg. LLF: 117.87565645089165
Iteration: 4, Func. Count: 43, Neg. LLF: 119.44608647146299
Iteration: 5, Func. Count: 54, Neg. LLF: 117.77493619873319
Iteration: 6, Func. Count: 64, Neg. LLF: 117.77463687422295
Iteration: 7, Func. Count: 74, Neg. LLF: 117.77460973638755
Iteration: 8, Func. Count: 84, Neg. LLF: 117.77459119004354
Iteration: 9, Func. Count: 94, Neg. LLF: 117.77458525604548
Iteration: 10, Func. Count: 104, Neg. LLF: 117.77457595436364
Iteration: 11, Func. Count: 114, Neg. LLF: 117.77456858878054
Iteration: 12, Func. Count: 124, Neg. LLF: 117.7745651420808
Iteration: 13, Func. Count: 133, Neg. LLF: 117.77456514828562
Optimization terminated successfully (Exit mode 0)
Current function value: 117.7745651420808
Iterations: 13
Function evaluations: 133
Gradient evaluations: 13
Iteration: 1, Func. Count: 8, Neg. LLF: 124.85842653842806
Iteration: 2, Func. Count: 16, Neg. LLF: 118.80525638613233
Iteration: 3, Func. Count: 23, Neg. LLF: 118.17597062240932
Iteration: 4, Func. Count: 30, Neg. LLF: 126.10607687730226
Iteration: 5, Func. Count: 40, Neg. LLF: 117.94569000356071
Iteration: 6, Func. Count: 47, Neg. LLF: 117.89115970502219
Iteration: 7, Func. Count: 54, Neg. LLF: 117.86875198479451
Iteration: 8, Func. Count: 61, Neg. LLF: 117.86817281959327
Iteration: 9, Func. Count: 68, Neg. LLF: 117.86816961857996
Iteration: 10, Func. Count: 74, Neg. LLF: 117.86816957424558
Optimization terminated successfully (Exit mode 0)
Current function value: 117.86816961857996
Iterations: 10
Function evaluations: 74
Gradient evaluations: 10
Iteration: 1, Func. Count: 9, Neg. LLF: 124.11148100637516
Iteration: 2, Func. Count: 20, Neg. LLF: 127.82147188351846
Iteration: 3, Func. Count: 30, Neg. LLF: 118.43900861468522
Iteration: 4, Func. Count: 39, Neg. LLF: 117.6839905734393
Iteration: 5, Func. Count: 47, Neg. LLF: 117.67782914545732
Iteration: 6, Func. Count: 55, Neg. LLF: 117.67565885808146
Iteration: 7, Func. Count: 63, Neg. LLF: 117.66980362709889
Iteration: 8, Func. Count: 71, Neg. LLF: 117.66950043688323
Iteration: 9, Func. Count: 79, Neg. LLF: 117.66946369655106
Iteration: 10, Func. Count: 87, Neg. LLF: 117.66946268243105
Iteration: 11, Func. Count: 94, Neg. LLF: 117.66946268243159
Optimization terminated successfully (Exit mode 0)
Current function value: 117.66946268243105
Iterations: 11
Function evaluations: 94
Gradient evaluations: 11
Iteration: 1, Func. Count: 10, Neg. LLF: 124.18997748169187
Iteration: 2, Func. Count: 22, Neg. LLF: 125.80319550475053
Iteration: 3, Func. Count: 33, Neg. LLF: 117.94540198870547
Iteration: 4, Func. Count: 43, Neg. LLF: 117.70492181050707
Iteration: 5, Func. Count: 52, Neg. LLF: 117.6802658306035
Iteration: 6, Func. Count: 61, Neg. LLF: 117.6764326701939
Iteration: 7, Func. Count: 70, Neg. LLF: 117.67461782149496
Iteration: 8, Func. Count: 79, Neg. LLF: 117.67143160214862
Iteration: 9, Func. Count: 88, Neg. LLF: 117.66987517684784
Iteration: 10, Func. Count: 97, Neg. LLF: 117.66952027961278
Iteration: 11, Func. Count: 106, Neg. LLF: 117.66946627237587
Iteration: 12, Func. Count: 115, Neg. LLF: 117.66946291764017
Iteration: 13, Func. Count: 123, Neg. LLF: 117.66946293224878
Optimization terminated successfully (Exit mode 0)
Current function value: 117.66946291764017
Iterations: 13
Function evaluations: 123
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 126.9089365079863
Iteration: 2, Func. Count: 24, Neg. LLF: 165.17880930742243
Iteration: 3, Func. Count: 36, Neg. LLF: 116.84587511194775
Iteration: 4, Func. Count: 46, Neg. LLF: 116.58484786098535
Iteration: 5, Func. Count: 56, Neg. LLF: 115.63220007224285
Iteration: 6, Func. Count: 66, Neg. LLF: 115.61322818784531
Iteration: 7, Func. Count: 76, Neg. LLF: 115.43093496686656
Iteration: 8, Func. Count: 86, Neg. LLF: 115.30434848024676
Iteration: 9, Func. Count: 96, Neg. LLF: 115.25328742511935
Iteration: 10, Func. Count: 106, Neg. LLF: 115.24178304159715
Iteration: 11, Func. Count: 116, Neg. LLF: 115.23179781977188
Iteration: 12, Func. Count: 136, Neg. LLF: 115.24867980669765
Iteration: 13, Func. Count: 146, Neg. LLF: 115.23712002892657
Iteration: 14, Func. Count: 162, Neg. LLF: 115.24865911667013
Iteration: 15, Func. Count: 173, Neg. LLF: 115.27011537671927
Iteration: 16, Func. Count: 185, Neg. LLF: 115.25465338710244
Iteration: 17, Func. Count: 197, Neg. LLF: 115.24853826720039
Iteration: 18, Func. Count: 207, Neg. LLF: 115.24842619829906
Iteration: 19, Func. Count: 217, Neg. LLF: 115.24842584907518
Optimization terminated successfully (Exit mode 0)
Current function value: 115.24842584907518
Iterations: 20
Function evaluations: 217
Gradient evaluations: 19
Iteration: 1, Func. Count: 12, Neg. LLF: 124.27580566205283
Iteration: 2, Func. Count: 26, Neg. LLF: 118.1684742441875
Iteration: 3, Func. Count: 38, Neg. LLF: 118.17014855209605
Iteration: 4, Func. Count: 50, Neg. LLF: 117.69813891511986
Iteration: 5, Func. Count: 61, Neg. LLF: 117.68063576948707
Iteration: 6, Func. Count: 72, Neg. LLF: 117.6779600480662
Iteration: 7, Func. Count: 83, Neg. LLF: 117.67447308255527
Iteration: 8, Func. Count: 94, Neg. LLF: 117.67142287023557
Iteration: 9, Func. Count: 105, Neg. LLF: 117.6700765539118
Iteration: 10, Func. Count: 116, Neg. LLF: 117.66960374167884
Iteration: 11, Func. Count: 127, Neg. LLF: 117.66947719972714
Iteration: 12, Func. Count: 138, Neg. LLF: 117.66946373897773
Iteration: 13, Func. Count: 149, Neg. LLF: 117.66946269188699
Iteration: 14, Func. Count: 159, Neg. LLF: 117.66946269649503
Optimization terminated successfully (Exit mode 0)
Current function value: 117.66946269188699
Iterations: 14
Function evaluations: 159
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 125.83080503244501
Iteration: 2, Func. Count: 18, Neg. LLF: 120.90116699957852
Iteration: 3, Func. Count: 26, Neg. LLF: 119.45543675510623
Iteration: 4, Func. Count: 34, Neg. LLF: 119.83001242373633
Iteration: 5, Func. Count: 43, Neg. LLF: 118.32352861193154
Iteration: 6, Func. Count: 51, Neg. LLF: 118.18050245803667
Iteration: 7, Func. Count: 59, Neg. LLF: 118.0045847039122
Iteration: 8, Func. Count: 67, Neg. LLF: 117.97570116766234
Iteration: 9, Func. Count: 76, Neg. LLF: 117.8764883196563
Iteration: 10, Func. Count: 84, Neg. LLF: 117.86891301596789
Iteration: 11, Func. Count: 92, Neg. LLF: 117.86819286626493
Iteration: 12, Func. Count: 100, Neg. LLF: 117.86817269525439
Iteration: 13, Func. Count: 108, Neg. LLF: 117.86816961811012
Iteration: 14, Func. Count: 115, Neg. LLF: 117.86816965111899
Optimization terminated successfully (Exit mode 0)
Current function value: 117.86816961811012
Iterations: 14
Function evaluations: 115
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 122.01010454170591
Iteration: 2, Func. Count: 22, Neg. LLF: 127.51543609452601
Iteration: 3, Func. Count: 32, Neg. LLF: 119.16930779579633
Iteration: 4, Func. Count: 43, Neg. LLF: 117.84922280594753
Iteration: 5, Func. Count: 53, Neg. LLF: 117.52415681857126
Iteration: 6, Func. Count: 62, Neg. LLF: 118.1247376283419
Iteration: 7, Func. Count: 72, Neg. LLF: 118.3604696151958
Iteration: 8, Func. Count: 82, Neg. LLF: 117.61493248161273
Iteration: 9, Func. Count: 92, Neg. LLF: 117.17822596081155
Iteration: 10, Func. Count: 101, Neg. LLF: 117.02237173666431
Iteration: 11, Func. Count: 110, Neg. LLF: 116.91644851985595
Iteration: 12, Func. Count: 119, Neg. LLF: 116.90412067121265
Iteration: 13, Func. Count: 128, Neg. LLF: 116.88207216432221
Iteration: 14, Func. Count: 137, Neg. LLF: 116.88067415012085
Iteration: 15, Func. Count: 146, Neg. LLF: 116.88046870377379
Iteration: 16, Func. Count: 155, Neg. LLF: 116.88045503034454
Iteration: 17, Func. Count: 163, Neg. LLF: 116.88045500501903
Optimization terminated successfully (Exit mode 0)
Current function value: 116.88045503034454
Iterations: 17
Function evaluations: 163
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 124.17007388273977
Iteration: 2, Func. Count: 24, Neg. LLF: 125.85616193582845
Iteration: 3, Func. Count: 36, Neg. LLF: 117.90966937657757
Iteration: 4, Func. Count: 46, Neg. LLF: 117.69107039031509
Iteration: 5, Func. Count: 56, Neg. LLF: 119.20939506040682
Iteration: 6, Func. Count: 67, Neg. LLF: 117.5841346203349
Iteration: 7, Func. Count: 77, Neg. LLF: 117.60403498835143
Iteration: 8, Func. Count: 88, Neg. LLF: 117.38963187101234
Iteration: 9, Func. Count: 98, Neg. LLF: 117.16395200711322
Iteration: 10, Func. Count: 108, Neg. LLF: 116.91275408001317
Iteration: 11, Func. Count: 118, Neg. LLF: 116.88920071790564
Iteration: 12, Func. Count: 128, Neg. LLF: 116.88100912935431
Iteration: 13, Func. Count: 138, Neg. LLF: 116.88050245583162
Iteration: 14, Func. Count: 148, Neg. LLF: 116.88045500416158
Iteration: 15, Func. Count: 157, Neg. LLF: 116.8804550818397
Optimization terminated successfully (Exit mode 0)
Current function value: 116.88045500416158
Iterations: 15
Function evaluations: 157
Gradient evaluations: 15
Iteration: 1, Func. Count: 12, Neg. LLF: 124.87387904175372
Iteration: 2, Func. Count: 26, Neg. LLF: 225.12337562021358
Iteration: 3, Func. Count: 39, Neg. LLF: 117.15309774139247
Iteration: 4, Func. Count: 50, Neg. LLF: 116.82822248729104
Iteration: 5, Func. Count: 61, Neg. LLF: 116.34596728700465
Iteration: 6, Func. Count: 72, Neg. LLF: 115.29143476153784
Iteration: 7, Func. Count: 83, Neg. LLF: 121.01755335729526
Iteration: 8, Func. Count: 97, Neg. LLF: 189.42130181920555
Iteration: 9, Func. Count: 111, Neg. LLF: 368.74877920297416
Iteration: 10, Func. Count: 124, Neg. LLF: 116.87067286614781
Iteration: 11, Func. Count: 136, Neg. LLF: 115.25046389654578
Iteration: 12, Func. Count: 148, Neg. LLF: 115.24843722585481
Iteration: 13, Func. Count: 159, Neg. LLF: 115.24842579415738
Iteration: 14, Func. Count: 169, Neg. LLF: 115.24842577517158
Optimization terminated successfully (Exit mode 0)
Current function value: 115.24842579415738
Iterations: 15
Function evaluations: 169
Gradient evaluations: 14
Iteration: 1, Func. Count: 13, Neg. LLF: 146.99371214199144
Iteration: 2, Func. Count: 27, Neg. LLF: 136.38200989015482
Iteration: 3, Func. Count: 41, Neg. LLF: 117.08166172895196
Iteration: 4, Func. Count: 53, Neg. LLF: 116.44102615380321
Iteration: 5, Func. Count: 65, Neg. LLF: 117.95898628133054
Iteration: 6, Func. Count: 78, Neg. LLF: 122.47015202042672
Iteration: 7, Func. Count: 91, Neg. LLF: 123.05807509612114
Iteration: 8, Func. Count: 104, Neg. LLF: 116.57386683207608
Iteration: 9, Func. Count: 117, Neg. LLF: 116.19786181353163
Iteration: 10, Func. Count: 130, Neg. LLF: 116.12855210029869
Iteration: 11, Func. Count: 142, Neg. LLF: 116.12840695355507
Iteration: 12, Func. Count: 155, Neg. LLF: 116.110738865816
Iteration: 13, Func. Count: 167, Neg. LLF: 116.10305110207167
Iteration: 14, Func. Count: 179, Neg. LLF: 116.10287950536159
Iteration: 15, Func. Count: 191, Neg. LLF: 116.1028644732355
Iteration: 16, Func. Count: 202, Neg. LLF: 116.10286429762189
Optimization terminated successfully (Exit mode 0)
Current function value: 116.1028644732355
Iterations: 16
Function evaluations: 202
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 126.27814681106446
Iteration: 2, Func. Count: 20, Neg. LLF: 213.554132962033
Iteration: 3, Func. Count: 30, Neg. LLF: 120.13814124344857
Iteration: 4, Func. Count: 41, Neg. LLF: 1924548.8618958835
Iteration: 5, Func. Count: 51, Neg. LLF: 236702.50358843294
Iteration: 6, Func. Count: 61, Neg. LLF: 3480563.2987813707
Iteration: 7, Func. Count: 71, Neg. LLF: 136.51738912268556
Iteration: 8, Func. Count: 81, Neg. LLF: 3705703.9260904947
Iteration: 9, Func. Count: 91, Neg. LLF: 119.16558163128045
Iteration: 10, Func. Count: 101, Neg. LLF: 114.1433951696204
Iteration: 11, Func. Count: 111, Neg. LLF: 114.03572641463006
Iteration: 12, Func. Count: 121, Neg. LLF: 113.6339904150243
Iteration: 13, Func. Count: 130, Neg. LLF: 113.60296049065859
Iteration: 14, Func. Count: 139, Neg. LLF: 113.5954324687319
Iteration: 15, Func. Count: 148, Neg. LLF: 113.58903362419358
Iteration: 16, Func. Count: 157, Neg. LLF: 113.58879185389287
Iteration: 17, Func. Count: 166, Neg. LLF: 113.58871015813536
Iteration: 18, Func. Count: 175, Neg. LLF: 113.58867899332829
Iteration: 19, Func. Count: 183, Neg. LLF: 113.58867899322637
Optimization terminated successfully (Exit mode 0)
Current function value: 113.58867899332829
Iterations: 19
Function evaluations: 183
Gradient evaluations: 19
Iteration: 1, Func. Count: 11, Neg. LLF: 118.61191331751546
Iteration: 2, Func. Count: 22, Neg. LLF: 119.2075783223514
Iteration: 3, Func. Count: 33, Neg. LLF: 141.08671952036735
Iteration: 4, Func. Count: 44, Neg. LLF: 4263.318344063945
Iteration: 5, Func. Count: 55, Neg. LLF: 1284.2115190364407
Iteration: 6, Func. Count: 66, Neg. LLF: 964.2689695173904
Iteration: 7, Func. Count: 77, Neg. LLF: 577.0835436987386
Iteration: 8, Func. Count: 88, Neg. LLF: 204.2940623004441
Iteration: 9, Func. Count: 99, Neg. LLF: 119.89756426844235
Iteration: 10, Func. Count: 110, Neg. LLF: 137.73533773383184
Iteration: 11, Func. Count: 121, Neg. LLF: 117.22101877103839
Iteration: 12, Func. Count: 132, Neg. LLF: 110.48552540060932
Iteration: 13, Func. Count: 142, Neg. LLF: 110.4585755580938
Iteration: 14, Func. Count: 152, Neg. LLF: 110.45068118821665
Iteration: 15, Func. Count: 162, Neg. LLF: 110.44923094855051
Iteration: 16, Func. Count: 172, Neg. LLF: 110.44857855395686
Iteration: 17, Func. Count: 182, Neg. LLF: 110.44846789767708
Iteration: 18, Func. Count: 192, Neg. LLF: 110.4484655442234
Iteration: 19, Func. Count: 201, Neg. LLF: 110.44846551359468
Optimization terminated successfully (Exit mode 0)
Current function value: 110.4484655442234
Iterations: 19
Function evaluations: 201
Gradient evaluations: 19
Iteration: 1, Func. Count: 12, Neg. LLF: 121.94084303304479
Iteration: 2, Func. Count: 26, Neg. LLF: 241.82020687436702
Iteration: 3, Func. Count: 38, Neg. LLF: 132.0984536980817
Iteration: 4, Func. Count: 50, Neg. LLF: 132.04610086500878
Iteration: 5, Func. Count: 62, Neg. LLF: 145.44062616706054
Iteration: 6, Func. Count: 74, Neg. LLF: 120.37874848625849
Iteration: 7, Func. Count: 86, Neg. LLF: 112.32457903390103
Iteration: 8, Func. Count: 98, Neg. LLF: 112.38806092105885
Iteration: 9, Func. Count: 110, Neg. LLF: 110.99815094862649
Iteration: 10, Func. Count: 121, Neg. LLF: 111.6341974209872
Iteration: 11, Func. Count: 133, Neg. LLF: 110.58334761340303
Iteration: 12, Func. Count: 144, Neg. LLF: 110.55618345864687
Iteration: 13, Func. Count: 155, Neg. LLF: 110.46384735721281
Iteration: 14, Func. Count: 166, Neg. LLF: 110.45947933458454
Iteration: 15, Func. Count: 177, Neg. LLF: 110.45538352512096
Iteration: 16, Func. Count: 188, Neg. LLF: 110.4523001329851
Iteration: 17, Func. Count: 199, Neg. LLF: 110.44976471808498
Iteration: 18, Func. Count: 210, Neg. LLF: 110.44860370618596
Iteration: 19, Func. Count: 221, Neg. LLF: 110.44847198204548
Iteration: 20, Func. Count: 232, Neg. LLF: 110.44846571064937
Iteration: 21, Func. Count: 242, Neg. LLF: 110.44846584389099
Optimization terminated successfully (Exit mode 0)
Current function value: 110.44846571064937
Iterations: 21
Function evaluations: 242
Gradient evaluations: 21
Iteration: 1, Func. Count: 13, Neg. LLF: 119.14623507436721
Iteration: 2, Func. Count: 26, Neg. LLF: 440.6459171402103
Iteration: 3, Func. Count: 39, Neg. LLF: 125.64812955083671
Iteration: 4, Func. Count: 52, Neg. LLF: 130.01459106296429
Iteration: 5, Func. Count: 66, Neg. LLF: 4424.446558604174
Iteration: 6, Func. Count: 79, Neg. LLF: 117.23579913131853
Iteration: 7, Func. Count: 92, Neg. LLF: 111.41301155321689
Iteration: 8, Func. Count: 105, Neg. LLF: 110.96289747972168
Iteration: 9, Func. Count: 118, Neg. LLF: 109.91126932557212
Iteration: 10, Func. Count: 130, Neg. LLF: 111.64019209429115
Iteration: 11, Func. Count: 144, Neg. LLF: 109.88419091647215
Iteration: 12, Func. Count: 156, Neg. LLF: 109.8752500191907
Iteration: 13, Func. Count: 168, Neg. LLF: 109.87167629901919
Iteration: 14, Func. Count: 180, Neg. LLF: 109.86838768176331
Iteration: 15, Func. Count: 192, Neg. LLF: 109.86495447248605
Iteration: 16, Func. Count: 204, Neg. LLF: 109.86463546848788
Iteration: 17, Func. Count: 216, Neg. LLF: 109.86461555345082
Iteration: 18, Func. Count: 228, Neg. LLF: 109.86461439488939
Iteration: 19, Func. Count: 239, Neg. LLF: 109.86461429757387
Optimization terminated successfully (Exit mode 0)
Current function value: 109.86461439488939
Iterations: 19
Function evaluations: 239
Gradient evaluations: 19
Iteration: 1, Func. Count: 14, Neg. LLF: 127.74183045754872
Iteration: 2, Func. Count: 29, Neg. LLF: 163.7537726363305
Iteration: 3, Func. Count: 43, Neg. LLF: 129.0738401557793
Iteration: 4, Func. Count: 57, Neg. LLF: 2389629.056750158
Iteration: 5, Func. Count: 71, Neg. LLF: 149.21359963330457
Iteration: 6, Func. Count: 85, Neg. LLF: 127.15732818710936
Iteration: 7, Func. Count: 99, Neg. LLF: 126.03340999713927
Iteration: 8, Func. Count: 113, Neg. LLF: 119.29721340017419
Iteration: 9, Func. Count: 127, Neg. LLF: 110.99849146907557
Iteration: 10, Func. Count: 140, Neg. LLF: 111.13248933430435
Iteration: 11, Func. Count: 154, Neg. LLF: 114.35680608218743
Iteration: 12, Func. Count: 169, Neg. LLF: 109.92724955999653
Iteration: 13, Func. Count: 182, Neg. LLF: 109.90068481312849
Iteration: 14, Func. Count: 195, Neg. LLF: 109.86645207213975
Iteration: 15, Func. Count: 208, Neg. LLF: 109.86494221986739
Iteration: 16, Func. Count: 221, Neg. LLF: 109.86481155085563
Iteration: 17, Func. Count: 234, Neg. LLF: 109.86474037416619
Iteration: 18, Func. Count: 247, Neg. LLF: 109.8646283952385
Iteration: 19, Func. Count: 260, Neg. LLF: 109.86461593096028
Iteration: 20, Func. Count: 273, Neg. LLF: 109.86461445099324
Iteration: 21, Func. Count: 285, Neg. LLF: 109.864614385755
Optimization terminated successfully (Exit mode 0)
Current function value: 109.86461445099324
Iterations: 21
Function evaluations: 285
Gradient evaluations: 21
Iteration: 1, Func. Count: 7, Neg. LLF: 127.85807539144153
Iteration: 2, Func. Count: 15, Neg. LLF: 127.34686048393039
Iteration: 3, Func. Count: 24, Neg. LLF: 119.1347687598371
Iteration: 4, Func. Count: 31, Neg. LLF: 118.33735760713874
Iteration: 5, Func. Count: 38, Neg. LLF: 117.93647590754517
Iteration: 6, Func. Count: 45, Neg. LLF: 117.53639766963565
Iteration: 7, Func. Count: 51, Neg. LLF: 117.56853222804799
Iteration: 8, Func. Count: 58, Neg. LLF: 117.47458602211776
Iteration: 9, Func. Count: 65, Neg. LLF: 117.44971712674231
Iteration: 10, Func. Count: 71, Neg. LLF: 117.4496950004993
Iteration: 11, Func. Count: 77, Neg. LLF: 117.44968991025674
Iteration: 12, Func. Count: 82, Neg. LLF: 117.44968991026244
Optimization terminated successfully (Exit mode 0)
Current function value: 117.44968991025674
Iterations: 12
Function evaluations: 82
Gradient evaluations: 12
Iteration: 1, Func. Count: 8, Neg. LLF: 127.20463518053259
Iteration: 2, Func. Count: 18, Neg. LLF: 127.96653952912237
Iteration: 3, Func. Count: 27, Neg. LLF: 119.04504155062838
Iteration: 4, Func. Count: 35, Neg. LLF: 118.90495743972079
Iteration: 5, Func. Count: 44, Neg. LLF: 117.67592217971155
Iteration: 6, Func. Count: 51, Neg. LLF: 117.61438910275979
Iteration: 7, Func. Count: 58, Neg. LLF: 117.59461759711031
Iteration: 8, Func. Count: 65, Neg. LLF: 117.49802592344854
Iteration: 9, Func. Count: 72, Neg. LLF: 117.45103997712546
Iteration: 10, Func. Count: 79, Neg. LLF: 117.45022193560553
Iteration: 11, Func. Count: 86, Neg. LLF: 117.44969783569631
Iteration: 12, Func. Count: 93, Neg. LLF: 117.44969247556062
Iteration: 13, Func. Count: 100, Neg. LLF: 117.44969006239343
Iteration: 14, Func. Count: 106, Neg. LLF: 117.44969006891101
Optimization terminated successfully (Exit mode 0)
Current function value: 117.44969006239343
Iterations: 14
Function evaluations: 106
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 127.30737142987772
Iteration: 2, Func. Count: 20, Neg. LLF: 127.23987964019966
Iteration: 3, Func. Count: 31, Neg. LLF: 125.13290727627209
Iteration: 4, Func. Count: 40, Neg. LLF: 118.74479731467781
Iteration: 5, Func. Count: 49, Neg. LLF: 117.66055328199685
Iteration: 6, Func. Count: 57, Neg. LLF: 117.63161453044826
Iteration: 7, Func. Count: 65, Neg. LLF: 117.60600949259944
Iteration: 8, Func. Count: 73, Neg. LLF: 117.54377146323887
Iteration: 9, Func. Count: 81, Neg. LLF: 117.4760559347641
Iteration: 10, Func. Count: 89, Neg. LLF: 117.45980191719471
Iteration: 11, Func. Count: 97, Neg. LLF: 117.45230635554512
Iteration: 12, Func. Count: 105, Neg. LLF: 117.45025873923205
Iteration: 13, Func. Count: 113, Neg. LLF: 117.44971512790244
Iteration: 14, Func. Count: 121, Neg. LLF: 117.4496937224081
Iteration: 15, Func. Count: 129, Neg. LLF: 117.44969013002725
Iteration: 16, Func. Count: 136, Neg. LLF: 117.44969014015818
Optimization terminated successfully (Exit mode 0)
Current function value: 117.44969013002725
Iterations: 16
Function evaluations: 136
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 127.24436590446388
Iteration: 2, Func. Count: 22, Neg. LLF: 124.79904259081519
Iteration: 3, Func. Count: 32, Neg. LLF: 132.27458073278436
Iteration: 4, Func. Count: 43, Neg. LLF: 119.5690091336211
Iteration: 5, Func. Count: 53, Neg. LLF: 117.65426118718761
Iteration: 6, Func. Count: 62, Neg. LLF: 117.59448981547202
Iteration: 7, Func. Count: 71, Neg. LLF: 117.51830902017623
Iteration: 8, Func. Count: 80, Neg. LLF: 117.49122470175978
Iteration: 9, Func. Count: 89, Neg. LLF: 117.4578726048779
Iteration: 10, Func. Count: 98, Neg. LLF: 117.45191954531934
Iteration: 11, Func. Count: 107, Neg. LLF: 117.44884928001727
Iteration: 12, Func. Count: 116, Neg. LLF: 117.44875255505887
Iteration: 13, Func. Count: 125, Neg. LLF: 117.4487320569352
Iteration: 14, Func. Count: 134, Neg. LLF: 117.44872666315838
Iteration: 15, Func. Count: 143, Neg. LLF: 117.44872490936001
Iteration: 16, Func. Count: 151, Neg. LLF: 117.4487249093653
Optimization terminated successfully (Exit mode 0)
Current function value: 117.44872490936001
Iterations: 16
Function evaluations: 151
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 127.18460218707526
Iteration: 2, Func. Count: 24, Neg. LLF: 124.58077186549056
Iteration: 3, Func. Count: 35, Neg. LLF: 134.2475685286479
Iteration: 4, Func. Count: 47, Neg. LLF: 118.83142255635467
Iteration: 5, Func. Count: 58, Neg. LLF: 117.78928088403056
Iteration: 6, Func. Count: 69, Neg. LLF: 117.57342889384128
Iteration: 7, Func. Count: 79, Neg. LLF: 117.51978727219017
Iteration: 8, Func. Count: 89, Neg. LLF: 117.48843656559731
Iteration: 9, Func. Count: 99, Neg. LLF: 117.4647356213975
Iteration: 10, Func. Count: 109, Neg. LLF: 117.4535178385822
Iteration: 11, Func. Count: 119, Neg. LLF: 117.45001372446048
Iteration: 12, Func. Count: 129, Neg. LLF: 117.4489248581138
Iteration: 13, Func. Count: 139, Neg. LLF: 117.44873933457875
Iteration: 14, Func. Count: 149, Neg. LLF: 117.44872821612402
Iteration: 15, Func. Count: 159, Neg. LLF: 117.44872569889657
Iteration: 16, Func. Count: 169, Neg. LLF: 117.44872493761018
Optimization terminated successfully (Exit mode 0)
Current function value: 117.44872493761018
Iterations: 16
Function evaluations: 169
Gradient evaluations: 16
Iteration: 1, Func. Count: 8, Neg. LLF: 127.72743321923784
Iteration: 2, Func. Count: 17, Neg. LLF: 127.07345270888507
Iteration: 3, Func. Count: 27, Neg. LLF: 119.10678894002034
Iteration: 4, Func. Count: 35, Neg. LLF: 118.36823958848012
Iteration: 5, Func. Count: 43, Neg. LLF: 117.93676618755673
Iteration: 6, Func. Count: 51, Neg. LLF: 117.54051727229177
Iteration: 7, Func. Count: 58, Neg. LLF: 117.54339045684867
Iteration: 8, Func. Count: 66, Neg. LLF: 117.47863497585615
Iteration: 9, Func. Count: 74, Neg. LLF: 117.44971335487736
Iteration: 10, Func. Count: 81, Neg. LLF: 117.44969425286303
Iteration: 11, Func. Count: 88, Neg. LLF: 117.44969001880125
Iteration: 12, Func. Count: 94, Neg. LLF: 117.44969008206785
Optimization terminated successfully (Exit mode 0)
Current function value: 117.44969001880125
Iterations: 12
Function evaluations: 94
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 126.79343862980129
Iteration: 2, Func. Count: 20, Neg. LLF: 127.60204883287054
Iteration: 3, Func. Count: 30, Neg. LLF: 119.33349255489756
Iteration: 4, Func. Count: 39, Neg. LLF: 119.23251897637114
Iteration: 5, Func. Count: 48, Neg. LLF: 117.63838962747516
Iteration: 6, Func. Count: 56, Neg. LLF: 117.60932410405401
Iteration: 7, Func. Count: 64, Neg. LLF: 117.58256173917411
Iteration: 8, Func. Count: 72, Neg. LLF: 117.45580278705391
Iteration: 9, Func. Count: 80, Neg. LLF: 117.45222567093803
Iteration: 10, Func. Count: 88, Neg. LLF: 117.4497365715505
Iteration: 11, Func. Count: 96, Neg. LLF: 117.44970028000408
Iteration: 12, Func. Count: 104, Neg. LLF: 117.44969317597896
Iteration: 13, Func. Count: 112, Neg. LLF: 117.44969018194999
Iteration: 14, Func. Count: 119, Neg. LLF: 117.44969018844733
Optimization terminated successfully (Exit mode 0)
Current function value: 117.44969018194999
Iterations: 14
Function evaluations: 119
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 126.93969192304714
Iteration: 2, Func. Count: 22, Neg. LLF: 127.76798571735108
Iteration: 3, Func. Count: 34, Neg. LLF: 124.36903411179212
Iteration: 4, Func. Count: 44, Neg. LLF: 119.53017001908552
Iteration: 5, Func. Count: 54, Neg. LLF: 117.65590163195606
Iteration: 6, Func. Count: 63, Neg. LLF: 117.63180320595269
Iteration: 7, Func. Count: 72, Neg. LLF: 117.59997110454606
Iteration: 8, Func. Count: 81, Neg. LLF: 117.53813611994492
Iteration: 9, Func. Count: 90, Neg. LLF: 117.48126011801827
Iteration: 10, Func. Count: 99, Neg. LLF: 117.45674479950355
Iteration: 11, Func. Count: 108, Neg. LLF: 117.45229712381747
Iteration: 12, Func. Count: 117, Neg. LLF: 117.45035967918874
Iteration: 13, Func. Count: 126, Neg. LLF: 117.44970292078082
Iteration: 14, Func. Count: 135, Neg. LLF: 117.44969154351583
Iteration: 15, Func. Count: 144, Neg. LLF: 117.44968999487673
Iteration: 16, Func. Count: 152, Neg. LLF: 117.44969000500656
Optimization terminated successfully (Exit mode 0)
Current function value: 117.44968999487673
Iterations: 16
Function evaluations: 152
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 126.94119113268073
Iteration: 2, Func. Count: 24, Neg. LLF: 124.52105980453508
Iteration: 3, Func. Count: 35, Neg. LLF: 134.7731941297345
Iteration: 4, Func. Count: 47, Neg. LLF: 118.79551365251989
Iteration: 5, Func. Count: 58, Neg. LLF: 117.76302159290374
Iteration: 6, Func. Count: 68, Neg. LLF: 117.59333922798837
Iteration: 7, Func. Count: 78, Neg. LLF: 117.54083309333615
Iteration: 8, Func. Count: 88, Neg. LLF: 117.51174451695681
Iteration: 9, Func. Count: 98, Neg. LLF: 117.45287290833038
Iteration: 10, Func. Count: 108, Neg. LLF: 117.4500291777084
Iteration: 11, Func. Count: 118, Neg. LLF: 117.44881567543379
Iteration: 12, Func. Count: 128, Neg. LLF: 117.44874594930022
Iteration: 13, Func. Count: 138, Neg. LLF: 117.44872856633923
Iteration: 14, Func. Count: 148, Neg. LLF: 117.44872588650394
Iteration: 15, Func. Count: 158, Neg. LLF: 117.44872497808922
Optimization terminated successfully (Exit mode 0)
Current function value: 117.44872497808922
Iterations: 15
Function evaluations: 158
Gradient evaluations: 15
Iteration: 1, Func. Count: 12, Neg. LLF: 126.89329032396306
Iteration: 2, Func. Count: 26, Neg. LLF: 124.30491919176636
Iteration: 3, Func. Count: 38, Neg. LLF: 137.46966402424806
Iteration: 4, Func. Count: 51, Neg. LLF: 118.24057177089219
Iteration: 5, Func. Count: 63, Neg. LLF: 117.95168412934005
Iteration: 6, Func. Count: 75, Neg. LLF: 117.57304774156812
Iteration: 7, Func. Count: 86, Neg. LLF: 117.57614964929222
Iteration: 8, Func. Count: 98, Neg. LLF: 117.51160302994849
Iteration: 9, Func. Count: 109, Neg. LLF: 117.46450569524083
Iteration: 10, Func. Count: 120, Neg. LLF: 117.45465000115526
Iteration: 11, Func. Count: 131, Neg. LLF: 117.44905459025622
Iteration: 12, Func. Count: 142, Neg. LLF: 117.4487522071484
Iteration: 13, Func. Count: 153, Neg. LLF: 117.44872816472903
Iteration: 14, Func. Count: 164, Neg. LLF: 117.4487259946858
Iteration: 15, Func. Count: 175, Neg. LLF: 117.44872493142167
Iteration: 16, Func. Count: 185, Neg. LLF: 117.44872493351478
Optimization terminated successfully (Exit mode 0)
Current function value: 117.44872493142167
Iterations: 16
Function evaluations: 185
Gradient evaluations: 16
Iteration: 1, Func. Count: 9, Neg. LLF: 127.77402385338314
Iteration: 2, Func. Count: 19, Neg. LLF: 122.89798749208808
Iteration: 3, Func. Count: 30, Neg. LLF: 118.60277703929515
Iteration: 4, Func. Count: 38, Neg. LLF: 122.19226553340775
Iteration: 5, Func. Count: 47, Neg. LLF: 142.51670600781176
Iteration: 6, Func. Count: 57, Neg. LLF: 117.46377759515191
Iteration: 7, Func. Count: 65, Neg. LLF: 117.41122810200662
Iteration: 8, Func. Count: 73, Neg. LLF: 117.39774147312029
Iteration: 9, Func. Count: 81, Neg. LLF: 117.38583717717063
Iteration: 10, Func. Count: 89, Neg. LLF: 117.3856655638008
Iteration: 11, Func. Count: 97, Neg. LLF: 117.38563772214505
Iteration: 12, Func. Count: 105, Neg. LLF: 117.38563507284391
Iteration: 13, Func. Count: 112, Neg. LLF: 117.38563502181573
Optimization terminated successfully (Exit mode 0)
Current function value: 117.38563507284391
Iterations: 13
Function evaluations: 112
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 125.52558082993751
Iteration: 2, Func. Count: 23, Neg. LLF: 125.19599645526228
Iteration: 3, Func. Count: 33, Neg. LLF: 118.62442896343116
Iteration: 4, Func. Count: 43, Neg. LLF: 117.709821333873
Iteration: 5, Func. Count: 53, Neg. LLF: 119.98515145565658
Iteration: 6, Func. Count: 63, Neg. LLF: 117.56260039897997
Iteration: 7, Func. Count: 72, Neg. LLF: 117.52100592358349
Iteration: 8, Func. Count: 81, Neg. LLF: 117.4241644689002
Iteration: 9, Func. Count: 90, Neg. LLF: 117.39283457673805
Iteration: 10, Func. Count: 99, Neg. LLF: 117.38644179693966
Iteration: 11, Func. Count: 108, Neg. LLF: 117.38565571447708
Iteration: 12, Func. Count: 117, Neg. LLF: 117.38564077994012
Iteration: 13, Func. Count: 126, Neg. LLF: 117.38563723338531
Iteration: 14, Func. Count: 135, Neg. LLF: 117.3856354470276
Iteration: 15, Func. Count: 143, Neg. LLF: 117.38563545270054
Optimization terminated successfully (Exit mode 0)
Current function value: 117.3856354470276
Iterations: 15
Function evaluations: 143
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 127.01184111506338
Iteration: 2, Func. Count: 24, Neg. LLF: 128.05958383384694
Iteration: 3, Func. Count: 37, Neg. LLF: 123.68937188508843
Iteration: 4, Func. Count: 48, Neg. LLF: 119.04650055848855
Iteration: 5, Func. Count: 59, Neg. LLF: 117.59211811890381
Iteration: 6, Func. Count: 69, Neg. LLF: 117.56407914045049
Iteration: 7, Func. Count: 79, Neg. LLF: 117.51116558980043
Iteration: 8, Func. Count: 89, Neg. LLF: 117.46997232095099
Iteration: 9, Func. Count: 99, Neg. LLF: 117.43175018187931
Iteration: 10, Func. Count: 109, Neg. LLF: 117.40404375664114
Iteration: 11, Func. Count: 119, Neg. LLF: 117.387656324891
Iteration: 12, Func. Count: 129, Neg. LLF: 117.38615153667257
Iteration: 13, Func. Count: 139, Neg. LLF: 117.3856486457129
Iteration: 14, Func. Count: 149, Neg. LLF: 117.38563816932005
Iteration: 15, Func. Count: 159, Neg. LLF: 117.38563613084318
Iteration: 16, Func. Count: 169, Neg. LLF: 117.38563515460132
Optimization terminated successfully (Exit mode 0)
Current function value: 117.38563515460132
Iterations: 16
Function evaluations: 169
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 124.95949809359465
Iteration: 2, Func. Count: 26, Neg. LLF: 171.3096689472341
Iteration: 3, Func. Count: 39, Neg. LLF: 116.83513529764042
Iteration: 4, Func. Count: 50, Neg. LLF: 116.64219001396192
Iteration: 5, Func. Count: 61, Neg. LLF: 116.54728283923727
Iteration: 6, Func. Count: 72, Neg. LLF: 116.50239249341853
Iteration: 7, Func. Count: 83, Neg. LLF: 116.48243459486623
Iteration: 8, Func. Count: 94, Neg. LLF: 116.48194105846001
Iteration: 9, Func. Count: 105, Neg. LLF: 116.48184415665324
Iteration: 10, Func. Count: 116, Neg. LLF: 116.48183193852051
Iteration: 11, Func. Count: 127, Neg. LLF: 116.48182996184815
Iteration: 12, Func. Count: 137, Neg. LLF: 116.48182976764201
Optimization terminated successfully (Exit mode 0)
Current function value: 116.48182996184815
Iterations: 12
Function evaluations: 137
Gradient evaluations: 12
Iteration: 1, Func. Count: 13, Neg. LLF: 126.91014789149057
Iteration: 2, Func. Count: 28, Neg. LLF: 124.04947200741965
Iteration: 3, Func. Count: 43, Neg. LLF: 123.61952039924533
Iteration: 4, Func. Count: 56, Neg. LLF: 125.04637505871752
Iteration: 5, Func. Count: 70, Neg. LLF: 117.56978045301044
Iteration: 6, Func. Count: 82, Neg. LLF: 117.53245342571725
Iteration: 7, Func. Count: 94, Neg. LLF: 117.46202342723275
Iteration: 8, Func. Count: 106, Neg. LLF: 117.38862866131514
Iteration: 9, Func. Count: 118, Neg. LLF: 117.38536772411636
Iteration: 10, Func. Count: 130, Neg. LLF: 117.38364153488256
Iteration: 11, Func. Count: 142, Neg. LLF: 117.38349932940166
Iteration: 12, Func. Count: 154, Neg. LLF: 117.38337795932874
Iteration: 13, Func. Count: 166, Neg. LLF: 117.38337228902846
Iteration: 14, Func. Count: 178, Neg. LLF: 117.38336774071104
Iteration: 15, Func. Count: 189, Neg. LLF: 117.38336774069766
Optimization terminated successfully (Exit mode 0)
Current function value: 117.38336774071104
Iterations: 15
Function evaluations: 189
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 127.69480453128531
Iteration: 2, Func. Count: 21, Neg. LLF: 121.19017799327125
Iteration: 3, Func. Count: 31, Neg. LLF: 118.1677522843732
Iteration: 4, Func. Count: 40, Neg. LLF: 123.34758883090973
Iteration: 5, Func. Count: 51, Neg. LLF: 125.17122900094935
Iteration: 6, Func. Count: 63, Neg. LLF: 143.7919670988372
Iteration: 7, Func. Count: 73, Neg. LLF: 117.31310999584181
Iteration: 8, Func. Count: 82, Neg. LLF: 117.27053584130948
Iteration: 9, Func. Count: 91, Neg. LLF: 117.26898710743009
Iteration: 10, Func. Count: 100, Neg. LLF: 117.26894258203797
Iteration: 11, Func. Count: 109, Neg. LLF: 117.26893253450577
Iteration: 12, Func. Count: 118, Neg. LLF: 117.26891993350259
Iteration: 13, Func. Count: 127, Neg. LLF: 117.26891858576789
Iteration: 14, Func. Count: 135, Neg. LLF: 117.26891855820669
Optimization terminated successfully (Exit mode 0)
Current function value: 117.26891858576789
Iterations: 14
Function evaluations: 135
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 126.33084943337552
Iteration: 2, Func. Count: 25, Neg. LLF: 127.40074779820549
Iteration: 3, Func. Count: 36, Neg. LLF: 118.96259047436193
Iteration: 4, Func. Count: 48, Neg. LLF: 118.07666536567419
Iteration: 5, Func. Count: 59, Neg. LLF: 117.68904246194911
Iteration: 6, Func. Count: 70, Neg. LLF: 118.25102919654647
Iteration: 7, Func. Count: 81, Neg. LLF: 117.43555458597064
Iteration: 8, Func. Count: 91, Neg. LLF: 117.2655604403577
Iteration: 9, Func. Count: 101, Neg. LLF: 116.98311909754698
Iteration: 10, Func. Count: 111, Neg. LLF: 116.88558934265673
Iteration: 11, Func. Count: 121, Neg. LLF: 116.85631570879816
Iteration: 12, Func. Count: 131, Neg. LLF: 116.84888681476644
Iteration: 13, Func. Count: 141, Neg. LLF: 116.84886242999838
Iteration: 14, Func. Count: 151, Neg. LLF: 116.84885644148248
Iteration: 15, Func. Count: 161, Neg. LLF: 116.84885512038389
Iteration: 16, Func. Count: 170, Neg. LLF: 116.84885509570559
Optimization terminated successfully (Exit mode 0)
Current function value: 116.84885512038389
Iterations: 16
Function evaluations: 170
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 126.47761131830453
Iteration: 2, Func. Count: 27, Neg. LLF: 125.72432653152833
Iteration: 3, Func. Count: 39, Neg. LLF: 119.11616163079749
Iteration: 4, Func. Count: 51, Neg. LLF: 117.72047306837572
Iteration: 5, Func. Count: 62, Neg. LLF: 117.64008831754361
Iteration: 6, Func. Count: 73, Neg. LLF: 118.2450450399182
Iteration: 7, Func. Count: 85, Neg. LLF: 117.56863578995923
Iteration: 8, Func. Count: 96, Neg. LLF: 117.53349922640672
Iteration: 9, Func. Count: 107, Neg. LLF: 117.52564761954699
Iteration: 10, Func. Count: 118, Neg. LLF: 117.46518785222426
Iteration: 11, Func. Count: 129, Neg. LLF: 117.35562568110836
Iteration: 12, Func. Count: 140, Neg. LLF: 117.27915040042969
Iteration: 13, Func. Count: 151, Neg. LLF: 117.2750497076494
Iteration: 14, Func. Count: 162, Neg. LLF: 117.26911256970983
Iteration: 15, Func. Count: 173, Neg. LLF: 117.26894812325897
Iteration: 16, Func. Count: 184, Neg. LLF: 117.2689369420212
Iteration: 17, Func. Count: 195, Neg. LLF: 117.26891991804867
Iteration: 18, Func. Count: 206, Neg. LLF: 117.26891832881684
Iteration: 19, Func. Count: 216, Neg. LLF: 117.26891834661046
Optimization terminated successfully (Exit mode 0)
Current function value: 117.26891832881684
Iterations: 19
Function evaluations: 216
Gradient evaluations: 19
Iteration: 1, Func. Count: 13, Neg. LLF: 127.66043188213617
Iteration: 2, Func. Count: 28, Neg. LLF: 120.84475233866752
Iteration: 3, Func. Count: 41, Neg. LLF: 117.74885430764732
Iteration: 4, Func. Count: 54, Neg. LLF: 116.81192672814362
Iteration: 5, Func. Count: 66, Neg. LLF: 115.35991116310525
Iteration: 6, Func. Count: 78, Neg. LLF: 115.30323873779129
Iteration: 7, Func. Count: 90, Neg. LLF: 315.3795198590258
Iteration: 8, Func. Count: 105, Neg. LLF: 115.26530835137935
Iteration: 9, Func. Count: 117, Neg. LLF: 115.18449953197128
Iteration: 10, Func. Count: 132, Neg. LLF: 116.62674164715743
Iteration: 11, Func. Count: 146, Neg. LLF: 115.33597909057815
Iteration: 12, Func. Count: 159, Neg. LLF: 115.25896362106404
Iteration: 13, Func. Count: 171, Neg. LLF: 123.91665235599753
Iteration: 14, Func. Count: 185, Neg. LLF: 115.24476188322393
Iteration: 15, Func. Count: 197, Neg. LLF: 115.24437859349987
Iteration: 16, Func. Count: 208, Neg. LLF: 115.2443785847783
Optimization terminated successfully (Exit mode 0)
Current function value: 115.24437859349987
Iterations: 17
Function evaluations: 208
Gradient evaluations: 16
Iteration: 1, Func. Count: 14, Neg. LLF: 155.03790809662735
Iteration: 2, Func. Count: 29, Neg. LLF: 130.19982247643588
Iteration: 3, Func. Count: 44, Neg. LLF: 116.95661201519043
Iteration: 4, Func. Count: 57, Neg. LLF: 116.35318061209752
Iteration: 5, Func. Count: 70, Neg. LLF: 122.57424861557847
Iteration: 6, Func. Count: 84, Neg. LLF: 122.96115807042199
Iteration: 7, Func. Count: 98, Neg. LLF: 123.09636297509819
Iteration: 8, Func. Count: 112, Neg. LLF: 116.68917033657031
Iteration: 9, Func. Count: 126, Neg. LLF: 116.11932194736666
Iteration: 10, Func. Count: 139, Neg. LLF: 116.1182620516466
Iteration: 11, Func. Count: 152, Neg. LLF: 116.11221692696317
Iteration: 12, Func. Count: 165, Neg. LLF: 116.10755473880013
Iteration: 13, Func. Count: 178, Neg. LLF: 116.10361049651881
Iteration: 14, Func. Count: 191, Neg. LLF: 116.10289076137376
Iteration: 15, Func. Count: 204, Neg. LLF: 116.10286450079536
Iteration: 16, Func. Count: 216, Neg. LLF: 116.1028643250641
Optimization terminated successfully (Exit mode 0)
Current function value: 116.10286450079536
Iterations: 16
Function evaluations: 216
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 119.31131607683776
Iteration: 2, Func. Count: 22, Neg. LLF: 118.93295704681763
Iteration: 3, Func. Count: 35, Neg. LLF: 125.62496827583453
Iteration: 4, Func. Count: 46, Neg. LLF: 780211.7770748002
Iteration: 5, Func. Count: 57, Neg. LLF: 4256605.6865766235
Iteration: 6, Func. Count: 68, Neg. LLF: 6889.152465756196
Iteration: 7, Func. Count: 79, Neg. LLF: 10722.511699014492
Iteration: 8, Func. Count: 90, Neg. LLF: 148.06675981561273
Iteration: 9, Func. Count: 101, Neg. LLF: 115.47988895610428
Iteration: 10, Func. Count: 112, Neg. LLF: 111.45154046473631
Iteration: 11, Func. Count: 123, Neg. LLF: 112.90327577649828
Iteration: 12, Func. Count: 134, Neg. LLF: 111.05638843798513
Iteration: 13, Func. Count: 144, Neg. LLF: 111.10836245243159
Iteration: 14, Func. Count: 155, Neg. LLF: 111.0330696230644
Iteration: 15, Func. Count: 165, Neg. LLF: 111.02817586569701
Iteration: 16, Func. Count: 175, Neg. LLF: 111.0271876664574
Iteration: 17, Func. Count: 185, Neg. LLF: 111.02715795976634
Iteration: 18, Func. Count: 195, Neg. LLF: 111.02715624683175
Iteration: 19, Func. Count: 204, Neg. LLF: 111.02715624067623
Optimization terminated successfully (Exit mode 0)
Current function value: 111.02715624683175
Iterations: 19
Function evaluations: 204
Gradient evaluations: 19
Iteration: 1, Func. Count: 12, Neg. LLF: 126.48760023210998
Iteration: 2, Func. Count: 27, Neg. LLF: 115.59047766635973
Iteration: 3, Func. Count: 38, Neg. LLF: 114.32046633103687
Iteration: 4, Func. Count: 50, Neg. LLF: 157.86681745692798
Iteration: 5, Func. Count: 63, Neg. LLF: 109.87151192864671
Iteration: 6, Func. Count: 74, Neg. LLF: 166.91093030236024
Iteration: 7, Func. Count: 86, Neg. LLF: 132.36108959566798
Iteration: 8, Func. Count: 99, Neg. LLF: 109.73051690133815
Iteration: 9, Func. Count: 111, Neg. LLF: 109.74942056934735
Iteration: 10, Func. Count: 123, Neg. LLF: 109.52076993753761
Iteration: 11, Func. Count: 134, Neg. LLF: 109.51545745586971
Iteration: 12, Func. Count: 145, Neg. LLF: 109.51184729251304
Iteration: 13, Func. Count: 156, Neg. LLF: 109.50211357388388
Iteration: 14, Func. Count: 167, Neg. LLF: 109.5007204306627
Iteration: 15, Func. Count: 178, Neg. LLF: 109.50046643110646
Iteration: 16, Func. Count: 189, Neg. LLF: 109.5004655214037
Optimization terminated successfully (Exit mode 0)
Current function value: 109.5004655214037
Iterations: 16
Function evaluations: 189
Gradient evaluations: 16
Iteration: 1, Func. Count: 13, Neg. LLF: 121.62222818762802
Iteration: 2, Func. Count: 28, Neg. LLF: 255.50368997388628
Iteration: 3, Func. Count: 41, Neg. LLF: 131.17814774653922
Iteration: 4, Func. Count: 54, Neg. LLF: 2359890.359386121
Iteration: 5, Func. Count: 67, Neg. LLF: 170.17461392944
Iteration: 6, Func. Count: 80, Neg. LLF: 115.82552187381836
Iteration: 7, Func. Count: 93, Neg. LLF: 1728362.561117727
Iteration: 8, Func. Count: 106, Neg. LLF: 110.88746839791654
Iteration: 9, Func. Count: 119, Neg. LLF: 111.76213053600986
Iteration: 10, Func. Count: 132, Neg. LLF: 109.8710981500101
Iteration: 11, Func. Count: 144, Neg. LLF: 109.60143501338307
Iteration: 12, Func. Count: 156, Neg. LLF: 109.5139483522742
Iteration: 13, Func. Count: 168, Neg. LLF: 109.50618110552134
Iteration: 14, Func. Count: 180, Neg. LLF: 109.50280790447012
Iteration: 15, Func. Count: 192, Neg. LLF: 109.50120263973817
Iteration: 16, Func. Count: 204, Neg. LLF: 109.50071701098057
Iteration: 17, Func. Count: 216, Neg. LLF: 109.50062288325005
Iteration: 18, Func. Count: 228, Neg. LLF: 109.50057453406724
Iteration: 19, Func. Count: 240, Neg. LLF: 109.5005042270378
Iteration: 20, Func. Count: 252, Neg. LLF: 109.50047221168705
Iteration: 21, Func. Count: 264, Neg. LLF: 109.50046584278917
Iteration: 22, Func. Count: 275, Neg. LLF: 109.5004659880057
Optimization terminated successfully (Exit mode 0)
Current function value: 109.50046584278917
Iterations: 22
Function evaluations: 275
Gradient evaluations: 22
Iteration: 1, Func. Count: 14, Neg. LLF: 135.38849843135458
Iteration: 2, Func. Count: 30, Neg. LLF: 166.61430644712706
Iteration: 3, Func. Count: 44, Neg. LLF: 140.06552794063316
Iteration: 4, Func. Count: 58, Neg. LLF: 1130017.9494112532
Iteration: 5, Func. Count: 72, Neg. LLF: 2129754.243264314
Iteration: 6, Func. Count: 86, Neg. LLF: 134.72334099838676
Iteration: 7, Func. Count: 100, Neg. LLF: 110.59758956827349
Iteration: 8, Func. Count: 114, Neg. LLF: 1883292.853699104
Iteration: 9, Func. Count: 129, Neg. LLF: 116.92874170719077
Iteration: 10, Func. Count: 143, Neg. LLF: 112.2468188541398
Iteration: 11, Func. Count: 157, Neg. LLF: 108.83849266027806
Iteration: 12, Func. Count: 170, Neg. LLF: 108.57804661043811
Iteration: 13, Func. Count: 183, Neg. LLF: 108.57295999670824
Iteration: 14, Func. Count: 196, Neg. LLF: 108.55949774909308
Iteration: 15, Func. Count: 209, Neg. LLF: 108.54954988686379
Iteration: 16, Func. Count: 222, Neg. LLF: 108.54907972444808
Iteration: 17, Func. Count: 235, Neg. LLF: 108.54875407811149
Iteration: 18, Func. Count: 248, Neg. LLF: 108.54855590863505
Iteration: 19, Func. Count: 261, Neg. LLF: 108.5485307792977
Iteration: 20, Func. Count: 274, Neg. LLF: 108.54852904486395
Iteration: 21, Func. Count: 286, Neg. LLF: 108.5485289263149
Optimization terminated successfully (Exit mode 0)
Current function value: 108.54852904486395
Iterations: 21
Function evaluations: 286
Gradient evaluations: 21
Iteration: 1, Func. Count: 15, Neg. LLF: 125.72777660394642
Iteration: 2, Func. Count: 31, Neg. LLF: 171.3704445115391
Iteration: 3, Func. Count: 46, Neg. LLF: 151.82024366982336
Iteration: 4, Func. Count: 61, Neg. LLF: 175.50527466206194
Iteration: 5, Func. Count: 78, Neg. LLF: 1929546.6729027492
Iteration: 6, Func. Count: 93, Neg. LLF: 207.6387926255549
Iteration: 7, Func. Count: 108, Neg. LLF: 129.20756221294522
Iteration: 8, Func. Count: 123, Neg. LLF: 115.28326424971604
Iteration: 9, Func. Count: 138, Neg. LLF: 124.06942535468816
Iteration: 10, Func. Count: 153, Neg. LLF: 110.21843763144743
Iteration: 11, Func. Count: 168, Neg. LLF: 118.46712229337277
Iteration: 12, Func. Count: 183, Neg. LLF: 108.54681554635908
Iteration: 13, Func. Count: 197, Neg. LLF: 108.82861114008664
Iteration: 14, Func. Count: 213, Neg. LLF: 108.47633079857376
Iteration: 15, Func. Count: 227, Neg. LLF: 108.46467856085346
Iteration: 16, Func. Count: 241, Neg. LLF: 108.46312222398134
Iteration: 17, Func. Count: 255, Neg. LLF: 108.46240375237954
Iteration: 18, Func. Count: 269, Neg. LLF: 108.4621468316327
Iteration: 19, Func. Count: 283, Neg. LLF: 108.46211577152643
Iteration: 20, Func. Count: 297, Neg. LLF: 108.46209905845733
Iteration: 21, Func. Count: 311, Neg. LLF: 108.4620941542794
Iteration: 22, Func. Count: 325, Neg. LLF: 108.46209350836374
Optimization terminated successfully (Exit mode 0)
Current function value: 108.46209350836374
Iterations: 22
Function evaluations: 325
Gradient evaluations: 22
Iteration: 1, Func. Count: 8, Neg. LLF: 122.6864408629839
Iteration: 2, Func. Count: 16, Neg. LLF: 130.17689987542752
Iteration: 3, Func. Count: 26, Neg. LLF: 124.37788087036644
Iteration: 4, Func. Count: 34, Neg. LLF: 117.65422882728093
Iteration: 5, Func. Count: 41, Neg. LLF: 172.10317137538212
Iteration: 6, Func. Count: 49, Neg. LLF: 153.1829070743582
Iteration: 7, Func. Count: 60, Neg. LLF: 119.60426471727973
Iteration: 8, Func. Count: 69, Neg. LLF: 116.85788333419345
Iteration: 9, Func. Count: 77, Neg. LLF: 116.53600674607813
Iteration: 10, Func. Count: 84, Neg. LLF: 116.4429152337132
Iteration: 11, Func. Count: 91, Neg. LLF: 116.3911530279323
Iteration: 12, Func. Count: 98, Neg. LLF: 116.3745888298232
Iteration: 13, Func. Count: 105, Neg. LLF: 116.36494936937908
Iteration: 14, Func. Count: 112, Neg. LLF: 116.36459831780043
Iteration: 15, Func. Count: 119, Neg. LLF: 116.36452751360329
Iteration: 16, Func. Count: 125, Neg. LLF: 116.36452750124442
Optimization terminated successfully (Exit mode 0)
Current function value: 116.36452751360329
Iterations: 16
Function evaluations: 125
Gradient evaluations: 16
Iteration: 1, Func. Count: 9, Neg. LLF: 127.23442614099926
Iteration: 2, Func. Count: 20, Neg. LLF: 128.1212075878401
Iteration: 3, Func. Count: 30, Neg. LLF: 119.19408251679562
Iteration: 4, Func. Count: 39, Neg. LLF: 119.26262836937914
Iteration: 5, Func. Count: 48, Neg. LLF: 117.6639425642667
Iteration: 6, Func. Count: 56, Neg. LLF: 117.60777486242687
Iteration: 7, Func. Count: 64, Neg. LLF: 117.58826180839971
Iteration: 8, Func. Count: 72, Neg. LLF: 117.48061968507983
Iteration: 9, Func. Count: 80, Neg. LLF: 117.45133883898983
Iteration: 10, Func. Count: 88, Neg. LLF: 117.44997695630906
Iteration: 11, Func. Count: 96, Neg. LLF: 117.44970572595315
Iteration: 12, Func. Count: 104, Neg. LLF: 117.44969559725854
Iteration: 13, Func. Count: 112, Neg. LLF: 117.44969023319015
Iteration: 14, Func. Count: 119, Neg. LLF: 117.44969023970057
Optimization terminated successfully (Exit mode 0)
Current function value: 117.44969023319015
Iterations: 14
Function evaluations: 119
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 127.33305655319978
Iteration: 2, Func. Count: 22, Neg. LLF: 128.38120338232977
Iteration: 3, Func. Count: 34, Neg. LLF: 124.60183090934123
Iteration: 4, Func. Count: 44, Neg. LLF: 118.45813466604865
Iteration: 5, Func. Count: 54, Neg. LLF: 117.65992020528084
Iteration: 6, Func. Count: 63, Neg. LLF: 117.62547362519685
Iteration: 7, Func. Count: 72, Neg. LLF: 117.60180356162306
Iteration: 8, Func. Count: 81, Neg. LLF: 117.54327291133599
Iteration: 9, Func. Count: 90, Neg. LLF: 117.47753028045977
Iteration: 10, Func. Count: 99, Neg. LLF: 117.45862921653799
Iteration: 11, Func. Count: 108, Neg. LLF: 117.45192723484377
Iteration: 12, Func. Count: 117, Neg. LLF: 117.45037000942021
Iteration: 13, Func. Count: 126, Neg. LLF: 117.4497050348072
Iteration: 14, Func. Count: 135, Neg. LLF: 117.44969299055535
Iteration: 15, Func. Count: 144, Neg. LLF: 117.44969001132615
Iteration: 16, Func. Count: 152, Neg. LLF: 117.44969002146146
Optimization terminated successfully (Exit mode 0)
Current function value: 117.44969001132615
Iterations: 16
Function evaluations: 152
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 127.28133302875509
Iteration: 2, Func. Count: 24, Neg. LLF: 124.64931510904883
Iteration: 3, Func. Count: 35, Neg. LLF: 134.97899037063405
Iteration: 4, Func. Count: 47, Neg. LLF: 119.0899841719506
Iteration: 5, Func. Count: 58, Neg. LLF: 117.68122947705267
Iteration: 6, Func. Count: 68, Neg. LLF: 117.592793210058
Iteration: 7, Func. Count: 78, Neg. LLF: 117.52373443401814
Iteration: 8, Func. Count: 88, Neg. LLF: 117.4956487169829
Iteration: 9, Func. Count: 98, Neg. LLF: 117.45638398336753
Iteration: 10, Func. Count: 108, Neg. LLF: 117.4516057043172
Iteration: 11, Func. Count: 118, Neg. LLF: 117.4488134318112
Iteration: 12, Func. Count: 128, Neg. LLF: 117.44874642487748
Iteration: 13, Func. Count: 138, Neg. LLF: 117.4487304804497
Iteration: 14, Func. Count: 148, Neg. LLF: 117.448726087841
Iteration: 15, Func. Count: 158, Neg. LLF: 117.44872488774574
Iteration: 16, Func. Count: 167, Neg. LLF: 117.44872488774422
Optimization terminated successfully (Exit mode 0)
Current function value: 117.44872488774574
Iterations: 16
Function evaluations: 167
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 127.23169060165965
Iteration: 2, Func. Count: 26, Neg. LLF: 124.42133660364354
Iteration: 3, Func. Count: 38, Neg. LLF: 136.53873677495045
Iteration: 4, Func. Count: 51, Neg. LLF: 118.58385062120422
Iteration: 5, Func. Count: 63, Neg. LLF: 117.87405691604245
Iteration: 6, Func. Count: 75, Neg. LLF: 117.56992512541113
Iteration: 7, Func. Count: 86, Neg. LLF: 117.52235146983988
Iteration: 8, Func. Count: 97, Neg. LLF: 117.48879257077598
Iteration: 9, Func. Count: 108, Neg. LLF: 117.4631437705525
Iteration: 10, Func. Count: 119, Neg. LLF: 117.4543184456363
Iteration: 11, Func. Count: 130, Neg. LLF: 117.44936672822432
Iteration: 12, Func. Count: 141, Neg. LLF: 117.44881665530349
Iteration: 13, Func. Count: 152, Neg. LLF: 117.44872944390501
Iteration: 14, Func. Count: 163, Neg. LLF: 117.44872658884908
Iteration: 15, Func. Count: 174, Neg. LLF: 117.44872496135672
Iteration: 16, Func. Count: 184, Neg. LLF: 117.4487249634559
Optimization terminated successfully (Exit mode 0)
Current function value: 117.44872496135672
Iterations: 16
Function evaluations: 184
Gradient evaluations: 16
Iteration: 1, Func. Count: 9, Neg. LLF: 122.65112251500166
Iteration: 2, Func. Count: 18, Neg. LLF: 129.86610806634775
Iteration: 3, Func. Count: 29, Neg. LLF: 124.30114995122096
Iteration: 4, Func. Count: 38, Neg. LLF: 117.67975302451326
Iteration: 5, Func. Count: 46, Neg. LLF: 173.08838499052928
Iteration: 6, Func. Count: 55, Neg. LLF: 166.1838186594538
Iteration: 7, Func. Count: 67, Neg. LLF: 121.41475813703815
Iteration: 8, Func. Count: 77, Neg. LLF: 116.68178524118133
Iteration: 9, Func. Count: 86, Neg. LLF: 116.50820614438416
Iteration: 10, Func. Count: 94, Neg. LLF: 116.37314095869799
Iteration: 11, Func. Count: 102, Neg. LLF: 116.35503251551765
Iteration: 12, Func. Count: 110, Neg. LLF: 116.3439369787666
Iteration: 13, Func. Count: 118, Neg. LLF: 116.341474221934
Iteration: 14, Func. Count: 126, Neg. LLF: 116.34094322758966
Iteration: 15, Func. Count: 134, Neg. LLF: 116.34093091346729
Iteration: 16, Func. Count: 141, Neg. LLF: 116.34093087035893
Optimization terminated successfully (Exit mode 0)
Current function value: 116.34093091346729
Iterations: 16
Function evaluations: 141
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 126.82535732047569
Iteration: 2, Func. Count: 22, Neg. LLF: 127.76932051629544
Iteration: 3, Func. Count: 33, Neg. LLF: 119.49717718307953
Iteration: 4, Func. Count: 43, Neg. LLF: 119.69612765720073
Iteration: 5, Func. Count: 53, Neg. LLF: 117.6313058262878
Iteration: 6, Func. Count: 62, Neg. LLF: 117.60524181426054
Iteration: 7, Func. Count: 71, Neg. LLF: 117.5804025534673
Iteration: 8, Func. Count: 80, Neg. LLF: 117.45738851044703
Iteration: 9, Func. Count: 89, Neg. LLF: 117.45103906942623
Iteration: 10, Func. Count: 98, Neg. LLF: 117.449862392119
Iteration: 11, Func. Count: 107, Neg. LLF: 117.44970989420304
Iteration: 12, Func. Count: 116, Neg. LLF: 117.44969647519983
Iteration: 13, Func. Count: 125, Neg. LLF: 117.44969025302781
Iteration: 14, Func. Count: 133, Neg. LLF: 117.44969025952739
Optimization terminated successfully (Exit mode 0)
Current function value: 117.44969025302781
Iterations: 14
Function evaluations: 133
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 126.96780049936174
Iteration: 2, Func. Count: 24, Neg. LLF: 128.19183845433997
Iteration: 3, Func. Count: 37, Neg. LLF: 124.12802128180422
Iteration: 4, Func. Count: 48, Neg. LLF: 119.06366097687196
Iteration: 5, Func. Count: 59, Neg. LLF: 117.65311169245862
Iteration: 6, Func. Count: 69, Neg. LLF: 117.62689603012285
Iteration: 7, Func. Count: 79, Neg. LLF: 117.60176195739986
Iteration: 8, Func. Count: 89, Neg. LLF: 117.55068387637563
Iteration: 9, Func. Count: 99, Neg. LLF: 117.48520412302945
Iteration: 10, Func. Count: 109, Neg. LLF: 117.46133858210158
Iteration: 11, Func. Count: 119, Neg. LLF: 117.45180112710423
Iteration: 12, Func. Count: 129, Neg. LLF: 117.45043800984254
Iteration: 13, Func. Count: 139, Neg. LLF: 117.44973805481045
Iteration: 14, Func. Count: 149, Neg. LLF: 117.44969527374515
Iteration: 15, Func. Count: 159, Neg. LLF: 117.44969044473946
Iteration: 16, Func. Count: 168, Neg. LLF: 117.44969045487005
Optimization terminated successfully (Exit mode 0)
Current function value: 117.44969044473946
Iterations: 16
Function evaluations: 168
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 126.97983160720402
Iteration: 2, Func. Count: 26, Neg. LLF: 124.3766043452213
Iteration: 3, Func. Count: 38, Neg. LLF: 137.74517898538565
Iteration: 4, Func. Count: 51, Neg. LLF: 118.5056860756557
Iteration: 5, Func. Count: 63, Neg. LLF: 117.88200070337508
Iteration: 6, Func. Count: 75, Neg. LLF: 117.57898333032784
Iteration: 7, Func. Count: 86, Neg. LLF: 117.52018791689349
Iteration: 8, Func. Count: 97, Neg. LLF: 117.48567612007668
Iteration: 9, Func. Count: 108, Neg. LLF: 117.45855642276831
Iteration: 10, Func. Count: 119, Neg. LLF: 117.45194606607474
Iteration: 11, Func. Count: 130, Neg. LLF: 117.44884527275661
Iteration: 12, Func. Count: 141, Neg. LLF: 117.44875099562357
Iteration: 13, Func. Count: 152, Neg. LLF: 117.44873184994195
Iteration: 14, Func. Count: 163, Neg. LLF: 117.44872671886128
Iteration: 15, Func. Count: 174, Neg. LLF: 117.44872503760756
Iteration: 16, Func. Count: 184, Neg. LLF: 117.44872503759632
Optimization terminated successfully (Exit mode 0)
Current function value: 117.44872503760756
Iterations: 16
Function evaluations: 184
Gradient evaluations: 16
Iteration: 1, Func. Count: 13, Neg. LLF: 126.94203613923676
Iteration: 2, Func. Count: 28, Neg. LLF: 122.93438641933976
Iteration: 3, Func. Count: 41, Neg. LLF: 128.6993736942974
Iteration: 4, Func. Count: 56, Neg. LLF: 126.95666466511096
Iteration: 5, Func. Count: 70, Neg. LLF: 117.58892174947185
Iteration: 6, Func. Count: 82, Neg. LLF: 117.56741374720087
Iteration: 7, Func. Count: 94, Neg. LLF: 117.53822043878465
Iteration: 8, Func. Count: 106, Neg. LLF: 117.49092746909035
Iteration: 9, Func. Count: 118, Neg. LLF: 117.47341655077153
Iteration: 10, Func. Count: 130, Neg. LLF: 117.45836426424862
Iteration: 11, Func. Count: 142, Neg. LLF: 117.44939220630339
Iteration: 12, Func. Count: 154, Neg. LLF: 117.44879098590668
Iteration: 13, Func. Count: 166, Neg. LLF: 117.44874141449479
Iteration: 14, Func. Count: 178, Neg. LLF: 117.44872877726439
Iteration: 15, Func. Count: 190, Neg. LLF: 117.44872504037629
Iteration: 16, Func. Count: 201, Neg. LLF: 117.44872504244857
Optimization terminated successfully (Exit mode 0)
Current function value: 117.44872504037629
Iterations: 16
Function evaluations: 201
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 122.67168818162223
Iteration: 2, Func. Count: 20, Neg. LLF: 130.12758215279462
Iteration: 3, Func. Count: 32, Neg. LLF: 125.00432584241365
Iteration: 4, Func. Count: 42, Neg. LLF: 118.54629187390431
Iteration: 5, Func. Count: 52, Neg. LLF: 198.77882333627954
Iteration: 6, Func. Count: 62, Neg. LLF: 155.35720859453733
Iteration: 7, Func. Count: 72, Neg. LLF: 132.09700591409865
Iteration: 8, Func. Count: 82, Neg. LLF: 116.787067521985
Iteration: 9, Func. Count: 92, Neg. LLF: 116.33905875348383
Iteration: 10, Func. Count: 102, Neg. LLF: 116.3168444526703
Iteration: 11, Func. Count: 112, Neg. LLF: 116.22659996143821
Iteration: 12, Func. Count: 121, Neg. LLF: 116.19782029235114
Iteration: 13, Func. Count: 130, Neg. LLF: 116.19558177969185
Iteration: 14, Func. Count: 139, Neg. LLF: 116.19528454673232
Iteration: 15, Func. Count: 148, Neg. LLF: 116.19527934343265
Iteration: 16, Func. Count: 157, Neg. LLF: 116.19527883397909
Optimization terminated successfully (Exit mode 0)
Current function value: 116.19527883397909
Iterations: 16
Function evaluations: 157
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 125.70793732074898
Iteration: 2, Func. Count: 25, Neg. LLF: 125.18272063746596
Iteration: 3, Func. Count: 36, Neg. LLF: 118.57178332056881
Iteration: 4, Func. Count: 47, Neg. LLF: 117.71024110556186
Iteration: 5, Func. Count: 58, Neg. LLF: 119.53804991630642
Iteration: 6, Func. Count: 69, Neg. LLF: 117.55791477217221
Iteration: 7, Func. Count: 79, Neg. LLF: 117.5154593470764
Iteration: 8, Func. Count: 89, Neg. LLF: 117.41069834883231
Iteration: 9, Func. Count: 99, Neg. LLF: 117.39144411064338
Iteration: 10, Func. Count: 109, Neg. LLF: 117.38594041982763
Iteration: 11, Func. Count: 119, Neg. LLF: 117.38567903217498
Iteration: 12, Func. Count: 129, Neg. LLF: 117.38565275806378
Iteration: 13, Func. Count: 139, Neg. LLF: 117.38563958509177
Iteration: 14, Func. Count: 149, Neg. LLF: 117.38563552496618
Iteration: 15, Func. Count: 158, Neg. LLF: 117.38563553066182
Optimization terminated successfully (Exit mode 0)
Current function value: 117.38563552496618
Iterations: 15
Function evaluations: 158
Gradient evaluations: 15
Iteration: 1, Func. Count: 12, Neg. LLF: 127.0403490846926
Iteration: 2, Func. Count: 26, Neg. LLF: 128.06811952120665
Iteration: 3, Func. Count: 40, Neg. LLF: 123.57198848130065
Iteration: 4, Func. Count: 52, Neg. LLF: 119.18272170669692
Iteration: 5, Func. Count: 64, Neg. LLF: 117.59237003877175
Iteration: 6, Func. Count: 75, Neg. LLF: 117.56234086862725
Iteration: 7, Func. Count: 86, Neg. LLF: 117.5135204173059
Iteration: 8, Func. Count: 97, Neg. LLF: 117.47445287240247
Iteration: 9, Func. Count: 108, Neg. LLF: 117.43597505588517
Iteration: 10, Func. Count: 119, Neg. LLF: 117.41114373111249
Iteration: 11, Func. Count: 130, Neg. LLF: 117.38789565215531
Iteration: 12, Func. Count: 141, Neg. LLF: 117.38612328969228
Iteration: 13, Func. Count: 152, Neg. LLF: 117.38568239412369
Iteration: 14, Func. Count: 163, Neg. LLF: 117.38563536648097
Iteration: 15, Func. Count: 173, Neg. LLF: 117.3856353799225
Optimization terminated successfully (Exit mode 0)
Current function value: 117.38563536648097
Iterations: 15
Function evaluations: 173
Gradient evaluations: 15
Iteration: 1, Func. Count: 13, Neg. LLF: 127.66589692478742
Iteration: 2, Func. Count: 28, Neg. LLF: 163.84282364514488
Iteration: 3, Func. Count: 42, Neg. LLF: 116.70580868589406
Iteration: 4, Func. Count: 54, Neg. LLF: 116.64596366075997
Iteration: 5, Func. Count: 66, Neg. LLF: 116.57666834946033
Iteration: 6, Func. Count: 78, Neg. LLF: 118.47905922882131
Iteration: 7, Func. Count: 91, Neg. LLF: 116.53731717285571
Iteration: 8, Func. Count: 103, Neg. LLF: 116.50566502469553
Iteration: 9, Func. Count: 115, Neg. LLF: 116.4868377755131
Iteration: 10, Func. Count: 127, Neg. LLF: 116.48317960575797
Iteration: 11, Func. Count: 139, Neg. LLF: 116.4820460890435
Iteration: 12, Func. Count: 151, Neg. LLF: 116.48188473377701
Iteration: 13, Func. Count: 163, Neg. LLF: 116.48183492892285
Iteration: 14, Func. Count: 175, Neg. LLF: 116.48182980384625
Iteration: 15, Func. Count: 186, Neg. LLF: 116.48182960992263
Optimization terminated successfully (Exit mode 0)
Current function value: 116.48182980384625
Iterations: 15
Function evaluations: 186
Gradient evaluations: 15
Iteration: 1, Func. Count: 14, Neg. LLF: 126.95967383398049
Iteration: 2, Func. Count: 30, Neg. LLF: 124.1047215839661
Iteration: 3, Func. Count: 46, Neg. LLF: 123.52007945604105
Iteration: 4, Func. Count: 60, Neg. LLF: 126.01436656801542
Iteration: 5, Func. Count: 75, Neg. LLF: 117.5677581191808
Iteration: 6, Func. Count: 88, Neg. LLF: 117.52919634893738
Iteration: 7, Func. Count: 101, Neg. LLF: 117.4612152360825
Iteration: 8, Func. Count: 114, Neg. LLF: 117.3884459862742
Iteration: 9, Func. Count: 127, Neg. LLF: 117.38557090286209
Iteration: 10, Func. Count: 140, Neg. LLF: 117.3837854382566
Iteration: 11, Func. Count: 153, Neg. LLF: 117.38353471560885
Iteration: 12, Func. Count: 166, Neg. LLF: 117.3833762518599
Iteration: 13, Func. Count: 179, Neg. LLF: 117.38337097754406
Iteration: 14, Func. Count: 192, Neg. LLF: 117.38336788834289
Iteration: 15, Func. Count: 204, Neg. LLF: 117.38336788833254
Optimization terminated successfully (Exit mode 0)
Current function value: 117.38336788834289
Iterations: 15
Function evaluations: 204
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 122.65537086241225
Iteration: 2, Func. Count: 22, Neg. LLF: 126.47326800782811
Iteration: 3, Func. Count: 35, Neg. LLF: 126.01418338034343
Iteration: 4, Func. Count: 46, Neg. LLF: 118.84378753556955
Iteration: 5, Func. Count: 57, Neg. LLF: 552.0473509798545
Iteration: 6, Func. Count: 68, Neg. LLF: 250.26914835286274
Iteration: 7, Func. Count: 79, Neg. LLF: 118.76757755196404
Iteration: 8, Func. Count: 90, Neg. LLF: 211.65487115681017
Iteration: 9, Func. Count: 102, Neg. LLF: 116.89941398161679
Iteration: 10, Func. Count: 113, Neg. LLF: 116.23047870467265
Iteration: 11, Func. Count: 123, Neg. LLF: 116.19437375824509
Iteration: 12, Func. Count: 133, Neg. LLF: 116.20858507998906
Iteration: 13, Func. Count: 144, Neg. LLF: 116.19136300339336
Iteration: 14, Func. Count: 154, Neg. LLF: 116.19111502313501
Iteration: 15, Func. Count: 164, Neg. LLF: 116.1911017188194
Iteration: 16, Func. Count: 174, Neg. LLF: 116.19110011334567
Iteration: 17, Func. Count: 183, Neg. LLF: 116.19110010748959
Optimization terminated successfully (Exit mode 0)
Current function value: 116.19110011334567
Iterations: 17
Function evaluations: 183
Gradient evaluations: 17
Iteration: 1, Func. Count: 12, Neg. LLF: 126.48842077040301
Iteration: 2, Func. Count: 27, Neg. LLF: 126.86313373709892
Iteration: 3, Func. Count: 39, Neg. LLF: 118.98995480217596
Iteration: 4, Func. Count: 52, Neg. LLF: 118.0757165358635
Iteration: 5, Func. Count: 64, Neg. LLF: 117.68161560341355
Iteration: 6, Func. Count: 76, Neg. LLF: 119.43900193041175
Iteration: 7, Func. Count: 88, Neg. LLF: 117.45811498996311
Iteration: 8, Func. Count: 99, Neg. LLF: 117.4596450991074
Iteration: 9, Func. Count: 111, Neg. LLF: 117.12772227248503
Iteration: 10, Func. Count: 122, Neg. LLF: 117.10901472714386
Iteration: 11, Func. Count: 134, Neg. LLF: 116.93548725820726
Iteration: 12, Func. Count: 145, Neg. LLF: 116.87754590310075
Iteration: 13, Func. Count: 156, Neg. LLF: 116.85544331014638
Iteration: 14, Func. Count: 167, Neg. LLF: 116.84953321878317
Iteration: 15, Func. Count: 178, Neg. LLF: 116.84898971508177
Iteration: 16, Func. Count: 189, Neg. LLF: 116.84885966575777
Iteration: 17, Func. Count: 200, Neg. LLF: 116.84885522876225
Iteration: 18, Func. Count: 210, Neg. LLF: 116.8488552040499
Optimization terminated successfully (Exit mode 0)
Current function value: 116.84885522876225
Iterations: 18
Function evaluations: 210
Gradient evaluations: 18
Iteration: 1, Func. Count: 13, Neg. LLF: 126.61200007831555
Iteration: 2, Func. Count: 29, Neg. LLF: 125.71346007623393
Iteration: 3, Func. Count: 42, Neg. LLF: 119.11432412790941
Iteration: 4, Func. Count: 55, Neg. LLF: 117.72320453639006
Iteration: 5, Func. Count: 67, Neg. LLF: 117.6292155951429
Iteration: 6, Func. Count: 79, Neg. LLF: 117.60502388037744
Iteration: 7, Func. Count: 91, Neg. LLF: 118.27397963197652
Iteration: 8, Func. Count: 104, Neg. LLF: 117.53056621175746
Iteration: 9, Func. Count: 116, Neg. LLF: 117.52120064427012
Iteration: 10, Func. Count: 128, Neg. LLF: 117.47224566285935
Iteration: 11, Func. Count: 140, Neg. LLF: 117.38428194836608
Iteration: 12, Func. Count: 152, Neg. LLF: 117.2760854075951
Iteration: 13, Func. Count: 164, Neg. LLF: 117.27333151721363
Iteration: 14, Func. Count: 176, Neg. LLF: 117.26910398292279
Iteration: 15, Func. Count: 188, Neg. LLF: 117.26893519081578
Iteration: 16, Func. Count: 200, Neg. LLF: 117.26892170998563
Iteration: 17, Func. Count: 212, Neg. LLF: 117.26891891356884
Iteration: 18, Func. Count: 224, Neg. LLF: 117.26891847178595
Optimization terminated successfully (Exit mode 0)
Current function value: 117.26891847178595
Iterations: 18
Function evaluations: 224
Gradient evaluations: 18
Iteration: 1, Func. Count: 14, Neg. LLF: 125.64695643901237
Iteration: 2, Func. Count: 30, Neg. LLF: 377.5419181412822
Iteration: 3, Func. Count: 45, Neg. LLF: 117.03291641731806
Iteration: 4, Func. Count: 58, Neg. LLF: 116.98790987282906
Iteration: 5, Func. Count: 71, Neg. LLF: 116.55869028619682
Iteration: 6, Func. Count: 84, Neg. LLF: 143.33538238040586
Iteration: 7, Func. Count: 98, Neg. LLF: 118.06852247172579
Iteration: 8, Func. Count: 112, Neg. LLF: 116.20131375925291
Iteration: 9, Func. Count: 126, Neg. LLF: 115.2606140309891
Iteration: 10, Func. Count: 139, Neg. LLF: 3392656.7546382817
Iteration: 11, Func. Count: 154, Neg. LLF: 115.24455161409087
Iteration: 12, Func. Count: 167, Neg. LLF: 115.24437979863103
Iteration: 13, Func. Count: 180, Neg. LLF: 115.24437802129395
Iteration: 14, Func. Count: 192, Neg. LLF: 115.24437801179866
Optimization terminated successfully (Exit mode 0)
Current function value: 115.24437802129395
Iterations: 15
Function evaluations: 192
Gradient evaluations: 14
Iteration: 1, Func. Count: 15, Neg. LLF: 150.1142231263361
Iteration: 2, Func. Count: 31, Neg. LLF: 132.90745286534585
Iteration: 3, Func. Count: 47, Neg. LLF: 116.84082079332703
Iteration: 4, Func. Count: 61, Neg. LLF: 116.3078916258692
Iteration: 5, Func. Count: 75, Neg. LLF: 122.93803889513164
Iteration: 6, Func. Count: 90, Neg. LLF: 123.80597585635438
Iteration: 7, Func. Count: 105, Neg. LLF: 117.26212213323403
Iteration: 8, Func. Count: 120, Neg. LLF: 116.13365134606639
Iteration: 9, Func. Count: 135, Neg. LLF: 116.11593625405234
Iteration: 10, Func. Count: 150, Neg. LLF: 116.10826288810381
Iteration: 11, Func. Count: 164, Neg. LLF: 116.10466246863477
Iteration: 12, Func. Count: 178, Neg. LLF: 116.1029262731838
Iteration: 13, Func. Count: 192, Neg. LLF: 116.10286505509895
Iteration: 14, Func. Count: 206, Neg. LLF: 116.1028645274698
Optimization terminated successfully (Exit mode 0)
Current function value: 116.1028645274698
Iterations: 14
Function evaluations: 206
Gradient evaluations: 14
Iteration: 1, Func. Count: 12, Neg. LLF: 119.87733121846247
Iteration: 2, Func. Count: 24, Neg. LLF: 136.11248385412813
Iteration: 3, Func. Count: 36, Neg. LLF: 126.93040522088901
Iteration: 4, Func. Count: 48, Neg. LLF: 1987780.1315928912
Iteration: 5, Func. Count: 60, Neg. LLF: 247.84595174061099
Iteration: 6, Func. Count: 72, Neg. LLF: 760568.707326781
Iteration: 7, Func. Count: 84, Neg. LLF: 300.5202960855239
Iteration: 8, Func. Count: 96, Neg. LLF: 1065444.5240745412
Iteration: 9, Func. Count: 108, Neg. LLF: 113.6414693871288
Iteration: 10, Func. Count: 120, Neg. LLF: 111.20973040165916
Iteration: 11, Func. Count: 131, Neg. LLF: 114.11875328234788
Iteration: 12, Func. Count: 143, Neg. LLF: 115.12200061840146
Iteration: 13, Func. Count: 156, Neg. LLF: 111.14256440363945
Iteration: 14, Func. Count: 168, Neg. LLF: 111.07208264164788
Iteration: 15, Func. Count: 180, Neg. LLF: 111.02941821721235
Iteration: 16, Func. Count: 191, Neg. LLF: 111.02830404818384
Iteration: 17, Func. Count: 202, Neg. LLF: 111.02734076310793
Iteration: 18, Func. Count: 213, Neg. LLF: 111.02716996559957
Iteration: 19, Func. Count: 224, Neg. LLF: 111.02715639718677
Iteration: 20, Func. Count: 234, Neg. LLF: 111.02715639103548
Optimization terminated successfully (Exit mode 0)
Current function value: 111.02715639718677
Iterations: 20
Function evaluations: 234
Gradient evaluations: 20
Iteration: 1, Func. Count: 13, Neg. LLF: 126.64305361037137
Iteration: 2, Func. Count: 29, Neg. LLF: 115.52246672441156
Iteration: 3, Func. Count: 41, Neg. LLF: 114.32377748347513
Iteration: 4, Func. Count: 54, Neg. LLF: 156.23528885173468
Iteration: 5, Func. Count: 68, Neg. LLF: 114.08847561072496
Iteration: 6, Func. Count: 81, Neg. LLF: 146.03681844671453
Iteration: 7, Func. Count: 94, Neg. LLF: 145.2318059869088
Iteration: 8, Func. Count: 107, Neg. LLF: 140.74452214784006
Iteration: 9, Func. Count: 120, Neg. LLF: 110.08211323443265
Iteration: 10, Func. Count: 133, Neg. LLF: 109.85524148076694
Iteration: 11, Func. Count: 146, Neg. LLF: 109.53022976676698
Iteration: 12, Func. Count: 158, Neg. LLF: 109.52401908247128
Iteration: 13, Func. Count: 170, Neg. LLF: 109.5162472151809
Iteration: 14, Func. Count: 182, Neg. LLF: 109.51132297143427
Iteration: 15, Func. Count: 194, Neg. LLF: 109.5087244134779
Iteration: 16, Func. Count: 206, Neg. LLF: 109.50255725507199
Iteration: 17, Func. Count: 218, Neg. LLF: 109.50078444208788
Iteration: 18, Func. Count: 230, Neg. LLF: 109.50047134345537
Iteration: 19, Func. Count: 242, Neg. LLF: 109.50046551804704
Iteration: 20, Func. Count: 253, Neg. LLF: 109.50046549074878
Optimization terminated successfully (Exit mode 0)
Current function value: 109.50046551804704
Iterations: 20
Function evaluations: 253
Gradient evaluations: 20
Iteration: 1, Func. Count: 14, Neg. LLF: 123.14024619979664
Iteration: 2, Func. Count: 30, Neg. LLF: 214.7686623087449
Iteration: 3, Func. Count: 44, Neg. LLF: 128.0171817995891
Iteration: 4, Func. Count: 58, Neg. LLF: 2282568.3730557873
Iteration: 5, Func. Count: 72, Neg. LLF: 165.2669713326887
Iteration: 6, Func. Count: 86, Neg. LLF: 115.62786722029689
Iteration: 7, Func. Count: 100, Neg. LLF: 2000040.9857852955
Iteration: 8, Func. Count: 114, Neg. LLF: 110.67322076593338
Iteration: 9, Func. Count: 127, Neg. LLF: 110.14573680135855
Iteration: 10, Func. Count: 140, Neg. LLF: 111.90558313895161
Iteration: 11, Func. Count: 155, Neg. LLF: 109.81623257393893
Iteration: 12, Func. Count: 168, Neg. LLF: 109.56721542787012
Iteration: 13, Func. Count: 181, Neg. LLF: 109.52354131025744
Iteration: 14, Func. Count: 194, Neg. LLF: 109.50866940000682
Iteration: 15, Func. Count: 207, Neg. LLF: 109.50423409035717
Iteration: 16, Func. Count: 220, Neg. LLF: 109.50200100990092
Iteration: 17, Func. Count: 233, Neg. LLF: 109.50117203339373
Iteration: 18, Func. Count: 246, Neg. LLF: 109.50094679660734
Iteration: 19, Func. Count: 259, Neg. LLF: 109.50072922846785
Iteration: 20, Func. Count: 272, Neg. LLF: 109.50054358701489
Iteration: 21, Func. Count: 285, Neg. LLF: 109.50047424322179
Iteration: 22, Func. Count: 298, Neg. LLF: 109.50046583797759
Iteration: 23, Func. Count: 310, Neg. LLF: 109.50046598332693
Optimization terminated successfully (Exit mode 0)
Current function value: 109.50046583797759
Iterations: 23
Function evaluations: 310
Gradient evaluations: 23
Iteration: 1, Func. Count: 15, Neg. LLF: 119.64940111987397
Iteration: 2, Func. Count: 30, Neg. LLF: 453.66817932820493
Iteration: 3, Func. Count: 45, Neg. LLF: 147.4257843106164
Iteration: 4, Func. Count: 60, Neg. LLF: 174.73076380843207
Iteration: 5, Func. Count: 77, Neg. LLF: 2057710.7425055013
Iteration: 6, Func. Count: 92, Neg. LLF: 22424.2059340211
Iteration: 7, Func. Count: 107, Neg. LLF: 133.4686797368856
Iteration: 8, Func. Count: 122, Neg. LLF: 111.77581667720347
Iteration: 9, Func. Count: 137, Neg. LLF: 112.71434905200277
Iteration: 10, Func. Count: 152, Neg. LLF: 108.9297720909961
Iteration: 11, Func. Count: 166, Neg. LLF: 110.11812978737319
Iteration: 12, Func. Count: 182, Neg. LLF: 108.95180436975276
Iteration: 13, Func. Count: 197, Neg. LLF: 108.9672838297555
Iteration: 14, Func. Count: 212, Neg. LLF: 108.57106831016138
Iteration: 15, Func. Count: 226, Neg. LLF: 108.55594091745792
Iteration: 16, Func. Count: 240, Neg. LLF: 108.55219977036313
Iteration: 17, Func. Count: 254, Neg. LLF: 108.55115939004132
Iteration: 18, Func. Count: 268, Neg. LLF: 108.54973531910095
Iteration: 19, Func. Count: 282, Neg. LLF: 108.54915827085998
Iteration: 20, Func. Count: 296, Neg. LLF: 108.54879536508801
Iteration: 21, Func. Count: 310, Neg. LLF: 108.5485629587372
Iteration: 22, Func. Count: 324, Neg. LLF: 108.54853152133634
Iteration: 23, Func. Count: 338, Neg. LLF: 108.5485289177108
Iteration: 24, Func. Count: 351, Neg. LLF: 108.54852879915505
Optimization terminated successfully (Exit mode 0)
Current function value: 108.5485289177108
Iterations: 24
Function evaluations: 351
Gradient evaluations: 24
Iteration: 1, Func. Count: 16, Neg. LLF: 127.75569202419237
Iteration: 2, Func. Count: 33, Neg. LLF: 164.82851034263638
Iteration: 3, Func. Count: 49, Neg. LLF: 155.3468223468388
Iteration: 4, Func. Count: 65, Neg. LLF: 177.08865160191823
Iteration: 5, Func. Count: 83, Neg. LLF: 1961715.3034171488
Iteration: 6, Func. Count: 99, Neg. LLF: 641.8095884790556
Iteration: 7, Func. Count: 115, Neg. LLF: 127.49802206317952
Iteration: 8, Func. Count: 131, Neg. LLF: 115.03172486959225
Iteration: 9, Func. Count: 147, Neg. LLF: 123.28272911754217
Iteration: 10, Func. Count: 163, Neg. LLF: 109.64739852633105
Iteration: 11, Func. Count: 179, Neg. LLF: 120.00819053212783
Iteration: 12, Func. Count: 195, Neg. LLF: 108.56835039103598
Iteration: 13, Func. Count: 210, Neg. LLF: 109.36533222426529
Iteration: 14, Func. Count: 227, Neg. LLF: 108.47634081384459
Iteration: 15, Func. Count: 242, Neg. LLF: 108.46620866204961
Iteration: 16, Func. Count: 257, Neg. LLF: 108.46357213894558
Iteration: 17, Func. Count: 272, Neg. LLF: 108.46248345304244
Iteration: 18, Func. Count: 287, Neg. LLF: 108.46214153369681
Iteration: 19, Func. Count: 302, Neg. LLF: 108.46211302982243
Iteration: 20, Func. Count: 317, Neg. LLF: 108.46210140882349
Iteration: 21, Func. Count: 332, Neg. LLF: 108.46209456218692
Iteration: 22, Func. Count: 347, Neg. LLF: 108.46209354809349
Iteration: 23, Func. Count: 361, Neg. LLF: 108.46209342250711
Optimization terminated successfully (Exit mode 0)
Current function value: 108.46209354809349
Iterations: 23
Function evaluations: 361
Gradient evaluations: 23
Iteration: 1, Func. Count: 11, Neg. LLF: 118.61191331751546
Iteration: 2, Func. Count: 22, Neg. LLF: 119.2075783223514
Iteration: 3, Func. Count: 33, Neg. LLF: 141.08671952036735
Iteration: 4, Func. Count: 44, Neg. LLF: 4263.318344063945
Iteration: 5, Func. Count: 55, Neg. LLF: 1284.2115190364407
Iteration: 6, Func. Count: 66, Neg. LLF: 964.2689695173904
Iteration: 7, Func. Count: 77, Neg. LLF: 577.0835436987386
Iteration: 8, Func. Count: 88, Neg. LLF: 204.2940623004441
Iteration: 9, Func. Count: 99, Neg. LLF: 119.89756426844235
Iteration: 10, Func. Count: 110, Neg. LLF: 137.73533773383184
Iteration: 11, Func. Count: 121, Neg. LLF: 117.22101877103839
Iteration: 12, Func. Count: 132, Neg. LLF: 110.48552540060932
Iteration: 13, Func. Count: 142, Neg. LLF: 110.4585755580938
Iteration: 14, Func. Count: 152, Neg. LLF: 110.45068118821665
Iteration: 15, Func. Count: 162, Neg. LLF: 110.44923094855051
Iteration: 16, Func. Count: 172, Neg. LLF: 110.44857855395686
Iteration: 17, Func. Count: 182, Neg. LLF: 110.44846789767708
Iteration: 18, Func. Count: 192, Neg. LLF: 110.4484655442234
Iteration: 19, Func. Count: 201, Neg. LLF: 110.44846551359468
Optimization terminated successfully (Exit mode 0)
Current function value: 110.4484655442234
Iterations: 19
Function evaluations: 201
Gradient evaluations: 19
Iteration: 1, Func. Count: 5, Neg. LLF: 122.06334995947235
Iteration: 2, Func. Count: 10, Neg. LLF: 117.48753085172878
Iteration: 3, Func. Count: 14, Neg. LLF: 116.70250278694895
Iteration: 4, Func. Count: 18, Neg. LLF: 116.69282920911611
Iteration: 5, Func. Count: 22, Neg. LLF: 116.68967569541228
Iteration: 6, Func. Count: 26, Neg. LLF: 116.6896127621478
Iteration: 7, Func. Count: 30, Neg. LLF: 116.68960600452247
Iteration: 8, Func. Count: 33, Neg. LLF: 116.68960606251383
Optimization terminated successfully (Exit mode 0)
Current function value: 116.68960600452247
Iterations: 8
Function evaluations: 33
Gradient evaluations: 8
Iteration: 1, Func. Count: 6, Neg. LLF: 5402313.633682685
Iteration: 2, Func. Count: 14, Neg. LLF: 116.1169521389649
Iteration: 3, Func. Count: 20, Neg. LLF: 115.25067819528596
Iteration: 4, Func. Count: 25, Neg. LLF: 115.25036117402274
Iteration: 5, Func. Count: 31, Neg. LLF: 115.24878163464655
Iteration: 6, Func. Count: 36, Neg. LLF: 115.24822679506748
Optimization terminated successfully (Exit mode 0)
Current function value: 115.24822724679458
Iterations: 6
Function evaluations: 36
Gradient evaluations: 6
Iteration: 1, Func. Count: 7, Neg. LLF: 140.3502139270421
Iteration: 2, Func. Count: 15, Neg. LLF: 116.16915262331129
Iteration: 3, Func. Count: 22, Neg. LLF: 115.37208760328858
Iteration: 4, Func. Count: 28, Neg. LLF: 115.30077419928107
Iteration: 5, Func. Count: 34, Neg. LLF: 115.24878157912504
Iteration: 6, Func. Count: 40, Neg. LLF: 115.24827270384787
Iteration: 7, Func. Count: 46, Neg. LLF: 115.24821273877703
Iteration: 8, Func. Count: 52, Neg. LLF: 115.24821813555491
Iteration: 9, Func. Count: 58, Neg. LLF: 115.2481772934594
Iteration: 10, Func. Count: 66, Neg. LLF: 115.24818990837144
Optimization terminated successfully (Exit mode 0)
Current function value: 115.24820551689423
Iterations: 10
Function evaluations: 76
Gradient evaluations: 10
Iteration: 1, Func. Count: 8, Neg. LLF: 5536531.840525654
Iteration: 2, Func. Count: 17, Neg. LLF: 112.88889948625362
Iteration: 3, Func. Count: 24, Neg. LLF: 112.72953448743314
Iteration: 4, Func. Count: 31, Neg. LLF: 113.28926478694852
Iteration: 5, Func. Count: 39, Neg. LLF: 121.0973693261166
Iteration: 6, Func. Count: 47, Neg. LLF: 112.21721978769828
Iteration: 7, Func. Count: 54, Neg. LLF: 112.21189037359845
Iteration: 8, Func. Count: 61, Neg. LLF: 112.21137376930776
Iteration: 9, Func. Count: 68, Neg. LLF: 112.21123807409604
Iteration: 10, Func. Count: 75, Neg. LLF: 112.21117551549388
Iteration: 11, Func. Count: 82, Neg. LLF: 112.21116565683658
Optimization terminated successfully (Exit mode 0)
Current function value: 112.21117550650551
Iterations: 11
Function evaluations: 92
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 22431941.25753635
Iteration: 2, Func. Count: 20, Neg. LLF: 114.15790193437067
Iteration: 3, Func. Count: 28, Neg. LLF: 120.74963760194755
Iteration: 4, Func. Count: 37, Neg. LLF: 119.46551779131043
Iteration: 5, Func. Count: 46, Neg. LLF: 112.28470139608895
Iteration: 6, Func. Count: 54, Neg. LLF: 112.33357529624584
Iteration: 7, Func. Count: 63, Neg. LLF: 113.02850372105078
Iteration: 8, Func. Count: 72, Neg. LLF: 112.21129485576184
Iteration: 9, Func. Count: 80, Neg. LLF: 112.2111832781762
Iteration: 10, Func. Count: 88, Neg. LLF: 112.21118200786903
Iteration: 11, Func. Count: 95, Neg. LLF: 112.21118193999837
Optimization terminated successfully (Exit mode 0)
Current function value: 112.21118200786903
Iterations: 11
Function evaluations: 95
Gradient evaluations: 11
Iteration: 1, Func. Count: 6, Neg. LLF: 128.2872605636696
Iteration: 2, Func. Count: 12, Neg. LLF: 151.4669542926072
Iteration: 3, Func. Count: 18, Neg. LLF: 117.11395746465335
Iteration: 4, Func. Count: 23, Neg. LLF: 116.93504236244408
Iteration: 5, Func. Count: 28, Neg. LLF: 116.7571460348659
Iteration: 6, Func. Count: 33, Neg. LLF: 116.69525347735508
Iteration: 7, Func. Count: 38, Neg. LLF: 116.68972785787095
Iteration: 8, Func. Count: 43, Neg. LLF: 116.68960648859695
Iteration: 9, Func. Count: 47, Neg. LLF: 116.68960652922789
Optimization terminated successfully (Exit mode 0)
Current function value: 116.68960648859695
Iterations: 9
Function evaluations: 47
Gradient evaluations: 9
Iteration: 1, Func. Count: 7, Neg. LLF: 20231865.00468432
Iteration: 2, Func. Count: 15, Neg. LLF: 120.99091951496524
Iteration: 3, Func. Count: 24, Neg. LLF: 114.81921053950578
Iteration: 4, Func. Count: 30, Neg. LLF: 114.85045865093055
Iteration: 5, Func. Count: 37, Neg. LLF: 114.81355084935512
Iteration: 6, Func. Count: 43, Neg. LLF: 114.8110085437453
Iteration: 7, Func. Count: 49, Neg. LLF: 114.81099392012266
Iteration: 8, Func. Count: 54, Neg. LLF: 114.81099337087723
Optimization terminated successfully (Exit mode 0)
Current function value: 114.81099392012266
Iterations: 8
Function evaluations: 54
Gradient evaluations: 8
Iteration: 1, Func. Count: 8, Neg. LLF: 279.2033758998117
Iteration: 2, Func. Count: 17, Neg. LLF: 116.90227567939334
Iteration: 3, Func. Count: 27, Neg. LLF: 114.76028240940683
Iteration: 4, Func. Count: 34, Neg. LLF: 114.25164037381752
Iteration: 5, Func. Count: 41, Neg. LLF: 114.08459075703847
Iteration: 6, Func. Count: 48, Neg. LLF: 113.80210725627084
Iteration: 7, Func. Count: 55, Neg. LLF: 113.79739915888003
Iteration: 8, Func. Count: 62, Neg. LLF: 113.78977521944459
Iteration: 9, Func. Count: 69, Neg. LLF: 113.78803732773406
Iteration: 10, Func. Count: 76, Neg. LLF: 113.78779538392222
Iteration: 11, Func. Count: 83, Neg. LLF: 113.78746903272877
Iteration: 12, Func. Count: 90, Neg. LLF: 113.79614058647023
Iteration: 13, Func. Count: 99, Neg. LLF: 113.7877864460814
Iteration: 14, Func. Count: 107, Neg. LLF: 113.78777398351434
Iteration: 15, Func. Count: 115, Neg. LLF: 113.78777371820058
Iteration: 16, Func. Count: 121, Neg. LLF: 113.78777343484106
Optimization terminated successfully (Exit mode 0)
Current function value: 113.78777371820058
Iterations: 17
Function evaluations: 121
Gradient evaluations: 16
Iteration: 1, Func. Count: 9, Neg. LLF: 4300536.995624459
Iteration: 2, Func. Count: 19, Neg. LLF: 114.82639525992529
Iteration: 3, Func. Count: 27, Neg. LLF: 114.14887824995431
Iteration: 4, Func. Count: 35, Neg. LLF: 118.15096147609304
Iteration: 5, Func. Count: 44, Neg. LLF: 113.9825038479331
Iteration: 6, Func. Count: 52, Neg. LLF: 113.81143475826076
Iteration: 7, Func. Count: 60, Neg. LLF: 113.79004607030171
Iteration: 8, Func. Count: 68, Neg. LLF: 113.73750402684503
Iteration: 9, Func. Count: 84, Neg. LLF: 113.93440031894224
Iteration: 10, Func. Count: 93, Neg. LLF: 115.14259276398276
Iteration: 11, Func. Count: 103, Neg. LLF: 113.84198462516768
Iteration: 12, Func. Count: 112, Neg. LLF: 113.78777379779504
Iteration: 13, Func. Count: 119, Neg. LLF: 113.78777359397715
Optimization terminated successfully (Exit mode 0)
Current function value: 113.78777379779504
Iterations: 14
Function evaluations: 119
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 22309498.93168512
Iteration: 2, Func. Count: 21, Neg. LLF: 115.59017527138273
Iteration: 3, Func. Count: 30, Neg. LLF: 114.06536621810966
Iteration: 4, Func. Count: 39, Neg. LLF: 113.94208435194922
Iteration: 5, Func. Count: 48, Neg. LLF: 113.82387583892216
Iteration: 6, Func. Count: 57, Neg. LLF: 113.79040411738731
Iteration: 7, Func. Count: 66, Neg. LLF: 113.7882253927597
Iteration: 8, Func. Count: 75, Neg. LLF: 113.78780058449938
Iteration: 9, Func. Count: 84, Neg. LLF: 113.78778944752473
Iteration: 10, Func. Count: 93, Neg. LLF: 113.78777722784305
Iteration: 11, Func. Count: 102, Neg. LLF: 113.78777417494794
Iteration: 12, Func. Count: 110, Neg. LLF: 113.78777391017233
Optimization terminated successfully (Exit mode 0)
Current function value: 113.78777417494794
Iterations: 12
Function evaluations: 110
Gradient evaluations: 12
Iteration: 1, Func. Count: 7, Neg. LLF: 128.27992864654337
Iteration: 2, Func. Count: 14, Neg. LLF: 152.51840983994
Iteration: 3, Func. Count: 21, Neg. LLF: 117.18197889605268
Iteration: 4, Func. Count: 27, Neg. LLF: 116.90995856965743
Iteration: 5, Func. Count: 33, Neg. LLF: 116.74237880891562
Iteration: 6, Func. Count: 39, Neg. LLF: 116.69404685090902
Iteration: 7, Func. Count: 45, Neg. LLF: 116.68986458175529
Iteration: 8, Func. Count: 51, Neg. LLF: 116.68960684854302
Iteration: 9, Func. Count: 57, Neg. LLF: 116.68960600061739
Optimization terminated successfully (Exit mode 0)
Current function value: 116.68960600061739
Iterations: 9
Function evaluations: 57
Gradient evaluations: 9
Iteration: 1, Func. Count: 8, Neg. LLF: 172.06754894309228
Iteration: 2, Func. Count: 18, Neg. LLF: 145.12689632377317
Iteration: 3, Func. Count: 27, Neg. LLF: 114.3859173343137
Iteration: 4, Func. Count: 34, Neg. LLF: 114.6209453794322
Iteration: 5, Func. Count: 42, Neg. LLF: 114.35200031275174
Iteration: 6, Func. Count: 49, Neg. LLF: 114.3507082140321
Iteration: 7, Func. Count: 56, Neg. LLF: 114.3505091452232
Iteration: 8, Func. Count: 63, Neg. LLF: 114.35042395111856
Iteration: 9, Func. Count: 70, Neg. LLF: 114.35042198698018
Iteration: 10, Func. Count: 77, Neg. LLF: 114.35042275725155
Optimization terminated successfully (Exit mode 0)
Current function value: 114.35042207751444
Iterations: 11
Function evaluations: 78
Gradient evaluations: 10
Iteration: 1, Func. Count: 9, Neg. LLF: 16504891.534448542
Iteration: 2, Func. Count: 19, Neg. LLF: 118.40972404330648
Iteration: 3, Func. Count: 30, Neg. LLF: 114.82286727207509
Iteration: 4, Func. Count: 38, Neg. LLF: 114.8262518725635
Iteration: 5, Func. Count: 47, Neg. LLF: 114.79082041840115
Iteration: 6, Func. Count: 55, Neg. LLF: 114.70553318815793
Iteration: 7, Func. Count: 63, Neg. LLF: 114.5375098923883
Iteration: 8, Func. Count: 71, Neg. LLF: 114.37026811476574
Iteration: 9, Func. Count: 79, Neg. LLF: 114.34033613908993
Iteration: 10, Func. Count: 87, Neg. LLF: 114.34042704402444
Iteration: 11, Func. Count: 96, Neg. LLF: 114.3512597440314
Iteration: 12, Func. Count: 104, Neg. LLF: 114.35066238494743
Iteration: 13, Func. Count: 112, Neg. LLF: 114.30675819661238
Iteration: 14, Func. Count: 126, Neg. LLF: 114.34768925707549
Iteration: 15, Func. Count: 144, Neg. LLF: 114.48565901802192
Iteration: 16, Func. Count: 155, Neg. LLF: 114.35070916839837
Iteration: 17, Func. Count: 164, Neg. LLF: 114.35048110010815
Iteration: 18, Func. Count: 172, Neg. LLF: 114.35048693013239
Iteration: 19, Func. Count: 181, Neg. LLF: 114.35043532087948
Iteration: 20, Func. Count: 189, Neg. LLF: 114.350422215132
Optimization terminated successfully (Exit mode 0)
Current function value: 114.35042275449477
Iterations: 21
Function evaluations: 189
Gradient evaluations: 20
Iteration: 1, Func. Count: 10, Neg. LLF: 19367635.23304772
Iteration: 2, Func. Count: 21, Neg. LLF: 115.44147222113733
Iteration: 3, Func. Count: 30, Neg. LLF: 114.66559192892936
Iteration: 4, Func. Count: 39, Neg. LLF: 115.27568225844333
Iteration: 5, Func. Count: 49, Neg. LLF: 114.39357259204692
Iteration: 6, Func. Count: 58, Neg. LLF: 114.45888076255497
Iteration: 7, Func. Count: 68, Neg. LLF: 114.52992744244395
Iteration: 8, Func. Count: 78, Neg. LLF: 114.35051969301114
Iteration: 9, Func. Count: 87, Neg. LLF: 114.35042296243145
Iteration: 10, Func. Count: 95, Neg. LLF: 114.3504224180989
Optimization terminated successfully (Exit mode 0)
Current function value: 114.35042296243145
Iterations: 10
Function evaluations: 95
Gradient evaluations: 10
Iteration: 1, Func. Count: 11, Neg. LLF: 23929928.494982235
Iteration: 2, Func. Count: 23, Neg. LLF: 115.4861871112372
Iteration: 3, Func. Count: 34, Neg. LLF: 114.44591156716407
Iteration: 4, Func. Count: 44, Neg. LLF: 113.98507878299053
Iteration: 5, Func. Count: 54, Neg. LLF: 117.9244965162451
Iteration: 6, Func. Count: 65, Neg. LLF: 114.34170492825436
Iteration: 7, Func. Count: 76, Neg. LLF: 114.68527485719463
Iteration: 8, Func. Count: 87, Neg. LLF: 113.50678410809849
Iteration: 9, Func. Count: 97, Neg. LLF: 113.47480578057078
Iteration: 10, Func. Count: 107, Neg. LLF: 113.47332509060867
Iteration: 11, Func. Count: 117, Neg. LLF: 113.47330815292057
Iteration: 12, Func. Count: 127, Neg. LLF: 113.4733079324795
Optimization terminated successfully (Exit mode 0)
Current function value: 113.4733079324795
Iterations: 12
Function evaluations: 127
Gradient evaluations: 12
Iteration: 1, Func. Count: 8, Neg. LLF: 133.22888200876727
Iteration: 2, Func. Count: 17, Neg. LLF: 881.907444462434
Iteration: 3, Func. Count: 25, Neg. LLF: 4900.401784318458
Iteration: 4, Func. Count: 33, Neg. LLF: 179.31901602488975
Iteration: 5, Func. Count: 41, Neg. LLF: 124.3668752634685
Iteration: 6, Func. Count: 49, Neg. LLF: 111.67492529456304
Iteration: 7, Func. Count: 56, Neg. LLF: 111.63357537993494
Iteration: 8, Func. Count: 63, Neg. LLF: 111.7256495828126
Iteration: 9, Func. Count: 71, Neg. LLF: 111.39582689876987
Iteration: 10, Func. Count: 78, Neg. LLF: 111.2871469517975
Iteration: 11, Func. Count: 85, Neg. LLF: 111.25108204462406
Iteration: 12, Func. Count: 92, Neg. LLF: 111.24092237947222
Iteration: 13, Func. Count: 99, Neg. LLF: 111.24061960075994
Iteration: 14, Func. Count: 106, Neg. LLF: 111.24061464951471
Iteration: 15, Func. Count: 112, Neg. LLF: 111.24061464951714
Optimization terminated successfully (Exit mode 0)
Current function value: 111.24061464951471
Iterations: 15
Function evaluations: 112
Gradient evaluations: 15
Iteration: 1, Func. Count: 9, Neg. LLF: 116.21498260784256
Iteration: 2, Func. Count: 21, Neg. LLF: 133.75751986211725
Iteration: 3, Func. Count: 30, Neg. LLF: 138.9170414829302
Iteration: 4, Func. Count: 39, Neg. LLF: 112.91955188568551
Iteration: 5, Func. Count: 47, Neg. LLF: 112.39558062582606
Iteration: 6, Func. Count: 55, Neg. LLF: 111.72713339738797
Iteration: 7, Func. Count: 63, Neg. LLF: 111.59921395531688
Iteration: 8, Func. Count: 71, Neg. LLF: 111.37802064184372
Iteration: 9, Func. Count: 79, Neg. LLF: 111.45042171724864
Iteration: 10, Func. Count: 88, Neg. LLF: 111.31047175991489
Iteration: 11, Func. Count: 96, Neg. LLF: 111.28317491588768
Iteration: 12, Func. Count: 104, Neg. LLF: 111.28024656896449
Iteration: 13, Func. Count: 112, Neg. LLF: 111.2796206914406
Iteration: 14, Func. Count: 120, Neg. LLF: 111.27743876016696
Iteration: 15, Func. Count: 128, Neg. LLF: 111.27179946343466
Iteration: 16, Func. Count: 136, Neg. LLF: 111.26205776740993
Iteration: 17, Func. Count: 144, Neg. LLF: 111.24978873517193
Iteration: 18, Func. Count: 152, Neg. LLF: 111.24206941330677
Iteration: 19, Func. Count: 160, Neg. LLF: 111.24070760220411
Iteration: 20, Func. Count: 168, Neg. LLF: 111.24062134132502
Iteration: 21, Func. Count: 176, Neg. LLF: 111.24061464788757
Iteration: 22, Func. Count: 183, Neg. LLF: 111.2406146585981
Optimization terminated successfully (Exit mode 0)
Current function value: 111.24061464788757
Iterations: 22
Function evaluations: 183
Gradient evaluations: 22
Iteration: 1, Func. Count: 10, Neg. LLF: 2652456.419521494
Iteration: 2, Func. Count: 20, Neg. LLF: 123.5727499451396
Iteration: 3, Func. Count: 31, Neg. LLF: 128.80302410757005
Iteration: 4, Func. Count: 41, Neg. LLF: 112.0765757992146
Iteration: 5, Func. Count: 50, Neg. LLF: 111.82209902177952
Iteration: 6, Func. Count: 59, Neg. LLF: 112.96473583901773
Iteration: 7, Func. Count: 69, Neg. LLF: 111.81066249353691
Iteration: 8, Func. Count: 79, Neg. LLF: 111.79726769727772
Iteration: 9, Func. Count: 88, Neg. LLF: 111.79713192151998
Iteration: 10, Func. Count: 97, Neg. LLF: 111.79692246592917
Iteration: 11, Func. Count: 106, Neg. LLF: 111.79672002087746
Iteration: 12, Func. Count: 115, Neg. LLF: 111.79663520840934
Iteration: 13, Func. Count: 124, Neg. LLF: 111.79662341422517
Iteration: 14, Func. Count: 132, Neg. LLF: 111.79662339191096
Optimization terminated successfully (Exit mode 0)
Current function value: 111.79662341422517
Iterations: 14
Function evaluations: 132
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 114.43013715399245
Iteration: 2, Func. Count: 22, Neg. LLF: 157.02694540711124
Iteration: 3, Func. Count: 33, Neg. LLF: 2172876.833156614
Iteration: 4, Func. Count: 44, Neg. LLF: 123.96057589320937
Iteration: 5, Func. Count: 55, Neg. LLF: 202.68173961993065
Iteration: 6, Func. Count: 66, Neg. LLF: 127.90031558310093
Iteration: 7, Func. Count: 77, Neg. LLF: 113.84698698484722
Iteration: 8, Func. Count: 88, Neg. LLF: 111.19862213583296
Iteration: 9, Func. Count: 99, Neg. LLF: 110.81852663220863
Iteration: 10, Func. Count: 110, Neg. LLF: 108.80911177804192
Iteration: 11, Func. Count: 120, Neg. LLF: 108.77208404493612
Iteration: 12, Func. Count: 130, Neg. LLF: 108.7090884133841
Iteration: 13, Func. Count: 140, Neg. LLF: 108.68797183745443
Iteration: 14, Func. Count: 150, Neg. LLF: 108.68304946085169
Iteration: 15, Func. Count: 160, Neg. LLF: 108.68295902265466
Iteration: 16, Func. Count: 170, Neg. LLF: 108.68295419311539
Iteration: 17, Func. Count: 179, Neg. LLF: 108.68295406876845
Optimization terminated successfully (Exit mode 0)
Current function value: 108.68295419311539
Iterations: 17
Function evaluations: 179
Gradient evaluations: 17
Iteration: 1, Func. Count: 12, Neg. LLF: 130.57236449713352
Iteration: 2, Func. Count: 24, Neg. LLF: 131.9136349003403
Iteration: 3, Func. Count: 37, Neg. LLF: 109.45363559793532
Iteration: 4, Func. Count: 48, Neg. LLF: 111.4779104052537
Iteration: 5, Func. Count: 61, Neg. LLF: 179.69719503625043
Iteration: 6, Func. Count: 73, Neg. LLF: 108.68721161616915
Iteration: 7, Func. Count: 84, Neg. LLF: 108.68336632502897
Iteration: 8, Func. Count: 95, Neg. LLF: 108.68297996105575
Iteration: 9, Func. Count: 106, Neg. LLF: 108.68296380657928
Iteration: 10, Func. Count: 117, Neg. LLF: 108.68295919066286
Iteration: 11, Func. Count: 128, Neg. LLF: 108.6829545534953
Iteration: 12, Func. Count: 138, Neg. LLF: 108.68295447826675
Optimization terminated successfully (Exit mode 0)
Current function value: 108.6829545534953
Iterations: 12
Function evaluations: 138
Gradient evaluations: 12
Iteration: 1, Func. Count: 5, Neg. LLF: 122.09148421270014
Iteration: 2, Func. Count: 10, Neg. LLF: 125.89679241210929
Iteration: 3, Func. Count: 15, Neg. LLF: 117.06505186571941
Iteration: 4, Func. Count: 19, Neg. LLF: 116.69591209959529
Iteration: 5, Func. Count: 23, Neg. LLF: 116.69076307902799
Iteration: 6, Func. Count: 27, Neg. LLF: 116.68960903955002
Iteration: 7, Func. Count: 31, Neg. LLF: 116.68960602587424
Iteration: 8, Func. Count: 34, Neg. LLF: 116.68960618146491
Optimization terminated successfully (Exit mode 0)
Current function value: 116.68960602587424
Iterations: 8
Function evaluations: 34
Gradient evaluations: 8
Iteration: 1, Func. Count: 6, Neg. LLF: 133.48683681847953
Iteration: 2, Func. Count: 14, Neg. LLF: 116.70099649626515
Iteration: 3, Func. Count: 19, Neg. LLF: 116.71055300783196
Iteration: 4, Func. Count: 25, Neg. LLF: 116.68444647899001
Iteration: 5, Func. Count: 30, Neg. LLF: 116.68439787749064
Iteration: 6, Func. Count: 35, Neg. LLF: 116.68414386142423
Iteration: 7, Func. Count: 40, Neg. LLF: 116.6837573038373
Iteration: 8, Func. Count: 45, Neg. LLF: 116.68372142795238
Iteration: 9, Func. Count: 50, Neg. LLF: 116.68371775639943
Iteration: 10, Func. Count: 54, Neg. LLF: 116.68371775656871
Optimization terminated successfully (Exit mode 0)
Current function value: 116.68371775639943
Iterations: 10
Function evaluations: 54
Gradient evaluations: 10
Iteration: 1, Func. Count: 7, Neg. LLF: 119.16385258901909
Iteration: 2, Func. Count: 15, Neg. LLF: 116.68011804365861
Iteration: 3, Func. Count: 21, Neg. LLF: 116.6814137509433
Iteration: 4, Func. Count: 28, Neg. LLF: 116.68188518353831
Iteration: 5, Func. Count: 35, Neg. LLF: 116.67711235336078
Iteration: 6, Func. Count: 41, Neg. LLF: 116.67574768015618
Iteration: 7, Func. Count: 47, Neg. LLF: 116.67571337887568
Iteration: 8, Func. Count: 53, Neg. LLF: 116.67552658125012
Iteration: 9, Func. Count: 59, Neg. LLF: 116.67482029743545
Iteration: 10, Func. Count: 65, Neg. LLF: 116.67417724586497
Iteration: 11, Func. Count: 71, Neg. LLF: 116.67416485510306
Iteration: 12, Func. Count: 77, Neg. LLF: 116.67416425087632
Optimization terminated successfully (Exit mode 0)
Current function value: 116.67416425087632
Iterations: 12
Function evaluations: 77
Gradient evaluations: 12
Iteration: 1, Func. Count: 8, Neg. LLF: 117.0812149528863
Iteration: 2, Func. Count: 16, Neg. LLF: 116.77304906599609
Iteration: 3, Func. Count: 24, Neg. LLF: 116.75080007029342
Iteration: 4, Func. Count: 32, Neg. LLF: 116.67909916388074
Iteration: 5, Func. Count: 39, Neg. LLF: 116.6765588364489
Iteration: 6, Func. Count: 46, Neg. LLF: 116.6761123596859
Iteration: 7, Func. Count: 53, Neg. LLF: 116.67543423892339
Iteration: 8, Func. Count: 60, Neg. LLF: 116.6754032645087
Iteration: 9, Func. Count: 67, Neg. LLF: 116.67521989567541
Iteration: 10, Func. Count: 74, Neg. LLF: 116.67468862118663
Iteration: 11, Func. Count: 81, Neg. LLF: 116.67440408268668
Iteration: 12, Func. Count: 88, Neg. LLF: 116.67421972425775
Iteration: 13, Func. Count: 95, Neg. LLF: 116.6741687309906
Iteration: 14, Func. Count: 102, Neg. LLF: 116.6741643301159
Iteration: 15, Func. Count: 108, Neg. LLF: 116.67416433031897
Optimization terminated successfully (Exit mode 0)
Current function value: 116.6741643301159
Iterations: 15
Function evaluations: 108
Gradient evaluations: 15
Iteration: 1, Func. Count: 9, Neg. LLF: 118.01965540864691
Iteration: 2, Func. Count: 18, Neg. LLF: 116.77191516630468
Iteration: 3, Func. Count: 26, Neg. LLF: 116.76683724152495
Iteration: 4, Func. Count: 35, Neg. LLF: 116.69052634745356
Iteration: 5, Func. Count: 44, Neg. LLF: 116.67742757044515
Iteration: 6, Func. Count: 52, Neg. LLF: 116.67552223216671
Iteration: 7, Func. Count: 60, Neg. LLF: 116.67528725038329
Iteration: 8, Func. Count: 68, Neg. LLF: 116.67525351137459
Iteration: 9, Func. Count: 76, Neg. LLF: 116.67512675766243
Iteration: 10, Func. Count: 84, Neg. LLF: 116.6748847296236
Iteration: 11, Func. Count: 92, Neg. LLF: 116.67452579719624
Iteration: 12, Func. Count: 100, Neg. LLF: 116.67425879231637
Iteration: 13, Func. Count: 108, Neg. LLF: 116.6741776294946
Iteration: 14, Func. Count: 116, Neg. LLF: 116.67416537275211
Iteration: 15, Func. Count: 124, Neg. LLF: 116.67416425399175
Iteration: 16, Func. Count: 131, Neg. LLF: 116.67416425485489
Optimization terminated successfully (Exit mode 0)
Current function value: 116.67416425399175
Iterations: 16
Function evaluations: 131
Gradient evaluations: 16
Iteration: 1, Func. Count: 6, Neg. LLF: 123.02726545716797
Iteration: 2, Func. Count: 12, Neg. LLF: 124.60470704059031
Iteration: 3, Func. Count: 18, Neg. LLF: 117.05582852650807
Iteration: 4, Func. Count: 23, Neg. LLF: 116.95277574513685
Iteration: 5, Func. Count: 28, Neg. LLF: 116.740478384312
Iteration: 6, Func. Count: 33, Neg. LLF: 116.69770781541182
Iteration: 7, Func. Count: 38, Neg. LLF: 116.6896173763513
Iteration: 8, Func. Count: 43, Neg. LLF: 116.68960685014918
Iteration: 9, Func. Count: 48, Neg. LLF: 116.68960599156757
Optimization terminated successfully (Exit mode 0)
Current function value: 116.68960599156757
Iterations: 9
Function evaluations: 48
Gradient evaluations: 9
Iteration: 1, Func. Count: 7, Neg. LLF: 128.49489920045028
Iteration: 2, Func. Count: 16, Neg. LLF: 157.465521994662
Iteration: 3, Func. Count: 24, Neg. LLF: 115.44821831430977
Iteration: 4, Func. Count: 30, Neg. LLF: 115.29024736145988
Iteration: 5, Func. Count: 36, Neg. LLF: 115.2575053139658
Iteration: 6, Func. Count: 42, Neg. LLF: 115.24825630392583
Iteration: 7, Func. Count: 48, Neg. LLF: 115.2482347180716
Iteration: 8, Func. Count: 54, Neg. LLF: 115.24822819551663
Iteration: 9, Func. Count: 60, Neg. LLF: 115.24822767770651
Optimization terminated successfully (Exit mode 0)
Current function value: 115.24822767770651
Iterations: 10
Function evaluations: 60
Gradient evaluations: 9
Iteration: 1, Func. Count: 8, Neg. LLF: 151.04437166048507
Iteration: 2, Func. Count: 18, Neg. LLF: 116.73351770401686
Iteration: 3, Func. Count: 26, Neg. LLF: 115.48381792764786
Iteration: 4, Func. Count: 33, Neg. LLF: 115.44867471076951
Iteration: 5, Func. Count: 40, Neg. LLF: 115.33883270843478
Iteration: 6, Func. Count: 47, Neg. LLF: 115.27094267891262
Iteration: 7, Func. Count: 54, Neg. LLF: 115.25193537334935
Iteration: 8, Func. Count: 61, Neg. LLF: 115.24834614324597
Iteration: 9, Func. Count: 68, Neg. LLF: 115.24814297879541
Iteration: 10, Func. Count: 75, Neg. LLF: 115.24822788567108
Iteration: 11, Func. Count: 82, Neg. LLF: 115.24823119745872
Optimization terminated successfully (Exit mode 0)
Current function value: 115.24822785672018
Iterations: 12
Function evaluations: 83
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 4855508.842998464
Iteration: 2, Func. Count: 19, Neg. LLF: 115.19993959160051
Iteration: 3, Func. Count: 27, Neg. LLF: 114.83495478265714
Iteration: 4, Func. Count: 35, Neg. LLF: 113.14290394685864
Iteration: 5, Func. Count: 43, Neg. LLF: 112.6475344562536
Iteration: 6, Func. Count: 51, Neg. LLF: 112.45583391218796
Iteration: 7, Func. Count: 59, Neg. LLF: 112.70842655489011
Iteration: 8, Func. Count: 68, Neg. LLF: 115.96763463388457
Iteration: 9, Func. Count: 77, Neg. LLF: 112.2870929323661
Iteration: 10, Func. Count: 86, Neg. LLF: 112.22559276469048
Iteration: 11, Func. Count: 94, Neg. LLF: 112.21146889234983
Iteration: 12, Func. Count: 102, Neg. LLF: 112.21121471367017
Iteration: 13, Func. Count: 110, Neg. LLF: 112.21118216751368
Iteration: 14, Func. Count: 117, Neg. LLF: 112.21118193813305
Optimization terminated successfully (Exit mode 0)
Current function value: 112.21118216751368
Iterations: 14
Function evaluations: 117
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 362596.76641035435
Iteration: 2, Func. Count: 21, Neg. LLF: 113.27871392845285
Iteration: 3, Func. Count: 30, Neg. LLF: 132.50669933174638
Iteration: 4, Func. Count: 40, Neg. LLF: 112.47136607385448
Iteration: 5, Func. Count: 49, Neg. LLF: 118.57298996101514
Iteration: 6, Func. Count: 59, Neg. LLF: 118.77726011491322
Iteration: 7, Func. Count: 70, Neg. LLF: 112.23241299658748
Iteration: 8, Func. Count: 80, Neg. LLF: 112.21153201101848
Iteration: 9, Func. Count: 89, Neg. LLF: 112.21121917736451
Iteration: 10, Func. Count: 98, Neg. LLF: 112.2111862972812
Iteration: 11, Func. Count: 107, Neg. LLF: 112.21118219172283
Iteration: 12, Func. Count: 115, Neg. LLF: 112.21118212386435
Optimization terminated successfully (Exit mode 0)
Current function value: 112.21118219172283
Iterations: 12
Function evaluations: 115
Gradient evaluations: 12
Iteration: 1, Func. Count: 7, Neg. LLF: 129.24431715126457
Iteration: 2, Func. Count: 15, Neg. LLF: 136.81760050738828
Iteration: 3, Func. Count: 22, Neg. LLF: 116.70075578960531
Iteration: 4, Func. Count: 28, Neg. LLF: 116.69663264795908
Iteration: 5, Func. Count: 34, Neg. LLF: 116.69025974696103
Iteration: 6, Func. Count: 40, Neg. LLF: 116.68980237788266
Iteration: 7, Func. Count: 46, Neg. LLF: 116.68961318482373
Iteration: 8, Func. Count: 52, Neg. LLF: 116.68960622795717
Iteration: 9, Func. Count: 57, Neg. LLF: 116.68960626858689
Optimization terminated successfully (Exit mode 0)
Current function value: 116.68960622795717
Iterations: 9
Function evaluations: 57
Gradient evaluations: 9
Iteration: 1, Func. Count: 8, Neg. LLF: 146.1150358230426
Iteration: 2, Func. Count: 18, Neg. LLF: 129.69936354156016
Iteration: 3, Func. Count: 28, Neg. LLF: 115.5689173123895
Iteration: 4, Func. Count: 35, Neg. LLF: 114.99121570835348
Iteration: 5, Func. Count: 42, Neg. LLF: 114.817346569948
Iteration: 6, Func. Count: 49, Neg. LLF: 114.8330596419703
Iteration: 7, Func. Count: 57, Neg. LLF: 114.81127694163062
Iteration: 8, Func. Count: 64, Neg. LLF: 114.81099386311591
Iteration: 9, Func. Count: 70, Neg. LLF: 114.81099331454595
Optimization terminated successfully (Exit mode 0)
Current function value: 114.81099386311591
Iterations: 9
Function evaluations: 70
Gradient evaluations: 9
Iteration: 1, Func. Count: 9, Neg. LLF: 133.00902915857645
Iteration: 2, Func. Count: 19, Neg. LLF: 137.69655371054432
Iteration: 3, Func. Count: 29, Neg. LLF: 115.95864056880112
Iteration: 4, Func. Count: 38, Neg. LLF: 113.89598221548874
Iteration: 5, Func. Count: 46, Neg. LLF: 115.33138197607953
Iteration: 6, Func. Count: 56, Neg. LLF: 113.7974922250541
Iteration: 7, Func. Count: 64, Neg. LLF: 113.78951800958721
Iteration: 8, Func. Count: 72, Neg. LLF: 113.78852288465507
Iteration: 9, Func. Count: 80, Neg. LLF: 113.7877865200007
Iteration: 10, Func. Count: 88, Neg. LLF: 113.78777389002241
Iteration: 11, Func. Count: 96, Neg. LLF: 113.78777304876745
Optimization terminated successfully (Exit mode 0)
Current function value: 113.78777304876745
Iterations: 11
Function evaluations: 96
Gradient evaluations: 11
Iteration: 1, Func. Count: 10, Neg. LLF: 2412666.780358592
Iteration: 2, Func. Count: 21, Neg. LLF: 117.10867535380775
Iteration: 3, Func. Count: 32, Neg. LLF: 115.09592661992556
Iteration: 4, Func. Count: 41, Neg. LLF: 114.68176554509594
Iteration: 5, Func. Count: 50, Neg. LLF: 114.61222339985868
Iteration: 6, Func. Count: 59, Neg. LLF: 114.39226117861848
Iteration: 7, Func. Count: 68, Neg. LLF: 114.2175547812802
Iteration: 8, Func. Count: 77, Neg. LLF: 113.80516266762487
Iteration: 9, Func. Count: 86, Neg. LLF: 113.78930066641112
Iteration: 10, Func. Count: 95, Neg. LLF: 113.78811307388244
Iteration: 11, Func. Count: 104, Neg. LLF: 113.7855011471351
Iteration: 12, Func. Count: 113, Neg. LLF: 113.78728825772687
Iteration: 13, Func. Count: 132, Neg. LLF: 114.0058306591592
Iteration: 14, Func. Count: 143, Neg. LLF: 113.7877941209373
Iteration: 15, Func. Count: 153, Neg. LLF: 113.78777422443305
Iteration: 16, Func. Count: 163, Neg. LLF: 113.7877739385599
Iteration: 17, Func. Count: 173, Neg. LLF: 113.78777371436799
Iteration: 18, Func. Count: 181, Neg. LLF: 113.78777351039197
Optimization terminated successfully (Exit mode 0)
Current function value: 113.78777371436799
Iterations: 20
Function evaluations: 181
Gradient evaluations: 18
Iteration: 1, Func. Count: 11, Neg. LLF: 2619770.4011072037
Iteration: 2, Func. Count: 23, Neg. LLF: 114.43939265802365
Iteration: 3, Func. Count: 33, Neg. LLF: 115.3290653183197
Iteration: 4, Func. Count: 44, Neg. LLF: 113.87616985577768
Iteration: 5, Func. Count: 54, Neg. LLF: 113.92470755419633
Iteration: 6, Func. Count: 65, Neg. LLF: 113.7887781883957
Iteration: 7, Func. Count: 75, Neg. LLF: 113.7878456414501
Iteration: 8, Func. Count: 85, Neg. LLF: 113.78778403570696
Iteration: 9, Func. Count: 95, Neg. LLF: 113.78777358631855
Iteration: 10, Func. Count: 105, Neg. LLF: 113.78777276572225
Optimization terminated successfully (Exit mode 0)
Current function value: 113.78777358478585
Iterations: 10
Function evaluations: 115
Gradient evaluations: 10
Iteration: 1, Func. Count: 8, Neg. LLF: 128.72876422041708
Iteration: 2, Func. Count: 17, Neg. LLF: 141.54138762326826
Iteration: 3, Func. Count: 25, Neg. LLF: 116.69301893132406
Iteration: 4, Func. Count: 32, Neg. LLF: 116.69102814381547
Iteration: 5, Func. Count: 39, Neg. LLF: 116.68981200758247
Iteration: 6, Func. Count: 46, Neg. LLF: 116.68961358549257
Iteration: 7, Func. Count: 53, Neg. LLF: 116.68960609983391
Iteration: 8, Func. Count: 59, Neg. LLF: 116.6896061235212
Optimization terminated successfully (Exit mode 0)
Current function value: 116.68960609983391
Iterations: 8
Function evaluations: 59
Gradient evaluations: 8
Iteration: 1, Func. Count: 9, Neg. LLF: 130.00706695712717
Iteration: 2, Func. Count: 21, Neg. LLF: 159.9856982281613
Iteration: 3, Func. Count: 30, Neg. LLF: 114.81339399416004
Iteration: 4, Func. Count: 38, Neg. LLF: 115.38178996112106
Iteration: 5, Func. Count: 47, Neg. LLF: 114.49377249796771
Iteration: 6, Func. Count: 55, Neg. LLF: 114.3750601353736
Iteration: 7, Func. Count: 63, Neg. LLF: 114.35255288318572
Iteration: 8, Func. Count: 71, Neg. LLF: 114.3507378809786
Iteration: 9, Func. Count: 79, Neg. LLF: 114.35042850982543
Iteration: 10, Func. Count: 87, Neg. LLF: 114.35042256304087
Iteration: 11, Func. Count: 94, Neg. LLF: 114.35042201447615
Optimization terminated successfully (Exit mode 0)
Current function value: 114.35042256304087
Iterations: 11
Function evaluations: 94
Gradient evaluations: 11
Iteration: 1, Func. Count: 10, Neg. LLF: 140.92056517006503
Iteration: 2, Func. Count: 21, Neg. LLF: 136.86384066993224
Iteration: 3, Func. Count: 33, Neg. LLF: 115.54912386554102
Iteration: 4, Func. Count: 42, Neg. LLF: 114.80390488496104
Iteration: 5, Func. Count: 51, Neg. LLF: 114.40062874355908
Iteration: 6, Func. Count: 60, Neg. LLF: 114.42656882831942
Iteration: 7, Func. Count: 70, Neg. LLF: 114.35056436961432
Iteration: 8, Func. Count: 79, Neg. LLF: 114.35045130786035
Iteration: 9, Func. Count: 88, Neg. LLF: 114.35042595620209
Iteration: 10, Func. Count: 97, Neg. LLF: 114.35042275956629
Iteration: 11, Func. Count: 105, Neg. LLF: 114.35042222027216
Optimization terminated successfully (Exit mode 0)
Current function value: 114.35042275956629
Iterations: 11
Function evaluations: 105
Gradient evaluations: 11
Iteration: 1, Func. Count: 11, Neg. LLF: 15887214.832938036
Iteration: 2, Func. Count: 23, Neg. LLF: 118.84834163158843
Iteration: 3, Func. Count: 35, Neg. LLF: 115.46736301840485
Iteration: 4, Func. Count: 45, Neg. LLF: 114.61830347288415
Iteration: 5, Func. Count: 55, Neg. LLF: 114.39310863748616
Iteration: 6, Func. Count: 65, Neg. LLF: 114.40692605706109
Iteration: 7, Func. Count: 76, Neg. LLF: 114.35087846950059
Iteration: 8, Func. Count: 86, Neg. LLF: 114.35132295250799
Iteration: 9, Func. Count: 97, Neg. LLF: 114.35042275217872
Iteration: 10, Func. Count: 106, Neg. LLF: 114.35042220711226
Optimization terminated successfully (Exit mode 0)
Current function value: 114.35042275217872
Iterations: 10
Function evaluations: 106
Gradient evaluations: 10
Iteration: 1, Func. Count: 12, Neg. LLF: 21056167.96705787
Iteration: 2, Func. Count: 25, Neg. LLF: 116.85980125491335
Iteration: 3, Func. Count: 38, Neg. LLF: 116.16920243755688
Iteration: 4, Func. Count: 50, Neg. LLF: 114.15267273152949
Iteration: 5, Func. Count: 61, Neg. LLF: 115.67450100372918
Iteration: 6, Func. Count: 73, Neg. LLF: 114.09134137874875
Iteration: 7, Func. Count: 85, Neg. LLF: 113.5756310716602
Iteration: 8, Func. Count: 96, Neg. LLF: 113.4774206130894
Iteration: 9, Func. Count: 107, Neg. LLF: 113.47469853686205
Iteration: 10, Func. Count: 118, Neg. LLF: 113.47431649645833
Iteration: 11, Func. Count: 130, Neg. LLF: 113.47332107165127
Iteration: 12, Func. Count: 141, Neg. LLF: 113.47330732239932
Iteration: 13, Func. Count: 151, Neg. LLF: 113.47330707798002
Optimization terminated successfully (Exit mode 0)
Current function value: 113.47330732239932
Iterations: 13
Function evaluations: 151
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 134.51806186805334
Iteration: 2, Func. Count: 19, Neg. LLF: 768.2608483629672
Iteration: 3, Func. Count: 28, Neg. LLF: 223.51470469146736
Iteration: 4, Func. Count: 37, Neg. LLF: 1978012.3722597912
Iteration: 5, Func. Count: 46, Neg. LLF: 161.7495847188088
Iteration: 6, Func. Count: 55, Neg. LLF: 113.88933035867815
Iteration: 7, Func. Count: 64, Neg. LLF: 111.4031203133887
Iteration: 8, Func. Count: 72, Neg. LLF: 111.2772746847796
Iteration: 9, Func. Count: 80, Neg. LLF: 111.43184161356385
Iteration: 10, Func. Count: 89, Neg. LLF: 111.13322105726641
Iteration: 11, Func. Count: 97, Neg. LLF: 111.12934361753678
Iteration: 12, Func. Count: 105, Neg. LLF: 111.12862361417714
Iteration: 13, Func. Count: 113, Neg. LLF: 111.12803928762715
Iteration: 14, Func. Count: 121, Neg. LLF: 111.12791985914183
Iteration: 15, Func. Count: 129, Neg. LLF: 111.12790921457456
Iteration: 16, Func. Count: 137, Neg. LLF: 111.1279082439317
Optimization terminated successfully (Exit mode 0)
Current function value: 111.1279082439317
Iterations: 16
Function evaluations: 137
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 121.15253171166194
Iteration: 2, Func. Count: 23, Neg. LLF: 139.4356188658441
Iteration: 3, Func. Count: 33, Neg. LLF: 117.32951909302739
Iteration: 4, Func. Count: 43, Neg. LLF: 138.75241969991833
Iteration: 5, Func. Count: 53, Neg. LLF: 115.4537113004294
Iteration: 6, Func. Count: 64, Neg. LLF: 111.5997872727357
Iteration: 7, Func. Count: 74, Neg. LLF: 116.42506041463028
Iteration: 8, Func. Count: 84, Neg. LLF: 110.84898693213702
Iteration: 9, Func. Count: 94, Neg. LLF: 112.04813319430009
Iteration: 10, Func. Count: 104, Neg. LLF: 110.06544496034094
Iteration: 11, Func. Count: 113, Neg. LLF: 109.9856753358912
Iteration: 12, Func. Count: 122, Neg. LLF: 110.04177573200678
Iteration: 13, Func. Count: 132, Neg. LLF: 109.92528917772125
Iteration: 14, Func. Count: 141, Neg. LLF: 109.90422690514863
Iteration: 15, Func. Count: 150, Neg. LLF: 109.89825256023865
Iteration: 16, Func. Count: 159, Neg. LLF: 109.89511304196233
Iteration: 17, Func. Count: 168, Neg. LLF: 109.8866343219677
Iteration: 18, Func. Count: 177, Neg. LLF: 109.88129200918615
Iteration: 19, Func. Count: 186, Neg. LLF: 109.87908744935555
Iteration: 20, Func. Count: 195, Neg. LLF: 109.8788880562183
Iteration: 21, Func. Count: 204, Neg. LLF: 109.87887120772669
Iteration: 22, Func. Count: 212, Neg. LLF: 109.87887118654032
Optimization terminated successfully (Exit mode 0)
Current function value: 109.87887120772669
Iterations: 22
Function evaluations: 212
Gradient evaluations: 22
Iteration: 1, Func. Count: 11, Neg. LLF: 132.70968434366833
Iteration: 2, Func. Count: 22, Neg. LLF: 116.73953099420918
Iteration: 3, Func. Count: 34, Neg. LLF: 137.64776256453644
Iteration: 4, Func. Count: 45, Neg. LLF: 1968082.213916348
Iteration: 5, Func. Count: 56, Neg. LLF: 117.7292605867274
Iteration: 6, Func. Count: 67, Neg. LLF: 110.78519822661663
Iteration: 7, Func. Count: 78, Neg. LLF: 110.07495382868771
Iteration: 8, Func. Count: 88, Neg. LLF: 110.01706048723682
Iteration: 9, Func. Count: 98, Neg. LLF: 109.9963370915785
Iteration: 10, Func. Count: 108, Neg. LLF: 109.97771917150534
Iteration: 11, Func. Count: 118, Neg. LLF: 109.97561204634776
Iteration: 12, Func. Count: 128, Neg. LLF: 109.97540339372947
Iteration: 13, Func. Count: 138, Neg. LLF: 109.97540055656471
Iteration: 14, Func. Count: 147, Neg. LLF: 109.97540049050819
Optimization terminated successfully (Exit mode 0)
Current function value: 109.97540055656471
Iterations: 14
Function evaluations: 147
Gradient evaluations: 14
Iteration: 1, Func. Count: 12, Neg. LLF: 118.7821065274817
Iteration: 2, Func. Count: 25, Neg. LLF: 184.0933114358524
Iteration: 3, Func. Count: 37, Neg. LLF: 1559328.4252334426
Iteration: 4, Func. Count: 49, Neg. LLF: 116.58720573117989
Iteration: 5, Func. Count: 61, Neg. LLF: 183.72063234552027
Iteration: 6, Func. Count: 73, Neg. LLF: 153.81603591956224
Iteration: 7, Func. Count: 85, Neg. LLF: 156.97103433763922
Iteration: 8, Func. Count: 97, Neg. LLF: 115.52281567714229
Iteration: 9, Func. Count: 109, Neg. LLF: 111.85528200977605
Iteration: 10, Func. Count: 121, Neg. LLF: 112.35309311661523
Iteration: 11, Func. Count: 133, Neg. LLF: 111.50036805374906
Iteration: 12, Func. Count: 145, Neg. LLF: 109.50230237009289
Iteration: 13, Func. Count: 157, Neg. LLF: 109.24436930480138
Iteration: 14, Func. Count: 169, Neg. LLF: 108.8030722974948
Iteration: 15, Func. Count: 180, Neg. LLF: 109.19662167356243
Iteration: 16, Func. Count: 192, Neg. LLF: 108.64801038755238
Iteration: 17, Func. Count: 203, Neg. LLF: 108.64985577984388
Iteration: 18, Func. Count: 215, Neg. LLF: 108.6465914743736
Iteration: 19, Func. Count: 226, Neg. LLF: 108.64628833302416
Iteration: 20, Func. Count: 237, Neg. LLF: 108.64617518979644
Iteration: 21, Func. Count: 248, Neg. LLF: 108.6461414037352
Iteration: 22, Func. Count: 259, Neg. LLF: 108.64613419817645
Iteration: 23, Func. Count: 269, Neg. LLF: 108.64613407153952
Optimization terminated successfully (Exit mode 0)
Current function value: 108.64613419817645
Iterations: 23
Function evaluations: 269
Gradient evaluations: 23
Iteration: 1, Func. Count: 13, Neg. LLF: 113.66059762210617
Iteration: 2, Func. Count: 26, Neg. LLF: 309.0004354822753
Iteration: 3, Func. Count: 39, Neg. LLF: 114.33816861213478
Iteration: 4, Func. Count: 52, Neg. LLF: 126.21021061565304
Iteration: 5, Func. Count: 65, Neg. LLF: 121.77465252162712
Iteration: 6, Func. Count: 78, Neg. LLF: 116.54470967229335
Iteration: 7, Func. Count: 91, Neg. LLF: 112.8399985716465
Iteration: 8, Func. Count: 104, Neg. LLF: 109.25406402790081
Iteration: 9, Func. Count: 116, Neg. LLF: 109.38826082807817
Iteration: 10, Func. Count: 129, Neg. LLF: 108.90698951003895
Iteration: 11, Func. Count: 141, Neg. LLF: 110.15354367661018
Iteration: 12, Func. Count: 156, Neg. LLF: 109.72150132449245
Iteration: 13, Func. Count: 169, Neg. LLF: 108.67380972622567
Iteration: 14, Func. Count: 181, Neg. LLF: 108.65106021657303
Iteration: 15, Func. Count: 193, Neg. LLF: 108.64677579154366
Iteration: 16, Func. Count: 205, Neg. LLF: 108.6461806088164
Iteration: 17, Func. Count: 217, Neg. LLF: 108.64613644393177
Iteration: 18, Func. Count: 229, Neg. LLF: 108.64613444911394
Iteration: 19, Func. Count: 240, Neg. LLF: 108.64613439228204
Optimization terminated successfully (Exit mode 0)
Current function value: 108.64613444911394
Iterations: 19
Function evaluations: 240
Gradient evaluations: 19
Iteration: 1, Func. Count: 6, Neg. LLF: 124.62443259210298
Iteration: 2, Func. Count: 12, Neg. LLF: 116.98730853099735
Iteration: 3, Func. Count: 17, Neg. LLF: 117.92873715636637
Iteration: 4, Func. Count: 23, Neg. LLF: 118.59538865720536
Iteration: 5, Func. Count: 30, Neg. LLF: 116.66849078309689
Iteration: 6, Func. Count: 35, Neg. LLF: 116.66085551736147
Iteration: 7, Func. Count: 40, Neg. LLF: 116.6600231776112
Iteration: 8, Func. Count: 45, Neg. LLF: 116.66002009290946
Iteration: 9, Func. Count: 49, Neg. LLF: 116.66002009292319
Optimization terminated successfully (Exit mode 0)
Current function value: 116.66002009290946
Iterations: 9
Function evaluations: 49
Gradient evaluations: 9
Iteration: 1, Func. Count: 7, Neg. LLF: 127.37288556768011
Iteration: 2, Func. Count: 16, Neg. LLF: 126.32899794981739
Iteration: 3, Func. Count: 24, Neg. LLF: 117.71416432193116
Iteration: 4, Func. Count: 31, Neg. LLF: 116.48023102946061
Iteration: 5, Func. Count: 37, Neg. LLF: 116.47939867052038
Iteration: 6, Func. Count: 43, Neg. LLF: 116.47938873928229
Iteration: 7, Func. Count: 49, Neg. LLF: 116.4793839506873
Iteration: 8, Func. Count: 55, Neg. LLF: 116.47937173429702
Iteration: 9, Func. Count: 61, Neg. LLF: 116.47936923968773
Iteration: 10, Func. Count: 66, Neg. LLF: 116.4793692397105
Optimization terminated successfully (Exit mode 0)
Current function value: 116.47936923968773
Iterations: 10
Function evaluations: 66
Gradient evaluations: 10
Iteration: 1, Func. Count: 8, Neg. LLF: 127.56817030189762
Iteration: 2, Func. Count: 18, Neg. LLF: 124.62018712451514
Iteration: 3, Func. Count: 27, Neg. LLF: 116.61589334294703
Iteration: 4, Func. Count: 34, Neg. LLF: 116.50068966087699
Iteration: 5, Func. Count: 41, Neg. LLF: 116.47974496705635
Iteration: 6, Func. Count: 48, Neg. LLF: 116.47950911127651
Iteration: 7, Func. Count: 55, Neg. LLF: 116.47946972708225
Iteration: 8, Func. Count: 62, Neg. LLF: 116.47943534165816
Iteration: 9, Func. Count: 69, Neg. LLF: 116.47939410448983
Iteration: 10, Func. Count: 76, Neg. LLF: 116.47937323323862
Iteration: 11, Func. Count: 83, Neg. LLF: 116.47936906354019
Iteration: 12, Func. Count: 89, Neg. LLF: 116.47936907309014
Optimization terminated successfully (Exit mode 0)
Current function value: 116.47936906354019
Iterations: 12
Function evaluations: 89
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 124.13499253143887
Iteration: 2, Func. Count: 19, Neg. LLF: 116.98201924271658
Iteration: 3, Func. Count: 28, Neg. LLF: 116.56292378689437
Iteration: 4, Func. Count: 36, Neg. LLF: 116.74176430240277
Iteration: 5, Func. Count: 45, Neg. LLF: 116.48021414372967
Iteration: 6, Func. Count: 53, Neg. LLF: 116.47974545063458
Iteration: 7, Func. Count: 61, Neg. LLF: 116.47946214402342
Iteration: 8, Func. Count: 69, Neg. LLF: 116.47943613968329
Iteration: 9, Func. Count: 77, Neg. LLF: 116.47941431416743
Iteration: 10, Func. Count: 85, Neg. LLF: 116.47939419005517
Iteration: 11, Func. Count: 93, Neg. LLF: 116.47937505492854
Iteration: 12, Func. Count: 101, Neg. LLF: 116.47936951204355
Iteration: 13, Func. Count: 109, Neg. LLF: 116.47936888203506
Optimization terminated successfully (Exit mode 0)
Current function value: 116.47936888203506
Iterations: 13
Function evaluations: 109
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 122.72080317333243
Iteration: 2, Func. Count: 21, Neg. LLF: 118.05834968145028
Iteration: 3, Func. Count: 32, Neg. LLF: 116.58185388171304
Iteration: 4, Func. Count: 41, Neg. LLF: 116.4920657670676
Iteration: 5, Func. Count: 50, Neg. LLF: 116.49171106007192
Iteration: 6, Func. Count: 60, Neg. LLF: 116.48069228607648
Iteration: 7, Func. Count: 69, Neg. LLF: 116.47976690250918
Iteration: 8, Func. Count: 78, Neg. LLF: 116.47964226101435
Iteration: 9, Func. Count: 87, Neg. LLF: 116.47955077466536
Iteration: 10, Func. Count: 96, Neg. LLF: 116.47948076012653
Iteration: 11, Func. Count: 105, Neg. LLF: 116.47939880751527
Iteration: 12, Func. Count: 114, Neg. LLF: 116.47937211172454
Iteration: 13, Func. Count: 123, Neg. LLF: 116.47936894594932
Iteration: 14, Func. Count: 131, Neg. LLF: 116.47936895290775
Optimization terminated successfully (Exit mode 0)
Current function value: 116.47936894594932
Iterations: 14
Function evaluations: 131
Gradient evaluations: 14
Iteration: 1, Func. Count: 7, Neg. LLF: 123.9561729971551
Iteration: 2, Func. Count: 14, Neg. LLF: 116.93102549998059
Iteration: 3, Func. Count: 20, Neg. LLF: 116.94817253457101
Iteration: 4, Func. Count: 27, Neg. LLF: 118.23330922395104
Iteration: 5, Func. Count: 34, Neg. LLF: 120.66791957301359
Iteration: 6, Func. Count: 41, Neg. LLF: 116.66318709188151
Iteration: 7, Func. Count: 47, Neg. LLF: 116.66027245914267
Iteration: 8, Func. Count: 53, Neg. LLF: 116.66002410151906
Iteration: 9, Func. Count: 59, Neg. LLF: 116.66002020708474
Iteration: 10, Func. Count: 64, Neg. LLF: 116.6600201469392
Optimization terminated successfully (Exit mode 0)
Current function value: 116.66002020708474
Iterations: 10
Function evaluations: 64
Gradient evaluations: 10
Iteration: 1, Func. Count: 8, Neg. LLF: 131.11562276638614
Iteration: 2, Func. Count: 18, Neg. LLF: 141.53684325782712
Iteration: 3, Func. Count: 28, Neg. LLF: 115.50459076105719
Iteration: 4, Func. Count: 35, Neg. LLF: 115.2679785794785
Iteration: 5, Func. Count: 42, Neg. LLF: 115.25273157364633
Iteration: 6, Func. Count: 49, Neg. LLF: 115.24866823893004
Iteration: 7, Func. Count: 56, Neg. LLF: 115.2482277155286
Iteration: 8, Func. Count: 63, Neg. LLF: 115.34704283879343
Optimization terminated successfully (Exit mode 0)
Current function value: 115.24822734382697
Iterations: 9
Function evaluations: 66
Gradient evaluations: 8
Iteration: 1, Func. Count: 9, Neg. LLF: 150.9037520490983
Iteration: 2, Func. Count: 20, Neg. LLF: 115.89855717089023
Iteration: 3, Func. Count: 28, Neg. LLF: 115.56745692791314
Iteration: 4, Func. Count: 36, Neg. LLF: 124.43144895734541
Iteration: 5, Func. Count: 45, Neg. LLF: 115.33943154350818
Iteration: 6, Func. Count: 53, Neg. LLF: 115.2515012538985
Iteration: 7, Func. Count: 61, Neg. LLF: 115.24827701692998
Iteration: 8, Func. Count: 69, Neg. LLF: 115.24760416277151
Iteration: 9, Func. Count: 80, Neg. LLF: 115.24822748339912
Iteration: 10, Func. Count: 88, Neg. LLF: 115.24804368626414
Optimization terminated successfully (Exit mode 0)
Current function value: 115.24822730806763
Iterations: 10
Function evaluations: 98
Gradient evaluations: 10
Iteration: 1, Func. Count: 10, Neg. LLF: 4912173.966544518
Iteration: 2, Func. Count: 21, Neg. LLF: 114.41911681642884
Iteration: 3, Func. Count: 30, Neg. LLF: 114.5807079806657
Iteration: 4, Func. Count: 40, Neg. LLF: 113.90994124642934
Iteration: 5, Func. Count: 49, Neg. LLF: 112.8520210621304
Iteration: 6, Func. Count: 58, Neg. LLF: 112.62227738753155
Iteration: 7, Func. Count: 67, Neg. LLF: 128.23326264736264
Iteration: 8, Func. Count: 78, Neg. LLF: 112.39888555518493
Iteration: 9, Func. Count: 87, Neg. LLF: 112.35256109500432
Iteration: 10, Func. Count: 97, Neg. LLF: 112.22622835504758
Iteration: 11, Func. Count: 106, Neg. LLF: 112.212029743969
Iteration: 12, Func. Count: 115, Neg. LLF: 112.21123352743686
Iteration: 13, Func. Count: 124, Neg. LLF: 112.21119010201711
Iteration: 14, Func. Count: 133, Neg. LLF: 112.21184544998346
Optimization terminated successfully (Exit mode 0)
Current function value: 112.21118970617108
Iterations: 15
Function evaluations: 135
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 396028.8239354527
Iteration: 2, Func. Count: 23, Neg. LLF: 112.62584415472544
Iteration: 3, Func. Count: 33, Neg. LLF: 120.520855798364
Iteration: 4, Func. Count: 44, Neg. LLF: 112.3947443859574
Iteration: 5, Func. Count: 54, Neg. LLF: 112.64360799590433
Iteration: 6, Func. Count: 65, Neg. LLF: 114.04107112430962
Iteration: 7, Func. Count: 76, Neg. LLF: 112.3748974502411
Iteration: 8, Func. Count: 87, Neg. LLF: 112.2115912941612
Iteration: 9, Func. Count: 97, Neg. LLF: 112.2111856796418
Iteration: 10, Func. Count: 107, Neg. LLF: 112.21118028304093
Iteration: 11, Func. Count: 117, Neg. LLF: 112.21157302840831
Optimization terminated successfully (Exit mode 0)
Current function value: 112.21118026444157
Iterations: 12
Function evaluations: 119
Gradient evaluations: 11
Iteration: 1, Func. Count: 8, Neg. LLF: 124.79170124396202
Iteration: 2, Func. Count: 16, Neg. LLF: 119.97585297068935
Iteration: 3, Func. Count: 24, Neg. LLF: 117.00076551400873
Iteration: 4, Func. Count: 31, Neg. LLF: 250.03479224047499
Iteration: 5, Func. Count: 40, Neg. LLF: 116.69066631393231
Iteration: 6, Func. Count: 47, Neg. LLF: 116.6265143575037
Iteration: 7, Func. Count: 54, Neg. LLF: 116.62031266672159
Iteration: 8, Func. Count: 61, Neg. LLF: 116.6201838650643
Iteration: 9, Func. Count: 68, Neg. LLF: 116.62018260571833
Iteration: 10, Func. Count: 74, Neg. LLF: 116.62018256618316
Optimization terminated successfully (Exit mode 0)
Current function value: 116.62018260571833
Iterations: 10
Function evaluations: 74
Gradient evaluations: 10
Iteration: 1, Func. Count: 9, Neg. LLF: 155.13385598549132
Iteration: 2, Func. Count: 19, Neg. LLF: 127.87549606317026
Iteration: 3, Func. Count: 31, Neg. LLF: 116.62887303483323
Iteration: 4, Func. Count: 40, Neg. LLF: 114.95708623692151
Iteration: 5, Func. Count: 48, Neg. LLF: 114.92421015478685
Iteration: 6, Func. Count: 56, Neg. LLF: 114.83546267233689
Iteration: 7, Func. Count: 64, Neg. LLF: 114.81795674097742
Iteration: 8, Func. Count: 72, Neg. LLF: 114.81337339053745
Iteration: 9, Func. Count: 80, Neg. LLF: 114.81124240454857
Iteration: 10, Func. Count: 88, Neg. LLF: 114.81101089637006
Iteration: 11, Func. Count: 96, Neg. LLF: 114.81099480076364
Iteration: 12, Func. Count: 104, Neg. LLF: 114.81099363430226
Iteration: 13, Func. Count: 112, Neg. LLF: 114.81099255790147
Optimization terminated successfully (Exit mode 0)
Current function value: 114.8109936332693
Iterations: 13
Function evaluations: 122
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 134.16687607135484
Iteration: 2, Func. Count: 21, Neg. LLF: 142.75501679924562
Iteration: 3, Func. Count: 32, Neg. LLF: 115.61230834601798
Iteration: 4, Func. Count: 41, Neg. LLF: 114.04865798678544
Iteration: 5, Func. Count: 50, Neg. LLF: 113.81795097041237
Iteration: 6, Func. Count: 59, Neg. LLF: 116.44464763846733
Iteration: 7, Func. Count: 70, Neg. LLF: 113.78982400051596
Iteration: 8, Func. Count: 79, Neg. LLF: 113.78799745533749
Iteration: 9, Func. Count: 88, Neg. LLF: 113.78778951067464
Iteration: 10, Func. Count: 97, Neg. LLF: 113.78777533561419
Iteration: 11, Func. Count: 106, Neg. LLF: 113.78777371884303
Iteration: 12, Func. Count: 114, Neg. LLF: 113.78777343546066
Optimization terminated successfully (Exit mode 0)
Current function value: 113.78777371884303
Iterations: 12
Function evaluations: 114
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 2411576.7173119937
Iteration: 2, Func. Count: 23, Neg. LLF: 116.71248879382117
Iteration: 3, Func. Count: 35, Neg. LLF: 115.17886546833958
Iteration: 4, Func. Count: 45, Neg. LLF: 114.61309963262518
Iteration: 5, Func. Count: 55, Neg. LLF: 114.51992118241792
Iteration: 6, Func. Count: 65, Neg. LLF: 114.28011025977045
Iteration: 7, Func. Count: 75, Neg. LLF: 114.04018110711496
Iteration: 8, Func. Count: 85, Neg. LLF: 113.80660263259506
Iteration: 9, Func. Count: 95, Neg. LLF: 113.7930922911322
Iteration: 10, Func. Count: 105, Neg. LLF: 113.7843688163972
Iteration: 11, Func. Count: 115, Neg. LLF: 113.78731338139832
Iteration: 12, Func. Count: 125, Neg. LLF: 113.78664451750073
Iteration: 13, Func. Count: 145, Neg. LLF: 113.78754047191784
Iteration: 14, Func. Count: 156, Neg. LLF: 113.78607341699998
Iteration: 15, Func. Count: 176, Neg. LLF: 113.85942818557382
Iteration: 16, Func. Count: 188, Neg. LLF: 113.78779784687029
Iteration: 17, Func. Count: 199, Neg. LLF: 113.78777386958882
Iteration: 18, Func. Count: 210, Neg. LLF: 113.78777395935045
Iteration: 19, Func. Count: 221, Neg. LLF: 113.78777371532864
Iteration: 20, Func. Count: 230, Neg. LLF: 113.78777351130707
Optimization terminated successfully (Exit mode 0)
Current function value: 113.78777371532864
Iterations: 21
Function evaluations: 230
Gradient evaluations: 20
Iteration: 1, Func. Count: 12, Neg. LLF: 3090119.5569363357
Iteration: 2, Func. Count: 25, Neg. LLF: 114.73858146149426
Iteration: 3, Func. Count: 36, Neg. LLF: 114.35118906146319
Iteration: 4, Func. Count: 47, Neg. LLF: 113.86422239928396
Iteration: 5, Func. Count: 58, Neg. LLF: 113.94448639140352
Iteration: 6, Func. Count: 70, Neg. LLF: 113.78935638381411
Iteration: 7, Func. Count: 81, Neg. LLF: 113.78779081732864
Iteration: 8, Func. Count: 92, Neg. LLF: 113.78768411121364
Iteration: 9, Func. Count: 104, Neg. LLF: 113.78765868935987
Iteration: 10, Func. Count: 125, Neg. LLF: 113.78774708412602
Iteration: 11, Func. Count: 142, Neg. LLF: 113.78771898255174
Iteration: 12, Func. Count: 163, Neg. LLF: 113.78947758104611
Iteration: 13, Func. Count: 176, Neg. LLF: 113.78819882878732
Iteration: 14, Func. Count: 189, Neg. LLF: 113.78777696592581
Iteration: 15, Func. Count: 201, Neg. LLF: 113.78777371671643
Iteration: 16, Func. Count: 211, Neg. LLF: 113.78777345201144
Optimization terminated successfully (Exit mode 0)
Current function value: 113.78777371671643
Iterations: 17
Function evaluations: 211
Gradient evaluations: 16
Iteration: 1, Func. Count: 9, Neg. LLF: 125.4738989833887
Iteration: 2, Func. Count: 18, Neg. LLF: 123.99403559642238
Iteration: 3, Func. Count: 27, Neg. LLF: 117.1255616597514
Iteration: 4, Func. Count: 35, Neg. LLF: 118.22280041046082
Iteration: 5, Func. Count: 45, Neg. LLF: 116.87513472638115
Iteration: 6, Func. Count: 53, Neg. LLF: 116.6417690189775
Iteration: 7, Func. Count: 61, Neg. LLF: 116.62134544002686
Iteration: 8, Func. Count: 69, Neg. LLF: 116.62022886638196
Iteration: 9, Func. Count: 77, Neg. LLF: 116.62018448167773
Iteration: 10, Func. Count: 85, Neg. LLF: 116.62018260873232
Iteration: 11, Func. Count: 92, Neg. LLF: 116.62018263102561
Optimization terminated successfully (Exit mode 0)
Current function value: 116.62018260873232
Iterations: 11
Function evaluations: 92
Gradient evaluations: 11
Iteration: 1, Func. Count: 10, Neg. LLF: 128.5674797583367
Iteration: 2, Func. Count: 23, Neg. LLF: 162.43508908179476
Iteration: 3, Func. Count: 33, Neg. LLF: 148.2532066916318
Iteration: 4, Func. Count: 43, Neg. LLF: 144.50977309947027
Iteration: 5, Func. Count: 53, Neg. LLF: 164.93057809872874
Iteration: 6, Func. Count: 65, Neg. LLF: 114.9753202313114
Iteration: 7, Func. Count: 74, Neg. LLF: 114.96168573820873
Iteration: 8, Func. Count: 83, Neg. LLF: 114.9259092113268
Iteration: 9, Func. Count: 92, Neg. LLF: 114.9226509539493
Iteration: 10, Func. Count: 101, Neg. LLF: 114.92179650673853
Iteration: 11, Func. Count: 110, Neg. LLF: 114.92098219836538
Iteration: 12, Func. Count: 119, Neg. LLF: 114.91979122505464
Iteration: 13, Func. Count: 128, Neg. LLF: 114.91903890751836
Iteration: 14, Func. Count: 137, Neg. LLF: 114.91884830563546
Iteration: 15, Func. Count: 146, Neg. LLF: 114.9188309301209
Iteration: 16, Func. Count: 155, Neg. LLF: 114.91883011709157
Optimization terminated successfully (Exit mode 0)
Current function value: 114.91883011709157
Iterations: 16
Function evaluations: 155
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 143.5394718468984
Iteration: 2, Func. Count: 23, Neg. LLF: 131.63183533417472
Iteration: 3, Func. Count: 36, Neg. LLF: 115.48887499021947
Iteration: 4, Func. Count: 46, Neg. LLF: 114.78081543001628
Iteration: 5, Func. Count: 56, Neg. LLF: 114.40268270782454
Iteration: 6, Func. Count: 66, Neg. LLF: 114.42668213090516
Iteration: 7, Func. Count: 77, Neg. LLF: 114.35066112082288
Iteration: 8, Func. Count: 87, Neg. LLF: 114.35051279755348
Iteration: 9, Func. Count: 97, Neg. LLF: 114.3504229172293
Iteration: 10, Func. Count: 106, Neg. LLF: 114.3504223776953
Optimization terminated successfully (Exit mode 0)
Current function value: 114.3504229172293
Iterations: 10
Function evaluations: 106
Gradient evaluations: 10
Iteration: 1, Func. Count: 12, Neg. LLF: 16479148.516876658
Iteration: 2, Func. Count: 25, Neg. LLF: 118.08766361683335
Iteration: 3, Func. Count: 38, Neg. LLF: 115.50410444890797
Iteration: 4, Func. Count: 49, Neg. LLF: 114.50690697271557
Iteration: 5, Func. Count: 60, Neg. LLF: 114.38108672133123
Iteration: 6, Func. Count: 71, Neg. LLF: 114.39228556436609
Iteration: 7, Func. Count: 83, Neg. LLF: 114.36027813920333
Iteration: 8, Func. Count: 95, Neg. LLF: 114.35042300717696
Iteration: 9, Func. Count: 105, Neg. LLF: 114.3504224629093
Optimization terminated successfully (Exit mode 0)
Current function value: 114.35042300717696
Iterations: 9
Function evaluations: 105
Gradient evaluations: 9
Iteration: 1, Func. Count: 13, Neg. LLF: 21878224.698276326
Iteration: 2, Func. Count: 27, Neg. LLF: 116.2976107230026
Iteration: 3, Func. Count: 41, Neg. LLF: 115.83274712717804
Iteration: 4, Func. Count: 54, Neg. LLF: 113.86606509920617
Iteration: 5, Func. Count: 66, Neg. LLF: 116.92121158929915
Iteration: 6, Func. Count: 79, Neg. LLF: 116.45156801236283
Iteration: 7, Func. Count: 92, Neg. LLF: 114.60917593240636
Iteration: 8, Func. Count: 105, Neg. LLF: 113.42439629536347
Iteration: 9, Func. Count: 117, Neg. LLF: 113.37831675800832
Iteration: 10, Func. Count: 129, Neg. LLF: 113.33259008440555
Iteration: 11, Func. Count: 141, Neg. LLF: 113.3142858797746
Iteration: 12, Func. Count: 153, Neg. LLF: 113.31053777002373
Iteration: 13, Func. Count: 165, Neg. LLF: 113.31050969553014
Iteration: 14, Func. Count: 177, Neg. LLF: 113.31044695695616
Iteration: 15, Func. Count: 189, Neg. LLF: 113.35917185373651
Iteration: 16, Func. Count: 204, Neg. LLF: 113.32121200203808
Iteration: 17, Func. Count: 218, Neg. LLF: 113.31053553095927
Iteration: 18, Func. Count: 232, Neg. LLF: 113.31046960513184
Iteration: 19, Func. Count: 246, Neg. LLF: 113.31046280711246
Iteration: 20, Func. Count: 259, Neg. LLF: 113.31046275263374
Optimization terminated successfully (Exit mode 0)
Current function value: 113.31044880311227
Iterations: 21
Function evaluations: 269
Gradient evaluations: 20
Iteration: 1, Func. Count: 10, Neg. LLF: 127.30694834880853
Iteration: 2, Func. Count: 20, Neg. LLF: 253.3087399559944
Iteration: 3, Func. Count: 30, Neg. LLF: 118.69287451162208
Iteration: 4, Func. Count: 40, Neg. LLF: 2863220.1818856774
Iteration: 5, Func. Count: 50, Neg. LLF: 1667126.1842104243
Iteration: 6, Func. Count: 60, Neg. LLF: 372205.4523240666
Iteration: 7, Func. Count: 70, Neg. LLF: 1968330.056674161
Iteration: 8, Func. Count: 80, Neg. LLF: 386593.56016029284
Iteration: 9, Func. Count: 90, Neg. LLF: 490303.3322699279
Iteration: 10, Func. Count: 100, Neg. LLF: 122.22054319347423
Iteration: 11, Func. Count: 110, Neg. LLF: 121.74615758470306
Iteration: 12, Func. Count: 120, Neg. LLF: 110.82523559505331
Iteration: 13, Func. Count: 130, Neg. LLF: 111.83753061904747
Iteration: 14, Func. Count: 140, Neg. LLF: 109.76763668042231
Iteration: 15, Func. Count: 149, Neg. LLF: 109.71989556005421
Iteration: 16, Func. Count: 158, Neg. LLF: 109.68587483820272
Iteration: 17, Func. Count: 167, Neg. LLF: 109.6607046567928
Iteration: 18, Func. Count: 176, Neg. LLF: 109.65681649346101
Iteration: 19, Func. Count: 185, Neg. LLF: 109.65570290446314
Iteration: 20, Func. Count: 194, Neg. LLF: 109.65436728446845
Iteration: 21, Func. Count: 203, Neg. LLF: 109.65419250016318
Iteration: 22, Func. Count: 212, Neg. LLF: 109.65416013437404
Iteration: 23, Func. Count: 221, Neg. LLF: 109.6541595182129
Optimization terminated successfully (Exit mode 0)
Current function value: 109.6541595182129
Iterations: 23
Function evaluations: 221
Gradient evaluations: 23
Iteration: 1, Func. Count: 11, Neg. LLF: 120.07638428378469
Iteration: 2, Func. Count: 25, Neg. LLF: 143.30756464504594
Iteration: 3, Func. Count: 36, Neg. LLF: 114.87546353405365
Iteration: 4, Func. Count: 47, Neg. LLF: 150.52329848831783
Iteration: 5, Func. Count: 58, Neg. LLF: 117.30745475807609
Iteration: 6, Func. Count: 70, Neg. LLF: 113.59222854405161
Iteration: 7, Func. Count: 81, Neg. LLF: 112.60105900118735
Iteration: 8, Func. Count: 92, Neg. LLF: 109.04516674298061
Iteration: 9, Func. Count: 102, Neg. LLF: 112.30054028472931
Iteration: 10, Func. Count: 113, Neg. LLF: 108.95403728688682
Iteration: 11, Func. Count: 124, Neg. LLF: 108.75567654297775
Iteration: 12, Func. Count: 134, Neg. LLF: 108.73888262898069
Iteration: 13, Func. Count: 144, Neg. LLF: 108.71581472821707
Iteration: 14, Func. Count: 154, Neg. LLF: 108.70479373340272
Iteration: 15, Func. Count: 164, Neg. LLF: 108.69095130101488
Iteration: 16, Func. Count: 174, Neg. LLF: 108.65679232321372
Iteration: 17, Func. Count: 184, Neg. LLF: 108.63827847569084
Iteration: 18, Func. Count: 194, Neg. LLF: 108.62801235503795
Iteration: 19, Func. Count: 204, Neg. LLF: 108.62706510586267
Iteration: 20, Func. Count: 214, Neg. LLF: 108.62699757766919
Iteration: 21, Func. Count: 224, Neg. LLF: 108.62699581453744
Iteration: 22, Func. Count: 233, Neg. LLF: 108.62699578984063
Optimization terminated successfully (Exit mode 0)
Current function value: 108.62699581453744
Iterations: 22
Function evaluations: 233
Gradient evaluations: 22
Iteration: 1, Func. Count: 12, Neg. LLF: 143.2383667752019
Iteration: 2, Func. Count: 24, Neg. LLF: 123.65489719212395
Iteration: 3, Func. Count: 37, Neg. LLF: 134.83033797513878
Iteration: 4, Func. Count: 49, Neg. LLF: 795159.217244865
Iteration: 5, Func. Count: 61, Neg. LLF: 184.91532339380652
Iteration: 6, Func. Count: 74, Neg. LLF: 113.53692616279646
Iteration: 7, Func. Count: 86, Neg. LLF: 109.25076378884205
Iteration: 8, Func. Count: 97, Neg. LLF: 114.40369365635863
Iteration: 9, Func. Count: 109, Neg. LLF: 109.67424421744134
Iteration: 10, Func. Count: 121, Neg. LLF: 109.63538906095998
Iteration: 11, Func. Count: 133, Neg. LLF: 108.86381492067117
Iteration: 12, Func. Count: 144, Neg. LLF: 108.82158137219076
Iteration: 13, Func. Count: 155, Neg. LLF: 108.75767137495595
Iteration: 14, Func. Count: 166, Neg. LLF: 108.69646263931381
Iteration: 15, Func. Count: 177, Neg. LLF: 108.63921163051609
Iteration: 16, Func. Count: 188, Neg. LLF: 108.62738365449768
Iteration: 17, Func. Count: 199, Neg. LLF: 108.62700170050502
Iteration: 18, Func. Count: 210, Neg. LLF: 108.6269966295369
Iteration: 19, Func. Count: 221, Neg. LLF: 108.62699572808442
Optimization terminated successfully (Exit mode 0)
Current function value: 108.62699572808442
Iterations: 19
Function evaluations: 221
Gradient evaluations: 19
Iteration: 1, Func. Count: 13, Neg. LLF: 117.35761799424439
Iteration: 2, Func. Count: 27, Neg. LLF: 190.15451774070573
Iteration: 3, Func. Count: 40, Neg. LLF: 126.7728689368737
Iteration: 4, Func. Count: 53, Neg. LLF: 1826586.4624262578
Iteration: 5, Func. Count: 66, Neg. LLF: 126.67925613350933
Iteration: 6, Func. Count: 79, Neg. LLF: 144.48499670089083
Iteration: 7, Func. Count: 92, Neg. LLF: 145.9874430908931
Iteration: 8, Func. Count: 105, Neg. LLF: 155.76323728003308
Iteration: 9, Func. Count: 118, Neg. LLF: 131.3550896603809
Iteration: 10, Func. Count: 131, Neg. LLF: 121.50980742804661
Iteration: 11, Func. Count: 144, Neg. LLF: 109.17647361335302
Iteration: 12, Func. Count: 157, Neg. LLF: 107.85280608071899
Iteration: 13, Func. Count: 170, Neg. LLF: 110.97573730644953
Iteration: 14, Func. Count: 183, Neg. LLF: 107.58320771838076
Iteration: 15, Func. Count: 195, Neg. LLF: 107.57799694965033
Iteration: 16, Func. Count: 208, Neg. LLF: 107.50116749478546
Iteration: 17, Func. Count: 220, Neg. LLF: 107.46030066404062
Iteration: 18, Func. Count: 232, Neg. LLF: 107.42850602325333
Iteration: 19, Func. Count: 244, Neg. LLF: 107.37286760112886
Iteration: 20, Func. Count: 256, Neg. LLF: 107.34534830580101
Iteration: 21, Func. Count: 268, Neg. LLF: 107.33574875726084
Iteration: 22, Func. Count: 280, Neg. LLF: 107.33539363585753
Iteration: 23, Func. Count: 292, Neg. LLF: 107.33535721359837
Iteration: 24, Func. Count: 304, Neg. LLF: 107.33535475922885
Iteration: 25, Func. Count: 315, Neg. LLF: 107.33535465841548
Optimization terminated successfully (Exit mode 0)
Current function value: 107.33535475922885
Iterations: 25
Function evaluations: 315
Gradient evaluations: 25
Iteration: 1, Func. Count: 14, Neg. LLF: 114.24303141236555
Iteration: 2, Func. Count: 28, Neg. LLF: 124.8457861776967
Iteration: 3, Func. Count: 42, Neg. LLF: 114.81865477990253
Iteration: 4, Func. Count: 57, Neg. LLF: 181.28765523436914
Iteration: 5, Func. Count: 72, Neg. LLF: 143.86442724524198
Iteration: 6, Func. Count: 86, Neg. LLF: 137.36476664413937
Iteration: 7, Func. Count: 100, Neg. LLF: 136.12796073461257
Iteration: 8, Func. Count: 114, Neg. LLF: 135.46144101992343
Iteration: 9, Func. Count: 128, Neg. LLF: 113.63035197857504
Iteration: 10, Func. Count: 142, Neg. LLF: 142.19556359438803
Iteration: 11, Func. Count: 156, Neg. LLF: 113.91263369035174
Iteration: 12, Func. Count: 170, Neg. LLF: 118.57042093737212
Iteration: 13, Func. Count: 184, Neg. LLF: 110.55625898420459
Iteration: 14, Func. Count: 198, Neg. LLF: 107.6424798436836
Iteration: 15, Func. Count: 212, Neg. LLF: 107.66435402471025
Iteration: 16, Func. Count: 226, Neg. LLF: 107.37191740004542
Iteration: 17, Func. Count: 239, Neg. LLF: 107.42359904836492
Iteration: 18, Func. Count: 253, Neg. LLF: 107.58059708857832
Iteration: 19, Func. Count: 267, Neg. LLF: 107.3497222839074
Iteration: 20, Func. Count: 280, Neg. LLF: 107.34373928813072
Iteration: 21, Func. Count: 293, Neg. LLF: 107.3302457352884
Iteration: 22, Func. Count: 306, Neg. LLF: 107.32686753721428
Iteration: 23, Func. Count: 319, Neg. LLF: 107.32674528078147
Iteration: 24, Func. Count: 333, Neg. LLF: 107.32635577344112
Iteration: 25, Func. Count: 345, Neg. LLF: 107.32635566912198
Optimization terminated successfully (Exit mode 0)
Current function value: 107.32635577344112
Iterations: 25
Function evaluations: 345
Gradient evaluations: 25
Iteration: 1, Func. Count: 7, Neg. LLF: 126.09961790231796
Iteration: 2, Func. Count: 15, Neg. LLF: 120.1155000325244
Iteration: 3, Func. Count: 22, Neg. LLF: 116.90720668472377
Iteration: 4, Func. Count: 28, Neg. LLF: 121.73092263091566
Iteration: 5, Func. Count: 36, Neg. LLF: 120.46953752531188
Iteration: 6, Func. Count: 45, Neg. LLF: 227.50802361489215
Iteration: 7, Func. Count: 53, Neg. LLF: 116.17092279731462
Iteration: 8, Func. Count: 59, Neg. LLF: 116.11893584044603
Iteration: 9, Func. Count: 65, Neg. LLF: 116.11519880383418
Iteration: 10, Func. Count: 71, Neg. LLF: 116.1150453603692
Iteration: 11, Func. Count: 77, Neg. LLF: 116.11494643686103
Iteration: 12, Func. Count: 83, Neg. LLF: 116.11491329987699
Iteration: 13, Func. Count: 89, Neg. LLF: 116.11490960950442
Iteration: 14, Func. Count: 94, Neg. LLF: 116.11490960948822
Optimization terminated successfully (Exit mode 0)
Current function value: 116.11490960950442
Iterations: 14
Function evaluations: 94
Gradient evaluations: 14
Iteration: 1, Func. Count: 8, Neg. LLF: 124.79017091095358
Iteration: 2, Func. Count: 18, Neg. LLF: 123.38195713617783
Iteration: 3, Func. Count: 27, Neg. LLF: 118.74659535079105
Iteration: 4, Func. Count: 35, Neg. LLF: 116.38917475484007
Iteration: 5, Func. Count: 42, Neg. LLF: 120.71366165178394
Iteration: 6, Func. Count: 50, Neg. LLF: 116.32180823911811
Iteration: 7, Func. Count: 57, Neg. LLF: 116.28384829362098
Iteration: 8, Func. Count: 64, Neg. LLF: 116.23917874466605
Iteration: 9, Func. Count: 71, Neg. LLF: 116.15154169974878
Iteration: 10, Func. Count: 78, Neg. LLF: 116.1288975834544
Iteration: 11, Func. Count: 85, Neg. LLF: 116.11608972709527
Iteration: 12, Func. Count: 92, Neg. LLF: 116.11539659952747
Iteration: 13, Func. Count: 99, Neg. LLF: 116.11491664447881
Iteration: 14, Func. Count: 106, Neg. LLF: 116.11491003562134
Iteration: 15, Func. Count: 112, Neg. LLF: 116.11491004178491
Optimization terminated successfully (Exit mode 0)
Current function value: 116.11491003562134
Iterations: 15
Function evaluations: 112
Gradient evaluations: 15
Iteration: 1, Func. Count: 9, Neg. LLF: 126.67455232788429
Iteration: 2, Func. Count: 20, Neg. LLF: 127.56944690334947
Iteration: 3, Func. Count: 31, Neg. LLF: 125.12476586984528
Iteration: 4, Func. Count: 40, Neg. LLF: 116.68723665160327
Iteration: 5, Func. Count: 49, Neg. LLF: 116.33925856664237
Iteration: 6, Func. Count: 57, Neg. LLF: 116.28179151839865
Iteration: 7, Func. Count: 65, Neg. LLF: 116.25591582275554
Iteration: 8, Func. Count: 73, Neg. LLF: 116.18069604801192
Iteration: 9, Func. Count: 81, Neg. LLF: 116.13258580315514
Iteration: 10, Func. Count: 89, Neg. LLF: 116.11749212823467
Iteration: 11, Func. Count: 97, Neg. LLF: 116.11590108988536
Iteration: 12, Func. Count: 105, Neg. LLF: 116.11493738981004
Iteration: 13, Func. Count: 113, Neg. LLF: 116.11491324223402
Iteration: 14, Func. Count: 121, Neg. LLF: 116.11490979239512
Iteration: 15, Func. Count: 128, Neg. LLF: 116.11490980475924
Optimization terminated successfully (Exit mode 0)
Current function value: 116.11490979239512
Iterations: 15
Function evaluations: 128
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 126.63286522213771
Iteration: 2, Func. Count: 22, Neg. LLF: 124.38252039754038
Iteration: 3, Func. Count: 32, Neg. LLF: 146.18930124615346
Iteration: 4, Func. Count: 43, Neg. LLF: 117.10305840148577
Iteration: 5, Func. Count: 53, Neg. LLF: 116.3097848314941
Iteration: 6, Func. Count: 62, Neg. LLF: 116.21542355434121
Iteration: 7, Func. Count: 71, Neg. LLF: 116.15084237198215
Iteration: 8, Func. Count: 80, Neg. LLF: 116.12920019481084
Iteration: 9, Func. Count: 89, Neg. LLF: 116.11732686194007
Iteration: 10, Func. Count: 98, Neg. LLF: 116.11170200234574
Iteration: 11, Func. Count: 107, Neg. LLF: 116.11037273226081
Iteration: 12, Func. Count: 116, Neg. LLF: 116.11031205203554
Iteration: 13, Func. Count: 125, Neg. LLF: 116.11029605057654
Iteration: 14, Func. Count: 134, Neg. LLF: 116.11029205327945
Iteration: 15, Func. Count: 143, Neg. LLF: 116.11029134693258
Optimization terminated successfully (Exit mode 0)
Current function value: 116.11029134693258
Iterations: 15
Function evaluations: 143
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 126.58777169422865
Iteration: 2, Func. Count: 24, Neg. LLF: 124.0918129311381
Iteration: 3, Func. Count: 35, Neg. LLF: 152.340336056158
Iteration: 4, Func. Count: 47, Neg. LLF: 116.66442340463674
Iteration: 5, Func. Count: 58, Neg. LLF: 116.37058781326137
Iteration: 6, Func. Count: 68, Neg. LLF: 116.19184932357781
Iteration: 7, Func. Count: 78, Neg. LLF: 116.22962969677342
Iteration: 8, Func. Count: 89, Neg. LLF: 116.14810582756337
Iteration: 9, Func. Count: 99, Neg. LLF: 116.12612165428604
Iteration: 10, Func. Count: 109, Neg. LLF: 116.11576889146191
Iteration: 11, Func. Count: 119, Neg. LLF: 116.11110432320478
Iteration: 12, Func. Count: 129, Neg. LLF: 116.11037255084591
Iteration: 13, Func. Count: 139, Neg. LLF: 116.11031921890222
Iteration: 14, Func. Count: 149, Neg. LLF: 116.11029420789649
Iteration: 15, Func. Count: 159, Neg. LLF: 116.11029148549568
Iteration: 16, Func. Count: 168, Neg. LLF: 116.11029148678055
Optimization terminated successfully (Exit mode 0)
Current function value: 116.11029148549568
Iterations: 16
Function evaluations: 168
Gradient evaluations: 16
Iteration: 1, Func. Count: 8, Neg. LLF: 125.81442998342811
Iteration: 2, Func. Count: 17, Neg. LLF: 118.10218040175214
Iteration: 3, Func. Count: 25, Neg. LLF: 117.2738973508476
Iteration: 4, Func. Count: 33, Neg. LLF: 132.79794133617668
Iteration: 5, Func. Count: 43, Neg. LLF: 116.68124181974534
Iteration: 6, Func. Count: 51, Neg. LLF: 116.13570800892883
Iteration: 7, Func. Count: 58, Neg. LLF: 116.11806953005403
Iteration: 8, Func. Count: 65, Neg. LLF: 116.1150201536996
Iteration: 9, Func. Count: 72, Neg. LLF: 116.11491115191066
Iteration: 10, Func. Count: 79, Neg. LLF: 116.1149095063478
Iteration: 11, Func. Count: 85, Neg. LLF: 116.11490944739238
Optimization terminated successfully (Exit mode 0)
Current function value: 116.1149095063478
Iterations: 11
Function evaluations: 85
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 126.01938798241113
Iteration: 2, Func. Count: 20, Neg. LLF: 127.5068649628147
Iteration: 3, Func. Count: 30, Neg. LLF: 119.33099336667622
Iteration: 4, Func. Count: 39, Neg. LLF: 118.00724224681647
Iteration: 5, Func. Count: 49, Neg. LLF: 116.37744378319313
Iteration: 6, Func. Count: 57, Neg. LLF: 116.28013860410145
Iteration: 7, Func. Count: 65, Neg. LLF: 116.25866566062534
Iteration: 8, Func. Count: 73, Neg. LLF: 116.1667582484314
Iteration: 9, Func. Count: 81, Neg. LLF: 116.1303028755514
Iteration: 10, Func. Count: 89, Neg. LLF: 116.11734383616547
Iteration: 11, Func. Count: 97, Neg. LLF: 116.1152362745308
Iteration: 12, Func. Count: 105, Neg. LLF: 116.11498193931261
Iteration: 13, Func. Count: 113, Neg. LLF: 116.11492398451688
Iteration: 14, Func. Count: 121, Neg. LLF: 116.11491034418898
Iteration: 15, Func. Count: 129, Neg. LLF: 116.11490950480959
Optimization terminated successfully (Exit mode 0)
Current function value: 116.11490950480959
Iterations: 15
Function evaluations: 129
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 149.6744603862804
Iteration: 2, Func. Count: 21, Neg. LLF: 117.78029635426431
Iteration: 3, Func. Count: 31, Neg. LLF: 115.68400776194788
Iteration: 4, Func. Count: 40, Neg. LLF: 115.45210817942358
Iteration: 5, Func. Count: 49, Neg. LLF: 115.3476514905162
Iteration: 6, Func. Count: 58, Neg. LLF: 115.25375746265765
Iteration: 7, Func. Count: 67, Neg. LLF: 115.24823332935524
Iteration: 8, Func. Count: 76, Neg. LLF: 115.24817602929635
Iteration: 9, Func. Count: 86, Neg. LLF: 115.24815159786485
Optimization terminated successfully (Exit mode 0)
Current function value: 115.24820018953746
Iterations: 9
Function evaluations: 96
Gradient evaluations: 9
Iteration: 1, Func. Count: 11, Neg. LLF: 5016098.866127165
Iteration: 2, Func. Count: 23, Neg. LLF: 113.8152573171411
Iteration: 3, Func. Count: 33, Neg. LLF: 115.20711608432494
Iteration: 4, Func. Count: 44, Neg. LLF: 113.38709816679528
Iteration: 5, Func. Count: 54, Neg. LLF: 112.65277564461984
Iteration: 6, Func. Count: 64, Neg. LLF: 112.47823307336552
Iteration: 7, Func. Count: 74, Neg. LLF: 123.92126087720962
Iteration: 8, Func. Count: 86, Neg. LLF: 112.32325188559192
Iteration: 9, Func. Count: 96, Neg. LLF: 112.2616648252773
Iteration: 10, Func. Count: 106, Neg. LLF: 112.22180412832826
Iteration: 11, Func. Count: 116, Neg. LLF: 112.21440273017528
Iteration: 12, Func. Count: 126, Neg. LLF: 112.21133082998037
Iteration: 13, Func. Count: 136, Neg. LLF: 112.21135039250429
Iteration: 14, Func. Count: 147, Neg. LLF: 112.21107004174793
Iteration: 15, Func. Count: 157, Neg. LLF: 112.21185600678953
Iteration: 16, Func. Count: 169, Neg. LLF: 112.21122014441816
Iteration: 17, Func. Count: 181, Neg. LLF: 112.21121496210895
Iteration: 18, Func. Count: 193, Neg. LLF: 112.2111820028842
Iteration: 19, Func. Count: 204, Neg. LLF: 112.21118199512964
Iteration: 20, Func. Count: 213, Neg. LLF: 112.2111817658105
Optimization terminated successfully (Exit mode 0)
Current function value: 112.21118199512964
Iterations: 22
Function evaluations: 213
Gradient evaluations: 20
Iteration: 1, Func. Count: 12, Neg. LLF: 5355643.669682126
Iteration: 2, Func. Count: 25, Neg. LLF: 112.78590066258985
Iteration: 3, Func. Count: 36, Neg. LLF: 114.63673187091113
Iteration: 4, Func. Count: 48, Neg. LLF: 115.31880893815897
Iteration: 5, Func. Count: 61, Neg. LLF: 114.3716072246293
Iteration: 6, Func. Count: 73, Neg. LLF: 112.49472606982377
Iteration: 7, Func. Count: 85, Neg. LLF: 112.21231003099908
Iteration: 8, Func. Count: 96, Neg. LLF: 112.21125984618145
Iteration: 9, Func. Count: 107, Neg. LLF: 112.21118385915942
Iteration: 10, Func. Count: 118, Neg. LLF: 112.21335148127773
Optimization terminated successfully (Exit mode 0)
Current function value: 112.21118354455719
Iterations: 11
Function evaluations: 120
Gradient evaluations: 10
Iteration: 1, Func. Count: 9, Neg. LLF: 125.96573651468992
Iteration: 2, Func. Count: 19, Neg. LLF: 120.81331767933747
Iteration: 3, Func. Count: 30, Neg. LLF: 117.40502149625335
Iteration: 4, Func. Count: 38, Neg. LLF: 121.98005820833485
Iteration: 5, Func. Count: 47, Neg. LLF: 150.2796230174509
Iteration: 6, Func. Count: 57, Neg. LLF: 116.14071534102945
Iteration: 7, Func. Count: 65, Neg. LLF: 116.07841783995677
Iteration: 8, Func. Count: 73, Neg. LLF: 116.05918541780709
Iteration: 9, Func. Count: 81, Neg. LLF: 116.05598942918695
Iteration: 10, Func. Count: 89, Neg. LLF: 116.0542904115038
Iteration: 11, Func. Count: 97, Neg. LLF: 116.05417063545096
Iteration: 12, Func. Count: 105, Neg. LLF: 116.05415595600414
Iteration: 13, Func. Count: 112, Neg. LLF: 116.05415590843482
Optimization terminated successfully (Exit mode 0)
Current function value: 116.05415595600414
Iterations: 13
Function evaluations: 112
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 156.01247054761558
Iteration: 2, Func. Count: 21, Neg. LLF: 128.37408294968213
Iteration: 3, Func. Count: 34, Neg. LLF: 116.53804106370922
Iteration: 4, Func. Count: 44, Neg. LLF: 114.96225628159239
Iteration: 5, Func. Count: 53, Neg. LLF: 114.93261166691457
Iteration: 6, Func. Count: 63, Neg. LLF: 114.83670027241394
Iteration: 7, Func. Count: 72, Neg. LLF: 114.81707181129582
Iteration: 8, Func. Count: 81, Neg. LLF: 114.81223665539689
Iteration: 9, Func. Count: 90, Neg. LLF: 114.81099279693021
Iteration: 10, Func. Count: 99, Neg. LLF: 114.81099429330429
Iteration: 11, Func. Count: 108, Neg. LLF: 114.81197544398317
Optimization terminated successfully (Exit mode 0)
Current function value: 114.81099428885173
Iterations: 12
Function evaluations: 111
Gradient evaluations: 11
Iteration: 1, Func. Count: 11, Neg. LLF: 135.99348558467008
Iteration: 2, Func. Count: 23, Neg. LLF: 142.46063655303348
Iteration: 3, Func. Count: 35, Neg. LLF: 115.37749415384928
Iteration: 4, Func. Count: 45, Neg. LLF: 114.08153580688439
Iteration: 5, Func. Count: 55, Neg. LLF: 113.8055243452249
Iteration: 6, Func. Count: 65, Neg. LLF: 113.79709964941033
Iteration: 7, Func. Count: 75, Neg. LLF: 113.7885819355588
Iteration: 8, Func. Count: 85, Neg. LLF: 113.78783847475506
Iteration: 9, Func. Count: 95, Neg. LLF: 113.78777764911223
Iteration: 10, Func. Count: 105, Neg. LLF: 113.78777375227884
Iteration: 11, Func. Count: 114, Neg. LLF: 113.78777346891226
Optimization terminated successfully (Exit mode 0)
Current function value: 113.78777375227884
Iterations: 11
Function evaluations: 114
Gradient evaluations: 11
Iteration: 1, Func. Count: 12, Neg. LLF: 2615039.505174216
Iteration: 2, Func. Count: 25, Neg. LLF: 116.38554900952926
Iteration: 3, Func. Count: 38, Neg. LLF: 114.97675173087846
Iteration: 4, Func. Count: 49, Neg. LLF: 114.01061894908713
Iteration: 5, Func. Count: 60, Neg. LLF: 113.89720010359653
Iteration: 6, Func. Count: 71, Neg. LLF: 113.81862476290499
Iteration: 7, Func. Count: 82, Neg. LLF: 113.793579944784
Iteration: 8, Func. Count: 93, Neg. LLF: 113.78787904955757
Iteration: 9, Func. Count: 104, Neg. LLF: 113.78781257643473
Iteration: 10, Func. Count: 115, Neg. LLF: 113.80691521120899
Iteration: 11, Func. Count: 128, Neg. LLF: 113.78803802323954
Iteration: 12, Func. Count: 140, Neg. LLF: 113.78777814553384
Iteration: 13, Func. Count: 151, Neg. LLF: 113.78777623070695
Iteration: 14, Func. Count: 162, Neg. LLF: 113.78777422621354
Iteration: 15, Func. Count: 173, Neg. LLF: 113.78777372657045
Optimization terminated successfully (Exit mode 0)
Current function value: 113.78777372657045
Iterations: 16
Function evaluations: 173
Gradient evaluations: 15
Iteration: 1, Func. Count: 13, Neg. LLF: 3418373.415155922
Iteration: 2, Func. Count: 27, Neg. LLF: 114.83875763562641
Iteration: 3, Func. Count: 39, Neg. LLF: 114.14360561331543
Iteration: 4, Func. Count: 51, Neg. LLF: 114.7342601499136
Iteration: 5, Func. Count: 64, Neg. LLF: 114.04761343114842
Iteration: 6, Func. Count: 76, Neg. LLF: 113.9959256670212
Iteration: 7, Func. Count: 88, Neg. LLF: 113.88186700579325
Iteration: 8, Func. Count: 100, Neg. LLF: 113.78318372400004
Iteration: 9, Func. Count: 112, Neg. LLF: 113.78948022502121
Iteration: 10, Func. Count: 124, Neg. LLF: 113.78010783847074
Iteration: 11, Func. Count: 136, Neg. LLF: 113.7758456673272
Iteration: 12, Func. Count: 158, Neg. LLF: 114.43411077567802
Iteration: 13, Func. Count: 172, Neg. LLF: 113.7920820112696
Iteration: 14, Func. Count: 185, Neg. LLF: 113.78787210548737
Iteration: 15, Func. Count: 198, Neg. LLF: 113.78777397227202
Iteration: 16, Func. Count: 209, Neg. LLF: 113.78777370769578
Optimization terminated successfully (Exit mode 0)
Current function value: 113.78777397227202
Iterations: 17
Function evaluations: 209
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 125.64871421444548
Iteration: 2, Func. Count: 21, Neg. LLF: 120.41903137037183
Iteration: 3, Func. Count: 33, Neg. LLF: 117.21788794356985
Iteration: 4, Func. Count: 42, Neg. LLF: 116.44769124088958
Iteration: 5, Func. Count: 51, Neg. LLF: 121.00947371883882
Iteration: 6, Func. Count: 61, Neg. LLF: 116.25289040479034
Iteration: 7, Func. Count: 70, Neg. LLF: 116.64412530868928
Iteration: 8, Func. Count: 80, Neg. LLF: 116.6630786881974
Iteration: 9, Func. Count: 90, Neg. LLF: 116.03599448652083
Iteration: 10, Func. Count: 100, Neg. LLF: 115.96897092590399
Iteration: 11, Func. Count: 109, Neg. LLF: 115.9679603281247
Iteration: 12, Func. Count: 118, Neg. LLF: 115.96787672118536
Iteration: 13, Func. Count: 127, Neg. LLF: 115.96786976732902
Iteration: 14, Func. Count: 136, Neg. LLF: 115.96786855370125
Iteration: 15, Func. Count: 144, Neg. LLF: 115.96786853846562
Optimization terminated successfully (Exit mode 0)
Current function value: 115.96786855370125
Iterations: 15
Function evaluations: 144
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 129.11799569622866
Iteration: 2, Func. Count: 25, Neg. LLF: 161.7097187739711
Iteration: 3, Func. Count: 36, Neg. LLF: 149.1970629400861
Iteration: 4, Func. Count: 47, Neg. LLF: 145.04002635169786
Iteration: 5, Func. Count: 58, Neg. LLF: 141.9023641370358
Iteration: 6, Func. Count: 70, Neg. LLF: 118.312453950813
Iteration: 7, Func. Count: 81, Neg. LLF: 115.14342431006256
Iteration: 8, Func. Count: 91, Neg. LLF: 114.92060409212505
Iteration: 9, Func. Count: 101, Neg. LLF: 114.90715780613702
Iteration: 10, Func. Count: 111, Neg. LLF: 114.89402960793232
Iteration: 11, Func. Count: 121, Neg. LLF: 114.88422487633686
Iteration: 12, Func. Count: 131, Neg. LLF: 114.88362588513132
Iteration: 13, Func. Count: 141, Neg. LLF: 114.88324656650751
Iteration: 14, Func. Count: 151, Neg. LLF: 114.8825649382452
Iteration: 15, Func. Count: 161, Neg. LLF: 114.88190806593202
Iteration: 16, Func. Count: 171, Neg. LLF: 114.8815987856522
Iteration: 17, Func. Count: 181, Neg. LLF: 114.88155126461372
Iteration: 18, Func. Count: 191, Neg. LLF: 114.88154826173148
Iteration: 19, Func. Count: 200, Neg. LLF: 114.88154821390522
Optimization terminated successfully (Exit mode 0)
Current function value: 114.88154826173148
Iterations: 19
Function evaluations: 200
Gradient evaluations: 19
Iteration: 1, Func. Count: 12, Neg. LLF: 147.16575009661048
Iteration: 2, Func. Count: 25, Neg. LLF: 128.36760630666842
Iteration: 3, Func. Count: 39, Neg. LLF: 115.4425930873234
Iteration: 4, Func. Count: 50, Neg. LLF: 114.7985741082298
Iteration: 5, Func. Count: 61, Neg. LLF: 114.40130734974956
Iteration: 6, Func. Count: 72, Neg. LLF: 114.43279851642721
Iteration: 7, Func. Count: 84, Neg. LLF: 114.35058911761502
Iteration: 8, Func. Count: 95, Neg. LLF: 114.3504602101013
Iteration: 9, Func. Count: 106, Neg. LLF: 114.3504238656896
Iteration: 10, Func. Count: 117, Neg. LLF: 114.35042282263171
Iteration: 11, Func. Count: 127, Neg. LLF: 114.35042228333302
Optimization terminated successfully (Exit mode 0)
Current function value: 114.35042282263171
Iterations: 11
Function evaluations: 127
Gradient evaluations: 11
Iteration: 1, Func. Count: 13, Neg. LLF: 16738203.672221998
Iteration: 2, Func. Count: 27, Neg. LLF: 117.90855549207033
Iteration: 3, Func. Count: 41, Neg. LLF: 115.43815013882701
Iteration: 4, Func. Count: 53, Neg. LLF: 114.55657074428709
Iteration: 5, Func. Count: 65, Neg. LLF: 115.07408946631568
Iteration: 6, Func. Count: 78, Neg. LLF: 114.40850179414147
Iteration: 7, Func. Count: 90, Neg. LLF: 114.3798708282792
Iteration: 8, Func. Count: 102, Neg. LLF: 114.36742895093825
Iteration: 9, Func. Count: 114, Neg. LLF: 114.35724975007714
Iteration: 10, Func. Count: 126, Neg. LLF: 114.3511018233459
Iteration: 11, Func. Count: 138, Neg. LLF: 114.35046191208863
Iteration: 12, Func. Count: 150, Neg. LLF: 114.3504346474974
Iteration: 13, Func. Count: 162, Neg. LLF: 114.35042277643588
Iteration: 14, Func. Count: 173, Neg. LLF: 114.35042223134472
Optimization terminated successfully (Exit mode 0)
Current function value: 114.35042277643588
Iterations: 14
Function evaluations: 173
Gradient evaluations: 14
Iteration: 1, Func. Count: 14, Neg. LLF: 22136152.958658695
Iteration: 2, Func. Count: 29, Neg. LLF: 115.8471521151835
Iteration: 3, Func. Count: 44, Neg. LLF: 115.32627148909734
Iteration: 4, Func. Count: 57, Neg. LLF: 113.9682383484051
Iteration: 5, Func. Count: 70, Neg. LLF: 118.70894050118379
Iteration: 6, Func. Count: 85, Neg. LLF: 113.63918658365893
Iteration: 7, Func. Count: 99, Neg. LLF: 118.72869462987755
Iteration: 8, Func. Count: 113, Neg. LLF: 118.60857535773346
Iteration: 9, Func. Count: 128, Neg. LLF: 113.59308801778525
Iteration: 10, Func. Count: 142, Neg. LLF: 113.32228223352854
Iteration: 11, Func. Count: 156, Neg. LLF: 113.3081514592068
Iteration: 12, Func. Count: 169, Neg. LLF: 113.30785865583508
Iteration: 13, Func. Count: 182, Neg. LLF: 113.30785738268217
Iteration: 14, Func. Count: 194, Neg. LLF: 113.30785713639251
Optimization terminated successfully (Exit mode 0)
Current function value: 113.30785738268217
Iterations: 14
Function evaluations: 194
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 118.13810973083807
Iteration: 2, Func. Count: 22, Neg. LLF: 123.9842453043719
Iteration: 3, Func. Count: 34, Neg. LLF: 579.8041660726581
Iteration: 4, Func. Count: 45, Neg. LLF: 269616.900118884
Iteration: 5, Func. Count: 56, Neg. LLF: 319662.4532619915
Iteration: 6, Func. Count: 67, Neg. LLF: 2613787.5641617947
Iteration: 7, Func. Count: 78, Neg. LLF: 1165177.2931425585
Iteration: 8, Func. Count: 89, Neg. LLF: 719159.6815920909
Iteration: 9, Func. Count: 100, Neg. LLF: 2496461.5875019366
Iteration: 10, Func. Count: 111, Neg. LLF: 5202.38344367898
Iteration: 11, Func. Count: 122, Neg. LLF: 143.63204690025958
Iteration: 12, Func. Count: 133, Neg. LLF: 1099.4251175588436
Iteration: 13, Func. Count: 144, Neg. LLF: 108.79376076687036
Iteration: 14, Func. Count: 155, Neg. LLF: 107.84393005538271
Iteration: 15, Func. Count: 166, Neg. LLF: 107.83744598403555
Iteration: 16, Func. Count: 177, Neg. LLF: 106.75019718876571
Iteration: 17, Func. Count: 187, Neg. LLF: 106.71287859545103
Iteration: 18, Func. Count: 198, Neg. LLF: 106.65861844268613
Iteration: 19, Func. Count: 208, Neg. LLF: 106.65829753820626
Iteration: 20, Func. Count: 218, Neg. LLF: 106.65818371646536
Iteration: 21, Func. Count: 228, Neg. LLF: 106.65817586551069
Iteration: 22, Func. Count: 237, Neg. LLF: 106.65817585493008
Optimization terminated successfully (Exit mode 0)
Current function value: 106.65817586551069
Iterations: 22
Function evaluations: 237
Gradient evaluations: 22
Iteration: 1, Func. Count: 12, Neg. LLF: 120.46490999574833
Iteration: 2, Func. Count: 27, Neg. LLF: 141.3354979238347
Iteration: 3, Func. Count: 39, Neg. LLF: 115.06030183206254
Iteration: 4, Func. Count: 51, Neg. LLF: 117.07493577033317
Iteration: 5, Func. Count: 63, Neg. LLF: 139.78836821085636
Iteration: 6, Func. Count: 76, Neg. LLF: 137.1924408244664
Iteration: 7, Func. Count: 89, Neg. LLF: 107.54489651843168
Iteration: 8, Func. Count: 100, Neg. LLF: 109.13505039169367
Iteration: 9, Func. Count: 112, Neg. LLF: 111.90484314760099
Iteration: 10, Func. Count: 125, Neg. LLF: 108.39985153176569
Iteration: 11, Func. Count: 138, Neg. LLF: 110.25160555855474
Iteration: 12, Func. Count: 151, Neg. LLF: 107.12968551595418
Iteration: 13, Func. Count: 163, Neg. LLF: 106.82331694187985
Iteration: 14, Func. Count: 174, Neg. LLF: 106.79398198655005
Iteration: 15, Func. Count: 185, Neg. LLF: 106.76899582667156
Iteration: 16, Func. Count: 196, Neg. LLF: 106.75253935146684
Iteration: 17, Func. Count: 207, Neg. LLF: 106.7310169051107
Iteration: 18, Func. Count: 218, Neg. LLF: 106.7229986838434
Iteration: 19, Func. Count: 229, Neg. LLF: 106.71130530079594
Iteration: 20, Func. Count: 240, Neg. LLF: 106.6958608130687
Iteration: 21, Func. Count: 251, Neg. LLF: 106.6813090083247
Iteration: 22, Func. Count: 262, Neg. LLF: 106.66186930113172
Iteration: 23, Func. Count: 273, Neg. LLF: 106.658871391776
Iteration: 24, Func. Count: 284, Neg. LLF: 106.65822114125564
Iteration: 25, Func. Count: 295, Neg. LLF: 106.65817580479751
Iteration: 26, Func. Count: 305, Neg. LLF: 106.65817579587902
Optimization terminated successfully (Exit mode 0)
Current function value: 106.65817580479751
Iterations: 26
Function evaluations: 305
Gradient evaluations: 26
Iteration: 1, Func. Count: 13, Neg. LLF: 166.5232707477449
Iteration: 2, Func. Count: 26, Neg. LLF: 127.09098247645865
Iteration: 3, Func. Count: 40, Neg. LLF: 129.43210966035298
Iteration: 4, Func. Count: 53, Neg. LLF: 186.57079845144614
Iteration: 5, Func. Count: 67, Neg. LLF: 214869.86383072956
Iteration: 6, Func. Count: 80, Neg. LLF: 109.42932216350549
Iteration: 7, Func. Count: 93, Neg. LLF: 109.18661208668738
Iteration: 8, Func. Count: 106, Neg. LLF: 106.88383544292509
Iteration: 9, Func. Count: 118, Neg. LLF: 110.85140604064327
Iteration: 10, Func. Count: 132, Neg. LLF: 109.87710653705886
Iteration: 11, Func. Count: 145, Neg. LLF: 106.79117671240061
Iteration: 12, Func. Count: 157, Neg. LLF: 106.81273007702104
Iteration: 13, Func. Count: 170, Neg. LLF: 106.76671270924757
Iteration: 14, Func. Count: 182, Neg. LLF: 106.73037412712387
Iteration: 15, Func. Count: 194, Neg. LLF: 106.67403111721804
Iteration: 16, Func. Count: 206, Neg. LLF: 106.66066029980496
Iteration: 17, Func. Count: 218, Neg. LLF: 106.6584303909362
Iteration: 18, Func. Count: 230, Neg. LLF: 106.65823660979565
Iteration: 19, Func. Count: 242, Neg. LLF: 106.6581970203905
Iteration: 20, Func. Count: 254, Neg. LLF: 106.6581788059823
Iteration: 21, Func. Count: 266, Neg. LLF: 106.6581760939113
Iteration: 22, Func. Count: 277, Neg. LLF: 106.65817624995067
Optimization terminated successfully (Exit mode 0)
Current function value: 106.6581760939113
Iterations: 22
Function evaluations: 277
Gradient evaluations: 22
Iteration: 1, Func. Count: 14, Neg. LLF: 115.55843885336341
Iteration: 2, Func. Count: 28, Neg. LLF: 166.22052269938877
Iteration: 3, Func. Count: 42, Neg. LLF: 155.91524744691094
Iteration: 4, Func. Count: 57, Neg. LLF: 131.7945402512651
Iteration: 5, Func. Count: 73, Neg. LLF: 191247.97546063695
Iteration: 6, Func. Count: 87, Neg. LLF: 182.5098607894384
Iteration: 7, Func. Count: 101, Neg. LLF: 545.4628364547095
Iteration: 8, Func. Count: 115, Neg. LLF: 140.684894091588
Iteration: 9, Func. Count: 129, Neg. LLF: 148.21473226536347
Iteration: 10, Func. Count: 143, Neg. LLF: 139.34384378730263
Iteration: 11, Func. Count: 157, Neg. LLF: 121.67887755951894
Iteration: 12, Func. Count: 171, Neg. LLF: 121.208325437116
Iteration: 13, Func. Count: 185, Neg. LLF: 114.18642521926371
Iteration: 14, Func. Count: 199, Neg. LLF: 138.55734114286673
Iteration: 15, Func. Count: 213, Neg. LLF: 108.9386929667293
Iteration: 16, Func. Count: 227, Neg. LLF: 108.15181603917915
Iteration: 17, Func. Count: 241, Neg. LLF: 106.4084441966183
Iteration: 18, Func. Count: 255, Neg. LLF: 112.47754037212222
Iteration: 19, Func. Count: 269, Neg. LLF: 105.95149323283464
Iteration: 20, Func. Count: 282, Neg. LLF: 105.93875903966699
Iteration: 21, Func. Count: 295, Neg. LLF: 105.93822701793407
Iteration: 22, Func. Count: 308, Neg. LLF: 105.93780242829163
Iteration: 23, Func. Count: 321, Neg. LLF: 105.9375984129096
Iteration: 24, Func. Count: 334, Neg. LLF: 105.93750005451258
Iteration: 25, Func. Count: 347, Neg. LLF: 105.93745900826025
Iteration: 26, Func. Count: 360, Neg. LLF: 105.93745607195471
Iteration: 27, Func. Count: 372, Neg. LLF: 105.93745596873423
Optimization terminated successfully (Exit mode 0)
Current function value: 105.93745607195471
Iterations: 27
Function evaluations: 372
Gradient evaluations: 27
Iteration: 1, Func. Count: 15, Neg. LLF: 117.53666989037133
Iteration: 2, Func. Count: 30, Neg. LLF: 109.66604406796982
Iteration: 3, Func. Count: 45, Neg. LLF: 161.8703817456673
Iteration: 4, Func. Count: 62, Neg. LLF: 3869762.158648648
Iteration: 5, Func. Count: 77, Neg. LLF: 340263.4892143017
Iteration: 6, Func. Count: 92, Neg. LLF: 115.86823787143985
Iteration: 7, Func. Count: 107, Neg. LLF: 118.67942323535328
Iteration: 8, Func. Count: 122, Neg. LLF: 109.58536394501083
Iteration: 9, Func. Count: 137, Neg. LLF: 108.50729234155897
Iteration: 10, Func. Count: 152, Neg. LLF: 107.05896126815895
Iteration: 11, Func. Count: 167, Neg. LLF: 106.44575378297999
Iteration: 12, Func. Count: 182, Neg. LLF: 107.10921440211506
Iteration: 13, Func. Count: 197, Neg. LLF: 106.23210109805505
Iteration: 14, Func. Count: 212, Neg. LLF: 105.3155271769385
Iteration: 15, Func. Count: 226, Neg. LLF: 105.27851384137158
Iteration: 16, Func. Count: 240, Neg. LLF: 105.26564369693271
Iteration: 17, Func. Count: 254, Neg. LLF: 107.24481883939836
Iteration: 18, Func. Count: 270, Neg. LLF: 105.24046675000163
Iteration: 19, Func. Count: 284, Neg. LLF: 105.23724511235355
Iteration: 20, Func. Count: 298, Neg. LLF: 105.23696791249566
Iteration: 21, Func. Count: 312, Neg. LLF: 105.23659919614069
Iteration: 22, Func. Count: 326, Neg. LLF: 105.23636943236508
Iteration: 23, Func. Count: 340, Neg. LLF: 105.2362088142252
Iteration: 24, Func. Count: 354, Neg. LLF: 105.23617283117717
Iteration: 25, Func. Count: 368, Neg. LLF: 105.23616920754878
Iteration: 26, Func. Count: 381, Neg. LLF: 105.2361690941196
Optimization terminated successfully (Exit mode 0)
Current function value: 105.23616920754878
Iterations: 26
Function evaluations: 381
Gradient evaluations: 26
Iteration: 1, Func. Count: 8, Neg. LLF: 121.10230437080375
Iteration: 2, Func. Count: 16, Neg. LLF: 123.37411714729674
Iteration: 3, Func. Count: 26, Neg. LLF: 115.11647852162015
Iteration: 4, Func. Count: 33, Neg. LLF: 140.49948339646343
Iteration: 5, Func. Count: 41, Neg. LLF: 303.180230936563
Iteration: 6, Func. Count: 51, Neg. LLF: 128.95454805022786
Iteration: 7, Func. Count: 60, Neg. LLF: 127.67029764792453
Iteration: 8, Func. Count: 68, Neg. LLF: 114.03656420389463
Iteration: 9, Func. Count: 75, Neg. LLF: 113.97359285080239
Iteration: 10, Func. Count: 82, Neg. LLF: 113.94437979106634
Iteration: 11, Func. Count: 89, Neg. LLF: 113.92116877425875
Iteration: 12, Func. Count: 96, Neg. LLF: 113.91508178888573
Iteration: 13, Func. Count: 103, Neg. LLF: 113.91201596727848
Iteration: 14, Func. Count: 110, Neg. LLF: 113.91180897132159
Iteration: 15, Func. Count: 117, Neg. LLF: 113.91180075881248
Iteration: 16, Func. Count: 123, Neg. LLF: 113.91180074465889
Optimization terminated successfully (Exit mode 0)
Current function value: 113.91180075881248
Iterations: 16
Function evaluations: 123
Gradient evaluations: 16
Iteration: 1, Func. Count: 9, Neg. LLF: 126.51925732590851
Iteration: 2, Func. Count: 20, Neg. LLF: 128.17202586556215
Iteration: 3, Func. Count: 30, Neg. LLF: 119.38375284418537
Iteration: 4, Func. Count: 39, Neg. LLF: 117.41038760887335
Iteration: 5, Func. Count: 48, Neg. LLF: 116.56863981431233
Iteration: 6, Func. Count: 57, Neg. LLF: 116.26735418389202
Iteration: 7, Func. Count: 65, Neg. LLF: 116.23656496521468
Iteration: 8, Func. Count: 73, Neg. LLF: 116.14302787111781
Iteration: 9, Func. Count: 81, Neg. LLF: 116.12388445770553
Iteration: 10, Func. Count: 89, Neg. LLF: 116.11568907605267
Iteration: 11, Func. Count: 97, Neg. LLF: 116.11505974142229
Iteration: 12, Func. Count: 105, Neg. LLF: 116.11494562313375
Iteration: 13, Func. Count: 113, Neg. LLF: 116.11491475209372
Iteration: 14, Func. Count: 121, Neg. LLF: 116.11490974566512
Iteration: 15, Func. Count: 128, Neg. LLF: 116.11490975183791
Optimization terminated successfully (Exit mode 0)
Current function value: 116.11490974566512
Iterations: 15
Function evaluations: 128
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 126.70398101328765
Iteration: 2, Func. Count: 22, Neg. LLF: 127.85359257050646
Iteration: 3, Func. Count: 34, Neg. LLF: 124.83366802757334
Iteration: 4, Func. Count: 44, Neg. LLF: 116.54406723861607
Iteration: 5, Func. Count: 54, Neg. LLF: 116.37765074867805
Iteration: 6, Func. Count: 63, Neg. LLF: 116.27765012881174
Iteration: 7, Func. Count: 72, Neg. LLF: 116.25673748579545
Iteration: 8, Func. Count: 81, Neg. LLF: 116.16692110747627
Iteration: 9, Func. Count: 90, Neg. LLF: 116.12922204077185
Iteration: 10, Func. Count: 99, Neg. LLF: 116.11682237131839
Iteration: 11, Func. Count: 108, Neg. LLF: 116.11566927656834
Iteration: 12, Func. Count: 117, Neg. LLF: 116.1149266074645
Iteration: 13, Func. Count: 126, Neg. LLF: 116.11491001655652
Iteration: 14, Func. Count: 134, Neg. LLF: 116.11491002889022
Optimization terminated successfully (Exit mode 0)
Current function value: 116.11491001655652
Iterations: 14
Function evaluations: 134
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 126.68352654857362
Iteration: 2, Func. Count: 24, Neg. LLF: 123.02710113832558
Iteration: 3, Func. Count: 35, Neg. LLF: 120.32033122083755
Iteration: 4, Func. Count: 46, Neg. LLF: 116.42364068460965
Iteration: 5, Func. Count: 56, Neg. LLF: 116.75198121774802
Iteration: 6, Func. Count: 67, Neg. LLF: 116.17547470431178
Iteration: 7, Func. Count: 77, Neg. LLF: 116.1460323919021
Iteration: 8, Func. Count: 87, Neg. LLF: 116.11911767637417
Iteration: 9, Func. Count: 97, Neg. LLF: 116.11438164663917
Iteration: 10, Func. Count: 107, Neg. LLF: 116.1106114204513
Iteration: 11, Func. Count: 117, Neg. LLF: 116.1103192308222
Iteration: 12, Func. Count: 127, Neg. LLF: 116.1102922215729
Iteration: 13, Func. Count: 137, Neg. LLF: 116.11029151077021
Optimization terminated successfully (Exit mode 0)
Current function value: 116.11029151077021
Iterations: 13
Function evaluations: 137
Gradient evaluations: 13
Iteration: 1, Func. Count: 12, Neg. LLF: 126.652057002738
Iteration: 2, Func. Count: 26, Neg. LLF: 124.20050936072361
Iteration: 3, Func. Count: 39, Neg. LLF: 128.98085544920693
Iteration: 4, Func. Count: 51, Neg. LLF: 117.09806906042321
Iteration: 5, Func. Count: 63, Neg. LLF: 116.269030522177
Iteration: 6, Func. Count: 74, Neg. LLF: 116.18926763153344
Iteration: 7, Func. Count: 85, Neg. LLF: 116.15523419713676
Iteration: 8, Func. Count: 96, Neg. LLF: 116.1480654714929
Iteration: 9, Func. Count: 107, Neg. LLF: 116.12649701437365
Iteration: 10, Func. Count: 118, Neg. LLF: 116.11434562748227
Iteration: 11, Func. Count: 129, Neg. LLF: 116.11091255763075
Iteration: 12, Func. Count: 140, Neg. LLF: 116.11033884069823
Iteration: 13, Func. Count: 151, Neg. LLF: 116.11030313784515
Iteration: 14, Func. Count: 162, Neg. LLF: 116.11029322262169
Iteration: 15, Func. Count: 173, Neg. LLF: 116.11029139593103
Iteration: 16, Func. Count: 183, Neg. LLF: 116.11029139721086
Optimization terminated successfully (Exit mode 0)
Current function value: 116.11029139593103
Iterations: 16
Function evaluations: 183
Gradient evaluations: 16
Iteration: 1, Func. Count: 9, Neg. LLF: 121.10305924817055
Iteration: 2, Func. Count: 18, Neg. LLF: 122.95735851347787
Iteration: 3, Func. Count: 29, Neg. LLF: 115.29180217445722
Iteration: 4, Func. Count: 37, Neg. LLF: 167.06556902149416
Iteration: 5, Func. Count: 46, Neg. LLF: 2290.4106142393516
Iteration: 6, Func. Count: 56, Neg. LLF: 146.1236461507023
Iteration: 7, Func. Count: 66, Neg. LLF: 114.22279309758109
Iteration: 8, Func. Count: 74, Neg. LLF: 115.34413164946875
Iteration: 9, Func. Count: 83, Neg. LLF: 113.99415035582619
Iteration: 10, Func. Count: 91, Neg. LLF: 114.07873519784523
Iteration: 11, Func. Count: 100, Neg. LLF: 113.97264369968836
Iteration: 12, Func. Count: 109, Neg. LLF: 113.89667866657736
Iteration: 13, Func. Count: 117, Neg. LLF: 113.88390004728525
Iteration: 14, Func. Count: 125, Neg. LLF: 113.88078569118399
Iteration: 15, Func. Count: 133, Neg. LLF: 113.88068784854245
Iteration: 16, Func. Count: 141, Neg. LLF: 113.8806867558769
Iteration: 17, Func. Count: 148, Neg. LLF: 113.88068672273448
Optimization terminated successfully (Exit mode 0)
Current function value: 113.8806867558769
Iterations: 17
Function evaluations: 148
Gradient evaluations: 17
Iteration: 1, Func. Count: 10, Neg. LLF: 126.0489093422485
Iteration: 2, Func. Count: 22, Neg. LLF: 127.74167610988661
Iteration: 3, Func. Count: 33, Neg. LLF: 119.99140233670997
Iteration: 4, Func. Count: 43, Neg. LLF: 118.48283483847392
Iteration: 5, Func. Count: 54, Neg. LLF: 116.39456681422321
Iteration: 6, Func. Count: 63, Neg. LLF: 116.2817228749258
Iteration: 7, Func. Count: 72, Neg. LLF: 116.25807612558759
Iteration: 8, Func. Count: 81, Neg. LLF: 116.19653943495156
Iteration: 9, Func. Count: 90, Neg. LLF: 116.14034714983204
Iteration: 10, Func. Count: 99, Neg. LLF: 116.12457709047123
Iteration: 11, Func. Count: 108, Neg. LLF: 116.11593007894604
Iteration: 12, Func. Count: 117, Neg. LLF: 116.11509719708873
Iteration: 13, Func. Count: 126, Neg. LLF: 116.11495639907496
Iteration: 14, Func. Count: 135, Neg. LLF: 116.11491368574295
Iteration: 15, Func. Count: 144, Neg. LLF: 116.11490963267842
Iteration: 16, Func. Count: 152, Neg. LLF: 116.11490963885744
Optimization terminated successfully (Exit mode 0)
Current function value: 116.11490963267842
Iterations: 16
Function evaluations: 152
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 150.45109261400802
Iteration: 2, Func. Count: 24, Neg. LLF: 115.64117086925081
Iteration: 3, Func. Count: 34, Neg. LLF: 115.9045976659924
Iteration: 4, Func. Count: 45, Neg. LLF: 115.67710254075499
Iteration: 5, Func. Count: 56, Neg. LLF: 115.60685181545831
Iteration: 6, Func. Count: 66, Neg. LLF: 115.4989647136314
Iteration: 7, Func. Count: 76, Neg. LLF: 115.33827532536348
Iteration: 8, Func. Count: 86, Neg. LLF: 115.25641872227234
Iteration: 9, Func. Count: 96, Neg. LLF: 116.80337808701482
Iteration: 10, Func. Count: 108, Neg. LLF: 115.31081096946143
Iteration: 11, Func. Count: 119, Neg. LLF: 115.2482276030941
Iteration: 12, Func. Count: 128, Neg. LLF: 115.24822715726125
Optimization terminated successfully (Exit mode 0)
Current function value: 115.2482276030941
Iterations: 13
Function evaluations: 128
Gradient evaluations: 12
Iteration: 1, Func. Count: 12, Neg. LLF: 4919127.486056672
Iteration: 2, Func. Count: 25, Neg. LLF: 114.34122404713403
Iteration: 3, Func. Count: 36, Neg. LLF: 114.05792396633232
Iteration: 4, Func. Count: 47, Neg. LLF: 113.32222478851824
Iteration: 5, Func. Count: 58, Neg. LLF: 112.70075413321493
Iteration: 6, Func. Count: 69, Neg. LLF: 114.75416261291146
Iteration: 7, Func. Count: 82, Neg. LLF: 112.34612227572225
Iteration: 8, Func. Count: 93, Neg. LLF: 112.56146678114483
Iteration: 9, Func. Count: 105, Neg. LLF: 121.44520483680647
Iteration: 10, Func. Count: 118, Neg. LLF: 112.21185808799102
Iteration: 11, Func. Count: 129, Neg. LLF: 112.21121052629006
Iteration: 12, Func. Count: 140, Neg. LLF: 112.21118981842054
Iteration: 13, Func. Count: 151, Neg. LLF: 112.21118330210238
Iteration: 14, Func. Count: 162, Neg. LLF: 112.21118113974934
Iteration: 15, Func. Count: 173, Neg. LLF: 112.21118242565528
Optimization terminated successfully (Exit mode 0)
Current function value: 112.21118118432456
Iterations: 16
Function evaluations: 175
Gradient evaluations: 15
Iteration: 1, Func. Count: 13, Neg. LLF: 507337.60129637836
Iteration: 2, Func. Count: 27, Neg. LLF: 112.74929242068347
Iteration: 3, Func. Count: 39, Neg. LLF: 115.42274847639027
Iteration: 4, Func. Count: 52, Neg. LLF: 113.22522556114515
Iteration: 5, Func. Count: 65, Neg. LLF: 112.44826389508312
Iteration: 6, Func. Count: 77, Neg. LLF: 123.35846408517679
Iteration: 7, Func. Count: 90, Neg. LLF: 115.16543691703289
Iteration: 8, Func. Count: 104, Neg. LLF: 123.08665521468168
Iteration: 9, Func. Count: 118, Neg. LLF: 112.22860079494944
Iteration: 10, Func. Count: 130, Neg. LLF: 112.21425773626915
Iteration: 11, Func. Count: 142, Neg. LLF: 112.2114709648165
Iteration: 12, Func. Count: 154, Neg. LLF: 112.21118265317548
Iteration: 13, Func. Count: 166, Neg. LLF: 112.21116044791586
Iteration: 14, Func. Count: 178, Neg. LLF: 112.21274728671388
Iteration: 15, Func. Count: 192, Neg. LLF: 112.21123074219153
Iteration: 16, Func. Count: 206, Neg. LLF: 112.21118915704395
Iteration: 17, Func. Count: 220, Neg. LLF: 112.21118199471991
Iteration: 18, Func. Count: 231, Neg. LLF: 112.21118192687629
Optimization terminated successfully (Exit mode 0)
Current function value: 112.21118199471991
Iterations: 19
Function evaluations: 231
Gradient evaluations: 18
Iteration: 1, Func. Count: 10, Neg. LLF: 121.0828048403776
Iteration: 2, Func. Count: 20, Neg. LLF: 123.26173703641237
Iteration: 3, Func. Count: 32, Neg. LLF: 115.1429434641609
Iteration: 4, Func. Count: 41, Neg. LLF: 153.6289905582631
Iteration: 5, Func. Count: 51, Neg. LLF: 20658096.14731168
Iteration: 6, Func. Count: 62, Neg. LLF: 124.92623632086013
Iteration: 7, Func. Count: 72, Neg. LLF: 114.56080168072741
Iteration: 8, Func. Count: 82, Neg. LLF: 119.6502022049937
Iteration: 9, Func. Count: 92, Neg. LLF: 113.91858664463513
Iteration: 10, Func. Count: 101, Neg. LLF: 113.90053685867447
Iteration: 11, Func. Count: 111, Neg. LLF: 113.84686894229924
Iteration: 12, Func. Count: 121, Neg. LLF: 113.70696040344163
Iteration: 13, Func. Count: 130, Neg. LLF: 113.69740822049619
Iteration: 14, Func. Count: 139, Neg. LLF: 113.6894965515011
Iteration: 15, Func. Count: 148, Neg. LLF: 113.68770410319388
Iteration: 16, Func. Count: 157, Neg. LLF: 113.68752391440768
Iteration: 17, Func. Count: 166, Neg. LLF: 113.68752136615412
Iteration: 18, Func. Count: 174, Neg. LLF: 113.68752131488368
Optimization terminated successfully (Exit mode 0)
Current function value: 113.68752136615412
Iterations: 18
Function evaluations: 174
Gradient evaluations: 18
Iteration: 1, Func. Count: 11, Neg. LLF: 144.5685656437564
Iteration: 2, Func. Count: 24, Neg. LLF: 131.5918895532016
Iteration: 3, Func. Count: 37, Neg. LLF: 115.43434145834047
Iteration: 4, Func. Count: 47, Neg. LLF: 115.0964194239528
Iteration: 5, Func. Count: 57, Neg. LLF: 114.81680189719543
Iteration: 6, Func. Count: 67, Neg. LLF: 114.82617760123927
Iteration: 7, Func. Count: 78, Neg. LLF: 114.81161344538276
Iteration: 8, Func. Count: 88, Neg. LLF: 114.81099990437056
Iteration: 9, Func. Count: 98, Neg. LLF: 114.8109991791325
Optimization terminated successfully (Exit mode 0)
Current function value: 114.8109991791325
Iterations: 9
Function evaluations: 98
Gradient evaluations: 9
Iteration: 1, Func. Count: 12, Neg. LLF: 134.04357440136093
Iteration: 2, Func. Count: 25, Neg. LLF: 139.58873085240353
Iteration: 3, Func. Count: 38, Neg. LLF: 115.57359772827864
Iteration: 4, Func. Count: 49, Neg. LLF: 114.05336138516809
Iteration: 5, Func. Count: 60, Neg. LLF: 113.8113965111269
Iteration: 6, Func. Count: 71, Neg. LLF: 115.1094004249002
Iteration: 7, Func. Count: 84, Neg. LLF: 113.79121399134556
Iteration: 8, Func. Count: 95, Neg. LLF: 113.78804355072938
Iteration: 9, Func. Count: 106, Neg. LLF: 113.78779560848092
Iteration: 10, Func. Count: 117, Neg. LLF: 113.78777631971347
Iteration: 11, Func. Count: 128, Neg. LLF: 113.78777373836901
Iteration: 12, Func. Count: 138, Neg. LLF: 113.78777345500417
Optimization terminated successfully (Exit mode 0)
Current function value: 113.78777373836901
Iterations: 12
Function evaluations: 138
Gradient evaluations: 12
Iteration: 1, Func. Count: 13, Neg. LLF: 2400649.2652913043
Iteration: 2, Func. Count: 27, Neg. LLF: 116.8553584503594
Iteration: 3, Func. Count: 41, Neg. LLF: 114.8899934491282
Iteration: 4, Func. Count: 53, Neg. LLF: 113.96021421710721
Iteration: 5, Func. Count: 65, Neg. LLF: 113.83383099400639
Iteration: 6, Func. Count: 77, Neg. LLF: 113.79946298986769
Iteration: 7, Func. Count: 89, Neg. LLF: 113.79084696363617
Iteration: 8, Func. Count: 101, Neg. LLF: 113.78781948570372
Iteration: 9, Func. Count: 113, Neg. LLF: 113.78778345359557
Iteration: 10, Func. Count: 125, Neg. LLF: 113.78777966575687
Iteration: 11, Func. Count: 137, Neg. LLF: 113.78767371294589
Iteration: 12, Func. Count: 152, Neg. LLF: 113.78777442872433
Iteration: 13, Func. Count: 164, Neg. LLF: 113.78777407234764
Optimization terminated successfully (Exit mode 0)
Current function value: 113.78777407234764
Iterations: 13
Function evaluations: 164
Gradient evaluations: 13
Iteration: 1, Func. Count: 14, Neg. LLF: 3088458.299283204
Iteration: 2, Func. Count: 29, Neg. LLF: 114.75061843357798
Iteration: 3, Func. Count: 42, Neg. LLF: 113.93670473358772
Iteration: 4, Func. Count: 55, Neg. LLF: 114.83649506121483
Iteration: 5, Func. Count: 69, Neg. LLF: 113.83116040200709
Iteration: 6, Func. Count: 82, Neg. LLF: 113.80091377460907
Iteration: 7, Func. Count: 95, Neg. LLF: 113.78614154201615
Iteration: 8, Func. Count: 108, Neg. LLF: 113.786607271619
Iteration: 9, Func. Count: 121, Neg. LLF: 113.78793513580911
Iteration: 10, Func. Count: 135, Neg. LLF: 113.78891378681513
Iteration: 11, Func. Count: 150, Neg. LLF: 113.78777528384012
Iteration: 12, Func. Count: 164, Neg. LLF: 113.7877741069164
Iteration: 13, Func. Count: 176, Neg. LLF: 113.78777384236281
Optimization terminated successfully (Exit mode 0)
Current function value: 113.7877741069164
Iterations: 14
Function evaluations: 176
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 121.0652062768891
Iteration: 2, Func. Count: 22, Neg. LLF: 118.48541906351649
Iteration: 3, Func. Count: 35, Neg. LLF: 115.62172614336113
Iteration: 4, Func. Count: 45, Neg. LLF: 205.82283412059186
Iteration: 5, Func. Count: 56, Neg. LLF: 210.51262558173323
Iteration: 6, Func. Count: 68, Neg. LLF: 119.14014155372136
Iteration: 7, Func. Count: 79, Neg. LLF: 120.74840914613583
Iteration: 8, Func. Count: 91, Neg. LLF: 114.69257428691267
Iteration: 9, Func. Count: 102, Neg. LLF: 114.09995938782167
Iteration: 10, Func. Count: 112, Neg. LLF: 113.90876855217434
Iteration: 11, Func. Count: 122, Neg. LLF: 113.94442679986817
Iteration: 12, Func. Count: 133, Neg. LLF: 113.8972393275659
Iteration: 13, Func. Count: 144, Neg. LLF: 113.74224948558007
Iteration: 14, Func. Count: 154, Neg. LLF: 113.72601684631518
Iteration: 15, Func. Count: 164, Neg. LLF: 113.7003391636415
Iteration: 16, Func. Count: 174, Neg. LLF: 113.68625049048168
Iteration: 17, Func. Count: 184, Neg. LLF: 113.67407834353166
Iteration: 18, Func. Count: 194, Neg. LLF: 113.6725333749177
Iteration: 19, Func. Count: 204, Neg. LLF: 113.67235878692047
Iteration: 20, Func. Count: 214, Neg. LLF: 113.67235357473882
Iteration: 21, Func. Count: 223, Neg. LLF: 113.67235356762507
Optimization terminated successfully (Exit mode 0)
Current function value: 113.67235357473882
Iterations: 21
Function evaluations: 223
Gradient evaluations: 21
Iteration: 1, Func. Count: 12, Neg. LLF: 134.03543140733498
Iteration: 2, Func. Count: 27, Neg. LLF: 156.9882244800626
Iteration: 3, Func. Count: 39, Neg. LLF: 152.31370542431785
Iteration: 4, Func. Count: 51, Neg. LLF: 141.55136107456855
Iteration: 5, Func. Count: 63, Neg. LLF: 147.4742234406841
Iteration: 6, Func. Count: 76, Neg. LLF: 155.91731813968008
Iteration: 7, Func. Count: 89, Neg. LLF: 138.00304651745012
Iteration: 8, Func. Count: 102, Neg. LLF: 115.08931606449266
Iteration: 9, Func. Count: 113, Neg. LLF: 114.9057673188164
Iteration: 10, Func. Count: 124, Neg. LLF: 114.90335389755191
Iteration: 11, Func. Count: 135, Neg. LLF: 114.89465509833563
Iteration: 12, Func. Count: 146, Neg. LLF: 114.89164529972086
Iteration: 13, Func. Count: 157, Neg. LLF: 114.8910939568396
Iteration: 14, Func. Count: 168, Neg. LLF: 114.89090941523516
Iteration: 15, Func. Count: 179, Neg. LLF: 114.89054597983805
Iteration: 16, Func. Count: 190, Neg. LLF: 114.88970335278917
Iteration: 17, Func. Count: 201, Neg. LLF: 114.88791820286336
Iteration: 18, Func. Count: 212, Neg. LLF: 114.88511377522093
Iteration: 19, Func. Count: 223, Neg. LLF: 114.88265455800865
Iteration: 20, Func. Count: 234, Neg. LLF: 114.88166421750161
Iteration: 21, Func. Count: 245, Neg. LLF: 114.8815500775994
Iteration: 22, Func. Count: 256, Neg. LLF: 114.88154822935816
Iteration: 23, Func. Count: 266, Neg. LLF: 114.88154818150255
Optimization terminated successfully (Exit mode 0)
Current function value: 114.88154822935816
Iterations: 23
Function evaluations: 266
Gradient evaluations: 23
Iteration: 1, Func. Count: 13, Neg. LLF: 142.0052000949228
Iteration: 2, Func. Count: 27, Neg. LLF: 134.49885230050944
Iteration: 3, Func. Count: 42, Neg. LLF: 115.47232894237283
Iteration: 4, Func. Count: 54, Neg. LLF: 114.84812014182074
Iteration: 5, Func. Count: 66, Neg. LLF: 114.39603379040189
Iteration: 6, Func. Count: 78, Neg. LLF: 114.42453756493809
Iteration: 7, Func. Count: 91, Neg. LLF: 114.35053084800504
Iteration: 8, Func. Count: 103, Neg. LLF: 114.35042956177871
Iteration: 9, Func. Count: 115, Neg. LLF: 114.3504248016833
Iteration: 10, Func. Count: 127, Neg. LLF: 114.35042001100841
Iteration: 11, Func. Count: 139, Neg. LLF: 114.35042102907994
Optimization terminated successfully (Exit mode 0)
Current function value: 114.3504200120028
Iterations: 11
Function evaluations: 149
Gradient evaluations: 11
Iteration: 1, Func. Count: 14, Neg. LLF: 16446646.240963077
Iteration: 2, Func. Count: 29, Neg. LLF: 118.52901700659879
Iteration: 3, Func. Count: 44, Neg. LLF: 115.27908584649843
Iteration: 4, Func. Count: 57, Neg. LLF: 114.65138224086546
Iteration: 5, Func. Count: 70, Neg. LLF: 114.67522723448062
Iteration: 6, Func. Count: 84, Neg. LLF: 114.41798178593127
Iteration: 7, Func. Count: 97, Neg. LLF: 114.40271116604649
Iteration: 8, Func. Count: 111, Neg. LLF: 114.3740209564865
Iteration: 9, Func. Count: 125, Neg. LLF: 114.35858963600349
Iteration: 10, Func. Count: 138, Neg. LLF: 114.35048595122493
Iteration: 11, Func. Count: 151, Neg. LLF: 114.35042774027562
Iteration: 12, Func. Count: 164, Neg. LLF: 114.35042764026116
Iteration: 13, Func. Count: 178, Neg. LLF: 114.34963491309163
Optimization terminated successfully (Exit mode 0)
Current function value: 114.35042574876331
Iterations: 13
Function evaluations: 188
Gradient evaluations: 13
Iteration: 1, Func. Count: 15, Neg. LLF: 21854005.60230403
Iteration: 2, Func. Count: 31, Neg. LLF: 115.88012559290871
Iteration: 3, Func. Count: 47, Neg. LLF: 115.47207267672323
Iteration: 4, Func. Count: 61, Neg. LLF: 114.56329573824318
Iteration: 5, Func. Count: 75, Neg. LLF: 285.74502549430315
Iteration: 6, Func. Count: 90, Neg. LLF: 118.99696341404417
Iteration: 7, Func. Count: 106, Neg. LLF: 117.28107649266835
Iteration: 8, Func. Count: 122, Neg. LLF: 116.7471564194724
Iteration: 9, Func. Count: 137, Neg. LLF: 113.34119184091371
Iteration: 10, Func. Count: 151, Neg. LLF: 113.33747384616576
Iteration: 11, Func. Count: 166, Neg. LLF: 113.31697785739829
Iteration: 12, Func. Count: 181, Neg. LLF: 113.30840767854151
Iteration: 13, Func. Count: 195, Neg. LLF: 113.30787547433681
Iteration: 14, Func. Count: 209, Neg. LLF: 113.30785781659536
Iteration: 15, Func. Count: 223, Neg. LLF: 113.30785722809443
Optimization terminated successfully (Exit mode 0)
Current function value: 113.30785722809443
Iterations: 15
Function evaluations: 223
Gradient evaluations: 15
Iteration: 1, Func. Count: 12, Neg. LLF: 119.59652019275849
Iteration: 2, Func. Count: 24, Neg. LLF: 169.00061384078745
Iteration: 3, Func. Count: 36, Neg. LLF: 134.6471909146835
Iteration: 4, Func. Count: 48, Neg. LLF: 340354.9521872737
Iteration: 5, Func. Count: 60, Neg. LLF: 216585.42249399613
Iteration: 6, Func. Count: 72, Neg. LLF: 738.9071883472124
Iteration: 7, Func. Count: 84, Neg. LLF: 1385.6417520298223
Iteration: 8, Func. Count: 96, Neg. LLF: 991.0282043722361
Iteration: 9, Func. Count: 108, Neg. LLF: 785.7768378179165
Iteration: 10, Func. Count: 120, Neg. LLF: 136.0755656383743
Iteration: 11, Func. Count: 132, Neg. LLF: 113.18127161290084
Iteration: 12, Func. Count: 144, Neg. LLF: 107.61945482347542
Iteration: 13, Func. Count: 156, Neg. LLF: 106.93756571598016
Iteration: 14, Func. Count: 167, Neg. LLF: 106.80896280465137
Iteration: 15, Func. Count: 178, Neg. LLF: 109.85247502773916
Iteration: 16, Func. Count: 190, Neg. LLF: 106.71419274595638
Iteration: 17, Func. Count: 201, Neg. LLF: 106.66945156678037
Iteration: 18, Func. Count: 212, Neg. LLF: 106.65996353752067
Iteration: 19, Func. Count: 223, Neg. LLF: 106.65856206036776
Iteration: 20, Func. Count: 234, Neg. LLF: 106.65818908786311
Iteration: 21, Func. Count: 245, Neg. LLF: 106.6581789964062
Iteration: 22, Func. Count: 256, Neg. LLF: 106.65817597313655
Iteration: 23, Func. Count: 266, Neg. LLF: 106.65817596255117
Optimization terminated successfully (Exit mode 0)
Current function value: 106.65817597313655
Iterations: 23
Function evaluations: 266
Gradient evaluations: 23
Iteration: 1, Func. Count: 13, Neg. LLF: 122.6123637429238
Iteration: 2, Func. Count: 29, Neg. LLF: 132.1343552285714
Iteration: 3, Func. Count: 42, Neg. LLF: 114.75357830898852
Iteration: 4, Func. Count: 55, Neg. LLF: 125.35151518643652
Iteration: 5, Func. Count: 68, Neg. LLF: 147.92968926455535
Iteration: 6, Func. Count: 82, Neg. LLF: 120.23188550246326
Iteration: 7, Func. Count: 96, Neg. LLF: 108.00213844171428
Iteration: 8, Func. Count: 108, Neg. LLF: 110.01017756348504
Iteration: 9, Func. Count: 121, Neg. LLF: 128.2860111732335
Iteration: 10, Func. Count: 136, Neg. LLF: 132.92174751010666
Iteration: 11, Func. Count: 149, Neg. LLF: 106.8154956706681
Iteration: 12, Func. Count: 161, Neg. LLF: 107.3281278122311
Iteration: 13, Func. Count: 174, Neg. LLF: 107.59026604909467
Iteration: 14, Func. Count: 187, Neg. LLF: 106.77184994721641
Iteration: 15, Func. Count: 199, Neg. LLF: 106.7624176656045
Iteration: 16, Func. Count: 211, Neg. LLF: 106.7466866056707
Iteration: 17, Func. Count: 223, Neg. LLF: 106.72418579746795
Iteration: 18, Func. Count: 235, Neg. LLF: 106.71222931161624
Iteration: 19, Func. Count: 247, Neg. LLF: 106.700827430046
Iteration: 20, Func. Count: 259, Neg. LLF: 106.6900138945605
Iteration: 21, Func. Count: 271, Neg. LLF: 106.67757643454473
Iteration: 22, Func. Count: 283, Neg. LLF: 106.66765275307395
Iteration: 23, Func. Count: 295, Neg. LLF: 106.66181670727998
Iteration: 24, Func. Count: 307, Neg. LLF: 106.65896911431886
Iteration: 25, Func. Count: 319, Neg. LLF: 106.6582923780427
Iteration: 26, Func. Count: 331, Neg. LLF: 106.65818174270971
Iteration: 27, Func. Count: 343, Neg. LLF: 106.65817612311835
Iteration: 28, Func. Count: 355, Neg. LLF: 106.65817559577121
Optimization terminated successfully (Exit mode 0)
Current function value: 106.65817559577121
Iterations: 28
Function evaluations: 355
Gradient evaluations: 28
Iteration: 1, Func. Count: 14, Neg. LLF: 134.58190017104212
Iteration: 2, Func. Count: 28, Neg. LLF: 114.93855658716775
Iteration: 3, Func. Count: 42, Neg. LLF: 135.97793245501458
Iteration: 4, Func. Count: 56, Neg. LLF: 126.44496943807972
Iteration: 5, Func. Count: 70, Neg. LLF: 400.6495255470312
Iteration: 6, Func. Count: 84, Neg. LLF: 1055.170024391096
Iteration: 7, Func. Count: 98, Neg. LLF: 113.59070289347075
Iteration: 8, Func. Count: 112, Neg. LLF: 106.92981169623144
Iteration: 9, Func. Count: 125, Neg. LLF: 162798.70169470485
Iteration: 10, Func. Count: 140, Neg. LLF: 108.50494042426286
Iteration: 11, Func. Count: 154, Neg. LLF: 106.86404123760356
Iteration: 12, Func. Count: 168, Neg. LLF: 107.0822805749753
Iteration: 13, Func. Count: 182, Neg. LLF: 106.7551821333988
Iteration: 14, Func. Count: 195, Neg. LLF: 106.7181370414129
Iteration: 15, Func. Count: 208, Neg. LLF: 106.67400919160718
Iteration: 16, Func. Count: 221, Neg. LLF: 106.66221167402156
Iteration: 17, Func. Count: 234, Neg. LLF: 106.65981345554864
Iteration: 18, Func. Count: 247, Neg. LLF: 106.65891168721245
Iteration: 19, Func. Count: 260, Neg. LLF: 106.65832288086777
Iteration: 20, Func. Count: 273, Neg. LLF: 106.65819439798732
Iteration: 21, Func. Count: 286, Neg. LLF: 106.65817752373835
Iteration: 22, Func. Count: 299, Neg. LLF: 106.65817589660615
Iteration: 23, Func. Count: 311, Neg. LLF: 106.65817605268634
Optimization terminated successfully (Exit mode 0)
Current function value: 106.65817589660615
Iterations: 23
Function evaluations: 311
Gradient evaluations: 23
Iteration: 1, Func. Count: 15, Neg. LLF: 117.2082863216455
Iteration: 2, Func. Count: 31, Neg. LLF: 189.13007241020776
Iteration: 3, Func. Count: 46, Neg. LLF: 151.3465449927351
Iteration: 4, Func. Count: 61, Neg. LLF: 160.41662446093852
Iteration: 5, Func. Count: 78, Neg. LLF: 420126.15938154026
Iteration: 6, Func. Count: 93, Neg. LLF: 174.192576788765
Iteration: 7, Func. Count: 108, Neg. LLF: 161.20872181482386
Iteration: 8, Func. Count: 123, Neg. LLF: 139.72094328374334
Iteration: 9, Func. Count: 138, Neg. LLF: 140.9849973157507
Iteration: 10, Func. Count: 153, Neg. LLF: 129.6347203040362
Iteration: 11, Func. Count: 168, Neg. LLF: 124.84975121085776
Iteration: 12, Func. Count: 183, Neg. LLF: 630.0701973663812
Iteration: 13, Func. Count: 198, Neg. LLF: 132.74034863802794
Iteration: 14, Func. Count: 213, Neg. LLF: 108.96229709305355
Iteration: 15, Func. Count: 228, Neg. LLF: 108.5672913637684
Iteration: 16, Func. Count: 243, Neg. LLF: 106.0218250265413
Iteration: 17, Func. Count: 257, Neg. LLF: 106.53852239652096
Iteration: 18, Func. Count: 272, Neg. LLF: 106.8299747564115
Iteration: 19, Func. Count: 287, Neg. LLF: 106.0289002277554
Iteration: 20, Func. Count: 302, Neg. LLF: 105.9421319422067
Iteration: 21, Func. Count: 316, Neg. LLF: 105.93815849594807
Iteration: 22, Func. Count: 330, Neg. LLF: 105.93771239071233
Iteration: 23, Func. Count: 344, Neg. LLF: 105.93751459373509
Iteration: 24, Func. Count: 358, Neg. LLF: 105.93747359953785
Iteration: 25, Func. Count: 372, Neg. LLF: 105.93745679999
Iteration: 26, Func. Count: 386, Neg. LLF: 105.9374559687408
Optimization terminated successfully (Exit mode 0)
Current function value: 105.9374559687408
Iterations: 26
Function evaluations: 386
Gradient evaluations: 26
Iteration: 1, Func. Count: 16, Neg. LLF: 115.38367184464278
Iteration: 2, Func. Count: 32, Neg. LLF: 109.45006776544578
Iteration: 3, Func. Count: 48, Neg. LLF: 185.12403933425253
Iteration: 4, Func. Count: 66, Neg. LLF: 5240500.064109027
Iteration: 5, Func. Count: 82, Neg. LLF: 391330.77857405564
Iteration: 6, Func. Count: 98, Neg. LLF: 116.70798088458518
Iteration: 7, Func. Count: 114, Neg. LLF: 121.34672033498279
Iteration: 8, Func. Count: 130, Neg. LLF: 108.68300863227816
Iteration: 9, Func. Count: 146, Neg. LLF: 107.3655320459016
Iteration: 10, Func. Count: 162, Neg. LLF: 107.3049305122881
Iteration: 11, Func. Count: 178, Neg. LLF: 106.99315687912508
Iteration: 12, Func. Count: 194, Neg. LLF: 106.89024387032758
Iteration: 13, Func. Count: 210, Neg. LLF: 105.31316463698401
Iteration: 14, Func. Count: 225, Neg. LLF: 105.27337420395057
Iteration: 15, Func. Count: 240, Neg. LLF: 105.35692019808877
Iteration: 16, Func. Count: 256, Neg. LLF: 105.23972018225844
Iteration: 17, Func. Count: 271, Neg. LLF: 105.23695541063948
Iteration: 18, Func. Count: 286, Neg. LLF: 105.23627177234732
Iteration: 19, Func. Count: 301, Neg. LLF: 105.2361913526329
Iteration: 20, Func. Count: 316, Neg. LLF: 105.23617144137656
Iteration: 21, Func. Count: 331, Neg. LLF: 105.23617009721974
Iteration: 22, Func. Count: 345, Neg. LLF: 105.2361699837304
Optimization terminated successfully (Exit mode 0)
Current function value: 105.23617009721974
Iterations: 22
Function evaluations: 345
Gradient evaluations: 22
Iteration: 1, Func. Count: 11, Neg. LLF: 118.13810973083807
Iteration: 2, Func. Count: 22, Neg. LLF: 123.9842453043719
Iteration: 3, Func. Count: 34, Neg. LLF: 579.8041660726581
Iteration: 4, Func. Count: 45, Neg. LLF: 269616.900118884
Iteration: 5, Func. Count: 56, Neg. LLF: 319662.4532619915
Iteration: 6, Func. Count: 67, Neg. LLF: 2613787.5641617947
Iteration: 7, Func. Count: 78, Neg. LLF: 1165177.2931425585
Iteration: 8, Func. Count: 89, Neg. LLF: 719159.6815920909
Iteration: 9, Func. Count: 100, Neg. LLF: 2496461.5875019366
Iteration: 10, Func. Count: 111, Neg. LLF: 5202.38344367898
Iteration: 11, Func. Count: 122, Neg. LLF: 143.63204690025958
Iteration: 12, Func. Count: 133, Neg. LLF: 1099.4251175588436
Iteration: 13, Func. Count: 144, Neg. LLF: 108.79376076687036
Iteration: 14, Func. Count: 155, Neg. LLF: 107.84393005538271
Iteration: 15, Func. Count: 166, Neg. LLF: 107.83744598403555
Iteration: 16, Func. Count: 177, Neg. LLF: 106.75019718876571
Iteration: 17, Func. Count: 187, Neg. LLF: 106.71287859545103
Iteration: 18, Func. Count: 198, Neg. LLF: 106.65861844268613
Iteration: 19, Func. Count: 208, Neg. LLF: 106.65829753820626
Iteration: 20, Func. Count: 218, Neg. LLF: 106.65818371646536
Iteration: 21, Func. Count: 228, Neg. LLF: 106.65817586551069
Iteration: 22, Func. Count: 237, Neg. LLF: 106.65817585493008
Optimization terminated successfully (Exit mode 0)
Current function value: 106.65817586551069
Iterations: 22
Function evaluations: 237
Gradient evaluations: 22
Iteration: 1, Func. Count: 5, Neg. LLF: 121.92181819144336
Iteration: 2, Func. Count: 10, Neg. LLF: 116.82043161331453
Iteration: 3, Func. Count: 14, Neg. LLF: 116.14265790832528
Iteration: 4, Func. Count: 18, Neg. LLF: 116.01063493238277
Iteration: 5, Func. Count: 22, Neg. LLF: 115.9572603293507
Iteration: 6, Func. Count: 26, Neg. LLF: 115.95451028588529
Iteration: 7, Func. Count: 30, Neg. LLF: 115.95443162875418
Iteration: 8, Func. Count: 34, Neg. LLF: 115.9544306349138
Optimization terminated successfully (Exit mode 0)
Current function value: 115.9544306349138
Iterations: 8
Function evaluations: 34
Gradient evaluations: 8
Iteration: 1, Func. Count: 6, Neg. LLF: 179.31865815726556
Iteration: 2, Func. Count: 13, Neg. LLF: 120.40259706402637
Iteration: 3, Func. Count: 19, Neg. LLF: 114.75865861650715
Iteration: 4, Func. Count: 24, Neg. LLF: 114.89101260451694
Iteration: 5, Func. Count: 30, Neg. LLF: 114.75676222657256
Iteration: 6, Func. Count: 35, Neg. LLF: 114.75650474225459
Iteration: 7, Func. Count: 39, Neg. LLF: 114.75650442435797
Optimization terminated successfully (Exit mode 0)
Current function value: 114.75650474225459
Iterations: 7
Function evaluations: 39
Gradient evaluations: 7
Iteration: 1, Func. Count: 7, Neg. LLF: 30902151.644351944
Iteration: 2, Func. Count: 16, Neg. LLF: 122.37362031443965
Iteration: 3, Func. Count: 23, Neg. LLF: 114.87131589366872
Iteration: 4, Func. Count: 29, Neg. LLF: 114.84752661218727
Iteration: 5, Func. Count: 35, Neg. LLF: 114.81822688182639
Iteration: 6, Func. Count: 41, Neg. LLF: 114.80182458620462
Iteration: 7, Func. Count: 47, Neg. LLF: 114.7990713391589
Iteration: 8, Func. Count: 54, Neg. LLF: 114.76345806042505
Iteration: 9, Func. Count: 60, Neg. LLF: 114.75737165475732
Iteration: 10, Func. Count: 66, Neg. LLF: 114.75653901649811
Iteration: 11, Func. Count: 72, Neg. LLF: 114.75650593758255
Iteration: 12, Func. Count: 78, Neg. LLF: 114.75650495786951
Optimization terminated successfully (Exit mode 0)
Current function value: 114.75650495786951
Iterations: 12
Function evaluations: 78
Gradient evaluations: 12
Iteration: 1, Func. Count: 8, Neg. LLF: 120.00855084193074
Iteration: 2, Func. Count: 16, Neg. LLF: 122.43048401037589
Iteration: 3, Func. Count: 24, Neg. LLF: 110.41420848344232
Iteration: 4, Func. Count: 31, Neg. LLF: 117.9191610659619
Iteration: 5, Func. Count: 40, Neg. LLF: 110.0253743605794
Iteration: 6, Func. Count: 47, Neg. LLF: 110.01751501753257
Iteration: 7, Func. Count: 54, Neg. LLF: 110.01382268259884
Iteration: 8, Func. Count: 61, Neg. LLF: 110.01211359733274
Iteration: 9, Func. Count: 68, Neg. LLF: 110.01191594779435
Iteration: 10, Func. Count: 75, Neg. LLF: 110.01963060809703
Iteration: 11, Func. Count: 84, Neg. LLF: 110.0125329974982
Iteration: 12, Func. Count: 92, Neg. LLF: 110.01205094165155
Iteration: 13, Func. Count: 100, Neg. LLF: 110.01199666120938
Iteration: 14, Func. Count: 106, Neg. LLF: 110.01199642499
Optimization terminated successfully (Exit mode 0)
Current function value: 110.01199666120938
Iterations: 15
Function evaluations: 106
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 31106123.98225292
Iteration: 2, Func. Count: 20, Neg. LLF: 134.6715124385238
Iteration: 3, Func. Count: 30, Neg. LLF: 112.68467200537357
Iteration: 4, Func. Count: 38, Neg. LLF: 111.38938544192975
Iteration: 5, Func. Count: 46, Neg. LLF: 110.55677385841902
Iteration: 6, Func. Count: 54, Neg. LLF: 110.28830174528657
Iteration: 7, Func. Count: 62, Neg. LLF: 110.17881586242683
Iteration: 8, Func. Count: 71, Neg. LLF: 110.01658815127756
Iteration: 9, Func. Count: 79, Neg. LLF: 110.0122458125984
Iteration: 10, Func. Count: 87, Neg. LLF: 110.01199722044525
Iteration: 11, Func. Count: 95, Neg. LLF: 110.01199664752455
Optimization terminated successfully (Exit mode 0)
Current function value: 110.01199664752455
Iterations: 11
Function evaluations: 95
Gradient evaluations: 11
Iteration: 1, Func. Count: 6, Neg. LLF: 121.91249843807441
Iteration: 2, Func. Count: 12, Neg. LLF: 116.71621790790796
Iteration: 3, Func. Count: 17, Neg. LLF: 125.20501576162829
Iteration: 4, Func. Count: 23, Neg. LLF: 116.14482444909238
Iteration: 5, Func. Count: 28, Neg. LLF: 115.97083307440823
Iteration: 6, Func. Count: 33, Neg. LLF: 115.9552273357494
Iteration: 7, Func. Count: 38, Neg. LLF: 115.95445240523645
Iteration: 8, Func. Count: 43, Neg. LLF: 115.95443116424707
Iteration: 9, Func. Count: 48, Neg. LLF: 115.95443057402143
Optimization terminated successfully (Exit mode 0)
Current function value: 115.95443057402143
Iterations: 9
Function evaluations: 48
Gradient evaluations: 9
Iteration: 1, Func. Count: 7, Neg. LLF: 24246834.737769824
Iteration: 2, Func. Count: 15, Neg. LLF: 129.61859523562413
Iteration: 3, Func. Count: 24, Neg. LLF: 114.34500204727262
Iteration: 4, Func. Count: 30, Neg. LLF: 115.58515093723345
Iteration: 5, Func. Count: 37, Neg. LLF: 114.33469732317575
Iteration: 6, Func. Count: 43, Neg. LLF: 114.33409129328808
Iteration: 7, Func. Count: 49, Neg. LLF: 114.33386926840856
Iteration: 8, Func. Count: 55, Neg. LLF: 114.33384074798221
Iteration: 9, Func. Count: 61, Neg. LLF: 114.33383957250219
Iteration: 10, Func. Count: 66, Neg. LLF: 114.33383921659896
Optimization terminated successfully (Exit mode 0)
Current function value: 114.33383957250219
Iterations: 10
Function evaluations: 66
Gradient evaluations: 10
Iteration: 1, Func. Count: 8, Neg. LLF: 146.03558523085374
Iteration: 2, Func. Count: 17, Neg. LLF: 137.33175505842402
Iteration: 3, Func. Count: 26, Neg. LLF: 114.30329024845533
Iteration: 4, Func. Count: 33, Neg. LLF: 113.2373183687511
Iteration: 5, Func. Count: 40, Neg. LLF: 113.21892482541577
Iteration: 6, Func. Count: 47, Neg. LLF: 113.2087905097612
Iteration: 7, Func. Count: 54, Neg. LLF: 113.19867242398246
Iteration: 8, Func. Count: 61, Neg. LLF: 113.17466234616306
Iteration: 9, Func. Count: 68, Neg. LLF: 113.17009020385515
Iteration: 10, Func. Count: 75, Neg. LLF: 113.17018759851712
Iteration: 11, Func. Count: 82, Neg. LLF: 113.16934892505789
Iteration: 12, Func. Count: 89, Neg. LLF: 113.16915432493352
Iteration: 13, Func. Count: 106, Neg. LLF: 113.16917409916931
Iteration: 14, Func. Count: 123, Neg. LLF: 113.16956409118795
Iteration: 15, Func. Count: 140, Neg. LLF: 113.16923309704657
Iteration: 16, Func. Count: 157, Neg. LLF: 113.16915058405108
Iteration: 17, Func. Count: 174, Neg. LLF: 113.16941625789514
Iteration: 18, Func. Count: 191, Neg. LLF: 113.17249845793634
Iteration: 19, Func. Count: 200, Neg. LLF: 113.16982329928344
Iteration: 20, Func. Count: 208, Neg. LLF: 113.16963232268661
Iteration: 21, Func. Count: 215, Neg. LLF: 113.16963606996259
Optimization terminated successfully (Exit mode 0)
Current function value: 113.16963222205348
Iterations: 22
Function evaluations: 216
Gradient evaluations: 21
Iteration: 1, Func. Count: 9, Neg. LLF: 226.37365551233142
Iteration: 2, Func. Count: 19, Neg. LLF: 121.11500532138311
Iteration: 3, Func. Count: 28, Neg. LLF: 114.30881178586922
Iteration: 4, Func. Count: 36, Neg. LLF: 114.04598911379972
Iteration: 5, Func. Count: 44, Neg. LLF: 113.68695202373064
Iteration: 6, Func. Count: 52, Neg. LLF: 113.55155597383929
Iteration: 7, Func. Count: 60, Neg. LLF: 122.29084646574603
Iteration: 8, Func. Count: 69, Neg. LLF: 116.164909262599
Iteration: 9, Func. Count: 78, Neg. LLF: 113.46888166377187
Iteration: 10, Func. Count: 87, Neg. LLF: 113.28705168197439
Iteration: 11, Func. Count: 96, Neg. LLF: 113.17202459546252
Iteration: 12, Func. Count: 104, Neg. LLF: 113.16963874315636
Iteration: 13, Func. Count: 112, Neg. LLF: 113.16963417545331
Iteration: 14, Func. Count: 120, Neg. LLF: 113.1696322896685
Iteration: 15, Func. Count: 127, Neg. LLF: 113.16963232261611
Optimization terminated successfully (Exit mode 0)
Current function value: 113.1696322896685
Iterations: 16
Function evaluations: 127
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 31783633.766061526
Iteration: 2, Func. Count: 22, Neg. LLF: 144.31206450162742
Iteration: 3, Func. Count: 33, Neg. LLF: 114.46915635732466
Iteration: 4, Func. Count: 42, Neg. LLF: 113.2023881679818
Iteration: 5, Func. Count: 51, Neg. LLF: 113.1805350725213
Iteration: 6, Func. Count: 60, Neg. LLF: 113.1734335966628
Iteration: 7, Func. Count: 69, Neg. LLF: 113.17238372069399
Iteration: 8, Func. Count: 78, Neg. LLF: 113.16975234547495
Iteration: 9, Func. Count: 87, Neg. LLF: 113.16962014390498
Iteration: 10, Func. Count: 96, Neg. LLF: 113.17186008228913
Optimization terminated successfully (Exit mode 0)
Current function value: 113.16962016431923
Iterations: 11
Function evaluations: 98
Gradient evaluations: 10
Iteration: 1, Func. Count: 7, Neg. LLF: 126.66750066897556
Iteration: 2, Func. Count: 14, Neg. LLF: 144.85312934763897
Iteration: 3, Func. Count: 21, Neg. LLF: 116.65718470951006
Iteration: 4, Func. Count: 27, Neg. LLF: 116.25338111464265
Iteration: 5, Func. Count: 33, Neg. LLF: 116.02021096674041
Iteration: 6, Func. Count: 39, Neg. LLF: 115.95812367988235
Iteration: 7, Func. Count: 45, Neg. LLF: 115.954456332133
Iteration: 8, Func. Count: 51, Neg. LLF: 115.95443058495258
Iteration: 9, Func. Count: 56, Neg. LLF: 115.9544305970931
Optimization terminated successfully (Exit mode 0)
Current function value: 115.95443058495258
Iterations: 9
Function evaluations: 56
Gradient evaluations: 9
Iteration: 1, Func. Count: 8, Neg. LLF: 22116451.934394393
Iteration: 2, Func. Count: 17, Neg. LLF: 128.186531683138
Iteration: 3, Func. Count: 26, Neg. LLF: 118.9681724719129
Iteration: 4, Func. Count: 34, Neg. LLF: 113.81115526307947
Iteration: 5, Func. Count: 41, Neg. LLF: 113.7450211773533
Iteration: 6, Func. Count: 48, Neg. LLF: 114.0206830788207
Iteration: 7, Func. Count: 56, Neg. LLF: 113.97621939016798
Iteration: 8, Func. Count: 64, Neg. LLF: 113.65370629684524
Iteration: 9, Func. Count: 71, Neg. LLF: 113.64565278668618
Iteration: 10, Func. Count: 78, Neg. LLF: 113.64390586656032
Iteration: 11, Func. Count: 85, Neg. LLF: 113.64305688679411
Iteration: 12, Func. Count: 92, Neg. LLF: 113.64300935599299
Iteration: 13, Func. Count: 99, Neg. LLF: 113.64299536947941
Iteration: 14, Func. Count: 105, Neg. LLF: 113.6429950302724
Optimization terminated successfully (Exit mode 0)
Current function value: 113.64299536947941
Iterations: 14
Function evaluations: 105
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 117.41043937233606
Iteration: 2, Func. Count: 19, Neg. LLF: 318.03303409267903
Iteration: 3, Func. Count: 29, Neg. LLF: 114.1317509387278
Iteration: 4, Func. Count: 37, Neg. LLF: 113.70330911570643
Iteration: 5, Func. Count: 45, Neg. LLF: 113.65022258551318
Iteration: 6, Func. Count: 53, Neg. LLF: 113.64776990637911
Iteration: 7, Func. Count: 61, Neg. LLF: 113.64345113290142
Iteration: 8, Func. Count: 69, Neg. LLF: 113.64300938321682
Iteration: 9, Func. Count: 77, Neg. LLF: 113.64299530279317
Iteration: 10, Func. Count: 84, Neg. LLF: 113.64299497576175
Optimization terminated successfully (Exit mode 0)
Current function value: 113.64299530279317
Iterations: 10
Function evaluations: 84
Gradient evaluations: 10
Iteration: 1, Func. Count: 10, Neg. LLF: 18027632.149582494
Iteration: 2, Func. Count: 21, Neg. LLF: 122.18480657634935
Iteration: 3, Func. Count: 31, Neg. LLF: 114.23100617931004
Iteration: 4, Func. Count: 40, Neg. LLF: 113.94911365736733
Iteration: 5, Func. Count: 49, Neg. LLF: 114.3242813474364
Iteration: 6, Func. Count: 59, Neg. LLF: 114.048548428261
Iteration: 7, Func. Count: 69, Neg. LLF: 113.63668461280666
Iteration: 8, Func. Count: 78, Neg. LLF: 113.62932999648086
Iteration: 9, Func. Count: 87, Neg. LLF: 113.62638590934804
Iteration: 10, Func. Count: 96, Neg. LLF: 113.62613388048595
Iteration: 11, Func. Count: 105, Neg. LLF: 113.62594643525051
Iteration: 12, Func. Count: 114, Neg. LLF: 113.62588969010181
Iteration: 13, Func. Count: 123, Neg. LLF: 113.62588841635034
Iteration: 14, Func. Count: 131, Neg. LLF: 113.62588815464538
Optimization terminated successfully (Exit mode 0)
Current function value: 113.62588841635034
Iterations: 14
Function evaluations: 131
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 24006440.70622739
Iteration: 2, Func. Count: 23, Neg. LLF: 120.64933462403731
Iteration: 3, Func. Count: 34, Neg. LLF: 113.85557773937394
Iteration: 4, Func. Count: 44, Neg. LLF: 113.189778255577
Iteration: 5, Func. Count: 54, Neg. LLF: 118.83664787839221
Iteration: 6, Func. Count: 65, Neg. LLF: 112.19197761357832
Iteration: 7, Func. Count: 75, Neg. LLF: 111.99422673021414
Iteration: 8, Func. Count: 85, Neg. LLF: 113.71617746885731
Iteration: 9, Func. Count: 97, Neg. LLF: 112.09240190353182
Iteration: 10, Func. Count: 108, Neg. LLF: 111.93761129168078
Iteration: 11, Func. Count: 118, Neg. LLF: 111.93672188669206
Iteration: 12, Func. Count: 128, Neg. LLF: 111.93668663064503
Iteration: 13, Func. Count: 138, Neg. LLF: 111.9366850227601
Iteration: 14, Func. Count: 147, Neg. LLF: 111.93668482966831
Optimization terminated successfully (Exit mode 0)
Current function value: 111.9366850227601
Iterations: 14
Function evaluations: 147
Gradient evaluations: 14
Iteration: 1, Func. Count: 8, Neg. LLF: 132.2170137469969
Iteration: 2, Func. Count: 17, Neg. LLF: 18611.162139200973
Iteration: 3, Func. Count: 25, Neg. LLF: 347.1038776838456
Iteration: 4, Func. Count: 33, Neg. LLF: 125.66573317788459
Iteration: 5, Func. Count: 41, Neg. LLF: 112.69269686870557
Iteration: 6, Func. Count: 49, Neg. LLF: 111.11491712615896
Iteration: 7, Func. Count: 56, Neg. LLF: 110.98848061477108
Iteration: 8, Func. Count: 63, Neg. LLF: 110.90254302093567
Iteration: 9, Func. Count: 70, Neg. LLF: 110.8882821198987
Iteration: 10, Func. Count: 77, Neg. LLF: 110.8871731369822
Iteration: 11, Func. Count: 84, Neg. LLF: 110.88713346277677
Iteration: 12, Func. Count: 90, Neg. LLF: 110.88713346276242
Optimization terminated successfully (Exit mode 0)
Current function value: 110.88713346277677
Iterations: 12
Function evaluations: 90
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 117.10620814246006
Iteration: 2, Func. Count: 22, Neg. LLF: 124.66949147720156
Iteration: 3, Func. Count: 31, Neg. LLF: 146.59987391503236
Iteration: 4, Func. Count: 41, Neg. LLF: 111.53419113340948
Iteration: 5, Func. Count: 49, Neg. LLF: 111.52034738027146
Iteration: 6, Func. Count: 57, Neg. LLF: 111.4798874955511
Iteration: 7, Func. Count: 65, Neg. LLF: 111.46200892157889
Iteration: 8, Func. Count: 73, Neg. LLF: 111.45512699843314
Iteration: 9, Func. Count: 81, Neg. LLF: 111.45370633040595
Iteration: 10, Func. Count: 89, Neg. LLF: 111.45354205380825
Iteration: 11, Func. Count: 97, Neg. LLF: 111.45353510527141
Iteration: 12, Func. Count: 104, Neg. LLF: 111.45353505696849
Optimization terminated successfully (Exit mode 0)
Current function value: 111.45353510527141
Iterations: 12
Function evaluations: 104
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 141.3106521144754
Iteration: 2, Func. Count: 20, Neg. LLF: 123.79081705701674
Iteration: 3, Func. Count: 31, Neg. LLF: 111.43053327339634
Iteration: 4, Func. Count: 40, Neg. LLF: 113.19125178132359
Iteration: 5, Func. Count: 50, Neg. LLF: 110.790479191865
Iteration: 6, Func. Count: 59, Neg. LLF: 110.7864958116149
Iteration: 7, Func. Count: 68, Neg. LLF: 110.8780474137802
Iteration: 8, Func. Count: 78, Neg. LLF: 110.78210389973839
Iteration: 9, Func. Count: 87, Neg. LLF: 110.7814144821156
Iteration: 10, Func. Count: 96, Neg. LLF: 110.78106738229492
Iteration: 11, Func. Count: 105, Neg. LLF: 110.78106512765156
Iteration: 12, Func. Count: 113, Neg. LLF: 110.78106507366262
Optimization terminated successfully (Exit mode 0)
Current function value: 110.78106512765156
Iterations: 12
Function evaluations: 113
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 115.9255257837761
Iteration: 2, Func. Count: 24, Neg. LLF: 166.63206962541594
Iteration: 3, Func. Count: 35, Neg. LLF: 1033081.9477460338
Iteration: 4, Func. Count: 46, Neg. LLF: 109.22914112175754
Iteration: 5, Func. Count: 56, Neg. LLF: 125.12107750615195
Iteration: 6, Func. Count: 67, Neg. LLF: 111.1407477095633
Iteration: 7, Func. Count: 78, Neg. LLF: 107.36645899431026
Iteration: 8, Func. Count: 88, Neg. LLF: 107.36137605711959
Iteration: 9, Func. Count: 98, Neg. LLF: 107.36050286078947
Iteration: 10, Func. Count: 108, Neg. LLF: 107.36002278790865
Iteration: 11, Func. Count: 118, Neg. LLF: 107.35998599586529
Iteration: 12, Func. Count: 128, Neg. LLF: 107.35998010479489
Iteration: 13, Func. Count: 137, Neg. LLF: 107.35997999559041
Optimization terminated successfully (Exit mode 0)
Current function value: 107.35998010479489
Iterations: 13
Function evaluations: 137
Gradient evaluations: 13
Iteration: 1, Func. Count: 12, Neg. LLF: 111.36113436311966
Iteration: 2, Func. Count: 23, Neg. LLF: 122.36835840682546
Iteration: 3, Func. Count: 36, Neg. LLF: 127.67748175747714
Iteration: 4, Func. Count: 48, Neg. LLF: 109.03865309779007
Iteration: 5, Func. Count: 59, Neg. LLF: 130.11714328127556
Iteration: 6, Func. Count: 71, Neg. LLF: 114.57392732808606
Iteration: 7, Func. Count: 84, Neg. LLF: 109.44777536107722
Iteration: 8, Func. Count: 96, Neg. LLF: 109.38339648628931
Iteration: 9, Func. Count: 108, Neg. LLF: 107.48835273496972
Iteration: 10, Func. Count: 119, Neg. LLF: 107.41371267564459
Iteration: 11, Func. Count: 130, Neg. LLF: 107.37061668997845
Iteration: 12, Func. Count: 141, Neg. LLF: 107.36134422443169
Iteration: 13, Func. Count: 152, Neg. LLF: 107.3601637506024
Iteration: 14, Func. Count: 163, Neg. LLF: 107.35998010228144
Iteration: 15, Func. Count: 174, Neg. LLF: 107.3599791565262
Optimization terminated successfully (Exit mode 0)
Current function value: 107.3599791565262
Iterations: 15
Function evaluations: 174
Gradient evaluations: 15
Iteration: 1, Func. Count: 5, Neg. LLF: 122.24027297383502
Iteration: 2, Func. Count: 10, Neg. LLF: 128.04862456471952
Iteration: 3, Func. Count: 15, Neg. LLF: 116.44065804731497
Iteration: 4, Func. Count: 19, Neg. LLF: 115.95651809665235
Iteration: 5, Func. Count: 23, Neg. LLF: 115.95482786011455
Iteration: 6, Func. Count: 27, Neg. LLF: 115.95443153302729
Iteration: 7, Func. Count: 31, Neg. LLF: 115.9544306455645
Optimization terminated successfully (Exit mode 0)
Current function value: 115.9544306455645
Iterations: 7
Function evaluations: 31
Gradient evaluations: 7
Iteration: 1, Func. Count: 6, Neg. LLF: 137.0551334894019
Iteration: 2, Func. Count: 13, Neg. LLF: 115.97091007240809
Iteration: 3, Func. Count: 18, Neg. LLF: 116.01021586658904
Iteration: 4, Func. Count: 24, Neg. LLF: 115.96839789762222
Iteration: 5, Func. Count: 29, Neg. LLF: 115.9683191249138
Iteration: 6, Func. Count: 34, Neg. LLF: 115.96790357583784
Iteration: 7, Func. Count: 39, Neg. LLF: 115.96719485885035
Iteration: 8, Func. Count: 44, Neg. LLF: 115.9656172823907
Iteration: 9, Func. Count: 49, Neg. LLF: 115.9559466298727
Iteration: 10, Func. Count: 54, Neg. LLF: 115.95566863078221
Iteration: 11, Func. Count: 59, Neg. LLF: 115.95471189263444
Iteration: 12, Func. Count: 64, Neg. LLF: 115.95443075244246
Iteration: 13, Func. Count: 68, Neg. LLF: 115.95443075330516
Optimization terminated successfully (Exit mode 0)
Current function value: 115.95443075244246
Iterations: 13
Function evaluations: 68
Gradient evaluations: 13
Iteration: 1, Func. Count: 7, Neg. LLF: 131.30683348670513
Iteration: 2, Func. Count: 15, Neg. LLF: 115.9673737802674
Iteration: 3, Func. Count: 21, Neg. LLF: 115.96702303117652
Iteration: 4, Func. Count: 27, Neg. LLF: 115.96437550236635
Iteration: 5, Func. Count: 33, Neg. LLF: 115.96083452044843
Iteration: 6, Func. Count: 39, Neg. LLF: 115.95960319681508
Iteration: 7, Func. Count: 45, Neg. LLF: 115.95887298085442
Iteration: 8, Func. Count: 51, Neg. LLF: 115.95567509867794
Iteration: 9, Func. Count: 57, Neg. LLF: 115.95268821192859
Iteration: 10, Func. Count: 63, Neg. LLF: 115.95124855836096
Iteration: 11, Func. Count: 69, Neg. LLF: 115.95068700547834
Iteration: 12, Func. Count: 75, Neg. LLF: 115.95047907008698
Iteration: 13, Func. Count: 81, Neg. LLF: 115.9504645050098
Iteration: 14, Func. Count: 86, Neg. LLF: 115.95046450498188
Optimization terminated successfully (Exit mode 0)
Current function value: 115.9504645050098
Iterations: 14
Function evaluations: 86
Gradient evaluations: 14
Iteration: 1, Func. Count: 8, Neg. LLF: 145.91264636178536
Iteration: 2, Func. Count: 17, Neg. LLF: 115.97893209938168
Iteration: 3, Func. Count: 24, Neg. LLF: 116.03132094888039
Iteration: 4, Func. Count: 32, Neg. LLF: 115.96597132981022
Iteration: 5, Func. Count: 39, Neg. LLF: 115.96560053471089
Iteration: 6, Func. Count: 46, Neg. LLF: 115.96318103910485
Iteration: 7, Func. Count: 53, Neg. LLF: 115.95924035387587
Iteration: 8, Func. Count: 60, Neg. LLF: 115.9564426341892
Iteration: 9, Func. Count: 67, Neg. LLF: 115.95080386020949
Iteration: 10, Func. Count: 74, Neg. LLF: 115.95058545014892
Iteration: 11, Func. Count: 81, Neg. LLF: 115.95053960227212
Iteration: 12, Func. Count: 88, Neg. LLF: 115.95049246684343
Iteration: 13, Func. Count: 95, Neg. LLF: 115.95046820187687
Iteration: 14, Func. Count: 102, Neg. LLF: 115.95046449168389
Iteration: 15, Func. Count: 108, Neg. LLF: 115.95046449215008
Optimization terminated successfully (Exit mode 0)
Current function value: 115.95046449168389
Iterations: 15
Function evaluations: 108
Gradient evaluations: 15
Iteration: 1, Func. Count: 9, Neg. LLF: 145.8154859511549
Iteration: 2, Func. Count: 19, Neg. LLF: 115.99194737974234
Iteration: 3, Func. Count: 27, Neg. LLF: 116.05983936914595
Iteration: 4, Func. Count: 36, Neg. LLF: 115.9655725886952
Iteration: 5, Func. Count: 44, Neg. LLF: 115.96525158612205
Iteration: 6, Func. Count: 52, Neg. LLF: 115.96323151149822
Iteration: 7, Func. Count: 60, Neg. LLF: 115.95874537366264
Iteration: 8, Func. Count: 68, Neg. LLF: 115.95641396312028
Iteration: 9, Func. Count: 76, Neg. LLF: 115.950919832024
Iteration: 10, Func. Count: 84, Neg. LLF: 115.95056140106266
Iteration: 11, Func. Count: 92, Neg. LLF: 115.95050695465525
Iteration: 12, Func. Count: 100, Neg. LLF: 115.95047218338998
Iteration: 13, Func. Count: 108, Neg. LLF: 115.95046478061995
Iteration: 14, Func. Count: 115, Neg. LLF: 115.9504647820563
Optimization terminated successfully (Exit mode 0)
Current function value: 115.95046478061995
Iterations: 14
Function evaluations: 115
Gradient evaluations: 14
Iteration: 1, Func. Count: 6, Neg. LLF: 122.43464650798059
Iteration: 2, Func. Count: 12, Neg. LLF: 130.2589387687007
Iteration: 3, Func. Count: 18, Neg. LLF: 116.44015316718809
Iteration: 4, Func. Count: 23, Neg. LLF: 115.95594981183619
Iteration: 5, Func. Count: 28, Neg. LLF: 115.95469420453423
Iteration: 6, Func. Count: 33, Neg. LLF: 115.95443151346952
Iteration: 7, Func. Count: 38, Neg. LLF: 115.9544306416976
Optimization terminated successfully (Exit mode 0)
Current function value: 115.9544306416976
Iterations: 7
Function evaluations: 38
Gradient evaluations: 7
Iteration: 1, Func. Count: 7, Neg. LLF: 125.5529545686127
Iteration: 2, Func. Count: 16, Neg. LLF: 131.3705642305574
Iteration: 3, Func. Count: 24, Neg. LLF: 115.32251380645316
Iteration: 4, Func. Count: 30, Neg. LLF: 115.06622796618105
Iteration: 5, Func. Count: 36, Neg. LLF: 114.84178582765487
Iteration: 6, Func. Count: 42, Neg. LLF: 114.78520150269107
Iteration: 7, Func. Count: 48, Neg. LLF: 114.77833604388779
Iteration: 8, Func. Count: 55, Neg. LLF: 114.7572252488789
Iteration: 9, Func. Count: 61, Neg. LLF: 114.75655852936413
Iteration: 10, Func. Count: 67, Neg. LLF: 114.75650633644683
Iteration: 11, Func. Count: 73, Neg. LLF: 114.7565053904747
Optimization terminated successfully (Exit mode 0)
Current function value: 114.7565053904747
Iterations: 11
Function evaluations: 73
Gradient evaluations: 11
Iteration: 1, Func. Count: 8, Neg. LLF: 5239896.930053125
Iteration: 2, Func. Count: 17, Neg. LLF: 118.61243655707682
Iteration: 3, Func. Count: 26, Neg. LLF: 114.91476625899588
Iteration: 4, Func. Count: 33, Neg. LLF: 115.13144341327249
Iteration: 5, Func. Count: 41, Neg. LLF: 114.83218951968685
Iteration: 6, Func. Count: 48, Neg. LLF: 114.76437169007082
Iteration: 7, Func. Count: 55, Neg. LLF: 114.75215632803864
Iteration: 8, Func. Count: 62, Neg. LLF: 114.7476236643325
Iteration: 9, Func. Count: 71, Neg. LLF: 114.75708065262812
Iteration: 10, Func. Count: 78, Neg. LLF: 114.73942800364219
Iteration: 11, Func. Count: 91, Neg. LLF: 117.04004313890009
Iteration: 12, Func. Count: 101, Neg. LLF: 114.77225953287272
Iteration: 13, Func. Count: 109, Neg. LLF: 114.75721936999606
Iteration: 14, Func. Count: 117, Neg. LLF: 114.75651607227687
Iteration: 15, Func. Count: 124, Neg. LLF: 114.75650545986774
Iteration: 16, Func. Count: 131, Neg. LLF: 114.75650501023644
Optimization terminated successfully (Exit mode 0)
Current function value: 114.75650501023644
Iterations: 17
Function evaluations: 131
Gradient evaluations: 16
Iteration: 1, Func. Count: 9, Neg. LLF: 114.52806081627104
Iteration: 2, Func. Count: 17, Neg. LLF: 136.77745616466544
Iteration: 3, Func. Count: 26, Neg. LLF: 123.86506640255487
Iteration: 4, Func. Count: 35, Neg. LLF: 112.23197894811793
Iteration: 5, Func. Count: 43, Neg. LLF: 110.9251607325672
Iteration: 6, Func. Count: 51, Neg. LLF: 111.68772420826684
Iteration: 7, Func. Count: 61, Neg. LLF: 110.03186802412895
Iteration: 8, Func. Count: 69, Neg. LLF: 110.0154418579618
Iteration: 9, Func. Count: 77, Neg. LLF: 110.01255549928389
Iteration: 10, Func. Count: 85, Neg. LLF: 110.01167876434769
Iteration: 11, Func. Count: 93, Neg. LLF: 110.01481841911055
Iteration: 12, Func. Count: 103, Neg. LLF: 110.02348988043762
Iteration: 13, Func. Count: 113, Neg. LLF: 110.01217057545139
Iteration: 14, Func. Count: 122, Neg. LLF: 110.01199662883322
Iteration: 15, Func. Count: 129, Neg. LLF: 110.01199639267793
Optimization terminated successfully (Exit mode 0)
Current function value: 110.01199662883322
Iterations: 16
Function evaluations: 129
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 116.78556358782545
Iteration: 2, Func. Count: 20, Neg. LLF: 116.14628994876955
Iteration: 3, Func. Count: 30, Neg. LLF: 110.36121468233972
Iteration: 4, Func. Count: 39, Neg. LLF: 116.78585609140379
Iteration: 5, Func. Count: 50, Neg. LLF: 110.04562547819661
Iteration: 6, Func. Count: 59, Neg. LLF: 110.01873240686679
Iteration: 7, Func. Count: 68, Neg. LLF: 110.01524906429923
Iteration: 8, Func. Count: 77, Neg. LLF: 110.0121097205874
Iteration: 9, Func. Count: 86, Neg. LLF: 110.01201647039666
Iteration: 10, Func. Count: 95, Neg. LLF: 110.01199562777965
Iteration: 11, Func. Count: 104, Neg. LLF: 110.01199618381995
Optimization terminated successfully (Exit mode 0)
Current function value: 110.01199618381995
Iterations: 11
Function evaluations: 104
Gradient evaluations: 11
Iteration: 1, Func. Count: 7, Neg. LLF: 122.3222127392816
Iteration: 2, Func. Count: 14, Neg. LLF: 129.2870411344056
Iteration: 3, Func. Count: 21, Neg. LLF: 116.43787579315126
Iteration: 4, Func. Count: 27, Neg. LLF: 115.95641336713987
Iteration: 5, Func. Count: 33, Neg. LLF: 115.95479552662164
Iteration: 6, Func. Count: 39, Neg. LLF: 115.95443156260404
Iteration: 7, Func. Count: 45, Neg. LLF: 115.95443064317304
Optimization terminated successfully (Exit mode 0)
Current function value: 115.95443064317304
Iterations: 7
Function evaluations: 45
Gradient evaluations: 7
Iteration: 1, Func. Count: 8, Neg. LLF: 130.10748320788096
Iteration: 2, Func. Count: 17, Neg. LLF: 155.27521167135058
Iteration: 3, Func. Count: 26, Neg. LLF: 116.77977828215224
Iteration: 4, Func. Count: 34, Neg. LLF: 114.55970970320014
Iteration: 5, Func. Count: 41, Neg. LLF: 114.37452581164753
Iteration: 6, Func. Count: 48, Neg. LLF: 114.53600958356701
Iteration: 7, Func. Count: 56, Neg. LLF: 114.34309756381774
Iteration: 8, Func. Count: 63, Neg. LLF: 114.33630813142555
Iteration: 9, Func. Count: 70, Neg. LLF: 114.33384806150531
Iteration: 10, Func. Count: 77, Neg. LLF: 114.3338395392327
Iteration: 11, Func. Count: 83, Neg. LLF: 114.3338391830535
Optimization terminated successfully (Exit mode 0)
Current function value: 114.3338395392327
Iterations: 11
Function evaluations: 83
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 151.8484061498787
Iteration: 2, Func. Count: 20, Neg. LLF: 134.80975728561012
Iteration: 3, Func. Count: 29, Neg. LLF: 114.22104217601468
Iteration: 4, Func. Count: 37, Neg. LLF: 113.78660951831489
Iteration: 5, Func. Count: 45, Neg. LLF: 113.40880919016453
Iteration: 6, Func. Count: 53, Neg. LLF: 113.26277561763199
Iteration: 7, Func. Count: 61, Neg. LLF: 113.18238290637139
Iteration: 8, Func. Count: 69, Neg. LLF: 113.1729921750266
Iteration: 9, Func. Count: 77, Neg. LLF: 113.17000075252176
Iteration: 10, Func. Count: 85, Neg. LLF: 113.16962797308187
Iteration: 11, Func. Count: 93, Neg. LLF: 113.16964752382972
Iteration: 12, Func. Count: 102, Neg. LLF: 113.16963815020046
Iteration: 13, Func. Count: 110, Neg. LLF: 113.16963566781247
Iteration: 14, Func. Count: 118, Neg. LLF: 113.16963219691914
Iteration: 15, Func. Count: 125, Neg. LLF: 113.1696319607625
Optimization terminated successfully (Exit mode 0)
Current function value: 113.16963219691914
Iterations: 16
Function evaluations: 125
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 116.28407570005592
Iteration: 2, Func. Count: 20, Neg. LLF: 114.6749872984915
Iteration: 3, Func. Count: 29, Neg. LLF: 118.51207720849469
Iteration: 4, Func. Count: 39, Neg. LLF: 114.54329331707372
Iteration: 5, Func. Count: 48, Neg. LLF: 114.48755855428502
Iteration: 6, Func. Count: 57, Neg. LLF: 114.43573444057647
Iteration: 7, Func. Count: 66, Neg. LLF: 114.24503359351277
Iteration: 8, Func. Count: 75, Neg. LLF: 113.52663563477392
Iteration: 9, Func. Count: 84, Neg. LLF: 113.38121297367127
Iteration: 10, Func. Count: 93, Neg. LLF: 113.35469945973834
Iteration: 11, Func. Count: 103, Neg. LLF: 113.18535503549774
Iteration: 12, Func. Count: 112, Neg. LLF: 113.17714390814957
Iteration: 13, Func. Count: 121, Neg. LLF: 113.17397373276916
Iteration: 14, Func. Count: 130, Neg. LLF: 113.17034725973392
Iteration: 15, Func. Count: 139, Neg. LLF: 113.66227875558198
Iteration: 16, Func. Count: 150, Neg. LLF: 113.17091528680018
Iteration: 17, Func. Count: 160, Neg. LLF: 113.16964469905565
Iteration: 18, Func. Count: 169, Neg. LLF: 113.17048639222926
Iteration: 19, Func. Count: 179, Neg. LLF: 113.16963217996758
Optimization terminated successfully (Exit mode 0)
Current function value: 113.16963217996758
Iterations: 20
Function evaluations: 179
Gradient evaluations: 19
Iteration: 1, Func. Count: 11, Neg. LLF: 115.66710947720183
Iteration: 2, Func. Count: 22, Neg. LLF: 141.00365913160678
Iteration: 3, Func. Count: 34, Neg. LLF: 114.4124343062123
Iteration: 4, Func. Count: 44, Neg. LLF: 113.53852934824926
Iteration: 5, Func. Count: 54, Neg. LLF: 113.27860952854085
Iteration: 6, Func. Count: 64, Neg. LLF: 113.30523654354292
Iteration: 7, Func. Count: 75, Neg. LLF: 113.17782733853973
Iteration: 8, Func. Count: 85, Neg. LLF: 113.17008343579309
Iteration: 9, Func. Count: 95, Neg. LLF: 113.16964384075997
Iteration: 10, Func. Count: 105, Neg. LLF: 113.16963269775076
Iteration: 11, Func. Count: 114, Neg. LLF: 113.16963247594873
Optimization terminated successfully (Exit mode 0)
Current function value: 113.16963269775076
Iterations: 11
Function evaluations: 114
Gradient evaluations: 11
Iteration: 1, Func. Count: 8, Neg. LLF: 127.72437079415101
Iteration: 2, Func. Count: 17, Neg. LLF: 141.84401109215878
Iteration: 3, Func. Count: 25, Neg. LLF: 115.95701415999459
Iteration: 4, Func. Count: 32, Neg. LLF: 115.95576894898795
Iteration: 5, Func. Count: 39, Neg. LLF: 115.95443171419011
Iteration: 6, Func. Count: 46, Neg. LLF: 115.9544305660922
Iteration: 7, Func. Count: 52, Neg. LLF: 115.95443057823753
Optimization terminated successfully (Exit mode 0)
Current function value: 115.9544305660922
Iterations: 7
Function evaluations: 52
Gradient evaluations: 7
Iteration: 1, Func. Count: 9, Neg. LLF: 126.51054607890461
Iteration: 2, Func. Count: 22, Neg. LLF: 155.63518676110195
Iteration: 3, Func. Count: 31, Neg. LLF: 142.3472406612116
Iteration: 4, Func. Count: 40, Neg. LLF: 123.16993882747839
Iteration: 5, Func. Count: 50, Neg. LLF: 113.64319807773259
Iteration: 6, Func. Count: 58, Neg. LLF: 113.63501485691941
Iteration: 7, Func. Count: 66, Neg. LLF: 113.62908878150088
Iteration: 8, Func. Count: 74, Neg. LLF: 113.62577676178165
Iteration: 9, Func. Count: 82, Neg. LLF: 113.62368393607073
Iteration: 10, Func. Count: 90, Neg. LLF: 113.62273156032346
Iteration: 11, Func. Count: 98, Neg. LLF: 113.62254311236727
Iteration: 12, Func. Count: 106, Neg. LLF: 113.62252222932159
Iteration: 13, Func. Count: 114, Neg. LLF: 113.62252002938591
Iteration: 14, Func. Count: 121, Neg. LLF: 113.62251992888369
Optimization terminated successfully (Exit mode 0)
Current function value: 113.62252002938591
Iterations: 14
Function evaluations: 121
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 122.67817683520431
Iteration: 2, Func. Count: 21, Neg. LLF: 200.0800406178677
Iteration: 3, Func. Count: 32, Neg. LLF: 120.7420925510328
Iteration: 4, Func. Count: 42, Neg. LLF: 113.90180404676734
Iteration: 5, Func. Count: 51, Neg. LLF: 113.84500165366315
Iteration: 6, Func. Count: 60, Neg. LLF: 113.75792835783999
Iteration: 7, Func. Count: 69, Neg. LLF: 113.7384645102705
Iteration: 8, Func. Count: 78, Neg. LLF: 113.73325522115209
Iteration: 9, Func. Count: 87, Neg. LLF: 113.71846241199599
Iteration: 10, Func. Count: 96, Neg. LLF: 113.67169561626122
Iteration: 11, Func. Count: 105, Neg. LLF: 113.68984697776354
Iteration: 12, Func. Count: 115, Neg. LLF: 113.64842562190753
Iteration: 13, Func. Count: 124, Neg. LLF: 113.6431224181021
Iteration: 14, Func. Count: 133, Neg. LLF: 113.64299813159907
Iteration: 15, Func. Count: 142, Neg. LLF: 113.64299560914476
Iteration: 16, Func. Count: 151, Neg. LLF: 113.64299448451663
Iteration: 17, Func. Count: 160, Neg. LLF: 113.64299317463491
Optimization terminated successfully (Exit mode 0)
Current function value: 113.64299448329109
Iterations: 17
Function evaluations: 170
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 231.6221721272337
Iteration: 2, Func. Count: 23, Neg. LLF: 120.30209732605714
Iteration: 3, Func. Count: 35, Neg. LLF: 114.70594347185525
Iteration: 4, Func. Count: 45, Neg. LLF: 114.18079937404924
Iteration: 5, Func. Count: 55, Neg. LLF: 117.07596180058576
Iteration: 6, Func. Count: 66, Neg. LLF: 113.70516207974167
Iteration: 7, Func. Count: 76, Neg. LLF: 113.64451329653677
Iteration: 8, Func. Count: 86, Neg. LLF: 113.6285983310542
Iteration: 9, Func. Count: 96, Neg. LLF: 113.62295438090467
Iteration: 10, Func. Count: 106, Neg. LLF: 113.62259314568878
Iteration: 11, Func. Count: 116, Neg. LLF: 113.62253783472192
Iteration: 12, Func. Count: 126, Neg. LLF: 113.62252399871429
Iteration: 13, Func. Count: 136, Neg. LLF: 113.62251985732978
Iteration: 14, Func. Count: 145, Neg. LLF: 113.62251980201574
Optimization terminated successfully (Exit mode 0)
Current function value: 113.62251985732978
Iterations: 14
Function evaluations: 145
Gradient evaluations: 14
Iteration: 1, Func. Count: 12, Neg. LLF: 21937761.188673828
Iteration: 2, Func. Count: 25, Neg. LLF: 118.39035031122849
Iteration: 3, Func. Count: 38, Neg. LLF: 113.69350284436798
Iteration: 4, Func. Count: 49, Neg. LLF: 113.18700513858712
Iteration: 5, Func. Count: 60, Neg. LLF: 114.06043487206554
Iteration: 6, Func. Count: 72, Neg. LLF: 114.85686055214474
Iteration: 7, Func. Count: 84, Neg. LLF: 113.37103988732854
Iteration: 8, Func. Count: 96, Neg. LLF: 111.96354542893158
Iteration: 9, Func. Count: 107, Neg. LLF: 113.88193632546962
Iteration: 10, Func. Count: 120, Neg. LLF: 111.95352924178745
Iteration: 11, Func. Count: 131, Neg. LLF: 111.93717906661628
Iteration: 12, Func. Count: 142, Neg. LLF: 111.93669831623967
Iteration: 13, Func. Count: 153, Neg. LLF: 111.93668505896996
Iteration: 14, Func. Count: 163, Neg. LLF: 111.9366848658852
Optimization terminated successfully (Exit mode 0)
Current function value: 111.93668505896996
Iterations: 14
Function evaluations: 163
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 133.85856308901225
Iteration: 2, Func. Count: 19, Neg. LLF: 2481.263862990746
Iteration: 3, Func. Count: 28, Neg. LLF: 181.72049744462498
Iteration: 4, Func. Count: 37, Neg. LLF: 475012.0815356899
Iteration: 5, Func. Count: 46, Neg. LLF: 121.98790953932657
Iteration: 6, Func. Count: 55, Neg. LLF: 114.33326144269475
Iteration: 7, Func. Count: 64, Neg. LLF: 111.13697248960598
Iteration: 8, Func. Count: 72, Neg. LLF: 111.09464459553648
Iteration: 9, Func. Count: 81, Neg. LLF: 110.96280214923968
Iteration: 10, Func. Count: 89, Neg. LLF: 110.87813297508767
Iteration: 11, Func. Count: 97, Neg. LLF: 110.85105130206192
Iteration: 12, Func. Count: 105, Neg. LLF: 110.84792890693961
Iteration: 13, Func. Count: 113, Neg. LLF: 110.84755319985082
Iteration: 14, Func. Count: 121, Neg. LLF: 110.84742829774189
Iteration: 15, Func. Count: 129, Neg. LLF: 110.84740083779809
Iteration: 16, Func. Count: 137, Neg. LLF: 110.84740010287271
Optimization terminated successfully (Exit mode 0)
Current function value: 110.84740010287271
Iterations: 16
Function evaluations: 137
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 120.80492628002841
Iteration: 2, Func. Count: 24, Neg. LLF: 131.8280221281238
Iteration: 3, Func. Count: 34, Neg. LLF: 121.67060413725503
Iteration: 4, Func. Count: 44, Neg. LLF: 136.57391483786307
Iteration: 5, Func. Count: 54, Neg. LLF: 115.87981890872557
Iteration: 6, Func. Count: 64, Neg. LLF: 110.26807829367559
Iteration: 7, Func. Count: 73, Neg. LLF: 110.43408756428471
Iteration: 8, Func. Count: 83, Neg. LLF: 110.19246610766893
Iteration: 9, Func. Count: 92, Neg. LLF: 110.16006519017066
Iteration: 10, Func. Count: 101, Neg. LLF: 110.12037546155125
Iteration: 11, Func. Count: 110, Neg. LLF: 110.1093600992166
Iteration: 12, Func. Count: 119, Neg. LLF: 110.105756034257
Iteration: 13, Func. Count: 128, Neg. LLF: 110.10434780431216
Iteration: 14, Func. Count: 137, Neg. LLF: 110.10264126678727
Iteration: 15, Func. Count: 146, Neg. LLF: 110.1002083085901
Iteration: 16, Func. Count: 155, Neg. LLF: 110.09803861161276
Iteration: 17, Func. Count: 164, Neg. LLF: 110.09726225681547
Iteration: 18, Func. Count: 173, Neg. LLF: 110.09716803487557
Iteration: 19, Func. Count: 182, Neg. LLF: 110.09715986991539
Iteration: 20, Func. Count: 190, Neg. LLF: 110.09715984179755
Optimization terminated successfully (Exit mode 0)
Current function value: 110.09715986991539
Iterations: 20
Function evaluations: 190
Gradient evaluations: 20
Iteration: 1, Func. Count: 11, Neg. LLF: 112.03132602581537
Iteration: 2, Func. Count: 21, Neg. LLF: 135.7252588988695
Iteration: 3, Func. Count: 33, Neg. LLF: 116.63861764065783
Iteration: 4, Func. Count: 44, Neg. LLF: 114.6124257010147
Iteration: 5, Func. Count: 55, Neg. LLF: 111.5469482848476
Iteration: 6, Func. Count: 66, Neg. LLF: 1996.6584584394786
Iteration: 7, Func. Count: 77, Neg. LLF: 128.67531013802213
Iteration: 8, Func. Count: 88, Neg. LLF: 120.49210873647951
Iteration: 9, Func. Count: 99, Neg. LLF: 453.55603967681765
Iteration: 10, Func. Count: 110, Neg. LLF: 115.64173608153638
Iteration: 11, Func. Count: 121, Neg. LLF: 112.64442560543843
Iteration: 12, Func. Count: 132, Neg. LLF: 111.6346253718065
Iteration: 13, Func. Count: 143, Neg. LLF: 110.26186159207799
Iteration: 14, Func. Count: 153, Neg. LLF: 110.35692184419851
Iteration: 15, Func. Count: 164, Neg. LLF: 109.9427116719165
Iteration: 16, Func. Count: 174, Neg. LLF: 109.88119258671253
Iteration: 17, Func. Count: 184, Neg. LLF: 109.8335650696439
Iteration: 18, Func. Count: 194, Neg. LLF: 109.7567333627259
Iteration: 19, Func. Count: 204, Neg. LLF: 109.71658178469313
Iteration: 20, Func. Count: 214, Neg. LLF: 109.71233790884104
Iteration: 21, Func. Count: 224, Neg. LLF: 109.71089592389343
Iteration: 22, Func. Count: 234, Neg. LLF: 109.71085890641932
Iteration: 23, Func. Count: 244, Neg. LLF: 109.71085416305147
Iteration: 24, Func. Count: 254, Neg. LLF: 109.7108525252216
Iteration: 25, Func. Count: 263, Neg. LLF: 109.71085245941063
Optimization terminated successfully (Exit mode 0)
Current function value: 109.7108525252216
Iterations: 25
Function evaluations: 263
Gradient evaluations: 25
Iteration: 1, Func. Count: 12, Neg. LLF: 119.07162961987432
Iteration: 2, Func. Count: 26, Neg. LLF: 183.84052384597234
Iteration: 3, Func. Count: 38, Neg. LLF: 1523456.0103018505
Iteration: 4, Func. Count: 50, Neg. LLF: 118.26335899498204
Iteration: 5, Func. Count: 62, Neg. LLF: 120.21076047887557
Iteration: 6, Func. Count: 74, Neg. LLF: 110.48751711831729
Iteration: 7, Func. Count: 86, Neg. LLF: 111.5580640837906
Iteration: 8, Func. Count: 98, Neg. LLF: 108.68415085104729
Iteration: 9, Func. Count: 110, Neg. LLF: 107.71657680189725
Iteration: 10, Func. Count: 121, Neg. LLF: 107.66532192451163
Iteration: 11, Func. Count: 133, Neg. LLF: 107.74134738087236
Iteration: 12, Func. Count: 145, Neg. LLF: 107.3871941165393
Iteration: 13, Func. Count: 156, Neg. LLF: 107.34568168721961
Iteration: 14, Func. Count: 167, Neg. LLF: 107.33759164691138
Iteration: 15, Func. Count: 178, Neg. LLF: 107.33472009580017
Iteration: 16, Func. Count: 189, Neg. LLF: 107.33463115688355
Iteration: 17, Func. Count: 200, Neg. LLF: 107.33462194230981
Iteration: 18, Func. Count: 211, Neg. LLF: 107.33461991879189
Iteration: 19, Func. Count: 221, Neg. LLF: 107.33461980486383
Optimization terminated successfully (Exit mode 0)
Current function value: 107.33461991879189
Iterations: 19
Function evaluations: 221
Gradient evaluations: 19
Iteration: 1, Func. Count: 13, Neg. LLF: 112.49145091352739
Iteration: 2, Func. Count: 26, Neg. LLF: 211.99832950135968
Iteration: 3, Func. Count: 39, Neg. LLF: 530.2014162227919
Iteration: 4, Func. Count: 52, Neg. LLF: 111.40774154920076
Iteration: 5, Func. Count: 65, Neg. LLF: 121.13311124318382
Iteration: 6, Func. Count: 78, Neg. LLF: 129.41869689563532
Iteration: 7, Func. Count: 93, Neg. LLF: 112.43849814899022
Iteration: 8, Func. Count: 106, Neg. LLF: 110.97290591356777
Iteration: 9, Func. Count: 119, Neg. LLF: 107.99537673604931
Iteration: 10, Func. Count: 131, Neg. LLF: 110.0444970068812
Iteration: 11, Func. Count: 144, Neg. LLF: 109.59767551303113
Iteration: 12, Func. Count: 157, Neg. LLF: 107.875222674651
Iteration: 13, Func. Count: 170, Neg. LLF: 107.37116137923714
Iteration: 14, Func. Count: 182, Neg. LLF: 107.34108077937292
Iteration: 15, Func. Count: 194, Neg. LLF: 107.33660766322751
Iteration: 16, Func. Count: 206, Neg. LLF: 107.33466692066607
Iteration: 17, Func. Count: 218, Neg. LLF: 107.33462213647084
Iteration: 18, Func. Count: 230, Neg. LLF: 107.33461967550194
Iteration: 19, Func. Count: 241, Neg. LLF: 107.33461969795582
Optimization terminated successfully (Exit mode 0)
Current function value: 107.33461967550194
Iterations: 19
Function evaluations: 241
Gradient evaluations: 19
Iteration: 1, Func. Count: 6, Neg. LLF: 125.98406157484459
Iteration: 2, Func. Count: 13, Neg. LLF: 115.97227186988651
Iteration: 3, Func. Count: 18, Neg. LLF: 116.91797264133855
Iteration: 4, Func. Count: 25, Neg. LLF: 116.00545805885154
Iteration: 5, Func. Count: 31, Neg. LLF: 115.93983492116655
Iteration: 6, Func. Count: 36, Neg. LLF: 115.93888247766651
Iteration: 7, Func. Count: 41, Neg. LLF: 115.93888034181663
Iteration: 8, Func. Count: 45, Neg. LLF: 115.93888034175646
Optimization terminated successfully (Exit mode 0)
Current function value: 115.93888034181663
Iterations: 8
Function evaluations: 45
Gradient evaluations: 8
Iteration: 1, Func. Count: 7, Neg. LLF: 128.11137068553947
Iteration: 2, Func. Count: 16, Neg. LLF: 124.65223566324568
Iteration: 3, Func. Count: 24, Neg. LLF: 116.45836824765253
Iteration: 4, Func. Count: 31, Neg. LLF: 115.81916858078485
Iteration: 5, Func. Count: 37, Neg. LLF: 115.81890376424252
Iteration: 6, Func. Count: 43, Neg. LLF: 115.81887962816121
Iteration: 7, Func. Count: 49, Neg. LLF: 115.81878724021861
Iteration: 8, Func. Count: 55, Neg. LLF: 115.81876149586193
Iteration: 9, Func. Count: 61, Neg. LLF: 115.81875958580173
Iteration: 10, Func. Count: 66, Neg. LLF: 115.81875958578831
Optimization terminated successfully (Exit mode 0)
Current function value: 115.81875958580173
Iterations: 10
Function evaluations: 66
Gradient evaluations: 10
Iteration: 1, Func. Count: 8, Neg. LLF: 128.14243170520768
Iteration: 2, Func. Count: 18, Neg. LLF: 122.45872903946963
Iteration: 3, Func. Count: 27, Neg. LLF: 115.94997947898077
Iteration: 4, Func. Count: 34, Neg. LLF: 115.83892929436044
Iteration: 5, Func. Count: 41, Neg. LLF: 115.82059519873788
Iteration: 6, Func. Count: 48, Neg. LLF: 115.81877213223194
Iteration: 7, Func. Count: 55, Neg. LLF: 115.81876306057177
Iteration: 8, Func. Count: 62, Neg. LLF: 115.81876224476791
Optimization terminated successfully (Exit mode 0)
Current function value: 115.81876224476791
Iterations: 8
Function evaluations: 62
Gradient evaluations: 8
Iteration: 1, Func. Count: 9, Neg. LLF: 120.6940722782653
Iteration: 2, Func. Count: 19, Neg. LLF: 115.9860047205009
Iteration: 3, Func. Count: 27, Neg. LLF: 115.91400880027984
Iteration: 4, Func. Count: 35, Neg. LLF: 115.84559642739731
Iteration: 5, Func. Count: 43, Neg. LLF: 115.82135843632152
Iteration: 6, Func. Count: 51, Neg. LLF: 115.81928044716332
Iteration: 7, Func. Count: 59, Neg. LLF: 115.81888816416925
Iteration: 8, Func. Count: 67, Neg. LLF: 115.81883714862016
Iteration: 9, Func. Count: 75, Neg. LLF: 115.81882091165376
Iteration: 10, Func. Count: 83, Neg. LLF: 115.81878967426782
Iteration: 11, Func. Count: 91, Neg. LLF: 115.81876798257328
Iteration: 12, Func. Count: 99, Neg. LLF: 115.81876027613238
Iteration: 13, Func. Count: 107, Neg. LLF: 115.81875949503937
Optimization terminated successfully (Exit mode 0)
Current function value: 115.81875949503937
Iterations: 13
Function evaluations: 107
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 145.02140431047766
Iteration: 2, Func. Count: 21, Neg. LLF: 115.98189982364222
Iteration: 3, Func. Count: 30, Neg. LLF: 115.91571792725051
Iteration: 4, Func. Count: 39, Neg. LLF: 115.91213418667031
Iteration: 5, Func. Count: 49, Neg. LLF: 115.82421161915454
Iteration: 6, Func. Count: 58, Neg. LLF: 115.81885547575273
Iteration: 7, Func. Count: 67, Neg. LLF: 115.81882030756464
Iteration: 8, Func. Count: 76, Neg. LLF: 115.81880876645425
Iteration: 9, Func. Count: 85, Neg. LLF: 115.81877727295412
Iteration: 10, Func. Count: 94, Neg. LLF: 115.81876372651578
Iteration: 11, Func. Count: 103, Neg. LLF: 115.81875982257769
Iteration: 12, Func. Count: 111, Neg. LLF: 115.81875982861746
Optimization terminated successfully (Exit mode 0)
Current function value: 115.81875982257769
Iterations: 12
Function evaluations: 111
Gradient evaluations: 12
Iteration: 1, Func. Count: 7, Neg. LLF: 125.9745642722051
Iteration: 2, Func. Count: 15, Neg. LLF: 116.14453707098035
Iteration: 3, Func. Count: 21, Neg. LLF: 119.48697883805009
Iteration: 4, Func. Count: 28, Neg. LLF: 116.91254856717146
Iteration: 5, Func. Count: 36, Neg. LLF: 115.94006229761523
Iteration: 6, Func. Count: 42, Neg. LLF: 115.93889222995108
Iteration: 7, Func. Count: 48, Neg. LLF: 115.93888062899258
Iteration: 8, Func. Count: 53, Neg. LLF: 115.9388806845378
Optimization terminated successfully (Exit mode 0)
Current function value: 115.93888062899258
Iterations: 8
Function evaluations: 53
Gradient evaluations: 8
Iteration: 1, Func. Count: 8, Neg. LLF: 121.72934201215523
Iteration: 2, Func. Count: 18, Neg. LLF: 132.79700335685106
Iteration: 3, Func. Count: 27, Neg. LLF: 115.5740219768497
Iteration: 4, Func. Count: 34, Neg. LLF: 114.94630481327778
Iteration: 5, Func. Count: 41, Neg. LLF: 115.05097436099125
Iteration: 6, Func. Count: 49, Neg. LLF: 114.75883487782015
Iteration: 7, Func. Count: 56, Neg. LLF: 114.75750321326959
Iteration: 8, Func. Count: 63, Neg. LLF: 114.7575716181859
Iteration: 9, Func. Count: 71, Neg. LLF: 114.75651365373018
Iteration: 10, Func. Count: 78, Neg. LLF: 114.75650500144549
Iteration: 11, Func. Count: 84, Neg. LLF: 114.75650468388604
Optimization terminated successfully (Exit mode 0)
Current function value: 114.75650500144549
Iterations: 11
Function evaluations: 84
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 5417571.802699846
Iteration: 2, Func. Count: 19, Neg. LLF: 119.02820660071842
Iteration: 3, Func. Count: 29, Neg. LLF: 114.8878349951909
Iteration: 4, Func. Count: 37, Neg. LLF: 115.45489092679735
Iteration: 5, Func. Count: 46, Neg. LLF: 114.83541087331443
Iteration: 6, Func. Count: 54, Neg. LLF: 114.76870621401851
Iteration: 7, Func. Count: 62, Neg. LLF: 114.74286299588869
Iteration: 8, Func. Count: 70, Neg. LLF: 114.75767823601373
Iteration: 9, Func. Count: 78, Neg. LLF: 114.75753965614551
Iteration: 10, Func. Count: 86, Neg. LLF: 114.77747885905929
Iteration: 11, Func. Count: 100, Neg. LLF: 114.75735964328051
Iteration: 12, Func. Count: 108, Neg. LLF: 114.94460848089031
Iteration: 13, Func. Count: 119, Neg. LLF: 114.75664455412905
Iteration: 14, Func. Count: 127, Neg. LLF: 114.75658664290467
Iteration: 15, Func. Count: 135, Neg. LLF: 114.76195395681295
Iteration: 16, Func. Count: 144, Neg. LLF: 114.75650504639418
Iteration: 17, Func. Count: 151, Neg. LLF: 114.7565047334159
Optimization terminated successfully (Exit mode 0)
Current function value: 114.75650504639418
Iterations: 18
Function evaluations: 151
Gradient evaluations: 17
Iteration: 1, Func. Count: 10, Neg. LLF: 113.84101654197494
Iteration: 2, Func. Count: 19, Neg. LLF: 159.92296677764432
Iteration: 3, Func. Count: 29, Neg. LLF: 124.6476088299231
Iteration: 4, Func. Count: 39, Neg. LLF: 110.87391133121048
Iteration: 5, Func. Count: 48, Neg. LLF: 111.75600970068808
Iteration: 6, Func. Count: 58, Neg. LLF: 111.01526353127537
Iteration: 7, Func. Count: 68, Neg. LLF: 110.20208992226638
Iteration: 8, Func. Count: 78, Neg. LLF: 110.01750924464686
Iteration: 9, Func. Count: 87, Neg. LLF: 110.01225327601828
Iteration: 10, Func. Count: 96, Neg. LLF: 110.01192562661628
Iteration: 11, Func. Count: 105, Neg. LLF: 110.01191970960943
Iteration: 12, Func. Count: 124, Neg. LLF: 110.01193770131279
Iteration: 13, Func. Count: 143, Neg. LLF: 110.01241828135919
Iteration: 14, Func. Count: 153, Neg. LLF: 110.01237640111549
Iteration: 15, Func. Count: 164, Neg. LLF: 110.0120635071148
Iteration: 16, Func. Count: 174, Neg. LLF: 110.01199667258017
Iteration: 17, Func. Count: 182, Neg. LLF: 110.01199643648926
Optimization terminated successfully (Exit mode 0)
Current function value: 110.01199667258017
Iterations: 18
Function evaluations: 182
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 116.45350004785705
Iteration: 2, Func. Count: 22, Neg. LLF: 129.8712116506814
Iteration: 3, Func. Count: 33, Neg. LLF: 110.6300528206836
Iteration: 4, Func. Count: 43, Neg. LLF: 123.06042351077151
Iteration: 5, Func. Count: 55, Neg. LLF: 110.05600520377885
Iteration: 6, Func. Count: 65, Neg. LLF: 110.03142057909885
Iteration: 7, Func. Count: 75, Neg. LLF: 110.01400845725288
Iteration: 8, Func. Count: 85, Neg. LLF: 110.01215494552517
Iteration: 9, Func. Count: 95, Neg. LLF: 110.0120042367702
Iteration: 10, Func. Count: 105, Neg. LLF: 110.01199495666212
Iteration: 11, Func. Count: 115, Neg. LLF: 110.01199643455256
Iteration: 12, Func. Count: 124, Neg. LLF: 110.01199642995971
Optimization terminated successfully (Exit mode 0)
Current function value: 110.01199643455256
Iterations: 12
Function evaluations: 124
Gradient evaluations: 12
Iteration: 1, Func. Count: 8, Neg. LLF: 125.48085351060001
Iteration: 2, Func. Count: 17, Neg. LLF: 119.75831108466969
Iteration: 3, Func. Count: 25, Neg. LLF: 115.96221054749176
Iteration: 4, Func. Count: 32, Neg. LLF: 117.64404996326434
Iteration: 5, Func. Count: 41, Neg. LLF: 115.90284269631158
Iteration: 6, Func. Count: 48, Neg. LLF: 115.89922771017676
Iteration: 7, Func. Count: 55, Neg. LLF: 115.89739704945652
Iteration: 8, Func. Count: 62, Neg. LLF: 115.89727391210417
Iteration: 9, Func. Count: 69, Neg. LLF: 115.89725781345369
Iteration: 10, Func. Count: 75, Neg. LLF: 115.89725776209262
Optimization terminated successfully (Exit mode 0)
Current function value: 115.89725781345369
Iterations: 10
Function evaluations: 75
Gradient evaluations: 10
Iteration: 1, Func. Count: 9, Neg. LLF: 133.3683486954331
Iteration: 2, Func. Count: 19, Neg. LLF: 141.66008233947187
Iteration: 3, Func. Count: 29, Neg. LLF: 116.4287813275552
Iteration: 4, Func. Count: 38, Neg. LLF: 114.52165520587272
Iteration: 5, Func. Count: 46, Neg. LLF: 114.33825703320827
Iteration: 6, Func. Count: 54, Neg. LLF: 114.35364870640964
Iteration: 7, Func. Count: 63, Neg. LLF: 114.33402605300638
Iteration: 8, Func. Count: 71, Neg. LLF: 114.33386471327861
Iteration: 9, Func. Count: 79, Neg. LLF: 114.33384006503684
Iteration: 10, Func. Count: 87, Neg. LLF: 114.33383910622814
Optimization terminated successfully (Exit mode 0)
Current function value: 114.33383910622814
Iterations: 10
Function evaluations: 87
Gradient evaluations: 10
Iteration: 1, Func. Count: 10, Neg. LLF: 142.35901084126345
Iteration: 2, Func. Count: 22, Neg. LLF: 135.2629028002865
Iteration: 3, Func. Count: 32, Neg. LLF: 114.4951773872152
Iteration: 4, Func. Count: 41, Neg. LLF: 114.03163401170353
Iteration: 5, Func. Count: 50, Neg. LLF: 113.90496693854467
Iteration: 6, Func. Count: 59, Neg. LLF: 113.64705407641803
Iteration: 7, Func. Count: 68, Neg. LLF: 113.19454967725507
Iteration: 8, Func. Count: 77, Neg. LLF: 113.1773668291133
Iteration: 9, Func. Count: 86, Neg. LLF: 113.17016840960507
Iteration: 10, Func. Count: 95, Neg. LLF: 113.16967666150374
Iteration: 11, Func. Count: 104, Neg. LLF: 113.16964523355703
Iteration: 12, Func. Count: 113, Neg. LLF: 113.17108200033334
Optimization terminated successfully (Exit mode 0)
Current function value: 113.169644982594
Iterations: 13
Function evaluations: 115
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 118.48899090206878
Iteration: 2, Func. Count: 22, Neg. LLF: 123.441024740332
Iteration: 3, Func. Count: 34, Neg. LLF: 114.26234415599872
Iteration: 4, Func. Count: 44, Neg. LLF: 113.4282592031307
Iteration: 5, Func. Count: 54, Neg. LLF: 114.01811453910497
Iteration: 6, Func. Count: 65, Neg. LLF: 113.23767525130789
Iteration: 7, Func. Count: 75, Neg. LLF: 113.30619774180087
Iteration: 8, Func. Count: 86, Neg. LLF: 113.17480595269431
Iteration: 9, Func. Count: 96, Neg. LLF: 113.17008183925857
Iteration: 10, Func. Count: 106, Neg. LLF: 113.16954772837647
Iteration: 11, Func. Count: 116, Neg. LLF: 113.17730541295043
Iteration: 12, Func. Count: 128, Neg. LLF: 113.17010858522552
Iteration: 13, Func. Count: 139, Neg. LLF: 113.16963230487481
Iteration: 14, Func. Count: 149, Neg. LLF: 113.16963882346715
Optimization terminated successfully (Exit mode 0)
Current function value: 113.16963219309069
Iterations: 15
Function evaluations: 150
Gradient evaluations: 14
Iteration: 1, Func. Count: 12, Neg. LLF: 126.1190541110748
Iteration: 2, Func. Count: 24, Neg. LLF: 124.5708780574301
Iteration: 3, Func. Count: 36, Neg. LLF: 113.42439766106938
Iteration: 4, Func. Count: 47, Neg. LLF: 113.68878822996088
Iteration: 5, Func. Count: 59, Neg. LLF: 113.41213712712386
Iteration: 6, Func. Count: 71, Neg. LLF: 113.18573749733818
Iteration: 7, Func. Count: 82, Neg. LLF: 113.17165929053928
Iteration: 8, Func. Count: 93, Neg. LLF: 113.16975622571256
Iteration: 9, Func. Count: 104, Neg. LLF: 113.16963574910437
Iteration: 10, Func. Count: 115, Neg. LLF: 113.16961868055137
Iteration: 11, Func. Count: 126, Neg. LLF: 113.17026463091238
Optimization terminated successfully (Exit mode 0)
Current function value: 113.16961880049158
Iterations: 12
Function evaluations: 128
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 125.14828960062616
Iteration: 2, Func. Count: 19, Neg. LLF: 122.83489928228916
Iteration: 3, Func. Count: 28, Neg. LLF: 115.9647528003144
Iteration: 4, Func. Count: 36, Neg. LLF: 117.1013730231262
Iteration: 5, Func. Count: 46, Neg. LLF: 115.91855700991302
Iteration: 6, Func. Count: 54, Neg. LLF: 115.90212552597305
Iteration: 7, Func. Count: 62, Neg. LLF: 115.89819698966936
Iteration: 8, Func. Count: 70, Neg. LLF: 115.89733265414337
Iteration: 9, Func. Count: 78, Neg. LLF: 115.89726037802423
Iteration: 10, Func. Count: 86, Neg. LLF: 115.8972578447493
Iteration: 11, Func. Count: 93, Neg. LLF: 115.89725785570312
Optimization terminated successfully (Exit mode 0)
Current function value: 115.8972578447493
Iterations: 11
Function evaluations: 93
Gradient evaluations: 11
Iteration: 1, Func. Count: 10, Neg. LLF: 125.73883870329045
Iteration: 2, Func. Count: 24, Neg. LLF: 156.26604455060945
Iteration: 3, Func. Count: 34, Neg. LLF: 147.53409764423932
Iteration: 4, Func. Count: 44, Neg. LLF: 172.9731841895416
Iteration: 5, Func. Count: 55, Neg. LLF: 113.33100512573425
Iteration: 6, Func. Count: 64, Neg. LLF: 113.28811830708396
Iteration: 7, Func. Count: 73, Neg. LLF: 113.27589570759264
Iteration: 8, Func. Count: 82, Neg. LLF: 113.26924482638202
Iteration: 9, Func. Count: 91, Neg. LLF: 113.26375471468229
Iteration: 10, Func. Count: 100, Neg. LLF: 113.25961162695755
Iteration: 11, Func. Count: 109, Neg. LLF: 113.25707486376477
Iteration: 12, Func. Count: 118, Neg. LLF: 113.25648212427498
Iteration: 13, Func. Count: 127, Neg. LLF: 113.25642992296116
Iteration: 14, Func. Count: 136, Neg. LLF: 113.25642635321124
Iteration: 15, Func. Count: 144, Neg. LLF: 113.25642626844686
Optimization terminated successfully (Exit mode 0)
Current function value: 113.25642635321124
Iterations: 15
Function evaluations: 144
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 123.59117129952942
Iteration: 2, Func. Count: 23, Neg. LLF: 125.67158101064997
Iteration: 3, Func. Count: 34, Neg. LLF: 134.5277573996889
Iteration: 4, Func. Count: 45, Neg. LLF: 113.8848177154268
Iteration: 5, Func. Count: 55, Neg. LLF: 114.0903171555659
Iteration: 6, Func. Count: 66, Neg. LLF: 113.70157066648622
Iteration: 7, Func. Count: 76, Neg. LLF: 113.67943461024055
Iteration: 8, Func. Count: 86, Neg. LLF: 113.9165141063778
Iteration: 9, Func. Count: 97, Neg. LLF: 149.72506342869144
Iteration: 10, Func. Count: 108, Neg. LLF: 113.33006229800536
Iteration: 11, Func. Count: 118, Neg. LLF: 113.3065918357656
Iteration: 12, Func. Count: 128, Neg. LLF: 113.27415462742933
Iteration: 13, Func. Count: 138, Neg. LLF: 113.2606459177691
Iteration: 14, Func. Count: 148, Neg. LLF: 113.25683413853146
Iteration: 15, Func. Count: 158, Neg. LLF: 113.25661136931777
Iteration: 16, Func. Count: 168, Neg. LLF: 113.25653254679568
Iteration: 17, Func. Count: 178, Neg. LLF: 113.25644622602539
Iteration: 18, Func. Count: 188, Neg. LLF: 113.25642846286664
Iteration: 19, Func. Count: 198, Neg. LLF: 113.25642660457117
Iteration: 20, Func. Count: 208, Neg. LLF: 113.25729971134362
Optimization terminated successfully (Exit mode 0)
Current function value: 113.25642658367943
Iterations: 21
Function evaluations: 211
Gradient evaluations: 20
Iteration: 1, Func. Count: 12, Neg. LLF: 260.75039273576925
Iteration: 2, Func. Count: 25, Neg. LLF: 120.80619808558097
Iteration: 3, Func. Count: 38, Neg. LLF: 114.47064730783846
Iteration: 4, Func. Count: 49, Neg. LLF: 114.34867908645776
Iteration: 5, Func. Count: 61, Neg. LLF: 117.45868219765471
Iteration: 6, Func. Count: 73, Neg. LLF: 113.52394849987687
Iteration: 7, Func. Count: 84, Neg. LLF: 113.29133433266219
Iteration: 8, Func. Count: 95, Neg. LLF: 113.26551201086055
Iteration: 9, Func. Count: 106, Neg. LLF: 113.25874674879293
Iteration: 10, Func. Count: 117, Neg. LLF: 113.25704139334903
Iteration: 11, Func. Count: 128, Neg. LLF: 113.25647493955894
Iteration: 12, Func. Count: 139, Neg. LLF: 113.256451733688
Iteration: 13, Func. Count: 150, Neg. LLF: 113.25643925129746
Iteration: 14, Func. Count: 161, Neg. LLF: 113.25642931385453
Iteration: 15, Func. Count: 172, Neg. LLF: 113.25642661834081
Iteration: 16, Func. Count: 182, Neg. LLF: 113.25642657280412
Optimization terminated successfully (Exit mode 0)
Current function value: 113.25642661834081
Iterations: 16
Function evaluations: 182
Gradient evaluations: 16
Iteration: 1, Func. Count: 13, Neg. LLF: 22540067.306214154
Iteration: 2, Func. Count: 27, Neg. LLF: 118.98567279378797
Iteration: 3, Func. Count: 41, Neg. LLF: 113.56864480205509
Iteration: 4, Func. Count: 53, Neg. LLF: 112.29546461340705
Iteration: 5, Func. Count: 65, Neg. LLF: 120.56598953289807
Iteration: 6, Func. Count: 78, Neg. LLF: 113.81026086860956
Iteration: 7, Func. Count: 91, Neg. LLF: 112.43882056023659
Iteration: 8, Func. Count: 104, Neg. LLF: 117.11900361884378
Iteration: 9, Func. Count: 117, Neg. LLF: 111.36943395116954
Iteration: 10, Func. Count: 129, Neg. LLF: 111.31340826177964
Iteration: 11, Func. Count: 141, Neg. LLF: 111.30436273045314
Iteration: 12, Func. Count: 153, Neg. LLF: 111.30389308692847
Iteration: 13, Func. Count: 165, Neg. LLF: 111.30382065048292
Iteration: 14, Func. Count: 177, Neg. LLF: 111.30381850978738
Iteration: 15, Func. Count: 188, Neg. LLF: 111.30381826699352
Optimization terminated successfully (Exit mode 0)
Current function value: 111.30381850978738
Iterations: 15
Function evaluations: 188
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 128.15847554658166
Iteration: 2, Func. Count: 21, Neg. LLF: 499.8835643000555
Iteration: 3, Func. Count: 31, Neg. LLF: 524259.3068678104
Iteration: 4, Func. Count: 41, Neg. LLF: 494776.31110304233
Iteration: 5, Func. Count: 51, Neg. LLF: 379132.1403364306
Iteration: 6, Func. Count: 61, Neg. LLF: 113.17846723050826
Iteration: 7, Func. Count: 71, Neg. LLF: 355815.8025555224
Iteration: 8, Func. Count: 81, Neg. LLF: 110.48774350974027
Iteration: 9, Func. Count: 91, Neg. LLF: 111.35690245573187
Iteration: 10, Func. Count: 101, Neg. LLF: 110.12598040234413
Iteration: 11, Func. Count: 110, Neg. LLF: 110.0070574817587
Iteration: 12, Func. Count: 119, Neg. LLF: 109.9969153054161
Iteration: 13, Func. Count: 128, Neg. LLF: 109.9961284797849
Iteration: 14, Func. Count: 137, Neg. LLF: 109.9961081742307
Iteration: 15, Func. Count: 146, Neg. LLF: 109.99610751953281
Optimization terminated successfully (Exit mode 0)
Current function value: 109.99610751953281
Iterations: 15
Function evaluations: 146
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 119.88628413534403
Iteration: 2, Func. Count: 26, Neg. LLF: 132.981998927399
Iteration: 3, Func. Count: 37, Neg. LLF: 116.85037137363663
Iteration: 4, Func. Count: 48, Neg. LLF: 151.15882703295847
Iteration: 5, Func. Count: 59, Neg. LLF: 119.1263558608676
Iteration: 6, Func. Count: 71, Neg. LLF: 113.85791428576572
Iteration: 7, Func. Count: 82, Neg. LLF: 111.01284121575212
Iteration: 8, Func. Count: 93, Neg. LLF: 109.4288447370352
Iteration: 9, Func. Count: 104, Neg. LLF: 109.0360938973864
Iteration: 10, Func. Count: 114, Neg. LLF: 108.91358358558807
Iteration: 11, Func. Count: 124, Neg. LLF: 108.89183658938713
Iteration: 12, Func. Count: 134, Neg. LLF: 108.87830383822983
Iteration: 13, Func. Count: 144, Neg. LLF: 108.87388042513571
Iteration: 14, Func. Count: 154, Neg. LLF: 108.86841456733966
Iteration: 15, Func. Count: 164, Neg. LLF: 108.86164127766939
Iteration: 16, Func. Count: 174, Neg. LLF: 108.85527328676082
Iteration: 17, Func. Count: 184, Neg. LLF: 108.85286970267154
Iteration: 18, Func. Count: 194, Neg. LLF: 108.85262857786363
Iteration: 19, Func. Count: 204, Neg. LLF: 108.85260634575351
Iteration: 20, Func. Count: 213, Neg. LLF: 108.85260632159398
Optimization terminated successfully (Exit mode 0)
Current function value: 108.85260634575351
Iterations: 20
Function evaluations: 213
Gradient evaluations: 20
Iteration: 1, Func. Count: 12, Neg. LLF: 112.66812834868777
Iteration: 2, Func. Count: 24, Neg. LLF: 111.33852948290837
Iteration: 3, Func. Count: 36, Neg. LLF: 116.91850191243319
Iteration: 4, Func. Count: 49, Neg. LLF: 1424201.4904600645
Iteration: 5, Func. Count: 61, Neg. LLF: 127.21151309418161
Iteration: 6, Func. Count: 73, Neg. LLF: 113.19029653803115
Iteration: 7, Func. Count: 85, Neg. LLF: 109.01342942755619
Iteration: 8, Func. Count: 96, Neg. LLF: 108.87607355919721
Iteration: 9, Func. Count: 107, Neg. LLF: 108.87290624748084
Iteration: 10, Func. Count: 119, Neg. LLF: 108.85995821215498
Iteration: 11, Func. Count: 130, Neg. LLF: 108.85570231531767
Iteration: 12, Func. Count: 141, Neg. LLF: 108.85451860577538
Iteration: 13, Func. Count: 152, Neg. LLF: 108.8526872731569
Iteration: 14, Func. Count: 163, Neg. LLF: 108.85261046834833
Iteration: 15, Func. Count: 174, Neg. LLF: 108.85260610627222
Iteration: 16, Func. Count: 184, Neg. LLF: 108.85260612104408
Optimization terminated successfully (Exit mode 0)
Current function value: 108.85260610627222
Iterations: 16
Function evaluations: 184
Gradient evaluations: 16
Iteration: 1, Func. Count: 13, Neg. LLF: 117.90250279707571
Iteration: 2, Func. Count: 28, Neg. LLF: 190.03592743990842
Iteration: 3, Func. Count: 41, Neg. LLF: 139.0376243470484
Iteration: 4, Func. Count: 54, Neg. LLF: 127.51531085893974
Iteration: 5, Func. Count: 67, Neg. LLF: 153.18313251299088
Iteration: 6, Func. Count: 80, Neg. LLF: 278.0756702561301
Iteration: 7, Func. Count: 93, Neg. LLF: 262.4677704623173
Iteration: 8, Func. Count: 106, Neg. LLF: 259.40291698086
Iteration: 9, Func. Count: 119, Neg. LLF: 244.38297448239723
Iteration: 10, Func. Count: 132, Neg. LLF: 188.51632733624334
Iteration: 11, Func. Count: 145, Neg. LLF: 240.12470102065853
Iteration: 12, Func. Count: 158, Neg. LLF: 108.46105487913643
Iteration: 13, Func. Count: 171, Neg. LLF: 106.80028929768444
Iteration: 14, Func. Count: 183, Neg. LLF: 106.65320579617244
Iteration: 15, Func. Count: 195, Neg. LLF: 107.87062447044268
Iteration: 16, Func. Count: 208, Neg. LLF: 107.41114568031098
Iteration: 17, Func. Count: 221, Neg. LLF: 106.75886875212
Iteration: 18, Func. Count: 234, Neg. LLF: 106.40072981017725
Iteration: 19, Func. Count: 246, Neg. LLF: 106.40163128536541
Iteration: 20, Func. Count: 259, Neg. LLF: 106.39468099184798
Iteration: 21, Func. Count: 271, Neg. LLF: 106.38706352063343
Iteration: 22, Func. Count: 283, Neg. LLF: 106.37628001012509
Iteration: 23, Func. Count: 295, Neg. LLF: 106.3543672347536
Iteration: 24, Func. Count: 307, Neg. LLF: 106.32370995487575
Iteration: 25, Func. Count: 319, Neg. LLF: 106.3031223973853
Iteration: 26, Func. Count: 331, Neg. LLF: 106.29879698211492
Iteration: 27, Func. Count: 343, Neg. LLF: 106.29849558046719
Iteration: 28, Func. Count: 355, Neg. LLF: 106.2984742117905
Iteration: 29, Func. Count: 366, Neg. LLF: 106.2984741111077
Optimization terminated successfully (Exit mode 0)
Current function value: 106.2984742117905
Iterations: 29
Function evaluations: 366
Gradient evaluations: 29
Iteration: 1, Func. Count: 14, Neg. LLF: 111.67208676268292
Iteration: 2, Func. Count: 27, Neg. LLF: 120.92546033515225
Iteration: 3, Func. Count: 42, Neg. LLF: 117.09568877910668
Iteration: 4, Func. Count: 56, Neg. LLF: 187.51043346827652
Iteration: 5, Func. Count: 70, Neg. LLF: 150.87024394718148
Iteration: 6, Func. Count: 84, Neg. LLF: 162.40547667722615
Iteration: 7, Func. Count: 98, Neg. LLF: 156.28372163290175
Iteration: 8, Func. Count: 112, Neg. LLF: 148.35250293412756
Iteration: 9, Func. Count: 126, Neg. LLF: 827999.5081379941
Iteration: 10, Func. Count: 141, Neg. LLF: 135.84963134867988
Iteration: 11, Func. Count: 155, Neg. LLF: 137.05660845570276
Iteration: 12, Func. Count: 169, Neg. LLF: 118.67826333564484
Iteration: 13, Func. Count: 183, Neg. LLF: 115.92276415687466
Iteration: 14, Func. Count: 197, Neg. LLF: 116.1167425187927
Iteration: 15, Func. Count: 211, Neg. LLF: 130.2825454866846
Iteration: 16, Func. Count: 225, Neg. LLF: 109.04054978484226
Iteration: 17, Func. Count: 239, Neg. LLF: 111.60261300795969
Iteration: 18, Func. Count: 253, Neg. LLF: 106.8819844280212
Iteration: 19, Func. Count: 266, Neg. LLF: 107.5740302979968
Iteration: 20, Func. Count: 280, Neg. LLF: 107.33358329000679
Iteration: 21, Func. Count: 294, Neg. LLF: 106.68034307823204
Iteration: 22, Func. Count: 307, Neg. LLF: 107.07744349124657
Iteration: 23, Func. Count: 321, Neg. LLF: 106.5512346743476
Iteration: 24, Func. Count: 335, Neg. LLF: 106.3464454551092
Iteration: 25, Func. Count: 348, Neg. LLF: 106.31951531232059
Iteration: 26, Func. Count: 361, Neg. LLF: 106.29947765087506
Iteration: 27, Func. Count: 374, Neg. LLF: 106.29853247898234
Iteration: 28, Func. Count: 387, Neg. LLF: 106.29847422920177
Iteration: 29, Func. Count: 399, Neg. LLF: 106.29847422898158
Optimization terminated successfully (Exit mode 0)
Current function value: 106.29847422920177
Iterations: 29
Function evaluations: 399
Gradient evaluations: 29
Iteration: 1, Func. Count: 7, Neg. LLF: 125.16669670746
Iteration: 2, Func. Count: 15, Neg. LLF: 118.20191550192857
Iteration: 3, Func. Count: 22, Neg. LLF: 116.33028594315805
Iteration: 4, Func. Count: 28, Neg. LLF: 126.78408264748755
Iteration: 5, Func. Count: 36, Neg. LLF: 123.08123041783071
Iteration: 6, Func. Count: 45, Neg. LLF: 200.8272608535981
Iteration: 7, Func. Count: 52, Neg. LLF: 115.55044036359679
Iteration: 8, Func. Count: 58, Neg. LLF: 115.51432660976056
Iteration: 9, Func. Count: 64, Neg. LLF: 115.50023794592731
Iteration: 10, Func. Count: 70, Neg. LLF: 115.49950788654182
Iteration: 11, Func. Count: 76, Neg. LLF: 115.49950150109859
Iteration: 12, Func. Count: 82, Neg. LLF: 115.49949943701989
Iteration: 13, Func. Count: 88, Neg. LLF: 115.49949809074916
Iteration: 14, Func. Count: 93, Neg. LLF: 115.49949809080277
Optimization terminated successfully (Exit mode 0)
Current function value: 115.49949809074916
Iterations: 14
Function evaluations: 93
Gradient evaluations: 14
Iteration: 1, Func. Count: 8, Neg. LLF: 126.9634634535051
Iteration: 2, Func. Count: 18, Neg. LLF: 126.88795654217164
Iteration: 3, Func. Count: 27, Neg. LLF: 116.78642154607986
Iteration: 4, Func. Count: 35, Neg. LLF: 116.2702982246701
Iteration: 5, Func. Count: 43, Neg. LLF: 115.93712441443701
Iteration: 6, Func. Count: 51, Neg. LLF: 115.62244428420829
Iteration: 7, Func. Count: 58, Neg. LLF: 115.56571698610422
Iteration: 8, Func. Count: 65, Neg. LLF: 115.51049118326904
Iteration: 9, Func. Count: 72, Neg. LLF: 115.50174677167487
Iteration: 10, Func. Count: 79, Neg. LLF: 115.49988210588549
Iteration: 11, Func. Count: 86, Neg. LLF: 115.49960672550958
Iteration: 12, Func. Count: 93, Neg. LLF: 115.4995114495463
Iteration: 13, Func. Count: 100, Neg. LLF: 115.49949868535066
Iteration: 14, Func. Count: 107, Neg. LLF: 115.4994979843047
Optimization terminated successfully (Exit mode 0)
Current function value: 115.4994979843047
Iterations: 14
Function evaluations: 107
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 126.96400427984732
Iteration: 2, Func. Count: 20, Neg. LLF: 126.77501088377115
Iteration: 3, Func. Count: 30, Neg. LLF: 124.82720723334226
Iteration: 4, Func. Count: 40, Neg. LLF: 117.155736027096
Iteration: 5, Func. Count: 49, Neg. LLF: 115.67330402880157
Iteration: 6, Func. Count: 57, Neg. LLF: 115.64715117550769
Iteration: 7, Func. Count: 65, Neg. LLF: 115.62470509330171
Iteration: 8, Func. Count: 73, Neg. LLF: 115.55314624725324
Iteration: 9, Func. Count: 81, Neg. LLF: 115.51689553675271
Iteration: 10, Func. Count: 89, Neg. LLF: 115.50132740848714
Iteration: 11, Func. Count: 97, Neg. LLF: 115.49979964230255
Iteration: 12, Func. Count: 105, Neg. LLF: 115.49959631259583
Iteration: 13, Func. Count: 113, Neg. LLF: 115.49951673612765
Iteration: 14, Func. Count: 121, Neg. LLF: 115.49950209855658
Iteration: 15, Func. Count: 129, Neg. LLF: 115.49949808002317
Iteration: 16, Func. Count: 136, Neg. LLF: 115.49949809143814
Optimization terminated successfully (Exit mode 0)
Current function value: 115.49949808002317
Iterations: 16
Function evaluations: 136
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 126.82311378221127
Iteration: 2, Func. Count: 22, Neg. LLF: 123.04413869747535
Iteration: 3, Func. Count: 32, Neg. LLF: 127.17692045968992
Iteration: 4, Func. Count: 44, Neg. LLF: 122.51989385883066
Iteration: 5, Func. Count: 55, Neg. LLF: 115.65305389678103
Iteration: 6, Func. Count: 64, Neg. LLF: 115.62633683045105
Iteration: 7, Func. Count: 73, Neg. LLF: 115.55607632450267
Iteration: 8, Func. Count: 82, Neg. LLF: 115.53032803948041
Iteration: 9, Func. Count: 91, Neg. LLF: 115.50243730974134
Iteration: 10, Func. Count: 100, Neg. LLF: 115.49992758766093
Iteration: 11, Func. Count: 109, Neg. LLF: 115.4994987278125
Iteration: 12, Func. Count: 118, Neg. LLF: 115.49949800842914
Optimization terminated successfully (Exit mode 0)
Current function value: 115.49949800842914
Iterations: 12
Function evaluations: 118
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 126.7167854908419
Iteration: 2, Func. Count: 24, Neg. LLF: 122.79912132676742
Iteration: 3, Func. Count: 35, Neg. LLF: 129.28571391507185
Iteration: 4, Func. Count: 47, Neg. LLF: 121.55839432067414
Iteration: 5, Func. Count: 59, Neg. LLF: 115.66519813108816
Iteration: 6, Func. Count: 69, Neg. LLF: 115.62422981630979
Iteration: 7, Func. Count: 79, Neg. LLF: 115.577971067961
Iteration: 8, Func. Count: 89, Neg. LLF: 115.54684645670974
Iteration: 9, Func. Count: 99, Neg. LLF: 115.51296640831724
Iteration: 10, Func. Count: 109, Neg. LLF: 115.50283175775597
Iteration: 11, Func. Count: 119, Neg. LLF: 115.49968701771667
Iteration: 12, Func. Count: 129, Neg. LLF: 115.49951410231986
Iteration: 13, Func. Count: 139, Neg. LLF: 115.49950500390953
Iteration: 14, Func. Count: 149, Neg. LLF: 115.49949831046396
Iteration: 15, Func. Count: 158, Neg. LLF: 115.49949831075723
Optimization terminated successfully (Exit mode 0)
Current function value: 115.49949831046396
Iterations: 15
Function evaluations: 158
Gradient evaluations: 15
Iteration: 1, Func. Count: 8, Neg. LLF: 124.96539042336397
Iteration: 2, Func. Count: 17, Neg. LLF: 117.5465899342746
Iteration: 3, Func. Count: 25, Neg. LLF: 116.42894605403676
Iteration: 4, Func. Count: 33, Neg. LLF: 119.38776534574747
Iteration: 5, Func. Count: 42, Neg. LLF: 115.94875819251907
Iteration: 6, Func. Count: 50, Neg. LLF: 115.54125907679926
Iteration: 7, Func. Count: 57, Neg. LLF: 115.50031872453582
Iteration: 8, Func. Count: 64, Neg. LLF: 115.49952493436115
Iteration: 9, Func. Count: 71, Neg. LLF: 115.49950377488884
Iteration: 10, Func. Count: 78, Neg. LLF: 115.49949803932728
Iteration: 11, Func. Count: 84, Neg. LLF: 115.49949798619664
Optimization terminated successfully (Exit mode 0)
Current function value: 115.49949803932728
Iterations: 11
Function evaluations: 84
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 126.50010220072066
Iteration: 2, Func. Count: 20, Neg. LLF: 126.43202331851394
Iteration: 3, Func. Count: 30, Neg. LLF: 116.99029560488205
Iteration: 4, Func. Count: 39, Neg. LLF: 117.18135909435837
Iteration: 5, Func. Count: 49, Neg. LLF: 115.7201466449117
Iteration: 6, Func. Count: 57, Neg. LLF: 115.62843850397378
Iteration: 7, Func. Count: 65, Neg. LLF: 115.60911243795897
Iteration: 8, Func. Count: 73, Neg. LLF: 115.53002568473808
Iteration: 9, Func. Count: 81, Neg. LLF: 115.50499897032115
Iteration: 10, Func. Count: 89, Neg. LLF: 115.50044630798813
Iteration: 11, Func. Count: 97, Neg. LLF: 115.499597433905
Iteration: 12, Func. Count: 105, Neg. LLF: 115.4995288193808
Iteration: 13, Func. Count: 113, Neg. LLF: 115.49950219126586
Iteration: 14, Func. Count: 121, Neg. LLF: 115.49949819229306
Iteration: 15, Func. Count: 128, Neg. LLF: 115.49949819588916
Optimization terminated successfully (Exit mode 0)
Current function value: 115.49949819229306
Iterations: 15
Function evaluations: 128
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 5418040.450440839
Iteration: 2, Func. Count: 21, Neg. LLF: 119.74564795524036
Iteration: 3, Func. Count: 32, Neg. LLF: 114.87750247606432
Iteration: 4, Func. Count: 41, Neg. LLF: 115.13417036358177
Iteration: 5, Func. Count: 51, Neg. LLF: 114.83062615960763
Iteration: 6, Func. Count: 60, Neg. LLF: 114.76471141306943
Iteration: 7, Func. Count: 69, Neg. LLF: 114.75901745309741
Iteration: 8, Func. Count: 78, Neg. LLF: 114.75791369864646
Iteration: 9, Func. Count: 87, Neg. LLF: 114.9973388733688
Iteration: 10, Func. Count: 102, Neg. LLF: 114.74280658557615
Iteration: 11, Func. Count: 121, Neg. LLF: 115.18139713809052
Iteration: 12, Func. Count: 140, Neg. LLF: 114.75209229107313
Iteration: 13, Func. Count: 149, Neg. LLF: 148.82867540300518
Iteration: 14, Func. Count: 161, Neg. LLF: 114.75718033437423
Iteration: 15, Func. Count: 171, Neg. LLF: 114.75651317658915
Iteration: 16, Func. Count: 181, Neg. LLF: 114.7565050484576
Iteration: 17, Func. Count: 190, Neg. LLF: 114.78235889901867
Optimization terminated successfully (Exit mode 0)
Current function value: 114.7565049835509
Iterations: 19
Function evaluations: 193
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 110.99188573152163
Iteration: 2, Func. Count: 21, Neg. LLF: 124.05638909463552
Iteration: 3, Func. Count: 32, Neg. LLF: 123.3118602713866
Iteration: 4, Func. Count: 44, Neg. LLF: 110.79277099623675
Iteration: 5, Func. Count: 55, Neg. LLF: 110.21280557874978
Iteration: 6, Func. Count: 66, Neg. LLF: 110.04834801295874
Iteration: 7, Func. Count: 77, Neg. LLF: 110.01206557301272
Iteration: 8, Func. Count: 87, Neg. LLF: 110.0119978975552
Iteration: 9, Func. Count: 97, Neg. LLF: 110.01199675366011
Iteration: 10, Func. Count: 107, Neg. LLF: 110.01199583167143
Optimization terminated successfully (Exit mode 0)
Current function value: 110.01199623026262
Iterations: 10
Function evaluations: 108
Gradient evaluations: 10
Iteration: 1, Func. Count: 12, Neg. LLF: 116.53712792897633
Iteration: 2, Func. Count: 24, Neg. LLF: 119.33406340968158
Iteration: 3, Func. Count: 36, Neg. LLF: 110.9907667365086
Iteration: 4, Func. Count: 47, Neg. LLF: 121.53373338847965
Iteration: 5, Func. Count: 60, Neg. LLF: 110.15414245661658
Iteration: 6, Func. Count: 71, Neg. LLF: 110.07469407015053
Iteration: 7, Func. Count: 82, Neg. LLF: 110.01925214064273
Iteration: 8, Func. Count: 93, Neg. LLF: 110.01062418955945
Iteration: 9, Func. Count: 104, Neg. LLF: 110.00772579750918
Iteration: 10, Func. Count: 125, Neg. LLF: 110.00607116573993
Iteration: 11, Func. Count: 146, Neg. LLF: 110.00611673087376
Iteration: 12, Func. Count: 167, Neg. LLF: 111.06458354809243
Iteration: 13, Func. Count: 180, Neg. LLF: 110.02890346254262
Iteration: 14, Func. Count: 192, Neg. LLF: 110.01498090093659
Iteration: 15, Func. Count: 204, Neg. LLF: 110.01199662889756
Iteration: 16, Func. Count: 214, Neg. LLF: 110.01199662436099
Optimization terminated successfully (Exit mode 0)
Current function value: 110.01199662889756
Iterations: 17
Function evaluations: 214
Gradient evaluations: 16
Iteration: 1, Func. Count: 9, Neg. LLF: 125.08283631692218
Iteration: 2, Func. Count: 19, Neg. LLF: 119.47377653262447
Iteration: 3, Func. Count: 29, Neg. LLF: 116.02224466986699
Iteration: 4, Func. Count: 37, Neg. LLF: 116.41246723987997
Iteration: 5, Func. Count: 46, Neg. LLF: 141.50520847695026
Iteration: 6, Func. Count: 56, Neg. LLF: 115.58246337468927
Iteration: 7, Func. Count: 64, Neg. LLF: 115.65220838476719
Iteration: 8, Func. Count: 73, Neg. LLF: 115.54167457930323
Iteration: 9, Func. Count: 82, Neg. LLF: 115.43805349851485
Iteration: 10, Func. Count: 90, Neg. LLF: 115.43751065966094
Iteration: 11, Func. Count: 98, Neg. LLF: 115.43748268974974
Iteration: 12, Func. Count: 106, Neg. LLF: 115.43747971780138
Iteration: 13, Func. Count: 113, Neg. LLF: 115.43747965551599
Optimization terminated successfully (Exit mode 0)
Current function value: 115.43747971780138
Iterations: 13
Function evaluations: 113
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 134.35556138243606
Iteration: 2, Func. Count: 21, Neg. LLF: 135.95454216329898
Iteration: 3, Func. Count: 33, Neg. LLF: 116.55608949775898
Iteration: 4, Func. Count: 43, Neg. LLF: 114.52121590343872
Iteration: 5, Func. Count: 52, Neg. LLF: 114.41448487346574
Iteration: 6, Func. Count: 61, Neg. LLF: 114.39673037614715
Iteration: 7, Func. Count: 71, Neg. LLF: 114.342153256704
Iteration: 8, Func. Count: 80, Neg. LLF: 114.33529308007822
Iteration: 9, Func. Count: 89, Neg. LLF: 114.33475654775837
Iteration: 10, Func. Count: 98, Neg. LLF: 114.3338449794867
Iteration: 11, Func. Count: 107, Neg. LLF: 114.33383913321944
Iteration: 12, Func. Count: 116, Neg. LLF: 114.33566728986582
Optimization terminated successfully (Exit mode 0)
Current function value: 114.33383912049545
Iterations: 13
Function evaluations: 119
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 139.3897563695345
Iteration: 2, Func. Count: 24, Neg. LLF: 135.36172852172677
Iteration: 3, Func. Count: 35, Neg. LLF: 114.4276907012326
Iteration: 4, Func. Count: 45, Neg. LLF: 113.88616569254535
Iteration: 5, Func. Count: 55, Neg. LLF: 113.76938917412511
Iteration: 6, Func. Count: 65, Neg. LLF: 113.34270189236148
Iteration: 7, Func. Count: 75, Neg. LLF: 113.1848531616109
Iteration: 8, Func. Count: 85, Neg. LLF: 113.17024392313495
Iteration: 9, Func. Count: 95, Neg. LLF: 113.16931091306598
Iteration: 10, Func. Count: 105, Neg. LLF: 113.16958791913245
Iteration: 11, Func. Count: 115, Neg. LLF: 113.16950364861626
Iteration: 12, Func. Count: 135, Neg. LLF: 113.17773462866488
Iteration: 13, Func. Count: 147, Neg. LLF: 113.16965840880965
Iteration: 14, Func. Count: 158, Neg. LLF: 113.16963230616861
Iteration: 15, Func. Count: 167, Neg. LLF: 113.16963206993026
Optimization terminated successfully (Exit mode 0)
Current function value: 113.16963230616861
Iterations: 16
Function evaluations: 167
Gradient evaluations: 15
Iteration: 1, Func. Count: 12, Neg. LLF: 128.74291128851516
Iteration: 2, Func. Count: 25, Neg. LLF: 127.06883996774457
Iteration: 3, Func. Count: 38, Neg. LLF: 114.64304016384094
Iteration: 4, Func. Count: 49, Neg. LLF: 114.66636570651872
Iteration: 5, Func. Count: 61, Neg. LLF: 114.52212393630306
Iteration: 6, Func. Count: 72, Neg. LLF: 114.40953790392099
Iteration: 7, Func. Count: 83, Neg. LLF: 114.30585955464198
Iteration: 8, Func. Count: 94, Neg. LLF: 114.205324095032
Iteration: 9, Func. Count: 105, Neg. LLF: 114.16479079344815
Iteration: 10, Func. Count: 116, Neg. LLF: 114.13560123062015
Iteration: 11, Func. Count: 127, Neg. LLF: 114.13395044321663
Iteration: 12, Func. Count: 138, Neg. LLF: 114.13386673128275
Iteration: 13, Func. Count: 149, Neg. LLF: 114.13373175548246
Iteration: 14, Func. Count: 160, Neg. LLF: 114.3041156580209
Iteration: 15, Func. Count: 173, Neg. LLF: 114.13582004106841
Iteration: 16, Func. Count: 185, Neg. LLF: 114.13380926116757
Iteration: 17, Func. Count: 197, Neg. LLF: 114.13363082772982
Iteration: 18, Func. Count: 208, Neg. LLF: 114.13363085158166
Optimization terminated successfully (Exit mode 0)
Current function value: 114.13363056210838
Iterations: 19
Function evaluations: 209
Gradient evaluations: 18
Iteration: 1, Func. Count: 13, Neg. LLF: 160.55095571587674
Iteration: 2, Func. Count: 27, Neg. LLF: 126.7668707052799
Iteration: 3, Func. Count: 40, Neg. LLF: 114.43596683484509
Iteration: 4, Func. Count: 52, Neg. LLF: 113.49673098011633
Iteration: 5, Func. Count: 64, Neg. LLF: 113.37789290396654
Iteration: 6, Func. Count: 76, Neg. LLF: 113.29880693280897
Iteration: 7, Func. Count: 88, Neg. LLF: 113.27301683130177
Iteration: 8, Func. Count: 100, Neg. LLF: 113.23075715484448
Iteration: 9, Func. Count: 112, Neg. LLF: 113.21308029945807
Iteration: 10, Func. Count: 124, Neg. LLF: 113.18212246858612
Iteration: 11, Func. Count: 136, Neg. LLF: 113.10819598824288
Iteration: 12, Func. Count: 150, Neg. LLF: 125.73972039504247
Iteration: 13, Func. Count: 164, Neg. LLF: 113.3010106236651
Iteration: 14, Func. Count: 177, Neg. LLF: 113.17038960707539
Iteration: 15, Func. Count: 189, Neg. LLF: 113.1706358932211
Iteration: 16, Func. Count: 202, Neg. LLF: 113.16997418825343
Iteration: 17, Func. Count: 214, Neg. LLF: 113.16963202705911
Optimization terminated successfully (Exit mode 0)
Current function value: 113.16963224895848
Iterations: 18
Function evaluations: 214
Gradient evaluations: 17
Iteration: 1, Func. Count: 10, Neg. LLF: 125.09082539448399
Iteration: 2, Func. Count: 21, Neg. LLF: 119.59647695120728
Iteration: 3, Func. Count: 32, Neg. LLF: 116.02600662928609
Iteration: 4, Func. Count: 41, Neg. LLF: 116.25806228909623
Iteration: 5, Func. Count: 51, Neg. LLF: 138.0583372757711
Iteration: 6, Func. Count: 62, Neg. LLF: 115.5768699324471
Iteration: 7, Func. Count: 71, Neg. LLF: 115.6930970019067
Iteration: 8, Func. Count: 81, Neg. LLF: 115.43030407397974
Iteration: 9, Func. Count: 91, Neg. LLF: 115.40784823116257
Iteration: 10, Func. Count: 100, Neg. LLF: 115.40778804605
Iteration: 11, Func. Count: 109, Neg. LLF: 115.40777894722243
Iteration: 12, Func. Count: 118, Neg. LLF: 115.40777815339041
Optimization terminated successfully (Exit mode 0)
Current function value: 115.40777815339041
Iterations: 12
Function evaluations: 118
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 125.85359888252613
Iteration: 2, Func. Count: 26, Neg. LLF: 155.7005804270609
Iteration: 3, Func. Count: 37, Neg. LLF: 147.52093011742727
Iteration: 4, Func. Count: 48, Neg. LLF: 140.22866018685596
Iteration: 5, Func. Count: 59, Neg. LLF: 113.69183564356786
Iteration: 6, Func. Count: 70, Neg. LLF: 113.58637812450492
Iteration: 7, Func. Count: 81, Neg. LLF: 113.33733858778292
Iteration: 8, Func. Count: 91, Neg. LLF: 113.24978528499938
Iteration: 9, Func. Count: 101, Neg. LLF: 113.24573169787061
Iteration: 10, Func. Count: 111, Neg. LLF: 113.23317552310569
Iteration: 11, Func. Count: 121, Neg. LLF: 113.22902237680007
Iteration: 12, Func. Count: 131, Neg. LLF: 113.22716177934635
Iteration: 13, Func. Count: 141, Neg. LLF: 113.22709194019507
Iteration: 14, Func. Count: 151, Neg. LLF: 113.22709006013014
Iteration: 15, Func. Count: 160, Neg. LLF: 113.22708998036028
Optimization terminated successfully (Exit mode 0)
Current function value: 113.22709006013014
Iterations: 15
Function evaluations: 160
Gradient evaluations: 15
Iteration: 1, Func. Count: 12, Neg. LLF: 124.17911013260866
Iteration: 2, Func. Count: 25, Neg. LLF: 117.32689245569745
Iteration: 3, Func. Count: 37, Neg. LLF: 114.3289609149564
Iteration: 4, Func. Count: 48, Neg. LLF: 114.104845274574
Iteration: 5, Func. Count: 59, Neg. LLF: 150.8079808095755
Iteration: 6, Func. Count: 71, Neg. LLF: 130.44837225666078
Iteration: 7, Func. Count: 83, Neg. LLF: 113.63633171358003
Iteration: 8, Func. Count: 95, Neg. LLF: 139.81743970860626
Iteration: 9, Func. Count: 108, Neg. LLF: 113.26947603299773
Iteration: 10, Func. Count: 119, Neg. LLF: 113.23982092277203
Iteration: 11, Func. Count: 130, Neg. LLF: 113.23123230961558
Iteration: 12, Func. Count: 141, Neg. LLF: 113.23052218483433
Iteration: 13, Func. Count: 152, Neg. LLF: 113.2295857623854
Iteration: 14, Func. Count: 163, Neg. LLF: 113.22798732788529
Iteration: 15, Func. Count: 174, Neg. LLF: 113.22726320155309
Iteration: 16, Func. Count: 185, Neg. LLF: 113.22709881329199
Iteration: 17, Func. Count: 196, Neg. LLF: 113.22709014022374
Iteration: 18, Func. Count: 206, Neg. LLF: 113.22709014975557
Optimization terminated successfully (Exit mode 0)
Current function value: 113.22709014022374
Iterations: 18
Function evaluations: 206
Gradient evaluations: 18
Iteration: 1, Func. Count: 13, Neg. LLF: 381.9278955406014
Iteration: 2, Func. Count: 27, Neg. LLF: 120.90680564066605
Iteration: 3, Func. Count: 41, Neg. LLF: 114.28621642252679
Iteration: 4, Func. Count: 53, Neg. LLF: 114.45183180938163
Iteration: 5, Func. Count: 66, Neg. LLF: 117.70282336013769
Iteration: 6, Func. Count: 79, Neg. LLF: 114.33658617234993
Iteration: 7, Func. Count: 92, Neg. LLF: 132.55546493829374
Iteration: 8, Func. Count: 105, Neg. LLF: 113.33704209355686
Iteration: 9, Func. Count: 117, Neg. LLF: 113.28294992728658
Iteration: 10, Func. Count: 129, Neg. LLF: 113.24143078641734
Iteration: 11, Func. Count: 141, Neg. LLF: 113.23251293941583
Iteration: 12, Func. Count: 153, Neg. LLF: 113.23052105283556
Iteration: 13, Func. Count: 165, Neg. LLF: 113.22901941560221
Iteration: 14, Func. Count: 177, Neg. LLF: 113.22758866988185
Iteration: 15, Func. Count: 189, Neg. LLF: 113.22712870819731
Iteration: 16, Func. Count: 201, Neg. LLF: 113.22709259437836
Iteration: 17, Func. Count: 213, Neg. LLF: 113.22709116261348
Iteration: 18, Func. Count: 224, Neg. LLF: 113.2270911170736
Optimization terminated successfully (Exit mode 0)
Current function value: 113.22709116261348
Iterations: 18
Function evaluations: 224
Gradient evaluations: 18
Iteration: 1, Func. Count: 14, Neg. LLF: 22894162.43192537
Iteration: 2, Func. Count: 29, Neg. LLF: 119.20794694717027
Iteration: 3, Func. Count: 44, Neg. LLF: 113.46256040230696
Iteration: 4, Func. Count: 57, Neg. LLF: 112.39391585095484
Iteration: 5, Func. Count: 70, Neg. LLF: 121.27969223913826
Iteration: 6, Func. Count: 84, Neg. LLF: 112.56086099181208
Iteration: 7, Func. Count: 98, Neg. LLF: 136.81413475201347
Iteration: 8, Func. Count: 112, Neg. LLF: 111.83990796526749
Iteration: 9, Func. Count: 126, Neg. LLF: 176.10677185281153
Iteration: 10, Func. Count: 140, Neg. LLF: 111.33731683584988
Iteration: 11, Func. Count: 153, Neg. LLF: 111.8652546457556
Iteration: 12, Func. Count: 167, Neg. LLF: 111.33358534264129
Iteration: 13, Func. Count: 181, Neg. LLF: 111.30277849459647
Iteration: 14, Func. Count: 194, Neg. LLF: 111.30274363270077
Iteration: 15, Func. Count: 207, Neg. LLF: 111.79490968958233
Optimization terminated successfully (Exit mode 0)
Current function value: 111.30274304500797
Iterations: 16
Function evaluations: 210
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 119.54631201009637
Iteration: 2, Func. Count: 22, Neg. LLF: 153.51754054638863
Iteration: 3, Func. Count: 33, Neg. LLF: 749.0337087347399
Iteration: 4, Func. Count: 44, Neg. LLF: 2543975.8700069864
Iteration: 5, Func. Count: 55, Neg. LLF: 215.8354777307157
Iteration: 6, Func. Count: 66, Neg. LLF: 505708.7104796081
Iteration: 7, Func. Count: 77, Neg. LLF: 825.0504971628566
Iteration: 8, Func. Count: 88, Neg. LLF: 528175.9231397936
Iteration: 9, Func. Count: 99, Neg. LLF: 116.38028730797247
Iteration: 10, Func. Count: 110, Neg. LLF: 115.83856019577928
Iteration: 11, Func. Count: 121, Neg. LLF: 108.2231452028408
Iteration: 12, Func. Count: 132, Neg. LLF: 108.5396004311234
Iteration: 13, Func. Count: 144, Neg. LLF: 113.20300013804115
Iteration: 14, Func. Count: 155, Neg. LLF: 107.60906896172102
Iteration: 15, Func. Count: 165, Neg. LLF: 107.60632023216233
Iteration: 16, Func. Count: 176, Neg. LLF: 107.56760968192243
Iteration: 17, Func. Count: 186, Neg. LLF: 107.56151040910652
Iteration: 18, Func. Count: 196, Neg. LLF: 107.55507042785365
Iteration: 19, Func. Count: 206, Neg. LLF: 107.55484573393082
Iteration: 20, Func. Count: 216, Neg. LLF: 107.55483773408238
Iteration: 21, Func. Count: 226, Neg. LLF: 107.55483434064577
Iteration: 22, Func. Count: 235, Neg. LLF: 107.55483433767948
Optimization terminated successfully (Exit mode 0)
Current function value: 107.55483434064577
Iterations: 22
Function evaluations: 235
Gradient evaluations: 22
Iteration: 1, Func. Count: 12, Neg. LLF: 119.9868830475222
Iteration: 2, Func. Count: 28, Neg. LLF: 132.0923118188879
Iteration: 3, Func. Count: 40, Neg. LLF: 116.23507037839832
Iteration: 4, Func. Count: 52, Neg. LLF: 128.59006182164077
Iteration: 5, Func. Count: 64, Neg. LLF: 138.8866992136046
Iteration: 6, Func. Count: 76, Neg. LLF: 118.35588346555708
Iteration: 7, Func. Count: 88, Neg. LLF: 109.5017811199459
Iteration: 8, Func. Count: 100, Neg. LLF: 108.53313350006907
Iteration: 9, Func. Count: 112, Neg. LLF: 108.671933348911
Iteration: 10, Func. Count: 124, Neg. LLF: 107.70520538981619
Iteration: 11, Func. Count: 135, Neg. LLF: 112.14191235752173
Iteration: 12, Func. Count: 148, Neg. LLF: 108.29373791732472
Iteration: 13, Func. Count: 160, Neg. LLF: 107.68746072420016
Iteration: 14, Func. Count: 172, Neg. LLF: 107.65306047653097
Iteration: 15, Func. Count: 183, Neg. LLF: 107.64162405799328
Iteration: 16, Func. Count: 194, Neg. LLF: 107.63456341621819
Iteration: 17, Func. Count: 205, Neg. LLF: 107.63063854318115
Iteration: 18, Func. Count: 216, Neg. LLF: 107.628526859123
Iteration: 19, Func. Count: 227, Neg. LLF: 107.6258215639861
Iteration: 20, Func. Count: 238, Neg. LLF: 107.61948472545124
Iteration: 21, Func. Count: 249, Neg. LLF: 107.60661152519712
Iteration: 22, Func. Count: 260, Neg. LLF: 107.58524861978303
Iteration: 23, Func. Count: 271, Neg. LLF: 107.56780466126126
Iteration: 24, Func. Count: 282, Neg. LLF: 107.55508314739708
Iteration: 25, Func. Count: 293, Neg. LLF: 107.55484940404236
Iteration: 26, Func. Count: 304, Neg. LLF: 107.55483473209314
Iteration: 27, Func. Count: 314, Neg. LLF: 107.55483474142707
Optimization terminated successfully (Exit mode 0)
Current function value: 107.55483473209314
Iterations: 27
Function evaluations: 314
Gradient evaluations: 27
Iteration: 1, Func. Count: 13, Neg. LLF: 113.34041272143752
Iteration: 2, Func. Count: 26, Neg. LLF: 110.43982949275632
Iteration: 3, Func. Count: 40, Neg. LLF: 126.65605935509612
Iteration: 4, Func. Count: 54, Neg. LLF: 21128.105007848655
Iteration: 5, Func. Count: 67, Neg. LLF: 1361.7446545208034
Iteration: 6, Func. Count: 80, Neg. LLF: 479.2721776850419
Iteration: 7, Func. Count: 93, Neg. LLF: 107.61549010544506
Iteration: 8, Func. Count: 105, Neg. LLF: 694.4885170593218
Iteration: 9, Func. Count: 119, Neg. LLF: 107.61217362341958
Iteration: 10, Func. Count: 132, Neg. LLF: 107.5934714318966
Iteration: 11, Func. Count: 145, Neg. LLF: 107.59774906584892
Iteration: 12, Func. Count: 158, Neg. LLF: 107.5655543755619
Iteration: 13, Func. Count: 170, Neg. LLF: 107.55724975565981
Iteration: 14, Func. Count: 182, Neg. LLF: 107.55538374958462
Iteration: 15, Func. Count: 194, Neg. LLF: 107.55487971076184
Iteration: 16, Func. Count: 206, Neg. LLF: 107.5548408485438
Iteration: 17, Func. Count: 218, Neg. LLF: 107.5548345917648
Iteration: 18, Func. Count: 229, Neg. LLF: 107.55483465079163
Optimization terminated successfully (Exit mode 0)
Current function value: 107.5548345917648
Iterations: 18
Function evaluations: 229
Gradient evaluations: 18
Iteration: 1, Func. Count: 14, Neg. LLF: 116.52961598149149
Iteration: 2, Func. Count: 30, Neg. LLF: 200.90807032002417
Iteration: 3, Func. Count: 44, Neg. LLF: 138.02657169621423
Iteration: 4, Func. Count: 58, Neg. LLF: 2234243.0409590728
Iteration: 5, Func. Count: 72, Neg. LLF: 355.29826848524317
Iteration: 6, Func. Count: 86, Neg. LLF: 112.58941172821851
Iteration: 7, Func. Count: 100, Neg. LLF: 126.57627584364928
Iteration: 8, Func. Count: 114, Neg. LLF: 112.8542831735389
Iteration: 9, Func. Count: 128, Neg. LLF: 127.9816932179659
Iteration: 10, Func. Count: 142, Neg. LLF: 110.71948984674627
Iteration: 11, Func. Count: 156, Neg. LLF: 110.11487290245593
Iteration: 12, Func. Count: 170, Neg. LLF: 106.43091212638886
Iteration: 13, Func. Count: 184, Neg. LLF: 106.05569534542883
Iteration: 14, Func. Count: 198, Neg. LLF: 107.06065648666657
Iteration: 15, Func. Count: 212, Neg. LLF: 106.46432050954176
Iteration: 16, Func. Count: 226, Neg. LLF: 105.78423907420714
Iteration: 17, Func. Count: 239, Neg. LLF: 105.77675714709834
Iteration: 18, Func. Count: 252, Neg. LLF: 105.77079811401117
Iteration: 19, Func. Count: 265, Neg. LLF: 105.77037550011156
Iteration: 20, Func. Count: 278, Neg. LLF: 105.77033298032543
Iteration: 21, Func. Count: 291, Neg. LLF: 105.77033183177565
Iteration: 22, Func. Count: 303, Neg. LLF: 105.77033175291778
Optimization terminated successfully (Exit mode 0)
Current function value: 105.77033183177565
Iterations: 22
Function evaluations: 303
Gradient evaluations: 22
Iteration: 1, Func. Count: 15, Neg. LLF: 111.33494622706105
Iteration: 2, Func. Count: 29, Neg. LLF: 118.11351453282256
Iteration: 3, Func. Count: 46, Neg. LLF: 164.32113161703867
Iteration: 4, Func. Count: 62, Neg. LLF: 140.4192405019441
Iteration: 5, Func. Count: 77, Neg. LLF: 452092.1645756653
Iteration: 6, Func. Count: 92, Neg. LLF: 2187.5828762157894
Iteration: 7, Func. Count: 107, Neg. LLF: 124.20549835048664
Iteration: 8, Func. Count: 122, Neg. LLF: 137.9853498453554
Iteration: 9, Func. Count: 137, Neg. LLF: 138.62324458847672
Iteration: 10, Func. Count: 152, Neg. LLF: 137.92890255790115
Iteration: 11, Func. Count: 167, Neg. LLF: 132.8701876331877
Iteration: 12, Func. Count: 182, Neg. LLF: 110.70943274274326
Iteration: 13, Func. Count: 197, Neg. LLF: 122.52543837137074
Iteration: 14, Func. Count: 212, Neg. LLF: 123.38323593133511
Iteration: 15, Func. Count: 227, Neg. LLF: 123.6136876913985
Iteration: 16, Func. Count: 242, Neg. LLF: 116.5141982516632
Iteration: 17, Func. Count: 257, Neg. LLF: 106.060027578417
Iteration: 18, Func. Count: 272, Neg. LLF: 107.86775235344238
Iteration: 19, Func. Count: 287, Neg. LLF: 105.8622996406634
Iteration: 20, Func. Count: 301, Neg. LLF: 106.28656051440528
Iteration: 21, Func. Count: 316, Neg. LLF: 105.90835330021872
Iteration: 22, Func. Count: 331, Neg. LLF: 105.83017098089645
Iteration: 23, Func. Count: 345, Neg. LLF: 105.82722758965647
Iteration: 24, Func. Count: 359, Neg. LLF: 105.81914680818652
Iteration: 25, Func. Count: 373, Neg. LLF: 105.80161084739252
Iteration: 26, Func. Count: 387, Neg. LLF: 105.77976185591388
Iteration: 27, Func. Count: 401, Neg. LLF: 105.7717914905027
Iteration: 28, Func. Count: 415, Neg. LLF: 105.77044393476461
Iteration: 29, Func. Count: 429, Neg. LLF: 105.7703361518675
Iteration: 30, Func. Count: 443, Neg. LLF: 105.77033195781456
Iteration: 31, Func. Count: 456, Neg. LLF: 105.7703318906535
Optimization terminated successfully (Exit mode 0)
Current function value: 105.77033195781456
Iterations: 31
Function evaluations: 456
Gradient evaluations: 31
Iteration: 1, Func. Count: 8, Neg. LLF: 120.69658787436154
Iteration: 2, Func. Count: 16, Neg. LLF: 124.82254666024659
Iteration: 3, Func. Count: 24, Neg. LLF: 141.0185083595807
Iteration: 4, Func. Count: 32, Neg. LLF: 586.5261761953633
Iteration: 5, Func. Count: 40, Neg. LLF: 2153.0082277520282
Iteration: 6, Func. Count: 48, Neg. LLF: 204.10678455650634
Iteration: 7, Func. Count: 56, Neg. LLF: 215.99329692246488
Iteration: 8, Func. Count: 64, Neg. LLF: 115.13065289167137
Iteration: 9, Func. Count: 72, Neg. LLF: 112.70417973529763
Iteration: 10, Func. Count: 80, Neg. LLF: 122.16721123667912
Iteration: 11, Func. Count: 89, Neg. LLF: 112.35012650451553
Iteration: 12, Func. Count: 96, Neg. LLF: 112.26500362176984
Iteration: 13, Func. Count: 103, Neg. LLF: 112.27223703570449
Iteration: 14, Func. Count: 111, Neg. LLF: 112.2632416280821
Iteration: 15, Func. Count: 118, Neg. LLF: 112.26320869438524
Iteration: 16, Func. Count: 125, Neg. LLF: 112.26320802269287
Optimization terminated successfully (Exit mode 0)
Current function value: 112.26320802269287
Iterations: 16
Function evaluations: 125
Gradient evaluations: 16
Iteration: 1, Func. Count: 9, Neg. LLF: 126.83901236458519
Iteration: 2, Func. Count: 20, Neg. LLF: 127.19099621628393
Iteration: 3, Func. Count: 30, Neg. LLF: 116.9163304197523
Iteration: 4, Func. Count: 39, Neg. LLF: 117.22526459857437
Iteration: 5, Func. Count: 49, Neg. LLF: 115.83382882535247
Iteration: 6, Func. Count: 58, Neg. LLF: 115.62032444751951
Iteration: 7, Func. Count: 66, Neg. LLF: 115.57999375279246
Iteration: 8, Func. Count: 74, Neg. LLF: 115.51337478652606
Iteration: 9, Func. Count: 82, Neg. LLF: 115.50202979060823
Iteration: 10, Func. Count: 90, Neg. LLF: 115.49962187780856
Iteration: 11, Func. Count: 98, Neg. LLF: 115.4995208885441
Iteration: 12, Func. Count: 106, Neg. LLF: 115.49950593190597
Iteration: 13, Func. Count: 114, Neg. LLF: 115.49949842215703
Iteration: 14, Func. Count: 121, Neg. LLF: 115.49949842571849
Optimization terminated successfully (Exit mode 0)
Current function value: 115.49949842215703
Iterations: 14
Function evaluations: 121
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 126.88060954881469
Iteration: 2, Func. Count: 22, Neg. LLF: 127.61512489304526
Iteration: 3, Func. Count: 33, Neg. LLF: 123.91076223012239
Iteration: 4, Func. Count: 44, Neg. LLF: 116.90414519977182
Iteration: 5, Func. Count: 54, Neg. LLF: 115.68508968319739
Iteration: 6, Func. Count: 63, Neg. LLF: 115.64305431467223
Iteration: 7, Func. Count: 72, Neg. LLF: 115.6263357918201
Iteration: 8, Func. Count: 81, Neg. LLF: 115.55149863552309
Iteration: 9, Func. Count: 90, Neg. LLF: 115.50940130712246
Iteration: 10, Func. Count: 99, Neg. LLF: 115.50019004203824
Iteration: 11, Func. Count: 108, Neg. LLF: 115.49952164821899
Iteration: 12, Func. Count: 117, Neg. LLF: 115.49949962466293
Iteration: 13, Func. Count: 126, Neg. LLF: 115.49949808215104
Iteration: 14, Func. Count: 134, Neg. LLF: 115.49949809357226
Optimization terminated successfully (Exit mode 0)
Current function value: 115.49949808215104
Iterations: 14
Function evaluations: 134
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 126.75956265223876
Iteration: 2, Func. Count: 24, Neg. LLF: 122.95335716326106
Iteration: 3, Func. Count: 35, Neg. LLF: 130.76031271787943
Iteration: 4, Func. Count: 47, Neg. LLF: 120.5542854418654
Iteration: 5, Func. Count: 59, Neg. LLF: 115.66480320854512
Iteration: 6, Func. Count: 69, Neg. LLF: 115.63295992807728
Iteration: 7, Func. Count: 79, Neg. LLF: 115.58589676363135
Iteration: 8, Func. Count: 89, Neg. LLF: 115.54074229486582
Iteration: 9, Func. Count: 99, Neg. LLF: 115.51349586841827
Iteration: 10, Func. Count: 109, Neg. LLF: 115.50220618425914
Iteration: 11, Func. Count: 119, Neg. LLF: 115.49967375046742
Iteration: 12, Func. Count: 129, Neg. LLF: 115.49950578539814
Iteration: 13, Func. Count: 139, Neg. LLF: 115.49950134541879
Iteration: 14, Func. Count: 149, Neg. LLF: 115.49949802474259
Iteration: 15, Func. Count: 158, Neg. LLF: 115.4994980248423
Optimization terminated successfully (Exit mode 0)
Current function value: 115.49949802474259
Iterations: 15
Function evaluations: 158
Gradient evaluations: 15
Iteration: 1, Func. Count: 12, Neg. LLF: 126.65861662428968
Iteration: 2, Func. Count: 26, Neg. LLF: 122.69494424660573
Iteration: 3, Func. Count: 38, Neg. LLF: 132.10226611541492
Iteration: 4, Func. Count: 51, Neg. LLF: 120.08596733309263
Iteration: 5, Func. Count: 64, Neg. LLF: 115.689385932318
Iteration: 6, Func. Count: 75, Neg. LLF: 115.62820027093616
Iteration: 7, Func. Count: 86, Neg. LLF: 115.59253296288279
Iteration: 8, Func. Count: 97, Neg. LLF: 115.55365307081495
Iteration: 9, Func. Count: 108, Neg. LLF: 115.52267285406379
Iteration: 10, Func. Count: 119, Neg. LLF: 115.50400982437826
Iteration: 11, Func. Count: 130, Neg. LLF: 115.49997923030399
Iteration: 12, Func. Count: 141, Neg. LLF: 115.49950152293762
Iteration: 13, Func. Count: 152, Neg. LLF: 115.49949959315934
Iteration: 14, Func. Count: 163, Neg. LLF: 115.49949798735155
Iteration: 15, Func. Count: 173, Neg. LLF: 115.49949798762589
Optimization terminated successfully (Exit mode 0)
Current function value: 115.49949798735155
Iterations: 15
Function evaluations: 173
Gradient evaluations: 15
Iteration: 1, Func. Count: 9, Neg. LLF: 120.77738860499646
Iteration: 2, Func. Count: 18, Neg. LLF: 128.474778855458
Iteration: 3, Func. Count: 27, Neg. LLF: 114.81990661678434
Iteration: 4, Func. Count: 35, Neg. LLF: 138.7515640624478
Iteration: 5, Func. Count: 44, Neg. LLF: 2641.2621849524085
Iteration: 6, Func. Count: 56, Neg. LLF: 115.67675854643733
Iteration: 7, Func. Count: 65, Neg. LLF: 138.4871443148247
Iteration: 8, Func. Count: 74, Neg. LLF: 115.95562772591879
Iteration: 9, Func. Count: 83, Neg. LLF: 115.78154587189734
Iteration: 10, Func. Count: 92, Neg. LLF: 112.36120110462616
Iteration: 11, Func. Count: 100, Neg. LLF: 112.29297239181003
Iteration: 12, Func. Count: 108, Neg. LLF: 112.27699656171214
Iteration: 13, Func. Count: 116, Neg. LLF: 112.26137183067654
Iteration: 14, Func. Count: 124, Neg. LLF: 112.25420639978533
Iteration: 15, Func. Count: 132, Neg. LLF: 112.24835060523223
Iteration: 16, Func. Count: 140, Neg. LLF: 112.2481584188119
Iteration: 17, Func. Count: 148, Neg. LLF: 112.2481476756502
Iteration: 18, Func. Count: 156, Neg. LLF: 112.2481458297132
Iteration: 19, Func. Count: 163, Neg. LLF: 112.24814581724834
Optimization terminated successfully (Exit mode 0)
Current function value: 112.2481458297132
Iterations: 19
Function evaluations: 163
Gradient evaluations: 19
Iteration: 1, Func. Count: 10, Neg. LLF: 126.38939483008625
Iteration: 2, Func. Count: 22, Neg. LLF: 126.75088574356646
Iteration: 3, Func. Count: 33, Neg. LLF: 117.12032533478138
Iteration: 4, Func. Count: 43, Neg. LLF: 117.60384985232423
Iteration: 5, Func. Count: 54, Neg. LLF: 115.6730423640979
Iteration: 6, Func. Count: 63, Neg. LLF: 115.61839509377543
Iteration: 7, Func. Count: 72, Neg. LLF: 115.60009955758628
Iteration: 8, Func. Count: 81, Neg. LLF: 115.52130907356741
Iteration: 9, Func. Count: 90, Neg. LLF: 115.50145623450157
Iteration: 10, Func. Count: 99, Neg. LLF: 115.49986859319469
Iteration: 11, Func. Count: 108, Neg. LLF: 115.49953557185553
Iteration: 12, Func. Count: 117, Neg. LLF: 115.49950928004499
Iteration: 13, Func. Count: 126, Neg. LLF: 115.49949849668613
Iteration: 14, Func. Count: 134, Neg. LLF: 115.49949850027278
Optimization terminated successfully (Exit mode 0)
Current function value: 115.49949849668613
Iterations: 14
Function evaluations: 134
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 5237258.758729662
Iteration: 2, Func. Count: 23, Neg. LLF: 118.70405849354438
Iteration: 3, Func. Count: 35, Neg. LLF: 114.89198661465424
Iteration: 4, Func. Count: 45, Neg. LLF: 115.31344930066928
Iteration: 5, Func. Count: 56, Neg. LLF: 114.83380210208087
Iteration: 6, Func. Count: 66, Neg. LLF: 114.75914213133461
Iteration: 7, Func. Count: 76, Neg. LLF: 114.76262634322657
Iteration: 8, Func. Count: 87, Neg. LLF: 115.09973317254872
Iteration: 9, Func. Count: 103, Neg. LLF: 114.87333877399145
Iteration: 10, Func. Count: 115, Neg. LLF: 116.67410387796753
Iteration: 11, Func. Count: 128, Neg. LLF: 114.75650523464172
Iteration: 12, Func. Count: 138, Neg. LLF: 114.75651607459487
Optimization terminated successfully (Exit mode 0)
Current function value: 114.75650516185274
Iterations: 13
Function evaluations: 139
Gradient evaluations: 12
Iteration: 1, Func. Count: 12, Neg. LLF: 111.90824587221633
Iteration: 2, Func. Count: 23, Neg. LLF: 371.49564764658373
Iteration: 3, Func. Count: 35, Neg. LLF: 126.31267670995082
Iteration: 4, Func. Count: 47, Neg. LLF: 175.8084425732861
Iteration: 5, Func. Count: 60, Neg. LLF: 111.76768377013921
Iteration: 6, Func. Count: 72, Neg. LLF: 110.73555905294653
Iteration: 7, Func. Count: 84, Neg. LLF: 110.41426217611374
Iteration: 8, Func. Count: 96, Neg. LLF: 110.15044648031663
Iteration: 9, Func. Count: 108, Neg. LLF: 110.01481963248055
Iteration: 10, Func. Count: 119, Neg. LLF: 110.01571919374263
Iteration: 11, Func. Count: 131, Neg. LLF: 110.01202563294135
Iteration: 12, Func. Count: 142, Neg. LLF: 110.01199788977218
Iteration: 13, Func. Count: 153, Neg. LLF: 110.01199824902498
Optimization terminated successfully (Exit mode 0)
Current function value: 110.01199774581261
Iterations: 13
Function evaluations: 154
Gradient evaluations: 13
Iteration: 1, Func. Count: 13, Neg. LLF: 114.35108132968573
Iteration: 2, Func. Count: 25, Neg. LLF: 123.45689456465226
Iteration: 3, Func. Count: 38, Neg. LLF: 111.22387445458999
Iteration: 4, Func. Count: 50, Neg. LLF: 198.84937862996284
Iteration: 5, Func. Count: 65, Neg. LLF: 4031570.974827578
Iteration: 6, Func. Count: 78, Neg. LLF: 146.94689855311253
Iteration: 7, Func. Count: 93, Neg. LLF: 110.6574500486031
Iteration: 8, Func. Count: 106, Neg. LLF: 117.86877098376571
Iteration: 9, Func. Count: 119, Neg. LLF: 110.12780979215685
Iteration: 10, Func. Count: 132, Neg. LLF: 110.01636669317234
Iteration: 11, Func. Count: 144, Neg. LLF: 110.01205681595509
Iteration: 12, Func. Count: 156, Neg. LLF: 110.01199855912482
Iteration: 13, Func. Count: 168, Neg. LLF: 110.01199663056924
Iteration: 14, Func. Count: 179, Neg. LLF: 110.0119966260048
Optimization terminated successfully (Exit mode 0)
Current function value: 110.01199663056924
Iterations: 15
Function evaluations: 179
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 120.69851333892159
Iteration: 2, Func. Count: 20, Neg. LLF: 125.71853981479175
Iteration: 3, Func. Count: 30, Neg. LLF: 129.41442796612316
Iteration: 4, Func. Count: 40, Neg. LLF: 560.1345790345903
Iteration: 5, Func. Count: 50, Neg. LLF: 3102.9085012846263
Iteration: 6, Func. Count: 60, Neg. LLF: 261.36506176471676
Iteration: 7, Func. Count: 70, Neg. LLF: 438.84715510100636
Iteration: 8, Func. Count: 80, Neg. LLF: 116.33398964029662
Iteration: 9, Func. Count: 90, Neg. LLF: 127.2450839519881
Iteration: 10, Func. Count: 100, Neg. LLF: 115.14180919332578
Iteration: 11, Func. Count: 110, Neg. LLF: 112.27121168944603
Iteration: 12, Func. Count: 119, Neg. LLF: 112.15990164955868
Iteration: 13, Func. Count: 129, Neg. LLF: 122.55427268463329
Iteration: 14, Func. Count: 140, Neg. LLF: 112.01371372252981
Iteration: 15, Func. Count: 149, Neg. LLF: 111.99985364855172
Iteration: 16, Func. Count: 158, Neg. LLF: 111.99886312069385
Iteration: 17, Func. Count: 167, Neg. LLF: 111.99839490751154
Iteration: 18, Func. Count: 176, Neg. LLF: 111.99831552692599
Iteration: 19, Func. Count: 185, Neg. LLF: 111.99831434803505
Iteration: 20, Func. Count: 194, Neg. LLF: 111.99831364897003
Optimization terminated successfully (Exit mode 0)
Current function value: 111.99831364897003
Iterations: 20
Function evaluations: 194
Gradient evaluations: 20
Iteration: 1, Func. Count: 11, Neg. LLF: 131.19517696968984
Iteration: 2, Func. Count: 23, Neg. LLF: 159.89363139282875
Iteration: 3, Func. Count: 35, Neg. LLF: 116.88457966055627
Iteration: 4, Func. Count: 46, Neg. LLF: 114.55071899039561
Iteration: 5, Func. Count: 56, Neg. LLF: 114.38208619541199
Iteration: 6, Func. Count: 66, Neg. LLF: 114.52174760777513
Iteration: 7, Func. Count: 77, Neg. LLF: 114.34150469820679
Iteration: 8, Func. Count: 87, Neg. LLF: 114.34034589904141
Iteration: 9, Func. Count: 98, Neg. LLF: 114.33385328751169
Iteration: 10, Func. Count: 108, Neg. LLF: 114.33385489281058
Iteration: 11, Func. Count: 119, Neg. LLF: 114.33384434232376
Iteration: 12, Func. Count: 129, Neg. LLF: 114.33383995615742
Iteration: 13, Func. Count: 138, Neg. LLF: 114.33383960092937
Optimization terminated successfully (Exit mode 0)
Current function value: 114.33383995615742
Iterations: 14
Function evaluations: 138
Gradient evaluations: 13
Iteration: 1, Func. Count: 12, Neg. LLF: 150.8146036308966
Iteration: 2, Func. Count: 26, Neg. LLF: 134.61241465859936
Iteration: 3, Func. Count: 38, Neg. LLF: 114.0938448932345
Iteration: 4, Func. Count: 49, Neg. LLF: 114.56330985743357
Iteration: 5, Func. Count: 61, Neg. LLF: 113.20171268242233
Iteration: 6, Func. Count: 72, Neg. LLF: 113.17650528581831
Iteration: 7, Func. Count: 83, Neg. LLF: 113.1700078998171
Iteration: 8, Func. Count: 94, Neg. LLF: 113.16967192521726
Iteration: 9, Func. Count: 105, Neg. LLF: 113.16963349681598
Iteration: 10, Func. Count: 116, Neg. LLF: 113.19425263620107
Optimization terminated successfully (Exit mode 0)
Current function value: 113.16963286984954
Iterations: 11
Function evaluations: 118
Gradient evaluations: 10
Iteration: 1, Func. Count: 13, Neg. LLF: 121.06185429591156
Iteration: 2, Func. Count: 26, Neg. LLF: 123.32696653812793
Iteration: 3, Func. Count: 40, Neg. LLF: 114.64065436557847
Iteration: 4, Func. Count: 52, Neg. LLF: 114.67806432670405
Iteration: 5, Func. Count: 65, Neg. LLF: 114.63063940727535
Iteration: 6, Func. Count: 78, Neg. LLF: 114.28542638928046
Iteration: 7, Func. Count: 90, Neg. LLF: 114.13069259941965
Iteration: 8, Func. Count: 102, Neg. LLF: 113.27002636641
Iteration: 9, Func. Count: 114, Neg. LLF: 118.13905993362192
Iteration: 10, Func. Count: 127, Neg. LLF: 113.34545221459553
Iteration: 11, Func. Count: 140, Neg. LLF: 113.72956632392237
Iteration: 12, Func. Count: 153, Neg. LLF: 113.27565531538141
Iteration: 13, Func. Count: 166, Neg. LLF: 113.16965260426176
Iteration: 14, Func. Count: 178, Neg. LLF: 113.16963219771134
Iteration: 15, Func. Count: 189, Neg. LLF: 113.16963223098806
Optimization terminated successfully (Exit mode 0)
Current function value: 113.16963219771134
Iterations: 16
Function evaluations: 189
Gradient evaluations: 15
Iteration: 1, Func. Count: 14, Neg. LLF: 142.40119267030624
Iteration: 2, Func. Count: 29, Neg. LLF: 125.02540570237252
Iteration: 3, Func. Count: 43, Neg. LLF: 114.44980572307061
Iteration: 4, Func. Count: 56, Neg. LLF: 113.43996183476065
Iteration: 5, Func. Count: 69, Neg. LLF: 113.32693732613916
Iteration: 6, Func. Count: 82, Neg. LLF: 113.23000446677827
Iteration: 7, Func. Count: 95, Neg. LLF: 113.21965970333132
Iteration: 8, Func. Count: 118, Neg. LLF: 122.45137508822913
Iteration: 9, Func. Count: 133, Neg. LLF: 116.6956048286764
Iteration: 10, Func. Count: 147, Neg. LLF: 113.29872094963467
Iteration: 11, Func. Count: 161, Neg. LLF: 113.17039310829007
Iteration: 12, Func. Count: 174, Neg. LLF: 113.16964545046731
Iteration: 13, Func. Count: 187, Neg. LLF: 113.16963278209587
Iteration: 14, Func. Count: 200, Neg. LLF: 113.16963219408525
Optimization terminated successfully (Exit mode 0)
Current function value: 113.16963219408525
Iterations: 15
Function evaluations: 200
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 120.65641434928077
Iteration: 2, Func. Count: 22, Neg. LLF: 123.68259271361204
Iteration: 3, Func. Count: 34, Neg. LLF: 145.14314609135238
Iteration: 4, Func. Count: 45, Neg. LLF: 268.94761276216167
Iteration: 5, Func. Count: 56, Neg. LLF: 5180.205447524821
Iteration: 6, Func. Count: 67, Neg. LLF: 718.284166507227
Iteration: 7, Func. Count: 78, Neg. LLF: 740.1309661124343
Iteration: 8, Func. Count: 89, Neg. LLF: 450.99568496887537
Iteration: 9, Func. Count: 100, Neg. LLF: 132.15979039251184
Iteration: 10, Func. Count: 111, Neg. LLF: 125.55745055861989
Iteration: 11, Func. Count: 122, Neg. LLF: 117.68694153268916
Iteration: 12, Func. Count: 133, Neg. LLF: 112.24546015507929
Iteration: 13, Func. Count: 143, Neg. LLF: 114.63781142251558
Iteration: 14, Func. Count: 155, Neg. LLF: 120.70541867304071
Iteration: 15, Func. Count: 167, Neg. LLF: 112.93280518078379
Iteration: 16, Func. Count: 178, Neg. LLF: 111.87418641154242
Iteration: 17, Func. Count: 188, Neg. LLF: 111.87177296965311
Iteration: 18, Func. Count: 198, Neg. LLF: 111.86791684501007
Iteration: 19, Func. Count: 208, Neg. LLF: 111.86571903458552
Iteration: 20, Func. Count: 218, Neg. LLF: 111.864813087928
Iteration: 21, Func. Count: 228, Neg. LLF: 111.86471316649623
Iteration: 22, Func. Count: 238, Neg. LLF: 111.86471047038694
Iteration: 23, Func. Count: 247, Neg. LLF: 111.86471046019156
Optimization terminated successfully (Exit mode 0)
Current function value: 111.86471047038694
Iterations: 23
Function evaluations: 247
Gradient evaluations: 23
Iteration: 1, Func. Count: 12, Neg. LLF: 126.9308564658421
Iteration: 2, Func. Count: 28, Neg. LLF: 153.54680614584768
Iteration: 3, Func. Count: 40, Neg. LLF: 147.49804586173505
Iteration: 4, Func. Count: 52, Neg. LLF: 142.18778287162962
Iteration: 5, Func. Count: 64, Neg. LLF: 114.49109927920726
Iteration: 6, Func. Count: 76, Neg. LLF: 113.52991646567737
Iteration: 7, Func. Count: 87, Neg. LLF: 113.30407046036123
Iteration: 8, Func. Count: 98, Neg. LLF: 113.25775245971101
Iteration: 9, Func. Count: 109, Neg. LLF: 113.25586132377572
Iteration: 10, Func. Count: 121, Neg. LLF: 113.24571080476703
Iteration: 11, Func. Count: 132, Neg. LLF: 113.24022768557616
Iteration: 12, Func. Count: 143, Neg. LLF: 113.23468840066495
Iteration: 13, Func. Count: 154, Neg. LLF: 113.22909803790205
Iteration: 14, Func. Count: 165, Neg. LLF: 113.22725072336819
Iteration: 15, Func. Count: 176, Neg. LLF: 113.22709398579784
Iteration: 16, Func. Count: 187, Neg. LLF: 113.22709006973085
Iteration: 17, Func. Count: 197, Neg. LLF: 113.22708998997521
Optimization terminated successfully (Exit mode 0)
Current function value: 113.22709006973085
Iterations: 17
Function evaluations: 197
Gradient evaluations: 17
Iteration: 1, Func. Count: 13, Neg. LLF: 122.53393710653597
Iteration: 2, Func. Count: 27, Neg. LLF: 215.38492215426132
Iteration: 3, Func. Count: 41, Neg. LLF: 119.37083533019931
Iteration: 4, Func. Count: 54, Neg. LLF: 113.8828360608009
Iteration: 5, Func. Count: 66, Neg. LLF: 113.90867473305242
Iteration: 6, Func. Count: 79, Neg. LLF: 113.70670215417731
Iteration: 7, Func. Count: 91, Neg. LLF: 113.69434485164429
Iteration: 8, Func. Count: 103, Neg. LLF: 113.6805380466197
Iteration: 9, Func. Count: 115, Neg. LLF: 113.6488149219513
Iteration: 10, Func. Count: 127, Neg. LLF: 113.64566259589628
Iteration: 11, Func. Count: 139, Neg. LLF: 113.64264866534846
Iteration: 12, Func. Count: 151, Neg. LLF: 113.64306627073728
Iteration: 13, Func. Count: 163, Neg. LLF: 113.64315150987989
Iteration: 14, Func. Count: 176, Neg. LLF: 113.64814484165552
Iteration: 15, Func. Count: 190, Neg. LLF: 113.64299556957475
Iteration: 16, Func. Count: 202, Neg. LLF: 113.64300411895539
Optimization terminated successfully (Exit mode 0)
Current function value: 113.64299546057586
Iterations: 17
Function evaluations: 203
Gradient evaluations: 16
Iteration: 1, Func. Count: 14, Neg. LLF: 326.9283515194421
Iteration: 2, Func. Count: 29, Neg. LLF: 119.9767735958901
Iteration: 3, Func. Count: 44, Neg. LLF: 114.38384637554731
Iteration: 4, Func. Count: 57, Neg. LLF: 114.2228530743239
Iteration: 5, Func. Count: 71, Neg. LLF: 117.26268296748479
Iteration: 6, Func. Count: 85, Neg. LLF: 113.52481474725114
Iteration: 7, Func. Count: 98, Neg. LLF: 136.59759452898936
Iteration: 8, Func. Count: 112, Neg. LLF: 113.40253272835699
Iteration: 9, Func. Count: 126, Neg. LLF: 113.22780886560494
Iteration: 10, Func. Count: 139, Neg. LLF: 113.22728776261576
Iteration: 11, Func. Count: 152, Neg. LLF: 113.22722731444922
Iteration: 12, Func. Count: 165, Neg. LLF: 113.22711848416094
Iteration: 13, Func. Count: 178, Neg. LLF: 113.22709717790153
Iteration: 14, Func. Count: 191, Neg. LLF: 113.22709144388674
Iteration: 15, Func. Count: 204, Neg. LLF: 113.22709068927094
Optimization terminated successfully (Exit mode 0)
Current function value: 113.22709068927094
Iterations: 15
Function evaluations: 204
Gradient evaluations: 15
Iteration: 1, Func. Count: 15, Neg. LLF: 22541009.726804353
Iteration: 2, Func. Count: 31, Neg. LLF: 118.12564561985488
Iteration: 3, Func. Count: 47, Neg. LLF: 113.24916554625311
Iteration: 4, Func. Count: 61, Neg. LLF: 113.14323906280293
Iteration: 5, Func. Count: 76, Neg. LLF: 116.55665288018076
Iteration: 6, Func. Count: 91, Neg. LLF: 118.2757363540039
Iteration: 7, Func. Count: 107, Neg. LLF: 112.53612224056585
Iteration: 8, Func. Count: 122, Neg. LLF: 128.24699123757253
Iteration: 9, Func. Count: 137, Neg. LLF: 112.42983955423705
Iteration: 10, Func. Count: 152, Neg. LLF: 111.78016459114117
Iteration: 11, Func. Count: 167, Neg. LLF: 111.31139124545884
Iteration: 12, Func. Count: 181, Neg. LLF: 111.30367554376603
Iteration: 13, Func. Count: 195, Neg. LLF: 111.30279650814369
Iteration: 14, Func. Count: 209, Neg. LLF: 111.30274136512654
Iteration: 15, Func. Count: 223, Neg. LLF: 111.30274407773172
Iteration: 16, Func. Count: 237, Neg. LLF: 111.30272172959475
Optimization terminated successfully (Exit mode 0)
Current function value: 111.30274405700533
Iterations: 16
Function evaluations: 247
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 120.6983459827379
Iteration: 2, Func. Count: 24, Neg. LLF: 317.96183316756446
Iteration: 3, Func. Count: 36, Neg. LLF: 125.67624859960301
Iteration: 4, Func. Count: 49, Neg. LLF: 250719.45317840917
Iteration: 5, Func. Count: 61, Neg. LLF: 748.3353412560369
Iteration: 6, Func. Count: 73, Neg. LLF: 3532075.4888430983
Iteration: 7, Func. Count: 85, Neg. LLF: 695669.1515506945
Iteration: 8, Func. Count: 97, Neg. LLF: 1984.646603198442
Iteration: 9, Func. Count: 109, Neg. LLF: 109.21417895147796
Iteration: 10, Func. Count: 121, Neg. LLF: 107.63424668126822
Iteration: 11, Func. Count: 132, Neg. LLF: 107.77443253132779
Iteration: 12, Func. Count: 144, Neg. LLF: 110.17538303364125
Iteration: 13, Func. Count: 157, Neg. LLF: 107.57357254971137
Iteration: 14, Func. Count: 168, Neg. LLF: 107.55762048816216
Iteration: 15, Func. Count: 179, Neg. LLF: 107.55603480773537
Iteration: 16, Func. Count: 190, Neg. LLF: 107.55496780393241
Iteration: 17, Func. Count: 201, Neg. LLF: 107.5548435792174
Iteration: 18, Func. Count: 212, Neg. LLF: 107.55483463809348
Iteration: 19, Func. Count: 222, Neg. LLF: 107.55483463512259
Optimization terminated successfully (Exit mode 0)
Current function value: 107.55483463809348
Iterations: 19
Function evaluations: 222
Gradient evaluations: 19
Iteration: 1, Func. Count: 13, Neg. LLF: 121.29309376452738
Iteration: 2, Func. Count: 30, Neg. LLF: 128.97489904167654
Iteration: 3, Func. Count: 43, Neg. LLF: 115.73421583754845
Iteration: 4, Func. Count: 56, Neg. LLF: 141.02414283764978
Iteration: 5, Func. Count: 69, Neg. LLF: 139.7753621469703
Iteration: 6, Func. Count: 82, Neg. LLF: 112.23715820482066
Iteration: 7, Func. Count: 95, Neg. LLF: 112.80322988686898
Iteration: 8, Func. Count: 108, Neg. LLF: 108.43420801483347
Iteration: 9, Func. Count: 121, Neg. LLF: 107.89012493587347
Iteration: 10, Func. Count: 133, Neg. LLF: 107.69655836001762
Iteration: 11, Func. Count: 145, Neg. LLF: 115.39590640218248
Iteration: 12, Func. Count: 159, Neg. LLF: 108.20819988620623
Iteration: 13, Func. Count: 172, Neg. LLF: 107.67494044199222
Iteration: 14, Func. Count: 185, Neg. LLF: 107.65854905525737
Iteration: 15, Func. Count: 198, Neg. LLF: 107.63918598276109
Iteration: 16, Func. Count: 210, Neg. LLF: 107.63307062443218
Iteration: 17, Func. Count: 222, Neg. LLF: 107.63066900590279
Iteration: 18, Func. Count: 234, Neg. LLF: 107.62807505781122
Iteration: 19, Func. Count: 246, Neg. LLF: 107.62373367523723
Iteration: 20, Func. Count: 258, Neg. LLF: 107.61357090728976
Iteration: 21, Func. Count: 270, Neg. LLF: 107.59458639907184
Iteration: 22, Func. Count: 282, Neg. LLF: 107.57497040897084
Iteration: 23, Func. Count: 294, Neg. LLF: 107.55553569902918
Iteration: 24, Func. Count: 306, Neg. LLF: 107.55486542599816
Iteration: 25, Func. Count: 318, Neg. LLF: 107.55483580854798
Iteration: 26, Func. Count: 330, Neg. LLF: 107.55483438419705
Iteration: 27, Func. Count: 341, Neg. LLF: 107.55483439349997
Optimization terminated successfully (Exit mode 0)
Current function value: 107.55483438419705
Iterations: 27
Function evaluations: 341
Gradient evaluations: 27
Iteration: 1, Func. Count: 14, Neg. LLF: 112.4353602998282
Iteration: 2, Func. Count: 27, Neg. LLF: 120.12155504754469
Iteration: 3, Func. Count: 42, Neg. LLF: 155.7371146513954
Iteration: 4, Func. Count: 57, Neg. LLF: 335.91751174643144
Iteration: 5, Func. Count: 71, Neg. LLF: 383668.77572721365
Iteration: 6, Func. Count: 85, Neg. LLF: 2196585.2059069374
Iteration: 7, Func. Count: 99, Neg. LLF: 1393.9914104037662
Iteration: 8, Func. Count: 113, Neg. LLF: 528.8230125033733
Iteration: 9, Func. Count: 127, Neg. LLF: 108.54531721906382
Iteration: 10, Func. Count: 141, Neg. LLF: 107.83950792006883
Iteration: 11, Func. Count: 154, Neg. LLF: 107.70887613255701
Iteration: 12, Func. Count: 167, Neg. LLF: 107.60473188040208
Iteration: 13, Func. Count: 180, Neg. LLF: 107.56845524800099
Iteration: 14, Func. Count: 193, Neg. LLF: 109.92078222470211
Iteration: 15, Func. Count: 208, Neg. LLF: 107.55797957902362
Iteration: 16, Func. Count: 221, Neg. LLF: 107.55554664926744
Iteration: 17, Func. Count: 234, Neg. LLF: 107.55517746503517
Iteration: 18, Func. Count: 247, Neg. LLF: 107.55501894363776
Iteration: 19, Func. Count: 260, Neg. LLF: 107.55485035202977
Iteration: 20, Func. Count: 273, Neg. LLF: 107.55483516072366
Iteration: 21, Func. Count: 286, Neg. LLF: 107.55483432526387
Optimization terminated successfully (Exit mode 0)
Current function value: 107.55483432526387
Iterations: 21
Function evaluations: 286
Gradient evaluations: 21
Iteration: 1, Func. Count: 15, Neg. LLF: 117.49963111129014
Iteration: 2, Func. Count: 32, Neg. LLF: 190.01779811421
Iteration: 3, Func. Count: 47, Neg. LLF: 147.30429142449785
Iteration: 4, Func. Count: 62, Neg. LLF: 167.66632236124903
Iteration: 5, Func. Count: 77, Neg. LLF: 412.4238819125732
Iteration: 6, Func. Count: 92, Neg. LLF: 113.0311797765306
Iteration: 7, Func. Count: 107, Neg. LLF: 126.65329490997837
Iteration: 8, Func. Count: 122, Neg. LLF: 110.03813031420341
Iteration: 9, Func. Count: 137, Neg. LLF: 124.99578615123049
Iteration: 10, Func. Count: 152, Neg. LLF: 109.93769452385574
Iteration: 11, Func. Count: 167, Neg. LLF: 110.56020698596953
Iteration: 12, Func. Count: 182, Neg. LLF: 106.55272136201569
Iteration: 13, Func. Count: 197, Neg. LLF: 106.01028128908497
Iteration: 14, Func. Count: 211, Neg. LLF: 110.7996243245423
Iteration: 15, Func. Count: 227, Neg. LLF: 105.79540042485912
Iteration: 16, Func. Count: 241, Neg. LLF: 105.76371584026872
Iteration: 17, Func. Count: 255, Neg. LLF: 105.74810643194054
Iteration: 18, Func. Count: 269, Neg. LLF: 105.74509869009398
Iteration: 19, Func. Count: 283, Neg. LLF: 105.74461689507066
Iteration: 20, Func. Count: 297, Neg. LLF: 105.74460599757927
Iteration: 21, Func. Count: 311, Neg. LLF: 105.74460174375429
Iteration: 22, Func. Count: 324, Neg. LLF: 105.74460165245269
Optimization terminated successfully (Exit mode 0)
Current function value: 105.74460174375429
Iterations: 22
Function evaluations: 324
Gradient evaluations: 22
Iteration: 1, Func. Count: 16, Neg. LLF: 111.52097321916503
Iteration: 2, Func. Count: 31, Neg. LLF: 117.9526257864489
Iteration: 3, Func. Count: 49, Neg. LLF: 171.79372802057495
Iteration: 4, Func. Count: 66, Neg. LLF: 124.16984823765029
Iteration: 5, Func. Count: 82, Neg. LLF: 467646.6950134531
Iteration: 6, Func. Count: 98, Neg. LLF: 782.5751676567595
Iteration: 7, Func. Count: 114, Neg. LLF: 198.8791531722055
Iteration: 8, Func. Count: 130, Neg. LLF: 163.40027944123673
Iteration: 9, Func. Count: 146, Neg. LLF: 148.70597158110004
Iteration: 10, Func. Count: 162, Neg. LLF: 145.13217672752586
Iteration: 11, Func. Count: 178, Neg. LLF: 118.66688956441493
Iteration: 12, Func. Count: 194, Neg. LLF: 142.10064893701912
Iteration: 13, Func. Count: 210, Neg. LLF: 110.78701453341169
Iteration: 14, Func. Count: 226, Neg. LLF: 132.85501108452698
Iteration: 15, Func. Count: 242, Neg. LLF: 107.64700430411669
Iteration: 16, Func. Count: 258, Neg. LLF: 108.64259125114482
Iteration: 17, Func. Count: 274, Neg. LLF: 111.5404390707069
Iteration: 18, Func. Count: 290, Neg. LLF: 107.36753683521319
Iteration: 19, Func. Count: 306, Neg. LLF: 106.36843048773073
Iteration: 20, Func. Count: 322, Neg. LLF: 106.21518547931487
Iteration: 21, Func. Count: 338, Neg. LLF: 105.8402385197241
Iteration: 22, Func. Count: 353, Neg. LLF: 105.78476819788821
Iteration: 23, Func. Count: 368, Neg. LLF: 105.75576621693224
Iteration: 24, Func. Count: 383, Neg. LLF: 105.74640766123662
Iteration: 25, Func. Count: 398, Neg. LLF: 105.74466711830446
Iteration: 26, Func. Count: 413, Neg. LLF: 105.74460421609007
Iteration: 27, Func. Count: 428, Neg. LLF: 105.74460167211441
Iteration: 28, Func. Count: 442, Neg. LLF: 105.7446016284855
Optimization terminated successfully (Exit mode 0)
Current function value: 105.74460167211441
Iterations: 28
Function evaluations: 442
Gradient evaluations: 28
Iteration: 1, Func. Count: 8, Neg. LLF: 120.00855084193074
Iteration: 2, Func. Count: 16, Neg. LLF: 122.43048401037589
Iteration: 3, Func. Count: 24, Neg. LLF: 110.41420848344232
Iteration: 4, Func. Count: 31, Neg. LLF: 117.9191610659619
Iteration: 5, Func. Count: 40, Neg. LLF: 110.0253743605794
Iteration: 6, Func. Count: 47, Neg. LLF: 110.01751501753257
Iteration: 7, Func. Count: 54, Neg. LLF: 110.01382268259884
Iteration: 8, Func. Count: 61, Neg. LLF: 110.01211359733274
Iteration: 9, Func. Count: 68, Neg. LLF: 110.01191594779435
Iteration: 10, Func. Count: 75, Neg. LLF: 110.01963060809703
Iteration: 11, Func. Count: 84, Neg. LLF: 110.0125329974982
Iteration: 12, Func. Count: 92, Neg. LLF: 110.01205094165155
Iteration: 13, Func. Count: 100, Neg. LLF: 110.01199666120938
Iteration: 14, Func. Count: 106, Neg. LLF: 110.01199642499
Optimization terminated successfully (Exit mode 0)
Current function value: 110.01199666120938
Iterations: 15
Function evaluations: 106
Gradient evaluations: 14
Iteration: 1, Func. Count: 5, Neg. LLF: 130.12052463037895
Iteration: 2, Func. Count: 11, Neg. LLF: 148.3241402289685
Iteration: 3, Func. Count: 16, Neg. LLF: 113.65067547940313
Iteration: 4, Func. Count: 20, Neg. LLF: 113.64678904398579
Iteration: 5, Func. Count: 24, Neg. LLF: 113.64587195986613
Iteration: 6, Func. Count: 28, Neg. LLF: 113.64584258304347
Iteration: 7, Func. Count: 32, Neg. LLF: 113.64580966073314
Iteration: 8, Func. Count: 35, Neg. LLF: 113.6458096984462
Optimization terminated successfully (Exit mode 0)
Current function value: 113.64580966073314
Iterations: 8
Function evaluations: 35
Gradient evaluations: 8
Iteration: 1, Func. Count: 6, Neg. LLF: 39175032.35097034
Iteration: 2, Func. Count: 13, Neg. LLF: 181.70236844239702
Iteration: 3, Func. Count: 20, Neg. LLF: 111.03426261185889
Iteration: 4, Func. Count: 25, Neg. LLF: 111.33068198503966
Iteration: 5, Func. Count: 31, Neg. LLF: 111.01694478277965
Iteration: 6, Func. Count: 36, Neg. LLF: 111.01693409526374
Iteration: 7, Func. Count: 40, Neg. LLF: 111.01693409489728
Optimization terminated successfully (Exit mode 0)
Current function value: 111.01693409526374
Iterations: 7
Function evaluations: 40
Gradient evaluations: 7
Iteration: 1, Func. Count: 7, Neg. LLF: 43094908.89654147
Iteration: 2, Func. Count: 16, Neg. LLF: 285.2118735902929
Iteration: 3, Func. Count: 24, Neg. LLF: 111.05365586016457
Iteration: 4, Func. Count: 30, Neg. LLF: 111.07353241182436
Iteration: 5, Func. Count: 37, Neg. LLF: 111.05000974656792
Iteration: 6, Func. Count: 43, Neg. LLF: 111.04392615168635
Iteration: 7, Func. Count: 49, Neg. LLF: 111.02939841237563
Iteration: 8, Func. Count: 55, Neg. LLF: 111.02223237464551
Iteration: 9, Func. Count: 61, Neg. LLF: 111.01694498459742
Iteration: 10, Func. Count: 67, Neg. LLF: 111.01693406196573
Iteration: 11, Func. Count: 72, Neg. LLF: 111.016934063492
Optimization terminated successfully (Exit mode 0)
Current function value: 111.01693406196573
Iterations: 11
Function evaluations: 72
Gradient evaluations: 11
Iteration: 1, Func. Count: 8, Neg. LLF: 43534842.42664236
Iteration: 2, Func. Count: 17, Neg. LLF: 330.53013324604467
Iteration: 3, Func. Count: 26, Neg. LLF: 111.49016831570606
Iteration: 4, Func. Count: 34, Neg. LLF: 109.31580537225827
Iteration: 5, Func. Count: 41, Neg. LLF: 108.57115081910823
Iteration: 6, Func. Count: 48, Neg. LLF: 107.6207940920069
Iteration: 7, Func. Count: 55, Neg. LLF: 107.29584116902885
Iteration: 8, Func. Count: 62, Neg. LLF: 107.23718081889969
Iteration: 9, Func. Count: 69, Neg. LLF: 107.20742430037852
Iteration: 10, Func. Count: 76, Neg. LLF: 107.20497124043206
Iteration: 11, Func. Count: 83, Neg. LLF: 107.20466422554938
Iteration: 12, Func. Count: 90, Neg. LLF: 107.20463848900867
Iteration: 13, Func. Count: 97, Neg. LLF: 107.20463611573516
Iteration: 14, Func. Count: 103, Neg. LLF: 107.2046359119204
Optimization terminated successfully (Exit mode 0)
Current function value: 107.20463611573516
Iterations: 14
Function evaluations: 103
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 125.16390242585594
Iteration: 2, Func. Count: 18, Neg. LLF: 114.3880930633471
Iteration: 3, Func. Count: 27, Neg. LLF: 113.57943697978885
Iteration: 4, Func. Count: 36, Neg. LLF: 111.17478819181443
Iteration: 5, Func. Count: 45, Neg. LLF: 108.885435243138
Iteration: 6, Func. Count: 53, Neg. LLF: 459.2348394813021
Iteration: 7, Func. Count: 63, Neg. LLF: 119.11701456168021
Iteration: 8, Func. Count: 73, Neg. LLF: 107.5836824555716
Iteration: 9, Func. Count: 81, Neg. LLF: 107.30567650054728
Iteration: 10, Func. Count: 89, Neg. LLF: 107.21247388614384
Iteration: 11, Func. Count: 97, Neg. LLF: 107.20486736281167
Iteration: 12, Func. Count: 105, Neg. LLF: 107.20467137170661
Iteration: 13, Func. Count: 113, Neg. LLF: 107.2046417918506
Iteration: 14, Func. Count: 121, Neg. LLF: 107.20463706690461
Iteration: 15, Func. Count: 129, Neg. LLF: 107.20463616452142
Optimization terminated successfully (Exit mode 0)
Current function value: 107.20463616452142
Iterations: 15
Function evaluations: 129
Gradient evaluations: 15
Iteration: 1, Func. Count: 6, Neg. LLF: 127.22291068710986
Iteration: 2, Func. Count: 13, Neg. LLF: 138.73755713011417
Iteration: 3, Func. Count: 19, Neg. LLF: 113.65297552881974
Iteration: 4, Func. Count: 24, Neg. LLF: 113.64744728423443
Iteration: 5, Func. Count: 29, Neg. LLF: 113.6464314960559
Iteration: 6, Func. Count: 34, Neg. LLF: 113.64596624204944
Iteration: 7, Func. Count: 39, Neg. LLF: 113.64581817899317
Iteration: 8, Func. Count: 44, Neg. LLF: 113.64580984214234
Iteration: 9, Func. Count: 48, Neg. LLF: 113.64580989093552
Optimization terminated successfully (Exit mode 0)
Current function value: 113.64580984214234
Iterations: 9
Function evaluations: 48
Gradient evaluations: 9
Iteration: 1, Func. Count: 7, Neg. LLF: 123.00328443031555
Iteration: 2, Func. Count: 14, Neg. LLF: 114.37083251645755
Iteration: 3, Func. Count: 21, Neg. LLF: 110.74260038689137
Iteration: 4, Func. Count: 27, Neg. LLF: 110.74257712656754
Iteration: 5, Func. Count: 34, Neg. LLF: 110.73122812806476
Iteration: 6, Func. Count: 40, Neg. LLF: 110.73022992996061
Iteration: 7, Func. Count: 46, Neg. LLF: 110.73022834153474
Iteration: 8, Func. Count: 51, Neg. LLF: 110.73022818857004
Optimization terminated successfully (Exit mode 0)
Current function value: 110.73022834153474
Iterations: 9
Function evaluations: 51
Gradient evaluations: 8
Iteration: 1, Func. Count: 8, Neg. LLF: 44180207.909545675
Iteration: 2, Func. Count: 18, Neg. LLF: 293.57209301767926
Iteration: 3, Func. Count: 27, Neg. LLF: 110.7458581072014
Iteration: 4, Func. Count: 34, Neg. LLF: 110.74159795145506
Iteration: 5, Func. Count: 42, Neg. LLF: 110.71096627883975
Iteration: 6, Func. Count: 49, Neg. LLF: 110.70549755861185
Iteration: 7, Func. Count: 56, Neg. LLF: 110.70543998205784
Iteration: 8, Func. Count: 62, Neg. LLF: 110.7054398555799
Optimization terminated successfully (Exit mode 0)
Current function value: 110.70543998205784
Iterations: 8
Function evaluations: 62
Gradient evaluations: 8
Iteration: 1, Func. Count: 9, Neg. LLF: 45109093.54319665
Iteration: 2, Func. Count: 19, Neg. LLF: 356.2593736148606
Iteration: 3, Func. Count: 29, Neg. LLF: 111.10634283823818
Iteration: 4, Func. Count: 37, Neg. LLF: 110.75389319862265
Iteration: 5, Func. Count: 45, Neg. LLF: 110.5256320906965
Iteration: 6, Func. Count: 53, Neg. LLF: 110.49209895253733
Iteration: 7, Func. Count: 61, Neg. LLF: 110.49019175820672
Iteration: 8, Func. Count: 69, Neg. LLF: 110.49012078149754
Iteration: 9, Func. Count: 77, Neg. LLF: 110.49011777982346
Iteration: 10, Func. Count: 84, Neg. LLF: 110.4901176263958
Optimization terminated successfully (Exit mode 0)
Current function value: 110.49011777982346
Iterations: 10
Function evaluations: 84
Gradient evaluations: 10
Iteration: 1, Func. Count: 10, Neg. LLF: 128.37582609576378
Iteration: 2, Func. Count: 20, Neg. LLF: 114.35405919677551
Iteration: 3, Func. Count: 30, Neg. LLF: 114.70491718950464
Iteration: 4, Func. Count: 40, Neg. LLF: 110.5249375558504
Iteration: 5, Func. Count: 49, Neg. LLF: 110.49921225312406
Iteration: 6, Func. Count: 58, Neg. LLF: 110.51032613182088
Iteration: 7, Func. Count: 68, Neg. LLF: 110.49226717109622
Iteration: 8, Func. Count: 77, Neg. LLF: 110.4909604154056
Iteration: 9, Func. Count: 86, Neg. LLF: 110.49011979228878
Iteration: 10, Func. Count: 95, Neg. LLF: 110.4901177732044
Iteration: 11, Func. Count: 103, Neg. LLF: 110.49011766233085
Optimization terminated successfully (Exit mode 0)
Current function value: 110.4901177732044
Iterations: 11
Function evaluations: 103
Gradient evaluations: 11
Iteration: 1, Func. Count: 7, Neg. LLF: 125.56489997258383
Iteration: 2, Func. Count: 15, Neg. LLF: 119.67847621048816
Iteration: 3, Func. Count: 22, Neg. LLF: 113.68179102034192
Iteration: 4, Func. Count: 28, Neg. LLF: 113.65896383280618
Iteration: 5, Func. Count: 34, Neg. LLF: 113.64967439160185
Iteration: 6, Func. Count: 40, Neg. LLF: 113.6468221077243
Iteration: 7, Func. Count: 46, Neg. LLF: 113.64583462923248
Iteration: 8, Func. Count: 52, Neg. LLF: 113.64580997939322
Iteration: 9, Func. Count: 57, Neg. LLF: 113.64581003800379
Optimization terminated successfully (Exit mode 0)
Current function value: 113.64580997939322
Iterations: 9
Function evaluations: 57
Gradient evaluations: 9
Iteration: 1, Func. Count: 8, Neg. LLF: 1645.3346090102207
Iteration: 2, Func. Count: 17, Neg. LLF: 156.40587556862462
Iteration: 3, Func. Count: 26, Neg. LLF: 110.2401546156141
Iteration: 4, Func. Count: 33, Neg. LLF: 110.23896826170788
Iteration: 5, Func. Count: 40, Neg. LLF: 110.23680131341881
Iteration: 6, Func. Count: 47, Neg. LLF: 110.23667012075484
Iteration: 7, Func. Count: 54, Neg. LLF: 110.23665283001108
Iteration: 8, Func. Count: 60, Neg. LLF: 110.23665241851765
Optimization terminated successfully (Exit mode 0)
Current function value: 110.23665283001108
Iterations: 8
Function evaluations: 60
Gradient evaluations: 8
Iteration: 1, Func. Count: 9, Neg. LLF: 46025047.34690061
Iteration: 2, Func. Count: 19, Neg. LLF: 310.2448803529444
Iteration: 3, Func. Count: 29, Neg. LLF: 110.75885805068933
Iteration: 4, Func. Count: 37, Neg. LLF: 110.71380057495014
Iteration: 5, Func. Count: 45, Neg. LLF: 110.54888594975002
Iteration: 6, Func. Count: 53, Neg. LLF: 110.27287032335668
Iteration: 7, Func. Count: 61, Neg. LLF: 110.25454752082221
Iteration: 8, Func. Count: 69, Neg. LLF: 110.23714193746105
Iteration: 9, Func. Count: 77, Neg. LLF: 110.23665389583779
Iteration: 10, Func. Count: 85, Neg. LLF: 110.23665279280641
Iteration: 11, Func. Count: 92, Neg. LLF: 110.2366523899659
Optimization terminated successfully (Exit mode 0)
Current function value: 110.23665279280641
Iterations: 11
Function evaluations: 92
Gradient evaluations: 11
Iteration: 1, Func. Count: 10, Neg. LLF: 46676103.03527674
Iteration: 2, Func. Count: 21, Neg. LLF: 407.2664527947937
Iteration: 3, Func. Count: 32, Neg. LLF: 110.94014743853404
Iteration: 4, Func. Count: 41, Neg. LLF: 110.78976477229995
Iteration: 5, Func. Count: 50, Neg. LLF: 110.35882536419247
Iteration: 6, Func. Count: 59, Neg. LLF: 110.29446671182997
Iteration: 7, Func. Count: 68, Neg. LLF: 110.28782242919107
Iteration: 8, Func. Count: 77, Neg. LLF: 110.28501518710343
Iteration: 9, Func. Count: 86, Neg. LLF: 110.27976830432274
Iteration: 10, Func. Count: 95, Neg. LLF: 110.26354621063959
Iteration: 11, Func. Count: 104, Neg. LLF: 110.2366986816426
Iteration: 12, Func. Count: 113, Neg. LLF: 110.23656780516599
Iteration: 13, Func. Count: 122, Neg. LLF: 110.23612306021926
Iteration: 14, Func. Count: 141, Neg. LLF: 110.82853753588036
Iteration: 15, Func. Count: 153, Neg. LLF: 110.23665427977728
Iteration: 16, Func. Count: 163, Neg. LLF: 110.23665279341843
Iteration: 17, Func. Count: 173, Neg. LLF: 110.23665279304763
Iteration: 18, Func. Count: 181, Neg. LLF: 110.23665238772294
Optimization terminated successfully (Exit mode 0)
Current function value: 110.23665279304763
Iterations: 19
Function evaluations: 181
Gradient evaluations: 18
Iteration: 1, Func. Count: 11, Neg. LLF: 132.575372174645
Iteration: 2, Func. Count: 22, Neg. LLF: 114.45055463377979
Iteration: 3, Func. Count: 33, Neg. LLF: 111.03772123153479
Iteration: 4, Func. Count: 43, Neg. LLF: 110.55833829921993
Iteration: 5, Func. Count: 53, Neg. LLF: 110.09795531510295
Iteration: 6, Func. Count: 63, Neg. LLF: 109.63392403938576
Iteration: 7, Func. Count: 73, Neg. LLF: 109.29199234938244
Iteration: 8, Func. Count: 83, Neg. LLF: 108.09568748972882
Iteration: 9, Func. Count: 93, Neg. LLF: 107.76053099930091
Iteration: 10, Func. Count: 103, Neg. LLF: 107.75833879209117
Iteration: 11, Func. Count: 113, Neg. LLF: 107.75831133188498
Iteration: 12, Func. Count: 123, Neg. LLF: 107.75830931851239
Iteration: 13, Func. Count: 132, Neg. LLF: 107.75830905896083
Optimization terminated successfully (Exit mode 0)
Current function value: 107.75830931851239
Iterations: 13
Function evaluations: 132
Gradient evaluations: 13
Iteration: 1, Func. Count: 8, Neg. LLF: 134.43990484202527
Iteration: 2, Func. Count: 17, Neg. LLF: 3444.235452753682
Iteration: 3, Func. Count: 25, Neg. LLF: 4338764.467041017
Iteration: 4, Func. Count: 33, Neg. LLF: 109.18310980126411
Iteration: 5, Func. Count: 40, Neg. LLF: 108.86412076912079
Iteration: 6, Func. Count: 47, Neg. LLF: 108.80870043727576
Iteration: 7, Func. Count: 54, Neg. LLF: 108.75886454552787
Iteration: 8, Func. Count: 61, Neg. LLF: 108.7282188458096
Iteration: 9, Func. Count: 68, Neg. LLF: 108.68777801018491
Iteration: 10, Func. Count: 75, Neg. LLF: 108.68502155753659
Iteration: 11, Func. Count: 82, Neg. LLF: 108.6849535114686
Iteration: 12, Func. Count: 88, Neg. LLF: 108.68495351146645
Optimization terminated successfully (Exit mode 0)
Current function value: 108.6849535114686
Iterations: 12
Function evaluations: 88
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 15514738.432718052
Iteration: 2, Func. Count: 19, Neg. LLF: 144.13962385151783
Iteration: 3, Func. Count: 28, Neg. LLF: 118.87559271141794
Iteration: 4, Func. Count: 37, Neg. LLF: 108.64616850695597
Iteration: 5, Func. Count: 45, Neg. LLF: 108.63683140845458
Iteration: 6, Func. Count: 53, Neg. LLF: 108.63649320514787
Iteration: 7, Func. Count: 61, Neg. LLF: 108.63648670566015
Iteration: 8, Func. Count: 69, Neg. LLF: 108.63648448502808
Iteration: 9, Func. Count: 77, Neg. LLF: 108.63647926336114
Iteration: 10, Func. Count: 85, Neg. LLF: 108.63647819180649
Iteration: 11, Func. Count: 92, Neg. LLF: 108.63647807535908
Optimization terminated successfully (Exit mode 0)
Current function value: 108.63647819180649
Iterations: 11
Function evaluations: 92
Gradient evaluations: 11
Iteration: 1, Func. Count: 10, Neg. LLF: 22848745.055617344
Iteration: 2, Func. Count: 20, Neg. LLF: 135.93674619334325
Iteration: 3, Func. Count: 30, Neg. LLF: 156.6970867300781
Iteration: 4, Func. Count: 40, Neg. LLF: 108.42683848207533
Iteration: 5, Func. Count: 50, Neg. LLF: 107.93669013131759
Iteration: 6, Func. Count: 59, Neg. LLF: 107.89391458167349
Iteration: 7, Func. Count: 68, Neg. LLF: 107.89161240847147
Iteration: 8, Func. Count: 77, Neg. LLF: 107.89031022764333
Iteration: 9, Func. Count: 86, Neg. LLF: 107.88926277217999
Iteration: 10, Func. Count: 95, Neg. LLF: 107.88887778033578
Iteration: 11, Func. Count: 104, Neg. LLF: 107.88884830872443
Iteration: 12, Func. Count: 113, Neg. LLF: 107.8888474491654
Optimization terminated successfully (Exit mode 0)
Current function value: 107.8888474491654
Iterations: 12
Function evaluations: 113
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 16793845.717488017
Iteration: 2, Func. Count: 22, Neg. LLF: 111.43459692823585
Iteration: 3, Func. Count: 33, Neg. LLF: 170.5364477178121
Iteration: 4, Func. Count: 44, Neg. LLF: 104.61580260714099
Iteration: 5, Func. Count: 54, Neg. LLF: 110.73178565464698
Iteration: 6, Func. Count: 65, Neg. LLF: 104.72504904104001
Iteration: 7, Func. Count: 76, Neg. LLF: 104.17879268360447
Iteration: 8, Func. Count: 86, Neg. LLF: 104.14625114213095
Iteration: 9, Func. Count: 96, Neg. LLF: 104.14051641413806
Iteration: 10, Func. Count: 106, Neg. LLF: 104.13993969962078
Iteration: 11, Func. Count: 116, Neg. LLF: 104.13989606266436
Iteration: 12, Func. Count: 126, Neg. LLF: 104.13989416527693
Iteration: 13, Func. Count: 135, Neg. LLF: 104.13989404946723
Optimization terminated successfully (Exit mode 0)
Current function value: 104.13989416527693
Iterations: 13
Function evaluations: 135
Gradient evaluations: 13
Iteration: 1, Func. Count: 12, Neg. LLF: 22835273.5050378
Iteration: 2, Func. Count: 24, Neg. LLF: 118.92910488421757
Iteration: 3, Func. Count: 36, Neg. LLF: 116.1480595548316
Iteration: 4, Func. Count: 48, Neg. LLF: 104.55747789628037
Iteration: 5, Func. Count: 59, Neg. LLF: 106.15635888225195
Iteration: 6, Func. Count: 71, Neg. LLF: 105.63170407164897
Iteration: 7, Func. Count: 83, Neg. LLF: 104.17867611047585
Iteration: 8, Func. Count: 94, Neg. LLF: 104.14374627081921
Iteration: 9, Func. Count: 105, Neg. LLF: 104.14003759068326
Iteration: 10, Func. Count: 116, Neg. LLF: 104.13989866792956
Iteration: 11, Func. Count: 127, Neg. LLF: 104.1398944696991
Iteration: 12, Func. Count: 137, Neg. LLF: 104.139894387954
Optimization terminated successfully (Exit mode 0)
Current function value: 104.1398944696991
Iterations: 12
Function evaluations: 137
Gradient evaluations: 12
Iteration: 1, Func. Count: 5, Neg. LLF: 128.7587872529049
Iteration: 2, Func. Count: 11, Neg. LLF: 127.73442272129162
Iteration: 3, Func. Count: 16, Neg. LLF: 113.6482425571148
Iteration: 4, Func. Count: 20, Neg. LLF: 113.64726881280873
Iteration: 5, Func. Count: 24, Neg. LLF: 113.64581112594814
Iteration: 6, Func. Count: 28, Neg. LLF: 113.64580999748611
Iteration: 7, Func. Count: 31, Neg. LLF: 113.64581011239208
Optimization terminated successfully (Exit mode 0)
Current function value: 113.64580999748611
Iterations: 7
Function evaluations: 31
Gradient evaluations: 7
Iteration: 1, Func. Count: 6, Neg. LLF: 26043764.758229923
Iteration: 2, Func. Count: 13, Neg. LLF: 111.67080781515367
Iteration: 3, Func. Count: 18, Neg. LLF: 111.39292367363184
Iteration: 4, Func. Count: 23, Neg. LLF: 129.04638515262542
Iteration: 5, Func. Count: 29, Neg. LLF: 111.01826832652209
Iteration: 6, Func. Count: 34, Neg. LLF: 111.01694273976561
Iteration: 7, Func. Count: 39, Neg. LLF: 111.01693406263085
Iteration: 8, Func. Count: 43, Neg. LLF: 111.01693406259771
Optimization terminated successfully (Exit mode 0)
Current function value: 111.01693406263085
Iterations: 8
Function evaluations: 43
Gradient evaluations: 8
Iteration: 1, Func. Count: 7, Neg. LLF: 25975800.643016048
Iteration: 2, Func. Count: 15, Neg. LLF: 112.26667668701198
Iteration: 3, Func. Count: 21, Neg. LLF: 112.00994403039397
Iteration: 4, Func. Count: 28, Neg. LLF: 115.81323806819924
Iteration: 5, Func. Count: 35, Neg. LLF: 111.18675763387871
Iteration: 6, Func. Count: 42, Neg. LLF: 111.06113128677573
Iteration: 7, Func. Count: 48, Neg. LLF: 111.05838935356172
Iteration: 8, Func. Count: 54, Neg. LLF: 111.05682087814529
Iteration: 9, Func. Count: 60, Neg. LLF: 111.05160624271434
Iteration: 10, Func. Count: 66, Neg. LLF: 111.01858324866548
Iteration: 11, Func. Count: 72, Neg. LLF: 111.01748317944603
Iteration: 12, Func. Count: 78, Neg. LLF: 111.01756057038763
Iteration: 13, Func. Count: 85, Neg. LLF: 111.0169416923094
Iteration: 14, Func. Count: 91, Neg. LLF: 111.0169382688262
Iteration: 15, Func. Count: 97, Neg. LLF: 111.01798807117923
Optimization terminated successfully (Exit mode 0)
Current function value: 111.01693826431065
Iterations: 16
Function evaluations: 100
Gradient evaluations: 15
Iteration: 1, Func. Count: 8, Neg. LLF: 25916895.75357993
Iteration: 2, Func. Count: 17, Neg. LLF: 112.2049506483897
Iteration: 3, Func. Count: 24, Neg. LLF: 111.69805018791014
Iteration: 4, Func. Count: 31, Neg. LLF: 114.26902777668214
Iteration: 5, Func. Count: 40, Neg. LLF: 111.10250407518697
Iteration: 6, Func. Count: 47, Neg. LLF: 111.09330561254207
Iteration: 7, Func. Count: 54, Neg. LLF: 111.09193292665068
Iteration: 8, Func. Count: 61, Neg. LLF: 111.09835804559503
Iteration: 9, Func. Count: 69, Neg. LLF: 111.08036586456838
Iteration: 10, Func. Count: 76, Neg. LLF: 111.0671973005892
Iteration: 11, Func. Count: 83, Neg. LLF: 111.05389882977639
Iteration: 12, Func. Count: 90, Neg. LLF: 111.0529856486078
Iteration: 13, Func. Count: 97, Neg. LLF: 111.04733365018345
Iteration: 14, Func. Count: 104, Neg. LLF: 111.01695068902076
Iteration: 15, Func. Count: 111, Neg. LLF: 111.01696268386432
Iteration: 16, Func. Count: 119, Neg. LLF: 111.01693936481442
Iteration: 17, Func. Count: 127, Neg. LLF: 9770.09366335565
Optimization terminated successfully (Exit mode 0)
Current function value: 111.01693598777219
Iterations: 18
Function evaluations: 132
Gradient evaluations: 17
Iteration: 1, Func. Count: 9, Neg. LLF: 25901136.30251424
Iteration: 2, Func. Count: 19, Neg. LLF: 112.44206889186664
Iteration: 3, Func. Count: 27, Neg. LLF: 111.510436601755
Iteration: 4, Func. Count: 35, Neg. LLF: 111.20963288067007
Iteration: 5, Func. Count: 43, Neg. LLF: 111.21812211934045
Iteration: 6, Func. Count: 52, Neg. LLF: 111.09175271996321
Iteration: 7, Func. Count: 60, Neg. LLF: 111.08828269320635
Iteration: 8, Func. Count: 68, Neg. LLF: 111.08141774830105
Iteration: 9, Func. Count: 76, Neg. LLF: 111.07126723076728
Iteration: 10, Func. Count: 84, Neg. LLF: 111.06656721762661
Iteration: 11, Func. Count: 92, Neg. LLF: 111.0590169717653
Iteration: 12, Func. Count: 100, Neg. LLF: 111.05755442897043
Iteration: 13, Func. Count: 108, Neg. LLF: 111.0501300959143
Iteration: 14, Func. Count: 116, Neg. LLF: 111.01763039154297
Iteration: 15, Func. Count: 124, Neg. LLF: 25936062.5129701
Iteration: 16, Func. Count: 136, Neg. LLF: 111.02254768310486
Iteration: 17, Func. Count: 145, Neg. LLF: 111.01693406062715
Iteration: 18, Func. Count: 152, Neg. LLF: 111.01693407113375
Optimization terminated successfully (Exit mode 0)
Current function value: 111.01693406062715
Iterations: 19
Function evaluations: 152
Gradient evaluations: 18
Iteration: 1, Func. Count: 6, Neg. LLF: 135.2599966837741
Iteration: 2, Func. Count: 13, Neg. LLF: 145.94977376619758
Iteration: 3, Func. Count: 19, Neg. LLF: 113.65877634027837
Iteration: 4, Func. Count: 24, Neg. LLF: 113.64860471205708
Iteration: 5, Func. Count: 29, Neg. LLF: 113.64653933556647
Iteration: 6, Func. Count: 34, Neg. LLF: 113.64600179855215
Iteration: 7, Func. Count: 39, Neg. LLF: 113.64581633256464
Iteration: 8, Func. Count: 44, Neg. LLF: 113.64580980375955
Iteration: 9, Func. Count: 48, Neg. LLF: 113.64580984147604
Optimization terminated successfully (Exit mode 0)
Current function value: 113.64580980375955
Iterations: 9
Function evaluations: 48
Gradient evaluations: 9
Iteration: 1, Func. Count: 7, Neg. LLF: 32932114.10816155
Iteration: 2, Func. Count: 16, Neg. LLF: 149.71584051941522
Iteration: 3, Func. Count: 24, Neg. LLF: 111.22450653469221
Iteration: 4, Func. Count: 30, Neg. LLF: 111.21791216572845
Iteration: 5, Func. Count: 37, Neg. LLF: 111.08185118075905
Iteration: 6, Func. Count: 43, Neg. LLF: 111.02587916465143
Iteration: 7, Func. Count: 49, Neg. LLF: 111.01821319993398
Iteration: 8, Func. Count: 55, Neg. LLF: 111.01993813631758
Iteration: 9, Func. Count: 62, Neg. LLF: 111.01693381595202
Iteration: 10, Func. Count: 68, Neg. LLF: 111.053748323763
Optimization terminated successfully (Exit mode 0)
Current function value: 111.01693381585937
Iterations: 11
Function evaluations: 73
Gradient evaluations: 10
Iteration: 1, Func. Count: 8, Neg. LLF: 36287552.88907896
Iteration: 2, Func. Count: 18, Neg. LLF: 207.54574636270118
Iteration: 3, Func. Count: 27, Neg. LLF: 111.06768087662854
Iteration: 4, Func. Count: 34, Neg. LLF: 111.11555118955998
Iteration: 5, Func. Count: 42, Neg. LLF: 111.05582437010682
Iteration: 6, Func. Count: 49, Neg. LLF: 111.05536960189518
Iteration: 7, Func. Count: 56, Neg. LLF: 111.0530638529681
Iteration: 8, Func. Count: 63, Neg. LLF: 111.04420107645791
Iteration: 9, Func. Count: 70, Neg. LLF: 111.02573256228878
Iteration: 10, Func. Count: 77, Neg. LLF: 27284348.659627702
Iteration: 11, Func. Count: 88, Neg. LLF: 114.22150312859068
Iteration: 12, Func. Count: 97, Neg. LLF: 111.01693428676833
Iteration: 13, Func. Count: 103, Neg. LLF: 111.01693428764644
Optimization terminated successfully (Exit mode 0)
Current function value: 111.01693428676833
Iterations: 14
Function evaluations: 103
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 36791211.89713961
Iteration: 2, Func. Count: 19, Neg. LLF: 227.77561665632848
Iteration: 3, Func. Count: 29, Neg. LLF: 107.99961125439582
Iteration: 4, Func. Count: 37, Neg. LLF: 107.54694293245996
Iteration: 5, Func. Count: 45, Neg. LLF: 107.29167124083625
Iteration: 6, Func. Count: 53, Neg. LLF: 107.28320725652885
Iteration: 7, Func. Count: 62, Neg. LLF: 107.21069012458727
Iteration: 8, Func. Count: 70, Neg. LLF: 107.204934524458
Iteration: 9, Func. Count: 78, Neg. LLF: 107.20463717918808
Iteration: 10, Func. Count: 86, Neg. LLF: 107.20463615437795
Iteration: 11, Func. Count: 93, Neg. LLF: 107.20463595057568
Optimization terminated successfully (Exit mode 0)
Current function value: 107.20463615437795
Iterations: 11
Function evaluations: 93
Gradient evaluations: 11
Iteration: 1, Func. Count: 10, Neg. LLF: 122.73493168526711
Iteration: 2, Func. Count: 20, Neg. LLF: 113.57786356801228
Iteration: 3, Func. Count: 30, Neg. LLF: 114.70963470481296
Iteration: 4, Func. Count: 40, Neg. LLF: 114.8175288655894
Iteration: 5, Func. Count: 50, Neg. LLF: 109.09970116648137
Iteration: 6, Func. Count: 59, Neg. LLF: 123.77367968814863
Iteration: 7, Func. Count: 69, Neg. LLF: 128.7980015987977
Iteration: 8, Func. Count: 81, Neg. LLF: 107.38391255081257
Iteration: 9, Func. Count: 90, Neg. LLF: 107.21982042263812
Iteration: 10, Func. Count: 99, Neg. LLF: 107.20634125319914
Iteration: 11, Func. Count: 108, Neg. LLF: 107.20479294523913
Iteration: 12, Func. Count: 117, Neg. LLF: 107.20464432835263
Iteration: 13, Func. Count: 126, Neg. LLF: 107.20463990833025
Iteration: 14, Func. Count: 135, Neg. LLF: 107.20463674928611
Iteration: 15, Func. Count: 143, Neg. LLF: 107.20463660967881
Optimization terminated successfully (Exit mode 0)
Current function value: 107.20463674928611
Iterations: 15
Function evaluations: 143
Gradient evaluations: 15
Iteration: 1, Func. Count: 7, Neg. LLF: 130.24839756090591
Iteration: 2, Func. Count: 15, Neg. LLF: 131.46586885311348
Iteration: 3, Func. Count: 22, Neg. LLF: 113.65058897825966
Iteration: 4, Func. Count: 28, Neg. LLF: 113.64846828777259
Iteration: 5, Func. Count: 34, Neg. LLF: 113.64601915114353
Iteration: 6, Func. Count: 40, Neg. LLF: 113.64587627053162
Iteration: 7, Func. Count: 46, Neg. LLF: 113.64581001386401
Iteration: 8, Func. Count: 51, Neg. LLF: 113.64581006266283
Optimization terminated successfully (Exit mode 0)
Current function value: 113.64581001386401
Iterations: 8
Function evaluations: 51
Gradient evaluations: 8
Iteration: 1, Func. Count: 8, Neg. LLF: 151.06475391654305
Iteration: 2, Func. Count: 17, Neg. LLF: 125.81490234180103
Iteration: 3, Func. Count: 25, Neg. LLF: 110.95486996661593
Iteration: 4, Func. Count: 32, Neg. LLF: 111.08538374167964
Iteration: 5, Func. Count: 40, Neg. LLF: 110.891581655307
Iteration: 6, Func. Count: 47, Neg. LLF: 110.81021445993338
Iteration: 7, Func. Count: 54, Neg. LLF: 110.75602898961945
Iteration: 8, Func. Count: 61, Neg. LLF: 110.73249894865745
Iteration: 9, Func. Count: 68, Neg. LLF: 110.73023626516675
Iteration: 10, Func. Count: 75, Neg. LLF: 114.4674802272284
Iteration: 11, Func. Count: 85, Neg. LLF: 110.73069151887162
Iteration: 12, Func. Count: 93, Neg. LLF: 110.73022880721386
Iteration: 13, Func. Count: 99, Neg. LLF: 110.73022865430536
Optimization terminated successfully (Exit mode 0)
Current function value: 110.73022880721386
Iterations: 14
Function evaluations: 99
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 33002780.001341052
Iteration: 2, Func. Count: 19, Neg. LLF: 139.29621640904426
Iteration: 3, Func. Count: 28, Neg. LLF: 111.40824187474529
Iteration: 4, Func. Count: 36, Neg. LLF: 110.8946391451856
Iteration: 5, Func. Count: 44, Neg. LLF: 110.82831449856629
Iteration: 6, Func. Count: 52, Neg. LLF: 110.75259874012072
Iteration: 7, Func. Count: 60, Neg. LLF: 110.73795388338044
Iteration: 8, Func. Count: 68, Neg. LLF: 111.05906796850353
Iteration: 9, Func. Count: 77, Neg. LLF: 110.86478241032388
Iteration: 10, Func. Count: 86, Neg. LLF: 110.70744815322216
Iteration: 11, Func. Count: 94, Neg. LLF: 110.70553647221185
Iteration: 12, Func. Count: 102, Neg. LLF: 110.70544494491362
Iteration: 13, Func. Count: 110, Neg. LLF: 110.7054398454539
Iteration: 14, Func. Count: 117, Neg. LLF: 110.70543971864713
Optimization terminated successfully (Exit mode 0)
Current function value: 110.7054398454539
Iterations: 14
Function evaluations: 117
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 38228378.780845076
Iteration: 2, Func. Count: 21, Neg. LLF: 252.82456700861502
Iteration: 3, Func. Count: 32, Neg. LLF: 111.38433717011338
Iteration: 4, Func. Count: 41, Neg. LLF: 110.8279647947401
Iteration: 5, Func. Count: 50, Neg. LLF: 110.60991742780826
Iteration: 6, Func. Count: 59, Neg. LLF: 110.51729037053734
Iteration: 7, Func. Count: 68, Neg. LLF: 110.49402255675656
Iteration: 8, Func. Count: 77, Neg. LLF: 110.49075484864588
Iteration: 9, Func. Count: 86, Neg. LLF: 110.49029119962387
Iteration: 10, Func. Count: 95, Neg. LLF: 110.4901198897813
Iteration: 11, Func. Count: 104, Neg. LLF: 110.49011782409973
Iteration: 12, Func. Count: 112, Neg. LLF: 110.49011767072585
Optimization terminated successfully (Exit mode 0)
Current function value: 110.49011782409973
Iterations: 12
Function evaluations: 112
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 124.36510140417533
Iteration: 2, Func. Count: 22, Neg. LLF: 114.52065749141917
Iteration: 3, Func. Count: 33, Neg. LLF: 117.32414851299343
Iteration: 4, Func. Count: 44, Neg. LLF: 110.63059955315111
Iteration: 5, Func. Count: 54, Neg. LLF: 112.84790783933174
Iteration: 6, Func. Count: 65, Neg. LLF: 110.50436516528997
Iteration: 7, Func. Count: 75, Neg. LLF: 110.4932978139636
Iteration: 8, Func. Count: 85, Neg. LLF: 110.49016017845588
Iteration: 9, Func. Count: 95, Neg. LLF: 110.49011917137543
Iteration: 10, Func. Count: 105, Neg. LLF: 110.49011781493208
Iteration: 11, Func. Count: 114, Neg. LLF: 110.4901177039045
Optimization terminated successfully (Exit mode 0)
Current function value: 110.49011781493208
Iterations: 11
Function evaluations: 114
Gradient evaluations: 11
Iteration: 1, Func. Count: 8, Neg. LLF: 130.18211889666588
Iteration: 2, Func. Count: 17, Neg. LLF: 131.2819419152176
Iteration: 3, Func. Count: 25, Neg. LLF: 113.650470286281
Iteration: 4, Func. Count: 32, Neg. LLF: 113.64839597872806
Iteration: 5, Func. Count: 39, Neg. LLF: 113.64602154729606
Iteration: 6, Func. Count: 46, Neg. LLF: 113.64587819688342
Iteration: 7, Func. Count: 53, Neg. LLF: 113.64581003068177
Iteration: 8, Func. Count: 59, Neg. LLF: 113.64581008929576
Optimization terminated successfully (Exit mode 0)
Current function value: 113.64581003068177
Iterations: 8
Function evaluations: 59
Gradient evaluations: 8
Iteration: 1, Func. Count: 9, Neg. LLF: 284.6452891705209
Iteration: 2, Func. Count: 19, Neg. LLF: 150.71310660672597
Iteration: 3, Func. Count: 29, Neg. LLF: 118.67117125201314
Iteration: 4, Func. Count: 38, Neg. LLF: 110.5057291432163
Iteration: 5, Func. Count: 46, Neg. LLF: 110.2895247480654
Iteration: 6, Func. Count: 54, Neg. LLF: 110.24525145893442
Iteration: 7, Func. Count: 62, Neg. LLF: 110.23848553046871
Iteration: 8, Func. Count: 70, Neg. LLF: 110.23666521395742
Iteration: 9, Func. Count: 78, Neg. LLF: 110.23666015727451
Iteration: 10, Func. Count: 86, Neg. LLF: 110.2366519868877
Iteration: 11, Func. Count: 94, Neg. LLF: 110.23665241946306
Optimization terminated successfully (Exit mode 0)
Current function value: 110.23665198732986
Iterations: 11
Function evaluations: 104
Gradient evaluations: 11
Iteration: 1, Func. Count: 10, Neg. LLF: 31151883.176291227
Iteration: 2, Func. Count: 21, Neg. LLF: 161.4861269264684
Iteration: 3, Func. Count: 32, Neg. LLF: 110.82649302508315
Iteration: 4, Func. Count: 41, Neg. LLF: 110.48384228698337
Iteration: 5, Func. Count: 50, Neg. LLF: 110.40243740279573
Iteration: 6, Func. Count: 59, Neg. LLF: 110.39916199969393
Iteration: 7, Func. Count: 68, Neg. LLF: 110.39311183632596
Iteration: 8, Func. Count: 77, Neg. LLF: 110.38928463094683
Iteration: 9, Func. Count: 86, Neg. LLF: 110.38856896595748
Iteration: 10, Func. Count: 95, Neg. LLF: 110.44591903804493
Iteration: 11, Func. Count: 106, Neg. LLF: 110.4089995664639
Iteration: 12, Func. Count: 117, Neg. LLF: 110.38847636299195
Iteration: 13, Func. Count: 125, Neg. LLF: 110.3884761813999
Optimization terminated successfully (Exit mode 0)
Current function value: 110.38847636299195
Iterations: 14
Function evaluations: 125
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 39560259.020186104
Iteration: 2, Func. Count: 23, Neg. LLF: 289.0267616085204
Iteration: 3, Func. Count: 35, Neg. LLF: 111.6654021646386
Iteration: 4, Func. Count: 45, Neg. LLF: 111.04731330934892
Iteration: 5, Func. Count: 55, Neg. LLF: 110.77217506575917
Iteration: 6, Func. Count: 65, Neg. LLF: 110.91243379298977
Iteration: 7, Func. Count: 76, Neg. LLF: 110.72719026180063
Iteration: 8, Func. Count: 86, Neg. LLF: 110.69348322123047
Iteration: 9, Func. Count: 96, Neg. LLF: 110.66521743545786
Iteration: 10, Func. Count: 106, Neg. LLF: 110.56115821554893
Iteration: 11, Func. Count: 116, Neg. LLF: 110.53215507633014
Iteration: 12, Func. Count: 126, Neg. LLF: 110.49035442300482
Iteration: 13, Func. Count: 136, Neg. LLF: 110.49012666755986
Iteration: 14, Func. Count: 146, Neg. LLF: 110.4901161962023
Iteration: 15, Func. Count: 156, Neg. LLF: 110.49011446715679
Iteration: 16, Func. Count: 166, Neg. LLF: 110.49171384206794
Optimization terminated successfully (Exit mode 0)
Current function value: 110.49011438896379
Iterations: 17
Function evaluations: 168
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 126.13181579206196
Iteration: 2, Func. Count: 24, Neg. LLF: 114.40097020261335
Iteration: 3, Func. Count: 36, Neg. LLF: 111.06636702465488
Iteration: 4, Func. Count: 47, Neg. LLF: 110.90295525598765
Iteration: 5, Func. Count: 58, Neg. LLF: 110.54863502107403
Iteration: 6, Func. Count: 69, Neg. LLF: 110.39163903530898
Iteration: 7, Func. Count: 80, Neg. LLF: 110.38849500576109
Iteration: 8, Func. Count: 91, Neg. LLF: 110.38847359008258
Iteration: 9, Func. Count: 102, Neg. LLF: 110.38847224655197
Optimization terminated successfully (Exit mode 0)
Current function value: 110.38847358796859
Iterations: 9
Function evaluations: 112
Gradient evaluations: 9
Iteration: 1, Func. Count: 9, Neg. LLF: 140.82542823969897
Iteration: 2, Func. Count: 19, Neg. LLF: 1181.764046110794
Iteration: 3, Func. Count: 28, Neg. LLF: 4353895.602946197
Iteration: 4, Func. Count: 37, Neg. LLF: 109.52766268892339
Iteration: 5, Func. Count: 46, Neg. LLF: 108.88168955887099
Iteration: 6, Func. Count: 54, Neg. LLF: 108.87431879465466
Iteration: 7, Func. Count: 63, Neg. LLF: 109.32583666345455
Iteration: 8, Func. Count: 72, Neg. LLF: 108.66872747469246
Iteration: 9, Func. Count: 80, Neg. LLF: 108.6493178407285
Iteration: 10, Func. Count: 88, Neg. LLF: 108.648906212157
Iteration: 11, Func. Count: 97, Neg. LLF: 108.64503734161934
Iteration: 12, Func. Count: 105, Neg. LLF: 108.64500342044022
Iteration: 13, Func. Count: 113, Neg. LLF: 108.64499944376924
Iteration: 14, Func. Count: 120, Neg. LLF: 108.6449994437602
Optimization terminated successfully (Exit mode 0)
Current function value: 108.64499944376924
Iterations: 14
Function evaluations: 120
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 10267934.017122226
Iteration: 2, Func. Count: 20, Neg. LLF: 114.29434931433377
Iteration: 3, Func. Count: 31, Neg. LLF: 250.04276478400342
Iteration: 4, Func. Count: 41, Neg. LLF: 157.41005813047016
Iteration: 5, Func. Count: 51, Neg. LLF: 122.30304586469506
Iteration: 6, Func. Count: 61, Neg. LLF: 107.05297725550291
Iteration: 7, Func. Count: 70, Neg. LLF: 106.97358362735018
Iteration: 8, Func. Count: 79, Neg. LLF: 106.9122561375676
Iteration: 9, Func. Count: 88, Neg. LLF: 106.89668796129182
Iteration: 10, Func. Count: 97, Neg. LLF: 106.89420555671244
Iteration: 11, Func. Count: 106, Neg. LLF: 106.89404244194537
Iteration: 12, Func. Count: 115, Neg. LLF: 106.89402371559623
Iteration: 13, Func. Count: 124, Neg. LLF: 106.89401653354763
Iteration: 14, Func. Count: 132, Neg. LLF: 106.89401643749521
Optimization terminated successfully (Exit mode 0)
Current function value: 106.89401653354763
Iterations: 14
Function evaluations: 132
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 110.12675762522976
Iteration: 2, Func. Count: 22, Neg. LLF: 117.02846594203423
Iteration: 3, Func. Count: 33, Neg. LLF: 154.4727091495395
Iteration: 4, Func. Count: 44, Neg. LLF: 148.59300940099652
Iteration: 5, Func. Count: 55, Neg. LLF: 121.41187847818709
Iteration: 6, Func. Count: 66, Neg. LLF: 126.11851744751908
Iteration: 7, Func. Count: 77, Neg. LLF: 109.3691135179884
Iteration: 8, Func. Count: 88, Neg. LLF: 113.6383006253776
Iteration: 9, Func. Count: 99, Neg. LLF: 108.54140959320696
Iteration: 10, Func. Count: 110, Neg. LLF: 106.40057280199223
Iteration: 11, Func. Count: 120, Neg. LLF: 106.23925414229105
Iteration: 12, Func. Count: 130, Neg. LLF: 106.21326874918468
Iteration: 13, Func. Count: 140, Neg. LLF: 106.20901256230933
Iteration: 14, Func. Count: 150, Neg. LLF: 106.2056201342324
Iteration: 15, Func. Count: 160, Neg. LLF: 106.20554737513088
Iteration: 16, Func. Count: 170, Neg. LLF: 106.20553615420899
Iteration: 17, Func. Count: 179, Neg. LLF: 106.20553605906763
Optimization terminated successfully (Exit mode 0)
Current function value: 106.20553615420899
Iterations: 17
Function evaluations: 179
Gradient evaluations: 17
Iteration: 1, Func. Count: 12, Neg. LLF: 11219282.280738238
Iteration: 2, Func. Count: 24, Neg. LLF: 111.24345562494702
Iteration: 3, Func. Count: 36, Neg. LLF: 130.2370869706393
Iteration: 4, Func. Count: 48, Neg. LLF: 104.64352334769237
Iteration: 5, Func. Count: 59, Neg. LLF: 116.7094564338217
Iteration: 6, Func. Count: 71, Neg. LLF: 3880384.120504857
Iteration: 7, Func. Count: 84, Neg. LLF: 104.3265229089213
Iteration: 8, Func. Count: 95, Neg. LLF: 104.1761862580929
Iteration: 9, Func. Count: 106, Neg. LLF: 104.13638517818647
Iteration: 10, Func. Count: 117, Neg. LLF: 104.11198797066362
Iteration: 11, Func. Count: 128, Neg. LLF: 104.1097969474629
Iteration: 12, Func. Count: 139, Neg. LLF: 104.10889448516964
Iteration: 13, Func. Count: 150, Neg. LLF: 104.1088879461183
Iteration: 14, Func. Count: 161, Neg. LLF: 104.10888561464921
Iteration: 15, Func. Count: 171, Neg. LLF: 104.10888549448433
Optimization terminated successfully (Exit mode 0)
Current function value: 104.10888561464921
Iterations: 15
Function evaluations: 171
Gradient evaluations: 15
Iteration: 1, Func. Count: 13, Neg. LLF: 16342309.00560694
Iteration: 2, Func. Count: 26, Neg. LLF: 118.85596116146792
Iteration: 3, Func. Count: 39, Neg. LLF: 120.10327921156039
Iteration: 4, Func. Count: 52, Neg. LLF: 104.53627243689337
Iteration: 5, Func. Count: 64, Neg. LLF: 157.1625165848174
Iteration: 6, Func. Count: 79, Neg. LLF: 108.94211969876636
Iteration: 7, Func. Count: 93, Neg. LLF: 104.2351198504518
Iteration: 8, Func. Count: 105, Neg. LLF: 105.4081446272595
Iteration: 9, Func. Count: 118, Neg. LLF: 104.12393496601774
Iteration: 10, Func. Count: 130, Neg. LLF: 104.10988515549444
Iteration: 11, Func. Count: 142, Neg. LLF: 104.10894534292274
Iteration: 12, Func. Count: 154, Neg. LLF: 104.10888616301412
Iteration: 13, Func. Count: 165, Neg. LLF: 104.1088860995044
Optimization terminated successfully (Exit mode 0)
Current function value: 104.10888616301412
Iterations: 13
Function evaluations: 165
Gradient evaluations: 13
Iteration: 1, Func. Count: 6, Neg. LLF: 122.9425165155017
Iteration: 2, Func. Count: 12, Neg. LLF: 114.27939551291264
Iteration: 3, Func. Count: 17, Neg. LLF: 116.18087420620155
Iteration: 4, Func. Count: 24, Neg. LLF: 129.80160810875168
Iteration: 5, Func. Count: 30, Neg. LLF: 114.00576805864127
Iteration: 6, Func. Count: 35, Neg. LLF: 113.66941871236894
Iteration: 7, Func. Count: 40, Neg. LLF: 113.63602334069658
Iteration: 8, Func. Count: 45, Neg. LLF: 113.60404183118982
Iteration: 9, Func. Count: 50, Neg. LLF: 113.5962192635289
Iteration: 10, Func. Count: 55, Neg. LLF: 113.59580807067302
Iteration: 11, Func. Count: 60, Neg. LLF: 113.5957939182078
Iteration: 12, Func. Count: 64, Neg. LLF: 113.59579391824641
Optimization terminated successfully (Exit mode 0)
Current function value: 113.5957939182078
Iterations: 12
Function evaluations: 64
Gradient evaluations: 12
Iteration: 1, Func. Count: 7, Neg. LLF: 125.04190402576627
Iteration: 2, Func. Count: 16, Neg. LLF: 123.6290159565794
Iteration: 3, Func. Count: 24, Neg. LLF: 116.45982477121265
Iteration: 4, Func. Count: 31, Neg. LLF: 113.45680561820426
Iteration: 5, Func. Count: 37, Neg. LLF: 113.45170489698168
Iteration: 6, Func. Count: 43, Neg. LLF: 113.449855131954
Iteration: 7, Func. Count: 49, Neg. LLF: 113.44682979504597
Iteration: 8, Func. Count: 55, Neg. LLF: 113.44672665048134
Iteration: 9, Func. Count: 61, Neg. LLF: 113.44672143506871
Iteration: 10, Func. Count: 66, Neg. LLF: 113.44672143504239
Optimization terminated successfully (Exit mode 0)
Current function value: 113.44672143506871
Iterations: 10
Function evaluations: 66
Gradient evaluations: 10
Iteration: 1, Func. Count: 8, Neg. LLF: 26033899.875849113
Iteration: 2, Func. Count: 17, Neg. LLF: 112.58941069792085
Iteration: 3, Func. Count: 24, Neg. LLF: 112.00937907979021
Iteration: 4, Func. Count: 31, Neg. LLF: 116.92664812351582
Iteration: 5, Func. Count: 40, Neg. LLF: 111.26641390275044
Iteration: 6, Func. Count: 47, Neg. LLF: 114.69416398228968
Iteration: 7, Func. Count: 55, Neg. LLF: 111.09300753425836
Iteration: 8, Func. Count: 62, Neg. LLF: 111.07917416913668
Iteration: 9, Func. Count: 69, Neg. LLF: 111.06813638337324
Iteration: 10, Func. Count: 76, Neg. LLF: 111.0618850247576
Iteration: 11, Func. Count: 83, Neg. LLF: 111.05802478705546
Iteration: 12, Func. Count: 90, Neg. LLF: 111.0534750547249
Iteration: 13, Func. Count: 97, Neg. LLF: 111.02324021455898
Iteration: 14, Func. Count: 104, Neg. LLF: 111.01716951448043
Iteration: 15, Func. Count: 111, Neg. LLF: 25912625.411690127
Iteration: 16, Func. Count: 122, Neg. LLF: 111.017428681664
Iteration: 17, Func. Count: 129, Neg. LLF: 111.01693454316118
Optimization terminated successfully (Exit mode 0)
Current function value: 111.0169345411191
Iterations: 18
Function evaluations: 129
Gradient evaluations: 17
Iteration: 1, Func. Count: 9, Neg. LLF: 25976556.656856623
Iteration: 2, Func. Count: 19, Neg. LLF: 112.76598895496143
Iteration: 3, Func. Count: 27, Neg. LLF: 111.6793239733222
Iteration: 4, Func. Count: 35, Neg. LLF: 114.09977610805495
Iteration: 5, Func. Count: 45, Neg. LLF: 111.10081613402798
Iteration: 6, Func. Count: 53, Neg. LLF: 111.08643894156108
Iteration: 7, Func. Count: 61, Neg. LLF: 111.08116100979085
Iteration: 8, Func. Count: 69, Neg. LLF: 111.06197539228666
Iteration: 9, Func. Count: 77, Neg. LLF: 111.05936885262062
Iteration: 10, Func. Count: 85, Neg. LLF: 111.05740609902053
Iteration: 11, Func. Count: 93, Neg. LLF: 111.04975284456866
Iteration: 12, Func. Count: 101, Neg. LLF: 111.01714934980919
Iteration: 13, Func. Count: 109, Neg. LLF: 114.46393873257294
Iteration: 14, Func. Count: 120, Neg. LLF: 114.41642065286233
Optimization terminated successfully (Exit mode 0)
Current function value: 111.01703327763471
Iterations: 14
Function evaluations: 124
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 25973670.66949367
Iteration: 2, Func. Count: 21, Neg. LLF: 113.57566680470289
Iteration: 3, Func. Count: 31, Neg. LLF: 111.52479007816707
Iteration: 4, Func. Count: 40, Neg. LLF: 111.314718185119
Iteration: 5, Func. Count: 49, Neg. LLF: 111.14619654866468
Iteration: 6, Func. Count: 58, Neg. LLF: 111.16642056656164
Iteration: 7, Func. Count: 68, Neg. LLF: 111.11456216628869
Iteration: 8, Func. Count: 77, Neg. LLF: 111.11320215008266
Iteration: 9, Func. Count: 86, Neg. LLF: 111.11314295853171
Iteration: 10, Func. Count: 95, Neg. LLF: 111.11314168009193
Iteration: 11, Func. Count: 104, Neg. LLF: 111.11313945142301
Iteration: 12, Func. Count: 113, Neg. LLF: 111.1131382698355
Iteration: 13, Func. Count: 121, Neg. LLF: 111.11313826953206
Optimization terminated successfully (Exit mode 0)
Current function value: 111.1131382698355
Iterations: 13
Function evaluations: 121
Gradient evaluations: 13
Iteration: 1, Func. Count: 7, Neg. LLF: 121.89214424096295
Iteration: 2, Func. Count: 14, Neg. LLF: 114.35276840980525
Iteration: 3, Func. Count: 20, Neg. LLF: 114.84018614047557
Iteration: 4, Func. Count: 27, Neg. LLF: 6946.461134066231
Iteration: 5, Func. Count: 35, Neg. LLF: 113.75179140652658
Iteration: 6, Func. Count: 41, Neg. LLF: 113.64050046420968
Iteration: 7, Func. Count: 47, Neg. LLF: 113.60048172547877
Iteration: 8, Func. Count: 53, Neg. LLF: 113.59634403977327
Iteration: 9, Func. Count: 59, Neg. LLF: 113.59581160643215
Iteration: 10, Func. Count: 65, Neg. LLF: 113.59579413120848
Iteration: 11, Func. Count: 70, Neg. LLF: 113.59579417211862
Optimization terminated successfully (Exit mode 0)
Current function value: 113.59579413120848
Iterations: 11
Function evaluations: 70
Gradient evaluations: 11
Iteration: 1, Func. Count: 8, Neg. LLF: 33528207.255482316
Iteration: 2, Func. Count: 17, Neg. LLF: 150.04563103206405
Iteration: 3, Func. Count: 26, Neg. LLF: 111.15774425440334
Iteration: 4, Func. Count: 33, Neg. LLF: 111.1306021925395
Iteration: 5, Func. Count: 41, Neg. LLF: 111.03299924324727
Iteration: 6, Func. Count: 48, Neg. LLF: 111.01867917377568
Iteration: 7, Func. Count: 55, Neg. LLF: 111.01705370679102
Iteration: 8, Func. Count: 62, Neg. LLF: 111.01695191656233
Iteration: 9, Func. Count: 69, Neg. LLF: 111.01693402458285
Iteration: 10, Func. Count: 75, Neg. LLF: 111.01693402343729
Optimization terminated successfully (Exit mode 0)
Current function value: 111.01693402458285
Iterations: 10
Function evaluations: 75
Gradient evaluations: 10
Iteration: 1, Func. Count: 9, Neg. LLF: 37170664.254770406
Iteration: 2, Func. Count: 20, Neg. LLF: 220.5096069123762
Iteration: 3, Func. Count: 30, Neg. LLF: 111.06671324010296
Iteration: 4, Func. Count: 38, Neg. LLF: 111.12213310599907
Iteration: 5, Func. Count: 47, Neg. LLF: 111.05431043520592
Iteration: 6, Func. Count: 55, Neg. LLF: 111.05350666975973
Iteration: 7, Func. Count: 63, Neg. LLF: 111.05066624272845
Iteration: 8, Func. Count: 71, Neg. LLF: 111.0325558599505
Iteration: 9, Func. Count: 79, Neg. LLF: 111.02707480790643
Iteration: 10, Func. Count: 87, Neg. LLF: 111.02813976093563
Iteration: 11, Func. Count: 96, Neg. LLF: 111.02454379711136
Iteration: 12, Func. Count: 105, Neg. LLF: 114.54403772888736
Iteration: 13, Func. Count: 116, Neg. LLF: 112.36829991433787
Iteration: 14, Func. Count: 126, Neg. LLF: 111.01693492814596
Iteration: 15, Func. Count: 134, Neg. LLF: 13460.253849706249
Optimization terminated successfully (Exit mode 0)
Current function value: 111.01693433616197
Iterations: 17
Function evaluations: 139
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 37854102.62733469
Iteration: 2, Func. Count: 21, Neg. LLF: 251.3604091713261
Iteration: 3, Func. Count: 32, Neg. LLF: 108.01059509223242
Iteration: 4, Func. Count: 41, Neg. LLF: 107.54538154805384
Iteration: 5, Func. Count: 50, Neg. LLF: 107.28632177340526
Iteration: 6, Func. Count: 59, Neg. LLF: 107.25508952468212
Iteration: 7, Func. Count: 68, Neg. LLF: 107.21034618952677
Iteration: 8, Func. Count: 77, Neg. LLF: 107.20664043401602
Iteration: 9, Func. Count: 86, Neg. LLF: 107.2046728003819
Iteration: 10, Func. Count: 95, Neg. LLF: 107.2046363798136
Iteration: 11, Func. Count: 103, Neg. LLF: 107.20463617615769
Optimization terminated successfully (Exit mode 0)
Current function value: 107.2046363798136
Iterations: 11
Function evaluations: 103
Gradient evaluations: 11
Iteration: 1, Func. Count: 11, Neg. LLF: 122.91789633012291
Iteration: 2, Func. Count: 22, Neg. LLF: 114.97008682398676
Iteration: 3, Func. Count: 33, Neg. LLF: 113.11430102883
Iteration: 4, Func. Count: 44, Neg. LLF: 124.32344106936638
Iteration: 5, Func. Count: 55, Neg. LLF: 108.68767145013337
Iteration: 6, Func. Count: 65, Neg. LLF: 108.85475269785083
Iteration: 7, Func. Count: 76, Neg. LLF: 108.96131240372246
Iteration: 8, Func. Count: 87, Neg. LLF: 107.49467253511006
Iteration: 9, Func. Count: 97, Neg. LLF: 107.22579123905848
Iteration: 10, Func. Count: 107, Neg. LLF: 107.21412436279985
Iteration: 11, Func. Count: 117, Neg. LLF: 107.20498144829395
Iteration: 12, Func. Count: 127, Neg. LLF: 107.20464737358284
Iteration: 13, Func. Count: 137, Neg. LLF: 107.20463648124881
Iteration: 14, Func. Count: 146, Neg. LLF: 107.20463634172184
Optimization terminated successfully (Exit mode 0)
Current function value: 107.20463648124881
Iterations: 14
Function evaluations: 146
Gradient evaluations: 14
Iteration: 1, Func. Count: 8, Neg. LLF: 121.46670469291152
Iteration: 2, Func. Count: 16, Neg. LLF: 114.50840156982656
Iteration: 3, Func. Count: 23, Neg. LLF: 113.69278931581488
Iteration: 4, Func. Count: 30, Neg. LLF: 8708628.254662566
Iteration: 5, Func. Count: 39, Neg. LLF: 113.5484012989521
Iteration: 6, Func. Count: 46, Neg. LLF: 113.5420705660602
Iteration: 7, Func. Count: 53, Neg. LLF: 113.54041104211838
Iteration: 8, Func. Count: 60, Neg. LLF: 113.54040499855643
Iteration: 9, Func. Count: 66, Neg. LLF: 113.54040495061226
Optimization terminated successfully (Exit mode 0)
Current function value: 113.54040499855643
Iterations: 9
Function evaluations: 66
Gradient evaluations: 9
Iteration: 1, Func. Count: 9, Neg. LLF: 148.89194527513604
Iteration: 2, Func. Count: 19, Neg. LLF: 136.27297305106467
Iteration: 3, Func. Count: 28, Neg. LLF: 110.9076393811348
Iteration: 4, Func. Count: 36, Neg. LLF: 111.21338096873959
Iteration: 5, Func. Count: 45, Neg. LLF: 110.75098214584288
Iteration: 6, Func. Count: 53, Neg. LLF: 110.73034553253827
Iteration: 7, Func. Count: 61, Neg. LLF: 110.73023236971973
Iteration: 8, Func. Count: 69, Neg. LLF: 110.73022861858365
Iteration: 9, Func. Count: 76, Neg. LLF: 110.73022846566744
Optimization terminated successfully (Exit mode 0)
Current function value: 110.73022861858365
Iterations: 10
Function evaluations: 76
Gradient evaluations: 9
Iteration: 1, Func. Count: 10, Neg. LLF: 34393526.42306749
Iteration: 2, Func. Count: 21, Neg. LLF: 149.82951887826914
Iteration: 3, Func. Count: 32, Neg. LLF: 111.3988208352727
Iteration: 4, Func. Count: 41, Neg. LLF: 110.79238193139226
Iteration: 5, Func. Count: 50, Neg. LLF: 110.7841529654241
Iteration: 6, Func. Count: 59, Neg. LLF: 110.76580619194648
Iteration: 7, Func. Count: 68, Neg. LLF: 110.72574477967224
Iteration: 8, Func. Count: 77, Neg. LLF: 111.29265888549162
Iteration: 9, Func. Count: 87, Neg. LLF: 110.7160122229242
Iteration: 10, Func. Count: 97, Neg. LLF: 110.70623159237127
Iteration: 11, Func. Count: 106, Neg. LLF: 110.70545182253261
Iteration: 12, Func. Count: 115, Neg. LLF: 110.70544018538631
Iteration: 13, Func. Count: 123, Neg. LLF: 110.70544005897281
Optimization terminated successfully (Exit mode 0)
Current function value: 110.70544018538631
Iterations: 13
Function evaluations: 123
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 39342183.01882578
Iteration: 2, Func. Count: 23, Neg. LLF: 278.3430835334106
Iteration: 3, Func. Count: 35, Neg. LLF: 111.21458019726995
Iteration: 4, Func. Count: 45, Neg. LLF: 110.55742646761196
Iteration: 5, Func. Count: 55, Neg. LLF: 108.17919394621579
Iteration: 6, Func. Count: 65, Neg. LLF: 107.73706561927894
Iteration: 7, Func. Count: 75, Neg. LLF: 107.56413895150928
Iteration: 8, Func. Count: 85, Neg. LLF: 107.26742496110182
Iteration: 9, Func. Count: 95, Neg. LLF: 107.210180105171
Iteration: 10, Func. Count: 105, Neg. LLF: 107.20473524340859
Iteration: 11, Func. Count: 115, Neg. LLF: 107.20463629662345
Iteration: 12, Func. Count: 125, Neg. LLF: 107.20462706548592
Optimization terminated successfully (Exit mode 0)
Current function value: 107.20463628333246
Iterations: 12
Function evaluations: 135
Gradient evaluations: 12
Iteration: 1, Func. Count: 12, Neg. LLF: 124.62938474055099
Iteration: 2, Func. Count: 24, Neg. LLF: 114.34181206586672
Iteration: 3, Func. Count: 36, Neg. LLF: 117.98885546417957
Iteration: 4, Func. Count: 48, Neg. LLF: 110.54962894513714
Iteration: 5, Func. Count: 59, Neg. LLF: 111.24300465823423
Iteration: 6, Func. Count: 71, Neg. LLF: 110.4930264832453
Iteration: 7, Func. Count: 82, Neg. LLF: 110.49013734060809
Iteration: 8, Func. Count: 93, Neg. LLF: 110.49013008960716
Iteration: 9, Func. Count: 104, Neg. LLF: 110.4901212858983
Iteration: 10, Func. Count: 115, Neg. LLF: 110.49011835391175
Iteration: 11, Func. Count: 125, Neg. LLF: 110.49011824295754
Optimization terminated successfully (Exit mode 0)
Current function value: 110.49011835391175
Iterations: 11
Function evaluations: 125
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 121.71053162200619
Iteration: 2, Func. Count: 18, Neg. LLF: 114.56644763917988
Iteration: 3, Func. Count: 26, Neg. LLF: 113.73209829698456
Iteration: 4, Func. Count: 34, Neg. LLF: 7891084.813146355
Iteration: 5, Func. Count: 44, Neg. LLF: 113.56074114582445
Iteration: 6, Func. Count: 52, Neg. LLF: 113.54097102756502
Iteration: 7, Func. Count: 60, Neg. LLF: 113.54042102899736
Iteration: 8, Func. Count: 68, Neg. LLF: 113.54040485231855
Iteration: 9, Func. Count: 75, Neg. LLF: 113.54040491082573
Optimization terminated successfully (Exit mode 0)
Current function value: 113.54040485231855
Iterations: 9
Function evaluations: 75
Gradient evaluations: 9
Iteration: 1, Func. Count: 10, Neg. LLF: 434.62921033975675
Iteration: 2, Func. Count: 21, Neg. LLF: 158.7116818256283
Iteration: 3, Func. Count: 32, Neg. LLF: 118.86837021990458
Iteration: 4, Func. Count: 42, Neg. LLF: 146.19327749340567
Iteration: 5, Func. Count: 52, Neg. LLF: 113.4905248832154
Iteration: 6, Func. Count: 62, Neg. LLF: 111.38789047155193
Iteration: 7, Func. Count: 72, Neg. LLF: 110.93625608042646
Iteration: 8, Func. Count: 81, Neg. LLF: 110.93272927093712
Iteration: 9, Func. Count: 90, Neg. LLF: 110.93109957946197
Iteration: 10, Func. Count: 99, Neg. LLF: 110.93038955364794
Iteration: 11, Func. Count: 108, Neg. LLF: 110.93028521430045
Iteration: 12, Func. Count: 117, Neg. LLF: 110.93023465569102
Iteration: 13, Func. Count: 126, Neg. LLF: 110.93020488755982
Iteration: 14, Func. Count: 135, Neg. LLF: 110.93019892040843
Iteration: 15, Func. Count: 143, Neg. LLF: 110.93019876860116
Optimization terminated successfully (Exit mode 0)
Current function value: 110.93019892040843
Iterations: 15
Function evaluations: 143
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 31916759.81052589
Iteration: 2, Func. Count: 23, Neg. LLF: 193.50447289314593
Iteration: 3, Func. Count: 35, Neg. LLF: 110.84690926221768
Iteration: 4, Func. Count: 45, Neg. LLF: 110.51229860847286
Iteration: 5, Func. Count: 55, Neg. LLF: 110.4095546330527
Iteration: 6, Func. Count: 65, Neg. LLF: 110.41256997499536
Iteration: 7, Func. Count: 76, Neg. LLF: 110.40102402867107
Iteration: 8, Func. Count: 86, Neg. LLF: 110.38957831086344
Iteration: 9, Func. Count: 96, Neg. LLF: 110.38854934931231
Iteration: 10, Func. Count: 106, Neg. LLF: 110.38809936452782
Iteration: 11, Func. Count: 116, Neg. LLF: 110.40572499558397
Iteration: 12, Func. Count: 129, Neg. LLF: 110.38848346142447
Iteration: 13, Func. Count: 141, Neg. LLF: 110.38847809509826
Iteration: 14, Func. Count: 154, Neg. LLF: 110.38847677539879
Iteration: 15, Func. Count: 166, Neg. LLF: 110.3884763693288
Iteration: 16, Func. Count: 177, Neg. LLF: 110.38847638718146
Iteration: 17, Func. Count: 186, Neg. LLF: 110.38847620558862
Optimization terminated successfully (Exit mode 0)
Current function value: 110.38847638718146
Iterations: 19
Function evaluations: 186
Gradient evaluations: 17
Iteration: 1, Func. Count: 12, Neg. LLF: 40713766.085756205
Iteration: 2, Func. Count: 25, Neg. LLF: 318.5532826129835
Iteration: 3, Func. Count: 38, Neg. LLF: 111.36686532086422
Iteration: 4, Func. Count: 49, Neg. LLF: 110.94260515319604
Iteration: 5, Func. Count: 60, Neg. LLF: 110.27988337605694
Iteration: 6, Func. Count: 71, Neg. LLF: 110.28650274243601
Iteration: 7, Func. Count: 83, Neg. LLF: 110.27444771075835
Iteration: 8, Func. Count: 94, Neg. LLF: 110.27233513664888
Iteration: 9, Func. Count: 105, Neg. LLF: 110.24304836683686
Iteration: 10, Func. Count: 116, Neg. LLF: 110.23827843943133
Iteration: 11, Func. Count: 127, Neg. LLF: 110.23658669437515
Iteration: 12, Func. Count: 138, Neg. LLF: 110.2365348155364
Iteration: 13, Func. Count: 149, Neg. LLF: 110.25036928282184
Iteration: 14, Func. Count: 163, Neg. LLF: 110.23665325469031
Iteration: 15, Func. Count: 175, Neg. LLF: 110.23665279112005
Iteration: 16, Func. Count: 185, Neg. LLF: 110.23665238579741
Optimization terminated successfully (Exit mode 0)
Current function value: 110.23665279112005
Iterations: 17
Function evaluations: 185
Gradient evaluations: 16
Iteration: 1, Func. Count: 13, Neg. LLF: 128.25761417422996
Iteration: 2, Func. Count: 26, Neg. LLF: 114.4144880783162
Iteration: 3, Func. Count: 39, Neg. LLF: 110.65760013767547
Iteration: 4, Func. Count: 51, Neg. LLF: 109.02104583249705
Iteration: 5, Func. Count: 63, Neg. LLF: 109.08617795810687
Iteration: 6, Func. Count: 76, Neg. LLF: 129.7335362778579
Iteration: 7, Func. Count: 89, Neg. LLF: 107.7897199012223
Iteration: 8, Func. Count: 101, Neg. LLF: 107.76401011088883
Iteration: 9, Func. Count: 114, Neg. LLF: 107.56024103753128
Iteration: 10, Func. Count: 126, Neg. LLF: 107.55992112624068
Iteration: 11, Func. Count: 138, Neg. LLF: 107.55920797681276
Iteration: 12, Func. Count: 150, Neg. LLF: 107.55917727606405
Iteration: 13, Func. Count: 162, Neg. LLF: 107.55892759647361
Iteration: 14, Func. Count: 174, Neg. LLF: 107.55904994894797
Iteration: 15, Func. Count: 186, Neg. LLF: 107.55889542333972
Optimization terminated successfully (Exit mode 0)
Current function value: 107.559049793374
Iterations: 15
Function evaluations: 196
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 129.0109220222031
Iteration: 2, Func. Count: 21, Neg. LLF: 395.9160497126822
Iteration: 3, Func. Count: 31, Neg. LLF: 3001923.3113652766
Iteration: 4, Func. Count: 41, Neg. LLF: 3765031.88195652
Iteration: 5, Func. Count: 51, Neg. LLF: 2715378.1005711555
Iteration: 6, Func. Count: 61, Neg. LLF: 115.08827376343136
Iteration: 7, Func. Count: 71, Neg. LLF: 107.89478295485605
Iteration: 8, Func. Count: 80, Neg. LLF: 107.78521649790781
Iteration: 9, Func. Count: 89, Neg. LLF: 107.73278998358045
Iteration: 10, Func. Count: 98, Neg. LLF: 107.63426537210366
Iteration: 11, Func. Count: 107, Neg. LLF: 107.57593649736738
Iteration: 12, Func. Count: 116, Neg. LLF: 107.57030556776714
Iteration: 13, Func. Count: 125, Neg. LLF: 107.56987847417813
Iteration: 14, Func. Count: 134, Neg. LLF: 107.56986270056588
Iteration: 15, Func. Count: 143, Neg. LLF: 107.56986190074994
Optimization terminated successfully (Exit mode 0)
Current function value: 107.56986190074994
Iterations: 15
Function evaluations: 143
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 10654934.155944902
Iteration: 2, Func. Count: 22, Neg. LLF: 114.5946196593413
Iteration: 3, Func. Count: 33, Neg. LLF: 142.95337420022685
Iteration: 4, Func. Count: 44, Neg. LLF: 199.27537327337748
Iteration: 5, Func. Count: 55, Neg. LLF: 119.90060869988889
Iteration: 6, Func. Count: 66, Neg. LLF: 118.85795122341933
Iteration: 7, Func. Count: 77, Neg. LLF: 105.97988918117015
Iteration: 8, Func. Count: 87, Neg. LLF: 105.85929681325706
Iteration: 9, Func. Count: 97, Neg. LLF: 105.80403270434087
Iteration: 10, Func. Count: 107, Neg. LLF: 105.76544502417043
Iteration: 11, Func. Count: 117, Neg. LLF: 105.73750910179062
Iteration: 12, Func. Count: 127, Neg. LLF: 105.72287186634397
Iteration: 13, Func. Count: 137, Neg. LLF: 105.71967457127218
Iteration: 14, Func. Count: 147, Neg. LLF: 105.7192770560507
Iteration: 15, Func. Count: 157, Neg. LLF: 105.71922767462705
Iteration: 16, Func. Count: 167, Neg. LLF: 105.7192202776155
Iteration: 17, Func. Count: 176, Neg. LLF: 105.71922021230523
Optimization terminated successfully (Exit mode 0)
Current function value: 105.7192202776155
Iterations: 17
Function evaluations: 176
Gradient evaluations: 17
Iteration: 1, Func. Count: 12, Neg. LLF: 110.85148456345942
Iteration: 2, Func. Count: 24, Neg. LLF: 114.37671477290647
Iteration: 3, Func. Count: 37, Neg. LLF: 141.85074247172753
Iteration: 4, Func. Count: 49, Neg. LLF: 212.2374966383989
Iteration: 5, Func. Count: 61, Neg. LLF: 150.90612906131565
Iteration: 6, Func. Count: 73, Neg. LLF: 1407.3491717237869
Iteration: 7, Func. Count: 85, Neg. LLF: 109.68864456325493
Iteration: 8, Func. Count: 97, Neg. LLF: 113.37374936164483
Iteration: 9, Func. Count: 109, Neg. LLF: 108.55479050485947
Iteration: 10, Func. Count: 121, Neg. LLF: 107.80437736174954
Iteration: 11, Func. Count: 133, Neg. LLF: 105.79329316567373
Iteration: 12, Func. Count: 144, Neg. LLF: 120.48841595730333
Iteration: 13, Func. Count: 157, Neg. LLF: 105.83913578608778
Iteration: 14, Func. Count: 169, Neg. LLF: 106.0031601811196
Iteration: 15, Func. Count: 181, Neg. LLF: 105.49628070913799
Iteration: 16, Func. Count: 192, Neg. LLF: 105.47856375164729
Iteration: 17, Func. Count: 203, Neg. LLF: 105.47675332111669
Iteration: 18, Func. Count: 214, Neg. LLF: 105.47642807165902
Iteration: 19, Func. Count: 225, Neg. LLF: 105.47637703318019
Iteration: 20, Func. Count: 236, Neg. LLF: 105.47637623335866
Optimization terminated successfully (Exit mode 0)
Current function value: 105.47637623335866
Iterations: 20
Function evaluations: 236
Gradient evaluations: 20
Iteration: 1, Func. Count: 13, Neg. LLF: 12397470.684700446
Iteration: 2, Func. Count: 26, Neg. LLF: 111.24199109728679
Iteration: 3, Func. Count: 39, Neg. LLF: 129.84942960838015
Iteration: 4, Func. Count: 52, Neg. LLF: 124.77069581821932
Iteration: 5, Func. Count: 65, Neg. LLF: 114.30760370486479
Iteration: 6, Func. Count: 78, Neg. LLF: 2418865.1914758356
Iteration: 7, Func. Count: 91, Neg. LLF: 116.0154992107334
Iteration: 8, Func. Count: 104, Neg. LLF: 115.54327867523027
Iteration: 9, Func. Count: 117, Neg. LLF: 118.20759986366222
Iteration: 10, Func. Count: 130, Neg. LLF: 117.1748351117512
Iteration: 11, Func. Count: 143, Neg. LLF: 105.71919964450268
Iteration: 12, Func. Count: 156, Neg. LLF: 102.76428869520615
Iteration: 13, Func. Count: 168, Neg. LLF: 102.59045916127974
Iteration: 14, Func. Count: 180, Neg. LLF: 102.57237643490956
Iteration: 15, Func. Count: 192, Neg. LLF: 102.57454427479448
Iteration: 16, Func. Count: 205, Neg. LLF: 102.5295332349009
Iteration: 17, Func. Count: 217, Neg. LLF: 102.51831032400283
Iteration: 18, Func. Count: 229, Neg. LLF: 102.51020099945164
Iteration: 19, Func. Count: 241, Neg. LLF: 102.5087519340922
Iteration: 20, Func. Count: 253, Neg. LLF: 102.5086373585231
Iteration: 21, Func. Count: 265, Neg. LLF: 102.50863476136384
Iteration: 22, Func. Count: 276, Neg. LLF: 102.50863465690162
Optimization terminated successfully (Exit mode 0)
Current function value: 102.50863476136384
Iterations: 22
Function evaluations: 276
Gradient evaluations: 22
Iteration: 1, Func. Count: 14, Neg. LLF: 18282973.36471908
Iteration: 2, Func. Count: 28, Neg. LLF: 119.50970568400187
Iteration: 3, Func. Count: 42, Neg. LLF: 118.71102828955648
Iteration: 4, Func. Count: 56, Neg. LLF: 121.54506701781585
Iteration: 5, Func. Count: 70, Neg. LLF: 111.67061857803434
Iteration: 6, Func. Count: 84, Neg. LLF: 2698941.0172511237
Iteration: 7, Func. Count: 98, Neg. LLF: 116.11722943799143
Iteration: 8, Func. Count: 112, Neg. LLF: 117.85834191646069
Iteration: 9, Func. Count: 126, Neg. LLF: 124.51516112928874
Iteration: 10, Func. Count: 140, Neg. LLF: 128.05833628269875
Iteration: 11, Func. Count: 154, Neg. LLF: 111.5861526871881
Iteration: 12, Func. Count: 168, Neg. LLF: 105.11054865830371
Iteration: 13, Func. Count: 182, Neg. LLF: 103.544385590064
Iteration: 14, Func. Count: 196, Neg. LLF: 102.63666715686192
Iteration: 15, Func. Count: 209, Neg. LLF: 102.55334877373987
Iteration: 16, Func. Count: 222, Neg. LLF: 102.53372824032942
Iteration: 17, Func. Count: 235, Neg. LLF: 102.51108446949064
Iteration: 18, Func. Count: 248, Neg. LLF: 102.50911531135672
Iteration: 19, Func. Count: 261, Neg. LLF: 102.50867608297142
Iteration: 20, Func. Count: 274, Neg. LLF: 102.50863534888383
Iteration: 21, Func. Count: 287, Neg. LLF: 102.50863469585674
Optimization terminated successfully (Exit mode 0)
Current function value: 102.50863469585674
Iterations: 21
Function evaluations: 287
Gradient evaluations: 21
Iteration: 1, Func. Count: 7, Neg. LLF: 125.01930432620526
Iteration: 2, Func. Count: 15, Neg. LLF: 116.52405110578204
Iteration: 3, Func. Count: 22, Neg. LLF: 113.82896186221404
Iteration: 4, Func. Count: 28, Neg. LLF: 139.93961790702153
Iteration: 5, Func. Count: 37, Neg. LLF: 114.25606187697103
Iteration: 6, Func. Count: 44, Neg. LLF: 141.26668066432336
Iteration: 7, Func. Count: 52, Neg. LLF: 113.22963317998068
Iteration: 8, Func. Count: 58, Neg. LLF: 113.56777598712223
Iteration: 9, Func. Count: 65, Neg. LLF: 113.13033274851344
Iteration: 10, Func. Count: 72, Neg. LLF: 113.10894960387533
Iteration: 11, Func. Count: 78, Neg. LLF: 113.10769170581932
Iteration: 12, Func. Count: 84, Neg. LLF: 113.10768259496945
Iteration: 13, Func. Count: 89, Neg. LLF: 113.10768259485795
Optimization terminated successfully (Exit mode 0)
Current function value: 113.10768259496945
Iterations: 13
Function evaluations: 89
Gradient evaluations: 13
Iteration: 1, Func. Count: 8, Neg. LLF: 122.99769297984464
Iteration: 2, Func. Count: 18, Neg. LLF: 122.26667600384584
Iteration: 3, Func. Count: 27, Neg. LLF: 120.42535347118458
Iteration: 4, Func. Count: 36, Neg. LLF: 113.39515252013726
Iteration: 5, Func. Count: 43, Neg. LLF: 113.58807648307818
Iteration: 6, Func. Count: 51, Neg. LLF: 113.3040762140302
Iteration: 7, Func. Count: 59, Neg. LLF: 113.13573933796145
Iteration: 8, Func. Count: 66, Neg. LLF: 113.11021837015035
Iteration: 9, Func. Count: 73, Neg. LLF: 113.10794519143906
Iteration: 10, Func. Count: 80, Neg. LLF: 113.10773596056252
Iteration: 11, Func. Count: 87, Neg. LLF: 113.1077009577292
Iteration: 12, Func. Count: 94, Neg. LLF: 113.1076825461779
Iteration: 13, Func. Count: 100, Neg. LLF: 113.10768254931924
Optimization terminated successfully (Exit mode 0)
Current function value: 113.1076825461779
Iterations: 13
Function evaluations: 100
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 26046979.75243829
Iteration: 2, Func. Count: 19, Neg. LLF: 112.69420232372676
Iteration: 3, Func. Count: 27, Neg. LLF: 112.0894355875146
Iteration: 4, Func. Count: 35, Neg. LLF: 116.95085173814768
Iteration: 5, Func. Count: 45, Neg. LLF: 111.27754041302664
Iteration: 6, Func. Count: 53, Neg. LLF: 113.64502010469744
Iteration: 7, Func. Count: 62, Neg. LLF: 111.09198130056322
Iteration: 8, Func. Count: 70, Neg. LLF: 111.07615956068251
Iteration: 9, Func. Count: 78, Neg. LLF: 111.06648431881233
Iteration: 10, Func. Count: 86, Neg. LLF: 111.06099831468462
Iteration: 11, Func. Count: 94, Neg. LLF: 111.05719326102408
Iteration: 12, Func. Count: 102, Neg. LLF: 111.0517420431689
Iteration: 13, Func. Count: 110, Neg. LLF: 111.01703606042963
Iteration: 14, Func. Count: 118, Neg. LLF: 25937023.04487726
Iteration: 15, Func. Count: 130, Neg. LLF: 111.01856047962883
Iteration: 16, Func. Count: 139, Neg. LLF: 111.01693413207606
Iteration: 17, Func. Count: 146, Neg. LLF: 111.01693413370562
Optimization terminated successfully (Exit mode 0)
Current function value: 111.01693413207606
Iterations: 18
Function evaluations: 146
Gradient evaluations: 17
Iteration: 1, Func. Count: 10, Neg. LLF: 26032155.190978467
Iteration: 2, Func. Count: 21, Neg. LLF: 113.41641878205445
Iteration: 3, Func. Count: 31, Neg. LLF: 111.80737593368433
Iteration: 4, Func. Count: 40, Neg. LLF: 112.28861410306885
Iteration: 5, Func. Count: 50, Neg. LLF: 111.20584099380677
Iteration: 6, Func. Count: 59, Neg. LLF: 111.10583806782203
Iteration: 7, Func. Count: 68, Neg. LLF: 111.10360092380515
Iteration: 8, Func. Count: 77, Neg. LLF: 111.09701144559091
Iteration: 9, Func. Count: 86, Neg. LLF: 111.09423056560166
Iteration: 10, Func. Count: 95, Neg. LLF: 111.0918668761482
Iteration: 11, Func. Count: 104, Neg. LLF: 111.09082362222678
Iteration: 12, Func. Count: 113, Neg. LLF: 111.09052208645743
Iteration: 13, Func. Count: 122, Neg. LLF: 111.09047427309542
Iteration: 14, Func. Count: 131, Neg. LLF: 111.09046862139057
Iteration: 15, Func. Count: 139, Neg. LLF: 111.0904686212754
Optimization terminated successfully (Exit mode 0)
Current function value: 111.09046862139057
Iterations: 15
Function evaluations: 139
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 26024725.905192774
Iteration: 2, Func. Count: 23, Neg. LLF: 114.36548457601037
Iteration: 3, Func. Count: 34, Neg. LLF: 111.55350426181523
Iteration: 4, Func. Count: 44, Neg. LLF: 111.64108188176813
Iteration: 5, Func. Count: 55, Neg. LLF: 111.85744874147304
Iteration: 6, Func. Count: 68, Neg. LLF: 111.25221579075908
Iteration: 7, Func. Count: 78, Neg. LLF: 111.22627383678449
Iteration: 8, Func. Count: 88, Neg. LLF: 111.22595506738605
Iteration: 9, Func. Count: 98, Neg. LLF: 111.22588482210463
Iteration: 10, Func. Count: 108, Neg. LLF: 111.22587950909087
Iteration: 11, Func. Count: 117, Neg. LLF: 111.22587950891956
Optimization terminated successfully (Exit mode 0)
Current function value: 111.22587950909087
Iterations: 11
Function evaluations: 117
Gradient evaluations: 11
Iteration: 1, Func. Count: 8, Neg. LLF: 124.68380160474987
Iteration: 2, Func. Count: 17, Neg. LLF: 115.6199853857865
Iteration: 3, Func. Count: 25, Neg. LLF: 113.88238663704641
Iteration: 4, Func. Count: 32, Neg. LLF: 149.25463163507104
Iteration: 5, Func. Count: 41, Neg. LLF: 114.78194400795596
Iteration: 6, Func. Count: 49, Neg. LLF: 113.29344509923347
Iteration: 7, Func. Count: 57, Neg. LLF: 141.47024680754583
Iteration: 8, Func. Count: 66, Neg. LLF: 113.1176209807671
Iteration: 9, Func. Count: 73, Neg. LLF: 113.10889581696827
Iteration: 10, Func. Count: 80, Neg. LLF: 113.10810454407118
Iteration: 11, Func. Count: 87, Neg. LLF: 113.10768383623959
Iteration: 12, Func. Count: 94, Neg. LLF: 113.10768248870178
Iteration: 13, Func. Count: 100, Neg. LLF: 113.10768252708485
Optimization terminated successfully (Exit mode 0)
Current function value: 113.10768248870178
Iterations: 13
Function evaluations: 100
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 33161761.05733645
Iteration: 2, Func. Count: 19, Neg. LLF: 147.04874064166017
Iteration: 3, Func. Count: 29, Neg. LLF: 111.15447256156095
Iteration: 4, Func. Count: 37, Neg. LLF: 111.12065760952359
Iteration: 5, Func. Count: 45, Neg. LLF: 111.06115498724039
Iteration: 6, Func. Count: 53, Neg. LLF: 111.08628240936416
Iteration: 7, Func. Count: 62, Neg. LLF: 111.01896659485973
Iteration: 8, Func. Count: 70, Neg. LLF: 111.01701565897216
Iteration: 9, Func. Count: 78, Neg. LLF: 111.01693447975622
Iteration: 10, Func. Count: 86, Neg. LLF: 114.4043676031303
Iteration: 11, Func. Count: 98, Neg. LLF: 111.01713320234248
Iteration: 12, Func. Count: 107, Neg. LLF: 111.0169340606179
Optimization terminated successfully (Exit mode 0)
Current function value: 111.0169340606179
Iterations: 13
Function evaluations: 107
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 37488639.26211726
Iteration: 2, Func. Count: 22, Neg. LLF: 224.64518476330886
Iteration: 3, Func. Count: 33, Neg. LLF: 111.06770787590779
Iteration: 4, Func. Count: 42, Neg. LLF: 111.12021182027719
Iteration: 5, Func. Count: 52, Neg. LLF: 111.05543816184021
Iteration: 6, Func. Count: 61, Neg. LLF: 111.05487206342973
Iteration: 7, Func. Count: 70, Neg. LLF: 111.0527192571131
Iteration: 8, Func. Count: 79, Neg. LLF: 111.04358221201306
Iteration: 9, Func. Count: 88, Neg. LLF: 111.0269014172815
Iteration: 10, Func. Count: 97, Neg. LLF: 27354581.91478779
Iteration: 11, Func. Count: 110, Neg. LLF: 114.59878727527044
Iteration: 12, Func. Count: 121, Neg. LLF: 111.01693462401418
Iteration: 13, Func. Count: 129, Neg. LLF: 111.01693462462605
Optimization terminated successfully (Exit mode 0)
Current function value: 111.01693462401418
Iterations: 14
Function evaluations: 129
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 38860273.31228885
Iteration: 2, Func. Count: 23, Neg. LLF: 270.99055629947725
Iteration: 3, Func. Count: 35, Neg. LLF: 107.98184883761603
Iteration: 4, Func. Count: 45, Neg. LLF: 107.53879911883766
Iteration: 5, Func. Count: 55, Neg. LLF: 142.75127904939325
Iteration: 6, Func. Count: 67, Neg. LLF: 107.26372728015983
Iteration: 7, Func. Count: 77, Neg. LLF: 107.25305953875527
Iteration: 8, Func. Count: 88, Neg. LLF: 107.18331664030924
Iteration: 9, Func. Count: 98, Neg. LLF: 107.1736344691763
Iteration: 10, Func. Count: 108, Neg. LLF: 107.17326058995576
Iteration: 11, Func. Count: 118, Neg. LLF: 107.1732522734717
Iteration: 12, Func. Count: 128, Neg. LLF: 107.17325164974041
Optimization terminated successfully (Exit mode 0)
Current function value: 107.17325164974041
Iterations: 12
Function evaluations: 128
Gradient evaluations: 12
Iteration: 1, Func. Count: 12, Neg. LLF: 123.17690428516548
Iteration: 2, Func. Count: 24, Neg. LLF: 114.471260171186
Iteration: 3, Func. Count: 36, Neg. LLF: 114.10802097541766
Iteration: 4, Func. Count: 48, Neg. LLF: 109.8703526522898
Iteration: 5, Func. Count: 59, Neg. LLF: 108.88864100725377
Iteration: 6, Func. Count: 70, Neg. LLF: 183.17444871507763
Iteration: 7, Func. Count: 84, Neg. LLF: 150.36432066257453
Iteration: 8, Func. Count: 98, Neg. LLF: 109.63547892107822
Iteration: 9, Func. Count: 110, Neg. LLF: 107.36558271820128
Iteration: 10, Func. Count: 121, Neg. LLF: 107.18241134937074
Iteration: 11, Func. Count: 132, Neg. LLF: 107.1782606207649
Iteration: 12, Func. Count: 143, Neg. LLF: 107.17349220457044
Iteration: 13, Func. Count: 154, Neg. LLF: 107.17327902820726
Iteration: 14, Func. Count: 165, Neg. LLF: 107.17325572773062
Iteration: 15, Func. Count: 176, Neg. LLF: 107.17325210835448
Iteration: 16, Func. Count: 186, Neg. LLF: 107.17325197789114
Optimization terminated successfully (Exit mode 0)
Current function value: 107.17325210835448
Iterations: 16
Function evaluations: 186
Gradient evaluations: 16
Iteration: 1, Func. Count: 9, Neg. LLF: 124.8588589487335
Iteration: 2, Func. Count: 19, Neg. LLF: 118.60358458770135
Iteration: 3, Func. Count: 30, Neg. LLF: 114.8701894559542
Iteration: 4, Func. Count: 38, Neg. LLF: 118.39470334112951
Iteration: 5, Func. Count: 47, Neg. LLF: 143.25074818325564
Iteration: 6, Func. Count: 58, Neg. LLF: 113.09979506195461
Iteration: 7, Func. Count: 66, Neg. LLF: 113.04462868768474
Iteration: 8, Func. Count: 74, Neg. LLF: 113.02903136502127
Iteration: 9, Func. Count: 82, Neg. LLF: 113.028400495561
Iteration: 10, Func. Count: 90, Neg. LLF: 113.02828587459787
Iteration: 11, Func. Count: 98, Neg. LLF: 113.02825741026003
Iteration: 12, Func. Count: 105, Neg. LLF: 113.0282573501575
Optimization terminated successfully (Exit mode 0)
Current function value: 113.02825741026003
Iterations: 12
Function evaluations: 105
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 148.35346067506438
Iteration: 2, Func. Count: 21, Neg. LLF: 133.45469439246685
Iteration: 3, Func. Count: 31, Neg. LLF: 110.91355003511761
Iteration: 4, Func. Count: 40, Neg. LLF: 111.26413207114409
Iteration: 5, Func. Count: 50, Neg. LLF: 110.74619268388308
Iteration: 6, Func. Count: 59, Neg. LLF: 110.73030627878853
Iteration: 7, Func. Count: 68, Neg. LLF: 110.73022628302479
Iteration: 8, Func. Count: 77, Neg. LLF: 111.09973230317965
Optimization terminated successfully (Exit mode 0)
Current function value: 110.73022542185838
Iterations: 9
Function evaluations: 80
Gradient evaluations: 8
Iteration: 1, Func. Count: 11, Neg. LLF: 34654878.45118859
Iteration: 2, Func. Count: 23, Neg. LLF: 164.68308309390068
Iteration: 3, Func. Count: 35, Neg. LLF: 111.41706988057292
Iteration: 4, Func. Count: 45, Neg. LLF: 110.79249372717729
Iteration: 5, Func. Count: 55, Neg. LLF: 110.78261834952623
Iteration: 6, Func. Count: 65, Neg. LLF: 110.76315345354254
Iteration: 7, Func. Count: 75, Neg. LLF: 110.72501749716082
Iteration: 8, Func. Count: 85, Neg. LLF: 111.28628521887836
Iteration: 9, Func. Count: 96, Neg. LLF: 110.71438205532483
Iteration: 10, Func. Count: 107, Neg. LLF: 110.70604418594006
Iteration: 11, Func. Count: 117, Neg. LLF: 110.70545061708572
Iteration: 12, Func. Count: 127, Neg. LLF: 110.7054400545965
Iteration: 13, Func. Count: 136, Neg. LLF: 110.70543992817824
Optimization terminated successfully (Exit mode 0)
Current function value: 110.7054400545965
Iterations: 13
Function evaluations: 136
Gradient evaluations: 13
Iteration: 1, Func. Count: 12, Neg. LLF: 40373557.80484709
Iteration: 2, Func. Count: 25, Neg. LLF: 302.9053683732393
Iteration: 3, Func. Count: 38, Neg. LLF: 110.82858738667619
Iteration: 4, Func. Count: 49, Neg. LLF: 110.34515678860795
Iteration: 5, Func. Count: 60, Neg. LLF: 107.66001345198853
Iteration: 6, Func. Count: 71, Neg. LLF: 107.94116576766528
Iteration: 7, Func. Count: 84, Neg. LLF: 107.49564542144742
Iteration: 8, Func. Count: 95, Neg. LLF: 107.3322677982553
Iteration: 9, Func. Count: 106, Neg. LLF: 107.24060953373339
Iteration: 10, Func. Count: 117, Neg. LLF: 107.22715210915898
Iteration: 11, Func. Count: 128, Neg. LLF: 107.18048448848246
Iteration: 12, Func. Count: 139, Neg. LLF: 107.1833298220983
Iteration: 13, Func. Count: 151, Neg. LLF: 11531.569834759819
Iteration: 14, Func. Count: 165, Neg. LLF: 169.82403622876492
Iteration: 15, Func. Count: 178, Neg. LLF: 107.38874527635737
Iteration: 16, Func. Count: 191, Neg. LLF: 107.17336883527776
Iteration: 17, Func. Count: 202, Neg. LLF: 107.17325179780684
Iteration: 18, Func. Count: 212, Neg. LLF: 107.1732516136419
Optimization terminated successfully (Exit mode 0)
Current function value: 107.17325179780684
Iterations: 19
Function evaluations: 212
Gradient evaluations: 18
Iteration: 1, Func. Count: 13, Neg. LLF: 126.12978196803618
Iteration: 2, Func. Count: 26, Neg. LLF: 114.3422467759485
Iteration: 3, Func. Count: 39, Neg. LLF: 114.30898511941002
Iteration: 4, Func. Count: 52, Neg. LLF: 110.5419797852986
Iteration: 5, Func. Count: 64, Neg. LLF: 110.86192333555428
Iteration: 6, Func. Count: 77, Neg. LLF: 110.49232725398147
Iteration: 7, Func. Count: 89, Neg. LLF: 110.49017617088344
Iteration: 8, Func. Count: 101, Neg. LLF: 110.49014741862689
Iteration: 9, Func. Count: 113, Neg. LLF: 110.49012748389481
Iteration: 10, Func. Count: 125, Neg. LLF: 110.49011750239706
Iteration: 11, Func. Count: 136, Neg. LLF: 110.49011739167914
Optimization terminated successfully (Exit mode 0)
Current function value: 110.49011750239706
Iterations: 11
Function evaluations: 136
Gradient evaluations: 11
Iteration: 1, Func. Count: 10, Neg. LLF: 127.52616744692546
Iteration: 2, Func. Count: 21, Neg. LLF: 120.35611049749483
Iteration: 3, Func. Count: 31, Neg. LLF: 113.83514337910368
Iteration: 4, Func. Count: 40, Neg. LLF: 114.6029193097308
Iteration: 5, Func. Count: 51, Neg. LLF: 117.34833132104336
Iteration: 6, Func. Count: 64, Neg. LLF: 114.06500640984835
Iteration: 7, Func. Count: 74, Neg. LLF: 112.90307460219356
Iteration: 8, Func. Count: 83, Neg. LLF: 112.85276959125501
Iteration: 9, Func. Count: 92, Neg. LLF: 112.84824469098014
Iteration: 10, Func. Count: 101, Neg. LLF: 112.84698333993761
Iteration: 11, Func. Count: 110, Neg. LLF: 112.84598892566352
Iteration: 12, Func. Count: 119, Neg. LLF: 112.84597954124409
Iteration: 13, Func. Count: 127, Neg. LLF: 112.84597948472872
Optimization terminated successfully (Exit mode 0)
Current function value: 112.84597954124409
Iterations: 13
Function evaluations: 127
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 470.1083637515302
Iteration: 2, Func. Count: 23, Neg. LLF: 157.32756413746188
Iteration: 3, Func. Count: 35, Neg. LLF: 119.17706169089246
Iteration: 4, Func. Count: 46, Neg. LLF: 146.15997682848507
Iteration: 5, Func. Count: 57, Neg. LLF: 114.25943597652704
Iteration: 6, Func. Count: 68, Neg. LLF: 111.07626107456903
Iteration: 7, Func. Count: 78, Neg. LLF: 112.53004843971483
Iteration: 8, Func. Count: 89, Neg. LLF: 138.4945299892971
Iteration: 9, Func. Count: 100, Neg. LLF: 111.32603473101994
Iteration: 10, Func. Count: 111, Neg. LLF: 110.94480883946615
Iteration: 11, Func. Count: 121, Neg. LLF: 110.93683842208696
Iteration: 12, Func. Count: 131, Neg. LLF: 110.93436687280806
Iteration: 13, Func. Count: 141, Neg. LLF: 110.93219127572894
Iteration: 14, Func. Count: 151, Neg. LLF: 110.93137275874098
Iteration: 15, Func. Count: 161, Neg. LLF: 110.93090738220147
Iteration: 16, Func. Count: 171, Neg. LLF: 110.93050426059916
Iteration: 17, Func. Count: 181, Neg. LLF: 110.93022272310904
Iteration: 18, Func. Count: 191, Neg. LLF: 110.93009893951766
Iteration: 19, Func. Count: 201, Neg. LLF: 110.93003896856318
Iteration: 20, Func. Count: 211, Neg. LLF: 110.92999124670222
Iteration: 21, Func. Count: 221, Neg. LLF: 110.92996519933203
Iteration: 22, Func. Count: 231, Neg. LLF: 110.92995948011573
Iteration: 23, Func. Count: 240, Neg. LLF: 110.92995932968248
Optimization terminated successfully (Exit mode 0)
Current function value: 110.92995948011573
Iterations: 23
Function evaluations: 240
Gradient evaluations: 23
Iteration: 1, Func. Count: 12, Neg. LLF: 34987444.52115898
Iteration: 2, Func. Count: 25, Neg. LLF: 222.82577050640148
Iteration: 3, Func. Count: 38, Neg. LLF: 110.8549647041138
Iteration: 4, Func. Count: 49, Neg. LLF: 110.41344437833168
Iteration: 5, Func. Count: 60, Neg. LLF: 110.39214408314116
Iteration: 6, Func. Count: 71, Neg. LLF: 110.38952616221465
Iteration: 7, Func. Count: 82, Neg. LLF: 110.38918171647934
Iteration: 8, Func. Count: 93, Neg. LLF: 110.38877588843565
Iteration: 9, Func. Count: 104, Neg. LLF: 110.38844271505835
Iteration: 10, Func. Count: 115, Neg. LLF: 110.38845600531855
Iteration: 11, Func. Count: 136, Neg. LLF: 110.38963138365578
Iteration: 12, Func. Count: 149, Neg. LLF: 110.38847697373254
Iteration: 13, Func. Count: 161, Neg. LLF: 110.38847636564154
Iteration: 14, Func. Count: 171, Neg. LLF: 110.38847618412494
Optimization terminated successfully (Exit mode 0)
Current function value: 110.38847636564154
Iterations: 15
Function evaluations: 171
Gradient evaluations: 14
Iteration: 1, Func. Count: 13, Neg. LLF: 41766367.728954114
Iteration: 2, Func. Count: 27, Neg. LLF: 346.45637414728736
Iteration: 3, Func. Count: 41, Neg. LLF: 111.75365969376945
Iteration: 4, Func. Count: 53, Neg. LLF: 111.03100505825041
Iteration: 5, Func. Count: 65, Neg. LLF: 110.6904318100965
Iteration: 6, Func. Count: 77, Neg. LLF: 110.28654753587409
Iteration: 7, Func. Count: 89, Neg. LLF: 109.07895237597626
Iteration: 8, Func. Count: 101, Neg. LLF: 108.66520109310099
Iteration: 9, Func. Count: 113, Neg. LLF: 124.5144505693868
Iteration: 10, Func. Count: 126, Neg. LLF: 107.88663455048082
Iteration: 11, Func. Count: 138, Neg. LLF: 107.59232041477435
Iteration: 12, Func. Count: 150, Neg. LLF: 107.37628938284107
Iteration: 13, Func. Count: 162, Neg. LLF: 107.18907254324006
Iteration: 14, Func. Count: 174, Neg. LLF: 107.06505384728258
Iteration: 15, Func. Count: 186, Neg. LLF: 107.09656434249578
Iteration: 16, Func. Count: 199, Neg. LLF: 107.1516583430956
Iteration: 17, Func. Count: 212, Neg. LLF: 107.05205116403654
Iteration: 18, Func. Count: 224, Neg. LLF: 107.05059023268986
Iteration: 19, Func. Count: 236, Neg. LLF: 111.92628992170721
Iteration: 20, Func. Count: 251, Neg. LLF: 107.1590642924845
Iteration: 21, Func. Count: 266, Neg. LLF: 107.05338434663109
Iteration: 22, Func. Count: 279, Neg. LLF: 107.05152657044702
Iteration: 23, Func. Count: 292, Neg. LLF: 107.05193772216977
Iteration: 24, Func. Count: 305, Neg. LLF: 107.05117396464799
Iteration: 25, Func. Count: 316, Neg. LLF: 107.05117380475369
Optimization terminated successfully (Exit mode 0)
Current function value: 107.05117396464799
Iterations: 26
Function evaluations: 316
Gradient evaluations: 25
Iteration: 1, Func. Count: 14, Neg. LLF: 129.89046119327398
Iteration: 2, Func. Count: 28, Neg. LLF: 114.40870809111365
Iteration: 3, Func. Count: 42, Neg. LLF: 110.27346865538154
Iteration: 4, Func. Count: 55, Neg. LLF: 108.15254847287027
Iteration: 5, Func. Count: 68, Neg. LLF: 1228525.0219787476
Iteration: 6, Func. Count: 83, Neg. LLF: 3207.5954250433088
Iteration: 7, Func. Count: 98, Neg. LLF: 107.71113492999115
Iteration: 8, Func. Count: 111, Neg. LLF: 107.54463854614525
Iteration: 9, Func. Count: 124, Neg. LLF: 107.51395320070087
Iteration: 10, Func. Count: 137, Neg. LLF: 107.49991460386178
Iteration: 11, Func. Count: 150, Neg. LLF: 107.48169554736594
Iteration: 12, Func. Count: 163, Neg. LLF: 120.30712128713228
Iteration: 13, Func. Count: 179, Neg. LLF: 107.80016977676081
Iteration: 14, Func. Count: 194, Neg. LLF: 118.34414997037972
Iteration: 15, Func. Count: 210, Neg. LLF: 107.4967184377536
Iteration: 16, Func. Count: 225, Neg. LLF: 107.48557775102876
Iteration: 17, Func. Count: 237, Neg. LLF: 107.48557748750765
Optimization terminated successfully (Exit mode 0)
Current function value: 107.48557775102876
Iterations: 18
Function evaluations: 237
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 118.31144605557492
Iteration: 2, Func. Count: 23, Neg. LLF: 146.73316652124086
Iteration: 3, Func. Count: 34, Neg. LLF: 282885.22648019664
Iteration: 4, Func. Count: 45, Neg. LLF: 2182213.182639609
Iteration: 5, Func. Count: 56, Neg. LLF: 2939175.0339212273
Iteration: 6, Func. Count: 67, Neg. LLF: 149.22756453211
Iteration: 7, Func. Count: 78, Neg. LLF: 119.1401374377215
Iteration: 8, Func. Count: 89, Neg. LLF: 112.06660549239662
Iteration: 9, Func. Count: 100, Neg. LLF: 111.601681025247
Iteration: 10, Func. Count: 111, Neg. LLF: 105.19465364586074
Iteration: 11, Func. Count: 121, Neg. LLF: 105.26423745886753
Iteration: 12, Func. Count: 132, Neg. LLF: 108.38792492552427
Iteration: 13, Func. Count: 145, Neg. LLF: 105.98802558847834
Iteration: 14, Func. Count: 156, Neg. LLF: 104.83851201754644
Iteration: 15, Func. Count: 166, Neg. LLF: 105.023038183006
Iteration: 16, Func. Count: 177, Neg. LLF: 104.66470517507737
Iteration: 17, Func. Count: 187, Neg. LLF: 104.57781355406424
Iteration: 18, Func. Count: 197, Neg. LLF: 104.5554716039526
Iteration: 19, Func. Count: 207, Neg. LLF: 104.55267150684035
Iteration: 20, Func. Count: 217, Neg. LLF: 104.55253814639725
Iteration: 21, Func. Count: 227, Neg. LLF: 104.55253627703408
Iteration: 22, Func. Count: 236, Neg. LLF: 104.55253627666913
Optimization terminated successfully (Exit mode 0)
Current function value: 104.55253627703408
Iterations: 22
Function evaluations: 236
Gradient evaluations: 22
Iteration: 1, Func. Count: 12, Neg. LLF: 10483530.268009545
Iteration: 2, Func. Count: 24, Neg. LLF: 114.4322979236485
Iteration: 3, Func. Count: 36, Neg. LLF: 126.36239091873709
Iteration: 4, Func. Count: 48, Neg. LLF: 3671269.520287737
Iteration: 5, Func. Count: 60, Neg. LLF: 159.7878954367645
Iteration: 6, Func. Count: 73, Neg. LLF: 123.47237509355408
Iteration: 7, Func. Count: 86, Neg. LLF: 105.58969619386951
Iteration: 8, Func. Count: 97, Neg. LLF: 105.38778111859868
Iteration: 9, Func. Count: 108, Neg. LLF: 105.29790189554983
Iteration: 10, Func. Count: 119, Neg. LLF: 105.1930031367017
Iteration: 11, Func. Count: 130, Neg. LLF: 104.90632281709784
Iteration: 12, Func. Count: 141, Neg. LLF: 104.74260763951267
Iteration: 13, Func. Count: 152, Neg. LLF: 104.75654372890554
Iteration: 14, Func. Count: 164, Neg. LLF: 104.6288784918844
Iteration: 15, Func. Count: 175, Neg. LLF: 104.56673924191035
Iteration: 16, Func. Count: 186, Neg. LLF: 104.56278974144742
Iteration: 17, Func. Count: 197, Neg. LLF: 104.56122767026277
Iteration: 18, Func. Count: 208, Neg. LLF: 104.55992166485183
Iteration: 19, Func. Count: 219, Neg. LLF: 104.55913037836336
Iteration: 20, Func. Count: 230, Neg. LLF: 104.55675532777184
Iteration: 21, Func. Count: 241, Neg. LLF: 104.55457469636728
Iteration: 22, Func. Count: 252, Neg. LLF: 104.55302480118468
Iteration: 23, Func. Count: 263, Neg. LLF: 104.55265984205785
Iteration: 24, Func. Count: 274, Neg. LLF: 104.55258383060993
Iteration: 25, Func. Count: 285, Neg. LLF: 104.55254099065854
Iteration: 26, Func. Count: 296, Neg. LLF: 104.55253657454531
Iteration: 27, Func. Count: 306, Neg. LLF: 104.55253660587195
Optimization terminated successfully (Exit mode 0)
Current function value: 104.55253657454531
Iterations: 27
Function evaluations: 306
Gradient evaluations: 27
Iteration: 1, Func. Count: 13, Neg. LLF: 111.46566355817626
Iteration: 2, Func. Count: 26, Neg. LLF: 114.72316056088798
Iteration: 3, Func. Count: 41, Neg. LLF: 119.76133790372424
Iteration: 4, Func. Count: 54, Neg. LLF: 4252846.549936116
Iteration: 5, Func. Count: 67, Neg. LLF: 221.04695763845353
Iteration: 6, Func. Count: 80, Neg. LLF: 173.9078543261037
Iteration: 7, Func. Count: 93, Neg. LLF: 147.27468916629095
Iteration: 8, Func. Count: 106, Neg. LLF: 113.25061301066812
Iteration: 9, Func. Count: 119, Neg. LLF: 112.10221255239843
Iteration: 10, Func. Count: 132, Neg. LLF: 105.02359646692959
Iteration: 11, Func. Count: 145, Neg. LLF: 107.20423225328118
Iteration: 12, Func. Count: 158, Neg. LLF: 105.4219532035532
Iteration: 13, Func. Count: 171, Neg. LLF: 104.61272602710832
Iteration: 14, Func. Count: 183, Neg. LLF: 104.62205845340944
Iteration: 15, Func. Count: 196, Neg. LLF: 104.58112174963757
Iteration: 16, Func. Count: 208, Neg. LLF: 104.57150619012182
Iteration: 17, Func. Count: 220, Neg. LLF: 104.56996150500541
Iteration: 18, Func. Count: 232, Neg. LLF: 104.56977616133906
Iteration: 19, Func. Count: 244, Neg. LLF: 104.56975948678691
Iteration: 20, Func. Count: 256, Neg. LLF: 104.5697579491333
Iteration: 21, Func. Count: 267, Neg. LLF: 104.56975790362844
Optimization terminated successfully (Exit mode 0)
Current function value: 104.5697579491333
Iterations: 21
Function evaluations: 267
Gradient evaluations: 21
Iteration: 1, Func. Count: 14, Neg. LLF: 15042824.891648266
Iteration: 2, Func. Count: 28, Neg. LLF: 111.60640765054674
Iteration: 3, Func. Count: 42, Neg. LLF: 131.67845361890042
Iteration: 4, Func. Count: 56, Neg. LLF: 194.50606882800906
Iteration: 5, Func. Count: 72, Neg. LLF: 2483352.184260769
Iteration: 6, Func. Count: 86, Neg. LLF: 261.60472851105413
Iteration: 7, Func. Count: 100, Neg. LLF: 122.08087098383254
Iteration: 8, Func. Count: 114, Neg. LLF: 105.41778569651368
Iteration: 9, Func. Count: 128, Neg. LLF: 120.4365865890122
Iteration: 10, Func. Count: 142, Neg. LLF: 102.05622200974236
Iteration: 11, Func. Count: 155, Neg. LLF: 105.02334038554609
Iteration: 12, Func. Count: 169, Neg. LLF: 107.10036230577431
Iteration: 13, Func. Count: 184, Neg. LLF: 101.6302821787216
Iteration: 14, Func. Count: 197, Neg. LLF: 101.62083867027206
Iteration: 15, Func. Count: 210, Neg. LLF: 101.61588489513485
Iteration: 16, Func. Count: 223, Neg. LLF: 101.61384852814587
Iteration: 17, Func. Count: 236, Neg. LLF: 101.61339962812211
Iteration: 18, Func. Count: 249, Neg. LLF: 101.61318308942353
Iteration: 19, Func. Count: 262, Neg. LLF: 101.61302996358407
Iteration: 20, Func. Count: 275, Neg. LLF: 101.61293944669106
Iteration: 21, Func. Count: 288, Neg. LLF: 101.612921843826
Iteration: 22, Func. Count: 301, Neg. LLF: 101.61292045372693
Iteration: 23, Func. Count: 313, Neg. LLF: 101.61292038023207
Optimization terminated successfully (Exit mode 0)
Current function value: 101.61292045372693
Iterations: 23
Function evaluations: 313
Gradient evaluations: 23
Iteration: 1, Func. Count: 15, Neg. LLF: 19493126.140470017
Iteration: 2, Func. Count: 30, Neg. LLF: 133.15400640650358
Iteration: 3, Func. Count: 45, Neg. LLF: 162.35189046861217
Iteration: 4, Func. Count: 60, Neg. LLF: 346159.2197873409
Iteration: 5, Func. Count: 75, Neg. LLF: 125.0235875413236
Iteration: 6, Func. Count: 90, Neg. LLF: 107.88738808097287
Iteration: 7, Func. Count: 105, Neg. LLF: 137.40229984414418
Iteration: 8, Func. Count: 120, Neg. LLF: 103.45057903799395
Iteration: 9, Func. Count: 135, Neg. LLF: 146.87510055622454
Iteration: 10, Func. Count: 150, Neg. LLF: 103.9372714486842
Iteration: 11, Func. Count: 165, Neg. LLF: 101.74248414999207
Iteration: 12, Func. Count: 179, Neg. LLF: 102.31173854686237
Iteration: 13, Func. Count: 194, Neg. LLF: 105.69416429649945
Iteration: 14, Func. Count: 210, Neg. LLF: 101.41288203578249
Iteration: 15, Func. Count: 224, Neg. LLF: 101.38138447448027
Iteration: 16, Func. Count: 238, Neg. LLF: 101.3750889756183
Iteration: 17, Func. Count: 252, Neg. LLF: 101.36975710349132
Iteration: 18, Func. Count: 266, Neg. LLF: 101.3680932932022
Iteration: 19, Func. Count: 280, Neg. LLF: 101.36737539432168
Iteration: 20, Func. Count: 294, Neg. LLF: 101.36734332470992
Iteration: 21, Func. Count: 308, Neg. LLF: 101.36733832534404
Iteration: 22, Func. Count: 322, Neg. LLF: 101.36733755250606
Optimization terminated successfully (Exit mode 0)
Current function value: 101.36733755250606
Iterations: 22
Function evaluations: 322
Gradient evaluations: 22
Iteration: 1, Func. Count: 8, Neg. LLF: 118.95287771430431
Iteration: 2, Func. Count: 16, Neg. LLF: 124.31195849421458
Iteration: 3, Func. Count: 24, Neg. LLF: 144.1259777818808
Iteration: 4, Func. Count: 32, Neg. LLF: 608.0862339403617
Iteration: 5, Func. Count: 40, Neg. LLF: 10730.494648586593
Iteration: 6, Func. Count: 48, Neg. LLF: 157.22924485588567
Iteration: 7, Func. Count: 56, Neg. LLF: 287.8564056041091
Iteration: 8, Func. Count: 64, Neg. LLF: 147.20100220223685
Iteration: 9, Func. Count: 72, Neg. LLF: 166.6728227974723
Iteration: 10, Func. Count: 80, Neg. LLF: 111.38282962210056
Iteration: 11, Func. Count: 88, Neg. LLF: 116.74444882150645
Iteration: 12, Func. Count: 96, Neg. LLF: 109.4995344494612
Iteration: 13, Func. Count: 104, Neg. LLF: 108.75595621620063
Iteration: 14, Func. Count: 111, Neg. LLF: 108.83539899489688
Iteration: 15, Func. Count: 119, Neg. LLF: 108.81378799127573
Iteration: 16, Func. Count: 127, Neg. LLF: 108.63658398583537
Iteration: 17, Func. Count: 134, Neg. LLF: 108.63550052758117
Iteration: 18, Func. Count: 141, Neg. LLF: 108.63545690220293
Iteration: 19, Func. Count: 148, Neg. LLF: 108.63545229368172
Iteration: 20, Func. Count: 154, Neg. LLF: 108.63545227329422
Optimization terminated successfully (Exit mode 0)
Current function value: 108.63545229368172
Iterations: 20
Function evaluations: 154
Gradient evaluations: 20
Iteration: 1, Func. Count: 9, Neg. LLF: 124.66772470001764
Iteration: 2, Func. Count: 20, Neg. LLF: 120.961500847538
Iteration: 3, Func. Count: 30, Neg. LLF: 115.45131330594722
Iteration: 4, Func. Count: 39, Neg. LLF: 113.45106825164517
Iteration: 5, Func. Count: 47, Neg. LLF: 113.9424224452113
Iteration: 6, Func. Count: 56, Neg. LLF: 113.2030686669151
Iteration: 7, Func. Count: 64, Neg. LLF: 113.11820753410422
Iteration: 8, Func. Count: 72, Neg. LLF: 113.10793804744219
Iteration: 9, Func. Count: 80, Neg. LLF: 113.10771048006349
Iteration: 10, Func. Count: 88, Neg. LLF: 113.1076917913051
Iteration: 11, Func. Count: 96, Neg. LLF: 113.10768291054599
Iteration: 12, Func. Count: 103, Neg. LLF: 113.1076829136682
Optimization terminated successfully (Exit mode 0)
Current function value: 113.10768291054599
Iterations: 12
Function evaluations: 103
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 25966498.755670283
Iteration: 2, Func. Count: 21, Neg. LLF: 112.23527963336637
Iteration: 3, Func. Count: 30, Neg. LLF: 112.07985876877173
Iteration: 4, Func. Count: 40, Neg. LLF: 116.97146242043465
Iteration: 5, Func. Count: 50, Neg. LLF: 111.13346284569242
Iteration: 6, Func. Count: 60, Neg. LLF: 111.06280691512792
Iteration: 7, Func. Count: 69, Neg. LLF: 111.05990637352463
Iteration: 8, Func. Count: 78, Neg. LLF: 111.05825506569931
Iteration: 9, Func. Count: 87, Neg. LLF: 111.05340486560053
Iteration: 10, Func. Count: 96, Neg. LLF: 111.02324453630382
Iteration: 11, Func. Count: 105, Neg. LLF: 111.01733994068138
Iteration: 12, Func. Count: 114, Neg. LLF: 114.40820386285628
Iteration: 13, Func. Count: 125, Neg. LLF: 25893691.385517135
Iteration: 14, Func. Count: 138, Neg. LLF: 111.03256062221588
Iteration: 15, Func. Count: 148, Neg. LLF: 111.0169360144146
Iteration: 16, Func. Count: 157, Neg. LLF: 111.01693406062695
Iteration: 17, Func. Count: 165, Neg. LLF: 111.01693406225306
Optimization terminated successfully (Exit mode 0)
Current function value: 111.01693406062695
Iterations: 18
Function evaluations: 165
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 25957666.042883657
Iteration: 2, Func. Count: 23, Neg. LLF: 112.71358370072495
Iteration: 3, Func. Count: 33, Neg. LLF: 112.06021966417333
Iteration: 4, Func. Count: 43, Neg. LLF: 114.7006002993236
Iteration: 5, Func. Count: 55, Neg. LLF: 111.12615145995986
Iteration: 6, Func. Count: 65, Neg. LLF: 111.11388291139262
Iteration: 7, Func. Count: 75, Neg. LLF: 111.09496868721173
Iteration: 8, Func. Count: 85, Neg. LLF: 111.09416462463675
Iteration: 9, Func. Count: 95, Neg. LLF: 111.09258200084989
Iteration: 10, Func. Count: 105, Neg. LLF: 111.09364935145089
Iteration: 11, Func. Count: 116, Neg. LLF: 111.09615139441644
Iteration: 12, Func. Count: 127, Neg. LLF: 111.07841384636217
Iteration: 13, Func. Count: 137, Neg. LLF: 111.07357466372262
Iteration: 14, Func. Count: 147, Neg. LLF: 111.06465889256322
Iteration: 15, Func. Count: 157, Neg. LLF: 111.0607285926336
Iteration: 16, Func. Count: 167, Neg. LLF: 111.0540215440745
Iteration: 17, Func. Count: 177, Neg. LLF: 111.04989663513688
Iteration: 18, Func. Count: 187, Neg. LLF: 111.03206249852927
Iteration: 19, Func. Count: 197, Neg. LLF: 26247401.90094716
Iteration: 20, Func. Count: 210, Neg. LLF: 111.92992912506227
Iteration: 21, Func. Count: 221, Neg. LLF: 111.01693681872456
Iteration: 22, Func. Count: 231, Neg. LLF: 111.016934096261
Iteration: 23, Func. Count: 240, Neg. LLF: 111.01693410184896
Optimization terminated successfully (Exit mode 0)
Current function value: 111.016934096261
Iterations: 24
Function evaluations: 240
Gradient evaluations: 23
Iteration: 1, Func. Count: 12, Neg. LLF: 25952380.459429022
Iteration: 2, Func. Count: 25, Neg. LLF: 113.4125049139415
Iteration: 3, Func. Count: 37, Neg. LLF: 111.5475765346936
Iteration: 4, Func. Count: 48, Neg. LLF: 112.38675797817899
Iteration: 5, Func. Count: 60, Neg. LLF: 111.43253644180758
Iteration: 6, Func. Count: 74, Neg. LLF: 111.60017818281356
Iteration: 7, Func. Count: 86, Neg. LLF: 111.2259691499738
Iteration: 8, Func. Count: 97, Neg. LLF: 111.22588489465905
Iteration: 9, Func. Count: 108, Neg. LLF: 111.22588004177273
Iteration: 10, Func. Count: 119, Neg. LLF: 111.22587943369524
Optimization terminated successfully (Exit mode 0)
Current function value: 111.22587943369524
Iterations: 10
Function evaluations: 119
Gradient evaluations: 10
Iteration: 1, Func. Count: 9, Neg. LLF: 118.978019176899
Iteration: 2, Func. Count: 18, Neg. LLF: 126.25698817253483
Iteration: 3, Func. Count: 27, Neg. LLF: 141.26431624707095
Iteration: 4, Func. Count: 36, Neg. LLF: 6001.255426719021
Iteration: 5, Func. Count: 45, Neg. LLF: 2122.6615656604704
Iteration: 6, Func. Count: 54, Neg. LLF: 150.63356421168535
Iteration: 7, Func. Count: 63, Neg. LLF: 163.04640913203258
Iteration: 8, Func. Count: 72, Neg. LLF: 156.55937746955547
Iteration: 9, Func. Count: 81, Neg. LLF: 144.97510144213592
Iteration: 10, Func. Count: 90, Neg. LLF: 132.00963822324354
Iteration: 11, Func. Count: 100, Neg. LLF: 115.66605294347139
Iteration: 12, Func. Count: 109, Neg. LLF: 120.22769513985932
Iteration: 13, Func. Count: 118, Neg. LLF: 112.9535224031531
Iteration: 14, Func. Count: 127, Neg. LLF: 108.89715985142102
Iteration: 15, Func. Count: 135, Neg. LLF: 108.74110720975922
Iteration: 16, Func. Count: 144, Neg. LLF: 109.20855702271126
Iteration: 17, Func. Count: 153, Neg. LLF: 108.59769604942622
Iteration: 18, Func. Count: 161, Neg. LLF: 108.5819152527242
Iteration: 19, Func. Count: 169, Neg. LLF: 108.58040255590119
Iteration: 20, Func. Count: 177, Neg. LLF: 108.58020269858261
Iteration: 21, Func. Count: 185, Neg. LLF: 108.58003807615697
Iteration: 22, Func. Count: 193, Neg. LLF: 108.57998807500665
Iteration: 23, Func. Count: 201, Neg. LLF: 108.57998006214069
Iteration: 24, Func. Count: 208, Neg. LLF: 108.57998004638571
Optimization terminated successfully (Exit mode 0)
Current function value: 108.57998006214069
Iterations: 24
Function evaluations: 208
Gradient evaluations: 24
Iteration: 1, Func. Count: 10, Neg. LLF: 32104227.042303674
Iteration: 2, Func. Count: 22, Neg. LLF: 142.51165233623308
Iteration: 3, Func. Count: 33, Neg. LLF: 111.20860184671018
Iteration: 4, Func. Count: 42, Neg. LLF: 111.1252819747358
Iteration: 5, Func. Count: 51, Neg. LLF: 111.05636395449315
Iteration: 6, Func. Count: 60, Neg. LLF: 111.17089767293281
Iteration: 7, Func. Count: 70, Neg. LLF: 111.02843143464023
Iteration: 8, Func. Count: 79, Neg. LLF: 111.01846861289435
Iteration: 9, Func. Count: 88, Neg. LLF: 111.01838703857524
Iteration: 10, Func. Count: 98, Neg. LLF: 111.01693446450746
Iteration: 11, Func. Count: 107, Neg. LLF: 114.40987345568894
Optimization terminated successfully (Exit mode 0)
Current function value: 111.01693437381702
Iterations: 12
Function evaluations: 111
Gradient evaluations: 11
Iteration: 1, Func. Count: 11, Neg. LLF: 36321713.55720525
Iteration: 2, Func. Count: 24, Neg. LLF: 207.43033685636752
Iteration: 3, Func. Count: 36, Neg. LLF: 111.06843909749017
Iteration: 4, Func. Count: 46, Neg. LLF: 111.10850163961632
Iteration: 5, Func. Count: 57, Neg. LLF: 111.05724887687562
Iteration: 6, Func. Count: 67, Neg. LLF: 111.0569773671268
Iteration: 7, Func. Count: 77, Neg. LLF: 111.05457300476775
Iteration: 8, Func. Count: 87, Neg. LLF: 111.04741179826333
Iteration: 9, Func. Count: 97, Neg. LLF: 111.02342322225752
Iteration: 10, Func. Count: 107, Neg. LLF: 26956213.704618696
Iteration: 11, Func. Count: 121, Neg. LLF: 112.83026134122511
Iteration: 12, Func. Count: 133, Neg. LLF: 111.01693714089203
Iteration: 13, Func. Count: 143, Neg. LLF: 111.0169342407849
Iteration: 14, Func. Count: 152, Neg. LLF: 111.01693424370013
Optimization terminated successfully (Exit mode 0)
Current function value: 111.0169342407849
Iterations: 15
Function evaluations: 152
Gradient evaluations: 14
Iteration: 1, Func. Count: 12, Neg. LLF: 37831794.19533781
Iteration: 2, Func. Count: 25, Neg. LLF: 248.78629806204617
Iteration: 3, Func. Count: 38, Neg. LLF: 107.98296236179787
Iteration: 4, Func. Count: 49, Neg. LLF: 107.53908421273897
Iteration: 5, Func. Count: 60, Neg. LLF: 146.32805290935696
Iteration: 6, Func. Count: 73, Neg. LLF: 107.26139909690703
Iteration: 7, Func. Count: 84, Neg. LLF: 107.23697557290555
Iteration: 8, Func. Count: 95, Neg. LLF: 108.66575937717387
Iteration: 9, Func. Count: 108, Neg. LLF: 115.96496273550483
Iteration: 10, Func. Count: 121, Neg. LLF: 107.1762228390881
Iteration: 11, Func. Count: 132, Neg. LLF: 107.17350116947915
Iteration: 12, Func. Count: 143, Neg. LLF: 107.17315629462998
Iteration: 13, Func. Count: 154, Neg. LLF: 107.173151234903
Iteration: 14, Func. Count: 164, Neg. LLF: 107.17315104977293
Optimization terminated successfully (Exit mode 0)
Current function value: 107.173151234903
Iterations: 14
Function evaluations: 164
Gradient evaluations: 14
Iteration: 1, Func. Count: 13, Neg. LLF: 122.16740848110832
Iteration: 2, Func. Count: 26, Neg. LLF: 114.52883771108158
Iteration: 3, Func. Count: 39, Neg. LLF: 114.02858062883757
Iteration: 4, Func. Count: 52, Neg. LLF: 110.06498564244669
Iteration: 5, Func. Count: 64, Neg. LLF: 109.4595944384708
Iteration: 6, Func. Count: 76, Neg. LLF: 180.68146011717295
Iteration: 7, Func. Count: 91, Neg. LLF: 162.61470945784512
Iteration: 8, Func. Count: 105, Neg. LLF: 112.74246174234534
Iteration: 9, Func. Count: 118, Neg. LLF: 107.77275815514894
Iteration: 10, Func. Count: 130, Neg. LLF: 107.22443672586277
Iteration: 11, Func. Count: 142, Neg. LLF: 107.18577391816393
Iteration: 12, Func. Count: 154, Neg. LLF: 107.17369495080925
Iteration: 13, Func. Count: 166, Neg. LLF: 107.17329412538183
Iteration: 14, Func. Count: 178, Neg. LLF: 107.17642833392031
Iteration: 15, Func. Count: 191, Neg. LLF: 107.17316666759177
Iteration: 16, Func. Count: 203, Neg. LLF: 107.17316060677267
Iteration: 17, Func. Count: 215, Neg. LLF: 107.17315152366348
Iteration: 18, Func. Count: 226, Neg. LLF: 107.17315139379456
Optimization terminated successfully (Exit mode 0)
Current function value: 107.17315152366348
Iterations: 18
Function evaluations: 226
Gradient evaluations: 18
Iteration: 1, Func. Count: 10, Neg. LLF: 118.94815674429087
Iteration: 2, Func. Count: 20, Neg. LLF: 124.91957596160415
Iteration: 3, Func. Count: 30, Neg. LLF: 142.90451466021076
Iteration: 4, Func. Count: 40, Neg. LLF: 1615.0650580922074
Iteration: 5, Func. Count: 50, Neg. LLF: 230179.57942435515
Iteration: 6, Func. Count: 60, Neg. LLF: 1688.1623031634188
Iteration: 7, Func. Count: 70, Neg. LLF: 458.84037235007196
Iteration: 8, Func. Count: 80, Neg. LLF: 174.36088161915288
Iteration: 9, Func. Count: 90, Neg. LLF: 135.5248919961035
Iteration: 10, Func. Count: 101, Neg. LLF: 170.47491688826747
Iteration: 11, Func. Count: 111, Neg. LLF: 112.67869792239235
Iteration: 12, Func. Count: 121, Neg. LLF: 109.28384380950367
Iteration: 13, Func. Count: 131, Neg. LLF: 123.43665240119805
Iteration: 14, Func. Count: 141, Neg. LLF: 108.49671890718385
Iteration: 15, Func. Count: 150, Neg. LLF: 108.34967802739513
Iteration: 16, Func. Count: 159, Neg. LLF: 108.33108508807423
Iteration: 17, Func. Count: 168, Neg. LLF: 108.31981232994737
Iteration: 18, Func. Count: 177, Neg. LLF: 108.31619526818349
Iteration: 19, Func. Count: 186, Neg. LLF: 108.31587080943088
Iteration: 20, Func. Count: 195, Neg. LLF: 108.31585795979845
Iteration: 21, Func. Count: 204, Neg. LLF: 108.31585696317525
Optimization terminated successfully (Exit mode 0)
Current function value: 108.31585696317525
Iterations: 21
Function evaluations: 204
Gradient evaluations: 21
Iteration: 1, Func. Count: 11, Neg. LLF: 150.56463088096186
Iteration: 2, Func. Count: 23, Neg. LLF: 122.01675869448529
Iteration: 3, Func. Count: 34, Neg. LLF: 110.922023710675
Iteration: 4, Func. Count: 44, Neg. LLF: 111.04574122396596
Iteration: 5, Func. Count: 55, Neg. LLF: 110.74143106588625
Iteration: 6, Func. Count: 65, Neg. LLF: 110.73022270051328
Iteration: 7, Func. Count: 75, Neg. LLF: 110.73014858987898
Iteration: 8, Func. Count: 85, Neg. LLF: 110.73017049326252
Iteration: 9, Func. Count: 105, Neg. LLF: 110.73020340437652
Iteration: 10, Func. Count: 125, Neg. LLF: 110.73045814057802
Iteration: 11, Func. Count: 139, Neg. LLF: 110.73024652572872
Iteration: 12, Func. Count: 151, Neg. LLF: 110.73022880774825
Iteration: 13, Func. Count: 160, Neg. LLF: 110.73022865484212
Optimization terminated successfully (Exit mode 0)
Current function value: 110.73022880774825
Iterations: 14
Function evaluations: 160
Gradient evaluations: 13
Iteration: 1, Func. Count: 12, Neg. LLF: 33005578.242445547
Iteration: 2, Func. Count: 25, Neg. LLF: 147.53281120530414
Iteration: 3, Func. Count: 38, Neg. LLF: 111.41807913170507
Iteration: 4, Func. Count: 49, Neg. LLF: 110.78434656362421
Iteration: 5, Func. Count: 60, Neg. LLF: 110.77419537044221
Iteration: 6, Func. Count: 71, Neg. LLF: 110.75702583039393
Iteration: 7, Func. Count: 82, Neg. LLF: 111.1474316815853
Iteration: 8, Func. Count: 94, Neg. LLF: 111.20115848286923
Iteration: 9, Func. Count: 106, Neg. LLF: 110.75735969941293
Iteration: 10, Func. Count: 118, Neg. LLF: 110.70583818459926
Iteration: 11, Func. Count: 129, Neg. LLF: 110.70547622171536
Iteration: 12, Func. Count: 140, Neg. LLF: 110.70544826757587
Iteration: 13, Func. Count: 151, Neg. LLF: 110.70543991278399
Iteration: 14, Func. Count: 161, Neg. LLF: 110.7054397866644
Optimization terminated successfully (Exit mode 0)
Current function value: 110.70543991278399
Iterations: 14
Function evaluations: 161
Gradient evaluations: 14
Iteration: 1, Func. Count: 13, Neg. LLF: 39280961.483859725
Iteration: 2, Func. Count: 27, Neg. LLF: 277.9779720084757
Iteration: 3, Func. Count: 41, Neg. LLF: 110.81178663374513
Iteration: 4, Func. Count: 53, Neg. LLF: 110.38006813137113
Iteration: 5, Func. Count: 65, Neg. LLF: 107.64739017063809
Iteration: 6, Func. Count: 77, Neg. LLF: 107.97755287567499
Iteration: 7, Func. Count: 91, Neg. LLF: 107.54761972205151
Iteration: 8, Func. Count: 103, Neg. LLF: 107.42263776474887
Iteration: 9, Func. Count: 115, Neg. LLF: 107.22624605091875
Iteration: 10, Func. Count: 127, Neg. LLF: 127.90275859849326
Iteration: 11, Func. Count: 142, Neg. LLF: 107.15674867261211
Iteration: 12, Func. Count: 154, Neg. LLF: 107.19212866061449
Iteration: 13, Func. Count: 167, Neg. LLF: 176.13492365262644
Iteration: 14, Func. Count: 181, Neg. LLF: 3536.200294519508
Iteration: 15, Func. Count: 195, Neg. LLF: 107.39529855412984
Iteration: 16, Func. Count: 208, Neg. LLF: 107.20602701825204
Iteration: 17, Func. Count: 221, Neg. LLF: 107.17362784438212
Iteration: 18, Func. Count: 233, Neg. LLF: 107.33125635240438
Iteration: 19, Func. Count: 247, Neg. LLF: 107.21718522189722
Iteration: 20, Func. Count: 260, Neg. LLF: 107.17315117218054
Iteration: 21, Func. Count: 271, Neg. LLF: 107.17315098717607
Optimization terminated successfully (Exit mode 0)
Current function value: 107.17315117218054
Iterations: 22
Function evaluations: 271
Gradient evaluations: 21
Iteration: 1, Func. Count: 14, Neg. LLF: 124.97687336850746
Iteration: 2, Func. Count: 28, Neg. LLF: 114.34087361663977
Iteration: 3, Func. Count: 42, Neg. LLF: 114.21860358043902
Iteration: 4, Func. Count: 56, Neg. LLF: 110.54131977230549
Iteration: 5, Func. Count: 69, Neg. LLF: 110.94101485874158
Iteration: 6, Func. Count: 83, Neg. LLF: 110.49102241213532
Iteration: 7, Func. Count: 96, Neg. LLF: 110.49012778940079
Iteration: 8, Func. Count: 109, Neg. LLF: 110.4901157062001
Iteration: 9, Func. Count: 122, Neg. LLF: 110.49011907604685
Iteration: 10, Func. Count: 136, Neg. LLF: 110.49011829696856
Iteration: 11, Func. Count: 149, Neg. LLF: 110.4901166465347
Iteration: 12, Func. Count: 162, Neg. LLF: 110.4903469411928
Optimization terminated successfully (Exit mode 0)
Current function value: 110.49011663496356
Iterations: 13
Function evaluations: 164
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 118.93845165211275
Iteration: 2, Func. Count: 22, Neg. LLF: 117.62753936683563
Iteration: 3, Func. Count: 35, Neg. LLF: 147.37105354764648
Iteration: 4, Func. Count: 46, Neg. LLF: 333.1862422448028
Iteration: 5, Func. Count: 57, Neg. LLF: 2029.5316009345704
Iteration: 6, Func. Count: 68, Neg. LLF: 458.4353144841669
Iteration: 7, Func. Count: 79, Neg. LLF: 289.60486905585316
Iteration: 8, Func. Count: 90, Neg. LLF: 253.59568976256602
Iteration: 9, Func. Count: 101, Neg. LLF: 247.901604937745
Iteration: 10, Func. Count: 112, Neg. LLF: 1549.0965407255976
Iteration: 11, Func. Count: 123, Neg. LLF: 660.3779399542786
Iteration: 12, Func. Count: 134, Neg. LLF: 133.89691278193177
Iteration: 13, Func. Count: 145, Neg. LLF: 111.21143298319666
Iteration: 14, Func. Count: 156, Neg. LLF: 117.30990354987227
Iteration: 15, Func. Count: 167, Neg. LLF: 109.0597403556918
Iteration: 16, Func. Count: 178, Neg. LLF: 109.42122921712706
Iteration: 17, Func. Count: 189, Neg. LLF: 108.2322677260593
Iteration: 18, Func. Count: 199, Neg. LLF: 108.09756465468625
Iteration: 19, Func. Count: 209, Neg. LLF: 108.03250197541476
Iteration: 20, Func. Count: 219, Neg. LLF: 108.01977876957517
Iteration: 21, Func. Count: 229, Neg. LLF: 108.01729316754295
Iteration: 22, Func. Count: 239, Neg. LLF: 108.01667007498678
Iteration: 23, Func. Count: 249, Neg. LLF: 108.01647447095397
Iteration: 24, Func. Count: 259, Neg. LLF: 108.01647104295652
Iteration: 25, Func. Count: 268, Neg. LLF: 108.01647100715
Optimization terminated successfully (Exit mode 0)
Current function value: 108.01647104295652
Iterations: 25
Function evaluations: 268
Gradient evaluations: 25
Iteration: 1, Func. Count: 12, Neg. LLF: 274.67339338949745
Iteration: 2, Func. Count: 25, Neg. LLF: 147.97278879836745
Iteration: 3, Func. Count: 38, Neg. LLF: 117.28997574893954
Iteration: 4, Func. Count: 50, Neg. LLF: 144.9333877009959
Iteration: 5, Func. Count: 62, Neg. LLF: 122.70657473208259
Iteration: 6, Func. Count: 74, Neg. LLF: 128.34036875063998
Iteration: 7, Func. Count: 86, Neg. LLF: 110.94414609220831
Iteration: 8, Func. Count: 97, Neg. LLF: 110.9364048580947
Iteration: 9, Func. Count: 108, Neg. LLF: 110.93150269564588
Iteration: 10, Func. Count: 119, Neg. LLF: 110.93079927822869
Iteration: 11, Func. Count: 130, Neg. LLF: 110.93014173175766
Iteration: 12, Func. Count: 141, Neg. LLF: 110.92998856850126
Iteration: 13, Func. Count: 152, Neg. LLF: 110.9299603972917
Iteration: 14, Func. Count: 163, Neg. LLF: 110.92995909950972
Iteration: 15, Func. Count: 173, Neg. LLF: 110.92995894912289
Optimization terminated successfully (Exit mode 0)
Current function value: 110.92995909950972
Iterations: 15
Function evaluations: 173
Gradient evaluations: 15
Iteration: 1, Func. Count: 13, Neg. LLF: 31125185.13862752
Iteration: 2, Func. Count: 27, Neg. LLF: 190.04235511082513
Iteration: 3, Func. Count: 41, Neg. LLF: 110.81095582133264
Iteration: 4, Func. Count: 53, Neg. LLF: 110.41914373487313
Iteration: 5, Func. Count: 65, Neg. LLF: 110.39266367537023
Iteration: 6, Func. Count: 77, Neg. LLF: 110.39239834740793
Iteration: 7, Func. Count: 89, Neg. LLF: 110.38941653354313
Iteration: 8, Func. Count: 101, Neg. LLF: 110.38974448032309
Iteration: 9, Func. Count: 113, Neg. LLF: 110.38975659308987
Iteration: 10, Func. Count: 126, Neg. LLF: 110.387831518896
Iteration: 11, Func. Count: 138, Neg. LLF: 110.44880674039972
Iteration: 12, Func. Count: 152, Neg. LLF: 110.4025081203516
Iteration: 13, Func. Count: 166, Neg. LLF: 110.38847643093361
Iteration: 14, Func. Count: 177, Neg. LLF: 110.38847624934292
Optimization terminated successfully (Exit mode 0)
Current function value: 110.38847643093361
Iterations: 15
Function evaluations: 177
Gradient evaluations: 14
Iteration: 1, Func. Count: 14, Neg. LLF: 40621185.35050147
Iteration: 2, Func. Count: 29, Neg. LLF: 318.0391714833828
Iteration: 3, Func. Count: 44, Neg. LLF: 112.02501552257047
Iteration: 4, Func. Count: 58, Neg. LLF: 110.81832663569726
Iteration: 5, Func. Count: 71, Neg. LLF: 110.64990801220243
Iteration: 6, Func. Count: 84, Neg. LLF: 110.43977420306041
Iteration: 7, Func. Count: 97, Neg. LLF: 107.91572321197577
Iteration: 8, Func. Count: 110, Neg. LLF: 107.56969739813182
Iteration: 9, Func. Count: 123, Neg. LLF: 130.4219762975199
Iteration: 10, Func. Count: 137, Neg. LLF: 107.42905931785143
Iteration: 11, Func. Count: 151, Neg. LLF: 135.60403517096657
Iteration: 12, Func. Count: 166, Neg. LLF: 107.07571253721675
Iteration: 13, Func. Count: 179, Neg. LLF: 107.15820699427763
Iteration: 14, Func. Count: 193, Neg. LLF: 107.07641673192155
Iteration: 15, Func. Count: 207, Neg. LLF: 107.05007650463293
Iteration: 16, Func. Count: 220, Neg. LLF: 107.0494265571378
Iteration: 17, Func. Count: 233, Neg. LLF: 107.0493173982643
Iteration: 18, Func. Count: 246, Neg. LLF: 107.04917006039122
Iteration: 19, Func. Count: 259, Neg. LLF: 107.04891245757494
Iteration: 20, Func. Count: 272, Neg. LLF: 107.04897525533312
Iteration: 21, Func. Count: 285, Neg. LLF: 107.16456124299715
Iteration: 22, Func. Count: 301, Neg. LLF: 107.05759627856558
Iteration: 23, Func. Count: 317, Neg. LLF: 107.14825404019886
Iteration: 24, Func. Count: 333, Neg. LLF: 107.05975812048285
Iteration: 25, Func. Count: 349, Neg. LLF: 107.04902349058327
Iteration: 26, Func. Count: 361, Neg. LLF: 107.04902332684561
Optimization terminated successfully (Exit mode 0)
Current function value: 107.04902349058327
Iterations: 27
Function evaluations: 361
Gradient evaluations: 26
Iteration: 1, Func. Count: 15, Neg. LLF: 128.5533942685069
Iteration: 2, Func. Count: 30, Neg. LLF: 114.38935929980764
Iteration: 3, Func. Count: 45, Neg. LLF: 110.41075592607667
Iteration: 4, Func. Count: 59, Neg. LLF: 108.10121806437586
Iteration: 5, Func. Count: 73, Neg. LLF: 223844.14832423403
Iteration: 6, Func. Count: 89, Neg. LLF: 398.8011493533964
Iteration: 7, Func. Count: 105, Neg. LLF: 107.64925734482111
Iteration: 8, Func. Count: 119, Neg. LLF: 107.52871038945034
Iteration: 9, Func. Count: 133, Neg. LLF: 107.5020079628062
Iteration: 10, Func. Count: 147, Neg. LLF: 107.49821424611402
Iteration: 11, Func. Count: 161, Neg. LLF: 107.48934067235797
Iteration: 12, Func. Count: 175, Neg. LLF: 107.48747000507868
Iteration: 13, Func. Count: 189, Neg. LLF: 107.4829280916865
Iteration: 14, Func. Count: 203, Neg. LLF: 108.55434498586912
Iteration: 15, Func. Count: 220, Neg. LLF: 107.60131905341356
Iteration: 16, Func. Count: 237, Neg. LLF: 107.62739403964707
Iteration: 17, Func. Count: 253, Neg. LLF: 107.48564565019848
Iteration: 18, Func. Count: 268, Neg. LLF: 107.48557905892439
Iteration: 19, Func. Count: 283, Neg. LLF: 107.48557778249952
Iteration: 20, Func. Count: 298, Neg. LLF: 107.48561163156135
Iteration: 21, Func. Count: 314, Neg. LLF: 107.48557774276968
Iteration: 22, Func. Count: 327, Neg. LLF: 107.48557747923341
Optimization terminated successfully (Exit mode 0)
Current function value: 107.48557774276968
Iterations: 23
Function evaluations: 327
Gradient evaluations: 22
Iteration: 1, Func. Count: 12, Neg. LLF: 117.7812147153482
Iteration: 2, Func. Count: 24, Neg. LLF: 256.48753234580084
Iteration: 3, Func. Count: 36, Neg. LLF: 117.73764994313603
Iteration: 4, Func. Count: 48, Neg. LLF: 308731.474249115
Iteration: 5, Func. Count: 60, Neg. LLF: 3096070.079200879
Iteration: 6, Func. Count: 72, Neg. LLF: 2860079.7545602666
Iteration: 7, Func. Count: 84, Neg. LLF: 10581.811899198203
Iteration: 8, Func. Count: 96, Neg. LLF: 7971.743635020417
Iteration: 9, Func. Count: 108, Neg. LLF: 533.8360796043263
Iteration: 10, Func. Count: 120, Neg. LLF: 112.72721342201632
Iteration: 11, Func. Count: 132, Neg. LLF: 163.78482129392543
Iteration: 12, Func. Count: 144, Neg. LLF: 104.82003743491009
Iteration: 13, Func. Count: 156, Neg. LLF: 106.41571283118411
Iteration: 14, Func. Count: 168, Neg. LLF: 104.21204280674192
Iteration: 15, Func. Count: 179, Neg. LLF: 115.23628156410032
Iteration: 16, Func. Count: 192, Neg. LLF: 104.12233662505605
Iteration: 17, Func. Count: 203, Neg. LLF: 104.43367080911813
Iteration: 18, Func. Count: 215, Neg. LLF: 104.02104956201124
Iteration: 19, Func. Count: 226, Neg. LLF: 103.84140308336687
Iteration: 20, Func. Count: 237, Neg. LLF: 103.74016615070708
Iteration: 21, Func. Count: 248, Neg. LLF: 103.70781791248888
Iteration: 22, Func. Count: 259, Neg. LLF: 103.68995189864273
Iteration: 23, Func. Count: 270, Neg. LLF: 103.68800947921476
Iteration: 24, Func. Count: 281, Neg. LLF: 103.6879729509105
Iteration: 25, Func. Count: 292, Neg. LLF: 103.68797142960285
Iteration: 26, Func. Count: 302, Neg. LLF: 103.68797139946113
Optimization terminated successfully (Exit mode 0)
Current function value: 103.68797142960285
Iterations: 26
Function evaluations: 302
Gradient evaluations: 26
Iteration: 1, Func. Count: 13, Neg. LLF: 9356843.653394474
Iteration: 2, Func. Count: 26, Neg. LLF: 114.32072965846187
Iteration: 3, Func. Count: 39, Neg. LLF: 122.04781890275308
Iteration: 4, Func. Count: 52, Neg. LLF: 3370681.849842514
Iteration: 5, Func. Count: 65, Neg. LLF: 185.08785677496388
Iteration: 6, Func. Count: 79, Neg. LLF: 128.8885811647615
Iteration: 7, Func. Count: 93, Neg. LLF: 105.51870978755267
Iteration: 8, Func. Count: 105, Neg. LLF: 104.82778586228395
Iteration: 9, Func. Count: 117, Neg. LLF: 242.66969270990919
Iteration: 10, Func. Count: 132, Neg. LLF: 104.74150627781229
Iteration: 11, Func. Count: 144, Neg. LLF: 104.69457802496926
Iteration: 12, Func. Count: 156, Neg. LLF: 104.63577850074529
Iteration: 13, Func. Count: 168, Neg. LLF: 104.60981367553032
Iteration: 14, Func. Count: 180, Neg. LLF: 104.6017881781261
Iteration: 15, Func. Count: 192, Neg. LLF: 104.59798957890817
Iteration: 16, Func. Count: 204, Neg. LLF: 104.59018917828199
Iteration: 17, Func. Count: 216, Neg. LLF: 104.57766775242301
Iteration: 18, Func. Count: 228, Neg. LLF: 104.56246313710616
Iteration: 19, Func. Count: 240, Neg. LLF: 104.55428520553319
Iteration: 20, Func. Count: 252, Neg. LLF: 104.55263159186111
Iteration: 21, Func. Count: 264, Neg. LLF: 104.55256145465502
Iteration: 22, Func. Count: 276, Neg. LLF: 104.55254375770464
Iteration: 23, Func. Count: 288, Neg. LLF: 104.55254244483046
Iteration: 24, Func. Count: 300, Neg. LLF: 104.55253925457592
Iteration: 25, Func. Count: 312, Neg. LLF: 104.5525375298526
Iteration: 26, Func. Count: 324, Neg. LLF: 104.55253640002478
Iteration: 27, Func. Count: 335, Neg. LLF: 104.55253643144145
Optimization terminated successfully (Exit mode 0)
Current function value: 104.55253640002478
Iterations: 27
Function evaluations: 335
Gradient evaluations: 27
Iteration: 1, Func. Count: 14, Neg. LLF: 110.2608698025791
Iteration: 2, Func. Count: 28, Neg. LLF: 117.6099852726693
Iteration: 3, Func. Count: 44, Neg. LLF: 111.22844651863204
Iteration: 4, Func. Count: 58, Neg. LLF: 419192.69548022887
Iteration: 5, Func. Count: 72, Neg. LLF: 165.94325048669498
Iteration: 6, Func. Count: 86, Neg. LLF: 3661015.765567122
Iteration: 7, Func. Count: 100, Neg. LLF: 144.61419380777025
Iteration: 8, Func. Count: 114, Neg. LLF: 120.60966579271465
Iteration: 9, Func. Count: 128, Neg. LLF: 111.15656712087879
Iteration: 10, Func. Count: 142, Neg. LLF: 105.16821720724624
Iteration: 11, Func. Count: 156, Neg. LLF: 107.67052411695337
Iteration: 12, Func. Count: 170, Neg. LLF: 107.31785953385894
Iteration: 13, Func. Count: 184, Neg. LLF: 107.0396813297525
Iteration: 14, Func. Count: 198, Neg. LLF: 104.95374827070904
Iteration: 15, Func. Count: 212, Neg. LLF: 104.7222230642065
Iteration: 16, Func. Count: 226, Neg. LLF: 104.57269438643641
Iteration: 17, Func. Count: 239, Neg. LLF: 104.57041830566037
Iteration: 18, Func. Count: 252, Neg. LLF: 104.56992078487404
Iteration: 19, Func. Count: 265, Neg. LLF: 104.56980393666058
Iteration: 20, Func. Count: 278, Neg. LLF: 104.56978127555811
Iteration: 21, Func. Count: 291, Neg. LLF: 104.56975980470514
Iteration: 22, Func. Count: 304, Neg. LLF: 104.56975774021126
Iteration: 23, Func. Count: 316, Neg. LLF: 104.56975769467336
Optimization terminated successfully (Exit mode 0)
Current function value: 104.56975774021126
Iterations: 23
Function evaluations: 316
Gradient evaluations: 23
Iteration: 1, Func. Count: 15, Neg. LLF: 12710318.164137522
Iteration: 2, Func. Count: 30, Neg. LLF: 108.0556072237617
Iteration: 3, Func. Count: 45, Neg. LLF: 120.82456484352758
Iteration: 4, Func. Count: 60, Neg. LLF: 191.93790699700392
Iteration: 5, Func. Count: 76, Neg. LLF: 689.3225009124341
Iteration: 6, Func. Count: 91, Neg. LLF: 321.40320827222877
Iteration: 7, Func. Count: 106, Neg. LLF: 106.89248982159195
Iteration: 8, Func. Count: 121, Neg. LLF: 114.29146826404178
Iteration: 9, Func. Count: 136, Neg. LLF: 103.36531780741187
Iteration: 10, Func. Count: 151, Neg. LLF: 104.51737662750283
Iteration: 11, Func. Count: 166, Neg. LLF: 101.8918467076411
Iteration: 12, Func. Count: 180, Neg. LLF: 101.50517950561341
Iteration: 13, Func. Count: 194, Neg. LLF: 101.58521927554915
Iteration: 14, Func. Count: 209, Neg. LLF: 101.42349765952596
Iteration: 15, Func. Count: 223, Neg. LLF: 101.3638976084554
Iteration: 16, Func. Count: 237, Neg. LLF: 101.35478410714579
Iteration: 17, Func. Count: 251, Neg. LLF: 101.3449676673724
Iteration: 18, Func. Count: 265, Neg. LLF: 101.34165692223146
Iteration: 19, Func. Count: 279, Neg. LLF: 101.3412209246102
Iteration: 20, Func. Count: 293, Neg. LLF: 101.34114734968988
Iteration: 21, Func. Count: 307, Neg. LLF: 101.3410885757709
Iteration: 22, Func. Count: 321, Neg. LLF: 101.34106231670135
Iteration: 23, Func. Count: 335, Neg. LLF: 101.34105894747888
Iteration: 24, Func. Count: 348, Neg. LLF: 101.34105884637914
Optimization terminated successfully (Exit mode 0)
Current function value: 101.34105894747888
Iterations: 24
Function evaluations: 348
Gradient evaluations: 24
Iteration: 1, Func. Count: 16, Neg. LLF: 18530061.871940095
Iteration: 2, Func. Count: 32, Neg. LLF: 254.12418267869492
Iteration: 3, Func. Count: 48, Neg. LLF: 248.60826780839471
Iteration: 4, Func. Count: 64, Neg. LLF: 2593018.233948151
Iteration: 5, Func. Count: 80, Neg. LLF: 110.049980775824
Iteration: 6, Func. Count: 96, Neg. LLF: 400.1869131109951
Iteration: 7, Func. Count: 112, Neg. LLF: 114.30774982242212
Iteration: 8, Func. Count: 128, Neg. LLF: 102.99710148996486
Iteration: 9, Func. Count: 144, Neg. LLF: 104.96756867402253
Iteration: 10, Func. Count: 160, Neg. LLF: 102.54286675913923
Iteration: 11, Func. Count: 176, Neg. LLF: 102.25293818375856
Iteration: 12, Func. Count: 192, Neg. LLF: 101.38907825873171
Iteration: 13, Func. Count: 207, Neg. LLF: 101.37803164448647
Iteration: 14, Func. Count: 222, Neg. LLF: 101.3719162207946
Iteration: 15, Func. Count: 237, Neg. LLF: 101.36892303597351
Iteration: 16, Func. Count: 252, Neg. LLF: 101.36758287588327
Iteration: 17, Func. Count: 267, Neg. LLF: 101.36738157961092
Iteration: 18, Func. Count: 282, Neg. LLF: 101.36733961089678
Iteration: 19, Func. Count: 297, Neg. LLF: 101.36733774264705
Iteration: 20, Func. Count: 311, Neg. LLF: 101.36733763863391
Optimization terminated successfully (Exit mode 0)
Current function value: 101.36733774264705
Iterations: 20
Function evaluations: 311
Gradient evaluations: 20
Iteration: 1, Func. Count: 11, Neg. LLF: 16793845.717488017
Iteration: 2, Func. Count: 22, Neg. LLF: 111.43459692823585
Iteration: 3, Func. Count: 33, Neg. LLF: 170.5364477178121
Iteration: 4, Func. Count: 44, Neg. LLF: 104.61580260714099
Iteration: 5, Func. Count: 54, Neg. LLF: 110.73178565464698
Iteration: 6, Func. Count: 65, Neg. LLF: 104.72504904104001
Iteration: 7, Func. Count: 76, Neg. LLF: 104.17879268360447
Iteration: 8, Func. Count: 86, Neg. LLF: 104.14625114213095
Iteration: 9, Func. Count: 96, Neg. LLF: 104.14051641413806
Iteration: 10, Func. Count: 106, Neg. LLF: 104.13993969962078
Iteration: 11, Func. Count: 116, Neg. LLF: 104.13989606266436
Iteration: 12, Func. Count: 126, Neg. LLF: 104.13989416527693
Iteration: 13, Func. Count: 135, Neg. LLF: 104.13989404946723
Optimization terminated successfully (Exit mode 0)
Current function value: 104.13989416527693
Iterations: 13
Function evaluations: 135
Gradient evaluations: 13
Iteration: 1, Func. Count: 5, Neg. LLF: 125.32590421393827
Iteration: 2, Func. Count: 10, Neg. LLF: 145.0307595482444
Iteration: 3, Func. Count: 15, Neg. LLF: 117.38236727105854
Iteration: 4, Func. Count: 19, Neg. LLF: 117.0562916034247
Iteration: 5, Func. Count: 23, Neg. LLF: 117.00956078258875
Iteration: 6, Func. Count: 27, Neg. LLF: 116.99621950175009
Iteration: 7, Func. Count: 31, Neg. LLF: 116.99594845330321
Iteration: 8, Func. Count: 35, Neg. LLF: 116.99594674092208
Iteration: 9, Func. Count: 38, Neg. LLF: 116.99594678150235
Optimization terminated successfully (Exit mode 0)
Current function value: 116.99594674092208
Iterations: 9
Function evaluations: 38
Gradient evaluations: 9
Iteration: 1, Func. Count: 6, Neg. LLF: 137.36415155943877
Iteration: 2, Func. Count: 13, Neg. LLF: 1069.9635307940175
Iteration: 3, Func. Count: 21, Neg. LLF: 115.54636893590141
Iteration: 4, Func. Count: 27, Neg. LLF: 114.77514069528674
Iteration: 5, Func. Count: 32, Neg. LLF: 114.76835469675729
Iteration: 6, Func. Count: 37, Neg. LLF: 114.76794657965604
Iteration: 7, Func. Count: 42, Neg. LLF: 114.76794584749162
Optimization terminated successfully (Exit mode 0)
Current function value: 114.76794584749162
Iterations: 7
Function evaluations: 42
Gradient evaluations: 7
Iteration: 1, Func. Count: 7, Neg. LLF: 34565604.685933664
Iteration: 2, Func. Count: 15, Neg. LLF: 175.40001956613847
Iteration: 3, Func. Count: 23, Neg. LLF: 116.98352926147493
Iteration: 4, Func. Count: 31, Neg. LLF: 114.93180895920099
Iteration: 5, Func. Count: 37, Neg. LLF: 114.78701248650206
Iteration: 6, Func. Count: 43, Neg. LLF: 114.78570729054832
Iteration: 7, Func. Count: 50, Neg. LLF: 114.7707618095506
Iteration: 8, Func. Count: 56, Neg. LLF: 114.7688378641633
Iteration: 9, Func. Count: 62, Neg. LLF: 114.76796187073329
Iteration: 10, Func. Count: 68, Neg. LLF: 114.76794595429432
Iteration: 11, Func. Count: 73, Neg. LLF: 114.76794595629684
Optimization terminated successfully (Exit mode 0)
Current function value: 114.76794595429432
Iterations: 11
Function evaluations: 73
Gradient evaluations: 11
Iteration: 1, Func. Count: 8, Neg. LLF: 147.76407832760177
Iteration: 2, Func. Count: 18, Neg. LLF: 121.66837029122318
Iteration: 3, Func. Count: 26, Neg. LLF: 117.0714691166817
Iteration: 4, Func. Count: 34, Neg. LLF: 114.95822645541381
Iteration: 5, Func. Count: 42, Neg. LLF: 115.59917569724792
Iteration: 6, Func. Count: 50, Neg. LLF: 115.32618024715396
Iteration: 7, Func. Count: 58, Neg. LLF: 114.4585876326574
Iteration: 8, Func. Count: 66, Neg. LLF: 114.62914072029304
Iteration: 9, Func. Count: 74, Neg. LLF: 114.20730963829332
Iteration: 10, Func. Count: 81, Neg. LLF: 114.11939980269558
Iteration: 11, Func. Count: 88, Neg. LLF: 114.09125187958313
Iteration: 12, Func. Count: 95, Neg. LLF: 114.07822987459805
Iteration: 13, Func. Count: 102, Neg. LLF: 114.0710517220206
Iteration: 14, Func. Count: 109, Neg. LLF: 114.0705653997187
Iteration: 15, Func. Count: 116, Neg. LLF: 114.07037335838596
Iteration: 16, Func. Count: 123, Neg. LLF: 114.0703724904242
Optimization terminated successfully (Exit mode 0)
Current function value: 114.0703724904242
Iterations: 16
Function evaluations: 123
Gradient evaluations: 16
Iteration: 1, Func. Count: 9, Neg. LLF: 138.7737072549067
Iteration: 2, Func. Count: 19, Neg. LLF: 137.37889877661743
Iteration: 3, Func. Count: 29, Neg. LLF: 115.07665223923246
Iteration: 4, Func. Count: 37, Neg. LLF: 114.76682721506691
Iteration: 5, Func. Count: 45, Neg. LLF: 128.1448238252871
Iteration: 6, Func. Count: 54, Neg. LLF: 114.35215785230697
Iteration: 7, Func. Count: 63, Neg. LLF: 114.25945431461611
Iteration: 8, Func. Count: 72, Neg. LLF: 114.09822011075809
Iteration: 9, Func. Count: 80, Neg. LLF: 114.07255266137224
Iteration: 10, Func. Count: 88, Neg. LLF: 114.07047609748567
Iteration: 11, Func. Count: 96, Neg. LLF: 114.07041873138648
Iteration: 12, Func. Count: 104, Neg. LLF: 114.07037501920409
Iteration: 13, Func. Count: 112, Neg. LLF: 114.07037275455764
Iteration: 14, Func. Count: 119, Neg. LLF: 114.07037278616984
Optimization terminated successfully (Exit mode 0)
Current function value: 114.07037275455764
Iterations: 14
Function evaluations: 119
Gradient evaluations: 14
Iteration: 1, Func. Count: 6, Neg. LLF: 131.54157447946807
Iteration: 2, Func. Count: 13, Neg. LLF: 145.8720397910456
Iteration: 3, Func. Count: 19, Neg. LLF: 117.00767209259261
Iteration: 4, Func. Count: 24, Neg. LLF: 117.00203212150143
Iteration: 5, Func. Count: 29, Neg. LLF: 116.99610812195841
Iteration: 6, Func. Count: 34, Neg. LLF: 116.9959627711691
Iteration: 7, Func. Count: 39, Neg. LLF: 116.99594704391507
Iteration: 8, Func. Count: 43, Neg. LLF: 116.99594707217254
Optimization terminated successfully (Exit mode 0)
Current function value: 116.99594704391507
Iterations: 8
Function evaluations: 43
Gradient evaluations: 8
Iteration: 1, Func. Count: 7, Neg. LLF: 18071898.270696662
Iteration: 2, Func. Count: 15, Neg. LLF: 143.70698827325904
Iteration: 3, Func. Count: 23, Neg. LLF: 118.44443197200218
Iteration: 4, Func. Count: 30, Neg. LLF: 114.03724498976432
Iteration: 5, Func. Count: 36, Neg. LLF: 114.03677211780618
Iteration: 6, Func. Count: 42, Neg. LLF: 114.03663064471472
Iteration: 7, Func. Count: 48, Neg. LLF: 114.03662942761326
Iteration: 8, Func. Count: 53, Neg. LLF: 114.03662930035301
Optimization terminated successfully (Exit mode 0)
Current function value: 114.03662942761326
Iterations: 8
Function evaluations: 53
Gradient evaluations: 8
Iteration: 1, Func. Count: 8, Neg. LLF: 160.37073071573985
Iteration: 2, Func. Count: 18, Neg. LLF: 142.16590187364832
Iteration: 3, Func. Count: 26, Neg. LLF: 119.65761836441098
Iteration: 4, Func. Count: 34, Neg. LLF: 113.99232407353738
Iteration: 5, Func. Count: 41, Neg. LLF: 114.05225189027475
Iteration: 6, Func. Count: 49, Neg. LLF: 113.8435607187366
Iteration: 7, Func. Count: 56, Neg. LLF: 113.82857260539302
Iteration: 8, Func. Count: 63, Neg. LLF: 113.82788357811897
Iteration: 9, Func. Count: 70, Neg. LLF: 113.82772571219263
Iteration: 10, Func. Count: 77, Neg. LLF: 113.82771359962824
Iteration: 11, Func. Count: 84, Neg. LLF: 113.82770912547221
Iteration: 12, Func. Count: 90, Neg. LLF: 113.82770902507315
Optimization terminated successfully (Exit mode 0)
Current function value: 113.82770912547221
Iterations: 12
Function evaluations: 90
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 120.69216488793022
Iteration: 2, Func. Count: 20, Neg. LLF: 172.25491962357668
Iteration: 3, Func. Count: 30, Neg. LLF: 116.95851435105631
Iteration: 4, Func. Count: 39, Neg. LLF: 114.62310772718038
Iteration: 5, Func. Count: 48, Neg. LLF: 114.22240242470079
Iteration: 6, Func. Count: 57, Neg. LLF: 113.96596167550919
Iteration: 7, Func. Count: 66, Neg. LLF: 113.42287902070768
Iteration: 8, Func. Count: 74, Neg. LLF: 113.35505372795184
Iteration: 9, Func. Count: 82, Neg. LLF: 113.34587164734876
Iteration: 10, Func. Count: 90, Neg. LLF: 113.34226469580946
Iteration: 11, Func. Count: 98, Neg. LLF: 113.34105499625642
Iteration: 12, Func. Count: 106, Neg. LLF: 113.34091347586367
Iteration: 13, Func. Count: 114, Neg. LLF: 113.34087013199346
Iteration: 14, Func. Count: 122, Neg. LLF: 113.34085545754631
Iteration: 15, Func. Count: 130, Neg. LLF: 113.34085260625628
Iteration: 16, Func. Count: 137, Neg. LLF: 113.34085249067526
Optimization terminated successfully (Exit mode 0)
Current function value: 113.34085260625628
Iterations: 16
Function evaluations: 137
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 177.22346887836176
Iteration: 2, Func. Count: 21, Neg. LLF: 129.74271500143692
Iteration: 3, Func. Count: 31, Neg. LLF: 115.0461906141972
Iteration: 4, Func. Count: 41, Neg. LLF: 114.70944008470626
Iteration: 5, Func. Count: 51, Neg. LLF: 114.53666031286534
Iteration: 6, Func. Count: 61, Neg. LLF: 113.4117014358088
Iteration: 7, Func. Count: 70, Neg. LLF: 113.35468186064058
Iteration: 8, Func. Count: 79, Neg. LLF: 113.34211656935493
Iteration: 9, Func. Count: 88, Neg. LLF: 113.34107382364971
Iteration: 10, Func. Count: 97, Neg. LLF: 113.34085906374182
Iteration: 11, Func. Count: 106, Neg. LLF: 113.34085300013035
Iteration: 12, Func. Count: 115, Neg. LLF: 113.34085245544604
Optimization terminated successfully (Exit mode 0)
Current function value: 113.34085245544604
Iterations: 12
Function evaluations: 115
Gradient evaluations: 12
Iteration: 1, Func. Count: 7, Neg. LLF: 131.17314227313736
Iteration: 2, Func. Count: 14, Neg. LLF: 150.31454159862906
Iteration: 3, Func. Count: 21, Neg. LLF: 117.44313710963229
Iteration: 4, Func. Count: 27, Neg. LLF: 117.23425667034472
Iteration: 5, Func. Count: 33, Neg. LLF: 117.08187687886365
Iteration: 6, Func. Count: 39, Neg. LLF: 117.00296641279482
Iteration: 7, Func. Count: 45, Neg. LLF: 116.99611192735073
Iteration: 8, Func. Count: 51, Neg. LLF: 116.99594712716689
Iteration: 9, Func. Count: 56, Neg. LLF: 116.9959471702099
Optimization terminated successfully (Exit mode 0)
Current function value: 116.99594712716689
Iterations: 9
Function evaluations: 56
Gradient evaluations: 9
Iteration: 1, Func. Count: 8, Neg. LLF: 14503429.732097466
Iteration: 2, Func. Count: 17, Neg. LLF: 151.81082953467003
Iteration: 3, Func. Count: 26, Neg. LLF: 116.54290029272703
Iteration: 4, Func. Count: 34, Neg. LLF: 113.78497315001586
Iteration: 5, Func. Count: 41, Neg. LLF: 113.7843327193759
Iteration: 6, Func. Count: 48, Neg. LLF: 113.78422702645074
Iteration: 7, Func. Count: 55, Neg. LLF: 113.78422224706928
Iteration: 8, Func. Count: 62, Neg. LLF: 113.78421973974513
Iteration: 9, Func. Count: 68, Neg. LLF: 113.7842196313898
Optimization terminated successfully (Exit mode 0)
Current function value: 113.78421973974513
Iterations: 9
Function evaluations: 68
Gradient evaluations: 9
Iteration: 1, Func. Count: 9, Neg. LLF: 160.326364803483
Iteration: 2, Func. Count: 20, Neg. LLF: 155.85190842311715
Iteration: 3, Func. Count: 30, Neg. LLF: 126.34394710789752
Iteration: 4, Func. Count: 39, Neg. LLF: 113.94343816274527
Iteration: 5, Func. Count: 47, Neg. LLF: 114.03169742632353
Iteration: 6, Func. Count: 56, Neg. LLF: 113.87216183193641
Iteration: 7, Func. Count: 64, Neg. LLF: 113.84214704783099
Iteration: 8, Func. Count: 72, Neg. LLF: 113.8310481620676
Iteration: 9, Func. Count: 80, Neg. LLF: 113.82882753723621
Iteration: 10, Func. Count: 88, Neg. LLF: 113.8278457939815
Iteration: 11, Func. Count: 96, Neg. LLF: 113.82771623857926
Iteration: 12, Func. Count: 104, Neg. LLF: 113.82770988049894
Iteration: 13, Func. Count: 112, Neg. LLF: 113.82770912390451
Optimization terminated successfully (Exit mode 0)
Current function value: 113.82770912390451
Iterations: 13
Function evaluations: 112
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 118.14382617417384
Iteration: 2, Func. Count: 22, Neg. LLF: 210.7680534808829
Iteration: 3, Func. Count: 33, Neg. LLF: 117.52715831117244
Iteration: 4, Func. Count: 43, Neg. LLF: 114.35964018507039
Iteration: 5, Func. Count: 52, Neg. LLF: 114.02896468257018
Iteration: 6, Func. Count: 61, Neg. LLF: 113.93304143655148
Iteration: 7, Func. Count: 70, Neg. LLF: 114.03211230743848
Iteration: 8, Func. Count: 80, Neg. LLF: 114.0736249050213
Iteration: 9, Func. Count: 90, Neg. LLF: 113.82070163391046
Iteration: 10, Func. Count: 100, Neg. LLF: 113.6787631086469
Iteration: 11, Func. Count: 109, Neg. LLF: 113.84518166439311
Iteration: 12, Func. Count: 119, Neg. LLF: 113.52832169972335
Iteration: 13, Func. Count: 128, Neg. LLF: 113.34675903003344
Iteration: 14, Func. Count: 137, Neg. LLF: 113.34310069023789
Iteration: 15, Func. Count: 146, Neg. LLF: 113.3412173422027
Iteration: 16, Func. Count: 155, Neg. LLF: 113.34096150341456
Iteration: 17, Func. Count: 164, Neg. LLF: 113.34087547530213
Iteration: 18, Func. Count: 173, Neg. LLF: 113.34085453942407
Iteration: 19, Func. Count: 182, Neg. LLF: 113.34085250428359
Iteration: 20, Func. Count: 190, Neg. LLF: 113.34085238859393
Optimization terminated successfully (Exit mode 0)
Current function value: 113.34085250428359
Iterations: 20
Function evaluations: 190
Gradient evaluations: 20
Iteration: 1, Func. Count: 11, Neg. LLF: 2882.127149200271
Iteration: 2, Func. Count: 23, Neg. LLF: 131.8112646897261
Iteration: 3, Func. Count: 34, Neg. LLF: 115.12574741291706
Iteration: 4, Func. Count: 45, Neg. LLF: 113.97012752345036
Iteration: 5, Func. Count: 55, Neg. LLF: 115.41154977185222
Iteration: 6, Func. Count: 66, Neg. LLF: 113.79819123531713
Iteration: 7, Func. Count: 76, Neg. LLF: 113.78458202862507
Iteration: 8, Func. Count: 86, Neg. LLF: 113.78424894516252
Iteration: 9, Func. Count: 96, Neg. LLF: 113.78422542065701
Iteration: 10, Func. Count: 106, Neg. LLF: 113.78422105294383
Iteration: 11, Func. Count: 116, Neg. LLF: 113.78421973738374
Iteration: 12, Func. Count: 125, Neg. LLF: 113.78421966833082
Optimization terminated successfully (Exit mode 0)
Current function value: 113.78421973738374
Iterations: 12
Function evaluations: 125
Gradient evaluations: 12
Iteration: 1, Func. Count: 8, Neg. LLF: 135.0015045376462
Iteration: 2, Func. Count: 17, Neg. LLF: 662.5488829916424
Iteration: 3, Func. Count: 25, Neg. LLF: 116.30506918518017
Iteration: 4, Func. Count: 33, Neg. LLF: 113.51991011011428
Iteration: 5, Func. Count: 40, Neg. LLF: 113.32925815487617
Iteration: 6, Func. Count: 47, Neg. LLF: 113.28013704093341
Iteration: 7, Func. Count: 54, Neg. LLF: 113.22834612105761
Iteration: 8, Func. Count: 61, Neg. LLF: 113.20328349275084
Iteration: 9, Func. Count: 68, Neg. LLF: 113.18272781616618
Iteration: 10, Func. Count: 75, Neg. LLF: 113.18177383347145
Iteration: 11, Func. Count: 82, Neg. LLF: 113.18170370050343
Iteration: 12, Func. Count: 89, Neg. LLF: 113.1816989848934
Iteration: 13, Func. Count: 95, Neg. LLF: 113.18169898490694
Optimization terminated successfully (Exit mode 0)
Current function value: 113.1816989848934
Iterations: 13
Function evaluations: 95
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 17809496.341741852
Iteration: 2, Func. Count: 19, Neg. LLF: 134.8038635878056
Iteration: 3, Func. Count: 29, Neg. LLF: 113.49623898579875
Iteration: 4, Func. Count: 37, Neg. LLF: 113.7770004313
Iteration: 5, Func. Count: 46, Neg. LLF: 113.14212709941238
Iteration: 6, Func. Count: 54, Neg. LLF: 113.10522751341033
Iteration: 7, Func. Count: 62, Neg. LLF: 113.10479884170957
Iteration: 8, Func. Count: 70, Neg. LLF: 113.10475702436982
Iteration: 9, Func. Count: 78, Neg. LLF: 113.10475205961961
Iteration: 10, Func. Count: 85, Neg. LLF: 113.10475194619634
Optimization terminated successfully (Exit mode 0)
Current function value: 113.10475205961961
Iterations: 10
Function evaluations: 85
Gradient evaluations: 10
Iteration: 1, Func. Count: 10, Neg. LLF: 114.45973029879868
Iteration: 2, Func. Count: 23, Neg. LLF: 173.53531039985415
Iteration: 3, Func. Count: 33, Neg. LLF: 113.98240742768299
Iteration: 4, Func. Count: 43, Neg. LLF: 114.01285930548859
Iteration: 5, Func. Count: 53, Neg. LLF: 113.21784531486126
Iteration: 6, Func. Count: 63, Neg. LLF: 112.91594440441149
Iteration: 7, Func. Count: 72, Neg. LLF: 112.9055665022785
Iteration: 8, Func. Count: 81, Neg. LLF: 112.9046836608018
Iteration: 9, Func. Count: 90, Neg. LLF: 112.90462922785703
Iteration: 10, Func. Count: 99, Neg. LLF: 112.90461698678276
Iteration: 11, Func. Count: 108, Neg. LLF: 112.90461593436669
Iteration: 12, Func. Count: 116, Neg. LLF: 112.90461586371775
Optimization terminated successfully (Exit mode 0)
Current function value: 112.90461593436669
Iterations: 12
Function evaluations: 116
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 126.03271147545209
Iteration: 2, Func. Count: 22, Neg. LLF: 121.17359298898307
Iteration: 3, Func. Count: 35, Neg. LLF: 114.46240183930286
Iteration: 4, Func. Count: 46, Neg. LLF: 112.1921572234155
Iteration: 5, Func. Count: 57, Neg. LLF: 111.6633323949365
Iteration: 6, Func. Count: 68, Neg. LLF: 111.3241510304618
Iteration: 7, Func. Count: 78, Neg. LLF: 111.32082481879587
Iteration: 8, Func. Count: 88, Neg. LLF: 111.32035301841475
Iteration: 9, Func. Count: 98, Neg. LLF: 111.32027354798207
Iteration: 10, Func. Count: 108, Neg. LLF: 111.32026614435667
Iteration: 11, Func. Count: 117, Neg. LLF: 111.320266116254
Optimization terminated successfully (Exit mode 0)
Current function value: 111.32026614435667
Iterations: 11
Function evaluations: 117
Gradient evaluations: 11
Iteration: 1, Func. Count: 12, Neg. LLF: 15320246.945013463
Iteration: 2, Func. Count: 24, Neg. LLF: 117.86330186652043
Iteration: 3, Func. Count: 37, Neg. LLF: 112.33428204396581
Iteration: 4, Func. Count: 48, Neg. LLF: 119.0745700778203
Iteration: 5, Func. Count: 60, Neg. LLF: 128.3895297754898
Iteration: 6, Func. Count: 72, Neg. LLF: 111.46346468582543
Iteration: 7, Func. Count: 83, Neg. LLF: 111.32985732460143
Iteration: 8, Func. Count: 94, Neg. LLF: 111.32397338735126
Iteration: 9, Func. Count: 105, Neg. LLF: 111.32228134827574
Iteration: 10, Func. Count: 116, Neg. LLF: 111.32105545844489
Iteration: 11, Func. Count: 127, Neg. LLF: 111.3205165325016
Iteration: 12, Func. Count: 138, Neg. LLF: 111.3203458005819
Iteration: 13, Func. Count: 149, Neg. LLF: 111.32027991257495
Iteration: 14, Func. Count: 160, Neg. LLF: 111.32026704640936
Iteration: 15, Func. Count: 171, Neg. LLF: 111.320265986982
Iteration: 16, Func. Count: 181, Neg. LLF: 111.32026598183525
Optimization terminated successfully (Exit mode 0)
Current function value: 111.320265986982
Iterations: 16
Function evaluations: 181
Gradient evaluations: 16
Iteration: 1, Func. Count: 5, Neg. LLF: 123.2627483872722
Iteration: 2, Func. Count: 10, Neg. LLF: 137.73047624439616
Iteration: 3, Func. Count: 15, Neg. LLF: 117.29444450387156
Iteration: 4, Func. Count: 19, Neg. LLF: 116.99904873304294
Iteration: 5, Func. Count: 23, Neg. LLF: 116.99637579804079
Iteration: 6, Func. Count: 27, Neg. LLF: 116.99594752031004
Iteration: 7, Func. Count: 31, Neg. LLF: 116.99594674693779
Optimization terminated successfully (Exit mode 0)
Current function value: 116.99594674693779
Iterations: 7
Function evaluations: 31
Gradient evaluations: 7
Iteration: 1, Func. Count: 6, Neg. LLF: 26879839.973104436
Iteration: 2, Func. Count: 13, Neg. LLF: 141.1859693568761
Iteration: 3, Func. Count: 19, Neg. LLF: 130.55399379724935
Iteration: 4, Func. Count: 25, Neg. LLF: 125.36376183433146
Iteration: 5, Func. Count: 31, Neg. LLF: 119.69685263745804
Iteration: 6, Func. Count: 37, Neg. LLF: 119.72214185390408
Iteration: 7, Func. Count: 43, Neg. LLF: 115.70633479964602
Iteration: 8, Func. Count: 49, Neg. LLF: 115.08562755909767
Iteration: 9, Func. Count: 54, Neg. LLF: 117.66035444021432
Iteration: 10, Func. Count: 60, Neg. LLF: 114.94000070762095
Iteration: 11, Func. Count: 65, Neg. LLF: 114.8887137132008
Iteration: 12, Func. Count: 70, Neg. LLF: 114.88372818469381
Iteration: 13, Func. Count: 75, Neg. LLF: 114.88315654685302
Iteration: 14, Func. Count: 80, Neg. LLF: 114.88314767716302
Iteration: 15, Func. Count: 84, Neg. LLF: 114.88314767729285
Optimization terminated successfully (Exit mode 0)
Current function value: 114.88314767716302
Iterations: 15
Function evaluations: 84
Gradient evaluations: 15
Iteration: 1, Func. Count: 7, Neg. LLF: 26793279.155665904
Iteration: 2, Func. Count: 15, Neg. LLF: 128.0299500550026
Iteration: 3, Func. Count: 22, Neg. LLF: 119.98174695036896
Iteration: 4, Func. Count: 29, Neg. LLF: 114.82039368799522
Iteration: 5, Func. Count: 35, Neg. LLF: 114.81150273672962
Iteration: 6, Func. Count: 41, Neg. LLF: 114.80752402861619
Iteration: 7, Func. Count: 47, Neg. LLF: 114.80726517333021
Iteration: 8, Func. Count: 53, Neg. LLF: 114.80725243854705
Iteration: 9, Func. Count: 58, Neg. LLF: 114.80725243851013
Optimization terminated successfully (Exit mode 0)
Current function value: 114.80725243854705
Iterations: 9
Function evaluations: 58
Gradient evaluations: 9
Iteration: 1, Func. Count: 8, Neg. LLF: 26670807.64838332
Iteration: 2, Func. Count: 17, Neg. LLF: 123.243991912147
Iteration: 3, Func. Count: 25, Neg. LLF: 115.25232178770175
Iteration: 4, Func. Count: 32, Neg. LLF: 114.96071596090017
Iteration: 5, Func. Count: 39, Neg. LLF: 114.94972740635787
Iteration: 6, Func. Count: 46, Neg. LLF: 114.93055618116504
Iteration: 7, Func. Count: 53, Neg. LLF: 114.92921047956725
Iteration: 8, Func. Count: 60, Neg. LLF: 114.92852604464716
Iteration: 9, Func. Count: 67, Neg. LLF: 114.92793877170539
Iteration: 10, Func. Count: 74, Neg. LLF: 114.92781580340049
Iteration: 11, Func. Count: 81, Neg. LLF: 114.92778258756901
Iteration: 12, Func. Count: 88, Neg. LLF: 114.9277819538774
Optimization terminated successfully (Exit mode 0)
Current function value: 114.9277819538774
Iterations: 12
Function evaluations: 88
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 26592107.67257254
Iteration: 2, Func. Count: 19, Neg. LLF: 127.18550422524919
Iteration: 3, Func. Count: 28, Neg. LLF: 123.59724959145899
Iteration: 4, Func. Count: 37, Neg. LLF: 123.09191001242561
Iteration: 5, Func. Count: 46, Neg. LLF: 115.39095929018112
Iteration: 6, Func. Count: 54, Neg. LLF: 121.09682752443959
Iteration: 7, Func. Count: 64, Neg. LLF: 124.0870642900577
Iteration: 8, Func. Count: 73, Neg. LLF: 114.63995322388438
Iteration: 9, Func. Count: 81, Neg. LLF: 114.62686468910775
Iteration: 10, Func. Count: 89, Neg. LLF: 114.62392619078828
Iteration: 11, Func. Count: 97, Neg. LLF: 114.62374483731733
Iteration: 12, Func. Count: 105, Neg. LLF: 114.6236108823357
Iteration: 13, Func. Count: 113, Neg. LLF: 114.62358516931684
Iteration: 14, Func. Count: 120, Neg. LLF: 114.62358516939436
Optimization terminated successfully (Exit mode 0)
Current function value: 114.62358516931684
Iterations: 14
Function evaluations: 120
Gradient evaluations: 14
Iteration: 1, Func. Count: 6, Neg. LLF: 129.98950077733875
Iteration: 2, Func. Count: 12, Neg. LLF: 138.4135968271899
Iteration: 3, Func. Count: 18, Neg. LLF: 117.29854560612945
Iteration: 4, Func. Count: 23, Neg. LLF: 117.20115632913092
Iteration: 5, Func. Count: 28, Neg. LLF: 117.0327502793846
Iteration: 6, Func. Count: 33, Neg. LLF: 117.00468968367827
Iteration: 7, Func. Count: 38, Neg. LLF: 116.99594745718119
Iteration: 8, Func. Count: 43, Neg. LLF: 116.99594673279042
Optimization terminated successfully (Exit mode 0)
Current function value: 116.99594673279042
Iterations: 8
Function evaluations: 43
Gradient evaluations: 8
Iteration: 1, Func. Count: 7, Neg. LLF: 165.17740120196575
Iteration: 2, Func. Count: 16, Neg. LLF: 125.18243275024182
Iteration: 3, Func. Count: 24, Neg. LLF: 124.91244427625108
Iteration: 4, Func. Count: 31, Neg. LLF: 114.7695301860049
Iteration: 5, Func. Count: 37, Neg. LLF: 114.76843035741857
Iteration: 6, Func. Count: 43, Neg. LLF: 114.76802526410906
Iteration: 7, Func. Count: 49, Neg. LLF: 114.76799089310131
Iteration: 8, Func. Count: 55, Neg. LLF: 114.76796120349297
Iteration: 9, Func. Count: 61, Neg. LLF: 114.76794592050814
Iteration: 10, Func. Count: 66, Neg. LLF: 114.76794591275551
Optimization terminated successfully (Exit mode 0)
Current function value: 114.76794592050814
Iterations: 10
Function evaluations: 66
Gradient evaluations: 10
Iteration: 1, Func. Count: 8, Neg. LLF: 29373850.26796688
Iteration: 2, Func. Count: 18, Neg. LLF: 129.78558772526748
Iteration: 3, Func. Count: 26, Neg. LLF: 114.98693655985028
Iteration: 4, Func. Count: 33, Neg. LLF: 115.06037909459604
Iteration: 5, Func. Count: 41, Neg. LLF: 115.01468839972851
Iteration: 6, Func. Count: 49, Neg. LLF: 114.87814719640679
Iteration: 7, Func. Count: 56, Neg. LLF: 114.80017448712636
Iteration: 8, Func. Count: 63, Neg. LLF: 114.77607843527076
Iteration: 9, Func. Count: 70, Neg. LLF: 114.76843066700673
Iteration: 10, Func. Count: 77, Neg. LLF: 114.76799286656055
Iteration: 11, Func. Count: 84, Neg. LLF: 114.76795520463051
Iteration: 12, Func. Count: 91, Neg. LLF: 114.76794618913503
Iteration: 13, Func. Count: 97, Neg. LLF: 114.76794619151578
Optimization terminated successfully (Exit mode 0)
Current function value: 114.76794618913503
Iterations: 13
Function evaluations: 97
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 31456609.659445893
Iteration: 2, Func. Count: 19, Neg. LLF: 141.8443640412246
Iteration: 3, Func. Count: 29, Neg. LLF: 117.66011633024794
Iteration: 4, Func. Count: 38, Neg. LLF: 115.95199039070371
Iteration: 5, Func. Count: 47, Neg. LLF: 115.31542653144778
Iteration: 6, Func. Count: 56, Neg. LLF: 115.0483724232437
Iteration: 7, Func. Count: 65, Neg. LLF: 119.70442464713099
Iteration: 8, Func. Count: 75, Neg. LLF: 114.37159496503644
Iteration: 9, Func. Count: 84, Neg. LLF: 114.13376223363304
Iteration: 10, Func. Count: 92, Neg. LLF: 114.07439973575848
Iteration: 11, Func. Count: 100, Neg. LLF: 114.07329917337111
Iteration: 12, Func. Count: 108, Neg. LLF: 114.0766657074596
Iteration: 13, Func. Count: 117, Neg. LLF: 114.07113623079287
Iteration: 14, Func. Count: 125, Neg. LLF: 114.0704408185363
Iteration: 15, Func. Count: 133, Neg. LLF: 114.07037471858514
Iteration: 16, Func. Count: 141, Neg. LLF: 114.07037249827222
Iteration: 17, Func. Count: 148, Neg. LLF: 114.07037249751318
Optimization terminated successfully (Exit mode 0)
Current function value: 114.07037249827222
Iterations: 17
Function evaluations: 148
Gradient evaluations: 17
Iteration: 1, Func. Count: 10, Neg. LLF: 31625196.12159679
Iteration: 2, Func. Count: 21, Neg. LLF: 140.83383892253462
Iteration: 3, Func. Count: 32, Neg. LLF: 116.13709995754579
Iteration: 4, Func. Count: 42, Neg. LLF: 114.99626846985187
Iteration: 5, Func. Count: 51, Neg. LLF: 114.71608911855381
Iteration: 6, Func. Count: 60, Neg. LLF: 115.74266393860627
Iteration: 7, Func. Count: 70, Neg. LLF: 114.34941831361564
Iteration: 8, Func. Count: 79, Neg. LLF: 114.19523918389416
Iteration: 9, Func. Count: 88, Neg. LLF: 114.12820909234766
Iteration: 10, Func. Count: 97, Neg. LLF: 114.07871815411194
Iteration: 11, Func. Count: 106, Neg. LLF: 114.07146822666986
Iteration: 12, Func. Count: 115, Neg. LLF: 114.07071687543822
Iteration: 13, Func. Count: 124, Neg. LLF: 114.07054454874438
Iteration: 14, Func. Count: 133, Neg. LLF: 114.0704108307489
Iteration: 15, Func. Count: 142, Neg. LLF: 114.07037537557697
Iteration: 16, Func. Count: 151, Neg. LLF: 114.07037256662286
Iteration: 17, Func. Count: 159, Neg. LLF: 114.07037259807996
Optimization terminated successfully (Exit mode 0)
Current function value: 114.07037256662286
Iterations: 17
Function evaluations: 159
Gradient evaluations: 17
Iteration: 1, Func. Count: 7, Neg. LLF: 131.85616309929546
Iteration: 2, Func. Count: 15, Neg. LLF: 138.91968923581155
Iteration: 3, Func. Count: 22, Neg. LLF: 117.00795206403082
Iteration: 4, Func. Count: 28, Neg. LLF: 117.00094463990341
Iteration: 5, Func. Count: 34, Neg. LLF: 116.99659339571201
Iteration: 6, Func. Count: 40, Neg. LLF: 116.9960017231412
Iteration: 7, Func. Count: 46, Neg. LLF: 116.9959478305792
Iteration: 8, Func. Count: 52, Neg. LLF: 116.99594674584127
Iteration: 9, Func. Count: 57, Neg. LLF: 116.99594677409875
Optimization terminated successfully (Exit mode 0)
Current function value: 116.99594674584127
Iterations: 9
Function evaluations: 57
Gradient evaluations: 9
Iteration: 1, Func. Count: 8, Neg. LLF: 127.73942434775144
Iteration: 2, Func. Count: 18, Neg. LLF: 285.56364092918903
Iteration: 3, Func. Count: 27, Neg. LLF: 140.4688546219083
Iteration: 4, Func. Count: 36, Neg. LLF: 114.04649670418138
Iteration: 5, Func. Count: 43, Neg. LLF: 114.0397704925629
Iteration: 6, Func. Count: 50, Neg. LLF: 114.03779457899445
Iteration: 7, Func. Count: 57, Neg. LLF: 114.03670923403902
Iteration: 8, Func. Count: 64, Neg. LLF: 114.03663438024405
Iteration: 9, Func. Count: 71, Neg. LLF: 114.03662745320985
Iteration: 10, Func. Count: 78, Neg. LLF: 114.03663743819979
Optimization terminated successfully (Exit mode 0)
Current function value: 114.03662746136224
Iterations: 11
Function evaluations: 81
Gradient evaluations: 10
Iteration: 1, Func. Count: 9, Neg. LLF: 16467013.400423955
Iteration: 2, Func. Count: 19, Neg. LLF: 156.40778383172855
Iteration: 3, Func. Count: 29, Neg. LLF: 116.83832481967237
Iteration: 4, Func. Count: 38, Neg. LLF: 114.3400356373066
Iteration: 5, Func. Count: 46, Neg. LLF: 113.92480500191655
Iteration: 6, Func. Count: 54, Neg. LLF: 113.9469174129607
Iteration: 7, Func. Count: 63, Neg. LLF: 113.84299264386867
Iteration: 8, Func. Count: 71, Neg. LLF: 113.8305469524831
Iteration: 9, Func. Count: 79, Neg. LLF: 113.82806890784056
Iteration: 10, Func. Count: 87, Neg. LLF: 113.82772229975298
Iteration: 11, Func. Count: 95, Neg. LLF: 113.82771531375681
Iteration: 12, Func. Count: 103, Neg. LLF: 113.82771025242845
Iteration: 13, Func. Count: 111, Neg. LLF: 113.82770918717011
Iteration: 14, Func. Count: 118, Neg. LLF: 113.82770908670926
Optimization terminated successfully (Exit mode 0)
Current function value: 113.82770918717011
Iterations: 14
Function evaluations: 118
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 142.18956259657162
Iteration: 2, Func. Count: 22, Neg. LLF: 149.6227072539692
Iteration: 3, Func. Count: 32, Neg. LLF: 117.01911498097445
Iteration: 4, Func. Count: 42, Neg. LLF: 114.44068648138088
Iteration: 5, Func. Count: 51, Neg. LLF: 116.30167634489501
Iteration: 6, Func. Count: 61, Neg. LLF: 115.22023336348634
Iteration: 7, Func. Count: 71, Neg. LLF: 113.50022360057089
Iteration: 8, Func. Count: 80, Neg. LLF: 113.39051562545704
Iteration: 9, Func. Count: 89, Neg. LLF: 113.35374110227933
Iteration: 10, Func. Count: 98, Neg. LLF: 113.34521085128372
Iteration: 11, Func. Count: 107, Neg. LLF: 113.34269733697978
Iteration: 12, Func. Count: 116, Neg. LLF: 113.3409511767275
Iteration: 13, Func. Count: 125, Neg. LLF: 113.34085575072635
Iteration: 14, Func. Count: 134, Neg. LLF: 113.34085246065588
Iteration: 15, Func. Count: 142, Neg. LLF: 113.34085234492072
Optimization terminated successfully (Exit mode 0)
Current function value: 113.34085246065588
Iterations: 15
Function evaluations: 142
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 115.69263839377356
Iteration: 2, Func. Count: 22, Neg. LLF: 114.91672287398184
Iteration: 3, Func. Count: 32, Neg. LLF: 125.35522209685895
Iteration: 4, Func. Count: 43, Neg. LLF: 124.65575881576231
Iteration: 5, Func. Count: 54, Neg. LLF: 119.38784301054977
Iteration: 6, Func. Count: 65, Neg. LLF: 114.20222169520041
Iteration: 7, Func. Count: 76, Neg. LLF: 113.43139669326861
Iteration: 8, Func. Count: 87, Neg. LLF: 113.34144140323255
Iteration: 9, Func. Count: 97, Neg. LLF: 113.3408951492414
Iteration: 10, Func. Count: 107, Neg. LLF: 113.3408534840949
Iteration: 11, Func. Count: 117, Neg. LLF: 113.34085246275137
Iteration: 12, Func. Count: 126, Neg. LLF: 113.3408524157334
Optimization terminated successfully (Exit mode 0)
Current function value: 113.34085246275137
Iterations: 12
Function evaluations: 126
Gradient evaluations: 12
Iteration: 1, Func. Count: 8, Neg. LLF: 135.04676582619206
Iteration: 2, Func. Count: 17, Neg. LLF: 142.56103500509383
Iteration: 3, Func. Count: 25, Neg. LLF: 117.03166021197472
Iteration: 4, Func. Count: 32, Neg. LLF: 117.01179931890019
Iteration: 5, Func. Count: 39, Neg. LLF: 116.99620880749256
Iteration: 6, Func. Count: 46, Neg. LLF: 116.99594994965126
Iteration: 7, Func. Count: 53, Neg. LLF: 116.99594677144786
Iteration: 8, Func. Count: 59, Neg. LLF: 116.99594681449113
Optimization terminated successfully (Exit mode 0)
Current function value: 116.99594677144786
Iterations: 8
Function evaluations: 59
Gradient evaluations: 8
Iteration: 1, Func. Count: 9, Neg. LLF: 136.74941876748005
Iteration: 2, Func. Count: 19, Neg. LLF: 151.86217491927988
Iteration: 3, Func. Count: 29, Neg. LLF: 122.665194526907
Iteration: 4, Func. Count: 38, Neg. LLF: 113.82043331763444
Iteration: 5, Func. Count: 46, Neg. LLF: 113.87515435362864
Iteration: 6, Func. Count: 55, Neg. LLF: 113.78517086725593
Iteration: 7, Func. Count: 63, Neg. LLF: 113.78422111789973
Iteration: 8, Func. Count: 71, Neg. LLF: 113.78421969111452
Iteration: 9, Func. Count: 78, Neg. LLF: 113.78421958275263
Optimization terminated successfully (Exit mode 0)
Current function value: 113.78421969111452
Iterations: 9
Function evaluations: 78
Gradient evaluations: 9
Iteration: 1, Func. Count: 10, Neg. LLF: 163.68488633466583
Iteration: 2, Func. Count: 22, Neg. LLF: 152.86482464360947
Iteration: 3, Func. Count: 33, Neg. LLF: 122.39217669645629
Iteration: 4, Func. Count: 43, Neg. LLF: 113.84326985578544
Iteration: 5, Func. Count: 52, Neg. LLF: 113.83103213319745
Iteration: 6, Func. Count: 61, Neg. LLF: 113.857643470763
Iteration: 7, Func. Count: 71, Neg. LLF: 113.8278981278927
Iteration: 8, Func. Count: 80, Neg. LLF: 113.82776509146842
Iteration: 9, Func. Count: 89, Neg. LLF: 113.82771323825553
Iteration: 10, Func. Count: 98, Neg. LLF: 113.82771051678206
Iteration: 11, Func. Count: 107, Neg. LLF: 113.82770913640182
Iteration: 12, Func. Count: 115, Neg. LLF: 113.82770903597826
Optimization terminated successfully (Exit mode 0)
Current function value: 113.82770913640182
Iterations: 12
Function evaluations: 115
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 127.70007002485914
Iteration: 2, Func. Count: 24, Neg. LLF: 155.92878052998407
Iteration: 3, Func. Count: 36, Neg. LLF: 118.49073069101233
Iteration: 4, Func. Count: 47, Neg. LLF: 114.58287135977686
Iteration: 5, Func. Count: 57, Neg. LLF: 114.00323723329006
Iteration: 6, Func. Count: 67, Neg. LLF: 113.9122439818442
Iteration: 7, Func. Count: 77, Neg. LLF: 114.02703586930939
Iteration: 8, Func. Count: 88, Neg. LLF: 113.788104659961
Iteration: 9, Func. Count: 98, Neg. LLF: 113.62964983044336
Iteration: 10, Func. Count: 108, Neg. LLF: 113.36415262846491
Iteration: 11, Func. Count: 118, Neg. LLF: 113.3428057154787
Iteration: 12, Func. Count: 128, Neg. LLF: 113.34153188524387
Iteration: 13, Func. Count: 138, Neg. LLF: 113.3410513638742
Iteration: 14, Func. Count: 148, Neg. LLF: 113.34088341228734
Iteration: 15, Func. Count: 158, Neg. LLF: 113.34085448999878
Iteration: 16, Func. Count: 168, Neg. LLF: 113.34085255742399
Iteration: 17, Func. Count: 177, Neg. LLF: 113.34085244173271
Optimization terminated successfully (Exit mode 0)
Current function value: 113.34085255742399
Iterations: 17
Function evaluations: 177
Gradient evaluations: 17
Iteration: 1, Func. Count: 12, Neg. LLF: 172.65099987033383
Iteration: 2, Func. Count: 24, Neg. LLF: 118.83534950606676
Iteration: 3, Func. Count: 38, Neg. LLF: 117.15305939632124
Iteration: 4, Func. Count: 50, Neg. LLF: 113.9066912037126
Iteration: 5, Func. Count: 61, Neg. LLF: 113.63727206412416
Iteration: 6, Func. Count: 72, Neg. LLF: 112.78016897187838
Iteration: 7, Func. Count: 83, Neg. LLF: 117.2339217601761
Iteration: 8, Func. Count: 95, Neg. LLF: 111.86198539662571
Iteration: 9, Func. Count: 106, Neg. LLF: 111.7030904318099
Iteration: 10, Func. Count: 117, Neg. LLF: 111.70116108283878
Iteration: 11, Func. Count: 128, Neg. LLF: 111.70089453131092
Iteration: 12, Func. Count: 139, Neg. LLF: 111.70255712457688
Iteration: 13, Func. Count: 152, Neg. LLF: 111.70088490349158
Iteration: 14, Func. Count: 163, Neg. LLF: 111.70088445383283
Optimization terminated successfully (Exit mode 0)
Current function value: 111.70088445383283
Iterations: 14
Function evaluations: 163
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 138.75319972750844
Iteration: 2, Func. Count: 19, Neg. LLF: 545.7923374459052
Iteration: 3, Func. Count: 28, Neg. LLF: 115.40940012111813
Iteration: 4, Func. Count: 37, Neg. LLF: 113.56426848783741
Iteration: 5, Func. Count: 45, Neg. LLF: 113.366078776975
Iteration: 6, Func. Count: 53, Neg. LLF: 114.69411250943041
Iteration: 7, Func. Count: 64, Neg. LLF: 113.29026557347854
Iteration: 8, Func. Count: 72, Neg. LLF: 113.22645013062944
Iteration: 9, Func. Count: 80, Neg. LLF: 113.20024230219263
Iteration: 10, Func. Count: 88, Neg. LLF: 113.18224038181609
Iteration: 11, Func. Count: 96, Neg. LLF: 113.18173218279462
Iteration: 12, Func. Count: 104, Neg. LLF: 113.18170083503664
Iteration: 13, Func. Count: 112, Neg. LLF: 113.18169877291078
Iteration: 14, Func. Count: 119, Neg. LLF: 113.18169877291936
Optimization terminated successfully (Exit mode 0)
Current function value: 113.18169877291078
Iterations: 14
Function evaluations: 119
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 122.02405683233258
Iteration: 2, Func. Count: 21, Neg. LLF: 126.33571494202391
Iteration: 3, Func. Count: 33, Neg. LLF: 116.27951575234543
Iteration: 4, Func. Count: 43, Neg. LLF: 113.21911023602675
Iteration: 5, Func. Count: 52, Neg. LLF: 113.15467711550589
Iteration: 6, Func. Count: 61, Neg. LLF: 113.11419659163568
Iteration: 7, Func. Count: 70, Neg. LLF: 113.10547675997404
Iteration: 8, Func. Count: 79, Neg. LLF: 113.10489872476734
Iteration: 9, Func. Count: 88, Neg. LLF: 113.10475225269329
Iteration: 10, Func. Count: 96, Neg. LLF: 113.10475213941479
Optimization terminated successfully (Exit mode 0)
Current function value: 113.10475225269329
Iterations: 10
Function evaluations: 96
Gradient evaluations: 10
Iteration: 1, Func. Count: 11, Neg. LLF: 119.20102022328416
Iteration: 2, Func. Count: 25, Neg. LLF: 150.8254049740685
Iteration: 3, Func. Count: 36, Neg. LLF: 114.00518498528396
Iteration: 4, Func. Count: 47, Neg. LLF: 112.99029555383623
Iteration: 5, Func. Count: 57, Neg. LLF: 114.45456885557857
Iteration: 6, Func. Count: 68, Neg. LLF: 112.9785402770949
Iteration: 7, Func. Count: 79, Neg. LLF: 112.90658691588197
Iteration: 8, Func. Count: 89, Neg. LLF: 112.9048118726117
Iteration: 9, Func. Count: 99, Neg. LLF: 112.90465732533796
Iteration: 10, Func. Count: 109, Neg. LLF: 112.9046158835224
Iteration: 11, Func. Count: 118, Neg. LLF: 112.90461581290336
Optimization terminated successfully (Exit mode 0)
Current function value: 112.9046158835224
Iterations: 11
Function evaluations: 118
Gradient evaluations: 11
Iteration: 1, Func. Count: 12, Neg. LLF: 114.95232481065409
Iteration: 2, Func. Count: 24, Neg. LLF: 123.26029152044816
Iteration: 3, Func. Count: 36, Neg. LLF: 112.69622136416403
Iteration: 4, Func. Count: 48, Neg. LLF: 122.44516378280994
Iteration: 5, Func. Count: 60, Neg. LLF: 116.50360882043603
Iteration: 6, Func. Count: 72, Neg. LLF: 114.19097184083971
Iteration: 7, Func. Count: 84, Neg. LLF: 113.27827654392173
Iteration: 8, Func. Count: 96, Neg. LLF: 111.43356217479494
Iteration: 9, Func. Count: 107, Neg. LLF: 111.33722746921683
Iteration: 10, Func. Count: 118, Neg. LLF: 111.32731845159682
Iteration: 11, Func. Count: 129, Neg. LLF: 111.32070125353395
Iteration: 12, Func. Count: 140, Neg. LLF: 111.3203504879302
Iteration: 13, Func. Count: 151, Neg. LLF: 111.32027481965991
Iteration: 14, Func. Count: 162, Neg. LLF: 111.32026597892566
Iteration: 15, Func. Count: 172, Neg. LLF: 111.32026595077105
Optimization terminated successfully (Exit mode 0)
Current function value: 111.32026597892566
Iterations: 15
Function evaluations: 172
Gradient evaluations: 15
Iteration: 1, Func. Count: 13, Neg. LLF: 152.9088294018561
Iteration: 2, Func. Count: 26, Neg. LLF: 116.377219570291
Iteration: 3, Func. Count: 40, Neg. LLF: 120.78049497691703
Iteration: 4, Func. Count: 53, Neg. LLF: 111.73707846049652
Iteration: 5, Func. Count: 65, Neg. LLF: 111.4788174410096
Iteration: 6, Func. Count: 77, Neg. LLF: 111.34628050946465
Iteration: 7, Func. Count: 89, Neg. LLF: 111.32238508103049
Iteration: 8, Func. Count: 101, Neg. LLF: 111.32034248512554
Iteration: 9, Func. Count: 113, Neg. LLF: 111.3202776073783
Iteration: 10, Func. Count: 125, Neg. LLF: 111.32026768002333
Iteration: 11, Func. Count: 137, Neg. LLF: 111.32026597791616
Iteration: 12, Func. Count: 148, Neg. LLF: 111.3202659727483
Optimization terminated successfully (Exit mode 0)
Current function value: 111.32026597791616
Iterations: 12
Function evaluations: 148
Gradient evaluations: 12
Iteration: 1, Func. Count: 6, Neg. LLF: 125.88149845717066
Iteration: 2, Func. Count: 12, Neg. LLF: 122.19058946442291
Iteration: 3, Func. Count: 18, Neg. LLF: 117.2545448645088
Iteration: 4, Func. Count: 23, Neg. LLF: 121.42588331917364
Iteration: 5, Func. Count: 30, Neg. LLF: 117.1643350424095
Iteration: 6, Func. Count: 36, Neg. LLF: 116.98750510800545
Iteration: 7, Func. Count: 41, Neg. LLF: 116.97311530620021
Iteration: 8, Func. Count: 46, Neg. LLF: 116.97260744806029
Iteration: 9, Func. Count: 51, Neg. LLF: 116.97257747184831
Iteration: 10, Func. Count: 56, Neg. LLF: 116.97257620885193
Iteration: 11, Func. Count: 60, Neg. LLF: 116.97257620884449
Optimization terminated successfully (Exit mode 0)
Current function value: 116.97257620885193
Iterations: 11
Function evaluations: 60
Gradient evaluations: 11
Iteration: 1, Func. Count: 7, Neg. LLF: 26947376.74283481
Iteration: 2, Func. Count: 15, Neg. LLF: 142.35863082399933
Iteration: 3, Func. Count: 22, Neg. LLF: 130.77171441939186
Iteration: 4, Func. Count: 29, Neg. LLF: 125.83116947958328
Iteration: 5, Func. Count: 36, Neg. LLF: 120.29918146990897
Iteration: 6, Func. Count: 43, Neg. LLF: 118.88907125622794
Iteration: 7, Func. Count: 50, Neg. LLF: 115.72883827473746
Iteration: 8, Func. Count: 57, Neg. LLF: 115.06155017397725
Iteration: 9, Func. Count: 63, Neg. LLF: 120.00388005617114
Iteration: 10, Func. Count: 70, Neg. LLF: 114.92118110925172
Iteration: 11, Func. Count: 76, Neg. LLF: 114.88462390964821
Iteration: 12, Func. Count: 82, Neg. LLF: 114.88327103040739
Iteration: 13, Func. Count: 88, Neg. LLF: 114.88314759286284
Iteration: 14, Func. Count: 93, Neg. LLF: 114.8831475928416
Optimization terminated successfully (Exit mode 0)
Current function value: 114.88314759286284
Iterations: 14
Function evaluations: 93
Gradient evaluations: 14
Iteration: 1, Func. Count: 8, Neg. LLF: 26840062.346567273
Iteration: 2, Func. Count: 17, Neg. LLF: 128.97496071502792
Iteration: 3, Func. Count: 25, Neg. LLF: 120.285143422325
Iteration: 4, Func. Count: 33, Neg. LLF: 114.82160301305652
Iteration: 5, Func. Count: 40, Neg. LLF: 114.81545268711042
Iteration: 6, Func. Count: 47, Neg. LLF: 114.80804447465547
Iteration: 7, Func. Count: 54, Neg. LLF: 114.80728703179388
Iteration: 8, Func. Count: 61, Neg. LLF: 114.8072533704041
Iteration: 9, Func. Count: 68, Neg. LLF: 114.80725252568809
Optimization terminated successfully (Exit mode 0)
Current function value: 114.80725252568809
Iterations: 9
Function evaluations: 68
Gradient evaluations: 9
Iteration: 1, Func. Count: 9, Neg. LLF: 26726766.208345175
Iteration: 2, Func. Count: 19, Neg. LLF: 124.34266403994768
Iteration: 3, Func. Count: 28, Neg. LLF: 115.32893003674182
Iteration: 4, Func. Count: 37, Neg. LLF: 114.95544140336875
Iteration: 5, Func. Count: 45, Neg. LLF: 114.94020665902295
Iteration: 6, Func. Count: 53, Neg. LLF: 114.93816659727474
Iteration: 7, Func. Count: 62, Neg. LLF: 114.92782464148586
Iteration: 8, Func. Count: 70, Neg. LLF: 114.9277846872414
Iteration: 9, Func. Count: 78, Neg. LLF: 114.92778217991268
Iteration: 10, Func. Count: 85, Neg. LLF: 114.92778217971234
Optimization terminated successfully (Exit mode 0)
Current function value: 114.92778217991268
Iterations: 10
Function evaluations: 85
Gradient evaluations: 10
Iteration: 1, Func. Count: 10, Neg. LLF: 26691086.041770793
Iteration: 2, Func. Count: 21, Neg. LLF: 128.3251895336961
Iteration: 3, Func. Count: 31, Neg. LLF: 124.74359696903034
Iteration: 4, Func. Count: 41, Neg. LLF: 116.81221512795453
Iteration: 5, Func. Count: 51, Neg. LLF: 129.54349012062409
Iteration: 6, Func. Count: 61, Neg. LLF: 114.7730598406818
Iteration: 7, Func. Count: 70, Neg. LLF: 114.86381550217169
Iteration: 8, Func. Count: 80, Neg. LLF: 114.67821470543856
Iteration: 9, Func. Count: 89, Neg. LLF: 114.63461091056433
Iteration: 10, Func. Count: 98, Neg. LLF: 114.62847063527887
Iteration: 11, Func. Count: 107, Neg. LLF: 114.62422577220434
Iteration: 12, Func. Count: 116, Neg. LLF: 114.62362769759534
Iteration: 13, Func. Count: 125, Neg. LLF: 114.62358552937856
Iteration: 14, Func. Count: 134, Neg. LLF: 114.62358485116064
Optimization terminated successfully (Exit mode 0)
Current function value: 114.62358485116064
Iterations: 14
Function evaluations: 134
Gradient evaluations: 14
Iteration: 1, Func. Count: 7, Neg. LLF: 126.01510838990261
Iteration: 2, Func. Count: 14, Neg. LLF: 123.32745915492869
Iteration: 3, Func. Count: 21, Neg. LLF: 117.24381524917247
Iteration: 4, Func. Count: 27, Neg. LLF: 119.3883281236823
Iteration: 5, Func. Count: 34, Neg. LLF: 117.13116918840831
Iteration: 6, Func. Count: 40, Neg. LLF: 116.97406305304929
Iteration: 7, Func. Count: 46, Neg. LLF: 116.97258164062474
Iteration: 8, Func. Count: 52, Neg. LLF: 116.97257636541866
Iteration: 9, Func. Count: 57, Neg. LLF: 116.9725764080946
Optimization terminated successfully (Exit mode 0)
Current function value: 116.97257636541866
Iterations: 9
Function evaluations: 57
Gradient evaluations: 9
Iteration: 1, Func. Count: 8, Neg. LLF: 163.90745191771063
Iteration: 2, Func. Count: 18, Neg. LLF: 127.13498340897725
Iteration: 3, Func. Count: 27, Neg. LLF: 123.18865520992324
Iteration: 4, Func. Count: 35, Neg. LLF: 114.76977864365722
Iteration: 5, Func. Count: 42, Neg. LLF: 114.76848677390244
Iteration: 6, Func. Count: 49, Neg. LLF: 114.76802115560172
Iteration: 7, Func. Count: 56, Neg. LLF: 114.76799616989847
Iteration: 8, Func. Count: 63, Neg. LLF: 114.76794940303138
Iteration: 9, Func. Count: 70, Neg. LLF: 114.97202535702344
Iteration: 10, Func. Count: 80, Neg. LLF: 114.76997049778464
Iteration: 11, Func. Count: 89, Neg. LLF: 114.76817161839804
Optimization terminated successfully (Exit mode 0)
Current function value: 114.76794607393575
Iterations: 12
Function evaluations: 90
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 29671528.435254775
Iteration: 2, Func. Count: 20, Neg. LLF: 130.96214290533624
Iteration: 3, Func. Count: 29, Neg. LLF: 115.44247455326546
Iteration: 4, Func. Count: 38, Neg. LLF: 114.95007267582193
Iteration: 5, Func. Count: 46, Neg. LLF: 115.02191886862134
Iteration: 6, Func. Count: 55, Neg. LLF: 114.99219525599354
Iteration: 7, Func. Count: 64, Neg. LLF: 114.83292594816864
Iteration: 8, Func. Count: 72, Neg. LLF: 114.79640595985414
Iteration: 9, Func. Count: 80, Neg. LLF: 114.8012796882433
Iteration: 10, Func. Count: 89, Neg. LLF: 114.77468769301825
Iteration: 11, Func. Count: 97, Neg. LLF: 114.7682346160171
Iteration: 12, Func. Count: 105, Neg. LLF: 114.76799303928026
Iteration: 13, Func. Count: 113, Neg. LLF: 114.76794534654321
Iteration: 14, Func. Count: 121, Neg. LLF: 114.76794132794882
Iteration: 15, Func. Count: 139, Neg. LLF: 114.77989386588568
Iteration: 16, Func. Count: 150, Neg. LLF: 114.76802903164034
Iteration: 17, Func. Count: 160, Neg. LLF: 114.76794761090682
Iteration: 18, Func. Count: 169, Neg. LLF: 114.76794584205905
Optimization terminated successfully (Exit mode 0)
Current function value: 114.76794584205905
Iterations: 19
Function evaluations: 169
Gradient evaluations: 18
Iteration: 1, Func. Count: 10, Neg. LLF: 31839386.887756057
Iteration: 2, Func. Count: 21, Neg. LLF: 145.03650981977376
Iteration: 3, Func. Count: 32, Neg. LLF: 117.58480011084427
Iteration: 4, Func. Count: 42, Neg. LLF: 115.96301535146175
Iteration: 5, Func. Count: 52, Neg. LLF: 115.33393874570106
Iteration: 6, Func. Count: 62, Neg. LLF: 115.08480856763555
Iteration: 7, Func. Count: 72, Neg. LLF: 117.09521415875744
Iteration: 8, Func. Count: 83, Neg. LLF: 114.38336758167802
Iteration: 9, Func. Count: 93, Neg. LLF: 114.18689960683702
Iteration: 10, Func. Count: 103, Neg. LLF: 114.07553785353547
Iteration: 11, Func. Count: 112, Neg. LLF: 114.12918856692914
Iteration: 12, Func. Count: 122, Neg. LLF: 114.07199300860532
Iteration: 13, Func. Count: 131, Neg. LLF: 114.0704718994279
Iteration: 14, Func. Count: 140, Neg. LLF: 114.070381970768
Iteration: 15, Func. Count: 149, Neg. LLF: 114.0703731973834
Iteration: 16, Func. Count: 157, Neg. LLF: 114.07037319657978
Optimization terminated successfully (Exit mode 0)
Current function value: 114.0703731973834
Iterations: 16
Function evaluations: 157
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 32188345.015948623
Iteration: 2, Func. Count: 23, Neg. LLF: 144.32638651033463
Iteration: 3, Func. Count: 35, Neg. LLF: 115.99431848402507
Iteration: 4, Func. Count: 46, Neg. LLF: 115.02589976696159
Iteration: 5, Func. Count: 56, Neg. LLF: 114.7652407632054
Iteration: 6, Func. Count: 66, Neg. LLF: 115.86106287403746
Iteration: 7, Func. Count: 77, Neg. LLF: 114.39702032346983
Iteration: 8, Func. Count: 87, Neg. LLF: 114.23628206573711
Iteration: 9, Func. Count: 97, Neg. LLF: 114.14194840125222
Iteration: 10, Func. Count: 107, Neg. LLF: 114.08822452436877
Iteration: 11, Func. Count: 117, Neg. LLF: 114.08065407261745
Iteration: 12, Func. Count: 127, Neg. LLF: 114.07785236848167
Iteration: 13, Func. Count: 137, Neg. LLF: 114.07701337634748
Iteration: 14, Func. Count: 147, Neg. LLF: 114.07690530982974
Iteration: 15, Func. Count: 157, Neg. LLF: 114.07690257743081
Iteration: 16, Func. Count: 167, Neg. LLF: 114.07690156530822
Iteration: 17, Func. Count: 176, Neg. LLF: 114.076901562544
Optimization terminated successfully (Exit mode 0)
Current function value: 114.07690156530822
Iterations: 17
Function evaluations: 176
Gradient evaluations: 17
Iteration: 1, Func. Count: 8, Neg. LLF: 128.48761376123235
Iteration: 2, Func. Count: 16, Neg. LLF: 136.13838758343894
Iteration: 3, Func. Count: 24, Neg. LLF: 117.36863417335853
Iteration: 4, Func. Count: 31, Neg. LLF: 117.86685361008287
Iteration: 5, Func. Count: 40, Neg. LLF: 117.28446178755372
Iteration: 6, Func. Count: 48, Neg. LLF: 116.95677666578142
Iteration: 7, Func. Count: 55, Neg. LLF: 116.94731902015283
Iteration: 8, Func. Count: 62, Neg. LLF: 116.94628101627022
Iteration: 9, Func. Count: 69, Neg. LLF: 116.94627748275235
Iteration: 10, Func. Count: 75, Neg. LLF: 116.94627745517407
Optimization terminated successfully (Exit mode 0)
Current function value: 116.94627748275235
Iterations: 10
Function evaluations: 75
Gradient evaluations: 10
Iteration: 1, Func. Count: 9, Neg. LLF: 130.36048401600857
Iteration: 2, Func. Count: 20, Neg. LLF: 119.75256209831713
Iteration: 3, Func. Count: 29, Neg. LLF: 160.72878640684866
Iteration: 4, Func. Count: 39, Neg. LLF: 114.04906557043364
Iteration: 5, Func. Count: 47, Neg. LLF: 114.03919552385442
Iteration: 6, Func. Count: 55, Neg. LLF: 114.03716723855446
Iteration: 7, Func. Count: 63, Neg. LLF: 114.03670498836915
Iteration: 8, Func. Count: 71, Neg. LLF: 114.03665377566833
Iteration: 9, Func. Count: 79, Neg. LLF: 114.03663481915328
Iteration: 10, Func. Count: 87, Neg. LLF: 114.03662660934803
Iteration: 11, Func. Count: 95, Neg. LLF: 114.03861013982016
Optimization terminated successfully (Exit mode 0)
Current function value: 114.03662656504942
Iterations: 12
Function evaluations: 98
Gradient evaluations: 11
Iteration: 1, Func. Count: 10, Neg. LLF: 16615397.84491713
Iteration: 2, Func. Count: 21, Neg. LLF: 167.61372480791675
Iteration: 3, Func. Count: 31, Neg. LLF: 124.71274497133922
Iteration: 4, Func. Count: 41, Neg. LLF: 114.34649909792108
Iteration: 5, Func. Count: 50, Neg. LLF: 114.30904304552423
Iteration: 6, Func. Count: 60, Neg. LLF: 114.068591656701
Iteration: 7, Func. Count: 70, Neg. LLF: 113.83568090711115
Iteration: 8, Func. Count: 79, Neg. LLF: 113.8295189752397
Iteration: 9, Func. Count: 88, Neg. LLF: 113.82803980581069
Iteration: 10, Func. Count: 97, Neg. LLF: 113.82781672585494
Iteration: 11, Func. Count: 106, Neg. LLF: 113.82773825790981
Iteration: 12, Func. Count: 115, Neg. LLF: 113.82771348807603
Iteration: 13, Func. Count: 124, Neg. LLF: 113.82770928352488
Iteration: 14, Func. Count: 132, Neg. LLF: 113.82770918294713
Optimization terminated successfully (Exit mode 0)
Current function value: 113.82770928352488
Iterations: 14
Function evaluations: 132
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 134.53547035939647
Iteration: 2, Func. Count: 24, Neg. LLF: 151.49401957955382
Iteration: 3, Func. Count: 35, Neg. LLF: 116.88213035386725
Iteration: 4, Func. Count: 46, Neg. LLF: 114.43411890519063
Iteration: 5, Func. Count: 56, Neg. LLF: 116.27749751608535
Iteration: 6, Func. Count: 67, Neg. LLF: 115.22122833865679
Iteration: 7, Func. Count: 78, Neg. LLF: 113.50312062612474
Iteration: 8, Func. Count: 88, Neg. LLF: 113.39388883651624
Iteration: 9, Func. Count: 98, Neg. LLF: 113.3543386078678
Iteration: 10, Func. Count: 108, Neg. LLF: 113.34536997893797
Iteration: 11, Func. Count: 118, Neg. LLF: 113.3427071437854
Iteration: 12, Func. Count: 128, Neg. LLF: 113.34095352360181
Iteration: 13, Func. Count: 138, Neg. LLF: 113.34085571215354
Iteration: 14, Func. Count: 148, Neg. LLF: 113.3408524613997
Iteration: 15, Func. Count: 157, Neg. LLF: 113.34085234566408
Optimization terminated successfully (Exit mode 0)
Current function value: 113.3408524613997
Iterations: 15
Function evaluations: 157
Gradient evaluations: 15
Iteration: 1, Func. Count: 12, Neg. LLF: 117.5530487375711
Iteration: 2, Func. Count: 24, Neg. LLF: 133.01979540188586
Iteration: 3, Func. Count: 36, Neg. LLF: 115.42255474673418
Iteration: 4, Func. Count: 48, Neg. LLF: 116.20795107819315
Iteration: 5, Func. Count: 60, Neg. LLF: 114.16805652825273
Iteration: 6, Func. Count: 72, Neg. LLF: 113.79604069057487
Iteration: 7, Func. Count: 84, Neg. LLF: 113.34532765152001
Iteration: 8, Func. Count: 95, Neg. LLF: 113.34136583997763
Iteration: 9, Func. Count: 106, Neg. LLF: 113.34087679285015
Iteration: 10, Func. Count: 117, Neg. LLF: 113.3408586336691
Iteration: 11, Func. Count: 128, Neg. LLF: 113.34085245191841
Iteration: 12, Func. Count: 138, Neg. LLF: 113.34085240487904
Optimization terminated successfully (Exit mode 0)
Current function value: 113.34085245191841
Iterations: 12
Function evaluations: 138
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 128.10496476962874
Iteration: 2, Func. Count: 18, Neg. LLF: 146.65104128714304
Iteration: 3, Func. Count: 27, Neg. LLF: 117.19722425947879
Iteration: 4, Func. Count: 35, Neg. LLF: 117.21536968394358
Iteration: 5, Func. Count: 44, Neg. LLF: 116.9972542577884
Iteration: 6, Func. Count: 52, Neg. LLF: 116.94932321381988
Iteration: 7, Func. Count: 60, Neg. LLF: 116.94634720961396
Iteration: 8, Func. Count: 68, Neg. LLF: 116.94628695667711
Iteration: 9, Func. Count: 76, Neg. LLF: 116.94627842465158
Iteration: 10, Func. Count: 84, Neg. LLF: 116.94627732336075
Iteration: 11, Func. Count: 91, Neg. LLF: 116.94627736639158
Optimization terminated successfully (Exit mode 0)
Current function value: 116.94627732336075
Iterations: 11
Function evaluations: 91
Gradient evaluations: 11
Iteration: 1, Func. Count: 10, Neg. LLF: 141.5100894667286
Iteration: 2, Func. Count: 21, Neg. LLF: 149.84172564704934
Iteration: 3, Func. Count: 32, Neg. LLF: 119.36140259542822
Iteration: 4, Func. Count: 42, Neg. LLF: 113.80813304444729
Iteration: 5, Func. Count: 51, Neg. LLF: 113.8097120265788
Iteration: 6, Func. Count: 61, Neg. LLF: 113.78454213679964
Iteration: 7, Func. Count: 70, Neg. LLF: 113.78423637375695
Iteration: 8, Func. Count: 79, Neg. LLF: 113.78422088154497
Iteration: 9, Func. Count: 88, Neg. LLF: 113.7842198873348
Optimization terminated successfully (Exit mode 0)
Current function value: 113.7842198873348
Iterations: 9
Function evaluations: 88
Gradient evaluations: 9
Iteration: 1, Func. Count: 11, Neg. LLF: 163.36348791636885
Iteration: 2, Func. Count: 24, Neg. LLF: 153.9777086407105
Iteration: 3, Func. Count: 36, Neg. LLF: 122.10254349172665
Iteration: 4, Func. Count: 47, Neg. LLF: 113.84599285316413
Iteration: 5, Func. Count: 57, Neg. LLF: 114.13502786708057
Iteration: 6, Func. Count: 68, Neg. LLF: 113.82844571895012
Iteration: 7, Func. Count: 78, Neg. LLF: 113.82772917614864
Iteration: 8, Func. Count: 88, Neg. LLF: 113.82771526968914
Iteration: 9, Func. Count: 98, Neg. LLF: 113.82770961434287
Iteration: 10, Func. Count: 107, Neg. LLF: 113.82770951386185
Optimization terminated successfully (Exit mode 0)
Current function value: 113.82770961434287
Iterations: 10
Function evaluations: 107
Gradient evaluations: 10
Iteration: 1, Func. Count: 12, Neg. LLF: 123.73581222624998
Iteration: 2, Func. Count: 26, Neg. LLF: 159.40142486975947
Iteration: 3, Func. Count: 39, Neg. LLF: 118.52181128406835
Iteration: 4, Func. Count: 51, Neg. LLF: 114.50878091055318
Iteration: 5, Func. Count: 62, Neg. LLF: 114.00703592618413
Iteration: 6, Func. Count: 73, Neg. LLF: 113.89944800765714
Iteration: 7, Func. Count: 84, Neg. LLF: 114.05275428895676
Iteration: 8, Func. Count: 96, Neg. LLF: 113.86538822099214
Iteration: 9, Func. Count: 108, Neg. LLF: 113.68150721049426
Iteration: 10, Func. Count: 119, Neg. LLF: 113.83993797555044
Iteration: 11, Func. Count: 131, Neg. LLF: 113.57625262453807
Iteration: 12, Func. Count: 142, Neg. LLF: 113.38222912254436
Iteration: 13, Func. Count: 153, Neg. LLF: 113.36210206928465
Iteration: 14, Func. Count: 164, Neg. LLF: 113.34387573613242
Iteration: 15, Func. Count: 175, Neg. LLF: 113.34150988097518
Iteration: 16, Func. Count: 186, Neg. LLF: 113.3409258276736
Iteration: 17, Func. Count: 197, Neg. LLF: 113.34085400432595
Iteration: 18, Func. Count: 208, Neg. LLF: 113.34085246855257
Iteration: 19, Func. Count: 218, Neg. LLF: 113.34085235291236
Optimization terminated successfully (Exit mode 0)
Current function value: 113.34085246855257
Iterations: 19
Function evaluations: 218
Gradient evaluations: 19
Iteration: 1, Func. Count: 13, Neg. LLF: 187.81759557389526
Iteration: 2, Func. Count: 26, Neg. LLF: 120.02379063551496
Iteration: 3, Func. Count: 41, Neg. LLF: 116.91520049275309
Iteration: 4, Func. Count: 54, Neg. LLF: 113.88038103215786
Iteration: 5, Func. Count: 66, Neg. LLF: 112.93789476979617
Iteration: 6, Func. Count: 78, Neg. LLF: 111.83641851951558
Iteration: 7, Func. Count: 90, Neg. LLF: 145.95672597061156
Iteration: 8, Func. Count: 104, Neg. LLF: 111.72964477734148
Iteration: 9, Func. Count: 116, Neg. LLF: 111.70178449215604
Iteration: 10, Func. Count: 128, Neg. LLF: 111.70089494106612
Iteration: 11, Func. Count: 140, Neg. LLF: 111.70089032690011
Iteration: 12, Func. Count: 152, Neg. LLF: 111.70088455038926
Iteration: 13, Func. Count: 163, Neg. LLF: 111.70088442450812
Optimization terminated successfully (Exit mode 0)
Current function value: 111.70088455038926
Iterations: 13
Function evaluations: 163
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 133.63078534401998
Iteration: 2, Func. Count: 21, Neg. LLF: 1418.3842938490293
Iteration: 3, Func. Count: 31, Neg. LLF: 117.77909135027625
Iteration: 4, Func. Count: 41, Neg. LLF: 3134815.2993135513
Iteration: 5, Func. Count: 52, Neg. LLF: 113.48723040721649
Iteration: 6, Func. Count: 62, Neg. LLF: 112.80480023336858
Iteration: 7, Func. Count: 71, Neg. LLF: 115.0803389509993
Iteration: 8, Func. Count: 82, Neg. LLF: 113.43628102612799
Iteration: 9, Func. Count: 92, Neg. LLF: 112.59355239653807
Iteration: 10, Func. Count: 102, Neg. LLF: 112.42723742151225
Iteration: 11, Func. Count: 111, Neg. LLF: 112.39682269458358
Iteration: 12, Func. Count: 120, Neg. LLF: 112.37507686191555
Iteration: 13, Func. Count: 129, Neg. LLF: 112.36220318383961
Iteration: 14, Func. Count: 138, Neg. LLF: 112.35743465152342
Iteration: 15, Func. Count: 147, Neg. LLF: 112.35705337131691
Iteration: 16, Func. Count: 156, Neg. LLF: 112.3568986262249
Iteration: 17, Func. Count: 165, Neg. LLF: 112.35689522184371
Iteration: 18, Func. Count: 173, Neg. LLF: 112.35689521781612
Optimization terminated successfully (Exit mode 0)
Current function value: 112.35689522184371
Iterations: 18
Function evaluations: 173
Gradient evaluations: 18
Iteration: 1, Func. Count: 11, Neg. LLF: 125.87920878500779
Iteration: 2, Func. Count: 23, Neg. LLF: 122.74259952705299
Iteration: 3, Func. Count: 36, Neg. LLF: 116.19986212238831
Iteration: 4, Func. Count: 47, Neg. LLF: 113.18385651214449
Iteration: 5, Func. Count: 57, Neg. LLF: 113.12777976958075
Iteration: 6, Func. Count: 67, Neg. LLF: 113.10988013238826
Iteration: 7, Func. Count: 77, Neg. LLF: 113.1050110267429
Iteration: 8, Func. Count: 87, Neg. LLF: 113.10476608378607
Iteration: 9, Func. Count: 97, Neg. LLF: 113.10475247080477
Iteration: 10, Func. Count: 107, Neg. LLF: 113.10475143489928
Iteration: 11, Func. Count: 117, Neg. LLF: 113.10475273853068
Optimization terminated successfully (Exit mode 0)
Current function value: 113.10475143700089
Iterations: 12
Function evaluations: 120
Gradient evaluations: 11
Iteration: 1, Func. Count: 12, Neg. LLF: 118.52115782101826
Iteration: 2, Func. Count: 27, Neg. LLF: 152.6473710699453
Iteration: 3, Func. Count: 39, Neg. LLF: 113.6687568388756
Iteration: 4, Func. Count: 50, Neg. LLF: 113.06743482365188
Iteration: 5, Func. Count: 61, Neg. LLF: 120.27807506984068
Iteration: 6, Func. Count: 73, Neg. LLF: 113.16977273395617
Iteration: 7, Func. Count: 85, Neg. LLF: 112.90684697766093
Iteration: 8, Func. Count: 96, Neg. LLF: 112.90475855963003
Iteration: 9, Func. Count: 107, Neg. LLF: 112.90466668403745
Iteration: 10, Func. Count: 118, Neg. LLF: 112.90461591077495
Iteration: 11, Func. Count: 128, Neg. LLF: 112.9046158402139
Optimization terminated successfully (Exit mode 0)
Current function value: 112.90461591077495
Iterations: 11
Function evaluations: 128
Gradient evaluations: 11
Iteration: 1, Func. Count: 13, Neg. LLF: 115.24342769749288
Iteration: 2, Func. Count: 26, Neg. LLF: 119.47158727345696
Iteration: 3, Func. Count: 39, Neg. LLF: 117.18859654430912
Iteration: 4, Func. Count: 52, Neg. LLF: 114.40825545910799
Iteration: 5, Func. Count: 65, Neg. LLF: 122.94246767703937
Iteration: 6, Func. Count: 79, Neg. LLF: 111.65726217939115
Iteration: 7, Func. Count: 91, Neg. LLF: 129.12663851864767
Iteration: 8, Func. Count: 104, Neg. LLF: 111.34716357439302
Iteration: 9, Func. Count: 116, Neg. LLF: 111.32352339347342
Iteration: 10, Func. Count: 128, Neg. LLF: 111.32189157265817
Iteration: 11, Func. Count: 140, Neg. LLF: 111.32185243870879
Iteration: 12, Func. Count: 153, Neg. LLF: 111.32027749809764
Iteration: 13, Func. Count: 165, Neg. LLF: 111.32026610038064
Iteration: 14, Func. Count: 176, Neg. LLF: 111.32026607224446
Optimization terminated successfully (Exit mode 0)
Current function value: 111.32026610038064
Iterations: 14
Function evaluations: 176
Gradient evaluations: 14
Iteration: 1, Func. Count: 14, Neg. LLF: 169.82729834778578
Iteration: 2, Func. Count: 28, Neg. LLF: 114.72038176110001
Iteration: 3, Func. Count: 43, Neg. LLF: 120.13775625974222
Iteration: 4, Func. Count: 57, Neg. LLF: 111.74367546893836
Iteration: 5, Func. Count: 70, Neg. LLF: 111.52740314169742
Iteration: 6, Func. Count: 83, Neg. LLF: 111.36743103358164
Iteration: 7, Func. Count: 96, Neg. LLF: 111.34185279033004
Iteration: 8, Func. Count: 109, Neg. LLF: 111.32071783798287
Iteration: 9, Func. Count: 122, Neg. LLF: 111.32027211353038
Iteration: 10, Func. Count: 135, Neg. LLF: 111.32026618781494
Iteration: 11, Func. Count: 147, Neg. LLF: 111.32026618259856
Optimization terminated successfully (Exit mode 0)
Current function value: 111.32026618781494
Iterations: 11
Function evaluations: 147
Gradient evaluations: 11
Iteration: 1, Func. Count: 7, Neg. LLF: 124.80476348263447
Iteration: 2, Func. Count: 15, Neg. LLF: 117.53140638086188
Iteration: 3, Func. Count: 21, Neg. LLF: 123.33518167347701
Iteration: 4, Func. Count: 28, Neg. LLF: 141.79769033365346
Iteration: 5, Func. Count: 37, Neg. LLF: 126.18532604091773
Iteration: 6, Func. Count: 46, Neg. LLF: 116.6630000515335
Iteration: 7, Func. Count: 52, Neg. LLF: 116.64943628628129
Iteration: 8, Func. Count: 58, Neg. LLF: 116.64919345654383
Iteration: 9, Func. Count: 64, Neg. LLF: 116.64917120116593
Iteration: 10, Func. Count: 70, Neg. LLF: 116.64916788565856
Iteration: 11, Func. Count: 75, Neg. LLF: 116.64916788576798
Optimization terminated successfully (Exit mode 0)
Current function value: 116.64916788565856
Iterations: 11
Function evaluations: 75
Gradient evaluations: 11
Iteration: 1, Func. Count: 8, Neg. LLF: 26912895.294291575
Iteration: 2, Func. Count: 17, Neg. LLF: 142.02505354912188
Iteration: 3, Func. Count: 25, Neg. LLF: 130.62165878755388
Iteration: 4, Func. Count: 33, Neg. LLF: 126.18244224028635
Iteration: 5, Func. Count: 41, Neg. LLF: 120.16249309757794
Iteration: 6, Func. Count: 49, Neg. LLF: 119.93755821990402
Iteration: 7, Func. Count: 57, Neg. LLF: 115.80449394531048
Iteration: 8, Func. Count: 65, Neg. LLF: 115.11375424850885
Iteration: 9, Func. Count: 72, Neg. LLF: 118.8971684147579
Iteration: 10, Func. Count: 80, Neg. LLF: 116.64239744514265
Iteration: 11, Func. Count: 89, Neg. LLF: 114.90131471817449
Iteration: 12, Func. Count: 96, Neg. LLF: 114.88337680001642
Iteration: 13, Func. Count: 103, Neg. LLF: 114.88316372599931
Iteration: 14, Func. Count: 110, Neg. LLF: 114.88314801964242
Iteration: 15, Func. Count: 117, Neg. LLF: 114.88314729346303
Optimization terminated successfully (Exit mode 0)
Current function value: 114.88314729346303
Iterations: 15
Function evaluations: 117
Gradient evaluations: 15
Iteration: 1, Func. Count: 9, Neg. LLF: 26854433.33783851
Iteration: 2, Func. Count: 19, Neg. LLF: 129.25173577517154
Iteration: 3, Func. Count: 28, Neg. LLF: 120.25884823203646
Iteration: 4, Func. Count: 37, Neg. LLF: 114.81990946051735
Iteration: 5, Func. Count: 45, Neg. LLF: 114.81370850278786
Iteration: 6, Func. Count: 53, Neg. LLF: 114.80799007575621
Iteration: 7, Func. Count: 61, Neg. LLF: 114.80726827030068
Iteration: 8, Func. Count: 69, Neg. LLF: 114.80725260588272
Iteration: 9, Func. Count: 76, Neg. LLF: 114.80725260580056
Optimization terminated successfully (Exit mode 0)
Current function value: 114.80725260588272
Iterations: 9
Function evaluations: 76
Gradient evaluations: 9
Iteration: 1, Func. Count: 10, Neg. LLF: 26778495.966327265
Iteration: 2, Func. Count: 21, Neg. LLF: 124.65287294019085
Iteration: 3, Func. Count: 31, Neg. LLF: 115.20708303065351
Iteration: 4, Func. Count: 40, Neg. LLF: 114.95243644417607
Iteration: 5, Func. Count: 49, Neg. LLF: 114.93344036660277
Iteration: 6, Func. Count: 58, Neg. LLF: 114.9282713031286
Iteration: 7, Func. Count: 67, Neg. LLF: 114.92779419149235
Iteration: 8, Func. Count: 76, Neg. LLF: 114.92778387710948
Iteration: 9, Func. Count: 85, Neg. LLF: 114.92778216965456
Iteration: 10, Func. Count: 93, Neg. LLF: 114.92778216946698
Optimization terminated successfully (Exit mode 0)
Current function value: 114.92778216965456
Iterations: 10
Function evaluations: 93
Gradient evaluations: 10
Iteration: 1, Func. Count: 11, Neg. LLF: 26761640.40080027
Iteration: 2, Func. Count: 23, Neg. LLF: 1881.8513605541507
Iteration: 3, Func. Count: 36, Neg. LLF: 127.18962265898773
Iteration: 4, Func. Count: 47, Neg. LLF: 124.0050833560954
Iteration: 5, Func. Count: 58, Neg. LLF: 119.5414542267512
Iteration: 6, Func. Count: 69, Neg. LLF: 118.57598786330314
Iteration: 7, Func. Count: 80, Neg. LLF: 114.80387207822781
Iteration: 8, Func. Count: 90, Neg. LLF: 114.60533390759042
Iteration: 9, Func. Count: 100, Neg. LLF: 115.05322129625687
Iteration: 10, Func. Count: 111, Neg. LLF: 114.51050379495075
Iteration: 11, Func. Count: 121, Neg. LLF: 114.49320744119868
Iteration: 12, Func. Count: 131, Neg. LLF: 114.47193019090695
Iteration: 13, Func. Count: 141, Neg. LLF: 114.18782642028212
Iteration: 14, Func. Count: 151, Neg. LLF: 1347.9850221074942
Iteration: 15, Func. Count: 163, Neg. LLF: 72784.46543865399
Iteration: 16, Func. Count: 175, Neg. LLF: 115.7800013824387
Iteration: 17, Func. Count: 186, Neg. LLF: 114.22041404707664
Iteration: 18, Func. Count: 197, Neg. LLF: 114.07379436868642
Iteration: 19, Func. Count: 207, Neg. LLF: 114.07377682648448
Iteration: 20, Func. Count: 216, Neg. LLF: 114.07377682648341
Optimization terminated successfully (Exit mode 0)
Current function value: 114.07377682648448
Iterations: 21
Function evaluations: 216
Gradient evaluations: 20
Iteration: 1, Func. Count: 8, Neg. LLF: 124.7262693468418
Iteration: 2, Func. Count: 17, Neg. LLF: 117.22867445106064
Iteration: 3, Func. Count: 24, Neg. LLF: 118.06098877112876
Iteration: 4, Func. Count: 32, Neg. LLF: 132.62547348101015
Iteration: 5, Func. Count: 42, Neg. LLF: 118.03129384501676
Iteration: 6, Func. Count: 50, Neg. LLF: 116.65242056759088
Iteration: 7, Func. Count: 57, Neg. LLF: 116.6495830260567
Iteration: 8, Func. Count: 64, Neg. LLF: 116.64917925886867
Iteration: 9, Func. Count: 71, Neg. LLF: 116.6491677279399
Iteration: 10, Func. Count: 77, Neg. LLF: 116.64916776936832
Optimization terminated successfully (Exit mode 0)
Current function value: 116.6491677279399
Iterations: 10
Function evaluations: 77
Gradient evaluations: 10
Iteration: 1, Func. Count: 9, Neg. LLF: 163.3935106393452
Iteration: 2, Func. Count: 20, Neg. LLF: 127.09786490842701
Iteration: 3, Func. Count: 30, Neg. LLF: 122.70109485133224
Iteration: 4, Func. Count: 39, Neg. LLF: 114.76992796046304
Iteration: 5, Func. Count: 47, Neg. LLF: 114.76850926655928
Iteration: 6, Func. Count: 55, Neg. LLF: 114.76802981382863
Iteration: 7, Func. Count: 63, Neg. LLF: 114.76799181293558
Iteration: 8, Func. Count: 71, Neg. LLF: 114.76796777590229
Iteration: 9, Func. Count: 79, Neg. LLF: 114.96839813151959
Iteration: 10, Func. Count: 90, Neg. LLF: 114.77084944534846
Iteration: 11, Func. Count: 100, Neg. LLF: 114.76819201402249
Iteration: 12, Func. Count: 109, Neg. LLF: 114.76794584205786
Iteration: 13, Func. Count: 116, Neg. LLF: 114.76794583453344
Optimization terminated successfully (Exit mode 0)
Current function value: 114.76794584205786
Iterations: 14
Function evaluations: 116
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 29817892.992736347
Iteration: 2, Func. Count: 22, Neg. LLF: 131.93083575382587
Iteration: 3, Func. Count: 32, Neg. LLF: 115.65037654011451
Iteration: 4, Func. Count: 42, Neg. LLF: 114.94462438233799
Iteration: 5, Func. Count: 51, Neg. LLF: 115.05004023935663
Iteration: 6, Func. Count: 61, Neg. LLF: 114.93993789988883
Iteration: 7, Func. Count: 71, Neg. LLF: 114.85357138305288
Iteration: 8, Func. Count: 80, Neg. LLF: 114.80275396646437
Iteration: 9, Func. Count: 89, Neg. LLF: 114.78271724202027
Iteration: 10, Func. Count: 98, Neg. LLF: 114.7688981888091
Iteration: 11, Func. Count: 107, Neg. LLF: 114.76814537687854
Iteration: 12, Func. Count: 116, Neg. LLF: 114.7679493070238
Iteration: 13, Func. Count: 125, Neg. LLF: 114.76794784040287
Iteration: 14, Func. Count: 134, Neg. LLF: 114.76794584992415
Iteration: 15, Func. Count: 142, Neg. LLF: 114.76794585154077
Optimization terminated successfully (Exit mode 0)
Current function value: 114.76794584992415
Iterations: 16
Function evaluations: 142
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 32241362.301789984
Iteration: 2, Func. Count: 23, Neg. LLF: 148.39097074769214
Iteration: 3, Func. Count: 35, Neg. LLF: 117.62161270598816
Iteration: 4, Func. Count: 46, Neg. LLF: 115.84426137779464
Iteration: 5, Func. Count: 57, Neg. LLF: 115.2480247274393
Iteration: 6, Func. Count: 68, Neg. LLF: 115.00619876042542
Iteration: 7, Func. Count: 79, Neg. LLF: 118.57851959374563
Iteration: 8, Func. Count: 91, Neg. LLF: 114.38058786279497
Iteration: 9, Func. Count: 102, Neg. LLF: 114.12213170975281
Iteration: 10, Func. Count: 112, Neg. LLF: 114.07559143824066
Iteration: 11, Func. Count: 122, Neg. LLF: 114.07691041735676
Iteration: 12, Func. Count: 133, Neg. LLF: 114.07176393638609
Iteration: 13, Func. Count: 143, Neg. LLF: 114.07122058529022
Iteration: 14, Func. Count: 153, Neg. LLF: 114.07046361061373
Iteration: 15, Func. Count: 163, Neg. LLF: 114.07038742023947
Iteration: 16, Func. Count: 173, Neg. LLF: 114.07037603686545
Iteration: 17, Func. Count: 183, Neg. LLF: 114.07037271102863
Iteration: 18, Func. Count: 192, Neg. LLF: 114.0703727102207
Optimization terminated successfully (Exit mode 0)
Current function value: 114.07037271102863
Iterations: 18
Function evaluations: 192
Gradient evaluations: 18
Iteration: 1, Func. Count: 12, Neg. LLF: 32549483.407590933
Iteration: 2, Func. Count: 25, Neg. LLF: 145.94998140490128
Iteration: 3, Func. Count: 38, Neg. LLF: 115.71839253218593
Iteration: 4, Func. Count: 50, Neg. LLF: 115.0436858063615
Iteration: 5, Func. Count: 61, Neg. LLF: 114.71408053793681
Iteration: 6, Func. Count: 72, Neg. LLF: 116.06477469470076
Iteration: 7, Func. Count: 84, Neg. LLF: 114.5054003759658
Iteration: 8, Func. Count: 95, Neg. LLF: 114.30019680949847
Iteration: 9, Func. Count: 106, Neg. LLF: 114.22754485994692
Iteration: 10, Func. Count: 117, Neg. LLF: 114.11793225574512
Iteration: 11, Func. Count: 128, Neg. LLF: 114.08910294969915
Iteration: 12, Func. Count: 139, Neg. LLF: 114.07449348402405
Iteration: 13, Func. Count: 150, Neg. LLF: 114.0715562850571
Iteration: 14, Func. Count: 161, Neg. LLF: 114.07081984724253
Iteration: 15, Func. Count: 172, Neg. LLF: 114.07043705913057
Iteration: 16, Func. Count: 183, Neg. LLF: 114.07037618602268
Iteration: 17, Func. Count: 194, Neg. LLF: 114.07037256434188
Iteration: 18, Func. Count: 204, Neg. LLF: 114.07037259580173
Optimization terminated successfully (Exit mode 0)
Current function value: 114.07037256434188
Iterations: 18
Function evaluations: 204
Gradient evaluations: 18
Iteration: 1, Func. Count: 9, Neg. LLF: 124.73022418443513
Iteration: 2, Func. Count: 19, Neg. LLF: 118.50508309538242
Iteration: 3, Func. Count: 28, Neg. LLF: 117.19336175275737
Iteration: 4, Func. Count: 36, Neg. LLF: 119.31280392600686
Iteration: 5, Func. Count: 46, Neg. LLF: 124.70066621624267
Iteration: 6, Func. Count: 57, Neg. LLF: 124.8114816851796
Iteration: 7, Func. Count: 66, Neg. LLF: 116.65602088414443
Iteration: 8, Func. Count: 74, Neg. LLF: 116.68906339854
Iteration: 9, Func. Count: 83, Neg. LLF: 116.61144902511745
Iteration: 10, Func. Count: 91, Neg. LLF: 116.60984575261313
Iteration: 11, Func. Count: 99, Neg. LLF: 116.60978967388313
Iteration: 12, Func. Count: 107, Neg. LLF: 116.60976978729718
Iteration: 13, Func. Count: 115, Neg. LLF: 116.60976727242293
Iteration: 14, Func. Count: 122, Neg. LLF: 116.60976723638969
Optimization terminated successfully (Exit mode 0)
Current function value: 116.60976727242293
Iterations: 14
Function evaluations: 122
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 131.27954042372068
Iteration: 2, Func. Count: 22, Neg. LLF: 130.6338388680977
Iteration: 3, Func. Count: 32, Neg. LLF: 859.5998037592469
Iteration: 4, Func. Count: 43, Neg. LLF: 114.0571189989235
Iteration: 5, Func. Count: 52, Neg. LLF: 114.0427222407064
Iteration: 6, Func. Count: 61, Neg. LLF: 114.0372023243647
Iteration: 7, Func. Count: 70, Neg. LLF: 114.03665136347142
Iteration: 8, Func. Count: 79, Neg. LLF: 114.0366301293489
Iteration: 9, Func. Count: 88, Neg. LLF: 114.03662930228862
Optimization terminated successfully (Exit mode 0)
Current function value: 114.03662930228862
Iterations: 9
Function evaluations: 88
Gradient evaluations: 9
Iteration: 1, Func. Count: 11, Neg. LLF: 16686760.01455104
Iteration: 2, Func. Count: 23, Neg. LLF: 175.20406591909745
Iteration: 3, Func. Count: 34, Neg. LLF: 126.6993780640834
Iteration: 4, Func. Count: 45, Neg. LLF: 114.34607114560768
Iteration: 5, Func. Count: 55, Neg. LLF: 114.0484075135848
Iteration: 6, Func. Count: 65, Neg. LLF: 113.96044070289122
Iteration: 7, Func. Count: 75, Neg. LLF: 113.83278374607809
Iteration: 8, Func. Count: 85, Neg. LLF: 113.82932138721934
Iteration: 9, Func. Count: 95, Neg. LLF: 113.827943288897
Iteration: 10, Func. Count: 105, Neg. LLF: 113.82781177363664
Iteration: 11, Func. Count: 115, Neg. LLF: 113.82772521301862
Iteration: 12, Func. Count: 125, Neg. LLF: 113.82770964167403
Iteration: 13, Func. Count: 135, Neg. LLF: 113.8277091175285
Optimization terminated successfully (Exit mode 0)
Current function value: 113.8277091175285
Iterations: 13
Function evaluations: 135
Gradient evaluations: 13
Iteration: 1, Func. Count: 12, Neg. LLF: 131.1551915902943
Iteration: 2, Func. Count: 26, Neg. LLF: 153.49588332240714
Iteration: 3, Func. Count: 38, Neg. LLF: 116.81130584380828
Iteration: 4, Func. Count: 50, Neg. LLF: 114.41922496402749
Iteration: 5, Func. Count: 61, Neg. LLF: 116.27664585535186
Iteration: 6, Func. Count: 73, Neg. LLF: 115.26334715251019
Iteration: 7, Func. Count: 85, Neg. LLF: 113.52814943398789
Iteration: 8, Func. Count: 96, Neg. LLF: 113.37966881650797
Iteration: 9, Func. Count: 107, Neg. LLF: 113.36338236633117
Iteration: 10, Func. Count: 118, Neg. LLF: 113.34603269180928
Iteration: 11, Func. Count: 129, Neg. LLF: 113.34328540866315
Iteration: 12, Func. Count: 140, Neg. LLF: 113.34088829780731
Iteration: 13, Func. Count: 151, Neg. LLF: 113.34085310090896
Iteration: 14, Func. Count: 162, Neg. LLF: 113.34085245312072
Optimization terminated successfully (Exit mode 0)
Current function value: 113.34085245312072
Iterations: 14
Function evaluations: 162
Gradient evaluations: 14
Iteration: 1, Func. Count: 13, Neg. LLF: 119.87190491399198
Iteration: 2, Func. Count: 26, Neg. LLF: 127.96895284893493
Iteration: 3, Func. Count: 40, Neg. LLF: 115.95464607398328
Iteration: 4, Func. Count: 53, Neg. LLF: 114.85752731955223
Iteration: 5, Func. Count: 66, Neg. LLF: 113.76304403881119
Iteration: 6, Func. Count: 78, Neg. LLF: 113.91968578903065
Iteration: 7, Func. Count: 91, Neg. LLF: 113.42327287526999
Iteration: 8, Func. Count: 103, Neg. LLF: 113.34850966725342
Iteration: 9, Func. Count: 115, Neg. LLF: 113.34215617124941
Iteration: 10, Func. Count: 127, Neg. LLF: 113.34097696785227
Iteration: 11, Func. Count: 139, Neg. LLF: 113.3408838619714
Iteration: 12, Func. Count: 151, Neg. LLF: 113.34085577078984
Iteration: 13, Func. Count: 163, Neg. LLF: 113.34085247831534
Iteration: 14, Func. Count: 174, Neg. LLF: 113.34085243130478
Optimization terminated successfully (Exit mode 0)
Current function value: 113.34085247831534
Iterations: 14
Function evaluations: 174
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 125.7473763789514
Iteration: 2, Func. Count: 21, Neg. LLF: 119.73983180131734
Iteration: 3, Func. Count: 31, Neg. LLF: 117.22990166117042
Iteration: 4, Func. Count: 40, Neg. LLF: 124.69607336766478
Iteration: 5, Func. Count: 51, Neg. LLF: 121.46739071443005
Iteration: 6, Func. Count: 64, Neg. LLF: 123.08588089274586
Iteration: 7, Func. Count: 74, Neg. LLF: 116.50514506253732
Iteration: 8, Func. Count: 83, Neg. LLF: 116.48124611316852
Iteration: 9, Func. Count: 92, Neg. LLF: 116.48016721010461
Iteration: 10, Func. Count: 101, Neg. LLF: 116.48007811449007
Iteration: 11, Func. Count: 110, Neg. LLF: 116.48004196113045
Iteration: 12, Func. Count: 119, Neg. LLF: 116.48002153774524
Iteration: 13, Func. Count: 128, Neg. LLF: 116.48001969442325
Iteration: 14, Func. Count: 136, Neg. LLF: 116.48001965305849
Optimization terminated successfully (Exit mode 0)
Current function value: 116.48001969442325
Iterations: 14
Function evaluations: 136
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 143.1163916192763
Iteration: 2, Func. Count: 23, Neg. LLF: 144.21736038849838
Iteration: 3, Func. Count: 35, Neg. LLF: 118.86463309560529
Iteration: 4, Func. Count: 46, Neg. LLF: 113.80637567728435
Iteration: 5, Func. Count: 56, Neg. LLF: 113.8005283172921
Iteration: 6, Func. Count: 67, Neg. LLF: 113.78440949739465
Iteration: 7, Func. Count: 77, Neg. LLF: 113.78426573056952
Iteration: 8, Func. Count: 87, Neg. LLF: 113.78422087465579
Iteration: 9, Func. Count: 97, Neg. LLF: 113.78421957821278
Iteration: 10, Func. Count: 106, Neg. LLF: 113.78421946990187
Optimization terminated successfully (Exit mode 0)
Current function value: 113.78421957821278
Iterations: 11
Function evaluations: 106
Gradient evaluations: 10
Iteration: 1, Func. Count: 12, Neg. LLF: 162.95327097564268
Iteration: 2, Func. Count: 26, Neg. LLF: 154.47442107905385
Iteration: 3, Func. Count: 39, Neg. LLF: 122.12990141537021
Iteration: 4, Func. Count: 51, Neg. LLF: 113.84495280146525
Iteration: 5, Func. Count: 62, Neg. LLF: 113.9504637942137
Iteration: 6, Func. Count: 74, Neg. LLF: 113.83083298779283
Iteration: 7, Func. Count: 85, Neg. LLF: 113.82775423913615
Iteration: 8, Func. Count: 96, Neg. LLF: 113.82771920192788
Iteration: 9, Func. Count: 107, Neg. LLF: 113.82771207554818
Iteration: 10, Func. Count: 118, Neg. LLF: 113.8277092608455
Iteration: 11, Func. Count: 128, Neg. LLF: 113.82770916033104
Optimization terminated successfully (Exit mode 0)
Current function value: 113.8277092608455
Iterations: 11
Function evaluations: 128
Gradient evaluations: 11
Iteration: 1, Func. Count: 13, Neg. LLF: 121.74939547888377
Iteration: 2, Func. Count: 28, Neg. LLF: 163.11849804726626
Iteration: 3, Func. Count: 42, Neg. LLF: 118.73028839268562
Iteration: 4, Func. Count: 55, Neg. LLF: 114.57958812891432
Iteration: 5, Func. Count: 67, Neg. LLF: 113.98770945829298
Iteration: 6, Func. Count: 79, Neg. LLF: 113.88929363510685
Iteration: 7, Func. Count: 91, Neg. LLF: 114.3828546088744
Iteration: 8, Func. Count: 104, Neg. LLF: 113.85518252171993
Iteration: 9, Func. Count: 117, Neg. LLF: 113.71897475219578
Iteration: 10, Func. Count: 129, Neg. LLF: 113.57439222784856
Iteration: 11, Func. Count: 141, Neg. LLF: 113.48530712772308
Iteration: 12, Func. Count: 153, Neg. LLF: 113.40100909122484
Iteration: 13, Func. Count: 165, Neg. LLF: 113.37235520203104
Iteration: 14, Func. Count: 177, Neg. LLF: 113.34463094286569
Iteration: 15, Func. Count: 189, Neg. LLF: 113.3418190445713
Iteration: 16, Func. Count: 201, Neg. LLF: 113.34088507570456
Iteration: 17, Func. Count: 213, Neg. LLF: 113.3408532059751
Iteration: 18, Func. Count: 225, Neg. LLF: 113.34085202935226
Iteration: 19, Func. Count: 236, Neg. LLF: 113.34085191367475
Optimization terminated successfully (Exit mode 0)
Current function value: 113.34085202935226
Iterations: 20
Function evaluations: 236
Gradient evaluations: 19
Iteration: 1, Func. Count: 14, Neg. LLF: 200.9757557326662
Iteration: 2, Func. Count: 29, Neg. LLF: 125.8708109498319
Iteration: 3, Func. Count: 44, Neg. LLF: 116.15645637990087
Iteration: 4, Func. Count: 58, Neg. LLF: 113.8740471467425
Iteration: 5, Func. Count: 71, Neg. LLF: 113.6873414038757
Iteration: 6, Func. Count: 84, Neg. LLF: 112.51619826754347
Iteration: 7, Func. Count: 97, Neg. LLF: 120.5907648852664
Iteration: 8, Func. Count: 111, Neg. LLF: 111.78005768669648
Iteration: 9, Func. Count: 124, Neg. LLF: 111.70809647225023
Iteration: 10, Func. Count: 137, Neg. LLF: 111.70136756435633
Iteration: 11, Func. Count: 150, Neg. LLF: 111.70089120935756
Iteration: 12, Func. Count: 163, Neg. LLF: 111.70121822591177
Iteration: 13, Func. Count: 177, Neg. LLF: 111.70088450489321
Iteration: 14, Func. Count: 189, Neg. LLF: 111.70088437896041
Optimization terminated successfully (Exit mode 0)
Current function value: 111.70088450489321
Iterations: 14
Function evaluations: 189
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 124.89907100203314
Iteration: 2, Func. Count: 22, Neg. LLF: 183.8437527563138
Iteration: 3, Func. Count: 33, Neg. LLF: 125.86987858059298
Iteration: 4, Func. Count: 44, Neg. LLF: 9958990.701109469
Iteration: 5, Func. Count: 55, Neg. LLF: 3812871.9799185265
Iteration: 6, Func. Count: 66, Neg. LLF: 113.34961147124311
Iteration: 7, Func. Count: 77, Neg. LLF: 112.27459832307775
Iteration: 8, Func. Count: 88, Neg. LLF: 111.37845239455358
Iteration: 9, Func. Count: 98, Neg. LLF: 111.35739759402848
Iteration: 10, Func. Count: 108, Neg. LLF: 111.351629404774
Iteration: 11, Func. Count: 118, Neg. LLF: 111.34666820488411
Iteration: 12, Func. Count: 128, Neg. LLF: 111.34239132374732
Iteration: 13, Func. Count: 138, Neg. LLF: 111.33832475864207
Iteration: 14, Func. Count: 148, Neg. LLF: 111.33708371146687
Iteration: 15, Func. Count: 158, Neg. LLF: 111.337068843974
Iteration: 16, Func. Count: 167, Neg. LLF: 111.33706884397323
Optimization terminated successfully (Exit mode 0)
Current function value: 111.337068843974
Iterations: 16
Function evaluations: 167
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 127.258278192381
Iteration: 2, Func. Count: 25, Neg. LLF: 121.63585269760425
Iteration: 3, Func. Count: 39, Neg. LLF: 116.33381674904444
Iteration: 4, Func. Count: 51, Neg. LLF: 113.18236147100414
Iteration: 5, Func. Count: 62, Neg. LLF: 113.13591686465936
Iteration: 6, Func. Count: 73, Neg. LLF: 113.11100329212732
Iteration: 7, Func. Count: 84, Neg. LLF: 113.10520427597726
Iteration: 8, Func. Count: 95, Neg. LLF: 113.10477492802883
Iteration: 9, Func. Count: 106, Neg. LLF: 113.10475164141211
Iteration: 10, Func. Count: 117, Neg. LLF: 113.10716198936177
Optimization terminated successfully (Exit mode 0)
Current function value: 113.10475142278443
Iterations: 11
Function evaluations: 119
Gradient evaluations: 10
Iteration: 1, Func. Count: 13, Neg. LLF: 118.19032141310225
Iteration: 2, Func. Count: 29, Neg. LLF: 153.6441866998922
Iteration: 3, Func. Count: 42, Neg. LLF: 113.82349185285027
Iteration: 4, Func. Count: 55, Neg. LLF: 113.04290163964085
Iteration: 5, Func. Count: 67, Neg. LLF: 116.70934212020154
Iteration: 6, Func. Count: 80, Neg. LLF: 112.92878403856157
Iteration: 7, Func. Count: 92, Neg. LLF: 112.90650420723998
Iteration: 8, Func. Count: 104, Neg. LLF: 112.90529499059879
Iteration: 9, Func. Count: 116, Neg. LLF: 112.90462066707447
Iteration: 10, Func. Count: 128, Neg. LLF: 112.90461597808797
Iteration: 11, Func. Count: 139, Neg. LLF: 112.90461590745355
Optimization terminated successfully (Exit mode 0)
Current function value: 112.90461597808797
Iterations: 11
Function evaluations: 139
Gradient evaluations: 11
Iteration: 1, Func. Count: 14, Neg. LLF: 115.54161734945882
Iteration: 2, Func. Count: 28, Neg. LLF: 115.79292217994612
Iteration: 3, Func. Count: 43, Neg. LLF: 141.54725712345473
Iteration: 4, Func. Count: 58, Neg. LLF: 196.67975144868976
Iteration: 5, Func. Count: 72, Neg. LLF: 112.82823106236678
Iteration: 6, Func. Count: 86, Neg. LLF: 121.73182810123812
Iteration: 7, Func. Count: 100, Neg. LLF: 111.79631647333176
Iteration: 8, Func. Count: 113, Neg. LLF: 111.47257631235286
Iteration: 9, Func. Count: 126, Neg. LLF: 111.51884869000212
Iteration: 10, Func. Count: 140, Neg. LLF: 111.30977538863193
Iteration: 11, Func. Count: 153, Neg. LLF: 111.2769033271257
Iteration: 12, Func. Count: 166, Neg. LLF: 111.27025416743605
Iteration: 13, Func. Count: 179, Neg. LLF: 111.26608012600238
Iteration: 14, Func. Count: 192, Neg. LLF: 111.2627983314604
Iteration: 15, Func. Count: 205, Neg. LLF: 111.26250129657154
Iteration: 16, Func. Count: 218, Neg. LLF: 111.26247074645848
Iteration: 17, Func. Count: 230, Neg. LLF: 111.26247074651847
Optimization terminated successfully (Exit mode 0)
Current function value: 111.26247074645848
Iterations: 17
Function evaluations: 230
Gradient evaluations: 17
Iteration: 1, Func. Count: 15, Neg. LLF: 185.20688126205593
Iteration: 2, Func. Count: 30, Neg. LLF: 114.47891793943693
Iteration: 3, Func. Count: 46, Neg. LLF: 123.46356926858653
Iteration: 4, Func. Count: 61, Neg. LLF: 162.7911492747696
Iteration: 5, Func. Count: 77, Neg. LLF: 111.84653274307087
Iteration: 6, Func. Count: 91, Neg. LLF: 111.83711816157691
Iteration: 7, Func. Count: 106, Neg. LLF: 111.51132128116593
Iteration: 8, Func. Count: 121, Neg. LLF: 114.4305615922616
Iteration: 9, Func. Count: 137, Neg. LLF: 111.29193623465952
Iteration: 10, Func. Count: 151, Neg. LLF: 111.28616672086791
Iteration: 11, Func. Count: 165, Neg. LLF: 111.2846569384558
Iteration: 12, Func. Count: 179, Neg. LLF: 111.28207397636422
Iteration: 13, Func. Count: 193, Neg. LLF: 111.2817345475387
Iteration: 14, Func. Count: 207, Neg. LLF: 111.28170238296353
Iteration: 15, Func. Count: 221, Neg. LLF: 111.28169940583311
Iteration: 16, Func. Count: 234, Neg. LLF: 111.28169939275594
Optimization terminated successfully (Exit mode 0)
Current function value: 111.28169940583311
Iterations: 16
Function evaluations: 234
Gradient evaluations: 16
Iteration: 1, Func. Count: 8, Neg. LLF: 123.16993086566836
Iteration: 2, Func. Count: 16, Neg. LLF: 149.67572100126583
Iteration: 3, Func. Count: 24, Neg. LLF: 123.31077854280015
Iteration: 4, Func. Count: 33, Neg. LLF: 119.20312198790259
Iteration: 5, Func. Count: 41, Neg. LLF: 192.05004166271237
Iteration: 6, Func. Count: 49, Neg. LLF: 118.14381621702783
Iteration: 7, Func. Count: 57, Neg. LLF: 121.336368902726
Iteration: 8, Func. Count: 65, Neg. LLF: 115.80016654738031
Iteration: 9, Func. Count: 73, Neg. LLF: 115.3485609939422
Iteration: 10, Func. Count: 80, Neg. LLF: 115.34888976261577
Iteration: 11, Func. Count: 88, Neg. LLF: 115.34790960325037
Iteration: 12, Func. Count: 95, Neg. LLF: 115.34789241682999
Iteration: 13, Func. Count: 101, Neg. LLF: 115.34789241682049
Optimization terminated successfully (Exit mode 0)
Current function value: 115.34789241682999
Iterations: 13
Function evaluations: 101
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 26806182.016226403
Iteration: 2, Func. Count: 19, Neg. LLF: 140.37299526740145
Iteration: 3, Func. Count: 28, Neg. LLF: 130.23334570094187
Iteration: 4, Func. Count: 37, Neg. LLF: 126.2511350971918
Iteration: 5, Func. Count: 46, Neg. LLF: 117.7414577777479
Iteration: 6, Func. Count: 55, Neg. LLF: 130.05509820111052
Iteration: 7, Func. Count: 64, Neg. LLF: 115.34758809372613
Iteration: 8, Func. Count: 72, Neg. LLF: 115.20357657885495
Iteration: 9, Func. Count: 80, Neg. LLF: 120.58190416456003
Iteration: 10, Func. Count: 90, Neg. LLF: 115.16939899246074
Iteration: 11, Func. Count: 99, Neg. LLF: 114.88663174796537
Iteration: 12, Func. Count: 107, Neg. LLF: 114.88325240556179
Iteration: 13, Func. Count: 115, Neg. LLF: 114.88314839085602
Iteration: 14, Func. Count: 123, Neg. LLF: 114.88314748064383
Optimization terminated successfully (Exit mode 0)
Current function value: 114.88314748064383
Iterations: 14
Function evaluations: 123
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 26779956.73675015
Iteration: 2, Func. Count: 21, Neg. LLF: 127.9723185291102
Iteration: 3, Func. Count: 31, Neg. LLF: 119.9107805350171
Iteration: 4, Func. Count: 41, Neg. LLF: 114.82003285255499
Iteration: 5, Func. Count: 50, Neg. LLF: 114.81435783439508
Iteration: 6, Func. Count: 59, Neg. LLF: 114.80951328406552
Iteration: 7, Func. Count: 68, Neg. LLF: 114.80732563783918
Iteration: 8, Func. Count: 77, Neg. LLF: 114.80725377684253
Iteration: 9, Func. Count: 86, Neg. LLF: 114.80725262399834
Iteration: 10, Func. Count: 94, Neg. LLF: 114.80725262395681
Optimization terminated successfully (Exit mode 0)
Current function value: 114.80725262399834
Iterations: 10
Function evaluations: 94
Gradient evaluations: 10
Iteration: 1, Func. Count: 11, Neg. LLF: 26711769.760738745
Iteration: 2, Func. Count: 23, Neg. LLF: 123.48073739799982
Iteration: 3, Func. Count: 34, Neg. LLF: 115.21683728864886
Iteration: 4, Func. Count: 44, Neg. LLF: 114.95102322472027
Iteration: 5, Func. Count: 54, Neg. LLF: 114.93326176530061
Iteration: 6, Func. Count: 64, Neg. LLF: 114.92817947427096
Iteration: 7, Func. Count: 74, Neg. LLF: 114.927795901667
Iteration: 8, Func. Count: 84, Neg. LLF: 114.92778443872984
Iteration: 9, Func. Count: 94, Neg. LLF: 114.92778204580412
Iteration: 10, Func. Count: 103, Neg. LLF: 114.92778204565013
Optimization terminated successfully (Exit mode 0)
Current function value: 114.92778204580412
Iterations: 10
Function evaluations: 103
Gradient evaluations: 10
Iteration: 1, Func. Count: 12, Neg. LLF: 26685871.00423543
Iteration: 2, Func. Count: 25, Neg. LLF: 2736.7863455585534
Iteration: 3, Func. Count: 39, Neg. LLF: 126.4958205989033
Iteration: 4, Func. Count: 51, Neg. LLF: 123.513047782554
Iteration: 5, Func. Count: 63, Neg. LLF: 118.50519070220021
Iteration: 6, Func. Count: 75, Neg. LLF: 120.46025496211385
Iteration: 7, Func. Count: 87, Neg. LLF: 115.10290795521261
Iteration: 8, Func. Count: 98, Neg. LLF: 114.78507078301269
Iteration: 9, Func. Count: 109, Neg. LLF: 115.27925592083695
Iteration: 10, Func. Count: 121, Neg. LLF: 114.5274308022522
Iteration: 11, Func. Count: 132, Neg. LLF: 114.50083296845169
Iteration: 12, Func. Count: 143, Neg. LLF: 114.48799438924368
Iteration: 13, Func. Count: 154, Neg. LLF: 114.19599373357983
Iteration: 14, Func. Count: 165, Neg. LLF: 1893.8317140416405
Iteration: 15, Func. Count: 178, Neg. LLF: 48303.197552708494
Iteration: 16, Func. Count: 191, Neg. LLF: 116.39622328666617
Iteration: 17, Func. Count: 203, Neg. LLF: 114.320706330613
Iteration: 18, Func. Count: 215, Neg. LLF: 114.07377710262259
Iteration: 19, Func. Count: 225, Neg. LLF: 114.0737771029761
Optimization terminated successfully (Exit mode 0)
Current function value: 114.07377710262259
Iterations: 20
Function evaluations: 225
Gradient evaluations: 19
Iteration: 1, Func. Count: 9, Neg. LLF: 123.30339117351491
Iteration: 2, Func. Count: 18, Neg. LLF: 150.54407412130374
Iteration: 3, Func. Count: 27, Neg. LLF: 123.32279355197858
Iteration: 4, Func. Count: 37, Neg. LLF: 118.83542944988912
Iteration: 5, Func. Count: 46, Neg. LLF: 192.64496227655098
Iteration: 6, Func. Count: 55, Neg. LLF: 117.77499814827037
Iteration: 7, Func. Count: 64, Neg. LLF: 121.448306041644
Iteration: 8, Func. Count: 73, Neg. LLF: 115.59336570753217
Iteration: 9, Func. Count: 82, Neg. LLF: 115.3486577271451
Iteration: 10, Func. Count: 90, Neg. LLF: 122.56857318887766
Iteration: 11, Func. Count: 100, Neg. LLF: 115.34630677678675
Iteration: 12, Func. Count: 108, Neg. LLF: 115.34602577002269
Iteration: 13, Func. Count: 116, Neg. LLF: 115.34601647697941
Iteration: 14, Func. Count: 124, Neg. LLF: 115.34601545577435
Iteration: 15, Func. Count: 131, Neg. LLF: 115.34601539293969
Optimization terminated successfully (Exit mode 0)
Current function value: 115.34601545577435
Iterations: 15
Function evaluations: 131
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 163.38583074643302
Iteration: 2, Func. Count: 22, Neg. LLF: 124.24000482009102
Iteration: 3, Func. Count: 33, Neg. LLF: 127.29071012139543
Iteration: 4, Func. Count: 43, Neg. LLF: 114.76971852022966
Iteration: 5, Func. Count: 52, Neg. LLF: 114.76858934176371
Iteration: 6, Func. Count: 61, Neg. LLF: 114.76802414283844
Iteration: 7, Func. Count: 70, Neg. LLF: 114.76799055142078
Iteration: 8, Func. Count: 79, Neg. LLF: 115.25322532891926
Iteration: 9, Func. Count: 91, Neg. LLF: 114.78348365993781
Iteration: 10, Func. Count: 102, Neg. LLF: 114.77961880194981
Iteration: 11, Func. Count: 112, Neg. LLF: 114.76794557950458
Optimization terminated successfully (Exit mode 0)
Current function value: 114.76794558703155
Iterations: 12
Function evaluations: 112
Gradient evaluations: 11
Iteration: 1, Func. Count: 11, Neg. LLF: 29621785.24946434
Iteration: 2, Func. Count: 24, Neg. LLF: 129.15877087453725
Iteration: 3, Func. Count: 35, Neg. LLF: 115.44040370910074
Iteration: 4, Func. Count: 46, Neg. LLF: 114.93977995341136
Iteration: 5, Func. Count: 56, Neg. LLF: 115.05418129335618
Iteration: 6, Func. Count: 67, Neg. LLF: 114.94641654393871
Iteration: 7, Func. Count: 78, Neg. LLF: 114.87505658936438
Iteration: 8, Func. Count: 88, Neg. LLF: 114.82664532007757
Iteration: 9, Func. Count: 98, Neg. LLF: 114.96407794007304
Iteration: 10, Func. Count: 109, Neg. LLF: 114.80048132115219
Iteration: 11, Func. Count: 119, Neg. LLF: 114.77079476993097
Iteration: 12, Func. Count: 129, Neg. LLF: 114.76864919276858
Iteration: 13, Func. Count: 139, Neg. LLF: 114.76796746825156
Iteration: 14, Func. Count: 149, Neg. LLF: 114.76796128221451
Iteration: 15, Func. Count: 159, Neg. LLF: 114.76794916047902
Iteration: 16, Func. Count: 169, Neg. LLF: 114.76808801285392
Optimization terminated successfully (Exit mode 0)
Current function value: 114.76794913628798
Iterations: 17
Function evaluations: 171
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 31860358.693864983
Iteration: 2, Func. Count: 25, Neg. LLF: 145.08054868552173
Iteration: 3, Func. Count: 38, Neg. LLF: 117.66054526546003
Iteration: 4, Func. Count: 50, Neg. LLF: 115.86022737176467
Iteration: 5, Func. Count: 62, Neg. LLF: 115.24412371802606
Iteration: 6, Func. Count: 74, Neg. LLF: 114.96076072165609
Iteration: 7, Func. Count: 86, Neg. LLF: 124.09625729004969
Iteration: 8, Func. Count: 99, Neg. LLF: 114.36479874108147
Iteration: 9, Func. Count: 111, Neg. LLF: 114.10435186862563
Iteration: 10, Func. Count: 122, Neg. LLF: 114.07396373478502
Iteration: 11, Func. Count: 133, Neg. LLF: 114.0725580260502
Iteration: 12, Func. Count: 144, Neg. LLF: 114.07767602616187
Iteration: 13, Func. Count: 156, Neg. LLF: 114.07087873034013
Iteration: 14, Func. Count: 167, Neg. LLF: 114.07044018318005
Iteration: 15, Func. Count: 178, Neg. LLF: 114.07037467947472
Iteration: 16, Func. Count: 189, Neg. LLF: 114.07037275169439
Iteration: 17, Func. Count: 199, Neg. LLF: 114.07037275102746
Optimization terminated successfully (Exit mode 0)
Current function value: 114.07037275169439
Iterations: 17
Function evaluations: 199
Gradient evaluations: 17
Iteration: 1, Func. Count: 13, Neg. LLF: 32181139.622016177
Iteration: 2, Func. Count: 27, Neg. LLF: 144.83821230861042
Iteration: 3, Func. Count: 41, Neg. LLF: 115.87432516375982
Iteration: 4, Func. Count: 54, Neg. LLF: 115.03815987368529
Iteration: 5, Func. Count: 66, Neg. LLF: 114.72331155959706
Iteration: 6, Func. Count: 78, Neg. LLF: 115.95082312274907
Iteration: 7, Func. Count: 91, Neg. LLF: 114.43072772272646
Iteration: 8, Func. Count: 103, Neg. LLF: 114.24382554329635
Iteration: 9, Func. Count: 115, Neg. LLF: 114.15746535528467
Iteration: 10, Func. Count: 127, Neg. LLF: 114.08531258302655
Iteration: 11, Func. Count: 139, Neg. LLF: 114.07522365606431
Iteration: 12, Func. Count: 151, Neg. LLF: 114.07125789818343
Iteration: 13, Func. Count: 163, Neg. LLF: 114.070813263019
Iteration: 14, Func. Count: 175, Neg. LLF: 114.07047814724464
Iteration: 15, Func. Count: 187, Neg. LLF: 114.07038222687508
Iteration: 16, Func. Count: 199, Neg. LLF: 114.07037280006314
Iteration: 17, Func. Count: 210, Neg. LLF: 114.07037283150588
Optimization terminated successfully (Exit mode 0)
Current function value: 114.07037280006314
Iterations: 17
Function evaluations: 210
Gradient evaluations: 17
Iteration: 1, Func. Count: 10, Neg. LLF: 123.26848574270487
Iteration: 2, Func. Count: 20, Neg. LLF: 150.5129536325653
Iteration: 3, Func. Count: 30, Neg. LLF: 123.22976017389043
Iteration: 4, Func. Count: 41, Neg. LLF: 117.76614293323121
Iteration: 5, Func. Count: 51, Neg. LLF: 1308.367819717956
Iteration: 6, Func. Count: 61, Neg. LLF: 116.64202159500579
Iteration: 7, Func. Count: 71, Neg. LLF: 115.99406005511086
Iteration: 8, Func. Count: 81, Neg. LLF: 115.40891974089841
Iteration: 9, Func. Count: 91, Neg. LLF: 115.3461449830388
Iteration: 10, Func. Count: 100, Neg. LLF: 116.39135635863677
Iteration: 11, Func. Count: 112, Neg. LLF: 115.34450616225136
Iteration: 12, Func. Count: 121, Neg. LLF: 115.34439305154953
Iteration: 13, Func. Count: 131, Neg. LLF: 115.3434271820591
Iteration: 14, Func. Count: 141, Neg. LLF: 115.34308797192075
Iteration: 15, Func. Count: 149, Neg. LLF: 115.34308797019585
Optimization terminated successfully (Exit mode 0)
Current function value: 115.34308797192075
Iterations: 15
Function evaluations: 149
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 130.82554816399312
Iteration: 2, Func. Count: 24, Neg. LLF: 133.82573029836902
Iteration: 3, Func. Count: 35, Neg. LLF: 406.49729908697356
Iteration: 4, Func. Count: 47, Neg. LLF: 114.06181555779172
Iteration: 5, Func. Count: 57, Neg. LLF: 114.0439434248598
Iteration: 6, Func. Count: 67, Neg. LLF: 114.03710747018778
Iteration: 7, Func. Count: 77, Neg. LLF: 114.03664024802451
Iteration: 8, Func. Count: 87, Neg. LLF: 114.03663035248796
Iteration: 9, Func. Count: 97, Neg. LLF: 114.03662981547184
Optimization terminated successfully (Exit mode 0)
Current function value: 114.03662981547184
Iterations: 9
Function evaluations: 97
Gradient evaluations: 9
Iteration: 1, Func. Count: 12, Neg. LLF: 16584753.90386955
Iteration: 2, Func. Count: 25, Neg. LLF: 171.5723015311111
Iteration: 3, Func. Count: 37, Neg. LLF: 126.25539183846405
Iteration: 4, Func. Count: 49, Neg. LLF: 114.34175164594396
Iteration: 5, Func. Count: 60, Neg. LLF: 114.10014528042406
Iteration: 6, Func. Count: 71, Neg. LLF: 113.97148195950312
Iteration: 7, Func. Count: 82, Neg. LLF: 113.83374335704463
Iteration: 8, Func. Count: 93, Neg. LLF: 113.82978792936099
Iteration: 9, Func. Count: 104, Neg. LLF: 113.82799075225306
Iteration: 10, Func. Count: 115, Neg. LLF: 113.82782853705456
Iteration: 11, Func. Count: 126, Neg. LLF: 113.82772547801572
Iteration: 12, Func. Count: 137, Neg. LLF: 113.82770990023806
Iteration: 13, Func. Count: 148, Neg. LLF: 113.82770911597862
Optimization terminated successfully (Exit mode 0)
Current function value: 113.82770911597862
Iterations: 13
Function evaluations: 148
Gradient evaluations: 13
Iteration: 1, Func. Count: 13, Neg. LLF: 132.61996136078398
Iteration: 2, Func. Count: 28, Neg. LLF: 151.9119584961868
Iteration: 3, Func. Count: 41, Neg. LLF: 116.79972303677471
Iteration: 4, Func. Count: 54, Neg. LLF: 114.42231492238604
Iteration: 5, Func. Count: 66, Neg. LLF: 116.29451781185244
Iteration: 6, Func. Count: 79, Neg. LLF: 115.19733068552058
Iteration: 7, Func. Count: 92, Neg. LLF: 113.53169746749106
Iteration: 8, Func. Count: 104, Neg. LLF: 113.37849969904774
Iteration: 9, Func. Count: 116, Neg. LLF: 113.36449437071983
Iteration: 10, Func. Count: 128, Neg. LLF: 113.34624098792456
Iteration: 11, Func. Count: 140, Neg. LLF: 113.34334859013882
Iteration: 12, Func. Count: 152, Neg. LLF: 113.34089205117233
Iteration: 13, Func. Count: 164, Neg. LLF: 113.34085318855591
Iteration: 14, Func. Count: 176, Neg. LLF: 113.34085245438345
Optimization terminated successfully (Exit mode 0)
Current function value: 113.34085245438345
Iterations: 14
Function evaluations: 176
Gradient evaluations: 14
Iteration: 1, Func. Count: 14, Neg. LLF: 119.37122103171178
Iteration: 2, Func. Count: 28, Neg. LLF: 127.17638405935213
Iteration: 3, Func. Count: 43, Neg. LLF: 115.94540109886383
Iteration: 4, Func. Count: 57, Neg. LLF: 114.97534217067287
Iteration: 5, Func. Count: 71, Neg. LLF: 113.8028659152915
Iteration: 6, Func. Count: 84, Neg. LLF: 114.18625989341778
Iteration: 7, Func. Count: 98, Neg. LLF: 113.4217160773015
Iteration: 8, Func. Count: 111, Neg. LLF: 113.35053923242582
Iteration: 9, Func. Count: 124, Neg. LLF: 113.34243676778247
Iteration: 10, Func. Count: 137, Neg. LLF: 113.34104009637272
Iteration: 11, Func. Count: 150, Neg. LLF: 113.34090490611624
Iteration: 12, Func. Count: 163, Neg. LLF: 113.3408571668495
Iteration: 13, Func. Count: 176, Neg. LLF: 113.34085250888597
Iteration: 14, Func. Count: 188, Neg. LLF: 113.34085246184374
Optimization terminated successfully (Exit mode 0)
Current function value: 113.34085250888597
Iterations: 14
Function evaluations: 188
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 123.26460983248701
Iteration: 2, Func. Count: 22, Neg. LLF: 133.15826561628546
Iteration: 3, Func. Count: 33, Neg. LLF: 119.94032597168774
Iteration: 4, Func. Count: 44, Neg. LLF: 1228.4928886911493
Iteration: 5, Func. Count: 55, Neg. LLF: 294.019709282576
Iteration: 6, Func. Count: 66, Neg. LLF: 120.23500963766205
Iteration: 7, Func. Count: 77, Neg. LLF: 116.63687513421046
Iteration: 8, Func. Count: 88, Neg. LLF: 121.06678935941186
Iteration: 9, Func. Count: 99, Neg. LLF: 115.45039287720587
Iteration: 10, Func. Count: 110, Neg. LLF: 115.17561268540287
Iteration: 11, Func. Count: 120, Neg. LLF: 117.12379523132115
Iteration: 12, Func. Count: 131, Neg. LLF: 115.7245799879411
Iteration: 13, Func. Count: 143, Neg. LLF: 115.08564781202848
Iteration: 14, Func. Count: 153, Neg. LLF: 115.08108963507009
Iteration: 15, Func. Count: 163, Neg. LLF: 115.07848301714769
Iteration: 16, Func. Count: 173, Neg. LLF: 115.0779620544592
Iteration: 17, Func. Count: 183, Neg. LLF: 115.07746455487906
Iteration: 18, Func. Count: 193, Neg. LLF: 115.07743264566459
Iteration: 19, Func. Count: 203, Neg. LLF: 115.07742993263133
Iteration: 20, Func. Count: 212, Neg. LLF: 115.07742988861462
Optimization terminated successfully (Exit mode 0)
Current function value: 115.07742993263133
Iterations: 20
Function evaluations: 212
Gradient evaluations: 20
Iteration: 1, Func. Count: 12, Neg. LLF: 142.0028811590954
Iteration: 2, Func. Count: 25, Neg. LLF: 145.0295213016064
Iteration: 3, Func. Count: 38, Neg. LLF: 118.64068508413949
Iteration: 4, Func. Count: 50, Neg. LLF: 113.80630676149597
Iteration: 5, Func. Count: 61, Neg. LLF: 113.79572141511755
Iteration: 6, Func. Count: 72, Neg. LLF: 113.78433961545633
Iteration: 7, Func. Count: 83, Neg. LLF: 113.78423506862924
Iteration: 8, Func. Count: 94, Neg. LLF: 113.78421087290837
Iteration: 9, Func. Count: 105, Neg. LLF: 113.81368204232584
Iteration: 10, Func. Count: 119, Neg. LLF: 113.78526439615146
Iteration: 11, Func. Count: 132, Neg. LLF: 113.78425147232826
Iteration: 12, Func. Count: 144, Neg. LLF: 113.78421973582884
Iteration: 13, Func. Count: 154, Neg. LLF: 113.78421962751746
Optimization terminated successfully (Exit mode 0)
Current function value: 113.78421973582884
Iterations: 14
Function evaluations: 154
Gradient evaluations: 13
Iteration: 1, Func. Count: 13, Neg. LLF: 162.6061793339656
Iteration: 2, Func. Count: 28, Neg. LLF: 153.01958097068723
Iteration: 3, Func. Count: 42, Neg. LLF: 121.87620558581062
Iteration: 4, Func. Count: 55, Neg. LLF: 113.84431986652483
Iteration: 5, Func. Count: 67, Neg. LLF: 113.83936164818641
Iteration: 6, Func. Count: 79, Neg. LLF: 113.83140319294789
Iteration: 7, Func. Count: 91, Neg. LLF: 113.82836409144541
Iteration: 8, Func. Count: 103, Neg. LLF: 113.82777007321974
Iteration: 9, Func. Count: 115, Neg. LLF: 113.82771867503149
Iteration: 10, Func. Count: 127, Neg. LLF: 113.8277102150678
Iteration: 11, Func. Count: 139, Neg. LLF: 113.82770927470932
Optimization terminated successfully (Exit mode 0)
Current function value: 113.82770927470932
Iterations: 11
Function evaluations: 139
Gradient evaluations: 11
Iteration: 1, Func. Count: 14, Neg. LLF: 122.38274740926191
Iteration: 2, Func. Count: 30, Neg. LLF: 160.7765915775618
Iteration: 3, Func. Count: 45, Neg. LLF: 118.54615953700622
Iteration: 4, Func. Count: 59, Neg. LLF: 114.60326112228256
Iteration: 5, Func. Count: 72, Neg. LLF: 113.97555399024512
Iteration: 6, Func. Count: 85, Neg. LLF: 113.87095420482032
Iteration: 7, Func. Count: 98, Neg. LLF: 114.13196395392231
Iteration: 8, Func. Count: 112, Neg. LLF: 113.7967411456197
Iteration: 9, Func. Count: 125, Neg. LLF: 113.58690096522486
Iteration: 10, Func. Count: 138, Neg. LLF: 113.40785773594571
Iteration: 11, Func. Count: 151, Neg. LLF: 113.34645253651951
Iteration: 12, Func. Count: 164, Neg. LLF: 113.34226388231833
Iteration: 13, Func. Count: 177, Neg. LLF: 113.34096961422712
Iteration: 14, Func. Count: 190, Neg. LLF: 113.34089266642857
Iteration: 15, Func. Count: 203, Neg. LLF: 113.34086453099135
Iteration: 16, Func. Count: 216, Neg. LLF: 113.34085250425257
Iteration: 17, Func. Count: 228, Neg. LLF: 113.34085238854856
Optimization terminated successfully (Exit mode 0)
Current function value: 113.34085250425257
Iterations: 17
Function evaluations: 228
Gradient evaluations: 17
Iteration: 1, Func. Count: 15, Neg. LLF: 200.2854397659844
Iteration: 2, Func. Count: 31, Neg. LLF: 125.11984976519474
Iteration: 3, Func. Count: 47, Neg. LLF: 116.3240119227886
Iteration: 4, Func. Count: 62, Neg. LLF: 113.80192445696413
Iteration: 5, Func. Count: 76, Neg. LLF: 113.60190014558542
Iteration: 6, Func. Count: 90, Neg. LLF: 112.40818551257091
Iteration: 7, Func. Count: 104, Neg. LLF: 120.95489738962925
Iteration: 8, Func. Count: 119, Neg. LLF: 111.79964906818921
Iteration: 9, Func. Count: 133, Neg. LLF: 111.70456512103428
Iteration: 10, Func. Count: 147, Neg. LLF: 111.70119999474338
Iteration: 11, Func. Count: 161, Neg. LLF: 111.70089337063357
Iteration: 12, Func. Count: 175, Neg. LLF: 111.70119006159828
Iteration: 13, Func. Count: 190, Neg. LLF: 111.70088429305511
Iteration: 14, Func. Count: 203, Neg. LLF: 111.70088416718349
Optimization terminated successfully (Exit mode 0)
Current function value: 111.70088429305511
Iterations: 14
Function evaluations: 203
Gradient evaluations: 14
Iteration: 1, Func. Count: 12, Neg. LLF: 127.73634844856045
Iteration: 2, Func. Count: 25, Neg. LLF: 212.15199634483383
Iteration: 3, Func. Count: 37, Neg. LLF: 118.17127867770823
Iteration: 4, Func. Count: 50, Neg. LLF: 10659039.14147162
Iteration: 5, Func. Count: 62, Neg. LLF: 112.74093276714808
Iteration: 6, Func. Count: 74, Neg. LLF: 114.40891295812989
Iteration: 7, Func. Count: 86, Neg. LLF: 111.49887633791465
Iteration: 8, Func. Count: 97, Neg. LLF: 111.41035842526972
Iteration: 9, Func. Count: 108, Neg. LLF: 111.35108995749158
Iteration: 10, Func. Count: 119, Neg. LLF: 111.3405259510053
Iteration: 11, Func. Count: 130, Neg. LLF: 111.33751295557855
Iteration: 12, Func. Count: 141, Neg. LLF: 111.33720442463023
Iteration: 13, Func. Count: 152, Neg. LLF: 111.33708106843852
Iteration: 14, Func. Count: 163, Neg. LLF: 111.33706883690725
Iteration: 15, Func. Count: 173, Neg. LLF: 111.33706883690678
Optimization terminated successfully (Exit mode 0)
Current function value: 111.33706883690725
Iterations: 15
Function evaluations: 173
Gradient evaluations: 15
Iteration: 1, Func. Count: 13, Neg. LLF: 126.4801729567345
Iteration: 2, Func. Count: 27, Neg. LLF: 121.75526284879504
Iteration: 3, Func. Count: 42, Neg. LLF: 116.45286982795076
Iteration: 4, Func. Count: 55, Neg. LLF: 113.18373478628797
Iteration: 5, Func. Count: 67, Neg. LLF: 113.12826498565363
Iteration: 6, Func. Count: 79, Neg. LLF: 113.11003749639474
Iteration: 7, Func. Count: 91, Neg. LLF: 113.10509562858618
Iteration: 8, Func. Count: 103, Neg. LLF: 113.10476436337821
Iteration: 9, Func. Count: 115, Neg. LLF: 113.10474839444356
Iteration: 10, Func. Count: 127, Neg. LLF: 113.10475159965488
Iteration: 11, Func. Count: 138, Neg. LLF: 113.1047514861627
Optimization terminated successfully (Exit mode 0)
Current function value: 113.10475159965488
Iterations: 12
Function evaluations: 138
Gradient evaluations: 11
Iteration: 1, Func. Count: 14, Neg. LLF: 118.44786259473733
Iteration: 2, Func. Count: 31, Neg. LLF: 151.5662587645732
Iteration: 3, Func. Count: 45, Neg. LLF: 113.99819295236385
Iteration: 4, Func. Count: 59, Neg. LLF: 113.03774079201918
Iteration: 5, Func. Count: 72, Neg. LLF: 117.05910380148745
Iteration: 6, Func. Count: 86, Neg. LLF: 112.93343813179658
Iteration: 7, Func. Count: 99, Neg. LLF: 112.9066966864158
Iteration: 8, Func. Count: 112, Neg. LLF: 112.90540084741929
Iteration: 9, Func. Count: 125, Neg. LLF: 112.90462403202682
Iteration: 10, Func. Count: 138, Neg. LLF: 112.904616075841
Iteration: 11, Func. Count: 150, Neg. LLF: 112.90461600517908
Optimization terminated successfully (Exit mode 0)
Current function value: 112.904616075841
Iterations: 11
Function evaluations: 150
Gradient evaluations: 11
Iteration: 1, Func. Count: 15, Neg. LLF: 115.55564588270883
Iteration: 2, Func. Count: 30, Neg. LLF: 115.78791769153646
Iteration: 3, Func. Count: 46, Neg. LLF: 143.15761768557962
Iteration: 4, Func. Count: 62, Neg. LLF: 196.0553323143338
Iteration: 5, Func. Count: 77, Neg. LLF: 113.7586681202746
Iteration: 6, Func. Count: 92, Neg. LLF: 122.42389047666025
Iteration: 7, Func. Count: 107, Neg. LLF: 111.95021776939568
Iteration: 8, Func. Count: 121, Neg. LLF: 111.46607808481086
Iteration: 9, Func. Count: 135, Neg. LLF: 111.47902226341009
Iteration: 10, Func. Count: 150, Neg. LLF: 111.30719071591248
Iteration: 11, Func. Count: 164, Neg. LLF: 111.27440697377205
Iteration: 12, Func. Count: 178, Neg. LLF: 111.26787367126042
Iteration: 13, Func. Count: 192, Neg. LLF: 111.26557576828723
Iteration: 14, Func. Count: 206, Neg. LLF: 111.26261014579721
Iteration: 15, Func. Count: 220, Neg. LLF: 111.26248747764761
Iteration: 16, Func. Count: 234, Neg. LLF: 111.26247199889508
Iteration: 17, Func. Count: 248, Neg. LLF: 111.26247018849374
Iteration: 18, Func. Count: 261, Neg. LLF: 111.26247018849003
Optimization terminated successfully (Exit mode 0)
Current function value: 111.26247018849374
Iterations: 18
Function evaluations: 261
Gradient evaluations: 18
Iteration: 1, Func. Count: 16, Neg. LLF: 184.93661900855116
Iteration: 2, Func. Count: 32, Neg. LLF: 114.56801819337787
Iteration: 3, Func. Count: 49, Neg. LLF: 123.67433574849665
Iteration: 4, Func. Count: 65, Neg. LLF: 167.7676836246949
Iteration: 5, Func. Count: 82, Neg. LLF: 111.8529571974162
Iteration: 6, Func. Count: 97, Neg. LLF: 111.89805083066025
Iteration: 7, Func. Count: 113, Neg. LLF: 111.50886711073505
Iteration: 8, Func. Count: 129, Neg. LLF: 114.30540213602279
Iteration: 9, Func. Count: 146, Neg. LLF: 111.29267480394182
Iteration: 10, Func. Count: 161, Neg. LLF: 111.28612933149061
Iteration: 11, Func. Count: 176, Neg. LLF: 111.28462363770045
Iteration: 12, Func. Count: 191, Neg. LLF: 111.28204686335627
Iteration: 13, Func. Count: 206, Neg. LLF: 111.28173282354376
Iteration: 14, Func. Count: 221, Neg. LLF: 111.28170209503618
Iteration: 15, Func. Count: 236, Neg. LLF: 111.281699376271
Iteration: 16, Func. Count: 250, Neg. LLF: 111.28169936321265
Optimization terminated successfully (Exit mode 0)
Current function value: 111.281699376271
Iterations: 16
Function evaluations: 250
Gradient evaluations: 16
Iteration: 1, Func. Count: 6, Neg. LLF: 137.36415155943877
Iteration: 2, Func. Count: 13, Neg. LLF: 1069.9635307940175
Iteration: 3, Func. Count: 21, Neg. LLF: 115.54636893590141
Iteration: 4, Func. Count: 27, Neg. LLF: 114.77514069528674
Iteration: 5, Func. Count: 32, Neg. LLF: 114.76835469675729
Iteration: 6, Func. Count: 37, Neg. LLF: 114.76794657965604
Iteration: 7, Func. Count: 42, Neg. LLF: 114.76794584749162
Optimization terminated successfully (Exit mode 0)
Current function value: 114.76794584749162
Iterations: 7
Function evaluations: 42
Gradient evaluations: 7
Iteration: 1, Func. Count: 5, Neg. LLF: 121.90067551106986
Iteration: 2, Func. Count: 10, Neg. LLF: 116.71572100017762
Iteration: 3, Func. Count: 14, Neg. LLF: 115.76546388105197
Iteration: 4, Func. Count: 18, Neg. LLF: 115.75242947131824
Iteration: 5, Func. Count: 22, Neg. LLF: 115.7434432579337
Iteration: 6, Func. Count: 26, Neg. LLF: 115.74340389302962
Iteration: 7, Func. Count: 30, Neg. LLF: 115.74340274601971
Iteration: 8, Func. Count: 33, Neg. LLF: 115.74340278846365
Optimization terminated successfully (Exit mode 0)
Current function value: 115.74340274601971
Iterations: 8
Function evaluations: 33
Gradient evaluations: 8
Iteration: 1, Func. Count: 6, Neg. LLF: 166.447089729557
Iteration: 2, Func. Count: 13, Neg. LLF: 484.7854388900968
Iteration: 3, Func. Count: 20, Neg. LLF: 114.21891022571494
Iteration: 4, Func. Count: 26, Neg. LLF: 110.15728685011857
Iteration: 5, Func. Count: 31, Neg. LLF: 110.14202573243891
Iteration: 6, Func. Count: 36, Neg. LLF: 110.1410803966553
Iteration: 7, Func. Count: 41, Neg. LLF: 110.14080006773081
Iteration: 8, Func. Count: 46, Neg. LLF: 110.14078773871746
Iteration: 9, Func. Count: 50, Neg. LLF: 110.14078773866686
Optimization terminated successfully (Exit mode 0)
Current function value: 110.14078773871746
Iterations: 9
Function evaluations: 50
Gradient evaluations: 9
Iteration: 1, Func. Count: 7, Neg. LLF: 51329012.26149595
Iteration: 2, Func. Count: 15, Neg. LLF: 293.39903161992345
Iteration: 3, Func. Count: 23, Neg. LLF: 123.62985017731826
Iteration: 4, Func. Count: 31, Neg. LLF: 110.41247765598654
Iteration: 5, Func. Count: 37, Neg. LLF: 111.29451398976335
Iteration: 6, Func. Count: 44, Neg. LLF: 110.20605221835932
Iteration: 7, Func. Count: 50, Neg. LLF: 110.15407774120469
Iteration: 8, Func. Count: 56, Neg. LLF: 110.14180489548365
Iteration: 9, Func. Count: 62, Neg. LLF: 110.14082859845075
Iteration: 10, Func. Count: 68, Neg. LLF: 110.1407912766225
Iteration: 11, Func. Count: 74, Neg. LLF: 110.14078883125231
Iteration: 12, Func. Count: 80, Neg. LLF: 110.14078775244505
Iteration: 13, Func. Count: 85, Neg. LLF: 110.14078776063707
Optimization terminated successfully (Exit mode 0)
Current function value: 110.14078775244505
Iterations: 13
Function evaluations: 85
Gradient evaluations: 13
Iteration: 1, Func. Count: 8, Neg. LLF: 69613109.67944688
Iteration: 2, Func. Count: 17, Neg. LLF: 164.65439355559906
Iteration: 3, Func. Count: 26, Neg. LLF: 116.93292522141243
Iteration: 4, Func. Count: 34, Neg. LLF: 110.36554694876962
Iteration: 5, Func. Count: 41, Neg. LLF: 110.2853689585786
Iteration: 6, Func. Count: 48, Neg. LLF: 110.22647782364673
Iteration: 7, Func. Count: 55, Neg. LLF: 110.14929292492445
Iteration: 8, Func. Count: 62, Neg. LLF: 110.16415043705815
Iteration: 9, Func. Count: 70, Neg. LLF: 110.14085934968955
Iteration: 10, Func. Count: 77, Neg. LLF: 110.140787455749
Iteration: 11, Func. Count: 83, Neg. LLF: 110.14078748457712
Optimization terminated successfully (Exit mode 0)
Current function value: 110.140787455749
Iterations: 11
Function evaluations: 83
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 63938675.585176304
Iteration: 2, Func. Count: 19, Neg. LLF: 157.40734911195761
Iteration: 3, Func. Count: 29, Neg. LLF: 112.92561675382106
Iteration: 4, Func. Count: 38, Neg. LLF: 110.50906185262494
Iteration: 5, Func. Count: 46, Neg. LLF: 110.33642252409916
Iteration: 6, Func. Count: 54, Neg. LLF: 110.20071089550042
Iteration: 7, Func. Count: 62, Neg. LLF: 110.11513760868642
Iteration: 8, Func. Count: 70, Neg. LLF: 109.89077395278181
Iteration: 9, Func. Count: 78, Neg. LLF: 109.82568687905392
Iteration: 10, Func. Count: 86, Neg. LLF: 109.81474847875386
Iteration: 11, Func. Count: 94, Neg. LLF: 109.81442530829577
Iteration: 12, Func. Count: 102, Neg. LLF: 109.81442191269247
Iteration: 13, Func. Count: 109, Neg. LLF: 109.81442192697462
Optimization terminated successfully (Exit mode 0)
Current function value: 109.81442191269247
Iterations: 13
Function evaluations: 109
Gradient evaluations: 13
Iteration: 1, Func. Count: 6, Neg. LLF: 134.1829952175224
Iteration: 2, Func. Count: 13, Neg. LLF: 143.8848379015029
Iteration: 3, Func. Count: 19, Neg. LLF: 115.74773905465904
Iteration: 4, Func. Count: 24, Neg. LLF: 115.7444788703965
Iteration: 5, Func. Count: 29, Neg. LLF: 115.74370267816975
Iteration: 6, Func. Count: 34, Neg. LLF: 115.74351188346695
Iteration: 7, Func. Count: 39, Neg. LLF: 115.7434078931621
Iteration: 8, Func. Count: 44, Neg. LLF: 115.74340284294479
Iteration: 9, Func. Count: 48, Neg. LLF: 115.7434028672603
Optimization terminated successfully (Exit mode 0)
Current function value: 115.74340284294479
Iterations: 9
Function evaluations: 48
Gradient evaluations: 9
Iteration: 1, Func. Count: 7, Neg. LLF: 482.336396006478
Iteration: 2, Func. Count: 15, Neg. LLF: 317.5704543926151
Iteration: 3, Func. Count: 23, Neg. LLF: 109.04465089194598
Iteration: 4, Func. Count: 29, Neg. LLF: 109.15886329415885
Iteration: 5, Func. Count: 36, Neg. LLF: 108.95303964094714
Iteration: 6, Func. Count: 42, Neg. LLF: 108.95274775753622
Iteration: 7, Func. Count: 48, Neg. LLF: 108.95273800426149
Iteration: 8, Func. Count: 54, Neg. LLF: 108.9527370986562
Optimization terminated successfully (Exit mode 0)
Current function value: 108.9527370986562
Iterations: 8
Function evaluations: 54
Gradient evaluations: 8
Iteration: 1, Func. Count: 8, Neg. LLF: 58342727.61913021
Iteration: 2, Func. Count: 17, Neg. LLF: 926.0112622385396
Iteration: 3, Func. Count: 26, Neg. LLF: 151.02889896706353
Iteration: 4, Func. Count: 34, Neg. LLF: 109.08453899026125
Iteration: 5, Func. Count: 41, Neg. LLF: 108.95664902181326
Iteration: 6, Func. Count: 48, Neg. LLF: 108.95302478860097
Iteration: 7, Func. Count: 55, Neg. LLF: 108.9527617410411
Iteration: 8, Func. Count: 62, Neg. LLF: 108.95273956121028
Iteration: 9, Func. Count: 69, Neg. LLF: 108.95273708972782
Iteration: 10, Func. Count: 75, Neg. LLF: 108.952737008246
Optimization terminated successfully (Exit mode 0)
Current function value: 108.95273708972782
Iterations: 10
Function evaluations: 75
Gradient evaluations: 10
Iteration: 1, Func. Count: 9, Neg. LLF: 68783007.88634567
Iteration: 2, Func. Count: 19, Neg. LLF: 138.68980533146086
Iteration: 3, Func. Count: 29, Neg. LLF: 110.10942749896151
Iteration: 4, Func. Count: 37, Neg. LLF: 109.34455762542241
Iteration: 5, Func. Count: 45, Neg. LLF: 109.0418165251717
Iteration: 6, Func. Count: 53, Neg. LLF: 108.97882066758429
Iteration: 7, Func. Count: 61, Neg. LLF: 108.98548411782863
Iteration: 8, Func. Count: 70, Neg. LLF: 108.95842988610747
Iteration: 9, Func. Count: 79, Neg. LLF: 108.95276441421042
Iteration: 10, Func. Count: 87, Neg. LLF: 108.95273708915512
Iteration: 11, Func. Count: 94, Neg. LLF: 108.95273701012486
Optimization terminated successfully (Exit mode 0)
Current function value: 108.95273708915512
Iterations: 11
Function evaluations: 94
Gradient evaluations: 11
Iteration: 1, Func. Count: 10, Neg. LLF: 62921530.693131536
Iteration: 2, Func. Count: 21, Neg. LLF: 115.02062023079098
Iteration: 3, Func. Count: 31, Neg. LLF: 124.83494344924478
Iteration: 4, Func. Count: 41, Neg. LLF: 109.40114138041963
Iteration: 5, Func. Count: 50, Neg. LLF: 109.71433609429876
Iteration: 6, Func. Count: 60, Neg. LLF: 109.0281126280687
Iteration: 7, Func. Count: 69, Neg. LLF: 109.45876532208473
Iteration: 8, Func. Count: 79, Neg. LLF: 108.96698649249598
Iteration: 9, Func. Count: 88, Neg. LLF: 108.9541391136004
Iteration: 10, Func. Count: 97, Neg. LLF: 108.95279896969288
Iteration: 11, Func. Count: 106, Neg. LLF: 108.9527374292618
Iteration: 12, Func. Count: 114, Neg. LLF: 108.95273736357024
Optimization terminated successfully (Exit mode 0)
Current function value: 108.9527374292618
Iterations: 12
Function evaluations: 114
Gradient evaluations: 12
Iteration: 1, Func. Count: 7, Neg. LLF: 124.63584340582845
Iteration: 2, Func. Count: 14, Neg. LLF: 198.7551264303983
Iteration: 3, Func. Count: 21, Neg. LLF: 112.86418809208013
Iteration: 4, Func. Count: 27, Neg. LLF: 112.04399856555499
Iteration: 5, Func. Count: 34, Neg. LLF: 110.17927458257924
Iteration: 6, Func. Count: 40, Neg. LLF: 110.11495881041525
Iteration: 7, Func. Count: 46, Neg. LLF: 110.09124354874726
Iteration: 8, Func. Count: 52, Neg. LLF: 110.0830308905972
Iteration: 9, Func. Count: 58, Neg. LLF: 110.0792310664336
Iteration: 10, Func. Count: 64, Neg. LLF: 110.07916397854888
Iteration: 11, Func. Count: 70, Neg. LLF: 110.07916285429962
Iteration: 12, Func. Count: 75, Neg. LLF: 110.07916284101319
Optimization terminated successfully (Exit mode 0)
Current function value: 110.07916285429962
Iterations: 12
Function evaluations: 75
Gradient evaluations: 12
Iteration: 1, Func. Count: 8, Neg. LLF: 487.27441163753275
Iteration: 2, Func. Count: 17, Neg. LLF: 501.8830298257708
Iteration: 3, Func. Count: 26, Neg. LLF: 113.97812834253774
Iteration: 4, Func. Count: 35, Neg. LLF: 108.76822480027045
Iteration: 5, Func. Count: 42, Neg. LLF: 108.76316963229705
Iteration: 6, Func. Count: 49, Neg. LLF: 108.7626968755037
Iteration: 7, Func. Count: 56, Neg. LLF: 108.76253679143564
Iteration: 8, Func. Count: 63, Neg. LLF: 108.76252756447971
Iteration: 9, Func. Count: 69, Neg. LLF: 108.7625275276214
Optimization terminated successfully (Exit mode 0)
Current function value: 108.76252756447971
Iterations: 9
Function evaluations: 69
Gradient evaluations: 9
Iteration: 1, Func. Count: 9, Neg. LLF: 62253949.09179383
Iteration: 2, Func. Count: 19, Neg. LLF: 941.9262223583162
Iteration: 3, Func. Count: 29, Neg. LLF: 115.47256115447202
Iteration: 4, Func. Count: 39, Neg. LLF: 107.17086955269386
Iteration: 5, Func. Count: 47, Neg. LLF: 107.14954829872906
Iteration: 6, Func. Count: 55, Neg. LLF: 107.13931326613049
Iteration: 7, Func. Count: 63, Neg. LLF: 107.13749878089946
Iteration: 8, Func. Count: 71, Neg. LLF: 107.13705144524015
Iteration: 9, Func. Count: 79, Neg. LLF: 107.136726043369
Iteration: 10, Func. Count: 87, Neg. LLF: 107.13640076083286
Iteration: 11, Func. Count: 95, Neg. LLF: 107.13628402617157
Iteration: 12, Func. Count: 103, Neg. LLF: 107.13626715293526
Iteration: 13, Func. Count: 111, Neg. LLF: 107.13626640457255
Optimization terminated successfully (Exit mode 0)
Current function value: 107.13626640457255
Iterations: 13
Function evaluations: 111
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 72844638.221851
Iteration: 2, Func. Count: 21, Neg. LLF: 119.48048362477093
Iteration: 3, Func. Count: 31, Neg. LLF: 158.23138932625486
Iteration: 4, Func. Count: 41, Neg. LLF: 107.22407750776325
Iteration: 5, Func. Count: 50, Neg. LLF: 107.17167554841456
Iteration: 6, Func. Count: 59, Neg. LLF: 107.1487593798072
Iteration: 7, Func. Count: 68, Neg. LLF: 107.1397786552312
Iteration: 8, Func. Count: 77, Neg. LLF: 107.13438138543809
Iteration: 9, Func. Count: 86, Neg. LLF: 107.13356970545622
Iteration: 10, Func. Count: 95, Neg. LLF: 107.13353088332093
Iteration: 11, Func. Count: 103, Neg. LLF: 107.1335308060366
Optimization terminated successfully (Exit mode 0)
Current function value: 107.13353088332093
Iterations: 11
Function evaluations: 103
Gradient evaluations: 11
Iteration: 1, Func. Count: 11, Neg. LLF: 66050323.55543797
Iteration: 2, Func. Count: 22, Neg. LLF: 117.03276680470474
Iteration: 3, Func. Count: 33, Neg. LLF: 141.09849946423165
Iteration: 4, Func. Count: 45, Neg. LLF: 106.90582088647152
Iteration: 5, Func. Count: 55, Neg. LLF: 106.16142431138093
Iteration: 6, Func. Count: 65, Neg. LLF: 105.97348659030548
Iteration: 7, Func. Count: 75, Neg. LLF: 105.94453649027287
Iteration: 8, Func. Count: 85, Neg. LLF: 105.93206396180594
Iteration: 9, Func. Count: 95, Neg. LLF: 105.93039197733718
Iteration: 10, Func. Count: 105, Neg. LLF: 105.93037272235928
Iteration: 11, Func. Count: 114, Neg. LLF: 105.93037262246604
Optimization terminated successfully (Exit mode 0)
Current function value: 105.93037272235928
Iterations: 11
Function evaluations: 114
Gradient evaluations: 11
Iteration: 1, Func. Count: 8, Neg. LLF: 121.30807874966766
Iteration: 2, Func. Count: 16, Neg. LLF: 183.07455487785813
Iteration: 3, Func. Count: 24, Neg. LLF: 113.21955268446237
Iteration: 4, Func. Count: 32, Neg. LLF: 113.47590218126464
Iteration: 5, Func. Count: 40, Neg. LLF: 110.1295409650852
Iteration: 6, Func. Count: 47, Neg. LLF: 110.0845031743442
Iteration: 7, Func. Count: 54, Neg. LLF: 110.08197256864086
Iteration: 8, Func. Count: 61, Neg. LLF: 110.07976783393615
Iteration: 9, Func. Count: 68, Neg. LLF: 110.07925686857709
Iteration: 10, Func. Count: 75, Neg. LLF: 110.07916626068038
Iteration: 11, Func. Count: 82, Neg. LLF: 110.07916289201813
Iteration: 12, Func. Count: 88, Neg. LLF: 110.07916290548003
Optimization terminated successfully (Exit mode 0)
Current function value: 110.07916289201813
Iterations: 12
Function evaluations: 88
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 610.5004079444008
Iteration: 2, Func. Count: 19, Neg. LLF: 515.7828762219794
Iteration: 3, Func. Count: 29, Neg. LLF: 116.69287743026712
Iteration: 4, Func. Count: 39, Neg. LLF: 108.76917811433326
Iteration: 5, Func. Count: 47, Neg. LLF: 108.76334741467966
Iteration: 6, Func. Count: 55, Neg. LLF: 108.76266926638488
Iteration: 7, Func. Count: 63, Neg. LLF: 108.76252989321026
Iteration: 8, Func. Count: 71, Neg. LLF: 108.76252742307547
Iteration: 9, Func. Count: 78, Neg. LLF: 108.76252738628445
Optimization terminated successfully (Exit mode 0)
Current function value: 108.76252742307547
Iterations: 9
Function evaluations: 78
Gradient evaluations: 9
Iteration: 1, Func. Count: 10, Neg. LLF: 62349092.55435871
Iteration: 2, Func. Count: 21, Neg. LLF: 1013.010098908838
Iteration: 3, Func. Count: 32, Neg. LLF: 114.71501527896889
Iteration: 4, Func. Count: 43, Neg. LLF: 107.16874687703516
Iteration: 5, Func. Count: 52, Neg. LLF: 107.15143186832898
Iteration: 6, Func. Count: 61, Neg. LLF: 107.1396416513959
Iteration: 7, Func. Count: 70, Neg. LLF: 107.13813732297461
Iteration: 8, Func. Count: 79, Neg. LLF: 107.13718746018412
Iteration: 9, Func. Count: 88, Neg. LLF: 107.1368474711827
Iteration: 10, Func. Count: 97, Neg. LLF: 107.13641509696872
Iteration: 11, Func. Count: 106, Neg. LLF: 107.13628707815346
Iteration: 12, Func. Count: 115, Neg. LLF: 107.13626717392974
Iteration: 13, Func. Count: 124, Neg. LLF: 107.13626640514664
Optimization terminated successfully (Exit mode 0)
Current function value: 107.13626640514664
Iterations: 13
Function evaluations: 124
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 73956817.59481671
Iteration: 2, Func. Count: 23, Neg. LLF: 115.39311651739847
Iteration: 3, Func. Count: 34, Neg. LLF: 173.9402369550697
Iteration: 4, Func. Count: 45, Neg. LLF: 107.23160186581205
Iteration: 5, Func. Count: 55, Neg. LLF: 107.18656893642763
Iteration: 6, Func. Count: 65, Neg. LLF: 107.15441669588013
Iteration: 7, Func. Count: 75, Neg. LLF: 107.13888721801867
Iteration: 8, Func. Count: 85, Neg. LLF: 107.13355464540764
Iteration: 9, Func. Count: 95, Neg. LLF: 107.13353076135651
Iteration: 10, Func. Count: 104, Neg. LLF: 107.13353068404524
Optimization terminated successfully (Exit mode 0)
Current function value: 107.13353076135651
Iterations: 10
Function evaluations: 104
Gradient evaluations: 10
Iteration: 1, Func. Count: 12, Neg. LLF: 66853543.11326914
Iteration: 2, Func. Count: 24, Neg. LLF: 115.49817672873041
Iteration: 3, Func. Count: 36, Neg. LLF: 110.8795292041533
Iteration: 4, Func. Count: 48, Neg. LLF: 115.83498109340682
Iteration: 5, Func. Count: 60, Neg. LLF: 106.20339638100934
Iteration: 6, Func. Count: 71, Neg. LLF: 106.0922422250529
Iteration: 7, Func. Count: 82, Neg. LLF: 105.97966607063043
Iteration: 8, Func. Count: 93, Neg. LLF: 105.94619691850467
Iteration: 9, Func. Count: 104, Neg. LLF: 105.93164643299589
Iteration: 10, Func. Count: 115, Neg. LLF: 105.93044342370996
Iteration: 11, Func. Count: 126, Neg. LLF: 105.93037275045867
Iteration: 12, Func. Count: 136, Neg. LLF: 105.93037265035993
Optimization terminated successfully (Exit mode 0)
Current function value: 105.93037275045867
Iterations: 12
Function evaluations: 136
Gradient evaluations: 12
Iteration: 1, Func. Count: 5, Neg. LLF: 124.71260431452922
Iteration: 2, Func. Count: 10, Neg. LLF: 117.32752534389813
Iteration: 3, Func. Count: 14, Neg. LLF: 116.46223554257783
Iteration: 4, Func. Count: 18, Neg. LLF: 116.10549746556443
Iteration: 5, Func. Count: 22, Neg. LLF: 115.78190786874612
Iteration: 6, Func. Count: 26, Neg. LLF: 115.74567366486461
Iteration: 7, Func. Count: 30, Neg. LLF: 115.7434752952306
Iteration: 8, Func. Count: 34, Neg. LLF: 115.74341337325681
Iteration: 9, Func. Count: 38, Neg. LLF: 115.74340267075061
Iteration: 10, Func. Count: 41, Neg. LLF: 115.74340283631645
Optimization terminated successfully (Exit mode 0)
Current function value: 115.74340267075061
Iterations: 10
Function evaluations: 41
Gradient evaluations: 10
Iteration: 1, Func. Count: 6, Neg. LLF: 25257618.51615249
Iteration: 2, Func. Count: 12, Neg. LLF: 145.83648173732217
Iteration: 3, Func. Count: 19, Neg. LLF: 110.80368195274761
Iteration: 4, Func. Count: 24, Neg. LLF: 119.69033404966338
Iteration: 5, Func. Count: 30, Neg. LLF: 111.13624757129183
Iteration: 6, Func. Count: 36, Neg. LLF: 110.26258035591442
Iteration: 7, Func. Count: 42, Neg. LLF: 110.14099858128998
Iteration: 8, Func. Count: 47, Neg. LLF: 110.1407882627052
Iteration: 9, Func. Count: 52, Neg. LLF: 110.14078742455523
Optimization terminated successfully (Exit mode 0)
Current function value: 110.14078742455523
Iterations: 9
Function evaluations: 52
Gradient evaluations: 9
Iteration: 1, Func. Count: 7, Neg. LLF: 23816762.16033483
Iteration: 2, Func. Count: 14, Neg. LLF: 415.6847408568833
Iteration: 3, Func. Count: 21, Neg. LLF: 296.4894079906644
Iteration: 4, Func. Count: 28, Neg. LLF: 130.17638882267144
Iteration: 5, Func. Count: 35, Neg. LLF: 169.64189250209674
Iteration: 6, Func. Count: 42, Neg. LLF: 119.30831952085173
Iteration: 7, Func. Count: 49, Neg. LLF: 180.85468359329158
Iteration: 8, Func. Count: 56, Neg. LLF: 111.25473476628531
Iteration: 9, Func. Count: 63, Neg. LLF: 110.37682205545599
Iteration: 10, Func. Count: 69, Neg. LLF: 110.35373224966891
Iteration: 11, Func. Count: 75, Neg. LLF: 110.31108852130457
Iteration: 12, Func. Count: 81, Neg. LLF: 110.2469280184494
Iteration: 13, Func. Count: 87, Neg. LLF: 110.14241744184478
Iteration: 14, Func. Count: 93, Neg. LLF: 110.14166381310645
Iteration: 15, Func. Count: 99, Neg. LLF: 110.14083094309282
Iteration: 16, Func. Count: 105, Neg. LLF: 110.14078917291711
Iteration: 17, Func. Count: 111, Neg. LLF: 110.14078742585227
Iteration: 18, Func. Count: 116, Neg. LLF: 110.1407874344125
Optimization terminated successfully (Exit mode 0)
Current function value: 110.14078742585227
Iterations: 18
Function evaluations: 116
Gradient evaluations: 18
Iteration: 1, Func. Count: 8, Neg. LLF: 24211336.875083394
Iteration: 2, Func. Count: 16, Neg. LLF: 388.3865344168822
Iteration: 3, Func. Count: 24, Neg. LLF: 376.2542653414925
Iteration: 4, Func. Count: 32, Neg. LLF: 114.12513058062348
Iteration: 5, Func. Count: 40, Neg. LLF: 109.85694092236608
Iteration: 6, Func. Count: 47, Neg. LLF: 109.82735162611937
Iteration: 7, Func. Count: 54, Neg. LLF: 109.81546826643587
Iteration: 8, Func. Count: 61, Neg. LLF: 109.81447078275782
Iteration: 9, Func. Count: 68, Neg. LLF: 109.81442332333133
Iteration: 10, Func. Count: 75, Neg. LLF: 109.81442146549672
Iteration: 11, Func. Count: 81, Neg. LLF: 109.8144214655132
Optimization terminated successfully (Exit mode 0)
Current function value: 109.81442146549672
Iterations: 11
Function evaluations: 81
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 24212576.89903278
Iteration: 2, Func. Count: 18, Neg. LLF: 377.23693647858556
Iteration: 3, Func. Count: 27, Neg. LLF: 435.9129070012704
Iteration: 4, Func. Count: 36, Neg. LLF: 114.28748789890088
Iteration: 5, Func. Count: 45, Neg. LLF: 109.9437442582818
Iteration: 6, Func. Count: 53, Neg. LLF: 109.81979746619089
Iteration: 7, Func. Count: 61, Neg. LLF: 109.81498595203313
Iteration: 8, Func. Count: 69, Neg. LLF: 109.8144290578997
Iteration: 9, Func. Count: 77, Neg. LLF: 109.81442154204481
Iteration: 10, Func. Count: 84, Neg. LLF: 109.81442155638334
Optimization terminated successfully (Exit mode 0)
Current function value: 109.81442154204481
Iterations: 10
Function evaluations: 84
Gradient evaluations: 10
Iteration: 1, Func. Count: 6, Neg. LLF: 124.52771793087032
Iteration: 2, Func. Count: 12, Neg. LLF: 118.13306264976747
Iteration: 3, Func. Count: 17, Neg. LLF: 116.41348648003131
Iteration: 4, Func. Count: 22, Neg. LLF: 115.89212189498848
Iteration: 5, Func. Count: 27, Neg. LLF: 115.78366906093983
Iteration: 6, Func. Count: 32, Neg. LLF: 115.74476453443656
Iteration: 7, Func. Count: 37, Neg. LLF: 115.74342024550518
Iteration: 8, Func. Count: 42, Neg. LLF: 115.74340336744908
Iteration: 9, Func. Count: 47, Neg. LLF: 115.74340268228825
Optimization terminated successfully (Exit mode 0)
Current function value: 115.74340268228825
Iterations: 9
Function evaluations: 47
Gradient evaluations: 9
Iteration: 1, Func. Count: 7, Neg. LLF: 174.2190530149206
Iteration: 2, Func. Count: 16, Neg. LLF: 217.9287393707309
Iteration: 3, Func. Count: 24, Neg. LLF: 123.45714139999535
Iteration: 4, Func. Count: 31, Neg. LLF: 110.19567759177457
Iteration: 5, Func. Count: 37, Neg. LLF: 110.42981159645576
Iteration: 6, Func. Count: 44, Neg. LLF: 110.14115626062399
Iteration: 7, Func. Count: 50, Neg. LLF: 110.14082910055384
Iteration: 8, Func. Count: 56, Neg. LLF: 110.14078759831901
Iteration: 9, Func. Count: 61, Neg. LLF: 110.14078759858792
Optimization terminated successfully (Exit mode 0)
Current function value: 110.14078759831901
Iterations: 9
Function evaluations: 61
Gradient evaluations: 9
Iteration: 1, Func. Count: 8, Neg. LLF: 195.40246395388348
Iteration: 2, Func. Count: 17, Neg. LLF: 826.6042952278875
Iteration: 3, Func. Count: 26, Neg. LLF: 119.78805939797586
Iteration: 4, Func. Count: 35, Neg. LLF: 110.48661397919487
Iteration: 5, Func. Count: 42, Neg. LLF: 110.34866948969322
Iteration: 6, Func. Count: 49, Neg. LLF: 110.26572711208036
Iteration: 7, Func. Count: 56, Neg. LLF: 110.14357970664989
Iteration: 8, Func. Count: 63, Neg. LLF: 110.14116653623589
Iteration: 9, Func. Count: 70, Neg. LLF: 110.14082865855998
Iteration: 10, Func. Count: 77, Neg. LLF: 110.14078905647663
Iteration: 11, Func. Count: 84, Neg. LLF: 110.14078742276264
Iteration: 12, Func. Count: 90, Neg. LLF: 110.14078743126964
Optimization terminated successfully (Exit mode 0)
Current function value: 110.14078742276264
Iterations: 12
Function evaluations: 90
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 62797761.51020926
Iteration: 2, Func. Count: 19, Neg. LLF: 169.231241332584
Iteration: 3, Func. Count: 29, Neg. LLF: 110.7511734335952
Iteration: 4, Func. Count: 37, Neg. LLF: 111.02764277674004
Iteration: 5, Func. Count: 46, Neg. LLF: 110.40204917019506
Iteration: 6, Func. Count: 54, Neg. LLF: 110.2399783017292
Iteration: 7, Func. Count: 62, Neg. LLF: 110.19954340468688
Iteration: 8, Func. Count: 70, Neg. LLF: 110.14208824577852
Iteration: 9, Func. Count: 78, Neg. LLF: 110.14114708397719
Iteration: 10, Func. Count: 86, Neg. LLF: 110.14078794168623
Iteration: 11, Func. Count: 94, Neg. LLF: 110.1407874316247
Optimization terminated successfully (Exit mode 0)
Current function value: 110.1407874316247
Iterations: 11
Function evaluations: 94
Gradient evaluations: 11
Iteration: 1, Func. Count: 10, Neg. LLF: 57578706.31441889
Iteration: 2, Func. Count: 21, Neg. LLF: 161.2932333526182
Iteration: 3, Func. Count: 32, Neg. LLF: 113.97407909737497
Iteration: 4, Func. Count: 42, Neg. LLF: 110.57501738452001
Iteration: 5, Func. Count: 51, Neg. LLF: 110.346957880034
Iteration: 6, Func. Count: 60, Neg. LLF: 110.17730391323171
Iteration: 7, Func. Count: 69, Neg. LLF: 110.12525912114954
Iteration: 8, Func. Count: 78, Neg. LLF: 109.87383798118962
Iteration: 9, Func. Count: 87, Neg. LLF: 109.81874480582636
Iteration: 10, Func. Count: 96, Neg. LLF: 109.81456712080437
Iteration: 11, Func. Count: 105, Neg. LLF: 109.81442323668236
Iteration: 12, Func. Count: 114, Neg. LLF: 109.81442154607261
Iteration: 13, Func. Count: 122, Neg. LLF: 109.81442156053436
Optimization terminated successfully (Exit mode 0)
Current function value: 109.81442154607261
Iterations: 13
Function evaluations: 122
Gradient evaluations: 13
Iteration: 1, Func. Count: 7, Neg. LLF: 135.9690212705159
Iteration: 2, Func. Count: 15, Neg. LLF: 143.15177619837704
Iteration: 3, Func. Count: 22, Neg. LLF: 115.75075573209003
Iteration: 4, Func. Count: 28, Neg. LLF: 115.74601332082624
Iteration: 5, Func. Count: 34, Neg. LLF: 115.74406259504461
Iteration: 6, Func. Count: 40, Neg. LLF: 115.74354554596461
Iteration: 7, Func. Count: 46, Neg. LLF: 115.74340861422267
Iteration: 8, Func. Count: 52, Neg. LLF: 115.74340280583039
Iteration: 9, Func. Count: 57, Neg. LLF: 115.74340283014678
Optimization terminated successfully (Exit mode 0)
Current function value: 115.74340280583039
Iterations: 9
Function evaluations: 57
Gradient evaluations: 9
Iteration: 1, Func. Count: 8, Neg. LLF: 157.60261548692208
Iteration: 2, Func. Count: 16, Neg. LLF: 172.86722733852173
Iteration: 3, Func. Count: 24, Neg. LLF: 109.09431865702864
Iteration: 4, Func. Count: 31, Neg. LLF: 111.9287061998608
Iteration: 5, Func. Count: 39, Neg. LLF: 109.27231253847215
Iteration: 6, Func. Count: 47, Neg. LLF: 108.9535329618307
Iteration: 7, Func. Count: 54, Neg. LLF: 108.95274744023875
Iteration: 8, Func. Count: 61, Neg. LLF: 108.95273738977951
Iteration: 9, Func. Count: 67, Neg. LLF: 108.95273730341799
Optimization terminated successfully (Exit mode 0)
Current function value: 108.95273738977951
Iterations: 9
Function evaluations: 67
Gradient evaluations: 9
Iteration: 1, Func. Count: 9, Neg. LLF: 41772546.567625076
Iteration: 2, Func. Count: 19, Neg. LLF: 294.94522241903235
Iteration: 3, Func. Count: 29, Neg. LLF: 142.64485126611552
Iteration: 4, Func. Count: 38, Neg. LLF: 109.09145408947013
Iteration: 5, Func. Count: 46, Neg. LLF: 109.18139155417094
Iteration: 6, Func. Count: 55, Neg. LLF: 108.95631501728417
Iteration: 7, Func. Count: 63, Neg. LLF: 108.9533207044678
Iteration: 8, Func. Count: 71, Neg. LLF: 108.95276728528755
Iteration: 9, Func. Count: 79, Neg. LLF: 108.95273792518903
Iteration: 10, Func. Count: 87, Neg. LLF: 108.95273712821331
Optimization terminated successfully (Exit mode 0)
Current function value: 108.95273712821331
Iterations: 10
Function evaluations: 87
Gradient evaluations: 10
Iteration: 1, Func. Count: 10, Neg. LLF: 62052372.987820715
Iteration: 2, Func. Count: 21, Neg. LLF: 137.2533102330456
Iteration: 3, Func. Count: 32, Neg. LLF: 113.96373917655917
Iteration: 4, Func. Count: 42, Neg. LLF: 109.45166647116565
Iteration: 5, Func. Count: 51, Neg. LLF: 109.50904243041937
Iteration: 6, Func. Count: 61, Neg. LLF: 109.16815649624226
Iteration: 7, Func. Count: 70, Neg. LLF: 109.04836912901006
Iteration: 8, Func. Count: 79, Neg. LLF: 108.98924000963073
Iteration: 9, Func. Count: 88, Neg. LLF: 108.95828862697721
Iteration: 10, Func. Count: 97, Neg. LLF: 108.95390633413336
Iteration: 11, Func. Count: 106, Neg. LLF: 108.95274702506268
Iteration: 12, Func. Count: 115, Neg. LLF: 108.95273708036063
Iteration: 13, Func. Count: 123, Neg. LLF: 108.95273700132303
Optimization terminated successfully (Exit mode 0)
Current function value: 108.95273708036063
Iterations: 13
Function evaluations: 123
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 56665226.280614026
Iteration: 2, Func. Count: 23, Neg. LLF: 114.69919932839797
Iteration: 3, Func. Count: 34, Neg. LLF: 116.28666824220153
Iteration: 4, Func. Count: 45, Neg. LLF: 112.0689052377362
Iteration: 5, Func. Count: 56, Neg. LLF: 109.64034146140432
Iteration: 6, Func. Count: 66, Neg. LLF: 112.52044363105561
Iteration: 7, Func. Count: 77, Neg. LLF: 112.1961072325667
Iteration: 8, Func. Count: 88, Neg. LLF: 109.00685055056991
Iteration: 9, Func. Count: 98, Neg. LLF: 108.97537436439258
Iteration: 10, Func. Count: 108, Neg. LLF: 108.95985980977585
Iteration: 11, Func. Count: 118, Neg. LLF: 108.95320881515818
Iteration: 12, Func. Count: 128, Neg. LLF: 108.95273762602348
Iteration: 13, Func. Count: 138, Neg. LLF: 108.95273708247137
Optimization terminated successfully (Exit mode 0)
Current function value: 108.95273708247137
Iterations: 13
Function evaluations: 138
Gradient evaluations: 13
Iteration: 1, Func. Count: 8, Neg. LLF: 126.19911011210806
Iteration: 2, Func. Count: 17, Neg. LLF: 268.33880710341975
Iteration: 3, Func. Count: 25, Neg. LLF: 2948895.8078798144
Iteration: 4, Func. Count: 33, Neg. LLF: 114.38797710565164
Iteration: 5, Func. Count: 41, Neg. LLF: 111.03042385665931
Iteration: 6, Func. Count: 48, Neg. LLF: 114.97210891053156
Iteration: 7, Func. Count: 58, Neg. LLF: 112.60862411237639
Iteration: 8, Func. Count: 66, Neg. LLF: 110.41839096805957
Iteration: 9, Func. Count: 73, Neg. LLF: 111.9794143553117
Iteration: 10, Func. Count: 81, Neg. LLF: 110.12115306316294
Iteration: 11, Func. Count: 88, Neg. LLF: 110.08910285697301
Iteration: 12, Func. Count: 95, Neg. LLF: 110.06949685155159
Iteration: 13, Func. Count: 102, Neg. LLF: 110.06901240100512
Iteration: 14, Func. Count: 109, Neg. LLF: 110.06899669844961
Iteration: 15, Func. Count: 116, Neg. LLF: 110.06898664284337
Iteration: 16, Func. Count: 123, Neg. LLF: 110.06897939227024
Iteration: 17, Func. Count: 130, Neg. LLF: 110.06897829759103
Iteration: 18, Func. Count: 136, Neg. LLF: 110.06897828425348
Optimization terminated successfully (Exit mode 0)
Current function value: 110.06897829759103
Iterations: 18
Function evaluations: 136
Gradient evaluations: 18
Iteration: 1, Func. Count: 9, Neg. LLF: 145.60193766757575
Iteration: 2, Func. Count: 18, Neg. LLF: 121.42614513211436
Iteration: 3, Func. Count: 27, Neg. LLF: 115.84000487102445
Iteration: 4, Func. Count: 36, Neg. LLF: 108.92695122969636
Iteration: 5, Func. Count: 44, Neg. LLF: 108.83342675208569
Iteration: 6, Func. Count: 52, Neg. LLF: 108.78470890828373
Iteration: 7, Func. Count: 60, Neg. LLF: 108.76983253682926
Iteration: 8, Func. Count: 68, Neg. LLF: 108.76317848544399
Iteration: 9, Func. Count: 76, Neg. LLF: 108.76261157431323
Iteration: 10, Func. Count: 84, Neg. LLF: 108.76252867081773
Iteration: 11, Func. Count: 92, Neg. LLF: 108.76252742846198
Iteration: 12, Func. Count: 99, Neg. LLF: 108.76252739164481
Optimization terminated successfully (Exit mode 0)
Current function value: 108.76252742846198
Iterations: 12
Function evaluations: 99
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 34440715.688875936
Iteration: 2, Func. Count: 21, Neg. LLF: 215.59160974172923
Iteration: 3, Func. Count: 31, Neg. LLF: 135.90224950757542
Iteration: 4, Func. Count: 41, Neg. LLF: 107.18682118393573
Iteration: 5, Func. Count: 50, Neg. LLF: 107.14396877336142
Iteration: 6, Func. Count: 59, Neg. LLF: 107.14072986927611
Iteration: 7, Func. Count: 68, Neg. LLF: 107.13739823119099
Iteration: 8, Func. Count: 77, Neg. LLF: 107.13684152081076
Iteration: 9, Func. Count: 86, Neg. LLF: 107.1362663912306
Iteration: 10, Func. Count: 94, Neg. LLF: 107.13626629566329
Optimization terminated successfully (Exit mode 0)
Current function value: 107.1362663912306
Iterations: 10
Function evaluations: 94
Gradient evaluations: 10
Iteration: 1, Func. Count: 11, Neg. LLF: 65947145.30319652
Iteration: 2, Func. Count: 23, Neg. LLF: 113.69451451024584
Iteration: 3, Func. Count: 34, Neg. LLF: 199.51200299031785
Iteration: 4, Func. Count: 46, Neg. LLF: 107.25010614833958
Iteration: 5, Func. Count: 56, Neg. LLF: 107.19231170062316
Iteration: 6, Func. Count: 66, Neg. LLF: 107.1554222636711
Iteration: 7, Func. Count: 76, Neg. LLF: 107.13903963135596
Iteration: 8, Func. Count: 86, Neg. LLF: 107.1338142352445
Iteration: 9, Func. Count: 96, Neg. LLF: 107.13353138328418
Iteration: 10, Func. Count: 106, Neg. LLF: 107.13353073206935
Optimization terminated successfully (Exit mode 0)
Current function value: 107.13353073206935
Iterations: 10
Function evaluations: 106
Gradient evaluations: 10
Iteration: 1, Func. Count: 12, Neg. LLF: 59721461.98085461
Iteration: 2, Func. Count: 24, Neg. LLF: 117.40917412460958
Iteration: 3, Func. Count: 36, Neg. LLF: 218.10218288385133
Iteration: 4, Func. Count: 49, Neg. LLF: 108.64830018715153
Iteration: 5, Func. Count: 60, Neg. LLF: 106.23146182728509
Iteration: 6, Func. Count: 71, Neg. LLF: 105.98488460180154
Iteration: 7, Func. Count: 82, Neg. LLF: 105.94789250435112
Iteration: 8, Func. Count: 93, Neg. LLF: 105.93337902642936
Iteration: 9, Func. Count: 104, Neg. LLF: 105.93042398033562
Iteration: 10, Func. Count: 115, Neg. LLF: 105.93037290464854
Iteration: 11, Func. Count: 125, Neg. LLF: 105.9303728047624
Optimization terminated successfully (Exit mode 0)
Current function value: 105.93037290464854
Iterations: 11
Function evaluations: 125
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 122.2702959645659
Iteration: 2, Func. Count: 18, Neg. LLF: 190.88632225429618
Iteration: 3, Func. Count: 27, Neg. LLF: 113.4150562350745
Iteration: 4, Func. Count: 36, Neg. LLF: 114.33221116180152
Iteration: 5, Func. Count: 45, Neg. LLF: 110.62352301349084
Iteration: 6, Func. Count: 53, Neg. LLF: 110.10755139159816
Iteration: 7, Func. Count: 61, Neg. LLF: 110.2405054336761
Iteration: 8, Func. Count: 72, Neg. LLF: 110.07569886034317
Iteration: 9, Func. Count: 80, Neg. LLF: 110.0737149468622
Iteration: 10, Func. Count: 88, Neg. LLF: 110.06965706973132
Iteration: 11, Func. Count: 96, Neg. LLF: 110.06922551018026
Iteration: 12, Func. Count: 104, Neg. LLF: 110.06898001458956
Iteration: 13, Func. Count: 112, Neg. LLF: 110.06897838152007
Iteration: 14, Func. Count: 119, Neg. LLF: 110.06897839802333
Optimization terminated successfully (Exit mode 0)
Current function value: 110.06897838152007
Iterations: 14
Function evaluations: 119
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 147.87096232111747
Iteration: 2, Func. Count: 20, Neg. LLF: 196.3513963218874
Iteration: 3, Func. Count: 31, Neg. LLF: 114.76150127850224
Iteration: 4, Func. Count: 41, Neg. LLF: 108.8891196244687
Iteration: 5, Func. Count: 50, Neg. LLF: 108.90513920824644
Iteration: 6, Func. Count: 60, Neg. LLF: 108.77477420041454
Iteration: 7, Func. Count: 69, Neg. LLF: 108.76485591226425
Iteration: 8, Func. Count: 78, Neg. LLF: 108.76254148324175
Iteration: 9, Func. Count: 87, Neg. LLF: 108.76254495748054
Iteration: 10, Func. Count: 97, Neg. LLF: 108.76252746206468
Optimization terminated successfully (Exit mode 0)
Current function value: 108.76252746206468
Iterations: 10
Function evaluations: 97
Gradient evaluations: 10
Iteration: 1, Func. Count: 11, Neg. LLF: 74427514.41253829
Iteration: 2, Func. Count: 23, Neg. LLF: 138.4112717867537
Iteration: 3, Func. Count: 34, Neg. LLF: 118.75466292604082
Iteration: 4, Func. Count: 45, Neg. LLF: 107.33740709963365
Iteration: 5, Func. Count: 55, Neg. LLF: 107.2783691938079
Iteration: 6, Func. Count: 65, Neg. LLF: 107.19459439775942
Iteration: 7, Func. Count: 75, Neg. LLF: 107.16391684915006
Iteration: 8, Func. Count: 85, Neg. LLF: 107.14410500363874
Iteration: 9, Func. Count: 95, Neg. LLF: 107.13659451831835
Iteration: 10, Func. Count: 105, Neg. LLF: 107.13627823079408
Iteration: 11, Func. Count: 115, Neg. LLF: 107.13626684997334
Iteration: 12, Func. Count: 124, Neg. LLF: 107.13626675432138
Optimization terminated successfully (Exit mode 0)
Current function value: 107.13626684997334
Iterations: 12
Function evaluations: 124
Gradient evaluations: 12
Iteration: 1, Func. Count: 12, Neg. LLF: 67112163.60882826
Iteration: 2, Func. Count: 25, Neg. LLF: 114.32583916399236
Iteration: 3, Func. Count: 37, Neg. LLF: 150.2226472821794
Iteration: 4, Func. Count: 50, Neg. LLF: 107.21910911588633
Iteration: 5, Func. Count: 61, Neg. LLF: 107.17645316348707
Iteration: 6, Func. Count: 72, Neg. LLF: 107.14657660918425
Iteration: 7, Func. Count: 83, Neg. LLF: 107.13748646556932
Iteration: 8, Func. Count: 94, Neg. LLF: 107.13354979872172
Iteration: 9, Func. Count: 105, Neg. LLF: 107.13353240960464
Iteration: 10, Func. Count: 116, Neg. LLF: 107.13353073708822
Iteration: 11, Func. Count: 126, Neg. LLF: 107.13353065976233
Optimization terminated successfully (Exit mode 0)
Current function value: 107.13353073708822
Iterations: 11
Function evaluations: 126
Gradient evaluations: 11
Iteration: 1, Func. Count: 13, Neg. LLF: 60611262.4204001
Iteration: 2, Func. Count: 26, Neg. LLF: 121.33774399285682
Iteration: 3, Func. Count: 39, Neg. LLF: 191.5842860108828
Iteration: 4, Func. Count: 52, Neg. LLF: 109.78909301433335
Iteration: 5, Func. Count: 65, Neg. LLF: 106.24689766967366
Iteration: 6, Func. Count: 77, Neg. LLF: 106.03882162876612
Iteration: 7, Func. Count: 89, Neg. LLF: 105.95268451809865
Iteration: 8, Func. Count: 101, Neg. LLF: 105.93206243557626
Iteration: 9, Func. Count: 113, Neg. LLF: 105.93096437020499
Iteration: 10, Func. Count: 125, Neg. LLF: 105.93037351665643
Iteration: 11, Func. Count: 137, Neg. LLF: 105.93037255292911
Optimization terminated successfully (Exit mode 0)
Current function value: 105.93037255292911
Iterations: 11
Function evaluations: 137
Gradient evaluations: 11
Iteration: 1, Func. Count: 6, Neg. LLF: 126.08284259527629
Iteration: 2, Func. Count: 13, Neg. LLF: 115.79266387150507
Iteration: 3, Func. Count: 18, Neg. LLF: 117.49353746761416
Iteration: 4, Func. Count: 24, Neg. LLF: 115.74555261920283
Iteration: 5, Func. Count: 30, Neg. LLF: 115.7401118938257
Iteration: 6, Func. Count: 36, Neg. LLF: 115.73874526829951
Iteration: 7, Func. Count: 41, Neg. LLF: 115.73874344834152
Iteration: 8, Func. Count: 45, Neg. LLF: 115.73874344833659
Optimization terminated successfully (Exit mode 0)
Current function value: 115.73874344834152
Iterations: 8
Function evaluations: 45
Gradient evaluations: 8
Iteration: 1, Func. Count: 7, Neg. LLF: 25416876.096227482
Iteration: 2, Func. Count: 14, Neg. LLF: 148.73827806122296
Iteration: 3, Func. Count: 22, Neg. LLF: 111.00647357481783
Iteration: 4, Func. Count: 28, Neg. LLF: 119.95209080171517
Iteration: 5, Func. Count: 35, Neg. LLF: 116.31713041695114
Iteration: 6, Func. Count: 42, Neg. LLF: 116.40292022495194
Iteration: 7, Func. Count: 49, Neg. LLF: 110.69088939929456
Iteration: 8, Func. Count: 56, Neg. LLF: 110.15258978496809
Iteration: 9, Func. Count: 62, Neg. LLF: 110.14110278461388
Iteration: 10, Func. Count: 68, Neg. LLF: 110.14079913951161
Iteration: 11, Func. Count: 74, Neg. LLF: 110.14078926915387
Iteration: 12, Func. Count: 80, Neg. LLF: 110.14078742263469
Iteration: 13, Func. Count: 85, Neg. LLF: 110.1407874226116
Optimization terminated successfully (Exit mode 0)
Current function value: 110.14078742263469
Iterations: 13
Function evaluations: 85
Gradient evaluations: 13
Iteration: 1, Func. Count: 8, Neg. LLF: 24018956.655040614
Iteration: 2, Func. Count: 16, Neg. LLF: 403.7575373600189
Iteration: 3, Func. Count: 24, Neg. LLF: 306.0852609558506
Iteration: 4, Func. Count: 32, Neg. LLF: 133.8133494423796
Iteration: 5, Func. Count: 40, Neg. LLF: 173.4304797007827
Iteration: 6, Func. Count: 48, Neg. LLF: 119.29611246458896
Iteration: 7, Func. Count: 56, Neg. LLF: 183.17112568493275
Iteration: 8, Func. Count: 64, Neg. LLF: 111.16251879445892
Iteration: 9, Func. Count: 72, Neg. LLF: 110.38407571903339
Iteration: 10, Func. Count: 79, Neg. LLF: 110.35747403755863
Iteration: 11, Func. Count: 86, Neg. LLF: 110.29247494761812
Iteration: 12, Func. Count: 93, Neg. LLF: 110.21073766933871
Iteration: 13, Func. Count: 100, Neg. LLF: 110.14194280678105
Iteration: 14, Func. Count: 107, Neg. LLF: 110.14144000838948
Iteration: 15, Func. Count: 114, Neg. LLF: 110.14079848856626
Iteration: 16, Func. Count: 121, Neg. LLF: 110.14078781327231
Iteration: 17, Func. Count: 127, Neg. LLF: 110.14078782190701
Optimization terminated successfully (Exit mode 0)
Current function value: 110.14078781327231
Iterations: 17
Function evaluations: 127
Gradient evaluations: 17
Iteration: 1, Func. Count: 9, Neg. LLF: 24428500.622717872
Iteration: 2, Func. Count: 18, Neg. LLF: 387.8574821680024
Iteration: 3, Func. Count: 27, Neg. LLF: 386.136343750863
Iteration: 4, Func. Count: 36, Neg. LLF: 114.06447187131005
Iteration: 5, Func. Count: 45, Neg. LLF: 109.85260760300233
Iteration: 6, Func. Count: 53, Neg. LLF: 109.82540733257197
Iteration: 7, Func. Count: 61, Neg. LLF: 109.81554442818258
Iteration: 8, Func. Count: 69, Neg. LLF: 109.8144812750067
Iteration: 9, Func. Count: 77, Neg. LLF: 109.8144237062578
Iteration: 10, Func. Count: 85, Neg. LLF: 109.81442145891823
Iteration: 11, Func. Count: 92, Neg. LLF: 109.81442145892218
Optimization terminated successfully (Exit mode 0)
Current function value: 109.81442145891823
Iterations: 11
Function evaluations: 92
Gradient evaluations: 11
Iteration: 1, Func. Count: 10, Neg. LLF: 24480949.417333618
Iteration: 2, Func. Count: 20, Neg. LLF: 360.24737121864
Iteration: 3, Func. Count: 30, Neg. LLF: 448.7848190748979
Iteration: 4, Func. Count: 40, Neg. LLF: 114.42253576199289
Iteration: 5, Func. Count: 50, Neg. LLF: 109.94691014046563
Iteration: 6, Func. Count: 59, Neg. LLF: 109.8193280293474
Iteration: 7, Func. Count: 68, Neg. LLF: 109.81497699317144
Iteration: 8, Func. Count: 77, Neg. LLF: 109.81442360072417
Iteration: 9, Func. Count: 86, Neg. LLF: 109.81442149896714
Iteration: 10, Func. Count: 94, Neg. LLF: 109.81442151331652
Optimization terminated successfully (Exit mode 0)
Current function value: 109.81442149896714
Iterations: 10
Function evaluations: 94
Gradient evaluations: 10
Iteration: 1, Func. Count: 7, Neg. LLF: 126.17413846884452
Iteration: 2, Func. Count: 15, Neg. LLF: 116.06743778251429
Iteration: 3, Func. Count: 21, Neg. LLF: 119.4072510446584
Iteration: 4, Func. Count: 28, Neg. LLF: 117.52130014425478
Iteration: 5, Func. Count: 36, Neg. LLF: 115.7389587236036
Iteration: 6, Func. Count: 42, Neg. LLF: 115.7388065299361
Iteration: 7, Func. Count: 48, Neg. LLF: 115.73874839190513
Iteration: 8, Func. Count: 54, Neg. LLF: 115.73874358146139
Iteration: 9, Func. Count: 59, Neg. LLF: 115.73874353799064
Optimization terminated successfully (Exit mode 0)
Current function value: 115.73874358146139
Iterations: 9
Function evaluations: 59
Gradient evaluations: 9
Iteration: 1, Func. Count: 8, Neg. LLF: 173.12328163261796
Iteration: 2, Func. Count: 18, Neg. LLF: 230.86112418339331
Iteration: 3, Func. Count: 27, Neg. LLF: 122.73659589001483
Iteration: 4, Func. Count: 35, Neg. LLF: 110.19523334512317
Iteration: 5, Func. Count: 42, Neg. LLF: 110.26024989547454
Iteration: 6, Func. Count: 50, Neg. LLF: 110.14093799159426
Iteration: 7, Func. Count: 57, Neg. LLF: 110.14080223534332
Iteration: 8, Func. Count: 64, Neg. LLF: 110.1407875813241
Iteration: 9, Func. Count: 70, Neg. LLF: 110.140787581547
Optimization terminated successfully (Exit mode 0)
Current function value: 110.1407875813241
Iterations: 9
Function evaluations: 70
Gradient evaluations: 9
Iteration: 1, Func. Count: 9, Neg. LLF: 218.676643714632
Iteration: 2, Func. Count: 19, Neg. LLF: 1168.3918117427204
Iteration: 3, Func. Count: 29, Neg. LLF: 118.70472073886425
Iteration: 4, Func. Count: 39, Neg. LLF: 110.45829361494815
Iteration: 5, Func. Count: 47, Neg. LLF: 110.47069604164881
Iteration: 6, Func. Count: 56, Neg. LLF: 110.24817435623024
Iteration: 7, Func. Count: 64, Neg. LLF: 110.15375349822158
Iteration: 8, Func. Count: 72, Neg. LLF: 110.14501582758103
Iteration: 9, Func. Count: 80, Neg. LLF: 110.14127247029117
Iteration: 10, Func. Count: 88, Neg. LLF: 110.14086280496868
Iteration: 11, Func. Count: 96, Neg. LLF: 110.14078793581209
Iteration: 12, Func. Count: 104, Neg. LLF: 110.14078742204595
Optimization terminated successfully (Exit mode 0)
Current function value: 110.14078742204595
Iterations: 12
Function evaluations: 104
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 63895825.12329575
Iteration: 2, Func. Count: 21, Neg. LLF: 168.56269451725768
Iteration: 3, Func. Count: 32, Neg. LLF: 111.44295247550473
Iteration: 4, Func. Count: 42, Neg. LLF: 110.5808472330875
Iteration: 5, Func. Count: 51, Neg. LLF: 110.2979522247721
Iteration: 6, Func. Count: 60, Neg. LLF: 110.20785745740223
Iteration: 7, Func. Count: 69, Neg. LLF: 110.14480978694303
Iteration: 8, Func. Count: 78, Neg. LLF: 110.1435755124188
Iteration: 9, Func. Count: 88, Neg. LLF: 110.1409819936329
Iteration: 10, Func. Count: 97, Neg. LLF: 110.14084379007177
Iteration: 11, Func. Count: 106, Neg. LLF: 110.14080470759234
Iteration: 12, Func. Count: 115, Neg. LLF: 110.14078814993229
Iteration: 13, Func. Count: 124, Neg. LLF: 110.14078743315538
Optimization terminated successfully (Exit mode 0)
Current function value: 110.14078743315538
Iterations: 13
Function evaluations: 124
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 58974323.650511
Iteration: 2, Func. Count: 23, Neg. LLF: 160.99336748068797
Iteration: 3, Func. Count: 35, Neg. LLF: 114.48881551633136
Iteration: 4, Func. Count: 46, Neg. LLF: 110.49421868218283
Iteration: 5, Func. Count: 56, Neg. LLF: 110.34718648338729
Iteration: 6, Func. Count: 66, Neg. LLF: 110.20559366801372
Iteration: 7, Func. Count: 76, Neg. LLF: 109.98532043730562
Iteration: 8, Func. Count: 86, Neg. LLF: 109.8596994945662
Iteration: 9, Func. Count: 96, Neg. LLF: 109.83059690629752
Iteration: 10, Func. Count: 106, Neg. LLF: 109.81545392863329
Iteration: 11, Func. Count: 116, Neg. LLF: 109.81466601163115
Iteration: 12, Func. Count: 126, Neg. LLF: 109.81442166396351
Iteration: 13, Func. Count: 135, Neg. LLF: 109.81442167824424
Optimization terminated successfully (Exit mode 0)
Current function value: 109.81442166396351
Iterations: 13
Function evaluations: 135
Gradient evaluations: 13
Iteration: 1, Func. Count: 8, Neg. LLF: 132.58842916448813
Iteration: 2, Func. Count: 17, Neg. LLF: 141.37749918787915
Iteration: 3, Func. Count: 25, Neg. LLF: 115.76335298002601
Iteration: 4, Func. Count: 32, Neg. LLF: 116.18989644942229
Iteration: 5, Func. Count: 41, Neg. LLF: 115.73347756570506
Iteration: 6, Func. Count: 48, Neg. LLF: 115.73105754749048
Iteration: 7, Func. Count: 55, Neg. LLF: 115.72990860866106
Iteration: 8, Func. Count: 62, Neg. LLF: 115.72974023041986
Iteration: 9, Func. Count: 69, Neg. LLF: 115.72973061190021
Iteration: 10, Func. Count: 75, Neg. LLF: 115.7297305879832
Optimization terminated successfully (Exit mode 0)
Current function value: 115.72973061190021
Iterations: 10
Function evaluations: 75
Gradient evaluations: 10
Iteration: 1, Func. Count: 9, Neg. LLF: 167.69559169951617
Iteration: 2, Func. Count: 18, Neg. LLF: 172.37527813918953
Iteration: 3, Func. Count: 27, Neg. LLF: 111.65356292920431
Iteration: 4, Func. Count: 36, Neg. LLF: 109.07922963362304
Iteration: 5, Func. Count: 44, Neg. LLF: 108.96682139841965
Iteration: 6, Func. Count: 52, Neg. LLF: 108.95719637238122
Iteration: 7, Func. Count: 60, Neg. LLF: 108.95334153929481
Iteration: 8, Func. Count: 68, Neg. LLF: 108.95296514830787
Iteration: 9, Func. Count: 76, Neg. LLF: 108.95273749287965
Iteration: 10, Func. Count: 83, Neg. LLF: 108.95273740613979
Optimization terminated successfully (Exit mode 0)
Current function value: 108.95273749287965
Iterations: 10
Function evaluations: 83
Gradient evaluations: 10
Iteration: 1, Func. Count: 10, Neg. LLF: 43422668.67742663
Iteration: 2, Func. Count: 21, Neg. LLF: 374.5158867724374
Iteration: 3, Func. Count: 32, Neg. LLF: 158.7582635168863
Iteration: 4, Func. Count: 42, Neg. LLF: 109.12438011212821
Iteration: 5, Func. Count: 51, Neg. LLF: 109.37249401591579
Iteration: 6, Func. Count: 61, Neg. LLF: 108.95713689666309
Iteration: 7, Func. Count: 70, Neg. LLF: 108.95303660848221
Iteration: 8, Func. Count: 79, Neg. LLF: 108.95277979840077
Iteration: 9, Func. Count: 88, Neg. LLF: 108.95273719984654
Iteration: 10, Func. Count: 96, Neg. LLF: 108.95273711858486
Optimization terminated successfully (Exit mode 0)
Current function value: 108.95273719984654
Iterations: 10
Function evaluations: 96
Gradient evaluations: 10
Iteration: 1, Func. Count: 11, Neg. LLF: 63150765.353838526
Iteration: 2, Func. Count: 23, Neg. LLF: 134.6329511719533
Iteration: 3, Func. Count: 35, Neg. LLF: 115.75658105427514
Iteration: 4, Func. Count: 46, Neg. LLF: 109.40428969158883
Iteration: 5, Func. Count: 56, Neg. LLF: 110.36002898019356
Iteration: 6, Func. Count: 67, Neg. LLF: 109.18088736708705
Iteration: 7, Func. Count: 77, Neg. LLF: 109.05718213870789
Iteration: 8, Func. Count: 87, Neg. LLF: 108.98243931322645
Iteration: 9, Func. Count: 97, Neg. LLF: 108.96057208049024
Iteration: 10, Func. Count: 107, Neg. LLF: 108.95367867855016
Iteration: 11, Func. Count: 117, Neg. LLF: 108.95279800285513
Iteration: 12, Func. Count: 127, Neg. LLF: 108.9527379070948
Iteration: 13, Func. Count: 137, Neg. LLF: 108.95273708856391
Optimization terminated successfully (Exit mode 0)
Current function value: 108.95273708856391
Iterations: 13
Function evaluations: 137
Gradient evaluations: 13
Iteration: 1, Func. Count: 12, Neg. LLF: 58071666.9106525
Iteration: 2, Func. Count: 25, Neg. LLF: 115.25948004797677
Iteration: 3, Func. Count: 37, Neg. LLF: 123.71326741993566
Iteration: 4, Func. Count: 50, Neg. LLF: 109.58684082571642
Iteration: 5, Func. Count: 61, Neg. LLF: 109.881021536462
Iteration: 6, Func. Count: 73, Neg. LLF: 109.41615281785326
Iteration: 7, Func. Count: 85, Neg. LLF: 109.01854981051652
Iteration: 8, Func. Count: 96, Neg. LLF: 108.95723854978719
Iteration: 9, Func. Count: 107, Neg. LLF: 108.95325619210797
Iteration: 10, Func. Count: 118, Neg. LLF: 108.9527845332306
Iteration: 11, Func. Count: 129, Neg. LLF: 108.9527527741408
Iteration: 12, Func. Count: 140, Neg. LLF: 108.95273740121705
Iteration: 13, Func. Count: 150, Neg. LLF: 108.95273733574439
Optimization terminated successfully (Exit mode 0)
Current function value: 108.95273740121705
Iterations: 13
Function evaluations: 150
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 122.50904424988155
Iteration: 2, Func. Count: 18, Neg. LLF: 202.11994162025178
Iteration: 3, Func. Count: 27, Neg. LLF: 117.3386393673458
Iteration: 4, Func. Count: 36, Neg. LLF: 162.76277710430563
Iteration: 5, Func. Count: 45, Neg. LLF: 10210.486839093028
Iteration: 6, Func. Count: 54, Neg. LLF: 794.2489866682532
Iteration: 7, Func. Count: 63, Neg. LLF: 1415253.599217062
Iteration: 8, Func. Count: 72, Neg. LLF: 130.58257160758623
Iteration: 9, Func. Count: 81, Neg. LLF: 109.50715549745222
Iteration: 10, Func. Count: 89, Neg. LLF: 109.46556790315519
Iteration: 11, Func. Count: 97, Neg. LLF: 109.77224465491234
Iteration: 12, Func. Count: 106, Neg. LLF: 109.79910735658953
Iteration: 13, Func. Count: 115, Neg. LLF: 109.38793893305946
Iteration: 14, Func. Count: 123, Neg. LLF: 109.38759129593372
Iteration: 15, Func. Count: 131, Neg. LLF: 109.38596453478208
Iteration: 16, Func. Count: 139, Neg. LLF: 109.38202359431425
Iteration: 17, Func. Count: 147, Neg. LLF: 109.37482926599496
Iteration: 18, Func. Count: 155, Neg. LLF: 109.36528546093258
Iteration: 19, Func. Count: 163, Neg. LLF: 109.35214304581645
Iteration: 20, Func. Count: 171, Neg. LLF: 109.35201946313568
Iteration: 21, Func. Count: 179, Neg. LLF: 109.35201761086122
Iteration: 22, Func. Count: 186, Neg. LLF: 109.35201759153139
Optimization terminated successfully (Exit mode 0)
Current function value: 109.35201761086122
Iterations: 22
Function evaluations: 186
Gradient evaluations: 22
Iteration: 1, Func. Count: 10, Neg. LLF: 153.38514614546705
Iteration: 2, Func. Count: 20, Neg. LLF: 111.50736733791845
Iteration: 3, Func. Count: 30, Neg. LLF: 123.5214437509198
Iteration: 4, Func. Count: 41, Neg. LLF: 108.86963548215665
Iteration: 5, Func. Count: 50, Neg. LLF: 108.79891825461058
Iteration: 6, Func. Count: 59, Neg. LLF: 108.76442887451823
Iteration: 7, Func. Count: 68, Neg. LLF: 108.76501733681916
Iteration: 8, Func. Count: 78, Neg. LLF: 108.76252816435374
Iteration: 9, Func. Count: 87, Neg. LLF: 108.76252742661337
Optimization terminated successfully (Exit mode 0)
Current function value: 108.76252742661337
Iterations: 9
Function evaluations: 87
Gradient evaluations: 9
Iteration: 1, Func. Count: 11, Neg. LLF: 35980909.46830363
Iteration: 2, Func. Count: 23, Neg. LLF: 218.63460832282547
Iteration: 3, Func. Count: 34, Neg. LLF: 134.48628490189122
Iteration: 4, Func. Count: 45, Neg. LLF: 107.18167012223601
Iteration: 5, Func. Count: 55, Neg. LLF: 107.14505157702487
Iteration: 6, Func. Count: 65, Neg. LLF: 107.14118341003311
Iteration: 7, Func. Count: 75, Neg. LLF: 107.13759865122663
Iteration: 8, Func. Count: 85, Neg. LLF: 107.1369494007039
Iteration: 9, Func. Count: 95, Neg. LLF: 107.13626643134037
Iteration: 10, Func. Count: 104, Neg. LLF: 107.13626633578963
Optimization terminated successfully (Exit mode 0)
Current function value: 107.13626643134037
Iterations: 10
Function evaluations: 104
Gradient evaluations: 10
Iteration: 1, Func. Count: 12, Neg. LLF: 67066847.372254
Iteration: 2, Func. Count: 25, Neg. LLF: 113.83037749728157
Iteration: 3, Func. Count: 37, Neg. LLF: 206.25689692219868
Iteration: 4, Func. Count: 50, Neg. LLF: 107.25142255842624
Iteration: 5, Func. Count: 61, Neg. LLF: 107.19273548938622
Iteration: 6, Func. Count: 72, Neg. LLF: 107.15595002866829
Iteration: 7, Func. Count: 83, Neg. LLF: 107.13900475838051
Iteration: 8, Func. Count: 94, Neg. LLF: 107.13379989503095
Iteration: 9, Func. Count: 105, Neg. LLF: 107.13353141104193
Iteration: 10, Func. Count: 116, Neg. LLF: 107.1335307423719
Optimization terminated successfully (Exit mode 0)
Current function value: 107.1335307423719
Iterations: 10
Function evaluations: 116
Gradient evaluations: 10
Iteration: 1, Func. Count: 13, Neg. LLF: 61166047.9283786
Iteration: 2, Func. Count: 26, Neg. LLF: 116.97125695989938
Iteration: 3, Func. Count: 39, Neg. LLF: 216.8464143594828
Iteration: 4, Func. Count: 53, Neg. LLF: 108.25225476716825
Iteration: 5, Func. Count: 65, Neg. LLF: 106.21094035224453
Iteration: 6, Func. Count: 77, Neg. LLF: 105.98331896810842
Iteration: 7, Func. Count: 89, Neg. LLF: 105.94819904736599
Iteration: 8, Func. Count: 101, Neg. LLF: 105.93242707575106
Iteration: 9, Func. Count: 113, Neg. LLF: 105.93040605039097
Iteration: 10, Func. Count: 125, Neg. LLF: 105.93037284572083
Iteration: 11, Func. Count: 136, Neg. LLF: 105.9303727458298
Optimization terminated successfully (Exit mode 0)
Current function value: 105.93037284572083
Iterations: 11
Function evaluations: 136
Gradient evaluations: 11
Iteration: 1, Func. Count: 10, Neg. LLF: 119.18113684912429
Iteration: 2, Func. Count: 20, Neg. LLF: 182.90200254018586
Iteration: 3, Func. Count: 30, Neg. LLF: 118.76763381327132
Iteration: 4, Func. Count: 40, Neg. LLF: 447.8195797941575
Iteration: 5, Func. Count: 50, Neg. LLF: 237657.6508798698
Iteration: 6, Func. Count: 60, Neg. LLF: 3369.999889925317
Iteration: 7, Func. Count: 70, Neg. LLF: 1306309.3706895234
Iteration: 8, Func. Count: 80, Neg. LLF: 764678.9998385116
Iteration: 9, Func. Count: 90, Neg. LLF: 111.74505303721205
Iteration: 10, Func. Count: 100, Neg. LLF: 109.46079101088894
Iteration: 11, Func. Count: 109, Neg. LLF: 109.39109622106585
Iteration: 12, Func. Count: 118, Neg. LLF: 109.390328612839
Iteration: 13, Func. Count: 127, Neg. LLF: 109.38827536517434
Iteration: 14, Func. Count: 136, Neg. LLF: 109.3874779114691
Iteration: 15, Func. Count: 145, Neg. LLF: 109.38312185896775
Iteration: 16, Func. Count: 154, Neg. LLF: 109.37328267943018
Iteration: 17, Func. Count: 163, Neg. LLF: 109.36475843619914
Iteration: 18, Func. Count: 172, Neg. LLF: 109.35314723741035
Iteration: 19, Func. Count: 181, Neg. LLF: 109.3520639394831
Iteration: 20, Func. Count: 190, Neg. LLF: 109.35201866768973
Iteration: 21, Func. Count: 199, Neg. LLF: 109.35201759704718
Iteration: 22, Func. Count: 207, Neg. LLF: 109.35201760813612
Optimization terminated successfully (Exit mode 0)
Current function value: 109.35201759704718
Iterations: 22
Function evaluations: 207
Gradient evaluations: 22
Iteration: 1, Func. Count: 11, Neg. LLF: 155.72017847839405
Iteration: 2, Func. Count: 22, Neg. LLF: 110.79871085102089
Iteration: 3, Func. Count: 33, Neg. LLF: 127.56801293464989
Iteration: 4, Func. Count: 45, Neg. LLF: 108.90186552112888
Iteration: 5, Func. Count: 55, Neg. LLF: 108.79670485788672
Iteration: 6, Func. Count: 65, Neg. LLF: 108.76600075694455
Iteration: 7, Func. Count: 75, Neg. LLF: 108.7661332003797
Iteration: 8, Func. Count: 86, Neg. LLF: 108.76252751106348
Iteration: 9, Func. Count: 95, Neg. LLF: 108.76252747417986
Optimization terminated successfully (Exit mode 0)
Current function value: 108.76252751106348
Iterations: 9
Function evaluations: 95
Gradient evaluations: 9
Iteration: 1, Func. Count: 12, Neg. LLF: 75573748.155859
Iteration: 2, Func. Count: 25, Neg. LLF: 135.6813799470812
Iteration: 3, Func. Count: 37, Neg. LLF: 121.57987613578011
Iteration: 4, Func. Count: 49, Neg. LLF: 107.39582829472556
Iteration: 5, Func. Count: 60, Neg. LLF: 107.32343993600658
Iteration: 6, Func. Count: 71, Neg. LLF: 107.26817702499154
Iteration: 7, Func. Count: 82, Neg. LLF: 107.20422985697384
Iteration: 8, Func. Count: 93, Neg. LLF: 107.14875841092861
Iteration: 9, Func. Count: 104, Neg. LLF: 107.13764808609727
Iteration: 10, Func. Count: 115, Neg. LLF: 107.13631069740056
Iteration: 11, Func. Count: 126, Neg. LLF: 107.13627093744763
Iteration: 12, Func. Count: 137, Neg. LLF: 107.13626197927375
Iteration: 13, Func. Count: 148, Neg. LLF: 107.1362841456896
Optimization terminated successfully (Exit mode 0)
Current function value: 107.13626205126803
Iterations: 14
Function evaluations: 150
Gradient evaluations: 13
Iteration: 1, Func. Count: 13, Neg. LLF: 68148484.88101497
Iteration: 2, Func. Count: 27, Neg. LLF: 114.03726624907196
Iteration: 3, Func. Count: 40, Neg. LLF: 161.079264689346
Iteration: 4, Func. Count: 54, Neg. LLF: 107.23337950010675
Iteration: 5, Func. Count: 66, Neg. LLF: 107.18765461554445
Iteration: 6, Func. Count: 78, Neg. LLF: 107.14957577973756
Iteration: 7, Func. Count: 90, Neg. LLF: 107.13791383453187
Iteration: 8, Func. Count: 102, Neg. LLF: 107.13361526174258
Iteration: 9, Func. Count: 114, Neg. LLF: 107.13353190621801
Iteration: 10, Func. Count: 126, Neg. LLF: 107.13353072855423
Iteration: 11, Func. Count: 137, Neg. LLF: 107.13353065122581
Optimization terminated successfully (Exit mode 0)
Current function value: 107.13353072855423
Iterations: 11
Function evaluations: 137
Gradient evaluations: 11
Iteration: 1, Func. Count: 14, Neg. LLF: 61984570.56595552
Iteration: 2, Func. Count: 28, Neg. LLF: 120.36361362676003
Iteration: 3, Func. Count: 42, Neg. LLF: 194.6334229635405
Iteration: 4, Func. Count: 56, Neg. LLF: 109.68387586757434
Iteration: 5, Func. Count: 70, Neg. LLF: 106.21060042780208
Iteration: 6, Func. Count: 83, Neg. LLF: 106.02232692626174
Iteration: 7, Func. Count: 96, Neg. LLF: 105.94291560351017
Iteration: 8, Func. Count: 109, Neg. LLF: 105.93201472612743
Iteration: 9, Func. Count: 122, Neg. LLF: 105.93086898382346
Iteration: 10, Func. Count: 135, Neg. LLF: 105.93037313743044
Iteration: 11, Func. Count: 148, Neg. LLF: 105.93037250532055
Optimization terminated successfully (Exit mode 0)
Current function value: 105.93037250532055
Iterations: 11
Function evaluations: 148
Gradient evaluations: 11
Iteration: 1, Func. Count: 7, Neg. LLF: 118.0097964549758
Iteration: 2, Func. Count: 14, Neg. LLF: 150.10043516492973
Iteration: 3, Func. Count: 21, Neg. LLF: 2080.6218039489613
Iteration: 4, Func. Count: 28, Neg. LLF: 407.9833375798998
Iteration: 5, Func. Count: 35, Neg. LLF: 12826.534422401948
Iteration: 6, Func. Count: 42, Neg. LLF: 134.49139199407995
Iteration: 7, Func. Count: 49, Neg. LLF: 117.9881425004354
Iteration: 8, Func. Count: 56, Neg. LLF: 111.69165675423014
Iteration: 9, Func. Count: 63, Neg. LLF: 110.71062654821812
Iteration: 10, Func. Count: 69, Neg. LLF: 110.68385343649719
Iteration: 11, Func. Count: 75, Neg. LLF: 110.66923321851417
Iteration: 12, Func. Count: 81, Neg. LLF: 110.66667527229396
Iteration: 13, Func. Count: 87, Neg. LLF: 110.66594303559309
Iteration: 14, Func. Count: 93, Neg. LLF: 110.6658615461723
Iteration: 15, Func. Count: 99, Neg. LLF: 110.66585292970403
Iteration: 16, Func. Count: 104, Neg. LLF: 110.66585292970456
Optimization terminated successfully (Exit mode 0)
Current function value: 110.66585292970403
Iterations: 16
Function evaluations: 104
Gradient evaluations: 16
Iteration: 1, Func. Count: 8, Neg. LLF: 25383401.71262931
Iteration: 2, Func. Count: 16, Neg. LLF: 148.80549091003473
Iteration: 3, Func. Count: 25, Neg. LLF: 111.01608322833351
Iteration: 4, Func. Count: 32, Neg. LLF: 120.37137761260887
Iteration: 5, Func. Count: 40, Neg. LLF: 115.1589697713893
Iteration: 6, Func. Count: 48, Neg. LLF: 115.0471139752911
Iteration: 7, Func. Count: 56, Neg. LLF: 110.50565280558457
Iteration: 8, Func. Count: 64, Neg. LLF: 110.14586571644298
Iteration: 9, Func. Count: 71, Neg. LLF: 110.14086919716843
Iteration: 10, Func. Count: 78, Neg. LLF: 110.14079211154187
Iteration: 11, Func. Count: 85, Neg. LLF: 110.14078785928592
Iteration: 12, Func. Count: 91, Neg. LLF: 110.14078785965263
Optimization terminated successfully (Exit mode 0)
Current function value: 110.14078785928592
Iterations: 12
Function evaluations: 91
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 24146927.803186465
Iteration: 2, Func. Count: 18, Neg. LLF: 9229.0788762049
Iteration: 3, Func. Count: 28, Neg. LLF: 384.3619624211745
Iteration: 4, Func. Count: 37, Neg. LLF: 127.6108144921273
Iteration: 5, Func. Count: 46, Neg. LLF: 120.55130554722737
Iteration: 6, Func. Count: 55, Neg. LLF: 183.17312874130204
Iteration: 7, Func. Count: 64, Neg. LLF: 112.53147499161551
Iteration: 8, Func. Count: 73, Neg. LLF: 110.8266623068997
Iteration: 9, Func. Count: 81, Neg. LLF: 110.49646004621817
Iteration: 10, Func. Count: 89, Neg. LLF: 110.48784240079837
Iteration: 11, Func. Count: 98, Neg. LLF: 110.38200497582817
Iteration: 12, Func. Count: 106, Neg. LLF: 110.3043349849945
Iteration: 13, Func. Count: 114, Neg. LLF: 110.23492812644314
Iteration: 14, Func. Count: 122, Neg. LLF: 110.14219608470785
Iteration: 15, Func. Count: 130, Neg. LLF: 110.14168410400544
Iteration: 16, Func. Count: 138, Neg. LLF: 110.14097533098698
Iteration: 17, Func. Count: 146, Neg. LLF: 110.14082294878747
Iteration: 18, Func. Count: 154, Neg. LLF: 110.14078800670035
Iteration: 19, Func. Count: 162, Neg. LLF: 110.14078743515265
Optimization terminated successfully (Exit mode 0)
Current function value: 110.14078743515265
Iterations: 19
Function evaluations: 162
Gradient evaluations: 19
Iteration: 1, Func. Count: 10, Neg. LLF: 24626685.74938601
Iteration: 2, Func. Count: 20, Neg. LLF: 1842.1403342410417
Iteration: 3, Func. Count: 31, Neg. LLF: 568.7549769618846
Iteration: 4, Func. Count: 41, Neg. LLF: 120.88751168288779
Iteration: 5, Func. Count: 51, Neg. LLF: 202.42445646000712
Iteration: 6, Func. Count: 61, Neg. LLF: 109.82249106837317
Iteration: 7, Func. Count: 70, Neg. LLF: 109.83228666340516
Iteration: 8, Func. Count: 80, Neg. LLF: 109.80154945094978
Iteration: 9, Func. Count: 89, Neg. LLF: 109.80008077605191
Iteration: 10, Func. Count: 98, Neg. LLF: 109.79990769016027
Iteration: 11, Func. Count: 107, Neg. LLF: 109.79990709153482
Optimization terminated successfully (Exit mode 0)
Current function value: 109.79990709153482
Iterations: 11
Function evaluations: 107
Gradient evaluations: 11
Iteration: 1, Func. Count: 11, Neg. LLF: 24680045.243952453
Iteration: 2, Func. Count: 22, Neg. LLF: 2507.7991928295214
Iteration: 3, Func. Count: 34, Neg. LLF: 632.3782464605404
Iteration: 4, Func. Count: 45, Neg. LLF: 138.15745808258976
Iteration: 5, Func. Count: 56, Neg. LLF: 118.83779599980818
Iteration: 6, Func. Count: 67, Neg. LLF: 109.87204433350685
Iteration: 7, Func. Count: 77, Neg. LLF: 109.82792237465249
Iteration: 8, Func. Count: 87, Neg. LLF: 109.80923590019695
Iteration: 9, Func. Count: 97, Neg. LLF: 109.8001021245883
Iteration: 10, Func. Count: 107, Neg. LLF: 109.79994292681292
Iteration: 11, Func. Count: 117, Neg. LLF: 109.7999117020481
Iteration: 12, Func. Count: 127, Neg. LLF: 109.79990708382296
Iteration: 13, Func. Count: 136, Neg. LLF: 109.799907091705
Optimization terminated successfully (Exit mode 0)
Current function value: 109.79990708382296
Iterations: 13
Function evaluations: 136
Gradient evaluations: 13
Iteration: 1, Func. Count: 8, Neg. LLF: 117.90774799991969
Iteration: 2, Func. Count: 16, Neg. LLF: 154.49747493420432
Iteration: 3, Func. Count: 24, Neg. LLF: 3910.0860430514376
Iteration: 4, Func. Count: 32, Neg. LLF: 405.82942912226355
Iteration: 5, Func. Count: 40, Neg. LLF: 52202.78266013439
Iteration: 6, Func. Count: 48, Neg. LLF: 132.37136402275152
Iteration: 7, Func. Count: 56, Neg. LLF: 117.71910181430815
Iteration: 8, Func. Count: 64, Neg. LLF: 111.67545562817344
Iteration: 9, Func. Count: 72, Neg. LLF: 110.70730754395163
Iteration: 10, Func. Count: 79, Neg. LLF: 110.68195256583566
Iteration: 11, Func. Count: 86, Neg. LLF: 110.6691794226583
Iteration: 12, Func. Count: 93, Neg. LLF: 110.66659122388504
Iteration: 13, Func. Count: 100, Neg. LLF: 110.66592802889451
Iteration: 14, Func. Count: 107, Neg. LLF: 110.66586029057451
Iteration: 15, Func. Count: 114, Neg. LLF: 110.66585292549038
Iteration: 16, Func. Count: 120, Neg. LLF: 110.66585297554384
Optimization terminated successfully (Exit mode 0)
Current function value: 110.66585292549038
Iterations: 16
Function evaluations: 120
Gradient evaluations: 16
Iteration: 1, Func. Count: 9, Neg. LLF: 172.54927045419197
Iteration: 2, Func. Count: 20, Neg. LLF: 233.9609628543908
Iteration: 3, Func. Count: 30, Neg. LLF: 122.53038496699105
Iteration: 4, Func. Count: 39, Neg. LLF: 110.19675112914895
Iteration: 5, Func. Count: 47, Neg. LLF: 110.21230634149691
Iteration: 6, Func. Count: 56, Neg. LLF: 110.14091645469661
Iteration: 7, Func. Count: 64, Neg. LLF: 110.14079257863358
Iteration: 8, Func. Count: 72, Neg. LLF: 110.14078759270134
Iteration: 9, Func. Count: 79, Neg. LLF: 110.14078759278877
Optimization terminated successfully (Exit mode 0)
Current function value: 110.14078759270134
Iterations: 9
Function evaluations: 79
Gradient evaluations: 9
Iteration: 1, Func. Count: 10, Neg. LLF: 233.88347059275014
Iteration: 2, Func. Count: 21, Neg. LLF: 1379.723016273981
Iteration: 3, Func. Count: 32, Neg. LLF: 118.72714754728634
Iteration: 4, Func. Count: 43, Neg. LLF: 110.467243201004
Iteration: 5, Func. Count: 52, Neg. LLF: 110.54504816387137
Iteration: 6, Func. Count: 62, Neg. LLF: 110.2502768481425
Iteration: 7, Func. Count: 71, Neg. LLF: 110.15409475151523
Iteration: 8, Func. Count: 80, Neg. LLF: 110.14636383842905
Iteration: 9, Func. Count: 89, Neg. LLF: 110.14114171573942
Iteration: 10, Func. Count: 98, Neg. LLF: 110.14087215981229
Iteration: 11, Func. Count: 107, Neg. LLF: 110.14079406439176
Iteration: 12, Func. Count: 116, Neg. LLF: 110.1407874346667
Iteration: 13, Func. Count: 124, Neg. LLF: 110.1407874432605
Optimization terminated successfully (Exit mode 0)
Current function value: 110.1407874346667
Iterations: 13
Function evaluations: 124
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 64766766.459935114
Iteration: 2, Func. Count: 23, Neg. LLF: 167.5827743132855
Iteration: 3, Func. Count: 35, Neg. LLF: 110.46385698602471
Iteration: 4, Func. Count: 45, Neg. LLF: 111.21607847591568
Iteration: 5, Func. Count: 56, Neg. LLF: 110.33254407266605
Iteration: 6, Func. Count: 66, Neg. LLF: 110.3255895796826
Iteration: 7, Func. Count: 76, Neg. LLF: 110.3047616468469
Iteration: 8, Func. Count: 86, Neg. LLF: 109.96289789500749
Iteration: 9, Func. Count: 96, Neg. LLF: 109.88705623836202
Iteration: 10, Func. Count: 106, Neg. LLF: 109.8154489788691
Iteration: 11, Func. Count: 116, Neg. LLF: 109.8035733027608
Iteration: 12, Func. Count: 126, Neg. LLF: 109.80134352727002
Iteration: 13, Func. Count: 136, Neg. LLF: 109.80032820318168
Iteration: 14, Func. Count: 146, Neg. LLF: 109.79997679762128
Iteration: 15, Func. Count: 156, Neg. LLF: 109.79992397680937
Iteration: 16, Func. Count: 166, Neg. LLF: 109.79991132898945
Iteration: 17, Func. Count: 176, Neg. LLF: 109.79990761423868
Iteration: 18, Func. Count: 185, Neg. LLF: 109.7999076142797
Optimization terminated successfully (Exit mode 0)
Current function value: 109.79990761423868
Iterations: 18
Function evaluations: 185
Gradient evaluations: 18
Iteration: 1, Func. Count: 12, Neg. LLF: 59824837.20383674
Iteration: 2, Func. Count: 25, Neg. LLF: 159.98992413187867
Iteration: 3, Func. Count: 38, Neg. LLF: 115.01547965319706
Iteration: 4, Func. Count: 50, Neg. LLF: 110.46948272701077
Iteration: 5, Func. Count: 61, Neg. LLF: 110.32120524511022
Iteration: 6, Func. Count: 72, Neg. LLF: 110.04293550323474
Iteration: 7, Func. Count: 83, Neg. LLF: 109.95034721411207
Iteration: 8, Func. Count: 94, Neg. LLF: 109.82271017697599
Iteration: 9, Func. Count: 105, Neg. LLF: 109.81667161673677
Iteration: 10, Func. Count: 116, Neg. LLF: 109.80866028498973
Iteration: 11, Func. Count: 127, Neg. LLF: 109.80065224698474
Iteration: 12, Func. Count: 138, Neg. LLF: 109.79999189028837
Iteration: 13, Func. Count: 149, Neg. LLF: 109.79990751652059
Iteration: 14, Func. Count: 159, Neg. LLF: 109.79990752422327
Optimization terminated successfully (Exit mode 0)
Current function value: 109.79990751652059
Iterations: 14
Function evaluations: 159
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 117.88731259475958
Iteration: 2, Func. Count: 18, Neg. LLF: 156.54117275288579
Iteration: 3, Func. Count: 27, Neg. LLF: 4512.55239649763
Iteration: 4, Func. Count: 36, Neg. LLF: 380.99276892334
Iteration: 5, Func. Count: 45, Neg. LLF: 4737.730114658419
Iteration: 6, Func. Count: 54, Neg. LLF: 122.32604500917758
Iteration: 7, Func. Count: 63, Neg. LLF: 111.84384557247313
Iteration: 8, Func. Count: 72, Neg. LLF: 110.70526461801727
Iteration: 9, Func. Count: 80, Neg. LLF: 110.66962340851825
Iteration: 10, Func. Count: 88, Neg. LLF: 110.68429310586257
Iteration: 11, Func. Count: 97, Neg. LLF: 110.73234986124882
Iteration: 12, Func. Count: 106, Neg. LLF: 110.64211938385027
Iteration: 13, Func. Count: 114, Neg. LLF: 110.64071016302786
Iteration: 14, Func. Count: 122, Neg. LLF: 110.64050938684932
Iteration: 15, Func. Count: 130, Neg. LLF: 110.64049006941748
Iteration: 16, Func. Count: 138, Neg. LLF: 110.64048435356024
Iteration: 17, Func. Count: 146, Neg. LLF: 110.64048262152164
Iteration: 18, Func. Count: 153, Neg. LLF: 110.64048262062077
Optimization terminated successfully (Exit mode 0)
Current function value: 110.64048262152164
Iterations: 18
Function evaluations: 153
Gradient evaluations: 18
Iteration: 1, Func. Count: 10, Neg. LLF: 171.69201244280993
Iteration: 2, Func. Count: 20, Neg. LLF: 179.99516490927425
Iteration: 3, Func. Count: 30, Neg. LLF: 118.8996968334945
Iteration: 4, Func. Count: 40, Neg. LLF: 108.96336598076064
Iteration: 5, Func. Count: 49, Neg. LLF: 108.9578142933735
Iteration: 6, Func. Count: 58, Neg. LLF: 108.95290881611194
Iteration: 7, Func. Count: 67, Neg. LLF: 108.95276040482204
Iteration: 8, Func. Count: 76, Neg. LLF: 108.95273774819668
Iteration: 9, Func. Count: 85, Neg. LLF: 108.95273735732205
Optimization terminated successfully (Exit mode 0)
Current function value: 108.95273735732205
Iterations: 9
Function evaluations: 85
Gradient evaluations: 9
Iteration: 1, Func. Count: 11, Neg. LLF: 43827828.51661914
Iteration: 2, Func. Count: 23, Neg. LLF: 433.59020894430887
Iteration: 3, Func. Count: 35, Neg. LLF: 152.41982216009907
Iteration: 4, Func. Count: 46, Neg. LLF: 109.13327206274055
Iteration: 5, Func. Count: 56, Neg. LLF: 109.15591756857702
Iteration: 6, Func. Count: 67, Neg. LLF: 108.95534205837401
Iteration: 7, Func. Count: 77, Neg. LLF: 108.95317810523433
Iteration: 8, Func. Count: 87, Neg. LLF: 108.95278083297518
Iteration: 9, Func. Count: 97, Neg. LLF: 108.95273870834946
Iteration: 10, Func. Count: 107, Neg. LLF: 108.95273709747461
Iteration: 11, Func. Count: 116, Neg. LLF: 108.9527370161123
Optimization terminated successfully (Exit mode 0)
Current function value: 108.95273709747461
Iterations: 11
Function evaluations: 116
Gradient evaluations: 11
Iteration: 1, Func. Count: 12, Neg. LLF: 63990436.690294795
Iteration: 2, Func. Count: 25, Neg. LLF: 131.75050086454948
Iteration: 3, Func. Count: 38, Neg. LLF: 121.12810864852241
Iteration: 4, Func. Count: 50, Neg. LLF: 109.48514090515958
Iteration: 5, Func. Count: 61, Neg. LLF: 109.41438777790262
Iteration: 6, Func. Count: 72, Neg. LLF: 109.13415665444302
Iteration: 7, Func. Count: 83, Neg. LLF: 109.10042597200355
Iteration: 8, Func. Count: 95, Neg. LLF: 108.99030320961876
Iteration: 9, Func. Count: 106, Neg. LLF: 108.96677766757195
Iteration: 10, Func. Count: 117, Neg. LLF: 108.95416050035558
Iteration: 11, Func. Count: 128, Neg. LLF: 108.9529322560226
Iteration: 12, Func. Count: 139, Neg. LLF: 108.95275966448528
Iteration: 13, Func. Count: 150, Neg. LLF: 108.9527373271131
Iteration: 14, Func. Count: 160, Neg. LLF: 108.95273724847691
Optimization terminated successfully (Exit mode 0)
Current function value: 108.9527373271131
Iterations: 14
Function evaluations: 160
Gradient evaluations: 14
Iteration: 1, Func. Count: 13, Neg. LLF: 58884518.237362385
Iteration: 2, Func. Count: 27, Neg. LLF: 116.86034432025082
Iteration: 3, Func. Count: 40, Neg. LLF: 130.32129087854338
Iteration: 4, Func. Count: 54, Neg. LLF: 109.43039368374039
Iteration: 5, Func. Count: 66, Neg. LLF: 109.31539270443355
Iteration: 6, Func. Count: 78, Neg. LLF: 109.12807840765284
Iteration: 7, Func. Count: 90, Neg. LLF: 109.0483569335477
Iteration: 8, Func. Count: 102, Neg. LLF: 109.02164151785517
Iteration: 9, Func. Count: 114, Neg. LLF: 108.95885062282615
Iteration: 10, Func. Count: 126, Neg. LLF: 108.95391182010854
Iteration: 11, Func. Count: 138, Neg. LLF: 108.95275076268588
Iteration: 12, Func. Count: 150, Neg. LLF: 108.95273720159531
Iteration: 13, Func. Count: 161, Neg. LLF: 108.95273713630552
Optimization terminated successfully (Exit mode 0)
Current function value: 108.95273720159531
Iterations: 13
Function evaluations: 161
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 114.91176331395718
Iteration: 2, Func. Count: 20, Neg. LLF: 135.57429045046163
Iteration: 3, Func. Count: 30, Neg. LLF: 2941618.2773714904
Iteration: 4, Func. Count: 40, Neg. LLF: 1962988.8013110196
Iteration: 5, Func. Count: 50, Neg. LLF: 2307603.7851129025
Iteration: 6, Func. Count: 60, Neg. LLF: 1714923.5042343999
Iteration: 7, Func. Count: 70, Neg. LLF: 136.27084058043442
Iteration: 8, Func. Count: 80, Neg. LLF: 257.98624569501186
Iteration: 9, Func. Count: 90, Neg. LLF: 115.57961132271132
Iteration: 10, Func. Count: 100, Neg. LLF: 117.07072626538952
Iteration: 11, Func. Count: 110, Neg. LLF: 112.69328440270138
Iteration: 12, Func. Count: 120, Neg. LLF: 112.51250275797813
Iteration: 13, Func. Count: 130, Neg. LLF: 107.30860772777685
Iteration: 14, Func. Count: 140, Neg. LLF: 106.7709058113728
Iteration: 15, Func. Count: 149, Neg. LLF: 106.83429380766951
Iteration: 16, Func. Count: 159, Neg. LLF: 108.05908057743218
Iteration: 17, Func. Count: 169, Neg. LLF: 106.68009267475652
Iteration: 18, Func. Count: 178, Neg. LLF: 106.67565209180243
Iteration: 19, Func. Count: 187, Neg. LLF: 106.67377901518097
Iteration: 20, Func. Count: 196, Neg. LLF: 106.67370443875545
Iteration: 21, Func. Count: 205, Neg. LLF: 106.67369536038385
Iteration: 22, Func. Count: 213, Neg. LLF: 106.67369534071254
Optimization terminated successfully (Exit mode 0)
Current function value: 106.67369536038385
Iterations: 22
Function evaluations: 213
Gradient evaluations: 22
Iteration: 1, Func. Count: 11, Neg. LLF: 156.10476920777825
Iteration: 2, Func. Count: 22, Neg. LLF: 118.29333725227043
Iteration: 3, Func. Count: 34, Neg. LLF: 111.08445870382171
Iteration: 4, Func. Count: 45, Neg. LLF: 108.81324306861302
Iteration: 5, Func. Count: 55, Neg. LLF: 108.7732793949265
Iteration: 6, Func. Count: 65, Neg. LLF: 108.7625627279802
Iteration: 7, Func. Count: 75, Neg. LLF: 108.76255154579152
Iteration: 8, Func. Count: 86, Neg. LLF: 108.76252755534959
Iteration: 9, Func. Count: 95, Neg. LLF: 108.76252751862786
Optimization terminated successfully (Exit mode 0)
Current function value: 108.76252755534959
Iterations: 9
Function evaluations: 95
Gradient evaluations: 9
Iteration: 1, Func. Count: 12, Neg. LLF: 36329732.89548468
Iteration: 2, Func. Count: 25, Neg. LLF: 246.73215218227034
Iteration: 3, Func. Count: 37, Neg. LLF: 131.3960681638724
Iteration: 4, Func. Count: 49, Neg. LLF: 114.3460790644903
Iteration: 5, Func. Count: 62, Neg. LLF: 109.45323188385402
Iteration: 6, Func. Count: 74, Neg. LLF: 107.43248775116129
Iteration: 7, Func. Count: 85, Neg. LLF: 109.60165094520767
Iteration: 8, Func. Count: 97, Neg. LLF: 107.22110499333989
Iteration: 9, Func. Count: 108, Neg. LLF: 107.14735756663913
Iteration: 10, Func. Count: 119, Neg. LLF: 107.13980717019494
Iteration: 11, Func. Count: 130, Neg. LLF: 107.1358636962358
Iteration: 12, Func. Count: 141, Neg. LLF: 107.13560229876515
Iteration: 13, Func. Count: 152, Neg. LLF: 107.13549540848415
Iteration: 14, Func. Count: 163, Neg. LLF: 107.13548666862623
Iteration: 15, Func. Count: 173, Neg. LLF: 107.13548657400705
Optimization terminated successfully (Exit mode 0)
Current function value: 107.13548666862623
Iterations: 15
Function evaluations: 173
Gradient evaluations: 15
Iteration: 1, Func. Count: 13, Neg. LLF: 67855428.51549529
Iteration: 2, Func. Count: 27, Neg. LLF: 114.08771508416001
Iteration: 3, Func. Count: 40, Neg. LLF: 164.8547805881736
Iteration: 4, Func. Count: 53, Neg. LLF: 109.57667070648262
Iteration: 5, Func. Count: 66, Neg. LLF: 193.2383712335414
Iteration: 6, Func. Count: 81, Neg. LLF: 106.9981623276762
Iteration: 7, Func. Count: 93, Neg. LLF: 115.38786064525735
Iteration: 8, Func. Count: 107, Neg. LLF: 106.81884414743818
Iteration: 9, Func. Count: 119, Neg. LLF: 106.70963984856621
Iteration: 10, Func. Count: 131, Neg. LLF: 106.68360315957827
Iteration: 11, Func. Count: 143, Neg. LLF: 106.67636569322237
Iteration: 12, Func. Count: 155, Neg. LLF: 106.67413083869317
Iteration: 13, Func. Count: 167, Neg. LLF: 106.67386737291574
Iteration: 14, Func. Count: 179, Neg. LLF: 106.67374176808283
Iteration: 15, Func. Count: 191, Neg. LLF: 106.6737048234519
Iteration: 16, Func. Count: 203, Neg. LLF: 106.6736956610729
Iteration: 17, Func. Count: 214, Neg. LLF: 106.6736956932351
Optimization terminated successfully (Exit mode 0)
Current function value: 106.6736956610729
Iterations: 17
Function evaluations: 214
Gradient evaluations: 17
Iteration: 1, Func. Count: 14, Neg. LLF: 61928656.27011656
Iteration: 2, Func. Count: 28, Neg. LLF: 116.54828049895394
Iteration: 3, Func. Count: 42, Neg. LLF: 112.21746795087583
Iteration: 4, Func. Count: 57, Neg. LLF: 490.86246106451466
Iteration: 5, Func. Count: 72, Neg. LLF: 112.41220874794314
Iteration: 6, Func. Count: 86, Neg. LLF: 106.17097162294772
Iteration: 7, Func. Count: 99, Neg. LLF: 110.4112440951878
Iteration: 8, Func. Count: 113, Neg. LLF: 105.86275066907027
Iteration: 9, Func. Count: 126, Neg. LLF: 105.84957962190373
Iteration: 10, Func. Count: 140, Neg. LLF: 105.7987793393774
Iteration: 11, Func. Count: 153, Neg. LLF: 105.7975907300424
Iteration: 12, Func. Count: 166, Neg. LLF: 105.79753429150938
Iteration: 13, Func. Count: 179, Neg. LLF: 105.79747074265582
Iteration: 14, Func. Count: 192, Neg. LLF: 105.79746907241335
Iteration: 15, Func. Count: 205, Neg. LLF: 105.79746839610343
Optimization terminated successfully (Exit mode 0)
Current function value: 105.79746839610343
Iterations: 15
Function evaluations: 205
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 115.41258019704969
Iteration: 2, Func. Count: 22, Neg. LLF: 130.67762537637054
Iteration: 3, Func. Count: 33, Neg. LLF: 2826382.2028874634
Iteration: 4, Func. Count: 44, Neg. LLF: 1593912.7111808406
Iteration: 5, Func. Count: 55, Neg. LLF: 1861713.551622757
Iteration: 6, Func. Count: 66, Neg. LLF: 326.3837111807035
Iteration: 7, Func. Count: 77, Neg. LLF: 135.44220174494268
Iteration: 8, Func. Count: 88, Neg. LLF: 126.1780664663807
Iteration: 9, Func. Count: 99, Neg. LLF: 1275.1956022752104
Iteration: 10, Func. Count: 110, Neg. LLF: 114.03805606451529
Iteration: 11, Func. Count: 121, Neg. LLF: 112.10378429096347
Iteration: 12, Func. Count: 132, Neg. LLF: 106.78040147747632
Iteration: 13, Func. Count: 142, Neg. LLF: 106.80358765102015
Iteration: 14, Func. Count: 153, Neg. LLF: 112.57714877229049
Iteration: 15, Func. Count: 167, Neg. LLF: 106.67813500345603
Iteration: 16, Func. Count: 177, Neg. LLF: 106.67538225676657
Iteration: 17, Func. Count: 187, Neg. LLF: 106.67372746689318
Iteration: 18, Func. Count: 197, Neg. LLF: 106.67369745981206
Iteration: 19, Func. Count: 207, Neg. LLF: 106.6736951891568
Iteration: 20, Func. Count: 216, Neg. LLF: 106.67369519041505
Optimization terminated successfully (Exit mode 0)
Current function value: 106.6736951891568
Iterations: 20
Function evaluations: 216
Gradient evaluations: 20
Iteration: 1, Func. Count: 12, Neg. LLF: 158.47218499782795
Iteration: 2, Func. Count: 24, Neg. LLF: 116.25361721258825
Iteration: 3, Func. Count: 37, Neg. LLF: 111.73172925615947
Iteration: 4, Func. Count: 49, Neg. LLF: 108.80801044015566
Iteration: 5, Func. Count: 60, Neg. LLF: 108.7732053074763
Iteration: 6, Func. Count: 71, Neg. LLF: 108.76403978311578
Iteration: 7, Func. Count: 82, Neg. LLF: 108.76271180358042
Iteration: 8, Func. Count: 93, Neg. LLF: 108.76257334958258
Iteration: 9, Func. Count: 104, Neg. LLF: 108.76253440171297
Iteration: 10, Func. Count: 115, Neg. LLF: 108.76252763979545
Iteration: 11, Func. Count: 125, Neg. LLF: 108.7625276032453
Optimization terminated successfully (Exit mode 0)
Current function value: 108.76252763979545
Iterations: 11
Function evaluations: 125
Gradient evaluations: 11
Iteration: 1, Func. Count: 13, Neg. LLF: 75972461.95347378
Iteration: 2, Func. Count: 27, Neg. LLF: 131.9841686048755
Iteration: 3, Func. Count: 40, Neg. LLF: 128.7887290721639
Iteration: 4, Func. Count: 53, Neg. LLF: 109.39709340000867
Iteration: 5, Func. Count: 66, Neg. LLF: 108.14347879526544
Iteration: 6, Func. Count: 78, Neg. LLF: 107.53537172758084
Iteration: 7, Func. Count: 90, Neg. LLF: 128.73186053542182
Iteration: 8, Func. Count: 106, Neg. LLF: 107.3799233495163
Iteration: 9, Func. Count: 118, Neg. LLF: 107.1112003514934
Iteration: 10, Func. Count: 130, Neg. LLF: 106.96252913215882
Iteration: 11, Func. Count: 142, Neg. LLF: 107.10908723464473
Iteration: 12, Func. Count: 155, Neg. LLF: 106.78085589820195
Iteration: 13, Func. Count: 168, Neg. LLF: 106.68575294517088
Iteration: 14, Func. Count: 180, Neg. LLF: 106.67787102056879
Iteration: 15, Func. Count: 192, Neg. LLF: 106.67564792664494
Iteration: 16, Func. Count: 204, Neg. LLF: 106.67448780543407
Iteration: 17, Func. Count: 216, Neg. LLF: 106.67390469236338
Iteration: 18, Func. Count: 228, Neg. LLF: 106.6737132801794
Iteration: 19, Func. Count: 240, Neg. LLF: 106.67369562940682
Iteration: 20, Func. Count: 251, Neg. LLF: 106.67369566108832
Optimization terminated successfully (Exit mode 0)
Current function value: 106.67369562940682
Iterations: 20
Function evaluations: 251
Gradient evaluations: 20
Iteration: 1, Func. Count: 14, Neg. LLF: 68904606.28368777
Iteration: 2, Func. Count: 29, Neg. LLF: 113.87130516131964
Iteration: 3, Func. Count: 43, Neg. LLF: 150.46476394478378
Iteration: 4, Func. Count: 57, Neg. LLF: 115.78426993583854
Iteration: 5, Func. Count: 71, Neg. LLF: 134.67169217292118
Iteration: 6, Func. Count: 87, Neg. LLF: 107.02899398803108
Iteration: 7, Func. Count: 100, Neg. LLF: 109.03264785509279
Iteration: 8, Func. Count: 114, Neg. LLF: 106.90330861769618
Iteration: 9, Func. Count: 128, Neg. LLF: 106.69000776444534
Iteration: 10, Func. Count: 141, Neg. LLF: 106.68082873867262
Iteration: 11, Func. Count: 154, Neg. LLF: 106.6743112893555
Iteration: 12, Func. Count: 167, Neg. LLF: 106.67374114976577
Iteration: 13, Func. Count: 180, Neg. LLF: 106.67370340709472
Iteration: 14, Func. Count: 193, Neg. LLF: 106.67369993002913
Iteration: 15, Func. Count: 206, Neg. LLF: 106.6736959571486
Iteration: 16, Func. Count: 219, Neg. LLF: 106.67369529392414
Optimization terminated successfully (Exit mode 0)
Current function value: 106.67369529392414
Iterations: 16
Function evaluations: 219
Gradient evaluations: 16
Iteration: 1, Func. Count: 15, Neg. LLF: 62723343.481552124
Iteration: 2, Func. Count: 30, Neg. LLF: 119.39139505341923
Iteration: 3, Func. Count: 45, Neg. LLF: 119.18691533217635
Iteration: 4, Func. Count: 60, Neg. LLF: 120.01772964170243
Iteration: 5, Func. Count: 77, Neg. LLF: 197.92929764917224
Iteration: 6, Func. Count: 93, Neg. LLF: 106.80943124177874
Iteration: 7, Func. Count: 107, Neg. LLF: 106.1857632543557
Iteration: 8, Func. Count: 121, Neg. LLF: 105.89437354228495
Iteration: 9, Func. Count: 135, Neg. LLF: 105.84083901207457
Iteration: 10, Func. Count: 149, Neg. LLF: 105.80909177718927
Iteration: 11, Func. Count: 163, Neg. LLF: 105.79974151718216
Iteration: 12, Func. Count: 177, Neg. LLF: 105.7976775290423
Iteration: 13, Func. Count: 191, Neg. LLF: 105.79747187872302
Iteration: 14, Func. Count: 205, Neg. LLF: 105.7974688551403
Iteration: 15, Func. Count: 219, Neg. LLF: 105.79746834427621
Optimization terminated successfully (Exit mode 0)
Current function value: 105.79746834427621
Iterations: 15
Function evaluations: 219
Gradient evaluations: 15
Iteration: 1, Func. Count: 8, Neg. LLF: 120.07496403296332
Iteration: 2, Func. Count: 16, Neg. LLF: 147.74749159990984
Iteration: 3, Func. Count: 24, Neg. LLF: 1400.05633815006
Iteration: 4, Func. Count: 32, Neg. LLF: 497.22962025312364
Iteration: 5, Func. Count: 40, Neg. LLF: 215.81516821543272
Iteration: 6, Func. Count: 48, Neg. LLF: 120.24064799792417
Iteration: 7, Func. Count: 56, Neg. LLF: 111.25087702610301
Iteration: 8, Func. Count: 64, Neg. LLF: 111.0204342436398
Iteration: 9, Func. Count: 72, Neg. LLF: 110.67755388667399
Iteration: 10, Func. Count: 79, Neg. LLF: 110.66841512914888
Iteration: 11, Func. Count: 86, Neg. LLF: 110.66604988523324
Iteration: 12, Func. Count: 93, Neg. LLF: 110.66585424220862
Iteration: 13, Func. Count: 100, Neg. LLF: 110.66585291240537
Iteration: 14, Func. Count: 106, Neg. LLF: 110.66585306386004
Optimization terminated successfully (Exit mode 0)
Current function value: 110.66585291240537
Iterations: 14
Function evaluations: 106
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 25197002.447767973
Iteration: 2, Func. Count: 18, Neg. LLF: 146.58425209915094
Iteration: 3, Func. Count: 28, Neg. LLF: 110.85613122283715
Iteration: 4, Func. Count: 36, Neg. LLF: 119.65062730469575
Iteration: 5, Func. Count: 45, Neg. LLF: 112.13221292083931
Iteration: 6, Func. Count: 54, Neg. LLF: 110.56271501429758
Iteration: 7, Func. Count: 63, Neg. LLF: 110.14444794809748
Iteration: 8, Func. Count: 71, Neg. LLF: 110.1408505019901
Iteration: 9, Func. Count: 79, Neg. LLF: 110.14079043491304
Iteration: 10, Func. Count: 87, Neg. LLF: 110.14078773906384
Iteration: 11, Func. Count: 94, Neg. LLF: 110.14078773931756
Optimization terminated successfully (Exit mode 0)
Current function value: 110.14078773906384
Iterations: 11
Function evaluations: 94
Gradient evaluations: 11
Iteration: 1, Func. Count: 10, Neg. LLF: 24026069.43060596
Iteration: 2, Func. Count: 20, Neg. LLF: 59929.19947356829
Iteration: 3, Func. Count: 30, Neg. LLF: 141.3460219225651
Iteration: 4, Func. Count: 40, Neg. LLF: 116.22861449372863
Iteration: 5, Func. Count: 50, Neg. LLF: 117.37681152525725
Iteration: 6, Func. Count: 60, Neg. LLF: 148.22052476686355
Iteration: 7, Func. Count: 70, Neg. LLF: 111.61258790453272
Iteration: 8, Func. Count: 80, Neg. LLF: 110.5864087189701
Iteration: 9, Func. Count: 89, Neg. LLF: 110.6529371881014
Iteration: 10, Func. Count: 99, Neg. LLF: 110.47574783988071
Iteration: 11, Func. Count: 108, Neg. LLF: 110.30915869545689
Iteration: 12, Func. Count: 117, Neg. LLF: 110.14869586009937
Iteration: 13, Func. Count: 126, Neg. LLF: 110.14653690575267
Iteration: 14, Func. Count: 136, Neg. LLF: 110.14146950406274
Iteration: 15, Func. Count: 145, Neg. LLF: 110.14082526837842
Iteration: 16, Func. Count: 154, Neg. LLF: 110.14078905340956
Iteration: 17, Func. Count: 162, Neg. LLF: 110.14078906277936
Optimization terminated successfully (Exit mode 0)
Current function value: 110.14078905340956
Iterations: 17
Function evaluations: 162
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 24514597.402733006
Iteration: 2, Func. Count: 22, Neg. LLF: 5404.931590442349
Iteration: 3, Func. Count: 34, Neg. LLF: 567.8374300400602
Iteration: 4, Func. Count: 45, Neg. LLF: 119.43403442461906
Iteration: 5, Func. Count: 56, Neg. LLF: 186.99453267427782
Iteration: 6, Func. Count: 67, Neg. LLF: 109.82005474959303
Iteration: 7, Func. Count: 77, Neg. LLF: 109.82929022217091
Iteration: 8, Func. Count: 88, Neg. LLF: 109.80095797514755
Iteration: 9, Func. Count: 98, Neg. LLF: 109.8000049092708
Iteration: 10, Func. Count: 108, Neg. LLF: 109.79991287586358
Iteration: 11, Func. Count: 118, Neg. LLF: 109.79990709661199
Iteration: 12, Func. Count: 127, Neg. LLF: 109.79990709663547
Optimization terminated successfully (Exit mode 0)
Current function value: 109.79990709661199
Iterations: 12
Function evaluations: 127
Gradient evaluations: 12
Iteration: 1, Func. Count: 12, Neg. LLF: 24562132.327004112
Iteration: 2, Func. Count: 24, Neg. LLF: 5639.628697918242
Iteration: 3, Func. Count: 37, Neg. LLF: 663.9701027784602
Iteration: 4, Func. Count: 49, Neg. LLF: 147.9609791720032
Iteration: 5, Func. Count: 61, Neg. LLF: 115.99344191049
Iteration: 6, Func. Count: 73, Neg. LLF: 109.85487249264777
Iteration: 7, Func. Count: 84, Neg. LLF: 109.82927683577373
Iteration: 8, Func. Count: 95, Neg. LLF: 109.80552785944482
Iteration: 9, Func. Count: 106, Neg. LLF: 109.80009999933957
Iteration: 10, Func. Count: 117, Neg. LLF: 109.79993145543105
Iteration: 11, Func. Count: 128, Neg. LLF: 109.79991086260745
Iteration: 12, Func. Count: 139, Neg. LLF: 109.79990710383126
Iteration: 13, Func. Count: 149, Neg. LLF: 109.79990711173674
Optimization terminated successfully (Exit mode 0)
Current function value: 109.79990710383126
Iterations: 13
Function evaluations: 149
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 119.87812859572651
Iteration: 2, Func. Count: 18, Neg. LLF: 147.7075466612656
Iteration: 3, Func. Count: 27, Neg. LLF: 1386.2802613412189
Iteration: 4, Func. Count: 36, Neg. LLF: 549.3710677988279
Iteration: 5, Func. Count: 45, Neg. LLF: 228.73763818130575
Iteration: 6, Func. Count: 54, Neg. LLF: 119.93193140778182
Iteration: 7, Func. Count: 63, Neg. LLF: 111.10305311605023
Iteration: 8, Func. Count: 71, Neg. LLF: 110.93489231509005
Iteration: 9, Func. Count: 79, Neg. LLF: 112.8255147448388
Iteration: 10, Func. Count: 90, Neg. LLF: 112.75291874983967
Iteration: 11, Func. Count: 99, Neg. LLF: 110.67825733249936
Iteration: 12, Func. Count: 107, Neg. LLF: 110.66916893969332
Iteration: 13, Func. Count: 115, Neg. LLF: 110.6665085006699
Iteration: 14, Func. Count: 123, Neg. LLF: 110.66590053261217
Iteration: 15, Func. Count: 131, Neg. LLF: 110.66586228986388
Iteration: 16, Func. Count: 139, Neg. LLF: 110.66585290769815
Iteration: 17, Func. Count: 146, Neg. LLF: 110.66585285764343
Optimization terminated successfully (Exit mode 0)
Current function value: 110.66585290769815
Iterations: 17
Function evaluations: 146
Gradient evaluations: 17
Iteration: 1, Func. Count: 10, Neg. LLF: 172.4366271910022
Iteration: 2, Func. Count: 22, Neg. LLF: 231.23466180129213
Iteration: 3, Func. Count: 33, Neg. LLF: 122.63005664896123
Iteration: 4, Func. Count: 43, Neg. LLF: 110.19734904883308
Iteration: 5, Func. Count: 52, Neg. LLF: 110.19024723659727
Iteration: 6, Func. Count: 62, Neg. LLF: 110.14096959976513
Iteration: 7, Func. Count: 71, Neg. LLF: 110.14079243193173
Iteration: 8, Func. Count: 80, Neg. LLF: 110.14078746385717
Iteration: 9, Func. Count: 88, Neg. LLF: 110.14078746387138
Optimization terminated successfully (Exit mode 0)
Current function value: 110.14078746385717
Iterations: 9
Function evaluations: 88
Gradient evaluations: 9
Iteration: 1, Func. Count: 11, Neg. LLF: 240.74866306620024
Iteration: 2, Func. Count: 23, Neg. LLF: 1464.4133652018127
Iteration: 3, Func. Count: 35, Neg. LLF: 118.70951222861508
Iteration: 4, Func. Count: 47, Neg. LLF: 110.47559745515633
Iteration: 5, Func. Count: 57, Neg. LLF: 110.53185164785434
Iteration: 6, Func. Count: 68, Neg. LLF: 110.25046623169408
Iteration: 7, Func. Count: 78, Neg. LLF: 110.15268312260707
Iteration: 8, Func. Count: 88, Neg. LLF: 110.14562674876726
Iteration: 9, Func. Count: 98, Neg. LLF: 110.14110944602412
Iteration: 10, Func. Count: 108, Neg. LLF: 110.14086915490016
Iteration: 11, Func. Count: 118, Neg. LLF: 110.1407969985118
Iteration: 12, Func. Count: 128, Neg. LLF: 110.14078745800045
Iteration: 13, Func. Count: 138, Neg. LLF: 110.22167020698699
Optimization terminated successfully (Exit mode 0)
Current function value: 110.140787447337
Iterations: 14
Function evaluations: 141
Gradient evaluations: 13
Iteration: 1, Func. Count: 12, Neg. LLF: 64359713.032075584
Iteration: 2, Func. Count: 25, Neg. LLF: 167.68592106142574
Iteration: 3, Func. Count: 38, Neg. LLF: 110.63037177607242
Iteration: 4, Func. Count: 49, Neg. LLF: 110.92404995771848
Iteration: 5, Func. Count: 61, Neg. LLF: 110.39745990576881
Iteration: 6, Func. Count: 72, Neg. LLF: 110.33966173523224
Iteration: 7, Func. Count: 83, Neg. LLF: 110.25813223567945
Iteration: 8, Func. Count: 94, Neg. LLF: 110.23638580982042
Iteration: 9, Func. Count: 105, Neg. LLF: 110.19421600352382
Iteration: 10, Func. Count: 116, Neg. LLF: 110.16936701330084
Iteration: 11, Func. Count: 127, Neg. LLF: 110.14643420423153
Iteration: 12, Func. Count: 138, Neg. LLF: 110.14123596610095
Iteration: 13, Func. Count: 149, Neg. LLF: 110.1408226899822
Iteration: 14, Func. Count: 160, Neg. LLF: 110.14078941976459
Iteration: 15, Func. Count: 171, Neg. LLF: 110.14078780654343
Iteration: 16, Func. Count: 182, Neg. LLF: 111.61807426639444
Optimization terminated successfully (Exit mode 0)
Current function value: 110.14078760167266
Iterations: 17
Function evaluations: 185
Gradient evaluations: 16
Iteration: 1, Func. Count: 13, Neg. LLF: 59445272.36281167
Iteration: 2, Func. Count: 27, Neg. LLF: 159.7623653173154
Iteration: 3, Func. Count: 41, Neg. LLF: 114.7688257615162
Iteration: 4, Func. Count: 54, Neg. LLF: 111.5105482252461
Iteration: 5, Func. Count: 67, Neg. LLF: 114.91760408330242
Iteration: 6, Func. Count: 80, Neg. LLF: 110.31754245278614
Iteration: 7, Func. Count: 92, Neg. LLF: 109.88479946332536
Iteration: 8, Func. Count: 104, Neg. LLF: 109.82808816738624
Iteration: 9, Func. Count: 116, Neg. LLF: 109.80599226411852
Iteration: 10, Func. Count: 128, Neg. LLF: 109.80161053361199
Iteration: 11, Func. Count: 140, Neg. LLF: 109.80009359702545
Iteration: 12, Func. Count: 152, Neg. LLF: 109.79993777807513
Iteration: 13, Func. Count: 164, Neg. LLF: 109.79990895129461
Iteration: 14, Func. Count: 176, Neg. LLF: 109.79990708968644
Iteration: 15, Func. Count: 187, Neg. LLF: 109.79990709758712
Optimization terminated successfully (Exit mode 0)
Current function value: 109.79990708968644
Iterations: 15
Function evaluations: 187
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 119.79395656258642
Iteration: 2, Func. Count: 20, Neg. LLF: 147.750429957524
Iteration: 3, Func. Count: 30, Neg. LLF: 1383.9116097526905
Iteration: 4, Func. Count: 40, Neg. LLF: 4891.546845892167
Iteration: 5, Func. Count: 50, Neg. LLF: 202.84048544404092
Iteration: 6, Func. Count: 60, Neg. LLF: 120.59940758979039
Iteration: 7, Func. Count: 70, Neg. LLF: 111.11203734298127
Iteration: 8, Func. Count: 80, Neg. LLF: 110.68280859487378
Iteration: 9, Func. Count: 89, Neg. LLF: 110.65856159413359
Iteration: 10, Func. Count: 98, Neg. LLF: 110.69194457859469
Iteration: 11, Func. Count: 108, Neg. LLF: 110.64186409362385
Iteration: 12, Func. Count: 117, Neg. LLF: 110.64083621939844
Iteration: 13, Func. Count: 126, Neg. LLF: 110.64059047652623
Iteration: 14, Func. Count: 135, Neg. LLF: 110.64048647999307
Iteration: 15, Func. Count: 144, Neg. LLF: 110.64048269773907
Iteration: 16, Func. Count: 152, Neg. LLF: 110.64048269683326
Optimization terminated successfully (Exit mode 0)
Current function value: 110.64048269773907
Iterations: 16
Function evaluations: 152
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 171.19473051546612
Iteration: 2, Func. Count: 22, Neg. LLF: 184.73265961013252
Iteration: 3, Func. Count: 33, Neg. LLF: 125.37152372190491
Iteration: 4, Func. Count: 44, Neg. LLF: 108.96020479795051
Iteration: 5, Func. Count: 54, Neg. LLF: 108.95736564985421
Iteration: 6, Func. Count: 64, Neg. LLF: 108.95283428870252
Iteration: 7, Func. Count: 74, Neg. LLF: 108.95274081706717
Iteration: 8, Func. Count: 84, Neg. LLF: 108.95273664912912
Iteration: 9, Func. Count: 94, Neg. LLF: 108.95273671684663
Optimization terminated successfully (Exit mode 0)
Current function value: 108.95273671684663
Iterations: 9
Function evaluations: 94
Gradient evaluations: 9
Iteration: 1, Func. Count: 12, Neg. LLF: 43894228.18498369
Iteration: 2, Func. Count: 25, Neg. LLF: 447.27026881875315
Iteration: 3, Func. Count: 38, Neg. LLF: 150.99696421156102
Iteration: 4, Func. Count: 50, Neg. LLF: 109.12290904095067
Iteration: 5, Func. Count: 61, Neg. LLF: 109.14559147438614
Iteration: 6, Func. Count: 73, Neg. LLF: 108.95584742937471
Iteration: 7, Func. Count: 84, Neg. LLF: 108.95321986462251
Iteration: 8, Func. Count: 95, Neg. LLF: 108.95278713604606
Iteration: 9, Func. Count: 106, Neg. LLF: 108.95273892599498
Iteration: 10, Func. Count: 117, Neg. LLF: 108.95273717436736
Iteration: 11, Func. Count: 127, Neg. LLF: 108.95273709308633
Optimization terminated successfully (Exit mode 0)
Current function value: 108.95273717436736
Iterations: 11
Function evaluations: 127
Gradient evaluations: 11
Iteration: 1, Func. Count: 13, Neg. LLF: 63572743.09684498
Iteration: 2, Func. Count: 27, Neg. LLF: 132.34547158199064
Iteration: 3, Func. Count: 41, Neg. LLF: 119.98303939856697
Iteration: 4, Func. Count: 54, Neg. LLF: 109.50757936067515
Iteration: 5, Func. Count: 66, Neg. LLF: 109.36700198934227
Iteration: 6, Func. Count: 78, Neg. LLF: 109.18658600185515
Iteration: 7, Func. Count: 90, Neg. LLF: 109.08694369352854
Iteration: 8, Func. Count: 102, Neg. LLF: 109.06358241772504
Iteration: 9, Func. Count: 115, Neg. LLF: 108.97101113163633
Iteration: 10, Func. Count: 127, Neg. LLF: 108.95606255657991
Iteration: 11, Func. Count: 139, Neg. LLF: 108.95287812800727
Iteration: 12, Func. Count: 151, Neg. LLF: 108.95273727784374
Iteration: 13, Func. Count: 162, Neg. LLF: 108.95273719871489
Optimization terminated successfully (Exit mode 0)
Current function value: 108.95273727784374
Iterations: 13
Function evaluations: 162
Gradient evaluations: 13
Iteration: 1, Func. Count: 14, Neg. LLF: 58496067.97291872
Iteration: 2, Func. Count: 29, Neg. LLF: 117.15137654998244
Iteration: 3, Func. Count: 43, Neg. LLF: 131.17013206724363
Iteration: 4, Func. Count: 58, Neg. LLF: 109.41802134986851
Iteration: 5, Func. Count: 71, Neg. LLF: 109.42468131751735
Iteration: 6, Func. Count: 85, Neg. LLF: 109.16240129881633
Iteration: 7, Func. Count: 98, Neg. LLF: 109.0417430339229
Iteration: 8, Func. Count: 111, Neg. LLF: 108.97086268590888
Iteration: 9, Func. Count: 124, Neg. LLF: 108.95553735497678
Iteration: 10, Func. Count: 137, Neg. LLF: 108.95286581022901
Iteration: 11, Func. Count: 150, Neg. LLF: 108.95276696772683
Iteration: 12, Func. Count: 163, Neg. LLF: 108.9527371710345
Iteration: 13, Func. Count: 175, Neg. LLF: 108.95273710573042
Optimization terminated successfully (Exit mode 0)
Current function value: 108.9527371710345
Iterations: 13
Function evaluations: 175
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 118.74004076882812
Iteration: 2, Func. Count: 22, Neg. LLF: 141.65714293547194
Iteration: 3, Func. Count: 33, Neg. LLF: 145.44071803615807
Iteration: 4, Func. Count: 44, Neg. LLF: 1590799.57622392
Iteration: 5, Func. Count: 55, Neg. LLF: 1591923.7365893275
Iteration: 6, Func. Count: 66, Neg. LLF: 447.39418057123686
Iteration: 7, Func. Count: 77, Neg. LLF: 133.05299329295525
Iteration: 8, Func. Count: 88, Neg. LLF: 122.00923243670927
Iteration: 9, Func. Count: 99, Neg. LLF: 117.09441735391914
Iteration: 10, Func. Count: 110, Neg. LLF: 115.46509216487887
Iteration: 11, Func. Count: 121, Neg. LLF: 113.89499088499468
Iteration: 12, Func. Count: 132, Neg. LLF: 113.31359964639053
Iteration: 13, Func. Count: 143, Neg. LLF: 112.5886396905426
Iteration: 14, Func. Count: 154, Neg. LLF: 112.33214725204982
Iteration: 15, Func. Count: 165, Neg. LLF: 111.90566692235353
Iteration: 16, Func. Count: 176, Neg. LLF: 107.70985885864633
Iteration: 17, Func. Count: 187, Neg. LLF: 106.69601909746358
Iteration: 18, Func. Count: 197, Neg. LLF: 110.74715005723822
Iteration: 19, Func. Count: 209, Neg. LLF: 106.87688542208086
Iteration: 20, Func. Count: 220, Neg. LLF: 106.67752715043306
Iteration: 21, Func. Count: 230, Neg. LLF: 106.67453779332429
Iteration: 22, Func. Count: 240, Neg. LLF: 106.67380045432205
Iteration: 23, Func. Count: 250, Neg. LLF: 106.67369859033249
Iteration: 24, Func. Count: 260, Neg. LLF: 106.67369565617557
Iteration: 25, Func. Count: 269, Neg. LLF: 106.67369563649814
Optimization terminated successfully (Exit mode 0)
Current function value: 106.67369565617557
Iterations: 25
Function evaluations: 269
Gradient evaluations: 25
Iteration: 1, Func. Count: 12, Neg. LLF: 155.63507450563532
Iteration: 2, Func. Count: 24, Neg. LLF: 123.44802467089332
Iteration: 3, Func. Count: 37, Neg. LLF: 110.12535650830795
Iteration: 4, Func. Count: 49, Neg. LLF: 108.81164812548285
Iteration: 5, Func. Count: 60, Neg. LLF: 108.77102972014788
Iteration: 6, Func. Count: 71, Neg. LLF: 108.76335495438757
Iteration: 7, Func. Count: 82, Neg. LLF: 108.76279504097141
Iteration: 8, Func. Count: 93, Neg. LLF: 108.76253375241497
Iteration: 9, Func. Count: 104, Neg. LLF: 108.76253411569614
Iteration: 10, Func. Count: 115, Neg. LLF: 108.76252767547183
Optimization terminated successfully (Exit mode 0)
Current function value: 108.76252771227033
Iterations: 10
Function evaluations: 115
Gradient evaluations: 10
Iteration: 1, Func. Count: 13, Neg. LLF: 36399488.98283224
Iteration: 2, Func. Count: 27, Neg. LLF: 267.37309254213494
Iteration: 3, Func. Count: 40, Neg. LLF: 129.78241249759523
Iteration: 4, Func. Count: 53, Neg. LLF: 120.91720327903676
Iteration: 5, Func. Count: 67, Neg. LLF: 107.89477463442343
Iteration: 6, Func. Count: 79, Neg. LLF: 107.30668062046776
Iteration: 7, Func. Count: 91, Neg. LLF: 107.1833429526841
Iteration: 8, Func. Count: 103, Neg. LLF: 107.14879183842793
Iteration: 9, Func. Count: 115, Neg. LLF: 107.14150946813844
Iteration: 10, Func. Count: 127, Neg. LLF: 107.13714552866466
Iteration: 11, Func. Count: 139, Neg. LLF: 107.13561684863998
Iteration: 12, Func. Count: 151, Neg. LLF: 107.13548950465284
Iteration: 13, Func. Count: 163, Neg. LLF: 107.13548565735155
Iteration: 14, Func. Count: 174, Neg. LLF: 107.13548556270197
Optimization terminated successfully (Exit mode 0)
Current function value: 107.13548565735155
Iterations: 14
Function evaluations: 174
Gradient evaluations: 14
Iteration: 1, Func. Count: 14, Neg. LLF: 67424302.76110338
Iteration: 2, Func. Count: 29, Neg. LLF: 114.15700556891677
Iteration: 3, Func. Count: 43, Neg. LLF: 163.04984833917499
Iteration: 4, Func. Count: 57, Neg. LLF: 109.56327081760567
Iteration: 5, Func. Count: 71, Neg. LLF: 181.60412482986914
Iteration: 6, Func. Count: 87, Neg. LLF: 107.01347922301467
Iteration: 7, Func. Count: 100, Neg. LLF: 114.86996026511075
Iteration: 8, Func. Count: 114, Neg. LLF: 106.81537463595379
Iteration: 9, Func. Count: 127, Neg. LLF: 106.71142807136066
Iteration: 10, Func. Count: 140, Neg. LLF: 106.68581061496008
Iteration: 11, Func. Count: 153, Neg. LLF: 106.67477180535947
Iteration: 12, Func. Count: 166, Neg. LLF: 106.67391548490609
Iteration: 13, Func. Count: 179, Neg. LLF: 106.67379472953643
Iteration: 14, Func. Count: 192, Neg. LLF: 106.67372116654295
Iteration: 15, Func. Count: 205, Neg. LLF: 106.67369716033109
Iteration: 16, Func. Count: 218, Neg. LLF: 106.67369522568457
Iteration: 17, Func. Count: 230, Neg. LLF: 106.6736952577835
Optimization terminated successfully (Exit mode 0)
Current function value: 106.67369522568457
Iterations: 17
Function evaluations: 230
Gradient evaluations: 17
Iteration: 1, Func. Count: 15, Neg. LLF: 61517211.90932795
Iteration: 2, Func. Count: 30, Neg. LLF: 116.31388804811226
Iteration: 3, Func. Count: 45, Neg. LLF: 114.7328267346686
Iteration: 4, Func. Count: 61, Neg. LLF: 235.949510735794
Iteration: 5, Func. Count: 78, Neg. LLF: 126.40897492058721
Iteration: 6, Func. Count: 93, Neg. LLF: 106.73007847405792
Iteration: 7, Func. Count: 107, Neg. LLF: 106.08600704369951
Iteration: 8, Func. Count: 121, Neg. LLF: 105.89625554238566
Iteration: 9, Func. Count: 135, Neg. LLF: 105.83130139774097
Iteration: 10, Func. Count: 149, Neg. LLF: 105.80224829535068
Iteration: 11, Func. Count: 163, Neg. LLF: 105.79829555076633
Iteration: 12, Func. Count: 177, Neg. LLF: 105.79753489511712
Iteration: 13, Func. Count: 191, Neg. LLF: 105.79746857693421
Iteration: 14, Func. Count: 204, Neg. LLF: 105.79746848553405
Optimization terminated successfully (Exit mode 0)
Current function value: 105.79746857693421
Iterations: 14
Function evaluations: 204
Gradient evaluations: 14
Iteration: 1, Func. Count: 12, Neg. LLF: 121.20566278035858
Iteration: 2, Func. Count: 24, Neg. LLF: 138.69893528162027
Iteration: 3, Func. Count: 36, Neg. LLF: 117.33441933436794
Iteration: 4, Func. Count: 48, Neg. LLF: 1592446.7350554257
Iteration: 5, Func. Count: 60, Neg. LLF: 200.01369319381425
Iteration: 6, Func. Count: 72, Neg. LLF: 130.12642050433752
Iteration: 7, Func. Count: 84, Neg. LLF: 121.05249624823398
Iteration: 8, Func. Count: 96, Neg. LLF: 117.92281854432208
Iteration: 9, Func. Count: 108, Neg. LLF: 115.69109669773674
Iteration: 10, Func. Count: 120, Neg. LLF: 115.79562542752409
Iteration: 11, Func. Count: 132, Neg. LLF: 114.07284695239616
Iteration: 12, Func. Count: 144, Neg. LLF: 113.03920816015219
Iteration: 13, Func. Count: 156, Neg. LLF: 112.70135249385352
Iteration: 14, Func. Count: 168, Neg. LLF: 112.07774238909853
Iteration: 15, Func. Count: 180, Neg. LLF: 108.96946717697489
Iteration: 16, Func. Count: 192, Neg. LLF: 106.7928058330655
Iteration: 17, Func. Count: 203, Neg. LLF: 106.72250878478728
Iteration: 18, Func. Count: 214, Neg. LLF: 758.1505006807996
Iteration: 19, Func. Count: 228, Neg. LLF: 106.7630775397418
Iteration: 20, Func. Count: 240, Neg. LLF: 106.67753023951934
Iteration: 21, Func. Count: 251, Neg. LLF: 106.674746694224
Iteration: 22, Func. Count: 262, Neg. LLF: 106.67384574581462
Iteration: 23, Func. Count: 273, Neg. LLF: 106.67369832821646
Iteration: 24, Func. Count: 284, Neg. LLF: 106.67369526071909
Iteration: 25, Func. Count: 294, Neg. LLF: 106.67369525947242
Optimization terminated successfully (Exit mode 0)
Current function value: 106.67369526071909
Iterations: 25
Function evaluations: 294
Gradient evaluations: 25
Iteration: 1, Func. Count: 13, Neg. LLF: 158.25268953910165
Iteration: 2, Func. Count: 26, Neg. LLF: 121.40817250691516
Iteration: 3, Func. Count: 40, Neg. LLF: 110.4059279553904
Iteration: 4, Func. Count: 53, Neg. LLF: 108.80437664245669
Iteration: 5, Func. Count: 65, Neg. LLF: 108.77053027161645
Iteration: 6, Func. Count: 77, Neg. LLF: 108.7632455422683
Iteration: 7, Func. Count: 89, Neg. LLF: 108.76285929233416
Iteration: 8, Func. Count: 101, Neg. LLF: 108.7625347768994
Iteration: 9, Func. Count: 113, Neg. LLF: 108.76253285084402
Iteration: 10, Func. Count: 125, Neg. LLF: 108.76252768523389
Optimization terminated successfully (Exit mode 0)
Current function value: 108.76252772227943
Iterations: 10
Function evaluations: 125
Gradient evaluations: 10
Iteration: 1, Func. Count: 14, Neg. LLF: 75344667.01874684
Iteration: 2, Func. Count: 29, Neg. LLF: 133.57443966792275
Iteration: 3, Func. Count: 43, Neg. LLF: 123.10667827895959
Iteration: 4, Func. Count: 57, Neg. LLF: 109.31893069861991
Iteration: 5, Func. Count: 71, Neg. LLF: 114.80586407691699
Iteration: 6, Func. Count: 86, Neg. LLF: 107.39805593480762
Iteration: 7, Func. Count: 99, Neg. LLF: 117.69991658288575
Iteration: 8, Func. Count: 114, Neg. LLF: 107.98380084382505
Iteration: 9, Func. Count: 128, Neg. LLF: 106.99242387403466
Iteration: 10, Func. Count: 141, Neg. LLF: 106.80660926009291
Iteration: 11, Func. Count: 154, Neg. LLF: 106.75649581431891
Iteration: 12, Func. Count: 167, Neg. LLF: 106.71570396643543
Iteration: 13, Func. Count: 180, Neg. LLF: 106.6903614285377
Iteration: 14, Func. Count: 193, Neg. LLF: 106.67447764755
Iteration: 15, Func. Count: 206, Neg. LLF: 106.6737671579493
Iteration: 16, Func. Count: 219, Neg. LLF: 106.67371250756959
Iteration: 17, Func. Count: 232, Neg. LLF: 106.67369644722717
Iteration: 18, Func. Count: 245, Neg. LLF: 106.67369538084432
Iteration: 19, Func. Count: 257, Neg. LLF: 106.67369541253674
Optimization terminated successfully (Exit mode 0)
Current function value: 106.67369538084432
Iterations: 19
Function evaluations: 257
Gradient evaluations: 19
Iteration: 1, Func. Count: 15, Neg. LLF: 68502777.42980859
Iteration: 2, Func. Count: 31, Neg. LLF: 113.72210794567614
Iteration: 3, Func. Count: 46, Neg. LLF: 151.77387777650705
Iteration: 4, Func. Count: 61, Neg. LLF: 115.91427248636543
Iteration: 5, Func. Count: 76, Neg. LLF: 132.31958749898092
Iteration: 6, Func. Count: 93, Neg. LLF: 106.99175462231419
Iteration: 7, Func. Count: 107, Neg. LLF: 109.49590986195797
Iteration: 8, Func. Count: 122, Neg. LLF: 106.93513956218426
Iteration: 9, Func. Count: 137, Neg. LLF: 106.69545779470764
Iteration: 10, Func. Count: 151, Neg. LLF: 106.68104527678273
Iteration: 11, Func. Count: 165, Neg. LLF: 106.67519877270428
Iteration: 12, Func. Count: 179, Neg. LLF: 106.67376886204556
Iteration: 13, Func. Count: 193, Neg. LLF: 106.67370443526421
Iteration: 14, Func. Count: 207, Neg. LLF: 106.67369919026343
Iteration: 15, Func. Count: 221, Neg. LLF: 106.67369710730831
Iteration: 16, Func. Count: 235, Neg. LLF: 106.67369553214344
Iteration: 17, Func. Count: 248, Neg. LLF: 106.67369556422956
Optimization terminated successfully (Exit mode 0)
Current function value: 106.67369553214344
Iterations: 17
Function evaluations: 248
Gradient evaluations: 17
Iteration: 1, Func. Count: 16, Neg. LLF: 62332192.75956304
Iteration: 2, Func. Count: 32, Neg. LLF: 118.88406802223821
Iteration: 3, Func. Count: 48, Neg. LLF: 112.19236566371261
Iteration: 4, Func. Count: 64, Neg. LLF: 160.7566693262302
Iteration: 5, Func. Count: 82, Neg. LLF: 173.434046276002
Iteration: 6, Func. Count: 99, Neg. LLF: 106.66515612423721
Iteration: 7, Func. Count: 114, Neg. LLF: 106.3915041382596
Iteration: 8, Func. Count: 129, Neg. LLF: 106.30886927369959
Iteration: 9, Func. Count: 144, Neg. LLF: 106.15880750982076
Iteration: 10, Func. Count: 159, Neg. LLF: 106.09920473326638
Iteration: 11, Func. Count: 174, Neg. LLF: 106.03975625542513
Iteration: 12, Func. Count: 189, Neg. LLF: 105.95915412054113
Iteration: 13, Func. Count: 204, Neg. LLF: 105.88269866844459
Iteration: 14, Func. Count: 219, Neg. LLF: 105.83571670494736
Iteration: 15, Func. Count: 234, Neg. LLF: 105.80128171954138
Iteration: 16, Func. Count: 249, Neg. LLF: 105.79770202280227
Iteration: 17, Func. Count: 264, Neg. LLF: 105.79742586201475
Iteration: 18, Func. Count: 279, Neg. LLF: 105.95853355485015
Iteration: 19, Func. Count: 297, Neg. LLF: 105.7975283672666
Iteration: 20, Func. Count: 313, Neg. LLF: 105.79766154114661
Iteration: 21, Func. Count: 329, Neg. LLF: 105.79749134053115
Iteration: 22, Func. Count: 345, Neg. LLF: 105.7974683557836
Iteration: 23, Func. Count: 359, Neg. LLF: 105.79746826438493
Optimization terminated successfully (Exit mode 0)
Current function value: 105.7974683557836
Iterations: 24
Function evaluations: 359
Gradient evaluations: 23
Iteration: 1, Func. Count: 7, Neg. LLF: 482.336396006478
Iteration: 2, Func. Count: 15, Neg. LLF: 317.5704543926151
Iteration: 3, Func. Count: 23, Neg. LLF: 109.04465089194598
Iteration: 4, Func. Count: 29, Neg. LLF: 109.15886329415885
Iteration: 5, Func. Count: 36, Neg. LLF: 108.95303964094714
Iteration: 6, Func. Count: 42, Neg. LLF: 108.95274775753622
Iteration: 7, Func. Count: 48, Neg. LLF: 108.95273800426149
Iteration: 8, Func. Count: 54, Neg. LLF: 108.9527370986562
Optimization terminated successfully (Exit mode 0)
Current function value: 108.9527370986562
Iterations: 8
Function evaluations: 54
Gradient evaluations: 8
Iteration: 1, Func. Count: 5, Neg. LLF: 121.82003935919127
Iteration: 2, Func. Count: 11, Neg. LLF: 122.63108382498865
Iteration: 3, Func. Count: 16, Neg. LLF: 103.10229760635467
Iteration: 4, Func. Count: 20, Neg. LLF: 102.37073659278839
Iteration: 5, Func. Count: 24, Neg. LLF: 102.33413970019807
Iteration: 6, Func. Count: 29, Neg. LLF: 102.22240601201456
Iteration: 7, Func. Count: 34, Neg. LLF: 102.12980959979707
Iteration: 8, Func. Count: 38, Neg. LLF: 102.1278118073029
Iteration: 9, Func. Count: 42, Neg. LLF: 102.12770845694067
Iteration: 10, Func. Count: 46, Neg. LLF: 102.12770778493577
Optimization terminated successfully (Exit mode 0)
Current function value: 102.12770778493577
Iterations: 10
Function evaluations: 46
Gradient evaluations: 10
Iteration: 1, Func. Count: 6, Neg. LLF: 32531691.221367024
Iteration: 2, Func. Count: 13, Neg. LLF: 102.41746329035425
Iteration: 3, Func. Count: 19, Neg. LLF: 101.95209774744893
Iteration: 4, Func. Count: 24, Neg. LLF: 101.94736002557335
Iteration: 5, Func. Count: 29, Neg. LLF: 101.94474517330107
Iteration: 6, Func. Count: 34, Neg. LLF: 101.94263261875064
Iteration: 7, Func. Count: 39, Neg. LLF: 101.9423045596673
Iteration: 8, Func. Count: 44, Neg. LLF: 101.94226214729788
Iteration: 9, Func. Count: 49, Neg. LLF: 101.94225575557584
Iteration: 10, Func. Count: 53, Neg. LLF: 101.94225575559211
Optimization terminated successfully (Exit mode 0)
Current function value: 101.94225575557584
Iterations: 10
Function evaluations: 53
Gradient evaluations: 10
Iteration: 1, Func. Count: 7, Neg. LLF: 1278.59558703717
Iteration: 2, Func. Count: 15, Neg. LLF: 102.87012125879556
Iteration: 3, Func. Count: 22, Neg. LLF: 101.98531045204822
Iteration: 4, Func. Count: 28, Neg. LLF: 101.97932820995709
Iteration: 5, Func. Count: 34, Neg. LLF: 101.94331372903977
Iteration: 6, Func. Count: 40, Neg. LLF: 101.94228949862764
Iteration: 7, Func. Count: 46, Neg. LLF: 101.94226687905568
Iteration: 8, Func. Count: 52, Neg. LLF: 101.94225588425377
Iteration: 9, Func. Count: 57, Neg. LLF: 101.94225588644403
Optimization terminated successfully (Exit mode 0)
Current function value: 101.94225588425377
Iterations: 9
Function evaluations: 57
Gradient evaluations: 9
Iteration: 1, Func. Count: 8, Neg. LLF: 301.0766574722578
Iteration: 2, Func. Count: 17, Neg. LLF: 103.40431894130418
Iteration: 3, Func. Count: 25, Neg. LLF: 101.99777303407583
Iteration: 4, Func. Count: 32, Neg. LLF: 101.98076256328456
Iteration: 5, Func. Count: 39, Neg. LLF: 101.95780085688469
Iteration: 6, Func. Count: 46, Neg. LLF: 101.94387826548069
Iteration: 7, Func. Count: 53, Neg. LLF: 101.94226788338197
Iteration: 8, Func. Count: 60, Neg. LLF: 101.94226131963882
Iteration: 9, Func. Count: 67, Neg. LLF: 101.94225575180371
Iteration: 10, Func. Count: 73, Neg. LLF: 101.94225575582533
Optimization terminated successfully (Exit mode 0)
Current function value: 101.94225575180371
Iterations: 10
Function evaluations: 73
Gradient evaluations: 10
Iteration: 1, Func. Count: 9, Neg. LLF: 204.66882455416157
Iteration: 2, Func. Count: 19, Neg. LLF: 103.70605232456086
Iteration: 3, Func. Count: 29, Neg. LLF: 102.00017513059709
Iteration: 4, Func. Count: 37, Neg. LLF: 101.98593911803965
Iteration: 5, Func. Count: 45, Neg. LLF: 101.95315498222375
Iteration: 6, Func. Count: 53, Neg. LLF: 101.94307509640075
Iteration: 7, Func. Count: 61, Neg. LLF: 101.94248130752813
Iteration: 8, Func. Count: 69, Neg. LLF: 101.94226448686265
Iteration: 9, Func. Count: 77, Neg. LLF: 101.94225585960218
Iteration: 10, Func. Count: 84, Neg. LLF: 101.94225586568535
Optimization terminated successfully (Exit mode 0)
Current function value: 101.94225585960218
Iterations: 10
Function evaluations: 84
Gradient evaluations: 10
Iteration: 1, Func. Count: 6, Neg. LLF: 133.84646251068307
Iteration: 2, Func. Count: 13, Neg. LLF: 172.50705475096467
Iteration: 3, Func. Count: 19, Neg. LLF: 101.85958059779918
Iteration: 4, Func. Count: 24, Neg. LLF: 102.42271909919698
Iteration: 5, Func. Count: 30, Neg. LLF: 101.3549301637652
Iteration: 6, Func. Count: 35, Neg. LLF: 101.34148479932503
Iteration: 7, Func. Count: 40, Neg. LLF: 101.33762223443402
Iteration: 8, Func. Count: 45, Neg. LLF: 101.33411573186869
Iteration: 9, Func. Count: 50, Neg. LLF: 101.33781100189228
Iteration: 10, Func. Count: 56, Neg. LLF: 101.33106285343914
Iteration: 11, Func. Count: 61, Neg. LLF: 101.33105835009354
Iteration: 12, Func. Count: 65, Neg. LLF: 101.33105835009395
Optimization terminated successfully (Exit mode 0)
Current function value: 101.33105835009354
Iterations: 12
Function evaluations: 65
Gradient evaluations: 12
Iteration: 1, Func. Count: 7, Neg. LLF: 109.60370013601111
Iteration: 2, Func. Count: 15, Neg. LLF: 102.19632613582009
Iteration: 3, Func. Count: 22, Neg. LLF: 102.41252448863365
Iteration: 4, Func. Count: 29, Neg. LLF: 101.92374749787555
Iteration: 5, Func. Count: 36, Neg. LLF: 101.42030423204153
Iteration: 6, Func. Count: 42, Neg. LLF: 101.36644114347655
Iteration: 7, Func. Count: 48, Neg. LLF: 101.37184153536222
Iteration: 8, Func. Count: 55, Neg. LLF: 101.36084219897393
Iteration: 9, Func. Count: 62, Neg. LLF: 101.31529970853208
Iteration: 10, Func. Count: 68, Neg. LLF: 101.31179075077902
Iteration: 11, Func. Count: 74, Neg. LLF: 101.31099983073375
Iteration: 12, Func. Count: 80, Neg. LLF: 101.31095975044641
Iteration: 13, Func. Count: 86, Neg. LLF: 101.31095891097809
Optimization terminated successfully (Exit mode 0)
Current function value: 101.31095891097809
Iterations: 13
Function evaluations: 86
Gradient evaluations: 13
Iteration: 1, Func. Count: 8, Neg. LLF: 1291.3170741697359
Iteration: 2, Func. Count: 17, Neg. LLF: 102.32767054618115
Iteration: 3, Func. Count: 25, Neg. LLF: 101.98254553904266
Iteration: 4, Func. Count: 32, Neg. LLF: 101.9701545456476
Iteration: 5, Func. Count: 39, Neg. LLF: 101.95304445207778
Iteration: 6, Func. Count: 46, Neg. LLF: 101.94276512011022
Iteration: 7, Func. Count: 53, Neg. LLF: 101.94242908071566
Iteration: 8, Func. Count: 60, Neg. LLF: 101.94225889412479
Iteration: 9, Func. Count: 67, Neg. LLF: 101.94225599802223
Iteration: 10, Func. Count: 73, Neg. LLF: 101.9422560001432
Optimization terminated successfully (Exit mode 0)
Current function value: 101.94225599802223
Iterations: 10
Function evaluations: 73
Gradient evaluations: 10
Iteration: 1, Func. Count: 9, Neg. LLF: 113.35372554198788
Iteration: 2, Func. Count: 19, Neg. LLF: 103.09877562866659
Iteration: 3, Func. Count: 29, Neg. LLF: 101.96171512316357
Iteration: 4, Func. Count: 37, Neg. LLF: 101.63714436479722
Iteration: 5, Func. Count: 45, Neg. LLF: 102.0369492748254
Iteration: 6, Func. Count: 54, Neg. LLF: 101.36588534820991
Iteration: 7, Func. Count: 62, Neg. LLF: 101.32645654119236
Iteration: 8, Func. Count: 70, Neg. LLF: 101.31787886800072
Iteration: 9, Func. Count: 78, Neg. LLF: 101.3131861358313
Iteration: 10, Func. Count: 86, Neg. LLF: 101.31152823501616
Iteration: 11, Func. Count: 94, Neg. LLF: 101.31099121614531
Iteration: 12, Func. Count: 102, Neg. LLF: 101.31096022324475
Iteration: 13, Func. Count: 110, Neg. LLF: 101.31095892648263
Iteration: 14, Func. Count: 117, Neg. LLF: 101.31095894573869
Optimization terminated successfully (Exit mode 0)
Current function value: 101.31095892648263
Iterations: 14
Function evaluations: 117
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 111.36227999764873
Iteration: 2, Func. Count: 21, Neg. LLF: 104.63568211234373
Iteration: 3, Func. Count: 32, Neg. LLF: 101.86767484363925
Iteration: 4, Func. Count: 41, Neg. LLF: 101.548310866593
Iteration: 5, Func. Count: 50, Neg. LLF: 102.44580453045356
Iteration: 6, Func. Count: 60, Neg. LLF: 101.9257824986502
Iteration: 7, Func. Count: 70, Neg. LLF: 101.37803171046234
Iteration: 8, Func. Count: 79, Neg. LLF: 101.33227674652487
Iteration: 9, Func. Count: 88, Neg. LLF: 101.31464325250847
Iteration: 10, Func. Count: 97, Neg. LLF: 101.31215641605111
Iteration: 11, Func. Count: 106, Neg. LLF: 101.31127122248685
Iteration: 12, Func. Count: 115, Neg. LLF: 101.31110381749401
Iteration: 13, Func. Count: 124, Neg. LLF: 101.31098624607152
Iteration: 14, Func. Count: 133, Neg. LLF: 101.31096220031392
Iteration: 15, Func. Count: 142, Neg. LLF: 101.3109590606896
Iteration: 16, Func. Count: 150, Neg. LLF: 101.31095908289502
Optimization terminated successfully (Exit mode 0)
Current function value: 101.3109590606896
Iterations: 16
Function evaluations: 150
Gradient evaluations: 16
Iteration: 1, Func. Count: 7, Neg. LLF: 137.3467407771412
Iteration: 2, Func. Count: 15, Neg. LLF: 191.00771675482935
Iteration: 3, Func. Count: 22, Neg. LLF: 101.58399795708631
Iteration: 4, Func. Count: 28, Neg. LLF: 101.03996226645232
Iteration: 5, Func. Count: 34, Neg. LLF: 100.96590692883196
Iteration: 6, Func. Count: 40, Neg. LLF: 100.94732253595927
Iteration: 7, Func. Count: 46, Neg. LLF: 100.89985799936771
Iteration: 8, Func. Count: 52, Neg. LLF: 100.882569473689
Iteration: 9, Func. Count: 58, Neg. LLF: 100.85084953970572
Iteration: 10, Func. Count: 64, Neg. LLF: 100.79456493340807
Iteration: 11, Func. Count: 70, Neg. LLF: 100.78356502043532
Iteration: 12, Func. Count: 76, Neg. LLF: 100.7832823047137
Iteration: 13, Func. Count: 82, Neg. LLF: 100.78327252548156
Iteration: 14, Func. Count: 87, Neg. LLF: 100.78327252814736
Optimization terminated successfully (Exit mode 0)
Current function value: 100.78327252548156
Iterations: 14
Function evaluations: 87
Gradient evaluations: 14
Iteration: 1, Func. Count: 8, Neg. LLF: 109.1045459364885
Iteration: 2, Func. Count: 17, Neg. LLF: 102.93122572109019
Iteration: 3, Func. Count: 25, Neg. LLF: 102.15537342878633
Iteration: 4, Func. Count: 33, Neg. LLF: 102.06675045862318
Iteration: 5, Func. Count: 41, Neg. LLF: 101.42036879381426
Iteration: 6, Func. Count: 48, Neg. LLF: 101.48457023642395
Iteration: 7, Func. Count: 56, Neg. LLF: 101.10429038403394
Iteration: 8, Func. Count: 63, Neg. LLF: 101.03215475973266
Iteration: 9, Func. Count: 70, Neg. LLF: 100.98400397317096
Iteration: 10, Func. Count: 77, Neg. LLF: 100.93631203182737
Iteration: 11, Func. Count: 84, Neg. LLF: 100.85703132744456
Iteration: 12, Func. Count: 91, Neg. LLF: 100.79124675745281
Iteration: 13, Func. Count: 98, Neg. LLF: 100.78635468307908
Iteration: 14, Func. Count: 105, Neg. LLF: 100.78521732269523
Iteration: 15, Func. Count: 112, Neg. LLF: 100.7832740121393
Iteration: 16, Func. Count: 119, Neg. LLF: 100.78327252708874
Iteration: 17, Func. Count: 125, Neg. LLF: 100.78327259345942
Optimization terminated successfully (Exit mode 0)
Current function value: 100.78327252708874
Iterations: 17
Function evaluations: 125
Gradient evaluations: 17
Iteration: 1, Func. Count: 9, Neg. LLF: 1312.6090065978613
Iteration: 2, Func. Count: 19, Neg. LLF: 102.32340417374192
Iteration: 3, Func. Count: 28, Neg. LLF: 101.98579853856813
Iteration: 4, Func. Count: 36, Neg. LLF: 101.9805947827496
Iteration: 5, Func. Count: 44, Neg. LLF: 101.95691987567315
Iteration: 6, Func. Count: 52, Neg. LLF: 101.94804046247572
Iteration: 7, Func. Count: 60, Neg. LLF: 101.94297984285413
Iteration: 8, Func. Count: 68, Neg. LLF: 101.94233368618498
Iteration: 9, Func. Count: 76, Neg. LLF: 101.9422589000474
Iteration: 10, Func. Count: 84, Neg. LLF: 101.94225578294426
Iteration: 11, Func. Count: 91, Neg. LLF: 101.942255785069
Optimization terminated successfully (Exit mode 0)
Current function value: 101.94225578294426
Iterations: 11
Function evaluations: 91
Gradient evaluations: 11
Iteration: 1, Func. Count: 10, Neg. LLF: 113.70394451091882
Iteration: 2, Func. Count: 21, Neg. LLF: 102.65338285481039
Iteration: 3, Func. Count: 31, Neg. LLF: 101.9479901052192
Iteration: 4, Func. Count: 40, Neg. LLF: 101.41457846812449
Iteration: 5, Func. Count: 49, Neg. LLF: 101.16652004752396
Iteration: 6, Func. Count: 58, Neg. LLF: 100.9892896366587
Iteration: 7, Func. Count: 67, Neg. LLF: 100.96253594335602
Iteration: 8, Func. Count: 76, Neg. LLF: 100.94184402339826
Iteration: 9, Func. Count: 85, Neg. LLF: 100.92765750343324
Iteration: 10, Func. Count: 94, Neg. LLF: 100.91643323010801
Iteration: 11, Func. Count: 103, Neg. LLF: 100.89959011530654
Iteration: 12, Func. Count: 112, Neg. LLF: 100.80390699638208
Iteration: 13, Func. Count: 121, Neg. LLF: 100.79551856375504
Iteration: 14, Func. Count: 130, Neg. LLF: 100.78760948938378
Iteration: 15, Func. Count: 139, Neg. LLF: 100.78356638704713
Iteration: 16, Func. Count: 148, Neg. LLF: 100.78328149246299
Iteration: 17, Func. Count: 157, Neg. LLF: 100.78327252457558
Iteration: 18, Func. Count: 165, Neg. LLF: 100.7832726080371
Optimization terminated successfully (Exit mode 0)
Current function value: 100.78327252457558
Iterations: 18
Function evaluations: 165
Gradient evaluations: 18
Iteration: 1, Func. Count: 11, Neg. LLF: 111.38848672225481
Iteration: 2, Func. Count: 23, Neg. LLF: 103.16123374710199
Iteration: 3, Func. Count: 34, Neg. LLF: 101.00916040421063
Iteration: 4, Func. Count: 44, Neg. LLF: 100.9513919152319
Iteration: 5, Func. Count: 54, Neg. LLF: 100.89566782338852
Iteration: 6, Func. Count: 64, Neg. LLF: 100.84583079561774
Iteration: 7, Func. Count: 74, Neg. LLF: 100.79482100415436
Iteration: 8, Func. Count: 84, Neg. LLF: 100.78810897349146
Iteration: 9, Func. Count: 94, Neg. LLF: 100.78333399008622
Iteration: 10, Func. Count: 104, Neg. LLF: 100.78327376108568
Iteration: 11, Func. Count: 114, Neg. LLF: 100.7832725514781
Iteration: 12, Func. Count: 123, Neg. LLF: 100.78327260517005
Optimization terminated successfully (Exit mode 0)
Current function value: 100.7832725514781
Iterations: 12
Function evaluations: 123
Gradient evaluations: 12
Iteration: 1, Func. Count: 8, Neg. LLF: 132.69629321543863
Iteration: 2, Func. Count: 17, Neg. LLF: 185.34130779993615
Iteration: 3, Func. Count: 25, Neg. LLF: 101.72500288775582
Iteration: 4, Func. Count: 32, Neg. LLF: 101.01892542775248
Iteration: 5, Func. Count: 39, Neg. LLF: 100.95760023014202
Iteration: 6, Func. Count: 46, Neg. LLF: 100.94012708563015
Iteration: 7, Func. Count: 53, Neg. LLF: 100.91308406402452
Iteration: 8, Func. Count: 60, Neg. LLF: 100.87096968254714
Iteration: 9, Func. Count: 67, Neg. LLF: 100.8146785440043
Iteration: 10, Func. Count: 74, Neg. LLF: 100.78689290719772
Iteration: 11, Func. Count: 81, Neg. LLF: 100.78348068105518
Iteration: 12, Func. Count: 88, Neg. LLF: 100.78327387063332
Iteration: 13, Func. Count: 95, Neg. LLF: 100.7832725355325
Iteration: 14, Func. Count: 101, Neg. LLF: 100.78327256381911
Optimization terminated successfully (Exit mode 0)
Current function value: 100.7832725355325
Iterations: 14
Function evaluations: 101
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 31745117.00678795
Iteration: 2, Func. Count: 19, Neg. LLF: 102.20447696298886
Iteration: 3, Func. Count: 28, Neg. LLF: 101.94554806338257
Iteration: 4, Func. Count: 36, Neg. LLF: 101.94327455800928
Iteration: 5, Func. Count: 44, Neg. LLF: 101.94240179737716
Iteration: 6, Func. Count: 52, Neg. LLF: 101.94226789347012
Iteration: 7, Func. Count: 60, Neg. LLF: 101.94225596353498
Iteration: 8, Func. Count: 67, Neg. LLF: 101.94225596359401
Optimization terminated successfully (Exit mode 0)
Current function value: 101.94225596353498
Iterations: 8
Function evaluations: 67
Gradient evaluations: 8
Iteration: 1, Func. Count: 10, Neg. LLF: 31738003.715612885
Iteration: 2, Func. Count: 21, Neg. LLF: 102.23867506831331
Iteration: 3, Func. Count: 31, Neg. LLF: 101.98044832466326
Iteration: 4, Func. Count: 40, Neg. LLF: 101.9463095627394
Iteration: 5, Func. Count: 49, Neg. LLF: 101.94328848666262
Iteration: 6, Func. Count: 58, Neg. LLF: 101.94242828576733
Iteration: 7, Func. Count: 67, Neg. LLF: 101.94230667074409
Iteration: 8, Func. Count: 76, Neg. LLF: 101.94225916513568
Iteration: 9, Func. Count: 85, Neg. LLF: 101.9422558311772
Iteration: 10, Func. Count: 93, Neg. LLF: 101.94225583327186
Optimization terminated successfully (Exit mode 0)
Current function value: 101.9422558311772
Iterations: 10
Function evaluations: 93
Gradient evaluations: 10
Iteration: 1, Func. Count: 11, Neg. LLF: 291.3365192845091
Iteration: 2, Func. Count: 23, Neg. LLF: 102.49879042207318
Iteration: 3, Func. Count: 34, Neg. LLF: 102.00775997285702
Iteration: 4, Func. Count: 44, Neg. LLF: 101.98427148360658
Iteration: 5, Func. Count: 54, Neg. LLF: 101.97569395203931
Iteration: 6, Func. Count: 64, Neg. LLF: 101.95769349415218
Iteration: 7, Func. Count: 74, Neg. LLF: 101.94434028936146
Iteration: 8, Func. Count: 84, Neg. LLF: 101.94342062721465
Iteration: 9, Func. Count: 94, Neg. LLF: 101.9423665698166
Iteration: 10, Func. Count: 104, Neg. LLF: 101.94227438469295
Iteration: 11, Func. Count: 114, Neg. LLF: 101.94225593601328
Iteration: 12, Func. Count: 123, Neg. LLF: 101.94225594007875
Optimization terminated successfully (Exit mode 0)
Current function value: 101.94225593601328
Iterations: 12
Function evaluations: 123
Gradient evaluations: 12
Iteration: 1, Func. Count: 12, Neg. LLF: 174.0712228639425
Iteration: 2, Func. Count: 25, Neg. LLF: 106.67531245099369
Iteration: 3, Func. Count: 37, Neg. LLF: 101.9880925836307
Iteration: 4, Func. Count: 48, Neg. LLF: 101.04994490062306
Iteration: 5, Func. Count: 59, Neg. LLF: 103.91320465024417
Iteration: 6, Func. Count: 71, Neg. LLF: 100.14759023752367
Iteration: 7, Func. Count: 82, Neg. LLF: 100.11652159924223
Iteration: 8, Func. Count: 93, Neg. LLF: 100.10416177810924
Iteration: 9, Func. Count: 104, Neg. LLF: 100.121314601164
Iteration: 10, Func. Count: 116, Neg. LLF: 100.09612090335335
Iteration: 11, Func. Count: 127, Neg. LLF: 100.09317562454181
Iteration: 12, Func. Count: 138, Neg. LLF: 100.09308467904457
Iteration: 13, Func. Count: 149, Neg. LLF: 100.09307886604695
Iteration: 14, Func. Count: 160, Neg. LLF: 100.09307738109304
Iteration: 15, Func. Count: 170, Neg. LLF: 100.09307732221247
Optimization terminated successfully (Exit mode 0)
Current function value: 100.09307738109304
Iterations: 15
Function evaluations: 170
Gradient evaluations: 15
Iteration: 1, Func. Count: 5, Neg. LLF: 122.14764010619346
Iteration: 2, Func. Count: 11, Neg. LLF: 108.06109448891583
Iteration: 3, Func. Count: 16, Neg. LLF: 102.55543854284608
Iteration: 4, Func. Count: 20, Neg. LLF: 102.400936513951
Iteration: 5, Func. Count: 24, Neg. LLF: 102.23463838631967
Iteration: 6, Func. Count: 28, Neg. LLF: 102.18836835636048
Iteration: 7, Func. Count: 32, Neg. LLF: 102.17252934098747
Iteration: 8, Func. Count: 36, Neg. LLF: 102.17235210907147
Iteration: 9, Func. Count: 40, Neg. LLF: 102.17234904726851
Iteration: 10, Func. Count: 43, Neg. LLF: 102.17234922668382
Optimization terminated successfully (Exit mode 0)
Current function value: 102.17234904726851
Iterations: 10
Function evaluations: 43
Gradient evaluations: 10
Iteration: 1, Func. Count: 6, Neg. LLF: 140.5736483549068
Iteration: 2, Func. Count: 13, Neg. LLF: 102.01424746098722
Iteration: 3, Func. Count: 18, Neg. LLF: 102.08918683945248
Iteration: 4, Func. Count: 24, Neg. LLF: 101.9829210108742
Iteration: 5, Func. Count: 29, Neg. LLF: 101.96621397029521
Iteration: 6, Func. Count: 34, Neg. LLF: 101.99378203089046
Iteration: 7, Func. Count: 40, Neg. LLF: 101.94321162356519
Iteration: 8, Func. Count: 45, Neg. LLF: 101.94241501572425
Iteration: 9, Func. Count: 50, Neg. LLF: 101.94231755760937
Iteration: 10, Func. Count: 55, Neg. LLF: 101.94225583719657
Iteration: 11, Func. Count: 59, Neg. LLF: 101.94225583724143
Optimization terminated successfully (Exit mode 0)
Current function value: 101.94225583719657
Iterations: 11
Function evaluations: 59
Gradient evaluations: 11
Iteration: 1, Func. Count: 7, Neg. LLF: 136.03686837760097
Iteration: 2, Func. Count: 15, Neg. LLF: 102.02860554091458
Iteration: 3, Func. Count: 21, Neg. LLF: 102.01477854809622
Iteration: 4, Func. Count: 27, Neg. LLF: 101.98812599308873
Iteration: 5, Func. Count: 33, Neg. LLF: 101.97938959833839
Iteration: 6, Func. Count: 39, Neg. LLF: 101.95857744037396
Iteration: 7, Func. Count: 45, Neg. LLF: 101.94549949759087
Iteration: 8, Func. Count: 51, Neg. LLF: 101.94251845025043
Iteration: 9, Func. Count: 57, Neg. LLF: 101.94229547445993
Iteration: 10, Func. Count: 63, Neg. LLF: 101.9422560953726
Iteration: 11, Func. Count: 68, Neg. LLF: 101.94225609754837
Optimization terminated successfully (Exit mode 0)
Current function value: 101.9422560953726
Iterations: 11
Function evaluations: 68
Gradient evaluations: 11
Iteration: 1, Func. Count: 8, Neg. LLF: 132.33966466776602
Iteration: 2, Func. Count: 17, Neg. LLF: 102.05071582591593
Iteration: 3, Func. Count: 24, Neg. LLF: 102.03723388455603
Iteration: 4, Func. Count: 31, Neg. LLF: 102.02541638429177
Iteration: 5, Func. Count: 38, Neg. LLF: 101.99987025908553
Iteration: 6, Func. Count: 45, Neg. LLF: 101.9496252561751
Iteration: 7, Func. Count: 52, Neg. LLF: 101.94696060656004
Iteration: 8, Func. Count: 59, Neg. LLF: 101.94296372034175
Iteration: 9, Func. Count: 66, Neg. LLF: 101.94228656374264
Iteration: 10, Func. Count: 73, Neg. LLF: 101.94225863477308
Iteration: 11, Func. Count: 80, Neg. LLF: 101.94225603971442
Iteration: 12, Func. Count: 86, Neg. LLF: 101.94225604376666
Optimization terminated successfully (Exit mode 0)
Current function value: 101.94225603971442
Iterations: 12
Function evaluations: 86
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 128.62368574864252
Iteration: 2, Func. Count: 19, Neg. LLF: 102.05500307351065
Iteration: 3, Func. Count: 27, Neg. LLF: 102.03704703327317
Iteration: 4, Func. Count: 35, Neg. LLF: 102.01300615515505
Iteration: 5, Func. Count: 43, Neg. LLF: 101.99257582062268
Iteration: 6, Func. Count: 51, Neg. LLF: 101.98395702998883
Iteration: 7, Func. Count: 59, Neg. LLF: 102.02410200094933
Iteration: 8, Func. Count: 68, Neg. LLF: 101.95817394772183
Iteration: 9, Func. Count: 76, Neg. LLF: 101.94449907573662
Iteration: 10, Func. Count: 84, Neg. LLF: 101.94268229806194
Iteration: 11, Func. Count: 92, Neg. LLF: 101.94229046412676
Iteration: 12, Func. Count: 100, Neg. LLF: 101.94225800765572
Iteration: 13, Func. Count: 108, Neg. LLF: 101.94225577059181
Iteration: 14, Func. Count: 115, Neg. LLF: 101.94225577664656
Optimization terminated successfully (Exit mode 0)
Current function value: 101.94225577059181
Iterations: 14
Function evaluations: 115
Gradient evaluations: 14
Iteration: 1, Func. Count: 6, Neg. LLF: 121.87088617296048
Iteration: 2, Func. Count: 13, Neg. LLF: 125.52142664697396
Iteration: 3, Func. Count: 19, Neg. LLF: 103.0618079915078
Iteration: 4, Func. Count: 24, Neg. LLF: 102.23466819586449
Iteration: 5, Func. Count: 29, Neg. LLF: 102.33372867812692
Iteration: 6, Func. Count: 35, Neg. LLF: 102.1694000997741
Iteration: 7, Func. Count: 41, Neg. LLF: 102.1285578188886
Iteration: 8, Func. Count: 46, Neg. LLF: 102.12774833770008
Iteration: 9, Func. Count: 51, Neg. LLF: 102.12770789530174
Iteration: 10, Func. Count: 55, Neg. LLF: 102.12770789530629
Optimization terminated successfully (Exit mode 0)
Current function value: 102.12770789530174
Iterations: 10
Function evaluations: 55
Gradient evaluations: 10
Iteration: 1, Func. Count: 7, Neg. LLF: 105.85335757973328
Iteration: 2, Func. Count: 15, Neg. LLF: 102.98184325703932
Iteration: 3, Func. Count: 22, Neg. LLF: 102.02477466704951
Iteration: 4, Func. Count: 28, Neg. LLF: 102.01663356103624
Iteration: 5, Func. Count: 34, Neg. LLF: 102.00657627675548
Iteration: 6, Func. Count: 40, Neg. LLF: 101.99711890573562
Iteration: 7, Func. Count: 46, Neg. LLF: 101.96664113325224
Iteration: 8, Func. Count: 52, Neg. LLF: 102.0154437723692
Iteration: 9, Func. Count: 59, Neg. LLF: 101.94685873700979
Iteration: 10, Func. Count: 65, Neg. LLF: 101.94267578635207
Iteration: 11, Func. Count: 71, Neg. LLF: 101.94229939105797
Iteration: 12, Func. Count: 77, Neg. LLF: 101.94226259546312
Iteration: 13, Func. Count: 83, Neg. LLF: 101.94225575021265
Iteration: 14, Func. Count: 88, Neg. LLF: 101.94225575020455
Optimization terminated successfully (Exit mode 0)
Current function value: 101.94225575021265
Iterations: 14
Function evaluations: 88
Gradient evaluations: 14
Iteration: 1, Func. Count: 8, Neg. LLF: 118.41481857516088
Iteration: 2, Func. Count: 17, Neg. LLF: 102.16429816463507
Iteration: 3, Func. Count: 24, Neg. LLF: 102.03271728942204
Iteration: 4, Func. Count: 31, Neg. LLF: 102.10543356059317
Iteration: 5, Func. Count: 39, Neg. LLF: 102.01593905531183
Iteration: 6, Func. Count: 46, Neg. LLF: 101.97226934087166
Iteration: 7, Func. Count: 53, Neg. LLF: 102.04314058927577
Iteration: 8, Func. Count: 61, Neg. LLF: 101.95684128414332
Iteration: 9, Func. Count: 68, Neg. LLF: 101.94238877026226
Iteration: 10, Func. Count: 75, Neg. LLF: 101.94226920700886
Iteration: 11, Func. Count: 82, Neg. LLF: 101.94225593467877
Iteration: 12, Func. Count: 88, Neg. LLF: 101.94225593692387
Optimization terminated successfully (Exit mode 0)
Current function value: 101.94225593467877
Iterations: 12
Function evaluations: 88
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 117.11578770879393
Iteration: 2, Func. Count: 19, Neg. LLF: 102.47996778494337
Iteration: 3, Func. Count: 28, Neg. LLF: 102.04441050739746
Iteration: 4, Func. Count: 36, Neg. LLF: 102.03045881650111
Iteration: 5, Func. Count: 44, Neg. LLF: 101.98588491998449
Iteration: 6, Func. Count: 52, Neg. LLF: 105.53467489931784
Iteration: 7, Func. Count: 61, Neg. LLF: 101.96347503339678
Iteration: 8, Func. Count: 69, Neg. LLF: 101.94261937569088
Iteration: 9, Func. Count: 77, Neg. LLF: 101.94293171615621
Iteration: 10, Func. Count: 86, Neg. LLF: 101.94226526297552
Iteration: 11, Func. Count: 94, Neg. LLF: 101.94225575750967
Iteration: 12, Func. Count: 101, Neg. LLF: 101.94225576153367
Optimization terminated successfully (Exit mode 0)
Current function value: 101.94225575750967
Iterations: 12
Function evaluations: 101
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 115.80940536627688
Iteration: 2, Func. Count: 21, Neg. LLF: 102.69895437905107
Iteration: 3, Func. Count: 31, Neg. LLF: 102.04253773867195
Iteration: 4, Func. Count: 40, Neg. LLF: 102.03197373369616
Iteration: 5, Func. Count: 49, Neg. LLF: 102.0138402524026
Iteration: 6, Func. Count: 58, Neg. LLF: 102.0311346385839
Iteration: 7, Func. Count: 68, Neg. LLF: 101.98902544254796
Iteration: 8, Func. Count: 77, Neg. LLF: 101.97559360982451
Iteration: 9, Func. Count: 86, Neg. LLF: 101.96946811468578
Iteration: 10, Func. Count: 95, Neg. LLF: 101.94770984571528
Iteration: 11, Func. Count: 104, Neg. LLF: 101.94257841126532
Iteration: 12, Func. Count: 113, Neg. LLF: 101.94229939087698
Iteration: 13, Func. Count: 122, Neg. LLF: 101.94225906759617
Iteration: 14, Func. Count: 131, Neg. LLF: 101.94225575352644
Iteration: 15, Func. Count: 139, Neg. LLF: 101.94225575960513
Optimization terminated successfully (Exit mode 0)
Current function value: 101.94225575352644
Iterations: 15
Function evaluations: 139
Gradient evaluations: 15
Iteration: 1, Func. Count: 7, Neg. LLF: 134.31510858224294
Iteration: 2, Func. Count: 15, Neg. LLF: 173.48915546677415
Iteration: 3, Func. Count: 22, Neg. LLF: 101.8112172428949
Iteration: 4, Func. Count: 28, Neg. LLF: 102.51331159173743
Iteration: 5, Func. Count: 35, Neg. LLF: 101.55395178399512
Iteration: 6, Func. Count: 42, Neg. LLF: 101.39106539713376
Iteration: 7, Func. Count: 49, Neg. LLF: 101.33841362557736
Iteration: 8, Func. Count: 55, Neg. LLF: 101.33192352244912
Iteration: 9, Func. Count: 61, Neg. LLF: 101.3310986943374
Iteration: 10, Func. Count: 67, Neg. LLF: 101.33105880710056
Iteration: 11, Func. Count: 73, Neg. LLF: 101.33105834427525
Optimization terminated successfully (Exit mode 0)
Current function value: 101.33105834427525
Iterations: 11
Function evaluations: 73
Gradient evaluations: 11
Iteration: 1, Func. Count: 8, Neg. LLF: 111.21579142143004
Iteration: 2, Func. Count: 17, Neg. LLF: 101.57090217228588
Iteration: 3, Func. Count: 24, Neg. LLF: 102.83707963545675
Iteration: 4, Func. Count: 32, Neg. LLF: 102.70897111736946
Iteration: 5, Func. Count: 41, Neg. LLF: 101.43218415316672
Iteration: 6, Func. Count: 49, Neg. LLF: 101.32078983007631
Iteration: 7, Func. Count: 56, Neg. LLF: 101.31245440087551
Iteration: 8, Func. Count: 63, Neg. LLF: 101.3111249386323
Iteration: 9, Func. Count: 70, Neg. LLF: 101.31096980607775
Iteration: 10, Func. Count: 77, Neg. LLF: 101.31095937022477
Iteration: 11, Func. Count: 83, Neg. LLF: 101.31095937023751
Optimization terminated successfully (Exit mode 0)
Current function value: 101.31095937022477
Iterations: 11
Function evaluations: 83
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 107.67414894621521
Iteration: 2, Func. Count: 19, Neg. LLF: 102.1891238662564
Iteration: 3, Func. Count: 27, Neg. LLF: 101.84390682377118
Iteration: 4, Func. Count: 35, Neg. LLF: 102.11698198696747
Iteration: 5, Func. Count: 44, Neg. LLF: 101.53954938977331
Iteration: 6, Func. Count: 53, Neg. LLF: 101.42051790969468
Iteration: 7, Func. Count: 61, Neg. LLF: 101.3469324757557
Iteration: 8, Func. Count: 69, Neg. LLF: 101.32619609945542
Iteration: 9, Func. Count: 77, Neg. LLF: 101.3127863733508
Iteration: 10, Func. Count: 85, Neg. LLF: 101.31116957068454
Iteration: 11, Func. Count: 93, Neg. LLF: 101.31097669424774
Iteration: 12, Func. Count: 101, Neg. LLF: 101.31096000728247
Iteration: 13, Func. Count: 109, Neg. LLF: 101.31095891198594
Iteration: 14, Func. Count: 116, Neg. LLF: 101.3109589487217
Optimization terminated successfully (Exit mode 0)
Current function value: 101.31095891198594
Iterations: 14
Function evaluations: 116
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 102.27458128334955
Iteration: 2, Func. Count: 20, Neg. LLF: 102.16442222978075
Iteration: 3, Func. Count: 30, Neg. LLF: 102.28038897850554
Iteration: 4, Func. Count: 40, Neg. LLF: 103.06144362143236
Iteration: 5, Func. Count: 50, Neg. LLF: 101.97888194686081
Iteration: 6, Func. Count: 60, Neg. LLF: 101.38730558093539
Iteration: 7, Func. Count: 69, Neg. LLF: 101.34230311904003
Iteration: 8, Func. Count: 78, Neg. LLF: 101.3173088801758
Iteration: 9, Func. Count: 87, Neg. LLF: 101.31170541479156
Iteration: 10, Func. Count: 96, Neg. LLF: 101.31102712919744
Iteration: 11, Func. Count: 105, Neg. LLF: 101.31095928861666
Iteration: 12, Func. Count: 113, Neg. LLF: 101.31095930791477
Optimization terminated successfully (Exit mode 0)
Current function value: 101.31095928861666
Iterations: 12
Function evaluations: 113
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 113.67946727376756
Iteration: 2, Func. Count: 23, Neg. LLF: 103.94518013223659
Iteration: 3, Func. Count: 34, Neg. LLF: 101.5397575358939
Iteration: 4, Func. Count: 44, Neg. LLF: 101.59427896202482
Iteration: 5, Func. Count: 55, Neg. LLF: 101.56687398167092
Iteration: 6, Func. Count: 66, Neg. LLF: 101.33236326846986
Iteration: 7, Func. Count: 76, Neg. LLF: 101.31592184949713
Iteration: 8, Func. Count: 86, Neg. LLF: 101.31237966231222
Iteration: 9, Func. Count: 96, Neg. LLF: 101.31117052511682
Iteration: 10, Func. Count: 106, Neg. LLF: 101.31097895321139
Iteration: 11, Func. Count: 116, Neg. LLF: 101.31095941509888
Iteration: 12, Func. Count: 125, Neg. LLF: 101.3109594373928
Optimization terminated successfully (Exit mode 0)
Current function value: 101.31095941509888
Iterations: 12
Function evaluations: 125
Gradient evaluations: 12
Iteration: 1, Func. Count: 8, Neg. LLF: 137.86646883336903
Iteration: 2, Func. Count: 17, Neg. LLF: 190.24762965733336
Iteration: 3, Func. Count: 25, Neg. LLF: 101.45830294835015
Iteration: 4, Func. Count: 32, Neg. LLF: 101.04818351829982
Iteration: 5, Func. Count: 39, Neg. LLF: 100.96299118945909
Iteration: 6, Func. Count: 46, Neg. LLF: 100.94475524781147
Iteration: 7, Func. Count: 53, Neg. LLF: 100.90606319930902
Iteration: 8, Func. Count: 60, Neg. LLF: 100.88746162405836
Iteration: 9, Func. Count: 67, Neg. LLF: 100.85108437526969
Iteration: 10, Func. Count: 74, Neg. LLF: 100.78947930576453
Iteration: 11, Func. Count: 81, Neg. LLF: 100.78330691760796
Iteration: 12, Func. Count: 88, Neg. LLF: 100.78327257716992
Iteration: 13, Func. Count: 94, Neg. LLF: 100.78327257983655
Optimization terminated successfully (Exit mode 0)
Current function value: 100.78327257716992
Iterations: 13
Function evaluations: 94
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 106.45721577696258
Iteration: 2, Func. Count: 19, Neg. LLF: 102.18592938915587
Iteration: 3, Func. Count: 28, Neg. LLF: 102.76916738887479
Iteration: 4, Func. Count: 37, Neg. LLF: 103.91873436451661
Iteration: 5, Func. Count: 46, Neg. LLF: 101.3061085542983
Iteration: 6, Func. Count: 54, Neg. LLF: 101.13416370512321
Iteration: 7, Func. Count: 62, Neg. LLF: 101.0559174857939
Iteration: 8, Func. Count: 70, Neg. LLF: 101.00568692304664
Iteration: 9, Func. Count: 78, Neg. LLF: 100.96642283745845
Iteration: 10, Func. Count: 86, Neg. LLF: 100.90789120585812
Iteration: 11, Func. Count: 94, Neg. LLF: 100.8037869597553
Iteration: 12, Func. Count: 102, Neg. LLF: 100.79669112094142
Iteration: 13, Func. Count: 110, Neg. LLF: 100.78982573399058
Iteration: 14, Func. Count: 118, Neg. LLF: 100.78330712061312
Iteration: 15, Func. Count: 126, Neg. LLF: 100.78327263784487
Iteration: 16, Func. Count: 133, Neg. LLF: 100.78327270418221
Optimization terminated successfully (Exit mode 0)
Current function value: 100.78327263784487
Iterations: 16
Function evaluations: 133
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 109.7380047773681
Iteration: 2, Func. Count: 21, Neg. LLF: 102.13479361741791
Iteration: 3, Func. Count: 30, Neg. LLF: 101.99625249238599
Iteration: 4, Func. Count: 39, Neg. LLF: 101.75106264163232
Iteration: 5, Func. Count: 48, Neg. LLF: 101.38721247846418
Iteration: 6, Func. Count: 57, Neg. LLF: 101.30153635744352
Iteration: 7, Func. Count: 66, Neg. LLF: 101.03082749836395
Iteration: 8, Func. Count: 75, Neg. LLF: 100.98968198446599
Iteration: 9, Func. Count: 84, Neg. LLF: 100.92789751647504
Iteration: 10, Func. Count: 93, Neg. LLF: 100.86916277785872
Iteration: 11, Func. Count: 102, Neg. LLF: 100.78461080015937
Iteration: 12, Func. Count: 111, Neg. LLF: 100.7833487851816
Iteration: 13, Func. Count: 120, Neg. LLF: 100.78327298333308
Iteration: 14, Func. Count: 128, Neg. LLF: 100.78327304331765
Optimization terminated successfully (Exit mode 0)
Current function value: 100.78327298333308
Iterations: 14
Function evaluations: 128
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 102.75474173460307
Iteration: 2, Func. Count: 22, Neg. LLF: 107.65755551610877
Iteration: 3, Func. Count: 33, Neg. LLF: 101.14221124840182
Iteration: 4, Func. Count: 43, Neg. LLF: 100.99021862468145
Iteration: 5, Func. Count: 53, Neg. LLF: 100.955645041276
Iteration: 6, Func. Count: 63, Neg. LLF: 100.92863578531501
Iteration: 7, Func. Count: 73, Neg. LLF: 100.90224690078703
Iteration: 8, Func. Count: 83, Neg. LLF: 100.85432416871804
Iteration: 9, Func. Count: 93, Neg. LLF: 100.78532433635787
Iteration: 10, Func. Count: 103, Neg. LLF: 100.78418571467948
Iteration: 11, Func. Count: 113, Neg. LLF: 100.78327550967546
Iteration: 12, Func. Count: 123, Neg. LLF: 100.78327261358908
Iteration: 13, Func. Count: 132, Neg. LLF: 100.78327269706713
Optimization terminated successfully (Exit mode 0)
Current function value: 100.78327261358908
Iterations: 14
Function evaluations: 132
Gradient evaluations: 13
Iteration: 1, Func. Count: 12, Neg. LLF: 104.007191819988
Iteration: 2, Func. Count: 24, Neg. LLF: 105.51420539143558
Iteration: 3, Func. Count: 36, Neg. LLF: 103.45547093860229
Iteration: 4, Func. Count: 48, Neg. LLF: 101.29088596748716
Iteration: 5, Func. Count: 59, Neg. LLF: 101.13270475984648
Iteration: 6, Func. Count: 70, Neg. LLF: 101.00073322985341
Iteration: 7, Func. Count: 81, Neg. LLF: 100.95094282305094
Iteration: 8, Func. Count: 92, Neg. LLF: 100.92828399427897
Iteration: 9, Func. Count: 103, Neg. LLF: 100.90925204477058
Iteration: 10, Func. Count: 114, Neg. LLF: 100.81220082937362
Iteration: 11, Func. Count: 125, Neg. LLF: 100.78567042054178
Iteration: 12, Func. Count: 136, Neg. LLF: 100.78373564611867
Iteration: 13, Func. Count: 147, Neg. LLF: 100.78329361117504
Iteration: 14, Func. Count: 158, Neg. LLF: 100.78327805415586
Iteration: 15, Func. Count: 169, Neg. LLF: 100.78327260944911
Iteration: 16, Func. Count: 179, Neg. LLF: 100.78327266315691
Optimization terminated successfully (Exit mode 0)
Current function value: 100.78327260944911
Iterations: 16
Function evaluations: 179
Gradient evaluations: 16
Iteration: 1, Func. Count: 9, Neg. LLF: 133.10052669272503
Iteration: 2, Func. Count: 19, Neg. LLF: 185.82596790797038
Iteration: 3, Func. Count: 28, Neg. LLF: 101.61348892525825
Iteration: 4, Func. Count: 36, Neg. LLF: 101.01862313007416
Iteration: 5, Func. Count: 44, Neg. LLF: 100.95528567648512
Iteration: 6, Func. Count: 52, Neg. LLF: 100.93775692782535
Iteration: 7, Func. Count: 60, Neg. LLF: 100.91298703807026
Iteration: 8, Func. Count: 68, Neg. LLF: 100.87210317422179
Iteration: 9, Func. Count: 76, Neg. LLF: 100.81343822850415
Iteration: 10, Func. Count: 84, Neg. LLF: 100.78690885608952
Iteration: 11, Func. Count: 92, Neg. LLF: 100.78346820226574
Iteration: 12, Func. Count: 100, Neg. LLF: 100.78327336658111
Iteration: 13, Func. Count: 108, Neg. LLF: 100.78327253086478
Optimization terminated successfully (Exit mode 0)
Current function value: 100.78327253086478
Iterations: 13
Function evaluations: 108
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 133.95053149455518
Iteration: 2, Func. Count: 21, Neg. LLF: 101.95852813934951
Iteration: 3, Func. Count: 30, Neg. LLF: 102.40535088308938
Iteration: 4, Func. Count: 40, Neg. LLF: 102.73725356301458
Iteration: 5, Func. Count: 50, Neg. LLF: 101.91144474453445
Iteration: 6, Func. Count: 60, Neg. LLF: 101.37265222788108
Iteration: 7, Func. Count: 69, Neg. LLF: 101.16568084455642
Iteration: 8, Func. Count: 78, Neg. LLF: 101.06561015829467
Iteration: 9, Func. Count: 87, Neg. LLF: 100.98660089494807
Iteration: 10, Func. Count: 96, Neg. LLF: 100.9500126659288
Iteration: 11, Func. Count: 105, Neg. LLF: 100.90439915707745
Iteration: 12, Func. Count: 114, Neg. LLF: 100.7952435401164
Iteration: 13, Func. Count: 123, Neg. LLF: 100.78423037371738
Iteration: 14, Func. Count: 132, Neg. LLF: 100.78358639430354
Iteration: 15, Func. Count: 141, Neg. LLF: 100.78338148810539
Iteration: 16, Func. Count: 150, Neg. LLF: 100.78327998541643
Iteration: 17, Func. Count: 159, Neg. LLF: 100.78327281022041
Iteration: 18, Func. Count: 167, Neg. LLF: 100.78327287665297
Optimization terminated successfully (Exit mode 0)
Current function value: 100.78327281022041
Iterations: 18
Function evaluations: 167
Gradient evaluations: 18
Iteration: 1, Func. Count: 11, Neg. LLF: 130.51182008147308
Iteration: 2, Func. Count: 23, Neg. LLF: 102.04296953285662
Iteration: 3, Func. Count: 33, Neg. LLF: 102.0260476225669
Iteration: 4, Func. Count: 43, Neg. LLF: 102.00648093264915
Iteration: 5, Func. Count: 53, Neg. LLF: 101.98127214483185
Iteration: 6, Func. Count: 63, Neg. LLF: 102.08857864209457
Iteration: 7, Func. Count: 74, Neg. LLF: 101.95728337916385
Iteration: 8, Func. Count: 84, Neg. LLF: 101.94317725270811
Iteration: 9, Func. Count: 94, Neg. LLF: 101.94445201351364
Iteration: 10, Func. Count: 105, Neg. LLF: 101.94228664057043
Iteration: 11, Func. Count: 115, Neg. LLF: 101.942256333872
Iteration: 12, Func. Count: 125, Neg. LLF: 101.9422557633553
Optimization terminated successfully (Exit mode 0)
Current function value: 101.9422557633553
Iterations: 12
Function evaluations: 125
Gradient evaluations: 12
Iteration: 1, Func. Count: 12, Neg. LLF: 127.77658082990109
Iteration: 2, Func. Count: 25, Neg. LLF: 102.0404039885559
Iteration: 3, Func. Count: 36, Neg. LLF: 102.11151533110497
Iteration: 4, Func. Count: 48, Neg. LLF: 101.8587190543548
Iteration: 5, Func. Count: 59, Neg. LLF: 101.35171154648079
Iteration: 6, Func. Count: 70, Neg. LLF: 101.09645178015272
Iteration: 7, Func. Count: 81, Neg. LLF: 100.98657829405006
Iteration: 8, Func. Count: 92, Neg. LLF: 100.91963732219212
Iteration: 9, Func. Count: 103, Neg. LLF: 100.90453583876231
Iteration: 10, Func. Count: 114, Neg. LLF: 100.87712132526073
Iteration: 11, Func. Count: 125, Neg. LLF: 100.85310956768168
Iteration: 12, Func. Count: 136, Neg. LLF: 100.79024109280995
Iteration: 13, Func. Count: 147, Neg. LLF: 100.78540936760835
Iteration: 14, Func. Count: 158, Neg. LLF: 100.78328689106618
Iteration: 15, Func. Count: 169, Neg. LLF: 100.78327302961873
Iteration: 16, Func. Count: 179, Neg. LLF: 100.78327311307558
Optimization terminated successfully (Exit mode 0)
Current function value: 100.78327302961873
Iterations: 16
Function evaluations: 179
Gradient evaluations: 16
Iteration: 1, Func. Count: 13, Neg. LLF: 115.476004418821
Iteration: 2, Func. Count: 27, Neg. LLF: 103.00241654965365
Iteration: 3, Func. Count: 40, Neg. LLF: 102.5767504744805
Iteration: 4, Func. Count: 53, Neg. LLF: 101.06212703197042
Iteration: 5, Func. Count: 65, Neg. LLF: 108.26705928279297
Iteration: 6, Func. Count: 78, Neg. LLF: 100.15665130517517
Iteration: 7, Func. Count: 90, Neg. LLF: 100.13391357272255
Iteration: 8, Func. Count: 102, Neg. LLF: 100.37269140558227
Iteration: 9, Func. Count: 115, Neg. LLF: 100.09432246799669
Iteration: 10, Func. Count: 127, Neg. LLF: 100.09312625558167
Iteration: 11, Func. Count: 139, Neg. LLF: 100.09307795053864
Iteration: 12, Func. Count: 150, Neg. LLF: 100.09307789173766
Optimization terminated successfully (Exit mode 0)
Current function value: 100.09307795053864
Iterations: 12
Function evaluations: 150
Gradient evaluations: 12
Iteration: 1, Func. Count: 6, Neg. LLF: 141.6571008778363
Iteration: 2, Func. Count: 13, Neg. LLF: 144.78429513587244
Iteration: 3, Func. Count: 19, Neg. LLF: 102.45349704323257
Iteration: 4, Func. Count: 24, Neg. LLF: 102.30724138791766
Iteration: 5, Func. Count: 29, Neg. LLF: 102.19478961929573
Iteration: 6, Func. Count: 34, Neg. LLF: 102.17934185821159
Iteration: 7, Func. Count: 39, Neg. LLF: 102.17399055135034
Iteration: 8, Func. Count: 44, Neg. LLF: 102.17235304387357
Iteration: 9, Func. Count: 49, Neg. LLF: 102.17234909096157
Iteration: 10, Func. Count: 53, Neg. LLF: 102.17234921547964
Optimization terminated successfully (Exit mode 0)
Current function value: 102.17234909096157
Iterations: 10
Function evaluations: 53
Gradient evaluations: 10
Iteration: 1, Func. Count: 7, Neg. LLF: 143.13443447974808
Iteration: 2, Func. Count: 15, Neg. LLF: 102.01080016643039
Iteration: 3, Func. Count: 21, Neg. LLF: 102.15874720574892
Iteration: 4, Func. Count: 28, Neg. LLF: 101.98198831487113
Iteration: 5, Func. Count: 34, Neg. LLF: 101.96069077703656
Iteration: 6, Func. Count: 40, Neg. LLF: 101.95507915633651
Iteration: 7, Func. Count: 47, Neg. LLF: 101.94229030289645
Iteration: 8, Func. Count: 53, Neg. LLF: 101.94225814568202
Iteration: 9, Func. Count: 59, Neg. LLF: 101.94225603829042
Iteration: 10, Func. Count: 64, Neg. LLF: 101.9422560380884
Optimization terminated successfully (Exit mode 0)
Current function value: 101.94225603829042
Iterations: 10
Function evaluations: 64
Gradient evaluations: 10
Iteration: 1, Func. Count: 8, Neg. LLF: 138.22666351946958
Iteration: 2, Func. Count: 17, Neg. LLF: 102.02524467717157
Iteration: 3, Func. Count: 24, Neg. LLF: 103.19463115314207
Iteration: 4, Func. Count: 32, Neg. LLF: 103.43886178267641
Iteration: 5, Func. Count: 40, Neg. LLF: 102.10383558998517
Iteration: 6, Func. Count: 48, Neg. LLF: 101.97833003079437
Iteration: 7, Func. Count: 55, Neg. LLF: 101.97110545461867
Iteration: 8, Func. Count: 62, Neg. LLF: 101.9691146147288
Iteration: 9, Func. Count: 70, Neg. LLF: 101.94420285243714
Iteration: 10, Func. Count: 77, Neg. LLF: 101.94228988957956
Iteration: 11, Func. Count: 84, Neg. LLF: 101.94225936216345
Iteration: 12, Func. Count: 91, Neg. LLF: 101.9422564790651
Iteration: 13, Func. Count: 98, Neg. LLF: 101.9422560783508
Optimization terminated successfully (Exit mode 0)
Current function value: 101.9422560783508
Iterations: 13
Function evaluations: 98
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 133.61960955615984
Iteration: 2, Func. Count: 19, Neg. LLF: 102.04055310150277
Iteration: 3, Func. Count: 27, Neg. LLF: 102.19391067392587
Iteration: 4, Func. Count: 36, Neg. LLF: 102.01395644161424
Iteration: 5, Func. Count: 44, Neg. LLF: 102.00542880878022
Iteration: 6, Func. Count: 52, Neg. LLF: 102.00042430518279
Iteration: 7, Func. Count: 60, Neg. LLF: 101.99465375177896
Iteration: 8, Func. Count: 68, Neg. LLF: 101.98317489805528
Iteration: 9, Func. Count: 76, Neg. LLF: 101.9704800505157
Iteration: 10, Func. Count: 84, Neg. LLF: 101.94509717227623
Iteration: 11, Func. Count: 92, Neg. LLF: 101.94269968848606
Iteration: 12, Func. Count: 100, Neg. LLF: 101.94241236690823
Iteration: 13, Func. Count: 108, Neg. LLF: 102.913351797306
Iteration: 14, Func. Count: 119, Neg. LLF: 101.94231718003597
Iteration: 15, Func. Count: 127, Neg. LLF: 101.94225628808029
Iteration: 16, Func. Count: 134, Neg. LLF: 101.94225629209501
Optimization terminated successfully (Exit mode 0)
Current function value: 101.94225628808029
Iterations: 17
Function evaluations: 134
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 130.07395402261997
Iteration: 2, Func. Count: 21, Neg. LLF: 102.04706180756591
Iteration: 3, Func. Count: 30, Neg. LLF: 102.01781624524614
Iteration: 4, Func. Count: 39, Neg. LLF: 102.00354383365732
Iteration: 5, Func. Count: 48, Neg. LLF: 101.98938461193623
Iteration: 6, Func. Count: 57, Neg. LLF: 101.97521112412386
Iteration: 7, Func. Count: 66, Neg. LLF: 101.9694884774998
Iteration: 8, Func. Count: 75, Neg. LLF: 101.9473152758954
Iteration: 9, Func. Count: 84, Neg. LLF: 101.94242607089288
Iteration: 10, Func. Count: 93, Neg. LLF: 101.94226160319047
Iteration: 11, Func. Count: 102, Neg. LLF: 101.94225583731264
Iteration: 12, Func. Count: 110, Neg. LLF: 101.94225584337275
Optimization terminated successfully (Exit mode 0)
Current function value: 101.94225583731264
Iterations: 12
Function evaluations: 110
Gradient evaluations: 12
Iteration: 1, Func. Count: 7, Neg. LLF: 128.22785105951982
Iteration: 2, Func. Count: 15, Neg. LLF: 164.09836651576148
Iteration: 3, Func. Count: 22, Neg. LLF: 102.51288862010522
Iteration: 4, Func. Count: 28, Neg. LLF: 102.25915370186041
Iteration: 5, Func. Count: 34, Neg. LLF: 102.233408758175
Iteration: 6, Func. Count: 41, Neg. LLF: 102.13514119333128
Iteration: 7, Func. Count: 47, Neg. LLF: 102.12794072527628
Iteration: 8, Func. Count: 53, Neg. LLF: 102.12770933590312
Iteration: 9, Func. Count: 59, Neg. LLF: 102.12770778978862
Iteration: 10, Func. Count: 64, Neg. LLF: 102.12770778978499
Optimization terminated successfully (Exit mode 0)
Current function value: 102.12770778978862
Iterations: 10
Function evaluations: 64
Gradient evaluations: 10
Iteration: 1, Func. Count: 8, Neg. LLF: 108.20735940665004
Iteration: 2, Func. Count: 17, Neg. LLF: 102.61717707050335
Iteration: 3, Func. Count: 25, Neg. LLF: 102.02337396490296
Iteration: 4, Func. Count: 32, Neg. LLF: 102.0177138027072
Iteration: 5, Func. Count: 39, Neg. LLF: 102.0059414766351
Iteration: 6, Func. Count: 46, Neg. LLF: 101.99682127010225
Iteration: 7, Func. Count: 53, Neg. LLF: 101.97377004345968
Iteration: 8, Func. Count: 60, Neg. LLF: 101.96442220797105
Iteration: 9, Func. Count: 67, Neg. LLF: 101.95109734534957
Iteration: 10, Func. Count: 74, Neg. LLF: 101.94544775718808
Iteration: 11, Func. Count: 81, Neg. LLF: 101.94397400291915
Iteration: 12, Func. Count: 88, Neg. LLF: 101.94240792394004
Iteration: 13, Func. Count: 95, Neg. LLF: 101.94226183770634
Iteration: 14, Func. Count: 102, Neg. LLF: 101.94225578269385
Iteration: 15, Func. Count: 108, Neg. LLF: 101.94225578266905
Optimization terminated successfully (Exit mode 0)
Current function value: 101.94225578269385
Iterations: 15
Function evaluations: 108
Gradient evaluations: 15
Iteration: 1, Func. Count: 9, Neg. LLF: 119.41980423661195
Iteration: 2, Func. Count: 19, Neg. LLF: 102.14874905141424
Iteration: 3, Func. Count: 27, Neg. LLF: 102.03148066694034
Iteration: 4, Func. Count: 35, Neg. LLF: 102.10252852206823
Iteration: 5, Func. Count: 44, Neg. LLF: 102.01372517994741
Iteration: 6, Func. Count: 52, Neg. LLF: 101.97326571757394
Iteration: 7, Func. Count: 60, Neg. LLF: 101.9720751735731
Iteration: 8, Func. Count: 69, Neg. LLF: 101.95035152930859
Iteration: 9, Func. Count: 77, Neg. LLF: 101.94285362966544
Iteration: 10, Func. Count: 85, Neg. LLF: 101.94230570776925
Iteration: 11, Func. Count: 93, Neg. LLF: 101.94225638329995
Iteration: 12, Func. Count: 101, Neg. LLF: 101.94225575074245
Optimization terminated successfully (Exit mode 0)
Current function value: 101.94225575074245
Iterations: 12
Function evaluations: 101
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 117.64251404683446
Iteration: 2, Func. Count: 21, Neg. LLF: 102.3642316985393
Iteration: 3, Func. Count: 31, Neg. LLF: 102.03768413193548
Iteration: 4, Func. Count: 40, Neg. LLF: 102.03036988470492
Iteration: 5, Func. Count: 49, Neg. LLF: 102.0030848096884
Iteration: 6, Func. Count: 58, Neg. LLF: 101.9900947982869
Iteration: 7, Func. Count: 67, Neg. LLF: 101.97901041599657
Iteration: 8, Func. Count: 76, Neg. LLF: 101.96624625445352
Iteration: 9, Func. Count: 85, Neg. LLF: 101.94645478553362
Iteration: 10, Func. Count: 94, Neg. LLF: 101.94266766777343
Iteration: 11, Func. Count: 103, Neg. LLF: 101.94228695235722
Iteration: 12, Func. Count: 112, Neg. LLF: 101.94225646214512
Iteration: 13, Func. Count: 121, Neg. LLF: 101.94225575683254
Optimization terminated successfully (Exit mode 0)
Current function value: 101.94225575683254
Iterations: 13
Function evaluations: 121
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 116.45203643468764
Iteration: 2, Func. Count: 23, Neg. LLF: 102.5197183122908
Iteration: 3, Func. Count: 34, Neg. LLF: 102.03861872500488
Iteration: 4, Func. Count: 44, Neg. LLF: 102.03447555500483
Iteration: 5, Func. Count: 54, Neg. LLF: 102.01582803717194
Iteration: 6, Func. Count: 64, Neg. LLF: 101.99116945731491
Iteration: 7, Func. Count: 74, Neg. LLF: 101.98295830026721
Iteration: 8, Func. Count: 84, Neg. LLF: 101.97113138407907
Iteration: 9, Func. Count: 94, Neg. LLF: 101.95392938704609
Iteration: 10, Func. Count: 104, Neg. LLF: 101.94332117635761
Iteration: 11, Func. Count: 114, Neg. LLF: 101.94233598851378
Iteration: 12, Func. Count: 124, Neg. LLF: 101.94225731146321
Iteration: 13, Func. Count: 134, Neg. LLF: 101.94225575963172
Iteration: 14, Func. Count: 143, Neg. LLF: 101.94225576569531
Optimization terminated successfully (Exit mode 0)
Current function value: 101.94225575963172
Iterations: 14
Function evaluations: 143
Gradient evaluations: 14
Iteration: 1, Func. Count: 8, Neg. LLF: 144.05965751086015
Iteration: 2, Func. Count: 17, Neg. LLF: 171.62922240153188
Iteration: 3, Func. Count: 25, Neg. LLF: 101.59190636507101
Iteration: 4, Func. Count: 32, Neg. LLF: 102.0676329091018
Iteration: 5, Func. Count: 40, Neg. LLF: 101.35171454352646
Iteration: 6, Func. Count: 48, Neg. LLF: 101.33125868698289
Iteration: 7, Func. Count: 55, Neg. LLF: 101.33113255022887
Iteration: 8, Func. Count: 62, Neg. LLF: 101.33106904706413
Iteration: 9, Func. Count: 69, Neg. LLF: 101.33105923195092
Iteration: 10, Func. Count: 76, Neg. LLF: 101.33105835195167
Optimization terminated successfully (Exit mode 0)
Current function value: 101.33105835195167
Iterations: 10
Function evaluations: 76
Gradient evaluations: 10
Iteration: 1, Func. Count: 9, Neg. LLF: 110.89609138880928
Iteration: 2, Func. Count: 19, Neg. LLF: 101.53610766990683
Iteration: 3, Func. Count: 27, Neg. LLF: 102.80387403325895
Iteration: 4, Func. Count: 36, Neg. LLF: 102.6074659453278
Iteration: 5, Func. Count: 46, Neg. LLF: 101.36729435445224
Iteration: 6, Func. Count: 54, Neg. LLF: 101.32428898381812
Iteration: 7, Func. Count: 62, Neg. LLF: 101.3115889749237
Iteration: 8, Func. Count: 70, Neg. LLF: 101.31110849579588
Iteration: 9, Func. Count: 78, Neg. LLF: 101.31096283706408
Iteration: 10, Func. Count: 86, Neg. LLF: 101.31095902877408
Iteration: 11, Func. Count: 93, Neg. LLF: 101.31095902877848
Optimization terminated successfully (Exit mode 0)
Current function value: 101.31095902877408
Iterations: 11
Function evaluations: 93
Gradient evaluations: 11
Iteration: 1, Func. Count: 10, Neg. LLF: 110.04436125955475
Iteration: 2, Func. Count: 21, Neg. LLF: 102.13395663635757
Iteration: 3, Func. Count: 30, Neg. LLF: 101.88938745329163
Iteration: 4, Func. Count: 39, Neg. LLF: 102.05837510319455
Iteration: 5, Func. Count: 49, Neg. LLF: 101.62584242355763
Iteration: 6, Func. Count: 59, Neg. LLF: 101.43187801110146
Iteration: 7, Func. Count: 68, Neg. LLF: 101.3585332414267
Iteration: 8, Func. Count: 77, Neg. LLF: 101.33190176836698
Iteration: 9, Func. Count: 86, Neg. LLF: 101.31743374605261
Iteration: 10, Func. Count: 95, Neg. LLF: 101.3115993288478
Iteration: 11, Func. Count: 104, Neg. LLF: 101.31099055564235
Iteration: 12, Func. Count: 113, Neg. LLF: 101.31096223437166
Iteration: 13, Func. Count: 122, Neg. LLF: 101.31095915033568
Iteration: 14, Func. Count: 130, Neg. LLF: 101.31095918706474
Optimization terminated successfully (Exit mode 0)
Current function value: 101.31095915033568
Iterations: 14
Function evaluations: 130
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 103.67904279809702
Iteration: 2, Func. Count: 22, Neg. LLF: 105.42418026236183
Iteration: 3, Func. Count: 34, Neg. LLF: 101.6569292514474
Iteration: 4, Func. Count: 44, Neg. LLF: 101.91715938845505
Iteration: 5, Func. Count: 55, Neg. LLF: 101.47524955348449
Iteration: 6, Func. Count: 66, Neg. LLF: 101.32932184305179
Iteration: 7, Func. Count: 76, Neg. LLF: 101.31946414472249
Iteration: 8, Func. Count: 86, Neg. LLF: 101.31285519373013
Iteration: 9, Func. Count: 96, Neg. LLF: 101.31129237356075
Iteration: 10, Func. Count: 106, Neg. LLF: 101.31096928734324
Iteration: 11, Func. Count: 116, Neg. LLF: 101.31095925976115
Iteration: 12, Func. Count: 125, Neg. LLF: 101.31095927904774
Optimization terminated successfully (Exit mode 0)
Current function value: 101.31095925976115
Iterations: 12
Function evaluations: 125
Gradient evaluations: 12
Iteration: 1, Func. Count: 12, Neg. LLF: 103.6475507436483
Iteration: 2, Func. Count: 24, Neg. LLF: 105.28317077394414
Iteration: 3, Func. Count: 36, Neg. LLF: 101.53995947113367
Iteration: 4, Func. Count: 47, Neg. LLF: 101.84252123266069
Iteration: 5, Func. Count: 59, Neg. LLF: 101.42048401103465
Iteration: 6, Func. Count: 70, Neg. LLF: 101.66356389071831
Iteration: 7, Func. Count: 82, Neg. LLF: 101.35024547424607
Iteration: 8, Func. Count: 93, Neg. LLF: 101.3223855134942
Iteration: 9, Func. Count: 104, Neg. LLF: 101.31378288428948
Iteration: 10, Func. Count: 115, Neg. LLF: 101.3116658443679
Iteration: 11, Func. Count: 126, Neg. LLF: 101.31108058325266
Iteration: 12, Func. Count: 137, Neg. LLF: 101.31096951593632
Iteration: 13, Func. Count: 148, Neg. LLF: 101.31095948527039
Iteration: 14, Func. Count: 159, Neg. LLF: 101.31095890388592
Optimization terminated successfully (Exit mode 0)
Current function value: 101.31095890388592
Iterations: 14
Function evaluations: 159
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 146.5611722597744
Iteration: 2, Func. Count: 19, Neg. LLF: 168.59703385764135
Iteration: 3, Func. Count: 28, Neg. LLF: 101.14095635844237
Iteration: 4, Func. Count: 36, Neg. LLF: 101.02575012299201
Iteration: 5, Func. Count: 44, Neg. LLF: 100.9615986497691
Iteration: 6, Func. Count: 52, Neg. LLF: 100.94153691338217
Iteration: 7, Func. Count: 60, Neg. LLF: 100.92665579119404
Iteration: 8, Func. Count: 68, Neg. LLF: 100.90522263651843
Iteration: 9, Func. Count: 76, Neg. LLF: 100.82380422885069
Iteration: 10, Func. Count: 84, Neg. LLF: 100.79669674718905
Iteration: 11, Func. Count: 92, Neg. LLF: 100.78561648395912
Iteration: 12, Func. Count: 100, Neg. LLF: 100.78333100815752
Iteration: 13, Func. Count: 108, Neg. LLF: 100.78327263920144
Iteration: 14, Func. Count: 115, Neg. LLF: 100.78327264187106
Optimization terminated successfully (Exit mode 0)
Current function value: 100.78327263920144
Iterations: 14
Function evaluations: 115
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 110.18442054494663
Iteration: 2, Func. Count: 21, Neg. LLF: 101.65106845838821
Iteration: 3, Func. Count: 30, Neg. LLF: 103.02652988212805
Iteration: 4, Func. Count: 40, Neg. LLF: 103.66528687268116
Iteration: 5, Func. Count: 50, Neg. LLF: 101.13772288379845
Iteration: 6, Func. Count: 59, Neg. LLF: 101.06514880874447
Iteration: 7, Func. Count: 68, Neg. LLF: 101.02962894870194
Iteration: 8, Func. Count: 77, Neg. LLF: 100.96958850281803
Iteration: 9, Func. Count: 86, Neg. LLF: 100.93090926808817
Iteration: 10, Func. Count: 95, Neg. LLF: 100.88003419907464
Iteration: 11, Func. Count: 104, Neg. LLF: 100.7860986910074
Iteration: 12, Func. Count: 113, Neg. LLF: 100.78420275813757
Iteration: 13, Func. Count: 122, Neg. LLF: 100.78327352356737
Iteration: 14, Func. Count: 131, Neg. LLF: 100.7832726213671
Optimization terminated successfully (Exit mode 0)
Current function value: 100.7832726213671
Iterations: 14
Function evaluations: 131
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 110.58784981246471
Iteration: 2, Func. Count: 23, Neg. LLF: 102.1116693748821
Iteration: 3, Func. Count: 33, Neg. LLF: 102.01295491379794
Iteration: 4, Func. Count: 43, Neg. LLF: 101.76001702730447
Iteration: 5, Func. Count: 53, Neg. LLF: 101.46560748284604
Iteration: 6, Func. Count: 63, Neg. LLF: 101.2008324247329
Iteration: 7, Func. Count: 73, Neg. LLF: 101.03883190310944
Iteration: 8, Func. Count: 83, Neg. LLF: 100.99107489693601
Iteration: 9, Func. Count: 93, Neg. LLF: 100.9315573120043
Iteration: 10, Func. Count: 103, Neg. LLF: 100.88104911215108
Iteration: 11, Func. Count: 113, Neg. LLF: 100.78437029842661
Iteration: 12, Func. Count: 123, Neg. LLF: 100.78333356230978
Iteration: 13, Func. Count: 133, Neg. LLF: 100.78327817667892
Iteration: 14, Func. Count: 143, Neg. LLF: 100.78327316206841
Iteration: 15, Func. Count: 153, Neg. LLF: 100.7832726939784
Optimization terminated successfully (Exit mode 0)
Current function value: 100.7832726939784
Iterations: 15
Function evaluations: 153
Gradient evaluations: 15
Iteration: 1, Func. Count: 12, Neg. LLF: 105.35510056452699
Iteration: 2, Func. Count: 25, Neg. LLF: 103.42746409185415
Iteration: 3, Func. Count: 37, Neg. LLF: 101.1802483680401
Iteration: 4, Func. Count: 48, Neg. LLF: 101.20741746080888
Iteration: 5, Func. Count: 60, Neg. LLF: 100.96929585077888
Iteration: 6, Func. Count: 71, Neg. LLF: 100.94360416838721
Iteration: 7, Func. Count: 82, Neg. LLF: 100.8742813629965
Iteration: 8, Func. Count: 93, Neg. LLF: 100.84270461999509
Iteration: 9, Func. Count: 104, Neg. LLF: 100.78396850889656
Iteration: 10, Func. Count: 115, Neg. LLF: 100.78353499303262
Iteration: 11, Func. Count: 126, Neg. LLF: 100.7833119728845
Iteration: 12, Func. Count: 137, Neg. LLF: 100.78326743996439
Iteration: 13, Func. Count: 148, Neg. LLF: 100.7839230231693
Iteration: 14, Func. Count: 161, Neg. LLF: 100.78327489757702
Iteration: 15, Func. Count: 173, Neg. LLF: 100.78327252347688
Iteration: 16, Func. Count: 183, Neg. LLF: 100.78327260694073
Optimization terminated successfully (Exit mode 0)
Current function value: 100.78327252347688
Iterations: 17
Function evaluations: 183
Gradient evaluations: 16
Iteration: 1, Func. Count: 13, Neg. LLF: 101.7030793285415
Iteration: 2, Func. Count: 25, Neg. LLF: 100.89873768930819
Iteration: 3, Func. Count: 37, Neg. LLF: 100.95534470197545
Iteration: 4, Func. Count: 50, Neg. LLF: 100.85076809530102
Iteration: 5, Func. Count: 62, Neg. LLF: 100.80013945555017
Iteration: 6, Func. Count: 74, Neg. LLF: 100.78331476392903
Iteration: 7, Func. Count: 86, Neg. LLF: 100.78327710832806
Iteration: 8, Func. Count: 98, Neg. LLF: 100.78327305189453
Iteration: 9, Func. Count: 109, Neg. LLF: 100.78327310559641
Optimization terminated successfully (Exit mode 0)
Current function value: 100.78327305189453
Iterations: 9
Function evaluations: 109
Gradient evaluations: 9
Iteration: 1, Func. Count: 10, Neg. LLF: 150.14715628373864
Iteration: 2, Func. Count: 21, Neg. LLF: 149.02758376668376
Iteration: 3, Func. Count: 31, Neg. LLF: 101.1107022064441
Iteration: 4, Func. Count: 40, Neg. LLF: 101.06350009871079
Iteration: 5, Func. Count: 49, Neg. LLF: 100.96897630782381
Iteration: 6, Func. Count: 58, Neg. LLF: 100.94611159238569
Iteration: 7, Func. Count: 67, Neg. LLF: 100.9231788032499
Iteration: 8, Func. Count: 76, Neg. LLF: 100.90154562928628
Iteration: 9, Func. Count: 85, Neg. LLF: 100.81349012891584
Iteration: 10, Func. Count: 94, Neg. LLF: 100.78420803762288
Iteration: 11, Func. Count: 103, Neg. LLF: 100.7832731875814
Iteration: 12, Func. Count: 112, Neg. LLF: 100.78327253213703
Optimization terminated successfully (Exit mode 0)
Current function value: 100.78327253213703
Iterations: 12
Function evaluations: 112
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 135.98770111718815
Iteration: 2, Func. Count: 23, Neg. LLF: 102.0138529713738
Iteration: 3, Func. Count: 33, Neg. LLF: 102.06935086231644
Iteration: 4, Func. Count: 44, Neg. LLF: 104.13924584241511
Iteration: 5, Func. Count: 55, Neg. LLF: 101.51522073585487
Iteration: 6, Func. Count: 65, Neg. LLF: 101.4763876874831
Iteration: 7, Func. Count: 76, Neg. LLF: 101.27627467193152
Iteration: 8, Func. Count: 86, Neg. LLF: 101.1327216430092
Iteration: 9, Func. Count: 96, Neg. LLF: 101.08280252735409
Iteration: 10, Func. Count: 106, Neg. LLF: 101.01916893809856
Iteration: 11, Func. Count: 116, Neg. LLF: 100.95465118499695
Iteration: 12, Func. Count: 126, Neg. LLF: 100.91848493706206
Iteration: 13, Func. Count: 136, Neg. LLF: 100.82114141113493
Iteration: 14, Func. Count: 146, Neg. LLF: 100.7933433308842
Iteration: 15, Func. Count: 156, Neg. LLF: 100.78434210420114
Iteration: 16, Func. Count: 166, Neg. LLF: 100.78347325577339
Iteration: 17, Func. Count: 176, Neg. LLF: 100.78328071669242
Iteration: 18, Func. Count: 186, Neg. LLF: 100.78327277574259
Iteration: 19, Func. Count: 195, Neg. LLF: 100.78327284216715
Optimization terminated successfully (Exit mode 0)
Current function value: 100.78327277574259
Iterations: 19
Function evaluations: 195
Gradient evaluations: 19
Iteration: 1, Func. Count: 12, Neg. LLF: 132.29278750235912
Iteration: 2, Func. Count: 25, Neg. LLF: 102.06569393672864
Iteration: 3, Func. Count: 36, Neg. LLF: 102.03040297243128
Iteration: 4, Func. Count: 47, Neg. LLF: 102.13730553092637
Iteration: 5, Func. Count: 59, Neg. LLF: 102.00477412203298
Iteration: 6, Func. Count: 70, Neg. LLF: 107.51292236786284
Iteration: 7, Func. Count: 82, Neg. LLF: 102.1020116922316
Iteration: 8, Func. Count: 94, Neg. LLF: 101.97877705381507
Iteration: 9, Func. Count: 106, Neg. LLF: 101.95238779661244
Iteration: 10, Func. Count: 117, Neg. LLF: 101.9430758128824
Iteration: 11, Func. Count: 128, Neg. LLF: 101.94230158106363
Iteration: 12, Func. Count: 139, Neg. LLF: 101.94225643873347
Iteration: 13, Func. Count: 150, Neg. LLF: 101.94225576723964
Optimization terminated successfully (Exit mode 0)
Current function value: 101.94225576723964
Iterations: 13
Function evaluations: 150
Gradient evaluations: 13
Iteration: 1, Func. Count: 13, Neg. LLF: 128.82973499683536
Iteration: 2, Func. Count: 27, Neg. LLF: 102.05977415901616
Iteration: 3, Func. Count: 39, Neg. LLF: 102.15665328555905
Iteration: 4, Func. Count: 52, Neg. LLF: 101.67903276354868
Iteration: 5, Func. Count: 64, Neg. LLF: 101.51715942964103
Iteration: 6, Func. Count: 76, Neg. LLF: 101.3590357866901
Iteration: 7, Func. Count: 88, Neg. LLF: 101.6487634743123
Iteration: 8, Func. Count: 101, Neg. LLF: 101.17039988123611
Iteration: 9, Func. Count: 113, Neg. LLF: 101.09424912596458
Iteration: 10, Func. Count: 125, Neg. LLF: 100.99669799990508
Iteration: 11, Func. Count: 137, Neg. LLF: 100.93768251967799
Iteration: 12, Func. Count: 149, Neg. LLF: 100.86254275900774
Iteration: 13, Func. Count: 161, Neg. LLF: 100.82494162358232
Iteration: 14, Func. Count: 173, Neg. LLF: 100.82879048111859
Iteration: 15, Func. Count: 186, Neg. LLF: 100.79507028189694
Iteration: 16, Func. Count: 198, Neg. LLF: 100.78348816195034
Iteration: 17, Func. Count: 210, Neg. LLF: 100.78327369862618
Iteration: 18, Func. Count: 222, Neg. LLF: 100.7832725230267
Iteration: 19, Func. Count: 233, Neg. LLF: 100.7832726064892
Optimization terminated successfully (Exit mode 0)
Current function value: 100.7832725230267
Iterations: 19
Function evaluations: 233
Gradient evaluations: 19
Iteration: 1, Func. Count: 14, Neg. LLF: 108.09631728224903
Iteration: 2, Func. Count: 28, Neg. LLF: 103.45546717434881
Iteration: 3, Func. Count: 42, Neg. LLF: 105.50092375591451
Iteration: 4, Func. Count: 56, Neg. LLF: 101.19978713039674
Iteration: 5, Func. Count: 69, Neg. LLF: 101.13212212822164
Iteration: 6, Func. Count: 82, Neg. LLF: 100.59919314245656
Iteration: 7, Func. Count: 95, Neg. LLF: 100.24960151593191
Iteration: 8, Func. Count: 108, Neg. LLF: 100.34080767721622
Iteration: 9, Func. Count: 122, Neg. LLF: 100.14159015649527
Iteration: 10, Func. Count: 135, Neg. LLF: 100.10179130003732
Iteration: 11, Func. Count: 148, Neg. LLF: 101.72091806983589
Iteration: 12, Func. Count: 162, Neg. LLF: 100.09476947718989
Iteration: 13, Func. Count: 175, Neg. LLF: 100.09308987194598
Iteration: 14, Func. Count: 188, Neg. LLF: 100.09307803384077
Iteration: 15, Func. Count: 201, Neg. LLF: 100.09307739675444
Optimization terminated successfully (Exit mode 0)
Current function value: 100.09307739675444
Iterations: 15
Function evaluations: 201
Gradient evaluations: 15
Iteration: 1, Func. Count: 7, Neg. LLF: 145.483982854994
Iteration: 2, Func. Count: 15, Neg. LLF: 145.31700442295895
Iteration: 3, Func. Count: 22, Neg. LLF: 102.40858996476825
Iteration: 4, Func. Count: 28, Neg. LLF: 102.25023483898659
Iteration: 5, Func. Count: 34, Neg. LLF: 102.18677072871024
Iteration: 6, Func. Count: 40, Neg. LLF: 102.17569405798055
Iteration: 7, Func. Count: 46, Neg. LLF: 102.17263255575938
Iteration: 8, Func. Count: 52, Neg. LLF: 102.17235039379487
Iteration: 9, Func. Count: 58, Neg. LLF: 102.1723490589086
Iteration: 10, Func. Count: 63, Neg. LLF: 102.17234915075946
Optimization terminated successfully (Exit mode 0)
Current function value: 102.1723490589086
Iterations: 10
Function evaluations: 63
Gradient evaluations: 10
Iteration: 1, Func. Count: 8, Neg. LLF: 145.31721862809192
Iteration: 2, Func. Count: 17, Neg. LLF: 102.010680241433
Iteration: 3, Func. Count: 24, Neg. LLF: 102.15568013836496
Iteration: 4, Func. Count: 32, Neg. LLF: 111.64765634225522
Iteration: 5, Func. Count: 40, Neg. LLF: 102.49188054707528
Iteration: 6, Func. Count: 48, Neg. LLF: 101.99546392027054
Iteration: 7, Func. Count: 56, Neg. LLF: 101.94826178034225
Iteration: 8, Func. Count: 64, Neg. LLF: 101.94426244015317
Iteration: 9, Func. Count: 72, Neg. LLF: 101.94226147824085
Iteration: 10, Func. Count: 79, Neg. LLF: 101.94225657941033
Iteration: 11, Func. Count: 86, Neg. LLF: 101.94225615783695
Optimization terminated successfully (Exit mode 0)
Current function value: 101.94225615783695
Iterations: 11
Function evaluations: 86
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 139.57278254344425
Iteration: 2, Func. Count: 19, Neg. LLF: 102.02349986515735
Iteration: 3, Func. Count: 27, Neg. LLF: 116.36224612579946
Iteration: 4, Func. Count: 36, Neg. LLF: 105.30752720977547
Iteration: 5, Func. Count: 45, Neg. LLF: 102.06977157446047
Iteration: 6, Func. Count: 54, Neg. LLF: 101.97001186796103
Iteration: 7, Func. Count: 62, Neg. LLF: 101.95522802977393
Iteration: 8, Func. Count: 70, Neg. LLF: 101.95032666952939
Iteration: 9, Func. Count: 78, Neg. LLF: 101.94261365953271
Iteration: 10, Func. Count: 86, Neg. LLF: 101.94229823728459
Iteration: 11, Func. Count: 94, Neg. LLF: 101.9422580024384
Iteration: 12, Func. Count: 102, Neg. LLF: 101.94225591212034
Iteration: 13, Func. Count: 109, Neg. LLF: 101.94225591416743
Optimization terminated successfully (Exit mode 0)
Current function value: 101.94225591212034
Iterations: 13
Function evaluations: 109
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 134.6620393459452
Iteration: 2, Func. Count: 21, Neg. LLF: 102.03662956922852
Iteration: 3, Func. Count: 30, Neg. LLF: 114.44393228677093
Iteration: 4, Func. Count: 40, Neg. LLF: 106.31496738289583
Iteration: 5, Func. Count: 50, Neg. LLF: 102.22264421544298
Iteration: 6, Func. Count: 60, Neg. LLF: 101.97173344409285
Iteration: 7, Func. Count: 69, Neg. LLF: 101.96656637556806
Iteration: 8, Func. Count: 79, Neg. LLF: 101.97464619990015
Iteration: 9, Func. Count: 89, Neg. LLF: 101.94231678374159
Iteration: 10, Func. Count: 98, Neg. LLF: 101.94225827963041
Iteration: 11, Func. Count: 107, Neg. LLF: 101.94225646425912
Iteration: 12, Func. Count: 116, Neg. LLF: 101.9422557643972
Optimization terminated successfully (Exit mode 0)
Current function value: 101.9422557643972
Iterations: 12
Function evaluations: 116
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 131.40077608388398
Iteration: 2, Func. Count: 23, Neg. LLF: 102.04981547815409
Iteration: 3, Func. Count: 33, Neg. LLF: 102.04796519548881
Iteration: 4, Func. Count: 44, Neg. LLF: 102.02298716020802
Iteration: 5, Func. Count: 54, Neg. LLF: 101.97357396856957
Iteration: 6, Func. Count: 64, Neg. LLF: 101.95089753043135
Iteration: 7, Func. Count: 74, Neg. LLF: 101.95404466536604
Iteration: 8, Func. Count: 85, Neg. LLF: 101.94226939904728
Iteration: 9, Func. Count: 95, Neg. LLF: 101.94226045365447
Iteration: 10, Func. Count: 105, Neg. LLF: 101.94225575856697
Iteration: 11, Func. Count: 114, Neg. LLF: 101.94225576464295
Optimization terminated successfully (Exit mode 0)
Current function value: 101.94225575856697
Iterations: 11
Function evaluations: 114
Gradient evaluations: 11
Iteration: 1, Func. Count: 8, Neg. LLF: 139.3253564431905
Iteration: 2, Func. Count: 17, Neg. LLF: 146.0338695038289
Iteration: 3, Func. Count: 25, Neg. LLF: 102.22731385359329
Iteration: 4, Func. Count: 32, Neg. LLF: 102.1964613650532
Iteration: 5, Func. Count: 39, Neg. LLF: 102.1401784863028
Iteration: 6, Func. Count: 46, Neg. LLF: 102.12796124958624
Iteration: 7, Func. Count: 53, Neg. LLF: 102.12771407217166
Iteration: 8, Func. Count: 60, Neg. LLF: 102.127707872391
Iteration: 9, Func. Count: 66, Neg. LLF: 102.12770787239971
Optimization terminated successfully (Exit mode 0)
Current function value: 102.127707872391
Iterations: 9
Function evaluations: 66
Gradient evaluations: 9
Iteration: 1, Func. Count: 9, Neg. LLF: 110.67760495893734
Iteration: 2, Func. Count: 19, Neg. LLF: 102.58134629342457
Iteration: 3, Func. Count: 28, Neg. LLF: 102.02235833312622
Iteration: 4, Func. Count: 36, Neg. LLF: 102.01473052919756
Iteration: 5, Func. Count: 44, Neg. LLF: 102.00499414618966
Iteration: 6, Func. Count: 52, Neg. LLF: 101.99436461462528
Iteration: 7, Func. Count: 60, Neg. LLF: 101.96927454803347
Iteration: 8, Func. Count: 68, Neg. LLF: 102.13886087877852
Iteration: 9, Func. Count: 77, Neg. LLF: 101.9647538439322
Iteration: 10, Func. Count: 86, Neg. LLF: 101.94274867859379
Iteration: 11, Func. Count: 94, Neg. LLF: 101.94226034655885
Iteration: 12, Func. Count: 102, Neg. LLF: 101.94225577230826
Iteration: 13, Func. Count: 109, Neg. LLF: 101.94225577224871
Optimization terminated successfully (Exit mode 0)
Current function value: 101.94225577230826
Iterations: 13
Function evaluations: 109
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 120.01780747203844
Iteration: 2, Func. Count: 21, Neg. LLF: 102.14618978842424
Iteration: 3, Func. Count: 30, Neg. LLF: 102.02981192773233
Iteration: 4, Func. Count: 39, Neg. LLF: 102.09447935262747
Iteration: 5, Func. Count: 49, Neg. LLF: 102.01040366580595
Iteration: 6, Func. Count: 58, Neg. LLF: 101.96950527560165
Iteration: 7, Func. Count: 67, Neg. LLF: 101.96489860677349
Iteration: 8, Func. Count: 76, Neg. LLF: 101.94346321934823
Iteration: 9, Func. Count: 85, Neg. LLF: 101.94390911889154
Iteration: 10, Func. Count: 95, Neg. LLF: 101.94226300701337
Iteration: 11, Func. Count: 104, Neg. LLF: 101.94225577971815
Iteration: 12, Func. Count: 112, Neg. LLF: 101.94225578185846
Optimization terminated successfully (Exit mode 0)
Current function value: 101.94225577971815
Iterations: 12
Function evaluations: 112
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 118.1008811225073
Iteration: 2, Func. Count: 23, Neg. LLF: 102.32950814233051
Iteration: 3, Func. Count: 34, Neg. LLF: 102.03473121885949
Iteration: 4, Func. Count: 44, Neg. LLF: 102.02480639850555
Iteration: 5, Func. Count: 54, Neg. LLF: 101.99122679175231
Iteration: 6, Func. Count: 64, Neg. LLF: 101.9931093741757
Iteration: 7, Func. Count: 75, Neg. LLF: 101.9646585465683
Iteration: 8, Func. Count: 86, Neg. LLF: 101.94337985280269
Iteration: 9, Func. Count: 96, Neg. LLF: 101.9432177104052
Iteration: 10, Func. Count: 107, Neg. LLF: 101.94225922654488
Iteration: 11, Func. Count: 117, Neg. LLF: 101.94225638016954
Iteration: 12, Func. Count: 127, Neg. LLF: 101.94225579201937
Optimization terminated successfully (Exit mode 0)
Current function value: 101.94225579201937
Iterations: 12
Function evaluations: 127
Gradient evaluations: 12
Iteration: 1, Func. Count: 12, Neg. LLF: 117.06488887475307
Iteration: 2, Func. Count: 25, Neg. LLF: 102.51802763763556
Iteration: 3, Func. Count: 37, Neg. LLF: 102.0427743346149
Iteration: 4, Func. Count: 48, Neg. LLF: 102.0331687932728
Iteration: 5, Func. Count: 59, Neg. LLF: 102.0121350343962
Iteration: 6, Func. Count: 70, Neg. LLF: 101.97906015880417
Iteration: 7, Func. Count: 81, Neg. LLF: 101.96781364522057
Iteration: 8, Func. Count: 92, Neg. LLF: 101.95043086562929
Iteration: 9, Func. Count: 103, Neg. LLF: 101.9513537253045
Iteration: 10, Func. Count: 115, Neg. LLF: 101.9424042817352
Iteration: 11, Func. Count: 126, Neg. LLF: 101.9422567104101
Iteration: 12, Func. Count: 137, Neg. LLF: 101.94225576033092
Optimization terminated successfully (Exit mode 0)
Current function value: 101.94225576033092
Iterations: 12
Function evaluations: 137
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 155.56345192268455
Iteration: 2, Func. Count: 19, Neg. LLF: 138.6772540475376
Iteration: 3, Func. Count: 28, Neg. LLF: 101.43283645434545
Iteration: 4, Func. Count: 36, Neg. LLF: 102.08383631783913
Iteration: 5, Func. Count: 45, Neg. LLF: 101.33639720453996
Iteration: 6, Func. Count: 53, Neg. LLF: 101.33306133908711
Iteration: 7, Func. Count: 61, Neg. LLF: 101.33198874274113
Iteration: 8, Func. Count: 69, Neg. LLF: 101.33114733130748
Iteration: 9, Func. Count: 77, Neg. LLF: 101.33106406572212
Iteration: 10, Func. Count: 85, Neg. LLF: 101.3310583657343
Iteration: 11, Func. Count: 92, Neg. LLF: 101.33105836573593
Optimization terminated successfully (Exit mode 0)
Current function value: 101.3310583657343
Iterations: 11
Function evaluations: 92
Gradient evaluations: 11
Iteration: 1, Func. Count: 10, Neg. LLF: 110.3860982047043
Iteration: 2, Func. Count: 21, Neg. LLF: 101.5789122111175
Iteration: 3, Func. Count: 30, Neg. LLF: 102.96987101255228
Iteration: 4, Func. Count: 40, Neg. LLF: 102.6444591547379
Iteration: 5, Func. Count: 51, Neg. LLF: 101.34746572601371
Iteration: 6, Func. Count: 60, Neg. LLF: 101.4384253240749
Iteration: 7, Func. Count: 70, Neg. LLF: 101.31163058918735
Iteration: 8, Func. Count: 79, Neg. LLF: 101.3110793482852
Iteration: 9, Func. Count: 88, Neg. LLF: 101.31096074835958
Iteration: 10, Func. Count: 97, Neg. LLF: 101.31095894992274
Iteration: 11, Func. Count: 105, Neg. LLF: 101.31095894992907
Optimization terminated successfully (Exit mode 0)
Current function value: 101.31095894992274
Iterations: 11
Function evaluations: 105
Gradient evaluations: 11
Iteration: 1, Func. Count: 11, Neg. LLF: 110.49855271160949
Iteration: 2, Func. Count: 23, Neg. LLF: 102.11990470021085
Iteration: 3, Func. Count: 33, Neg. LLF: 101.85000353689092
Iteration: 4, Func. Count: 43, Neg. LLF: 101.78483839160987
Iteration: 5, Func. Count: 54, Neg. LLF: 101.53475773613256
Iteration: 6, Func. Count: 65, Neg. LLF: 101.37831187825002
Iteration: 7, Func. Count: 75, Neg. LLF: 101.33230490990258
Iteration: 8, Func. Count: 85, Neg. LLF: 101.31869126720557
Iteration: 9, Func. Count: 95, Neg. LLF: 101.31305341226616
Iteration: 10, Func. Count: 105, Neg. LLF: 101.31103241251121
Iteration: 11, Func. Count: 115, Neg. LLF: 101.31096589010818
Iteration: 12, Func. Count: 125, Neg. LLF: 101.31095952624958
Iteration: 13, Func. Count: 135, Neg. LLF: 101.31095891701841
Optimization terminated successfully (Exit mode 0)
Current function value: 101.31095891701841
Iterations: 13
Function evaluations: 135
Gradient evaluations: 13
Iteration: 1, Func. Count: 12, Neg. LLF: 105.37033152231746
Iteration: 2, Func. Count: 25, Neg. LLF: 103.77121034112626
Iteration: 3, Func. Count: 37, Neg. LLF: 101.63653597986132
Iteration: 4, Func. Count: 48, Neg. LLF: 101.82202680235179
Iteration: 5, Func. Count: 60, Neg. LLF: 101.73985417802999
Iteration: 6, Func. Count: 72, Neg. LLF: 101.49151714495945
Iteration: 7, Func. Count: 84, Neg. LLF: 101.32963870133949
Iteration: 8, Func. Count: 95, Neg. LLF: 101.31656668586847
Iteration: 9, Func. Count: 106, Neg. LLF: 101.31233635631762
Iteration: 10, Func. Count: 117, Neg. LLF: 101.31134617985123
Iteration: 11, Func. Count: 128, Neg. LLF: 101.31097344101262
Iteration: 12, Func. Count: 139, Neg. LLF: 101.3109594260239
Iteration: 13, Func. Count: 149, Neg. LLF: 101.31095944533013
Optimization terminated successfully (Exit mode 0)
Current function value: 101.3109594260239
Iterations: 13
Function evaluations: 149
Gradient evaluations: 13
Iteration: 1, Func. Count: 13, Neg. LLF: 102.21637467094331
Iteration: 2, Func. Count: 26, Neg. LLF: 104.0411586968284
Iteration: 3, Func. Count: 39, Neg. LLF: 101.3847266050763
Iteration: 4, Func. Count: 51, Neg. LLF: 101.53048789367475
Iteration: 5, Func. Count: 64, Neg. LLF: 101.37656663648524
Iteration: 6, Func. Count: 77, Neg. LLF: 101.44233094643997
Iteration: 7, Func. Count: 90, Neg. LLF: 101.32320159684998
Iteration: 8, Func. Count: 103, Neg. LLF: 101.31101535445178
Iteration: 9, Func. Count: 115, Neg. LLF: 101.31096529057992
Iteration: 10, Func. Count: 127, Neg. LLF: 101.31095888507218
Iteration: 11, Func. Count: 138, Neg. LLF: 101.31095890727629
Optimization terminated successfully (Exit mode 0)
Current function value: 101.31095888507218
Iterations: 11
Function evaluations: 138
Gradient evaluations: 11
Iteration: 1, Func. Count: 10, Neg. LLF: 155.89383511713717
Iteration: 2, Func. Count: 21, Neg. LLF: 135.1407427728526
Iteration: 3, Func. Count: 31, Neg. LLF: 101.0499163676701
Iteration: 4, Func. Count: 40, Neg. LLF: 101.08494119193992
Iteration: 5, Func. Count: 50, Neg. LLF: 101.05518034265572
Iteration: 6, Func. Count: 60, Neg. LLF: 102.29167717573685
Iteration: 7, Func. Count: 70, Neg. LLF: 100.93773632340194
Iteration: 8, Func. Count: 79, Neg. LLF: 100.87446995441589
Iteration: 9, Func. Count: 88, Neg. LLF: 100.793848518907
Iteration: 10, Func. Count: 97, Neg. LLF: 100.7836674072605
Iteration: 11, Func. Count: 106, Neg. LLF: 100.783334157409
Iteration: 12, Func. Count: 115, Neg. LLF: 100.78327276911386
Iteration: 13, Func. Count: 123, Neg. LLF: 100.78327277178656
Optimization terminated successfully (Exit mode 0)
Current function value: 100.78327276911386
Iterations: 13
Function evaluations: 123
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 109.76561234749761
Iteration: 2, Func. Count: 23, Neg. LLF: 101.68492289758268
Iteration: 3, Func. Count: 33, Neg. LLF: 103.13341026430291
Iteration: 4, Func. Count: 44, Neg. LLF: 103.64022208756522
Iteration: 5, Func. Count: 55, Neg. LLF: 101.12758891916152
Iteration: 6, Func. Count: 65, Neg. LLF: 101.06351504980591
Iteration: 7, Func. Count: 75, Neg. LLF: 101.12381464867903
Iteration: 8, Func. Count: 86, Neg. LLF: 100.99092372762415
Iteration: 9, Func. Count: 96, Neg. LLF: 100.95017825061754
Iteration: 10, Func. Count: 106, Neg. LLF: 100.91190831480664
Iteration: 11, Func. Count: 116, Neg. LLF: 100.79020824501256
Iteration: 12, Func. Count: 126, Neg. LLF: 100.78471651450873
Iteration: 13, Func. Count: 136, Neg. LLF: 100.78340619080113
Iteration: 14, Func. Count: 146, Neg. LLF: 100.78327269138514
Iteration: 15, Func. Count: 155, Neg. LLF: 100.78327275773754
Optimization terminated successfully (Exit mode 0)
Current function value: 100.78327269138514
Iterations: 15
Function evaluations: 155
Gradient evaluations: 15
Iteration: 1, Func. Count: 12, Neg. LLF: 111.0589809284295
Iteration: 2, Func. Count: 25, Neg. LLF: 102.10184317845467
Iteration: 3, Func. Count: 36, Neg. LLF: 102.0002365868682
Iteration: 4, Func. Count: 47, Neg. LLF: 101.86006368114074
Iteration: 5, Func. Count: 58, Neg. LLF: 101.45894967871286
Iteration: 6, Func. Count: 69, Neg. LLF: 101.1056196948774
Iteration: 7, Func. Count: 80, Neg. LLF: 101.05485527641488
Iteration: 8, Func. Count: 91, Neg. LLF: 101.13963332950381
Iteration: 9, Func. Count: 103, Neg. LLF: 101.03433365211454
Iteration: 10, Func. Count: 115, Neg. LLF: 100.92183603580835
Iteration: 11, Func. Count: 126, Neg. LLF: 100.88125695482617
Iteration: 12, Func. Count: 137, Neg. LLF: 100.81531106217135
Iteration: 13, Func. Count: 148, Neg. LLF: 100.79408022575835
Iteration: 14, Func. Count: 159, Neg. LLF: 100.78342820356096
Iteration: 15, Func. Count: 170, Neg. LLF: 100.78329217093122
Iteration: 16, Func. Count: 181, Neg. LLF: 100.78327251701569
Iteration: 17, Func. Count: 191, Neg. LLF: 100.78327257693377
Optimization terminated successfully (Exit mode 0)
Current function value: 100.78327251701569
Iterations: 17
Function evaluations: 191
Gradient evaluations: 17
Iteration: 1, Func. Count: 13, Neg. LLF: 106.5920181343917
Iteration: 2, Func. Count: 27, Neg. LLF: 102.60193337713739
Iteration: 3, Func. Count: 40, Neg. LLF: 101.22663207072235
Iteration: 4, Func. Count: 52, Neg. LLF: 101.40530337505696
Iteration: 5, Func. Count: 65, Neg. LLF: 100.97692667837568
Iteration: 6, Func. Count: 77, Neg. LLF: 100.95700640091114
Iteration: 7, Func. Count: 89, Neg. LLF: 100.89749781048894
Iteration: 8, Func. Count: 101, Neg. LLF: 100.869684914533
Iteration: 9, Func. Count: 113, Neg. LLF: 100.78656218009478
Iteration: 10, Func. Count: 125, Neg. LLF: 100.78684320422131
Iteration: 11, Func. Count: 138, Neg. LLF: 100.78258896302324
Iteration: 12, Func. Count: 150, Neg. LLF: 100.78454564514915
Iteration: 13, Func. Count: 163, Neg. LLF: 100.78374991460112
Iteration: 14, Func. Count: 176, Neg. LLF: 100.78327303347004
Iteration: 15, Func. Count: 188, Neg. LLF: 100.78327252357093
Optimization terminated successfully (Exit mode 0)
Current function value: 100.78327252357093
Iterations: 16
Function evaluations: 188
Gradient evaluations: 15
Iteration: 1, Func. Count: 14, Neg. LLF: 101.92897735748863
Iteration: 2, Func. Count: 27, Neg. LLF: 101.19570914437352
Iteration: 3, Func. Count: 40, Neg. LLF: 109.24415622846519
Iteration: 4, Func. Count: 54, Neg. LLF: 102.28100000709513
Iteration: 5, Func. Count: 69, Neg. LLF: 100.83181622230022
Iteration: 6, Func. Count: 82, Neg. LLF: 100.78665188470696
Iteration: 7, Func. Count: 95, Neg. LLF: 100.78364294739744
Iteration: 8, Func. Count: 108, Neg. LLF: 100.78328895066689
Iteration: 9, Func. Count: 121, Neg. LLF: 100.78327346248192
Iteration: 10, Func. Count: 134, Neg. LLF: 100.78327252803435
Optimization terminated successfully (Exit mode 0)
Current function value: 100.78327252803435
Iterations: 10
Function evaluations: 134
Gradient evaluations: 10
Iteration: 1, Func. Count: 11, Neg. LLF: 153.4970848946045
Iteration: 2, Func. Count: 23, Neg. LLF: 140.30449154757648
Iteration: 3, Func. Count: 34, Neg. LLF: 101.05448587680709
Iteration: 4, Func. Count: 44, Neg. LLF: 101.10473630432456
Iteration: 5, Func. Count: 55, Neg. LLF: 101.06861134894973
Iteration: 6, Func. Count: 66, Neg. LLF: 102.25047257202256
Iteration: 7, Func. Count: 77, Neg. LLF: 100.93762643420928
Iteration: 8, Func. Count: 87, Neg. LLF: 100.87376605367422
Iteration: 9, Func. Count: 97, Neg. LLF: 100.79375664166864
Iteration: 10, Func. Count: 107, Neg. LLF: 100.78364449038959
Iteration: 11, Func. Count: 117, Neg. LLF: 100.78335274036864
Iteration: 12, Func. Count: 127, Neg. LLF: 100.78327262206258
Iteration: 13, Func. Count: 136, Neg. LLF: 100.78327265033994
Optimization terminated successfully (Exit mode 0)
Current function value: 100.78327262206258
Iterations: 13
Function evaluations: 136
Gradient evaluations: 13
Iteration: 1, Func. Count: 12, Neg. LLF: 137.7266847409153
Iteration: 2, Func. Count: 25, Neg. LLF: 102.04689162061719
Iteration: 3, Func. Count: 36, Neg. LLF: 101.91525481450775
Iteration: 4, Func. Count: 47, Neg. LLF: 103.07211847776185
Iteration: 5, Func. Count: 59, Neg. LLF: 102.35037267390706
Iteration: 6, Func. Count: 71, Neg. LLF: 101.15330004956297
Iteration: 7, Func. Count: 82, Neg. LLF: 101.08294515319034
Iteration: 8, Func. Count: 93, Neg. LLF: 101.03856896987656
Iteration: 9, Func. Count: 104, Neg. LLF: 100.91527396368149
Iteration: 10, Func. Count: 115, Neg. LLF: 100.84818211658137
Iteration: 11, Func. Count: 126, Neg. LLF: 100.78496053059676
Iteration: 12, Func. Count: 137, Neg. LLF: 100.78464245362461
Iteration: 13, Func. Count: 148, Neg. LLF: 100.78362882160883
Iteration: 14, Func. Count: 159, Neg. LLF: 100.78328401853248
Iteration: 15, Func. Count: 170, Neg. LLF: 100.7832799130331
Iteration: 16, Func. Count: 181, Neg. LLF: 100.78326858576746
Iteration: 17, Func. Count: 193, Neg. LLF: 100.78327441842102
Iteration: 18, Func. Count: 204, Neg. LLF: 100.78327259116705
Iteration: 19, Func. Count: 214, Neg. LLF: 100.78327265755689
Optimization terminated successfully (Exit mode 0)
Current function value: 100.78327259116705
Iterations: 20
Function evaluations: 214
Gradient evaluations: 19
Iteration: 1, Func. Count: 13, Neg. LLF: 133.3787393493994
Iteration: 2, Func. Count: 27, Neg. LLF: 102.07194572214424
Iteration: 3, Func. Count: 39, Neg. LLF: 102.02963848890626
Iteration: 4, Func. Count: 51, Neg. LLF: 102.16819845650387
Iteration: 5, Func. Count: 64, Neg. LLF: 102.00275097296584
Iteration: 6, Func. Count: 76, Neg. LLF: 122.06766976994699
Iteration: 7, Func. Count: 89, Neg. LLF: 102.25826945947493
Iteration: 8, Func. Count: 102, Neg. LLF: 102.00723580879814
Iteration: 9, Func. Count: 115, Neg. LLF: 101.94921077911002
Iteration: 10, Func. Count: 127, Neg. LLF: 101.9432005286444
Iteration: 11, Func. Count: 139, Neg. LLF: 101.94321738990405
Iteration: 12, Func. Count: 152, Neg. LLF: 101.94225914663858
Iteration: 13, Func. Count: 164, Neg. LLF: 101.94225575749601
Iteration: 14, Func. Count: 175, Neg. LLF: 101.94225575957469
Optimization terminated successfully (Exit mode 0)
Current function value: 101.94225575749601
Iterations: 14
Function evaluations: 175
Gradient evaluations: 14
Iteration: 1, Func. Count: 14, Neg. LLF: 129.6868062567898
Iteration: 2, Func. Count: 29, Neg. LLF: 102.06335259430399
Iteration: 3, Func. Count: 42, Neg. LLF: 102.09062504306893
Iteration: 4, Func. Count: 56, Neg. LLF: 101.73550077126748
Iteration: 5, Func. Count: 69, Neg. LLF: 101.64910633913563
Iteration: 6, Func. Count: 82, Neg. LLF: 101.32026622650535
Iteration: 7, Func. Count: 95, Neg. LLF: 101.12631893850643
Iteration: 8, Func. Count: 108, Neg. LLF: 101.01629400116545
Iteration: 9, Func. Count: 121, Neg. LLF: 101.02447226303323
Iteration: 10, Func. Count: 135, Neg. LLF: 101.0603933393028
Iteration: 11, Func. Count: 149, Neg. LLF: 100.9469861635322
Iteration: 12, Func. Count: 162, Neg. LLF: 100.9085371717374
Iteration: 13, Func. Count: 175, Neg. LLF: 100.88268551388181
Iteration: 14, Func. Count: 188, Neg. LLF: 100.84150271033243
Iteration: 15, Func. Count: 201, Neg. LLF: 100.81061340515929
Iteration: 16, Func. Count: 214, Neg. LLF: 100.78345035153204
Iteration: 17, Func. Count: 227, Neg. LLF: 100.78327616539708
Iteration: 18, Func. Count: 240, Neg. LLF: 100.78327278911215
Iteration: 19, Func. Count: 252, Neg. LLF: 100.7832728726127
Optimization terminated successfully (Exit mode 0)
Current function value: 100.78327278911215
Iterations: 19
Function evaluations: 252
Gradient evaluations: 19
Iteration: 1, Func. Count: 15, Neg. LLF: 108.68353617524653
Iteration: 2, Func. Count: 31, Neg. LLF: 103.55856586974086
Iteration: 3, Func. Count: 46, Neg. LLF: 103.82852118984545
Iteration: 4, Func. Count: 61, Neg. LLF: 100.94332217478885
Iteration: 5, Func. Count: 75, Neg. LLF: 100.31244153778937
Iteration: 6, Func. Count: 89, Neg. LLF: 101.33124231010211
Iteration: 7, Func. Count: 104, Neg. LLF: 102.44665875622833
Iteration: 8, Func. Count: 119, Neg. LLF: 100.1128383602861
Iteration: 9, Func. Count: 133, Neg. LLF: 101.76216306668132
Iteration: 10, Func. Count: 148, Neg. LLF: 100.13924691187727
Iteration: 11, Func. Count: 163, Neg. LLF: 100.09331291073798
Iteration: 12, Func. Count: 177, Neg. LLF: 100.09308036903953
Iteration: 13, Func. Count: 191, Neg. LLF: 100.09307724599363
Iteration: 14, Func. Count: 204, Neg. LLF: 100.09307718712805
Optimization terminated successfully (Exit mode 0)
Current function value: 100.09307724599363
Iterations: 14
Function evaluations: 204
Gradient evaluations: 14
Iteration: 1, Func. Count: 8, Neg. LLF: 131.29995673669436
Iteration: 2, Func. Count: 17, Neg. LLF: 147.5813479528637
Iteration: 3, Func. Count: 25, Neg. LLF: 102.44484648643841
Iteration: 4, Func. Count: 32, Neg. LLF: 102.22506433884891
Iteration: 5, Func. Count: 39, Neg. LLF: 102.17908776546842
Iteration: 6, Func. Count: 46, Neg. LLF: 102.17244990096751
Iteration: 7, Func. Count: 53, Neg. LLF: 102.17234912167376
Iteration: 8, Func. Count: 59, Neg. LLF: 102.17234914517955
Optimization terminated successfully (Exit mode 0)
Current function value: 102.17234912167376
Iterations: 8
Function evaluations: 59
Gradient evaluations: 8
Iteration: 1, Func. Count: 9, Neg. LLF: 147.34654079039083
Iteration: 2, Func. Count: 19, Neg. LLF: 102.01593754913141
Iteration: 3, Func. Count: 27, Neg. LLF: 102.0125160601619
Iteration: 4, Func. Count: 36, Neg. LLF: 101.98924437736973
Iteration: 5, Func. Count: 44, Neg. LLF: 101.97572778938188
Iteration: 6, Func. Count: 53, Neg. LLF: 101.96467924346018
Iteration: 7, Func. Count: 62, Neg. LLF: 101.94242189339165
Iteration: 8, Func. Count: 70, Neg. LLF: 101.94228184632156
Iteration: 9, Func. Count: 78, Neg. LLF: 101.94225651745721
Iteration: 10, Func. Count: 86, Neg. LLF: 101.94225576646684
Optimization terminated successfully (Exit mode 0)
Current function value: 101.94225576646684
Iterations: 10
Function evaluations: 86
Gradient evaluations: 10
Iteration: 1, Func. Count: 10, Neg. LLF: 141.52650227268285
Iteration: 2, Func. Count: 21, Neg. LLF: 102.03074353477376
Iteration: 3, Func. Count: 30, Neg. LLF: 102.2972055059621
Iteration: 4, Func. Count: 40, Neg. LLF: 102.22621753873096
Iteration: 5, Func. Count: 50, Neg. LLF: 102.09264094879856
Iteration: 6, Func. Count: 60, Neg. LLF: 101.96930090138366
Iteration: 7, Func. Count: 69, Neg. LLF: 101.95628969423917
Iteration: 8, Func. Count: 78, Neg. LLF: 101.9438933327699
Iteration: 9, Func. Count: 87, Neg. LLF: 101.94297177057445
Iteration: 10, Func. Count: 96, Neg. LLF: 101.94244014687419
Iteration: 11, Func. Count: 105, Neg. LLF: 101.9422615484963
Iteration: 12, Func. Count: 114, Neg. LLF: 101.94225598289049
Iteration: 13, Func. Count: 122, Neg. LLF: 101.94225598494268
Optimization terminated successfully (Exit mode 0)
Current function value: 101.94225598289049
Iterations: 13
Function evaluations: 122
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 136.72868284174112
Iteration: 2, Func. Count: 23, Neg. LLF: 102.04998119709698
Iteration: 3, Func. Count: 33, Neg. LLF: 102.060649478875
Iteration: 4, Func. Count: 44, Neg. LLF: 101.99870382384339
Iteration: 5, Func. Count: 54, Neg. LLF: 101.97840138359443
Iteration: 6, Func. Count: 64, Neg. LLF: 101.95935959574221
Iteration: 7, Func. Count: 74, Neg. LLF: 101.94501918722953
Iteration: 8, Func. Count: 84, Neg. LLF: 101.9424592741877
Iteration: 9, Func. Count: 94, Neg. LLF: 101.94227411243695
Iteration: 10, Func. Count: 104, Neg. LLF: 101.94225939992319
Iteration: 11, Func. Count: 114, Neg. LLF: 101.94225580442345
Iteration: 12, Func. Count: 123, Neg. LLF: 101.94225580842063
Optimization terminated successfully (Exit mode 0)
Current function value: 101.94225580442345
Iterations: 12
Function evaluations: 123
Gradient evaluations: 12
Iteration: 1, Func. Count: 12, Neg. LLF: 132.7125651392743
Iteration: 2, Func. Count: 25, Neg. LLF: 102.05969673398761
Iteration: 3, Func. Count: 36, Neg. LLF: 102.02020832989317
Iteration: 4, Func. Count: 47, Neg. LLF: 102.00668203875408
Iteration: 5, Func. Count: 59, Neg. LLF: 101.95870985273957
Iteration: 6, Func. Count: 70, Neg. LLF: 101.94226954100246
Iteration: 7, Func. Count: 81, Neg. LLF: 101.94226774364233
Iteration: 8, Func. Count: 93, Neg. LLF: 101.942260339663
Iteration: 9, Func. Count: 104, Neg. LLF: 101.94225579703473
Optimization terminated successfully (Exit mode 0)
Current function value: 101.94225579097693
Iterations: 9
Function evaluations: 104
Gradient evaluations: 9
Iteration: 1, Func. Count: 9, Neg. LLF: 120.47723940952562
Iteration: 2, Func. Count: 19, Neg. LLF: 140.3529065545735
Iteration: 3, Func. Count: 28, Neg. LLF: 102.25686500928292
Iteration: 4, Func. Count: 36, Neg. LLF: 102.1740939775599
Iteration: 5, Func. Count: 44, Neg. LLF: 102.12896993785832
Iteration: 6, Func. Count: 52, Neg. LLF: 102.12776803090014
Iteration: 7, Func. Count: 60, Neg. LLF: 102.1277078443022
Iteration: 8, Func. Count: 67, Neg. LLF: 102.12770784429401
Optimization terminated successfully (Exit mode 0)
Current function value: 102.1277078443022
Iterations: 8
Function evaluations: 67
Gradient evaluations: 8
Iteration: 1, Func. Count: 10, Neg. LLF: 113.3246778298816
Iteration: 2, Func. Count: 21, Neg. LLF: 102.69780784656237
Iteration: 3, Func. Count: 31, Neg. LLF: 102.02165160073065
Iteration: 4, Func. Count: 40, Neg. LLF: 102.01088436028971
Iteration: 5, Func. Count: 49, Neg. LLF: 102.00378309552532
Iteration: 6, Func. Count: 58, Neg. LLF: 101.98400910384974
Iteration: 7, Func. Count: 67, Neg. LLF: 101.95959240143051
Iteration: 8, Func. Count: 76, Neg. LLF: 101.95383340520384
Iteration: 9, Func. Count: 85, Neg. LLF: 101.94416130092002
Iteration: 10, Func. Count: 94, Neg. LLF: 101.94308346908682
Iteration: 11, Func. Count: 103, Neg. LLF: 101.94227084381333
Iteration: 12, Func. Count: 112, Neg. LLF: 101.94225578210411
Iteration: 13, Func. Count: 120, Neg. LLF: 101.9422557821745
Optimization terminated successfully (Exit mode 0)
Current function value: 101.94225578210411
Iterations: 13
Function evaluations: 120
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 121.07344134003122
Iteration: 2, Func. Count: 23, Neg. LLF: 102.19889468908369
Iteration: 3, Func. Count: 34, Neg. LLF: 102.02914572047115
Iteration: 4, Func. Count: 44, Neg. LLF: 102.06293593457696
Iteration: 5, Func. Count: 55, Neg. LLF: 102.00733983655546
Iteration: 6, Func. Count: 65, Neg. LLF: 101.96981672675668
Iteration: 7, Func. Count: 75, Neg. LLF: 101.97010122208091
Iteration: 8, Func. Count: 86, Neg. LLF: 101.94275151761464
Iteration: 9, Func. Count: 96, Neg. LLF: 101.94228586502281
Iteration: 10, Func. Count: 106, Neg. LLF: 101.94225715391536
Iteration: 11, Func. Count: 116, Neg. LLF: 101.94225576382198
Iteration: 12, Func. Count: 125, Neg. LLF: 101.94225576593352
Optimization terminated successfully (Exit mode 0)
Current function value: 101.94225576382198
Iterations: 12
Function evaluations: 125
Gradient evaluations: 12
Iteration: 1, Func. Count: 12, Neg. LLF: 119.26986699624513
Iteration: 2, Func. Count: 25, Neg. LLF: 102.48544874546164
Iteration: 3, Func. Count: 37, Neg. LLF: 102.0385141085815
Iteration: 4, Func. Count: 48, Neg. LLF: 102.02306131370757
Iteration: 5, Func. Count: 59, Neg. LLF: 101.9948020508499
Iteration: 6, Func. Count: 70, Neg. LLF: 102.06751224484954
Iteration: 7, Func. Count: 82, Neg. LLF: 101.96840931346378
Iteration: 8, Func. Count: 94, Neg. LLF: 101.94438777760868
Iteration: 9, Func. Count: 105, Neg. LLF: 101.94264014904259
Iteration: 10, Func. Count: 116, Neg. LLF: 101.94231921603995
Iteration: 11, Func. Count: 127, Neg. LLF: 101.94225826719057
Iteration: 12, Func. Count: 138, Neg. LLF: 101.94225583401185
Iteration: 13, Func. Count: 148, Neg. LLF: 101.94225583811333
Optimization terminated successfully (Exit mode 0)
Current function value: 101.94225583401185
Iterations: 13
Function evaluations: 148
Gradient evaluations: 13
Iteration: 1, Func. Count: 13, Neg. LLF: 117.93568371442953
Iteration: 2, Func. Count: 27, Neg. LLF: 102.72752007812407
Iteration: 3, Func. Count: 40, Neg. LLF: 102.04246419527345
Iteration: 4, Func. Count: 52, Neg. LLF: 102.02517373080548
Iteration: 5, Func. Count: 64, Neg. LLF: 101.99819431710522
Iteration: 6, Func. Count: 76, Neg. LLF: 102.24021629315126
Iteration: 7, Func. Count: 89, Neg. LLF: 102.01346749829239
Iteration: 8, Func. Count: 102, Neg. LLF: 101.95470086756708
Iteration: 9, Func. Count: 114, Neg. LLF: 101.94646134470835
Iteration: 10, Func. Count: 126, Neg. LLF: 101.95228141525348
Iteration: 11, Func. Count: 139, Neg. LLF: 101.94234789814396
Iteration: 12, Func. Count: 151, Neg. LLF: 101.94225586875906
Iteration: 13, Func. Count: 162, Neg. LLF: 101.94225587492744
Optimization terminated successfully (Exit mode 0)
Current function value: 101.94225586875906
Iterations: 13
Function evaluations: 162
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 138.75345574771683
Iteration: 2, Func. Count: 21, Neg. LLF: 147.41901921249615
Iteration: 3, Func. Count: 31, Neg. LLF: 101.43758856488274
Iteration: 4, Func. Count: 40, Neg. LLF: 101.99571049777857
Iteration: 5, Func. Count: 50, Neg. LLF: 104.48912250514064
Iteration: 6, Func. Count: 61, Neg. LLF: 101.01930455755931
Iteration: 7, Func. Count: 70, Neg. LLF: 102.46211806024061
Iteration: 8, Func. Count: 80, Neg. LLF: 100.90195985086906
Iteration: 9, Func. Count: 89, Neg. LLF: 100.8925578389019
Iteration: 10, Func. Count: 98, Neg. LLF: 100.89224691925783
Iteration: 11, Func. Count: 107, Neg. LLF: 100.89222597310211
Iteration: 12, Func. Count: 116, Neg. LLF: 100.89222076918882
Iteration: 13, Func. Count: 124, Neg. LLF: 100.89222076238305
Optimization terminated successfully (Exit mode 0)
Current function value: 100.89222076918882
Iterations: 13
Function evaluations: 124
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 109.87320933764437
Iteration: 2, Func. Count: 23, Neg. LLF: 101.69967182711437
Iteration: 3, Func. Count: 33, Neg. LLF: 103.17940696125224
Iteration: 4, Func. Count: 44, Neg. LLF: 105.08658549687613
Iteration: 5, Func. Count: 55, Neg. LLF: 101.00162976637354
Iteration: 6, Func. Count: 65, Neg. LLF: 101.10385000959062
Iteration: 7, Func. Count: 76, Neg. LLF: 100.92137759983834
Iteration: 8, Func. Count: 86, Neg. LLF: 100.89348835720072
Iteration: 9, Func. Count: 96, Neg. LLF: 100.89268915100148
Iteration: 10, Func. Count: 106, Neg. LLF: 100.89231923527133
Iteration: 11, Func. Count: 116, Neg. LLF: 100.89222052079442
Iteration: 12, Func. Count: 125, Neg. LLF: 100.89222052801892
Optimization terminated successfully (Exit mode 0)
Current function value: 100.89222052079442
Iterations: 12
Function evaluations: 125
Gradient evaluations: 12
Iteration: 1, Func. Count: 12, Neg. LLF: 111.30184958738316
Iteration: 2, Func. Count: 25, Neg. LLF: 102.1824923017727
Iteration: 3, Func. Count: 37, Neg. LLF: 101.91078476476682
Iteration: 4, Func. Count: 48, Neg. LLF: 101.4762809177188
Iteration: 5, Func. Count: 59, Neg. LLF: 101.3441973321819
Iteration: 6, Func. Count: 70, Neg. LLF: 106.67930828020278
Iteration: 7, Func. Count: 82, Neg. LLF: 101.28110374153322
Iteration: 8, Func. Count: 94, Neg. LLF: 100.9808176483211
Iteration: 9, Func. Count: 105, Neg. LLF: 100.9171543123852
Iteration: 10, Func. Count: 116, Neg. LLF: 100.89412481440691
Iteration: 11, Func. Count: 127, Neg. LLF: 100.89224920661067
Iteration: 12, Func. Count: 138, Neg. LLF: 100.8922212774969
Iteration: 13, Func. Count: 148, Neg. LLF: 100.89222132160751
Optimization terminated successfully (Exit mode 0)
Current function value: 100.8922212774969
Iterations: 13
Function evaluations: 148
Gradient evaluations: 13
Iteration: 1, Func. Count: 13, Neg. LLF: 108.37638995229548
Iteration: 2, Func. Count: 27, Neg. LLF: 103.24464176932452
Iteration: 3, Func. Count: 40, Neg. LLF: 101.74812911749336
Iteration: 4, Func. Count: 52, Neg. LLF: 101.96977084189103
Iteration: 5, Func. Count: 65, Neg. LLF: 101.29710089087985
Iteration: 6, Func. Count: 77, Neg. LLF: 104.5191871535351
Iteration: 7, Func. Count: 90, Neg. LLF: 101.20926503116256
Iteration: 8, Func. Count: 103, Neg. LLF: 101.07332592008734
Iteration: 9, Func. Count: 116, Neg. LLF: 101.23638649015463
Iteration: 10, Func. Count: 129, Neg. LLF: 100.89809839352726
Iteration: 11, Func. Count: 141, Neg. LLF: 100.89201010566309
Iteration: 12, Func. Count: 153, Neg. LLF: 100.8903854922752
Iteration: 13, Func. Count: 165, Neg. LLF: 100.88743657154373
Iteration: 14, Func. Count: 177, Neg. LLF: 100.86413027737635
Iteration: 15, Func. Count: 189, Neg. LLF: 100.851403433354
Iteration: 16, Func. Count: 201, Neg. LLF: 100.83236147773242
Iteration: 17, Func. Count: 213, Neg. LLF: 100.82892747896501
Iteration: 18, Func. Count: 225, Neg. LLF: 100.82781501981916
Iteration: 19, Func. Count: 237, Neg. LLF: 100.82777401267657
Iteration: 20, Func. Count: 249, Neg. LLF: 100.8277689120424
Iteration: 21, Func. Count: 261, Neg. LLF: 100.82778278983918
Iteration: 22, Func. Count: 283, Neg. LLF: 100.82770322891474
Iteration: 23, Func. Count: 305, Neg. LLF: 100.82779350254157
Iteration: 24, Func. Count: 316, Neg. LLF: 100.82779348132169
Optimization terminated successfully (Exit mode 0)
Current function value: 100.82779350254157
Iterations: 24
Function evaluations: 316
Gradient evaluations: 24
Iteration: 1, Func. Count: 14, Neg. LLF: 104.42546876232386
Iteration: 2, Func. Count: 29, Neg. LLF: 111.58423951805487
Iteration: 3, Func. Count: 44, Neg. LLF: 101.55950770207939
Iteration: 4, Func. Count: 57, Neg. LLF: 101.51208516790012
Iteration: 5, Func. Count: 71, Neg. LLF: 101.8511798278275
Iteration: 6, Func. Count: 85, Neg. LLF: 101.11125818466856
Iteration: 7, Func. Count: 98, Neg. LLF: 100.91529781298973
Iteration: 8, Func. Count: 111, Neg. LLF: 100.90851526110897
Iteration: 9, Func. Count: 125, Neg. LLF: 100.89540989181039
Iteration: 10, Func. Count: 139, Neg. LLF: 100.8896504082231
Iteration: 11, Func. Count: 152, Neg. LLF: 100.88035205693424
Iteration: 12, Func. Count: 165, Neg. LLF: 100.84879689009425
Iteration: 13, Func. Count: 178, Neg. LLF: 100.8434513846219
Iteration: 14, Func. Count: 191, Neg. LLF: 100.82870511496118
Iteration: 15, Func. Count: 204, Neg. LLF: 100.82784354043929
Iteration: 16, Func. Count: 217, Neg. LLF: 100.82779648763146
Iteration: 17, Func. Count: 230, Neg. LLF: 100.82779263985873
Iteration: 18, Func. Count: 243, Neg. LLF: 100.82779151171962
Iteration: 19, Func. Count: 257, Neg. LLF: 100.8277924705604
Iteration: 20, Func. Count: 280, Neg. LLF: 100.82779296321695
Iteration: 21, Func. Count: 294, Neg. LLF: 100.82779328058957
Optimization terminated successfully (Exit mode 0)
Current function value: 100.82779328058957
Iterations: 21
Function evaluations: 294
Gradient evaluations: 21
Iteration: 1, Func. Count: 11, Neg. LLF: 141.6932689721183
Iteration: 2, Func. Count: 23, Neg. LLF: 142.24021927059195
Iteration: 3, Func. Count: 34, Neg. LLF: 101.0460977181925
Iteration: 4, Func. Count: 44, Neg. LLF: 101.52328174313584
Iteration: 5, Func. Count: 56, Neg. LLF: 100.99679300646764
Iteration: 6, Func. Count: 67, Neg. LLF: 103.90629427975358
Iteration: 7, Func. Count: 78, Neg. LLF: 100.96489839744008
Iteration: 8, Func. Count: 89, Neg. LLF: 101.08759921854625
Iteration: 9, Func. Count: 100, Neg. LLF: 100.90325183283346
Iteration: 10, Func. Count: 110, Neg. LLF: 100.89558580721346
Iteration: 11, Func. Count: 120, Neg. LLF: 100.88978327930832
Iteration: 12, Func. Count: 130, Neg. LLF: 100.87011918452413
Iteration: 13, Func. Count: 140, Neg. LLF: 100.7929793565821
Iteration: 14, Func. Count: 150, Neg. LLF: 100.78439141618317
Iteration: 15, Func. Count: 160, Neg. LLF: 100.7819899971741
Iteration: 16, Func. Count: 170, Neg. LLF: 100.78182419199426
Iteration: 17, Func. Count: 180, Neg. LLF: 100.78179461722736
Iteration: 18, Func. Count: 190, Neg. LLF: 100.78177985404852
Iteration: 19, Func. Count: 199, Neg. LLF: 100.7817798511819
Optimization terminated successfully (Exit mode 0)
Current function value: 100.78177985404852
Iterations: 19
Function evaluations: 199
Gradient evaluations: 19
Iteration: 1, Func. Count: 12, Neg. LLF: 109.31839099676623
Iteration: 2, Func. Count: 25, Neg. LLF: 101.8311604941785
Iteration: 3, Func. Count: 36, Neg. LLF: 103.07961280981154
Iteration: 4, Func. Count: 48, Neg. LLF: 106.33862767080983
Iteration: 5, Func. Count: 60, Neg. LLF: 101.40157645726647
Iteration: 6, Func. Count: 72, Neg. LLF: 101.02844588820687
Iteration: 7, Func. Count: 83, Neg. LLF: 101.23811106652518
Iteration: 8, Func. Count: 95, Neg. LLF: 101.20870552186737
Iteration: 9, Func. Count: 107, Neg. LLF: 100.96730080521
Iteration: 10, Func. Count: 118, Neg. LLF: 100.94778953322565
Iteration: 11, Func. Count: 129, Neg. LLF: 100.9401855043509
Iteration: 12, Func. Count: 140, Neg. LLF: 100.90998874492038
Iteration: 13, Func. Count: 151, Neg. LLF: 100.89478407549704
Iteration: 14, Func. Count: 162, Neg. LLF: 100.89562254918191
Iteration: 15, Func. Count: 174, Neg. LLF: 100.89194605094151
Iteration: 16, Func. Count: 185, Neg. LLF: 100.89190400938497
Iteration: 17, Func. Count: 196, Neg. LLF: 100.89189822454966
Iteration: 18, Func. Count: 207, Neg. LLF: 100.89189605276725
Iteration: 19, Func. Count: 217, Neg. LLF: 100.89189606132047
Optimization terminated successfully (Exit mode 0)
Current function value: 100.89189605276725
Iterations: 19
Function evaluations: 217
Gradient evaluations: 19
Iteration: 1, Func. Count: 13, Neg. LLF: 111.86758989716455
Iteration: 2, Func. Count: 27, Neg. LLF: 102.14748419602655
Iteration: 3, Func. Count: 40, Neg. LLF: 102.0131593078636
Iteration: 4, Func. Count: 52, Neg. LLF: 102.09648890809676
Iteration: 5, Func. Count: 65, Neg. LLF: 102.04242867712806
Iteration: 6, Func. Count: 78, Neg. LLF: 101.60211090368068
Iteration: 7, Func. Count: 90, Neg. LLF: 101.34731809106387
Iteration: 8, Func. Count: 102, Neg. LLF: 101.50432649061933
Iteration: 9, Func. Count: 115, Neg. LLF: 102.67300775225148
Iteration: 10, Func. Count: 129, Neg. LLF: 100.96799654848715
Iteration: 11, Func. Count: 141, Neg. LLF: 100.97088163703843
Iteration: 12, Func. Count: 154, Neg. LLF: 100.95160127932941
Iteration: 13, Func. Count: 166, Neg. LLF: 100.93985182491465
Iteration: 14, Func. Count: 178, Neg. LLF: 100.91384688017789
Iteration: 15, Func. Count: 190, Neg. LLF: 100.91553876962313
Iteration: 16, Func. Count: 203, Neg. LLF: 100.9008004599078
Iteration: 17, Func. Count: 215, Neg. LLF: 100.88016334406528
Iteration: 18, Func. Count: 227, Neg. LLF: 100.81320214570508
Iteration: 19, Func. Count: 239, Neg. LLF: 100.809273810594
Iteration: 20, Func. Count: 252, Neg. LLF: 100.79321941870508
Iteration: 21, Func. Count: 264, Neg. LLF: 100.78633382824138
Iteration: 22, Func. Count: 276, Neg. LLF: 100.78204224210931
Iteration: 23, Func. Count: 288, Neg. LLF: 100.78178388323344
Iteration: 24, Func. Count: 300, Neg. LLF: 100.78177958381481
Iteration: 25, Func. Count: 312, Neg. LLF: 100.78183185317246
Iteration: 26, Func. Count: 326, Neg. LLF: 100.78178378934311
Iteration: 27, Func. Count: 340, Neg. LLF: 100.7817806558363
Optimization terminated successfully (Exit mode 0)
Current function value: 100.78177959744275
Iterations: 28
Function evaluations: 341
Gradient evaluations: 27
Iteration: 1, Func. Count: 14, Neg. LLF: 107.67126474828605
Iteration: 2, Func. Count: 29, Neg. LLF: 102.8548341828045
Iteration: 3, Func. Count: 43, Neg. LLF: 101.36171199213366
Iteration: 4, Func. Count: 56, Neg. LLF: 101.14832360728268
Iteration: 5, Func. Count: 69, Neg. LLF: 101.39878633834547
Iteration: 6, Func. Count: 83, Neg. LLF: 102.82883314729865
Iteration: 7, Func. Count: 97, Neg. LLF: 101.00390271210786
Iteration: 8, Func. Count: 110, Neg. LLF: 100.96660769266882
Iteration: 9, Func. Count: 123, Neg. LLF: 100.94769941485475
Iteration: 10, Func. Count: 136, Neg. LLF: 100.92171278520934
Iteration: 11, Func. Count: 149, Neg. LLF: 100.91128589454036
Iteration: 12, Func. Count: 162, Neg. LLF: 100.90695973219582
Iteration: 13, Func. Count: 175, Neg. LLF: 100.89164772144608
Iteration: 14, Func. Count: 188, Neg. LLF: 100.83572248934759
Iteration: 15, Func. Count: 201, Neg. LLF: 100.80167116515301
Iteration: 16, Func. Count: 214, Neg. LLF: 100.78702654654967
Iteration: 17, Func. Count: 227, Neg. LLF: 100.78336280713542
Iteration: 18, Func. Count: 240, Neg. LLF: 100.78179225057568
Iteration: 19, Func. Count: 253, Neg. LLF: 100.78176511078172
Iteration: 20, Func. Count: 266, Neg. LLF: 100.78176267325912
Iteration: 21, Func. Count: 279, Neg. LLF: 100.78180713899812
Iteration: 22, Func. Count: 294, Neg. LLF: 100.78178297509298
Iteration: 23, Func. Count: 309, Neg. LLF: 100.7817798912211
Iteration: 24, Func. Count: 321, Neg. LLF: 100.78177997560987
Optimization terminated successfully (Exit mode 0)
Current function value: 100.7817798912211
Iterations: 25
Function evaluations: 321
Gradient evaluations: 24
Iteration: 1, Func. Count: 15, Neg. LLF: 103.49423671992442
Iteration: 2, Func. Count: 30, Neg. LLF: 102.80964607206946
Iteration: 3, Func. Count: 45, Neg. LLF: 101.5332657919508
Iteration: 4, Func. Count: 59, Neg. LLF: 100.89814706613733
Iteration: 5, Func. Count: 73, Neg. LLF: 101.52201722493015
Iteration: 6, Func. Count: 89, Neg. LLF: 100.84835104410293
Iteration: 7, Func. Count: 103, Neg. LLF: 100.81217850301755
Iteration: 8, Func. Count: 117, Neg. LLF: 100.78273031423079
Iteration: 9, Func. Count: 131, Neg. LLF: 100.782202486186
Iteration: 10, Func. Count: 145, Neg. LLF: 100.78194463265257
Iteration: 11, Func. Count: 159, Neg. LLF: 100.78178671859003
Iteration: 12, Func. Count: 173, Neg. LLF: 100.7817800676916
Iteration: 13, Func. Count: 186, Neg. LLF: 100.78178012300015
Optimization terminated successfully (Exit mode 0)
Current function value: 100.7817800676916
Iterations: 13
Function evaluations: 186
Gradient evaluations: 13
Iteration: 1, Func. Count: 12, Neg. LLF: 137.09851223604647
Iteration: 2, Func. Count: 25, Neg. LLF: 148.1794321406288
Iteration: 3, Func. Count: 37, Neg. LLF: 101.05541850162436
Iteration: 4, Func. Count: 48, Neg. LLF: 102.1461202785446
Iteration: 5, Func. Count: 61, Neg. LLF: 102.48344901423428
Iteration: 6, Func. Count: 74, Neg. LLF: 100.92878662755902
Iteration: 7, Func. Count: 85, Neg. LLF: 100.90232881092204
Iteration: 8, Func. Count: 96, Neg. LLF: 101.14537034092227
Iteration: 9, Func. Count: 108, Neg. LLF: 100.87655978608811
Iteration: 10, Func. Count: 119, Neg. LLF: 100.87174561490924
Iteration: 11, Func. Count: 130, Neg. LLF: 100.86921650085534
Iteration: 12, Func. Count: 141, Neg. LLF: 100.86691999684012
Iteration: 13, Func. Count: 152, Neg. LLF: 100.86211696161439
Iteration: 14, Func. Count: 163, Neg. LLF: 100.85525422147359
Iteration: 15, Func. Count: 174, Neg. LLF: 100.79952393049652
Iteration: 16, Func. Count: 185, Neg. LLF: 100.81728206684183
Iteration: 17, Func. Count: 197, Neg. LLF: 100.78404555190187
Iteration: 18, Func. Count: 208, Neg. LLF: 100.76770482818787
Iteration: 19, Func. Count: 219, Neg. LLF: 100.76643201167202
Iteration: 20, Func. Count: 230, Neg. LLF: 100.76632019871077
Iteration: 21, Func. Count: 241, Neg. LLF: 100.76631893611652
Iteration: 22, Func. Count: 251, Neg. LLF: 100.76631890869635
Optimization terminated successfully (Exit mode 0)
Current function value: 100.76631893611652
Iterations: 22
Function evaluations: 251
Gradient evaluations: 22
Iteration: 1, Func. Count: 13, Neg. LLF: 139.36456449355944
Iteration: 2, Func. Count: 27, Neg. LLF: 102.07302426983918
Iteration: 3, Func. Count: 39, Neg. LLF: 102.38754381080152
Iteration: 4, Func. Count: 52, Neg. LLF: 102.09398981487512
Iteration: 5, Func. Count: 65, Neg. LLF: 101.27786164689168
Iteration: 6, Func. Count: 77, Neg. LLF: 101.41070349946774
Iteration: 7, Func. Count: 90, Neg. LLF: 102.04667107717134
Iteration: 8, Func. Count: 103, Neg. LLF: 100.69709195786936
Iteration: 9, Func. Count: 115, Neg. LLF: 100.64868889828003
Iteration: 10, Func. Count: 127, Neg. LLF: 100.63111766197365
Iteration: 11, Func. Count: 139, Neg. LLF: 100.62074035731736
Iteration: 12, Func. Count: 151, Neg. LLF: 100.61984658861041
Iteration: 13, Func. Count: 163, Neg. LLF: 100.61971287806571
Iteration: 14, Func. Count: 175, Neg. LLF: 100.61968261301055
Iteration: 15, Func. Count: 187, Neg. LLF: 100.61968120584704
Iteration: 16, Func. Count: 198, Neg. LLF: 100.61968121888843
Optimization terminated successfully (Exit mode 0)
Current function value: 100.61968120584704
Iterations: 16
Function evaluations: 198
Gradient evaluations: 16
Iteration: 1, Func. Count: 14, Neg. LLF: 134.99397659043453
Iteration: 2, Func. Count: 29, Neg. LLF: 102.0784529069899
Iteration: 3, Func. Count: 42, Neg. LLF: 102.02248284268637
Iteration: 4, Func. Count: 55, Neg. LLF: 102.04462933713582
Iteration: 5, Func. Count: 69, Neg. LLF: 101.98716560259334
Iteration: 6, Func. Count: 82, Neg. LLF: 103.82638819111173
Iteration: 7, Func. Count: 96, Neg. LLF: 101.9670200994067
Iteration: 8, Func. Count: 109, Neg. LLF: 101.95048449438129
Iteration: 9, Func. Count: 122, Neg. LLF: 101.94514093192714
Iteration: 10, Func. Count: 135, Neg. LLF: 101.94245048685175
Iteration: 11, Func. Count: 148, Neg. LLF: 101.94226523816022
Iteration: 12, Func. Count: 161, Neg. LLF: 101.94225597773465
Iteration: 13, Func. Count: 173, Neg. LLF: 101.94225597998252
Optimization terminated successfully (Exit mode 0)
Current function value: 101.94225597773465
Iterations: 13
Function evaluations: 173
Gradient evaluations: 13
Iteration: 1, Func. Count: 15, Neg. LLF: 131.42924818526606
Iteration: 2, Func. Count: 31, Neg. LLF: 102.07893574941194
Iteration: 3, Func. Count: 45, Neg. LLF: 102.21283358947001
Iteration: 4, Func. Count: 60, Neg. LLF: 101.74956782037378
Iteration: 5, Func. Count: 74, Neg. LLF: 101.65344573122833
Iteration: 6, Func. Count: 88, Neg. LLF: 101.32055186657028
Iteration: 7, Func. Count: 102, Neg. LLF: 101.29232018775815
Iteration: 8, Func. Count: 117, Neg. LLF: 101.28593376155368
Iteration: 9, Func. Count: 132, Neg. LLF: 100.82453610107969
Iteration: 10, Func. Count: 146, Neg. LLF: 100.7407694003649
Iteration: 11, Func. Count: 160, Neg. LLF: 101.75664039415595
Iteration: 12, Func. Count: 175, Neg. LLF: 100.56102961840097
Iteration: 13, Func. Count: 189, Neg. LLF: 100.45742867048003
Iteration: 14, Func. Count: 203, Neg. LLF: 100.38662269707329
Iteration: 15, Func. Count: 217, Neg. LLF: 100.3777809347746
Iteration: 16, Func. Count: 231, Neg. LLF: 100.3707583379571
Iteration: 17, Func. Count: 245, Neg. LLF: 100.37073598588469
Iteration: 18, Func. Count: 259, Neg. LLF: 100.37073076584481
Iteration: 19, Func. Count: 272, Neg. LLF: 100.37073074494742
Optimization terminated successfully (Exit mode 0)
Current function value: 100.37073076584481
Iterations: 19
Function evaluations: 272
Gradient evaluations: 19
Iteration: 1, Func. Count: 16, Neg. LLF: 109.55989994995207
Iteration: 2, Func. Count: 33, Neg. LLF: 104.72534015340266
Iteration: 3, Func. Count: 49, Neg. LLF: 103.82120927097431
Iteration: 4, Func. Count: 65, Neg. LLF: 100.87398679504862
Iteration: 5, Func. Count: 80, Neg. LLF: 100.3742555484255
Iteration: 6, Func. Count: 95, Neg. LLF: 102.5146780049609
Iteration: 7, Func. Count: 111, Neg. LLF: 102.63943652981342
Iteration: 8, Func. Count: 127, Neg. LLF: 100.1098770655816
Iteration: 9, Func. Count: 142, Neg. LLF: 101.60027457918693
Iteration: 10, Func. Count: 158, Neg. LLF: 100.10003971808165
Iteration: 11, Func. Count: 173, Neg. LLF: 100.09335647844358
Iteration: 12, Func. Count: 188, Neg. LLF: 100.09312264000191
Iteration: 13, Func. Count: 203, Neg. LLF: 100.09307791137246
Iteration: 14, Func. Count: 218, Neg. LLF: 100.09307723601817
Optimization terminated successfully (Exit mode 0)
Current function value: 100.09307723601817
Iterations: 14
Function evaluations: 218
Gradient evaluations: 14
Iteration: 1, Func. Count: 5, Neg. LLF: 121.82003935919127
Iteration: 2, Func. Count: 11, Neg. LLF: 122.63108382498865
Iteration: 3, Func. Count: 16, Neg. LLF: 103.10229760635467
Iteration: 4, Func. Count: 20, Neg. LLF: 102.37073659278839
Iteration: 5, Func. Count: 24, Neg. LLF: 102.33413970019807
Iteration: 6, Func. Count: 29, Neg. LLF: 102.22240601201456
Iteration: 7, Func. Count: 34, Neg. LLF: 102.12980959979707
Iteration: 8, Func. Count: 38, Neg. LLF: 102.1278118073029
Iteration: 9, Func. Count: 42, Neg. LLF: 102.12770845694067
Iteration: 10, Func. Count: 46, Neg. LLF: 102.12770778493577
Optimization terminated successfully (Exit mode 0)
Current function value: 102.12770778493577
Iterations: 10
Function evaluations: 46
Gradient evaluations: 10
Iteration: 1, Func. Count: 5, Neg. LLF: 123.33665791520295
Iteration: 2, Func. Count: 12, Neg. LLF: 131.5772691449247
Iteration: 3, Func. Count: 17, Neg. LLF: 99.40073023229318
Iteration: 4, Func. Count: 21, Neg. LLF: 99.36145259946065
Iteration: 5, Func. Count: 25, Neg. LLF: 99.32883517837763
Iteration: 6, Func. Count: 29, Neg. LLF: 99.32383328166783
Iteration: 7, Func. Count: 33, Neg. LLF: 99.32382231094661
Iteration: 8, Func. Count: 36, Neg. LLF: 99.3238223109466
Optimization terminated successfully (Exit mode 0)
Current function value: 99.32382231094661
Iterations: 8
Function evaluations: 36
Gradient evaluations: 8
Iteration: 1, Func. Count: 6, Neg. LLF: 181.72939908493046
Iteration: 2, Func. Count: 15, Neg. LLF: 99.06251145332561
Iteration: 3, Func. Count: 21, Neg. LLF: 98.34615809768698
Iteration: 4, Func. Count: 26, Neg. LLF: 2296.1341470001958
Iteration: 5, Func. Count: 33, Neg. LLF: 98.12131561426236
Iteration: 6, Func. Count: 38, Neg. LLF: 98.10816293196537
Iteration: 7, Func. Count: 43, Neg. LLF: 98.10762455795803
Iteration: 8, Func. Count: 48, Neg. LLF: 98.10762102189732
Iteration: 9, Func. Count: 52, Neg. LLF: 98.10762115426361
Optimization terminated successfully (Exit mode 0)
Current function value: 98.10762102189732
Iterations: 9
Function evaluations: 52
Gradient evaluations: 9
Iteration: 1, Func. Count: 7, Neg. LLF: 177.1207219887474
Iteration: 2, Func. Count: 17, Neg. LLF: 99.04681919735738
Iteration: 3, Func. Count: 24, Neg. LLF: 98.28681936171444
Iteration: 4, Func. Count: 30, Neg. LLF: 98.29783050768064
Iteration: 5, Func. Count: 37, Neg. LLF: 98.12571719799855
Iteration: 6, Func. Count: 43, Neg. LLF: 98.12369400326514
Iteration: 7, Func. Count: 49, Neg. LLF: 98.12356934119319
Iteration: 8, Func. Count: 55, Neg. LLF: 98.12298519806217
Iteration: 9, Func. Count: 61, Neg. LLF: 98.1229845527695
Optimization terminated successfully (Exit mode 0)
Current function value: 98.1229845527695
Iterations: 9
Function evaluations: 61
Gradient evaluations: 9
Iteration: 1, Func. Count: 8, Neg. LLF: 176.44580201642955
Iteration: 2, Func. Count: 19, Neg. LLF: 99.19633434839587
Iteration: 3, Func. Count: 27, Neg. LLF: 98.54502449210804
Iteration: 4, Func. Count: 34, Neg. LLF: 98.26083883449598
Iteration: 5, Func. Count: 41, Neg. LLF: 98.17287647520178
Iteration: 6, Func. Count: 48, Neg. LLF: 98.16550236887178
Iteration: 7, Func. Count: 55, Neg. LLF: 98.16382286129594
Iteration: 8, Func. Count: 62, Neg. LLF: 98.15668461365766
Iteration: 9, Func. Count: 69, Neg. LLF: 98.14876291705328
Iteration: 10, Func. Count: 76, Neg. LLF: 98.12472237558534
Iteration: 11, Func. Count: 83, Neg. LLF: 98.12425181047706
Iteration: 12, Func. Count: 90, Neg. LLF: 98.12355535324978
Iteration: 13, Func. Count: 97, Neg. LLF: 98.12089417242791
Iteration: 14, Func. Count: 104, Neg. LLF: 98.11789166439956
Iteration: 15, Func. Count: 111, Neg. LLF: 98.11106712161003
Iteration: 16, Func. Count: 118, Neg. LLF: 98.1086202376312
Iteration: 17, Func. Count: 125, Neg. LLF: 98.10762410153032
Iteration: 18, Func. Count: 132, Neg. LLF: 98.10762332883277
Optimization terminated successfully (Exit mode 0)
Current function value: 98.10762332883277
Iterations: 18
Function evaluations: 132
Gradient evaluations: 18
Iteration: 1, Func. Count: 9, Neg. LLF: 179.41689610409594
Iteration: 2, Func. Count: 22, Neg. LLF: 99.28331086557417
Iteration: 3, Func. Count: 31, Neg. LLF: 98.18872810146067
Iteration: 4, Func. Count: 39, Neg. LLF: 98.16116286356046
Iteration: 5, Func. Count: 47, Neg. LLF: 98.1566130008088
Iteration: 6, Func. Count: 55, Neg. LLF: 98.15569850611645
Iteration: 7, Func. Count: 63, Neg. LLF: 98.15514301648562
Iteration: 8, Func. Count: 71, Neg. LLF: 98.15492837217755
Iteration: 9, Func. Count: 79, Neg. LLF: 98.15489703615918
Iteration: 10, Func. Count: 87, Neg. LLF: 98.15489549619396
Iteration: 11, Func. Count: 94, Neg. LLF: 98.1548954550862
Optimization terminated successfully (Exit mode 0)
Current function value: 98.15489549619396
Iterations: 11
Function evaluations: 94
Gradient evaluations: 11
Iteration: 1, Func. Count: 6, Neg. LLF: 141.16050738550476
Iteration: 2, Func. Count: 14, Neg. LLF: 186.477502817784
Iteration: 3, Func. Count: 20, Neg. LLF: 99.46768331769911
Iteration: 4, Func. Count: 25, Neg. LLF: 99.37782329885295
Iteration: 5, Func. Count: 30, Neg. LLF: 99.3392756824785
Iteration: 6, Func. Count: 35, Neg. LLF: 99.33093925243054
Iteration: 7, Func. Count: 40, Neg. LLF: 99.32393089222411
Iteration: 8, Func. Count: 45, Neg. LLF: 99.32382388996272
Iteration: 9, Func. Count: 50, Neg. LLF: 99.32382229247469
Iteration: 10, Func. Count: 54, Neg. LLF: 99.3238223166045
Optimization terminated successfully (Exit mode 0)
Current function value: 99.32382229247469
Iterations: 10
Function evaluations: 54
Gradient evaluations: 10
Iteration: 1, Func. Count: 7, Neg. LLF: 182.12017146650658
Iteration: 2, Func. Count: 17, Neg. LLF: 99.00809909619025
Iteration: 3, Func. Count: 23, Neg. LLF: 98.25172140780946
Iteration: 4, Func. Count: 29, Neg. LLF: 135.47815604585512
Iteration: 5, Func. Count: 36, Neg. LLF: 98.10949644001319
Iteration: 6, Func. Count: 42, Neg. LLF: 98.10762210546415
Iteration: 7, Func. Count: 48, Neg. LLF: 98.10762101703716
Iteration: 8, Func. Count: 53, Neg. LLF: 98.1076211494037
Optimization terminated successfully (Exit mode 0)
Current function value: 98.10762101703716
Iterations: 8
Function evaluations: 53
Gradient evaluations: 8
Iteration: 1, Func. Count: 8, Neg. LLF: 177.54109537750622
Iteration: 2, Func. Count: 19, Neg. LLF: 98.98713591937803
Iteration: 3, Func. Count: 27, Neg. LLF: 98.3693949762512
Iteration: 4, Func. Count: 34, Neg. LLF: 98.33857797062025
Iteration: 5, Func. Count: 42, Neg. LLF: 98.12595611704636
Iteration: 6, Func. Count: 49, Neg. LLF: 98.12518424055915
Iteration: 7, Func. Count: 56, Neg. LLF: 98.13864809463468
Iteration: 8, Func. Count: 64, Neg. LLF: 98.13830711349709
Iteration: 9, Func. Count: 72, Neg. LLF: 98.13804614237182
Iteration: 10, Func. Count: 80, Neg. LLF: 98.1333801609616
Iteration: 11, Func. Count: 88, Neg. LLF: 98.12370548229231
Iteration: 12, Func. Count: 96, Neg. LLF: 98.12313708056173
Iteration: 13, Func. Count: 103, Neg. LLF: 98.12309047250481
Iteration: 14, Func. Count: 110, Neg. LLF: 98.12298482505639
Iteration: 15, Func. Count: 117, Neg. LLF: 98.12298435118156
Optimization terminated successfully (Exit mode 0)
Current function value: 98.12298435118156
Iterations: 15
Function evaluations: 117
Gradient evaluations: 15
Iteration: 1, Func. Count: 9, Neg. LLF: 176.73550693644472
Iteration: 2, Func. Count: 21, Neg. LLF: 99.12784898608295
Iteration: 3, Func. Count: 30, Neg. LLF: 98.70446925465363
Iteration: 4, Func. Count: 39, Neg. LLF: 98.17674651660214
Iteration: 5, Func. Count: 47, Neg. LLF: 98.16269426545483
Iteration: 6, Func. Count: 55, Neg. LLF: 98.16112479128479
Iteration: 7, Func. Count: 63, Neg. LLF: 98.1584253333993
Iteration: 8, Func. Count: 71, Neg. LLF: 98.14548362740291
Iteration: 9, Func. Count: 79, Neg. LLF: 98.11791716990417
Iteration: 10, Func. Count: 87, Neg. LLF: 98.11701969073185
Iteration: 11, Func. Count: 95, Neg. LLF: 98.10964677931796
Iteration: 12, Func. Count: 103, Neg. LLF: 98.10843432920224
Iteration: 13, Func. Count: 111, Neg. LLF: 98.10780356939846
Iteration: 14, Func. Count: 119, Neg. LLF: 98.10762667601935
Iteration: 15, Func. Count: 127, Neg. LLF: 98.10762101701675
Iteration: 16, Func. Count: 134, Neg. LLF: 98.10762088719243
Optimization terminated successfully (Exit mode 0)
Current function value: 98.10762101701675
Iterations: 16
Function evaluations: 134
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 180.13446007247825
Iteration: 2, Func. Count: 24, Neg. LLF: 99.20627031133833
Iteration: 3, Func. Count: 34, Neg. LLF: 98.18853213578501
Iteration: 4, Func. Count: 43, Neg. LLF: 98.16008743355071
Iteration: 5, Func. Count: 52, Neg. LLF: 98.15639809134636
Iteration: 6, Func. Count: 61, Neg. LLF: 98.15561322561362
Iteration: 7, Func. Count: 70, Neg. LLF: 98.15507354454348
Iteration: 8, Func. Count: 79, Neg. LLF: 98.15491748368594
Iteration: 9, Func. Count: 88, Neg. LLF: 98.15489622047934
Iteration: 10, Func. Count: 97, Neg. LLF: 98.15489549492287
Optimization terminated successfully (Exit mode 0)
Current function value: 98.15489549492287
Iterations: 10
Function evaluations: 97
Gradient evaluations: 10
Iteration: 1, Func. Count: 7, Neg. LLF: 147.32339973765957
Iteration: 2, Func. Count: 16, Neg. LLF: 208.18493505300995
Iteration: 3, Func. Count: 23, Neg. LLF: 99.5408882322982
Iteration: 4, Func. Count: 29, Neg. LLF: 99.3868054731311
Iteration: 5, Func. Count: 35, Neg. LLF: 99.33887053232522
Iteration: 6, Func. Count: 41, Neg. LLF: 99.33117214447309
Iteration: 7, Func. Count: 47, Neg. LLF: 99.32530164120077
Iteration: 8, Func. Count: 53, Neg. LLF: 99.32387860042017
Iteration: 9, Func. Count: 59, Neg. LLF: 99.32382319205486
Iteration: 10, Func. Count: 65, Neg. LLF: 99.3238222901073
Optimization terminated successfully (Exit mode 0)
Current function value: 99.3238222901073
Iterations: 10
Function evaluations: 65
Gradient evaluations: 10
Iteration: 1, Func. Count: 8, Neg. LLF: 182.24110794549287
Iteration: 2, Func. Count: 19, Neg. LLF: 98.99665816400794
Iteration: 3, Func. Count: 26, Neg. LLF: 98.23661548708773
Iteration: 4, Func. Count: 33, Neg. LLF: 133.27672798330357
Iteration: 5, Func. Count: 41, Neg. LLF: 98.109066197405
Iteration: 6, Func. Count: 48, Neg. LLF: 98.10762180334677
Iteration: 7, Func. Count: 55, Neg. LLF: 98.10762101692053
Optimization terminated successfully (Exit mode 0)
Current function value: 98.10762101692053
Iterations: 7
Function evaluations: 55
Gradient evaluations: 7
Iteration: 1, Func. Count: 9, Neg. LLF: 177.5592488309517
Iteration: 2, Func. Count: 21, Neg. LLF: 98.96399722370862
Iteration: 3, Func. Count: 30, Neg. LLF: 98.394385635687
Iteration: 4, Func. Count: 38, Neg. LLF: 98.35115154605819
Iteration: 5, Func. Count: 47, Neg. LLF: 98.12641386281128
Iteration: 6, Func. Count: 55, Neg. LLF: 98.1252588470434
Iteration: 7, Func. Count: 63, Neg. LLF: 98.12367440981723
Iteration: 8, Func. Count: 71, Neg. LLF: 98.13763629810907
Iteration: 9, Func. Count: 80, Neg. LLF: 98.12319339619613
Iteration: 10, Func. Count: 88, Neg. LLF: 98.12300127341767
Iteration: 11, Func. Count: 96, Neg. LLF: 98.12298521440106
Iteration: 12, Func. Count: 104, Neg. LLF: 98.12298429832865
Optimization terminated successfully (Exit mode 0)
Current function value: 98.12298429832865
Iterations: 12
Function evaluations: 104
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 176.82082563713965
Iteration: 2, Func. Count: 23, Neg. LLF: 99.10151161779265
Iteration: 3, Func. Count: 33, Neg. LLF: 98.75715718457631
Iteration: 4, Func. Count: 43, Neg. LLF: 98.17934267817935
Iteration: 5, Func. Count: 52, Neg. LLF: 98.16294649220919
Iteration: 6, Func. Count: 61, Neg. LLF: 98.16131314674178
Iteration: 7, Func. Count: 70, Neg. LLF: 98.15878993751113
Iteration: 8, Func. Count: 79, Neg. LLF: 98.14905841954705
Iteration: 9, Func. Count: 88, Neg. LLF: 98.12069862228337
Iteration: 10, Func. Count: 97, Neg. LLF: 98.12155454885429
Iteration: 11, Func. Count: 107, Neg. LLF: 98.11524722850162
Iteration: 12, Func. Count: 116, Neg. LLF: 98.1115906770082
Iteration: 13, Func. Count: 125, Neg. LLF: 98.10870638235762
Iteration: 14, Func. Count: 134, Neg. LLF: 98.10780064922014
Iteration: 15, Func. Count: 143, Neg. LLF: 98.10762105548147
Iteration: 16, Func. Count: 151, Neg. LLF: 98.1076209255451
Optimization terminated successfully (Exit mode 0)
Current function value: 98.10762105548147
Iterations: 16
Function evaluations: 151
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 179.87137279871803
Iteration: 2, Func. Count: 26, Neg. LLF: 99.17018543687195
Iteration: 3, Func. Count: 37, Neg. LLF: 98.18755288176752
Iteration: 4, Func. Count: 47, Neg. LLF: 98.15916124830052
Iteration: 5, Func. Count: 57, Neg. LLF: 98.15651610409124
Iteration: 6, Func. Count: 67, Neg. LLF: 98.1557662044511
Iteration: 7, Func. Count: 77, Neg. LLF: 98.1549903376797
Iteration: 8, Func. Count: 87, Neg. LLF: 98.15490697333176
Iteration: 9, Func. Count: 97, Neg. LLF: 98.15489550388298
Iteration: 10, Func. Count: 106, Neg. LLF: 98.1548954627806
Optimization terminated successfully (Exit mode 0)
Current function value: 98.15489550388298
Iterations: 10
Function evaluations: 106
Gradient evaluations: 10
Iteration: 1, Func. Count: 8, Neg. LLF: 145.1552935501579
Iteration: 2, Func. Count: 18, Neg. LLF: 212.6268076003197
Iteration: 3, Func. Count: 26, Neg. LLF: 99.73439507327964
Iteration: 4, Func. Count: 34, Neg. LLF: 99.38930167505616
Iteration: 5, Func. Count: 41, Neg. LLF: 99.34207224359915
Iteration: 6, Func. Count: 48, Neg. LLF: 99.33330490005125
Iteration: 7, Func. Count: 55, Neg. LLF: 99.32427152355717
Iteration: 8, Func. Count: 62, Neg. LLF: 99.32383949923158
Iteration: 9, Func. Count: 69, Neg. LLF: 99.32382228792001
Iteration: 10, Func. Count: 75, Neg. LLF: 99.32382232156097
Optimization terminated successfully (Exit mode 0)
Current function value: 99.32382228792001
Iterations: 10
Function evaluations: 75
Gradient evaluations: 10
Iteration: 1, Func. Count: 9, Neg. LLF: 182.30719404823904
Iteration: 2, Func. Count: 21, Neg. LLF: 98.99573226657633
Iteration: 3, Func. Count: 29, Neg. LLF: 98.2274371617934
Iteration: 4, Func. Count: 37, Neg. LLF: 131.16953382665952
Iteration: 5, Func. Count: 46, Neg. LLF: 98.10877085796314
Iteration: 6, Func. Count: 54, Neg. LLF: 98.10762154504663
Iteration: 7, Func. Count: 62, Neg. LLF: 98.10762101691803
Optimization terminated successfully (Exit mode 0)
Current function value: 98.10762101691803
Iterations: 7
Function evaluations: 62
Gradient evaluations: 7
Iteration: 1, Func. Count: 10, Neg. LLF: 177.67554514927028
Iteration: 2, Func. Count: 23, Neg. LLF: 98.96417879802797
Iteration: 3, Func. Count: 33, Neg. LLF: 98.41312633765932
Iteration: 4, Func. Count: 42, Neg. LLF: 98.35716311436109
Iteration: 5, Func. Count: 52, Neg. LLF: 98.12641734277314
Iteration: 6, Func. Count: 61, Neg. LLF: 98.12521591287577
Iteration: 7, Func. Count: 70, Neg. LLF: 98.12357965163994
Iteration: 8, Func. Count: 79, Neg. LLF: 98.13752244166048
Iteration: 9, Func. Count: 89, Neg. LLF: 98.12307881147441
Iteration: 10, Func. Count: 98, Neg. LLF: 98.12298888647089
Iteration: 11, Func. Count: 107, Neg. LLF: 98.12298434655078
Iteration: 12, Func. Count: 115, Neg. LLF: 98.12298427646662
Optimization terminated successfully (Exit mode 0)
Current function value: 98.12298434655078
Iterations: 12
Function evaluations: 115
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 176.85536802660815
Iteration: 2, Func. Count: 25, Neg. LLF: 99.09708796078516
Iteration: 3, Func. Count: 36, Neg. LLF: 98.79433187319978
Iteration: 4, Func. Count: 47, Neg. LLF: 98.18101479880562
Iteration: 5, Func. Count: 57, Neg. LLF: 98.16322523420679
Iteration: 6, Func. Count: 67, Neg. LLF: 98.16150986503212
Iteration: 7, Func. Count: 77, Neg. LLF: 98.15896606310818
Iteration: 8, Func. Count: 87, Neg. LLF: 98.15260110292542
Iteration: 9, Func. Count: 97, Neg. LLF: 98.13526356361503
Iteration: 10, Func. Count: 107, Neg. LLF: 98.11949402554608
Iteration: 11, Func. Count: 117, Neg. LLF: 98.1158699840689
Iteration: 12, Func. Count: 127, Neg. LLF: 98.11387090032085
Iteration: 13, Func. Count: 137, Neg. LLF: 98.108652088857
Iteration: 14, Func. Count: 147, Neg. LLF: 98.10810323166783
Iteration: 15, Func. Count: 157, Neg. LLF: 98.10765616132626
Iteration: 16, Func. Count: 167, Neg. LLF: 98.10762900409107
Iteration: 17, Func. Count: 177, Neg. LLF: 98.10763095092453
Optimization terminated successfully (Exit mode 0)
Current function value: 98.1076286324178
Iterations: 17
Function evaluations: 178
Gradient evaluations: 17
Iteration: 1, Func. Count: 12, Neg. LLF: 179.87533073840183
Iteration: 2, Func. Count: 28, Neg. LLF: 99.16887815627852
Iteration: 3, Func. Count: 40, Neg. LLF: 98.1862624622515
Iteration: 4, Func. Count: 51, Neg. LLF: 98.15827443002968
Iteration: 5, Func. Count: 62, Neg. LLF: 98.15621282921302
Iteration: 6, Func. Count: 73, Neg. LLF: 98.15559795946402
Iteration: 7, Func. Count: 84, Neg. LLF: 98.15496081324184
Iteration: 8, Func. Count: 95, Neg. LLF: 98.15490108859393
Iteration: 9, Func. Count: 106, Neg. LLF: 98.15489557367371
Iteration: 10, Func. Count: 116, Neg. LLF: 98.15489553258305
Optimization terminated successfully (Exit mode 0)
Current function value: 98.15489557367371
Iterations: 10
Function evaluations: 116
Gradient evaluations: 10
Iteration: 1, Func. Count: 5, Neg. LLF: 123.53611227242354
Iteration: 2, Func. Count: 12, Neg. LLF: 108.27008218441415
Iteration: 3, Func. Count: 17, Neg. LLF: 99.85495692233229
Iteration: 4, Func. Count: 21, Neg. LLF: 99.84517347918121
Iteration: 5, Func. Count: 25, Neg. LLF: 99.83973491429128
Iteration: 6, Func. Count: 29, Neg. LLF: 99.83968726951586
Iteration: 7, Func. Count: 33, Neg. LLF: 99.8396431705144
Iteration: 8, Func. Count: 37, Neg. LLF: 99.83963031409561
Iteration: 9, Func. Count: 41, Neg. LLF: 99.83962912353705
Iteration: 10, Func. Count: 44, Neg. LLF: 99.83962929181101
Optimization terminated successfully (Exit mode 0)
Current function value: 99.83962912353705
Iterations: 10
Function evaluations: 44
Gradient evaluations: 10
Iteration: 1, Func. Count: 6, Neg. LLF: 182.20650587185048
Iteration: 2, Func. Count: 15, Neg. LLF: 98.44634558075533
Iteration: 3, Func. Count: 20, Neg. LLF: 98.48933545339831
Iteration: 4, Func. Count: 26, Neg. LLF: 133.62311298968598
Iteration: 5, Func. Count: 32, Neg. LLF: 98.10827246670826
Iteration: 6, Func. Count: 37, Neg. LLF: 98.107702350872
Iteration: 7, Func. Count: 42, Neg. LLF: 98.10762348519702
Iteration: 8, Func. Count: 47, Neg. LLF: 98.10762102404549
Iteration: 9, Func. Count: 51, Neg. LLF: 98.10762115662284
Optimization terminated successfully (Exit mode 0)
Current function value: 98.10762102404549
Iterations: 9
Function evaluations: 51
Gradient evaluations: 9
Iteration: 1, Func. Count: 7, Neg. LLF: 176.26968614365242
Iteration: 2, Func. Count: 17, Neg. LLF: 98.41052074600397
Iteration: 3, Func. Count: 23, Neg. LLF: 98.61541990110294
Iteration: 4, Func. Count: 30, Neg. LLF: 99.79218073865967
Iteration: 5, Func. Count: 37, Neg. LLF: 98.12753816753151
Iteration: 6, Func. Count: 43, Neg. LLF: 98.12750866644573
Iteration: 7, Func. Count: 49, Neg. LLF: 98.12739898180673
Iteration: 8, Func. Count: 55, Neg. LLF: 98.13866772159442
Iteration: 9, Func. Count: 62, Neg. LLF: 98.1384476857297
Iteration: 10, Func. Count: 69, Neg. LLF: 98.13837817306651
Iteration: 11, Func. Count: 76, Neg. LLF: 98.13795013060138
Iteration: 12, Func. Count: 83, Neg. LLF: 111.2937839328727
Iteration: 13, Func. Count: 92, Neg. LLF: 98.12847770506215
Iteration: 14, Func. Count: 99, Neg. LLF: 98.12510628322032
Iteration: 15, Func. Count: 105, Neg. LLF: 98.13698497338754
Iteration: 16, Func. Count: 112, Neg. LLF: 98.13695408464525
Iteration: 17, Func. Count: 119, Neg. LLF: 98.13693967464873
Iteration: 18, Func. Count: 126, Neg. LLF: 98.13693952372509
Iteration: 19, Func. Count: 133, Neg. LLF: 98.12358084572344
Iteration: 20, Func. Count: 140, Neg. LLF: 98.1229871278849
Iteration: 21, Func. Count: 146, Neg. LLF: 98.12298433242661
Iteration: 22, Func. Count: 151, Neg. LLF: 98.12298426257473
Optimization terminated successfully (Exit mode 0)
Current function value: 98.12298433242661
Iterations: 23
Function evaluations: 151
Gradient evaluations: 22
Iteration: 1, Func. Count: 8, Neg. LLF: 172.64403543190485
Iteration: 2, Func. Count: 19, Neg. LLF: 98.58880990292668
Iteration: 3, Func. Count: 26, Neg. LLF: 98.64774571031957
Iteration: 4, Func. Count: 34, Neg. LLF: 98.4140830056517
Iteration: 5, Func. Count: 42, Neg. LLF: 98.16051353606618
Iteration: 6, Func. Count: 49, Neg. LLF: 98.15702771634996
Iteration: 7, Func. Count: 56, Neg. LLF: 98.14229932463569
Iteration: 8, Func. Count: 63, Neg. LLF: 98.11650862597097
Iteration: 9, Func. Count: 70, Neg. LLF: 98.10982328879751
Iteration: 10, Func. Count: 77, Neg. LLF: 98.1271745301166
Iteration: 11, Func. Count: 86, Neg. LLF: 98.15690219282553
Iteration: 12, Func. Count: 103, Neg. LLF: 98.11292570766221
Iteration: 13, Func. Count: 110, Neg. LLF: 98.1053472128785
Iteration: 14, Func. Count: 117, Neg. LLF: 98.12046612528762
Iteration: 15, Func. Count: 125, Neg. LLF: 98.22738132045582
Iteration: 16, Func. Count: 135, Neg. LLF: 98.55241701650861
Iteration: 17, Func. Count: 145, Neg. LLF: 98.19583906864757
Iteration: 18, Func. Count: 154, Neg. LLF: 98.10762101730613
Iteration: 19, Func. Count: 160, Neg. LLF: 98.1076208874985
Optimization terminated successfully (Exit mode 0)
Current function value: 98.10762101730613
Iterations: 20
Function evaluations: 160
Gradient evaluations: 19
Iteration: 1, Func. Count: 9, Neg. LLF: 177.8627451602949
Iteration: 2, Func. Count: 21, Neg. LLF: 98.70234336815581
Iteration: 3, Func. Count: 29, Neg. LLF: 98.63854625380898
Iteration: 4, Func. Count: 38, Neg. LLF: 98.22769876210182
Iteration: 5, Func. Count: 47, Neg. LLF: 98.16102233331614
Iteration: 6, Func. Count: 55, Neg. LLF: 98.15657008026841
Iteration: 7, Func. Count: 63, Neg. LLF: 98.15503274769361
Iteration: 8, Func. Count: 71, Neg. LLF: 98.15491624410535
Iteration: 9, Func. Count: 79, Neg. LLF: 98.15489951010692
Iteration: 10, Func. Count: 87, Neg. LLF: 98.15489656246467
Iteration: 11, Func. Count: 95, Neg. LLF: 98.15489552562927
Iteration: 12, Func. Count: 102, Neg. LLF: 98.15489548448271
Optimization terminated successfully (Exit mode 0)
Current function value: 98.15489552562927
Iterations: 12
Function evaluations: 102
Gradient evaluations: 12
Iteration: 1, Func. Count: 6, Neg. LLF: 123.78445180594568
Iteration: 2, Func. Count: 14, Neg. LLF: 134.3409839904057
Iteration: 3, Func. Count: 20, Neg. LLF: 99.39421008614903
Iteration: 4, Func. Count: 25, Neg. LLF: 99.34752074005893
Iteration: 5, Func. Count: 30, Neg. LLF: 99.33049201783135
Iteration: 6, Func. Count: 35, Neg. LLF: 99.33145420233434
Iteration: 7, Func. Count: 41, Neg. LLF: 99.32388639822541
Iteration: 8, Func. Count: 46, Neg. LLF: 99.3238224595806
Iteration: 9, Func. Count: 50, Neg. LLF: 99.3238224595813
Optimization terminated successfully (Exit mode 0)
Current function value: 99.3238224595806
Iterations: 9
Function evaluations: 50
Gradient evaluations: 9
Iteration: 1, Func. Count: 7, Neg. LLF: 185.520683308012
Iteration: 2, Func. Count: 17, Neg. LLF: 98.62201611975995
Iteration: 3, Func. Count: 23, Neg. LLF: 101.91565849116706
Iteration: 4, Func. Count: 30, Neg. LLF: 109.45181497421859
Iteration: 5, Func. Count: 37, Neg. LLF: 98.14730574688997
Iteration: 6, Func. Count: 43, Neg. LLF: 98.11022879097243
Iteration: 7, Func. Count: 49, Neg. LLF: 98.10766466265582
Iteration: 8, Func. Count: 55, Neg. LLF: 98.10762231952012
Iteration: 9, Func. Count: 61, Neg. LLF: 98.10762102109638
Iteration: 10, Func. Count: 66, Neg. LLF: 98.10762115357097
Optimization terminated successfully (Exit mode 0)
Current function value: 98.10762102109638
Iterations: 10
Function evaluations: 66
Gradient evaluations: 10
Iteration: 1, Func. Count: 8, Neg. LLF: 178.16653647048466
Iteration: 2, Func. Count: 19, Neg. LLF: 98.54141279699743
Iteration: 3, Func. Count: 26, Neg. LLF: 99.56732703002808
Iteration: 4, Func. Count: 34, Neg. LLF: 101.0192689673017
Iteration: 5, Func. Count: 42, Neg. LLF: 98.12696826378527
Iteration: 6, Func. Count: 49, Neg. LLF: 98.12650924934621
Iteration: 7, Func. Count: 56, Neg. LLF: 98.1261161108343
Iteration: 8, Func. Count: 63, Neg. LLF: 98.12508514936859
Iteration: 9, Func. Count: 70, Neg. LLF: 98.1260157153384
Iteration: 10, Func. Count: 78, Neg. LLF: 98.11874436336213
Iteration: 11, Func. Count: 85, Neg. LLF: 98.11501890949593
Iteration: 12, Func. Count: 92, Neg. LLF: 98.1076791081258
Iteration: 13, Func. Count: 99, Neg. LLF: 98.10762116891966
Iteration: 14, Func. Count: 105, Neg. LLF: 98.10762103652523
Optimization terminated successfully (Exit mode 0)
Current function value: 98.10762116891966
Iterations: 14
Function evaluations: 105
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 173.68867624711223
Iteration: 2, Func. Count: 21, Neg. LLF: 98.75383020878363
Iteration: 3, Func. Count: 29, Neg. LLF: 99.05838640750572
Iteration: 4, Func. Count: 38, Neg. LLF: 101.13831531268889
Iteration: 5, Func. Count: 47, Neg. LLF: 98.4513097429119
Iteration: 6, Func. Count: 56, Neg. LLF: 97.6879532198812
Iteration: 7, Func. Count: 64, Neg. LLF: 97.35176978015701
Iteration: 8, Func. Count: 72, Neg. LLF: 96.851445925421
Iteration: 9, Func. Count: 80, Neg. LLF: 96.5358879053334
Iteration: 10, Func. Count: 88, Neg. LLF: 96.32572323514752
Iteration: 11, Func. Count: 96, Neg. LLF: 96.28468173746725
Iteration: 12, Func. Count: 104, Neg. LLF: 96.28003929808874
Iteration: 13, Func. Count: 112, Neg. LLF: 96.27854293500354
Iteration: 14, Func. Count: 120, Neg. LLF: 96.27798153355802
Iteration: 15, Func. Count: 128, Neg. LLF: 96.277898611512
Iteration: 16, Func. Count: 136, Neg. LLF: 96.27788935161529
Iteration: 17, Func. Count: 144, Neg. LLF: 96.27798060844196
Optimization terminated successfully (Exit mode 0)
Current function value: 96.27788917782296
Iterations: 18
Function evaluations: 146
Gradient evaluations: 17
Iteration: 1, Func. Count: 10, Neg. LLF: 177.92527549365343
Iteration: 2, Func. Count: 24, Neg. LLF: 98.83773715670289
Iteration: 3, Func. Count: 34, Neg. LLF: 98.20705468317149
Iteration: 4, Func. Count: 43, Neg. LLF: 98.15685820705156
Iteration: 5, Func. Count: 52, Neg. LLF: 98.15565113202818
Iteration: 6, Func. Count: 61, Neg. LLF: 98.15526572237479
Iteration: 7, Func. Count: 70, Neg. LLF: 98.15496030250625
Iteration: 8, Func. Count: 79, Neg. LLF: 98.15489775712297
Iteration: 9, Func. Count: 88, Neg. LLF: 98.1548955036351
Iteration: 10, Func. Count: 96, Neg. LLF: 98.1548954625403
Optimization terminated successfully (Exit mode 0)
Current function value: 98.1548955036351
Iterations: 10
Function evaluations: 96
Gradient evaluations: 10
Iteration: 1, Func. Count: 7, Neg. LLF: 141.87211885174938
Iteration: 2, Func. Count: 16, Neg. LLF: 183.77003328627987
Iteration: 3, Func. Count: 23, Neg. LLF: 99.4141740017665
Iteration: 4, Func. Count: 29, Neg. LLF: 99.37708457314568
Iteration: 5, Func. Count: 35, Neg. LLF: 99.33648756063343
Iteration: 6, Func. Count: 41, Neg. LLF: 99.3294455465236
Iteration: 7, Func. Count: 47, Neg. LLF: 99.32386786950597
Iteration: 8, Func. Count: 53, Neg. LLF: 99.32382293596088
Iteration: 9, Func. Count: 59, Neg. LLF: 99.32382230952861
Optimization terminated successfully (Exit mode 0)
Current function value: 99.32382230952861
Iterations: 9
Function evaluations: 59
Gradient evaluations: 9
Iteration: 1, Func. Count: 8, Neg. LLF: 185.77744766052845
Iteration: 2, Func. Count: 19, Neg. LLF: 98.59362489615812
Iteration: 3, Func. Count: 26, Neg. LLF: 100.8744953276891
Iteration: 4, Func. Count: 34, Neg. LLF: 105.17883649401759
Iteration: 5, Func. Count: 42, Neg. LLF: 98.13444156854084
Iteration: 6, Func. Count: 49, Neg. LLF: 98.10910443056908
Iteration: 7, Func. Count: 56, Neg. LLF: 98.1076416067122
Iteration: 8, Func. Count: 63, Neg. LLF: 98.10762175583916
Iteration: 9, Func. Count: 70, Neg. LLF: 98.1076210172021
Optimization terminated successfully (Exit mode 0)
Current function value: 98.1076210172021
Iterations: 9
Function evaluations: 70
Gradient evaluations: 9
Iteration: 1, Func. Count: 9, Neg. LLF: 178.49159314681543
Iteration: 2, Func. Count: 21, Neg. LLF: 98.50981955932077
Iteration: 3, Func. Count: 29, Neg. LLF: 100.01983644458595
Iteration: 4, Func. Count: 38, Neg. LLF: 99.56829268031133
Iteration: 5, Func. Count: 47, Neg. LLF: 98.12668405293392
Iteration: 6, Func. Count: 55, Neg. LLF: 98.12587210984157
Iteration: 7, Func. Count: 63, Neg. LLF: 98.12517813922899
Iteration: 8, Func. Count: 71, Neg. LLF: 98.12379362384097
Iteration: 9, Func. Count: 79, Neg. LLF: 98.11677564640132
Iteration: 10, Func. Count: 87, Neg. LLF: 98.11284375972859
Iteration: 11, Func. Count: 95, Neg. LLF: 98.10763771569852
Iteration: 12, Func. Count: 103, Neg. LLF: 98.10762105078297
Iteration: 13, Func. Count: 110, Neg. LLF: 98.10762091882712
Optimization terminated successfully (Exit mode 0)
Current function value: 98.10762105078297
Iterations: 13
Function evaluations: 110
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 173.90383830588533
Iteration: 2, Func. Count: 23, Neg. LLF: 98.70732486253499
Iteration: 3, Func. Count: 32, Neg. LLF: 99.23340053626747
Iteration: 4, Func. Count: 42, Neg. LLF: 98.6187270933541
Iteration: 5, Func. Count: 52, Neg. LLF: 98.1584411749693
Iteration: 6, Func. Count: 61, Neg. LLF: 98.1558586266387
Iteration: 7, Func. Count: 70, Neg. LLF: 98.14136464815216
Iteration: 8, Func. Count: 79, Neg. LLF: 98.12192265839921
Iteration: 9, Func. Count: 88, Neg. LLF: 98.11766901524234
Iteration: 10, Func. Count: 97, Neg. LLF: 98.11256752943171
Iteration: 11, Func. Count: 106, Neg. LLF: 98.1106713236825
Iteration: 12, Func. Count: 115, Neg. LLF: 98.10767899039034
Iteration: 13, Func. Count: 124, Neg. LLF: 98.10762946429173
Iteration: 14, Func. Count: 133, Neg. LLF: 98.10762903660064
Iteration: 15, Func. Count: 143, Neg. LLF: 98.10762146562726
Iteration: 16, Func. Count: 152, Neg. LLF: 99.2021267766823
Optimization terminated successfully (Exit mode 0)
Current function value: 98.10762101744692
Iterations: 17
Function evaluations: 156
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 178.55912830355823
Iteration: 2, Func. Count: 26, Neg. LLF: 98.78208872107913
Iteration: 3, Func. Count: 37, Neg. LLF: 98.20945002930499
Iteration: 4, Func. Count: 47, Neg. LLF: 98.15675330527566
Iteration: 5, Func. Count: 57, Neg. LLF: 98.1556038201468
Iteration: 6, Func. Count: 67, Neg. LLF: 98.15524055966047
Iteration: 7, Func. Count: 77, Neg. LLF: 98.15494918917851
Iteration: 8, Func. Count: 87, Neg. LLF: 98.15489725760487
Iteration: 9, Func. Count: 97, Neg. LLF: 98.15489550035721
Iteration: 10, Func. Count: 106, Neg. LLF: 98.15489545926168
Optimization terminated successfully (Exit mode 0)
Current function value: 98.15489550035721
Iterations: 10
Function evaluations: 106
Gradient evaluations: 10
Iteration: 1, Func. Count: 8, Neg. LLF: 148.15630369127112
Iteration: 2, Func. Count: 18, Neg. LLF: 204.65127843608457
Iteration: 3, Func. Count: 26, Neg. LLF: 99.44608871659925
Iteration: 4, Func. Count: 33, Neg. LLF: 99.39132449706622
Iteration: 5, Func. Count: 40, Neg. LLF: 99.33460809147039
Iteration: 6, Func. Count: 47, Neg. LLF: 99.32952231723564
Iteration: 7, Func. Count: 54, Neg. LLF: 99.32384726436155
Iteration: 8, Func. Count: 61, Neg. LLF: 99.3238223985789
Iteration: 9, Func. Count: 67, Neg. LLF: 99.32382240885563
Optimization terminated successfully (Exit mode 0)
Current function value: 99.3238223985789
Iterations: 9
Function evaluations: 67
Gradient evaluations: 9
Iteration: 1, Func. Count: 9, Neg. LLF: 185.86076768809536
Iteration: 2, Func. Count: 21, Neg. LLF: 98.58556664811778
Iteration: 3, Func. Count: 29, Neg. LLF: 100.80996881856574
Iteration: 4, Func. Count: 38, Neg. LLF: 103.5414961751845
Iteration: 5, Func. Count: 47, Neg. LLF: 98.13001918959
Iteration: 6, Func. Count: 55, Neg. LLF: 98.10875749845705
Iteration: 7, Func. Count: 63, Neg. LLF: 98.10763625969781
Iteration: 8, Func. Count: 71, Neg. LLF: 98.10762157337835
Iteration: 9, Func. Count: 79, Neg. LLF: 98.10762101693238
Optimization terminated successfully (Exit mode 0)
Current function value: 98.10762101693238
Iterations: 9
Function evaluations: 79
Gradient evaluations: 9
Iteration: 1, Func. Count: 10, Neg. LLF: 178.48069949012336
Iteration: 2, Func. Count: 23, Neg. LLF: 98.4958327865885
Iteration: 3, Func. Count: 32, Neg. LLF: 100.05183385262453
Iteration: 4, Func. Count: 42, Neg. LLF: 99.19967642746947
Iteration: 5, Func. Count: 52, Neg. LLF: 98.12650525791643
Iteration: 6, Func. Count: 61, Neg. LLF: 98.12572453445111
Iteration: 7, Func. Count: 70, Neg. LLF: 98.12502002572148
Iteration: 8, Func. Count: 79, Neg. LLF: 98.1189300246279
Iteration: 9, Func. Count: 88, Neg. LLF: 98.11281938240522
Iteration: 10, Func. Count: 97, Neg. LLF: 98.11088858932925
Iteration: 11, Func. Count: 106, Neg. LLF: 98.10824636687003
Iteration: 12, Func. Count: 115, Neg. LLF: 98.10762516054508
Iteration: 13, Func. Count: 124, Neg. LLF: 98.10762104315667
Iteration: 14, Func. Count: 132, Neg. LLF: 98.10762091136341
Optimization terminated successfully (Exit mode 0)
Current function value: 98.10762104315667
Iterations: 14
Function evaluations: 132
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 173.96027560156423
Iteration: 2, Func. Count: 26, Neg. LLF: 98.6552990194221
Iteration: 3, Func. Count: 36, Neg. LLF: 98.2984497390257
Iteration: 4, Func. Count: 46, Neg. LLF: 98.17217949801004
Iteration: 5, Func. Count: 56, Neg. LLF: 98.1685555141514
Iteration: 6, Func. Count: 66, Neg. LLF: 98.16388718928233
Iteration: 7, Func. Count: 76, Neg. LLF: 98.1604191006611
Iteration: 8, Func. Count: 86, Neg. LLF: 98.14010267582698
Iteration: 9, Func. Count: 96, Neg. LLF: 98.12157334606364
Iteration: 10, Func. Count: 106, Neg. LLF: 98.12299453084337
Iteration: 11, Func. Count: 118, Neg. LLF: 98.11798587035645
Iteration: 12, Func. Count: 138, Neg. LLF: 98.12087072602861
Iteration: 13, Func. Count: 148, Neg. LLF: 98.11483840687158
Iteration: 14, Func. Count: 159, Neg. LLF: 98.114839728516
Iteration: 15, Func. Count: 169, Neg. LLF: 98.10871382257656
Iteration: 16, Func. Count: 179, Neg. LLF: 98.10780471209226
Iteration: 17, Func. Count: 189, Neg. LLF: 125.81099409113705
Iteration: 18, Func. Count: 203, Neg. LLF: 98.11647470480976
Iteration: 19, Func. Count: 214, Neg. LLF: 98.1076210168458
Iteration: 20, Func. Count: 223, Neg. LLF: 98.10762088704834
Optimization terminated successfully (Exit mode 0)
Current function value: 98.1076210168458
Iterations: 21
Function evaluations: 223
Gradient evaluations: 20
Iteration: 1, Func. Count: 12, Neg. LLF: 178.28365608222475
Iteration: 2, Func. Count: 28, Neg. LLF: 98.75454558612482
Iteration: 3, Func. Count: 39, Neg. LLF: 98.1967520486277
Iteration: 4, Func. Count: 50, Neg. LLF: 98.16693595400216
Iteration: 5, Func. Count: 61, Neg. LLF: 98.15655834334643
Iteration: 6, Func. Count: 72, Neg. LLF: 98.1559547709996
Iteration: 7, Func. Count: 83, Neg. LLF: 98.15530642472646
Iteration: 8, Func. Count: 94, Neg. LLF: 98.15493901254251
Iteration: 9, Func. Count: 105, Neg. LLF: 98.15489639768982
Iteration: 10, Func. Count: 116, Neg. LLF: 98.1548954987094
Optimization terminated successfully (Exit mode 0)
Current function value: 98.1548954987094
Iterations: 10
Function evaluations: 116
Gradient evaluations: 10
Iteration: 1, Func. Count: 9, Neg. LLF: 134.62771262277894
Iteration: 2, Func. Count: 19, Neg. LLF: 157.12791597031074
Iteration: 3, Func. Count: 28, Neg. LLF: 100.02657891864409
Iteration: 4, Func. Count: 36, Neg. LLF: 99.84934122957138
Iteration: 5, Func. Count: 44, Neg. LLF: 99.55118858799514
Iteration: 6, Func. Count: 52, Neg. LLF: 99.56244250664328
Iteration: 7, Func. Count: 61, Neg. LLF: 99.3514972467354
Iteration: 8, Func. Count: 69, Neg. LLF: 99.33291002828382
Iteration: 9, Func. Count: 77, Neg. LLF: 99.32400606332001
Iteration: 10, Func. Count: 85, Neg. LLF: 99.32384263249853
Iteration: 11, Func. Count: 93, Neg. LLF: 99.3238223888023
Iteration: 12, Func. Count: 100, Neg. LLF: 99.3238224224405
Optimization terminated successfully (Exit mode 0)
Current function value: 99.3238223888023
Iterations: 12
Function evaluations: 100
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 185.90725075563353
Iteration: 2, Func. Count: 23, Neg. LLF: 98.58250977904507
Iteration: 3, Func. Count: 32, Neg. LLF: 100.97961962208068
Iteration: 4, Func. Count: 42, Neg. LLF: 102.6619530488732
Iteration: 5, Func. Count: 52, Neg. LLF: 98.12778993621748
Iteration: 6, Func. Count: 61, Neg. LLF: 98.10859326089766
Iteration: 7, Func. Count: 70, Neg. LLF: 98.10763408265133
Iteration: 8, Func. Count: 79, Neg. LLF: 98.10762148094709
Iteration: 9, Func. Count: 87, Neg. LLF: 98.10762161390333
Optimization terminated successfully (Exit mode 0)
Current function value: 98.10762148094709
Iterations: 9
Function evaluations: 87
Gradient evaluations: 9
Iteration: 1, Func. Count: 11, Neg. LLF: 178.58182959132552
Iteration: 2, Func. Count: 25, Neg. LLF: 98.49632388160182
Iteration: 3, Func. Count: 35, Neg. LLF: 100.18116535200981
Iteration: 4, Func. Count: 46, Neg. LLF: 98.98266375536504
Iteration: 5, Func. Count: 57, Neg. LLF: 98.12660501547066
Iteration: 6, Func. Count: 67, Neg. LLF: 98.1258363349402
Iteration: 7, Func. Count: 77, Neg. LLF: 98.1251908696896
Iteration: 8, Func. Count: 87, Neg. LLF: 98.12015387290145
Iteration: 9, Func. Count: 97, Neg. LLF: 98.11135336372914
Iteration: 10, Func. Count: 107, Neg. LLF: 98.1103818707758
Iteration: 11, Func. Count: 117, Neg. LLF: 98.10856032124772
Iteration: 12, Func. Count: 127, Neg. LLF: 98.1076222549275
Iteration: 13, Func. Count: 137, Neg. LLF: 98.10762136193169
Optimization terminated successfully (Exit mode 0)
Current function value: 98.10762136193169
Iterations: 13
Function evaluations: 137
Gradient evaluations: 13
Iteration: 1, Func. Count: 12, Neg. LLF: 173.98054303550308
Iteration: 2, Func. Count: 28, Neg. LLF: 98.65193132074387
Iteration: 3, Func. Count: 39, Neg. LLF: 98.30011534536456
Iteration: 4, Func. Count: 50, Neg. LLF: 98.17133211137278
Iteration: 5, Func. Count: 61, Neg. LLF: 98.16843963960596
Iteration: 6, Func. Count: 72, Neg. LLF: 98.16354257930062
Iteration: 7, Func. Count: 83, Neg. LLF: 98.16001057483342
Iteration: 8, Func. Count: 94, Neg. LLF: 98.13994955376569
Iteration: 9, Func. Count: 105, Neg. LLF: 98.12145459749604
Iteration: 10, Func. Count: 116, Neg. LLF: 98.12129735615812
Iteration: 11, Func. Count: 127, Neg. LLF: 98.12024447246391
Iteration: 12, Func. Count: 138, Neg. LLF: 98.10249029957974
Iteration: 13, Func. Count: 149, Neg. LLF: 98.15670889410981
Iteration: 14, Func. Count: 161, Neg. LLF: 99.23591206314144
Iteration: 15, Func. Count: 174, Neg. LLF: 109.87347628737942
Iteration: 16, Func. Count: 187, Neg. LLF: 98.10762218063378
Iteration: 17, Func. Count: 198, Neg. LLF: 98.10762102357987
Iteration: 18, Func. Count: 208, Neg. LLF: 98.10762089396965
Optimization terminated successfully (Exit mode 0)
Current function value: 98.10762102357987
Iterations: 19
Function evaluations: 208
Gradient evaluations: 18
Iteration: 1, Func. Count: 13, Neg. LLF: 178.28674479652707
Iteration: 2, Func. Count: 30, Neg. LLF: 98.75317254402547
Iteration: 3, Func. Count: 42, Neg. LLF: 98.19713695026893
Iteration: 4, Func. Count: 54, Neg. LLF: 98.16566024372209
Iteration: 5, Func. Count: 66, Neg. LLF: 98.15629789972532
Iteration: 6, Func. Count: 78, Neg. LLF: 98.1557630442733
Iteration: 7, Func. Count: 90, Neg. LLF: 98.15530894927156
Iteration: 8, Func. Count: 102, Neg. LLF: 98.15492846382165
Iteration: 9, Func. Count: 114, Neg. LLF: 98.154896164768
Iteration: 10, Func. Count: 126, Neg. LLF: 98.15489549731444
Optimization terminated successfully (Exit mode 0)
Current function value: 98.15489549731444
Iterations: 10
Function evaluations: 126
Gradient evaluations: 10
Iteration: 1, Func. Count: 6, Neg. LLF: 146.76597441662727
Iteration: 2, Func. Count: 14, Neg. LLF: 156.90671081661574
Iteration: 3, Func. Count: 20, Neg. LLF: 99.84497578650671
Iteration: 4, Func. Count: 25, Neg. LLF: 99.84240130640026
Iteration: 5, Func. Count: 30, Neg. LLF: 99.83978677789436
Iteration: 6, Func. Count: 35, Neg. LLF: 99.83971992640744
Iteration: 7, Func. Count: 40, Neg. LLF: 99.83962911861079
Iteration: 8, Func. Count: 44, Neg. LLF: 99.83962924571713
Optimization terminated successfully (Exit mode 0)
Current function value: 99.83962911861079
Iterations: 8
Function evaluations: 44
Gradient evaluations: 8
Iteration: 1, Func. Count: 7, Neg. LLF: 181.63069330199383
Iteration: 2, Func. Count: 17, Neg. LLF: 98.45955621954117
Iteration: 3, Func. Count: 23, Neg. LLF: 98.42114088858239
Iteration: 4, Func. Count: 30, Neg. LLF: 167.4431500888029
Iteration: 5, Func. Count: 37, Neg. LLF: 98.10771627568089
Iteration: 6, Func. Count: 43, Neg. LLF: 98.10762201520426
Iteration: 7, Func. Count: 49, Neg. LLF: 98.10762109963355
Optimization terminated successfully (Exit mode 0)
Current function value: 98.10762109963355
Iterations: 7
Function evaluations: 49
Gradient evaluations: 7
Iteration: 1, Func. Count: 8, Neg. LLF: 175.60981875520557
Iteration: 2, Func. Count: 19, Neg. LLF: 98.45034533715118
Iteration: 3, Func. Count: 26, Neg. LLF: 98.40096007020482
Iteration: 4, Func. Count: 34, Neg. LLF: 100.53819603492524
Iteration: 5, Func. Count: 42, Neg. LLF: 98.12691831372216
Iteration: 6, Func. Count: 49, Neg. LLF: 98.12613222252271
Iteration: 7, Func. Count: 56, Neg. LLF: 98.13848932809204
Iteration: 8, Func. Count: 64, Neg. LLF: 98.1382747582212
Iteration: 9, Func. Count: 72, Neg. LLF: 98.13806779688619
Iteration: 10, Func. Count: 80, Neg. LLF: 98.13274491550679
Iteration: 11, Func. Count: 88, Neg. LLF: 98.13767928514346
Iteration: 12, Func. Count: 96, Neg. LLF: 98.13723285260139
Iteration: 13, Func. Count: 104, Neg. LLF: 98.12426502371099
Iteration: 14, Func. Count: 112, Neg. LLF: 98.1230087173679
Iteration: 15, Func. Count: 119, Neg. LLF: 98.1229843590944
Optimization terminated successfully (Exit mode 0)
Current function value: 98.12298442884483
Iterations: 15
Function evaluations: 119
Gradient evaluations: 15
Iteration: 1, Func. Count: 9, Neg. LLF: 173.58324029492357
Iteration: 2, Func. Count: 21, Neg. LLF: 98.62829398598487
Iteration: 3, Func. Count: 29, Neg. LLF: 98.52083758052075
Iteration: 4, Func. Count: 38, Neg. LLF: 98.61370046798541
Iteration: 5, Func. Count: 47, Neg. LLF: 98.15911285339342
Iteration: 6, Func. Count: 55, Neg. LLF: 98.15507399252631
Iteration: 7, Func. Count: 63, Neg. LLF: 98.13998463951441
Iteration: 8, Func. Count: 71, Neg. LLF: 98.10980112405022
Iteration: 9, Func. Count: 79, Neg. LLF: 98.11311688928619
Iteration: 10, Func. Count: 88, Neg. LLF: 98.10874675212544
Iteration: 11, Func. Count: 96, Neg. LLF: 98.10821138056902
Iteration: 12, Func. Count: 104, Neg. LLF: 98.10793007217121
Iteration: 13, Func. Count: 112, Neg. LLF: 98.10762970312729
Iteration: 14, Func. Count: 120, Neg. LLF: 106.13232004002177
Iteration: 15, Func. Count: 131, Neg. LLF: 98.10762119421368
Optimization terminated successfully (Exit mode 0)
Current function value: 98.10762132401375
Iterations: 16
Function evaluations: 131
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 177.73122025618858
Iteration: 2, Func. Count: 23, Neg. LLF: 98.71498955279613
Iteration: 3, Func. Count: 32, Neg. LLF: 98.67094920109889
Iteration: 4, Func. Count: 42, Neg. LLF: 98.2420894405058
Iteration: 5, Func. Count: 52, Neg. LLF: 98.1647766496442
Iteration: 6, Func. Count: 61, Neg. LLF: 98.16002878145517
Iteration: 7, Func. Count: 70, Neg. LLF: 98.15556677372359
Iteration: 8, Func. Count: 79, Neg. LLF: 98.15490539290317
Iteration: 9, Func. Count: 88, Neg. LLF: 98.15489888569762
Iteration: 10, Func. Count: 97, Neg. LLF: 98.1548955728128
Iteration: 11, Func. Count: 105, Neg. LLF: 98.15489553170495
Optimization terminated successfully (Exit mode 0)
Current function value: 98.1548955728128
Iterations: 11
Function evaluations: 105
Gradient evaluations: 11
Iteration: 1, Func. Count: 7, Neg. LLF: 123.69404509430876
Iteration: 2, Func. Count: 16, Neg. LLF: 135.20651537861312
Iteration: 3, Func. Count: 23, Neg. LLF: 99.38953513201223
Iteration: 4, Func. Count: 29, Neg. LLF: 99.35132813287066
Iteration: 5, Func. Count: 35, Neg. LLF: 99.33519931724912
Iteration: 6, Func. Count: 41, Neg. LLF: 99.32396314694421
Iteration: 7, Func. Count: 47, Neg. LLF: 99.3238273916725
Iteration: 8, Func. Count: 53, Neg. LLF: 99.32382234197249
Iteration: 9, Func. Count: 58, Neg. LLF: 99.32382234196602
Optimization terminated successfully (Exit mode 0)
Current function value: 99.32382234197249
Iterations: 9
Function evaluations: 58
Gradient evaluations: 9
Iteration: 1, Func. Count: 8, Neg. LLF: 184.99613482367093
Iteration: 2, Func. Count: 19, Neg. LLF: 98.64649688494501
Iteration: 3, Func. Count: 26, Neg. LLF: 101.87593394374775
Iteration: 4, Func. Count: 34, Neg. LLF: 131.31413746455178
Iteration: 5, Func. Count: 42, Neg. LLF: 98.13725622332967
Iteration: 6, Func. Count: 49, Neg. LLF: 98.10890408687875
Iteration: 7, Func. Count: 56, Neg. LLF: 98.10763940218598
Iteration: 8, Func. Count: 63, Neg. LLF: 98.10762178620065
Iteration: 9, Func. Count: 70, Neg. LLF: 98.1076210182961
Optimization terminated successfully (Exit mode 0)
Current function value: 98.1076210182961
Iterations: 9
Function evaluations: 70
Gradient evaluations: 9
Iteration: 1, Func. Count: 9, Neg. LLF: 177.50570665085124
Iteration: 2, Func. Count: 21, Neg. LLF: 98.58511911512093
Iteration: 3, Func. Count: 29, Neg. LLF: 98.98233500212727
Iteration: 4, Func. Count: 38, Neg. LLF: 101.76966036383894
Iteration: 5, Func. Count: 47, Neg. LLF: 98.12753385572627
Iteration: 6, Func. Count: 55, Neg. LLF: 98.12749616851048
Iteration: 7, Func. Count: 63, Neg. LLF: 98.12746646237694
Iteration: 8, Func. Count: 71, Neg. LLF: 98.12711255702722
Iteration: 9, Func. Count: 79, Neg. LLF: 98.11449410694156
Iteration: 10, Func. Count: 87, Neg. LLF: 98.1076443485131
Iteration: 11, Func. Count: 95, Neg. LLF: 102.31990021812261
Iteration: 12, Func. Count: 106, Neg. LLF: 98.1100666939628
Iteration: 13, Func. Count: 115, Neg. LLF: 98.1076209534518
Optimization terminated successfully (Exit mode 0)
Current function value: 98.10762108494987
Iterations: 14
Function evaluations: 115
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 174.62833407890145
Iteration: 2, Func. Count: 23, Neg. LLF: 98.7980860774276
Iteration: 3, Func. Count: 32, Neg. LLF: 99.05148536634366
Iteration: 4, Func. Count: 42, Neg. LLF: 98.9444742854604
Iteration: 5, Func. Count: 52, Neg. LLF: 98.15762696112085
Iteration: 6, Func. Count: 61, Neg. LLF: 98.15558653014595
Iteration: 7, Func. Count: 70, Neg. LLF: 98.14472117581867
Iteration: 8, Func. Count: 79, Neg. LLF: 98.11004063565996
Iteration: 9, Func. Count: 88, Neg. LLF: 98.10792424236068
Iteration: 10, Func. Count: 97, Neg. LLF: 102.37894030061653
Iteration: 11, Func. Count: 109, Neg. LLF: 98.1424724979172
Iteration: 12, Func. Count: 120, Neg. LLF: 98.10762102349395
Iteration: 13, Func. Count: 128, Neg. LLF: 98.10762089366024
Optimization terminated successfully (Exit mode 0)
Current function value: 98.10762102349395
Iterations: 14
Function evaluations: 128
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 177.73837004917726
Iteration: 2, Func. Count: 26, Neg. LLF: 98.85177054939912
Iteration: 3, Func. Count: 37, Neg. LLF: 98.208752792321
Iteration: 4, Func. Count: 47, Neg. LLF: 98.15867845006372
Iteration: 5, Func. Count: 57, Neg. LLF: 98.15710284039832
Iteration: 6, Func. Count: 67, Neg. LLF: 98.155853069395
Iteration: 7, Func. Count: 77, Neg. LLF: 98.155491779945
Iteration: 8, Func. Count: 87, Neg. LLF: 98.15493228527296
Iteration: 9, Func. Count: 97, Neg. LLF: 98.15489665259135
Iteration: 10, Func. Count: 107, Neg. LLF: 98.15489549862752
Iteration: 11, Func. Count: 116, Neg. LLF: 98.15489545751896
Optimization terminated successfully (Exit mode 0)
Current function value: 98.15489549862752
Iterations: 11
Function evaluations: 116
Gradient evaluations: 11
Iteration: 1, Func. Count: 8, Neg. LLF: 141.9139418554581
Iteration: 2, Func. Count: 18, Neg. LLF: 184.91478579052622
Iteration: 3, Func. Count: 26, Neg. LLF: 99.42889249024729
Iteration: 4, Func. Count: 33, Neg. LLF: 99.37787366961702
Iteration: 5, Func. Count: 40, Neg. LLF: 99.33579065065032
Iteration: 6, Func. Count: 47, Neg. LLF: 99.32945005995099
Iteration: 7, Func. Count: 54, Neg. LLF: 99.32391417396207
Iteration: 8, Func. Count: 61, Neg. LLF: 99.32382531069047
Iteration: 9, Func. Count: 68, Neg. LLF: 99.32382231361838
Iteration: 10, Func. Count: 74, Neg. LLF: 99.32382228948684
Optimization terminated successfully (Exit mode 0)
Current function value: 99.32382231361838
Iterations: 10
Function evaluations: 74
Gradient evaluations: 10
Iteration: 1, Func. Count: 9, Neg. LLF: 185.2636112045144
Iteration: 2, Func. Count: 21, Neg. LLF: 98.61671248181469
Iteration: 3, Func. Count: 29, Neg. LLF: 101.46495478367764
Iteration: 4, Func. Count: 38, Neg. LLF: 116.97082029407886
Iteration: 5, Func. Count: 47, Neg. LLF: 98.14116781922665
Iteration: 6, Func. Count: 55, Neg. LLF: 98.10958491006969
Iteration: 7, Func. Count: 63, Neg. LLF: 98.10765078097074
Iteration: 8, Func. Count: 71, Neg. LLF: 98.10762202547026
Iteration: 9, Func. Count: 79, Neg. LLF: 98.10762101905135
Iteration: 10, Func. Count: 86, Neg. LLF: 98.10762115150634
Optimization terminated successfully (Exit mode 0)
Current function value: 98.10762101905135
Iterations: 10
Function evaluations: 86
Gradient evaluations: 10
Iteration: 1, Func. Count: 10, Neg. LLF: 177.84550385280733
Iteration: 2, Func. Count: 23, Neg. LLF: 98.55067651351463
Iteration: 3, Func. Count: 32, Neg. LLF: 99.26945157982459
Iteration: 4, Func. Count: 42, Neg. LLF: 101.23334949627576
Iteration: 5, Func. Count: 52, Neg. LLF: 98.12715207604072
Iteration: 6, Func. Count: 61, Neg. LLF: 98.12700746901277
Iteration: 7, Func. Count: 70, Neg. LLF: 98.1265824234357
Iteration: 8, Func. Count: 79, Neg. LLF: 98.12019512673942
Iteration: 9, Func. Count: 88, Neg. LLF: 98.1166413981058
Iteration: 10, Func. Count: 97, Neg. LLF: 98.11414382163552
Iteration: 11, Func. Count: 106, Neg. LLF: 98.10766537582298
Iteration: 12, Func. Count: 115, Neg. LLF: 98.10762107519004
Iteration: 13, Func. Count: 123, Neg. LLF: 98.10762094424888
Optimization terminated successfully (Exit mode 0)
Current function value: 98.10762107519004
Iterations: 13
Function evaluations: 123
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 174.85589333169114
Iteration: 2, Func. Count: 25, Neg. LLF: 98.75066718293462
Iteration: 3, Func. Count: 35, Neg. LLF: 99.26260304809564
Iteration: 4, Func. Count: 46, Neg. LLF: 98.79820322892604
Iteration: 5, Func. Count: 57, Neg. LLF: 98.15703457684597
Iteration: 6, Func. Count: 67, Neg. LLF: 98.15492474160823
Iteration: 7, Func. Count: 77, Neg. LLF: 98.14196906101006
Iteration: 8, Func. Count: 87, Neg. LLF: 98.11431186382289
Iteration: 9, Func. Count: 97, Neg. LLF: 98.10933519383808
Iteration: 10, Func. Count: 107, Neg. LLF: 98.10773702804718
Iteration: 11, Func. Count: 117, Neg. LLF: 98.10762112626236
Iteration: 12, Func. Count: 127, Neg. LLF: 98.40351277097723
Optimization terminated successfully (Exit mode 0)
Current function value: 98.10762102971576
Iterations: 13
Function evaluations: 131
Gradient evaluations: 12
Iteration: 1, Func. Count: 12, Neg. LLF: 178.40515378018088
Iteration: 2, Func. Count: 28, Neg. LLF: 98.79563265151829
Iteration: 3, Func. Count: 40, Neg. LLF: 98.20998174093299
Iteration: 4, Func. Count: 51, Neg. LLF: 98.15846559152408
Iteration: 5, Func. Count: 62, Neg. LLF: 98.15704535584072
Iteration: 6, Func. Count: 73, Neg. LLF: 98.15566508793444
Iteration: 7, Func. Count: 84, Neg. LLF: 98.1552687396339
Iteration: 8, Func. Count: 95, Neg. LLF: 98.15491420843684
Iteration: 9, Func. Count: 106, Neg. LLF: 98.15489611806277
Iteration: 10, Func. Count: 117, Neg. LLF: 98.15489549555204
Optimization terminated successfully (Exit mode 0)
Current function value: 98.15489549555204
Iterations: 10
Function evaluations: 117
Gradient evaluations: 10
Iteration: 1, Func. Count: 9, Neg. LLF: 148.12253204356924
Iteration: 2, Func. Count: 20, Neg. LLF: 207.0300134463789
Iteration: 3, Func. Count: 29, Neg. LLF: 99.46785590625264
Iteration: 4, Func. Count: 37, Neg. LLF: 99.39441408808551
Iteration: 5, Func. Count: 45, Neg. LLF: 99.3343553736346
Iteration: 6, Func. Count: 53, Neg. LLF: 99.32927739460132
Iteration: 7, Func. Count: 61, Neg. LLF: 99.32424601530737
Iteration: 8, Func. Count: 69, Neg. LLF: 99.32383282450759
Iteration: 9, Func. Count: 77, Neg. LLF: 99.32382232159632
Iteration: 10, Func. Count: 84, Neg. LLF: 99.32382233186624
Optimization terminated successfully (Exit mode 0)
Current function value: 99.32382232159632
Iterations: 10
Function evaluations: 84
Gradient evaluations: 10
Iteration: 1, Func. Count: 10, Neg. LLF: 185.3508955483571
Iteration: 2, Func. Count: 23, Neg. LLF: 98.60851036566879
Iteration: 3, Func. Count: 32, Neg. LLF: 101.51581701169127
Iteration: 4, Func. Count: 42, Neg. LLF: 112.96829797939422
Iteration: 5, Func. Count: 52, Neg. LLF: 98.14425488241926
Iteration: 6, Func. Count: 61, Neg. LLF: 98.10999092656552
Iteration: 7, Func. Count: 70, Neg. LLF: 98.10765831683794
Iteration: 8, Func. Count: 79, Neg. LLF: 98.1076221354478
Iteration: 9, Func. Count: 88, Neg. LLF: 98.10762102037364
Iteration: 10, Func. Count: 96, Neg. LLF: 98.1076211528408
Optimization terminated successfully (Exit mode 0)
Current function value: 98.10762102037364
Iterations: 10
Function evaluations: 96
Gradient evaluations: 10
Iteration: 1, Func. Count: 11, Neg. LLF: 177.84106365161392
Iteration: 2, Func. Count: 25, Neg. LLF: 98.53591996010141
Iteration: 3, Func. Count: 35, Neg. LLF: 99.29845623832348
Iteration: 4, Func. Count: 46, Neg. LLF: 100.95775240883835
Iteration: 5, Func. Count: 57, Neg. LLF: 98.12706856829902
Iteration: 6, Func. Count: 67, Neg. LLF: 98.12688397133043
Iteration: 7, Func. Count: 77, Neg. LLF: 98.12643957400303
Iteration: 8, Func. Count: 87, Neg. LLF: 98.1190865770635
Iteration: 9, Func. Count: 97, Neg. LLF: 98.11564087086103
Iteration: 10, Func. Count: 107, Neg. LLF: 98.10948455866529
Iteration: 11, Func. Count: 117, Neg. LLF: 98.11036406624457
Iteration: 12, Func. Count: 128, Neg. LLF: 98.1076210314079
Iteration: 13, Func. Count: 137, Neg. LLF: 98.1076208996535
Optimization terminated successfully (Exit mode 0)
Current function value: 98.1076210314079
Iterations: 13
Function evaluations: 137
Gradient evaluations: 13
Iteration: 1, Func. Count: 12, Neg. LLF: 174.91671255630962
Iteration: 2, Func. Count: 27, Neg. LLF: 98.73242958839872
Iteration: 3, Func. Count: 38, Neg. LLF: 99.33576724609257
Iteration: 4, Func. Count: 50, Neg. LLF: 98.74261755705045
Iteration: 5, Func. Count: 62, Neg. LLF: 98.15685674754057
Iteration: 6, Func. Count: 73, Neg. LLF: 98.15471302616857
Iteration: 7, Func. Count: 84, Neg. LLF: 98.14153395214477
Iteration: 8, Func. Count: 95, Neg. LLF: 98.11851527972824
Iteration: 9, Func. Count: 106, Neg. LLF: 98.11198720527618
Iteration: 10, Func. Count: 117, Neg. LLF: 98.10763970724766
Iteration: 11, Func. Count: 128, Neg. LLF: 98.10765102618177
Optimization terminated successfully (Exit mode 0)
Current function value: 98.10763968916291
Iterations: 11
Function evaluations: 130
Gradient evaluations: 11
Iteration: 1, Func. Count: 13, Neg. LLF: 178.13785399431478
Iteration: 2, Func. Count: 30, Neg. LLF: 98.76815899035277
Iteration: 3, Func. Count: 43, Neg. LLF: 98.21317567638137
Iteration: 4, Func. Count: 55, Neg. LLF: 98.15900232615097
Iteration: 5, Func. Count: 67, Neg. LLF: 98.15742048259622
Iteration: 6, Func. Count: 79, Neg. LLF: 98.15554819336754
Iteration: 7, Func. Count: 91, Neg. LLF: 98.15527671263595
Iteration: 8, Func. Count: 103, Neg. LLF: 98.15490946551634
Iteration: 9, Func. Count: 115, Neg. LLF: 98.15489583712193
Iteration: 10, Func. Count: 126, Neg. LLF: 98.15489579611611
Optimization terminated successfully (Exit mode 0)
Current function value: 98.15489583712193
Iterations: 10
Function evaluations: 126
Gradient evaluations: 10
Iteration: 1, Func. Count: 10, Neg. LLF: 150.90327157183705
Iteration: 2, Func. Count: 22, Neg. LLF: 203.60430183508615
Iteration: 3, Func. Count: 32, Neg. LLF: 99.36671369503514
Iteration: 4, Func. Count: 41, Neg. LLF: 99.42710227978907
Iteration: 5, Func. Count: 51, Neg. LLF: 99.32881950814136
Iteration: 6, Func. Count: 60, Neg. LLF: 99.32447519084792
Iteration: 7, Func. Count: 69, Neg. LLF: 99.32389723171346
Iteration: 8, Func. Count: 78, Neg. LLF: 99.32382256542772
Iteration: 9, Func. Count: 86, Neg. LLF: 99.32382259906298
Optimization terminated successfully (Exit mode 0)
Current function value: 99.32382256542772
Iterations: 9
Function evaluations: 86
Gradient evaluations: 9
Iteration: 1, Func. Count: 11, Neg. LLF: 185.39909334395242
Iteration: 2, Func. Count: 25, Neg. LLF: 98.60558943810165
Iteration: 3, Func. Count: 35, Neg. LLF: 101.75429965442257
Iteration: 4, Func. Count: 46, Neg. LLF: 110.50025168302287
Iteration: 5, Func. Count: 57, Neg. LLF: 98.14443257190752
Iteration: 6, Func. Count: 67, Neg. LLF: 98.11001220912699
Iteration: 7, Func. Count: 77, Neg. LLF: 98.10765862863244
Iteration: 8, Func. Count: 87, Neg. LLF: 98.10762212120676
Iteration: 9, Func. Count: 97, Neg. LLF: 98.10762101997956
Iteration: 10, Func. Count: 106, Neg. LLF: 98.10762115244559
Optimization terminated successfully (Exit mode 0)
Current function value: 98.10762101997956
Iterations: 10
Function evaluations: 106
Gradient evaluations: 10
Iteration: 1, Func. Count: 12, Neg. LLF: 177.94541945034135
Iteration: 2, Func. Count: 27, Neg. LLF: 98.53647960553971
Iteration: 3, Func. Count: 38, Neg. LLF: 99.37726137560679
Iteration: 4, Func. Count: 50, Neg. LLF: 100.85974713578985
Iteration: 5, Func. Count: 62, Neg. LLF: 98.12695579156055
Iteration: 6, Func. Count: 73, Neg. LLF: 98.12672086598633
Iteration: 7, Func. Count: 84, Neg. LLF: 98.12630096150647
Iteration: 8, Func. Count: 95, Neg. LLF: 98.11926169001734
Iteration: 9, Func. Count: 106, Neg. LLF: 98.11475059546943
Iteration: 10, Func. Count: 117, Neg. LLF: 98.11127512445897
Iteration: 11, Func. Count: 128, Neg. LLF: 98.10766893153824
Iteration: 12, Func. Count: 139, Neg. LLF: 98.10778643821992
Iteration: 13, Func. Count: 151, Neg. LLF: 98.10762101706358
Optimization terminated successfully (Exit mode 0)
Current function value: 98.10762101706358
Iterations: 13
Function evaluations: 151
Gradient evaluations: 13
Iteration: 1, Func. Count: 13, Neg. LLF: 174.9393533023614
Iteration: 2, Func. Count: 29, Neg. LLF: 98.72933057998154
Iteration: 3, Func. Count: 41, Neg. LLF: 99.36802118332645
Iteration: 4, Func. Count: 54, Neg. LLF: 98.72550426248472
Iteration: 5, Func. Count: 67, Neg. LLF: 98.15684844178202
Iteration: 6, Func. Count: 79, Neg. LLF: 98.15468648418013
Iteration: 7, Func. Count: 91, Neg. LLF: 98.14173710709602
Iteration: 8, Func. Count: 103, Neg. LLF: 98.12189246554824
Iteration: 9, Func. Count: 115, Neg. LLF: 98.11335977207922
Iteration: 10, Func. Count: 127, Neg. LLF: 98.10767163373275
Iteration: 11, Func. Count: 139, Neg. LLF: 98.10762107784825
Iteration: 12, Func. Count: 151, Neg. LLF: 98.111090751595
Optimization terminated successfully (Exit mode 0)
Current function value: 98.10762107573446
Iterations: 13
Function evaluations: 154
Gradient evaluations: 12
Iteration: 1, Func. Count: 14, Neg. LLF: 178.14511372656258
Iteration: 2, Func. Count: 32, Neg. LLF: 98.7668211364087
Iteration: 3, Func. Count: 46, Neg. LLF: 98.21305347072874
Iteration: 4, Func. Count: 59, Neg. LLF: 98.15861417541116
Iteration: 5, Func. Count: 72, Neg. LLF: 98.15722025993057
Iteration: 6, Func. Count: 85, Neg. LLF: 98.15546699683655
Iteration: 7, Func. Count: 98, Neg. LLF: 98.15516115624102
Iteration: 8, Func. Count: 111, Neg. LLF: 98.15490330010162
Iteration: 9, Func. Count: 124, Neg. LLF: 98.15489564455095
Iteration: 10, Func. Count: 136, Neg. LLF: 98.15489560352547
Optimization terminated successfully (Exit mode 0)
Current function value: 98.15489564455095
Iterations: 10
Function evaluations: 136
Gradient evaluations: 10
Iteration: 1, Func. Count: 7, Neg. LLF: 144.03229671793997
Iteration: 2, Func. Count: 16, Neg. LLF: 157.50757286023082
Iteration: 3, Func. Count: 23, Neg. LLF: 99.91235064210629
Iteration: 4, Func. Count: 29, Neg. LLF: 99.87691723727445
Iteration: 5, Func. Count: 35, Neg. LLF: 99.84180845011603
Iteration: 6, Func. Count: 41, Neg. LLF: 99.84053577377608
Iteration: 7, Func. Count: 47, Neg. LLF: 99.8400404250305
Iteration: 8, Func. Count: 53, Neg. LLF: 99.83963707730405
Iteration: 9, Func. Count: 59, Neg. LLF: 99.83962932260337
Iteration: 10, Func. Count: 64, Neg. LLF: 99.8396295363581
Optimization terminated successfully (Exit mode 0)
Current function value: 99.83962932260337
Iterations: 10
Function evaluations: 64
Gradient evaluations: 10
Iteration: 1, Func. Count: 8, Neg. LLF: 181.0653728412293
Iteration: 2, Func. Count: 19, Neg. LLF: 98.47854979541509
Iteration: 3, Func. Count: 26, Neg. LLF: 98.2745032599376
Iteration: 4, Func. Count: 33, Neg. LLF: 165.50510479434772
Iteration: 5, Func. Count: 42, Neg. LLF: 98.11858171371334
Iteration: 6, Func. Count: 49, Neg. LLF: 98.10779785145311
Iteration: 7, Func. Count: 56, Neg. LLF: 98.10762180994061
Iteration: 8, Func. Count: 63, Neg. LLF: 98.10762101693162
Optimization terminated successfully (Exit mode 0)
Current function value: 98.10762101693162
Iterations: 8
Function evaluations: 63
Gradient evaluations: 8
Iteration: 1, Func. Count: 9, Neg. LLF: 175.59032028921132
Iteration: 2, Func. Count: 21, Neg. LLF: 98.45804018069481
Iteration: 3, Func. Count: 29, Neg. LLF: 98.38977965052591
Iteration: 4, Func. Count: 38, Neg. LLF: 100.99971058135736
Iteration: 5, Func. Count: 47, Neg. LLF: 98.1268572280919
Iteration: 6, Func. Count: 55, Neg. LLF: 98.12618629592801
Iteration: 7, Func. Count: 63, Neg. LLF: 98.13826943571851
Iteration: 8, Func. Count: 72, Neg. LLF: 98.13801108282111
Iteration: 9, Func. Count: 81, Neg. LLF: 98.13714183588712
Iteration: 10, Func. Count: 90, Neg. LLF: 98.13805310908297
Iteration: 11, Func. Count: 99, Neg. LLF: 98.13818362390488
Iteration: 12, Func. Count: 108, Neg. LLF: 98.138094298955
Iteration: 13, Func. Count: 117, Neg. LLF: 98.14037078352831
Iteration: 14, Func. Count: 126, Neg. LLF: 98.14761344215374
Iteration: 15, Func. Count: 135, Neg. LLF: 98.1247891757039
Iteration: 16, Func. Count: 144, Neg. LLF: 98.12882780178946
Iteration: 17, Func. Count: 153, Neg. LLF: 98.12301812146843
Iteration: 18, Func. Count: 161, Neg. LLF: 98.12299733701536
Iteration: 19, Func. Count: 169, Neg. LLF: 98.12298430011572
Iteration: 20, Func. Count: 176, Neg. LLF: 98.12298423018412
Optimization terminated successfully (Exit mode 0)
Current function value: 98.12298430011572
Iterations: 20
Function evaluations: 176
Gradient evaluations: 20
Iteration: 1, Func. Count: 10, Neg. LLF: 174.54629141231715
Iteration: 2, Func. Count: 23, Neg. LLF: 98.58824969396275
Iteration: 3, Func. Count: 32, Neg. LLF: 98.54085108549599
Iteration: 4, Func. Count: 42, Neg. LLF: 98.53456714054344
Iteration: 5, Func. Count: 52, Neg. LLF: 98.15900732701802
Iteration: 6, Func. Count: 61, Neg. LLF: 98.15505931775041
Iteration: 7, Func. Count: 70, Neg. LLF: 98.13779211883093
Iteration: 8, Func. Count: 79, Neg. LLF: 98.10859110960085
Iteration: 9, Func. Count: 88, Neg. LLF: 98.1284552222118
Iteration: 10, Func. Count: 98, Neg. LLF: 98.10823213348336
Iteration: 11, Func. Count: 108, Neg. LLF: 118.24654693852803
Iteration: 12, Func. Count: 121, Neg. LLF: 98.23537447850785
Iteration: 13, Func. Count: 132, Neg. LLF: 98.10762101685842
Iteration: 14, Func. Count: 140, Neg. LLF: 98.10762088705364
Optimization terminated successfully (Exit mode 0)
Current function value: 98.10762101685842
Iterations: 15
Function evaluations: 140
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 176.07414124724937
Iteration: 2, Func. Count: 25, Neg. LLF: 98.69393658113556
Iteration: 3, Func. Count: 35, Neg. LLF: 98.68366659316361
Iteration: 4, Func. Count: 46, Neg. LLF: 98.23435971947751
Iteration: 5, Func. Count: 57, Neg. LLF: 98.16456202479546
Iteration: 6, Func. Count: 67, Neg. LLF: 98.16010453201274
Iteration: 7, Func. Count: 77, Neg. LLF: 98.15595341978432
Iteration: 8, Func. Count: 87, Neg. LLF: 98.1711487193669
Iteration: 9, Func. Count: 98, Neg. LLF: 98.1750514705663
Iteration: 10, Func. Count: 109, Neg. LLF: 98.154835240053
Iteration: 11, Func. Count: 120, Neg. LLF: 98.15445444627026
Iteration: 12, Func. Count: 130, Neg. LLF: 98.15433550808365
Iteration: 13, Func. Count: 140, Neg. LLF: 98.15411801048683
Iteration: 14, Func. Count: 150, Neg. LLF: 98.15377491080768
Iteration: 15, Func. Count: 160, Neg. LLF: 98.1531534351544
Iteration: 16, Func. Count: 170, Neg. LLF: 98.15263199604725
Iteration: 17, Func. Count: 180, Neg. LLF: 98.15198459300699
Iteration: 18, Func. Count: 190, Neg. LLF: 98.15157425821747
Iteration: 19, Func. Count: 200, Neg. LLF: 98.1514723174355
Iteration: 20, Func. Count: 210, Neg. LLF: 98.15146290575109
Iteration: 21, Func. Count: 220, Neg. LLF: 98.15146040980223
Iteration: 22, Func. Count: 230, Neg. LLF: 98.15154869612574
Optimization terminated successfully (Exit mode 0)
Current function value: 98.15146042709496
Iterations: 23
Function evaluations: 232
Gradient evaluations: 22
Iteration: 1, Func. Count: 8, Neg. LLF: 124.59821192846125
Iteration: 2, Func. Count: 18, Neg. LLF: 139.76347322050896
Iteration: 3, Func. Count: 26, Neg. LLF: 99.38884352662924
Iteration: 4, Func. Count: 33, Neg. LLF: 99.35258368125363
Iteration: 5, Func. Count: 40, Neg. LLF: 99.33361536242248
Iteration: 6, Func. Count: 47, Neg. LLF: 99.32393900179517
Iteration: 7, Func. Count: 54, Neg. LLF: 99.32382667901541
Iteration: 8, Func. Count: 61, Neg. LLF: 99.32382232628221
Iteration: 9, Func. Count: 67, Neg. LLF: 99.32382232627684
Optimization terminated successfully (Exit mode 0)
Current function value: 99.32382232628221
Iterations: 9
Function evaluations: 67
Gradient evaluations: 9
Iteration: 1, Func. Count: 9, Neg. LLF: 184.49577494439654
Iteration: 2, Func. Count: 21, Neg. LLF: 98.67670991321593
Iteration: 3, Func. Count: 29, Neg. LLF: 100.91091346048074
Iteration: 4, Func. Count: 38, Neg. LLF: 208.58542686326396
Iteration: 5, Func. Count: 47, Neg. LLF: 98.12006252852561
Iteration: 6, Func. Count: 55, Neg. LLF: 98.1077561882842
Iteration: 7, Func. Count: 63, Neg. LLF: 98.1076303871046
Iteration: 8, Func. Count: 71, Neg. LLF: 98.10762101751851
Iteration: 9, Func. Count: 78, Neg. LLF: 98.10762114994203
Optimization terminated successfully (Exit mode 0)
Current function value: 98.10762101751851
Iterations: 9
Function evaluations: 78
Gradient evaluations: 9
Iteration: 1, Func. Count: 10, Neg. LLF: 177.5083250309539
Iteration: 2, Func. Count: 23, Neg. LLF: 98.59258253513346
Iteration: 3, Func. Count: 32, Neg. LLF: 98.95793959767985
Iteration: 4, Func. Count: 42, Neg. LLF: 102.63953476265557
Iteration: 5, Func. Count: 52, Neg. LLF: 98.12757248246108
Iteration: 6, Func. Count: 61, Neg. LLF: 98.1275502896751
Iteration: 7, Func. Count: 70, Neg. LLF: 98.12753703780552
Iteration: 8, Func. Count: 79, Neg. LLF: 98.1273787848668
Iteration: 9, Func. Count: 88, Neg. LLF: 98.1220695893695
Iteration: 10, Func. Count: 97, Neg. LLF: 98.11534956866909
Iteration: 11, Func. Count: 106, Neg. LLF: 98.11067936890578
Iteration: 12, Func. Count: 115, Neg. LLF: 98.10771020418174
Iteration: 13, Func. Count: 124, Neg. LLF: 98.1076387005541
Iteration: 14, Func. Count: 133, Neg. LLF: 98.10762114675008
Iteration: 15, Func. Count: 141, Neg. LLF: 98.10762101433815
Optimization terminated successfully (Exit mode 0)
Current function value: 98.10762114675008
Iterations: 15
Function evaluations: 141
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 175.58062493459207
Iteration: 2, Func. Count: 25, Neg. LLF: 98.75121274163394
Iteration: 3, Func. Count: 35, Neg. LLF: 99.03715181642582
Iteration: 4, Func. Count: 46, Neg. LLF: 98.81374762716423
Iteration: 5, Func. Count: 57, Neg. LLF: 98.15695358698956
Iteration: 6, Func. Count: 67, Neg. LLF: 98.15475354268838
Iteration: 7, Func. Count: 77, Neg. LLF: 98.14337332199277
Iteration: 8, Func. Count: 87, Neg. LLF: 98.11008483835758
Iteration: 9, Func. Count: 97, Neg. LLF: 98.1081159143048
Iteration: 10, Func. Count: 107, Neg. LLF: 98.10770073281172
Iteration: 11, Func. Count: 117, Neg. LLF: 119.6403040159547
Iteration: 12, Func. Count: 131, Neg. LLF: 98.10931818173778
Iteration: 13, Func. Count: 142, Neg. LLF: 98.10762101833116
Iteration: 14, Func. Count: 151, Neg. LLF: 98.10762088852825
Optimization terminated successfully (Exit mode 0)
Current function value: 98.10762101833116
Iterations: 15
Function evaluations: 151
Gradient evaluations: 14
Iteration: 1, Func. Count: 12, Neg. LLF: 176.1428211020092
Iteration: 2, Func. Count: 28, Neg. LLF: 98.82589695905368
Iteration: 3, Func. Count: 40, Neg. LLF: 98.21683792463256
Iteration: 4, Func. Count: 51, Neg. LLF: 98.15945078515082
Iteration: 5, Func. Count: 62, Neg. LLF: 98.15772674175045
Iteration: 6, Func. Count: 73, Neg. LLF: 98.15520045228472
Iteration: 7, Func. Count: 84, Neg. LLF: 98.55553386296899
Iteration: 8, Func. Count: 97, Neg. LLF: 98.15476402963381
Iteration: 9, Func. Count: 108, Neg. LLF: 98.15467618769513
Iteration: 10, Func. Count: 119, Neg. LLF: 98.15451119169953
Iteration: 11, Func. Count: 130, Neg. LLF: 98.15404258536715
Iteration: 12, Func. Count: 141, Neg. LLF: 98.1530837193478
Iteration: 13, Func. Count: 152, Neg. LLF: 98.15234016890925
Iteration: 14, Func. Count: 163, Neg. LLF: 98.15168984537392
Iteration: 15, Func. Count: 174, Neg. LLF: 98.15150140455559
Iteration: 16, Func. Count: 185, Neg. LLF: 98.15146324804996
Iteration: 17, Func. Count: 196, Neg. LLF: 98.15146234630652
Optimization terminated successfully (Exit mode 0)
Current function value: 98.15146234630652
Iterations: 17
Function evaluations: 196
Gradient evaluations: 17
Iteration: 1, Func. Count: 9, Neg. LLF: 143.4736823507436
Iteration: 2, Func. Count: 20, Neg. LLF: 186.7981003630352
Iteration: 3, Func. Count: 29, Neg. LLF: 99.42804190152856
Iteration: 4, Func. Count: 37, Neg. LLF: 99.37746691096595
Iteration: 5, Func. Count: 45, Neg. LLF: 99.33542910364785
Iteration: 6, Func. Count: 53, Neg. LLF: 99.32934241799364
Iteration: 7, Func. Count: 61, Neg. LLF: 99.32391408981863
Iteration: 8, Func. Count: 69, Neg. LLF: 99.32382506684095
Iteration: 9, Func. Count: 77, Neg. LLF: 99.32382230809077
Iteration: 10, Func. Count: 84, Neg. LLF: 99.32382228395957
Optimization terminated successfully (Exit mode 0)
Current function value: 99.32382230809077
Iterations: 10
Function evaluations: 84
Gradient evaluations: 10
Iteration: 1, Func. Count: 10, Neg. LLF: 184.7664881234021
Iteration: 2, Func. Count: 23, Neg. LLF: 98.64588354714267
Iteration: 3, Func. Count: 32, Neg. LLF: 101.3661823460539
Iteration: 4, Func. Count: 42, Neg. LLF: 150.56498614429907
Iteration: 5, Func. Count: 52, Neg. LLF: 98.12774717189284
Iteration: 6, Func. Count: 61, Neg. LLF: 98.10807763318266
Iteration: 7, Func. Count: 70, Neg. LLF: 98.10762590857586
Iteration: 8, Func. Count: 79, Neg. LLF: 98.10762127387555
Iteration: 9, Func. Count: 87, Neg. LLF: 98.10762140664782
Optimization terminated successfully (Exit mode 0)
Current function value: 98.10762127387555
Iterations: 9
Function evaluations: 87
Gradient evaluations: 9
Iteration: 1, Func. Count: 11, Neg. LLF: 177.84752844683283
Iteration: 2, Func. Count: 25, Neg. LLF: 98.55824276660987
Iteration: 3, Func. Count: 35, Neg. LLF: 99.2438050834265
Iteration: 4, Func. Count: 46, Neg. LLF: 102.18098794190648
Iteration: 5, Func. Count: 57, Neg. LLF: 98.12731666583589
Iteration: 6, Func. Count: 67, Neg. LLF: 98.1272119212045
Iteration: 7, Func. Count: 77, Neg. LLF: 98.1270565597799
Iteration: 8, Func. Count: 87, Neg. LLF: 98.12448344308233
Iteration: 9, Func. Count: 97, Neg. LLF: 98.11356654749292
Iteration: 10, Func. Count: 107, Neg. LLF: 98.1118597854576
Iteration: 11, Func. Count: 117, Neg. LLF: 98.10857177596401
Iteration: 12, Func. Count: 127, Neg. LLF: 98.10831068027714
Iteration: 13, Func. Count: 138, Neg. LLF: 98.1076211114498
Iteration: 14, Func. Count: 147, Neg. LLF: 98.10762097947543
Optimization terminated successfully (Exit mode 0)
Current function value: 98.1076211114498
Iterations: 14
Function evaluations: 147
Gradient evaluations: 14
Iteration: 1, Func. Count: 12, Neg. LLF: 175.82522256578878
Iteration: 2, Func. Count: 27, Neg. LLF: 98.70682497383805
Iteration: 3, Func. Count: 38, Neg. LLF: 99.24231075365928
Iteration: 4, Func. Count: 50, Neg. LLF: 98.66721864754244
Iteration: 5, Func. Count: 62, Neg. LLF: 98.15630761129965
Iteration: 6, Func. Count: 73, Neg. LLF: 98.15400424812768
Iteration: 7, Func. Count: 84, Neg. LLF: 98.14064006569622
Iteration: 8, Func. Count: 95, Neg. LLF: 98.1102413561419
Iteration: 9, Func. Count: 106, Neg. LLF: 98.10680354981609
Iteration: 10, Func. Count: 120, Neg. LLF: 98.10782229137061
Iteration: 11, Func. Count: 131, Neg. LLF: 102.46912635707547
Iteration: 12, Func. Count: 145, Neg. LLF: 98.87205208300715
Iteration: 13, Func. Count: 157, Neg. LLF: 98.10762114723967
Optimization terminated successfully (Exit mode 0)
Current function value: 98.10762127702888
Iterations: 14
Function evaluations: 157
Gradient evaluations: 13
Iteration: 1, Func. Count: 13, Neg. LLF: 176.7565520892878
Iteration: 2, Func. Count: 30, Neg. LLF: 98.77017570297133
Iteration: 3, Func. Count: 43, Neg. LLF: 98.22095322292823
Iteration: 4, Func. Count: 55, Neg. LLF: 98.15937711412742
Iteration: 5, Func. Count: 67, Neg. LLF: 98.15769767656789
Iteration: 6, Func. Count: 79, Neg. LLF: 98.15516741928582
Iteration: 7, Func. Count: 91, Neg. LLF: 98.5476317639137
Iteration: 8, Func. Count: 105, Neg. LLF: 98.15477208217715
Iteration: 9, Func. Count: 117, Neg. LLF: 98.15467511588727
Iteration: 10, Func. Count: 129, Neg. LLF: 98.15451222691279
Iteration: 11, Func. Count: 141, Neg. LLF: 98.15363166374685
Iteration: 12, Func. Count: 153, Neg. LLF: 98.15250864600429
Iteration: 13, Func. Count: 165, Neg. LLF: 98.1516468800921
Iteration: 14, Func. Count: 177, Neg. LLF: 98.15149529564879
Iteration: 15, Func. Count: 189, Neg. LLF: 98.15147489369869
Iteration: 16, Func. Count: 201, Neg. LLF: 98.1514623462038
Iteration: 17, Func. Count: 212, Neg. LLF: 98.15146230359926
Optimization terminated successfully (Exit mode 0)
Current function value: 98.1514623462038
Iterations: 17
Function evaluations: 212
Gradient evaluations: 17
Iteration: 1, Func. Count: 10, Neg. LLF: 149.59661445528417
Iteration: 2, Func. Count: 22, Neg. LLF: 210.57449413661763
Iteration: 3, Func. Count: 32, Neg. LLF: 99.46025661234557
Iteration: 4, Func. Count: 41, Neg. LLF: 99.39797074791558
Iteration: 5, Func. Count: 50, Neg. LLF: 99.33400490222172
Iteration: 6, Func. Count: 59, Neg. LLF: 99.32919534724212
Iteration: 7, Func. Count: 68, Neg. LLF: 99.32411719903412
Iteration: 8, Func. Count: 77, Neg. LLF: 99.32382896154071
Iteration: 9, Func. Count: 86, Neg. LLF: 99.32382229831268
Iteration: 10, Func. Count: 94, Neg. LLF: 99.323822288041
Optimization terminated successfully (Exit mode 0)
Current function value: 99.32382229831268
Iterations: 10
Function evaluations: 94
Gradient evaluations: 10
Iteration: 1, Func. Count: 11, Neg. LLF: 184.85484027344293
Iteration: 2, Func. Count: 25, Neg. LLF: 98.63765513362894
Iteration: 3, Func. Count: 35, Neg. LLF: 101.57138459946131
Iteration: 4, Func. Count: 46, Neg. LLF: 138.98493659696595
Iteration: 5, Func. Count: 57, Neg. LLF: 98.13101488571236
Iteration: 6, Func. Count: 67, Neg. LLF: 98.1083822644502
Iteration: 7, Func. Count: 77, Neg. LLF: 98.10763054419338
Iteration: 8, Func. Count: 87, Neg. LLF: 98.10762147875472
Iteration: 9, Func. Count: 96, Neg. LLF: 98.10762161171291
Optimization terminated successfully (Exit mode 0)
Current function value: 98.10762147875472
Iterations: 9
Function evaluations: 96
Gradient evaluations: 9
Iteration: 1, Func. Count: 12, Neg. LLF: 177.84214119194502
Iteration: 2, Func. Count: 27, Neg. LLF: 98.54355975866203
Iteration: 3, Func. Count: 38, Neg. LLF: 99.27235522783671
Iteration: 4, Func. Count: 50, Neg. LLF: 101.86087050439498
Iteration: 5, Func. Count: 62, Neg. LLF: 98.12727027768226
Iteration: 6, Func. Count: 73, Neg. LLF: 98.12713317782494
Iteration: 7, Func. Count: 84, Neg. LLF: 98.1269657281117
Iteration: 8, Func. Count: 95, Neg. LLF: 98.12416694735718
Iteration: 9, Func. Count: 106, Neg. LLF: 98.11109658809454
Iteration: 10, Func. Count: 117, Neg. LLF: 98.1096630570638
Iteration: 11, Func. Count: 128, Neg. LLF: 98.10763852674789
Iteration: 12, Func. Count: 139, Neg. LLF: 98.1076214245164
Iteration: 13, Func. Count: 149, Neg. LLF: 98.10762129307001
Optimization terminated successfully (Exit mode 0)
Current function value: 98.1076214245164
Iterations: 13
Function evaluations: 149
Gradient evaluations: 13
Iteration: 1, Func. Count: 13, Neg. LLF: 175.89135690887096
Iteration: 2, Func. Count: 29, Neg. LLF: 98.68978689374602
Iteration: 3, Func. Count: 41, Neg. LLF: 99.3133998544443
Iteration: 4, Func. Count: 54, Neg. LLF: 98.61550460682307
Iteration: 5, Func. Count: 67, Neg. LLF: 98.15611180850912
Iteration: 6, Func. Count: 79, Neg. LLF: 98.1537488512854
Iteration: 7, Func. Count: 91, Neg. LLF: 98.13998292470049
Iteration: 8, Func. Count: 103, Neg. LLF: 98.11019201618073
Iteration: 9, Func. Count: 115, Neg. LLF: 98.10879218432574
Iteration: 10, Func. Count: 132, Neg. LLF: 98.10827277263363
Iteration: 11, Func. Count: 144, Neg. LLF: 98.10793712610828
Iteration: 12, Func. Count: 156, Neg. LLF: 98.10775626945487
Iteration: 13, Func. Count: 168, Neg. LLF: 98.13725154666474
Optimization terminated successfully (Exit mode 0)
Current function value: 98.1077560272407
Iterations: 14
Function evaluations: 171
Gradient evaluations: 13
Iteration: 1, Func. Count: 14, Neg. LLF: 176.50282837347848
Iteration: 2, Func. Count: 32, Neg. LLF: 98.74333122484789
Iteration: 3, Func. Count: 46, Neg. LLF: 98.22674423498218
Iteration: 4, Func. Count: 59, Neg. LLF: 98.15984457193584
Iteration: 5, Func. Count: 72, Neg. LLF: 98.15792404240999
Iteration: 6, Func. Count: 85, Neg. LLF: 98.74740794708411
Iteration: 7, Func. Count: 99, Neg. LLF: 98.7600134210405
Iteration: 8, Func. Count: 113, Neg. LLF: 98.84243852244046
Iteration: 9, Func. Count: 127, Neg. LLF: 98.1484790475845
Iteration: 10, Func. Count: 140, Neg. LLF: 98.14688299035066
Iteration: 11, Func. Count: 153, Neg. LLF: 98.14141773866733
Iteration: 12, Func. Count: 166, Neg. LLF: 98.13294111814852
Iteration: 13, Func. Count: 179, Neg. LLF: 98.11772821658325
Iteration: 14, Func. Count: 192, Neg. LLF: 98.13110387252243
Iteration: 15, Func. Count: 206, Neg. LLF: 98.10590299299989
Iteration: 16, Func. Count: 219, Neg. LLF: 98.10552131612855
Iteration: 17, Func. Count: 232, Neg. LLF: 98.10549362999963
Iteration: 18, Func. Count: 244, Neg. LLF: 98.10549358967509
Optimization terminated successfully (Exit mode 0)
Current function value: 98.10549362999963
Iterations: 18
Function evaluations: 244
Gradient evaluations: 18
Iteration: 1, Func. Count: 11, Neg. LLF: 147.52115689297716
Iteration: 2, Func. Count: 24, Neg. LLF: 213.66521321546261
Iteration: 3, Func. Count: 35, Neg. LLF: 99.60870661517151
Iteration: 4, Func. Count: 45, Neg. LLF: 99.39321630428722
Iteration: 5, Func. Count: 55, Neg. LLF: 99.34412932449172
Iteration: 6, Func. Count: 65, Neg. LLF: 99.3337028844445
Iteration: 7, Func. Count: 75, Neg. LLF: 99.32644987390886
Iteration: 8, Func. Count: 85, Neg. LLF: 99.32395860509818
Iteration: 9, Func. Count: 95, Neg. LLF: 99.32382554017596
Iteration: 10, Func. Count: 105, Neg. LLF: 99.32382228964674
Iteration: 11, Func. Count: 114, Neg. LLF: 99.32382232328811
Optimization terminated successfully (Exit mode 0)
Current function value: 99.32382228964674
Iterations: 11
Function evaluations: 114
Gradient evaluations: 11
Iteration: 1, Func. Count: 12, Neg. LLF: 184.9033837893888
Iteration: 2, Func. Count: 27, Neg. LLF: 98.63495790138494
Iteration: 3, Func. Count: 38, Neg. LLF: 101.82201504108792
Iteration: 4, Func. Count: 50, Neg. LLF: 133.0080574552745
Iteration: 5, Func. Count: 62, Neg. LLF: 98.13386621686875
Iteration: 6, Func. Count: 73, Neg. LLF: 98.10864634851114
Iteration: 7, Func. Count: 84, Neg. LLF: 98.10763467275692
Iteration: 8, Func. Count: 95, Neg. LLF: 98.10762161375288
Iteration: 9, Func. Count: 106, Neg. LLF: 98.10762101770071
Optimization terminated successfully (Exit mode 0)
Current function value: 98.10762101770071
Iterations: 9
Function evaluations: 106
Gradient evaluations: 9
Iteration: 1, Func. Count: 13, Neg. LLF: 177.94637005225744
Iteration: 2, Func. Count: 29, Neg. LLF: 98.54418881976649
Iteration: 3, Func. Count: 41, Neg. LLF: 99.35003343474322
Iteration: 4, Func. Count: 54, Neg. LLF: 101.75438054593721
Iteration: 5, Func. Count: 67, Neg. LLF: 98.1272005580483
Iteration: 6, Func. Count: 79, Neg. LLF: 98.12701716974858
Iteration: 7, Func. Count: 91, Neg. LLF: 98.12683379399206
Iteration: 8, Func. Count: 103, Neg. LLF: 98.12404564879927
Iteration: 9, Func. Count: 115, Neg. LLF: 98.11216598930575
Iteration: 10, Func. Count: 127, Neg. LLF: 98.11048717947632
Iteration: 11, Func. Count: 139, Neg. LLF: 98.10827916498734
Iteration: 12, Func. Count: 151, Neg. LLF: 98.10763602343208
Iteration: 13, Func. Count: 163, Neg. LLF: 98.10762486297219
Iteration: 14, Func. Count: 175, Neg. LLF: 98.65725599542806
Optimization terminated successfully (Exit mode 0)
Current function value: 98.10762466560105
Iterations: 15
Function evaluations: 179
Gradient evaluations: 14
Iteration: 1, Func. Count: 14, Neg. LLF: 175.91604337788084
Iteration: 2, Func. Count: 31, Neg. LLF: 98.68696335892962
Iteration: 3, Func. Count: 44, Neg. LLF: 99.34421344036292
Iteration: 4, Func. Count: 58, Neg. LLF: 98.59948392477625
Iteration: 5, Func. Count: 72, Neg. LLF: 98.15610354571943
Iteration: 6, Func. Count: 85, Neg. LLF: 98.15372403239887
Iteration: 7, Func. Count: 98, Neg. LLF: 98.13955871693528
Iteration: 8, Func. Count: 111, Neg. LLF: 98.11024221478148
Iteration: 9, Func. Count: 124, Neg. LLF: 98.1060742848516
Iteration: 10, Func. Count: 139, Neg. LLF: 98.10781818894499
Iteration: 11, Func. Count: 152, Neg. LLF: 98.10778856404032
Iteration: 12, Func. Count: 165, Neg. LLF: 98.1077219714059
Iteration: 13, Func. Count: 178, Neg. LLF: 122.26584847059597
Iteration: 14, Func. Count: 195, Neg. LLF: 98.107753738203
Optimization terminated successfully (Exit mode 0)
Current function value: 98.107621659426
Iterations: 15
Function evaluations: 196
Gradient evaluations: 14
Iteration: 1, Func. Count: 15, Neg. LLF: 176.5080204733797
Iteration: 2, Func. Count: 34, Neg. LLF: 98.7420850336754
Iteration: 3, Func. Count: 49, Neg. LLF: 98.22611104865494
Iteration: 4, Func. Count: 63, Neg. LLF: 98.15951932933137
Iteration: 5, Func. Count: 77, Neg. LLF: 98.15780431558703
Iteration: 6, Func. Count: 91, Neg. LLF: 98.68207029622732
Iteration: 7, Func. Count: 106, Neg. LLF: 98.69473542715377
Iteration: 8, Func. Count: 121, Neg. LLF: 98.93844178811834
Iteration: 9, Func. Count: 136, Neg. LLF: 98.14943264442002
Iteration: 10, Func. Count: 150, Neg. LLF: 98.14751866301036
Iteration: 11, Func. Count: 164, Neg. LLF: 98.14416028357685
Iteration: 12, Func. Count: 178, Neg. LLF: 98.13639016154204
Iteration: 13, Func. Count: 192, Neg. LLF: 98.12355507314007
Iteration: 14, Func. Count: 206, Neg. LLF: 98.13345317860713
Iteration: 15, Func. Count: 221, Neg. LLF: 98.10810891345776
Iteration: 16, Func. Count: 235, Neg. LLF: 98.10569120194857
Iteration: 17, Func. Count: 249, Neg. LLF: 98.10549791453819
Iteration: 18, Func. Count: 263, Neg. LLF: 98.1054968862787
Iteration: 19, Func. Count: 278, Neg. LLF: 98.10548980242176
Optimization terminated successfully (Exit mode 0)
Current function value: 98.10548980242176
Iterations: 19
Function evaluations: 278
Gradient evaluations: 19
Iteration: 1, Func. Count: 8, Neg. LLF: 148.88710956599883
Iteration: 2, Func. Count: 18, Neg. LLF: 152.8854018451097
Iteration: 3, Func. Count: 26, Neg. LLF: 99.85174201289674
Iteration: 4, Func. Count: 33, Neg. LLF: 99.84449634709549
Iteration: 5, Func. Count: 40, Neg. LLF: 99.83988237948556
Iteration: 6, Func. Count: 47, Neg. LLF: 99.83976601994232
Iteration: 7, Func. Count: 54, Neg. LLF: 99.83963337361988
Iteration: 8, Func. Count: 61, Neg. LLF: 99.83962922008973
Iteration: 9, Func. Count: 67, Neg. LLF: 99.83962929955301
Optimization terminated successfully (Exit mode 0)
Current function value: 99.83962922008973
Iterations: 9
Function evaluations: 67
Gradient evaluations: 9
Iteration: 1, Func. Count: 9, Neg. LLF: 180.2250231681987
Iteration: 2, Func. Count: 21, Neg. LLF: 98.53338592946152
Iteration: 3, Func. Count: 29, Neg. LLF: 98.10851296656831
Iteration: 4, Func. Count: 37, Neg. LLF: 98.64309628161757
Iteration: 5, Func. Count: 47, Neg. LLF: 98.10763386875477
Iteration: 6, Func. Count: 55, Neg. LLF: 98.10762101712982
Iteration: 7, Func. Count: 62, Neg. LLF: 98.1076211494748
Optimization terminated successfully (Exit mode 0)
Current function value: 98.10762101712982
Iterations: 7
Function evaluations: 62
Gradient evaluations: 7
Iteration: 1, Func. Count: 10, Neg. LLF: 175.32026095377728
Iteration: 2, Func. Count: 23, Neg. LLF: 98.52619624731932
Iteration: 3, Func. Count: 32, Neg. LLF: 98.30107859198877
Iteration: 4, Func. Count: 41, Neg. LLF: 111.36598896252559
Iteration: 5, Func. Count: 51, Neg. LLF: 98.24620573088225
Iteration: 6, Func. Count: 61, Neg. LLF: 97.98896804274474
Iteration: 7, Func. Count: 70, Neg. LLF: 97.96497618307049
Iteration: 8, Func. Count: 79, Neg. LLF: 97.96052059976648
Iteration: 9, Func. Count: 88, Neg. LLF: 97.95972357888316
Iteration: 10, Func. Count: 97, Neg. LLF: 97.95970770767141
Iteration: 11, Func. Count: 105, Neg. LLF: 97.95970759705692
Optimization terminated successfully (Exit mode 0)
Current function value: 97.95970770767141
Iterations: 11
Function evaluations: 105
Gradient evaluations: 11
Iteration: 1, Func. Count: 11, Neg. LLF: 173.3905972667455
Iteration: 2, Func. Count: 25, Neg. LLF: 98.67516587971923
Iteration: 3, Func. Count: 35, Neg. LLF: 98.27208675916313
Iteration: 4, Func. Count: 45, Neg. LLF: 125.33740703872148
Iteration: 5, Func. Count: 56, Neg. LLF: 94.68652547520553
Iteration: 6, Func. Count: 66, Neg. LLF: 95.64396924517155
Iteration: 7, Func. Count: 77, Neg. LLF: 93.21988663577056
Iteration: 8, Func. Count: 87, Neg. LLF: 93.16641921783139
Iteration: 9, Func. Count: 97, Neg. LLF: 93.16339969590854
Iteration: 10, Func. Count: 107, Neg. LLF: 93.1618732937751
Iteration: 11, Func. Count: 117, Neg. LLF: 93.16171976155779
Iteration: 12, Func. Count: 127, Neg. LLF: 93.16170940493225
Iteration: 13, Func. Count: 137, Neg. LLF: 93.161707883084
Iteration: 14, Func. Count: 147, Neg. LLF: 93.16170547414698
Iteration: 15, Func. Count: 157, Neg. LLF: 93.16185554744699
Optimization terminated successfully (Exit mode 0)
Current function value: 93.16170543166491
Iterations: 16
Function evaluations: 159
Gradient evaluations: 15
Iteration: 1, Func. Count: 12, Neg. LLF: 176.55395078495323
Iteration: 2, Func. Count: 27, Neg. LLF: 98.76585543797627
Iteration: 3, Func. Count: 38, Neg. LLF: 98.44188313495475
Iteration: 4, Func. Count: 49, Neg. LLF: 98.2644927198259
Iteration: 5, Func. Count: 60, Neg. LLF: 98.16761543696659
Iteration: 6, Func. Count: 71, Neg. LLF: 98.15783816472253
Iteration: 7, Func. Count: 82, Neg. LLF: 98.15682056082878
Iteration: 8, Func. Count: 93, Neg. LLF: 98.58939040164522
Iteration: 9, Func. Count: 105, Neg. LLF: 98.58295295039706
Iteration: 10, Func. Count: 118, Neg. LLF: 99.12694542482853
Iteration: 11, Func. Count: 131, Neg. LLF: 98.15437613292188
Iteration: 12, Func. Count: 142, Neg. LLF: 98.15430046420013
Iteration: 13, Func. Count: 153, Neg. LLF: 98.15401571235043
Iteration: 14, Func. Count: 164, Neg. LLF: 98.1533792113931
Iteration: 15, Func. Count: 175, Neg. LLF: 98.152595147091
Iteration: 16, Func. Count: 186, Neg. LLF: 98.15200374956743
Iteration: 17, Func. Count: 197, Neg. LLF: 98.15156785623074
Iteration: 18, Func. Count: 208, Neg. LLF: 98.15146393352659
Iteration: 19, Func. Count: 219, Neg. LLF: 98.15146233294116
Iteration: 20, Func. Count: 229, Neg. LLF: 98.151462290286
Optimization terminated successfully (Exit mode 0)
Current function value: 98.15146233294116
Iterations: 20
Function evaluations: 229
Gradient evaluations: 20
Iteration: 1, Func. Count: 9, Neg. LLF: 123.34170712932819
Iteration: 2, Func. Count: 20, Neg. LLF: 121.88676785910728
Iteration: 3, Func. Count: 29, Neg. LLF: 100.51251178651184
Iteration: 4, Func. Count: 38, Neg. LLF: 99.418843380479
Iteration: 5, Func. Count: 46, Neg. LLF: 99.35289094145334
Iteration: 6, Func. Count: 54, Neg. LLF: 99.32638741823283
Iteration: 7, Func. Count: 62, Neg. LLF: 99.32401582071965
Iteration: 8, Func. Count: 70, Neg. LLF: 99.32383150236643
Iteration: 9, Func. Count: 78, Neg. LLF: 99.32382467706613
Iteration: 10, Func. Count: 86, Neg. LLF: 99.32382232248835
Iteration: 11, Func. Count: 93, Neg. LLF: 99.32382232248513
Optimization terminated successfully (Exit mode 0)
Current function value: 99.32382232248835
Iterations: 11
Function evaluations: 93
Gradient evaluations: 11
Iteration: 1, Func. Count: 10, Neg. LLF: 183.74880492425092
Iteration: 2, Func. Count: 23, Neg. LLF: 98.75842271639979
Iteration: 3, Func. Count: 32, Neg. LLF: 98.69583271399208
Iteration: 4, Func. Count: 42, Neg. LLF: 325.50751495136
Iteration: 5, Func. Count: 53, Neg. LLF: 98.10878388939364
Iteration: 6, Func. Count: 62, Neg. LLF: 98.1076230372422
Iteration: 7, Func. Count: 71, Neg. LLF: 98.10762102239626
Iteration: 8, Func. Count: 79, Neg. LLF: 98.10762115472328
Optimization terminated successfully (Exit mode 0)
Current function value: 98.10762102239626
Iterations: 8
Function evaluations: 79
Gradient evaluations: 8
Iteration: 1, Func. Count: 11, Neg. LLF: 177.2696889456838
Iteration: 2, Func. Count: 25, Neg. LLF: 98.67069133912123
Iteration: 3, Func. Count: 35, Neg. LLF: 98.71374202001556
Iteration: 4, Func. Count: 46, Neg. LLF: 104.36019587997903
Iteration: 5, Func. Count: 57, Neg. LLF: 98.12759798357631
Iteration: 6, Func. Count: 67, Neg. LLF: 98.12755794838839
Iteration: 7, Func. Count: 77, Neg. LLF: 98.12754843404547
Iteration: 8, Func. Count: 87, Neg. LLF: 98.12744575396249
Iteration: 9, Func. Count: 97, Neg. LLF: 98.12968011013632
Iteration: 10, Func. Count: 108, Neg. LLF: 98.13710700671523
Iteration: 11, Func. Count: 119, Neg. LLF: 98.13440501128127
Iteration: 12, Func. Count: 130, Neg. LLF: 102.50341226238206
Iteration: 13, Func. Count: 143, Neg. LLF: 98.1259165607566
Iteration: 14, Func. Count: 153, Neg. LLF: 98.13834050856616
Iteration: 15, Func. Count: 164, Neg. LLF: 98.13817619475316
Iteration: 16, Func. Count: 175, Neg. LLF: 98.13814657284378
Iteration: 17, Func. Count: 186, Neg. LLF: 98.218298927817
Iteration: 18, Func. Count: 198, Neg. LLF: 104.44124397556205
Iteration: 19, Func. Count: 211, Neg. LLF: 98.12316793740362
Iteration: 20, Func. Count: 221, Neg. LLF: 98.13550083880833
Iteration: 21, Func. Count: 232, Neg. LLF: 98.12298937428528
Iteration: 22, Func. Count: 242, Neg. LLF: 98.12298441073662
Iteration: 23, Func. Count: 251, Neg. LLF: 98.12298434082976
Optimization terminated successfully (Exit mode 0)
Current function value: 98.12298441073662
Iterations: 25
Function evaluations: 251
Gradient evaluations: 23
Iteration: 1, Func. Count: 12, Neg. LLF: 174.45381826729817
Iteration: 2, Func. Count: 27, Neg. LLF: 98.84305779318758
Iteration: 3, Func. Count: 38, Neg. LLF: 95.12108434841169
Iteration: 4, Func. Count: 49, Neg. LLF: 227.2743901653369
Iteration: 5, Func. Count: 61, Neg. LLF: 93.51184535638063
Iteration: 6, Func. Count: 72, Neg. LLF: 93.27318997955793
Iteration: 7, Func. Count: 83, Neg. LLF: 93.17018740951612
Iteration: 8, Func. Count: 94, Neg. LLF: 93.16233587155693
Iteration: 9, Func. Count: 105, Neg. LLF: 93.16171527844958
Iteration: 10, Func. Count: 116, Neg. LLF: 93.16171642687858
Optimization terminated successfully (Exit mode 0)
Current function value: 93.16171483988823
Iterations: 10
Function evaluations: 117
Gradient evaluations: 10
Iteration: 1, Func. Count: 13, Neg. LLF: 176.63195294648276
Iteration: 2, Func. Count: 30, Neg. LLF: 98.9172576077411
Iteration: 3, Func. Count: 43, Neg. LLF: 98.20831912602567
Iteration: 4, Func. Count: 55, Neg. LLF: 98.15672171997355
Iteration: 5, Func. Count: 67, Neg. LLF: 98.15574360523138
Iteration: 6, Func. Count: 79, Neg. LLF: 98.1552472556252
Iteration: 7, Func. Count: 91, Neg. LLF: 98.2006332791826
Iteration: 8, Func. Count: 104, Neg. LLF: 98.29287697951152
Iteration: 9, Func. Count: 117, Neg. LLF: 98.15477446396227
Iteration: 10, Func. Count: 129, Neg. LLF: 98.15466477918964
Iteration: 11, Func. Count: 141, Neg. LLF: 98.15451900330048
Iteration: 12, Func. Count: 153, Neg. LLF: 98.15416968512912
Iteration: 13, Func. Count: 165, Neg. LLF: 98.15350715050793
Iteration: 14, Func. Count: 177, Neg. LLF: 98.1524055988771
Iteration: 15, Func. Count: 189, Neg. LLF: 98.15316262132376
Iteration: 16, Func. Count: 202, Neg. LLF: 98.1514893879435
Iteration: 17, Func. Count: 214, Neg. LLF: 98.1514625843452
Iteration: 18, Func. Count: 225, Neg. LLF: 98.15146254171691
Optimization terminated successfully (Exit mode 0)
Current function value: 98.1514625843452
Iterations: 18
Function evaluations: 225
Gradient evaluations: 18
Iteration: 1, Func. Count: 10, Neg. LLF: 148.0994415860637
Iteration: 2, Func. Count: 22, Neg. LLF: 184.36023198250516
Iteration: 3, Func. Count: 32, Neg. LLF: 99.33750710276074
Iteration: 4, Func. Count: 41, Neg. LLF: 99.3706067211867
Iteration: 5, Func. Count: 51, Neg. LLF: 99.32598911911829
Iteration: 6, Func. Count: 60, Neg. LLF: 99.32387554598601
Iteration: 7, Func. Count: 69, Neg. LLF: 99.32382548933123
Iteration: 8, Func. Count: 78, Neg. LLF: 99.32382228870799
Iteration: 9, Func. Count: 86, Neg. LLF: 99.32382231283697
Optimization terminated successfully (Exit mode 0)
Current function value: 99.32382228870799
Iterations: 9
Function evaluations: 86
Gradient evaluations: 9
Iteration: 1, Func. Count: 11, Neg. LLF: 184.02217286266824
Iteration: 2, Func. Count: 25, Neg. LLF: 98.72416600666605
Iteration: 3, Func. Count: 35, Neg. LLF: 99.42522747563305
Iteration: 4, Func. Count: 46, Neg. LLF: 446.22977396866276
Iteration: 5, Func. Count: 57, Neg. LLF: 98.109859264633
Iteration: 6, Func. Count: 67, Neg. LLF: 98.10810651936545
Iteration: 7, Func. Count: 77, Neg. LLF: 98.1076343233736
Iteration: 8, Func. Count: 87, Neg. LLF: 98.10762108606839
Iteration: 9, Func. Count: 96, Neg. LLF: 98.1076212185334
Optimization terminated successfully (Exit mode 0)
Current function value: 98.10762108606839
Iterations: 9
Function evaluations: 96
Gradient evaluations: 9
Iteration: 1, Func. Count: 12, Neg. LLF: 177.61925874514804
Iteration: 2, Func. Count: 27, Neg. LLF: 98.63262569657803
Iteration: 3, Func. Count: 38, Neg. LLF: 98.93869557698835
Iteration: 4, Func. Count: 50, Neg. LLF: 104.08336325642163
Iteration: 5, Func. Count: 62, Neg. LLF: 98.12760542405749
Iteration: 6, Func. Count: 73, Neg. LLF: 98.12757918372478
Iteration: 7, Func. Count: 84, Neg. LLF: 98.12757150414326
Iteration: 8, Func. Count: 95, Neg. LLF: 98.12756247478445
Iteration: 9, Func. Count: 106, Neg. LLF: 98.12744138029612
Iteration: 10, Func. Count: 117, Neg. LLF: 98.12583213271071
Iteration: 11, Func. Count: 128, Neg. LLF: 98.1230580262396
Iteration: 12, Func. Count: 139, Neg. LLF: 98.10961656251011
Iteration: 13, Func. Count: 150, Neg. LLF: 98.10804007898538
Iteration: 14, Func. Count: 161, Neg. LLF: 98.10763501254429
Iteration: 15, Func. Count: 172, Neg. LLF: 98.10762122906203
Iteration: 16, Func. Count: 182, Neg. LLF: 98.10762109812615
Optimization terminated successfully (Exit mode 0)
Current function value: 98.10762122906203
Iterations: 16
Function evaluations: 182
Gradient evaluations: 16
Iteration: 1, Func. Count: 13, Neg. LLF: 174.69012152362617
Iteration: 2, Func. Count: 29, Neg. LLF: 98.70220573100175
Iteration: 3, Func. Count: 41, Neg. LLF: 94.58987632296044
Iteration: 4, Func. Count: 53, Neg. LLF: 220.5463040385729
Iteration: 5, Func. Count: 66, Neg. LLF: 93.42755849198244
Iteration: 6, Func. Count: 78, Neg. LLF: 93.19114866054899
Iteration: 7, Func. Count: 90, Neg. LLF: 93.1621799903719
Iteration: 8, Func. Count: 102, Neg. LLF: 93.1617192760548
Iteration: 9, Func. Count: 114, Neg. LLF: 93.16172066523498
Iteration: 10, Func. Count: 126, Neg. LLF: 93.16233330542089
Optimization terminated successfully (Exit mode 0)
Current function value: 93.16172031522366
Iterations: 11
Function evaluations: 128
Gradient evaluations: 10
Iteration: 1, Func. Count: 14, Neg. LLF: 177.26075753000077
Iteration: 2, Func. Count: 32, Neg. LLF: 98.85765070879509
Iteration: 3, Func. Count: 46, Neg. LLF: 98.21172456279263
Iteration: 4, Func. Count: 59, Neg. LLF: 98.15662057665888
Iteration: 5, Func. Count: 72, Neg. LLF: 98.15568365731916
Iteration: 6, Func. Count: 85, Neg. LLF: 98.15522004162332
Iteration: 7, Func. Count: 98, Neg. LLF: 98.22871927140302
Iteration: 8, Func. Count: 112, Neg. LLF: 98.17535188274893
Iteration: 9, Func. Count: 126, Neg. LLF: 98.15469485871606
Iteration: 10, Func. Count: 139, Neg. LLF: 98.15456768211037
Iteration: 11, Func. Count: 152, Neg. LLF: 98.15414499856189
Iteration: 12, Func. Count: 165, Neg. LLF: 98.1535034104005
Iteration: 13, Func. Count: 178, Neg. LLF: 98.15310779402333
Iteration: 14, Func. Count: 191, Neg. LLF: 98.151907672433
Iteration: 15, Func. Count: 204, Neg. LLF: 98.15152853147437
Iteration: 16, Func. Count: 217, Neg. LLF: 98.15146313223939
Iteration: 17, Func. Count: 230, Neg. LLF: 98.15146235264244
Optimization terminated successfully (Exit mode 0)
Current function value: 98.15146235264244
Iterations: 17
Function evaluations: 230
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 154.1617249771022
Iteration: 2, Func. Count: 24, Neg. LLF: 194.05103999469446
Iteration: 3, Func. Count: 35, Neg. LLF: 99.35230005063481
Iteration: 4, Func. Count: 45, Neg. LLF: 99.47562958318771
Iteration: 5, Func. Count: 56, Neg. LLF: 99.32505131169067
Iteration: 6, Func. Count: 66, Neg. LLF: 99.32386106789001
Iteration: 7, Func. Count: 76, Neg. LLF: 99.32382340497941
Iteration: 8, Func. Count: 86, Neg. LLF: 99.32382228784294
Iteration: 9, Func. Count: 95, Neg. LLF: 99.32382227756992
Optimization terminated successfully (Exit mode 0)
Current function value: 99.32382228784294
Iterations: 9
Function evaluations: 95
Gradient evaluations: 9
Iteration: 1, Func. Count: 12, Neg. LLF: 184.1113027233161
Iteration: 2, Func. Count: 27, Neg. LLF: 98.71560780049641
Iteration: 3, Func. Count: 38, Neg. LLF: 99.67301540223262
Iteration: 4, Func. Count: 50, Neg. LLF: 408.6816052955533
Iteration: 5, Func. Count: 62, Neg. LLF: 98.11072648535227
Iteration: 6, Func. Count: 73, Neg. LLF: 98.10878001471394
Iteration: 7, Func. Count: 84, Neg. LLF: 98.10763483173288
Iteration: 8, Func. Count: 95, Neg. LLF: 98.10762111961553
Iteration: 9, Func. Count: 105, Neg. LLF: 98.10762125223732
Optimization terminated successfully (Exit mode 0)
Current function value: 98.10762111961553
Iterations: 9
Function evaluations: 105
Gradient evaluations: 9
Iteration: 1, Func. Count: 13, Neg. LLF: 177.61648031482136
Iteration: 2, Func. Count: 29, Neg. LLF: 98.6166585055039
Iteration: 3, Func. Count: 41, Neg. LLF: 98.96781994467261
Iteration: 4, Func. Count: 54, Neg. LLF: 103.76158099758723
Iteration: 5, Func. Count: 67, Neg. LLF: 98.12758431605916
Iteration: 6, Func. Count: 79, Neg. LLF: 98.12756166229993
Iteration: 7, Func. Count: 91, Neg. LLF: 98.12755150584394
Iteration: 8, Func. Count: 103, Neg. LLF: 98.12751037402212
Iteration: 9, Func. Count: 115, Neg. LLF: 98.12697888220177
Iteration: 10, Func. Count: 127, Neg. LLF: 98.13677516231769
Iteration: 11, Func. Count: 140, Neg. LLF: 98.12590442377925
Iteration: 12, Func. Count: 152, Neg. LLF: 98.12282094067781
Iteration: 13, Func. Count: 164, Neg. LLF: 98.11852928036816
Iteration: 14, Func. Count: 176, Neg. LLF: 98.10807613625653
Iteration: 15, Func. Count: 188, Neg. LLF: 98.10762269651782
Iteration: 16, Func. Count: 200, Neg. LLF: 98.10762101715905
Iteration: 17, Func. Count: 211, Neg. LLF: 98.10762088567152
Optimization terminated successfully (Exit mode 0)
Current function value: 98.10762101715905
Iterations: 17
Function evaluations: 211
Gradient evaluations: 17
Iteration: 1, Func. Count: 14, Neg. LLF: 174.7546980529034
Iteration: 2, Func. Count: 31, Neg. LLF: 98.45289068056057
Iteration: 3, Func. Count: 44, Neg. LLF: 95.39795076255004
Iteration: 4, Func. Count: 57, Neg. LLF: 243.1256723094287
Iteration: 5, Func. Count: 71, Neg. LLF: 93.85564151599667
Iteration: 6, Func. Count: 85, Neg. LLF: 93.17230305863588
Iteration: 7, Func. Count: 98, Neg. LLF: 93.16233830867488
Iteration: 8, Func. Count: 111, Neg. LLF: 93.16187494533506
Iteration: 9, Func. Count: 124, Neg. LLF: 93.16134853045287
Iteration: 10, Func. Count: 137, Neg. LLF: 93.16296743850147
Iteration: 11, Func. Count: 152, Neg. LLF: 93.1618559798294
Iteration: 12, Func. Count: 167, Neg. LLF: 93.16170552264256
Iteration: 13, Func. Count: 179, Neg. LLF: 93.16170519085979
Optimization terminated successfully (Exit mode 0)
Current function value: 93.16170552264256
Iterations: 14
Function evaluations: 179
Gradient evaluations: 13
Iteration: 1, Func. Count: 15, Neg. LLF: 177.0045947815577
Iteration: 2, Func. Count: 34, Neg. LLF: 98.8289914275361
Iteration: 3, Func. Count: 49, Neg. LLF: 98.21469047103203
Iteration: 4, Func. Count: 63, Neg. LLF: 98.15695737161538
Iteration: 5, Func. Count: 77, Neg. LLF: 98.15600626641171
Iteration: 6, Func. Count: 91, Neg. LLF: 98.94695240012764
Iteration: 7, Func. Count: 106, Neg. LLF: 100.11982823148878
Iteration: 8, Func. Count: 121, Neg. LLF: 98.14234478295857
Iteration: 9, Func. Count: 135, Neg. LLF: 98.11875795079087
Iteration: 10, Func. Count: 149, Neg. LLF: 98.10744218102018
Iteration: 11, Func. Count: 163, Neg. LLF: 98.10803254758179
Iteration: 12, Func. Count: 178, Neg. LLF: 98.10552701657166
Iteration: 13, Func. Count: 192, Neg. LLF: 98.10549365563314
Iteration: 14, Func. Count: 205, Neg. LLF: 98.10549361518834
Optimization terminated successfully (Exit mode 0)
Current function value: 98.10549365563314
Iterations: 14
Function evaluations: 205
Gradient evaluations: 14
Iteration: 1, Func. Count: 12, Neg. LLF: 157.80062956104118
Iteration: 2, Func. Count: 26, Neg. LLF: 180.85542149188697
Iteration: 3, Func. Count: 38, Neg. LLF: 99.3337253255512
Iteration: 4, Func. Count: 49, Neg. LLF: 99.32714778824777
Iteration: 5, Func. Count: 60, Neg. LLF: 99.33301015010026
Iteration: 6, Func. Count: 72, Neg. LLF: 99.32384329943042
Iteration: 7, Func. Count: 83, Neg. LLF: 99.32383312831037
Iteration: 8, Func. Count: 94, Neg. LLF: 99.32382228794296
Iteration: 9, Func. Count: 104, Neg. LLF: 99.323822321584
Optimization terminated successfully (Exit mode 0)
Current function value: 99.32382228794296
Iterations: 9
Function evaluations: 104
Gradient evaluations: 9
Iteration: 1, Func. Count: 13, Neg. LLF: 131.0008004798667
Iteration: 2, Func. Count: 30, Neg. LLF: 98.85745396936318
Iteration: 3, Func. Count: 42, Neg. LLF: 98.93624839733219
Iteration: 4, Func. Count: 55, Neg. LLF: 131.1715023997134
Iteration: 5, Func. Count: 69, Neg. LLF: 98.13530022604505
Iteration: 6, Func. Count: 81, Neg. LLF: 98.10837905797119
Iteration: 7, Func. Count: 93, Neg. LLF: 98.10762972638842
Iteration: 8, Func. Count: 105, Neg. LLF: 98.10762109839054
Iteration: 9, Func. Count: 116, Neg. LLF: 98.10762123108286
Optimization terminated successfully (Exit mode 0)
Current function value: 98.10762109839054
Iterations: 9
Function evaluations: 116
Gradient evaluations: 9
Iteration: 1, Func. Count: 14, Neg. LLF: 134.1654361199073
Iteration: 2, Func. Count: 32, Neg. LLF: 98.61785771505534
Iteration: 3, Func. Count: 45, Neg. LLF: 98.14645808644302
Iteration: 4, Func. Count: 58, Neg. LLF: 1544.0258055156498
Iteration: 5, Func. Count: 73, Neg. LLF: 101.71083050235885
Iteration: 6, Func. Count: 87, Neg. LLF: 97.91673613448103
Iteration: 7, Func. Count: 100, Neg. LLF: 97.89427367351558
Iteration: 8, Func. Count: 114, Neg. LLF: 97.85396432753723
Iteration: 9, Func. Count: 127, Neg. LLF: 97.85383889414199
Iteration: 10, Func. Count: 140, Neg. LLF: 97.85383831246632
Optimization terminated successfully (Exit mode 0)
Current function value: 97.85383831246632
Iterations: 10
Function evaluations: 140
Gradient evaluations: 10
Iteration: 1, Func. Count: 15, Neg. LLF: 136.16581420809527
Iteration: 2, Func. Count: 34, Neg. LLF: 97.13888047895942
Iteration: 3, Func. Count: 48, Neg. LLF: 93.17042757291114
Iteration: 4, Func. Count: 62, Neg. LLF: 4094.179018917766
Iteration: 5, Func. Count: 78, Neg. LLF: 109.91822775258058
Iteration: 6, Func. Count: 95, Neg. LLF: 91.83485187169605
Iteration: 7, Func. Count: 110, Neg. LLF: 91.51995198863601
Iteration: 8, Func. Count: 124, Neg. LLF: 91.48844759698008
Iteration: 9, Func. Count: 138, Neg. LLF: 92.93950788737284
Iteration: 10, Func. Count: 154, Neg. LLF: 91.563478732592
Iteration: 11, Func. Count: 170, Neg. LLF: 91.56046202918581
Iteration: 12, Func. Count: 186, Neg. LLF: 91.48633589998252
Iteration: 13, Func. Count: 199, Neg. LLF: 91.4863357626266
Optimization terminated successfully (Exit mode 0)
Current function value: 91.48633589998252
Iterations: 14
Function evaluations: 199
Gradient evaluations: 13
Iteration: 1, Func. Count: 16, Neg. LLF: 137.9595351036863
Iteration: 2, Func. Count: 36, Neg. LLF: 98.77099697639586
Iteration: 3, Func. Count: 52, Neg. LLF: 98.18520848791702
Iteration: 4, Func. Count: 67, Neg. LLF: 98.21849897635929
Iteration: 5, Func. Count: 83, Neg. LLF: 98.28504774083454
Iteration: 6, Func. Count: 99, Neg. LLF: 98.12215650973997
Iteration: 7, Func. Count: 114, Neg. LLF: 98.13545674380669
Iteration: 8, Func. Count: 130, Neg. LLF: 98.10550887490761
Iteration: 9, Func. Count: 145, Neg. LLF: 98.10549597449341
Iteration: 10, Func. Count: 160, Neg. LLF: 98.10550067714283
Iteration: 11, Func. Count: 176, Neg. LLF: 98.10549065866125
Iteration: 12, Func. Count: 191, Neg. LLF: 98.10548842800765
Optimization terminated successfully (Exit mode 0)
Current function value: 98.10548846850887
Iterations: 12
Function evaluations: 191
Gradient evaluations: 12
Iteration: 1, Func. Count: 6, Neg. LLF: 181.72939908493046
Iteration: 2, Func. Count: 15, Neg. LLF: 99.06251145332561
Iteration: 3, Func. Count: 21, Neg. LLF: 98.34615809768698
Iteration: 4, Func. Count: 26, Neg. LLF: 2296.1341470001958
Iteration: 5, Func. Count: 33, Neg. LLF: 98.12131561426236
Iteration: 6, Func. Count: 38, Neg. LLF: 98.10816293196537
Iteration: 7, Func. Count: 43, Neg. LLF: 98.10762455795803
Iteration: 8, Func. Count: 48, Neg. LLF: 98.10762102189732
Iteration: 9, Func. Count: 52, Neg. LLF: 98.10762115426361
Optimization terminated successfully (Exit mode 0)
Current function value: 98.10762102189732
Iterations: 9
Function evaluations: 52
Gradient evaluations: 9
Iteration: 1, Func. Count: 5, Neg. LLF: 122.43141785911189
Iteration: 2, Func. Count: 10, Neg. LLF: 130.1257494126509
Iteration: 3, Func. Count: 15, Neg. LLF: 115.22831210777082
Iteration: 4, Func. Count: 19, Neg. LLF: 114.71996941809351
Iteration: 5, Func. Count: 23, Neg. LLF: 114.51928594598459
Iteration: 6, Func. Count: 27, Neg. LLF: 114.47740340494606
Iteration: 7, Func. Count: 31, Neg. LLF: 114.47489811484006
Iteration: 8, Func. Count: 35, Neg. LLF: 114.47489352921542
Iteration: 9, Func. Count: 38, Neg. LLF: 114.47489353735756
Optimization terminated successfully (Exit mode 0)
Current function value: 114.47489352921542
Iterations: 9
Function evaluations: 38
Gradient evaluations: 9
Iteration: 1, Func. Count: 6, Neg. LLF: 172.52322572156976
Iteration: 2, Func. Count: 14, Neg. LLF: 134.27894104194135
Iteration: 3, Func. Count: 20, Neg. LLF: 134.03159602448605
Iteration: 4, Func. Count: 26, Neg. LLF: 110.9088109050018
Iteration: 5, Func. Count: 31, Neg. LLF: 110.84565449291588
Iteration: 6, Func. Count: 36, Neg. LLF: 110.81785594845356
Iteration: 7, Func. Count: 41, Neg. LLF: 110.17450821539214
Iteration: 8, Func. Count: 46, Neg. LLF: 110.51682016237845
Iteration: 9, Func. Count: 52, Neg. LLF: 109.70198141933186
Iteration: 10, Func. Count: 57, Neg. LLF: 109.65269863390046
Iteration: 11, Func. Count: 62, Neg. LLF: 109.61536111227115
Iteration: 12, Func. Count: 67, Neg. LLF: 109.60431731865424
Iteration: 13, Func. Count: 72, Neg. LLF: 109.6032665016319
Iteration: 14, Func. Count: 77, Neg. LLF: 109.60325312523248
Iteration: 15, Func. Count: 82, Neg. LLF: 109.63418685134648
Optimization terminated successfully (Exit mode 0)
Current function value: 109.60325305445443
Iterations: 16
Function evaluations: 85
Gradient evaluations: 15
Iteration: 1, Func. Count: 7, Neg. LLF: 168.114208819776
Iteration: 2, Func. Count: 16, Neg. LLF: 110.33390949892232
Iteration: 3, Func. Count: 22, Neg. LLF: 110.84586397528874
Iteration: 4, Func. Count: 29, Neg. LLF: 109.9372353876641
Iteration: 5, Func. Count: 35, Neg. LLF: 109.63192652109767
Iteration: 6, Func. Count: 41, Neg. LLF: 109.63076310023023
Iteration: 7, Func. Count: 47, Neg. LLF: 109.63075798636841
Iteration: 8, Func. Count: 52, Neg. LLF: 109.630758310424
Optimization terminated successfully (Exit mode 0)
Current function value: 109.63075798636841
Iterations: 8
Function evaluations: 52
Gradient evaluations: 8
Iteration: 1, Func. Count: 8, Neg. LLF: 169.4065677543315
Iteration: 2, Func. Count: 19, Neg. LLF: 110.79659525109058
Iteration: 3, Func. Count: 26, Neg. LLF: 109.66831769352056
Iteration: 4, Func. Count: 33, Neg. LLF: 109.63519940327438
Iteration: 5, Func. Count: 40, Neg. LLF: 109.63430678567573
Iteration: 6, Func. Count: 47, Neg. LLF: 109.6342563954347
Iteration: 7, Func. Count: 53, Neg. LLF: 109.6342566229384
Optimization terminated successfully (Exit mode 0)
Current function value: 109.6342563954347
Iterations: 7
Function evaluations: 53
Gradient evaluations: 7
Iteration: 1, Func. Count: 9, Neg. LLF: 177.79702731067326
Iteration: 2, Func. Count: 21, Neg. LLF: 111.09058114741904
Iteration: 3, Func. Count: 29, Neg. LLF: 109.99901323868177
Iteration: 4, Func. Count: 37, Neg. LLF: 109.89320857534865
Iteration: 5, Func. Count: 45, Neg. LLF: 109.85482713956834
Iteration: 6, Func. Count: 53, Neg. LLF: 109.81547541428696
Iteration: 7, Func. Count: 61, Neg. LLF: 109.81445556412145
Iteration: 8, Func. Count: 69, Neg. LLF: 109.81414361973566
Iteration: 9, Func. Count: 77, Neg. LLF: 109.81412893818317
Iteration: 10, Func. Count: 84, Neg. LLF: 109.81412874166055
Optimization terminated successfully (Exit mode 0)
Current function value: 109.81412893818317
Iterations: 10
Function evaluations: 84
Gradient evaluations: 10
Iteration: 1, Func. Count: 6, Neg. LLF: 135.930287639361
Iteration: 2, Func. Count: 13, Neg. LLF: 286.9031294204908
Iteration: 3, Func. Count: 19, Neg. LLF: 1685533.9684951254
Iteration: 4, Func. Count: 25, Neg. LLF: 112.03467469519566
Iteration: 5, Func. Count: 31, Neg. LLF: 109.67894036621132
Iteration: 6, Func. Count: 37, Neg. LLF: 108.73897632282903
Iteration: 7, Func. Count: 42, Neg. LLF: 108.29551999540884
Iteration: 8, Func. Count: 47, Neg. LLF: 108.05219506361662
Iteration: 9, Func. Count: 52, Neg. LLF: 108.02657923575502
Iteration: 10, Func. Count: 57, Neg. LLF: 108.02622563436563
Iteration: 11, Func. Count: 62, Neg. LLF: 108.02619932395916
Iteration: 12, Func. Count: 66, Neg. LLF: 108.02619931380865
Optimization terminated successfully (Exit mode 0)
Current function value: 108.02619932395916
Iterations: 12
Function evaluations: 66
Gradient evaluations: 12
Iteration: 1, Func. Count: 7, Neg. LLF: 172.39968252620835
Iteration: 2, Func. Count: 16, Neg. LLF: 111.47557139957082
Iteration: 3, Func. Count: 22, Neg. LLF: 120.03781541334965
Iteration: 4, Func. Count: 29, Neg. LLF: 115.49476819117879
Iteration: 5, Func. Count: 37, Neg. LLF: 110.50071252579909
Iteration: 6, Func. Count: 44, Neg. LLF: 108.21430247722684
Iteration: 7, Func. Count: 50, Neg. LLF: 108.18575226495305
Iteration: 8, Func. Count: 56, Neg. LLF: 108.16330132709179
Iteration: 9, Func. Count: 62, Neg. LLF: 108.12543608776446
Iteration: 10, Func. Count: 68, Neg. LLF: 108.01478408118392
Iteration: 11, Func. Count: 74, Neg. LLF: 107.97451986760946
Iteration: 12, Func. Count: 80, Neg. LLF: 107.96623941534763
Iteration: 13, Func. Count: 86, Neg. LLF: 107.96497066992177
Iteration: 14, Func. Count: 92, Neg. LLF: 107.96489052544918
Iteration: 15, Func. Count: 98, Neg. LLF: 107.96488283621089
Iteration: 16, Func. Count: 103, Neg. LLF: 107.96488280987367
Optimization terminated successfully (Exit mode 0)
Current function value: 107.96488283621089
Iterations: 16
Function evaluations: 103
Gradient evaluations: 16
Iteration: 1, Func. Count: 8, Neg. LLF: 167.75601469660717
Iteration: 2, Func. Count: 18, Neg. LLF: 113.18380333813712
Iteration: 3, Func. Count: 26, Neg. LLF: 112.28883957149347
Iteration: 4, Func. Count: 34, Neg. LLF: 108.46882765448471
Iteration: 5, Func. Count: 41, Neg. LLF: 108.29557951584488
Iteration: 6, Func. Count: 48, Neg. LLF: 108.37490958118171
Iteration: 7, Func. Count: 56, Neg. LLF: 108.03138309917428
Iteration: 8, Func. Count: 63, Neg. LLF: 108.02228996255454
Iteration: 9, Func. Count: 70, Neg. LLF: 108.01823576007821
Iteration: 10, Func. Count: 77, Neg. LLF: 107.99629497867168
Iteration: 11, Func. Count: 84, Neg. LLF: 107.97539579426872
Iteration: 12, Func. Count: 91, Neg. LLF: 107.9661539127544
Iteration: 13, Func. Count: 98, Neg. LLF: 107.96492337982966
Iteration: 14, Func. Count: 105, Neg. LLF: 107.96488551682863
Iteration: 15, Func. Count: 112, Neg. LLF: 107.96488255082488
Iteration: 16, Func. Count: 118, Neg. LLF: 107.96488255292387
Optimization terminated successfully (Exit mode 0)
Current function value: 107.96488255082488
Iterations: 16
Function evaluations: 118
Gradient evaluations: 16
Iteration: 1, Func. Count: 9, Neg. LLF: 167.85594084058337
Iteration: 2, Func. Count: 21, Neg. LLF: 116.29462393624706
Iteration: 3, Func. Count: 30, Neg. LLF: 118.26335855753122
Iteration: 4, Func. Count: 39, Neg. LLF: 108.87512348609485
Iteration: 5, Func. Count: 47, Neg. LLF: 112.50188472050705
Iteration: 6, Func. Count: 57, Neg. LLF: 111.16563463863295
Iteration: 7, Func. Count: 66, Neg. LLF: 108.60572534446064
Iteration: 8, Func. Count: 74, Neg. LLF: 108.42425329024317
Iteration: 9, Func. Count: 82, Neg. LLF: 108.31847848481937
Iteration: 10, Func. Count: 90, Neg. LLF: 108.22234781969935
Iteration: 11, Func. Count: 98, Neg. LLF: 108.15202522700369
Iteration: 12, Func. Count: 106, Neg. LLF: 108.10913712879221
Iteration: 13, Func. Count: 114, Neg. LLF: 108.01496937411076
Iteration: 14, Func. Count: 122, Neg. LLF: 108.00040947927516
Iteration: 15, Func. Count: 130, Neg. LLF: 107.97693366816388
Iteration: 16, Func. Count: 138, Neg. LLF: 107.97337194553037
Iteration: 17, Func. Count: 146, Neg. LLF: 107.97051368434389
Iteration: 18, Func. Count: 154, Neg. LLF: 107.9671391028059
Iteration: 19, Func. Count: 162, Neg. LLF: 107.96540370482043
Iteration: 20, Func. Count: 170, Neg. LLF: 107.96494754045068
Iteration: 21, Func. Count: 178, Neg. LLF: 107.96489227059158
Iteration: 22, Func. Count: 186, Neg. LLF: 107.96488768132616
Iteration: 23, Func. Count: 194, Neg. LLF: 107.96488323468671
Iteration: 24, Func. Count: 202, Neg. LLF: 107.9648825753215
Optimization terminated successfully (Exit mode 0)
Current function value: 107.9648825753215
Iterations: 24
Function evaluations: 202
Gradient evaluations: 24
Iteration: 1, Func. Count: 10, Neg. LLF: 176.2196452723454
Iteration: 2, Func. Count: 23, Neg. LLF: 119.06844218756842
Iteration: 3, Func. Count: 33, Neg. LLF: 121.98965796083927
Iteration: 4, Func. Count: 43, Neg. LLF: 110.38212458897053
Iteration: 5, Func. Count: 53, Neg. LLF: 109.21212867594586
Iteration: 6, Func. Count: 62, Neg. LLF: 110.53322863595004
Iteration: 7, Func. Count: 72, Neg. LLF: 109.20246129212191
Iteration: 8, Func. Count: 82, Neg. LLF: 108.77617013865627
Iteration: 9, Func. Count: 91, Neg. LLF: 108.61887984095729
Iteration: 10, Func. Count: 100, Neg. LLF: 108.55979224003785
Iteration: 11, Func. Count: 109, Neg. LLF: 108.457902659299
Iteration: 12, Func. Count: 118, Neg. LLF: 108.28542231878241
Iteration: 13, Func. Count: 127, Neg. LLF: 108.21810122962478
Iteration: 14, Func. Count: 136, Neg. LLF: 108.05940555792465
Iteration: 15, Func. Count: 145, Neg. LLF: 107.9966587048385
Iteration: 16, Func. Count: 154, Neg. LLF: 107.96725687970954
Iteration: 17, Func. Count: 163, Neg. LLF: 107.96529751866589
Iteration: 18, Func. Count: 172, Neg. LLF: 107.96490392814431
Iteration: 19, Func. Count: 181, Neg. LLF: 107.96488470703036
Iteration: 20, Func. Count: 190, Neg. LLF: 107.96488266657752
Iteration: 21, Func. Count: 198, Neg. LLF: 107.9648826867047
Optimization terminated successfully (Exit mode 0)
Current function value: 107.96488266657752
Iterations: 21
Function evaluations: 198
Gradient evaluations: 21
Iteration: 1, Func. Count: 7, Neg. LLF: 143.05437764814994
Iteration: 2, Func. Count: 15, Neg. LLF: 291.2022706993291
Iteration: 3, Func. Count: 22, Neg. LLF: 9215799.853645412
Iteration: 4, Func. Count: 29, Neg. LLF: 114.37137238537032
Iteration: 5, Func. Count: 36, Neg. LLF: 112.88963978118939
Iteration: 6, Func. Count: 43, Neg. LLF: 108.62556831474791
Iteration: 7, Func. Count: 49, Neg. LLF: 108.36106796724158
Iteration: 8, Func. Count: 55, Neg. LLF: 108.12142642314899
Iteration: 9, Func. Count: 61, Neg. LLF: 108.0158661768919
Iteration: 10, Func. Count: 67, Neg. LLF: 107.97811928235919
Iteration: 11, Func. Count: 73, Neg. LLF: 107.96951894000418
Iteration: 12, Func. Count: 79, Neg. LLF: 107.96914854292213
Iteration: 13, Func. Count: 85, Neg. LLF: 107.96914279028778
Iteration: 14, Func. Count: 91, Neg. LLF: 107.96914220170949
Optimization terminated successfully (Exit mode 0)
Current function value: 107.96914220170949
Iterations: 14
Function evaluations: 91
Gradient evaluations: 14
Iteration: 1, Func. Count: 8, Neg. LLF: 172.7539702579217
Iteration: 2, Func. Count: 18, Neg. LLF: 111.45528708354617
Iteration: 3, Func. Count: 25, Neg. LLF: 120.10177464257106
Iteration: 4, Func. Count: 33, Neg. LLF: 118.50253615847727
Iteration: 5, Func. Count: 42, Neg. LLF: 110.94605182554214
Iteration: 6, Func. Count: 50, Neg. LLF: 108.56532025322339
Iteration: 7, Func. Count: 58, Neg. LLF: 108.1491933761575
Iteration: 8, Func. Count: 65, Neg. LLF: 108.14079901350357
Iteration: 9, Func. Count: 72, Neg. LLF: 108.11274604083522
Iteration: 10, Func. Count: 79, Neg. LLF: 108.07403762960826
Iteration: 11, Func. Count: 86, Neg. LLF: 108.0319352117812
Iteration: 12, Func. Count: 93, Neg. LLF: 107.99920788702248
Iteration: 13, Func. Count: 100, Neg. LLF: 107.97837196943709
Iteration: 14, Func. Count: 107, Neg. LLF: 107.97058881921548
Iteration: 15, Func. Count: 114, Neg. LLF: 107.96868355224622
Iteration: 16, Func. Count: 121, Neg. LLF: 107.96563485127716
Iteration: 17, Func. Count: 128, Neg. LLF: 107.96523785331843
Iteration: 18, Func. Count: 135, Neg. LLF: 107.96504463292165
Iteration: 19, Func. Count: 142, Neg. LLF: 107.96491940592679
Iteration: 20, Func. Count: 149, Neg. LLF: 107.96488631986406
Iteration: 21, Func. Count: 156, Neg. LLF: 107.96488273919971
Iteration: 22, Func. Count: 162, Neg. LLF: 107.96488271290369
Optimization terminated successfully (Exit mode 0)
Current function value: 107.96488273919971
Iterations: 22
Function evaluations: 162
Gradient evaluations: 22
Iteration: 1, Func. Count: 9, Neg. LLF: 167.694778839571
Iteration: 2, Func. Count: 20, Neg. LLF: 113.04575074293048
Iteration: 3, Func. Count: 29, Neg. LLF: 112.40222509283738
Iteration: 4, Func. Count: 38, Neg. LLF: 108.45421919835448
Iteration: 5, Func. Count: 46, Neg. LLF: 108.2555206649805
Iteration: 6, Func. Count: 54, Neg. LLF: 108.39559115107089
Iteration: 7, Func. Count: 63, Neg. LLF: 108.05568246782644
Iteration: 8, Func. Count: 71, Neg. LLF: 108.01167580129295
Iteration: 9, Func. Count: 79, Neg. LLF: 108.00731795406587
Iteration: 10, Func. Count: 87, Neg. LLF: 108.0042117249184
Iteration: 11, Func. Count: 95, Neg. LLF: 107.99999879866188
Iteration: 12, Func. Count: 103, Neg. LLF: 107.98933851339729
Iteration: 13, Func. Count: 111, Neg. LLF: 107.97776514610918
Iteration: 14, Func. Count: 119, Neg. LLF: 107.97062412236659
Iteration: 15, Func. Count: 127, Neg. LLF: 107.96901707989502
Iteration: 16, Func. Count: 135, Neg. LLF: 107.96793090500024
Iteration: 17, Func. Count: 143, Neg. LLF: 107.96544971909681
Iteration: 18, Func. Count: 151, Neg. LLF: 107.96507842682104
Iteration: 19, Func. Count: 159, Neg. LLF: 107.96488559241244
Iteration: 20, Func. Count: 167, Neg. LLF: 107.96488365296938
Iteration: 21, Func. Count: 175, Neg. LLF: 107.96488253504748
Iteration: 22, Func. Count: 182, Neg. LLF: 107.96488253714695
Optimization terminated successfully (Exit mode 0)
Current function value: 107.96488253504748
Iterations: 22
Function evaluations: 182
Gradient evaluations: 22
Iteration: 1, Func. Count: 10, Neg. LLF: 167.92067615681086
Iteration: 2, Func. Count: 23, Neg. LLF: 116.26010145085444
Iteration: 3, Func. Count: 33, Neg. LLF: 117.56837213890296
Iteration: 4, Func. Count: 43, Neg. LLF: 108.88579642345346
Iteration: 5, Func. Count: 52, Neg. LLF: 110.8197195073414
Iteration: 6, Func. Count: 63, Neg. LLF: 110.65332005600047
Iteration: 7, Func. Count: 73, Neg. LLF: 108.59120509055306
Iteration: 8, Func. Count: 82, Neg. LLF: 108.46385287320682
Iteration: 9, Func. Count: 91, Neg. LLF: 108.33541314962943
Iteration: 10, Func. Count: 100, Neg. LLF: 108.19334354578172
Iteration: 11, Func. Count: 109, Neg. LLF: 108.14228772577273
Iteration: 12, Func. Count: 118, Neg. LLF: 108.10289642419059
Iteration: 13, Func. Count: 127, Neg. LLF: 107.99086128695139
Iteration: 14, Func. Count: 136, Neg. LLF: 107.98621256207976
Iteration: 15, Func. Count: 145, Neg. LLF: 107.98055269253287
Iteration: 16, Func. Count: 154, Neg. LLF: 107.97283131891398
Iteration: 17, Func. Count: 163, Neg. LLF: 107.97026745049337
Iteration: 18, Func. Count: 172, Neg. LLF: 107.96927268668574
Iteration: 19, Func. Count: 181, Neg. LLF: 107.96908383500849
Iteration: 20, Func. Count: 190, Neg. LLF: 107.96893143289188
Iteration: 21, Func. Count: 199, Neg. LLF: 107.96849780047265
Iteration: 22, Func. Count: 208, Neg. LLF: 107.96712629398759
Iteration: 23, Func. Count: 217, Neg. LLF: 107.96631560684384
Iteration: 24, Func. Count: 226, Neg. LLF: 107.96538875436327
Iteration: 25, Func. Count: 235, Neg. LLF: 107.96490435208372
Iteration: 26, Func. Count: 244, Neg. LLF: 107.96489019445664
Iteration: 27, Func. Count: 253, Neg. LLF: 107.9648825796388
Iteration: 28, Func. Count: 261, Neg. LLF: 107.96488256497183
Optimization terminated successfully (Exit mode 0)
Current function value: 107.9648825796388
Iterations: 28
Function evaluations: 261
Gradient evaluations: 28
Iteration: 1, Func. Count: 11, Neg. LLF: 176.37316838588325
Iteration: 2, Func. Count: 25, Neg. LLF: 119.12960055493573
Iteration: 3, Func. Count: 36, Neg. LLF: 122.11731993796468
Iteration: 4, Func. Count: 47, Neg. LLF: 110.19196193131312
Iteration: 5, Func. Count: 57, Neg. LLF: 110.72204968662325
Iteration: 6, Func. Count: 68, Neg. LLF: 110.83482269310875
Iteration: 7, Func. Count: 79, Neg. LLF: 111.39937487866288
Iteration: 8, Func. Count: 90, Neg. LLF: 108.74708018532392
Iteration: 9, Func. Count: 100, Neg. LLF: 108.71928409939402
Iteration: 10, Func. Count: 111, Neg. LLF: 108.55038546300771
Iteration: 11, Func. Count: 121, Neg. LLF: 108.44688279798635
Iteration: 12, Func. Count: 131, Neg. LLF: 108.78058631481386
Iteration: 13, Func. Count: 142, Neg. LLF: 108.32150514418514
Iteration: 14, Func. Count: 152, Neg. LLF: 108.20670561422125
Iteration: 15, Func. Count: 162, Neg. LLF: 108.11861981492858
Iteration: 16, Func. Count: 172, Neg. LLF: 108.05730997865602
Iteration: 17, Func. Count: 182, Neg. LLF: 108.01951493960154
Iteration: 18, Func. Count: 192, Neg. LLF: 107.98800197816846
Iteration: 19, Func. Count: 202, Neg. LLF: 107.97249721504902
Iteration: 20, Func. Count: 212, Neg. LLF: 107.96958256813718
Iteration: 21, Func. Count: 222, Neg. LLF: 107.9690106745484
Iteration: 22, Func. Count: 232, Neg. LLF: 107.96818417104436
Iteration: 23, Func. Count: 242, Neg. LLF: 107.96565682689054
Iteration: 24, Func. Count: 252, Neg. LLF: 107.96512443415284
Iteration: 25, Func. Count: 262, Neg. LLF: 107.96489192354278
Iteration: 26, Func. Count: 272, Neg. LLF: 107.96488526812041
Iteration: 27, Func. Count: 282, Neg. LLF: 107.96488254299112
Iteration: 28, Func. Count: 291, Neg. LLF: 107.96488256307461
Optimization terminated successfully (Exit mode 0)
Current function value: 107.96488254299112
Iterations: 28
Function evaluations: 291
Gradient evaluations: 28
Iteration: 1, Func. Count: 8, Neg. LLF: 138.7444064666297
Iteration: 2, Func. Count: 17, Neg. LLF: 364.12383175727035
Iteration: 3, Func. Count: 25, Neg. LLF: 9229194.747339785
Iteration: 4, Func. Count: 33, Neg. LLF: 115.72105322265006
Iteration: 5, Func. Count: 41, Neg. LLF: 113.86574440311227
Iteration: 6, Func. Count: 49, Neg. LLF: 108.71180948362361
Iteration: 7, Func. Count: 56, Neg. LLF: 108.44509881636935
Iteration: 8, Func. Count: 63, Neg. LLF: 108.2637450967284
Iteration: 9, Func. Count: 70, Neg. LLF: 108.0558546537263
Iteration: 10, Func. Count: 77, Neg. LLF: 107.98281308871886
Iteration: 11, Func. Count: 84, Neg. LLF: 107.9701092416422
Iteration: 12, Func. Count: 91, Neg. LLF: 107.96916919335925
Iteration: 13, Func. Count: 98, Neg. LLF: 107.96914642675927
Iteration: 14, Func. Count: 105, Neg. LLF: 107.96914219852744
Iteration: 15, Func. Count: 111, Neg. LLF: 107.96914220590835
Optimization terminated successfully (Exit mode 0)
Current function value: 107.96914219852744
Iterations: 15
Function evaluations: 111
Gradient evaluations: 15
Iteration: 1, Func. Count: 9, Neg. LLF: 172.884803131924
Iteration: 2, Func. Count: 20, Neg. LLF: 111.45897541260548
Iteration: 3, Func. Count: 28, Neg. LLF: 120.09277403274817
Iteration: 4, Func. Count: 37, Neg. LLF: 118.48747862978152
Iteration: 5, Func. Count: 47, Neg. LLF: 110.93699137776842
Iteration: 6, Func. Count: 56, Neg. LLF: 108.5601998286596
Iteration: 7, Func. Count: 65, Neg. LLF: 108.1484919651902
Iteration: 8, Func. Count: 73, Neg. LLF: 108.14011828884144
Iteration: 9, Func. Count: 81, Neg. LLF: 108.11238847556744
Iteration: 10, Func. Count: 89, Neg. LLF: 108.07382103861521
Iteration: 11, Func. Count: 97, Neg. LLF: 108.03183863047234
Iteration: 12, Func. Count: 105, Neg. LLF: 107.99917841201896
Iteration: 13, Func. Count: 113, Neg. LLF: 107.97841651406306
Iteration: 14, Func. Count: 121, Neg. LLF: 107.97058493865255
Iteration: 15, Func. Count: 129, Neg. LLF: 107.96868530399115
Iteration: 16, Func. Count: 137, Neg. LLF: 107.96564478547256
Iteration: 17, Func. Count: 145, Neg. LLF: 107.96524343399504
Iteration: 18, Func. Count: 153, Neg. LLF: 107.96504790249824
Iteration: 19, Func. Count: 161, Neg. LLF: 107.96492007064838
Iteration: 20, Func. Count: 169, Neg. LLF: 107.9648863872792
Iteration: 21, Func. Count: 177, Neg. LLF: 107.96488274236438
Iteration: 22, Func. Count: 184, Neg. LLF: 107.96488271606869
Optimization terminated successfully (Exit mode 0)
Current function value: 107.96488274236438
Iterations: 22
Function evaluations: 184
Gradient evaluations: 22
Iteration: 1, Func. Count: 10, Neg. LLF: 167.98023740022367
Iteration: 2, Func. Count: 22, Neg. LLF: 113.03725558271057
Iteration: 3, Func. Count: 32, Neg. LLF: 112.50966395318076
Iteration: 4, Func. Count: 42, Neg. LLF: 108.44115218999329
Iteration: 5, Func. Count: 51, Neg. LLF: 108.22800074857699
Iteration: 6, Func. Count: 60, Neg. LLF: 108.39064362013058
Iteration: 7, Func. Count: 70, Neg. LLF: 108.05051706548171
Iteration: 8, Func. Count: 79, Neg. LLF: 108.00930599201189
Iteration: 9, Func. Count: 88, Neg. LLF: 108.00519039343119
Iteration: 10, Func. Count: 97, Neg. LLF: 108.00170967594427
Iteration: 11, Func. Count: 106, Neg. LLF: 107.99756004020428
Iteration: 12, Func. Count: 115, Neg. LLF: 107.98810849160887
Iteration: 13, Func. Count: 124, Neg. LLF: 107.97745231961389
Iteration: 14, Func. Count: 133, Neg. LLF: 107.97065212289489
Iteration: 15, Func. Count: 142, Neg. LLF: 107.96897201280059
Iteration: 16, Func. Count: 151, Neg. LLF: 107.9674330206854
Iteration: 17, Func. Count: 160, Neg. LLF: 107.96531039683647
Iteration: 18, Func. Count: 169, Neg. LLF: 107.96502253788235
Iteration: 19, Func. Count: 178, Neg. LLF: 107.96488313809138
Iteration: 20, Func. Count: 187, Neg. LLF: 107.96488255210572
Optimization terminated successfully (Exit mode 0)
Current function value: 107.96488255210572
Iterations: 20
Function evaluations: 187
Gradient evaluations: 20
Iteration: 1, Func. Count: 11, Neg. LLF: 168.24302062008357
Iteration: 2, Func. Count: 25, Neg. LLF: 116.35586210641605
Iteration: 3, Func. Count: 36, Neg. LLF: 117.4402743405856
Iteration: 4, Func. Count: 47, Neg. LLF: 108.89513477520158
Iteration: 5, Func. Count: 57, Neg. LLF: 110.5198564104551
Iteration: 6, Func. Count: 69, Neg. LLF: 110.49575411915386
Iteration: 7, Func. Count: 80, Neg. LLF: 108.58845517333371
Iteration: 8, Func. Count: 90, Neg. LLF: 108.47209338116465
Iteration: 9, Func. Count: 100, Neg. LLF: 108.34828477758252
Iteration: 10, Func. Count: 110, Neg. LLF: 108.19537758414357
Iteration: 11, Func. Count: 120, Neg. LLF: 108.13674007725928
Iteration: 12, Func. Count: 130, Neg. LLF: 108.07505413443216
Iteration: 13, Func. Count: 140, Neg. LLF: 107.98201336939925
Iteration: 14, Func. Count: 150, Neg. LLF: 107.97917755252134
Iteration: 15, Func. Count: 160, Neg. LLF: 107.97704936645995
Iteration: 16, Func. Count: 170, Neg. LLF: 107.97445951543894
Iteration: 17, Func. Count: 180, Neg. LLF: 107.97241581197403
Iteration: 18, Func. Count: 190, Neg. LLF: 107.97060071217082
Iteration: 19, Func. Count: 200, Neg. LLF: 107.9696725860422
Iteration: 20, Func. Count: 210, Neg. LLF: 107.96933838149364
Iteration: 21, Func. Count: 220, Neg. LLF: 107.96919604642095
Iteration: 22, Func. Count: 230, Neg. LLF: 107.96907219462675
Iteration: 23, Func. Count: 240, Neg. LLF: 107.96894885991644
Iteration: 24, Func. Count: 250, Neg. LLF: 107.96865646285866
Iteration: 25, Func. Count: 260, Neg. LLF: 107.96759116287637
Iteration: 26, Func. Count: 270, Neg. LLF: 107.96650150357678
Iteration: 27, Func. Count: 280, Neg. LLF: 107.9656432498311
Iteration: 28, Func. Count: 290, Neg. LLF: 107.964888584943
Iteration: 29, Func. Count: 300, Neg. LLF: 107.96488314602163
Iteration: 30, Func. Count: 310, Neg. LLF: 107.96490188281759
Optimization terminated successfully (Exit mode 0)
Current function value: 107.96488308619759
Iterations: 31
Function evaluations: 311
Gradient evaluations: 30
Iteration: 1, Func. Count: 12, Neg. LLF: 176.87227333657395
Iteration: 2, Func. Count: 27, Neg. LLF: 119.26521378000113
Iteration: 3, Func. Count: 39, Neg. LLF: 122.0612009201398
Iteration: 4, Func. Count: 51, Neg. LLF: 110.12863393292449
Iteration: 5, Func. Count: 62, Neg. LLF: 110.71823409450738
Iteration: 6, Func. Count: 74, Neg. LLF: 110.67483578415397
Iteration: 7, Func. Count: 86, Neg. LLF: 111.53030576001808
Iteration: 8, Func. Count: 98, Neg. LLF: 108.73840544568822
Iteration: 9, Func. Count: 109, Neg. LLF: 108.7061786936626
Iteration: 10, Func. Count: 121, Neg. LLF: 108.57573258228638
Iteration: 11, Func. Count: 132, Neg. LLF: 108.45978884092956
Iteration: 12, Func. Count: 143, Neg. LLF: 108.42342683669123
Iteration: 13, Func. Count: 154, Neg. LLF: 108.24236038617425
Iteration: 14, Func. Count: 165, Neg. LLF: 108.14301556344896
Iteration: 15, Func. Count: 176, Neg. LLF: 108.10851641622361
Iteration: 16, Func. Count: 187, Neg. LLF: 107.99959215937344
Iteration: 17, Func. Count: 198, Neg. LLF: 107.97557906627173
Iteration: 18, Func. Count: 209, Neg. LLF: 107.96908016015229
Iteration: 19, Func. Count: 220, Neg. LLF: 107.96842238703563
Iteration: 20, Func. Count: 231, Neg. LLF: 107.96732106320775
Iteration: 21, Func. Count: 242, Neg. LLF: 107.96586769048709
Iteration: 22, Func. Count: 253, Neg. LLF: 107.96517433628617
Iteration: 23, Func. Count: 264, Neg. LLF: 107.96492010421389
Iteration: 24, Func. Count: 275, Neg. LLF: 107.96489555375993
Iteration: 25, Func. Count: 286, Neg. LLF: 107.9648825389695
Iteration: 26, Func. Count: 296, Neg. LLF: 107.96488255904296
Optimization terminated successfully (Exit mode 0)
Current function value: 107.9648825389695
Iterations: 26
Function evaluations: 296
Gradient evaluations: 26
Iteration: 1, Func. Count: 5, Neg. LLF: 144.37083852495962
Iteration: 2, Func. Count: 11, Neg. LLF: 130.34102576177514
Iteration: 3, Func. Count: 16, Neg. LLF: 112.78984117872734
Iteration: 4, Func. Count: 20, Neg. LLF: 112.63229188278831
Iteration: 5, Func. Count: 24, Neg. LLF: 112.62109363628367
Iteration: 6, Func. Count: 28, Neg. LLF: 112.62087355559912
Iteration: 7, Func. Count: 32, Neg. LLF: 112.62087035368084
Iteration: 8, Func. Count: 35, Neg. LLF: 112.62087037068021
Optimization terminated successfully (Exit mode 0)
Current function value: 112.62087035368084
Iterations: 8
Function evaluations: 35
Gradient evaluations: 8
Iteration: 1, Func. Count: 6, Neg. LLF: 171.8939890057571
Iteration: 2, Func. Count: 14, Neg. LLF: 110.00401378864589
Iteration: 3, Func. Count: 19, Neg. LLF: 126.98379853286983
Iteration: 4, Func. Count: 25, Neg. LLF: 109.63133664215648
Iteration: 5, Func. Count: 30, Neg. LLF: 109.60576228644558
Iteration: 6, Func. Count: 35, Neg. LLF: 109.60450853660844
Iteration: 7, Func. Count: 40, Neg. LLF: 109.60328609200884
Iteration: 8, Func. Count: 45, Neg. LLF: 109.60325348804726
Iteration: 9, Func. Count: 50, Neg. LLF: 109.60325296540374
Optimization terminated successfully (Exit mode 0)
Current function value: 109.60325296540374
Iterations: 9
Function evaluations: 50
Gradient evaluations: 9
Iteration: 1, Func. Count: 7, Neg. LLF: 167.06141380726888
Iteration: 2, Func. Count: 16, Neg. LLF: 110.15335321666954
Iteration: 3, Func. Count: 22, Neg. LLF: 110.92309360264747
Iteration: 4, Func. Count: 29, Neg. LLF: 109.66895584456458
Iteration: 5, Func. Count: 35, Neg. LLF: 109.6307895978801
Iteration: 6, Func. Count: 41, Neg. LLF: 109.63075833218518
Iteration: 7, Func. Count: 46, Neg. LLF: 109.63075865681475
Optimization terminated successfully (Exit mode 0)
Current function value: 109.63075833218518
Iterations: 7
Function evaluations: 46
Gradient evaluations: 7
Iteration: 1, Func. Count: 8, Neg. LLF: 165.21030431437043
Iteration: 2, Func. Count: 19, Neg. LLF: 110.64022482589833
Iteration: 3, Func. Count: 26, Neg. LLF: 109.6893048876081
Iteration: 4, Func. Count: 33, Neg. LLF: 109.63514810221159
Iteration: 5, Func. Count: 40, Neg. LLF: 109.63436264994073
Iteration: 6, Func. Count: 47, Neg. LLF: 109.63425640641788
Iteration: 7, Func. Count: 53, Neg. LLF: 109.6342566338882
Optimization terminated successfully (Exit mode 0)
Current function value: 109.63425640641788
Iterations: 7
Function evaluations: 53
Gradient evaluations: 7
Iteration: 1, Func. Count: 9, Neg. LLF: 173.51692718385877
Iteration: 2, Func. Count: 21, Neg. LLF: 110.88248182957287
Iteration: 3, Func. Count: 29, Neg. LLF: 109.97002518500067
Iteration: 4, Func. Count: 37, Neg. LLF: 109.84584244827995
Iteration: 5, Func. Count: 45, Neg. LLF: 109.82799692815293
Iteration: 6, Func. Count: 53, Neg. LLF: 109.78292802310224
Iteration: 7, Func. Count: 61, Neg. LLF: 109.73471795539422
Iteration: 8, Func. Count: 69, Neg. LLF: 109.70965148266515
Iteration: 9, Func. Count: 77, Neg. LLF: 109.67538738667353
Iteration: 10, Func. Count: 85, Neg. LLF: 109.67302038904897
Iteration: 11, Func. Count: 93, Neg. LLF: 109.66879498580016
Iteration: 12, Func. Count: 101, Neg. LLF: 109.657673888719
Iteration: 13, Func. Count: 109, Neg. LLF: 109.63595984071189
Iteration: 14, Func. Count: 117, Neg. LLF: 109.60623635055109
Iteration: 15, Func. Count: 125, Neg. LLF: 109.60417980811386
Iteration: 16, Func. Count: 133, Neg. LLF: 112.07519266568822
Iteration: 17, Func. Count: 144, Neg. LLF: 109.94305896652241
Iteration: 18, Func. Count: 154, Neg. LLF: 109.60325296677294
Iteration: 19, Func. Count: 161, Neg. LLF: 109.6032523655883
Optimization terminated successfully (Exit mode 0)
Current function value: 109.60325296677294
Iterations: 20
Function evaluations: 161
Gradient evaluations: 19
Iteration: 1, Func. Count: 6, Neg. LLF: 151.42167519115006
Iteration: 2, Func. Count: 13, Neg. LLF: 124.68155916284086
Iteration: 3, Func. Count: 19, Neg. LLF: 112.69137471467486
Iteration: 4, Func. Count: 24, Neg. LLF: 112.56477103322682
Iteration: 5, Func. Count: 29, Neg. LLF: 112.56213790007345
Iteration: 6, Func. Count: 34, Neg. LLF: 112.56202224281648
Iteration: 7, Func. Count: 39, Neg. LLF: 112.5620028934667
Iteration: 8, Func. Count: 43, Neg. LLF: 112.56200289346741
Optimization terminated successfully (Exit mode 0)
Current function value: 112.5620028934667
Iterations: 8
Function evaluations: 43
Gradient evaluations: 8
Iteration: 1, Func. Count: 7, Neg. LLF: 173.86974619060334
Iteration: 2, Func. Count: 16, Neg. LLF: 133.89833318768706
Iteration: 3, Func. Count: 23, Neg. LLF: 122.20499026905831
Iteration: 4, Func. Count: 30, Neg. LLF: 110.86723801366068
Iteration: 5, Func. Count: 36, Neg. LLF: 110.82977191512256
Iteration: 6, Func. Count: 42, Neg. LLF: 110.81576305835938
Iteration: 7, Func. Count: 48, Neg. LLF: 109.87675539626032
Iteration: 8, Func. Count: 54, Neg. LLF: 122.74447471845444
Iteration: 9, Func. Count: 61, Neg. LLF: 52359795.01945914
Iteration: 10, Func. Count: 71, Neg. LLF: 111.46354508993984
Iteration: 11, Func. Count: 78, Neg. LLF: 109.63784062489697
Iteration: 12, Func. Count: 84, Neg. LLF: 109.60409089463226
Iteration: 13, Func. Count: 90, Neg. LLF: 109.60326266712777
Iteration: 14, Func. Count: 96, Neg. LLF: 109.60325297066697
Iteration: 15, Func. Count: 101, Neg. LLF: 109.60325358571433
Optimization terminated successfully (Exit mode 0)
Current function value: 109.60325297066697
Iterations: 16
Function evaluations: 101
Gradient evaluations: 15
Iteration: 1, Func. Count: 8, Neg. LLF: 169.39809676984643
Iteration: 2, Func. Count: 18, Neg. LLF: 110.21208089359344
Iteration: 3, Func. Count: 25, Neg. LLF: 114.54836644642481
Iteration: 4, Func. Count: 33, Neg. LLF: 109.6488604244378
Iteration: 5, Func. Count: 40, Neg. LLF: 109.6314057736497
Iteration: 6, Func. Count: 47, Neg. LLF: 109.63076131402778
Iteration: 7, Func. Count: 54, Neg. LLF: 109.63075789581387
Iteration: 8, Func. Count: 60, Neg. LLF: 109.63075821988703
Optimization terminated successfully (Exit mode 0)
Current function value: 109.63075789581387
Iterations: 8
Function evaluations: 60
Gradient evaluations: 8
Iteration: 1, Func. Count: 9, Neg. LLF: 168.2511985922451
Iteration: 2, Func. Count: 21, Neg. LLF: 110.69687284358561
Iteration: 3, Func. Count: 29, Neg. LLF: 109.67884330935162
Iteration: 4, Func. Count: 37, Neg. LLF: 107.06180339616272
Iteration: 5, Func. Count: 45, Neg. LLF: 108.20518145411505
Iteration: 6, Func. Count: 54, Neg. LLF: 106.70435510183701
Iteration: 7, Func. Count: 63, Neg. LLF: 106.6195241402217
Iteration: 8, Func. Count: 71, Neg. LLF: 106.61925196260974
Iteration: 9, Func. Count: 79, Neg. LLF: 106.61890587152762
Iteration: 10, Func. Count: 87, Neg. LLF: 106.61890403256335
Iteration: 11, Func. Count: 94, Neg. LLF: 106.61890384267126
Optimization terminated successfully (Exit mode 0)
Current function value: 106.61890403256335
Iterations: 11
Function evaluations: 94
Gradient evaluations: 11
Iteration: 1, Func. Count: 10, Neg. LLF: 176.16485158096086
Iteration: 2, Func. Count: 23, Neg. LLF: 110.9639266822256
Iteration: 3, Func. Count: 32, Neg. LLF: 109.98434641177131
Iteration: 4, Func. Count: 41, Neg. LLF: 109.89124491802491
Iteration: 5, Func. Count: 50, Neg. LLF: 109.91754696182083
Iteration: 6, Func. Count: 60, Neg. LLF: 109.79032144065782
Iteration: 7, Func. Count: 69, Neg. LLF: 109.74195184854497
Iteration: 8, Func. Count: 78, Neg. LLF: 109.70011444110183
Iteration: 9, Func. Count: 87, Neg. LLF: 109.67259752092588
Iteration: 10, Func. Count: 96, Neg. LLF: 109.67130458036279
Iteration: 11, Func. Count: 105, Neg. LLF: 109.66314855652698
Iteration: 12, Func. Count: 114, Neg. LLF: 109.60538666977628
Iteration: 13, Func. Count: 123, Neg. LLF: 109.60413142346749
Iteration: 14, Func. Count: 132, Neg. LLF: 109.60355955267816
Iteration: 15, Func. Count: 141, Neg. LLF: 109.60372103226382
Iteration: 16, Func. Count: 151, Neg. LLF: 122.88880073785022
Iteration: 17, Func. Count: 163, Neg. LLF: 109.60366012467317
Iteration: 18, Func. Count: 173, Neg. LLF: 109.6032529634715
Iteration: 19, Func. Count: 181, Neg. LLF: 109.60325236230214
Optimization terminated successfully (Exit mode 0)
Current function value: 109.6032529634715
Iterations: 20
Function evaluations: 181
Gradient evaluations: 19
Iteration: 1, Func. Count: 7, Neg. LLF: 121.04054415235647
Iteration: 2, Func. Count: 14, Neg. LLF: 146.44115666241836
Iteration: 3, Func. Count: 21, Neg. LLF: 108.65856245743966
Iteration: 4, Func. Count: 27, Neg. LLF: 108.68478996780996
Iteration: 5, Func. Count: 34, Neg. LLF: 108.04247718733792
Iteration: 6, Func. Count: 40, Neg. LLF: 108.03079589584404
Iteration: 7, Func. Count: 46, Neg. LLF: 108.02679709570958
Iteration: 8, Func. Count: 52, Neg. LLF: 108.02623860004057
Iteration: 9, Func. Count: 58, Neg. LLF: 108.02620065106943
Iteration: 10, Func. Count: 64, Neg. LLF: 108.0261993310659
Iteration: 11, Func. Count: 69, Neg. LLF: 108.02619932091658
Optimization terminated successfully (Exit mode 0)
Current function value: 108.0261993310659
Iterations: 11
Function evaluations: 69
Gradient evaluations: 11
Iteration: 1, Func. Count: 8, Neg. LLF: 173.7493117496756
Iteration: 2, Func. Count: 18, Neg. LLF: 109.99697703215804
Iteration: 3, Func. Count: 25, Neg. LLF: 132.08559680509248
Iteration: 4, Func. Count: 33, Neg. LLF: 475.8886233016614
Iteration: 5, Func. Count: 43, Neg. LLF: 117.47888481553814
Iteration: 6, Func. Count: 51, Neg. LLF: 109.40002872926318
Iteration: 7, Func. Count: 59, Neg. LLF: 108.30310706774887
Iteration: 8, Func. Count: 66, Neg. LLF: 108.21136968017635
Iteration: 9, Func. Count: 73, Neg. LLF: 108.17620432182133
Iteration: 10, Func. Count: 80, Neg. LLF: 108.14597355051
Iteration: 11, Func. Count: 87, Neg. LLF: 108.09861771966361
Iteration: 12, Func. Count: 94, Neg. LLF: 108.0708493450186
Iteration: 13, Func. Count: 101, Neg. LLF: 108.04113765471219
Iteration: 14, Func. Count: 108, Neg. LLF: 108.00214136234479
Iteration: 15, Func. Count: 115, Neg. LLF: 107.97215050660337
Iteration: 16, Func. Count: 122, Neg. LLF: 107.96566176365657
Iteration: 17, Func. Count: 129, Neg. LLF: 107.96489153033284
Iteration: 18, Func. Count: 136, Neg. LLF: 107.96488337383242
Iteration: 19, Func. Count: 143, Neg. LLF: 107.9648826169599
Optimization terminated successfully (Exit mode 0)
Current function value: 107.9648826169599
Iterations: 19
Function evaluations: 143
Gradient evaluations: 19
Iteration: 1, Func. Count: 9, Neg. LLF: 169.0441392918815
Iteration: 2, Func. Count: 20, Neg. LLF: 112.15291582424068
Iteration: 3, Func. Count: 29, Neg. LLF: 113.30365153053766
Iteration: 4, Func. Count: 38, Neg. LLF: 108.63474489990438
Iteration: 5, Func. Count: 47, Neg. LLF: 108.40372010595088
Iteration: 6, Func. Count: 56, Neg. LLF: 108.24627049371603
Iteration: 7, Func. Count: 65, Neg. LLF: 108.05620760681401
Iteration: 8, Func. Count: 73, Neg. LLF: 108.04813358388458
Iteration: 9, Func. Count: 81, Neg. LLF: 108.03080811833739
Iteration: 10, Func. Count: 89, Neg. LLF: 108.00260774130508
Iteration: 11, Func. Count: 97, Neg. LLF: 107.97319896637157
Iteration: 12, Func. Count: 105, Neg. LLF: 107.96537092258767
Iteration: 13, Func. Count: 113, Neg. LLF: 107.96488982374088
Iteration: 14, Func. Count: 121, Neg. LLF: 107.96488284707999
Iteration: 15, Func. Count: 128, Neg. LLF: 107.96488284919275
Optimization terminated successfully (Exit mode 0)
Current function value: 107.96488284707999
Iterations: 15
Function evaluations: 128
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 166.75762808241132
Iteration: 2, Func. Count: 23, Neg. LLF: 117.40115529544951
Iteration: 3, Func. Count: 33, Neg. LLF: 114.3145065044113
Iteration: 4, Func. Count: 43, Neg. LLF: 109.3294330021433
Iteration: 5, Func. Count: 52, Neg. LLF: 109.0221720855907
Iteration: 6, Func. Count: 61, Neg. LLF: 110.77551496570182
Iteration: 7, Func. Count: 72, Neg. LLF: 108.83866326318255
Iteration: 8, Func. Count: 82, Neg. LLF: 108.61501505588005
Iteration: 9, Func. Count: 92, Neg. LLF: 108.47738451792067
Iteration: 10, Func. Count: 101, Neg. LLF: 108.27163786292603
Iteration: 11, Func. Count: 110, Neg. LLF: 108.17106143485798
Iteration: 12, Func. Count: 119, Neg. LLF: 108.12978774360988
Iteration: 13, Func. Count: 128, Neg. LLF: 108.09674530108197
Iteration: 14, Func. Count: 137, Neg. LLF: 108.00312429185784
Iteration: 15, Func. Count: 146, Neg. LLF: 107.99081187720854
Iteration: 16, Func. Count: 155, Neg. LLF: 107.98183204082966
Iteration: 17, Func. Count: 164, Neg. LLF: 107.97441075665348
Iteration: 18, Func. Count: 173, Neg. LLF: 107.96735383851198
Iteration: 19, Func. Count: 182, Neg. LLF: 107.96545051954176
Iteration: 20, Func. Count: 191, Neg. LLF: 107.96498280338241
Iteration: 21, Func. Count: 200, Neg. LLF: 107.96492846274695
Iteration: 22, Func. Count: 209, Neg. LLF: 107.96490828152344
Iteration: 23, Func. Count: 218, Neg. LLF: 107.96488765701903
Iteration: 24, Func. Count: 227, Neg. LLF: 107.96488319456323
Iteration: 25, Func. Count: 236, Neg. LLF: 107.96487942056872
Iteration: 26, Func. Count: 245, Neg. LLF: 107.96488266642291
Iteration: 27, Func. Count: 255, Neg. LLF: 107.96488282098156
Iteration: 28, Func. Count: 265, Neg. LLF: 107.96488252753473
Iteration: 29, Func. Count: 273, Neg. LLF: 107.96488251284504
Optimization terminated successfully (Exit mode 0)
Current function value: 107.96488252753473
Iterations: 30
Function evaluations: 273
Gradient evaluations: 29
Iteration: 1, Func. Count: 11, Neg. LLF: 174.3576469942401
Iteration: 2, Func. Count: 25, Neg. LLF: 119.24701877075368
Iteration: 3, Func. Count: 36, Neg. LLF: 122.62120877532173
Iteration: 4, Func. Count: 47, Neg. LLF: 109.6930865778728
Iteration: 5, Func. Count: 57, Neg. LLF: 109.85251179492406
Iteration: 6, Func. Count: 68, Neg. LLF: 109.73798647245103
Iteration: 7, Func. Count: 79, Neg. LLF: 108.88387508633133
Iteration: 8, Func. Count: 89, Neg. LLF: 108.73278049050523
Iteration: 9, Func. Count: 99, Neg. LLF: 108.53259514678102
Iteration: 10, Func. Count: 109, Neg. LLF: 109.56196721262592
Iteration: 11, Func. Count: 120, Neg. LLF: 108.36943576927447
Iteration: 12, Func. Count: 130, Neg. LLF: 108.31941410525478
Iteration: 13, Func. Count: 140, Neg. LLF: 108.27401494947073
Iteration: 14, Func. Count: 150, Neg. LLF: 108.22416486395682
Iteration: 15, Func. Count: 160, Neg. LLF: 108.15721493192736
Iteration: 16, Func. Count: 170, Neg. LLF: 108.12025175977232
Iteration: 17, Func. Count: 180, Neg. LLF: 108.01000406857538
Iteration: 18, Func. Count: 190, Neg. LLF: 107.98452071485143
Iteration: 19, Func. Count: 200, Neg. LLF: 107.98147016727431
Iteration: 20, Func. Count: 210, Neg. LLF: 107.97028686442945
Iteration: 21, Func. Count: 220, Neg. LLF: 107.96642389328439
Iteration: 22, Func. Count: 230, Neg. LLF: 107.96495458663354
Iteration: 23, Func. Count: 240, Neg. LLF: 107.96490036155733
Iteration: 24, Func. Count: 250, Neg. LLF: 107.96488972375029
Iteration: 25, Func. Count: 260, Neg. LLF: 107.9648828829167
Iteration: 26, Func. Count: 269, Neg. LLF: 107.96488290303876
Optimization terminated successfully (Exit mode 0)
Current function value: 107.9648828829167
Iterations: 26
Function evaluations: 269
Gradient evaluations: 26
Iteration: 1, Func. Count: 8, Neg. LLF: 119.14792494030262
Iteration: 2, Func. Count: 16, Neg. LLF: 150.64530364700866
Iteration: 3, Func. Count: 24, Neg. LLF: 108.72232760026787
Iteration: 4, Func. Count: 31, Neg. LLF: 108.75012180418139
Iteration: 5, Func. Count: 39, Neg. LLF: 108.06468876401429
Iteration: 6, Func. Count: 46, Neg. LLF: 108.07806761521199
Iteration: 7, Func. Count: 54, Neg. LLF: 108.09062597856725
Iteration: 8, Func. Count: 62, Neg. LLF: 107.96956424273068
Iteration: 9, Func. Count: 69, Neg. LLF: 107.96922700904275
Iteration: 10, Func. Count: 76, Neg. LLF: 107.96914619099887
Iteration: 11, Func. Count: 83, Neg. LLF: 107.96914228242606
Iteration: 12, Func. Count: 89, Neg. LLF: 107.96914227009975
Optimization terminated successfully (Exit mode 0)
Current function value: 107.96914228242606
Iterations: 12
Function evaluations: 89
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 174.06212765263425
Iteration: 2, Func. Count: 20, Neg. LLF: 109.99061231184487
Iteration: 3, Func. Count: 28, Neg. LLF: 132.12743536350666
Iteration: 4, Func. Count: 37, Neg. LLF: 152.26031911909118
Iteration: 5, Func. Count: 49, Neg. LLF: 118.17312271081832
Iteration: 6, Func. Count: 58, Neg. LLF: 108.79149636490817
Iteration: 7, Func. Count: 67, Neg. LLF: 108.19968899625624
Iteration: 8, Func. Count: 75, Neg. LLF: 108.15508453653592
Iteration: 9, Func. Count: 83, Neg. LLF: 108.13891643508359
Iteration: 10, Func. Count: 91, Neg. LLF: 108.12529626484367
Iteration: 11, Func. Count: 99, Neg. LLF: 108.08769575562638
Iteration: 12, Func. Count: 107, Neg. LLF: 108.05654242019013
Iteration: 13, Func. Count: 115, Neg. LLF: 108.0236379087547
Iteration: 14, Func. Count: 123, Neg. LLF: 107.99357325613961
Iteration: 15, Func. Count: 131, Neg. LLF: 107.97305351948727
Iteration: 16, Func. Count: 139, Neg. LLF: 107.96917231017659
Iteration: 17, Func. Count: 147, Neg. LLF: 107.96819272516552
Iteration: 18, Func. Count: 155, Neg. LLF: 107.96576646665336
Iteration: 19, Func. Count: 163, Neg. LLF: 107.96539669010451
Iteration: 20, Func. Count: 171, Neg. LLF: 107.96517891549138
Iteration: 21, Func. Count: 179, Neg. LLF: 107.964948772875
Iteration: 22, Func. Count: 187, Neg. LLF: 107.96488932651347
Iteration: 23, Func. Count: 195, Neg. LLF: 107.96488268979036
Iteration: 24, Func. Count: 202, Neg. LLF: 107.964882663434
Optimization terminated successfully (Exit mode 0)
Current function value: 107.96488268979036
Iterations: 24
Function evaluations: 202
Gradient evaluations: 24
Iteration: 1, Func. Count: 10, Neg. LLF: 168.95501612533604
Iteration: 2, Func. Count: 22, Neg. LLF: 112.0487641150189
Iteration: 3, Func. Count: 32, Neg. LLF: 113.44002053180847
Iteration: 4, Func. Count: 42, Neg. LLF: 108.63156291985047
Iteration: 5, Func. Count: 52, Neg. LLF: 108.24714295722404
Iteration: 6, Func. Count: 61, Neg. LLF: 108.34033560741183
Iteration: 7, Func. Count: 71, Neg. LLF: 108.91348711424244
Iteration: 8, Func. Count: 81, Neg. LLF: 108.03396008586392
Iteration: 9, Func. Count: 90, Neg. LLF: 108.02916977026166
Iteration: 10, Func. Count: 99, Neg. LLF: 108.02336254021786
Iteration: 11, Func. Count: 108, Neg. LLF: 108.00594086409816
Iteration: 12, Func. Count: 117, Neg. LLF: 107.98669136959623
Iteration: 13, Func. Count: 126, Neg. LLF: 107.97235045563555
Iteration: 14, Func. Count: 135, Neg. LLF: 107.96941379421921
Iteration: 15, Func. Count: 144, Neg. LLF: 107.96877792906163
Iteration: 16, Func. Count: 153, Neg. LLF: 107.96740475780416
Iteration: 17, Func. Count: 162, Neg. LLF: 107.96577750473614
Iteration: 18, Func. Count: 171, Neg. LLF: 107.96526189259635
Iteration: 19, Func. Count: 180, Neg. LLF: 107.96488704983122
Iteration: 20, Func. Count: 189, Neg. LLF: 107.96488375160045
Iteration: 21, Func. Count: 198, Neg. LLF: 107.9648825740996
Iteration: 22, Func. Count: 206, Neg. LLF: 107.9648825761704
Optimization terminated successfully (Exit mode 0)
Current function value: 107.9648825740996
Iterations: 22
Function evaluations: 206
Gradient evaluations: 22
Iteration: 1, Func. Count: 11, Neg. LLF: 166.8115499994482
Iteration: 2, Func. Count: 25, Neg. LLF: 117.36917686554084
Iteration: 3, Func. Count: 36, Neg. LLF: 114.02935998107303
Iteration: 4, Func. Count: 47, Neg. LLF: 109.68293439791334
Iteration: 5, Func. Count: 58, Neg. LLF: 109.55348025165225
Iteration: 6, Func. Count: 69, Neg. LLF: 109.10660295521838
Iteration: 7, Func. Count: 80, Neg. LLF: 108.6067273472644
Iteration: 8, Func. Count: 90, Neg. LLF: 108.66746616414946
Iteration: 9, Func. Count: 101, Neg. LLF: 108.437952698754
Iteration: 10, Func. Count: 111, Neg. LLF: 108.34724965886346
Iteration: 11, Func. Count: 121, Neg. LLF: 108.24267815611576
Iteration: 12, Func. Count: 131, Neg. LLF: 108.1700035393126
Iteration: 13, Func. Count: 141, Neg. LLF: 108.09441671018048
Iteration: 14, Func. Count: 151, Neg. LLF: 108.04582700102937
Iteration: 15, Func. Count: 161, Neg. LLF: 107.9847593497413
Iteration: 16, Func. Count: 171, Neg. LLF: 107.97046439136905
Iteration: 17, Func. Count: 181, Neg. LLF: 107.9691373679812
Iteration: 18, Func. Count: 191, Neg. LLF: 107.96875501673603
Iteration: 19, Func. Count: 201, Neg. LLF: 107.96836958267589
Iteration: 20, Func. Count: 211, Neg. LLF: 107.96702363026976
Iteration: 21, Func. Count: 221, Neg. LLF: 107.9662232315677
Iteration: 22, Func. Count: 231, Neg. LLF: 107.96503325946408
Iteration: 23, Func. Count: 241, Neg. LLF: 107.9649048181294
Iteration: 24, Func. Count: 251, Neg. LLF: 107.96488268932747
Iteration: 25, Func. Count: 260, Neg. LLF: 107.96488267464449
Optimization terminated successfully (Exit mode 0)
Current function value: 107.96488268932747
Iterations: 25
Function evaluations: 260
Gradient evaluations: 25
Iteration: 1, Func. Count: 12, Neg. LLF: 174.49315610529962
Iteration: 2, Func. Count: 27, Neg. LLF: 119.30724439734207
Iteration: 3, Func. Count: 39, Neg. LLF: 122.50548203335528
Iteration: 4, Func. Count: 51, Neg. LLF: 109.68458344973466
Iteration: 5, Func. Count: 62, Neg. LLF: 109.84266589661638
Iteration: 6, Func. Count: 74, Neg. LLF: 109.80909208270046
Iteration: 7, Func. Count: 86, Neg. LLF: 108.88923738050343
Iteration: 8, Func. Count: 97, Neg. LLF: 108.67554490696216
Iteration: 9, Func. Count: 108, Neg. LLF: 108.48814681795317
Iteration: 10, Func. Count: 119, Neg. LLF: 108.41257553741532
Iteration: 11, Func. Count: 130, Neg. LLF: 108.24917039991766
Iteration: 12, Func. Count: 141, Neg. LLF: 108.45381327249855
Iteration: 13, Func. Count: 153, Neg. LLF: 108.17744391269488
Iteration: 14, Func. Count: 164, Neg. LLF: 108.15122083320124
Iteration: 15, Func. Count: 175, Neg. LLF: 108.10490796705238
Iteration: 16, Func. Count: 186, Neg. LLF: 108.0332208923166
Iteration: 17, Func. Count: 197, Neg. LLF: 108.01959703381878
Iteration: 18, Func. Count: 208, Neg. LLF: 107.99996084054281
Iteration: 19, Func. Count: 219, Neg. LLF: 107.99154978405267
Iteration: 20, Func. Count: 230, Neg. LLF: 107.97560106155635
Iteration: 21, Func. Count: 241, Neg. LLF: 107.97066747934001
Iteration: 22, Func. Count: 252, Neg. LLF: 107.96967839131293
Iteration: 23, Func. Count: 263, Neg. LLF: 107.96940218299943
Iteration: 24, Func. Count: 274, Neg. LLF: 107.9690387625386
Iteration: 25, Func. Count: 285, Neg. LLF: 107.96882146299093
Iteration: 26, Func. Count: 296, Neg. LLF: 107.96857423845285
Iteration: 27, Func. Count: 307, Neg. LLF: 107.96802700588292
Iteration: 28, Func. Count: 318, Neg. LLF: 107.96667137689452
Iteration: 29, Func. Count: 329, Neg. LLF: 107.965936975273
Iteration: 30, Func. Count: 340, Neg. LLF: 107.9650833096478
Iteration: 31, Func. Count: 351, Neg. LLF: 107.96492323122233
Iteration: 32, Func. Count: 362, Neg. LLF: 107.96488342083101
Iteration: 33, Func. Count: 373, Neg. LLF: 107.96488251794875
Optimization terminated successfully (Exit mode 0)
Current function value: 107.96488251794875
Iterations: 33
Function evaluations: 373
Gradient evaluations: 33
Iteration: 1, Func. Count: 9, Neg. LLF: 125.24052902536252
Iteration: 2, Func. Count: 18, Neg. LLF: 148.57062761770808
Iteration: 3, Func. Count: 27, Neg. LLF: 108.71849642555202
Iteration: 4, Func. Count: 35, Neg. LLF: 109.18815374085463
Iteration: 5, Func. Count: 44, Neg. LLF: 108.09919327454138
Iteration: 6, Func. Count: 52, Neg. LLF: 107.99955241192791
Iteration: 7, Func. Count: 60, Neg. LLF: 108.30570391775876
Iteration: 8, Func. Count: 69, Neg. LLF: 107.96942459205825
Iteration: 9, Func. Count: 77, Neg. LLF: 107.96915694143215
Iteration: 10, Func. Count: 85, Neg. LLF: 107.96914531855184
Iteration: 11, Func. Count: 93, Neg. LLF: 107.96914341028804
Iteration: 12, Func. Count: 101, Neg. LLF: 107.96914229668903
Iteration: 13, Func. Count: 108, Neg. LLF: 107.96914230406595
Optimization terminated successfully (Exit mode 0)
Current function value: 107.96914229668903
Iterations: 13
Function evaluations: 108
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 174.17519976762424
Iteration: 2, Func. Count: 22, Neg. LLF: 109.99348559903969
Iteration: 3, Func. Count: 31, Neg. LLF: 132.18512057338395
Iteration: 4, Func. Count: 41, Neg. LLF: 152.10501437512386
Iteration: 5, Func. Count: 54, Neg. LLF: 122.86745076895924
Iteration: 6, Func. Count: 64, Neg. LLF: 109.41087108230428
Iteration: 7, Func. Count: 74, Neg. LLF: 108.19258987471986
Iteration: 8, Func. Count: 83, Neg. LLF: 108.15227162860177
Iteration: 9, Func. Count: 92, Neg. LLF: 108.1394502818497
Iteration: 10, Func. Count: 101, Neg. LLF: 108.1212181328647
Iteration: 11, Func. Count: 110, Neg. LLF: 108.088219982802
Iteration: 12, Func. Count: 119, Neg. LLF: 108.05340217608382
Iteration: 13, Func. Count: 128, Neg. LLF: 108.02014650687829
Iteration: 14, Func. Count: 137, Neg. LLF: 107.98968854619764
Iteration: 15, Func. Count: 146, Neg. LLF: 107.97292450669264
Iteration: 16, Func. Count: 155, Neg. LLF: 107.96910423112836
Iteration: 17, Func. Count: 164, Neg. LLF: 107.96745245604221
Iteration: 18, Func. Count: 173, Neg. LLF: 107.96573667771501
Iteration: 19, Func. Count: 182, Neg. LLF: 107.96520061976027
Iteration: 20, Func. Count: 191, Neg. LLF: 107.96499707930838
Iteration: 21, Func. Count: 200, Neg. LLF: 107.96491706071363
Iteration: 22, Func. Count: 209, Neg. LLF: 107.96488459962187
Iteration: 23, Func. Count: 218, Neg. LLF: 107.96488258072526
Iteration: 24, Func. Count: 226, Neg. LLF: 107.96488255437256
Optimization terminated successfully (Exit mode 0)
Current function value: 107.96488258072526
Iterations: 24
Function evaluations: 226
Gradient evaluations: 24
Iteration: 1, Func. Count: 11, Neg. LLF: 169.24019709911238
Iteration: 2, Func. Count: 24, Neg. LLF: 112.04512011482848
Iteration: 3, Func. Count: 35, Neg. LLF: 113.54842059257955
Iteration: 4, Func. Count: 46, Neg. LLF: 108.61620128063451
Iteration: 5, Func. Count: 57, Neg. LLF: 108.25247017431114
Iteration: 6, Func. Count: 67, Neg. LLF: 108.31724308950047
Iteration: 7, Func. Count: 78, Neg. LLF: 108.88566062467952
Iteration: 8, Func. Count: 89, Neg. LLF: 108.0312724953918
Iteration: 9, Func. Count: 99, Neg. LLF: 108.02659293016372
Iteration: 10, Func. Count: 109, Neg. LLF: 108.0211897398136
Iteration: 11, Func. Count: 119, Neg. LLF: 108.0041845126629
Iteration: 12, Func. Count: 129, Neg. LLF: 107.98615602864295
Iteration: 13, Func. Count: 139, Neg. LLF: 107.97225736595651
Iteration: 14, Func. Count: 149, Neg. LLF: 107.96941754243517
Iteration: 15, Func. Count: 159, Neg. LLF: 107.96878372976187
Iteration: 16, Func. Count: 169, Neg. LLF: 107.96731737977126
Iteration: 17, Func. Count: 179, Neg. LLF: 107.96576816211454
Iteration: 18, Func. Count: 189, Neg. LLF: 107.96523088861889
Iteration: 19, Func. Count: 199, Neg. LLF: 107.96489008858254
Iteration: 20, Func. Count: 209, Neg. LLF: 107.96488472513764
Iteration: 21, Func. Count: 219, Neg. LLF: 107.96488259205303
Iteration: 22, Func. Count: 228, Neg. LLF: 107.96488259412035
Optimization terminated successfully (Exit mode 0)
Current function value: 107.96488259205303
Iterations: 22
Function evaluations: 228
Gradient evaluations: 22
Iteration: 1, Func. Count: 12, Neg. LLF: 167.11954745266598
Iteration: 2, Func. Count: 27, Neg. LLF: 117.47299303703026
Iteration: 3, Func. Count: 39, Neg. LLF: 113.97332446894292
Iteration: 4, Func. Count: 51, Neg. LLF: 109.6986612850585
Iteration: 5, Func. Count: 63, Neg. LLF: 109.63605254540511
Iteration: 6, Func. Count: 75, Neg. LLF: 109.05953853898941
Iteration: 7, Func. Count: 87, Neg. LLF: 108.59845559982709
Iteration: 8, Func. Count: 98, Neg. LLF: 108.72100870646443
Iteration: 9, Func. Count: 110, Neg. LLF: 108.44641721529003
Iteration: 10, Func. Count: 121, Neg. LLF: 108.36100118972826
Iteration: 11, Func. Count: 132, Neg. LLF: 108.25142972416297
Iteration: 12, Func. Count: 143, Neg. LLF: 108.17254535710106
Iteration: 13, Func. Count: 154, Neg. LLF: 108.10152692937325
Iteration: 14, Func. Count: 165, Neg. LLF: 108.05354894370872
Iteration: 15, Func. Count: 176, Neg. LLF: 107.98700179617624
Iteration: 16, Func. Count: 187, Neg. LLF: 107.97050009802561
Iteration: 17, Func. Count: 198, Neg. LLF: 107.96911106812718
Iteration: 18, Func. Count: 209, Neg. LLF: 107.96878266832239
Iteration: 19, Func. Count: 220, Neg. LLF: 107.9683593179523
Iteration: 20, Func. Count: 231, Neg. LLF: 107.96776183013573
Iteration: 21, Func. Count: 242, Neg. LLF: 107.96606469477913
Iteration: 22, Func. Count: 253, Neg. LLF: 107.9654483552343
Iteration: 23, Func. Count: 264, Neg. LLF: 107.9650127008113
Iteration: 24, Func. Count: 275, Neg. LLF: 107.96492241720125
Iteration: 25, Func. Count: 286, Neg. LLF: 107.96488338363513
Iteration: 26, Func. Count: 297, Neg. LLF: 107.96488253564569
Optimization terminated successfully (Exit mode 0)
Current function value: 107.96488253564569
Iterations: 26
Function evaluations: 297
Gradient evaluations: 26
Iteration: 1, Func. Count: 13, Neg. LLF: 174.95652845095884
Iteration: 2, Func. Count: 29, Neg. LLF: 119.4443044906071
Iteration: 3, Func. Count: 42, Neg. LLF: 122.38591528092861
Iteration: 4, Func. Count: 55, Neg. LLF: 109.678927000546
Iteration: 5, Func. Count: 67, Neg. LLF: 109.85641614051991
Iteration: 6, Func. Count: 80, Neg. LLF: 109.84307035805834
Iteration: 7, Func. Count: 93, Neg. LLF: 108.89819596974506
Iteration: 8, Func. Count: 105, Neg. LLF: 108.68674017097483
Iteration: 9, Func. Count: 117, Neg. LLF: 108.5680947793487
Iteration: 10, Func. Count: 129, Neg. LLF: 108.44820246544214
Iteration: 11, Func. Count: 141, Neg. LLF: 108.34308355894399
Iteration: 12, Func. Count: 153, Neg. LLF: 108.23056109822016
Iteration: 13, Func. Count: 165, Neg. LLF: 108.0261370801658
Iteration: 14, Func. Count: 177, Neg. LLF: 107.99780904242412
Iteration: 15, Func. Count: 189, Neg. LLF: 107.97937288520555
Iteration: 16, Func. Count: 201, Neg. LLF: 107.9742414633827
Iteration: 17, Func. Count: 213, Neg. LLF: 107.96931628838423
Iteration: 18, Func. Count: 225, Neg. LLF: 107.96722042596673
Iteration: 19, Func. Count: 237, Neg. LLF: 107.96556326967064
Iteration: 20, Func. Count: 249, Neg. LLF: 107.9649649137981
Iteration: 21, Func. Count: 261, Neg. LLF: 107.96488478078545
Iteration: 22, Func. Count: 273, Neg. LLF: 107.96488255525573
Iteration: 23, Func. Count: 284, Neg. LLF: 107.96488257535854
Optimization terminated successfully (Exit mode 0)
Current function value: 107.96488255525573
Iterations: 23
Function evaluations: 284
Gradient evaluations: 23
Iteration: 1, Func. Count: 6, Neg. LLF: 128.3756913233315
Iteration: 2, Func. Count: 12, Neg. LLF: 139.89839549798575
Iteration: 3, Func. Count: 18, Neg. LLF: 113.20478551631919
Iteration: 4, Func. Count: 23, Neg. LLF: 113.05342802179338
Iteration: 5, Func. Count: 28, Neg. LLF: 112.9771725859587
Iteration: 6, Func. Count: 33, Neg. LLF: 112.97229608420909
Iteration: 7, Func. Count: 38, Neg. LLF: 112.97186910217377
Iteration: 8, Func. Count: 43, Neg. LLF: 112.97186705172439
Iteration: 9, Func. Count: 47, Neg. LLF: 112.971867051725
Optimization terminated successfully (Exit mode 0)
Current function value: 112.97186705172439
Iterations: 9
Function evaluations: 47
Gradient evaluations: 9
Iteration: 1, Func. Count: 7, Neg. LLF: 171.86150230796758
Iteration: 2, Func. Count: 16, Neg. LLF: 109.99240608860879
Iteration: 3, Func. Count: 22, Neg. LLF: 127.60251808695405
Iteration: 4, Func. Count: 29, Neg. LLF: 109.63458790607189
Iteration: 5, Func. Count: 35, Neg. LLF: 109.60903903937611
Iteration: 6, Func. Count: 41, Neg. LLF: 109.60540566343295
Iteration: 7, Func. Count: 47, Neg. LLF: 109.60329605893301
Iteration: 8, Func. Count: 53, Neg. LLF: 109.60325387732317
Iteration: 9, Func. Count: 59, Neg. LLF: 109.6032529507781
Optimization terminated successfully (Exit mode 0)
Current function value: 109.6032529507781
Iterations: 9
Function evaluations: 59
Gradient evaluations: 9
Iteration: 1, Func. Count: 8, Neg. LLF: 166.06317464977175
Iteration: 2, Func. Count: 18, Neg. LLF: 110.08882791036726
Iteration: 3, Func. Count: 25, Neg. LLF: 111.01087914353614
Iteration: 4, Func. Count: 33, Neg. LLF: 109.64080916537246
Iteration: 5, Func. Count: 40, Neg. LLF: 109.63078553863326
Iteration: 6, Func. Count: 47, Neg. LLF: 109.63075837680937
Iteration: 7, Func. Count: 53, Neg. LLF: 109.6307580523187
Optimization terminated successfully (Exit mode 0)
Current function value: 109.63075837680937
Iterations: 7
Function evaluations: 53
Gradient evaluations: 7
Iteration: 1, Func. Count: 9, Neg. LLF: 165.16644905345322
Iteration: 2, Func. Count: 21, Neg. LLF: 110.49165296978994
Iteration: 3, Func. Count: 29, Neg. LLF: 109.69236320411136
Iteration: 4, Func. Count: 37, Neg. LLF: 109.63627385766779
Iteration: 5, Func. Count: 45, Neg. LLF: 109.63440720875283
Iteration: 6, Func. Count: 53, Neg. LLF: 109.6342564515447
Iteration: 7, Func. Count: 60, Neg. LLF: 109.63425667893195
Optimization terminated successfully (Exit mode 0)
Current function value: 109.6342564515447
Iterations: 7
Function evaluations: 60
Gradient evaluations: 7
Iteration: 1, Func. Count: 10, Neg. LLF: 173.57311173620187
Iteration: 2, Func. Count: 23, Neg. LLF: 110.73079654504583
Iteration: 3, Func. Count: 32, Neg. LLF: 109.98631348682248
Iteration: 4, Func. Count: 41, Neg. LLF: 109.86524343564433
Iteration: 5, Func. Count: 50, Neg. LLF: 109.87274561043719
Iteration: 6, Func. Count: 60, Neg. LLF: 109.77555173796607
Iteration: 7, Func. Count: 69, Neg. LLF: 109.71396874662564
Iteration: 8, Func. Count: 78, Neg. LLF: 109.69956667632987
Iteration: 9, Func. Count: 87, Neg. LLF: 109.68204951499236
Iteration: 10, Func. Count: 96, Neg. LLF: 109.67469946959906
Iteration: 11, Func. Count: 105, Neg. LLF: 109.67139775729122
Iteration: 12, Func. Count: 114, Neg. LLF: 109.66723405224239
Iteration: 13, Func. Count: 123, Neg. LLF: 109.65963510441696
Iteration: 14, Func. Count: 132, Neg. LLF: 109.63913916085518
Iteration: 15, Func. Count: 141, Neg. LLF: 109.613007108028
Iteration: 16, Func. Count: 150, Neg. LLF: 109.60401490827735
Iteration: 17, Func. Count: 159, Neg. LLF: 133.79753813116864
Iteration: 18, Func. Count: 171, Neg. LLF: 109.606164992857
Iteration: 19, Func. Count: 181, Neg. LLF: 109.60325296774448
Optimization terminated successfully (Exit mode 0)
Current function value: 109.60325296774448
Iterations: 20
Function evaluations: 181
Gradient evaluations: 19
Iteration: 1, Func. Count: 7, Neg. LLF: 120.54999125855713
Iteration: 2, Func. Count: 14, Neg. LLF: 133.56793521640373
Iteration: 3, Func. Count: 21, Neg. LLF: 114.35465187119945
Iteration: 4, Func. Count: 27, Neg. LLF: 114.31741804672419
Iteration: 5, Func. Count: 34, Neg. LLF: 113.20361680972651
Iteration: 6, Func. Count: 40, Neg. LLF: 140.54440073866098
Iteration: 7, Func. Count: 48, Neg. LLF: 114.71070174405362
Iteration: 8, Func. Count: 56, Neg. LLF: 112.76337201338868
Iteration: 9, Func. Count: 62, Neg. LLF: 112.60183606984374
Iteration: 10, Func. Count: 68, Neg. LLF: 112.5634141390544
Iteration: 11, Func. Count: 74, Neg. LLF: 112.56232517131659
Iteration: 12, Func. Count: 80, Neg. LLF: 112.5620062559729
Iteration: 13, Func. Count: 86, Neg. LLF: 112.56200257829977
Iteration: 14, Func. Count: 91, Neg. LLF: 112.56200257830046
Optimization terminated successfully (Exit mode 0)
Current function value: 112.56200257829977
Iterations: 14
Function evaluations: 91
Gradient evaluations: 14
Iteration: 1, Func. Count: 8, Neg. LLF: 173.83517688302408
Iteration: 2, Func. Count: 18, Neg. LLF: 134.01930122068555
Iteration: 3, Func. Count: 26, Neg. LLF: 122.15293718577294
Iteration: 4, Func. Count: 34, Neg. LLF: 110.86538636055198
Iteration: 5, Func. Count: 41, Neg. LLF: 110.82850943673262
Iteration: 6, Func. Count: 48, Neg. LLF: 110.81414937321497
Iteration: 7, Func. Count: 55, Neg. LLF: 109.89491955612046
Iteration: 8, Func. Count: 62, Neg. LLF: 116.94512752229191
Iteration: 9, Func. Count: 70, Neg. LLF: 14522376.036287488
Iteration: 10, Func. Count: 79, Neg. LLF: 120.13425585546679
Iteration: 11, Func. Count: 88, Neg. LLF: 126.04018670701923
Iteration: 12, Func. Count: 96, Neg. LLF: 126.3430353613352
Iteration: 13, Func. Count: 105, Neg. LLF: 109.60331156566936
Iteration: 14, Func. Count: 112, Neg. LLF: 109.60325297599478
Iteration: 15, Func. Count: 118, Neg. LLF: 109.60325359072029
Optimization terminated successfully (Exit mode 0)
Current function value: 109.60325297599478
Iterations: 16
Function evaluations: 118
Gradient evaluations: 15
Iteration: 1, Func. Count: 9, Neg. LLF: 168.35659917471327
Iteration: 2, Func. Count: 20, Neg. LLF: 110.14609294530385
Iteration: 3, Func. Count: 28, Neg. LLF: 114.90823531410753
Iteration: 4, Func. Count: 37, Neg. LLF: 109.63965163287563
Iteration: 5, Func. Count: 45, Neg. LLF: 109.63132512967131
Iteration: 6, Func. Count: 53, Neg. LLF: 109.63075964990882
Iteration: 7, Func. Count: 61, Neg. LLF: 109.630757921766
Iteration: 8, Func. Count: 68, Neg. LLF: 109.63075824582917
Optimization terminated successfully (Exit mode 0)
Current function value: 109.630757921766
Iterations: 8
Function evaluations: 68
Gradient evaluations: 8
Iteration: 1, Func. Count: 10, Neg. LLF: 168.23270594867438
Iteration: 2, Func. Count: 23, Neg. LLF: 110.55983065841106
Iteration: 3, Func. Count: 32, Neg. LLF: 109.67847248303796
Iteration: 4, Func. Count: 41, Neg. LLF: 106.95793298481564
Iteration: 5, Func. Count: 50, Neg. LLF: 107.01328120260669
Iteration: 6, Func. Count: 60, Neg. LLF: 107.81822927907172
Iteration: 7, Func. Count: 70, Neg. LLF: 106.62211423303955
Iteration: 8, Func. Count: 79, Neg. LLF: 106.62022844905215
Iteration: 9, Func. Count: 88, Neg. LLF: 106.61908616565218
Iteration: 10, Func. Count: 97, Neg. LLF: 106.61891290634009
Iteration: 11, Func. Count: 106, Neg. LLF: 106.61890414412393
Iteration: 12, Func. Count: 114, Neg. LLF: 106.61890395421828
Optimization terminated successfully (Exit mode 0)
Current function value: 106.61890414412393
Iterations: 12
Function evaluations: 114
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 176.2572095853251
Iteration: 2, Func. Count: 25, Neg. LLF: 110.81318085451088
Iteration: 3, Func. Count: 35, Neg. LLF: 109.99664502361672
Iteration: 4, Func. Count: 45, Neg. LLF: 109.89049475745941
Iteration: 5, Func. Count: 55, Neg. LLF: 109.93372883558446
Iteration: 6, Func. Count: 66, Neg. LLF: 109.80280206126518
Iteration: 7, Func. Count: 76, Neg. LLF: 109.76381272001088
Iteration: 8, Func. Count: 86, Neg. LLF: 109.70808456878808
Iteration: 9, Func. Count: 96, Neg. LLF: 109.67252169224298
Iteration: 10, Func. Count: 106, Neg. LLF: 109.6576368153086
Iteration: 11, Func. Count: 116, Neg. LLF: 109.6536007626754
Iteration: 12, Func. Count: 126, Neg. LLF: 109.64301287900221
Iteration: 13, Func. Count: 136, Neg. LLF: 109.62279421088559
Iteration: 14, Func. Count: 146, Neg. LLF: 109.61127337190416
Iteration: 15, Func. Count: 156, Neg. LLF: 109.60338199642091
Iteration: 16, Func. Count: 166, Neg. LLF: 109.60325992338332
Iteration: 17, Func. Count: 176, Neg. LLF: 109.60325320560152
Iteration: 18, Func. Count: 186, Neg. LLF: 109.88471381728084
Optimization terminated successfully (Exit mode 0)
Current function value: 109.60325248728766
Iterations: 19
Function evaluations: 189
Gradient evaluations: 18
Iteration: 1, Func. Count: 8, Neg. LLF: 140.64069636192963
Iteration: 2, Func. Count: 16, Neg. LLF: 141.4565671961734
Iteration: 3, Func. Count: 24, Neg. LLF: 110.21097883233536
Iteration: 4, Func. Count: 32, Neg. LLF: 108.44243072852014
Iteration: 5, Func. Count: 39, Neg. LLF: 108.71172191481263
Iteration: 6, Func. Count: 47, Neg. LLF: 109.53923838669313
Iteration: 7, Func. Count: 55, Neg. LLF: 108.10273519869571
Iteration: 8, Func. Count: 62, Neg. LLF: 108.8412224898474
Iteration: 9, Func. Count: 70, Neg. LLF: 108.03630658278853
Iteration: 10, Func. Count: 78, Neg. LLF: 108.00182931905694
Iteration: 11, Func. Count: 85, Neg. LLF: 108.00072797959521
Iteration: 12, Func. Count: 92, Neg. LLF: 108.0006829043534
Iteration: 13, Func. Count: 99, Neg. LLF: 108.00067683960104
Iteration: 14, Func. Count: 105, Neg. LLF: 108.00067682969691
Optimization terminated successfully (Exit mode 0)
Current function value: 108.00067683960104
Iterations: 14
Function evaluations: 105
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 173.715153278902
Iteration: 2, Func. Count: 20, Neg. LLF: 109.88648145104186
Iteration: 3, Func. Count: 28, Neg. LLF: 122.82377615803323
Iteration: 4, Func. Count: 37, Neg. LLF: 280.2965643999897
Iteration: 5, Func. Count: 49, Neg. LLF: 116.7317924460477
Iteration: 6, Func. Count: 58, Neg. LLF: 109.12679210287428
Iteration: 7, Func. Count: 67, Neg. LLF: 108.54524491080838
Iteration: 8, Func. Count: 76, Neg. LLF: 108.2545233858184
Iteration: 9, Func. Count: 84, Neg. LLF: 108.20387598963787
Iteration: 10, Func. Count: 93, Neg. LLF: 108.09557679585905
Iteration: 11, Func. Count: 101, Neg. LLF: 108.04394543420423
Iteration: 12, Func. Count: 109, Neg. LLF: 108.00492033589637
Iteration: 13, Func. Count: 117, Neg. LLF: 107.96657547834829
Iteration: 14, Func. Count: 125, Neg. LLF: 107.93770016061934
Iteration: 15, Func. Count: 133, Neg. LLF: 107.93524587092278
Iteration: 16, Func. Count: 141, Neg. LLF: 107.93506986831497
Iteration: 17, Func. Count: 149, Neg. LLF: 107.93500514435392
Iteration: 18, Func. Count: 156, Neg. LLF: 107.93500511839059
Optimization terminated successfully (Exit mode 0)
Current function value: 107.93500514435392
Iterations: 18
Function evaluations: 156
Gradient evaluations: 18
Iteration: 1, Func. Count: 10, Neg. LLF: 168.01162117992928
Iteration: 2, Func. Count: 22, Neg. LLF: 111.87938228946771
Iteration: 3, Func. Count: 32, Neg. LLF: 113.30137529835534
Iteration: 4, Func. Count: 42, Neg. LLF: 124.4677505412419
Iteration: 5, Func. Count: 54, Neg. LLF: 108.80939991540296
Iteration: 6, Func. Count: 64, Neg. LLF: 108.51672084335412
Iteration: 7, Func. Count: 74, Neg. LLF: 108.2396273645578
Iteration: 8, Func. Count: 84, Neg. LLF: 108.01439169852344
Iteration: 9, Func. Count: 93, Neg. LLF: 108.00727848423284
Iteration: 10, Func. Count: 102, Neg. LLF: 107.99552411466524
Iteration: 11, Func. Count: 111, Neg. LLF: 107.96932056201885
Iteration: 12, Func. Count: 120, Neg. LLF: 107.9480361810649
Iteration: 13, Func. Count: 129, Neg. LLF: 107.9355660855745
Iteration: 14, Func. Count: 138, Neg. LLF: 107.93501165324119
Iteration: 15, Func. Count: 147, Neg. LLF: 107.93500500972021
Iteration: 16, Func. Count: 155, Neg. LLF: 107.93500501971796
Optimization terminated successfully (Exit mode 0)
Current function value: 107.93500500972021
Iterations: 16
Function evaluations: 155
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 166.73223752704817
Iteration: 2, Func. Count: 25, Neg. LLF: 116.5309304011737
Iteration: 3, Func. Count: 36, Neg. LLF: 113.32197905676692
Iteration: 4, Func. Count: 47, Neg. LLF: 111.29964650886035
Iteration: 5, Func. Count: 58, Neg. LLF: 109.68429840908382
Iteration: 6, Func. Count: 69, Neg. LLF: 108.76105902965996
Iteration: 7, Func. Count: 80, Neg. LLF: 110.29871470554261
Iteration: 8, Func. Count: 92, Neg. LLF: 108.85285306038435
Iteration: 9, Func. Count: 103, Neg. LLF: 108.36978291234622
Iteration: 10, Func. Count: 113, Neg. LLF: 108.30082299915455
Iteration: 11, Func. Count: 123, Neg. LLF: 108.16043334342687
Iteration: 12, Func. Count: 133, Neg. LLF: 108.0296410357638
Iteration: 13, Func. Count: 143, Neg. LLF: 107.96893453884411
Iteration: 14, Func. Count: 153, Neg. LLF: 107.93955925987653
Iteration: 15, Func. Count: 163, Neg. LLF: 107.93583364796612
Iteration: 16, Func. Count: 173, Neg. LLF: 107.93501042106676
Iteration: 17, Func. Count: 183, Neg. LLF: 107.93500551342687
Iteration: 18, Func. Count: 192, Neg. LLF: 107.9350055014744
Optimization terminated successfully (Exit mode 0)
Current function value: 107.93500551342687
Iterations: 18
Function evaluations: 192
Gradient evaluations: 18
Iteration: 1, Func. Count: 12, Neg. LLF: 174.42003592959384
Iteration: 2, Func. Count: 27, Neg. LLF: 118.59801298764239
Iteration: 3, Func. Count: 39, Neg. LLF: 123.55261723332688
Iteration: 4, Func. Count: 51, Neg. LLF: 109.8093444860114
Iteration: 5, Func. Count: 62, Neg. LLF: 112.1230556441831
Iteration: 6, Func. Count: 76, Neg. LLF: 111.3918449121401
Iteration: 7, Func. Count: 88, Neg. LLF: 109.39961766546715
Iteration: 8, Func. Count: 99, Neg. LLF: 109.46020759848085
Iteration: 9, Func. Count: 111, Neg. LLF: 109.90164930200805
Iteration: 10, Func. Count: 123, Neg. LLF: 108.55780726415037
Iteration: 11, Func. Count: 134, Neg. LLF: 108.4552260997135
Iteration: 12, Func. Count: 145, Neg. LLF: 108.26449065929843
Iteration: 13, Func. Count: 156, Neg. LLF: 108.14120024611299
Iteration: 14, Func. Count: 167, Neg. LLF: 108.01910983510012
Iteration: 15, Func. Count: 178, Neg. LLF: 107.95706697069468
Iteration: 16, Func. Count: 189, Neg. LLF: 107.94069118055413
Iteration: 17, Func. Count: 200, Neg. LLF: 107.93678428688703
Iteration: 18, Func. Count: 211, Neg. LLF: 107.93523058908774
Iteration: 19, Func. Count: 222, Neg. LLF: 107.9350646677129
Iteration: 20, Func. Count: 233, Neg. LLF: 107.93500963171807
Iteration: 21, Func. Count: 244, Neg. LLF: 107.93500650515631
Iteration: 22, Func. Count: 255, Neg. LLF: 107.93500491825506
Iteration: 23, Func. Count: 265, Neg. LLF: 107.9350049382536
Optimization terminated successfully (Exit mode 0)
Current function value: 107.93500491825506
Iterations: 23
Function evaluations: 265
Gradient evaluations: 23
Iteration: 1, Func. Count: 9, Neg. LLF: 145.61449433687199
Iteration: 2, Func. Count: 19, Neg. LLF: 161.44795507741568
Iteration: 3, Func. Count: 28, Neg. LLF: 110.88922338841502
Iteration: 4, Func. Count: 37, Neg. LLF: 108.55936922348826
Iteration: 5, Func. Count: 45, Neg. LLF: 108.57977183178771
Iteration: 6, Func. Count: 54, Neg. LLF: 108.98668716375249
Iteration: 7, Func. Count: 63, Neg. LLF: 108.02653184999511
Iteration: 8, Func. Count: 71, Neg. LLF: 107.93721173021049
Iteration: 9, Func. Count: 79, Neg. LLF: 107.92681623682536
Iteration: 10, Func. Count: 87, Neg. LLF: 107.92607616028994
Iteration: 11, Func. Count: 95, Neg. LLF: 107.92606006317847
Iteration: 12, Func. Count: 103, Neg. LLF: 107.92605521192242
Iteration: 13, Func. Count: 110, Neg. LLF: 107.92605519957463
Optimization terminated successfully (Exit mode 0)
Current function value: 107.92605521192242
Iterations: 13
Function evaluations: 110
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 174.02974953999473
Iteration: 2, Func. Count: 22, Neg. LLF: 109.87900758699803
Iteration: 3, Func. Count: 31, Neg. LLF: 123.06176401090617
Iteration: 4, Func. Count: 41, Neg. LLF: 143.1216570898574
Iteration: 5, Func. Count: 54, Neg. LLF: 137.32905845824715
Iteration: 6, Func. Count: 64, Neg. LLF: 111.73748382017598
Iteration: 7, Func. Count: 74, Neg. LLF: 108.74171063880219
Iteration: 8, Func. Count: 84, Neg. LLF: 108.78065231885044
Iteration: 9, Func. Count: 94, Neg. LLF: 108.08433924417218
Iteration: 10, Func. Count: 103, Neg. LLF: 108.04661697710517
Iteration: 11, Func. Count: 112, Neg. LLF: 108.0943425812505
Iteration: 12, Func. Count: 122, Neg. LLF: 108.02495728586041
Iteration: 13, Func. Count: 131, Neg. LLF: 108.020099022637
Iteration: 14, Func. Count: 140, Neg. LLF: 107.99392713337589
Iteration: 15, Func. Count: 149, Neg. LLF: 107.93076499934044
Iteration: 16, Func. Count: 158, Neg. LLF: 107.92615877166321
Iteration: 17, Func. Count: 167, Neg. LLF: 107.92606255385479
Iteration: 18, Func. Count: 176, Neg. LLF: 107.92605554272451
Iteration: 19, Func. Count: 184, Neg. LLF: 107.92605552067148
Optimization terminated successfully (Exit mode 0)
Current function value: 107.92605554272451
Iterations: 19
Function evaluations: 184
Gradient evaluations: 19
Iteration: 1, Func. Count: 11, Neg. LLF: 167.92997158486196
Iteration: 2, Func. Count: 24, Neg. LLF: 111.7792647910956
Iteration: 3, Func. Count: 35, Neg. LLF: 113.44606437389666
Iteration: 4, Func. Count: 46, Neg. LLF: 125.1742439117745
Iteration: 5, Func. Count: 59, Neg. LLF: 108.80224648557711
Iteration: 6, Func. Count: 70, Neg. LLF: 108.2332399685949
Iteration: 7, Func. Count: 80, Neg. LLF: 108.23772156641077
Iteration: 8, Func. Count: 91, Neg. LLF: 110.1987229565481
Iteration: 9, Func. Count: 102, Neg. LLF: 107.96575281069798
Iteration: 10, Func. Count: 112, Neg. LLF: 107.96178035985082
Iteration: 11, Func. Count: 122, Neg. LLF: 107.95975116830931
Iteration: 12, Func. Count: 132, Neg. LLF: 107.95098194276363
Iteration: 13, Func. Count: 142, Neg. LLF: 107.94169222870426
Iteration: 14, Func. Count: 152, Neg. LLF: 107.93303761569739
Iteration: 15, Func. Count: 162, Neg. LLF: 107.92738862846807
Iteration: 16, Func. Count: 172, Neg. LLF: 107.92620186913102
Iteration: 17, Func. Count: 182, Neg. LLF: 107.92605932841403
Iteration: 18, Func. Count: 192, Neg. LLF: 107.92605523170427
Iteration: 19, Func. Count: 201, Neg. LLF: 107.9260552422919
Optimization terminated successfully (Exit mode 0)
Current function value: 107.92605523170427
Iterations: 19
Function evaluations: 201
Gradient evaluations: 19
Iteration: 1, Func. Count: 12, Neg. LLF: 166.78305613096845
Iteration: 2, Func. Count: 27, Neg. LLF: 116.49991956644844
Iteration: 3, Func. Count: 39, Neg. LLF: 113.18017803079931
Iteration: 4, Func. Count: 51, Neg. LLF: 111.51325657387642
Iteration: 5, Func. Count: 63, Neg. LLF: 109.66880442568026
Iteration: 6, Func. Count: 75, Neg. LLF: 108.96175045503705
Iteration: 7, Func. Count: 87, Neg. LLF: 109.53902219769826
Iteration: 8, Func. Count: 100, Neg. LLF: 108.51670822670992
Iteration: 9, Func. Count: 111, Neg. LLF: 108.21333066583085
Iteration: 10, Func. Count: 122, Neg. LLF: 108.18402762665079
Iteration: 11, Func. Count: 133, Neg. LLF: 108.14443898738949
Iteration: 12, Func. Count: 144, Neg. LLF: 108.11550382157918
Iteration: 13, Func. Count: 155, Neg. LLF: 108.0784504787731
Iteration: 14, Func. Count: 166, Neg. LLF: 108.03061936347537
Iteration: 15, Func. Count: 177, Neg. LLF: 107.96968841919369
Iteration: 16, Func. Count: 188, Neg. LLF: 107.93789794114903
Iteration: 17, Func. Count: 199, Neg. LLF: 107.92754510867212
Iteration: 18, Func. Count: 210, Neg. LLF: 107.92612835735562
Iteration: 19, Func. Count: 221, Neg. LLF: 107.92606394498137
Iteration: 20, Func. Count: 232, Neg. LLF: 107.926055547463
Iteration: 21, Func. Count: 242, Neg. LLF: 107.92605553607956
Optimization terminated successfully (Exit mode 0)
Current function value: 107.926055547463
Iterations: 21
Function evaluations: 242
Gradient evaluations: 21
Iteration: 1, Func. Count: 13, Neg. LLF: 174.55388882260996
Iteration: 2, Func. Count: 29, Neg. LLF: 118.64714686943763
Iteration: 3, Func. Count: 42, Neg. LLF: 123.33432458051338
Iteration: 4, Func. Count: 55, Neg. LLF: 109.8096404455321
Iteration: 5, Func. Count: 67, Neg. LLF: 112.31808508568275
Iteration: 6, Func. Count: 82, Neg. LLF: 111.34215424766695
Iteration: 7, Func. Count: 95, Neg. LLF: 109.443360187455
Iteration: 8, Func. Count: 108, Neg. LLF: 108.87285389578284
Iteration: 9, Func. Count: 120, Neg. LLF: 109.62442505945938
Iteration: 10, Func. Count: 133, Neg. LLF: 109.79532147015732
Iteration: 11, Func. Count: 146, Neg. LLF: 108.36722257795624
Iteration: 12, Func. Count: 158, Neg. LLF: 108.31244540935351
Iteration: 13, Func. Count: 170, Neg. LLF: 108.18167357113408
Iteration: 14, Func. Count: 182, Neg. LLF: 108.07984996978196
Iteration: 15, Func. Count: 194, Neg. LLF: 108.00360981072566
Iteration: 16, Func. Count: 206, Neg. LLF: 107.95582134173057
Iteration: 17, Func. Count: 218, Neg. LLF: 107.93315504092661
Iteration: 18, Func. Count: 230, Neg. LLF: 107.92699564006183
Iteration: 19, Func. Count: 242, Neg. LLF: 107.92618062481908
Iteration: 20, Func. Count: 254, Neg. LLF: 107.92606394835647
Iteration: 21, Func. Count: 266, Neg. LLF: 107.92605698696032
Iteration: 22, Func. Count: 278, Neg. LLF: 107.92605527795581
Iteration: 23, Func. Count: 289, Neg. LLF: 107.92605530422902
Optimization terminated successfully (Exit mode 0)
Current function value: 107.92605527795581
Iterations: 23
Function evaluations: 289
Gradient evaluations: 23
Iteration: 1, Func. Count: 10, Neg. LLF: 141.7397854177201
Iteration: 2, Func. Count: 20, Neg. LLF: 148.98971776537226
Iteration: 3, Func. Count: 30, Neg. LLF: 111.22597756050494
Iteration: 4, Func. Count: 40, Neg. LLF: 109.01474442265639
Iteration: 5, Func. Count: 50, Neg. LLF: 108.55641785394587
Iteration: 6, Func. Count: 60, Neg. LLF: 109.24176610885604
Iteration: 7, Func. Count: 70, Neg. LLF: 108.56400750805479
Iteration: 8, Func. Count: 80, Neg. LLF: 107.94168593958904
Iteration: 9, Func. Count: 89, Neg. LLF: 107.93152526656843
Iteration: 10, Func. Count: 98, Neg. LLF: 107.92730035727064
Iteration: 11, Func. Count: 107, Neg. LLF: 107.92627566493985
Iteration: 12, Func. Count: 116, Neg. LLF: 107.92605770032841
Iteration: 13, Func. Count: 125, Neg. LLF: 107.92605526899287
Iteration: 14, Func. Count: 133, Neg. LLF: 107.92605528174184
Optimization terminated successfully (Exit mode 0)
Current function value: 107.92605526899287
Iterations: 14
Function evaluations: 133
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 174.14371444398225
Iteration: 2, Func. Count: 24, Neg. LLF: 109.8813695017936
Iteration: 3, Func. Count: 34, Neg. LLF: 123.35501276288453
Iteration: 4, Func. Count: 45, Neg. LLF: 143.09360698453338
Iteration: 5, Func. Count: 59, Neg. LLF: 139.30913926277225
Iteration: 6, Func. Count: 70, Neg. LLF: 112.15847591581237
Iteration: 7, Func. Count: 81, Neg. LLF: 108.72620282800649
Iteration: 8, Func. Count: 92, Neg. LLF: 108.87043419684147
Iteration: 9, Func. Count: 103, Neg. LLF: 108.08832314934597
Iteration: 10, Func. Count: 113, Neg. LLF: 108.0471322475537
Iteration: 11, Func. Count: 123, Neg. LLF: 108.05361898925784
Iteration: 12, Func. Count: 134, Neg. LLF: 108.02667082732917
Iteration: 13, Func. Count: 144, Neg. LLF: 108.02029382717616
Iteration: 14, Func. Count: 154, Neg. LLF: 108.00998156998867
Iteration: 15, Func. Count: 164, Neg. LLF: 107.98303987792129
Iteration: 16, Func. Count: 174, Neg. LLF: 107.95550137319948
Iteration: 17, Func. Count: 184, Neg. LLF: 107.93353379754019
Iteration: 18, Func. Count: 194, Neg. LLF: 107.9267689227001
Iteration: 19, Func. Count: 204, Neg. LLF: 107.92610212056715
Iteration: 20, Func. Count: 214, Neg. LLF: 107.92605621229926
Iteration: 21, Func. Count: 224, Neg. LLF: 107.92605523062785
Optimization terminated successfully (Exit mode 0)
Current function value: 107.92605523062785
Iterations: 21
Function evaluations: 224
Gradient evaluations: 21
Iteration: 1, Func. Count: 12, Neg. LLF: 168.21134440138815
Iteration: 2, Func. Count: 26, Neg. LLF: 111.77566730601768
Iteration: 3, Func. Count: 38, Neg. LLF: 113.55037534191543
Iteration: 4, Func. Count: 50, Neg. LLF: 122.4234658190464
Iteration: 5, Func. Count: 64, Neg. LLF: 108.80150446265615
Iteration: 6, Func. Count: 76, Neg. LLF: 108.26980954151207
Iteration: 7, Func. Count: 87, Neg. LLF: 108.22499896600881
Iteration: 8, Func. Count: 99, Neg. LLF: 110.38175795125068
Iteration: 9, Func. Count: 111, Neg. LLF: 107.96457123920557
Iteration: 10, Func. Count: 122, Neg. LLF: 107.96012738797184
Iteration: 11, Func. Count: 133, Neg. LLF: 107.95817235429489
Iteration: 12, Func. Count: 144, Neg. LLF: 107.95058866907941
Iteration: 13, Func. Count: 155, Neg. LLF: 107.94447505290393
Iteration: 14, Func. Count: 166, Neg. LLF: 107.93348780805646
Iteration: 15, Func. Count: 177, Neg. LLF: 107.92772083645102
Iteration: 16, Func. Count: 188, Neg. LLF: 107.92623411813383
Iteration: 17, Func. Count: 199, Neg. LLF: 107.92606115989543
Iteration: 18, Func. Count: 210, Neg. LLF: 107.92605530305138
Iteration: 19, Func. Count: 220, Neg. LLF: 107.92605531366135
Optimization terminated successfully (Exit mode 0)
Current function value: 107.92605530305138
Iterations: 19
Function evaluations: 220
Gradient evaluations: 19
Iteration: 1, Func. Count: 13, Neg. LLF: 167.09577995669042
Iteration: 2, Func. Count: 29, Neg. LLF: 116.59442975976131
Iteration: 3, Func. Count: 42, Neg. LLF: 113.15518923734612
Iteration: 4, Func. Count: 55, Neg. LLF: 111.44757013966017
Iteration: 5, Func. Count: 68, Neg. LLF: 109.67297189066593
Iteration: 6, Func. Count: 81, Neg. LLF: 109.24095757854599
Iteration: 7, Func. Count: 94, Neg. LLF: 108.87831797053515
Iteration: 8, Func. Count: 107, Neg. LLF: 108.48587920639481
Iteration: 9, Func. Count: 119, Neg. LLF: 108.21403582549831
Iteration: 10, Func. Count: 131, Neg. LLF: 108.18460700779735
Iteration: 11, Func. Count: 143, Neg. LLF: 108.12615609698466
Iteration: 12, Func. Count: 155, Neg. LLF: 108.06192169181176
Iteration: 13, Func. Count: 167, Neg. LLF: 108.02755464894369
Iteration: 14, Func. Count: 179, Neg. LLF: 108.00837188471758
Iteration: 15, Func. Count: 191, Neg. LLF: 107.97452938551749
Iteration: 16, Func. Count: 203, Neg. LLF: 107.94545516873002
Iteration: 17, Func. Count: 215, Neg. LLF: 107.93457395838333
Iteration: 18, Func. Count: 227, Neg. LLF: 107.9263674480171
Iteration: 19, Func. Count: 239, Neg. LLF: 107.92608731709572
Iteration: 20, Func. Count: 251, Neg. LLF: 107.92605672426767
Iteration: 21, Func. Count: 263, Neg. LLF: 107.92605529983258
Iteration: 22, Func. Count: 274, Neg. LLF: 107.92605528837862
Optimization terminated successfully (Exit mode 0)
Current function value: 107.92605529983258
Iterations: 22
Function evaluations: 274
Gradient evaluations: 22
Iteration: 1, Func. Count: 14, Neg. LLF: 175.02747193059946
Iteration: 2, Func. Count: 31, Neg. LLF: 118.75145873179477
Iteration: 3, Func. Count: 45, Neg. LLF: 123.18888593380197
Iteration: 4, Func. Count: 59, Neg. LLF: 109.80229104909928
Iteration: 5, Func. Count: 72, Neg. LLF: 112.464899967288
Iteration: 6, Func. Count: 88, Neg. LLF: 111.26467625713543
Iteration: 7, Func. Count: 102, Neg. LLF: 109.44482864665441
Iteration: 8, Func. Count: 116, Neg. LLF: 108.85558479802559
Iteration: 9, Func. Count: 129, Neg. LLF: 109.47621696215987
Iteration: 10, Func. Count: 143, Neg. LLF: 109.73908261178944
Iteration: 11, Func. Count: 157, Neg. LLF: 108.36374928991823
Iteration: 12, Func. Count: 170, Neg. LLF: 108.31106420941096
Iteration: 13, Func. Count: 183, Neg. LLF: 108.17760360670422
Iteration: 14, Func. Count: 196, Neg. LLF: 108.07704506399749
Iteration: 15, Func. Count: 209, Neg. LLF: 107.99999850465129
Iteration: 16, Func. Count: 222, Neg. LLF: 107.95421012666702
Iteration: 17, Func. Count: 235, Neg. LLF: 107.93318549971362
Iteration: 18, Func. Count: 248, Neg. LLF: 107.92705593785358
Iteration: 19, Func. Count: 261, Neg. LLF: 107.9261831504488
Iteration: 20, Func. Count: 274, Neg. LLF: 107.92606587468043
Iteration: 21, Func. Count: 287, Neg. LLF: 107.92605729719857
Iteration: 22, Func. Count: 300, Neg. LLF: 107.92605529797333
Iteration: 23, Func. Count: 312, Neg. LLF: 107.9260553242418
Optimization terminated successfully (Exit mode 0)
Current function value: 107.92605529797333
Iterations: 23
Function evaluations: 312
Gradient evaluations: 23
Iteration: 1, Func. Count: 7, Neg. LLF: 140.5142406024931
Iteration: 2, Func. Count: 15, Neg. LLF: 141.01787742229985
Iteration: 3, Func. Count: 22, Neg. LLF: 113.4799261586097
Iteration: 4, Func. Count: 28, Neg. LLF: 113.01674912218331
Iteration: 5, Func. Count: 34, Neg. LLF: 112.97319858175067
Iteration: 6, Func. Count: 40, Neg. LLF: 112.97206827326139
Iteration: 7, Func. Count: 46, Neg. LLF: 112.97195195628234
Iteration: 8, Func. Count: 52, Neg. LLF: 112.97186704948517
Iteration: 9, Func. Count: 57, Neg. LLF: 112.97186713959795
Optimization terminated successfully (Exit mode 0)
Current function value: 112.97186704948517
Iterations: 9
Function evaluations: 57
Gradient evaluations: 9
Iteration: 1, Func. Count: 8, Neg. LLF: 172.08141570221756
Iteration: 2, Func. Count: 18, Neg. LLF: 110.01677665145279
Iteration: 3, Func. Count: 25, Neg. LLF: 120.27150476890014
Iteration: 4, Func. Count: 33, Neg. LLF: 109.65059801081551
Iteration: 5, Func. Count: 40, Neg. LLF: 109.60454456400791
Iteration: 6, Func. Count: 47, Neg. LLF: 109.60393261404485
Iteration: 7, Func. Count: 54, Neg. LLF: 109.60325790907093
Iteration: 8, Func. Count: 61, Neg. LLF: 109.6032532584937
Iteration: 9, Func. Count: 67, Neg. LLF: 109.60325387323951
Optimization terminated successfully (Exit mode 0)
Current function value: 109.6032532584937
Iterations: 9
Function evaluations: 67
Gradient evaluations: 9
Iteration: 1, Func. Count: 9, Neg. LLF: 166.64207894083376
Iteration: 2, Func. Count: 20, Neg. LLF: 110.11499061740506
Iteration: 3, Func. Count: 28, Neg. LLF: 111.06953720621368
Iteration: 4, Func. Count: 37, Neg. LLF: 109.65222841414204
Iteration: 5, Func. Count: 45, Neg. LLF: 109.63078947830634
Iteration: 6, Func. Count: 53, Neg. LLF: 109.63075827144243
Iteration: 7, Func. Count: 60, Neg. LLF: 109.63075859599327
Optimization terminated successfully (Exit mode 0)
Current function value: 109.63075827144243
Iterations: 7
Function evaluations: 60
Gradient evaluations: 7
Iteration: 1, Func. Count: 10, Neg. LLF: 166.3966715271466
Iteration: 2, Func. Count: 23, Neg. LLF: 110.50450923325862
Iteration: 3, Func. Count: 32, Neg. LLF: 109.68700837640141
Iteration: 4, Func. Count: 41, Neg. LLF: 109.63632097659118
Iteration: 5, Func. Count: 50, Neg. LLF: 109.63438680598979
Iteration: 6, Func. Count: 59, Neg. LLF: 109.63425644891954
Iteration: 7, Func. Count: 67, Neg. LLF: 109.63425667630483
Optimization terminated successfully (Exit mode 0)
Current function value: 109.63425644891954
Iterations: 7
Function evaluations: 67
Gradient evaluations: 7
Iteration: 1, Func. Count: 11, Neg. LLF: 174.99079593199323
Iteration: 2, Func. Count: 25, Neg. LLF: 110.76751859845865
Iteration: 3, Func. Count: 35, Neg. LLF: 110.01109279889168
Iteration: 4, Func. Count: 45, Neg. LLF: 109.90118911217631
Iteration: 5, Func. Count: 55, Neg. LLF: 109.90115233116096
Iteration: 6, Func. Count: 66, Neg. LLF: 109.78438893873572
Iteration: 7, Func. Count: 76, Neg. LLF: 109.73267368320113
Iteration: 8, Func. Count: 86, Neg. LLF: 109.69866002469439
Iteration: 9, Func. Count: 96, Neg. LLF: 109.68180625108232
Iteration: 10, Func. Count: 106, Neg. LLF: 109.67153188293283
Iteration: 11, Func. Count: 116, Neg. LLF: 109.66989425989172
Iteration: 12, Func. Count: 126, Neg. LLF: 109.65860281942524
Iteration: 13, Func. Count: 136, Neg. LLF: 109.64101669294342
Iteration: 14, Func. Count: 146, Neg. LLF: 109.6300103811566
Iteration: 15, Func. Count: 156, Neg. LLF: 109.6038816240451
Iteration: 16, Func. Count: 166, Neg. LLF: 109.60330305440495
Iteration: 17, Func. Count: 176, Neg. LLF: 109.60328948604032
Iteration: 18, Func. Count: 186, Neg. LLF: 109.60327258123274
Iteration: 19, Func. Count: 196, Neg. LLF: 109.60325322354748
Iteration: 20, Func. Count: 205, Neg. LLF: 109.60325262348826
Optimization terminated successfully (Exit mode 0)
Current function value: 109.60325322354748
Iterations: 21
Function evaluations: 205
Gradient evaluations: 20
Iteration: 1, Func. Count: 8, Neg. LLF: 129.56025694887617
Iteration: 2, Func. Count: 17, Neg. LLF: 144.74524485412942
Iteration: 3, Func. Count: 25, Neg. LLF: 113.08668092579323
Iteration: 4, Func. Count: 32, Neg. LLF: 113.26998161309453
Iteration: 5, Func. Count: 40, Neg. LLF: 113.06313929879268
Iteration: 6, Func. Count: 48, Neg. LLF: 112.970946646099
Iteration: 7, Func. Count: 55, Neg. LLF: 112.94843589045361
Iteration: 8, Func. Count: 62, Neg. LLF: 112.94404999349949
Iteration: 9, Func. Count: 69, Neg. LLF: 112.9417898579249
Iteration: 10, Func. Count: 76, Neg. LLF: 112.94163010020412
Iteration: 11, Func. Count: 83, Neg. LLF: 112.94162182785496
Iteration: 12, Func. Count: 89, Neg. LLF: 112.9416218278779
Optimization terminated successfully (Exit mode 0)
Current function value: 112.94162182785496
Iterations: 12
Function evaluations: 89
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 174.0310664362621
Iteration: 2, Func. Count: 20, Neg. LLF: 134.06842907908953
Iteration: 3, Func. Count: 29, Neg. LLF: 122.85283147997141
Iteration: 4, Func. Count: 38, Neg. LLF: 110.86473676901302
Iteration: 5, Func. Count: 46, Neg. LLF: 110.82927358769585
Iteration: 6, Func. Count: 54, Neg. LLF: 110.81469356337585
Iteration: 7, Func. Count: 62, Neg. LLF: 109.8575640544963
Iteration: 8, Func. Count: 70, Neg. LLF: 114.12833722732312
Iteration: 9, Func. Count: 79, Neg. LLF: 9324720.174911719
Iteration: 10, Func. Count: 89, Neg. LLF: 134.02765368307087
Iteration: 11, Func. Count: 99, Neg. LLF: 126.41152424678437
Iteration: 12, Func. Count: 109, Neg. LLF: 156.76914072353438
Iteration: 13, Func. Count: 119, Neg. LLF: 109.60328856408206
Iteration: 14, Func. Count: 127, Neg. LLF: 109.60325394150625
Iteration: 15, Func. Count: 135, Neg. LLF: 109.60325304167293
Optimization terminated successfully (Exit mode 0)
Current function value: 109.60325304167293
Iterations: 16
Function evaluations: 135
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 168.93904773241587
Iteration: 2, Func. Count: 22, Neg. LLF: 113.38445033843063
Iteration: 3, Func. Count: 32, Neg. LLF: 109.97826746788465
Iteration: 4, Func. Count: 41, Neg. LLF: 109.70270679181807
Iteration: 5, Func. Count: 50, Neg. LLF: 109.80592863022723
Iteration: 6, Func. Count: 60, Neg. LLF: 109.63095867651617
Iteration: 7, Func. Count: 69, Neg. LLF: 109.63075819521406
Iteration: 8, Func. Count: 77, Neg. LLF: 109.63075851992598
Optimization terminated successfully (Exit mode 0)
Current function value: 109.63075819521406
Iterations: 8
Function evaluations: 77
Gradient evaluations: 8
Iteration: 1, Func. Count: 11, Neg. LLF: 169.56693608267796
Iteration: 2, Func. Count: 25, Neg. LLF: 110.57405181535702
Iteration: 3, Func. Count: 35, Neg. LLF: 109.67478918934468
Iteration: 4, Func. Count: 45, Neg. LLF: 107.03418739968839
Iteration: 5, Func. Count: 55, Neg. LLF: 106.86794876236902
Iteration: 6, Func. Count: 65, Neg. LLF: 106.86739370206699
Iteration: 7, Func. Count: 76, Neg. LLF: 107.03467544863814
Iteration: 8, Func. Count: 87, Neg. LLF: 106.62037298810037
Iteration: 9, Func. Count: 97, Neg. LLF: 106.6194299781437
Iteration: 10, Func. Count: 107, Neg. LLF: 106.61891627437821
Iteration: 11, Func. Count: 117, Neg. LLF: 106.61890424424752
Iteration: 12, Func. Count: 126, Neg. LLF: 106.61890405444068
Optimization terminated successfully (Exit mode 0)
Current function value: 106.61890424424752
Iterations: 12
Function evaluations: 126
Gradient evaluations: 12
Iteration: 1, Func. Count: 12, Neg. LLF: 177.22102212019644
Iteration: 2, Func. Count: 27, Neg. LLF: 110.8492922841447
Iteration: 3, Func. Count: 38, Neg. LLF: 110.0034726001277
Iteration: 4, Func. Count: 49, Neg. LLF: 109.8486150630035
Iteration: 5, Func. Count: 60, Neg. LLF: 109.87200562078588
Iteration: 6, Func. Count: 72, Neg. LLF: 109.81422001112824
Iteration: 7, Func. Count: 83, Neg. LLF: 109.8141317433568
Iteration: 8, Func. Count: 94, Neg. LLF: 109.8141284957333
Iteration: 9, Func. Count: 104, Neg. LLF: 109.81412829935023
Optimization terminated successfully (Exit mode 0)
Current function value: 109.8141284957333
Iterations: 9
Function evaluations: 104
Gradient evaluations: 9
Iteration: 1, Func. Count: 9, Neg. LLF: 156.40188060763245
Iteration: 2, Func. Count: 19, Neg. LLF: 156.69680046218
Iteration: 3, Func. Count: 28, Neg. LLF: 111.15865081529456
Iteration: 4, Func. Count: 37, Neg. LLF: 109.45776232841787
Iteration: 5, Func. Count: 45, Neg. LLF: 109.06795739571265
Iteration: 6, Func. Count: 53, Neg. LLF: 109.0927722000839
Iteration: 7, Func. Count: 62, Neg. LLF: 108.5565753458167
Iteration: 8, Func. Count: 70, Neg. LLF: 108.03066510602166
Iteration: 9, Func. Count: 78, Neg. LLF: 108.98730950422822
Iteration: 10, Func. Count: 88, Neg. LLF: 108.00070928022993
Iteration: 11, Func. Count: 96, Neg. LLF: 108.0006862935554
Iteration: 12, Func. Count: 104, Neg. LLF: 108.00067735391431
Iteration: 13, Func. Count: 111, Neg. LLF: 108.00067734401836
Optimization terminated successfully (Exit mode 0)
Current function value: 108.00067735391431
Iterations: 13
Function evaluations: 111
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 173.91030973858187
Iteration: 2, Func. Count: 22, Neg. LLF: 110.17055026741379
Iteration: 3, Func. Count: 31, Neg. LLF: 129.5589379258593
Iteration: 4, Func. Count: 41, Neg. LLF: 308.7915241764798
Iteration: 5, Func. Count: 53, Neg. LLF: 115.26723997199552
Iteration: 6, Func. Count: 63, Neg. LLF: 111.1954631462745
Iteration: 7, Func. Count: 73, Neg. LLF: 108.41248908981252
Iteration: 8, Func. Count: 82, Neg. LLF: 108.34605103012444
Iteration: 9, Func. Count: 91, Neg. LLF: 110.62357506562623
Iteration: 10, Func. Count: 101, Neg. LLF: 108.12562417831263
Iteration: 11, Func. Count: 110, Neg. LLF: 108.11877423758322
Iteration: 12, Func. Count: 119, Neg. LLF: 108.08254511940183
Iteration: 13, Func. Count: 128, Neg. LLF: 108.04058480281064
Iteration: 14, Func. Count: 137, Neg. LLF: 108.00686128952456
Iteration: 15, Func. Count: 146, Neg. LLF: 107.95631617528399
Iteration: 16, Func. Count: 155, Neg. LLF: 107.93551334992407
Iteration: 17, Func. Count: 164, Neg. LLF: 107.93505366903284
Iteration: 18, Func. Count: 173, Neg. LLF: 107.93500910290331
Iteration: 19, Func. Count: 182, Neg. LLF: 107.93500492806896
Iteration: 20, Func. Count: 190, Neg. LLF: 107.9350049021179
Optimization terminated successfully (Exit mode 0)
Current function value: 107.93500492806896
Iterations: 20
Function evaluations: 190
Gradient evaluations: 20
Iteration: 1, Func. Count: 11, Neg. LLF: 168.5898124187226
Iteration: 2, Func. Count: 24, Neg. LLF: 111.95034505108454
Iteration: 3, Func. Count: 35, Neg. LLF: 113.51093376692333
Iteration: 4, Func. Count: 46, Neg. LLF: 124.3549509873091
Iteration: 5, Func. Count: 59, Neg. LLF: 108.74180440704403
Iteration: 6, Func. Count: 70, Neg. LLF: 108.5188093180597
Iteration: 7, Func. Count: 81, Neg. LLF: 108.22855205012647
Iteration: 8, Func. Count: 92, Neg. LLF: 108.00844861143256
Iteration: 9, Func. Count: 102, Neg. LLF: 108.00167965691871
Iteration: 10, Func. Count: 112, Neg. LLF: 107.99207461244156
Iteration: 11, Func. Count: 122, Neg. LLF: 107.96731423644881
Iteration: 12, Func. Count: 132, Neg. LLF: 107.9476898603974
Iteration: 13, Func. Count: 142, Neg. LLF: 107.93557457117944
Iteration: 14, Func. Count: 152, Neg. LLF: 107.93501264237668
Iteration: 15, Func. Count: 162, Neg. LLF: 107.93500503561992
Iteration: 16, Func. Count: 171, Neg. LLF: 107.93500504562064
Optimization terminated successfully (Exit mode 0)
Current function value: 107.93500503561992
Iterations: 16
Function evaluations: 171
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 168.00290821980542
Iteration: 2, Func. Count: 27, Neg. LLF: 116.69094961615846
Iteration: 3, Func. Count: 39, Neg. LLF: 113.24832285615796
Iteration: 4, Func. Count: 51, Neg. LLF: 111.40201239466084
Iteration: 5, Func. Count: 63, Neg. LLF: 109.67439632977505
Iteration: 6, Func. Count: 75, Neg. LLF: 108.67207213851135
Iteration: 7, Func. Count: 86, Neg. LLF: 110.44726927505597
Iteration: 8, Func. Count: 99, Neg. LLF: 108.97618990957388
Iteration: 9, Func. Count: 111, Neg. LLF: 108.84886080802043
Iteration: 10, Func. Count: 123, Neg. LLF: 108.3427155465408
Iteration: 11, Func. Count: 134, Neg. LLF: 108.265908617903
Iteration: 12, Func. Count: 145, Neg. LLF: 108.07271845612293
Iteration: 13, Func. Count: 156, Neg. LLF: 107.96959770802316
Iteration: 14, Func. Count: 167, Neg. LLF: 107.93897668685455
Iteration: 15, Func. Count: 178, Neg. LLF: 107.93560074217005
Iteration: 16, Func. Count: 189, Neg. LLF: 107.93519624696846
Iteration: 17, Func. Count: 200, Neg. LLF: 107.93502481341031
Iteration: 18, Func. Count: 211, Neg. LLF: 107.93500720007344
Iteration: 19, Func. Count: 222, Neg. LLF: 107.93500504715342
Iteration: 20, Func. Count: 232, Neg. LLF: 107.93500503518807
Optimization terminated successfully (Exit mode 0)
Current function value: 107.93500504715342
Iterations: 20
Function evaluations: 232
Gradient evaluations: 20
Iteration: 1, Func. Count: 13, Neg. LLF: 175.8591858689719
Iteration: 2, Func. Count: 29, Neg. LLF: 118.9325588136896
Iteration: 3, Func. Count: 42, Neg. LLF: 123.32899865151333
Iteration: 4, Func. Count: 55, Neg. LLF: 109.8913142742066
Iteration: 5, Func. Count: 67, Neg. LLF: 112.82047027299437
Iteration: 6, Func. Count: 82, Neg. LLF: 111.20314266341948
Iteration: 7, Func. Count: 95, Neg. LLF: 109.39309934283803
Iteration: 8, Func. Count: 107, Neg. LLF: 108.89041241422122
Iteration: 9, Func. Count: 119, Neg. LLF: 109.72336912471026
Iteration: 10, Func. Count: 132, Neg. LLF: 109.18270135858712
Iteration: 11, Func. Count: 145, Neg. LLF: 108.51453315371408
Iteration: 12, Func. Count: 157, Neg. LLF: 108.42013123672102
Iteration: 13, Func. Count: 169, Neg. LLF: 108.32834881190423
Iteration: 14, Func. Count: 181, Neg. LLF: 108.20719906185091
Iteration: 15, Func. Count: 193, Neg. LLF: 108.00017198898999
Iteration: 16, Func. Count: 205, Neg. LLF: 107.94710498567312
Iteration: 17, Func. Count: 217, Neg. LLF: 107.93581749607326
Iteration: 18, Func. Count: 229, Neg. LLF: 107.93505198408154
Iteration: 19, Func. Count: 241, Neg. LLF: 107.93501359812103
Iteration: 20, Func. Count: 253, Neg. LLF: 107.93500578111151
Iteration: 21, Func. Count: 265, Neg. LLF: 107.93500492930602
Optimization terminated successfully (Exit mode 0)
Current function value: 107.93500492930602
Iterations: 21
Function evaluations: 265
Gradient evaluations: 21
Iteration: 1, Func. Count: 10, Neg. LLF: 160.4072770612755
Iteration: 2, Func. Count: 21, Neg. LLF: 162.11188364874175
Iteration: 3, Func. Count: 31, Neg. LLF: 111.64673317170913
Iteration: 4, Func. Count: 41, Neg. LLF: 108.57739340382929
Iteration: 5, Func. Count: 50, Neg. LLF: 108.70837687965788
Iteration: 6, Func. Count: 60, Neg. LLF: 108.77978686147462
Iteration: 7, Func. Count: 70, Neg. LLF: 108.18272840817609
Iteration: 8, Func. Count: 80, Neg. LLF: 107.98122234280885
Iteration: 9, Func. Count: 89, Neg. LLF: 107.93066069386471
Iteration: 10, Func. Count: 98, Neg. LLF: 107.92649783617628
Iteration: 11, Func. Count: 107, Neg. LLF: 107.92609988466653
Iteration: 12, Func. Count: 116, Neg. LLF: 107.92606084359433
Iteration: 13, Func. Count: 125, Neg. LLF: 107.92605608190526
Iteration: 14, Func. Count: 134, Neg. LLF: 107.92605520853424
Optimization terminated successfully (Exit mode 0)
Current function value: 107.92605520853424
Iterations: 14
Function evaluations: 134
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 174.22350847732798
Iteration: 2, Func. Count: 24, Neg. LLF: 110.16170217161883
Iteration: 3, Func. Count: 34, Neg. LLF: 129.75431997265213
Iteration: 4, Func. Count: 45, Neg. LLF: 154.1459264557745
Iteration: 5, Func. Count: 59, Neg. LLF: 115.30358018063079
Iteration: 6, Func. Count: 70, Neg. LLF: 112.90841874417217
Iteration: 7, Func. Count: 81, Neg. LLF: 108.52899632178124
Iteration: 8, Func. Count: 92, Neg. LLF: 108.28148681318254
Iteration: 9, Func. Count: 102, Neg. LLF: 108.08061331003508
Iteration: 10, Func. Count: 112, Neg. LLF: 108.06410385442122
Iteration: 11, Func. Count: 122, Neg. LLF: 108.03873388633025
Iteration: 12, Func. Count: 132, Neg. LLF: 108.03384023242324
Iteration: 13, Func. Count: 142, Neg. LLF: 108.02548908724508
Iteration: 14, Func. Count: 152, Neg. LLF: 107.99102000776695
Iteration: 15, Func. Count: 162, Neg. LLF: 107.96655575729194
Iteration: 16, Func. Count: 172, Neg. LLF: 107.94533161449665
Iteration: 17, Func. Count: 182, Neg. LLF: 107.92960674635279
Iteration: 18, Func. Count: 192, Neg. LLF: 107.92648167179614
Iteration: 19, Func. Count: 202, Neg. LLF: 107.92608001009714
Iteration: 20, Func. Count: 212, Neg. LLF: 107.92605533336553
Iteration: 21, Func. Count: 221, Neg. LLF: 107.92605531124353
Optimization terminated successfully (Exit mode 0)
Current function value: 107.92605533336553
Iterations: 21
Function evaluations: 221
Gradient evaluations: 21
Iteration: 1, Func. Count: 12, Neg. LLF: 168.5041467094427
Iteration: 2, Func. Count: 26, Neg. LLF: 111.84732293496684
Iteration: 3, Func. Count: 38, Neg. LLF: 113.66180134908716
Iteration: 4, Func. Count: 50, Neg. LLF: 125.04330601876882
Iteration: 5, Func. Count: 64, Neg. LLF: 108.73408334440785
Iteration: 6, Func. Count: 76, Neg. LLF: 108.27974117558482
Iteration: 7, Func. Count: 87, Neg. LLF: 108.21590928691329
Iteration: 8, Func. Count: 99, Neg. LLF: 110.12275268073034
Iteration: 9, Func. Count: 111, Neg. LLF: 107.96268640146057
Iteration: 10, Func. Count: 122, Neg. LLF: 107.95813924891073
Iteration: 11, Func. Count: 133, Neg. LLF: 107.95624560562838
Iteration: 12, Func. Count: 144, Neg. LLF: 107.95052433739055
Iteration: 13, Func. Count: 155, Neg. LLF: 107.9450097946156
Iteration: 14, Func. Count: 166, Neg. LLF: 107.93489913868677
Iteration: 15, Func. Count: 177, Neg. LLF: 107.92834190710659
Iteration: 16, Func. Count: 188, Neg. LLF: 107.92635387915408
Iteration: 17, Func. Count: 199, Neg. LLF: 107.92606721281624
Iteration: 18, Func. Count: 210, Neg. LLF: 107.92605551244289
Iteration: 19, Func. Count: 220, Neg. LLF: 107.92605552308335
Optimization terminated successfully (Exit mode 0)
Current function value: 107.92605551244289
Iterations: 19
Function evaluations: 220
Gradient evaluations: 19
Iteration: 1, Func. Count: 13, Neg. LLF: 168.05202581686305
Iteration: 2, Func. Count: 29, Neg. LLF: 116.66105268324212
Iteration: 3, Func. Count: 42, Neg. LLF: 113.11378127566307
Iteration: 4, Func. Count: 55, Neg. LLF: 111.96826785296948
Iteration: 5, Func. Count: 68, Neg. LLF: 110.00118187015794
Iteration: 6, Func. Count: 81, Neg. LLF: 110.01034856120506
Iteration: 7, Func. Count: 94, Neg. LLF: 108.53098024747766
Iteration: 8, Func. Count: 106, Neg. LLF: 108.56552544046589
Iteration: 9, Func. Count: 119, Neg. LLF: 108.27839408569756
Iteration: 10, Func. Count: 131, Neg. LLF: 108.1942225757131
Iteration: 11, Func. Count: 143, Neg. LLF: 108.1862283200196
Iteration: 12, Func. Count: 155, Neg. LLF: 108.1521719615722
Iteration: 13, Func. Count: 167, Neg. LLF: 108.10615603511818
Iteration: 14, Func. Count: 179, Neg. LLF: 108.02603733546263
Iteration: 15, Func. Count: 191, Neg. LLF: 107.96495114244297
Iteration: 16, Func. Count: 203, Neg. LLF: 107.9327420742467
Iteration: 17, Func. Count: 215, Neg. LLF: 107.92666814158008
Iteration: 18, Func. Count: 227, Neg. LLF: 107.92618914979334
Iteration: 19, Func. Count: 239, Neg. LLF: 107.92606134584007
Iteration: 20, Func. Count: 251, Neg. LLF: 107.9260568337332
Iteration: 21, Func. Count: 263, Neg. LLF: 107.92605522987446
Iteration: 22, Func. Count: 274, Neg. LLF: 107.92605521842992
Optimization terminated successfully (Exit mode 0)
Current function value: 107.92605522987446
Iterations: 22
Function evaluations: 274
Gradient evaluations: 22
Iteration: 1, Func. Count: 14, Neg. LLF: 175.99779673007495
Iteration: 2, Func. Count: 31, Neg. LLF: 118.90671255031563
Iteration: 3, Func. Count: 45, Neg. LLF: 123.14006883050912
Iteration: 4, Func. Count: 59, Neg. LLF: 109.89190699161142
Iteration: 5, Func. Count: 72, Neg. LLF: 113.0559635188062
Iteration: 6, Func. Count: 88, Neg. LLF: 111.15433186388913
Iteration: 7, Func. Count: 102, Neg. LLF: 109.41128401236898
Iteration: 8, Func. Count: 115, Neg. LLF: 108.92971956366053
Iteration: 9, Func. Count: 128, Neg. LLF: 109.79116266414186
Iteration: 10, Func. Count: 142, Neg. LLF: 108.86544348878203
Iteration: 11, Func. Count: 156, Neg. LLF: 108.36497645664927
Iteration: 12, Func. Count: 169, Neg. LLF: 108.33114208833787
Iteration: 13, Func. Count: 182, Neg. LLF: 108.18678598140698
Iteration: 14, Func. Count: 195, Neg. LLF: 108.04612390961682
Iteration: 15, Func. Count: 208, Neg. LLF: 107.96003640150693
Iteration: 16, Func. Count: 221, Neg. LLF: 107.93506945382279
Iteration: 17, Func. Count: 234, Neg. LLF: 107.92683279602328
Iteration: 18, Func. Count: 247, Neg. LLF: 107.92615991602868
Iteration: 19, Func. Count: 260, Neg. LLF: 107.92606958683287
Iteration: 20, Func. Count: 273, Neg. LLF: 107.92605958539356
Iteration: 21, Func. Count: 286, Neg. LLF: 107.926055509229
Iteration: 22, Func. Count: 298, Neg. LLF: 107.92605553549768
Optimization terminated successfully (Exit mode 0)
Current function value: 107.926055509229
Iterations: 22
Function evaluations: 298
Gradient evaluations: 22
Iteration: 1, Func. Count: 11, Neg. LLF: 157.03422385131066
Iteration: 2, Func. Count: 23, Neg. LLF: 175.21627682621062
Iteration: 3, Func. Count: 34, Neg. LLF: 112.3928821107635
Iteration: 4, Func. Count: 45, Neg. LLF: 108.7778351743874
Iteration: 5, Func. Count: 55, Neg. LLF: 108.91457903466312
Iteration: 6, Func. Count: 66, Neg. LLF: 109.04260781408799
Iteration: 7, Func. Count: 77, Neg. LLF: 108.25761135392248
Iteration: 8, Func. Count: 87, Neg. LLF: 108.02396661050595
Iteration: 9, Func. Count: 97, Neg. LLF: 107.97012240722323
Iteration: 10, Func. Count: 107, Neg. LLF: 107.9348339263285
Iteration: 11, Func. Count: 117, Neg. LLF: 107.92680878947606
Iteration: 12, Func. Count: 127, Neg. LLF: 107.92615100017557
Iteration: 13, Func. Count: 137, Neg. LLF: 107.92607260147581
Iteration: 14, Func. Count: 147, Neg. LLF: 107.92605791364797
Iteration: 15, Func. Count: 157, Neg. LLF: 107.92605525000997
Iteration: 16, Func. Count: 166, Neg. LLF: 107.92605526276753
Optimization terminated successfully (Exit mode 0)
Current function value: 107.92605525000997
Iterations: 16
Function evaluations: 166
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 174.33680436097924
Iteration: 2, Func. Count: 26, Neg. LLF: 110.16491345315484
Iteration: 3, Func. Count: 37, Neg. LLF: 130.0208820932896
Iteration: 4, Func. Count: 49, Neg. LLF: 161.64539614189417
Iteration: 5, Func. Count: 64, Neg. LLF: 115.23498254865032
Iteration: 6, Func. Count: 76, Neg. LLF: 111.4866739316104
Iteration: 7, Func. Count: 88, Neg. LLF: 108.50611157063521
Iteration: 8, Func. Count: 99, Neg. LLF: 108.34002590516825
Iteration: 9, Func. Count: 110, Neg. LLF: 108.80393390140489
Iteration: 10, Func. Count: 122, Neg. LLF: 108.14357924700745
Iteration: 11, Func. Count: 133, Neg. LLF: 108.05311990592709
Iteration: 12, Func. Count: 144, Neg. LLF: 108.04997984531035
Iteration: 13, Func. Count: 156, Neg. LLF: 108.0325126636518
Iteration: 14, Func. Count: 167, Neg. LLF: 108.0240019956437
Iteration: 15, Func. Count: 178, Neg. LLF: 108.00583909387586
Iteration: 16, Func. Count: 189, Neg. LLF: 107.97900658812766
Iteration: 17, Func. Count: 200, Neg. LLF: 107.95000565728716
Iteration: 18, Func. Count: 211, Neg. LLF: 107.93178053252674
Iteration: 19, Func. Count: 222, Neg. LLF: 107.92673135887897
Iteration: 20, Func. Count: 233, Neg. LLF: 107.9261921479098
Iteration: 21, Func. Count: 244, Neg. LLF: 107.92606533086062
Iteration: 22, Func. Count: 255, Neg. LLF: 107.92605639032386
Iteration: 23, Func. Count: 266, Neg. LLF: 107.9260552489139
Iteration: 24, Func. Count: 276, Neg. LLF: 107.92605522678643
Optimization terminated successfully (Exit mode 0)
Current function value: 107.9260552489139
Iterations: 24
Function evaluations: 276
Gradient evaluations: 24
Iteration: 1, Func. Count: 13, Neg. LLF: 168.78752615194156
Iteration: 2, Func. Count: 28, Neg. LLF: 111.8427022742074
Iteration: 3, Func. Count: 41, Neg. LLF: 113.77437415709426
Iteration: 4, Func. Count: 54, Neg. LLF: 122.29989086281815
Iteration: 5, Func. Count: 69, Neg. LLF: 108.73146820986048
Iteration: 6, Func. Count: 82, Neg. LLF: 108.3160683433977
Iteration: 7, Func. Count: 95, Neg. LLF: 108.20321263680346
Iteration: 8, Func. Count: 108, Neg. LLF: 107.96294824532409
Iteration: 9, Func. Count: 120, Neg. LLF: 107.95662856491917
Iteration: 10, Func. Count: 132, Neg. LLF: 107.95491885261224
Iteration: 11, Func. Count: 144, Neg. LLF: 107.95027302455345
Iteration: 12, Func. Count: 156, Neg. LLF: 107.94411457042685
Iteration: 13, Func. Count: 168, Neg. LLF: 107.9340676313328
Iteration: 14, Func. Count: 180, Neg. LLF: 107.92765755420434
Iteration: 15, Func. Count: 192, Neg. LLF: 107.92624027930789
Iteration: 16, Func. Count: 204, Neg. LLF: 107.92606202418344
Iteration: 17, Func. Count: 216, Neg. LLF: 107.92605526143844
Iteration: 18, Func. Count: 227, Neg. LLF: 107.92605527203402
Optimization terminated successfully (Exit mode 0)
Current function value: 107.92605526143844
Iterations: 18
Function evaluations: 227
Gradient evaluations: 18
Iteration: 1, Func. Count: 14, Neg. LLF: 168.37594908182695
Iteration: 2, Func. Count: 31, Neg. LLF: 116.757742956428
Iteration: 3, Func. Count: 45, Neg. LLF: 113.08712050680143
Iteration: 4, Func. Count: 59, Neg. LLF: 112.5934524631314
Iteration: 5, Func. Count: 73, Neg. LLF: 110.29424822207442
Iteration: 6, Func. Count: 87, Neg. LLF: 109.70965181891498
Iteration: 7, Func. Count: 101, Neg. LLF: 108.51565786991665
Iteration: 8, Func. Count: 114, Neg. LLF: 108.68506240135828
Iteration: 9, Func. Count: 128, Neg. LLF: 108.66140531158318
Iteration: 10, Func. Count: 142, Neg. LLF: 108.20913130837691
Iteration: 11, Func. Count: 155, Neg. LLF: 108.18048115765355
Iteration: 12, Func. Count: 168, Neg. LLF: 108.13711930045169
Iteration: 13, Func. Count: 181, Neg. LLF: 108.08007702520425
Iteration: 14, Func. Count: 194, Neg. LLF: 107.9975227273488
Iteration: 15, Func. Count: 207, Neg. LLF: 107.94006805531713
Iteration: 16, Func. Count: 220, Neg. LLF: 107.92656021515853
Iteration: 17, Func. Count: 233, Neg. LLF: 107.92612573773667
Iteration: 18, Func. Count: 246, Neg. LLF: 107.92606252241927
Iteration: 19, Func. Count: 259, Neg. LLF: 107.92605677650971
Iteration: 20, Func. Count: 272, Neg. LLF: 107.92605536659461
Iteration: 21, Func. Count: 284, Neg. LLF: 107.92605535513857
Optimization terminated successfully (Exit mode 0)
Current function value: 107.92605536659461
Iterations: 21
Function evaluations: 284
Gradient evaluations: 21
Iteration: 1, Func. Count: 15, Neg. LLF: 176.49677378064936
Iteration: 2, Func. Count: 33, Neg. LLF: 118.99039614379723
Iteration: 3, Func. Count: 48, Neg. LLF: 123.00044413540252
Iteration: 4, Func. Count: 63, Neg. LLF: 109.88443094189644
Iteration: 5, Func. Count: 77, Neg. LLF: 113.22640643759982
Iteration: 6, Func. Count: 94, Neg. LLF: 111.10273823350583
Iteration: 7, Func. Count: 109, Neg. LLF: 109.41507381064298
Iteration: 8, Func. Count: 124, Neg. LLF: 108.75514516888649
Iteration: 9, Func. Count: 138, Neg. LLF: 109.72832006395498
Iteration: 10, Func. Count: 153, Neg. LLF: 109.10080742848972
Iteration: 11, Func. Count: 168, Neg. LLF: 108.47623378160581
Iteration: 12, Func. Count: 182, Neg. LLF: 108.29802642684857
Iteration: 13, Func. Count: 196, Neg. LLF: 108.2133924252482
Iteration: 14, Func. Count: 210, Neg. LLF: 108.10346801803149
Iteration: 15, Func. Count: 224, Neg. LLF: 108.01603568855008
Iteration: 16, Func. Count: 238, Neg. LLF: 107.96151682742281
Iteration: 17, Func. Count: 252, Neg. LLF: 107.94014797408242
Iteration: 18, Func. Count: 266, Neg. LLF: 107.93086292270537
Iteration: 19, Func. Count: 280, Neg. LLF: 107.92677941990101
Iteration: 20, Func. Count: 294, Neg. LLF: 107.92618478535569
Iteration: 21, Func. Count: 308, Neg. LLF: 107.92606356167228
Iteration: 22, Func. Count: 322, Neg. LLF: 107.92605616113647
Iteration: 23, Func. Count: 336, Neg. LLF: 107.92605522869098
Optimization terminated successfully (Exit mode 0)
Current function value: 107.92605522869098
Iterations: 23
Function evaluations: 336
Gradient evaluations: 23
Iteration: 1, Func. Count: 8, Neg. LLF: 120.06332938558232
Iteration: 2, Func. Count: 16, Neg. LLF: 145.744174875555
Iteration: 3, Func. Count: 24, Neg. LLF: 114.1221313582367
Iteration: 4, Func. Count: 32, Neg. LLF: 111.92373706305823
Iteration: 5, Func. Count: 40, Neg. LLF: 109.4230584614643
Iteration: 6, Func. Count: 47, Neg. LLF: 109.41514976418054
Iteration: 7, Func. Count: 54, Neg. LLF: 109.41522479591794
Iteration: 8, Func. Count: 62, Neg. LLF: 109.41486959213182
Iteration: 9, Func. Count: 69, Neg. LLF: 109.41484340159322
Iteration: 10, Func. Count: 75, Neg. LLF: 109.41484340157399
Optimization terminated successfully (Exit mode 0)
Current function value: 109.41484340159322
Iterations: 10
Function evaluations: 75
Gradient evaluations: 10
Iteration: 1, Func. Count: 9, Neg. LLF: 118.1216495032888
Iteration: 2, Func. Count: 21, Neg. LLF: 122.2965982951411
Iteration: 3, Func. Count: 30, Neg. LLF: 112.1810808798968
Iteration: 4, Func. Count: 38, Neg. LLF: 113.40240296217429
Iteration: 5, Func. Count: 47, Neg. LLF: 111.94209088758221
Iteration: 6, Func. Count: 55, Neg. LLF: 111.30471210488273
Iteration: 7, Func. Count: 63, Neg. LLF: 204.1263532425756
Iteration: 8, Func. Count: 73, Neg. LLF: 109.9313618482918
Iteration: 9, Func. Count: 81, Neg. LLF: 109.71240255771211
Iteration: 10, Func. Count: 89, Neg. LLF: 109.62232163442583
Iteration: 11, Func. Count: 97, Neg. LLF: 109.60328532833726
Iteration: 12, Func. Count: 105, Neg. LLF: 109.6032529953872
Iteration: 13, Func. Count: 112, Neg. LLF: 109.60325361007905
Optimization terminated successfully (Exit mode 0)
Current function value: 109.6032529953872
Iterations: 13
Function evaluations: 112
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 166.46724347703076
Iteration: 2, Func. Count: 22, Neg. LLF: 120.78387426481649
Iteration: 3, Func. Count: 32, Neg. LLF: 114.25778599102703
Iteration: 4, Func. Count: 42, Neg. LLF: 110.73034574146388
Iteration: 5, Func. Count: 51, Neg. LLF: 110.69402194377528
Iteration: 6, Func. Count: 61, Neg. LLF: 109.90493047886439
Iteration: 7, Func. Count: 70, Neg. LLF: 109.80532087673836
Iteration: 8, Func. Count: 79, Neg. LLF: 109.63835669452992
Iteration: 9, Func. Count: 88, Neg. LLF: 109.63116060108183
Iteration: 10, Func. Count: 97, Neg. LLF: 109.63075869005486
Iteration: 11, Func. Count: 106, Neg. LLF: 109.63075755198867
Optimization terminated successfully (Exit mode 0)
Current function value: 109.63075868987237
Iterations: 11
Function evaluations: 116
Gradient evaluations: 11
Iteration: 1, Func. Count: 11, Neg. LLF: 121.05112022784998
Iteration: 2, Func. Count: 25, Neg. LLF: 121.992796525473
Iteration: 3, Func. Count: 36, Neg. LLF: 112.27593784938792
Iteration: 4, Func. Count: 47, Neg. LLF: 106.7509869449572
Iteration: 5, Func. Count: 57, Neg. LLF: 108.15024712811623
Iteration: 6, Func. Count: 68, Neg. LLF: 105.56084170603837
Iteration: 7, Func. Count: 78, Neg. LLF: 105.19798017505178
Iteration: 8, Func. Count: 88, Neg. LLF: 105.21063265672773
Iteration: 9, Func. Count: 99, Neg. LLF: 105.17415846949896
Iteration: 10, Func. Count: 109, Neg. LLF: 105.17362448133342
Iteration: 11, Func. Count: 119, Neg. LLF: 105.2129940063784
Iteration: 12, Func. Count: 131, Neg. LLF: 105.18713529572972
Iteration: 13, Func. Count: 143, Neg. LLF: 105.17463834393143
Iteration: 14, Func. Count: 154, Neg. LLF: 105.1737270016449
Iteration: 15, Func. Count: 163, Neg. LLF: 105.17372672001655
Optimization terminated successfully (Exit mode 0)
Current function value: 105.1737270016449
Iterations: 16
Function evaluations: 163
Gradient evaluations: 15
Iteration: 1, Func. Count: 12, Neg. LLF: 124.7437254383711
Iteration: 2, Func. Count: 27, Neg. LLF: 122.87304805989629
Iteration: 3, Func. Count: 39, Neg. LLF: 112.79248446346894
Iteration: 4, Func. Count: 51, Neg. LLF: 105.88916001240135
Iteration: 5, Func. Count: 62, Neg. LLF: 106.21496718504393
Iteration: 6, Func. Count: 74, Neg. LLF: 105.5109003291578
Iteration: 7, Func. Count: 85, Neg. LLF: 105.17540979062625
Iteration: 8, Func. Count: 96, Neg. LLF: 105.17472710960502
Iteration: 9, Func. Count: 107, Neg. LLF: 105.1738360219878
Iteration: 10, Func. Count: 118, Neg. LLF: 105.17363277761949
Iteration: 11, Func. Count: 129, Neg. LLF: 105.17371222764562
Iteration: 12, Func. Count: 140, Neg. LLF: 105.1749264114719
Optimization terminated successfully (Exit mode 0)
Current function value: 105.17371184945394
Iterations: 13
Function evaluations: 142
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 114.64960988847879
Iteration: 2, Func. Count: 18, Neg. LLF: 127.29776785720091
Iteration: 3, Func. Count: 27, Neg. LLF: 185.83489526165408
Iteration: 4, Func. Count: 36, Neg. LLF: 111.95956237454706
Iteration: 5, Func. Count: 45, Neg. LLF: 108.5877381345791
Iteration: 6, Func. Count: 53, Neg. LLF: 108.34758187231904
Iteration: 7, Func. Count: 61, Neg. LLF: 108.34289661729281
Iteration: 8, Func. Count: 69, Neg. LLF: 108.3396514896212
Iteration: 9, Func. Count: 77, Neg. LLF: 108.33964915592641
Iteration: 10, Func. Count: 84, Neg. LLF: 108.3396491448894
Optimization terminated successfully (Exit mode 0)
Current function value: 108.33964915592641
Iterations: 10
Function evaluations: 84
Gradient evaluations: 10
Iteration: 1, Func. Count: 10, Neg. LLF: 118.01776903617072
Iteration: 2, Func. Count: 23, Neg. LLF: 112.85452306985059
Iteration: 3, Func. Count: 34, Neg. LLF: 124.09108503622171
Iteration: 4, Func. Count: 44, Neg. LLF: 112.68069756376437
Iteration: 5, Func. Count: 54, Neg. LLF: 109.93175056651586
Iteration: 6, Func. Count: 63, Neg. LLF: 109.41717573591069
Iteration: 7, Func. Count: 72, Neg. LLF: 109.18788872127345
Iteration: 8, Func. Count: 81, Neg. LLF: 109.02016949841293
Iteration: 9, Func. Count: 90, Neg. LLF: 108.99594210167798
Iteration: 10, Func. Count: 99, Neg. LLF: 108.87831401558012
Iteration: 11, Func. Count: 108, Neg. LLF: 108.46710564939531
Iteration: 12, Func. Count: 117, Neg. LLF: 108.38638599121852
Iteration: 13, Func. Count: 126, Neg. LLF: 108.35815506901675
Iteration: 14, Func. Count: 135, Neg. LLF: 108.34019938507716
Iteration: 15, Func. Count: 144, Neg. LLF: 108.33969207929427
Iteration: 16, Func. Count: 153, Neg. LLF: 108.33966502715302
Iteration: 17, Func. Count: 162, Neg. LLF: 108.33966274894127
Iteration: 18, Func. Count: 171, Neg. LLF: 108.33966147612017
Iteration: 19, Func. Count: 180, Neg. LLF: 108.33964928554953
Iteration: 20, Func. Count: 188, Neg. LLF: 108.33964945168343
Optimization terminated successfully (Exit mode 0)
Current function value: 108.33964928554953
Iterations: 21
Function evaluations: 188
Gradient evaluations: 20
Iteration: 1, Func. Count: 11, Neg. LLF: 139.38356529150693
Iteration: 2, Func. Count: 25, Neg. LLF: 128.8236174957505
Iteration: 3, Func. Count: 36, Neg. LLF: 111.94800385218237
Iteration: 4, Func. Count: 47, Neg. LLF: 110.1341494707457
Iteration: 5, Func. Count: 57, Neg. LLF: 109.91017073612464
Iteration: 6, Func. Count: 67, Neg. LLF: 112.3700306603849
Iteration: 7, Func. Count: 78, Neg. LLF: 109.80199648260599
Iteration: 8, Func. Count: 88, Neg. LLF: 109.64673089219077
Iteration: 9, Func. Count: 98, Neg. LLF: 109.63117700276983
Iteration: 10, Func. Count: 108, Neg. LLF: 109.63075866210254
Iteration: 11, Func. Count: 118, Neg. LLF: 109.6604829997801
Optimization terminated successfully (Exit mode 0)
Current function value: 109.63075770658705
Iterations: 12
Function evaluations: 121
Gradient evaluations: 11
Iteration: 1, Func. Count: 12, Neg. LLF: 121.25729473074959
Iteration: 2, Func. Count: 27, Neg. LLF: 122.59708015945547
Iteration: 3, Func. Count: 39, Neg. LLF: 113.18609245223804
Iteration: 4, Func. Count: 51, Neg. LLF: 106.64870706214992
Iteration: 5, Func. Count: 62, Neg. LLF: 107.52335445700975
Iteration: 6, Func. Count: 74, Neg. LLF: 105.56685443312004
Iteration: 7, Func. Count: 85, Neg. LLF: 105.18949294808212
Iteration: 8, Func. Count: 96, Neg. LLF: 105.19124078308808
Iteration: 9, Func. Count: 108, Neg. LLF: 105.17463074792803
Iteration: 10, Func. Count: 119, Neg. LLF: 105.17370933172336
Iteration: 11, Func. Count: 130, Neg. LLF: 105.17624220247453
Iteration: 12, Func. Count: 143, Neg. LLF: 105.17783336603264
Iteration: 13, Func. Count: 156, Neg. LLF: 105.17389308238981
Iteration: 14, Func. Count: 169, Neg. LLF: 105.1737270021172
Iteration: 15, Func. Count: 179, Neg. LLF: 105.1737267204883
Optimization terminated successfully (Exit mode 0)
Current function value: 105.1737270021172
Iterations: 17
Function evaluations: 179
Gradient evaluations: 15
Iteration: 1, Func. Count: 13, Neg. LLF: 123.21117413409954
Iteration: 2, Func. Count: 29, Neg. LLF: 122.95280175943813
Iteration: 3, Func. Count: 42, Neg. LLF: 112.96550421507
Iteration: 4, Func. Count: 55, Neg. LLF: 105.92936541235444
Iteration: 5, Func. Count: 67, Neg. LLF: 106.0961125952515
Iteration: 6, Func. Count: 80, Neg. LLF: 105.52936717788165
Iteration: 7, Func. Count: 92, Neg. LLF: 105.17794976231023
Iteration: 8, Func. Count: 104, Neg. LLF: 105.17646127176322
Iteration: 9, Func. Count: 116, Neg. LLF: 105.17375725156718
Iteration: 10, Func. Count: 128, Neg. LLF: 105.17363430052542
Iteration: 11, Func. Count: 140, Neg. LLF: 105.27340853307501
Iteration: 12, Func. Count: 154, Neg. LLF: 105.179425446608
Iteration: 13, Func. Count: 168, Neg. LLF: 105.17373437448391
Iteration: 14, Func. Count: 181, Neg. LLF: 105.1737270018752
Iteration: 15, Func. Count: 193, Neg. LLF: 105.17372539140527
Optimization terminated successfully (Exit mode 0)
Current function value: 105.17372700090301
Iterations: 16
Function evaluations: 203
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 129.3435187241947
Iteration: 2, Func. Count: 20, Neg. LLF: 153.77527471839466
Iteration: 3, Func. Count: 30, Neg. LLF: 110.84439717375054
Iteration: 4, Func. Count: 40, Neg. LLF: 108.2035059697491
Iteration: 5, Func. Count: 49, Neg. LLF: 110.3091782843574
Iteration: 6, Func. Count: 60, Neg. LLF: 115.05089522160387
Iteration: 7, Func. Count: 72, Neg. LLF: 109.31938494955152
Iteration: 8, Func. Count: 82, Neg. LLF: 108.5487142670723
Iteration: 9, Func. Count: 92, Neg. LLF: 107.77066399198365
Iteration: 10, Func. Count: 101, Neg. LLF: 107.76788314326384
Iteration: 11, Func. Count: 111, Neg. LLF: 107.755468606166
Iteration: 12, Func. Count: 120, Neg. LLF: 107.75531483105088
Iteration: 13, Func. Count: 129, Neg. LLF: 107.75531320079581
Iteration: 14, Func. Count: 137, Neg. LLF: 107.75531318428337
Optimization terminated successfully (Exit mode 0)
Current function value: 107.75531320079581
Iterations: 14
Function evaluations: 137
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 117.12114970530921
Iteration: 2, Func. Count: 25, Neg. LLF: 109.93832933450743
Iteration: 3, Func. Count: 35, Neg. LLF: 133.51909973981373
Iteration: 4, Func. Count: 46, Neg. LLF: 425.7295440790309
Iteration: 5, Func. Count: 58, Neg. LLF: 123.40595407505114
Iteration: 6, Func. Count: 69, Neg. LLF: 110.1242497473323
Iteration: 7, Func. Count: 80, Neg. LLF: 107.94799500312263
Iteration: 8, Func. Count: 90, Neg. LLF: 109.20892130318437
Iteration: 9, Func. Count: 102, Neg. LLF: 107.92044456526787
Iteration: 10, Func. Count: 112, Neg. LLF: 107.90152769734837
Iteration: 11, Func. Count: 122, Neg. LLF: 107.862741789478
Iteration: 12, Func. Count: 132, Neg. LLF: 107.84348458466718
Iteration: 13, Func. Count: 142, Neg. LLF: 107.82613127790746
Iteration: 14, Func. Count: 152, Neg. LLF: 107.79989878915765
Iteration: 15, Func. Count: 162, Neg. LLF: 107.75807814397274
Iteration: 16, Func. Count: 172, Neg. LLF: 107.75550472463148
Iteration: 17, Func. Count: 182, Neg. LLF: 107.7553233409007
Iteration: 18, Func. Count: 192, Neg. LLF: 107.75531503400873
Iteration: 19, Func. Count: 202, Neg. LLF: 107.75531334602908
Iteration: 20, Func. Count: 211, Neg. LLF: 107.75531333040412
Optimization terminated successfully (Exit mode 0)
Current function value: 107.75531334602908
Iterations: 20
Function evaluations: 211
Gradient evaluations: 20
Iteration: 1, Func. Count: 12, Neg. LLF: 136.3994691141674
Iteration: 2, Func. Count: 27, Neg. LLF: 122.90124836151072
Iteration: 3, Func. Count: 39, Neg. LLF: 114.10550414751002
Iteration: 4, Func. Count: 51, Neg. LLF: 110.27097778288045
Iteration: 5, Func. Count: 62, Neg. LLF: 109.95734661335598
Iteration: 6, Func. Count: 74, Neg. LLF: 112.11216638151764
Iteration: 7, Func. Count: 86, Neg. LLF: 108.79692243631784
Iteration: 8, Func. Count: 98, Neg. LLF: 108.7116911543108
Iteration: 9, Func. Count: 110, Neg. LLF: 108.87909671985506
Iteration: 10, Func. Count: 122, Neg. LLF: 107.98519145906371
Iteration: 11, Func. Count: 133, Neg. LLF: 107.9446856307728
Iteration: 12, Func. Count: 144, Neg. LLF: 107.91661796416405
Iteration: 13, Func. Count: 155, Neg. LLF: 107.87651073392239
Iteration: 14, Func. Count: 166, Neg. LLF: 107.8624732085513
Iteration: 15, Func. Count: 177, Neg. LLF: 107.8474823641307
Iteration: 16, Func. Count: 188, Neg. LLF: 107.81975318600864
Iteration: 17, Func. Count: 199, Neg. LLF: 107.79330039854844
Iteration: 18, Func. Count: 210, Neg. LLF: 107.7780140052141
Iteration: 19, Func. Count: 221, Neg. LLF: 107.76329930795036
Iteration: 20, Func. Count: 232, Neg. LLF: 107.75674349877764
Iteration: 21, Func. Count: 243, Neg. LLF: 107.7553850249493
Iteration: 22, Func. Count: 254, Neg. LLF: 107.75531805294516
Iteration: 23, Func. Count: 265, Neg. LLF: 107.75531325167874
Iteration: 24, Func. Count: 275, Neg. LLF: 107.75531325716344
Optimization terminated successfully (Exit mode 0)
Current function value: 107.75531325167874
Iterations: 24
Function evaluations: 275
Gradient evaluations: 24
Iteration: 1, Func. Count: 13, Neg. LLF: 121.04152156290056
Iteration: 2, Func. Count: 29, Neg. LLF: 118.43390331215308
Iteration: 3, Func. Count: 42, Neg. LLF: 108.36020761371685
Iteration: 4, Func. Count: 54, Neg. LLF: 110.20804552512517
Iteration: 5, Func. Count: 67, Neg. LLF: 118.82404180415497
Iteration: 6, Func. Count: 80, Neg. LLF: 107.13418930534142
Iteration: 7, Func. Count: 92, Neg. LLF: 107.00036735912926
Iteration: 8, Func. Count: 104, Neg. LLF: 105.54229716630327
Iteration: 9, Func. Count: 116, Neg. LLF: 105.37256786353319
Iteration: 10, Func. Count: 128, Neg. LLF: 105.3031233645865
Iteration: 11, Func. Count: 140, Neg. LLF: 105.22442065228216
Iteration: 12, Func. Count: 152, Neg. LLF: 105.18293185796097
Iteration: 13, Func. Count: 164, Neg. LLF: 105.17520674659012
Iteration: 14, Func. Count: 176, Neg. LLF: 105.17404330235944
Iteration: 15, Func. Count: 188, Neg. LLF: 105.43638786044141
Iteration: 16, Func. Count: 202, Neg. LLF: 105.17671708012226
Iteration: 17, Func. Count: 215, Neg. LLF: 105.1746063109926
Iteration: 18, Func. Count: 228, Neg. LLF: 105.17372708656937
Iteration: 19, Func. Count: 239, Neg. LLF: 105.17372680486442
Optimization terminated successfully (Exit mode 0)
Current function value: 105.17372708656937
Iterations: 20
Function evaluations: 239
Gradient evaluations: 19
Iteration: 1, Func. Count: 14, Neg. LLF: 123.04178152993381
Iteration: 2, Func. Count: 31, Neg. LLF: 121.16171538634588
Iteration: 3, Func. Count: 45, Neg. LLF: 108.84687957791513
Iteration: 4, Func. Count: 58, Neg. LLF: 107.65747091167735
Iteration: 5, Func. Count: 71, Neg. LLF: 106.00266236296667
Iteration: 6, Func. Count: 84, Neg. LLF: 105.50307514486093
Iteration: 7, Func. Count: 97, Neg. LLF: 105.4056015504039
Iteration: 8, Func. Count: 110, Neg. LLF: 105.29401193257507
Iteration: 9, Func. Count: 123, Neg. LLF: 105.22070727751874
Iteration: 10, Func. Count: 136, Neg. LLF: 105.18053795637728
Iteration: 11, Func. Count: 149, Neg. LLF: 105.17392621249665
Iteration: 12, Func. Count: 162, Neg. LLF: 105.17401276214179
Iteration: 13, Func. Count: 176, Neg. LLF: 105.17375169718521
Iteration: 14, Func. Count: 189, Neg. LLF: 105.17416527789776
Optimization terminated successfully (Exit mode 0)
Current function value: 105.17375104532717
Iterations: 15
Function evaluations: 191
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 133.28117731971946
Iteration: 2, Func. Count: 22, Neg. LLF: 154.95605660684126
Iteration: 3, Func. Count: 33, Neg. LLF: 111.38298551038051
Iteration: 4, Func. Count: 44, Neg. LLF: 108.56960104667714
Iteration: 5, Func. Count: 54, Neg. LLF: 109.31981725282921
Iteration: 6, Func. Count: 65, Neg. LLF: 114.1391231502962
Iteration: 7, Func. Count: 79, Neg. LLF: 109.83120829556982
Iteration: 8, Func. Count: 91, Neg. LLF: 109.02782821055014
Iteration: 9, Func. Count: 102, Neg. LLF: 108.1176187662968
Iteration: 10, Func. Count: 113, Neg. LLF: 107.78412926018805
Iteration: 11, Func. Count: 123, Neg. LLF: 107.75681810967858
Iteration: 12, Func. Count: 133, Neg. LLF: 107.73844369188302
Iteration: 13, Func. Count: 143, Neg. LLF: 107.73447693536698
Iteration: 14, Func. Count: 153, Neg. LLF: 107.73415019141527
Iteration: 15, Func. Count: 163, Neg. LLF: 107.7341409042097
Iteration: 16, Func. Count: 173, Neg. LLF: 107.73414024080385
Optimization terminated successfully (Exit mode 0)
Current function value: 107.73414024080385
Iterations: 16
Function evaluations: 173
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 117.16601803641827
Iteration: 2, Func. Count: 27, Neg. LLF: 109.93165808314606
Iteration: 3, Func. Count: 38, Neg. LLF: 133.74711550352137
Iteration: 4, Func. Count: 50, Neg. LLF: 421.8082137142919
Iteration: 5, Func. Count: 63, Neg. LLF: 123.24158615265274
Iteration: 6, Func. Count: 75, Neg. LLF: 109.18041467297182
Iteration: 7, Func. Count: 87, Neg. LLF: 107.93732017756743
Iteration: 8, Func. Count: 98, Neg. LLF: 107.97938799174776
Iteration: 9, Func. Count: 110, Neg. LLF: 107.85196485981976
Iteration: 10, Func. Count: 122, Neg. LLF: 107.76520706871688
Iteration: 11, Func. Count: 133, Neg. LLF: 107.7628848046943
Iteration: 12, Func. Count: 144, Neg. LLF: 107.76041844417047
Iteration: 13, Func. Count: 155, Neg. LLF: 107.74675855221501
Iteration: 14, Func. Count: 166, Neg. LLF: 107.73720662092428
Iteration: 15, Func. Count: 177, Neg. LLF: 107.73449360295938
Iteration: 16, Func. Count: 188, Neg. LLF: 107.73417131786121
Iteration: 17, Func. Count: 199, Neg. LLF: 107.73414675916413
Iteration: 18, Func. Count: 210, Neg. LLF: 107.73414072315661
Iteration: 19, Func. Count: 221, Neg. LLF: 107.73414008911499
Optimization terminated successfully (Exit mode 0)
Current function value: 107.73414008911499
Iterations: 19
Function evaluations: 221
Gradient evaluations: 19
Iteration: 1, Func. Count: 13, Neg. LLF: 136.1175682471758
Iteration: 2, Func. Count: 29, Neg. LLF: 122.80502434561238
Iteration: 3, Func. Count: 42, Neg. LLF: 114.3116518211662
Iteration: 4, Func. Count: 55, Neg. LLF: 110.23969071119618
Iteration: 5, Func. Count: 67, Neg. LLF: 109.75318024443484
Iteration: 6, Func. Count: 80, Neg. LLF: 112.07676587372866
Iteration: 7, Func. Count: 93, Neg. LLF: 108.4252530439084
Iteration: 8, Func. Count: 106, Neg. LLF: 108.76464047860199
Iteration: 9, Func. Count: 119, Neg. LLF: 107.87215077263082
Iteration: 10, Func. Count: 131, Neg. LLF: 107.85351843484149
Iteration: 11, Func. Count: 143, Neg. LLF: 107.7995661469073
Iteration: 12, Func. Count: 155, Neg. LLF: 107.78140544499004
Iteration: 13, Func. Count: 167, Neg. LLF: 107.77248273094179
Iteration: 14, Func. Count: 179, Neg. LLF: 107.76668041542626
Iteration: 15, Func. Count: 191, Neg. LLF: 107.76182911208089
Iteration: 16, Func. Count: 203, Neg. LLF: 107.7575725480154
Iteration: 17, Func. Count: 215, Neg. LLF: 107.75360717988043
Iteration: 18, Func. Count: 227, Neg. LLF: 107.74751351678574
Iteration: 19, Func. Count: 239, Neg. LLF: 107.74092306972301
Iteration: 20, Func. Count: 251, Neg. LLF: 107.7359778907927
Iteration: 21, Func. Count: 263, Neg. LLF: 107.73427336970157
Iteration: 22, Func. Count: 275, Neg. LLF: 107.7341479658269
Iteration: 23, Func. Count: 287, Neg. LLF: 107.73414016634689
Iteration: 24, Func. Count: 298, Neg. LLF: 107.73414017313664
Optimization terminated successfully (Exit mode 0)
Current function value: 107.73414016634689
Iterations: 24
Function evaluations: 298
Gradient evaluations: 24
Iteration: 1, Func. Count: 14, Neg. LLF: 121.15055274768956
Iteration: 2, Func. Count: 31, Neg. LLF: 118.37315543221193
Iteration: 3, Func. Count: 45, Neg. LLF: 108.36285403104137
Iteration: 4, Func. Count: 58, Neg. LLF: 110.37470110516102
Iteration: 5, Func. Count: 72, Neg. LLF: 117.17597023601265
Iteration: 6, Func. Count: 86, Neg. LLF: 107.13578132357159
Iteration: 7, Func. Count: 99, Neg. LLF: 106.98834116468552
Iteration: 8, Func. Count: 112, Neg. LLF: 105.71806090622705
Iteration: 9, Func. Count: 125, Neg. LLF: 105.52896991087823
Iteration: 10, Func. Count: 138, Neg. LLF: 105.3639273684825
Iteration: 11, Func. Count: 151, Neg. LLF: 105.2014157746513
Iteration: 12, Func. Count: 164, Neg. LLF: 105.18887284772687
Iteration: 13, Func. Count: 177, Neg. LLF: 105.17489073624459
Iteration: 14, Func. Count: 190, Neg. LLF: 105.16748583104737
Iteration: 15, Func. Count: 203, Neg. LLF: 105.17036088654153
Iteration: 16, Func. Count: 226, Neg. LLF: 105.35663419392918
Iteration: 17, Func. Count: 241, Neg. LLF: 105.18032728981615
Iteration: 18, Func. Count: 255, Neg. LLF: 105.17565981716686
Iteration: 19, Func. Count: 269, Neg. LLF: 105.17372715776804
Iteration: 20, Func. Count: 281, Neg. LLF: 105.17372687611334
Optimization terminated successfully (Exit mode 0)
Current function value: 105.17372715776804
Iterations: 21
Function evaluations: 281
Gradient evaluations: 20
Iteration: 1, Func. Count: 15, Neg. LLF: 123.15722948960246
Iteration: 2, Func. Count: 33, Neg. LLF: 121.10726321184572
Iteration: 3, Func. Count: 48, Neg. LLF: 108.93104427286058
Iteration: 4, Func. Count: 62, Neg. LLF: 107.56108636758505
Iteration: 5, Func. Count: 76, Neg. LLF: 106.3728418769445
Iteration: 6, Func. Count: 90, Neg. LLF: 105.53715073814055
Iteration: 7, Func. Count: 104, Neg. LLF: 105.42461615787761
Iteration: 8, Func. Count: 118, Neg. LLF: 105.31012652406571
Iteration: 9, Func. Count: 132, Neg. LLF: 105.22537015711588
Iteration: 10, Func. Count: 146, Neg. LLF: 105.1820448004621
Iteration: 11, Func. Count: 160, Neg. LLF: 105.17403501392752
Iteration: 12, Func. Count: 174, Neg. LLF: 105.17374525280563
Iteration: 13, Func. Count: 188, Neg. LLF: 105.17367919434884
Iteration: 14, Func. Count: 202, Neg. LLF: 105.1736889175258
Iteration: 15, Func. Count: 226, Neg. LLF: 105.17374830685566
Iteration: 16, Func. Count: 242, Neg. LLF: 105.17366333290181
Iteration: 17, Func. Count: 266, Neg. LLF: 105.17227338900497
Iteration: 18, Func. Count: 290, Neg. LLF: 105.17376796870985
Iteration: 19, Func. Count: 306, Neg. LLF: 105.17372857441565
Iteration: 20, Func. Count: 322, Neg. LLF: 105.17372731515452
Iteration: 21, Func. Count: 337, Neg. LLF: 105.173727002232
Iteration: 22, Func. Count: 350, Neg. LLF: 105.17372703201606
Optimization terminated successfully (Exit mode 0)
Current function value: 105.173727002232
Iterations: 23
Function evaluations: 350
Gradient evaluations: 22
Iteration: 1, Func. Count: 12, Neg. LLF: 126.04990039165935
Iteration: 2, Func. Count: 25, Neg. LLF: 153.66502519806286
Iteration: 3, Func. Count: 37, Neg. LLF: 109.86471472154196
Iteration: 4, Func. Count: 48, Neg. LLF: 109.58659587214541
Iteration: 5, Func. Count: 60, Neg. LLF: 108.33118292088511
Iteration: 6, Func. Count: 72, Neg. LLF: 107.06838290463486
Iteration: 7, Func. Count: 83, Neg. LLF: 106.69099878171072
Iteration: 8, Func. Count: 94, Neg. LLF: 106.40884450589647
Iteration: 9, Func. Count: 105, Neg. LLF: 106.34278315905792
Iteration: 10, Func. Count: 116, Neg. LLF: 106.3420778437237
Iteration: 11, Func. Count: 127, Neg. LLF: 106.34187276984088
Iteration: 12, Func. Count: 137, Neg. LLF: 106.34187279416902
Optimization terminated successfully (Exit mode 0)
Current function value: 106.34187276984088
Iterations: 12
Function evaluations: 137
Gradient evaluations: 12
Iteration: 1, Func. Count: 13, Neg. LLF: 125.96308330562628
Iteration: 2, Func. Count: 29, Neg. LLF: 144.68519576977184
Iteration: 3, Func. Count: 42, Neg. LLF: 111.15635121830826
Iteration: 4, Func. Count: 54, Neg. LLF: 118.33085163173341
Iteration: 5, Func. Count: 67, Neg. LLF: 155.14034287261356
Iteration: 6, Func. Count: 82, Neg. LLF: 110.30506290950795
Iteration: 7, Func. Count: 95, Neg. LLF: 109.83044492756059
Iteration: 8, Func. Count: 108, Neg. LLF: 107.78202458547999
Iteration: 9, Func. Count: 120, Neg. LLF: 107.49738085713672
Iteration: 10, Func. Count: 132, Neg. LLF: 107.63869453248768
Iteration: 11, Func. Count: 145, Neg. LLF: 107.30045613339081
Iteration: 12, Func. Count: 157, Neg. LLF: 107.27296025612726
Iteration: 13, Func. Count: 169, Neg. LLF: 107.26493563225841
Iteration: 14, Func. Count: 181, Neg. LLF: 107.24686875391849
Iteration: 15, Func. Count: 193, Neg. LLF: 107.21013991339267
Iteration: 16, Func. Count: 205, Neg. LLF: 107.17205088628435
Iteration: 17, Func. Count: 217, Neg. LLF: 107.14153453799011
Iteration: 18, Func. Count: 229, Neg. LLF: 107.12204648209793
Iteration: 19, Func. Count: 241, Neg. LLF: 107.11030935163541
Iteration: 20, Func. Count: 253, Neg. LLF: 107.1045911836364
Iteration: 21, Func. Count: 265, Neg. LLF: 107.09669829315523
Iteration: 22, Func. Count: 277, Neg. LLF: 106.92752433317801
Iteration: 23, Func. Count: 289, Neg. LLF: 106.82275653848131
Iteration: 24, Func. Count: 301, Neg. LLF: 106.33527389502457
Iteration: 25, Func. Count: 313, Neg. LLF: 107.04399130325996
Iteration: 26, Func. Count: 326, Neg. LLF: 106.87528058325941
Iteration: 27, Func. Count: 339, Neg. LLF: 106.34187888880525
Iteration: 28, Func. Count: 351, Neg. LLF: 106.34187273779128
Iteration: 29, Func. Count: 362, Neg. LLF: 106.34187299835408
Optimization terminated successfully (Exit mode 0)
Current function value: 106.34187273779128
Iterations: 30
Function evaluations: 362
Gradient evaluations: 29
Iteration: 1, Func. Count: 14, Neg. LLF: 130.12947142861256
Iteration: 2, Func. Count: 31, Neg. LLF: 154.1795095447864
Iteration: 3, Func. Count: 45, Neg. LLF: 110.99123139310666
Iteration: 4, Func. Count: 59, Neg. LLF: 113.67045552474734
Iteration: 5, Func. Count: 73, Neg. LLF: 111.53291731601578
Iteration: 6, Func. Count: 87, Neg. LLF: 109.40832693770248
Iteration: 7, Func. Count: 101, Neg. LLF: 109.22406591004457
Iteration: 8, Func. Count: 115, Neg. LLF: 107.72654047988898
Iteration: 9, Func. Count: 129, Neg. LLF: 119.24416304126953
Iteration: 10, Func. Count: 143, Neg. LLF: 107.6495644870345
Iteration: 11, Func. Count: 157, Neg. LLF: 108.20907760948134
Iteration: 12, Func. Count: 171, Neg. LLF: 107.24223941789442
Iteration: 13, Func. Count: 184, Neg. LLF: 107.28642534774569
Iteration: 14, Func. Count: 198, Neg. LLF: 107.20719820103712
Iteration: 15, Func. Count: 211, Neg. LLF: 107.20161041643252
Iteration: 16, Func. Count: 224, Neg. LLF: 107.19538765522853
Iteration: 17, Func. Count: 237, Neg. LLF: 107.17423723999138
Iteration: 18, Func. Count: 250, Neg. LLF: 107.1542907859505
Iteration: 19, Func. Count: 263, Neg. LLF: 107.13185465369946
Iteration: 20, Func. Count: 276, Neg. LLF: 107.11581622352395
Iteration: 21, Func. Count: 289, Neg. LLF: 107.10720738045956
Iteration: 22, Func. Count: 302, Neg. LLF: 107.10268428150175
Iteration: 23, Func. Count: 315, Neg. LLF: 107.04922863793969
Iteration: 24, Func. Count: 328, Neg. LLF: 106.87197676137521
Iteration: 25, Func. Count: 341, Neg. LLF: 108.21926007816371
Iteration: 26, Func. Count: 355, Neg. LLF: 106.37751393564997
Iteration: 27, Func. Count: 368, Neg. LLF: 107.16936187431885
Iteration: 28, Func. Count: 383, Neg. LLF: 106.37861528740883
Iteration: 29, Func. Count: 397, Neg. LLF: 106.34327669548225
Iteration: 30, Func. Count: 410, Neg. LLF: 106.34187767992405
Iteration: 31, Func. Count: 423, Neg. LLF: 106.34187268693363
Iteration: 32, Func. Count: 435, Neg. LLF: 106.34187269797287
Optimization terminated successfully (Exit mode 0)
Current function value: 106.34187268693363
Iterations: 33
Function evaluations: 435
Gradient evaluations: 32
Iteration: 1, Func. Count: 15, Neg. LLF: 133.16052337450463
Iteration: 2, Func. Count: 33, Neg. LLF: 191.98229919747163
Iteration: 3, Func. Count: 48, Neg. LLF: 102.84142397600375
Iteration: 4, Func. Count: 62, Neg. LLF: 114.04613563282786
Iteration: 5, Func. Count: 77, Neg. LLF: 116.7408613871798
Iteration: 6, Func. Count: 92, Neg. LLF: 100.8337199376452
Iteration: 7, Func. Count: 106, Neg. LLF: 107.84993640754988
Iteration: 8, Func. Count: 121, Neg. LLF: 108.80614335376423
Iteration: 9, Func. Count: 136, Neg. LLF: 100.71537363540384
Iteration: 10, Func. Count: 151, Neg. LLF: 100.81922609327367
Iteration: 11, Func. Count: 166, Neg. LLF: 100.31535800468983
Iteration: 12, Func. Count: 180, Neg. LLF: 100.29305670656602
Iteration: 13, Func. Count: 194, Neg. LLF: 100.28491948044602
Iteration: 14, Func. Count: 208, Neg. LLF: 100.28190064327178
Iteration: 15, Func. Count: 222, Neg. LLF: 100.28178234927654
Iteration: 16, Func. Count: 236, Neg. LLF: 100.28177332723897
Iteration: 17, Func. Count: 250, Neg. LLF: 100.28177339324324
Optimization terminated successfully (Exit mode 0)
Current function value: 100.28177332723959
Iterations: 17
Function evaluations: 260
Gradient evaluations: 17
Iteration: 1, Func. Count: 16, Neg. LLF: 136.1166969851204
Iteration: 2, Func. Count: 35, Neg. LLF: 191.813105467408
Iteration: 3, Func. Count: 51, Neg. LLF: 100.67525411608204
Iteration: 4, Func. Count: 66, Neg. LLF: 144.5832763784795
Iteration: 5, Func. Count: 83, Neg. LLF: 100.50393288749555
Iteration: 6, Func. Count: 98, Neg. LLF: 114.96722338698399
Iteration: 7, Func. Count: 114, Neg. LLF: 102.42194420994618
Iteration: 8, Func. Count: 130, Neg. LLF: 101.97520659881017
Iteration: 9, Func. Count: 146, Neg. LLF: 100.33777853833472
Iteration: 10, Func. Count: 161, Neg. LLF: 100.30056231251183
Iteration: 11, Func. Count: 176, Neg. LLF: 100.28437139410168
Iteration: 12, Func. Count: 191, Neg. LLF: 100.28180399596754
Iteration: 13, Func. Count: 206, Neg. LLF: 100.28177432986914
Iteration: 14, Func. Count: 221, Neg. LLF: 100.28177205971548
Iteration: 15, Func. Count: 236, Neg. LLF: 100.28177289002106
Optimization terminated successfully (Exit mode 0)
Current function value: 100.28177289002106
Iterations: 15
Function evaluations: 236
Gradient evaluations: 15
Iteration: 1, Func. Count: 6, Neg. LLF: 135.930287639361
Iteration: 2, Func. Count: 13, Neg. LLF: 286.9031294204908
Iteration: 3, Func. Count: 19, Neg. LLF: 1685533.9684951254
Iteration: 4, Func. Count: 25, Neg. LLF: 112.03467469519566
Iteration: 5, Func. Count: 31, Neg. LLF: 109.67894036621132
Iteration: 6, Func. Count: 37, Neg. LLF: 108.73897632282903
Iteration: 7, Func. Count: 42, Neg. LLF: 108.29551999540884
Iteration: 8, Func. Count: 47, Neg. LLF: 108.05219506361662
Iteration: 9, Func. Count: 52, Neg. LLF: 108.02657923575502
Iteration: 10, Func. Count: 57, Neg. LLF: 108.02622563436563
Iteration: 11, Func. Count: 62, Neg. LLF: 108.02619932395916
Iteration: 12, Func. Count: 66, Neg. LLF: 108.02619931380865
Optimization terminated successfully (Exit mode 0)
Current function value: 108.02619932395916
Iterations: 12
Function evaluations: 66
Gradient evaluations: 12
Iteration: 1, Func. Count: 5, Neg. LLF: 123.76357543384937
Iteration: 2, Func. Count: 10, Neg. LLF: 140.6822981712337
Iteration: 3, Func. Count: 15, Neg. LLF: 116.05082789104576
Iteration: 4, Func. Count: 19, Neg. LLF: 115.74699619086685
Iteration: 5, Func. Count: 23, Neg. LLF: 115.5505145827551
Iteration: 6, Func. Count: 27, Neg. LLF: 115.5184511386106
Iteration: 7, Func. Count: 31, Neg. LLF: 115.51593361421934
Iteration: 8, Func. Count: 35, Neg. LLF: 115.5158964731
Iteration: 9, Func. Count: 38, Neg. LLF: 115.51589648734456
Optimization terminated successfully (Exit mode 0)
Current function value: 115.5158964731
Iterations: 9
Function evaluations: 38
Gradient evaluations: 9
Iteration: 1, Func. Count: 6, Neg. LLF: 170.14768737513515
Iteration: 2, Func. Count: 14, Neg. LLF: 121.58583162555847
Iteration: 3, Func. Count: 20, Neg. LLF: 142.318734870777
Iteration: 4, Func. Count: 26, Neg. LLF: 113.58815521071877
Iteration: 5, Func. Count: 31, Neg. LLF: 113.44348318257816
Iteration: 6, Func. Count: 36, Neg. LLF: 113.54646230587734
Iteration: 7, Func. Count: 42, Neg. LLF: 113.37511883155732
Iteration: 8, Func. Count: 47, Neg. LLF: 113.37023274256869
Iteration: 9, Func. Count: 52, Neg. LLF: 113.36436393012251
Iteration: 10, Func. Count: 57, Neg. LLF: 113.36376234496797
Iteration: 11, Func. Count: 62, Neg. LLF: 113.36372597244976
Iteration: 12, Func. Count: 67, Neg. LLF: 113.36372527987797
Optimization terminated successfully (Exit mode 0)
Current function value: 113.36372527987797
Iterations: 12
Function evaluations: 67
Gradient evaluations: 12
Iteration: 1, Func. Count: 7, Neg. LLF: 166.95618227699444
Iteration: 2, Func. Count: 16, Neg. LLF: 113.7444302809258
Iteration: 3, Func. Count: 22, Neg. LLF: 112.99414181206161
Iteration: 4, Func. Count: 28, Neg. LLF: 116.89483199121416
Iteration: 5, Func. Count: 36, Neg. LLF: 112.92791734625091
Iteration: 6, Func. Count: 43, Neg. LLF: 112.85860612041338
Iteration: 7, Func. Count: 49, Neg. LLF: 112.8568001671643
Iteration: 8, Func. Count: 55, Neg. LLF: 112.85679542437843
Iteration: 9, Func. Count: 61, Neg. LLF: 112.8567687733127
Iteration: 10, Func. Count: 67, Neg. LLF: 112.85671811317225
Iteration: 11, Func. Count: 73, Neg. LLF: 112.85636628409517
Iteration: 12, Func. Count: 79, Neg. LLF: 112.84860232253276
Iteration: 13, Func. Count: 85, Neg. LLF: 112.84835610878862
Iteration: 14, Func. Count: 92, Neg. LLF: 112.82224189436066
Iteration: 15, Func. Count: 98, Neg. LLF: 112.81354597495975
Iteration: 16, Func. Count: 104, Neg. LLF: 112.81040483718608
Iteration: 17, Func. Count: 110, Neg. LLF: 112.81039226731244
Iteration: 18, Func. Count: 115, Neg. LLF: 112.810391981438
Optimization terminated successfully (Exit mode 0)
Current function value: 112.81039226731244
Iterations: 18
Function evaluations: 115
Gradient evaluations: 18
Iteration: 1, Func. Count: 8, Neg. LLF: 168.3050163130341
Iteration: 2, Func. Count: 18, Neg. LLF: 113.94786908756649
Iteration: 3, Func. Count: 26, Neg. LLF: 113.01923304545691
Iteration: 4, Func. Count: 33, Neg. LLF: 112.98483448220512
Iteration: 5, Func. Count: 41, Neg. LLF: 113.71176792942688
Iteration: 6, Func. Count: 49, Neg. LLF: 112.89426655964398
Iteration: 7, Func. Count: 56, Neg. LLF: 112.89112755195868
Iteration: 8, Func. Count: 63, Neg. LLF: 112.86696420287683
Iteration: 9, Func. Count: 70, Neg. LLF: 112.84917735890616
Iteration: 10, Func. Count: 77, Neg. LLF: 112.84540954155449
Iteration: 11, Func. Count: 84, Neg. LLF: 112.84470921954784
Iteration: 12, Func. Count: 91, Neg. LLF: 112.84445464057305
Iteration: 13, Func. Count: 98, Neg. LLF: 112.84276449591752
Iteration: 14, Func. Count: 105, Neg. LLF: 112.84005298731667
Iteration: 15, Func. Count: 112, Neg. LLF: 112.83277345055349
Iteration: 16, Func. Count: 119, Neg. LLF: 112.82463869685739
Iteration: 17, Func. Count: 126, Neg. LLF: 112.81678997154388
Iteration: 18, Func. Count: 133, Neg. LLF: 112.8114284368216
Iteration: 19, Func. Count: 140, Neg. LLF: 112.81049780852632
Iteration: 20, Func. Count: 147, Neg. LLF: 112.810399927864
Iteration: 21, Func. Count: 154, Neg. LLF: 112.81039228527368
Iteration: 22, Func. Count: 160, Neg. LLF: 112.81039200192052
Optimization terminated successfully (Exit mode 0)
Current function value: 112.81039228527368
Iterations: 22
Function evaluations: 160
Gradient evaluations: 22
Iteration: 1, Func. Count: 9, Neg. LLF: 172.9466623733148
Iteration: 2, Func. Count: 20, Neg. LLF: 114.0322838773395
Iteration: 3, Func. Count: 29, Neg. LLF: 112.97597743026407
Iteration: 4, Func. Count: 37, Neg. LLF: 112.94149930708095
Iteration: 5, Func. Count: 46, Neg. LLF: 112.98681363367675
Iteration: 6, Func. Count: 55, Neg. LLF: 112.89996400510014
Iteration: 7, Func. Count: 63, Neg. LLF: 112.87753585370815
Iteration: 8, Func. Count: 71, Neg. LLF: 112.87122679615933
Iteration: 9, Func. Count: 79, Neg. LLF: 112.86456903728862
Iteration: 10, Func. Count: 87, Neg. LLF: 112.86577099519384
Iteration: 11, Func. Count: 96, Neg. LLF: 112.86387119015276
Iteration: 12, Func. Count: 104, Neg. LLF: 112.86387032920494
Optimization terminated successfully (Exit mode 0)
Current function value: 112.86387032920494
Iterations: 12
Function evaluations: 104
Gradient evaluations: 12
Iteration: 1, Func. Count: 6, Neg. LLF: 136.46813646090385
Iteration: 2, Func. Count: 13, Neg. LLF: 295.1890150171369
Iteration: 3, Func. Count: 19, Neg. LLF: 139.22891395861888
Iteration: 4, Func. Count: 25, Neg. LLF: 113.98223965287286
Iteration: 5, Func. Count: 31, Neg. LLF: 111.32333959891704
Iteration: 6, Func. Count: 37, Neg. LLF: 110.34370950370779
Iteration: 7, Func. Count: 42, Neg. LLF: 109.95471897245258
Iteration: 8, Func. Count: 47, Neg. LLF: 109.67239288303311
Iteration: 9, Func. Count: 52, Neg. LLF: 109.65273998280688
Iteration: 10, Func. Count: 57, Neg. LLF: 109.65219123364439
Iteration: 11, Func. Count: 62, Neg. LLF: 109.65217567544721
Iteration: 12, Func. Count: 66, Neg. LLF: 109.6521756674994
Optimization terminated successfully (Exit mode 0)
Current function value: 109.65217567544721
Iterations: 12
Function evaluations: 66
Gradient evaluations: 12
Iteration: 1, Func. Count: 7, Neg. LLF: 114.90412460216164
Iteration: 2, Func. Count: 14, Neg. LLF: 130.01734740762438
Iteration: 3, Func. Count: 21, Neg. LLF: 111.74514367980217
Iteration: 4, Func. Count: 28, Neg. LLF: 109.88390535375966
Iteration: 5, Func. Count: 34, Neg. LLF: 109.69913177985171
Iteration: 6, Func. Count: 40, Neg. LLF: 109.85672659877531
Iteration: 7, Func. Count: 47, Neg. LLF: 109.6174746444407
Iteration: 8, Func. Count: 53, Neg. LLF: 109.61322839795535
Iteration: 9, Func. Count: 59, Neg. LLF: 109.61316731753635
Iteration: 10, Func. Count: 65, Neg. LLF: 109.61316362323157
Iteration: 11, Func. Count: 70, Neg. LLF: 109.61316360282936
Optimization terminated successfully (Exit mode 0)
Current function value: 109.61316362323157
Iterations: 11
Function evaluations: 70
Gradient evaluations: 11
Iteration: 1, Func. Count: 8, Neg. LLF: 114.05868814182182
Iteration: 2, Func. Count: 16, Neg. LLF: 135.75238542515666
Iteration: 3, Func. Count: 24, Neg. LLF: 112.51529495812858
Iteration: 4, Func. Count: 32, Neg. LLF: 110.1047882880355
Iteration: 5, Func. Count: 39, Neg. LLF: 109.70631073461085
Iteration: 6, Func. Count: 46, Neg. LLF: 109.97022606123036
Iteration: 7, Func. Count: 54, Neg. LLF: 109.61608190375092
Iteration: 8, Func. Count: 61, Neg. LLF: 109.61333683412127
Iteration: 9, Func. Count: 68, Neg. LLF: 109.61317546575839
Iteration: 10, Func. Count: 75, Neg. LLF: 109.61316444353307
Iteration: 11, Func. Count: 82, Neg. LLF: 109.61316361008564
Optimization terminated successfully (Exit mode 0)
Current function value: 109.61316361008564
Iterations: 11
Function evaluations: 82
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 113.67806456057752
Iteration: 2, Func. Count: 18, Neg. LLF: 150.52036658934531
Iteration: 3, Func. Count: 27, Neg. LLF: 113.56263289085982
Iteration: 4, Func. Count: 36, Neg. LLF: 110.14526523202427
Iteration: 5, Func. Count: 44, Neg. LLF: 109.78211204741395
Iteration: 6, Func. Count: 52, Neg. LLF: 110.45300076011085
Iteration: 7, Func. Count: 61, Neg. LLF: 109.63140399050233
Iteration: 8, Func. Count: 69, Neg. LLF: 109.61719156348882
Iteration: 9, Func. Count: 77, Neg. LLF: 109.6134247368997
Iteration: 10, Func. Count: 85, Neg. LLF: 109.6131943979848
Iteration: 11, Func. Count: 93, Neg. LLF: 109.61316460338584
Iteration: 12, Func. Count: 101, Neg. LLF: 109.61316361687953
Optimization terminated successfully (Exit mode 0)
Current function value: 109.61316361687953
Iterations: 12
Function evaluations: 101
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 113.97687702736202
Iteration: 2, Func. Count: 20, Neg. LLF: 146.1672558558201
Iteration: 3, Func. Count: 30, Neg. LLF: 112.51372258587324
Iteration: 4, Func. Count: 40, Neg. LLF: 110.15241173981518
Iteration: 5, Func. Count: 49, Neg. LLF: 109.7785197242702
Iteration: 6, Func. Count: 58, Neg. LLF: 110.37815042106305
Iteration: 7, Func. Count: 68, Neg. LLF: 109.6287739497802
Iteration: 8, Func. Count: 77, Neg. LLF: 109.6157286101682
Iteration: 9, Func. Count: 86, Neg. LLF: 109.6133186712542
Iteration: 10, Func. Count: 95, Neg. LLF: 109.61317310119419
Iteration: 11, Func. Count: 104, Neg. LLF: 109.61316400094343
Iteration: 12, Func. Count: 112, Neg. LLF: 109.6131640379321
Optimization terminated successfully (Exit mode 0)
Current function value: 109.61316400094343
Iterations: 12
Function evaluations: 112
Gradient evaluations: 12
Iteration: 1, Func. Count: 7, Neg. LLF: 142.221383558815
Iteration: 2, Func. Count: 15, Neg. LLF: 305.54535752623974
Iteration: 3, Func. Count: 22, Neg. LLF: 159.0158222974888
Iteration: 4, Func. Count: 29, Neg. LLF: 116.07026297470664
Iteration: 5, Func. Count: 36, Neg. LLF: 116.20244082675372
Iteration: 6, Func. Count: 43, Neg. LLF: 110.36150117203303
Iteration: 7, Func. Count: 49, Neg. LLF: 110.10422720121419
Iteration: 8, Func. Count: 55, Neg. LLF: 109.95297841611269
Iteration: 9, Func. Count: 61, Neg. LLF: 109.73229712014272
Iteration: 10, Func. Count: 67, Neg. LLF: 109.64410360890056
Iteration: 11, Func. Count: 73, Neg. LLF: 109.61672288447355
Iteration: 12, Func. Count: 79, Neg. LLF: 109.61114316707962
Iteration: 13, Func. Count: 85, Neg. LLF: 109.61087494103202
Iteration: 14, Func. Count: 91, Neg. LLF: 109.61087063685349
Iteration: 15, Func. Count: 96, Neg. LLF: 109.61087062677493
Optimization terminated successfully (Exit mode 0)
Current function value: 109.61087063685349
Iterations: 15
Function evaluations: 96
Gradient evaluations: 15
Iteration: 1, Func. Count: 8, Neg. LLF: 170.38884651367422
Iteration: 2, Func. Count: 18, Neg. LLF: 114.54619614864534
Iteration: 3, Func. Count: 26, Neg. LLF: 112.999815901513
Iteration: 4, Func. Count: 34, Neg. LLF: 112.47109155069937
Iteration: 5, Func. Count: 42, Neg. LLF: 110.48210640502951
Iteration: 6, Func. Count: 50, Neg. LLF: 109.99948227924952
Iteration: 7, Func. Count: 58, Neg. LLF: 109.76315239517051
Iteration: 8, Func. Count: 65, Neg. LLF: 109.7516727139414
Iteration: 9, Func. Count: 72, Neg. LLF: 109.74404435404868
Iteration: 10, Func. Count: 79, Neg. LLF: 109.70538475781703
Iteration: 11, Func. Count: 86, Neg. LLF: 109.6489621252575
Iteration: 12, Func. Count: 93, Neg. LLF: 109.62301316932697
Iteration: 13, Func. Count: 100, Neg. LLF: 109.61191436231016
Iteration: 14, Func. Count: 107, Neg. LLF: 109.61098523266591
Iteration: 15, Func. Count: 114, Neg. LLF: 109.61087243344967
Iteration: 16, Func. Count: 121, Neg. LLF: 109.61087061893548
Iteration: 17, Func. Count: 127, Neg. LLF: 109.6108705998411
Optimization terminated successfully (Exit mode 0)
Current function value: 109.61087061893548
Iterations: 17
Function evaluations: 127
Gradient evaluations: 17
Iteration: 1, Func. Count: 9, Neg. LLF: 166.50903172918532
Iteration: 2, Func. Count: 20, Neg. LLF: 116.29750753129441
Iteration: 3, Func. Count: 29, Neg. LLF: 112.5012690006329
Iteration: 4, Func. Count: 38, Neg. LLF: 110.27483405851267
Iteration: 5, Func. Count: 46, Neg. LLF: 115.31205430748363
Iteration: 6, Func. Count: 56, Neg. LLF: 110.29619520331043
Iteration: 7, Func. Count: 65, Neg. LLF: 109.7064219362153
Iteration: 8, Func. Count: 73, Neg. LLF: 109.68742778936756
Iteration: 9, Func. Count: 81, Neg. LLF: 109.67674633583773
Iteration: 10, Func. Count: 89, Neg. LLF: 109.6734400386373
Iteration: 11, Func. Count: 97, Neg. LLF: 109.66740988057721
Iteration: 12, Func. Count: 105, Neg. LLF: 109.65845257955343
Iteration: 13, Func. Count: 113, Neg. LLF: 109.64287242839877
Iteration: 14, Func. Count: 121, Neg. LLF: 109.62556615203516
Iteration: 15, Func. Count: 129, Neg. LLF: 109.61361414030009
Iteration: 16, Func. Count: 137, Neg. LLF: 109.61110003792831
Iteration: 17, Func. Count: 145, Neg. LLF: 109.6108816123485
Iteration: 18, Func. Count: 153, Neg. LLF: 109.61087064534358
Iteration: 19, Func. Count: 160, Neg. LLF: 109.61087068941968
Optimization terminated successfully (Exit mode 0)
Current function value: 109.61087064534358
Iterations: 19
Function evaluations: 160
Gradient evaluations: 19
Iteration: 1, Func. Count: 10, Neg. LLF: 166.66141823242285
Iteration: 2, Func. Count: 22, Neg. LLF: 117.8895083326845
Iteration: 3, Func. Count: 32, Neg. LLF: 119.42543992572116
Iteration: 4, Func. Count: 42, Neg. LLF: 110.2519279080586
Iteration: 5, Func. Count: 51, Neg. LLF: 109.83636335840163
Iteration: 6, Func. Count: 60, Neg. LLF: 109.7419885474485
Iteration: 7, Func. Count: 69, Neg. LLF: 109.68344537527292
Iteration: 8, Func. Count: 78, Neg. LLF: 109.6713136154142
Iteration: 9, Func. Count: 87, Neg. LLF: 109.66812489713853
Iteration: 10, Func. Count: 96, Neg. LLF: 109.6620752977817
Iteration: 11, Func. Count: 105, Neg. LLF: 109.65110243034502
Iteration: 12, Func. Count: 114, Neg. LLF: 109.63442739595878
Iteration: 13, Func. Count: 123, Neg. LLF: 109.61983942935784
Iteration: 14, Func. Count: 132, Neg. LLF: 109.61152148561445
Iteration: 15, Func. Count: 141, Neg. LLF: 109.61089689073478
Iteration: 16, Func. Count: 150, Neg. LLF: 109.61087158719572
Iteration: 17, Func. Count: 159, Neg. LLF: 109.61087061259795
Optimization terminated successfully (Exit mode 0)
Current function value: 109.61087061259795
Iterations: 17
Function evaluations: 159
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 171.77462351432695
Iteration: 2, Func. Count: 24, Neg. LLF: 118.01665299747069
Iteration: 3, Func. Count: 35, Neg. LLF: 119.73419990525078
Iteration: 4, Func. Count: 46, Neg. LLF: 110.23867519791206
Iteration: 5, Func. Count: 56, Neg. LLF: 109.81386262305246
Iteration: 6, Func. Count: 66, Neg. LLF: 109.70558738860412
Iteration: 7, Func. Count: 76, Neg. LLF: 109.68188808787922
Iteration: 8, Func. Count: 86, Neg. LLF: 109.66612929992282
Iteration: 9, Func. Count: 96, Neg. LLF: 109.66261228005891
Iteration: 10, Func. Count: 106, Neg. LLF: 109.65752761204783
Iteration: 11, Func. Count: 116, Neg. LLF: 109.64704465933453
Iteration: 12, Func. Count: 126, Neg. LLF: 109.63214524452327
Iteration: 13, Func. Count: 136, Neg. LLF: 109.61860898107028
Iteration: 14, Func. Count: 146, Neg. LLF: 109.61152977812519
Iteration: 15, Func. Count: 156, Neg. LLF: 109.61089299073818
Iteration: 16, Func. Count: 166, Neg. LLF: 109.61087111482901
Iteration: 17, Func. Count: 175, Neg. LLF: 109.61087115542948
Optimization terminated successfully (Exit mode 0)
Current function value: 109.61087111482901
Iterations: 17
Function evaluations: 175
Gradient evaluations: 17
Iteration: 1, Func. Count: 8, Neg. LLF: 137.6365453739191
Iteration: 2, Func. Count: 17, Neg. LLF: 394.7962145409341
Iteration: 3, Func. Count: 25, Neg. LLF: 6454696.817993034
Iteration: 4, Func. Count: 33, Neg. LLF: 116.94201002474689
Iteration: 5, Func. Count: 41, Neg. LLF: 117.54292599783975
Iteration: 6, Func. Count: 49, Neg. LLF: 110.39713928736015
Iteration: 7, Func. Count: 56, Neg. LLF: 110.25753196158364
Iteration: 8, Func. Count: 63, Neg. LLF: 110.16369073917461
Iteration: 9, Func. Count: 70, Neg. LLF: 109.8344456147236
Iteration: 10, Func. Count: 77, Neg. LLF: 109.76045011872058
Iteration: 11, Func. Count: 84, Neg. LLF: 109.66997440076352
Iteration: 12, Func. Count: 91, Neg. LLF: 109.63268584880547
Iteration: 13, Func. Count: 98, Neg. LLF: 109.61117302822656
Iteration: 14, Func. Count: 105, Neg. LLF: 109.61087189977701
Iteration: 15, Func. Count: 112, Neg. LLF: 109.6108706009262
Iteration: 16, Func. Count: 118, Neg. LLF: 109.61087063015573
Optimization terminated successfully (Exit mode 0)
Current function value: 109.6108706009262
Iterations: 16
Function evaluations: 118
Gradient evaluations: 16
Iteration: 1, Func. Count: 9, Neg. LLF: 170.53532482111413
Iteration: 2, Func. Count: 20, Neg. LLF: 114.54829719070382
Iteration: 3, Func. Count: 29, Neg. LLF: 113.02396408179776
Iteration: 4, Func. Count: 38, Neg. LLF: 112.44459681451158
Iteration: 5, Func. Count: 47, Neg. LLF: 110.48285361103142
Iteration: 6, Func. Count: 56, Neg. LLF: 109.98931993732374
Iteration: 7, Func. Count: 65, Neg. LLF: 109.76278376834871
Iteration: 8, Func. Count: 73, Neg. LLF: 109.75144382317346
Iteration: 9, Func. Count: 81, Neg. LLF: 109.74391398244174
Iteration: 10, Func. Count: 89, Neg. LLF: 109.70570978591648
Iteration: 11, Func. Count: 97, Neg. LLF: 109.64353454700745
Iteration: 12, Func. Count: 105, Neg. LLF: 109.62031324930686
Iteration: 13, Func. Count: 113, Neg. LLF: 109.6115910131625
Iteration: 14, Func. Count: 121, Neg. LLF: 109.61095167379662
Iteration: 15, Func. Count: 129, Neg. LLF: 109.61087132500347
Iteration: 16, Func. Count: 137, Neg. LLF: 109.61087060510913
Optimization terminated successfully (Exit mode 0)
Current function value: 109.61087060510913
Iterations: 16
Function evaluations: 137
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 166.8063697426246
Iteration: 2, Func. Count: 22, Neg. LLF: 116.33566924710071
Iteration: 3, Func. Count: 32, Neg. LLF: 112.53773111587635
Iteration: 4, Func. Count: 42, Neg. LLF: 110.26140820401216
Iteration: 5, Func. Count: 51, Neg. LLF: 114.68675870282495
Iteration: 6, Func. Count: 62, Neg. LLF: 110.25140063302788
Iteration: 7, Func. Count: 72, Neg. LLF: 109.69769753498397
Iteration: 8, Func. Count: 81, Neg. LLF: 109.68846132546423
Iteration: 9, Func. Count: 90, Neg. LLF: 109.67470239126325
Iteration: 10, Func. Count: 99, Neg. LLF: 109.67177183519343
Iteration: 11, Func. Count: 108, Neg. LLF: 109.66542247522663
Iteration: 12, Func. Count: 117, Neg. LLF: 109.65604887388872
Iteration: 13, Func. Count: 126, Neg. LLF: 109.63970437349907
Iteration: 14, Func. Count: 135, Neg. LLF: 109.62298952801767
Iteration: 15, Func. Count: 144, Neg. LLF: 109.6128636550621
Iteration: 16, Func. Count: 153, Neg. LLF: 109.61105007044327
Iteration: 17, Func. Count: 162, Neg. LLF: 109.61087674923252
Iteration: 18, Func. Count: 171, Neg. LLF: 109.61087063846348
Iteration: 19, Func. Count: 179, Neg. LLF: 109.61087068254149
Optimization terminated successfully (Exit mode 0)
Current function value: 109.61087063846348
Iterations: 19
Function evaluations: 179
Gradient evaluations: 19
Iteration: 1, Func. Count: 11, Neg. LLF: 166.9903300104431
Iteration: 2, Func. Count: 24, Neg. LLF: 117.91027378675723
Iteration: 3, Func. Count: 35, Neg. LLF: 119.57605523129936
Iteration: 4, Func. Count: 46, Neg. LLF: 110.24166558137297
Iteration: 5, Func. Count: 56, Neg. LLF: 109.83082471419095
Iteration: 6, Func. Count: 66, Neg. LLF: 109.73466961451102
Iteration: 7, Func. Count: 76, Neg. LLF: 109.68047011829691
Iteration: 8, Func. Count: 86, Neg. LLF: 109.66894218771934
Iteration: 9, Func. Count: 96, Neg. LLF: 109.66595846461115
Iteration: 10, Func. Count: 106, Neg. LLF: 109.65981233209368
Iteration: 11, Func. Count: 116, Neg. LLF: 109.64892982436761
Iteration: 12, Func. Count: 126, Neg. LLF: 109.63272771696191
Iteration: 13, Func. Count: 136, Neg. LLF: 109.61894062038344
Iteration: 14, Func. Count: 146, Neg. LLF: 109.6113624765834
Iteration: 15, Func. Count: 156, Neg. LLF: 109.61088960562455
Iteration: 16, Func. Count: 166, Neg. LLF: 109.61087126687116
Iteration: 17, Func. Count: 176, Neg. LLF: 109.61087060517512
Optimization terminated successfully (Exit mode 0)
Current function value: 109.61087060517512
Iterations: 17
Function evaluations: 176
Gradient evaluations: 17
Iteration: 1, Func. Count: 12, Neg. LLF: 172.25503385747572
Iteration: 2, Func. Count: 26, Neg. LLF: 118.0561036969765
Iteration: 3, Func. Count: 38, Neg. LLF: 119.88332233582659
Iteration: 4, Func. Count: 50, Neg. LLF: 110.23313860370958
Iteration: 5, Func. Count: 61, Neg. LLF: 109.80952093640714
Iteration: 6, Func. Count: 72, Neg. LLF: 109.7035302297325
Iteration: 7, Func. Count: 83, Neg. LLF: 109.68025464584895
Iteration: 8, Func. Count: 94, Neg. LLF: 109.66395367847291
Iteration: 9, Func. Count: 105, Neg. LLF: 109.66057310375572
Iteration: 10, Func. Count: 116, Neg. LLF: 109.65587392158383
Iteration: 11, Func. Count: 127, Neg. LLF: 109.64551771814298
Iteration: 12, Func. Count: 138, Neg. LLF: 109.63124386236457
Iteration: 13, Func. Count: 149, Neg. LLF: 109.61824489710685
Iteration: 14, Func. Count: 160, Neg. LLF: 109.61148231615101
Iteration: 15, Func. Count: 171, Neg. LLF: 109.6108913474787
Iteration: 16, Func. Count: 182, Neg. LLF: 109.61087107064559
Iteration: 17, Func. Count: 192, Neg. LLF: 109.61087111124422
Optimization terminated successfully (Exit mode 0)
Current function value: 109.61087107064559
Iterations: 17
Function evaluations: 192
Gradient evaluations: 17
Iteration: 1, Func. Count: 5, Neg. LLF: 140.23929322666325
Iteration: 2, Func. Count: 10, Neg. LLF: 132.56000092628196
Iteration: 3, Func. Count: 15, Neg. LLF: 115.44174034297905
Iteration: 4, Func. Count: 19, Neg. LLF: 115.18468816284917
Iteration: 5, Func. Count: 23, Neg. LLF: 115.07912582532416
Iteration: 6, Func. Count: 27, Neg. LLF: 115.06460522153954
Iteration: 7, Func. Count: 31, Neg. LLF: 115.0643170024534
Iteration: 8, Func. Count: 35, Neg. LLF: 115.06431514742553
Iteration: 9, Func. Count: 38, Neg. LLF: 115.06431515281058
Optimization terminated successfully (Exit mode 0)
Current function value: 115.06431514742553
Iterations: 9
Function evaluations: 38
Gradient evaluations: 9
Iteration: 1, Func. Count: 6, Neg. LLF: 170.07518836793633
Iteration: 2, Func. Count: 14, Neg. LLF: 113.4225449360762
Iteration: 3, Func. Count: 19, Neg. LLF: 115.52111997565055
Iteration: 4, Func. Count: 25, Neg. LLF: 112.84961928811869
Iteration: 5, Func. Count: 30, Neg. LLF: 112.81926247376299
Iteration: 6, Func. Count: 35, Neg. LLF: 112.81049526453637
Iteration: 7, Func. Count: 40, Neg. LLF: 112.81039265867673
Iteration: 8, Func. Count: 44, Neg. LLF: 112.8103929471405
Optimization terminated successfully (Exit mode 0)
Current function value: 112.81039265867673
Iterations: 8
Function evaluations: 44
Gradient evaluations: 8
Iteration: 1, Func. Count: 7, Neg. LLF: 165.99241170597665
Iteration: 2, Func. Count: 16, Neg. LLF: 113.48834913363089
Iteration: 3, Func. Count: 22, Neg. LLF: 113.05400368221403
Iteration: 4, Func. Count: 28, Neg. LLF: 119.62330942490163
Iteration: 5, Func. Count: 35, Neg. LLF: 113.11670504963213
Iteration: 6, Func. Count: 42, Neg. LLF: 112.87106654958829
Iteration: 7, Func. Count: 48, Neg. LLF: 112.85638754472018
Iteration: 8, Func. Count: 54, Neg. LLF: 112.85634714554719
Iteration: 9, Func. Count: 60, Neg. LLF: 112.85631846393161
Iteration: 10, Func. Count: 66, Neg. LLF: 112.85622327114977
Iteration: 11, Func. Count: 72, Neg. LLF: 112.8558363886476
Iteration: 12, Func. Count: 78, Neg. LLF: 112.85751773221936
Iteration: 13, Func. Count: 85, Neg. LLF: 112.85468608737018
Iteration: 14, Func. Count: 91, Neg. LLF: 112.8526356280666
Iteration: 15, Func. Count: 97, Neg. LLF: 112.84068431895592
Iteration: 16, Func. Count: 103, Neg. LLF: 112.81335314520922
Iteration: 17, Func. Count: 109, Neg. LLF: 112.81044189651558
Iteration: 18, Func. Count: 115, Neg. LLF: 112.81039234565029
Iteration: 19, Func. Count: 120, Neg. LLF: 112.81039205947947
Optimization terminated successfully (Exit mode 0)
Current function value: 112.81039234565029
Iterations: 19
Function evaluations: 120
Gradient evaluations: 19
Iteration: 1, Func. Count: 8, Neg. LLF: 163.48903142691248
Iteration: 2, Func. Count: 18, Neg. LLF: 113.74132378711171
Iteration: 3, Func. Count: 25, Neg. LLF: 112.94838648617981
Iteration: 4, Func. Count: 32, Neg. LLF: 114.19387827405059
Iteration: 5, Func. Count: 42, Neg. LLF: 112.8866591221657
Iteration: 6, Func. Count: 49, Neg. LLF: 112.87991143720988
Iteration: 7, Func. Count: 56, Neg. LLF: 112.87777928913442
Iteration: 8, Func. Count: 63, Neg. LLF: 112.87776341070396
Iteration: 9, Func. Count: 70, Neg. LLF: 112.87775801384339
Iteration: 10, Func. Count: 76, Neg. LLF: 112.8777579062761
Optimization terminated successfully (Exit mode 0)
Current function value: 112.87775801384339
Iterations: 10
Function evaluations: 76
Gradient evaluations: 10
Iteration: 1, Func. Count: 9, Neg. LLF: 167.80929196638246
Iteration: 2, Func. Count: 20, Neg. LLF: 113.8303617746782
Iteration: 3, Func. Count: 28, Neg. LLF: 112.9189091276825
Iteration: 4, Func. Count: 36, Neg. LLF: 112.92950356744021
Iteration: 5, Func. Count: 45, Neg. LLF: 112.88989652924323
Iteration: 6, Func. Count: 54, Neg. LLF: 112.86521833577306
Iteration: 7, Func. Count: 62, Neg. LLF: 112.86390536220352
Iteration: 8, Func. Count: 70, Neg. LLF: 112.8638754445062
Iteration: 9, Func. Count: 78, Neg. LLF: 112.8638702957542
Iteration: 10, Func. Count: 85, Neg. LLF: 112.86387021444587
Optimization terminated successfully (Exit mode 0)
Current function value: 112.8638702957542
Iterations: 10
Function evaluations: 85
Gradient evaluations: 10
Iteration: 1, Func. Count: 6, Neg. LLF: 146.65982925712336
Iteration: 2, Func. Count: 13, Neg. LLF: 126.46591776916134
Iteration: 3, Func. Count: 19, Neg. LLF: 115.09658977390069
Iteration: 4, Func. Count: 24, Neg. LLF: 114.98985721347825
Iteration: 5, Func. Count: 29, Neg. LLF: 114.91755253373368
Iteration: 6, Func. Count: 34, Neg. LLF: 114.89645730746305
Iteration: 7, Func. Count: 39, Neg. LLF: 114.89467423601072
Iteration: 8, Func. Count: 44, Neg. LLF: 114.89450398460576
Iteration: 9, Func. Count: 49, Neg. LLF: 114.89449063925642
Iteration: 10, Func. Count: 54, Neg. LLF: 114.89448904522294
Iteration: 11, Func. Count: 58, Neg. LLF: 114.89448904522807
Optimization terminated successfully (Exit mode 0)
Current function value: 114.89448904522294
Iterations: 11
Function evaluations: 58
Gradient evaluations: 11
Iteration: 1, Func. Count: 7, Neg. LLF: 171.94703579255412
Iteration: 2, Func. Count: 16, Neg. LLF: 125.08166221273866
Iteration: 3, Func. Count: 23, Neg. LLF: 121.42178462973239
Iteration: 4, Func. Count: 30, Neg. LLF: 113.41156520771305
Iteration: 5, Func. Count: 36, Neg. LLF: 113.41307190023298
Iteration: 6, Func. Count: 43, Neg. LLF: 113.38553972470918
Iteration: 7, Func. Count: 49, Neg. LLF: 113.37079825788653
Iteration: 8, Func. Count: 55, Neg. LLF: 113.3665293913644
Iteration: 9, Func. Count: 61, Neg. LLF: 113.36391592961557
Iteration: 10, Func. Count: 67, Neg. LLF: 113.36372914852879
Iteration: 11, Func. Count: 73, Neg. LLF: 113.36372531578552
Iteration: 12, Func. Count: 78, Neg. LLF: 113.36372527114374
Optimization terminated successfully (Exit mode 0)
Current function value: 113.36372531578552
Iterations: 12
Function evaluations: 78
Gradient evaluations: 12
Iteration: 1, Func. Count: 8, Neg. LLF: 168.25353665861766
Iteration: 2, Func. Count: 18, Neg. LLF: 113.6512040359311
Iteration: 3, Func. Count: 25, Neg. LLF: 113.31997046956585
Iteration: 4, Func. Count: 32, Neg. LLF: 127.23379174851637
Iteration: 5, Func. Count: 40, Neg. LLF: 114.71128070087477
Iteration: 6, Func. Count: 48, Neg. LLF: 112.86451836824178
Iteration: 7, Func. Count: 55, Neg. LLF: 112.85701243520064
Iteration: 8, Func. Count: 62, Neg. LLF: 112.85698081765209
Iteration: 9, Func. Count: 69, Neg. LLF: 112.85694095013307
Iteration: 10, Func. Count: 76, Neg. LLF: 112.85688515300617
Iteration: 11, Func. Count: 83, Neg. LLF: 112.85678526190495
Iteration: 12, Func. Count: 90, Neg. LLF: 112.8565417905597
Iteration: 13, Func. Count: 97, Neg. LLF: 112.84976419833635
Iteration: 14, Func. Count: 104, Neg. LLF: 112.8107332699366
Iteration: 15, Func. Count: 111, Neg. LLF: 112.81044833376352
Iteration: 16, Func. Count: 118, Neg. LLF: 112.81039341209235
Iteration: 17, Func. Count: 125, Neg. LLF: 112.8127521853254
Optimization terminated successfully (Exit mode 0)
Current function value: 112.81039340338792
Iterations: 18
Function evaluations: 128
Gradient evaluations: 17
Iteration: 1, Func. Count: 9, Neg. LLF: 166.52890988824527
Iteration: 2, Func. Count: 20, Neg. LLF: 113.88307912795071
Iteration: 3, Func. Count: 28, Neg. LLF: 112.9409391839019
Iteration: 4, Func. Count: 36, Neg. LLF: 114.48318683952662
Iteration: 5, Func. Count: 47, Neg. LLF: 112.907826052211
Iteration: 6, Func. Count: 56, Neg. LLF: 112.8785599609788
Iteration: 7, Func. Count: 64, Neg. LLF: 112.8778395706973
Iteration: 8, Func. Count: 72, Neg. LLF: 112.87777253084673
Iteration: 9, Func. Count: 80, Neg. LLF: 112.87775806981348
Iteration: 10, Func. Count: 87, Neg. LLF: 112.87775796238546
Optimization terminated successfully (Exit mode 0)
Current function value: 112.87775806981348
Iterations: 10
Function evaluations: 87
Gradient evaluations: 10
Iteration: 1, Func. Count: 10, Neg. LLF: 169.41088059502738
Iteration: 2, Func. Count: 22, Neg. LLF: 113.96805556813528
Iteration: 3, Func. Count: 31, Neg. LLF: 112.91855592969196
Iteration: 4, Func. Count: 40, Neg. LLF: 112.98061659200773
Iteration: 5, Func. Count: 51, Neg. LLF: 112.87300608751522
Iteration: 6, Func. Count: 60, Neg. LLF: 112.86419291802218
Iteration: 7, Func. Count: 69, Neg. LLF: 112.86388877211819
Iteration: 8, Func. Count: 78, Neg. LLF: 112.86387056269449
Iteration: 9, Func. Count: 86, Neg. LLF: 112.8638704812078
Optimization terminated successfully (Exit mode 0)
Current function value: 112.86387056269449
Iterations: 9
Function evaluations: 86
Gradient evaluations: 9
Iteration: 1, Func. Count: 7, Neg. LLF: 118.2396614763495
Iteration: 2, Func. Count: 14, Neg. LLF: 151.79473924158242
Iteration: 3, Func. Count: 21, Neg. LLF: 110.11150189141743
Iteration: 4, Func. Count: 27, Neg. LLF: 110.18857120350903
Iteration: 5, Func. Count: 34, Neg. LLF: 109.67091935650157
Iteration: 6, Func. Count: 40, Neg. LLF: 109.65826989703743
Iteration: 7, Func. Count: 46, Neg. LLF: 109.65423510186191
Iteration: 8, Func. Count: 52, Neg. LLF: 109.65229925422396
Iteration: 9, Func. Count: 58, Neg. LLF: 109.65218612187665
Iteration: 10, Func. Count: 64, Neg. LLF: 109.65217580648616
Iteration: 11, Func. Count: 69, Neg. LLF: 109.65217579853294
Optimization terminated successfully (Exit mode 0)
Current function value: 109.65217580648616
Iterations: 11
Function evaluations: 69
Gradient evaluations: 11
Iteration: 1, Func. Count: 8, Neg. LLF: 116.86540699203417
Iteration: 2, Func. Count: 16, Neg. LLF: 128.011658892752
Iteration: 3, Func. Count: 24, Neg. LLF: 112.29620443835323
Iteration: 4, Func. Count: 32, Neg. LLF: 110.19484152444794
Iteration: 5, Func. Count: 40, Neg. LLF: 109.96140763922219
Iteration: 6, Func. Count: 48, Neg. LLF: 109.63182488334672
Iteration: 7, Func. Count: 55, Neg. LLF: 109.62473790351345
Iteration: 8, Func. Count: 62, Neg. LLF: 109.61332041984346
Iteration: 9, Func. Count: 69, Neg. LLF: 109.6131665325924
Iteration: 10, Func. Count: 76, Neg. LLF: 109.6131636306894
Iteration: 11, Func. Count: 82, Neg. LLF: 109.61316361028273
Optimization terminated successfully (Exit mode 0)
Current function value: 109.6131636306894
Iterations: 11
Function evaluations: 82
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 115.38055765258474
Iteration: 2, Func. Count: 18, Neg. LLF: 133.99919349330145
Iteration: 3, Func. Count: 27, Neg. LLF: 113.27104301789743
Iteration: 4, Func. Count: 36, Neg. LLF: 110.15859131784167
Iteration: 5, Func. Count: 44, Neg. LLF: 109.73681467430966
Iteration: 6, Func. Count: 52, Neg. LLF: 110.04338507421241
Iteration: 7, Func. Count: 61, Neg. LLF: 109.61813357324964
Iteration: 8, Func. Count: 69, Neg. LLF: 109.6135270299092
Iteration: 9, Func. Count: 77, Neg. LLF: 109.61321642320307
Iteration: 10, Func. Count: 85, Neg. LLF: 109.61316644149507
Iteration: 11, Func. Count: 93, Neg. LLF: 109.6131636828731
Iteration: 12, Func. Count: 100, Neg. LLF: 109.61316372832106
Optimization terminated successfully (Exit mode 0)
Current function value: 109.6131636828731
Iterations: 12
Function evaluations: 100
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 114.1902268972451
Iteration: 2, Func. Count: 20, Neg. LLF: 148.68764417097398
Iteration: 3, Func. Count: 30, Neg. LLF: 113.69289609159928
Iteration: 4, Func. Count: 40, Neg. LLF: 110.13004282664907
Iteration: 5, Func. Count: 49, Neg. LLF: 109.77498749465765
Iteration: 6, Func. Count: 58, Neg. LLF: 110.4129272562893
Iteration: 7, Func. Count: 68, Neg. LLF: 109.63012696327105
Iteration: 8, Func. Count: 77, Neg. LLF: 109.6168465778891
Iteration: 9, Func. Count: 86, Neg. LLF: 109.61339865752021
Iteration: 10, Func. Count: 95, Neg. LLF: 109.61319048061921
Iteration: 11, Func. Count: 104, Neg. LLF: 109.6131646738798
Iteration: 12, Func. Count: 113, Neg. LLF: 109.61316360632038
Iteration: 13, Func. Count: 121, Neg. LLF: 109.61316362665924
Optimization terminated successfully (Exit mode 0)
Current function value: 109.61316360632038
Iterations: 13
Function evaluations: 121
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 114.52319883808534
Iteration: 2, Func. Count: 22, Neg. LLF: 144.78654687594198
Iteration: 3, Func. Count: 33, Neg. LLF: 113.24626163458592
Iteration: 4, Func. Count: 44, Neg. LLF: 110.19842213772891
Iteration: 5, Func. Count: 54, Neg. LLF: 109.79783139085252
Iteration: 6, Func. Count: 64, Neg. LLF: 110.3529461871754
Iteration: 7, Func. Count: 75, Neg. LLF: 109.6304369951175
Iteration: 8, Func. Count: 85, Neg. LLF: 109.6165570080713
Iteration: 9, Func. Count: 95, Neg. LLF: 109.61340685752108
Iteration: 10, Func. Count: 105, Neg. LLF: 109.61318980420002
Iteration: 11, Func. Count: 115, Neg. LLF: 109.61316470599324
Iteration: 12, Func. Count: 125, Neg. LLF: 109.61316360828909
Iteration: 13, Func. Count: 134, Neg. LLF: 109.61316364523701
Optimization terminated successfully (Exit mode 0)
Current function value: 109.61316360828909
Iterations: 13
Function evaluations: 134
Gradient evaluations: 13
Iteration: 1, Func. Count: 8, Neg. LLF: 117.35476114004672
Iteration: 2, Func. Count: 16, Neg. LLF: 154.44037006520423
Iteration: 3, Func. Count: 24, Neg. LLF: 110.21463144077045
Iteration: 4, Func. Count: 31, Neg. LLF: 110.17116166859158
Iteration: 5, Func. Count: 39, Neg. LLF: 109.91406324103527
Iteration: 6, Func. Count: 47, Neg. LLF: 109.64452397400846
Iteration: 7, Func. Count: 54, Neg. LLF: 109.61371503398787
Iteration: 8, Func. Count: 61, Neg. LLF: 109.61093834100522
Iteration: 9, Func. Count: 68, Neg. LLF: 109.61087336819647
Iteration: 10, Func. Count: 75, Neg. LLF: 109.61087182681078
Iteration: 11, Func. Count: 82, Neg. LLF: 109.61087104173914
Optimization terminated successfully (Exit mode 0)
Current function value: 109.61087104173914
Iterations: 11
Function evaluations: 82
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 118.19837883189426
Iteration: 2, Func. Count: 18, Neg. LLF: 130.72243469312272
Iteration: 3, Func. Count: 27, Neg. LLF: 113.05830877924691
Iteration: 4, Func. Count: 36, Neg. LLF: 110.45016156622953
Iteration: 5, Func. Count: 45, Neg. LLF: 110.0300965273663
Iteration: 6, Func. Count: 54, Neg. LLF: 109.6287746023445
Iteration: 7, Func. Count: 62, Neg. LLF: 109.61166220831377
Iteration: 8, Func. Count: 70, Neg. LLF: 109.61095534191189
Iteration: 9, Func. Count: 78, Neg. LLF: 109.61087715671448
Iteration: 10, Func. Count: 86, Neg. LLF: 109.61087071432034
Iteration: 11, Func. Count: 93, Neg. LLF: 109.61087069524194
Optimization terminated successfully (Exit mode 0)
Current function value: 109.61087071432034
Iterations: 11
Function evaluations: 93
Gradient evaluations: 11
Iteration: 1, Func. Count: 10, Neg. LLF: 167.78679744467084
Iteration: 2, Func. Count: 22, Neg. LLF: 114.99726534744548
Iteration: 3, Func. Count: 32, Neg. LLF: 113.59544254901549
Iteration: 4, Func. Count: 42, Neg. LLF: 110.45777870239571
Iteration: 5, Func. Count: 51, Neg. LLF: 116.15280612768083
Iteration: 6, Func. Count: 62, Neg. LLF: 110.28754396454687
Iteration: 7, Func. Count: 72, Neg. LLF: 109.7191700067547
Iteration: 8, Func. Count: 81, Neg. LLF: 109.70080030577519
Iteration: 9, Func. Count: 90, Neg. LLF: 109.6909173300436
Iteration: 10, Func. Count: 99, Neg. LLF: 109.68549345363124
Iteration: 11, Func. Count: 108, Neg. LLF: 109.67580176088181
Iteration: 12, Func. Count: 117, Neg. LLF: 109.65797447681672
Iteration: 13, Func. Count: 126, Neg. LLF: 109.63524547941083
Iteration: 14, Func. Count: 135, Neg. LLF: 109.61696633527198
Iteration: 15, Func. Count: 144, Neg. LLF: 109.61151356311099
Iteration: 16, Func. Count: 153, Neg. LLF: 109.61092688678839
Iteration: 17, Func. Count: 162, Neg. LLF: 109.61087066032131
Iteration: 18, Func. Count: 170, Neg. LLF: 109.61087070439395
Optimization terminated successfully (Exit mode 0)
Current function value: 109.61087066032131
Iterations: 18
Function evaluations: 170
Gradient evaluations: 18
Iteration: 1, Func. Count: 11, Neg. LLF: 164.99378680637614
Iteration: 2, Func. Count: 24, Neg. LLF: 117.74816704192483
Iteration: 3, Func. Count: 35, Neg. LLF: 121.988537346498
Iteration: 4, Func. Count: 46, Neg. LLF: 110.3765222762883
Iteration: 5, Func. Count: 56, Neg. LLF: 109.93366676926877
Iteration: 6, Func. Count: 66, Neg. LLF: 110.44722185867595
Iteration: 7, Func. Count: 77, Neg. LLF: 109.86562271240805
Iteration: 8, Func. Count: 88, Neg. LLF: 109.6929660118675
Iteration: 9, Func. Count: 98, Neg. LLF: 109.68717228961489
Iteration: 10, Func. Count: 108, Neg. LLF: 109.68059927422698
Iteration: 11, Func. Count: 118, Neg. LLF: 109.66965816273407
Iteration: 12, Func. Count: 128, Neg. LLF: 109.64948336453497
Iteration: 13, Func. Count: 138, Neg. LLF: 109.62318088317562
Iteration: 14, Func. Count: 148, Neg. LLF: 109.61197864132308
Iteration: 15, Func. Count: 158, Neg. LLF: 109.61100414012778
Iteration: 16, Func. Count: 168, Neg. LLF: 109.61087160006986
Iteration: 17, Func. Count: 178, Neg. LLF: 109.61087060677332
Optimization terminated successfully (Exit mode 0)
Current function value: 109.61087060677332
Iterations: 17
Function evaluations: 178
Gradient evaluations: 17
Iteration: 1, Func. Count: 12, Neg. LLF: 168.70607694044352
Iteration: 2, Func. Count: 26, Neg. LLF: 117.88241822128134
Iteration: 3, Func. Count: 38, Neg. LLF: 121.66418097768742
Iteration: 4, Func. Count: 50, Neg. LLF: 110.35720758131339
Iteration: 5, Func. Count: 61, Neg. LLF: 109.90939305394745
Iteration: 6, Func. Count: 72, Neg. LLF: 109.7311900077641
Iteration: 7, Func. Count: 83, Neg. LLF: 109.70279924270233
Iteration: 8, Func. Count: 94, Neg. LLF: 109.68115283269088
Iteration: 9, Func. Count: 105, Neg. LLF: 109.6756888994097
Iteration: 10, Func. Count: 116, Neg. LLF: 109.6690533529088
Iteration: 11, Func. Count: 127, Neg. LLF: 109.65660741020298
Iteration: 12, Func. Count: 138, Neg. LLF: 109.63695325755843
Iteration: 13, Func. Count: 149, Neg. LLF: 109.62041285490615
Iteration: 14, Func. Count: 160, Neg. LLF: 109.61166251834965
Iteration: 15, Func. Count: 171, Neg. LLF: 109.6108919700665
Iteration: 16, Func. Count: 182, Neg. LLF: 109.61087101170375
Iteration: 17, Func. Count: 192, Neg. LLF: 109.61087105230422
Optimization terminated successfully (Exit mode 0)
Current function value: 109.61087101170375
Iterations: 17
Function evaluations: 192
Gradient evaluations: 17
Iteration: 1, Func. Count: 9, Neg. LLF: 122.50655746053313
Iteration: 2, Func. Count: 18, Neg. LLF: 153.61638756928988
Iteration: 3, Func. Count: 27, Neg. LLF: 110.11679439785746
Iteration: 4, Func. Count: 35, Neg. LLF: 110.7988363463824
Iteration: 5, Func. Count: 44, Neg. LLF: 109.80660822841674
Iteration: 6, Func. Count: 53, Neg. LLF: 109.71289887383548
Iteration: 7, Func. Count: 62, Neg. LLF: 109.6206418083501
Iteration: 8, Func. Count: 70, Neg. LLF: 109.61105929864615
Iteration: 9, Func. Count: 78, Neg. LLF: 109.6108777216713
Iteration: 10, Func. Count: 86, Neg. LLF: 109.61087363487704
Iteration: 11, Func. Count: 94, Neg. LLF: 109.61087179804802
Iteration: 12, Func. Count: 102, Neg. LLF: 109.61087067662652
Iteration: 13, Func. Count: 109, Neg. LLF: 109.61087070585756
Optimization terminated successfully (Exit mode 0)
Current function value: 109.61087067662652
Iterations: 13
Function evaluations: 109
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 172.26096097552676
Iteration: 2, Func. Count: 22, Neg. LLF: 112.55359975512006
Iteration: 3, Func. Count: 31, Neg. LLF: 135.5844529403225
Iteration: 4, Func. Count: 41, Neg. LLF: 153.51480476755418
Iteration: 5, Func. Count: 54, Neg. LLF: 119.23741781007945
Iteration: 6, Func. Count: 64, Neg. LLF: 110.63960421258408
Iteration: 7, Func. Count: 74, Neg. LLF: 110.38296134178934
Iteration: 8, Func. Count: 84, Neg. LLF: 109.77100909260302
Iteration: 9, Func. Count: 93, Neg. LLF: 109.755746135149
Iteration: 10, Func. Count: 102, Neg. LLF: 109.74896961778724
Iteration: 11, Func. Count: 111, Neg. LLF: 109.7233754521881
Iteration: 12, Func. Count: 120, Neg. LLF: 109.68887080114516
Iteration: 13, Func. Count: 129, Neg. LLF: 109.65646529711896
Iteration: 14, Func. Count: 138, Neg. LLF: 109.63336886786907
Iteration: 15, Func. Count: 147, Neg. LLF: 109.61753077334055
Iteration: 16, Func. Count: 156, Neg. LLF: 109.61136775213699
Iteration: 17, Func. Count: 165, Neg. LLF: 109.61089650043691
Iteration: 18, Func. Count: 174, Neg. LLF: 109.6108716511727
Iteration: 19, Func. Count: 183, Neg. LLF: 109.61087068114402
Optimization terminated successfully (Exit mode 0)
Current function value: 109.61087068114402
Iterations: 19
Function evaluations: 183
Gradient evaluations: 19
Iteration: 1, Func. Count: 11, Neg. LLF: 168.07834813286163
Iteration: 2, Func. Count: 24, Neg. LLF: 115.01959701457211
Iteration: 3, Func. Count: 35, Neg. LLF: 113.65194279235301
Iteration: 4, Func. Count: 46, Neg. LLF: 110.44147679066258
Iteration: 5, Func. Count: 56, Neg. LLF: 115.41613255263434
Iteration: 6, Func. Count: 68, Neg. LLF: 110.29436900040095
Iteration: 7, Func. Count: 79, Neg. LLF: 109.71599247760882
Iteration: 8, Func. Count: 89, Neg. LLF: 109.69894497933025
Iteration: 9, Func. Count: 99, Neg. LLF: 109.68897811520817
Iteration: 10, Func. Count: 109, Neg. LLF: 109.68394385408838
Iteration: 11, Func. Count: 119, Neg. LLF: 109.67332958662804
Iteration: 12, Func. Count: 129, Neg. LLF: 109.65571323900109
Iteration: 13, Func. Count: 139, Neg. LLF: 109.63330108076025
Iteration: 14, Func. Count: 149, Neg. LLF: 109.6160364397805
Iteration: 15, Func. Count: 159, Neg. LLF: 109.61138079955093
Iteration: 16, Func. Count: 169, Neg. LLF: 109.61090978859497
Iteration: 17, Func. Count: 179, Neg. LLF: 109.61087063807736
Iteration: 18, Func. Count: 188, Neg. LLF: 109.61087068215316
Optimization terminated successfully (Exit mode 0)
Current function value: 109.61087063807736
Iterations: 18
Function evaluations: 188
Gradient evaluations: 18
Iteration: 1, Func. Count: 12, Neg. LLF: 165.2999084241931
Iteration: 2, Func. Count: 26, Neg. LLF: 117.77356443667081
Iteration: 3, Func. Count: 38, Neg. LLF: 122.12011839671345
Iteration: 4, Func. Count: 50, Neg. LLF: 110.36602577739993
Iteration: 5, Func. Count: 61, Neg. LLF: 109.92680228630927
Iteration: 6, Func. Count: 72, Neg. LLF: 110.32857432307034
Iteration: 7, Func. Count: 84, Neg. LLF: 109.82176957422192
Iteration: 8, Func. Count: 95, Neg. LLF: 109.69010281283114
Iteration: 9, Func. Count: 106, Neg. LLF: 109.68499690914766
Iteration: 10, Func. Count: 117, Neg. LLF: 109.67879211077877
Iteration: 11, Func. Count: 128, Neg. LLF: 109.66668101406576
Iteration: 12, Func. Count: 139, Neg. LLF: 109.6484358583642
Iteration: 13, Func. Count: 150, Neg. LLF: 109.62217929782254
Iteration: 14, Func. Count: 161, Neg. LLF: 109.61194429726827
Iteration: 15, Func. Count: 172, Neg. LLF: 109.61099131860021
Iteration: 16, Func. Count: 183, Neg. LLF: 109.61087170255969
Iteration: 17, Func. Count: 194, Neg. LLF: 109.61087060649785
Iteration: 18, Func. Count: 204, Neg. LLF: 109.61087062525111
Optimization terminated successfully (Exit mode 0)
Current function value: 109.61087060649785
Iterations: 18
Function evaluations: 204
Gradient evaluations: 18
Iteration: 1, Func. Count: 13, Neg. LLF: 169.28478920287793
Iteration: 2, Func. Count: 28, Neg. LLF: 117.93129355495694
Iteration: 3, Func. Count: 41, Neg. LLF: 121.77271135180887
Iteration: 4, Func. Count: 54, Neg. LLF: 110.35189638198145
Iteration: 5, Func. Count: 66, Neg. LLF: 109.90465854406774
Iteration: 6, Func. Count: 78, Neg. LLF: 109.72849342311162
Iteration: 7, Func. Count: 90, Neg. LLF: 109.70152905236843
Iteration: 8, Func. Count: 102, Neg. LLF: 109.67920806617792
Iteration: 9, Func. Count: 114, Neg. LLF: 109.67396017694682
Iteration: 10, Func. Count: 126, Neg. LLF: 109.66759010501875
Iteration: 11, Func. Count: 138, Neg. LLF: 109.65520474139707
Iteration: 12, Func. Count: 150, Neg. LLF: 109.63611183691043
Iteration: 13, Func. Count: 162, Neg. LLF: 109.61999002968871
Iteration: 14, Func. Count: 174, Neg. LLF: 109.61161392200883
Iteration: 15, Func. Count: 186, Neg. LLF: 109.61089073559823
Iteration: 16, Func. Count: 198, Neg. LLF: 109.61087098503927
Iteration: 17, Func. Count: 209, Neg. LLF: 109.61087102563876
Optimization terminated successfully (Exit mode 0)
Current function value: 109.61087098503927
Iterations: 17
Function evaluations: 209
Gradient evaluations: 17
Iteration: 1, Func. Count: 6, Neg. LLF: 131.3198287549001
Iteration: 2, Func. Count: 12, Neg. LLF: 140.69509607671242
Iteration: 3, Func. Count: 18, Neg. LLF: 114.88536784367696
Iteration: 4, Func. Count: 23, Neg. LLF: 114.66757027094592
Iteration: 5, Func. Count: 28, Neg. LLF: 114.60921410630299
Iteration: 6, Func. Count: 33, Neg. LLF: 114.59985523179
Iteration: 7, Func. Count: 38, Neg. LLF: 114.59959185497789
Iteration: 8, Func. Count: 43, Neg. LLF: 114.59956350461647
Iteration: 9, Func. Count: 47, Neg. LLF: 114.5995635046201
Optimization terminated successfully (Exit mode 0)
Current function value: 114.59956350461647
Iterations: 9
Function evaluations: 47
Gradient evaluations: 9
Iteration: 1, Func. Count: 7, Neg. LLF: 170.00985615540546
Iteration: 2, Func. Count: 16, Neg. LLF: 113.41086535500534
Iteration: 3, Func. Count: 22, Neg. LLF: 115.69638928235953
Iteration: 4, Func. Count: 29, Neg. LLF: 112.86433524748323
Iteration: 5, Func. Count: 35, Neg. LLF: 112.82273260546
Iteration: 6, Func. Count: 41, Neg. LLF: 112.81061759311025
Iteration: 7, Func. Count: 47, Neg. LLF: 112.81039391894703
Iteration: 8, Func. Count: 53, Neg. LLF: 112.81039226390624
Iteration: 9, Func. Count: 58, Neg. LLF: 112.81039255082557
Optimization terminated successfully (Exit mode 0)
Current function value: 112.81039226390624
Iterations: 9
Function evaluations: 58
Gradient evaluations: 9
Iteration: 1, Func. Count: 8, Neg. LLF: 164.79474928454337
Iteration: 2, Func. Count: 18, Neg. LLF: 113.4353027449544
Iteration: 3, Func. Count: 25, Neg. LLF: 113.00506890003184
Iteration: 4, Func. Count: 32, Neg. LLF: 122.40583898039986
Iteration: 5, Func. Count: 40, Neg. LLF: 113.04061389089766
Iteration: 6, Func. Count: 48, Neg. LLF: 112.86968031754525
Iteration: 7, Func. Count: 55, Neg. LLF: 112.85664370618098
Iteration: 8, Func. Count: 62, Neg. LLF: 112.85662651370737
Iteration: 9, Func. Count: 69, Neg. LLF: 112.85661960665219
Iteration: 10, Func. Count: 76, Neg. LLF: 112.85659639722884
Iteration: 11, Func. Count: 83, Neg. LLF: 112.85651850775912
Iteration: 12, Func. Count: 90, Neg. LLF: 112.85591978212977
Iteration: 13, Func. Count: 97, Neg. LLF: 112.85519075949843
Iteration: 14, Func. Count: 104, Neg. LLF: 112.85346458093272
Iteration: 15, Func. Count: 111, Neg. LLF: 112.82859075337689
Iteration: 16, Func. Count: 118, Neg. LLF: 112.81063657492422
Iteration: 17, Func. Count: 125, Neg. LLF: 112.81039243550613
Iteration: 18, Func. Count: 131, Neg. LLF: 112.81039215094331
Optimization terminated successfully (Exit mode 0)
Current function value: 112.81039243550613
Iterations: 18
Function evaluations: 131
Gradient evaluations: 18
Iteration: 1, Func. Count: 9, Neg. LLF: 163.1054734723749
Iteration: 2, Func. Count: 20, Neg. LLF: 113.62140655705343
Iteration: 3, Func. Count: 28, Neg. LLF: 112.94846497236546
Iteration: 4, Func. Count: 36, Neg. LLF: 114.02545791747282
Iteration: 5, Func. Count: 47, Neg. LLF: 112.89776890951588
Iteration: 6, Func. Count: 55, Neg. LLF: 112.87875848201153
Iteration: 7, Func. Count: 63, Neg. LLF: 112.8777700854805
Iteration: 8, Func. Count: 71, Neg. LLF: 112.87776072518274
Iteration: 9, Func. Count: 79, Neg. LLF: 112.8777580201215
Iteration: 10, Func. Count: 86, Neg. LLF: 112.87775791273147
Optimization terminated successfully (Exit mode 0)
Current function value: 112.8777580201215
Iterations: 10
Function evaluations: 86
Gradient evaluations: 10
Iteration: 1, Func. Count: 10, Neg. LLF: 167.9236500052019
Iteration: 2, Func. Count: 22, Neg. LLF: 113.70990652180005
Iteration: 3, Func. Count: 31, Neg. LLF: 112.9145346410537
Iteration: 4, Func. Count: 40, Neg. LLF: 112.91003081408327
Iteration: 5, Func. Count: 50, Neg. LLF: 112.9161315282917
Iteration: 6, Func. Count: 60, Neg. LLF: 112.86425012744147
Iteration: 7, Func. Count: 69, Neg. LLF: 112.86387193185695
Iteration: 8, Func. Count: 78, Neg. LLF: 112.86387030846944
Iteration: 9, Func. Count: 86, Neg. LLF: 112.86387022714187
Optimization terminated successfully (Exit mode 0)
Current function value: 112.86387030846944
Iterations: 9
Function evaluations: 86
Gradient evaluations: 9
Iteration: 1, Func. Count: 7, Neg. LLF: 123.58052312940902
Iteration: 2, Func. Count: 14, Neg. LLF: 138.8110347373969
Iteration: 3, Func. Count: 21, Neg. LLF: 114.80197737955667
Iteration: 4, Func. Count: 27, Neg. LLF: 114.6915883550723
Iteration: 5, Func. Count: 33, Neg. LLF: 114.73525892273209
Iteration: 6, Func. Count: 40, Neg. LLF: 114.66577788616546
Iteration: 7, Func. Count: 47, Neg. LLF: 114.5976848980374
Iteration: 8, Func. Count: 53, Neg. LLF: 114.5970107267704
Iteration: 9, Func. Count: 59, Neg. LLF: 114.59696943026456
Iteration: 10, Func. Count: 65, Neg. LLF: 114.59696037054772
Iteration: 11, Func. Count: 70, Neg. LLF: 114.59696037053797
Optimization terminated successfully (Exit mode 0)
Current function value: 114.59696037054772
Iterations: 11
Function evaluations: 70
Gradient evaluations: 11
Iteration: 1, Func. Count: 8, Neg. LLF: 171.88116323250586
Iteration: 2, Func. Count: 18, Neg. LLF: 124.74523687939691
Iteration: 3, Func. Count: 26, Neg. LLF: 121.29954788911763
Iteration: 4, Func. Count: 34, Neg. LLF: 113.41304868173978
Iteration: 5, Func. Count: 41, Neg. LLF: 113.41906636181058
Iteration: 6, Func. Count: 49, Neg. LLF: 113.38622783318064
Iteration: 7, Func. Count: 56, Neg. LLF: 113.37055585736836
Iteration: 8, Func. Count: 63, Neg. LLF: 113.36632651553127
Iteration: 9, Func. Count: 70, Neg. LLF: 113.36388725386935
Iteration: 10, Func. Count: 77, Neg. LLF: 113.36372848349863
Iteration: 11, Func. Count: 84, Neg. LLF: 113.3637253747547
Iteration: 12, Func. Count: 90, Neg. LLF: 113.36372533011851
Optimization terminated successfully (Exit mode 0)
Current function value: 113.3637253747547
Iterations: 12
Function evaluations: 90
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 167.01089557293386
Iteration: 2, Func. Count: 20, Neg. LLF: 113.5897093489638
Iteration: 3, Func. Count: 28, Neg. LLF: 113.18813183174761
Iteration: 4, Func. Count: 36, Neg. LLF: 130.10950076171457
Iteration: 5, Func. Count: 45, Neg. LLF: 113.88106674141541
Iteration: 6, Func. Count: 54, Neg. LLF: 112.86411615039523
Iteration: 7, Func. Count: 62, Neg. LLF: 112.85708077167445
Iteration: 8, Func. Count: 70, Neg. LLF: 112.85701612355052
Iteration: 9, Func. Count: 78, Neg. LLF: 112.85698909602431
Iteration: 10, Func. Count: 86, Neg. LLF: 112.85692128690566
Iteration: 11, Func. Count: 94, Neg. LLF: 112.85682925070823
Iteration: 12, Func. Count: 102, Neg. LLF: 112.85665970950673
Iteration: 13, Func. Count: 110, Neg. LLF: 112.85468746737602
Iteration: 14, Func. Count: 118, Neg. LLF: 112.81232157294913
Iteration: 15, Func. Count: 126, Neg. LLF: 112.8108614405549
Iteration: 16, Func. Count: 134, Neg. LLF: 112.8103923546549
Iteration: 17, Func. Count: 142, Neg. LLF: 112.83413754776637
Optimization terminated successfully (Exit mode 0)
Current function value: 112.81039229015457
Iterations: 18
Function evaluations: 145
Gradient evaluations: 17
Iteration: 1, Func. Count: 10, Neg. LLF: 166.13481904237264
Iteration: 2, Func. Count: 22, Neg. LLF: 113.76835910599085
Iteration: 3, Func. Count: 31, Neg. LLF: 112.96081892485988
Iteration: 4, Func. Count: 40, Neg. LLF: 114.55081823177638
Iteration: 5, Func. Count: 52, Neg. LLF: 112.94913369789882
Iteration: 6, Func. Count: 62, Neg. LLF: 112.878117699613
Iteration: 7, Func. Count: 71, Neg. LLF: 112.8778428604584
Iteration: 8, Func. Count: 80, Neg. LLF: 112.87775917529191
Iteration: 9, Func. Count: 89, Neg. LLF: 112.87775796730142
Iteration: 10, Func. Count: 97, Neg. LLF: 112.87775785985626
Optimization terminated successfully (Exit mode 0)
Current function value: 112.87775796730142
Iterations: 10
Function evaluations: 97
Gradient evaluations: 10
Iteration: 1, Func. Count: 11, Neg. LLF: 169.54537986388294
Iteration: 2, Func. Count: 24, Neg. LLF: 113.8458196570525
Iteration: 3, Func. Count: 34, Neg. LLF: 112.96410421521148
Iteration: 4, Func. Count: 44, Neg. LLF: 148.63779935785266
Iteration: 5, Func. Count: 56, Neg. LLF: 112.76796078279398
Iteration: 6, Func. Count: 66, Neg. LLF: 112.73650744704577
Iteration: 7, Func. Count: 76, Neg. LLF: 112.73111662228621
Iteration: 8, Func. Count: 86, Neg. LLF: 112.73087034390228
Iteration: 9, Func. Count: 96, Neg. LLF: 112.73075458234395
Iteration: 10, Func. Count: 105, Neg. LLF: 112.73075448796268
Optimization terminated successfully (Exit mode 0)
Current function value: 112.73075458234395
Iterations: 10
Function evaluations: 105
Gradient evaluations: 10
Iteration: 1, Func. Count: 8, Neg. LLF: 143.73583645727766
Iteration: 2, Func. Count: 16, Neg. LLF: 142.75772894405247
Iteration: 3, Func. Count: 24, Neg. LLF: 111.15731360787818
Iteration: 4, Func. Count: 31, Neg. LLF: 112.81569819307583
Iteration: 5, Func. Count: 41, Neg. LLF: 124.3025840316324
Iteration: 6, Func. Count: 50, Neg. LLF: 109.76396099216181
Iteration: 7, Func. Count: 57, Neg. LLF: 110.08195962879314
Iteration: 8, Func. Count: 65, Neg. LLF: 109.66910838051106
Iteration: 9, Func. Count: 72, Neg. LLF: 109.63740100041994
Iteration: 10, Func. Count: 79, Neg. LLF: 109.6311881149277
Iteration: 11, Func. Count: 86, Neg. LLF: 109.63005510195235
Iteration: 12, Func. Count: 93, Neg. LLF: 109.63003478982584
Iteration: 13, Func. Count: 100, Neg. LLF: 109.63003392483162
Optimization terminated successfully (Exit mode 0)
Current function value: 109.63003392483162
Iterations: 13
Function evaluations: 100
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 117.55074316065799
Iteration: 2, Func. Count: 18, Neg. LLF: 127.57577708373154
Iteration: 3, Func. Count: 27, Neg. LLF: 112.62357395380714
Iteration: 4, Func. Count: 36, Neg. LLF: 113.15013543487187
Iteration: 5, Func. Count: 45, Neg. LLF: 110.13208507981884
Iteration: 6, Func. Count: 54, Neg. LLF: 109.86549711817206
Iteration: 7, Func. Count: 63, Neg. LLF: 109.64634725484206
Iteration: 8, Func. Count: 71, Neg. LLF: 109.62922495630863
Iteration: 9, Func. Count: 79, Neg. LLF: 109.60012076833632
Iteration: 10, Func. Count: 87, Neg. LLF: 109.58827335707784
Iteration: 11, Func. Count: 95, Neg. LLF: 109.587767791507
Iteration: 12, Func. Count: 103, Neg. LLF: 109.58775123249329
Iteration: 13, Func. Count: 111, Neg. LLF: 109.58775063872902
Optimization terminated successfully (Exit mode 0)
Current function value: 109.58775063872902
Iterations: 13
Function evaluations: 111
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 115.79767906204756
Iteration: 2, Func. Count: 20, Neg. LLF: 133.17192992489788
Iteration: 3, Func. Count: 30, Neg. LLF: 113.43049018362916
Iteration: 4, Func. Count: 40, Neg. LLF: 110.4483261149981
Iteration: 5, Func. Count: 50, Neg. LLF: 109.96380262645671
Iteration: 6, Func. Count: 59, Neg. LLF: 109.74627391845011
Iteration: 7, Func. Count: 68, Neg. LLF: 110.82399426555594
Iteration: 8, Func. Count: 78, Neg. LLF: 109.59557269164942
Iteration: 9, Func. Count: 87, Neg. LLF: 109.59463753242046
Iteration: 10, Func. Count: 97, Neg. LLF: 109.58821448203668
Iteration: 11, Func. Count: 106, Neg. LLF: 109.5877557249534
Iteration: 12, Func. Count: 115, Neg. LLF: 109.5877512364744
Iteration: 13, Func. Count: 124, Neg. LLF: 109.58775062640673
Optimization terminated successfully (Exit mode 0)
Current function value: 109.58775062640673
Iterations: 13
Function evaluations: 124
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 115.02454773759524
Iteration: 2, Func. Count: 22, Neg. LLF: 146.36813232221346
Iteration: 3, Func. Count: 33, Neg. LLF: 114.01636748543159
Iteration: 4, Func. Count: 44, Neg. LLF: 113.34901591293543
Iteration: 5, Func. Count: 55, Neg. LLF: 110.73492133637018
Iteration: 6, Func. Count: 66, Neg. LLF: 109.6499710045837
Iteration: 7, Func. Count: 76, Neg. LLF: 109.94905808759673
Iteration: 8, Func. Count: 87, Neg. LLF: 109.59085227039115
Iteration: 9, Func. Count: 97, Neg. LLF: 109.58821221852317
Iteration: 10, Func. Count: 107, Neg. LLF: 109.58781659210977
Iteration: 11, Func. Count: 117, Neg. LLF: 109.58786102003268
Iteration: 12, Func. Count: 128, Neg. LLF: 109.58775095642912
Iteration: 13, Func. Count: 137, Neg. LLF: 109.58775097889891
Optimization terminated successfully (Exit mode 0)
Current function value: 109.58775095642912
Iterations: 13
Function evaluations: 137
Gradient evaluations: 13
Iteration: 1, Func. Count: 12, Neg. LLF: 115.46350722764899
Iteration: 2, Func. Count: 24, Neg. LLF: 142.6633002507898
Iteration: 3, Func. Count: 36, Neg. LLF: 113.64700530571952
Iteration: 4, Func. Count: 48, Neg. LLF: 113.74634614769978
Iteration: 5, Func. Count: 60, Neg. LLF: 110.58441275604036
Iteration: 6, Func. Count: 72, Neg. LLF: 109.66333286862366
Iteration: 7, Func. Count: 83, Neg. LLF: 110.06961588790412
Iteration: 8, Func. Count: 95, Neg. LLF: 109.5915143062542
Iteration: 9, Func. Count: 106, Neg. LLF: 109.59592328705061
Iteration: 10, Func. Count: 118, Neg. LLF: 109.58776002642288
Iteration: 11, Func. Count: 129, Neg. LLF: 109.5877507344718
Iteration: 12, Func. Count: 139, Neg. LLF: 109.58775077243968
Optimization terminated successfully (Exit mode 0)
Current function value: 109.5877507344718
Iterations: 12
Function evaluations: 139
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 147.7552177579293
Iteration: 2, Func. Count: 19, Neg. LLF: 166.23007960810818
Iteration: 3, Func. Count: 28, Neg. LLF: 111.59345899883989
Iteration: 4, Func. Count: 36, Neg. LLF: 119.57014480199727
Iteration: 5, Func. Count: 46, Neg. LLF: 119.51078781237679
Iteration: 6, Func. Count: 56, Neg. LLF: 109.9365983831264
Iteration: 7, Func. Count: 64, Neg. LLF: 109.6965349027022
Iteration: 8, Func. Count: 72, Neg. LLF: 109.64043653007523
Iteration: 9, Func. Count: 80, Neg. LLF: 109.59112848904779
Iteration: 10, Func. Count: 88, Neg. LLF: 109.57462724839125
Iteration: 11, Func. Count: 96, Neg. LLF: 109.57239559076186
Iteration: 12, Func. Count: 104, Neg. LLF: 109.57168453093858
Iteration: 13, Func. Count: 112, Neg. LLF: 109.57164223910172
Iteration: 14, Func. Count: 120, Neg. LLF: 109.57164117612756
Iteration: 15, Func. Count: 127, Neg. LLF: 109.57164116583951
Optimization terminated successfully (Exit mode 0)
Current function value: 109.57164117612756
Iterations: 15
Function evaluations: 127
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 118.98067200203911
Iteration: 2, Func. Count: 20, Neg. LLF: 130.05401014821643
Iteration: 3, Func. Count: 30, Neg. LLF: 113.41563923360289
Iteration: 4, Func. Count: 40, Neg. LLF: 113.49545685232347
Iteration: 5, Func. Count: 50, Neg. LLF: 110.07263905347789
Iteration: 6, Func. Count: 60, Neg. LLF: 109.76963176458395
Iteration: 7, Func. Count: 70, Neg. LLF: 109.58360801973328
Iteration: 8, Func. Count: 79, Neg. LLF: 109.5758524021344
Iteration: 9, Func. Count: 88, Neg. LLF: 109.57242911851414
Iteration: 10, Func. Count: 97, Neg. LLF: 109.57173925474726
Iteration: 11, Func. Count: 106, Neg. LLF: 109.57164461996801
Iteration: 12, Func. Count: 115, Neg. LLF: 109.57164124723496
Iteration: 13, Func. Count: 123, Neg. LLF: 109.5716412321478
Optimization terminated successfully (Exit mode 0)
Current function value: 109.57164124723496
Iterations: 13
Function evaluations: 123
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 166.5640338759831
Iteration: 2, Func. Count: 24, Neg. LLF: 114.76930547543353
Iteration: 3, Func. Count: 35, Neg. LLF: 113.50405279099051
Iteration: 4, Func. Count: 46, Neg. LLF: 110.51961754224519
Iteration: 5, Func. Count: 57, Neg. LLF: 113.60335384973754
Iteration: 6, Func. Count: 69, Neg. LLF: 111.09996995873058
Iteration: 7, Func. Count: 80, Neg. LLF: 110.00000080372624
Iteration: 8, Func. Count: 90, Neg. LLF: 109.64000902682731
Iteration: 9, Func. Count: 100, Neg. LLF: 109.62103766440015
Iteration: 10, Func. Count: 110, Neg. LLF: 109.61463532368315
Iteration: 11, Func. Count: 120, Neg. LLF: 109.61255126527492
Iteration: 12, Func. Count: 130, Neg. LLF: 109.60903282490835
Iteration: 13, Func. Count: 140, Neg. LLF: 109.60108999662145
Iteration: 14, Func. Count: 150, Neg. LLF: 109.58816470534902
Iteration: 15, Func. Count: 160, Neg. LLF: 109.57596866687868
Iteration: 16, Func. Count: 170, Neg. LLF: 109.57208595304284
Iteration: 17, Func. Count: 180, Neg. LLF: 109.5716691630238
Iteration: 18, Func. Count: 190, Neg. LLF: 109.57164175924055
Iteration: 19, Func. Count: 200, Neg. LLF: 109.57164109717657
Optimization terminated successfully (Exit mode 0)
Current function value: 109.57164109717657
Iterations: 19
Function evaluations: 200
Gradient evaluations: 19
Iteration: 1, Func. Count: 12, Neg. LLF: 164.61256472458047
Iteration: 2, Func. Count: 26, Neg. LLF: 116.8850604656564
Iteration: 3, Func. Count: 38, Neg. LLF: 122.25968922790564
Iteration: 4, Func. Count: 50, Neg. LLF: 110.36836811354868
Iteration: 5, Func. Count: 61, Neg. LLF: 109.92993370168374
Iteration: 6, Func. Count: 72, Neg. LLF: 121.81153642658259
Iteration: 7, Func. Count: 87, Neg. LLF: 111.8404998035442
Iteration: 8, Func. Count: 99, Neg. LLF: 109.63259063113422
Iteration: 9, Func. Count: 110, Neg. LLF: 109.63404010431967
Iteration: 10, Func. Count: 122, Neg. LLF: 109.61468654045777
Iteration: 11, Func. Count: 133, Neg. LLF: 109.61059310968406
Iteration: 12, Func. Count: 144, Neg. LLF: 109.60847827853382
Iteration: 13, Func. Count: 155, Neg. LLF: 109.5967947001921
Iteration: 14, Func. Count: 166, Neg. LLF: 109.57860643498773
Iteration: 15, Func. Count: 177, Neg. LLF: 109.57386597652685
Iteration: 16, Func. Count: 188, Neg. LLF: 109.57193440513981
Iteration: 17, Func. Count: 199, Neg. LLF: 109.57166789355
Iteration: 18, Func. Count: 210, Neg. LLF: 109.5716423596672
Iteration: 19, Func. Count: 221, Neg. LLF: 109.57164112003514
Iteration: 20, Func. Count: 231, Neg. LLF: 109.57164114104576
Optimization terminated successfully (Exit mode 0)
Current function value: 109.57164112003514
Iterations: 20
Function evaluations: 231
Gradient evaluations: 20
Iteration: 1, Func. Count: 13, Neg. LLF: 168.82775465463328
Iteration: 2, Func. Count: 28, Neg. LLF: 117.08371785505773
Iteration: 3, Func. Count: 41, Neg. LLF: 122.10366303642674
Iteration: 4, Func. Count: 54, Neg. LLF: 110.37573483159348
Iteration: 5, Func. Count: 66, Neg. LLF: 109.92453576574262
Iteration: 6, Func. Count: 78, Neg. LLF: 117.41243275713067
Iteration: 7, Func. Count: 93, Neg. LLF: 111.04801254044222
Iteration: 8, Func. Count: 106, Neg. LLF: 109.9014683487552
Iteration: 9, Func. Count: 119, Neg. LLF: 109.64307575065907
Iteration: 10, Func. Count: 131, Neg. LLF: 109.60811581390473
Iteration: 11, Func. Count: 143, Neg. LLF: 109.60641125880788
Iteration: 12, Func. Count: 155, Neg. LLF: 109.59977950933396
Iteration: 13, Func. Count: 167, Neg. LLF: 109.59408378094483
Iteration: 14, Func. Count: 179, Neg. LLF: 109.5826254767607
Iteration: 15, Func. Count: 191, Neg. LLF: 109.5745653644593
Iteration: 16, Func. Count: 203, Neg. LLF: 109.57198704585987
Iteration: 17, Func. Count: 215, Neg. LLF: 109.571665526212
Iteration: 18, Func. Count: 227, Neg. LLF: 109.57164201763624
Iteration: 19, Func. Count: 239, Neg. LLF: 109.5716411195558
Optimization terminated successfully (Exit mode 0)
Current function value: 109.5716411195558
Iterations: 19
Function evaluations: 239
Gradient evaluations: 19
Iteration: 1, Func. Count: 10, Neg. LLF: 143.41289609935768
Iteration: 2, Func. Count: 20, Neg. LLF: 151.27906657776373
Iteration: 3, Func. Count: 30, Neg. LLF: 111.78587368313276
Iteration: 4, Func. Count: 39, Neg. LLF: 112.53803188452963
Iteration: 5, Func. Count: 51, Neg. LLF: 126.39438018579399
Iteration: 6, Func. Count: 62, Neg. LLF: 109.79660310041614
Iteration: 7, Func. Count: 71, Neg. LLF: 110.11187867910661
Iteration: 8, Func. Count: 81, Neg. LLF: 109.69368884775099
Iteration: 9, Func. Count: 91, Neg. LLF: 109.77179123939794
Iteration: 10, Func. Count: 101, Neg. LLF: 109.57376763683176
Iteration: 11, Func. Count: 110, Neg. LLF: 109.57206843703531
Iteration: 12, Func. Count: 119, Neg. LLF: 109.57179956748945
Iteration: 13, Func. Count: 128, Neg. LLF: 109.57168090393024
Iteration: 14, Func. Count: 137, Neg. LLF: 109.57164468112703
Iteration: 15, Func. Count: 146, Neg. LLF: 109.57164122891876
Iteration: 16, Func. Count: 154, Neg. LLF: 109.57164126462652
Optimization terminated successfully (Exit mode 0)
Current function value: 109.57164122891876
Iterations: 16
Function evaluations: 154
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 172.19772470066002
Iteration: 2, Func. Count: 24, Neg. LLF: 112.38904104739834
Iteration: 3, Func. Count: 34, Neg. LLF: 134.80344170907077
Iteration: 4, Func. Count: 45, Neg. LLF: 184.56627187766827
Iteration: 5, Func. Count: 58, Neg. LLF: 114.61085980551039
Iteration: 6, Func. Count: 69, Neg. LLF: 110.90150200920404
Iteration: 7, Func. Count: 80, Neg. LLF: 110.03078894254422
Iteration: 8, Func. Count: 91, Neg. LLF: 109.80039369734286
Iteration: 9, Func. Count: 101, Neg. LLF: 109.92414382675462
Iteration: 10, Func. Count: 112, Neg. LLF: 109.66573226432014
Iteration: 11, Func. Count: 122, Neg. LLF: 109.65366229714778
Iteration: 12, Func. Count: 132, Neg. LLF: 109.65033189682725
Iteration: 13, Func. Count: 142, Neg. LLF: 109.64106516492464
Iteration: 14, Func. Count: 152, Neg. LLF: 109.62461109145997
Iteration: 15, Func. Count: 162, Neg. LLF: 109.60069790219126
Iteration: 16, Func. Count: 172, Neg. LLF: 109.58057610614894
Iteration: 17, Func. Count: 182, Neg. LLF: 109.57268691119624
Iteration: 18, Func. Count: 192, Neg. LLF: 109.57176789423266
Iteration: 19, Func. Count: 202, Neg. LLF: 109.57165581400822
Iteration: 20, Func. Count: 212, Neg. LLF: 109.57164230457722
Iteration: 21, Func. Count: 222, Neg. LLF: 109.57164124895877
Iteration: 22, Func. Count: 231, Neg. LLF: 109.57164123384827
Optimization terminated successfully (Exit mode 0)
Current function value: 109.57164124895877
Iterations: 22
Function evaluations: 231
Gradient evaluations: 22
Iteration: 1, Func. Count: 12, Neg. LLF: 166.85028987174096
Iteration: 2, Func. Count: 26, Neg. LLF: 114.79172198853612
Iteration: 3, Func. Count: 38, Neg. LLF: 113.55541673540496
Iteration: 4, Func. Count: 50, Neg. LLF: 110.50180504277303
Iteration: 5, Func. Count: 62, Neg. LLF: 113.30015643470475
Iteration: 6, Func. Count: 75, Neg. LLF: 111.28535899064119
Iteration: 7, Func. Count: 87, Neg. LLF: 109.99815434599644
Iteration: 8, Func. Count: 98, Neg. LLF: 109.64429689360423
Iteration: 9, Func. Count: 109, Neg. LLF: 109.6236246462182
Iteration: 10, Func. Count: 120, Neg. LLF: 109.61363382131987
Iteration: 11, Func. Count: 131, Neg. LLF: 109.61146746733836
Iteration: 12, Func. Count: 142, Neg. LLF: 109.60883442067896
Iteration: 13, Func. Count: 153, Neg. LLF: 109.60105633951673
Iteration: 14, Func. Count: 164, Neg. LLF: 109.58920052376577
Iteration: 15, Func. Count: 175, Neg. LLF: 109.5766061505758
Iteration: 16, Func. Count: 186, Neg. LLF: 109.57219957381893
Iteration: 17, Func. Count: 197, Neg. LLF: 109.57167837334043
Iteration: 18, Func. Count: 208, Neg. LLF: 109.57164206936433
Iteration: 19, Func. Count: 219, Neg. LLF: 109.57164110130118
Optimization terminated successfully (Exit mode 0)
Current function value: 109.57164110130118
Iterations: 19
Function evaluations: 219
Gradient evaluations: 19
Iteration: 1, Func. Count: 13, Neg. LLF: 164.92131504572617
Iteration: 2, Func. Count: 28, Neg. LLF: 116.90767851062654
Iteration: 3, Func. Count: 41, Neg. LLF: 122.37977847094002
Iteration: 4, Func. Count: 54, Neg. LLF: 110.35758000193978
Iteration: 5, Func. Count: 66, Neg. LLF: 109.92242119508792
Iteration: 6, Func. Count: 78, Neg. LLF: 121.12879238466857
Iteration: 7, Func. Count: 94, Neg. LLF: 111.7698676421114
Iteration: 8, Func. Count: 107, Neg. LLF: 109.63877196226217
Iteration: 9, Func. Count: 119, Neg. LLF: 109.63686939849073
Iteration: 10, Func. Count: 132, Neg. LLF: 109.61333443992186
Iteration: 11, Func. Count: 144, Neg. LLF: 109.60931709919471
Iteration: 12, Func. Count: 156, Neg. LLF: 109.60728664988488
Iteration: 13, Func. Count: 168, Neg. LLF: 109.59595929527491
Iteration: 14, Func. Count: 180, Neg. LLF: 109.5800883058723
Iteration: 15, Func. Count: 192, Neg. LLF: 109.57429998748864
Iteration: 16, Func. Count: 204, Neg. LLF: 109.57202772427371
Iteration: 17, Func. Count: 216, Neg. LLF: 109.57167583846535
Iteration: 18, Func. Count: 228, Neg. LLF: 109.5716431533838
Iteration: 19, Func. Count: 240, Neg. LLF: 109.57164115295515
Iteration: 20, Func. Count: 251, Neg. LLF: 109.57164117396982
Optimization terminated successfully (Exit mode 0)
Current function value: 109.57164115295515
Iterations: 20
Function evaluations: 251
Gradient evaluations: 20
Iteration: 1, Func. Count: 14, Neg. LLF: 169.42010669179723
Iteration: 2, Func. Count: 30, Neg. LLF: 117.12931356072673
Iteration: 3, Func. Count: 44, Neg. LLF: 122.19990602513487
Iteration: 4, Func. Count: 58, Neg. LLF: 110.36998074162233
Iteration: 5, Func. Count: 71, Neg. LLF: 109.9195056044048
Iteration: 6, Func. Count: 84, Neg. LLF: 116.9524616261592
Iteration: 7, Func. Count: 100, Neg. LLF: 111.01393138774364
Iteration: 8, Func. Count: 114, Neg. LLF: 109.90152315130435
Iteration: 9, Func. Count: 128, Neg. LLF: 109.64592715177578
Iteration: 10, Func. Count: 141, Neg. LLF: 109.60685771375513
Iteration: 11, Func. Count: 154, Neg. LLF: 109.60524110833252
Iteration: 12, Func. Count: 167, Neg. LLF: 109.598813502189
Iteration: 13, Func. Count: 180, Neg. LLF: 109.59287804631697
Iteration: 14, Func. Count: 193, Neg. LLF: 109.58244519811412
Iteration: 15, Func. Count: 206, Neg. LLF: 109.57442285543527
Iteration: 16, Func. Count: 219, Neg. LLF: 109.57197074747978
Iteration: 17, Func. Count: 232, Neg. LLF: 109.57166369732303
Iteration: 18, Func. Count: 245, Neg. LLF: 109.57164187273943
Iteration: 19, Func. Count: 258, Neg. LLF: 109.57164111395056
Optimization terminated successfully (Exit mode 0)
Current function value: 109.57164111395056
Iterations: 19
Function evaluations: 258
Gradient evaluations: 19
Iteration: 1, Func. Count: 7, Neg. LLF: 147.71248860539498
Iteration: 2, Func. Count: 15, Neg. LLF: 139.35134644332783
Iteration: 3, Func. Count: 22, Neg. LLF: 115.10997406273894
Iteration: 4, Func. Count: 28, Neg. LLF: 114.64206450537846
Iteration: 5, Func. Count: 34, Neg. LLF: 114.6016373973715
Iteration: 6, Func. Count: 40, Neg. LLF: 114.59968106183007
Iteration: 7, Func. Count: 46, Neg. LLF: 114.59960056529816
Iteration: 8, Func. Count: 52, Neg. LLF: 114.59956498201421
Iteration: 9, Func. Count: 58, Neg. LLF: 114.59956353854372
Iteration: 10, Func. Count: 63, Neg. LLF: 114.59956367105285
Optimization terminated successfully (Exit mode 0)
Current function value: 114.59956353854372
Iterations: 10
Function evaluations: 63
Gradient evaluations: 10
Iteration: 1, Func. Count: 8, Neg. LLF: 170.239244098007
Iteration: 2, Func. Count: 18, Neg. LLF: 113.43784394024463
Iteration: 3, Func. Count: 25, Neg. LLF: 115.09190193457727
Iteration: 4, Func. Count: 33, Neg. LLF: 113.03545461584223
Iteration: 5, Func. Count: 40, Neg. LLF: 112.84923053853012
Iteration: 6, Func. Count: 47, Neg. LLF: 112.81304457888137
Iteration: 7, Func. Count: 54, Neg. LLF: 112.81047663277405
Iteration: 8, Func. Count: 61, Neg. LLF: 112.81039248726299
Iteration: 9, Func. Count: 67, Neg. LLF: 112.81039277398426
Optimization terminated successfully (Exit mode 0)
Current function value: 112.81039248726299
Iterations: 9
Function evaluations: 67
Gradient evaluations: 9
Iteration: 1, Func. Count: 9, Neg. LLF: 165.35176704016183
Iteration: 2, Func. Count: 20, Neg. LLF: 113.44803882425772
Iteration: 3, Func. Count: 28, Neg. LLF: 113.02291949303911
Iteration: 4, Func. Count: 36, Neg. LLF: 121.86142716238163
Iteration: 5, Func. Count: 45, Neg. LLF: 113.09366174263988
Iteration: 6, Func. Count: 54, Neg. LLF: 112.86978679222541
Iteration: 7, Func. Count: 62, Neg. LLF: 112.8565827057342
Iteration: 8, Func. Count: 70, Neg. LLF: 112.85655782111083
Iteration: 9, Func. Count: 78, Neg. LLF: 112.85654762753727
Iteration: 10, Func. Count: 86, Neg. LLF: 112.85651404784115
Iteration: 11, Func. Count: 94, Neg. LLF: 112.85639134262247
Iteration: 12, Func. Count: 102, Neg. LLF: 112.85709823404652
Iteration: 13, Func. Count: 111, Neg. LLF: 112.87119101563249
Iteration: 14, Func. Count: 120, Neg. LLF: 112.8552860032245
Iteration: 15, Func. Count: 128, Neg. LLF: 112.85394259404315
Iteration: 16, Func. Count: 136, Neg. LLF: 112.84801210097737
Iteration: 17, Func. Count: 144, Neg. LLF: 112.82948934506558
Iteration: 18, Func. Count: 152, Neg. LLF: 112.81450154345569
Iteration: 19, Func. Count: 160, Neg. LLF: 112.8104190895565
Iteration: 20, Func. Count: 168, Neg. LLF: 112.81039229551388
Iteration: 21, Func. Count: 175, Neg. LLF: 112.81039200944245
Optimization terminated successfully (Exit mode 0)
Current function value: 112.81039229551388
Iterations: 21
Function evaluations: 175
Gradient evaluations: 21
Iteration: 1, Func. Count: 10, Neg. LLF: 164.39348930935847
Iteration: 2, Func. Count: 22, Neg. LLF: 113.61172608433542
Iteration: 3, Func. Count: 31, Neg. LLF: 112.95515919809361
Iteration: 4, Func. Count: 40, Neg. LLF: 113.99808354008441
Iteration: 5, Func. Count: 52, Neg. LLF: 112.9112523383483
Iteration: 6, Func. Count: 61, Neg. LLF: 112.87856185986894
Iteration: 7, Func. Count: 70, Neg. LLF: 112.87777862675625
Iteration: 8, Func. Count: 79, Neg. LLF: 112.87776211418654
Iteration: 9, Func. Count: 88, Neg. LLF: 112.87775806806575
Iteration: 10, Func. Count: 96, Neg. LLF: 112.87775796079755
Optimization terminated successfully (Exit mode 0)
Current function value: 112.87775806806575
Iterations: 10
Function evaluations: 96
Gradient evaluations: 10
Iteration: 1, Func. Count: 11, Neg. LLF: 169.0838701390438
Iteration: 2, Func. Count: 24, Neg. LLF: 113.70295702444332
Iteration: 3, Func. Count: 34, Neg. LLF: 112.91953432567455
Iteration: 4, Func. Count: 44, Neg. LLF: 112.90704579115983
Iteration: 5, Func. Count: 55, Neg. LLF: 112.94052587974467
Iteration: 6, Func. Count: 66, Neg. LLF: 112.86448294560304
Iteration: 7, Func. Count: 76, Neg. LLF: 112.86393767251477
Iteration: 8, Func. Count: 86, Neg. LLF: 112.86387944361005
Iteration: 9, Func. Count: 96, Neg. LLF: 112.86387035172598
Iteration: 10, Func. Count: 105, Neg. LLF: 112.86387027040037
Optimization terminated successfully (Exit mode 0)
Current function value: 112.86387035172598
Iterations: 10
Function evaluations: 105
Gradient evaluations: 10
Iteration: 1, Func. Count: 8, Neg. LLF: 137.0393179546205
Iteration: 2, Func. Count: 17, Neg. LLF: 140.58689811702632
Iteration: 3, Func. Count: 25, Neg. LLF: 114.86922384847323
Iteration: 4, Func. Count: 32, Neg. LLF: 114.6711241228883
Iteration: 5, Func. Count: 39, Neg. LLF: 114.63289605811286
Iteration: 6, Func. Count: 46, Neg. LLF: 114.65702435776842
Iteration: 7, Func. Count: 54, Neg. LLF: 114.59734636575439
Iteration: 8, Func. Count: 61, Neg. LLF: 114.59699000106819
Iteration: 9, Func. Count: 68, Neg. LLF: 114.59697008200514
Iteration: 10, Func. Count: 75, Neg. LLF: 114.59696143496117
Iteration: 11, Func. Count: 82, Neg. LLF: 114.59696038262994
Iteration: 12, Func. Count: 88, Neg. LLF: 114.59696038261683
Optimization terminated successfully (Exit mode 0)
Current function value: 114.59696038262994
Iterations: 12
Function evaluations: 88
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 172.08719851682793
Iteration: 2, Func. Count: 20, Neg. LLF: 124.89114043491068
Iteration: 3, Func. Count: 29, Neg. LLF: 122.07900467415803
Iteration: 4, Func. Count: 38, Neg. LLF: 113.41576782434832
Iteration: 5, Func. Count: 46, Neg. LLF: 113.4561321929602
Iteration: 6, Func. Count: 55, Neg. LLF: 113.38579599632905
Iteration: 7, Func. Count: 63, Neg. LLF: 113.3686418664166
Iteration: 8, Func. Count: 71, Neg. LLF: 113.36544527540752
Iteration: 9, Func. Count: 79, Neg. LLF: 113.36379915171544
Iteration: 10, Func. Count: 87, Neg. LLF: 113.36372631785763
Iteration: 11, Func. Count: 95, Neg. LLF: 113.36372529345
Iteration: 12, Func. Count: 102, Neg. LLF: 113.36372524884044
Optimization terminated successfully (Exit mode 0)
Current function value: 113.36372529345
Iterations: 12
Function evaluations: 102
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 167.56649136993622
Iteration: 2, Func. Count: 22, Neg. LLF: 113.60401235736897
Iteration: 3, Func. Count: 31, Neg. LLF: 113.24684561063441
Iteration: 4, Func. Count: 40, Neg. LLF: 128.85126396530157
Iteration: 5, Func. Count: 50, Neg. LLF: 114.29834636680397
Iteration: 6, Func. Count: 60, Neg. LLF: 112.8649998959874
Iteration: 7, Func. Count: 69, Neg. LLF: 112.85700684616201
Iteration: 8, Func. Count: 78, Neg. LLF: 112.85694620525659
Iteration: 9, Func. Count: 87, Neg. LLF: 112.85692740383266
Iteration: 10, Func. Count: 96, Neg. LLF: 112.85688660959991
Iteration: 11, Func. Count: 105, Neg. LLF: 112.8568183703443
Iteration: 12, Func. Count: 114, Neg. LLF: 112.85666978409424
Iteration: 13, Func. Count: 123, Neg. LLF: 112.85489965842467
Iteration: 14, Func. Count: 132, Neg. LLF: 112.810846077075
Iteration: 15, Func. Count: 141, Neg. LLF: 112.81067128427638
Iteration: 16, Func. Count: 150, Neg. LLF: 112.8103964474565
Iteration: 17, Func. Count: 159, Neg. LLF: 112.84310511395643
Optimization terminated successfully (Exit mode 0)
Current function value: 112.8103963528647
Iterations: 18
Function evaluations: 162
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 167.5242896748694
Iteration: 2, Func. Count: 24, Neg. LLF: 113.76257703745574
Iteration: 3, Func. Count: 34, Neg. LLF: 112.9790577071844
Iteration: 4, Func. Count: 44, Neg. LLF: 114.49626662356553
Iteration: 5, Func. Count: 56, Neg. LLF: 113.50587349183695
Iteration: 6, Func. Count: 67, Neg. LLF: 112.90094384937218
Iteration: 7, Func. Count: 77, Neg. LLF: 112.90470120056946
Iteration: 8, Func. Count: 88, Neg. LLF: 112.89634716872612
Iteration: 9, Func. Count: 98, Neg. LLF: 112.89296835227212
Iteration: 10, Func. Count: 108, Neg. LLF: 112.87389652311623
Iteration: 11, Func. Count: 118, Neg. LLF: 112.86763101886841
Iteration: 12, Func. Count: 128, Neg. LLF: 112.84512965799841
Iteration: 13, Func. Count: 138, Neg. LLF: 112.8417681051498
Iteration: 14, Func. Count: 148, Neg. LLF: 112.84169335305815
Iteration: 15, Func. Count: 158, Neg. LLF: 112.84122883315143
Iteration: 16, Func. Count: 168, Neg. LLF: 112.84027634905885
Iteration: 17, Func. Count: 178, Neg. LLF: 112.83757461359
Iteration: 18, Func. Count: 188, Neg. LLF: 112.83041510683272
Iteration: 19, Func. Count: 198, Neg. LLF: 112.82142102975925
Iteration: 20, Func. Count: 208, Neg. LLF: 112.81419842688389
Iteration: 21, Func. Count: 218, Neg. LLF: 112.81040864724264
Iteration: 22, Func. Count: 228, Neg. LLF: 112.8103922556124
Iteration: 23, Func. Count: 237, Neg. LLF: 112.81039197264205
Optimization terminated successfully (Exit mode 0)
Current function value: 112.8103922556124
Iterations: 23
Function evaluations: 237
Gradient evaluations: 23
Iteration: 1, Func. Count: 12, Neg. LLF: 170.7462393225817
Iteration: 2, Func. Count: 26, Neg. LLF: 113.83671305817684
Iteration: 3, Func. Count: 37, Neg. LLF: 113.0271140881802
Iteration: 4, Func. Count: 48, Neg. LLF: 185.85382207907776
Iteration: 5, Func. Count: 61, Neg. LLF: 112.75766740102695
Iteration: 6, Func. Count: 72, Neg. LLF: 112.73296120876584
Iteration: 7, Func. Count: 83, Neg. LLF: 112.73096884436312
Iteration: 8, Func. Count: 94, Neg. LLF: 112.73075690295664
Iteration: 9, Func. Count: 105, Neg. LLF: 112.7307544435139
Iteration: 10, Func. Count: 115, Neg. LLF: 112.73075434928963
Optimization terminated successfully (Exit mode 0)
Current function value: 112.7307544435139
Iterations: 10
Function evaluations: 115
Gradient evaluations: 10
Iteration: 1, Func. Count: 9, Neg. LLF: 162.22001333887775
Iteration: 2, Func. Count: 19, Neg. LLF: 155.5985358112823
Iteration: 3, Func. Count: 28, Neg. LLF: 111.64285847910263
Iteration: 4, Func. Count: 36, Neg. LLF: 121.12351499654972
Iteration: 5, Func. Count: 46, Neg. LLF: 119.18934197270791
Iteration: 6, Func. Count: 56, Neg. LLF: 109.88092556899215
Iteration: 7, Func. Count: 64, Neg. LLF: 109.85210370905004
Iteration: 8, Func. Count: 73, Neg. LLF: 109.6438261078577
Iteration: 9, Func. Count: 81, Neg. LLF: 109.63480676504423
Iteration: 10, Func. Count: 89, Neg. LLF: 109.63086178618813
Iteration: 11, Func. Count: 97, Neg. LLF: 109.63011022210428
Iteration: 12, Func. Count: 105, Neg. LLF: 109.6300340840868
Iteration: 13, Func. Count: 112, Neg. LLF: 109.6300340763554
Optimization terminated successfully (Exit mode 0)
Current function value: 109.6300340840868
Iterations: 13
Function evaluations: 112
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 117.13983931259347
Iteration: 2, Func. Count: 20, Neg. LLF: 127.86472857116692
Iteration: 3, Func. Count: 30, Neg. LLF: 112.43658102599416
Iteration: 4, Func. Count: 40, Neg. LLF: 113.14667602281776
Iteration: 5, Func. Count: 50, Neg. LLF: 110.038340646558
Iteration: 6, Func. Count: 60, Neg. LLF: 109.89750114815376
Iteration: 7, Func. Count: 70, Neg. LLF: 109.64404453975617
Iteration: 8, Func. Count: 79, Neg. LLF: 109.62573390780896
Iteration: 9, Func. Count: 88, Neg. LLF: 109.60165325079129
Iteration: 10, Func. Count: 97, Neg. LLF: 109.58828618963956
Iteration: 11, Func. Count: 106, Neg. LLF: 109.58777295633425
Iteration: 12, Func. Count: 115, Neg. LLF: 109.58775154301361
Iteration: 13, Func. Count: 124, Neg. LLF: 109.58775064371238
Optimization terminated successfully (Exit mode 0)
Current function value: 109.58775064371238
Iterations: 13
Function evaluations: 124
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 116.013750330653
Iteration: 2, Func. Count: 22, Neg. LLF: 133.2750606896728
Iteration: 3, Func. Count: 33, Neg. LLF: 113.47832278562224
Iteration: 4, Func. Count: 44, Neg. LLF: 110.86328753500824
Iteration: 5, Func. Count: 55, Neg. LLF: 110.3528924725593
Iteration: 6, Func. Count: 66, Neg. LLF: 109.64579587686954
Iteration: 7, Func. Count: 76, Neg. LLF: 109.78248098012999
Iteration: 8, Func. Count: 87, Neg. LLF: 109.59004186749004
Iteration: 9, Func. Count: 97, Neg. LLF: 109.58780794918971
Iteration: 10, Func. Count: 107, Neg. LLF: 109.58781246930324
Iteration: 11, Func. Count: 118, Neg. LLF: 109.58775093586033
Iteration: 12, Func. Count: 127, Neg. LLF: 109.5877509903871
Optimization terminated successfully (Exit mode 0)
Current function value: 109.58775093586033
Iterations: 12
Function evaluations: 127
Gradient evaluations: 12
Iteration: 1, Func. Count: 12, Neg. LLF: 115.47553775771323
Iteration: 2, Func. Count: 24, Neg. LLF: 145.95997843796053
Iteration: 3, Func. Count: 36, Neg. LLF: 114.19805175523759
Iteration: 4, Func. Count: 48, Neg. LLF: 114.00367313383092
Iteration: 5, Func. Count: 60, Neg. LLF: 110.64864480751753
Iteration: 6, Func. Count: 72, Neg. LLF: 109.64702297379918
Iteration: 7, Func. Count: 83, Neg. LLF: 109.95340702791042
Iteration: 8, Func. Count: 95, Neg. LLF: 109.59009375231864
Iteration: 9, Func. Count: 106, Neg. LLF: 109.58812932638624
Iteration: 10, Func. Count: 117, Neg. LLF: 109.58790703684927
Iteration: 11, Func. Count: 128, Neg. LLF: 109.5878337140832
Iteration: 12, Func. Count: 139, Neg. LLF: 109.58775102138061
Iteration: 13, Func. Count: 149, Neg. LLF: 109.58775104385735
Optimization terminated successfully (Exit mode 0)
Current function value: 109.58775102138061
Iterations: 13
Function evaluations: 149
Gradient evaluations: 13
Iteration: 1, Func. Count: 13, Neg. LLF: 115.85525207855935
Iteration: 2, Func. Count: 26, Neg. LLF: 142.54306202138736
Iteration: 3, Func. Count: 39, Neg. LLF: 113.79320157799563
Iteration: 4, Func. Count: 52, Neg. LLF: 114.03248477468377
Iteration: 5, Func. Count: 65, Neg. LLF: 110.52989734341544
Iteration: 6, Func. Count: 78, Neg. LLF: 109.6398640072649
Iteration: 7, Func. Count: 90, Neg. LLF: 109.9007379791651
Iteration: 8, Func. Count: 103, Neg. LLF: 109.59079615078268
Iteration: 9, Func. Count: 115, Neg. LLF: 109.59320242337168
Iteration: 10, Func. Count: 128, Neg. LLF: 109.58775831397259
Iteration: 11, Func. Count: 140, Neg. LLF: 109.58775068735972
Iteration: 12, Func. Count: 151, Neg. LLF: 109.58775072535683
Optimization terminated successfully (Exit mode 0)
Current function value: 109.58775068735972
Iterations: 12
Function evaluations: 151
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 165.34696007680552
Iteration: 2, Func. Count: 21, Neg. LLF: 161.5128686770294
Iteration: 3, Func. Count: 31, Neg. LLF: 111.89796163029683
Iteration: 4, Func. Count: 40, Neg. LLF: 125.32549004357584
Iteration: 5, Func. Count: 51, Neg. LLF: 119.94527001173685
Iteration: 6, Func. Count: 62, Neg. LLF: 110.41533173669102
Iteration: 7, Func. Count: 71, Neg. LLF: 109.71223514572118
Iteration: 8, Func. Count: 80, Neg. LLF: 109.6086339448571
Iteration: 9, Func. Count: 89, Neg. LLF: 109.58083341113547
Iteration: 10, Func. Count: 98, Neg. LLF: 109.5747875575299
Iteration: 11, Func. Count: 107, Neg. LLF: 109.57237323438501
Iteration: 12, Func. Count: 116, Neg. LLF: 109.57169864996804
Iteration: 13, Func. Count: 125, Neg. LLF: 109.5716588799178
Iteration: 14, Func. Count: 134, Neg. LLF: 109.57164314213732
Iteration: 15, Func. Count: 143, Neg. LLF: 109.571641232165
Iteration: 16, Func. Count: 151, Neg. LLF: 109.57164122186384
Optimization terminated successfully (Exit mode 0)
Current function value: 109.571641232165
Iterations: 16
Function evaluations: 151
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 118.58913417566403
Iteration: 2, Func. Count: 22, Neg. LLF: 130.46186791305846
Iteration: 3, Func. Count: 33, Neg. LLF: 113.21891000923584
Iteration: 4, Func. Count: 44, Neg. LLF: 113.57987356825367
Iteration: 5, Func. Count: 55, Neg. LLF: 109.99760082009122
Iteration: 6, Func. Count: 66, Neg. LLF: 109.8044135260243
Iteration: 7, Func. Count: 77, Neg. LLF: 109.58873987551608
Iteration: 8, Func. Count: 87, Neg. LLF: 109.58043653634232
Iteration: 9, Func. Count: 97, Neg. LLF: 109.57284837193811
Iteration: 10, Func. Count: 107, Neg. LLF: 109.57171726109952
Iteration: 11, Func. Count: 117, Neg. LLF: 109.571645680587
Iteration: 12, Func. Count: 127, Neg. LLF: 109.5716413087504
Iteration: 13, Func. Count: 136, Neg. LLF: 109.57164129367405
Optimization terminated successfully (Exit mode 0)
Current function value: 109.5716413087504
Iterations: 13
Function evaluations: 136
Gradient evaluations: 13
Iteration: 1, Func. Count: 12, Neg. LLF: 167.11230689720685
Iteration: 2, Func. Count: 26, Neg. LLF: 114.7747924021621
Iteration: 3, Func. Count: 38, Neg. LLF: 113.57532242328759
Iteration: 4, Func. Count: 50, Neg. LLF: 110.55631213144297
Iteration: 5, Func. Count: 62, Neg. LLF: 109.74788024278774
Iteration: 6, Func. Count: 73, Neg. LLF: 109.94797900320039
Iteration: 7, Func. Count: 85, Neg. LLF: 110.3862300550743
Iteration: 8, Func. Count: 97, Neg. LLF: 109.94643652695879
Iteration: 9, Func. Count: 109, Neg. LLF: 109.61523872628273
Iteration: 10, Func. Count: 120, Neg. LLF: 109.61334780520156
Iteration: 11, Func. Count: 131, Neg. LLF: 109.60487110609603
Iteration: 12, Func. Count: 142, Neg. LLF: 109.5970028345204
Iteration: 13, Func. Count: 153, Neg. LLF: 109.57968324199949
Iteration: 14, Func. Count: 164, Neg. LLF: 109.57264486620141
Iteration: 15, Func. Count: 175, Neg. LLF: 109.57170363370177
Iteration: 16, Func. Count: 186, Neg. LLF: 109.57164374023276
Iteration: 17, Func. Count: 197, Neg. LLF: 109.57164111698702
Iteration: 18, Func. Count: 207, Neg. LLF: 109.57164117192465
Optimization terminated successfully (Exit mode 0)
Current function value: 109.57164111698702
Iterations: 18
Function evaluations: 207
Gradient evaluations: 18
Iteration: 1, Func. Count: 13, Neg. LLF: 165.9296494215751
Iteration: 2, Func. Count: 28, Neg. LLF: 116.63711505646037
Iteration: 3, Func. Count: 41, Neg. LLF: 122.58172090221689
Iteration: 4, Func. Count: 54, Neg. LLF: 110.33644695003521
Iteration: 5, Func. Count: 66, Neg. LLF: 109.90213568219164
Iteration: 6, Func. Count: 78, Neg. LLF: 120.35180191269569
Iteration: 7, Func. Count: 94, Neg. LLF: 111.59006288740427
Iteration: 8, Func. Count: 107, Neg. LLF: 109.7306161510171
Iteration: 9, Func. Count: 119, Neg. LLF: 109.63481744985626
Iteration: 10, Func. Count: 131, Neg. LLF: 109.61228702933566
Iteration: 11, Func. Count: 143, Neg. LLF: 109.60963892223232
Iteration: 12, Func. Count: 155, Neg. LLF: 109.606852552128
Iteration: 13, Func. Count: 167, Neg. LLF: 109.60220107149037
Iteration: 14, Func. Count: 179, Neg. LLF: 109.59367803725758
Iteration: 15, Func. Count: 191, Neg. LLF: 109.58211720159761
Iteration: 16, Func. Count: 203, Neg. LLF: 109.57384068272452
Iteration: 17, Func. Count: 215, Neg. LLF: 109.5718955003504
Iteration: 18, Func. Count: 227, Neg. LLF: 109.57165831642358
Iteration: 19, Func. Count: 239, Neg. LLF: 109.57164208187928
Iteration: 20, Func. Count: 251, Neg. LLF: 109.57164121035129
Optimization terminated successfully (Exit mode 0)
Current function value: 109.57164121035129
Iterations: 20
Function evaluations: 251
Gradient evaluations: 20
Iteration: 1, Func. Count: 14, Neg. LLF: 169.98534930362737
Iteration: 2, Func. Count: 30, Neg. LLF: 116.93141609439056
Iteration: 3, Func. Count: 44, Neg. LLF: 122.49665287264033
Iteration: 4, Func. Count: 58, Neg. LLF: 110.368252829927
Iteration: 5, Func. Count: 71, Neg. LLF: 109.91415148214587
Iteration: 6, Func. Count: 84, Neg. LLF: 115.74386141387907
Iteration: 7, Func. Count: 100, Neg. LLF: 110.98336428634549
Iteration: 8, Func. Count: 114, Neg. LLF: 109.90550882513108
Iteration: 9, Func. Count: 128, Neg. LLF: 109.65952322303161
Iteration: 10, Func. Count: 141, Neg. LLF: 109.6057380536502
Iteration: 11, Func. Count: 154, Neg. LLF: 109.60425239461135
Iteration: 12, Func. Count: 167, Neg. LLF: 109.59771927027984
Iteration: 13, Func. Count: 180, Neg. LLF: 109.59021750743463
Iteration: 14, Func. Count: 193, Neg. LLF: 109.58093110607484
Iteration: 15, Func. Count: 206, Neg. LLF: 109.57339847866825
Iteration: 16, Func. Count: 219, Neg. LLF: 109.57182721129612
Iteration: 17, Func. Count: 232, Neg. LLF: 109.57165152824724
Iteration: 18, Func. Count: 245, Neg. LLF: 109.5716413486946
Iteration: 19, Func. Count: 257, Neg. LLF: 109.57164138994264
Optimization terminated successfully (Exit mode 0)
Current function value: 109.5716413486946
Iterations: 19
Function evaluations: 257
Gradient evaluations: 19
Iteration: 1, Func. Count: 11, Neg. LLF: 161.94732849953886
Iteration: 2, Func. Count: 23, Neg. LLF: 174.25566988824554
Iteration: 3, Func. Count: 34, Neg. LLF: 112.17609589966615
Iteration: 4, Func. Count: 44, Neg. LLF: 130.42218785483396
Iteration: 5, Func. Count: 56, Neg. LLF: 120.18557460122521
Iteration: 6, Func. Count: 68, Neg. LLF: 110.65792559756974
Iteration: 7, Func. Count: 78, Neg. LLF: 109.72961162221993
Iteration: 8, Func. Count: 88, Neg. LLF: 109.60637597187811
Iteration: 9, Func. Count: 98, Neg. LLF: 109.58720827820578
Iteration: 10, Func. Count: 108, Neg. LLF: 109.57587906932247
Iteration: 11, Func. Count: 118, Neg. LLF: 109.57357312948244
Iteration: 12, Func. Count: 128, Neg. LLF: 109.57172709715819
Iteration: 13, Func. Count: 138, Neg. LLF: 109.57166456252868
Iteration: 14, Func. Count: 148, Neg. LLF: 109.57164615548317
Iteration: 15, Func. Count: 158, Neg. LLF: 109.57164137264768
Iteration: 16, Func. Count: 167, Neg. LLF: 109.57164140833534
Optimization terminated successfully (Exit mode 0)
Current function value: 109.57164137264768
Iterations: 16
Function evaluations: 167
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 172.40040063509508
Iteration: 2, Func. Count: 26, Neg. LLF: 112.78983043239232
Iteration: 3, Func. Count: 37, Neg. LLF: 132.9644488721314
Iteration: 4, Func. Count: 49, Neg. LLF: 211.5565244462025
Iteration: 5, Func. Count: 63, Neg. LLF: 114.24811645579938
Iteration: 6, Func. Count: 75, Neg. LLF: 110.29484920718932
Iteration: 7, Func. Count: 87, Neg. LLF: 109.84104468316127
Iteration: 8, Func. Count: 98, Neg. LLF: 110.15947568603018
Iteration: 9, Func. Count: 110, Neg. LLF: 109.8107322545127
Iteration: 10, Func. Count: 122, Neg. LLF: 109.66212867005221
Iteration: 11, Func. Count: 133, Neg. LLF: 109.6514659172592
Iteration: 12, Func. Count: 144, Neg. LLF: 109.64840799058717
Iteration: 13, Func. Count: 155, Neg. LLF: 109.63338954178337
Iteration: 14, Func. Count: 166, Neg. LLF: 109.6004616727354
Iteration: 15, Func. Count: 177, Neg. LLF: 109.58360286549119
Iteration: 16, Func. Count: 188, Neg. LLF: 109.57276729016394
Iteration: 17, Func. Count: 199, Neg. LLF: 109.57171160866147
Iteration: 18, Func. Count: 210, Neg. LLF: 109.57164578096796
Iteration: 19, Func. Count: 221, Neg. LLF: 109.57164109398276
Iteration: 20, Func. Count: 231, Neg. LLF: 109.57164107888873
Optimization terminated successfully (Exit mode 0)
Current function value: 109.57164109398276
Iterations: 20
Function evaluations: 231
Gradient evaluations: 20
Iteration: 1, Func. Count: 13, Neg. LLF: 167.4002543476226
Iteration: 2, Func. Count: 28, Neg. LLF: 114.79550480933159
Iteration: 3, Func. Count: 41, Neg. LLF: 113.63033769236864
Iteration: 4, Func. Count: 54, Neg. LLF: 110.49152054595417
Iteration: 5, Func. Count: 67, Neg. LLF: 113.50547736837785
Iteration: 6, Func. Count: 81, Neg. LLF: 110.7213676480203
Iteration: 7, Func. Count: 94, Neg. LLF: 110.01463994216917
Iteration: 8, Func. Count: 107, Neg. LLF: 109.624842745245
Iteration: 9, Func. Count: 119, Neg. LLF: 109.6125551479919
Iteration: 10, Func. Count: 131, Neg. LLF: 109.6110181123234
Iteration: 11, Func. Count: 143, Neg. LLF: 109.60597958945708
Iteration: 12, Func. Count: 155, Neg. LLF: 109.59778382914203
Iteration: 13, Func. Count: 167, Neg. LLF: 109.58386467701153
Iteration: 14, Func. Count: 179, Neg. LLF: 109.5744263020587
Iteration: 15, Func. Count: 191, Neg. LLF: 109.57198331021655
Iteration: 16, Func. Count: 203, Neg. LLF: 109.57165970620461
Iteration: 17, Func. Count: 215, Neg. LLF: 109.5716414977006
Iteration: 18, Func. Count: 226, Neg. LLF: 109.57164155265964
Optimization terminated successfully (Exit mode 0)
Current function value: 109.5716414977006
Iterations: 18
Function evaluations: 226
Gradient evaluations: 18
Iteration: 1, Func. Count: 14, Neg. LLF: 166.2490968865193
Iteration: 2, Func. Count: 30, Neg. LLF: 116.65694740860368
Iteration: 3, Func. Count: 44, Neg. LLF: 122.7051921455394
Iteration: 4, Func. Count: 58, Neg. LLF: 110.32611414952063
Iteration: 5, Func. Count: 71, Neg. LLF: 109.89541512747168
Iteration: 6, Func. Count: 84, Neg. LLF: 119.80616400912865
Iteration: 7, Func. Count: 100, Neg. LLF: 111.56554094772945
Iteration: 8, Func. Count: 114, Neg. LLF: 109.7659734083679
Iteration: 9, Func. Count: 127, Neg. LLF: 109.64586765825835
Iteration: 10, Func. Count: 140, Neg. LLF: 109.6118043196738
Iteration: 11, Func. Count: 153, Neg. LLF: 109.60830257023622
Iteration: 12, Func. Count: 166, Neg. LLF: 109.60622854061916
Iteration: 13, Func. Count: 179, Neg. LLF: 109.60177874923929
Iteration: 14, Func. Count: 192, Neg. LLF: 109.59375716987125
Iteration: 15, Func. Count: 205, Neg. LLF: 109.58247326077503
Iteration: 16, Func. Count: 218, Neg. LLF: 109.57404875096073
Iteration: 17, Func. Count: 231, Neg. LLF: 109.57191182857548
Iteration: 18, Func. Count: 244, Neg. LLF: 109.57165648686647
Iteration: 19, Func. Count: 257, Neg. LLF: 109.5716413521482
Iteration: 20, Func. Count: 269, Neg. LLF: 109.57164137319552
Optimization terminated successfully (Exit mode 0)
Current function value: 109.5716413521482
Iterations: 20
Function evaluations: 269
Gradient evaluations: 20
Iteration: 1, Func. Count: 15, Neg. LLF: 170.60195004668384
Iteration: 2, Func. Count: 32, Neg. LLF: 116.97535456910109
Iteration: 3, Func. Count: 47, Neg. LLF: 122.59543541570991
Iteration: 4, Func. Count: 62, Neg. LLF: 110.36278401071154
Iteration: 5, Func. Count: 76, Neg. LLF: 109.90932633168684
Iteration: 6, Func. Count: 90, Neg. LLF: 115.36520544705832
Iteration: 7, Func. Count: 107, Neg. LLF: 110.94156290137228
Iteration: 8, Func. Count: 122, Neg. LLF: 109.90457651069458
Iteration: 9, Func. Count: 137, Neg. LLF: 109.6712257244024
Iteration: 10, Func. Count: 151, Neg. LLF: 109.6045412489813
Iteration: 11, Func. Count: 165, Neg. LLF: 109.60311058389296
Iteration: 12, Func. Count: 179, Neg. LLF: 109.59678176984191
Iteration: 13, Func. Count: 193, Neg. LLF: 109.59074828674852
Iteration: 14, Func. Count: 207, Neg. LLF: 109.57932693120692
Iteration: 15, Func. Count: 221, Neg. LLF: 109.57302640173107
Iteration: 16, Func. Count: 235, Neg. LLF: 109.5717708105849
Iteration: 17, Func. Count: 249, Neg. LLF: 109.5716476658427
Iteration: 18, Func. Count: 263, Neg. LLF: 109.57164123205271
Iteration: 19, Func. Count: 276, Neg. LLF: 109.57164127329092
Optimization terminated successfully (Exit mode 0)
Current function value: 109.57164123205271
Iterations: 19
Function evaluations: 276
Gradient evaluations: 19
Iteration: 1, Func. Count: 8, Neg. LLF: 123.31975289589093
Iteration: 2, Func. Count: 16, Neg. LLF: 146.5516416975578
Iteration: 3, Func. Count: 24, Neg. LLF: 114.75075353301179
Iteration: 4, Func. Count: 32, Neg. LLF: 112.84030572430727
Iteration: 5, Func. Count: 39, Neg. LLF: 112.56222117909701
Iteration: 6, Func. Count: 46, Neg. LLF: 112.53055724670001
Iteration: 7, Func. Count: 53, Neg. LLF: 112.49417291341813
Iteration: 8, Func. Count: 60, Neg. LLF: 112.4832177135449
Iteration: 9, Func. Count: 67, Neg. LLF: 112.48277534466511
Iteration: 10, Func. Count: 74, Neg. LLF: 112.48276783029573
Iteration: 11, Func. Count: 80, Neg. LLF: 112.48276783031056
Optimization terminated successfully (Exit mode 0)
Current function value: 112.48276783029573
Iterations: 11
Function evaluations: 80
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 170.01970159062873
Iteration: 2, Func. Count: 20, Neg. LLF: 113.48547798425955
Iteration: 3, Func. Count: 28, Neg. LLF: 114.16650711313069
Iteration: 4, Func. Count: 37, Neg. LLF: 115.1152103483449
Iteration: 5, Func. Count: 46, Neg. LLF: 112.81203495446888
Iteration: 6, Func. Count: 54, Neg. LLF: 112.81040722907383
Iteration: 7, Func. Count: 62, Neg. LLF: 112.81039554387404
Iteration: 8, Func. Count: 70, Neg. LLF: 112.81039225315052
Iteration: 9, Func. Count: 77, Neg. LLF: 112.81039254008083
Optimization terminated successfully (Exit mode 0)
Current function value: 112.81039225315052
Iterations: 9
Function evaluations: 77
Gradient evaluations: 9
Iteration: 1, Func. Count: 10, Neg. LLF: 165.1593768772412
Iteration: 2, Func. Count: 22, Neg. LLF: 113.53781289056043
Iteration: 3, Func. Count: 31, Neg. LLF: 112.9814637165284
Iteration: 4, Func. Count: 40, Neg. LLF: 118.67192739059311
Iteration: 5, Func. Count: 51, Neg. LLF: 112.96218858971463
Iteration: 6, Func. Count: 61, Neg. LLF: 112.8586501050496
Iteration: 7, Func. Count: 70, Neg. LLF: 112.85712509295709
Iteration: 8, Func. Count: 79, Neg. LLF: 112.85709850440547
Iteration: 9, Func. Count: 88, Neg. LLF: 112.85697839629327
Iteration: 10, Func. Count: 97, Neg. LLF: 112.85679676494061
Iteration: 11, Func. Count: 106, Neg. LLF: 112.85666413251516
Iteration: 12, Func. Count: 115, Neg. LLF: 112.85528577939294
Iteration: 13, Func. Count: 124, Neg. LLF: 112.8104907429439
Iteration: 14, Func. Count: 133, Neg. LLF: 112.8104552180455
Iteration: 15, Func. Count: 142, Neg. LLF: 112.81040588189178
Iteration: 16, Func. Count: 151, Neg. LLF: 112.8104041179002
Iteration: 17, Func. Count: 160, Neg. LLF: 112.81039228499277
Iteration: 18, Func. Count: 168, Neg. LLF: 112.81039199897478
Optimization terminated successfully (Exit mode 0)
Current function value: 112.81039228499277
Iterations: 18
Function evaluations: 168
Gradient evaluations: 18
Iteration: 1, Func. Count: 11, Neg. LLF: 164.0144219496747
Iteration: 2, Func. Count: 24, Neg. LLF: 113.71615361819029
Iteration: 3, Func. Count: 34, Neg. LLF: 112.9452346311252
Iteration: 4, Func. Count: 44, Neg. LLF: 114.0861292003933
Iteration: 5, Func. Count: 57, Neg. LLF: 112.88856248491426
Iteration: 6, Func. Count: 67, Neg. LLF: 112.87884854985516
Iteration: 7, Func. Count: 77, Neg. LLF: 112.8778315140846
Iteration: 8, Func. Count: 87, Neg. LLF: 112.87777116066553
Iteration: 9, Func. Count: 97, Neg. LLF: 112.87775802189373
Iteration: 10, Func. Count: 106, Neg. LLF: 112.87775791442994
Optimization terminated successfully (Exit mode 0)
Current function value: 112.87775802189373
Iterations: 10
Function evaluations: 106
Gradient evaluations: 10
Iteration: 1, Func. Count: 12, Neg. LLF: 168.5602917177659
Iteration: 2, Func. Count: 26, Neg. LLF: 113.80868508395933
Iteration: 3, Func. Count: 37, Neg. LLF: 112.90523205923378
Iteration: 4, Func. Count: 48, Neg. LLF: 112.88111722350475
Iteration: 5, Func. Count: 59, Neg. LLF: 113.02484687396097
Iteration: 6, Func. Count: 71, Neg. LLF: 112.8642172752043
Iteration: 7, Func. Count: 82, Neg. LLF: 112.86388455743528
Iteration: 8, Func. Count: 93, Neg. LLF: 112.86387110577294
Iteration: 9, Func. Count: 104, Neg. LLF: 112.86387031492602
Optimization terminated successfully (Exit mode 0)
Current function value: 112.86387031492602
Iterations: 9
Function evaluations: 104
Gradient evaluations: 9
Iteration: 1, Func. Count: 9, Neg. LLF: 117.7982107752206
Iteration: 2, Func. Count: 18, Neg. LLF: 139.74512659893153
Iteration: 3, Func. Count: 27, Neg. LLF: 119.48663238201672
Iteration: 4, Func. Count: 36, Neg. LLF: 112.42634058298557
Iteration: 5, Func. Count: 44, Neg. LLF: 111.85443470619724
Iteration: 6, Func. Count: 52, Neg. LLF: 111.72642566348063
Iteration: 7, Func. Count: 60, Neg. LLF: 111.689171374313
Iteration: 8, Func. Count: 68, Neg. LLF: 111.68769379343706
Iteration: 9, Func. Count: 76, Neg. LLF: 111.68764912377438
Iteration: 10, Func. Count: 84, Neg. LLF: 111.6876439095585
Iteration: 11, Func. Count: 91, Neg. LLF: 111.6876439054782
Optimization terminated successfully (Exit mode 0)
Current function value: 111.6876439095585
Iterations: 11
Function evaluations: 91
Gradient evaluations: 11
Iteration: 1, Func. Count: 10, Neg. LLF: 171.87189884502567
Iteration: 2, Func. Count: 22, Neg. LLF: 125.18382737595982
Iteration: 3, Func. Count: 32, Neg. LLF: 123.31210832056128
Iteration: 4, Func. Count: 42, Neg. LLF: 113.42308716624098
Iteration: 5, Func. Count: 51, Neg. LLF: 113.6690840511416
Iteration: 6, Func. Count: 61, Neg. LLF: 113.38427607153551
Iteration: 7, Func. Count: 70, Neg. LLF: 113.36732009096103
Iteration: 8, Func. Count: 79, Neg. LLF: 113.36454654395745
Iteration: 9, Func. Count: 88, Neg. LLF: 113.36377127357454
Iteration: 10, Func. Count: 97, Neg. LLF: 113.36372580255487
Iteration: 11, Func. Count: 106, Neg. LLF: 113.36372524077031
Optimization terminated successfully (Exit mode 0)
Current function value: 113.36372524077031
Iterations: 11
Function evaluations: 106
Gradient evaluations: 11
Iteration: 1, Func. Count: 11, Neg. LLF: 167.37465142759552
Iteration: 2, Func. Count: 24, Neg. LLF: 113.69071767896656
Iteration: 3, Func. Count: 34, Neg. LLF: 113.13513991612089
Iteration: 4, Func. Count: 44, Neg. LLF: 125.23688378844307
Iteration: 5, Func. Count: 55, Neg. LLF: 113.33493941201743
Iteration: 6, Func. Count: 66, Neg. LLF: 112.8658693529128
Iteration: 7, Func. Count: 76, Neg. LLF: 112.85673401534778
Iteration: 8, Func. Count: 86, Neg. LLF: 112.85669547585026
Iteration: 9, Func. Count: 96, Neg. LLF: 112.85668928525943
Iteration: 10, Func. Count: 106, Neg. LLF: 112.85667468065714
Iteration: 11, Func. Count: 116, Neg. LLF: 112.85662790554767
Iteration: 12, Func. Count: 126, Neg. LLF: 112.85621416655086
Iteration: 13, Func. Count: 136, Neg. LLF: 112.89881940794434
Iteration: 14, Func. Count: 147, Neg. LLF: 112.99377370259879
Iteration: 15, Func. Count: 158, Neg. LLF: 112.85357060402839
Iteration: 16, Func. Count: 168, Neg. LLF: 112.84858494425028
Iteration: 17, Func. Count: 178, Neg. LLF: 112.82994554240318
Iteration: 18, Func. Count: 188, Neg. LLF: 112.8141547097846
Iteration: 19, Func. Count: 198, Neg. LLF: 112.8104405036629
Iteration: 20, Func. Count: 208, Neg. LLF: 112.81039239682234
Iteration: 21, Func. Count: 217, Neg. LLF: 112.81039211115122
Optimization terminated successfully (Exit mode 0)
Current function value: 112.81039239682234
Iterations: 21
Function evaluations: 217
Gradient evaluations: 21
Iteration: 1, Func. Count: 12, Neg. LLF: 167.12134847222742
Iteration: 2, Func. Count: 26, Neg. LLF: 113.86309463313943
Iteration: 3, Func. Count: 37, Neg. LLF: 112.94640738755957
Iteration: 4, Func. Count: 48, Neg. LLF: 114.61007876187026
Iteration: 5, Func. Count: 62, Neg. LLF: 112.92721781218306
Iteration: 6, Func. Count: 74, Neg. LLF: 112.87812696312282
Iteration: 7, Func. Count: 85, Neg. LLF: 112.8778517771499
Iteration: 8, Func. Count: 96, Neg. LLF: 112.87776070588122
Iteration: 9, Func. Count: 107, Neg. LLF: 112.87775797422157
Iteration: 10, Func. Count: 117, Neg. LLF: 112.877757866782
Optimization terminated successfully (Exit mode 0)
Current function value: 112.87775797422157
Iterations: 10
Function evaluations: 117
Gradient evaluations: 10
Iteration: 1, Func. Count: 13, Neg. LLF: 170.2087099755859
Iteration: 2, Func. Count: 28, Neg. LLF: 113.94197800523449
Iteration: 3, Func. Count: 40, Neg. LLF: 113.00901826595963
Iteration: 4, Func. Count: 52, Neg. LLF: 190.60944375745476
Iteration: 5, Func. Count: 66, Neg. LLF: 112.75488784630812
Iteration: 6, Func. Count: 78, Neg. LLF: 112.73281508069026
Iteration: 7, Func. Count: 90, Neg. LLF: 112.73091551074384
Iteration: 8, Func. Count: 102, Neg. LLF: 112.73075564603981
Iteration: 9, Func. Count: 114, Neg. LLF: 112.73075443352491
Iteration: 10, Func. Count: 125, Neg. LLF: 112.73075433930231
Optimization terminated successfully (Exit mode 0)
Current function value: 112.73075443352491
Iterations: 10
Function evaluations: 125
Gradient evaluations: 10
Iteration: 1, Func. Count: 10, Neg. LLF: 131.3305074986157
Iteration: 2, Func. Count: 20, Neg. LLF: 155.19982561649007
Iteration: 3, Func. Count: 30, Neg. LLF: 111.37221463676822
Iteration: 4, Func. Count: 39, Neg. LLF: 113.50716345734203
Iteration: 5, Func. Count: 51, Neg. LLF: 123.27031941514495
Iteration: 6, Func. Count: 62, Neg. LLF: 109.7957421982511
Iteration: 7, Func. Count: 71, Neg. LLF: 110.1207456974705
Iteration: 8, Func. Count: 81, Neg. LLF: 109.68097168989665
Iteration: 9, Func. Count: 90, Neg. LLF: 109.64175351502115
Iteration: 10, Func. Count: 99, Neg. LLF: 109.63344456721317
Iteration: 11, Func. Count: 108, Neg. LLF: 109.6301432442317
Iteration: 12, Func. Count: 117, Neg. LLF: 109.63003695179906
Iteration: 13, Func. Count: 126, Neg. LLF: 109.63003401974373
Iteration: 14, Func. Count: 134, Neg. LLF: 109.63003401202205
Optimization terminated successfully (Exit mode 0)
Current function value: 109.63003401974373
Iterations: 14
Function evaluations: 134
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 115.99074592631248
Iteration: 2, Func. Count: 22, Neg. LLF: 128.61367304281038
Iteration: 3, Func. Count: 33, Neg. LLF: 112.08643603811157
Iteration: 4, Func. Count: 44, Neg. LLF: 112.78944310608324
Iteration: 5, Func. Count: 55, Neg. LLF: 109.9380921181336
Iteration: 6, Func. Count: 66, Neg. LLF: 109.97912523222858
Iteration: 7, Func. Count: 77, Neg. LLF: 109.64031219409807
Iteration: 8, Func. Count: 87, Neg. LLF: 109.61741513378533
Iteration: 9, Func. Count: 97, Neg. LLF: 109.60289772864596
Iteration: 10, Func. Count: 107, Neg. LLF: 109.58824149554
Iteration: 11, Func. Count: 117, Neg. LLF: 109.58776731014616
Iteration: 12, Func. Count: 127, Neg. LLF: 109.58775125018687
Iteration: 13, Func. Count: 137, Neg. LLF: 109.58775063597193
Optimization terminated successfully (Exit mode 0)
Current function value: 109.58775063597193
Iterations: 13
Function evaluations: 137
Gradient evaluations: 13
Iteration: 1, Func. Count: 12, Neg. LLF: 114.9663026352546
Iteration: 2, Func. Count: 24, Neg. LLF: 134.3027842559988
Iteration: 3, Func. Count: 36, Neg. LLF: 113.194891447169
Iteration: 4, Func. Count: 48, Neg. LLF: 111.21697303161798
Iteration: 5, Func. Count: 60, Neg. LLF: 110.87143209654548
Iteration: 6, Func. Count: 72, Neg. LLF: 109.63680268776565
Iteration: 7, Func. Count: 83, Neg. LLF: 109.73342219376921
Iteration: 8, Func. Count: 95, Neg. LLF: 109.58992720454981
Iteration: 9, Func. Count: 106, Neg. LLF: 109.58849993440184
Iteration: 10, Func. Count: 117, Neg. LLF: 109.58780697204833
Iteration: 11, Func. Count: 128, Neg. LLF: 109.58775179848473
Iteration: 12, Func. Count: 139, Neg. LLF: 109.58775063406988
Iteration: 13, Func. Count: 149, Neg. LLF: 109.58775068862958
Optimization terminated successfully (Exit mode 0)
Current function value: 109.58775063406988
Iterations: 13
Function evaluations: 149
Gradient evaluations: 13
Iteration: 1, Func. Count: 13, Neg. LLF: 114.40629004136753
Iteration: 2, Func. Count: 26, Neg. LLF: 148.09042827775332
Iteration: 3, Func. Count: 39, Neg. LLF: 113.80014754310784
Iteration: 4, Func. Count: 52, Neg. LLF: 114.16554329920798
Iteration: 5, Func. Count: 65, Neg. LLF: 110.57280254178633
Iteration: 6, Func. Count: 78, Neg. LLF: 109.60812291011322
Iteration: 7, Func. Count: 90, Neg. LLF: 109.61929681314935
Iteration: 8, Func. Count: 103, Neg. LLF: 109.61634634725135
Iteration: 9, Func. Count: 116, Neg. LLF: 109.58802092828971
Iteration: 10, Func. Count: 128, Neg. LLF: 109.5877748793253
Iteration: 11, Func. Count: 140, Neg. LLF: 109.58775065301876
Iteration: 12, Func. Count: 151, Neg. LLF: 109.58775067551774
Optimization terminated successfully (Exit mode 0)
Current function value: 109.58775065301876
Iterations: 12
Function evaluations: 151
Gradient evaluations: 12
Iteration: 1, Func. Count: 14, Neg. LLF: 114.72199105739757
Iteration: 2, Func. Count: 28, Neg. LLF: 144.3075787888399
Iteration: 3, Func. Count: 42, Neg. LLF: 113.27286185505058
Iteration: 4, Func. Count: 56, Neg. LLF: 114.12632231990251
Iteration: 5, Func. Count: 70, Neg. LLF: 110.33958148251067
Iteration: 6, Func. Count: 84, Neg. LLF: 109.60242227639606
Iteration: 7, Func. Count: 97, Neg. LLF: 109.69851583634654
Iteration: 8, Func. Count: 111, Neg. LLF: 109.63013273367798
Iteration: 9, Func. Count: 125, Neg. LLF: 109.5877613437275
Iteration: 10, Func. Count: 138, Neg. LLF: 109.58775065930635
Iteration: 11, Func. Count: 150, Neg. LLF: 109.58775069730567
Optimization terminated successfully (Exit mode 0)
Current function value: 109.58775065930635
Iterations: 11
Function evaluations: 150
Gradient evaluations: 11
Iteration: 1, Func. Count: 11, Neg. LLF: 134.56909770916903
Iteration: 2, Func. Count: 22, Neg. LLF: 156.99956060765896
Iteration: 3, Func. Count: 33, Neg. LLF: 111.69003931277966
Iteration: 4, Func. Count: 44, Neg. LLF: 110.30355040024786
Iteration: 5, Func. Count: 54, Neg. LLF: 110.27950882263367
Iteration: 6, Func. Count: 65, Neg. LLF: 111.07274911834423
Iteration: 7, Func. Count: 76, Neg. LLF: 110.31420983830448
Iteration: 8, Func. Count: 87, Neg. LLF: 109.61983181831049
Iteration: 9, Func. Count: 97, Neg. LLF: 109.58012272031816
Iteration: 10, Func. Count: 107, Neg. LLF: 109.575283872054
Iteration: 11, Func. Count: 117, Neg. LLF: 109.57356648936782
Iteration: 12, Func. Count: 127, Neg. LLF: 109.5720682791574
Iteration: 13, Func. Count: 137, Neg. LLF: 109.57168638721767
Iteration: 14, Func. Count: 147, Neg. LLF: 109.5716415958169
Iteration: 15, Func. Count: 156, Neg. LLF: 109.57164158554507
Optimization terminated successfully (Exit mode 0)
Current function value: 109.5716415958169
Iterations: 15
Function evaluations: 156
Gradient evaluations: 15
Iteration: 1, Func. Count: 12, Neg. LLF: 117.38113677307796
Iteration: 2, Func. Count: 24, Neg. LLF: 131.18779128890193
Iteration: 3, Func. Count: 36, Neg. LLF: 112.8289146157127
Iteration: 4, Func. Count: 48, Neg. LLF: 113.40753889251582
Iteration: 5, Func. Count: 60, Neg. LLF: 109.92631087383177
Iteration: 6, Func. Count: 72, Neg. LLF: 109.80540545881823
Iteration: 7, Func. Count: 84, Neg. LLF: 109.59186623063069
Iteration: 8, Func. Count: 95, Neg. LLF: 109.58368436813642
Iteration: 9, Func. Count: 106, Neg. LLF: 109.57327260927099
Iteration: 10, Func. Count: 117, Neg. LLF: 109.57167173517644
Iteration: 11, Func. Count: 128, Neg. LLF: 109.57164457878515
Iteration: 12, Func. Count: 139, Neg. LLF: 109.57164133028017
Iteration: 13, Func. Count: 149, Neg. LLF: 109.57164131520696
Optimization terminated successfully (Exit mode 0)
Current function value: 109.57164133028017
Iterations: 13
Function evaluations: 149
Gradient evaluations: 13
Iteration: 1, Func. Count: 13, Neg. LLF: 166.92149242073128
Iteration: 2, Func. Count: 28, Neg. LLF: 115.6359226167999
Iteration: 3, Func. Count: 41, Neg. LLF: 113.71306910141641
Iteration: 4, Func. Count: 54, Neg. LLF: 110.39135444746702
Iteration: 5, Func. Count: 66, Neg. LLF: 114.13975243844968
Iteration: 6, Func. Count: 80, Neg. LLF: 110.24283673967898
Iteration: 7, Func. Count: 93, Neg. LLF: 110.52547284442205
Iteration: 8, Func. Count: 106, Neg. LLF: 109.65978427958864
Iteration: 9, Func. Count: 118, Neg. LLF: 110.18863516740707
Iteration: 10, Func. Count: 131, Neg. LLF: 109.61968280441528
Iteration: 11, Func. Count: 143, Neg. LLF: 109.61110220375801
Iteration: 12, Func. Count: 155, Neg. LLF: 109.6091552863949
Iteration: 13, Func. Count: 167, Neg. LLF: 109.60590952943929
Iteration: 14, Func. Count: 179, Neg. LLF: 109.60111562523832
Iteration: 15, Func. Count: 191, Neg. LLF: 109.59123495167108
Iteration: 16, Func. Count: 203, Neg. LLF: 109.58028938675311
Iteration: 17, Func. Count: 215, Neg. LLF: 109.573338246958
Iteration: 18, Func. Count: 227, Neg. LLF: 109.57178167672087
Iteration: 19, Func. Count: 239, Neg. LLF: 109.57164711591055
Iteration: 20, Func. Count: 251, Neg. LLF: 109.5716411781965
Iteration: 21, Func. Count: 262, Neg. LLF: 109.57164123312904
Optimization terminated successfully (Exit mode 0)
Current function value: 109.5716411781965
Iterations: 21
Function evaluations: 262
Gradient evaluations: 21
Iteration: 1, Func. Count: 14, Neg. LLF: 165.5398113485504
Iteration: 2, Func. Count: 30, Neg. LLF: 117.66884617005131
Iteration: 3, Func. Count: 44, Neg. LLF: 122.12315538057165
Iteration: 4, Func. Count: 58, Neg. LLF: 110.40248660694556
Iteration: 5, Func. Count: 71, Neg. LLF: 109.95204352251518
Iteration: 6, Func. Count: 84, Neg. LLF: 121.8731689461503
Iteration: 7, Func. Count: 101, Neg. LLF: 111.83057557419905
Iteration: 8, Func. Count: 115, Neg. LLF: 109.62648084221506
Iteration: 9, Func. Count: 128, Neg. LLF: 109.61941040438667
Iteration: 10, Func. Count: 141, Neg. LLF: 109.61388514020042
Iteration: 11, Func. Count: 154, Neg. LLF: 109.60974105249535
Iteration: 12, Func. Count: 167, Neg. LLF: 109.6078567969759
Iteration: 13, Func. Count: 180, Neg. LLF: 109.59747468049152
Iteration: 14, Func. Count: 193, Neg. LLF: 109.58199224033736
Iteration: 15, Func. Count: 206, Neg. LLF: 109.57503202879978
Iteration: 16, Func. Count: 219, Neg. LLF: 109.57211678871082
Iteration: 17, Func. Count: 232, Neg. LLF: 109.57168017604876
Iteration: 18, Func. Count: 245, Neg. LLF: 109.57164407299106
Iteration: 19, Func. Count: 258, Neg. LLF: 109.57164138667396
Iteration: 20, Func. Count: 270, Neg. LLF: 109.57164140766646
Optimization terminated successfully (Exit mode 0)
Current function value: 109.57164138667396
Iterations: 20
Function evaluations: 270
Gradient evaluations: 20
Iteration: 1, Func. Count: 15, Neg. LLF: 169.46352692704306
Iteration: 2, Func. Count: 32, Neg. LLF: 117.90218771164373
Iteration: 3, Func. Count: 47, Neg. LLF: 121.60882689667878
Iteration: 4, Func. Count: 62, Neg. LLF: 110.37625776756478
Iteration: 5, Func. Count: 76, Neg. LLF: 109.91770317807799
Iteration: 6, Func. Count: 90, Neg. LLF: 116.8779195239249
Iteration: 7, Func. Count: 107, Neg. LLF: 110.96745919338555
Iteration: 8, Func. Count: 122, Neg. LLF: 109.89319616122188
Iteration: 9, Func. Count: 137, Neg. LLF: 109.64964743626193
Iteration: 10, Func. Count: 151, Neg. LLF: 109.60662507829083
Iteration: 11, Func. Count: 165, Neg. LLF: 109.60495324910266
Iteration: 12, Func. Count: 179, Neg. LLF: 109.59912565886299
Iteration: 13, Func. Count: 193, Neg. LLF: 109.59452899501544
Iteration: 14, Func. Count: 207, Neg. LLF: 109.58238105021323
Iteration: 15, Func. Count: 221, Neg. LLF: 109.57478066112891
Iteration: 16, Func. Count: 235, Neg. LLF: 109.57203733577003
Iteration: 17, Func. Count: 249, Neg. LLF: 109.57167171861698
Iteration: 18, Func. Count: 263, Neg. LLF: 109.57164259174556
Iteration: 19, Func. Count: 277, Neg. LLF: 109.57164114837421
Iteration: 20, Func. Count: 290, Neg. LLF: 109.57164118957441
Optimization terminated successfully (Exit mode 0)
Current function value: 109.57164114837421
Iterations: 20
Function evaluations: 290
Gradient evaluations: 20
Iteration: 1, Func. Count: 12, Neg. LLF: 127.26313076465121
Iteration: 2, Func. Count: 25, Neg. LLF: 152.43653409873886
Iteration: 3, Func. Count: 37, Neg. LLF: 110.35119659600241
Iteration: 4, Func. Count: 48, Neg. LLF: 121.26409480376233
Iteration: 5, Func. Count: 60, Neg. LLF: 117.51678446905069
Iteration: 6, Func. Count: 72, Neg. LLF: 110.96567615851016
Iteration: 7, Func. Count: 84, Neg. LLF: 109.58019387411866
Iteration: 8, Func. Count: 95, Neg. LLF: 109.51736158238779
Iteration: 9, Func. Count: 107, Neg. LLF: 109.41600612092428
Iteration: 10, Func. Count: 119, Neg. LLF: 109.33373019794273
Iteration: 11, Func. Count: 130, Neg. LLF: 109.3307115648584
Iteration: 12, Func. Count: 141, Neg. LLF: 109.33030916632309
Iteration: 13, Func. Count: 152, Neg. LLF: 109.33026777135736
Iteration: 14, Func. Count: 163, Neg. LLF: 109.33026590117616
Iteration: 15, Func. Count: 173, Neg. LLF: 109.33026586926725
Optimization terminated successfully (Exit mode 0)
Current function value: 109.33026590117616
Iterations: 15
Function evaluations: 173
Gradient evaluations: 15
Iteration: 1, Func. Count: 13, Neg. LLF: 172.185599884949
Iteration: 2, Func. Count: 28, Neg. LLF: 113.45090771667303
Iteration: 3, Func. Count: 40, Neg. LLF: 127.19097153310857
Iteration: 4, Func. Count: 53, Neg. LLF: 339.44752170071706
Iteration: 5, Func. Count: 68, Neg. LLF: 115.44861103941453
Iteration: 6, Func. Count: 82, Neg. LLF: 118.74741248686098
Iteration: 7, Func. Count: 95, Neg. LLF: 109.84699340551317
Iteration: 8, Func. Count: 108, Neg. LLF: 109.69739729713635
Iteration: 9, Func. Count: 121, Neg. LLF: 109.40116762999155
Iteration: 10, Func. Count: 133, Neg. LLF: 109.39586513363935
Iteration: 11, Func. Count: 145, Neg. LLF: 109.39100261423684
Iteration: 12, Func. Count: 157, Neg. LLF: 109.37972304282657
Iteration: 13, Func. Count: 169, Neg. LLF: 109.36585782695663
Iteration: 14, Func. Count: 181, Neg. LLF: 109.35065925228064
Iteration: 15, Func. Count: 193, Neg. LLF: 109.33953877272178
Iteration: 16, Func. Count: 205, Neg. LLF: 109.33367483722856
Iteration: 17, Func. Count: 217, Neg. LLF: 109.33106247775554
Iteration: 18, Func. Count: 229, Neg. LLF: 109.3303396061577
Iteration: 19, Func. Count: 241, Neg. LLF: 109.3302698657101
Iteration: 20, Func. Count: 253, Neg. LLF: 109.33026594169517
Iteration: 21, Func. Count: 264, Neg. LLF: 109.33026596098549
Optimization terminated successfully (Exit mode 0)
Current function value: 109.33026594169517
Iterations: 21
Function evaluations: 264
Gradient evaluations: 21
Iteration: 1, Func. Count: 14, Neg. LLF: 159.97356332218357
Iteration: 2, Func. Count: 30, Neg. LLF: 115.47419097426489
Iteration: 3, Func. Count: 44, Neg. LLF: 113.96005469650206
Iteration: 4, Func. Count: 58, Neg. LLF: 110.30471222257546
Iteration: 5, Func. Count: 71, Neg. LLF: 111.69999810669715
Iteration: 6, Func. Count: 85, Neg. LLF: 110.31212327486942
Iteration: 7, Func. Count: 99, Neg. LLF: 110.76074608747358
Iteration: 8, Func. Count: 113, Neg. LLF: 111.58931107081979
Iteration: 9, Func. Count: 127, Neg. LLF: 110.11145597461375
Iteration: 10, Func. Count: 141, Neg. LLF: 111.44916833420997
Iteration: 11, Func. Count: 155, Neg. LLF: 109.35568524223078
Iteration: 12, Func. Count: 168, Neg. LLF: 109.35260161538326
Iteration: 13, Func. Count: 181, Neg. LLF: 109.35106000594087
Iteration: 14, Func. Count: 194, Neg. LLF: 109.34850644072617
Iteration: 15, Func. Count: 207, Neg. LLF: 109.3443256056386
Iteration: 16, Func. Count: 220, Neg. LLF: 109.33821592420381
Iteration: 17, Func. Count: 233, Neg. LLF: 109.33301475738317
Iteration: 18, Func. Count: 246, Neg. LLF: 109.33079036606695
Iteration: 19, Func. Count: 259, Neg. LLF: 109.33030707565037
Iteration: 20, Func. Count: 272, Neg. LLF: 109.33026671597356
Iteration: 21, Func. Count: 285, Neg. LLF: 109.33026580566813
Optimization terminated successfully (Exit mode 0)
Current function value: 109.33026580566813
Iterations: 21
Function evaluations: 285
Gradient evaluations: 21
Iteration: 1, Func. Count: 15, Neg. LLF: 132.51206201447678
Iteration: 2, Func. Count: 33, Neg. LLF: 123.19177060437391
Iteration: 3, Func. Count: 48, Neg. LLF: 116.82783927243085
Iteration: 4, Func. Count: 63, Neg. LLF: 110.73582573783722
Iteration: 5, Func. Count: 77, Neg. LLF: 110.29911847507302
Iteration: 6, Func. Count: 91, Neg. LLF: 11607.933014772345
Iteration: 7, Func. Count: 108, Neg. LLF: 111.94556884952887
Iteration: 8, Func. Count: 123, Neg. LLF: 110.08539012399174
Iteration: 9, Func. Count: 138, Neg. LLF: 109.6050253959233
Iteration: 10, Func. Count: 152, Neg. LLF: 110.12972242773237
Iteration: 11, Func. Count: 167, Neg. LLF: 109.42461404150696
Iteration: 12, Func. Count: 181, Neg. LLF: 109.41101577226827
Iteration: 13, Func. Count: 195, Neg. LLF: 109.40388566462707
Iteration: 14, Func. Count: 209, Neg. LLF: 109.38358606097407
Iteration: 15, Func. Count: 223, Neg. LLF: 109.36959280838352
Iteration: 16, Func. Count: 237, Neg. LLF: 109.35813540218788
Iteration: 17, Func. Count: 251, Neg. LLF: 109.34780725932835
Iteration: 18, Func. Count: 265, Neg. LLF: 109.33644013108517
Iteration: 19, Func. Count: 279, Neg. LLF: 109.33141494205367
Iteration: 20, Func. Count: 293, Neg. LLF: 109.33046486843028
Iteration: 21, Func. Count: 307, Neg. LLF: 109.33027698525125
Iteration: 22, Func. Count: 321, Neg. LLF: 109.33026819209032
Iteration: 23, Func. Count: 335, Neg. LLF: 109.33026579504046
Iteration: 24, Func. Count: 348, Neg. LLF: 109.33026582365534
Optimization terminated successfully (Exit mode 0)
Current function value: 109.33026579504046
Iterations: 24
Function evaluations: 348
Gradient evaluations: 24
Iteration: 1, Func. Count: 16, Neg. LLF: 134.35230024431044
Iteration: 2, Func. Count: 35, Neg. LLF: 133.56493532823458
Iteration: 3, Func. Count: 51, Neg. LLF: 115.27444648969363
Iteration: 4, Func. Count: 67, Neg. LLF: 110.67940128896969
Iteration: 5, Func. Count: 82, Neg. LLF: 110.35080097572518
Iteration: 6, Func. Count: 98, Neg. LLF: 617.7741767861312
Iteration: 7, Func. Count: 115, Neg. LLF: 112.78658170244215
Iteration: 8, Func. Count: 131, Neg. LLF: 109.62662210815301
Iteration: 9, Func. Count: 146, Neg. LLF: 109.42449737664971
Iteration: 10, Func. Count: 161, Neg. LLF: 109.41334505953559
Iteration: 11, Func. Count: 176, Neg. LLF: 109.4071486942749
Iteration: 12, Func. Count: 191, Neg. LLF: 109.38103728461789
Iteration: 13, Func. Count: 206, Neg. LLF: 109.3618979392461
Iteration: 14, Func. Count: 221, Neg. LLF: 109.34234030194408
Iteration: 15, Func. Count: 236, Neg. LLF: 109.3354739807911
Iteration: 16, Func. Count: 251, Neg. LLF: 109.33211872233728
Iteration: 17, Func. Count: 266, Neg. LLF: 109.33058741007592
Iteration: 18, Func. Count: 281, Neg. LLF: 109.33031184869398
Iteration: 19, Func. Count: 296, Neg. LLF: 109.33026927083687
Iteration: 20, Func. Count: 311, Neg. LLF: 109.33026591541017
Iteration: 21, Func. Count: 325, Neg. LLF: 109.33026600146522
Optimization terminated successfully (Exit mode 0)
Current function value: 109.33026591541017
Iterations: 21
Function evaluations: 325
Gradient evaluations: 21
Iteration: 1, Func. Count: 6, Neg. LLF: 136.46813646090385
Iteration: 2, Func. Count: 13, Neg. LLF: 295.1890150171369
Iteration: 3, Func. Count: 19, Neg. LLF: 139.22891395861888
Iteration: 4, Func. Count: 25, Neg. LLF: 113.98223965287286
Iteration: 5, Func. Count: 31, Neg. LLF: 111.32333959891704
Iteration: 6, Func. Count: 37, Neg. LLF: 110.34370950370779
Iteration: 7, Func. Count: 42, Neg. LLF: 109.95471897245258
Iteration: 8, Func. Count: 47, Neg. LLF: 109.67239288303311
Iteration: 9, Func. Count: 52, Neg. LLF: 109.65273998280688
Iteration: 10, Func. Count: 57, Neg. LLF: 109.65219123364439
Iteration: 11, Func. Count: 62, Neg. LLF: 109.65217567544721
Iteration: 12, Func. Count: 66, Neg. LLF: 109.6521756674994
Optimization terminated successfully (Exit mode 0)
Current function value: 109.65217567544721
Iterations: 12
Function evaluations: 66
Gradient evaluations: 12
Iteration: 1, Func. Count: 5, Neg. LLF: 124.3206532258951
Iteration: 2, Func. Count: 10, Neg. LLF: 144.39735284586274
Iteration: 3, Func. Count: 15, Neg. LLF: 116.26886969477064
Iteration: 4, Func. Count: 19, Neg. LLF: 115.98658474528281
Iteration: 5, Func. Count: 23, Neg. LLF: 115.80534741320226
Iteration: 6, Func. Count: 27, Neg. LLF: 115.77673889427555
Iteration: 7, Func. Count: 31, Neg. LLF: 115.7745532821346
Iteration: 8, Func. Count: 35, Neg. LLF: 115.77453119428056
Iteration: 9, Func. Count: 38, Neg. LLF: 115.77453120863679
Optimization terminated successfully (Exit mode 0)
Current function value: 115.77453119428056
Iterations: 9
Function evaluations: 38
Gradient evaluations: 9
Iteration: 1, Func. Count: 6, Neg. LLF: 116.97143188530279
Iteration: 2, Func. Count: 12, Neg. LLF: 146.40985727164048
Iteration: 3, Func. Count: 18, Neg. LLF: 122.59950405600961
Iteration: 4, Func. Count: 24, Neg. LLF: 113.69415962114057
Iteration: 5, Func. Count: 29, Neg. LLF: 113.75002842524523
Iteration: 6, Func. Count: 35, Neg. LLF: 113.61311877199024
Iteration: 7, Func. Count: 40, Neg. LLF: 113.60766178232947
Iteration: 8, Func. Count: 45, Neg. LLF: 113.60758050091988
Iteration: 9, Func. Count: 49, Neg. LLF: 113.60758047620831
Optimization terminated successfully (Exit mode 0)
Current function value: 113.60758050091988
Iterations: 9
Function evaluations: 49
Gradient evaluations: 9
Iteration: 1, Func. Count: 7, Neg. LLF: 163.26979900069392
Iteration: 2, Func. Count: 16, Neg. LLF: 115.30267164833005
Iteration: 3, Func. Count: 23, Neg. LLF: 132.19966009421682
Iteration: 4, Func. Count: 30, Neg. LLF: 114.29003130297566
Iteration: 5, Func. Count: 36, Neg. LLF: 113.73152572494362
Iteration: 6, Func. Count: 42, Neg. LLF: 113.69243234116044
Iteration: 7, Func. Count: 48, Neg. LLF: 113.63181660072595
Iteration: 8, Func. Count: 54, Neg. LLF: 113.6235014650407
Iteration: 9, Func. Count: 60, Neg. LLF: 113.60954702277337
Iteration: 10, Func. Count: 66, Neg. LLF: 113.60770599373363
Iteration: 11, Func. Count: 72, Neg. LLF: 113.60758193778736
Iteration: 12, Func. Count: 78, Neg. LLF: 113.60758033097366
Iteration: 13, Func. Count: 83, Neg. LLF: 113.60758035643464
Optimization terminated successfully (Exit mode 0)
Current function value: 113.60758033097366
Iterations: 13
Function evaluations: 83
Gradient evaluations: 13
Iteration: 1, Func. Count: 8, Neg. LLF: 163.34877055772114
Iteration: 2, Func. Count: 18, Neg. LLF: 114.93921595044702
Iteration: 3, Func. Count: 25, Neg. LLF: 114.73204646167504
Iteration: 4, Func. Count: 32, Neg. LLF: 116.32946358831417
Iteration: 5, Func. Count: 40, Neg. LLF: 114.65841845519813
Iteration: 6, Func. Count: 47, Neg. LLF: 114.65816942015098
Iteration: 7, Func. Count: 54, Neg. LLF: 114.65796530626149
Iteration: 8, Func. Count: 61, Neg. LLF: 114.65710462852523
Iteration: 9, Func. Count: 68, Neg. LLF: 114.65619815940782
Iteration: 10, Func. Count: 75, Neg. LLF: 114.65447293683201
Iteration: 11, Func. Count: 82, Neg. LLF: 114.64481607877649
Iteration: 12, Func. Count: 89, Neg. LLF: 114.6287713532332
Iteration: 13, Func. Count: 96, Neg. LLF: 114.62856383583306
Iteration: 14, Func. Count: 103, Neg. LLF: 114.62849226371624
Iteration: 15, Func. Count: 110, Neg. LLF: 114.62849236389593
Optimization terminated successfully (Exit mode 0)
Current function value: 114.62849141955498
Iterations: 15
Function evaluations: 111
Gradient evaluations: 15
Iteration: 1, Func. Count: 9, Neg. LLF: 163.63000272176555
Iteration: 2, Func. Count: 20, Neg. LLF: 114.89769067294381
Iteration: 3, Func. Count: 28, Neg. LLF: 114.60897668552474
Iteration: 4, Func. Count: 36, Neg. LLF: 113.86543219063323
Iteration: 5, Func. Count: 44, Neg. LLF: 117.10149096864328
Iteration: 6, Func. Count: 53, Neg. LLF: 114.1784021468922
Iteration: 7, Func. Count: 62, Neg. LLF: 113.66089499649155
Iteration: 8, Func. Count: 70, Neg. LLF: 113.6157436051567
Iteration: 9, Func. Count: 78, Neg. LLF: 113.5520019456166
Iteration: 10, Func. Count: 86, Neg. LLF: 113.50937730026482
Iteration: 11, Func. Count: 94, Neg. LLF: 113.50593762049972
Iteration: 12, Func. Count: 102, Neg. LLF: 113.50592535472654
Iteration: 13, Func. Count: 109, Neg. LLF: 113.50592532196237
Optimization terminated successfully (Exit mode 0)
Current function value: 113.50592535472654
Iterations: 13
Function evaluations: 109
Gradient evaluations: 13
Iteration: 1, Func. Count: 6, Neg. LLF: 137.43009288266862
Iteration: 2, Func. Count: 13, Neg. LLF: 305.28722302336723
Iteration: 3, Func. Count: 19, Neg. LLF: 135.88183501859072
Iteration: 4, Func. Count: 25, Neg. LLF: 114.57241809207406
Iteration: 5, Func. Count: 31, Neg. LLF: 111.54932868622622
Iteration: 6, Func. Count: 37, Neg. LLF: 110.3962509362738
Iteration: 7, Func. Count: 42, Neg. LLF: 110.03289676329322
Iteration: 8, Func. Count: 47, Neg. LLF: 109.73316030639457
Iteration: 9, Func. Count: 52, Neg. LLF: 109.70507048777154
Iteration: 10, Func. Count: 57, Neg. LLF: 109.70391552389654
Iteration: 11, Func. Count: 62, Neg. LLF: 109.70388554674338
Iteration: 12, Func. Count: 67, Neg. LLF: 109.70388456153196
Optimization terminated successfully (Exit mode 0)
Current function value: 109.70388456153196
Iterations: 12
Function evaluations: 67
Gradient evaluations: 12
Iteration: 1, Func. Count: 7, Neg. LLF: 115.24163421974202
Iteration: 2, Func. Count: 14, Neg. LLF: 135.23698999653035
Iteration: 3, Func. Count: 21, Neg. LLF: 112.62801980093575
Iteration: 4, Func. Count: 28, Neg. LLF: 109.5944184867021
Iteration: 5, Func. Count: 34, Neg. LLF: 109.52948204521412
Iteration: 6, Func. Count: 40, Neg. LLF: 109.57794331571942
Iteration: 7, Func. Count: 47, Neg. LLF: 109.52631094886955
Iteration: 8, Func. Count: 54, Neg. LLF: 109.52282758437154
Iteration: 9, Func. Count: 60, Neg. LLF: 109.52282203453976
Iteration: 10, Func. Count: 65, Neg. LLF: 109.52282200909862
Optimization terminated successfully (Exit mode 0)
Current function value: 109.52282203453976
Iterations: 10
Function evaluations: 65
Gradient evaluations: 10
Iteration: 1, Func. Count: 8, Neg. LLF: 114.44541338353396
Iteration: 2, Func. Count: 16, Neg. LLF: 138.09066734381287
Iteration: 3, Func. Count: 24, Neg. LLF: 112.4276919183791
Iteration: 4, Func. Count: 32, Neg. LLF: 109.79260824150128
Iteration: 5, Func. Count: 39, Neg. LLF: 109.66740086727155
Iteration: 6, Func. Count: 46, Neg. LLF: 110.30250075335772
Iteration: 7, Func. Count: 54, Neg. LLF: 109.53070328879475
Iteration: 8, Func. Count: 61, Neg. LLF: 109.52319759910952
Iteration: 9, Func. Count: 68, Neg. LLF: 109.5228393865024
Iteration: 10, Func. Count: 75, Neg. LLF: 109.52282312643763
Iteration: 11, Func. Count: 82, Neg. LLF: 109.52282221099276
Optimization terminated successfully (Exit mode 0)
Current function value: 109.52282221099276
Iterations: 11
Function evaluations: 82
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 114.11700107861341
Iteration: 2, Func. Count: 18, Neg. LLF: 152.23695350272502
Iteration: 3, Func. Count: 27, Neg. LLF: 112.34293055235798
Iteration: 4, Func. Count: 36, Neg. LLF: 109.77971406536567
Iteration: 5, Func. Count: 44, Neg. LLF: 109.58359783211176
Iteration: 6, Func. Count: 52, Neg. LLF: 109.8780874395775
Iteration: 7, Func. Count: 61, Neg. LLF: 109.52414378313813
Iteration: 8, Func. Count: 69, Neg. LLF: 109.52282891340546
Iteration: 9, Func. Count: 77, Neg. LLF: 109.52282206585423
Iteration: 10, Func. Count: 84, Neg. LLF: 109.52282210014015
Optimization terminated successfully (Exit mode 0)
Current function value: 109.52282206585423
Iterations: 10
Function evaluations: 84
Gradient evaluations: 10
Iteration: 1, Func. Count: 10, Neg. LLF: 114.57844170681332
Iteration: 2, Func. Count: 20, Neg. LLF: 146.1735518069281
Iteration: 3, Func. Count: 30, Neg. LLF: 111.7523957258614
Iteration: 4, Func. Count: 40, Neg. LLF: 109.84510898367981
Iteration: 5, Func. Count: 49, Neg. LLF: 109.64143948380485
Iteration: 6, Func. Count: 58, Neg. LLF: 110.01375690515384
Iteration: 7, Func. Count: 68, Neg. LLF: 109.52522629399662
Iteration: 8, Func. Count: 77, Neg. LLF: 109.52342022311512
Iteration: 9, Func. Count: 86, Neg. LLF: 109.52282468176551
Iteration: 10, Func. Count: 95, Neg. LLF: 109.52282208177971
Iteration: 11, Func. Count: 103, Neg. LLF: 109.52282214550037
Optimization terminated successfully (Exit mode 0)
Current function value: 109.52282208177971
Iterations: 11
Function evaluations: 103
Gradient evaluations: 11
Iteration: 1, Func. Count: 7, Neg. LLF: 143.09801679718768
Iteration: 2, Func. Count: 15, Neg. LLF: 317.27708570567825
Iteration: 3, Func. Count: 22, Neg. LLF: 153.82793982723368
Iteration: 4, Func. Count: 29, Neg. LLF: 112.09415183601584
Iteration: 5, Func. Count: 36, Neg. LLF: 113.3135818706471
Iteration: 6, Func. Count: 43, Neg. LLF: 110.23886320230592
Iteration: 7, Func. Count: 49, Neg. LLF: 109.7671559940221
Iteration: 8, Func. Count: 55, Neg. LLF: 109.64175483764177
Iteration: 9, Func. Count: 61, Neg. LLF: 109.48904076711617
Iteration: 10, Func. Count: 67, Neg. LLF: 109.46340674192804
Iteration: 11, Func. Count: 73, Neg. LLF: 109.46142632709403
Iteration: 12, Func. Count: 79, Neg. LLF: 109.46113708292849
Iteration: 13, Func. Count: 85, Neg. LLF: 109.46113493445924
Iteration: 14, Func. Count: 90, Neg. LLF: 109.46113492147045
Optimization terminated successfully (Exit mode 0)
Current function value: 109.46113493445924
Iterations: 14
Function evaluations: 90
Gradient evaluations: 14
Iteration: 1, Func. Count: 8, Neg. LLF: 116.07114566659378
Iteration: 2, Func. Count: 16, Neg. LLF: 135.89757745408517
Iteration: 3, Func. Count: 24, Neg. LLF: 113.89306490710722
Iteration: 4, Func. Count: 32, Neg. LLF: 110.41929930169933
Iteration: 5, Func. Count: 40, Neg. LLF: 109.94396982275018
Iteration: 6, Func. Count: 48, Neg. LLF: 109.46960960590721
Iteration: 7, Func. Count: 55, Neg. LLF: 109.46203355945987
Iteration: 8, Func. Count: 62, Neg. LLF: 109.46121510650049
Iteration: 9, Func. Count: 69, Neg. LLF: 109.46114880193132
Iteration: 10, Func. Count: 76, Neg. LLF: 109.4611360336332
Iteration: 11, Func. Count: 83, Neg. LLF: 109.46113491493767
Iteration: 12, Func. Count: 89, Neg. LLF: 109.46113489692247
Optimization terminated successfully (Exit mode 0)
Current function value: 109.46113491493767
Iterations: 12
Function evaluations: 89
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 116.36384006826752
Iteration: 2, Func. Count: 18, Neg. LLF: 137.93414013893505
Iteration: 3, Func. Count: 27, Neg. LLF: 115.03535933517021
Iteration: 4, Func. Count: 36, Neg. LLF: 110.4916611480584
Iteration: 5, Func. Count: 45, Neg. LLF: 109.60672323389255
Iteration: 6, Func. Count: 53, Neg. LLF: 109.4703597186893
Iteration: 7, Func. Count: 61, Neg. LLF: 109.46375424211364
Iteration: 8, Func. Count: 69, Neg. LLF: 109.46130017943113
Iteration: 9, Func. Count: 77, Neg. LLF: 109.46122377703978
Iteration: 10, Func. Count: 85, Neg. LLF: 109.46113726578177
Iteration: 11, Func. Count: 93, Neg. LLF: 109.46113504130446
Iteration: 12, Func. Count: 100, Neg. LLF: 109.46113507465516
Optimization terminated successfully (Exit mode 0)
Current function value: 109.46113504130446
Iterations: 12
Function evaluations: 100
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 116.68840759516586
Iteration: 2, Func. Count: 20, Neg. LLF: 151.66111846355994
Iteration: 3, Func. Count: 30, Neg. LLF: 116.25218463076148
Iteration: 4, Func. Count: 40, Neg. LLF: 110.53525293957098
Iteration: 5, Func. Count: 50, Neg. LLF: 109.74544099642364
Iteration: 6, Func. Count: 59, Neg. LLF: 109.48704675082546
Iteration: 7, Func. Count: 68, Neg. LLF: 109.46517851059932
Iteration: 8, Func. Count: 77, Neg. LLF: 109.46184358297663
Iteration: 9, Func. Count: 86, Neg. LLF: 109.4613230294551
Iteration: 10, Func. Count: 95, Neg. LLF: 109.46113693909804
Iteration: 11, Func. Count: 104, Neg. LLF: 109.46113492884747
Iteration: 12, Func. Count: 112, Neg. LLF: 109.46113495856542
Optimization terminated successfully (Exit mode 0)
Current function value: 109.46113492884747
Iterations: 12
Function evaluations: 112
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 117.50125477965933
Iteration: 2, Func. Count: 22, Neg. LLF: 148.08669433918936
Iteration: 3, Func. Count: 33, Neg. LLF: 114.50070434435004
Iteration: 4, Func. Count: 44, Neg. LLF: 110.02235154173108
Iteration: 5, Func. Count: 54, Neg. LLF: 109.59571606780288
Iteration: 6, Func. Count: 64, Neg. LLF: 109.6071725189649
Iteration: 7, Func. Count: 75, Neg. LLF: 109.46428417241827
Iteration: 8, Func. Count: 85, Neg. LLF: 109.46187374445343
Iteration: 9, Func. Count: 95, Neg. LLF: 109.46116127800673
Iteration: 10, Func. Count: 105, Neg. LLF: 109.46113600469307
Iteration: 11, Func. Count: 115, Neg. LLF: 109.46113491524899
Iteration: 12, Func. Count: 124, Neg. LLF: 109.4611349857061
Optimization terminated successfully (Exit mode 0)
Current function value: 109.46113491524899
Iterations: 12
Function evaluations: 124
Gradient evaluations: 12
Iteration: 1, Func. Count: 8, Neg. LLF: 138.08688988485306
Iteration: 2, Func. Count: 17, Neg. LLF: 433.6844883027354
Iteration: 3, Func. Count: 25, Neg. LLF: 3355286.5871985033
Iteration: 4, Func. Count: 33, Neg. LLF: 112.28488842126309
Iteration: 5, Func. Count: 41, Neg. LLF: 112.70556708964428
Iteration: 6, Func. Count: 49, Neg. LLF: 110.54624172776883
Iteration: 7, Func. Count: 57, Neg. LLF: 109.80116773191847
Iteration: 8, Func. Count: 64, Neg. LLF: 109.60915690706446
Iteration: 9, Func. Count: 71, Neg. LLF: 109.48949029152156
Iteration: 10, Func. Count: 78, Neg. LLF: 109.46578232848942
Iteration: 11, Func. Count: 85, Neg. LLF: 109.46119346388221
Iteration: 12, Func. Count: 92, Neg. LLF: 109.46113862467602
Iteration: 13, Func. Count: 99, Neg. LLF: 109.46113496912318
Iteration: 14, Func. Count: 105, Neg. LLF: 109.46113499293868
Optimization terminated successfully (Exit mode 0)
Current function value: 109.46113496912318
Iterations: 14
Function evaluations: 105
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 114.61828739543861
Iteration: 2, Func. Count: 18, Neg. LLF: 138.25559002203454
Iteration: 3, Func. Count: 27, Neg. LLF: 113.3966860929117
Iteration: 4, Func. Count: 36, Neg. LLF: 110.31188891561652
Iteration: 5, Func. Count: 45, Neg. LLF: 109.78049225640413
Iteration: 6, Func. Count: 54, Neg. LLF: 109.46644958709382
Iteration: 7, Func. Count: 62, Neg. LLF: 109.46208835186492
Iteration: 8, Func. Count: 70, Neg. LLF: 109.46121657040239
Iteration: 9, Func. Count: 78, Neg. LLF: 109.46114506552773
Iteration: 10, Func. Count: 86, Neg. LLF: 109.46113549412226
Iteration: 11, Func. Count: 94, Neg. LLF: 109.46113493319834
Optimization terminated successfully (Exit mode 0)
Current function value: 109.46113493319834
Iterations: 11
Function evaluations: 94
Gradient evaluations: 11
Iteration: 1, Func. Count: 10, Neg. LLF: 115.23826969256106
Iteration: 2, Func. Count: 20, Neg. LLF: 142.6707942181215
Iteration: 3, Func. Count: 30, Neg. LLF: 114.80071250673221
Iteration: 4, Func. Count: 40, Neg. LLF: 110.30762310238426
Iteration: 5, Func. Count: 50, Neg. LLF: 109.59183211266733
Iteration: 6, Func. Count: 59, Neg. LLF: 109.47567006203786
Iteration: 7, Func. Count: 68, Neg. LLF: 109.46328519448647
Iteration: 8, Func. Count: 77, Neg. LLF: 109.4613549002883
Iteration: 9, Func. Count: 86, Neg. LLF: 109.46122003668052
Iteration: 10, Func. Count: 95, Neg. LLF: 109.46113608890913
Iteration: 11, Func. Count: 104, Neg. LLF: 109.46113505253405
Iteration: 12, Func. Count: 112, Neg. LLF: 109.46113508589323
Optimization terminated successfully (Exit mode 0)
Current function value: 109.46113505253405
Iterations: 12
Function evaluations: 112
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 118.9916606310413
Iteration: 2, Func. Count: 25, Neg. LLF: 112.88185883494175
Iteration: 3, Func. Count: 35, Neg. LLF: 145.42510851530437
Iteration: 4, Func. Count: 46, Neg. LLF: 123.99105693411313
Iteration: 5, Func. Count: 58, Neg. LLF: 116.1162648540482
Iteration: 6, Func. Count: 69, Neg. LLF: 109.55233092067309
Iteration: 7, Func. Count: 79, Neg. LLF: 109.48803354635182
Iteration: 8, Func. Count: 89, Neg. LLF: 109.46258187873843
Iteration: 9, Func. Count: 99, Neg. LLF: 109.46121502992267
Iteration: 10, Func. Count: 109, Neg. LLF: 109.46117231568412
Iteration: 11, Func. Count: 119, Neg. LLF: 109.46116561334075
Iteration: 12, Func. Count: 129, Neg. LLF: 109.46116086012916
Iteration: 13, Func. Count: 139, Neg. LLF: 109.46115875991693
Iteration: 14, Func. Count: 149, Neg. LLF: 109.4611515286418
Iteration: 15, Func. Count: 159, Neg. LLF: 109.46114355884774
Iteration: 16, Func. Count: 169, Neg. LLF: 109.46113690146773
Iteration: 17, Func. Count: 179, Neg. LLF: 109.46113509741043
Iteration: 18, Func. Count: 188, Neg. LLF: 109.46113512712994
Optimization terminated successfully (Exit mode 0)
Current function value: 109.46113509741043
Iterations: 18
Function evaluations: 188
Gradient evaluations: 18
Iteration: 1, Func. Count: 12, Neg. LLF: 124.18162688857846
Iteration: 2, Func. Count: 27, Neg. LLF: 113.55327020364373
Iteration: 3, Func. Count: 38, Neg. LLF: 132.26037789685654
Iteration: 4, Func. Count: 50, Neg. LLF: 123.18758300094456
Iteration: 5, Func. Count: 63, Neg. LLF: 131.55488250175068
Iteration: 6, Func. Count: 75, Neg. LLF: 109.62370837747399
Iteration: 7, Func. Count: 86, Neg. LLF: 109.51862506728108
Iteration: 8, Func. Count: 97, Neg. LLF: 109.47508109197624
Iteration: 9, Func. Count: 108, Neg. LLF: 109.4714235696194
Iteration: 10, Func. Count: 119, Neg. LLF: 109.47017952222362
Iteration: 11, Func. Count: 130, Neg. LLF: 109.46871008782671
Iteration: 12, Func. Count: 141, Neg. LLF: 109.46731401816054
Iteration: 13, Func. Count: 152, Neg. LLF: 109.4661493174979
Iteration: 14, Func. Count: 163, Neg. LLF: 109.46455179383294
Iteration: 15, Func. Count: 174, Neg. LLF: 109.46278192215831
Iteration: 16, Func. Count: 185, Neg. LLF: 109.46156157601295
Iteration: 17, Func. Count: 196, Neg. LLF: 109.46118182242301
Iteration: 18, Func. Count: 207, Neg. LLF: 109.46113663068316
Iteration: 19, Func. Count: 218, Neg. LLF: 109.46113494120523
Iteration: 20, Func. Count: 228, Neg. LLF: 109.4611350116775
Optimization terminated successfully (Exit mode 0)
Current function value: 109.46113494120523
Iterations: 20
Function evaluations: 228
Gradient evaluations: 20
Iteration: 1, Func. Count: 5, Neg. LLF: 133.22812686064526
Iteration: 2, Func. Count: 10, Neg. LLF: 135.9844604708994
Iteration: 3, Func. Count: 15, Neg. LLF: 116.38937107809028
Iteration: 4, Func. Count: 19, Neg. LLF: 116.19355683331911
Iteration: 5, Func. Count: 23, Neg. LLF: 116.13691031322689
Iteration: 6, Func. Count: 27, Neg. LLF: 116.12540611384101
Iteration: 7, Func. Count: 31, Neg. LLF: 116.12520855264061
Iteration: 8, Func. Count: 35, Neg. LLF: 116.12520630615717
Iteration: 9, Func. Count: 38, Neg. LLF: 116.12520630615317
Optimization terminated successfully (Exit mode 0)
Current function value: 116.12520630615717
Iterations: 9
Function evaluations: 38
Gradient evaluations: 9
Iteration: 1, Func. Count: 6, Neg. LLF: 166.75810234976433
Iteration: 2, Func. Count: 14, Neg. LLF: 115.09444756756017
Iteration: 3, Func. Count: 19, Neg. LLF: 114.7253442737565
Iteration: 4, Func. Count: 24, Neg. LLF: 115.86475507076103
Iteration: 5, Func. Count: 31, Neg. LLF: 114.6344917878114
Iteration: 6, Func. Count: 36, Neg. LLF: 114.9025838084357
Iteration: 7, Func. Count: 42, Neg. LLF: 114.62849013529376
Iteration: 8, Func. Count: 47, Neg. LLF: 114.6284895832487
Optimization terminated successfully (Exit mode 0)
Current function value: 114.6284895832487
Iterations: 8
Function evaluations: 47
Gradient evaluations: 8
Iteration: 1, Func. Count: 7, Neg. LLF: 162.53095223787312
Iteration: 2, Func. Count: 16, Neg. LLF: 114.87674230608887
Iteration: 3, Func. Count: 22, Neg. LLF: 114.93494917460103
Iteration: 4, Func. Count: 29, Neg. LLF: 121.18237100750473
Iteration: 5, Func. Count: 36, Neg. LLF: 114.64716987982088
Iteration: 6, Func. Count: 42, Neg. LLF: 114.64608345013944
Iteration: 7, Func. Count: 48, Neg. LLF: 114.64157337465981
Iteration: 8, Func. Count: 54, Neg. LLF: 114.63436931334223
Iteration: 9, Func. Count: 60, Neg. LLF: 114.62849636194316
Iteration: 10, Func. Count: 66, Neg. LLF: 114.62848985768518
Iteration: 11, Func. Count: 72, Neg. LLF: 114.7122349240487
Optimization terminated successfully (Exit mode 0)
Current function value: 114.6284896229679
Iterations: 12
Function evaluations: 75
Gradient evaluations: 11
Iteration: 1, Func. Count: 8, Neg. LLF: 158.54937209742593
Iteration: 2, Func. Count: 18, Neg. LLF: 114.78788655046822
Iteration: 3, Func. Count: 25, Neg. LLF: 114.82403576960576
Iteration: 4, Func. Count: 33, Neg. LLF: 114.75531847048264
Iteration: 5, Func. Count: 41, Neg. LLF: 114.65901494549281
Iteration: 6, Func. Count: 48, Neg. LLF: 114.6584708914554
Iteration: 7, Func. Count: 55, Neg. LLF: 114.65819936494125
Iteration: 8, Func. Count: 62, Neg. LLF: 114.65798390750099
Iteration: 9, Func. Count: 69, Neg. LLF: 114.65780589804113
Iteration: 10, Func. Count: 76, Neg. LLF: 114.65742061723402
Iteration: 11, Func. Count: 83, Neg. LLF: 114.65796016143796
Iteration: 12, Func. Count: 91, Neg. LLF: 114.6568779924737
Iteration: 13, Func. Count: 98, Neg. LLF: 114.65669157292609
Iteration: 14, Func. Count: 105, Neg. LLF: 114.65666826156057
Iteration: 15, Func. Count: 111, Neg. LLF: 114.65666823976485
Optimization terminated successfully (Exit mode 0)
Current function value: 114.65666826156057
Iterations: 15
Function evaluations: 111
Gradient evaluations: 15
Iteration: 1, Func. Count: 9, Neg. LLF: 132.0593518665452
Iteration: 2, Func. Count: 18, Neg. LLF: 115.01376200094657
Iteration: 3, Func. Count: 26, Neg. LLF: 115.99365147609132
Iteration: 4, Func. Count: 35, Neg. LLF: 114.88734157574045
Iteration: 5, Func. Count: 43, Neg. LLF: 114.745294407734
Iteration: 6, Func. Count: 51, Neg. LLF: 114.6839978396646
Iteration: 7, Func. Count: 59, Neg. LLF: 114.68012280353375
Iteration: 8, Func. Count: 67, Neg. LLF: 114.67786406990147
Iteration: 9, Func. Count: 75, Neg. LLF: 114.67531551622135
Iteration: 10, Func. Count: 83, Neg. LLF: 114.66508420120418
Iteration: 11, Func. Count: 91, Neg. LLF: 114.66894735859819
Iteration: 12, Func. Count: 100, Neg. LLF: 114.65743308885469
Iteration: 13, Func. Count: 108, Neg. LLF: 114.65551540344424
Iteration: 14, Func. Count: 116, Neg. LLF: 114.65496371674949
Iteration: 15, Func. Count: 124, Neg. LLF: 114.65424071685185
Iteration: 16, Func. Count: 132, Neg. LLF: 114.65353501520966
Iteration: 17, Func. Count: 140, Neg. LLF: 114.6533404402348
Iteration: 18, Func. Count: 148, Neg. LLF: 114.65303147943577
Iteration: 19, Func. Count: 156, Neg. LLF: 114.65302814186457
Iteration: 20, Func. Count: 164, Neg. LLF: 114.65302437289056
Iteration: 21, Func. Count: 171, Neg. LLF: 114.65302435382821
Optimization terminated successfully (Exit mode 0)
Current function value: 114.65302437289056
Iterations: 21
Function evaluations: 171
Gradient evaluations: 21
Iteration: 1, Func. Count: 6, Neg. LLF: 138.96711427289304
Iteration: 2, Func. Count: 12, Neg. LLF: 130.4877070817246
Iteration: 3, Func. Count: 18, Neg. LLF: 115.87933274986459
Iteration: 4, Func. Count: 23, Neg. LLF: 115.83590351006814
Iteration: 5, Func. Count: 29, Neg. LLF: 115.72531409701396
Iteration: 6, Func. Count: 34, Neg. LLF: 115.71946191465646
Iteration: 7, Func. Count: 39, Neg. LLF: 115.71805366668863
Iteration: 8, Func. Count: 44, Neg. LLF: 115.71796203691812
Iteration: 9, Func. Count: 49, Neg. LLF: 115.71796066718015
Iteration: 10, Func. Count: 53, Neg. LLF: 115.71796066718396
Optimization terminated successfully (Exit mode 0)
Current function value: 115.71796066718015
Iterations: 10
Function evaluations: 53
Gradient evaluations: 10
Iteration: 1, Func. Count: 7, Neg. LLF: 118.01307545849866
Iteration: 2, Func. Count: 14, Neg. LLF: 137.79173013724642
Iteration: 3, Func. Count: 21, Neg. LLF: 120.7925132617207
Iteration: 4, Func. Count: 28, Neg. LLF: 113.71060296653897
Iteration: 5, Func. Count: 34, Neg. LLF: 113.61899365569316
Iteration: 6, Func. Count: 40, Neg. LLF: 113.6148803239643
Iteration: 7, Func. Count: 46, Neg. LLF: 113.6076284848463
Iteration: 8, Func. Count: 52, Neg. LLF: 113.60758109648587
Iteration: 9, Func. Count: 58, Neg. LLF: 113.60758020486838
Optimization terminated successfully (Exit mode 0)
Current function value: 113.60758020486838
Iterations: 9
Function evaluations: 58
Gradient evaluations: 9
Iteration: 1, Func. Count: 8, Neg. LLF: 126.77422948128496
Iteration: 2, Func. Count: 16, Neg. LLF: 120.24522757093426
Iteration: 3, Func. Count: 24, Neg. LLF: 117.1864521966597
Iteration: 4, Func. Count: 32, Neg. LLF: 113.7797717119397
Iteration: 5, Func. Count: 39, Neg. LLF: 113.76530731786752
Iteration: 6, Func. Count: 47, Neg. LLF: 113.6095446354165
Iteration: 7, Func. Count: 54, Neg. LLF: 113.60794550303795
Iteration: 8, Func. Count: 61, Neg. LLF: 113.60758105466113
Iteration: 9, Func. Count: 68, Neg. LLF: 113.60758021794369
Optimization terminated successfully (Exit mode 0)
Current function value: 113.60758021794369
Iterations: 9
Function evaluations: 68
Gradient evaluations: 9
Iteration: 1, Func. Count: 9, Neg. LLF: 161.88787150938577
Iteration: 2, Func. Count: 20, Neg. LLF: 114.89215243081456
Iteration: 3, Func. Count: 28, Neg. LLF: 114.91650696279272
Iteration: 4, Func. Count: 37, Neg. LLF: 119.06442341362578
Iteration: 5, Func. Count: 46, Neg. LLF: 114.65680417349856
Iteration: 6, Func. Count: 54, Neg. LLF: 114.65642828988487
Iteration: 7, Func. Count: 62, Neg. LLF: 114.65586690302071
Iteration: 8, Func. Count: 70, Neg. LLF: 114.65560588860974
Iteration: 9, Func. Count: 78, Neg. LLF: 114.65552490469913
Iteration: 10, Func. Count: 86, Neg. LLF: 114.65546086673712
Iteration: 11, Func. Count: 94, Neg. LLF: 114.65518463931392
Iteration: 12, Func. Count: 102, Neg. LLF: 114.6548439602385
Iteration: 13, Func. Count: 110, Neg. LLF: 114.65669699059956
Iteration: 14, Func. Count: 119, Neg. LLF: 114.65463267644037
Iteration: 15, Func. Count: 128, Neg. LLF: 114.65435275521833
Iteration: 16, Func. Count: 136, Neg. LLF: 114.65435040956959
Iteration: 17, Func. Count: 143, Neg. LLF: 114.65435038500962
Optimization terminated successfully (Exit mode 0)
Current function value: 114.65435040956959
Iterations: 17
Function evaluations: 143
Gradient evaluations: 17
Iteration: 1, Func. Count: 10, Neg. LLF: 132.9960024406657
Iteration: 2, Func. Count: 20, Neg. LLF: 115.60876517187776
Iteration: 3, Func. Count: 30, Neg. LLF: 114.57053170976515
Iteration: 4, Func. Count: 39, Neg. LLF: 113.75223110827558
Iteration: 5, Func. Count: 48, Neg. LLF: 113.53149856887183
Iteration: 6, Func. Count: 57, Neg. LLF: 113.50846573731384
Iteration: 7, Func. Count: 66, Neg. LLF: 113.50593165172423
Iteration: 8, Func. Count: 75, Neg. LLF: 113.50592666708422
Iteration: 9, Func. Count: 84, Neg. LLF: 113.50592531167113
Iteration: 10, Func. Count: 92, Neg. LLF: 113.50592527892921
Optimization terminated successfully (Exit mode 0)
Current function value: 113.50592531167113
Iterations: 10
Function evaluations: 92
Gradient evaluations: 10
Iteration: 1, Func. Count: 7, Neg. LLF: 113.91540454499756
Iteration: 2, Func. Count: 14, Neg. LLF: 133.9124433222417
Iteration: 3, Func. Count: 21, Neg. LLF: 128.71073171266806
Iteration: 4, Func. Count: 28, Neg. LLF: 118.81374360568817
Iteration: 5, Func. Count: 35, Neg. LLF: 110.82541993708699
Iteration: 6, Func. Count: 42, Neg. LLF: 109.77578049474523
Iteration: 7, Func. Count: 48, Neg. LLF: 109.7371217842422
Iteration: 8, Func. Count: 54, Neg. LLF: 109.7083665087723
Iteration: 9, Func. Count: 60, Neg. LLF: 109.70442105163285
Iteration: 10, Func. Count: 66, Neg. LLF: 109.70388534309842
Iteration: 11, Func. Count: 72, Neg. LLF: 109.70388456437328
Optimization terminated successfully (Exit mode 0)
Current function value: 109.70388456437328
Iterations: 11
Function evaluations: 72
Gradient evaluations: 11
Iteration: 1, Func. Count: 8, Neg. LLF: 117.83066155012209
Iteration: 2, Func. Count: 16, Neg. LLF: 132.17647164369265
Iteration: 3, Func. Count: 24, Neg. LLF: 113.9280619414693
Iteration: 4, Func. Count: 32, Neg. LLF: 110.58841177197063
Iteration: 5, Func. Count: 40, Neg. LLF: 110.08517235112194
Iteration: 6, Func. Count: 48, Neg. LLF: 109.55091040317771
Iteration: 7, Func. Count: 55, Neg. LLF: 110.37687520904238
Iteration: 8, Func. Count: 63, Neg. LLF: 109.52306417597404
Iteration: 9, Func. Count: 70, Neg. LLF: 109.52283064512173
Iteration: 10, Func. Count: 77, Neg. LLF: 109.52282212700085
Iteration: 11, Func. Count: 83, Neg. LLF: 109.52282210154635
Optimization terminated successfully (Exit mode 0)
Current function value: 109.52282212700085
Iterations: 11
Function evaluations: 83
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 116.3097758448229
Iteration: 2, Func. Count: 18, Neg. LLF: 135.7280684178184
Iteration: 3, Func. Count: 27, Neg. LLF: 114.36998165879827
Iteration: 4, Func. Count: 36, Neg. LLF: 110.42697831981405
Iteration: 5, Func. Count: 45, Neg. LLF: 109.78062868086965
Iteration: 6, Func. Count: 53, Neg. LLF: 109.84954998269036
Iteration: 7, Func. Count: 62, Neg. LLF: 109.75262277254494
Iteration: 8, Func. Count: 71, Neg. LLF: 109.52375841787176
Iteration: 9, Func. Count: 79, Neg. LLF: 109.52286898695257
Iteration: 10, Func. Count: 87, Neg. LLF: 109.52282854714407
Iteration: 11, Func. Count: 95, Neg. LLF: 109.52282224186577
Iteration: 12, Func. Count: 102, Neg. LLF: 109.5228222843989
Optimization terminated successfully (Exit mode 0)
Current function value: 109.52282224186577
Iterations: 12
Function evaluations: 102
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 115.12969852710123
Iteration: 2, Func. Count: 20, Neg. LLF: 149.5391127142093
Iteration: 3, Func. Count: 30, Neg. LLF: 113.48398614536673
Iteration: 4, Func. Count: 40, Neg. LLF: 110.04915794158535
Iteration: 5, Func. Count: 49, Neg. LLF: 109.87167656029581
Iteration: 6, Func. Count: 58, Neg. LLF: 111.77817883383318
Iteration: 7, Func. Count: 68, Neg. LLF: 109.5593295722492
Iteration: 8, Func. Count: 77, Neg. LLF: 109.53136495791775
Iteration: 9, Func. Count: 86, Neg. LLF: 109.52354902937813
Iteration: 10, Func. Count: 95, Neg. LLF: 109.52291857246641
Iteration: 11, Func. Count: 104, Neg. LLF: 109.52282264362688
Iteration: 12, Func. Count: 113, Neg. LLF: 109.52282203607729
Optimization terminated successfully (Exit mode 0)
Current function value: 109.52282203607729
Iterations: 12
Function evaluations: 113
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 115.64429638289383
Iteration: 2, Func. Count: 22, Neg. LLF: 144.35365078150937
Iteration: 3, Func. Count: 33, Neg. LLF: 112.30414637827185
Iteration: 4, Func. Count: 44, Neg. LLF: 109.83420831636963
Iteration: 5, Func. Count: 54, Neg. LLF: 109.56876136413047
Iteration: 6, Func. Count: 64, Neg. LLF: 109.84884033874752
Iteration: 7, Func. Count: 75, Neg. LLF: 109.52491658373162
Iteration: 8, Func. Count: 85, Neg. LLF: 109.52297863151338
Iteration: 9, Func. Count: 95, Neg. LLF: 109.52282298781437
Iteration: 10, Func. Count: 105, Neg. LLF: 109.52282204012704
Optimization terminated successfully (Exit mode 0)
Current function value: 109.52282204012704
Iterations: 10
Function evaluations: 105
Gradient evaluations: 10
Iteration: 1, Func. Count: 8, Neg. LLF: 114.01972833727683
Iteration: 2, Func. Count: 16, Neg. LLF: 124.35869130287104
Iteration: 3, Func. Count: 24, Neg. LLF: 308.3962345774957
Iteration: 4, Func. Count: 32, Neg. LLF: 119.39832342791863
Iteration: 5, Func. Count: 40, Neg. LLF: 111.99395095486669
Iteration: 6, Func. Count: 48, Neg. LLF: 110.49189377169894
Iteration: 7, Func. Count: 56, Neg. LLF: 109.4771922873983
Iteration: 8, Func. Count: 63, Neg. LLF: 109.47069924722089
Iteration: 9, Func. Count: 70, Neg. LLF: 109.46126576276507
Iteration: 10, Func. Count: 77, Neg. LLF: 109.46117650709678
Iteration: 11, Func. Count: 84, Neg. LLF: 109.46113520607487
Iteration: 12, Func. Count: 90, Neg. LLF: 109.46113519309361
Optimization terminated successfully (Exit mode 0)
Current function value: 109.46113520607487
Iterations: 12
Function evaluations: 90
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 118.55349649372236
Iteration: 2, Func. Count: 18, Neg. LLF: 133.7254884066764
Iteration: 3, Func. Count: 27, Neg. LLF: 115.435804753936
Iteration: 4, Func. Count: 36, Neg. LLF: 111.04067165555009
Iteration: 5, Func. Count: 45, Neg. LLF: 109.76465840668185
Iteration: 6, Func. Count: 53, Neg. LLF: 109.47135954257418
Iteration: 7, Func. Count: 61, Neg. LLF: 109.46465046720891
Iteration: 8, Func. Count: 69, Neg. LLF: 109.46129112541814
Iteration: 9, Func. Count: 77, Neg. LLF: 109.46114643315177
Iteration: 10, Func. Count: 85, Neg. LLF: 109.4611368298765
Iteration: 11, Func. Count: 93, Neg. LLF: 109.46113509098153
Iteration: 12, Func. Count: 100, Neg. LLF: 109.46113507290524
Optimization terminated successfully (Exit mode 0)
Current function value: 109.46113509098153
Iterations: 12
Function evaluations: 100
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 118.32553140192653
Iteration: 2, Func. Count: 20, Neg. LLF: 136.64868685180278
Iteration: 3, Func. Count: 30, Neg. LLF: 115.63667005073702
Iteration: 4, Func. Count: 40, Neg. LLF: 110.54147580767359
Iteration: 5, Func. Count: 50, Neg. LLF: 109.64969715634227
Iteration: 6, Func. Count: 59, Neg. LLF: 109.47170770813658
Iteration: 7, Func. Count: 68, Neg. LLF: 109.465162345351
Iteration: 8, Func. Count: 77, Neg. LLF: 109.46146995261346
Iteration: 9, Func. Count: 86, Neg. LLF: 109.46136772596782
Iteration: 10, Func. Count: 96, Neg. LLF: 109.46114002315029
Iteration: 11, Func. Count: 105, Neg. LLF: 109.46113493384846
Iteration: 12, Func. Count: 113, Neg. LLF: 109.46113496722579
Optimization terminated successfully (Exit mode 0)
Current function value: 109.46113493384846
Iterations: 12
Function evaluations: 113
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 117.70402114266669
Iteration: 2, Func. Count: 22, Neg. LLF: 150.45442040663536
Iteration: 3, Func. Count: 33, Neg. LLF: 116.67236062300428
Iteration: 4, Func. Count: 44, Neg. LLF: 110.55354340240183
Iteration: 5, Func. Count: 55, Neg. LLF: 109.76941316776492
Iteration: 6, Func. Count: 65, Neg. LLF: 109.48677967259688
Iteration: 7, Func. Count: 75, Neg. LLF: 109.46695742174518
Iteration: 8, Func. Count: 85, Neg. LLF: 109.46191650385452
Iteration: 9, Func. Count: 95, Neg. LLF: 109.46142212659501
Iteration: 10, Func. Count: 105, Neg. LLF: 109.46114856724179
Iteration: 11, Func. Count: 115, Neg. LLF: 109.46113503600046
Iteration: 12, Func. Count: 124, Neg. LLF: 109.46113506569333
Optimization terminated successfully (Exit mode 0)
Current function value: 109.46113503600046
Iterations: 12
Function evaluations: 124
Gradient evaluations: 12
Iteration: 1, Func. Count: 12, Neg. LLF: 113.28334842982659
Iteration: 2, Func. Count: 23, Neg. LLF: 127.59520723208821
Iteration: 3, Func. Count: 35, Neg. LLF: 109.7972312369598
Iteration: 4, Func. Count: 46, Neg. LLF: 119.52069968309023
Iteration: 5, Func. Count: 58, Neg. LLF: 110.02534129415776
Iteration: 6, Func. Count: 70, Neg. LLF: 109.65311728397579
Iteration: 7, Func. Count: 82, Neg. LLF: 109.46492360772517
Iteration: 8, Func. Count: 93, Neg. LLF: 109.46114195308019
Iteration: 9, Func. Count: 104, Neg. LLF: 109.46113589976699
Iteration: 10, Func. Count: 115, Neg. LLF: 109.46113494301719
Optimization terminated successfully (Exit mode 0)
Current function value: 109.46113494301719
Iterations: 10
Function evaluations: 115
Gradient evaluations: 10
Iteration: 1, Func. Count: 9, Neg. LLF: 116.04895695724123
Iteration: 2, Func. Count: 18, Neg. LLF: 157.75143703540226
Iteration: 3, Func. Count: 27, Neg. LLF: 111.29372294389293
Iteration: 4, Func. Count: 35, Neg. LLF: 110.38556212693784
Iteration: 5, Func. Count: 44, Neg. LLF: 110.09022673541217
Iteration: 6, Func. Count: 53, Neg. LLF: 109.4990845122271
Iteration: 7, Func. Count: 61, Neg. LLF: 109.47183907203299
Iteration: 8, Func. Count: 69, Neg. LLF: 109.46499281940535
Iteration: 9, Func. Count: 77, Neg. LLF: 109.46166940516258
Iteration: 10, Func. Count: 85, Neg. LLF: 109.46114218186491
Iteration: 11, Func. Count: 93, Neg. LLF: 109.46113591766286
Iteration: 12, Func. Count: 100, Neg. LLF: 109.46113594146392
Optimization terminated successfully (Exit mode 0)
Current function value: 109.46113591766286
Iterations: 12
Function evaluations: 100
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 116.71491641686275
Iteration: 2, Func. Count: 20, Neg. LLF: 135.37007835282265
Iteration: 3, Func. Count: 30, Neg. LLF: 114.69936560557709
Iteration: 4, Func. Count: 40, Neg. LLF: 110.78409534912636
Iteration: 5, Func. Count: 50, Neg. LLF: 109.67861417645595
Iteration: 6, Func. Count: 59, Neg. LLF: 109.46544647734663
Iteration: 7, Func. Count: 68, Neg. LLF: 109.46201132720759
Iteration: 8, Func. Count: 77, Neg. LLF: 109.46114505460388
Iteration: 9, Func. Count: 86, Neg. LLF: 109.46113526259944
Iteration: 10, Func. Count: 94, Neg. LLF: 109.46113524454084
Optimization terminated successfully (Exit mode 0)
Current function value: 109.46113526259944
Iterations: 10
Function evaluations: 94
Gradient evaluations: 10
Iteration: 1, Func. Count: 11, Neg. LLF: 116.90631569458372
Iteration: 2, Func. Count: 22, Neg. LLF: 140.91268868616962
Iteration: 3, Func. Count: 33, Neg. LLF: 115.34734970070312
Iteration: 4, Func. Count: 44, Neg. LLF: 110.33703131957508
Iteration: 5, Func. Count: 55, Neg. LLF: 109.63643815347034
Iteration: 6, Func. Count: 65, Neg. LLF: 109.48264330788085
Iteration: 7, Func. Count: 75, Neg. LLF: 109.46597657173665
Iteration: 8, Func. Count: 85, Neg. LLF: 109.46162222126739
Iteration: 9, Func. Count: 95, Neg. LLF: 109.46126899297902
Iteration: 10, Func. Count: 105, Neg. LLF: 109.46113655175053
Iteration: 11, Func. Count: 115, Neg. LLF: 109.46113512543248
Iteration: 12, Func. Count: 124, Neg. LLF: 109.46113515878338
Optimization terminated successfully (Exit mode 0)
Current function value: 109.46113512543248
Iterations: 12
Function evaluations: 124
Gradient evaluations: 12
Iteration: 1, Func. Count: 12, Neg. LLF: 112.05110471925009
Iteration: 2, Func. Count: 23, Neg. LLF: 138.42851248293104
Iteration: 3, Func. Count: 35, Neg. LLF: 109.7506164005977
Iteration: 4, Func. Count: 46, Neg. LLF: 128.133945719834
Iteration: 5, Func. Count: 58, Neg. LLF: 109.53912020339997
Iteration: 6, Func. Count: 69, Neg. LLF: 109.70835385974846
Iteration: 7, Func. Count: 81, Neg. LLF: 109.48350067276584
Iteration: 8, Func. Count: 92, Neg. LLF: 109.46145411290031
Iteration: 9, Func. Count: 103, Neg. LLF: 109.46117951736069
Iteration: 10, Func. Count: 114, Neg. LLF: 109.46113598561736
Iteration: 11, Func. Count: 125, Neg. LLF: 109.46113498964118
Optimization terminated successfully (Exit mode 0)
Current function value: 109.46113498964118
Iterations: 11
Function evaluations: 125
Gradient evaluations: 11
Iteration: 1, Func. Count: 13, Neg. LLF: 112.21063576780286
Iteration: 2, Func. Count: 25, Neg. LLF: 135.67891930995083
Iteration: 3, Func. Count: 38, Neg. LLF: 109.75666124339034
Iteration: 4, Func. Count: 50, Neg. LLF: 127.83985965245884
Iteration: 5, Func. Count: 63, Neg. LLF: 109.55833032032045
Iteration: 6, Func. Count: 75, Neg. LLF: 109.79172485699729
Iteration: 7, Func. Count: 88, Neg. LLF: 109.49424668082865
Iteration: 8, Func. Count: 100, Neg. LLF: 109.46162090231574
Iteration: 9, Func. Count: 112, Neg. LLF: 109.4612049930609
Iteration: 10, Func. Count: 124, Neg. LLF: 109.4611360619407
Iteration: 11, Func. Count: 136, Neg. LLF: 109.46113498355929
Iteration: 12, Func. Count: 147, Neg. LLF: 109.4611350540222
Optimization terminated successfully (Exit mode 0)
Current function value: 109.46113498355929
Iterations: 12
Function evaluations: 147
Gradient evaluations: 12
Iteration: 1, Func. Count: 6, Neg. LLF: 137.53894652647688
Iteration: 2, Func. Count: 12, Neg. LLF: 137.4352169982619
Iteration: 3, Func. Count: 18, Neg. LLF: 114.6867485777898
Iteration: 4, Func. Count: 23, Neg. LLF: 114.88117524015115
Iteration: 5, Func. Count: 29, Neg. LLF: 114.38968006686402
Iteration: 6, Func. Count: 34, Neg. LLF: 114.38662821109692
Iteration: 7, Func. Count: 39, Neg. LLF: 114.38648929748966
Iteration: 8, Func. Count: 44, Neg. LLF: 114.38648166201045
Iteration: 9, Func. Count: 48, Neg. LLF: 114.38648166197085
Optimization terminated successfully (Exit mode 0)
Current function value: 114.38648166201045
Iterations: 9
Function evaluations: 48
Gradient evaluations: 9
Iteration: 1, Func. Count: 7, Neg. LLF: 166.70420407521888
Iteration: 2, Func. Count: 16, Neg. LLF: 115.09475137614572
Iteration: 3, Func. Count: 22, Neg. LLF: 114.75759572082976
Iteration: 4, Func. Count: 28, Neg. LLF: 116.48570371208608
Iteration: 5, Func. Count: 36, Neg. LLF: 114.64615669276651
Iteration: 6, Func. Count: 42, Neg. LLF: 114.88763300779911
Iteration: 7, Func. Count: 49, Neg. LLF: 114.62851376581581
Iteration: 8, Func. Count: 55, Neg. LLF: 114.6284895825761
Iteration: 9, Func. Count: 60, Neg. LLF: 114.62848963670906
Optimization terminated successfully (Exit mode 0)
Current function value: 114.6284895825761
Iterations: 9
Function evaluations: 60
Gradient evaluations: 9
Iteration: 1, Func. Count: 8, Neg. LLF: 161.31737227934002
Iteration: 2, Func. Count: 18, Neg. LLF: 114.85443235378325
Iteration: 3, Func. Count: 25, Neg. LLF: 114.71661770279115
Iteration: 4, Func. Count: 32, Neg. LLF: 118.45155560591724
Iteration: 5, Func. Count: 40, Neg. LLF: 114.62511033362057
Iteration: 6, Func. Count: 47, Neg. LLF: 114.60237051076014
Iteration: 7, Func. Count: 54, Neg. LLF: 114.60197347435756
Iteration: 8, Func. Count: 61, Neg. LLF: 114.60197036560635
Iteration: 9, Func. Count: 67, Neg. LLF: 114.60197040264288
Optimization terminated successfully (Exit mode 0)
Current function value: 114.60197036560635
Iterations: 9
Function evaluations: 67
Gradient evaluations: 9
Iteration: 1, Func. Count: 9, Neg. LLF: 157.99569285953115
Iteration: 2, Func. Count: 20, Neg. LLF: 114.76302693740912
Iteration: 3, Func. Count: 28, Neg. LLF: 114.69846874366476
Iteration: 4, Func. Count: 36, Neg. LLF: 114.66666753095745
Iteration: 5, Func. Count: 44, Neg. LLF: 114.86327629559801
Iteration: 6, Func. Count: 53, Neg. LLF: 114.65785611108953
Iteration: 7, Func. Count: 61, Neg. LLF: 114.65745708407833
Iteration: 8, Func. Count: 69, Neg. LLF: 114.65871739807265
Iteration: 9, Func. Count: 78, Neg. LLF: 114.65704284349306
Iteration: 10, Func. Count: 87, Neg. LLF: 114.65666905776844
Iteration: 11, Func. Count: 95, Neg. LLF: 114.65666827068306
Optimization terminated successfully (Exit mode 0)
Current function value: 114.65666827068306
Iterations: 11
Function evaluations: 95
Gradient evaluations: 11
Iteration: 1, Func. Count: 10, Neg. LLF: 158.58522179052306
Iteration: 2, Func. Count: 22, Neg. LLF: 114.75195475372563
Iteration: 3, Func. Count: 31, Neg. LLF: 114.7264806416555
Iteration: 4, Func. Count: 41, Neg. LLF: 114.68383272808526
Iteration: 5, Func. Count: 51, Neg. LLF: 114.67249674897256
Iteration: 6, Func. Count: 60, Neg. LLF: 114.66156729468868
Iteration: 7, Func. Count: 69, Neg. LLF: 114.66032948341741
Iteration: 8, Func. Count: 78, Neg. LLF: 114.65757735067143
Iteration: 9, Func. Count: 87, Neg. LLF: 114.65624362482804
Iteration: 10, Func. Count: 96, Neg. LLF: 114.6548616271113
Iteration: 11, Func. Count: 105, Neg. LLF: 114.65459150661397
Iteration: 12, Func. Count: 114, Neg. LLF: 114.65439617048833
Iteration: 13, Func. Count: 123, Neg. LLF: 114.65435241655898
Iteration: 14, Func. Count: 132, Neg. LLF: 114.6543504074352
Iteration: 15, Func. Count: 140, Neg. LLF: 114.65435038302766
Optimization terminated successfully (Exit mode 0)
Current function value: 114.6543504074352
Iterations: 15
Function evaluations: 140
Gradient evaluations: 15
Iteration: 1, Func. Count: 7, Neg. LLF: 128.27571170125097
Iteration: 2, Func. Count: 14, Neg. LLF: 138.8068297076724
Iteration: 3, Func. Count: 21, Neg. LLF: 114.52785710959942
Iteration: 4, Func. Count: 27, Neg. LLF: 114.53056411398218
Iteration: 5, Func. Count: 34, Neg. LLF: 114.38813910834195
Iteration: 6, Func. Count: 40, Neg. LLF: 114.42065796356758
Iteration: 7, Func. Count: 47, Neg. LLF: 114.38120573536973
Iteration: 8, Func. Count: 53, Neg. LLF: 114.3809463639849
Iteration: 9, Func. Count: 59, Neg. LLF: 114.38094518946812
Iteration: 10, Func. Count: 64, Neg. LLF: 114.38094518945755
Optimization terminated successfully (Exit mode 0)
Current function value: 114.38094518946812
Iterations: 10
Function evaluations: 64
Gradient evaluations: 10
Iteration: 1, Func. Count: 8, Neg. LLF: 118.33975460738331
Iteration: 2, Func. Count: 16, Neg. LLF: 138.20051794212972
Iteration: 3, Func. Count: 24, Neg. LLF: 121.43587907720948
Iteration: 4, Func. Count: 32, Neg. LLF: 113.7072091603644
Iteration: 5, Func. Count: 39, Neg. LLF: 113.62834876660477
Iteration: 6, Func. Count: 46, Neg. LLF: 113.62677943515529
Iteration: 7, Func. Count: 54, Neg. LLF: 113.6077210729989
Iteration: 8, Func. Count: 61, Neg. LLF: 113.60758030529101
Iteration: 9, Func. Count: 67, Neg. LLF: 113.60758028055086
Optimization terminated successfully (Exit mode 0)
Current function value: 113.60758030529101
Iterations: 9
Function evaluations: 67
Gradient evaluations: 9
Iteration: 1, Func. Count: 9, Neg. LLF: 125.22638306122063
Iteration: 2, Func. Count: 18, Neg. LLF: 122.75115472392123
Iteration: 3, Func. Count: 27, Neg. LLF: 118.08481371229546
Iteration: 4, Func. Count: 36, Neg. LLF: 113.85473043751362
Iteration: 5, Func. Count: 44, Neg. LLF: 113.65141502434656
Iteration: 6, Func. Count: 52, Neg. LLF: 113.60989627873961
Iteration: 7, Func. Count: 60, Neg. LLF: 113.60768049241914
Iteration: 8, Func. Count: 68, Neg. LLF: 113.60758328383561
Iteration: 9, Func. Count: 76, Neg. LLF: 113.6075808189338
Iteration: 10, Func. Count: 84, Neg. LLF: 113.60758021626744
Optimization terminated successfully (Exit mode 0)
Current function value: 113.60758021626744
Iterations: 10
Function evaluations: 84
Gradient evaluations: 10
Iteration: 1, Func. Count: 10, Neg. LLF: 161.30685900541044
Iteration: 2, Func. Count: 22, Neg. LLF: 114.85904495473545
Iteration: 3, Func. Count: 31, Neg. LLF: 114.77407255472974
Iteration: 4, Func. Count: 40, Neg. LLF: 116.28669189257334
Iteration: 5, Func. Count: 50, Neg. LLF: 114.73983441032821
Iteration: 6, Func. Count: 60, Neg. LLF: 114.74776007129209
Iteration: 7, Func. Count: 70, Neg. LLF: 114.65707384689648
Iteration: 8, Func. Count: 79, Neg. LLF: 114.65636387951756
Iteration: 9, Func. Count: 88, Neg. LLF: 114.65596706435933
Iteration: 10, Func. Count: 97, Neg. LLF: 114.65448436911637
Iteration: 11, Func. Count: 106, Neg. LLF: 114.63522001529627
Iteration: 12, Func. Count: 115, Neg. LLF: 117.37908295044703
Iteration: 13, Func. Count: 126, Neg. LLF: 114.71218049778209
Iteration: 14, Func. Count: 136, Neg. LLF: 114.63422243780224
Iteration: 15, Func. Count: 145, Neg. LLF: 114.63306933665343
Iteration: 16, Func. Count: 154, Neg. LLF: 114.62989661054073
Iteration: 17, Func. Count: 163, Neg. LLF: 114.6292088201905
Iteration: 18, Func. Count: 172, Neg. LLF: 114.62849353158839
Iteration: 19, Func. Count: 181, Neg. LLF: 114.62848984117157
Iteration: 20, Func. Count: 189, Neg. LLF: 114.62848978770475
Optimization terminated successfully (Exit mode 0)
Current function value: 114.62848984117157
Iterations: 21
Function evaluations: 189
Gradient evaluations: 20
Iteration: 1, Func. Count: 11, Neg. LLF: 132.77302611972377
Iteration: 2, Func. Count: 22, Neg. LLF: 115.72146765860431
Iteration: 3, Func. Count: 33, Neg. LLF: 114.41871227903101
Iteration: 4, Func. Count: 43, Neg. LLF: 113.72793208078262
Iteration: 5, Func. Count: 53, Neg. LLF: 113.7401690493127
Iteration: 6, Func. Count: 64, Neg. LLF: 113.54541399609624
Iteration: 7, Func. Count: 74, Neg. LLF: 113.50656959427305
Iteration: 8, Func. Count: 84, Neg. LLF: 113.50602811256658
Iteration: 9, Func. Count: 94, Neg. LLF: 113.50593599878974
Iteration: 10, Func. Count: 104, Neg. LLF: 113.50592588844849
Iteration: 11, Func. Count: 114, Neg. LLF: 113.50592531300609
Optimization terminated successfully (Exit mode 0)
Current function value: 113.50592531300609
Iterations: 11
Function evaluations: 114
Gradient evaluations: 11
Iteration: 1, Func. Count: 8, Neg. LLF: 151.9372861537036
Iteration: 2, Func. Count: 17, Neg. LLF: 154.11349702557598
Iteration: 3, Func. Count: 25, Neg. LLF: 111.5101684960257
Iteration: 4, Func. Count: 32, Neg. LLF: 119.05338385447457
Iteration: 5, Func. Count: 41, Neg. LLF: 118.75154764805634
Iteration: 6, Func. Count: 52, Neg. LLF: 110.7808244136075
Iteration: 7, Func. Count: 60, Neg. LLF: 109.81577698354911
Iteration: 8, Func. Count: 67, Neg. LLF: 109.79432489063701
Iteration: 9, Func. Count: 75, Neg. LLF: 109.6815254722437
Iteration: 10, Func. Count: 82, Neg. LLF: 109.67573409476421
Iteration: 11, Func. Count: 89, Neg. LLF: 109.67367580263773
Iteration: 12, Func. Count: 96, Neg. LLF: 109.67256102712041
Iteration: 13, Func. Count: 103, Neg. LLF: 109.67254660365253
Iteration: 14, Func. Count: 109, Neg. LLF: 109.67254659711068
Optimization terminated successfully (Exit mode 0)
Current function value: 109.67254660365253
Iterations: 14
Function evaluations: 109
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 118.50502810958783
Iteration: 2, Func. Count: 18, Neg. LLF: 131.92622954418835
Iteration: 3, Func. Count: 27, Neg. LLF: 114.63459198193651
Iteration: 4, Func. Count: 36, Neg. LLF: 114.55241688052983
Iteration: 5, Func. Count: 45, Neg. LLF: 109.96060111577171
Iteration: 6, Func. Count: 54, Neg. LLF: 110.04181105183558
Iteration: 7, Func. Count: 63, Neg. LLF: 109.54164263086376
Iteration: 8, Func. Count: 71, Neg. LLF: 109.47797540417216
Iteration: 9, Func. Count: 79, Neg. LLF: 109.4759041743992
Iteration: 10, Func. Count: 87, Neg. LLF: 109.47271524749321
Iteration: 11, Func. Count: 95, Neg. LLF: 109.47265676875749
Iteration: 12, Func. Count: 103, Neg. LLF: 109.4726463715401
Iteration: 13, Func. Count: 110, Neg. LLF: 109.47264634672699
Optimization terminated successfully (Exit mode 0)
Current function value: 109.4726463715401
Iterations: 13
Function evaluations: 110
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 116.72414767045743
Iteration: 2, Func. Count: 20, Neg. LLF: 135.28506473503043
Iteration: 3, Func. Count: 30, Neg. LLF: 114.57619006505148
Iteration: 4, Func. Count: 40, Neg. LLF: 112.77998483470265
Iteration: 5, Func. Count: 50, Neg. LLF: 110.76455861682301
Iteration: 6, Func. Count: 60, Neg. LLF: 109.76788340005317
Iteration: 7, Func. Count: 69, Neg. LLF: 110.33422065644143
Iteration: 8, Func. Count: 79, Neg. LLF: 109.57474878989876
Iteration: 9, Func. Count: 89, Neg. LLF: 109.49554298908677
Iteration: 10, Func. Count: 99, Neg. LLF: 109.47313925652148
Iteration: 11, Func. Count: 108, Neg. LLF: 109.47266380996638
Iteration: 12, Func. Count: 117, Neg. LLF: 109.47264649177554
Iteration: 13, Func. Count: 125, Neg. LLF: 109.47264655019913
Optimization terminated successfully (Exit mode 0)
Current function value: 109.47264649177554
Iterations: 13
Function evaluations: 125
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 115.97710959440897
Iteration: 2, Func. Count: 22, Neg. LLF: 148.00565709304752
Iteration: 3, Func. Count: 33, Neg. LLF: 113.94299848142522
Iteration: 4, Func. Count: 44, Neg. LLF: 114.2471529858373
Iteration: 5, Func. Count: 55, Neg. LLF: 110.09363396196972
Iteration: 6, Func. Count: 65, Neg. LLF: 109.57813377118903
Iteration: 7, Func. Count: 75, Neg. LLF: 109.8792532615154
Iteration: 8, Func. Count: 86, Neg. LLF: 109.47555802336886
Iteration: 9, Func. Count: 96, Neg. LLF: 109.47304617067012
Iteration: 10, Func. Count: 106, Neg. LLF: 109.47304504848543
Iteration: 11, Func. Count: 117, Neg. LLF: 109.4726475475125
Iteration: 12, Func. Count: 127, Neg. LLF: 109.47264638926062
Iteration: 13, Func. Count: 136, Neg. LLF: 109.47264642864857
Optimization terminated successfully (Exit mode 0)
Current function value: 109.47264638926062
Iterations: 13
Function evaluations: 136
Gradient evaluations: 13
Iteration: 1, Func. Count: 12, Neg. LLF: 116.60885046050264
Iteration: 2, Func. Count: 24, Neg. LLF: 143.19494213738773
Iteration: 3, Func. Count: 36, Neg. LLF: 112.66798864032607
Iteration: 4, Func. Count: 48, Neg. LLF: 113.89955428177859
Iteration: 5, Func. Count: 60, Neg. LLF: 109.7591615924505
Iteration: 6, Func. Count: 71, Neg. LLF: 109.65369316142285
Iteration: 7, Func. Count: 82, Neg. LLF: 109.73215568329627
Iteration: 8, Func. Count: 94, Neg. LLF: 109.69230419781455
Iteration: 9, Func. Count: 106, Neg. LLF: 109.47604009620507
Iteration: 10, Func. Count: 117, Neg. LLF: 109.47347077029822
Iteration: 11, Func. Count: 128, Neg. LLF: 109.47266046079058
Iteration: 12, Func. Count: 139, Neg. LLF: 109.4726465368992
Iteration: 13, Func. Count: 149, Neg. LLF: 109.47264660542845
Optimization terminated successfully (Exit mode 0)
Current function value: 109.4726465368992
Iterations: 13
Function evaluations: 149
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 155.39918349582305
Iteration: 2, Func. Count: 19, Neg. LLF: 159.08263547206604
Iteration: 3, Func. Count: 28, Neg. LLF: 111.76026824516723
Iteration: 4, Func. Count: 36, Neg. LLF: 122.49185966149871
Iteration: 5, Func. Count: 46, Neg. LLF: 118.92706860055861
Iteration: 6, Func. Count: 57, Neg. LLF: 111.30153219313532
Iteration: 7, Func. Count: 66, Neg. LLF: 109.49524470384566
Iteration: 8, Func. Count: 74, Neg. LLF: 109.45096707039309
Iteration: 9, Func. Count: 82, Neg. LLF: 109.367909358619
Iteration: 10, Func. Count: 90, Neg. LLF: 109.35352891045255
Iteration: 11, Func. Count: 98, Neg. LLF: 109.34554129126688
Iteration: 12, Func. Count: 106, Neg. LLF: 109.34498779978317
Iteration: 13, Func. Count: 114, Neg. LLF: 109.34493882460612
Iteration: 14, Func. Count: 122, Neg. LLF: 109.34493257116571
Iteration: 15, Func. Count: 130, Neg. LLF: 109.3449287695822
Iteration: 16, Func. Count: 137, Neg. LLF: 109.34492875595018
Optimization terminated successfully (Exit mode 0)
Current function value: 109.3449287695822
Iterations: 16
Function evaluations: 137
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 119.31060058912952
Iteration: 2, Func. Count: 20, Neg. LLF: 133.21646724032357
Iteration: 3, Func. Count: 30, Neg. LLF: 116.2570875221814
Iteration: 4, Func. Count: 40, Neg. LLF: 115.58681377452939
Iteration: 5, Func. Count: 50, Neg. LLF: 109.99637807591452
Iteration: 6, Func. Count: 60, Neg. LLF: 109.56050736196336
Iteration: 7, Func. Count: 69, Neg. LLF: 109.36296002312397
Iteration: 8, Func. Count: 78, Neg. LLF: 109.38000624923976
Iteration: 9, Func. Count: 88, Neg. LLF: 109.34659431746685
Iteration: 10, Func. Count: 97, Neg. LLF: 109.34494451650987
Iteration: 11, Func. Count: 106, Neg. LLF: 109.34493052269596
Iteration: 12, Func. Count: 115, Neg. LLF: 109.3449286754923
Iteration: 13, Func. Count: 123, Neg. LLF: 109.34492866538062
Optimization terminated successfully (Exit mode 0)
Current function value: 109.3449286754923
Iterations: 13
Function evaluations: 123
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 118.8549756701603
Iteration: 2, Func. Count: 22, Neg. LLF: 136.08840701741352
Iteration: 3, Func. Count: 33, Neg. LLF: 115.8829145263997
Iteration: 4, Func. Count: 44, Neg. LLF: 113.04323312606407
Iteration: 5, Func. Count: 55, Neg. LLF: 110.59346504013324
Iteration: 6, Func. Count: 66, Neg. LLF: 109.71952381438156
Iteration: 7, Func. Count: 76, Neg. LLF: 109.5388714313706
Iteration: 8, Func. Count: 86, Neg. LLF: 109.38240894792763
Iteration: 9, Func. Count: 96, Neg. LLF: 109.35700460209286
Iteration: 10, Func. Count: 106, Neg. LLF: 109.3461207953673
Iteration: 11, Func. Count: 116, Neg. LLF: 109.3450069485526
Iteration: 12, Func. Count: 126, Neg. LLF: 109.34494687444035
Iteration: 13, Func. Count: 136, Neg. LLF: 109.34492898731719
Iteration: 14, Func. Count: 145, Neg. LLF: 109.34492903972136
Optimization terminated successfully (Exit mode 0)
Current function value: 109.34492898731719
Iterations: 14
Function evaluations: 145
Gradient evaluations: 14
Iteration: 1, Func. Count: 12, Neg. LLF: 118.81067458173645
Iteration: 2, Func. Count: 24, Neg. LLF: 149.1595696527325
Iteration: 3, Func. Count: 36, Neg. LLF: 117.224554797234
Iteration: 4, Func. Count: 48, Neg. LLF: 114.86921587870265
Iteration: 5, Func. Count: 60, Neg. LLF: 111.08495154471188
Iteration: 6, Func. Count: 72, Neg. LLF: 109.38729948003298
Iteration: 7, Func. Count: 83, Neg. LLF: 109.40195680764862
Iteration: 8, Func. Count: 95, Neg. LLF: 109.40726274244044
Iteration: 9, Func. Count: 107, Neg. LLF: 109.34743239647803
Iteration: 10, Func. Count: 118, Neg. LLF: 109.3451672653928
Iteration: 11, Func. Count: 129, Neg. LLF: 109.34495271692356
Iteration: 12, Func. Count: 140, Neg. LLF: 109.34492904312677
Iteration: 13, Func. Count: 150, Neg. LLF: 109.34492908014852
Optimization terminated successfully (Exit mode 0)
Current function value: 109.34492904312677
Iterations: 13
Function evaluations: 150
Gradient evaluations: 13
Iteration: 1, Func. Count: 13, Neg. LLF: 114.12008724490168
Iteration: 2, Func. Count: 26, Neg. LLF: 151.4249294275431
Iteration: 3, Func. Count: 39, Neg. LLF: 111.76683241541551
Iteration: 4, Func. Count: 52, Neg. LLF: 153.2259956338088
Iteration: 5, Func. Count: 65, Neg. LLF: 111.19711418015875
Iteration: 6, Func. Count: 78, Neg. LLF: 109.45175215140145
Iteration: 7, Func. Count: 90, Neg. LLF: 109.69570383986668
Iteration: 8, Func. Count: 103, Neg. LLF: 109.35066095778878
Iteration: 9, Func. Count: 115, Neg. LLF: 109.34586670854956
Iteration: 10, Func. Count: 127, Neg. LLF: 109.34797135119359
Iteration: 11, Func. Count: 140, Neg. LLF: 109.34493315220844
Iteration: 12, Func. Count: 152, Neg. LLF: 109.34492869495465
Iteration: 13, Func. Count: 163, Neg. LLF: 109.34492877365287
Optimization terminated successfully (Exit mode 0)
Current function value: 109.34492869495465
Iterations: 13
Function evaluations: 163
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 150.76028029940167
Iteration: 2, Func. Count: 21, Neg. LLF: 175.4326257625973
Iteration: 3, Func. Count: 31, Neg. LLF: 112.00444494202591
Iteration: 4, Func. Count: 40, Neg. LLF: 126.20217790637652
Iteration: 5, Func. Count: 51, Neg. LLF: 119.20818205027636
Iteration: 6, Func. Count: 63, Neg. LLF: 111.21032609669942
Iteration: 7, Func. Count: 73, Neg. LLF: 109.47893199390178
Iteration: 8, Func. Count: 82, Neg. LLF: 109.41587800857938
Iteration: 9, Func. Count: 91, Neg. LLF: 109.36354852037236
Iteration: 10, Func. Count: 100, Neg. LLF: 109.35225110693641
Iteration: 11, Func. Count: 109, Neg. LLF: 109.34544577240415
Iteration: 12, Func. Count: 118, Neg. LLF: 109.34502630676724
Iteration: 13, Func. Count: 127, Neg. LLF: 109.34495219683745
Iteration: 14, Func. Count: 136, Neg. LLF: 109.3449357317204
Iteration: 15, Func. Count: 145, Neg. LLF: 109.3449289130472
Iteration: 16, Func. Count: 153, Neg. LLF: 109.3449289484454
Optimization terminated successfully (Exit mode 0)
Current function value: 109.3449289130472
Iterations: 16
Function evaluations: 153
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 117.36528256718653
Iteration: 2, Func. Count: 22, Neg. LLF: 134.56584408857574
Iteration: 3, Func. Count: 33, Neg. LLF: 115.34813790575633
Iteration: 4, Func. Count: 44, Neg. LLF: 114.4343005452352
Iteration: 5, Func. Count: 55, Neg. LLF: 110.15726104886984
Iteration: 6, Func. Count: 66, Neg. LLF: 109.43749715620713
Iteration: 7, Func. Count: 76, Neg. LLF: 109.39151100992686
Iteration: 8, Func. Count: 86, Neg. LLF: 109.5325744928652
Iteration: 9, Func. Count: 97, Neg. LLF: 109.34535173458782
Iteration: 10, Func. Count: 107, Neg. LLF: 109.34515204694695
Iteration: 11, Func. Count: 117, Neg. LLF: 109.34492916995828
Iteration: 12, Func. Count: 127, Neg. LLF: 109.34492872498
Optimization terminated successfully (Exit mode 0)
Current function value: 109.34492872498
Iterations: 12
Function evaluations: 127
Gradient evaluations: 12
Iteration: 1, Func. Count: 12, Neg. LLF: 117.35942310025649
Iteration: 2, Func. Count: 24, Neg. LLF: 139.91351536222805
Iteration: 3, Func. Count: 36, Neg. LLF: 115.54329448247955
Iteration: 4, Func. Count: 48, Neg. LLF: 111.20600579601611
Iteration: 5, Func. Count: 60, Neg. LLF: 109.99558661247771
Iteration: 6, Func. Count: 71, Neg. LLF: 109.4925612397707
Iteration: 7, Func. Count: 82, Neg. LLF: 110.37940429605723
Iteration: 8, Func. Count: 94, Neg. LLF: 109.36599961702224
Iteration: 9, Func. Count: 105, Neg. LLF: 109.36399821610016
Iteration: 10, Func. Count: 117, Neg. LLF: 109.34524401093776
Iteration: 11, Func. Count: 128, Neg. LLF: 109.34493775973783
Iteration: 12, Func. Count: 139, Neg. LLF: 109.34493282202173
Iteration: 13, Func. Count: 150, Neg. LLF: 109.34492870435467
Iteration: 14, Func. Count: 160, Neg. LLF: 109.34492875674029
Optimization terminated successfully (Exit mode 0)
Current function value: 109.34492870435467
Iterations: 14
Function evaluations: 160
Gradient evaluations: 14
Iteration: 1, Func. Count: 13, Neg. LLF: 112.65633680772767
Iteration: 2, Func. Count: 25, Neg. LLF: 134.12339339823194
Iteration: 3, Func. Count: 38, Neg. LLF: 109.75144902838609
Iteration: 4, Func. Count: 50, Neg. LLF: 182.6961869825977
Iteration: 5, Func. Count: 65, Neg. LLF: 127.49994551842106
Iteration: 6, Func. Count: 78, Neg. LLF: 109.47834874049249
Iteration: 7, Func. Count: 90, Neg. LLF: 109.64121299285804
Iteration: 8, Func. Count: 103, Neg. LLF: 109.42948710123909
Iteration: 9, Func. Count: 116, Neg. LLF: 109.34501257540019
Iteration: 10, Func. Count: 128, Neg. LLF: 109.34495356241699
Iteration: 11, Func. Count: 140, Neg. LLF: 109.34492875795546
Iteration: 12, Func. Count: 151, Neg. LLF: 109.3449287950378
Optimization terminated successfully (Exit mode 0)
Current function value: 109.34492875795546
Iterations: 12
Function evaluations: 151
Gradient evaluations: 12
Iteration: 1, Func. Count: 14, Neg. LLF: 112.87283806051408
Iteration: 2, Func. Count: 27, Neg. LLF: 131.64059642842454
Iteration: 3, Func. Count: 41, Neg. LLF: 109.7676018721237
Iteration: 4, Func. Count: 54, Neg. LLF: 135.40124084715848
Iteration: 5, Func. Count: 69, Neg. LLF: 128.8286233527587
Iteration: 6, Func. Count: 83, Neg. LLF: 109.48736534838557
Iteration: 7, Func. Count: 96, Neg. LLF: 109.60497527029965
Iteration: 8, Func. Count: 110, Neg. LLF: 109.57056473283099
Iteration: 9, Func. Count: 124, Neg. LLF: 109.34699539490299
Iteration: 10, Func. Count: 138, Neg. LLF: 109.34497257309707
Iteration: 11, Func. Count: 151, Neg. LLF: 109.34492949554749
Iteration: 12, Func. Count: 164, Neg. LLF: 109.34492876654444
Optimization terminated successfully (Exit mode 0)
Current function value: 109.34492876654444
Iterations: 12
Function evaluations: 164
Gradient evaluations: 12
Iteration: 1, Func. Count: 7, Neg. LLF: 153.3157518204675
Iteration: 2, Func. Count: 15, Neg. LLF: 136.80454082948708
Iteration: 3, Func. Count: 22, Neg. LLF: 115.169943042521
Iteration: 4, Func. Count: 28, Neg. LLF: 114.5024924274911
Iteration: 5, Func. Count: 34, Neg. LLF: 114.39553369582622
Iteration: 6, Func. Count: 40, Neg. LLF: 114.38667443184869
Iteration: 7, Func. Count: 46, Neg. LLF: 114.38648247843469
Iteration: 8, Func. Count: 52, Neg. LLF: 114.38648143609478
Iteration: 9, Func. Count: 57, Neg. LLF: 114.3864815338416
Optimization terminated successfully (Exit mode 0)
Current function value: 114.38648143609478
Iterations: 9
Function evaluations: 57
Gradient evaluations: 9
Iteration: 1, Func. Count: 8, Neg. LLF: 167.02014286850456
Iteration: 2, Func. Count: 18, Neg. LLF: 115.09850628331773
Iteration: 3, Func. Count: 25, Neg. LLF: 114.73059083341458
Iteration: 4, Func. Count: 32, Neg. LLF: 115.34230721307455
Iteration: 5, Func. Count: 41, Neg. LLF: 114.6292709337294
Iteration: 6, Func. Count: 48, Neg. LLF: 114.63315998283954
Iteration: 7, Func. Count: 56, Neg. LLF: 114.62854170774641
Iteration: 8, Func. Count: 63, Neg. LLF: 114.62848963616253
Iteration: 9, Func. Count: 69, Neg. LLF: 114.62848968974336
Optimization terminated successfully (Exit mode 0)
Current function value: 114.62848963616253
Iterations: 9
Function evaluations: 69
Gradient evaluations: 9
Iteration: 1, Func. Count: 9, Neg. LLF: 161.83446846860548
Iteration: 2, Func. Count: 20, Neg. LLF: 114.85686377959917
Iteration: 3, Func. Count: 28, Neg. LLF: 114.76649435450355
Iteration: 4, Func. Count: 36, Neg. LLF: 119.7944167579136
Iteration: 5, Func. Count: 45, Neg. LLF: 114.66090527494656
Iteration: 6, Func. Count: 53, Neg. LLF: 114.60211391859299
Iteration: 7, Func. Count: 61, Neg. LLF: 114.6019722628958
Iteration: 8, Func. Count: 69, Neg. LLF: 114.60197036565492
Iteration: 9, Func. Count: 76, Neg. LLF: 114.6019704026401
Optimization terminated successfully (Exit mode 0)
Current function value: 114.60197036565492
Iterations: 9
Function evaluations: 76
Gradient evaluations: 9
Iteration: 1, Func. Count: 10, Neg. LLF: 159.13589410694692
Iteration: 2, Func. Count: 22, Neg. LLF: 114.7692938890094
Iteration: 3, Func. Count: 31, Neg. LLF: 114.70141081271369
Iteration: 4, Func. Count: 40, Neg. LLF: 114.67937431569499
Iteration: 5, Func. Count: 49, Neg. LLF: 114.74260401776007
Iteration: 6, Func. Count: 59, Neg. LLF: 114.65740563415594
Iteration: 7, Func. Count: 68, Neg. LLF: 114.65704090688723
Iteration: 8, Func. Count: 77, Neg. LLF: 114.65814640781173
Iteration: 9, Func. Count: 87, Neg. LLF: 114.65668683658032
Iteration: 10, Func. Count: 96, Neg. LLF: 114.65666899519319
Iteration: 11, Func. Count: 105, Neg. LLF: 114.65666825087283
Optimization terminated successfully (Exit mode 0)
Current function value: 114.65666825087283
Iterations: 11
Function evaluations: 105
Gradient evaluations: 11
Iteration: 1, Func. Count: 11, Neg. LLF: 159.2963930878541
Iteration: 2, Func. Count: 24, Neg. LLF: 114.75292539930997
Iteration: 3, Func. Count: 34, Neg. LLF: 114.74054020494569
Iteration: 4, Func. Count: 45, Neg. LLF: 114.68673416855489
Iteration: 5, Func. Count: 56, Neg. LLF: 114.67607668550133
Iteration: 6, Func. Count: 66, Neg. LLF: 114.66337246385166
Iteration: 7, Func. Count: 76, Neg. LLF: 114.6620446134433
Iteration: 8, Func. Count: 86, Neg. LLF: 114.66084954290841
Iteration: 9, Func. Count: 96, Neg. LLF: 114.65758904576789
Iteration: 10, Func. Count: 106, Neg. LLF: 114.65544992767792
Iteration: 11, Func. Count: 116, Neg. LLF: 114.65532410447823
Iteration: 12, Func. Count: 126, Neg. LLF: 114.65521238711135
Iteration: 13, Func. Count: 136, Neg. LLF: 114.65441032065895
Iteration: 14, Func. Count: 146, Neg. LLF: 114.65437652931983
Iteration: 15, Func. Count: 156, Neg. LLF: 114.65435151596338
Iteration: 16, Func. Count: 166, Neg. LLF: 114.65435040434421
Iteration: 17, Func. Count: 175, Neg. LLF: 114.65435038048716
Optimization terminated successfully (Exit mode 0)
Current function value: 114.65435040434421
Iterations: 17
Function evaluations: 175
Gradient evaluations: 17
Iteration: 1, Func. Count: 8, Neg. LLF: 143.6601898444218
Iteration: 2, Func. Count: 16, Neg. LLF: 136.94350200873953
Iteration: 3, Func. Count: 24, Neg. LLF: 114.62323670721432
Iteration: 4, Func. Count: 31, Neg. LLF: 114.7502512277669
Iteration: 5, Func. Count: 39, Neg. LLF: 114.41112842876122
Iteration: 6, Func. Count: 46, Neg. LLF: 114.41790701031923
Iteration: 7, Func. Count: 54, Neg. LLF: 114.38446792762292
Iteration: 8, Func. Count: 61, Neg. LLF: 114.38101598424683
Iteration: 9, Func. Count: 68, Neg. LLF: 114.38095479735313
Iteration: 10, Func. Count: 75, Neg. LLF: 114.38094503178093
Iteration: 11, Func. Count: 81, Neg. LLF: 114.3809450317928
Optimization terminated successfully (Exit mode 0)
Current function value: 114.38094503178093
Iterations: 11
Function evaluations: 81
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 118.14408167430037
Iteration: 2, Func. Count: 18, Neg. LLF: 138.35609393490643
Iteration: 3, Func. Count: 27, Neg. LLF: 121.35961260308531
Iteration: 4, Func. Count: 36, Neg. LLF: 113.70850094539031
Iteration: 5, Func. Count: 44, Neg. LLF: 113.62592428446028
Iteration: 6, Func. Count: 52, Neg. LLF: 113.62874232937772
Iteration: 7, Func. Count: 61, Neg. LLF: 113.6077257073962
Iteration: 8, Func. Count: 69, Neg. LLF: 113.60758031077879
Iteration: 9, Func. Count: 76, Neg. LLF: 113.60758028600256
Optimization terminated successfully (Exit mode 0)
Current function value: 113.60758031077879
Iterations: 9
Function evaluations: 76
Gradient evaluations: 9
Iteration: 1, Func. Count: 10, Neg. LLF: 126.0922203518145
Iteration: 2, Func. Count: 20, Neg. LLF: 121.80386432011245
Iteration: 3, Func. Count: 30, Neg. LLF: 117.92067079024079
Iteration: 4, Func. Count: 40, Neg. LLF: 113.8351195650142
Iteration: 5, Func. Count: 49, Neg. LLF: 113.66549965314245
Iteration: 6, Func. Count: 58, Neg. LLF: 113.6108292410093
Iteration: 7, Func. Count: 67, Neg. LLF: 113.60779404437959
Iteration: 8, Func. Count: 76, Neg. LLF: 113.60760028755641
Iteration: 9, Func. Count: 85, Neg. LLF: 113.60758187022162
Iteration: 10, Func. Count: 94, Neg. LLF: 113.60758031914743
Iteration: 11, Func. Count: 102, Neg. LLF: 113.60758034449739
Optimization terminated successfully (Exit mode 0)
Current function value: 113.60758031914743
Iterations: 11
Function evaluations: 102
Gradient evaluations: 11
Iteration: 1, Func. Count: 11, Neg. LLF: 162.52360542082624
Iteration: 2, Func. Count: 24, Neg. LLF: 114.86773035277209
Iteration: 3, Func. Count: 34, Neg. LLF: 114.92153979943757
Iteration: 4, Func. Count: 45, Neg. LLF: 117.19300903436567
Iteration: 5, Func. Count: 56, Neg. LLF: 114.6568780443054
Iteration: 6, Func. Count: 66, Neg. LLF: 114.65648641779117
Iteration: 7, Func. Count: 76, Neg. LLF: 114.65597724682598
Iteration: 8, Func. Count: 86, Neg. LLF: 114.65563924132402
Iteration: 9, Func. Count: 96, Neg. LLF: 114.65555841034758
Iteration: 10, Func. Count: 106, Neg. LLF: 114.65552724335012
Iteration: 11, Func. Count: 116, Neg. LLF: 114.6550327849532
Iteration: 12, Func. Count: 126, Neg. LLF: 114.65543147970858
Iteration: 13, Func. Count: 137, Neg. LLF: 114.65438141246345
Iteration: 14, Func. Count: 147, Neg. LLF: 114.65437383674936
Iteration: 15, Func. Count: 158, Neg. LLF: 114.65435131313079
Iteration: 16, Func. Count: 168, Neg. LLF: 114.65435039031422
Optimization terminated successfully (Exit mode 0)
Current function value: 114.65435039031422
Iterations: 16
Function evaluations: 168
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 133.1367968116684
Iteration: 2, Func. Count: 24, Neg. LLF: 115.44329473780991
Iteration: 3, Func. Count: 36, Neg. LLF: 114.32610656081474
Iteration: 4, Func. Count: 47, Neg. LLF: 114.0255904535132
Iteration: 5, Func. Count: 58, Neg. LLF: 113.59290801134514
Iteration: 6, Func. Count: 69, Neg. LLF: 113.51920630048434
Iteration: 7, Func. Count: 80, Neg. LLF: 113.50647483025338
Iteration: 8, Func. Count: 91, Neg. LLF: 113.50607822658128
Iteration: 9, Func. Count: 102, Neg. LLF: 113.50592562106458
Iteration: 10, Func. Count: 112, Neg. LLF: 113.50592558822628
Optimization terminated successfully (Exit mode 0)
Current function value: 113.50592562106458
Iterations: 10
Function evaluations: 112
Gradient evaluations: 10
Iteration: 1, Func. Count: 9, Neg. LLF: 167.52225530458023
Iteration: 2, Func. Count: 19, Neg. LLF: 150.3896364887986
Iteration: 3, Func. Count: 28, Neg. LLF: 111.77928585934737
Iteration: 4, Func. Count: 36, Neg. LLF: 130.03253134691846
Iteration: 5, Func. Count: 46, Neg. LLF: 119.4537645759943
Iteration: 6, Func. Count: 58, Neg. LLF: 110.6498323917823
Iteration: 7, Func. Count: 66, Neg. LLF: 110.04508956634905
Iteration: 8, Func. Count: 74, Neg. LLF: 110.01619580096727
Iteration: 9, Func. Count: 83, Neg. LLF: 109.6764459703124
Iteration: 10, Func. Count: 91, Neg. LLF: 109.67371284792426
Iteration: 11, Func. Count: 99, Neg. LLF: 109.67320736906828
Iteration: 12, Func. Count: 107, Neg. LLF: 109.67255541499432
Iteration: 13, Func. Count: 115, Neg. LLF: 109.67254663201514
Iteration: 14, Func. Count: 122, Neg. LLF: 109.67254662547138
Optimization terminated successfully (Exit mode 0)
Current function value: 109.67254663201514
Iterations: 14
Function evaluations: 122
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 118.04322629807251
Iteration: 2, Func. Count: 20, Neg. LLF: 132.12579640163952
Iteration: 3, Func. Count: 30, Neg. LLF: 114.19769792762081
Iteration: 4, Func. Count: 40, Neg. LLF: 114.63364764530873
Iteration: 5, Func. Count: 50, Neg. LLF: 109.91864784865945
Iteration: 6, Func. Count: 60, Neg. LLF: 110.01008782771743
Iteration: 7, Func. Count: 70, Neg. LLF: 109.52511019897801
Iteration: 8, Func. Count: 79, Neg. LLF: 109.47720590072005
Iteration: 9, Func. Count: 88, Neg. LLF: 109.47529118219413
Iteration: 10, Func. Count: 97, Neg. LLF: 109.47269728102654
Iteration: 11, Func. Count: 106, Neg. LLF: 109.47265796497503
Iteration: 12, Func. Count: 115, Neg. LLF: 109.47264637456942
Iteration: 13, Func. Count: 123, Neg. LLF: 109.47264634976122
Optimization terminated successfully (Exit mode 0)
Current function value: 109.47264637456942
Iterations: 13
Function evaluations: 123
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 116.91071047890992
Iteration: 2, Func. Count: 22, Neg. LLF: 135.3221900257526
Iteration: 3, Func. Count: 33, Neg. LLF: 114.73322545551116
Iteration: 4, Func. Count: 44, Neg. LLF: 113.01579128118685
Iteration: 5, Func. Count: 55, Neg. LLF: 110.79092351538326
Iteration: 6, Func. Count: 66, Neg. LLF: 109.71609422671884
Iteration: 7, Func. Count: 76, Neg. LLF: 110.51557678721358
Iteration: 8, Func. Count: 87, Neg. LLF: 109.57225328616393
Iteration: 9, Func. Count: 98, Neg. LLF: 109.48785677304653
Iteration: 10, Func. Count: 108, Neg. LLF: 109.47313341674332
Iteration: 11, Func. Count: 118, Neg. LLF: 109.47266552678276
Iteration: 12, Func. Count: 128, Neg. LLF: 109.47264659885546
Iteration: 13, Func. Count: 137, Neg. LLF: 109.4726466572509
Optimization terminated successfully (Exit mode 0)
Current function value: 109.47264659885546
Iterations: 13
Function evaluations: 137
Gradient evaluations: 13
Iteration: 1, Func. Count: 12, Neg. LLF: 116.41231518215768
Iteration: 2, Func. Count: 24, Neg. LLF: 147.66279183376346
Iteration: 3, Func. Count: 36, Neg. LLF: 114.3015458587575
Iteration: 4, Func. Count: 48, Neg. LLF: 114.66640523065563
Iteration: 5, Func. Count: 60, Neg. LLF: 110.18175381334134
Iteration: 6, Func. Count: 71, Neg. LLF: 109.50051609612598
Iteration: 7, Func. Count: 82, Neg. LLF: 109.99706846128134
Iteration: 8, Func. Count: 94, Neg. LLF: 109.4821263366977
Iteration: 9, Func. Count: 105, Neg. LLF: 109.47445860950444
Iteration: 10, Func. Count: 116, Neg. LLF: 109.4732819647376
Iteration: 11, Func. Count: 127, Neg. LLF: 109.47264880036975
Iteration: 12, Func. Count: 138, Neg. LLF: 109.47264651027501
Iteration: 13, Func. Count: 148, Neg. LLF: 109.47264654965743
Optimization terminated successfully (Exit mode 0)
Current function value: 109.47264651027501
Iterations: 13
Function evaluations: 148
Gradient evaluations: 13
Iteration: 1, Func. Count: 13, Neg. LLF: 116.99091771075744
Iteration: 2, Func. Count: 26, Neg. LLF: 143.1323239484865
Iteration: 3, Func. Count: 39, Neg. LLF: 112.86251622642905
Iteration: 4, Func. Count: 52, Neg. LLF: 114.28316647546463
Iteration: 5, Func. Count: 65, Neg. LLF: 109.773411062228
Iteration: 6, Func. Count: 77, Neg. LLF: 109.62189655754243
Iteration: 7, Func. Count: 89, Neg. LLF: 111.43709298349397
Iteration: 8, Func. Count: 102, Neg. LLF: 109.47283270227648
Iteration: 9, Func. Count: 114, Neg. LLF: 109.47319882638136
Iteration: 10, Func. Count: 127, Neg. LLF: 109.47280082291063
Iteration: 11, Func. Count: 140, Neg. LLF: 109.47264653796098
Iteration: 12, Func. Count: 151, Neg. LLF: 109.47264660646798
Optimization terminated successfully (Exit mode 0)
Current function value: 109.47264653796098
Iterations: 12
Function evaluations: 151
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 170.0065684454476
Iteration: 2, Func. Count: 21, Neg. LLF: 156.48542163536064
Iteration: 3, Func. Count: 31, Neg. LLF: 112.07388633547788
Iteration: 4, Func. Count: 40, Neg. LLF: 156.16397226482547
Iteration: 5, Func. Count: 50, Neg. LLF: 119.51377996056142
Iteration: 6, Func. Count: 63, Neg. LLF: 112.27580503459097
Iteration: 7, Func. Count: 73, Neg. LLF: 109.90932259348942
Iteration: 8, Func. Count: 82, Neg. LLF: 109.56180325449169
Iteration: 9, Func. Count: 91, Neg. LLF: 109.41199778609719
Iteration: 10, Func. Count: 100, Neg. LLF: 109.36611409071786
Iteration: 11, Func. Count: 109, Neg. LLF: 109.35205018180778
Iteration: 12, Func. Count: 118, Neg. LLF: 109.34595036271074
Iteration: 13, Func. Count: 127, Neg. LLF: 109.3452749449909
Iteration: 14, Func. Count: 136, Neg. LLF: 109.34504499258871
Iteration: 15, Func. Count: 145, Neg. LLF: 109.3449406587029
Iteration: 16, Func. Count: 154, Neg. LLF: 109.34492921318021
Iteration: 17, Func. Count: 163, Neg. LLF: 109.34492866874353
Optimization terminated successfully (Exit mode 0)
Current function value: 109.34492866874353
Iterations: 17
Function evaluations: 163
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 118.8946892309566
Iteration: 2, Func. Count: 22, Neg. LLF: 133.57893470129292
Iteration: 3, Func. Count: 33, Neg. LLF: 115.76282811000621
Iteration: 4, Func. Count: 44, Neg. LLF: 115.89966623322628
Iteration: 5, Func. Count: 55, Neg. LLF: 109.90643898498074
Iteration: 6, Func. Count: 66, Neg. LLF: 109.6031747035213
Iteration: 7, Func. Count: 76, Neg. LLF: 109.35390486748463
Iteration: 8, Func. Count: 86, Neg. LLF: 109.34869044253821
Iteration: 9, Func. Count: 96, Neg. LLF: 109.34523124255986
Iteration: 10, Func. Count: 106, Neg. LLF: 109.34535978253687
Iteration: 11, Func. Count: 117, Neg. LLF: 109.34492945381437
Iteration: 12, Func. Count: 127, Neg. LLF: 109.344928677845
Optimization terminated successfully (Exit mode 0)
Current function value: 109.344928677845
Iterations: 12
Function evaluations: 127
Gradient evaluations: 12
Iteration: 1, Func. Count: 12, Neg. LLF: 119.09308055387874
Iteration: 2, Func. Count: 24, Neg. LLF: 136.21327194258038
Iteration: 3, Func. Count: 36, Neg. LLF: 115.96106568220122
Iteration: 4, Func. Count: 48, Neg. LLF: 113.32637294339196
Iteration: 5, Func. Count: 60, Neg. LLF: 110.64372395770094
Iteration: 6, Func. Count: 72, Neg. LLF: 109.68517225544338
Iteration: 7, Func. Count: 83, Neg. LLF: 109.51967905916926
Iteration: 8, Func. Count: 94, Neg. LLF: 109.37886013481248
Iteration: 9, Func. Count: 105, Neg. LLF: 109.35586546785487
Iteration: 10, Func. Count: 116, Neg. LLF: 109.34572101959753
Iteration: 11, Func. Count: 127, Neg. LLF: 109.34498427351481
Iteration: 12, Func. Count: 138, Neg. LLF: 109.34493943969164
Iteration: 13, Func. Count: 149, Neg. LLF: 109.34492893567852
Iteration: 14, Func. Count: 159, Neg. LLF: 109.34492898807814
Optimization terminated successfully (Exit mode 0)
Current function value: 109.34492893567852
Iterations: 14
Function evaluations: 159
Gradient evaluations: 14
Iteration: 1, Func. Count: 13, Neg. LLF: 119.34273220084498
Iteration: 2, Func. Count: 26, Neg. LLF: 149.08503234396824
Iteration: 3, Func. Count: 39, Neg. LLF: 117.54823981379633
Iteration: 4, Func. Count: 52, Neg. LLF: 115.23159313468561
Iteration: 5, Func. Count: 65, Neg. LLF: 111.1157704341678
Iteration: 6, Func. Count: 78, Neg. LLF: 109.38734364507958
Iteration: 7, Func. Count: 90, Neg. LLF: 109.42122684855164
Iteration: 8, Func. Count: 103, Neg. LLF: 109.40189298005767
Iteration: 9, Func. Count: 116, Neg. LLF: 109.34696683396665
Iteration: 10, Func. Count: 128, Neg. LLF: 109.3451330528778
Iteration: 11, Func. Count: 140, Neg. LLF: 109.34494113672775
Iteration: 12, Func. Count: 152, Neg. LLF: 109.3449287904577
Iteration: 13, Func. Count: 163, Neg. LLF: 109.34492882749664
Optimization terminated successfully (Exit mode 0)
Current function value: 109.3449287904577
Iterations: 13
Function evaluations: 163
Gradient evaluations: 13
Iteration: 1, Func. Count: 14, Neg. LLF: 114.41968697476149
Iteration: 2, Func. Count: 28, Neg. LLF: 151.12613840797022
Iteration: 3, Func. Count: 42, Neg. LLF: 111.79727530761015
Iteration: 4, Func. Count: 56, Neg. LLF: 161.05210582338043
Iteration: 5, Func. Count: 70, Neg. LLF: 111.09042660130889
Iteration: 6, Func. Count: 84, Neg. LLF: 109.45343432820613
Iteration: 7, Func. Count: 97, Neg. LLF: 109.74942186998335
Iteration: 8, Func. Count: 111, Neg. LLF: 109.35016633042898
Iteration: 9, Func. Count: 124, Neg. LLF: 109.34590645513964
Iteration: 10, Func. Count: 137, Neg. LLF: 109.34852122764482
Iteration: 11, Func. Count: 151, Neg. LLF: 109.34493227519225
Iteration: 12, Func. Count: 164, Neg. LLF: 109.34492869336795
Iteration: 13, Func. Count: 176, Neg. LLF: 109.34492877206588
Optimization terminated successfully (Exit mode 0)
Current function value: 109.34492869336795
Iterations: 13
Function evaluations: 176
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 166.81806179184397
Iteration: 2, Func. Count: 23, Neg. LLF: 170.31457681396535
Iteration: 3, Func. Count: 34, Neg. LLF: 112.37394121176037
Iteration: 4, Func. Count: 44, Neg. LLF: 268.2345070614506
Iteration: 5, Func. Count: 55, Neg. LLF: 119.4593219408223
Iteration: 6, Func. Count: 68, Neg. LLF: 111.69859248797707
Iteration: 7, Func. Count: 79, Neg. LLF: 109.65562538606864
Iteration: 8, Func. Count: 89, Neg. LLF: 109.51708181098228
Iteration: 9, Func. Count: 99, Neg. LLF: 109.39726571864134
Iteration: 10, Func. Count: 109, Neg. LLF: 109.3631037089223
Iteration: 11, Func. Count: 119, Neg. LLF: 109.34763516417573
Iteration: 12, Func. Count: 129, Neg. LLF: 109.34543838854809
Iteration: 13, Func. Count: 139, Neg. LLF: 109.34515108135956
Iteration: 14, Func. Count: 149, Neg. LLF: 109.34500238050657
Iteration: 15, Func. Count: 159, Neg. LLF: 109.3449326118566
Iteration: 16, Func. Count: 169, Neg. LLF: 109.34492877771072
Iteration: 17, Func. Count: 178, Neg. LLF: 109.34492881309575
Optimization terminated successfully (Exit mode 0)
Current function value: 109.34492877771072
Iterations: 17
Function evaluations: 178
Gradient evaluations: 17
Iteration: 1, Func. Count: 12, Neg. LLF: 117.01226589061116
Iteration: 2, Func. Count: 24, Neg. LLF: 135.11312268362028
Iteration: 3, Func. Count: 36, Neg. LLF: 114.9555773415112
Iteration: 4, Func. Count: 48, Neg. LLF: 114.62508439368658
Iteration: 5, Func. Count: 60, Neg. LLF: 110.01361288107708
Iteration: 6, Func. Count: 72, Neg. LLF: 109.44945794654367
Iteration: 7, Func. Count: 83, Neg. LLF: 109.37556654616654
Iteration: 8, Func. Count: 94, Neg. LLF: 109.48922620969283
Iteration: 9, Func. Count: 106, Neg. LLF: 109.34534021424133
Iteration: 10, Func. Count: 117, Neg. LLF: 109.34512636585487
Iteration: 11, Func. Count: 128, Neg. LLF: 109.34492885565808
Iteration: 12, Func. Count: 138, Neg. LLF: 109.34492884557493
Optimization terminated successfully (Exit mode 0)
Current function value: 109.34492885565808
Iterations: 12
Function evaluations: 138
Gradient evaluations: 12
Iteration: 1, Func. Count: 13, Neg. LLF: 117.61388204164999
Iteration: 2, Func. Count: 26, Neg. LLF: 140.06669425455894
Iteration: 3, Func. Count: 39, Neg. LLF: 115.65858337174765
Iteration: 4, Func. Count: 52, Neg. LLF: 111.8614846336354
Iteration: 5, Func. Count: 65, Neg. LLF: 110.5318891941203
Iteration: 6, Func. Count: 78, Neg. LLF: 109.93536810272546
Iteration: 7, Func. Count: 91, Neg. LLF: 109.50234014827457
Iteration: 8, Func. Count: 103, Neg. LLF: 109.35666211644154
Iteration: 9, Func. Count: 115, Neg. LLF: 109.35021688772106
Iteration: 10, Func. Count: 127, Neg. LLF: 109.34507333801871
Iteration: 11, Func. Count: 139, Neg. LLF: 109.3449679691699
Iteration: 12, Func. Count: 151, Neg. LLF: 109.34493744082182
Iteration: 13, Func. Count: 163, Neg. LLF: 109.3449289856152
Iteration: 14, Func. Count: 174, Neg. LLF: 109.34492903794157
Optimization terminated successfully (Exit mode 0)
Current function value: 109.3449289856152
Iterations: 14
Function evaluations: 174
Gradient evaluations: 14
Iteration: 1, Func. Count: 14, Neg. LLF: 112.93630061054125
Iteration: 2, Func. Count: 27, Neg. LLF: 132.85593430990946
Iteration: 3, Func. Count: 41, Neg. LLF: 109.76921663615929
Iteration: 4, Func. Count: 54, Neg. LLF: 135.44854064205947
Iteration: 5, Func. Count: 69, Neg. LLF: 129.6384517306089
Iteration: 6, Func. Count: 83, Neg. LLF: 109.48996458375461
Iteration: 7, Func. Count: 96, Neg. LLF: 109.57733196670397
Iteration: 8, Func. Count: 110, Neg. LLF: 109.62457254382878
Iteration: 9, Func. Count: 124, Neg. LLF: 109.34980384585775
Iteration: 10, Func. Count: 138, Neg. LLF: 109.34497574810305
Iteration: 11, Func. Count: 151, Neg. LLF: 109.34493013850182
Iteration: 12, Func. Count: 164, Neg. LLF: 109.34492881024312
Iteration: 13, Func. Count: 176, Neg. LLF: 109.34492884732539
Optimization terminated successfully (Exit mode 0)
Current function value: 109.34492881024312
Iterations: 13
Function evaluations: 176
Gradient evaluations: 13
Iteration: 1, Func. Count: 15, Neg. LLF: 113.14175855730285
Iteration: 2, Func. Count: 29, Neg. LLF: 130.63907193965255
Iteration: 3, Func. Count: 44, Neg. LLF: 109.77766655166285
Iteration: 4, Func. Count: 58, Neg. LLF: 138.2110314584848
Iteration: 5, Func. Count: 74, Neg. LLF: 128.74428206726176
Iteration: 6, Func. Count: 89, Neg. LLF: 109.50384978205868
Iteration: 7, Func. Count: 103, Neg. LLF: 109.58618710580714
Iteration: 8, Func. Count: 118, Neg. LLF: 109.77418118173215
Iteration: 9, Func. Count: 133, Neg. LLF: 109.35054380435841
Iteration: 10, Func. Count: 148, Neg. LLF: 109.34504110578703
Iteration: 11, Func. Count: 162, Neg. LLF: 109.34492973629274
Iteration: 12, Func. Count: 176, Neg. LLF: 109.3449288067231
Optimization terminated successfully (Exit mode 0)
Current function value: 109.3449288067231
Iterations: 12
Function evaluations: 176
Gradient evaluations: 12
Iteration: 1, Func. Count: 8, Neg. LLF: 127.67969534801449
Iteration: 2, Func. Count: 17, Neg. LLF: 144.30027939329577
Iteration: 3, Func. Count: 25, Neg. LLF: 114.94861784341036
Iteration: 4, Func. Count: 32, Neg. LLF: 113.76736008905547
Iteration: 5, Func. Count: 39, Neg. LLF: 113.63990362453836
Iteration: 6, Func. Count: 46, Neg. LLF: 113.56140760225513
Iteration: 7, Func. Count: 53, Neg. LLF: 113.55387763902408
Iteration: 8, Func. Count: 60, Neg. LLF: 113.55343240801416
Iteration: 9, Func. Count: 67, Neg. LLF: 113.5534290692941
Iteration: 10, Func. Count: 73, Neg. LLF: 113.55342906931996
Optimization terminated successfully (Exit mode 0)
Current function value: 113.5534290692941
Iterations: 10
Function evaluations: 73
Gradient evaluations: 10
Iteration: 1, Func. Count: 9, Neg. LLF: 166.84442584549586
Iteration: 2, Func. Count: 20, Neg. LLF: 115.11326939184728
Iteration: 3, Func. Count: 28, Neg. LLF: 114.75357760348273
Iteration: 4, Func. Count: 36, Neg. LLF: 116.03202465414783
Iteration: 5, Func. Count: 46, Neg. LLF: 114.63078535254158
Iteration: 6, Func. Count: 54, Neg. LLF: 114.6354033675822
Iteration: 7, Func. Count: 63, Neg. LLF: 114.62848999304497
Iteration: 8, Func. Count: 70, Neg. LLF: 114.62849004851371
Optimization terminated successfully (Exit mode 0)
Current function value: 114.62848999304497
Iterations: 8
Function evaluations: 70
Gradient evaluations: 8
Iteration: 1, Func. Count: 10, Neg. LLF: 161.64503785774153
Iteration: 2, Func. Count: 22, Neg. LLF: 114.87642931980268
Iteration: 3, Func. Count: 31, Neg. LLF: 114.88332949341962
Iteration: 4, Func. Count: 41, Neg. LLF: 152.30476776119497
Iteration: 5, Func. Count: 51, Neg. LLF: 114.64697684376574
Iteration: 6, Func. Count: 60, Neg. LLF: 114.64574583613003
Iteration: 7, Func. Count: 69, Neg. LLF: 114.64170886340656
Iteration: 8, Func. Count: 78, Neg. LLF: 114.63411834619
Iteration: 9, Func. Count: 87, Neg. LLF: 114.62849249590562
Iteration: 10, Func. Count: 96, Neg. LLF: 114.62852166598913
Iteration: 11, Func. Count: 105, Neg. LLF: 114.62848957536951
Optimization terminated successfully (Exit mode 0)
Current function value: 114.62848962871306
Iterations: 11
Function evaluations: 105
Gradient evaluations: 11
Iteration: 1, Func. Count: 11, Neg. LLF: 158.69312977881714
Iteration: 2, Func. Count: 24, Neg. LLF: 114.79208304274346
Iteration: 3, Func. Count: 34, Neg. LLF: 114.6878251228733
Iteration: 4, Func. Count: 44, Neg. LLF: 114.66156430572043
Iteration: 5, Func. Count: 54, Neg. LLF: 114.68046693922497
Iteration: 6, Func. Count: 65, Neg. LLF: 114.65708234514697
Iteration: 7, Func. Count: 75, Neg. LLF: 114.65678029703713
Iteration: 8, Func. Count: 85, Neg. LLF: 114.65669061468986
Iteration: 9, Func. Count: 95, Neg. LLF: 114.65666887407761
Iteration: 10, Func. Count: 105, Neg. LLF: 114.65666824358934
Optimization terminated successfully (Exit mode 0)
Current function value: 114.65666824358934
Iterations: 10
Function evaluations: 105
Gradient evaluations: 10
Iteration: 1, Func. Count: 12, Neg. LLF: 158.9778752780585
Iteration: 2, Func. Count: 26, Neg. LLF: 114.77836480843158
Iteration: 3, Func. Count: 37, Neg. LLF: 114.7179736897629
Iteration: 4, Func. Count: 48, Neg. LLF: 114.68118514921002
Iteration: 5, Func. Count: 59, Neg. LLF: 114.71119698539556
Iteration: 6, Func. Count: 71, Neg. LLF: 114.67573196071761
Iteration: 7, Func. Count: 82, Neg. LLF: 114.67344477331764
Iteration: 8, Func. Count: 93, Neg. LLF: 114.6658199814226
Iteration: 9, Func. Count: 104, Neg. LLF: 114.6622542380033
Iteration: 10, Func. Count: 115, Neg. LLF: 114.65610997800049
Iteration: 11, Func. Count: 126, Neg. LLF: 114.65378392465196
Iteration: 12, Func. Count: 137, Neg. LLF: 114.65322117062196
Iteration: 13, Func. Count: 148, Neg. LLF: 114.653025096655
Iteration: 14, Func. Count: 158, Neg. LLF: 114.65302507715249
Optimization terminated successfully (Exit mode 0)
Current function value: 114.653025096655
Iterations: 14
Function evaluations: 158
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 121.02103321051594
Iteration: 2, Func. Count: 18, Neg. LLF: 143.8579345081611
Iteration: 3, Func. Count: 27, Neg. LLF: 117.03729806749212
Iteration: 4, Func. Count: 36, Neg. LLF: 113.49643758099027
Iteration: 5, Func. Count: 44, Neg. LLF: 113.13232944964842
Iteration: 6, Func. Count: 52, Neg. LLF: 113.08303809349978
Iteration: 7, Func. Count: 60, Neg. LLF: 113.0545260136908
Iteration: 8, Func. Count: 68, Neg. LLF: 113.04889876539579
Iteration: 9, Func. Count: 76, Neg. LLF: 113.04839089639243
Iteration: 10, Func. Count: 84, Neg. LLF: 113.04805388454493
Iteration: 11, Func. Count: 92, Neg. LLF: 113.0480422115147
Iteration: 12, Func. Count: 99, Neg. LLF: 113.0480422112991
Optimization terminated successfully (Exit mode 0)
Current function value: 113.0480422115147
Iterations: 12
Function evaluations: 99
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 117.5598176576447
Iteration: 2, Func. Count: 20, Neg. LLF: 140.547224523335
Iteration: 3, Func. Count: 30, Neg. LLF: 121.7398651446125
Iteration: 4, Func. Count: 40, Neg. LLF: 113.70546084683892
Iteration: 5, Func. Count: 49, Neg. LLF: 113.6624888023595
Iteration: 6, Func. Count: 58, Neg. LLF: 113.62867646484025
Iteration: 7, Func. Count: 67, Neg. LLF: 113.60904039664308
Iteration: 8, Func. Count: 76, Neg. LLF: 113.60766171071549
Iteration: 9, Func. Count: 85, Neg. LLF: 113.60758144138214
Iteration: 10, Func. Count: 94, Neg. LLF: 113.60758020213021
Iteration: 11, Func. Count: 102, Neg. LLF: 113.60758017744271
Optimization terminated successfully (Exit mode 0)
Current function value: 113.60758020213021
Iterations: 11
Function evaluations: 102
Gradient evaluations: 11
Iteration: 1, Func. Count: 11, Neg. LLF: 125.00806762670419
Iteration: 2, Func. Count: 22, Neg. LLF: 123.8600054092333
Iteration: 3, Func. Count: 33, Neg. LLF: 117.62735239732505
Iteration: 4, Func. Count: 44, Neg. LLF: 113.86690471824403
Iteration: 5, Func. Count: 54, Neg. LLF: 113.67490370409072
Iteration: 6, Func. Count: 64, Neg. LLF: 113.61146237467763
Iteration: 7, Func. Count: 74, Neg. LLF: 113.60783342362167
Iteration: 8, Func. Count: 84, Neg. LLF: 113.60759771294937
Iteration: 9, Func. Count: 94, Neg. LLF: 113.6075840017021
Iteration: 10, Func. Count: 104, Neg. LLF: 113.60758023748716
Iteration: 11, Func. Count: 113, Neg. LLF: 113.60758026289031
Optimization terminated successfully (Exit mode 0)
Current function value: 113.60758023748716
Iterations: 11
Function evaluations: 113
Gradient evaluations: 11
Iteration: 1, Func. Count: 12, Neg. LLF: 162.04983691337986
Iteration: 2, Func. Count: 26, Neg. LLF: 114.89925651042252
Iteration: 3, Func. Count: 37, Neg. LLF: 114.8139323544289
Iteration: 4, Func. Count: 48, Neg. LLF: 116.95470557066336
Iteration: 5, Func. Count: 60, Neg. LLF: 114.69210950551725
Iteration: 6, Func. Count: 71, Neg. LLF: 114.70246766146025
Iteration: 7, Func. Count: 83, Neg. LLF: 114.66202240294044
Iteration: 8, Func. Count: 94, Neg. LLF: 114.65683409733195
Iteration: 9, Func. Count: 105, Neg. LLF: 114.65657372256177
Iteration: 10, Func. Count: 116, Neg. LLF: 114.65599272457791
Iteration: 11, Func. Count: 127, Neg. LLF: 114.65580065108526
Iteration: 12, Func. Count: 138, Neg. LLF: 114.6556414428387
Iteration: 13, Func. Count: 149, Neg. LLF: 114.63101309309558
Iteration: 14, Func. Count: 160, Neg. LLF: 114.62844075930361
Iteration: 15, Func. Count: 172, Neg. LLF: 114.63004522261528
Iteration: 16, Func. Count: 183, Neg. LLF: 122.48034718833955
Iteration: 17, Func. Count: 197, Neg. LLF: 114.6370129272832
Iteration: 18, Func. Count: 209, Neg. LLF: 114.62849000792657
Iteration: 19, Func. Count: 219, Neg. LLF: 114.62848995627041
Optimization terminated successfully (Exit mode 0)
Current function value: 114.62849000792657
Iterations: 20
Function evaluations: 219
Gradient evaluations: 19
Iteration: 1, Func. Count: 13, Neg. LLF: 132.8749864786442
Iteration: 2, Func. Count: 26, Neg. LLF: 115.49225126514877
Iteration: 3, Func. Count: 39, Neg. LLF: 114.4940593309069
Iteration: 4, Func. Count: 51, Neg. LLF: 113.88148349955331
Iteration: 5, Func. Count: 63, Neg. LLF: 113.56637655191234
Iteration: 6, Func. Count: 75, Neg. LLF: 113.51131521134369
Iteration: 7, Func. Count: 87, Neg. LLF: 113.50610782520158
Iteration: 8, Func. Count: 99, Neg. LLF: 113.5059678416057
Iteration: 9, Func. Count: 111, Neg. LLF: 113.50592538488566
Iteration: 10, Func. Count: 122, Neg. LLF: 113.50592535214746
Optimization terminated successfully (Exit mode 0)
Current function value: 113.50592538488566
Iterations: 10
Function evaluations: 122
Gradient evaluations: 10
Iteration: 1, Func. Count: 10, Neg. LLF: 139.3396674365963
Iteration: 2, Func. Count: 20, Neg. LLF: 150.60074952294906
Iteration: 3, Func. Count: 30, Neg. LLF: 111.58245895478427
Iteration: 4, Func. Count: 40, Neg. LLF: 110.34441456054267
Iteration: 5, Func. Count: 50, Neg. LLF: 110.90258500120584
Iteration: 6, Func. Count: 61, Neg. LLF: 117.02541936252109
Iteration: 7, Func. Count: 71, Neg. LLF: 109.80283941795942
Iteration: 8, Func. Count: 80, Neg. LLF: 109.69551213140332
Iteration: 9, Func. Count: 89, Neg. LLF: 109.67431379809443
Iteration: 10, Func. Count: 98, Neg. LLF: 109.6726778020503
Iteration: 11, Func. Count: 107, Neg. LLF: 109.67255984115803
Iteration: 12, Func. Count: 116, Neg. LLF: 109.67254665608664
Iteration: 13, Func. Count: 124, Neg. LLF: 109.67254664955009
Optimization terminated successfully (Exit mode 0)
Current function value: 109.67254665608664
Iterations: 13
Function evaluations: 124
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 116.84151965069074
Iteration: 2, Func. Count: 22, Neg. LLF: 132.94412451928216
Iteration: 3, Func. Count: 33, Neg. LLF: 112.14416026601862
Iteration: 4, Func. Count: 44, Neg. LLF: 110.45021855163266
Iteration: 5, Func. Count: 55, Neg. LLF: 110.12718415331075
Iteration: 6, Func. Count: 66, Neg. LLF: 109.79986283397629
Iteration: 7, Func. Count: 77, Neg. LLF: 109.59688792356377
Iteration: 8, Func. Count: 88, Neg. LLF: 109.47576795577929
Iteration: 9, Func. Count: 98, Neg. LLF: 109.48663689242274
Iteration: 10, Func. Count: 109, Neg. LLF: 109.47268250204704
Iteration: 11, Func. Count: 119, Neg. LLF: 109.4726603185594
Iteration: 12, Func. Count: 129, Neg. LLF: 109.47264636048239
Iteration: 13, Func. Count: 138, Neg. LLF: 109.47264633570452
Optimization terminated successfully (Exit mode 0)
Current function value: 109.47264636048239
Iterations: 13
Function evaluations: 138
Gradient evaluations: 13
Iteration: 1, Func. Count: 12, Neg. LLF: 115.82132856014186
Iteration: 2, Func. Count: 24, Neg. LLF: 136.23046796905146
Iteration: 3, Func. Count: 36, Neg. LLF: 113.73507350190017
Iteration: 4, Func. Count: 48, Neg. LLF: 112.95829862940539
Iteration: 5, Func. Count: 60, Neg. LLF: 110.17866376917911
Iteration: 6, Func. Count: 72, Neg. LLF: 109.64575761409623
Iteration: 7, Func. Count: 83, Neg. LLF: 109.8196644792525
Iteration: 8, Func. Count: 95, Neg. LLF: 109.49628811679716
Iteration: 9, Func. Count: 106, Neg. LLF: 109.47387268456879
Iteration: 10, Func. Count: 117, Neg. LLF: 109.47413966163025
Iteration: 11, Func. Count: 129, Neg. LLF: 109.47265298330386
Iteration: 12, Func. Count: 140, Neg. LLF: 109.47264647831679
Iteration: 13, Func. Count: 150, Neg. LLF: 109.47264653670685
Optimization terminated successfully (Exit mode 0)
Current function value: 109.47264647831679
Iterations: 13
Function evaluations: 150
Gradient evaluations: 13
Iteration: 1, Func. Count: 13, Neg. LLF: 115.302247420755
Iteration: 2, Func. Count: 26, Neg. LLF: 149.33624298419488
Iteration: 3, Func. Count: 39, Neg. LLF: 113.43579335737203
Iteration: 4, Func. Count: 52, Neg. LLF: 114.57012848381592
Iteration: 5, Func. Count: 65, Neg. LLF: 109.87848984481998
Iteration: 6, Func. Count: 77, Neg. LLF: 109.74042875349646
Iteration: 7, Func. Count: 89, Neg. LLF: 110.50388802674355
Iteration: 8, Func. Count: 102, Neg. LLF: 109.47871484921552
Iteration: 9, Func. Count: 114, Neg. LLF: 109.4736175288877
Iteration: 10, Func. Count: 126, Neg. LLF: 109.47346632569138
Iteration: 11, Func. Count: 139, Neg. LLF: 109.47268328040859
Iteration: 12, Func. Count: 151, Neg. LLF: 109.47264638974795
Iteration: 13, Func. Count: 162, Neg. LLF: 109.47264642914288
Optimization terminated successfully (Exit mode 0)
Current function value: 109.47264638974795
Iterations: 13
Function evaluations: 162
Gradient evaluations: 13
Iteration: 1, Func. Count: 14, Neg. LLF: 115.8050926032001
Iteration: 2, Func. Count: 28, Neg. LLF: 144.27801213674323
Iteration: 3, Func. Count: 42, Neg. LLF: 112.3427972941622
Iteration: 4, Func. Count: 56, Neg. LLF: 114.02110499183038
Iteration: 5, Func. Count: 71, Neg. LLF: 109.80646010555371
Iteration: 6, Func. Count: 84, Neg. LLF: 109.87061224795215
Iteration: 7, Func. Count: 98, Neg. LLF: 109.76138304947071
Iteration: 8, Func. Count: 112, Neg. LLF: 109.48121301919045
Iteration: 9, Func. Count: 126, Neg. LLF: 109.47288306269104
Iteration: 10, Func. Count: 139, Neg. LLF: 109.4726528834002
Iteration: 11, Func. Count: 152, Neg. LLF: 109.4726463560879
Iteration: 12, Func. Count: 164, Neg. LLF: 109.47264642461192
Optimization terminated successfully (Exit mode 0)
Current function value: 109.4726463560879
Iterations: 12
Function evaluations: 164
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 142.5116075924118
Iteration: 2, Func. Count: 22, Neg. LLF: 153.0195353659103
Iteration: 3, Func. Count: 33, Neg. LLF: 111.9769481759756
Iteration: 4, Func. Count: 44, Neg. LLF: 109.82441971156399
Iteration: 5, Func. Count: 54, Neg. LLF: 111.9004877013967
Iteration: 6, Func. Count: 65, Neg. LLF: 110.8079775999675
Iteration: 7, Func. Count: 76, Neg. LLF: 109.83720989517833
Iteration: 8, Func. Count: 87, Neg. LLF: 109.36857771958331
Iteration: 9, Func. Count: 98, Neg. LLF: 109.34534150790452
Iteration: 10, Func. Count: 108, Neg. LLF: 109.34505531219874
Iteration: 11, Func. Count: 118, Neg. LLF: 109.34493080113188
Iteration: 12, Func. Count: 128, Neg. LLF: 109.34492918567847
Iteration: 13, Func. Count: 137, Neg. LLF: 109.34492917205658
Optimization terminated successfully (Exit mode 0)
Current function value: 109.34492918567847
Iterations: 13
Function evaluations: 137
Gradient evaluations: 13
Iteration: 1, Func. Count: 12, Neg. LLF: 117.67622105946904
Iteration: 2, Func. Count: 24, Neg. LLF: 134.37331214383497
Iteration: 3, Func. Count: 36, Neg. LLF: 114.93741279229566
Iteration: 4, Func. Count: 48, Neg. LLF: 115.74572369647393
Iteration: 5, Func. Count: 60, Neg. LLF: 109.85846094517096
Iteration: 6, Func. Count: 72, Neg. LLF: 109.64146250548399
Iteration: 7, Func. Count: 84, Neg. LLF: 109.37087106154584
Iteration: 8, Func. Count: 95, Neg. LLF: 109.35562027598691
Iteration: 9, Func. Count: 106, Neg. LLF: 109.34545328842857
Iteration: 10, Func. Count: 117, Neg. LLF: 109.34496686188044
Iteration: 11, Func. Count: 128, Neg. LLF: 109.34492964695418
Iteration: 12, Func. Count: 139, Neg. LLF: 109.34492870068594
Optimization terminated successfully (Exit mode 0)
Current function value: 109.34492870068594
Iterations: 12
Function evaluations: 139
Gradient evaluations: 12
Iteration: 1, Func. Count: 13, Neg. LLF: 117.88989660260381
Iteration: 2, Func. Count: 26, Neg. LLF: 136.85954232085794
Iteration: 3, Func. Count: 39, Neg. LLF: 115.53410671368515
Iteration: 4, Func. Count: 52, Neg. LLF: 113.39474203923558
Iteration: 5, Func. Count: 65, Neg. LLF: 110.6574498046529
Iteration: 6, Func. Count: 78, Neg. LLF: 109.54357290415001
Iteration: 7, Func. Count: 90, Neg. LLF: 109.51743734408366
Iteration: 8, Func. Count: 103, Neg. LLF: 109.34576945491966
Iteration: 9, Func. Count: 115, Neg. LLF: 109.34589891353167
Iteration: 10, Func. Count: 128, Neg. LLF: 109.34493422046722
Iteration: 11, Func. Count: 140, Neg. LLF: 109.34492909235904
Iteration: 12, Func. Count: 152, Neg. LLF: 109.344928743823
Optimization terminated successfully (Exit mode 0)
Current function value: 109.344928743823
Iterations: 12
Function evaluations: 152
Gradient evaluations: 12
Iteration: 1, Func. Count: 14, Neg. LLF: 118.0626743892907
Iteration: 2, Func. Count: 28, Neg. LLF: 150.1214310545681
Iteration: 3, Func. Count: 42, Neg. LLF: 116.88476573952396
Iteration: 4, Func. Count: 56, Neg. LLF: 115.50350126538767
Iteration: 5, Func. Count: 70, Neg. LLF: 111.06340642245755
Iteration: 6, Func. Count: 84, Neg. LLF: 109.37918614276917
Iteration: 7, Func. Count: 97, Neg. LLF: 109.4715338018049
Iteration: 8, Func. Count: 111, Neg. LLF: 109.36271486456867
Iteration: 9, Func. Count: 125, Neg. LLF: 109.34560822251996
Iteration: 10, Func. Count: 138, Neg. LLF: 109.34501294552577
Iteration: 11, Func. Count: 151, Neg. LLF: 109.34493505574358
Iteration: 12, Func. Count: 164, Neg. LLF: 109.34492872952943
Iteration: 13, Func. Count: 176, Neg. LLF: 109.34492876656952
Optimization terminated successfully (Exit mode 0)
Current function value: 109.34492872952943
Iterations: 13
Function evaluations: 176
Gradient evaluations: 13
Iteration: 1, Func. Count: 15, Neg. LLF: 113.53964129796054
Iteration: 2, Func. Count: 30, Neg. LLF: 153.32555118742133
Iteration: 3, Func. Count: 45, Neg. LLF: 111.61621790186113
Iteration: 4, Func. Count: 60, Neg. LLF: 210.5004281265188
Iteration: 5, Func. Count: 75, Neg. LLF: 112.00261171405154
Iteration: 6, Func. Count: 90, Neg. LLF: 109.4422270006495
Iteration: 7, Func. Count: 104, Neg. LLF: 109.76305385675121
Iteration: 8, Func. Count: 119, Neg. LLF: 109.35676834596441
Iteration: 9, Func. Count: 133, Neg. LLF: 109.35972163872137
Iteration: 10, Func. Count: 148, Neg. LLF: 109.34500145004691
Iteration: 11, Func. Count: 162, Neg. LLF: 109.34493034861318
Iteration: 12, Func. Count: 176, Neg. LLF: 109.34492870139306
Iteration: 13, Func. Count: 189, Neg. LLF: 109.34492878009284
Optimization terminated successfully (Exit mode 0)
Current function value: 109.34492870139306
Iterations: 13
Function evaluations: 189
Gradient evaluations: 13
Iteration: 1, Func. Count: 12, Neg. LLF: 133.5183090819568
Iteration: 2, Func. Count: 25, Neg. LLF: 154.86024770422688
Iteration: 3, Func. Count: 37, Neg. LLF: 111.95452956294372
Iteration: 4, Func. Count: 48, Neg. LLF: 140.45936995407922
Iteration: 5, Func. Count: 61, Neg. LLF: 122.09775527825953
Iteration: 6, Func. Count: 76, Neg. LLF: 114.27780818162938
Iteration: 7, Func. Count: 89, Neg. LLF: 109.76162519928351
Iteration: 8, Func. Count: 100, Neg. LLF: 109.56743403401711
Iteration: 9, Func. Count: 111, Neg. LLF: 109.41621281615095
Iteration: 10, Func. Count: 122, Neg. LLF: 111.17444017384445
Iteration: 11, Func. Count: 135, Neg. LLF: 109.36499526166303
Iteration: 12, Func. Count: 146, Neg. LLF: 109.34957473312929
Iteration: 13, Func. Count: 157, Neg. LLF: 109.34396739431216
Iteration: 14, Func. Count: 168, Neg. LLF: 109.34379431703665
Iteration: 15, Func. Count: 179, Neg. LLF: 109.34377538274947
Iteration: 16, Func. Count: 190, Neg. LLF: 109.34375064722113
Iteration: 17, Func. Count: 201, Neg. LLF: 109.34374906220597
Iteration: 18, Func. Count: 211, Neg. LLF: 109.34374902694599
Optimization terminated successfully (Exit mode 0)
Current function value: 109.34374906220597
Iterations: 18
Function evaluations: 211
Gradient evaluations: 18
Iteration: 1, Func. Count: 13, Neg. LLF: 115.91663143161055
Iteration: 2, Func. Count: 26, Neg. LLF: 136.31259910973966
Iteration: 3, Func. Count: 39, Neg. LLF: 114.21693443055504
Iteration: 4, Func. Count: 52, Neg. LLF: 114.48368790364222
Iteration: 5, Func. Count: 65, Neg. LLF: 109.90550965323746
Iteration: 6, Func. Count: 78, Neg. LLF: 109.46726372322533
Iteration: 7, Func. Count: 90, Neg. LLF: 109.35131849948797
Iteration: 8, Func. Count: 102, Neg. LLF: 109.54311918056838
Iteration: 9, Func. Count: 116, Neg. LLF: 109.34524969426076
Iteration: 10, Func. Count: 128, Neg. LLF: 109.35120389490531
Iteration: 11, Func. Count: 141, Neg. LLF: 109.3438016290572
Iteration: 12, Func. Count: 153, Neg. LLF: 109.34374942832444
Iteration: 13, Func. Count: 165, Neg. LLF: 109.34374898335028
Optimization terminated successfully (Exit mode 0)
Current function value: 109.34374898335028
Iterations: 13
Function evaluations: 165
Gradient evaluations: 13
Iteration: 1, Func. Count: 14, Neg. LLF: 116.51203350216231
Iteration: 2, Func. Count: 28, Neg. LLF: 141.15742294481754
Iteration: 3, Func. Count: 42, Neg. LLF: 115.21951281577081
Iteration: 4, Func. Count: 56, Neg. LLF: 112.61793329542387
Iteration: 5, Func. Count: 70, Neg. LLF: 110.94314303460473
Iteration: 6, Func. Count: 84, Neg. LLF: 109.6535500307829
Iteration: 7, Func. Count: 97, Neg. LLF: 109.49963620658097
Iteration: 8, Func. Count: 110, Neg. LLF: 109.91935645366584
Iteration: 9, Func. Count: 124, Neg. LLF: 109.46842568501255
Iteration: 10, Func. Count: 138, Neg. LLF: 109.35177686788325
Iteration: 11, Func. Count: 151, Neg. LLF: 109.379098726492
Iteration: 12, Func. Count: 165, Neg. LLF: 109.34440403773532
Iteration: 13, Func. Count: 178, Neg. LLF: 109.34377683471277
Iteration: 14, Func. Count: 191, Neg. LLF: 109.34375254362595
Iteration: 15, Func. Count: 204, Neg. LLF: 109.34374899006426
Iteration: 16, Func. Count: 216, Neg. LLF: 109.34374904298687
Optimization terminated successfully (Exit mode 0)
Current function value: 109.34374899006426
Iterations: 16
Function evaluations: 216
Gradient evaluations: 16
Iteration: 1, Func. Count: 15, Neg. LLF: 112.24190521500716
Iteration: 2, Func. Count: 29, Neg. LLF: 136.82740855626045
Iteration: 3, Func. Count: 44, Neg. LLF: 109.72760124002346
Iteration: 4, Func. Count: 58, Neg. LLF: 117.95229721688388
Iteration: 5, Func. Count: 74, Neg. LLF: 192.30903411156282
Iteration: 6, Func. Count: 89, Neg. LLF: 109.52345131858614
Iteration: 7, Func. Count: 104, Neg. LLF: 110.62268557912003
Iteration: 8, Func. Count: 120, Neg. LLF: 109.41430382335095
Iteration: 9, Func. Count: 135, Neg. LLF: 109.34546786679958
Iteration: 10, Func. Count: 149, Neg. LLF: 109.34488613657139
Iteration: 11, Func. Count: 163, Neg. LLF: 109.34382671867101
Iteration: 12, Func. Count: 177, Neg. LLF: 109.34375329838682
Iteration: 13, Func. Count: 191, Neg. LLF: 109.34374925036768
Iteration: 14, Func. Count: 204, Neg. LLF: 109.34374928728644
Optimization terminated successfully (Exit mode 0)
Current function value: 109.34374925036768
Iterations: 14
Function evaluations: 204
Gradient evaluations: 14
Iteration: 1, Func. Count: 16, Neg. LLF: 112.41166748656589
Iteration: 2, Func. Count: 31, Neg. LLF: 134.21372725347345
Iteration: 3, Func. Count: 47, Neg. LLF: 109.75926681626474
Iteration: 4, Func. Count: 62, Neg. LLF: 134.53218990440124
Iteration: 5, Func. Count: 79, Neg. LLF: 129.434069501836
Iteration: 6, Func. Count: 95, Neg. LLF: 109.48094314872493
Iteration: 7, Func. Count: 110, Neg. LLF: 109.77458323493848
Iteration: 8, Func. Count: 126, Neg. LLF: 109.5034051195329
Iteration: 9, Func. Count: 142, Neg. LLF: 109.3469842482103
Iteration: 10, Func. Count: 157, Neg. LLF: 109.34843508622484
Iteration: 11, Func. Count: 173, Neg. LLF: 109.3659207134064
Iteration: 12, Func. Count: 189, Neg. LLF: 109.34375204624733
Iteration: 13, Func. Count: 204, Neg. LLF: 109.34374901227214
Iteration: 14, Func. Count: 218, Neg. LLF: 109.34374909347746
Optimization terminated successfully (Exit mode 0)
Current function value: 109.34374901227214
Iterations: 14
Function evaluations: 218
Gradient evaluations: 14
Iteration: 1, Func. Count: 6, Neg. LLF: 137.43009288266862
Iteration: 2, Func. Count: 13, Neg. LLF: 305.28722302336723
Iteration: 3, Func. Count: 19, Neg. LLF: 135.88183501859072
Iteration: 4, Func. Count: 25, Neg. LLF: 114.57241809207406
Iteration: 5, Func. Count: 31, Neg. LLF: 111.54932868622622
Iteration: 6, Func. Count: 37, Neg. LLF: 110.3962509362738
Iteration: 7, Func. Count: 42, Neg. LLF: 110.03289676329322
Iteration: 8, Func. Count: 47, Neg. LLF: 109.73316030639457
Iteration: 9, Func. Count: 52, Neg. LLF: 109.70507048777154
Iteration: 10, Func. Count: 57, Neg. LLF: 109.70391552389654
Iteration: 11, Func. Count: 62, Neg. LLF: 109.70388554674338
Iteration: 12, Func. Count: 67, Neg. LLF: 109.70388456153196
Optimization terminated successfully (Exit mode 0)
Current function value: 109.70388456153196
Iterations: 12
Function evaluations: 67
Gradient evaluations: 12
Iteration: 1, Func. Count: 5, Neg. LLF: 126.18074037245827
Iteration: 2, Func. Count: 10, Neg. LLF: 151.703056292119
Iteration: 3, Func. Count: 15, Neg. LLF: 116.895598884945
Iteration: 4, Func. Count: 19, Neg. LLF: 116.54906761683931
Iteration: 5, Func. Count: 23, Neg. LLF: 116.44329219183328
Iteration: 6, Func. Count: 27, Neg. LLF: 116.39767251084847
Iteration: 7, Func. Count: 31, Neg. LLF: 116.39478212647742
Iteration: 8, Func. Count: 35, Neg. LLF: 116.39465469140806
Iteration: 9, Func. Count: 38, Neg. LLF: 116.39465469469228
Optimization terminated successfully (Exit mode 0)
Current function value: 116.39465469140806
Iterations: 9
Function evaluations: 38
Gradient evaluations: 9
Iteration: 1, Func. Count: 6, Neg. LLF: 119.41009302271581
Iteration: 2, Func. Count: 12, Neg. LLF: 134.1154132522351
Iteration: 3, Func. Count: 18, Neg. LLF: 123.5010830878664
Iteration: 4, Func. Count: 24, Neg. LLF: 114.1004831895662
Iteration: 5, Func. Count: 29, Neg. LLF: 114.05710372722672
Iteration: 6, Func. Count: 34, Neg. LLF: 114.02149639955127
Iteration: 7, Func. Count: 39, Neg. LLF: 114.01785474050963
Iteration: 8, Func. Count: 44, Neg. LLF: 114.01770988805737
Iteration: 9, Func. Count: 49, Neg. LLF: 114.01770826495625
Iteration: 10, Func. Count: 53, Neg. LLF: 114.0177082291412
Optimization terminated successfully (Exit mode 0)
Current function value: 114.01770826495625
Iterations: 10
Function evaluations: 53
Gradient evaluations: 10
Iteration: 1, Func. Count: 7, Neg. LLF: 161.3568919711365
Iteration: 2, Func. Count: 16, Neg. LLF: 118.82415635130829
Iteration: 3, Func. Count: 23, Neg. LLF: 115.18201576601864
Iteration: 4, Func. Count: 29, Neg. LLF: 114.45599844334002
Iteration: 5, Func. Count: 35, Neg. LLF: 114.05562995481957
Iteration: 6, Func. Count: 41, Neg. LLF: 114.02815500418528
Iteration: 7, Func. Count: 47, Neg. LLF: 114.02567490009831
Iteration: 8, Func. Count: 53, Neg. LLF: 114.01988799937675
Iteration: 9, Func. Count: 59, Neg. LLF: 114.01802841755254
Iteration: 10, Func. Count: 65, Neg. LLF: 114.01771621989148
Iteration: 11, Func. Count: 71, Neg. LLF: 114.01770861346704
Iteration: 12, Func. Count: 76, Neg. LLF: 114.01770863118816
Optimization terminated successfully (Exit mode 0)
Current function value: 114.01770861346704
Iterations: 12
Function evaluations: 76
Gradient evaluations: 12
Iteration: 1, Func. Count: 8, Neg. LLF: 160.37770940872164
Iteration: 2, Func. Count: 18, Neg. LLF: 115.9276505567871
Iteration: 3, Func. Count: 26, Neg. LLF: 115.3381133899268
Iteration: 4, Func. Count: 33, Neg. LLF: 117.46314626837946
Iteration: 5, Func. Count: 41, Neg. LLF: 114.29547730078431
Iteration: 6, Func. Count: 48, Neg. LLF: 114.0600617260307
Iteration: 7, Func. Count: 55, Neg. LLF: 114.02072483890451
Iteration: 8, Func. Count: 62, Neg. LLF: 114.01928452462171
Iteration: 9, Func. Count: 69, Neg. LLF: 114.01878166649206
Iteration: 10, Func. Count: 76, Neg. LLF: 114.01831559647454
Iteration: 11, Func. Count: 83, Neg. LLF: 114.01790492685382
Iteration: 12, Func. Count: 90, Neg. LLF: 114.01773217101834
Iteration: 13, Func. Count: 97, Neg. LLF: 114.0177096136643
Iteration: 14, Func. Count: 104, Neg. LLF: 114.01770828582117
Iteration: 15, Func. Count: 110, Neg. LLF: 114.01770829525552
Optimization terminated successfully (Exit mode 0)
Current function value: 114.01770828582117
Iterations: 15
Function evaluations: 110
Gradient evaluations: 15
Iteration: 1, Func. Count: 9, Neg. LLF: 136.27423999382702
Iteration: 2, Func. Count: 18, Neg. LLF: 115.41273279079554
Iteration: 3, Func. Count: 26, Neg. LLF: 115.71982895738442
Iteration: 4, Func. Count: 35, Neg. LLF: 116.14057396499452
Iteration: 5, Func. Count: 44, Neg. LLF: 113.86592491460472
Iteration: 6, Func. Count: 52, Neg. LLF: 113.86122152402731
Iteration: 7, Func. Count: 60, Neg. LLF: 113.86085360509229
Iteration: 8, Func. Count: 68, Neg. LLF: 113.86079367976672
Iteration: 9, Func. Count: 75, Neg. LLF: 113.86079364196752
Optimization terminated successfully (Exit mode 0)
Current function value: 113.86079367976672
Iterations: 9
Function evaluations: 75
Gradient evaluations: 9
Iteration: 1, Func. Count: 6, Neg. LLF: 139.52127915563395
Iteration: 2, Func. Count: 13, Neg. LLF: 248.87204687695453
Iteration: 3, Func. Count: 19, Neg. LLF: 116.90790964542612
Iteration: 4, Func. Count: 25, Neg. LLF: 112.13899008430832
Iteration: 5, Func. Count: 31, Neg. LLF: 113.42314711690923
Iteration: 6, Func. Count: 37, Neg. LLF: 110.99858760371139
Iteration: 7, Func. Count: 42, Neg. LLF: 110.61331672343849
Iteration: 8, Func. Count: 47, Neg. LLF: 110.57639829973222
Iteration: 9, Func. Count: 52, Neg. LLF: 110.57570763319372
Iteration: 10, Func. Count: 57, Neg. LLF: 110.5756858945293
Iteration: 11, Func. Count: 61, Neg. LLF: 110.57568588498486
Optimization terminated successfully (Exit mode 0)
Current function value: 110.5756858945293
Iterations: 11
Function evaluations: 61
Gradient evaluations: 11
Iteration: 1, Func. Count: 7, Neg. LLF: 118.05585972064792
Iteration: 2, Func. Count: 14, Neg. LLF: 129.16856515208582
Iteration: 3, Func. Count: 21, Neg. LLF: 112.8617031172929
Iteration: 4, Func. Count: 28, Neg. LLF: 111.58143334668851
Iteration: 5, Func. Count: 35, Neg. LLF: 110.4298293761083
Iteration: 6, Func. Count: 41, Neg. LLF: 110.40283740956649
Iteration: 7, Func. Count: 47, Neg. LLF: 110.4007129811513
Iteration: 8, Func. Count: 53, Neg. LLF: 110.39835596694178
Iteration: 9, Func. Count: 59, Neg. LLF: 110.39835284232349
Iteration: 10, Func. Count: 64, Neg. LLF: 110.39835280647048
Optimization terminated successfully (Exit mode 0)
Current function value: 110.39835284232349
Iterations: 10
Function evaluations: 64
Gradient evaluations: 10
Iteration: 1, Func. Count: 8, Neg. LLF: 117.4379067954283
Iteration: 2, Func. Count: 16, Neg. LLF: 131.8452485660852
Iteration: 3, Func. Count: 24, Neg. LLF: 112.0937948343693
Iteration: 4, Func. Count: 32, Neg. LLF: 110.44325699969144
Iteration: 5, Func. Count: 39, Neg. LLF: 110.7542789376301
Iteration: 6, Func. Count: 47, Neg. LLF: 110.43172498727779
Iteration: 7, Func. Count: 55, Neg. LLF: 110.4036682563673
Iteration: 8, Func. Count: 63, Neg. LLF: 110.39836242837114
Iteration: 9, Func. Count: 70, Neg. LLF: 110.39835290717063
Iteration: 10, Func. Count: 76, Neg. LLF: 110.3983529052743
Optimization terminated successfully (Exit mode 0)
Current function value: 110.39835290717063
Iterations: 10
Function evaluations: 76
Gradient evaluations: 10
Iteration: 1, Func. Count: 9, Neg. LLF: 117.44947137019251
Iteration: 2, Func. Count: 18, Neg. LLF: 141.81650686821945
Iteration: 3, Func. Count: 27, Neg. LLF: 112.15932933870957
Iteration: 4, Func. Count: 36, Neg. LLF: 110.52110099429646
Iteration: 5, Func. Count: 44, Neg. LLF: 110.48675660355667
Iteration: 6, Func. Count: 52, Neg. LLF: 110.53180527908421
Iteration: 7, Func. Count: 61, Neg. LLF: 110.40213833699391
Iteration: 8, Func. Count: 69, Neg. LLF: 110.39848184511563
Iteration: 9, Func. Count: 77, Neg. LLF: 110.39835618208723
Iteration: 10, Func. Count: 85, Neg. LLF: 110.39835289523516
Iteration: 11, Func. Count: 92, Neg. LLF: 110.39835292045431
Optimization terminated successfully (Exit mode 0)
Current function value: 110.39835289523516
Iterations: 11
Function evaluations: 92
Gradient evaluations: 11
Iteration: 1, Func. Count: 10, Neg. LLF: 118.02134136936304
Iteration: 2, Func. Count: 20, Neg. LLF: 137.68918838108942
Iteration: 3, Func. Count: 30, Neg. LLF: 112.04446218342883
Iteration: 4, Func. Count: 40, Neg. LLF: 110.52770969207228
Iteration: 5, Func. Count: 49, Neg. LLF: 110.8150753395806
Iteration: 6, Func. Count: 59, Neg. LLF: 110.43829894954322
Iteration: 7, Func. Count: 68, Neg. LLF: 110.40206622790998
Iteration: 8, Func. Count: 77, Neg. LLF: 110.3987402971803
Iteration: 9, Func. Count: 86, Neg. LLF: 110.3983591118569
Iteration: 10, Func. Count: 95, Neg. LLF: 110.39835297520918
Iteration: 11, Func. Count: 103, Neg. LLF: 110.39835303034893
Optimization terminated successfully (Exit mode 0)
Current function value: 110.39835297520918
Iterations: 11
Function evaluations: 103
Gradient evaluations: 11
Iteration: 1, Func. Count: 7, Neg. LLF: 141.8271100952665
Iteration: 2, Func. Count: 15, Neg. LLF: 273.06803369374256
Iteration: 3, Func. Count: 22, Neg. LLF: 121.24964068854398
Iteration: 4, Func. Count: 29, Neg. LLF: 114.35470474350852
Iteration: 5, Func. Count: 36, Neg. LLF: 111.54491635043674
Iteration: 6, Func. Count: 43, Neg. LLF: 110.66290031657363
Iteration: 7, Func. Count: 49, Neg. LLF: 110.587513619684
Iteration: 8, Func. Count: 55, Neg. LLF: 110.42264561031374
Iteration: 9, Func. Count: 61, Neg. LLF: 110.3886979513739
Iteration: 10, Func. Count: 67, Neg. LLF: 110.38651204179884
Iteration: 11, Func. Count: 73, Neg. LLF: 110.38645568458598
Iteration: 12, Func. Count: 79, Neg. LLF: 110.38645439104735
Iteration: 13, Func. Count: 84, Neg. LLF: 110.38645437469151
Optimization terminated successfully (Exit mode 0)
Current function value: 110.38645439104735
Iterations: 13
Function evaluations: 84
Gradient evaluations: 13
Iteration: 1, Func. Count: 8, Neg. LLF: 118.0211102900296
Iteration: 2, Func. Count: 16, Neg. LLF: 131.58666661079948
Iteration: 3, Func. Count: 24, Neg. LLF: 112.72693184873745
Iteration: 4, Func. Count: 32, Neg. LLF: 111.19268047089291
Iteration: 5, Func. Count: 40, Neg. LLF: 110.51956116153042
Iteration: 6, Func. Count: 47, Neg. LLF: 110.38701642100081
Iteration: 7, Func. Count: 54, Neg. LLF: 110.38649437749257
Iteration: 8, Func. Count: 61, Neg. LLF: 110.38645648519535
Iteration: 9, Func. Count: 68, Neg. LLF: 110.38645457885755
Iteration: 10, Func. Count: 74, Neg. LLF: 110.38645454735219
Optimization terminated successfully (Exit mode 0)
Current function value: 110.38645457885755
Iterations: 10
Function evaluations: 74
Gradient evaluations: 10
Iteration: 1, Func. Count: 9, Neg. LLF: 118.50277278767133
Iteration: 2, Func. Count: 18, Neg. LLF: 133.32188808985111
Iteration: 3, Func. Count: 27, Neg. LLF: 112.40735473838026
Iteration: 4, Func. Count: 36, Neg. LLF: 110.42221917399308
Iteration: 5, Func. Count: 44, Neg. LLF: 110.5244049268577
Iteration: 6, Func. Count: 53, Neg. LLF: 110.39090361890416
Iteration: 7, Func. Count: 61, Neg. LLF: 110.38819169439527
Iteration: 8, Func. Count: 69, Neg. LLF: 110.38685611032295
Iteration: 9, Func. Count: 77, Neg. LLF: 110.3864563088365
Iteration: 10, Func. Count: 85, Neg. LLF: 110.38645439846998
Iteration: 11, Func. Count: 92, Neg. LLF: 110.38645438800502
Optimization terminated successfully (Exit mode 0)
Current function value: 110.38645439846998
Iterations: 11
Function evaluations: 92
Gradient evaluations: 11
Iteration: 1, Func. Count: 10, Neg. LLF: 114.04892665085106
Iteration: 2, Func. Count: 20, Neg. LLF: 148.8504749302751
Iteration: 3, Func. Count: 30, Neg. LLF: 111.16773739020786
Iteration: 4, Func. Count: 39, Neg. LLF: 110.87182296607172
Iteration: 5, Func. Count: 48, Neg. LLF: 112.25253168555871
Iteration: 6, Func. Count: 58, Neg. LLF: 110.42773682972847
Iteration: 7, Func. Count: 67, Neg. LLF: 110.42361481038394
Iteration: 8, Func. Count: 77, Neg. LLF: 110.38716265643995
Iteration: 9, Func. Count: 86, Neg. LLF: 110.38647371918248
Iteration: 10, Func. Count: 95, Neg. LLF: 110.38645610952616
Iteration: 11, Func. Count: 104, Neg. LLF: 110.38645440596835
Iteration: 12, Func. Count: 112, Neg. LLF: 110.38645442523578
Optimization terminated successfully (Exit mode 0)
Current function value: 110.38645440596835
Iterations: 12
Function evaluations: 112
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 114.27757805158517
Iteration: 2, Func. Count: 22, Neg. LLF: 145.85289131617068
Iteration: 3, Func. Count: 33, Neg. LLF: 111.1921192191433
Iteration: 4, Func. Count: 43, Neg. LLF: 110.81888058985523
Iteration: 5, Func. Count: 53, Neg. LLF: 112.06065303714841
Iteration: 6, Func. Count: 64, Neg. LLF: 110.41114702128412
Iteration: 7, Func. Count: 74, Neg. LLF: 110.4080291158954
Iteration: 8, Func. Count: 85, Neg. LLF: 110.38690666072455
Iteration: 9, Func. Count: 95, Neg. LLF: 110.3864761896622
Iteration: 10, Func. Count: 105, Neg. LLF: 110.38645666541724
Iteration: 11, Func. Count: 115, Neg. LLF: 110.38645440068802
Iteration: 12, Func. Count: 124, Neg. LLF: 110.38645445518256
Optimization terminated successfully (Exit mode 0)
Current function value: 110.38645440068802
Iterations: 12
Function evaluations: 124
Gradient evaluations: 12
Iteration: 1, Func. Count: 8, Neg. LLF: 136.57606453121798
Iteration: 2, Func. Count: 17, Neg. LLF: 341.92375496707524
Iteration: 3, Func. Count: 25, Neg. LLF: 138.45973218242906
Iteration: 4, Func. Count: 33, Neg. LLF: 111.89420281206264
Iteration: 5, Func. Count: 40, Neg. LLF: 111.24485906911909
Iteration: 6, Func. Count: 47, Neg. LLF: 111.59746090271364
Iteration: 7, Func. Count: 55, Neg. LLF: 110.549541896877
Iteration: 8, Func. Count: 62, Neg. LLF: 110.63765994370011
Iteration: 9, Func. Count: 70, Neg. LLF: 110.42570388905445
Iteration: 10, Func. Count: 77, Neg. LLF: 110.39285050845044
Iteration: 11, Func. Count: 84, Neg. LLF: 110.38667315311909
Iteration: 12, Func. Count: 91, Neg. LLF: 110.38646137446071
Iteration: 13, Func. Count: 98, Neg. LLF: 110.38645520844524
Iteration: 14, Func. Count: 105, Neg. LLF: 110.38645437522814
Optimization terminated successfully (Exit mode 0)
Current function value: 110.38645437522814
Iterations: 14
Function evaluations: 105
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 116.64413801353683
Iteration: 2, Func. Count: 18, Neg. LLF: 133.47191429605368
Iteration: 3, Func. Count: 27, Neg. LLF: 112.35141099600429
Iteration: 4, Func. Count: 36, Neg. LLF: 110.91835901550016
Iteration: 5, Func. Count: 45, Neg. LLF: 110.47783188582592
Iteration: 6, Func. Count: 53, Neg. LLF: 110.3878983683604
Iteration: 7, Func. Count: 61, Neg. LLF: 110.38657418305186
Iteration: 8, Func. Count: 69, Neg. LLF: 110.38646651911661
Iteration: 9, Func. Count: 77, Neg. LLF: 110.38645501873455
Iteration: 10, Func. Count: 85, Neg. LLF: 110.38645439562599
Optimization terminated successfully (Exit mode 0)
Current function value: 110.38645439562599
Iterations: 10
Function evaluations: 85
Gradient evaluations: 10
Iteration: 1, Func. Count: 10, Neg. LLF: 117.29440885160214
Iteration: 2, Func. Count: 20, Neg. LLF: 137.37450436170857
Iteration: 3, Func. Count: 30, Neg. LLF: 112.37709341052849
Iteration: 4, Func. Count: 40, Neg. LLF: 110.60123708072712
Iteration: 5, Func. Count: 49, Neg. LLF: 110.39849454510818
Iteration: 6, Func. Count: 58, Neg. LLF: 110.38868246712923
Iteration: 7, Func. Count: 67, Neg. LLF: 110.38689464174253
Iteration: 8, Func. Count: 76, Neg. LLF: 110.3866351381549
Iteration: 9, Func. Count: 85, Neg. LLF: 110.38646126582917
Iteration: 10, Func. Count: 94, Neg. LLF: 110.38645504044638
Iteration: 11, Func. Count: 103, Neg. LLF: 110.38645438772966
Optimization terminated successfully (Exit mode 0)
Current function value: 110.38645438772966
Iterations: 11
Function evaluations: 103
Gradient evaluations: 11
Iteration: 1, Func. Count: 11, Neg. LLF: 113.0838690034105
Iteration: 2, Func. Count: 21, Neg. LLF: 133.40628891178167
Iteration: 3, Func. Count: 32, Neg. LLF: 110.86444216097645
Iteration: 4, Func. Count: 42, Neg. LLF: 110.53554316291972
Iteration: 5, Func. Count: 52, Neg. LLF: 110.56235036880699
Iteration: 6, Func. Count: 63, Neg. LLF: 110.66282380972999
Iteration: 7, Func. Count: 74, Neg. LLF: 110.40874997670674
Iteration: 8, Func. Count: 85, Neg. LLF: 110.38651372532907
Iteration: 9, Func. Count: 95, Neg. LLF: 110.38645712666491
Iteration: 10, Func. Count: 105, Neg. LLF: 110.38645440655337
Iteration: 11, Func. Count: 114, Neg. LLF: 110.3864544258026
Optimization terminated successfully (Exit mode 0)
Current function value: 110.38645440655337
Iterations: 11
Function evaluations: 114
Gradient evaluations: 11
Iteration: 1, Func. Count: 12, Neg. LLF: 113.18615176822189
Iteration: 2, Func. Count: 23, Neg. LLF: 131.3893710526391
Iteration: 3, Func. Count: 35, Neg. LLF: 110.9016003337953
Iteration: 4, Func. Count: 46, Neg. LLF: 110.50334513051307
Iteration: 5, Func. Count: 57, Neg. LLF: 110.45838774457677
Iteration: 6, Func. Count: 68, Neg. LLF: 111.04493460126085
Iteration: 7, Func. Count: 80, Neg. LLF: 110.44304712595748
Iteration: 8, Func. Count: 92, Neg. LLF: 110.38712168389637
Iteration: 9, Func. Count: 103, Neg. LLF: 110.38647092790835
Iteration: 10, Func. Count: 114, Neg. LLF: 110.38645442543448
Iteration: 11, Func. Count: 124, Neg. LLF: 110.38645447991578
Optimization terminated successfully (Exit mode 0)
Current function value: 110.38645442543448
Iterations: 11
Function evaluations: 124
Gradient evaluations: 11
Iteration: 1, Func. Count: 5, Neg. LLF: 134.13744908002312
Iteration: 2, Func. Count: 10, Neg. LLF: 133.45307841082425
Iteration: 3, Func. Count: 15, Neg. LLF: 115.79636430401341
Iteration: 4, Func. Count: 19, Neg. LLF: 115.67177433274905
Iteration: 5, Func. Count: 23, Neg. LLF: 115.66529502188162
Iteration: 6, Func. Count: 27, Neg. LLF: 115.66527539365305
Iteration: 7, Func. Count: 31, Neg. LLF: 115.66527438305589
Iteration: 8, Func. Count: 34, Neg. LLF: 115.66527438733591
Optimization terminated successfully (Exit mode 0)
Current function value: 115.66527438305589
Iterations: 8
Function evaluations: 34
Gradient evaluations: 8
Iteration: 1, Func. Count: 6, Neg. LLF: 155.85085701053293
Iteration: 2, Func. Count: 13, Neg. LLF: 116.3566887127338
Iteration: 3, Func. Count: 18, Neg. LLF: 116.32238227145092
Iteration: 4, Func. Count: 23, Neg. LLF: 116.32135353078294
Iteration: 5, Func. Count: 28, Neg. LLF: 116.31576092962095
Iteration: 6, Func. Count: 33, Neg. LLF: 116.26160647647309
Iteration: 7, Func. Count: 38, Neg. LLF: 115.90221590367894
Iteration: 8, Func. Count: 43, Neg. LLF: 117.16833400030953
Iteration: 9, Func. Count: 50, Neg. LLF: 116.46451470199816
Iteration: 10, Func. Count: 59, Neg. LLF: 115.8006062782702
Iteration: 11, Func. Count: 64, Neg. LLF: 115.79880087118848
Iteration: 12, Func. Count: 69, Neg. LLF: 115.7985764077663
Iteration: 13, Func. Count: 74, Neg. LLF: 115.79853885807424
Iteration: 14, Func. Count: 78, Neg. LLF: 115.7985388583218
Optimization terminated successfully (Exit mode 0)
Current function value: 115.79853885807424
Iterations: 14
Function evaluations: 78
Gradient evaluations: 14
Iteration: 1, Func. Count: 7, Neg. LLF: 143.11095984016694
Iteration: 2, Func. Count: 15, Neg. LLF: 116.15270317305425
Iteration: 3, Func. Count: 21, Neg. LLF: 116.02006112842875
Iteration: 4, Func. Count: 27, Neg. LLF: 120.00115544824388
Iteration: 5, Func. Count: 34, Neg. LLF: 116.41054595640057
Iteration: 6, Func. Count: 41, Neg. LLF: 115.88053028957869
Iteration: 7, Func. Count: 48, Neg. LLF: 115.824863408278
Iteration: 8, Func. Count: 55, Neg. LLF: 115.80770228409409
Iteration: 9, Func. Count: 61, Neg. LLF: 115.8076010657206
Iteration: 10, Func. Count: 67, Neg. LLF: 115.80750631479526
Iteration: 11, Func. Count: 73, Neg. LLF: 115.80726047309749
Iteration: 12, Func. Count: 79, Neg. LLF: 115.81640705998011
Iteration: 13, Func. Count: 86, Neg. LLF: 115.84391837296904
Iteration: 14, Func. Count: 93, Neg. LLF: 115.81006614067267
Iteration: 15, Func. Count: 100, Neg. LLF: 115.80680988937003
Iteration: 16, Func. Count: 107, Neg. LLF: 115.80650134118004
Iteration: 17, Func. Count: 113, Neg. LLF: 115.80630424644623
Iteration: 18, Func. Count: 119, Neg. LLF: 115.8062986411624
Iteration: 19, Func. Count: 125, Neg. LLF: 115.80629795040939
Optimization terminated successfully (Exit mode 0)
Current function value: 115.80629795040939
Iterations: 19
Function evaluations: 125
Gradient evaluations: 19
Iteration: 1, Func. Count: 8, Neg. LLF: 137.3852622512025
Iteration: 2, Func. Count: 17, Neg. LLF: 116.01425769013251
Iteration: 3, Func. Count: 24, Neg. LLF: 115.93037333085029
Iteration: 4, Func. Count: 31, Neg. LLF: 116.48485213788618
Iteration: 5, Func. Count: 39, Neg. LLF: 117.81503685097894
Iteration: 6, Func. Count: 48, Neg. LLF: 116.03972966423876
Iteration: 7, Func. Count: 56, Neg. LLF: 115.82740405759807
Iteration: 8, Func. Count: 63, Neg. LLF: 115.8261136002343
Iteration: 9, Func. Count: 70, Neg. LLF: 115.82380232755786
Iteration: 10, Func. Count: 77, Neg. LLF: 115.81551453052674
Iteration: 11, Func. Count: 84, Neg. LLF: 115.81378019523058
Iteration: 12, Func. Count: 91, Neg. LLF: 115.82263313549409
Iteration: 13, Func. Count: 99, Neg. LLF: 115.80783258256406
Iteration: 14, Func. Count: 106, Neg. LLF: 115.80775364851172
Iteration: 15, Func. Count: 113, Neg. LLF: 115.8077204811623
Iteration: 16, Func. Count: 120, Neg. LLF: 115.8076404818723
Iteration: 17, Func. Count: 127, Neg. LLF: 115.8072360963051
Iteration: 18, Func. Count: 134, Neg. LLF: 115.80711450661683
Iteration: 19, Func. Count: 141, Neg. LLF: 115.80665265685529
Iteration: 20, Func. Count: 148, Neg. LLF: 115.80631782784211
Iteration: 21, Func. Count: 155, Neg. LLF: 115.80630398162451
Iteration: 22, Func. Count: 162, Neg. LLF: 115.80629853034586
Iteration: 23, Func. Count: 168, Neg. LLF: 115.8062985312528
Optimization terminated successfully (Exit mode 0)
Current function value: 115.80629853034586
Iterations: 23
Function evaluations: 168
Gradient evaluations: 23
Iteration: 1, Func. Count: 9, Neg. LLF: 134.0602130483295
Iteration: 2, Func. Count: 19, Neg. LLF: 115.94650613744346
Iteration: 3, Func. Count: 27, Neg. LLF: 116.04041067842734
Iteration: 4, Func. Count: 36, Neg. LLF: 116.69420375401944
Iteration: 5, Func. Count: 45, Neg. LLF: 115.861974102876
Iteration: 6, Func. Count: 54, Neg. LLF: 115.84211864095403
Iteration: 7, Func. Count: 62, Neg. LLF: 115.83771275898133
Iteration: 8, Func. Count: 70, Neg. LLF: 115.81242531817809
Iteration: 9, Func. Count: 78, Neg. LLF: 115.80819592151576
Iteration: 10, Func. Count: 86, Neg. LLF: 115.80800838439367
Iteration: 11, Func. Count: 94, Neg. LLF: 115.80799660570104
Iteration: 12, Func. Count: 102, Neg. LLF: 115.80798335470804
Iteration: 13, Func. Count: 110, Neg. LLF: 115.80795827261264
Iteration: 14, Func. Count: 118, Neg. LLF: 115.80767588995384
Iteration: 15, Func. Count: 126, Neg. LLF: 115.84572835517271
Iteration: 16, Func. Count: 135, Neg. LLF: 115.84574481188747
Iteration: 17, Func. Count: 144, Neg. LLF: 115.84522386148781
Iteration: 18, Func. Count: 153, Neg. LLF: 115.85259027067126
Optimization terminated successfully (Exit mode 0)
Current function value: 115.80681084442617
Iterations: 19
Function evaluations: 156
Gradient evaluations: 18
Iteration: 1, Func. Count: 6, Neg. LLF: 137.8188851233414
Iteration: 2, Func. Count: 12, Neg. LLF: 128.56519066730138
Iteration: 3, Func. Count: 18, Neg. LLF: 115.64767540454636
Iteration: 4, Func. Count: 23, Neg. LLF: 115.5723100879333
Iteration: 5, Func. Count: 28, Neg. LLF: 115.56516136380668
Iteration: 6, Func. Count: 33, Neg. LLF: 115.55985946129427
Iteration: 7, Func. Count: 38, Neg. LLF: 115.55983581929469
Iteration: 8, Func. Count: 42, Neg. LLF: 115.55983581929108
Optimization terminated successfully (Exit mode 0)
Current function value: 115.55983581929469
Iterations: 8
Function evaluations: 42
Gradient evaluations: 8
Iteration: 1, Func. Count: 7, Neg. LLF: 120.30683580590245
Iteration: 2, Func. Count: 14, Neg. LLF: 135.90240890189105
Iteration: 3, Func. Count: 21, Neg. LLF: 122.05948011752244
Iteration: 4, Func. Count: 28, Neg. LLF: 114.11453082639146
Iteration: 5, Func. Count: 34, Neg. LLF: 114.04819425467635
Iteration: 6, Func. Count: 40, Neg. LLF: 114.02043301929736
Iteration: 7, Func. Count: 46, Neg. LLF: 114.01772561540126
Iteration: 8, Func. Count: 52, Neg. LLF: 114.01770830769817
Iteration: 9, Func. Count: 57, Neg. LLF: 114.01770827184484
Optimization terminated successfully (Exit mode 0)
Current function value: 114.01770830769817
Iterations: 9
Function evaluations: 57
Gradient evaluations: 9
Iteration: 1, Func. Count: 8, Neg. LLF: 121.50929659181752
Iteration: 2, Func. Count: 16, Neg. LLF: 125.35080279864066
Iteration: 3, Func. Count: 24, Neg. LLF: 122.56275417954198
Iteration: 4, Func. Count: 32, Neg. LLF: 114.15981008846565
Iteration: 5, Func. Count: 39, Neg. LLF: 114.06180468163244
Iteration: 6, Func. Count: 46, Neg. LLF: 114.02163766850624
Iteration: 7, Func. Count: 53, Neg. LLF: 114.01794803670526
Iteration: 8, Func. Count: 60, Neg. LLF: 114.01772620144203
Iteration: 9, Func. Count: 67, Neg. LLF: 114.01770977572275
Iteration: 10, Func. Count: 74, Neg. LLF: 114.0177082696027
Iteration: 11, Func. Count: 80, Neg. LLF: 114.01770828728424
Optimization terminated successfully (Exit mode 0)
Current function value: 114.0177082696027
Iterations: 11
Function evaluations: 80
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 130.43278114044557
Iteration: 2, Func. Count: 18, Neg. LLF: 123.12062938631165
Iteration: 3, Func. Count: 27, Neg. LLF: 115.26964184219338
Iteration: 4, Func. Count: 35, Neg. LLF: 114.14205112093555
Iteration: 5, Func. Count: 43, Neg. LLF: 114.05318073156313
Iteration: 6, Func. Count: 51, Neg. LLF: 114.01778535690835
Iteration: 7, Func. Count: 59, Neg. LLF: 114.01771244477874
Iteration: 8, Func. Count: 67, Neg. LLF: 114.01770828600013
Iteration: 9, Func. Count: 74, Neg. LLF: 114.01770829543844
Optimization terminated successfully (Exit mode 0)
Current function value: 114.01770828600013
Iterations: 9
Function evaluations: 74
Gradient evaluations: 9
Iteration: 1, Func. Count: 10, Neg. LLF: 136.81871913027862
Iteration: 2, Func. Count: 20, Neg. LLF: 115.80718850972562
Iteration: 3, Func. Count: 29, Neg. LLF: 116.13448828147364
Iteration: 4, Func. Count: 39, Neg. LLF: 116.34268722718998
Iteration: 5, Func. Count: 49, Neg. LLF: 113.86979780921483
Iteration: 6, Func. Count: 58, Neg. LLF: 113.86171061188513
Iteration: 7, Func. Count: 67, Neg. LLF: 113.8608916317188
Iteration: 8, Func. Count: 76, Neg. LLF: 113.86079445602992
Iteration: 9, Func. Count: 85, Neg. LLF: 113.8607936365975
Optimization terminated successfully (Exit mode 0)
Current function value: 113.8607936365975
Iterations: 9
Function evaluations: 85
Gradient evaluations: 9
Iteration: 1, Func. Count: 7, Neg. LLF: 114.969237177147
Iteration: 2, Func. Count: 14, Neg. LLF: 145.17587250976533
Iteration: 3, Func. Count: 21, Neg. LLF: 111.58665708141058
Iteration: 4, Func. Count: 27, Neg. LLF: 110.8332251021077
Iteration: 5, Func. Count: 33, Neg. LLF: 110.64572475097268
Iteration: 6, Func. Count: 39, Neg. LLF: 110.59715453855864
Iteration: 7, Func. Count: 45, Neg. LLF: 110.57799251835164
Iteration: 8, Func. Count: 51, Neg. LLF: 110.576163176993
Iteration: 9, Func. Count: 57, Neg. LLF: 110.57573650374944
Iteration: 10, Func. Count: 63, Neg. LLF: 110.57568898994103
Iteration: 11, Func. Count: 69, Neg. LLF: 110.57568584400137
Iteration: 12, Func. Count: 74, Neg. LLF: 110.57568583445467
Optimization terminated successfully (Exit mode 0)
Current function value: 110.57568584400137
Iterations: 12
Function evaluations: 74
Gradient evaluations: 12
Iteration: 1, Func. Count: 8, Neg. LLF: 120.30992042029871
Iteration: 2, Func. Count: 16, Neg. LLF: 127.6607975891863
Iteration: 3, Func. Count: 24, Neg. LLF: 113.00208828045783
Iteration: 4, Func. Count: 32, Neg. LLF: 111.23339360219421
Iteration: 5, Func. Count: 40, Neg. LLF: 110.45280662971939
Iteration: 6, Func. Count: 47, Neg. LLF: 110.40039121123066
Iteration: 7, Func. Count: 54, Neg. LLF: 110.39837127818019
Iteration: 8, Func. Count: 61, Neg. LLF: 110.39835829317693
Iteration: 9, Func. Count: 68, Neg. LLF: 110.39835290137718
Iteration: 10, Func. Count: 74, Neg. LLF: 110.39835286552632
Optimization terminated successfully (Exit mode 0)
Current function value: 110.39835290137718
Iterations: 10
Function evaluations: 74
Gradient evaluations: 10
Iteration: 1, Func. Count: 9, Neg. LLF: 114.10549259265036
Iteration: 2, Func. Count: 17, Neg. LLF: 124.4894509572558
Iteration: 3, Func. Count: 26, Neg. LLF: 112.0601124426939
Iteration: 4, Func. Count: 35, Neg. LLF: 110.79624086835551
Iteration: 5, Func. Count: 44, Neg. LLF: 137.11014856153625
Iteration: 6, Func. Count: 53, Neg. LLF: 110.40925212986366
Iteration: 7, Func. Count: 61, Neg. LLF: 110.4008407276203
Iteration: 8, Func. Count: 69, Neg. LLF: 110.39840087058604
Iteration: 9, Func. Count: 77, Neg. LLF: 110.39835819270267
Iteration: 10, Func. Count: 85, Neg. LLF: 110.39835283952975
Iteration: 11, Func. Count: 92, Neg. LLF: 110.39835283764499
Optimization terminated successfully (Exit mode 0)
Current function value: 110.39835283952975
Iterations: 11
Function evaluations: 92
Gradient evaluations: 11
Iteration: 1, Func. Count: 10, Neg. LLF: 113.70864215804093
Iteration: 2, Func. Count: 19, Neg. LLF: 126.58351875757437
Iteration: 3, Func. Count: 29, Neg. LLF: 111.64184934613104
Iteration: 4, Func. Count: 39, Neg. LLF: 110.75892081201377
Iteration: 5, Func. Count: 49, Neg. LLF: 137.4065448426801
Iteration: 6, Func. Count: 59, Neg. LLF: 110.4074530337371
Iteration: 7, Func. Count: 68, Neg. LLF: 110.40060603066208
Iteration: 8, Func. Count: 77, Neg. LLF: 110.39838568245406
Iteration: 9, Func. Count: 86, Neg. LLF: 110.39835622295013
Iteration: 10, Func. Count: 95, Neg. LLF: 110.39835283454062
Iteration: 11, Func. Count: 103, Neg. LLF: 110.39835285976815
Optimization terminated successfully (Exit mode 0)
Current function value: 110.39835283454062
Iterations: 11
Function evaluations: 103
Gradient evaluations: 11
Iteration: 1, Func. Count: 11, Neg. LLF: 113.93966638856288
Iteration: 2, Func. Count: 21, Neg. LLF: 124.10251371480362
Iteration: 3, Func. Count: 32, Neg. LLF: 111.85594267401797
Iteration: 4, Func. Count: 43, Neg. LLF: 110.77025897816263
Iteration: 5, Func. Count: 54, Neg. LLF: 136.80155868813748
Iteration: 6, Func. Count: 65, Neg. LLF: 110.40839701921999
Iteration: 7, Func. Count: 75, Neg. LLF: 110.40078188011859
Iteration: 8, Func. Count: 85, Neg. LLF: 110.3983942565541
Iteration: 9, Func. Count: 95, Neg. LLF: 110.39835721141883
Iteration: 10, Func. Count: 105, Neg. LLF: 110.39835283396641
Iteration: 11, Func. Count: 114, Neg. LLF: 110.3983528891213
Optimization terminated successfully (Exit mode 0)
Current function value: 110.39835283396641
Iterations: 11
Function evaluations: 114
Gradient evaluations: 11
Iteration: 1, Func. Count: 8, Neg. LLF: 115.50498092130465
Iteration: 2, Func. Count: 16, Neg. LLF: 148.97454655819917
Iteration: 3, Func. Count: 24, Neg. LLF: 111.50584956531934
Iteration: 4, Func. Count: 31, Neg. LLF: 110.77045681548505
Iteration: 5, Func. Count: 38, Neg. LLF: 110.73901573497284
Iteration: 6, Func. Count: 46, Neg. LLF: 110.4154245334322
Iteration: 7, Func. Count: 53, Neg. LLF: 110.39685259920917
Iteration: 8, Func. Count: 60, Neg. LLF: 110.39056879260521
Iteration: 9, Func. Count: 67, Neg. LLF: 110.38744225399249
Iteration: 10, Func. Count: 74, Neg. LLF: 110.3866111201558
Iteration: 11, Func. Count: 81, Neg. LLF: 110.38645724753766
Iteration: 12, Func. Count: 88, Neg. LLF: 110.38645437131761
Iteration: 13, Func. Count: 94, Neg. LLF: 110.38645435496173
Optimization terminated successfully (Exit mode 0)
Current function value: 110.38645437131761
Iterations: 13
Function evaluations: 94
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 120.0330690902295
Iteration: 2, Func. Count: 18, Neg. LLF: 130.22914673086999
Iteration: 3, Func. Count: 27, Neg. LLF: 112.91749549083472
Iteration: 4, Func. Count: 36, Neg. LLF: 110.76220729091189
Iteration: 5, Func. Count: 45, Neg. LLF: 110.64334279033679
Iteration: 6, Func. Count: 54, Neg. LLF: 110.38785210575553
Iteration: 7, Func. Count: 62, Neg. LLF: 110.38651932763987
Iteration: 8, Func. Count: 70, Neg. LLF: 110.38646270714553
Iteration: 9, Func. Count: 78, Neg. LLF: 110.38645526063921
Iteration: 10, Func. Count: 86, Neg. LLF: 110.38645440112346
Optimization terminated successfully (Exit mode 0)
Current function value: 110.38645440112346
Iterations: 10
Function evaluations: 86
Gradient evaluations: 10
Iteration: 1, Func. Count: 10, Neg. LLF: 114.48477216443793
Iteration: 2, Func. Count: 20, Neg. LLF: 137.40678268800312
Iteration: 3, Func. Count: 30, Neg. LLF: 111.11696888299701
Iteration: 4, Func. Count: 39, Neg. LLF: 110.94688498097923
Iteration: 5, Func. Count: 49, Neg. LLF: 110.96459112798767
Iteration: 6, Func. Count: 59, Neg. LLF: 110.41433350368563
Iteration: 7, Func. Count: 69, Neg. LLF: 110.38660917437834
Iteration: 8, Func. Count: 78, Neg. LLF: 110.3864704587078
Iteration: 9, Func. Count: 87, Neg. LLF: 110.38645529001627
Iteration: 10, Func. Count: 96, Neg. LLF: 110.38645437596608
Optimization terminated successfully (Exit mode 0)
Current function value: 110.38645437596608
Iterations: 10
Function evaluations: 96
Gradient evaluations: 10
Iteration: 1, Func. Count: 11, Neg. LLF: 114.25335992137586
Iteration: 2, Func. Count: 22, Neg. LLF: 147.98308504812348
Iteration: 3, Func. Count: 33, Neg. LLF: 111.16036844522601
Iteration: 4, Func. Count: 43, Neg. LLF: 110.90565238188562
Iteration: 5, Func. Count: 54, Neg. LLF: 110.89799196731906
Iteration: 6, Func. Count: 65, Neg. LLF: 110.41186075012897
Iteration: 7, Func. Count: 76, Neg. LLF: 110.38658936617371
Iteration: 8, Func. Count: 86, Neg. LLF: 110.38646438313648
Iteration: 9, Func. Count: 96, Neg. LLF: 110.38645491964992
Iteration: 10, Func. Count: 106, Neg. LLF: 110.38645438254903
Optimization terminated successfully (Exit mode 0)
Current function value: 110.38645438254903
Iterations: 10
Function evaluations: 106
Gradient evaluations: 10
Iteration: 1, Func. Count: 12, Neg. LLF: 114.50316350483165
Iteration: 2, Func. Count: 24, Neg. LLF: 145.17581990855143
Iteration: 3, Func. Count: 36, Neg. LLF: 111.18357215677439
Iteration: 4, Func. Count: 47, Neg. LLF: 110.85704882354518
Iteration: 5, Func. Count: 58, Neg. LLF: 112.32574644688421
Iteration: 6, Func. Count: 70, Neg. LLF: 110.41445463288086
Iteration: 7, Func. Count: 81, Neg. LLF: 110.41687353855428
Iteration: 8, Func. Count: 93, Neg. LLF: 110.38699258491111
Iteration: 9, Func. Count: 104, Neg. LLF: 110.38647827662695
Iteration: 10, Func. Count: 115, Neg. LLF: 110.38645732153513
Iteration: 11, Func. Count: 126, Neg. LLF: 110.38645440235334
Iteration: 12, Func. Count: 136, Neg. LLF: 110.38645445684723
Optimization terminated successfully (Exit mode 0)
Current function value: 110.38645440235334
Iterations: 12
Function evaluations: 136
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 119.22095644333548
Iteration: 2, Func. Count: 18, Neg. LLF: 152.2707213266219
Iteration: 3, Func. Count: 27, Neg. LLF: 111.18649859542485
Iteration: 4, Func. Count: 35, Neg. LLF: 111.1403820156556
Iteration: 5, Func. Count: 44, Neg. LLF: 111.12925484713435
Iteration: 6, Func. Count: 53, Neg. LLF: 110.44728078641447
Iteration: 7, Func. Count: 61, Neg. LLF: 110.40319021998322
Iteration: 8, Func. Count: 69, Neg. LLF: 110.3912945415149
Iteration: 9, Func. Count: 77, Neg. LLF: 110.38658065669533
Iteration: 10, Func. Count: 85, Neg. LLF: 110.38645889718993
Iteration: 11, Func. Count: 93, Neg. LLF: 110.38645438944785
Iteration: 12, Func. Count: 100, Neg. LLF: 110.3864543898384
Optimization terminated successfully (Exit mode 0)
Current function value: 110.38645438944785
Iterations: 12
Function evaluations: 100
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 118.36647627189437
Iteration: 2, Func. Count: 20, Neg. LLF: 131.88714666325558
Iteration: 3, Func. Count: 30, Neg. LLF: 112.51654014553826
Iteration: 4, Func. Count: 40, Neg. LLF: 110.59023133339362
Iteration: 5, Func. Count: 49, Neg. LLF: 110.57805736128383
Iteration: 6, Func. Count: 59, Neg. LLF: 110.53596199565763
Iteration: 7, Func. Count: 69, Neg. LLF: 110.38773120564723
Iteration: 8, Func. Count: 78, Neg. LLF: 110.38660699329313
Iteration: 9, Func. Count: 87, Neg. LLF: 110.38647571145512
Iteration: 10, Func. Count: 96, Neg. LLF: 110.38645563025351
Iteration: 11, Func. Count: 105, Neg. LLF: 110.38645447394639
Iteration: 12, Func. Count: 113, Neg. LLF: 110.38645444246264
Optimization terminated successfully (Exit mode 0)
Current function value: 110.38645447394639
Iterations: 12
Function evaluations: 113
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 113.41501727532884
Iteration: 2, Func. Count: 21, Neg. LLF: 128.83104802875778
Iteration: 3, Func. Count: 32, Neg. LLF: 111.10162025633623
Iteration: 4, Func. Count: 43, Neg. LLF: 110.74492140705121
Iteration: 5, Func. Count: 54, Neg. LLF: 110.40217294698793
Iteration: 6, Func. Count: 64, Neg. LLF: 110.45295443271645
Iteration: 7, Func. Count: 75, Neg. LLF: 110.44264670648509
Iteration: 8, Func. Count: 86, Neg. LLF: 110.38648525504304
Iteration: 9, Func. Count: 96, Neg. LLF: 110.38645837038604
Iteration: 10, Func. Count: 106, Neg. LLF: 110.38645447389145
Iteration: 11, Func. Count: 115, Neg. LLF: 110.3864544634403
Optimization terminated successfully (Exit mode 0)
Current function value: 110.38645447389145
Iterations: 11
Function evaluations: 115
Gradient evaluations: 11
Iteration: 1, Func. Count: 12, Neg. LLF: 113.21267193328772
Iteration: 2, Func. Count: 23, Neg. LLF: 132.70029934921064
Iteration: 3, Func. Count: 35, Neg. LLF: 110.83625127446668
Iteration: 4, Func. Count: 46, Neg. LLF: 110.58140323151325
Iteration: 5, Func. Count: 57, Neg. LLF: 110.50315143047993
Iteration: 6, Func. Count: 68, Neg. LLF: 111.03542887951426
Iteration: 7, Func. Count: 80, Neg. LLF: 110.45517906900437
Iteration: 8, Func. Count: 92, Neg. LLF: 110.38695812619942
Iteration: 9, Func. Count: 103, Neg. LLF: 110.38650391682944
Iteration: 10, Func. Count: 114, Neg. LLF: 110.38645477458164
Iteration: 11, Func. Count: 124, Neg. LLF: 110.38645479381326
Optimization terminated successfully (Exit mode 0)
Current function value: 110.38645477458164
Iterations: 11
Function evaluations: 124
Gradient evaluations: 11
Iteration: 1, Func. Count: 13, Neg. LLF: 113.33556001097777
Iteration: 2, Func. Count: 25, Neg. LLF: 130.77059743998117
Iteration: 3, Func. Count: 38, Neg. LLF: 110.86872765830034
Iteration: 4, Func. Count: 50, Neg. LLF: 110.54990081554557
Iteration: 5, Func. Count: 62, Neg. LLF: 110.45208243233708
Iteration: 6, Func. Count: 74, Neg. LLF: 110.63715872691637
Iteration: 7, Func. Count: 87, Neg. LLF: 110.70933436748116
Iteration: 8, Func. Count: 100, Neg. LLF: 110.38772305536061
Iteration: 9, Func. Count: 112, Neg. LLF: 110.38646112222654
Iteration: 10, Func. Count: 124, Neg. LLF: 110.38645443043274
Iteration: 11, Func. Count: 135, Neg. LLF: 110.38645448493565
Optimization terminated successfully (Exit mode 0)
Current function value: 110.38645443043274
Iterations: 11
Function evaluations: 135
Gradient evaluations: 11
Iteration: 1, Func. Count: 6, Neg. LLF: 133.53866533842958
Iteration: 2, Func. Count: 13, Neg. LLF: 135.91119409418735
Iteration: 3, Func. Count: 19, Neg. LLF: 116.07334763790756
Iteration: 4, Func. Count: 24, Neg. LLF: 115.8878872299706
Iteration: 5, Func. Count: 29, Neg. LLF: 115.76498653352438
Iteration: 6, Func. Count: 34, Neg. LLF: 115.73610506505226
Iteration: 7, Func. Count: 39, Neg. LLF: 115.73378019301116
Iteration: 8, Func. Count: 44, Neg. LLF: 115.73367329420981
Iteration: 9, Func. Count: 49, Neg. LLF: 115.73367155488853
Iteration: 10, Func. Count: 54, Neg. LLF: 115.73367079677273
Optimization terminated successfully (Exit mode 0)
Current function value: 115.73367079677273
Iterations: 10
Function evaluations: 54
Gradient evaluations: 10
Iteration: 1, Func. Count: 7, Neg. LLF: 155.82451246064068
Iteration: 2, Func. Count: 15, Neg. LLF: 116.40622039509617
Iteration: 3, Func. Count: 22, Neg. LLF: 116.32247752127893
Iteration: 4, Func. Count: 28, Neg. LLF: 116.32147441337227
Iteration: 5, Func. Count: 34, Neg. LLF: 116.31587277387099
Iteration: 6, Func. Count: 40, Neg. LLF: 116.26144777087735
Iteration: 7, Func. Count: 46, Neg. LLF: 115.90605046923312
Iteration: 8, Func. Count: 52, Neg. LLF: 117.176720491475
Iteration: 9, Func. Count: 60, Neg. LLF: 116.470486608583
Iteration: 10, Func. Count: 70, Neg. LLF: 115.80065711235622
Iteration: 11, Func. Count: 76, Neg. LLF: 115.79888687067769
Iteration: 12, Func. Count: 82, Neg. LLF: 115.79857713860169
Iteration: 13, Func. Count: 88, Neg. LLF: 115.79853924010104
Iteration: 14, Func. Count: 93, Neg. LLF: 115.79853924062984
Optimization terminated successfully (Exit mode 0)
Current function value: 115.79853924010104
Iterations: 14
Function evaluations: 93
Gradient evaluations: 14
Iteration: 1, Func. Count: 8, Neg. LLF: 142.25695916048485
Iteration: 2, Func. Count: 17, Neg. LLF: 116.20047657575651
Iteration: 3, Func. Count: 24, Neg. LLF: 116.03884165119857
Iteration: 4, Func. Count: 31, Neg. LLF: 115.86641291660085
Iteration: 5, Func. Count: 38, Neg. LLF: 116.83362781998308
Iteration: 6, Func. Count: 47, Neg. LLF: 115.90595263971746
Iteration: 7, Func. Count: 55, Neg. LLF: 115.80826014812267
Iteration: 8, Func. Count: 62, Neg. LLF: 115.80781466583576
Iteration: 9, Func. Count: 69, Neg. LLF: 115.80779189512413
Iteration: 10, Func. Count: 76, Neg. LLF: 115.80769280133885
Iteration: 11, Func. Count: 83, Neg. LLF: 115.80714352889547
Iteration: 12, Func. Count: 90, Neg. LLF: 115.84444759376726
Iteration: 13, Func. Count: 98, Neg. LLF: 115.80690722226738
Iteration: 14, Func. Count: 105, Neg. LLF: 115.8065733745503
Iteration: 15, Func. Count: 112, Neg. LLF: 115.80634917167589
Iteration: 16, Func. Count: 119, Neg. LLF: 115.80630013436449
Iteration: 17, Func. Count: 126, Neg. LLF: 115.8062979765285
Iteration: 18, Func. Count: 132, Neg. LLF: 115.80629797650256
Optimization terminated successfully (Exit mode 0)
Current function value: 115.8062979765285
Iterations: 18
Function evaluations: 132
Gradient evaluations: 18
Iteration: 1, Func. Count: 9, Neg. LLF: 137.12033443376345
Iteration: 2, Func. Count: 19, Neg. LLF: 116.03895752205487
Iteration: 3, Func. Count: 27, Neg. LLF: 115.99248800342625
Iteration: 4, Func. Count: 35, Neg. LLF: 118.339414135719
Iteration: 5, Func. Count: 44, Neg. LLF: 116.53540376329674
Iteration: 6, Func. Count: 53, Neg. LLF: 115.84426866469084
Iteration: 7, Func. Count: 62, Neg. LLF: 115.8318484881964
Iteration: 8, Func. Count: 70, Neg. LLF: 115.82989409323716
Iteration: 9, Func. Count: 78, Neg. LLF: 115.82718852357745
Iteration: 10, Func. Count: 86, Neg. LLF: 115.81840746127726
Iteration: 11, Func. Count: 94, Neg. LLF: 115.82061341033396
Iteration: 12, Func. Count: 103, Neg. LLF: 115.8107229065065
Iteration: 13, Func. Count: 111, Neg. LLF: 115.81052548444775
Iteration: 14, Func. Count: 120, Neg. LLF: 115.80728134073892
Iteration: 15, Func. Count: 128, Neg. LLF: 115.80714601156218
Iteration: 16, Func. Count: 136, Neg. LLF: 115.80682915198256
Iteration: 17, Func. Count: 144, Neg. LLF: 115.80630715879515
Iteration: 18, Func. Count: 152, Neg. LLF: 115.80630183704686
Iteration: 19, Func. Count: 160, Neg. LLF: 115.80629975914256
Iteration: 20, Func. Count: 168, Neg. LLF: 115.80629844965351
Iteration: 21, Func. Count: 175, Neg. LLF: 115.80629844936203
Optimization terminated successfully (Exit mode 0)
Current function value: 115.80629844965351
Iterations: 21
Function evaluations: 175
Gradient evaluations: 21
Iteration: 1, Func. Count: 10, Neg. LLF: 133.98320607401473
Iteration: 2, Func. Count: 21, Neg. LLF: 115.94925389211011
Iteration: 3, Func. Count: 30, Neg. LLF: 115.97124071172718
Iteration: 4, Func. Count: 40, Neg. LLF: 116.22105708220192
Iteration: 5, Func. Count: 50, Neg. LLF: 115.86437290133
Iteration: 6, Func. Count: 60, Neg. LLF: 115.84463095549124
Iteration: 7, Func. Count: 69, Neg. LLF: 115.84105447902495
Iteration: 8, Func. Count: 78, Neg. LLF: 115.83303029523644
Iteration: 9, Func. Count: 87, Neg. LLF: 115.82301344755584
Iteration: 10, Func. Count: 96, Neg. LLF: 115.80880419934219
Iteration: 11, Func. Count: 105, Neg. LLF: 115.80725522164799
Iteration: 12, Func. Count: 114, Neg. LLF: 115.8065573648201
Iteration: 13, Func. Count: 123, Neg. LLF: 115.80633572254551
Iteration: 14, Func. Count: 132, Neg. LLF: 115.80631271002473
Iteration: 15, Func. Count: 141, Neg. LLF: 115.80629842068994
Iteration: 16, Func. Count: 149, Neg. LLF: 115.80629842130087
Optimization terminated successfully (Exit mode 0)
Current function value: 115.80629842068994
Iterations: 16
Function evaluations: 149
Gradient evaluations: 16
Iteration: 1, Func. Count: 7, Neg. LLF: 127.38943404065063
Iteration: 2, Func. Count: 14, Neg. LLF: 132.89388153029176
Iteration: 3, Func. Count: 21, Neg. LLF: 116.53494877845796
Iteration: 4, Func. Count: 27, Neg. LLF: 115.86668358426635
Iteration: 5, Func. Count: 33, Neg. LLF: 116.26284706103506
Iteration: 6, Func. Count: 40, Neg. LLF: 115.92343838191576
Iteration: 7, Func. Count: 47, Neg. LLF: 115.55216870281687
Iteration: 8, Func. Count: 53, Neg. LLF: 115.54906405007648
Iteration: 9, Func. Count: 59, Neg. LLF: 115.54842660804476
Iteration: 10, Func. Count: 65, Neg. LLF: 115.54742181271293
Iteration: 11, Func. Count: 71, Neg. LLF: 115.54742076336193
Iteration: 12, Func. Count: 76, Neg. LLF: 115.54742076336295
Optimization terminated successfully (Exit mode 0)
Current function value: 115.54742076336193
Iterations: 12
Function evaluations: 76
Gradient evaluations: 12
Iteration: 1, Func. Count: 8, Neg. LLF: 120.80968950518451
Iteration: 2, Func. Count: 16, Neg. LLF: 134.19727263115033
Iteration: 3, Func. Count: 24, Neg. LLF: 122.32988193385944
Iteration: 4, Func. Count: 32, Neg. LLF: 114.11051457632868
Iteration: 5, Func. Count: 39, Neg. LLF: 114.0449173696906
Iteration: 6, Func. Count: 46, Neg. LLF: 114.0195623333347
Iteration: 7, Func. Count: 53, Neg. LLF: 114.0177121836704
Iteration: 8, Func. Count: 60, Neg. LLF: 114.01770833012648
Iteration: 9, Func. Count: 66, Neg. LLF: 114.01770829433988
Optimization terminated successfully (Exit mode 0)
Current function value: 114.01770833012648
Iterations: 9
Function evaluations: 66
Gradient evaluations: 9
Iteration: 1, Func. Count: 9, Neg. LLF: 120.87619299663262
Iteration: 2, Func. Count: 18, Neg. LLF: 125.79713384024274
Iteration: 3, Func. Count: 27, Neg. LLF: 122.64040447165105
Iteration: 4, Func. Count: 36, Neg. LLF: 114.16791530724741
Iteration: 5, Func. Count: 44, Neg. LLF: 114.07155667402809
Iteration: 6, Func. Count: 52, Neg. LLF: 114.02341795618028
Iteration: 7, Func. Count: 60, Neg. LLF: 114.0180369859965
Iteration: 8, Func. Count: 68, Neg. LLF: 114.0177296425563
Iteration: 9, Func. Count: 76, Neg. LLF: 114.01771059533404
Iteration: 10, Func. Count: 84, Neg. LLF: 114.01770826651972
Iteration: 11, Func. Count: 91, Neg. LLF: 114.01770828420115
Optimization terminated successfully (Exit mode 0)
Current function value: 114.01770826651972
Iterations: 11
Function evaluations: 91
Gradient evaluations: 11
Iteration: 1, Func. Count: 10, Neg. LLF: 129.03762254022564
Iteration: 2, Func. Count: 20, Neg. LLF: 123.8145494544021
Iteration: 3, Func. Count: 30, Neg. LLF: 115.94447443261816
Iteration: 4, Func. Count: 39, Neg. LLF: 114.1464268300355
Iteration: 5, Func. Count: 48, Neg. LLF: 114.05154226510102
Iteration: 6, Func. Count: 57, Neg. LLF: 114.01821056140992
Iteration: 7, Func. Count: 66, Neg. LLF: 114.01772167495393
Iteration: 8, Func. Count: 75, Neg. LLF: 114.0177083164167
Iteration: 9, Func. Count: 83, Neg. LLF: 114.01770832584177
Optimization terminated successfully (Exit mode 0)
Current function value: 114.0177083164167
Iterations: 9
Function evaluations: 83
Gradient evaluations: 9
Iteration: 1, Func. Count: 11, Neg. LLF: 134.75915045163933
Iteration: 2, Func. Count: 22, Neg. LLF: 116.26191842547884
Iteration: 3, Func. Count: 33, Neg. LLF: 116.5641508038177
Iteration: 4, Func. Count: 44, Neg. LLF: 114.00697707609389
Iteration: 5, Func. Count: 54, Neg. LLF: 113.87364754631807
Iteration: 6, Func. Count: 64, Neg. LLF: 113.8611917513673
Iteration: 7, Func. Count: 74, Neg. LLF: 113.86084518371939
Iteration: 8, Func. Count: 84, Neg. LLF: 113.86079382124558
Iteration: 9, Func. Count: 93, Neg. LLF: 113.86079378341913
Optimization terminated successfully (Exit mode 0)
Current function value: 113.86079382124558
Iterations: 9
Function evaluations: 93
Gradient evaluations: 9
Iteration: 1, Func. Count: 8, Neg. LLF: 148.86606464295704
Iteration: 2, Func. Count: 16, Neg. LLF: 135.56558134880402
Iteration: 3, Func. Count: 24, Neg. LLF: 111.6172894264292
Iteration: 4, Func. Count: 31, Neg. LLF: 111.11593217473006
Iteration: 5, Func. Count: 38, Neg. LLF: 111.16609872902315
Iteration: 6, Func. Count: 46, Neg. LLF: 110.68234408588671
Iteration: 7, Func. Count: 53, Neg. LLF: 111.12975546248619
Iteration: 8, Func. Count: 61, Neg. LLF: 110.71247656609422
Iteration: 9, Func. Count: 69, Neg. LLF: 110.57007893957532
Iteration: 10, Func. Count: 76, Neg. LLF: 110.56906008200497
Iteration: 11, Func. Count: 83, Neg. LLF: 110.56903377578128
Iteration: 12, Func. Count: 90, Neg. LLF: 110.5690323732718
Iteration: 13, Func. Count: 96, Neg. LLF: 110.5690323638072
Optimization terminated successfully (Exit mode 0)
Current function value: 110.5690323732718
Iterations: 13
Function evaluations: 96
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 121.06672289510996
Iteration: 2, Func. Count: 18, Neg. LLF: 127.32590744176882
Iteration: 3, Func. Count: 27, Neg. LLF: 113.16084674153852
Iteration: 4, Func. Count: 36, Neg. LLF: 113.08904560243714
Iteration: 5, Func. Count: 45, Neg. LLF: 111.96249371041272
Iteration: 6, Func. Count: 54, Neg. LLF: 110.7607705478145
Iteration: 7, Func. Count: 63, Neg. LLF: 110.40768653557753
Iteration: 8, Func. Count: 71, Neg. LLF: 110.39176287172675
Iteration: 9, Func. Count: 79, Neg. LLF: 110.38786423498313
Iteration: 10, Func. Count: 87, Neg. LLF: 110.3874254161692
Iteration: 11, Func. Count: 95, Neg. LLF: 110.38737612003868
Iteration: 12, Func. Count: 103, Neg. LLF: 110.38737361230292
Iteration: 13, Func. Count: 110, Neg. LLF: 110.38737357642955
Optimization terminated successfully (Exit mode 0)
Current function value: 110.38737361230292
Iterations: 13
Function evaluations: 110
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 119.58527709172888
Iteration: 2, Func. Count: 20, Neg. LLF: 130.54792870890404
Iteration: 3, Func. Count: 30, Neg. LLF: 112.40259026494037
Iteration: 4, Func. Count: 40, Neg. LLF: 110.45455680016973
Iteration: 5, Func. Count: 49, Neg. LLF: 111.27786390759009
Iteration: 6, Func. Count: 59, Neg. LLF: 110.42854471683222
Iteration: 7, Func. Count: 69, Neg. LLF: 110.46769578699066
Iteration: 8, Func. Count: 79, Neg. LLF: 110.39005473547856
Iteration: 9, Func. Count: 89, Neg. LLF: 110.38737614076985
Iteration: 10, Func. Count: 98, Neg. LLF: 110.38737362855258
Iteration: 11, Func. Count: 106, Neg. LLF: 110.38737363192817
Optimization terminated successfully (Exit mode 0)
Current function value: 110.38737362855258
Iterations: 11
Function evaluations: 106
Gradient evaluations: 11
Iteration: 1, Func. Count: 11, Neg. LLF: 114.37784120179742
Iteration: 2, Func. Count: 22, Neg. LLF: 143.09605397817896
Iteration: 3, Func. Count: 33, Neg. LLF: 111.1716134527583
Iteration: 4, Func. Count: 43, Neg. LLF: 110.59393228296943
Iteration: 5, Func. Count: 53, Neg. LLF: 112.25623126724469
Iteration: 6, Func. Count: 65, Neg. LLF: 119.85679856815212
Iteration: 7, Func. Count: 76, Neg. LLF: 110.39099801069348
Iteration: 8, Func. Count: 86, Neg. LLF: 110.40945106652681
Iteration: 9, Func. Count: 97, Neg. LLF: 110.38746232024504
Iteration: 10, Func. Count: 107, Neg. LLF: 110.3873786958866
Iteration: 11, Func. Count: 117, Neg. LLF: 110.3873738411583
Iteration: 12, Func. Count: 126, Neg. LLF: 110.38737386885968
Optimization terminated successfully (Exit mode 0)
Current function value: 110.3873738411583
Iterations: 12
Function evaluations: 126
Gradient evaluations: 12
Iteration: 1, Func. Count: 12, Neg. LLF: 114.68728907580545
Iteration: 2, Func. Count: 24, Neg. LLF: 139.56702415833857
Iteration: 3, Func. Count: 36, Neg. LLF: 111.19970882866306
Iteration: 4, Func. Count: 47, Neg. LLF: 110.56806355564646
Iteration: 5, Func. Count: 58, Neg. LLF: 112.49645946754727
Iteration: 6, Func. Count: 71, Neg. LLF: 117.31275942536381
Iteration: 7, Func. Count: 83, Neg. LLF: 110.40040488098296
Iteration: 8, Func. Count: 94, Neg. LLF: 110.45343461946351
Iteration: 9, Func. Count: 106, Neg. LLF: 110.3876559230582
Iteration: 10, Func. Count: 117, Neg. LLF: 110.3873799185907
Iteration: 11, Func. Count: 128, Neg. LLF: 110.38737416917948
Iteration: 12, Func. Count: 139, Neg. LLF: 110.387373602291
Optimization terminated successfully (Exit mode 0)
Current function value: 110.387373602291
Iterations: 12
Function evaluations: 139
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 149.75768786257785
Iteration: 2, Func. Count: 18, Neg. LLF: 139.14048553137835
Iteration: 3, Func. Count: 27, Neg. LLF: 111.79557332241522
Iteration: 4, Func. Count: 35, Neg. LLF: 111.20189091465335
Iteration: 5, Func. Count: 43, Neg. LLF: 112.82232081237112
Iteration: 6, Func. Count: 52, Neg. LLF: 110.62034484699741
Iteration: 7, Func. Count: 60, Neg. LLF: 122.003982975961
Iteration: 8, Func. Count: 69, Neg. LLF: 110.6765185770036
Iteration: 9, Func. Count: 78, Neg. LLF: 110.55775669444428
Iteration: 10, Func. Count: 87, Neg. LLF: 110.3514726058871
Iteration: 11, Func. Count: 95, Neg. LLF: 110.34940855301207
Iteration: 12, Func. Count: 103, Neg. LLF: 110.34928971399489
Iteration: 13, Func. Count: 111, Neg. LLF: 110.34924334902199
Iteration: 14, Func. Count: 119, Neg. LLF: 110.34924287535544
Optimization terminated successfully (Exit mode 0)
Current function value: 110.34924287535544
Iterations: 14
Function evaluations: 119
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 120.83282999118349
Iteration: 2, Func. Count: 20, Neg. LLF: 129.65189213990467
Iteration: 3, Func. Count: 30, Neg. LLF: 113.09151649863077
Iteration: 4, Func. Count: 40, Neg. LLF: 113.18978893968811
Iteration: 5, Func. Count: 50, Neg. LLF: 111.82420252515792
Iteration: 6, Func. Count: 60, Neg. LLF: 110.97988933231923
Iteration: 7, Func. Count: 70, Neg. LLF: 110.35238562139833
Iteration: 8, Func. Count: 79, Neg. LLF: 110.34986908872078
Iteration: 9, Func. Count: 88, Neg. LLF: 110.3492467173505
Iteration: 10, Func. Count: 97, Neg. LLF: 110.34924305459998
Iteration: 11, Func. Count: 105, Neg. LLF: 110.34924302561602
Optimization terminated successfully (Exit mode 0)
Current function value: 110.34924305459998
Iterations: 11
Function evaluations: 105
Gradient evaluations: 11
Iteration: 1, Func. Count: 11, Neg. LLF: 115.03502871746566
Iteration: 2, Func. Count: 22, Neg. LLF: 136.03547245894956
Iteration: 3, Func. Count: 33, Neg. LLF: 111.20868414454753
Iteration: 4, Func. Count: 43, Neg. LLF: 110.97402231763209
Iteration: 5, Func. Count: 54, Neg. LLF: 119.27735668608895
Iteration: 6, Func. Count: 68, Neg. LLF: 110.77861619910526
Iteration: 7, Func. Count: 79, Neg. LLF: 110.62738150442773
Iteration: 8, Func. Count: 90, Neg. LLF: 110.35033344636582
Iteration: 9, Func. Count: 100, Neg. LLF: 110.34925945287351
Iteration: 10, Func. Count: 110, Neg. LLF: 110.34924313131822
Iteration: 11, Func. Count: 119, Neg. LLF: 110.34924313032168
Optimization terminated successfully (Exit mode 0)
Current function value: 110.34924313131822
Iterations: 11
Function evaluations: 119
Gradient evaluations: 11
Iteration: 1, Func. Count: 12, Neg. LLF: 115.04486643779171
Iteration: 2, Func. Count: 24, Neg. LLF: 145.71908151655342
Iteration: 3, Func. Count: 36, Neg. LLF: 111.30369800148482
Iteration: 4, Func. Count: 47, Neg. LLF: 110.95156808164627
Iteration: 5, Func. Count: 58, Neg. LLF: 120.36241149097026
Iteration: 6, Func. Count: 72, Neg. LLF: 111.17895675468249
Iteration: 7, Func. Count: 84, Neg. LLF: 110.95106110936298
Iteration: 8, Func. Count: 96, Neg. LLF: 110.52720905388095
Iteration: 9, Func. Count: 108, Neg. LLF: 110.35303832506168
Iteration: 10, Func. Count: 119, Neg. LLF: 110.34994099215234
Iteration: 11, Func. Count: 130, Neg. LLF: 110.34931726073009
Iteration: 12, Func. Count: 141, Neg. LLF: 110.34924432532425
Iteration: 13, Func. Count: 152, Neg. LLF: 110.34924291812992
Iteration: 14, Func. Count: 162, Neg. LLF: 110.34924294121251
Optimization terminated successfully (Exit mode 0)
Current function value: 110.34924291812992
Iterations: 14
Function evaluations: 162
Gradient evaluations: 14
Iteration: 1, Func. Count: 13, Neg. LLF: 115.37437361422752
Iteration: 2, Func. Count: 26, Neg. LLF: 143.22935213911708
Iteration: 3, Func. Count: 39, Neg. LLF: 111.33984363251768
Iteration: 4, Func. Count: 51, Neg. LLF: 110.91380609281273
Iteration: 5, Func. Count: 63, Neg. LLF: 119.64021509656247
Iteration: 6, Func. Count: 78, Neg. LLF: 111.16557835734254
Iteration: 7, Func. Count: 91, Neg. LLF: 111.0317835778107
Iteration: 8, Func. Count: 104, Neg. LLF: 110.52482092524487
Iteration: 9, Func. Count: 117, Neg. LLF: 110.35255382856056
Iteration: 10, Func. Count: 129, Neg. LLF: 110.35004533979605
Iteration: 11, Func. Count: 141, Neg. LLF: 110.34930143132124
Iteration: 12, Func. Count: 153, Neg. LLF: 110.34924506984544
Iteration: 13, Func. Count: 165, Neg. LLF: 110.34924295907591
Iteration: 14, Func. Count: 176, Neg. LLF: 110.3492430177554
Optimization terminated successfully (Exit mode 0)
Current function value: 110.34924295907591
Iterations: 14
Function evaluations: 176
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 145.00478264467725
Iteration: 2, Func. Count: 20, Neg. LLF: 146.26299012941516
Iteration: 3, Func. Count: 30, Neg. LLF: 112.00966999504695
Iteration: 4, Func. Count: 39, Neg. LLF: 111.33386432771749
Iteration: 5, Func. Count: 48, Neg. LLF: 112.65248424170856
Iteration: 6, Func. Count: 58, Neg. LLF: 110.676369878855
Iteration: 7, Func. Count: 67, Neg. LLF: 124.67086254866837
Iteration: 8, Func. Count: 77, Neg. LLF: 110.78293899459233
Iteration: 9, Func. Count: 87, Neg. LLF: 110.90103993108653
Iteration: 10, Func. Count: 97, Neg. LLF: 110.35205541615409
Iteration: 11, Func. Count: 106, Neg. LLF: 110.34939170677806
Iteration: 12, Func. Count: 115, Neg. LLF: 110.3492874080768
Iteration: 13, Func. Count: 124, Neg. LLF: 110.34925225923415
Iteration: 14, Func. Count: 133, Neg. LLF: 110.34924298338774
Iteration: 15, Func. Count: 141, Neg. LLF: 110.34924298920538
Optimization terminated successfully (Exit mode 0)
Current function value: 110.34924298338774
Iterations: 15
Function evaluations: 141
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 119.0768059503593
Iteration: 2, Func. Count: 22, Neg. LLF: 131.1429396203226
Iteration: 3, Func. Count: 33, Neg. LLF: 112.6701705674925
Iteration: 4, Func. Count: 44, Neg. LLF: 112.7222784257115
Iteration: 5, Func. Count: 55, Neg. LLF: 111.70175627700321
Iteration: 6, Func. Count: 66, Neg. LLF: 110.95277230701222
Iteration: 7, Func. Count: 77, Neg. LLF: 110.35391332225319
Iteration: 8, Func. Count: 87, Neg. LLF: 110.35029504279478
Iteration: 9, Func. Count: 97, Neg. LLF: 110.34929315860835
Iteration: 10, Func. Count: 107, Neg. LLF: 110.34924768885318
Iteration: 11, Func. Count: 117, Neg. LLF: 110.34924345668051
Iteration: 12, Func. Count: 127, Neg. LLF: 110.34924287105746
Optimization terminated successfully (Exit mode 0)
Current function value: 110.34924287105746
Iterations: 12
Function evaluations: 127
Gradient evaluations: 12
Iteration: 1, Func. Count: 12, Neg. LLF: 113.85867087175886
Iteration: 2, Func. Count: 23, Neg. LLF: 127.06614612683587
Iteration: 3, Func. Count: 35, Neg. LLF: 111.15238986081833
Iteration: 4, Func. Count: 47, Neg. LLF: 110.76470609901786
Iteration: 5, Func. Count: 59, Neg. LLF: 140.56704392729247
Iteration: 6, Func. Count: 72, Neg. LLF: 110.36631182528113
Iteration: 7, Func. Count: 83, Neg. LLF: 110.48608348200234
Iteration: 8, Func. Count: 95, Neg. LLF: 110.35605859101724
Iteration: 9, Func. Count: 107, Neg. LLF: 110.34941387309841
Iteration: 10, Func. Count: 118, Neg. LLF: 110.34924368462721
Iteration: 11, Func. Count: 129, Neg. LLF: 110.34924302462596
Optimization terminated successfully (Exit mode 0)
Current function value: 110.34924302462596
Iterations: 11
Function evaluations: 129
Gradient evaluations: 11
Iteration: 1, Func. Count: 13, Neg. LLF: 113.85635438973353
Iteration: 2, Func. Count: 25, Neg. LLF: 129.5279229274995
Iteration: 3, Func. Count: 38, Neg. LLF: 110.87678655335195
Iteration: 4, Func. Count: 50, Neg. LLF: 110.55443029365865
Iteration: 5, Func. Count: 62, Neg. LLF: 112.18285821136375
Iteration: 6, Func. Count: 76, Neg. LLF: 111.25665418610713
Iteration: 7, Func. Count: 89, Neg. LLF: 111.3394287314227
Iteration: 8, Func. Count: 102, Neg. LLF: 110.35175916371962
Iteration: 9, Func. Count: 114, Neg. LLF: 110.35174176738528
Iteration: 10, Func. Count: 127, Neg. LLF: 110.34930389562231
Iteration: 11, Func. Count: 139, Neg. LLF: 110.34924441083416
Iteration: 12, Func. Count: 151, Neg. LLF: 110.3492428809933
Iteration: 13, Func. Count: 162, Neg. LLF: 110.34924290405111
Optimization terminated successfully (Exit mode 0)
Current function value: 110.3492428809933
Iterations: 13
Function evaluations: 162
Gradient evaluations: 13
Iteration: 1, Func. Count: 14, Neg. LLF: 114.03583882898921
Iteration: 2, Func. Count: 27, Neg. LLF: 127.76555534690378
Iteration: 3, Func. Count: 41, Neg. LLF: 110.90200643697531
Iteration: 4, Func. Count: 54, Neg. LLF: 110.5428201657522
Iteration: 5, Func. Count: 67, Neg. LLF: 112.27666604603284
Iteration: 6, Func. Count: 82, Neg. LLF: 111.56023382178508
Iteration: 7, Func. Count: 96, Neg. LLF: 110.94532300628877
Iteration: 8, Func. Count: 110, Neg. LLF: 110.35115809412262
Iteration: 9, Func. Count: 123, Neg. LLF: 110.35002090241096
Iteration: 10, Func. Count: 136, Neg. LLF: 110.34937208448406
Iteration: 11, Func. Count: 149, Neg. LLF: 110.34924644738221
Iteration: 12, Func. Count: 162, Neg. LLF: 110.3492428789034
Iteration: 13, Func. Count: 174, Neg. LLF: 110.34924293758385
Optimization terminated successfully (Exit mode 0)
Current function value: 110.3492428789034
Iterations: 13
Function evaluations: 174
Gradient evaluations: 13
Iteration: 1, Func. Count: 7, Neg. LLF: 144.5012056304713
Iteration: 2, Func. Count: 15, Neg. LLF: 136.0340031833724
Iteration: 3, Func. Count: 22, Neg. LLF: 116.22777138726121
Iteration: 4, Func. Count: 28, Neg. LLF: 115.7728083449321
Iteration: 5, Func. Count: 34, Neg. LLF: 115.73656847125463
Iteration: 6, Func. Count: 40, Neg. LLF: 115.7338705705941
Iteration: 7, Func. Count: 46, Neg. LLF: 115.7336933075904
Iteration: 8, Func. Count: 52, Neg. LLF: 115.7336732325701
Iteration: 9, Func. Count: 58, Neg. LLF: 115.73367146323574
Iteration: 10, Func. Count: 64, Neg. LLF: 115.73367080133184
Optimization terminated successfully (Exit mode 0)
Current function value: 115.73367080133184
Iterations: 10
Function evaluations: 64
Gradient evaluations: 10
Iteration: 1, Func. Count: 8, Neg. LLF: 155.9090988269853
Iteration: 2, Func. Count: 17, Neg. LLF: 116.37355634104138
Iteration: 3, Func. Count: 24, Neg. LLF: 116.32244836020875
Iteration: 4, Func. Count: 31, Neg. LLF: 116.32141307266981
Iteration: 5, Func. Count: 38, Neg. LLF: 116.31537683027551
Iteration: 6, Func. Count: 45, Neg. LLF: 116.25175256039344
Iteration: 7, Func. Count: 52, Neg. LLF: 115.92055078258116
Iteration: 8, Func. Count: 59, Neg. LLF: 119.99746628642042
Iteration: 9, Func. Count: 68, Neg. LLF: 116.49150897461884
Iteration: 10, Func. Count: 79, Neg. LLF: 115.79939616833455
Iteration: 11, Func. Count: 86, Neg. LLF: 115.79872480850128
Iteration: 12, Func. Count: 93, Neg. LLF: 115.7985608115456
Iteration: 13, Func. Count: 100, Neg. LLF: 115.798539138281
Iteration: 14, Func. Count: 106, Neg. LLF: 115.79853913861086
Optimization terminated successfully (Exit mode 0)
Current function value: 115.798539138281
Iterations: 14
Function evaluations: 106
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 142.66896481474802
Iteration: 2, Func. Count: 19, Neg. LLF: 116.17793282441818
Iteration: 3, Func. Count: 27, Neg. LLF: 116.27852062677223
Iteration: 4, Func. Count: 36, Neg. LLF: 116.19970466924725
Iteration: 5, Func. Count: 45, Neg. LLF: 116.36275527546768
Iteration: 6, Func. Count: 54, Neg. LLF: 115.92457401561629
Iteration: 7, Func. Count: 62, Neg. LLF: 117.44650543535118
Iteration: 8, Func. Count: 71, Neg. LLF: 115.98324431027008
Iteration: 9, Func. Count: 80, Neg. LLF: 115.83564673851794
Iteration: 10, Func. Count: 89, Neg. LLF: 115.81035888485415
Iteration: 11, Func. Count: 97, Neg. LLF: 115.8084870939301
Iteration: 12, Func. Count: 105, Neg. LLF: 115.8076183570181
Iteration: 13, Func. Count: 113, Neg. LLF: 115.80676285460126
Iteration: 14, Func. Count: 121, Neg. LLF: 115.80639789166321
Iteration: 15, Func. Count: 129, Neg. LLF: 115.80631216196319
Iteration: 16, Func. Count: 137, Neg. LLF: 115.80629908147282
Iteration: 17, Func. Count: 145, Neg. LLF: 115.80629797855121
Iteration: 18, Func. Count: 152, Neg. LLF: 115.80629797853477
Optimization terminated successfully (Exit mode 0)
Current function value: 115.80629797855121
Iterations: 18
Function evaluations: 152
Gradient evaluations: 18
Iteration: 1, Func. Count: 10, Neg. LLF: 137.88978016082464
Iteration: 2, Func. Count: 21, Neg. LLF: 115.9965302595014
Iteration: 3, Func. Count: 30, Neg. LLF: 116.96337129819754
Iteration: 4, Func. Count: 40, Neg. LLF: 117.33527533401339
Iteration: 5, Func. Count: 50, Neg. LLF: 115.8770526367711
Iteration: 6, Func. Count: 59, Neg. LLF: 115.88066653048188
Iteration: 7, Func. Count: 69, Neg. LLF: 115.87266888049002
Iteration: 8, Func. Count: 79, Neg. LLF: 115.8256107083383
Iteration: 9, Func. Count: 88, Neg. LLF: 115.82156462437274
Iteration: 10, Func. Count: 97, Neg. LLF: 115.81621961996376
Iteration: 11, Func. Count: 106, Neg. LLF: 115.80995854845497
Iteration: 12, Func. Count: 115, Neg. LLF: 115.8074971553147
Iteration: 13, Func. Count: 124, Neg. LLF: 115.80674530466759
Iteration: 14, Func. Count: 133, Neg. LLF: 115.80648602855211
Iteration: 15, Func. Count: 142, Neg. LLF: 115.806376505415
Iteration: 16, Func. Count: 151, Neg. LLF: 115.80630261611617
Iteration: 17, Func. Count: 160, Neg. LLF: 115.80629820130494
Iteration: 18, Func. Count: 168, Neg. LLF: 115.80629820146955
Optimization terminated successfully (Exit mode 0)
Current function value: 115.80629820130494
Iterations: 18
Function evaluations: 168
Gradient evaluations: 18
Iteration: 1, Func. Count: 11, Neg. LLF: 134.35007112608383
Iteration: 2, Func. Count: 22, Neg. LLF: 116.01927680475013
Iteration: 3, Func. Count: 32, Neg. LLF: 119.120961197387
Iteration: 4, Func. Count: 43, Neg. LLF: 116.21901191880991
Iteration: 5, Func. Count: 54, Neg. LLF: 115.88010179740155
Iteration: 6, Func. Count: 64, Neg. LLF: 115.85091662556859
Iteration: 7, Func. Count: 74, Neg. LLF: 115.84792417098845
Iteration: 8, Func. Count: 84, Neg. LLF: 115.84269010330434
Iteration: 9, Func. Count: 94, Neg. LLF: 115.83800158420539
Iteration: 10, Func. Count: 104, Neg. LLF: 115.81821174149592
Iteration: 11, Func. Count: 114, Neg. LLF: 115.81222600936697
Iteration: 12, Func. Count: 124, Neg. LLF: 115.81217684685801
Iteration: 13, Func. Count: 135, Neg. LLF: 115.80806361655637
Iteration: 14, Func. Count: 145, Neg. LLF: 115.80666006844595
Iteration: 15, Func. Count: 155, Neg. LLF: 115.80654025606927
Iteration: 16, Func. Count: 165, Neg. LLF: 115.8064578801428
Iteration: 17, Func. Count: 175, Neg. LLF: 115.80633261305564
Iteration: 18, Func. Count: 185, Neg. LLF: 115.80630249142848
Iteration: 19, Func. Count: 195, Neg. LLF: 115.80629819308953
Iteration: 20, Func. Count: 204, Neg. LLF: 115.80629819410659
Optimization terminated successfully (Exit mode 0)
Current function value: 115.80629819308953
Iterations: 20
Function evaluations: 204
Gradient evaluations: 20
Iteration: 1, Func. Count: 8, Neg. LLF: 138.2083827493225
Iteration: 2, Func. Count: 17, Neg. LLF: 134.9254693601994
Iteration: 3, Func. Count: 25, Neg. LLF: 115.86207170876628
Iteration: 4, Func. Count: 32, Neg. LLF: 116.4457648653375
Iteration: 5, Func. Count: 40, Neg. LLF: 116.1872342777327
Iteration: 6, Func. Count: 48, Neg. LLF: 115.58315020221785
Iteration: 7, Func. Count: 55, Neg. LLF: 115.55472220040832
Iteration: 8, Func. Count: 62, Neg. LLF: 115.54805545916335
Iteration: 9, Func. Count: 69, Neg. LLF: 115.54758249051888
Iteration: 10, Func. Count: 76, Neg. LLF: 115.54744199398996
Iteration: 11, Func. Count: 83, Neg. LLF: 115.54742508118977
Iteration: 12, Func. Count: 90, Neg. LLF: 115.54742086200633
Iteration: 13, Func. Count: 96, Neg. LLF: 115.54742086202567
Optimization terminated successfully (Exit mode 0)
Current function value: 115.54742086200633
Iterations: 13
Function evaluations: 96
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 120.54382723884669
Iteration: 2, Func. Count: 18, Neg. LLF: 136.13700440834307
Iteration: 3, Func. Count: 27, Neg. LLF: 122.3474097505781
Iteration: 4, Func. Count: 36, Neg. LLF: 114.1151603104921
Iteration: 5, Func. Count: 44, Neg. LLF: 114.04956159490767
Iteration: 6, Func. Count: 52, Neg. LLF: 114.02015658637204
Iteration: 7, Func. Count: 60, Neg. LLF: 114.01772435361544
Iteration: 8, Func. Count: 68, Neg. LLF: 114.01770830121436
Iteration: 9, Func. Count: 75, Neg. LLF: 114.01770826536548
Optimization terminated successfully (Exit mode 0)
Current function value: 114.01770830121436
Iterations: 9
Function evaluations: 75
Gradient evaluations: 9
Iteration: 1, Func. Count: 10, Neg. LLF: 121.37004480504312
Iteration: 2, Func. Count: 20, Neg. LLF: 125.65713089198964
Iteration: 3, Func. Count: 30, Neg. LLF: 122.85424202148637
Iteration: 4, Func. Count: 40, Neg. LLF: 114.16595398692158
Iteration: 5, Func. Count: 49, Neg. LLF: 114.06553916448706
Iteration: 6, Func. Count: 58, Neg. LLF: 114.021973116133
Iteration: 7, Func. Count: 67, Neg. LLF: 114.01795064058217
Iteration: 8, Func. Count: 76, Neg. LLF: 114.0177277862946
Iteration: 9, Func. Count: 85, Neg. LLF: 114.01770968990013
Iteration: 10, Func. Count: 94, Neg. LLF: 114.01770826400227
Iteration: 11, Func. Count: 102, Neg. LLF: 114.01770828168489
Optimization terminated successfully (Exit mode 0)
Current function value: 114.01770826400227
Iterations: 11
Function evaluations: 102
Gradient evaluations: 11
Iteration: 1, Func. Count: 11, Neg. LLF: 131.66261024476876
Iteration: 2, Func. Count: 22, Neg. LLF: 123.18211132365798
Iteration: 3, Func. Count: 33, Neg. LLF: 115.74911461601947
Iteration: 4, Func. Count: 43, Neg. LLF: 114.13975741596064
Iteration: 5, Func. Count: 53, Neg. LLF: 114.0495122958391
Iteration: 6, Func. Count: 63, Neg. LLF: 114.01810859038804
Iteration: 7, Func. Count: 73, Neg. LLF: 114.0177199201605
Iteration: 8, Func. Count: 83, Neg. LLF: 114.01770832703468
Iteration: 9, Func. Count: 92, Neg. LLF: 114.01770833647171
Optimization terminated successfully (Exit mode 0)
Current function value: 114.01770832703468
Iterations: 9
Function evaluations: 92
Gradient evaluations: 9
Iteration: 1, Func. Count: 12, Neg. LLF: 137.61979172633656
Iteration: 2, Func. Count: 24, Neg. LLF: 115.97271533559635
Iteration: 3, Func. Count: 36, Neg. LLF: 116.7033515161592
Iteration: 4, Func. Count: 48, Neg. LLF: 113.99900337893926
Iteration: 5, Func. Count: 59, Neg. LLF: 113.86958398796546
Iteration: 6, Func. Count: 70, Neg. LLF: 113.8611950614505
Iteration: 7, Func. Count: 81, Neg. LLF: 113.86084757472364
Iteration: 8, Func. Count: 92, Neg. LLF: 113.86079366409051
Iteration: 9, Func. Count: 102, Neg. LLF: 113.86079362631077
Optimization terminated successfully (Exit mode 0)
Current function value: 113.86079366409051
Iterations: 9
Function evaluations: 102
Gradient evaluations: 9
Iteration: 1, Func. Count: 9, Neg. LLF: 162.45354325150316
Iteration: 2, Func. Count: 19, Neg. LLF: 147.1637676219164
Iteration: 3, Func. Count: 28, Neg. LLF: 111.45149681131343
Iteration: 4, Func. Count: 36, Neg. LLF: 115.42041232771844
Iteration: 5, Func. Count: 46, Neg. LLF: 113.80779815292294
Iteration: 6, Func. Count: 57, Neg. LLF: 113.48131296696224
Iteration: 7, Func. Count: 67, Neg. LLF: 110.90296040326706
Iteration: 8, Func. Count: 75, Neg. LLF: 110.97397816676519
Iteration: 9, Func. Count: 84, Neg. LLF: 110.56928295855893
Iteration: 10, Func. Count: 92, Neg. LLF: 110.56903513602656
Iteration: 11, Func. Count: 100, Neg. LLF: 110.56903260110802
Iteration: 12, Func. Count: 107, Neg. LLF: 110.5690325916464
Optimization terminated successfully (Exit mode 0)
Current function value: 110.56903260110802
Iterations: 12
Function evaluations: 107
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 120.6000011344874
Iteration: 2, Func. Count: 20, Neg. LLF: 127.53383127534562
Iteration: 3, Func. Count: 30, Neg. LLF: 113.06335120027181
Iteration: 4, Func. Count: 40, Neg. LLF: 113.06058171393181
Iteration: 5, Func. Count: 50, Neg. LLF: 111.93605701907839
Iteration: 6, Func. Count: 60, Neg. LLF: 110.76949190664678
Iteration: 7, Func. Count: 70, Neg. LLF: 110.40723099066597
Iteration: 8, Func. Count: 79, Neg. LLF: 110.39389161005133
Iteration: 9, Func. Count: 88, Neg. LLF: 110.38785424367249
Iteration: 10, Func. Count: 97, Neg. LLF: 110.38741729107592
Iteration: 11, Func. Count: 106, Neg. LLF: 110.3873770632965
Iteration: 12, Func. Count: 115, Neg. LLF: 110.38737361477004
Iteration: 13, Func. Count: 123, Neg. LLF: 110.38737357890481
Optimization terminated successfully (Exit mode 0)
Current function value: 110.38737361477004
Iterations: 13
Function evaluations: 123
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 114.68713173344075
Iteration: 2, Func. Count: 22, Neg. LLF: 134.26680702133675
Iteration: 3, Func. Count: 33, Neg. LLF: 111.14863257038934
Iteration: 4, Func. Count: 43, Neg. LLF: 110.57770236836107
Iteration: 5, Func. Count: 53, Neg. LLF: 110.5969628122872
Iteration: 6, Func. Count: 64, Neg. LLF: 110.65542779728143
Iteration: 7, Func. Count: 75, Neg. LLF: 110.40915537717298
Iteration: 8, Func. Count: 85, Neg. LLF: 111.66968685012878
Iteration: 9, Func. Count: 97, Neg. LLF: 110.43198067407229
Iteration: 10, Func. Count: 108, Neg. LLF: 110.38885030074677
Iteration: 11, Func. Count: 118, Neg. LLF: 110.38738037160242
Iteration: 12, Func. Count: 128, Neg. LLF: 110.38737386160214
Iteration: 13, Func. Count: 137, Neg. LLF: 110.38737386499471
Optimization terminated successfully (Exit mode 0)
Current function value: 110.38737386160214
Iterations: 13
Function evaluations: 137
Gradient evaluations: 13
Iteration: 1, Func. Count: 12, Neg. LLF: 114.60262916989514
Iteration: 2, Func. Count: 24, Neg. LLF: 142.83876953233982
Iteration: 3, Func. Count: 36, Neg. LLF: 111.1956121404481
Iteration: 4, Func. Count: 47, Neg. LLF: 110.6002262213322
Iteration: 5, Func. Count: 58, Neg. LLF: 112.15649958014761
Iteration: 6, Func. Count: 71, Neg. LLF: 125.66354241170332
Iteration: 7, Func. Count: 83, Neg. LLF: 110.38911894506819
Iteration: 8, Func. Count: 94, Neg. LLF: 110.39309907168338
Iteration: 9, Func. Count: 106, Neg. LLF: 110.3874991207405
Iteration: 10, Func. Count: 117, Neg. LLF: 110.38737821251668
Iteration: 11, Func. Count: 128, Neg. LLF: 110.38737392054331
Iteration: 12, Func. Count: 138, Neg. LLF: 110.38737394825105
Optimization terminated successfully (Exit mode 0)
Current function value: 110.38737392054331
Iterations: 12
Function evaluations: 138
Gradient evaluations: 12
Iteration: 1, Func. Count: 13, Neg. LLF: 114.90285728468936
Iteration: 2, Func. Count: 26, Neg. LLF: 139.46968434564994
Iteration: 3, Func. Count: 39, Neg. LLF: 111.22033059206106
Iteration: 4, Func. Count: 51, Neg. LLF: 110.69054784394278
Iteration: 5, Func. Count: 63, Neg. LLF: 110.51615631273201
Iteration: 6, Func. Count: 75, Neg. LLF: 112.2757863601326
Iteration: 7, Func. Count: 88, Neg. LLF: 116.69108349266938
Iteration: 8, Func. Count: 102, Neg. LLF: 110.3940884674146
Iteration: 9, Func. Count: 114, Neg. LLF: 110.40190410679487
Iteration: 10, Func. Count: 127, Neg. LLF: 110.38740372720629
Iteration: 11, Func. Count: 139, Neg. LLF: 110.3873739354913
Iteration: 12, Func. Count: 150, Neg. LLF: 110.38737399277947
Optimization terminated successfully (Exit mode 0)
Current function value: 110.3873739354913
Iterations: 12
Function evaluations: 150
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 163.44158581749292
Iteration: 2, Func. Count: 21, Neg. LLF: 155.15006232058508
Iteration: 3, Func. Count: 31, Neg. LLF: 111.60713971266397
Iteration: 4, Func. Count: 40, Neg. LLF: 111.23725094364242
Iteration: 5, Func. Count: 49, Neg. LLF: 112.92845170546403
Iteration: 6, Func. Count: 59, Neg. LLF: 110.71141931467834
Iteration: 7, Func. Count: 68, Neg. LLF: 121.02985689223468
Iteration: 8, Func. Count: 78, Neg. LLF: 110.48717743798635
Iteration: 9, Func. Count: 87, Neg. LLF: 111.01084257016784
Iteration: 10, Func. Count: 97, Neg. LLF: 110.36721564782002
Iteration: 11, Func. Count: 106, Neg. LLF: 110.3568513576854
Iteration: 12, Func. Count: 115, Neg. LLF: 110.34937729215946
Iteration: 13, Func. Count: 124, Neg. LLF: 110.34924852984169
Iteration: 14, Func. Count: 133, Neg. LLF: 110.34924290022647
Iteration: 15, Func. Count: 141, Neg. LLF: 110.34924288312729
Optimization terminated successfully (Exit mode 0)
Current function value: 110.34924290022647
Iterations: 15
Function evaluations: 141
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 120.42577037379837
Iteration: 2, Func. Count: 22, Neg. LLF: 130.0148193280252
Iteration: 3, Func. Count: 33, Neg. LLF: 112.98766225583378
Iteration: 4, Func. Count: 44, Neg. LLF: 113.25100694869127
Iteration: 5, Func. Count: 55, Neg. LLF: 111.67294061349227
Iteration: 6, Func. Count: 66, Neg. LLF: 110.95305829761054
Iteration: 7, Func. Count: 77, Neg. LLF: 110.35560161869776
Iteration: 8, Func. Count: 87, Neg. LLF: 110.35055365403262
Iteration: 9, Func. Count: 97, Neg. LLF: 110.34927244698565
Iteration: 10, Func. Count: 107, Neg. LLF: 110.34924349009094
Iteration: 11, Func. Count: 117, Neg. LLF: 110.34924297916184
Optimization terminated successfully (Exit mode 0)
Current function value: 110.34924297916184
Iterations: 11
Function evaluations: 117
Gradient evaluations: 11
Iteration: 1, Func. Count: 12, Neg. LLF: 115.16297616241636
Iteration: 2, Func. Count: 24, Neg. LLF: 136.07698800899402
Iteration: 3, Func. Count: 36, Neg. LLF: 111.21571225014941
Iteration: 4, Func. Count: 47, Neg. LLF: 110.97941349173692
Iteration: 5, Func. Count: 59, Neg. LLF: 119.62715757854212
Iteration: 6, Func. Count: 74, Neg. LLF: 110.79234922204913
Iteration: 7, Func. Count: 86, Neg. LLF: 110.62425651554031
Iteration: 8, Func. Count: 98, Neg. LLF: 110.35042139538355
Iteration: 9, Func. Count: 109, Neg. LLF: 110.34926182398979
Iteration: 10, Func. Count: 120, Neg. LLF: 110.34924317131683
Iteration: 11, Func. Count: 130, Neg. LLF: 110.34924317032561
Optimization terminated successfully (Exit mode 0)
Current function value: 110.34924317131683
Iterations: 11
Function evaluations: 130
Gradient evaluations: 11
Iteration: 1, Func. Count: 13, Neg. LLF: 115.31353928103933
Iteration: 2, Func. Count: 26, Neg. LLF: 145.5459108011755
Iteration: 3, Func. Count: 39, Neg. LLF: 111.33772199301649
Iteration: 4, Func. Count: 51, Neg. LLF: 110.96269527592194
Iteration: 5, Func. Count: 63, Neg. LLF: 121.11385533993351
Iteration: 6, Func. Count: 78, Neg. LLF: 111.21277277078636
Iteration: 7, Func. Count: 91, Neg. LLF: 110.89391402424233
Iteration: 8, Func. Count: 104, Neg. LLF: 110.5261692004872
Iteration: 9, Func. Count: 117, Neg. LLF: 110.35331703882471
Iteration: 10, Func. Count: 129, Neg. LLF: 110.35002406193598
Iteration: 11, Func. Count: 141, Neg. LLF: 110.34933119770022
Iteration: 12, Func. Count: 153, Neg. LLF: 110.34924669874151
Iteration: 13, Func. Count: 165, Neg. LLF: 110.34924318390665
Iteration: 14, Func. Count: 176, Neg. LLF: 110.34924320699022
Optimization terminated successfully (Exit mode 0)
Current function value: 110.34924318390665
Iterations: 14
Function evaluations: 176
Gradient evaluations: 14
Iteration: 1, Func. Count: 14, Neg. LLF: 115.62993859814564
Iteration: 2, Func. Count: 28, Neg. LLF: 143.20265932802064
Iteration: 3, Func. Count: 42, Neg. LLF: 111.37060734162134
Iteration: 4, Func. Count: 55, Neg. LLF: 110.92774463588192
Iteration: 5, Func. Count: 68, Neg. LLF: 120.31793409698001
Iteration: 6, Func. Count: 84, Neg. LLF: 111.19404621837717
Iteration: 7, Func. Count: 98, Neg. LLF: 110.99309780901535
Iteration: 8, Func. Count: 112, Neg. LLF: 110.52812340894897
Iteration: 9, Func. Count: 126, Neg. LLF: 110.35258226718946
Iteration: 10, Func. Count: 139, Neg. LLF: 110.34998667820257
Iteration: 11, Func. Count: 152, Neg. LLF: 110.34930311535754
Iteration: 12, Func. Count: 165, Neg. LLF: 110.34924635715453
Iteration: 13, Func. Count: 178, Neg. LLF: 110.34924301621801
Iteration: 14, Func. Count: 190, Neg. LLF: 110.3492430748943
Optimization terminated successfully (Exit mode 0)
Current function value: 110.34924301621801
Iterations: 14
Function evaluations: 190
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 159.70113658378338
Iteration: 2, Func. Count: 23, Neg. LLF: 167.0820708872249
Iteration: 3, Func. Count: 34, Neg. LLF: 111.81964968686827
Iteration: 4, Func. Count: 44, Neg. LLF: 111.95610157211881
Iteration: 5, Func. Count: 55, Neg. LLF: 113.98819445003323
Iteration: 6, Func. Count: 67, Neg. LLF: 111.29097148949522
Iteration: 7, Func. Count: 78, Neg. LLF: 110.54824258511331
Iteration: 8, Func. Count: 88, Neg. LLF: 110.45581253873434
Iteration: 9, Func. Count: 98, Neg. LLF: 110.40624863788226
Iteration: 10, Func. Count: 108, Neg. LLF: 110.35913672689802
Iteration: 11, Func. Count: 118, Neg. LLF: 110.35099389932638
Iteration: 12, Func. Count: 128, Neg. LLF: 110.3495922252654
Iteration: 13, Func. Count: 138, Neg. LLF: 110.34925378465694
Iteration: 14, Func. Count: 148, Neg. LLF: 110.34924289580756
Iteration: 15, Func. Count: 157, Neg. LLF: 110.34924290163522
Optimization terminated successfully (Exit mode 0)
Current function value: 110.34924289580756
Iterations: 15
Function evaluations: 157
Gradient evaluations: 15
Iteration: 1, Func. Count: 12, Neg. LLF: 118.72031953777172
Iteration: 2, Func. Count: 24, Neg. LLF: 131.60788441050175
Iteration: 3, Func. Count: 36, Neg. LLF: 112.57653028478667
Iteration: 4, Func. Count: 48, Neg. LLF: 112.79120105528116
Iteration: 5, Func. Count: 60, Neg. LLF: 111.52755646641886
Iteration: 6, Func. Count: 72, Neg. LLF: 110.77399112748755
Iteration: 7, Func. Count: 84, Neg. LLF: 110.35823402871904
Iteration: 8, Func. Count: 95, Neg. LLF: 110.35185780177346
Iteration: 9, Func. Count: 106, Neg. LLF: 110.34939467726876
Iteration: 10, Func. Count: 117, Neg. LLF: 110.34925231288763
Iteration: 11, Func. Count: 128, Neg. LLF: 110.34924428013369
Iteration: 12, Func. Count: 139, Neg. LLF: 110.34924289745109
Iteration: 13, Func. Count: 149, Neg. LLF: 110.34924286849679
Optimization terminated successfully (Exit mode 0)
Current function value: 110.34924289745109
Iterations: 13
Function evaluations: 149
Gradient evaluations: 13
Iteration: 1, Func. Count: 13, Neg. LLF: 113.98453843008848
Iteration: 2, Func. Count: 25, Neg. LLF: 126.73300140880094
Iteration: 3, Func. Count: 38, Neg. LLF: 111.10929538110236
Iteration: 4, Func. Count: 51, Neg. LLF: 110.82201941952036
Iteration: 5, Func. Count: 64, Neg. LLF: 140.061104822381
Iteration: 6, Func. Count: 78, Neg. LLF: 110.36235433509111
Iteration: 7, Func. Count: 90, Neg. LLF: 110.43454872181144
Iteration: 8, Func. Count: 103, Neg. LLF: 110.35647288950733
Iteration: 9, Func. Count: 116, Neg. LLF: 110.34941975791472
Iteration: 10, Func. Count: 128, Neg. LLF: 110.34924395866578
Iteration: 11, Func. Count: 140, Neg. LLF: 110.34924307028176
Optimization terminated successfully (Exit mode 0)
Current function value: 110.34924307028176
Iterations: 11
Function evaluations: 140
Gradient evaluations: 11
Iteration: 1, Func. Count: 14, Neg. LLF: 114.10391151726077
Iteration: 2, Func. Count: 27, Neg. LLF: 128.77438574465202
Iteration: 3, Func. Count: 41, Neg. LLF: 110.84859139874489
Iteration: 4, Func. Count: 54, Neg. LLF: 110.60599247595322
Iteration: 5, Func. Count: 67, Neg. LLF: 113.60863960200595
Iteration: 6, Func. Count: 82, Neg. LLF: 110.99759553618385
Iteration: 7, Func. Count: 96, Neg. LLF: 111.66216164581776
Iteration: 8, Func. Count: 110, Neg. LLF: 110.35511545764136
Iteration: 9, Func. Count: 123, Neg. LLF: 110.35119045734181
Iteration: 10, Func. Count: 136, Neg. LLF: 110.34949523055086
Iteration: 11, Func. Count: 149, Neg. LLF: 110.34925786600436
Iteration: 12, Func. Count: 162, Neg. LLF: 110.34924432811873
Iteration: 13, Func. Count: 175, Neg. LLF: 110.3492428661431
Iteration: 14, Func. Count: 187, Neg. LLF: 110.34924288920583
Optimization terminated successfully (Exit mode 0)
Current function value: 110.3492428661431
Iterations: 14
Function evaluations: 187
Gradient evaluations: 14
Iteration: 1, Func. Count: 15, Neg. LLF: 114.26685744113601
Iteration: 2, Func. Count: 29, Neg. LLF: 127.20788134116965
Iteration: 3, Func. Count: 44, Neg. LLF: 110.86959915254891
Iteration: 4, Func. Count: 58, Neg. LLF: 110.59725661651422
Iteration: 5, Func. Count: 72, Neg. LLF: 113.77383541320064
Iteration: 6, Func. Count: 88, Neg. LLF: 111.21104829981185
Iteration: 7, Func. Count: 103, Neg. LLF: 111.15451062926451
Iteration: 8, Func. Count: 118, Neg. LLF: 110.35245008069317
Iteration: 9, Func. Count: 132, Neg. LLF: 110.35236715631683
Iteration: 10, Func. Count: 147, Neg. LLF: 110.34936029748334
Iteration: 11, Func. Count: 161, Neg. LLF: 110.34924917566039
Iteration: 12, Func. Count: 175, Neg. LLF: 110.34924287668925
Iteration: 13, Func. Count: 188, Neg. LLF: 110.34924293537308
Optimization terminated successfully (Exit mode 0)
Current function value: 110.34924287668925
Iterations: 13
Function evaluations: 188
Gradient evaluations: 13
Iteration: 1, Func. Count: 8, Neg. LLF: 125.77531018622999
Iteration: 2, Func. Count: 16, Neg. LLF: 144.34248829396645
Iteration: 3, Func. Count: 24, Neg. LLF: 116.52644346444569
Iteration: 4, Func. Count: 32, Neg. LLF: 115.009928834689
Iteration: 5, Func. Count: 39, Neg. LLF: 114.83503340147003
Iteration: 6, Func. Count: 46, Neg. LLF: 114.7646979900919
Iteration: 7, Func. Count: 53, Neg. LLF: 114.74672702774254
Iteration: 8, Func. Count: 60, Neg. LLF: 114.74558844949789
Iteration: 9, Func. Count: 67, Neg. LLF: 114.74556593516931
Iteration: 10, Func. Count: 74, Neg. LLF: 114.74556402920513
Iteration: 11, Func. Count: 80, Neg. LLF: 114.74556402920221
Optimization terminated successfully (Exit mode 0)
Current function value: 114.74556402920513
Iterations: 11
Function evaluations: 80
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 116.66527087988337
Iteration: 2, Func. Count: 20, Neg. LLF: 115.68046809230682
Iteration: 3, Func. Count: 28, Neg. LLF: 115.53905756088672
Iteration: 4, Func. Count: 37, Neg. LLF: 125.0120474920423
Iteration: 5, Func. Count: 46, Neg. LLF: 114.75070728931836
Iteration: 6, Func. Count: 54, Neg. LLF: 114.74832328250426
Iteration: 7, Func. Count: 62, Neg. LLF: 114.74720663290341
Iteration: 8, Func. Count: 70, Neg. LLF: 114.74557194005251
Iteration: 9, Func. Count: 78, Neg. LLF: 114.74556468412842
Iteration: 10, Func. Count: 86, Neg. LLF: 114.74556405763755
Optimization terminated successfully (Exit mode 0)
Current function value: 114.74556405763755
Iterations: 10
Function evaluations: 86
Gradient evaluations: 10
Iteration: 1, Func. Count: 10, Neg. LLF: 142.50040785371667
Iteration: 2, Func. Count: 21, Neg. LLF: 116.15523515971518
Iteration: 3, Func. Count: 30, Neg. LLF: 115.98806317077356
Iteration: 4, Func. Count: 39, Neg. LLF: 116.88981382294523
Iteration: 5, Func. Count: 49, Neg. LLF: 116.39114923359456
Iteration: 6, Func. Count: 60, Neg. LLF: 115.80972302492002
Iteration: 7, Func. Count: 69, Neg. LLF: 115.82329385556594
Iteration: 8, Func. Count: 79, Neg. LLF: 115.80729458450266
Iteration: 9, Func. Count: 88, Neg. LLF: 115.8069171871928
Iteration: 10, Func. Count: 97, Neg. LLF: 115.80651949092385
Iteration: 11, Func. Count: 106, Neg. LLF: 115.80633752429814
Iteration: 12, Func. Count: 115, Neg. LLF: 115.8063007407443
Iteration: 13, Func. Count: 124, Neg. LLF: 115.80629809200776
Iteration: 14, Func. Count: 132, Neg. LLF: 115.80629809199363
Optimization terminated successfully (Exit mode 0)
Current function value: 115.80629809200776
Iterations: 14
Function evaluations: 132
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 137.5386783174397
Iteration: 2, Func. Count: 23, Neg. LLF: 115.99533041982664
Iteration: 3, Func. Count: 33, Neg. LLF: 116.29496200905461
Iteration: 4, Func. Count: 44, Neg. LLF: 117.42758001321903
Iteration: 5, Func. Count: 55, Neg. LLF: 115.84729260820605
Iteration: 6, Func. Count: 65, Neg. LLF: 115.83147605508533
Iteration: 7, Func. Count: 75, Neg. LLF: 115.8289256174059
Iteration: 8, Func. Count: 85, Neg. LLF: 115.82455813941198
Iteration: 9, Func. Count: 95, Neg. LLF: 115.82282655560651
Iteration: 10, Func. Count: 105, Neg. LLF: 115.81726125816465
Iteration: 11, Func. Count: 115, Neg. LLF: 115.81555463241065
Iteration: 12, Func. Count: 125, Neg. LLF: 115.81376359433929
Iteration: 13, Func. Count: 136, Neg. LLF: 115.80826352863808
Iteration: 14, Func. Count: 146, Neg. LLF: 115.8071012499057
Iteration: 15, Func. Count: 156, Neg. LLF: 115.80694907025413
Iteration: 16, Func. Count: 166, Neg. LLF: 115.80665353005666
Iteration: 17, Func. Count: 176, Neg. LLF: 115.80648054039958
Iteration: 18, Func. Count: 186, Neg. LLF: 115.80631878479572
Iteration: 19, Func. Count: 196, Neg. LLF: 115.80629893917299
Iteration: 20, Func. Count: 206, Neg. LLF: 115.80629811364172
Optimization terminated successfully (Exit mode 0)
Current function value: 115.80629811364172
Iterations: 20
Function evaluations: 206
Gradient evaluations: 20
Iteration: 1, Func. Count: 12, Neg. LLF: 134.08792265503567
Iteration: 2, Func. Count: 25, Neg. LLF: 115.97170320421391
Iteration: 3, Func. Count: 36, Neg. LLF: 116.09179397954355
Iteration: 4, Func. Count: 48, Neg. LLF: 117.29130731043404
Iteration: 5, Func. Count: 60, Neg. LLF: 115.8679845159367
Iteration: 6, Func. Count: 72, Neg. LLF: 115.84115971395349
Iteration: 7, Func. Count: 83, Neg. LLF: 115.83543715162733
Iteration: 8, Func. Count: 94, Neg. LLF: 115.82799015225936
Iteration: 9, Func. Count: 105, Neg. LLF: 115.81288530528946
Iteration: 10, Func. Count: 116, Neg. LLF: 115.80923302034505
Iteration: 11, Func. Count: 127, Neg. LLF: 115.80929573306227
Iteration: 12, Func. Count: 139, Neg. LLF: 115.80828853730117
Iteration: 13, Func. Count: 151, Neg. LLF: 115.80806417184135
Iteration: 14, Func. Count: 162, Neg. LLF: 115.80805801705485
Iteration: 15, Func. Count: 173, Neg. LLF: 115.80801093778368
Iteration: 16, Func. Count: 184, Neg. LLF: 115.83600493303436
Iteration: 17, Func. Count: 196, Neg. LLF: 115.84485613555371
Iteration: 18, Func. Count: 208, Neg. LLF: 116.63687873902299
Iteration: 19, Func. Count: 221, Neg. LLF: 115.81313786332956
Iteration: 20, Func. Count: 234, Neg. LLF: 460.86278022875524
Iteration: 21, Func. Count: 249, Neg. LLF: 115.80738209333167
Iteration: 22, Func. Count: 260, Neg. LLF: 115.80735987489246
Iteration: 23, Func. Count: 271, Neg. LLF: 115.80695332643094
Iteration: 24, Func. Count: 282, Neg. LLF: 115.84489822611202
Iteration: 25, Func. Count: 294, Neg. LLF: 115.84529210414719
Iteration: 26, Func. Count: 306, Neg. LLF: 115.8070669975286
Iteration: 27, Func. Count: 318, Neg. LLF: 115.8063052606239
Iteration: 28, Func. Count: 329, Neg. LLF: 115.80629839897709
Iteration: 29, Func. Count: 339, Neg. LLF: 115.8062984000614
Optimization terminated successfully (Exit mode 0)
Current function value: 115.80629839897709
Iterations: 30
Function evaluations: 339
Gradient evaluations: 29
Iteration: 1, Func. Count: 9, Neg. LLF: 122.28162108064156
Iteration: 2, Func. Count: 18, Neg. LLF: 143.1387447806994
Iteration: 3, Func. Count: 27, Neg. LLF: 114.87571867676644
Iteration: 4, Func. Count: 35, Neg. LLF: 114.29136918017757
Iteration: 5, Func. Count: 43, Neg. LLF: 114.21771676935333
Iteration: 6, Func. Count: 51, Neg. LLF: 114.20019846844707
Iteration: 7, Func. Count: 59, Neg. LLF: 114.1901484803627
Iteration: 8, Func. Count: 67, Neg. LLF: 114.18975501958685
Iteration: 9, Func. Count: 75, Neg. LLF: 114.18972896486817
Iteration: 10, Func. Count: 82, Neg. LLF: 114.1897289648623
Optimization terminated successfully (Exit mode 0)
Current function value: 114.18972896486817
Iterations: 10
Function evaluations: 82
Gradient evaluations: 10
Iteration: 1, Func. Count: 10, Neg. LLF: 119.94427817911524
Iteration: 2, Func. Count: 20, Neg. LLF: 135.69798405966557
Iteration: 3, Func. Count: 30, Neg. LLF: 122.85941904476294
Iteration: 4, Func. Count: 40, Neg. LLF: 114.11780442610188
Iteration: 5, Func. Count: 49, Neg. LLF: 114.06105619571994
Iteration: 6, Func. Count: 58, Neg. LLF: 114.0209653454738
Iteration: 7, Func. Count: 67, Neg. LLF: 114.01783901950856
Iteration: 8, Func. Count: 76, Neg. LLF: 114.01770892014198
Iteration: 9, Func. Count: 85, Neg. LLF: 114.01770826652826
Optimization terminated successfully (Exit mode 0)
Current function value: 114.01770826652826
Iterations: 9
Function evaluations: 85
Gradient evaluations: 9
Iteration: 1, Func. Count: 11, Neg. LLF: 120.52011401251295
Iteration: 2, Func. Count: 22, Neg. LLF: 125.27370538841926
Iteration: 3, Func. Count: 33, Neg. LLF: 122.26903320774014
Iteration: 4, Func. Count: 44, Neg. LLF: 114.16193603704261
Iteration: 5, Func. Count: 54, Neg. LLF: 114.068437674952
Iteration: 6, Func. Count: 64, Neg. LLF: 114.02100871134226
Iteration: 7, Func. Count: 74, Neg. LLF: 114.01813779318309
Iteration: 8, Func. Count: 84, Neg. LLF: 114.01772231305544
Iteration: 9, Func. Count: 94, Neg. LLF: 114.01770898647672
Iteration: 10, Func. Count: 104, Neg. LLF: 114.01770823066316
Optimization terminated successfully (Exit mode 0)
Current function value: 114.01770823066316
Iterations: 10
Function evaluations: 104
Gradient evaluations: 10
Iteration: 1, Func. Count: 12, Neg. LLF: 129.80928916175802
Iteration: 2, Func. Count: 24, Neg. LLF: 123.1372268550408
Iteration: 3, Func. Count: 36, Neg. LLF: 115.6166742239547
Iteration: 4, Func. Count: 47, Neg. LLF: 114.14527344789978
Iteration: 5, Func. Count: 58, Neg. LLF: 114.05281894480234
Iteration: 6, Func. Count: 69, Neg. LLF: 114.01803141475244
Iteration: 7, Func. Count: 80, Neg. LLF: 114.01771425752342
Iteration: 8, Func. Count: 91, Neg. LLF: 114.01770829290632
Iteration: 9, Func. Count: 101, Neg. LLF: 114.01770830232556
Optimization terminated successfully (Exit mode 0)
Current function value: 114.01770829290632
Iterations: 9
Function evaluations: 101
Gradient evaluations: 9
Iteration: 1, Func. Count: 13, Neg. LLF: 135.66231498559213
Iteration: 2, Func. Count: 26, Neg. LLF: 115.96833290435701
Iteration: 3, Func. Count: 39, Neg. LLF: 116.52493962201285
Iteration: 4, Func. Count: 52, Neg. LLF: 114.0290940418485
Iteration: 5, Func. Count: 64, Neg. LLF: 113.87194958847276
Iteration: 6, Func. Count: 76, Neg. LLF: 113.86129147318144
Iteration: 7, Func. Count: 88, Neg. LLF: 113.86086748558286
Iteration: 8, Func. Count: 100, Neg. LLF: 113.86079367973034
Iteration: 9, Func. Count: 111, Neg. LLF: 113.8607936419459
Optimization terminated successfully (Exit mode 0)
Current function value: 113.86079367973034
Iterations: 9
Function evaluations: 111
Gradient evaluations: 9
Iteration: 1, Func. Count: 10, Neg. LLF: 138.84453532784158
Iteration: 2, Func. Count: 20, Neg. LLF: 144.40682342389383
Iteration: 3, Func. Count: 30, Neg. LLF: 111.25205131488099
Iteration: 4, Func. Count: 39, Neg. LLF: 111.7597074202735
Iteration: 5, Func. Count: 50, Neg. LLF: 121.60414849945157
Iteration: 6, Func. Count: 61, Neg. LLF: 110.69360262940337
Iteration: 7, Func. Count: 70, Neg. LLF: 110.69747335884821
Iteration: 8, Func. Count: 80, Neg. LLF: 110.58320919165085
Iteration: 9, Func. Count: 89, Neg. LLF: 110.63295817140252
Iteration: 10, Func. Count: 99, Neg. LLF: 110.56903886113976
Iteration: 11, Func. Count: 108, Neg. LLF: 110.56903248480374
Iteration: 12, Func. Count: 116, Neg. LLF: 110.56903247533619
Optimization terminated successfully (Exit mode 0)
Current function value: 110.56903248480374
Iterations: 12
Function evaluations: 116
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 119.43782755952007
Iteration: 2, Func. Count: 22, Neg. LLF: 128.07843216987402
Iteration: 3, Func. Count: 33, Neg. LLF: 112.92201648053577
Iteration: 4, Func. Count: 44, Neg. LLF: 112.90066325452909
Iteration: 5, Func. Count: 55, Neg. LLF: 111.97474176236955
Iteration: 6, Func. Count: 66, Neg. LLF: 110.76922556481941
Iteration: 7, Func. Count: 77, Neg. LLF: 110.40705499088253
Iteration: 8, Func. Count: 87, Neg. LLF: 110.39500600477298
Iteration: 9, Func. Count: 97, Neg. LLF: 110.38786114282772
Iteration: 10, Func. Count: 107, Neg. LLF: 110.38740323431435
Iteration: 11, Func. Count: 117, Neg. LLF: 110.38737729626611
Iteration: 12, Func. Count: 127, Neg. LLF: 110.38737361132922
Iteration: 13, Func. Count: 136, Neg. LLF: 110.3873735754681
Optimization terminated successfully (Exit mode 0)
Current function value: 110.38737361132922
Iterations: 13
Function evaluations: 136
Gradient evaluations: 13
Iteration: 1, Func. Count: 12, Neg. LLF: 113.9863072571817
Iteration: 2, Func. Count: 23, Neg. LLF: 124.77761505773131
Iteration: 3, Func. Count: 35, Neg. LLF: 112.14335314617705
Iteration: 4, Func. Count: 47, Neg. LLF: 110.7719910214476
Iteration: 5, Func. Count: 59, Neg. LLF: 138.59010528971922
Iteration: 6, Func. Count: 71, Neg. LLF: 114.33576046521468
Iteration: 7, Func. Count: 84, Neg. LLF: 110.9961279096412
Iteration: 8, Func. Count: 96, Neg. LLF: 110.4151779126121
Iteration: 9, Func. Count: 107, Neg. LLF: 110.38909703900454
Iteration: 10, Func. Count: 118, Neg. LLF: 110.3875750485701
Iteration: 11, Func. Count: 129, Neg. LLF: 110.38737471989758
Iteration: 12, Func. Count: 140, Neg. LLF: 110.38737362134589
Iteration: 13, Func. Count: 150, Neg. LLF: 110.38737362475186
Optimization terminated successfully (Exit mode 0)
Current function value: 110.38737362134589
Iterations: 13
Function evaluations: 150
Gradient evaluations: 13
Iteration: 1, Func. Count: 13, Neg. LLF: 113.89690266643197
Iteration: 2, Func. Count: 25, Neg. LLF: 126.01242152958933
Iteration: 3, Func. Count: 38, Neg. LLF: 111.67996835735502
Iteration: 4, Func. Count: 51, Neg. LLF: 110.76897474744776
Iteration: 5, Func. Count: 64, Neg. LLF: 138.02407697884914
Iteration: 6, Func. Count: 77, Neg. LLF: 114.58290136412221
Iteration: 7, Func. Count: 91, Neg. LLF: 110.90670296091331
Iteration: 8, Func. Count: 104, Neg. LLF: 110.41346615808068
Iteration: 9, Func. Count: 116, Neg. LLF: 110.3890145299776
Iteration: 10, Func. Count: 128, Neg. LLF: 110.387563019604
Iteration: 11, Func. Count: 140, Neg. LLF: 110.38737464409122
Iteration: 12, Func. Count: 152, Neg. LLF: 110.38737362326363
Iteration: 13, Func. Count: 163, Neg. LLF: 110.387373651005
Optimization terminated successfully (Exit mode 0)
Current function value: 110.38737362326363
Iterations: 13
Function evaluations: 163
Gradient evaluations: 13
Iteration: 1, Func. Count: 14, Neg. LLF: 114.16267902717104
Iteration: 2, Func. Count: 28, Neg. LLF: 140.81955869069438
Iteration: 3, Func. Count: 42, Neg. LLF: 111.12012899541799
Iteration: 4, Func. Count: 55, Neg. LLF: 110.57053431191457
Iteration: 5, Func. Count: 68, Neg. LLF: 110.5313764974426
Iteration: 6, Func. Count: 82, Neg. LLF: 111.33832333836176
Iteration: 7, Func. Count: 97, Neg. LLF: 110.78797909885127
Iteration: 8, Func. Count: 111, Neg. LLF: 110.39313986950673
Iteration: 9, Func. Count: 125, Neg. LLF: 110.38762197415876
Iteration: 10, Func. Count: 138, Neg. LLF: 110.387377407638
Iteration: 11, Func. Count: 151, Neg. LLF: 110.38737382466809
Iteration: 12, Func. Count: 163, Neg. LLF: 110.38737388196843
Optimization terminated successfully (Exit mode 0)
Current function value: 110.38737382466809
Iterations: 12
Function evaluations: 163
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 139.40887899062318
Iteration: 2, Func. Count: 22, Neg. LLF: 148.6355552912639
Iteration: 3, Func. Count: 33, Neg. LLF: 111.4469615308472
Iteration: 4, Func. Count: 43, Neg. LLF: 111.7438270102621
Iteration: 5, Func. Count: 55, Neg. LLF: 123.18485469526101
Iteration: 6, Func. Count: 67, Neg. LLF: 110.74221542642617
Iteration: 7, Func. Count: 78, Neg. LLF: 110.41569181163564
Iteration: 8, Func. Count: 88, Neg. LLF: 110.43851105973911
Iteration: 9, Func. Count: 99, Neg. LLF: 110.38285284174194
Iteration: 10, Func. Count: 110, Neg. LLF: 110.34986314633066
Iteration: 11, Func. Count: 120, Neg. LLF: 110.34928823204592
Iteration: 12, Func. Count: 130, Neg. LLF: 110.34925295768954
Iteration: 13, Func. Count: 140, Neg. LLF: 110.34924320468414
Iteration: 14, Func. Count: 149, Neg. LLF: 110.34924318758243
Optimization terminated successfully (Exit mode 0)
Current function value: 110.34924320468414
Iterations: 14
Function evaluations: 149
Gradient evaluations: 14
Iteration: 1, Func. Count: 12, Neg. LLF: 119.29824337826038
Iteration: 2, Func. Count: 24, Neg. LLF: 130.68766057245807
Iteration: 3, Func. Count: 36, Neg. LLF: 112.82043178126122
Iteration: 4, Func. Count: 48, Neg. LLF: 113.18136417039341
Iteration: 5, Func. Count: 60, Neg. LLF: 111.60991985797949
Iteration: 6, Func. Count: 72, Neg. LLF: 110.90734496991156
Iteration: 7, Func. Count: 84, Neg. LLF: 110.35762955292921
Iteration: 8, Func. Count: 95, Neg. LLF: 110.35093749108368
Iteration: 9, Func. Count: 106, Neg. LLF: 110.3493012117937
Iteration: 10, Func. Count: 117, Neg. LLF: 110.34924435269438
Iteration: 11, Func. Count: 128, Neg. LLF: 110.34924312635863
Iteration: 12, Func. Count: 138, Neg. LLF: 110.34924309739287
Optimization terminated successfully (Exit mode 0)
Current function value: 110.34924312635863
Iterations: 12
Function evaluations: 138
Gradient evaluations: 12
Iteration: 1, Func. Count: 13, Neg. LLF: 114.41938789883987
Iteration: 2, Func. Count: 26, Neg. LLF: 137.2672133486064
Iteration: 3, Func. Count: 39, Neg. LLF: 111.11584530156681
Iteration: 4, Func. Count: 51, Neg. LLF: 110.92720221296462
Iteration: 5, Func. Count: 64, Neg. LLF: 118.2003091647961
Iteration: 6, Func. Count: 80, Neg. LLF: 110.7156237263693
Iteration: 7, Func. Count: 93, Neg. LLF: 110.65346839784024
Iteration: 8, Func. Count: 106, Neg. LLF: 110.3498762588334
Iteration: 9, Func. Count: 118, Neg. LLF: 110.34925234279443
Iteration: 10, Func. Count: 130, Neg. LLF: 110.34924303859054
Iteration: 11, Func. Count: 141, Neg. LLF: 110.34924303757283
Optimization terminated successfully (Exit mode 0)
Current function value: 110.34924303859054
Iterations: 11
Function evaluations: 141
Gradient evaluations: 11
Iteration: 1, Func. Count: 14, Neg. LLF: 114.54105983642386
Iteration: 2, Func. Count: 28, Neg. LLF: 147.08466373606484
Iteration: 3, Func. Count: 42, Neg. LLF: 111.21480832608465
Iteration: 4, Func. Count: 55, Neg. LLF: 110.91183388426023
Iteration: 5, Func. Count: 68, Neg. LLF: 119.13180365286216
Iteration: 6, Func. Count: 84, Neg. LLF: 111.09319806628999
Iteration: 7, Func. Count: 98, Neg. LLF: 111.23832101169018
Iteration: 8, Func. Count: 112, Neg. LLF: 110.52861491175649
Iteration: 9, Func. Count: 126, Neg. LLF: 110.35313173782491
Iteration: 10, Func. Count: 139, Neg. LLF: 110.35016982412291
Iteration: 11, Func. Count: 152, Neg. LLF: 110.3493514665946
Iteration: 12, Func. Count: 165, Neg. LLF: 110.34924395175445
Iteration: 13, Func. Count: 178, Neg. LLF: 110.34924291310881
Iteration: 14, Func. Count: 190, Neg. LLF: 110.34924293616898
Optimization terminated successfully (Exit mode 0)
Current function value: 110.34924291310881
Iterations: 14
Function evaluations: 190
Gradient evaluations: 14
Iteration: 1, Func. Count: 15, Neg. LLF: 114.82068388491822
Iteration: 2, Func. Count: 30, Neg. LLF: 144.40973590925498
Iteration: 3, Func. Count: 45, Neg. LLF: 111.24516931579188
Iteration: 4, Func. Count: 59, Neg. LLF: 110.86860804227526
Iteration: 5, Func. Count: 73, Neg. LLF: 118.40402110300109
Iteration: 6, Func. Count: 90, Neg. LLF: 111.0873509055421
Iteration: 7, Func. Count: 105, Neg. LLF: 111.2801539434061
Iteration: 8, Func. Count: 120, Neg. LLF: 110.46730077914499
Iteration: 9, Func. Count: 135, Neg. LLF: 110.35237855097976
Iteration: 10, Func. Count: 149, Neg. LLF: 110.35007222417538
Iteration: 11, Func. Count: 163, Neg. LLF: 110.34931708508809
Iteration: 12, Func. Count: 177, Neg. LLF: 110.34924346735802
Iteration: 13, Func. Count: 191, Neg. LLF: 110.34924289489263
Optimization terminated successfully (Exit mode 0)
Current function value: 110.34924289489263
Iterations: 13
Function evaluations: 191
Gradient evaluations: 13
Iteration: 1, Func. Count: 12, Neg. LLF: 131.48576098997455
Iteration: 2, Func. Count: 25, Neg. LLF: 163.34317173341444
Iteration: 3, Func. Count: 37, Neg. LLF: 111.52299595380272
Iteration: 4, Func. Count: 48, Neg. LLF: 110.9664114936586
Iteration: 5, Func. Count: 59, Neg. LLF: 112.53921496664435
Iteration: 6, Func. Count: 72, Neg. LLF: 114.0679407402128
Iteration: 7, Func. Count: 84, Neg. LLF: 113.11925610973374
Iteration: 8, Func. Count: 96, Neg. LLF: 110.3898447350084
Iteration: 9, Func. Count: 107, Neg. LLF: 110.361148696427
Iteration: 10, Func. Count: 118, Neg. LLF: 110.35346216111684
Iteration: 11, Func. Count: 129, Neg. LLF: 110.35078135986481
Iteration: 12, Func. Count: 140, Neg. LLF: 110.3496481599385
Iteration: 13, Func. Count: 151, Neg. LLF: 110.34924752554153
Iteration: 14, Func. Count: 162, Neg. LLF: 110.34924303402312
Iteration: 15, Func. Count: 172, Neg. LLF: 110.34924302820166
Optimization terminated successfully (Exit mode 0)
Current function value: 110.34924303402312
Iterations: 15
Function evaluations: 172
Gradient evaluations: 15
Iteration: 1, Func. Count: 13, Neg. LLF: 117.68240159884249
Iteration: 2, Func. Count: 26, Neg. LLF: 132.4841981613818
Iteration: 3, Func. Count: 39, Neg. LLF: 112.41436044972303
Iteration: 4, Func. Count: 52, Neg. LLF: 112.76468752772335
Iteration: 5, Func. Count: 65, Neg. LLF: 111.40684361098405
Iteration: 6, Func. Count: 78, Neg. LLF: 110.6372382043539
Iteration: 7, Func. Count: 91, Neg. LLF: 110.35561709340324
Iteration: 8, Func. Count: 103, Neg. LLF: 110.35153821158877
Iteration: 9, Func. Count: 115, Neg. LLF: 110.3493784848656
Iteration: 10, Func. Count: 127, Neg. LLF: 110.34925138209604
Iteration: 11, Func. Count: 139, Neg. LLF: 110.34924372083334
Iteration: 12, Func. Count: 151, Neg. LLF: 110.34924286335635
Optimization terminated successfully (Exit mode 0)
Current function value: 110.34924286335635
Iterations: 12
Function evaluations: 151
Gradient evaluations: 12
Iteration: 1, Func. Count: 14, Neg. LLF: 113.35757970531769
Iteration: 2, Func. Count: 27, Neg. LLF: 128.9571151209863
Iteration: 3, Func. Count: 41, Neg. LLF: 111.13765038379334
Iteration: 4, Func. Count: 55, Neg. LLF: 110.70848497733226
Iteration: 5, Func. Count: 69, Neg. LLF: 138.59546910426164
Iteration: 6, Func. Count: 84, Neg. LLF: 110.3553354635478
Iteration: 7, Func. Count: 97, Neg. LLF: 110.36442423609725
Iteration: 8, Func. Count: 111, Neg. LLF: 110.35591084933259
Iteration: 9, Func. Count: 125, Neg. LLF: 110.34941340501429
Iteration: 10, Func. Count: 138, Neg. LLF: 110.34924297525441
Iteration: 11, Func. Count: 150, Neg. LLF: 110.34924297428348
Optimization terminated successfully (Exit mode 0)
Current function value: 110.34924297525441
Iterations: 11
Function evaluations: 150
Gradient evaluations: 11
Iteration: 1, Func. Count: 15, Neg. LLF: 113.44981945650653
Iteration: 2, Func. Count: 29, Neg. LLF: 131.3773889109422
Iteration: 3, Func. Count: 44, Neg. LLF: 110.85782441800107
Iteration: 4, Func. Count: 58, Neg. LLF: 110.56169235346212
Iteration: 5, Func. Count: 72, Neg. LLF: 112.37221812040298
Iteration: 6, Func. Count: 88, Neg. LLF: 111.20055821361096
Iteration: 7, Func. Count: 103, Neg. LLF: 111.55585708974046
Iteration: 8, Func. Count: 118, Neg. LLF: 110.35693706720248
Iteration: 9, Func. Count: 132, Neg. LLF: 110.35120790275853
Iteration: 10, Func. Count: 146, Neg. LLF: 110.34941685537522
Iteration: 11, Func. Count: 160, Neg. LLF: 110.34925050699479
Iteration: 12, Func. Count: 174, Neg. LLF: 110.3492433504775
Iteration: 13, Func. Count: 187, Neg. LLF: 110.34924337355271
Optimization terminated successfully (Exit mode 0)
Current function value: 110.3492433504775
Iterations: 13
Function evaluations: 187
Gradient evaluations: 13
Iteration: 1, Func. Count: 16, Neg. LLF: 113.58899208713885
Iteration: 2, Func. Count: 31, Neg. LLF: 129.52708267906763
Iteration: 3, Func. Count: 47, Neg. LLF: 110.887913285139
Iteration: 4, Func. Count: 62, Neg. LLF: 110.53962473904096
Iteration: 5, Func. Count: 77, Neg. LLF: 112.28369438940184
Iteration: 6, Func. Count: 94, Neg. LLF: 111.6813091947361
Iteration: 7, Func. Count: 110, Neg. LLF: 110.93859875938375
Iteration: 8, Func. Count: 126, Neg. LLF: 110.35061919293842
Iteration: 9, Func. Count: 141, Neg. LLF: 110.34963445739739
Iteration: 10, Func. Count: 156, Neg. LLF: 110.34943304921931
Iteration: 11, Func. Count: 171, Neg. LLF: 110.34924440321556
Iteration: 12, Func. Count: 186, Neg. LLF: 110.34924288405134
Iteration: 13, Func. Count: 200, Neg. LLF: 110.34924294274091
Optimization terminated successfully (Exit mode 0)
Current function value: 110.34924288405134
Iterations: 13
Function evaluations: 200
Gradient evaluations: 13
Iteration: 1, Func. Count: 6, Neg. LLF: 139.52127915563395
Iteration: 2, Func. Count: 13, Neg. LLF: 248.87204687695453
Iteration: 3, Func. Count: 19, Neg. LLF: 116.90790964542612
Iteration: 4, Func. Count: 25, Neg. LLF: 112.13899008430832
Iteration: 5, Func. Count: 31, Neg. LLF: 113.42314711690923
Iteration: 6, Func. Count: 37, Neg. LLF: 110.99858760371139
Iteration: 7, Func. Count: 42, Neg. LLF: 110.61331672343849
Iteration: 8, Func. Count: 47, Neg. LLF: 110.57639829973222
Iteration: 9, Func. Count: 52, Neg. LLF: 110.57570763319372
Iteration: 10, Func. Count: 57, Neg. LLF: 110.5756858945293
Iteration: 11, Func. Count: 61, Neg. LLF: 110.57568588498486
Optimization terminated successfully (Exit mode 0)
Current function value: 110.5756858945293
Iterations: 11
Function evaluations: 61
Gradient evaluations: 11
Iteration: 1, Func. Count: 5, Neg. LLF: 136.42053162093057
Iteration: 2, Func. Count: 11, Neg. LLF: 139.2130705581481
Iteration: 3, Func. Count: 16, Neg. LLF: 122.10804890757616
Iteration: 4, Func. Count: 21, Neg. LLF: 120.56136824991214
Iteration: 5, Func. Count: 25, Neg. LLF: 120.55507438740716
Iteration: 6, Func. Count: 29, Neg. LLF: 120.55335854506299
Iteration: 7, Func. Count: 33, Neg. LLF: 120.55310511965112
Iteration: 8, Func. Count: 37, Neg. LLF: 120.55309611718488
Iteration: 9, Func. Count: 40, Neg. LLF: 120.55309611719255
Optimization terminated successfully (Exit mode 0)
Current function value: 120.55309611718488
Iterations: 9
Function evaluations: 40
Gradient evaluations: 9
Iteration: 1, Func. Count: 6, Neg. LLF: 138.83495630704843
Iteration: 2, Func. Count: 12, Neg. LLF: 122.00557637890732
Iteration: 3, Func. Count: 18, Neg. LLF: 119.91522170866563
Iteration: 4, Func. Count: 24, Neg. LLF: 117.96099599928361
Iteration: 5, Func. Count: 29, Neg. LLF: 117.7612742154224
Iteration: 6, Func. Count: 34, Neg. LLF: 117.75645925250443
Iteration: 7, Func. Count: 39, Neg. LLF: 117.75486827842143
Iteration: 8, Func. Count: 44, Neg. LLF: 117.75480817274837
Iteration: 9, Func. Count: 49, Neg. LLF: 117.75475697370057
Iteration: 10, Func. Count: 53, Neg. LLF: 117.75475695296646
Optimization terminated successfully (Exit mode 0)
Current function value: 117.75475697370057
Iterations: 10
Function evaluations: 53
Gradient evaluations: 10
Iteration: 1, Func. Count: 7, Neg. LLF: 134.00887367147817
Iteration: 2, Func. Count: 14, Neg. LLF: 122.30575448495615
Iteration: 3, Func. Count: 21, Neg. LLF: 126.5938539277301
Iteration: 4, Func. Count: 28, Neg. LLF: 117.84380830084176
Iteration: 5, Func. Count: 34, Neg. LLF: 117.75694787624202
Iteration: 6, Func. Count: 40, Neg. LLF: 117.75510106000448
Iteration: 7, Func. Count: 46, Neg. LLF: 117.75476008340543
Iteration: 8, Func. Count: 52, Neg. LLF: 117.75475766071384
Iteration: 9, Func. Count: 57, Neg. LLF: 117.75475769522029
Optimization terminated successfully (Exit mode 0)
Current function value: 117.75475766071384
Iterations: 9
Function evaluations: 57
Gradient evaluations: 9
Iteration: 1, Func. Count: 8, Neg. LLF: 124.0369431017041
Iteration: 2, Func. Count: 16, Neg. LLF: 123.87990545496359
Iteration: 3, Func. Count: 24, Neg. LLF: 150.21687525751207
Iteration: 4, Func. Count: 32, Neg. LLF: 117.89422562248161
Iteration: 5, Func. Count: 39, Neg. LLF: 117.81365817323453
Iteration: 6, Func. Count: 46, Neg. LLF: 117.77601112222295
Iteration: 7, Func. Count: 53, Neg. LLF: 117.76053587244375
Iteration: 8, Func. Count: 60, Neg. LLF: 117.75501031344204
Iteration: 9, Func. Count: 67, Neg. LLF: 117.75476278630838
Iteration: 10, Func. Count: 74, Neg. LLF: 117.75475698668336
Iteration: 11, Func. Count: 80, Neg. LLF: 117.7547570007915
Optimization terminated successfully (Exit mode 0)
Current function value: 117.75475698668336
Iterations: 11
Function evaluations: 80
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 131.9555565673511
Iteration: 2, Func. Count: 18, Neg. LLF: 125.18503322646022
Iteration: 3, Func. Count: 27, Neg. LLF: 128.68767380595185
Iteration: 4, Func. Count: 36, Neg. LLF: 117.85697845133521
Iteration: 5, Func. Count: 44, Neg. LLF: 117.49692889221562
Iteration: 6, Func. Count: 52, Neg. LLF: 117.2512942958762
Iteration: 7, Func. Count: 60, Neg. LLF: 117.24965974122307
Iteration: 8, Func. Count: 68, Neg. LLF: 117.24935492496435
Iteration: 9, Func. Count: 76, Neg. LLF: 117.24899719978643
Iteration: 10, Func. Count: 84, Neg. LLF: 117.24875054402538
Iteration: 11, Func. Count: 92, Neg. LLF: 117.24868674697794
Iteration: 12, Func. Count: 100, Neg. LLF: 117.248680651928
Iteration: 13, Func. Count: 107, Neg. LLF: 117.24868059422201
Optimization terminated successfully (Exit mode 0)
Current function value: 117.248680651928
Iterations: 13
Function evaluations: 107
Gradient evaluations: 13
Iteration: 1, Func. Count: 6, Neg. LLF: 147.2761767774217
Iteration: 2, Func. Count: 13, Neg. LLF: 254.27934167115725
Iteration: 3, Func. Count: 19, Neg. LLF: 117.92741687475792
Iteration: 4, Func. Count: 25, Neg. LLF: 523201.6486245289
Iteration: 5, Func. Count: 31, Neg. LLF: 115.79179654289297
Iteration: 6, Func. Count: 37, Neg. LLF: 113.98436223096374
Iteration: 7, Func. Count: 42, Neg. LLF: 113.39531282375285
Iteration: 8, Func. Count: 47, Neg. LLF: 113.39032700593413
Iteration: 9, Func. Count: 52, Neg. LLF: 113.390310336712
Iteration: 10, Func. Count: 57, Neg. LLF: 113.39030886201618
Iteration: 11, Func. Count: 61, Neg. LLF: 113.39030884647028
Optimization terminated successfully (Exit mode 0)
Current function value: 113.39030886201618
Iterations: 11
Function evaluations: 61
Gradient evaluations: 11
Iteration: 1, Func. Count: 7, Neg. LLF: 122.04057151409027
Iteration: 2, Func. Count: 14, Neg. LLF: 128.07022471219898
Iteration: 3, Func. Count: 21, Neg. LLF: 119.61037976242963
Iteration: 4, Func. Count: 28, Neg. LLF: 115.3151787146873
Iteration: 5, Func. Count: 35, Neg. LLF: 113.66134388721662
Iteration: 6, Func. Count: 42, Neg. LLF: 113.3617690069963
Iteration: 7, Func. Count: 48, Neg. LLF: 113.35135828435192
Iteration: 8, Func. Count: 54, Neg. LLF: 113.33062575969203
Iteration: 9, Func. Count: 60, Neg. LLF: 113.32983847517919
Iteration: 10, Func. Count: 66, Neg. LLF: 113.32979661240404
Iteration: 11, Func. Count: 72, Neg. LLF: 113.32979616496137
Optimization terminated successfully (Exit mode 0)
Current function value: 113.32979616496137
Iterations: 11
Function evaluations: 72
Gradient evaluations: 11
Iteration: 1, Func. Count: 8, Neg. LLF: 122.25229041255052
Iteration: 2, Func. Count: 16, Neg. LLF: 135.32996115552297
Iteration: 3, Func. Count: 24, Neg. LLF: 116.68383286977686
Iteration: 4, Func. Count: 32, Neg. LLF: 124.4218338392168
Iteration: 5, Func. Count: 40, Neg. LLF: 113.8694732702578
Iteration: 6, Func. Count: 47, Neg. LLF: 113.51515972837619
Iteration: 7, Func. Count: 54, Neg. LLF: 113.41474338878201
Iteration: 8, Func. Count: 61, Neg. LLF: 113.34810565271152
Iteration: 9, Func. Count: 68, Neg. LLF: 113.33209165588715
Iteration: 10, Func. Count: 75, Neg. LLF: 113.32982453361133
Iteration: 11, Func. Count: 82, Neg. LLF: 113.32979631843504
Iteration: 12, Func. Count: 88, Neg. LLF: 113.32979634997713
Optimization terminated successfully (Exit mode 0)
Current function value: 113.32979631843504
Iterations: 12
Function evaluations: 88
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 122.49361777760389
Iteration: 2, Func. Count: 18, Neg. LLF: 143.66081792920764
Iteration: 3, Func. Count: 27, Neg. LLF: 116.28339953399282
Iteration: 4, Func. Count: 36, Neg. LLF: 118.75242523223557
Iteration: 5, Func. Count: 45, Neg. LLF: 113.38290304053561
Iteration: 6, Func. Count: 53, Neg. LLF: 113.34614325906742
Iteration: 7, Func. Count: 61, Neg. LLF: 113.36306696082745
Iteration: 8, Func. Count: 70, Neg. LLF: 113.3310691318899
Iteration: 9, Func. Count: 78, Neg. LLF: 113.32981221883031
Iteration: 10, Func. Count: 86, Neg. LLF: 113.3297976847253
Iteration: 11, Func. Count: 94, Neg. LLF: 113.32979612681284
Iteration: 12, Func. Count: 101, Neg. LLF: 113.32979618038789
Optimization terminated successfully (Exit mode 0)
Current function value: 113.32979612681284
Iterations: 12
Function evaluations: 101
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 123.32543480265065
Iteration: 2, Func. Count: 20, Neg. LLF: 140.74426443128775
Iteration: 3, Func. Count: 30, Neg. LLF: 116.76044214743149
Iteration: 4, Func. Count: 40, Neg. LLF: 117.60429823287933
Iteration: 5, Func. Count: 50, Neg. LLF: 113.39529018711112
Iteration: 6, Func. Count: 59, Neg. LLF: 113.51637532797182
Iteration: 7, Func. Count: 69, Neg. LLF: 113.36304190442031
Iteration: 8, Func. Count: 79, Neg. LLF: 113.33081809703039
Iteration: 9, Func. Count: 88, Neg. LLF: 113.32992355613385
Iteration: 10, Func. Count: 97, Neg. LLF: 113.32979873744549
Iteration: 11, Func. Count: 106, Neg. LLF: 113.32979624884891
Iteration: 12, Func. Count: 114, Neg. LLF: 113.3297963218924
Optimization terminated successfully (Exit mode 0)
Current function value: 113.32979624884891
Iterations: 12
Function evaluations: 114
Gradient evaluations: 12
Iteration: 1, Func. Count: 7, Neg. LLF: 146.05678314301556
Iteration: 2, Func. Count: 15, Neg. LLF: 310.1621176715561
Iteration: 3, Func. Count: 22, Neg. LLF: 118.83718953840558
Iteration: 4, Func. Count: 29, Neg. LLF: 533941.8456285202
Iteration: 5, Func. Count: 36, Neg. LLF: 119.34877697172293
Iteration: 6, Func. Count: 43, Neg. LLF: 114.96799114461118
Iteration: 7, Func. Count: 50, Neg. LLF: 113.74481031314589
Iteration: 8, Func. Count: 56, Neg. LLF: 113.7115526491135
Iteration: 9, Func. Count: 63, Neg. LLF: 113.33841927828017
Iteration: 10, Func. Count: 69, Neg. LLF: 113.3240060969652
Iteration: 11, Func. Count: 75, Neg. LLF: 113.32389528180751
Iteration: 12, Func. Count: 82, Neg. LLF: 113.32209729053793
Iteration: 13, Func. Count: 88, Neg. LLF: 113.3220957498581
Iteration: 14, Func. Count: 93, Neg. LLF: 113.32209572981843
Optimization terminated successfully (Exit mode 0)
Current function value: 113.3220957498581
Iterations: 14
Function evaluations: 93
Gradient evaluations: 14
Iteration: 1, Func. Count: 8, Neg. LLF: 121.84640166390824
Iteration: 2, Func. Count: 16, Neg. LLF: 133.34799850513605
Iteration: 3, Func. Count: 24, Neg. LLF: 117.92450019693072
Iteration: 4, Func. Count: 32, Neg. LLF: 116.08853018947342
Iteration: 5, Func. Count: 40, Neg. LLF: 113.68528661794441
Iteration: 6, Func. Count: 48, Neg. LLF: 113.3500677770032
Iteration: 7, Func. Count: 55, Neg. LLF: 113.35490456468752
Iteration: 8, Func. Count: 63, Neg. LLF: 113.32266884189924
Iteration: 9, Func. Count: 70, Neg. LLF: 113.32234658620351
Iteration: 10, Func. Count: 77, Neg. LLF: 113.32209604344031
Iteration: 11, Func. Count: 84, Neg. LLF: 113.32209561247893
Optimization terminated successfully (Exit mode 0)
Current function value: 113.32209561247893
Iterations: 11
Function evaluations: 84
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 121.5170244416639
Iteration: 2, Func. Count: 18, Neg. LLF: 136.69031714870977
Iteration: 3, Func. Count: 27, Neg. LLF: 115.75380415368916
Iteration: 4, Func. Count: 36, Neg. LLF: 126.09648464069339
Iteration: 5, Func. Count: 45, Neg. LLF: 113.49767569697721
Iteration: 6, Func. Count: 53, Neg. LLF: 113.39720311914196
Iteration: 7, Func. Count: 61, Neg. LLF: 113.41801345590751
Iteration: 8, Func. Count: 70, Neg. LLF: 113.32340768806499
Iteration: 9, Func. Count: 78, Neg. LLF: 113.32222722110092
Iteration: 10, Func. Count: 86, Neg. LLF: 113.32209888675885
Iteration: 11, Func. Count: 94, Neg. LLF: 113.3220955285995
Iteration: 12, Func. Count: 101, Neg. LLF: 113.32209555761595
Optimization terminated successfully (Exit mode 0)
Current function value: 113.3220955285995
Iterations: 12
Function evaluations: 101
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 122.3074627270959
Iteration: 2, Func. Count: 20, Neg. LLF: 146.79218507306172
Iteration: 3, Func. Count: 30, Neg. LLF: 116.21147258410203
Iteration: 4, Func. Count: 40, Neg. LLF: 121.78032728823676
Iteration: 5, Func. Count: 50, Neg. LLF: 113.42169991675328
Iteration: 6, Func. Count: 59, Neg. LLF: 113.47667765736568
Iteration: 7, Func. Count: 69, Neg. LLF: 113.49513737056355
Iteration: 8, Func. Count: 79, Neg. LLF: 113.3222477520243
Iteration: 9, Func. Count: 88, Neg. LLF: 113.32211371299445
Iteration: 10, Func. Count: 97, Neg. LLF: 113.32209636189302
Iteration: 11, Func. Count: 106, Neg. LLF: 113.32209552099025
Optimization terminated successfully (Exit mode 0)
Current function value: 113.32209552099025
Iterations: 11
Function evaluations: 106
Gradient evaluations: 11
Iteration: 1, Func. Count: 11, Neg. LLF: 122.95496281340621
Iteration: 2, Func. Count: 22, Neg. LLF: 144.35576244667737
Iteration: 3, Func. Count: 33, Neg. LLF: 116.47826662853502
Iteration: 4, Func. Count: 44, Neg. LLF: 120.82711933863698
Iteration: 5, Func. Count: 55, Neg. LLF: 113.45621510885206
Iteration: 6, Func. Count: 65, Neg. LLF: 113.50897648247198
Iteration: 7, Func. Count: 76, Neg. LLF: 113.54353839117434
Iteration: 8, Func. Count: 87, Neg. LLF: 113.32240317261042
Iteration: 9, Func. Count: 97, Neg. LLF: 113.322153089659
Iteration: 10, Func. Count: 107, Neg. LLF: 113.3220973476696
Iteration: 11, Func. Count: 117, Neg. LLF: 113.32209557248818
Iteration: 12, Func. Count: 126, Neg. LLF: 113.32209564701925
Optimization terminated successfully (Exit mode 0)
Current function value: 113.32209557248818
Iterations: 12
Function evaluations: 126
Gradient evaluations: 12
Iteration: 1, Func. Count: 8, Neg. LLF: 141.01061970007132
Iteration: 2, Func. Count: 16, Neg. LLF: 206.409524153396
Iteration: 3, Func. Count: 24, Neg. LLF: 118.83030843663992
Iteration: 4, Func. Count: 32, Neg. LLF: 526001.4963233466
Iteration: 5, Func. Count: 40, Neg. LLF: 117.85415585417911
Iteration: 6, Func. Count: 48, Neg. LLF: 114.81110018748831
Iteration: 7, Func. Count: 56, Neg. LLF: 113.70577814579771
Iteration: 8, Func. Count: 64, Neg. LLF: 113.43056767167919
Iteration: 9, Func. Count: 71, Neg. LLF: 113.34203848568166
Iteration: 10, Func. Count: 78, Neg. LLF: 113.3237990797356
Iteration: 11, Func. Count: 85, Neg. LLF: 113.32212762877694
Iteration: 12, Func. Count: 92, Neg. LLF: 113.32209695830974
Iteration: 13, Func. Count: 99, Neg. LLF: 113.32209553060692
Iteration: 14, Func. Count: 105, Neg. LLF: 113.32209555353232
Optimization terminated successfully (Exit mode 0)
Current function value: 113.32209553060692
Iterations: 14
Function evaluations: 105
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 121.97162187365743
Iteration: 2, Func. Count: 18, Neg. LLF: 141.88397205297107
Iteration: 3, Func. Count: 27, Neg. LLF: 117.12505267169477
Iteration: 4, Func. Count: 36, Neg. LLF: 116.59492894335119
Iteration: 5, Func. Count: 45, Neg. LLF: 113.71493740325012
Iteration: 6, Func. Count: 54, Neg. LLF: 113.423573079613
Iteration: 7, Func. Count: 62, Neg. LLF: 113.3258980944585
Iteration: 8, Func. Count: 70, Neg. LLF: 113.32234672323379
Iteration: 9, Func. Count: 78, Neg. LLF: 113.32230265566857
Iteration: 10, Func. Count: 87, Neg. LLF: 113.32209589610316
Iteration: 11, Func. Count: 94, Neg. LLF: 113.32209585835318
Optimization terminated successfully (Exit mode 0)
Current function value: 113.32209589610316
Iterations: 11
Function evaluations: 94
Gradient evaluations: 11
Iteration: 1, Func. Count: 10, Neg. LLF: 120.2764120970385
Iteration: 2, Func. Count: 20, Neg. LLF: 141.70160042814345
Iteration: 3, Func. Count: 30, Neg. LLF: 114.57128777317496
Iteration: 4, Func. Count: 39, Neg. LLF: 114.50551878273367
Iteration: 5, Func. Count: 49, Neg. LLF: 116.39389457189355
Iteration: 6, Func. Count: 60, Neg. LLF: 114.58934710338416
Iteration: 7, Func. Count: 70, Neg. LLF: 113.33963410007209
Iteration: 8, Func. Count: 79, Neg. LLF: 113.32403770915342
Iteration: 9, Func. Count: 88, Neg. LLF: 113.32228536350159
Iteration: 10, Func. Count: 97, Neg. LLF: 113.32210125616623
Iteration: 11, Func. Count: 106, Neg. LLF: 113.32209599855312
Iteration: 12, Func. Count: 115, Neg. LLF: 113.32209548315674
Optimization terminated successfully (Exit mode 0)
Current function value: 113.32209548315674
Iterations: 12
Function evaluations: 115
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 120.95887577739403
Iteration: 2, Func. Count: 22, Neg. LLF: 153.72059801583205
Iteration: 3, Func. Count: 33, Neg. LLF: 116.19575224421665
Iteration: 4, Func. Count: 44, Neg. LLF: 122.32770855616567
Iteration: 5, Func. Count: 55, Neg. LLF: 113.43407480352894
Iteration: 6, Func. Count: 65, Neg. LLF: 113.36605551290879
Iteration: 7, Func. Count: 75, Neg. LLF: 113.62629787580998
Iteration: 8, Func. Count: 86, Neg. LLF: 113.32300749424292
Iteration: 9, Func. Count: 96, Neg. LLF: 113.32227333402268
Iteration: 10, Func. Count: 106, Neg. LLF: 113.32209646768148
Iteration: 11, Func. Count: 116, Neg. LLF: 113.32209551792913
Optimization terminated successfully (Exit mode 0)
Current function value: 113.32209551792913
Iterations: 11
Function evaluations: 116
Gradient evaluations: 11
Iteration: 1, Func. Count: 12, Neg. LLF: 121.26853466291239
Iteration: 2, Func. Count: 24, Neg. LLF: 151.09955139118466
Iteration: 3, Func. Count: 36, Neg. LLF: 116.29764263269023
Iteration: 4, Func. Count: 48, Neg. LLF: 121.20047712121684
Iteration: 5, Func. Count: 60, Neg. LLF: 113.46300911832886
Iteration: 6, Func. Count: 71, Neg. LLF: 113.50380112419431
Iteration: 7, Func. Count: 83, Neg. LLF: 113.64562628516488
Iteration: 8, Func. Count: 95, Neg. LLF: 113.32254344063085
Iteration: 9, Func. Count: 106, Neg. LLF: 113.3221682318543
Iteration: 10, Func. Count: 117, Neg. LLF: 113.32209793806629
Iteration: 11, Func. Count: 128, Neg. LLF: 113.32209567965563
Iteration: 12, Func. Count: 138, Neg. LLF: 113.32209575418875
Optimization terminated successfully (Exit mode 0)
Current function value: 113.32209567965563
Iterations: 12
Function evaluations: 138
Gradient evaluations: 12
Iteration: 1, Func. Count: 5, Neg. LLF: 123.59214366860972
Iteration: 2, Func. Count: 10, Neg. LLF: 132.26415230736166
Iteration: 3, Func. Count: 15, Neg. LLF: 117.71606501850904
Iteration: 4, Func. Count: 19, Neg. LLF: 117.70720182823717
Iteration: 5, Func. Count: 24, Neg. LLF: 117.67056242673563
Iteration: 6, Func. Count: 28, Neg. LLF: 117.6705616397925
Optimization terminated successfully (Exit mode 0)
Current function value: 117.6705616397925
Iterations: 6
Function evaluations: 28
Gradient evaluations: 6
Iteration: 1, Func. Count: 6, Neg. LLF: 121.07498253949426
Iteration: 2, Func. Count: 12, Neg. LLF: 118.2753411772521
Iteration: 3, Func. Count: 17, Neg. LLF: 117.75068206900768
Iteration: 4, Func. Count: 22, Neg. LLF: 117.72457391198374
Iteration: 5, Func. Count: 27, Neg. LLF: 117.67263765941304
Iteration: 6, Func. Count: 32, Neg. LLF: 117.67061143365932
Iteration: 7, Func. Count: 37, Neg. LLF: 117.67056179692109
Iteration: 8, Func. Count: 41, Neg. LLF: 117.67056186613219
Optimization terminated successfully (Exit mode 0)
Current function value: 117.67056179692109
Iterations: 8
Function evaluations: 41
Gradient evaluations: 8
Iteration: 1, Func. Count: 7, Neg. LLF: 119.57107962941224
Iteration: 2, Func. Count: 13, Neg. LLF: 118.88792441182231
Iteration: 3, Func. Count: 19, Neg. LLF: 118.02303996168555
Iteration: 4, Func. Count: 25, Neg. LLF: 117.83112644216645
Iteration: 5, Func. Count: 31, Neg. LLF: 117.69082958038427
Iteration: 6, Func. Count: 37, Neg. LLF: 117.67143888683573
Iteration: 7, Func. Count: 43, Neg. LLF: 117.67057361226287
Iteration: 8, Func. Count: 49, Neg. LLF: 117.67056166650669
Iteration: 9, Func. Count: 54, Neg. LLF: 117.67056196369981
Optimization terminated successfully (Exit mode 0)
Current function value: 117.67056166650669
Iterations: 9
Function evaluations: 54
Gradient evaluations: 9
Iteration: 1, Func. Count: 8, Neg. LLF: 118.41536236153989
Iteration: 2, Func. Count: 15, Neg. LLF: 122.33402343409047
Iteration: 3, Func. Count: 23, Neg. LLF: 118.06408000406277
Iteration: 4, Func. Count: 30, Neg. LLF: 133.09845945074522
Iteration: 5, Func. Count: 38, Neg. LLF: 121.76122195559216
Iteration: 6, Func. Count: 46, Neg. LLF: 117.71756419619409
Iteration: 7, Func. Count: 53, Neg. LLF: 117.68321931543757
Iteration: 8, Func. Count: 60, Neg. LLF: 117.65801638022597
Iteration: 9, Func. Count: 67, Neg. LLF: 117.65543293564257
Iteration: 10, Func. Count: 74, Neg. LLF: 117.65295188911993
Iteration: 11, Func. Count: 81, Neg. LLF: 117.65288613267236
Iteration: 12, Func. Count: 88, Neg. LLF: 117.65288184501378
Iteration: 13, Func. Count: 95, Neg. LLF: 117.6555848711206
Optimization terminated successfully (Exit mode 0)
Current function value: 117.65288182983984
Iterations: 14
Function evaluations: 98
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 118.47125180895775
Iteration: 2, Func. Count: 17, Neg. LLF: 123.83786757384954
Iteration: 3, Func. Count: 26, Neg. LLF: 118.11694415256844
Iteration: 4, Func. Count: 34, Neg. LLF: 130.9514147016358
Iteration: 5, Func. Count: 43, Neg. LLF: 125.50629930982207
Iteration: 6, Func. Count: 52, Neg. LLF: 117.76053555356279
Iteration: 7, Func. Count: 60, Neg. LLF: 117.70617835209389
Iteration: 8, Func. Count: 68, Neg. LLF: 117.66329212479067
Iteration: 9, Func. Count: 76, Neg. LLF: 117.66072020649911
Iteration: 10, Func. Count: 85, Neg. LLF: 117.6529855157977
Iteration: 11, Func. Count: 93, Neg. LLF: 117.65288208958343
Iteration: 12, Func. Count: 101, Neg. LLF: 117.65521895010053
Optimization terminated successfully (Exit mode 0)
Current function value: 117.65288207627074
Iterations: 13
Function evaluations: 104
Gradient evaluations: 12
Iteration: 1, Func. Count: 6, Neg. LLF: 125.20966123339919
Iteration: 2, Func. Count: 12, Neg. LLF: 126.10797538526396
Iteration: 3, Func. Count: 18, Neg. LLF: 117.82719924096672
Iteration: 4, Func. Count: 23, Neg. LLF: 117.68610778987315
Iteration: 5, Func. Count: 28, Neg. LLF: 117.67191917623173
Iteration: 6, Func. Count: 33, Neg. LLF: 117.67057271148356
Iteration: 7, Func. Count: 38, Neg. LLF: 117.67056180461479
Iteration: 8, Func. Count: 42, Neg. LLF: 117.67056181686343
Optimization terminated successfully (Exit mode 0)
Current function value: 117.67056180461479
Iterations: 8
Function evaluations: 42
Gradient evaluations: 8
Iteration: 1, Func. Count: 7, Neg. LLF: 138.7898910518267
Iteration: 2, Func. Count: 14, Neg. LLF: 123.63557593454726
Iteration: 3, Func. Count: 21, Neg. LLF: 119.90902552207443
Iteration: 4, Func. Count: 28, Neg. LLF: 117.79535996697763
Iteration: 5, Func. Count: 34, Neg. LLF: 117.75691755799596
Iteration: 6, Func. Count: 40, Neg. LLF: 117.75579992744537
Iteration: 7, Func. Count: 46, Neg. LLF: 117.7549011105815
Iteration: 8, Func. Count: 52, Neg. LLF: 117.75481500140954
Iteration: 9, Func. Count: 58, Neg. LLF: 117.7547577244103
Iteration: 10, Func. Count: 64, Neg. LLF: 117.75475697204917
Optimization terminated successfully (Exit mode 0)
Current function value: 117.75475697204917
Iterations: 10
Function evaluations: 64
Gradient evaluations: 10
Iteration: 1, Func. Count: 8, Neg. LLF: 134.06406387305807
Iteration: 2, Func. Count: 16, Neg. LLF: 122.5386187668217
Iteration: 3, Func. Count: 24, Neg. LLF: 127.92251697744642
Iteration: 4, Func. Count: 32, Neg. LLF: 117.8441776822537
Iteration: 5, Func. Count: 39, Neg. LLF: 117.76076939497322
Iteration: 6, Func. Count: 46, Neg. LLF: 117.7556489536391
Iteration: 7, Func. Count: 53, Neg. LLF: 117.75495380576443
Iteration: 8, Func. Count: 60, Neg. LLF: 117.75483799197067
Iteration: 9, Func. Count: 67, Neg. LLF: 117.75476041816714
Iteration: 10, Func. Count: 74, Neg. LLF: 117.75475704446806
Iteration: 11, Func. Count: 80, Neg. LLF: 117.75475707891617
Optimization terminated successfully (Exit mode 0)
Current function value: 117.75475704446806
Iterations: 11
Function evaluations: 80
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 123.5648676239538
Iteration: 2, Func. Count: 18, Neg. LLF: 123.15245976187136
Iteration: 3, Func. Count: 27, Neg. LLF: 168.93749571821598
Iteration: 4, Func. Count: 36, Neg. LLF: 117.94831047178113
Iteration: 5, Func. Count: 44, Neg. LLF: 117.82730778313535
Iteration: 6, Func. Count: 52, Neg. LLF: 117.78219392476974
Iteration: 7, Func. Count: 60, Neg. LLF: 117.76453519076065
Iteration: 8, Func. Count: 68, Neg. LLF: 117.75603131966625
Iteration: 9, Func. Count: 76, Neg. LLF: 117.75480265785956
Iteration: 10, Func. Count: 84, Neg. LLF: 117.75475696715556
Iteration: 11, Func. Count: 91, Neg. LLF: 117.75475698123557
Optimization terminated successfully (Exit mode 0)
Current function value: 117.75475696715556
Iterations: 11
Function evaluations: 91
Gradient evaluations: 11
Iteration: 1, Func. Count: 10, Neg. LLF: 131.92666767458755
Iteration: 2, Func. Count: 20, Neg. LLF: 125.6817739998864
Iteration: 3, Func. Count: 30, Neg. LLF: 128.4413852878108
Iteration: 4, Func. Count: 40, Neg. LLF: 117.85923622185804
Iteration: 5, Func. Count: 49, Neg. LLF: 117.52510767818052
Iteration: 6, Func. Count: 58, Neg. LLF: 117.25123043612011
Iteration: 7, Func. Count: 67, Neg. LLF: 117.24972458163238
Iteration: 8, Func. Count: 76, Neg. LLF: 117.24918104847437
Iteration: 9, Func. Count: 85, Neg. LLF: 117.24901995788012
Iteration: 10, Func. Count: 94, Neg. LLF: 117.24870617607372
Iteration: 11, Func. Count: 103, Neg. LLF: 117.24868293734166
Iteration: 12, Func. Count: 112, Neg. LLF: 117.24868106694926
Iteration: 13, Func. Count: 121, Neg. LLF: 117.24868335695524
Optimization terminated successfully (Exit mode 0)
Current function value: 117.2486809781314
Iterations: 14
Function evaluations: 122
Gradient evaluations: 13
Iteration: 1, Func. Count: 7, Neg. LLF: 116.28042995590671
Iteration: 2, Func. Count: 13, Neg. LLF: 120.39806318048485
Iteration: 3, Func. Count: 20, Neg. LLF: 141.60056703457784
Iteration: 4, Func. Count: 27, Neg. LLF: 575132.371073732
Iteration: 5, Func. Count: 34, Neg. LLF: 516264.0828858518
Iteration: 6, Func. Count: 41, Neg. LLF: 518984.3039397949
Iteration: 7, Func. Count: 48, Neg. LLF: 116.64893478292375
Iteration: 8, Func. Count: 55, Neg. LLF: 113.53692101391115
Iteration: 9, Func. Count: 62, Neg. LLF: 461.8665758372986
Iteration: 10, Func. Count: 70, Neg. LLF: 113.39162692911327
Iteration: 11, Func. Count: 77, Neg. LLF: 113.38966829153922
Iteration: 12, Func. Count: 84, Neg. LLF: 113.38936375883735
Iteration: 13, Func. Count: 90, Neg. LLF: 113.3893595887285
Iteration: 14, Func. Count: 95, Neg. LLF: 113.38935957304881
Optimization terminated successfully (Exit mode 0)
Current function value: 113.3893595887285
Iterations: 14
Function evaluations: 95
Gradient evaluations: 14
Iteration: 1, Func. Count: 8, Neg. LLF: 123.49167951982474
Iteration: 2, Func. Count: 16, Neg. LLF: 126.2268329999494
Iteration: 3, Func. Count: 24, Neg. LLF: 120.05466305192738
Iteration: 4, Func. Count: 32, Neg. LLF: 115.31016166993078
Iteration: 5, Func. Count: 40, Neg. LLF: 113.86445420548145
Iteration: 6, Func. Count: 48, Neg. LLF: 113.52732974000969
Iteration: 7, Func. Count: 56, Neg. LLF: 113.33881015054745
Iteration: 8, Func. Count: 63, Neg. LLF: 113.33006561117348
Iteration: 9, Func. Count: 70, Neg. LLF: 113.32983284421685
Iteration: 10, Func. Count: 77, Neg. LLF: 113.32979620493634
Iteration: 11, Func. Count: 83, Neg. LLF: 113.32979616392757
Optimization terminated successfully (Exit mode 0)
Current function value: 113.32979620493634
Iterations: 11
Function evaluations: 83
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 123.6150782114166
Iteration: 2, Func. Count: 18, Neg. LLF: 133.93408571551487
Iteration: 3, Func. Count: 27, Neg. LLF: 116.29526395073356
Iteration: 4, Func. Count: 36, Neg. LLF: 132.34834702410527
Iteration: 5, Func. Count: 45, Neg. LLF: 113.86928167792982
Iteration: 6, Func. Count: 53, Neg. LLF: 113.52306784804048
Iteration: 7, Func. Count: 61, Neg. LLF: 113.42284300386724
Iteration: 8, Func. Count: 69, Neg. LLF: 113.35002801646375
Iteration: 9, Func. Count: 77, Neg. LLF: 113.33259181681177
Iteration: 10, Func. Count: 85, Neg. LLF: 113.3298324987546
Iteration: 11, Func. Count: 93, Neg. LLF: 113.32979658794325
Iteration: 12, Func. Count: 100, Neg. LLF: 113.32979661947637
Optimization terminated successfully (Exit mode 0)
Current function value: 113.32979658794325
Iterations: 12
Function evaluations: 100
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 123.1626874698556
Iteration: 2, Func. Count: 20, Neg. LLF: 142.44408444112335
Iteration: 3, Func. Count: 30, Neg. LLF: 116.07083287870432
Iteration: 4, Func. Count: 40, Neg. LLF: 120.24675144234202
Iteration: 5, Func. Count: 50, Neg. LLF: 113.39411274902942
Iteration: 6, Func. Count: 59, Neg. LLF: 113.35278662545203
Iteration: 7, Func. Count: 68, Neg. LLF: 113.345661485448
Iteration: 8, Func. Count: 77, Neg. LLF: 113.3310947731031
Iteration: 9, Func. Count: 86, Neg. LLF: 113.3299679948541
Iteration: 10, Func. Count: 95, Neg. LLF: 113.32979672581881
Iteration: 11, Func. Count: 104, Neg. LLF: 113.32979613527252
Optimization terminated successfully (Exit mode 0)
Current function value: 113.32979613527252
Iterations: 11
Function evaluations: 104
Gradient evaluations: 11
Iteration: 1, Func. Count: 11, Neg. LLF: 124.022619071314
Iteration: 2, Func. Count: 22, Neg. LLF: 139.86757150380524
Iteration: 3, Func. Count: 33, Neg. LLF: 116.496434042238
Iteration: 4, Func. Count: 44, Neg. LLF: 118.3893847077703
Iteration: 5, Func. Count: 55, Neg. LLF: 113.39382239614405
Iteration: 6, Func. Count: 65, Neg. LLF: 113.37455965160582
Iteration: 7, Func. Count: 75, Neg. LLF: 113.40217494751022
Iteration: 8, Func. Count: 86, Neg. LLF: 113.33240043291669
Iteration: 9, Func. Count: 96, Neg. LLF: 113.32985098878834
Iteration: 10, Func. Count: 106, Neg. LLF: 113.32980366882582
Iteration: 11, Func. Count: 116, Neg. LLF: 113.32979613131286
Iteration: 12, Func. Count: 125, Neg. LLF: 113.3297962043637
Optimization terminated successfully (Exit mode 0)
Current function value: 113.32979613131286
Iterations: 12
Function evaluations: 125
Gradient evaluations: 12
Iteration: 1, Func. Count: 8, Neg. LLF: 116.4895249519465
Iteration: 2, Func. Count: 15, Neg. LLF: 116.1649986101367
Iteration: 3, Func. Count: 22, Neg. LLF: 393680.915443742
Iteration: 4, Func. Count: 30, Neg. LLF: 209.23111904944065
Iteration: 5, Func. Count: 38, Neg. LLF: 319145.4636925187
Iteration: 6, Func. Count: 46, Neg. LLF: 115.87905748351592
Iteration: 7, Func. Count: 54, Neg. LLF: 114.65356750233008
Iteration: 8, Func. Count: 62, Neg. LLF: 113.36225208520528
Iteration: 9, Func. Count: 70, Neg. LLF: 113.33604889928746
Iteration: 10, Func. Count: 78, Neg. LLF: 113.32211867893464
Iteration: 11, Func. Count: 85, Neg. LLF: 113.32209584689203
Iteration: 12, Func. Count: 91, Neg. LLF: 113.32209582681547
Optimization terminated successfully (Exit mode 0)
Current function value: 113.32209584689203
Iterations: 12
Function evaluations: 91
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 123.11014199917332
Iteration: 2, Func. Count: 18, Neg. LLF: 131.16956781894453
Iteration: 3, Func. Count: 27, Neg. LLF: 118.29784947644347
Iteration: 4, Func. Count: 36, Neg. LLF: 116.0658730871307
Iteration: 5, Func. Count: 45, Neg. LLF: 113.7409885494114
Iteration: 6, Func. Count: 54, Neg. LLF: 113.33354092457147
Iteration: 7, Func. Count: 62, Neg. LLF: 113.33884600263794
Iteration: 8, Func. Count: 71, Neg. LLF: 113.32344394099752
Iteration: 9, Func. Count: 79, Neg. LLF: 113.32214563123179
Iteration: 10, Func. Count: 87, Neg. LLF: 113.32211081947467
Iteration: 11, Func. Count: 95, Neg. LLF: 113.32209548571055
Iteration: 12, Func. Count: 102, Neg. LLF: 113.32209544795776
Optimization terminated successfully (Exit mode 0)
Current function value: 113.32209548571055
Iterations: 12
Function evaluations: 102
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 123.12277748196553
Iteration: 2, Func. Count: 20, Neg. LLF: 136.49968093212325
Iteration: 3, Func. Count: 30, Neg. LLF: 116.41528694832397
Iteration: 4, Func. Count: 40, Neg. LLF: 132.57976366213552
Iteration: 5, Func. Count: 50, Neg. LLF: 114.00262660277812
Iteration: 6, Func. Count: 59, Neg. LLF: 113.87349173004388
Iteration: 7, Func. Count: 69, Neg. LLF: 113.88124935475118
Iteration: 8, Func. Count: 79, Neg. LLF: 113.32480599488211
Iteration: 9, Func. Count: 88, Neg. LLF: 113.32278862358834
Iteration: 10, Func. Count: 97, Neg. LLF: 113.32226407686537
Iteration: 11, Func. Count: 106, Neg. LLF: 113.3221006529135
Iteration: 12, Func. Count: 115, Neg. LLF: 113.32209604762116
Iteration: 13, Func. Count: 124, Neg. LLF: 113.32209548910747
Optimization terminated successfully (Exit mode 0)
Current function value: 113.32209548910747
Iterations: 13
Function evaluations: 124
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 122.93798441946255
Iteration: 2, Func. Count: 22, Neg. LLF: 145.78526012456837
Iteration: 3, Func. Count: 33, Neg. LLF: 116.03411637406312
Iteration: 4, Func. Count: 44, Neg. LLF: 121.52126766914373
Iteration: 5, Func. Count: 55, Neg. LLF: 113.41900160339101
Iteration: 6, Func. Count: 65, Neg. LLF: 113.40841048765648
Iteration: 7, Func. Count: 76, Neg. LLF: 113.55438245626208
Iteration: 8, Func. Count: 87, Neg. LLF: 113.32231478294331
Iteration: 9, Func. Count: 97, Neg. LLF: 113.32215258021202
Iteration: 10, Func. Count: 107, Neg. LLF: 113.3220957657521
Iteration: 11, Func. Count: 116, Neg. LLF: 113.32209581590274
Optimization terminated successfully (Exit mode 0)
Current function value: 113.3220957657521
Iterations: 11
Function evaluations: 116
Gradient evaluations: 11
Iteration: 1, Func. Count: 12, Neg. LLF: 114.91655799579507
Iteration: 2, Func. Count: 23, Neg. LLF: 116.18337491219397
Iteration: 3, Func. Count: 35, Neg. LLF: 577755.7321527795
Iteration: 4, Func. Count: 47, Neg. LLF: 415.23820429597663
Iteration: 5, Func. Count: 59, Neg. LLF: 181.76681155947767
Iteration: 6, Func. Count: 71, Neg. LLF: 120.35316973851616
Iteration: 7, Func. Count: 83, Neg. LLF: 148.99185645506327
Iteration: 8, Func. Count: 95, Neg. LLF: 113.74224129578026
Iteration: 9, Func. Count: 107, Neg. LLF: 113.57156292649725
Iteration: 10, Func. Count: 119, Neg. LLF: 113.33064860246641
Iteration: 11, Func. Count: 131, Neg. LLF: 113.32543706218704
Iteration: 12, Func. Count: 142, Neg. LLF: 113.32265386638419
Iteration: 13, Func. Count: 153, Neg. LLF: 113.32212569899306
Iteration: 14, Func. Count: 164, Neg. LLF: 113.32210180038582
Iteration: 15, Func. Count: 175, Neg. LLF: 113.32209548474397
Iteration: 16, Func. Count: 185, Neg. LLF: 113.32209555927244
Optimization terminated successfully (Exit mode 0)
Current function value: 113.32209548474397
Iterations: 16
Function evaluations: 185
Gradient evaluations: 16
Iteration: 1, Func. Count: 9, Neg. LLF: 116.99355642451498
Iteration: 2, Func. Count: 17, Neg. LLF: 131.72068135805117
Iteration: 3, Func. Count: 26, Neg. LLF: 114.2086102356511
Iteration: 4, Func. Count: 34, Neg. LLF: 552647.7630170889
Iteration: 5, Func. Count: 43, Neg. LLF: 323194.28126872244
Iteration: 6, Func. Count: 52, Neg. LLF: 117.49487054101968
Iteration: 7, Func. Count: 61, Neg. LLF: 113.39289787110692
Iteration: 8, Func. Count: 69, Neg. LLF: 113.33143925746235
Iteration: 9, Func. Count: 77, Neg. LLF: 113.32312861758129
Iteration: 10, Func. Count: 85, Neg. LLF: 113.32253822596822
Iteration: 11, Func. Count: 93, Neg. LLF: 113.32222201364263
Iteration: 12, Func. Count: 101, Neg. LLF: 113.32209981523243
Iteration: 13, Func. Count: 109, Neg. LLF: 113.32209554477294
Iteration: 14, Func. Count: 116, Neg. LLF: 113.32209556769897
Optimization terminated successfully (Exit mode 0)
Current function value: 113.32209554477294
Iterations: 14
Function evaluations: 116
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 122.94304742869207
Iteration: 2, Func. Count: 20, Neg. LLF: 138.7653661805283
Iteration: 3, Func. Count: 30, Neg. LLF: 117.61956588566198
Iteration: 4, Func. Count: 40, Neg. LLF: 116.89124095912123
Iteration: 5, Func. Count: 50, Neg. LLF: 113.8189608201987
Iteration: 6, Func. Count: 60, Neg. LLF: 113.49732857138449
Iteration: 7, Func. Count: 70, Neg. LLF: 113.32935303906662
Iteration: 8, Func. Count: 79, Neg. LLF: 113.32412418680977
Iteration: 9, Func. Count: 88, Neg. LLF: 113.32219412748401
Iteration: 10, Func. Count: 97, Neg. LLF: 113.32211283549536
Iteration: 11, Func. Count: 106, Neg. LLF: 113.32209552589603
Iteration: 12, Func. Count: 114, Neg. LLF: 113.32209548814569
Optimization terminated successfully (Exit mode 0)
Current function value: 113.32209552589603
Iterations: 12
Function evaluations: 114
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 121.52652858554679
Iteration: 2, Func. Count: 22, Neg. LLF: 140.97984100973667
Iteration: 3, Func. Count: 33, Neg. LLF: 115.07436253088977
Iteration: 4, Func. Count: 43, Neg. LLF: 116.42103705617575
Iteration: 5, Func. Count: 54, Neg. LLF: 126.49780320792969
Iteration: 6, Func. Count: 66, Neg. LLF: 115.02624672916208
Iteration: 7, Func. Count: 77, Neg. LLF: 113.55417057704948
Iteration: 8, Func. Count: 87, Neg. LLF: 113.43532582668828
Iteration: 9, Func. Count: 97, Neg. LLF: 113.5146610098595
Iteration: 10, Func. Count: 108, Neg. LLF: 113.34205187700539
Iteration: 11, Func. Count: 118, Neg. LLF: 113.32348286066369
Iteration: 12, Func. Count: 128, Neg. LLF: 113.32237014187861
Iteration: 13, Func. Count: 138, Neg. LLF: 113.32210192229677
Iteration: 14, Func. Count: 148, Neg. LLF: 113.32209585526915
Iteration: 15, Func. Count: 157, Neg. LLF: 113.32209588431134
Optimization terminated successfully (Exit mode 0)
Current function value: 113.32209585526915
Iterations: 15
Function evaluations: 157
Gradient evaluations: 15
Iteration: 1, Func. Count: 12, Neg. LLF: 115.11990958690292
Iteration: 2, Func. Count: 23, Neg. LLF: 125.32520040284986
Iteration: 3, Func. Count: 35, Neg. LLF: 113.5477264033998
Iteration: 4, Func. Count: 46, Neg. LLF: 185.7255935772045
Iteration: 5, Func. Count: 58, Neg. LLF: 116.80830734101443
Iteration: 6, Func. Count: 70, Neg. LLF: 113.78109526489875
Iteration: 7, Func. Count: 82, Neg. LLF: 113.34422203234085
Iteration: 8, Func. Count: 94, Neg. LLF: 113.3367006956604
Iteration: 9, Func. Count: 106, Neg. LLF: 113.32373113452962
Iteration: 10, Func. Count: 117, Neg. LLF: 113.32210595030257
Iteration: 11, Func. Count: 128, Neg. LLF: 113.32209580417762
Iteration: 12, Func. Count: 138, Neg. LLF: 113.3220958543292
Optimization terminated successfully (Exit mode 0)
Current function value: 113.32209580417762
Iterations: 12
Function evaluations: 138
Gradient evaluations: 12
Iteration: 1, Func. Count: 13, Neg. LLF: 115.14905384232902
Iteration: 2, Func. Count: 25, Neg. LLF: 124.93814735328559
Iteration: 3, Func. Count: 38, Neg. LLF: 113.53702704831518
Iteration: 4, Func. Count: 50, Neg. LLF: 184.36976482312636
Iteration: 5, Func. Count: 63, Neg. LLF: 116.06873324761773
Iteration: 6, Func. Count: 76, Neg. LLF: 113.70384421317831
Iteration: 7, Func. Count: 89, Neg. LLF: 113.35471239712234
Iteration: 8, Func. Count: 102, Neg. LLF: 113.33095936367548
Iteration: 9, Func. Count: 115, Neg. LLF: 113.32326075354395
Iteration: 10, Func. Count: 127, Neg. LLF: 113.32210611795901
Iteration: 11, Func. Count: 139, Neg. LLF: 113.32209582939306
Iteration: 12, Func. Count: 150, Neg. LLF: 113.32209590390794
Optimization terminated successfully (Exit mode 0)
Current function value: 113.32209582939306
Iterations: 12
Function evaluations: 150
Gradient evaluations: 12
Iteration: 1, Func. Count: 6, Neg. LLF: 138.52628605763996
Iteration: 2, Func. Count: 13, Neg. LLF: 128.92754154403443
Iteration: 3, Func. Count: 19, Neg. LLF: 120.88265963804056
Iteration: 4, Func. Count: 25, Neg. LLF: 118.24571601970659
Iteration: 5, Func. Count: 30, Neg. LLF: 117.72174800746683
Iteration: 6, Func. Count: 35, Neg. LLF: 117.76327410167151
Iteration: 7, Func. Count: 41, Neg. LLF: 117.67352026784155
Iteration: 8, Func. Count: 46, Neg. LLF: 117.67057565185885
Iteration: 9, Func. Count: 51, Neg. LLF: 117.6705619160263
Iteration: 10, Func. Count: 55, Neg. LLF: 117.67056198783675
Optimization terminated successfully (Exit mode 0)
Current function value: 117.6705619160263
Iterations: 10
Function evaluations: 55
Gradient evaluations: 10
Iteration: 1, Func. Count: 7, Neg. LLF: 167.45551310238025
Iteration: 2, Func. Count: 15, Neg. LLF: 120.54802621174275
Iteration: 3, Func. Count: 21, Neg. LLF: 450.10932686299725
Iteration: 4, Func. Count: 28, Neg. LLF: 120.41783597017596
Iteration: 5, Func. Count: 34, Neg. LLF: 120.36112177297221
Iteration: 6, Func. Count: 40, Neg. LLF: 120.35634263747528
Iteration: 7, Func. Count: 46, Neg. LLF: 120.35591505427708
Iteration: 8, Func. Count: 52, Neg. LLF: 120.3559135664419
Iteration: 9, Func. Count: 57, Neg. LLF: 120.35591363246391
Optimization terminated successfully (Exit mode 0)
Current function value: 120.3559135664419
Iterations: 9
Function evaluations: 57
Gradient evaluations: 9
Iteration: 1, Func. Count: 8, Neg. LLF: 161.52922730661777
Iteration: 2, Func. Count: 18, Neg. LLF: 120.64974956174532
Iteration: 3, Func. Count: 25, Neg. LLF: 120.80270129496995
Iteration: 4, Func. Count: 33, Neg. LLF: 128.34283307305188
Iteration: 5, Func. Count: 41, Neg. LLF: 120.37852053254811
Iteration: 6, Func. Count: 48, Neg. LLF: 120.37667804014353
Iteration: 7, Func. Count: 55, Neg. LLF: 120.30280971520457
Iteration: 8, Func. Count: 62, Neg. LLF: 120.30219022525223
Iteration: 9, Func. Count: 69, Neg. LLF: 120.302198132073
Iteration: 10, Func. Count: 76, Neg. LLF: 120.30175615205488
Iteration: 11, Func. Count: 83, Neg. LLF: 120.30172470010888
Iteration: 12, Func. Count: 90, Neg. LLF: 120.30161946678743
Iteration: 13, Func. Count: 97, Neg. LLF: 121.5485758410374
Iteration: 14, Func. Count: 114, Neg. LLF: 121.87264701545028
Iteration: 15, Func. Count: 131, Neg. LLF: 120.3017370228259
Iteration: 16, Func. Count: 139, Neg. LLF: 120.30172811893134
Iteration: 17, Func. Count: 147, Neg. LLF: 120.30163381212843
Iteration: 18, Func. Count: 155, Neg. LLF: 120.3015940090067
Iteration: 19, Func. Count: 162, Neg. LLF: 120.30158803300714
Iteration: 20, Func. Count: 169, Neg. LLF: 120.30158499682703
Iteration: 21, Func. Count: 175, Neg. LLF: 120.30158495202798
Optimization terminated successfully (Exit mode 0)
Current function value: 120.30158499682703
Iterations: 22
Function evaluations: 175
Gradient evaluations: 21
Iteration: 1, Func. Count: 9, Neg. LLF: 158.98727016808647
Iteration: 2, Func. Count: 20, Neg. LLF: 120.58967531157727
Iteration: 3, Func. Count: 28, Neg. LLF: 120.4221149647371
Iteration: 4, Func. Count: 36, Neg. LLF: 120.4179012184252
Iteration: 5, Func. Count: 44, Neg. LLF: 120.405245068991
Iteration: 6, Func. Count: 52, Neg. LLF: 120.39497962863963
Iteration: 7, Func. Count: 60, Neg. LLF: 120.3802194552605
Iteration: 8, Func. Count: 68, Neg. LLF: 120.37423052996499
Iteration: 9, Func. Count: 76, Neg. LLF: 120.37180088883512
Iteration: 10, Func. Count: 84, Neg. LLF: 120.37105443701135
Iteration: 11, Func. Count: 92, Neg. LLF: 120.36532678440022
Iteration: 12, Func. Count: 100, Neg. LLF: 120.35883376338572
Iteration: 13, Func. Count: 108, Neg. LLF: 120.35700507790364
Iteration: 14, Func. Count: 116, Neg. LLF: 120.35591484250729
Iteration: 15, Func. Count: 123, Neg. LLF: 120.35591477637428
Optimization terminated successfully (Exit mode 0)
Current function value: 120.35591484250729
Iterations: 15
Function evaluations: 123
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 135.91382181857443
Iteration: 2, Func. Count: 20, Neg. LLF: 120.81483658427005
Iteration: 3, Func. Count: 29, Neg. LLF: 120.84332784125824
Iteration: 4, Func. Count: 39, Neg. LLF: 120.47598291763784
Iteration: 5, Func. Count: 48, Neg. LLF: 120.44981180262891
Iteration: 6, Func. Count: 57, Neg. LLF: 120.44580934263608
Iteration: 7, Func. Count: 67, Neg. LLF: 120.42668140766523
Iteration: 8, Func. Count: 76, Neg. LLF: 120.42263537221919
Iteration: 9, Func. Count: 85, Neg. LLF: 120.41758848071913
Iteration: 10, Func. Count: 94, Neg. LLF: 120.4011399419885
Iteration: 11, Func. Count: 103, Neg. LLF: 120.39715422203231
Iteration: 12, Func. Count: 112, Neg. LLF: 120.39407205005746
Iteration: 13, Func. Count: 121, Neg. LLF: 120.38302900894571
Iteration: 14, Func. Count: 130, Neg. LLF: 120.38039117947315
Iteration: 15, Func. Count: 139, Neg. LLF: 120.37434676013898
Iteration: 16, Func. Count: 148, Neg. LLF: 120.37273735217171
Iteration: 17, Func. Count: 157, Neg. LLF: 120.36906181174804
Iteration: 18, Func. Count: 166, Neg. LLF: 120.36166085735267
Iteration: 19, Func. Count: 175, Neg. LLF: 122.77640571026672
Iteration: 20, Func. Count: 186, Neg. LLF: 135.30015210353636
Iteration: 21, Func. Count: 197, Neg. LLF: 120.35591357468437
Iteration: 22, Func. Count: 205, Neg. LLF: 120.35591351310892
Optimization terminated successfully (Exit mode 0)
Current function value: 120.35591357468437
Iterations: 23
Function evaluations: 205
Gradient evaluations: 22
Iteration: 1, Func. Count: 7, Neg. LLF: 135.03535465104918
Iteration: 2, Func. Count: 15, Neg. LLF: 124.89332669288687
Iteration: 3, Func. Count: 22, Neg. LLF: 120.99014862890223
Iteration: 4, Func. Count: 29, Neg. LLF: 118.73909316891418
Iteration: 5, Func. Count: 35, Neg. LLF: 117.72898677001801
Iteration: 6, Func. Count: 41, Neg. LLF: 117.680414981349
Iteration: 7, Func. Count: 47, Neg. LLF: 117.67079111057011
Iteration: 8, Func. Count: 53, Neg. LLF: 117.67056267011668
Iteration: 9, Func. Count: 59, Neg. LLF: 117.67056164027368
Iteration: 10, Func. Count: 64, Neg. LLF: 117.67056165251341
Optimization terminated successfully (Exit mode 0)
Current function value: 117.67056164027368
Iterations: 10
Function evaluations: 64
Gradient evaluations: 10
Iteration: 1, Func. Count: 8, Neg. LLF: 139.07580402998082
Iteration: 2, Func. Count: 16, Neg. LLF: 124.82275399503168
Iteration: 3, Func. Count: 24, Neg. LLF: 119.81699725231908
Iteration: 4, Func. Count: 32, Neg. LLF: 117.76302789415458
Iteration: 5, Func. Count: 39, Neg. LLF: 117.75610028157034
Iteration: 6, Func. Count: 46, Neg. LLF: 117.75508831315166
Iteration: 7, Func. Count: 53, Neg. LLF: 117.75485213969186
Iteration: 8, Func. Count: 60, Neg. LLF: 117.75478328591338
Iteration: 9, Func. Count: 67, Neg. LLF: 117.75475752399602
Iteration: 10, Func. Count: 74, Neg. LLF: 117.7547569685662
Optimization terminated successfully (Exit mode 0)
Current function value: 117.7547569685662
Iterations: 10
Function evaluations: 74
Gradient evaluations: 10
Iteration: 1, Func. Count: 9, Neg. LLF: 134.5170237985843
Iteration: 2, Func. Count: 18, Neg. LLF: 122.19286905646051
Iteration: 3, Func. Count: 27, Neg. LLF: 129.25811415767595
Iteration: 4, Func. Count: 36, Neg. LLF: 117.84192714299624
Iteration: 5, Func. Count: 44, Neg. LLF: 117.76322826734524
Iteration: 6, Func. Count: 52, Neg. LLF: 117.75542590853505
Iteration: 7, Func. Count: 60, Neg. LLF: 117.75487718771376
Iteration: 8, Func. Count: 68, Neg. LLF: 117.75481098285543
Iteration: 9, Func. Count: 76, Neg. LLF: 117.7547582673541
Iteration: 10, Func. Count: 84, Neg. LLF: 117.7547569848996
Iteration: 11, Func. Count: 91, Neg. LLF: 117.7547570193829
Optimization terminated successfully (Exit mode 0)
Current function value: 117.7547569848996
Iterations: 11
Function evaluations: 91
Gradient evaluations: 11
Iteration: 1, Func. Count: 10, Neg. LLF: 124.55450458979836
Iteration: 2, Func. Count: 20, Neg. LLF: 123.87307172284966
Iteration: 3, Func. Count: 30, Neg. LLF: 155.54993875356607
Iteration: 4, Func. Count: 40, Neg. LLF: 117.92908763942248
Iteration: 5, Func. Count: 49, Neg. LLF: 117.8210731967194
Iteration: 6, Func. Count: 58, Neg. LLF: 117.77715028043457
Iteration: 7, Func. Count: 67, Neg. LLF: 117.76352932752471
Iteration: 8, Func. Count: 76, Neg. LLF: 117.75481653423282
Iteration: 9, Func. Count: 85, Neg. LLF: 117.75475714638463
Iteration: 10, Func. Count: 93, Neg. LLF: 117.75475716053339
Optimization terminated successfully (Exit mode 0)
Current function value: 117.75475714638463
Iterations: 10
Function evaluations: 93
Gradient evaluations: 10
Iteration: 1, Func. Count: 11, Neg. LLF: 132.66176303345878
Iteration: 2, Func. Count: 22, Neg. LLF: 125.41483064405541
Iteration: 3, Func. Count: 33, Neg. LLF: 129.51139517385823
Iteration: 4, Func. Count: 44, Neg. LLF: 117.83429874966527
Iteration: 5, Func. Count: 54, Neg. LLF: 117.50898931747071
Iteration: 6, Func. Count: 64, Neg. LLF: 117.24981071594189
Iteration: 7, Func. Count: 74, Neg. LLF: 117.2492496804906
Iteration: 8, Func. Count: 84, Neg. LLF: 117.24883872740031
Iteration: 9, Func. Count: 94, Neg. LLF: 117.24878101109401
Iteration: 10, Func. Count: 104, Neg. LLF: 117.24868403197051
Iteration: 11, Func. Count: 114, Neg. LLF: 117.24867887847016
Iteration: 12, Func. Count: 124, Neg. LLF: 117.2487010459827
Optimization terminated successfully (Exit mode 0)
Current function value: 117.24867898565614
Iterations: 13
Function evaluations: 125
Gradient evaluations: 12
Iteration: 1, Func. Count: 8, Neg. LLF: 148.93450901502047
Iteration: 2, Func. Count: 16, Neg. LLF: 133.51968177001856
Iteration: 3, Func. Count: 24, Neg. LLF: 114.0985854668736
Iteration: 4, Func. Count: 31, Neg. LLF: 117.53276382525189
Iteration: 5, Func. Count: 39, Neg. LLF: 121.19679979481364
Iteration: 6, Func. Count: 47, Neg. LLF: 361.4241443027848
Iteration: 7, Func. Count: 56, Neg. LLF: 124.21532310499077
Iteration: 8, Func. Count: 64, Neg. LLF: 113.35860236202352
Iteration: 9, Func. Count: 71, Neg. LLF: 113.33779212513417
Iteration: 10, Func. Count: 78, Neg. LLF: 113.3250137039911
Iteration: 11, Func. Count: 85, Neg. LLF: 113.30961607886924
Iteration: 12, Func. Count: 92, Neg. LLF: 113.30913705764787
Iteration: 13, Func. Count: 99, Neg. LLF: 113.30905179627912
Iteration: 14, Func. Count: 106, Neg. LLF: 113.30904610897883
Iteration: 15, Func. Count: 113, Neg. LLF: 113.30904525970413
Optimization terminated successfully (Exit mode 0)
Current function value: 113.30904525970413
Iterations: 15
Function evaluations: 113
Gradient evaluations: 15
Iteration: 1, Func. Count: 9, Neg. LLF: 124.08790652288339
Iteration: 2, Func. Count: 18, Neg. LLF: 126.33119170366727
Iteration: 3, Func. Count: 27, Neg. LLF: 120.2886638888159
Iteration: 4, Func. Count: 36, Neg. LLF: 117.36117731648395
Iteration: 5, Func. Count: 45, Neg. LLF: 378769.5892195879
Iteration: 6, Func. Count: 54, Neg. LLF: 113.43861786300018
Iteration: 7, Func. Count: 62, Neg. LLF: 114.10265819629652
Iteration: 8, Func. Count: 71, Neg. LLF: 113.9487380733398
Iteration: 9, Func. Count: 80, Neg. LLF: 113.38416729548793
Iteration: 10, Func. Count: 89, Neg. LLF: 113.56828622672232
Iteration: 11, Func. Count: 98, Neg. LLF: 113.2713302435832
Iteration: 12, Func. Count: 107, Neg. LLF: 113.24875627533228
Iteration: 13, Func. Count: 115, Neg. LLF: 113.24836851744426
Iteration: 14, Func. Count: 123, Neg. LLF: 113.24836542487922
Iteration: 15, Func. Count: 130, Neg. LLF: 113.24836538150895
Optimization terminated successfully (Exit mode 0)
Current function value: 113.24836542487922
Iterations: 15
Function evaluations: 130
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 124.25270365189287
Iteration: 2, Func. Count: 20, Neg. LLF: 133.96725694596546
Iteration: 3, Func. Count: 30, Neg. LLF: 116.45066262241387
Iteration: 4, Func. Count: 40, Neg. LLF: 133.87099686995646
Iteration: 5, Func. Count: 50, Neg. LLF: 115.74545413002971
Iteration: 6, Func. Count: 60, Neg. LLF: 113.5239964296845
Iteration: 7, Func. Count: 69, Neg. LLF: 115.13367224989832
Iteration: 8, Func. Count: 79, Neg. LLF: 127.1723633905942
Iteration: 9, Func. Count: 90, Neg. LLF: 113.29663044729013
Iteration: 10, Func. Count: 99, Neg. LLF: 113.46022710040043
Iteration: 11, Func. Count: 109, Neg. LLF: 113.92026911321796
Iteration: 12, Func. Count: 120, Neg. LLF: 113.24915387796956
Iteration: 13, Func. Count: 129, Neg. LLF: 113.2484214005915
Iteration: 14, Func. Count: 138, Neg. LLF: 113.2483686284568
Iteration: 15, Func. Count: 147, Neg. LLF: 113.24836534027303
Iteration: 16, Func. Count: 155, Neg. LLF: 113.24836538956961
Optimization terminated successfully (Exit mode 0)
Current function value: 113.24836534027303
Iterations: 16
Function evaluations: 155
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 124.24193558826067
Iteration: 2, Func. Count: 22, Neg. LLF: 142.18960377014773
Iteration: 3, Func. Count: 33, Neg. LLF: 116.28500302574977
Iteration: 4, Func. Count: 44, Neg. LLF: 121.21522481242076
Iteration: 5, Func. Count: 55, Neg. LLF: 116.64807691048193
Iteration: 6, Func. Count: 66, Neg. LLF: 113.44675274030234
Iteration: 7, Func. Count: 76, Neg. LLF: 116.99469403091376
Iteration: 8, Func. Count: 87, Neg. LLF: 114.1639655359973
Iteration: 9, Func. Count: 98, Neg. LLF: 113.33782659834783
Iteration: 10, Func. Count: 109, Neg. LLF: 113.91444647432594
Iteration: 11, Func. Count: 120, Neg. LLF: 113.25446137971211
Iteration: 12, Func. Count: 130, Neg. LLF: 113.2488046389526
Iteration: 13, Func. Count: 140, Neg. LLF: 113.24845668964667
Iteration: 14, Func. Count: 150, Neg. LLF: 113.248365508479
Iteration: 15, Func. Count: 159, Neg. LLF: 113.24836557084303
Optimization terminated successfully (Exit mode 0)
Current function value: 113.248365508479
Iterations: 15
Function evaluations: 159
Gradient evaluations: 15
Iteration: 1, Func. Count: 12, Neg. LLF: 125.23216695245235
Iteration: 2, Func. Count: 24, Neg. LLF: 139.5520488012119
Iteration: 3, Func. Count: 36, Neg. LLF: 116.71801249862746
Iteration: 4, Func. Count: 48, Neg. LLF: 120.21545849637229
Iteration: 5, Func. Count: 60, Neg. LLF: 116.53079309228201
Iteration: 6, Func. Count: 72, Neg. LLF: 113.45655072144537
Iteration: 7, Func. Count: 83, Neg. LLF: 115.28861428867096
Iteration: 8, Func. Count: 95, Neg. LLF: 113.45688734396074
Iteration: 9, Func. Count: 107, Neg. LLF: 113.2627590681303
Iteration: 10, Func. Count: 118, Neg. LLF: 113.25046483425417
Iteration: 11, Func. Count: 129, Neg. LLF: 113.24854694871503
Iteration: 12, Func. Count: 140, Neg. LLF: 113.24836932319012
Iteration: 13, Func. Count: 151, Neg. LLF: 113.24836538847968
Iteration: 14, Func. Count: 161, Neg. LLF: 113.24836546521286
Optimization terminated successfully (Exit mode 0)
Current function value: 113.24836538847968
Iterations: 14
Function evaluations: 161
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 148.965284364286
Iteration: 2, Func. Count: 18, Neg. LLF: 138.007884805312
Iteration: 3, Func. Count: 27, Neg. LLF: 114.17573358565268
Iteration: 4, Func. Count: 35, Neg. LLF: 116.8822259831181
Iteration: 5, Func. Count: 44, Neg. LLF: 137.88874714019704
Iteration: 6, Func. Count: 53, Neg. LLF: 114.4123661040562
Iteration: 7, Func. Count: 62, Neg. LLF: 115.04548060447841
Iteration: 8, Func. Count: 71, Neg. LLF: 113.4159049308113
Iteration: 9, Func. Count: 79, Neg. LLF: 113.25234507303895
Iteration: 10, Func. Count: 87, Neg. LLF: 113.23319607623087
Iteration: 11, Func. Count: 95, Neg. LLF: 113.2222162063789
Iteration: 12, Func. Count: 103, Neg. LLF: 113.22091346805752
Iteration: 13, Func. Count: 111, Neg. LLF: 113.22078581482756
Iteration: 14, Func. Count: 119, Neg. LLF: 113.22077720280333
Iteration: 15, Func. Count: 126, Neg. LLF: 113.22077718103834
Optimization terminated successfully (Exit mode 0)
Current function value: 113.22077720280333
Iterations: 15
Function evaluations: 126
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 123.71147763922868
Iteration: 2, Func. Count: 20, Neg. LLF: 131.3652997044046
Iteration: 3, Func. Count: 30, Neg. LLF: 118.49350231481594
Iteration: 4, Func. Count: 40, Neg. LLF: 117.07534293502867
Iteration: 5, Func. Count: 50, Neg. LLF: 379918.0966830512
Iteration: 6, Func. Count: 60, Neg. LLF: 113.46786974572714
Iteration: 7, Func. Count: 69, Neg. LLF: 113.83466340558773
Iteration: 8, Func. Count: 79, Neg. LLF: 113.51604459304232
Iteration: 9, Func. Count: 89, Neg. LLF: 113.24536753760121
Iteration: 10, Func. Count: 99, Neg. LLF: 113.22185003501785
Iteration: 11, Func. Count: 108, Neg. LLF: 113.22080265728232
Iteration: 12, Func. Count: 117, Neg. LLF: 113.22078083104637
Iteration: 13, Func. Count: 126, Neg. LLF: 113.22077721473046
Iteration: 14, Func. Count: 134, Neg. LLF: 113.22077717893973
Optimization terminated successfully (Exit mode 0)
Current function value: 113.22077721473046
Iterations: 14
Function evaluations: 134
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 123.56154780875131
Iteration: 2, Func. Count: 22, Neg. LLF: 135.99068434299102
Iteration: 3, Func. Count: 33, Neg. LLF: 116.07947877591347
Iteration: 4, Func. Count: 44, Neg. LLF: 129.55346636213991
Iteration: 5, Func. Count: 55, Neg. LLF: 116.06875141571224
Iteration: 6, Func. Count: 66, Neg. LLF: 115.29025901205046
Iteration: 7, Func. Count: 77, Neg. LLF: 113.69716506818315
Iteration: 8, Func. Count: 88, Neg. LLF: 113.22866108147619
Iteration: 9, Func. Count: 98, Neg. LLF: 113.22316240253328
Iteration: 10, Func. Count: 108, Neg. LLF: 113.2209146328321
Iteration: 11, Func. Count: 118, Neg. LLF: 113.22079331580028
Iteration: 12, Func. Count: 128, Neg. LLF: 113.22077721754651
Iteration: 13, Func. Count: 137, Neg. LLF: 113.22077726637274
Optimization terminated successfully (Exit mode 0)
Current function value: 113.22077721754651
Iterations: 13
Function evaluations: 137
Gradient evaluations: 13
Iteration: 1, Func. Count: 12, Neg. LLF: 124.0132615403515
Iteration: 2, Func. Count: 24, Neg. LLF: 145.38670464786733
Iteration: 3, Func. Count: 36, Neg. LLF: 116.29227408001022
Iteration: 4, Func. Count: 48, Neg. LLF: 122.10675396975519
Iteration: 5, Func. Count: 60, Neg. LLF: 117.25180726208715
Iteration: 6, Func. Count: 72, Neg. LLF: 114.61151747842837
Iteration: 7, Func. Count: 84, Neg. LLF: 113.78787041784202
Iteration: 8, Func. Count: 96, Neg. LLF: 113.22906957845072
Iteration: 9, Func. Count: 107, Neg. LLF: 113.22577932426476
Iteration: 10, Func. Count: 118, Neg. LLF: 113.22100653941978
Iteration: 11, Func. Count: 129, Neg. LLF: 113.22081674917337
Iteration: 12, Func. Count: 140, Neg. LLF: 113.2207772858217
Iteration: 13, Func. Count: 150, Neg. LLF: 113.22077734492005
Optimization terminated successfully (Exit mode 0)
Current function value: 113.2207772858217
Iterations: 13
Function evaluations: 150
Gradient evaluations: 13
Iteration: 1, Func. Count: 13, Neg. LLF: 124.7972560079576
Iteration: 2, Func. Count: 26, Neg. LLF: 143.15926324608571
Iteration: 3, Func. Count: 39, Neg. LLF: 116.54670986036743
Iteration: 4, Func. Count: 52, Neg. LLF: 121.13147054116425
Iteration: 5, Func. Count: 65, Neg. LLF: 117.15300494726053
Iteration: 6, Func. Count: 78, Neg. LLF: 114.65176038358403
Iteration: 7, Func. Count: 91, Neg. LLF: 113.78805808507231
Iteration: 8, Func. Count: 104, Neg. LLF: 113.23415295288768
Iteration: 9, Func. Count: 116, Neg. LLF: 113.22757435280248
Iteration: 10, Func. Count: 128, Neg. LLF: 113.22123733590448
Iteration: 11, Func. Count: 140, Neg. LLF: 113.22085991300327
Iteration: 12, Func. Count: 152, Neg. LLF: 113.22077779655949
Iteration: 13, Func. Count: 163, Neg. LLF: 113.22077787687059
Optimization terminated successfully (Exit mode 0)
Current function value: 113.22077779655949
Iterations: 13
Function evaluations: 163
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 145.78364849841932
Iteration: 2, Func. Count: 20, Neg. LLF: 144.3566292149957
Iteration: 3, Func. Count: 30, Neg. LLF: 114.26017940861273
Iteration: 4, Func. Count: 39, Neg. LLF: 116.55859760533858
Iteration: 5, Func. Count: 49, Neg. LLF: 770149.6867973681
Iteration: 6, Func. Count: 59, Neg. LLF: 145.2267453486388
Iteration: 7, Func. Count: 71, Neg. LLF: 123.10520248199305
Iteration: 8, Func. Count: 81, Neg. LLF: 114.69029928566832
Iteration: 9, Func. Count: 91, Neg. LLF: 113.72562727464364
Iteration: 10, Func. Count: 101, Neg. LLF: 113.22321255953929
Iteration: 11, Func. Count: 110, Neg. LLF: 113.22105850391662
Iteration: 12, Func. Count: 119, Neg. LLF: 113.22082221717181
Iteration: 13, Func. Count: 128, Neg. LLF: 113.22078354513852
Iteration: 14, Func. Count: 137, Neg. LLF: 113.22077722585674
Iteration: 15, Func. Count: 145, Neg. LLF: 113.22077725942736
Optimization terminated successfully (Exit mode 0)
Current function value: 113.22077722585674
Iterations: 15
Function evaluations: 145
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 123.53216694654327
Iteration: 2, Func. Count: 22, Neg. LLF: 139.03397526830187
Iteration: 3, Func. Count: 33, Neg. LLF: 117.76270496551707
Iteration: 4, Func. Count: 44, Neg. LLF: 116.62594361734766
Iteration: 5, Func. Count: 55, Neg. LLF: 180.984646486011
Iteration: 6, Func. Count: 66, Neg. LLF: 113.50170935334442
Iteration: 7, Func. Count: 76, Neg. LLF: 113.83185761603531
Iteration: 8, Func. Count: 87, Neg. LLF: 113.63313622358713
Iteration: 9, Func. Count: 98, Neg. LLF: 113.35179379277967
Iteration: 10, Func. Count: 109, Neg. LLF: 113.22154832459941
Iteration: 11, Func. Count: 119, Neg. LLF: 113.2207885929829
Iteration: 12, Func. Count: 129, Neg. LLF: 113.22077877891627
Iteration: 13, Func. Count: 139, Neg. LLF: 113.22077733473854
Iteration: 14, Func. Count: 148, Neg. LLF: 113.22077729895645
Optimization terminated successfully (Exit mode 0)
Current function value: 113.22077733473854
Iterations: 14
Function evaluations: 148
Gradient evaluations: 14
Iteration: 1, Func. Count: 12, Neg. LLF: 121.98778698270479
Iteration: 2, Func. Count: 24, Neg. LLF: 140.44446796419953
Iteration: 3, Func. Count: 36, Neg. LLF: 114.8429312023323
Iteration: 4, Func. Count: 47, Neg. LLF: 115.37807693180987
Iteration: 5, Func. Count: 59, Neg. LLF: 124.49030252004364
Iteration: 6, Func. Count: 72, Neg. LLF: 115.81642035063824
Iteration: 7, Func. Count: 84, Neg. LLF: 114.8241466833993
Iteration: 8, Func. Count: 96, Neg. LLF: 113.34182387818053
Iteration: 9, Func. Count: 107, Neg. LLF: 113.39272104419938
Iteration: 10, Func. Count: 119, Neg. LLF: 113.24591437575695
Iteration: 11, Func. Count: 131, Neg. LLF: 113.25145524628894
Iteration: 12, Func. Count: 143, Neg. LLF: 113.22089767442905
Iteration: 13, Func. Count: 154, Neg. LLF: 113.22077799040048
Iteration: 14, Func. Count: 165, Neg. LLF: 113.2207772347508
Optimization terminated successfully (Exit mode 0)
Current function value: 113.2207772347508
Iterations: 14
Function evaluations: 165
Gradient evaluations: 14
Iteration: 1, Func. Count: 13, Neg. LLF: 122.48644571926152
Iteration: 2, Func. Count: 26, Neg. LLF: 151.71898645057385
Iteration: 3, Func. Count: 39, Neg. LLF: 116.31834872268566
Iteration: 4, Func. Count: 52, Neg. LLF: 122.08812509721179
Iteration: 5, Func. Count: 65, Neg. LLF: 116.76579644914163
Iteration: 6, Func. Count: 78, Neg. LLF: 115.0231642259912
Iteration: 7, Func. Count: 91, Neg. LLF: 113.89442049081015
Iteration: 8, Func. Count: 104, Neg. LLF: 113.23125213318046
Iteration: 9, Func. Count: 116, Neg. LLF: 113.23619591667139
Iteration: 10, Func. Count: 129, Neg. LLF: 113.22081974025214
Iteration: 11, Func. Count: 141, Neg. LLF: 113.22078181354243
Iteration: 12, Func. Count: 153, Neg. LLF: 113.22077718082531
Iteration: 13, Func. Count: 164, Neg. LLF: 113.22077723989973
Optimization terminated successfully (Exit mode 0)
Current function value: 113.22077718082531
Iterations: 13
Function evaluations: 164
Gradient evaluations: 13
Iteration: 1, Func. Count: 14, Neg. LLF: 118.13284819294888
Iteration: 2, Func. Count: 27, Neg. LLF: 129.27795406982597
Iteration: 3, Func. Count: 41, Neg. LLF: 115.11103078253596
Iteration: 4, Func. Count: 55, Neg. LLF: 117.76483131470769
Iteration: 5, Func. Count: 69, Neg. LLF: 692.353767285366
Iteration: 6, Func. Count: 83, Neg. LLF: 144.65835241101445
Iteration: 7, Func. Count: 97, Neg. LLF: 122.73839144383025
Iteration: 8, Func. Count: 111, Neg. LLF: 134.59808412571118
Iteration: 9, Func. Count: 125, Neg. LLF: 113.35321030743638
Iteration: 10, Func. Count: 139, Neg. LLF: 113.22249610702664
Iteration: 11, Func. Count: 152, Neg. LLF: 113.22108712416636
Iteration: 12, Func. Count: 165, Neg. LLF: 113.22115920785387
Iteration: 13, Func. Count: 179, Neg. LLF: 113.22081535048727
Iteration: 14, Func. Count: 193, Neg. LLF: 113.22077860624275
Iteration: 15, Func. Count: 206, Neg. LLF: 113.2207771925621
Iteration: 16, Func. Count: 218, Neg. LLF: 113.22077727284159
Optimization terminated successfully (Exit mode 0)
Current function value: 113.2207771925621
Iterations: 16
Function evaluations: 218
Gradient evaluations: 16
Iteration: 1, Func. Count: 7, Neg. LLF: 144.73207239941306
Iteration: 2, Func. Count: 15, Neg. LLF: 128.6017381656743
Iteration: 3, Func. Count: 22, Neg. LLF: 119.9066253454325
Iteration: 4, Func. Count: 28, Neg. LLF: 119.82405591094347
Iteration: 5, Func. Count: 35, Neg. LLF: 118.89646619944901
Iteration: 6, Func. Count: 41, Neg. LLF: 118.87607842003086
Iteration: 7, Func. Count: 47, Neg. LLF: 118.87160964182641
Iteration: 8, Func. Count: 53, Neg. LLF: 118.87147299394354
Iteration: 9, Func. Count: 59, Neg. LLF: 118.87146188828682
Iteration: 10, Func. Count: 64, Neg. LLF: 118.87146200061046
Optimization terminated successfully (Exit mode 0)
Current function value: 118.87146188828682
Iterations: 10
Function evaluations: 64
Gradient evaluations: 10
Iteration: 1, Func. Count: 8, Neg. LLF: 167.9422840767148
Iteration: 2, Func. Count: 17, Neg. LLF: 120.52357246861023
Iteration: 3, Func. Count: 24, Neg. LLF: 238.86712018297325
Iteration: 4, Func. Count: 32, Neg. LLF: 120.39622280525407
Iteration: 5, Func. Count: 40, Neg. LLF: 120.35660199731446
Iteration: 6, Func. Count: 47, Neg. LLF: 120.35591714223897
Iteration: 7, Func. Count: 54, Neg. LLF: 120.35591356754075
Iteration: 8, Func. Count: 60, Neg. LLF: 120.35591363352574
Optimization terminated successfully (Exit mode 0)
Current function value: 120.35591356754075
Iterations: 8
Function evaluations: 60
Gradient evaluations: 8
Iteration: 1, Func. Count: 9, Neg. LLF: 162.02227343884473
Iteration: 2, Func. Count: 20, Neg. LLF: 120.64383612951816
Iteration: 3, Func. Count: 28, Neg. LLF: 120.87323418285885
Iteration: 4, Func. Count: 37, Neg. LLF: 129.19817807170332
Iteration: 5, Func. Count: 46, Neg. LLF: 120.37954809666802
Iteration: 6, Func. Count: 54, Neg. LLF: 120.37921002172921
Iteration: 7, Func. Count: 62, Neg. LLF: 120.3064115793042
Iteration: 8, Func. Count: 70, Neg. LLF: 120.30411020516053
Iteration: 9, Func. Count: 78, Neg. LLF: 120.30231720956397
Iteration: 10, Func. Count: 86, Neg. LLF: 120.3018400805993
Iteration: 11, Func. Count: 94, Neg. LLF: 120.301668763236
Iteration: 12, Func. Count: 102, Neg. LLF: 120.30153690531556
Iteration: 13, Func. Count: 110, Neg. LLF: 120.30178654883406
Iteration: 14, Func. Count: 120, Neg. LLF: 120.30226981516522
Iteration: 15, Func. Count: 130, Neg. LLF: 120.30162755148886
Iteration: 16, Func. Count: 139, Neg. LLF: 120.30158458614392
Iteration: 17, Func. Count: 146, Neg. LLF: 120.30158454114306
Optimization terminated successfully (Exit mode 0)
Current function value: 120.30158458614392
Iterations: 18
Function evaluations: 146
Gradient evaluations: 17
Iteration: 1, Func. Count: 10, Neg. LLF: 159.9450837414257
Iteration: 2, Func. Count: 22, Neg. LLF: 120.59384887007963
Iteration: 3, Func. Count: 31, Neg. LLF: 120.42087629316414
Iteration: 4, Func. Count: 40, Neg. LLF: 120.41288379308008
Iteration: 5, Func. Count: 49, Neg. LLF: 120.42683215747769
Iteration: 6, Func. Count: 59, Neg. LLF: 120.39635979922015
Iteration: 7, Func. Count: 68, Neg. LLF: 120.37165717760296
Iteration: 8, Func. Count: 77, Neg. LLF: 120.37077375698037
Iteration: 9, Func. Count: 86, Neg. LLF: 120.36761580959856
Iteration: 10, Func. Count: 95, Neg. LLF: 120.36330855629612
Iteration: 11, Func. Count: 104, Neg. LLF: 120.35928923852849
Iteration: 12, Func. Count: 113, Neg. LLF: 120.3560882896684
Iteration: 13, Func. Count: 122, Neg. LLF: 120.35591459838588
Iteration: 14, Func. Count: 131, Neg. LLF: 120.4526564680899
Iteration: 15, Func. Count: 142, Neg. LLF: 120.35591352343083
Optimization terminated successfully (Exit mode 0)
Current function value: 120.35591358718688
Iterations: 16
Function evaluations: 142
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 135.98103736895038
Iteration: 2, Func. Count: 22, Neg. LLF: 120.80266928061731
Iteration: 3, Func. Count: 32, Neg. LLF: 120.73872861438582
Iteration: 4, Func. Count: 42, Neg. LLF: 120.63940608501696
Iteration: 5, Func. Count: 53, Neg. LLF: 120.63667028813916
Iteration: 6, Func. Count: 64, Neg. LLF: 120.43240218967499
Iteration: 7, Func. Count: 74, Neg. LLF: 120.42036807858915
Iteration: 8, Func. Count: 84, Neg. LLF: 120.39315399964627
Iteration: 9, Func. Count: 94, Neg. LLF: 120.31655711149102
Iteration: 10, Func. Count: 104, Neg. LLF: 120.36949084489873
Iteration: 11, Func. Count: 115, Neg. LLF: 120.33426545545424
Iteration: 12, Func. Count: 135, Neg. LLF: 120.33485265315117
Iteration: 13, Func. Count: 155, Neg. LLF: 120.33551322883326
Iteration: 14, Func. Count: 166, Neg. LLF: 120.31494984690033
Iteration: 15, Func. Count: 176, Neg. LLF: 120.306385645846
Iteration: 16, Func. Count: 187, Neg. LLF: 120.3065311486635
Iteration: 17, Func. Count: 207, Neg. LLF: 120.30544525203237
Iteration: 18, Func. Count: 217, Neg. LLF: 120.69851235901886
Iteration: 19, Func. Count: 229, Neg. LLF: 120.30312243391269
Iteration: 20, Func. Count: 239, Neg. LLF: 120.30469845183556
Iteration: 21, Func. Count: 250, Neg. LLF: 120.31337944984764
Iteration: 22, Func. Count: 261, Neg. LLF: 120.30158460189746
Iteration: 23, Func. Count: 270, Neg. LLF: 120.30158455865599
Optimization terminated successfully (Exit mode 0)
Current function value: 120.30158460189746
Iterations: 24
Function evaluations: 270
Gradient evaluations: 23
Iteration: 1, Func. Count: 8, Neg. LLF: 141.55315085003352
Iteration: 2, Func. Count: 17, Neg. LLF: 123.52543099391497
Iteration: 3, Func. Count: 25, Neg. LLF: 119.1428074238467
Iteration: 4, Func. Count: 32, Neg. LLF: 118.97248667752405
Iteration: 5, Func. Count: 39, Neg. LLF: 119.98224843116755
Iteration: 6, Func. Count: 47, Neg. LLF: 118.39427149229489
Iteration: 7, Func. Count: 54, Neg. LLF: 118.38979142752837
Iteration: 8, Func. Count: 61, Neg. LLF: 118.38979583489055
Iteration: 9, Func. Count: 69, Neg. LLF: 118.38974905059624
Iteration: 10, Func. Count: 75, Neg. LLF: 118.3897490400281
Optimization terminated successfully (Exit mode 0)
Current function value: 118.38974905059624
Iterations: 10
Function evaluations: 75
Gradient evaluations: 10
Iteration: 1, Func. Count: 9, Neg. LLF: 138.72407914783378
Iteration: 2, Func. Count: 18, Neg. LLF: 124.41847045174265
Iteration: 3, Func. Count: 27, Neg. LLF: 119.9007414146175
Iteration: 4, Func. Count: 36, Neg. LLF: 117.77059135108553
Iteration: 5, Func. Count: 44, Neg. LLF: 117.75684576426991
Iteration: 6, Func. Count: 52, Neg. LLF: 117.75522631392126
Iteration: 7, Func. Count: 60, Neg. LLF: 117.75482549005083
Iteration: 8, Func. Count: 68, Neg. LLF: 117.75478567301471
Iteration: 9, Func. Count: 76, Neg. LLF: 117.75475721180946
Iteration: 10, Func. Count: 83, Neg. LLF: 117.7547571909788
Optimization terminated successfully (Exit mode 0)
Current function value: 117.75475721180946
Iterations: 10
Function evaluations: 83
Gradient evaluations: 10
Iteration: 1, Func. Count: 10, Neg. LLF: 134.41598297705235
Iteration: 2, Func. Count: 20, Neg. LLF: 122.33663744926346
Iteration: 3, Func. Count: 30, Neg. LLF: 130.02026417105444
Iteration: 4, Func. Count: 40, Neg. LLF: 117.84079646518373
Iteration: 5, Func. Count: 49, Neg. LLF: 117.76333342986415
Iteration: 6, Func. Count: 58, Neg. LLF: 117.75548814483703
Iteration: 7, Func. Count: 67, Neg. LLF: 117.75493036561843
Iteration: 8, Func. Count: 76, Neg. LLF: 117.75483076394141
Iteration: 9, Func. Count: 85, Neg. LLF: 117.7547583101859
Iteration: 10, Func. Count: 94, Neg. LLF: 117.75475697918058
Iteration: 11, Func. Count: 102, Neg. LLF: 117.75475701366514
Optimization terminated successfully (Exit mode 0)
Current function value: 117.75475697918058
Iterations: 11
Function evaluations: 102
Gradient evaluations: 11
Iteration: 1, Func. Count: 11, Neg. LLF: 124.49014198025176
Iteration: 2, Func. Count: 22, Neg. LLF: 123.54647342156434
Iteration: 3, Func. Count: 33, Neg. LLF: 168.14474579076372
Iteration: 4, Func. Count: 44, Neg. LLF: 117.9444402794327
Iteration: 5, Func. Count: 54, Neg. LLF: 117.81771836357477
Iteration: 6, Func. Count: 64, Neg. LLF: 117.77935980437331
Iteration: 7, Func. Count: 74, Neg. LLF: 117.76425169023872
Iteration: 8, Func. Count: 84, Neg. LLF: 117.75604608386963
Iteration: 9, Func. Count: 94, Neg. LLF: 117.75478739262036
Iteration: 10, Func. Count: 104, Neg. LLF: 117.75475696573615
Iteration: 11, Func. Count: 113, Neg. LLF: 117.75475697981673
Optimization terminated successfully (Exit mode 0)
Current function value: 117.75475696573615
Iterations: 11
Function evaluations: 113
Gradient evaluations: 11
Iteration: 1, Func. Count: 12, Neg. LLF: 132.6857944715006
Iteration: 2, Func. Count: 24, Neg. LLF: 125.95594956239272
Iteration: 3, Func. Count: 36, Neg. LLF: 129.9159726167434
Iteration: 4, Func. Count: 48, Neg. LLF: 117.83644945603675
Iteration: 5, Func. Count: 59, Neg. LLF: 117.50824358193049
Iteration: 6, Func. Count: 70, Neg. LLF: 117.25011467619625
Iteration: 7, Func. Count: 81, Neg. LLF: 117.24929905226938
Iteration: 8, Func. Count: 92, Neg. LLF: 117.24885549819882
Iteration: 9, Func. Count: 103, Neg. LLF: 117.24879499831704
Iteration: 10, Func. Count: 114, Neg. LLF: 117.24869327190245
Iteration: 11, Func. Count: 125, Neg. LLF: 117.24868060709724
Iteration: 12, Func. Count: 136, Neg. LLF: 117.24868049833411
Optimization terminated successfully (Exit mode 0)
Current function value: 117.24868049833411
Iterations: 12
Function evaluations: 136
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 160.23309962733512
Iteration: 2, Func. Count: 18, Neg. LLF: 133.65796853075946
Iteration: 3, Func. Count: 27, Neg. LLF: 114.1510981211581
Iteration: 4, Func. Count: 35, Neg. LLF: 115.97061731367123
Iteration: 5, Func. Count: 44, Neg. LLF: 321055.8087774882
Iteration: 6, Func. Count: 53, Neg. LLF: 114.30171825226871
Iteration: 7, Func. Count: 62, Neg. LLF: 113.36984626898058
Iteration: 8, Func. Count: 70, Neg. LLF: 114.18452794106761
Iteration: 9, Func. Count: 79, Neg. LLF: 117.45107853615893
Iteration: 10, Func. Count: 89, Neg. LLF: 113.31036532998073
Iteration: 11, Func. Count: 97, Neg. LLF: 113.30909412043782
Iteration: 12, Func. Count: 105, Neg. LLF: 113.30904671084825
Iteration: 13, Func. Count: 113, Neg. LLF: 113.30904546950985
Iteration: 14, Func. Count: 120, Neg. LLF: 113.30904545272523
Optimization terminated successfully (Exit mode 0)
Current function value: 113.30904546950985
Iterations: 14
Function evaluations: 120
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 123.80462774471924
Iteration: 2, Func. Count: 20, Neg. LLF: 126.57123648358912
Iteration: 3, Func. Count: 30, Neg. LLF: 119.980991566363
Iteration: 4, Func. Count: 40, Neg. LLF: 117.36830732592415
Iteration: 5, Func. Count: 50, Neg. LLF: 375896.20875090506
Iteration: 6, Func. Count: 60, Neg. LLF: 113.40372872176245
Iteration: 7, Func. Count: 69, Neg. LLF: 114.15956399047766
Iteration: 8, Func. Count: 79, Neg. LLF: 113.9387353719368
Iteration: 9, Func. Count: 89, Neg. LLF: 113.33201567442764
Iteration: 10, Func. Count: 99, Neg. LLF: 113.6841451346721
Iteration: 11, Func. Count: 109, Neg. LLF: 113.27025078699495
Iteration: 12, Func. Count: 119, Neg. LLF: 113.24857174301556
Iteration: 13, Func. Count: 128, Neg. LLF: 113.24837149597242
Iteration: 14, Func. Count: 137, Neg. LLF: 113.24836534916335
Iteration: 15, Func. Count: 145, Neg. LLF: 113.24836530580643
Optimization terminated successfully (Exit mode 0)
Current function value: 113.24836534916335
Iterations: 15
Function evaluations: 145
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 124.34326251923787
Iteration: 2, Func. Count: 22, Neg. LLF: 133.95521312357047
Iteration: 3, Func. Count: 33, Neg. LLF: 116.41755807005025
Iteration: 4, Func. Count: 44, Neg. LLF: 133.4918159403132
Iteration: 5, Func. Count: 55, Neg. LLF: 116.03618243874719
Iteration: 6, Func. Count: 66, Neg. LLF: 113.52105125383787
Iteration: 7, Func. Count: 76, Neg. LLF: 117.43272603071617
Iteration: 8, Func. Count: 88, Neg. LLF: 123.54465768505716
Iteration: 9, Func. Count: 100, Neg. LLF: 113.51477113388738
Iteration: 10, Func. Count: 111, Neg. LLF: 113.37766570848541
Iteration: 11, Func. Count: 122, Neg. LLF: 113.25538070288097
Iteration: 12, Func. Count: 132, Neg. LLF: 113.2490674648034
Iteration: 13, Func. Count: 142, Neg. LLF: 113.24839484401257
Iteration: 14, Func. Count: 152, Neg. LLF: 113.24836623367752
Iteration: 15, Func. Count: 162, Neg. LLF: 113.2483652696814
Optimization terminated successfully (Exit mode 0)
Current function value: 113.2483652696814
Iterations: 15
Function evaluations: 162
Gradient evaluations: 15
Iteration: 1, Func. Count: 12, Neg. LLF: 124.56125821076193
Iteration: 2, Func. Count: 24, Neg. LLF: 142.1180538759995
Iteration: 3, Func. Count: 36, Neg. LLF: 116.27012589801849
Iteration: 4, Func. Count: 48, Neg. LLF: 121.11440077439238
Iteration: 5, Func. Count: 60, Neg. LLF: 116.71347814832205
Iteration: 6, Func. Count: 72, Neg. LLF: 113.44750055041709
Iteration: 7, Func. Count: 83, Neg. LLF: 117.34278987753369
Iteration: 8, Func. Count: 95, Neg. LLF: 113.92899573674552
Iteration: 9, Func. Count: 107, Neg. LLF: 113.30528577696477
Iteration: 10, Func. Count: 119, Neg. LLF: 114.12900816950004
Iteration: 11, Func. Count: 131, Neg. LLF: 113.25140314576181
Iteration: 12, Func. Count: 142, Neg. LLF: 113.24845515726463
Iteration: 13, Func. Count: 153, Neg. LLF: 113.24837268526703
Iteration: 14, Func. Count: 164, Neg. LLF: 113.24836529233504
Iteration: 15, Func. Count: 174, Neg. LLF: 113.24836535469647
Optimization terminated successfully (Exit mode 0)
Current function value: 113.24836529233504
Iterations: 15
Function evaluations: 174
Gradient evaluations: 15
Iteration: 1, Func. Count: 13, Neg. LLF: 125.49957067063603
Iteration: 2, Func. Count: 26, Neg. LLF: 139.55308243052522
Iteration: 3, Func. Count: 39, Neg. LLF: 116.67633036965525
Iteration: 4, Func. Count: 52, Neg. LLF: 120.35362653184482
Iteration: 5, Func. Count: 65, Neg. LLF: 116.58747180965429
Iteration: 6, Func. Count: 78, Neg. LLF: 113.45719143769844
Iteration: 7, Func. Count: 90, Neg. LLF: 116.6464494594995
Iteration: 8, Func. Count: 103, Neg. LLF: 113.41229859050023
Iteration: 9, Func. Count: 116, Neg. LLF: 113.26444352891531
Iteration: 10, Func. Count: 128, Neg. LLF: 113.2494644676208
Iteration: 11, Func. Count: 140, Neg. LLF: 113.24850026255496
Iteration: 12, Func. Count: 152, Neg. LLF: 113.24836845418126
Iteration: 13, Func. Count: 164, Neg. LLF: 113.24836541515593
Iteration: 14, Func. Count: 175, Neg. LLF: 113.24836549189249
Optimization terminated successfully (Exit mode 0)
Current function value: 113.24836541515593
Iterations: 14
Function evaluations: 175
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 159.95444992102372
Iteration: 2, Func. Count: 20, Neg. LLF: 138.2977910921077
Iteration: 3, Func. Count: 30, Neg. LLF: 114.28073125854743
Iteration: 4, Func. Count: 39, Neg. LLF: 115.33779446001947
Iteration: 5, Func. Count: 49, Neg. LLF: 347.8332580054023
Iteration: 6, Func. Count: 59, Neg. LLF: 113.75583833656148
Iteration: 7, Func. Count: 69, Neg. LLF: 120.30802588392953
Iteration: 8, Func. Count: 80, Neg. LLF: 113.98165254310462
Iteration: 9, Func. Count: 90, Neg. LLF: 113.27497029679917
Iteration: 10, Func. Count: 99, Neg. LLF: 113.22836593237913
Iteration: 11, Func. Count: 108, Neg. LLF: 113.22271795049855
Iteration: 12, Func. Count: 117, Neg. LLF: 113.22184871803057
Iteration: 13, Func. Count: 126, Neg. LLF: 113.22078341579734
Iteration: 14, Func. Count: 135, Neg. LLF: 113.22077719196224
Iteration: 15, Func. Count: 143, Neg. LLF: 113.22077717020403
Optimization terminated successfully (Exit mode 0)
Current function value: 113.22077719196224
Iterations: 15
Function evaluations: 143
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 123.45905290408146
Iteration: 2, Func. Count: 22, Neg. LLF: 131.78060718303075
Iteration: 3, Func. Count: 33, Neg. LLF: 118.3203492709516
Iteration: 4, Func. Count: 44, Neg. LLF: 117.02912980797976
Iteration: 5, Func. Count: 55, Neg. LLF: 380435.8864374322
Iteration: 6, Func. Count: 66, Neg. LLF: 113.43577654246963
Iteration: 7, Func. Count: 76, Neg. LLF: 113.84582988676594
Iteration: 8, Func. Count: 87, Neg. LLF: 113.51212648032748
Iteration: 9, Func. Count: 98, Neg. LLF: 113.22971930876646
Iteration: 10, Func. Count: 108, Neg. LLF: 113.2230722823472
Iteration: 11, Func. Count: 118, Neg. LLF: 113.22092655546075
Iteration: 12, Func. Count: 128, Neg. LLF: 113.22078356248251
Iteration: 13, Func. Count: 138, Neg. LLF: 113.22077725387192
Iteration: 14, Func. Count: 147, Neg. LLF: 113.22077721810798
Optimization terminated successfully (Exit mode 0)
Current function value: 113.22077725387192
Iterations: 14
Function evaluations: 147
Gradient evaluations: 14
Iteration: 1, Func. Count: 12, Neg. LLF: 123.69309349391642
Iteration: 2, Func. Count: 24, Neg. LLF: 136.26029804738116
Iteration: 3, Func. Count: 36, Neg. LLF: 116.17723717953305
Iteration: 4, Func. Count: 48, Neg. LLF: 130.1106492411836
Iteration: 5, Func. Count: 60, Neg. LLF: 116.43517717761338
Iteration: 6, Func. Count: 72, Neg. LLF: 115.29951643207657
Iteration: 7, Func. Count: 84, Neg. LLF: 113.68770394435597
Iteration: 8, Func. Count: 96, Neg. LLF: 113.22859472222818
Iteration: 9, Func. Count: 107, Neg. LLF: 113.22302054857165
Iteration: 10, Func. Count: 118, Neg. LLF: 113.22091525729383
Iteration: 11, Func. Count: 129, Neg. LLF: 113.22079818003978
Iteration: 12, Func. Count: 140, Neg. LLF: 113.22077719719547
Iteration: 13, Func. Count: 150, Neg. LLF: 113.22077724601644
Optimization terminated successfully (Exit mode 0)
Current function value: 113.22077719719547
Iterations: 13
Function evaluations: 150
Gradient evaluations: 13
Iteration: 1, Func. Count: 13, Neg. LLF: 124.33630304003582
Iteration: 2, Func. Count: 26, Neg. LLF: 145.48827134810276
Iteration: 3, Func. Count: 39, Neg. LLF: 116.2890225687618
Iteration: 4, Func. Count: 52, Neg. LLF: 121.84840672228539
Iteration: 5, Func. Count: 65, Neg. LLF: 117.33427891077925
Iteration: 6, Func. Count: 78, Neg. LLF: 114.58909586596994
Iteration: 7, Func. Count: 91, Neg. LLF: 113.79321554223345
Iteration: 8, Func. Count: 104, Neg. LLF: 113.229988366048
Iteration: 9, Func. Count: 116, Neg. LLF: 113.22492685043568
Iteration: 10, Func. Count: 128, Neg. LLF: 113.2209754958838
Iteration: 11, Func. Count: 140, Neg. LLF: 113.22080855412045
Iteration: 12, Func. Count: 152, Neg. LLF: 113.22077729549181
Iteration: 13, Func. Count: 163, Neg. LLF: 113.22077735458916
Optimization terminated successfully (Exit mode 0)
Current function value: 113.22077729549181
Iterations: 13
Function evaluations: 163
Gradient evaluations: 13
Iteration: 1, Func. Count: 14, Neg. LLF: 125.065259879376
Iteration: 2, Func. Count: 28, Neg. LLF: 143.3079357370017
Iteration: 3, Func. Count: 42, Neg. LLF: 116.51551366536775
Iteration: 4, Func. Count: 56, Neg. LLF: 120.93008308827922
Iteration: 5, Func. Count: 70, Neg. LLF: 117.22261047218615
Iteration: 6, Func. Count: 84, Neg. LLF: 114.63951313662781
Iteration: 7, Func. Count: 98, Neg. LLF: 113.78501076514601
Iteration: 8, Func. Count: 112, Neg. LLF: 113.2347807614159
Iteration: 9, Func. Count: 125, Neg. LLF: 113.22598832073265
Iteration: 10, Func. Count: 138, Neg. LLF: 113.22113139076082
Iteration: 11, Func. Count: 151, Neg. LLF: 113.22083350775313
Iteration: 12, Func. Count: 164, Neg. LLF: 113.22077783312761
Iteration: 13, Func. Count: 176, Neg. LLF: 113.22077791343256
Optimization terminated successfully (Exit mode 0)
Current function value: 113.22077783312761
Iterations: 13
Function evaluations: 176
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 156.98533128515203
Iteration: 2, Func. Count: 22, Neg. LLF: 144.19948947688044
Iteration: 3, Func. Count: 33, Neg. LLF: 114.41698453978273
Iteration: 4, Func. Count: 43, Neg. LLF: 114.49353826270693
Iteration: 5, Func. Count: 54, Neg. LLF: 151.0140235113205
Iteration: 6, Func. Count: 65, Neg. LLF: 114.41925215119345
Iteration: 7, Func. Count: 76, Neg. LLF: 113.41222809047254
Iteration: 8, Func. Count: 86, Neg. LLF: 113.43673244213
Iteration: 9, Func. Count: 97, Neg. LLF: 114.92161808795515
Iteration: 10, Func. Count: 108, Neg. LLF: 113.22326903121157
Iteration: 11, Func. Count: 118, Neg. LLF: 113.22104574032784
Iteration: 12, Func. Count: 128, Neg. LLF: 113.22078013903545
Iteration: 13, Func. Count: 138, Neg. LLF: 113.2207771829497
Iteration: 14, Func. Count: 147, Neg. LLF: 113.2207772165239
Optimization terminated successfully (Exit mode 0)
Current function value: 113.2207771829497
Iterations: 14
Function evaluations: 147
Gradient evaluations: 14
Iteration: 1, Func. Count: 12, Neg. LLF: 123.3187493352654
Iteration: 2, Func. Count: 24, Neg. LLF: 139.65254986706543
Iteration: 3, Func. Count: 36, Neg. LLF: 117.62668035707114
Iteration: 4, Func. Count: 48, Neg. LLF: 116.56355264732471
Iteration: 5, Func. Count: 60, Neg. LLF: 379064.9292763346
Iteration: 6, Func. Count: 72, Neg. LLF: 113.48055453100133
Iteration: 7, Func. Count: 83, Neg. LLF: 113.72700292379905
Iteration: 8, Func. Count: 95, Neg. LLF: 113.51155435344256
Iteration: 9, Func. Count: 107, Neg. LLF: 113.2944449203699
Iteration: 10, Func. Count: 119, Neg. LLF: 113.22158392470291
Iteration: 11, Func. Count: 130, Neg. LLF: 113.22081116411964
Iteration: 12, Func. Count: 141, Neg. LLF: 113.22078262764009
Iteration: 13, Func. Count: 152, Neg. LLF: 113.22077723261481
Iteration: 14, Func. Count: 162, Neg. LLF: 113.2207771968233
Optimization terminated successfully (Exit mode 0)
Current function value: 113.22077723261481
Iterations: 14
Function evaluations: 162
Gradient evaluations: 14
Iteration: 1, Func. Count: 13, Neg. LLF: 122.10455140837195
Iteration: 2, Func. Count: 26, Neg. LLF: 140.86518961656137
Iteration: 3, Func. Count: 39, Neg. LLF: 114.88976286620709
Iteration: 4, Func. Count: 51, Neg. LLF: 115.35192311753183
Iteration: 5, Func. Count: 64, Neg. LLF: 123.13990087222496
Iteration: 6, Func. Count: 78, Neg. LLF: 115.75862761225427
Iteration: 7, Func. Count: 91, Neg. LLF: 114.8135777877018
Iteration: 8, Func. Count: 104, Neg. LLF: 113.32942895054245
Iteration: 9, Func. Count: 116, Neg. LLF: 113.38418895792556
Iteration: 10, Func. Count: 129, Neg. LLF: 113.29109839340771
Iteration: 11, Func. Count: 142, Neg. LLF: 113.24575987020008
Iteration: 12, Func. Count: 155, Neg. LLF: 113.2208435288416
Iteration: 13, Func. Count: 167, Neg. LLF: 113.22077827480064
Iteration: 14, Func. Count: 179, Neg. LLF: 113.22077722777998
Iteration: 15, Func. Count: 190, Neg. LLF: 113.2207772765781
Optimization terminated successfully (Exit mode 0)
Current function value: 113.22077722777998
Iterations: 15
Function evaluations: 190
Gradient evaluations: 15
Iteration: 1, Func. Count: 14, Neg. LLF: 118.1259442063624
Iteration: 2, Func. Count: 27, Neg. LLF: 130.11208797625537
Iteration: 3, Func. Count: 41, Neg. LLF: 115.06327130926387
Iteration: 4, Func. Count: 55, Neg. LLF: 117.65292320195823
Iteration: 5, Func. Count: 69, Neg. LLF: 721.0351979334391
Iteration: 6, Func. Count: 83, Neg. LLF: 136.2028151546422
Iteration: 7, Func. Count: 97, Neg. LLF: 136.25633180862943
Iteration: 8, Func. Count: 111, Neg. LLF: 118.01805708879773
Iteration: 9, Func. Count: 125, Neg. LLF: 113.30306428304958
Iteration: 10, Func. Count: 138, Neg. LLF: 113.22537844792517
Iteration: 11, Func. Count: 151, Neg. LLF: 113.22212501852817
Iteration: 12, Func. Count: 164, Neg. LLF: 113.22094970008068
Iteration: 13, Func. Count: 177, Neg. LLF: 113.22114535285012
Iteration: 14, Func. Count: 191, Neg. LLF: 113.22078253277115
Iteration: 15, Func. Count: 204, Neg. LLF: 113.22077723891852
Iteration: 16, Func. Count: 216, Neg. LLF: 113.22077729798986
Optimization terminated successfully (Exit mode 0)
Current function value: 113.22077723891852
Iterations: 16
Function evaluations: 216
Gradient evaluations: 16
Iteration: 1, Func. Count: 15, Neg. LLF: 118.28177027801124
Iteration: 2, Func. Count: 29, Neg. LLF: 129.13388370190202
Iteration: 3, Func. Count: 44, Neg. LLF: 115.01852381003718
Iteration: 4, Func. Count: 59, Neg. LLF: 118.17628593852422
Iteration: 5, Func. Count: 74, Neg. LLF: 720.9897885314191
Iteration: 6, Func. Count: 89, Neg. LLF: 163.47308556222794
Iteration: 7, Func. Count: 104, Neg. LLF: 118.46948101234055
Iteration: 8, Func. Count: 119, Neg. LLF: 135.033432884658
Iteration: 9, Func. Count: 134, Neg. LLF: 113.34860916794807
Iteration: 10, Func. Count: 149, Neg. LLF: 113.2253266320266
Iteration: 11, Func. Count: 163, Neg. LLF: 113.22150380327655
Iteration: 12, Func. Count: 177, Neg. LLF: 113.22127698070615
Iteration: 13, Func. Count: 192, Neg. LLF: 113.22078086000418
Iteration: 14, Func. Count: 206, Neg. LLF: 113.2207785322074
Iteration: 15, Func. Count: 220, Neg. LLF: 113.22077719884004
Iteration: 16, Func. Count: 233, Neg. LLF: 113.22077727912304
Optimization terminated successfully (Exit mode 0)
Current function value: 113.22077719884004
Iterations: 16
Function evaluations: 233
Gradient evaluations: 16
Iteration: 1, Func. Count: 8, Neg. LLF: 130.40219475269018
Iteration: 2, Func. Count: 16, Neg. LLF: 136.57846001727452
Iteration: 3, Func. Count: 24, Neg. LLF: 117.83612240920412
Iteration: 4, Func. Count: 31, Neg. LLF: 118.74215320998887
Iteration: 5, Func. Count: 39, Neg. LLF: 117.84065251626019
Iteration: 6, Func. Count: 47, Neg. LLF: 117.65732676493225
Iteration: 7, Func. Count: 54, Neg. LLF: 117.65701937759466
Iteration: 8, Func. Count: 61, Neg. LLF: 117.65701138451044
Iteration: 9, Func. Count: 67, Neg. LLF: 117.65701134828899
Optimization terminated successfully (Exit mode 0)
Current function value: 117.65701138451044
Iterations: 9
Function evaluations: 67
Gradient evaluations: 9
Iteration: 1, Func. Count: 9, Neg. LLF: 168.0786114243874
Iteration: 2, Func. Count: 19, Neg. LLF: 120.511558578774
Iteration: 3, Func. Count: 27, Neg. LLF: 208.32916131696027
Iteration: 4, Func. Count: 36, Neg. LLF: 120.37242128199398
Iteration: 5, Func. Count: 44, Neg. LLF: 120.35660316495996
Iteration: 6, Func. Count: 52, Neg. LLF: 120.35615809950522
Iteration: 7, Func. Count: 60, Neg. LLF: 120.3559138727558
Iteration: 8, Func. Count: 67, Neg. LLF: 120.35591393802554
Optimization terminated successfully (Exit mode 0)
Current function value: 120.3559138727558
Iterations: 8
Function evaluations: 67
Gradient evaluations: 8
Iteration: 1, Func. Count: 10, Neg. LLF: 161.94575996069054
Iteration: 2, Func. Count: 22, Neg. LLF: 120.62913948151433
Iteration: 3, Func. Count: 31, Neg. LLF: 120.93389665303773
Iteration: 4, Func. Count: 41, Neg. LLF: 130.33834050766933
Iteration: 5, Func. Count: 51, Neg. LLF: 120.37998529733781
Iteration: 6, Func. Count: 60, Neg. LLF: 120.37981912327776
Iteration: 7, Func. Count: 69, Neg. LLF: 120.37980210581877
Iteration: 8, Func. Count: 78, Neg. LLF: 120.37922398886003
Iteration: 9, Func. Count: 87, Neg. LLF: 120.30624117191985
Iteration: 10, Func. Count: 96, Neg. LLF: 120.30329506482127
Iteration: 11, Func. Count: 105, Neg. LLF: 120.30557298761187
Iteration: 12, Func. Count: 117, Neg. LLF: 168.02713020926797
Iteration: 13, Func. Count: 129, Neg. LLF: 120.32720862521961
Iteration: 14, Func. Count: 139, Neg. LLF: 120.48457272807713
Iteration: 15, Func. Count: 150, Neg. LLF: 120.30158459401885
Iteration: 16, Func. Count: 158, Neg. LLF: 120.3015845490692
Optimization terminated successfully (Exit mode 0)
Current function value: 120.30158459401885
Iterations: 17
Function evaluations: 158
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 159.58127822331596
Iteration: 2, Func. Count: 24, Neg. LLF: 120.57183287080292
Iteration: 3, Func. Count: 34, Neg. LLF: 120.42388793221387
Iteration: 4, Func. Count: 44, Neg. LLF: 120.41658558286984
Iteration: 5, Func. Count: 54, Neg. LLF: 120.42804650858429
Iteration: 6, Func. Count: 65, Neg. LLF: 120.39968941685456
Iteration: 7, Func. Count: 75, Neg. LLF: 120.38906572318129
Iteration: 8, Func. Count: 85, Neg. LLF: 120.37323512822154
Iteration: 9, Func. Count: 95, Neg. LLF: 120.36974866993688
Iteration: 10, Func. Count: 105, Neg. LLF: 120.36720537076819
Iteration: 11, Func. Count: 115, Neg. LLF: 120.36638749250267
Iteration: 12, Func. Count: 125, Neg. LLF: 120.35710082143699
Iteration: 13, Func. Count: 135, Neg. LLF: 120.35725032950796
Iteration: 14, Func. Count: 146, Neg. LLF: 124.21544940541733
Iteration: 15, Func. Count: 158, Neg. LLF: 120.36261147685775
Iteration: 16, Func. Count: 169, Neg. LLF: 120.35591377554364
Iteration: 17, Func. Count: 178, Neg. LLF: 120.35591371149232
Optimization terminated successfully (Exit mode 0)
Current function value: 120.35591377554364
Iterations: 18
Function evaluations: 178
Gradient evaluations: 17
Iteration: 1, Func. Count: 12, Neg. LLF: 135.82846600981009
Iteration: 2, Func. Count: 24, Neg. LLF: 120.79822742844196
Iteration: 3, Func. Count: 35, Neg. LLF: 120.92367557343269
Iteration: 4, Func. Count: 47, Neg. LLF: 120.60155677672367
Iteration: 5, Func. Count: 59, Neg. LLF: 120.43708032617288
Iteration: 6, Func. Count: 70, Neg. LLF: 120.43023692294629
Iteration: 7, Func. Count: 81, Neg. LLF: 120.42552541286881
Iteration: 8, Func. Count: 92, Neg. LLF: 120.41979345100897
Iteration: 9, Func. Count: 103, Neg. LLF: 120.40775372788696
Iteration: 10, Func. Count: 114, Neg. LLF: 120.40193318184356
Iteration: 11, Func. Count: 125, Neg. LLF: 120.4004565028647
Iteration: 12, Func. Count: 136, Neg. LLF: 120.39300934701595
Iteration: 13, Func. Count: 147, Neg. LLF: 120.3798152098164
Iteration: 14, Func. Count: 158, Neg. LLF: 120.41646455578967
Iteration: 15, Func. Count: 170, Neg. LLF: 120.40013692001524
Iteration: 16, Func. Count: 191, Neg. LLF: 122.0761330869761
Iteration: 17, Func. Count: 204, Neg. LLF: 120.3686731398528
Iteration: 18, Func. Count: 225, Neg. LLF: 369.46128238968817
Iteration: 19, Func. Count: 246, Neg. LLF: 658.4096541569581
Iteration: 20, Func. Count: 261, Neg. LLF: 124.24455368173157
Iteration: 21, Func. Count: 274, Neg. LLF: 120.37859348862528
Iteration: 22, Func. Count: 285, Neg. LLF: 120.37767913853558
Iteration: 23, Func. Count: 296, Neg. LLF: 120.36689050993175
Iteration: 24, Func. Count: 307, Neg. LLF: 120.35812522050871
Iteration: 25, Func. Count: 318, Neg. LLF: 120.35672716688309
Iteration: 26, Func. Count: 329, Neg. LLF: 120.35603859925529
Iteration: 27, Func. Count: 340, Neg. LLF: 120.35592635736343
Iteration: 28, Func. Count: 351, Neg. LLF: 120.355914366616
Iteration: 29, Func. Count: 362, Neg. LLF: 120.42882794981043
Optimization terminated successfully (Exit mode 0)
Current function value: 120.35591361278483
Iterations: 31
Function evaluations: 365
Gradient evaluations: 29
Iteration: 1, Func. Count: 9, Neg. LLF: 129.1306230542446
Iteration: 2, Func. Count: 19, Neg. LLF: 123.26036418922367
Iteration: 3, Func. Count: 28, Neg. LLF: 120.34381283138345
Iteration: 4, Func. Count: 37, Neg. LLF: 118.37585153571217
Iteration: 5, Func. Count: 45, Neg. LLF: 117.89828971972334
Iteration: 6, Func. Count: 53, Neg. LLF: 117.83712637001697
Iteration: 7, Func. Count: 61, Neg. LLF: 117.81527822565252
Iteration: 8, Func. Count: 69, Neg. LLF: 117.81395748798485
Iteration: 9, Func. Count: 77, Neg. LLF: 117.81368920589266
Iteration: 10, Func. Count: 85, Neg. LLF: 117.81367366715895
Iteration: 11, Func. Count: 93, Neg. LLF: 117.81366782289071
Iteration: 12, Func. Count: 100, Neg. LLF: 117.81366782171989
Optimization terminated successfully (Exit mode 0)
Current function value: 117.81366782289071
Iterations: 12
Function evaluations: 100
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 138.4040114823417
Iteration: 2, Func. Count: 20, Neg. LLF: 123.52498202448017
Iteration: 3, Func. Count: 30, Neg. LLF: 119.94640832531242
Iteration: 4, Func. Count: 40, Neg. LLF: 117.7983067511143
Iteration: 5, Func. Count: 49, Neg. LLF: 117.75677483489235
Iteration: 6, Func. Count: 58, Neg. LLF: 117.755790738243
Iteration: 7, Func. Count: 67, Neg. LLF: 117.75488247388348
Iteration: 8, Func. Count: 76, Neg. LLF: 117.75480990124098
Iteration: 9, Func. Count: 85, Neg. LLF: 117.75475754376033
Iteration: 10, Func. Count: 94, Neg. LLF: 117.7547569689906
Optimization terminated successfully (Exit mode 0)
Current function value: 117.7547569689906
Iterations: 10
Function evaluations: 94
Gradient evaluations: 10
Iteration: 1, Func. Count: 11, Neg. LLF: 134.01358645714402
Iteration: 2, Func. Count: 22, Neg. LLF: 122.28515964097775
Iteration: 3, Func. Count: 33, Neg. LLF: 128.90841210637913
Iteration: 4, Func. Count: 44, Neg. LLF: 117.83937146284839
Iteration: 5, Func. Count: 54, Neg. LLF: 117.76213863916786
Iteration: 6, Func. Count: 64, Neg. LLF: 117.75547522156961
Iteration: 7, Func. Count: 74, Neg. LLF: 117.75493622825634
Iteration: 8, Func. Count: 84, Neg. LLF: 117.75483265274447
Iteration: 9, Func. Count: 94, Neg. LLF: 117.75475837437658
Iteration: 10, Func. Count: 104, Neg. LLF: 117.75475699499377
Iteration: 11, Func. Count: 113, Neg. LLF: 117.7547570294764
Optimization terminated successfully (Exit mode 0)
Current function value: 117.75475699499377
Iterations: 11
Function evaluations: 113
Gradient evaluations: 11
Iteration: 1, Func. Count: 12, Neg. LLF: 124.3446303925357
Iteration: 2, Func. Count: 24, Neg. LLF: 124.03380360151962
Iteration: 3, Func. Count: 36, Neg. LLF: 155.28690692142303
Iteration: 4, Func. Count: 48, Neg. LLF: 117.92675327702531
Iteration: 5, Func. Count: 59, Neg. LLF: 117.81865115220211
Iteration: 6, Func. Count: 70, Neg. LLF: 117.77800462866358
Iteration: 7, Func. Count: 81, Neg. LLF: 117.76302000341505
Iteration: 8, Func. Count: 92, Neg. LLF: 117.75482513058999
Iteration: 9, Func. Count: 103, Neg. LLF: 117.75475799607504
Iteration: 10, Func. Count: 114, Neg. LLF: 117.75475697035321
Iteration: 11, Func. Count: 124, Neg. LLF: 117.75475698444482
Optimization terminated successfully (Exit mode 0)
Current function value: 117.75475697035321
Iterations: 11
Function evaluations: 124
Gradient evaluations: 11
Iteration: 1, Func. Count: 13, Neg. LLF: 132.19364449448904
Iteration: 2, Func. Count: 26, Neg. LLF: 125.50951190628376
Iteration: 3, Func. Count: 39, Neg. LLF: 129.6517892640947
Iteration: 4, Func. Count: 52, Neg. LLF: 117.83835728968296
Iteration: 5, Func. Count: 64, Neg. LLF: 117.49709958236672
Iteration: 6, Func. Count: 76, Neg. LLF: 117.2504028695548
Iteration: 7, Func. Count: 88, Neg. LLF: 117.24935718460964
Iteration: 8, Func. Count: 100, Neg. LLF: 117.24884677971765
Iteration: 9, Func. Count: 112, Neg. LLF: 117.24879129739456
Iteration: 10, Func. Count: 124, Neg. LLF: 117.2486954316042
Iteration: 11, Func. Count: 136, Neg. LLF: 117.24867347314787
Iteration: 12, Func. Count: 148, Neg. LLF: 117.24875546465141
Iteration: 13, Func. Count: 161, Neg. LLF: 117.24868388913352
Iteration: 14, Func. Count: 174, Neg. LLF: 117.24868744977951
Iteration: 15, Func. Count: 187, Neg. LLF: 117.24868045138984
Iteration: 16, Func. Count: 198, Neg. LLF: 117.2486803937695
Optimization terminated successfully (Exit mode 0)
Current function value: 117.24868045138984
Iterations: 17
Function evaluations: 198
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 141.34820306078512
Iteration: 2, Func. Count: 20, Neg. LLF: 143.2129994860417
Iteration: 3, Func. Count: 30, Neg. LLF: 114.34061472166226
Iteration: 4, Func. Count: 39, Neg. LLF: 118.02345591564324
Iteration: 5, Func. Count: 49, Neg. LLF: 113.98122391050266
Iteration: 6, Func. Count: 59, Neg. LLF: 140.37485679586584
Iteration: 7, Func. Count: 71, Neg. LLF: 113.6553908189408
Iteration: 8, Func. Count: 81, Neg. LLF: 113.34785720922449
Iteration: 9, Func. Count: 90, Neg. LLF: 113.3118386531353
Iteration: 10, Func. Count: 99, Neg. LLF: 113.30944270274132
Iteration: 11, Func. Count: 108, Neg. LLF: 113.30907621732933
Iteration: 12, Func. Count: 117, Neg. LLF: 113.30904564495715
Iteration: 13, Func. Count: 125, Neg. LLF: 113.3090456281671
Optimization terminated successfully (Exit mode 0)
Current function value: 113.30904564495715
Iterations: 13
Function evaluations: 125
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 123.08740671791963
Iteration: 2, Func. Count: 22, Neg. LLF: 127.08231713010939
Iteration: 3, Func. Count: 33, Neg. LLF: 119.67681591424845
Iteration: 4, Func. Count: 44, Neg. LLF: 117.23792688826006
Iteration: 5, Func. Count: 55, Neg. LLF: 180.4303328559685
Iteration: 6, Func. Count: 66, Neg. LLF: 113.38032382640868
Iteration: 7, Func. Count: 76, Neg. LLF: 113.95783656074333
Iteration: 8, Func. Count: 87, Neg. LLF: 113.62091092305855
Iteration: 9, Func. Count: 98, Neg. LLF: 113.27374348455956
Iteration: 10, Func. Count: 109, Neg. LLF: 113.24857946435851
Iteration: 11, Func. Count: 119, Neg. LLF: 113.24850347534769
Iteration: 12, Func. Count: 129, Neg. LLF: 113.24838950627715
Iteration: 13, Func. Count: 139, Neg. LLF: 113.24836722840433
Iteration: 14, Func. Count: 149, Neg. LLF: 113.24836528056828
Iteration: 15, Func. Count: 158, Neg. LLF: 113.24836523720028
Optimization terminated successfully (Exit mode 0)
Current function value: 113.24836528056828
Iterations: 15
Function evaluations: 158
Gradient evaluations: 15
Iteration: 1, Func. Count: 12, Neg. LLF: 123.43562875455511
Iteration: 2, Func. Count: 24, Neg. LLF: 134.3684948631057
Iteration: 3, Func. Count: 36, Neg. LLF: 116.46679904889037
Iteration: 4, Func. Count: 48, Neg. LLF: 131.99276025657073
Iteration: 5, Func. Count: 60, Neg. LLF: 116.18190119299238
Iteration: 6, Func. Count: 72, Neg. LLF: 113.51640872081353
Iteration: 7, Func. Count: 83, Neg. LLF: 117.87550314089965
Iteration: 8, Func. Count: 96, Neg. LLF: 122.70993650036431
Iteration: 9, Func. Count: 109, Neg. LLF: 113.547234347175
Iteration: 10, Func. Count: 121, Neg. LLF: 113.37613679487589
Iteration: 11, Func. Count: 133, Neg. LLF: 113.25642125958088
Iteration: 12, Func. Count: 144, Neg. LLF: 113.2490222951572
Iteration: 13, Func. Count: 155, Neg. LLF: 113.24839542789707
Iteration: 14, Func. Count: 166, Neg. LLF: 113.24836557218738
Iteration: 15, Func. Count: 176, Neg. LLF: 113.2483656214517
Optimization terminated successfully (Exit mode 0)
Current function value: 113.24836557218738
Iterations: 15
Function evaluations: 176
Gradient evaluations: 15
Iteration: 1, Func. Count: 13, Neg. LLF: 123.60899974511322
Iteration: 2, Func. Count: 26, Neg. LLF: 142.676142502455
Iteration: 3, Func. Count: 39, Neg. LLF: 116.22872509658504
Iteration: 4, Func. Count: 52, Neg. LLF: 120.82798572477033
Iteration: 5, Func. Count: 65, Neg. LLF: 116.72740793047164
Iteration: 6, Func. Count: 78, Neg. LLF: 113.43193190220217
Iteration: 7, Func. Count: 90, Neg. LLF: 117.45592465855496
Iteration: 8, Func. Count: 103, Neg. LLF: 113.64947120290343
Iteration: 9, Func. Count: 116, Neg. LLF: 113.27336406341293
Iteration: 10, Func. Count: 128, Neg. LLF: 114.28062549515448
Iteration: 11, Func. Count: 141, Neg. LLF: 113.27903337891486
Iteration: 12, Func. Count: 154, Neg. LLF: 113.24841633269568
Iteration: 13, Func. Count: 166, Neg. LLF: 113.24836621005718
Iteration: 14, Func. Count: 178, Neg. LLF: 113.24836528611458
Optimization terminated successfully (Exit mode 0)
Current function value: 113.24836528611458
Iterations: 14
Function evaluations: 178
Gradient evaluations: 14
Iteration: 1, Func. Count: 14, Neg. LLF: 124.48621786974812
Iteration: 2, Func. Count: 28, Neg. LLF: 139.98963100955913
Iteration: 3, Func. Count: 42, Neg. LLF: 116.65718591517016
Iteration: 4, Func. Count: 56, Neg. LLF: 119.19795847351058
Iteration: 5, Func. Count: 70, Neg. LLF: 116.57961120191513
Iteration: 6, Func. Count: 84, Neg. LLF: 113.44247860347673
Iteration: 7, Func. Count: 97, Neg. LLF: 117.31424215312045
Iteration: 8, Func. Count: 111, Neg. LLF: 113.29787007349795
Iteration: 9, Func. Count: 124, Neg. LLF: 113.25387088334041
Iteration: 10, Func. Count: 137, Neg. LLF: 113.25553921835146
Iteration: 11, Func. Count: 151, Neg. LLF: 113.24838876901836
Iteration: 12, Func. Count: 164, Neg. LLF: 113.24836543333261
Iteration: 13, Func. Count: 176, Neg. LLF: 113.24836551009109
Optimization terminated successfully (Exit mode 0)
Current function value: 113.24836543333261
Iterations: 13
Function evaluations: 176
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 140.4840713070792
Iteration: 2, Func. Count: 22, Neg. LLF: 149.96798835026854
Iteration: 3, Func. Count: 33, Neg. LLF: 114.47605841681022
Iteration: 4, Func. Count: 43, Neg. LLF: 116.71255388609521
Iteration: 5, Func. Count: 54, Neg. LLF: 116.9641502406457
Iteration: 6, Func. Count: 65, Neg. LLF: 116.54780805912415
Iteration: 7, Func. Count: 77, Neg. LLF: 113.30730557763053
Iteration: 8, Func. Count: 87, Neg. LLF: 113.61877658390569
Iteration: 9, Func. Count: 98, Neg. LLF: 113.2400793328636
Iteration: 10, Func. Count: 108, Neg. LLF: 113.22108817868842
Iteration: 11, Func. Count: 118, Neg. LLF: 113.22081558674782
Iteration: 12, Func. Count: 128, Neg. LLF: 113.22078276985869
Iteration: 13, Func. Count: 138, Neg. LLF: 113.22077746391813
Iteration: 14, Func. Count: 147, Neg. LLF: 113.22077744213793
Optimization terminated successfully (Exit mode 0)
Current function value: 113.22077746391813
Iterations: 14
Function evaluations: 147
Gradient evaluations: 14
Iteration: 1, Func. Count: 12, Neg. LLF: 122.79554767459085
Iteration: 2, Func. Count: 24, Neg. LLF: 132.44235464819698
Iteration: 3, Func. Count: 36, Neg. LLF: 118.0964698232991
Iteration: 4, Func. Count: 48, Neg. LLF: 116.8833397413522
Iteration: 5, Func. Count: 60, Neg. LLF: 377239.9947875361
Iteration: 6, Func. Count: 72, Neg. LLF: 113.41199525220262
Iteration: 7, Func. Count: 83, Neg. LLF: 113.86709314611392
Iteration: 8, Func. Count: 95, Neg. LLF: 113.51936209603087
Iteration: 9, Func. Count: 107, Neg. LLF: 113.22608113329626
Iteration: 10, Func. Count: 118, Neg. LLF: 113.2224140458802
Iteration: 11, Func. Count: 129, Neg. LLF: 113.22084994457349
Iteration: 12, Func. Count: 140, Neg. LLF: 113.2207813467696
Iteration: 13, Func. Count: 151, Neg. LLF: 113.22077722618099
Iteration: 14, Func. Count: 161, Neg. LLF: 113.22077719040946
Optimization terminated successfully (Exit mode 0)
Current function value: 113.22077722618099
Iterations: 14
Function evaluations: 161
Gradient evaluations: 14
Iteration: 1, Func. Count: 13, Neg. LLF: 122.7439064163605
Iteration: 2, Func. Count: 26, Neg. LLF: 136.49908291892913
Iteration: 3, Func. Count: 39, Neg. LLF: 115.95700720997405
Iteration: 4, Func. Count: 52, Neg. LLF: 127.90676522978424
Iteration: 5, Func. Count: 65, Neg. LLF: 116.42884411211193
Iteration: 6, Func. Count: 78, Neg. LLF: 114.91146359831718
Iteration: 7, Func. Count: 91, Neg. LLF: 113.67364580881943
Iteration: 8, Func. Count: 104, Neg. LLF: 113.22689478094297
Iteration: 9, Func. Count: 116, Neg. LLF: 113.22161593234327
Iteration: 10, Func. Count: 128, Neg. LLF: 113.2208303171208
Iteration: 11, Func. Count: 140, Neg. LLF: 113.22078420801273
Iteration: 12, Func. Count: 152, Neg. LLF: 113.2207772062392
Iteration: 13, Func. Count: 163, Neg. LLF: 113.22077725506433
Optimization terminated successfully (Exit mode 0)
Current function value: 113.2207772062392
Iterations: 13
Function evaluations: 163
Gradient evaluations: 13
Iteration: 1, Func. Count: 14, Neg. LLF: 123.40255344540152
Iteration: 2, Func. Count: 28, Neg. LLF: 146.13685747595446
Iteration: 3, Func. Count: 42, Neg. LLF: 116.22326235909775
Iteration: 4, Func. Count: 56, Neg. LLF: 121.84126154508817
Iteration: 5, Func. Count: 70, Neg. LLF: 117.38504110944545
Iteration: 6, Func. Count: 84, Neg. LLF: 114.56926529628846
Iteration: 7, Func. Count: 98, Neg. LLF: 113.7788337225186
Iteration: 8, Func. Count: 112, Neg. LLF: 113.22846241695252
Iteration: 9, Func. Count: 125, Neg. LLF: 113.22362072383417
Iteration: 10, Func. Count: 138, Neg. LLF: 113.2208975225845
Iteration: 11, Func. Count: 151, Neg. LLF: 113.22079794940481
Iteration: 12, Func. Count: 164, Neg. LLF: 113.22077729269962
Iteration: 13, Func. Count: 176, Neg. LLF: 113.22077735179187
Optimization terminated successfully (Exit mode 0)
Current function value: 113.22077729269962
Iterations: 13
Function evaluations: 176
Gradient evaluations: 13
Iteration: 1, Func. Count: 15, Neg. LLF: 124.07348481892157
Iteration: 2, Func. Count: 30, Neg. LLF: 143.83545780017965
Iteration: 3, Func. Count: 45, Neg. LLF: 116.46386168384592
Iteration: 4, Func. Count: 60, Neg. LLF: 120.9058699131006
Iteration: 5, Func. Count: 75, Neg. LLF: 117.2613444934529
Iteration: 6, Func. Count: 90, Neg. LLF: 114.63183578491176
Iteration: 7, Func. Count: 105, Neg. LLF: 113.76782288178804
Iteration: 8, Func. Count: 120, Neg. LLF: 113.23303151834375
Iteration: 9, Func. Count: 134, Neg. LLF: 113.22477753140784
Iteration: 10, Func. Count: 148, Neg. LLF: 113.22102938694933
Iteration: 11, Func. Count: 162, Neg. LLF: 113.22082157884827
Iteration: 12, Func. Count: 176, Neg. LLF: 113.22077772749749
Iteration: 13, Func. Count: 189, Neg. LLF: 113.22077780779445
Optimization terminated successfully (Exit mode 0)
Current function value: 113.22077772749749
Iterations: 13
Function evaluations: 189
Gradient evaluations: 13
Iteration: 1, Func. Count: 12, Neg. LLF: 135.53309540163878
Iteration: 2, Func. Count: 24, Neg. LLF: 156.25720689711903
Iteration: 3, Func. Count: 36, Neg. LLF: 115.60129057136511
Iteration: 4, Func. Count: 47, Neg. LLF: 114.7967098144429
Iteration: 5, Func. Count: 58, Neg. LLF: 120.00701149085303
Iteration: 6, Func. Count: 71, Neg. LLF: 116.86419278732723
Iteration: 7, Func. Count: 83, Neg. LLF: 115.6286769885651
Iteration: 8, Func. Count: 97, Neg. LLF: 163.1462007064095
Iteration: 9, Func. Count: 109, Neg. LLF: 113.6749254604437
Iteration: 10, Func. Count: 121, Neg. LLF: 113.55102979121033
Iteration: 11, Func. Count: 133, Neg. LLF: 113.22723413665577
Iteration: 12, Func. Count: 144, Neg. LLF: 113.22969054902883
Iteration: 13, Func. Count: 156, Neg. LLF: 113.22084400341889
Iteration: 14, Func. Count: 167, Neg. LLF: 113.22077922232685
Iteration: 15, Func. Count: 178, Neg. LLF: 113.22077722398032
Iteration: 16, Func. Count: 188, Neg. LLF: 113.22077725755301
Optimization terminated successfully (Exit mode 0)
Current function value: 113.22077722398032
Iterations: 16
Function evaluations: 188
Gradient evaluations: 16
Iteration: 1, Func. Count: 13, Neg. LLF: 122.74193456924098
Iteration: 2, Func. Count: 26, Neg. LLF: 140.5483998517712
Iteration: 3, Func. Count: 39, Neg. LLF: 117.35153946118558
Iteration: 4, Func. Count: 52, Neg. LLF: 116.42553151216278
Iteration: 5, Func. Count: 65, Neg. LLF: 379056.1003341401
Iteration: 6, Func. Count: 78, Neg. LLF: 113.43717719770522
Iteration: 7, Func. Count: 90, Neg. LLF: 113.67813011322708
Iteration: 8, Func. Count: 103, Neg. LLF: 113.45658129570005
Iteration: 9, Func. Count: 116, Neg. LLF: 113.23811111223043
Iteration: 10, Func. Count: 129, Neg. LLF: 113.22189161790452
Iteration: 11, Func. Count: 141, Neg. LLF: 113.2207955236981
Iteration: 12, Func. Count: 153, Neg. LLF: 113.22077960550595
Iteration: 13, Func. Count: 165, Neg. LLF: 113.22077719582501
Iteration: 14, Func. Count: 176, Neg. LLF: 113.2207771600433
Optimization terminated successfully (Exit mode 0)
Current function value: 113.22077719582501
Iterations: 14
Function evaluations: 176
Gradient evaluations: 14
Iteration: 1, Func. Count: 14, Neg. LLF: 121.3073982614366
Iteration: 2, Func. Count: 28, Neg. LLF: 141.39069829383024
Iteration: 3, Func. Count: 42, Neg. LLF: 114.72699253090278
Iteration: 4, Func. Count: 55, Neg. LLF: 115.46839617077545
Iteration: 5, Func. Count: 69, Neg. LLF: 126.62307125912241
Iteration: 6, Func. Count: 84, Neg. LLF: 115.96397034186425
Iteration: 7, Func. Count: 98, Neg. LLF: 114.86188309044898
Iteration: 8, Func. Count: 112, Neg. LLF: 113.36406457985404
Iteration: 9, Func. Count: 125, Neg. LLF: 113.48153076195383
Iteration: 10, Func. Count: 139, Neg. LLF: 113.31262962706543
Iteration: 11, Func. Count: 153, Neg. LLF: 113.25088609112258
Iteration: 12, Func. Count: 167, Neg. LLF: 113.22098931124233
Iteration: 13, Func. Count: 180, Neg. LLF: 113.22077778842045
Iteration: 14, Func. Count: 193, Neg. LLF: 113.22077722077567
Optimization terminated successfully (Exit mode 0)
Current function value: 113.22077722077567
Iterations: 14
Function evaluations: 193
Gradient evaluations: 14
Iteration: 1, Func. Count: 15, Neg. LLF: 117.60496457687111
Iteration: 2, Func. Count: 29, Neg. LLF: 131.41769848159163
Iteration: 3, Func. Count: 44, Neg. LLF: 115.18301730929387
Iteration: 4, Func. Count: 59, Neg. LLF: 117.10376062279342
Iteration: 5, Func. Count: 74, Neg. LLF: 587.8850025659303
Iteration: 6, Func. Count: 89, Neg. LLF: 135.9929996424762
Iteration: 7, Func. Count: 104, Neg. LLF: 199.26061960056435
Iteration: 8, Func. Count: 119, Neg. LLF: 115.45839682797836
Iteration: 9, Func. Count: 134, Neg. LLF: 113.27639662801138
Iteration: 10, Func. Count: 148, Neg. LLF: 113.22464810038291
Iteration: 11, Func. Count: 162, Neg. LLF: 113.2240880512076
Iteration: 12, Func. Count: 177, Neg. LLF: 113.22168730552008
Iteration: 13, Func. Count: 192, Neg. LLF: 113.2208377820646
Iteration: 14, Func. Count: 206, Neg. LLF: 113.22077778905809
Iteration: 15, Func. Count: 220, Neg. LLF: 113.22077729531384
Optimization terminated successfully (Exit mode 0)
Current function value: 113.22077729531384
Iterations: 15
Function evaluations: 220
Gradient evaluations: 15
Iteration: 1, Func. Count: 16, Neg. LLF: 117.7423935383332
Iteration: 2, Func. Count: 31, Neg. LLF: 130.34073142681882
Iteration: 3, Func. Count: 47, Neg. LLF: 115.14595815097371
Iteration: 4, Func. Count: 63, Neg. LLF: 117.5765922960518
Iteration: 5, Func. Count: 79, Neg. LLF: 595.5033028163722
Iteration: 6, Func. Count: 95, Neg. LLF: 164.76132140901794
Iteration: 7, Func. Count: 111, Neg. LLF: 121.64890756334755
Iteration: 8, Func. Count: 127, Neg. LLF: 135.66055285184564
Iteration: 9, Func. Count: 143, Neg. LLF: 113.37604639911285
Iteration: 10, Func. Count: 159, Neg. LLF: 113.22488671678083
Iteration: 11, Func. Count: 174, Neg. LLF: 113.22224124347997
Iteration: 12, Func. Count: 189, Neg. LLF: 113.2213808790723
Iteration: 13, Func. Count: 204, Neg. LLF: 113.22079915340505
Iteration: 14, Func. Count: 219, Neg. LLF: 113.22078800194873
Iteration: 15, Func. Count: 234, Neg. LLF: 113.22077731675262
Iteration: 16, Func. Count: 248, Neg. LLF: 113.22077739703329
Optimization terminated successfully (Exit mode 0)
Current function value: 113.22077731675262
Iterations: 16
Function evaluations: 248
Gradient evaluations: 16
Iteration: 1, Func. Count: 6, Neg. LLF: 147.2761767774217
Iteration: 2, Func. Count: 13, Neg. LLF: 254.27934167115725
Iteration: 3, Func. Count: 19, Neg. LLF: 117.92741687475792
Iteration: 4, Func. Count: 25, Neg. LLF: 523201.6486245289
Iteration: 5, Func. Count: 31, Neg. LLF: 115.79179654289297
Iteration: 6, Func. Count: 37, Neg. LLF: 113.98436223096374
Iteration: 7, Func. Count: 42, Neg. LLF: 113.39531282375285
Iteration: 8, Func. Count: 47, Neg. LLF: 113.39032700593413
Iteration: 9, Func. Count: 52, Neg. LLF: 113.390310336712
Iteration: 10, Func. Count: 57, Neg. LLF: 113.39030886201618
Iteration: 11, Func. Count: 61, Neg. LLF: 113.39030884647028
Optimization terminated successfully (Exit mode 0)
Current function value: 113.39030886201618
Iterations: 11
Function evaluations: 61
Gradient evaluations: 11
Iteration: 1, Func. Count: 5, Neg. LLF: 151.5828097930699
Iteration: 2, Func. Count: 11, Neg. LLF: 195.56329088602098
Iteration: 3, Func. Count: 16, Neg. LLF: 130.27309838931149
Iteration: 4, Func. Count: 20, Neg. LLF: 130.17765042454675
Iteration: 5, Func. Count: 24, Neg. LLF: 130.14121915570743
Iteration: 6, Func. Count: 28, Neg. LLF: 130.12665582362496
Iteration: 7, Func. Count: 32, Neg. LLF: 130.11722363794024
Iteration: 8, Func. Count: 36, Neg. LLF: 130.11457525070054
Iteration: 9, Func. Count: 40, Neg. LLF: 130.11438048128386
Iteration: 10, Func. Count: 44, Neg. LLF: 130.11436807493183
Iteration: 11, Func. Count: 48, Neg. LLF: 130.11436730427138
Optimization terminated successfully (Exit mode 0)
Current function value: 130.11436730427138
Iterations: 11
Function evaluations: 48
Gradient evaluations: 11
Iteration: 1, Func. Count: 6, Neg. LLF: 169.97542033023458
Iteration: 2, Func. Count: 12, Neg. LLF: 219.5178627143893
Iteration: 3, Func. Count: 18, Neg. LLF: 128.7131847944116
Iteration: 4, Func. Count: 24, Neg. LLF: 126.35263263581454
Iteration: 5, Func. Count: 29, Neg. LLF: 131.15173899777864
Iteration: 6, Func. Count: 35, Neg. LLF: 126.27496683299351
Iteration: 7, Func. Count: 41, Neg. LLF: 126.21226260480476
Iteration: 8, Func. Count: 46, Neg. LLF: 126.20958519706713
Iteration: 9, Func. Count: 51, Neg. LLF: 126.20956029334545
Iteration: 10, Func. Count: 56, Neg. LLF: 126.20955205758769
Iteration: 11, Func. Count: 60, Neg. LLF: 126.20955194727497
Optimization terminated successfully (Exit mode 0)
Current function value: 126.20955205758769
Iterations: 11
Function evaluations: 60
Gradient evaluations: 11
Iteration: 1, Func. Count: 7, Neg. LLF: 165.88776596563517
Iteration: 2, Func. Count: 14, Neg. LLF: 189.89584504255674
Iteration: 3, Func. Count: 21, Neg. LLF: 133.9038098405958
Iteration: 4, Func. Count: 28, Neg. LLF: 126.475800362672
Iteration: 5, Func. Count: 34, Neg. LLF: 126.38620520296213
Iteration: 6, Func. Count: 40, Neg. LLF: 126.25038345006847
Iteration: 7, Func. Count: 46, Neg. LLF: 126.21319883073926
Iteration: 8, Func. Count: 52, Neg. LLF: 126.20991203732312
Iteration: 9, Func. Count: 58, Neg. LLF: 126.2095621367527
Iteration: 10, Func. Count: 64, Neg. LLF: 126.20955249451949
Iteration: 11, Func. Count: 69, Neg. LLF: 126.2095524096025
Optimization terminated successfully (Exit mode 0)
Current function value: 126.20955249451949
Iterations: 11
Function evaluations: 69
Gradient evaluations: 11
Iteration: 1, Func. Count: 8, Neg. LLF: 163.49514897590626
Iteration: 2, Func. Count: 16, Neg. LLF: 134.26657657392926
Iteration: 3, Func. Count: 24, Neg. LLF: 161.36221129593042
Iteration: 4, Func. Count: 32, Neg. LLF: 126.66920917750592
Iteration: 5, Func. Count: 39, Neg. LLF: 126.38944835796025
Iteration: 6, Func. Count: 46, Neg. LLF: 126.28893646383663
Iteration: 7, Func. Count: 53, Neg. LLF: 126.23963367605387
Iteration: 8, Func. Count: 60, Neg. LLF: 126.21422569809975
Iteration: 9, Func. Count: 67, Neg. LLF: 126.20697211721628
Iteration: 10, Func. Count: 74, Neg. LLF: 126.20480455469117
Iteration: 11, Func. Count: 81, Neg. LLF: 126.2047157333383
Iteration: 12, Func. Count: 88, Neg. LLF: 126.20471313928306
Iteration: 13, Func. Count: 94, Neg. LLF: 126.20471303433827
Optimization terminated successfully (Exit mode 0)
Current function value: 126.20471313928306
Iterations: 13
Function evaluations: 94
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 152.4920064059718
Iteration: 2, Func. Count: 18, Neg. LLF: 133.02621509127394
Iteration: 3, Func. Count: 27, Neg. LLF: 127.49047775052956
Iteration: 4, Func. Count: 35, Neg. LLF: 126.77654508308754
Iteration: 5, Func. Count: 43, Neg. LLF: 129.22586051625424
Iteration: 6, Func. Count: 52, Neg. LLF: 126.23396638271389
Iteration: 7, Func. Count: 61, Neg. LLF: 125.62001302744989
Iteration: 8, Func. Count: 69, Neg. LLF: 125.60136862682741
Iteration: 9, Func. Count: 77, Neg. LLF: 125.59739084690966
Iteration: 10, Func. Count: 85, Neg. LLF: 125.59612634387585
Iteration: 11, Func. Count: 93, Neg. LLF: 125.59578209603686
Iteration: 12, Func. Count: 101, Neg. LLF: 125.59578160869516
Optimization terminated successfully (Exit mode 0)
Current function value: 125.59578160869516
Iterations: 12
Function evaluations: 101
Gradient evaluations: 12
Iteration: 1, Func. Count: 6, Neg. LLF: 156.09794379040306
Iteration: 2, Func. Count: 12, Neg. LLF: 133.82550797781101
Iteration: 3, Func. Count: 18, Neg. LLF: 144.5773789481253
Iteration: 4, Func. Count: 24, Neg. LLF: 123.60573870641744
Iteration: 5, Func. Count: 29, Neg. LLF: 122.84133899474408
Iteration: 6, Func. Count: 34, Neg. LLF: 122.58031379454363
Iteration: 7, Func. Count: 40, Neg. LLF: 122.32033960479205
Iteration: 8, Func. Count: 45, Neg. LLF: 122.31917143341376
Iteration: 9, Func. Count: 50, Neg. LLF: 122.31899679263387
Iteration: 10, Func. Count: 55, Neg. LLF: 122.31898010760331
Iteration: 11, Func. Count: 60, Neg. LLF: 122.31897365456199
Iteration: 12, Func. Count: 64, Neg. LLF: 122.31897363608158
Optimization terminated successfully (Exit mode 0)
Current function value: 122.31897365456199
Iterations: 12
Function evaluations: 64
Gradient evaluations: 12
Iteration: 1, Func. Count: 7, Neg. LLF: 169.33892467161866
Iteration: 2, Func. Count: 14, Neg. LLF: 181.60228378079054
Iteration: 3, Func. Count: 21, Neg. LLF: 127.47417076245489
Iteration: 4, Func. Count: 28, Neg. LLF: 133.61529626012404
Iteration: 5, Func. Count: 35, Neg. LLF: 129.81489529205996
Iteration: 6, Func. Count: 42, Neg. LLF: 123.9563882009347
Iteration: 7, Func. Count: 49, Neg. LLF: 123.00285993953833
Iteration: 8, Func. Count: 56, Neg. LLF: 122.30401779114449
Iteration: 9, Func. Count: 63, Neg. LLF: 122.12235500912102
Iteration: 10, Func. Count: 69, Neg. LLF: 122.11865953826575
Iteration: 11, Func. Count: 75, Neg. LLF: 122.11294338140576
Iteration: 12, Func. Count: 81, Neg. LLF: 122.11221575048366
Iteration: 13, Func. Count: 87, Neg. LLF: 122.11220950750752
Iteration: 14, Func. Count: 93, Neg. LLF: 122.11220845973604
Iteration: 15, Func. Count: 98, Neg. LLF: 122.11220841075982
Optimization terminated successfully (Exit mode 0)
Current function value: 122.11220845973604
Iterations: 15
Function evaluations: 98
Gradient evaluations: 15
Iteration: 1, Func. Count: 8, Neg. LLF: 164.94857254335943
Iteration: 2, Func. Count: 16, Neg. LLF: 137.225750553557
Iteration: 3, Func. Count: 24, Neg. LLF: 136.75470445196368
Iteration: 4, Func. Count: 32, Neg. LLF: 130.4998623800372
Iteration: 5, Func. Count: 40, Neg. LLF: 124.42301735278305
Iteration: 6, Func. Count: 48, Neg. LLF: 123.21698487233543
Iteration: 7, Func. Count: 56, Neg. LLF: 122.39334842360402
Iteration: 8, Func. Count: 63, Neg. LLF: 122.18653685520351
Iteration: 9, Func. Count: 70, Neg. LLF: 122.25149034601007
Iteration: 10, Func. Count: 78, Neg. LLF: 122.11241971777932
Iteration: 11, Func. Count: 85, Neg. LLF: 122.11221477529932
Iteration: 12, Func. Count: 92, Neg. LLF: 122.11220979409619
Iteration: 13, Func. Count: 99, Neg. LLF: 122.11220851105355
Iteration: 14, Func. Count: 105, Neg. LLF: 122.11220858834048
Optimization terminated successfully (Exit mode 0)
Current function value: 122.11220851105355
Iterations: 14
Function evaluations: 105
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 160.20669304311656
Iteration: 2, Func. Count: 18, Neg. LLF: 144.2241575143447
Iteration: 3, Func. Count: 27, Neg. LLF: 127.65867230717879
Iteration: 4, Func. Count: 36, Neg. LLF: 137.11265359695255
Iteration: 5, Func. Count: 45, Neg. LLF: 122.58309562506167
Iteration: 6, Func. Count: 53, Neg. LLF: 122.46999692692182
Iteration: 7, Func. Count: 61, Neg. LLF: 122.15184867166715
Iteration: 8, Func. Count: 69, Neg. LLF: 122.13549812659616
Iteration: 9, Func. Count: 77, Neg. LLF: 122.11578614889297
Iteration: 10, Func. Count: 85, Neg. LLF: 122.1131517659704
Iteration: 11, Func. Count: 93, Neg. LLF: 122.11224437784794
Iteration: 12, Func. Count: 101, Neg. LLF: 122.11221593368984
Iteration: 13, Func. Count: 109, Neg. LLF: 122.11220874493333
Iteration: 14, Func. Count: 116, Neg. LLF: 122.11220871929481
Optimization terminated successfully (Exit mode 0)
Current function value: 122.11220874493333
Iterations: 14
Function evaluations: 116
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 137.04537118673827
Iteration: 2, Func. Count: 20, Neg. LLF: 173.89934786223998
Iteration: 3, Func. Count: 30, Neg. LLF: 133.19395695888596
Iteration: 4, Func. Count: 40, Neg. LLF: 123.48965430459116
Iteration: 5, Func. Count: 49, Neg. LLF: 123.06462448960782
Iteration: 6, Func. Count: 59, Neg. LLF: 131.99820017836382
Iteration: 7, Func. Count: 69, Neg. LLF: 122.09406434069632
Iteration: 8, Func. Count: 78, Neg. LLF: 122.23618687054798
Iteration: 9, Func. Count: 88, Neg. LLF: 122.07134049501416
Iteration: 10, Func. Count: 97, Neg. LLF: 122.06532451338319
Iteration: 11, Func. Count: 106, Neg. LLF: 122.064961094961
Iteration: 12, Func. Count: 115, Neg. LLF: 122.06480181938403
Iteration: 13, Func. Count: 123, Neg. LLF: 122.06480176825501
Optimization terminated successfully (Exit mode 0)
Current function value: 122.06480181938403
Iterations: 13
Function evaluations: 123
Gradient evaluations: 13
Iteration: 1, Func. Count: 7, Neg. LLF: 150.7697233716895
Iteration: 2, Func. Count: 14, Neg. LLF: 137.77802544531343
Iteration: 3, Func. Count: 21, Neg. LLF: 138.24143871605335
Iteration: 4, Func. Count: 28, Neg. LLF: 123.50021578861981
Iteration: 5, Func. Count: 34, Neg. LLF: 123.38113976297572
Iteration: 6, Func. Count: 41, Neg. LLF: 125.41490075540524
Iteration: 7, Func. Count: 48, Neg. LLF: 122.2306562986947
Iteration: 8, Func. Count: 54, Neg. LLF: 122.11768333310793
Iteration: 9, Func. Count: 60, Neg. LLF: 122.09902786671358
Iteration: 10, Func. Count: 66, Neg. LLF: 122.094719185138
Iteration: 11, Func. Count: 72, Neg. LLF: 122.09471299242401
Iteration: 12, Func. Count: 77, Neg. LLF: 122.09471296875991
Optimization terminated successfully (Exit mode 0)
Current function value: 122.09471299242401
Iterations: 12
Function evaluations: 77
Gradient evaluations: 12
Iteration: 1, Func. Count: 8, Neg. LLF: 165.9118137079671
Iteration: 2, Func. Count: 17, Neg. LLF: 478.90270543247243
Iteration: 3, Func. Count: 25, Neg. LLF: 125.62624146098301
Iteration: 4, Func. Count: 32, Neg. LLF: 124.79312065474103
Iteration: 5, Func. Count: 39, Neg. LLF: 123.40963130059058
Iteration: 6, Func. Count: 46, Neg. LLF: 123.34168571799971
Iteration: 7, Func. Count: 54, Neg. LLF: 122.61398143959515
Iteration: 8, Func. Count: 62, Neg. LLF: 122.12141209938805
Iteration: 9, Func. Count: 69, Neg. LLF: 122.11718906214337
Iteration: 10, Func. Count: 77, Neg. LLF: 122.0962775174192
Iteration: 11, Func. Count: 84, Neg. LLF: 122.0949871317805
Iteration: 12, Func. Count: 91, Neg. LLF: 122.09481858891176
Iteration: 13, Func. Count: 98, Neg. LLF: 122.09472538993423
Iteration: 14, Func. Count: 105, Neg. LLF: 122.09471393658093
Iteration: 15, Func. Count: 112, Neg. LLF: 122.09471277816499
Iteration: 16, Func. Count: 118, Neg. LLF: 122.09471273680617
Optimization terminated successfully (Exit mode 0)
Current function value: 122.09471277816499
Iterations: 16
Function evaluations: 118
Gradient evaluations: 16
Iteration: 1, Func. Count: 9, Neg. LLF: 164.48927719358272
Iteration: 2, Func. Count: 19, Neg. LLF: 190.6766643760058
Iteration: 3, Func. Count: 28, Neg. LLF: 125.94347232208584
Iteration: 4, Func. Count: 36, Neg. LLF: 1212688.1975012782
Iteration: 5, Func. Count: 45, Neg. LLF: 126.59722847294464
Iteration: 6, Func. Count: 54, Neg. LLF: 123.9059021879394
Iteration: 7, Func. Count: 62, Neg. LLF: 127.62684022300888
Iteration: 8, Func. Count: 72, Neg. LLF: 123.00466903060689
Iteration: 9, Func. Count: 80, Neg. LLF: 122.16708432458745
Iteration: 10, Func. Count: 88, Neg. LLF: 122.11154451046265
Iteration: 11, Func. Count: 96, Neg. LLF: 122.10078821119254
Iteration: 12, Func. Count: 104, Neg. LLF: 122.09812122399128
Iteration: 13, Func. Count: 112, Neg. LLF: 122.09577733427737
Iteration: 14, Func. Count: 120, Neg. LLF: 122.09497870651177
Iteration: 15, Func. Count: 128, Neg. LLF: 122.0947797735996
Iteration: 16, Func. Count: 136, Neg. LLF: 122.09474228896352
Iteration: 17, Func. Count: 144, Neg. LLF: 122.0947187693279
Iteration: 18, Func. Count: 152, Neg. LLF: 122.09471326353133
Iteration: 19, Func. Count: 159, Neg. LLF: 122.09471334933102
Optimization terminated successfully (Exit mode 0)
Current function value: 122.09471326353133
Iterations: 19
Function evaluations: 159
Gradient evaluations: 19
Iteration: 1, Func. Count: 10, Neg. LLF: 134.34748690078618
Iteration: 2, Func. Count: 20, Neg. LLF: 202.6342980020846
Iteration: 3, Func. Count: 30, Neg. LLF: 131.46043500584878
Iteration: 4, Func. Count: 40, Neg. LLF: 124.5001023237011
Iteration: 5, Func. Count: 50, Neg. LLF: 124.37706326764447
Iteration: 6, Func. Count: 60, Neg. LLF: 128.4940202248372
Iteration: 7, Func. Count: 70, Neg. LLF: 122.20681583749827
Iteration: 8, Func. Count: 79, Neg. LLF: 122.1441201500123
Iteration: 9, Func. Count: 88, Neg. LLF: 122.11927180389183
Iteration: 10, Func. Count: 97, Neg. LLF: 122.09805282713393
Iteration: 11, Func. Count: 106, Neg. LLF: 122.09521728492632
Iteration: 12, Func. Count: 115, Neg. LLF: 122.09474035535239
Iteration: 13, Func. Count: 124, Neg. LLF: 122.09471282886173
Iteration: 14, Func. Count: 132, Neg. LLF: 122.09471281654888
Optimization terminated successfully (Exit mode 0)
Current function value: 122.09471282886173
Iterations: 14
Function evaluations: 132
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 134.57547674098592
Iteration: 2, Func. Count: 22, Neg. LLF: 202.7381817523497
Iteration: 3, Func. Count: 33, Neg. LLF: 131.53991487576477
Iteration: 4, Func. Count: 44, Neg. LLF: 123.94690999829882
Iteration: 5, Func. Count: 55, Neg. LLF: 134.45061224840686
Iteration: 6, Func. Count: 66, Neg. LLF: 122.22048671623457
Iteration: 7, Func. Count: 76, Neg. LLF: 122.40494243111999
Iteration: 8, Func. Count: 87, Neg. LLF: 122.10829067303958
Iteration: 9, Func. Count: 97, Neg. LLF: 122.06981005562642
Iteration: 10, Func. Count: 107, Neg. LLF: 122.06552140949483
Iteration: 11, Func. Count: 117, Neg. LLF: 122.0648837545609
Iteration: 12, Func. Count: 127, Neg. LLF: 122.06481030415121
Iteration: 13, Func. Count: 137, Neg. LLF: 122.06480155242436
Iteration: 14, Func. Count: 146, Neg. LLF: 122.06480150127365
Optimization terminated successfully (Exit mode 0)
Current function value: 122.06480155242436
Iterations: 14
Function evaluations: 146
Gradient evaluations: 14
Iteration: 1, Func. Count: 8, Neg. LLF: 146.7547159455628
Iteration: 2, Func. Count: 16, Neg. LLF: 143.9119643077087
Iteration: 3, Func. Count: 24, Neg. LLF: 126.27529207258229
Iteration: 4, Func. Count: 31, Neg. LLF: 122.57530109636129
Iteration: 5, Func. Count: 38, Neg. LLF: 122.8090339256011
Iteration: 6, Func. Count: 46, Neg. LLF: 125.18891250158151
Iteration: 7, Func. Count: 54, Neg. LLF: 122.10553407276329
Iteration: 8, Func. Count: 61, Neg. LLF: 122.11724562512723
Iteration: 9, Func. Count: 69, Neg. LLF: 122.09491805157829
Iteration: 10, Func. Count: 76, Neg. LLF: 122.09471323051157
Iteration: 11, Func. Count: 83, Neg. LLF: 122.0947127547506
Optimization terminated successfully (Exit mode 0)
Current function value: 122.0947127547506
Iterations: 11
Function evaluations: 83
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 164.99413587321078
Iteration: 2, Func. Count: 19, Neg. LLF: 42837722.28487367
Iteration: 3, Func. Count: 28, Neg. LLF: 125.71218585278922
Iteration: 4, Func. Count: 36, Neg. LLF: 125.10619889218654
Iteration: 5, Func. Count: 44, Neg. LLF: 124.31874292554258
Iteration: 6, Func. Count: 52, Neg. LLF: 122.67231353124681
Iteration: 7, Func. Count: 60, Neg. LLF: 123.53069297779645
Iteration: 8, Func. Count: 70, Neg. LLF: 122.13832488464939
Iteration: 9, Func. Count: 78, Neg. LLF: 122.09814490423096
Iteration: 10, Func. Count: 86, Neg. LLF: 122.09589478279905
Iteration: 11, Func. Count: 94, Neg. LLF: 122.0951923893006
Iteration: 12, Func. Count: 102, Neg. LLF: 122.09487849217896
Iteration: 13, Func. Count: 110, Neg. LLF: 122.09472884937807
Iteration: 14, Func. Count: 118, Neg. LLF: 122.09471497824345
Iteration: 15, Func. Count: 126, Neg. LLF: 122.0947129546386
Iteration: 16, Func. Count: 133, Neg. LLF: 122.09471291326409
Optimization terminated successfully (Exit mode 0)
Current function value: 122.0947129546386
Iterations: 16
Function evaluations: 133
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 163.0799777885581
Iteration: 2, Func. Count: 21, Neg. LLF: 245.41865970495732
Iteration: 3, Func. Count: 31, Neg. LLF: 126.03174958903158
Iteration: 4, Func. Count: 40, Neg. LLF: 1308062.236454181
Iteration: 5, Func. Count: 50, Neg. LLF: 126.7385724773909
Iteration: 6, Func. Count: 60, Neg. LLF: 125.15465085952908
Iteration: 7, Func. Count: 70, Neg. LLF: 124.98094841891523
Iteration: 8, Func. Count: 80, Neg. LLF: 122.41811030248242
Iteration: 9, Func. Count: 89, Neg. LLF: 122.25839836562243
Iteration: 10, Func. Count: 98, Neg. LLF: 122.17323991090169
Iteration: 11, Func. Count: 107, Neg. LLF: 122.1466401027573
Iteration: 12, Func. Count: 116, Neg. LLF: 122.13202300070144
Iteration: 13, Func. Count: 125, Neg. LLF: 122.10827938997903
Iteration: 14, Func. Count: 134, Neg. LLF: 122.09855286168823
Iteration: 15, Func. Count: 143, Neg. LLF: 122.09623654610301
Iteration: 16, Func. Count: 152, Neg. LLF: 122.09520446803725
Iteration: 17, Func. Count: 161, Neg. LLF: 122.09473674087933
Iteration: 18, Func. Count: 170, Neg. LLF: 122.094713491137
Iteration: 19, Func. Count: 179, Neg. LLF: 122.094712817803
Optimization terminated successfully (Exit mode 0)
Current function value: 122.094712817803
Iterations: 19
Function evaluations: 179
Gradient evaluations: 19
Iteration: 1, Func. Count: 11, Neg. LLF: 133.6506281173264
Iteration: 2, Func. Count: 22, Neg. LLF: 218.37930909135352
Iteration: 3, Func. Count: 33, Neg. LLF: 130.3398450902558
Iteration: 4, Func. Count: 44, Neg. LLF: 127.40073393080445
Iteration: 5, Func. Count: 55, Neg. LLF: 181.71080728718937
Iteration: 6, Func. Count: 66, Neg. LLF: 123.1257493372666
Iteration: 7, Func. Count: 76, Neg. LLF: 122.39786868775424
Iteration: 8, Func. Count: 86, Neg. LLF: 122.19940410104245
Iteration: 9, Func. Count: 96, Neg. LLF: 122.11736749850681
Iteration: 10, Func. Count: 106, Neg. LLF: 122.09964816913899
Iteration: 11, Func. Count: 116, Neg. LLF: 122.09481837882673
Iteration: 12, Func. Count: 126, Neg. LLF: 122.09473210613085
Iteration: 13, Func. Count: 136, Neg. LLF: 122.0947129868093
Iteration: 14, Func. Count: 145, Neg. LLF: 122.09471297442614
Optimization terminated successfully (Exit mode 0)
Current function value: 122.0947129868093
Iterations: 14
Function evaluations: 145
Gradient evaluations: 14
Iteration: 1, Func. Count: 12, Neg. LLF: 133.44333740791384
Iteration: 2, Func. Count: 24, Neg. LLF: 222.22982089521008
Iteration: 3, Func. Count: 36, Neg. LLF: 130.57228128700353
Iteration: 4, Func. Count: 48, Neg. LLF: 124.28427628291531
Iteration: 5, Func. Count: 60, Neg. LLF: 195.53904734513276
Iteration: 6, Func. Count: 72, Neg. LLF: 122.25198393817058
Iteration: 7, Func. Count: 83, Neg. LLF: 122.41907670332978
Iteration: 8, Func. Count: 95, Neg. LLF: 122.10182552775038
Iteration: 9, Func. Count: 106, Neg. LLF: 122.07451209338112
Iteration: 10, Func. Count: 117, Neg. LLF: 122.06620541822605
Iteration: 11, Func. Count: 128, Neg. LLF: 122.0652065206105
Iteration: 12, Func. Count: 139, Neg. LLF: 122.06480496521714
Iteration: 13, Func. Count: 150, Neg. LLF: 122.06480157877495
Iteration: 14, Func. Count: 160, Neg. LLF: 122.06480152760125
Optimization terminated successfully (Exit mode 0)
Current function value: 122.06480157877495
Iterations: 14
Function evaluations: 160
Gradient evaluations: 14
Iteration: 1, Func. Count: 5, Neg. LLF: 136.27527435776798
Iteration: 2, Func. Count: 10, Neg. LLF: 144.35784256640463
Iteration: 3, Func. Count: 15, Neg. LLF: 129.60799779077033
Iteration: 4, Func. Count: 19, Neg. LLF: 128.96018407366026
Iteration: 5, Func. Count: 23, Neg. LLF: 128.93241116533497
Iteration: 6, Func. Count: 27, Neg. LLF: 128.915006652422
Iteration: 7, Func. Count: 31, Neg. LLF: 128.91482392943846
Iteration: 8, Func. Count: 35, Neg. LLF: 128.91482001782717
Iteration: 9, Func. Count: 38, Neg. LLF: 128.91482005543867
Optimization terminated successfully (Exit mode 0)
Current function value: 128.91482001782717
Iterations: 9
Function evaluations: 38
Gradient evaluations: 9
Iteration: 1, Func. Count: 6, Neg. LLF: 149.36655795832465
Iteration: 2, Func. Count: 12, Neg. LLF: 130.15022524668694
Iteration: 3, Func. Count: 17, Neg. LLF: 129.8310672841631
Iteration: 4, Func. Count: 22, Neg. LLF: 129.04612211726229
Iteration: 5, Func. Count: 27, Neg. LLF: 128.9337519386386
Iteration: 6, Func. Count: 32, Neg. LLF: 128.91551403518562
Iteration: 7, Func. Count: 37, Neg. LLF: 128.91482539153796
Iteration: 8, Func. Count: 42, Neg. LLF: 128.91482001925058
Iteration: 9, Func. Count: 46, Neg. LLF: 128.9148201489694
Optimization terminated successfully (Exit mode 0)
Current function value: 128.91482001925058
Iterations: 9
Function evaluations: 46
Gradient evaluations: 9
Iteration: 1, Func. Count: 7, Neg. LLF: 137.57789029683457
Iteration: 2, Func. Count: 14, Neg. LLF: 132.4895263608047
Iteration: 3, Func. Count: 21, Neg. LLF: 129.583853557063
Iteration: 4, Func. Count: 27, Neg. LLF: 128.9839556545194
Iteration: 5, Func. Count: 33, Neg. LLF: 128.9482897321601
Iteration: 6, Func. Count: 39, Neg. LLF: 128.9238224885936
Iteration: 7, Func. Count: 45, Neg. LLF: 128.91627724868823
Iteration: 8, Func. Count: 51, Neg. LLF: 128.91482795577278
Iteration: 9, Func. Count: 57, Neg. LLF: 128.91482017975636
Iteration: 10, Func. Count: 62, Neg. LLF: 128.91482034286582
Optimization terminated successfully (Exit mode 0)
Current function value: 128.91482017975636
Iterations: 10
Function evaluations: 62
Gradient evaluations: 10
Iteration: 1, Func. Count: 8, Neg. LLF: 143.6924051500835
Iteration: 2, Func. Count: 16, Neg. LLF: 132.89815797270066
Iteration: 3, Func. Count: 24, Neg. LLF: 128.4249662510517
Iteration: 4, Func. Count: 31, Neg. LLF: 131.3293982424131
Iteration: 5, Func. Count: 39, Neg. LLF: 128.13002601336103
Iteration: 6, Func. Count: 46, Neg. LLF: 128.06770082855024
Iteration: 7, Func. Count: 53, Neg. LLF: 128.05938480160918
Iteration: 8, Func. Count: 60, Neg. LLF: 128.05510288640218
Iteration: 9, Func. Count: 67, Neg. LLF: 128.05363288393863
Iteration: 10, Func. Count: 74, Neg. LLF: 128.05335522472896
Iteration: 11, Func. Count: 81, Neg. LLF: 128.0533542484435
Optimization terminated successfully (Exit mode 0)
Current function value: 128.0533542484435
Iterations: 11
Function evaluations: 81
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 136.28661416220174
Iteration: 2, Func. Count: 18, Neg. LLF: 133.247615965249
Iteration: 3, Func. Count: 27, Neg. LLF: 129.55851326328235
Iteration: 4, Func. Count: 35, Neg. LLF: 176.4962957916235
Iteration: 5, Func. Count: 44, Neg. LLF: 128.3969394959872
Iteration: 6, Func. Count: 52, Neg. LLF: 128.25787798673105
Iteration: 7, Func. Count: 60, Neg. LLF: 128.105084546734
Iteration: 8, Func. Count: 68, Neg. LLF: 128.06771397250125
Iteration: 9, Func. Count: 76, Neg. LLF: 128.05643378458427
Iteration: 10, Func. Count: 84, Neg. LLF: 128.0534197245637
Iteration: 11, Func. Count: 92, Neg. LLF: 128.0533554175323
Iteration: 12, Func. Count: 100, Neg. LLF: 128.05335381386513
Iteration: 13, Func. Count: 107, Neg. LLF: 128.05335398029848
Optimization terminated successfully (Exit mode 0)
Current function value: 128.05335381386513
Iterations: 13
Function evaluations: 107
Gradient evaluations: 13
Iteration: 1, Func. Count: 6, Neg. LLF: 138.26893860033726
Iteration: 2, Func. Count: 12, Neg. LLF: 134.22836705863597
Iteration: 3, Func. Count: 18, Neg. LLF: 130.02036633791212
Iteration: 4, Func. Count: 24, Neg. LLF: 129.50330890371586
Iteration: 5, Func. Count: 29, Neg. LLF: 129.0176216699192
Iteration: 6, Func. Count: 34, Neg. LLF: 128.92364969364039
Iteration: 7, Func. Count: 39, Neg. LLF: 128.9146296857778
Iteration: 8, Func. Count: 44, Neg. LLF: 128.91434326046223
Iteration: 9, Func. Count: 49, Neg. LLF: 128.91434175926108
Iteration: 10, Func. Count: 53, Neg. LLF: 128.91434174066447
Optimization terminated successfully (Exit mode 0)
Current function value: 128.91434175926108
Iterations: 10
Function evaluations: 53
Gradient evaluations: 10
Iteration: 1, Func. Count: 7, Neg. LLF: 169.7797998624515
Iteration: 2, Func. Count: 14, Neg. LLF: 197.66520544614454
Iteration: 3, Func. Count: 21, Neg. LLF: 129.64769733396665
Iteration: 4, Func. Count: 28, Neg. LLF: 126.40049562672486
Iteration: 5, Func. Count: 34, Neg. LLF: 127.84355654637672
Iteration: 6, Func. Count: 41, Neg. LLF: 126.28424760887448
Iteration: 7, Func. Count: 47, Neg. LLF: 126.23308807715931
Iteration: 8, Func. Count: 53, Neg. LLF: 126.21475729226768
Iteration: 9, Func. Count: 59, Neg. LLF: 126.20963045710896
Iteration: 10, Func. Count: 65, Neg. LLF: 126.20955309248208
Iteration: 11, Func. Count: 71, Neg. LLF: 126.20955205432831
Iteration: 12, Func. Count: 76, Neg. LLF: 126.20955194405636
Optimization terminated successfully (Exit mode 0)
Current function value: 126.20955205432831
Iterations: 12
Function evaluations: 76
Gradient evaluations: 12
Iteration: 1, Func. Count: 8, Neg. LLF: 166.02452231832865
Iteration: 2, Func. Count: 16, Neg. LLF: 173.29043617381748
Iteration: 3, Func. Count: 24, Neg. LLF: 135.95133507230963
Iteration: 4, Func. Count: 32, Neg. LLF: 126.52249316854883
Iteration: 5, Func. Count: 39, Neg. LLF: 126.42049780972921
Iteration: 6, Func. Count: 46, Neg. LLF: 126.2704100075647
Iteration: 7, Func. Count: 53, Neg. LLF: 126.21488956020768
Iteration: 8, Func. Count: 60, Neg. LLF: 126.20988599800906
Iteration: 9, Func. Count: 67, Neg. LLF: 126.20955854640918
Iteration: 10, Func. Count: 74, Neg. LLF: 126.20955278628794
Iteration: 11, Func. Count: 81, Neg. LLF: 126.20955203849253
Optimization terminated successfully (Exit mode 0)
Current function value: 126.20955203849253
Iterations: 11
Function evaluations: 81
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 148.9086878508614
Iteration: 2, Func. Count: 18, Neg. LLF: 130.79197077434787
Iteration: 3, Func. Count: 27, Neg. LLF: 130.23957292012307
Iteration: 4, Func. Count: 36, Neg. LLF: 127.3239373650884
Iteration: 5, Func. Count: 44, Neg. LLF: 127.96195431783816
Iteration: 6, Func. Count: 53, Neg. LLF: 126.54684893784314
Iteration: 7, Func. Count: 61, Neg. LLF: 126.36561256697118
Iteration: 8, Func. Count: 69, Neg. LLF: 126.37305452846117
Iteration: 9, Func. Count: 78, Neg. LLF: 126.21786121004794
Iteration: 10, Func. Count: 86, Neg. LLF: 126.2075175894474
Iteration: 11, Func. Count: 94, Neg. LLF: 126.20520805918778
Iteration: 12, Func. Count: 102, Neg. LLF: 126.20486034832665
Iteration: 13, Func. Count: 110, Neg. LLF: 126.20471912443838
Iteration: 14, Func. Count: 118, Neg. LLF: 126.20471336697345
Iteration: 15, Func. Count: 125, Neg. LLF: 126.20471326203888
Optimization terminated successfully (Exit mode 0)
Current function value: 126.20471336697345
Iterations: 15
Function evaluations: 125
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 149.9300767976019
Iteration: 2, Func. Count: 20, Neg. LLF: 127.89647753130231
Iteration: 3, Func. Count: 29, Neg. LLF: 133.74554629081564
Iteration: 4, Func. Count: 39, Neg. LLF: 127.30737533679836
Iteration: 5, Func. Count: 49, Neg. LLF: 227.33556009680515
Iteration: 6, Func. Count: 59, Neg. LLF: 126.017944497845
Iteration: 7, Func. Count: 68, Neg. LLF: 125.75205706925189
Iteration: 8, Func. Count: 77, Neg. LLF: 125.66356210860874
Iteration: 9, Func. Count: 86, Neg. LLF: 125.65758525515541
Iteration: 10, Func. Count: 96, Neg. LLF: 125.5965231193204
Iteration: 11, Func. Count: 105, Neg. LLF: 125.59581489702768
Iteration: 12, Func. Count: 114, Neg. LLF: 125.59578376040398
Iteration: 13, Func. Count: 123, Neg. LLF: 125.59578162637156
Iteration: 14, Func. Count: 131, Neg. LLF: 125.59578154145073
Optimization terminated successfully (Exit mode 0)
Current function value: 125.59578162637156
Iterations: 14
Function evaluations: 131
Gradient evaluations: 14
Iteration: 1, Func. Count: 7, Neg. LLF: 138.69618553961334
Iteration: 2, Func. Count: 14, Neg. LLF: 143.3576211856453
Iteration: 3, Func. Count: 21, Neg. LLF: 124.66702314716218
Iteration: 4, Func. Count: 27, Neg. LLF: 122.67422583953207
Iteration: 5, Func. Count: 33, Neg. LLF: 134.32283184964987
Iteration: 6, Func. Count: 40, Neg. LLF: 122.34458125062494
Iteration: 7, Func. Count: 46, Neg. LLF: 122.32539031106715
Iteration: 8, Func. Count: 52, Neg. LLF: 122.32061524917985
Iteration: 9, Func. Count: 58, Neg. LLF: 122.3190041484622
Iteration: 10, Func. Count: 64, Neg. LLF: 122.31897390695363
Iteration: 11, Func. Count: 69, Neg. LLF: 122.31897388847214
Optimization terminated successfully (Exit mode 0)
Current function value: 122.31897390695363
Iterations: 11
Function evaluations: 69
Gradient evaluations: 11
Iteration: 1, Func. Count: 8, Neg. LLF: 169.48035123013477
Iteration: 2, Func. Count: 16, Neg. LLF: 164.51970914802064
Iteration: 3, Func. Count: 24, Neg. LLF: 129.51929575972449
Iteration: 4, Func. Count: 32, Neg. LLF: 133.1713355734887
Iteration: 5, Func. Count: 40, Neg. LLF: 136.07415511687574
Iteration: 6, Func. Count: 48, Neg. LLF: 124.14818188737917
Iteration: 7, Func. Count: 56, Neg. LLF: 122.80350729854074
Iteration: 8, Func. Count: 64, Neg. LLF: 122.25638407699685
Iteration: 9, Func. Count: 72, Neg. LLF: 122.1155510433432
Iteration: 10, Func. Count: 79, Neg. LLF: 122.11226395405235
Iteration: 11, Func. Count: 86, Neg. LLF: 122.1122523849488
Iteration: 12, Func. Count: 94, Neg. LLF: 122.1122093501038
Iteration: 13, Func. Count: 101, Neg. LLF: 122.11220848840117
Optimization terminated successfully (Exit mode 0)
Current function value: 122.11220848840117
Iterations: 13
Function evaluations: 101
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 163.2890884886556
Iteration: 2, Func. Count: 18, Neg. LLF: 135.2853057928691
Iteration: 3, Func. Count: 27, Neg. LLF: 136.2698846180654
Iteration: 4, Func. Count: 36, Neg. LLF: 126.17745219027493
Iteration: 5, Func. Count: 45, Neg. LLF: 123.78607507459017
Iteration: 6, Func. Count: 54, Neg. LLF: 122.35235614122526
Iteration: 7, Func. Count: 62, Neg. LLF: 122.41065658679227
Iteration: 8, Func. Count: 71, Neg. LLF: 122.48198510417413
Iteration: 9, Func. Count: 80, Neg. LLF: 122.11347385697313
Iteration: 10, Func. Count: 88, Neg. LLF: 122.11234172012874
Iteration: 11, Func. Count: 96, Neg. LLF: 122.11225561270028
Iteration: 12, Func. Count: 104, Neg. LLF: 122.1122114081823
Iteration: 13, Func. Count: 112, Neg. LLF: 122.11220852979582
Iteration: 14, Func. Count: 119, Neg. LLF: 122.1122086071085
Optimization terminated successfully (Exit mode 0)
Current function value: 122.11220852979582
Iterations: 14
Function evaluations: 119
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 143.75325184380202
Iteration: 2, Func. Count: 20, Neg. LLF: 137.3608805359081
Iteration: 3, Func. Count: 30, Neg. LLF: 123.64380136298357
Iteration: 4, Func. Count: 39, Neg. LLF: 127.36539009609854
Iteration: 5, Func. Count: 49, Neg. LLF: 129.41963876881624
Iteration: 6, Func. Count: 59, Neg. LLF: 122.3003731031574
Iteration: 7, Func. Count: 68, Neg. LLF: 122.14700296284852
Iteration: 8, Func. Count: 77, Neg. LLF: 122.11642866831522
Iteration: 9, Func. Count: 86, Neg. LLF: 122.11237912851357
Iteration: 10, Func. Count: 95, Neg. LLF: 122.1122104900331
Iteration: 11, Func. Count: 104, Neg. LLF: 122.1122085971504
Iteration: 12, Func. Count: 112, Neg. LLF: 122.11220857145695
Optimization terminated successfully (Exit mode 0)
Current function value: 122.1122085971504
Iterations: 12
Function evaluations: 112
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 144.81569059861073
Iteration: 2, Func. Count: 22, Neg. LLF: 139.4019775955004
Iteration: 3, Func. Count: 33, Neg. LLF: 124.48493249191971
Iteration: 4, Func. Count: 43, Neg. LLF: 124.82226133476779
Iteration: 5, Func. Count: 54, Neg. LLF: 125.01804931137309
Iteration: 6, Func. Count: 66, Neg. LLF: 122.55914359103461
Iteration: 7, Func. Count: 77, Neg. LLF: 122.0849044037978
Iteration: 8, Func. Count: 87, Neg. LLF: 122.07454703935471
Iteration: 9, Func. Count: 97, Neg. LLF: 122.06524772872517
Iteration: 10, Func. Count: 107, Neg. LLF: 122.06489825625991
Iteration: 11, Func. Count: 117, Neg. LLF: 122.06481714366795
Iteration: 12, Func. Count: 127, Neg. LLF: 122.06480147404716
Iteration: 13, Func. Count: 136, Neg. LLF: 122.06480142287195
Optimization terminated successfully (Exit mode 0)
Current function value: 122.06480147404716
Iterations: 13
Function evaluations: 136
Gradient evaluations: 13
Iteration: 1, Func. Count: 8, Neg. LLF: 136.25665045397398
Iteration: 2, Func. Count: 16, Neg. LLF: 145.22339741399213
Iteration: 3, Func. Count: 24, Neg. LLF: 124.29936355575731
Iteration: 4, Func. Count: 31, Neg. LLF: 125.02327540530449
Iteration: 5, Func. Count: 39, Neg. LLF: 127963.25571630956
Iteration: 6, Func. Count: 47, Neg. LLF: 122.24106366886286
Iteration: 7, Func. Count: 54, Neg. LLF: 122.10916621767284
Iteration: 8, Func. Count: 61, Neg. LLF: 122.10657612005764
Iteration: 9, Func. Count: 69, Neg. LLF: 122.09498710173573
Iteration: 10, Func. Count: 76, Neg. LLF: 122.09473880791475
Iteration: 11, Func. Count: 83, Neg. LLF: 122.09471397244832
Iteration: 12, Func. Count: 90, Neg. LLF: 122.09471275178504
Iteration: 13, Func. Count: 96, Neg. LLF: 122.09471272817467
Optimization terminated successfully (Exit mode 0)
Current function value: 122.09471275178504
Iterations: 13
Function evaluations: 96
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 166.4525702500826
Iteration: 2, Func. Count: 19, Neg. LLF: 296.6866501049463
Iteration: 3, Func. Count: 28, Neg. LLF: 125.55723570491547
Iteration: 4, Func. Count: 36, Neg. LLF: 124.47241100479091
Iteration: 5, Func. Count: 44, Neg. LLF: 122.6788132981976
Iteration: 6, Func. Count: 52, Neg. LLF: 127.19184232667
Iteration: 7, Func. Count: 61, Neg. LLF: 122.72736648098925
Iteration: 8, Func. Count: 70, Neg. LLF: 122.14376172085244
Iteration: 9, Func. Count: 78, Neg. LLF: 122.09621154459589
Iteration: 10, Func. Count: 86, Neg. LLF: 122.09506077447492
Iteration: 11, Func. Count: 94, Neg. LLF: 122.09473989121719
Iteration: 12, Func. Count: 102, Neg. LLF: 122.09472715356783
Iteration: 13, Func. Count: 110, Neg. LLF: 122.09471415325606
Iteration: 14, Func. Count: 118, Neg. LLF: 122.09471293752266
Iteration: 15, Func. Count: 125, Neg. LLF: 122.09471289606111
Optimization terminated successfully (Exit mode 0)
Current function value: 122.09471293752266
Iterations: 15
Function evaluations: 125
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 135.4974429207343
Iteration: 2, Func. Count: 20, Neg. LLF: 133.67561307727146
Iteration: 3, Func. Count: 30, Neg. LLF: 126.4345418820144
Iteration: 4, Func. Count: 40, Neg. LLF: 148.752965424262
Iteration: 5, Func. Count: 50, Neg. LLF: 150.25136292475094
Iteration: 6, Func. Count: 60, Neg. LLF: 126.3555168354532
Iteration: 7, Func. Count: 70, Neg. LLF: 122.54569456415436
Iteration: 8, Func. Count: 79, Neg. LLF: 122.64724270225427
Iteration: 9, Func. Count: 89, Neg. LLF: 122.22345807238638
Iteration: 10, Func. Count: 99, Neg. LLF: 122.1033752353063
Iteration: 11, Func. Count: 109, Neg. LLF: 122.09528567691515
Iteration: 12, Func. Count: 118, Neg. LLF: 122.09479288652079
Iteration: 13, Func. Count: 127, Neg. LLF: 122.09471303539878
Iteration: 14, Func. Count: 135, Neg. LLF: 122.09471312111678
Optimization terminated successfully (Exit mode 0)
Current function value: 122.09471303539878
Iterations: 14
Function evaluations: 135
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 141.68182150093432
Iteration: 2, Func. Count: 22, Neg. LLF: 144.90011745116166
Iteration: 3, Func. Count: 33, Neg. LLF: 129.9312235460809
Iteration: 4, Func. Count: 44, Neg. LLF: 128.37037998744822
Iteration: 5, Func. Count: 55, Neg. LLF: 122.66893742152445
Iteration: 6, Func. Count: 65, Neg. LLF: 122.3621565646637
Iteration: 7, Func. Count: 75, Neg. LLF: 122.13440004757565
Iteration: 8, Func. Count: 85, Neg. LLF: 122.2671898387202
Iteration: 9, Func. Count: 96, Neg. LLF: 122.09581169407734
Iteration: 10, Func. Count: 106, Neg. LLF: 122.09476897653322
Iteration: 11, Func. Count: 116, Neg. LLF: 122.0947150882902
Iteration: 12, Func. Count: 126, Neg. LLF: 122.09471275240683
Iteration: 13, Func. Count: 135, Neg. LLF: 122.09471274006484
Optimization terminated successfully (Exit mode 0)
Current function value: 122.09471275240683
Iterations: 13
Function evaluations: 135
Gradient evaluations: 13
Iteration: 1, Func. Count: 12, Neg. LLF: 142.45366384647508
Iteration: 2, Func. Count: 24, Neg. LLF: 148.88411370597927
Iteration: 3, Func. Count: 36, Neg. LLF: 126.16473068556527
Iteration: 4, Func. Count: 48, Neg. LLF: 128.35963503538792
Iteration: 5, Func. Count: 60, Neg. LLF: 122.2706040195547
Iteration: 6, Func. Count: 71, Neg. LLF: 122.39276380574765
Iteration: 7, Func. Count: 83, Neg. LLF: 122.21651585873983
Iteration: 8, Func. Count: 95, Neg. LLF: 122.06684488300945
Iteration: 9, Func. Count: 106, Neg. LLF: 122.0658731318002
Iteration: 10, Func. Count: 117, Neg. LLF: 122.06482817078499
Iteration: 11, Func. Count: 128, Neg. LLF: 122.0648032111924
Iteration: 12, Func. Count: 139, Neg. LLF: 122.0648014451044
Iteration: 13, Func. Count: 149, Neg. LLF: 122.06480139396712
Optimization terminated successfully (Exit mode 0)
Current function value: 122.0648014451044
Iterations: 13
Function evaluations: 149
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 134.5909500577896
Iteration: 2, Func. Count: 18, Neg. LLF: 143.17362310911977
Iteration: 3, Func. Count: 27, Neg. LLF: 124.4398310884849
Iteration: 4, Func. Count: 35, Neg. LLF: 135.7235569572191
Iteration: 5, Func. Count: 44, Neg. LLF: 123.90776694807874
Iteration: 6, Func. Count: 53, Neg. LLF: 123.8441171560765
Iteration: 7, Func. Count: 62, Neg. LLF: 122.13765960291052
Iteration: 8, Func. Count: 70, Neg. LLF: 122.0972436680689
Iteration: 9, Func. Count: 78, Neg. LLF: 122.09512034832088
Iteration: 10, Func. Count: 86, Neg. LLF: 122.09482289288404
Iteration: 11, Func. Count: 94, Neg. LLF: 122.09471794700586
Iteration: 12, Func. Count: 102, Neg. LLF: 122.09471304538721
Iteration: 13, Func. Count: 109, Neg. LLF: 122.09471310542439
Optimization terminated successfully (Exit mode 0)
Current function value: 122.09471304538721
Iterations: 13
Function evaluations: 109
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 145.40958137106674
Iteration: 2, Func. Count: 20, Neg. LLF: 127.22084026664336
Iteration: 3, Func. Count: 29, Neg. LLF: 147.37533966804023
Iteration: 4, Func. Count: 40, Neg. LLF: 175.14558649969766
Iteration: 5, Func. Count: 50, Neg. LLF: 145.3358917005695
Iteration: 6, Func. Count: 62, Neg. LLF: 122.42343435171938
Iteration: 7, Func. Count: 71, Neg. LLF: 122.25501828762447
Iteration: 8, Func. Count: 80, Neg. LLF: 122.16662388198979
Iteration: 9, Func. Count: 89, Neg. LLF: 122.15269914881016
Iteration: 10, Func. Count: 98, Neg. LLF: 122.13280101652484
Iteration: 11, Func. Count: 107, Neg. LLF: 122.1085377492979
Iteration: 12, Func. Count: 116, Neg. LLF: 122.09959028982436
Iteration: 13, Func. Count: 125, Neg. LLF: 122.09561950258964
Iteration: 14, Func. Count: 134, Neg. LLF: 122.0947943050399
Iteration: 15, Func. Count: 143, Neg. LLF: 122.0947174985101
Iteration: 16, Func. Count: 152, Neg. LLF: 122.09471276763736
Iteration: 17, Func. Count: 160, Neg. LLF: 122.09471272627144
Optimization terminated successfully (Exit mode 0)
Current function value: 122.09471276763736
Iterations: 17
Function evaluations: 160
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 141.45391512742853
Iteration: 2, Func. Count: 22, Neg. LLF: 140.21613521373956
Iteration: 3, Func. Count: 33, Neg. LLF: 128.9232983640518
Iteration: 4, Func. Count: 44, Neg. LLF: 125.36274443351272
Iteration: 5, Func. Count: 55, Neg. LLF: 123.07307811321094
Iteration: 6, Func. Count: 65, Neg. LLF: 122.23965740110168
Iteration: 7, Func. Count: 75, Neg. LLF: 122.29456657236352
Iteration: 8, Func. Count: 86, Neg. LLF: 122.13068602594208
Iteration: 9, Func. Count: 96, Neg. LLF: 122.10667097284158
Iteration: 10, Func. Count: 106, Neg. LLF: 122.09670343952347
Iteration: 11, Func. Count: 116, Neg. LLF: 122.09490624911669
Iteration: 12, Func. Count: 126, Neg. LLF: 122.0947131199706
Iteration: 13, Func. Count: 135, Neg. LLF: 122.0947132056547
Optimization terminated successfully (Exit mode 0)
Current function value: 122.0947131199706
Iterations: 13
Function evaluations: 135
Gradient evaluations: 13
Iteration: 1, Func. Count: 12, Neg. LLF: 140.60246373966052
Iteration: 2, Func. Count: 24, Neg. LLF: 147.03607958666092
Iteration: 3, Func. Count: 36, Neg. LLF: 129.67143881481363
Iteration: 4, Func. Count: 48, Neg. LLF: 127.30500441523013
Iteration: 5, Func. Count: 60, Neg. LLF: 122.70221337920998
Iteration: 6, Func. Count: 71, Neg. LLF: 122.35434919310778
Iteration: 7, Func. Count: 82, Neg. LLF: 122.14733177697865
Iteration: 8, Func. Count: 93, Neg. LLF: 122.41550251624302
Iteration: 9, Func. Count: 105, Neg. LLF: 122.0955416427546
Iteration: 10, Func. Count: 116, Neg. LLF: 122.09477688566356
Iteration: 11, Func. Count: 127, Neg. LLF: 122.09471937154885
Iteration: 12, Func. Count: 138, Neg. LLF: 122.09471275629586
Iteration: 13, Func. Count: 148, Neg. LLF: 122.09471274394245
Optimization terminated successfully (Exit mode 0)
Current function value: 122.09471275629586
Iterations: 13
Function evaluations: 148
Gradient evaluations: 13
Iteration: 1, Func. Count: 13, Neg. LLF: 141.04947607315773
Iteration: 2, Func. Count: 26, Neg. LLF: 153.0158425072662
Iteration: 3, Func. Count: 39, Neg. LLF: 129.77560328105253
Iteration: 4, Func. Count: 52, Neg. LLF: 127.90501290092219
Iteration: 5, Func. Count: 65, Neg. LLF: 122.3465004381732
Iteration: 6, Func. Count: 77, Neg. LLF: 122.16186271118761
Iteration: 7, Func. Count: 89, Neg. LLF: 122.37443055423431
Iteration: 8, Func. Count: 102, Neg. LLF: 122.08063659637203
Iteration: 9, Func. Count: 114, Neg. LLF: 122.06524127391529
Iteration: 10, Func. Count: 126, Neg. LLF: 122.0648330842342
Iteration: 11, Func. Count: 138, Neg. LLF: 122.06480454471216
Iteration: 12, Func. Count: 150, Neg. LLF: 122.06480166274403
Iteration: 13, Func. Count: 161, Neg. LLF: 122.06480161158535
Optimization terminated successfully (Exit mode 0)
Current function value: 122.06480166274403
Iterations: 13
Function evaluations: 161
Gradient evaluations: 13
Iteration: 1, Func. Count: 6, Neg. LLF: 151.34643803826233
Iteration: 2, Func. Count: 12, Neg. LLF: 135.00798316997776
Iteration: 3, Func. Count: 18, Neg. LLF: 129.76075528255316
Iteration: 4, Func. Count: 23, Neg. LLF: 129.38497677151597
Iteration: 5, Func. Count: 28, Neg. LLF: 129.1184151175285
Iteration: 6, Func. Count: 33, Neg. LLF: 128.92316462655643
Iteration: 7, Func. Count: 38, Neg. LLF: 128.91573345439858
Iteration: 8, Func. Count: 43, Neg. LLF: 128.91482313015274
Iteration: 9, Func. Count: 48, Neg. LLF: 128.9148200538343
Iteration: 10, Func. Count: 52, Neg. LLF: 128.91482018600007
Optimization terminated successfully (Exit mode 0)
Current function value: 128.9148200538343
Iterations: 10
Function evaluations: 52
Gradient evaluations: 10
Iteration: 1, Func. Count: 7, Neg. LLF: 144.8680939900615
Iteration: 2, Func. Count: 14, Neg. LLF: 131.9022473885162
Iteration: 3, Func. Count: 21, Neg. LLF: 129.58037771074822
Iteration: 4, Func. Count: 27, Neg. LLF: 129.06677387494682
Iteration: 5, Func. Count: 33, Neg. LLF: 128.929204793473
Iteration: 6, Func. Count: 39, Neg. LLF: 128.91518508592318
Iteration: 7, Func. Count: 45, Neg. LLF: 128.9148360955498
Iteration: 8, Func. Count: 51, Neg. LLF: 128.91482705282138
Iteration: 9, Func. Count: 57, Neg. LLF: 128.9148200310855
Iteration: 10, Func. Count: 62, Neg. LLF: 128.9148201608054
Optimization terminated successfully (Exit mode 0)
Current function value: 128.9148200310855
Iterations: 10
Function evaluations: 62
Gradient evaluations: 10
Iteration: 1, Func. Count: 8, Neg. LLF: 143.35377805733953
Iteration: 2, Func. Count: 16, Neg. LLF: 132.21907774084076
Iteration: 3, Func. Count: 24, Neg. LLF: 129.69534626261347
Iteration: 4, Func. Count: 31, Neg. LLF: 129.0993676630408
Iteration: 5, Func. Count: 38, Neg. LLF: 128.95475538013332
Iteration: 6, Func. Count: 45, Neg. LLF: 128.93586540194772
Iteration: 7, Func. Count: 52, Neg. LLF: 128.91529501446965
Iteration: 8, Func. Count: 59, Neg. LLF: 128.9148243233934
Iteration: 9, Func. Count: 66, Neg. LLF: 128.9148200183639
Iteration: 10, Func. Count: 72, Neg. LLF: 128.91482018146985
Optimization terminated successfully (Exit mode 0)
Current function value: 128.9148200183639
Iterations: 10
Function evaluations: 72
Gradient evaluations: 10
Iteration: 1, Func. Count: 9, Neg. LLF: 143.01688948171633
Iteration: 2, Func. Count: 18, Neg. LLF: 131.93133450870636
Iteration: 3, Func. Count: 27, Neg. LLF: 129.509404927754
Iteration: 4, Func. Count: 35, Neg. LLF: 182.40398777536598
Iteration: 5, Func. Count: 44, Neg. LLF: 128.57024818404136
Iteration: 6, Func. Count: 52, Neg. LLF: 128.3431538051538
Iteration: 7, Func. Count: 60, Neg. LLF: 128.24416598251855
Iteration: 8, Func. Count: 68, Neg. LLF: 128.13342822332274
Iteration: 9, Func. Count: 76, Neg. LLF: 128.07145734671363
Iteration: 10, Func. Count: 84, Neg. LLF: 128.05417793147558
Iteration: 11, Func. Count: 92, Neg. LLF: 128.05341802953117
Iteration: 12, Func. Count: 100, Neg. LLF: 128.05335387792383
Iteration: 13, Func. Count: 107, Neg. LLF: 128.05335381826714
Optimization terminated successfully (Exit mode 0)
Current function value: 128.05335387792383
Iterations: 13
Function evaluations: 107
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 143.37522579403242
Iteration: 2, Func. Count: 20, Neg. LLF: 131.31409099019058
Iteration: 3, Func. Count: 29, Neg. LLF: 129.94935889732153
Iteration: 4, Func. Count: 38, Neg. LLF: 185.62486890627952
Iteration: 5, Func. Count: 48, Neg. LLF: 128.58655670554333
Iteration: 6, Func. Count: 57, Neg. LLF: 128.21964836077612
Iteration: 7, Func. Count: 66, Neg. LLF: 128.27663394693258
Iteration: 8, Func. Count: 76, Neg. LLF: 128.05462903085558
Iteration: 9, Func. Count: 85, Neg. LLF: 128.0533627566075
Iteration: 10, Func. Count: 94, Neg. LLF: 128.0533540470844
Iteration: 11, Func. Count: 102, Neg. LLF: 128.05335421348772
Optimization terminated successfully (Exit mode 0)
Current function value: 128.0533540470844
Iterations: 11
Function evaluations: 102
Gradient evaluations: 11
Iteration: 1, Func. Count: 7, Neg. LLF: 155.5942335165872
Iteration: 2, Func. Count: 14, Neg. LLF: 130.75368980211647
Iteration: 3, Func. Count: 20, Neg. LLF: 130.95876277930884
Iteration: 4, Func. Count: 27, Neg. LLF: 132.24980614194175
Iteration: 5, Func. Count: 34, Neg. LLF: 130.22356359593493
Iteration: 6, Func. Count: 41, Neg. LLF: 129.01141503190726
Iteration: 7, Func. Count: 47, Neg. LLF: 128.70634944252464
Iteration: 8, Func. Count: 53, Neg. LLF: 128.26434672836916
Iteration: 9, Func. Count: 59, Neg. LLF: 128.21733369215997
Iteration: 10, Func. Count: 65, Neg. LLF: 128.1969068468038
Iteration: 11, Func. Count: 71, Neg. LLF: 128.19433726614804
Iteration: 12, Func. Count: 77, Neg. LLF: 128.19430457655767
Iteration: 13, Func. Count: 82, Neg. LLF: 128.19430456308424
Optimization terminated successfully (Exit mode 0)
Current function value: 128.19430457655767
Iterations: 13
Function evaluations: 82
Gradient evaluations: 13
Iteration: 1, Func. Count: 8, Neg. LLF: 169.90521265963247
Iteration: 2, Func. Count: 16, Neg. LLF: 196.1490236042272
Iteration: 3, Func. Count: 24, Neg. LLF: 129.80997243826744
Iteration: 4, Func. Count: 32, Neg. LLF: 126.40582206788658
Iteration: 5, Func. Count: 39, Neg. LLF: 126.99592965825539
Iteration: 6, Func. Count: 47, Neg. LLF: 126.26503940054627
Iteration: 7, Func. Count: 54, Neg. LLF: 126.22066578617597
Iteration: 8, Func. Count: 61, Neg. LLF: 126.20962695952237
Iteration: 9, Func. Count: 68, Neg. LLF: 126.20955328911049
Iteration: 10, Func. Count: 75, Neg. LLF: 126.20955204934565
Iteration: 11, Func. Count: 81, Neg. LLF: 126.20955193906198
Optimization terminated successfully (Exit mode 0)
Current function value: 126.20955204934565
Iterations: 11
Function evaluations: 81
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 166.35270493781059
Iteration: 2, Func. Count: 18, Neg. LLF: 178.59344661451246
Iteration: 3, Func. Count: 27, Neg. LLF: 135.57818105463636
Iteration: 4, Func. Count: 36, Neg. LLF: 126.52435549825802
Iteration: 5, Func. Count: 44, Neg. LLF: 126.42817703764551
Iteration: 6, Func. Count: 52, Neg. LLF: 126.27162216170018
Iteration: 7, Func. Count: 60, Neg. LLF: 126.2136324454065
Iteration: 8, Func. Count: 68, Neg. LLF: 126.20995998126969
Iteration: 9, Func. Count: 76, Neg. LLF: 126.20956405309812
Iteration: 10, Func. Count: 84, Neg. LLF: 126.20955260821687
Iteration: 11, Func. Count: 92, Neg. LLF: 126.20955204135822
Optimization terminated successfully (Exit mode 0)
Current function value: 126.20955204135822
Iterations: 11
Function evaluations: 92
Gradient evaluations: 11
Iteration: 1, Func. Count: 10, Neg. LLF: 152.5034380174373
Iteration: 2, Func. Count: 20, Neg. LLF: 129.19785773140418
Iteration: 3, Func. Count: 30, Neg. LLF: 130.9207514312329
Iteration: 4, Func. Count: 40, Neg. LLF: 128.70823919171204
Iteration: 5, Func. Count: 50, Neg. LLF: 152.58355623604942
Iteration: 6, Func. Count: 60, Neg. LLF: 127.05675943037345
Iteration: 7, Func. Count: 69, Neg. LLF: 126.45426276085291
Iteration: 8, Func. Count: 78, Neg. LLF: 126.34295522759487
Iteration: 9, Func. Count: 87, Neg. LLF: 126.38024213735663
Iteration: 10, Func. Count: 97, Neg. LLF: 126.21813865858357
Iteration: 11, Func. Count: 106, Neg. LLF: 126.2064915808317
Iteration: 12, Func. Count: 115, Neg. LLF: 126.20487443676465
Iteration: 13, Func. Count: 124, Neg. LLF: 126.20471678639669
Iteration: 14, Func. Count: 133, Neg. LLF: 126.2047133856833
Iteration: 15, Func. Count: 141, Neg. LLF: 126.20471328084318
Optimization terminated successfully (Exit mode 0)
Current function value: 126.2047133856833
Iterations: 15
Function evaluations: 141
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 152.79979259023833
Iteration: 2, Func. Count: 22, Neg. LLF: 133.982462206191
Iteration: 3, Func. Count: 33, Neg. LLF: 127.43996640692286
Iteration: 4, Func. Count: 43, Neg. LLF: 126.3573543329979
Iteration: 5, Func. Count: 53, Neg. LLF: 131.45875433682014
Iteration: 6, Func. Count: 64, Neg. LLF: 125.66316982426325
Iteration: 7, Func. Count: 74, Neg. LLF: 125.65543740364396
Iteration: 8, Func. Count: 85, Neg. LLF: 125.60756563432739
Iteration: 9, Func. Count: 95, Neg. LLF: 125.59742897445834
Iteration: 10, Func. Count: 105, Neg. LLF: 125.59659656600951
Iteration: 11, Func. Count: 115, Neg. LLF: 125.59587763096324
Iteration: 12, Func. Count: 125, Neg. LLF: 125.59578461281082
Iteration: 13, Func. Count: 135, Neg. LLF: 125.59578162780947
Iteration: 14, Func. Count: 144, Neg. LLF: 125.59578154294321
Optimization terminated successfully (Exit mode 0)
Current function value: 125.59578162780947
Iterations: 14
Function evaluations: 144
Gradient evaluations: 14
Iteration: 1, Func. Count: 8, Neg. LLF: 160.3302635088054
Iteration: 2, Func. Count: 16, Neg. LLF: 130.6280437657802
Iteration: 3, Func. Count: 24, Neg. LLF: 124.01284871856318
Iteration: 4, Func. Count: 31, Neg. LLF: 129.60580805828857
Iteration: 5, Func. Count: 39, Neg. LLF: 144.79418636388075
Iteration: 6, Func. Count: 47, Neg. LLF: 124.05211832433247
Iteration: 7, Func. Count: 55, Neg. LLF: 138.3944323671758
Iteration: 8, Func. Count: 63, Neg. LLF: 123.06889715606756
Iteration: 9, Func. Count: 71, Neg. LLF: 122.30798381864078
Iteration: 10, Func. Count: 78, Neg. LLF: 122.30711251472314
Iteration: 11, Func. Count: 85, Neg. LLF: 122.30711065447933
Iteration: 12, Func. Count: 93, Neg. LLF: 122.30707825868453
Iteration: 13, Func. Count: 99, Neg. LLF: 122.30707823953874
Optimization terminated successfully (Exit mode 0)
Current function value: 122.30707825868453
Iterations: 13
Function evaluations: 99
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 169.56210035604397
Iteration: 2, Func. Count: 18, Neg. LLF: 166.36282675819066
Iteration: 3, Func. Count: 27, Neg. LLF: 129.5737035722089
Iteration: 4, Func. Count: 36, Neg. LLF: 133.2047867291011
Iteration: 5, Func. Count: 45, Neg. LLF: 136.34080585402603
Iteration: 6, Func. Count: 54, Neg. LLF: 124.25162544513589
Iteration: 7, Func. Count: 63, Neg. LLF: 122.85151908595255
Iteration: 8, Func. Count: 72, Neg. LLF: 123.1464965583097
Iteration: 9, Func. Count: 81, Neg. LLF: 122.15756862592706
Iteration: 10, Func. Count: 89, Neg. LLF: 122.12080946406647
Iteration: 11, Func. Count: 97, Neg. LLF: 122.28157388704203
Iteration: 12, Func. Count: 106, Neg. LLF: 122.11067256688838
Iteration: 13, Func. Count: 114, Neg. LLF: 122.10972283224376
Iteration: 14, Func. Count: 122, Neg. LLF: 122.10954679947356
Iteration: 15, Func. Count: 130, Neg. LLF: 122.10953902160166
Iteration: 16, Func. Count: 137, Neg. LLF: 122.10953897207551
Optimization terminated successfully (Exit mode 0)
Current function value: 122.10953902160166
Iterations: 16
Function evaluations: 137
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 164.161421271994
Iteration: 2, Func. Count: 20, Neg. LLF: 134.98953024129838
Iteration: 3, Func. Count: 30, Neg. LLF: 135.97380964570138
Iteration: 4, Func. Count: 40, Neg. LLF: 126.31394701686604
Iteration: 5, Func. Count: 50, Neg. LLF: 123.79578912081129
Iteration: 6, Func. Count: 60, Neg. LLF: 123.139935207115
Iteration: 7, Func. Count: 70, Neg. LLF: 122.4367510860202
Iteration: 8, Func. Count: 79, Neg. LLF: 122.33963231558783
Iteration: 9, Func. Count: 89, Neg. LLF: 133.70523914539666
Iteration: 10, Func. Count: 99, Neg. LLF: 122.28057378244169
Iteration: 11, Func. Count: 109, Neg. LLF: 122.11357047722278
Iteration: 12, Func. Count: 118, Neg. LLF: 122.11009746745238
Iteration: 13, Func. Count: 127, Neg. LLF: 122.10961804303662
Iteration: 14, Func. Count: 136, Neg. LLF: 122.10955496492822
Iteration: 15, Func. Count: 145, Neg. LLF: 122.1095407730813
Iteration: 16, Func. Count: 154, Neg. LLF: 122.10953888608192
Iteration: 17, Func. Count: 162, Neg. LLF: 122.1095389664874
Optimization terminated successfully (Exit mode 0)
Current function value: 122.10953888608192
Iterations: 17
Function evaluations: 162
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 161.29092479702518
Iteration: 2, Func. Count: 22, Neg. LLF: 141.92761485372174
Iteration: 3, Func. Count: 33, Neg. LLF: 128.58379632062454
Iteration: 4, Func. Count: 44, Neg. LLF: 142.86416661274436
Iteration: 5, Func. Count: 55, Neg. LLF: 122.72558635985246
Iteration: 6, Func. Count: 65, Neg. LLF: 122.40660430585227
Iteration: 7, Func. Count: 75, Neg. LLF: 122.75947684689098
Iteration: 8, Func. Count: 87, Neg. LLF: 126.15805607029597
Iteration: 9, Func. Count: 98, Neg. LLF: 122.16105818331093
Iteration: 10, Func. Count: 108, Neg. LLF: 122.12115622258545
Iteration: 11, Func. Count: 118, Neg. LLF: 122.11328470902109
Iteration: 12, Func. Count: 128, Neg. LLF: 122.11021963137246
Iteration: 13, Func. Count: 138, Neg. LLF: 122.10956695296882
Iteration: 14, Func. Count: 148, Neg. LLF: 122.10954687621508
Iteration: 15, Func. Count: 158, Neg. LLF: 122.10953967825036
Iteration: 16, Func. Count: 168, Neg. LLF: 122.10953886778478
Optimization terminated successfully (Exit mode 0)
Current function value: 122.10953886778478
Iterations: 16
Function evaluations: 168
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 138.39007459828042
Iteration: 2, Func. Count: 24, Neg. LLF: 169.3061175608624
Iteration: 3, Func. Count: 36, Neg. LLF: 133.07697864266606
Iteration: 4, Func. Count: 48, Neg. LLF: 124.85311085281988
Iteration: 5, Func. Count: 60, Neg. LLF: 124.24684278097831
Iteration: 6, Func. Count: 72, Neg. LLF: 122.19105324994302
Iteration: 7, Func. Count: 83, Neg. LLF: 122.83645643022824
Iteration: 8, Func. Count: 96, Neg. LLF: 124.73240112092405
Iteration: 9, Func. Count: 109, Neg. LLF: 122.0950548654154
Iteration: 10, Func. Count: 120, Neg. LLF: 122.13882435438697
Iteration: 11, Func. Count: 132, Neg. LLF: 122.06700165392485
Iteration: 12, Func. Count: 143, Neg. LLF: 122.06457191767188
Iteration: 13, Func. Count: 154, Neg. LLF: 122.0644906777008
Iteration: 14, Func. Count: 165, Neg. LLF: 122.06444757725106
Iteration: 15, Func. Count: 175, Neg. LLF: 122.06444752596738
Optimization terminated successfully (Exit mode 0)
Current function value: 122.06444757725106
Iterations: 15
Function evaluations: 175
Gradient evaluations: 15
Iteration: 1, Func. Count: 9, Neg. LLF: 157.4434099480135
Iteration: 2, Func. Count: 18, Neg. LLF: 133.25431024728277
Iteration: 3, Func. Count: 27, Neg. LLF: 126.57072692358037
Iteration: 4, Func. Count: 36, Neg. LLF: 122.61870030422395
Iteration: 5, Func. Count: 44, Neg. LLF: 122.63620558392151
Iteration: 6, Func. Count: 53, Neg. LLF: 124.42178779139456
Iteration: 7, Func. Count: 63, Neg. LLF: 139.22568824318628
Iteration: 8, Func. Count: 72, Neg. LLF: 122.10484864041663
Iteration: 9, Func. Count: 80, Neg. LLF: 122.12283052777092
Iteration: 10, Func. Count: 89, Neg. LLF: 122.08875822232365
Iteration: 11, Func. Count: 97, Neg. LLF: 122.0879400610279
Iteration: 12, Func. Count: 105, Neg. LLF: 122.08789517567402
Iteration: 13, Func. Count: 113, Neg. LLF: 122.08789446342648
Optimization terminated successfully (Exit mode 0)
Current function value: 122.08789446342648
Iterations: 13
Function evaluations: 113
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 166.55167742369184
Iteration: 2, Func. Count: 21, Neg. LLF: 311.3964352073271
Iteration: 3, Func. Count: 31, Neg. LLF: 125.54004154474127
Iteration: 4, Func. Count: 40, Neg. LLF: 124.47544141190116
Iteration: 5, Func. Count: 49, Neg. LLF: 122.6677539554799
Iteration: 6, Func. Count: 58, Neg. LLF: 124.67896445992713
Iteration: 7, Func. Count: 68, Neg. LLF: 122.73286321881524
Iteration: 8, Func. Count: 78, Neg. LLF: 122.12517102367629
Iteration: 9, Func. Count: 87, Neg. LLF: 122.47438304590905
Iteration: 10, Func. Count: 98, Neg. LLF: 124.19604997099366
Iteration: 11, Func. Count: 108, Neg. LLF: 122.09112708771237
Iteration: 12, Func. Count: 117, Neg. LLF: 122.08842113797299
Iteration: 13, Func. Count: 126, Neg. LLF: 122.08822874702886
Iteration: 14, Func. Count: 135, Neg. LLF: 122.08793898502658
Iteration: 15, Func. Count: 144, Neg. LLF: 122.08789959744307
Iteration: 16, Func. Count: 153, Neg. LLF: 122.0878945587827
Iteration: 17, Func. Count: 161, Neg. LLF: 122.08789451809929
Optimization terminated successfully (Exit mode 0)
Current function value: 122.0878945587827
Iterations: 17
Function evaluations: 161
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 165.25937471239953
Iteration: 2, Func. Count: 23, Neg. LLF: 175.23315416962916
Iteration: 3, Func. Count: 34, Neg. LLF: 126.13303109872838
Iteration: 4, Func. Count: 45, Neg. LLF: 127.6638651595519
Iteration: 5, Func. Count: 56, Neg. LLF: 126.13380342735745
Iteration: 6, Func. Count: 67, Neg. LLF: 123.99106783807603
Iteration: 7, Func. Count: 78, Neg. LLF: 127.65175404374213
Iteration: 8, Func. Count: 89, Neg. LLF: 122.7804367855343
Iteration: 9, Func. Count: 100, Neg. LLF: 122.19990829754583
Iteration: 10, Func. Count: 110, Neg. LLF: 122.16292859507575
Iteration: 11, Func. Count: 120, Neg. LLF: 123.05869288368189
Iteration: 12, Func. Count: 132, Neg. LLF: 122.097938648293
Iteration: 13, Func. Count: 142, Neg. LLF: 122.08890548115178
Iteration: 14, Func. Count: 152, Neg. LLF: 122.0879427362074
Iteration: 15, Func. Count: 162, Neg. LLF: 122.0878969297901
Iteration: 16, Func. Count: 172, Neg. LLF: 122.08789452067106
Iteration: 17, Func. Count: 181, Neg. LLF: 122.0878946122449
Optimization terminated successfully (Exit mode 0)
Current function value: 122.08789452067106
Iterations: 17
Function evaluations: 181
Gradient evaluations: 17
Iteration: 1, Func. Count: 12, Neg. LLF: 146.04973875980087
Iteration: 2, Func. Count: 24, Neg. LLF: 128.80280775659992
Iteration: 3, Func. Count: 36, Neg. LLF: 124.95119435093204
Iteration: 4, Func. Count: 47, Neg. LLF: 123.7949076336125
Iteration: 5, Func. Count: 58, Neg. LLF: 137.7354173198977
Iteration: 6, Func. Count: 72, Neg. LLF: 125.59127985211653
Iteration: 7, Func. Count: 84, Neg. LLF: 122.40128405460743
Iteration: 8, Func. Count: 95, Neg. LLF: 143.27408546290994
Iteration: 9, Func. Count: 108, Neg. LLF: 122.92627050898516
Iteration: 10, Func. Count: 120, Neg. LLF: 122.09516767589088
Iteration: 11, Func. Count: 131, Neg. LLF: 122.09081596241647
Iteration: 12, Func. Count: 142, Neg. LLF: 122.08918193516001
Iteration: 13, Func. Count: 153, Neg. LLF: 122.08808126576963
Iteration: 14, Func. Count: 164, Neg. LLF: 122.08790564700607
Iteration: 15, Func. Count: 175, Neg. LLF: 122.08789491813097
Iteration: 16, Func. Count: 185, Neg. LLF: 122.0878949093548
Optimization terminated successfully (Exit mode 0)
Current function value: 122.08789491813097
Iterations: 16
Function evaluations: 185
Gradient evaluations: 16
Iteration: 1, Func. Count: 13, Neg. LLF: 146.734626165156
Iteration: 2, Func. Count: 26, Neg. LLF: 129.71519306939297
Iteration: 3, Func. Count: 39, Neg. LLF: 126.5318447850682
Iteration: 4, Func. Count: 52, Neg. LLF: 135.1844348291743
Iteration: 5, Func. Count: 65, Neg. LLF: 128.6647885157975
Iteration: 6, Func. Count: 78, Neg. LLF: 123.24791756082233
Iteration: 7, Func. Count: 91, Neg. LLF: 122.68496663750692
Iteration: 8, Func. Count: 104, Neg. LLF: 122.09298941132334
Iteration: 9, Func. Count: 116, Neg. LLF: 122.091834878271
Iteration: 10, Func. Count: 129, Neg. LLF: 122.63578042821794
Iteration: 11, Func. Count: 143, Neg. LLF: 122.35659558292565
Iteration: 12, Func. Count: 156, Neg. LLF: 122.06489297198236
Iteration: 13, Func. Count: 168, Neg. LLF: 122.06448465263415
Iteration: 14, Func. Count: 180, Neg. LLF: 122.06444932073734
Iteration: 15, Func. Count: 192, Neg. LLF: 122.06444762617521
Iteration: 16, Func. Count: 203, Neg. LLF: 122.06444757490856
Optimization terminated successfully (Exit mode 0)
Current function value: 122.06444762617521
Iterations: 16
Function evaluations: 203
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 155.3371769422696
Iteration: 2, Func. Count: 20, Neg. LLF: 132.56356838393276
Iteration: 3, Func. Count: 30, Neg. LLF: 128.05866601442568
Iteration: 4, Func. Count: 40, Neg. LLF: 122.94537668869702
Iteration: 5, Func. Count: 49, Neg. LLF: 122.61363440214855
Iteration: 6, Func. Count: 58, Neg. LLF: 126.72109960330766
Iteration: 7, Func. Count: 69, Neg. LLF: 122.25551737040723
Iteration: 8, Func. Count: 78, Neg. LLF: 123.2643881889405
Iteration: 9, Func. Count: 89, Neg. LLF: 126.12461990626348
Iteration: 10, Func. Count: 99, Neg. LLF: 122.08920771801479
Iteration: 11, Func. Count: 108, Neg. LLF: 122.08801329857009
Iteration: 12, Func. Count: 117, Neg. LLF: 122.08790164051958
Iteration: 13, Func. Count: 126, Neg. LLF: 122.0878944309638
Iteration: 14, Func. Count: 134, Neg. LLF: 122.08789449427348
Optimization terminated successfully (Exit mode 0)
Current function value: 122.0878944309638
Iterations: 14
Function evaluations: 134
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 165.80026484755783
Iteration: 2, Func. Count: 23, Neg. LLF: 1177.339143312405
Iteration: 3, Func. Count: 34, Neg. LLF: 125.64760335381872
Iteration: 4, Func. Count: 44, Neg. LLF: 124.88510030801022
Iteration: 5, Func. Count: 54, Neg. LLF: 123.6063360399664
Iteration: 6, Func. Count: 64, Neg. LLF: 122.48528299807596
Iteration: 7, Func. Count: 74, Neg. LLF: 142.2743865814656
Iteration: 8, Func. Count: 86, Neg. LLF: 165.9712517219478
Iteration: 9, Func. Count: 98, Neg. LLF: 122.14061817600502
Iteration: 10, Func. Count: 108, Neg. LLF: 122.12339500633907
Iteration: 11, Func. Count: 118, Neg. LLF: 122.09798534541548
Iteration: 12, Func. Count: 128, Neg. LLF: 122.09198184999822
Iteration: 13, Func. Count: 138, Neg. LLF: 122.08916599768274
Iteration: 14, Func. Count: 148, Neg. LLF: 122.08862109908472
Iteration: 15, Func. Count: 158, Neg. LLF: 122.08803227667866
Iteration: 16, Func. Count: 168, Neg. LLF: 122.0879387820739
Iteration: 17, Func. Count: 178, Neg. LLF: 122.08789566817482
Iteration: 18, Func. Count: 188, Neg. LLF: 122.08789446321394
Iteration: 19, Func. Count: 197, Neg. LLF: 122.08789442247982
Optimization terminated successfully (Exit mode 0)
Current function value: 122.08789446321394
Iterations: 19
Function evaluations: 197
Gradient evaluations: 19
Iteration: 1, Func. Count: 12, Neg. LLF: 142.95032375016063
Iteration: 2, Func. Count: 24, Neg. LLF: 133.50860836662105
Iteration: 3, Func. Count: 36, Neg. LLF: 126.07592597883746
Iteration: 4, Func. Count: 47, Neg. LLF: 139.66591692499208
Iteration: 5, Func. Count: 59, Neg. LLF: 134.285344192708
Iteration: 6, Func. Count: 73, Neg. LLF: 123.0310970782003
Iteration: 7, Func. Count: 84, Neg. LLF: 2329.182595805255
Iteration: 8, Func. Count: 96, Neg. LLF: 125.79099470755385
Iteration: 9, Func. Count: 109, Neg. LLF: 122.38991004132089
Iteration: 10, Func. Count: 120, Neg. LLF: 122.12095123205916
Iteration: 11, Func. Count: 131, Neg. LLF: 122.09446296080544
Iteration: 12, Func. Count: 142, Neg. LLF: 122.08848260286068
Iteration: 13, Func. Count: 153, Neg. LLF: 122.08793798472072
Iteration: 14, Func. Count: 164, Neg. LLF: 122.08790235513989
Iteration: 15, Func. Count: 175, Neg. LLF: 122.08789674078535
Iteration: 16, Func. Count: 186, Neg. LLF: 122.08789478461954
Iteration: 17, Func. Count: 196, Neg. LLF: 122.08789487613599
Optimization terminated successfully (Exit mode 0)
Current function value: 122.08789478461954
Iterations: 17
Function evaluations: 196
Gradient evaluations: 17
Iteration: 1, Func. Count: 13, Neg. LLF: 144.88345259391932
Iteration: 2, Func. Count: 26, Neg. LLF: 129.0320267127085
Iteration: 3, Func. Count: 39, Neg. LLF: 126.23902380410748
Iteration: 4, Func. Count: 51, Neg. LLF: 122.89025719558228
Iteration: 5, Func. Count: 63, Neg. LLF: 127.36017544941265
Iteration: 6, Func. Count: 77, Neg. LLF: 122.51391903390407
Iteration: 7, Func. Count: 89, Neg. LLF: 124.66565034087819
Iteration: 8, Func. Count: 102, Neg. LLF: 133.7234693699054
Iteration: 9, Func. Count: 117, Neg. LLF: 123.89137031241938
Iteration: 10, Func. Count: 130, Neg. LLF: 122.08948562996636
Iteration: 11, Func. Count: 142, Neg. LLF: 122.08807941703034
Iteration: 12, Func. Count: 154, Neg. LLF: 122.08794097511391
Iteration: 13, Func. Count: 166, Neg. LLF: 122.08790470672139
Iteration: 14, Func. Count: 178, Neg. LLF: 122.08789469581674
Iteration: 15, Func. Count: 189, Neg. LLF: 122.08789468704903
Optimization terminated successfully (Exit mode 0)
Current function value: 122.08789469581674
Iterations: 15
Function evaluations: 189
Gradient evaluations: 15
Iteration: 1, Func. Count: 14, Neg. LLF: 145.4542982536428
Iteration: 2, Func. Count: 28, Neg. LLF: 130.224108755626
Iteration: 3, Func. Count: 42, Neg. LLF: 125.65914112410545
Iteration: 4, Func. Count: 55, Neg. LLF: 122.83029025908617
Iteration: 5, Func. Count: 68, Neg. LLF: 126.35132962370339
Iteration: 6, Func. Count: 83, Neg. LLF: 122.2647621755902
Iteration: 7, Func. Count: 96, Neg. LLF: 122.10311615815932
Iteration: 8, Func. Count: 109, Neg. LLF: 170.8645922257434
Iteration: 9, Func. Count: 124, Neg. LLF: 122.29816369131503
Iteration: 10, Func. Count: 138, Neg. LLF: 122.07563113297239
Iteration: 11, Func. Count: 152, Neg. LLF: 122.06472242037292
Iteration: 12, Func. Count: 165, Neg. LLF: 122.06445224445996
Iteration: 13, Func. Count: 178, Neg. LLF: 122.06444764217392
Iteration: 14, Func. Count: 190, Neg. LLF: 122.06444759090085
Optimization terminated successfully (Exit mode 0)
Current function value: 122.06444764217392
Iterations: 14
Function evaluations: 190
Gradient evaluations: 14
Iteration: 1, Func. Count: 7, Neg. LLF: 149.0663194788559
Iteration: 2, Func. Count: 14, Neg. LLF: 139.9164268243836
Iteration: 3, Func. Count: 21, Neg. LLF: 129.8096861812381
Iteration: 4, Func. Count: 27, Neg. LLF: 129.35611168522107
Iteration: 5, Func. Count: 33, Neg. LLF: 129.00146849162442
Iteration: 6, Func. Count: 39, Neg. LLF: 128.91993794323807
Iteration: 7, Func. Count: 45, Neg. LLF: 128.91489998240465
Iteration: 8, Func. Count: 51, Neg. LLF: 128.91482042016128
Iteration: 9, Func. Count: 56, Neg. LLF: 128.91482059049247
Optimization terminated successfully (Exit mode 0)
Current function value: 128.91482042016128
Iterations: 9
Function evaluations: 56
Gradient evaluations: 9
Iteration: 1, Func. Count: 8, Neg. LLF: 148.27433998029267
Iteration: 2, Func. Count: 16, Neg. LLF: 139.3423951321554
Iteration: 3, Func. Count: 24, Neg. LLF: 130.95137070672635
Iteration: 4, Func. Count: 31, Neg. LLF: 129.8402674594239
Iteration: 5, Func. Count: 38, Neg. LLF: 128.97723531253166
Iteration: 6, Func. Count: 45, Neg. LLF: 128.9171320820333
Iteration: 7, Func. Count: 52, Neg. LLF: 128.91581578260121
Iteration: 8, Func. Count: 59, Neg. LLF: 128.9148273872956
Iteration: 9, Func. Count: 66, Neg. LLF: 128.91482011956097
Iteration: 10, Func. Count: 72, Neg. LLF: 128.91482024924358
Optimization terminated successfully (Exit mode 0)
Current function value: 128.91482011956097
Iterations: 10
Function evaluations: 72
Gradient evaluations: 10
Iteration: 1, Func. Count: 9, Neg. LLF: 140.94627836080642
Iteration: 2, Func. Count: 18, Neg. LLF: 136.610152268261
Iteration: 3, Func. Count: 27, Neg. LLF: 129.89497306600555
Iteration: 4, Func. Count: 35, Neg. LLF: 129.3757380059774
Iteration: 5, Func. Count: 43, Neg. LLF: 129.0954574866713
Iteration: 6, Func. Count: 51, Neg. LLF: 129.05208542998278
Iteration: 7, Func. Count: 59, Neg. LLF: 128.94105002681817
Iteration: 8, Func. Count: 67, Neg. LLF: 128.91697876602322
Iteration: 9, Func. Count: 75, Neg. LLF: 128.91482894392354
Iteration: 10, Func. Count: 83, Neg. LLF: 128.914820047189
Iteration: 11, Func. Count: 90, Neg. LLF: 128.91482021030666
Optimization terminated successfully (Exit mode 0)
Current function value: 128.914820047189
Iterations: 11
Function evaluations: 90
Gradient evaluations: 11
Iteration: 1, Func. Count: 10, Neg. LLF: 141.00777649796262
Iteration: 2, Func. Count: 20, Neg. LLF: 136.7349233354888
Iteration: 3, Func. Count: 30, Neg. LLF: 129.7468463345487
Iteration: 4, Func. Count: 39, Neg. LLF: 146.73093028074095
Iteration: 5, Func. Count: 49, Neg. LLF: 128.90212511684786
Iteration: 6, Func. Count: 58, Neg. LLF: 128.51630153031948
Iteration: 7, Func. Count: 67, Neg. LLF: 128.37150913986244
Iteration: 8, Func. Count: 76, Neg. LLF: 128.23145992351405
Iteration: 9, Func. Count: 85, Neg. LLF: 128.13369876102766
Iteration: 10, Func. Count: 94, Neg. LLF: 128.06759963789506
Iteration: 11, Func. Count: 103, Neg. LLF: 128.0536723710892
Iteration: 12, Func. Count: 112, Neg. LLF: 128.05335771412342
Iteration: 13, Func. Count: 121, Neg. LLF: 128.0533546808236
Iteration: 14, Func. Count: 130, Neg. LLF: 128.05335421124207
Optimization terminated successfully (Exit mode 0)
Current function value: 128.05335421124207
Iterations: 14
Function evaluations: 130
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 141.36184602996192
Iteration: 2, Func. Count: 22, Neg. LLF: 136.17248268927187
Iteration: 3, Func. Count: 33, Neg. LLF: 129.70116986406808
Iteration: 4, Func. Count: 43, Neg. LLF: 146.4724149389283
Iteration: 5, Func. Count: 54, Neg. LLF: 128.6826055039633
Iteration: 6, Func. Count: 64, Neg. LLF: 128.3558654988732
Iteration: 7, Func. Count: 74, Neg. LLF: 128.23528252422088
Iteration: 8, Func. Count: 84, Neg. LLF: 128.12821786153273
Iteration: 9, Func. Count: 94, Neg. LLF: 128.0627037739956
Iteration: 10, Func. Count: 104, Neg. LLF: 128.05368101148093
Iteration: 11, Func. Count: 114, Neg. LLF: 128.05336023516685
Iteration: 12, Func. Count: 124, Neg. LLF: 128.05335380339858
Iteration: 13, Func. Count: 133, Neg. LLF: 128.05335396982662
Optimization terminated successfully (Exit mode 0)
Current function value: 128.05335380339858
Iterations: 13
Function evaluations: 133
Gradient evaluations: 13
Iteration: 1, Func. Count: 8, Neg. LLF: 156.0047525565899
Iteration: 2, Func. Count: 16, Neg. LLF: 132.30199832652627
Iteration: 3, Func. Count: 24, Neg. LLF: 131.17159199586297
Iteration: 4, Func. Count: 32, Neg. LLF: 129.91230957252404
Iteration: 5, Func. Count: 39, Neg. LLF: 129.6520855501591
Iteration: 6, Func. Count: 46, Neg. LLF: 129.30586318173147
Iteration: 7, Func. Count: 53, Neg. LLF: 131.78788147767833
Iteration: 8, Func. Count: 61, Neg. LLF: 144.72625481439735
Iteration: 9, Func. Count: 69, Neg. LLF: 128.5653245543952
Iteration: 10, Func. Count: 76, Neg. LLF: 128.2360451705316
Iteration: 11, Func. Count: 83, Neg. LLF: 128.20695257758285
Iteration: 12, Func. Count: 90, Neg. LLF: 128.19561968803012
Iteration: 13, Func. Count: 97, Neg. LLF: 128.1943345519842
Iteration: 14, Func. Count: 104, Neg. LLF: 128.19430524184574
Iteration: 15, Func. Count: 111, Neg. LLF: 128.19430430192307
Optimization terminated successfully (Exit mode 0)
Current function value: 128.19430430192307
Iterations: 15
Function evaluations: 111
Gradient evaluations: 15
Iteration: 1, Func. Count: 9, Neg. LLF: 169.63306979991123
Iteration: 2, Func. Count: 18, Neg. LLF: 198.96994884155242
Iteration: 3, Func. Count: 27, Neg. LLF: 129.70161267465699
Iteration: 4, Func. Count: 36, Neg. LLF: 126.40310864360082
Iteration: 5, Func. Count: 44, Neg. LLF: 127.33005685144927
Iteration: 6, Func. Count: 53, Neg. LLF: 126.27506263494237
Iteration: 7, Func. Count: 61, Neg. LLF: 126.22862827222207
Iteration: 8, Func. Count: 69, Neg. LLF: 126.21106262467127
Iteration: 9, Func. Count: 77, Neg. LLF: 126.20956503834611
Iteration: 10, Func. Count: 85, Neg. LLF: 126.20955217178668
Iteration: 11, Func. Count: 92, Neg. LLF: 126.20955206159627
Optimization terminated successfully (Exit mode 0)
Current function value: 126.20955217178668
Iterations: 11
Function evaluations: 92
Gradient evaluations: 11
Iteration: 1, Func. Count: 10, Neg. LLF: 166.20340264532547
Iteration: 2, Func. Count: 20, Neg. LLF: 180.08368197336173
Iteration: 3, Func. Count: 30, Neg. LLF: 135.80093289861574
Iteration: 4, Func. Count: 40, Neg. LLF: 126.53093386930938
Iteration: 5, Func. Count: 49, Neg. LLF: 126.43654238291944
Iteration: 6, Func. Count: 58, Neg. LLF: 126.27459501918672
Iteration: 7, Func. Count: 67, Neg. LLF: 126.2137458501516
Iteration: 8, Func. Count: 76, Neg. LLF: 126.20999882045072
Iteration: 9, Func. Count: 85, Neg. LLF: 126.20956452908331
Iteration: 10, Func. Count: 94, Neg. LLF: 126.2095525937271
Iteration: 11, Func. Count: 103, Neg. LLF: 126.20955204459561
Optimization terminated successfully (Exit mode 0)
Current function value: 126.20955204459561
Iterations: 11
Function evaluations: 103
Gradient evaluations: 11
Iteration: 1, Func. Count: 11, Neg. LLF: 152.40180490092905
Iteration: 2, Func. Count: 22, Neg. LLF: 129.2627322219495
Iteration: 3, Func. Count: 33, Neg. LLF: 131.04954544380956
Iteration: 4, Func. Count: 44, Neg. LLF: 128.6097461355908
Iteration: 5, Func. Count: 55, Neg. LLF: 152.2888632534048
Iteration: 6, Func. Count: 66, Neg. LLF: 127.00532836947865
Iteration: 7, Func. Count: 76, Neg. LLF: 126.44451086226343
Iteration: 8, Func. Count: 86, Neg. LLF: 126.335615411368
Iteration: 9, Func. Count: 96, Neg. LLF: 126.3472620739768
Iteration: 10, Func. Count: 107, Neg. LLF: 126.21614058322174
Iteration: 11, Func. Count: 117, Neg. LLF: 126.20587163734075
Iteration: 12, Func. Count: 127, Neg. LLF: 126.20481940598088
Iteration: 13, Func. Count: 137, Neg. LLF: 126.2047155400546
Iteration: 14, Func. Count: 147, Neg. LLF: 126.20471338917959
Iteration: 15, Func. Count: 156, Neg. LLF: 126.20471328434114
Optimization terminated successfully (Exit mode 0)
Current function value: 126.20471338917959
Iterations: 15
Function evaluations: 156
Gradient evaluations: 15
Iteration: 1, Func. Count: 12, Neg. LLF: 152.6986437932198
Iteration: 2, Func. Count: 24, Neg. LLF: 134.13394468399179
Iteration: 3, Func. Count: 36, Neg. LLF: 127.50370084894342
Iteration: 4, Func. Count: 47, Neg. LLF: 126.37632356798909
Iteration: 5, Func. Count: 58, Neg. LLF: 131.41722566175466
Iteration: 6, Func. Count: 70, Neg. LLF: 125.64299677111796
Iteration: 7, Func. Count: 81, Neg. LLF: 125.640110755891
Iteration: 8, Func. Count: 93, Neg. LLF: 125.60355465946333
Iteration: 9, Func. Count: 104, Neg. LLF: 125.59698734827498
Iteration: 10, Func. Count: 115, Neg. LLF: 125.59628380236333
Iteration: 11, Func. Count: 126, Neg. LLF: 125.59580752809066
Iteration: 12, Func. Count: 137, Neg. LLF: 125.59578196587915
Iteration: 13, Func. Count: 147, Neg. LLF: 125.5957818810225
Optimization terminated successfully (Exit mode 0)
Current function value: 125.59578196587915
Iterations: 13
Function evaluations: 147
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 160.75770444898455
Iteration: 2, Func. Count: 18, Neg. LLF: 132.05956669712714
Iteration: 3, Func. Count: 27, Neg. LLF: 126.48447754137511
Iteration: 4, Func. Count: 36, Neg. LLF: 122.75716346935187
Iteration: 5, Func. Count: 44, Neg. LLF: 122.38809615453324
Iteration: 6, Func. Count: 52, Neg. LLF: 122.68104037839834
Iteration: 7, Func. Count: 62, Neg. LLF: 122.65414407469186
Iteration: 8, Func. Count: 71, Neg. LLF: 122.3082026198333
Iteration: 9, Func. Count: 79, Neg. LLF: 122.30714546352931
Iteration: 10, Func. Count: 87, Neg. LLF: 122.30708189671378
Iteration: 11, Func. Count: 95, Neg. LLF: 122.30707820806212
Iteration: 12, Func. Count: 102, Neg. LLF: 122.30707818890737
Optimization terminated successfully (Exit mode 0)
Current function value: 122.30707820806212
Iterations: 12
Function evaluations: 102
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 169.25316821831714
Iteration: 2, Func. Count: 20, Neg. LLF: 168.8686900704945
Iteration: 3, Func. Count: 30, Neg. LLF: 129.54650819538742
Iteration: 4, Func. Count: 40, Neg. LLF: 133.20785196061604
Iteration: 5, Func. Count: 50, Neg. LLF: 136.22482446710063
Iteration: 6, Func. Count: 60, Neg. LLF: 124.18803549231062
Iteration: 7, Func. Count: 70, Neg. LLF: 122.90294015130075
Iteration: 8, Func. Count: 80, Neg. LLF: 123.21060935590744
Iteration: 9, Func. Count: 90, Neg. LLF: 122.18940752867834
Iteration: 10, Func. Count: 99, Neg. LLF: 122.1755513886919
Iteration: 11, Func. Count: 109, Neg. LLF: 122.13210362902774
Iteration: 12, Func. Count: 119, Neg. LLF: 122.11020421423649
Iteration: 13, Func. Count: 128, Neg. LLF: 122.1095699704768
Iteration: 14, Func. Count: 137, Neg. LLF: 122.1095422718777
Iteration: 15, Func. Count: 146, Neg. LLF: 122.10953906602069
Iteration: 16, Func. Count: 154, Neg. LLF: 122.10953901648799
Optimization terminated successfully (Exit mode 0)
Current function value: 122.10953906602069
Iterations: 16
Function evaluations: 154
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 164.17664372814556
Iteration: 2, Func. Count: 22, Neg. LLF: 135.25054597627616
Iteration: 3, Func. Count: 33, Neg. LLF: 135.92982040321496
Iteration: 4, Func. Count: 44, Neg. LLF: 126.50384803110373
Iteration: 5, Func. Count: 55, Neg. LLF: 123.83039795367561
Iteration: 6, Func. Count: 66, Neg. LLF: 123.20696321507083
Iteration: 7, Func. Count: 77, Neg. LLF: 122.43909180166231
Iteration: 8, Func. Count: 87, Neg. LLF: 122.33301082073052
Iteration: 9, Func. Count: 98, Neg. LLF: 133.2456235078508
Iteration: 10, Func. Count: 109, Neg. LLF: 122.23206497080916
Iteration: 11, Func. Count: 120, Neg. LLF: 122.11318475903448
Iteration: 12, Func. Count: 130, Neg. LLF: 122.10996835821285
Iteration: 13, Func. Count: 140, Neg. LLF: 122.10960906572211
Iteration: 14, Func. Count: 150, Neg. LLF: 122.10955237158852
Iteration: 15, Func. Count: 160, Neg. LLF: 122.10954027572501
Iteration: 16, Func. Count: 170, Neg. LLF: 122.1095388818348
Iteration: 17, Func. Count: 179, Neg. LLF: 122.1095389622423
Optimization terminated successfully (Exit mode 0)
Current function value: 122.1095388818348
Iterations: 17
Function evaluations: 179
Gradient evaluations: 17
Iteration: 1, Func. Count: 12, Neg. LLF: 137.75938958332893
Iteration: 2, Func. Count: 24, Neg. LLF: 171.218920796263
Iteration: 3, Func. Count: 36, Neg. LLF: 132.83564828228774
Iteration: 4, Func. Count: 48, Neg. LLF: 136.0190726586804
Iteration: 5, Func. Count: 60, Neg. LLF: 127.37633632429569
Iteration: 6, Func. Count: 72, Neg. LLF: 122.69505532905681
Iteration: 7, Func. Count: 83, Neg. LLF: 122.23799999970572
Iteration: 8, Func. Count: 94, Neg. LLF: 123.16774505481017
Iteration: 9, Func. Count: 107, Neg. LLF: 122.11386595889859
Iteration: 10, Func. Count: 118, Neg. LLF: 122.10974796646302
Iteration: 11, Func. Count: 129, Neg. LLF: 122.10984060150689
Iteration: 12, Func. Count: 141, Neg. LLF: 122.10954667550885
Iteration: 13, Func. Count: 152, Neg. LLF: 122.10953906093107
Iteration: 14, Func. Count: 162, Neg. LLF: 122.10953903675383
Optimization terminated successfully (Exit mode 0)
Current function value: 122.10953906093107
Iterations: 14
Function evaluations: 162
Gradient evaluations: 14
Iteration: 1, Func. Count: 13, Neg. LLF: 138.341019907194
Iteration: 2, Func. Count: 26, Neg. LLF: 170.24309708588316
Iteration: 3, Func. Count: 39, Neg. LLF: 132.96847215234183
Iteration: 4, Func. Count: 52, Neg. LLF: 124.70532846837521
Iteration: 5, Func. Count: 65, Neg. LLF: 124.12339475031285
Iteration: 6, Func. Count: 78, Neg. LLF: 122.20773319024228
Iteration: 7, Func. Count: 90, Neg. LLF: 122.3357959786748
Iteration: 8, Func. Count: 103, Neg. LLF: 122.97620659025549
Iteration: 9, Func. Count: 117, Neg. LLF: 130.27377852325853
Iteration: 10, Func. Count: 130, Neg. LLF: 122.08224553742089
Iteration: 11, Func. Count: 142, Neg. LLF: 122.07464750321498
Iteration: 12, Func. Count: 154, Neg. LLF: 122.06479059439224
Iteration: 13, Func. Count: 166, Neg. LLF: 122.06446666214885
Iteration: 14, Func. Count: 178, Neg. LLF: 122.06444788936584
Iteration: 15, Func. Count: 189, Neg. LLF: 122.06444783801214
Optimization terminated successfully (Exit mode 0)
Current function value: 122.06444788936584
Iterations: 15
Function evaluations: 189
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 157.31482622384908
Iteration: 2, Func. Count: 20, Neg. LLF: 134.963882284527
Iteration: 3, Func. Count: 30, Neg. LLF: 128.10610774723315
Iteration: 4, Func. Count: 40, Neg. LLF: 122.75783257607397
Iteration: 5, Func. Count: 49, Neg. LLF: 122.44610246631518
Iteration: 6, Func. Count: 58, Neg. LLF: 126.00370686993935
Iteration: 7, Func. Count: 69, Neg. LLF: 122.2650449931031
Iteration: 8, Func. Count: 78, Neg. LLF: 292.29255117370235
Iteration: 9, Func. Count: 89, Neg. LLF: 123.03101848886298
Iteration: 10, Func. Count: 99, Neg. LLF: 122.08919558378355
Iteration: 11, Func. Count: 108, Neg. LLF: 122.08792037440861
Iteration: 12, Func. Count: 117, Neg. LLF: 122.08789613637566
Iteration: 13, Func. Count: 126, Neg. LLF: 122.0878945777283
Iteration: 14, Func. Count: 134, Neg. LLF: 122.08789455360085
Optimization terminated successfully (Exit mode 0)
Current function value: 122.0878945777283
Iterations: 14
Function evaluations: 134
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 166.18462583792416
Iteration: 2, Func. Count: 23, Neg. LLF: 335.1915583698571
Iteration: 3, Func. Count: 34, Neg. LLF: 125.55247176656593
Iteration: 4, Func. Count: 44, Neg. LLF: 124.5354082663852
Iteration: 5, Func. Count: 54, Neg. LLF: 122.7862061298276
Iteration: 6, Func. Count: 64, Neg. LLF: 122.72357002186584
Iteration: 7, Func. Count: 75, Neg. LLF: 123.10473431386973
Iteration: 8, Func. Count: 86, Neg. LLF: 122.10256282241517
Iteration: 9, Func. Count: 96, Neg. LLF: 122.74151885470219
Iteration: 10, Func. Count: 107, Neg. LLF: 122.08943725921532
Iteration: 11, Func. Count: 117, Neg. LLF: 122.0881556908793
Iteration: 12, Func. Count: 127, Neg. LLF: 122.08792249463818
Iteration: 13, Func. Count: 137, Neg. LLF: 122.08790410293616
Iteration: 14, Func. Count: 147, Neg. LLF: 122.08790037463535
Iteration: 15, Func. Count: 157, Neg. LLF: 122.08789454590608
Iteration: 16, Func. Count: 166, Neg. LLF: 122.08789450520105
Optimization terminated successfully (Exit mode 0)
Current function value: 122.08789454590608
Iterations: 16
Function evaluations: 166
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 165.09284188664137
Iteration: 2, Func. Count: 25, Neg. LLF: 177.15255020636715
Iteration: 3, Func. Count: 37, Neg. LLF: 126.03589835171769
Iteration: 4, Func. Count: 48, Neg. LLF: 1227163.3871908367
Iteration: 5, Func. Count: 60, Neg. LLF: 127.99422967290755
Iteration: 6, Func. Count: 73, Neg. LLF: 123.77715970486443
Iteration: 7, Func. Count: 84, Neg. LLF: 122.77815899583194
Iteration: 8, Func. Count: 95, Neg. LLF: 126.65283622566847
Iteration: 9, Func. Count: 107, Neg. LLF: 123.43813171534455
Iteration: 10, Func. Count: 119, Neg. LLF: 122.353754993353
Iteration: 11, Func. Count: 131, Neg. LLF: 122.14284896334573
Iteration: 12, Func. Count: 142, Neg. LLF: 122.12397214240144
Iteration: 13, Func. Count: 153, Neg. LLF: 122.10065358699946
Iteration: 14, Func. Count: 164, Neg. LLF: 122.09186965413446
Iteration: 15, Func. Count: 175, Neg. LLF: 122.09034251209982
Iteration: 16, Func. Count: 186, Neg. LLF: 122.08909329535621
Iteration: 17, Func. Count: 197, Neg. LLF: 122.08811526086967
Iteration: 18, Func. Count: 208, Neg. LLF: 122.0879125285147
Iteration: 19, Func. Count: 219, Neg. LLF: 122.0878951303434
Iteration: 20, Func. Count: 230, Neg. LLF: 122.08789443313965
Optimization terminated successfully (Exit mode 0)
Current function value: 122.08789443313965
Iterations: 20
Function evaluations: 230
Gradient evaluations: 20
Iteration: 1, Func. Count: 13, Neg. LLF: 135.50329873003625
Iteration: 2, Func. Count: 26, Neg. LLF: 198.10917559824557
Iteration: 3, Func. Count: 39, Neg. LLF: 131.35879841888485
Iteration: 4, Func. Count: 52, Neg. LLF: 126.00551016589053
Iteration: 5, Func. Count: 65, Neg. LLF: 128.44660049544444
Iteration: 6, Func. Count: 78, Neg. LLF: 125.23411671831707
Iteration: 7, Func. Count: 91, Neg. LLF: 123.02186056924393
Iteration: 8, Func. Count: 104, Neg. LLF: 122.18914121784772
Iteration: 9, Func. Count: 116, Neg. LLF: 122.7290848393495
Iteration: 10, Func. Count: 129, Neg. LLF: 122.21192269199516
Iteration: 11, Func. Count: 142, Neg. LLF: 122.10807433537661
Iteration: 12, Func. Count: 154, Neg. LLF: 122.08879590771335
Iteration: 13, Func. Count: 166, Neg. LLF: 122.08808520989245
Iteration: 14, Func. Count: 178, Neg. LLF: 122.0878962649729
Iteration: 15, Func. Count: 190, Neg. LLF: 122.08789449018414
Iteration: 16, Func. Count: 201, Neg. LLF: 122.08789448140067
Optimization terminated successfully (Exit mode 0)
Current function value: 122.08789449018414
Iterations: 16
Function evaluations: 201
Gradient evaluations: 16
Iteration: 1, Func. Count: 14, Neg. LLF: 135.81839888593322
Iteration: 2, Func. Count: 28, Neg. LLF: 198.21578461720318
Iteration: 3, Func. Count: 42, Neg. LLF: 131.47377549523358
Iteration: 4, Func. Count: 56, Neg. LLF: 124.02876193882389
Iteration: 5, Func. Count: 70, Neg. LLF: 123.34060799988981
Iteration: 6, Func. Count: 84, Neg. LLF: 126.49955291242254
Iteration: 7, Func. Count: 98, Neg. LLF: 123.43020742251893
Iteration: 8, Func. Count: 112, Neg. LLF: 123.70601397184669
Iteration: 9, Func. Count: 126, Neg. LLF: 122.09022601766667
Iteration: 10, Func. Count: 139, Neg. LLF: 122.24402095852655
Iteration: 11, Func. Count: 153, Neg. LLF: 122.06774975751962
Iteration: 12, Func. Count: 166, Neg. LLF: 122.06793566251346
Iteration: 13, Func. Count: 180, Neg. LLF: 122.06473977441057
Iteration: 14, Func. Count: 193, Neg. LLF: 122.06445039233412
Iteration: 15, Func. Count: 206, Neg. LLF: 122.06444764755929
Iteration: 16, Func. Count: 218, Neg. LLF: 122.0644475962381
Optimization terminated successfully (Exit mode 0)
Current function value: 122.06444764755929
Iterations: 16
Function evaluations: 218
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 155.01185413418233
Iteration: 2, Func. Count: 22, Neg. LLF: 133.60640117643192
Iteration: 3, Func. Count: 33, Neg. LLF: 132.90744683129216
Iteration: 4, Func. Count: 44, Neg. LLF: 123.03546165055656
Iteration: 5, Func. Count: 54, Neg. LLF: 122.9631560540434
Iteration: 6, Func. Count: 65, Neg. LLF: 122.15947095896213
Iteration: 7, Func. Count: 75, Neg. LLF: 271.37099082877126
Iteration: 8, Func. Count: 87, Neg. LLF: 122.56969274380273
Iteration: 9, Func. Count: 98, Neg. LLF: 122.12647312608091
Iteration: 10, Func. Count: 109, Neg. LLF: 122.1020320792046
Iteration: 11, Func. Count: 120, Neg. LLF: 122.08792714523173
Iteration: 12, Func. Count: 130, Neg. LLF: 122.0878978552586
Iteration: 13, Func. Count: 140, Neg. LLF: 122.08789446436495
Iteration: 14, Func. Count: 149, Neg. LLF: 122.08789452768474
Optimization terminated successfully (Exit mode 0)
Current function value: 122.08789446436495
Iterations: 14
Function evaluations: 149
Gradient evaluations: 14
Iteration: 1, Func. Count: 12, Neg. LLF: 165.41122457342814
Iteration: 2, Func. Count: 25, Neg. LLF: 1527.5000184876055
Iteration: 3, Func. Count: 37, Neg. LLF: 125.6582772283944
Iteration: 4, Func. Count: 48, Neg. LLF: 124.92681163225336
Iteration: 5, Func. Count: 59, Neg. LLF: 123.73526282187295
Iteration: 6, Func. Count: 70, Neg. LLF: 123.92212569646058
Iteration: 7, Func. Count: 82, Neg. LLF: 123.09502593520382
Iteration: 8, Func. Count: 94, Neg. LLF: 122.65562058642156
Iteration: 9, Func. Count: 106, Neg. LLF: 122.81768756395951
Iteration: 10, Func. Count: 118, Neg. LLF: 122.1364326491018
Iteration: 11, Func. Count: 129, Neg. LLF: 122.09449407488495
Iteration: 12, Func. Count: 140, Neg. LLF: 122.08913409286653
Iteration: 13, Func. Count: 151, Neg. LLF: 122.08805188623161
Iteration: 14, Func. Count: 162, Neg. LLF: 122.08795625690011
Iteration: 15, Func. Count: 173, Neg. LLF: 122.08790378279645
Iteration: 16, Func. Count: 184, Neg. LLF: 122.08789494721309
Iteration: 17, Func. Count: 194, Neg. LLF: 122.08789490647116
Optimization terminated successfully (Exit mode 0)
Current function value: 122.08789494721309
Iterations: 17
Function evaluations: 194
Gradient evaluations: 17
Iteration: 1, Func. Count: 13, Neg. LLF: 142.11214890851608
Iteration: 2, Func. Count: 26, Neg. LLF: 188.21664598475846
Iteration: 3, Func. Count: 39, Neg. LLF: 125.75742148258506
Iteration: 4, Func. Count: 51, Neg. LLF: 122.78146717363738
Iteration: 5, Func. Count: 63, Neg. LLF: 122.77922713732539
Iteration: 6, Func. Count: 76, Neg. LLF: 122.2034654827779
Iteration: 7, Func. Count: 88, Neg. LLF: 122.8242080045736
Iteration: 8, Func. Count: 102, Neg. LLF: 127.4382511677208
Iteration: 9, Func. Count: 115, Neg. LLF: 122.0986779815252
Iteration: 10, Func. Count: 127, Neg. LLF: 122.09500494705742
Iteration: 11, Func. Count: 139, Neg. LLF: 122.08803594603482
Iteration: 12, Func. Count: 151, Neg. LLF: 122.08793697969212
Iteration: 13, Func. Count: 163, Neg. LLF: 122.08789447057482
Iteration: 14, Func. Count: 174, Neg. LLF: 122.08789456208922
Optimization terminated successfully (Exit mode 0)
Current function value: 122.08789447057482
Iterations: 14
Function evaluations: 174
Gradient evaluations: 14
Iteration: 1, Func. Count: 14, Neg. LLF: 134.6893941491076
Iteration: 2, Func. Count: 28, Neg. LLF: 213.04734015262545
Iteration: 3, Func. Count: 42, Neg. LLF: 130.4014272172452
Iteration: 4, Func. Count: 56, Neg. LLF: 127.59587601468195
Iteration: 5, Func. Count: 70, Neg. LLF: 187.1304694449674
Iteration: 6, Func. Count: 84, Neg. LLF: 123.20146450109577
Iteration: 7, Func. Count: 97, Neg. LLF: 122.42200989088845
Iteration: 8, Func. Count: 110, Neg. LLF: 123.12491220523893
Iteration: 9, Func. Count: 125, Neg. LLF: 122.21615131689255
Iteration: 10, Func. Count: 138, Neg. LLF: 122.10873401435715
Iteration: 11, Func. Count: 151, Neg. LLF: 122.08834078021754
Iteration: 12, Func. Count: 164, Neg. LLF: 122.08797467375476
Iteration: 13, Func. Count: 177, Neg. LLF: 122.08795285206826
Iteration: 14, Func. Count: 190, Neg. LLF: 122.08789653438427
Iteration: 15, Func. Count: 203, Neg. LLF: 122.08789456573396
Iteration: 16, Func. Count: 215, Neg. LLF: 122.08789455697682
Optimization terminated successfully (Exit mode 0)
Current function value: 122.08789456573396
Iterations: 16
Function evaluations: 215
Gradient evaluations: 16
Iteration: 1, Func. Count: 15, Neg. LLF: 134.59957919360406
Iteration: 2, Func. Count: 30, Neg. LLF: 216.44050166645684
Iteration: 3, Func. Count: 45, Neg. LLF: 130.56328019738262
Iteration: 4, Func. Count: 60, Neg. LLF: 124.3579193670473
Iteration: 5, Func. Count: 75, Neg. LLF: 169.8859261103019
Iteration: 6, Func. Count: 90, Neg. LLF: 122.25227452893044
Iteration: 7, Func. Count: 104, Neg. LLF: 124.15247320350636
Iteration: 8, Func. Count: 119, Neg. LLF: 122.79630270627854
Iteration: 9, Func. Count: 134, Neg. LLF: 122.12416470622911
Iteration: 10, Func. Count: 148, Neg. LLF: 122.18117112555423
Iteration: 11, Func. Count: 163, Neg. LLF: 122.06660115878694
Iteration: 12, Func. Count: 177, Neg. LLF: 122.06466820789144
Iteration: 13, Func. Count: 191, Neg. LLF: 122.06449289255347
Iteration: 14, Func. Count: 205, Neg. LLF: 122.0644487044371
Iteration: 15, Func. Count: 219, Neg. LLF: 122.06444758904873
Iteration: 16, Func. Count: 232, Neg. LLF: 122.06444753778217
Optimization terminated successfully (Exit mode 0)
Current function value: 122.06444758904873
Iterations: 16
Function evaluations: 232
Gradient evaluations: 16
Iteration: 1, Func. Count: 8, Neg. LLF: 141.34668996968037
Iteration: 2, Func. Count: 16, Neg. LLF: 149.9340613238238
Iteration: 3, Func. Count: 24, Neg. LLF: 132.3205283670705
Iteration: 4, Func. Count: 33, Neg. LLF: 129.51441814060038
Iteration: 5, Func. Count: 40, Neg. LLF: 128.97494751398128
Iteration: 6, Func. Count: 47, Neg. LLF: 128.7859114625787
Iteration: 7, Func. Count: 54, Neg. LLF: 128.40916348701717
Iteration: 8, Func. Count: 61, Neg. LLF: 128.3882589353153
Iteration: 9, Func. Count: 68, Neg. LLF: 128.35149986220324
Iteration: 10, Func. Count: 75, Neg. LLF: 128.33561208809124
Iteration: 11, Func. Count: 82, Neg. LLF: 128.33487454251343
Iteration: 12, Func. Count: 89, Neg. LLF: 128.33485661656977
Iteration: 13, Func. Count: 95, Neg. LLF: 128.33485657665773
Optimization terminated successfully (Exit mode 0)
Current function value: 128.33485661656977
Iterations: 13
Function evaluations: 95
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 144.17566245653165
Iteration: 2, Func. Count: 18, Neg. LLF: 138.67295132210631
Iteration: 3, Func. Count: 27, Neg. LLF: 129.58947303750784
Iteration: 4, Func. Count: 35, Neg. LLF: 129.0964036021541
Iteration: 5, Func. Count: 43, Neg. LLF: 128.70974361527152
Iteration: 6, Func. Count: 51, Neg. LLF: 128.4125655352268
Iteration: 7, Func. Count: 59, Neg. LLF: 128.3807684142548
Iteration: 8, Func. Count: 67, Neg. LLF: 128.34073920715605
Iteration: 9, Func. Count: 75, Neg. LLF: 128.33596004499083
Iteration: 10, Func. Count: 83, Neg. LLF: 128.33500585928803
Iteration: 11, Func. Count: 91, Neg. LLF: 128.33488889363935
Iteration: 12, Func. Count: 99, Neg. LLF: 128.33485629703299
Iteration: 13, Func. Count: 107, Neg. LLF: 128.3348518529893
Optimization terminated successfully (Exit mode 0)
Current function value: 128.3348562928466
Iterations: 13
Function evaluations: 117
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 137.1209200552336
Iteration: 2, Func. Count: 20, Neg. LLF: 140.10560561878796
Iteration: 3, Func. Count: 30, Neg. LLF: 130.21720020115816
Iteration: 4, Func. Count: 39, Neg. LLF: 129.32071872678094
Iteration: 5, Func. Count: 48, Neg. LLF: 131.93317535679907
Iteration: 6, Func. Count: 58, Neg. LLF: 129.89563467630572
Iteration: 7, Func. Count: 68, Neg. LLF: 129.31387864173308
Iteration: 8, Func. Count: 78, Neg. LLF: 128.43368588232485
Iteration: 9, Func. Count: 87, Neg. LLF: 128.3467790172565
Iteration: 10, Func. Count: 96, Neg. LLF: 128.33713985814916
Iteration: 11, Func. Count: 105, Neg. LLF: 128.33492542768042
Iteration: 12, Func. Count: 114, Neg. LLF: 128.33485706847353
Iteration: 13, Func. Count: 123, Neg. LLF: 128.33485651825995
Optimization terminated successfully (Exit mode 0)
Current function value: 128.33485651825995
Iterations: 13
Function evaluations: 123
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 137.16144781047825
Iteration: 2, Func. Count: 22, Neg. LLF: 139.79905550693232
Iteration: 3, Func. Count: 33, Neg. LLF: 129.32317036485904
Iteration: 4, Func. Count: 43, Neg. LLF: 129.56200565716904
Iteration: 5, Func. Count: 54, Neg. LLF: 129.1817252411298
Iteration: 6, Func. Count: 65, Neg. LLF: 128.53177538617683
Iteration: 7, Func. Count: 75, Neg. LLF: 128.36901934313278
Iteration: 8, Func. Count: 85, Neg. LLF: 128.22371638419423
Iteration: 9, Func. Count: 95, Neg. LLF: 128.09209335947673
Iteration: 10, Func. Count: 105, Neg. LLF: 128.06107262734378
Iteration: 11, Func. Count: 115, Neg. LLF: 128.05373159388083
Iteration: 12, Func. Count: 125, Neg. LLF: 128.05340688327954
Iteration: 13, Func. Count: 135, Neg. LLF: 128.05335401390758
Iteration: 14, Func. Count: 144, Neg. LLF: 128.05335395426013
Optimization terminated successfully (Exit mode 0)
Current function value: 128.05335401390758
Iterations: 14
Function evaluations: 144
Gradient evaluations: 14
Iteration: 1, Func. Count: 12, Neg. LLF: 137.37731206827985
Iteration: 2, Func. Count: 24, Neg. LLF: 139.3858561269132
Iteration: 3, Func. Count: 36, Neg. LLF: 129.7205774959101
Iteration: 4, Func. Count: 47, Neg. LLF: 229.3438431399785
Iteration: 5, Func. Count: 59, Neg. LLF: 128.7772153120953
Iteration: 6, Func. Count: 70, Neg. LLF: 128.16013602668238
Iteration: 7, Func. Count: 81, Neg. LLF: 128.107020186224
Iteration: 8, Func. Count: 92, Neg. LLF: 128.06691252915797
Iteration: 9, Func. Count: 103, Neg. LLF: 128.05406678785369
Iteration: 10, Func. Count: 114, Neg. LLF: 128.05336776810813
Iteration: 11, Func. Count: 125, Neg. LLF: 128.0533541434601
Iteration: 12, Func. Count: 135, Neg. LLF: 128.05335430985514
Optimization terminated successfully (Exit mode 0)
Current function value: 128.0533541434601
Iterations: 12
Function evaluations: 135
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 148.2215625591508
Iteration: 2, Func. Count: 18, Neg. LLF: 133.6045394703417
Iteration: 3, Func. Count: 27, Neg. LLF: 140.46902560721426
Iteration: 4, Func. Count: 36, Neg. LLF: 126.92034115149806
Iteration: 5, Func. Count: 44, Neg. LLF: 126.30645475906647
Iteration: 6, Func. Count: 52, Neg. LLF: 126.22627534913008
Iteration: 7, Func. Count: 60, Neg. LLF: 126.16336847938835
Iteration: 8, Func. Count: 68, Neg. LLF: 126.15849797935846
Iteration: 9, Func. Count: 76, Neg. LLF: 126.15792196954462
Iteration: 10, Func. Count: 84, Neg. LLF: 126.1579159648449
Iteration: 11, Func. Count: 91, Neg. LLF: 126.15791595388272
Optimization terminated successfully (Exit mode 0)
Current function value: 126.1579159648449
Iterations: 11
Function evaluations: 91
Gradient evaluations: 11
Iteration: 1, Func. Count: 10, Neg. LLF: 169.47834291160453
Iteration: 2, Func. Count: 20, Neg. LLF: 204.46144426642365
Iteration: 3, Func. Count: 30, Neg. LLF: 129.43029180164166
Iteration: 4, Func. Count: 40, Neg. LLF: 126.39444181105746
Iteration: 5, Func. Count: 49, Neg. LLF: 126.92257984388725
Iteration: 6, Func. Count: 59, Neg. LLF: 126.2615671343282
Iteration: 7, Func. Count: 68, Neg. LLF: 126.22118306526565
Iteration: 8, Func. Count: 77, Neg. LLF: 126.21107018385503
Iteration: 9, Func. Count: 86, Neg. LLF: 126.20956281704996
Iteration: 10, Func. Count: 95, Neg. LLF: 126.20955237953132
Iteration: 11, Func. Count: 103, Neg. LLF: 126.20955226919966
Optimization terminated successfully (Exit mode 0)
Current function value: 126.20955237953132
Iterations: 11
Function evaluations: 103
Gradient evaluations: 11
Iteration: 1, Func. Count: 11, Neg. LLF: 165.91217918045888
Iteration: 2, Func. Count: 22, Neg. LLF: 183.28315411477686
Iteration: 3, Func. Count: 33, Neg. LLF: 135.1248333961738
Iteration: 4, Func. Count: 44, Neg. LLF: 126.51608884999979
Iteration: 5, Func. Count: 54, Neg. LLF: 126.42440538934187
Iteration: 6, Func. Count: 64, Neg. LLF: 126.26869525118886
Iteration: 7, Func. Count: 74, Neg. LLF: 126.21358716326287
Iteration: 8, Func. Count: 84, Neg. LLF: 126.21004260105832
Iteration: 9, Func. Count: 94, Neg. LLF: 126.20956352433622
Iteration: 10, Func. Count: 104, Neg. LLF: 126.20955259727403
Iteration: 11, Func. Count: 114, Neg. LLF: 126.209552039627
Optimization terminated successfully (Exit mode 0)
Current function value: 126.209552039627
Iterations: 11
Function evaluations: 114
Gradient evaluations: 11
Iteration: 1, Func. Count: 12, Neg. LLF: 152.2915333138476
Iteration: 2, Func. Count: 24, Neg. LLF: 129.25887657893236
Iteration: 3, Func. Count: 36, Neg. LLF: 130.9949676183918
Iteration: 4, Func. Count: 48, Neg. LLF: 128.56016769695432
Iteration: 5, Func. Count: 60, Neg. LLF: 150.6167962775597
Iteration: 6, Func. Count: 72, Neg. LLF: 127.00016427578291
Iteration: 7, Func. Count: 83, Neg. LLF: 126.44106213145082
Iteration: 8, Func. Count: 94, Neg. LLF: 126.33407871428807
Iteration: 9, Func. Count: 105, Neg. LLF: 126.33632079342794
Iteration: 10, Func. Count: 117, Neg. LLF: 126.21578582967396
Iteration: 11, Func. Count: 128, Neg. LLF: 126.20585735054635
Iteration: 12, Func. Count: 139, Neg. LLF: 126.20481611164317
Iteration: 13, Func. Count: 150, Neg. LLF: 126.20471546946507
Iteration: 14, Func. Count: 161, Neg. LLF: 126.20471333244546
Iteration: 15, Func. Count: 171, Neg. LLF: 126.20471322759715
Optimization terminated successfully (Exit mode 0)
Current function value: 126.20471333244546
Iterations: 15
Function evaluations: 171
Gradient evaluations: 15
Iteration: 1, Func. Count: 13, Neg. LLF: 152.56089393001625
Iteration: 2, Func. Count: 26, Neg. LLF: 133.84985511802373
Iteration: 3, Func. Count: 39, Neg. LLF: 127.51006912572832
Iteration: 4, Func. Count: 51, Neg. LLF: 126.42293477985974
Iteration: 5, Func. Count: 63, Neg. LLF: 131.07998887186574
Iteration: 6, Func. Count: 76, Neg. LLF: 125.66946657730098
Iteration: 7, Func. Count: 88, Neg. LLF: 125.68981733893646
Iteration: 8, Func. Count: 101, Neg. LLF: 125.6059857214257
Iteration: 9, Func. Count: 113, Neg. LLF: 125.5979474237331
Iteration: 10, Func. Count: 125, Neg. LLF: 125.59655356662114
Iteration: 11, Func. Count: 137, Neg. LLF: 125.59588435967802
Iteration: 12, Func. Count: 149, Neg. LLF: 125.59578298995032
Iteration: 13, Func. Count: 161, Neg. LLF: 125.59578161832462
Iteration: 14, Func. Count: 172, Neg. LLF: 125.59578153344091
Optimization terminated successfully (Exit mode 0)
Current function value: 125.59578161832462
Iterations: 14
Function evaluations: 172
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 150.21359340601217
Iteration: 2, Func. Count: 20, Neg. LLF: 131.16591539566457
Iteration: 3, Func. Count: 30, Neg. LLF: 130.10137472869283
Iteration: 4, Func. Count: 40, Neg. LLF: 122.976570206745
Iteration: 5, Func. Count: 49, Neg. LLF: 122.43087709914114
Iteration: 6, Func. Count: 58, Neg. LLF: 138.73918344819654
Iteration: 7, Func. Count: 68, Neg. LLF: 126.13395373955373
Iteration: 8, Func. Count: 78, Neg. LLF: 122.31563410349234
Iteration: 9, Func. Count: 87, Neg. LLF: 122.30858036381831
Iteration: 10, Func. Count: 96, Neg. LLF: 122.30713440924805
Iteration: 11, Func. Count: 105, Neg. LLF: 122.30708138611453
Iteration: 12, Func. Count: 114, Neg. LLF: 122.30707816020683
Iteration: 13, Func. Count: 122, Neg. LLF: 122.30707814105475
Optimization terminated successfully (Exit mode 0)
Current function value: 122.30707816020683
Iterations: 13
Function evaluations: 122
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 169.0446172336219
Iteration: 2, Func. Count: 22, Neg. LLF: 171.83588163598742
Iteration: 3, Func. Count: 33, Neg. LLF: 128.87272293772696
Iteration: 4, Func. Count: 44, Neg. LLF: 133.3200065022478
Iteration: 5, Func. Count: 55, Neg. LLF: 135.09256783446273
Iteration: 6, Func. Count: 66, Neg. LLF: 124.04596130311681
Iteration: 7, Func. Count: 77, Neg. LLF: 122.94283751215119
Iteration: 8, Func. Count: 88, Neg. LLF: 123.33451952367916
Iteration: 9, Func. Count: 99, Neg. LLF: 122.30367887550146
Iteration: 10, Func. Count: 110, Neg. LLF: 122.23746498019946
Iteration: 11, Func. Count: 121, Neg. LLF: 122.11291380765806
Iteration: 12, Func. Count: 131, Neg. LLF: 122.10974475898358
Iteration: 13, Func. Count: 141, Neg. LLF: 122.1095431033869
Iteration: 14, Func. Count: 151, Neg. LLF: 122.10953955442776
Iteration: 15, Func. Count: 161, Neg. LLF: 122.10953888402226
Optimization terminated successfully (Exit mode 0)
Current function value: 122.10953888402226
Iterations: 15
Function evaluations: 161
Gradient evaluations: 15
Iteration: 1, Func. Count: 12, Neg. LLF: 164.00072102077692
Iteration: 2, Func. Count: 24, Neg. LLF: 135.94907568252086
Iteration: 3, Func. Count: 36, Neg. LLF: 136.30414441669384
Iteration: 4, Func. Count: 48, Neg. LLF: 126.70438418177989
Iteration: 5, Func. Count: 60, Neg. LLF: 123.9071258584659
Iteration: 6, Func. Count: 72, Neg. LLF: 123.16952021897221
Iteration: 7, Func. Count: 84, Neg. LLF: 122.45134014924525
Iteration: 8, Func. Count: 95, Neg. LLF: 122.42714562624715
Iteration: 9, Func. Count: 107, Neg. LLF: 133.82819104047906
Iteration: 10, Func. Count: 119, Neg. LLF: 122.38499188949538
Iteration: 11, Func. Count: 131, Neg. LLF: 122.11347233607573
Iteration: 12, Func. Count: 142, Neg. LLF: 122.11011947869291
Iteration: 13, Func. Count: 153, Neg. LLF: 122.1096101635111
Iteration: 14, Func. Count: 164, Neg. LLF: 122.10955467964932
Iteration: 15, Func. Count: 175, Neg. LLF: 122.10954101738088
Iteration: 16, Func. Count: 186, Neg. LLF: 122.10953889096926
Iteration: 17, Func. Count: 196, Neg. LLF: 122.10953897137283
Optimization terminated successfully (Exit mode 0)
Current function value: 122.10953889096926
Iterations: 17
Function evaluations: 196
Gradient evaluations: 17
Iteration: 1, Func. Count: 13, Neg. LLF: 160.68338893336812
Iteration: 2, Func. Count: 26, Neg. LLF: 143.2431471929509
Iteration: 3, Func. Count: 39, Neg. LLF: 128.33385261754105
Iteration: 4, Func. Count: 52, Neg. LLF: 141.6609284374167
Iteration: 5, Func. Count: 65, Neg. LLF: 122.68600664401832
Iteration: 6, Func. Count: 77, Neg. LLF: 122.40463812674828
Iteration: 7, Func. Count: 89, Neg. LLF: 122.73488524530495
Iteration: 8, Func. Count: 103, Neg. LLF: 127.28168655217864
Iteration: 9, Func. Count: 116, Neg. LLF: 122.15077359775704
Iteration: 10, Func. Count: 128, Neg. LLF: 122.12068117236382
Iteration: 11, Func. Count: 140, Neg. LLF: 122.11316777604168
Iteration: 12, Func. Count: 152, Neg. LLF: 122.11036794896395
Iteration: 13, Func. Count: 164, Neg. LLF: 122.10957155359145
Iteration: 14, Func. Count: 176, Neg. LLF: 122.10954770703127
Iteration: 15, Func. Count: 188, Neg. LLF: 122.1095404485773
Iteration: 16, Func. Count: 200, Neg. LLF: 122.10953888359623
Iteration: 17, Func. Count: 211, Neg. LLF: 122.10953885941652
Optimization terminated successfully (Exit mode 0)
Current function value: 122.10953888359623
Iterations: 17
Function evaluations: 211
Gradient evaluations: 17
Iteration: 1, Func. Count: 14, Neg. LLF: 137.86589972800516
Iteration: 2, Func. Count: 28, Neg. LLF: 171.30263786191978
Iteration: 3, Func. Count: 42, Neg. LLF: 132.94407383260707
Iteration: 4, Func. Count: 56, Neg. LLF: 124.1875677246262
Iteration: 5, Func. Count: 70, Neg. LLF: 123.76783545942834
Iteration: 6, Func. Count: 84, Neg. LLF: 122.32408991712626
Iteration: 7, Func. Count: 97, Neg. LLF: 122.42971700258997
Iteration: 8, Func. Count: 111, Neg. LLF: 124.54965647402761
Iteration: 9, Func. Count: 126, Neg. LLF: 127.69298848078307
Iteration: 10, Func. Count: 140, Neg. LLF: 122.08760968512499
Iteration: 11, Func. Count: 153, Neg. LLF: 122.06634778174536
Iteration: 12, Func. Count: 166, Neg. LLF: 122.06730020588515
Iteration: 13, Func. Count: 180, Neg. LLF: 122.06447298840017
Iteration: 14, Func. Count: 193, Neg. LLF: 122.06444796669938
Iteration: 15, Func. Count: 205, Neg. LLF: 122.0644479153642
Optimization terminated successfully (Exit mode 0)
Current function value: 122.06444796669938
Iterations: 15
Function evaluations: 205
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 146.83200492461535
Iteration: 2, Func. Count: 22, Neg. LLF: 132.6619621638911
Iteration: 3, Func. Count: 33, Neg. LLF: 133.3318798603424
Iteration: 4, Func. Count: 44, Neg. LLF: 123.24331145375969
Iteration: 5, Func. Count: 54, Neg. LLF: 125.19232539890366
Iteration: 6, Func. Count: 65, Neg. LLF: 124.08911586314986
Iteration: 7, Func. Count: 76, Neg. LLF: 129.28304808517467
Iteration: 8, Func. Count: 87, Neg. LLF: 122.28960232389616
Iteration: 9, Func. Count: 97, Neg. LLF: 140.9542353555568
Iteration: 10, Func. Count: 109, Neg. LLF: 124.80953666402206
Iteration: 11, Func. Count: 121, Neg. LLF: 122.12515141152407
Iteration: 12, Func. Count: 132, Neg. LLF: 122.08794449760748
Iteration: 13, Func. Count: 142, Neg. LLF: 122.0878995970298
Iteration: 14, Func. Count: 152, Neg. LLF: 122.08789450121029
Iteration: 15, Func. Count: 161, Neg. LLF: 122.08789447713615
Optimization terminated successfully (Exit mode 0)
Current function value: 122.08789450121029
Iterations: 15
Function evaluations: 161
Gradient evaluations: 15
Iteration: 1, Func. Count: 12, Neg. LLF: 165.8791088532352
Iteration: 2, Func. Count: 25, Neg. LLF: 360.94788621633865
Iteration: 3, Func. Count: 37, Neg. LLF: 125.57484199985089
Iteration: 4, Func. Count: 48, Neg. LLF: 124.58907744593319
Iteration: 5, Func. Count: 59, Neg. LLF: 122.91402976641568
Iteration: 6, Func. Count: 70, Neg. LLF: 122.45682147409318
Iteration: 7, Func. Count: 81, Neg. LLF: 167.70743438579532
Iteration: 8, Func. Count: 95, Neg. LLF: 122.76528949018042
Iteration: 9, Func. Count: 107, Neg. LLF: 122.10746458953729
Iteration: 10, Func. Count: 118, Neg. LLF: 122.19796655648781
Iteration: 11, Func. Count: 130, Neg. LLF: 122.08916910215706
Iteration: 12, Func. Count: 141, Neg. LLF: 122.08813362892434
Iteration: 13, Func. Count: 152, Neg. LLF: 122.08795436550417
Iteration: 14, Func. Count: 163, Neg. LLF: 122.08791474527612
Iteration: 15, Func. Count: 174, Neg. LLF: 122.08790471373248
Iteration: 16, Func. Count: 185, Neg. LLF: 122.08789725182116
Iteration: 17, Func. Count: 196, Neg. LLF: 122.08789477786817
Iteration: 18, Func. Count: 206, Neg. LLF: 122.08789473714705
Optimization terminated successfully (Exit mode 0)
Current function value: 122.08789477786817
Iterations: 18
Function evaluations: 206
Gradient evaluations: 18
Iteration: 1, Func. Count: 13, Neg. LLF: 164.71860482654148
Iteration: 2, Func. Count: 27, Neg. LLF: 182.20001255839674
Iteration: 3, Func. Count: 40, Neg. LLF: 125.93661577016277
Iteration: 4, Func. Count: 52, Neg. LLF: 1211265.6267265691
Iteration: 5, Func. Count: 65, Neg. LLF: 126.33034238007255
Iteration: 6, Func. Count: 79, Neg. LLF: 123.69651818653226
Iteration: 7, Func. Count: 91, Neg. LLF: 122.76982053989762
Iteration: 8, Func. Count: 103, Neg. LLF: 129.07560827408147
Iteration: 9, Func. Count: 116, Neg. LLF: 122.308038398188
Iteration: 10, Func. Count: 128, Neg. LLF: 122.2349249011138
Iteration: 11, Func. Count: 140, Neg. LLF: 122.16552998410381
Iteration: 12, Func. Count: 152, Neg. LLF: 122.13283476448481
Iteration: 13, Func. Count: 164, Neg. LLF: 122.09849071745491
Iteration: 14, Func. Count: 176, Neg. LLF: 122.0927269286802
Iteration: 15, Func. Count: 188, Neg. LLF: 122.08898604558512
Iteration: 16, Func. Count: 200, Neg. LLF: 122.08855775843222
Iteration: 17, Func. Count: 212, Neg. LLF: 122.08815452189882
Iteration: 18, Func. Count: 224, Neg. LLF: 122.08798973677331
Iteration: 19, Func. Count: 236, Neg. LLF: 122.0879020540744
Iteration: 20, Func. Count: 248, Neg. LLF: 122.08789474662689
Iteration: 21, Func. Count: 259, Neg. LLF: 122.08789483821265
Optimization terminated successfully (Exit mode 0)
Current function value: 122.08789474662689
Iterations: 21
Function evaluations: 259
Gradient evaluations: 21
Iteration: 1, Func. Count: 14, Neg. LLF: 135.07400432705123
Iteration: 2, Func. Count: 28, Neg. LLF: 199.27901798172033
Iteration: 3, Func. Count: 42, Neg. LLF: 131.3335209584516
Iteration: 4, Func. Count: 56, Neg. LLF: 125.30949092284192
Iteration: 5, Func. Count: 70, Neg. LLF: 127.6444921122061
Iteration: 6, Func. Count: 84, Neg. LLF: 125.90467032926341
Iteration: 7, Func. Count: 98, Neg. LLF: 123.04084931049015
Iteration: 8, Func. Count: 112, Neg. LLF: 122.21026640003768
Iteration: 9, Func. Count: 125, Neg. LLF: 122.30260682095222
Iteration: 10, Func. Count: 139, Neg. LLF: 122.46669435396524
Iteration: 11, Func. Count: 153, Neg. LLF: 122.10545366743126
Iteration: 12, Func. Count: 166, Neg. LLF: 122.08792617191867
Iteration: 13, Func. Count: 179, Neg. LLF: 122.08790152878167
Iteration: 14, Func. Count: 192, Neg. LLF: 122.08789443168382
Iteration: 15, Func. Count: 204, Neg. LLF: 122.08789442291142
Optimization terminated successfully (Exit mode 0)
Current function value: 122.08789443168382
Iterations: 15
Function evaluations: 204
Gradient evaluations: 15
Iteration: 1, Func. Count: 15, Neg. LLF: 135.3566112059293
Iteration: 2, Func. Count: 30, Neg. LLF: 199.6133391256729
Iteration: 3, Func. Count: 45, Neg. LLF: 131.43629246927972
Iteration: 4, Func. Count: 60, Neg. LLF: 123.83508332453778
Iteration: 5, Func. Count: 74, Neg. LLF: 123.68847206488041
Iteration: 6, Func. Count: 89, Neg. LLF: 138.80606185715385
Iteration: 7, Func. Count: 104, Neg. LLF: 123.44894719614157
Iteration: 8, Func. Count: 119, Neg. LLF: 122.21047137729624
Iteration: 9, Func. Count: 133, Neg. LLF: 123.30495278938758
Iteration: 10, Func. Count: 148, Neg. LLF: 122.15192755698311
Iteration: 11, Func. Count: 163, Neg. LLF: 122.71096026422353
Iteration: 12, Func. Count: 178, Neg. LLF: 122.06799602707743
Iteration: 13, Func. Count: 192, Neg. LLF: 122.06532710066072
Iteration: 14, Func. Count: 206, Neg. LLF: 122.06762648598935
Iteration: 15, Func. Count: 221, Neg. LLF: 122.06445326589201
Iteration: 16, Func. Count: 235, Neg. LLF: 122.0644485234409
Iteration: 17, Func. Count: 249, Neg. LLF: 122.06444776617711
Optimization terminated successfully (Exit mode 0)
Current function value: 122.06444776617711
Iterations: 17
Function evaluations: 249
Gradient evaluations: 17
Iteration: 1, Func. Count: 12, Neg. LLF: 144.6583003766462
Iteration: 2, Func. Count: 24, Neg. LLF: 132.21713867408408
Iteration: 3, Func. Count: 37, Neg. LLF: 172.87748067075538
Iteration: 4, Func. Count: 49, Neg. LLF: 124.1349376253651
Iteration: 5, Func. Count: 60, Neg. LLF: 122.34062795335696
Iteration: 6, Func. Count: 71, Neg. LLF: 122.5299309962707
Iteration: 7, Func. Count: 83, Neg. LLF: 125.33134416655423
Iteration: 8, Func. Count: 96, Neg. LLF: 122.28745693866549
Iteration: 9, Func. Count: 108, Neg. LLF: 122.09518106724518
Iteration: 10, Func. Count: 119, Neg. LLF: 122.08849030100133
Iteration: 11, Func. Count: 130, Neg. LLF: 122.08800242123706
Iteration: 12, Func. Count: 141, Neg. LLF: 122.08789941180945
Iteration: 13, Func. Count: 152, Neg. LLF: 122.08789451253186
Iteration: 14, Func. Count: 162, Neg. LLF: 122.08789457584625
Optimization terminated successfully (Exit mode 0)
Current function value: 122.08789451253186
Iterations: 14
Function evaluations: 162
Gradient evaluations: 14
Iteration: 1, Func. Count: 13, Neg. LLF: 165.0667263140881
Iteration: 2, Func. Count: 27, Neg. LLF: 2040.0157956480114
Iteration: 3, Func. Count: 40, Neg. LLF: 125.67878568697515
Iteration: 4, Func. Count: 52, Neg. LLF: 124.96386223207246
Iteration: 5, Func. Count: 64, Neg. LLF: 123.87146708764236
Iteration: 6, Func. Count: 76, Neg. LLF: 124.23516896348157
Iteration: 7, Func. Count: 89, Neg. LLF: 122.79288257723479
Iteration: 8, Func. Count: 102, Neg. LLF: 122.79308552118479
Iteration: 9, Func. Count: 115, Neg. LLF: 136.84372676004736
Iteration: 10, Func. Count: 129, Neg. LLF: 122.12036954450957
Iteration: 11, Func. Count: 141, Neg. LLF: 122.09338359247124
Iteration: 12, Func. Count: 153, Neg. LLF: 122.08849134335787
Iteration: 13, Func. Count: 165, Neg. LLF: 122.08805307367287
Iteration: 14, Func. Count: 177, Neg. LLF: 122.08798347434097
Iteration: 15, Func. Count: 189, Neg. LLF: 122.08791121793173
Iteration: 16, Func. Count: 201, Neg. LLF: 122.08789600605917
Iteration: 17, Func. Count: 213, Neg. LLF: 122.08789445425134
Iteration: 18, Func. Count: 224, Neg. LLF: 122.08789441347731
Optimization terminated successfully (Exit mode 0)
Current function value: 122.08789445425134
Iterations: 18
Function evaluations: 224
Gradient evaluations: 18
Iteration: 1, Func. Count: 14, Neg. LLF: 142.08693355108048
Iteration: 2, Func. Count: 28, Neg. LLF: 189.46319855702592
Iteration: 3, Func. Count: 42, Neg. LLF: 125.55720047981129
Iteration: 4, Func. Count: 55, Neg. LLF: 124.86875208375712
Iteration: 5, Func. Count: 69, Neg. LLF: 124.35854794538818
Iteration: 6, Func. Count: 83, Neg. LLF: 123.53056937742969
Iteration: 7, Func. Count: 96, Neg. LLF: 122.75865310590844
Iteration: 8, Func. Count: 109, Neg. LLF: 122.84038852422562
Iteration: 9, Func. Count: 123, Neg. LLF: 122.58726355508264
Iteration: 10, Func. Count: 138, Neg. LLF: 122.33163179327872
Iteration: 11, Func. Count: 152, Neg. LLF: 122.09421543737433
Iteration: 12, Func. Count: 165, Neg. LLF: 122.08841256899323
Iteration: 13, Func. Count: 178, Neg. LLF: 122.08790461592456
Iteration: 14, Func. Count: 191, Neg. LLF: 122.08789521190218
Iteration: 15, Func. Count: 204, Neg. LLF: 122.08789449855136
Optimization terminated successfully (Exit mode 0)
Current function value: 122.08789449855136
Iterations: 15
Function evaluations: 204
Gradient evaluations: 15
Iteration: 1, Func. Count: 15, Neg. LLF: 134.29399738046897
Iteration: 2, Func. Count: 30, Neg. LLF: 214.56821009577732
Iteration: 3, Func. Count: 45, Neg. LLF: 130.34637675422508
Iteration: 4, Func. Count: 60, Neg. LLF: 127.53045785264429
Iteration: 5, Func. Count: 75, Neg. LLF: 182.06984094241957
Iteration: 6, Func. Count: 90, Neg. LLF: 123.17922100922736
Iteration: 7, Func. Count: 104, Neg. LLF: 122.41270408680496
Iteration: 8, Func. Count: 118, Neg. LLF: 123.12513491817224
Iteration: 9, Func. Count: 134, Neg. LLF: 122.19864543934143
Iteration: 10, Func. Count: 148, Neg. LLF: 122.10179183959134
Iteration: 11, Func. Count: 162, Neg. LLF: 122.09639245116226
Iteration: 12, Func. Count: 176, Neg. LLF: 122.08839137524478
Iteration: 13, Func. Count: 190, Neg. LLF: 122.08794465533806
Iteration: 14, Func. Count: 204, Neg. LLF: 122.08790173140883
Iteration: 15, Func. Count: 218, Neg. LLF: 122.08789529101081
Iteration: 16, Func. Count: 232, Neg. LLF: 122.08789443425395
Optimization terminated successfully (Exit mode 0)
Current function value: 122.08789443425395
Iterations: 16
Function evaluations: 232
Gradient evaluations: 16
Iteration: 1, Func. Count: 16, Neg. LLF: 134.16388767846124
Iteration: 2, Func. Count: 32, Neg. LLF: 218.25688399936726
Iteration: 3, Func. Count: 48, Neg. LLF: 130.52677592395048
Iteration: 4, Func. Count: 64, Neg. LLF: 124.3038347308846
Iteration: 5, Func. Count: 80, Neg. LLF: 173.25254268293477
Iteration: 6, Func. Count: 96, Neg. LLF: 122.24579049822933
Iteration: 7, Func. Count: 111, Neg. LLF: 124.13372148896823
Iteration: 8, Func. Count: 127, Neg. LLF: 122.75363494443147
Iteration: 9, Func. Count: 143, Neg. LLF: 122.12834386237252
Iteration: 10, Func. Count: 158, Neg. LLF: 122.16037350751546
Iteration: 11, Func. Count: 174, Neg. LLF: 122.06685361109787
Iteration: 12, Func. Count: 189, Neg. LLF: 122.06474686750491
Iteration: 13, Func. Count: 204, Neg. LLF: 122.06449562698563
Iteration: 14, Func. Count: 219, Neg. LLF: 122.06444893508065
Iteration: 15, Func. Count: 234, Neg. LLF: 122.06444759989813
Iteration: 16, Func. Count: 248, Neg. LLF: 122.06444754863193
Optimization terminated successfully (Exit mode 0)
Current function value: 122.06444759989813
Iterations: 16
Function evaluations: 248
Gradient evaluations: 16
Iteration: 1, Func. Count: 6, Neg. LLF: 156.09794379040306
Iteration: 2, Func. Count: 12, Neg. LLF: 133.82550797781101
Iteration: 3, Func. Count: 18, Neg. LLF: 144.5773789481253
Iteration: 4, Func. Count: 24, Neg. LLF: 123.60573870641744
Iteration: 5, Func. Count: 29, Neg. LLF: 122.84133899474408
Iteration: 6, Func. Count: 34, Neg. LLF: 122.58031379454363
Iteration: 7, Func. Count: 40, Neg. LLF: 122.32033960479205
Iteration: 8, Func. Count: 45, Neg. LLF: 122.31917143341376
Iteration: 9, Func. Count: 50, Neg. LLF: 122.31899679263387
Iteration: 10, Func. Count: 55, Neg. LLF: 122.31898010760331
Iteration: 11, Func. Count: 60, Neg. LLF: 122.31897365456199
Iteration: 12, Func. Count: 64, Neg. LLF: 122.31897363608158
Optimization terminated successfully (Exit mode 0)
Current function value: 122.31897365456199
Iterations: 12
Function evaluations: 64
Gradient evaluations: 12
Iteration: 1, Func. Count: 5, Neg. LLF: 148.98129698278467
Iteration: 2, Func. Count: 10, Neg. LLF: 152.92629017136395
Iteration: 3, Func. Count: 15, Neg. LLF: 146.38627422467155
Iteration: 4, Func. Count: 19, Neg. LLF: 146.2126497657881
Iteration: 5, Func. Count: 23, Neg. LLF: 146.1991177974407
Iteration: 6, Func. Count: 27, Neg. LLF: 146.19839617065193
Iteration: 7, Func. Count: 31, Neg. LLF: 146.1983877431844
Iteration: 8, Func. Count: 35, Neg. LLF: 146.19838020954114
Iteration: 9, Func. Count: 39, Neg. LLF: 146.19836727321749
Iteration: 10, Func. Count: 43, Neg. LLF: 146.19836042916666
Iteration: 11, Func. Count: 47, Neg. LLF: 146.19835866399956
Iteration: 12, Func. Count: 50, Neg. LLF: 146.19835866399663
Optimization terminated successfully (Exit mode 0)
Current function value: 146.19835866399956
Iterations: 12
Function evaluations: 50
Gradient evaluations: 12
Iteration: 1, Func. Count: 6, Neg. LLF: 602.0064318013006
Iteration: 2, Func. Count: 12, Neg. LLF: 170.90623853492605
Iteration: 3, Func. Count: 19, Neg. LLF: 51015878.47170283
Iteration: 4, Func. Count: 26, Neg. LLF: 136.54217868325097
Iteration: 5, Func. Count: 32, Neg. LLF: 134.15237097166766
Iteration: 6, Func. Count: 37, Neg. LLF: 134.0581478587714
Iteration: 7, Func. Count: 42, Neg. LLF: 134.04127122976675
Iteration: 8, Func. Count: 47, Neg. LLF: 134.04092634516942
Iteration: 9, Func. Count: 52, Neg. LLF: 134.04073002346988
Iteration: 10, Func. Count: 56, Neg. LLF: 134.0407298998459
Optimization terminated successfully (Exit mode 0)
Current function value: 134.04073002346988
Iterations: 10
Function evaluations: 56
Gradient evaluations: 10
Iteration: 1, Func. Count: 7, Neg. LLF: 354.78267279833995
Iteration: 2, Func. Count: 14, Neg. LLF: 170.50489748208878
Iteration: 3, Func. Count: 21, Neg. LLF: 134.55175156227008
Iteration: 4, Func. Count: 27, Neg. LLF: 135.0933919936393
Iteration: 5, Func. Count: 34, Neg. LLF: 134.1531016750803
Iteration: 6, Func. Count: 40, Neg. LLF: 134.04846614318734
Iteration: 7, Func. Count: 46, Neg. LLF: 134.0419060237491
Iteration: 8, Func. Count: 52, Neg. LLF: 134.040802343821
Iteration: 9, Func. Count: 58, Neg. LLF: 134.04073093070875
Iteration: 10, Func. Count: 64, Neg. LLF: 134.04072997556688
Optimization terminated successfully (Exit mode 0)
Current function value: 134.04072997556688
Iterations: 10
Function evaluations: 64
Gradient evaluations: 10
Iteration: 1, Func. Count: 8, Neg. LLF: 285.30087320293416
Iteration: 2, Func. Count: 16, Neg. LLF: 163.17463949407303
Iteration: 3, Func. Count: 24, Neg. LLF: 134.82080824837314
Iteration: 4, Func. Count: 31, Neg. LLF: 186.93464363717897
Iteration: 5, Func. Count: 39, Neg. LLF: 134.14182719245258
Iteration: 6, Func. Count: 46, Neg. LLF: 134.08758434790005
Iteration: 7, Func. Count: 53, Neg. LLF: 134.04313782197096
Iteration: 8, Func. Count: 60, Neg. LLF: 134.04088932998167
Iteration: 9, Func. Count: 67, Neg. LLF: 134.04073184183747
Iteration: 10, Func. Count: 74, Neg. LLF: 134.04072997693254
Iteration: 11, Func. Count: 80, Neg. LLF: 134.0407298815877
Optimization terminated successfully (Exit mode 0)
Current function value: 134.04072997693254
Iterations: 11
Function evaluations: 80
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 263.9326748520994
Iteration: 2, Func. Count: 18, Neg. LLF: 158.62316431808844
Iteration: 3, Func. Count: 27, Neg. LLF: 134.433000390496
Iteration: 4, Func. Count: 35, Neg. LLF: 152.57614386785383
Iteration: 5, Func. Count: 44, Neg. LLF: 134.13303856294775
Iteration: 6, Func. Count: 52, Neg. LLF: 134.0642870498936
Iteration: 7, Func. Count: 60, Neg. LLF: 134.05071696817407
Iteration: 8, Func. Count: 68, Neg. LLF: 134.04114929146556
Iteration: 9, Func. Count: 76, Neg. LLF: 134.04073910211443
Iteration: 10, Func. Count: 84, Neg. LLF: 134.04072997500379
Iteration: 11, Func. Count: 91, Neg. LLF: 134.0407298732526
Optimization terminated successfully (Exit mode 0)
Current function value: 134.04072997500379
Iterations: 11
Function evaluations: 91
Gradient evaluations: 11
Iteration: 1, Func. Count: 6, Neg. LLF: 152.74194783210842
Iteration: 2, Func. Count: 12, Neg. LLF: 148.3502867463275
Iteration: 3, Func. Count: 18, Neg. LLF: 182.4254061583444
Iteration: 4, Func. Count: 24, Neg. LLF: 137.3217357222454
Iteration: 5, Func. Count: 29, Neg. LLF: 134.08615376791747
Iteration: 6, Func. Count: 34, Neg. LLF: 614820.7295339815
Iteration: 7, Func. Count: 40, Neg. LLF: 624238.5036268702
Iteration: 8, Func. Count: 46, Neg. LLF: 624062.5879109348
Iteration: 9, Func. Count: 52, Neg. LLF: 625075.0315123462
Iteration: 10, Func. Count: 58, Neg. LLF: 623928.947719339
Iteration: 11, Func. Count: 64, Neg. LLF: 624824.7823012398
Iteration: 12, Func. Count: 70, Neg. LLF: 141.7072862862233
Iteration: 13, Func. Count: 76, Neg. LLF: 131.36316990682184
Iteration: 14, Func. Count: 82, Neg. LLF: 130.54241286305782
Iteration: 15, Func. Count: 87, Neg. LLF: 130.52377093847699
Iteration: 16, Func. Count: 92, Neg. LLF: 130.52349152745595
Iteration: 17, Func. Count: 97, Neg. LLF: 130.52312390927523
Iteration: 18, Func. Count: 102, Neg. LLF: 130.5230231541312
Iteration: 19, Func. Count: 107, Neg. LLF: 130.52302049143702
Iteration: 20, Func. Count: 111, Neg. LLF: 130.52302045179212
Optimization terminated successfully (Exit mode 0)
Current function value: 130.52302049143702
Iterations: 20
Function evaluations: 111
Gradient evaluations: 20
Iteration: 1, Func. Count: 7, Neg. LLF: 500.9958285793575
Iteration: 2, Func. Count: 14, Neg. LLF: 169.98208100112936
Iteration: 3, Func. Count: 22, Neg. LLF: 8302203.996389459
Iteration: 4, Func. Count: 30, Neg. LLF: 138.9415539928819
Iteration: 5, Func. Count: 37, Neg. LLF: 137.2828138096424
Iteration: 6, Func. Count: 44, Neg. LLF: 131.92055338574403
Iteration: 7, Func. Count: 50, Neg. LLF: 131.2599772617201
Iteration: 8, Func. Count: 56, Neg. LLF: 131.3341070774159
Iteration: 9, Func. Count: 63, Neg. LLF: 130.03018815852792
Iteration: 10, Func. Count: 69, Neg. LLF: 129.8874792900051
Iteration: 11, Func. Count: 75, Neg. LLF: 129.81653505848809
Iteration: 12, Func. Count: 81, Neg. LLF: 129.81142547632462
Iteration: 13, Func. Count: 87, Neg. LLF: 129.81106360559534
Iteration: 14, Func. Count: 93, Neg. LLF: 129.8110153161126
Iteration: 15, Func. Count: 99, Neg. LLF: 129.81098904420733
Iteration: 16, Func. Count: 104, Neg. LLF: 129.8109889543006
Optimization terminated successfully (Exit mode 0)
Current function value: 129.81098904420733
Iterations: 16
Function evaluations: 104
Gradient evaluations: 16
Iteration: 1, Func. Count: 8, Neg. LLF: 348.5517137491558
Iteration: 2, Func. Count: 16, Neg. LLF: 164.31499243601587
Iteration: 3, Func. Count: 24, Neg. LLF: 9369.501296340632
Iteration: 4, Func. Count: 32, Neg. LLF: 3693816.589715138
Iteration: 5, Func. Count: 40, Neg. LLF: 137.02126013498585
Iteration: 6, Func. Count: 48, Neg. LLF: 136.18405142389045
Iteration: 7, Func. Count: 56, Neg. LLF: 130.7347135261414
Iteration: 8, Func. Count: 63, Neg. LLF: 131.34629043796645
Iteration: 9, Func. Count: 71, Neg. LLF: 129.836235766673
Iteration: 10, Func. Count: 78, Neg. LLF: 129.82323812784608
Iteration: 11, Func. Count: 85, Neg. LLF: 129.81163758263654
Iteration: 12, Func. Count: 92, Neg. LLF: 129.81104775329345
Iteration: 13, Func. Count: 99, Neg. LLF: 129.81098925012878
Iteration: 14, Func. Count: 105, Neg. LLF: 129.81098927293868
Optimization terminated successfully (Exit mode 0)
Current function value: 129.81098925012878
Iterations: 14
Function evaluations: 105
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 157.32317843138574
Iteration: 2, Func. Count: 18, Neg. LLF: 281.7648357712318
Iteration: 3, Func. Count: 27, Neg. LLF: 133.95865066583409
Iteration: 4, Func. Count: 36, Neg. LLF: 143.15673712331306
Iteration: 5, Func. Count: 45, Neg. LLF: 130.54612003695226
Iteration: 6, Func. Count: 53, Neg. LLF: 130.22761148394565
Iteration: 7, Func. Count: 61, Neg. LLF: 130.39378442094534
Iteration: 8, Func. Count: 70, Neg. LLF: 129.89647356971884
Iteration: 9, Func. Count: 78, Neg. LLF: 129.83355401688715
Iteration: 10, Func. Count: 86, Neg. LLF: 129.81282530285537
Iteration: 11, Func. Count: 94, Neg. LLF: 129.81104644293208
Iteration: 12, Func. Count: 102, Neg. LLF: 129.81098915388642
Iteration: 13, Func. Count: 109, Neg. LLF: 129.8109890946827
Optimization terminated successfully (Exit mode 0)
Current function value: 129.81098915388642
Iterations: 13
Function evaluations: 109
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 273.6482632296311
Iteration: 2, Func. Count: 20, Neg. LLF: 137.38648351152938
Iteration: 3, Func. Count: 30, Neg. LLF: 9738838.450910466
Iteration: 4, Func. Count: 40, Neg. LLF: 143.82947689906808
Iteration: 5, Func. Count: 50, Neg. LLF: 131.62516173443498
Iteration: 6, Func. Count: 59, Neg. LLF: 133.0432741028078
Iteration: 7, Func. Count: 69, Neg. LLF: 181.47038523935677
Iteration: 8, Func. Count: 79, Neg. LLF: 130.14844339581828
Iteration: 9, Func. Count: 88, Neg. LLF: 129.9008380507067
Iteration: 10, Func. Count: 97, Neg. LLF: 129.83369862976338
Iteration: 11, Func. Count: 106, Neg. LLF: 129.81199418512332
Iteration: 12, Func. Count: 115, Neg. LLF: 129.81100970668226
Iteration: 13, Func. Count: 124, Neg. LLF: 129.81099436170854
Iteration: 14, Func. Count: 133, Neg. LLF: 129.8109898998262
Iteration: 15, Func. Count: 142, Neg. LLF: 129.8109889902837
Optimization terminated successfully (Exit mode 0)
Current function value: 129.8109889902837
Iterations: 15
Function evaluations: 142
Gradient evaluations: 15
Iteration: 1, Func. Count: 7, Neg. LLF: 153.6877515669222
Iteration: 2, Func. Count: 14, Neg. LLF: 139.85860428838677
Iteration: 3, Func. Count: 22, Neg. LLF: 180.834218215338
Iteration: 4, Func. Count: 29, Neg. LLF: 138.5087475639805
Iteration: 5, Func. Count: 36, Neg. LLF: 136.2449304994406
Iteration: 6, Func. Count: 42, Neg. LLF: 132.2955247106103
Iteration: 7, Func. Count: 48, Neg. LLF: 31665.957306191594
Iteration: 8, Func. Count: 55, Neg. LLF: 73494.22444961606
Iteration: 9, Func. Count: 62, Neg. LLF: 66775.81513954668
Iteration: 10, Func. Count: 69, Neg. LLF: 64846.101438208236
Iteration: 11, Func. Count: 76, Neg. LLF: 58734.05076051207
Iteration: 12, Func. Count: 83, Neg. LLF: 131.84233297403944
Iteration: 13, Func. Count: 90, Neg. LLF: 129.76550264040833
Iteration: 14, Func. Count: 96, Neg. LLF: 129.7232622189587
Iteration: 15, Func. Count: 102, Neg. LLF: 129.71791138363199
Iteration: 16, Func. Count: 109, Neg. LLF: 129.70124747653503
Iteration: 17, Func. Count: 115, Neg. LLF: 129.70111275306527
Iteration: 18, Func. Count: 121, Neg. LLF: 129.70107904290677
Iteration: 19, Func. Count: 127, Neg. LLF: 129.7010759789334
Iteration: 20, Func. Count: 132, Neg. LLF: 129.70107593837557
Optimization terminated successfully (Exit mode 0)
Current function value: 129.7010759789334
Iterations: 20
Function evaluations: 132
Gradient evaluations: 20
Iteration: 1, Func. Count: 8, Neg. LLF: 382.9999312445333
Iteration: 2, Func. Count: 16, Neg. LLF: 10973147.572167903
Iteration: 3, Func. Count: 24, Neg. LLF: 142.77325089000306
Iteration: 4, Func. Count: 32, Neg. LLF: 215.12396846663316
Iteration: 5, Func. Count: 40, Neg. LLF: 142.47129446943546
Iteration: 6, Func. Count: 48, Neg. LLF: 132.2298125382978
Iteration: 7, Func. Count: 55, Neg. LLF: 136.78632702100754
Iteration: 8, Func. Count: 63, Neg. LLF: 132.5679014418922
Iteration: 9, Func. Count: 71, Neg. LLF: 129.9572117474936
Iteration: 10, Func. Count: 78, Neg. LLF: 129.96171437265943
Iteration: 11, Func. Count: 86, Neg. LLF: 129.74311448323414
Iteration: 12, Func. Count: 93, Neg. LLF: 129.7107037447741
Iteration: 13, Func. Count: 100, Neg. LLF: 129.7023316219851
Iteration: 14, Func. Count: 107, Neg. LLF: 129.70117357925616
Iteration: 15, Func. Count: 114, Neg. LLF: 129.7010786595955
Iteration: 16, Func. Count: 121, Neg. LLF: 129.70107600645198
Iteration: 17, Func. Count: 127, Neg. LLF: 129.70107594337003
Optimization terminated successfully (Exit mode 0)
Current function value: 129.70107600645198
Iterations: 17
Function evaluations: 127
Gradient evaluations: 17
Iteration: 1, Func. Count: 9, Neg. LLF: 304.9485206810544
Iteration: 2, Func. Count: 18, Neg. LLF: 152.7253543282516
Iteration: 3, Func. Count: 27, Neg. LLF: 2715.075489721849
Iteration: 4, Func. Count: 36, Neg. LLF: 225.39338088393646
Iteration: 5, Func. Count: 45, Neg. LLF: 135.7970481011666
Iteration: 6, Func. Count: 54, Neg. LLF: 135.45134871053432
Iteration: 7, Func. Count: 63, Neg. LLF: 132.5272570805698
Iteration: 8, Func. Count: 72, Neg. LLF: 131.1278622552477
Iteration: 9, Func. Count: 81, Neg. LLF: 129.74177438094122
Iteration: 10, Func. Count: 89, Neg. LLF: 129.71168893648763
Iteration: 11, Func. Count: 97, Neg. LLF: 129.7066332987438
Iteration: 12, Func. Count: 105, Neg. LLF: 129.70139950436007
Iteration: 13, Func. Count: 113, Neg. LLF: 129.70107889390445
Iteration: 14, Func. Count: 121, Neg. LLF: 129.70107598184015
Iteration: 15, Func. Count: 128, Neg. LLF: 129.70107602737676
Optimization terminated successfully (Exit mode 0)
Current function value: 129.70107598184015
Iterations: 15
Function evaluations: 128
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 154.36301519801148
Iteration: 2, Func. Count: 20, Neg. LLF: 333.1875593342499
Iteration: 3, Func. Count: 30, Neg. LLF: 133.5088697784142
Iteration: 4, Func. Count: 40, Neg. LLF: 140.123011659507
Iteration: 5, Func. Count: 50, Neg. LLF: 130.54230643988848
Iteration: 6, Func. Count: 59, Neg. LLF: 130.3743231900938
Iteration: 7, Func. Count: 69, Neg. LLF: 130.05518519692106
Iteration: 8, Func. Count: 79, Neg. LLF: 129.71095930858786
Iteration: 9, Func. Count: 88, Neg. LLF: 129.70249468662925
Iteration: 10, Func. Count: 97, Neg. LLF: 129.70119378674144
Iteration: 11, Func. Count: 106, Neg. LLF: 129.70108239999664
Iteration: 12, Func. Count: 115, Neg. LLF: 129.70107603703624
Iteration: 13, Func. Count: 123, Neg. LLF: 129.70107599320195
Optimization terminated successfully (Exit mode 0)
Current function value: 129.70107603703624
Iterations: 13
Function evaluations: 123
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 159.78729730294882
Iteration: 2, Func. Count: 22, Neg. LLF: 328.59094635844735
Iteration: 3, Func. Count: 33, Neg. LLF: 133.95828968975775
Iteration: 4, Func. Count: 44, Neg. LLF: 152.83344165604788
Iteration: 5, Func. Count: 55, Neg. LLF: 130.7897631455584
Iteration: 6, Func. Count: 65, Neg. LLF: 130.3242287417334
Iteration: 7, Func. Count: 75, Neg. LLF: 138.11618327303552
Iteration: 8, Func. Count: 87, Neg. LLF: 129.74880475557245
Iteration: 9, Func. Count: 97, Neg. LLF: 129.7051249230872
Iteration: 10, Func. Count: 107, Neg. LLF: 129.70163470096722
Iteration: 11, Func. Count: 117, Neg. LLF: 129.70120800172845
Iteration: 12, Func. Count: 127, Neg. LLF: 129.70107660156515
Iteration: 13, Func. Count: 137, Neg. LLF: 129.70107600746167
Optimization terminated successfully (Exit mode 0)
Current function value: 129.70107600746167
Iterations: 13
Function evaluations: 137
Gradient evaluations: 13
Iteration: 1, Func. Count: 8, Neg. LLF: 151.23274615654856
Iteration: 2, Func. Count: 16, Neg. LLF: 139.66378448744015
Iteration: 3, Func. Count: 25, Neg. LLF: 156.25399152879257
Iteration: 4, Func. Count: 33, Neg. LLF: 139.74025486011365
Iteration: 5, Func. Count: 41, Neg. LLF: 136.37658587755607
Iteration: 6, Func. Count: 48, Neg. LLF: 131.98514334171702
Iteration: 7, Func. Count: 55, Neg. LLF: 53541.30563930371
Iteration: 8, Func. Count: 63, Neg. LLF: 68824.62982167245
Iteration: 9, Func. Count: 71, Neg. LLF: 57699.1396702028
Iteration: 10, Func. Count: 79, Neg. LLF: 60245.05834012838
Iteration: 11, Func. Count: 87, Neg. LLF: 52681.58644054602
Iteration: 12, Func. Count: 95, Neg. LLF: 131.8189496682954
Iteration: 13, Func. Count: 103, Neg. LLF: 129.8028288057613
Iteration: 14, Func. Count: 111, Neg. LLF: 129.70670535531238
Iteration: 15, Func. Count: 119, Neg. LLF: 129.7013260514406
Iteration: 16, Func. Count: 126, Neg. LLF: 129.70108462458646
Iteration: 17, Func. Count: 133, Neg. LLF: 129.70107837219862
Iteration: 18, Func. Count: 140, Neg. LLF: 129.7010759982552
Iteration: 19, Func. Count: 146, Neg. LLF: 129.70107604920594
Optimization terminated successfully (Exit mode 0)
Current function value: 129.7010759982552
Iterations: 19
Function evaluations: 146
Gradient evaluations: 19
Iteration: 1, Func. Count: 9, Neg. LLF: 333.8069893913779
Iteration: 2, Func. Count: 18, Neg. LLF: 1514.792249172727
Iteration: 3, Func. Count: 27, Neg. LLF: 137.83689686479906
Iteration: 4, Func. Count: 36, Neg. LLF: 7833138.868996054
Iteration: 5, Func. Count: 45, Neg. LLF: 137.47851621177708
Iteration: 6, Func. Count: 54, Neg. LLF: 131.12345622048983
Iteration: 7, Func. Count: 62, Neg. LLF: 132.6022219351889
Iteration: 8, Func. Count: 71, Neg. LLF: 130.60925172181402
Iteration: 9, Func. Count: 80, Neg. LLF: 129.77785966296375
Iteration: 10, Func. Count: 88, Neg. LLF: 129.72060990319184
Iteration: 11, Func. Count: 96, Neg. LLF: 129.7065480733502
Iteration: 12, Func. Count: 104, Neg. LLF: 129.70154432561975
Iteration: 13, Func. Count: 112, Neg. LLF: 129.70111843431323
Iteration: 14, Func. Count: 120, Neg. LLF: 129.70107660793576
Iteration: 15, Func. Count: 128, Neg. LLF: 129.70107596713754
Optimization terminated successfully (Exit mode 0)
Current function value: 129.70107596713754
Iterations: 15
Function evaluations: 128
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 275.87506697600145
Iteration: 2, Func. Count: 20, Neg. LLF: 138.99766297599413
Iteration: 3, Func. Count: 30, Neg. LLF: 6144974.644982625
Iteration: 4, Func. Count: 40, Neg. LLF: 189.45168094703348
Iteration: 5, Func. Count: 50, Neg. LLF: 139.76721358858023
Iteration: 6, Func. Count: 60, Neg. LLF: 133.32775218691907
Iteration: 7, Func. Count: 70, Neg. LLF: 133.67873606936828
Iteration: 8, Func. Count: 80, Neg. LLF: 131.40890959207817
Iteration: 9, Func. Count: 90, Neg. LLF: 129.7218506811149
Iteration: 10, Func. Count: 99, Neg. LLF: 129.70311489621167
Iteration: 11, Func. Count: 108, Neg. LLF: 129.70148535213758
Iteration: 12, Func. Count: 117, Neg. LLF: 129.70132578974096
Iteration: 13, Func. Count: 126, Neg. LLF: 129.7011764545145
Iteration: 14, Func. Count: 135, Neg. LLF: 129.70108213184622
Iteration: 15, Func. Count: 144, Neg. LLF: 129.7010761850713
Iteration: 16, Func. Count: 152, Neg. LLF: 129.70107623060363
Optimization terminated successfully (Exit mode 0)
Current function value: 129.7010761850713
Iterations: 16
Function evaluations: 152
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 155.2248581590388
Iteration: 2, Func. Count: 22, Neg. LLF: 368.548699716665
Iteration: 3, Func. Count: 33, Neg. LLF: 133.7142571366258
Iteration: 4, Func. Count: 44, Neg. LLF: 152.34808391678294
Iteration: 5, Func. Count: 55, Neg. LLF: 130.61043015968588
Iteration: 6, Func. Count: 65, Neg. LLF: 129.97784812706257
Iteration: 7, Func. Count: 75, Neg. LLF: 130.48799538906724
Iteration: 8, Func. Count: 86, Neg. LLF: 129.7207412824086
Iteration: 9, Func. Count: 96, Neg. LLF: 129.70751752467467
Iteration: 10, Func. Count: 106, Neg. LLF: 129.70355479703392
Iteration: 11, Func. Count: 116, Neg. LLF: 129.70117673558454
Iteration: 12, Func. Count: 126, Neg. LLF: 129.7010852927671
Iteration: 13, Func. Count: 136, Neg. LLF: 129.70107627932703
Iteration: 14, Func. Count: 145, Neg. LLF: 129.70107623544044
Optimization terminated successfully (Exit mode 0)
Current function value: 129.70107627932703
Iterations: 14
Function evaluations: 145
Gradient evaluations: 14
Iteration: 1, Func. Count: 12, Neg. LLF: 158.22892904760747
Iteration: 2, Func. Count: 24, Neg. LLF: 404.9433058506036
Iteration: 3, Func. Count: 36, Neg. LLF: 133.78255801450527
Iteration: 4, Func. Count: 48, Neg. LLF: 169.5883410030538
Iteration: 5, Func. Count: 60, Neg. LLF: 131.02461151313756
Iteration: 6, Func. Count: 71, Neg. LLF: 131.63159142870404
Iteration: 7, Func. Count: 83, Neg. LLF: 135.9219084748229
Iteration: 8, Func. Count: 96, Neg. LLF: 129.77339181846023
Iteration: 9, Func. Count: 107, Neg. LLF: 129.72118154538566
Iteration: 10, Func. Count: 118, Neg. LLF: 129.70237445034698
Iteration: 11, Func. Count: 129, Neg. LLF: 129.70135383503782
Iteration: 12, Func. Count: 140, Neg. LLF: 129.70109673122647
Iteration: 13, Func. Count: 151, Neg. LLF: 129.70107634223592
Iteration: 14, Func. Count: 161, Neg. LLF: 129.7010764023895
Optimization terminated successfully (Exit mode 0)
Current function value: 129.70107634223592
Iterations: 14
Function evaluations: 161
Gradient evaluations: 14
Iteration: 1, Func. Count: 5, Neg. LLF: 142.5436752940473
Iteration: 2, Func. Count: 9, Neg. LLF: 151.97882444815096
Iteration: 3, Func. Count: 14, Neg. LLF: 140.3287423383907
Iteration: 4, Func. Count: 18, Neg. LLF: 138.04768344597443
Iteration: 5, Func. Count: 22, Neg. LLF: 810.5466757003525
Iteration: 6, Func. Count: 27, Neg. LLF: 139.48017394453333
Iteration: 7, Func. Count: 32, Neg. LLF: 136.47639033767783
Iteration: 8, Func. Count: 36, Neg. LLF: 136.3400019999044
Iteration: 9, Func. Count: 40, Neg. LLF: 136.3449191681755
Iteration: 10, Func. Count: 45, Neg. LLF: 136.3354177554374
Iteration: 11, Func. Count: 49, Neg. LLF: 136.33540644826883
Iteration: 12, Func. Count: 52, Neg. LLF: 136.33540650922652
Optimization terminated successfully (Exit mode 0)
Current function value: 136.33540644826883
Iterations: 12
Function evaluations: 52
Gradient evaluations: 12
Iteration: 1, Func. Count: 6, Neg. LLF: 179.23338922152183
Iteration: 2, Func. Count: 12, Neg. LLF: 152.45135300641806
Iteration: 3, Func. Count: 18, Neg. LLF: 138.71208119319687
Iteration: 4, Func. Count: 23, Neg. LLF: 137.7391633150088
Iteration: 5, Func. Count: 28, Neg. LLF: 137.39870655281302
Iteration: 6, Func. Count: 33, Neg. LLF: 136.39452824770152
Iteration: 7, Func. Count: 38, Neg. LLF: 136.34503894369396
Iteration: 8, Func. Count: 43, Neg. LLF: 136.33860472522798
Iteration: 9, Func. Count: 48, Neg. LLF: 136.3354281047127
Iteration: 10, Func. Count: 53, Neg. LLF: 136.3354064929283
Iteration: 11, Func. Count: 57, Neg. LLF: 136.33540656222908
Optimization terminated successfully (Exit mode 0)
Current function value: 136.3354064929283
Iterations: 11
Function evaluations: 57
Gradient evaluations: 11
Iteration: 1, Func. Count: 7, Neg. LLF: 169.8975204292203
Iteration: 2, Func. Count: 14, Neg. LLF: 152.73815288501785
Iteration: 3, Func. Count: 21, Neg. LLF: 137.94608935277648
Iteration: 4, Func. Count: 27, Neg. LLF: 137.41265750113715
Iteration: 5, Func. Count: 33, Neg. LLF: 138.00524096020473
Iteration: 6, Func. Count: 41, Neg. LLF: 136.64030493047886
Iteration: 7, Func. Count: 47, Neg. LLF: 136.359482185485
Iteration: 8, Func. Count: 53, Neg. LLF: 136.34936814898867
Iteration: 9, Func. Count: 59, Neg. LLF: 136.33767938396983
Iteration: 10, Func. Count: 65, Neg. LLF: 136.33610803424654
Iteration: 11, Func. Count: 71, Neg. LLF: 136.33544376866908
Iteration: 12, Func. Count: 77, Neg. LLF: 136.33540776533744
Iteration: 13, Func. Count: 83, Neg. LLF: 136.33540644028955
Iteration: 14, Func. Count: 88, Neg. LLF: 136.33540652802438
Optimization terminated successfully (Exit mode 0)
Current function value: 136.33540644028955
Iterations: 14
Function evaluations: 88
Gradient evaluations: 14
Iteration: 1, Func. Count: 8, Neg. LLF: 165.8622464196084
Iteration: 2, Func. Count: 16, Neg. LLF: 154.2780687131576
Iteration: 3, Func. Count: 24, Neg. LLF: 143.39383643484106
Iteration: 4, Func. Count: 32, Neg. LLF: 135.47165025944207
Iteration: 5, Func. Count: 39, Neg. LLF: 135.03045333842982
Iteration: 6, Func. Count: 46, Neg. LLF: 134.78216095000252
Iteration: 7, Func. Count: 53, Neg. LLF: 134.66731222807678
Iteration: 8, Func. Count: 60, Neg. LLF: 134.63344354196383
Iteration: 9, Func. Count: 67, Neg. LLF: 134.62477034094496
Iteration: 10, Func. Count: 74, Neg. LLF: 134.62424996454612
Iteration: 11, Func. Count: 81, Neg. LLF: 134.62417024971808
Iteration: 12, Func. Count: 88, Neg. LLF: 134.6241689610425
Iteration: 13, Func. Count: 94, Neg. LLF: 134.62416882817595
Optimization terminated successfully (Exit mode 0)
Current function value: 134.6241689610425
Iterations: 13
Function evaluations: 94
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 163.99246054703536
Iteration: 2, Func. Count: 18, Neg. LLF: 151.90079740625822
Iteration: 3, Func. Count: 27, Neg. LLF: 140.65944377626286
Iteration: 4, Func. Count: 36, Neg. LLF: 135.27034767044043
Iteration: 5, Func. Count: 44, Neg. LLF: 135.2087536678681
Iteration: 6, Func. Count: 52, Neg. LLF: 135.16272539458828
Iteration: 7, Func. Count: 60, Neg. LLF: 135.03874894596655
Iteration: 8, Func. Count: 68, Neg. LLF: 134.784407443896
Iteration: 9, Func. Count: 76, Neg. LLF: 134.77513988262152
Iteration: 10, Func. Count: 85, Neg. LLF: 134.62576695485316
Iteration: 11, Func. Count: 93, Neg. LLF: 134.62433869569682
Iteration: 12, Func. Count: 101, Neg. LLF: 134.62418813941025
Iteration: 13, Func. Count: 109, Neg. LLF: 134.62416719480757
Iteration: 14, Func. Count: 117, Neg. LLF: 134.62421720334942
Optimization terminated successfully (Exit mode 0)
Current function value: 134.62416720703223
Iterations: 15
Function evaluations: 119
Gradient evaluations: 14
Iteration: 1, Func. Count: 6, Neg. LLF: 142.01900443948887
Iteration: 2, Func. Count: 11, Neg. LLF: 144.87363900987876
Iteration: 3, Func. Count: 17, Neg. LLF: 139.96191307879187
Iteration: 4, Func. Count: 22, Neg. LLF: 145.2215641449022
Iteration: 5, Func. Count: 28, Neg. LLF: 138.77504029116784
Iteration: 6, Func. Count: 33, Neg. LLF: 136.31720863021877
Iteration: 7, Func. Count: 38, Neg. LLF: 136.62657566444364
Iteration: 8, Func. Count: 44, Neg. LLF: 136.2762092206786
Iteration: 9, Func. Count: 49, Neg. LLF: 136.2679252502723
Iteration: 10, Func. Count: 54, Neg. LLF: 136.26607568689553
Iteration: 11, Func. Count: 59, Neg. LLF: 136.2660465886098
Iteration: 12, Func. Count: 63, Neg. LLF: 136.26604655876733
Optimization terminated successfully (Exit mode 0)
Current function value: 136.2660465886098
Iterations: 12
Function evaluations: 63
Gradient evaluations: 12
Iteration: 1, Func. Count: 7, Neg. LLF: 280.44391724284964
Iteration: 2, Func. Count: 14, Neg. LLF: 134.6435763367395
Iteration: 3, Func. Count: 20, Neg. LLF: 152.0537505836883
Iteration: 4, Func. Count: 27, Neg. LLF: 134.22630506806811
Iteration: 5, Func. Count: 33, Neg. LLF: 134.1319819651899
Iteration: 6, Func. Count: 39, Neg. LLF: 134.05413778670604
Iteration: 7, Func. Count: 45, Neg. LLF: 134.04216801939478
Iteration: 8, Func. Count: 51, Neg. LLF: 134.04091276856505
Iteration: 9, Func. Count: 57, Neg. LLF: 134.04073124533562
Iteration: 10, Func. Count: 63, Neg. LLF: 134.04072997207157
Iteration: 11, Func. Count: 68, Neg. LLF: 134.0407298484224
Optimization terminated successfully (Exit mode 0)
Current function value: 134.04072997207157
Iterations: 11
Function evaluations: 68
Gradient evaluations: 11
Iteration: 1, Func. Count: 8, Neg. LLF: 262.6769552709366
Iteration: 2, Func. Count: 16, Neg. LLF: 138.66837177527339
Iteration: 3, Func. Count: 24, Neg. LLF: 136.18144198519934
Iteration: 4, Func. Count: 31, Neg. LLF: 134.44492886359026
Iteration: 5, Func. Count: 38, Neg. LLF: 134.2909533197613
Iteration: 6, Func. Count: 45, Neg. LLF: 134.0549511677374
Iteration: 7, Func. Count: 52, Neg. LLF: 134.0449035703255
Iteration: 8, Func. Count: 59, Neg. LLF: 134.04097044950436
Iteration: 9, Func. Count: 66, Neg. LLF: 134.04073480951604
Iteration: 10, Func. Count: 73, Neg. LLF: 134.04073000446695
Iteration: 11, Func. Count: 79, Neg. LLF: 134.0407299431156
Optimization terminated successfully (Exit mode 0)
Current function value: 134.04073000446695
Iterations: 11
Function evaluations: 79
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 257.39127193271554
Iteration: 2, Func. Count: 18, Neg. LLF: 138.97851143539503
Iteration: 3, Func. Count: 27, Neg. LLF: 134.4385321412394
Iteration: 4, Func. Count: 35, Neg. LLF: 134.22469423499172
Iteration: 5, Func. Count: 43, Neg. LLF: 134.04704729385986
Iteration: 6, Func. Count: 51, Neg. LLF: 134.06105404529347
Iteration: 7, Func. Count: 60, Neg. LLF: 134.04073202590595
Iteration: 8, Func. Count: 68, Neg. LLF: 134.04073022214973
Iteration: 9, Func. Count: 75, Neg. LLF: 134.04073012672484
Optimization terminated successfully (Exit mode 0)
Current function value: 134.04073022214973
Iterations: 9
Function evaluations: 75
Gradient evaluations: 9
Iteration: 1, Func. Count: 10, Neg. LLF: 253.21569578087121
Iteration: 2, Func. Count: 20, Neg. LLF: 136.69189482723905
Iteration: 3, Func. Count: 29, Neg. LLF: 145.32098975176248
Iteration: 4, Func. Count: 39, Neg. LLF: 138.46117296856897
Iteration: 5, Func. Count: 49, Neg. LLF: 135.88731643836974
Iteration: 6, Func. Count: 59, Neg. LLF: 134.44927553310092
Iteration: 7, Func. Count: 69, Neg. LLF: 133.97596961426515
Iteration: 8, Func. Count: 79, Neg. LLF: 133.87724526291663
Iteration: 9, Func. Count: 88, Neg. LLF: 133.8749277552732
Iteration: 10, Func. Count: 97, Neg. LLF: 133.87467716253602
Iteration: 11, Func. Count: 106, Neg. LLF: 133.87464319411689
Iteration: 12, Func. Count: 115, Neg. LLF: 133.87463536541566
Iteration: 13, Func. Count: 123, Neg. LLF: 133.874635256164
Optimization terminated successfully (Exit mode 0)
Current function value: 133.87463536541566
Iterations: 13
Function evaluations: 123
Gradient evaluations: 13
Iteration: 1, Func. Count: 7, Neg. LLF: 148.34772322804207
Iteration: 2, Func. Count: 14, Neg. LLF: 141.24650270263874
Iteration: 3, Func. Count: 21, Neg. LLF: 144.09360580374624
Iteration: 4, Func. Count: 28, Neg. LLF: 136.8825666066688
Iteration: 5, Func. Count: 34, Neg. LLF: 134.9207713346201
Iteration: 6, Func. Count: 40, Neg. LLF: 639830.229087754
Iteration: 7, Func. Count: 47, Neg. LLF: 648103.1830892552
Iteration: 8, Func. Count: 54, Neg. LLF: 643717.8111267436
Iteration: 9, Func. Count: 61, Neg. LLF: 635953.7414559606
Iteration: 10, Func. Count: 68, Neg. LLF: 635237.910717991
Iteration: 11, Func. Count: 75, Neg. LLF: 630229.3755466787
Iteration: 12, Func. Count: 82, Neg. LLF: 631850.2257811289
Iteration: 13, Func. Count: 89, Neg. LLF: 137.05389937905497
Iteration: 14, Func. Count: 96, Neg. LLF: 131.0057961611118
Iteration: 15, Func. Count: 103, Neg. LLF: 130.5249475917357
Iteration: 16, Func. Count: 109, Neg. LLF: 130.5231444750624
Iteration: 17, Func. Count: 115, Neg. LLF: 130.5232656564476
Iteration: 18, Func. Count: 122, Neg. LLF: 130.52302156428956
Iteration: 19, Func. Count: 128, Neg. LLF: 130.5230201339153
Iteration: 20, Func. Count: 133, Neg. LLF: 130.52302009426057
Optimization terminated successfully (Exit mode 0)
Current function value: 130.5230201339153
Iterations: 20
Function evaluations: 133
Gradient evaluations: 20
Iteration: 1, Func. Count: 8, Neg. LLF: 168.781098223743
Iteration: 2, Func. Count: 16, Neg. LLF: 148.75871272561707
Iteration: 3, Func. Count: 24, Neg. LLF: 229.13606057759284
Iteration: 4, Func. Count: 32, Neg. LLF: 135.8164060679857
Iteration: 5, Func. Count: 40, Neg. LLF: 216.2767828863222
Iteration: 6, Func. Count: 48, Neg. LLF: 131.1412013744434
Iteration: 7, Func. Count: 56, Neg. LLF: 129.82174668117443
Iteration: 8, Func. Count: 63, Neg. LLF: 129.8142473493238
Iteration: 9, Func. Count: 70, Neg. LLF: 129.81176864860586
Iteration: 10, Func. Count: 77, Neg. LLF: 129.81114512079807
Iteration: 11, Func. Count: 84, Neg. LLF: 129.81099404416054
Iteration: 12, Func. Count: 91, Neg. LLF: 129.8109892541125
Iteration: 13, Func. Count: 97, Neg. LLF: 129.81098916425992
Optimization terminated successfully (Exit mode 0)
Current function value: 129.8109892541125
Iterations: 13
Function evaluations: 97
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 160.86292664516597
Iteration: 2, Func. Count: 18, Neg. LLF: 179.1294500402595
Iteration: 3, Func. Count: 27, Neg. LLF: 143.51239364665614
Iteration: 4, Func. Count: 36, Neg. LLF: 132.4856724938394
Iteration: 5, Func. Count: 44, Neg. LLF: 133.71318078099088
Iteration: 6, Func. Count: 53, Neg. LLF: 133.80058997019526
Iteration: 7, Func. Count: 62, Neg. LLF: 130.06820505217877
Iteration: 8, Func. Count: 71, Neg. LLF: 129.8171013431703
Iteration: 9, Func. Count: 79, Neg. LLF: 129.8125974112199
Iteration: 10, Func. Count: 87, Neg. LLF: 129.81113783731337
Iteration: 11, Func. Count: 95, Neg. LLF: 129.81099452549836
Iteration: 12, Func. Count: 103, Neg. LLF: 129.81098901469065
Iteration: 13, Func. Count: 110, Neg. LLF: 129.81098903748418
Optimization terminated successfully (Exit mode 0)
Current function value: 129.81098901469065
Iterations: 13
Function evaluations: 110
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 158.85657806653595
Iteration: 2, Func. Count: 20, Neg. LLF: 197.2713908372722
Iteration: 3, Func. Count: 30, Neg. LLF: 135.68250660966825
Iteration: 4, Func. Count: 40, Neg. LLF: 176.42231910497964
Iteration: 5, Func. Count: 50, Neg. LLF: 130.3961134405411
Iteration: 6, Func. Count: 59, Neg. LLF: 130.14295680446912
Iteration: 7, Func. Count: 68, Neg. LLF: 129.86689348516643
Iteration: 8, Func. Count: 77, Neg. LLF: 129.85118473305386
Iteration: 9, Func. Count: 87, Neg. LLF: 129.81110613546014
Iteration: 10, Func. Count: 96, Neg. LLF: 129.81100000029105
Iteration: 11, Func. Count: 105, Neg. LLF: 129.81098924268395
Iteration: 12, Func. Count: 113, Neg. LLF: 129.81098918342556
Optimization terminated successfully (Exit mode 0)
Current function value: 129.81098924268395
Iterations: 12
Function evaluations: 113
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 157.60138541677142
Iteration: 2, Func. Count: 22, Neg. LLF: 192.79702123111562
Iteration: 3, Func. Count: 33, Neg. LLF: 133.21648865763092
Iteration: 4, Func. Count: 43, Neg. LLF: 233.79216541491508
Iteration: 5, Func. Count: 54, Neg. LLF: 138.79954925044194
Iteration: 6, Func. Count: 66, Neg. LLF: 130.8103506534948
Iteration: 7, Func. Count: 76, Neg. LLF: 133.73874096701036
Iteration: 8, Func. Count: 87, Neg. LLF: 130.1999008191942
Iteration: 9, Func. Count: 97, Neg. LLF: 129.9224276631103
Iteration: 10, Func. Count: 107, Neg. LLF: 129.82941392295845
Iteration: 11, Func. Count: 117, Neg. LLF: 129.81299266695697
Iteration: 12, Func. Count: 127, Neg. LLF: 129.81106677116338
Iteration: 13, Func. Count: 137, Neg. LLF: 129.8109946199115
Iteration: 14, Func. Count: 147, Neg. LLF: 129.81099064036403
Iteration: 15, Func. Count: 157, Neg. LLF: 129.81098923554114
Iteration: 16, Func. Count: 166, Neg. LLF: 129.81098928360933
Optimization terminated successfully (Exit mode 0)
Current function value: 129.81098923554114
Iterations: 16
Function evaluations: 166
Gradient evaluations: 16
Iteration: 1, Func. Count: 8, Neg. LLF: 147.68144471612294
Iteration: 2, Func. Count: 16, Neg. LLF: 143.32560646049203
Iteration: 3, Func. Count: 25, Neg. LLF: 142.98973755251095
Iteration: 4, Func. Count: 33, Neg. LLF: 136.5598023625539
Iteration: 5, Func. Count: 40, Neg. LLF: 135.50046943593895
Iteration: 6, Func. Count: 47, Neg. LLF: 24920.432954473687
Iteration: 7, Func. Count: 55, Neg. LLF: 72269.335782465
Iteration: 8, Func. Count: 63, Neg. LLF: 74390.16422364356
Iteration: 9, Func. Count: 71, Neg. LLF: 68754.94288867971
Iteration: 10, Func. Count: 79, Neg. LLF: 63661.06760365902
Iteration: 11, Func. Count: 87, Neg. LLF: 59001.2647401338
Iteration: 12, Func. Count: 95, Neg. LLF: 57167.90328647372
Iteration: 13, Func. Count: 103, Neg. LLF: 55131.65991175477
Iteration: 14, Func. Count: 111, Neg. LLF: 132.50297512159548
Iteration: 15, Func. Count: 119, Neg. LLF: 30451.83879407269
Iteration: 16, Func. Count: 127, Neg. LLF: 129.8788080057214
Iteration: 17, Func. Count: 134, Neg. LLF: 129.78910198505284
Iteration: 18, Func. Count: 141, Neg. LLF: 129.70606559767992
Iteration: 19, Func. Count: 148, Neg. LLF: 129.70124953432494
Iteration: 20, Func. Count: 155, Neg. LLF: 129.70107979023288
Iteration: 21, Func. Count: 162, Neg. LLF: 129.7010761977968
Iteration: 22, Func. Count: 168, Neg. LLF: 129.70107615725985
Optimization terminated successfully (Exit mode 0)
Current function value: 129.7010761977968
Iterations: 22
Function evaluations: 168
Gradient evaluations: 22
Iteration: 1, Func. Count: 9, Neg. LLF: 170.02289397955178
Iteration: 2, Func. Count: 18, Neg. LLF: 164.7181828775301
Iteration: 3, Func. Count: 27, Neg. LLF: 222.92369736670423
Iteration: 4, Func. Count: 36, Neg. LLF: 271.28285489514406
Iteration: 5, Func. Count: 45, Neg. LLF: 147.37337073442242
Iteration: 6, Func. Count: 54, Neg. LLF: 139.6221796474414
Iteration: 7, Func. Count: 63, Neg. LLF: 131.41353175973097
Iteration: 8, Func. Count: 72, Neg. LLF: 129.79284132189863
Iteration: 9, Func. Count: 80, Neg. LLF: 129.75122025284566
Iteration: 10, Func. Count: 88, Neg. LLF: 129.73976727723644
Iteration: 11, Func. Count: 97, Neg. LLF: 129.70206603035484
Iteration: 12, Func. Count: 105, Neg. LLF: 129.7011057853653
Iteration: 13, Func. Count: 113, Neg. LLF: 129.70107645662836
Iteration: 14, Func. Count: 121, Neg. LLF: 129.7010759689605
Optimization terminated successfully (Exit mode 0)
Current function value: 129.7010759689605
Iterations: 14
Function evaluations: 121
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 159.37578030234877
Iteration: 2, Func. Count: 20, Neg. LLF: 180.5690158711674
Iteration: 3, Func. Count: 30, Neg. LLF: 204.4896116760767
Iteration: 4, Func. Count: 40, Neg. LLF: 135.10545729693018
Iteration: 5, Func. Count: 50, Neg. LLF: 203.03250438268668
Iteration: 6, Func. Count: 60, Neg. LLF: 130.47276215303867
Iteration: 7, Func. Count: 69, Neg. LLF: 130.3688139175603
Iteration: 8, Func. Count: 79, Neg. LLF: 129.96376140126466
Iteration: 9, Func. Count: 89, Neg. LLF: 129.7019265841667
Iteration: 10, Func. Count: 98, Neg. LLF: 129.70110619823805
Iteration: 11, Func. Count: 107, Neg. LLF: 129.7010799985648
Iteration: 12, Func. Count: 116, Neg. LLF: 129.70107748972345
Iteration: 13, Func. Count: 125, Neg. LLF: 129.70107633124857
Iteration: 14, Func. Count: 133, Neg. LLF: 129.70107637685896
Optimization terminated successfully (Exit mode 0)
Current function value: 129.70107633124857
Iterations: 14
Function evaluations: 133
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 159.49202206291028
Iteration: 2, Func. Count: 22, Neg. LLF: 199.83530646622415
Iteration: 3, Func. Count: 33, Neg. LLF: 130.5791712596839
Iteration: 4, Func. Count: 43, Neg. LLF: 136.19962957598165
Iteration: 5, Func. Count: 54, Neg. LLF: 130.71705745342763
Iteration: 6, Func. Count: 65, Neg. LLF: 130.12907172970995
Iteration: 7, Func. Count: 76, Neg. LLF: 129.71594873372902
Iteration: 8, Func. Count: 86, Neg. LLF: 129.709624803342
Iteration: 9, Func. Count: 96, Neg. LLF: 129.70247302152083
Iteration: 10, Func. Count: 106, Neg. LLF: 129.7015409776421
Iteration: 11, Func. Count: 116, Neg. LLF: 129.70111690841813
Iteration: 12, Func. Count: 126, Neg. LLF: 129.70107877307615
Iteration: 13, Func. Count: 136, Neg. LLF: 129.70107605496776
Iteration: 14, Func. Count: 145, Neg. LLF: 129.70107601115478
Optimization terminated successfully (Exit mode 0)
Current function value: 129.70107605496776
Iterations: 14
Function evaluations: 145
Gradient evaluations: 14
Iteration: 1, Func. Count: 12, Neg. LLF: 156.24348209379468
Iteration: 2, Func. Count: 24, Neg. LLF: 186.2365137742348
Iteration: 3, Func. Count: 36, Neg. LLF: 131.12157699328208
Iteration: 4, Func. Count: 47, Neg. LLF: 192.14489888391142
Iteration: 5, Func. Count: 59, Neg. LLF: 134.96068782864577
Iteration: 6, Func. Count: 72, Neg. LLF: 129.80764974069766
Iteration: 7, Func. Count: 83, Neg. LLF: 129.75101001564434
Iteration: 8, Func. Count: 94, Neg. LLF: 129.7017183689736
Iteration: 9, Func. Count: 105, Neg. LLF: 129.70108863769028
Iteration: 10, Func. Count: 116, Neg. LLF: 129.70107685428613
Iteration: 11, Func. Count: 127, Neg. LLF: 129.7010760552844
Optimization terminated successfully (Exit mode 0)
Current function value: 129.7010760552844
Iterations: 11
Function evaluations: 127
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 146.57037169126193
Iteration: 2, Func. Count: 18, Neg. LLF: 142.506021661648
Iteration: 3, Func. Count: 28, Neg. LLF: 143.19689009319765
Iteration: 4, Func. Count: 37, Neg. LLF: 136.5780025930294
Iteration: 5, Func. Count: 45, Neg. LLF: 135.17897194170803
Iteration: 6, Func. Count: 53, Neg. LLF: 60058.25048502471
Iteration: 7, Func. Count: 62, Neg. LLF: 104889.56179938398
Iteration: 8, Func. Count: 71, Neg. LLF: 91754.90131510072
Iteration: 9, Func. Count: 80, Neg. LLF: 83138.96510646373
Iteration: 10, Func. Count: 89, Neg. LLF: 74493.85346391251
Iteration: 11, Func. Count: 98, Neg. LLF: 65679.98084404701
Iteration: 12, Func. Count: 107, Neg. LLF: 166.1935189629114
Iteration: 13, Func. Count: 116, Neg. LLF: 130.91598065765828
Iteration: 14, Func. Count: 125, Neg. LLF: 130.32602138404172
Iteration: 15, Func. Count: 134, Neg. LLF: 129.78087992792194
Iteration: 16, Func. Count: 142, Neg. LLF: 129.72160321570266
Iteration: 17, Func. Count: 150, Neg. LLF: 129.70433707695844
Iteration: 18, Func. Count: 158, Neg. LLF: 129.70125383166612
Iteration: 19, Func. Count: 166, Neg. LLF: 129.7010823194745
Iteration: 20, Func. Count: 174, Neg. LLF: 129.7010761263403
Iteration: 21, Func. Count: 181, Neg. LLF: 129.70107617729488
Optimization terminated successfully (Exit mode 0)
Current function value: 129.7010761263403
Iterations: 21
Function evaluations: 181
Gradient evaluations: 21
Iteration: 1, Func. Count: 10, Neg. LLF: 181.9290718776912
Iteration: 2, Func. Count: 20, Neg. LLF: 171.8000696163792
Iteration: 3, Func. Count: 30, Neg. LLF: 206.12316709465566
Iteration: 4, Func. Count: 40, Neg. LLF: 232.5781549056609
Iteration: 5, Func. Count: 50, Neg. LLF: 147.75500911227599
Iteration: 6, Func. Count: 60, Neg. LLF: 136.84251292954806
Iteration: 7, Func. Count: 70, Neg. LLF: 131.59767823362412
Iteration: 8, Func. Count: 80, Neg. LLF: 129.79515665651073
Iteration: 9, Func. Count: 89, Neg. LLF: 129.73865445736192
Iteration: 10, Func. Count: 98, Neg. LLF: 129.74523726974178
Iteration: 11, Func. Count: 108, Neg. LLF: 129.70201261529857
Iteration: 12, Func. Count: 117, Neg. LLF: 129.70111751647008
Iteration: 13, Func. Count: 126, Neg. LLF: 129.70107644744425
Iteration: 14, Func. Count: 134, Neg. LLF: 129.7010763844848
Optimization terminated successfully (Exit mode 0)
Current function value: 129.70107644744425
Iterations: 14
Function evaluations: 134
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 158.48054451509626
Iteration: 2, Func. Count: 22, Neg. LLF: 182.034979204723
Iteration: 3, Func. Count: 33, Neg. LLF: 199.78172197857072
Iteration: 4, Func. Count: 44, Neg. LLF: 135.16413288237538
Iteration: 5, Func. Count: 55, Neg. LLF: 201.59876649676627
Iteration: 6, Func. Count: 66, Neg. LLF: 130.1602358924457
Iteration: 7, Func. Count: 76, Neg. LLF: 130.3237933485188
Iteration: 8, Func. Count: 87, Neg. LLF: 129.90918220220064
Iteration: 9, Func. Count: 98, Neg. LLF: 129.70287845313985
Iteration: 10, Func. Count: 108, Neg. LLF: 129.70111841337933
Iteration: 11, Func. Count: 118, Neg. LLF: 129.70107827591374
Iteration: 12, Func. Count: 128, Neg. LLF: 129.7010761017099
Iteration: 13, Func. Count: 137, Neg. LLF: 129.7010761472003
Optimization terminated successfully (Exit mode 0)
Current function value: 129.7010761017099
Iterations: 13
Function evaluations: 137
Gradient evaluations: 13
Iteration: 1, Func. Count: 12, Neg. LLF: 158.41477228514898
Iteration: 2, Func. Count: 24, Neg. LLF: 213.55898249944931
Iteration: 3, Func. Count: 36, Neg. LLF: 131.27945174272858
Iteration: 4, Func. Count: 47, Neg. LLF: 139.55748224538553
Iteration: 5, Func. Count: 59, Neg. LLF: 135.694228230209
Iteration: 6, Func. Count: 74, Neg. LLF: 133.66233811031148
Iteration: 7, Func. Count: 86, Neg. LLF: 130.22993740017876
Iteration: 8, Func. Count: 97, Neg. LLF: 129.90499918541474
Iteration: 9, Func. Count: 108, Neg. LLF: 129.7738513841769
Iteration: 10, Func. Count: 119, Neg. LLF: 129.71598985452457
Iteration: 11, Func. Count: 130, Neg. LLF: 129.70358544491438
Iteration: 12, Func. Count: 141, Neg. LLF: 129.70135083215013
Iteration: 13, Func. Count: 152, Neg. LLF: 129.70112882059885
Iteration: 14, Func. Count: 163, Neg. LLF: 129.70108206576174
Iteration: 15, Func. Count: 174, Neg. LLF: 129.70107606073645
Iteration: 16, Func. Count: 184, Neg. LLF: 129.70107601689548
Optimization terminated successfully (Exit mode 0)
Current function value: 129.70107606073645
Iterations: 16
Function evaluations: 184
Gradient evaluations: 16
Iteration: 1, Func. Count: 13, Neg. LLF: 154.96265409598453
Iteration: 2, Func. Count: 26, Neg. LLF: 202.74863321831523
Iteration: 3, Func. Count: 39, Neg. LLF: 130.6181542205983
Iteration: 4, Func. Count: 51, Neg. LLF: 133.47491251356325
Iteration: 5, Func. Count: 64, Neg. LLF: 131.19110073737056
Iteration: 6, Func. Count: 77, Neg. LLF: 129.8995872210823
Iteration: 7, Func. Count: 89, Neg. LLF: 129.79570396381018
Iteration: 8, Func. Count: 101, Neg. LLF: 129.70579992215139
Iteration: 9, Func. Count: 113, Neg. LLF: 129.7014451153425
Iteration: 10, Func. Count: 125, Neg. LLF: 129.701086411868
Iteration: 11, Func. Count: 137, Neg. LLF: 129.7010764331242
Iteration: 12, Func. Count: 148, Neg. LLF: 129.70107649317123
Optimization terminated successfully (Exit mode 0)
Current function value: 129.7010764331242
Iterations: 12
Function evaluations: 148
Gradient evaluations: 12
Iteration: 1, Func. Count: 6, Neg. LLF: 148.2711178820586
Iteration: 2, Func. Count: 12, Neg. LLF: 152.88756107926397
Iteration: 3, Func. Count: 18, Neg. LLF: 140.81038779156665
Iteration: 4, Func. Count: 23, Neg. LLF: 139.70751242245163
Iteration: 5, Func. Count: 28, Neg. LLF: 138.59875655917222
Iteration: 6, Func. Count: 33, Neg. LLF: 136.78264919150106
Iteration: 7, Func. Count: 38, Neg. LLF: 136.7122038177268
Iteration: 8, Func. Count: 44, Neg. LLF: 136.36932734305944
Iteration: 9, Func. Count: 50, Neg. LLF: 136.33570050777266
Iteration: 10, Func. Count: 55, Neg. LLF: 136.33540706467167
Iteration: 11, Func. Count: 60, Neg. LLF: 136.33540643796456
Optimization terminated successfully (Exit mode 0)
Current function value: 136.33540643796456
Iterations: 11
Function evaluations: 60
Gradient evaluations: 11
Iteration: 1, Func. Count: 7, Neg. LLF: 177.75458554481764
Iteration: 2, Func. Count: 14, Neg. LLF: 156.53555268059276
Iteration: 3, Func. Count: 21, Neg. LLF: 137.97160835734257
Iteration: 4, Func. Count: 27, Neg. LLF: 137.56278592050103
Iteration: 5, Func. Count: 33, Neg. LLF: 136.9538969509647
Iteration: 6, Func. Count: 39, Neg. LLF: 136.34513461734585
Iteration: 7, Func. Count: 45, Neg. LLF: 136.33642638772125
Iteration: 8, Func. Count: 51, Neg. LLF: 136.3354183280942
Iteration: 9, Func. Count: 57, Neg. LLF: 136.33541184365674
Iteration: 10, Func. Count: 63, Neg. LLF: 136.3354090949444
Iteration: 11, Func. Count: 69, Neg. LLF: 136.33540675026796
Iteration: 12, Func. Count: 74, Neg. LLF: 136.3354068196603
Optimization terminated successfully (Exit mode 0)
Current function value: 136.33540675026796
Iterations: 12
Function evaluations: 74
Gradient evaluations: 12
Iteration: 1, Func. Count: 8, Neg. LLF: 172.97985050779155
Iteration: 2, Func. Count: 16, Neg. LLF: 154.44360475069558
Iteration: 3, Func. Count: 24, Neg. LLF: 146.9594977493119
Iteration: 4, Func. Count: 32, Neg. LLF: 137.58446070681808
Iteration: 5, Func. Count: 39, Neg. LLF: 136.61169073180434
Iteration: 6, Func. Count: 46, Neg. LLF: 136.34158634130912
Iteration: 7, Func. Count: 53, Neg. LLF: 136.3368901733261
Iteration: 8, Func. Count: 60, Neg. LLF: 136.33541231224282
Iteration: 9, Func. Count: 67, Neg. LLF: 136.33540652944117
Iteration: 10, Func. Count: 73, Neg. LLF: 136.3354066171713
Optimization terminated successfully (Exit mode 0)
Current function value: 136.33540652944117
Iterations: 10
Function evaluations: 73
Gradient evaluations: 10
Iteration: 1, Func. Count: 9, Neg. LLF: 170.8927741827582
Iteration: 2, Func. Count: 18, Neg. LLF: 152.86976042086397
Iteration: 3, Func. Count: 27, Neg. LLF: 142.08913500580107
Iteration: 4, Func. Count: 36, Neg. LLF: 135.31171551008106
Iteration: 5, Func. Count: 44, Neg. LLF: 135.20730162497108
Iteration: 6, Func. Count: 52, Neg. LLF: 135.13508661664966
Iteration: 7, Func. Count: 60, Neg. LLF: 135.07251689585058
Iteration: 8, Func. Count: 68, Neg. LLF: 134.9665851361948
Iteration: 9, Func. Count: 76, Neg. LLF: 134.85587696617097
Iteration: 10, Func. Count: 84, Neg. LLF: 134.68168731361368
Iteration: 11, Func. Count: 92, Neg. LLF: 134.6408373312624
Iteration: 12, Func. Count: 100, Neg. LLF: 134.62532150565363
Iteration: 13, Func. Count: 108, Neg. LLF: 134.6242344288535
Iteration: 14, Func. Count: 116, Neg. LLF: 134.62416754143356
Iteration: 15, Func. Count: 124, Neg. LLF: 134.62422843914447
Optimization terminated successfully (Exit mode 0)
Current function value: 134.6241675453788
Iterations: 16
Function evaluations: 126
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 169.40866910019193
Iteration: 2, Func. Count: 20, Neg. LLF: 150.75493235037638
Iteration: 3, Func. Count: 30, Neg. LLF: 139.6352393772505
Iteration: 4, Func. Count: 40, Neg. LLF: 135.1179741855474
Iteration: 5, Func. Count: 49, Neg. LLF: 134.82623529148552
Iteration: 6, Func. Count: 58, Neg. LLF: 134.78863521029905
Iteration: 7, Func. Count: 67, Neg. LLF: 134.70478219587503
Iteration: 8, Func. Count: 76, Neg. LLF: 134.6543795017694
Iteration: 9, Func. Count: 85, Neg. LLF: 134.6293753381252
Iteration: 10, Func. Count: 94, Neg. LLF: 134.62448083297878
Iteration: 11, Func. Count: 103, Neg. LLF: 134.62418179080632
Iteration: 12, Func. Count: 112, Neg. LLF: 134.62416936568212
Iteration: 13, Func. Count: 120, Neg. LLF: 134.6241695507005
Optimization terminated successfully (Exit mode 0)
Current function value: 134.62416936568212
Iterations: 13
Function evaluations: 120
Gradient evaluations: 13
Iteration: 1, Func. Count: 7, Neg. LLF: 146.61087516429026
Iteration: 2, Func. Count: 14, Neg. LLF: 144.60830225482158
Iteration: 3, Func. Count: 21, Neg. LLF: 140.3546511703833
Iteration: 4, Func. Count: 27, Neg. LLF: 139.57259104161892
Iteration: 5, Func. Count: 33, Neg. LLF: 138.1183147165687
Iteration: 6, Func. Count: 39, Neg. LLF: 137.2666699783678
Iteration: 7, Func. Count: 45, Neg. LLF: 136.11595486712213
Iteration: 8, Func. Count: 51, Neg. LLF: 136.19292259970183
Iteration: 9, Func. Count: 58, Neg. LLF: 136.05719192119764
Iteration: 10, Func. Count: 64, Neg. LLF: 136.0567401648809
Iteration: 11, Func. Count: 70, Neg. LLF: 136.05672825001642
Iteration: 12, Func. Count: 76, Neg. LLF: 136.05672763769547
Optimization terminated successfully (Exit mode 0)
Current function value: 136.05672763769547
Iterations: 12
Function evaluations: 76
Gradient evaluations: 12
Iteration: 1, Func. Count: 8, Neg. LLF: 269.48645599353966
Iteration: 2, Func. Count: 16, Neg. LLF: 134.26585912928346
Iteration: 3, Func. Count: 23, Neg. LLF: 144.7571247893403
Iteration: 4, Func. Count: 32, Neg. LLF: 134.13505807329577
Iteration: 5, Func. Count: 39, Neg. LLF: 134.06287795892067
Iteration: 6, Func. Count: 46, Neg. LLF: 134.04089116668987
Iteration: 7, Func. Count: 53, Neg. LLF: 134.0407330014112
Iteration: 8, Func. Count: 60, Neg. LLF: 134.04072996729371
Iteration: 9, Func. Count: 66, Neg. LLF: 134.04072984364308
Optimization terminated successfully (Exit mode 0)
Current function value: 134.04072996729371
Iterations: 9
Function evaluations: 66
Gradient evaluations: 9
Iteration: 1, Func. Count: 9, Neg. LLF: 260.60823547018947
Iteration: 2, Func. Count: 18, Neg. LLF: 137.75592961772503
Iteration: 3, Func. Count: 26, Neg. LLF: 404.54459743663153
Iteration: 4, Func. Count: 35, Neg. LLF: 140.2884972127158
Iteration: 5, Func. Count: 44, Neg. LLF: 134.20351932664718
Iteration: 6, Func. Count: 52, Neg. LLF: 134.07827185260584
Iteration: 7, Func. Count: 60, Neg. LLF: 134.04652745800996
Iteration: 8, Func. Count: 68, Neg. LLF: 134.04129002008295
Iteration: 9, Func. Count: 76, Neg. LLF: 134.040735825898
Iteration: 10, Func. Count: 84, Neg. LLF: 134.04073019360476
Iteration: 11, Func. Count: 91, Neg. LLF: 134.04073013232207
Optimization terminated successfully (Exit mode 0)
Current function value: 134.04073019360476
Iterations: 11
Function evaluations: 91
Gradient evaluations: 11
Iteration: 1, Func. Count: 10, Neg. LLF: 254.1877198372767
Iteration: 2, Func. Count: 20, Neg. LLF: 145.43583217192005
Iteration: 3, Func. Count: 30, Neg. LLF: 134.99058872194553
Iteration: 4, Func. Count: 39, Neg. LLF: 134.66738915201122
Iteration: 5, Func. Count: 48, Neg. LLF: 134.25464926335428
Iteration: 6, Func. Count: 57, Neg. LLF: 134.09116093488709
Iteration: 7, Func. Count: 66, Neg. LLF: 134.0607311863375
Iteration: 8, Func. Count: 75, Neg. LLF: 134.04268788515554
Iteration: 9, Func. Count: 84, Neg. LLF: 134.04078365953256
Iteration: 10, Func. Count: 93, Neg. LLF: 134.04073046148645
Iteration: 11, Func. Count: 101, Neg. LLF: 134.04073036613477
Optimization terminated successfully (Exit mode 0)
Current function value: 134.04073046148645
Iterations: 11
Function evaluations: 101
Gradient evaluations: 11
Iteration: 1, Func. Count: 11, Neg. LLF: 251.50619562574877
Iteration: 2, Func. Count: 22, Neg. LLF: 136.65765948333382
Iteration: 3, Func. Count: 32, Neg. LLF: 286.9628165740416
Iteration: 4, Func. Count: 43, Neg. LLF: 139.41541602915262
Iteration: 5, Func. Count: 54, Neg. LLF: 135.52072423680633
Iteration: 6, Func. Count: 65, Neg. LLF: 134.84921127540144
Iteration: 7, Func. Count: 76, Neg. LLF: 133.89824565287176
Iteration: 8, Func. Count: 86, Neg. LLF: 133.8789441025041
Iteration: 9, Func. Count: 96, Neg. LLF: 133.89962353751378
Iteration: 10, Func. Count: 107, Neg. LLF: 133.87472544602744
Iteration: 11, Func. Count: 117, Neg. LLF: 133.8746562059784
Iteration: 12, Func. Count: 127, Neg. LLF: 133.8746357030623
Iteration: 13, Func. Count: 136, Neg. LLF: 133.8746355937239
Optimization terminated successfully (Exit mode 0)
Current function value: 133.8746357030623
Iterations: 13
Function evaluations: 136
Gradient evaluations: 13
Iteration: 1, Func. Count: 8, Neg. LLF: 148.70099310278306
Iteration: 2, Func. Count: 16, Neg. LLF: 140.25336276716087
Iteration: 3, Func. Count: 24, Neg. LLF: 139.76885771518815
Iteration: 4, Func. Count: 32, Neg. LLF: 136.45302378324453
Iteration: 5, Func. Count: 39, Neg. LLF: 133.59851257215746
Iteration: 6, Func. Count: 46, Neg. LLF: 131.31912289749215
Iteration: 7, Func. Count: 53, Neg. LLF: 134.42716075381085
Iteration: 8, Func. Count: 61, Neg. LLF: 382.47709165024287
Iteration: 9, Func. Count: 69, Neg. LLF: 133.07890272326853
Iteration: 10, Func. Count: 77, Neg. LLF: 130.67022527477639
Iteration: 11, Func. Count: 85, Neg. LLF: 130.5268001926398
Iteration: 12, Func. Count: 93, Neg. LLF: 130.48400470551496
Iteration: 13, Func. Count: 100, Neg. LLF: 130.4838631810743
Iteration: 14, Func. Count: 107, Neg. LLF: 130.4838552755438
Iteration: 15, Func. Count: 113, Neg. LLF: 130.48385523424142
Optimization terminated successfully (Exit mode 0)
Current function value: 130.4838552755438
Iterations: 15
Function evaluations: 113
Gradient evaluations: 15
Iteration: 1, Func. Count: 9, Neg. LLF: 268.10207917807963
Iteration: 2, Func. Count: 18, Neg. LLF: 188.99637681490552
Iteration: 3, Func. Count: 27, Neg. LLF: 320.72366187362263
Iteration: 4, Func. Count: 36, Neg. LLF: 138.1321041731766
Iteration: 5, Func. Count: 45, Neg. LLF: 146.10263846126355
Iteration: 6, Func. Count: 54, Neg. LLF: 133.5713654207251
Iteration: 7, Func. Count: 63, Neg. LLF: 131.0534716282075
Iteration: 8, Func. Count: 72, Neg. LLF: 129.82757666734474
Iteration: 9, Func. Count: 80, Neg. LLF: 129.81462720882058
Iteration: 10, Func. Count: 88, Neg. LLF: 129.81136165246693
Iteration: 11, Func. Count: 96, Neg. LLF: 129.81106244128216
Iteration: 12, Func. Count: 104, Neg. LLF: 129.81099364442915
Iteration: 13, Func. Count: 112, Neg. LLF: 129.81098909672264
Iteration: 14, Func. Count: 119, Neg. LLF: 129.8109890068886
Optimization terminated successfully (Exit mode 0)
Current function value: 129.81098909672264
Iterations: 14
Function evaluations: 119
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 168.71754047788588
Iteration: 2, Func. Count: 20, Neg. LLF: 170.13752266044867
Iteration: 3, Func. Count: 30, Neg. LLF: 140.71345310078496
Iteration: 4, Func. Count: 40, Neg. LLF: 378.5331042937508
Iteration: 5, Func. Count: 50, Neg. LLF: 133.3910959681576
Iteration: 6, Func. Count: 60, Neg. LLF: 129.99867643719742
Iteration: 7, Func. Count: 69, Neg. LLF: 129.88629324994898
Iteration: 8, Func. Count: 78, Neg. LLF: 129.81969914827022
Iteration: 9, Func. Count: 87, Neg. LLF: 129.81174281017772
Iteration: 10, Func. Count: 96, Neg. LLF: 129.8110548768036
Iteration: 11, Func. Count: 105, Neg. LLF: 129.81099893418636
Iteration: 12, Func. Count: 114, Neg. LLF: 129.81098899650596
Iteration: 13, Func. Count: 122, Neg. LLF: 129.81098901928428
Optimization terminated successfully (Exit mode 0)
Current function value: 129.81098899650596
Iterations: 13
Function evaluations: 122
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 166.4412329361673
Iteration: 2, Func. Count: 22, Neg. LLF: 175.86132987479957
Iteration: 3, Func. Count: 33, Neg. LLF: 158.9299350562265
Iteration: 4, Func. Count: 44, Neg. LLF: 177.254117689003
Iteration: 5, Func. Count: 55, Neg. LLF: 131.35944787613676
Iteration: 6, Func. Count: 65, Neg. LLF: 132.28530778114782
Iteration: 7, Func. Count: 78, Neg. LLF: 140.23857979539974
Iteration: 8, Func. Count: 92, Neg. LLF: 130.4043040412364
Iteration: 9, Func. Count: 102, Neg. LLF: 129.93322803462237
Iteration: 10, Func. Count: 112, Neg. LLF: 129.8649975289529
Iteration: 11, Func. Count: 122, Neg. LLF: 129.8142537998383
Iteration: 12, Func. Count: 132, Neg. LLF: 129.81237270559095
Iteration: 13, Func. Count: 142, Neg. LLF: 129.8110663710245
Iteration: 14, Func. Count: 152, Neg. LLF: 129.8109900611607
Iteration: 15, Func. Count: 162, Neg. LLF: 129.81098899084247
Iteration: 16, Func. Count: 171, Neg. LLF: 129.8109889316535
Optimization terminated successfully (Exit mode 0)
Current function value: 129.81098899084247
Iterations: 16
Function evaluations: 171
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 167.51580725865304
Iteration: 2, Func. Count: 24, Neg. LLF: 169.95249012880276
Iteration: 3, Func. Count: 36, Neg. LLF: 169.78344107755032
Iteration: 4, Func. Count: 48, Neg. LLF: 148.1219009679214
Iteration: 5, Func. Count: 60, Neg. LLF: 131.55715071437675
Iteration: 6, Func. Count: 71, Neg. LLF: 132.11434415565043
Iteration: 7, Func. Count: 85, Neg. LLF: 139.90294273791696
Iteration: 8, Func. Count: 100, Neg. LLF: 130.54628574731655
Iteration: 9, Func. Count: 111, Neg. LLF: 129.95883128822814
Iteration: 10, Func. Count: 122, Neg. LLF: 129.88117767681234
Iteration: 11, Func. Count: 133, Neg. LLF: 129.85165222635766
Iteration: 12, Func. Count: 144, Neg. LLF: 129.84757677419628
Iteration: 13, Func. Count: 156, Neg. LLF: 129.81109008077416
Iteration: 14, Func. Count: 167, Neg. LLF: 129.8109913423328
Iteration: 15, Func. Count: 178, Neg. LLF: 129.8109891035771
Iteration: 16, Func. Count: 188, Neg. LLF: 129.81098915161684
Optimization terminated successfully (Exit mode 0)
Current function value: 129.8109891035771
Iterations: 16
Function evaluations: 188
Gradient evaluations: 16
Iteration: 1, Func. Count: 9, Neg. LLF: 154.91155198304637
Iteration: 2, Func. Count: 18, Neg. LLF: 146.33554891444822
Iteration: 3, Func. Count: 28, Neg. LLF: 143.16555588308444
Iteration: 4, Func. Count: 37, Neg. LLF: 136.80266799705421
Iteration: 5, Func. Count: 45, Neg. LLF: 132.72266922610487
Iteration: 6, Func. Count: 53, Neg. LLF: 96089.72819262142
Iteration: 7, Func. Count: 62, Neg. LLF: 38114.43439164147
Iteration: 8, Func. Count: 71, Neg. LLF: 166.53731178786683
Iteration: 9, Func. Count: 80, Neg. LLF: 136.02224147552374
Iteration: 10, Func. Count: 89, Neg. LLF: 130.05206416383712
Iteration: 11, Func. Count: 97, Neg. LLF: 130.02940318052362
Iteration: 12, Func. Count: 106, Neg. LLF: 130.8252662738663
Iteration: 13, Func. Count: 115, Neg. LLF: 129.72566088507176
Iteration: 14, Func. Count: 123, Neg. LLF: 129.70489506090647
Iteration: 15, Func. Count: 131, Neg. LLF: 129.70150880149822
Iteration: 16, Func. Count: 139, Neg. LLF: 129.70108845333453
Iteration: 17, Func. Count: 147, Neg. LLF: 129.701076343424
Iteration: 18, Func. Count: 154, Neg. LLF: 129.70107630286216
Optimization terminated successfully (Exit mode 0)
Current function value: 129.701076343424
Iterations: 18
Function evaluations: 154
Gradient evaluations: 18
Iteration: 1, Func. Count: 10, Neg. LLF: 260.0012655976851
Iteration: 2, Func. Count: 20, Neg. LLF: 182.2513711249531
Iteration: 3, Func. Count: 30, Neg. LLF: 304.7717517808244
Iteration: 4, Func. Count: 40, Neg. LLF: 141.04192239025636
Iteration: 5, Func. Count: 50, Neg. LLF: 168.8459917883328
Iteration: 6, Func. Count: 60, Neg. LLF: 134.88233116645756
Iteration: 7, Func. Count: 70, Neg. LLF: 132.00348529124534
Iteration: 8, Func. Count: 80, Neg. LLF: 129.78783013342144
Iteration: 9, Func. Count: 89, Neg. LLF: 131.05705265737387
Iteration: 10, Func. Count: 99, Neg. LLF: 129.76842465739608
Iteration: 11, Func. Count: 109, Neg. LLF: 129.70185345429726
Iteration: 12, Func. Count: 118, Neg. LLF: 129.70108798096595
Iteration: 13, Func. Count: 127, Neg. LLF: 129.70107690429742
Iteration: 14, Func. Count: 136, Neg. LLF: 129.7010759712918
Optimization terminated successfully (Exit mode 0)
Current function value: 129.7010759712918
Iterations: 14
Function evaluations: 136
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 168.6973536847527
Iteration: 2, Func. Count: 22, Neg. LLF: 167.25983871879015
Iteration: 3, Func. Count: 33, Neg. LLF: 137.53441395445046
Iteration: 4, Func. Count: 44, Neg. LLF: 305.90662321245003
Iteration: 5, Func. Count: 55, Neg. LLF: 132.1215919778884
Iteration: 6, Func. Count: 66, Neg. LLF: 129.99339368894687
Iteration: 7, Func. Count: 76, Neg. LLF: 129.8355592962986
Iteration: 8, Func. Count: 86, Neg. LLF: 130.28302508328477
Iteration: 9, Func. Count: 97, Neg. LLF: 129.70784444615018
Iteration: 10, Func. Count: 107, Neg. LLF: 129.70479479262417
Iteration: 11, Func. Count: 117, Neg. LLF: 129.70111408531173
Iteration: 12, Func. Count: 127, Neg. LLF: 129.7010768641644
Iteration: 13, Func. Count: 137, Neg. LLF: 129.70107605953822
Optimization terminated successfully (Exit mode 0)
Current function value: 129.70107605953822
Iterations: 13
Function evaluations: 137
Gradient evaluations: 13
Iteration: 1, Func. Count: 12, Neg. LLF: 165.02855375326706
Iteration: 2, Func. Count: 24, Neg. LLF: 176.9437021290389
Iteration: 3, Func. Count: 36, Neg. LLF: 154.75781923490993
Iteration: 4, Func. Count: 48, Neg. LLF: 631.2356887193439
Iteration: 5, Func. Count: 60, Neg. LLF: 131.31638076150537
Iteration: 6, Func. Count: 71, Neg. LLF: 131.84106248195536
Iteration: 7, Func. Count: 83, Neg. LLF: 134.52193422596488
Iteration: 8, Func. Count: 98, Neg. LLF: 130.2637582582736
Iteration: 9, Func. Count: 110, Neg. LLF: 129.807458226697
Iteration: 10, Func. Count: 121, Neg. LLF: 129.70857164438223
Iteration: 11, Func. Count: 132, Neg. LLF: 129.7019389958777
Iteration: 12, Func. Count: 143, Neg. LLF: 129.70120689761117
Iteration: 13, Func. Count: 154, Neg. LLF: 129.70108925395434
Iteration: 14, Func. Count: 165, Neg. LLF: 129.70107764951698
Iteration: 15, Func. Count: 176, Neg. LLF: 129.7010760020239
Iteration: 16, Func. Count: 186, Neg. LLF: 129.70107595820744
Optimization terminated successfully (Exit mode 0)
Current function value: 129.7010760020239
Iterations: 16
Function evaluations: 186
Gradient evaluations: 16
Iteration: 1, Func. Count: 13, Neg. LLF: 165.93241493026548
Iteration: 2, Func. Count: 26, Neg. LLF: 170.6736786198793
Iteration: 3, Func. Count: 39, Neg. LLF: 160.5393164668294
Iteration: 4, Func. Count: 52, Neg. LLF: 205.68541411954047
Iteration: 5, Func. Count: 65, Neg. LLF: 131.7347118455745
Iteration: 6, Func. Count: 77, Neg. LLF: 133.3111689228373
Iteration: 7, Func. Count: 90, Neg. LLF: 136.71719396079922
Iteration: 8, Func. Count: 105, Neg. LLF: 130.87088305521863
Iteration: 9, Func. Count: 118, Neg. LLF: 129.88084186806762
Iteration: 10, Func. Count: 130, Neg. LLF: 129.71381678171826
Iteration: 11, Func. Count: 142, Neg. LLF: 129.70339437219806
Iteration: 12, Func. Count: 154, Neg. LLF: 129.70152826623627
Iteration: 13, Func. Count: 166, Neg. LLF: 129.7012139805662
Iteration: 14, Func. Count: 178, Neg. LLF: 129.70108457960185
Iteration: 15, Func. Count: 190, Neg. LLF: 129.70107596857707
Iteration: 16, Func. Count: 201, Neg. LLF: 129.70107602868558
Optimization terminated successfully (Exit mode 0)
Current function value: 129.70107596857707
Iterations: 16
Function evaluations: 201
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 153.73647517711655
Iteration: 2, Func. Count: 20, Neg. LLF: 146.15926299738192
Iteration: 3, Func. Count: 31, Neg. LLF: 143.261487902754
Iteration: 4, Func. Count: 41, Neg. LLF: 136.76094778283755
Iteration: 5, Func. Count: 50, Neg. LLF: 135.4464934917824
Iteration: 6, Func. Count: 59, Neg. LLF: 130.46450109529783
Iteration: 7, Func. Count: 68, Neg. LLF: 1079034.4268596969
Iteration: 8, Func. Count: 79, Neg. LLF: 1900.3166534125965
Iteration: 9, Func. Count: 91, Neg. LLF: 136.3606911772607
Iteration: 10, Func. Count: 102, Neg. LLF: 130.50014820899239
Iteration: 11, Func. Count: 112, Neg. LLF: 129.71356570096094
Iteration: 12, Func. Count: 121, Neg. LLF: 129.7052206468436
Iteration: 13, Func. Count: 130, Neg. LLF: 129.70195967140938
Iteration: 14, Func. Count: 139, Neg. LLF: 129.70110403608984
Iteration: 15, Func. Count: 148, Neg. LLF: 129.70107623969568
Iteration: 16, Func. Count: 156, Neg. LLF: 129.70107629066985
Optimization terminated successfully (Exit mode 0)
Current function value: 129.70107623969568
Iterations: 16
Function evaluations: 156
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 257.35779257763636
Iteration: 2, Func. Count: 22, Neg. LLF: 180.65753951181725
Iteration: 3, Func. Count: 33, Neg. LLF: 288.18260785395586
Iteration: 4, Func. Count: 44, Neg. LLF: 141.62146362522083
Iteration: 5, Func. Count: 55, Neg. LLF: 161.50910999523714
Iteration: 6, Func. Count: 66, Neg. LLF: 135.4261889101664
Iteration: 7, Func. Count: 77, Neg. LLF: 132.33735131280702
Iteration: 8, Func. Count: 88, Neg. LLF: 129.83434085078164
Iteration: 9, Func. Count: 98, Neg. LLF: 130.2941827652255
Iteration: 10, Func. Count: 109, Neg. LLF: 130.49116834083
Iteration: 11, Func. Count: 120, Neg. LLF: 129.70353287394636
Iteration: 12, Func. Count: 130, Neg. LLF: 129.7014958081463
Iteration: 13, Func. Count: 140, Neg. LLF: 129.70108237809998
Iteration: 14, Func. Count: 150, Neg. LLF: 129.70107611268807
Iteration: 15, Func. Count: 159, Neg. LLF: 129.7010760497235
Optimization terminated successfully (Exit mode 0)
Current function value: 129.70107611268807
Iterations: 15
Function evaluations: 159
Gradient evaluations: 15
Iteration: 1, Func. Count: 12, Neg. LLF: 172.61701205025435
Iteration: 2, Func. Count: 24, Neg. LLF: 164.95794997025746
Iteration: 3, Func. Count: 36, Neg. LLF: 141.1364554879779
Iteration: 4, Func. Count: 48, Neg. LLF: 282.0321525512909
Iteration: 5, Func. Count: 60, Neg. LLF: 134.3446130268795
Iteration: 6, Func. Count: 72, Neg. LLF: 130.6794256964572
Iteration: 7, Func. Count: 83, Neg. LLF: 130.0993954411065
Iteration: 8, Func. Count: 94, Neg. LLF: 134.42848216864053
Iteration: 9, Func. Count: 109, Neg. LLF: 129.86844284964164
Iteration: 10, Func. Count: 120, Neg. LLF: 129.71464894694628
Iteration: 11, Func. Count: 131, Neg. LLF: 129.7030002520132
Iteration: 12, Func. Count: 142, Neg. LLF: 129.70118985915957
Iteration: 13, Func. Count: 153, Neg. LLF: 129.7010819601751
Iteration: 14, Func. Count: 164, Neg. LLF: 129.70107596960506
Iteration: 15, Func. Count: 174, Neg. LLF: 129.7010760151365
Optimization terminated successfully (Exit mode 0)
Current function value: 129.70107596960506
Iterations: 15
Function evaluations: 174
Gradient evaluations: 15
Iteration: 1, Func. Count: 13, Neg. LLF: 164.13346417355245
Iteration: 2, Func. Count: 26, Neg. LLF: 176.39377702470756
Iteration: 3, Func. Count: 39, Neg. LLF: 153.50492849060095
Iteration: 4, Func. Count: 52, Neg. LLF: 474.88448247201353
Iteration: 5, Func. Count: 65, Neg. LLF: 131.40623606346705
Iteration: 6, Func. Count: 77, Neg. LLF: 132.1391388809229
Iteration: 7, Func. Count: 90, Neg. LLF: 134.86947230509207
Iteration: 8, Func. Count: 106, Neg. LLF: 130.4939384967347
Iteration: 9, Func. Count: 119, Neg. LLF: 129.85363106919112
Iteration: 10, Func. Count: 131, Neg. LLF: 129.71330584755796
Iteration: 11, Func. Count: 143, Neg. LLF: 129.70231614404844
Iteration: 12, Func. Count: 155, Neg. LLF: 129.7013765775728
Iteration: 13, Func. Count: 167, Neg. LLF: 129.70111025945022
Iteration: 14, Func. Count: 179, Neg. LLF: 129.7010804653002
Iteration: 15, Func. Count: 191, Neg. LLF: 129.70107602403965
Iteration: 16, Func. Count: 202, Neg. LLF: 129.70107598022193
Optimization terminated successfully (Exit mode 0)
Current function value: 129.70107602403965
Iterations: 16
Function evaluations: 202
Gradient evaluations: 16
Iteration: 1, Func. Count: 14, Neg. LLF: 164.92473988820697
Iteration: 2, Func. Count: 28, Neg. LLF: 170.45156434172685
Iteration: 3, Func. Count: 42, Neg. LLF: 159.25653547841625
Iteration: 4, Func. Count: 56, Neg. LLF: 487.9139883593203
Iteration: 5, Func. Count: 70, Neg. LLF: 131.81738813299964
Iteration: 6, Func. Count: 83, Neg. LLF: 133.37666727270621
Iteration: 7, Func. Count: 97, Neg. LLF: 136.95454834617567
Iteration: 8, Func. Count: 113, Neg. LLF: 130.1514330995149
Iteration: 9, Func. Count: 126, Neg. LLF: 130.2655257237196
Iteration: 10, Func. Count: 140, Neg. LLF: 129.7173184530821
Iteration: 11, Func. Count: 153, Neg. LLF: 129.7063778037777
Iteration: 12, Func. Count: 166, Neg. LLF: 129.70169789967542
Iteration: 13, Func. Count: 179, Neg. LLF: 129.70129246614061
Iteration: 14, Func. Count: 192, Neg. LLF: 129.70108428555432
Iteration: 15, Func. Count: 205, Neg. LLF: 129.70107599722317
Iteration: 16, Func. Count: 217, Neg. LLF: 129.70107605732662
Optimization terminated successfully (Exit mode 0)
Current function value: 129.70107599722317
Iterations: 16
Function evaluations: 217
Gradient evaluations: 16
Iteration: 1, Func. Count: 7, Neg. LLF: 148.1698753662779
Iteration: 2, Func. Count: 14, Neg. LLF: 156.5937036339981
Iteration: 3, Func. Count: 21, Neg. LLF: 140.66453520990117
Iteration: 4, Func. Count: 27, Neg. LLF: 140.11378561402563
Iteration: 5, Func. Count: 33, Neg. LLF: 138.55975791518884
Iteration: 6, Func. Count: 39, Neg. LLF: 137.29809863981006
Iteration: 7, Func. Count: 45, Neg. LLF: 137.6128132337393
Iteration: 8, Func. Count: 52, Neg. LLF: 136.56394748521066
Iteration: 9, Func. Count: 58, Neg. LLF: 136.3559432596842
Iteration: 10, Func. Count: 64, Neg. LLF: 136.33637750512182
Iteration: 11, Func. Count: 70, Neg. LLF: 136.33540912289274
Iteration: 12, Func. Count: 76, Neg. LLF: 136.3354064431543
Iteration: 13, Func. Count: 81, Neg. LLF: 136.33540652694296
Optimization terminated successfully (Exit mode 0)
Current function value: 136.3354064431543
Iterations: 13
Function evaluations: 81
Gradient evaluations: 13
Iteration: 1, Func. Count: 8, Neg. LLF: 170.77536753845445
Iteration: 2, Func. Count: 16, Neg. LLF: 170.03470376151333
Iteration: 3, Func. Count: 24, Neg. LLF: 150.58524327955797
Iteration: 4, Func. Count: 32, Neg. LLF: 141.9964152326422
Iteration: 5, Func. Count: 40, Neg. LLF: 137.4613519332708
Iteration: 6, Func. Count: 47, Neg. LLF: 136.42297294414732
Iteration: 7, Func. Count: 54, Neg. LLF: 136.38576600311094
Iteration: 8, Func. Count: 61, Neg. LLF: 136.3466272969164
Iteration: 9, Func. Count: 68, Neg. LLF: 136.33566335655976
Iteration: 10, Func. Count: 75, Neg. LLF: 136.3354081491563
Iteration: 11, Func. Count: 82, Neg. LLF: 136.33540644006698
Iteration: 12, Func. Count: 88, Neg. LLF: 136.33540650936436
Optimization terminated successfully (Exit mode 0)
Current function value: 136.33540644006698
Iterations: 12
Function evaluations: 88
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 167.35986747286907
Iteration: 2, Func. Count: 18, Neg. LLF: 166.1199683415489
Iteration: 3, Func. Count: 27, Neg. LLF: 143.25987274380384
Iteration: 4, Func. Count: 36, Neg. LLF: 137.124101405373
Iteration: 5, Func. Count: 44, Neg. LLF: 136.516897703685
Iteration: 6, Func. Count: 52, Neg. LLF: 136.46399913695012
Iteration: 7, Func. Count: 60, Neg. LLF: 136.34114628694775
Iteration: 8, Func. Count: 68, Neg. LLF: 136.33570937345849
Iteration: 9, Func. Count: 76, Neg. LLF: 136.33543286605357
Iteration: 10, Func. Count: 84, Neg. LLF: 136.33540648128155
Iteration: 11, Func. Count: 91, Neg. LLF: 136.33540656898646
Optimization terminated successfully (Exit mode 0)
Current function value: 136.33540648128155
Iterations: 11
Function evaluations: 91
Gradient evaluations: 11
Iteration: 1, Func. Count: 10, Neg. LLF: 165.54549548122233
Iteration: 2, Func. Count: 20, Neg. LLF: 163.93502405984427
Iteration: 3, Func. Count: 30, Neg. LLF: 140.41570343520664
Iteration: 4, Func. Count: 40, Neg. LLF: 135.48750845652583
Iteration: 5, Func. Count: 49, Neg. LLF: 137.4752589742113
Iteration: 6, Func. Count: 59, Neg. LLF: 134.99047166845872
Iteration: 7, Func. Count: 68, Neg. LLF: 134.94396602952668
Iteration: 8, Func. Count: 77, Neg. LLF: 134.80247849404472
Iteration: 9, Func. Count: 86, Neg. LLF: 134.70180697485108
Iteration: 10, Func. Count: 95, Neg. LLF: 134.64309145330733
Iteration: 11, Func. Count: 104, Neg. LLF: 134.63581794590098
Iteration: 12, Func. Count: 113, Neg. LLF: 134.62466311463493
Iteration: 13, Func. Count: 122, Neg. LLF: 134.62419240890813
Iteration: 14, Func. Count: 131, Neg. LLF: 134.624169075538
Iteration: 15, Func. Count: 140, Neg. LLF: 134.62419076890697
Optimization terminated successfully (Exit mode 0)
Current function value: 134.62416906499942
Iterations: 16
Function evaluations: 142
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 164.47834579085333
Iteration: 2, Func. Count: 22, Neg. LLF: 162.48877820843842
Iteration: 3, Func. Count: 33, Neg. LLF: 139.85189995094302
Iteration: 4, Func. Count: 44, Neg. LLF: 135.2605545028846
Iteration: 5, Func. Count: 54, Neg. LLF: 135.16880816401735
Iteration: 6, Func. Count: 65, Neg. LLF: 134.79589403088943
Iteration: 7, Func. Count: 75, Neg. LLF: 134.72813656379466
Iteration: 8, Func. Count: 85, Neg. LLF: 134.66719293209798
Iteration: 9, Func. Count: 95, Neg. LLF: 134.63547705449642
Iteration: 10, Func. Count: 105, Neg. LLF: 134.62426847572328
Iteration: 11, Func. Count: 115, Neg. LLF: 134.62416916710023
Iteration: 12, Func. Count: 124, Neg. LLF: 134.62416935210942
Optimization terminated successfully (Exit mode 0)
Current function value: 134.62416916710023
Iterations: 12
Function evaluations: 124
Gradient evaluations: 12
Iteration: 1, Func. Count: 8, Neg. LLF: 145.39218389978805
Iteration: 2, Func. Count: 16, Neg. LLF: 143.18051090711018
Iteration: 3, Func. Count: 24, Neg. LLF: 147.03196996136086
Iteration: 4, Func. Count: 32, Neg. LLF: 139.9189919097267
Iteration: 5, Func. Count: 39, Neg. LLF: 139.00046637727365
Iteration: 6, Func. Count: 46, Neg. LLF: 146.10996060486664
Iteration: 7, Func. Count: 54, Neg. LLF: 238.42985379638438
Iteration: 8, Func. Count: 62, Neg. LLF: 205.13605726898444
Iteration: 9, Func. Count: 70, Neg. LLF: 196.66267479822775
Iteration: 10, Func. Count: 78, Neg. LLF: 197.1823716708939
Iteration: 11, Func. Count: 86, Neg. LLF: 138.6841134028466
Iteration: 12, Func. Count: 94, Neg. LLF: 136.336062854499
Iteration: 13, Func. Count: 101, Neg. LLF: 136.0759760500936
Iteration: 14, Func. Count: 108, Neg. LLF: 136.0826126654773
Iteration: 15, Func. Count: 116, Neg. LLF: 136.05737575190034
Iteration: 16, Func. Count: 123, Neg. LLF: 136.0567368503676
Iteration: 17, Func. Count: 130, Neg. LLF: 136.05672764269116
Iteration: 18, Func. Count: 136, Neg. LLF: 136.05672762141472
Optimization terminated successfully (Exit mode 0)
Current function value: 136.05672764269116
Iterations: 18
Function evaluations: 136
Gradient evaluations: 18
Iteration: 1, Func. Count: 9, Neg. LLF: 492.74044621037
Iteration: 2, Func. Count: 18, Neg. LLF: 171.28390585862437
Iteration: 3, Func. Count: 28, Neg. LLF: 52873584.68386782
Iteration: 4, Func. Count: 38, Neg. LLF: 136.04061891074028
Iteration: 5, Func. Count: 47, Neg. LLF: 134.10073279930214
Iteration: 6, Func. Count: 55, Neg. LLF: 134.05577140010422
Iteration: 7, Func. Count: 63, Neg. LLF: 134.0416065229154
Iteration: 8, Func. Count: 71, Neg. LLF: 134.04075011640444
Iteration: 9, Func. Count: 79, Neg. LLF: 134.04073080235477
Iteration: 10, Func. Count: 87, Neg. LLF: 134.04072996857613
Optimization terminated successfully (Exit mode 0)
Current function value: 134.04072996857613
Iterations: 10
Function evaluations: 87
Gradient evaluations: 10
Iteration: 1, Func. Count: 10, Neg. LLF: 289.4920638370562
Iteration: 2, Func. Count: 20, Neg. LLF: 163.15654632760493
Iteration: 3, Func. Count: 30, Neg. LLF: 167.96940369990375
Iteration: 4, Func. Count: 40, Neg. LLF: 157.98069371228002
Iteration: 5, Func. Count: 50, Neg. LLF: 134.0970619551534
Iteration: 6, Func. Count: 59, Neg. LLF: 134.0652809214537
Iteration: 7, Func. Count: 68, Neg. LLF: 134.04602721101753
Iteration: 8, Func. Count: 77, Neg. LLF: 134.04171948952484
Iteration: 9, Func. Count: 86, Neg. LLF: 134.04083198851504
Iteration: 10, Func. Count: 95, Neg. LLF: 134.0407314858277
Iteration: 11, Func. Count: 104, Neg. LLF: 134.04072998013734
Iteration: 12, Func. Count: 112, Neg. LLF: 134.04072991880005
Optimization terminated successfully (Exit mode 0)
Current function value: 134.04072998013734
Iterations: 12
Function evaluations: 112
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 241.79909236245766
Iteration: 2, Func. Count: 22, Neg. LLF: 158.51593542989073
Iteration: 3, Func. Count: 33, Neg. LLF: 134.56228009712135
Iteration: 4, Func. Count: 43, Neg. LLF: 135.23391088146636
Iteration: 5, Func. Count: 54, Neg. LLF: 134.16462043737278
Iteration: 6, Func. Count: 64, Neg. LLF: 134.1196689069801
Iteration: 7, Func. Count: 74, Neg. LLF: 134.04415557354002
Iteration: 8, Func. Count: 84, Neg. LLF: 134.04089526610835
Iteration: 9, Func. Count: 94, Neg. LLF: 134.04076667632197
Iteration: 10, Func. Count: 104, Neg. LLF: 134.04072999954727
Iteration: 11, Func. Count: 113, Neg. LLF: 134.04072990423055
Optimization terminated successfully (Exit mode 0)
Current function value: 134.04072999954727
Iterations: 11
Function evaluations: 113
Gradient evaluations: 11
Iteration: 1, Func. Count: 12, Neg. LLF: 240.93971621124868
Iteration: 2, Func. Count: 24, Neg. LLF: 148.66747484653166
Iteration: 3, Func. Count: 36, Neg. LLF: 134.50667493309103
Iteration: 4, Func. Count: 47, Neg. LLF: 135.87710749015628
Iteration: 5, Func. Count: 59, Neg. LLF: 133.97079973984847
Iteration: 6, Func. Count: 70, Neg. LLF: 134.00352269551743
Iteration: 7, Func. Count: 82, Neg. LLF: 133.90012902033044
Iteration: 8, Func. Count: 93, Neg. LLF: 133.8770641768595
Iteration: 9, Func. Count: 104, Neg. LLF: 133.87473901005953
Iteration: 10, Func. Count: 115, Neg. LLF: 133.87463862046582
Iteration: 11, Func. Count: 126, Neg. LLF: 133.87463523899788
Iteration: 12, Func. Count: 136, Neg. LLF: 133.8746351297555
Optimization terminated successfully (Exit mode 0)
Current function value: 133.87463523899788
Iterations: 12
Function evaluations: 136
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 155.27772408378195
Iteration: 2, Func. Count: 18, Neg. LLF: 140.14089635258037
Iteration: 3, Func. Count: 27, Neg. LLF: 144.84578029734948
Iteration: 4, Func. Count: 36, Neg. LLF: 136.99290858109302
Iteration: 5, Func. Count: 44, Neg. LLF: 133.82677240633137
Iteration: 6, Func. Count: 52, Neg. LLF: 663244.9044645774
Iteration: 7, Func. Count: 61, Neg. LLF: 648151.4639721736
Iteration: 8, Func. Count: 70, Neg. LLF: 645104.4866302398
Iteration: 9, Func. Count: 79, Neg. LLF: 636633.1518427794
Iteration: 10, Func. Count: 88, Neg. LLF: 634004.7540675864
Iteration: 11, Func. Count: 97, Neg. LLF: 185.15745165754646
Iteration: 12, Func. Count: 106, Neg. LLF: 619400.6861243726
Iteration: 13, Func. Count: 115, Neg. LLF: 162.01061203487478
Iteration: 14, Func. Count: 124, Neg. LLF: 134.00660901875034
Iteration: 15, Func. Count: 133, Neg. LLF: 130.5328839128092
Iteration: 16, Func. Count: 141, Neg. LLF: 130.50617963348301
Iteration: 17, Func. Count: 149, Neg. LLF: 130.49287045717162
Iteration: 18, Func. Count: 157, Neg. LLF: 130.48525180939387
Iteration: 19, Func. Count: 165, Neg. LLF: 130.48598272294564
Iteration: 20, Func. Count: 174, Neg. LLF: 130.4838553322388
Iteration: 21, Func. Count: 181, Neg. LLF: 130.48385529095796
Optimization terminated successfully (Exit mode 0)
Current function value: 130.4838553322388
Iterations: 21
Function evaluations: 181
Gradient evaluations: 21
Iteration: 1, Func. Count: 10, Neg. LLF: 261.838260838168
Iteration: 2, Func. Count: 20, Neg. LLF: 180.21710550463334
Iteration: 3, Func. Count: 30, Neg. LLF: 337.80013258553754
Iteration: 4, Func. Count: 40, Neg. LLF: 141.50165953109558
Iteration: 5, Func. Count: 50, Neg. LLF: 201.06101190769107
Iteration: 6, Func. Count: 60, Neg. LLF: 133.84868459502943
Iteration: 7, Func. Count: 70, Neg. LLF: 132.11300059679647
Iteration: 8, Func. Count: 80, Neg. LLF: 129.821504018199
Iteration: 9, Func. Count: 89, Neg. LLF: 129.81552377284837
Iteration: 10, Func. Count: 98, Neg. LLF: 129.81105489520516
Iteration: 11, Func. Count: 107, Neg. LLF: 129.810994403781
Iteration: 12, Func. Count: 116, Neg. LLF: 129.81098896130817
Iteration: 13, Func. Count: 124, Neg. LLF: 129.81098887143278
Optimization terminated successfully (Exit mode 0)
Current function value: 129.81098896130817
Iterations: 13
Function evaluations: 124
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 166.34837798755822
Iteration: 2, Func. Count: 22, Neg. LLF: 167.49332636317573
Iteration: 3, Func. Count: 33, Neg. LLF: 135.73183338537723
Iteration: 4, Func. Count: 44, Neg. LLF: 256.9198012892985
Iteration: 5, Func. Count: 55, Neg. LLF: 131.4909556615792
Iteration: 6, Func. Count: 65, Neg. LLF: 130.13544446290788
Iteration: 7, Func. Count: 75, Neg. LLF: 130.0167043928816
Iteration: 8, Func. Count: 85, Neg. LLF: 129.84389795017634
Iteration: 9, Func. Count: 95, Neg. LLF: 129.81775759798145
Iteration: 10, Func. Count: 105, Neg. LLF: 129.81108547279888
Iteration: 11, Func. Count: 115, Neg. LLF: 129.81100985210634
Iteration: 12, Func. Count: 125, Neg. LLF: 129.81098939012105
Iteration: 13, Func. Count: 134, Neg. LLF: 129.81098941294601
Optimization terminated successfully (Exit mode 0)
Current function value: 129.81098939012105
Iterations: 13
Function evaluations: 134
Gradient evaluations: 13
Iteration: 1, Func. Count: 12, Neg. LLF: 165.033127004609
Iteration: 2, Func. Count: 24, Neg. LLF: 177.36971570975746
Iteration: 3, Func. Count: 36, Neg. LLF: 152.509269382274
Iteration: 4, Func. Count: 48, Neg. LLF: 157.96581551387925
Iteration: 5, Func. Count: 60, Neg. LLF: 131.0848186810162
Iteration: 6, Func. Count: 71, Neg. LLF: 130.455013101644
Iteration: 7, Func. Count: 82, Neg. LLF: 130.0464639869407
Iteration: 8, Func. Count: 93, Neg. LLF: 129.9226287051051
Iteration: 9, Func. Count: 104, Neg. LLF: 129.82362145086398
Iteration: 10, Func. Count: 115, Neg. LLF: 129.81185223365065
Iteration: 11, Func. Count: 126, Neg. LLF: 129.81107317864252
Iteration: 12, Func. Count: 137, Neg. LLF: 129.8109890875247
Iteration: 13, Func. Count: 147, Neg. LLF: 129.81098902831224
Optimization terminated successfully (Exit mode 0)
Current function value: 129.8109890875247
Iterations: 13
Function evaluations: 147
Gradient evaluations: 13
Iteration: 1, Func. Count: 13, Neg. LLF: 165.33206012959897
Iteration: 2, Func. Count: 26, Neg. LLF: 172.00783011867293
Iteration: 3, Func. Count: 39, Neg. LLF: 152.8817431391631
Iteration: 4, Func. Count: 52, Neg. LLF: 174.43203008018705
Iteration: 5, Func. Count: 65, Neg. LLF: 131.20918113640374
Iteration: 6, Func. Count: 77, Neg. LLF: 130.42033403532224
Iteration: 7, Func. Count: 89, Neg. LLF: 130.08757507446717
Iteration: 8, Func. Count: 101, Neg. LLF: 129.85326270807792
Iteration: 9, Func. Count: 113, Neg. LLF: 129.85948308390778
Iteration: 10, Func. Count: 126, Neg. LLF: 129.81159754143718
Iteration: 11, Func. Count: 138, Neg. LLF: 129.81099074240777
Iteration: 12, Func. Count: 150, Neg. LLF: 129.8109889793653
Iteration: 13, Func. Count: 161, Neg. LLF: 129.8109890273806
Optimization terminated successfully (Exit mode 0)
Current function value: 129.8109889793653
Iterations: 13
Function evaluations: 161
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 154.98905892141272
Iteration: 2, Func. Count: 20, Neg. LLF: 139.04758424106868
Iteration: 3, Func. Count: 30, Neg. LLF: 149.31250013546014
Iteration: 4, Func. Count: 40, Neg. LLF: 136.9075127017313
Iteration: 5, Func. Count: 49, Neg. LLF: 133.59517948828494
Iteration: 6, Func. Count: 58, Neg. LLF: 738551.8312686472
Iteration: 7, Func. Count: 68, Neg. LLF: 19762.58786035282
Iteration: 8, Func. Count: 78, Neg. LLF: 47012.603593926804
Iteration: 9, Func. Count: 88, Neg. LLF: 34965.272945475146
Iteration: 10, Func. Count: 98, Neg. LLF: 53538.33212051586
Iteration: 11, Func. Count: 108, Neg. LLF: 176.13337306975956
Iteration: 12, Func. Count: 118, Neg. LLF: 52889.11501640657
Iteration: 13, Func. Count: 128, Neg. LLF: 129.97333538737547
Iteration: 14, Func. Count: 137, Neg. LLF: 129.87222745772837
Iteration: 15, Func. Count: 146, Neg. LLF: 129.8065366976531
Iteration: 16, Func. Count: 155, Neg. LLF: 129.71054467248248
Iteration: 17, Func. Count: 164, Neg. LLF: 129.70798723827252
Iteration: 18, Func. Count: 174, Neg. LLF: 129.70123047412145
Iteration: 19, Func. Count: 183, Neg. LLF: 129.7010885052512
Iteration: 20, Func. Count: 192, Neg. LLF: 129.70107748197486
Iteration: 21, Func. Count: 201, Neg. LLF: 129.70107599560012
Iteration: 22, Func. Count: 209, Neg. LLF: 129.70107595503183
Optimization terminated successfully (Exit mode 0)
Current function value: 129.70107599560012
Iterations: 22
Function evaluations: 209
Gradient evaluations: 22
Iteration: 1, Func. Count: 11, Neg. LLF: 252.20863257856897
Iteration: 2, Func. Count: 22, Neg. LLF: 179.2172030690823
Iteration: 3, Func. Count: 33, Neg. LLF: 272.76137338652927
Iteration: 4, Func. Count: 44, Neg. LLF: 145.3969851191391
Iteration: 5, Func. Count: 55, Neg. LLF: 154.04260401057252
Iteration: 6, Func. Count: 66, Neg. LLF: 135.9241718112102
Iteration: 7, Func. Count: 77, Neg. LLF: 133.46951390684004
Iteration: 8, Func. Count: 88, Neg. LLF: 130.1613639119876
Iteration: 9, Func. Count: 98, Neg. LLF: 129.76205816388406
Iteration: 10, Func. Count: 108, Neg. LLF: 130.62316149283313
Iteration: 11, Func. Count: 120, Neg. LLF: 129.78039246131559
Iteration: 12, Func. Count: 131, Neg. LLF: 129.7016331575375
Iteration: 13, Func. Count: 141, Neg. LLF: 129.7011091570549
Iteration: 14, Func. Count: 151, Neg. LLF: 129.70107665591533
Iteration: 15, Func. Count: 161, Neg. LLF: 129.7010759780972
Optimization terminated successfully (Exit mode 0)
Current function value: 129.7010759780972
Iterations: 15
Function evaluations: 161
Gradient evaluations: 15
Iteration: 1, Func. Count: 12, Neg. LLF: 166.18209159244094
Iteration: 2, Func. Count: 24, Neg. LLF: 166.1860897333707
Iteration: 3, Func. Count: 36, Neg. LLF: 145.84273382201266
Iteration: 4, Func. Count: 48, Neg. LLF: 237.20764837715453
Iteration: 5, Func. Count: 60, Neg. LLF: 140.2560339681418
Iteration: 6, Func. Count: 72, Neg. LLF: 132.8100807006505
Iteration: 7, Func. Count: 84, Neg. LLF: 129.79350929381056
Iteration: 8, Func. Count: 95, Neg. LLF: 129.94081171688475
Iteration: 9, Func. Count: 107, Neg. LLF: 129.7125686321502
Iteration: 10, Func. Count: 118, Neg. LLF: 129.7014580418449
Iteration: 11, Func. Count: 129, Neg. LLF: 129.70131991181864
Iteration: 12, Func. Count: 140, Neg. LLF: 129.70107670588342
Iteration: 13, Func. Count: 151, Neg. LLF: 129.7010759973248
Optimization terminated successfully (Exit mode 0)
Current function value: 129.7010759973248
Iterations: 13
Function evaluations: 151
Gradient evaluations: 13
Iteration: 1, Func. Count: 13, Neg. LLF: 163.27485516580057
Iteration: 2, Func. Count: 26, Neg. LLF: 184.3110421941339
Iteration: 3, Func. Count: 39, Neg. LLF: 149.67300236088835
Iteration: 4, Func. Count: 52, Neg. LLF: 364.16978107057577
Iteration: 5, Func. Count: 65, Neg. LLF: 131.27842333957716
Iteration: 6, Func. Count: 77, Neg. LLF: 131.23027962998077
Iteration: 7, Func. Count: 90, Neg. LLF: 133.8023536626211
Iteration: 8, Func. Count: 105, Neg. LLF: 130.3781131189952
Iteration: 9, Func. Count: 118, Neg. LLF: 129.7955383752598
Iteration: 10, Func. Count: 130, Neg. LLF: 129.70358008629026
Iteration: 11, Func. Count: 142, Neg. LLF: 129.70196387620058
Iteration: 12, Func. Count: 154, Neg. LLF: 129.70108160272576
Iteration: 13, Func. Count: 166, Neg. LLF: 129.70107710668222
Iteration: 14, Func. Count: 178, Neg. LLF: 129.701075991515
Iteration: 15, Func. Count: 189, Neg. LLF: 129.7010759477006
Optimization terminated successfully (Exit mode 0)
Current function value: 129.701075991515
Iterations: 15
Function evaluations: 189
Gradient evaluations: 15
Iteration: 1, Func. Count: 14, Neg. LLF: 163.5123781674868
Iteration: 2, Func. Count: 28, Neg. LLF: 178.99991361489504
Iteration: 3, Func. Count: 42, Neg. LLF: 145.48945491332964
Iteration: 4, Func. Count: 56, Neg. LLF: 320.84396751715695
Iteration: 5, Func. Count: 70, Neg. LLF: 131.1273789259341
Iteration: 6, Func. Count: 83, Neg. LLF: 131.96393546349734
Iteration: 7, Func. Count: 97, Neg. LLF: 135.82498372877922
Iteration: 8, Func. Count: 114, Neg. LLF: 130.7287347216171
Iteration: 9, Func. Count: 128, Neg. LLF: 129.74060655065162
Iteration: 10, Func. Count: 141, Neg. LLF: 129.70450577227555
Iteration: 11, Func. Count: 154, Neg. LLF: 129.70221456398875
Iteration: 12, Func. Count: 167, Neg. LLF: 129.7010819420396
Iteration: 13, Func. Count: 180, Neg. LLF: 129.70107733469018
Iteration: 14, Func. Count: 193, Neg. LLF: 129.70107598547355
Iteration: 15, Func. Count: 205, Neg. LLF: 129.70107604558984
Optimization terminated successfully (Exit mode 0)
Current function value: 129.70107598547355
Iterations: 15
Function evaluations: 205
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 153.86657566195436
Iteration: 2, Func. Count: 22, Neg. LLF: 138.8234756392644
Iteration: 3, Func. Count: 33, Neg. LLF: 151.29898794493275
Iteration: 4, Func. Count: 44, Neg. LLF: 136.89930213525858
Iteration: 5, Func. Count: 54, Neg. LLF: 133.99756494574504
Iteration: 6, Func. Count: 64, Neg. LLF: 132.9776295644586
Iteration: 7, Func. Count: 75, Neg. LLF: 145.61508147053988
Iteration: 8, Func. Count: 88, Neg. LLF: 140.1606655818609
Iteration: 9, Func. Count: 99, Neg. LLF: 145.95536061906824
Iteration: 10, Func. Count: 111, Neg. LLF: 45181.515651563765
Iteration: 11, Func. Count: 122, Neg. LLF: 129.85776903115496
Iteration: 12, Func. Count: 132, Neg. LLF: 129.81860655730037
Iteration: 13, Func. Count: 142, Neg. LLF: 129.7697355721074
Iteration: 14, Func. Count: 152, Neg. LLF: 129.71373988591023
Iteration: 15, Func. Count: 162, Neg. LLF: 129.70224313468609
Iteration: 16, Func. Count: 172, Neg. LLF: 129.70122664336765
Iteration: 17, Func. Count: 182, Neg. LLF: 129.70109053640851
Iteration: 18, Func. Count: 192, Neg. LLF: 129.7010769367975
Iteration: 19, Func. Count: 202, Neg. LLF: 129.70107600706675
Optimization terminated successfully (Exit mode 0)
Current function value: 129.70107600706675
Iterations: 19
Function evaluations: 202
Gradient evaluations: 19
Iteration: 1, Func. Count: 12, Neg. LLF: 248.70245160609704
Iteration: 2, Func. Count: 24, Neg. LLF: 185.67936136105394
Iteration: 3, Func. Count: 36, Neg. LLF: 256.6115370503015
Iteration: 4, Func. Count: 48, Neg. LLF: 145.55874982358955
Iteration: 5, Func. Count: 60, Neg. LLF: 140.37580133621097
Iteration: 6, Func. Count: 72, Neg. LLF: 135.45985877817358
Iteration: 7, Func. Count: 84, Neg. LLF: 133.18373854309
Iteration: 8, Func. Count: 96, Neg. LLF: 130.01598709270715
Iteration: 9, Func. Count: 107, Neg. LLF: 129.7040929356154
Iteration: 10, Func. Count: 118, Neg. LLF: 130.72891672700763
Iteration: 11, Func. Count: 131, Neg. LLF: 129.7018147920163
Iteration: 12, Func. Count: 142, Neg. LLF: 129.7011209107515
Iteration: 13, Func. Count: 153, Neg. LLF: 129.70107826518085
Iteration: 14, Func. Count: 164, Neg. LLF: 129.7010760362214
Iteration: 15, Func. Count: 174, Neg. LLF: 129.70107597319767
Optimization terminated successfully (Exit mode 0)
Current function value: 129.7010760362214
Iterations: 15
Function evaluations: 174
Gradient evaluations: 15
Iteration: 1, Func. Count: 13, Neg. LLF: 171.43203880015278
Iteration: 2, Func. Count: 26, Neg. LLF: 164.90233295732622
Iteration: 3, Func. Count: 39, Neg. LLF: 188.3688515897032
Iteration: 4, Func. Count: 52, Neg. LLF: 143.15185274537345
Iteration: 5, Func. Count: 65, Neg. LLF: 248.91484193666957
Iteration: 6, Func. Count: 78, Neg. LLF: 133.6821280234073
Iteration: 7, Func. Count: 91, Neg. LLF: 129.87935378283242
Iteration: 8, Func. Count: 103, Neg. LLF: 129.78808076843703
Iteration: 9, Func. Count: 115, Neg. LLF: 130.74537947059974
Iteration: 10, Func. Count: 128, Neg. LLF: 129.7055685578481
Iteration: 11, Func. Count: 140, Neg. LLF: 129.70460436711724
Iteration: 12, Func. Count: 153, Neg. LLF: 129.70112016703263
Iteration: 13, Func. Count: 165, Neg. LLF: 129.7010773510324
Iteration: 14, Func. Count: 177, Neg. LLF: 129.70107597235028
Iteration: 15, Func. Count: 188, Neg. LLF: 129.70107601788902
Optimization terminated successfully (Exit mode 0)
Current function value: 129.70107597235028
Iterations: 15
Function evaluations: 188
Gradient evaluations: 15
Iteration: 1, Func. Count: 14, Neg. LLF: 162.19353909254
Iteration: 2, Func. Count: 28, Neg. LLF: 188.51994693753358
Iteration: 3, Func. Count: 42, Neg. LLF: 143.38500365139856
Iteration: 4, Func. Count: 56, Neg. LLF: 297.9534092350826
Iteration: 5, Func. Count: 70, Neg. LLF: 131.0759468520624
Iteration: 6, Func. Count: 83, Neg. LLF: 131.3535391607921
Iteration: 7, Func. Count: 97, Neg. LLF: 134.4656075616093
Iteration: 8, Func. Count: 114, Neg. LLF: 130.56896709721968
Iteration: 9, Func. Count: 128, Neg. LLF: 129.75526730443417
Iteration: 10, Func. Count: 141, Neg. LLF: 129.70300939206177
Iteration: 11, Func. Count: 154, Neg. LLF: 129.7021410991562
Iteration: 12, Func. Count: 167, Neg. LLF: 129.70108123855877
Iteration: 13, Func. Count: 180, Neg. LLF: 129.70107699354762
Iteration: 14, Func. Count: 193, Neg. LLF: 129.70107597974064
Iteration: 15, Func. Count: 205, Neg. LLF: 129.70107593592448
Optimization terminated successfully (Exit mode 0)
Current function value: 129.70107597974064
Iterations: 15
Function evaluations: 205
Gradient evaluations: 15
Iteration: 1, Func. Count: 15, Neg. LLF: 162.30981233069056
Iteration: 2, Func. Count: 30, Neg. LLF: 184.94819761888996
Iteration: 3, Func. Count: 45, Neg. LLF: 139.26045231657005
Iteration: 4, Func. Count: 60, Neg. LLF: 267.14308621858066
Iteration: 5, Func. Count: 75, Neg. LLF: 130.54468677545776
Iteration: 6, Func. Count: 89, Neg. LLF: 131.4595716948867
Iteration: 7, Func. Count: 104, Neg. LLF: 134.55603557648067
Iteration: 8, Func. Count: 121, Neg. LLF: 130.63704671693947
Iteration: 9, Func. Count: 136, Neg. LLF: 129.7438552295839
Iteration: 10, Func. Count: 150, Neg. LLF: 129.71711916411988
Iteration: 11, Func. Count: 164, Neg. LLF: 129.70120171274337
Iteration: 12, Func. Count: 178, Neg. LLF: 129.70107818566743
Iteration: 13, Func. Count: 192, Neg. LLF: 129.70107610330354
Iteration: 14, Func. Count: 205, Neg. LLF: 129.70107616338393
Optimization terminated successfully (Exit mode 0)
Current function value: 129.70107610330354
Iterations: 14
Function evaluations: 205
Gradient evaluations: 14
Iteration: 1, Func. Count: 8, Neg. LLF: 145.23400499069064
Iteration: 2, Func. Count: 16, Neg. LLF: 164.2423357948223
Iteration: 3, Func. Count: 24, Neg. LLF: 140.649767602293
Iteration: 4, Func. Count: 31, Neg. LLF: 140.49778159326186
Iteration: 5, Func. Count: 38, Neg. LLF: 139.32944453899063
Iteration: 6, Func. Count: 45, Neg. LLF: 140.51333692665108
Iteration: 7, Func. Count: 53, Neg. LLF: 354.4640137782963
Iteration: 8, Func. Count: 61, Neg. LLF: 810.5784958965148
Iteration: 9, Func. Count: 69, Neg. LLF: 193987.88647776493
Iteration: 10, Func. Count: 77, Neg. LLF: 734.5955706581329
Iteration: 11, Func. Count: 85, Neg. LLF: 182.1476051469005
Iteration: 12, Func. Count: 93, Neg. LLF: 136.7962649229541
Iteration: 13, Func. Count: 101, Neg. LLF: 135.09187725076345
Iteration: 14, Func. Count: 108, Neg. LLF: 135.08473266389186
Iteration: 15, Func. Count: 116, Neg. LLF: 135.07192137497697
Iteration: 16, Func. Count: 124, Neg. LLF: 135.03550727491455
Iteration: 17, Func. Count: 131, Neg. LLF: 135.03533494694224
Iteration: 18, Func. Count: 137, Neg. LLF: 135.03533487252065
Optimization terminated successfully (Exit mode 0)
Current function value: 135.03533494694224
Iterations: 18
Function evaluations: 137
Gradient evaluations: 18
Iteration: 1, Func. Count: 9, Neg. LLF: 167.32002981910193
Iteration: 2, Func. Count: 18, Neg. LLF: 171.7139055732649
Iteration: 3, Func. Count: 27, Neg. LLF: 137.2243202856083
Iteration: 4, Func. Count: 35, Neg. LLF: 137.02517993693453
Iteration: 5, Func. Count: 44, Neg. LLF: 135.1985435180933
Iteration: 6, Func. Count: 52, Neg. LLF: 135.07918391270266
Iteration: 7, Func. Count: 60, Neg. LLF: 135.04340939145789
Iteration: 8, Func. Count: 68, Neg. LLF: 135.03574550512982
Iteration: 9, Func. Count: 76, Neg. LLF: 135.035343717288
Iteration: 10, Func. Count: 84, Neg. LLF: 135.03533597799333
Iteration: 11, Func. Count: 92, Neg. LLF: 135.03533486027345
Iteration: 12, Func. Count: 99, Neg. LLF: 135.03533490859033
Optimization terminated successfully (Exit mode 0)
Current function value: 135.03533486027345
Iterations: 12
Function evaluations: 99
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 163.52392607122482
Iteration: 2, Func. Count: 20, Neg. LLF: 175.21312122906065
Iteration: 3, Func. Count: 30, Neg. LLF: 137.0674960717349
Iteration: 4, Func. Count: 39, Neg. LLF: 135.65065690223517
Iteration: 5, Func. Count: 48, Neg. LLF: 135.0411912355938
Iteration: 6, Func. Count: 57, Neg. LLF: 135.03799127896977
Iteration: 7, Func. Count: 66, Neg. LLF: 135.0355079220543
Iteration: 8, Func. Count: 75, Neg. LLF: 135.03536411562
Iteration: 9, Func. Count: 84, Neg. LLF: 135.03533478009095
Iteration: 10, Func. Count: 92, Neg. LLF: 135.03533493969124
Optimization terminated successfully (Exit mode 0)
Current function value: 135.03533478009095
Iterations: 10
Function evaluations: 92
Gradient evaluations: 10
Iteration: 1, Func. Count: 11, Neg. LLF: 161.54762402528866
Iteration: 2, Func. Count: 22, Neg. LLF: 174.31254176778532
Iteration: 3, Func. Count: 33, Neg. LLF: 137.40179081593635
Iteration: 4, Func. Count: 43, Neg. LLF: 135.12202541356206
Iteration: 5, Func. Count: 53, Neg. LLF: 138.08296737544546
Iteration: 6, Func. Count: 65, Neg. LLF: 134.69463042524634
Iteration: 7, Func. Count: 75, Neg. LLF: 134.71974363620458
Iteration: 8, Func. Count: 86, Neg. LLF: 134.6303675262296
Iteration: 9, Func. Count: 96, Neg. LLF: 134.62471223024886
Iteration: 10, Func. Count: 106, Neg. LLF: 134.6241781123072
Iteration: 11, Func. Count: 116, Neg. LLF: 134.62416960749775
Iteration: 12, Func. Count: 126, Neg. LLF: 134.62416891072223
Optimization terminated successfully (Exit mode 0)
Current function value: 134.62416891072223
Iterations: 12
Function evaluations: 126
Gradient evaluations: 12
Iteration: 1, Func. Count: 12, Neg. LLF: 144.81945898391544
Iteration: 2, Func. Count: 24, Neg. LLF: 150.366203241387
Iteration: 3, Func. Count: 36, Neg. LLF: 137.8215491780909
Iteration: 4, Func. Count: 47, Neg. LLF: 170.99925542009802
Iteration: 5, Func. Count: 59, Neg. LLF: 324.1781223692427
Iteration: 6, Func. Count: 71, Neg. LLF: 171.27096451059026
Iteration: 7, Func. Count: 83, Neg. LLF: 199.32779709293027
Iteration: 8, Func. Count: 95, Neg. LLF: 136.8229962745925
Iteration: 9, Func. Count: 107, Neg. LLF: 135.0401640463405
Iteration: 10, Func. Count: 118, Neg. LLF: 135.53205646470565
Iteration: 11, Func. Count: 130, Neg. LLF: 134.76719874496953
Iteration: 12, Func. Count: 141, Neg. LLF: 134.6591120272125
Iteration: 13, Func. Count: 152, Neg. LLF: 134.62689663578345
Iteration: 14, Func. Count: 163, Neg. LLF: 134.62479236048128
Iteration: 15, Func. Count: 174, Neg. LLF: 134.62416951031824
Iteration: 16, Func. Count: 185, Neg. LLF: 134.62416890702502
Optimization terminated successfully (Exit mode 0)
Current function value: 134.62416890702502
Iterations: 16
Function evaluations: 185
Gradient evaluations: 16
Iteration: 1, Func. Count: 9, Neg. LLF: 143.20662039274504
Iteration: 2, Func. Count: 18, Neg. LLF: 149.64577158356326
Iteration: 3, Func. Count: 27, Neg. LLF: 146.92687501119397
Iteration: 4, Func. Count: 36, Neg. LLF: 139.87289388849206
Iteration: 5, Func. Count: 44, Neg. LLF: 138.09766324554252
Iteration: 6, Func. Count: 52, Neg. LLF: 155.95891023635005
Iteration: 7, Func. Count: 61, Neg. LLF: 155.89478818308157
Iteration: 8, Func. Count: 70, Neg. LLF: 156.1987678864146
Iteration: 9, Func. Count: 79, Neg. LLF: 155.42689987669894
Iteration: 10, Func. Count: 88, Neg. LLF: 155.49015536799732
Iteration: 11, Func. Count: 97, Neg. LLF: 172.95689641494585
Iteration: 12, Func. Count: 106, Neg. LLF: 411.22648007579465
Iteration: 13, Func. Count: 115, Neg. LLF: 338.30142856637394
Iteration: 14, Func. Count: 124, Neg. LLF: 136.229350614362
Iteration: 15, Func. Count: 133, Neg. LLF: 144.3253886303524
Iteration: 16, Func. Count: 142, Neg. LLF: 133.51157829858022
Iteration: 17, Func. Count: 150, Neg. LLF: 133.3300214062971
Iteration: 18, Func. Count: 158, Neg. LLF: 132.6928879915314
Iteration: 19, Func. Count: 166, Neg. LLF: 132.20024937811738
Iteration: 20, Func. Count: 174, Neg. LLF: 132.02791291789023
Iteration: 21, Func. Count: 182, Neg. LLF: 131.99795740862888
Iteration: 22, Func. Count: 190, Neg. LLF: 131.99737402945894
Iteration: 23, Func. Count: 198, Neg. LLF: 131.99736602578764
Iteration: 24, Func. Count: 206, Neg. LLF: 131.99736542628185
Optimization terminated successfully (Exit mode 0)
Current function value: 131.99736542628185
Iterations: 24
Function evaluations: 206
Gradient evaluations: 24
Iteration: 1, Func. Count: 10, Neg. LLF: 269.03042931142016
Iteration: 2, Func. Count: 20, Neg. LLF: 144.2861558614235
Iteration: 3, Func. Count: 30, Neg. LLF: 134.88559575440564
Iteration: 4, Func. Count: 39, Neg. LLF: 163.50296348097072
Iteration: 5, Func. Count: 52, Neg. LLF: 145.09298063816198
Iteration: 6, Func. Count: 62, Neg. LLF: 145.37545134022653
Iteration: 7, Func. Count: 72, Neg. LLF: 132.8176037232361
Iteration: 8, Func. Count: 82, Neg. LLF: 134.83015501602097
Iteration: 9, Func. Count: 92, Neg. LLF: 131.44839966449263
Iteration: 10, Func. Count: 101, Neg. LLF: 131.41582803273207
Iteration: 11, Func. Count: 110, Neg. LLF: 131.38827877665847
Iteration: 12, Func. Count: 119, Neg. LLF: 131.38756612765474
Iteration: 13, Func. Count: 128, Neg. LLF: 131.3875456151482
Iteration: 14, Func. Count: 137, Neg. LLF: 131.3875450243786
Optimization terminated successfully (Exit mode 0)
Current function value: 131.3875450243786
Iterations: 14
Function evaluations: 137
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 251.7838488085014
Iteration: 2, Func. Count: 22, Neg. LLF: 140.79924653807691
Iteration: 3, Func. Count: 33, Neg. LLF: 133.32634353052822
Iteration: 4, Func. Count: 43, Neg. LLF: 147.11999045776102
Iteration: 5, Func. Count: 54, Neg. LLF: 151.15078554459402
Iteration: 6, Func. Count: 65, Neg. LLF: 131.4676668299741
Iteration: 7, Func. Count: 75, Neg. LLF: 131.44869069057393
Iteration: 8, Func. Count: 86, Neg. LLF: 131.3919997221119
Iteration: 9, Func. Count: 96, Neg. LLF: 131.38766388596858
Iteration: 10, Func. Count: 106, Neg. LLF: 131.3875582536921
Iteration: 11, Func. Count: 116, Neg. LLF: 131.38754524497395
Iteration: 12, Func. Count: 125, Neg. LLF: 131.3875452267288
Optimization terminated successfully (Exit mode 0)
Current function value: 131.38754524497395
Iterations: 12
Function evaluations: 125
Gradient evaluations: 12
Iteration: 1, Func. Count: 12, Neg. LLF: 243.65325742345868
Iteration: 2, Func. Count: 24, Neg. LLF: 149.32942984760763
Iteration: 3, Func. Count: 36, Neg. LLF: 132.92682451555535
Iteration: 4, Func. Count: 47, Neg. LLF: 150.46648715726852
Iteration: 5, Func. Count: 59, Neg. LLF: 134.8094695443535
Iteration: 6, Func. Count: 71, Neg. LLF: 131.88717629724906
Iteration: 7, Func. Count: 83, Neg. LLF: 131.39422432048192
Iteration: 8, Func. Count: 94, Neg. LLF: 131.38987029614378
Iteration: 9, Func. Count: 105, Neg. LLF: 131.38875385007265
Iteration: 10, Func. Count: 116, Neg. LLF: 131.3875761969947
Iteration: 11, Func. Count: 127, Neg. LLF: 131.3875474667157
Iteration: 12, Func. Count: 138, Neg. LLF: 131.38754502037486
Iteration: 13, Func. Count: 148, Neg. LLF: 131.38754495591013
Optimization terminated successfully (Exit mode 0)
Current function value: 131.38754502037486
Iterations: 13
Function evaluations: 148
Gradient evaluations: 13
Iteration: 1, Func. Count: 13, Neg. LLF: 242.49692391885378
Iteration: 2, Func. Count: 26, Neg. LLF: 141.42094846780336
Iteration: 3, Func. Count: 39, Neg. LLF: 132.23611911661735
Iteration: 4, Func. Count: 51, Neg. LLF: 143.92655333603645
Iteration: 5, Func. Count: 64, Neg. LLF: 135.24157942945834
Iteration: 6, Func. Count: 77, Neg. LLF: 131.4124418069365
Iteration: 7, Func. Count: 89, Neg. LLF: 131.394888498724
Iteration: 8, Func. Count: 101, Neg. LLF: 131.38823623880762
Iteration: 9, Func. Count: 113, Neg. LLF: 131.38792469184483
Iteration: 10, Func. Count: 125, Neg. LLF: 131.38758919722557
Iteration: 11, Func. Count: 137, Neg. LLF: 131.38755895989271
Iteration: 12, Func. Count: 149, Neg. LLF: 131.38754508409886
Iteration: 13, Func. Count: 160, Neg. LLF: 131.38754517754376
Optimization terminated successfully (Exit mode 0)
Current function value: 131.38754508409886
Iterations: 13
Function evaluations: 160
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 151.83472171678017
Iteration: 2, Func. Count: 20, Neg. LLF: 141.39225479683756
Iteration: 3, Func. Count: 30, Neg. LLF: 146.13183683602676
Iteration: 4, Func. Count: 40, Neg. LLF: 137.01735317208124
Iteration: 5, Func. Count: 49, Neg. LLF: 133.7295196166373
Iteration: 6, Func. Count: 58, Neg. LLF: 648275.4309235904
Iteration: 7, Func. Count: 68, Neg. LLF: 628235.0283819286
Iteration: 8, Func. Count: 78, Neg. LLF: 634759.6827240686
Iteration: 9, Func. Count: 88, Neg. LLF: 624674.4105711104
Iteration: 10, Func. Count: 98, Neg. LLF: 5964.279253517546
Iteration: 11, Func. Count: 108, Neg. LLF: 183.19639511658644
Iteration: 12, Func. Count: 118, Neg. LLF: 610088.6006875581
Iteration: 13, Func. Count: 128, Neg. LLF: 179.7540932606745
Iteration: 14, Func. Count: 138, Neg. LLF: 133.78552715625173
Iteration: 15, Func. Count: 148, Neg. LLF: 130.54925266273563
Iteration: 16, Func. Count: 157, Neg. LLF: 130.52607075296277
Iteration: 17, Func. Count: 166, Neg. LLF: 130.5311614680091
Iteration: 18, Func. Count: 176, Neg. LLF: 130.48792030328747
Iteration: 19, Func. Count: 185, Neg. LLF: 130.48513391089386
Iteration: 20, Func. Count: 194, Neg. LLF: 130.48387146843248
Iteration: 21, Func. Count: 203, Neg. LLF: 130.4838561044385
Iteration: 22, Func. Count: 212, Neg. LLF: 130.4838551328661
Optimization terminated successfully (Exit mode 0)
Current function value: 130.4838551328661
Iterations: 22
Function evaluations: 212
Gradient evaluations: 22
Iteration: 1, Func. Count: 11, Neg. LLF: 265.8178477323471
Iteration: 2, Func. Count: 22, Neg. LLF: 196.53204662661253
Iteration: 3, Func. Count: 33, Neg. LLF: 172.8497864558659
Iteration: 4, Func. Count: 44, Neg. LLF: 141.0597932714973
Iteration: 5, Func. Count: 55, Neg. LLF: 144.6302910839395
Iteration: 6, Func. Count: 66, Neg. LLF: 133.32182183794487
Iteration: 7, Func. Count: 77, Neg. LLF: 130.6564993961033
Iteration: 8, Func. Count: 87, Neg. LLF: 129.94493596976216
Iteration: 9, Func. Count: 97, Neg. LLF: 129.86169197539354
Iteration: 10, Func. Count: 107, Neg. LLF: 129.82367052090012
Iteration: 11, Func. Count: 117, Neg. LLF: 129.81159065741699
Iteration: 12, Func. Count: 127, Neg. LLF: 129.8109977296299
Iteration: 13, Func. Count: 137, Neg. LLF: 129.81098903041203
Iteration: 14, Func. Count: 146, Neg. LLF: 129.81098894054577
Optimization terminated successfully (Exit mode 0)
Current function value: 129.81098903041203
Iterations: 14
Function evaluations: 146
Gradient evaluations: 14
Iteration: 1, Func. Count: 12, Neg. LLF: 166.7340596346848
Iteration: 2, Func. Count: 24, Neg. LLF: 170.10872510066685
Iteration: 3, Func. Count: 36, Neg. LLF: 197.05392545477426
Iteration: 4, Func. Count: 48, Neg. LLF: 176.36762933413823
Iteration: 5, Func. Count: 60, Neg. LLF: 143.24289073170021
Iteration: 6, Func. Count: 72, Neg. LLF: 134.4375344487001
Iteration: 7, Func. Count: 84, Neg. LLF: 130.6252126132144
Iteration: 8, Func. Count: 95, Neg. LLF: 129.9177080821189
Iteration: 9, Func. Count: 106, Neg. LLF: 129.85240612117622
Iteration: 10, Func. Count: 117, Neg. LLF: 129.8164750964679
Iteration: 11, Func. Count: 128, Neg. LLF: 129.81133605998085
Iteration: 12, Func. Count: 139, Neg. LLF: 129.81099004473103
Iteration: 13, Func. Count: 150, Neg. LLF: 129.81098902839534
Iteration: 14, Func. Count: 160, Neg. LLF: 129.81098905118904
Optimization terminated successfully (Exit mode 0)
Current function value: 129.81098902839534
Iterations: 14
Function evaluations: 160
Gradient evaluations: 14
Iteration: 1, Func. Count: 13, Neg. LLF: 160.74421301138324
Iteration: 2, Func. Count: 26, Neg. LLF: 186.2919742251011
Iteration: 3, Func. Count: 39, Neg. LLF: 135.84938391659404
Iteration: 4, Func. Count: 52, Neg. LLF: 246.55025559486558
Iteration: 5, Func. Count: 65, Neg. LLF: 130.16004263820554
Iteration: 6, Func. Count: 77, Neg. LLF: 129.8834403921969
Iteration: 7, Func. Count: 89, Neg. LLF: 129.8185298174573
Iteration: 8, Func. Count: 101, Neg. LLF: 129.81169531841493
Iteration: 9, Func. Count: 113, Neg. LLF: 129.8113770422253
Iteration: 10, Func. Count: 125, Neg. LLF: 129.81100640583637
Iteration: 11, Func. Count: 137, Neg. LLF: 129.81098958299782
Iteration: 12, Func. Count: 149, Neg. LLF: 129.81098894937355
Optimization terminated successfully (Exit mode 0)
Current function value: 129.81098894937355
Iterations: 12
Function evaluations: 149
Gradient evaluations: 12
Iteration: 1, Func. Count: 14, Neg. LLF: 161.23462928189943
Iteration: 2, Func. Count: 28, Neg. LLF: 179.1864568971436
Iteration: 3, Func. Count: 42, Neg. LLF: 135.79268889012977
Iteration: 4, Func. Count: 56, Neg. LLF: 253.06422846733196
Iteration: 5, Func. Count: 70, Neg. LLF: 130.15527298216588
Iteration: 6, Func. Count: 83, Neg. LLF: 129.89257402455678
Iteration: 7, Func. Count: 96, Neg. LLF: 129.83939207272994
Iteration: 8, Func. Count: 109, Neg. LLF: 129.84844685920953
Iteration: 9, Func. Count: 123, Neg. LLF: 129.81143647257335
Iteration: 10, Func. Count: 136, Neg. LLF: 129.8109897549708
Iteration: 11, Func. Count: 149, Neg. LLF: 129.81098896800015
Optimization terminated successfully (Exit mode 0)
Current function value: 129.81098896800015
Iterations: 11
Function evaluations: 149
Gradient evaluations: 11
Iteration: 1, Func. Count: 11, Neg. LLF: 151.48770696668726
Iteration: 2, Func. Count: 22, Neg. LLF: 139.40546461192832
Iteration: 3, Func. Count: 33, Neg. LLF: 149.39487193617458
Iteration: 4, Func. Count: 44, Neg. LLF: 136.87729963768243
Iteration: 5, Func. Count: 54, Neg. LLF: 132.99921147229293
Iteration: 6, Func. Count: 64, Neg. LLF: 671171.9295086347
Iteration: 7, Func. Count: 75, Neg. LLF: 35941.179241658545
Iteration: 8, Func. Count: 86, Neg. LLF: 14739.287494582015
Iteration: 9, Func. Count: 97, Neg. LLF: 94021.36432374235
Iteration: 10, Func. Count: 108, Neg. LLF: 491.67248537091285
Iteration: 11, Func. Count: 119, Neg. LLF: 131.65025074341654
Iteration: 12, Func. Count: 130, Neg. LLF: 129.79805165959823
Iteration: 13, Func. Count: 140, Neg. LLF: 129.74370312988984
Iteration: 14, Func. Count: 150, Neg. LLF: 129.70607513392008
Iteration: 15, Func. Count: 160, Neg. LLF: 129.70146830189708
Iteration: 16, Func. Count: 170, Neg. LLF: 129.70109158425802
Iteration: 17, Func. Count: 180, Neg. LLF: 129.70107695285913
Iteration: 18, Func. Count: 190, Neg. LLF: 129.70107597497892
Optimization terminated successfully (Exit mode 0)
Current function value: 129.70107597497892
Iterations: 18
Function evaluations: 190
Gradient evaluations: 18
Iteration: 1, Func. Count: 12, Neg. LLF: 254.10970297479253
Iteration: 2, Func. Count: 24, Neg. LLF: 215.98182324227008
Iteration: 3, Func. Count: 36, Neg. LLF: 161.19558389805326
Iteration: 4, Func. Count: 48, Neg. LLF: 142.93448176015906
Iteration: 5, Func. Count: 60, Neg. LLF: 143.96915280422397
Iteration: 6, Func. Count: 72, Neg. LLF: 134.2284291919187
Iteration: 7, Func. Count: 84, Neg. LLF: 131.89438603066307
Iteration: 8, Func. Count: 96, Neg. LLF: 129.7916058512168
Iteration: 9, Func. Count: 107, Neg. LLF: 129.70655219095462
Iteration: 10, Func. Count: 118, Neg. LLF: 129.7014573467503
Iteration: 11, Func. Count: 129, Neg. LLF: 129.7011177778334
Iteration: 12, Func. Count: 140, Neg. LLF: 129.70107645162815
Iteration: 13, Func. Count: 151, Neg. LLF: 129.70107600038932
Optimization terminated successfully (Exit mode 0)
Current function value: 129.70107600038932
Iterations: 13
Function evaluations: 151
Gradient evaluations: 13
Iteration: 1, Func. Count: 13, Neg. LLF: 176.3512536307399
Iteration: 2, Func. Count: 26, Neg. LLF: 173.96935277968853
Iteration: 3, Func. Count: 39, Neg. LLF: 188.9650543938758
Iteration: 4, Func. Count: 52, Neg. LLF: 137.25656353510658
Iteration: 5, Func. Count: 65, Neg. LLF: 132.92232524187315
Iteration: 6, Func. Count: 78, Neg. LLF: 130.11856353747083
Iteration: 7, Func. Count: 90, Neg. LLF: 129.72160888713051
Iteration: 8, Func. Count: 102, Neg. LLF: 131.29836004206686
Iteration: 9, Func. Count: 116, Neg. LLF: 129.70338815993762
Iteration: 10, Func. Count: 128, Neg. LLF: 129.7033253656677
Iteration: 11, Func. Count: 141, Neg. LLF: 129.70117733728372
Iteration: 12, Func. Count: 153, Neg. LLF: 129.70107599177987
Iteration: 13, Func. Count: 164, Neg. LLF: 129.7010760373249
Optimization terminated successfully (Exit mode 0)
Current function value: 129.70107599177987
Iterations: 13
Function evaluations: 164
Gradient evaluations: 13
Iteration: 1, Func. Count: 14, Neg. LLF: 158.8055620801721
Iteration: 2, Func. Count: 28, Neg. LLF: 200.82456836218302
Iteration: 3, Func. Count: 42, Neg. LLF: 136.43397747124553
Iteration: 4, Func. Count: 56, Neg. LLF: 130.90865435935135
Iteration: 5, Func. Count: 69, Neg. LLF: 135.15175380617742
Iteration: 6, Func. Count: 83, Neg. LLF: 135.56811151320494
Iteration: 7, Func. Count: 98, Neg. LLF: 130.7690352229876
Iteration: 8, Func. Count: 112, Neg. LLF: 129.7313941058092
Iteration: 9, Func. Count: 125, Neg. LLF: 129.70257946271977
Iteration: 10, Func. Count: 138, Neg. LLF: 129.7010890100602
Iteration: 11, Func. Count: 151, Neg. LLF: 129.70107714993128
Iteration: 12, Func. Count: 164, Neg. LLF: 129.70107597796638
Iteration: 13, Func. Count: 176, Neg. LLF: 129.70107593415335
Optimization terminated successfully (Exit mode 0)
Current function value: 129.70107597796638
Iterations: 13
Function evaluations: 176
Gradient evaluations: 13
Iteration: 1, Func. Count: 15, Neg. LLF: 159.0194738120742
Iteration: 2, Func. Count: 30, Neg. LLF: 196.23125151548498
Iteration: 3, Func. Count: 45, Neg. LLF: 136.03847512642224
Iteration: 4, Func. Count: 60, Neg. LLF: 130.93075443465486
Iteration: 5, Func. Count: 74, Neg. LLF: 182.54125037754565
Iteration: 6, Func. Count: 89, Neg. LLF: 131.9950541882204
Iteration: 7, Func. Count: 104, Neg. LLF: 130.0811601021303
Iteration: 8, Func. Count: 119, Neg. LLF: 129.70377623711101
Iteration: 9, Func. Count: 133, Neg. LLF: 129.70259056513206
Iteration: 10, Func. Count: 147, Neg. LLF: 129.70121484704555
Iteration: 11, Func. Count: 161, Neg. LLF: 129.70147371499155
Iteration: 12, Func. Count: 176, Neg. LLF: 129.7011012646824
Iteration: 13, Func. Count: 190, Neg. LLF: 129.70107602626567
Iteration: 14, Func. Count: 203, Neg. LLF: 129.70107608635763
Optimization terminated successfully (Exit mode 0)
Current function value: 129.70107602626567
Iterations: 14
Function evaluations: 203
Gradient evaluations: 14
Iteration: 1, Func. Count: 12, Neg. LLF: 150.40048153207377
Iteration: 2, Func. Count: 24, Neg. LLF: 139.10403731133778
Iteration: 3, Func. Count: 36, Neg. LLF: 150.26662529689816
Iteration: 4, Func. Count: 48, Neg. LLF: 136.9079988873683
Iteration: 5, Func. Count: 59, Neg. LLF: 132.9787564070486
Iteration: 6, Func. Count: 70, Neg. LLF: 584705.1936683275
Iteration: 7, Func. Count: 82, Neg. LLF: 182.94252617502693
Iteration: 8, Func. Count: 94, Neg. LLF: 149.012974894069
Iteration: 9, Func. Count: 107, Neg. LLF: 235.05696756181158
Iteration: 10, Func. Count: 119, Neg. LLF: 70371.55463202717
Iteration: 11, Func. Count: 131, Neg. LLF: 130.17622897404394
Iteration: 12, Func. Count: 142, Neg. LLF: 130.06775395373901
Iteration: 13, Func. Count: 153, Neg. LLF: 129.81657203596995
Iteration: 14, Func. Count: 164, Neg. LLF: 129.71951030204923
Iteration: 15, Func. Count: 175, Neg. LLF: 129.70387344971022
Iteration: 16, Func. Count: 186, Neg. LLF: 129.7013757843852
Iteration: 17, Func. Count: 197, Neg. LLF: 129.7010927111096
Iteration: 18, Func. Count: 208, Neg. LLF: 129.7010769745901
Iteration: 19, Func. Count: 219, Neg. LLF: 129.70107597365873
Iteration: 20, Func. Count: 229, Neg. LLF: 129.70107602461485
Optimization terminated successfully (Exit mode 0)
Current function value: 129.70107597365873
Iterations: 20
Function evaluations: 229
Gradient evaluations: 20
Iteration: 1, Func. Count: 13, Neg. LLF: 249.36658994694054
Iteration: 2, Func. Count: 26, Neg. LLF: 242.56994533134127
Iteration: 3, Func. Count: 39, Neg. LLF: 216.783932986169
Iteration: 4, Func. Count: 52, Neg. LLF: 149.86357459819834
Iteration: 5, Func. Count: 65, Neg. LLF: 135.3389659610768
Iteration: 6, Func. Count: 78, Neg. LLF: 131.7522912469501
Iteration: 7, Func. Count: 90, Neg. LLF: 130.3564571452324
Iteration: 8, Func. Count: 102, Neg. LLF: 132.9745896504711
Iteration: 9, Func. Count: 115, Neg. LLF: 129.42377837879576
Iteration: 10, Func. Count: 127, Neg. LLF: 131.61827421769829
Iteration: 11, Func. Count: 140, Neg. LLF: 130.58682088273505
Iteration: 12, Func. Count: 153, Neg. LLF: 130.64726090014437
Iteration: 13, Func. Count: 166, Neg. LLF: 129.6125344980757
Iteration: 14, Func. Count: 179, Neg. LLF: 129.05889506158456
Iteration: 15, Func. Count: 192, Neg. LLF: 128.90805941162859
Iteration: 16, Func. Count: 204, Neg. LLF: 128.87871500260374
Iteration: 17, Func. Count: 216, Neg. LLF: 128.86863426094277
Iteration: 18, Func. Count: 228, Neg. LLF: 128.86852870149346
Iteration: 19, Func. Count: 240, Neg. LLF: 128.86852754777524
Iteration: 20, Func. Count: 251, Neg. LLF: 128.86852745527005
Optimization terminated successfully (Exit mode 0)
Current function value: 128.86852754777524
Iterations: 20
Function evaluations: 251
Gradient evaluations: 20
Iteration: 1, Func. Count: 14, Neg. LLF: 240.34172394939125
Iteration: 2, Func. Count: 28, Neg. LLF: 216.83594635425538
Iteration: 3, Func. Count: 42, Neg. LLF: 185.68690737854783
Iteration: 4, Func. Count: 56, Neg. LLF: 147.88180900216736
Iteration: 5, Func. Count: 70, Neg. LLF: 134.42366028039618
Iteration: 6, Func. Count: 84, Neg. LLF: 131.0785224669551
Iteration: 7, Func. Count: 97, Neg. LLF: 129.55877232185844
Iteration: 8, Func. Count: 110, Neg. LLF: 129.65324814840992
Iteration: 9, Func. Count: 124, Neg. LLF: 130.01164341954154
Iteration: 10, Func. Count: 138, Neg. LLF: 131.34546879146762
Iteration: 11, Func. Count: 152, Neg. LLF: 132.03576416988582
Iteration: 12, Func. Count: 166, Neg. LLF: 132.10259872954538
Iteration: 13, Func. Count: 180, Neg. LLF: 133.02516490359412
Iteration: 14, Func. Count: 194, Neg. LLF: 131.72004506964942
Iteration: 15, Func. Count: 208, Neg. LLF: 129.80903650711184
Iteration: 16, Func. Count: 222, Neg. LLF: 128.8760113106138
Iteration: 17, Func. Count: 235, Neg. LLF: 128.8708656549482
Iteration: 18, Func. Count: 248, Neg. LLF: 128.86937931628063
Iteration: 19, Func. Count: 261, Neg. LLF: 128.86891063802713
Iteration: 20, Func. Count: 274, Neg. LLF: 128.87039630620157
Iteration: 21, Func. Count: 288, Neg. LLF: 128.8683239060212
Iteration: 22, Func. Count: 301, Neg. LLF: 128.86830245436045
Iteration: 23, Func. Count: 314, Neg. LLF: 128.86830040494317
Iteration: 24, Func. Count: 326, Neg. LLF: 128.86830031164578
Optimization terminated successfully (Exit mode 0)
Current function value: 128.86830040494317
Iterations: 24
Function evaluations: 326
Gradient evaluations: 24
Iteration: 1, Func. Count: 15, Neg. LLF: 158.11694435462798
Iteration: 2, Func. Count: 30, Neg. LLF: 203.4101824662148
Iteration: 3, Func. Count: 45, Neg. LLF: 158.31538328396536
Iteration: 4, Func. Count: 60, Neg. LLF: 158.2041669564808
Iteration: 5, Func. Count: 75, Neg. LLF: 159.75709146402218
Iteration: 6, Func. Count: 90, Neg. LLF: 130.96087002336233
Iteration: 7, Func. Count: 104, Neg. LLF: 130.7867824479808
Iteration: 8, Func. Count: 119, Neg. LLF: 132.66508021952657
Iteration: 9, Func. Count: 136, Neg. LLF: 130.11539276634468
Iteration: 10, Func. Count: 151, Neg. LLF: 129.72678702846048
Iteration: 11, Func. Count: 165, Neg. LLF: 129.70287571414926
Iteration: 12, Func. Count: 179, Neg. LLF: 129.7013738120755
Iteration: 13, Func. Count: 193, Neg. LLF: 129.70107944928475
Iteration: 14, Func. Count: 207, Neg. LLF: 129.70107665846285
Iteration: 15, Func. Count: 221, Neg. LLF: 129.70107596721567
Optimization terminated successfully (Exit mode 0)
Current function value: 129.70107596721567
Iterations: 15
Function evaluations: 221
Gradient evaluations: 15
Iteration: 1, Func. Count: 16, Neg. LLF: 158.13975697648047
Iteration: 2, Func. Count: 32, Neg. LLF: 203.7997097762414
Iteration: 3, Func. Count: 48, Neg. LLF: 142.51880587055496
Iteration: 4, Func. Count: 64, Neg. LLF: 139.69752112665498
Iteration: 5, Func. Count: 80, Neg. LLF: 147.41669920453953
Iteration: 6, Func. Count: 96, Neg. LLF: 130.39111129054038
Iteration: 7, Func. Count: 111, Neg. LLF: 131.89179106644758
Iteration: 8, Func. Count: 127, Neg. LLF: 130.28672499791193
Iteration: 9, Func. Count: 143, Neg. LLF: 129.98610001097447
Iteration: 10, Func. Count: 159, Neg. LLF: 129.70767169875964
Iteration: 11, Func. Count: 174, Neg. LLF: 129.7017538616298
Iteration: 12, Func. Count: 189, Neg. LLF: 129.70108529977654
Iteration: 13, Func. Count: 204, Neg. LLF: 129.70107698696017
Iteration: 14, Func. Count: 219, Neg. LLF: 129.70107603354322
Optimization terminated successfully (Exit mode 0)
Current function value: 129.70107603354322
Iterations: 14
Function evaluations: 219
Gradient evaluations: 14
Iteration: 1, Func. Count: 6, Neg. LLF: 152.74194783210842
Iteration: 2, Func. Count: 12, Neg. LLF: 148.3502867463275
Iteration: 3, Func. Count: 18, Neg. LLF: 182.4254061583444
Iteration: 4, Func. Count: 24, Neg. LLF: 137.3217357222454
Iteration: 5, Func. Count: 29, Neg. LLF: 134.08615376791747
Iteration: 6, Func. Count: 34, Neg. LLF: 614820.7295339815
Iteration: 7, Func. Count: 40, Neg. LLF: 624238.5036268702
Iteration: 8, Func. Count: 46, Neg. LLF: 624062.5879109348
Iteration: 9, Func. Count: 52, Neg. LLF: 625075.0315123462
Iteration: 10, Func. Count: 58, Neg. LLF: 623928.947719339
Iteration: 11, Func. Count: 64, Neg. LLF: 624824.7823012398
Iteration: 12, Func. Count: 70, Neg. LLF: 141.7072862862233
Iteration: 13, Func. Count: 76, Neg. LLF: 131.36316990682184
Iteration: 14, Func. Count: 82, Neg. LLF: 130.54241286305782
Iteration: 15, Func. Count: 87, Neg. LLF: 130.52377093847699
Iteration: 16, Func. Count: 92, Neg. LLF: 130.52349152745595
Iteration: 17, Func. Count: 97, Neg. LLF: 130.52312390927523
Iteration: 18, Func. Count: 102, Neg. LLF: 130.5230231541312
Iteration: 19, Func. Count: 107, Neg. LLF: 130.52302049143702
Iteration: 20, Func. Count: 111, Neg. LLF: 130.52302045179212
Optimization terminated successfully (Exit mode 0)
Current function value: 130.52302049143702
Iterations: 20
Function evaluations: 111
Gradient evaluations: 20
Iteration: 1, Func. Count: 5, Neg. LLF: 150.16506489235667
Iteration: 2, Func. Count: 10, Neg. LLF: 150.1381307150676
Iteration: 3, Func. Count: 15, Neg. LLF: 148.87017756812335
Iteration: 4, Func. Count: 19, Neg. LLF: 148.49774985926445
Iteration: 5, Func. Count: 23, Neg. LLF: 148.45337498651114
Iteration: 6, Func. Count: 27, Neg. LLF: 148.44783353425998
Iteration: 7, Func. Count: 31, Neg. LLF: 148.44660251418276
Iteration: 8, Func. Count: 35, Neg. LLF: 148.4451586432157
Iteration: 9, Func. Count: 39, Neg. LLF: 148.44485932588861
Iteration: 10, Func. Count: 43, Neg. LLF: 148.44482767993517
Iteration: 11, Func. Count: 46, Neg. LLF: 148.44482767992196
Optimization terminated successfully (Exit mode 0)
Current function value: 148.44482767993517
Iterations: 11
Function evaluations: 46
Gradient evaluations: 11
Iteration: 1, Func. Count: 6, Neg. LLF: 358.9884882465845
Iteration: 2, Func. Count: 12, Neg. LLF: 178.9867162871399
Iteration: 3, Func. Count: 19, Neg. LLF: 770.8543436808553
Iteration: 4, Func. Count: 26, Neg. LLF: 140.16028952459462
Iteration: 5, Func. Count: 31, Neg. LLF: 140.05994069313118
Iteration: 6, Func. Count: 36, Neg. LLF: 140.04387405756938
Iteration: 7, Func. Count: 41, Neg. LLF: 140.0362972141471
Iteration: 8, Func. Count: 46, Neg. LLF: 140.0331564357172
Iteration: 9, Func. Count: 51, Neg. LLF: 140.0330670656472
Iteration: 10, Func. Count: 56, Neg. LLF: 140.03306602382668
Iteration: 11, Func. Count: 60, Neg. LLF: 140.03306601985915
Optimization terminated successfully (Exit mode 0)
Current function value: 140.03306602382668
Iterations: 11
Function evaluations: 60
Gradient evaluations: 11
Iteration: 1, Func. Count: 7, Neg. LLF: 300.6620419772795
Iteration: 2, Func. Count: 14, Neg. LLF: 174.54346575594522
Iteration: 3, Func. Count: 21, Neg. LLF: 427.7904816796765
Iteration: 4, Func. Count: 29, Neg. LLF: 147.7749842449967
Iteration: 5, Func. Count: 36, Neg. LLF: 140.4528215863144
Iteration: 6, Func. Count: 42, Neg. LLF: 140.21619406850107
Iteration: 7, Func. Count: 48, Neg. LLF: 140.14409827521314
Iteration: 8, Func. Count: 54, Neg. LLF: 140.04879743405095
Iteration: 9, Func. Count: 60, Neg. LLF: 140.0351019160472
Iteration: 10, Func. Count: 66, Neg. LLF: 140.0335099735408
Iteration: 11, Func. Count: 72, Neg. LLF: 140.0330750642179
Iteration: 12, Func. Count: 78, Neg. LLF: 140.03306658201387
Iteration: 13, Func. Count: 84, Neg. LLF: 140.03306598170735
Optimization terminated successfully (Exit mode 0)
Current function value: 140.03306598170735
Iterations: 13
Function evaluations: 84
Gradient evaluations: 13
Iteration: 1, Func. Count: 8, Neg. LLF: 267.79573440365596
Iteration: 2, Func. Count: 16, Neg. LLF: 170.51076182811585
Iteration: 3, Func. Count: 24, Neg. LLF: 164.0968743155527
Iteration: 4, Func. Count: 32, Neg. LLF: 1280674.6921566438
Iteration: 5, Func. Count: 40, Neg. LLF: 140.24294349564633
Iteration: 6, Func. Count: 47, Neg. LLF: 140.14327995205446
Iteration: 7, Func. Count: 54, Neg. LLF: 140.09544630285447
Iteration: 8, Func. Count: 61, Neg. LLF: 140.0566793245277
Iteration: 9, Func. Count: 68, Neg. LLF: 140.03822342305315
Iteration: 10, Func. Count: 75, Neg. LLF: 140.03346268809102
Iteration: 11, Func. Count: 82, Neg. LLF: 140.03309081207115
Iteration: 12, Func. Count: 89, Neg. LLF: 140.03306600640283
Iteration: 13, Func. Count: 95, Neg. LLF: 140.03306601661907
Optimization terminated successfully (Exit mode 0)
Current function value: 140.03306600640283
Iterations: 13
Function evaluations: 95
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 255.81261831962368
Iteration: 2, Func. Count: 18, Neg. LLF: 170.02270036604395
Iteration: 3, Func. Count: 27, Neg. LLF: 322.3095830472592
Iteration: 4, Func. Count: 37, Neg. LLF: 505.15882205378847
Iteration: 5, Func. Count: 46, Neg. LLF: 140.30859409021002
Iteration: 6, Func. Count: 54, Neg. LLF: 140.16895807014652
Iteration: 7, Func. Count: 62, Neg. LLF: 140.1032991229912
Iteration: 8, Func. Count: 70, Neg. LLF: 140.06919226490135
Iteration: 9, Func. Count: 78, Neg. LLF: 140.04799324752437
Iteration: 10, Func. Count: 86, Neg. LLF: 140.0364262560566
Iteration: 11, Func. Count: 94, Neg. LLF: 140.03033505036996
Iteration: 12, Func. Count: 102, Neg. LLF: 141.12570166871654
Iteration: 13, Func. Count: 111, Neg. LLF: 141.09161543417412
Iteration: 14, Func. Count: 120, Neg. LLF: 141.0956488947345
Iteration: 15, Func. Count: 129, Neg. LLF: 141.0453294774838
Iteration: 16, Func. Count: 138, Neg. LLF: 156.04743299865729
Iteration: 17, Func. Count: 148, Neg. LLF: 140.86141480395915
Iteration: 18, Func. Count: 157, Neg. LLF: 139.85461360295017
Iteration: 19, Func. Count: 166, Neg. LLF: 139.50071720808012
Iteration: 20, Func. Count: 174, Neg. LLF: 139.44207716225498
Iteration: 21, Func. Count: 182, Neg. LLF: 139.3784494194703
Iteration: 22, Func. Count: 190, Neg. LLF: 139.37161286430316
Iteration: 23, Func. Count: 198, Neg. LLF: 139.3701510512905
Iteration: 24, Func. Count: 206, Neg. LLF: 139.37001078585118
Iteration: 25, Func. Count: 214, Neg. LLF: 139.36996193036853
Iteration: 26, Func. Count: 222, Neg. LLF: 139.36991859979364
Iteration: 27, Func. Count: 230, Neg. LLF: 139.36991687227484
Iteration: 28, Func. Count: 237, Neg. LLF: 139.36991681882733
Optimization terminated successfully (Exit mode 0)
Current function value: 139.36991687227484
Iterations: 28
Function evaluations: 237
Gradient evaluations: 28
Iteration: 1, Func. Count: 6, Neg. LLF: 152.0140927965237
Iteration: 2, Func. Count: 12, Neg. LLF: 154.58196694351832
Iteration: 3, Func. Count: 19, Neg. LLF: 156.60430727756034
Iteration: 4, Func. Count: 25, Neg. LLF: 141.75187216620216
Iteration: 5, Func. Count: 30, Neg. LLF: 140.4501709653576
Iteration: 6, Func. Count: 35, Neg. LLF: 145.7212644824046
Iteration: 7, Func. Count: 41, Neg. LLF: 144.52289977823204
Iteration: 8, Func. Count: 47, Neg. LLF: 187.03873515316403
Iteration: 9, Func. Count: 53, Neg. LLF: 143.83208230814577
Iteration: 10, Func. Count: 59, Neg. LLF: 139.98012789637593
Iteration: 11, Func. Count: 65, Neg. LLF: 138.43465219537939
Iteration: 12, Func. Count: 70, Neg. LLF: 138.11607682523177
Iteration: 13, Func. Count: 75, Neg. LLF: 138.15590689092406
Iteration: 14, Func. Count: 81, Neg. LLF: 138.09766227873598
Iteration: 15, Func. Count: 86, Neg. LLF: 138.09739082050118
Iteration: 16, Func. Count: 90, Neg. LLF: 138.0973908012094
Optimization terminated successfully (Exit mode 0)
Current function value: 138.09739082050118
Iterations: 16
Function evaluations: 90
Gradient evaluations: 16
Iteration: 1, Func. Count: 7, Neg. LLF: 336.42790247878355
Iteration: 2, Func. Count: 14, Neg. LLF: 761.0538965535402
Iteration: 3, Func. Count: 21, Neg. LLF: 151.4900621131101
Iteration: 4, Func. Count: 28, Neg. LLF: 162.10235192966678
Iteration: 5, Func. Count: 35, Neg. LLF: 142.60007544958495
Iteration: 6, Func. Count: 42, Neg. LLF: 159.0025062253353
Iteration: 7, Func. Count: 49, Neg. LLF: 162.82227724730143
Iteration: 8, Func. Count: 56, Neg. LLF: 176.15458509010875
Iteration: 9, Func. Count: 63, Neg. LLF: 255.1788956462804
Iteration: 10, Func. Count: 70, Neg. LLF: 153.02664002501635
Iteration: 11, Func. Count: 77, Neg. LLF: 139.85299228639616
Iteration: 12, Func. Count: 84, Neg. LLF: 136.92878590168874
Iteration: 13, Func. Count: 90, Neg. LLF: 139.08984569743677
Iteration: 14, Func. Count: 97, Neg. LLF: 136.7212245777457
Iteration: 15, Func. Count: 103, Neg. LLF: 136.50875221888913
Iteration: 16, Func. Count: 109, Neg. LLF: 136.47278159703177
Iteration: 17, Func. Count: 115, Neg. LLF: 136.45687159533
Iteration: 18, Func. Count: 121, Neg. LLF: 136.45054994422742
Iteration: 19, Func. Count: 127, Neg. LLF: 136.44970411926047
Iteration: 20, Func. Count: 133, Neg. LLF: 136.44967906130938
Iteration: 21, Func. Count: 139, Neg. LLF: 136.4496755773409
Iteration: 22, Func. Count: 144, Neg. LLF: 136.4496755285229
Optimization terminated successfully (Exit mode 0)
Current function value: 136.4496755773409
Iterations: 22
Function evaluations: 144
Gradient evaluations: 22
Iteration: 1, Func. Count: 8, Neg. LLF: 296.79247414932456
Iteration: 2, Func. Count: 16, Neg. LLF: 171.98694111733434
Iteration: 3, Func. Count: 24, Neg. LLF: 304.88587244167644
Iteration: 4, Func. Count: 32, Neg. LLF: 537.2172905474397
Iteration: 5, Func. Count: 40, Neg. LLF: 140.0989279576605
Iteration: 6, Func. Count: 47, Neg. LLF: 261.3721564706841
Iteration: 7, Func. Count: 55, Neg. LLF: 138.99718572958554
Iteration: 8, Func. Count: 63, Neg. LLF: 140.21961936257745
Iteration: 9, Func. Count: 71, Neg. LLF: 136.79889904873045
Iteration: 10, Func. Count: 78, Neg. LLF: 136.6084107251483
Iteration: 11, Func. Count: 85, Neg. LLF: 136.4802004983184
Iteration: 12, Func. Count: 92, Neg. LLF: 136.45393126406364
Iteration: 13, Func. Count: 99, Neg. LLF: 136.45033139555508
Iteration: 14, Func. Count: 106, Neg. LLF: 136.45000319771356
Iteration: 15, Func. Count: 113, Neg. LLF: 136.44984499476365
Iteration: 16, Func. Count: 120, Neg. LLF: 136.44969693406674
Iteration: 17, Func. Count: 127, Neg. LLF: 136.4496769195577
Iteration: 18, Func. Count: 134, Neg. LLF: 136.4496755212891
Iteration: 19, Func. Count: 140, Neg. LLF: 136.44967551443318
Optimization terminated successfully (Exit mode 0)
Current function value: 136.4496755212891
Iterations: 19
Function evaluations: 140
Gradient evaluations: 19
Iteration: 1, Func. Count: 9, Neg. LLF: 276.6498751731831
Iteration: 2, Func. Count: 18, Neg. LLF: 165.2058826915269
Iteration: 3, Func. Count: 27, Neg. LLF: 243.14199175012175
Iteration: 4, Func. Count: 36, Neg. LLF: 608.1159146023025
Iteration: 5, Func. Count: 45, Neg. LLF: 140.1428984949247
Iteration: 6, Func. Count: 54, Neg. LLF: 378.69020513154607
Iteration: 7, Func. Count: 63, Neg. LLF: 137.64568053400637
Iteration: 8, Func. Count: 72, Neg. LLF: 136.74277753977316
Iteration: 9, Func. Count: 80, Neg. LLF: 136.42353454536035
Iteration: 10, Func. Count: 89, Neg. LLF: 136.09087761538802
Iteration: 11, Func. Count: 97, Neg. LLF: 136.15992117953965
Iteration: 12, Func. Count: 106, Neg. LLF: 136.07716741913606
Iteration: 13, Func. Count: 114, Neg. LLF: 136.0693189838299
Iteration: 14, Func. Count: 122, Neg. LLF: 136.06838204172212
Iteration: 15, Func. Count: 130, Neg. LLF: 136.06724934243962
Iteration: 16, Func. Count: 138, Neg. LLF: 136.06714263590567
Iteration: 17, Func. Count: 146, Neg. LLF: 136.06711606230778
Iteration: 18, Func. Count: 154, Neg. LLF: 136.06711400714406
Iteration: 19, Func. Count: 161, Neg. LLF: 136.06711396955887
Optimization terminated successfully (Exit mode 0)
Current function value: 136.06711400714406
Iterations: 19
Function evaluations: 161
Gradient evaluations: 19
Iteration: 1, Func. Count: 10, Neg. LLF: 262.70800845087666
Iteration: 2, Func. Count: 20, Neg. LLF: 247.70223717398645
Iteration: 3, Func. Count: 30, Neg. LLF: 139.0225060524097
Iteration: 4, Func. Count: 39, Neg. LLF: 143.0596175558368
Iteration: 5, Func. Count: 49, Neg. LLF: 159.35224125013698
Iteration: 6, Func. Count: 59, Neg. LLF: 142.47497108397977
Iteration: 7, Func. Count: 70, Neg. LLF: 136.90411324447427
Iteration: 8, Func. Count: 80, Neg. LLF: 136.1436143439908
Iteration: 9, Func. Count: 89, Neg. LLF: 136.0867947852479
Iteration: 10, Func. Count: 98, Neg. LLF: 136.0760339271544
Iteration: 11, Func. Count: 107, Neg. LLF: 136.06876799343726
Iteration: 12, Func. Count: 116, Neg. LLF: 136.06738743786022
Iteration: 13, Func. Count: 125, Neg. LLF: 136.06712216003882
Iteration: 14, Func. Count: 134, Neg. LLF: 136.06711408920535
Iteration: 15, Func. Count: 142, Neg. LLF: 136.0671141560075
Optimization terminated successfully (Exit mode 0)
Current function value: 136.06711408920535
Iterations: 15
Function evaluations: 142
Gradient evaluations: 15
Iteration: 1, Func. Count: 7, Neg. LLF: 153.3147340050146
Iteration: 2, Func. Count: 14, Neg. LLF: 144.97108612902346
Iteration: 3, Func. Count: 22, Neg. LLF: 160.15069100252433
Iteration: 4, Func. Count: 29, Neg. LLF: 141.39365653854645
Iteration: 5, Func. Count: 35, Neg. LLF: 139.60405363738283
Iteration: 6, Func. Count: 41, Neg. LLF: 229477.1913165986
Iteration: 7, Func. Count: 48, Neg. LLF: 43919.35642819674
Iteration: 8, Func. Count: 55, Neg. LLF: 50856.59853243602
Iteration: 9, Func. Count: 62, Neg. LLF: 42230.592074167325
Iteration: 10, Func. Count: 69, Neg. LLF: 41761.11896964969
Iteration: 11, Func. Count: 76, Neg. LLF: 33086.376043270764
Iteration: 12, Func. Count: 83, Neg. LLF: 138.5709385999976
Iteration: 13, Func. Count: 90, Neg. LLF: 136.76939961653684
Iteration: 14, Func. Count: 96, Neg. LLF: 136.40191051965948
Iteration: 15, Func. Count: 102, Neg. LLF: 136.36452034940348
Iteration: 16, Func. Count: 108, Neg. LLF: 136.34239889438973
Iteration: 17, Func. Count: 114, Neg. LLF: 136.3376182791768
Iteration: 18, Func. Count: 120, Neg. LLF: 136.33668880507977
Iteration: 19, Func. Count: 126, Neg. LLF: 136.33645186416928
Iteration: 20, Func. Count: 132, Neg. LLF: 136.33644786258685
Iteration: 21, Func. Count: 137, Neg. LLF: 136.33644784276052
Optimization terminated successfully (Exit mode 0)
Current function value: 136.33644786258685
Iterations: 21
Function evaluations: 137
Gradient evaluations: 21
Iteration: 1, Func. Count: 8, Neg. LLF: 302.6309934892419
Iteration: 2, Func. Count: 16, Neg. LLF: 504.1322008706535
Iteration: 3, Func. Count: 24, Neg. LLF: 146.95507086281415
Iteration: 4, Func. Count: 32, Neg. LLF: 169.4280157591839
Iteration: 5, Func. Count: 40, Neg. LLF: 140.30784022017457
Iteration: 6, Func. Count: 48, Neg. LLF: 163.97413826308386
Iteration: 7, Func. Count: 56, Neg. LLF: 170.88264180901638
Iteration: 8, Func. Count: 64, Neg. LLF: 275.48974272063873
Iteration: 9, Func. Count: 72, Neg. LLF: 162.37253280805496
Iteration: 10, Func. Count: 80, Neg. LLF: 143.2391229982193
Iteration: 11, Func. Count: 88, Neg. LLF: 137.32425108059934
Iteration: 12, Func. Count: 96, Neg. LLF: 136.9556026162242
Iteration: 13, Func. Count: 104, Neg. LLF: 136.4459441669477
Iteration: 14, Func. Count: 111, Neg. LLF: 136.38900555105118
Iteration: 15, Func. Count: 118, Neg. LLF: 136.34840283980338
Iteration: 16, Func. Count: 125, Neg. LLF: 136.34432004425673
Iteration: 17, Func. Count: 132, Neg. LLF: 136.34100355702668
Iteration: 18, Func. Count: 139, Neg. LLF: 136.33765712258136
Iteration: 19, Func. Count: 146, Neg. LLF: 136.3365944859221
Iteration: 20, Func. Count: 153, Neg. LLF: 136.33645184414755
Iteration: 21, Func. Count: 160, Neg. LLF: 136.33644783738242
Iteration: 22, Func. Count: 166, Neg. LLF: 136.33644781686434
Optimization terminated successfully (Exit mode 0)
Current function value: 136.33644783738242
Iterations: 22
Function evaluations: 166
Gradient evaluations: 22
Iteration: 1, Func. Count: 9, Neg. LLF: 275.46853284198056
Iteration: 2, Func. Count: 18, Neg. LLF: 167.126729844431
Iteration: 3, Func. Count: 27, Neg. LLF: 254.83348847314568
Iteration: 4, Func. Count: 36, Neg. LLF: 174.7582405023191
Iteration: 5, Func. Count: 45, Neg. LLF: 139.89438052281267
Iteration: 6, Func. Count: 53, Neg. LLF: 1576527.2224462922
Iteration: 7, Func. Count: 62, Neg. LLF: 138.94939645427945
Iteration: 8, Func. Count: 71, Neg. LLF: 138.84829763624398
Iteration: 9, Func. Count: 80, Neg. LLF: 136.6015170117789
Iteration: 10, Func. Count: 88, Neg. LLF: 136.3532395603982
Iteration: 11, Func. Count: 96, Neg. LLF: 136.34062002213014
Iteration: 12, Func. Count: 104, Neg. LLF: 136.33707271373652
Iteration: 13, Func. Count: 112, Neg. LLF: 136.33667276810615
Iteration: 14, Func. Count: 120, Neg. LLF: 136.33648190192778
Iteration: 15, Func. Count: 128, Neg. LLF: 136.33647279355003
Iteration: 16, Func. Count: 136, Neg. LLF: 136.33645262883945
Iteration: 17, Func. Count: 144, Neg. LLF: 136.33644845095023
Iteration: 18, Func. Count: 152, Neg. LLF: 136.33644779348762
Optimization terminated successfully (Exit mode 0)
Current function value: 136.33644779348762
Iterations: 18
Function evaluations: 152
Gradient evaluations: 18
Iteration: 1, Func. Count: 10, Neg. LLF: 259.0779295793722
Iteration: 2, Func. Count: 20, Neg. LLF: 158.98332357123553
Iteration: 3, Func. Count: 30, Neg. LLF: 222.37813309615052
Iteration: 4, Func. Count: 40, Neg. LLF: 416.836061524717
Iteration: 5, Func. Count: 50, Neg. LLF: 140.66516053103078
Iteration: 6, Func. Count: 60, Neg. LLF: 153.4405704296101
Iteration: 7, Func. Count: 70, Neg. LLF: 138.41920743042914
Iteration: 8, Func. Count: 80, Neg. LLF: 137.0300100796644
Iteration: 9, Func. Count: 90, Neg. LLF: 136.340174266326
Iteration: 10, Func. Count: 99, Neg. LLF: 136.41322339656207
Iteration: 11, Func. Count: 109, Neg. LLF: 136.05071243473233
Iteration: 12, Func. Count: 118, Neg. LLF: 136.0122583165603
Iteration: 13, Func. Count: 127, Neg. LLF: 136.00974502464265
Iteration: 14, Func. Count: 136, Neg. LLF: 136.00883952635516
Iteration: 15, Func. Count: 145, Neg. LLF: 136.0087673969454
Iteration: 16, Func. Count: 154, Neg. LLF: 136.00876031716305
Iteration: 17, Func. Count: 163, Neg. LLF: 136.00875947780946
Optimization terminated successfully (Exit mode 0)
Current function value: 136.00875947780946
Iterations: 17
Function evaluations: 163
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 249.17194052898364
Iteration: 2, Func. Count: 22, Neg. LLF: 152.65853133359622
Iteration: 3, Func. Count: 33, Neg. LLF: 203.9865363050841
Iteration: 4, Func. Count: 44, Neg. LLF: 139.67129372675848
Iteration: 5, Func. Count: 55, Neg. LLF: 146.77710718610894
Iteration: 6, Func. Count: 66, Neg. LLF: 138.39917233121312
Iteration: 7, Func. Count: 77, Neg. LLF: 136.6761162710498
Iteration: 8, Func. Count: 87, Neg. LLF: 136.28538375706907
Iteration: 9, Func. Count: 97, Neg. LLF: 138.44005667078892
Iteration: 10, Func. Count: 108, Neg. LLF: 136.11199974500443
Iteration: 11, Func. Count: 118, Neg. LLF: 136.05150344781518
Iteration: 12, Func. Count: 128, Neg. LLF: 136.01453120384102
Iteration: 13, Func. Count: 138, Neg. LLF: 136.009781596084
Iteration: 14, Func. Count: 148, Neg. LLF: 136.00881101730067
Iteration: 15, Func. Count: 158, Neg. LLF: 136.00876276943856
Iteration: 16, Func. Count: 168, Neg. LLF: 136.00875938113532
Iteration: 17, Func. Count: 177, Neg. LLF: 136.0087594498692
Optimization terminated successfully (Exit mode 0)
Current function value: 136.00875938113532
Iterations: 17
Function evaluations: 177
Gradient evaluations: 17
Iteration: 1, Func. Count: 8, Neg. LLF: 151.24560053844658
Iteration: 2, Func. Count: 16, Neg. LLF: 145.47118221077707
Iteration: 3, Func. Count: 25, Neg. LLF: 153.95722237725548
Iteration: 4, Func. Count: 33, Neg. LLF: 142.79132000309525
Iteration: 5, Func. Count: 41, Neg. LLF: 141.11841897168094
Iteration: 6, Func. Count: 48, Neg. LLF: 139.00224434694502
Iteration: 7, Func. Count: 55, Neg. LLF: 137.9534717490356
Iteration: 8, Func. Count: 62, Neg. LLF: 137.11829284420435
Iteration: 9, Func. Count: 69, Neg. LLF: 136.75720635971405
Iteration: 10, Func. Count: 76, Neg. LLF: 136.3749173768279
Iteration: 11, Func. Count: 83, Neg. LLF: 136.3879013238448
Iteration: 12, Func. Count: 91, Neg. LLF: 136.3398399212631
Iteration: 13, Func. Count: 98, Neg. LLF: 136.3365405318548
Iteration: 14, Func. Count: 105, Neg. LLF: 136.33645229524225
Iteration: 15, Func. Count: 112, Neg. LLF: 136.33644778291253
Iteration: 16, Func. Count: 118, Neg. LLF: 136.336447845231
Optimization terminated successfully (Exit mode 0)
Current function value: 136.33644778291253
Iterations: 16
Function evaluations: 118
Gradient evaluations: 16
Iteration: 1, Func. Count: 9, Neg. LLF: 282.51438515014735
Iteration: 2, Func. Count: 18, Neg. LLF: 414.5297754295527
Iteration: 3, Func. Count: 27, Neg. LLF: 144.0406755222467
Iteration: 4, Func. Count: 36, Neg. LLF: 180.76586044319586
Iteration: 5, Func. Count: 45, Neg. LLF: 140.41453182703074
Iteration: 6, Func. Count: 54, Neg. LLF: 174.07304469564647
Iteration: 7, Func. Count: 63, Neg. LLF: 184.773807250449
Iteration: 8, Func. Count: 72, Neg. LLF: 269.7082183133192
Iteration: 9, Func. Count: 81, Neg. LLF: 154.13591191697464
Iteration: 10, Func. Count: 90, Neg. LLF: 142.78058537417328
Iteration: 11, Func. Count: 99, Neg. LLF: 137.80289389918366
Iteration: 12, Func. Count: 108, Neg. LLF: 137.34520881250504
Iteration: 13, Func. Count: 117, Neg. LLF: 136.48923996054108
Iteration: 14, Func. Count: 125, Neg. LLF: 136.39113119672783
Iteration: 15, Func. Count: 133, Neg. LLF: 136.36887902357668
Iteration: 16, Func. Count: 141, Neg. LLF: 136.3520334540343
Iteration: 17, Func. Count: 149, Neg. LLF: 136.34209627752756
Iteration: 18, Func. Count: 157, Neg. LLF: 136.33819411761425
Iteration: 19, Func. Count: 165, Neg. LLF: 136.33672331067908
Iteration: 20, Func. Count: 173, Neg. LLF: 136.3364605141959
Iteration: 21, Func. Count: 181, Neg. LLF: 136.3364479102347
Iteration: 22, Func. Count: 188, Neg. LLF: 136.33644788970017
Optimization terminated successfully (Exit mode 0)
Current function value: 136.3364479102347
Iterations: 22
Function evaluations: 188
Gradient evaluations: 22
Iteration: 1, Func. Count: 10, Neg. LLF: 258.3857539823579
Iteration: 2, Func. Count: 20, Neg. LLF: 161.57573554948152
Iteration: 3, Func. Count: 30, Neg. LLF: 227.44164891573362
Iteration: 4, Func. Count: 40, Neg. LLF: 153.9467721394251
Iteration: 5, Func. Count: 50, Neg. LLF: 139.7177770234407
Iteration: 6, Func. Count: 60, Neg. LLF: 1004134.2895527566
Iteration: 7, Func. Count: 70, Neg. LLF: 138.56650099108396
Iteration: 8, Func. Count: 80, Neg. LLF: 137.30444127956525
Iteration: 9, Func. Count: 89, Neg. LLF: 136.58448006565177
Iteration: 10, Func. Count: 98, Neg. LLF: 136.40499344149282
Iteration: 11, Func. Count: 107, Neg. LLF: 136.35194156069687
Iteration: 12, Func. Count: 116, Neg. LLF: 136.336947524675
Iteration: 13, Func. Count: 125, Neg. LLF: 136.33646654587645
Iteration: 14, Func. Count: 134, Neg. LLF: 136.33644859451314
Iteration: 15, Func. Count: 142, Neg. LLF: 136.33644863469905
Optimization terminated successfully (Exit mode 0)
Current function value: 136.33644859451314
Iterations: 15
Function evaluations: 142
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 244.84645442694847
Iteration: 2, Func. Count: 22, Neg. LLF: 151.6814491841181
Iteration: 3, Func. Count: 33, Neg. LLF: 207.42632217456935
Iteration: 4, Func. Count: 44, Neg. LLF: 500.86133214104524
Iteration: 5, Func. Count: 55, Neg. LLF: 141.51820016280556
Iteration: 6, Func. Count: 66, Neg. LLF: 145.31702310906874
Iteration: 7, Func. Count: 77, Neg. LLF: 137.93362986630405
Iteration: 8, Func. Count: 88, Neg. LLF: 137.378507494353
Iteration: 9, Func. Count: 99, Neg. LLF: 136.32380576584634
Iteration: 10, Func. Count: 109, Neg. LLF: 136.47371005155063
Iteration: 11, Func. Count: 120, Neg. LLF: 136.0162374617414
Iteration: 12, Func. Count: 130, Neg. LLF: 136.00940490226256
Iteration: 13, Func. Count: 140, Neg. LLF: 136.00902902497745
Iteration: 14, Func. Count: 150, Neg. LLF: 136.00877292530444
Iteration: 15, Func. Count: 160, Neg. LLF: 136.00876179794236
Iteration: 16, Func. Count: 170, Neg. LLF: 136.00875947641504
Iteration: 17, Func. Count: 179, Neg. LLF: 136.00875944219374
Optimization terminated successfully (Exit mode 0)
Current function value: 136.00875947641504
Iterations: 17
Function evaluations: 179
Gradient evaluations: 17
Iteration: 1, Func. Count: 12, Neg. LLF: 235.83988105106852
Iteration: 2, Func. Count: 24, Neg. LLF: 144.63283754220603
Iteration: 3, Func. Count: 36, Neg. LLF: 229.21129018083678
Iteration: 4, Func. Count: 48, Neg. LLF: 153.50282079199056
Iteration: 5, Func. Count: 60, Neg. LLF: 146.54783046141029
Iteration: 6, Func. Count: 72, Neg. LLF: 146.97928924918256
Iteration: 7, Func. Count: 84, Neg. LLF: 148.29501476009622
Iteration: 8, Func. Count: 96, Neg. LLF: 137.31060390405727
Iteration: 9, Func. Count: 107, Neg. LLF: 136.93441354895654
Iteration: 10, Func. Count: 118, Neg. LLF: 146.11070394336198
Iteration: 11, Func. Count: 131, Neg. LLF: 136.40922213931853
Iteration: 12, Func. Count: 142, Neg. LLF: 136.0682470765456
Iteration: 13, Func. Count: 153, Neg. LLF: 136.07695599514454
Iteration: 14, Func. Count: 165, Neg. LLF: 136.0122056353216
Iteration: 15, Func. Count: 176, Neg. LLF: 136.00978509064726
Iteration: 16, Func. Count: 187, Neg. LLF: 136.0088367723939
Iteration: 17, Func. Count: 198, Neg. LLF: 136.00878325104296
Iteration: 18, Func. Count: 209, Neg. LLF: 136.00876031690444
Iteration: 19, Func. Count: 220, Neg. LLF: 136.00875938607814
Optimization terminated successfully (Exit mode 0)
Current function value: 136.00875938607814
Iterations: 19
Function evaluations: 220
Gradient evaluations: 19
Iteration: 1, Func. Count: 5, Neg. LLF: 143.78510190635166
Iteration: 2, Func. Count: 9, Neg. LLF: 149.3480961068007
Iteration: 3, Func. Count: 14, Neg. LLF: 142.84080547515677
Iteration: 4, Func. Count: 18, Neg. LLF: 141.44093039794976
Iteration: 5, Func. Count: 22, Neg. LLF: 140.89823890701345
Iteration: 6, Func. Count: 26, Neg. LLF: 143.80608900176807
Iteration: 7, Func. Count: 31, Neg. LLF: 140.02056826647953
Iteration: 8, Func. Count: 35, Neg. LLF: 139.95620934326718
Iteration: 9, Func. Count: 39, Neg. LLF: 139.95120021160523
Iteration: 10, Func. Count: 43, Neg. LLF: 139.9498687810867
Iteration: 11, Func. Count: 47, Neg. LLF: 139.94933162574392
Iteration: 12, Func. Count: 51, Neg. LLF: 139.94933026013547
Iteration: 13, Func. Count: 54, Neg. LLF: 139.94933028663388
Optimization terminated successfully (Exit mode 0)
Current function value: 139.94933026013547
Iterations: 13
Function evaluations: 54
Gradient evaluations: 13
Iteration: 1, Func. Count: 6, Neg. LLF: 178.73144906666192
Iteration: 2, Func. Count: 12, Neg. LLF: 152.9740405229211
Iteration: 3, Func. Count: 18, Neg. LLF: 174.93866632122052
Iteration: 4, Func. Count: 24, Neg. LLF: 143.871462461606
Iteration: 5, Func. Count: 30, Neg. LLF: 141.4362587498487
Iteration: 6, Func. Count: 35, Neg. LLF: 141.34031492625937
Iteration: 7, Func. Count: 40, Neg. LLF: 141.32583284135455
Iteration: 8, Func. Count: 45, Neg. LLF: 141.3247912155491
Iteration: 9, Func. Count: 50, Neg. LLF: 141.32459525622446
Iteration: 10, Func. Count: 55, Neg. LLF: 141.32453166776418
Iteration: 11, Func. Count: 60, Neg. LLF: 141.32452933705903
Iteration: 12, Func. Count: 64, Neg. LLF: 141.32452930332386
Optimization terminated successfully (Exit mode 0)
Current function value: 141.32452933705903
Iterations: 12
Function evaluations: 64
Gradient evaluations: 12
Iteration: 1, Func. Count: 7, Neg. LLF: 171.98012916749946
Iteration: 2, Func. Count: 14, Neg. LLF: 151.17313222327942
Iteration: 3, Func. Count: 21, Neg. LLF: 142.8077560196529
Iteration: 4, Func. Count: 28, Neg. LLF: 140.7470123196813
Iteration: 5, Func. Count: 34, Neg. LLF: 140.8801080033959
Iteration: 6, Func. Count: 41, Neg. LLF: 142.68747905535844
Iteration: 7, Func. Count: 50, Neg. LLF: 140.07708046156253
Iteration: 8, Func. Count: 56, Neg. LLF: 140.0015333130685
Iteration: 9, Func. Count: 62, Neg. LLF: 139.98684176289453
Iteration: 10, Func. Count: 68, Neg. LLF: 139.98364739321696
Iteration: 11, Func. Count: 74, Neg. LLF: 139.98346399570792
Iteration: 12, Func. Count: 80, Neg. LLF: 139.98346022712218
Iteration: 13, Func. Count: 85, Neg. LLF: 139.98346019023393
Optimization terminated successfully (Exit mode 0)
Current function value: 139.98346022712218
Iterations: 13
Function evaluations: 85
Gradient evaluations: 13
Iteration: 1, Func. Count: 8, Neg. LLF: 168.31180281027196
Iteration: 2, Func. Count: 16, Neg. LLF: 147.51294156454628
Iteration: 3, Func. Count: 24, Neg. LLF: 146.37415886712992
Iteration: 4, Func. Count: 32, Neg. LLF: 153.4769474960816
Iteration: 5, Func. Count: 40, Neg. LLF: 138.10340996224664
Iteration: 6, Func. Count: 47, Neg. LLF: 138.02334386808397
Iteration: 7, Func. Count: 54, Neg. LLF: 137.97798324284201
Iteration: 8, Func. Count: 61, Neg. LLF: 137.93731339875308
Iteration: 9, Func. Count: 68, Neg. LLF: 137.91838755971438
Iteration: 10, Func. Count: 75, Neg. LLF: 137.91609973360994
Iteration: 11, Func. Count: 82, Neg. LLF: 137.91600033708713
Iteration: 12, Func. Count: 89, Neg. LLF: 137.91599963992542
Optimization terminated successfully (Exit mode 0)
Current function value: 137.91599963992542
Iterations: 12
Function evaluations: 89
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 166.53333608524702
Iteration: 2, Func. Count: 18, Neg. LLF: 149.90778612410512
Iteration: 3, Func. Count: 27, Neg. LLF: 145.1103625651271
Iteration: 4, Func. Count: 36, Neg. LLF: 140.93946236653792
Iteration: 5, Func. Count: 45, Neg. LLF: 138.08699941874693
Iteration: 6, Func. Count: 53, Neg. LLF: 137.9758366913628
Iteration: 7, Func. Count: 61, Neg. LLF: 137.92887469164873
Iteration: 8, Func. Count: 69, Neg. LLF: 137.92038166066646
Iteration: 9, Func. Count: 77, Neg. LLF: 137.91684283734264
Iteration: 10, Func. Count: 85, Neg. LLF: 137.91599960904563
Iteration: 11, Func. Count: 92, Neg. LLF: 137.91599971179
Optimization terminated successfully (Exit mode 0)
Current function value: 137.91599960904563
Iterations: 11
Function evaluations: 92
Gradient evaluations: 11
Iteration: 1, Func. Count: 6, Neg. LLF: 143.41634323276298
Iteration: 2, Func. Count: 11, Neg. LLF: 144.92923883212782
Iteration: 3, Func. Count: 17, Neg. LLF: 142.5771833243888
Iteration: 4, Func. Count: 22, Neg. LLF: 172.34651403974354
Iteration: 5, Func. Count: 28, Neg. LLF: 153.37769210851667
Iteration: 6, Func. Count: 34, Neg. LLF: 143.58179077198687
Iteration: 7, Func. Count: 40, Neg. LLF: 140.8589734106887
Iteration: 8, Func. Count: 46, Neg. LLF: 140.16914987949482
Iteration: 9, Func. Count: 51, Neg. LLF: 139.95299817064515
Iteration: 10, Func. Count: 56, Neg. LLF: 139.95390163599114
Iteration: 11, Func. Count: 62, Neg. LLF: 139.94828585839258
Iteration: 12, Func. Count: 67, Neg. LLF: 139.94828492132433
Optimization terminated successfully (Exit mode 0)
Current function value: 139.94828492132433
Iterations: 12
Function evaluations: 67
Gradient evaluations: 12
Iteration: 1, Func. Count: 7, Neg. LLF: 267.49268567938867
Iteration: 2, Func. Count: 14, Neg. LLF: 163.93715161715807
Iteration: 3, Func. Count: 21, Neg. LLF: 332.7595749709273
Iteration: 4, Func. Count: 29, Neg. LLF: 143.08761280472746
Iteration: 5, Func. Count: 36, Neg. LLF: 140.11123486748033
Iteration: 6, Func. Count: 42, Neg. LLF: 140.08313964063075
Iteration: 7, Func. Count: 48, Neg. LLF: 140.0400095644625
Iteration: 8, Func. Count: 54, Neg. LLF: 140.03542170107497
Iteration: 9, Func. Count: 60, Neg. LLF: 140.03358313139105
Iteration: 10, Func. Count: 66, Neg. LLF: 140.033080376737
Iteration: 11, Func. Count: 72, Neg. LLF: 140.03306841340543
Iteration: 12, Func. Count: 78, Neg. LLF: 140.0330659796625
Iteration: 13, Func. Count: 83, Neg. LLF: 140.0330659757591
Optimization terminated successfully (Exit mode 0)
Current function value: 140.0330659796625
Iterations: 13
Function evaluations: 83
Gradient evaluations: 13
Iteration: 1, Func. Count: 8, Neg. LLF: 258.9703526490654
Iteration: 2, Func. Count: 16, Neg. LLF: 151.42746077778375
Iteration: 3, Func. Count: 24, Neg. LLF: 142.9068324547445
Iteration: 4, Func. Count: 32, Neg. LLF: 140.28738827197998
Iteration: 5, Func. Count: 39, Neg. LLF: 140.12384067333429
Iteration: 6, Func. Count: 46, Neg. LLF: 139.94431823250434
Iteration: 7, Func. Count: 53, Neg. LLF: 139.92568846515536
Iteration: 8, Func. Count: 60, Neg. LLF: 139.91747024831005
Iteration: 9, Func. Count: 67, Neg. LLF: 139.91689768889216
Iteration: 10, Func. Count: 74, Neg. LLF: 139.9168741055518
Iteration: 11, Func. Count: 80, Neg. LLF: 139.91687406751186
Optimization terminated successfully (Exit mode 0)
Current function value: 139.9168741055518
Iterations: 11
Function evaluations: 80
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 259.75306722509634
Iteration: 2, Func. Count: 18, Neg. LLF: 156.62498237575525
Iteration: 3, Func. Count: 27, Neg. LLF: 142.51117396221076
Iteration: 4, Func. Count: 36, Neg. LLF: 138.36727007577156
Iteration: 5, Func. Count: 44, Neg. LLF: 138.14457961093163
Iteration: 6, Func. Count: 52, Neg. LLF: 137.88208036855985
Iteration: 7, Func. Count: 60, Neg. LLF: 137.8657068449156
Iteration: 8, Func. Count: 68, Neg. LLF: 137.83070261628777
Iteration: 9, Func. Count: 76, Neg. LLF: 137.82529438527553
Iteration: 10, Func. Count: 84, Neg. LLF: 137.82315173155254
Iteration: 11, Func. Count: 92, Neg. LLF: 137.8230714400832
Iteration: 12, Func. Count: 100, Neg. LLF: 137.8230660050744
Iteration: 13, Func. Count: 107, Neg. LLF: 137.82306590742402
Optimization terminated successfully (Exit mode 0)
Current function value: 137.8230660050744
Iterations: 13
Function evaluations: 107
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 256.37891207690416
Iteration: 2, Func. Count: 20, Neg. LLF: 156.4519984151945
Iteration: 3, Func. Count: 30, Neg. LLF: 145.61079219532962
Iteration: 4, Func. Count: 40, Neg. LLF: 143.44193597925707
Iteration: 5, Func. Count: 50, Neg. LLF: 139.23657582696075
Iteration: 6, Func. Count: 59, Neg. LLF: 139.39994019625433
Iteration: 7, Func. Count: 69, Neg. LLF: 152.8766296270059
Iteration: 8, Func. Count: 80, Neg. LLF: 138.41483043633727
Iteration: 9, Func. Count: 89, Neg. LLF: 138.25865966253696
Iteration: 10, Func. Count: 98, Neg. LLF: 138.09923631367204
Iteration: 11, Func. Count: 107, Neg. LLF: 137.9445128782772
Iteration: 12, Func. Count: 116, Neg. LLF: 137.88514618171877
Iteration: 13, Func. Count: 125, Neg. LLF: 137.8292349265473
Iteration: 14, Func. Count: 134, Neg. LLF: 137.82443270738946
Iteration: 15, Func. Count: 143, Neg. LLF: 137.82309380915945
Iteration: 16, Func. Count: 152, Neg. LLF: 137.82306818381628
Iteration: 17, Func. Count: 161, Neg. LLF: 137.8230658828243
Iteration: 18, Func. Count: 169, Neg. LLF: 137.82306596332927
Optimization terminated successfully (Exit mode 0)
Current function value: 137.8230658828243
Iterations: 18
Function evaluations: 169
Gradient evaluations: 18
Iteration: 1, Func. Count: 7, Neg. LLF: 143.99889366317458
Iteration: 2, Func. Count: 14, Neg. LLF: 143.34157342843682
Iteration: 3, Func. Count: 21, Neg. LLF: 141.62853795410294
Iteration: 4, Func. Count: 27, Neg. LLF: 144.52372653064972
Iteration: 5, Func. Count: 34, Neg. LLF: 140.6475593842002
Iteration: 6, Func. Count: 40, Neg. LLF: 144.5389648582803
Iteration: 7, Func. Count: 47, Neg. LLF: 565639.8515969695
Iteration: 8, Func. Count: 54, Neg. LLF: 662766.4296046506
Iteration: 9, Func. Count: 61, Neg. LLF: 151.60294835136042
Iteration: 10, Func. Count: 68, Neg. LLF: 141.18704166044006
Iteration: 11, Func. Count: 75, Neg. LLF: 138.58523996717616
Iteration: 12, Func. Count: 81, Neg. LLF: 138.26259813717624
Iteration: 13, Func. Count: 87, Neg. LLF: 138.10402158748636
Iteration: 14, Func. Count: 93, Neg. LLF: 138.10438361757315
Iteration: 15, Func. Count: 100, Neg. LLF: 138.09753222331594
Iteration: 16, Func. Count: 106, Neg. LLF: 138.09740140316825
Iteration: 17, Func. Count: 112, Neg. LLF: 138.09739031167877
Iteration: 18, Func. Count: 117, Neg. LLF: 138.0973902924074
Optimization terminated successfully (Exit mode 0)
Current function value: 138.09739031167877
Iterations: 18
Function evaluations: 117
Gradient evaluations: 18
Iteration: 1, Func. Count: 8, Neg. LLF: 210.5205455996711
Iteration: 2, Func. Count: 16, Neg. LLF: 143.22457965371743
Iteration: 3, Func. Count: 24, Neg. LLF: 198.77930333249597
Iteration: 4, Func. Count: 32, Neg. LLF: 146.4820276063818
Iteration: 5, Func. Count: 40, Neg. LLF: 141.3187263363962
Iteration: 6, Func. Count: 48, Neg. LLF: 140.04780285332998
Iteration: 7, Func. Count: 56, Neg. LLF: 136.55628340334653
Iteration: 8, Func. Count: 63, Neg. LLF: 136.45892372466096
Iteration: 9, Func. Count: 70, Neg. LLF: 136.45112759089804
Iteration: 10, Func. Count: 77, Neg. LLF: 136.45087817484603
Iteration: 11, Func. Count: 85, Neg. LLF: 136.44967598428514
Iteration: 12, Func. Count: 92, Neg. LLF: 136.44967565824672
Optimization terminated successfully (Exit mode 0)
Current function value: 136.44967565824672
Iterations: 12
Function evaluations: 92
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 160.67620774326247
Iteration: 2, Func. Count: 18, Neg. LLF: 176.34031249809314
Iteration: 3, Func. Count: 27, Neg. LLF: 192.4903624393037
Iteration: 4, Func. Count: 36, Neg. LLF: 218.716824990195
Iteration: 5, Func. Count: 45, Neg. LLF: 236.39739963875928
Iteration: 6, Func. Count: 54, Neg. LLF: 142.54995416398236
Iteration: 7, Func. Count: 63, Neg. LLF: 137.32774358505142
Iteration: 8, Func. Count: 71, Neg. LLF: 137.33450553810513
Iteration: 9, Func. Count: 80, Neg. LLF: 137.45441447700046
Iteration: 10, Func. Count: 89, Neg. LLF: 136.48615211952657
Iteration: 11, Func. Count: 97, Neg. LLF: 136.45293068497807
Iteration: 12, Func. Count: 105, Neg. LLF: 136.45034450582682
Iteration: 13, Func. Count: 113, Neg. LLF: 136.44973163563614
Iteration: 14, Func. Count: 121, Neg. LLF: 136.44968565108056
Iteration: 15, Func. Count: 129, Neg. LLF: 136.4496776463881
Iteration: 16, Func. Count: 137, Neg. LLF: 136.44967560469624
Iteration: 17, Func. Count: 144, Neg. LLF: 136.44967559786707
Optimization terminated successfully (Exit mode 0)
Current function value: 136.44967560469624
Iterations: 17
Function evaluations: 144
Gradient evaluations: 17
Iteration: 1, Func. Count: 10, Neg. LLF: 154.14842011453862
Iteration: 2, Func. Count: 20, Neg. LLF: 183.89377342723563
Iteration: 3, Func. Count: 30, Neg. LLF: 207.29018826509366
Iteration: 4, Func. Count: 40, Neg. LLF: 139.794815910565
Iteration: 5, Func. Count: 50, Neg. LLF: 136.86769378617203
Iteration: 6, Func. Count: 59, Neg. LLF: 136.56413121030104
Iteration: 7, Func. Count: 68, Neg. LLF: 137.1807783825297
Iteration: 8, Func. Count: 78, Neg. LLF: 136.36511361274452
Iteration: 9, Func. Count: 88, Neg. LLF: 136.29570831740358
Iteration: 10, Func. Count: 98, Neg. LLF: 136.07121451823562
Iteration: 11, Func. Count: 107, Neg. LLF: 136.0674612023795
Iteration: 12, Func. Count: 116, Neg. LLF: 136.06716252523137
Iteration: 13, Func. Count: 125, Neg. LLF: 136.06711996690117
Iteration: 14, Func. Count: 134, Neg. LLF: 136.06711400530523
Iteration: 15, Func. Count: 142, Neg. LLF: 136.06711396770072
Optimization terminated successfully (Exit mode 0)
Current function value: 136.06711400530523
Iterations: 15
Function evaluations: 142
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 156.38491202290476
Iteration: 2, Func. Count: 22, Neg. LLF: 180.41781075118277
Iteration: 3, Func. Count: 33, Neg. LLF: 201.49243325020691
Iteration: 4, Func. Count: 44, Neg. LLF: 151.4395990176545
Iteration: 5, Func. Count: 55, Neg. LLF: 160.68996957670544
Iteration: 6, Func. Count: 66, Neg. LLF: 141.1944355599902
Iteration: 7, Func. Count: 77, Neg. LLF: 136.23475928803393
Iteration: 8, Func. Count: 87, Neg. LLF: 136.26579163905845
Iteration: 9, Func. Count: 98, Neg. LLF: 136.34023064224465
Iteration: 10, Func. Count: 109, Neg. LLF: 136.08152179031555
Iteration: 11, Func. Count: 119, Neg. LLF: 136.06788302490514
Iteration: 12, Func. Count: 129, Neg. LLF: 136.0671302241243
Iteration: 13, Func. Count: 139, Neg. LLF: 136.0671162548815
Iteration: 14, Func. Count: 149, Neg. LLF: 136.0671138516427
Iteration: 15, Func. Count: 158, Neg. LLF: 136.06711391845
Optimization terminated successfully (Exit mode 0)
Current function value: 136.0671138516427
Iterations: 15
Function evaluations: 158
Gradient evaluations: 15
Iteration: 1, Func. Count: 8, Neg. LLF: 148.2228415391383
Iteration: 2, Func. Count: 16, Neg. LLF: 146.9193828230458
Iteration: 3, Func. Count: 25, Neg. LLF: 143.95525708825988
Iteration: 4, Func. Count: 33, Neg. LLF: 141.12018902848519
Iteration: 5, Func. Count: 40, Neg. LLF: 142.08786518760368
Iteration: 6, Func. Count: 48, Neg. LLF: 139.51662461531294
Iteration: 7, Func. Count: 55, Neg. LLF: 137.48847855647477
Iteration: 8, Func. Count: 62, Neg. LLF: 137.7479823103935
Iteration: 9, Func. Count: 70, Neg. LLF: 136.4301827109877
Iteration: 10, Func. Count: 77, Neg. LLF: 136.35144021433896
Iteration: 11, Func. Count: 84, Neg. LLF: 136.52624784287127
Iteration: 12, Func. Count: 92, Neg. LLF: 136.33681671377022
Iteration: 13, Func. Count: 99, Neg. LLF: 136.3364931880123
Iteration: 14, Func. Count: 106, Neg. LLF: 136.33644942737493
Iteration: 15, Func. Count: 113, Neg. LLF: 136.33644779185735
Iteration: 16, Func. Count: 119, Neg. LLF: 136.33644777203557
Optimization terminated successfully (Exit mode 0)
Current function value: 136.33644779185735
Iterations: 16
Function evaluations: 119
Gradient evaluations: 16
Iteration: 1, Func. Count: 9, Neg. LLF: 262.873449435983
Iteration: 2, Func. Count: 18, Neg. LLF: 150.74657904964968
Iteration: 3, Func. Count: 27, Neg. LLF: 202.33799825752493
Iteration: 4, Func. Count: 36, Neg. LLF: 141.18887698204503
Iteration: 5, Func. Count: 45, Neg. LLF: 139.78334377506422
Iteration: 6, Func. Count: 54, Neg. LLF: 138.16393349135515
Iteration: 7, Func. Count: 63, Neg. LLF: 136.4400530229646
Iteration: 8, Func. Count: 71, Neg. LLF: 136.37036261813893
Iteration: 9, Func. Count: 79, Neg. LLF: 136.34297520658563
Iteration: 10, Func. Count: 87, Neg. LLF: 136.33724259387176
Iteration: 11, Func. Count: 95, Neg. LLF: 136.3365452270326
Iteration: 12, Func. Count: 103, Neg. LLF: 136.33647430111057
Iteration: 13, Func. Count: 111, Neg. LLF: 136.33644779280203
Iteration: 14, Func. Count: 118, Neg. LLF: 136.3364477722817
Optimization terminated successfully (Exit mode 0)
Current function value: 136.33644779280203
Iterations: 14
Function evaluations: 118
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 160.38496366883248
Iteration: 2, Func. Count: 20, Neg. LLF: 173.94585727268606
Iteration: 3, Func. Count: 30, Neg. LLF: 186.40949792225612
Iteration: 4, Func. Count: 40, Neg. LLF: 208.55347456369557
Iteration: 5, Func. Count: 50, Neg. LLF: 224.0412602887532
Iteration: 6, Func. Count: 60, Neg. LLF: 144.93598791131578
Iteration: 7, Func. Count: 70, Neg. LLF: 137.0617460809756
Iteration: 8, Func. Count: 79, Neg. LLF: 138.66386352723634
Iteration: 9, Func. Count: 89, Neg. LLF: 140.98443768243052
Iteration: 10, Func. Count: 100, Neg. LLF: 136.35033087463844
Iteration: 11, Func. Count: 109, Neg. LLF: 136.33750121459195
Iteration: 12, Func. Count: 118, Neg. LLF: 136.33681516812308
Iteration: 13, Func. Count: 127, Neg. LLF: 136.33651056952874
Iteration: 14, Func. Count: 136, Neg. LLF: 136.33646423527708
Iteration: 15, Func. Count: 145, Neg. LLF: 136.33645282772792
Iteration: 16, Func. Count: 154, Neg. LLF: 136.33644889054372
Iteration: 17, Func. Count: 163, Neg. LLF: 136.33644786974753
Iteration: 18, Func. Count: 171, Neg. LLF: 136.33644790982817
Optimization terminated successfully (Exit mode 0)
Current function value: 136.33644786974753
Iterations: 18
Function evaluations: 171
Gradient evaluations: 18
Iteration: 1, Func. Count: 11, Neg. LLF: 152.18645702155985
Iteration: 2, Func. Count: 22, Neg. LLF: 186.80333865790178
Iteration: 3, Func. Count: 33, Neg. LLF: 201.44995735761043
Iteration: 4, Func. Count: 44, Neg. LLF: 139.28272852090413
Iteration: 5, Func. Count: 55, Neg. LLF: 141.81266098328717
Iteration: 6, Func. Count: 66, Neg. LLF: 136.1904164484831
Iteration: 7, Func. Count: 76, Neg. LLF: 136.114848596998
Iteration: 8, Func. Count: 86, Neg. LLF: 136.05119829075193
Iteration: 9, Func. Count: 96, Neg. LLF: 136.01353227310446
Iteration: 10, Func. Count: 106, Neg. LLF: 136.01006289821908
Iteration: 11, Func. Count: 116, Neg. LLF: 136.00877403610485
Iteration: 12, Func. Count: 126, Neg. LLF: 136.00877776331293
Iteration: 13, Func. Count: 137, Neg. LLF: 136.00875941707667
Iteration: 14, Func. Count: 146, Neg. LLF: 136.00875938282815
Optimization terminated successfully (Exit mode 0)
Current function value: 136.00875941707667
Iterations: 14
Function evaluations: 146
Gradient evaluations: 14
Iteration: 1, Func. Count: 12, Neg. LLF: 153.43763742272128
Iteration: 2, Func. Count: 24, Neg. LLF: 184.08904469767916
Iteration: 3, Func. Count: 36, Neg. LLF: 197.44325720375906
Iteration: 4, Func. Count: 48, Neg. LLF: 149.218315008338
Iteration: 5, Func. Count: 60, Neg. LLF: 149.19951927153474
Iteration: 6, Func. Count: 72, Neg. LLF: 137.34897552073164
Iteration: 7, Func. Count: 83, Neg. LLF: 136.25955012924928
Iteration: 8, Func. Count: 94, Neg. LLF: 136.2876767128061
Iteration: 9, Func. Count: 106, Neg. LLF: 136.07642023168918
Iteration: 10, Func. Count: 117, Neg. LLF: 136.03564135583838
Iteration: 11, Func. Count: 128, Neg. LLF: 136.0681788532485
Iteration: 12, Func. Count: 140, Neg. LLF: 136.01020529426907
Iteration: 13, Func. Count: 151, Neg. LLF: 136.00889966387282
Iteration: 14, Func. Count: 162, Neg. LLF: 136.00876312736267
Iteration: 15, Func. Count: 173, Neg. LLF: 136.00875950728218
Iteration: 16, Func. Count: 183, Neg. LLF: 136.0087595759827
Optimization terminated successfully (Exit mode 0)
Current function value: 136.00875950728218
Iterations: 16
Function evaluations: 183
Gradient evaluations: 16
Iteration: 1, Func. Count: 9, Neg. LLF: 147.38355815576824
Iteration: 2, Func. Count: 18, Neg. LLF: 145.80232654298933
Iteration: 3, Func. Count: 28, Neg. LLF: 143.2012895269126
Iteration: 4, Func. Count: 37, Neg. LLF: 141.19462722026228
Iteration: 5, Func. Count: 45, Neg. LLF: 144.6951514735781
Iteration: 6, Func. Count: 54, Neg. LLF: 140.5701670209692
Iteration: 7, Func. Count: 63, Neg. LLF: 142.24155209411873
Iteration: 8, Func. Count: 72, Neg. LLF: 29400.733746119204
Iteration: 9, Func. Count: 81, Neg. LLF: 43534.50254480997
Iteration: 10, Func. Count: 90, Neg. LLF: 48243.8565372115
Iteration: 11, Func. Count: 99, Neg. LLF: 148.62369374576102
Iteration: 12, Func. Count: 108, Neg. LLF: 138.1387419304129
Iteration: 13, Func. Count: 117, Neg. LLF: 136.3426926124572
Iteration: 14, Func. Count: 125, Neg. LLF: 136.33727391092
Iteration: 15, Func. Count: 133, Neg. LLF: 136.33649506168555
Iteration: 16, Func. Count: 141, Neg. LLF: 136.33645996194315
Iteration: 17, Func. Count: 149, Neg. LLF: 136.3364481436418
Iteration: 18, Func. Count: 156, Neg. LLF: 136.33644820596118
Optimization terminated successfully (Exit mode 0)
Current function value: 136.3364481436418
Iterations: 18
Function evaluations: 156
Gradient evaluations: 18
Iteration: 1, Func. Count: 10, Neg. LLF: 260.8647299200176
Iteration: 2, Func. Count: 20, Neg. LLF: 163.5303670778389
Iteration: 3, Func. Count: 30, Neg. LLF: 199.87422134045016
Iteration: 4, Func. Count: 40, Neg. LLF: 191.67618675264342
Iteration: 5, Func. Count: 50, Neg. LLF: 200.56913619794676
Iteration: 6, Func. Count: 60, Neg. LLF: 144.93647277900226
Iteration: 7, Func. Count: 70, Neg. LLF: 143.85771938627835
Iteration: 8, Func. Count: 80, Neg. LLF: 137.3368250348948
Iteration: 9, Func. Count: 89, Neg. LLF: 136.69700633146087
Iteration: 10, Func. Count: 98, Neg. LLF: 136.7369918725833
Iteration: 11, Func. Count: 108, Neg. LLF: 136.3474073028173
Iteration: 12, Func. Count: 117, Neg. LLF: 136.33895410424222
Iteration: 13, Func. Count: 126, Neg. LLF: 136.33686219647575
Iteration: 14, Func. Count: 135, Neg. LLF: 136.3365172800449
Iteration: 15, Func. Count: 144, Neg. LLF: 136.33645781616937
Iteration: 16, Func. Count: 153, Neg. LLF: 136.33644789916508
Iteration: 17, Func. Count: 161, Neg. LLF: 136.33644787862227
Optimization terminated successfully (Exit mode 0)
Current function value: 136.33644789916508
Iterations: 17
Function evaluations: 161
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 160.34562805594248
Iteration: 2, Func. Count: 22, Neg. LLF: 173.15699877610533
Iteration: 3, Func. Count: 33, Neg. LLF: 182.96289783048533
Iteration: 4, Func. Count: 44, Neg. LLF: 207.89187981234642
Iteration: 5, Func. Count: 55, Neg. LLF: 222.8867585332711
Iteration: 6, Func. Count: 66, Neg. LLF: 145.9986520359004
Iteration: 7, Func. Count: 77, Neg. LLF: 137.24793556891166
Iteration: 8, Func. Count: 87, Neg. LLF: 138.70470552867664
Iteration: 9, Func. Count: 98, Neg. LLF: 142.14136421584772
Iteration: 10, Func. Count: 110, Neg. LLF: 136.35301385090227
Iteration: 11, Func. Count: 120, Neg. LLF: 136.33829595780577
Iteration: 12, Func. Count: 130, Neg. LLF: 136.3369965193213
Iteration: 13, Func. Count: 140, Neg. LLF: 136.33650919096104
Iteration: 14, Func. Count: 150, Neg. LLF: 136.3364546145487
Iteration: 15, Func. Count: 160, Neg. LLF: 136.33644831249597
Iteration: 16, Func. Count: 169, Neg. LLF: 136.3364483525665
Optimization terminated successfully (Exit mode 0)
Current function value: 136.33644831249597
Iterations: 16
Function evaluations: 169
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 151.33355812485942
Iteration: 2, Func. Count: 24, Neg. LLF: 190.3745457148988
Iteration: 3, Func. Count: 36, Neg. LLF: 196.51193407267698
Iteration: 4, Func. Count: 48, Neg. LLF: 141.4118020743374
Iteration: 5, Func. Count: 60, Neg. LLF: 144.14336773382735
Iteration: 6, Func. Count: 72, Neg. LLF: 136.2582546868314
Iteration: 7, Func. Count: 83, Neg. LLF: 136.47572770894539
Iteration: 8, Func. Count: 95, Neg. LLF: 136.2624980886729
Iteration: 9, Func. Count: 107, Neg. LLF: 136.02621351620618
Iteration: 10, Func. Count: 118, Neg. LLF: 136.01219336786733
Iteration: 11, Func. Count: 129, Neg. LLF: 136.00942832205266
Iteration: 12, Func. Count: 140, Neg. LLF: 136.00876671311198
Iteration: 13, Func. Count: 151, Neg. LLF: 136.00875975549343
Iteration: 14, Func. Count: 161, Neg. LLF: 136.00875972121173
Optimization terminated successfully (Exit mode 0)
Current function value: 136.00875975549343
Iterations: 14
Function evaluations: 161
Gradient evaluations: 14
Iteration: 1, Func. Count: 13, Neg. LLF: 152.11475704770996
Iteration: 2, Func. Count: 26, Neg. LLF: 189.30086339350046
Iteration: 3, Func. Count: 39, Neg. LLF: 193.2897434084058
Iteration: 4, Func. Count: 52, Neg. LLF: 147.6628262447121
Iteration: 5, Func. Count: 65, Neg. LLF: 147.83687513316374
Iteration: 6, Func. Count: 78, Neg. LLF: 136.84565720696665
Iteration: 7, Func. Count: 90, Neg. LLF: 136.50271641686186
Iteration: 8, Func. Count: 102, Neg. LLF: 136.90539164676647
Iteration: 9, Func. Count: 115, Neg. LLF: 136.09235698387965
Iteration: 10, Func. Count: 127, Neg. LLF: 136.03217059578654
Iteration: 11, Func. Count: 139, Neg. LLF: 136.00997502730218
Iteration: 12, Func. Count: 151, Neg. LLF: 136.00910426443744
Iteration: 13, Func. Count: 163, Neg. LLF: 136.00879443675328
Iteration: 14, Func. Count: 175, Neg. LLF: 136.00876259528624
Iteration: 15, Func. Count: 187, Neg. LLF: 136.00875939349314
Iteration: 16, Func. Count: 198, Neg. LLF: 136.00875946220944
Optimization terminated successfully (Exit mode 0)
Current function value: 136.00875939349314
Iterations: 16
Function evaluations: 198
Gradient evaluations: 16
Iteration: 1, Func. Count: 6, Neg. LLF: 148.743943710882
Iteration: 2, Func. Count: 12, Neg. LLF: 159.73627849678937
Iteration: 3, Func. Count: 18, Neg. LLF: 142.86421518127725
Iteration: 4, Func. Count: 23, Neg. LLF: 142.42854009723118
Iteration: 5, Func. Count: 28, Neg. LLF: 140.44478772647852
Iteration: 6, Func. Count: 33, Neg. LLF: 140.70926710157082
Iteration: 7, Func. Count: 39, Neg. LLF: 139.9880917074237
Iteration: 8, Func. Count: 44, Neg. LLF: 139.95038410316306
Iteration: 9, Func. Count: 49, Neg. LLF: 139.95024927574514
Iteration: 10, Func. Count: 55, Neg. LLF: 139.9493303994757
Iteration: 11, Func. Count: 59, Neg. LLF: 139.9493306064447
Optimization terminated successfully (Exit mode 0)
Current function value: 139.9493303994757
Iterations: 11
Function evaluations: 59
Gradient evaluations: 11
Iteration: 1, Func. Count: 7, Neg. LLF: 176.5088139625676
Iteration: 2, Func. Count: 14, Neg. LLF: 186.13947313831534
Iteration: 3, Func. Count: 21, Neg. LLF: 143.4542831854587
Iteration: 4, Func. Count: 28, Neg. LLF: 148.95235097891435
Iteration: 5, Func. Count: 35, Neg. LLF: 141.44131512112878
Iteration: 6, Func. Count: 41, Neg. LLF: 141.32803768145212
Iteration: 7, Func. Count: 47, Neg. LLF: 141.32524216733813
Iteration: 8, Func. Count: 53, Neg. LLF: 141.32490926342888
Iteration: 9, Func. Count: 59, Neg. LLF: 141.3245381697501
Iteration: 10, Func. Count: 65, Neg. LLF: 141.32452940915684
Iteration: 11, Func. Count: 70, Neg. LLF: 141.32452937537954
Optimization terminated successfully (Exit mode 0)
Current function value: 141.32452940915684
Iterations: 11
Function evaluations: 70
Gradient evaluations: 11
Iteration: 1, Func. Count: 8, Neg. LLF: 173.17042277210788
Iteration: 2, Func. Count: 16, Neg. LLF: 150.70560991800374
Iteration: 3, Func. Count: 24, Neg. LLF: 147.78044020494602
Iteration: 4, Func. Count: 32, Neg. LLF: 144.2981545520844
Iteration: 5, Func. Count: 40, Neg. LLF: 140.32752950069167
Iteration: 6, Func. Count: 47, Neg. LLF: 140.22987414789367
Iteration: 7, Func. Count: 54, Neg. LLF: 139.98938891602003
Iteration: 8, Func. Count: 61, Neg. LLF: 139.98639976602738
Iteration: 9, Func. Count: 68, Neg. LLF: 139.98507225030568
Iteration: 10, Func. Count: 75, Neg. LLF: 139.98363399814912
Iteration: 11, Func. Count: 82, Neg. LLF: 139.98347284523342
Iteration: 12, Func. Count: 89, Neg. LLF: 139.98346027594067
Iteration: 13, Func. Count: 95, Neg. LLF: 139.9834602390711
Optimization terminated successfully (Exit mode 0)
Current function value: 139.98346027594067
Iterations: 13
Function evaluations: 95
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 171.9710708929644
Iteration: 2, Func. Count: 18, Neg. LLF: 150.877903017326
Iteration: 3, Func. Count: 27, Neg. LLF: 161.68905934224335
Iteration: 4, Func. Count: 36, Neg. LLF: 139.20131555071293
Iteration: 5, Func. Count: 44, Neg. LLF: 138.0414965376773
Iteration: 6, Func. Count: 52, Neg. LLF: 137.98660405573386
Iteration: 7, Func. Count: 60, Neg. LLF: 137.91788932258112
Iteration: 8, Func. Count: 68, Neg. LLF: 137.9162813425665
Iteration: 9, Func. Count: 76, Neg. LLF: 137.91600700061676
Iteration: 10, Func. Count: 84, Neg. LLF: 137.91599992630503
Iteration: 11, Func. Count: 91, Neg. LLF: 137.91599983693212
Optimization terminated successfully (Exit mode 0)
Current function value: 137.91599992630503
Iterations: 11
Function evaluations: 91
Gradient evaluations: 11
Iteration: 1, Func. Count: 10, Neg. LLF: 170.83921643347796
Iteration: 2, Func. Count: 20, Neg. LLF: 146.1176733415148
Iteration: 3, Func. Count: 30, Neg. LLF: 155.87470979413825
Iteration: 4, Func. Count: 40, Neg. LLF: 139.0732966818705
Iteration: 5, Func. Count: 49, Neg. LLF: 138.05414542897532
Iteration: 6, Func. Count: 58, Neg. LLF: 137.980926322382
Iteration: 7, Func. Count: 67, Neg. LLF: 137.92818059937434
Iteration: 8, Func. Count: 76, Neg. LLF: 137.91800529114258
Iteration: 9, Func. Count: 85, Neg. LLF: 137.91621277882476
Iteration: 10, Func. Count: 94, Neg. LLF: 137.9160084419804
Iteration: 11, Func. Count: 103, Neg. LLF: 137.91599978406765
Iteration: 12, Func. Count: 111, Neg. LLF: 137.91599988671075
Optimization terminated successfully (Exit mode 0)
Current function value: 137.91599978406765
Iterations: 12
Function evaluations: 111
Gradient evaluations: 12
Iteration: 1, Func. Count: 7, Neg. LLF: 147.34537293640838
Iteration: 2, Func. Count: 14, Neg. LLF: 146.87783568769171
Iteration: 3, Func. Count: 21, Neg. LLF: 142.68677469256517
Iteration: 4, Func. Count: 27, Neg. LLF: 142.28327832059824
Iteration: 5, Func. Count: 33, Neg. LLF: 140.19412182081533
Iteration: 6, Func. Count: 39, Neg. LLF: 140.4439969320187
Iteration: 7, Func. Count: 46, Neg. LLF: 139.95554086383854
Iteration: 8, Func. Count: 52, Neg. LLF: 139.95173719135812
Iteration: 9, Func. Count: 58, Neg. LLF: 139.94842075909455
Iteration: 10, Func. Count: 64, Neg. LLF: 139.94828906896043
Iteration: 11, Func. Count: 70, Neg. LLF: 139.9482844671639
Iteration: 12, Func. Count: 75, Neg. LLF: 139.948284454064
Optimization terminated successfully (Exit mode 0)
Current function value: 139.9482844671639
Iterations: 12
Function evaluations: 75
Gradient evaluations: 12
Iteration: 1, Func. Count: 8, Neg. LLF: 337.7780795682335
Iteration: 2, Func. Count: 16, Neg. LLF: 180.37567512493322
Iteration: 3, Func. Count: 25, Neg. LLF: 756.0562565926444
Iteration: 4, Func. Count: 34, Neg. LLF: 140.1468548453313
Iteration: 5, Func. Count: 41, Neg. LLF: 140.06447137755316
Iteration: 6, Func. Count: 48, Neg. LLF: 140.04754121211786
Iteration: 7, Func. Count: 55, Neg. LLF: 140.03441132536562
Iteration: 8, Func. Count: 62, Neg. LLF: 140.03308628814383
Iteration: 9, Func. Count: 69, Neg. LLF: 140.03306598419232
Iteration: 10, Func. Count: 75, Neg. LLF: 140.03306598029155
Optimization terminated successfully (Exit mode 0)
Current function value: 140.03306598419232
Iterations: 10
Function evaluations: 75
Gradient evaluations: 10
Iteration: 1, Func. Count: 9, Neg. LLF: 253.41627054909452
Iteration: 2, Func. Count: 18, Neg. LLF: 166.96236800794594
Iteration: 3, Func. Count: 27, Neg. LLF: 285.90527796381264
Iteration: 4, Func. Count: 37, Neg. LLF: 140.51499209350848
Iteration: 5, Func. Count: 45, Neg. LLF: 140.19937250510438
Iteration: 6, Func. Count: 53, Neg. LLF: 140.10190750097482
Iteration: 7, Func. Count: 61, Neg. LLF: 140.0668620017901
Iteration: 8, Func. Count: 69, Neg. LLF: 140.04851457167558
Iteration: 9, Func. Count: 77, Neg. LLF: 140.03445151312695
Iteration: 10, Func. Count: 85, Neg. LLF: 140.03311558419898
Iteration: 11, Func. Count: 93, Neg. LLF: 140.03306619152642
Iteration: 12, Func. Count: 100, Neg. LLF: 140.03306623486637
Optimization terminated successfully (Exit mode 0)
Current function value: 140.03306619152642
Iterations: 12
Function evaluations: 100
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 193.00442283997756
Iteration: 2, Func. Count: 20, Neg. LLF: 145.4584463783647
Iteration: 3, Func. Count: 30, Neg. LLF: 142.00359557045732
Iteration: 4, Func. Count: 40, Neg. LLF: 138.53343961464302
Iteration: 5, Func. Count: 49, Neg. LLF: 138.30435832414494
Iteration: 6, Func. Count: 58, Neg. LLF: 138.24733046002754
Iteration: 7, Func. Count: 68, Neg. LLF: 139.16797348236122
Iteration: 8, Func. Count: 78, Neg. LLF: 137.83817691471683
Iteration: 9, Func. Count: 87, Neg. LLF: 137.83191906803984
Iteration: 10, Func. Count: 96, Neg. LLF: 137.82535021804912
Iteration: 11, Func. Count: 105, Neg. LLF: 137.82322967104258
Iteration: 12, Func. Count: 114, Neg. LLF: 137.82307007286826
Iteration: 13, Func. Count: 123, Neg. LLF: 137.8230664698024
Iteration: 14, Func. Count: 132, Neg. LLF: 137.82306390218437
Iteration: 15, Func. Count: 141, Neg. LLF: 137.82306587943367
Optimization terminated successfully (Exit mode 0)
Current function value: 137.82306425193704
Iterations: 16
Function evaluations: 142
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 176.33734379777673
Iteration: 2, Func. Count: 22, Neg. LLF: 168.2530310972286
Iteration: 3, Func. Count: 33, Neg. LLF: 164.44492343685647
Iteration: 4, Func. Count: 44, Neg. LLF: 141.04455842210018
Iteration: 5, Func. Count: 54, Neg. LLF: 141.0955816926168
Iteration: 6, Func. Count: 65, Neg. LLF: 138.94840220769612
Iteration: 7, Func. Count: 75, Neg. LLF: 144.42190022668748
Iteration: 8, Func. Count: 87, Neg. LLF: 138.55122716087544
Iteration: 9, Func. Count: 97, Neg. LLF: 140.43091745834465
Iteration: 10, Func. Count: 108, Neg. LLF: 138.41081002634024
Iteration: 11, Func. Count: 118, Neg. LLF: 138.34712413428312
Iteration: 12, Func. Count: 128, Neg. LLF: 138.30280999157935
Iteration: 13, Func. Count: 138, Neg. LLF: 137.98085428355674
Iteration: 14, Func. Count: 148, Neg. LLF: 137.8823382652901
Iteration: 15, Func. Count: 158, Neg. LLF: 137.8464556029786
Iteration: 16, Func. Count: 168, Neg. LLF: 137.8261401530536
Iteration: 17, Func. Count: 178, Neg. LLF: 137.82311435785414
Iteration: 18, Func. Count: 188, Neg. LLF: 137.82307479565188
Iteration: 19, Func. Count: 198, Neg. LLF: 137.82306588721312
Iteration: 20, Func. Count: 207, Neg. LLF: 137.8230659676857
Optimization terminated successfully (Exit mode 0)
Current function value: 137.82306588721312
Iterations: 20
Function evaluations: 207
Gradient evaluations: 20
Iteration: 1, Func. Count: 8, Neg. LLF: 148.66535059416128
Iteration: 2, Func. Count: 16, Neg. LLF: 146.02549201096988
Iteration: 3, Func. Count: 24, Neg. LLF: 141.9994296302631
Iteration: 4, Func. Count: 31, Neg. LLF: 140.94812768661097
Iteration: 5, Func. Count: 38, Neg. LLF: 139.73488517488119
Iteration: 6, Func. Count: 45, Neg. LLF: 140.49084111286504
Iteration: 7, Func. Count: 53, Neg. LLF: 139.1060741537003
Iteration: 8, Func. Count: 61, Neg. LLF: 138.23355247179387
Iteration: 9, Func. Count: 68, Neg. LLF: 138.10153013277574
Iteration: 10, Func. Count: 75, Neg. LLF: 138.0988879173185
Iteration: 11, Func. Count: 82, Neg. LLF: 138.0973966927528
Iteration: 12, Func. Count: 89, Neg. LLF: 138.0973909566017
Iteration: 13, Func. Count: 96, Neg. LLF: 138.09739029438433
Optimization terminated successfully (Exit mode 0)
Current function value: 138.09739029438433
Iterations: 13
Function evaluations: 96
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 261.03201833293036
Iteration: 2, Func. Count: 18, Neg. LLF: 226.84319658169926
Iteration: 3, Func. Count: 27, Neg. LLF: 204.29709062533047
Iteration: 4, Func. Count: 36, Neg. LLF: 146.23907755961477
Iteration: 5, Func. Count: 45, Neg. LLF: 250.14501779910094
Iteration: 6, Func. Count: 54, Neg. LLF: 142.58737391306894
Iteration: 7, Func. Count: 63, Neg. LLF: 138.63234752126849
Iteration: 8, Func. Count: 72, Neg. LLF: 136.54090969335874
Iteration: 9, Func. Count: 80, Neg. LLF: 138.59447695778792
Iteration: 10, Func. Count: 89, Neg. LLF: 136.45081187499673
Iteration: 11, Func. Count: 97, Neg. LLF: 136.45001672421907
Iteration: 12, Func. Count: 105, Neg. LLF: 136.4496796721347
Iteration: 13, Func. Count: 113, Neg. LLF: 136.44967564039646
Iteration: 14, Func. Count: 120, Neg. LLF: 136.44967559162453
Optimization terminated successfully (Exit mode 0)
Current function value: 136.44967564039646
Iterations: 14
Function evaluations: 120
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 256.45882884655697
Iteration: 2, Func. Count: 20, Neg. LLF: 192.13351529699398
Iteration: 3, Func. Count: 30, Neg. LLF: 182.5467348896659
Iteration: 4, Func. Count: 40, Neg. LLF: 214.16130739725708
Iteration: 5, Func. Count: 50, Neg. LLF: 156.53050022389417
Iteration: 6, Func. Count: 60, Neg. LLF: 141.90987488040227
Iteration: 7, Func. Count: 70, Neg. LLF: 136.73655740363156
Iteration: 8, Func. Count: 79, Neg. LLF: 136.76593106121527
Iteration: 9, Func. Count: 89, Neg. LLF: 141.96600036753068
Iteration: 10, Func. Count: 100, Neg. LLF: 136.58474004757446
Iteration: 11, Func. Count: 110, Neg. LLF: 136.4524421435639
Iteration: 12, Func. Count: 119, Neg. LLF: 136.44988382699051
Iteration: 13, Func. Count: 128, Neg. LLF: 136.449696142369
Iteration: 14, Func. Count: 137, Neg. LLF: 136.44967571470136
Iteration: 15, Func. Count: 145, Neg. LLF: 136.44967570782833
Optimization terminated successfully (Exit mode 0)
Current function value: 136.44967571470136
Iterations: 15
Function evaluations: 145
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 164.81536798435357
Iteration: 2, Func. Count: 22, Neg. LLF: 180.23374169156537
Iteration: 3, Func. Count: 33, Neg. LLF: 198.76523319726954
Iteration: 4, Func. Count: 44, Neg. LLF: 179.8298840001782
Iteration: 5, Func. Count: 55, Neg. LLF: 158.398774053306
Iteration: 6, Func. Count: 66, Neg. LLF: 149.12439813866476
Iteration: 7, Func. Count: 77, Neg. LLF: 147.40293220427574
Iteration: 8, Func. Count: 88, Neg. LLF: 136.69658630644156
Iteration: 9, Func. Count: 98, Neg. LLF: 136.50689581887372
Iteration: 10, Func. Count: 109, Neg. LLF: 136.82059152296438
Iteration: 11, Func. Count: 120, Neg. LLF: 136.14955948606823
Iteration: 12, Func. Count: 130, Neg. LLF: 136.07931732043173
Iteration: 13, Func. Count: 140, Neg. LLF: 136.069523451669
Iteration: 14, Func. Count: 150, Neg. LLF: 136.06756176779447
Iteration: 15, Func. Count: 160, Neg. LLF: 136.06715860592632
Iteration: 16, Func. Count: 170, Neg. LLF: 136.0671167236928
Iteration: 17, Func. Count: 180, Neg. LLF: 136.06711400188232
Iteration: 18, Func. Count: 189, Neg. LLF: 136.0671139643295
Optimization terminated successfully (Exit mode 0)
Current function value: 136.06711400188232
Iterations: 18
Function evaluations: 189
Gradient evaluations: 18
Iteration: 1, Func. Count: 12, Neg. LLF: 149.28409198559862
Iteration: 2, Func. Count: 24, Neg. LLF: 142.03974744227557
Iteration: 3, Func. Count: 36, Neg. LLF: 152.26646084471335
Iteration: 4, Func. Count: 48, Neg. LLF: 143.03597404014238
Iteration: 5, Func. Count: 60, Neg. LLF: 970055.2883282164
Iteration: 6, Func. Count: 72, Neg. LLF: 149.2763636663102
Iteration: 7, Func. Count: 84, Neg. LLF: 208.7418823363903
Iteration: 8, Func. Count: 96, Neg. LLF: 166.13856166699262
Iteration: 9, Func. Count: 108, Neg. LLF: 159.6866646347024
Iteration: 10, Func. Count: 120, Neg. LLF: 181.60396002405895
Iteration: 11, Func. Count: 132, Neg. LLF: 148.38802495845042
Iteration: 12, Func. Count: 144, Neg. LLF: 152.1513876369161
Iteration: 13, Func. Count: 156, Neg. LLF: 136.30034178561004
Iteration: 14, Func. Count: 167, Neg. LLF: 136.10418195144433
Iteration: 15, Func. Count: 178, Neg. LLF: 136.07319928086824
Iteration: 16, Func. Count: 189, Neg. LLF: 136.07077458926526
Iteration: 17, Func. Count: 200, Neg. LLF: 136.06717836902766
Iteration: 18, Func. Count: 211, Neg. LLF: 136.0671209675235
Iteration: 19, Func. Count: 222, Neg. LLF: 136.06711403475558
Iteration: 20, Func. Count: 232, Neg. LLF: 136.06711410155313
Optimization terminated successfully (Exit mode 0)
Current function value: 136.06711403475558
Iterations: 20
Function evaluations: 232
Gradient evaluations: 20
Iteration: 1, Func. Count: 9, Neg. LLF: 149.1134809876161
Iteration: 2, Func. Count: 18, Neg. LLF: 143.5954568066721
Iteration: 3, Func. Count: 27, Neg. LLF: 142.17380866987523
Iteration: 4, Func. Count: 35, Neg. LLF: 141.39547722015942
Iteration: 5, Func. Count: 43, Neg. LLF: 161.2370752359035
Iteration: 6, Func. Count: 52, Neg. LLF: 140.09080785936442
Iteration: 7, Func. Count: 60, Neg. LLF: 247317.4593608436
Iteration: 8, Func. Count: 69, Neg. LLF: 232234.82104639636
Iteration: 9, Func. Count: 78, Neg. LLF: 232684.08391763372
Iteration: 10, Func. Count: 87, Neg. LLF: 231137.78354376624
Iteration: 11, Func. Count: 96, Neg. LLF: 31535.963000272128
Iteration: 12, Func. Count: 105, Neg. LLF: 28477.098103142827
Iteration: 13, Func. Count: 114, Neg. LLF: 29870.65975358776
Iteration: 14, Func. Count: 123, Neg. LLF: 144.98444504926607
Iteration: 15, Func. Count: 132, Neg. LLF: 137.66929739938521
Iteration: 16, Func. Count: 141, Neg. LLF: 136.68360597859612
Iteration: 17, Func. Count: 150, Neg. LLF: 136.46413533542957
Iteration: 18, Func. Count: 158, Neg. LLF: 136.37584979391508
Iteration: 19, Func. Count: 166, Neg. LLF: 136.34144124636018
Iteration: 20, Func. Count: 174, Neg. LLF: 136.33684639840018
Iteration: 21, Func. Count: 182, Neg. LLF: 136.33648183814665
Iteration: 22, Func. Count: 190, Neg. LLF: 136.33644786281596
Iteration: 23, Func. Count: 197, Neg. LLF: 136.3364478429853
Optimization terminated successfully (Exit mode 0)
Current function value: 136.33644786281596
Iterations: 23
Function evaluations: 197
Gradient evaluations: 23
Iteration: 1, Func. Count: 10, Neg. LLF: 254.96525245297772
Iteration: 2, Func. Count: 20, Neg. LLF: 304.02263069164314
Iteration: 3, Func. Count: 30, Neg. LLF: 203.71651645048547
Iteration: 4, Func. Count: 40, Neg. LLF: 142.88124352220396
Iteration: 5, Func. Count: 50, Neg. LLF: 255.14443668235214
Iteration: 6, Func. Count: 60, Neg. LLF: 143.2769285866198
Iteration: 7, Func. Count: 70, Neg. LLF: 137.35708919010926
Iteration: 8, Func. Count: 79, Neg. LLF: 137.54112579821228
Iteration: 9, Func. Count: 89, Neg. LLF: 143.17785882056145
Iteration: 10, Func. Count: 100, Neg. LLF: 136.5004176433286
Iteration: 11, Func. Count: 109, Neg. LLF: 136.37442445818058
Iteration: 12, Func. Count: 118, Neg. LLF: 136.34153311584012
Iteration: 13, Func. Count: 127, Neg. LLF: 136.33675933065453
Iteration: 14, Func. Count: 136, Neg. LLF: 136.33649417618653
Iteration: 15, Func. Count: 145, Neg. LLF: 136.33645297248614
Iteration: 16, Func. Count: 154, Neg. LLF: 136.3364482077554
Iteration: 17, Func. Count: 162, Neg. LLF: 136.3364481873389
Optimization terminated successfully (Exit mode 0)
Current function value: 136.3364482077554
Iterations: 17
Function evaluations: 162
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 251.7818958327347
Iteration: 2, Func. Count: 22, Neg. LLF: 198.21960060603732
Iteration: 3, Func. Count: 33, Neg. LLF: 183.45458618370128
Iteration: 4, Func. Count: 44, Neg. LLF: 162.03555425817444
Iteration: 5, Func. Count: 55, Neg. LLF: 247.1530130389374
Iteration: 6, Func. Count: 66, Neg. LLF: 142.768715795622
Iteration: 7, Func. Count: 77, Neg. LLF: 137.29191795392748
Iteration: 8, Func. Count: 87, Neg. LLF: 137.13721501604053
Iteration: 9, Func. Count: 98, Neg. LLF: 143.5995644224219
Iteration: 10, Func. Count: 110, Neg. LLF: 136.59930487510337
Iteration: 11, Func. Count: 120, Neg. LLF: 136.56518891198095
Iteration: 12, Func. Count: 131, Neg. LLF: 136.35404921765658
Iteration: 13, Func. Count: 141, Neg. LLF: 136.33841264643735
Iteration: 14, Func. Count: 151, Neg. LLF: 136.3368713541747
Iteration: 15, Func. Count: 161, Neg. LLF: 136.33646176251798
Iteration: 16, Func. Count: 171, Neg. LLF: 136.33644852264933
Iteration: 17, Func. Count: 181, Neg. LLF: 136.33644778121902
Optimization terminated successfully (Exit mode 0)
Current function value: 136.33644778121902
Iterations: 17
Function evaluations: 181
Gradient evaluations: 17
Iteration: 1, Func. Count: 12, Neg. LLF: 164.01201944203547
Iteration: 2, Func. Count: 24, Neg. LLF: 175.76714707446723
Iteration: 3, Func. Count: 36, Neg. LLF: 194.96000354623285
Iteration: 4, Func. Count: 48, Neg. LLF: 198.117876515003
Iteration: 5, Func. Count: 60, Neg. LLF: 160.53116650192922
Iteration: 6, Func. Count: 72, Neg. LLF: 149.49288423092824
Iteration: 7, Func. Count: 84, Neg. LLF: 147.29997186618982
Iteration: 8, Func. Count: 96, Neg. LLF: 137.04178491176685
Iteration: 9, Func. Count: 107, Neg. LLF: 136.57255483583276
Iteration: 10, Func. Count: 118, Neg. LLF: 140.2035212341234
Iteration: 11, Func. Count: 132, Neg. LLF: 136.64486993475714
Iteration: 12, Func. Count: 144, Neg. LLF: 136.0744539215868
Iteration: 13, Func. Count: 155, Neg. LLF: 136.0874954832522
Iteration: 14, Func. Count: 167, Neg. LLF: 136.0098057070254
Iteration: 15, Func. Count: 178, Neg. LLF: 136.00940216977125
Iteration: 16, Func. Count: 189, Neg. LLF: 136.00887426073643
Iteration: 17, Func. Count: 200, Neg. LLF: 136.008769726179
Iteration: 18, Func. Count: 211, Neg. LLF: 136.0087594376282
Iteration: 19, Func. Count: 221, Neg. LLF: 136.00875940337895
Optimization terminated successfully (Exit mode 0)
Current function value: 136.0087594376282
Iterations: 19
Function evaluations: 221
Gradient evaluations: 19
Iteration: 1, Func. Count: 13, Neg. LLF: 148.81714364743988
Iteration: 2, Func. Count: 26, Neg. LLF: 144.13889923023103
Iteration: 3, Func. Count: 39, Neg. LLF: 151.69827803148632
Iteration: 4, Func. Count: 52, Neg. LLF: 138.9517232650809
Iteration: 5, Func. Count: 64, Neg. LLF: 231.45788754318096
Iteration: 6, Func. Count: 77, Neg. LLF: 142.9491174824102
Iteration: 7, Func. Count: 90, Neg. LLF: 137.71022436805265
Iteration: 8, Func. Count: 103, Neg. LLF: 10585.874497356916
Iteration: 9, Func. Count: 116, Neg. LLF: 145.25182632026292
Iteration: 10, Func. Count: 129, Neg. LLF: 137.43728179033377
Iteration: 11, Func. Count: 142, Neg. LLF: 156.2134912629018
Iteration: 12, Func. Count: 155, Neg. LLF: 136.10377486612498
Iteration: 13, Func. Count: 167, Neg. LLF: 136.03898235967097
Iteration: 14, Func. Count: 179, Neg. LLF: 136.00921034332637
Iteration: 15, Func. Count: 191, Neg. LLF: 136.00877834985377
Iteration: 16, Func. Count: 203, Neg. LLF: 136.0087602260982
Iteration: 17, Func. Count: 215, Neg. LLF: 136.0087593465795
Optimization terminated successfully (Exit mode 0)
Current function value: 136.0087593465795
Iterations: 17
Function evaluations: 215
Gradient evaluations: 17
Iteration: 1, Func. Count: 10, Neg. LLF: 148.13596802150695
Iteration: 2, Func. Count: 20, Neg. LLF: 144.18847548178434
Iteration: 3, Func. Count: 31, Neg. LLF: 144.68373402491292
Iteration: 4, Func. Count: 41, Neg. LLF: 141.2362177270883
Iteration: 5, Func. Count: 50, Neg. LLF: 158.19363026772308
Iteration: 6, Func. Count: 60, Neg. LLF: 141.50704547811978
Iteration: 7, Func. Count: 70, Neg. LLF: 139.91685404571405
Iteration: 8, Func. Count: 80, Neg. LLF: 49464.07896370614
Iteration: 9, Func. Count: 90, Neg. LLF: 141.70877177945047
Iteration: 10, Func. Count: 100, Neg. LLF: 136.49750945886683
Iteration: 11, Func. Count: 109, Neg. LLF: 136.67035869221127
Iteration: 12, Func. Count: 119, Neg. LLF: 136.34278671742192
Iteration: 13, Func. Count: 128, Neg. LLF: 136.35069816217955
Iteration: 14, Func. Count: 138, Neg. LLF: 136.33646022221782
Iteration: 15, Func. Count: 147, Neg. LLF: 136.33644784847908
Iteration: 16, Func. Count: 155, Neg. LLF: 136.33644791080314
Optimization terminated successfully (Exit mode 0)
Current function value: 136.33644784847908
Iterations: 16
Function evaluations: 155
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 252.8443826906565
Iteration: 2, Func. Count: 22, Neg. LLF: 278.53288999312593
Iteration: 3, Func. Count: 33, Neg. LLF: 202.71631829168078
Iteration: 4, Func. Count: 44, Neg. LLF: 142.05408150362558
Iteration: 5, Func. Count: 55, Neg. LLF: 253.50469903676446
Iteration: 6, Func. Count: 66, Neg. LLF: 138.54729036911547
Iteration: 7, Func. Count: 77, Neg. LLF: 136.88862820590944
Iteration: 8, Func. Count: 87, Neg. LLF: 137.85481570653607
Iteration: 9, Func. Count: 99, Neg. LLF: 138.1656296406108
Iteration: 10, Func. Count: 110, Neg. LLF: 136.3864078708378
Iteration: 11, Func. Count: 120, Neg. LLF: 136.3423227822018
Iteration: 12, Func. Count: 130, Neg. LLF: 136.33670960961243
Iteration: 13, Func. Count: 140, Neg. LLF: 136.33647172985837
Iteration: 14, Func. Count: 150, Neg. LLF: 136.33644821534344
Iteration: 15, Func. Count: 159, Neg. LLF: 136.33644819478695
Optimization terminated successfully (Exit mode 0)
Current function value: 136.33644821534344
Iterations: 15
Function evaluations: 159
Gradient evaluations: 15
Iteration: 1, Func. Count: 12, Neg. LLF: 247.9511470085968
Iteration: 2, Func. Count: 24, Neg. LLF: 193.65420925111334
Iteration: 3, Func. Count: 36, Neg. LLF: 177.35711601974361
Iteration: 4, Func. Count: 48, Neg. LLF: 157.8563163653463
Iteration: 5, Func. Count: 60, Neg. LLF: 232.0989799725179
Iteration: 6, Func. Count: 72, Neg. LLF: 143.58450475679683
Iteration: 7, Func. Count: 84, Neg. LLF: 138.2414658727093
Iteration: 8, Func. Count: 96, Neg. LLF: 136.77956164846478
Iteration: 9, Func. Count: 107, Neg. LLF: 138.330710415868
Iteration: 10, Func. Count: 120, Neg. LLF: 138.6082308520052
Iteration: 11, Func. Count: 132, Neg. LLF: 136.35584830920848
Iteration: 12, Func. Count: 143, Neg. LLF: 136.33862621100633
Iteration: 13, Func. Count: 154, Neg. LLF: 136.33646251532247
Iteration: 14, Func. Count: 165, Neg. LLF: 136.33645249928097
Iteration: 15, Func. Count: 176, Neg. LLF: 136.3364481398139
Iteration: 16, Func. Count: 186, Neg. LLF: 136.33644817995238
Optimization terminated successfully (Exit mode 0)
Current function value: 136.3364481398139
Iterations: 16
Function evaluations: 186
Gradient evaluations: 16
Iteration: 1, Func. Count: 13, Neg. LLF: 147.01306093538926
Iteration: 2, Func. Count: 26, Neg. LLF: 148.53523974721818
Iteration: 3, Func. Count: 39, Neg. LLF: 151.5864075372563
Iteration: 4, Func. Count: 52, Neg. LLF: 138.783699359824
Iteration: 5, Func. Count: 64, Neg. LLF: 492036.0409743033
Iteration: 6, Func. Count: 77, Neg. LLF: 155.34131613017354
Iteration: 7, Func. Count: 91, Neg. LLF: 157.41254949497156
Iteration: 8, Func. Count: 104, Neg. LLF: 167.0354510077601
Iteration: 9, Func. Count: 117, Neg. LLF: 151.1336925980418
Iteration: 10, Func. Count: 130, Neg. LLF: 137.98033064208275
Iteration: 11, Func. Count: 143, Neg. LLF: 136.10909678230274
Iteration: 12, Func. Count: 155, Neg. LLF: 136.04947014581765
Iteration: 13, Func. Count: 167, Neg. LLF: 136.02238669945518
Iteration: 14, Func. Count: 179, Neg. LLF: 136.0112123019682
Iteration: 15, Func. Count: 191, Neg. LLF: 136.00986532037913
Iteration: 16, Func. Count: 203, Neg. LLF: 136.00891339273602
Iteration: 17, Func. Count: 215, Neg. LLF: 136.00877291056162
Iteration: 18, Func. Count: 227, Neg. LLF: 136.00875942355523
Iteration: 19, Func. Count: 238, Neg. LLF: 136.00875938927646
Optimization terminated successfully (Exit mode 0)
Current function value: 136.00875942355523
Iterations: 19
Function evaluations: 238
Gradient evaluations: 19
Iteration: 1, Func. Count: 14, Neg. LLF: 147.94346328241122
Iteration: 2, Func. Count: 28, Neg. LLF: 146.17551353654264
Iteration: 3, Func. Count: 42, Neg. LLF: 151.40057155466633
Iteration: 4, Func. Count: 56, Neg. LLF: 138.8029483755634
Iteration: 5, Func. Count: 69, Neg. LLF: 893371.0382306027
Iteration: 6, Func. Count: 83, Neg. LLF: 139.2271681471105
Iteration: 7, Func. Count: 97, Neg. LLF: 663381.6250456197
Iteration: 8, Func. Count: 111, Neg. LLF: 238.02497443474283
Iteration: 9, Func. Count: 125, Neg. LLF: 148.20712693273242
Iteration: 10, Func. Count: 139, Neg. LLF: 152.96811879418536
Iteration: 11, Func. Count: 153, Neg. LLF: 136.27604067725878
Iteration: 12, Func. Count: 166, Neg. LLF: 136.52525435199613
Iteration: 13, Func. Count: 181, Neg. LLF: 137.34503406144708
Iteration: 14, Func. Count: 195, Neg. LLF: 136.0703062343859
Iteration: 15, Func. Count: 208, Neg. LLF: 136.0379914810485
Iteration: 16, Func. Count: 221, Neg. LLF: 136.0146010841265
Iteration: 17, Func. Count: 234, Neg. LLF: 136.0098264954131
Iteration: 18, Func. Count: 247, Neg. LLF: 136.00877348343352
Iteration: 19, Func. Count: 260, Neg. LLF: 136.00875976281492
Iteration: 20, Func. Count: 273, Neg. LLF: 136.00875940162294
Optimization terminated successfully (Exit mode 0)
Current function value: 136.00875940162294
Iterations: 20
Function evaluations: 273
Gradient evaluations: 20
Iteration: 1, Func. Count: 7, Neg. LLF: 148.62146634499544
Iteration: 2, Func. Count: 14, Neg. LLF: 164.13234941411568
Iteration: 3, Func. Count: 21, Neg. LLF: 142.87722425613185
Iteration: 4, Func. Count: 27, Neg. LLF: 142.27560591577316
Iteration: 5, Func. Count: 33, Neg. LLF: 139.9768942906241
Iteration: 6, Func. Count: 39, Neg. LLF: 139.9675719639464
Iteration: 7, Func. Count: 45, Neg. LLF: 139.94934655055465
Iteration: 8, Func. Count: 51, Neg. LLF: 139.9493391692892
Iteration: 9, Func. Count: 57, Neg. LLF: 139.94933025350272
Iteration: 10, Func. Count: 62, Neg. LLF: 139.9493302937402
Optimization terminated successfully (Exit mode 0)
Current function value: 139.94933025350272
Iterations: 10
Function evaluations: 62
Gradient evaluations: 10
Iteration: 1, Func. Count: 8, Neg. LLF: 171.38076446848467
Iteration: 2, Func. Count: 16, Neg. LLF: 182.47093274822814
Iteration: 3, Func. Count: 24, Neg. LLF: 154.35845145061984
Iteration: 4, Func. Count: 32, Neg. LLF: 143.4778174128596
Iteration: 5, Func. Count: 40, Neg. LLF: 141.33710361294314
Iteration: 6, Func. Count: 47, Neg. LLF: 143.60139525287508
Iteration: 7, Func. Count: 55, Neg. LLF: 140.8269928830507
Iteration: 8, Func. Count: 62, Neg. LLF: 140.4537723555463
Iteration: 9, Func. Count: 69, Neg. LLF: 140.20198202306483
Iteration: 10, Func. Count: 76, Neg. LLF: 139.9738331482979
Iteration: 11, Func. Count: 83, Neg. LLF: 139.95542324903755
Iteration: 12, Func. Count: 90, Neg. LLF: 139.95021433082832
Iteration: 13, Func. Count: 97, Neg. LLF: 139.9493488124014
Iteration: 14, Func. Count: 104, Neg. LLF: 139.94933054018853
Iteration: 15, Func. Count: 110, Neg. LLF: 139.94933074524735
Optimization terminated successfully (Exit mode 0)
Current function value: 139.94933054018853
Iterations: 15
Function evaluations: 110
Gradient evaluations: 15
Iteration: 1, Func. Count: 9, Neg. LLF: 168.07682488922737
Iteration: 2, Func. Count: 18, Neg. LLF: 148.0562568731938
Iteration: 3, Func. Count: 27, Neg. LLF: 181.33600441955176
Iteration: 4, Func. Count: 37, Neg. LLF: 142.5652511867624
Iteration: 5, Func. Count: 46, Neg. LLF: 140.25288717936363
Iteration: 6, Func. Count: 54, Neg. LLF: 140.587284465213
Iteration: 7, Func. Count: 64, Neg. LLF: 140.02706812304913
Iteration: 8, Func. Count: 72, Neg. LLF: 139.99076311382694
Iteration: 9, Func. Count: 80, Neg. LLF: 139.98425452692678
Iteration: 10, Func. Count: 88, Neg. LLF: 139.9836117343538
Iteration: 11, Func. Count: 96, Neg. LLF: 139.98346026925122
Iteration: 12, Func. Count: 103, Neg. LLF: 139.98346023236653
Optimization terminated successfully (Exit mode 0)
Current function value: 139.98346026925122
Iterations: 12
Function evaluations: 103
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 147.31065799382765
Iteration: 2, Func. Count: 20, Neg. LLF: 148.51291251464
Iteration: 3, Func. Count: 30, Neg. LLF: 140.95877055039225
Iteration: 4, Func. Count: 39, Neg. LLF: 164.5446097281238
Iteration: 5, Func. Count: 49, Neg. LLF: 139.36631714668155
Iteration: 6, Func. Count: 58, Neg. LLF: 137.98675060029882
Iteration: 7, Func. Count: 67, Neg. LLF: 138.028871288696
Iteration: 8, Func. Count: 77, Neg. LLF: 137.9848478442734
Iteration: 9, Func. Count: 87, Neg. LLF: 137.9164701899976
Iteration: 10, Func. Count: 96, Neg. LLF: 137.9160456133419
Iteration: 11, Func. Count: 105, Neg. LLF: 137.91600191366504
Iteration: 12, Func. Count: 114, Neg. LLF: 137.91599952376265
Iteration: 13, Func. Count: 122, Neg. LLF: 137.91599943452036
Optimization terminated successfully (Exit mode 0)
Current function value: 137.91599952376265
Iterations: 13
Function evaluations: 122
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 147.57478596552914
Iteration: 2, Func. Count: 22, Neg. LLF: 148.186343658488
Iteration: 3, Func. Count: 33, Neg. LLF: 140.88006004648048
Iteration: 4, Func. Count: 43, Neg. LLF: 199.21762266083283
Iteration: 5, Func. Count: 54, Neg. LLF: 141.91213395486972
Iteration: 6, Func. Count: 65, Neg. LLF: 138.80089458339958
Iteration: 7, Func. Count: 75, Neg. LLF: 149.57683637915528
Iteration: 8, Func. Count: 86, Neg. LLF: 149.32590652058045
Iteration: 9, Func. Count: 97, Neg. LLF: 147.0805648313084
Iteration: 10, Func. Count: 108, Neg. LLF: 141.61336870502024
Iteration: 11, Func. Count: 119, Neg. LLF: 138.3101553217484
Iteration: 12, Func. Count: 130, Neg. LLF: 137.91762754785532
Iteration: 13, Func. Count: 140, Neg. LLF: 137.91619147399155
Iteration: 14, Func. Count: 150, Neg. LLF: 137.91606770537112
Iteration: 15, Func. Count: 160, Neg. LLF: 137.91602848525037
Iteration: 16, Func. Count: 170, Neg. LLF: 137.91599954706328
Iteration: 17, Func. Count: 179, Neg. LLF: 137.91599964974742
Optimization terminated successfully (Exit mode 0)
Current function value: 137.91599954706328
Iterations: 17
Function evaluations: 179
Gradient evaluations: 17
Iteration: 1, Func. Count: 8, Neg. LLF: 147.6973855919773
Iteration: 2, Func. Count: 16, Neg. LLF: 149.4615704142864
Iteration: 3, Func. Count: 24, Neg. LLF: 142.7104910483177
Iteration: 4, Func. Count: 31, Neg. LLF: 142.02899345791434
Iteration: 5, Func. Count: 38, Neg. LLF: 140.95494353495823
Iteration: 6, Func. Count: 45, Neg. LLF: 140.05300879534215
Iteration: 7, Func. Count: 52, Neg. LLF: 140.0004158615187
Iteration: 8, Func. Count: 59, Neg. LLF: 139.95501535783075
Iteration: 9, Func. Count: 66, Neg. LLF: 139.94997818036083
Iteration: 10, Func. Count: 73, Neg. LLF: 139.9485449911878
Iteration: 11, Func. Count: 80, Neg. LLF: 139.94829419537035
Iteration: 12, Func. Count: 87, Neg. LLF: 139.94828457180083
Iteration: 13, Func. Count: 93, Neg. LLF: 139.94828455870223
Optimization terminated successfully (Exit mode 0)
Current function value: 139.94828457180083
Iterations: 13
Function evaluations: 93
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 338.05958168907523
Iteration: 2, Func. Count: 18, Neg. LLF: 179.54140452020022
Iteration: 3, Func. Count: 28, Neg. LLF: 783.9757763663141
Iteration: 4, Func. Count: 38, Neg. LLF: 140.1522212882904
Iteration: 5, Func. Count: 46, Neg. LLF: 140.07138717565078
Iteration: 6, Func. Count: 54, Neg. LLF: 140.05005591653597
Iteration: 7, Func. Count: 62, Neg. LLF: 140.03385674376355
Iteration: 8, Func. Count: 70, Neg. LLF: 140.0331038980461
Iteration: 9, Func. Count: 78, Neg. LLF: 140.0330664269605
Iteration: 10, Func. Count: 85, Neg. LLF: 140.03306642320254
Optimization terminated successfully (Exit mode 0)
Current function value: 140.0330664269605
Iterations: 10
Function evaluations: 85
Gradient evaluations: 10
Iteration: 1, Func. Count: 10, Neg. LLF: 292.18847845203874
Iteration: 2, Func. Count: 20, Neg. LLF: 175.3775533221188
Iteration: 3, Func. Count: 30, Neg. LLF: 388.34328315546117
Iteration: 4, Func. Count: 41, Neg. LLF: 149.82428376084505
Iteration: 5, Func. Count: 51, Neg. LLF: 140.41712376001794
Iteration: 6, Func. Count: 60, Neg. LLF: 140.19625228369893
Iteration: 7, Func. Count: 69, Neg. LLF: 140.1259653273545
Iteration: 8, Func. Count: 78, Neg. LLF: 140.046545268396
Iteration: 9, Func. Count: 87, Neg. LLF: 140.03500330643362
Iteration: 10, Func. Count: 96, Neg. LLF: 140.03345706658826
Iteration: 11, Func. Count: 105, Neg. LLF: 140.03306963679415
Iteration: 12, Func. Count: 114, Neg. LLF: 140.03306622906197
Iteration: 13, Func. Count: 122, Neg. LLF: 140.03306627236088
Optimization terminated successfully (Exit mode 0)
Current function value: 140.03306622906197
Iterations: 13
Function evaluations: 122
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 256.29036381577225
Iteration: 2, Func. Count: 22, Neg. LLF: 175.251683300474
Iteration: 3, Func. Count: 34, Neg. LLF: 156.89772392104783
Iteration: 4, Func. Count: 45, Neg. LLF: 141.69958208605507
Iteration: 5, Func. Count: 55, Neg. LLF: 140.26280374595225
Iteration: 6, Func. Count: 65, Neg. LLF: 140.14566663053736
Iteration: 7, Func. Count: 75, Neg. LLF: 140.072312308966
Iteration: 8, Func. Count: 85, Neg. LLF: 140.04547901130545
Iteration: 9, Func. Count: 95, Neg. LLF: 140.03640981732175
Iteration: 10, Func. Count: 105, Neg. LLF: 140.034191181811
Iteration: 11, Func. Count: 115, Neg. LLF: 140.0331904468075
Iteration: 12, Func. Count: 125, Neg. LLF: 140.03307152335088
Iteration: 13, Func. Count: 135, Neg. LLF: 140.03306607291057
Iteration: 14, Func. Count: 144, Neg. LLF: 140.03306608321475
Optimization terminated successfully (Exit mode 0)
Current function value: 140.03306607291057
Iterations: 14
Function evaluations: 144
Gradient evaluations: 14
Iteration: 1, Func. Count: 12, Neg. LLF: 251.69464223444515
Iteration: 2, Func. Count: 24, Neg. LLF: 175.78319843778368
Iteration: 3, Func. Count: 37, Neg. LLF: 288.45522496502133
Iteration: 4, Func. Count: 50, Neg. LLF: 140.59602199858696
Iteration: 5, Func. Count: 61, Neg. LLF: 140.2553109101193
Iteration: 6, Func. Count: 72, Neg. LLF: 139.75241574824656
Iteration: 7, Func. Count: 83, Neg. LLF: 139.58577526170686
Iteration: 8, Func. Count: 94, Neg. LLF: 139.40026839376517
Iteration: 9, Func. Count: 105, Neg. LLF: 139.3881101325063
Iteration: 10, Func. Count: 116, Neg. LLF: 139.3710738295321
Iteration: 11, Func. Count: 127, Neg. LLF: 139.37013886411137
Iteration: 12, Func. Count: 138, Neg. LLF: 139.3700226709592
Iteration: 13, Func. Count: 149, Neg. LLF: 139.3699800964707
Iteration: 14, Func. Count: 160, Neg. LLF: 139.3699209646907
Iteration: 15, Func. Count: 171, Neg. LLF: 139.36991704072395
Iteration: 16, Func. Count: 181, Neg. LLF: 139.3699169873342
Optimization terminated successfully (Exit mode 0)
Current function value: 139.36991704072395
Iterations: 16
Function evaluations: 181
Gradient evaluations: 16
Iteration: 1, Func. Count: 9, Neg. LLF: 150.44902122025417
Iteration: 2, Func. Count: 18, Neg. LLF: 148.37645007050136
Iteration: 3, Func. Count: 27, Neg. LLF: 142.8764420171538
Iteration: 4, Func. Count: 36, Neg. LLF: 141.4666994550862
Iteration: 5, Func. Count: 44, Neg. LLF: 142.51417260651635
Iteration: 6, Func. Count: 53, Neg. LLF: 142.72413328637305
Iteration: 7, Func. Count: 62, Neg. LLF: 682582.4861381969
Iteration: 8, Func. Count: 71, Neg. LLF: 164.0568733434743
Iteration: 9, Func. Count: 80, Neg. LLF: 633616.0722338811
Iteration: 10, Func. Count: 89, Neg. LLF: 154.62270978709736
Iteration: 11, Func. Count: 98, Neg. LLF: 161.58454565411768
Iteration: 12, Func. Count: 107, Neg. LLF: 145.757239176547
Iteration: 13, Func. Count: 116, Neg. LLF: 138.9297907393821
Iteration: 14, Func. Count: 125, Neg. LLF: 137.72845711096653
Iteration: 15, Func. Count: 133, Neg. LLF: 137.68025101050551
Iteration: 16, Func. Count: 141, Neg. LLF: 137.65767939807236
Iteration: 17, Func. Count: 149, Neg. LLF: 137.65344734396322
Iteration: 18, Func. Count: 157, Neg. LLF: 137.64963359947296
Iteration: 19, Func. Count: 165, Neg. LLF: 137.64956307112652
Iteration: 20, Func. Count: 173, Neg. LLF: 137.64955938769413
Iteration: 21, Func. Count: 180, Neg. LLF: 137.6495593683944
Optimization terminated successfully (Exit mode 0)
Current function value: 137.64955938769413
Iterations: 21
Function evaluations: 180
Gradient evaluations: 21
Iteration: 1, Func. Count: 10, Neg. LLF: 320.9867327986966
Iteration: 2, Func. Count: 20, Neg. LLF: 663.2239989575135
Iteration: 3, Func. Count: 30, Neg. LLF: 149.1938015147239
Iteration: 4, Func. Count: 40, Neg. LLF: 165.3962630202768
Iteration: 5, Func. Count: 50, Neg. LLF: 143.8024403311181
Iteration: 6, Func. Count: 60, Neg. LLF: 161.48668481008212
Iteration: 7, Func. Count: 70, Neg. LLF: 166.21224296527362
Iteration: 8, Func. Count: 80, Neg. LLF: 227.810521277189
Iteration: 9, Func. Count: 90, Neg. LLF: 167.33873708435638
Iteration: 10, Func. Count: 100, Neg. LLF: 148.77568773448027
Iteration: 11, Func. Count: 110, Neg. LLF: 142.85483252467148
Iteration: 12, Func. Count: 120, Neg. LLF: 136.93858364811234
Iteration: 13, Func. Count: 129, Neg. LLF: 136.71642204587238
Iteration: 14, Func. Count: 138, Neg. LLF: 140.77607498295816
Iteration: 15, Func. Count: 148, Neg. LLF: 136.52171135932852
Iteration: 16, Func. Count: 157, Neg. LLF: 136.45805890799625
Iteration: 17, Func. Count: 166, Neg. LLF: 136.44998739414916
Iteration: 18, Func. Count: 175, Neg. LLF: 136.44968440490396
Iteration: 19, Func. Count: 184, Neg. LLF: 136.44967590854452
Iteration: 20, Func. Count: 192, Neg. LLF: 136.44967585973498
Optimization terminated successfully (Exit mode 0)
Current function value: 136.44967590854452
Iterations: 20
Function evaluations: 192
Gradient evaluations: 20
Iteration: 1, Func. Count: 11, Neg. LLF: 289.4379308961534
Iteration: 2, Func. Count: 22, Neg. LLF: 172.06176182180803
Iteration: 3, Func. Count: 33, Neg. LLF: 277.42233784500525
Iteration: 4, Func. Count: 44, Neg. LLF: 1795.3583212294768
Iteration: 5, Func. Count: 55, Neg. LLF: 139.91615984392118
Iteration: 6, Func. Count: 65, Neg. LLF: 241.1795603707403
Iteration: 7, Func. Count: 76, Neg. LLF: 139.26174290839248
Iteration: 8, Func. Count: 87, Neg. LLF: 140.81640130578631
Iteration: 9, Func. Count: 98, Neg. LLF: 136.8789991171219
Iteration: 10, Func. Count: 108, Neg. LLF: 136.7203902826597
Iteration: 11, Func. Count: 118, Neg. LLF: 136.49451750762978
Iteration: 12, Func. Count: 128, Neg. LLF: 136.46374265483118
Iteration: 13, Func. Count: 138, Neg. LLF: 136.45525065293123
Iteration: 14, Func. Count: 148, Neg. LLF: 136.45257942470732
Iteration: 15, Func. Count: 158, Neg. LLF: 136.4508402190331
Iteration: 16, Func. Count: 168, Neg. LLF: 136.4498564008701
Iteration: 17, Func. Count: 178, Neg. LLF: 136.44968606012367
Iteration: 18, Func. Count: 188, Neg. LLF: 136.44967575170185
Iteration: 19, Func. Count: 197, Neg. LLF: 136.44967574480694
Optimization terminated successfully (Exit mode 0)
Current function value: 136.44967575170185
Iterations: 19
Function evaluations: 197
Gradient evaluations: 19
Iteration: 1, Func. Count: 12, Neg. LLF: 273.4388018273167
Iteration: 2, Func. Count: 24, Neg. LLF: 165.49267528978982
Iteration: 3, Func. Count: 36, Neg. LLF: 231.40058494088498
Iteration: 4, Func. Count: 48, Neg. LLF: 380.22178130977505
Iteration: 5, Func. Count: 60, Neg. LLF: 140.13893218453416
Iteration: 6, Func. Count: 72, Neg. LLF: 623.5716325981307
Iteration: 7, Func. Count: 84, Neg. LLF: 137.7916487592523
Iteration: 8, Func. Count: 96, Neg. LLF: 140.11763424121003
Iteration: 9, Func. Count: 108, Neg. LLF: 138.77226164599975
Iteration: 10, Func. Count: 120, Neg. LLF: 136.56854548648616
Iteration: 11, Func. Count: 132, Neg. LLF: 136.16899987624842
Iteration: 12, Func. Count: 143, Neg. LLF: 136.1795913292144
Iteration: 13, Func. Count: 155, Neg. LLF: 136.0859394338273
Iteration: 14, Func. Count: 166, Neg. LLF: 136.0677929166876
Iteration: 15, Func. Count: 177, Neg. LLF: 136.06715943466347
Iteration: 16, Func. Count: 188, Neg. LLF: 136.06712379324782
Iteration: 17, Func. Count: 199, Neg. LLF: 136.06711538381904
Iteration: 18, Func. Count: 210, Neg. LLF: 136.0671138291469
Iteration: 19, Func. Count: 220, Neg. LLF: 136.0671137915376
Optimization terminated successfully (Exit mode 0)
Current function value: 136.0671138291469
Iterations: 19
Function evaluations: 220
Gradient evaluations: 19
Iteration: 1, Func. Count: 13, Neg. LLF: 147.73365921259094
Iteration: 2, Func. Count: 26, Neg. LLF: 144.68633395291468
Iteration: 3, Func. Count: 39, Neg. LLF: 151.65884653282646
Iteration: 4, Func. Count: 52, Neg. LLF: 143.89048554273882
Iteration: 5, Func. Count: 65, Neg. LLF: 866500.4295243765
Iteration: 6, Func. Count: 78, Neg. LLF: 244.63356671811812
Iteration: 7, Func. Count: 91, Neg. LLF: 355.75126721101697
Iteration: 8, Func. Count: 104, Neg. LLF: 150.8915913551737
Iteration: 9, Func. Count: 117, Neg. LLF: 316.05872588921375
Iteration: 10, Func. Count: 130, Neg. LLF: 151.26515375986727
Iteration: 11, Func. Count: 143, Neg. LLF: 226.1127590186451
Iteration: 12, Func. Count: 156, Neg. LLF: 137.16998640072626
Iteration: 13, Func. Count: 169, Neg. LLF: 136.224836838034
Iteration: 14, Func. Count: 181, Neg. LLF: 136.1011022697052
Iteration: 15, Func. Count: 193, Neg. LLF: 136.0736743435386
Iteration: 16, Func. Count: 205, Neg. LLF: 136.0677814191413
Iteration: 17, Func. Count: 217, Neg. LLF: 136.06718975251084
Iteration: 18, Func. Count: 229, Neg. LLF: 136.0671210359186
Iteration: 19, Func. Count: 241, Neg. LLF: 136.06711402649236
Iteration: 20, Func. Count: 252, Neg. LLF: 136.06711409330893
Optimization terminated successfully (Exit mode 0)
Current function value: 136.06711402649236
Iterations: 20
Function evaluations: 252
Gradient evaluations: 20
Iteration: 1, Func. Count: 10, Neg. LLF: 153.77176865046133
Iteration: 2, Func. Count: 20, Neg. LLF: 145.89919109989003
Iteration: 3, Func. Count: 31, Neg. LLF: 143.52945063186306
Iteration: 4, Func. Count: 41, Neg. LLF: 141.13346032547594
Iteration: 5, Func. Count: 50, Neg. LLF: 140.6020367530663
Iteration: 6, Func. Count: 59, Neg. LLF: 222927.80259723318
Iteration: 7, Func. Count: 69, Neg. LLF: 256523.72143205194
Iteration: 8, Func. Count: 79, Neg. LLF: 278796.7010244896
Iteration: 9, Func. Count: 89, Neg. LLF: 257720.61197159448
Iteration: 10, Func. Count: 99, Neg. LLF: 44795.85900638599
Iteration: 11, Func. Count: 109, Neg. LLF: 39920.644374178075
Iteration: 12, Func. Count: 119, Neg. LLF: 37099.15059922498
Iteration: 13, Func. Count: 129, Neg. LLF: 137.15768216959117
Iteration: 14, Func. Count: 138, Neg. LLF: 136.7932647457909
Iteration: 15, Func. Count: 148, Neg. LLF: 136.56458325149114
Iteration: 16, Func. Count: 158, Neg. LLF: 136.354255691414
Iteration: 17, Func. Count: 167, Neg. LLF: 136.33824982744386
Iteration: 18, Func. Count: 176, Neg. LLF: 136.3368432184694
Iteration: 19, Func. Count: 185, Neg. LLF: 136.33646275623676
Iteration: 20, Func. Count: 194, Neg. LLF: 136.33645553055084
Iteration: 21, Func. Count: 203, Neg. LLF: 136.3364531569367
Iteration: 22, Func. Count: 212, Neg. LLF: 136.33644900168144
Iteration: 23, Func. Count: 221, Neg. LLF: 136.33644793472035
Iteration: 24, Func. Count: 229, Neg. LLF: 136.3364479148931
Optimization terminated successfully (Exit mode 0)
Current function value: 136.33644793472035
Iterations: 24
Function evaluations: 229
Gradient evaluations: 24
Iteration: 1, Func. Count: 11, Neg. LLF: 248.5986593554212
Iteration: 2, Func. Count: 22, Neg. LLF: 265.19614440954416
Iteration: 3, Func. Count: 33, Neg. LLF: 147.47973646121196
Iteration: 4, Func. Count: 44, Neg. LLF: 140.67702683402175
Iteration: 5, Func. Count: 55, Neg. LLF: 175.45401635645342
Iteration: 6, Func. Count: 66, Neg. LLF: 149.18019165571587
Iteration: 7, Func. Count: 77, Neg. LLF: 136.89420117069906
Iteration: 8, Func. Count: 87, Neg. LLF: 137.11888877101177
Iteration: 9, Func. Count: 98, Neg. LLF: 138.47844700459441
Iteration: 10, Func. Count: 109, Neg. LLF: 136.37153465365594
Iteration: 11, Func. Count: 119, Neg. LLF: 136.33877225594986
Iteration: 12, Func. Count: 129, Neg. LLF: 136.33680651323127
Iteration: 13, Func. Count: 139, Neg. LLF: 136.33646435446607
Iteration: 14, Func. Count: 149, Neg. LLF: 136.3364492928784
Iteration: 15, Func. Count: 159, Neg. LLF: 136.33644783960375
Iteration: 16, Func. Count: 168, Neg. LLF: 136.3364478191398
Optimization terminated successfully (Exit mode 0)
Current function value: 136.33644783960375
Iterations: 16
Function evaluations: 168
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 271.11284093968766
Iteration: 2, Func. Count: 24, Neg. LLF: 165.50545281617133
Iteration: 3, Func. Count: 36, Neg. LLF: 220.2074428952837
Iteration: 4, Func. Count: 48, Neg. LLF: 176.47082045305527
Iteration: 5, Func. Count: 60, Neg. LLF: 139.86655401157958
Iteration: 6, Func. Count: 72, Neg. LLF: 158.78305612502345
Iteration: 7, Func. Count: 84, Neg. LLF: 141.74394432989246
Iteration: 8, Func. Count: 96, Neg. LLF: 139.64741153008492
Iteration: 9, Func. Count: 108, Neg. LLF: 136.62320960260107
Iteration: 10, Func. Count: 119, Neg. LLF: 136.4797106081676
Iteration: 11, Func. Count: 130, Neg. LLF: 136.3710719270711
Iteration: 12, Func. Count: 141, Neg. LLF: 136.34969305594385
Iteration: 13, Func. Count: 152, Neg. LLF: 136.3394542507543
Iteration: 14, Func. Count: 163, Neg. LLF: 136.33672702255933
Iteration: 15, Func. Count: 174, Neg. LLF: 136.33654712319642
Iteration: 16, Func. Count: 185, Neg. LLF: 136.33646176649998
Iteration: 17, Func. Count: 196, Neg. LLF: 136.33644867731562
Iteration: 18, Func. Count: 207, Neg. LLF: 136.33644779313948
Optimization terminated successfully (Exit mode 0)
Current function value: 136.33644779313948
Iterations: 18
Function evaluations: 207
Gradient evaluations: 18
Iteration: 1, Func. Count: 13, Neg. LLF: 146.26736721546325
Iteration: 2, Func. Count: 26, Neg. LLF: 148.85592430881786
Iteration: 3, Func. Count: 39, Neg. LLF: 151.58600725137214
Iteration: 4, Func. Count: 52, Neg. LLF: 139.07667239692458
Iteration: 5, Func. Count: 64, Neg. LLF: 528630.109423386
Iteration: 6, Func. Count: 77, Neg. LLF: 160.9454264398105
Iteration: 7, Func. Count: 92, Neg. LLF: 137.95414444255346
Iteration: 8, Func. Count: 105, Neg. LLF: 142.18353263115995
Iteration: 9, Func. Count: 118, Neg. LLF: 136.5379775648087
Iteration: 10, Func. Count: 130, Neg. LLF: 137.49880941621277
Iteration: 11, Func. Count: 143, Neg. LLF: 137.19175428150197
Iteration: 12, Func. Count: 156, Neg. LLF: 136.11399381425096
Iteration: 13, Func. Count: 168, Neg. LLF: 136.0304402678765
Iteration: 14, Func. Count: 180, Neg. LLF: 136.01000616737977
Iteration: 15, Func. Count: 192, Neg. LLF: 136.0088632777099
Iteration: 16, Func. Count: 204, Neg. LLF: 136.0087927652908
Iteration: 17, Func. Count: 216, Neg. LLF: 136.00875950280695
Iteration: 18, Func. Count: 227, Neg. LLF: 136.00875946849692
Optimization terminated successfully (Exit mode 0)
Current function value: 136.00875950280695
Iterations: 18
Function evaluations: 227
Gradient evaluations: 18
Iteration: 1, Func. Count: 14, Neg. LLF: 147.17445281533324
Iteration: 2, Func. Count: 28, Neg. LLF: 147.94291669066186
Iteration: 3, Func. Count: 42, Neg. LLF: 151.24172750425876
Iteration: 4, Func. Count: 56, Neg. LLF: 138.73062042632898
Iteration: 5, Func. Count: 69, Neg. LLF: 781541.2985998727
Iteration: 6, Func. Count: 83, Neg. LLF: 138.59069054086672
Iteration: 7, Func. Count: 97, Neg. LLF: 186.40192571082676
Iteration: 8, Func. Count: 111, Neg. LLF: 220.7852675079198
Iteration: 9, Func. Count: 125, Neg. LLF: 148.43196265942566
Iteration: 10, Func. Count: 139, Neg. LLF: 142.42089276024046
Iteration: 11, Func. Count: 153, Neg. LLF: 136.24381504570562
Iteration: 12, Func. Count: 166, Neg. LLF: 138.10854480710293
Iteration: 13, Func. Count: 180, Neg. LLF: 136.2410102241922
Iteration: 14, Func. Count: 194, Neg. LLF: 136.03595600063088
Iteration: 15, Func. Count: 207, Neg. LLF: 136.01553169563587
Iteration: 16, Func. Count: 220, Neg. LLF: 136.00893946285342
Iteration: 17, Func. Count: 233, Neg. LLF: 136.0087647889494
Iteration: 18, Func. Count: 246, Neg. LLF: 136.00875960457353
Iteration: 19, Func. Count: 258, Neg. LLF: 136.00875967327534
Optimization terminated successfully (Exit mode 0)
Current function value: 136.00875960457353
Iterations: 19
Function evaluations: 258
Gradient evaluations: 19
Iteration: 1, Func. Count: 11, Neg. LLF: 152.63830795508366
Iteration: 2, Func. Count: 22, Neg. LLF: 144.93009903821064
Iteration: 3, Func. Count: 34, Neg. LLF: 144.1084335983229
Iteration: 4, Func. Count: 45, Neg. LLF: 141.16525034380393
Iteration: 5, Func. Count: 55, Neg. LLF: 140.42979351607784
Iteration: 6, Func. Count: 65, Neg. LLF: 223520.31108239183
Iteration: 7, Func. Count: 76, Neg. LLF: 250393.44948696395
Iteration: 8, Func. Count: 87, Neg. LLF: 264868.91335071897
Iteration: 9, Func. Count: 98, Neg. LLF: 52634.03263182558
Iteration: 10, Func. Count: 109, Neg. LLF: 46658.075004584774
Iteration: 11, Func. Count: 120, Neg. LLF: 41874.09014878904
Iteration: 12, Func. Count: 131, Neg. LLF: 38401.8250288746
Iteration: 13, Func. Count: 142, Neg. LLF: 138.92362805797848
Iteration: 14, Func. Count: 153, Neg. LLF: 136.42494551940774
Iteration: 15, Func. Count: 163, Neg. LLF: 136.37061969160214
Iteration: 16, Func. Count: 173, Neg. LLF: 136.389117434735
Iteration: 17, Func. Count: 184, Neg. LLF: 136.34933475837957
Iteration: 18, Func. Count: 194, Neg. LLF: 136.34369254775245
Iteration: 19, Func. Count: 204, Neg. LLF: 136.33651321913686
Iteration: 20, Func. Count: 214, Neg. LLF: 136.33644907053937
Iteration: 21, Func. Count: 224, Neg. LLF: 136.33644778151248
Iteration: 22, Func. Count: 233, Neg. LLF: 136.33644784383054
Optimization terminated successfully (Exit mode 0)
Current function value: 136.33644778151248
Iterations: 22
Function evaluations: 233
Gradient evaluations: 22
Iteration: 1, Func. Count: 12, Neg. LLF: 245.47842215582824
Iteration: 2, Func. Count: 24, Neg. LLF: 242.89291721683617
Iteration: 3, Func. Count: 36, Neg. LLF: 145.03923503351322
Iteration: 4, Func. Count: 48, Neg. LLF: 140.60593277683597
Iteration: 5, Func. Count: 60, Neg. LLF: 155.3948821376461
Iteration: 6, Func. Count: 72, Neg. LLF: 145.01657260519755
Iteration: 7, Func. Count: 84, Neg. LLF: 136.76712746123127
Iteration: 8, Func. Count: 95, Neg. LLF: 136.90152224661927
Iteration: 9, Func. Count: 107, Neg. LLF: 138.28898199400612
Iteration: 10, Func. Count: 119, Neg. LLF: 136.34951860500576
Iteration: 11, Func. Count: 130, Neg. LLF: 136.3382734254129
Iteration: 12, Func. Count: 141, Neg. LLF: 136.33651337768694
Iteration: 13, Func. Count: 152, Neg. LLF: 136.33645788457517
Iteration: 14, Func. Count: 163, Neg. LLF: 136.33644800712605
Iteration: 15, Func. Count: 173, Neg. LLF: 136.33644798661305
Optimization terminated successfully (Exit mode 0)
Current function value: 136.33644800712605
Iterations: 15
Function evaluations: 173
Gradient evaluations: 15
Iteration: 1, Func. Count: 13, Neg. LLF: 147.4790984952538
Iteration: 2, Func. Count: 26, Neg. LLF: 149.43330849366248
Iteration: 3, Func. Count: 39, Neg. LLF: 150.76417573358373
Iteration: 4, Func. Count: 52, Neg. LLF: 139.28073771235762
Iteration: 5, Func. Count: 64, Neg. LLF: 890469.5681018777
Iteration: 6, Func. Count: 77, Neg. LLF: 139.16749399240646
Iteration: 7, Func. Count: 90, Neg. LLF: 26042.67507931528
Iteration: 8, Func. Count: 103, Neg. LLF: 139.3712963295568
Iteration: 9, Func. Count: 116, Neg. LLF: 138.1585159737821
Iteration: 10, Func. Count: 129, Neg. LLF: 137.9197221563263
Iteration: 11, Func. Count: 142, Neg. LLF: 136.4873350320664
Iteration: 12, Func. Count: 154, Neg. LLF: 136.41843899266425
Iteration: 13, Func. Count: 166, Neg. LLF: 136.35098697094313
Iteration: 14, Func. Count: 178, Neg. LLF: 136.34477446620474
Iteration: 15, Func. Count: 190, Neg. LLF: 136.33680667419517
Iteration: 16, Func. Count: 202, Neg. LLF: 136.33647323083707
Iteration: 17, Func. Count: 214, Neg. LLF: 136.33644815177655
Iteration: 18, Func. Count: 225, Neg. LLF: 136.33644819185233
Optimization terminated successfully (Exit mode 0)
Current function value: 136.33644815177655
Iterations: 18
Function evaluations: 225
Gradient evaluations: 18
Iteration: 1, Func. Count: 14, Neg. LLF: 145.73388121507085
Iteration: 2, Func. Count: 28, Neg. LLF: 150.87455521109752
Iteration: 3, Func. Count: 42, Neg. LLF: 151.24362466024837
Iteration: 4, Func. Count: 56, Neg. LLF: 138.79524438958944
Iteration: 5, Func. Count: 69, Neg. LLF: 535073.7824320607
Iteration: 6, Func. Count: 83, Neg. LLF: 152.68633427647978
Iteration: 7, Func. Count: 98, Neg. LLF: 140.0645465921511
Iteration: 8, Func. Count: 112, Neg. LLF: 143.55126101364468
Iteration: 9, Func. Count: 126, Neg. LLF: 136.57689855395915
Iteration: 10, Func. Count: 139, Neg. LLF: 136.22169560416108
Iteration: 11, Func. Count: 152, Neg. LLF: 137.37407736120005
Iteration: 12, Func. Count: 167, Neg. LLF: 136.38793681000777
Iteration: 13, Func. Count: 181, Neg. LLF: 136.01958757585254
Iteration: 14, Func. Count: 194, Neg. LLF: 136.01049998418932
Iteration: 15, Func. Count: 207, Neg. LLF: 136.0088718385547
Iteration: 16, Func. Count: 220, Neg. LLF: 136.00876764751493
Iteration: 17, Func. Count: 233, Neg. LLF: 136.00876141552817
Iteration: 18, Func. Count: 246, Neg. LLF: 136.0087594623473
Iteration: 19, Func. Count: 258, Neg. LLF: 136.0087594281395
Optimization terminated successfully (Exit mode 0)
Current function value: 136.0087594623473
Iterations: 19
Function evaluations: 258
Gradient evaluations: 19
Iteration: 1, Func. Count: 15, Neg. LLF: 146.363449492735
Iteration: 2, Func. Count: 30, Neg. LLF: 150.78962560311808
Iteration: 3, Func. Count: 45, Neg. LLF: 150.9689721354738
Iteration: 4, Func. Count: 60, Neg. LLF: 138.69472732960148
Iteration: 5, Func. Count: 74, Neg. LLF: 715161.9260109587
Iteration: 6, Func. Count: 89, Neg. LLF: 137.31450870958582
Iteration: 7, Func. Count: 103, Neg. LLF: 155.83561526353708
Iteration: 8, Func. Count: 118, Neg. LLF: 214.39827379556817
Iteration: 9, Func. Count: 133, Neg. LLF: 142.40557552551
Iteration: 10, Func. Count: 148, Neg. LLF: 136.78406431702916
Iteration: 11, Func. Count: 163, Neg. LLF: 136.23123854957205
Iteration: 12, Func. Count: 177, Neg. LLF: 136.58152874262095
Iteration: 13, Func. Count: 192, Neg. LLF: 136.37084771698872
Iteration: 14, Func. Count: 207, Neg. LLF: 136.07880721842886
Iteration: 15, Func. Count: 221, Neg. LLF: 136.03493500794008
Iteration: 16, Func. Count: 235, Neg. LLF: 136.01398397438112
Iteration: 17, Func. Count: 249, Neg. LLF: 136.00922177042364
Iteration: 18, Func. Count: 263, Neg. LLF: 136.00877331979484
Iteration: 19, Func. Count: 277, Neg. LLF: 136.008759880897
Iteration: 20, Func. Count: 290, Neg. LLF: 136.00875994964753
Optimization terminated successfully (Exit mode 0)
Current function value: 136.008759880897
Iterations: 20
Function evaluations: 290
Gradient evaluations: 20
Iteration: 1, Func. Count: 8, Neg. LLF: 146.19739975558173
Iteration: 2, Func. Count: 16, Neg. LLF: 164.60440652493358
Iteration: 3, Func. Count: 24, Neg. LLF: 142.83815340757067
Iteration: 4, Func. Count: 31, Neg. LLF: 141.8392925659532
Iteration: 5, Func. Count: 38, Neg. LLF: 138.6922059146943
Iteration: 6, Func. Count: 45, Neg. LLF: 140.53767958496337
Iteration: 7, Func. Count: 54, Neg. LLF: 138.16480314957775
Iteration: 8, Func. Count: 62, Neg. LLF: 137.78390783539115
Iteration: 9, Func. Count: 69, Neg. LLF: 137.776184788923
Iteration: 10, Func. Count: 76, Neg. LLF: 137.77583845199806
Iteration: 11, Func. Count: 83, Neg. LLF: 137.77581397836684
Iteration: 12, Func. Count: 89, Neg. LLF: 137.7758139224498
Optimization terminated successfully (Exit mode 0)
Current function value: 137.77581397836684
Iterations: 12
Function evaluations: 89
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 168.57334097945989
Iteration: 2, Func. Count: 18, Neg. LLF: 175.68925215215742
Iteration: 3, Func. Count: 27, Neg. LLF: 141.14499449655074
Iteration: 4, Func. Count: 35, Neg. LLF: 143.78507651306703
Iteration: 5, Func. Count: 44, Neg. LLF: 137.8669726794399
Iteration: 6, Func. Count: 52, Neg. LLF: 137.78619994924398
Iteration: 7, Func. Count: 60, Neg. LLF: 137.77615070854375
Iteration: 8, Func. Count: 68, Neg. LLF: 137.77583129057945
Iteration: 9, Func. Count: 76, Neg. LLF: 137.77581435365929
Iteration: 10, Func. Count: 83, Neg. LLF: 137.77581444546053
Optimization terminated successfully (Exit mode 0)
Current function value: 137.77581435365929
Iterations: 10
Function evaluations: 83
Gradient evaluations: 10
Iteration: 1, Func. Count: 10, Neg. LLF: 164.6000153394023
Iteration: 2, Func. Count: 20, Neg. LLF: 154.247095693021
Iteration: 3, Func. Count: 30, Neg. LLF: 138.81509862009804
Iteration: 4, Func. Count: 39, Neg. LLF: 138.15747055473167
Iteration: 5, Func. Count: 48, Neg. LLF: 137.800973635449
Iteration: 6, Func. Count: 57, Neg. LLF: 137.77738160665564
Iteration: 7, Func. Count: 66, Neg. LLF: 137.77593561671156
Iteration: 8, Func. Count: 75, Neg. LLF: 137.77590214204153
Iteration: 9, Func. Count: 84, Neg. LLF: 137.77582849805358
Iteration: 10, Func. Count: 93, Neg. LLF: 137.77579641420834
Iteration: 11, Func. Count: 102, Neg. LLF: 137.77579744575195
Iteration: 12, Func. Count: 121, Neg. LLF: 137.7758211908396
Iteration: 13, Func. Count: 131, Neg. LLF: 137.77581460216746
Iteration: 14, Func. Count: 141, Neg. LLF: 137.7758139377572
Iteration: 15, Func. Count: 149, Neg. LLF: 137.77581406440126
Optimization terminated successfully (Exit mode 0)
Current function value: 137.7758139377572
Iterations: 16
Function evaluations: 149
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 145.55226701683804
Iteration: 2, Func. Count: 21, Neg. LLF: 151.82909679692656
Iteration: 3, Func. Count: 32, Neg. LLF: 147.3065355375065
Iteration: 4, Func. Count: 44, Neg. LLF: 160.40069256107859
Iteration: 5, Func. Count: 55, Neg. LLF: 139.31112591022506
Iteration: 6, Func. Count: 65, Neg. LLF: 215.33181939161224
Iteration: 7, Func. Count: 76, Neg. LLF: 277.2315091543839
Iteration: 8, Func. Count: 87, Neg. LLF: 278.4038869123598
Iteration: 9, Func. Count: 98, Neg. LLF: 272.49960147548353
Iteration: 10, Func. Count: 109, Neg. LLF: 147.21767046802438
Iteration: 11, Func. Count: 120, Neg. LLF: 138.48983959670687
Iteration: 12, Func. Count: 131, Neg. LLF: 137.793800096937
Iteration: 13, Func. Count: 141, Neg. LLF: 137.77904946428893
Iteration: 14, Func. Count: 151, Neg. LLF: 137.77657344687154
Iteration: 15, Func. Count: 161, Neg. LLF: 137.77582938702236
Iteration: 16, Func. Count: 171, Neg. LLF: 137.77582772663803
Iteration: 17, Func. Count: 181, Neg. LLF: 137.77581419286437
Optimization terminated successfully (Exit mode 0)
Current function value: 137.7758141918538
Iterations: 17
Function evaluations: 181
Gradient evaluations: 17
Iteration: 1, Func. Count: 12, Neg. LLF: 145.59294345521556
Iteration: 2, Func. Count: 23, Neg. LLF: 142.69873959888648
Iteration: 3, Func. Count: 35, Neg. LLF: 218.8115111928271
Iteration: 4, Func. Count: 47, Neg. LLF: 142.93351058135892
Iteration: 5, Func. Count: 59, Neg. LLF: 140.03105781661188
Iteration: 6, Func. Count: 70, Neg. LLF: 138.83487476883283
Iteration: 7, Func. Count: 81, Neg. LLF: 159.1493647679416
Iteration: 8, Func. Count: 93, Neg. LLF: 137.8326000782463
Iteration: 9, Func. Count: 104, Neg. LLF: 137.78734253068967
Iteration: 10, Func. Count: 115, Neg. LLF: 137.78799918306672
Iteration: 11, Func. Count: 127, Neg. LLF: 137.77581474391394
Iteration: 12, Func. Count: 138, Neg. LLF: 137.77581394199044
Optimization terminated successfully (Exit mode 0)
Current function value: 137.77581394199044
Iterations: 12
Function evaluations: 138
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 145.4628239126132
Iteration: 2, Func. Count: 18, Neg. LLF: 148.68582341944332
Iteration: 3, Func. Count: 27, Neg. LLF: 142.66220542008605
Iteration: 4, Func. Count: 35, Neg. LLF: 136.82509856585776
Iteration: 5, Func. Count: 43, Neg. LLF: 140.54099900600355
Iteration: 6, Func. Count: 53, Neg. LLF: 135.91392066306233
Iteration: 7, Func. Count: 61, Neg. LLF: 135.64439224896248
Iteration: 8, Func. Count: 69, Neg. LLF: 135.62524336201892
Iteration: 9, Func. Count: 77, Neg. LLF: 135.6240739107027
Iteration: 10, Func. Count: 85, Neg. LLF: 135.62405026962404
Iteration: 11, Func. Count: 92, Neg. LLF: 135.6240502289769
Optimization terminated successfully (Exit mode 0)
Current function value: 135.62405026962404
Iterations: 11
Function evaluations: 92
Gradient evaluations: 11
Iteration: 1, Func. Count: 10, Neg. LLF: 261.2064431911538
Iteration: 2, Func. Count: 20, Neg. LLF: 230.0389499310046
Iteration: 3, Func. Count: 30, Neg. LLF: 135.83380300111622
Iteration: 4, Func. Count: 39, Neg. LLF: 137.59465596817117
Iteration: 5, Func. Count: 50, Neg. LLF: 135.33250888258146
Iteration: 6, Func. Count: 60, Neg. LLF: 136.1948106094956
Iteration: 7, Func. Count: 70, Neg. LLF: 134.71831220923255
Iteration: 8, Func. Count: 79, Neg. LLF: 134.6717688288778
Iteration: 9, Func. Count: 88, Neg. LLF: 134.65935637708003
Iteration: 10, Func. Count: 97, Neg. LLF: 134.65493354510838
Iteration: 11, Func. Count: 106, Neg. LLF: 134.65438229221866
Iteration: 12, Func. Count: 115, Neg. LLF: 134.6543750100677
Iteration: 13, Func. Count: 123, Neg. LLF: 134.65437490269267
Optimization terminated successfully (Exit mode 0)
Current function value: 134.6543750100677
Iterations: 13
Function evaluations: 123
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 248.62385229849343
Iteration: 2, Func. Count: 22, Neg. LLF: 206.89576649998185
Iteration: 3, Func. Count: 33, Neg. LLF: 135.86458201301252
Iteration: 4, Func. Count: 43, Neg. LLF: 136.3448745217213
Iteration: 5, Func. Count: 55, Neg. LLF: 134.76161366981069
Iteration: 6, Func. Count: 65, Neg. LLF: 137.03996122132992
Iteration: 7, Func. Count: 76, Neg. LLF: 134.65813110189157
Iteration: 8, Func. Count: 86, Neg. LLF: 134.6563835791763
Iteration: 9, Func. Count: 96, Neg. LLF: 134.6552175907827
Iteration: 10, Func. Count: 106, Neg. LLF: 134.65454737716345
Iteration: 11, Func. Count: 116, Neg. LLF: 134.65437536148374
Iteration: 12, Func. Count: 125, Neg. LLF: 134.6543753311687
Optimization terminated successfully (Exit mode 0)
Current function value: 134.65437536148374
Iterations: 12
Function evaluations: 125
Gradient evaluations: 12
Iteration: 1, Func. Count: 12, Neg. LLF: 243.77874637574564
Iteration: 2, Func. Count: 24, Neg. LLF: 205.06454657192256
Iteration: 3, Func. Count: 36, Neg. LLF: 136.12366175969393
Iteration: 4, Func. Count: 47, Neg. LLF: 136.64255946952161
Iteration: 5, Func. Count: 60, Neg. LLF: 159.65873734308636
Iteration: 6, Func. Count: 72, Neg. LLF: 134.94556460660434
Iteration: 7, Func. Count: 83, Neg. LLF: 134.8109971649695
Iteration: 8, Func. Count: 94, Neg. LLF: 134.67811117834663
Iteration: 9, Func. Count: 105, Neg. LLF: 134.66550869233447
Iteration: 10, Func. Count: 116, Neg. LLF: 134.65486781521938
Iteration: 11, Func. Count: 127, Neg. LLF: 134.6544793534544
Iteration: 12, Func. Count: 138, Neg. LLF: 134.6544303274172
Iteration: 13, Func. Count: 149, Neg. LLF: 134.65439463389188
Iteration: 14, Func. Count: 160, Neg. LLF: 134.65437545867968
Iteration: 15, Func. Count: 170, Neg. LLF: 134.65437578138946
Optimization terminated successfully (Exit mode 0)
Current function value: 134.65437545867968
Iterations: 15
Function evaluations: 170
Gradient evaluations: 15
Iteration: 1, Func. Count: 13, Neg. LLF: 243.3660210801195
Iteration: 2, Func. Count: 26, Neg. LLF: 212.93769643123454
Iteration: 3, Func. Count: 39, Neg. LLF: 136.24613821324198
Iteration: 4, Func. Count: 51, Neg. LLF: 136.14251102793278
Iteration: 5, Func. Count: 64, Neg. LLF: 210.77405150360747
Iteration: 6, Func. Count: 77, Neg. LLF: 134.9941386473298
Iteration: 7, Func. Count: 89, Neg. LLF: 134.7948423261581
Iteration: 8, Func. Count: 101, Neg. LLF: 134.67460484523065
Iteration: 9, Func. Count: 113, Neg. LLF: 134.66170336514847
Iteration: 10, Func. Count: 125, Neg. LLF: 134.65643183270947
Iteration: 11, Func. Count: 137, Neg. LLF: 134.655449508541
Iteration: 12, Func. Count: 149, Neg. LLF: 134.654389265878
Iteration: 13, Func. Count: 161, Neg. LLF: 134.65437514927402
Iteration: 14, Func. Count: 172, Neg. LLF: 134.6543753375498
Optimization terminated successfully (Exit mode 0)
Current function value: 134.65437514927402
Iterations: 14
Function evaluations: 172
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 146.73462290628873
Iteration: 2, Func. Count: 20, Neg. LLF: 147.4156348311233
Iteration: 3, Func. Count: 30, Neg. LLF: 142.3582770920206
Iteration: 4, Func. Count: 40, Neg. LLF: 140.64535082796206
Iteration: 5, Func. Count: 49, Neg. LLF: 140.44845127126158
Iteration: 6, Func. Count: 59, Neg. LLF: 172.2897420184761
Iteration: 7, Func. Count: 69, Neg. LLF: 308.0171634440178
Iteration: 8, Func. Count: 79, Neg. LLF: 340.84874709875004
Iteration: 9, Func. Count: 89, Neg. LLF: 284.58831601434974
Iteration: 10, Func. Count: 99, Neg. LLF: 606.175711832344
Iteration: 11, Func. Count: 109, Neg. LLF: 15169.7449882702
Iteration: 12, Func. Count: 119, Neg. LLF: 4751.17319907035
Iteration: 13, Func. Count: 129, Neg. LLF: 137.15575017895875
Iteration: 14, Func. Count: 139, Neg. LLF: 134.97549006192887
Iteration: 15, Func. Count: 148, Neg. LLF: 134.97371448029435
Iteration: 16, Func. Count: 158, Neg. LLF: 134.9287102730162
Iteration: 17, Func. Count: 167, Neg. LLF: 134.90682824885
Iteration: 18, Func. Count: 176, Neg. LLF: 134.9067962486118
Iteration: 19, Func. Count: 186, Neg. LLF: 134.90602356277736
Iteration: 20, Func. Count: 195, Neg. LLF: 134.90598490614818
Iteration: 21, Func. Count: 203, Neg. LLF: 134.90598487711677
Optimization terminated successfully (Exit mode 0)
Current function value: 134.90598490614818
Iterations: 21
Function evaluations: 203
Gradient evaluations: 21
Iteration: 1, Func. Count: 11, Neg. LLF: 259.3670818447709
Iteration: 2, Func. Count: 22, Neg. LLF: 238.0945061172475
Iteration: 3, Func. Count: 33, Neg. LLF: 141.60881631590829
Iteration: 4, Func. Count: 44, Neg. LLF: 135.1504397073172
Iteration: 5, Func. Count: 54, Neg. LLF: 225.46376801645889
Iteration: 6, Func. Count: 65, Neg. LLF: 134.5693203989028
Iteration: 7, Func. Count: 75, Neg. LLF: 134.46219608116658
Iteration: 8, Func. Count: 85, Neg. LLF: 134.42949266742846
Iteration: 9, Func. Count: 95, Neg. LLF: 134.4818990655766
Iteration: 10, Func. Count: 106, Neg. LLF: 134.40957948747314
Iteration: 11, Func. Count: 116, Neg. LLF: 134.40786296672601
Iteration: 12, Func. Count: 126, Neg. LLF: 134.40770546402936
Iteration: 13, Func. Count: 136, Neg. LLF: 134.407684844011
Iteration: 14, Func. Count: 146, Neg. LLF: 134.40768331861776
Iteration: 15, Func. Count: 155, Neg. LLF: 134.4076832308256
Optimization terminated successfully (Exit mode 0)
Current function value: 134.40768331861776
Iterations: 15
Function evaluations: 155
Gradient evaluations: 15
Iteration: 1, Func. Count: 12, Neg. LLF: 250.59749802266344
Iteration: 2, Func. Count: 24, Neg. LLF: 193.18567927172802
Iteration: 3, Func. Count: 36, Neg. LLF: 143.67507982842795
Iteration: 4, Func. Count: 48, Neg. LLF: 135.26072648385707
Iteration: 5, Func. Count: 59, Neg. LLF: 153.83846869345348
Iteration: 6, Func. Count: 71, Neg. LLF: 134.7694700041375
Iteration: 7, Func. Count: 82, Neg. LLF: 134.70225126499835
Iteration: 8, Func. Count: 94, Neg. LLF: 134.53457900705646
Iteration: 9, Func. Count: 106, Neg. LLF: 134.40866251762336
Iteration: 10, Func. Count: 117, Neg. LLF: 134.40776692773406
Iteration: 11, Func. Count: 128, Neg. LLF: 134.40770518720524
Iteration: 12, Func. Count: 139, Neg. LLF: 134.4076840983677
Iteration: 13, Func. Count: 150, Neg. LLF: 134.40768315293448
Optimization terminated successfully (Exit mode 0)
Current function value: 134.40768315293448
Iterations: 13
Function evaluations: 150
Gradient evaluations: 13
Iteration: 1, Func. Count: 13, Neg. LLF: 161.92375217494762
Iteration: 2, Func. Count: 26, Neg. LLF: 173.40638849625523
Iteration: 3, Func. Count: 39, Neg. LLF: 193.96880397139833
Iteration: 4, Func. Count: 52, Neg. LLF: 294.3414034957664
Iteration: 5, Func. Count: 65, Neg. LLF: 157.06321475031638
Iteration: 6, Func. Count: 78, Neg. LLF: 159.02984227427402
Iteration: 7, Func. Count: 91, Neg. LLF: 140.57632652914006
Iteration: 8, Func. Count: 104, Neg. LLF: 136.54957501441223
Iteration: 9, Func. Count: 116, Neg. LLF: 136.19675110671932
Iteration: 10, Func. Count: 128, Neg. LLF: 136.32543476332037
Iteration: 11, Func. Count: 141, Neg. LLF: 136.19492828139087
Iteration: 12, Func. Count: 154, Neg. LLF: 136.0699110975126
Iteration: 13, Func. Count: 166, Neg. LLF: 136.06815029350847
Iteration: 14, Func. Count: 178, Neg. LLF: 136.0672431717434
Iteration: 15, Func. Count: 190, Neg. LLF: 136.0671441782599
Iteration: 16, Func. Count: 202, Neg. LLF: 136.06711560524383
Iteration: 17, Func. Count: 214, Neg. LLF: 136.06711388421417
Iteration: 18, Func. Count: 225, Neg. LLF: 136.06711384662836
Optimization terminated successfully (Exit mode 0)
Current function value: 136.06711388421417
Iterations: 18
Function evaluations: 225
Gradient evaluations: 18
Iteration: 1, Func. Count: 14, Neg. LLF: 168.2658475990991
Iteration: 2, Func. Count: 28, Neg. LLF: 173.53169970764316
Iteration: 3, Func. Count: 42, Neg. LLF: 193.89619159811818
Iteration: 4, Func. Count: 56, Neg. LLF: 155.90436411327326
Iteration: 5, Func. Count: 70, Neg. LLF: 151.38359773085014
Iteration: 6, Func. Count: 84, Neg. LLF: 172.78472586994883
Iteration: 7, Func. Count: 98, Neg. LLF: 137.3599181039091
Iteration: 8, Func. Count: 111, Neg. LLF: 136.63048842491125
Iteration: 9, Func. Count: 124, Neg. LLF: 137.20992158591267
Iteration: 10, Func. Count: 138, Neg. LLF: 136.30872335898684
Iteration: 11, Func. Count: 151, Neg. LLF: 136.19309749090925
Iteration: 12, Func. Count: 164, Neg. LLF: 136.12749334295577
Iteration: 13, Func. Count: 177, Neg. LLF: 136.07613391676583
Iteration: 14, Func. Count: 190, Neg. LLF: 136.0696694471933
Iteration: 15, Func. Count: 203, Neg. LLF: 136.06749545667773
Iteration: 16, Func. Count: 216, Neg. LLF: 136.06725434803008
Iteration: 17, Func. Count: 229, Neg. LLF: 136.06711448677052
Iteration: 18, Func. Count: 242, Neg. LLF: 136.06711383248813
Optimization terminated successfully (Exit mode 0)
Current function value: 136.06711383248813
Iterations: 18
Function evaluations: 242
Gradient evaluations: 18
Iteration: 1, Func. Count: 11, Neg. LLF: 150.98848154809346
Iteration: 2, Func. Count: 22, Neg. LLF: 146.97157180807346
Iteration: 3, Func. Count: 34, Neg. LLF: 143.3687549721662
Iteration: 4, Func. Count: 45, Neg. LLF: 141.14849428661643
Iteration: 5, Func. Count: 55, Neg. LLF: 700.6406719915377
Iteration: 6, Func. Count: 66, Neg. LLF: 194.53836589083338
Iteration: 7, Func. Count: 77, Neg. LLF: 189.04005180464668
Iteration: 8, Func. Count: 88, Neg. LLF: 227.95560266284028
Iteration: 9, Func. Count: 99, Neg. LLF: 217.04738624616652
Iteration: 10, Func. Count: 110, Neg. LLF: 195.53742328596795
Iteration: 11, Func. Count: 121, Neg. LLF: 176.30125218067545
Iteration: 12, Func. Count: 132, Neg. LLF: 171.70551305806583
Iteration: 13, Func. Count: 143, Neg. LLF: 161.24877570676418
Iteration: 14, Func. Count: 154, Neg. LLF: 163.91247352331695
Iteration: 15, Func. Count: 165, Neg. LLF: 137.77425907142782
Iteration: 16, Func. Count: 176, Neg. LLF: 136.1054934368736
Iteration: 17, Func. Count: 186, Neg. LLF: 135.90649481915003
Iteration: 18, Func. Count: 196, Neg. LLF: 135.14713203190186
Iteration: 19, Func. Count: 206, Neg. LLF: 134.9520130374947
Iteration: 20, Func. Count: 216, Neg. LLF: 135.03949308206663
Iteration: 21, Func. Count: 227, Neg. LLF: 134.90634940283235
Iteration: 22, Func. Count: 237, Neg. LLF: 134.9059890125867
Iteration: 23, Func. Count: 247, Neg. LLF: 134.9059850625729
Iteration: 24, Func. Count: 256, Neg. LLF: 134.9059850855801
Optimization terminated successfully (Exit mode 0)
Current function value: 134.9059850625729
Iterations: 24
Function evaluations: 256
Gradient evaluations: 24
Iteration: 1, Func. Count: 12, Neg. LLF: 250.99098008753393
Iteration: 2, Func. Count: 24, Neg. LLF: 205.9640518133807
Iteration: 3, Func. Count: 36, Neg. LLF: 140.483849584855
Iteration: 4, Func. Count: 47, Neg. LLF: 135.43642288696404
Iteration: 5, Func. Count: 58, Neg. LLF: 142.53040214178648
Iteration: 6, Func. Count: 72, Neg. LLF: 135.28497287530644
Iteration: 7, Func. Count: 84, Neg. LLF: 134.56393985322248
Iteration: 8, Func. Count: 96, Neg. LLF: 134.43320576741905
Iteration: 9, Func. Count: 107, Neg. LLF: 134.41487048828023
Iteration: 10, Func. Count: 118, Neg. LLF: 134.4106109530737
Iteration: 11, Func. Count: 129, Neg. LLF: 134.40783803632465
Iteration: 12, Func. Count: 140, Neg. LLF: 134.40768701269974
Iteration: 13, Func. Count: 151, Neg. LLF: 134.4076832233083
Iteration: 14, Func. Count: 161, Neg. LLF: 134.40768313526664
Optimization terminated successfully (Exit mode 0)
Current function value: 134.4076832233083
Iterations: 14
Function evaluations: 161
Gradient evaluations: 14
Iteration: 1, Func. Count: 13, Neg. LLF: 244.1123928250468
Iteration: 2, Func. Count: 26, Neg. LLF: 174.46262277245668
Iteration: 3, Func. Count: 39, Neg. LLF: 141.18997827332052
Iteration: 4, Func. Count: 52, Neg. LLF: 136.33325641874433
Iteration: 5, Func. Count: 64, Neg. LLF: 147.68874285662534
Iteration: 6, Func. Count: 78, Neg. LLF: 163.15355593842776
Iteration: 7, Func. Count: 91, Neg. LLF: 134.667105024809
Iteration: 8, Func. Count: 103, Neg. LLF: 134.88906145985828
Iteration: 9, Func. Count: 116, Neg. LLF: 134.4281684333462
Iteration: 10, Func. Count: 129, Neg. LLF: 134.40871768531818
Iteration: 11, Func. Count: 141, Neg. LLF: 134.40782961054703
Iteration: 12, Func. Count: 153, Neg. LLF: 134.40770095543124
Iteration: 13, Func. Count: 165, Neg. LLF: 134.40768324572363
Iteration: 14, Func. Count: 176, Neg. LLF: 134.4076832402945
Optimization terminated successfully (Exit mode 0)
Current function value: 134.40768324572363
Iterations: 14
Function evaluations: 176
Gradient evaluations: 14
Iteration: 1, Func. Count: 14, Neg. LLF: 144.81123715153578
Iteration: 2, Func. Count: 28, Neg. LLF: 152.09197409771372
Iteration: 3, Func. Count: 42, Neg. LLF: 151.3697283525332
Iteration: 4, Func. Count: 56, Neg. LLF: 138.81231523594656
Iteration: 5, Func. Count: 69, Neg. LLF: 525191.9058880137
Iteration: 6, Func. Count: 83, Neg. LLF: 154.34163650617344
Iteration: 7, Func. Count: 98, Neg. LLF: 153.41467635430905
Iteration: 8, Func. Count: 112, Neg. LLF: 156.82989097403984
Iteration: 9, Func. Count: 126, Neg. LLF: 148.20447906553002
Iteration: 10, Func. Count: 140, Neg. LLF: 146.2799574734996
Iteration: 11, Func. Count: 154, Neg. LLF: 136.224708052165
Iteration: 12, Func. Count: 167, Neg. LLF: 136.11015564250863
Iteration: 13, Func. Count: 180, Neg. LLF: 136.04288677657996
Iteration: 14, Func. Count: 193, Neg. LLF: 136.01893539416528
Iteration: 15, Func. Count: 206, Neg. LLF: 136.01213141574118
Iteration: 16, Func. Count: 219, Neg. LLF: 136.01006188747635
Iteration: 17, Func. Count: 232, Neg. LLF: 136.0089409666634
Iteration: 18, Func. Count: 245, Neg. LLF: 136.0088079822701
Iteration: 19, Func. Count: 258, Neg. LLF: 136.008760359931
Iteration: 20, Func. Count: 271, Neg. LLF: 136.00875937325216
Optimization terminated successfully (Exit mode 0)
Current function value: 136.00875937325216
Iterations: 20
Function evaluations: 271
Gradient evaluations: 20
Iteration: 1, Func. Count: 15, Neg. LLF: 145.45609467546922
Iteration: 2, Func. Count: 30, Neg. LLF: 151.66887740190535
Iteration: 3, Func. Count: 45, Neg. LLF: 151.14225757228633
Iteration: 4, Func. Count: 60, Neg. LLF: 138.62476884055022
Iteration: 5, Func. Count: 74, Neg. LLF: 644713.4533708165
Iteration: 6, Func. Count: 89, Neg. LLF: 138.05933813623525
Iteration: 7, Func. Count: 104, Neg. LLF: 191.22790439638942
Iteration: 8, Func. Count: 119, Neg. LLF: 166.325052674369
Iteration: 9, Func. Count: 134, Neg. LLF: 137.94348033766894
Iteration: 10, Func. Count: 149, Neg. LLF: 137.63472891304926
Iteration: 11, Func. Count: 164, Neg. LLF: 139.540967380937
Iteration: 12, Func. Count: 179, Neg. LLF: 136.12986297417248
Iteration: 13, Func. Count: 193, Neg. LLF: 136.87286056789935
Iteration: 14, Func. Count: 208, Neg. LLF: 136.03734641745987
Iteration: 15, Func. Count: 222, Neg. LLF: 136.02173417834027
Iteration: 16, Func. Count: 236, Neg. LLF: 136.01344930889994
Iteration: 17, Func. Count: 250, Neg. LLF: 136.0090964889059
Iteration: 18, Func. Count: 264, Neg. LLF: 136.0087662568775
Iteration: 19, Func. Count: 278, Neg. LLF: 136.00875964519489
Iteration: 20, Func. Count: 291, Neg. LLF: 136.0087597139346
Optimization terminated successfully (Exit mode 0)
Current function value: 136.00875964519489
Iterations: 20
Function evaluations: 291
Gradient evaluations: 20
Iteration: 1, Func. Count: 12, Neg. LLF: 150.15458333413693
Iteration: 2, Func. Count: 24, Neg. LLF: 146.1129194038331
Iteration: 3, Func. Count: 37, Neg. LLF: 144.639925642241
Iteration: 4, Func. Count: 49, Neg. LLF: 140.71890319285458
Iteration: 5, Func. Count: 60, Neg. LLF: 140.69632238986202
Iteration: 6, Func. Count: 72, Neg. LLF: 143.57477782368215
Iteration: 7, Func. Count: 84, Neg. LLF: 1707.9108463484856
Iteration: 8, Func. Count: 96, Neg. LLF: 4216.353381947829
Iteration: 9, Func. Count: 108, Neg. LLF: 27837.224945685717
Iteration: 10, Func. Count: 120, Neg. LLF: 33817.6987487413
Iteration: 11, Func. Count: 132, Neg. LLF: 26007.64407975691
Iteration: 12, Func. Count: 144, Neg. LLF: 485601.5323039545
Iteration: 13, Func. Count: 156, Neg. LLF: 32553.55503656204
Iteration: 14, Func. Count: 168, Neg. LLF: 518283.8082096074
Iteration: 15, Func. Count: 180, Neg. LLF: 40416.01064129183
Iteration: 16, Func. Count: 192, Neg. LLF: 552012.2820021486
Iteration: 17, Func. Count: 204, Neg. LLF: 39581.18048674631
Iteration: 18, Func. Count: 216, Neg. LLF: 158.54444160776728
Iteration: 19, Func. Count: 228, Neg. LLF: 140.22235190984122
Iteration: 20, Func. Count: 240, Neg. LLF: 133.82197898952793
Iteration: 21, Func. Count: 252, Neg. LLF: 132.68520573011574
Iteration: 22, Func. Count: 263, Neg. LLF: 132.40094319058872
Iteration: 23, Func. Count: 274, Neg. LLF: 132.2966105025648
Iteration: 24, Func. Count: 285, Neg. LLF: 132.26069635592367
Iteration: 25, Func. Count: 296, Neg. LLF: 132.24715120341585
Iteration: 26, Func. Count: 307, Neg. LLF: 132.23952060549894
Iteration: 27, Func. Count: 318, Neg. LLF: 132.23767446741437
Iteration: 28, Func. Count: 329, Neg. LLF: 132.23745696707772
Iteration: 29, Func. Count: 340, Neg. LLF: 132.2374370813962
Iteration: 30, Func. Count: 350, Neg. LLF: 132.23743695903894
Optimization terminated successfully (Exit mode 0)
Current function value: 132.2374370813962
Iterations: 30
Function evaluations: 350
Gradient evaluations: 30
Iteration: 1, Func. Count: 13, Neg. LLF: 246.7981274239671
Iteration: 2, Func. Count: 26, Neg. LLF: 185.56829738503706
Iteration: 3, Func. Count: 39, Neg. LLF: 139.29822909944204
Iteration: 4, Func. Count: 51, Neg. LLF: 142.27424142357972
Iteration: 5, Func. Count: 64, Neg. LLF: 142.53158370036914
Iteration: 6, Func. Count: 79, Neg. LLF: 148.68986617207875
Iteration: 7, Func. Count: 92, Neg. LLF: 135.45881474875767
Iteration: 8, Func. Count: 105, Neg. LLF: 273.58631652682345
Iteration: 9, Func. Count: 118, Neg. LLF: 136.04275447461407
Iteration: 10, Func. Count: 131, Neg. LLF: 131.9901922589799
Iteration: 11, Func. Count: 144, Neg. LLF: 131.75503029252607
Iteration: 12, Func. Count: 156, Neg. LLF: 131.73403160487769
Iteration: 13, Func. Count: 168, Neg. LLF: 131.7300058959524
Iteration: 14, Func. Count: 180, Neg. LLF: 131.72944123927724
Iteration: 15, Func. Count: 192, Neg. LLF: 131.72907406860645
Iteration: 16, Func. Count: 204, Neg. LLF: 131.72886340150333
Iteration: 17, Func. Count: 216, Neg. LLF: 131.72883125892938
Iteration: 18, Func. Count: 228, Neg. LLF: 131.72882911148986
Iteration: 19, Func. Count: 239, Neg. LLF: 131.7288290450692
Optimization terminated successfully (Exit mode 0)
Current function value: 131.72882911148986
Iterations: 19
Function evaluations: 239
Gradient evaluations: 19
Iteration: 1, Func. Count: 14, Neg. LLF: 239.29259922268906
Iteration: 2, Func. Count: 28, Neg. LLF: 196.3276268273576
Iteration: 3, Func. Count: 42, Neg. LLF: 174.40681476947793
Iteration: 4, Func. Count: 56, Neg. LLF: 138.333638582124
Iteration: 5, Func. Count: 69, Neg. LLF: 136.26951738433564
Iteration: 6, Func. Count: 84, Neg. LLF: 158.11663216736125
Iteration: 7, Func. Count: 99, Neg. LLF: 138.35499036854213
Iteration: 8, Func. Count: 113, Neg. LLF: 133.58833378940992
Iteration: 9, Func. Count: 126, Neg. LLF: 133.12879585890641
Iteration: 10, Func. Count: 140, Neg. LLF: 132.37336058242627
Iteration: 11, Func. Count: 153, Neg. LLF: 132.26925195686238
Iteration: 12, Func. Count: 167, Neg. LLF: 133.01782884210039
Iteration: 13, Func. Count: 182, Neg. LLF: 138.86851574078025
Iteration: 14, Func. Count: 196, Neg. LLF: 131.86162772067777
Iteration: 15, Func. Count: 209, Neg. LLF: 131.78322824083844
Iteration: 16, Func. Count: 222, Neg. LLF: 131.721770464441
Iteration: 17, Func. Count: 235, Neg. LLF: 131.71906251886054
Iteration: 18, Func. Count: 249, Neg. LLF: 131.63735739319173
Iteration: 19, Func. Count: 262, Neg. LLF: 131.6352918881231
Iteration: 20, Func. Count: 275, Neg. LLF: 131.63470427500152
Iteration: 21, Func. Count: 288, Neg. LLF: 131.63466539397436
Iteration: 22, Func. Count: 301, Neg. LLF: 131.63466260825905
Iteration: 23, Func. Count: 313, Neg. LLF: 131.63466252562327
Optimization terminated successfully (Exit mode 0)
Current function value: 131.63466260825905
Iterations: 23
Function evaluations: 313
Gradient evaluations: 23
Iteration: 1, Func. Count: 15, Neg. LLF: 144.50465196926035
Iteration: 2, Func. Count: 30, Neg. LLF: 149.31168601107316
Iteration: 3, Func. Count: 45, Neg. LLF: 148.69090403709674
Iteration: 4, Func. Count: 60, Neg. LLF: 135.87740563909097
Iteration: 5, Func. Count: 74, Neg. LLF: 3028233.9265076877
Iteration: 6, Func. Count: 89, Neg. LLF: 235.82980074321395
Iteration: 7, Func. Count: 104, Neg. LLF: 2925031.7623733548
Iteration: 8, Func. Count: 119, Neg. LLF: 304.86275499074526
Iteration: 9, Func. Count: 134, Neg. LLF: 2900186.3942894167
Iteration: 10, Func. Count: 149, Neg. LLF: 385.09065950051144
Iteration: 11, Func. Count: 164, Neg. LLF: 150.13823546495982
Iteration: 12, Func. Count: 179, Neg. LLF: 387.0162892823323
Iteration: 13, Func. Count: 194, Neg. LLF: 144.2586838000262
Iteration: 14, Func. Count: 209, Neg. LLF: 1291.5866388536704
Iteration: 15, Func. Count: 224, Neg. LLF: 142.4569005097941
Iteration: 16, Func. Count: 239, Neg. LLF: 174.98131490421125
Iteration: 17, Func. Count: 254, Neg. LLF: 136.20172938633635
Iteration: 18, Func. Count: 269, Neg. LLF: 131.78775515340348
Iteration: 19, Func. Count: 284, Neg. LLF: 131.70144709278858
Iteration: 20, Func. Count: 299, Neg. LLF: 131.63541926364493
Iteration: 21, Func. Count: 313, Neg. LLF: 131.6347321215213
Iteration: 22, Func. Count: 327, Neg. LLF: 131.63466898878707
Iteration: 23, Func. Count: 341, Neg. LLF: 131.63466231656508
Iteration: 24, Func. Count: 354, Neg. LLF: 131.6346629798418
Optimization terminated successfully (Exit mode 0)
Current function value: 131.63466231656508
Iterations: 24
Function evaluations: 354
Gradient evaluations: 24
Iteration: 1, Func. Count: 16, Neg. LLF: 144.89383715795014
Iteration: 2, Func. Count: 32, Neg. LLF: 145.614005281433
Iteration: 3, Func. Count: 48, Neg. LLF: 148.48880649065597
Iteration: 4, Func. Count: 64, Neg. LLF: 136.65375847657702
Iteration: 5, Func. Count: 79, Neg. LLF: 151.06335554747727
Iteration: 6, Func. Count: 95, Neg. LLF: 530374.502707263
Iteration: 7, Func. Count: 111, Neg. LLF: 408067.9889778354
Iteration: 8, Func. Count: 127, Neg. LLF: 156.89630059208682
Iteration: 9, Func. Count: 143, Neg. LLF: 265.5480461378431
Iteration: 10, Func. Count: 159, Neg. LLF: 269.75861641912365
Iteration: 11, Func. Count: 175, Neg. LLF: 157.57916436079861
Iteration: 12, Func. Count: 191, Neg. LLF: 352.77394322856026
Iteration: 13, Func. Count: 207, Neg. LLF: 142.75272757104756
Iteration: 14, Func. Count: 223, Neg. LLF: 269.9096242454941
Iteration: 15, Func. Count: 239, Neg. LLF: 141.5492866615632
Iteration: 16, Func. Count: 255, Neg. LLF: 134.62280307380064
Iteration: 17, Func. Count: 271, Neg. LLF: 155.2728307302013
Iteration: 18, Func. Count: 287, Neg. LLF: 132.1393987171449
Iteration: 19, Func. Count: 303, Neg. LLF: 133.3304354280315
Iteration: 20, Func. Count: 319, Neg. LLF: 131.73395022735858
Iteration: 21, Func. Count: 335, Neg. LLF: 131.63498159255832
Iteration: 22, Func. Count: 350, Neg. LLF: 131.63472299564947
Iteration: 23, Func. Count: 365, Neg. LLF: 131.6346861407458
Iteration: 24, Func. Count: 380, Neg. LLF: 131.63466241715054
Iteration: 25, Func. Count: 394, Neg. LLF: 131.63466272083969
Optimization terminated successfully (Exit mode 0)
Current function value: 131.63466241715054
Iterations: 25
Function evaluations: 394
Gradient evaluations: 25
Iteration: 1, Func. Count: 7, Neg. LLF: 153.3147340050146
Iteration: 2, Func. Count: 14, Neg. LLF: 144.97108612902346
Iteration: 3, Func. Count: 22, Neg. LLF: 160.15069100252433
Iteration: 4, Func. Count: 29, Neg. LLF: 141.39365653854645
Iteration: 5, Func. Count: 35, Neg. LLF: 139.60405363738283
Iteration: 6, Func. Count: 41, Neg. LLF: 229477.1913165986
Iteration: 7, Func. Count: 48, Neg. LLF: 43919.35642819674
Iteration: 8, Func. Count: 55, Neg. LLF: 50856.59853243602
Iteration: 9, Func. Count: 62, Neg. LLF: 42230.592074167325
Iteration: 10, Func. Count: 69, Neg. LLF: 41761.11896964969
Iteration: 11, Func. Count: 76, Neg. LLF: 33086.376043270764
Iteration: 12, Func. Count: 83, Neg. LLF: 138.5709385999976
Iteration: 13, Func. Count: 90, Neg. LLF: 136.76939961653684
Iteration: 14, Func. Count: 96, Neg. LLF: 136.40191051965948
Iteration: 15, Func. Count: 102, Neg. LLF: 136.36452034940348
Iteration: 16, Func. Count: 108, Neg. LLF: 136.34239889438973
Iteration: 17, Func. Count: 114, Neg. LLF: 136.3376182791768
Iteration: 18, Func. Count: 120, Neg. LLF: 136.33668880507977
Iteration: 19, Func. Count: 126, Neg. LLF: 136.33645186416928
Iteration: 20, Func. Count: 132, Neg. LLF: 136.33644786258685
Iteration: 21, Func. Count: 137, Neg. LLF: 136.33644784276052
Optimization terminated successfully (Exit mode 0)
Current function value: 136.33644786258685
Iterations: 21
Function evaluations: 137
Gradient evaluations: 21
Iteration: 1, Func. Count: 5, Neg. LLF: 159.03720016856343
Iteration: 2, Func. Count: 10, Neg. LLF: 159.66272101403231
Iteration: 3, Func. Count: 15, Neg. LLF: 157.33219037066218
Iteration: 4, Func. Count: 19, Neg. LLF: 157.02178775485226
Iteration: 5, Func. Count: 23, Neg. LLF: 156.89360543952176
Iteration: 6, Func. Count: 27, Neg. LLF: 156.87868027465473
Iteration: 7, Func. Count: 31, Neg. LLF: 156.87683448658302
Iteration: 8, Func. Count: 35, Neg. LLF: 156.87563739053363
Iteration: 9, Func. Count: 39, Neg. LLF: 156.87429771139517
Iteration: 10, Func. Count: 43, Neg. LLF: 156.873820709313
Iteration: 11, Func. Count: 47, Neg. LLF: 156.8737324179077
Iteration: 12, Func. Count: 51, Neg. LLF: 156.8737298263468
Iteration: 13, Func. Count: 54, Neg. LLF: 156.87372982634335
Optimization terminated successfully (Exit mode 0)
Current function value: 156.8737298263468
Iterations: 13
Function evaluations: 54
Gradient evaluations: 13
Iteration: 1, Func. Count: 6, Neg. LLF: 1115.542645192306
Iteration: 2, Func. Count: 12, Neg. LLF: 168.42463840073856
Iteration: 3, Func. Count: 19, Neg. LLF: 146.9714865905223
Iteration: 4, Func. Count: 24, Neg. LLF: 146.88197181097098
Iteration: 5, Func. Count: 29, Neg. LLF: 146.86713233056426
Iteration: 6, Func. Count: 34, Neg. LLF: 146.86243858372595
Iteration: 7, Func. Count: 39, Neg. LLF: 146.86219347905072
Iteration: 8, Func. Count: 44, Neg. LLF: 146.86218413805562
Iteration: 9, Func. Count: 48, Neg. LLF: 146.86218398090446
Optimization terminated successfully (Exit mode 0)
Current function value: 146.86218413805562
Iterations: 9
Function evaluations: 48
Gradient evaluations: 9
Iteration: 1, Func. Count: 7, Neg. LLF: 423.7588610625247
Iteration: 2, Func. Count: 14, Neg. LLF: 155.73763912232545
Iteration: 3, Func. Count: 21, Neg. LLF: 146.89336610070902
Iteration: 4, Func. Count: 27, Neg. LLF: 147.0602013592489
Iteration: 5, Func. Count: 34, Neg. LLF: 146.86415416785735
Iteration: 6, Func. Count: 40, Neg. LLF: 146.86256120161744
Iteration: 7, Func. Count: 46, Neg. LLF: 146.8623307596776
Iteration: 8, Func. Count: 52, Neg. LLF: 146.86218674981748
Iteration: 9, Func. Count: 58, Neg. LLF: 146.86218389238098
Iteration: 10, Func. Count: 63, Neg. LLF: 146.86218373937302
Optimization terminated successfully (Exit mode 0)
Current function value: 146.86218389238098
Iterations: 10
Function evaluations: 63
Gradient evaluations: 10
Iteration: 1, Func. Count: 8, Neg. LLF: 308.6637409160702
Iteration: 2, Func. Count: 16, Neg. LLF: 148.9290027155358
Iteration: 3, Func. Count: 24, Neg. LLF: 150.17797660347253
Iteration: 4, Func. Count: 32, Neg. LLF: 147.1172858452109
Iteration: 5, Func. Count: 40, Neg. LLF: 146.7362154276572
Iteration: 6, Func. Count: 47, Neg. LLF: 146.71604797799293
Iteration: 7, Func. Count: 54, Neg. LLF: 146.71261703227827
Iteration: 8, Func. Count: 61, Neg. LLF: 146.7112247023268
Iteration: 9, Func. Count: 68, Neg. LLF: 146.71017387947708
Iteration: 10, Func. Count: 75, Neg. LLF: 146.71013364730427
Iteration: 11, Func. Count: 82, Neg. LLF: 146.7101323946456
Iteration: 12, Func. Count: 88, Neg. LLF: 146.71013225247742
Optimization terminated successfully (Exit mode 0)
Current function value: 146.7101323946456
Iterations: 12
Function evaluations: 88
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 289.0012263242749
Iteration: 2, Func. Count: 18, Neg. LLF: 158.52480776018825
Iteration: 3, Func. Count: 27, Neg. LLF: 148.50155941160116
Iteration: 4, Func. Count: 36, Neg. LLF: 146.1029938786792
Iteration: 5, Func. Count: 44, Neg. LLF: 145.86650846079226
Iteration: 6, Func. Count: 52, Neg. LLF: 145.46350272913793
Iteration: 7, Func. Count: 60, Neg. LLF: 145.41465340036711
Iteration: 8, Func. Count: 68, Neg. LLF: 145.4737555462841
Iteration: 9, Func. Count: 77, Neg. LLF: 145.36559377839987
Iteration: 10, Func. Count: 85, Neg. LLF: 145.364634680744
Iteration: 11, Func. Count: 93, Neg. LLF: 145.36461959868237
Iteration: 12, Func. Count: 101, Neg. LLF: 145.3646175279006
Iteration: 13, Func. Count: 108, Neg. LLF: 145.3646173743241
Optimization terminated successfully (Exit mode 0)
Current function value: 145.3646175279006
Iterations: 13
Function evaluations: 108
Gradient evaluations: 13
Iteration: 1, Func. Count: 6, Neg. LLF: 157.07253971428034
Iteration: 2, Func. Count: 12, Neg. LLF: 184.26410693935122
Iteration: 3, Func. Count: 18, Neg. LLF: 152.30822763372942
Iteration: 4, Func. Count: 23, Neg. LLF: 152.10728655602722
Iteration: 5, Func. Count: 28, Neg. LLF: 151.71590044468306
Iteration: 6, Func. Count: 33, Neg. LLF: 151.38916493884136
Iteration: 7, Func. Count: 38, Neg. LLF: 151.30305415352203
Iteration: 8, Func. Count: 43, Neg. LLF: 151.30106530555747
Iteration: 9, Func. Count: 48, Neg. LLF: 151.3009010389517
Iteration: 10, Func. Count: 53, Neg. LLF: 151.30079842759326
Iteration: 11, Func. Count: 58, Neg. LLF: 151.30066781682504
Iteration: 12, Func. Count: 63, Neg. LLF: 151.30054059643197
Iteration: 13, Func. Count: 68, Neg. LLF: 151.3005106406975
Iteration: 14, Func. Count: 73, Neg. LLF: 151.30050776517263
Iteration: 15, Func. Count: 77, Neg. LLF: 151.30050776518033
Optimization terminated successfully (Exit mode 0)
Current function value: 151.30050776517263
Iterations: 15
Function evaluations: 77
Gradient evaluations: 15
Iteration: 1, Func. Count: 7, Neg. LLF: 598.318812644546
Iteration: 2, Func. Count: 14, Neg. LLF: 168.68974125863122
Iteration: 3, Func. Count: 22, Neg. LLF: 147.21839014053617
Iteration: 4, Func. Count: 29, Neg. LLF: 146.82323301895335
Iteration: 5, Func. Count: 35, Neg. LLF: 147.1415917699558
Iteration: 6, Func. Count: 42, Neg. LLF: 146.80527328683354
Iteration: 7, Func. Count: 48, Neg. LLF: 146.80302825849012
Iteration: 8, Func. Count: 54, Neg. LLF: 146.80004844141203
Iteration: 9, Func. Count: 60, Neg. LLF: 146.79818471653422
Iteration: 10, Func. Count: 66, Neg. LLF: 146.79787421277155
Iteration: 11, Func. Count: 72, Neg. LLF: 146.79786640882529
Iteration: 12, Func. Count: 77, Neg. LLF: 146.79786630666254
Optimization terminated successfully (Exit mode 0)
Current function value: 146.79786640882529
Iterations: 12
Function evaluations: 77
Gradient evaluations: 12
Iteration: 1, Func. Count: 8, Neg. LLF: 380.4399145030875
Iteration: 2, Func. Count: 16, Neg. LLF: 149.701235681801
Iteration: 3, Func. Count: 24, Neg. LLF: 152.06771918462312
Iteration: 4, Func. Count: 32, Neg. LLF: 146.5743935372809
Iteration: 5, Func. Count: 39, Neg. LLF: 147.4818403008106
Iteration: 6, Func. Count: 47, Neg. LLF: 146.28015680643009
Iteration: 7, Func. Count: 54, Neg. LLF: 148.2574202922362
Iteration: 8, Func. Count: 62, Neg. LLF: 146.01111388669185
Iteration: 9, Func. Count: 69, Neg. LLF: 145.9445412698912
Iteration: 10, Func. Count: 76, Neg. LLF: 145.9340077431858
Iteration: 11, Func. Count: 83, Neg. LLF: 145.92883015287373
Iteration: 12, Func. Count: 90, Neg. LLF: 145.92669598813328
Iteration: 13, Func. Count: 97, Neg. LLF: 145.92617122022193
Iteration: 14, Func. Count: 104, Neg. LLF: 145.92615356305282
Iteration: 15, Func. Count: 111, Neg. LLF: 145.92615281154607
Optimization terminated successfully (Exit mode 0)
Current function value: 145.92615281154607
Iterations: 15
Function evaluations: 111
Gradient evaluations: 15
Iteration: 1, Func. Count: 9, Neg. LLF: 321.1538170021932
Iteration: 2, Func. Count: 18, Neg. LLF: 1458.9045945844755
Iteration: 3, Func. Count: 27, Neg. LLF: 150.64355312901577
Iteration: 4, Func. Count: 36, Neg. LLF: 146.4235015249064
Iteration: 5, Func. Count: 45, Neg. LLF: 145.05900304310543
Iteration: 6, Func. Count: 53, Neg. LLF: 145.7492608609213
Iteration: 7, Func. Count: 62, Neg. LLF: 144.5896228544141
Iteration: 8, Func. Count: 71, Neg. LLF: 144.36180482377767
Iteration: 9, Func. Count: 79, Neg. LLF: 144.303249558584
Iteration: 10, Func. Count: 87, Neg. LLF: 144.30251024916154
Iteration: 11, Func. Count: 95, Neg. LLF: 144.30245314662056
Iteration: 12, Func. Count: 103, Neg. LLF: 144.30245190486053
Iteration: 13, Func. Count: 110, Neg. LLF: 144.30245180400593
Optimization terminated successfully (Exit mode 0)
Current function value: 144.30245190486053
Iterations: 13
Function evaluations: 110
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 297.6174098755993
Iteration: 2, Func. Count: 20, Neg. LLF: 14286689.640052935
Iteration: 3, Func. Count: 30, Neg. LLF: 147.66817671910138
Iteration: 4, Func. Count: 40, Neg. LLF: 145.37227887771866
Iteration: 5, Func. Count: 50, Neg. LLF: 144.44586492376376
Iteration: 6, Func. Count: 59, Neg. LLF: 152.65101335728923
Iteration: 7, Func. Count: 69, Neg. LLF: 144.15191510691366
Iteration: 8, Func. Count: 78, Neg. LLF: 144.47321704790716
Iteration: 9, Func. Count: 88, Neg. LLF: 144.051538403867
Iteration: 10, Func. Count: 97, Neg. LLF: 144.0308080952234
Iteration: 11, Func. Count: 106, Neg. LLF: 144.03052628472943
Iteration: 12, Func. Count: 115, Neg. LLF: 144.03050939594038
Iteration: 13, Func. Count: 124, Neg. LLF: 144.03050661874627
Iteration: 14, Func. Count: 132, Neg. LLF: 144.03050652200818
Optimization terminated successfully (Exit mode 0)
Current function value: 144.03050661874627
Iterations: 14
Function evaluations: 132
Gradient evaluations: 14
Iteration: 1, Func. Count: 7, Neg. LLF: 162.5253212478799
Iteration: 2, Func. Count: 14, Neg. LLF: 161.156764003621
Iteration: 3, Func. Count: 21, Neg. LLF: 161.36916865055127
Iteration: 4, Func. Count: 28, Neg. LLF: 152.39104269329064
Iteration: 5, Func. Count: 35, Neg. LLF: 151.86329603456267
Iteration: 6, Func. Count: 41, Neg. LLF: 151.03220827801667
Iteration: 7, Func. Count: 47, Neg. LLF: 150.45202095369763
Iteration: 8, Func. Count: 53, Neg. LLF: 150.0256725372348
Iteration: 9, Func. Count: 59, Neg. LLF: 149.92242152269108
Iteration: 10, Func. Count: 65, Neg. LLF: 149.90615352731723
Iteration: 11, Func. Count: 71, Neg. LLF: 149.90097373438294
Iteration: 12, Func. Count: 77, Neg. LLF: 149.9003195773691
Iteration: 13, Func. Count: 83, Neg. LLF: 149.8999802907739
Iteration: 14, Func. Count: 89, Neg. LLF: 149.89994397733116
Iteration: 15, Func. Count: 95, Neg. LLF: 149.89994283009727
Iteration: 16, Func. Count: 100, Neg. LLF: 149.899942821366
Optimization terminated successfully (Exit mode 0)
Current function value: 149.89994283009727
Iterations: 16
Function evaluations: 100
Gradient evaluations: 16
Iteration: 1, Func. Count: 8, Neg. LLF: 355.1746367503377
Iteration: 2, Func. Count: 16, Neg. LLF: 166.44668471708502
Iteration: 3, Func. Count: 25, Neg. LLF: 147.0346869091322
Iteration: 4, Func. Count: 32, Neg. LLF: 146.8237736011522
Iteration: 5, Func. Count: 39, Neg. LLF: 146.84489504587134
Iteration: 6, Func. Count: 47, Neg. LLF: 146.81112908492045
Iteration: 7, Func. Count: 54, Neg. LLF: 146.80092679306483
Iteration: 8, Func. Count: 61, Neg. LLF: 146.7987248766267
Iteration: 9, Func. Count: 68, Neg. LLF: 146.7979626811199
Iteration: 10, Func. Count: 75, Neg. LLF: 146.79787569495394
Iteration: 11, Func. Count: 82, Neg. LLF: 146.7978660485408
Iteration: 12, Func. Count: 88, Neg. LLF: 146.79786594666515
Optimization terminated successfully (Exit mode 0)
Current function value: 146.7978660485408
Iterations: 12
Function evaluations: 88
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 290.32634085648255
Iteration: 2, Func. Count: 18, Neg. LLF: 147.48214129463094
Iteration: 3, Func. Count: 27, Neg. LLF: 156.68402578723675
Iteration: 4, Func. Count: 36, Neg. LLF: 148.01209402481265
Iteration: 5, Func. Count: 45, Neg. LLF: 146.58414607036084
Iteration: 6, Func. Count: 54, Neg. LLF: 146.30247674721647
Iteration: 7, Func. Count: 62, Neg. LLF: 146.1170592706187
Iteration: 8, Func. Count: 70, Neg. LLF: 146.13055890415322
Iteration: 9, Func. Count: 79, Neg. LLF: 146.03547980050325
Iteration: 10, Func. Count: 88, Neg. LLF: 145.92963149057977
Iteration: 11, Func. Count: 96, Neg. LLF: 145.92684361205212
Iteration: 12, Func. Count: 104, Neg. LLF: 145.92641770412754
Iteration: 13, Func. Count: 112, Neg. LLF: 145.92616535060247
Iteration: 14, Func. Count: 120, Neg. LLF: 145.92615597418276
Iteration: 15, Func. Count: 128, Neg. LLF: 145.92615305426264
Iteration: 16, Func. Count: 135, Neg. LLF: 145.92615296932158
Optimization terminated successfully (Exit mode 0)
Current function value: 145.92615305426264
Iterations: 16
Function evaluations: 135
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 266.3288307283832
Iteration: 2, Func. Count: 20, Neg. LLF: 1645141.3870816133
Iteration: 3, Func. Count: 30, Neg. LLF: 148.39154487871977
Iteration: 4, Func. Count: 40, Neg. LLF: 146.22063314003574
Iteration: 5, Func. Count: 50, Neg. LLF: 145.44871214221087
Iteration: 6, Func. Count: 60, Neg. LLF: 144.62935197668338
Iteration: 7, Func. Count: 69, Neg. LLF: 144.37361264569645
Iteration: 8, Func. Count: 78, Neg. LLF: 144.38478076698118
Iteration: 9, Func. Count: 88, Neg. LLF: 144.30916510423066
Iteration: 10, Func. Count: 97, Neg. LLF: 144.3024869877143
Iteration: 11, Func. Count: 106, Neg. LLF: 144.30245321884075
Iteration: 12, Func. Count: 115, Neg. LLF: 144.3024520061956
Iteration: 13, Func. Count: 123, Neg. LLF: 144.30245190525898
Optimization terminated successfully (Exit mode 0)
Current function value: 144.3024520061956
Iterations: 13
Function evaluations: 123
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 161.88852920813088
Iteration: 2, Func. Count: 22, Neg. LLF: 149.50186702992096
Iteration: 3, Func. Count: 33, Neg. LLF: 167.57008089348125
Iteration: 4, Func. Count: 44, Neg. LLF: 155.17883524297997
Iteration: 5, Func. Count: 55, Neg. LLF: 155.582870978527
Iteration: 6, Func. Count: 66, Neg. LLF: 149.08615921158048
Iteration: 7, Func. Count: 77, Neg. LLF: 145.16976121164825
Iteration: 8, Func. Count: 88, Neg. LLF: 144.05469014909207
Iteration: 9, Func. Count: 98, Neg. LLF: 144.12870035304744
Iteration: 10, Func. Count: 109, Neg. LLF: 144.10026248624575
Iteration: 11, Func. Count: 120, Neg. LLF: 144.01812170224883
Iteration: 12, Func. Count: 131, Neg. LLF: 144.0168125272641
Iteration: 13, Func. Count: 141, Neg. LLF: 144.01657032435935
Iteration: 14, Func. Count: 151, Neg. LLF: 144.01651527891596
Iteration: 15, Func. Count: 161, Neg. LLF: 144.01650038346753
Iteration: 16, Func. Count: 171, Neg. LLF: 144.01649881364213
Iteration: 17, Func. Count: 180, Neg. LLF: 144.01649872119282
Optimization terminated successfully (Exit mode 0)
Current function value: 144.01649881364213
Iterations: 17
Function evaluations: 180
Gradient evaluations: 17
Iteration: 1, Func. Count: 8, Neg. LLF: 162.0020217712585
Iteration: 2, Func. Count: 16, Neg. LLF: 162.20194746750562
Iteration: 3, Func. Count: 24, Neg. LLF: 163.43826721330072
Iteration: 4, Func. Count: 32, Neg. LLF: 152.5970743776415
Iteration: 5, Func. Count: 40, Neg. LLF: 151.96858195956762
Iteration: 6, Func. Count: 47, Neg. LLF: 151.35293146421833
Iteration: 7, Func. Count: 54, Neg. LLF: 150.35216939909324
Iteration: 8, Func. Count: 61, Neg. LLF: 150.23877760603463
Iteration: 9, Func. Count: 69, Neg. LLF: 1107303.8783998757
Iteration: 10, Func. Count: 77, Neg. LLF: 148.82584387713007
Iteration: 11, Func. Count: 84, Neg. LLF: 148.72315128005812
Iteration: 12, Func. Count: 91, Neg. LLF: 148.5872348255901
Iteration: 13, Func. Count: 98, Neg. LLF: 148.57382621009342
Iteration: 14, Func. Count: 105, Neg. LLF: 148.57065523314512
Iteration: 15, Func. Count: 113, Neg. LLF: 148.56084773175954
Iteration: 16, Func. Count: 120, Neg. LLF: 148.56077433177774
Iteration: 17, Func. Count: 127, Neg. LLF: 148.56077343683145
Optimization terminated successfully (Exit mode 0)
Current function value: 148.56077343683145
Iterations: 17
Function evaluations: 127
Gradient evaluations: 17
Iteration: 1, Func. Count: 9, Neg. LLF: 291.43633438492884
Iteration: 2, Func. Count: 18, Neg. LLF: 166.85246806677725
Iteration: 3, Func. Count: 28, Neg. LLF: 147.29258652926907
Iteration: 4, Func. Count: 37, Neg. LLF: 146.80370359432467
Iteration: 5, Func. Count: 45, Neg. LLF: 147.06926512792512
Iteration: 6, Func. Count: 54, Neg. LLF: 146.79812618750054
Iteration: 7, Func. Count: 62, Neg. LLF: 146.79808707805535
Iteration: 8, Func. Count: 70, Neg. LLF: 146.79804557024073
Iteration: 9, Func. Count: 78, Neg. LLF: 146.79797115022723
Iteration: 10, Func. Count: 86, Neg. LLF: 146.79790257598648
Iteration: 11, Func. Count: 94, Neg. LLF: 146.79787084377065
Iteration: 12, Func. Count: 102, Neg. LLF: 146.79786583017972
Iteration: 13, Func. Count: 109, Neg. LLF: 146.79786572822226
Optimization terminated successfully (Exit mode 0)
Current function value: 146.79786583017972
Iterations: 13
Function evaluations: 109
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 250.70780950419632
Iteration: 2, Func. Count: 20, Neg. LLF: 176.81949007150888
Iteration: 3, Func. Count: 30, Neg. LLF: 147.65546392470225
Iteration: 4, Func. Count: 40, Neg. LLF: 147.384088516179
Iteration: 5, Func. Count: 50, Neg. LLF: 147.244620439693
Iteration: 6, Func. Count: 60, Neg. LLF: 146.1227808401407
Iteration: 7, Func. Count: 69, Neg. LLF: 146.10517885753168
Iteration: 8, Func. Count: 78, Neg. LLF: 146.04523075696207
Iteration: 9, Func. Count: 87, Neg. LLF: 145.98828236452974
Iteration: 10, Func. Count: 96, Neg. LLF: 145.93917727593606
Iteration: 11, Func. Count: 105, Neg. LLF: 145.9321237379775
Iteration: 12, Func. Count: 114, Neg. LLF: 145.92647489120372
Iteration: 13, Func. Count: 123, Neg. LLF: 145.92621533362836
Iteration: 14, Func. Count: 132, Neg. LLF: 145.92615651074763
Iteration: 15, Func. Count: 141, Neg. LLF: 145.92615330045402
Iteration: 16, Func. Count: 149, Neg. LLF: 145.9261532155526
Optimization terminated successfully (Exit mode 0)
Current function value: 145.92615330045402
Iterations: 16
Function evaluations: 149
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 163.15584147241546
Iteration: 2, Func. Count: 22, Neg. LLF: 148.2214789039382
Iteration: 3, Func. Count: 33, Neg. LLF: 146.4937996968829
Iteration: 4, Func. Count: 44, Neg. LLF: 157.23742143671228
Iteration: 5, Func. Count: 55, Neg. LLF: 150.76278687422092
Iteration: 6, Func. Count: 66, Neg. LLF: 147.20202500239472
Iteration: 7, Func. Count: 77, Neg. LLF: 144.97230080862448
Iteration: 8, Func. Count: 88, Neg. LLF: 144.31965813953124
Iteration: 9, Func. Count: 98, Neg. LLF: 144.31239294402408
Iteration: 10, Func. Count: 108, Neg. LLF: 144.3030612497915
Iteration: 11, Func. Count: 118, Neg. LLF: 144.30254395352097
Iteration: 12, Func. Count: 128, Neg. LLF: 144.30245608967184
Iteration: 13, Func. Count: 138, Neg. LLF: 144.3024518669692
Iteration: 14, Func. Count: 147, Neg. LLF: 144.3024517660739
Optimization terminated successfully (Exit mode 0)
Current function value: 144.3024518669692
Iterations: 14
Function evaluations: 147
Gradient evaluations: 14
Iteration: 1, Func. Count: 12, Neg. LLF: 160.44821781258446
Iteration: 2, Func. Count: 24, Neg. LLF: 149.4846361442751
Iteration: 3, Func. Count: 36, Neg. LLF: 164.3579040374798
Iteration: 4, Func. Count: 48, Neg. LLF: 157.6317525540958
Iteration: 5, Func. Count: 60, Neg. LLF: 148.85301773030966
Iteration: 6, Func. Count: 72, Neg. LLF: 147.14793804015522
Iteration: 7, Func. Count: 84, Neg. LLF: 145.97530627760304
Iteration: 8, Func. Count: 96, Neg. LLF: 144.05702419093834
Iteration: 9, Func. Count: 107, Neg. LLF: 144.15799602344092
Iteration: 10, Func. Count: 119, Neg. LLF: 144.07761763157012
Iteration: 11, Func. Count: 131, Neg. LLF: 144.0180910588271
Iteration: 12, Func. Count: 143, Neg. LLF: 144.01673678052242
Iteration: 13, Func. Count: 155, Neg. LLF: 144.01650828326822
Iteration: 14, Func. Count: 166, Neg. LLF: 144.01650044206497
Iteration: 15, Func. Count: 177, Neg. LLF: 144.0164995133575
Optimization terminated successfully (Exit mode 0)
Current function value: 144.0164995133575
Iterations: 15
Function evaluations: 177
Gradient evaluations: 15
Iteration: 1, Func. Count: 5, Neg. LLF: 152.46926046910298
Iteration: 2, Func. Count: 9, Neg. LLF: 152.3235577843603
Iteration: 3, Func. Count: 13, Neg. LLF: 151.6814433711129
Iteration: 4, Func. Count: 17, Neg. LLF: 152.34114935874155
Iteration: 5, Func. Count: 22, Neg. LLF: 150.23340651742967
Iteration: 6, Func. Count: 26, Neg. LLF: 149.40523194770952
Iteration: 7, Func. Count: 30, Neg. LLF: 148.44828757500045
Iteration: 8, Func. Count: 34, Neg. LLF: 148.4595328650491
Iteration: 9, Func. Count: 39, Neg. LLF: 148.3049625459488
Iteration: 10, Func. Count: 43, Neg. LLF: 148.30364545915052
Iteration: 11, Func. Count: 47, Neg. LLF: 148.30362316171193
Iteration: 12, Func. Count: 51, Neg. LLF: 148.30362250801895
Optimization terminated successfully (Exit mode 0)
Current function value: 148.30362250801895
Iterations: 12
Function evaluations: 51
Gradient evaluations: 12
Iteration: 1, Func. Count: 6, Neg. LLF: 164.3250950713042
Iteration: 2, Func. Count: 12, Neg. LLF: 151.74720413633494
Iteration: 3, Func. Count: 18, Neg. LLF: 150.6786684233684
Iteration: 4, Func. Count: 23, Neg. LLF: 174.4596164761228
Iteration: 5, Func. Count: 29, Neg. LLF: 150.53377969300607
Iteration: 6, Func. Count: 34, Neg. LLF: 150.41968322081627
Iteration: 7, Func. Count: 39, Neg. LLF: 148.47962869830755
Iteration: 8, Func. Count: 44, Neg. LLF: 148.5264284047003
Iteration: 9, Func. Count: 50, Neg. LLF: 148.40937270452454
Iteration: 10, Func. Count: 55, Neg. LLF: 148.32930437780354
Iteration: 11, Func. Count: 60, Neg. LLF: 148.30495275905636
Iteration: 12, Func. Count: 65, Neg. LLF: 148.30364340070568
Iteration: 13, Func. Count: 70, Neg. LLF: 148.30362252732905
Iteration: 14, Func. Count: 74, Neg. LLF: 148.30362270765116
Optimization terminated successfully (Exit mode 0)
Current function value: 148.30362252732905
Iterations: 14
Function evaluations: 74
Gradient evaluations: 14
Iteration: 1, Func. Count: 7, Neg. LLF: 158.6633516219012
Iteration: 2, Func. Count: 14, Neg. LLF: 151.51367648658166
Iteration: 3, Func. Count: 21, Neg. LLF: 149.61652905766545
Iteration: 4, Func. Count: 27, Neg. LLF: 153.7653767788934
Iteration: 5, Func. Count: 34, Neg. LLF: 149.27960374336917
Iteration: 6, Func. Count: 40, Neg. LLF: 148.56900664405808
Iteration: 7, Func. Count: 46, Neg. LLF: 148.36427755316168
Iteration: 8, Func. Count: 52, Neg. LLF: 148.3071877915779
Iteration: 9, Func. Count: 58, Neg. LLF: 148.30370495275145
Iteration: 10, Func. Count: 64, Neg. LLF: 148.30362289893415
Iteration: 11, Func. Count: 69, Neg. LLF: 148.30362299942155
Optimization terminated successfully (Exit mode 0)
Current function value: 148.30362289893415
Iterations: 11
Function evaluations: 69
Gradient evaluations: 11
Iteration: 1, Func. Count: 8, Neg. LLF: 155.1765855334462
Iteration: 2, Func. Count: 16, Neg. LLF: 150.5504568307607
Iteration: 3, Func. Count: 24, Neg. LLF: 147.34706181063686
Iteration: 4, Func. Count: 31, Neg. LLF: 147.20426979096933
Iteration: 5, Func. Count: 38, Neg. LLF: 147.15139068070448
Iteration: 6, Func. Count: 45, Neg. LLF: 147.13985171468562
Iteration: 7, Func. Count: 52, Neg. LLF: 147.124157613875
Iteration: 8, Func. Count: 59, Neg. LLF: 147.1232301332109
Iteration: 9, Func. Count: 66, Neg. LLF: 147.12320878604834
Iteration: 10, Func. Count: 72, Neg. LLF: 147.1232086867334
Optimization terminated successfully (Exit mode 0)
Current function value: 147.12320878604834
Iterations: 10
Function evaluations: 72
Gradient evaluations: 10
Iteration: 1, Func. Count: 9, Neg. LLF: 154.68344113794066
Iteration: 2, Func. Count: 18, Neg. LLF: 156.98215629160927
Iteration: 3, Func. Count: 27, Neg. LLF: 147.4801934675064
Iteration: 4, Func. Count: 35, Neg. LLF: 151.80070582926874
Iteration: 5, Func. Count: 44, Neg. LLF: 147.62259586082973
Iteration: 6, Func. Count: 53, Neg. LLF: 147.44219761857855
Iteration: 7, Func. Count: 62, Neg. LLF: 146.90762046240937
Iteration: 8, Func. Count: 70, Neg. LLF: 146.90645152729905
Iteration: 9, Func. Count: 78, Neg. LLF: 146.90627651759652
Iteration: 10, Func. Count: 86, Neg. LLF: 146.90622790832828
Iteration: 11, Func. Count: 94, Neg. LLF: 146.90622492029007
Iteration: 12, Func. Count: 102, Neg. LLF: 146.90622403033208
Optimization terminated successfully (Exit mode 0)
Current function value: 146.90622403033208
Iterations: 12
Function evaluations: 102
Gradient evaluations: 12
Iteration: 1, Func. Count: 6, Neg. LLF: 152.41809703434475
Iteration: 2, Func. Count: 11, Neg. LLF: 153.1504648602156
Iteration: 3, Func. Count: 17, Neg. LLF: 151.6337183391261
Iteration: 4, Func. Count: 22, Neg. LLF: 151.31310754739926
Iteration: 5, Func. Count: 27, Neg. LLF: 150.9019224981723
Iteration: 6, Func. Count: 32, Neg. LLF: 149.54032734585422
Iteration: 7, Func. Count: 37, Neg. LLF: 148.43519772544389
Iteration: 8, Func. Count: 42, Neg. LLF: 148.2117787515217
Iteration: 9, Func. Count: 47, Neg. LLF: 148.06331421553173
Iteration: 10, Func. Count: 52, Neg. LLF: 148.1291956621245
Iteration: 11, Func. Count: 58, Neg. LLF: 148.02567662190756
Iteration: 12, Func. Count: 63, Neg. LLF: 148.02515242042008
Iteration: 13, Func. Count: 68, Neg. LLF: 148.0251370063967
Iteration: 14, Func. Count: 72, Neg. LLF: 148.02513698507119
Optimization terminated successfully (Exit mode 0)
Current function value: 148.0251370063967
Iterations: 14
Function evaluations: 72
Gradient evaluations: 14
Iteration: 1, Func. Count: 7, Neg. LLF: 659.8744816655569
Iteration: 2, Func. Count: 14, Neg. LLF: 171.2575451494535
Iteration: 3, Func. Count: 22, Neg. LLF: 146.99251045113655
Iteration: 4, Func. Count: 28, Neg. LLF: 146.89125476756018
Iteration: 5, Func. Count: 34, Neg. LLF: 146.86973012466277
Iteration: 6, Func. Count: 40, Neg. LLF: 146.86295261734762
Iteration: 7, Func. Count: 46, Neg. LLF: 146.86219858664757
Iteration: 8, Func. Count: 52, Neg. LLF: 146.86218426911336
Iteration: 9, Func. Count: 58, Neg. LLF: 146.86218382523663
Optimization terminated successfully (Exit mode 0)
Current function value: 146.86218382523663
Iterations: 9
Function evaluations: 58
Gradient evaluations: 9
Iteration: 1, Func. Count: 8, Neg. LLF: 413.1211915899727
Iteration: 2, Func. Count: 16, Neg. LLF: 157.18738284078586
Iteration: 3, Func. Count: 24, Neg. LLF: 146.9491438292292
Iteration: 4, Func. Count: 31, Neg. LLF: 147.18428292708433
Iteration: 5, Func. Count: 39, Neg. LLF: 146.8681469734787
Iteration: 6, Func. Count: 46, Neg. LLF: 146.86384532885694
Iteration: 7, Func. Count: 53, Neg. LLF: 146.86267724657623
Iteration: 8, Func. Count: 60, Neg. LLF: 146.8622003509058
Iteration: 9, Func. Count: 67, Neg. LLF: 146.86218438217068
Iteration: 10, Func. Count: 74, Neg. LLF: 146.86218382945765
Optimization terminated successfully (Exit mode 0)
Current function value: 146.86218382945765
Iterations: 10
Function evaluations: 74
Gradient evaluations: 10
Iteration: 1, Func. Count: 9, Neg. LLF: 242.99267280592184
Iteration: 2, Func. Count: 18, Neg. LLF: 148.3977117199333
Iteration: 3, Func. Count: 26, Neg. LLF: 147.5871569273274
Iteration: 4, Func. Count: 34, Neg. LLF: 148.84554183658386
Iteration: 5, Func. Count: 43, Neg. LLF: 147.21279949995417
Iteration: 6, Func. Count: 51, Neg. LLF: 146.78589614557254
Iteration: 7, Func. Count: 59, Neg. LLF: 146.8937695555905
Iteration: 8, Func. Count: 68, Neg. LLF: 146.7350177674264
Iteration: 9, Func. Count: 77, Neg. LLF: 146.71061578795428
Iteration: 10, Func. Count: 85, Neg. LLF: 146.71018298301783
Iteration: 11, Func. Count: 93, Neg. LLF: 146.71014504098147
Iteration: 12, Func. Count: 101, Neg. LLF: 146.7101327031557
Iteration: 13, Func. Count: 108, Neg. LLF: 146.71013256083012
Optimization terminated successfully (Exit mode 0)
Current function value: 146.7101327031557
Iterations: 13
Function evaluations: 108
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 243.07797369067106
Iteration: 2, Func. Count: 20, Neg. LLF: 147.18855669646143
Iteration: 3, Func. Count: 29, Neg. LLF: 164.820100314198
Iteration: 4, Func. Count: 39, Neg. LLF: 151.012264926717
Iteration: 5, Func. Count: 49, Neg. LLF: 147.59604872215573
Iteration: 6, Func. Count: 59, Neg. LLF: 147.49281702542189
Iteration: 7, Func. Count: 69, Neg. LLF: 145.97961147755765
Iteration: 8, Func. Count: 78, Neg. LLF: 145.73677053440213
Iteration: 9, Func. Count: 87, Neg. LLF: 145.55295691593247
Iteration: 10, Func. Count: 96, Neg. LLF: 145.44286749177925
Iteration: 11, Func. Count: 105, Neg. LLF: 145.38644240234555
Iteration: 12, Func. Count: 114, Neg. LLF: 145.3673175714881
Iteration: 13, Func. Count: 123, Neg. LLF: 145.36496289136372
Iteration: 14, Func. Count: 132, Neg. LLF: 145.36462178786385
Iteration: 15, Func. Count: 141, Neg. LLF: 145.36461809596892
Iteration: 16, Func. Count: 150, Neg. LLF: 145.36461589320618
Iteration: 17, Func. Count: 159, Neg. LLF: 145.3646155299494
Optimization terminated successfully (Exit mode 0)
Current function value: 145.364615892321
Iterations: 17
Function evaluations: 169
Gradient evaluations: 17
Iteration: 1, Func. Count: 7, Neg. LLF: 155.344096332249
Iteration: 2, Func. Count: 14, Neg. LLF: 153.3391256753105
Iteration: 3, Func. Count: 21, Neg. LLF: 152.37412018459523
Iteration: 4, Func. Count: 29, Neg. LLF: 151.79192485513408
Iteration: 5, Func. Count: 36, Neg. LLF: 151.15786740008517
Iteration: 6, Func. Count: 42, Neg. LLF: 150.91290666154194
Iteration: 7, Func. Count: 48, Neg. LLF: 150.1482002182867
Iteration: 8, Func. Count: 54, Neg. LLF: 149.50232700303553
Iteration: 9, Func. Count: 60, Neg. LLF: 167.732788509723
Iteration: 10, Func. Count: 67, Neg. LLF: 539.8700325053928
Iteration: 11, Func. Count: 74, Neg. LLF: 153.21396377173153
Iteration: 12, Func. Count: 81, Neg. LLF: 148.6075014038858
Iteration: 13, Func. Count: 88, Neg. LLF: 148.0448838865835
Iteration: 14, Func. Count: 94, Neg. LLF: 148.02748670671727
Iteration: 15, Func. Count: 100, Neg. LLF: 148.0274757911082
Iteration: 16, Func. Count: 107, Neg. LLF: 148.02515713540197
Iteration: 17, Func. Count: 113, Neg. LLF: 148.02513808693558
Iteration: 18, Func. Count: 119, Neg. LLF: 148.02513671306508
Iteration: 19, Func. Count: 124, Neg. LLF: 148.02513669881387
Optimization terminated successfully (Exit mode 0)
Current function value: 148.02513671306508
Iterations: 19
Function evaluations: 124
Gradient evaluations: 19
Iteration: 1, Func. Count: 8, Neg. LLF: 484.9790421899116
Iteration: 2, Func. Count: 16, Neg. LLF: 171.04761638913737
Iteration: 3, Func. Count: 25, Neg. LLF: 147.28091838608256
Iteration: 4, Func. Count: 33, Neg. LLF: 146.82245531407156
Iteration: 5, Func. Count: 40, Neg. LLF: 146.8732612857406
Iteration: 6, Func. Count: 48, Neg. LLF: 146.80230905690132
Iteration: 7, Func. Count: 55, Neg. LLF: 146.80076533592583
Iteration: 8, Func. Count: 62, Neg. LLF: 146.79988667239337
Iteration: 9, Func. Count: 69, Neg. LLF: 146.7983000080798
Iteration: 10, Func. Count: 76, Neg. LLF: 146.79789979530034
Iteration: 11, Func. Count: 83, Neg. LLF: 146.79786823019583
Iteration: 12, Func. Count: 90, Neg. LLF: 146.79786588483006
Iteration: 13, Func. Count: 96, Neg. LLF: 146.79786578278032
Optimization terminated successfully (Exit mode 0)
Current function value: 146.79786588483006
Iterations: 13
Function evaluations: 96
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 380.52579527025523
Iteration: 2, Func. Count: 18, Neg. LLF: 151.61439975078287
Iteration: 3, Func. Count: 27, Neg. LLF: 149.08836093290404
Iteration: 4, Func. Count: 36, Neg. LLF: 146.5245169271447
Iteration: 5, Func. Count: 44, Neg. LLF: 146.55361367134628
Iteration: 6, Func. Count: 53, Neg. LLF: 146.299709677889
Iteration: 7, Func. Count: 61, Neg. LLF: 146.03906542334616
Iteration: 8, Func. Count: 69, Neg. LLF: 145.97798753950107
Iteration: 9, Func. Count: 77, Neg. LLF: 145.96924404962886
Iteration: 10, Func. Count: 86, Neg. LLF: 145.9332307792293
Iteration: 11, Func. Count: 94, Neg. LLF: 145.9292899057851
Iteration: 12, Func. Count: 102, Neg. LLF: 145.92632289496595
Iteration: 13, Func. Count: 110, Neg. LLF: 145.92616389798565
Iteration: 14, Func. Count: 118, Neg. LLF: 145.92615282754468
Iteration: 15, Func. Count: 125, Neg. LLF: 145.92615274252452
Optimization terminated successfully (Exit mode 0)
Current function value: 145.92615282754468
Iterations: 15
Function evaluations: 125
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 186.1118129715121
Iteration: 2, Func. Count: 20, Neg. LLF: 165.1795441715008
Iteration: 3, Func. Count: 30, Neg. LLF: 146.20354193150507
Iteration: 4, Func. Count: 39, Neg. LLF: 203.1884641577936
Iteration: 5, Func. Count: 49, Neg. LLF: 159.76579596042194
Iteration: 6, Func. Count: 59, Neg. LLF: 144.71513870895706
Iteration: 7, Func. Count: 68, Neg. LLF: 145.34587238069022
Iteration: 8, Func. Count: 78, Neg. LLF: 144.4633004846084
Iteration: 9, Func. Count: 87, Neg. LLF: 144.355520182993
Iteration: 10, Func. Count: 96, Neg. LLF: 144.32211876737455
Iteration: 11, Func. Count: 105, Neg. LLF: 144.30967937028444
Iteration: 12, Func. Count: 114, Neg. LLF: 144.30468928661907
Iteration: 13, Func. Count: 123, Neg. LLF: 144.30268410901672
Iteration: 14, Func. Count: 132, Neg. LLF: 144.30245612613743
Iteration: 15, Func. Count: 141, Neg. LLF: 144.3024516971881
Iteration: 16, Func. Count: 149, Neg. LLF: 144.30245159627353
Optimization terminated successfully (Exit mode 0)
Current function value: 144.3024516971881
Iterations: 16
Function evaluations: 149
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 182.0284588239528
Iteration: 2, Func. Count: 22, Neg. LLF: 159.12680363160806
Iteration: 3, Func. Count: 33, Neg. LLF: 145.70150660900802
Iteration: 4, Func. Count: 43, Neg. LLF: 192.05472659595083
Iteration: 5, Func. Count: 54, Neg. LLF: 151.46271838773347
Iteration: 6, Func. Count: 65, Neg. LLF: 146.00727788274986
Iteration: 7, Func. Count: 76, Neg. LLF: 144.6925313186069
Iteration: 8, Func. Count: 87, Neg. LLF: 144.13671013873233
Iteration: 9, Func. Count: 97, Neg. LLF: 144.1177205864928
Iteration: 10, Func. Count: 108, Neg. LLF: 144.04567660503147
Iteration: 11, Func. Count: 118, Neg. LLF: 144.03493592673775
Iteration: 12, Func. Count: 128, Neg. LLF: 144.03088018295108
Iteration: 13, Func. Count: 138, Neg. LLF: 144.03054526755915
Iteration: 14, Func. Count: 148, Neg. LLF: 144.03051021960172
Iteration: 15, Func. Count: 158, Neg. LLF: 144.03050672127864
Iteration: 16, Func. Count: 167, Neg. LLF: 144.03050662464244
Optimization terminated successfully (Exit mode 0)
Current function value: 144.03050672127864
Iterations: 16
Function evaluations: 167
Gradient evaluations: 16
Iteration: 1, Func. Count: 8, Neg. LLF: 153.4351790591163
Iteration: 2, Func. Count: 16, Neg. LLF: 153.4591938398852
Iteration: 3, Func. Count: 24, Neg. LLF: 151.60136199231889
Iteration: 4, Func. Count: 31, Neg. LLF: 151.48534089767477
Iteration: 5, Func. Count: 38, Neg. LLF: 151.9160611921264
Iteration: 6, Func. Count: 46, Neg. LLF: 150.7281364516871
Iteration: 7, Func. Count: 53, Neg. LLF: 149.24856864971582
Iteration: 8, Func. Count: 60, Neg. LLF: 163.22962720918073
Iteration: 9, Func. Count: 68, Neg. LLF: 154.35738537299025
Iteration: 10, Func. Count: 77, Neg. LLF: 148.05540773445517
Iteration: 11, Func. Count: 84, Neg. LLF: 147.97838475532038
Iteration: 12, Func. Count: 91, Neg. LLF: 147.9573127305518
Iteration: 13, Func. Count: 98, Neg. LLF: 147.950213037091
Iteration: 14, Func. Count: 105, Neg. LLF: 147.94808553440404
Iteration: 15, Func. Count: 112, Neg. LLF: 147.9058469490379
Iteration: 16, Func. Count: 119, Neg. LLF: 222.8006164025997
Iteration: 17, Func. Count: 128, Neg. LLF: 147.88422876697547
Iteration: 18, Func. Count: 135, Neg. LLF: 147.8692391666108
Iteration: 19, Func. Count: 142, Neg. LLF: 147.80709270384602
Iteration: 20, Func. Count: 149, Neg. LLF: 147.77030931032357
Iteration: 21, Func. Count: 156, Neg. LLF: 147.7414023194418
Iteration: 22, Func. Count: 163, Neg. LLF: 147.73683269469205
Iteration: 23, Func. Count: 170, Neg. LLF: 147.73638380582716
Iteration: 24, Func. Count: 177, Neg. LLF: 147.73633183599873
Iteration: 25, Func. Count: 184, Neg. LLF: 147.73633003509235
Iteration: 26, Func. Count: 190, Neg. LLF: 147.7363300046371
Optimization terminated successfully (Exit mode 0)
Current function value: 147.73633003509235
Iterations: 26
Function evaluations: 190
Gradient evaluations: 26
Iteration: 1, Func. Count: 9, Neg. LLF: 337.9984407190843
Iteration: 2, Func. Count: 18, Neg. LLF: 168.5378688445858
Iteration: 3, Func. Count: 28, Neg. LLF: 147.2953656588304
Iteration: 4, Func. Count: 36, Neg. LLF: 146.836232754999
Iteration: 5, Func. Count: 44, Neg. LLF: 146.86910647721078
Iteration: 6, Func. Count: 53, Neg. LLF: 146.80695189919822
Iteration: 7, Func. Count: 61, Neg. LLF: 146.80382215432542
Iteration: 8, Func. Count: 69, Neg. LLF: 146.79926306454615
Iteration: 9, Func. Count: 77, Neg. LLF: 146.79797670262343
Iteration: 10, Func. Count: 85, Neg. LLF: 146.79788797878555
Iteration: 11, Func. Count: 93, Neg. LLF: 146.79786795508068
Iteration: 12, Func. Count: 101, Neg. LLF: 146.79786584867847
Iteration: 13, Func. Count: 108, Neg. LLF: 146.797865746646
Optimization terminated successfully (Exit mode 0)
Current function value: 146.79786584867847
Iterations: 13
Function evaluations: 108
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 161.65766048622126
Iteration: 2, Func. Count: 20, Neg. LLF: 150.8137441498466
Iteration: 3, Func. Count: 30, Neg. LLF: 147.5054671485037
Iteration: 4, Func. Count: 39, Neg. LLF: 149.9513244860817
Iteration: 5, Func. Count: 49, Neg. LLF: 150.34919348336177
Iteration: 6, Func. Count: 60, Neg. LLF: 146.02964521380102
Iteration: 7, Func. Count: 69, Neg. LLF: 146.12542689894093
Iteration: 8, Func. Count: 79, Neg. LLF: 145.9403883733691
Iteration: 9, Func. Count: 88, Neg. LLF: 145.9275560297548
Iteration: 10, Func. Count: 97, Neg. LLF: 145.9268268709589
Iteration: 11, Func. Count: 106, Neg. LLF: 145.92632154342633
Iteration: 12, Func. Count: 115, Neg. LLF: 145.92622633451646
Iteration: 13, Func. Count: 124, Neg. LLF: 145.92615322069364
Iteration: 14, Func. Count: 132, Neg. LLF: 145.9261531356879
Optimization terminated successfully (Exit mode 0)
Current function value: 145.92615322069364
Iterations: 14
Function evaluations: 132
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 162.05055471056642
Iteration: 2, Func. Count: 22, Neg. LLF: 152.0009570876874
Iteration: 3, Func. Count: 33, Neg. LLF: 145.4483019486466
Iteration: 4, Func. Count: 43, Neg. LLF: 150.57593037842477
Iteration: 5, Func. Count: 54, Neg. LLF: 152.33263482786825
Iteration: 6, Func. Count: 65, Neg. LLF: 144.908822391924
Iteration: 7, Func. Count: 76, Neg. LLF: 144.7535845948225
Iteration: 8, Func. Count: 87, Neg. LLF: 144.318261285315
Iteration: 9, Func. Count: 97, Neg. LLF: 144.3075550758408
Iteration: 10, Func. Count: 107, Neg. LLF: 144.30301042134295
Iteration: 11, Func. Count: 117, Neg. LLF: 144.30252590296433
Iteration: 12, Func. Count: 127, Neg. LLF: 144.3024559241338
Iteration: 13, Func. Count: 137, Neg. LLF: 144.3024516256475
Iteration: 14, Func. Count: 146, Neg. LLF: 144.3024515247362
Optimization terminated successfully (Exit mode 0)
Current function value: 144.3024516256475
Iterations: 14
Function evaluations: 146
Gradient evaluations: 14
Iteration: 1, Func. Count: 12, Neg. LLF: 165.43091833860026
Iteration: 2, Func. Count: 24, Neg. LLF: 153.14190852406503
Iteration: 3, Func. Count: 36, Neg. LLF: 332.2543487624639
Iteration: 4, Func. Count: 48, Neg. LLF: 146.4843668596111
Iteration: 5, Func. Count: 60, Neg. LLF: 159.19363181199242
Iteration: 6, Func. Count: 72, Neg. LLF: 148.713553072114
Iteration: 7, Func. Count: 84, Neg. LLF: 144.7965029486743
Iteration: 8, Func. Count: 96, Neg. LLF: 144.2423532815107
Iteration: 9, Func. Count: 107, Neg. LLF: 144.05510996009093
Iteration: 10, Func. Count: 118, Neg. LLF: 144.02413099644914
Iteration: 11, Func. Count: 129, Neg. LLF: 144.02199887758437
Iteration: 12, Func. Count: 140, Neg. LLF: 144.01983668133306
Iteration: 13, Func. Count: 151, Neg. LLF: 144.01691769619202
Iteration: 14, Func. Count: 162, Neg. LLF: 144.01656205831017
Iteration: 15, Func. Count: 173, Neg. LLF: 144.01650449735473
Iteration: 16, Func. Count: 184, Neg. LLF: 144.01649884870557
Iteration: 17, Func. Count: 194, Neg. LLF: 144.01649875622488
Optimization terminated successfully (Exit mode 0)
Current function value: 144.01649884870557
Iterations: 17
Function evaluations: 194
Gradient evaluations: 17
Iteration: 1, Func. Count: 9, Neg. LLF: 153.68712485504335
Iteration: 2, Func. Count: 18, Neg. LLF: 155.59628530103186
Iteration: 3, Func. Count: 27, Neg. LLF: 152.177414879386
Iteration: 4, Func. Count: 36, Neg. LLF: 151.7510694129398
Iteration: 5, Func. Count: 45, Neg. LLF: 151.24920659211682
Iteration: 6, Func. Count: 53, Neg. LLF: 151.10902120788737
Iteration: 7, Func. Count: 61, Neg. LLF: 150.5940069286743
Iteration: 8, Func. Count: 69, Neg. LLF: 149.23590277835717
Iteration: 9, Func. Count: 77, Neg. LLF: 565.3455209917214
Iteration: 10, Func. Count: 86, Neg. LLF: 297.9337090792467
Iteration: 11, Func. Count: 95, Neg. LLF: 164.49295666990827
Iteration: 12, Func. Count: 104, Neg. LLF: 149.2623639474875
Iteration: 13, Func. Count: 113, Neg. LLF: 148.02674688676734
Iteration: 14, Func. Count: 121, Neg. LLF: 147.92957251392355
Iteration: 15, Func. Count: 129, Neg. LLF: 147.91287648457444
Iteration: 16, Func. Count: 137, Neg. LLF: 147.88169842530422
Iteration: 17, Func. Count: 145, Neg. LLF: 148.22282192615552
Iteration: 18, Func. Count: 154, Neg. LLF: 170.2681753294698
Iteration: 19, Func. Count: 163, Neg. LLF: 148.0244960951405
Iteration: 20, Func. Count: 172, Neg. LLF: 147.73952436165135
Iteration: 21, Func. Count: 180, Neg. LLF: 147.73667358926082
Iteration: 22, Func. Count: 188, Neg. LLF: 147.73638790065763
Iteration: 23, Func. Count: 196, Neg. LLF: 147.73633198374236
Iteration: 24, Func. Count: 204, Neg. LLF: 147.7363301233691
Iteration: 25, Func. Count: 211, Neg. LLF: 147.73633014096288
Optimization terminated successfully (Exit mode 0)
Current function value: 147.7363301233691
Iterations: 25
Function evaluations: 211
Gradient evaluations: 25
Iteration: 1, Func. Count: 10, Neg. LLF: 290.21037551289123
Iteration: 2, Func. Count: 20, Neg. LLF: 168.13828648769018
Iteration: 3, Func. Count: 31, Neg. LLF: 147.28162593253128
Iteration: 4, Func. Count: 40, Neg. LLF: 146.88084845287557
Iteration: 5, Func. Count: 49, Neg. LLF: 146.88139516908623
Iteration: 6, Func. Count: 59, Neg. LLF: 146.80714425470018
Iteration: 7, Func. Count: 68, Neg. LLF: 146.79814651247776
Iteration: 8, Func. Count: 77, Neg. LLF: 146.7979436725509
Iteration: 9, Func. Count: 86, Neg. LLF: 146.79793341977114
Iteration: 10, Func. Count: 95, Neg. LLF: 146.79791654351638
Iteration: 11, Func. Count: 104, Neg. LLF: 146.79789203053105
Iteration: 12, Func. Count: 113, Neg. LLF: 146.79787269642594
Iteration: 13, Func. Count: 122, Neg. LLF: 146.7978662542028
Iteration: 14, Func. Count: 131, Neg. LLF: 146.79786568461645
Optimization terminated successfully (Exit mode 0)
Current function value: 146.79786568461645
Iterations: 14
Function evaluations: 131
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 160.99528274065335
Iteration: 2, Func. Count: 22, Neg. LLF: 151.40673003821846
Iteration: 3, Func. Count: 33, Neg. LLF: 147.4748433055489
Iteration: 4, Func. Count: 43, Neg. LLF: 150.27494067336218
Iteration: 5, Func. Count: 54, Neg. LLF: 170.12717607645894
Iteration: 6, Func. Count: 65, Neg. LLF: 146.26675098659243
Iteration: 7, Func. Count: 75, Neg. LLF: 145.97788769267245
Iteration: 8, Func. Count: 85, Neg. LLF: 145.95432065450004
Iteration: 9, Func. Count: 95, Neg. LLF: 145.92859061620072
Iteration: 10, Func. Count: 105, Neg. LLF: 145.92692072456276
Iteration: 11, Func. Count: 115, Neg. LLF: 145.92660217284163
Iteration: 12, Func. Count: 125, Neg. LLF: 145.9264299599593
Iteration: 13, Func. Count: 135, Neg. LLF: 145.9262277872092
Iteration: 14, Func. Count: 145, Neg. LLF: 145.9261620386155
Iteration: 15, Func. Count: 155, Neg. LLF: 145.9261531497357
Iteration: 16, Func. Count: 164, Neg. LLF: 145.92615306470765
Optimization terminated successfully (Exit mode 0)
Current function value: 145.9261531497357
Iterations: 16
Function evaluations: 164
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 163.19254076069
Iteration: 2, Func. Count: 24, Neg. LLF: 152.28930912545462
Iteration: 3, Func. Count: 36, Neg. LLF: 145.3377096620119
Iteration: 4, Func. Count: 47, Neg. LLF: 152.86791868740858
Iteration: 5, Func. Count: 59, Neg. LLF: 146.615434028538
Iteration: 6, Func. Count: 71, Neg. LLF: 149.03039706165274
Iteration: 7, Func. Count: 83, Neg. LLF: 148.06432812792312
Iteration: 8, Func. Count: 95, Neg. LLF: 144.49180039227477
Iteration: 9, Func. Count: 107, Neg. LLF: 144.31352092000517
Iteration: 10, Func. Count: 118, Neg. LLF: 144.30539803209734
Iteration: 11, Func. Count: 129, Neg. LLF: 144.30260557473747
Iteration: 12, Func. Count: 140, Neg. LLF: 144.30252594476397
Iteration: 13, Func. Count: 151, Neg. LLF: 144.30245317946037
Iteration: 14, Func. Count: 162, Neg. LLF: 144.30245175358533
Iteration: 15, Func. Count: 172, Neg. LLF: 144.3024516526914
Optimization terminated successfully (Exit mode 0)
Current function value: 144.30245175358533
Iterations: 15
Function evaluations: 172
Gradient evaluations: 15
Iteration: 1, Func. Count: 13, Neg. LLF: 171.1339352636062
Iteration: 2, Func. Count: 26, Neg. LLF: 149.37331032794245
Iteration: 3, Func. Count: 39, Neg. LLF: 181.1699998442822
Iteration: 4, Func. Count: 52, Neg. LLF: 162.5703835197157
Iteration: 5, Func. Count: 65, Neg. LLF: 154.08597307085404
Iteration: 6, Func. Count: 78, Neg. LLF: 166.75056779419913
Iteration: 7, Func. Count: 91, Neg. LLF: 144.93023105898058
Iteration: 8, Func. Count: 103, Neg. LLF: 144.75460509151083
Iteration: 9, Func. Count: 116, Neg. LLF: 147.730193972049
Iteration: 10, Func. Count: 129, Neg. LLF: 144.29565678564506
Iteration: 11, Func. Count: 142, Neg. LLF: 144.02750247150038
Iteration: 12, Func. Count: 154, Neg. LLF: 144.0190047991258
Iteration: 13, Func. Count: 166, Neg. LLF: 144.01693394442432
Iteration: 14, Func. Count: 178, Neg. LLF: 144.01650295411758
Iteration: 15, Func. Count: 190, Neg. LLF: 144.01649907283397
Iteration: 16, Func. Count: 201, Neg. LLF: 144.01649898030465
Optimization terminated successfully (Exit mode 0)
Current function value: 144.01649907283397
Iterations: 16
Function evaluations: 201
Gradient evaluations: 16
Iteration: 1, Func. Count: 6, Neg. LLF: 153.98448585610802
Iteration: 2, Func. Count: 11, Neg. LLF: 158.57466271620513
Iteration: 3, Func. Count: 17, Neg. LLF: 152.10851908820533
Iteration: 4, Func. Count: 22, Neg. LLF: 151.50530104936115
Iteration: 5, Func. Count: 27, Neg. LLF: 151.00638821294652
Iteration: 6, Func. Count: 32, Neg. LLF: 150.05489091905443
Iteration: 7, Func. Count: 37, Neg. LLF: 148.42267283095
Iteration: 8, Func. Count: 42, Neg. LLF: 148.50704405172817
Iteration: 9, Func. Count: 48, Neg. LLF: 148.3040045062095
Iteration: 10, Func. Count: 53, Neg. LLF: 148.30425349205382
Iteration: 11, Func. Count: 59, Neg. LLF: 148.30362251573382
Iteration: 12, Func. Count: 63, Neg. LLF: 148.30362269788048
Optimization terminated successfully (Exit mode 0)
Current function value: 148.30362251573382
Iterations: 12
Function evaluations: 63
Gradient evaluations: 12
Iteration: 1, Func. Count: 7, Neg. LLF: 166.76587437907224
Iteration: 2, Func. Count: 14, Neg. LLF: 153.21163786409318
Iteration: 3, Func. Count: 21, Neg. LLF: 150.93133186984855
Iteration: 4, Func. Count: 27, Neg. LLF: 159.61048099033036
Iteration: 5, Func. Count: 34, Neg. LLF: 150.57444250540033
Iteration: 6, Func. Count: 40, Neg. LLF: 150.5506796444572
Iteration: 7, Func. Count: 46, Neg. LLF: 150.27884068170854
Iteration: 8, Func. Count: 52, Neg. LLF: 148.31132541816777
Iteration: 9, Func. Count: 58, Neg. LLF: 148.30834098448736
Iteration: 10, Func. Count: 64, Neg. LLF: 148.30679337014152
Iteration: 11, Func. Count: 70, Neg. LLF: 148.3041756897092
Iteration: 12, Func. Count: 76, Neg. LLF: 148.30367456731108
Iteration: 13, Func. Count: 82, Neg. LLF: 148.3036443340941
Iteration: 14, Func. Count: 88, Neg. LLF: 148.30362252442103
Iteration: 15, Func. Count: 93, Neg. LLF: 148.30362270474308
Optimization terminated successfully (Exit mode 0)
Current function value: 148.30362252442103
Iterations: 16
Function evaluations: 93
Gradient evaluations: 15
Iteration: 1, Func. Count: 8, Neg. LLF: 163.71056287872503
Iteration: 2, Func. Count: 16, Neg. LLF: 150.64657340655256
Iteration: 3, Func. Count: 23, Neg. LLF: 149.5909916531037
Iteration: 4, Func. Count: 30, Neg. LLF: 152.27975446040176
Iteration: 5, Func. Count: 39, Neg. LLF: 149.2350113588755
Iteration: 6, Func. Count: 46, Neg. LLF: 148.55395889778438
Iteration: 7, Func. Count: 53, Neg. LLF: 148.31417692065767
Iteration: 8, Func. Count: 60, Neg. LLF: 148.30743632774755
Iteration: 9, Func. Count: 67, Neg. LLF: 148.30374080505194
Iteration: 10, Func. Count: 74, Neg. LLF: 148.30383956402508
Iteration: 11, Func. Count: 82, Neg. LLF: 148.30363861276928
Iteration: 12, Func. Count: 89, Neg. LLF: 148.30362332919483
Iteration: 13, Func. Count: 96, Neg. LLF: 148.303622534131
Optimization terminated successfully (Exit mode 0)
Current function value: 148.303622534131
Iterations: 14
Function evaluations: 96
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 162.62996273727126
Iteration: 2, Func. Count: 18, Neg. LLF: 156.13158280178374
Iteration: 3, Func. Count: 27, Neg. LLF: 149.56261022753174
Iteration: 4, Func. Count: 35, Neg. LLF: 147.97527158773974
Iteration: 5, Func. Count: 43, Neg. LLF: 148.05454302397087
Iteration: 6, Func. Count: 52, Neg. LLF: 147.16158422127054
Iteration: 7, Func. Count: 60, Neg. LLF: 147.13469405123902
Iteration: 8, Func. Count: 68, Neg. LLF: 147.12759692678276
Iteration: 9, Func. Count: 76, Neg. LLF: 147.1254697039372
Iteration: 10, Func. Count: 84, Neg. LLF: 147.12321614407858
Iteration: 11, Func. Count: 92, Neg. LLF: 147.12320868135296
Iteration: 12, Func. Count: 99, Neg. LLF: 147.1232085820678
Optimization terminated successfully (Exit mode 0)
Current function value: 147.12320868135296
Iterations: 12
Function evaluations: 99
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 162.0307510986715
Iteration: 2, Func. Count: 20, Neg. LLF: 155.12907645571332
Iteration: 3, Func. Count: 30, Neg. LLF: 149.88383741453762
Iteration: 4, Func. Count: 40, Neg. LLF: 150.3073916248424
Iteration: 5, Func. Count: 50, Neg. LLF: 148.51739108006961
Iteration: 6, Func. Count: 60, Neg. LLF: 146.93191300509974
Iteration: 7, Func. Count: 69, Neg. LLF: 146.98627332029247
Iteration: 8, Func. Count: 79, Neg. LLF: 146.99551078343447
Iteration: 9, Func. Count: 89, Neg. LLF: 146.907145694516
Iteration: 10, Func. Count: 98, Neg. LLF: 146.90629560636862
Iteration: 11, Func. Count: 107, Neg. LLF: 146.90625230623388
Iteration: 12, Func. Count: 116, Neg. LLF: 146.90622440833715
Iteration: 13, Func. Count: 124, Neg. LLF: 146.90622431709932
Optimization terminated successfully (Exit mode 0)
Current function value: 146.90622440833715
Iterations: 13
Function evaluations: 124
Gradient evaluations: 13
Iteration: 1, Func. Count: 7, Neg. LLF: 154.3457743630892
Iteration: 2, Func. Count: 14, Neg. LLF: 155.81026586534898
Iteration: 3, Func. Count: 21, Neg. LLF: 151.68162102617012
Iteration: 4, Func. Count: 27, Neg. LLF: 151.40511267782557
Iteration: 5, Func. Count: 33, Neg. LLF: 150.61470537472712
Iteration: 6, Func. Count: 39, Neg. LLF: 149.23358673039604
Iteration: 7, Func. Count: 45, Neg. LLF: 1391.3876008034379
Iteration: 8, Func. Count: 52, Neg. LLF: 348.3500891498281
Iteration: 9, Func. Count: 59, Neg. LLF: 150.10390163815924
Iteration: 10, Func. Count: 66, Neg. LLF: 148.11802666276444
Iteration: 11, Func. Count: 72, Neg. LLF: 148.0355025959558
Iteration: 12, Func. Count: 78, Neg. LLF: 148.02775046323154
Iteration: 13, Func. Count: 84, Neg. LLF: 148.02577556045233
Iteration: 14, Func. Count: 90, Neg. LLF: 148.02523688021577
Iteration: 15, Func. Count: 96, Neg. LLF: 148.0251395468519
Iteration: 16, Func. Count: 102, Neg. LLF: 148.02513674437236
Iteration: 17, Func. Count: 107, Neg. LLF: 148.02513672304357
Optimization terminated successfully (Exit mode 0)
Current function value: 148.02513674437236
Iterations: 17
Function evaluations: 107
Gradient evaluations: 17
Iteration: 1, Func. Count: 8, Neg. LLF: 643.6358903613218
Iteration: 2, Func. Count: 16, Neg. LLF: 171.74584566679803
Iteration: 3, Func. Count: 25, Neg. LLF: 146.99035017164434
Iteration: 4, Func. Count: 32, Neg. LLF: 146.89024339641358
Iteration: 5, Func. Count: 39, Neg. LLF: 146.8696983066284
Iteration: 6, Func. Count: 46, Neg. LLF: 146.86306798846294
Iteration: 7, Func. Count: 53, Neg. LLF: 146.8621987793894
Iteration: 8, Func. Count: 60, Neg. LLF: 146.86218420515675
Iteration: 9, Func. Count: 66, Neg. LLF: 146.86218404805234
Optimization terminated successfully (Exit mode 0)
Current function value: 146.86218420515675
Iterations: 9
Function evaluations: 66
Gradient evaluations: 9
Iteration: 1, Func. Count: 9, Neg. LLF: 411.4571222038543
Iteration: 2, Func. Count: 18, Neg. LLF: 157.40031808977102
Iteration: 3, Func. Count: 27, Neg. LLF: 146.94065927894732
Iteration: 4, Func. Count: 35, Neg. LLF: 147.2153211260757
Iteration: 5, Func. Count: 44, Neg. LLF: 146.86704698153451
Iteration: 6, Func. Count: 52, Neg. LLF: 146.86377776572007
Iteration: 7, Func. Count: 60, Neg. LLF: 146.86257143400044
Iteration: 8, Func. Count: 68, Neg. LLF: 146.86219974547078
Iteration: 9, Func. Count: 76, Neg. LLF: 146.86218427625718
Iteration: 10, Func. Count: 83, Neg. LLF: 146.86218412331735
Optimization terminated successfully (Exit mode 0)
Current function value: 146.86218427625718
Iterations: 10
Function evaluations: 83
Gradient evaluations: 10
Iteration: 1, Func. Count: 10, Neg. LLF: 248.75246117384484
Iteration: 2, Func. Count: 20, Neg. LLF: 149.73154430334878
Iteration: 3, Func. Count: 30, Neg. LLF: 149.9016387452412
Iteration: 4, Func. Count: 40, Neg. LLF: 164.59665572481657
Iteration: 5, Func. Count: 50, Neg. LLF: 149.45101843366646
Iteration: 6, Func. Count: 60, Neg. LLF: 147.51848050540372
Iteration: 7, Func. Count: 69, Neg. LLF: 147.12565236500575
Iteration: 8, Func. Count: 78, Neg. LLF: 146.86260256238558
Iteration: 9, Func. Count: 87, Neg. LLF: 146.80354192878355
Iteration: 10, Func. Count: 97, Neg. LLF: 146.71566930336206
Iteration: 11, Func. Count: 106, Neg. LLF: 146.7103806535819
Iteration: 12, Func. Count: 115, Neg. LLF: 146.7101403667681
Iteration: 13, Func. Count: 124, Neg. LLF: 146.7101323893787
Iteration: 14, Func. Count: 132, Neg. LLF: 146.71013224716043
Optimization terminated successfully (Exit mode 0)
Current function value: 146.7101323893787
Iterations: 14
Function evaluations: 132
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 249.28153522948665
Iteration: 2, Func. Count: 22, Neg. LLF: 148.63555828730262
Iteration: 3, Func. Count: 32, Neg. LLF: 162.14843675141788
Iteration: 4, Func. Count: 43, Neg. LLF: 202.92743196119952
Iteration: 5, Func. Count: 54, Neg. LLF: 149.9686436594217
Iteration: 6, Func. Count: 65, Neg. LLF: 175.2854483463429
Iteration: 7, Func. Count: 76, Neg. LLF: 146.85736143699978
Iteration: 8, Func. Count: 87, Neg. LLF: 145.5255076404283
Iteration: 9, Func. Count: 97, Neg. LLF: 145.3920742845453
Iteration: 10, Func. Count: 107, Neg. LLF: 145.36649761190128
Iteration: 11, Func. Count: 117, Neg. LLF: 145.36491676552822
Iteration: 12, Func. Count: 127, Neg. LLF: 145.36462875332344
Iteration: 13, Func. Count: 137, Neg. LLF: 145.36461761959004
Iteration: 14, Func. Count: 146, Neg. LLF: 145.36461746591948
Optimization terminated successfully (Exit mode 0)
Current function value: 145.36461761959004
Iterations: 14
Function evaluations: 146
Gradient evaluations: 14
Iteration: 1, Func. Count: 8, Neg. LLF: 163.35542782007613
Iteration: 2, Func. Count: 16, Neg. LLF: 152.97999944551316
Iteration: 3, Func. Count: 24, Neg. LLF: 153.61617581482028
Iteration: 4, Func. Count: 32, Neg. LLF: 155.22462118704397
Iteration: 5, Func. Count: 40, Neg. LLF: 151.37677542974095
Iteration: 6, Func. Count: 47, Neg. LLF: 150.6518909502414
Iteration: 7, Func. Count: 54, Neg. LLF: 150.04428159886962
Iteration: 8, Func. Count: 61, Neg. LLF: 151.2176343321433
Iteration: 9, Func. Count: 69, Neg. LLF: 148.9563657889835
Iteration: 10, Func. Count: 76, Neg. LLF: 148.30999193936825
Iteration: 11, Func. Count: 83, Neg. LLF: 148.1871069711522
Iteration: 12, Func. Count: 90, Neg. LLF: 148.1050493031989
Iteration: 13, Func. Count: 97, Neg. LLF: 148.06553201178826
Iteration: 14, Func. Count: 104, Neg. LLF: 148.02665237363232
Iteration: 15, Func. Count: 111, Neg. LLF: 148.02533941273293
Iteration: 16, Func. Count: 118, Neg. LLF: 148.02513972894167
Iteration: 17, Func. Count: 125, Neg. LLF: 148.02513690896913
Iteration: 18, Func. Count: 131, Neg. LLF: 148.02513689472252
Optimization terminated successfully (Exit mode 0)
Current function value: 148.02513690896913
Iterations: 18
Function evaluations: 131
Gradient evaluations: 18
Iteration: 1, Func. Count: 9, Neg. LLF: 473.22113365788584
Iteration: 2, Func. Count: 18, Neg. LLF: 171.37632867361864
Iteration: 3, Func. Count: 28, Neg. LLF: 147.28202730590468
Iteration: 4, Func. Count: 37, Neg. LLF: 146.82356658322186
Iteration: 5, Func. Count: 45, Neg. LLF: 146.8698457285952
Iteration: 6, Func. Count: 54, Neg. LLF: 146.80261885873347
Iteration: 7, Func. Count: 62, Neg. LLF: 146.8009915275551
Iteration: 8, Func. Count: 70, Neg. LLF: 146.79996375875757
Iteration: 9, Func. Count: 78, Neg. LLF: 146.79832434454312
Iteration: 10, Func. Count: 86, Neg. LLF: 146.79790087324452
Iteration: 11, Func. Count: 94, Neg. LLF: 146.79786844328777
Iteration: 12, Func. Count: 102, Neg. LLF: 146.7978659104772
Iteration: 13, Func. Count: 109, Neg. LLF: 146.79786580842588
Optimization terminated successfully (Exit mode 0)
Current function value: 146.7978659104772
Iterations: 13
Function evaluations: 109
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 376.51036161677575
Iteration: 2, Func. Count: 20, Neg. LLF: 151.51550611146234
Iteration: 3, Func. Count: 30, Neg. LLF: 149.22606092694332
Iteration: 4, Func. Count: 40, Neg. LLF: 146.5282510236211
Iteration: 5, Func. Count: 49, Neg. LLF: 146.41157691226934
Iteration: 6, Func. Count: 58, Neg. LLF: 147.4284366972587
Iteration: 7, Func. Count: 68, Neg. LLF: 146.04281343421292
Iteration: 8, Func. Count: 77, Neg. LLF: 145.9509961044252
Iteration: 9, Func. Count: 86, Neg. LLF: 145.94321918001197
Iteration: 10, Func. Count: 95, Neg. LLF: 145.92929677854926
Iteration: 11, Func. Count: 104, Neg. LLF: 145.92755055241412
Iteration: 12, Func. Count: 113, Neg. LLF: 145.92620066614188
Iteration: 13, Func. Count: 122, Neg. LLF: 145.92615312751144
Iteration: 14, Func. Count: 130, Neg. LLF: 145.9261530425376
Optimization terminated successfully (Exit mode 0)
Current function value: 145.92615312751144
Iterations: 14
Function evaluations: 130
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 164.371248257581
Iteration: 2, Func. Count: 22, Neg. LLF: 147.96482990121154
Iteration: 3, Func. Count: 33, Neg. LLF: 179.07674860357318
Iteration: 4, Func. Count: 44, Neg. LLF: 144.869674950234
Iteration: 5, Func. Count: 54, Neg. LLF: 151.9985459496802
Iteration: 6, Func. Count: 65, Neg. LLF: 144.69986807443695
Iteration: 7, Func. Count: 76, Neg. LLF: 144.50735997210484
Iteration: 8, Func. Count: 87, Neg. LLF: 144.39684691215953
Iteration: 9, Func. Count: 98, Neg. LLF: 144.3049409888527
Iteration: 10, Func. Count: 108, Neg. LLF: 144.30251165547273
Iteration: 11, Func. Count: 118, Neg. LLF: 144.30245773766944
Iteration: 12, Func. Count: 128, Neg. LLF: 144.30245167156514
Iteration: 13, Func. Count: 137, Neg. LLF: 144.30245157065818
Optimization terminated successfully (Exit mode 0)
Current function value: 144.30245167156514
Iterations: 13
Function evaluations: 137
Gradient evaluations: 13
Iteration: 1, Func. Count: 12, Neg. LLF: 163.55397916658828
Iteration: 2, Func. Count: 24, Neg. LLF: 150.9899912758261
Iteration: 3, Func. Count: 36, Neg. LLF: 369.37087389407765
Iteration: 4, Func. Count: 48, Neg. LLF: 164.73841037372404
Iteration: 5, Func. Count: 60, Neg. LLF: 145.45765031019195
Iteration: 6, Func. Count: 71, Neg. LLF: 145.10579998013827
Iteration: 7, Func. Count: 83, Neg. LLF: 145.2073773470461
Iteration: 8, Func. Count: 95, Neg. LLF: 145.49233451329687
Iteration: 9, Func. Count: 107, Neg. LLF: 144.43838390418625
Iteration: 10, Func. Count: 119, Neg. LLF: 144.05579950333734
Iteration: 11, Func. Count: 130, Neg. LLF: 144.0407017889809
Iteration: 12, Func. Count: 141, Neg. LLF: 144.03340092078486
Iteration: 13, Func. Count: 152, Neg. LLF: 144.0307267133981
Iteration: 14, Func. Count: 163, Neg. LLF: 144.0305395951977
Iteration: 15, Func. Count: 174, Neg. LLF: 144.03050802554398
Iteration: 16, Func. Count: 185, Neg. LLF: 144.0305065435858
Iteration: 17, Func. Count: 195, Neg. LLF: 144.03050644692732
Optimization terminated successfully (Exit mode 0)
Current function value: 144.0305065435858
Iterations: 17
Function evaluations: 195
Gradient evaluations: 17
Iteration: 1, Func. Count: 9, Neg. LLF: 164.27483485637703
Iteration: 2, Func. Count: 18, Neg. LLF: 153.30087845751004
Iteration: 3, Func. Count: 27, Neg. LLF: 153.63729592309025
Iteration: 4, Func. Count: 36, Neg. LLF: 153.17380686156028
Iteration: 5, Func. Count: 45, Neg. LLF: 151.29701762436773
Iteration: 6, Func. Count: 53, Neg. LLF: 156.07252576324169
Iteration: 7, Func. Count: 62, Neg. LLF: 151.77672049721707
Iteration: 8, Func. Count: 71, Neg. LLF: 151.29872960874027
Iteration: 9, Func. Count: 80, Neg. LLF: 150.0487561495746
Iteration: 10, Func. Count: 89, Neg. LLF: 148.30054447490141
Iteration: 11, Func. Count: 97, Neg. LLF: 148.1398599148881
Iteration: 12, Func. Count: 105, Neg. LLF: 148.31050059728025
Iteration: 13, Func. Count: 114, Neg. LLF: 147.95920380564942
Iteration: 14, Func. Count: 122, Neg. LLF: 147.9505314726512
Iteration: 15, Func. Count: 130, Neg. LLF: 147.94969417908428
Iteration: 16, Func. Count: 138, Neg. LLF: 147.94776348701973
Iteration: 17, Func. Count: 146, Neg. LLF: 147.892560834103
Iteration: 18, Func. Count: 154, Neg. LLF: 921.1024599316931
Iteration: 19, Func. Count: 163, Neg. LLF: 147.81501676953977
Iteration: 20, Func. Count: 171, Neg. LLF: 147.73994426330162
Iteration: 21, Func. Count: 179, Neg. LLF: 147.7380787163577
Iteration: 22, Func. Count: 187, Neg. LLF: 147.73636419559935
Iteration: 23, Func. Count: 195, Neg. LLF: 147.73633545881174
Iteration: 24, Func. Count: 203, Neg. LLF: 147.7363302636068
Iteration: 25, Func. Count: 210, Neg. LLF: 147.73633023311677
Optimization terminated successfully (Exit mode 0)
Current function value: 147.7363302636068
Iterations: 25
Function evaluations: 210
Gradient evaluations: 25
Iteration: 1, Func. Count: 10, Neg. LLF: 332.4466294755152
Iteration: 2, Func. Count: 20, Neg. LLF: 169.17249130782463
Iteration: 3, Func. Count: 31, Neg. LLF: 147.28735248830847
Iteration: 4, Func. Count: 40, Neg. LLF: 146.83790646290242
Iteration: 5, Func. Count: 49, Neg. LLF: 146.87046435840435
Iteration: 6, Func. Count: 59, Neg. LLF: 146.80590799307117
Iteration: 7, Func. Count: 68, Neg. LLF: 146.80339063699665
Iteration: 8, Func. Count: 77, Neg. LLF: 146.7996366713107
Iteration: 9, Func. Count: 86, Neg. LLF: 146.79836648483305
Iteration: 10, Func. Count: 95, Neg. LLF: 146.79799528432872
Iteration: 11, Func. Count: 104, Neg. LLF: 146.79787407345452
Iteration: 12, Func. Count: 113, Neg. LLF: 146.7978662145657
Iteration: 13, Func. Count: 121, Neg. LLF: 146.79786611250648
Optimization terminated successfully (Exit mode 0)
Current function value: 146.7978662145657
Iterations: 13
Function evaluations: 121
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 294.8067696456647
Iteration: 2, Func. Count: 22, Neg. LLF: 148.80983421706668
Iteration: 3, Func. Count: 33, Neg. LLF: 149.74999884197143
Iteration: 4, Func. Count: 44, Neg. LLF: 147.76817447638786
Iteration: 5, Func. Count: 55, Neg. LLF: 146.4332216970023
Iteration: 6, Func. Count: 65, Neg. LLF: 146.2781028881514
Iteration: 7, Func. Count: 75, Neg. LLF: 146.34920998409595
Iteration: 8, Func. Count: 86, Neg. LLF: 146.09870112150043
Iteration: 9, Func. Count: 96, Neg. LLF: 146.13274650095536
Iteration: 10, Func. Count: 107, Neg. LLF: 145.93638609874267
Iteration: 11, Func. Count: 117, Neg. LLF: 145.92744020918548
Iteration: 12, Func. Count: 127, Neg. LLF: 145.9266799510032
Iteration: 13, Func. Count: 137, Neg. LLF: 145.92621832243054
Iteration: 14, Func. Count: 147, Neg. LLF: 145.92616820442927
Iteration: 15, Func. Count: 157, Neg. LLF: 145.92615306526866
Iteration: 16, Func. Count: 166, Neg. LLF: 145.92615298031336
Optimization terminated successfully (Exit mode 0)
Current function value: 145.92615306526866
Iterations: 16
Function evaluations: 166
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 163.25480812065874
Iteration: 2, Func. Count: 24, Neg. LLF: 147.93840390099305
Iteration: 3, Func. Count: 36, Neg. LLF: 160.57820581069979
Iteration: 4, Func. Count: 48, Neg. LLF: 145.45841071270078
Iteration: 5, Func. Count: 59, Neg. LLF: 150.09153921082864
Iteration: 6, Func. Count: 71, Neg. LLF: 147.10918072720332
Iteration: 7, Func. Count: 83, Neg. LLF: 144.3947829788362
Iteration: 8, Func. Count: 94, Neg. LLF: 144.85430151029172
Iteration: 9, Func. Count: 106, Neg. LLF: 144.33799605367193
Iteration: 10, Func. Count: 118, Neg. LLF: 144.30252662875756
Iteration: 11, Func. Count: 129, Neg. LLF: 144.30245464325475
Iteration: 12, Func. Count: 140, Neg. LLF: 144.30245174371174
Iteration: 13, Func. Count: 150, Neg. LLF: 144.30245164279287
Optimization terminated successfully (Exit mode 0)
Current function value: 144.30245174371174
Iterations: 13
Function evaluations: 150
Gradient evaluations: 13
Iteration: 1, Func. Count: 13, Neg. LLF: 162.6784085652498
Iteration: 2, Func. Count: 26, Neg. LLF: 150.43909236773442
Iteration: 3, Func. Count: 39, Neg. LLF: 210.02720388625855
Iteration: 4, Func. Count: 52, Neg. LLF: 159.56148184672148
Iteration: 5, Func. Count: 65, Neg. LLF: 145.79223356546976
Iteration: 6, Func. Count: 78, Neg. LLF: 146.78030008680614
Iteration: 7, Func. Count: 91, Neg. LLF: 145.0757704614453
Iteration: 8, Func. Count: 104, Neg. LLF: 144.02999925974356
Iteration: 9, Func. Count: 116, Neg. LLF: 144.0297259375536
Iteration: 10, Func. Count: 129, Neg. LLF: 144.01781204749864
Iteration: 11, Func. Count: 141, Neg. LLF: 144.01678193138332
Iteration: 12, Func. Count: 153, Neg. LLF: 144.01653658653012
Iteration: 13, Func. Count: 165, Neg. LLF: 144.0165004613122
Iteration: 14, Func. Count: 177, Neg. LLF: 144.01649878335778
Iteration: 15, Func. Count: 188, Neg. LLF: 144.01649869089363
Optimization terminated successfully (Exit mode 0)
Current function value: 144.01649878335778
Iterations: 15
Function evaluations: 188
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 163.6344723430361
Iteration: 2, Func. Count: 20, Neg. LLF: 153.75419627781412
Iteration: 3, Func. Count: 30, Neg. LLF: 153.76163192526363
Iteration: 4, Func. Count: 40, Neg. LLF: 153.07751324474305
Iteration: 5, Func. Count: 50, Neg. LLF: 151.23376923887977
Iteration: 6, Func. Count: 59, Neg. LLF: 151.32638714890905
Iteration: 7, Func. Count: 69, Neg. LLF: 149.38194937440966
Iteration: 8, Func. Count: 78, Neg. LLF: 148.37596018607377
Iteration: 9, Func. Count: 87, Neg. LLF: 159.14859900207432
Iteration: 10, Func. Count: 97, Neg. LLF: 148.16450449736337
Iteration: 11, Func. Count: 107, Neg. LLF: 147.94550599961488
Iteration: 12, Func. Count: 116, Neg. LLF: 147.94483520161282
Iteration: 13, Func. Count: 126, Neg. LLF: 147.93175202878174
Iteration: 14, Func. Count: 135, Neg. LLF: 147.9265457026508
Iteration: 15, Func. Count: 144, Neg. LLF: 147.92649865731536
Iteration: 16, Func. Count: 153, Neg. LLF: 147.92649545001274
Iteration: 17, Func. Count: 161, Neg. LLF: 147.92649561564625
Optimization terminated successfully (Exit mode 0)
Current function value: 147.92649545001274
Iterations: 17
Function evaluations: 161
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 286.14956709281614
Iteration: 2, Func. Count: 22, Neg. LLF: 168.0689048182788
Iteration: 3, Func. Count: 34, Neg. LLF: 147.29112155905787
Iteration: 4, Func. Count: 44, Neg. LLF: 146.88647893344032
Iteration: 5, Func. Count: 54, Neg. LLF: 146.88013810110743
Iteration: 6, Func. Count: 65, Neg. LLF: 146.80905562739235
Iteration: 7, Func. Count: 75, Neg. LLF: 146.79822830097308
Iteration: 8, Func. Count: 85, Neg. LLF: 146.7978736811471
Iteration: 9, Func. Count: 95, Neg. LLF: 146.79786701678742
Iteration: 10, Func. Count: 104, Neg. LLF: 146.7978669148544
Optimization terminated successfully (Exit mode 0)
Current function value: 146.79786701678742
Iterations: 10
Function evaluations: 104
Gradient evaluations: 10
Iteration: 1, Func. Count: 12, Neg. LLF: 166.28600759329328
Iteration: 2, Func. Count: 24, Neg. LLF: 147.74508085472598
Iteration: 3, Func. Count: 35, Neg. LLF: 148.13592224689825
Iteration: 4, Func. Count: 47, Neg. LLF: 153.04578374029845
Iteration: 5, Func. Count: 59, Neg. LLF: 149.7598403532297
Iteration: 6, Func. Count: 71, Neg. LLF: 146.10562119026093
Iteration: 7, Func. Count: 82, Neg. LLF: 146.08027720933842
Iteration: 8, Func. Count: 94, Neg. LLF: 145.94433213400865
Iteration: 9, Func. Count: 105, Neg. LLF: 145.93065102351096
Iteration: 10, Func. Count: 116, Neg. LLF: 145.9283768552983
Iteration: 11, Func. Count: 127, Neg. LLF: 145.92621498999998
Iteration: 12, Func. Count: 138, Neg. LLF: 145.92615325009763
Iteration: 13, Func. Count: 148, Neg. LLF: 145.92615316504165
Optimization terminated successfully (Exit mode 0)
Current function value: 145.92615325009763
Iterations: 13
Function evaluations: 148
Gradient evaluations: 13
Iteration: 1, Func. Count: 13, Neg. LLF: 162.72318877603863
Iteration: 2, Func. Count: 26, Neg. LLF: 147.90925115279452
Iteration: 3, Func. Count: 39, Neg. LLF: 160.48398226910228
Iteration: 4, Func. Count: 52, Neg. LLF: 145.15304464965897
Iteration: 5, Func. Count: 64, Neg. LLF: 166.62157564925386
Iteration: 6, Func. Count: 77, Neg. LLF: 144.89717062626045
Iteration: 7, Func. Count: 90, Neg. LLF: 144.4763068380782
Iteration: 8, Func. Count: 102, Neg. LLF: 144.58147906791183
Iteration: 9, Func. Count: 115, Neg. LLF: 144.32881285985331
Iteration: 10, Func. Count: 127, Neg. LLF: 144.3027398805436
Iteration: 11, Func. Count: 139, Neg. LLF: 144.30249800940058
Iteration: 12, Func. Count: 151, Neg. LLF: 144.30245271179214
Iteration: 13, Func. Count: 163, Neg. LLF: 144.30245167892699
Iteration: 14, Func. Count: 174, Neg. LLF: 144.30245157801687
Optimization terminated successfully (Exit mode 0)
Current function value: 144.30245167892699
Iterations: 14
Function evaluations: 174
Gradient evaluations: 14
Iteration: 1, Func. Count: 14, Neg. LLF: 161.9479596930394
Iteration: 2, Func. Count: 28, Neg. LLF: 150.38845957465855
Iteration: 3, Func. Count: 42, Neg. LLF: 187.30758068943663
Iteration: 4, Func. Count: 56, Neg. LLF: 163.26460965161993
Iteration: 5, Func. Count: 70, Neg. LLF: 146.0930075744192
Iteration: 6, Func. Count: 84, Neg. LLF: 146.9335552538735
Iteration: 7, Func. Count: 98, Neg. LLF: 145.12741904406522
Iteration: 8, Func. Count: 112, Neg. LLF: 144.06171772716786
Iteration: 9, Func. Count: 125, Neg. LLF: 144.1151531027576
Iteration: 10, Func. Count: 139, Neg. LLF: 144.01730229753667
Iteration: 11, Func. Count: 152, Neg. LLF: 144.01661520129295
Iteration: 12, Func. Count: 165, Neg. LLF: 144.01655137290354
Iteration: 13, Func. Count: 178, Neg. LLF: 144.01650746220508
Iteration: 14, Func. Count: 191, Neg. LLF: 144.01650009287005
Iteration: 15, Func. Count: 204, Neg. LLF: 144.01649872852238
Iteration: 16, Func. Count: 216, Neg. LLF: 144.01649863605306
Optimization terminated successfully (Exit mode 0)
Current function value: 144.01649872852238
Iterations: 16
Function evaluations: 216
Gradient evaluations: 16
Iteration: 1, Func. Count: 7, Neg. LLF: 154.88082225335208
Iteration: 2, Func. Count: 13, Neg. LLF: 161.67883388017896
Iteration: 3, Func. Count: 20, Neg. LLF: 152.12874266529946
Iteration: 4, Func. Count: 26, Neg. LLF: 151.91725145397652
Iteration: 5, Func. Count: 32, Neg. LLF: 151.16722317919022
Iteration: 6, Func. Count: 38, Neg. LLF: 150.6535027707884
Iteration: 7, Func. Count: 44, Neg. LLF: 148.4075245006271
Iteration: 8, Func. Count: 50, Neg. LLF: 148.38647243486747
Iteration: 9, Func. Count: 56, Neg. LLF: 148.30398704220565
Iteration: 10, Func. Count: 62, Neg. LLF: 148.30364214391292
Iteration: 11, Func. Count: 68, Neg. LLF: 148.3036336948424
Iteration: 12, Func. Count: 74, Neg. LLF: 148.3036233202284
Iteration: 13, Func. Count: 80, Neg. LLF: 148.30362253383316
Optimization terminated successfully (Exit mode 0)
Current function value: 148.30362253383316
Iterations: 13
Function evaluations: 80
Gradient evaluations: 13
Iteration: 1, Func. Count: 8, Neg. LLF: 162.59365739926733
Iteration: 2, Func. Count: 16, Neg. LLF: 151.72017807062613
Iteration: 3, Func. Count: 24, Neg. LLF: 150.90926557311525
Iteration: 4, Func. Count: 31, Neg. LLF: 155.54479303482867
Iteration: 5, Func. Count: 39, Neg. LLF: 150.55210808014795
Iteration: 6, Func. Count: 46, Neg. LLF: 150.52539641503438
Iteration: 7, Func. Count: 53, Neg. LLF: 150.02574469506456
Iteration: 8, Func. Count: 60, Neg. LLF: 148.6355645880106
Iteration: 9, Func. Count: 67, Neg. LLF: 148.33891197317928
Iteration: 10, Func. Count: 74, Neg. LLF: 148.3157045932506
Iteration: 11, Func. Count: 81, Neg. LLF: 148.31043107848419
Iteration: 12, Func. Count: 88, Neg. LLF: 148.30935218314266
Iteration: 13, Func. Count: 95, Neg. LLF: 148.30491798502933
Iteration: 14, Func. Count: 102, Neg. LLF: 148.3036494193288
Iteration: 15, Func. Count: 109, Neg. LLF: 148.30362370035104
Iteration: 16, Func. Count: 116, Neg. LLF: 148.30362250834355
Iteration: 17, Func. Count: 122, Neg. LLF: 148.30362268867017
Optimization terminated successfully (Exit mode 0)
Current function value: 148.30362250834355
Iterations: 17
Function evaluations: 122
Gradient evaluations: 17
Iteration: 1, Func. Count: 9, Neg. LLF: 161.280405235516
Iteration: 2, Func. Count: 18, Neg. LLF: 151.6153767941169
Iteration: 3, Func. Count: 27, Neg. LLF: 150.01352464641275
Iteration: 4, Func. Count: 35, Neg. LLF: 152.0486714629197
Iteration: 5, Func. Count: 44, Neg. LLF: 149.54221322907628
Iteration: 6, Func. Count: 52, Neg. LLF: 149.16818944426902
Iteration: 7, Func. Count: 60, Neg. LLF: 148.75521470992135
Iteration: 8, Func. Count: 68, Neg. LLF: 148.31620579647
Iteration: 9, Func. Count: 76, Neg. LLF: 148.30743729225162
Iteration: 10, Func. Count: 84, Neg. LLF: 148.30384739090462
Iteration: 11, Func. Count: 92, Neg. LLF: 148.3036766826434
Iteration: 12, Func. Count: 100, Neg. LLF: 148.30362591794815
Iteration: 13, Func. Count: 108, Neg. LLF: 148.30362262529042
Iteration: 14, Func. Count: 115, Neg. LLF: 148.30362272585705
Optimization terminated successfully (Exit mode 0)
Current function value: 148.30362262529042
Iterations: 15
Function evaluations: 115
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 160.64059126423479
Iteration: 2, Func. Count: 20, Neg. LLF: 159.61407721094997
Iteration: 3, Func. Count: 30, Neg. LLF: 149.14544227246796
Iteration: 4, Func. Count: 39, Neg. LLF: 147.40033323633432
Iteration: 5, Func. Count: 48, Neg. LLF: 147.37867751264318
Iteration: 6, Func. Count: 58, Neg. LLF: 147.1590164956002
Iteration: 7, Func. Count: 67, Neg. LLF: 147.14098346169462
Iteration: 8, Func. Count: 76, Neg. LLF: 147.12427934555603
Iteration: 9, Func. Count: 85, Neg. LLF: 147.1232355166211
Iteration: 10, Func. Count: 94, Neg. LLF: 147.12320883935112
Iteration: 11, Func. Count: 102, Neg. LLF: 147.1232087401292
Optimization terminated successfully (Exit mode 0)
Current function value: 147.12320883935112
Iterations: 11
Function evaluations: 102
Gradient evaluations: 11
Iteration: 1, Func. Count: 11, Neg. LLF: 160.59246391734052
Iteration: 2, Func. Count: 22, Neg. LLF: 159.88942159259906
Iteration: 3, Func. Count: 33, Neg. LLF: 149.2029248722834
Iteration: 4, Func. Count: 43, Neg. LLF: 151.09799926228692
Iteration: 5, Func. Count: 54, Neg. LLF: 152.42317578695247
Iteration: 6, Func. Count: 66, Neg. LLF: 147.43988331282569
Iteration: 7, Func. Count: 77, Neg. LLF: 146.94356308037186
Iteration: 8, Func. Count: 87, Neg. LLF: 147.31513509922132
Iteration: 9, Func. Count: 98, Neg. LLF: 146.9588753000771
Iteration: 10, Func. Count: 109, Neg. LLF: 146.90631282629943
Iteration: 11, Func. Count: 119, Neg. LLF: 146.9062344695263
Iteration: 12, Func. Count: 129, Neg. LLF: 146.9062280105709
Iteration: 13, Func. Count: 139, Neg. LLF: 146.90622420052347
Iteration: 14, Func. Count: 148, Neg. LLF: 146.9062241092698
Optimization terminated successfully (Exit mode 0)
Current function value: 146.90622420052347
Iterations: 14
Function evaluations: 148
Gradient evaluations: 14
Iteration: 1, Func. Count: 8, Neg. LLF: 154.24718273179917
Iteration: 2, Func. Count: 16, Neg. LLF: 156.0710928837105
Iteration: 3, Func. Count: 24, Neg. LLF: 151.875948074279
Iteration: 4, Func. Count: 31, Neg. LLF: 151.4043107805656
Iteration: 5, Func. Count: 38, Neg. LLF: 150.87288624686414
Iteration: 6, Func. Count: 45, Neg. LLF: 148.8866048898909
Iteration: 7, Func. Count: 52, Neg. LLF: 154.417295403774
Iteration: 8, Func. Count: 60, Neg. LLF: 150.27205911283696
Iteration: 9, Func. Count: 68, Neg. LLF: 148.12783334013815
Iteration: 10, Func. Count: 75, Neg. LLF: 148.03632161017143
Iteration: 11, Func. Count: 82, Neg. LLF: 148.02723240968726
Iteration: 12, Func. Count: 89, Neg. LLF: 148.026374447403
Iteration: 13, Func. Count: 96, Neg. LLF: 148.02514611568887
Iteration: 14, Func. Count: 103, Neg. LLF: 148.02513748952288
Iteration: 15, Func. Count: 110, Neg. LLF: 148.02513671287525
Optimization terminated successfully (Exit mode 0)
Current function value: 148.02513671287525
Iterations: 15
Function evaluations: 110
Gradient evaluations: 15
Iteration: 1, Func. Count: 9, Neg. LLF: 646.0839923534915
Iteration: 2, Func. Count: 18, Neg. LLF: 170.9074151161236
Iteration: 3, Func. Count: 28, Neg. LLF: 146.99411930709283
Iteration: 4, Func. Count: 36, Neg. LLF: 146.8897330120435
Iteration: 5, Func. Count: 44, Neg. LLF: 146.86977450236864
Iteration: 6, Func. Count: 52, Neg. LLF: 146.86311585328156
Iteration: 7, Func. Count: 60, Neg. LLF: 146.86220410334107
Iteration: 8, Func. Count: 68, Neg. LLF: 146.86218432435254
Iteration: 9, Func. Count: 76, Neg. LLF: 146.86218382592128
Optimization terminated successfully (Exit mode 0)
Current function value: 146.86218382592128
Iterations: 9
Function evaluations: 76
Gradient evaluations: 9
Iteration: 1, Func. Count: 10, Neg. LLF: 405.3944869061351
Iteration: 2, Func. Count: 20, Neg. LLF: 157.3734949305495
Iteration: 3, Func. Count: 30, Neg. LLF: 146.9410548858142
Iteration: 4, Func. Count: 39, Neg. LLF: 147.21284417569953
Iteration: 5, Func. Count: 49, Neg. LLF: 146.86736277516442
Iteration: 6, Func. Count: 58, Neg. LLF: 146.8636588215642
Iteration: 7, Func. Count: 67, Neg. LLF: 146.8626335678403
Iteration: 8, Func. Count: 76, Neg. LLF: 146.86219934371184
Iteration: 9, Func. Count: 85, Neg. LLF: 146.86218434267332
Iteration: 10, Func. Count: 94, Neg. LLF: 146.86218382391053
Optimization terminated successfully (Exit mode 0)
Current function value: 146.86218382391053
Iterations: 10
Function evaluations: 94
Gradient evaluations: 10
Iteration: 1, Func. Count: 11, Neg. LLF: 313.7629267328004
Iteration: 2, Func. Count: 22, Neg. LLF: 150.47445027073144
Iteration: 3, Func. Count: 33, Neg. LLF: 148.82909388298782
Iteration: 4, Func. Count: 44, Neg. LLF: 146.99399791145564
Iteration: 5, Func. Count: 54, Neg. LLF: 146.72686251125313
Iteration: 6, Func. Count: 64, Neg. LLF: 146.71732011710688
Iteration: 7, Func. Count: 74, Neg. LLF: 146.71080161552206
Iteration: 8, Func. Count: 84, Neg. LLF: 146.7104355547112
Iteration: 9, Func. Count: 94, Neg. LLF: 146.71022437367293
Iteration: 10, Func. Count: 104, Neg. LLF: 146.71014887767822
Iteration: 11, Func. Count: 114, Neg. LLF: 146.71013267058086
Iteration: 12, Func. Count: 123, Neg. LLF: 146.7101325281417
Optimization terminated successfully (Exit mode 0)
Current function value: 146.71013267058086
Iterations: 12
Function evaluations: 123
Gradient evaluations: 12
Iteration: 1, Func. Count: 12, Neg. LLF: 245.35184089878857
Iteration: 2, Func. Count: 24, Neg. LLF: 150.67495204970572
Iteration: 3, Func. Count: 36, Neg. LLF: 153.08265188177344
Iteration: 4, Func. Count: 48, Neg. LLF: 157.81723840523873
Iteration: 5, Func. Count: 60, Neg. LLF: 147.0178372695778
Iteration: 6, Func. Count: 71, Neg. LLF: 146.3529477810702
Iteration: 7, Func. Count: 83, Neg. LLF: 145.5426755146769
Iteration: 8, Func. Count: 94, Neg. LLF: 145.5289353604034
Iteration: 9, Func. Count: 106, Neg. LLF: 145.36918135727558
Iteration: 10, Func. Count: 117, Neg. LLF: 145.36496040094661
Iteration: 11, Func. Count: 128, Neg. LLF: 145.36466450206848
Iteration: 12, Func. Count: 139, Neg. LLF: 145.3646370683711
Iteration: 13, Func. Count: 150, Neg. LLF: 145.36463055115075
Iteration: 14, Func. Count: 161, Neg. LLF: 145.36461760631374
Iteration: 15, Func. Count: 171, Neg. LLF: 145.36461745279883
Optimization terminated successfully (Exit mode 0)
Current function value: 145.36461760631374
Iterations: 15
Function evaluations: 171
Gradient evaluations: 15
Iteration: 1, Func. Count: 9, Neg. LLF: 165.57888846485665
Iteration: 2, Func. Count: 18, Neg. LLF: 154.4421651345153
Iteration: 3, Func. Count: 27, Neg. LLF: 154.24520160601088
Iteration: 4, Func. Count: 36, Neg. LLF: 153.0893626797639
Iteration: 5, Func. Count: 45, Neg. LLF: 151.29871055513613
Iteration: 6, Func. Count: 53, Neg. LLF: 151.7712545318539
Iteration: 7, Func. Count: 62, Neg. LLF: 150.48087645973837
Iteration: 8, Func. Count: 71, Neg. LLF: 149.10260060442494
Iteration: 9, Func. Count: 79, Neg. LLF: 148.3715403436707
Iteration: 10, Func. Count: 87, Neg. LLF: 148.07978303080662
Iteration: 11, Func. Count: 95, Neg. LLF: 148.03474544158723
Iteration: 12, Func. Count: 103, Neg. LLF: 148.02712657000654
Iteration: 13, Func. Count: 111, Neg. LLF: 148.02593497264843
Iteration: 14, Func. Count: 119, Neg. LLF: 148.0251523509749
Iteration: 15, Func. Count: 127, Neg. LLF: 148.0251370522652
Iteration: 16, Func. Count: 134, Neg. LLF: 148.02513706653139
Optimization terminated successfully (Exit mode 0)
Current function value: 148.0251370522652
Iterations: 16
Function evaluations: 134
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 471.3523155936451
Iteration: 2, Func. Count: 20, Neg. LLF: 170.63212534869956
Iteration: 3, Func. Count: 31, Neg. LLF: 147.2832661535579
Iteration: 4, Func. Count: 41, Neg. LLF: 146.82560315458696
Iteration: 5, Func. Count: 50, Neg. LLF: 146.8785093579266
Iteration: 6, Func. Count: 60, Neg. LLF: 146.80304785678504
Iteration: 7, Func. Count: 69, Neg. LLF: 146.80128936760752
Iteration: 8, Func. Count: 78, Neg. LLF: 146.80016438760106
Iteration: 9, Func. Count: 87, Neg. LLF: 146.7983721627051
Iteration: 10, Func. Count: 96, Neg. LLF: 146.79790292624955
Iteration: 11, Func. Count: 105, Neg. LLF: 146.79786864008358
Iteration: 12, Func. Count: 114, Neg. LLF: 146.7978659606154
Iteration: 13, Func. Count: 122, Neg. LLF: 146.79786585855751
Optimization terminated successfully (Exit mode 0)
Current function value: 146.7978659606154
Iterations: 13
Function evaluations: 122
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 371.77092209440985
Iteration: 2, Func. Count: 22, Neg. LLF: 151.37091248399216
Iteration: 3, Func. Count: 33, Neg. LLF: 149.38812253179208
Iteration: 4, Func. Count: 44, Neg. LLF: 146.5346104949448
Iteration: 5, Func. Count: 54, Neg. LLF: 146.60152968839628
Iteration: 6, Func. Count: 65, Neg. LLF: 146.3150013065807
Iteration: 7, Func. Count: 75, Neg. LLF: 146.05509787886868
Iteration: 8, Func. Count: 85, Neg. LLF: 145.99725302602232
Iteration: 9, Func. Count: 95, Neg. LLF: 145.9458880548689
Iteration: 10, Func. Count: 105, Neg. LLF: 145.93854798590027
Iteration: 11, Func. Count: 115, Neg. LLF: 145.9311107250904
Iteration: 12, Func. Count: 125, Neg. LLF: 145.9264846074246
Iteration: 13, Func. Count: 135, Neg. LLF: 145.92621196662992
Iteration: 14, Func. Count: 145, Neg. LLF: 145.92615305713636
Iteration: 15, Func. Count: 154, Neg. LLF: 145.92615297205697
Optimization terminated successfully (Exit mode 0)
Current function value: 145.92615305713636
Iterations: 15
Function evaluations: 154
Gradient evaluations: 15
Iteration: 1, Func. Count: 12, Neg. LLF: 195.50420787389265
Iteration: 2, Func. Count: 24, Neg. LLF: 149.08755825963848
Iteration: 3, Func. Count: 36, Neg. LLF: 149.98716535834012
Iteration: 4, Func. Count: 48, Neg. LLF: 146.71556908092205
Iteration: 5, Func. Count: 60, Neg. LLF: 144.66674485689694
Iteration: 6, Func. Count: 71, Neg. LLF: 144.52950990905197
Iteration: 7, Func. Count: 82, Neg. LLF: 145.10826964938204
Iteration: 8, Func. Count: 94, Neg. LLF: 144.31564089085097
Iteration: 9, Func. Count: 105, Neg. LLF: 144.34854743974964
Iteration: 10, Func. Count: 117, Neg. LLF: 144.30260149291496
Iteration: 11, Func. Count: 128, Neg. LLF: 144.30246653383747
Iteration: 12, Func. Count: 139, Neg. LLF: 144.3024534114023
Iteration: 13, Func. Count: 150, Neg. LLF: 144.30245174938858
Iteration: 14, Func. Count: 160, Neg. LLF: 144.30245164855563
Optimization terminated successfully (Exit mode 0)
Current function value: 144.30245174938858
Iterations: 14
Function evaluations: 160
Gradient evaluations: 14
Iteration: 1, Func. Count: 13, Neg. LLF: 163.02936152765136
Iteration: 2, Func. Count: 26, Neg. LLF: 150.2120954225294
Iteration: 3, Func. Count: 39, Neg. LLF: 211.76428918591824
Iteration: 4, Func. Count: 52, Neg. LLF: 172.00977993125213
Iteration: 5, Func. Count: 65, Neg. LLF: 145.6733960227117
Iteration: 6, Func. Count: 78, Neg. LLF: 146.2735959085344
Iteration: 7, Func. Count: 91, Neg. LLF: 144.1475525505253
Iteration: 8, Func. Count: 103, Neg. LLF: 145.60506552891422
Iteration: 9, Func. Count: 116, Neg. LLF: 144.10288552800344
Iteration: 10, Func. Count: 129, Neg. LLF: 144.03760116603914
Iteration: 11, Func. Count: 142, Neg. LLF: 144.031685267663
Iteration: 12, Func. Count: 154, Neg. LLF: 144.03052542805503
Iteration: 13, Func. Count: 166, Neg. LLF: 144.03051035863635
Iteration: 14, Func. Count: 178, Neg. LLF: 144.03050666751915
Iteration: 15, Func. Count: 189, Neg. LLF: 144.0305065708717
Optimization terminated successfully (Exit mode 0)
Current function value: 144.03050666751915
Iterations: 15
Function evaluations: 189
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 165.99309927564994
Iteration: 2, Func. Count: 20, Neg. LLF: 154.86786570312924
Iteration: 3, Func. Count: 30, Neg. LLF: 154.66499573068532
Iteration: 4, Func. Count: 40, Neg. LLF: 152.4841024015648
Iteration: 5, Func. Count: 50, Neg. LLF: 151.39308369827503
Iteration: 6, Func. Count: 59, Neg. LLF: 151.35589943832017
Iteration: 7, Func. Count: 69, Neg. LLF: 149.35624969054098
Iteration: 8, Func. Count: 78, Neg. LLF: 148.10723604761074
Iteration: 9, Func. Count: 87, Neg. LLF: 149.65035957157858
Iteration: 10, Func. Count: 97, Neg. LLF: 148.04402698807056
Iteration: 11, Func. Count: 107, Neg. LLF: 147.93846319455147
Iteration: 12, Func. Count: 116, Neg. LLF: 147.93124748733732
Iteration: 13, Func. Count: 125, Neg. LLF: 147.92937605580636
Iteration: 14, Func. Count: 134, Neg. LLF: 147.92774801358496
Iteration: 15, Func. Count: 143, Neg. LLF: 147.92658169520715
Iteration: 16, Func. Count: 152, Neg. LLF: 147.92649886501616
Iteration: 17, Func. Count: 161, Neg. LLF: 147.926495009976
Iteration: 18, Func. Count: 169, Neg. LLF: 147.92649498713251
Optimization terminated successfully (Exit mode 0)
Current function value: 147.926495009976
Iterations: 18
Function evaluations: 169
Gradient evaluations: 18
Iteration: 1, Func. Count: 11, Neg. LLF: 329.83925235928
Iteration: 2, Func. Count: 22, Neg. LLF: 168.82562663526474
Iteration: 3, Func. Count: 34, Neg. LLF: 147.28391682975885
Iteration: 4, Func. Count: 44, Neg. LLF: 146.84320979266798
Iteration: 5, Func. Count: 54, Neg. LLF: 146.87961168074588
Iteration: 6, Func. Count: 65, Neg. LLF: 146.80566122412554
Iteration: 7, Func. Count: 75, Neg. LLF: 146.8033948277467
Iteration: 8, Func. Count: 85, Neg. LLF: 146.80017724962494
Iteration: 9, Func. Count: 95, Neg. LLF: 146.79891497448037
Iteration: 10, Func. Count: 105, Neg. LLF: 146.79812259062686
Iteration: 11, Func. Count: 115, Neg. LLF: 146.79788301032002
Iteration: 12, Func. Count: 125, Neg. LLF: 146.79786619754967
Iteration: 13, Func. Count: 134, Neg. LLF: 146.79786609556655
Optimization terminated successfully (Exit mode 0)
Current function value: 146.79786619754967
Iterations: 13
Function evaluations: 134
Gradient evaluations: 13
Iteration: 1, Func. Count: 12, Neg. LLF: 291.6954934650667
Iteration: 2, Func. Count: 24, Neg. LLF: 148.72813763794983
Iteration: 3, Func. Count: 36, Neg. LLF: 150.0082810724782
Iteration: 4, Func. Count: 48, Neg. LLF: 147.99861225303687
Iteration: 5, Func. Count: 60, Neg. LLF: 146.50453688120405
Iteration: 6, Func. Count: 71, Neg. LLF: 146.34204730442897
Iteration: 7, Func. Count: 82, Neg. LLF: 146.51147576210786
Iteration: 8, Func. Count: 94, Neg. LLF: 146.1674768391589
Iteration: 9, Func. Count: 105, Neg. LLF: 146.47514829540822
Iteration: 10, Func. Count: 117, Neg. LLF: 146.01981174044576
Iteration: 11, Func. Count: 128, Neg. LLF: 145.9456771375561
Iteration: 12, Func. Count: 139, Neg. LLF: 145.9305895945085
Iteration: 13, Func. Count: 150, Neg. LLF: 145.9263984853248
Iteration: 14, Func. Count: 161, Neg. LLF: 145.92617551522332
Iteration: 15, Func. Count: 172, Neg. LLF: 145.9261576901241
Iteration: 16, Func. Count: 183, Neg. LLF: 145.92615363851377
Iteration: 17, Func. Count: 193, Neg. LLF: 145.92615355335673
Optimization terminated successfully (Exit mode 0)
Current function value: 145.92615363851377
Iterations: 17
Function evaluations: 193
Gradient evaluations: 17
Iteration: 1, Func. Count: 13, Neg. LLF: 161.9659297094074
Iteration: 2, Func. Count: 26, Neg. LLF: 149.0912543365833
Iteration: 3, Func. Count: 39, Neg. LLF: 148.63717356154658
Iteration: 4, Func. Count: 52, Neg. LLF: 147.16603689518288
Iteration: 5, Func. Count: 65, Neg. LLF: 150.96532075187952
Iteration: 6, Func. Count: 78, Neg. LLF: 144.7988469498611
Iteration: 7, Func. Count: 90, Neg. LLF: 144.3536480249281
Iteration: 8, Func. Count: 102, Neg. LLF: 144.3133716235524
Iteration: 9, Func. Count: 114, Neg. LLF: 144.30561879744363
Iteration: 10, Func. Count: 126, Neg. LLF: 144.3027396262584
Iteration: 11, Func. Count: 138, Neg. LLF: 144.30251199733348
Iteration: 12, Func. Count: 150, Neg. LLF: 144.3024520862671
Iteration: 13, Func. Count: 162, Neg. LLF: 144.30245162813307
Optimization terminated successfully (Exit mode 0)
Current function value: 144.30245162813307
Iterations: 13
Function evaluations: 162
Gradient evaluations: 13
Iteration: 1, Func. Count: 14, Neg. LLF: 162.17159000439295
Iteration: 2, Func. Count: 28, Neg. LLF: 150.00063684141617
Iteration: 3, Func. Count: 42, Neg. LLF: 174.7022744906823
Iteration: 4, Func. Count: 56, Neg. LLF: 189.10828000696512
Iteration: 5, Func. Count: 70, Neg. LLF: 146.17284785095083
Iteration: 6, Func. Count: 84, Neg. LLF: 146.78649783137007
Iteration: 7, Func. Count: 98, Neg. LLF: 144.42912479159946
Iteration: 8, Func. Count: 111, Neg. LLF: 144.11423119132712
Iteration: 9, Func. Count: 124, Neg. LLF: 144.22054914488876
Iteration: 10, Func. Count: 138, Neg. LLF: 144.0340166795346
Iteration: 11, Func. Count: 151, Neg. LLF: 144.02095756975552
Iteration: 12, Func. Count: 164, Neg. LLF: 144.0169328783024
Iteration: 13, Func. Count: 177, Neg. LLF: 144.0165131291616
Iteration: 14, Func. Count: 190, Neg. LLF: 144.0165031253591
Iteration: 15, Func. Count: 203, Neg. LLF: 144.01649929465913
Iteration: 16, Func. Count: 216, Neg. LLF: 144.01649873514506
Optimization terminated successfully (Exit mode 0)
Current function value: 144.01649873514506
Iterations: 16
Function evaluations: 216
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 161.3516922650804
Iteration: 2, Func. Count: 22, Neg. LLF: 155.50570491365804
Iteration: 3, Func. Count: 33, Neg. LLF: 154.70804627802755
Iteration: 4, Func. Count: 44, Neg. LLF: 152.74071290305673
Iteration: 5, Func. Count: 55, Neg. LLF: 151.03757294547975
Iteration: 6, Func. Count: 65, Neg. LLF: 150.48546091638892
Iteration: 7, Func. Count: 75, Neg. LLF: 149.13157387715646
Iteration: 8, Func. Count: 85, Neg. LLF: 148.41959348816917
Iteration: 9, Func. Count: 95, Neg. LLF: 155.01849704626045
Iteration: 10, Func. Count: 106, Neg. LLF: 148.10549098698533
Iteration: 11, Func. Count: 116, Neg. LLF: 148.04504854670043
Iteration: 12, Func. Count: 126, Neg. LLF: 148.0025772353015
Iteration: 13, Func. Count: 136, Neg. LLF: 147.95400454199722
Iteration: 14, Func. Count: 146, Neg. LLF: 147.9525219235547
Iteration: 15, Func. Count: 156, Neg. LLF: 147.95100677831252
Iteration: 16, Func. Count: 166, Neg. LLF: 147.9507107388349
Iteration: 17, Func. Count: 176, Neg. LLF: 147.95020698122795
Iteration: 18, Func. Count: 186, Neg. LLF: 147.94169161045357
Iteration: 19, Func. Count: 196, Neg. LLF: 151.33098877535852
Iteration: 20, Func. Count: 207, Neg. LLF: 170.23709747538174
Iteration: 21, Func. Count: 218, Neg. LLF: 176.11847086268043
Iteration: 22, Func. Count: 229, Neg. LLF: 147.84537678835258
Iteration: 23, Func. Count: 239, Neg. LLF: 147.78878545139298
Iteration: 24, Func. Count: 249, Neg. LLF: 147.75999523245082
Iteration: 25, Func. Count: 259, Neg. LLF: 147.7503441740396
Iteration: 26, Func. Count: 269, Neg. LLF: 147.7387839869513
Iteration: 27, Func. Count: 279, Neg. LLF: 147.7363935841368
Iteration: 28, Func. Count: 289, Neg. LLF: 147.73633222389202
Iteration: 29, Func. Count: 299, Neg. LLF: 147.73633019134192
Iteration: 30, Func. Count: 308, Neg. LLF: 147.73633020896966
Optimization terminated successfully (Exit mode 0)
Current function value: 147.73633019134192
Iterations: 30
Function evaluations: 308
Gradient evaluations: 30
Iteration: 1, Func. Count: 12, Neg. LLF: 283.56053112376435
Iteration: 2, Func. Count: 24, Neg. LLF: 167.6200064760021
Iteration: 3, Func. Count: 37, Neg. LLF: 147.3012563480756
Iteration: 4, Func. Count: 48, Neg. LLF: 146.8961862010614
Iteration: 5, Func. Count: 59, Neg. LLF: 146.88639870364938
Iteration: 6, Func. Count: 71, Neg. LLF: 146.81099554552762
Iteration: 7, Func. Count: 82, Neg. LLF: 146.79847873076432
Iteration: 8, Func. Count: 93, Neg. LLF: 146.79793265598659
Iteration: 9, Func. Count: 104, Neg. LLF: 146.7979156744479
Iteration: 10, Func. Count: 115, Neg. LLF: 146.79790897108916
Iteration: 11, Func. Count: 126, Neg. LLF: 146.79788792220256
Iteration: 12, Func. Count: 137, Neg. LLF: 146.7978731020668
Iteration: 13, Func. Count: 148, Neg. LLF: 146.79786647898752
Iteration: 14, Func. Count: 159, Neg. LLF: 146.7978656985588
Optimization terminated successfully (Exit mode 0)
Current function value: 146.7978656985588
Iterations: 14
Function evaluations: 159
Gradient evaluations: 14
Iteration: 1, Func. Count: 13, Neg. LLF: 165.1360280647799
Iteration: 2, Func. Count: 26, Neg. LLF: 148.59252477401205
Iteration: 3, Func. Count: 38, Neg. LLF: 146.80442864142125
Iteration: 4, Func. Count: 50, Neg. LLF: 147.90000587288023
Iteration: 5, Func. Count: 64, Neg. LLF: 146.38852732569535
Iteration: 6, Func. Count: 76, Neg. LLF: 213.46045356659008
Iteration: 7, Func. Count: 89, Neg. LLF: 145.99855093305789
Iteration: 8, Func. Count: 101, Neg. LLF: 145.93834168826848
Iteration: 9, Func. Count: 113, Neg. LLF: 145.9291280323648
Iteration: 10, Func. Count: 125, Neg. LLF: 145.92671695858365
Iteration: 11, Func. Count: 137, Neg. LLF: 145.92617406181841
Iteration: 12, Func. Count: 149, Neg. LLF: 145.92615438047739
Iteration: 13, Func. Count: 161, Neg. LLF: 145.92615279340254
Iteration: 14, Func. Count: 172, Neg. LLF: 145.92615270836737
Optimization terminated successfully (Exit mode 0)
Current function value: 145.92615279340254
Iterations: 14
Function evaluations: 172
Gradient evaluations: 14
Iteration: 1, Func. Count: 14, Neg. LLF: 161.3276686292068
Iteration: 2, Func. Count: 28, Neg. LLF: 148.85512885399538
Iteration: 3, Func. Count: 42, Neg. LLF: 148.66565404057613
Iteration: 4, Func. Count: 56, Neg. LLF: 146.7265744398038
Iteration: 5, Func. Count: 70, Neg. LLF: 153.12769801971587
Iteration: 6, Func. Count: 84, Neg. LLF: 144.70616577192072
Iteration: 7, Func. Count: 97, Neg. LLF: 144.44261364733356
Iteration: 8, Func. Count: 110, Neg. LLF: 144.34325107676338
Iteration: 9, Func. Count: 123, Neg. LLF: 144.30638087252
Iteration: 10, Func. Count: 136, Neg. LLF: 144.30522640903763
Iteration: 11, Func. Count: 150, Neg. LLF: 144.3024537761139
Iteration: 12, Func. Count: 163, Neg. LLF: 144.30245167185893
Iteration: 13, Func. Count: 175, Neg. LLF: 144.30245157096658
Optimization terminated successfully (Exit mode 0)
Current function value: 144.30245167185893
Iterations: 13
Function evaluations: 175
Gradient evaluations: 13
Iteration: 1, Func. Count: 15, Neg. LLF: 161.41454953464495
Iteration: 2, Func. Count: 30, Neg. LLF: 149.9788729502087
Iteration: 3, Func. Count: 45, Neg. LLF: 167.44530582275735
Iteration: 4, Func. Count: 60, Neg. LLF: 189.66854963341746
Iteration: 5, Func. Count: 75, Neg. LLF: 146.50803475204634
Iteration: 6, Func. Count: 90, Neg. LLF: 147.22007278942147
Iteration: 7, Func. Count: 105, Neg. LLF: 144.5351605251764
Iteration: 8, Func. Count: 119, Neg. LLF: 144.09212939547294
Iteration: 9, Func. Count: 133, Neg. LLF: 144.0850599365445
Iteration: 10, Func. Count: 148, Neg. LLF: 144.01977359481094
Iteration: 11, Func. Count: 162, Neg. LLF: 144.027163319664
Iteration: 12, Func. Count: 177, Neg. LLF: 144.01651462659117
Iteration: 13, Func. Count: 191, Neg. LLF: 144.01649973939013
Iteration: 14, Func. Count: 205, Neg. LLF: 144.0164992976021
Optimization terminated successfully (Exit mode 0)
Current function value: 144.0164992976021
Iterations: 14
Function evaluations: 205
Gradient evaluations: 14
Iteration: 1, Func. Count: 8, Neg. LLF: 154.00863542070422
Iteration: 2, Func. Count: 15, Neg. LLF: 160.71032513738123
Iteration: 3, Func. Count: 23, Neg. LLF: 152.1508558908411
Iteration: 4, Func. Count: 30, Neg. LLF: 151.0943190759205
Iteration: 5, Func. Count: 37, Neg. LLF: 150.62641897663556
Iteration: 6, Func. Count: 44, Neg. LLF: 342.0042425927515
Iteration: 7, Func. Count: 52, Neg. LLF: 216.326412284109
Iteration: 8, Func. Count: 60, Neg. LLF: 211.40033368717351
Iteration: 9, Func. Count: 68, Neg. LLF: 202.65717701293084
Iteration: 10, Func. Count: 76, Neg. LLF: 199.77768998164626
Iteration: 11, Func. Count: 84, Neg. LLF: 198.76087450304908
Iteration: 12, Func. Count: 92, Neg. LLF: 201.0333844524016
Iteration: 13, Func. Count: 100, Neg. LLF: 151.286428247304
Iteration: 14, Func. Count: 108, Neg. LLF: 147.7698366833603
Iteration: 15, Func. Count: 115, Neg. LLF: 147.70664570217198
Iteration: 16, Func. Count: 123, Neg. LLF: 147.58452180222125
Iteration: 17, Func. Count: 130, Neg. LLF: 147.4416593238945
Iteration: 18, Func. Count: 137, Neg. LLF: 147.3199895923361
Iteration: 19, Func. Count: 144, Neg. LLF: 147.28703990286778
Iteration: 20, Func. Count: 151, Neg. LLF: 147.26693028284987
Iteration: 21, Func. Count: 158, Neg. LLF: 147.26610397322673
Iteration: 22, Func. Count: 165, Neg. LLF: 147.26605162294996
Iteration: 23, Func. Count: 172, Neg. LLF: 147.26605024143868
Iteration: 24, Func. Count: 178, Neg. LLF: 147.26605017328728
Optimization terminated successfully (Exit mode 0)
Current function value: 147.26605024143868
Iterations: 24
Function evaluations: 178
Gradient evaluations: 24
Iteration: 1, Func. Count: 9, Neg. LLF: 159.13071811305034
Iteration: 2, Func. Count: 18, Neg. LLF: 152.17524870062942
Iteration: 3, Func. Count: 27, Neg. LLF: 151.07280773030502
Iteration: 4, Func. Count: 36, Neg. LLF: 148.04683638918985
Iteration: 5, Func. Count: 44, Neg. LLF: 147.4525771457824
Iteration: 6, Func. Count: 52, Neg. LLF: 147.3966404146576
Iteration: 7, Func. Count: 60, Neg. LLF: 147.31170460969045
Iteration: 8, Func. Count: 68, Neg. LLF: 147.27710635338227
Iteration: 9, Func. Count: 76, Neg. LLF: 147.26669726375974
Iteration: 10, Func. Count: 84, Neg. LLF: 147.26619465998402
Iteration: 11, Func. Count: 92, Neg. LLF: 147.2660685694892
Iteration: 12, Func. Count: 100, Neg. LLF: 147.26605048415774
Iteration: 13, Func. Count: 107, Neg. LLF: 147.2660505364419
Optimization terminated successfully (Exit mode 0)
Current function value: 147.26605048415774
Iterations: 13
Function evaluations: 107
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 157.7050198395451
Iteration: 2, Func. Count: 20, Neg. LLF: 149.35910342613914
Iteration: 3, Func. Count: 29, Neg. LLF: 150.0709106537102
Iteration: 4, Func. Count: 39, Neg. LLF: 151.34225821186791
Iteration: 5, Func. Count: 49, Neg. LLF: 152.82720108343543
Iteration: 6, Func. Count: 59, Neg. LLF: 152.08522391595594
Iteration: 7, Func. Count: 69, Neg. LLF: 147.57820694476823
Iteration: 8, Func. Count: 78, Neg. LLF: 147.3239614015998
Iteration: 9, Func. Count: 87, Neg. LLF: 147.27909424145267
Iteration: 10, Func. Count: 96, Neg. LLF: 147.26735972062795
Iteration: 11, Func. Count: 105, Neg. LLF: 147.26639686487977
Iteration: 12, Func. Count: 114, Neg. LLF: 147.26608196920648
Iteration: 13, Func. Count: 123, Neg. LLF: 147.2660510790494
Iteration: 14, Func. Count: 132, Neg. LLF: 147.26605023864352
Optimization terminated successfully (Exit mode 0)
Current function value: 147.26605023864352
Iterations: 14
Function evaluations: 132
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 157.23540756010246
Iteration: 2, Func. Count: 22, Neg. LLF: 154.864157675102
Iteration: 3, Func. Count: 33, Neg. LLF: 148.36736250776897
Iteration: 4, Func. Count: 43, Neg. LLF: 147.427473577164
Iteration: 5, Func. Count: 53, Neg. LLF: 147.31163174236292
Iteration: 6, Func. Count: 63, Neg. LLF: 147.28719373070018
Iteration: 7, Func. Count: 73, Neg. LLF: 147.2666400417168
Iteration: 8, Func. Count: 83, Neg. LLF: 147.26606791510991
Iteration: 9, Func. Count: 93, Neg. LLF: 147.26605041260714
Iteration: 10, Func. Count: 102, Neg. LLF: 147.2660503515875
Optimization terminated successfully (Exit mode 0)
Current function value: 147.26605041260714
Iterations: 10
Function evaluations: 102
Gradient evaluations: 10
Iteration: 1, Func. Count: 12, Neg. LLF: 156.93396015631444
Iteration: 2, Func. Count: 24, Neg. LLF: 157.51344185771137
Iteration: 3, Func. Count: 36, Neg. LLF: 148.6654733660589
Iteration: 4, Func. Count: 47, Neg. LLF: 146.97448907181388
Iteration: 5, Func. Count: 58, Neg. LLF: 147.80264841923884
Iteration: 6, Func. Count: 71, Neg. LLF: 146.85524766470647
Iteration: 7, Func. Count: 82, Neg. LLF: 146.85438086152533
Iteration: 8, Func. Count: 94, Neg. LLF: 146.85113960835693
Iteration: 9, Func. Count: 105, Neg. LLF: 146.85105950091298
Iteration: 10, Func. Count: 116, Neg. LLF: 146.85104452125444
Iteration: 11, Func. Count: 126, Neg. LLF: 146.85104443603146
Optimization terminated successfully (Exit mode 0)
Current function value: 146.85104452125444
Iterations: 11
Function evaluations: 126
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 153.3893804054074
Iteration: 2, Func. Count: 17, Neg. LLF: 155.48309993598818
Iteration: 3, Func. Count: 26, Neg. LLF: 151.65182480361975
Iteration: 4, Func. Count: 34, Neg. LLF: 152.12145209317865
Iteration: 5, Func. Count: 43, Neg. LLF: 151.03598801790181
Iteration: 6, Func. Count: 51, Neg. LLF: 150.79952951238883
Iteration: 7, Func. Count: 59, Neg. LLF: 149.62979001407587
Iteration: 8, Func. Count: 67, Neg. LLF: 160.48496162718138
Iteration: 9, Func. Count: 76, Neg. LLF: 170.54771294462245
Iteration: 10, Func. Count: 85, Neg. LLF: 193.36835049652618
Iteration: 11, Func. Count: 94, Neg. LLF: 211.7024804411226
Iteration: 12, Func. Count: 103, Neg. LLF: 224.2679452740794
Iteration: 13, Func. Count: 112, Neg. LLF: 153.61854341690042
Iteration: 14, Func. Count: 121, Neg. LLF: 178.94074713989835
Iteration: 15, Func. Count: 130, Neg. LLF: 230.3007084016978
Iteration: 16, Func. Count: 139, Neg. LLF: 215.27649116988619
Iteration: 17, Func. Count: 148, Neg. LLF: 146.91662153981952
Iteration: 18, Func. Count: 157, Neg. LLF: 175.0620409559007
Iteration: 19, Func. Count: 166, Neg. LLF: 146.41753740716084
Iteration: 20, Func. Count: 174, Neg. LLF: 146.37128066662657
Iteration: 21, Func. Count: 182, Neg. LLF: 146.3620619656582
Iteration: 22, Func. Count: 190, Neg. LLF: 146.34872495155247
Iteration: 23, Func. Count: 198, Neg. LLF: 146.34568305713992
Iteration: 24, Func. Count: 206, Neg. LLF: 146.3389245029553
Iteration: 25, Func. Count: 214, Neg. LLF: 146.33865539531936
Iteration: 26, Func. Count: 222, Neg. LLF: 146.33863530320093
Iteration: 27, Func. Count: 229, Neg. LLF: 146.33863526464907
Optimization terminated successfully (Exit mode 0)
Current function value: 146.33863530320093
Iterations: 27
Function evaluations: 229
Gradient evaluations: 27
Iteration: 1, Func. Count: 10, Neg. LLF: 666.333205810463
Iteration: 2, Func. Count: 20, Neg. LLF: 169.74735720076285
Iteration: 3, Func. Count: 31, Neg. LLF: 146.9947074342523
Iteration: 4, Func. Count: 40, Neg. LLF: 146.8886115620368
Iteration: 5, Func. Count: 49, Neg. LLF: 146.8696142331813
Iteration: 6, Func. Count: 58, Neg. LLF: 146.86306853305146
Iteration: 7, Func. Count: 67, Neg. LLF: 146.86220789564
Iteration: 8, Func. Count: 76, Neg. LLF: 146.8621843295924
Iteration: 9, Func. Count: 85, Neg. LLF: 146.86218382587708
Optimization terminated successfully (Exit mode 0)
Current function value: 146.86218382587708
Iterations: 9
Function evaluations: 85
Gradient evaluations: 9
Iteration: 1, Func. Count: 11, Neg. LLF: 407.2312511017531
Iteration: 2, Func. Count: 22, Neg. LLF: 156.67316907072467
Iteration: 3, Func. Count: 33, Neg. LLF: 146.93602539676115
Iteration: 4, Func. Count: 43, Neg. LLF: 147.1891791354777
Iteration: 5, Func. Count: 54, Neg. LLF: 146.86721651021386
Iteration: 6, Func. Count: 64, Neg. LLF: 146.86356648746985
Iteration: 7, Func. Count: 74, Neg. LLF: 146.86261797372114
Iteration: 8, Func. Count: 84, Neg. LLF: 146.86219843105138
Iteration: 9, Func. Count: 94, Neg. LLF: 146.86218431049798
Iteration: 10, Func. Count: 104, Neg. LLF: 146.86218382220972
Optimization terminated successfully (Exit mode 0)
Current function value: 146.86218382220972
Iterations: 10
Function evaluations: 104
Gradient evaluations: 10
Iteration: 1, Func. Count: 12, Neg. LLF: 313.6877343983941
Iteration: 2, Func. Count: 24, Neg. LLF: 150.01715629543656
Iteration: 3, Func. Count: 36, Neg. LLF: 149.0827091033227
Iteration: 4, Func. Count: 48, Neg. LLF: 147.03219718452817
Iteration: 5, Func. Count: 59, Neg. LLF: 146.7303259797235
Iteration: 6, Func. Count: 70, Neg. LLF: 146.71882332697854
Iteration: 7, Func. Count: 81, Neg. LLF: 146.71072028847937
Iteration: 8, Func. Count: 92, Neg. LLF: 146.71037154697066
Iteration: 9, Func. Count: 103, Neg. LLF: 146.7102284866433
Iteration: 10, Func. Count: 114, Neg. LLF: 146.71015269800574
Iteration: 11, Func. Count: 125, Neg. LLF: 146.71013258346593
Iteration: 12, Func. Count: 135, Neg. LLF: 146.71013244107365
Optimization terminated successfully (Exit mode 0)
Current function value: 146.71013258346593
Iterations: 12
Function evaluations: 135
Gradient evaluations: 12
Iteration: 1, Func. Count: 13, Neg. LLF: 242.83552716805264
Iteration: 2, Func. Count: 26, Neg. LLF: 148.95215930451735
Iteration: 3, Func. Count: 38, Neg. LLF: 156.41833791107175
Iteration: 4, Func. Count: 51, Neg. LLF: 167.4886832479312
Iteration: 5, Func. Count: 64, Neg. LLF: 150.00076546004647
Iteration: 6, Func. Count: 77, Neg. LLF: 145.87780521498462
Iteration: 7, Func. Count: 89, Neg. LLF: 145.62898882313928
Iteration: 8, Func. Count: 101, Neg. LLF: 145.4135142090797
Iteration: 9, Func. Count: 113, Neg. LLF: 145.38062621318502
Iteration: 10, Func. Count: 125, Neg. LLF: 145.36562902218458
Iteration: 11, Func. Count: 137, Neg. LLF: 145.36465094813522
Iteration: 12, Func. Count: 149, Neg. LLF: 145.36462243899715
Iteration: 13, Func. Count: 161, Neg. LLF: 145.36461745662527
Iteration: 14, Func. Count: 172, Neg. LLF: 145.36461730300712
Optimization terminated successfully (Exit mode 0)
Current function value: 145.36461745662527
Iterations: 14
Function evaluations: 172
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 164.17893480501692
Iteration: 2, Func. Count: 20, Neg. LLF: 154.27346010695265
Iteration: 3, Func. Count: 30, Neg. LLF: 154.62708289966614
Iteration: 4, Func. Count: 41, Neg. LLF: 163.7360419950427
Iteration: 5, Func. Count: 51, Neg. LLF: 151.47278769478064
Iteration: 6, Func. Count: 60, Neg. LLF: 151.10220672006176
Iteration: 7, Func. Count: 69, Neg. LLF: 150.31989190015594
Iteration: 8, Func. Count: 78, Neg. LLF: 149.56138893031311
Iteration: 9, Func. Count: 87, Neg. LLF: 149.26759138821402
Iteration: 10, Func. Count: 97, Neg. LLF: 176.49553868831393
Iteration: 11, Func. Count: 107, Neg. LLF: 188.83866236089904
Iteration: 12, Func. Count: 117, Neg. LLF: 210.3238767763354
Iteration: 13, Func. Count: 127, Neg. LLF: 199.54737549024603
Iteration: 14, Func. Count: 137, Neg. LLF: 187.61474773924024
Iteration: 15, Func. Count: 147, Neg. LLF: 168.3594491502862
Iteration: 16, Func. Count: 157, Neg. LLF: 147.1288355426704
Iteration: 17, Func. Count: 167, Neg. LLF: 146.27720431199887
Iteration: 18, Func. Count: 176, Neg. LLF: 146.27047747439144
Iteration: 19, Func. Count: 185, Neg. LLF: 146.2686470348356
Iteration: 20, Func. Count: 195, Neg. LLF: 146.25278404417477
Iteration: 21, Func. Count: 204, Neg. LLF: 146.25065682034656
Iteration: 22, Func. Count: 213, Neg. LLF: 146.24994287199465
Iteration: 23, Func. Count: 222, Neg. LLF: 146.24990848919992
Iteration: 24, Func. Count: 231, Neg. LLF: 146.24990790269732
Optimization terminated successfully (Exit mode 0)
Current function value: 146.24990790269732
Iterations: 24
Function evaluations: 231
Gradient evaluations: 24
Iteration: 1, Func. Count: 11, Neg. LLF: 477.84014501299885
Iteration: 2, Func. Count: 22, Neg. LLF: 169.59907401566363
Iteration: 3, Func. Count: 34, Neg. LLF: 147.28511943951443
Iteration: 4, Func. Count: 45, Neg. LLF: 146.82653394562595
Iteration: 5, Func. Count: 55, Neg. LLF: 146.89757449294322
Iteration: 6, Func. Count: 66, Neg. LLF: 146.8033645093497
Iteration: 7, Func. Count: 76, Neg. LLF: 146.80147113746148
Iteration: 8, Func. Count: 86, Neg. LLF: 146.8002752882655
Iteration: 9, Func. Count: 96, Neg. LLF: 146.79839528973704
Iteration: 10, Func. Count: 106, Neg. LLF: 146.79790410100048
Iteration: 11, Func. Count: 116, Neg. LLF: 146.79786883789865
Iteration: 12, Func. Count: 126, Neg. LLF: 146.7978659987532
Iteration: 13, Func. Count: 135, Neg. LLF: 146.79786589669135
Optimization terminated successfully (Exit mode 0)
Current function value: 146.7978659987532
Iterations: 13
Function evaluations: 135
Gradient evaluations: 13
Iteration: 1, Func. Count: 12, Neg. LLF: 372.5284826713754
Iteration: 2, Func. Count: 24, Neg. LLF: 150.73570488359286
Iteration: 3, Func. Count: 36, Neg. LLF: 149.84625716453456
Iteration: 4, Func. Count: 48, Neg. LLF: 146.54006132857762
Iteration: 5, Func. Count: 59, Neg. LLF: 146.69260341883367
Iteration: 6, Func. Count: 71, Neg. LLF: 146.25262045724708
Iteration: 7, Func. Count: 82, Neg. LLF: 146.05574115048884
Iteration: 8, Func. Count: 93, Neg. LLF: 146.0086953523724
Iteration: 9, Func. Count: 104, Neg. LLF: 145.93997283605174
Iteration: 10, Func. Count: 115, Neg. LLF: 145.9314866809534
Iteration: 11, Func. Count: 126, Neg. LLF: 145.9302043582615
Iteration: 12, Func. Count: 137, Neg. LLF: 145.92639318478925
Iteration: 13, Func. Count: 148, Neg. LLF: 145.92616658989417
Iteration: 14, Func. Count: 159, Neg. LLF: 145.92615290802897
Iteration: 15, Func. Count: 169, Neg. LLF: 145.92615282301512
Optimization terminated successfully (Exit mode 0)
Current function value: 145.92615290802897
Iterations: 15
Function evaluations: 169
Gradient evaluations: 15
Iteration: 1, Func. Count: 13, Neg. LLF: 243.52579145769712
Iteration: 2, Func. Count: 26, Neg. LLF: 150.34160697687693
Iteration: 3, Func. Count: 39, Neg. LLF: 156.45228058147663
Iteration: 4, Func. Count: 52, Neg. LLF: 145.98665167056097
Iteration: 5, Func. Count: 64, Neg. LLF: 145.50985924895062
Iteration: 6, Func. Count: 77, Neg. LLF: 161.77677179507958
Iteration: 7, Func. Count: 91, Neg. LLF: 144.38296208114818
Iteration: 8, Func. Count: 103, Neg. LLF: 144.3266827165848
Iteration: 9, Func. Count: 115, Neg. LLF: 144.30910191346675
Iteration: 10, Func. Count: 127, Neg. LLF: 144.30262718836752
Iteration: 11, Func. Count: 139, Neg. LLF: 144.30251743161205
Iteration: 12, Func. Count: 151, Neg. LLF: 144.30246651372414
Iteration: 13, Func. Count: 163, Neg. LLF: 144.3024600811559
Iteration: 14, Func. Count: 175, Neg. LLF: 144.30245176522737
Iteration: 15, Func. Count: 186, Neg. LLF: 144.30245166432871
Optimization terminated successfully (Exit mode 0)
Current function value: 144.30245176522737
Iterations: 15
Function evaluations: 186
Gradient evaluations: 15
Iteration: 1, Func. Count: 14, Neg. LLF: 161.70776736344789
Iteration: 2, Func. Count: 28, Neg. LLF: 150.30601329017426
Iteration: 3, Func. Count: 42, Neg. LLF: 168.09166609981375
Iteration: 4, Func. Count: 56, Neg. LLF: 167.7747221780191
Iteration: 5, Func. Count: 70, Neg. LLF: 146.4910863335081
Iteration: 6, Func. Count: 84, Neg. LLF: 147.18722794650859
Iteration: 7, Func. Count: 98, Neg. LLF: 144.17614322586587
Iteration: 8, Func. Count: 111, Neg. LLF: 145.4202002948834
Iteration: 9, Func. Count: 125, Neg. LLF: 144.06036998328906
Iteration: 10, Func. Count: 138, Neg. LLF: 144.0399214113339
Iteration: 11, Func. Count: 151, Neg. LLF: 144.0350766135931
Iteration: 12, Func. Count: 164, Neg. LLF: 144.03130362291066
Iteration: 13, Func. Count: 177, Neg. LLF: 144.03065919043019
Iteration: 14, Func. Count: 190, Neg. LLF: 144.0305088116777
Iteration: 15, Func. Count: 203, Neg. LLF: 144.03050666764474
Iteration: 16, Func. Count: 215, Neg. LLF: 144.03050657099885
Optimization terminated successfully (Exit mode 0)
Current function value: 144.03050666764474
Iterations: 16
Function evaluations: 215
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 164.4858444814928
Iteration: 2, Func. Count: 22, Neg. LLF: 154.77174807681067
Iteration: 3, Func. Count: 33, Neg. LLF: 154.6587800663448
Iteration: 4, Func. Count: 44, Neg. LLF: 154.1164781888271
Iteration: 5, Func. Count: 55, Neg. LLF: 151.41219594690182
Iteration: 6, Func. Count: 65, Neg. LLF: 150.55239718485254
Iteration: 7, Func. Count: 75, Neg. LLF: 149.67557435390606
Iteration: 8, Func. Count: 85, Neg. LLF: 164.53070867981086
Iteration: 9, Func. Count: 96, Neg. LLF: 177.77345083553644
Iteration: 10, Func. Count: 107, Neg. LLF: 249.78038957026752
Iteration: 11, Func. Count: 118, Neg. LLF: 201.3287242565613
Iteration: 12, Func. Count: 129, Neg. LLF: 199.64683143644743
Iteration: 13, Func. Count: 140, Neg. LLF: 216.10582187740297
Iteration: 14, Func. Count: 151, Neg. LLF: 219.87537244290652
Iteration: 15, Func. Count: 162, Neg. LLF: 231.48092645376263
Iteration: 16, Func. Count: 173, Neg. LLF: 212.68875012598346
Iteration: 17, Func. Count: 184, Neg. LLF: 233.2339716696324
Iteration: 18, Func. Count: 195, Neg. LLF: 150.1783571614467
Iteration: 19, Func. Count: 206, Neg. LLF: 146.76512317014493
Iteration: 20, Func. Count: 217, Neg. LLF: 146.26084493808702
Iteration: 21, Func. Count: 227, Neg. LLF: 146.253733861236
Iteration: 22, Func. Count: 237, Neg. LLF: 146.25029120134064
Iteration: 23, Func. Count: 247, Neg. LLF: 146.2499930180498
Iteration: 24, Func. Count: 257, Neg. LLF: 146.24992327073835
Iteration: 25, Func. Count: 267, Neg. LLF: 146.24990807016067
Iteration: 26, Func. Count: 276, Neg. LLF: 146.24990806574297
Optimization terminated successfully (Exit mode 0)
Current function value: 146.24990807016067
Iterations: 26
Function evaluations: 276
Gradient evaluations: 26
Iteration: 1, Func. Count: 12, Neg. LLF: 330.8036566838824
Iteration: 2, Func. Count: 24, Neg. LLF: 167.99593745233912
Iteration: 3, Func. Count: 37, Neg. LLF: 147.28482750286352
Iteration: 4, Func. Count: 48, Neg. LLF: 146.84517143990365
Iteration: 5, Func. Count: 59, Neg. LLF: 146.8840569516161
Iteration: 6, Func. Count: 71, Neg. LLF: 146.8059382377259
Iteration: 7, Func. Count: 82, Neg. LLF: 146.8036154293334
Iteration: 8, Func. Count: 93, Neg. LLF: 146.80026695451937
Iteration: 9, Func. Count: 104, Neg. LLF: 146.79895764062823
Iteration: 10, Func. Count: 115, Neg. LLF: 146.79813157922212
Iteration: 11, Func. Count: 126, Neg. LLF: 146.7978838320407
Iteration: 12, Func. Count: 137, Neg. LLF: 146.79786626309274
Iteration: 13, Func. Count: 147, Neg. LLF: 146.79786616110147
Optimization terminated successfully (Exit mode 0)
Current function value: 146.79786626309274
Iterations: 13
Function evaluations: 147
Gradient evaluations: 13
Iteration: 1, Func. Count: 13, Neg. LLF: 291.3653348607163
Iteration: 2, Func. Count: 26, Neg. LLF: 148.32237110343561
Iteration: 3, Func. Count: 39, Neg. LLF: 150.84044499135197
Iteration: 4, Func. Count: 52, Neg. LLF: 148.00288095502043
Iteration: 5, Func. Count: 65, Neg. LLF: 146.49378051328492
Iteration: 6, Func. Count: 77, Neg. LLF: 146.35266438643083
Iteration: 7, Func. Count: 89, Neg. LLF: 146.51967912944042
Iteration: 8, Func. Count: 102, Neg. LLF: 146.16938785613775
Iteration: 9, Func. Count: 114, Neg. LLF: 146.51350651725716
Iteration: 10, Func. Count: 127, Neg. LLF: 146.02706162671487
Iteration: 11, Func. Count: 139, Neg. LLF: 145.9489696769269
Iteration: 12, Func. Count: 151, Neg. LLF: 145.93105985419072
Iteration: 13, Func. Count: 163, Neg. LLF: 145.9265712899697
Iteration: 14, Func. Count: 175, Neg. LLF: 145.9261799537807
Iteration: 15, Func. Count: 187, Neg. LLF: 145.92615848527197
Iteration: 16, Func. Count: 199, Neg. LLF: 145.92615332660023
Iteration: 17, Func. Count: 210, Neg. LLF: 145.92615324145356
Optimization terminated successfully (Exit mode 0)
Current function value: 145.92615332660023
Iterations: 17
Function evaluations: 210
Gradient evaluations: 17
Iteration: 1, Func. Count: 14, Neg. LLF: 161.02401798429244
Iteration: 2, Func. Count: 28, Neg. LLF: 148.46547859179762
Iteration: 3, Func. Count: 42, Neg. LLF: 148.04823333400375
Iteration: 4, Func. Count: 56, Neg. LLF: 145.98346285362518
Iteration: 5, Func. Count: 70, Neg. LLF: 159.4467266638969
Iteration: 6, Func. Count: 84, Neg. LLF: 144.961171419048
Iteration: 7, Func. Count: 97, Neg. LLF: 144.56210964332286
Iteration: 8, Func. Count: 110, Neg. LLF: 144.38684056153696
Iteration: 9, Func. Count: 123, Neg. LLF: 144.30704607340044
Iteration: 10, Func. Count: 136, Neg. LLF: 144.30312024529653
Iteration: 11, Func. Count: 149, Neg. LLF: 144.30252654473816
Iteration: 12, Func. Count: 162, Neg. LLF: 144.30245389407392
Iteration: 13, Func. Count: 175, Neg. LLF: 144.3024516489847
Iteration: 14, Func. Count: 187, Neg. LLF: 144.3024515480758
Optimization terminated successfully (Exit mode 0)
Current function value: 144.3024516489847
Iterations: 14
Function evaluations: 187
Gradient evaluations: 14
Iteration: 1, Func. Count: 15, Neg. LLF: 160.7053488393743
Iteration: 2, Func. Count: 30, Neg. LLF: 150.2611246433076
Iteration: 3, Func. Count: 45, Neg. LLF: 159.3561534539285
Iteration: 4, Func. Count: 60, Neg. LLF: 167.76996065546155
Iteration: 5, Func. Count: 75, Neg. LLF: 149.05566814081567
Iteration: 6, Func. Count: 90, Neg. LLF: 150.21068333528555
Iteration: 7, Func. Count: 105, Neg. LLF: 144.5184884701362
Iteration: 8, Func. Count: 119, Neg. LLF: 144.20462577746198
Iteration: 9, Func. Count: 133, Neg. LLF: 145.5318093831788
Iteration: 10, Func. Count: 148, Neg. LLF: 144.09214096913283
Iteration: 11, Func. Count: 162, Neg. LLF: 144.04758778312492
Iteration: 12, Func. Count: 176, Neg. LLF: 144.02548130077153
Iteration: 13, Func. Count: 190, Neg. LLF: 144.0203053529938
Iteration: 14, Func. Count: 204, Neg. LLF: 144.01704366038064
Iteration: 15, Func. Count: 218, Neg. LLF: 144.01653808772872
Iteration: 16, Func. Count: 232, Neg. LLF: 144.01649949405882
Iteration: 17, Func. Count: 246, Neg. LLF: 144.01649874257626
Optimization terminated successfully (Exit mode 0)
Current function value: 144.01649874257626
Iterations: 17
Function evaluations: 246
Gradient evaluations: 17
Iteration: 1, Func. Count: 12, Neg. LLF: 155.3724866034506
Iteration: 2, Func. Count: 24, Neg. LLF: 160.8752385176809
Iteration: 3, Func. Count: 36, Neg. LLF: 151.66396673409574
Iteration: 4, Func. Count: 47, Neg. LLF: 151.38778906302863
Iteration: 5, Func. Count: 58, Neg. LLF: 152.08666875630928
Iteration: 6, Func. Count: 70, Neg. LLF: 150.16331240303995
Iteration: 7, Func. Count: 81, Neg. LLF: 147.74271529142231
Iteration: 8, Func. Count: 92, Neg. LLF: 170.77223878285793
Iteration: 9, Func. Count: 104, Neg. LLF: 10495.477334939487
Iteration: 10, Func. Count: 116, Neg. LLF: 172.35483209071316
Iteration: 11, Func. Count: 128, Neg. LLF: 595306.3576561502
Iteration: 12, Func. Count: 140, Neg. LLF: 187.21462666999918
Iteration: 13, Func. Count: 152, Neg. LLF: 281.8801814480429
Iteration: 14, Func. Count: 164, Neg. LLF: 195.9644308227517
Iteration: 15, Func. Count: 176, Neg. LLF: 268.03756980180225
Iteration: 16, Func. Count: 188, Neg. LLF: 217.30437856949482
Iteration: 17, Func. Count: 200, Neg. LLF: 270.89125975774107
Iteration: 18, Func. Count: 212, Neg. LLF: 260.6126224138176
Iteration: 19, Func. Count: 224, Neg. LLF: 146.81118813864234
Iteration: 20, Func. Count: 236, Neg. LLF: 144.28264789338775
Iteration: 21, Func. Count: 248, Neg. LLF: 143.99965010262142
Iteration: 22, Func. Count: 259, Neg. LLF: 143.97100568999568
Iteration: 23, Func. Count: 270, Neg. LLF: 143.96168360014207
Iteration: 24, Func. Count: 281, Neg. LLF: 143.95269995216015
Iteration: 25, Func. Count: 292, Neg. LLF: 143.95170314562458
Iteration: 26, Func. Count: 303, Neg. LLF: 143.95150835676444
Iteration: 27, Func. Count: 314, Neg. LLF: 143.9515047600388
Iteration: 28, Func. Count: 324, Neg. LLF: 143.95150457853862
Optimization terminated successfully (Exit mode 0)
Current function value: 143.9515047600388
Iterations: 28
Function evaluations: 324
Gradient evaluations: 28
Iteration: 1, Func. Count: 13, Neg. LLF: 283.2858567820908
Iteration: 2, Func. Count: 26, Neg. LLF: 166.94523783672392
Iteration: 3, Func. Count: 40, Neg. LLF: 147.30565015593612
Iteration: 4, Func. Count: 52, Neg. LLF: 146.90048211412113
Iteration: 5, Func. Count: 64, Neg. LLF: 146.8900574476595
Iteration: 6, Func. Count: 77, Neg. LLF: 146.811681765744
Iteration: 7, Func. Count: 89, Neg. LLF: 146.79857840809478
Iteration: 8, Func. Count: 101, Neg. LLF: 146.79796089113944
Iteration: 9, Func. Count: 113, Neg. LLF: 146.7979393266216
Iteration: 10, Func. Count: 125, Neg. LLF: 146.79792895036633
Iteration: 11, Func. Count: 137, Neg. LLF: 146.79789915775075
Iteration: 12, Func. Count: 149, Neg. LLF: 146.79787705256427
Iteration: 13, Func. Count: 161, Neg. LLF: 146.79786698720744
Iteration: 14, Func. Count: 173, Neg. LLF: 146.79786571466184
Iteration: 15, Func. Count: 184, Neg. LLF: 146.7978656126766
Optimization terminated successfully (Exit mode 0)
Current function value: 146.79786571466184
Iterations: 15
Function evaluations: 184
Gradient evaluations: 15
Iteration: 1, Func. Count: 14, Neg. LLF: 167.32644255754397
Iteration: 2, Func. Count: 28, Neg. LLF: 212.752697810235
Iteration: 3, Func. Count: 42, Neg. LLF: 168.06978006945505
Iteration: 4, Func. Count: 56, Neg. LLF: 155.89261509244906
Iteration: 5, Func. Count: 70, Neg. LLF: 150.3430083081556
Iteration: 6, Func. Count: 84, Neg. LLF: 159.02234901351432
Iteration: 7, Func. Count: 98, Neg. LLF: 146.868295797495
Iteration: 8, Func. Count: 111, Neg. LLF: 146.4537120935466
Iteration: 9, Func. Count: 124, Neg. LLF: 155.86854198829533
Iteration: 10, Func. Count: 140, Neg. LLF: 145.36740677412445
Iteration: 11, Func. Count: 153, Neg. LLF: 144.91115908833956
Iteration: 12, Func. Count: 166, Neg. LLF: 144.42645840977187
Iteration: 13, Func. Count: 179, Neg. LLF: 144.49369548396538
Iteration: 14, Func. Count: 193, Neg. LLF: 144.34789850661974
Iteration: 15, Func. Count: 207, Neg. LLF: 144.03192270259095
Iteration: 16, Func. Count: 220, Neg. LLF: 143.97103530883476
Iteration: 17, Func. Count: 233, Neg. LLF: 143.9580743409767
Iteration: 18, Func. Count: 246, Neg. LLF: 143.95385079748692
Iteration: 19, Func. Count: 259, Neg. LLF: 143.95265912100658
Iteration: 20, Func. Count: 272, Neg. LLF: 143.95174779171703
Iteration: 21, Func. Count: 285, Neg. LLF: 143.95151769585416
Iteration: 22, Func. Count: 298, Neg. LLF: 143.9515049641169
Iteration: 23, Func. Count: 310, Neg. LLF: 143.9515050263961
Optimization terminated successfully (Exit mode 0)
Current function value: 143.9515049641169
Iterations: 23
Function evaluations: 310
Gradient evaluations: 23
Iteration: 1, Func. Count: 15, Neg. LLF: 160.7102276372418
Iteration: 2, Func. Count: 30, Neg. LLF: 152.5974337081137
Iteration: 3, Func. Count: 45, Neg. LLF: 148.65162559515275
Iteration: 4, Func. Count: 60, Neg. LLF: 144.88388531689694
Iteration: 5, Func. Count: 74, Neg. LLF: 148.53208716622515
Iteration: 6, Func. Count: 89, Neg. LLF: 144.9820854509745
Iteration: 7, Func. Count: 104, Neg. LLF: 144.57901529476584
Iteration: 8, Func. Count: 119, Neg. LLF: 144.3493883456685
Iteration: 9, Func. Count: 133, Neg. LLF: 144.35109803391185
Iteration: 10, Func. Count: 148, Neg. LLF: 144.3041048489431
Iteration: 11, Func. Count: 162, Neg. LLF: 144.30268404505583
Iteration: 12, Func. Count: 176, Neg. LLF: 144.30245338057864
Iteration: 13, Func. Count: 190, Neg. LLF: 144.30245163096248
Iteration: 14, Func. Count: 203, Neg. LLF: 144.30245153007036
Optimization terminated successfully (Exit mode 0)
Current function value: 144.30245163096248
Iterations: 14
Function evaluations: 203
Gradient evaluations: 14
Iteration: 1, Func. Count: 16, Neg. LLF: 160.04014062536473
Iteration: 2, Func. Count: 32, Neg. LLF: 150.23195302089954
Iteration: 3, Func. Count: 48, Neg. LLF: 158.19430510650096
Iteration: 4, Func. Count: 64, Neg. LLF: 157.8918076171726
Iteration: 5, Func. Count: 80, Neg. LLF: 152.0576899776399
Iteration: 6, Func. Count: 96, Neg. LLF: 151.6915430316808
Iteration: 7, Func. Count: 112, Neg. LLF: 145.34301655158765
Iteration: 8, Func. Count: 128, Neg. LLF: 144.13185830199095
Iteration: 9, Func. Count: 143, Neg. LLF: 144.88627840922913
Iteration: 10, Func. Count: 159, Neg. LLF: 144.05559003548117
Iteration: 11, Func. Count: 174, Neg. LLF: 144.02597004398416
Iteration: 12, Func. Count: 189, Neg. LLF: 144.01883311089605
Iteration: 13, Func. Count: 204, Neg. LLF: 144.01682306538123
Iteration: 14, Func. Count: 219, Neg. LLF: 144.0167804865491
Iteration: 15, Func. Count: 235, Neg. LLF: 144.0165009779061
Iteration: 16, Func. Count: 250, Neg. LLF: 144.01649872816523
Iteration: 17, Func. Count: 264, Neg. LLF: 144.0164986356958
Optimization terminated successfully (Exit mode 0)
Current function value: 144.01649872816523
Iterations: 17
Function evaluations: 264
Gradient evaluations: 17
Iteration: 1, Func. Count: 6, Neg. LLF: 1115.542645192306
Iteration: 2, Func. Count: 12, Neg. LLF: 168.42463840073856
Iteration: 3, Func. Count: 19, Neg. LLF: 146.9714865905223
Iteration: 4, Func. Count: 24, Neg. LLF: 146.88197181097098
Iteration: 5, Func. Count: 29, Neg. LLF: 146.86713233056426
Iteration: 6, Func. Count: 34, Neg. LLF: 146.86243858372595
Iteration: 7, Func. Count: 39, Neg. LLF: 146.86219347905072
Iteration: 8, Func. Count: 44, Neg. LLF: 146.86218413805562
Iteration: 9, Func. Count: 48, Neg. LLF: 146.86218398090446
Optimization terminated successfully (Exit mode 0)
Current function value: 146.86218413805562
Iterations: 9
Function evaluations: 48
Gradient evaluations: 9
Iteration: 1, Func. Count: 5, Neg. LLF: 163.78438476594377
Iteration: 2, Func. Count: 10, Neg. LLF: 163.36205749322576
Iteration: 3, Func. Count: 15, Neg. LLF: 162.18437904041662
Iteration: 4, Func. Count: 19, Neg. LLF: 161.5145703468146
Iteration: 5, Func. Count: 23, Neg. LLF: 161.16296288464395
Iteration: 6, Func. Count: 27, Neg. LLF: 161.09921047961595
Iteration: 7, Func. Count: 31, Neg. LLF: 161.0934180945104
Iteration: 8, Func. Count: 35, Neg. LLF: 161.09301562212005
Iteration: 9, Func. Count: 39, Neg. LLF: 161.0927396598925
Iteration: 10, Func. Count: 43, Neg. LLF: 161.09264084307318
Iteration: 11, Func. Count: 47, Neg. LLF: 161.0926272736523
Iteration: 12, Func. Count: 50, Neg. LLF: 161.0926272736508
Optimization terminated successfully (Exit mode 0)
Current function value: 161.0926272736523
Iterations: 12
Function evaluations: 50
Gradient evaluations: 12
Iteration: 1, Func. Count: 6, Neg. LLF: 14945059.334611168
Iteration: 2, Func. Count: 12, Neg. LLF: 152.21737040537212
Iteration: 3, Func. Count: 18, Neg. LLF: 151.15524333289773
Iteration: 4, Func. Count: 24, Neg. LLF: 149.83985766893923
Iteration: 5, Func. Count: 29, Neg. LLF: 149.82990127709795
Iteration: 6, Func. Count: 34, Neg. LLF: 149.82699421998328
Iteration: 7, Func. Count: 39, Neg. LLF: 149.82607372892127
Iteration: 8, Func. Count: 44, Neg. LLF: 149.8259603317079
Iteration: 9, Func. Count: 49, Neg. LLF: 149.8259592216277
Iteration: 10, Func. Count: 53, Neg. LLF: 149.82595894654068
Optimization terminated successfully (Exit mode 0)
Current function value: 149.8259592216277
Iterations: 10
Function evaluations: 53
Gradient evaluations: 10
Iteration: 1, Func. Count: 7, Neg. LLF: 816.5565434400348
Iteration: 2, Func. Count: 14, Neg. LLF: 14654737.551773367
Iteration: 3, Func. Count: 22, Neg. LLF: 155.94695092288237
Iteration: 4, Func. Count: 29, Neg. LLF: 152.01523315923257
Iteration: 5, Func. Count: 36, Neg. LLF: 150.0117332781983
Iteration: 6, Func. Count: 42, Neg. LLF: 149.8817049719236
Iteration: 7, Func. Count: 48, Neg. LLF: 149.8308362458699
Iteration: 8, Func. Count: 54, Neg. LLF: 149.8260568929508
Iteration: 9, Func. Count: 60, Neg. LLF: 149.82598082246653
Iteration: 10, Func. Count: 66, Neg. LLF: 149.825960319946
Iteration: 11, Func. Count: 72, Neg. LLF: 149.82595923439754
Iteration: 12, Func. Count: 77, Neg. LLF: 149.8259589701215
Optimization terminated successfully (Exit mode 0)
Current function value: 149.82595923439754
Iterations: 12
Function evaluations: 77
Gradient evaluations: 12
Iteration: 1, Func. Count: 8, Neg. LLF: 422.1965987416307
Iteration: 2, Func. Count: 16, Neg. LLF: 14902225.30428596
Iteration: 3, Func. Count: 24, Neg. LLF: 154.75329733756917
Iteration: 4, Func. Count: 32, Neg. LLF: 152.98958005022584
Iteration: 5, Func. Count: 40, Neg. LLF: 150.1644427887505
Iteration: 6, Func. Count: 47, Neg. LLF: 149.98897704737814
Iteration: 7, Func. Count: 54, Neg. LLF: 149.88931346264422
Iteration: 8, Func. Count: 61, Neg. LLF: 149.82979460911523
Iteration: 9, Func. Count: 68, Neg. LLF: 149.8261814157952
Iteration: 10, Func. Count: 75, Neg. LLF: 149.82597267904006
Iteration: 11, Func. Count: 82, Neg. LLF: 149.82595949759593
Iteration: 12, Func. Count: 88, Neg. LLF: 149.82595924639733
Optimization terminated successfully (Exit mode 0)
Current function value: 149.82595949759593
Iterations: 12
Function evaluations: 88
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 374.7312798492392
Iteration: 2, Func. Count: 18, Neg. LLF: 14927878.051538076
Iteration: 3, Func. Count: 27, Neg. LLF: 159.16374580573785
Iteration: 4, Func. Count: 36, Neg. LLF: 175.03235586194634
Iteration: 5, Func. Count: 45, Neg. LLF: 153.7225531765575
Iteration: 6, Func. Count: 54, Neg. LLF: 150.08960303083893
Iteration: 7, Func. Count: 62, Neg. LLF: 150.07895480233492
Iteration: 8, Func. Count: 70, Neg. LLF: 149.8827717856308
Iteration: 9, Func. Count: 78, Neg. LLF: 150.66303621305852
Iteration: 10, Func. Count: 87, Neg. LLF: 149.82758743620255
Iteration: 11, Func. Count: 95, Neg. LLF: 149.82605843979206
Iteration: 12, Func. Count: 103, Neg. LLF: 149.82595981881624
Iteration: 13, Func. Count: 111, Neg. LLF: 149.82595919643137
Optimization terminated successfully (Exit mode 0)
Current function value: 149.82595919643137
Iterations: 13
Function evaluations: 111
Gradient evaluations: 13
Iteration: 1, Func. Count: 6, Neg. LLF: 163.01022362362556
Iteration: 2, Func. Count: 12, Neg. LLF: 169.88765232496687
Iteration: 3, Func. Count: 18, Neg. LLF: 159.3053428095061
Iteration: 4, Func. Count: 23, Neg. LLF: 159.07316896025714
Iteration: 5, Func. Count: 28, Neg. LLF: 159.0631484215833
Iteration: 6, Func. Count: 33, Neg. LLF: 159.05508670034828
Iteration: 7, Func. Count: 38, Neg. LLF: 159.0402005680461
Iteration: 8, Func. Count: 43, Neg. LLF: 159.03931911727634
Iteration: 9, Func. Count: 48, Neg. LLF: 159.03873600485258
Iteration: 10, Func. Count: 53, Neg. LLF: 159.03714985243607
Iteration: 11, Func. Count: 58, Neg. LLF: 159.035962328457
Iteration: 12, Func. Count: 63, Neg. LLF: 159.03540174544855
Iteration: 13, Func. Count: 68, Neg. LLF: 159.03533201776173
Iteration: 14, Func. Count: 73, Neg. LLF: 159.03532878651552
Iteration: 15, Func. Count: 77, Neg. LLF: 159.03532878651805
Optimization terminated successfully (Exit mode 0)
Current function value: 159.03532878651552
Iterations: 15
Function evaluations: 77
Gradient evaluations: 15
Iteration: 1, Func. Count: 7, Neg. LLF: 15103327.529764928
Iteration: 2, Func. Count: 14, Neg. LLF: 152.46574125649204
Iteration: 3, Func. Count: 21, Neg. LLF: 152.85181922348409
Iteration: 4, Func. Count: 28, Neg. LLF: 149.7489925844345
Iteration: 5, Func. Count: 34, Neg. LLF: 149.69081650794334
Iteration: 6, Func. Count: 40, Neg. LLF: 149.67650376058532
Iteration: 7, Func. Count: 46, Neg. LLF: 149.67202411169515
Iteration: 8, Func. Count: 52, Neg. LLF: 149.67196736358372
Iteration: 9, Func. Count: 58, Neg. LLF: 149.67196554812998
Iteration: 10, Func. Count: 63, Neg. LLF: 149.67196531974503
Optimization terminated successfully (Exit mode 0)
Current function value: 149.67196554812998
Iterations: 10
Function evaluations: 63
Gradient evaluations: 10
Iteration: 1, Func. Count: 8, Neg. LLF: 624.9875485285759
Iteration: 2, Func. Count: 16, Neg. LLF: 10943104.495356508
Iteration: 3, Func. Count: 25, Neg. LLF: 154.05432401843638
Iteration: 4, Func. Count: 33, Neg. LLF: 150.4083832220778
Iteration: 5, Func. Count: 41, Neg. LLF: 150.38013546416153
Iteration: 6, Func. Count: 49, Neg. LLF: 149.70833243035713
Iteration: 7, Func. Count: 56, Neg. LLF: 149.66954261517492
Iteration: 8, Func. Count: 63, Neg. LLF: 149.67860189034144
Iteration: 9, Func. Count: 71, Neg. LLF: 149.66566320889572
Iteration: 10, Func. Count: 78, Neg. LLF: 149.66487813084044
Iteration: 11, Func. Count: 85, Neg. LLF: 149.66470743864497
Iteration: 12, Func. Count: 92, Neg. LLF: 149.66469461106288
Iteration: 13, Func. Count: 98, Neg. LLF: 149.66469441863006
Optimization terminated successfully (Exit mode 0)
Current function value: 149.66469461106288
Iterations: 13
Function evaluations: 98
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 435.6482557215503
Iteration: 2, Func. Count: 18, Neg. LLF: 11084685.08885827
Iteration: 3, Func. Count: 27, Neg. LLF: 154.6967271918277
Iteration: 4, Func. Count: 36, Neg. LLF: 152.3271796946541
Iteration: 5, Func. Count: 45, Neg. LLF: 149.85468053892916
Iteration: 6, Func. Count: 53, Neg. LLF: 149.61965660724698
Iteration: 7, Func. Count: 61, Neg. LLF: 149.6097331355988
Iteration: 8, Func. Count: 70, Neg. LLF: 149.57719776101334
Iteration: 9, Func. Count: 78, Neg. LLF: 149.57023086790286
Iteration: 10, Func. Count: 86, Neg. LLF: 149.56823185406193
Iteration: 11, Func. Count: 94, Neg. LLF: 149.5682181162567
Iteration: 12, Func. Count: 101, Neg. LLF: 149.56821796487353
Optimization terminated successfully (Exit mode 0)
Current function value: 149.5682181162567
Iterations: 12
Function evaluations: 101
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 388.8226668851354
Iteration: 2, Func. Count: 20, Neg. LLF: 11059020.772881385
Iteration: 3, Func. Count: 30, Neg. LLF: 154.50120799781857
Iteration: 4, Func. Count: 40, Neg. LLF: 179.27514183927534
Iteration: 5, Func. Count: 50, Neg. LLF: 149.7733308419694
Iteration: 6, Func. Count: 59, Neg. LLF: 149.6335129609706
Iteration: 7, Func. Count: 68, Neg. LLF: 149.65335994707718
Iteration: 8, Func. Count: 78, Neg. LLF: 149.56970870318423
Iteration: 9, Func. Count: 87, Neg. LLF: 149.5687601835534
Iteration: 10, Func. Count: 96, Neg. LLF: 149.5682573027514
Iteration: 11, Func. Count: 105, Neg. LLF: 149.56822114233074
Iteration: 12, Func. Count: 114, Neg. LLF: 149.5682180868766
Iteration: 13, Func. Count: 122, Neg. LLF: 149.56821793856165
Optimization terminated successfully (Exit mode 0)
Current function value: 149.5682180868766
Iterations: 13
Function evaluations: 122
Gradient evaluations: 13
Iteration: 1, Func. Count: 7, Neg. LLF: 163.25040726549778
Iteration: 2, Func. Count: 14, Neg. LLF: 163.24286214916478
Iteration: 3, Func. Count: 22, Neg. LLF: 160.8111649041931
Iteration: 4, Func. Count: 29, Neg. LLF: 157.78508974177254
Iteration: 5, Func. Count: 36, Neg. LLF: 157.33622085794195
Iteration: 6, Func. Count: 42, Neg. LLF: 157.2363918246868
Iteration: 7, Func. Count: 48, Neg. LLF: 157.11744674672457
Iteration: 8, Func. Count: 54, Neg. LLF: 156.92262553228468
Iteration: 9, Func. Count: 60, Neg. LLF: 156.64877884892846
Iteration: 10, Func. Count: 66, Neg. LLF: 156.51357535066288
Iteration: 11, Func. Count: 72, Neg. LLF: 156.4871609427056
Iteration: 12, Func. Count: 78, Neg. LLF: 156.4835983506072
Iteration: 13, Func. Count: 84, Neg. LLF: 156.48341403013598
Iteration: 14, Func. Count: 90, Neg. LLF: 156.4833520296168
Iteration: 15, Func. Count: 96, Neg. LLF: 156.48333311289102
Iteration: 16, Func. Count: 102, Neg. LLF: 156.48332568814516
Iteration: 17, Func. Count: 108, Neg. LLF: 156.48332345323155
Iteration: 18, Func. Count: 114, Neg. LLF: 156.48332244140593
Iteration: 19, Func. Count: 119, Neg. LLF: 156.4833224414055
Optimization terminated successfully (Exit mode 0)
Current function value: 156.48332244140593
Iterations: 19
Function evaluations: 119
Gradient evaluations: 19
Iteration: 1, Func. Count: 8, Neg. LLF: 1018.5273589194514
Iteration: 2, Func. Count: 16, Neg. LLF: 188.13759237438467
Iteration: 3, Func. Count: 24, Neg. LLF: 150.79212289888173
Iteration: 4, Func. Count: 32, Neg. LLF: 151.32728264012974
Iteration: 5, Func. Count: 40, Neg. LLF: 149.78173223928792
Iteration: 6, Func. Count: 47, Neg. LLF: 149.69174286017162
Iteration: 7, Func. Count: 54, Neg. LLF: 149.68631637495065
Iteration: 8, Func. Count: 62, Neg. LLF: 149.6720348861055
Iteration: 9, Func. Count: 69, Neg. LLF: 149.6719562382956
Iteration: 10, Func. Count: 75, Neg. LLF: 149.6719560099822
Optimization terminated successfully (Exit mode 0)
Current function value: 149.6719562382956
Iterations: 10
Function evaluations: 75
Gradient evaluations: 10
Iteration: 1, Func. Count: 9, Neg. LLF: 407.8666235512278
Iteration: 2, Func. Count: 18, Neg. LLF: 11019589.161408558
Iteration: 3, Func. Count: 27, Neg. LLF: 169.71192986399944
Iteration: 4, Func. Count: 36, Neg. LLF: 150.33953317206527
Iteration: 5, Func. Count: 44, Neg. LLF: 151.84607909476534
Iteration: 6, Func. Count: 53, Neg. LLF: 154.37649661043324
Iteration: 7, Func. Count: 62, Neg. LLF: 149.7354448188817
Iteration: 8, Func. Count: 70, Neg. LLF: 149.72210311560022
Iteration: 9, Func. Count: 79, Neg. LLF: 149.67031836786097
Iteration: 10, Func. Count: 87, Neg. LLF: 149.66838943219906
Iteration: 11, Func. Count: 95, Neg. LLF: 149.66787892461141
Iteration: 12, Func. Count: 103, Neg. LLF: 149.66723230586118
Iteration: 13, Func. Count: 111, Neg. LLF: 149.66624142723833
Iteration: 14, Func. Count: 119, Neg. LLF: 149.66546441806236
Iteration: 15, Func. Count: 127, Neg. LLF: 149.66456123801134
Iteration: 16, Func. Count: 135, Neg. LLF: 149.66417338038352
Iteration: 17, Func. Count: 143, Neg. LLF: 149.6641207019746
Iteration: 18, Func. Count: 151, Neg. LLF: 149.66411804602652
Iteration: 19, Func. Count: 159, Neg. LLF: 149.66411736945795
Optimization terminated successfully (Exit mode 0)
Current function value: 149.66411736945795
Iterations: 19
Function evaluations: 159
Gradient evaluations: 19
Iteration: 1, Func. Count: 10, Neg. LLF: 347.8798016319516
Iteration: 2, Func. Count: 20, Neg. LLF: 11590279.374080004
Iteration: 3, Func. Count: 30, Neg. LLF: 192.47491890418405
Iteration: 4, Func. Count: 40, Neg. LLF: 151.9246767324778
Iteration: 5, Func. Count: 50, Neg. LLF: 152.27432286981522
Iteration: 6, Func. Count: 60, Neg. LLF: 149.82801046305943
Iteration: 7, Func. Count: 69, Neg. LLF: 149.65433067773077
Iteration: 8, Func. Count: 78, Neg. LLF: 149.65465566104407
Iteration: 9, Func. Count: 88, Neg. LLF: 149.53027568140655
Iteration: 10, Func. Count: 97, Neg. LLF: 149.43296196628296
Iteration: 11, Func. Count: 106, Neg. LLF: 149.34027149357274
Iteration: 12, Func. Count: 115, Neg. LLF: 149.2661084149274
Iteration: 13, Func. Count: 124, Neg. LLF: 149.24617614341366
Iteration: 14, Func. Count: 133, Neg. LLF: 149.23860624256545
Iteration: 15, Func. Count: 142, Neg. LLF: 149.2362773815364
Iteration: 16, Func. Count: 151, Neg. LLF: 149.2356817634794
Iteration: 17, Func. Count: 160, Neg. LLF: 149.2356595653869
Iteration: 18, Func. Count: 169, Neg. LLF: 149.23565896381606
Optimization terminated successfully (Exit mode 0)
Current function value: 149.23565896381606
Iterations: 18
Function evaluations: 169
Gradient evaluations: 18
Iteration: 1, Func. Count: 11, Neg. LLF: 185.10325048296934
Iteration: 2, Func. Count: 22, Neg. LLF: 276.2064666660687
Iteration: 3, Func. Count: 33, Neg. LLF: 150.0596855811185
Iteration: 4, Func. Count: 43, Neg. LLF: 159.2933456754572
Iteration: 5, Func. Count: 54, Neg. LLF: 149.56702383362574
Iteration: 6, Func. Count: 64, Neg. LLF: 149.79234218799542
Iteration: 7, Func. Count: 75, Neg. LLF: 150.07279647070877
Iteration: 8, Func. Count: 86, Neg. LLF: 149.27699312634718
Iteration: 9, Func. Count: 96, Neg. LLF: 149.26198154174838
Iteration: 10, Func. Count: 106, Neg. LLF: 149.23968940559652
Iteration: 11, Func. Count: 116, Neg. LLF: 149.23625421776856
Iteration: 12, Func. Count: 126, Neg. LLF: 149.23566813905597
Iteration: 13, Func. Count: 136, Neg. LLF: 149.23565905152677
Iteration: 14, Func. Count: 145, Neg. LLF: 149.23565897134338
Optimization terminated successfully (Exit mode 0)
Current function value: 149.23565905152677
Iterations: 14
Function evaluations: 145
Gradient evaluations: 14
Iteration: 1, Func. Count: 8, Neg. LLF: 166.41492259536983
Iteration: 2, Func. Count: 17, Neg. LLF: 164.71915099450337
Iteration: 3, Func. Count: 26, Neg. LLF: 164.61728902727583
Iteration: 4, Func. Count: 34, Neg. LLF: 160.0854714082992
Iteration: 5, Func. Count: 42, Neg. LLF: 157.21839071328668
Iteration: 6, Func. Count: 49, Neg. LLF: 157.10934132333284
Iteration: 7, Func. Count: 56, Neg. LLF: 156.90292417669383
Iteration: 8, Func. Count: 63, Neg. LLF: 155.8447775282507
Iteration: 9, Func. Count: 70, Neg. LLF: 155.02433968398788
Iteration: 10, Func. Count: 77, Neg. LLF: 162.36260418394642
Iteration: 11, Func. Count: 85, Neg. LLF: 168.7540137873864
Iteration: 12, Func. Count: 93, Neg. LLF: 167.53291211752853
Iteration: 13, Func. Count: 101, Neg. LLF: 160.9465133265732
Iteration: 14, Func. Count: 109, Neg. LLF: 155.04205915170104
Iteration: 15, Func. Count: 117, Neg. LLF: 153.96102066860536
Iteration: 16, Func. Count: 125, Neg. LLF: 153.89127118600643
Iteration: 17, Func. Count: 133, Neg. LLF: 153.85479631067335
Iteration: 18, Func. Count: 140, Neg. LLF: 153.853086205736
Iteration: 19, Func. Count: 147, Neg. LLF: 153.85228234801792
Iteration: 20, Func. Count: 154, Neg. LLF: 153.85224732275887
Iteration: 21, Func. Count: 161, Neg. LLF: 153.85224551232992
Iteration: 22, Func. Count: 167, Neg. LLF: 153.85224547475545
Optimization terminated successfully (Exit mode 0)
Current function value: 153.85224551232992
Iterations: 22
Function evaluations: 167
Gradient evaluations: 22
Iteration: 1, Func. Count: 9, Neg. LLF: 491.8758996981908
Iteration: 2, Func. Count: 18, Neg. LLF: 2654468.2276969817
Iteration: 3, Func. Count: 27, Neg. LLF: 151.379868358128
Iteration: 4, Func. Count: 36, Neg. LLF: 149.78612995030343
Iteration: 5, Func. Count: 44, Neg. LLF: 150.08787052159414
Iteration: 6, Func. Count: 53, Neg. LLF: 149.75420849512892
Iteration: 7, Func. Count: 62, Neg. LLF: 149.76338505921237
Iteration: 8, Func. Count: 71, Neg. LLF: 149.55709541609303
Iteration: 9, Func. Count: 79, Neg. LLF: 149.55707703154647
Iteration: 10, Func. Count: 87, Neg. LLF: 149.55707389593755
Iteration: 11, Func. Count: 94, Neg. LLF: 149.5570736506266
Optimization terminated successfully (Exit mode 0)
Current function value: 149.55707389593755
Iterations: 11
Function evaluations: 94
Gradient evaluations: 11
Iteration: 1, Func. Count: 10, Neg. LLF: 322.60752863001545
Iteration: 2, Func. Count: 20, Neg. LLF: 1480305.5711012147
Iteration: 3, Func. Count: 30, Neg. LLF: 152.8388616789059
Iteration: 4, Func. Count: 40, Neg. LLF: 150.08084907895525
Iteration: 5, Func. Count: 50, Neg. LLF: 149.6469362312662
Iteration: 6, Func. Count: 59, Neg. LLF: 149.6693035723361
Iteration: 7, Func. Count: 69, Neg. LLF: 149.6301125285793
Iteration: 8, Func. Count: 79, Neg. LLF: 149.6134645288024
Iteration: 9, Func. Count: 88, Neg. LLF: 149.60437220207092
Iteration: 10, Func. Count: 97, Neg. LLF: 149.57344064839418
Iteration: 11, Func. Count: 106, Neg. LLF: 149.55836096978788
Iteration: 12, Func. Count: 115, Neg. LLF: 149.55713733945663
Iteration: 13, Func. Count: 124, Neg. LLF: 149.5570762548319
Iteration: 14, Func. Count: 133, Neg. LLF: 149.55707397522065
Iteration: 15, Func. Count: 141, Neg. LLF: 149.55707373710956
Optimization terminated successfully (Exit mode 0)
Current function value: 149.55707397522065
Iterations: 15
Function evaluations: 141
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 188.04647741786067
Iteration: 2, Func. Count: 22, Neg. LLF: 162.60558225048683
Iteration: 3, Func. Count: 33, Neg. LLF: 153.5248395336614
Iteration: 4, Func. Count: 44, Neg. LLF: 150.66552552563903
Iteration: 5, Func. Count: 54, Neg. LLF: 149.95342511708338
Iteration: 6, Func. Count: 64, Neg. LLF: 157.8333882200657
Iteration: 7, Func. Count: 75, Neg. LLF: 149.44544993812426
Iteration: 8, Func. Count: 85, Neg. LLF: 149.4417290298548
Iteration: 9, Func. Count: 96, Neg. LLF: 149.26273729059645
Iteration: 10, Func. Count: 106, Neg. LLF: 149.23956689565952
Iteration: 11, Func. Count: 116, Neg. LLF: 149.23587237203267
Iteration: 12, Func. Count: 126, Neg. LLF: 149.23569865242155
Iteration: 13, Func. Count: 136, Neg. LLF: 149.23567002596332
Iteration: 14, Func. Count: 146, Neg. LLF: 149.23565918534223
Iteration: 15, Func. Count: 155, Neg. LLF: 149.2356590840332
Optimization terminated successfully (Exit mode 0)
Current function value: 149.23565918534223
Iterations: 15
Function evaluations: 155
Gradient evaluations: 15
Iteration: 1, Func. Count: 12, Neg. LLF: 183.36668640161082
Iteration: 2, Func. Count: 24, Neg. LLF: 263.773712610913
Iteration: 3, Func. Count: 36, Neg. LLF: 152.2544142633498
Iteration: 4, Func. Count: 48, Neg. LLF: 150.17501931323253
Iteration: 5, Func. Count: 59, Neg. LLF: 150.6799177066239
Iteration: 6, Func. Count: 71, Neg. LLF: 152.2732577091419
Iteration: 7, Func. Count: 83, Neg. LLF: 149.39214137564585
Iteration: 8, Func. Count: 94, Neg. LLF: 149.26322068315744
Iteration: 9, Func. Count: 105, Neg. LLF: 149.2453487814139
Iteration: 10, Func. Count: 116, Neg. LLF: 149.23680079211903
Iteration: 11, Func. Count: 127, Neg. LLF: 149.2357967824341
Iteration: 12, Func. Count: 138, Neg. LLF: 149.23567250178985
Iteration: 13, Func. Count: 149, Neg. LLF: 149.23565983066652
Iteration: 14, Func. Count: 160, Neg. LLF: 149.23565893947412
Optimization terminated successfully (Exit mode 0)
Current function value: 149.23565893947412
Iterations: 14
Function evaluations: 160
Gradient evaluations: 14
Iteration: 1, Func. Count: 5, Neg. LLF: 158.39959128685425
Iteration: 2, Func. Count: 9, Neg. LLF: 158.2722020173249
Iteration: 3, Func. Count: 13, Neg. LLF: 158.00420317499604
Iteration: 4, Func. Count: 17, Neg. LLF: 157.94622182230336
Iteration: 5, Func. Count: 21, Neg. LLF: 157.9189759480188
Iteration: 6, Func. Count: 25, Neg. LLF: 157.7797484384325
Iteration: 7, Func. Count: 29, Neg. LLF: 157.6483538037494
Iteration: 8, Func. Count: 33, Neg. LLF: 157.58618074976323
Iteration: 9, Func. Count: 37, Neg. LLF: 157.55547339026887
Iteration: 10, Func. Count: 41, Neg. LLF: 157.5526292001372
Iteration: 11, Func. Count: 45, Neg. LLF: 157.552620617914
Iteration: 12, Func. Count: 49, Neg. LLF: 157.55261975907612
Optimization terminated successfully (Exit mode 0)
Current function value: 157.55261975907612
Iterations: 12
Function evaluations: 49
Gradient evaluations: 12
Iteration: 1, Func. Count: 6, Neg. LLF: 245.97135304371153
Iteration: 2, Func. Count: 12, Neg. LLF: 161.19445904278052
Iteration: 3, Func. Count: 18, Neg. LLF: 155.43752563938435
Iteration: 4, Func. Count: 23, Neg. LLF: 155.3971071425632
Iteration: 5, Func. Count: 28, Neg. LLF: 155.39648774275196
Iteration: 6, Func. Count: 33, Neg. LLF: 155.39644007315061
Iteration: 7, Func. Count: 38, Neg. LLF: 155.39643885491165
Iteration: 8, Func. Count: 42, Neg. LLF: 155.39643877293
Optimization terminated successfully (Exit mode 0)
Current function value: 155.39643885491165
Iterations: 8
Function evaluations: 42
Gradient evaluations: 8
Iteration: 1, Func. Count: 7, Neg. LLF: 208.45216182767388
Iteration: 2, Func. Count: 14, Neg. LLF: 155.69899346228686
Iteration: 3, Func. Count: 21, Neg. LLF: 156.23767401392442
Iteration: 4, Func. Count: 28, Neg. LLF: 155.17204556914206
Iteration: 5, Func. Count: 34, Neg. LLF: 155.14442940904536
Iteration: 6, Func. Count: 40, Neg. LLF: 155.13601458744748
Iteration: 7, Func. Count: 46, Neg. LLF: 155.13694149864244
Iteration: 8, Func. Count: 53, Neg. LLF: 155.1348223720515
Iteration: 9, Func. Count: 59, Neg. LLF: 155.13479418618468
Iteration: 10, Func. Count: 64, Neg. LLF: 155.13479410581905
Optimization terminated successfully (Exit mode 0)
Current function value: 155.13479418618468
Iterations: 10
Function evaluations: 64
Gradient evaluations: 10
Iteration: 1, Func. Count: 8, Neg. LLF: 172.0702630178981
Iteration: 2, Func. Count: 16, Neg. LLF: 154.75721611878706
Iteration: 3, Func. Count: 23, Neg. LLF: 161.8821994871812
Iteration: 4, Func. Count: 31, Neg. LLF: 178.67767687798815
Iteration: 5, Func. Count: 39, Neg. LLF: 153.77997616729215
Iteration: 6, Func. Count: 46, Neg. LLF: 153.5732983733022
Iteration: 7, Func. Count: 53, Neg. LLF: 153.53719809033453
Iteration: 8, Func. Count: 60, Neg. LLF: 153.48798668472088
Iteration: 9, Func. Count: 67, Neg. LLF: 153.4775924403558
Iteration: 10, Func. Count: 74, Neg. LLF: 153.4768030181723
Iteration: 11, Func. Count: 81, Neg. LLF: 153.47677894247408
Iteration: 12, Func. Count: 87, Neg. LLF: 153.47677880838816
Optimization terminated successfully (Exit mode 0)
Current function value: 153.47677894247408
Iterations: 12
Function evaluations: 87
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 170.18150850433094
Iteration: 2, Func. Count: 18, Neg. LLF: 181.99820132351525
Iteration: 3, Func. Count: 27, Neg. LLF: 155.67142918525687
Iteration: 4, Func. Count: 36, Neg. LLF: 153.4809589870452
Iteration: 5, Func. Count: 44, Neg. LLF: 153.51409623777064
Iteration: 6, Func. Count: 53, Neg. LLF: 153.42170532744876
Iteration: 7, Func. Count: 61, Neg. LLF: 153.41658427164438
Iteration: 8, Func. Count: 69, Neg. LLF: 153.4154354815231
Iteration: 9, Func. Count: 77, Neg. LLF: 153.41453030015143
Iteration: 10, Func. Count: 84, Neg. LLF: 153.41453018815923
Optimization terminated successfully (Exit mode 0)
Current function value: 153.41453030015143
Iterations: 10
Function evaluations: 84
Gradient evaluations: 10
Iteration: 1, Func. Count: 6, Neg. LLF: 158.40120286135294
Iteration: 2, Func. Count: 11, Neg. LLF: 158.70594489476736
Iteration: 3, Func. Count: 17, Neg. LLF: 157.82018982966702
Iteration: 4, Func. Count: 22, Neg. LLF: 157.72196726123812
Iteration: 5, Func. Count: 27, Neg. LLF: 157.65015904505373
Iteration: 6, Func. Count: 32, Neg. LLF: 157.59445766105756
Iteration: 7, Func. Count: 37, Neg. LLF: 157.5539044684493
Iteration: 8, Func. Count: 42, Neg. LLF: 157.35688610133886
Iteration: 9, Func. Count: 47, Neg. LLF: 157.25610317465046
Iteration: 10, Func. Count: 52, Neg. LLF: 157.2317798627346
Iteration: 11, Func. Count: 57, Neg. LLF: 157.23047942766513
Iteration: 12, Func. Count: 62, Neg. LLF: 157.2304374496813
Iteration: 13, Func. Count: 67, Neg. LLF: 157.23043482278126
Iteration: 14, Func. Count: 71, Neg. LLF: 157.23043482253124
Optimization terminated successfully (Exit mode 0)
Current function value: 157.23043482278126
Iterations: 14
Function evaluations: 71
Gradient evaluations: 14
Iteration: 1, Func. Count: 7, Neg. LLF: 15023518.378280897
Iteration: 2, Func. Count: 14, Neg. LLF: 152.43017681898252
Iteration: 3, Func. Count: 21, Neg. LLF: 151.120735772216
Iteration: 4, Func. Count: 28, Neg. LLF: 149.84328529143332
Iteration: 5, Func. Count: 34, Neg. LLF: 149.82654229924262
Iteration: 6, Func. Count: 40, Neg. LLF: 149.82613383068121
Iteration: 7, Func. Count: 46, Neg. LLF: 149.82601556515826
Iteration: 8, Func. Count: 52, Neg. LLF: 149.8259595230132
Iteration: 9, Func. Count: 57, Neg. LLF: 149.82595924799833
Optimization terminated successfully (Exit mode 0)
Current function value: 149.8259595230132
Iterations: 9
Function evaluations: 57
Gradient evaluations: 9
Iteration: 1, Func. Count: 8, Neg. LLF: 647.7906808333441
Iteration: 2, Func. Count: 16, Neg. LLF: 152.92939939255288
Iteration: 3, Func. Count: 24, Neg. LLF: 150.53903297046162
Iteration: 4, Func. Count: 31, Neg. LLF: 151.57971235188418
Iteration: 5, Func. Count: 39, Neg. LLF: 151.08306689067533
Iteration: 6, Func. Count: 47, Neg. LLF: 150.6061492535641
Iteration: 7, Func. Count: 55, Neg. LLF: 149.8928866680679
Iteration: 8, Func. Count: 62, Neg. LLF: 149.83379193862584
Iteration: 9, Func. Count: 69, Neg. LLF: 149.8296031077355
Iteration: 10, Func. Count: 76, Neg. LLF: 149.8259888190284
Iteration: 11, Func. Count: 83, Neg. LLF: 149.82596120714723
Iteration: 12, Func. Count: 90, Neg. LLF: 149.82595867925662
Iteration: 13, Func. Count: 96, Neg. LLF: 149.82595841501816
Optimization terminated successfully (Exit mode 0)
Current function value: 149.82595867925662
Iterations: 13
Function evaluations: 96
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 650.7077649691463
Iteration: 2, Func. Count: 18, Neg. LLF: 150.52485791600765
Iteration: 3, Func. Count: 26, Neg. LLF: 150.7881835204675
Iteration: 4, Func. Count: 35, Neg. LLF: 152.19321488805184
Iteration: 5, Func. Count: 44, Neg. LLF: 150.0968791442784
Iteration: 6, Func. Count: 52, Neg. LLF: 149.85108529437088
Iteration: 7, Func. Count: 60, Neg. LLF: 149.83589653477418
Iteration: 8, Func. Count: 68, Neg. LLF: 149.83708938570308
Iteration: 9, Func. Count: 77, Neg. LLF: 149.82611513563103
Iteration: 10, Func. Count: 85, Neg. LLF: 149.82595701792954
Iteration: 11, Func. Count: 93, Neg. LLF: 149.8259579343967
Optimization terminated successfully (Exit mode 0)
Current function value: 149.8259579343967
Iterations: 11
Function evaluations: 93
Gradient evaluations: 11
Iteration: 1, Func. Count: 10, Neg. LLF: 612.9396705375092
Iteration: 2, Func. Count: 20, Neg. LLF: 152.9879237786929
Iteration: 3, Func. Count: 30, Neg. LLF: 151.2776025125789
Iteration: 4, Func. Count: 39, Neg. LLF: 150.5096011519759
Iteration: 5, Func. Count: 48, Neg. LLF: 150.48502725744768
Iteration: 6, Func. Count: 58, Neg. LLF: 150.69052193496188
Iteration: 7, Func. Count: 68, Neg. LLF: 150.272466229105
Iteration: 8, Func. Count: 78, Neg. LLF: 149.96988371790243
Iteration: 9, Func. Count: 87, Neg. LLF: 149.94005924560904
Iteration: 10, Func. Count: 96, Neg. LLF: 149.83451281282922
Iteration: 11, Func. Count: 105, Neg. LLF: 149.82640050472924
Iteration: 12, Func. Count: 114, Neg. LLF: 149.82596661058034
Iteration: 13, Func. Count: 123, Neg. LLF: 149.82595920235948
Iteration: 14, Func. Count: 131, Neg. LLF: 149.82595898431586
Optimization terminated successfully (Exit mode 0)
Current function value: 149.82595920235948
Iterations: 14
Function evaluations: 131
Gradient evaluations: 14
Iteration: 1, Func. Count: 7, Neg. LLF: 162.32861363025523
Iteration: 2, Func. Count: 14, Neg. LLF: 159.0117181365525
Iteration: 3, Func. Count: 21, Neg. LLF: 158.1898430461653
Iteration: 4, Func. Count: 28, Neg. LLF: 157.7411655666888
Iteration: 5, Func. Count: 34, Neg. LLF: 157.697388106588
Iteration: 6, Func. Count: 40, Neg. LLF: 157.5843233657822
Iteration: 7, Func. Count: 46, Neg. LLF: 157.5252324107738
Iteration: 8, Func. Count: 52, Neg. LLF: 157.3959832950529
Iteration: 9, Func. Count: 58, Neg. LLF: 157.3219441839199
Iteration: 10, Func. Count: 64, Neg. LLF: 157.23246176827553
Iteration: 11, Func. Count: 70, Neg. LLF: 157.23059426842295
Iteration: 12, Func. Count: 76, Neg. LLF: 157.23043856776445
Iteration: 13, Func. Count: 82, Neg. LLF: 157.23043477322764
Iteration: 14, Func. Count: 87, Neg. LLF: 157.2304348400764
Optimization terminated successfully (Exit mode 0)
Current function value: 157.23043477322764
Iterations: 14
Function evaluations: 87
Gradient evaluations: 14
Iteration: 1, Func. Count: 8, Neg. LLF: 15440511.92581842
Iteration: 2, Func. Count: 16, Neg. LLF: 152.76661077918354
Iteration: 3, Func. Count: 24, Neg. LLF: 151.10589231907082
Iteration: 4, Func. Count: 32, Neg. LLF: 150.01062654611772
Iteration: 5, Func. Count: 39, Neg. LLF: 149.71663517373509
Iteration: 6, Func. Count: 46, Neg. LLF: 149.75686296465307
Iteration: 7, Func. Count: 54, Neg. LLF: 149.672592625848
Iteration: 8, Func. Count: 61, Neg. LLF: 149.67207759086787
Iteration: 9, Func. Count: 68, Neg. LLF: 149.67197313262307
Iteration: 10, Func. Count: 75, Neg. LLF: 149.67196557869377
Iteration: 11, Func. Count: 81, Neg. LLF: 149.67196535030791
Optimization terminated successfully (Exit mode 0)
Current function value: 149.67196557869377
Iterations: 11
Function evaluations: 81
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 290.05383986212763
Iteration: 2, Func. Count: 18, Neg. LLF: 155.20919544936447
Iteration: 3, Func. Count: 27, Neg. LLF: 151.35265133917062
Iteration: 4, Func. Count: 35, Neg. LLF: 151.29400320773095
Iteration: 5, Func. Count: 44, Neg. LLF: 153.22718570462717
Iteration: 6, Func. Count: 53, Neg. LLF: 149.80481199822609
Iteration: 7, Func. Count: 62, Neg. LLF: 149.70975875974622
Iteration: 8, Func. Count: 70, Neg. LLF: 149.6858178714597
Iteration: 9, Func. Count: 78, Neg. LLF: 149.6728181955186
Iteration: 10, Func. Count: 86, Neg. LLF: 149.6656751462448
Iteration: 11, Func. Count: 94, Neg. LLF: 149.66472888445344
Iteration: 12, Func. Count: 102, Neg. LLF: 149.6646954373968
Iteration: 13, Func. Count: 110, Neg. LLF: 149.66469453016953
Optimization terminated successfully (Exit mode 0)
Current function value: 149.66469453016953
Iterations: 13
Function evaluations: 110
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 306.7959676308447
Iteration: 2, Func. Count: 20, Neg. LLF: 153.81344189505802
Iteration: 3, Func. Count: 30, Neg. LLF: 153.70423147939263
Iteration: 4, Func. Count: 40, Neg. LLF: 150.76941604297141
Iteration: 5, Func. Count: 50, Neg. LLF: 149.65212641897887
Iteration: 6, Func. Count: 59, Neg. LLF: 150.17121789553434
Iteration: 7, Func. Count: 69, Neg. LLF: 149.63759263443407
Iteration: 8, Func. Count: 79, Neg. LLF: 149.56941418605984
Iteration: 9, Func. Count: 88, Neg. LLF: 149.56880786191775
Iteration: 10, Func. Count: 97, Neg. LLF: 149.56834336730287
Iteration: 11, Func. Count: 106, Neg. LLF: 149.5682539801296
Iteration: 12, Func. Count: 115, Neg. LLF: 149.56821867541586
Iteration: 13, Func. Count: 124, Neg. LLF: 149.56821808048457
Optimization terminated successfully (Exit mode 0)
Current function value: 149.56821808048457
Iterations: 13
Function evaluations: 124
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 295.51009926105064
Iteration: 2, Func. Count: 22, Neg. LLF: 151.26682066184762
Iteration: 3, Func. Count: 32, Neg. LLF: 158.67963805682683
Iteration: 4, Func. Count: 44, Neg. LLF: 157.00731944206663
Iteration: 5, Func. Count: 55, Neg. LLF: 150.65373174372087
Iteration: 6, Func. Count: 66, Neg. LLF: 149.78327762051194
Iteration: 7, Func. Count: 77, Neg. LLF: 149.89227399750663
Iteration: 8, Func. Count: 88, Neg. LLF: 149.58238957418612
Iteration: 9, Func. Count: 98, Neg. LLF: 149.55079968955994
Iteration: 10, Func. Count: 108, Neg. LLF: 149.54838344070274
Iteration: 11, Func. Count: 118, Neg. LLF: 149.54784113104867
Iteration: 12, Func. Count: 128, Neg. LLF: 149.5477732386118
Iteration: 13, Func. Count: 138, Neg. LLF: 149.54756648931783
Iteration: 14, Func. Count: 148, Neg. LLF: 149.5475502159305
Iteration: 15, Func. Count: 158, Neg. LLF: 149.54754957341237
Optimization terminated successfully (Exit mode 0)
Current function value: 149.54754957341237
Iterations: 15
Function evaluations: 158
Gradient evaluations: 15
Iteration: 1, Func. Count: 8, Neg. LLF: 163.29898872713585
Iteration: 2, Func. Count: 17, Neg. LLF: 160.66786682787492
Iteration: 3, Func. Count: 25, Neg. LLF: 158.2404597057675
Iteration: 4, Func. Count: 34, Neg. LLF: 156.72698674297578
Iteration: 5, Func. Count: 41, Neg. LLF: 156.49375534672967
Iteration: 6, Func. Count: 48, Neg. LLF: 156.35689605867606
Iteration: 7, Func. Count: 55, Neg. LLF: 155.5972959519952
Iteration: 8, Func. Count: 62, Neg. LLF: 154.87659577999804
Iteration: 9, Func. Count: 69, Neg. LLF: 154.38898921942064
Iteration: 10, Func. Count: 76, Neg. LLF: 154.00244765282918
Iteration: 11, Func. Count: 83, Neg. LLF: 153.96520036687392
Iteration: 12, Func. Count: 90, Neg. LLF: 153.9622954297557
Iteration: 13, Func. Count: 97, Neg. LLF: 153.95710007794082
Iteration: 14, Func. Count: 104, Neg. LLF: 153.95685314599524
Iteration: 15, Func. Count: 111, Neg. LLF: 153.95683896788174
Iteration: 16, Func. Count: 118, Neg. LLF: 153.95683813284487
Optimization terminated successfully (Exit mode 0)
Current function value: 153.95683813284487
Iterations: 16
Function evaluations: 118
Gradient evaluations: 16
Iteration: 1, Func. Count: 9, Neg. LLF: 825.435789800175
Iteration: 2, Func. Count: 18, Neg. LLF: 159.49305498456158
Iteration: 3, Func. Count: 27, Neg. LLF: 150.01930136547762
Iteration: 4, Func. Count: 35, Neg. LLF: 151.0439521369713
Iteration: 5, Func. Count: 44, Neg. LLF: 153.11473881729617
Iteration: 6, Func. Count: 53, Neg. LLF: 149.9573503095023
Iteration: 7, Func. Count: 62, Neg. LLF: 149.68115168596822
Iteration: 8, Func. Count: 70, Neg. LLF: 149.67216327284572
Iteration: 9, Func. Count: 78, Neg. LLF: 149.67197598880827
Iteration: 10, Func. Count: 86, Neg. LLF: 149.6719665575019
Iteration: 11, Func. Count: 94, Neg. LLF: 149.67195581697706
Iteration: 12, Func. Count: 101, Neg. LLF: 149.67195558867806
Optimization terminated successfully (Exit mode 0)
Current function value: 149.67195581697706
Iterations: 12
Function evaluations: 101
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 268.5841240463016
Iteration: 2, Func. Count: 20, Neg. LLF: 152.97348363679248
Iteration: 3, Func. Count: 30, Neg. LLF: 150.6649696770071
Iteration: 4, Func. Count: 39, Neg. LLF: 152.6008095566626
Iteration: 5, Func. Count: 49, Neg. LLF: 151.4828720886249
Iteration: 6, Func. Count: 59, Neg. LLF: 174.41036238693752
Iteration: 7, Func. Count: 69, Neg. LLF: 149.65830940769948
Iteration: 8, Func. Count: 78, Neg. LLF: 149.65016505688266
Iteration: 9, Func. Count: 87, Neg. LLF: 149.64922368735066
Iteration: 10, Func. Count: 96, Neg. LLF: 149.6491895441939
Iteration: 11, Func. Count: 105, Neg. LLF: 149.6491859956725
Iteration: 12, Func. Count: 114, Neg. LLF: 149.64918542949107
Optimization terminated successfully (Exit mode 0)
Current function value: 149.64918542949107
Iterations: 12
Function evaluations: 114
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 274.5542092995551
Iteration: 2, Func. Count: 22, Neg. LLF: 219.527392729652
Iteration: 3, Func. Count: 33, Neg. LLF: 151.11170558017392
Iteration: 4, Func. Count: 43, Neg. LLF: 149.95827200985576
Iteration: 5, Func. Count: 53, Neg. LLF: 152.05807176617924
Iteration: 6, Func. Count: 64, Neg. LLF: 151.12446117824456
Iteration: 7, Func. Count: 75, Neg. LLF: 149.28795079093638
Iteration: 8, Func. Count: 85, Neg. LLF: 149.25012806245834
Iteration: 9, Func. Count: 95, Neg. LLF: 149.23798956463503
Iteration: 10, Func. Count: 105, Neg. LLF: 149.23605451528326
Iteration: 11, Func. Count: 115, Neg. LLF: 149.23572222223038
Iteration: 12, Func. Count: 125, Neg. LLF: 149.23565922622112
Iteration: 13, Func. Count: 134, Neg. LLF: 149.2356591249113
Optimization terminated successfully (Exit mode 0)
Current function value: 149.23565922622112
Iterations: 13
Function evaluations: 134
Gradient evaluations: 13
Iteration: 1, Func. Count: 12, Neg. LLF: 269.0148760519384
Iteration: 2, Func. Count: 24, Neg. LLF: 2605.450480969373
Iteration: 3, Func. Count: 36, Neg. LLF: 151.22932402216156
Iteration: 4, Func. Count: 47, Neg. LLF: 153.91407653887183
Iteration: 5, Func. Count: 59, Neg. LLF: 227.18477800759015
Iteration: 6, Func. Count: 71, Neg. LLF: 151.41237882366198
Iteration: 7, Func. Count: 84, Neg. LLF: 149.34026916948807
Iteration: 8, Func. Count: 95, Neg. LLF: 149.24826602686326
Iteration: 9, Func. Count: 106, Neg. LLF: 149.2370968517001
Iteration: 10, Func. Count: 117, Neg. LLF: 149.23594523022797
Iteration: 11, Func. Count: 128, Neg. LLF: 149.2356633054069
Iteration: 12, Func. Count: 139, Neg. LLF: 149.23565899364112
Iteration: 13, Func. Count: 149, Neg. LLF: 149.23565891351316
Optimization terminated successfully (Exit mode 0)
Current function value: 149.23565899364112
Iterations: 13
Function evaluations: 149
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 163.2506217177759
Iteration: 2, Func. Count: 19, Neg. LLF: 160.27010135757502
Iteration: 3, Func. Count: 28, Neg. LLF: 158.51732386266372
Iteration: 4, Func. Count: 38, Neg. LLF: 156.58303161727727
Iteration: 5, Func. Count: 46, Neg. LLF: 156.4694412986582
Iteration: 6, Func. Count: 54, Neg. LLF: 155.90870883013474
Iteration: 7, Func. Count: 62, Neg. LLF: 155.23933141832413
Iteration: 8, Func. Count: 70, Neg. LLF: 155.81156772241826
Iteration: 9, Func. Count: 79, Neg. LLF: 154.264256569956
Iteration: 10, Func. Count: 87, Neg. LLF: 154.03406620887037
Iteration: 11, Func. Count: 95, Neg. LLF: 153.96324276020889
Iteration: 12, Func. Count: 103, Neg. LLF: 153.95725990140522
Iteration: 13, Func. Count: 111, Neg. LLF: 153.95686817722168
Iteration: 14, Func. Count: 119, Neg. LLF: 153.9568410142462
Iteration: 15, Func. Count: 127, Neg. LLF: 153.9568384298565
Iteration: 16, Func. Count: 134, Neg. LLF: 153.956838503325
Optimization terminated successfully (Exit mode 0)
Current function value: 153.9568384298565
Iterations: 16
Function evaluations: 134
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 656.8573610540487
Iteration: 2, Func. Count: 20, Neg. LLF: 370.67376794788413
Iteration: 3, Func. Count: 30, Neg. LLF: 151.82493154889966
Iteration: 4, Func. Count: 40, Neg. LLF: 150.40174820764724
Iteration: 5, Func. Count: 49, Neg. LLF: 150.29755550198797
Iteration: 6, Func. Count: 59, Neg. LLF: 149.98964834796692
Iteration: 7, Func. Count: 69, Neg. LLF: 149.58021978773863
Iteration: 8, Func. Count: 78, Neg. LLF: 149.57864664311904
Iteration: 9, Func. Count: 88, Neg. LLF: 149.5575039189749
Iteration: 10, Func. Count: 97, Neg. LLF: 149.55707632702206
Iteration: 11, Func. Count: 106, Neg. LLF: 149.5570741031929
Iteration: 12, Func. Count: 114, Neg. LLF: 149.55707385801085
Optimization terminated successfully (Exit mode 0)
Current function value: 149.5570741031929
Iterations: 12
Function evaluations: 114
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 261.92980621451346
Iteration: 2, Func. Count: 22, Neg. LLF: 308.9646489339249
Iteration: 3, Func. Count: 33, Neg. LLF: 151.32485539846084
Iteration: 4, Func. Count: 43, Neg. LLF: 149.92035148262326
Iteration: 5, Func. Count: 53, Neg. LLF: 174.20641091697604
Iteration: 6, Func. Count: 64, Neg. LLF: 150.3439101135031
Iteration: 7, Func. Count: 75, Neg. LLF: 150.92844714560158
Iteration: 8, Func. Count: 86, Neg. LLF: 149.67373070793118
Iteration: 9, Func. Count: 96, Neg. LLF: 149.6569294717424
Iteration: 10, Func. Count: 106, Neg. LLF: 149.64742593281983
Iteration: 11, Func. Count: 116, Neg. LLF: 149.6466712500842
Iteration: 12, Func. Count: 126, Neg. LLF: 149.6465930929733
Iteration: 13, Func. Count: 136, Neg. LLF: 149.64657572066295
Iteration: 14, Func. Count: 146, Neg. LLF: 149.64657246961053
Iteration: 15, Func. Count: 155, Neg. LLF: 149.64657233888317
Optimization terminated successfully (Exit mode 0)
Current function value: 149.64657246961053
Iterations: 15
Function evaluations: 155
Gradient evaluations: 15
Iteration: 1, Func. Count: 12, Neg. LLF: 257.5166369252691
Iteration: 2, Func. Count: 24, Neg. LLF: 279.98214004306834
Iteration: 3, Func. Count: 36, Neg. LLF: 153.28799243910035
Iteration: 4, Func. Count: 48, Neg. LLF: 149.89423417507618
Iteration: 5, Func. Count: 59, Neg. LLF: 150.2381950331554
Iteration: 6, Func. Count: 71, Neg. LLF: 150.69151150741035
Iteration: 7, Func. Count: 83, Neg. LLF: 149.32571713809642
Iteration: 8, Func. Count: 94, Neg. LLF: 149.24260077216857
Iteration: 9, Func. Count: 105, Neg. LLF: 149.23618668970096
Iteration: 10, Func. Count: 116, Neg. LLF: 149.23570346473085
Iteration: 11, Func. Count: 127, Neg. LLF: 149.23565942004635
Iteration: 12, Func. Count: 137, Neg. LLF: 149.23565931884673
Optimization terminated successfully (Exit mode 0)
Current function value: 149.23565942004635
Iterations: 12
Function evaluations: 137
Gradient evaluations: 12
Iteration: 1, Func. Count: 13, Neg. LLF: 251.6689488612218
Iteration: 2, Func. Count: 26, Neg. LLF: 480.95876453850445
Iteration: 3, Func. Count: 39, Neg. LLF: 152.7016892690104
Iteration: 4, Func. Count: 52, Neg. LLF: 152.05332492236303
Iteration: 5, Func. Count: 65, Neg. LLF: 154.46616601250858
Iteration: 6, Func. Count: 78, Neg. LLF: 149.3670736948341
Iteration: 7, Func. Count: 90, Neg. LLF: 149.26806817147553
Iteration: 8, Func. Count: 102, Neg. LLF: 149.24316996169833
Iteration: 9, Func. Count: 114, Neg. LLF: 149.2360130229137
Iteration: 10, Func. Count: 126, Neg. LLF: 149.23567080392434
Iteration: 11, Func. Count: 138, Neg. LLF: 149.23565998766162
Iteration: 12, Func. Count: 150, Neg. LLF: 149.23565900262525
Optimization terminated successfully (Exit mode 0)
Current function value: 149.23565900262525
Iterations: 12
Function evaluations: 150
Gradient evaluations: 12
Iteration: 1, Func. Count: 6, Neg. LLF: 159.1867681760916
Iteration: 2, Func. Count: 11, Neg. LLF: 160.91477269142717
Iteration: 3, Func. Count: 17, Neg. LLF: 158.2060054431182
Iteration: 4, Func. Count: 22, Neg. LLF: 158.08950955365805
Iteration: 5, Func. Count: 27, Neg. LLF: 157.9642075602556
Iteration: 6, Func. Count: 32, Neg. LLF: 157.9324142275618
Iteration: 7, Func. Count: 37, Neg. LLF: 157.85997612682203
Iteration: 8, Func. Count: 42, Neg. LLF: 157.78368291191265
Iteration: 9, Func. Count: 47, Neg. LLF: 157.64519845078362
Iteration: 10, Func. Count: 52, Neg. LLF: 157.5814447565916
Iteration: 11, Func. Count: 57, Neg. LLF: 157.55284229246055
Iteration: 12, Func. Count: 62, Neg. LLF: 157.55264485414688
Iteration: 13, Func. Count: 67, Neg. LLF: 157.55262012939227
Iteration: 14, Func. Count: 71, Neg. LLF: 157.5526202488813
Optimization terminated successfully (Exit mode 0)
Current function value: 157.55262012939227
Iterations: 14
Function evaluations: 71
Gradient evaluations: 14
Iteration: 1, Func. Count: 7, Neg. LLF: 226.9433810148788
Iteration: 2, Func. Count: 14, Neg. LLF: 167.2544327120982
Iteration: 3, Func. Count: 21, Neg. LLF: 155.47963152560047
Iteration: 4, Func. Count: 27, Neg. LLF: 155.5401755051771
Iteration: 5, Func. Count: 34, Neg. LLF: 155.39692783037276
Iteration: 6, Func. Count: 40, Neg. LLF: 155.3965055200873
Iteration: 7, Func. Count: 46, Neg. LLF: 155.39643909870225
Iteration: 8, Func. Count: 51, Neg. LLF: 155.39643901673028
Optimization terminated successfully (Exit mode 0)
Current function value: 155.39643909870225
Iterations: 8
Function evaluations: 51
Gradient evaluations: 8
Iteration: 1, Func. Count: 8, Neg. LLF: 181.90128831930306
Iteration: 2, Func. Count: 16, Neg. LLF: 157.79518708185088
Iteration: 3, Func. Count: 24, Neg. LLF: 190.44704409390155
Iteration: 4, Func. Count: 33, Neg. LLF: 157.263052450708
Iteration: 5, Func. Count: 41, Neg. LLF: 156.42994790292556
Iteration: 6, Func. Count: 49, Neg. LLF: 155.2213122044704
Iteration: 7, Func. Count: 56, Neg. LLF: 155.19239387249323
Iteration: 8, Func. Count: 63, Neg. LLF: 155.1461984531603
Iteration: 9, Func. Count: 70, Neg. LLF: 155.13632571962157
Iteration: 10, Func. Count: 77, Neg. LLF: 155.13486173723396
Iteration: 11, Func. Count: 84, Neg. LLF: 155.1347980162228
Iteration: 12, Func. Count: 91, Neg. LLF: 155.13479435601428
Iteration: 13, Func. Count: 97, Neg. LLF: 155.13479427571727
Optimization terminated successfully (Exit mode 0)
Current function value: 155.13479435601428
Iterations: 13
Function evaluations: 97
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 179.0916214724417
Iteration: 2, Func. Count: 18, Neg. LLF: 195.92684600087722
Iteration: 3, Func. Count: 28, Neg. LLF: 161.95315426464276
Iteration: 4, Func. Count: 37, Neg. LLF: 154.76707472327763
Iteration: 5, Func. Count: 45, Neg. LLF: 158.6770668697325
Iteration: 6, Func. Count: 54, Neg. LLF: 166.19027061636265
Iteration: 7, Func. Count: 63, Neg. LLF: 153.58200414674334
Iteration: 8, Func. Count: 71, Neg. LLF: 153.4830041822542
Iteration: 9, Func. Count: 79, Neg. LLF: 153.47765697709013
Iteration: 10, Func. Count: 87, Neg. LLF: 153.47725987966263
Iteration: 11, Func. Count: 95, Neg. LLF: 153.47702752156448
Iteration: 12, Func. Count: 103, Neg. LLF: 153.47682117864935
Iteration: 13, Func. Count: 111, Neg. LLF: 153.47678119521302
Iteration: 14, Func. Count: 119, Neg. LLF: 153.47677882550772
Iteration: 15, Func. Count: 126, Neg. LLF: 153.4767786914119
Optimization terminated successfully (Exit mode 0)
Current function value: 153.47677882550772
Iterations: 15
Function evaluations: 126
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 177.37957893185353
Iteration: 2, Func. Count: 20, Neg. LLF: 186.8401952253529
Iteration: 3, Func. Count: 30, Neg. LLF: 157.07460673382582
Iteration: 4, Func. Count: 40, Neg. LLF: 155.7479921045885
Iteration: 5, Func. Count: 50, Neg. LLF: 153.43417137575858
Iteration: 6, Func. Count: 59, Neg. LLF: 153.4195497400601
Iteration: 7, Func. Count: 68, Neg. LLF: 153.4166603184895
Iteration: 8, Func. Count: 77, Neg. LLF: 153.4152399691924
Iteration: 9, Func. Count: 86, Neg. LLF: 153.41475774044375
Iteration: 10, Func. Count: 95, Neg. LLF: 153.4145916192237
Iteration: 11, Func. Count: 104, Neg. LLF: 153.41453702438423
Iteration: 12, Func. Count: 113, Neg. LLF: 153.41453045355007
Iteration: 13, Func. Count: 121, Neg. LLF: 153.4145303416025
Optimization terminated successfully (Exit mode 0)
Current function value: 153.41453045355007
Iterations: 13
Function evaluations: 121
Gradient evaluations: 13
Iteration: 1, Func. Count: 7, Neg. LLF: 158.94104882134482
Iteration: 2, Func. Count: 14, Neg. LLF: 159.3196413358919
Iteration: 3, Func. Count: 21, Neg. LLF: 157.74201819779108
Iteration: 4, Func. Count: 27, Neg. LLF: 157.6973570383515
Iteration: 5, Func. Count: 33, Neg. LLF: 157.6452199523848
Iteration: 6, Func. Count: 39, Neg. LLF: 157.44890017593107
Iteration: 7, Func. Count: 45, Neg. LLF: 157.29822680526817
Iteration: 8, Func. Count: 51, Neg. LLF: 157.26059503116898
Iteration: 9, Func. Count: 57, Neg. LLF: 157.23259751169934
Iteration: 10, Func. Count: 63, Neg. LLF: 157.23071860334036
Iteration: 11, Func. Count: 69, Neg. LLF: 157.23048150729187
Iteration: 12, Func. Count: 75, Neg. LLF: 157.2304391030942
Iteration: 13, Func. Count: 81, Neg. LLF: 157.23043484964649
Iteration: 14, Func. Count: 86, Neg. LLF: 157.23043484939774
Optimization terminated successfully (Exit mode 0)
Current function value: 157.23043484964649
Iterations: 14
Function evaluations: 86
Gradient evaluations: 14
Iteration: 1, Func. Count: 8, Neg. LLF: 15041361.393924043
Iteration: 2, Func. Count: 16, Neg. LLF: 152.39471589435772
Iteration: 3, Func. Count: 24, Neg. LLF: 151.14425609281625
Iteration: 4, Func. Count: 32, Neg. LLF: 149.84399091099067
Iteration: 5, Func. Count: 39, Neg. LLF: 149.82653308274342
Iteration: 6, Func. Count: 46, Neg. LLF: 149.82603871140526
Iteration: 7, Func. Count: 53, Neg. LLF: 149.82603881155407
Iteration: 8, Func. Count: 61, Neg. LLF: 149.82595923003714
Iteration: 9, Func. Count: 67, Neg. LLF: 149.82595895497644
Optimization terminated successfully (Exit mode 0)
Current function value: 149.82595923003714
Iterations: 9
Function evaluations: 67
Gradient evaluations: 9
Iteration: 1, Func. Count: 9, Neg. LLF: 620.8258019492388
Iteration: 2, Func. Count: 18, Neg. LLF: 156.19293863416004
Iteration: 3, Func. Count: 27, Neg. LLF: 151.2119693091507
Iteration: 4, Func. Count: 35, Neg. LLF: 151.60077753447993
Iteration: 5, Func. Count: 44, Neg. LLF: 151.1194232627481
Iteration: 6, Func. Count: 53, Neg. LLF: 150.74340824386707
Iteration: 7, Func. Count: 62, Neg. LLF: 150.30756541084511
Iteration: 8, Func. Count: 70, Neg. LLF: 150.25081711710618
Iteration: 9, Func. Count: 78, Neg. LLF: 149.93405434134857
Iteration: 10, Func. Count: 86, Neg. LLF: 149.85217312034
Iteration: 11, Func. Count: 94, Neg. LLF: 149.83986127295177
Iteration: 12, Func. Count: 102, Neg. LLF: 149.8275662167919
Iteration: 13, Func. Count: 110, Neg. LLF: 149.82604386295057
Iteration: 14, Func. Count: 118, Neg. LLF: 149.82595951377166
Iteration: 15, Func. Count: 125, Neg. LLF: 149.82595924958622
Optimization terminated successfully (Exit mode 0)
Current function value: 149.82595951377166
Iterations: 15
Function evaluations: 125
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 604.6653618033299
Iteration: 2, Func. Count: 20, Neg. LLF: 151.34099785780813
Iteration: 3, Func. Count: 29, Neg. LLF: 153.13474608531305
Iteration: 4, Func. Count: 39, Neg. LLF: 168.47967444310723
Iteration: 5, Func. Count: 49, Neg. LLF: 149.93140521465742
Iteration: 6, Func. Count: 58, Neg. LLF: 149.90629421851554
Iteration: 7, Func. Count: 67, Neg. LLF: 150.147349376521
Iteration: 8, Func. Count: 77, Neg. LLF: 149.84012586565328
Iteration: 9, Func. Count: 86, Neg. LLF: 149.8260484661703
Iteration: 10, Func. Count: 95, Neg. LLF: 149.82596695798992
Iteration: 11, Func. Count: 104, Neg. LLF: 149.82595949540448
Iteration: 12, Func. Count: 112, Neg. LLF: 149.82595924451513
Optimization terminated successfully (Exit mode 0)
Current function value: 149.82595949540448
Iterations: 12
Function evaluations: 112
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 588.3894637974546
Iteration: 2, Func. Count: 22, Neg. LLF: 152.54861828127244
Iteration: 3, Func. Count: 32, Neg. LLF: 155.2314963215718
Iteration: 4, Func. Count: 43, Neg. LLF: 192.7940975395528
Iteration: 5, Func. Count: 54, Neg. LLF: 150.7025398292829
Iteration: 6, Func. Count: 65, Neg. LLF: 150.1221305008555
Iteration: 7, Func. Count: 75, Neg. LLF: 150.11352254657842
Iteration: 8, Func. Count: 85, Neg. LLF: 150.09065905870915
Iteration: 9, Func. Count: 95, Neg. LLF: 150.08167198323662
Iteration: 10, Func. Count: 105, Neg. LLF: 149.89489188410457
Iteration: 11, Func. Count: 115, Neg. LLF: 149.841876642532
Iteration: 12, Func. Count: 125, Neg. LLF: 149.8260107301725
Iteration: 13, Func. Count: 135, Neg. LLF: 149.82597046216574
Iteration: 14, Func. Count: 145, Neg. LLF: 149.8259539839972
Iteration: 15, Func. Count: 155, Neg. LLF: 149.825957757295
Iteration: 16, Func. Count: 165, Neg. LLF: 149.82596006258694
Optimization terminated successfully (Exit mode 0)
Current function value: 149.8259579322366
Iterations: 17
Function evaluations: 166
Gradient evaluations: 16
Iteration: 1, Func. Count: 8, Neg. LLF: 166.24401502288066
Iteration: 2, Func. Count: 16, Neg. LLF: 159.11992713199538
Iteration: 3, Func. Count: 24, Neg. LLF: 158.05475008474846
Iteration: 4, Func. Count: 31, Neg. LLF: 157.7615494862998
Iteration: 5, Func. Count: 38, Neg. LLF: 157.6758417001616
Iteration: 6, Func. Count: 45, Neg. LLF: 157.6421550596956
Iteration: 7, Func. Count: 52, Neg. LLF: 157.52562248178194
Iteration: 8, Func. Count: 59, Neg. LLF: 157.40302778419084
Iteration: 9, Func. Count: 66, Neg. LLF: 157.31484310459416
Iteration: 10, Func. Count: 73, Neg. LLF: 157.24083024257064
Iteration: 11, Func. Count: 80, Neg. LLF: 157.2331965342848
Iteration: 12, Func. Count: 87, Neg. LLF: 157.23070559946157
Iteration: 13, Func. Count: 94, Neg. LLF: 157.23043762299818
Iteration: 14, Func. Count: 101, Neg. LLF: 157.23043472644912
Iteration: 15, Func. Count: 107, Neg. LLF: 157.2304346596066
Optimization terminated successfully (Exit mode 0)
Current function value: 157.23043472644912
Iterations: 15
Function evaluations: 107
Gradient evaluations: 15
Iteration: 1, Func. Count: 9, Neg. LLF: 15189177.51816766
Iteration: 2, Func. Count: 18, Neg. LLF: 152.4200988716909
Iteration: 3, Func. Count: 27, Neg. LLF: 151.70620957282364
Iteration: 4, Func. Count: 36, Neg. LLF: 149.6872800900618
Iteration: 5, Func. Count: 44, Neg. LLF: 149.7225202757996
Iteration: 6, Func. Count: 53, Neg. LLF: 149.67274151124352
Iteration: 7, Func. Count: 61, Neg. LLF: 149.67196715419703
Iteration: 8, Func. Count: 69, Neg. LLF: 149.67196563451722
Iteration: 9, Func. Count: 76, Neg. LLF: 149.67196540609766
Optimization terminated successfully (Exit mode 0)
Current function value: 149.67196563451722
Iterations: 9
Function evaluations: 76
Gradient evaluations: 9
Iteration: 1, Func. Count: 10, Neg. LLF: 288.9003491777711
Iteration: 2, Func. Count: 20, Neg. LLF: 154.4118284042923
Iteration: 3, Func. Count: 30, Neg. LLF: 155.5696507079899
Iteration: 4, Func. Count: 40, Neg. LLF: 151.98855547827557
Iteration: 5, Func. Count: 50, Neg. LLF: 149.7309044257839
Iteration: 6, Func. Count: 59, Neg. LLF: 149.7671068431452
Iteration: 7, Func. Count: 69, Neg. LLF: 149.7123454144574
Iteration: 8, Func. Count: 78, Neg. LLF: 149.71187038100868
Iteration: 9, Func. Count: 87, Neg. LLF: 149.71186030501016
Iteration: 10, Func. Count: 96, Neg. LLF: 149.71185892254982
Iteration: 11, Func. Count: 105, Neg. LLF: 149.71185886387215
Optimization terminated successfully (Exit mode 0)
Current function value: 149.71185892249252
Iterations: 11
Function evaluations: 115
Gradient evaluations: 11
Iteration: 1, Func. Count: 11, Neg. LLF: 299.6018022546147
Iteration: 2, Func. Count: 22, Neg. LLF: 160.78322973799845
Iteration: 3, Func. Count: 33, Neg. LLF: 155.24509984702925
Iteration: 4, Func. Count: 44, Neg. LLF: 149.94367440227995
Iteration: 5, Func. Count: 54, Neg. LLF: 149.88687295623924
Iteration: 6, Func. Count: 65, Neg. LLF: 150.18558012287556
Iteration: 7, Func. Count: 76, Neg. LLF: 149.67881729362955
Iteration: 8, Func. Count: 87, Neg. LLF: 149.5764110224623
Iteration: 9, Func. Count: 97, Neg. LLF: 149.57159595907768
Iteration: 10, Func. Count: 107, Neg. LLF: 149.5692982130244
Iteration: 11, Func. Count: 117, Neg. LLF: 149.56858049258253
Iteration: 12, Func. Count: 127, Neg. LLF: 149.56822366999705
Iteration: 13, Func. Count: 137, Neg. LLF: 149.56821827430795
Iteration: 14, Func. Count: 146, Neg. LLF: 149.5682181230972
Optimization terminated successfully (Exit mode 0)
Current function value: 149.56821827430795
Iterations: 14
Function evaluations: 146
Gradient evaluations: 14
Iteration: 1, Func. Count: 12, Neg. LLF: 291.7165906433616
Iteration: 2, Func. Count: 24, Neg. LLF: 1060.1067036904028
Iteration: 3, Func. Count: 36, Neg. LLF: 157.94817628156147
Iteration: 4, Func. Count: 48, Neg. LLF: 150.19226298797554
Iteration: 5, Func. Count: 59, Neg. LLF: 149.77813518697243
Iteration: 6, Func. Count: 70, Neg. LLF: 150.3389582377966
Iteration: 7, Func. Count: 82, Neg. LLF: 150.0264800882134
Iteration: 8, Func. Count: 94, Neg. LLF: 149.55635239326142
Iteration: 9, Func. Count: 105, Neg. LLF: 149.55238538630908
Iteration: 10, Func. Count: 116, Neg. LLF: 149.54947513757492
Iteration: 11, Func. Count: 127, Neg. LLF: 149.54769901699254
Iteration: 12, Func. Count: 138, Neg. LLF: 149.54756573104282
Iteration: 13, Func. Count: 149, Neg. LLF: 149.54755010937194
Iteration: 14, Func. Count: 160, Neg. LLF: 149.54754954768595
Optimization terminated successfully (Exit mode 0)
Current function value: 149.54754954768595
Iterations: 14
Function evaluations: 160
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 159.77293705527026
Iteration: 2, Func. Count: 18, Neg. LLF: 158.0422979563038
Iteration: 3, Func. Count: 27, Neg. LLF: 157.5679926514014
Iteration: 4, Func. Count: 36, Neg. LLF: 156.59708747330396
Iteration: 5, Func. Count: 44, Neg. LLF: 156.35157402021503
Iteration: 6, Func. Count: 52, Neg. LLF: 156.07999315678376
Iteration: 7, Func. Count: 60, Neg. LLF: 155.37556028276944
Iteration: 8, Func. Count: 68, Neg. LLF: 154.8096817310929
Iteration: 9, Func. Count: 76, Neg. LLF: 154.25162960270393
Iteration: 10, Func. Count: 84, Neg. LLF: 155.2667640779586
Iteration: 11, Func. Count: 93, Neg. LLF: 153.97499749130975
Iteration: 12, Func. Count: 101, Neg. LLF: 153.95982066051496
Iteration: 13, Func. Count: 109, Neg. LLF: 153.95807529600285
Iteration: 14, Func. Count: 117, Neg. LLF: 153.95690197045332
Iteration: 15, Func. Count: 125, Neg. LLF: 153.95685541976846
Iteration: 16, Func. Count: 133, Neg. LLF: 153.95683837001647
Iteration: 17, Func. Count: 140, Neg. LLF: 153.95683834433353
Optimization terminated successfully (Exit mode 0)
Current function value: 153.95683837001647
Iterations: 17
Function evaluations: 140
Gradient evaluations: 17
Iteration: 1, Func. Count: 10, Neg. LLF: 649.2326139536619
Iteration: 2, Func. Count: 20, Neg. LLF: 160.0538425561255
Iteration: 3, Func. Count: 30, Neg. LLF: 150.36506117202913
Iteration: 4, Func. Count: 39, Neg. LLF: 150.3408875462329
Iteration: 5, Func. Count: 49, Neg. LLF: 150.67685406930752
Iteration: 6, Func. Count: 59, Neg. LLF: 149.80816040048217
Iteration: 7, Func. Count: 69, Neg. LLF: 149.7597558132593
Iteration: 8, Func. Count: 79, Neg. LLF: 149.67375594668238
Iteration: 9, Func. Count: 88, Neg. LLF: 149.6721089234112
Iteration: 10, Func. Count: 97, Neg. LLF: 149.67196336145435
Iteration: 11, Func. Count: 106, Neg. LLF: 149.67195585815315
Iteration: 12, Func. Count: 114, Neg. LLF: 149.67195562984926
Optimization terminated successfully (Exit mode 0)
Current function value: 149.67195585815315
Iterations: 12
Function evaluations: 114
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 480.52308069267906
Iteration: 2, Func. Count: 22, Neg. LLF: 151.3776503578246
Iteration: 3, Func. Count: 32, Neg. LLF: 155.68943260225848
Iteration: 4, Func. Count: 43, Neg. LLF: 160.71308504854622
Iteration: 5, Func. Count: 54, Neg. LLF: 149.95005994614613
Iteration: 6, Func. Count: 65, Neg. LLF: 149.94870785450905
Iteration: 7, Func. Count: 76, Neg. LLF: 149.65718903268697
Iteration: 8, Func. Count: 86, Neg. LLF: 149.65154658973768
Iteration: 9, Func. Count: 96, Neg. LLF: 149.6494614152184
Iteration: 10, Func. Count: 106, Neg. LLF: 149.6491910298077
Iteration: 11, Func. Count: 116, Neg. LLF: 149.64918642569177
Iteration: 12, Func. Count: 126, Neg. LLF: 149.64918561988165
Optimization terminated successfully (Exit mode 0)
Current function value: 149.64918561988165
Iterations: 12
Function evaluations: 126
Gradient evaluations: 12
Iteration: 1, Func. Count: 12, Neg. LLF: 282.81566802737154
Iteration: 2, Func. Count: 24, Neg. LLF: 195.02823533176357
Iteration: 3, Func. Count: 36, Neg. LLF: 156.70416395294674
Iteration: 4, Func. Count: 48, Neg. LLF: 149.51038819253475
Iteration: 5, Func. Count: 59, Neg. LLF: 149.8975298629108
Iteration: 6, Func. Count: 71, Neg. LLF: 149.63102132561866
Iteration: 7, Func. Count: 83, Neg. LLF: 149.25397435266717
Iteration: 8, Func. Count: 94, Neg. LLF: 149.23587031847362
Iteration: 9, Func. Count: 105, Neg. LLF: 149.2357013073925
Iteration: 10, Func. Count: 116, Neg. LLF: 149.23566033844332
Iteration: 11, Func. Count: 127, Neg. LLF: 149.23565896636637
Iteration: 12, Func. Count: 137, Neg. LLF: 149.2356588650808
Optimization terminated successfully (Exit mode 0)
Current function value: 149.23565896636637
Iterations: 12
Function evaluations: 137
Gradient evaluations: 12
Iteration: 1, Func. Count: 13, Neg. LLF: 270.8031073708528
Iteration: 2, Func. Count: 26, Neg. LLF: 1424829.6813924427
Iteration: 3, Func. Count: 39, Neg. LLF: 159.36078520076336
Iteration: 4, Func. Count: 52, Neg. LLF: 149.76126447311856
Iteration: 5, Func. Count: 64, Neg. LLF: 150.61313496264867
Iteration: 6, Func. Count: 77, Neg. LLF: 149.4716485221927
Iteration: 7, Func. Count: 89, Neg. LLF: 149.45792863111873
Iteration: 8, Func. Count: 102, Neg. LLF: 149.30312430812396
Iteration: 9, Func. Count: 114, Neg. LLF: 149.25597853328625
Iteration: 10, Func. Count: 126, Neg. LLF: 149.23922668490968
Iteration: 11, Func. Count: 138, Neg. LLF: 149.23583771321628
Iteration: 12, Func. Count: 150, Neg. LLF: 149.23570200000023
Iteration: 13, Func. Count: 162, Neg. LLF: 149.23566390241433
Iteration: 14, Func. Count: 174, Neg. LLF: 149.23565919917496
Iteration: 15, Func. Count: 185, Neg. LLF: 149.23565911915085
Optimization terminated successfully (Exit mode 0)
Current function value: 149.23565919917496
Iterations: 15
Function evaluations: 185
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 162.12756176983223
Iteration: 2, Func. Count: 21, Neg. LLF: 164.54597023615747
Iteration: 3, Func. Count: 31, Neg. LLF: 157.97150425203316
Iteration: 4, Func. Count: 41, Neg. LLF: 157.01214157866002
Iteration: 5, Func. Count: 50, Neg. LLF: 156.51484609014747
Iteration: 6, Func. Count: 59, Neg. LLF: 156.36573544245402
Iteration: 7, Func. Count: 68, Neg. LLF: 156.0417673232244
Iteration: 8, Func. Count: 77, Neg. LLF: 155.6539768723575
Iteration: 9, Func. Count: 86, Neg. LLF: 155.22941580551907
Iteration: 10, Func. Count: 95, Neg. LLF: 154.4866410000236
Iteration: 11, Func. Count: 104, Neg. LLF: 154.07179767400018
Iteration: 12, Func. Count: 113, Neg. LLF: 154.0281850998305
Iteration: 13, Func. Count: 122, Neg. LLF: 153.96161029150738
Iteration: 14, Func. Count: 131, Neg. LLF: 153.9570543678967
Iteration: 15, Func. Count: 140, Neg. LLF: 153.95684048506598
Iteration: 16, Func. Count: 149, Neg. LLF: 153.95683847193337
Iteration: 17, Func. Count: 157, Neg. LLF: 153.9568385453968
Optimization terminated successfully (Exit mode 0)
Current function value: 153.95683847193337
Iterations: 17
Function evaluations: 157
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 527.0396829892953
Iteration: 2, Func. Count: 22, Neg. LLF: 1977.1422329127793
Iteration: 3, Func. Count: 33, Neg. LLF: 152.44368869006644
Iteration: 4, Func. Count: 44, Neg. LLF: 149.7783320087403
Iteration: 5, Func. Count: 54, Neg. LLF: 150.14288748388168
Iteration: 6, Func. Count: 65, Neg. LLF: 149.6052277871076
Iteration: 7, Func. Count: 75, Neg. LLF: 149.63722149326986
Iteration: 8, Func. Count: 86, Neg. LLF: 149.55724241600308
Iteration: 9, Func. Count: 96, Neg. LLF: 149.55707869792832
Iteration: 10, Func. Count: 106, Neg. LLF: 149.55707449955236
Iteration: 11, Func. Count: 116, Neg. LLF: 149.55707374144063
Optimization terminated successfully (Exit mode 0)
Current function value: 149.55707374144063
Iterations: 11
Function evaluations: 116
Gradient evaluations: 11
Iteration: 1, Func. Count: 12, Neg. LLF: 438.3156337538834
Iteration: 2, Func. Count: 24, Neg. LLF: 377.9227186477359
Iteration: 3, Func. Count: 36, Neg. LLF: 150.20999791862536
Iteration: 4, Func. Count: 47, Neg. LLF: 151.07557447694768
Iteration: 5, Func. Count: 59, Neg. LLF: 161.61844174414676
Iteration: 6, Func. Count: 71, Neg. LLF: 150.02869220501083
Iteration: 7, Func. Count: 83, Neg. LLF: 151.49481388351688
Iteration: 8, Func. Count: 95, Neg. LLF: 149.65585408178873
Iteration: 9, Func. Count: 106, Neg. LLF: 149.64829433450302
Iteration: 10, Func. Count: 117, Neg. LLF: 149.64663083657567
Iteration: 11, Func. Count: 128, Neg. LLF: 149.64657944761032
Iteration: 12, Func. Count: 139, Neg. LLF: 149.6465737801539
Iteration: 13, Func. Count: 150, Neg. LLF: 149.64657242105997
Iteration: 14, Func. Count: 160, Neg. LLF: 149.64657229028788
Optimization terminated successfully (Exit mode 0)
Current function value: 149.64657242105997
Iterations: 14
Function evaluations: 160
Gradient evaluations: 14
Iteration: 1, Func. Count: 13, Neg. LLF: 459.8728997289176
Iteration: 2, Func. Count: 26, Neg. LLF: 1435.1986160501722
Iteration: 3, Func. Count: 39, Neg. LLF: 152.15172761928284
Iteration: 4, Func. Count: 52, Neg. LLF: 150.21710334557008
Iteration: 5, Func. Count: 64, Neg. LLF: 162.03392365591037
Iteration: 6, Func. Count: 77, Neg. LLF: 153.21234564378065
Iteration: 7, Func. Count: 90, Neg. LLF: 149.36509536330277
Iteration: 8, Func. Count: 102, Neg. LLF: 149.3038952144457
Iteration: 9, Func. Count: 114, Neg. LLF: 149.26716034410995
Iteration: 10, Func. Count: 126, Neg. LLF: 149.24036313210286
Iteration: 11, Func. Count: 138, Neg. LLF: 149.2372652946444
Iteration: 12, Func. Count: 150, Neg. LLF: 149.23567428715074
Iteration: 13, Func. Count: 162, Neg. LLF: 149.2356592377103
Iteration: 14, Func. Count: 173, Neg. LLF: 149.23565913633743
Optimization terminated successfully (Exit mode 0)
Current function value: 149.2356592377103
Iterations: 14
Function evaluations: 173
Gradient evaluations: 14
Iteration: 1, Func. Count: 14, Neg. LLF: 276.2374796242917
Iteration: 2, Func. Count: 28, Neg. LLF: 1010603.331883765
Iteration: 3, Func. Count: 42, Neg. LLF: 153.48063033614935
Iteration: 4, Func. Count: 56, Neg. LLF: 149.72421283238816
Iteration: 5, Func. Count: 69, Neg. LLF: 149.89041970320463
Iteration: 6, Func. Count: 83, Neg. LLF: 150.64860225877237
Iteration: 7, Func. Count: 97, Neg. LLF: 149.33399867945096
Iteration: 8, Func. Count: 110, Neg. LLF: 149.23954396588854
Iteration: 9, Func. Count: 123, Neg. LLF: 149.23620598957848
Iteration: 10, Func. Count: 136, Neg. LLF: 149.23581076414263
Iteration: 11, Func. Count: 149, Neg. LLF: 149.23566942723374
Iteration: 12, Func. Count: 162, Neg. LLF: 149.2356591591952
Iteration: 13, Func. Count: 174, Neg. LLF: 149.2356590791288
Optimization terminated successfully (Exit mode 0)
Current function value: 149.2356591591952
Iterations: 13
Function evaluations: 174
Gradient evaluations: 13
Iteration: 1, Func. Count: 7, Neg. LLF: 159.92741346756773
Iteration: 2, Func. Count: 14, Neg. LLF: 162.63805448564042
Iteration: 3, Func. Count: 21, Neg. LLF: 158.17123548995582
Iteration: 4, Func. Count: 27, Neg. LLF: 158.01690190811865
Iteration: 5, Func. Count: 33, Neg. LLF: 157.95159466629823
Iteration: 6, Func. Count: 39, Neg. LLF: 157.59659667624567
Iteration: 7, Func. Count: 45, Neg. LLF: 157.28172863667513
Iteration: 8, Func. Count: 51, Neg. LLF: 157.08163378375238
Iteration: 9, Func. Count: 57, Neg. LLF: 156.96414496222303
Iteration: 10, Func. Count: 63, Neg. LLF: 156.90715159994733
Iteration: 11, Func. Count: 69, Neg. LLF: 156.90340841948736
Iteration: 12, Func. Count: 75, Neg. LLF: 156.90320483862087
Iteration: 13, Func. Count: 81, Neg. LLF: 156.90320372712685
Iteration: 14, Func. Count: 86, Neg. LLF: 156.9032036984588
Optimization terminated successfully (Exit mode 0)
Current function value: 156.90320372712685
Iterations: 14
Function evaluations: 86
Gradient evaluations: 14
Iteration: 1, Func. Count: 8, Neg. LLF: 203.9054793991371
Iteration: 2, Func. Count: 16, Neg. LLF: 163.7044966517305
Iteration: 3, Func. Count: 24, Neg. LLF: 155.478706035427
Iteration: 4, Func. Count: 31, Neg. LLF: 156.32885980984798
Iteration: 5, Func. Count: 39, Neg. LLF: 155.4156337503297
Iteration: 6, Func. Count: 46, Neg. LLF: 155.39652595661747
Iteration: 7, Func. Count: 53, Neg. LLF: 155.3960346074673
Iteration: 8, Func. Count: 60, Neg. LLF: 155.39521449025463
Iteration: 9, Func. Count: 67, Neg. LLF: 155.39519761469214
Iteration: 10, Func. Count: 74, Neg. LLF: 155.39519217258874
Iteration: 11, Func. Count: 80, Neg. LLF: 155.39519209188526
Optimization terminated successfully (Exit mode 0)
Current function value: 155.39519217258874
Iterations: 11
Function evaluations: 80
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 179.3584770226592
Iteration: 2, Func. Count: 18, Neg. LLF: 156.6666171538529
Iteration: 3, Func. Count: 27, Neg. LLF: 315.96837341057073
Iteration: 4, Func. Count: 37, Neg. LLF: 156.26676022999794
Iteration: 5, Func. Count: 46, Neg. LLF: 155.77024895973176
Iteration: 6, Func. Count: 55, Neg. LLF: 155.20937837464388
Iteration: 7, Func. Count: 63, Neg. LLF: 155.16792907072085
Iteration: 8, Func. Count: 71, Neg. LLF: 155.16299111340956
Iteration: 9, Func. Count: 80, Neg. LLF: 155.13507117244023
Iteration: 10, Func. Count: 88, Neg. LLF: 155.13482600725894
Iteration: 11, Func. Count: 96, Neg. LLF: 155.13479429607904
Iteration: 12, Func. Count: 103, Neg. LLF: 155.13479421581383
Optimization terminated successfully (Exit mode 0)
Current function value: 155.13479429607904
Iterations: 12
Function evaluations: 103
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 177.33993344224766
Iteration: 2, Func. Count: 20, Neg. LLF: 188.85277661484594
Iteration: 3, Func. Count: 31, Neg. LLF: 157.58805287047858
Iteration: 4, Func. Count: 41, Neg. LLF: 155.25208286028248
Iteration: 5, Func. Count: 51, Neg. LLF: 157.22353543874905
Iteration: 6, Func. Count: 61, Neg. LLF: 153.61505073247264
Iteration: 7, Func. Count: 70, Neg. LLF: 153.5382042020685
Iteration: 8, Func. Count: 79, Neg. LLF: 153.4934332748472
Iteration: 9, Func. Count: 88, Neg. LLF: 153.48093902829507
Iteration: 10, Func. Count: 97, Neg. LLF: 153.47886161963152
Iteration: 11, Func. Count: 106, Neg. LLF: 153.47735785930223
Iteration: 12, Func. Count: 115, Neg. LLF: 153.47680643221
Iteration: 13, Func. Count: 124, Neg. LLF: 153.47677978444727
Iteration: 14, Func. Count: 133, Neg. LLF: 153.47677869385024
Iteration: 15, Func. Count: 141, Neg. LLF: 153.47677855977582
Optimization terminated successfully (Exit mode 0)
Current function value: 153.47677869385024
Iterations: 15
Function evaluations: 141
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 176.27397393748907
Iteration: 2, Func. Count: 22, Neg. LLF: 181.65102611644525
Iteration: 3, Func. Count: 33, Neg. LLF: 154.92696467697698
Iteration: 4, Func. Count: 43, Neg. LLF: 158.2071997934058
Iteration: 5, Func. Count: 54, Neg. LLF: 165.15761442001212
Iteration: 6, Func. Count: 66, Neg. LLF: 154.30277009246632
Iteration: 7, Func. Count: 77, Neg. LLF: 153.52588321774235
Iteration: 8, Func. Count: 87, Neg. LLF: 153.48815417960216
Iteration: 9, Func. Count: 97, Neg. LLF: 153.47847529439488
Iteration: 10, Func. Count: 107, Neg. LLF: 153.47695972053174
Iteration: 11, Func. Count: 117, Neg. LLF: 153.4768591531805
Iteration: 12, Func. Count: 127, Neg. LLF: 153.4768220138555
Iteration: 13, Func. Count: 137, Neg. LLF: 153.4767827488179
Iteration: 14, Func. Count: 147, Neg. LLF: 153.47677904531403
Iteration: 15, Func. Count: 156, Neg. LLF: 153.47677897870665
Optimization terminated successfully (Exit mode 0)
Current function value: 153.47677904531403
Iterations: 15
Function evaluations: 156
Gradient evaluations: 15
Iteration: 1, Func. Count: 8, Neg. LLF: 159.55015600829535
Iteration: 2, Func. Count: 16, Neg. LLF: 159.47299655924377
Iteration: 3, Func. Count: 24, Neg. LLF: 157.79712808430128
Iteration: 4, Func. Count: 31, Neg. LLF: 157.72043973631924
Iteration: 5, Func. Count: 38, Neg. LLF: 158.48089329865812
Iteration: 6, Func. Count: 47, Neg. LLF: 157.6471724485538
Iteration: 7, Func. Count: 54, Neg. LLF: 157.56817839722586
Iteration: 8, Func. Count: 61, Neg. LLF: 157.27813517124864
Iteration: 9, Func. Count: 68, Neg. LLF: 157.02050634082028
Iteration: 10, Func. Count: 75, Neg. LLF: 156.74689854790307
Iteration: 11, Func. Count: 82, Neg. LLF: 156.71643540996973
Iteration: 12, Func. Count: 89, Neg. LLF: 156.7150818809207
Iteration: 13, Func. Count: 96, Neg. LLF: 156.71497471621305
Iteration: 14, Func. Count: 103, Neg. LLF: 156.71494710578125
Iteration: 15, Func. Count: 109, Neg. LLF: 156.71494709396563
Optimization terminated successfully (Exit mode 0)
Current function value: 156.71494710578125
Iterations: 15
Function evaluations: 109
Gradient evaluations: 15
Iteration: 1, Func. Count: 9, Neg. LLF: 15028164.446363296
Iteration: 2, Func. Count: 18, Neg. LLF: 152.22611687359029
Iteration: 3, Func. Count: 27, Neg. LLF: 151.18270863608868
Iteration: 4, Func. Count: 36, Neg. LLF: 149.84427295865564
Iteration: 5, Func. Count: 44, Neg. LLF: 149.8265923293558
Iteration: 6, Func. Count: 52, Neg. LLF: 149.8260179030702
Iteration: 7, Func. Count: 60, Neg. LLF: 149.82604799132432
Iteration: 8, Func. Count: 69, Neg. LLF: 149.82595921039706
Iteration: 9, Func. Count: 76, Neg. LLF: 149.82595893533608
Optimization terminated successfully (Exit mode 0)
Current function value: 149.82595921039706
Iterations: 9
Function evaluations: 76
Gradient evaluations: 9
Iteration: 1, Func. Count: 10, Neg. LLF: 753.8913802987738
Iteration: 2, Func. Count: 20, Neg. LLF: 151.28478153280327
Iteration: 3, Func. Count: 29, Neg. LLF: 150.7418367913784
Iteration: 4, Func. Count: 38, Neg. LLF: 169.94688241626474
Iteration: 5, Func. Count: 48, Neg. LLF: 150.55477347835225
Iteration: 6, Func. Count: 58, Neg. LLF: 150.0492861593839
Iteration: 7, Func. Count: 67, Neg. LLF: 149.91020035993606
Iteration: 8, Func. Count: 76, Neg. LLF: 149.83664666394478
Iteration: 9, Func. Count: 85, Neg. LLF: 149.82770743996986
Iteration: 10, Func. Count: 94, Neg. LLF: 149.8259906526083
Iteration: 11, Func. Count: 103, Neg. LLF: 149.8259594249907
Iteration: 12, Func. Count: 111, Neg. LLF: 149.82595916067936
Optimization terminated successfully (Exit mode 0)
Current function value: 149.8259594249907
Iterations: 12
Function evaluations: 111
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 533.1845042528579
Iteration: 2, Func. Count: 22, Neg. LLF: 151.77103059576706
Iteration: 3, Func. Count: 32, Neg. LLF: 153.98383190244002
Iteration: 4, Func. Count: 43, Neg. LLF: 168.19274910749644
Iteration: 5, Func. Count: 54, Neg. LLF: 150.50433102567362
Iteration: 6, Func. Count: 65, Neg. LLF: 150.1451336465581
Iteration: 7, Func. Count: 76, Neg. LLF: 149.83467539140963
Iteration: 8, Func. Count: 86, Neg. LLF: 149.82940830355383
Iteration: 9, Func. Count: 96, Neg. LLF: 149.8263470338107
Iteration: 10, Func. Count: 106, Neg. LLF: 149.82595977781807
Iteration: 11, Func. Count: 116, Neg. LLF: 149.8259588837033
Optimization terminated successfully (Exit mode 0)
Current function value: 149.8259588837033
Iterations: 11
Function evaluations: 116
Gradient evaluations: 11
Iteration: 1, Func. Count: 12, Neg. LLF: 528.9173473466445
Iteration: 2, Func. Count: 24, Neg. LLF: 152.37849681824954
Iteration: 3, Func. Count: 35, Neg. LLF: 151.90920448582204
Iteration: 4, Func. Count: 47, Neg. LLF: 418.71595740017017
Iteration: 5, Func. Count: 59, Neg. LLF: 150.17693899531668
Iteration: 6, Func. Count: 70, Neg. LLF: 150.16688959249052
Iteration: 7, Func. Count: 82, Neg. LLF: 150.0870030027948
Iteration: 8, Func. Count: 93, Neg. LLF: 149.8949160717072
Iteration: 9, Func. Count: 104, Neg. LLF: 149.83259342535803
Iteration: 10, Func. Count: 115, Neg. LLF: 149.82629001520647
Iteration: 11, Func. Count: 126, Neg. LLF: 149.8259700768578
Iteration: 12, Func. Count: 137, Neg. LLF: 149.8259580500675
Iteration: 13, Func. Count: 148, Neg. LLF: 149.825960692779
Iteration: 14, Func. Count: 159, Neg. LLF: 149.8259502935623
Iteration: 15, Func. Count: 170, Neg. LLF: 149.82595898146397
Optimization terminated successfully (Exit mode 0)
Current function value: 149.82595030523188
Iterations: 15
Function evaluations: 180
Gradient evaluations: 15
Iteration: 1, Func. Count: 9, Neg. LLF: 168.0978620653184
Iteration: 2, Func. Count: 18, Neg. LLF: 159.68351124372697
Iteration: 3, Func. Count: 28, Neg. LLF: 160.11771458937866
Iteration: 4, Func. Count: 38, Neg. LLF: 158.43660391385697
Iteration: 5, Func. Count: 47, Neg. LLF: 157.74855171572923
Iteration: 6, Func. Count: 55, Neg. LLF: 157.68712380227905
Iteration: 7, Func. Count: 63, Neg. LLF: 157.6428608542853
Iteration: 8, Func. Count: 71, Neg. LLF: 157.43651232980864
Iteration: 9, Func. Count: 79, Neg. LLF: 157.2290987683218
Iteration: 10, Func. Count: 87, Neg. LLF: 156.99326109073624
Iteration: 11, Func. Count: 95, Neg. LLF: 156.82669452116974
Iteration: 12, Func. Count: 103, Neg. LLF: 156.7394773967016
Iteration: 13, Func. Count: 111, Neg. LLF: 156.71743321990581
Iteration: 14, Func. Count: 119, Neg. LLF: 156.7152373393449
Iteration: 15, Func. Count: 127, Neg. LLF: 156.7150568373911
Iteration: 16, Func. Count: 135, Neg. LLF: 156.71497732759678
Iteration: 17, Func. Count: 143, Neg. LLF: 156.7149493687822
Iteration: 18, Func. Count: 151, Neg. LLF: 156.7149467315197
Iteration: 19, Func. Count: 158, Neg. LLF: 156.7149466718053
Optimization terminated successfully (Exit mode 0)
Current function value: 156.7149467315197
Iterations: 19
Function evaluations: 158
Gradient evaluations: 19
Iteration: 1, Func. Count: 10, Neg. LLF: 15177903.213807663
Iteration: 2, Func. Count: 20, Neg. LLF: 152.46181947466485
Iteration: 3, Func. Count: 30, Neg. LLF: 151.2538268758753
Iteration: 4, Func. Count: 40, Neg. LLF: 149.69808455177653
Iteration: 5, Func. Count: 49, Neg. LLF: 149.72836592739804
Iteration: 6, Func. Count: 59, Neg. LLF: 149.67317368279603
Iteration: 7, Func. Count: 68, Neg. LLF: 149.67197106062545
Iteration: 8, Func. Count: 77, Neg. LLF: 149.67196568012113
Iteration: 9, Func. Count: 85, Neg. LLF: 149.6719654517185
Optimization terminated successfully (Exit mode 0)
Current function value: 149.67196568012113
Iterations: 9
Function evaluations: 85
Gradient evaluations: 9
Iteration: 1, Func. Count: 11, Neg. LLF: 310.1252493002303
Iteration: 2, Func. Count: 22, Neg. LLF: 152.3897699330678
Iteration: 3, Func. Count: 32, Neg. LLF: 149.97787177019813
Iteration: 4, Func. Count: 42, Neg. LLF: 152.60599810570545
Iteration: 5, Func. Count: 53, Neg. LLF: 150.31695058039233
Iteration: 6, Func. Count: 64, Neg. LLF: 150.00513384435232
Iteration: 7, Func. Count: 75, Neg. LLF: 149.67747831876034
Iteration: 8, Func. Count: 85, Neg. LLF: 149.67107638512695
Iteration: 9, Func. Count: 95, Neg. LLF: 149.66606767214873
Iteration: 10, Func. Count: 105, Neg. LLF: 149.6647849854073
Iteration: 11, Func. Count: 115, Neg. LLF: 149.66469733463293
Iteration: 12, Func. Count: 125, Neg. LLF: 149.6646945848211
Iteration: 13, Func. Count: 134, Neg. LLF: 149.66469439243286
Optimization terminated successfully (Exit mode 0)
Current function value: 149.6646945848211
Iterations: 13
Function evaluations: 134
Gradient evaluations: 13
Iteration: 1, Func. Count: 12, Neg. LLF: 276.4295996570561
Iteration: 2, Func. Count: 24, Neg. LLF: 164.4380360918049
Iteration: 3, Func. Count: 36, Neg. LLF: 156.87616939923515
Iteration: 4, Func. Count: 48, Neg. LLF: 150.8229540464775
Iteration: 5, Func. Count: 59, Neg. LLF: 153.84385307138186
Iteration: 6, Func. Count: 71, Neg. LLF: 152.08075104887288
Iteration: 7, Func. Count: 83, Neg. LLF: 149.68023345829863
Iteration: 8, Func. Count: 94, Neg. LLF: 149.6260332896316
Iteration: 9, Func. Count: 105, Neg. LLF: 149.60984189208352
Iteration: 10, Func. Count: 116, Neg. LLF: 149.5952514814047
Iteration: 11, Func. Count: 127, Neg. LLF: 149.57333690484978
Iteration: 12, Func. Count: 138, Neg. LLF: 149.56913606164684
Iteration: 13, Func. Count: 149, Neg. LLF: 149.56824366242648
Iteration: 14, Func. Count: 160, Neg. LLF: 149.5682223499801
Iteration: 15, Func. Count: 171, Neg. LLF: 149.56821837527454
Iteration: 16, Func. Count: 181, Neg. LLF: 149.5682182239828
Optimization terminated successfully (Exit mode 0)
Current function value: 149.56821837527454
Iterations: 16
Function evaluations: 181
Gradient evaluations: 16
Iteration: 1, Func. Count: 13, Neg. LLF: 271.1736165490766
Iteration: 2, Func. Count: 26, Neg. LLF: 236.4220786843811
Iteration: 3, Func. Count: 39, Neg. LLF: 157.35123963954425
Iteration: 4, Func. Count: 52, Neg. LLF: 154.167876334789
Iteration: 5, Func. Count: 65, Neg. LLF: 149.89831200875997
Iteration: 6, Func. Count: 77, Neg. LLF: 150.16050353026685
Iteration: 7, Func. Count: 90, Neg. LLF: 150.5882350536848
Iteration: 8, Func. Count: 103, Neg. LLF: 149.56610356743886
Iteration: 9, Func. Count: 115, Neg. LLF: 149.55666718162018
Iteration: 10, Func. Count: 127, Neg. LLF: 149.55143175218606
Iteration: 11, Func. Count: 139, Neg. LLF: 149.54825344250614
Iteration: 12, Func. Count: 151, Neg. LLF: 149.54765039694433
Iteration: 13, Func. Count: 163, Neg. LLF: 149.54755947241614
Iteration: 14, Func. Count: 175, Neg. LLF: 149.54755142200537
Iteration: 15, Func. Count: 187, Neg. LLF: 149.54754956684147
Iteration: 16, Func. Count: 198, Neg. LLF: 149.54754946948486
Optimization terminated successfully (Exit mode 0)
Current function value: 149.54754956684147
Iterations: 16
Function evaluations: 198
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 168.51398336445874
Iteration: 2, Func. Count: 20, Neg. LLF: 158.80588337520564
Iteration: 3, Func. Count: 30, Neg. LLF: 158.72735423798824
Iteration: 4, Func. Count: 40, Neg. LLF: 157.32609455872893
Iteration: 5, Func. Count: 50, Neg. LLF: 156.53729345003688
Iteration: 6, Func. Count: 59, Neg. LLF: 156.31362970815172
Iteration: 7, Func. Count: 68, Neg. LLF: 156.13016490487874
Iteration: 8, Func. Count: 77, Neg. LLF: 155.43260676920139
Iteration: 9, Func. Count: 86, Neg. LLF: 154.61879982616406
Iteration: 10, Func. Count: 95, Neg. LLF: 157.81168031017324
Iteration: 11, Func. Count: 105, Neg. LLF: 154.0023855592687
Iteration: 12, Func. Count: 114, Neg. LLF: 153.95881369893948
Iteration: 13, Func. Count: 123, Neg. LLF: 153.95684791102386
Iteration: 14, Func. Count: 132, Neg. LLF: 153.9568395870026
Iteration: 15, Func. Count: 141, Neg. LLF: 153.9568385036215
Iteration: 16, Func. Count: 149, Neg. LLF: 153.95683847791244
Optimization terminated successfully (Exit mode 0)
Current function value: 153.9568385036215
Iterations: 16
Function evaluations: 149
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 783.0888485023816
Iteration: 2, Func. Count: 22, Neg. LLF: 173.30728364022556
Iteration: 3, Func. Count: 33, Neg. LLF: 150.19561733378686
Iteration: 4, Func. Count: 43, Neg. LLF: 150.25115497215882
Iteration: 5, Func. Count: 54, Neg. LLF: 155.11362964207072
Iteration: 6, Func. Count: 65, Neg. LLF: 149.70714085873385
Iteration: 7, Func. Count: 75, Neg. LLF: 149.67832097294294
Iteration: 8, Func. Count: 85, Neg. LLF: 149.6723545568283
Iteration: 9, Func. Count: 95, Neg. LLF: 149.6719586234767
Iteration: 10, Func. Count: 105, Neg. LLF: 149.67195593556852
Iteration: 11, Func. Count: 114, Neg. LLF: 149.67195570746594
Optimization terminated successfully (Exit mode 0)
Current function value: 149.67195593556852
Iterations: 11
Function evaluations: 114
Gradient evaluations: 11
Iteration: 1, Func. Count: 12, Neg. LLF: 422.48429966019773
Iteration: 2, Func. Count: 24, Neg. LLF: 151.11711620941895
Iteration: 3, Func. Count: 35, Neg. LLF: 150.7003551165494
Iteration: 4, Func. Count: 46, Neg. LLF: 441.3685199931084
Iteration: 5, Func. Count: 58, Neg. LLF: 152.51842441268462
Iteration: 6, Func. Count: 70, Neg. LLF: 149.73818775658373
Iteration: 7, Func. Count: 81, Neg. LLF: 149.68206807313703
Iteration: 8, Func. Count: 92, Neg. LLF: 149.70582314461322
Iteration: 9, Func. Count: 104, Neg. LLF: 149.6492564315576
Iteration: 10, Func. Count: 115, Neg. LLF: 149.6491855904224
Iteration: 11, Func. Count: 125, Neg. LLF: 149.6491854590632
Optimization terminated successfully (Exit mode 0)
Current function value: 149.6491855904224
Iterations: 11
Function evaluations: 125
Gradient evaluations: 11
Iteration: 1, Func. Count: 13, Neg. LLF: 261.3547094309676
Iteration: 2, Func. Count: 26, Neg. LLF: 203.75793277744566
Iteration: 3, Func. Count: 39, Neg. LLF: 155.27734979426626
Iteration: 4, Func. Count: 52, Neg. LLF: 149.54329753778606
Iteration: 5, Func. Count: 64, Neg. LLF: 150.17294608156237
Iteration: 6, Func. Count: 77, Neg. LLF: 150.47778532678643
Iteration: 7, Func. Count: 90, Neg. LLF: 149.26786830847013
Iteration: 8, Func. Count: 102, Neg. LLF: 149.23776800628687
Iteration: 9, Func. Count: 114, Neg. LLF: 149.2363828730456
Iteration: 10, Func. Count: 126, Neg. LLF: 149.2356972146759
Iteration: 11, Func. Count: 138, Neg. LLF: 149.2356617631819
Iteration: 12, Func. Count: 150, Neg. LLF: 149.23565919143084
Iteration: 13, Func. Count: 161, Neg. LLF: 149.23565909008775
Optimization terminated successfully (Exit mode 0)
Current function value: 149.23565919143084
Iterations: 13
Function evaluations: 161
Gradient evaluations: 13
Iteration: 1, Func. Count: 14, Neg. LLF: 184.88209709743725
Iteration: 2, Func. Count: 28, Neg. LLF: 193.38205445745282
Iteration: 3, Func. Count: 42, Neg. LLF: 150.71562743428274
Iteration: 4, Func. Count: 55, Neg. LLF: 152.10310997315455
Iteration: 5, Func. Count: 69, Neg. LLF: 185.3172799947524
Iteration: 6, Func. Count: 83, Neg. LLF: 151.45686394326506
Iteration: 7, Func. Count: 97, Neg. LLF: 149.33122387486975
Iteration: 8, Func. Count: 110, Neg. LLF: 149.28846491976006
Iteration: 9, Func. Count: 123, Neg. LLF: 149.2403105218675
Iteration: 10, Func. Count: 136, Neg. LLF: 149.23748160738228
Iteration: 11, Func. Count: 149, Neg. LLF: 149.2358606206053
Iteration: 12, Func. Count: 162, Neg. LLF: 149.23568975318668
Iteration: 13, Func. Count: 175, Neg. LLF: 149.23565934657563
Iteration: 14, Func. Count: 187, Neg. LLF: 149.23565926635192
Optimization terminated successfully (Exit mode 0)
Current function value: 149.23565934657563
Iterations: 14
Function evaluations: 187
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 165.9025843456243
Iteration: 2, Func. Count: 22, Neg. LLF: 159.0648729864406
Iteration: 3, Func. Count: 33, Neg. LLF: 158.11320234618975
Iteration: 4, Func. Count: 44, Neg. LLF: 158.225200864463
Iteration: 5, Func. Count: 55, Neg. LLF: 156.54815107281559
Iteration: 6, Func. Count: 65, Neg. LLF: 156.33103824618158
Iteration: 7, Func. Count: 75, Neg. LLF: 156.1324678076118
Iteration: 8, Func. Count: 85, Neg. LLF: 155.51267646231614
Iteration: 9, Func. Count: 95, Neg. LLF: 154.9416861797128
Iteration: 10, Func. Count: 105, Neg. LLF: 154.04659258856918
Iteration: 11, Func. Count: 115, Neg. LLF: 153.97352630310417
Iteration: 12, Func. Count: 125, Neg. LLF: 153.9886298654012
Iteration: 13, Func. Count: 136, Neg. LLF: 153.95688790307008
Iteration: 14, Func. Count: 146, Neg. LLF: 153.95683843565496
Iteration: 15, Func. Count: 155, Neg. LLF: 153.95683850915023
Optimization terminated successfully (Exit mode 0)
Current function value: 153.95683843565496
Iterations: 15
Function evaluations: 155
Gradient evaluations: 15
Iteration: 1, Func. Count: 12, Neg. LLF: 460.88842386113186
Iteration: 2, Func. Count: 24, Neg. LLF: 1468.5524862869593
Iteration: 3, Func. Count: 36, Neg. LLF: 151.058180158457
Iteration: 4, Func. Count: 47, Neg. LLF: 149.63966030428332
Iteration: 5, Func. Count: 58, Neg. LLF: 149.600933561696
Iteration: 6, Func. Count: 69, Neg. LLF: 149.64186331835762
Iteration: 7, Func. Count: 81, Neg. LLF: 149.59428270005358
Iteration: 8, Func. Count: 93, Neg. LLF: 149.55872452422918
Iteration: 9, Func. Count: 104, Neg. LLF: 149.5570788424167
Iteration: 10, Func. Count: 115, Neg. LLF: 149.55707386362664
Iteration: 11, Func. Count: 125, Neg. LLF: 149.5570736183775
Optimization terminated successfully (Exit mode 0)
Current function value: 149.55707386362664
Iterations: 11
Function evaluations: 125
Gradient evaluations: 11
Iteration: 1, Func. Count: 13, Neg. LLF: 382.4420695880561
Iteration: 2, Func. Count: 26, Neg. LLF: 360.9036059449784
Iteration: 3, Func. Count: 39, Neg. LLF: 150.46665425094704
Iteration: 4, Func. Count: 51, Neg. LLF: 151.02745629807325
Iteration: 5, Func. Count: 64, Neg. LLF: 167.24368725901843
Iteration: 6, Func. Count: 77, Neg. LLF: 150.23692071789046
Iteration: 7, Func. Count: 90, Neg. LLF: 149.69944801081243
Iteration: 8, Func. Count: 102, Neg. LLF: 149.72655248034283
Iteration: 9, Func. Count: 115, Neg. LLF: 149.75818114138147
Iteration: 10, Func. Count: 128, Neg. LLF: 149.6641370311785
Iteration: 11, Func. Count: 140, Neg. LLF: 149.65909506972744
Iteration: 12, Func. Count: 152, Neg. LLF: 149.64227482386977
Iteration: 13, Func. Count: 164, Neg. LLF: 149.62973615974923
Iteration: 14, Func. Count: 176, Neg. LLF: 149.59839995151694
Iteration: 15, Func. Count: 188, Neg. LLF: 149.57942739679294
Iteration: 16, Func. Count: 200, Neg. LLF: 149.56310090849308
Iteration: 17, Func. Count: 212, Neg. LLF: 149.55856198940683
Iteration: 18, Func. Count: 224, Neg. LLF: 149.5572871462022
Iteration: 19, Func. Count: 236, Neg. LLF: 149.557096228686
Iteration: 20, Func. Count: 248, Neg. LLF: 149.5570736383003
Iteration: 21, Func. Count: 259, Neg. LLF: 149.55707340008107
Optimization terminated successfully (Exit mode 0)
Current function value: 149.5570736383003
Iterations: 21
Function evaluations: 259
Gradient evaluations: 21
Iteration: 1, Func. Count: 14, Neg. LLF: 186.03610526553322
Iteration: 2, Func. Count: 28, Neg. LLF: 162.02904110292675
Iteration: 3, Func. Count: 42, Neg. LLF: 151.8609126715452
Iteration: 4, Func. Count: 55, Neg. LLF: 149.86607708885094
Iteration: 5, Func. Count: 68, Neg. LLF: 151.4681619484363
Iteration: 6, Func. Count: 82, Neg. LLF: 151.33305670863578
Iteration: 7, Func. Count: 96, Neg. LLF: 149.85688309041265
Iteration: 8, Func. Count: 110, Neg. LLF: 149.25274187069277
Iteration: 9, Func. Count: 123, Neg. LLF: 149.24021115615426
Iteration: 10, Func. Count: 136, Neg. LLF: 149.23574107780735
Iteration: 11, Func. Count: 149, Neg. LLF: 149.23568901810174
Iteration: 12, Func. Count: 162, Neg. LLF: 149.23566054523906
Iteration: 13, Func. Count: 175, Neg. LLF: 149.23565902427768
Iteration: 14, Func. Count: 187, Neg. LLF: 149.23565892300192
Optimization terminated successfully (Exit mode 0)
Current function value: 149.23565902427768
Iterations: 14
Function evaluations: 187
Gradient evaluations: 14
Iteration: 1, Func. Count: 15, Neg. LLF: 184.20386999588573
Iteration: 2, Func. Count: 30, Neg. LLF: 179.61893483434747
Iteration: 3, Func. Count: 45, Neg. LLF: 151.90615181377356
Iteration: 4, Func. Count: 59, Neg. LLF: 151.15243743757003
Iteration: 5, Func. Count: 73, Neg. LLF: 153.40823171480483
Iteration: 6, Func. Count: 88, Neg. LLF: 151.4647581359721
Iteration: 7, Func. Count: 103, Neg. LLF: 149.7500245508936
Iteration: 8, Func. Count: 117, Neg. LLF: 149.57359228786075
Iteration: 9, Func. Count: 131, Neg. LLF: 149.52005650810096
Iteration: 10, Func. Count: 145, Neg. LLF: 149.49343108002142
Iteration: 11, Func. Count: 159, Neg. LLF: 149.5010068233576
Iteration: 12, Func. Count: 174, Neg. LLF: 149.4876535431932
Iteration: 13, Func. Count: 188, Neg. LLF: 149.4848566748802
Iteration: 14, Func. Count: 202, Neg. LLF: 149.4815145678769
Iteration: 15, Func. Count: 216, Neg. LLF: 149.47389442552785
Iteration: 16, Func. Count: 230, Neg. LLF: 149.47125404040904
Iteration: 17, Func. Count: 244, Neg. LLF: 149.46874313431252
Iteration: 18, Func. Count: 258, Neg. LLF: 149.46850005121607
Iteration: 19, Func. Count: 272, Neg. LLF: 149.46842176732963
Iteration: 20, Func. Count: 286, Neg. LLF: 149.46841936458358
Iteration: 21, Func. Count: 299, Neg. LLF: 149.4684193055588
Optimization terminated successfully (Exit mode 0)
Current function value: 149.46841936458358
Iterations: 21
Function evaluations: 299
Gradient evaluations: 21
Iteration: 1, Func. Count: 8, Neg. LLF: 159.5485396289771
Iteration: 2, Func. Count: 16, Neg. LLF: 162.0798398218623
Iteration: 3, Func. Count: 24, Neg. LLF: 158.02911163164435
Iteration: 4, Func. Count: 31, Neg. LLF: 158.2349190786977
Iteration: 5, Func. Count: 39, Neg. LLF: 164.77075859752026
Iteration: 6, Func. Count: 47, Neg. LLF: 157.84451272313538
Iteration: 7, Func. Count: 54, Neg. LLF: 157.32882510181923
Iteration: 8, Func. Count: 61, Neg. LLF: 156.27411090156832
Iteration: 9, Func. Count: 68, Neg. LLF: 156.4080793832491
Iteration: 10, Func. Count: 76, Neg. LLF: 219.64530443452463
Iteration: 11, Func. Count: 84, Neg. LLF: 183.4954308605483
Iteration: 12, Func. Count: 92, Neg. LLF: 183.44028650805825
Iteration: 13, Func. Count: 100, Neg. LLF: 163.4621545405493
Iteration: 14, Func. Count: 108, Neg. LLF: 154.72585193602694
Iteration: 15, Func. Count: 115, Neg. LLF: 162.25516244997468
Iteration: 16, Func. Count: 124, Neg. LLF: 154.5112765715846
Iteration: 17, Func. Count: 131, Neg. LLF: 154.38744939572706
Iteration: 18, Func. Count: 138, Neg. LLF: 154.3801100341224
Iteration: 19, Func. Count: 145, Neg. LLF: 154.37844756272005
Iteration: 20, Func. Count: 152, Neg. LLF: 154.37815107269242
Iteration: 21, Func. Count: 159, Neg. LLF: 154.37813943447017
Iteration: 22, Func. Count: 165, Neg. LLF: 154.37813935880214
Optimization terminated successfully (Exit mode 0)
Current function value: 154.37813943447017
Iterations: 22
Function evaluations: 165
Gradient evaluations: 22
Iteration: 1, Func. Count: 9, Neg. LLF: 179.23680290229055
Iteration: 2, Func. Count: 18, Neg. LLF: 162.67066673393322
Iteration: 3, Func. Count: 27, Neg. LLF: 158.35372912776364
Iteration: 4, Func. Count: 36, Neg. LLF: 154.6075415971399
Iteration: 5, Func. Count: 44, Neg. LLF: 162.7611913872086
Iteration: 6, Func. Count: 53, Neg. LLF: 154.3801925685779
Iteration: 7, Func. Count: 61, Neg. LLF: 154.2916603455238
Iteration: 8, Func. Count: 69, Neg. LLF: 154.251646540025
Iteration: 9, Func. Count: 77, Neg. LLF: 154.24781609733506
Iteration: 10, Func. Count: 85, Neg. LLF: 154.24729858104325
Iteration: 11, Func. Count: 93, Neg. LLF: 154.24708900119407
Iteration: 12, Func. Count: 100, Neg. LLF: 154.24708892346905
Optimization terminated successfully (Exit mode 0)
Current function value: 154.24708900119407
Iterations: 12
Function evaluations: 100
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 176.12126902321847
Iteration: 2, Func. Count: 20, Neg. LLF: 160.70232248853898
Iteration: 3, Func. Count: 30, Neg. LLF: 155.7455151926858
Iteration: 4, Func. Count: 40, Neg. LLF: 153.70435662879595
Iteration: 5, Func. Count: 49, Neg. LLF: 153.48632035752465
Iteration: 6, Func. Count: 58, Neg. LLF: 153.50531881762322
Iteration: 7, Func. Count: 68, Neg. LLF: 153.36661141540725
Iteration: 8, Func. Count: 77, Neg. LLF: 153.3622656885707
Iteration: 9, Func. Count: 86, Neg. LLF: 153.36177757797296
Iteration: 10, Func. Count: 95, Neg. LLF: 153.36165004009652
Iteration: 11, Func. Count: 104, Neg. LLF: 153.36164904796703
Optimization terminated successfully (Exit mode 0)
Current function value: 153.36164904796703
Iterations: 11
Function evaluations: 104
Gradient evaluations: 11
Iteration: 1, Func. Count: 11, Neg. LLF: 174.37744351121037
Iteration: 2, Func. Count: 22, Neg. LLF: 158.70123701936993
Iteration: 3, Func. Count: 33, Neg. LLF: 153.73246117619084
Iteration: 4, Func. Count: 43, Neg. LLF: 153.433402919564
Iteration: 5, Func. Count: 53, Neg. LLF: 154.7140532993486
Iteration: 6, Func. Count: 64, Neg. LLF: 153.37230283938976
Iteration: 7, Func. Count: 74, Neg. LLF: 153.36560673238841
Iteration: 8, Func. Count: 84, Neg. LLF: 153.36169013882525
Iteration: 9, Func. Count: 94, Neg. LLF: 153.36164916384118
Iteration: 10, Func. Count: 103, Neg. LLF: 153.36164910868152
Optimization terminated successfully (Exit mode 0)
Current function value: 153.36164916384118
Iterations: 10
Function evaluations: 103
Gradient evaluations: 10
Iteration: 1, Func. Count: 12, Neg. LLF: 173.26896519197192
Iteration: 2, Func. Count: 24, Neg. LLF: 158.84931682610093
Iteration: 3, Func. Count: 36, Neg. LLF: 158.23266914656114
Iteration: 4, Func. Count: 48, Neg. LLF: 153.44331925688772
Iteration: 5, Func. Count: 59, Neg. LLF: 158.24279223954807
Iteration: 6, Func. Count: 71, Neg. LLF: 153.37902812261586
Iteration: 7, Func. Count: 82, Neg. LLF: 153.36639825517304
Iteration: 8, Func. Count: 93, Neg. LLF: 153.362313982247
Iteration: 9, Func. Count: 104, Neg. LLF: 153.3617202043778
Iteration: 10, Func. Count: 115, Neg. LLF: 153.36165133011792
Iteration: 11, Func. Count: 126, Neg. LLF: 153.36164905420725
Iteration: 12, Func. Count: 136, Neg. LLF: 153.36164900400775
Optimization terminated successfully (Exit mode 0)
Current function value: 153.36164905420725
Iterations: 12
Function evaluations: 136
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 159.16358897198128
Iteration: 2, Func. Count: 18, Neg. LLF: 159.69752209696043
Iteration: 3, Func. Count: 27, Neg. LLF: 158.2073748745265
Iteration: 4, Func. Count: 36, Neg. LLF: 157.55601712257743
Iteration: 5, Func. Count: 44, Neg. LLF: 157.48579528002526
Iteration: 6, Func. Count: 52, Neg. LLF: 157.21263433701063
Iteration: 7, Func. Count: 60, Neg. LLF: 223.0962480996182
Iteration: 8, Func. Count: 69, Neg. LLF: 262.41059716758826
Iteration: 9, Func. Count: 78, Neg. LLF: 263.38101333958
Iteration: 10, Func. Count: 87, Neg. LLF: 250.56279319034292
Iteration: 11, Func. Count: 96, Neg. LLF: 238.6950257276607
Iteration: 12, Func. Count: 105, Neg. LLF: 225.2348134006924
Iteration: 13, Func. Count: 114, Neg. LLF: 226.78566298523555
Iteration: 14, Func. Count: 123, Neg. LLF: 160.59771805639988
Iteration: 15, Func. Count: 132, Neg. LLF: 155.13323179215604
Iteration: 16, Func. Count: 141, Neg. LLF: 156.9027936809611
Iteration: 17, Func. Count: 150, Neg. LLF: 154.38408021170238
Iteration: 18, Func. Count: 158, Neg. LLF: 246.00948506517346
Iteration: 19, Func. Count: 167, Neg. LLF: 180.9730999815017
Iteration: 20, Func. Count: 176, Neg. LLF: 180.34637462554852
Iteration: 21, Func. Count: 185, Neg. LLF: 178.80541532536975
Iteration: 22, Func. Count: 194, Neg. LLF: 154.2716616229777
Iteration: 23, Func. Count: 203, Neg. LLF: 153.60895659770642
Iteration: 24, Func. Count: 211, Neg. LLF: 153.59754610939422
Iteration: 25, Func. Count: 219, Neg. LLF: 153.5963011175714
Iteration: 26, Func. Count: 227, Neg. LLF: 153.5950292339679
Iteration: 27, Func. Count: 235, Neg. LLF: 153.59498795384692
Iteration: 28, Func. Count: 243, Neg. LLF: 153.59494428262306
Iteration: 29, Func. Count: 250, Neg. LLF: 153.59494424094828
Optimization terminated successfully (Exit mode 0)
Current function value: 153.59494428262306
Iterations: 30
Function evaluations: 250
Gradient evaluations: 29
Iteration: 1, Func. Count: 10, Neg. LLF: 15008998.169315942
Iteration: 2, Func. Count: 20, Neg. LLF: 151.99729016213186
Iteration: 3, Func. Count: 30, Neg. LLF: 151.2464448221359
Iteration: 4, Func. Count: 40, Neg. LLF: 149.84407999338103
Iteration: 5, Func. Count: 49, Neg. LLF: 149.82669174416938
Iteration: 6, Func. Count: 58, Neg. LLF: 149.8259629989166
Iteration: 7, Func. Count: 67, Neg. LLF: 149.82596794517477
Iteration: 8, Func. Count: 76, Neg. LLF: 149.82595928578377
Optimization terminated successfully (Exit mode 0)
Current function value: 149.82595956071336
Iterations: 8
Function evaluations: 76
Gradient evaluations: 8
Iteration: 1, Func. Count: 11, Neg. LLF: 582.1193805733692
Iteration: 2, Func. Count: 22, Neg. LLF: 201.25828265528872
Iteration: 3, Func. Count: 33, Neg. LLF: 151.5395462077635
Iteration: 4, Func. Count: 43, Neg. LLF: 150.70591104614036
Iteration: 5, Func. Count: 53, Neg. LLF: 155.4466860413385
Iteration: 6, Func. Count: 65, Neg. LLF: 150.38784432582926
Iteration: 7, Func. Count: 76, Neg. LLF: 149.89416173971918
Iteration: 8, Func. Count: 86, Neg. LLF: 149.82849754482126
Iteration: 9, Func. Count: 96, Neg. LLF: 149.82819516884567
Iteration: 10, Func. Count: 107, Neg. LLF: 149.82609720177445
Iteration: 11, Func. Count: 117, Neg. LLF: 149.82596193021593
Iteration: 12, Func. Count: 127, Neg. LLF: 149.8259593185866
Iteration: 13, Func. Count: 136, Neg. LLF: 149.8259590544043
Optimization terminated successfully (Exit mode 0)
Current function value: 149.8259593185866
Iterations: 13
Function evaluations: 136
Gradient evaluations: 13
Iteration: 1, Func. Count: 12, Neg. LLF: 539.5513701683536
Iteration: 2, Func. Count: 24, Neg. LLF: 151.44924081222118
Iteration: 3, Func. Count: 35, Neg. LLF: 166.1564364314596
Iteration: 4, Func. Count: 48, Neg. LLF: 165.77046933655393
Iteration: 5, Func. Count: 60, Neg. LLF: 150.26674396576942
Iteration: 6, Func. Count: 71, Neg. LLF: 149.97391575843565
Iteration: 7, Func. Count: 82, Neg. LLF: 149.82893532374123
Iteration: 8, Func. Count: 93, Neg. LLF: 149.82687809457306
Iteration: 9, Func. Count: 104, Neg. LLF: 149.82768013824486
Iteration: 10, Func. Count: 116, Neg. LLF: 149.82596601219535
Iteration: 11, Func. Count: 127, Neg. LLF: 149.82595921610528
Iteration: 12, Func. Count: 137, Neg. LLF: 149.8259589648891
Optimization terminated successfully (Exit mode 0)
Current function value: 149.82595921610528
Iterations: 12
Function evaluations: 137
Gradient evaluations: 12
Iteration: 1, Func. Count: 13, Neg. LLF: 532.2890972958312
Iteration: 2, Func. Count: 26, Neg. LLF: 153.2782335995262
Iteration: 3, Func. Count: 39, Neg. LLF: 159.0408079685721
Iteration: 4, Func. Count: 52, Neg. LLF: 150.36701224434734
Iteration: 5, Func. Count: 64, Neg. LLF: 150.42206750165056
Iteration: 6, Func. Count: 77, Neg. LLF: 150.5519831309751
Iteration: 7, Func. Count: 90, Neg. LLF: 150.0989260686532
Iteration: 8, Func. Count: 102, Neg. LLF: 150.06504378371818
Iteration: 9, Func. Count: 114, Neg. LLF: 149.91988568554842
Iteration: 10, Func. Count: 126, Neg. LLF: 149.87415131084649
Iteration: 11, Func. Count: 138, Neg. LLF: 149.85312998532416
Iteration: 12, Func. Count: 150, Neg. LLF: 149.83331195590398
Iteration: 13, Func. Count: 162, Neg. LLF: 149.82604742818899
Iteration: 14, Func. Count: 174, Neg. LLF: 149.82596179994565
Iteration: 15, Func. Count: 186, Neg. LLF: 149.82595792794945
Iteration: 16, Func. Count: 198, Neg. LLF: 149.82595764057078
Optimization terminated successfully (Exit mode 0)
Current function value: 149.8259579275856
Iterations: 16
Function evaluations: 208
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 162.9860387711557
Iteration: 2, Func. Count: 20, Neg. LLF: 160.3928591274512
Iteration: 3, Func. Count: 31, Neg. LLF: 161.87422113824402
Iteration: 4, Func. Count: 41, Neg. LLF: 157.7974000295173
Iteration: 5, Func. Count: 50, Neg. LLF: 158.00609585236677
Iteration: 6, Func. Count: 60, Neg. LLF: 160.11816247171575
Iteration: 7, Func. Count: 70, Neg. LLF: 157.3043012544108
Iteration: 8, Func. Count: 79, Neg. LLF: 156.98061253636223
Iteration: 9, Func. Count: 88, Neg. LLF: 156.58440029401424
Iteration: 10, Func. Count: 97, Neg. LLF: 154.13614234077536
Iteration: 11, Func. Count: 106, Neg. LLF: 169.8390247652003
Iteration: 12, Func. Count: 116, Neg. LLF: 164.3309125454426
Iteration: 13, Func. Count: 126, Neg. LLF: 154.54418609377245
Iteration: 14, Func. Count: 136, Neg. LLF: 153.71350922468926
Iteration: 15, Func. Count: 146, Neg. LLF: 153.6690590438016
Iteration: 16, Func. Count: 156, Neg. LLF: 153.59532771057783
Iteration: 17, Func. Count: 165, Neg. LLF: 153.5949950559801
Iteration: 18, Func. Count: 174, Neg. LLF: 153.59494531748138
Iteration: 19, Func. Count: 183, Neg. LLF: 153.59494422944866
Iteration: 20, Func. Count: 191, Neg. LLF: 153.59494420005112
Optimization terminated successfully (Exit mode 0)
Current function value: 153.59494422944866
Iterations: 20
Function evaluations: 191
Gradient evaluations: 20
Iteration: 1, Func. Count: 11, Neg. LLF: 15161117.291257948
Iteration: 2, Func. Count: 22, Neg. LLF: 152.5749870636389
Iteration: 3, Func. Count: 33, Neg. LLF: 150.92613596281313
Iteration: 4, Func. Count: 44, Neg. LLF: 149.72163280274498
Iteration: 5, Func. Count: 54, Neg. LLF: 149.7124655487234
Iteration: 6, Func. Count: 65, Neg. LLF: 149.6758859150725
Iteration: 7, Func. Count: 75, Neg. LLF: 149.67199523051212
Iteration: 8, Func. Count: 85, Neg. LLF: 149.67196591967402
Iteration: 9, Func. Count: 94, Neg. LLF: 149.67196569139102
Optimization terminated successfully (Exit mode 0)
Current function value: 149.67196591967402
Iterations: 9
Function evaluations: 94
Gradient evaluations: 9
Iteration: 1, Func. Count: 12, Neg. LLF: 506.8740369414185
Iteration: 2, Func. Count: 24, Neg. LLF: 169.99446190821828
Iteration: 3, Func. Count: 36, Neg. LLF: 150.5582261428405
Iteration: 4, Func. Count: 47, Neg. LLF: 151.10430691942423
Iteration: 5, Func. Count: 59, Neg. LLF: 218.91456056745946
Iteration: 6, Func. Count: 71, Neg. LLF: 149.35512377150718
Iteration: 7, Func. Count: 82, Neg. LLF: 149.802781666628
Iteration: 8, Func. Count: 94, Neg. LLF: 149.30558177687874
Iteration: 9, Func. Count: 105, Neg. LLF: 149.294766577141
Iteration: 10, Func. Count: 116, Neg. LLF: 149.29366140071843
Iteration: 11, Func. Count: 127, Neg. LLF: 149.2935285966464
Iteration: 12, Func. Count: 138, Neg. LLF: 149.29351410775212
Iteration: 13, Func. Count: 149, Neg. LLF: 149.2935103682887
Iteration: 14, Func. Count: 159, Neg. LLF: 149.29351020274942
Optimization terminated successfully (Exit mode 0)
Current function value: 149.2935103682887
Iterations: 14
Function evaluations: 159
Gradient evaluations: 14
Iteration: 1, Func. Count: 13, Neg. LLF: 520.058556159763
Iteration: 2, Func. Count: 26, Neg. LLF: 2975.1636376276233
Iteration: 3, Func. Count: 39, Neg. LLF: 153.44502726597239
Iteration: 4, Func. Count: 52, Neg. LLF: 150.22144685471525
Iteration: 5, Func. Count: 64, Neg. LLF: 150.2179805220904
Iteration: 6, Func. Count: 77, Neg. LLF: 154.15471690844478
Iteration: 7, Func. Count: 91, Neg. LLF: 149.95124012501034
Iteration: 8, Func. Count: 104, Neg. LLF: 149.62238993787236
Iteration: 9, Func. Count: 116, Neg. LLF: 149.59556735277107
Iteration: 10, Func. Count: 128, Neg. LLF: 149.58637520433905
Iteration: 11, Func. Count: 140, Neg. LLF: 149.5807302066294
Iteration: 12, Func. Count: 152, Neg. LLF: 149.57120727461393
Iteration: 13, Func. Count: 164, Neg. LLF: 149.56909759961385
Iteration: 14, Func. Count: 176, Neg. LLF: 149.5682461775442
Iteration: 15, Func. Count: 188, Neg. LLF: 149.5682209636199
Iteration: 16, Func. Count: 200, Neg. LLF: 149.56821836181183
Iteration: 17, Func. Count: 211, Neg. LLF: 149.5682182103816
Optimization terminated successfully (Exit mode 0)
Current function value: 149.56821836181183
Iterations: 17
Function evaluations: 211
Gradient evaluations: 17
Iteration: 1, Func. Count: 14, Neg. LLF: 292.78603618146406
Iteration: 2, Func. Count: 28, Neg. LLF: 11003419.0578992
Iteration: 3, Func. Count: 42, Neg. LLF: 157.07708717315307
Iteration: 4, Func. Count: 56, Neg. LLF: 149.82834433705958
Iteration: 5, Func. Count: 69, Neg. LLF: 154.63388438581288
Iteration: 6, Func. Count: 83, Neg. LLF: 149.59490395575455
Iteration: 7, Func. Count: 96, Neg. LLF: 149.579755682271
Iteration: 8, Func. Count: 109, Neg. LLF: 149.5532134193516
Iteration: 9, Func. Count: 122, Neg. LLF: 149.54924134630488
Iteration: 10, Func. Count: 135, Neg. LLF: 149.54820900243968
Iteration: 11, Func. Count: 148, Neg. LLF: 149.54767621359102
Iteration: 12, Func. Count: 161, Neg. LLF: 149.54756716385762
Iteration: 13, Func. Count: 174, Neg. LLF: 149.54754971967975
Iteration: 14, Func. Count: 186, Neg. LLF: 149.54754962225482
Optimization terminated successfully (Exit mode 0)
Current function value: 149.54754971967975
Iterations: 14
Function evaluations: 186
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 164.3108044751681
Iteration: 2, Func. Count: 22, Neg. LLF: 158.54723044005894
Iteration: 3, Func. Count: 33, Neg. LLF: 158.69066235172923
Iteration: 4, Func. Count: 44, Neg. LLF: 156.82691871413826
Iteration: 5, Func. Count: 54, Neg. LLF: 156.46411083982923
Iteration: 6, Func. Count: 64, Neg. LLF: 156.27916034544324
Iteration: 7, Func. Count: 74, Neg. LLF: 155.91660250920427
Iteration: 8, Func. Count: 84, Neg. LLF: 155.54524515592365
Iteration: 9, Func. Count: 94, Neg. LLF: 375.0704903897511
Iteration: 10, Func. Count: 105, Neg. LLF: 185.99949103775535
Iteration: 11, Func. Count: 116, Neg. LLF: 201.01597607768224
Iteration: 12, Func. Count: 127, Neg. LLF: 200.31690590680807
Iteration: 13, Func. Count: 138, Neg. LLF: 197.11529375680615
Iteration: 14, Func. Count: 149, Neg. LLF: 169.88637637164422
Iteration: 15, Func. Count: 160, Neg. LLF: 156.9226095704328
Iteration: 16, Func. Count: 171, Neg. LLF: 153.6586421436409
Iteration: 17, Func. Count: 182, Neg. LLF: 153.20631872043083
Iteration: 18, Func. Count: 192, Neg. LLF: 153.68316525855832
Iteration: 19, Func. Count: 203, Neg. LLF: 236.94589872122887
Iteration: 20, Func. Count: 214, Neg. LLF: 181.78139376190762
Iteration: 21, Func. Count: 225, Neg. LLF: 252.9478222531392
Iteration: 22, Func. Count: 236, Neg. LLF: 225.7683704063365
Iteration: 23, Func. Count: 247, Neg. LLF: 276.7896091583774
Iteration: 24, Func. Count: 258, Neg. LLF: 152.09677467395588
Iteration: 25, Func. Count: 269, Neg. LLF: 151.6807791068972
Iteration: 26, Func. Count: 280, Neg. LLF: 151.66834865716203
Iteration: 27, Func. Count: 291, Neg. LLF: 151.66584895501614
Iteration: 28, Func. Count: 301, Neg. LLF: 151.66584013612962
Iteration: 29, Func. Count: 310, Neg. LLF: 151.66584008900074
Optimization terminated successfully (Exit mode 0)
Current function value: 151.66584013612962
Iterations: 30
Function evaluations: 310
Gradient evaluations: 29
Iteration: 1, Func. Count: 12, Neg. LLF: 558.8673662012399
Iteration: 2, Func. Count: 24, Neg. LLF: 171.97566982289206
Iteration: 3, Func. Count: 36, Neg. LLF: 150.12309347626788
Iteration: 4, Func. Count: 47, Neg. LLF: 150.1297213637081
Iteration: 5, Func. Count: 59, Neg. LLF: 151.06500936935538
Iteration: 6, Func. Count: 71, Neg. LLF: 149.75907856649968
Iteration: 7, Func. Count: 83, Neg. LLF: 149.67598542544386
Iteration: 8, Func. Count: 94, Neg. LLF: 149.6721440026637
Iteration: 9, Func. Count: 105, Neg. LLF: 149.67195811203865
Iteration: 10, Func. Count: 116, Neg. LLF: 149.67195577785247
Iteration: 11, Func. Count: 126, Neg. LLF: 149.67195554963178
Optimization terminated successfully (Exit mode 0)
Current function value: 149.67195577785247
Iterations: 11
Function evaluations: 126
Gradient evaluations: 11
Iteration: 1, Func. Count: 13, Neg. LLF: 414.2880011467268
Iteration: 2, Func. Count: 26, Neg. LLF: 172.98751872581295
Iteration: 3, Func. Count: 39, Neg. LLF: 151.4784941720184
Iteration: 4, Func. Count: 51, Neg. LLF: 150.65331819515055
Iteration: 5, Func. Count: 63, Neg. LLF: 243.3466960359622
Iteration: 6, Func. Count: 77, Neg. LLF: 152.81512803767362
Iteration: 7, Func. Count: 90, Neg. LLF: 150.22461045101733
Iteration: 8, Func. Count: 103, Neg. LLF: 149.92049859380845
Iteration: 9, Func. Count: 116, Neg. LLF: 149.34349906544583
Iteration: 10, Func. Count: 128, Neg. LLF: 149.31444307217322
Iteration: 11, Func. Count: 140, Neg. LLF: 149.30165294404682
Iteration: 12, Func. Count: 152, Neg. LLF: 149.28924244303812
Iteration: 13, Func. Count: 164, Neg. LLF: 149.28305569227996
Iteration: 14, Func. Count: 176, Neg. LLF: 149.28190679731364
Iteration: 15, Func. Count: 188, Neg. LLF: 149.2817113846805
Iteration: 16, Func. Count: 200, Neg. LLF: 149.28154185979182
Iteration: 17, Func. Count: 212, Neg. LLF: 149.2814769300776
Iteration: 18, Func. Count: 224, Neg. LLF: 149.28146863818694
Iteration: 19, Func. Count: 236, Neg. LLF: 149.28146804016367
Optimization terminated successfully (Exit mode 0)
Current function value: 149.28146804016367
Iterations: 19
Function evaluations: 236
Gradient evaluations: 19
Iteration: 1, Func. Count: 14, Neg. LLF: 431.8333960623628
Iteration: 2, Func. Count: 28, Neg. LLF: 3675.866475537699
Iteration: 3, Func. Count: 42, Neg. LLF: 152.31448284893298
Iteration: 4, Func. Count: 56, Neg. LLF: 152.17302558443174
Iteration: 5, Func. Count: 70, Neg. LLF: 164.84961217004562
Iteration: 6, Func. Count: 84, Neg. LLF: 149.6250466047192
Iteration: 7, Func. Count: 97, Neg. LLF: 149.2878864186378
Iteration: 8, Func. Count: 110, Neg. LLF: 149.24360004095337
Iteration: 9, Func. Count: 123, Neg. LLF: 149.23708454366414
Iteration: 10, Func. Count: 136, Neg. LLF: 149.23580922285916
Iteration: 11, Func. Count: 149, Neg. LLF: 149.2356601810292
Iteration: 12, Func. Count: 162, Neg. LLF: 149.23565894467646
Iteration: 13, Func. Count: 174, Neg. LLF: 149.23565884340016
Optimization terminated successfully (Exit mode 0)
Current function value: 149.23565894467646
Iterations: 13
Function evaluations: 174
Gradient evaluations: 13
Iteration: 1, Func. Count: 15, Neg. LLF: 184.87227960736513
Iteration: 2, Func. Count: 30, Neg. LLF: 237.46826408458782
Iteration: 3, Func. Count: 45, Neg. LLF: 149.9869668362439
Iteration: 4, Func. Count: 59, Neg. LLF: 189.6473397761754
Iteration: 5, Func. Count: 74, Neg. LLF: 149.51791493637148
Iteration: 6, Func. Count: 88, Neg. LLF: 149.4150160084321
Iteration: 7, Func. Count: 102, Neg. LLF: 149.40807549010674
Iteration: 8, Func. Count: 117, Neg. LLF: 149.2686517672537
Iteration: 9, Func. Count: 132, Neg. LLF: 149.2360442672107
Iteration: 10, Func. Count: 146, Neg. LLF: 149.2356801974033
Iteration: 11, Func. Count: 160, Neg. LLF: 149.23565932275545
Iteration: 12, Func. Count: 173, Neg. LLF: 149.23565924258037
Optimization terminated successfully (Exit mode 0)
Current function value: 149.23565932275545
Iterations: 12
Function evaluations: 173
Gradient evaluations: 12
Iteration: 1, Func. Count: 12, Neg. LLF: 161.66610712956282
Iteration: 2, Func. Count: 24, Neg. LLF: 159.5117912484503
Iteration: 3, Func. Count: 36, Neg. LLF: 157.74034462227945
Iteration: 4, Func. Count: 48, Neg. LLF: 156.7120227866067
Iteration: 5, Func. Count: 59, Neg. LLF: 156.6042663354193
Iteration: 6, Func. Count: 70, Neg. LLF: 156.52921647101323
Iteration: 7, Func. Count: 82, Neg. LLF: 156.1625366500145
Iteration: 8, Func. Count: 93, Neg. LLF: 155.73799535867647
Iteration: 9, Func. Count: 104, Neg. LLF: 158.87658957023046
Iteration: 10, Func. Count: 116, Neg. LLF: 432.798755936883
Iteration: 11, Func. Count: 128, Neg. LLF: 177.29980742431275
Iteration: 12, Func. Count: 140, Neg. LLF: 170.92798633158623
Iteration: 13, Func. Count: 152, Neg. LLF: 7188.367531835694
Iteration: 14, Func. Count: 164, Neg. LLF: 242.11095903231046
Iteration: 15, Func. Count: 176, Neg. LLF: 160.63013638432307
Iteration: 16, Func. Count: 188, Neg. LLF: 504.8032285646793
Iteration: 17, Func. Count: 200, Neg. LLF: 418.1793457949698
Iteration: 18, Func. Count: 212, Neg. LLF: 282.8535975686868
Iteration: 19, Func. Count: 224, Neg. LLF: 342.98874731022386
Iteration: 20, Func. Count: 236, Neg. LLF: 377.72690666293863
Iteration: 21, Func. Count: 248, Neg. LLF: 1887.162004875702
Iteration: 22, Func. Count: 260, Neg. LLF: 322.60435947500724
Iteration: 23, Func. Count: 272, Neg. LLF: 182.20941199795593
Iteration: 24, Func. Count: 284, Neg. LLF: 232.45718101193756
Iteration: 25, Func. Count: 296, Neg. LLF: 275.4281189980649
Iteration: 26, Func. Count: 308, Neg. LLF: 151.22184407489027
Iteration: 27, Func. Count: 319, Neg. LLF: 151.20876194250448
Iteration: 28, Func. Count: 330, Neg. LLF: 151.19611627538805
Iteration: 29, Func. Count: 341, Neg. LLF: 151.15456023893918
Iteration: 30, Func. Count: 352, Neg. LLF: 151.14155891480178
Iteration: 31, Func. Count: 363, Neg. LLF: 151.1413491218359
Iteration: 32, Func. Count: 374, Neg. LLF: 151.14133658790598
Iteration: 33, Func. Count: 385, Neg. LLF: 151.14132600393896
Iteration: 34, Func. Count: 395, Neg. LLF: 151.1413259351526
Optimization terminated successfully (Exit mode 0)
Current function value: 151.14132600393896
Iterations: 34
Function evaluations: 395
Gradient evaluations: 34
Iteration: 1, Func. Count: 13, Neg. LLF: 438.04913957705173
Iteration: 2, Func. Count: 26, Neg. LLF: 1768.9580483857847
Iteration: 3, Func. Count: 39, Neg. LLF: 149.9774800923249
Iteration: 4, Func. Count: 51, Neg. LLF: 153.22917935749692
Iteration: 5, Func. Count: 64, Neg. LLF: 167.79339221907622
Iteration: 6, Func. Count: 78, Neg. LLF: 163.66233555758075
Iteration: 7, Func. Count: 91, Neg. LLF: 149.67912688743255
Iteration: 8, Func. Count: 104, Neg. LLF: 149.60223586015502
Iteration: 9, Func. Count: 117, Neg. LLF: 149.5524651893175
Iteration: 10, Func. Count: 129, Neg. LLF: 149.55088110991625
Iteration: 11, Func. Count: 141, Neg. LLF: 149.54987546993158
Iteration: 12, Func. Count: 153, Neg. LLF: 149.5498095141017
Iteration: 13, Func. Count: 165, Neg. LLF: 149.54980763252377
Iteration: 14, Func. Count: 176, Neg. LLF: 149.549807394066
Optimization terminated successfully (Exit mode 0)
Current function value: 149.54980763252377
Iterations: 14
Function evaluations: 176
Gradient evaluations: 14
Iteration: 1, Func. Count: 14, Neg. LLF: 367.3921375921501
Iteration: 2, Func. Count: 28, Neg. LLF: 1004.7269455514521
Iteration: 3, Func. Count: 42, Neg. LLF: 150.16879361631456
Iteration: 4, Func. Count: 55, Neg. LLF: 150.53252540872222
Iteration: 5, Func. Count: 69, Neg. LLF: 157.65439512303942
Iteration: 6, Func. Count: 83, Neg. LLF: 157.9227190535274
Iteration: 7, Func. Count: 97, Neg. LLF: 149.98581658933884
Iteration: 8, Func. Count: 111, Neg. LLF: 149.9133528371686
Iteration: 9, Func. Count: 125, Neg. LLF: 149.6185240181131
Iteration: 10, Func. Count: 138, Neg. LLF: 149.4742936147806
Iteration: 11, Func. Count: 151, Neg. LLF: 149.52379045579622
Iteration: 12, Func. Count: 165, Neg. LLF: 149.33255695896813
Iteration: 13, Func. Count: 178, Neg. LLF: 149.28879211379316
Iteration: 14, Func. Count: 191, Neg. LLF: 149.2777038918047
Iteration: 15, Func. Count: 204, Neg. LLF: 149.27450430966653
Iteration: 16, Func. Count: 217, Neg. LLF: 149.2739607742895
Iteration: 17, Func. Count: 230, Neg. LLF: 149.27391311849277
Iteration: 18, Func. Count: 243, Neg. LLF: 149.27388674880393
Iteration: 19, Func. Count: 256, Neg. LLF: 149.27388267273886
Iteration: 20, Func. Count: 268, Neg. LLF: 149.27388251854416
Optimization terminated successfully (Exit mode 0)
Current function value: 149.27388267273886
Iterations: 20
Function evaluations: 268
Gradient evaluations: 20
Iteration: 1, Func. Count: 15, Neg. LLF: 187.16021378272148
Iteration: 2, Func. Count: 30, Neg. LLF: 172.75022428297888
Iteration: 3, Func. Count: 45, Neg. LLF: 154.62005818759633
Iteration: 4, Func. Count: 60, Neg. LLF: 150.0870119592306
Iteration: 5, Func. Count: 74, Neg. LLF: 153.41610829661792
Iteration: 6, Func. Count: 89, Neg. LLF: 149.50151755219753
Iteration: 7, Func. Count: 103, Neg. LLF: 149.505666688604
Iteration: 8, Func. Count: 118, Neg. LLF: 149.2578827064086
Iteration: 9, Func. Count: 132, Neg. LLF: 149.31966272513594
Iteration: 10, Func. Count: 147, Neg. LLF: 149.24685533562126
Iteration: 11, Func. Count: 162, Neg. LLF: 149.23574112239916
Iteration: 12, Func. Count: 176, Neg. LLF: 149.23566485149524
Iteration: 13, Func. Count: 190, Neg. LLF: 149.23565915692689
Iteration: 14, Func. Count: 203, Neg. LLF: 149.23565905566815
Optimization terminated successfully (Exit mode 0)
Current function value: 149.23565915692689
Iterations: 14
Function evaluations: 203
Gradient evaluations: 14
Iteration: 1, Func. Count: 16, Neg. LLF: 184.41184445592677
Iteration: 2, Func. Count: 32, Neg. LLF: 185.36591626163954
Iteration: 3, Func. Count: 48, Neg. LLF: 153.5250934528362
Iteration: 4, Func. Count: 64, Neg. LLF: 150.02087258884598
Iteration: 5, Func. Count: 79, Neg. LLF: 150.73439861757743
Iteration: 6, Func. Count: 95, Neg. LLF: 149.89140484864458
Iteration: 7, Func. Count: 111, Neg. LLF: 149.34393235173758
Iteration: 8, Func. Count: 126, Neg. LLF: 149.30909633897357
Iteration: 9, Func. Count: 141, Neg. LLF: 149.23917094214266
Iteration: 10, Func. Count: 156, Neg. LLF: 149.23626319365587
Iteration: 11, Func. Count: 171, Neg. LLF: 149.23575484830187
Iteration: 12, Func. Count: 186, Neg. LLF: 149.23566734118538
Iteration: 13, Func. Count: 201, Neg. LLF: 149.23565901569552
Iteration: 14, Func. Count: 215, Neg. LLF: 149.2356589356709
Optimization terminated successfully (Exit mode 0)
Current function value: 149.23565901569552
Iterations: 14
Function evaluations: 215
Gradient evaluations: 14
Iteration: 1, Func. Count: 6, Neg. LLF: 14945059.334611168
Iteration: 2, Func. Count: 12, Neg. LLF: 152.21737040537212
Iteration: 3, Func. Count: 18, Neg. LLF: 151.15524333289773
Iteration: 4, Func. Count: 24, Neg. LLF: 149.83985766893923
Iteration: 5, Func. Count: 29, Neg. LLF: 149.82990127709795
Iteration: 6, Func. Count: 34, Neg. LLF: 149.82699421998328
Iteration: 7, Func. Count: 39, Neg. LLF: 149.82607372892127
Iteration: 8, Func. Count: 44, Neg. LLF: 149.8259603317079
Iteration: 9, Func. Count: 49, Neg. LLF: 149.8259592216277
Iteration: 10, Func. Count: 53, Neg. LLF: 149.82595894654068
Optimization terminated successfully (Exit mode 0)
Current function value: 149.8259592216277
Iterations: 10
Function evaluations: 53
Gradient evaluations: 10
Iteration: 1, Func. Count: 5, Neg. LLF: 160.5472929193671
Iteration: 2, Func. Count: 10, Neg. LLF: 160.77342260325463
Iteration: 3, Func. Count: 15, Neg. LLF: 159.20281612862306
Iteration: 4, Func. Count: 19, Neg. LLF: 158.81567051041452
Iteration: 5, Func. Count: 23, Neg. LLF: 158.63827668238898
Iteration: 6, Func. Count: 27, Neg. LLF: 158.61060833829347
Iteration: 7, Func. Count: 31, Neg. LLF: 158.60503901207844
Iteration: 8, Func. Count: 35, Neg. LLF: 158.6012784573673
Iteration: 9, Func. Count: 39, Neg. LLF: 158.59780366028386
Iteration: 10, Func. Count: 43, Neg. LLF: 158.59654375180182
Iteration: 11, Func. Count: 47, Neg. LLF: 158.5962798322716
Iteration: 12, Func. Count: 51, Neg. LLF: 158.59627420768606
Iteration: 13, Func. Count: 54, Neg. LLF: 158.5962742076826
Optimization terminated successfully (Exit mode 0)
Current function value: 158.59627420768606
Iterations: 13
Function evaluations: 54
Gradient evaluations: 13
Iteration: 1, Func. Count: 6, Neg. LLF: 12166465.292065443
Iteration: 2, Func. Count: 12, Neg. LLF: 148.1819009318284
Iteration: 3, Func. Count: 18, Neg. LLF: 156.0654578809756
Iteration: 4, Func. Count: 24, Neg. LLF: 146.90459597389963
Iteration: 5, Func. Count: 29, Neg. LLF: 146.9687830650912
Iteration: 6, Func. Count: 35, Neg. LLF: 146.87994869645183
Iteration: 7, Func. Count: 40, Neg. LLF: 146.87864347225656
Iteration: 8, Func. Count: 45, Neg. LLF: 146.8786426649039
Optimization terminated successfully (Exit mode 0)
Current function value: 146.8786426649039
Iterations: 8
Function evaluations: 45
Gradient evaluations: 8
Iteration: 1, Func. Count: 7, Neg. LLF: 562.6608559641343
Iteration: 2, Func. Count: 14, Neg. LLF: 12015599.361086048
Iteration: 3, Func. Count: 21, Neg. LLF: 153.44036062484815
Iteration: 4, Func. Count: 28, Neg. LLF: 148.47591945290696
Iteration: 5, Func. Count: 35, Neg. LLF: 146.76489651197957
Iteration: 6, Func. Count: 41, Neg. LLF: 146.14728942954886
Iteration: 7, Func. Count: 47, Neg. LLF: 155.1134444350208
Iteration: 8, Func. Count: 55, Neg. LLF: 145.46673365727492
Iteration: 9, Func. Count: 61, Neg. LLF: 145.67621768698518
Iteration: 10, Func. Count: 68, Neg. LLF: 145.3508310760619
Iteration: 11, Func. Count: 74, Neg. LLF: 145.3444393652627
Iteration: 12, Func. Count: 80, Neg. LLF: 145.3436558608435
Iteration: 13, Func. Count: 86, Neg. LLF: 145.34355419140223
Iteration: 14, Func. Count: 92, Neg. LLF: 145.3435528463888
Iteration: 15, Func. Count: 97, Neg. LLF: 145.3435526342012
Optimization terminated successfully (Exit mode 0)
Current function value: 145.3435528463888
Iterations: 15
Function evaluations: 97
Gradient evaluations: 15
Iteration: 1, Func. Count: 8, Neg. LLF: 359.08123259239943
Iteration: 2, Func. Count: 16, Neg. LLF: 1541.5900847326914
Iteration: 3, Func. Count: 24, Neg. LLF: 161.46009220982035
Iteration: 4, Func. Count: 32, Neg. LLF: 172.8189143364798
Iteration: 5, Func. Count: 40, Neg. LLF: 153.30737286848876
Iteration: 6, Func. Count: 48, Neg. LLF: 148.8129259786463
Iteration: 7, Func. Count: 56, Neg. LLF: 147.40595087969572
Iteration: 8, Func. Count: 64, Neg. LLF: 146.91500633339032
Iteration: 9, Func. Count: 71, Neg. LLF: 146.90187660978347
Iteration: 10, Func. Count: 78, Neg. LLF: 146.89793511832775
Iteration: 11, Func. Count: 85, Neg. LLF: 146.89642225331121
Iteration: 12, Func. Count: 92, Neg. LLF: 146.5565304027178
Iteration: 13, Func. Count: 99, Neg. LLF: 145.53896418698739
Iteration: 14, Func. Count: 106, Neg. LLF: 197.90369708703403
Iteration: 15, Func. Count: 115, Neg. LLF: 145.44244682231107
Iteration: 16, Func. Count: 122, Neg. LLF: 145.42220272712666
Iteration: 17, Func. Count: 129, Neg. LLF: 145.38769719571337
Iteration: 18, Func. Count: 136, Neg. LLF: 145.35625741909416
Iteration: 19, Func. Count: 143, Neg. LLF: 145.34480966151352
Iteration: 20, Func. Count: 150, Neg. LLF: 145.34360210878899
Iteration: 21, Func. Count: 157, Neg. LLF: 145.34355286061574
Iteration: 22, Func. Count: 163, Neg. LLF: 145.34355278144386
Optimization terminated successfully (Exit mode 0)
Current function value: 145.34355286061574
Iterations: 22
Function evaluations: 163
Gradient evaluations: 22
Iteration: 1, Func. Count: 9, Neg. LLF: 238.56575865902113
Iteration: 2, Func. Count: 18, Neg. LLF: 288.4678210777567
Iteration: 3, Func. Count: 27, Neg. LLF: 308.80371990885936
Iteration: 4, Func. Count: 36, Neg. LLF: 147.12812418476057
Iteration: 5, Func. Count: 44, Neg. LLF: 153.10209239494657
Iteration: 6, Func. Count: 54, Neg. LLF: 169.66013302978544
Iteration: 7, Func. Count: 63, Neg. LLF: 145.40681086336693
Iteration: 8, Func. Count: 71, Neg. LLF: 145.38761866088817
Iteration: 9, Func. Count: 79, Neg. LLF: 145.3671270902146
Iteration: 10, Func. Count: 87, Neg. LLF: 145.35376999150603
Iteration: 11, Func. Count: 95, Neg. LLF: 145.3448265151199
Iteration: 12, Func. Count: 103, Neg. LLF: 145.34358538912855
Iteration: 13, Func. Count: 111, Neg. LLF: 145.343553213454
Iteration: 14, Func. Count: 118, Neg. LLF: 145.34355308474989
Optimization terminated successfully (Exit mode 0)
Current function value: 145.343553213454
Iterations: 14
Function evaluations: 118
Gradient evaluations: 14
Iteration: 1, Func. Count: 6, Neg. LLF: 165.3875743811282
Iteration: 2, Func. Count: 12, Neg. LLF: 160.49542104976285
Iteration: 3, Func. Count: 19, Neg. LLF: 160.74208810653883
Iteration: 4, Func. Count: 25, Neg. LLF: 156.02145943346108
Iteration: 5, Func. Count: 30, Neg. LLF: 156.0004791834117
Iteration: 6, Func. Count: 35, Neg. LLF: 155.9792018186964
Iteration: 7, Func. Count: 40, Neg. LLF: 155.96115548890734
Iteration: 8, Func. Count: 45, Neg. LLF: 155.95538243649725
Iteration: 9, Func. Count: 50, Neg. LLF: 155.95188653061058
Iteration: 10, Func. Count: 55, Neg. LLF: 155.94938595364917
Iteration: 11, Func. Count: 60, Neg. LLF: 155.9477283381721
Iteration: 12, Func. Count: 65, Neg. LLF: 155.9474241440704
Iteration: 13, Func. Count: 70, Neg. LLF: 155.94740626929487
Iteration: 14, Func. Count: 75, Neg. LLF: 155.9474056745471
Optimization terminated successfully (Exit mode 0)
Current function value: 155.9474056745471
Iterations: 14
Function evaluations: 75
Gradient evaluations: 14
Iteration: 1, Func. Count: 7, Neg. LLF: 3096.7392758322317
Iteration: 2, Func. Count: 14, Neg. LLF: 12340.85695121632
Iteration: 3, Func. Count: 22, Neg. LLF: 160.56905629241874
Iteration: 4, Func. Count: 29, Neg. LLF: 147.56718802812097
Iteration: 5, Func. Count: 36, Neg. LLF: 146.90438479833347
Iteration: 6, Func. Count: 42, Neg. LLF: 146.94514628814747
Iteration: 7, Func. Count: 49, Neg. LLF: 146.93224671956543
Iteration: 8, Func. Count: 56, Neg. LLF: 146.87810988388352
Iteration: 9, Func. Count: 62, Neg. LLF: 146.87809145877952
Iteration: 10, Func. Count: 67, Neg. LLF: 146.87809127078805
Optimization terminated successfully (Exit mode 0)
Current function value: 146.87809145877952
Iterations: 10
Function evaluations: 67
Gradient evaluations: 10
Iteration: 1, Func. Count: 8, Neg. LLF: 446.8289609917356
Iteration: 2, Func. Count: 16, Neg. LLF: 11982125.47015052
Iteration: 3, Func. Count: 24, Neg. LLF: 167.79240299255997
Iteration: 4, Func. Count: 32, Neg. LLF: 151.52084000056257
Iteration: 5, Func. Count: 40, Neg. LLF: 146.97767187607494
Iteration: 6, Func. Count: 47, Neg. LLF: 149.2353895038811
Iteration: 7, Func. Count: 55, Neg. LLF: 147.39898372309614
Iteration: 8, Func. Count: 63, Neg. LLF: 146.87138782756875
Iteration: 9, Func. Count: 70, Neg. LLF: 146.83015028289077
Iteration: 10, Func. Count: 77, Neg. LLF: 146.0146895372986
Iteration: 11, Func. Count: 84, Neg. LLF: 145.86734124077483
Iteration: 12, Func. Count: 91, Neg. LLF: 145.44041133650927
Iteration: 13, Func. Count: 98, Neg. LLF: 145.35025262685525
Iteration: 14, Func. Count: 105, Neg. LLF: 145.34382183728343
Iteration: 15, Func. Count: 112, Neg. LLF: 145.34356036052074
Iteration: 16, Func. Count: 119, Neg. LLF: 145.3435528778147
Iteration: 17, Func. Count: 125, Neg. LLF: 145.34355266568184
Optimization terminated successfully (Exit mode 0)
Current function value: 145.3435528778147
Iterations: 17
Function evaluations: 125
Gradient evaluations: 17
Iteration: 1, Func. Count: 9, Neg. LLF: 364.73907091589206
Iteration: 2, Func. Count: 18, Neg. LLF: 11538394.362625781
Iteration: 3, Func. Count: 27, Neg. LLF: 236.44263793569812
Iteration: 4, Func. Count: 36, Neg. LLF: 156.25862517895405
Iteration: 5, Func. Count: 45, Neg. LLF: 309.7705137896633
Iteration: 6, Func. Count: 54, Neg. LLF: 147.18889598236538
Iteration: 7, Func. Count: 62, Neg. LLF: 146.98707160371455
Iteration: 8, Func. Count: 70, Neg. LLF: 146.91631283333467
Iteration: 9, Func. Count: 78, Neg. LLF: 146.88181824168947
Iteration: 10, Func. Count: 86, Neg. LLF: 146.88301474842888
Iteration: 11, Func. Count: 95, Neg. LLF: 146.88025212167426
Iteration: 12, Func. Count: 103, Neg. LLF: 146.87968204632907
Iteration: 13, Func. Count: 111, Neg. LLF: 146.87909012750745
Iteration: 14, Func. Count: 119, Neg. LLF: 146.8787412002188
Iteration: 15, Func. Count: 127, Neg. LLF: 146.87865316795106
Iteration: 16, Func. Count: 135, Neg. LLF: 146.87864939286118
Iteration: 17, Func. Count: 142, Neg. LLF: 146.87864926010886
Optimization terminated successfully (Exit mode 0)
Current function value: 146.87864939286118
Iterations: 17
Function evaluations: 142
Gradient evaluations: 17
Iteration: 1, Func. Count: 10, Neg. LLF: 241.5888068271047
Iteration: 2, Func. Count: 20, Neg. LLF: 298.28087697726517
Iteration: 3, Func. Count: 30, Neg. LLF: 148.981662729957
Iteration: 4, Func. Count: 39, Neg. LLF: 147.9276520508706
Iteration: 5, Func. Count: 49, Neg. LLF: 154.05236813065028
Iteration: 6, Func. Count: 59, Neg. LLF: 148.42025589899066
Iteration: 7, Func. Count: 69, Neg. LLF: 147.1309572319692
Iteration: 8, Func. Count: 79, Neg. LLF: 146.83216343446279
Iteration: 9, Func. Count: 89, Neg. LLF: 146.50695118089087
Iteration: 10, Func. Count: 98, Neg. LLF: 146.48453640890153
Iteration: 11, Func. Count: 107, Neg. LLF: 146.48090502385628
Iteration: 12, Func. Count: 116, Neg. LLF: 146.48037663399714
Iteration: 13, Func. Count: 125, Neg. LLF: 146.4801385600243
Iteration: 14, Func. Count: 134, Neg. LLF: 146.48013114921002
Iteration: 15, Func. Count: 142, Neg. LLF: 146.4801310357681
Optimization terminated successfully (Exit mode 0)
Current function value: 146.48013114921002
Iterations: 15
Function evaluations: 142
Gradient evaluations: 15
Iteration: 1, Func. Count: 7, Neg. LLF: 160.62150053224875
Iteration: 2, Func. Count: 14, Neg. LLF: 162.1000443864201
Iteration: 3, Func. Count: 21, Neg. LLF: 154.4278445554357
Iteration: 4, Func. Count: 28, Neg. LLF: 153.87943802122197
Iteration: 5, Func. Count: 34, Neg. LLF: 153.55727576768237
Iteration: 6, Func. Count: 40, Neg. LLF: 153.86002517420968
Iteration: 7, Func. Count: 47, Neg. LLF: 152.92142421773394
Iteration: 8, Func. Count: 53, Neg. LLF: 152.06270896367647
Iteration: 9, Func. Count: 59, Neg. LLF: 351767.5875405699
Iteration: 10, Func. Count: 66, Neg. LLF: 341983.4587477321
Iteration: 11, Func. Count: 73, Neg. LLF: 173.84097957293108
Iteration: 12, Func. Count: 80, Neg. LLF: 151.89578577242466
Iteration: 13, Func. Count: 87, Neg. LLF: 150.63869068421508
Iteration: 14, Func. Count: 93, Neg. LLF: 150.59767783844103
Iteration: 15, Func. Count: 99, Neg. LLF: 150.59482068798764
Iteration: 16, Func. Count: 105, Neg. LLF: 150.5943138419345
Iteration: 17, Func. Count: 111, Neg. LLF: 150.59429786040164
Iteration: 18, Func. Count: 117, Neg. LLF: 150.59429717553996
Optimization terminated successfully (Exit mode 0)
Current function value: 150.59429717553996
Iterations: 18
Function evaluations: 117
Gradient evaluations: 18
Iteration: 1, Func. Count: 8, Neg. LLF: 489.3943585553866
Iteration: 2, Func. Count: 16, Neg. LLF: 11861993.66148715
Iteration: 3, Func. Count: 25, Neg. LLF: 161.48134524654134
Iteration: 4, Func. Count: 33, Neg. LLF: 149.70489605530003
Iteration: 5, Func. Count: 41, Neg. LLF: 147.91895804810957
Iteration: 6, Func. Count: 49, Neg. LLF: 147.2840062916089
Iteration: 7, Func. Count: 57, Neg. LLF: 146.89100691919583
Iteration: 8, Func. Count: 64, Neg. LLF: 146.87720749789466
Iteration: 9, Func. Count: 71, Neg. LLF: 146.87505911332286
Iteration: 10, Func. Count: 78, Neg. LLF: 146.8750336044682
Iteration: 11, Func. Count: 85, Neg. LLF: 146.8750137969614
Iteration: 12, Func. Count: 91, Neg. LLF: 146.8750136170028
Optimization terminated successfully (Exit mode 0)
Current function value: 146.8750137969614
Iterations: 12
Function evaluations: 91
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 259.15030113703847
Iteration: 2, Func. Count: 18, Neg. LLF: 355.845708941741
Iteration: 3, Func. Count: 27, Neg. LLF: 12249381.299950296
Iteration: 4, Func. Count: 36, Neg. LLF: 148.54007106191648
Iteration: 5, Func. Count: 44, Neg. LLF: 163.52616290336937
Iteration: 6, Func. Count: 54, Neg. LLF: 167.8725461489074
Iteration: 7, Func. Count: 63, Neg. LLF: 144.9669694730612
Iteration: 8, Func. Count: 71, Neg. LLF: 145.35741526757903
Iteration: 9, Func. Count: 80, Neg. LLF: 144.87616548985338
Iteration: 10, Func. Count: 88, Neg. LLF: 144.8680405587061
Iteration: 11, Func. Count: 96, Neg. LLF: 144.86708822163902
Iteration: 12, Func. Count: 104, Neg. LLF: 144.8666769366164
Iteration: 13, Func. Count: 112, Neg. LLF: 144.8665149050648
Iteration: 14, Func. Count: 120, Neg. LLF: 144.86634037110662
Iteration: 15, Func. Count: 128, Neg. LLF: 144.8663143309242
Iteration: 16, Func. Count: 136, Neg. LLF: 144.86631202338242
Iteration: 17, Func. Count: 143, Neg. LLF: 144.8663118621103
Optimization terminated successfully (Exit mode 0)
Current function value: 144.86631202338242
Iterations: 17
Function evaluations: 143
Gradient evaluations: 17
Iteration: 1, Func. Count: 10, Neg. LLF: 245.93718432141057
Iteration: 2, Func. Count: 20, Neg. LLF: 242.23767558333003
Iteration: 3, Func. Count: 30, Neg. LLF: 2057075.2011854635
Iteration: 4, Func. Count: 40, Neg. LLF: 154.54942607140225
Iteration: 5, Func. Count: 50, Neg. LLF: 172.16694614836106
Iteration: 6, Func. Count: 60, Neg. LLF: 199.79738160141267
Iteration: 7, Func. Count: 70, Neg. LLF: 148.50267212179284
Iteration: 8, Func. Count: 80, Neg. LLF: 146.1030747658552
Iteration: 9, Func. Count: 89, Neg. LLF: 146.0657703369179
Iteration: 10, Func. Count: 98, Neg. LLF: 145.84823963156043
Iteration: 11, Func. Count: 107, Neg. LLF: 145.7974914589144
Iteration: 12, Func. Count: 116, Neg. LLF: 145.78427165465206
Iteration: 13, Func. Count: 125, Neg. LLF: 145.78246366214893
Iteration: 14, Func. Count: 134, Neg. LLF: 145.78238708288757
Iteration: 15, Func. Count: 143, Neg. LLF: 145.78238635752257
Optimization terminated successfully (Exit mode 0)
Current function value: 145.78238635752257
Iterations: 15
Function evaluations: 143
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 191.34479985281004
Iteration: 2, Func. Count: 22, Neg. LLF: 218.719384640225
Iteration: 3, Func. Count: 33, Neg. LLF: 150.44277696311218
Iteration: 4, Func. Count: 44, Neg. LLF: 349761.39775572735
Iteration: 5, Func. Count: 55, Neg. LLF: 157.72226609735256
Iteration: 6, Func. Count: 66, Neg. LLF: 147.445876659874
Iteration: 7, Func. Count: 77, Neg. LLF: 150.29361967926707
Iteration: 8, Func. Count: 88, Neg. LLF: 146.2859613415985
Iteration: 9, Func. Count: 99, Neg. LLF: 145.2378610419975
Iteration: 10, Func. Count: 109, Neg. LLF: 145.1817091782192
Iteration: 11, Func. Count: 119, Neg. LLF: 145.16789172269134
Iteration: 12, Func. Count: 129, Neg. LLF: 145.14811576605376
Iteration: 13, Func. Count: 139, Neg. LLF: 145.14750083164648
Iteration: 14, Func. Count: 149, Neg. LLF: 145.14734932291873
Iteration: 15, Func. Count: 159, Neg. LLF: 145.14722465338815
Iteration: 16, Func. Count: 169, Neg. LLF: 145.14722369324195
Optimization terminated successfully (Exit mode 0)
Current function value: 145.14722369324195
Iterations: 16
Function evaluations: 169
Gradient evaluations: 16
Iteration: 1, Func. Count: 8, Neg. LLF: 159.99892902959073
Iteration: 2, Func. Count: 16, Neg. LLF: 160.3083671211166
Iteration: 3, Func. Count: 24, Neg. LLF: 155.6986303132924
Iteration: 4, Func. Count: 32, Neg. LLF: 156.54303038977847
Iteration: 5, Func. Count: 40, Neg. LLF: 153.70275840228356
Iteration: 6, Func. Count: 47, Neg. LLF: 152.79373342044747
Iteration: 7, Func. Count: 54, Neg. LLF: 150.7143918756313
Iteration: 8, Func. Count: 61, Neg. LLF: 151.6307214492143
Iteration: 9, Func. Count: 69, Neg. LLF: 209977.3962527371
Iteration: 10, Func. Count: 77, Neg. LLF: 269.664938104257
Iteration: 11, Func. Count: 85, Neg. LLF: 154.9590244370986
Iteration: 12, Func. Count: 93, Neg. LLF: 150.75570766785404
Iteration: 13, Func. Count: 101, Neg. LLF: 150.1215718516766
Iteration: 14, Func. Count: 109, Neg. LLF: 150.020026118032
Iteration: 15, Func. Count: 116, Neg. LLF: 149.93330310765307
Iteration: 16, Func. Count: 123, Neg. LLF: 149.9324788601419
Iteration: 17, Func. Count: 130, Neg. LLF: 149.93245500028198
Iteration: 18, Func. Count: 137, Neg. LLF: 149.9324512663873
Iteration: 19, Func. Count: 143, Neg. LLF: 149.93245123740067
Optimization terminated successfully (Exit mode 0)
Current function value: 149.9324512663873
Iterations: 19
Function evaluations: 143
Gradient evaluations: 19
Iteration: 1, Func. Count: 9, Neg. LLF: 326.8246285758134
Iteration: 2, Func. Count: 18, Neg. LLF: 1795439.6643728004
Iteration: 3, Func. Count: 28, Neg. LLF: 153.58852369183836
Iteration: 4, Func. Count: 37, Neg. LLF: 148.38612702257166
Iteration: 5, Func. Count: 46, Neg. LLF: 146.93817345780707
Iteration: 6, Func. Count: 54, Neg. LLF: 146.99492773576176
Iteration: 7, Func. Count: 63, Neg. LLF: 146.87723129745783
Iteration: 8, Func. Count: 71, Neg. LLF: 146.87518172966742
Iteration: 9, Func. Count: 79, Neg. LLF: 146.87503664998724
Iteration: 10, Func. Count: 87, Neg. LLF: 146.87501387201965
Iteration: 11, Func. Count: 94, Neg. LLF: 146.87501369224404
Optimization terminated successfully (Exit mode 0)
Current function value: 146.87501387201965
Iterations: 11
Function evaluations: 94
Gradient evaluations: 11
Iteration: 1, Func. Count: 10, Neg. LLF: 250.833772663252
Iteration: 2, Func. Count: 20, Neg. LLF: 215.46187176841102
Iteration: 3, Func. Count: 30, Neg. LLF: 12238566.987963079
Iteration: 4, Func. Count: 40, Neg. LLF: 149.1302152911241
Iteration: 5, Func. Count: 50, Neg. LLF: 146.89041822197328
Iteration: 6, Func. Count: 60, Neg. LLF: 144.99906970561258
Iteration: 7, Func. Count: 69, Neg. LLF: 145.4274187673775
Iteration: 8, Func. Count: 79, Neg. LLF: 144.8806487114331
Iteration: 9, Func. Count: 88, Neg. LLF: 144.88741085309982
Iteration: 10, Func. Count: 98, Neg. LLF: 144.86632487930333
Iteration: 11, Func. Count: 107, Neg. LLF: 144.86631210940638
Iteration: 12, Func. Count: 115, Neg. LLF: 144.86631194803996
Optimization terminated successfully (Exit mode 0)
Current function value: 144.86631210940638
Iterations: 12
Function evaluations: 115
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 238.892555989168
Iteration: 2, Func. Count: 22, Neg. LLF: 228.39586975173756
Iteration: 3, Func. Count: 33, Neg. LLF: 12155989.764033124
Iteration: 4, Func. Count: 44, Neg. LLF: 154.7710526572458
Iteration: 5, Func. Count: 55, Neg. LLF: 174.21811988324504
Iteration: 6, Func. Count: 66, Neg. LLF: 221.44899055570187
Iteration: 7, Func. Count: 77, Neg. LLF: 148.58575993537417
Iteration: 8, Func. Count: 88, Neg. LLF: 146.11262580707754
Iteration: 9, Func. Count: 98, Neg. LLF: 146.02816058821273
Iteration: 10, Func. Count: 108, Neg. LLF: 145.86396401512442
Iteration: 11, Func. Count: 118, Neg. LLF: 145.7985198022425
Iteration: 12, Func. Count: 128, Neg. LLF: 145.78400838687583
Iteration: 13, Func. Count: 138, Neg. LLF: 145.78246722986222
Iteration: 14, Func. Count: 148, Neg. LLF: 145.78239657307955
Iteration: 15, Func. Count: 158, Neg. LLF: 145.78238638641983
Iteration: 16, Func. Count: 167, Neg. LLF: 145.78238633942416
Optimization terminated successfully (Exit mode 0)
Current function value: 145.78238638641983
Iterations: 16
Function evaluations: 167
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 187.71353364737868
Iteration: 2, Func. Count: 24, Neg. LLF: 226.40180565606613
Iteration: 3, Func. Count: 36, Neg. LLF: 220.46452694501252
Iteration: 4, Func. Count: 48, Neg. LLF: 158.66242279026102
Iteration: 5, Func. Count: 60, Neg. LLF: 172.41850480994796
Iteration: 6, Func. Count: 72, Neg. LLF: 150.65919375473348
Iteration: 7, Func. Count: 84, Neg. LLF: 148.50024266637584
Iteration: 8, Func. Count: 96, Neg. LLF: 146.62655738331267
Iteration: 9, Func. Count: 108, Neg. LLF: 145.27323304417163
Iteration: 10, Func. Count: 119, Neg. LLF: 145.3414583452563
Iteration: 11, Func. Count: 131, Neg. LLF: 145.18800299455344
Iteration: 12, Func. Count: 142, Neg. LLF: 145.1565008374956
Iteration: 13, Func. Count: 153, Neg. LLF: 145.14948190751116
Iteration: 14, Func. Count: 164, Neg. LLF: 145.14912663436164
Iteration: 15, Func. Count: 176, Neg. LLF: 145.1472300848767
Iteration: 16, Func. Count: 187, Neg. LLF: 145.14722360774192
Iteration: 17, Func. Count: 197, Neg. LLF: 145.14722350438439
Optimization terminated successfully (Exit mode 0)
Current function value: 145.14722360774192
Iterations: 17
Function evaluations: 197
Gradient evaluations: 17
Iteration: 1, Func. Count: 5, Neg. LLF: 156.14033376106912
Iteration: 2, Func. Count: 9, Neg. LLF: 156.05671467852744
Iteration: 3, Func. Count: 13, Neg. LLF: 155.54615366445898
Iteration: 4, Func. Count: 17, Neg. LLF: 155.4477431188546
Iteration: 5, Func. Count: 21, Neg. LLF: 155.3510954561659
Iteration: 6, Func. Count: 25, Neg. LLF: 155.3155334893504
Iteration: 7, Func. Count: 29, Neg. LLF: 155.15905188458933
Iteration: 8, Func. Count: 33, Neg. LLF: 155.07007929932985
Iteration: 9, Func. Count: 37, Neg. LLF: 155.00009958413628
Iteration: 10, Func. Count: 41, Neg. LLF: 154.99275505587505
Iteration: 11, Func. Count: 45, Neg. LLF: 154.99195448357597
Iteration: 12, Func. Count: 49, Neg. LLF: 154.99190659441925
Iteration: 13, Func. Count: 53, Neg. LLF: 154.9919007136111
Iteration: 14, Func. Count: 56, Neg. LLF: 154.99190071360948
Optimization terminated successfully (Exit mode 0)
Current function value: 154.9919007136111
Iterations: 14
Function evaluations: 56
Gradient evaluations: 14
Iteration: 1, Func. Count: 6, Neg. LLF: 339.0409637147246
Iteration: 2, Func. Count: 12, Neg. LLF: 163.3223012488114
Iteration: 3, Func. Count: 18, Neg. LLF: 150.1919398609872
Iteration: 4, Func. Count: 23, Neg. LLF: 150.19561080104916
Iteration: 5, Func. Count: 29, Neg. LLF: 150.18274346269672
Iteration: 6, Func. Count: 34, Neg. LLF: 150.1825850575085
Iteration: 7, Func. Count: 38, Neg. LLF: 150.18258497499542
Optimization terminated successfully (Exit mode 0)
Current function value: 150.1825850575085
Iterations: 7
Function evaluations: 38
Gradient evaluations: 7
Iteration: 1, Func. Count: 7, Neg. LLF: 204.11578780821802
Iteration: 2, Func. Count: 14, Neg. LLF: 379.88897756950973
Iteration: 3, Func. Count: 22, Neg. LLF: 180.9103849463517
Iteration: 4, Func. Count: 29, Neg. LLF: 151.0936748101871
Iteration: 5, Func. Count: 36, Neg. LLF: 150.14458429226605
Iteration: 6, Func. Count: 43, Neg. LLF: 149.94346206221965
Iteration: 7, Func. Count: 49, Neg. LLF: 149.925087122986
Iteration: 8, Func. Count: 55, Neg. LLF: 149.92396230982652
Iteration: 9, Func. Count: 61, Neg. LLF: 149.92393658092226
Iteration: 10, Func. Count: 67, Neg. LLF: 149.92393559566548
Optimization terminated successfully (Exit mode 0)
Current function value: 149.92393559566548
Iterations: 10
Function evaluations: 67
Gradient evaluations: 10
Iteration: 1, Func. Count: 8, Neg. LLF: 167.59049348137495
Iteration: 2, Func. Count: 16, Neg. LLF: 230.08388707399408
Iteration: 3, Func. Count: 24, Neg. LLF: 163.10720070405972
Iteration: 4, Func. Count: 32, Neg. LLF: 150.70919465166656
Iteration: 5, Func. Count: 39, Neg. LLF: 154.753414892751
Iteration: 6, Func. Count: 47, Neg. LLF: 150.64078348420304
Iteration: 7, Func. Count: 55, Neg. LLF: 149.57602867801245
Iteration: 8, Func. Count: 62, Neg. LLF: 149.50266280883432
Iteration: 9, Func. Count: 69, Neg. LLF: 149.48668103762148
Iteration: 10, Func. Count: 76, Neg. LLF: 149.48261855371805
Iteration: 11, Func. Count: 83, Neg. LLF: 149.48214319545545
Iteration: 12, Func. Count: 90, Neg. LLF: 149.4821300030424
Iteration: 13, Func. Count: 96, Neg. LLF: 149.48212992461305
Optimization terminated successfully (Exit mode 0)
Current function value: 149.4821300030424
Iterations: 13
Function evaluations: 96
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 165.24072376701656
Iteration: 2, Func. Count: 18, Neg. LLF: 196.27474184873148
Iteration: 3, Func. Count: 27, Neg. LLF: 158.36639301055084
Iteration: 4, Func. Count: 36, Neg. LLF: 155.09060980098636
Iteration: 5, Func. Count: 45, Neg. LLF: 152.41243405485747
Iteration: 6, Func. Count: 54, Neg. LLF: 149.85084396796302
Iteration: 7, Func. Count: 62, Neg. LLF: 149.76810466251334
Iteration: 8, Func. Count: 70, Neg. LLF: 149.61768702122265
Iteration: 9, Func. Count: 78, Neg. LLF: 149.61549165703372
Iteration: 10, Func. Count: 87, Neg. LLF: 149.60823586140611
Iteration: 11, Func. Count: 95, Neg. LLF: 149.60804457569438
Iteration: 12, Func. Count: 103, Neg. LLF: 149.60790485169613
Iteration: 13, Func. Count: 111, Neg. LLF: 149.60789499044577
Iteration: 14, Func. Count: 119, Neg. LLF: 149.60789438644866
Optimization terminated successfully (Exit mode 0)
Current function value: 149.60789438644866
Iterations: 14
Function evaluations: 119
Gradient evaluations: 14
Iteration: 1, Func. Count: 6, Neg. LLF: 155.40074764847375
Iteration: 2, Func. Count: 11, Neg. LLF: 154.8067363108317
Iteration: 3, Func. Count: 16, Neg. LLF: 154.70120722031731
Iteration: 4, Func. Count: 21, Neg. LLF: 154.71480230806344
Iteration: 5, Func. Count: 27, Neg. LLF: 155.52238826498981
Iteration: 6, Func. Count: 33, Neg. LLF: 154.35061846409602
Iteration: 7, Func. Count: 38, Neg. LLF: 154.13252638310064
Iteration: 8, Func. Count: 43, Neg. LLF: 153.981907678316
Iteration: 9, Func. Count: 48, Neg. LLF: 153.9427744316794
Iteration: 10, Func. Count: 53, Neg. LLF: 153.93983168655154
Iteration: 11, Func. Count: 58, Neg. LLF: 153.93966045507642
Iteration: 12, Func. Count: 63, Neg. LLF: 153.93965633951518
Iteration: 13, Func. Count: 67, Neg. LLF: 153.9396563395163
Optimization terminated successfully (Exit mode 0)
Current function value: 153.93965633951518
Iterations: 13
Function evaluations: 67
Gradient evaluations: 13
Iteration: 1, Func. Count: 7, Neg. LLF: 3868.0322003168235
Iteration: 2, Func. Count: 14, Neg. LLF: 152.10373196439826
Iteration: 3, Func. Count: 21, Neg. LLF: 147.12974648134644
Iteration: 4, Func. Count: 27, Neg. LLF: 147.2135189187399
Iteration: 5, Func. Count: 34, Neg. LLF: 148.85024918620618
Iteration: 6, Func. Count: 42, Neg. LLF: 146.87967262438391
Iteration: 7, Func. Count: 48, Neg. LLF: 146.87865166913497
Iteration: 8, Func. Count: 54, Neg. LLF: 146.8786463079886
Iteration: 9, Func. Count: 60, Neg. LLF: 146.87864269170583
Iteration: 10, Func. Count: 65, Neg. LLF: 146.87864249994342
Optimization terminated successfully (Exit mode 0)
Current function value: 146.87864269170583
Iterations: 10
Function evaluations: 65
Gradient evaluations: 10
Iteration: 1, Func. Count: 8, Neg. LLF: 1943.0050449403434
Iteration: 2, Func. Count: 16, Neg. LLF: 147.85745825507928
Iteration: 3, Func. Count: 24, Neg. LLF: 161.87086701763369
Iteration: 4, Func. Count: 32, Neg. LLF: 146.28719530631955
Iteration: 5, Func. Count: 39, Neg. LLF: 146.90094242233587
Iteration: 6, Func. Count: 48, Neg. LLF: 146.32054719855583
Iteration: 7, Func. Count: 56, Neg. LLF: 145.38951657804964
Iteration: 8, Func. Count: 63, Neg. LLF: 145.3540132522139
Iteration: 9, Func. Count: 70, Neg. LLF: 145.3439031437916
Iteration: 10, Func. Count: 77, Neg. LLF: 145.34356776871363
Iteration: 11, Func. Count: 84, Neg. LLF: 145.34355301542635
Iteration: 12, Func. Count: 90, Neg. LLF: 145.3435528033315
Optimization terminated successfully (Exit mode 0)
Current function value: 145.34355301542635
Iterations: 12
Function evaluations: 90
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 946.9389267697545
Iteration: 2, Func. Count: 18, Neg. LLF: 161.40979189326148
Iteration: 3, Func. Count: 27, Neg. LLF: 152.378954005452
Iteration: 4, Func. Count: 36, Neg. LLF: 166.5159231723687
Iteration: 5, Func. Count: 45, Neg. LLF: 147.4920750987011
Iteration: 6, Func. Count: 54, Neg. LLF: 146.9517773955655
Iteration: 7, Func. Count: 62, Neg. LLF: 146.92190955234955
Iteration: 8, Func. Count: 70, Neg. LLF: 146.89683658517973
Iteration: 9, Func. Count: 78, Neg. LLF: 146.87772661445464
Iteration: 10, Func. Count: 86, Neg. LLF: 146.2700807579966
Iteration: 11, Func. Count: 94, Neg. LLF: 146.81237618381755
Iteration: 12, Func. Count: 104, Neg. LLF: 145.4736012846306
Iteration: 13, Func. Count: 112, Neg. LLF: 145.36346574101168
Iteration: 14, Func. Count: 120, Neg. LLF: 145.34549224202587
Iteration: 15, Func. Count: 128, Neg. LLF: 145.3438707004702
Iteration: 16, Func. Count: 136, Neg. LLF: 145.34358046528868
Iteration: 17, Func. Count: 144, Neg. LLF: 145.34355361462596
Iteration: 18, Func. Count: 152, Neg. LLF: 145.34355284955754
Optimization terminated successfully (Exit mode 0)
Current function value: 145.34355284955754
Iterations: 18
Function evaluations: 152
Gradient evaluations: 18
Iteration: 1, Func. Count: 10, Neg. LLF: 693.1236319047292
Iteration: 2, Func. Count: 20, Neg. LLF: 12072550.843723807
Iteration: 3, Func. Count: 30, Neg. LLF: 183.86546452153488
Iteration: 4, Func. Count: 40, Neg. LLF: 155.30251630754194
Iteration: 5, Func. Count: 50, Neg. LLF: 147.1729785800117
Iteration: 6, Func. Count: 59, Neg. LLF: 147.01241378451417
Iteration: 7, Func. Count: 69, Neg. LLF: 149.36481288184623
Iteration: 8, Func. Count: 79, Neg. LLF: 145.5123223842728
Iteration: 9, Func. Count: 88, Neg. LLF: 145.4656438129934
Iteration: 10, Func. Count: 97, Neg. LLF: 145.4126326873883
Iteration: 11, Func. Count: 106, Neg. LLF: 145.35328464563474
Iteration: 12, Func. Count: 115, Neg. LLF: 145.346289554121
Iteration: 13, Func. Count: 124, Neg. LLF: 145.34470208204215
Iteration: 14, Func. Count: 133, Neg. LLF: 145.34370742136772
Iteration: 15, Func. Count: 142, Neg. LLF: 145.34356198592556
Iteration: 16, Func. Count: 151, Neg. LLF: 145.34355299402702
Iteration: 17, Func. Count: 159, Neg. LLF: 145.34355286553216
Optimization terminated successfully (Exit mode 0)
Current function value: 145.34355299402702
Iterations: 17
Function evaluations: 159
Gradient evaluations: 17
Iteration: 1, Func. Count: 7, Neg. LLF: 162.39441557845544
Iteration: 2, Func. Count: 14, Neg. LLF: 156.2109974141649
Iteration: 3, Func. Count: 21, Neg. LLF: 155.13620883802338
Iteration: 4, Func. Count: 28, Neg. LLF: 154.67565460129092
Iteration: 5, Func. Count: 34, Neg. LLF: 154.57931617090426
Iteration: 6, Func. Count: 40, Neg. LLF: 154.43337792966068
Iteration: 7, Func. Count: 46, Neg. LLF: 154.1816563625885
Iteration: 8, Func. Count: 52, Neg. LLF: 154.0403575526126
Iteration: 9, Func. Count: 58, Neg. LLF: 153.94313012381355
Iteration: 10, Func. Count: 64, Neg. LLF: 153.93990726093105
Iteration: 11, Func. Count: 70, Neg. LLF: 153.93966364652746
Iteration: 12, Func. Count: 76, Neg. LLF: 153.93965730103096
Iteration: 13, Func. Count: 82, Neg. LLF: 153.93965635004122
Optimization terminated successfully (Exit mode 0)
Current function value: 153.93965635004122
Iterations: 13
Function evaluations: 82
Gradient evaluations: 13
Iteration: 1, Func. Count: 8, Neg. LLF: 1355.7106363856758
Iteration: 2, Func. Count: 16, Neg. LLF: 152.02868678653468
Iteration: 3, Func. Count: 24, Neg. LLF: 147.17931844722412
Iteration: 4, Func. Count: 31, Neg. LLF: 147.15960390459787
Iteration: 5, Func. Count: 39, Neg. LLF: 147.34709949581375
Iteration: 6, Func. Count: 47, Neg. LLF: 146.88124681376578
Iteration: 7, Func. Count: 54, Neg. LLF: 146.87824381709842
Iteration: 8, Func. Count: 61, Neg. LLF: 146.87809301873514
Iteration: 9, Func. Count: 68, Neg. LLF: 146.87809143694358
Iteration: 10, Func. Count: 74, Neg. LLF: 146.87809124887772
Optimization terminated successfully (Exit mode 0)
Current function value: 146.87809143694358
Iterations: 10
Function evaluations: 74
Gradient evaluations: 10
Iteration: 1, Func. Count: 9, Neg. LLF: 1188.6984775788019
Iteration: 2, Func. Count: 18, Neg. LLF: 149.0180473988599
Iteration: 3, Func. Count: 27, Neg. LLF: 229.7823223813769
Iteration: 4, Func. Count: 36, Neg. LLF: 147.0298931483173
Iteration: 5, Func. Count: 44, Neg. LLF: 145.98655295653663
Iteration: 6, Func. Count: 52, Neg. LLF: 145.7653810770116
Iteration: 7, Func. Count: 60, Neg. LLF: 145.5620305302365
Iteration: 8, Func. Count: 68, Neg. LLF: 145.93340607495728
Iteration: 9, Func. Count: 77, Neg. LLF: 145.52093014715737
Iteration: 10, Func. Count: 86, Neg. LLF: 145.35676768764193
Iteration: 11, Func. Count: 94, Neg. LLF: 145.34630984453534
Iteration: 12, Func. Count: 102, Neg. LLF: 145.34361198101755
Iteration: 13, Func. Count: 110, Neg. LLF: 145.3435533812273
Iteration: 14, Func. Count: 118, Neg. LLF: 145.34355284246783
Optimization terminated successfully (Exit mode 0)
Current function value: 145.34355284246783
Iterations: 14
Function evaluations: 118
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 911.031684666405
Iteration: 2, Func. Count: 20, Neg. LLF: 2789.778399148813
Iteration: 3, Func. Count: 30, Neg. LLF: 153.92403111485015
Iteration: 4, Func. Count: 40, Neg. LLF: 153.65468563644237
Iteration: 5, Func. Count: 50, Neg. LLF: 147.3322672594914
Iteration: 6, Func. Count: 59, Neg. LLF: 147.09492179439053
Iteration: 7, Func. Count: 68, Neg. LLF: 147.36425495988217
Iteration: 8, Func. Count: 78, Neg. LLF: 146.92074861265144
Iteration: 9, Func. Count: 87, Neg. LLF: 146.90512520494178
Iteration: 10, Func. Count: 96, Neg. LLF: 146.89953819025487
Iteration: 11, Func. Count: 106, Neg. LLF: 146.87999960289682
Iteration: 12, Func. Count: 115, Neg. LLF: 146.87939646426517
Iteration: 13, Func. Count: 124, Neg. LLF: 146.87923067335072
Iteration: 14, Func. Count: 133, Neg. LLF: 146.87872101928824
Iteration: 15, Func. Count: 142, Neg. LLF: 146.87865585811812
Iteration: 16, Func. Count: 151, Neg. LLF: 146.87864946169285
Iteration: 17, Func. Count: 159, Neg. LLF: 146.87864932903057
Optimization terminated successfully (Exit mode 0)
Current function value: 146.87864946169285
Iterations: 17
Function evaluations: 159
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 698.707983012914
Iteration: 2, Func. Count: 22, Neg. LLF: 11498665.110569635
Iteration: 3, Func. Count: 33, Neg. LLF: 153.21700898629808
Iteration: 4, Func. Count: 44, Neg. LLF: 151.41982867435132
Iteration: 5, Func. Count: 55, Neg. LLF: 146.73703853704635
Iteration: 6, Func. Count: 65, Neg. LLF: 146.5721354945545
Iteration: 7, Func. Count: 75, Neg. LLF: 146.51002413775478
Iteration: 8, Func. Count: 85, Neg. LLF: 147.27664035113173
Iteration: 9, Func. Count: 96, Neg. LLF: 146.49033976768808
Iteration: 10, Func. Count: 106, Neg. LLF: 146.4805320385829
Iteration: 11, Func. Count: 116, Neg. LLF: 146.47985460337765
Iteration: 12, Func. Count: 126, Neg. LLF: 146.47900094165306
Iteration: 13, Func. Count: 136, Neg. LLF: 146.47898321814077
Iteration: 14, Func. Count: 146, Neg. LLF: 146.47897992650064
Iteration: 15, Func. Count: 155, Neg. LLF: 146.4789798147453
Optimization terminated successfully (Exit mode 0)
Current function value: 146.47897992650064
Iterations: 15
Function evaluations: 155
Gradient evaluations: 15
Iteration: 1, Func. Count: 8, Neg. LLF: 160.85000520752845
Iteration: 2, Func. Count: 17, Neg. LLF: 158.09809282026455
Iteration: 3, Func. Count: 25, Neg. LLF: 154.76298681274176
Iteration: 4, Func. Count: 33, Neg. LLF: 156.7850562673574
Iteration: 5, Func. Count: 41, Neg. LLF: 152.92340717217076
Iteration: 6, Func. Count: 48, Neg. LLF: 153.69833725712144
Iteration: 7, Func. Count: 56, Neg. LLF: 152.4575847961974
Iteration: 8, Func. Count: 64, Neg. LLF: 150.39868712294353
Iteration: 9, Func. Count: 71, Neg. LLF: 203.8756366522996
Iteration: 10, Func. Count: 79, Neg. LLF: 158.39685264650916
Iteration: 11, Func. Count: 88, Neg. LLF: 149.67563371458377
Iteration: 12, Func. Count: 96, Neg. LLF: 148.71538103475575
Iteration: 13, Func. Count: 104, Neg. LLF: 148.27283210075288
Iteration: 14, Func. Count: 111, Neg. LLF: 148.24907037266632
Iteration: 15, Func. Count: 118, Neg. LLF: 148.2480374980155
Iteration: 16, Func. Count: 125, Neg. LLF: 148.2479852246912
Iteration: 17, Func. Count: 132, Neg. LLF: 148.2479710130219
Iteration: 18, Func. Count: 139, Neg. LLF: 148.24792220316826
Iteration: 19, Func. Count: 146, Neg. LLF: 148.24789463896892
Iteration: 20, Func. Count: 153, Neg. LLF: 148.2478676418606
Iteration: 21, Func. Count: 160, Neg. LLF: 148.24785809592828
Iteration: 22, Func. Count: 167, Neg. LLF: 148.247855927791
Iteration: 23, Func. Count: 173, Neg. LLF: 148.24785590727603
Optimization terminated successfully (Exit mode 0)
Current function value: 148.247855927791
Iterations: 23
Function evaluations: 173
Gradient evaluations: 23
Iteration: 1, Func. Count: 9, Neg. LLF: 872.1796086981199
Iteration: 2, Func. Count: 18, Neg. LLF: 150.59884802540267
Iteration: 3, Func. Count: 27, Neg. LLF: 147.16420836853246
Iteration: 4, Func. Count: 35, Neg. LLF: 147.5748649653572
Iteration: 5, Func. Count: 44, Neg. LLF: 149.87462138357972
Iteration: 6, Func. Count: 53, Neg. LLF: 146.90273300458205
Iteration: 7, Func. Count: 61, Neg. LLF: 146.87668697809505
Iteration: 8, Func. Count: 69, Neg. LLF: 146.87532548205309
Iteration: 9, Func. Count: 77, Neg. LLF: 146.87505069164885
Iteration: 10, Func. Count: 85, Neg. LLF: 146.8750154662072
Iteration: 11, Func. Count: 93, Neg. LLF: 146.87501380410652
Iteration: 12, Func. Count: 100, Neg. LLF: 146.87501362418772
Optimization terminated successfully (Exit mode 0)
Current function value: 146.87501380410652
Iterations: 12
Function evaluations: 100
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 783.006820268767
Iteration: 2, Func. Count: 20, Neg. LLF: 441.1524393027164
Iteration: 3, Func. Count: 30, Neg. LLF: 147.48028796266624
Iteration: 4, Func. Count: 39, Neg. LLF: 145.69698074368662
Iteration: 5, Func. Count: 48, Neg. LLF: 148.62964761419786
Iteration: 6, Func. Count: 58, Neg. LLF: 144.95996878799403
Iteration: 7, Func. Count: 67, Neg. LLF: 144.92870555385235
Iteration: 8, Func. Count: 76, Neg. LLF: 144.87555388726602
Iteration: 9, Func. Count: 85, Neg. LLF: 144.8670979252373
Iteration: 10, Func. Count: 94, Neg. LLF: 144.86633355271195
Iteration: 11, Func. Count: 103, Neg. LLF: 144.86631204407084
Iteration: 12, Func. Count: 111, Neg. LLF: 144.86631188284684
Optimization terminated successfully (Exit mode 0)
Current function value: 144.86631204407084
Iterations: 12
Function evaluations: 111
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 668.1851428893764
Iteration: 2, Func. Count: 22, Neg. LLF: 1693302.2539486205
Iteration: 3, Func. Count: 33, Neg. LLF: 149.0735393564788
Iteration: 4, Func. Count: 44, Neg. LLF: 148.03882169994617
Iteration: 5, Func. Count: 55, Neg. LLF: 146.58957288582374
Iteration: 6, Func. Count: 65, Neg. LLF: 146.56303239259458
Iteration: 7, Func. Count: 76, Neg. LLF: 150.43468005345295
Iteration: 8, Func. Count: 88, Neg. LLF: 145.0773166027294
Iteration: 9, Func. Count: 98, Neg. LLF: 144.89292792912232
Iteration: 10, Func. Count: 108, Neg. LLF: 144.8894641144364
Iteration: 11, Func. Count: 119, Neg. LLF: 144.8688053388834
Iteration: 12, Func. Count: 129, Neg. LLF: 144.86634743379537
Iteration: 13, Func. Count: 139, Neg. LLF: 144.8663134649039
Iteration: 14, Func. Count: 149, Neg. LLF: 144.86631200196078
Iteration: 15, Func. Count: 158, Neg. LLF: 144.86631189757117
Optimization terminated successfully (Exit mode 0)
Current function value: 144.86631200196078
Iterations: 15
Function evaluations: 158
Gradient evaluations: 15
Iteration: 1, Func. Count: 12, Neg. LLF: 309.1487808341234
Iteration: 2, Func. Count: 24, Neg. LLF: 1208432.6144565616
Iteration: 3, Func. Count: 36, Neg. LLF: 154.22495144710518
Iteration: 4, Func. Count: 48, Neg. LLF: 169.70315238047746
Iteration: 5, Func. Count: 60, Neg. LLF: 145.8637251908849
Iteration: 6, Func. Count: 71, Neg. LLF: 145.66641850045906
Iteration: 7, Func. Count: 82, Neg. LLF: 145.28829620671453
Iteration: 8, Func. Count: 93, Neg. LLF: 145.33269963168252
Iteration: 9, Func. Count: 105, Neg. LLF: 145.24983494893735
Iteration: 10, Func. Count: 117, Neg. LLF: 145.1496190739095
Iteration: 11, Func. Count: 128, Neg. LLF: 145.1482440204913
Iteration: 12, Func. Count: 139, Neg. LLF: 145.14726585780332
Iteration: 13, Func. Count: 150, Neg. LLF: 145.1472249379317
Iteration: 14, Func. Count: 161, Neg. LLF: 145.14722364133965
Iteration: 15, Func. Count: 171, Neg. LLF: 145.14722353797856
Optimization terminated successfully (Exit mode 0)
Current function value: 145.14722364133965
Iterations: 15
Function evaluations: 171
Gradient evaluations: 15
Iteration: 1, Func. Count: 9, Neg. LLF: 160.64701753776293
Iteration: 2, Func. Count: 19, Neg. LLF: 157.3066178640746
Iteration: 3, Func. Count: 28, Neg. LLF: 154.8972840507837
Iteration: 4, Func. Count: 37, Neg. LLF: 154.22376455377227
Iteration: 5, Func. Count: 46, Neg. LLF: 152.86710076126036
Iteration: 6, Func. Count: 54, Neg. LLF: 153.75212106830165
Iteration: 7, Func. Count: 63, Neg. LLF: 151.61833273688939
Iteration: 8, Func. Count: 71, Neg. LLF: 150.4697569222073
Iteration: 9, Func. Count: 79, Neg. LLF: 326595.0673574171
Iteration: 10, Func. Count: 88, Neg. LLF: 382.3565250686416
Iteration: 11, Func. Count: 97, Neg. LLF: 1675.9893712944997
Iteration: 12, Func. Count: 106, Neg. LLF: 152.32093360041083
Iteration: 13, Func. Count: 115, Neg. LLF: 407.0701099496687
Iteration: 14, Func. Count: 124, Neg. LLF: 148.28405794237054
Iteration: 15, Func. Count: 132, Neg. LLF: 148.2523764819292
Iteration: 16, Func. Count: 140, Neg. LLF: 148.24940763193544
Iteration: 17, Func. Count: 148, Neg. LLF: 148.24874175303339
Iteration: 18, Func. Count: 156, Neg. LLF: 148.2484610864717
Iteration: 19, Func. Count: 164, Neg. LLF: 148.24803658943242
Iteration: 20, Func. Count: 172, Neg. LLF: 148.24791515419238
Iteration: 21, Func. Count: 180, Neg. LLF: 148.24786388557297
Iteration: 22, Func. Count: 188, Neg. LLF: 148.24785657803255
Iteration: 23, Func. Count: 196, Neg. LLF: 148.24785583531695
Optimization terminated successfully (Exit mode 0)
Current function value: 148.24785583531695
Iterations: 23
Function evaluations: 196
Gradient evaluations: 23
Iteration: 1, Func. Count: 10, Neg. LLF: 698.311344339265
Iteration: 2, Func. Count: 20, Neg. LLF: 149.333010225242
Iteration: 3, Func. Count: 30, Neg. LLF: 147.87908212611077
Iteration: 4, Func. Count: 40, Neg. LLF: 147.6573067844942
Iteration: 5, Func. Count: 50, Neg. LLF: 146.9350096655766
Iteration: 6, Func. Count: 59, Neg. LLF: 146.9049252569912
Iteration: 7, Func. Count: 68, Neg. LLF: 146.87955893176772
Iteration: 8, Func. Count: 77, Neg. LLF: 146.87752683968438
Iteration: 9, Func. Count: 86, Neg. LLF: 146.87507430072338
Iteration: 10, Func. Count: 95, Neg. LLF: 146.8750171328703
Iteration: 11, Func. Count: 104, Neg. LLF: 146.87501440762907
Iteration: 12, Func. Count: 113, Neg. LLF: 146.8750137773315
Optimization terminated successfully (Exit mode 0)
Current function value: 146.8750137773315
Iterations: 12
Function evaluations: 113
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 599.9571101086322
Iteration: 2, Func. Count: 22, Neg. LLF: 2800.6398710451476
Iteration: 3, Func. Count: 33, Neg. LLF: 147.45029411182168
Iteration: 4, Func. Count: 43, Neg. LLF: 146.14206221116632
Iteration: 5, Func. Count: 53, Neg. LLF: 148.1188821837638
Iteration: 6, Func. Count: 65, Neg. LLF: 148.83063981432954
Iteration: 7, Func. Count: 76, Neg. LLF: 144.95749283558172
Iteration: 8, Func. Count: 86, Neg. LLF: 144.9200293859123
Iteration: 9, Func. Count: 96, Neg. LLF: 144.8755550688615
Iteration: 10, Func. Count: 106, Neg. LLF: 144.8672625793386
Iteration: 11, Func. Count: 116, Neg. LLF: 144.86633045056155
Iteration: 12, Func. Count: 126, Neg. LLF: 144.86631205965432
Iteration: 13, Func. Count: 135, Neg. LLF: 144.8663118983497
Optimization terminated successfully (Exit mode 0)
Current function value: 144.86631205965432
Iterations: 13
Function evaluations: 135
Gradient evaluations: 13
Iteration: 1, Func. Count: 12, Neg. LLF: 536.04223352482
Iteration: 2, Func. Count: 24, Neg. LLF: 1667937.7320369498
Iteration: 3, Func. Count: 36, Neg. LLF: 149.4683366886594
Iteration: 4, Func. Count: 48, Neg. LLF: 147.52969222592165
Iteration: 5, Func. Count: 60, Neg. LLF: 146.421259553726
Iteration: 6, Func. Count: 71, Neg. LLF: 146.8145421218098
Iteration: 7, Func. Count: 83, Neg. LLF: 146.46909593529733
Iteration: 8, Func. Count: 95, Neg. LLF: 145.88000317029568
Iteration: 9, Func. Count: 106, Neg. LLF: 147.84864987347765
Iteration: 10, Func. Count: 118, Neg. LLF: 145.32481473982244
Iteration: 11, Func. Count: 129, Neg. LLF: 144.99383777335666
Iteration: 12, Func. Count: 140, Neg. LLF: 144.89912312969147
Iteration: 13, Func. Count: 151, Neg. LLF: 144.87878384698286
Iteration: 14, Func. Count: 162, Neg. LLF: 144.86750657187744
Iteration: 15, Func. Count: 173, Neg. LLF: 144.86651079299745
Iteration: 16, Func. Count: 184, Neg. LLF: 144.86632125698318
Iteration: 17, Func. Count: 195, Neg. LLF: 144.86631243305604
Iteration: 18, Func. Count: 205, Neg. LLF: 144.86631232862496
Optimization terminated successfully (Exit mode 0)
Current function value: 144.86631243305604
Iterations: 18
Function evaluations: 205
Gradient evaluations: 18
Iteration: 1, Func. Count: 13, Neg. LLF: 277.37033585061266
Iteration: 2, Func. Count: 26, Neg. LLF: 1201598.4286209324
Iteration: 3, Func. Count: 39, Neg. LLF: 152.50621327357695
Iteration: 4, Func. Count: 52, Neg. LLF: 364.85167571933044
Iteration: 5, Func. Count: 65, Neg. LLF: 145.88819106378924
Iteration: 6, Func. Count: 77, Neg. LLF: 145.57069042953495
Iteration: 7, Func. Count: 89, Neg. LLF: 145.27818257621368
Iteration: 8, Func. Count: 101, Neg. LLF: 145.16189908570425
Iteration: 9, Func. Count: 113, Neg. LLF: 145.1645580511521
Iteration: 10, Func. Count: 126, Neg. LLF: 145.14915138373394
Iteration: 11, Func. Count: 138, Neg. LLF: 145.14727295844474
Iteration: 12, Func. Count: 150, Neg. LLF: 145.14722548713272
Iteration: 13, Func. Count: 162, Neg. LLF: 145.14722363590775
Iteration: 14, Func. Count: 173, Neg. LLF: 145.1472235325042
Optimization terminated successfully (Exit mode 0)
Current function value: 145.14722363590775
Iterations: 14
Function evaluations: 173
Gradient evaluations: 14
Iteration: 1, Func. Count: 6, Neg. LLF: 156.35571030999446
Iteration: 2, Func. Count: 11, Neg. LLF: 157.8405924020162
Iteration: 3, Func. Count: 17, Neg. LLF: 155.80940250518427
Iteration: 4, Func. Count: 22, Neg. LLF: 155.52010631267888
Iteration: 5, Func. Count: 27, Neg. LLF: 155.37665677522074
Iteration: 6, Func. Count: 32, Neg. LLF: 155.3191427757007
Iteration: 7, Func. Count: 37, Neg. LLF: 155.25144734941495
Iteration: 8, Func. Count: 42, Neg. LLF: 155.18309914271165
Iteration: 9, Func. Count: 47, Neg. LLF: 155.0452404141906
Iteration: 10, Func. Count: 52, Neg. LLF: 155.00436192537342
Iteration: 11, Func. Count: 57, Neg. LLF: 154.99221393632618
Iteration: 12, Func. Count: 62, Neg. LLF: 154.99190625923006
Iteration: 13, Func. Count: 67, Neg. LLF: 154.9919011174543
Iteration: 14, Func. Count: 71, Neg. LLF: 154.99190112722044
Optimization terminated successfully (Exit mode 0)
Current function value: 154.9919011174543
Iterations: 14
Function evaluations: 71
Gradient evaluations: 14
Iteration: 1, Func. Count: 7, Neg. LLF: 247.00680670593556
Iteration: 2, Func. Count: 14, Neg. LLF: 159.89543389332215
Iteration: 3, Func. Count: 21, Neg. LLF: 150.51625410256509
Iteration: 4, Func. Count: 27, Neg. LLF: 150.31020734090333
Iteration: 5, Func. Count: 33, Neg. LLF: 150.21340397869275
Iteration: 6, Func. Count: 39, Neg. LLF: 150.18550319138632
Iteration: 7, Func. Count: 45, Neg. LLF: 150.1826908289815
Iteration: 8, Func. Count: 51, Neg. LLF: 150.1825870708411
Iteration: 9, Func. Count: 57, Neg. LLF: 150.18258498653069
Iteration: 10, Func. Count: 62, Neg. LLF: 150.18258490400746
Optimization terminated successfully (Exit mode 0)
Current function value: 150.18258498653069
Iterations: 10
Function evaluations: 62
Gradient evaluations: 10
Iteration: 1, Func. Count: 8, Neg. LLF: 202.75132566834284
Iteration: 2, Func. Count: 16, Neg. LLF: 307.6611412399625
Iteration: 3, Func. Count: 25, Neg. LLF: 174.42034162510822
Iteration: 4, Func. Count: 34, Neg. LLF: 150.97209646572375
Iteration: 5, Func. Count: 42, Neg. LLF: 150.0089158192468
Iteration: 6, Func. Count: 49, Neg. LLF: 149.9762033042492
Iteration: 7, Func. Count: 56, Neg. LLF: 149.9266964480602
Iteration: 8, Func. Count: 63, Neg. LLF: 149.92408414006556
Iteration: 9, Func. Count: 70, Neg. LLF: 149.92394793927187
Iteration: 10, Func. Count: 77, Neg. LLF: 149.92393913410146
Iteration: 11, Func. Count: 84, Neg. LLF: 149.92393549236044
Iteration: 12, Func. Count: 90, Neg. LLF: 149.92393541872073
Optimization terminated successfully (Exit mode 0)
Current function value: 149.92393549236044
Iterations: 12
Function evaluations: 90
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 169.95220207392686
Iteration: 2, Func. Count: 18, Neg. LLF: 217.20087516085766
Iteration: 3, Func. Count: 27, Neg. LLF: 165.38459491365626
Iteration: 4, Func. Count: 36, Neg. LLF: 150.7746515910368
Iteration: 5, Func. Count: 44, Neg. LLF: 151.0752333992723
Iteration: 6, Func. Count: 53, Neg. LLF: 151.1588854450163
Iteration: 7, Func. Count: 62, Neg. LLF: 149.49351028376432
Iteration: 8, Func. Count: 70, Neg. LLF: 149.49364143237673
Iteration: 9, Func. Count: 79, Neg. LLF: 149.48302239048334
Iteration: 10, Func. Count: 87, Neg. LLF: 149.48218628047903
Iteration: 11, Func. Count: 95, Neg. LLF: 149.48214049729137
Iteration: 12, Func. Count: 103, Neg. LLF: 149.48213001903903
Iteration: 13, Func. Count: 110, Neg. LLF: 149.48212994065284
Optimization terminated successfully (Exit mode 0)
Current function value: 149.48213001903903
Iterations: 13
Function evaluations: 110
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 167.75394553564544
Iteration: 2, Func. Count: 20, Neg. LLF: 194.90603319138444
Iteration: 3, Func. Count: 30, Neg. LLF: 194.23947004686806
Iteration: 4, Func. Count: 40, Neg. LLF: 154.24856050384346
Iteration: 5, Func. Count: 50, Neg. LLF: 152.31555610848724
Iteration: 6, Func. Count: 60, Neg. LLF: 149.79693636456884
Iteration: 7, Func. Count: 69, Neg. LLF: 149.70403623471725
Iteration: 8, Func. Count: 78, Neg. LLF: 149.66576304025503
Iteration: 9, Func. Count: 87, Neg. LLF: 149.6440317495802
Iteration: 10, Func. Count: 96, Neg. LLF: 149.62472705669106
Iteration: 11, Func. Count: 105, Neg. LLF: 149.61505606079723
Iteration: 12, Func. Count: 114, Neg. LLF: 149.60917535852238
Iteration: 13, Func. Count: 123, Neg. LLF: 149.60805816374184
Iteration: 14, Func. Count: 132, Neg. LLF: 149.6079645154101
Iteration: 15, Func. Count: 141, Neg. LLF: 149.6079110867345
Iteration: 16, Func. Count: 150, Neg. LLF: 149.6078980437953
Iteration: 17, Func. Count: 159, Neg. LLF: 149.6078946814584
Iteration: 18, Func. Count: 167, Neg. LLF: 149.60789460797744
Optimization terminated successfully (Exit mode 0)
Current function value: 149.6078946814584
Iterations: 18
Function evaluations: 167
Gradient evaluations: 18
Iteration: 1, Func. Count: 7, Neg. LLF: 156.12303171489802
Iteration: 2, Func. Count: 14, Neg. LLF: 158.2222668286479
Iteration: 3, Func. Count: 22, Neg. LLF: 155.8069024825914
Iteration: 4, Func. Count: 29, Neg. LLF: 154.68854046314607
Iteration: 5, Func. Count: 35, Neg. LLF: 154.53636760728722
Iteration: 6, Func. Count: 41, Neg. LLF: 154.2809810046472
Iteration: 7, Func. Count: 47, Neg. LLF: 153.88029477030327
Iteration: 8, Func. Count: 53, Neg. LLF: 153.68087493609085
Iteration: 9, Func. Count: 59, Neg. LLF: 153.64996583294828
Iteration: 10, Func. Count: 65, Neg. LLF: 153.646852696267
Iteration: 11, Func. Count: 71, Neg. LLF: 153.64582603166326
Iteration: 12, Func. Count: 77, Neg. LLF: 153.64524002120996
Iteration: 13, Func. Count: 83, Neg. LLF: 153.6451899486256
Iteration: 14, Func. Count: 89, Neg. LLF: 153.64518850646743
Iteration: 15, Func. Count: 94, Neg. LLF: 153.64518850646851
Optimization terminated successfully (Exit mode 0)
Current function value: 153.64518850646743
Iterations: 15
Function evaluations: 94
Gradient evaluations: 15
Iteration: 1, Func. Count: 8, Neg. LLF: 2307.6612448683854
Iteration: 2, Func. Count: 16, Neg. LLF: 150.45193479243
Iteration: 3, Func. Count: 24, Neg. LLF: 147.30698080271577
Iteration: 4, Func. Count: 31, Neg. LLF: 147.90855670887407
Iteration: 5, Func. Count: 39, Neg. LLF: 155.00147094291697
Iteration: 6, Func. Count: 47, Neg. LLF: 146.97452838074835
Iteration: 7, Func. Count: 55, Neg. LLF: 146.86007427945452
Iteration: 8, Func. Count: 62, Neg. LLF: 146.85773138755152
Iteration: 9, Func. Count: 69, Neg. LLF: 146.85757150068963
Iteration: 10, Func. Count: 76, Neg. LLF: 146.85757038197835
Iteration: 11, Func. Count: 82, Neg. LLF: 146.85757021878965
Optimization terminated successfully (Exit mode 0)
Current function value: 146.85757038197835
Iterations: 11
Function evaluations: 82
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 1346.5378052703595
Iteration: 2, Func. Count: 18, Neg. LLF: 147.84640607193037
Iteration: 3, Func. Count: 27, Neg. LLF: 148.51810653708273
Iteration: 4, Func. Count: 36, Neg. LLF: 145.80865354899836
Iteration: 5, Func. Count: 44, Neg. LLF: 167.55765782717123
Iteration: 6, Func. Count: 53, Neg. LLF: 145.3596771921008
Iteration: 7, Func. Count: 61, Neg. LLF: 145.97289765775892
Iteration: 8, Func. Count: 70, Neg. LLF: 145.2535215043404
Iteration: 9, Func. Count: 79, Neg. LLF: 145.18384333248443
Iteration: 10, Func. Count: 87, Neg. LLF: 145.18353388839046
Iteration: 11, Func. Count: 95, Neg. LLF: 145.18350717171361
Iteration: 12, Func. Count: 103, Neg. LLF: 145.1835061526005
Iteration: 13, Func. Count: 110, Neg. LLF: 145.18350597925212
Optimization terminated successfully (Exit mode 0)
Current function value: 145.1835061526005
Iterations: 13
Function evaluations: 110
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 778.4258539795998
Iteration: 2, Func. Count: 20, Neg. LLF: 11919889.363155501
Iteration: 3, Func. Count: 31, Neg. LLF: 168.40172029746282
Iteration: 4, Func. Count: 41, Neg. LLF: 153.6596280167791
Iteration: 5, Func. Count: 51, Neg. LLF: 151.12092741678546
Iteration: 6, Func. Count: 61, Neg. LLF: 147.3288215365633
Iteration: 7, Func. Count: 70, Neg. LLF: 147.7848216326849
Iteration: 8, Func. Count: 80, Neg. LLF: 150.05111164385215
Iteration: 9, Func. Count: 90, Neg. LLF: 146.88278976533726
Iteration: 10, Func. Count: 99, Neg. LLF: 146.96630545913118
Iteration: 11, Func. Count: 109, Neg. LLF: 146.86722654911938
Iteration: 12, Func. Count: 118, Neg. LLF: 146.86645531961094
Iteration: 13, Func. Count: 127, Neg. LLF: 146.86602555293987
Iteration: 14, Func. Count: 136, Neg. LLF: 146.86413666042807
Iteration: 15, Func. Count: 145, Neg. LLF: 146.393680004845
Iteration: 16, Func. Count: 154, Neg. LLF: 145.41381522406877
Iteration: 17, Func. Count: 163, Neg. LLF: 145.24667651112276
Iteration: 18, Func. Count: 172, Neg. LLF: 145.216203474718
Iteration: 19, Func. Count: 181, Neg. LLF: 145.1985725625885
Iteration: 20, Func. Count: 190, Neg. LLF: 145.1881569978539
Iteration: 21, Func. Count: 199, Neg. LLF: 145.4581592347949
Iteration: 22, Func. Count: 210, Neg. LLF: 145.90862479236378
Iteration: 23, Func. Count: 221, Neg. LLF: 145.297404925551
Iteration: 24, Func. Count: 232, Neg. LLF: 145.1842145068549
Iteration: 25, Func. Count: 241, Neg. LLF: 145.1835063679631
Iteration: 26, Func. Count: 249, Neg. LLF: 145.18350640578137
Optimization terminated successfully (Exit mode 0)
Current function value: 145.1835063679631
Iterations: 27
Function evaluations: 249
Gradient evaluations: 26
Iteration: 1, Func. Count: 11, Neg. LLF: 629.5547919892432
Iteration: 2, Func. Count: 22, Neg. LLF: 12147202.388146956
Iteration: 3, Func. Count: 33, Neg. LLF: 171.21288966936277
Iteration: 4, Func. Count: 44, Neg. LLF: 216.13185218206473
Iteration: 5, Func. Count: 55, Neg. LLF: 149.4329427449663
Iteration: 6, Func. Count: 66, Neg. LLF: 145.82532969302392
Iteration: 7, Func. Count: 76, Neg. LLF: 146.6914898793583
Iteration: 8, Func. Count: 87, Neg. LLF: 145.54107149007544
Iteration: 9, Func. Count: 97, Neg. LLF: 145.35576230034678
Iteration: 10, Func. Count: 107, Neg. LLF: 146.03011206252586
Iteration: 11, Func. Count: 118, Neg. LLF: 145.246125157363
Iteration: 12, Func. Count: 128, Neg. LLF: 145.21037005948284
Iteration: 13, Func. Count: 138, Neg. LLF: 145.18406717156864
Iteration: 14, Func. Count: 148, Neg. LLF: 145.18350686664166
Iteration: 15, Func. Count: 158, Neg. LLF: 145.18350530487828
Iteration: 16, Func. Count: 168, Neg. LLF: 145.18349828550274
Iteration: 17, Func. Count: 178, Neg. LLF: 145.18450098825116
Optimization terminated successfully (Exit mode 0)
Current function value: 145.18349820783882
Iterations: 18
Function evaluations: 180
Gradient evaluations: 17
Iteration: 1, Func. Count: 8, Neg. LLF: 162.4906051215608
Iteration: 2, Func. Count: 16, Neg. LLF: 156.180119739401
Iteration: 3, Func. Count: 24, Neg. LLF: 155.35872681127603
Iteration: 4, Func. Count: 32, Neg. LLF: 154.94718269152588
Iteration: 5, Func. Count: 40, Neg. LLF: 155.2568142575571
Iteration: 6, Func. Count: 48, Neg. LLF: 154.95536698956698
Iteration: 7, Func. Count: 56, Neg. LLF: 154.7937005695611
Iteration: 8, Func. Count: 64, Neg. LLF: 154.64194549405974
Iteration: 9, Func. Count: 72, Neg. LLF: 153.9276713475188
Iteration: 10, Func. Count: 79, Neg. LLF: 153.7701773152465
Iteration: 11, Func. Count: 86, Neg. LLF: 153.70269119272734
Iteration: 12, Func. Count: 93, Neg. LLF: 153.64986649630882
Iteration: 13, Func. Count: 100, Neg. LLF: 153.57728283588446
Iteration: 14, Func. Count: 107, Neg. LLF: 153.57231169289705
Iteration: 15, Func. Count: 114, Neg. LLF: 153.57114570929704
Iteration: 16, Func. Count: 121, Neg. LLF: 153.571127835169
Iteration: 17, Func. Count: 128, Neg. LLF: 153.57111463083803
Iteration: 18, Func. Count: 135, Neg. LLF: 153.5710861195759
Iteration: 19, Func. Count: 142, Neg. LLF: 153.57108133598356
Iteration: 20, Func. Count: 149, Neg. LLF: 153.57108077632734
Optimization terminated successfully (Exit mode 0)
Current function value: 153.57108077632734
Iterations: 20
Function evaluations: 149
Gradient evaluations: 20
Iteration: 1, Func. Count: 9, Neg. LLF: 882.3786021130184
Iteration: 2, Func. Count: 18, Neg. LLF: 150.2330910851271
Iteration: 3, Func. Count: 27, Neg. LLF: 147.91257467007176
Iteration: 4, Func. Count: 36, Neg. LLF: 147.42155251154065
Iteration: 5, Func. Count: 45, Neg. LLF: 146.9133091654798
Iteration: 6, Func. Count: 53, Neg. LLF: 146.86796724357822
Iteration: 7, Func. Count: 61, Neg. LLF: 146.8693052160641
Iteration: 8, Func. Count: 70, Neg. LLF: 146.861007236995
Iteration: 9, Func. Count: 79, Neg. LLF: 146.8570411358339
Iteration: 10, Func. Count: 87, Neg. LLF: 146.85690353499749
Iteration: 11, Func. Count: 95, Neg. LLF: 146.85690212041325
Iteration: 12, Func. Count: 102, Neg. LLF: 146.85690195475615
Optimization terminated successfully (Exit mode 0)
Current function value: 146.85690212041325
Iterations: 12
Function evaluations: 102
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 818.963007379601
Iteration: 2, Func. Count: 20, Neg. LLF: 2932478.029692282
Iteration: 3, Func. Count: 31, Neg. LLF: 150.3247445818436
Iteration: 4, Func. Count: 41, Neg. LLF: 148.98184367922184
Iteration: 5, Func. Count: 51, Neg. LLF: 145.6756250368152
Iteration: 6, Func. Count: 60, Neg. LLF: 145.63036397150398
Iteration: 7, Func. Count: 70, Neg. LLF: 145.6040214518195
Iteration: 8, Func. Count: 80, Neg. LLF: 146.15582751085933
Iteration: 9, Func. Count: 90, Neg. LLF: 145.76353991749593
Iteration: 10, Func. Count: 100, Neg. LLF: 145.1635297119584
Iteration: 11, Func. Count: 110, Neg. LLF: 145.11691677636622
Iteration: 12, Func. Count: 119, Neg. LLF: 145.11672778711375
Iteration: 13, Func. Count: 128, Neg. LLF: 145.11672698817142
Iteration: 14, Func. Count: 138, Neg. LLF: 145.1167231815754
Optimization terminated successfully (Exit mode 0)
Current function value: 145.1167231815754
Iterations: 14
Function evaluations: 138
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 683.8230634231622
Iteration: 2, Func. Count: 22, Neg. LLF: 11566008.108478585
Iteration: 3, Func. Count: 33, Neg. LLF: 151.65147897608497
Iteration: 4, Func. Count: 44, Neg. LLF: 149.67823006174237
Iteration: 5, Func. Count: 55, Neg. LLF: 147.02921666202005
Iteration: 6, Func. Count: 65, Neg. LLF: 146.89242761857076
Iteration: 7, Func. Count: 75, Neg. LLF: 147.09050205734684
Iteration: 8, Func. Count: 86, Neg. LLF: 146.92669063717418
Iteration: 9, Func. Count: 97, Neg. LLF: 146.881476520343
Iteration: 10, Func. Count: 107, Neg. LLF: 146.8776618372112
Iteration: 11, Func. Count: 117, Neg. LLF: 146.8757882377541
Iteration: 12, Func. Count: 127, Neg. LLF: 146.87510033963005
Iteration: 13, Func. Count: 137, Neg. LLF: 146.87483498575247
Iteration: 14, Func. Count: 147, Neg. LLF: 146.8747680610761
Iteration: 15, Func. Count: 157, Neg. LLF: 146.87474672592063
Iteration: 16, Func. Count: 167, Neg. LLF: 146.87473208401715
Iteration: 17, Func. Count: 177, Neg. LLF: 146.87435906848785
Iteration: 18, Func. Count: 187, Neg. LLF: 146.85857337976145
Iteration: 19, Func. Count: 197, Neg. LLF: 146.8589302905694
Iteration: 20, Func. Count: 208, Neg. LLF: 146.81080365963433
Iteration: 21, Func. Count: 228, Neg. LLF: 147.2041778830117
Iteration: 22, Func. Count: 248, Neg. LLF: 146.84841664277934
Iteration: 23, Func. Count: 259, Neg. LLF: 147.10944946413093
Iteration: 24, Func. Count: 271, Neg. LLF: 146.8656084684809
Iteration: 25, Func. Count: 283, Neg. LLF: 146.85750037968444
Iteration: 26, Func. Count: 294, Neg. LLF: 146.85690296514505
Iteration: 27, Func. Count: 304, Neg. LLF: 146.85690410210333
Optimization terminated successfully (Exit mode 0)
Current function value: 146.85690246345874
Iterations: 28
Function evaluations: 305
Gradient evaluations: 27
Iteration: 1, Func. Count: 12, Neg. LLF: 589.1165594215745
Iteration: 2, Func. Count: 24, Neg. LLF: 11493490.443696452
Iteration: 3, Func. Count: 36, Neg. LLF: 152.50899284204453
Iteration: 4, Func. Count: 48, Neg. LLF: 192.1844122074013
Iteration: 5, Func. Count: 60, Neg. LLF: 147.03153849416313
Iteration: 6, Func. Count: 71, Neg. LLF: 151.18786985048416
Iteration: 7, Func. Count: 83, Neg. LLF: 148.584367676584
Iteration: 8, Func. Count: 95, Neg. LLF: 146.12076764537403
Iteration: 9, Func. Count: 106, Neg. LLF: 146.012833888134
Iteration: 10, Func. Count: 117, Neg. LLF: 145.90583493984718
Iteration: 11, Func. Count: 128, Neg. LLF: 145.88418772036368
Iteration: 12, Func. Count: 139, Neg. LLF: 145.87457592337108
Iteration: 13, Func. Count: 150, Neg. LLF: 145.87279305282
Iteration: 14, Func. Count: 161, Neg. LLF: 145.87253739681452
Iteration: 15, Func. Count: 172, Neg. LLF: 145.87251675117366
Iteration: 16, Func. Count: 183, Neg. LLF: 145.87251548581207
Iteration: 17, Func. Count: 193, Neg. LLF: 145.87251537130925
Optimization terminated successfully (Exit mode 0)
Current function value: 145.87251548581207
Iterations: 17
Function evaluations: 193
Gradient evaluations: 17
Iteration: 1, Func. Count: 9, Neg. LLF: 156.17188461695443
Iteration: 2, Func. Count: 18, Neg. LLF: 155.21366966402266
Iteration: 3, Func. Count: 27, Neg. LLF: 153.17837468965655
Iteration: 4, Func. Count: 35, Neg. LLF: 152.7356927283629
Iteration: 5, Func. Count: 43, Neg. LLF: 155.1182760533168
Iteration: 6, Func. Count: 52, Neg. LLF: 151.97499169314406
Iteration: 7, Func. Count: 60, Neg. LLF: 159.31922840720011
Iteration: 8, Func. Count: 69, Neg. LLF: 148.91831776720946
Iteration: 9, Func. Count: 77, Neg. LLF: 238.3288798364561
Iteration: 10, Func. Count: 86, Neg. LLF: 151.23365649573097
Iteration: 11, Func. Count: 95, Neg. LLF: 148.9573335755986
Iteration: 12, Func. Count: 104, Neg. LLF: 148.33265711428925
Iteration: 13, Func. Count: 113, Neg. LLF: 148.24117933097594
Iteration: 14, Func. Count: 121, Neg. LLF: 148.2657263853005
Iteration: 15, Func. Count: 130, Neg. LLF: 148.23555385883984
Iteration: 16, Func. Count: 139, Neg. LLF: 148.2254653428003
Iteration: 17, Func. Count: 147, Neg. LLF: 148.22481646152704
Iteration: 18, Func. Count: 155, Neg. LLF: 148.22475910320603
Iteration: 19, Func. Count: 163, Neg. LLF: 148.22475361264298
Iteration: 20, Func. Count: 170, Neg. LLF: 148.22475359259923
Optimization terminated successfully (Exit mode 0)
Current function value: 148.22475361264298
Iterations: 20
Function evaluations: 170
Gradient evaluations: 20
Iteration: 1, Func. Count: 10, Neg. LLF: 596.5127158099376
Iteration: 2, Func. Count: 20, Neg. LLF: 149.18540950134246
Iteration: 3, Func. Count: 30, Neg. LLF: 151.52770078539507
Iteration: 4, Func. Count: 40, Neg. LLF: 147.59305533114534
Iteration: 5, Func. Count: 50, Neg. LLF: 148.2395481198763
Iteration: 6, Func. Count: 60, Neg. LLF: 146.92071784312623
Iteration: 7, Func. Count: 69, Neg. LLF: 146.87926672819313
Iteration: 8, Func. Count: 78, Neg. LLF: 147.1244083968446
Iteration: 9, Func. Count: 88, Neg. LLF: 146.85888168307415
Iteration: 10, Func. Count: 97, Neg. LLF: 146.85925303507625
Iteration: 11, Func. Count: 107, Neg. LLF: 146.8568843442809
Iteration: 12, Func. Count: 116, Neg. LLF: 146.85687175139012
Iteration: 13, Func. Count: 124, Neg. LLF: 146.85687158609474
Optimization terminated successfully (Exit mode 0)
Current function value: 146.85687175139012
Iterations: 13
Function evaluations: 124
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 590.6283246738619
Iteration: 2, Func. Count: 22, Neg. LLF: 4177549.650471327
Iteration: 3, Func. Count: 33, Neg. LLF: 152.6268624954387
Iteration: 4, Func. Count: 44, Neg. LLF: 145.4634221674086
Iteration: 5, Func. Count: 54, Neg. LLF: 153.74188459189241
Iteration: 6, Func. Count: 65, Neg. LLF: 145.31451131380632
Iteration: 7, Func. Count: 76, Neg. LLF: 145.60737221693475
Iteration: 8, Func. Count: 87, Neg. LLF: 144.84012901521268
Iteration: 9, Func. Count: 97, Neg. LLF: 144.81313372782637
Iteration: 10, Func. Count: 107, Neg. LLF: 144.8099223249156
Iteration: 11, Func. Count: 117, Neg. LLF: 144.8094576996275
Iteration: 12, Func. Count: 127, Neg. LLF: 144.80940280965484
Iteration: 13, Func. Count: 137, Neg. LLF: 144.80939921509434
Iteration: 14, Func. Count: 146, Neg. LLF: 144.80939905284006
Optimization terminated successfully (Exit mode 0)
Current function value: 144.80939921509434
Iterations: 14
Function evaluations: 146
Gradient evaluations: 14
Iteration: 1, Func. Count: 12, Neg. LLF: 541.4238286410022
Iteration: 2, Func. Count: 24, Neg. LLF: 1681448.8671819253
Iteration: 3, Func. Count: 36, Neg. LLF: 203.70575390317333
Iteration: 4, Func. Count: 48, Neg. LLF: 148.0036986663887
Iteration: 5, Func. Count: 60, Neg. LLF: 151.35839821753726
Iteration: 6, Func. Count: 72, Neg. LLF: 145.70944712084577
Iteration: 7, Func. Count: 83, Neg. LLF: 146.06798559973097
Iteration: 8, Func. Count: 95, Neg. LLF: 144.9013941456665
Iteration: 9, Func. Count: 106, Neg. LLF: 145.1470309208748
Iteration: 10, Func. Count: 118, Neg. LLF: 144.8201394703726
Iteration: 11, Func. Count: 129, Neg. LLF: 144.81235106949057
Iteration: 12, Func. Count: 140, Neg. LLF: 144.8094446883409
Iteration: 13, Func. Count: 151, Neg. LLF: 144.80940103253153
Iteration: 14, Func. Count: 162, Neg. LLF: 144.80939923848945
Iteration: 15, Func. Count: 172, Neg. LLF: 144.80939921580946
Optimization terminated successfully (Exit mode 0)
Current function value: 144.80939923848945
Iterations: 15
Function evaluations: 172
Gradient evaluations: 15
Iteration: 1, Func. Count: 13, Neg. LLF: 499.366524503707
Iteration: 2, Func. Count: 26, Neg. LLF: 11493097.930003727
Iteration: 3, Func. Count: 39, Neg. LLF: 369718.45057517965
Iteration: 4, Func. Count: 52, Neg. LLF: 150.98769925059946
Iteration: 5, Func. Count: 65, Neg. LLF: 146.1823271458876
Iteration: 6, Func. Count: 77, Neg. LLF: 145.02469827936352
Iteration: 7, Func. Count: 89, Neg. LLF: 153.67791794079366
Iteration: 8, Func. Count: 102, Neg. LLF: 147.6137268462279
Iteration: 9, Func. Count: 115, Neg. LLF: 144.63399798555199
Iteration: 10, Func. Count: 127, Neg. LLF: 144.5454547040954
Iteration: 11, Func. Count: 139, Neg. LLF: 144.54226389306888
Iteration: 12, Func. Count: 151, Neg. LLF: 144.54199667083935
Iteration: 13, Func. Count: 163, Neg. LLF: 144.5419913303933
Iteration: 14, Func. Count: 174, Neg. LLF: 144.54199119867576
Optimization terminated successfully (Exit mode 0)
Current function value: 144.5419913303933
Iterations: 14
Function evaluations: 174
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 156.8484850693133
Iteration: 2, Func. Count: 20, Neg. LLF: 160.71614849006207
Iteration: 3, Func. Count: 30, Neg. LLF: 154.3241301575258
Iteration: 4, Func. Count: 40, Neg. LLF: 154.07184286817727
Iteration: 5, Func. Count: 50, Neg. LLF: 152.79973037572512
Iteration: 6, Func. Count: 59, Neg. LLF: 153.42667655146332
Iteration: 7, Func. Count: 69, Neg. LLF: 152.71851271651337
Iteration: 8, Func. Count: 79, Neg. LLF: 151.98984048179202
Iteration: 9, Func. Count: 89, Neg. LLF: 387456.0526509111
Iteration: 10, Func. Count: 99, Neg. LLF: 8146.966337755668
Iteration: 11, Func. Count: 109, Neg. LLF: 1831.4044734865836
Iteration: 12, Func. Count: 119, Neg. LLF: 240.00522504933923
Iteration: 13, Func. Count: 129, Neg. LLF: 152.06447595310752
Iteration: 14, Func. Count: 139, Neg. LLF: 151.67771874305745
Iteration: 15, Func. Count: 149, Neg. LLF: 148.33457388393737
Iteration: 16, Func. Count: 158, Neg. LLF: 148.24466670264562
Iteration: 17, Func. Count: 167, Neg. LLF: 148.2369895260673
Iteration: 18, Func. Count: 176, Neg. LLF: 148.22699810029772
Iteration: 19, Func. Count: 185, Neg. LLF: 148.22616201841075
Iteration: 20, Func. Count: 194, Neg. LLF: 148.22568996956252
Iteration: 21, Func. Count: 203, Neg. LLF: 148.22551754932184
Iteration: 22, Func. Count: 212, Neg. LLF: 148.22528931581365
Iteration: 23, Func. Count: 221, Neg. LLF: 148.22497734911323
Iteration: 24, Func. Count: 230, Neg. LLF: 148.22479989256345
Iteration: 25, Func. Count: 239, Neg. LLF: 148.2247594046003
Iteration: 26, Func. Count: 248, Neg. LLF: 148.2247536478808
Iteration: 27, Func. Count: 256, Neg. LLF: 148.22475378422592
Optimization terminated successfully (Exit mode 0)
Current function value: 148.2247536478808
Iterations: 27
Function evaluations: 256
Gradient evaluations: 27
Iteration: 1, Func. Count: 11, Neg. LLF: 491.51370465020483
Iteration: 2, Func. Count: 22, Neg. LLF: 148.08086244274787
Iteration: 3, Func. Count: 33, Neg. LLF: 153.82920297448737
Iteration: 4, Func. Count: 44, Neg. LLF: 149.48587106783893
Iteration: 5, Func. Count: 55, Neg. LLF: 146.9811150740323
Iteration: 6, Func. Count: 65, Neg. LLF: 147.04105513816205
Iteration: 7, Func. Count: 76, Neg. LLF: 147.15535534967142
Iteration: 8, Func. Count: 87, Neg. LLF: 146.85810952108804
Iteration: 9, Func. Count: 97, Neg. LLF: 146.858382676109
Iteration: 10, Func. Count: 108, Neg. LLF: 146.857320945347
Iteration: 11, Func. Count: 119, Neg. LLF: 146.8568716475695
Iteration: 12, Func. Count: 128, Neg. LLF: 146.8568714822023
Optimization terminated successfully (Exit mode 0)
Current function value: 146.8568716475695
Iterations: 12
Function evaluations: 128
Gradient evaluations: 12
Iteration: 1, Func. Count: 12, Neg. LLF: 478.4596673088361
Iteration: 2, Func. Count: 24, Neg. LLF: 298610.9081462931
Iteration: 3, Func. Count: 36, Neg. LLF: 151.4325237228028
Iteration: 4, Func. Count: 48, Neg. LLF: 145.29477265844193
Iteration: 5, Func. Count: 59, Neg. LLF: 157.3807899429055
Iteration: 6, Func. Count: 71, Neg. LLF: 145.70367896474858
Iteration: 7, Func. Count: 83, Neg. LLF: 145.10528698135238
Iteration: 8, Func. Count: 95, Neg. LLF: 144.81449864870916
Iteration: 9, Func. Count: 106, Neg. LLF: 144.80988110827525
Iteration: 10, Func. Count: 117, Neg. LLF: 144.80944514863776
Iteration: 11, Func. Count: 128, Neg. LLF: 144.8093993523714
Iteration: 12, Func. Count: 138, Neg. LLF: 144.8093991900239
Optimization terminated successfully (Exit mode 0)
Current function value: 144.8093993523714
Iterations: 12
Function evaluations: 138
Gradient evaluations: 12
Iteration: 1, Func. Count: 13, Neg. LLF: 455.56722137372367
Iteration: 2, Func. Count: 26, Neg. LLF: 1688297.5480427693
Iteration: 3, Func. Count: 39, Neg. LLF: 205.2220754216149
Iteration: 4, Func. Count: 52, Neg. LLF: 147.7983452905296
Iteration: 5, Func. Count: 64, Neg. LLF: 150.38322418530095
Iteration: 6, Func. Count: 77, Neg. LLF: 155.93358904348554
Iteration: 7, Func. Count: 91, Neg. LLF: 147.3096908517831
Iteration: 8, Func. Count: 104, Neg. LLF: 145.80785595189238
Iteration: 9, Func. Count: 116, Neg. LLF: 147.3150379675942
Iteration: 10, Func. Count: 129, Neg. LLF: 147.2365313635263
Iteration: 11, Func. Count: 143, Neg. LLF: 145.00264029964754
Iteration: 12, Func. Count: 155, Neg. LLF: 144.8416836033548
Iteration: 13, Func. Count: 167, Neg. LLF: 144.81975635375332
Iteration: 14, Func. Count: 179, Neg. LLF: 144.8112961605999
Iteration: 15, Func. Count: 191, Neg. LLF: 144.8094984643664
Iteration: 16, Func. Count: 203, Neg. LLF: 144.80940875792444
Iteration: 17, Func. Count: 215, Neg. LLF: 144.8093992640628
Iteration: 18, Func. Count: 226, Neg. LLF: 144.80939924136226
Optimization terminated successfully (Exit mode 0)
Current function value: 144.8093992640628
Iterations: 18
Function evaluations: 226
Gradient evaluations: 18
Iteration: 1, Func. Count: 14, Neg. LLF: 199.0343172399188
Iteration: 2, Func. Count: 28, Neg. LLF: 197.89599245535425
Iteration: 3, Func. Count: 42, Neg. LLF: 179.07747389071386
Iteration: 4, Func. Count: 56, Neg. LLF: 152.47510547798134
Iteration: 5, Func. Count: 70, Neg. LLF: 149.00791597832963
Iteration: 6, Func. Count: 84, Neg. LLF: 214.59650095857126
Iteration: 7, Func. Count: 98, Neg. LLF: 146.09695253240528
Iteration: 8, Func. Count: 111, Neg. LLF: 145.06252420210092
Iteration: 9, Func. Count: 124, Neg. LLF: 145.7983259000869
Iteration: 10, Func. Count: 138, Neg. LLF: 145.36269571431725
Iteration: 11, Func. Count: 152, Neg. LLF: 144.7691374064588
Iteration: 12, Func. Count: 165, Neg. LLF: 144.59169055710205
Iteration: 13, Func. Count: 178, Neg. LLF: 144.67570353271446
Iteration: 14, Func. Count: 192, Neg. LLF: 144.54304488126016
Iteration: 15, Func. Count: 205, Neg. LLF: 144.54289192482614
Iteration: 16, Func. Count: 219, Neg. LLF: 144.5419955874315
Iteration: 17, Func. Count: 232, Neg. LLF: 144.54199107732606
Iteration: 18, Func. Count: 244, Neg. LLF: 144.5419909455155
Optimization terminated successfully (Exit mode 0)
Current function value: 144.54199107732606
Iterations: 18
Function evaluations: 244
Gradient evaluations: 18
Iteration: 1, Func. Count: 7, Neg. LLF: 156.789855469744
Iteration: 2, Func. Count: 14, Neg. LLF: 158.43719420466525
Iteration: 3, Func. Count: 22, Neg. LLF: 156.06936489600255
Iteration: 4, Func. Count: 29, Neg. LLF: 155.2900630664833
Iteration: 5, Func. Count: 35, Neg. LLF: 154.52572160905112
Iteration: 6, Func. Count: 41, Neg. LLF: 196.40580295195943
Iteration: 7, Func. Count: 48, Neg. LLF: 197.97044178540904
Iteration: 8, Func. Count: 55, Neg. LLF: 229.52942479836688
Iteration: 9, Func. Count: 62, Neg. LLF: 260.76393955416063
Iteration: 10, Func. Count: 69, Neg. LLF: 160.5273948606387
Iteration: 11, Func. Count: 76, Neg. LLF: 154.8758354338927
Iteration: 12, Func. Count: 83, Neg. LLF: 155.18076107206468
Iteration: 13, Func. Count: 90, Neg. LLF: 153.4615255096766
Iteration: 14, Func. Count: 97, Neg. LLF: 152.63042038315913
Iteration: 15, Func. Count: 103, Neg. LLF: 152.50619510810134
Iteration: 16, Func. Count: 109, Neg. LLF: 152.49717481384997
Iteration: 17, Func. Count: 115, Neg. LLF: 152.49325946183228
Iteration: 18, Func. Count: 121, Neg. LLF: 152.4930804042888
Iteration: 19, Func. Count: 127, Neg. LLF: 152.4930696849172
Iteration: 20, Func. Count: 133, Neg. LLF: 152.49306739037178
Iteration: 21, Func. Count: 138, Neg. LLF: 152.4930673412329
Optimization terminated successfully (Exit mode 0)
Current function value: 152.49306739037178
Iterations: 21
Function evaluations: 138
Gradient evaluations: 21
Iteration: 1, Func. Count: 8, Neg. LLF: 199.4655161677792
Iteration: 2, Func. Count: 16, Neg. LLF: 155.05736812891547
Iteration: 3, Func. Count: 24, Neg. LLF: 150.47941176828638
Iteration: 4, Func. Count: 31, Neg. LLF: 150.24595402281503
Iteration: 5, Func. Count: 38, Neg. LLF: 150.19331883208017
Iteration: 6, Func. Count: 45, Neg. LLF: 150.1831977226362
Iteration: 7, Func. Count: 52, Neg. LLF: 150.18269311257833
Iteration: 8, Func. Count: 59, Neg. LLF: 150.18258502375522
Iteration: 9, Func. Count: 65, Neg. LLF: 150.18258494123415
Optimization terminated successfully (Exit mode 0)
Current function value: 150.18258502375522
Iterations: 9
Function evaluations: 65
Gradient evaluations: 9
Iteration: 1, Func. Count: 9, Neg. LLF: 170.74286075672157
Iteration: 2, Func. Count: 18, Neg. LLF: 241.17799350621152
Iteration: 3, Func. Count: 28, Neg. LLF: 167.22907503387103
Iteration: 4, Func. Count: 37, Neg. LLF: 150.60479278550054
Iteration: 5, Func. Count: 45, Neg. LLF: 155.41820080919985
Iteration: 6, Func. Count: 54, Neg. LLF: 150.25435295588014
Iteration: 7, Func. Count: 62, Neg. LLF: 149.9330006943014
Iteration: 8, Func. Count: 70, Neg. LLF: 149.92834990516914
Iteration: 9, Func. Count: 78, Neg. LLF: 149.9242490529001
Iteration: 10, Func. Count: 86, Neg. LLF: 149.92397997347447
Iteration: 11, Func. Count: 94, Neg. LLF: 149.92393606197007
Iteration: 12, Func. Count: 102, Neg. LLF: 149.9239354924435
Optimization terminated successfully (Exit mode 0)
Current function value: 149.9239354924435
Iterations: 12
Function evaluations: 102
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 167.93666400109342
Iteration: 2, Func. Count: 20, Neg. LLF: 201.8641314142464
Iteration: 3, Func. Count: 30, Neg. LLF: 183.65369887148617
Iteration: 4, Func. Count: 40, Neg. LLF: 152.37728168184043
Iteration: 5, Func. Count: 50, Neg. LLF: 154.88361819116673
Iteration: 6, Func. Count: 60, Neg. LLF: 150.01522462100814
Iteration: 7, Func. Count: 69, Neg. LLF: 150.34593236848167
Iteration: 8, Func. Count: 79, Neg. LLF: 154.3362878441174
Iteration: 9, Func. Count: 90, Neg. LLF: 149.81433113876992
Iteration: 10, Func. Count: 100, Neg. LLF: 149.50279634479114
Iteration: 11, Func. Count: 109, Neg. LLF: 149.48334786966586
Iteration: 12, Func. Count: 118, Neg. LLF: 149.48224587838115
Iteration: 13, Func. Count: 127, Neg. LLF: 149.48213590020086
Iteration: 14, Func. Count: 136, Neg. LLF: 149.4821311170268
Iteration: 15, Func. Count: 145, Neg. LLF: 149.4821299911542
Iteration: 16, Func. Count: 153, Neg. LLF: 149.48212991272473
Optimization terminated successfully (Exit mode 0)
Current function value: 149.4821299911542
Iterations: 16
Function evaluations: 153
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 166.2110774312182
Iteration: 2, Func. Count: 22, Neg. LLF: 186.73519118777716
Iteration: 3, Func. Count: 33, Neg. LLF: 163.0927617927556
Iteration: 4, Func. Count: 44, Neg. LLF: 156.79042058273538
Iteration: 5, Func. Count: 55, Neg. LLF: 151.6072472378538
Iteration: 6, Func. Count: 66, Neg. LLF: 152.19778664095693
Iteration: 7, Func. Count: 77, Neg. LLF: 149.93322733086478
Iteration: 8, Func. Count: 87, Neg. LLF: 149.72766522277325
Iteration: 9, Func. Count: 97, Neg. LLF: 149.96438153981669
Iteration: 10, Func. Count: 108, Neg. LLF: 149.58092379926345
Iteration: 11, Func. Count: 118, Neg. LLF: 149.5709298823488
Iteration: 12, Func. Count: 128, Neg. LLF: 149.5672188746851
Iteration: 13, Func. Count: 138, Neg. LLF: 149.56707459458468
Iteration: 14, Func. Count: 148, Neg. LLF: 149.56701861959414
Iteration: 15, Func. Count: 158, Neg. LLF: 149.56701396481776
Iteration: 16, Func. Count: 168, Neg. LLF: 149.56701323407222
Optimization terminated successfully (Exit mode 0)
Current function value: 149.56701323407222
Iterations: 16
Function evaluations: 168
Gradient evaluations: 16
Iteration: 1, Func. Count: 8, Neg. LLF: 156.55061007697014
Iteration: 2, Func. Count: 16, Neg. LLF: 158.43519793738952
Iteration: 3, Func. Count: 24, Neg. LLF: 156.33363780828694
Iteration: 4, Func. Count: 32, Neg. LLF: 156.20821660002997
Iteration: 5, Func. Count: 40, Neg. LLF: 156.3428814171801
Iteration: 6, Func. Count: 48, Neg. LLF: 154.71318085009128
Iteration: 7, Func. Count: 56, Neg. LLF: 155.19009988541944
Iteration: 8, Func. Count: 64, Neg. LLF: 153.4220095182014
Iteration: 9, Func. Count: 71, Neg. LLF: 152.02597552636752
Iteration: 10, Func. Count: 78, Neg. LLF: 162.24068104734792
Iteration: 11, Func. Count: 86, Neg. LLF: 161.91224391905718
Iteration: 12, Func. Count: 94, Neg. LLF: 170.71663718037055
Iteration: 13, Func. Count: 102, Neg. LLF: 151.37343649302574
Iteration: 14, Func. Count: 110, Neg. LLF: 150.8273388797224
Iteration: 15, Func. Count: 117, Neg. LLF: 150.85231245512824
Iteration: 16, Func. Count: 125, Neg. LLF: 150.817938324563
Iteration: 17, Func. Count: 132, Neg. LLF: 150.81686141060564
Iteration: 18, Func. Count: 139, Neg. LLF: 150.81635985749924
Iteration: 19, Func. Count: 146, Neg. LLF: 150.81635814770715
Iteration: 20, Func. Count: 152, Neg. LLF: 150.81635812154713
Optimization terminated successfully (Exit mode 0)
Current function value: 150.81635814770715
Iterations: 20
Function evaluations: 152
Gradient evaluations: 20
Iteration: 1, Func. Count: 9, Neg. LLF: 1752.912031062527
Iteration: 2, Func. Count: 18, Neg. LLF: 149.37796730444813
Iteration: 3, Func. Count: 27, Neg. LLF: 152.26406332550698
Iteration: 4, Func. Count: 36, Neg. LLF: 147.45570956353768
Iteration: 5, Func. Count: 45, Neg. LLF: 146.94156293980188
Iteration: 6, Func. Count: 53, Neg. LLF: 147.59696148298923
Iteration: 7, Func. Count: 62, Neg. LLF: 147.531321320704
Iteration: 8, Func. Count: 71, Neg. LLF: 146.825073391293
Iteration: 9, Func. Count: 79, Neg. LLF: 146.82457846534837
Iteration: 10, Func. Count: 87, Neg. LLF: 146.82414992491084
Iteration: 11, Func. Count: 95, Neg. LLF: 146.82414773828987
Iteration: 12, Func. Count: 102, Neg. LLF: 146.82414758046113
Optimization terminated successfully (Exit mode 0)
Current function value: 146.82414773828987
Iterations: 12
Function evaluations: 102
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 921.7424583500947
Iteration: 2, Func. Count: 20, Neg. LLF: 7878.020068909713
Iteration: 3, Func. Count: 31, Neg. LLF: 160.7206419056023
Iteration: 4, Func. Count: 41, Neg. LLF: 152.15944702859144
Iteration: 5, Func. Count: 51, Neg. LLF: 146.4490956902376
Iteration: 6, Func. Count: 60, Neg. LLF: 146.2053263021675
Iteration: 7, Func. Count: 69, Neg. LLF: 165.7817386915354
Iteration: 8, Func. Count: 80, Neg. LLF: 145.2730115335068
Iteration: 9, Func. Count: 89, Neg. LLF: 145.3686008884041
Iteration: 10, Func. Count: 99, Neg. LLF: 145.18730417023568
Iteration: 11, Func. Count: 108, Neg. LLF: 145.184011458611
Iteration: 12, Func. Count: 117, Neg. LLF: 145.18352043599643
Iteration: 13, Func. Count: 126, Neg. LLF: 145.18350759138195
Iteration: 14, Func. Count: 135, Neg. LLF: 145.18350614566114
Iteration: 15, Func. Count: 143, Neg. LLF: 145.18350597238484
Optimization terminated successfully (Exit mode 0)
Current function value: 145.18350614566114
Iterations: 15
Function evaluations: 143
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 635.9483788458981
Iteration: 2, Func. Count: 22, Neg. LLF: 12133549.832282996
Iteration: 3, Func. Count: 33, Neg. LLF: 163.00632110134816
Iteration: 4, Func. Count: 44, Neg. LLF: 152.35990149396198
Iteration: 5, Func. Count: 55, Neg. LLF: 150.6488086496631
Iteration: 6, Func. Count: 66, Neg. LLF: 148.99876956628384
Iteration: 7, Func. Count: 77, Neg. LLF: 147.15548956181317
Iteration: 8, Func. Count: 87, Neg. LLF: 147.03914788223207
Iteration: 9, Func. Count: 97, Neg. LLF: 146.4428124527289
Iteration: 10, Func. Count: 107, Neg. LLF: 145.92858520333323
Iteration: 11, Func. Count: 117, Neg. LLF: 211.96351918628181
Iteration: 12, Func. Count: 128, Neg. LLF: 145.2800493388804
Iteration: 13, Func. Count: 138, Neg. LLF: 145.1986867023478
Iteration: 14, Func. Count: 148, Neg. LLF: 145.18612335246283
Iteration: 15, Func. Count: 158, Neg. LLF: 145.18375777789134
Iteration: 16, Func. Count: 168, Neg. LLF: 145.1835327328684
Iteration: 17, Func. Count: 178, Neg. LLF: 145.18351480710908
Iteration: 18, Func. Count: 188, Neg. LLF: 145.1835060516717
Iteration: 19, Func. Count: 197, Neg. LLF: 145.18350608937806
Optimization terminated successfully (Exit mode 0)
Current function value: 145.1835060516717
Iterations: 19
Function evaluations: 197
Gradient evaluations: 19
Iteration: 1, Func. Count: 12, Neg. LLF: 554.7035088791241
Iteration: 2, Func. Count: 24, Neg. LLF: 12306231.417486403
Iteration: 3, Func. Count: 36, Neg. LLF: 162.025072823738
Iteration: 4, Func. Count: 48, Neg. LLF: 162.20725322425366
Iteration: 5, Func. Count: 60, Neg. LLF: 153.21421399212966
Iteration: 6, Func. Count: 72, Neg. LLF: 147.28080787808256
Iteration: 7, Func. Count: 83, Neg. LLF: 146.33787243612522
Iteration: 8, Func. Count: 94, Neg. LLF: 149.96613840391097
Iteration: 9, Func. Count: 107, Neg. LLF: 145.60800295723723
Iteration: 10, Func. Count: 118, Neg. LLF: 145.59489047140727
Iteration: 11, Func. Count: 129, Neg. LLF: 145.59084298338962
Iteration: 12, Func. Count: 140, Neg. LLF: 145.58853351341773
Iteration: 13, Func. Count: 151, Neg. LLF: 145.57902831143986
Iteration: 14, Func. Count: 162, Neg. LLF: 145.5751699338988
Iteration: 15, Func. Count: 173, Neg. LLF: 145.57178499866163
Iteration: 16, Func. Count: 184, Neg. LLF: 145.57103184655008
Iteration: 17, Func. Count: 195, Neg. LLF: 145.57079919567744
Iteration: 18, Func. Count: 205, Neg. LLF: 145.570799044194
Optimization terminated successfully (Exit mode 0)
Current function value: 145.57079919567744
Iterations: 18
Function evaluations: 205
Gradient evaluations: 18
Iteration: 1, Func. Count: 9, Neg. LLF: 164.21652509666927
Iteration: 2, Func. Count: 18, Neg. LLF: 156.05926977832445
Iteration: 3, Func. Count: 28, Neg. LLF: 157.44098123531865
Iteration: 4, Func. Count: 38, Neg. LLF: 155.69899085983144
Iteration: 5, Func. Count: 47, Neg. LLF: 156.26671520686745
Iteration: 6, Func. Count: 56, Neg. LLF: 154.47230137241513
Iteration: 7, Func. Count: 64, Neg. LLF: 154.00391644512905
Iteration: 8, Func. Count: 72, Neg. LLF: 153.50361989158364
Iteration: 9, Func. Count: 80, Neg. LLF: 151.92012118086498
Iteration: 10, Func. Count: 88, Neg. LLF: 493.2970476767602
Iteration: 11, Func. Count: 97, Neg. LLF: 1187.79212987428
Iteration: 12, Func. Count: 106, Neg. LLF: 1052.555769201968
Iteration: 13, Func. Count: 115, Neg. LLF: 170.63122137098892
Iteration: 14, Func. Count: 124, Neg. LLF: 155.64787165452051
Iteration: 15, Func. Count: 133, Neg. LLF: 164.81568124767736
Iteration: 16, Func. Count: 142, Neg. LLF: 166.31983526229698
Iteration: 17, Func. Count: 151, Neg. LLF: 152.5509518253778
Iteration: 18, Func. Count: 160, Neg. LLF: 155.44156472740977
Iteration: 19, Func. Count: 169, Neg. LLF: 151.10594376257256
Iteration: 20, Func. Count: 178, Neg. LLF: 151.04563587079542
Iteration: 21, Func. Count: 187, Neg. LLF: 150.74348811539002
Iteration: 22, Func. Count: 195, Neg. LLF: 150.7375784956951
Iteration: 23, Func. Count: 203, Neg. LLF: 150.7227310926927
Iteration: 24, Func. Count: 211, Neg. LLF: 150.71513297424764
Iteration: 25, Func. Count: 219, Neg. LLF: 150.7000059451082
Iteration: 26, Func. Count: 227, Neg. LLF: 150.68079646762237
Iteration: 27, Func. Count: 235, Neg. LLF: 150.67126447235304
Iteration: 28, Func. Count: 243, Neg. LLF: 150.67046887191603
Iteration: 29, Func. Count: 251, Neg. LLF: 150.67045277776043
Iteration: 30, Func. Count: 259, Neg. LLF: 150.67045217387238
Optimization terminated successfully (Exit mode 0)
Current function value: 150.67045217387238
Iterations: 30
Function evaluations: 259
Gradient evaluations: 30
Iteration: 1, Func. Count: 10, Neg. LLF: 722.5961730241374
Iteration: 2, Func. Count: 20, Neg. LLF: 149.18732816424296
Iteration: 3, Func. Count: 30, Neg. LLF: 152.66106767628855
Iteration: 4, Func. Count: 40, Neg. LLF: 147.6278147985131
Iteration: 5, Func. Count: 50, Neg. LLF: 147.1964160895795
Iteration: 6, Func. Count: 60, Neg. LLF: 147.08574488432913
Iteration: 7, Func. Count: 70, Neg. LLF: 147.02625409996853
Iteration: 8, Func. Count: 80, Neg. LLF: 146.82708510920938
Iteration: 9, Func. Count: 89, Neg. LLF: 146.82433191632214
Iteration: 10, Func. Count: 98, Neg. LLF: 146.82415183964847
Iteration: 11, Func. Count: 107, Neg. LLF: 146.82414815399565
Iteration: 12, Func. Count: 116, Neg. LLF: 146.824147675064
Optimization terminated successfully (Exit mode 0)
Current function value: 146.824147675064
Iterations: 12
Function evaluations: 116
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 643.2285807947919
Iteration: 2, Func. Count: 22, Neg. LLF: 2831108.6066855
Iteration: 3, Func. Count: 34, Neg. LLF: 153.82863972976068
Iteration: 4, Func. Count: 45, Neg. LLF: 152.0462431575227
Iteration: 5, Func. Count: 56, Neg. LLF: 146.6449307396947
Iteration: 6, Func. Count: 66, Neg. LLF: 146.72349651192323
Iteration: 7, Func. Count: 77, Neg. LLF: 146.14280449739712
Iteration: 8, Func. Count: 87, Neg. LLF: 187.77664114434268
Iteration: 9, Func. Count: 98, Neg. LLF: 145.5328362245935
Iteration: 10, Func. Count: 108, Neg. LLF: 150.2619718250104
Iteration: 11, Func. Count: 120, Neg. LLF: 145.2677313388517
Iteration: 12, Func. Count: 130, Neg. LLF: 145.16559246879788
Iteration: 13, Func. Count: 140, Neg. LLF: 145.15084822741014
Iteration: 14, Func. Count: 150, Neg. LLF: 145.1210393394808
Iteration: 15, Func. Count: 160, Neg. LLF: 145.1170722734196
Iteration: 16, Func. Count: 170, Neg. LLF: 145.11677329169362
Iteration: 17, Func. Count: 180, Neg. LLF: 145.1167317256387
Iteration: 18, Func. Count: 190, Neg. LLF: 145.1167235189714
Iteration: 19, Func. Count: 199, Neg. LLF: 145.11672333066275
Optimization terminated successfully (Exit mode 0)
Current function value: 145.1167235189714
Iterations: 19
Function evaluations: 199
Gradient evaluations: 19
Iteration: 1, Func. Count: 12, Neg. LLF: 577.0928933637929
Iteration: 2, Func. Count: 24, Neg. LLF: 11501287.40115557
Iteration: 3, Func. Count: 36, Neg. LLF: 151.8531989479088
Iteration: 4, Func. Count: 48, Neg. LLF: 150.76403054425302
Iteration: 5, Func. Count: 60, Neg. LLF: 147.10992411446568
Iteration: 6, Func. Count: 71, Neg. LLF: 147.01196341515535
Iteration: 7, Func. Count: 82, Neg. LLF: 147.61298358686804
Iteration: 8, Func. Count: 94, Neg. LLF: 147.07559698137945
Iteration: 9, Func. Count: 106, Neg. LLF: 146.91260099813587
Iteration: 10, Func. Count: 117, Neg. LLF: 146.90811196440222
Iteration: 11, Func. Count: 129, Neg. LLF: 146.8994666782832
Iteration: 12, Func. Count: 141, Neg. LLF: 146.87824817336931
Iteration: 13, Func. Count: 152, Neg. LLF: 146.8771925436073
Iteration: 14, Func. Count: 164, Neg. LLF: 146.8705151175881
Iteration: 15, Func. Count: 175, Neg. LLF: 146.86112003193114
Iteration: 16, Func. Count: 186, Neg. LLF: 146.82917745430743
Iteration: 17, Func. Count: 197, Neg. LLF: 146.8253097874841
Iteration: 18, Func. Count: 208, Neg. LLF: 146.82421427817508
Iteration: 19, Func. Count: 219, Neg. LLF: 146.82415444411762
Iteration: 20, Func. Count: 230, Neg. LLF: 146.82414550319476
Iteration: 21, Func. Count: 241, Neg. LLF: 146.82414392779472
Optimization terminated successfully (Exit mode 0)
Current function value: 146.8241455003335
Iterations: 21
Function evaluations: 251
Gradient evaluations: 21
Iteration: 1, Func. Count: 13, Neg. LLF: 531.4329228154476
Iteration: 2, Func. Count: 26, Neg. LLF: 11492710.302604366
Iteration: 3, Func. Count: 39, Neg. LLF: 152.40582959285868
Iteration: 4, Func. Count: 52, Neg. LLF: 240.6247345357228
Iteration: 5, Func. Count: 65, Neg. LLF: 146.7380861715044
Iteration: 6, Func. Count: 77, Neg. LLF: 166.70886727398198
Iteration: 7, Func. Count: 90, Neg. LLF: 146.03892881427785
Iteration: 8, Func. Count: 102, Neg. LLF: 146.18475511327046
Iteration: 9, Func. Count: 115, Neg. LLF: 147.72064156881868
Iteration: 10, Func. Count: 128, Neg. LLF: 145.87617938403437
Iteration: 11, Func. Count: 140, Neg. LLF: 145.8735762281058
Iteration: 12, Func. Count: 152, Neg. LLF: 145.87260611922682
Iteration: 13, Func. Count: 164, Neg. LLF: 145.87252778262737
Iteration: 14, Func. Count: 176, Neg. LLF: 145.87251590799843
Iteration: 15, Func. Count: 188, Neg. LLF: 145.87251533920227
Optimization terminated successfully (Exit mode 0)
Current function value: 145.87251533920227
Iterations: 15
Function evaluations: 188
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 164.6564155241752
Iteration: 2, Func. Count: 20, Neg. LLF: 154.13098666502836
Iteration: 3, Func. Count: 29, Neg. LLF: 154.208828394397
Iteration: 4, Func. Count: 39, Neg. LLF: 154.32334924181765
Iteration: 5, Func. Count: 49, Neg. LLF: 156.58093885155319
Iteration: 6, Func. Count: 59, Neg. LLF: 153.35741668944416
Iteration: 7, Func. Count: 69, Neg. LLF: 153.8492109840228
Iteration: 8, Func. Count: 79, Neg. LLF: 151.90509387226004
Iteration: 9, Func. Count: 88, Neg. LLF: 156.79450098181374
Iteration: 10, Func. Count: 98, Neg. LLF: 192.13554027171185
Iteration: 11, Func. Count: 108, Neg. LLF: 409.22317793246486
Iteration: 12, Func. Count: 118, Neg. LLF: 648.5586139392605
Iteration: 13, Func. Count: 128, Neg. LLF: 12343.631958688497
Iteration: 14, Func. Count: 138, Neg. LLF: 259.8008060815414
Iteration: 15, Func. Count: 148, Neg. LLF: 153.17974979729647
Iteration: 16, Func. Count: 158, Neg. LLF: 148.36404358617665
Iteration: 17, Func. Count: 167, Neg. LLF: 148.32046344672708
Iteration: 18, Func. Count: 177, Neg. LLF: 148.25619472728656
Iteration: 19, Func. Count: 187, Neg. LLF: 148.227923457163
Iteration: 20, Func. Count: 196, Neg. LLF: 148.22748061180334
Iteration: 21, Func. Count: 206, Neg. LLF: 148.2247707297606
Iteration: 22, Func. Count: 215, Neg. LLF: 148.22475944949852
Iteration: 23, Func. Count: 224, Neg. LLF: 148.22475455566448
Iteration: 24, Func. Count: 233, Neg. LLF: 148.22475361426334
Optimization terminated successfully (Exit mode 0)
Current function value: 148.22475361426334
Iterations: 24
Function evaluations: 233
Gradient evaluations: 24
Iteration: 1, Func. Count: 11, Neg. LLF: 484.2451641222865
Iteration: 2, Func. Count: 22, Neg. LLF: 148.62350997557618
Iteration: 3, Func. Count: 33, Neg. LLF: 153.03183561150203
Iteration: 4, Func. Count: 44, Neg. LLF: 148.13433085198153
Iteration: 5, Func. Count: 55, Neg. LLF: 146.97775763455667
Iteration: 6, Func. Count: 65, Neg. LLF: 151.54451174486388
Iteration: 7, Func. Count: 76, Neg. LLF: 147.3250224711808
Iteration: 8, Func. Count: 87, Neg. LLF: 146.8318613024054
Iteration: 9, Func. Count: 97, Neg. LLF: 146.824455386382
Iteration: 10, Func. Count: 107, Neg. LLF: 146.8216966549224
Iteration: 11, Func. Count: 117, Neg. LLF: 146.82123355449363
Iteration: 12, Func. Count: 127, Neg. LLF: 146.8212052266627
Iteration: 13, Func. Count: 137, Neg. LLF: 146.8212046112732
Optimization terminated successfully (Exit mode 0)
Current function value: 146.8212046112732
Iterations: 13
Function evaluations: 137
Gradient evaluations: 13
Iteration: 1, Func. Count: 12, Neg. LLF: 471.98790597315786
Iteration: 2, Func. Count: 24, Neg. LLF: 2858335.691786234
Iteration: 3, Func. Count: 36, Neg. LLF: 155.4795190272682
Iteration: 4, Func. Count: 48, Neg. LLF: 146.5215890207409
Iteration: 5, Func. Count: 59, Neg. LLF: 147.74950401272534
Iteration: 6, Func. Count: 71, Neg. LLF: 145.35370794847685
Iteration: 7, Func. Count: 82, Neg. LLF: 156.00573204336342
Iteration: 8, Func. Count: 94, Neg. LLF: 144.9649459030741
Iteration: 9, Func. Count: 105, Neg. LLF: 147.36311763817173
Iteration: 10, Func. Count: 117, Neg. LLF: 144.95891714402418
Iteration: 11, Func. Count: 129, Neg. LLF: 144.81012955162439
Iteration: 12, Func. Count: 140, Neg. LLF: 144.80946638190323
Iteration: 13, Func. Count: 151, Neg. LLF: 144.80940410792948
Iteration: 14, Func. Count: 162, Neg. LLF: 144.80939926070485
Iteration: 15, Func. Count: 172, Neg. LLF: 144.80939909842633
Optimization terminated successfully (Exit mode 0)
Current function value: 144.80939926070485
Iterations: 15
Function evaluations: 172
Gradient evaluations: 15
Iteration: 1, Func. Count: 13, Neg. LLF: 453.87323040805336
Iteration: 2, Func. Count: 26, Neg. LLF: 11494192.20747073
Iteration: 3, Func. Count: 39, Neg. LLF: 261.51587631102836
Iteration: 4, Func. Count: 52, Neg. LLF: 148.02806466158393
Iteration: 5, Func. Count: 65, Neg. LLF: 152.42465875348998
Iteration: 6, Func. Count: 78, Neg. LLF: 146.39952376585887
Iteration: 7, Func. Count: 90, Neg. LLF: 146.35852239981932
Iteration: 8, Func. Count: 102, Neg. LLF: 146.25444186806573
Iteration: 9, Func. Count: 114, Neg. LLF: 145.99294873278626
Iteration: 10, Func. Count: 126, Neg. LLF: 145.82778662807212
Iteration: 11, Func. Count: 138, Neg. LLF: 145.78614258036603
Iteration: 12, Func. Count: 150, Neg. LLF: 145.78255209776788
Iteration: 13, Func. Count: 162, Neg. LLF: 145.78239630809017
Iteration: 14, Func. Count: 174, Neg. LLF: 145.78238801764442
Iteration: 15, Func. Count: 186, Neg. LLF: 145.78238611636976
Iteration: 16, Func. Count: 197, Neg. LLF: 145.78238606931959
Optimization terminated successfully (Exit mode 0)
Current function value: 145.78238611636976
Iterations: 16
Function evaluations: 197
Gradient evaluations: 16
Iteration: 1, Func. Count: 14, Neg. LLF: 188.34720981044916
Iteration: 2, Func. Count: 28, Neg. LLF: 199.73422892568553
Iteration: 3, Func. Count: 42, Neg. LLF: 150.0708675555417
Iteration: 4, Func. Count: 56, Neg. LLF: 175.20056067994582
Iteration: 5, Func. Count: 70, Neg. LLF: 151.0234405825589
Iteration: 6, Func. Count: 84, Neg. LLF: 146.1906149685914
Iteration: 7, Func. Count: 97, Neg. LLF: 145.25285365536928
Iteration: 8, Func. Count: 110, Neg. LLF: 145.8983579416677
Iteration: 9, Func. Count: 124, Neg. LLF: 147.7035596652779
Iteration: 10, Func. Count: 138, Neg. LLF: 145.86237982069233
Iteration: 11, Func. Count: 152, Neg. LLF: 146.2184187627681
Iteration: 12, Func. Count: 166, Neg. LLF: 144.77411547276012
Iteration: 13, Func. Count: 179, Neg. LLF: 144.64161375989352
Iteration: 14, Func. Count: 192, Neg. LLF: 144.5924463983562
Iteration: 15, Func. Count: 205, Neg. LLF: 144.54699823644253
Iteration: 16, Func. Count: 218, Neg. LLF: 144.54752754778391
Iteration: 17, Func. Count: 232, Neg. LLF: 144.54204914722146
Iteration: 18, Func. Count: 245, Neg. LLF: 144.54199265091933
Iteration: 19, Func. Count: 258, Neg. LLF: 144.54199118761042
Iteration: 20, Func. Count: 270, Neg. LLF: 144.54199105578496
Optimization terminated successfully (Exit mode 0)
Current function value: 144.54199118761042
Iterations: 20
Function evaluations: 270
Gradient evaluations: 20
Iteration: 1, Func. Count: 11, Neg. LLF: 164.0857658218332
Iteration: 2, Func. Count: 22, Neg. LLF: 154.84392864415105
Iteration: 3, Func. Count: 33, Neg. LLF: 156.7363438835607
Iteration: 4, Func. Count: 44, Neg. LLF: 153.93100957908374
Iteration: 5, Func. Count: 55, Neg. LLF: 153.03684245867868
Iteration: 6, Func. Count: 65, Neg. LLF: 152.49688293979625
Iteration: 7, Func. Count: 75, Neg. LLF: 152.0099651012573
Iteration: 8, Func. Count: 85, Neg. LLF: 149.70083314637662
Iteration: 9, Func. Count: 95, Neg. LLF: 216.0182784951458
Iteration: 10, Func. Count: 106, Neg. LLF: 405.72445336954763
Iteration: 11, Func. Count: 117, Neg. LLF: 474.2841252989145
Iteration: 12, Func. Count: 128, Neg. LLF: 406.63795403103643
Iteration: 13, Func. Count: 139, Neg. LLF: 293.9041279476436
Iteration: 14, Func. Count: 150, Neg. LLF: 148.89012536238613
Iteration: 15, Func. Count: 161, Neg. LLF: 148.2507778361624
Iteration: 16, Func. Count: 172, Neg. LLF: 148.22569333328732
Iteration: 17, Func. Count: 182, Neg. LLF: 148.22483769790702
Iteration: 18, Func. Count: 192, Neg. LLF: 148.22477672502606
Iteration: 19, Func. Count: 202, Neg. LLF: 148.22475384662255
Iteration: 20, Func. Count: 211, Neg. LLF: 148.22475398301688
Optimization terminated successfully (Exit mode 0)
Current function value: 148.22475384662255
Iterations: 20
Function evaluations: 211
Gradient evaluations: 20
Iteration: 1, Func. Count: 12, Neg. LLF: 399.4638867701759
Iteration: 2, Func. Count: 24, Neg. LLF: 148.13400996813095
Iteration: 3, Func. Count: 35, Neg. LLF: 148.517800748496
Iteration: 4, Func. Count: 47, Neg. LLF: 423.04230738392874
Iteration: 5, Func. Count: 60, Neg. LLF: 323.5048102534853
Iteration: 6, Func. Count: 73, Neg. LLF: 150.55089334812635
Iteration: 7, Func. Count: 85, Neg. LLF: 147.07172641376647
Iteration: 8, Func. Count: 96, Neg. LLF: 146.8980315389956
Iteration: 9, Func. Count: 107, Neg. LLF: 146.83423366092043
Iteration: 10, Func. Count: 118, Neg. LLF: 146.8221666201739
Iteration: 11, Func. Count: 129, Neg. LLF: 146.8212593196789
Iteration: 12, Func. Count: 140, Neg. LLF: 146.82120503541864
Iteration: 13, Func. Count: 151, Neg. LLF: 146.82120460056265
Optimization terminated successfully (Exit mode 0)
Current function value: 146.82120460056265
Iterations: 13
Function evaluations: 151
Gradient evaluations: 13
Iteration: 1, Func. Count: 13, Neg. LLF: 392.7192525557306
Iteration: 2, Func. Count: 26, Neg. LLF: 2836560.736730619
Iteration: 3, Func. Count: 39, Neg. LLF: 153.36838255794524
Iteration: 4, Func. Count: 52, Neg. LLF: 147.18048909344108
Iteration: 5, Func. Count: 64, Neg. LLF: 149.18982139156424
Iteration: 6, Func. Count: 78, Neg. LLF: 145.40108346672818
Iteration: 7, Func. Count: 90, Neg. LLF: 147.70878741783798
Iteration: 8, Func. Count: 103, Neg. LLF: 145.23182204497127
Iteration: 9, Func. Count: 116, Neg. LLF: 144.89959692675995
Iteration: 10, Func. Count: 128, Neg. LLF: 144.83350732120775
Iteration: 11, Func. Count: 140, Neg. LLF: 144.8119772451829
Iteration: 12, Func. Count: 152, Neg. LLF: 144.8095252264526
Iteration: 13, Func. Count: 164, Neg. LLF: 144.8094153160216
Iteration: 14, Func. Count: 176, Neg. LLF: 144.80940046217637
Iteration: 15, Func. Count: 188, Neg. LLF: 144.80939921821513
Iteration: 16, Func. Count: 199, Neg. LLF: 144.80939905596279
Optimization terminated successfully (Exit mode 0)
Current function value: 144.80939921821513
Iterations: 16
Function evaluations: 199
Gradient evaluations: 16
Iteration: 1, Func. Count: 14, Neg. LLF: 254.22160782788416
Iteration: 2, Func. Count: 28, Neg. LLF: 200.64604714546502
Iteration: 3, Func. Count: 42, Neg. LLF: 149.1174334436966
Iteration: 4, Func. Count: 55, Neg. LLF: 754.7446954037788
Iteration: 5, Func. Count: 69, Neg. LLF: 203.20833741210433
Iteration: 6, Func. Count: 83, Neg. LLF: 151.85765233391245
Iteration: 7, Func. Count: 97, Neg. LLF: 146.60360969428802
Iteration: 8, Func. Count: 111, Neg. LLF: 145.82944911062216
Iteration: 9, Func. Count: 124, Neg. LLF: 145.79918024694766
Iteration: 10, Func. Count: 137, Neg. LLF: 145.7842923671962
Iteration: 11, Func. Count: 150, Neg. LLF: 145.7828298147586
Iteration: 12, Func. Count: 163, Neg. LLF: 145.7823865603864
Iteration: 13, Func. Count: 175, Neg. LLF: 145.78238651326393
Optimization terminated successfully (Exit mode 0)
Current function value: 145.7823865603864
Iterations: 13
Function evaluations: 175
Gradient evaluations: 13
Iteration: 1, Func. Count: 15, Neg. LLF: 187.37307537798452
Iteration: 2, Func. Count: 30, Neg. LLF: 200.29244207372872
Iteration: 3, Func. Count: 45, Neg. LLF: 175.49229611886318
Iteration: 4, Func. Count: 60, Neg. LLF: 153.5988156464819
Iteration: 5, Func. Count: 75, Neg. LLF: 150.33800572668196
Iteration: 6, Func. Count: 90, Neg. LLF: 146.92277935060463
Iteration: 7, Func. Count: 105, Neg. LLF: 145.75092994204118
Iteration: 8, Func. Count: 119, Neg. LLF: 146.45891206905534
Iteration: 9, Func. Count: 134, Neg. LLF: 149.6192752097527
Iteration: 10, Func. Count: 149, Neg. LLF: 146.67087438254154
Iteration: 11, Func. Count: 164, Neg. LLF: 145.29329757034805
Iteration: 12, Func. Count: 179, Neg. LLF: 144.56822163966052
Iteration: 13, Func. Count: 193, Neg. LLF: 144.5437991361721
Iteration: 14, Func. Count: 207, Neg. LLF: 144.54376645951814
Iteration: 15, Func. Count: 222, Neg. LLF: 144.5425980101854
Iteration: 16, Func. Count: 237, Neg. LLF: 144.5419919318011
Iteration: 17, Func. Count: 251, Neg. LLF: 144.54199108248778
Optimization terminated successfully (Exit mode 0)
Current function value: 144.54199108248778
Iterations: 17
Function evaluations: 251
Gradient evaluations: 17
Iteration: 1, Func. Count: 8, Neg. LLF: 156.7039459796325
Iteration: 2, Func. Count: 16, Neg. LLF: 158.44343571114132
Iteration: 3, Func. Count: 25, Neg. LLF: 155.81265936519583
Iteration: 4, Func. Count: 33, Neg. LLF: 155.28060730164458
Iteration: 5, Func. Count: 40, Neg. LLF: 155.34595830624642
Iteration: 6, Func. Count: 48, Neg. LLF: 159.0967677189216
Iteration: 7, Func. Count: 56, Neg. LLF: 163.87435270022382
Iteration: 8, Func. Count: 64, Neg. LLF: 214.19401077141038
Iteration: 9, Func. Count: 72, Neg. LLF: 197.51967592275096
Iteration: 10, Func. Count: 80, Neg. LLF: 190.25567647625812
Iteration: 11, Func. Count: 88, Neg. LLF: 242.2019610083821
Iteration: 12, Func. Count: 96, Neg. LLF: 178.92615903697217
Iteration: 13, Func. Count: 104, Neg. LLF: 185.44271517751835
Iteration: 14, Func. Count: 112, Neg. LLF: 176.06216367521355
Iteration: 15, Func. Count: 120, Neg. LLF: 153.32471220533967
Iteration: 16, Func. Count: 128, Neg. LLF: 187.54981269243285
Iteration: 17, Func. Count: 136, Neg. LLF: 151.3323766113282
Iteration: 18, Func. Count: 143, Neg. LLF: 151.12529418997562
Iteration: 19, Func. Count: 150, Neg. LLF: 151.04697837744254
Iteration: 20, Func. Count: 157, Neg. LLF: 151.01291837448363
Iteration: 21, Func. Count: 164, Neg. LLF: 151.00251454995544
Iteration: 22, Func. Count: 171, Neg. LLF: 150.99962585223534
Iteration: 23, Func. Count: 178, Neg. LLF: 150.99777544931442
Iteration: 24, Func. Count: 185, Neg. LLF: 150.99776664497236
Iteration: 25, Func. Count: 192, Neg. LLF: 150.997765798297
Optimization terminated successfully (Exit mode 0)
Current function value: 150.997765798297
Iterations: 25
Function evaluations: 192
Gradient evaluations: 25
Iteration: 1, Func. Count: 9, Neg. LLF: 171.9958929014228
Iteration: 2, Func. Count: 18, Neg. LLF: 160.595678894297
Iteration: 3, Func. Count: 27, Neg. LLF: 150.53119595609348
Iteration: 4, Func. Count: 35, Neg. LLF: 156.7939563243519
Iteration: 5, Func. Count: 44, Neg. LLF: 156.2070260169192
Iteration: 6, Func. Count: 53, Neg. LLF: 152.5597151650379
Iteration: 7, Func. Count: 62, Neg. LLF: 150.71919805924594
Iteration: 8, Func. Count: 71, Neg. LLF: 150.02164344698568
Iteration: 9, Func. Count: 79, Neg. LLF: 149.96814338240813
Iteration: 10, Func. Count: 87, Neg. LLF: 149.95985825356755
Iteration: 11, Func. Count: 95, Neg. LLF: 149.95857231129042
Iteration: 12, Func. Count: 103, Neg. LLF: 149.95830585889647
Iteration: 13, Func. Count: 110, Neg. LLF: 149.9583058060001
Optimization terminated successfully (Exit mode 0)
Current function value: 149.95830585889647
Iterations: 13
Function evaluations: 110
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 167.87990443242995
Iteration: 2, Func. Count: 20, Neg. LLF: 157.6021419750085
Iteration: 3, Func. Count: 30, Neg. LLF: 223.63831277359307
Iteration: 4, Func. Count: 40, Neg. LLF: 153.9598215255311
Iteration: 5, Func. Count: 50, Neg. LLF: 152.00880027762102
Iteration: 6, Func. Count: 60, Neg. LLF: 149.70314787746355
Iteration: 7, Func. Count: 69, Neg. LLF: 149.57722334814122
Iteration: 8, Func. Count: 78, Neg. LLF: 149.61746394865676
Iteration: 9, Func. Count: 88, Neg. LLF: 149.5589711035616
Iteration: 10, Func. Count: 97, Neg. LLF: 149.55253906039542
Iteration: 11, Func. Count: 106, Neg. LLF: 149.55205095901738
Iteration: 12, Func. Count: 115, Neg. LLF: 149.5517498883864
Iteration: 13, Func. Count: 124, Neg. LLF: 149.5517412600746
Iteration: 14, Func. Count: 132, Neg. LLF: 149.55174120853826
Optimization terminated successfully (Exit mode 0)
Current function value: 149.5517412600746
Iterations: 14
Function evaluations: 132
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 165.62223537846023
Iteration: 2, Func. Count: 22, Neg. LLF: 193.91808129383978
Iteration: 3, Func. Count: 33, Neg. LLF: 181.1364836512081
Iteration: 4, Func. Count: 44, Neg. LLF: 154.7263968155177
Iteration: 5, Func. Count: 55, Neg. LLF: 153.27391000663764
Iteration: 6, Func. Count: 66, Neg. LLF: 152.2283677521727
Iteration: 7, Func. Count: 77, Neg. LLF: 152.36470421986684
Iteration: 8, Func. Count: 88, Neg. LLF: 149.49806286832379
Iteration: 9, Func. Count: 98, Neg. LLF: 149.51133024117829
Iteration: 10, Func. Count: 109, Neg. LLF: 149.48076405136212
Iteration: 11, Func. Count: 119, Neg. LLF: 149.47774611750845
Iteration: 12, Func. Count: 129, Neg. LLF: 149.47746542573768
Iteration: 13, Func. Count: 139, Neg. LLF: 149.47745817477673
Iteration: 14, Func. Count: 148, Neg. LLF: 149.47745810221124
Optimization terminated successfully (Exit mode 0)
Current function value: 149.47745817477673
Iterations: 14
Function evaluations: 148
Gradient evaluations: 14
Iteration: 1, Func. Count: 12, Neg. LLF: 164.24341555903567
Iteration: 2, Func. Count: 24, Neg. LLF: 182.59264518171267
Iteration: 3, Func. Count: 36, Neg. LLF: 170.334737827158
Iteration: 4, Func. Count: 48, Neg. LLF: 188.04177904887538
Iteration: 5, Func. Count: 60, Neg. LLF: 150.82450014752314
Iteration: 6, Func. Count: 72, Neg. LLF: 150.5027866758599
Iteration: 7, Func. Count: 84, Neg. LLF: 149.97526173880956
Iteration: 8, Func. Count: 96, Neg. LLF: 149.6700585437737
Iteration: 9, Func. Count: 107, Neg. LLF: 149.6185708141471
Iteration: 10, Func. Count: 118, Neg. LLF: 149.59407206933867
Iteration: 11, Func. Count: 129, Neg. LLF: 149.56886300243966
Iteration: 12, Func. Count: 140, Neg. LLF: 149.56742696497716
Iteration: 13, Func. Count: 151, Neg. LLF: 149.56709095883988
Iteration: 14, Func. Count: 162, Neg. LLF: 149.5670455833003
Iteration: 15, Func. Count: 173, Neg. LLF: 149.56701378729716
Iteration: 16, Func. Count: 183, Neg. LLF: 149.5670137179607
Optimization terminated successfully (Exit mode 0)
Current function value: 149.56701378729716
Iterations: 16
Function evaluations: 183
Gradient evaluations: 16
Iteration: 1, Func. Count: 9, Neg. LLF: 156.421422668945
Iteration: 2, Func. Count: 18, Neg. LLF: 155.5604747519409
Iteration: 3, Func. Count: 27, Neg. LLF: 155.9027470414285
Iteration: 4, Func. Count: 36, Neg. LLF: 155.82883678536245
Iteration: 5, Func. Count: 45, Neg. LLF: 156.4964536540146
Iteration: 6, Func. Count: 54, Neg. LLF: 167.76717832219782
Iteration: 7, Func. Count: 63, Neg. LLF: 156.61151119448675
Iteration: 8, Func. Count: 72, Neg. LLF: 167.85207712008855
Iteration: 9, Func. Count: 81, Neg. LLF: 165.68181846766015
Iteration: 10, Func. Count: 90, Neg. LLF: 180.28262107876984
Iteration: 11, Func. Count: 99, Neg. LLF: 201.113566311642
Iteration: 12, Func. Count: 108, Neg. LLF: 193.5800038633591
Iteration: 13, Func. Count: 117, Neg. LLF: 213.39584319248166
Iteration: 14, Func. Count: 126, Neg. LLF: 199.72321517070438
Iteration: 15, Func. Count: 135, Neg. LLF: 213.6183389210448
Iteration: 16, Func. Count: 144, Neg. LLF: 165.34662995917017
Iteration: 17, Func. Count: 153, Neg. LLF: 170.29328353674006
Iteration: 18, Func. Count: 162, Neg. LLF: 158.3364225582269
Iteration: 19, Func. Count: 171, Neg. LLF: 168.35872583702294
Iteration: 20, Func. Count: 180, Neg. LLF: 192.0951208333199
Iteration: 21, Func. Count: 189, Neg. LLF: 207.9750177362868
Iteration: 22, Func. Count: 198, Neg. LLF: 209.29715061403263
Iteration: 23, Func. Count: 207, Neg. LLF: 151.4704761622463
Iteration: 24, Func. Count: 216, Neg. LLF: 149.13597988642982
Iteration: 25, Func. Count: 224, Neg. LLF: 149.18954112804067
Iteration: 26, Func. Count: 233, Neg. LLF: 149.2317282948475
Iteration: 27, Func. Count: 242, Neg. LLF: 148.95348838984287
Iteration: 28, Func. Count: 250, Neg. LLF: 148.94719621177316
Iteration: 29, Func. Count: 258, Neg. LLF: 148.94520978235101
Iteration: 30, Func. Count: 266, Neg. LLF: 148.94469557845648
Iteration: 31, Func. Count: 274, Neg. LLF: 148.94464536678095
Iteration: 32, Func. Count: 282, Neg. LLF: 148.9446420800556
Iteration: 33, Func. Count: 289, Neg. LLF: 148.94464205257873
Optimization terminated successfully (Exit mode 0)
Current function value: 148.9446420800556
Iterations: 33
Function evaluations: 289
Gradient evaluations: 33
Iteration: 1, Func. Count: 10, Neg. LLF: 1793.2673490779293
Iteration: 2, Func. Count: 20, Neg. LLF: 148.58823576786108
Iteration: 3, Func. Count: 30, Neg. LLF: 156.2887115901459
Iteration: 4, Func. Count: 40, Neg. LLF: 2164.8780589221683
Iteration: 5, Func. Count: 50, Neg. LLF: 147.3222577534184
Iteration: 6, Func. Count: 60, Neg. LLF: 146.487534378207
Iteration: 7, Func. Count: 69, Neg. LLF: 146.65791283023896
Iteration: 8, Func. Count: 79, Neg. LLF: 146.49253571971454
Iteration: 9, Func. Count: 89, Neg. LLF: 146.41968575760853
Iteration: 10, Func. Count: 98, Neg. LLF: 146.4196128546107
Iteration: 11, Func. Count: 107, Neg. LLF: 146.41960850572036
Iteration: 12, Func. Count: 115, Neg. LLF: 146.41960839171585
Optimization terminated successfully (Exit mode 0)
Current function value: 146.41960850572036
Iterations: 12
Function evaluations: 115
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 804.4209114387163
Iteration: 2, Func. Count: 22, Neg. LLF: 12151294.560086785
Iteration: 3, Func. Count: 34, Neg. LLF: 307.33174423124063
Iteration: 4, Func. Count: 45, Neg. LLF: 154.23489716247866
Iteration: 5, Func. Count: 56, Neg. LLF: 146.73758811344078
Iteration: 6, Func. Count: 66, Neg. LLF: 149.69657888145164
Iteration: 7, Func. Count: 77, Neg. LLF: 163.97633054253706
Iteration: 8, Func. Count: 88, Neg. LLF: 358.0016389624485
Iteration: 9, Func. Count: 100, Neg. LLF: 145.31494851052906
Iteration: 10, Func. Count: 110, Neg. LLF: 145.21429268545708
Iteration: 11, Func. Count: 120, Neg. LLF: 145.21002907058383
Iteration: 12, Func. Count: 131, Neg. LLF: 145.1853988480175
Iteration: 13, Func. Count: 141, Neg. LLF: 145.18407989421073
Iteration: 14, Func. Count: 151, Neg. LLF: 145.1835066802385
Iteration: 15, Func. Count: 161, Neg. LLF: 145.18350617024169
Optimization terminated successfully (Exit mode 0)
Current function value: 145.18350617024169
Iterations: 15
Function evaluations: 161
Gradient evaluations: 15
Iteration: 1, Func. Count: 12, Neg. LLF: 583.6177267871061
Iteration: 2, Func. Count: 24, Neg. LLF: 12144642.393658385
Iteration: 3, Func. Count: 36, Neg. LLF: 161.45991063817823
Iteration: 4, Func. Count: 48, Neg. LLF: 147.7104971490024
Iteration: 5, Func. Count: 59, Neg. LLF: 171.4004606688924
Iteration: 6, Func. Count: 71, Neg. LLF: 177.64185570009877
Iteration: 7, Func. Count: 84, Neg. LLF: 152.62399731849843
Iteration: 8, Func. Count: 96, Neg. LLF: 146.52694654697538
Iteration: 9, Func. Count: 108, Neg. LLF: 146.10677568671272
Iteration: 10, Func. Count: 120, Neg. LLF: 145.6272773191608
Iteration: 11, Func. Count: 131, Neg. LLF: 145.3107053452451
Iteration: 12, Func. Count: 142, Neg. LLF: 145.23189217651506
Iteration: 13, Func. Count: 153, Neg. LLF: 145.20933490680778
Iteration: 14, Func. Count: 164, Neg. LLF: 145.18395538980076
Iteration: 15, Func. Count: 175, Neg. LLF: 145.18366627267488
Iteration: 16, Func. Count: 186, Neg. LLF: 145.18350731541656
Iteration: 17, Func. Count: 197, Neg. LLF: 145.1835061719796
Iteration: 18, Func. Count: 207, Neg. LLF: 145.1835062096482
Optimization terminated successfully (Exit mode 0)
Current function value: 145.1835061719796
Iterations: 18
Function evaluations: 207
Gradient evaluations: 18
Iteration: 1, Func. Count: 13, Neg. LLF: 524.1423368233958
Iteration: 2, Func. Count: 26, Neg. LLF: 12210936.099824896
Iteration: 3, Func. Count: 39, Neg. LLF: 165.1819238392642
Iteration: 4, Func. Count: 52, Neg. LLF: 304.38104607750734
Iteration: 5, Func. Count: 65, Neg. LLF: 151.71256429756542
Iteration: 6, Func. Count: 78, Neg. LLF: 148.9074812389926
Iteration: 7, Func. Count: 91, Neg. LLF: 146.6154292908215
Iteration: 8, Func. Count: 103, Neg. LLF: 152.63521392543038
Iteration: 9, Func. Count: 117, Neg. LLF: 153.68795644811843
Iteration: 10, Func. Count: 131, Neg. LLF: 150.4168041283675
Iteration: 11, Func. Count: 144, Neg. LLF: 145.7047884911313
Iteration: 12, Func. Count: 156, Neg. LLF: 145.41856646822265
Iteration: 13, Func. Count: 168, Neg. LLF: 145.32311445188773
Iteration: 14, Func. Count: 180, Neg. LLF: 145.23577906886894
Iteration: 15, Func. Count: 192, Neg. LLF: 145.20831739786865
Iteration: 16, Func. Count: 204, Neg. LLF: 145.185039481966
Iteration: 17, Func. Count: 216, Neg. LLF: 145.183851706178
Iteration: 18, Func. Count: 228, Neg. LLF: 145.18352836815416
Iteration: 19, Func. Count: 240, Neg. LLF: 145.18350630730205
Iteration: 20, Func. Count: 251, Neg. LLF: 145.18350619014882
Optimization terminated successfully (Exit mode 0)
Current function value: 145.18350630730205
Iterations: 20
Function evaluations: 251
Gradient evaluations: 20
Iteration: 1, Func. Count: 10, Neg. LLF: 162.17269791619387
Iteration: 2, Func. Count: 20, Neg. LLF: 156.64551668765168
Iteration: 3, Func. Count: 31, Neg. LLF: 157.63574207266709
Iteration: 4, Func. Count: 42, Neg. LLF: 156.05564636549713
Iteration: 5, Func. Count: 52, Neg. LLF: 155.97721762308697
Iteration: 6, Func. Count: 62, Neg. LLF: 154.479619078273
Iteration: 7, Func. Count: 71, Neg. LLF: 154.41516690349562
Iteration: 8, Func. Count: 81, Neg. LLF: 153.6652193923511
Iteration: 9, Func. Count: 90, Neg. LLF: 152.88719276303794
Iteration: 10, Func. Count: 99, Neg. LLF: 191.99683002387252
Iteration: 11, Func. Count: 109, Neg. LLF: 160.1975146814853
Iteration: 12, Func. Count: 119, Neg. LLF: 170.52591066526483
Iteration: 13, Func. Count: 129, Neg. LLF: 186.55358880190792
Iteration: 14, Func. Count: 139, Neg. LLF: 179.08738275560805
Iteration: 15, Func. Count: 149, Neg. LLF: 190.46541219169717
Iteration: 16, Func. Count: 159, Neg. LLF: 192.3993497569848
Iteration: 17, Func. Count: 169, Neg. LLF: 194.30197610226162
Iteration: 18, Func. Count: 179, Neg. LLF: 150.06876294120312
Iteration: 19, Func. Count: 189, Neg. LLF: 178.45193599813973
Iteration: 20, Func. Count: 199, Neg. LLF: 148.94055703396833
Iteration: 21, Func. Count: 208, Neg. LLF: 148.93400970721964
Iteration: 22, Func. Count: 217, Neg. LLF: 148.93252464502368
Iteration: 23, Func. Count: 226, Neg. LLF: 148.93056716966336
Iteration: 24, Func. Count: 235, Neg. LLF: 148.93052786933774
Iteration: 25, Func. Count: 244, Neg. LLF: 148.9305152212383
Iteration: 26, Func. Count: 252, Neg. LLF: 148.93051519514088
Optimization terminated successfully (Exit mode 0)
Current function value: 148.9305152212383
Iterations: 26
Function evaluations: 252
Gradient evaluations: 26
Iteration: 1, Func. Count: 11, Neg. LLF: 695.4808382063517
Iteration: 2, Func. Count: 22, Neg. LLF: 148.37717437753759
Iteration: 3, Func. Count: 33, Neg. LLF: 151.77667425497768
Iteration: 4, Func. Count: 44, Neg. LLF: 163.6699012218858
Iteration: 5, Func. Count: 55, Neg. LLF: 146.9818357762492
Iteration: 6, Func. Count: 66, Neg. LLF: 146.54833434307008
Iteration: 7, Func. Count: 76, Neg. LLF: 146.8447051888104
Iteration: 8, Func. Count: 87, Neg. LLF: 146.53653470207135
Iteration: 9, Func. Count: 98, Neg. LLF: 146.41993780077587
Iteration: 10, Func. Count: 108, Neg. LLF: 146.4196586811953
Iteration: 11, Func. Count: 118, Neg. LLF: 146.41960909572956
Iteration: 12, Func. Count: 128, Neg. LLF: 146.41960841365923
Optimization terminated successfully (Exit mode 0)
Current function value: 146.41960841365923
Iterations: 12
Function evaluations: 128
Gradient evaluations: 12
Iteration: 1, Func. Count: 12, Neg. LLF: 579.6340057326454
Iteration: 2, Func. Count: 24, Neg. LLF: 2831369.809405699
Iteration: 3, Func. Count: 36, Neg. LLF: 319.76910774730607
Iteration: 4, Func. Count: 48, Neg. LLF: 145.97407566665376
Iteration: 5, Func. Count: 59, Neg. LLF: 150.93243762838028
Iteration: 6, Func. Count: 71, Neg. LLF: 170.038939152479
Iteration: 7, Func. Count: 84, Neg. LLF: 146.18000715798578
Iteration: 8, Func. Count: 96, Neg. LLF: 145.6379823204414
Iteration: 9, Func. Count: 108, Neg. LLF: 145.13577457992352
Iteration: 10, Func. Count: 119, Neg. LLF: 145.12780570677032
Iteration: 11, Func. Count: 130, Neg. LLF: 145.1197465946953
Iteration: 12, Func. Count: 141, Neg. LLF: 145.11692260609877
Iteration: 13, Func. Count: 152, Neg. LLF: 145.1167267525768
Iteration: 14, Func. Count: 163, Neg. LLF: 145.11672317650175
Iteration: 15, Func. Count: 173, Neg. LLF: 145.11672298807426
Optimization terminated successfully (Exit mode 0)
Current function value: 145.11672317650175
Iterations: 15
Function evaluations: 173
Gradient evaluations: 15
Iteration: 1, Func. Count: 13, Neg. LLF: 526.5070259538631
Iteration: 2, Func. Count: 26, Neg. LLF: 11503871.724451039
Iteration: 3, Func. Count: 39, Neg. LLF: 151.66854502722035
Iteration: 4, Func. Count: 52, Neg. LLF: 159.63127800595396
Iteration: 5, Func. Count: 65, Neg. LLF: 169.61006360773905
Iteration: 6, Func. Count: 78, Neg. LLF: 147.07933881945507
Iteration: 7, Func. Count: 90, Neg. LLF: 149.98899730728047
Iteration: 8, Func. Count: 104, Neg. LLF: 147.8460440897918
Iteration: 9, Func. Count: 117, Neg. LLF: 145.73650222096768
Iteration: 10, Func. Count: 129, Neg. LLF: 145.5980817352146
Iteration: 11, Func. Count: 141, Neg. LLF: 145.55600312427583
Iteration: 12, Func. Count: 154, Neg. LLF: 145.3255424852017
Iteration: 13, Func. Count: 166, Neg. LLF: 145.16179050151203
Iteration: 14, Func. Count: 178, Neg. LLF: 145.13030338939225
Iteration: 15, Func. Count: 190, Neg. LLF: 145.11903204988178
Iteration: 16, Func. Count: 202, Neg. LLF: 145.1168821069517
Iteration: 17, Func. Count: 214, Neg. LLF: 145.11674944135686
Iteration: 18, Func. Count: 226, Neg. LLF: 145.11672912165514
Iteration: 19, Func. Count: 238, Neg. LLF: 145.11672468777388
Iteration: 20, Func. Count: 250, Neg. LLF: 145.1167211766851
Iteration: 21, Func. Count: 262, Neg. LLF: 145.1169249266145
Optimization terminated successfully (Exit mode 0)
Current function value: 145.1167211763666
Iterations: 22
Function evaluations: 264
Gradient evaluations: 21
Iteration: 1, Func. Count: 14, Neg. LLF: 500.18116633791675
Iteration: 2, Func. Count: 28, Neg. LLF: 11496305.307003733
Iteration: 3, Func. Count: 42, Neg. LLF: 152.41379588624918
Iteration: 4, Func. Count: 56, Neg. LLF: 274.9805760199339
Iteration: 5, Func. Count: 70, Neg. LLF: 154.96022963624978
Iteration: 6, Func. Count: 84, Neg. LLF: 151.2648129716189
Iteration: 7, Func. Count: 98, Neg. LLF: 146.96065615638926
Iteration: 8, Func. Count: 112, Neg. LLF: 146.51376741997535
Iteration: 9, Func. Count: 125, Neg. LLF: 146.38517426406486
Iteration: 10, Func. Count: 138, Neg. LLF: 147.85172404599186
Iteration: 11, Func. Count: 152, Neg. LLF: 146.2984057241145
Iteration: 12, Func. Count: 166, Neg. LLF: 146.09401777856485
Iteration: 13, Func. Count: 179, Neg. LLF: 145.98869470097566
Iteration: 14, Func. Count: 192, Neg. LLF: 145.9065098243284
Iteration: 15, Func. Count: 205, Neg. LLF: 145.87669720983575
Iteration: 16, Func. Count: 218, Neg. LLF: 145.87330915696143
Iteration: 17, Func. Count: 231, Neg. LLF: 145.8725776119905
Iteration: 18, Func. Count: 244, Neg. LLF: 145.8725186899371
Iteration: 19, Func. Count: 257, Neg. LLF: 145.87251542296045
Iteration: 20, Func. Count: 269, Neg. LLF: 145.87251530837418
Optimization terminated successfully (Exit mode 0)
Current function value: 145.87251542296045
Iterations: 20
Function evaluations: 269
Gradient evaluations: 20
Iteration: 1, Func. Count: 11, Neg. LLF: 164.482940539667
Iteration: 2, Func. Count: 22, Neg. LLF: 154.95943302546968
Iteration: 3, Func. Count: 33, Neg. LLF: 155.17210985223102
Iteration: 4, Func. Count: 44, Neg. LLF: 153.13208221276884
Iteration: 5, Func. Count: 54, Neg. LLF: 152.83138237204986
Iteration: 6, Func. Count: 64, Neg. LLF: 152.39771872824798
Iteration: 7, Func. Count: 74, Neg. LLF: 151.71819491345693
Iteration: 8, Func. Count: 84, Neg. LLF: 150.1864198946476
Iteration: 9, Func. Count: 94, Neg. LLF: 162.7404664949445
Iteration: 10, Func. Count: 105, Neg. LLF: 7749277.625232765
Iteration: 11, Func. Count: 116, Neg. LLF: 205.43875594809762
Iteration: 12, Func. Count: 127, Neg. LLF: 153.3664400717545
Iteration: 13, Func. Count: 138, Neg. LLF: 397.06811905498415
Iteration: 14, Func. Count: 149, Neg. LLF: 206.7797255304363
Iteration: 15, Func. Count: 160, Neg. LLF: 310.9149798437759
Iteration: 16, Func. Count: 171, Neg. LLF: 310.27148961370403
Iteration: 17, Func. Count: 182, Neg. LLF: 237.82804532956473
Iteration: 18, Func. Count: 193, Neg. LLF: 223.23984394266387
Iteration: 19, Func. Count: 204, Neg. LLF: 147.03804966285503
Iteration: 20, Func. Count: 215, Neg. LLF: 146.46119921924685
Iteration: 21, Func. Count: 225, Neg. LLF: 146.44349412373387
Iteration: 22, Func. Count: 235, Neg. LLF: 146.44174955151627
Iteration: 23, Func. Count: 245, Neg. LLF: 146.441322871223
Iteration: 24, Func. Count: 255, Neg. LLF: 146.44131979983206
Iteration: 25, Func. Count: 265, Neg. LLF: 146.44131294104915
Iteration: 26, Func. Count: 274, Neg. LLF: 146.44131290309602
Optimization terminated successfully (Exit mode 0)
Current function value: 146.44131294104915
Iterations: 26
Function evaluations: 274
Gradient evaluations: 26
Iteration: 1, Func. Count: 12, Neg. LLF: 452.84660700416043
Iteration: 2, Func. Count: 24, Neg. LLF: 12239544.844999125
Iteration: 3, Func. Count: 37, Neg. LLF: 153.68413404112462
Iteration: 4, Func. Count: 49, Neg. LLF: 152.82861210418147
Iteration: 5, Func. Count: 61, Neg. LLF: 704.2232048275226
Iteration: 6, Func. Count: 73, Neg. LLF: 146.71519962673736
Iteration: 7, Func. Count: 84, Neg. LLF: 148.25464424917593
Iteration: 8, Func. Count: 96, Neg. LLF: 147.15250815841227
Iteration: 9, Func. Count: 108, Neg. LLF: 146.4456254554949
Iteration: 10, Func. Count: 119, Neg. LLF: 146.42310961352973
Iteration: 11, Func. Count: 130, Neg. LLF: 146.4220212076251
Iteration: 12, Func. Count: 141, Neg. LLF: 146.4196581135745
Iteration: 13, Func. Count: 152, Neg. LLF: 146.41961121311843
Iteration: 14, Func. Count: 163, Neg. LLF: 146.41960840393264
Iteration: 15, Func. Count: 173, Neg. LLF: 146.41960828993416
Optimization terminated successfully (Exit mode 0)
Current function value: 146.41960840393264
Iterations: 15
Function evaluations: 173
Gradient evaluations: 15
Iteration: 1, Func. Count: 13, Neg. LLF: 428.54649872614726
Iteration: 2, Func. Count: 26, Neg. LLF: 2842783.237849961
Iteration: 3, Func. Count: 39, Neg. LLF: 153.2791869527175
Iteration: 4, Func. Count: 52, Neg. LLF: 146.61872861962368
Iteration: 5, Func. Count: 64, Neg. LLF: 163.83503386491049
Iteration: 6, Func. Count: 77, Neg. LLF: 293.07193360983786
Iteration: 7, Func. Count: 90, Neg. LLF: 167.65546634936828
Iteration: 8, Func. Count: 103, Neg. LLF: 152.79509552240455
Iteration: 9, Func. Count: 116, Neg. LLF: 144.83775805215453
Iteration: 10, Func. Count: 128, Neg. LLF: 144.82004391648314
Iteration: 11, Func. Count: 140, Neg. LLF: 144.81507589156055
Iteration: 12, Func. Count: 152, Neg. LLF: 144.81155012907834
Iteration: 13, Func. Count: 164, Neg. LLF: 144.8102634943481
Iteration: 14, Func. Count: 176, Neg. LLF: 144.8097065239123
Iteration: 15, Func. Count: 188, Neg. LLF: 144.80945272464916
Iteration: 16, Func. Count: 200, Neg. LLF: 144.80940381749937
Iteration: 17, Func. Count: 212, Neg. LLF: 144.8093993230065
Iteration: 18, Func. Count: 223, Neg. LLF: 144.80939916069656
Optimization terminated successfully (Exit mode 0)
Current function value: 144.8093993230065
Iterations: 18
Function evaluations: 223
Gradient evaluations: 18
Iteration: 1, Func. Count: 14, Neg. LLF: 255.41010103819474
Iteration: 2, Func. Count: 28, Neg. LLF: 203.90907843228396
Iteration: 3, Func. Count: 42, Neg. LLF: 251.82934624522764
Iteration: 4, Func. Count: 56, Neg. LLF: 173.45048787582516
Iteration: 5, Func. Count: 70, Neg. LLF: 616.7673906744119
Iteration: 6, Func. Count: 84, Neg. LLF: 155.92697922515032
Iteration: 7, Func. Count: 98, Neg. LLF: 148.85418682315105
Iteration: 8, Func. Count: 112, Neg. LLF: 146.25803963351146
Iteration: 9, Func. Count: 125, Neg. LLF: 145.84057291414675
Iteration: 10, Func. Count: 138, Neg. LLF: 145.80723858972195
Iteration: 11, Func. Count: 151, Neg. LLF: 145.79089085914674
Iteration: 12, Func. Count: 164, Neg. LLF: 145.78347176095286
Iteration: 13, Func. Count: 177, Neg. LLF: 145.78246654658352
Iteration: 14, Func. Count: 190, Neg. LLF: 145.78239390304591
Iteration: 15, Func. Count: 203, Neg. LLF: 145.78238622552794
Iteration: 16, Func. Count: 215, Neg. LLF: 145.78238617843465
Optimization terminated successfully (Exit mode 0)
Current function value: 145.78238622552794
Iterations: 16
Function evaluations: 215
Gradient evaluations: 16
Iteration: 1, Func. Count: 15, Neg. LLF: 189.31752409738525
Iteration: 2, Func. Count: 30, Neg. LLF: 204.08307066453696
Iteration: 3, Func. Count: 45, Neg. LLF: 237.23750935059292
Iteration: 4, Func. Count: 60, Neg. LLF: 357807.70877640357
Iteration: 5, Func. Count: 75, Neg. LLF: 150.34657002201288
Iteration: 6, Func. Count: 90, Neg. LLF: 147.17886610241385
Iteration: 7, Func. Count: 105, Neg. LLF: 149.7760116061159
Iteration: 8, Func. Count: 120, Neg. LLF: 145.2914353317983
Iteration: 9, Func. Count: 134, Neg. LLF: 147.07295132336864
Iteration: 10, Func. Count: 149, Neg. LLF: 149.13818195521984
Iteration: 11, Func. Count: 164, Neg. LLF: 144.6966952640073
Iteration: 12, Func. Count: 178, Neg. LLF: 144.6682974456934
Iteration: 13, Func. Count: 193, Neg. LLF: 144.56962284796404
Iteration: 14, Func. Count: 207, Neg. LLF: 144.54565019667092
Iteration: 15, Func. Count: 221, Neg. LLF: 144.55969304056592
Iteration: 16, Func. Count: 236, Neg. LLF: 144.5420614211059
Iteration: 17, Func. Count: 250, Neg. LLF: 144.54199150311882
Iteration: 18, Func. Count: 263, Neg. LLF: 144.54199137133799
Optimization terminated successfully (Exit mode 0)
Current function value: 144.54199150311882
Iterations: 18
Function evaluations: 263
Gradient evaluations: 18
Iteration: 1, Func. Count: 12, Neg. LLF: 159.22630557065702
Iteration: 2, Func. Count: 24, Neg. LLF: 155.75625824334122
Iteration: 3, Func. Count: 36, Neg. LLF: 159.2622171366697
Iteration: 4, Func. Count: 49, Neg. LLF: 154.03655132951383
Iteration: 5, Func. Count: 61, Neg. LLF: 152.7909839817643
Iteration: 6, Func. Count: 72, Neg. LLF: 152.32695077118888
Iteration: 7, Func. Count: 83, Neg. LLF: 151.64260481089767
Iteration: 8, Func. Count: 94, Neg. LLF: 151.0311080061088
Iteration: 9, Func. Count: 105, Neg. LLF: 164.34801133853574
Iteration: 10, Func. Count: 117, Neg. LLF: 157.13399839087833
Iteration: 11, Func. Count: 129, Neg. LLF: 257.36877413788613
Iteration: 12, Func. Count: 141, Neg. LLF: 155.58385608679134
Iteration: 13, Func. Count: 153, Neg. LLF: 160.49278965055709
Iteration: 14, Func. Count: 165, Neg. LLF: 170.13439101105038
Iteration: 15, Func. Count: 177, Neg. LLF: 176.3177681108612
Iteration: 16, Func. Count: 189, Neg. LLF: 196.0594916995318
Iteration: 17, Func. Count: 201, Neg. LLF: 216.5055006462422
Iteration: 18, Func. Count: 213, Neg. LLF: 265.6816373755789
Iteration: 19, Func. Count: 225, Neg. LLF: 240.86652003018244
Iteration: 20, Func. Count: 237, Neg. LLF: 397.8101409826359
Iteration: 21, Func. Count: 249, Neg. LLF: 243.4345973387171
Iteration: 22, Func. Count: 261, Neg. LLF: 247.36727687973732
Iteration: 23, Func. Count: 273, Neg. LLF: 146.57283205631606
Iteration: 24, Func. Count: 285, Neg. LLF: 144.84750234967484
Iteration: 25, Func. Count: 297, Neg. LLF: 145.24961492377133
Iteration: 26, Func. Count: 309, Neg. LLF: 144.7270774704348
Iteration: 27, Func. Count: 321, Neg. LLF: 144.61375776866072
Iteration: 28, Func. Count: 332, Neg. LLF: 144.60919577349142
Iteration: 29, Func. Count: 343, Neg. LLF: 144.60900390043645
Iteration: 30, Func. Count: 354, Neg. LLF: 144.60899018901705
Iteration: 31, Func. Count: 365, Neg. LLF: 144.60898598683653
Iteration: 32, Func. Count: 376, Neg. LLF: 144.60898456733094
Iteration: 33, Func. Count: 386, Neg. LLF: 144.60898440999753
Optimization terminated successfully (Exit mode 0)
Current function value: 144.60898456733094
Iterations: 33
Function evaluations: 386
Gradient evaluations: 33
Iteration: 1, Func. Count: 13, Neg. LLF: 367.5508082128501
Iteration: 2, Func. Count: 26, Neg. LLF: 12096254.869092738
Iteration: 3, Func. Count: 40, Neg. LLF: 153.41825782961746
Iteration: 4, Func. Count: 53, Neg. LLF: 147.00609447154378
Iteration: 5, Func. Count: 65, Neg. LLF: 149.7871781479504
Iteration: 6, Func. Count: 78, Neg. LLF: 150.73870745294275
Iteration: 7, Func. Count: 92, Neg. LLF: 150.67677525569928
Iteration: 8, Func. Count: 105, Neg. LLF: 146.65671641070287
Iteration: 9, Func. Count: 118, Neg. LLF: 146.04279255490218
Iteration: 10, Func. Count: 130, Neg. LLF: 145.94912804729844
Iteration: 11, Func. Count: 142, Neg. LLF: 145.57311259754545
Iteration: 12, Func. Count: 154, Neg. LLF: 146.69259974050829
Iteration: 13, Func. Count: 169, Neg. LLF: 147.18599394186904
Iteration: 14, Func. Count: 182, Neg. LLF: 144.66803784765253
Iteration: 15, Func. Count: 194, Neg. LLF: 144.636892677281
Iteration: 16, Func. Count: 206, Neg. LLF: 144.62254633578337
Iteration: 17, Func. Count: 218, Neg. LLF: 144.61473391215776
Iteration: 18, Func. Count: 230, Neg. LLF: 144.6117723272365
Iteration: 19, Func. Count: 242, Neg. LLF: 144.61040341696742
Iteration: 20, Func. Count: 254, Neg. LLF: 144.60966677706628
Iteration: 21, Func. Count: 266, Neg. LLF: 144.6092463371144
Iteration: 22, Func. Count: 278, Neg. LLF: 144.60905089858898
Iteration: 23, Func. Count: 290, Neg. LLF: 144.60899343298266
Iteration: 24, Func. Count: 302, Neg. LLF: 144.60898623424075
Iteration: 25, Func. Count: 314, Neg. LLF: 144.60898523306034
Iteration: 26, Func. Count: 325, Neg. LLF: 144.60898533909835
Optimization terminated successfully (Exit mode 0)
Current function value: 144.60898523306034
Iterations: 26
Function evaluations: 325
Gradient evaluations: 26
Iteration: 1, Func. Count: 14, Neg. LLF: 356.9878135379303
Iteration: 2, Func. Count: 28, Neg. LLF: 2825606.777818369
Iteration: 3, Func. Count: 42, Neg. LLF: 383546.5919229272
Iteration: 4, Func. Count: 56, Neg. LLF: 149.9231093259799
Iteration: 5, Func. Count: 70, Neg. LLF: 150.60918176465213
Iteration: 6, Func. Count: 84, Neg. LLF: 147.7105132525381
Iteration: 7, Func. Count: 98, Neg. LLF: 147.9706721232621
Iteration: 8, Func. Count: 112, Neg. LLF: 146.4297277650172
Iteration: 9, Func. Count: 126, Neg. LLF: 146.70538479285977
Iteration: 10, Func. Count: 140, Neg. LLF: 147.0792161212458
Iteration: 11, Func. Count: 154, Neg. LLF: 144.79211151210214
Iteration: 12, Func. Count: 168, Neg. LLF: 144.5001410730758
Iteration: 13, Func. Count: 182, Neg. LLF: 144.94701253178218
Iteration: 14, Func. Count: 196, Neg. LLF: 143.95999251473225
Iteration: 15, Func. Count: 209, Neg. LLF: 143.91875505937583
Iteration: 16, Func. Count: 222, Neg. LLF: 143.8902080342127
Iteration: 17, Func. Count: 235, Neg. LLF: 143.89277926722312
Iteration: 18, Func. Count: 249, Neg. LLF: 143.8860778367251
Iteration: 19, Func. Count: 262, Neg. LLF: 143.8859771580457
Iteration: 20, Func. Count: 275, Neg. LLF: 143.88596401954203
Iteration: 21, Func. Count: 288, Neg. LLF: 143.88596265428518
Iteration: 22, Func. Count: 301, Neg. LLF: 143.88606600472048
Optimization terminated successfully (Exit mode 0)
Current function value: 143.88596264115307
Iterations: 23
Function evaluations: 303
Gradient evaluations: 22
Iteration: 1, Func. Count: 15, Neg. LLF: 250.87289931495332
Iteration: 2, Func. Count: 30, Neg. LLF: 203.40249871412072
Iteration: 3, Func. Count: 45, Neg. LLF: 559.8173985360812
Iteration: 4, Func. Count: 60, Neg. LLF: 163.29004750332408
Iteration: 5, Func. Count: 75, Neg. LLF: 7602.283014498369
Iteration: 6, Func. Count: 90, Neg. LLF: 193.39726417483956
Iteration: 7, Func. Count: 105, Neg. LLF: 553.7414343081601
Iteration: 8, Func. Count: 120, Neg. LLF: 153.2034562431515
Iteration: 9, Func. Count: 135, Neg. LLF: 2569.993530444903
Iteration: 10, Func. Count: 150, Neg. LLF: 145.84610038101215
Iteration: 11, Func. Count: 164, Neg. LLF: 145.4644451803063
Iteration: 12, Func. Count: 179, Neg. LLF: 187.3967274458067
Iteration: 13, Func. Count: 194, Neg. LLF: 144.59634658168818
Iteration: 14, Func. Count: 209, Neg. LLF: 144.41718325256042
Iteration: 15, Func. Count: 224, Neg. LLF: 144.02654601854698
Iteration: 16, Func. Count: 238, Neg. LLF: 143.91302825831062
Iteration: 17, Func. Count: 252, Neg. LLF: 143.91796113059215
Iteration: 18, Func. Count: 267, Neg. LLF: 143.8896213474996
Iteration: 19, Func. Count: 281, Neg. LLF: 143.88683302848386
Iteration: 20, Func. Count: 295, Neg. LLF: 143.88604415904703
Iteration: 21, Func. Count: 309, Neg. LLF: 143.88597927523932
Iteration: 22, Func. Count: 323, Neg. LLF: 143.88596318636667
Iteration: 23, Func. Count: 336, Neg. LLF: 143.8859633699666
Optimization terminated successfully (Exit mode 0)
Current function value: 143.88596318636667
Iterations: 23
Function evaluations: 336
Gradient evaluations: 23
Iteration: 1, Func. Count: 16, Neg. LLF: 191.71642952322696
Iteration: 2, Func. Count: 32, Neg. LLF: 205.75845620831666
Iteration: 3, Func. Count: 48, Neg. LLF: 185.37741574610237
Iteration: 4, Func. Count: 64, Neg. LLF: 313419.0865956039
Iteration: 5, Func. Count: 80, Neg. LLF: 1703689.9604121184
Iteration: 6, Func. Count: 96, Neg. LLF: 223.98863353509347
Iteration: 7, Func. Count: 112, Neg. LLF: 304.6710908193587
Iteration: 8, Func. Count: 128, Neg. LLF: 147.8510922021092
Iteration: 9, Func. Count: 144, Neg. LLF: 3648.936540218978
Iteration: 10, Func. Count: 160, Neg. LLF: 149.6859067600747
Iteration: 11, Func. Count: 176, Neg. LLF: 145.35697477270614
Iteration: 12, Func. Count: 191, Neg. LLF: 144.61917760345426
Iteration: 13, Func. Count: 207, Neg. LLF: 154.89339829145132
Iteration: 14, Func. Count: 223, Neg. LLF: 144.68848594053347
Iteration: 15, Func. Count: 239, Neg. LLF: 144.27159104332674
Iteration: 16, Func. Count: 255, Neg. LLF: 143.9586621552858
Iteration: 17, Func. Count: 270, Neg. LLF: 143.91255224977442
Iteration: 18, Func. Count: 285, Neg. LLF: 143.89390131229771
Iteration: 19, Func. Count: 300, Neg. LLF: 143.8873806622211
Iteration: 20, Func. Count: 315, Neg. LLF: 143.88615492514174
Iteration: 21, Func. Count: 330, Neg. LLF: 143.88597576824333
Iteration: 22, Func. Count: 345, Neg. LLF: 143.8859640212387
Iteration: 23, Func. Count: 360, Neg. LLF: 143.8859628556257
Iteration: 24, Func. Count: 374, Neg. LLF: 143.88596296147935
Optimization terminated successfully (Exit mode 0)
Current function value: 143.8859628556257
Iterations: 24
Function evaluations: 374
Gradient evaluations: 24
Iteration: 1, Func. Count: 7, Neg. LLF: 562.6608559641343
Iteration: 2, Func. Count: 14, Neg. LLF: 12015599.361086048
Iteration: 3, Func. Count: 21, Neg. LLF: 153.44036062484815
Iteration: 4, Func. Count: 28, Neg. LLF: 148.47591945290696
Iteration: 5, Func. Count: 35, Neg. LLF: 146.76489651197957
Iteration: 6, Func. Count: 41, Neg. LLF: 146.14728942954886
Iteration: 7, Func. Count: 47, Neg. LLF: 155.1134444350208
Iteration: 8, Func. Count: 55, Neg. LLF: 145.46673365727492
Iteration: 9, Func. Count: 61, Neg. LLF: 145.67621768698518
Iteration: 10, Func. Count: 68, Neg. LLF: 145.3508310760619
Iteration: 11, Func. Count: 74, Neg. LLF: 145.3444393652627
Iteration: 12, Func. Count: 80, Neg. LLF: 145.3436558608435
Iteration: 13, Func. Count: 86, Neg. LLF: 145.34355419140223
Iteration: 14, Func. Count: 92, Neg. LLF: 145.3435528463888
Iteration: 15, Func. Count: 97, Neg. LLF: 145.3435526342012
Optimization terminated successfully (Exit mode 0)
Current function value: 145.3435528463888
Iterations: 15
Function evaluations: 97
Gradient evaluations: 15
Iteration: 1, Func. Count: 5, Neg. LLF: 163.415991473434
Iteration: 2, Func. Count: 10, Neg. LLF: 163.38366397741424
Iteration: 3, Func. Count: 15, Neg. LLF: 162.20677834285786
Iteration: 4, Func. Count: 19, Neg. LLF: 161.7531789817796
Iteration: 5, Func. Count: 23, Neg. LLF: 161.4712906936126
Iteration: 6, Func. Count: 27, Neg. LLF: 161.4138873701363
Iteration: 7, Func. Count: 31, Neg. LLF: 161.39516103668979
Iteration: 8, Func. Count: 35, Neg. LLF: 161.38252754211132
Iteration: 9, Func. Count: 39, Neg. LLF: 161.37291984021795
Iteration: 10, Func. Count: 43, Neg. LLF: 161.36930535807747
Iteration: 11, Func. Count: 47, Neg. LLF: 161.36821273687391
Iteration: 12, Func. Count: 51, Neg. LLF: 161.36820294039353
Iteration: 13, Func. Count: 54, Neg. LLF: 161.3682029403931
Optimization terminated successfully (Exit mode 0)
Current function value: 161.36820294039353
Iterations: 13
Function evaluations: 54
Gradient evaluations: 13
Iteration: 1, Func. Count: 6, Neg. LLF: 522.2676663865718
Iteration: 2, Func. Count: 12, Neg. LLF: 155.23321012589645
Iteration: 3, Func. Count: 18, Neg. LLF: 154.32436760821398
Iteration: 4, Func. Count: 23, Neg. LLF: 154.30593037432863
Iteration: 5, Func. Count: 28, Neg. LLF: 154.30379203857876
Iteration: 6, Func. Count: 33, Neg. LLF: 154.30373889448214
Iteration: 7, Func. Count: 38, Neg. LLF: 154.30373718725554
Iteration: 8, Func. Count: 42, Neg. LLF: 154.3037369856047
Optimization terminated successfully (Exit mode 0)
Current function value: 154.30373718725554
Iterations: 8
Function evaluations: 42
Gradient evaluations: 8
Iteration: 1, Func. Count: 7, Neg. LLF: 407.9264191818837
Iteration: 2, Func. Count: 14, Neg. LLF: 154.66276771763242
Iteration: 3, Func. Count: 20, Neg. LLF: 155.74505145270638
Iteration: 4, Func. Count: 27, Neg. LLF: 154.74662332434676
Iteration: 5, Func. Count: 34, Neg. LLF: 154.31163954290912
Iteration: 6, Func. Count: 40, Neg. LLF: 154.3047436852706
Iteration: 7, Func. Count: 46, Neg. LLF: 154.30376170768096
Iteration: 8, Func. Count: 52, Neg. LLF: 154.3037371745315
Iteration: 9, Func. Count: 57, Neg. LLF: 154.30373698155572
Optimization terminated successfully (Exit mode 0)
Current function value: 154.3037371745315
Iterations: 9
Function evaluations: 57
Gradient evaluations: 9
Iteration: 1, Func. Count: 8, Neg. LLF: 228.65784440436005
Iteration: 2, Func. Count: 16, Neg. LLF: 249.2501015950181
Iteration: 3, Func. Count: 25, Neg. LLF: 158.90853744580747
Iteration: 4, Func. Count: 33, Neg. LLF: 154.9277707649261
Iteration: 5, Func. Count: 40, Neg. LLF: 154.79388084722714
Iteration: 6, Func. Count: 47, Neg. LLF: 154.453806179165
Iteration: 7, Func. Count: 54, Neg. LLF: 154.20913507202846
Iteration: 8, Func. Count: 61, Neg. LLF: 154.0290504366197
Iteration: 9, Func. Count: 68, Neg. LLF: 153.74492651376192
Iteration: 10, Func. Count: 75, Neg. LLF: 153.71342497623826
Iteration: 11, Func. Count: 82, Neg. LLF: 153.69859751837467
Iteration: 12, Func. Count: 89, Neg. LLF: 153.69787386336458
Iteration: 13, Func. Count: 96, Neg. LLF: 153.69770794975423
Iteration: 14, Func. Count: 103, Neg. LLF: 153.69770552506006
Iteration: 15, Func. Count: 109, Neg. LLF: 153.69770553013694
Optimization terminated successfully (Exit mode 0)
Current function value: 153.69770552506006
Iterations: 15
Function evaluations: 109
Gradient evaluations: 15
Iteration: 1, Func. Count: 9, Neg. LLF: 225.57788088894665
Iteration: 2, Func. Count: 18, Neg. LLF: 243.68563499865485
Iteration: 3, Func. Count: 27, Neg. LLF: 159.38208690768997
Iteration: 4, Func. Count: 36, Neg. LLF: 154.81536307084022
Iteration: 5, Func. Count: 44, Neg. LLF: 158.14846175973557
Iteration: 6, Func. Count: 53, Neg. LLF: 154.34754557119595
Iteration: 7, Func. Count: 61, Neg. LLF: 154.1690549002227
Iteration: 8, Func. Count: 69, Neg. LLF: 154.04847458544094
Iteration: 9, Func. Count: 77, Neg. LLF: 154.02266635728182
Iteration: 10, Func. Count: 85, Neg. LLF: 153.99790286072553
Iteration: 11, Func. Count: 93, Neg. LLF: 153.99529478684366
Iteration: 12, Func. Count: 101, Neg. LLF: 153.99473861246491
Iteration: 13, Func. Count: 109, Neg. LLF: 153.9947020432538
Iteration: 14, Func. Count: 117, Neg. LLF: 153.9946994190603
Iteration: 15, Func. Count: 124, Neg. LLF: 153.9946992661547
Optimization terminated successfully (Exit mode 0)
Current function value: 153.9946994190603
Iterations: 15
Function evaluations: 124
Gradient evaluations: 15
Iteration: 1, Func. Count: 6, Neg. LLF: 162.36021936439585
Iteration: 2, Func. Count: 12, Neg. LLF: 169.72375302434554
Iteration: 3, Func. Count: 18, Neg. LLF: 159.67661492655282
Iteration: 4, Func. Count: 24, Neg. LLF: 159.2659836327101
Iteration: 5, Func. Count: 29, Neg. LLF: 159.26495122347313
Iteration: 6, Func. Count: 34, Neg. LLF: 159.26333510518612
Iteration: 7, Func. Count: 39, Neg. LLF: 159.26216718713846
Iteration: 8, Func. Count: 44, Neg. LLF: 159.26171535101471
Iteration: 9, Func. Count: 49, Neg. LLF: 159.26154253489761
Iteration: 10, Func. Count: 54, Neg. LLF: 159.26129642186464
Iteration: 11, Func. Count: 59, Neg. LLF: 159.2609746722271
Iteration: 12, Func. Count: 64, Neg. LLF: 159.26074522183163
Iteration: 13, Func. Count: 69, Neg. LLF: 159.26068094124145
Iteration: 14, Func. Count: 74, Neg. LLF: 159.26067541640873
Iteration: 15, Func. Count: 78, Neg. LLF: 159.26067541640438
Optimization terminated successfully (Exit mode 0)
Current function value: 159.26067541640873
Iterations: 15
Function evaluations: 78
Gradient evaluations: 15
Iteration: 1, Func. Count: 7, Neg. LLF: 417.73394309352307
Iteration: 2, Func. Count: 14, Neg. LLF: 156.38514943352908
Iteration: 3, Func. Count: 21, Neg. LLF: 154.3147881327591
Iteration: 4, Func. Count: 27, Neg. LLF: 155.95706390887037
Iteration: 5, Func. Count: 34, Neg. LLF: 154.1922995282161
Iteration: 6, Func. Count: 40, Neg. LLF: 154.19081627192617
Iteration: 7, Func. Count: 46, Neg. LLF: 154.190798158614
Iteration: 8, Func. Count: 51, Neg. LLF: 154.19079799107874
Optimization terminated successfully (Exit mode 0)
Current function value: 154.190798158614
Iterations: 8
Function evaluations: 51
Gradient evaluations: 8
Iteration: 1, Func. Count: 8, Neg. LLF: 236.26363840082422
Iteration: 2, Func. Count: 16, Neg. LLF: 271.0373977066306
Iteration: 3, Func. Count: 25, Neg. LLF: 175.00492194356463
Iteration: 4, Func. Count: 33, Neg. LLF: 154.82228527152722
Iteration: 5, Func. Count: 40, Neg. LLF: 154.49866383445126
Iteration: 6, Func. Count: 47, Neg. LLF: 154.25921290740467
Iteration: 7, Func. Count: 54, Neg. LLF: 154.00324964728165
Iteration: 8, Func. Count: 61, Neg. LLF: 153.81719565094545
Iteration: 9, Func. Count: 68, Neg. LLF: 153.81199726668132
Iteration: 10, Func. Count: 76, Neg. LLF: 153.7318489663614
Iteration: 11, Func. Count: 83, Neg. LLF: 153.69487772490342
Iteration: 12, Func. Count: 90, Neg. LLF: 153.68828580988682
Iteration: 13, Func. Count: 97, Neg. LLF: 153.68663083890465
Iteration: 14, Func. Count: 104, Neg. LLF: 153.68633593258838
Iteration: 15, Func. Count: 111, Neg. LLF: 153.68630779668837
Iteration: 16, Func. Count: 118, Neg. LLF: 153.68630725150445
Optimization terminated successfully (Exit mode 0)
Current function value: 153.68630725150445
Iterations: 16
Function evaluations: 118
Gradient evaluations: 16
Iteration: 1, Func. Count: 9, Neg. LLF: 186.6564379876171
Iteration: 2, Func. Count: 18, Neg. LLF: 157.94230208166033
Iteration: 3, Func. Count: 27, Neg. LLF: 153.960564381357
Iteration: 4, Func. Count: 35, Neg. LLF: 154.5905034104866
Iteration: 5, Func. Count: 44, Neg. LLF: 169.12993480843986
Iteration: 6, Func. Count: 53, Neg. LLF: 153.52728618091496
Iteration: 7, Func. Count: 61, Neg. LLF: 153.4314654908651
Iteration: 8, Func. Count: 69, Neg. LLF: 153.4207750042272
Iteration: 9, Func. Count: 77, Neg. LLF: 153.40670280826103
Iteration: 10, Func. Count: 85, Neg. LLF: 153.403715769162
Iteration: 11, Func. Count: 93, Neg. LLF: 153.40253265219357
Iteration: 12, Func. Count: 101, Neg. LLF: 153.4024390744464
Iteration: 13, Func. Count: 108, Neg. LLF: 153.40243894648054
Optimization terminated successfully (Exit mode 0)
Current function value: 153.4024390744464
Iterations: 13
Function evaluations: 108
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 183.08843221419096
Iteration: 2, Func. Count: 20, Neg. LLF: 259.78551782759166
Iteration: 3, Func. Count: 30, Neg. LLF: 158.2706142978229
Iteration: 4, Func. Count: 40, Neg. LLF: 161.09297743664945
Iteration: 5, Func. Count: 50, Neg. LLF: 153.9099805172636
Iteration: 6, Func. Count: 59, Neg. LLF: 153.70404381986015
Iteration: 7, Func. Count: 69, Neg. LLF: 158.1671781572781
Iteration: 8, Func. Count: 79, Neg. LLF: 153.40258074595397
Iteration: 9, Func. Count: 89, Neg. LLF: 153.2224805708889
Iteration: 10, Func. Count: 98, Neg. LLF: 153.19750314248057
Iteration: 11, Func. Count: 107, Neg. LLF: 153.18623902569976
Iteration: 12, Func. Count: 116, Neg. LLF: 153.18433132514193
Iteration: 13, Func. Count: 125, Neg. LLF: 153.18417318991735
Iteration: 14, Func. Count: 134, Neg. LLF: 153.1841563807639
Iteration: 15, Func. Count: 143, Neg. LLF: 153.1841465338794
Iteration: 16, Func. Count: 152, Neg. LLF: 153.18414571317132
Optimization terminated successfully (Exit mode 0)
Current function value: 153.18414571317132
Iterations: 16
Function evaluations: 152
Gradient evaluations: 16
Iteration: 1, Func. Count: 7, Neg. LLF: 163.55198081725425
Iteration: 2, Func. Count: 14, Neg. LLF: 163.68877619348652
Iteration: 3, Func. Count: 22, Neg. LLF: 162.24220995539662
Iteration: 4, Func. Count: 29, Neg. LLF: 158.0772033657363
Iteration: 5, Func. Count: 36, Neg. LLF: 157.8359508800426
Iteration: 6, Func. Count: 42, Neg. LLF: 157.3680724901728
Iteration: 7, Func. Count: 48, Neg. LLF: 156.5389706689029
Iteration: 8, Func. Count: 54, Neg. LLF: 156.3201245701887
Iteration: 9, Func. Count: 60, Neg. LLF: 156.2925172081972
Iteration: 10, Func. Count: 66, Neg. LLF: 156.29070119123799
Iteration: 11, Func. Count: 72, Neg. LLF: 156.28976539922584
Iteration: 12, Func. Count: 78, Neg. LLF: 156.28963920473137
Iteration: 13, Func. Count: 84, Neg. LLF: 156.289606671324
Iteration: 14, Func. Count: 89, Neg. LLF: 156.28960666165025
Optimization terminated successfully (Exit mode 0)
Current function value: 156.289606671324
Iterations: 14
Function evaluations: 89
Gradient evaluations: 14
Iteration: 1, Func. Count: 8, Neg. LLF: 238.97053806009848
Iteration: 2, Func. Count: 16, Neg. LLF: 155.20279431005383
Iteration: 3, Func. Count: 23, Neg. LLF: 156.26337092623828
Iteration: 4, Func. Count: 31, Neg. LLF: 155.65166628061257
Iteration: 5, Func. Count: 39, Neg. LLF: 154.4139134372076
Iteration: 6, Func. Count: 46, Neg. LLF: 155.25540152052682
Iteration: 7, Func. Count: 54, Neg. LLF: 154.22275953007247
Iteration: 8, Func. Count: 61, Neg. LLF: 154.19471998762057
Iteration: 9, Func. Count: 68, Neg. LLF: 154.19204600798912
Iteration: 10, Func. Count: 75, Neg. LLF: 154.19132652766595
Iteration: 11, Func. Count: 82, Neg. LLF: 154.19082815746847
Iteration: 12, Func. Count: 89, Neg. LLF: 154.1908014328944
Iteration: 13, Func. Count: 96, Neg. LLF: 154.19079802560196
Iteration: 14, Func. Count: 102, Neg. LLF: 154.1907978578055
Optimization terminated successfully (Exit mode 0)
Current function value: 154.19079802560196
Iterations: 14
Function evaluations: 102
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 233.22395987225633
Iteration: 2, Func. Count: 18, Neg. LLF: 267.62740404241987
Iteration: 3, Func. Count: 28, Neg. LLF: 172.92925426153155
Iteration: 4, Func. Count: 37, Neg. LLF: 167.6301963026289
Iteration: 5, Func. Count: 46, Neg. LLF: 154.03328366524562
Iteration: 6, Func. Count: 54, Neg. LLF: 153.7760585196181
Iteration: 7, Func. Count: 62, Neg. LLF: 153.8908959608685
Iteration: 8, Func. Count: 71, Neg. LLF: 153.59951209452558
Iteration: 9, Func. Count: 79, Neg. LLF: 153.58311222627717
Iteration: 10, Func. Count: 87, Neg. LLF: 153.5616613527756
Iteration: 11, Func. Count: 95, Neg. LLF: 153.56046387241952
Iteration: 12, Func. Count: 103, Neg. LLF: 153.56021356508137
Iteration: 13, Func. Count: 111, Neg. LLF: 153.5601989485096
Iteration: 14, Func. Count: 119, Neg. LLF: 153.56019729623438
Iteration: 15, Func. Count: 126, Neg. LLF: 153.5601970996875
Optimization terminated successfully (Exit mode 0)
Current function value: 153.56019729623438
Iterations: 15
Function evaluations: 126
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 184.71548318975755
Iteration: 2, Func. Count: 20, Neg. LLF: 160.0979725920532
Iteration: 3, Func. Count: 30, Neg. LLF: 166.95529460530008
Iteration: 4, Func. Count: 40, Neg. LLF: 152.9765960331537
Iteration: 5, Func. Count: 49, Neg. LLF: 152.63668433688065
Iteration: 6, Func. Count: 58, Neg. LLF: 152.72440228327815
Iteration: 7, Func. Count: 68, Neg. LLF: 152.13900789505453
Iteration: 8, Func. Count: 77, Neg. LLF: 152.0889900924253
Iteration: 9, Func. Count: 86, Neg. LLF: 152.08025094111824
Iteration: 10, Func. Count: 95, Neg. LLF: 152.07073685424436
Iteration: 11, Func. Count: 104, Neg. LLF: 152.06740562411176
Iteration: 12, Func. Count: 113, Neg. LLF: 152.0649986682043
Iteration: 13, Func. Count: 122, Neg. LLF: 152.06492100396906
Iteration: 14, Func. Count: 131, Neg. LLF: 152.06491883818566
Iteration: 15, Func. Count: 139, Neg. LLF: 152.06491875053086
Optimization terminated successfully (Exit mode 0)
Current function value: 152.06491883818566
Iterations: 15
Function evaluations: 139
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 181.85821872008367
Iteration: 2, Func. Count: 22, Neg. LLF: 202.75981978064897
Iteration: 3, Func. Count: 33, Neg. LLF: 154.79051746457083
Iteration: 4, Func. Count: 44, Neg. LLF: 361.2707589816972
Iteration: 5, Func. Count: 55, Neg. LLF: 153.20620521555003
Iteration: 6, Func. Count: 65, Neg. LLF: 155.8779725781026
Iteration: 7, Func. Count: 76, Neg. LLF: 156.27976653415533
Iteration: 8, Func. Count: 87, Neg. LLF: 152.46656179306757
Iteration: 9, Func. Count: 97, Neg. LLF: 152.38513664243294
Iteration: 10, Func. Count: 107, Neg. LLF: 152.19397542905017
Iteration: 11, Func. Count: 117, Neg. LLF: 152.0695571352601
Iteration: 12, Func. Count: 127, Neg. LLF: 152.06567216395268
Iteration: 13, Func. Count: 137, Neg. LLF: 152.0650010138162
Iteration: 14, Func. Count: 147, Neg. LLF: 152.0649431390969
Iteration: 15, Func. Count: 157, Neg. LLF: 152.06492318241226
Iteration: 16, Func. Count: 167, Neg. LLF: 152.06491894270812
Iteration: 17, Func. Count: 176, Neg. LLF: 152.06491891490194
Optimization terminated successfully (Exit mode 0)
Current function value: 152.06491894270812
Iterations: 17
Function evaluations: 176
Gradient evaluations: 17
Iteration: 1, Func. Count: 8, Neg. LLF: 166.47990412938978
Iteration: 2, Func. Count: 16, Neg. LLF: 162.66832237307827
Iteration: 3, Func. Count: 25, Neg. LLF: 163.35259487763753
Iteration: 4, Func. Count: 33, Neg. LLF: 159.07220885049014
Iteration: 5, Func. Count: 41, Neg. LLF: 157.9264556224117
Iteration: 6, Func. Count: 48, Neg. LLF: 157.85499236873866
Iteration: 7, Func. Count: 55, Neg. LLF: 157.6479352481798
Iteration: 8, Func. Count: 62, Neg. LLF: 156.9409142828705
Iteration: 9, Func. Count: 69, Neg. LLF: 156.48218876176284
Iteration: 10, Func. Count: 76, Neg. LLF: 156.3757895140274
Iteration: 11, Func. Count: 83, Neg. LLF: 156.3216523511208
Iteration: 12, Func. Count: 90, Neg. LLF: 156.2971516303512
Iteration: 13, Func. Count: 97, Neg. LLF: 156.29175286297328
Iteration: 14, Func. Count: 104, Neg. LLF: 156.2896745465588
Iteration: 15, Func. Count: 111, Neg. LLF: 156.2896090055934
Iteration: 16, Func. Count: 118, Neg. LLF: 156.28960646314957
Iteration: 17, Func. Count: 124, Neg. LLF: 156.28960650924265
Optimization terminated successfully (Exit mode 0)
Current function value: 156.28960646314957
Iterations: 17
Function evaluations: 124
Gradient evaluations: 17
Iteration: 1, Func. Count: 9, Neg. LLF: 234.85230907493488
Iteration: 2, Func. Count: 18, Neg. LLF: 155.20419997998798
Iteration: 3, Func. Count: 26, Neg. LLF: 155.1936744032225
Iteration: 4, Func. Count: 35, Neg. LLF: 155.17634508428665
Iteration: 5, Func. Count: 44, Neg. LLF: 154.40094157137307
Iteration: 6, Func. Count: 52, Neg. LLF: 155.29778783700164
Iteration: 7, Func. Count: 61, Neg. LLF: 154.21760940382018
Iteration: 8, Func. Count: 69, Neg. LLF: 154.19828196664162
Iteration: 9, Func. Count: 77, Neg. LLF: 154.20068015974934
Iteration: 10, Func. Count: 86, Neg. LLF: 154.19084981326912
Iteration: 11, Func. Count: 94, Neg. LLF: 154.19080067645996
Iteration: 12, Func. Count: 102, Neg. LLF: 154.19079806385759
Iteration: 13, Func. Count: 109, Neg. LLF: 154.19079789619224
Optimization terminated successfully (Exit mode 0)
Current function value: 154.19079806385759
Iterations: 13
Function evaluations: 109
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 229.18527307687444
Iteration: 2, Func. Count: 20, Neg. LLF: 263.7317342328265
Iteration: 3, Func. Count: 31, Neg. LLF: 165.32542054440074
Iteration: 4, Func. Count: 41, Neg. LLF: 182.84704714142913
Iteration: 5, Func. Count: 51, Neg. LLF: 154.08646846842373
Iteration: 6, Func. Count: 60, Neg. LLF: 153.97012478062325
Iteration: 7, Func. Count: 69, Neg. LLF: 153.63036842692836
Iteration: 8, Func. Count: 78, Neg. LLF: 153.92231469968536
Iteration: 9, Func. Count: 89, Neg. LLF: 153.57314826563274
Iteration: 10, Func. Count: 98, Neg. LLF: 153.56257318257784
Iteration: 11, Func. Count: 107, Neg. LLF: 153.5602874735333
Iteration: 12, Func. Count: 116, Neg. LLF: 153.56019770898837
Iteration: 13, Func. Count: 124, Neg. LLF: 153.56019751265063
Optimization terminated successfully (Exit mode 0)
Current function value: 153.56019770898837
Iterations: 13
Function evaluations: 124
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 184.2882031613893
Iteration: 2, Func. Count: 22, Neg. LLF: 159.41993433522202
Iteration: 3, Func. Count: 33, Neg. LLF: 159.69320561917644
Iteration: 4, Func. Count: 44, Neg. LLF: 152.86090909436953
Iteration: 5, Func. Count: 54, Neg. LLF: 152.5696977399471
Iteration: 6, Func. Count: 64, Neg. LLF: 152.60814291087868
Iteration: 7, Func. Count: 75, Neg. LLF: 152.283221702889
Iteration: 8, Func. Count: 86, Neg. LLF: 152.0889874220404
Iteration: 9, Func. Count: 96, Neg. LLF: 152.0705524068346
Iteration: 10, Func. Count: 106, Neg. LLF: 152.06803805800388
Iteration: 11, Func. Count: 116, Neg. LLF: 152.06494924231103
Iteration: 12, Func. Count: 126, Neg. LLF: 152.0649193452161
Iteration: 13, Func. Count: 136, Neg. LLF: 152.06491877347972
Optimization terminated successfully (Exit mode 0)
Current function value: 152.06491877347972
Iterations: 13
Function evaluations: 136
Gradient evaluations: 13
Iteration: 1, Func. Count: 12, Neg. LLF: 180.5714358527838
Iteration: 2, Func. Count: 24, Neg. LLF: 203.71963231453663
Iteration: 3, Func. Count: 36, Neg. LLF: 154.4678134305389
Iteration: 4, Func. Count: 47, Neg. LLF: 153.63380792488007
Iteration: 5, Func. Count: 59, Neg. LLF: 157.7652766076001
Iteration: 6, Func. Count: 72, Neg. LLF: 155.70184794821722
Iteration: 7, Func. Count: 84, Neg. LLF: 152.423469542798
Iteration: 8, Func. Count: 95, Neg. LLF: 152.42901961597363
Iteration: 9, Func. Count: 107, Neg. LLF: 152.36277008582638
Iteration: 10, Func. Count: 118, Neg. LLF: 152.34247318217234
Iteration: 11, Func. Count: 129, Neg. LLF: 152.33810579714154
Iteration: 12, Func. Count: 140, Neg. LLF: 152.33370850236315
Iteration: 13, Func. Count: 151, Neg. LLF: 152.30441374396108
Iteration: 14, Func. Count: 162, Neg. LLF: 152.19447711492705
Iteration: 15, Func. Count: 173, Neg. LLF: 152.16743354178763
Iteration: 16, Func. Count: 184, Neg. LLF: 152.12518626147707
Iteration: 17, Func. Count: 195, Neg. LLF: 152.08968166845023
Iteration: 18, Func. Count: 206, Neg. LLF: 152.06800976534856
Iteration: 19, Func. Count: 217, Neg. LLF: 152.06508826085005
Iteration: 20, Func. Count: 228, Neg. LLF: 152.0649297371467
Iteration: 21, Func. Count: 239, Neg. LLF: 152.06491909178345
Iteration: 22, Func. Count: 249, Neg. LLF: 152.06491906402638
Optimization terminated successfully (Exit mode 0)
Current function value: 152.06491909178345
Iterations: 22
Function evaluations: 249
Gradient evaluations: 22
Iteration: 1, Func. Count: 5, Neg. LLF: 160.3676174911424
Iteration: 2, Func. Count: 9, Neg. LLF: 160.40807939455001
Iteration: 3, Func. Count: 14, Neg. LLF: 159.81625931037635
Iteration: 4, Func. Count: 18, Neg. LLF: 159.88325668046133
Iteration: 5, Func. Count: 23, Neg. LLF: 159.6564247018023
Iteration: 6, Func. Count: 27, Neg. LLF: 159.65454796175936
Iteration: 7, Func. Count: 31, Neg. LLF: 159.64803182811727
Iteration: 8, Func. Count: 35, Neg. LLF: 159.63847689001938
Iteration: 9, Func. Count: 39, Neg. LLF: 159.63210289885674
Iteration: 10, Func. Count: 43, Neg. LLF: 159.6302717670257
Iteration: 11, Func. Count: 47, Neg. LLF: 159.62998364610579
Iteration: 12, Func. Count: 51, Neg. LLF: 159.62997892903542
Iteration: 13, Func. Count: 54, Neg. LLF: 159.6299789290329
Optimization terminated successfully (Exit mode 0)
Current function value: 159.62997892903542
Iterations: 13
Function evaluations: 54
Gradient evaluations: 13
Iteration: 1, Func. Count: 6, Neg. LLF: 196.35433895108366
Iteration: 2, Func. Count: 12, Neg. LLF: 165.92132272046854
Iteration: 3, Func. Count: 18, Neg. LLF: 157.3091605800064
Iteration: 4, Func. Count: 23, Neg. LLF: 157.19553314583905
Iteration: 5, Func. Count: 28, Neg. LLF: 157.19322851550237
Iteration: 6, Func. Count: 33, Neg. LLF: 157.19291715468376
Iteration: 7, Func. Count: 38, Neg. LLF: 157.1929159480197
Iteration: 8, Func. Count: 42, Neg. LLF: 157.1929158637592
Optimization terminated successfully (Exit mode 0)
Current function value: 157.1929159480197
Iterations: 8
Function evaluations: 42
Gradient evaluations: 8
Iteration: 1, Func. Count: 7, Neg. LLF: 171.19671777397792
Iteration: 2, Func. Count: 14, Neg. LLF: 158.7746367240469
Iteration: 3, Func. Count: 21, Neg. LLF: 157.6209992340629
Iteration: 4, Func. Count: 27, Neg. LLF: 159.9692105877604
Iteration: 5, Func. Count: 34, Neg. LLF: 157.4640833163154
Iteration: 6, Func. Count: 41, Neg. LLF: 158.14768916600627
Iteration: 7, Func. Count: 48, Neg. LLF: 157.2014275578426
Iteration: 8, Func. Count: 54, Neg. LLF: 157.15845323818195
Iteration: 9, Func. Count: 60, Neg. LLF: 157.15423044213216
Iteration: 10, Func. Count: 66, Neg. LLF: 157.15325367450893
Iteration: 11, Func. Count: 72, Neg. LLF: 157.1531132563803
Iteration: 12, Func. Count: 78, Neg. LLF: 157.1531029696259
Iteration: 13, Func. Count: 83, Neg. LLF: 157.15310289410448
Optimization terminated successfully (Exit mode 0)
Current function value: 157.1531029696259
Iterations: 13
Function evaluations: 83
Gradient evaluations: 13
Iteration: 1, Func. Count: 8, Neg. LLF: 169.8414284337148
Iteration: 2, Func. Count: 16, Neg. LLF: 158.70501126010893
Iteration: 3, Func. Count: 24, Neg. LLF: 158.2853715410571
Iteration: 4, Func. Count: 32, Neg. LLF: 157.2239847462378
Iteration: 5, Func. Count: 39, Neg. LLF: 157.12702574336163
Iteration: 6, Func. Count: 46, Neg. LLF: 157.12534191008754
Iteration: 7, Func. Count: 53, Neg. LLF: 157.12069377724944
Iteration: 8, Func. Count: 60, Neg. LLF: 157.1182762695756
Iteration: 9, Func. Count: 67, Neg. LLF: 157.11577241748586
Iteration: 10, Func. Count: 74, Neg. LLF: 157.10930988961172
Iteration: 11, Func. Count: 81, Neg. LLF: 158.68397655597278
Iteration: 12, Func. Count: 89, Neg. LLF: 157.12689760754125
Iteration: 13, Func. Count: 97, Neg. LLF: 157.09099941956185
Iteration: 14, Func. Count: 104, Neg. LLF: 157.0676275508189
Iteration: 15, Func. Count: 111, Neg. LLF: 157.0418503129393
Iteration: 16, Func. Count: 118, Neg. LLF: 157.02372402811102
Iteration: 17, Func. Count: 125, Neg. LLF: 157.01032108239622
Iteration: 18, Func. Count: 132, Neg. LLF: 157.0060516955378
Iteration: 19, Func. Count: 139, Neg. LLF: 157.00592230355278
Iteration: 20, Func. Count: 146, Neg. LLF: 157.0059210947661
Iteration: 21, Func. Count: 152, Neg. LLF: 157.00592102123588
Optimization terminated successfully (Exit mode 0)
Current function value: 157.0059210947661
Iterations: 21
Function evaluations: 152
Gradient evaluations: 21
Iteration: 1, Func. Count: 9, Neg. LLF: 169.24237092498254
Iteration: 2, Func. Count: 18, Neg. LLF: 158.21360847686577
Iteration: 3, Func. Count: 27, Neg. LLF: 157.25733084726042
Iteration: 4, Func. Count: 35, Neg. LLF: 162.21328257514995
Iteration: 5, Func. Count: 44, Neg. LLF: 163.14521748485967
Iteration: 6, Func. Count: 53, Neg. LLF: 156.73479081435949
Iteration: 7, Func. Count: 61, Neg. LLF: 156.71062763812301
Iteration: 8, Func. Count: 69, Neg. LLF: 156.68950369691333
Iteration: 9, Func. Count: 77, Neg. LLF: 156.6638514087375
Iteration: 10, Func. Count: 85, Neg. LLF: 156.66271086772295
Iteration: 11, Func. Count: 93, Neg. LLF: 156.66265905712126
Iteration: 12, Func. Count: 100, Neg. LLF: 156.66265901301
Optimization terminated successfully (Exit mode 0)
Current function value: 156.66265905712126
Iterations: 12
Function evaluations: 100
Gradient evaluations: 12
Iteration: 1, Func. Count: 6, Neg. LLF: 159.3680341503978
Iteration: 2, Func. Count: 11, Neg. LLF: 160.14221427477167
Iteration: 3, Func. Count: 17, Neg. LLF: 162.67433575753836
Iteration: 4, Func. Count: 23, Neg. LLF: 158.87023174982636
Iteration: 5, Func. Count: 28, Neg. LLF: 158.73197273957578
Iteration: 6, Func. Count: 33, Neg. LLF: 158.6928468377898
Iteration: 7, Func. Count: 38, Neg. LLF: 158.67261339691152
Iteration: 8, Func. Count: 43, Neg. LLF: 158.64373247583399
Iteration: 9, Func. Count: 48, Neg. LLF: 158.5720831366847
Iteration: 10, Func. Count: 53, Neg. LLF: 158.526103777476
Iteration: 11, Func. Count: 58, Neg. LLF: 158.5018730854221
Iteration: 12, Func. Count: 63, Neg. LLF: 158.49959023073157
Iteration: 13, Func. Count: 68, Neg. LLF: 158.4995605388176
Iteration: 14, Func. Count: 72, Neg. LLF: 158.49956053881314
Optimization terminated successfully (Exit mode 0)
Current function value: 158.4995605388176
Iterations: 14
Function evaluations: 72
Gradient evaluations: 14
Iteration: 1, Func. Count: 7, Neg. LLF: 485.0932179656284
Iteration: 2, Func. Count: 14, Neg. LLF: 154.81076497925017
Iteration: 3, Func. Count: 21, Neg. LLF: 154.46428083502784
Iteration: 4, Func. Count: 28, Neg. LLF: 155.98302075592778
Iteration: 5, Func. Count: 35, Neg. LLF: 154.21991607738414
Iteration: 6, Func. Count: 41, Neg. LLF: 154.31661761673396
Iteration: 7, Func. Count: 48, Neg. LLF: 154.21825006318727
Iteration: 8, Func. Count: 54, Neg. LLF: 154.21822429116938
Iteration: 9, Func. Count: 59, Neg. LLF: 154.2182241041997
Optimization terminated successfully (Exit mode 0)
Current function value: 154.21822429116938
Iterations: 9
Function evaluations: 59
Gradient evaluations: 9
Iteration: 1, Func. Count: 8, Neg. LLF: 408.7581672440488
Iteration: 2, Func. Count: 16, Neg. LLF: 155.91282805893064
Iteration: 3, Func. Count: 24, Neg. LLF: 155.26494000124794
Iteration: 4, Func. Count: 32, Neg. LLF: 154.28231917178837
Iteration: 5, Func. Count: 39, Neg. LLF: 154.250139219888
Iteration: 6, Func. Count: 46, Neg. LLF: 154.22445003734592
Iteration: 7, Func. Count: 53, Neg. LLF: 154.22397998981702
Iteration: 8, Func. Count: 61, Neg. LLF: 154.21824613279017
Iteration: 9, Func. Count: 68, Neg. LLF: 154.21822546508693
Iteration: 10, Func. Count: 75, Neg. LLF: 154.21822426214717
Iteration: 11, Func. Count: 81, Neg. LLF: 154.21822408413178
Optimization terminated successfully (Exit mode 0)
Current function value: 154.21822426214717
Iterations: 11
Function evaluations: 81
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 414.41756940331
Iteration: 2, Func. Count: 18, Neg. LLF: 155.63115768595415
Iteration: 3, Func. Count: 27, Neg. LLF: 155.67805493023604
Iteration: 4, Func. Count: 36, Neg. LLF: 155.25451951890795
Iteration: 5, Func. Count: 45, Neg. LLF: 155.07967655973755
Iteration: 6, Func. Count: 54, Neg. LLF: 154.27422252064412
Iteration: 7, Func. Count: 62, Neg. LLF: 154.22040062033625
Iteration: 8, Func. Count: 70, Neg. LLF: 154.21649368932083
Iteration: 9, Func. Count: 78, Neg. LLF: 154.2157835124786
Iteration: 10, Func. Count: 86, Neg. LLF: 154.21576249792093
Iteration: 11, Func. Count: 94, Neg. LLF: 154.21576173561445
Optimization terminated successfully (Exit mode 0)
Current function value: 154.21576173561445
Iterations: 11
Function evaluations: 94
Gradient evaluations: 11
Iteration: 1, Func. Count: 10, Neg. LLF: 230.6349038465498
Iteration: 2, Func. Count: 20, Neg. LLF: 155.82331298248283
Iteration: 3, Func. Count: 29, Neg. LLF: 154.901299244997
Iteration: 4, Func. Count: 38, Neg. LLF: 155.98163553571877
Iteration: 5, Func. Count: 48, Neg. LLF: 154.43885862347872
Iteration: 6, Func. Count: 57, Neg. LLF: 154.11419732737184
Iteration: 7, Func. Count: 66, Neg. LLF: 154.28445002822758
Iteration: 8, Func. Count: 76, Neg. LLF: 153.95164576271813
Iteration: 9, Func. Count: 85, Neg. LLF: 153.93189700678062
Iteration: 10, Func. Count: 94, Neg. LLF: 153.9254428827216
Iteration: 11, Func. Count: 103, Neg. LLF: 153.9236105461777
Iteration: 12, Func. Count: 112, Neg. LLF: 153.92351503626358
Iteration: 13, Func. Count: 121, Neg. LLF: 153.923502093073
Iteration: 14, Func. Count: 129, Neg. LLF: 153.92350195305568
Optimization terminated successfully (Exit mode 0)
Current function value: 153.923502093073
Iterations: 14
Function evaluations: 129
Gradient evaluations: 14
Iteration: 1, Func. Count: 7, Neg. LLF: 165.33985418093226
Iteration: 2, Func. Count: 14, Neg. LLF: 160.34097232799317
Iteration: 3, Func. Count: 22, Neg. LLF: 159.61896370625155
Iteration: 4, Func. Count: 29, Neg. LLF: 159.60707023432084
Iteration: 5, Func. Count: 36, Neg. LLF: 158.61741599392207
Iteration: 6, Func. Count: 42, Neg. LLF: 158.5930286978275
Iteration: 7, Func. Count: 48, Neg. LLF: 158.56821491004288
Iteration: 8, Func. Count: 54, Neg. LLF: 158.5324563513648
Iteration: 9, Func. Count: 60, Neg. LLF: 158.48790270217322
Iteration: 10, Func. Count: 66, Neg. LLF: 158.44349853681175
Iteration: 11, Func. Count: 72, Neg. LLF: 158.42576951497722
Iteration: 12, Func. Count: 78, Neg. LLF: 158.41503496044416
Iteration: 13, Func. Count: 84, Neg. LLF: 158.41430398315967
Iteration: 14, Func. Count: 90, Neg. LLF: 158.41399569992006
Iteration: 15, Func. Count: 96, Neg. LLF: 158.41396077901365
Iteration: 16, Func. Count: 102, Neg. LLF: 158.4139570650593
Iteration: 17, Func. Count: 107, Neg. LLF: 158.41395706504588
Optimization terminated successfully (Exit mode 0)
Current function value: 158.4139570650593
Iterations: 17
Function evaluations: 107
Gradient evaluations: 17
Iteration: 1, Func. Count: 8, Neg. LLF: 396.82070645899574
Iteration: 2, Func. Count: 16, Neg. LLF: 157.55549652523158
Iteration: 3, Func. Count: 24, Neg. LLF: 154.92411195299738
Iteration: 4, Func. Count: 32, Neg. LLF: 154.2481465867794
Iteration: 5, Func. Count: 39, Neg. LLF: 154.16769241374394
Iteration: 6, Func. Count: 46, Neg. LLF: 154.1624320027024
Iteration: 7, Func. Count: 53, Neg. LLF: 154.15742088280447
Iteration: 8, Func. Count: 60, Neg. LLF: 154.15726160922705
Iteration: 9, Func. Count: 67, Neg. LLF: 154.15712891813908
Iteration: 10, Func. Count: 73, Neg. LLF: 154.1571287553578
Optimization terminated successfully (Exit mode 0)
Current function value: 154.15712891813908
Iterations: 10
Function evaluations: 73
Gradient evaluations: 10
Iteration: 1, Func. Count: 9, Neg. LLF: 244.22529757898013
Iteration: 2, Func. Count: 18, Neg. LLF: 156.02881911088951
Iteration: 3, Func. Count: 27, Neg. LLF: 154.5980336505592
Iteration: 4, Func. Count: 36, Neg. LLF: 154.45513721525248
Iteration: 5, Func. Count: 45, Neg. LLF: 154.193918607685
Iteration: 6, Func. Count: 54, Neg. LLF: 154.10971015304
Iteration: 7, Func. Count: 62, Neg. LLF: 154.1086163434001
Iteration: 8, Func. Count: 70, Neg. LLF: 154.10664488501155
Iteration: 9, Func. Count: 78, Neg. LLF: 154.10645098816812
Iteration: 10, Func. Count: 86, Neg. LLF: 154.10643948271823
Iteration: 11, Func. Count: 93, Neg. LLF: 154.10643934047732
Optimization terminated successfully (Exit mode 0)
Current function value: 154.10643948271823
Iterations: 11
Function evaluations: 93
Gradient evaluations: 11
Iteration: 1, Func. Count: 10, Neg. LLF: 249.7424690555201
Iteration: 2, Func. Count: 20, Neg. LLF: 158.91268896379674
Iteration: 3, Func. Count: 30, Neg. LLF: 156.38175031266852
Iteration: 4, Func. Count: 40, Neg. LLF: 153.8098429403084
Iteration: 5, Func. Count: 49, Neg. LLF: 153.4700235500332
Iteration: 6, Func. Count: 58, Neg. LLF: 154.50167647669528
Iteration: 7, Func. Count: 68, Neg. LLF: 153.4596752789485
Iteration: 8, Func. Count: 78, Neg. LLF: 153.40260202736584
Iteration: 9, Func. Count: 87, Neg. LLF: 153.40244692403962
Iteration: 10, Func. Count: 96, Neg. LLF: 153.40243923794444
Iteration: 11, Func. Count: 104, Neg. LLF: 153.40243910997606
Optimization terminated successfully (Exit mode 0)
Current function value: 153.40243923794444
Iterations: 11
Function evaluations: 104
Gradient evaluations: 11
Iteration: 1, Func. Count: 11, Neg. LLF: 182.93748220659054
Iteration: 2, Func. Count: 22, Neg. LLF: 155.5402287496813
Iteration: 3, Func. Count: 33, Neg. LLF: 165.43566432833333
Iteration: 4, Func. Count: 44, Neg. LLF: 156.53449097331102
Iteration: 5, Func. Count: 55, Neg. LLF: 154.22630778428598
Iteration: 6, Func. Count: 66, Neg. LLF: 153.4665047210277
Iteration: 7, Func. Count: 76, Neg. LLF: 154.63818645114642
Iteration: 8, Func. Count: 87, Neg. LLF: 155.09006173040063
Iteration: 9, Func. Count: 98, Neg. LLF: 153.2374101473885
Iteration: 10, Func. Count: 108, Neg. LLF: 153.18618617352587
Iteration: 11, Func. Count: 118, Neg. LLF: 153.18539942074437
Iteration: 12, Func. Count: 128, Neg. LLF: 153.18441775624714
Iteration: 13, Func. Count: 138, Neg. LLF: 153.18420212279443
Iteration: 14, Func. Count: 148, Neg. LLF: 153.184146083719
Iteration: 15, Func. Count: 157, Neg. LLF: 153.18414597310255
Optimization terminated successfully (Exit mode 0)
Current function value: 153.184146083719
Iterations: 15
Function evaluations: 157
Gradient evaluations: 15
Iteration: 1, Func. Count: 8, Neg. LLF: 161.42957967985635
Iteration: 2, Func. Count: 16, Neg. LLF: 160.70022253181378
Iteration: 3, Func. Count: 24, Neg. LLF: 159.04076270457904
Iteration: 4, Func. Count: 32, Neg. LLF: 163.73475707243537
Iteration: 5, Func. Count: 40, Neg. LLF: 157.50661262729787
Iteration: 6, Func. Count: 47, Neg. LLF: 157.55715299094635
Iteration: 7, Func. Count: 55, Neg. LLF: 157.2137411615781
Iteration: 8, Func. Count: 62, Neg. LLF: 156.3393929567734
Iteration: 9, Func. Count: 69, Neg. LLF: 156.21997325996193
Iteration: 10, Func. Count: 77, Neg. LLF: 155.51718445180293
Iteration: 11, Func. Count: 84, Neg. LLF: 155.41818505925346
Iteration: 12, Func. Count: 91, Neg. LLF: 155.3049772207639
Iteration: 13, Func. Count: 98, Neg. LLF: 155.29361218065353
Iteration: 14, Func. Count: 105, Neg. LLF: 155.2912449594453
Iteration: 15, Func. Count: 112, Neg. LLF: 155.29096244253472
Iteration: 16, Func. Count: 119, Neg. LLF: 155.29079899795948
Iteration: 17, Func. Count: 126, Neg. LLF: 155.29079742622702
Iteration: 18, Func. Count: 132, Neg. LLF: 155.2907974142501
Optimization terminated successfully (Exit mode 0)
Current function value: 155.29079742622702
Iterations: 18
Function evaluations: 132
Gradient evaluations: 18
Iteration: 1, Func. Count: 9, Neg. LLF: 352.88039572202496
Iteration: 2, Func. Count: 18, Neg. LLF: 157.39172210926054
Iteration: 3, Func. Count: 27, Neg. LLF: 154.7317330656769
Iteration: 4, Func. Count: 35, Neg. LLF: 154.40225243923308
Iteration: 5, Func. Count: 43, Neg. LLF: 154.4590128199716
Iteration: 6, Func. Count: 52, Neg. LLF: 154.16901514748156
Iteration: 7, Func. Count: 60, Neg. LLF: 154.16949554824586
Iteration: 8, Func. Count: 69, Neg. LLF: 154.1574663084238
Iteration: 9, Func. Count: 77, Neg. LLF: 154.15713123867965
Iteration: 10, Func. Count: 85, Neg. LLF: 154.15712861305153
Iteration: 11, Func. Count: 92, Neg. LLF: 154.15712845018453
Optimization terminated successfully (Exit mode 0)
Current function value: 154.15712861305153
Iterations: 11
Function evaluations: 92
Gradient evaluations: 11
Iteration: 1, Func. Count: 10, Neg. LLF: 229.19268258453474
Iteration: 2, Func. Count: 20, Neg. LLF: 156.21057783099204
Iteration: 3, Func. Count: 30, Neg. LLF: 154.85834710304056
Iteration: 4, Func. Count: 40, Neg. LLF: 154.60702607865207
Iteration: 5, Func. Count: 50, Neg. LLF: 154.2065813940805
Iteration: 6, Func. Count: 60, Neg. LLF: 154.12432141832284
Iteration: 7, Func. Count: 69, Neg. LLF: 154.1280754370061
Iteration: 8, Func. Count: 79, Neg. LLF: 154.11004444809646
Iteration: 9, Func. Count: 88, Neg. LLF: 154.10647201759605
Iteration: 10, Func. Count: 97, Neg. LLF: 154.10644354839386
Iteration: 11, Func. Count: 106, Neg. LLF: 154.106439384584
Iteration: 12, Func. Count: 114, Neg. LLF: 154.1064392422591
Optimization terminated successfully (Exit mode 0)
Current function value: 154.106439384584
Iterations: 12
Function evaluations: 114
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 182.70211687190343
Iteration: 2, Func. Count: 22, Neg. LLF: 187.36050077289542
Iteration: 3, Func. Count: 33, Neg. LLF: 152.22885446169454
Iteration: 4, Func. Count: 43, Neg. LLF: 152.5214729414405
Iteration: 5, Func. Count: 54, Neg. LLF: 152.10834838273823
Iteration: 6, Func. Count: 64, Neg. LLF: 152.0862695707281
Iteration: 7, Func. Count: 74, Neg. LLF: 152.1587179448654
Iteration: 8, Func. Count: 85, Neg. LLF: 152.0744242304675
Iteration: 9, Func. Count: 95, Neg. LLF: 152.06805514884084
Iteration: 10, Func. Count: 105, Neg. LLF: 152.06576680130868
Iteration: 11, Func. Count: 115, Neg. LLF: 152.064980870852
Iteration: 12, Func. Count: 125, Neg. LLF: 152.06492651173272
Iteration: 13, Func. Count: 135, Neg. LLF: 152.06491878582477
Iteration: 14, Func. Count: 144, Neg. LLF: 152.06491869819783
Optimization terminated successfully (Exit mode 0)
Current function value: 152.06491878582477
Iterations: 14
Function evaluations: 144
Gradient evaluations: 14
Iteration: 1, Func. Count: 12, Neg. LLF: 183.39811748868553
Iteration: 2, Func. Count: 24, Neg. LLF: 186.81361176262186
Iteration: 3, Func. Count: 36, Neg. LLF: 203.69113403450663
Iteration: 4, Func. Count: 48, Neg. LLF: 155.69146995395323
Iteration: 5, Func. Count: 60, Neg. LLF: 153.30287259748522
Iteration: 6, Func. Count: 71, Neg. LLF: 153.4873724527433
Iteration: 7, Func. Count: 83, Neg. LLF: 161.4772482595503
Iteration: 8, Func. Count: 95, Neg. LLF: 152.5766632469772
Iteration: 9, Func. Count: 106, Neg. LLF: 152.39964343058722
Iteration: 10, Func. Count: 117, Neg. LLF: 152.36752412417894
Iteration: 11, Func. Count: 128, Neg. LLF: 152.33766845066958
Iteration: 12, Func. Count: 139, Neg. LLF: 152.3194591441023
Iteration: 13, Func. Count: 150, Neg. LLF: 152.30588063155457
Iteration: 14, Func. Count: 161, Neg. LLF: 152.1343311709839
Iteration: 15, Func. Count: 172, Neg. LLF: 152.07760062993188
Iteration: 16, Func. Count: 183, Neg. LLF: 152.06987124965377
Iteration: 17, Func. Count: 194, Neg. LLF: 152.06619842617903
Iteration: 18, Func. Count: 205, Neg. LLF: 152.0650705003169
Iteration: 19, Func. Count: 216, Neg. LLF: 152.06491913008293
Iteration: 20, Func. Count: 226, Neg. LLF: 152.06491910221553
Optimization terminated successfully (Exit mode 0)
Current function value: 152.06491913008293
Iterations: 20
Function evaluations: 226
Gradient evaluations: 20
Iteration: 1, Func. Count: 9, Neg. LLF: 165.1338488323434
Iteration: 2, Func. Count: 19, Neg. LLF: 159.76964262083743
Iteration: 3, Func. Count: 28, Neg. LLF: 159.55246875583057
Iteration: 4, Func. Count: 37, Neg. LLF: 160.60859337955736
Iteration: 5, Func. Count: 46, Neg. LLF: 157.49757539440316
Iteration: 6, Func. Count: 54, Neg. LLF: 157.78616837701907
Iteration: 7, Func. Count: 63, Neg. LLF: 157.24582141091153
Iteration: 8, Func. Count: 71, Neg. LLF: 156.75861070839926
Iteration: 9, Func. Count: 79, Neg. LLF: 155.91885391795344
Iteration: 10, Func. Count: 87, Neg. LLF: 157.18339017041845
Iteration: 11, Func. Count: 96, Neg. LLF: 155.52351295359523
Iteration: 12, Func. Count: 105, Neg. LLF: 155.30328476672017
Iteration: 13, Func. Count: 113, Neg. LLF: 155.291145330772
Iteration: 14, Func. Count: 121, Neg. LLF: 155.29086646091395
Iteration: 15, Func. Count: 129, Neg. LLF: 155.2907997251591
Iteration: 16, Func. Count: 137, Neg. LLF: 155.2907975313293
Iteration: 17, Func. Count: 144, Neg. LLF: 155.29079764362638
Optimization terminated successfully (Exit mode 0)
Current function value: 155.2907975313293
Iterations: 17
Function evaluations: 144
Gradient evaluations: 17
Iteration: 1, Func. Count: 10, Neg. LLF: 332.4468671320944
Iteration: 2, Func. Count: 20, Neg. LLF: 156.90107140883654
Iteration: 3, Func. Count: 30, Neg. LLF: 154.79227919672715
Iteration: 4, Func. Count: 39, Neg. LLF: 154.6936561304772
Iteration: 5, Func. Count: 49, Neg. LLF: 154.65449117062528
Iteration: 6, Func. Count: 59, Neg. LLF: 154.16514623368113
Iteration: 7, Func. Count: 68, Neg. LLF: 154.16193042305196
Iteration: 8, Func. Count: 77, Neg. LLF: 154.15725112024458
Iteration: 9, Func. Count: 86, Neg. LLF: 154.15713179463205
Iteration: 10, Func. Count: 95, Neg. LLF: 154.15712862171378
Iteration: 11, Func. Count: 103, Neg. LLF: 154.15712845883402
Optimization terminated successfully (Exit mode 0)
Current function value: 154.15712862171378
Iterations: 11
Function evaluations: 103
Gradient evaluations: 11
Iteration: 1, Func. Count: 11, Neg. LLF: 181.94904167305825
Iteration: 2, Func. Count: 22, Neg. LLF: 156.95427175922822
Iteration: 3, Func. Count: 33, Neg. LLF: 154.80911525049086
Iteration: 4, Func. Count: 43, Neg. LLF: 154.43156015588139
Iteration: 5, Func. Count: 53, Neg. LLF: 154.83523572111073
Iteration: 6, Func. Count: 64, Neg. LLF: 154.10170908827317
Iteration: 7, Func. Count: 74, Neg. LLF: 153.87098013942074
Iteration: 8, Func. Count: 84, Neg. LLF: 153.94978524628394
Iteration: 9, Func. Count: 95, Neg. LLF: 153.6551763199029
Iteration: 10, Func. Count: 105, Neg. LLF: 153.5745908205345
Iteration: 11, Func. Count: 115, Neg. LLF: 153.5720957162483
Iteration: 12, Func. Count: 126, Neg. LLF: 153.56774218536003
Iteration: 13, Func. Count: 137, Neg. LLF: 153.56034935108534
Iteration: 14, Func. Count: 147, Neg. LLF: 153.56020069105563
Iteration: 15, Func. Count: 157, Neg. LLF: 153.56019790361364
Iteration: 16, Func. Count: 167, Neg. LLF: 153.56019722445564
Optimization terminated successfully (Exit mode 0)
Current function value: 153.56019722445564
Iterations: 16
Function evaluations: 167
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 182.28537298204483
Iteration: 2, Func. Count: 24, Neg. LLF: 185.1225197831806
Iteration: 3, Func. Count: 36, Neg. LLF: 152.26240598685987
Iteration: 4, Func. Count: 47, Neg. LLF: 152.87495062448875
Iteration: 5, Func. Count: 59, Neg. LLF: 152.1261944773993
Iteration: 6, Func. Count: 70, Neg. LLF: 152.09038571721683
Iteration: 7, Func. Count: 81, Neg. LLF: 152.0924889449026
Iteration: 8, Func. Count: 93, Neg. LLF: 152.13246138929722
Iteration: 9, Func. Count: 105, Neg. LLF: 152.06785978210834
Iteration: 10, Func. Count: 116, Neg. LLF: 152.06528187544384
Iteration: 11, Func. Count: 127, Neg. LLF: 152.065017411431
Iteration: 12, Func. Count: 138, Neg. LLF: 152.0649291243229
Iteration: 13, Func. Count: 149, Neg. LLF: 152.0649188045317
Iteration: 14, Func. Count: 159, Neg. LLF: 152.06491871690713
Optimization terminated successfully (Exit mode 0)
Current function value: 152.0649188045317
Iterations: 14
Function evaluations: 159
Gradient evaluations: 14
Iteration: 1, Func. Count: 13, Neg. LLF: 183.42903839956924
Iteration: 2, Func. Count: 26, Neg. LLF: 184.92213884532873
Iteration: 3, Func. Count: 39, Neg. LLF: 200.20466969338253
Iteration: 4, Func. Count: 52, Neg. LLF: 155.43177299503378
Iteration: 5, Func. Count: 65, Neg. LLF: 152.72721798317542
Iteration: 6, Func. Count: 77, Neg. LLF: 152.73616336963565
Iteration: 7, Func. Count: 90, Neg. LLF: 152.37333790783975
Iteration: 8, Func. Count: 102, Neg. LLF: 152.1572539074619
Iteration: 9, Func. Count: 114, Neg. LLF: 152.29980590764615
Iteration: 10, Func. Count: 127, Neg. LLF: 152.067815729851
Iteration: 11, Func. Count: 139, Neg. LLF: 152.06593714337043
Iteration: 12, Func. Count: 151, Neg. LLF: 152.0651938731534
Iteration: 13, Func. Count: 163, Neg. LLF: 152.06494189890492
Iteration: 14, Func. Count: 175, Neg. LLF: 152.0649209068469
Iteration: 15, Func. Count: 187, Neg. LLF: 152.064918821985
Iteration: 16, Func. Count: 198, Neg. LLF: 152.0649187940819
Optimization terminated successfully (Exit mode 0)
Current function value: 152.064918821985
Iterations: 16
Function evaluations: 198
Gradient evaluations: 16
Iteration: 1, Func. Count: 6, Neg. LLF: 160.44836206744586
Iteration: 2, Func. Count: 11, Neg. LLF: 161.00077038870566
Iteration: 3, Func. Count: 17, Neg. LLF: 159.95491479875412
Iteration: 4, Func. Count: 22, Neg. LLF: 160.38621591629865
Iteration: 5, Func. Count: 28, Neg. LLF: 159.66475198386414
Iteration: 6, Func. Count: 33, Neg. LLF: 159.65367736680082
Iteration: 7, Func. Count: 38, Neg. LLF: 159.65227297428655
Iteration: 8, Func. Count: 43, Neg. LLF: 159.6451285217669
Iteration: 9, Func. Count: 48, Neg. LLF: 159.63044471247812
Iteration: 10, Func. Count: 53, Neg. LLF: 159.63003263387768
Iteration: 11, Func. Count: 58, Neg. LLF: 159.62997893211724
Iteration: 12, Func. Count: 62, Neg. LLF: 159.62997894936618
Optimization terminated successfully (Exit mode 0)
Current function value: 159.62997893211724
Iterations: 12
Function evaluations: 62
Gradient evaluations: 12
Iteration: 1, Func. Count: 7, Neg. LLF: 174.02636212153547
Iteration: 2, Func. Count: 14, Neg. LLF: 159.80220082611913
Iteration: 3, Func. Count: 21, Neg. LLF: 158.02608317473008
Iteration: 4, Func. Count: 28, Neg. LLF: 158.0690963657475
Iteration: 5, Func. Count: 35, Neg. LLF: 157.29678274998767
Iteration: 6, Func. Count: 41, Neg. LLF: 157.1940587303351
Iteration: 7, Func. Count: 47, Neg. LLF: 157.1929583961942
Iteration: 8, Func. Count: 53, Neg. LLF: 157.1929282151863
Iteration: 9, Func. Count: 59, Neg. LLF: 157.19291568684565
Iteration: 10, Func. Count: 64, Neg. LLF: 157.19291560256065
Optimization terminated successfully (Exit mode 0)
Current function value: 157.19291568684565
Iterations: 10
Function evaluations: 64
Gradient evaluations: 10
Iteration: 1, Func. Count: 8, Neg. LLF: 171.41030981169163
Iteration: 2, Func. Count: 16, Neg. LLF: 159.01422040090804
Iteration: 3, Func. Count: 24, Neg. LLF: 160.8685542574749
Iteration: 4, Func. Count: 32, Neg. LLF: 157.28262682010242
Iteration: 5, Func. Count: 39, Neg. LLF: 157.40147352794366
Iteration: 6, Func. Count: 47, Neg. LLF: 156.97114920774567
Iteration: 7, Func. Count: 54, Neg. LLF: 156.90244022690632
Iteration: 8, Func. Count: 61, Neg. LLF: 156.87188603234472
Iteration: 9, Func. Count: 68, Neg. LLF: 156.8651612008265
Iteration: 10, Func. Count: 75, Neg. LLF: 156.86451679606597
Iteration: 11, Func. Count: 82, Neg. LLF: 156.86445201268972
Iteration: 12, Func. Count: 89, Neg. LLF: 156.86444349440367
Iteration: 13, Func. Count: 95, Neg. LLF: 156.86444344485085
Optimization terminated successfully (Exit mode 0)
Current function value: 156.86444349440367
Iterations: 13
Function evaluations: 95
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 170.22314997330892
Iteration: 2, Func. Count: 18, Neg. LLF: 158.1443761817437
Iteration: 3, Func. Count: 27, Neg. LLF: 158.64778165701313
Iteration: 4, Func. Count: 36, Neg. LLF: 157.10028609715528
Iteration: 5, Func. Count: 44, Neg. LLF: 157.02052519615805
Iteration: 6, Func. Count: 52, Neg. LLF: 157.09540709769917
Iteration: 7, Func. Count: 61, Neg. LLF: 156.89207589742284
Iteration: 8, Func. Count: 69, Neg. LLF: 156.88749480705076
Iteration: 9, Func. Count: 78, Neg. LLF: 156.8662071091964
Iteration: 10, Func. Count: 86, Neg. LLF: 156.86447046413787
Iteration: 11, Func. Count: 94, Neg. LLF: 156.8644589696737
Iteration: 12, Func. Count: 102, Neg. LLF: 156.86444364018857
Iteration: 13, Func. Count: 109, Neg. LLF: 156.8644435978939
Optimization terminated successfully (Exit mode 0)
Current function value: 156.86444364018857
Iterations: 13
Function evaluations: 109
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 169.6473033905048
Iteration: 2, Func. Count: 20, Neg. LLF: 168.94352406872062
Iteration: 3, Func. Count: 30, Neg. LLF: 157.42973029576402
Iteration: 4, Func. Count: 40, Neg. LLF: 156.68180037605802
Iteration: 5, Func. Count: 49, Neg. LLF: 162.25821769773333
Iteration: 6, Func. Count: 59, Neg. LLF: 156.6771614270836
Iteration: 7, Func. Count: 69, Neg. LLF: 163.66992111673846
Iteration: 8, Func. Count: 80, Neg. LLF: 156.3090782215261
Iteration: 9, Func. Count: 89, Neg. LLF: 156.29098302616308
Iteration: 10, Func. Count: 98, Neg. LLF: 156.28885070459557
Iteration: 11, Func. Count: 107, Neg. LLF: 156.28530041049473
Iteration: 12, Func. Count: 116, Neg. LLF: 156.2850360444345
Iteration: 13, Func. Count: 125, Neg. LLF: 156.28489372616286
Iteration: 14, Func. Count: 134, Neg. LLF: 156.2848817865828
Iteration: 15, Func. Count: 143, Neg. LLF: 156.2848800810936
Iteration: 16, Func. Count: 151, Neg. LLF: 156.28488006018458
Optimization terminated successfully (Exit mode 0)
Current function value: 156.2848800810936
Iterations: 16
Function evaluations: 151
Gradient evaluations: 16
Iteration: 1, Func. Count: 7, Neg. LLF: 160.9505193113129
Iteration: 2, Func. Count: 14, Neg. LLF: 160.60006084493705
Iteration: 3, Func. Count: 22, Neg. LLF: 159.47413348026464
Iteration: 4, Func. Count: 29, Neg. LLF: 158.884363855156
Iteration: 5, Func. Count: 36, Neg. LLF: 158.6518334476216
Iteration: 6, Func. Count: 42, Neg. LLF: 158.60088069992753
Iteration: 7, Func. Count: 48, Neg. LLF: 158.55815338135645
Iteration: 8, Func. Count: 54, Neg. LLF: 158.43914454901318
Iteration: 9, Func. Count: 60, Neg. LLF: 158.28522554890958
Iteration: 10, Func. Count: 66, Neg. LLF: 158.21530880370307
Iteration: 11, Func. Count: 72, Neg. LLF: 158.20037278260554
Iteration: 12, Func. Count: 78, Neg. LLF: 158.1989314533666
Iteration: 13, Func. Count: 84, Neg. LLF: 158.19881076520323
Iteration: 14, Func. Count: 90, Neg. LLF: 158.1987975196975
Iteration: 15, Func. Count: 96, Neg. LLF: 158.19879659408866
Optimization terminated successfully (Exit mode 0)
Current function value: 158.19879659408866
Iterations: 15
Function evaluations: 96
Gradient evaluations: 15
Iteration: 1, Func. Count: 8, Neg. LLF: 425.3122505690582
Iteration: 2, Func. Count: 16, Neg. LLF: 155.61105599747816
Iteration: 3, Func. Count: 24, Neg. LLF: 155.20644043694648
Iteration: 4, Func. Count: 32, Neg. LLF: 154.1469814143958
Iteration: 5, Func. Count: 39, Neg. LLF: 154.14523414677757
Iteration: 6, Func. Count: 47, Neg. LLF: 154.2509752666474
Iteration: 7, Func. Count: 55, Neg. LLF: 154.13946633288757
Iteration: 8, Func. Count: 63, Neg. LLF: 154.1391666406521
Iteration: 9, Func. Count: 70, Neg. LLF: 154.13913522761388
Iteration: 10, Func. Count: 76, Neg. LLF: 154.1391350435548
Optimization terminated successfully (Exit mode 0)
Current function value: 154.13913522761388
Iterations: 10
Function evaluations: 76
Gradient evaluations: 10
Iteration: 1, Func. Count: 9, Neg. LLF: 421.7009141046165
Iteration: 2, Func. Count: 18, Neg. LLF: 154.88505870103825
Iteration: 3, Func. Count: 26, Neg. LLF: 159.60129243771758
Iteration: 4, Func. Count: 35, Neg. LLF: 167.96331376640424
Iteration: 5, Func. Count: 44, Neg. LLF: 154.64354659088525
Iteration: 6, Func. Count: 53, Neg. LLF: 154.1944201690492
Iteration: 7, Func. Count: 61, Neg. LLF: 154.15374388979419
Iteration: 8, Func. Count: 69, Neg. LLF: 154.1416509626022
Iteration: 9, Func. Count: 77, Neg. LLF: 154.13921116624036
Iteration: 10, Func. Count: 85, Neg. LLF: 154.13913968865614
Iteration: 11, Func. Count: 93, Neg. LLF: 154.13913556104015
Iteration: 12, Func. Count: 100, Neg. LLF: 154.13913538578228
Optimization terminated successfully (Exit mode 0)
Current function value: 154.13913556104015
Iterations: 12
Function evaluations: 100
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 233.50247484469264
Iteration: 2, Func. Count: 20, Neg. LLF: 155.66940644444003
Iteration: 3, Func. Count: 29, Neg. LLF: 158.02132521380827
Iteration: 4, Func. Count: 39, Neg. LLF: 159.42297249305972
Iteration: 5, Func. Count: 49, Neg. LLF: 155.24005086509155
Iteration: 6, Func. Count: 59, Neg. LLF: 154.74065655351146
Iteration: 7, Func. Count: 68, Neg. LLF: 154.64222144986172
Iteration: 8, Func. Count: 78, Neg. LLF: 154.43868041586177
Iteration: 9, Func. Count: 88, Neg. LLF: 154.4278223921743
Iteration: 10, Func. Count: 98, Neg. LLF: 154.20094011966893
Iteration: 11, Func. Count: 108, Neg. LLF: 154.14401080348802
Iteration: 12, Func. Count: 117, Neg. LLF: 154.1394684521596
Iteration: 13, Func. Count: 126, Neg. LLF: 154.13869973056947
Iteration: 14, Func. Count: 135, Neg. LLF: 154.13868809313604
Iteration: 15, Func. Count: 143, Neg. LLF: 154.13868791115763
Optimization terminated successfully (Exit mode 0)
Current function value: 154.13868809313604
Iterations: 15
Function evaluations: 143
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 232.25474325265796
Iteration: 2, Func. Count: 22, Neg. LLF: 157.24466699691348
Iteration: 3, Func. Count: 33, Neg. LLF: 159.56780622962665
Iteration: 4, Func. Count: 44, Neg. LLF: 155.50436618055795
Iteration: 5, Func. Count: 55, Neg. LLF: 154.94831906611628
Iteration: 6, Func. Count: 66, Neg. LLF: 154.08773079473903
Iteration: 7, Func. Count: 76, Neg. LLF: 158.54686308654934
Iteration: 8, Func. Count: 87, Neg. LLF: 153.673144904973
Iteration: 9, Func. Count: 97, Neg. LLF: 153.57851108099274
Iteration: 10, Func. Count: 107, Neg. LLF: 153.60639452409228
Iteration: 11, Func. Count: 118, Neg. LLF: 153.48714459911227
Iteration: 12, Func. Count: 128, Neg. LLF: 153.41550397371861
Iteration: 13, Func. Count: 138, Neg. LLF: 153.38821248145638
Iteration: 14, Func. Count: 148, Neg. LLF: 153.36517719741937
Iteration: 15, Func. Count: 158, Neg. LLF: 153.3625201891873
Iteration: 16, Func. Count: 168, Neg. LLF: 153.35969290214263
Iteration: 17, Func. Count: 178, Neg. LLF: 153.35896197068996
Iteration: 18, Func. Count: 188, Neg. LLF: 153.35897295554923
Iteration: 19, Func. Count: 198, Neg. LLF: 153.35896394096346
Iteration: 20, Func. Count: 208, Neg. LLF: 153.35894437018527
Iteration: 21, Func. Count: 218, Neg. LLF: 153.3589484635998
Iteration: 22, Func. Count: 238, Neg. LLF: 153.35896042212255
Iteration: 23, Func. Count: 250, Neg. LLF: 153.35896019727065
Iteration: 24, Func. Count: 262, Neg. LLF: 153.35896018156052
Iteration: 25, Func. Count: 271, Neg. LLF: 153.3589600162217
Optimization terminated successfully (Exit mode 0)
Current function value: 153.35896018156052
Iterations: 26
Function evaluations: 271
Gradient evaluations: 25
Iteration: 1, Func. Count: 8, Neg. LLF: 165.01262740911997
Iteration: 2, Func. Count: 16, Neg. LLF: 160.08352126874578
Iteration: 3, Func. Count: 25, Neg. LLF: 160.28840239463773
Iteration: 4, Func. Count: 34, Neg. LLF: 161.57014649415908
Iteration: 5, Func. Count: 42, Neg. LLF: 158.75724063410175
Iteration: 6, Func. Count: 51, Neg. LLF: 158.4151877133388
Iteration: 7, Func. Count: 58, Neg. LLF: 158.33778444582074
Iteration: 8, Func. Count: 65, Neg. LLF: 158.26195941706064
Iteration: 9, Func. Count: 72, Neg. LLF: 158.11711166884774
Iteration: 10, Func. Count: 79, Neg. LLF: 158.06462491005473
Iteration: 11, Func. Count: 86, Neg. LLF: 158.0196083524694
Iteration: 12, Func. Count: 93, Neg. LLF: 158.00291287217857
Iteration: 13, Func. Count: 100, Neg. LLF: 158.00110612694934
Iteration: 14, Func. Count: 107, Neg. LLF: 158.00048857189103
Iteration: 15, Func. Count: 114, Neg. LLF: 158.0004792198902
Iteration: 16, Func. Count: 121, Neg. LLF: 158.00047751597467
Iteration: 17, Func. Count: 128, Neg. LLF: 158.00047689617955
Optimization terminated successfully (Exit mode 0)
Current function value: 158.00047689617955
Iterations: 17
Function evaluations: 128
Gradient evaluations: 17
Iteration: 1, Func. Count: 9, Neg. LLF: 378.0438844807371
Iteration: 2, Func. Count: 18, Neg. LLF: 155.58416789273704
Iteration: 3, Func. Count: 27, Neg. LLF: 154.9693589438562
Iteration: 4, Func. Count: 36, Neg. LLF: 154.3237934644933
Iteration: 5, Func. Count: 45, Neg. LLF: 154.21620600745354
Iteration: 6, Func. Count: 54, Neg. LLF: 154.08751803864274
Iteration: 7, Func. Count: 62, Neg. LLF: 154.085973085573
Iteration: 8, Func. Count: 70, Neg. LLF: 154.08588989463505
Iteration: 9, Func. Count: 78, Neg. LLF: 154.0858831220569
Iteration: 10, Func. Count: 85, Neg. LLF: 154.08588295943287
Optimization terminated successfully (Exit mode 0)
Current function value: 154.0858831220569
Iterations: 10
Function evaluations: 85
Gradient evaluations: 10
Iteration: 1, Func. Count: 10, Neg. LLF: 406.12658616667045
Iteration: 2, Func. Count: 20, Neg. LLF: 176.10929011526926
Iteration: 3, Func. Count: 30, Neg. LLF: 154.59308936413382
Iteration: 4, Func. Count: 39, Neg. LLF: 154.53300936923455
Iteration: 5, Func. Count: 49, Neg. LLF: 170.79542480550947
Iteration: 6, Func. Count: 60, Neg. LLF: 156.31587753680566
Iteration: 7, Func. Count: 70, Neg. LLF: 154.0191476681589
Iteration: 8, Func. Count: 79, Neg. LLF: 154.01836819296415
Iteration: 9, Func. Count: 88, Neg. LLF: 154.0178892495032
Iteration: 10, Func. Count: 97, Neg. LLF: 154.0175434710622
Iteration: 11, Func. Count: 106, Neg. LLF: 154.01729653248654
Iteration: 12, Func. Count: 115, Neg. LLF: 154.01721366229313
Iteration: 13, Func. Count: 124, Neg. LLF: 154.01721196799352
Iteration: 14, Func. Count: 132, Neg. LLF: 154.01721183800808
Optimization terminated successfully (Exit mode 0)
Current function value: 154.01721196799352
Iterations: 14
Function evaluations: 132
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 183.99217887473083
Iteration: 2, Func. Count: 22, Neg. LLF: 156.7661668482874
Iteration: 3, Func. Count: 33, Neg. LLF: 154.12970804131822
Iteration: 4, Func. Count: 43, Neg. LLF: 178.23825618062688
Iteration: 5, Func. Count: 54, Neg. LLF: 153.97705324160108
Iteration: 6, Func. Count: 65, Neg. LLF: 154.54453434701344
Iteration: 7, Func. Count: 76, Neg. LLF: 154.06537738233757
Iteration: 8, Func. Count: 87, Neg. LLF: 154.1133910748438
Iteration: 9, Func. Count: 98, Neg. LLF: 153.45329898851813
Iteration: 10, Func. Count: 109, Neg. LLF: 153.40419904429712
Iteration: 11, Func. Count: 119, Neg. LLF: 153.40307997372864
Iteration: 12, Func. Count: 129, Neg. LLF: 153.40244016525784
Iteration: 13, Func. Count: 139, Neg. LLF: 153.40243879989913
Iteration: 14, Func. Count: 148, Neg. LLF: 153.40243867190475
Optimization terminated successfully (Exit mode 0)
Current function value: 153.40243879989913
Iterations: 14
Function evaluations: 148
Gradient evaluations: 14
Iteration: 1, Func. Count: 12, Neg. LLF: 182.9663537781103
Iteration: 2, Func. Count: 24, Neg. LLF: 170.9222185605949
Iteration: 3, Func. Count: 36, Neg. LLF: 161.4509691275545
Iteration: 4, Func. Count: 48, Neg. LLF: 159.65736311076998
Iteration: 5, Func. Count: 60, Neg. LLF: 155.63581259331417
Iteration: 6, Func. Count: 72, Neg. LLF: 154.44093793567404
Iteration: 7, Func. Count: 84, Neg. LLF: 153.22517261023623
Iteration: 8, Func. Count: 95, Neg. LLF: 154.4976125830837
Iteration: 9, Func. Count: 107, Neg. LLF: 154.7090921543817
Iteration: 10, Func. Count: 119, Neg. LLF: 152.9947759546771
Iteration: 11, Func. Count: 131, Neg. LLF: 152.90527356594285
Iteration: 12, Func. Count: 142, Neg. LLF: 152.89280379619396
Iteration: 13, Func. Count: 153, Neg. LLF: 152.89261663593214
Iteration: 14, Func. Count: 164, Neg. LLF: 152.89259254168883
Iteration: 15, Func. Count: 175, Neg. LLF: 152.89259176163227
Optimization terminated successfully (Exit mode 0)
Current function value: 152.89259176163227
Iterations: 15
Function evaluations: 175
Gradient evaluations: 15
Iteration: 1, Func. Count: 9, Neg. LLF: 162.72096341004442
Iteration: 2, Func. Count: 18, Neg. LLF: 160.48799720394322
Iteration: 3, Func. Count: 27, Neg. LLF: 159.30477602922605
Iteration: 4, Func. Count: 37, Neg. LLF: 158.45550012408802
Iteration: 5, Func. Count: 46, Neg. LLF: 157.51735389549344
Iteration: 6, Func. Count: 54, Neg. LLF: 158.51425701848268
Iteration: 7, Func. Count: 63, Neg. LLF: 157.57008134631096
Iteration: 8, Func. Count: 72, Neg. LLF: 157.38090385258786
Iteration: 9, Func. Count: 81, Neg. LLF: 156.7865765858383
Iteration: 10, Func. Count: 89, Neg. LLF: 156.47461942840255
Iteration: 11, Func. Count: 97, Neg. LLF: 155.64495678290265
Iteration: 12, Func. Count: 105, Neg. LLF: 155.20797309588437
Iteration: 13, Func. Count: 113, Neg. LLF: 155.1863819260583
Iteration: 14, Func. Count: 121, Neg. LLF: 155.18087101226936
Iteration: 15, Func. Count: 129, Neg. LLF: 155.18101451969858
Iteration: 16, Func. Count: 138, Neg. LLF: 155.17987505064715
Iteration: 17, Func. Count: 146, Neg. LLF: 155.17983595052166
Iteration: 18, Func. Count: 154, Neg. LLF: 155.17983518399188
Optimization terminated successfully (Exit mode 0)
Current function value: 155.17983518399188
Iterations: 18
Function evaluations: 154
Gradient evaluations: 18
Iteration: 1, Func. Count: 10, Neg. LLF: 332.29293063519833
Iteration: 2, Func. Count: 20, Neg. LLF: 155.5048355003525
Iteration: 3, Func. Count: 30, Neg. LLF: 154.85687385756628
Iteration: 4, Func. Count: 40, Neg. LLF: 154.11041924209437
Iteration: 5, Func. Count: 49, Neg. LLF: 154.19873431935832
Iteration: 6, Func. Count: 59, Neg. LLF: 154.28928335220934
Iteration: 7, Func. Count: 69, Neg. LLF: 154.08603043037493
Iteration: 8, Func. Count: 78, Neg. LLF: 154.08591705513325
Iteration: 9, Func. Count: 87, Neg. LLF: 154.08588576189007
Iteration: 10, Func. Count: 96, Neg. LLF: 154.08588291702426
Iteration: 11, Func. Count: 104, Neg. LLF: 154.08588275428164
Optimization terminated successfully (Exit mode 0)
Current function value: 154.08588291702426
Iterations: 11
Function evaluations: 104
Gradient evaluations: 11
Iteration: 1, Func. Count: 11, Neg. LLF: 184.54397531666442
Iteration: 2, Func. Count: 22, Neg. LLF: 154.8754912813527
Iteration: 3, Func. Count: 32, Neg. LLF: 186.96382305948634
Iteration: 4, Func. Count: 43, Neg. LLF: 155.4801930433027
Iteration: 5, Func. Count: 54, Neg. LLF: 154.2472427007585
Iteration: 6, Func. Count: 65, Neg. LLF: 153.76595776973517
Iteration: 7, Func. Count: 75, Neg. LLF: 154.0127741167115
Iteration: 8, Func. Count: 86, Neg. LLF: 154.46495394152882
Iteration: 9, Func. Count: 97, Neg. LLF: 153.55229957466068
Iteration: 10, Func. Count: 108, Neg. LLF: 153.39297753239197
Iteration: 11, Func. Count: 118, Neg. LLF: 153.37463220979834
Iteration: 12, Func. Count: 128, Neg. LLF: 153.37480575915254
Iteration: 13, Func. Count: 139, Neg. LLF: 153.35510948429493
Iteration: 14, Func. Count: 149, Neg. LLF: 153.3535934944147
Iteration: 15, Func. Count: 159, Neg. LLF: 153.3529740698518
Iteration: 16, Func. Count: 169, Neg. LLF: 153.35293314708204
Iteration: 17, Func. Count: 179, Neg. LLF: 153.3529318242622
Iteration: 18, Func. Count: 188, Neg. LLF: 153.3529316488784
Optimization terminated successfully (Exit mode 0)
Current function value: 153.3529318242622
Iterations: 18
Function evaluations: 188
Gradient evaluations: 18
Iteration: 1, Func. Count: 12, Neg. LLF: 183.02967431538065
Iteration: 2, Func. Count: 24, Neg. LLF: 198.34215087101205
Iteration: 3, Func. Count: 36, Neg. LLF: 154.99963095010975
Iteration: 4, Func. Count: 48, Neg. LLF: 152.7464394826398
Iteration: 5, Func. Count: 59, Neg. LLF: 152.81550001406046
Iteration: 6, Func. Count: 71, Neg. LLF: 152.18502294367727
Iteration: 7, Func. Count: 82, Neg. LLF: 152.07613325332912
Iteration: 8, Func. Count: 93, Neg. LLF: 152.06845020986717
Iteration: 9, Func. Count: 104, Neg. LLF: 152.0667389724034
Iteration: 10, Func. Count: 115, Neg. LLF: 152.06510778818713
Iteration: 11, Func. Count: 126, Neg. LLF: 152.06504225855636
Iteration: 12, Func. Count: 137, Neg. LLF: 152.06492134894404
Iteration: 13, Func. Count: 148, Neg. LLF: 152.06491886190693
Iteration: 14, Func. Count: 158, Neg. LLF: 152.06491877424605
Optimization terminated successfully (Exit mode 0)
Current function value: 152.06491886190693
Iterations: 14
Function evaluations: 158
Gradient evaluations: 14
Iteration: 1, Func. Count: 13, Neg. LLF: 182.42700770446643
Iteration: 2, Func. Count: 26, Neg. LLF: 195.30970633207622
Iteration: 3, Func. Count: 39, Neg. LLF: 218.21645944277813
Iteration: 4, Func. Count: 52, Neg. LLF: 155.06562574223076
Iteration: 5, Func. Count: 65, Neg. LLF: 153.75657204333913
Iteration: 6, Func. Count: 78, Neg. LLF: 152.69952369500672
Iteration: 7, Func. Count: 90, Neg. LLF: 155.78309578914545
Iteration: 8, Func. Count: 103, Neg. LLF: 153.0382507210291
Iteration: 9, Func. Count: 116, Neg. LLF: 152.29257721479
Iteration: 10, Func. Count: 128, Neg. LLF: 152.23075059810915
Iteration: 11, Func. Count: 140, Neg. LLF: 152.21835014366226
Iteration: 12, Func. Count: 152, Neg. LLF: 152.21011324629436
Iteration: 13, Func. Count: 164, Neg. LLF: 152.20806141932798
Iteration: 14, Func. Count: 176, Neg. LLF: 152.20764415533267
Iteration: 15, Func. Count: 188, Neg. LLF: 152.20754715600702
Iteration: 16, Func. Count: 200, Neg. LLF: 152.2075167315906
Iteration: 17, Func. Count: 212, Neg. LLF: 152.20751489033884
Iteration: 18, Func. Count: 223, Neg. LLF: 152.20751480969182
Optimization terminated successfully (Exit mode 0)
Current function value: 152.20751489033884
Iterations: 18
Function evaluations: 223
Gradient evaluations: 18
Iteration: 1, Func. Count: 10, Neg. LLF: 159.6537262866781
Iteration: 2, Func. Count: 20, Neg. LLF: 159.90033220924963
Iteration: 3, Func. Count: 30, Neg. LLF: 159.701806873637
Iteration: 4, Func. Count: 40, Neg. LLF: 157.67719736417973
Iteration: 5, Func. Count: 49, Neg. LLF: 157.9734630594295
Iteration: 6, Func. Count: 59, Neg. LLF: 157.88032720400784
Iteration: 7, Func. Count: 69, Neg. LLF: 158.7329059196464
Iteration: 8, Func. Count: 79, Neg. LLF: 157.51716643509624
Iteration: 9, Func. Count: 89, Neg. LLF: 157.14851908845728
Iteration: 10, Func. Count: 98, Neg. LLF: 156.53467559168504
Iteration: 11, Func. Count: 107, Neg. LLF: 155.8088383681522
Iteration: 12, Func. Count: 116, Neg. LLF: 159.98340926821004
Iteration: 13, Func. Count: 126, Neg. LLF: 155.76727444729613
Iteration: 14, Func. Count: 136, Neg. LLF: 155.20308538900719
Iteration: 15, Func. Count: 145, Neg. LLF: 155.1874733856721
Iteration: 16, Func. Count: 154, Neg. LLF: 155.18211238813262
Iteration: 17, Func. Count: 163, Neg. LLF: 155.18001337067776
Iteration: 18, Func. Count: 172, Neg. LLF: 155.17984061951893
Iteration: 19, Func. Count: 181, Neg. LLF: 155.17983519011645
Iteration: 20, Func. Count: 189, Neg. LLF: 155.1798352932728
Optimization terminated successfully (Exit mode 0)
Current function value: 155.17983519011645
Iterations: 20
Function evaluations: 189
Gradient evaluations: 20
Iteration: 1, Func. Count: 11, Neg. LLF: 236.827134599308
Iteration: 2, Func. Count: 22, Neg. LLF: 155.38871581353175
Iteration: 3, Func. Count: 32, Neg. LLF: 407.2661592318209
Iteration: 4, Func. Count: 43, Neg. LLF: 159.93513349207794
Iteration: 5, Func. Count: 54, Neg. LLF: 156.90240595562588
Iteration: 6, Func. Count: 65, Neg. LLF: 154.62746441880725
Iteration: 7, Func. Count: 75, Neg. LLF: 155.20592223253254
Iteration: 8, Func. Count: 86, Neg. LLF: 154.84914112112682
Iteration: 9, Func. Count: 97, Neg. LLF: 154.1232578140767
Iteration: 10, Func. Count: 107, Neg. LLF: 154.17345304694842
Iteration: 11, Func. Count: 118, Neg. LLF: 154.08890544289267
Iteration: 12, Func. Count: 128, Neg. LLF: 154.0861499864562
Iteration: 13, Func. Count: 138, Neg. LLF: 154.08594118475494
Iteration: 14, Func. Count: 148, Neg. LLF: 154.0858884196199
Iteration: 15, Func. Count: 158, Neg. LLF: 154.08588289863454
Iteration: 16, Func. Count: 167, Neg. LLF: 154.08588273585323
Optimization terminated successfully (Exit mode 0)
Current function value: 154.08588289863454
Iterations: 16
Function evaluations: 167
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 184.1572500291205
Iteration: 2, Func. Count: 24, Neg. LLF: 155.200930150755
Iteration: 3, Func. Count: 35, Neg. LLF: 179.49154961117824
Iteration: 4, Func. Count: 47, Neg. LLF: 154.20508688605696
Iteration: 5, Func. Count: 59, Neg. LLF: 153.9919830417728
Iteration: 6, Func. Count: 70, Neg. LLF: 153.7079241782546
Iteration: 7, Func. Count: 81, Neg. LLF: 154.47281175294336
Iteration: 8, Func. Count: 93, Neg. LLF: 153.68580141212584
Iteration: 9, Func. Count: 105, Neg. LLF: 153.38610969439344
Iteration: 10, Func. Count: 116, Neg. LLF: 153.38368888465322
Iteration: 11, Func. Count: 127, Neg. LLF: 153.37536371618538
Iteration: 12, Func. Count: 138, Neg. LLF: 153.36567135945506
Iteration: 13, Func. Count: 149, Neg. LLF: 153.35735641961898
Iteration: 14, Func. Count: 160, Neg. LLF: 153.3534729223102
Iteration: 15, Func. Count: 171, Neg. LLF: 153.3529469614015
Iteration: 16, Func. Count: 182, Neg. LLF: 153.352931755939
Iteration: 17, Func. Count: 192, Neg. LLF: 153.35293158066165
Optimization terminated successfully (Exit mode 0)
Current function value: 153.352931755939
Iterations: 17
Function evaluations: 192
Gradient evaluations: 17
Iteration: 1, Func. Count: 13, Neg. LLF: 182.3977709724748
Iteration: 2, Func. Count: 26, Neg. LLF: 196.12025824998747
Iteration: 3, Func. Count: 39, Neg. LLF: 154.43791595809742
Iteration: 4, Func. Count: 51, Neg. LLF: 152.7415889108952
Iteration: 5, Func. Count: 63, Neg. LLF: 152.75021120558296
Iteration: 6, Func. Count: 76, Neg. LLF: 152.11681955266866
Iteration: 7, Func. Count: 88, Neg. LLF: 152.0899879206502
Iteration: 8, Func. Count: 100, Neg. LLF: 152.07647858051195
Iteration: 9, Func. Count: 112, Neg. LLF: 152.1060761162721
Iteration: 10, Func. Count: 125, Neg. LLF: 152.07694235981845
Iteration: 11, Func. Count: 138, Neg. LLF: 152.06516691091778
Iteration: 12, Func. Count: 150, Neg. LLF: 152.0649288861865
Iteration: 13, Func. Count: 162, Neg. LLF: 152.06491918572135
Iteration: 14, Func. Count: 173, Neg. LLF: 152.0649190980008
Optimization terminated successfully (Exit mode 0)
Current function value: 152.06491918572135
Iterations: 14
Function evaluations: 173
Gradient evaluations: 14
Iteration: 1, Func. Count: 14, Neg. LLF: 181.81923165605403
Iteration: 2, Func. Count: 28, Neg. LLF: 193.01063783308715
Iteration: 3, Func. Count: 42, Neg. LLF: 210.15071606457695
Iteration: 4, Func. Count: 56, Neg. LLF: 154.93737731384073
Iteration: 5, Func. Count: 70, Neg. LLF: 152.78152980965808
Iteration: 6, Func. Count: 83, Neg. LLF: 153.28067227086476
Iteration: 7, Func. Count: 97, Neg. LLF: 158.8758877502216
Iteration: 8, Func. Count: 111, Neg. LLF: 153.94912794629536
Iteration: 9, Func. Count: 125, Neg. LLF: 152.3017234538266
Iteration: 10, Func. Count: 138, Neg. LLF: 152.22215917918265
Iteration: 11, Func. Count: 151, Neg. LLF: 152.21366021372356
Iteration: 12, Func. Count: 164, Neg. LLF: 152.20862465301167
Iteration: 13, Func. Count: 177, Neg. LLF: 152.20776120435647
Iteration: 14, Func. Count: 190, Neg. LLF: 152.20755091533346
Iteration: 15, Func. Count: 203, Neg. LLF: 152.20752199340447
Iteration: 16, Func. Count: 216, Neg. LLF: 152.20751724264235
Iteration: 17, Func. Count: 229, Neg. LLF: 152.2075148843221
Iteration: 18, Func. Count: 241, Neg. LLF: 152.20751480367068
Optimization terminated successfully (Exit mode 0)
Current function value: 152.2075148843221
Iterations: 18
Function evaluations: 241
Gradient evaluations: 18
Iteration: 1, Func. Count: 7, Neg. LLF: 160.63944713088227
Iteration: 2, Func. Count: 14, Neg. LLF: 161.93975388170915
Iteration: 3, Func. Count: 22, Neg. LLF: 159.6631609745911
Iteration: 4, Func. Count: 29, Neg. LLF: 159.5969097988275
Iteration: 5, Func. Count: 35, Neg. LLF: 159.58065847663974
Iteration: 6, Func. Count: 41, Neg. LLF: 159.5449658649202
Iteration: 7, Func. Count: 47, Neg. LLF: 159.51552229022627
Iteration: 8, Func. Count: 53, Neg. LLF: 159.45766693084474
Iteration: 9, Func. Count: 59, Neg. LLF: 159.39857642562987
Iteration: 10, Func. Count: 65, Neg. LLF: 159.3481039685511
Iteration: 11, Func. Count: 71, Neg. LLF: 159.33419272048906
Iteration: 12, Func. Count: 77, Neg. LLF: 159.3336490855495
Iteration: 13, Func. Count: 83, Neg. LLF: 159.33363823704153
Iteration: 14, Func. Count: 88, Neg. LLF: 159.33363823710468
Optimization terminated successfully (Exit mode 0)
Current function value: 159.33363823704153
Iterations: 14
Function evaluations: 88
Gradient evaluations: 14
Iteration: 1, Func. Count: 8, Neg. LLF: 171.7922126111816
Iteration: 2, Func. Count: 16, Neg. LLF: 159.48713866250637
Iteration: 3, Func. Count: 24, Neg. LLF: 158.08592720035327
Iteration: 4, Func. Count: 32, Neg. LLF: 158.36161683354376
Iteration: 5, Func. Count: 40, Neg. LLF: 157.46351947339141
Iteration: 6, Func. Count: 47, Neg. LLF: 157.48344958600785
Iteration: 7, Func. Count: 55, Neg. LLF: 157.19347557981766
Iteration: 8, Func. Count: 62, Neg. LLF: 157.19304565269144
Iteration: 9, Func. Count: 69, Neg. LLF: 157.19291625209223
Iteration: 10, Func. Count: 76, Neg. LLF: 157.19291573627956
Optimization terminated successfully (Exit mode 0)
Current function value: 157.19291573627956
Iterations: 10
Function evaluations: 76
Gradient evaluations: 10
Iteration: 1, Func. Count: 9, Neg. LLF: 170.04339739481236
Iteration: 2, Func. Count: 18, Neg. LLF: 158.69789352326558
Iteration: 3, Func. Count: 27, Neg. LLF: 157.74332301590678
Iteration: 4, Func. Count: 36, Neg. LLF: 157.476613541847
Iteration: 5, Func. Count: 44, Neg. LLF: 158.96921636272694
Iteration: 6, Func. Count: 53, Neg. LLF: 156.9003282206721
Iteration: 7, Func. Count: 61, Neg. LLF: 156.87437304027722
Iteration: 8, Func. Count: 69, Neg. LLF: 156.86590455310662
Iteration: 9, Func. Count: 77, Neg. LLF: 156.8658219056041
Iteration: 10, Func. Count: 86, Neg. LLF: 156.86448060423677
Iteration: 11, Func. Count: 94, Neg. LLF: 156.86444406132134
Iteration: 12, Func. Count: 101, Neg. LLF: 156.86444401193924
Optimization terminated successfully (Exit mode 0)
Current function value: 156.86444406132134
Iterations: 12
Function evaluations: 101
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 169.31604646080763
Iteration: 2, Func. Count: 20, Neg. LLF: 158.62317249953142
Iteration: 3, Func. Count: 30, Neg. LLF: 160.75843711156665
Iteration: 4, Func. Count: 40, Neg. LLF: 157.3735099771268
Iteration: 5, Func. Count: 49, Neg. LLF: 160.34430764853144
Iteration: 6, Func. Count: 59, Neg. LLF: 159.18677522743485
Iteration: 7, Func. Count: 69, Neg. LLF: 157.0703594751459
Iteration: 8, Func. Count: 78, Neg. LLF: 157.05600121550475
Iteration: 9, Func. Count: 87, Neg. LLF: 157.0531736646779
Iteration: 10, Func. Count: 96, Neg. LLF: 157.05118106684873
Iteration: 11, Func. Count: 105, Neg. LLF: 157.04999053410884
Iteration: 12, Func. Count: 114, Neg. LLF: 157.04958442453182
Iteration: 13, Func. Count: 123, Neg. LLF: 157.049495389516
Iteration: 14, Func. Count: 132, Neg. LLF: 157.0494904259755
Iteration: 15, Func. Count: 140, Neg. LLF: 157.04949037394638
Optimization terminated successfully (Exit mode 0)
Current function value: 157.0494904259755
Iterations: 15
Function evaluations: 140
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 168.9125349065524
Iteration: 2, Func. Count: 22, Neg. LLF: 168.37154327096744
Iteration: 3, Func. Count: 33, Neg. LLF: 157.31827413288212
Iteration: 4, Func. Count: 44, Neg. LLF: 156.88348799025061
Iteration: 5, Func. Count: 55, Neg. LLF: 157.00465491390383
Iteration: 6, Func. Count: 66, Neg. LLF: 156.40839032559873
Iteration: 7, Func. Count: 76, Neg. LLF: 156.26631804519673
Iteration: 8, Func. Count: 86, Neg. LLF: 156.26634002308114
Iteration: 9, Func. Count: 97, Neg. LLF: 156.26118562072062
Iteration: 10, Func. Count: 107, Neg. LLF: 156.26108737478978
Iteration: 11, Func. Count: 117, Neg. LLF: 156.26098674935938
Iteration: 12, Func. Count: 127, Neg. LLF: 156.260937351572
Iteration: 13, Func. Count: 137, Neg. LLF: 156.2609307442713
Iteration: 14, Func. Count: 146, Neg. LLF: 156.26093072539012
Optimization terminated successfully (Exit mode 0)
Current function value: 156.2609307442713
Iterations: 14
Function evaluations: 146
Gradient evaluations: 14
Iteration: 1, Func. Count: 8, Neg. LLF: 160.32236767726627
Iteration: 2, Func. Count: 16, Neg. LLF: 160.5581674147519
Iteration: 3, Func. Count: 24, Neg. LLF: 159.45856951822202
Iteration: 4, Func. Count: 32, Neg. LLF: 162.65812469879978
Iteration: 5, Func. Count: 40, Neg. LLF: 159.14306863485513
Iteration: 6, Func. Count: 48, Neg. LLF: 158.61285919851588
Iteration: 7, Func. Count: 55, Neg. LLF: 158.57879592154103
Iteration: 8, Func. Count: 62, Neg. LLF: 159.5178615563844
Iteration: 9, Func. Count: 71, Neg. LLF: 158.4796517676644
Iteration: 10, Func. Count: 78, Neg. LLF: 158.1000974728167
Iteration: 11, Func. Count: 85, Neg. LLF: 157.73615060007575
Iteration: 12, Func. Count: 92, Neg. LLF: 157.64665084809315
Iteration: 13, Func. Count: 99, Neg. LLF: 157.62840753685185
Iteration: 14, Func. Count: 106, Neg. LLF: 157.62641698234427
Iteration: 15, Func. Count: 113, Neg. LLF: 157.62626689755717
Iteration: 16, Func. Count: 120, Neg. LLF: 157.6262559730163
Iteration: 17, Func. Count: 126, Neg. LLF: 157.62625596616388
Optimization terminated successfully (Exit mode 0)
Current function value: 157.6262559730163
Iterations: 17
Function evaluations: 126
Gradient evaluations: 17
Iteration: 1, Func. Count: 9, Neg. LLF: 456.6654550870857
Iteration: 2, Func. Count: 18, Neg. LLF: 154.46808569607722
Iteration: 3, Func. Count: 26, Neg. LLF: 196.280558219021
Iteration: 4, Func. Count: 36, Neg. LLF: 165.7030608684046
Iteration: 5, Func. Count: 45, Neg. LLF: 155.07560138493739
Iteration: 6, Func. Count: 54, Neg. LLF: 158.28737657302233
Iteration: 7, Func. Count: 64, Neg. LLF: 154.13340692156294
Iteration: 8, Func. Count: 73, Neg. LLF: 154.1160681833817
Iteration: 9, Func. Count: 82, Neg. LLF: 154.10915011683815
Iteration: 10, Func. Count: 90, Neg. LLF: 154.10903111708762
Iteration: 11, Func. Count: 97, Neg. LLF: 154.10903093109206
Optimization terminated successfully (Exit mode 0)
Current function value: 154.10903111708762
Iterations: 11
Function evaluations: 97
Gradient evaluations: 11
Iteration: 1, Func. Count: 10, Neg. LLF: 390.86902874538237
Iteration: 2, Func. Count: 20, Neg. LLF: 155.42013915313967
Iteration: 3, Func. Count: 30, Neg. LLF: 156.87194570254104
Iteration: 4, Func. Count: 40, Neg. LLF: 158.1506411532068
Iteration: 5, Func. Count: 50, Neg. LLF: 154.1818898299112
Iteration: 6, Func. Count: 59, Neg. LLF: 154.3791067234274
Iteration: 7, Func. Count: 69, Neg. LLF: 158.75282921280672
Iteration: 8, Func. Count: 79, Neg. LLF: 154.14164291943464
Iteration: 9, Func. Count: 89, Neg. LLF: 154.1266061565172
Iteration: 10, Func. Count: 99, Neg. LLF: 154.10940673294095
Iteration: 11, Func. Count: 108, Neg. LLF: 154.1090843096232
Iteration: 12, Func. Count: 117, Neg. LLF: 154.10903447697524
Iteration: 13, Func. Count: 126, Neg. LLF: 154.1090310648296
Iteration: 14, Func. Count: 134, Neg. LLF: 154.1090308921065
Optimization terminated successfully (Exit mode 0)
Current function value: 154.1090310648296
Iterations: 14
Function evaluations: 134
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 232.11570586556036
Iteration: 2, Func. Count: 22, Neg. LLF: 155.6911131736923
Iteration: 3, Func. Count: 32, Neg. LLF: 159.2680427012915
Iteration: 4, Func. Count: 43, Neg. LLF: 161.22280471904378
Iteration: 5, Func. Count: 54, Neg. LLF: 158.43362440872662
Iteration: 6, Func. Count: 65, Neg. LLF: 155.30328991006738
Iteration: 7, Func. Count: 76, Neg. LLF: 163.27346368921852
Iteration: 8, Func. Count: 87, Neg. LLF: 155.3723798144048
Iteration: 9, Func. Count: 98, Neg. LLF: 154.7182599845946
Iteration: 10, Func. Count: 109, Neg. LLF: 154.41758742844817
Iteration: 11, Func. Count: 120, Neg. LLF: 154.1315027265711
Iteration: 12, Func. Count: 131, Neg. LLF: 154.124680218705
Iteration: 13, Func. Count: 142, Neg. LLF: 154.1212029178576
Iteration: 14, Func. Count: 153, Neg. LLF: 154.1098186885995
Iteration: 15, Func. Count: 163, Neg. LLF: 154.1090116342234
Iteration: 16, Func. Count: 173, Neg. LLF: 154.10894533374417
Iteration: 17, Func. Count: 183, Neg. LLF: 154.10892914157714
Iteration: 18, Func. Count: 193, Neg. LLF: 154.10892306241175
Iteration: 19, Func. Count: 203, Neg. LLF: 154.10892258211214
Optimization terminated successfully (Exit mode 0)
Current function value: 154.10892258211214
Iterations: 19
Function evaluations: 203
Gradient evaluations: 19
Iteration: 1, Func. Count: 12, Neg. LLF: 230.7821428562469
Iteration: 2, Func. Count: 24, Neg. LLF: 160.53827839556786
Iteration: 3, Func. Count: 36, Neg. LLF: 157.7249797108227
Iteration: 4, Func. Count: 48, Neg. LLF: 156.19766988148993
Iteration: 5, Func. Count: 60, Neg. LLF: 156.0774498969669
Iteration: 6, Func. Count: 72, Neg. LLF: 154.17504091408966
Iteration: 7, Func. Count: 83, Neg. LLF: 154.86591086958126
Iteration: 8, Func. Count: 95, Neg. LLF: 154.2659048724335
Iteration: 9, Func. Count: 107, Neg. LLF: 153.7628971587285
Iteration: 10, Func. Count: 118, Neg. LLF: 153.80291476844462
Iteration: 11, Func. Count: 130, Neg. LLF: 153.75025151847785
Iteration: 12, Func. Count: 142, Neg. LLF: 153.74196466642547
Iteration: 13, Func. Count: 153, Neg. LLF: 153.74178118153864
Iteration: 14, Func. Count: 164, Neg. LLF: 153.74177031466115
Iteration: 15, Func. Count: 174, Neg. LLF: 153.74177018958602
Optimization terminated successfully (Exit mode 0)
Current function value: 153.74177031466115
Iterations: 15
Function evaluations: 174
Gradient evaluations: 15
Iteration: 1, Func. Count: 9, Neg. LLF: 166.1462283891968
Iteration: 2, Func. Count: 18, Neg. LLF: 160.33407738127548
Iteration: 3, Func. Count: 28, Neg. LLF: 160.5709142833296
Iteration: 4, Func. Count: 38, Neg. LLF: 162.65131427418103
Iteration: 5, Func. Count: 47, Neg. LLF: 158.6872827329965
Iteration: 6, Func. Count: 56, Neg. LLF: 158.40697151631744
Iteration: 7, Func. Count: 64, Neg. LLF: 159.32687693669072
Iteration: 8, Func. Count: 73, Neg. LLF: 158.51161394251454
Iteration: 9, Func. Count: 82, Neg. LLF: 158.30797035384245
Iteration: 10, Func. Count: 90, Neg. LLF: 158.1521209343959
Iteration: 11, Func. Count: 98, Neg. LLF: 157.84843384877996
Iteration: 12, Func. Count: 106, Neg. LLF: 157.6078496559117
Iteration: 13, Func. Count: 114, Neg. LLF: 157.33702926426707
Iteration: 14, Func. Count: 122, Neg. LLF: 157.33020873852018
Iteration: 15, Func. Count: 130, Neg. LLF: 157.32367762716336
Iteration: 16, Func. Count: 138, Neg. LLF: 157.32309096059058
Iteration: 17, Func. Count: 146, Neg. LLF: 157.32299500342302
Iteration: 18, Func. Count: 154, Neg. LLF: 157.3229914967929
Iteration: 19, Func. Count: 161, Neg. LLF: 157.32299148979985
Optimization terminated successfully (Exit mode 0)
Current function value: 157.3229914967929
Iterations: 19
Function evaluations: 161
Gradient evaluations: 19
Iteration: 1, Func. Count: 10, Neg. LLF: 394.418050376225
Iteration: 2, Func. Count: 20, Neg. LLF: 158.39150291669947
Iteration: 3, Func. Count: 30, Neg. LLF: 154.3579830999922
Iteration: 4, Func. Count: 39, Neg. LLF: 161.97954448477967
Iteration: 5, Func. Count: 50, Neg. LLF: 159.1733269662906
Iteration: 6, Func. Count: 60, Neg. LLF: 157.6176428630755
Iteration: 7, Func. Count: 70, Neg. LLF: 154.56001900985933
Iteration: 8, Func. Count: 80, Neg. LLF: 154.0602428605758
Iteration: 9, Func. Count: 89, Neg. LLF: 154.07419078464858
Iteration: 10, Func. Count: 99, Neg. LLF: 154.05552620537145
Iteration: 11, Func. Count: 108, Neg. LLF: 154.05424174980192
Iteration: 12, Func. Count: 117, Neg. LLF: 154.05423440019416
Iteration: 13, Func. Count: 125, Neg. LLF: 154.05423423510308
Optimization terminated successfully (Exit mode 0)
Current function value: 154.05423440019416
Iterations: 13
Function evaluations: 125
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 183.93240305081483
Iteration: 2, Func. Count: 22, Neg. LLF: 155.01082766714865
Iteration: 3, Func. Count: 32, Neg. LLF: 207.86072294451577
Iteration: 4, Func. Count: 43, Neg. LLF: 165.0807190807743
Iteration: 5, Func. Count: 54, Neg. LLF: 154.20142098941253
Iteration: 6, Func. Count: 64, Neg. LLF: 153.81055569245922
Iteration: 7, Func. Count: 74, Neg. LLF: 153.71425078095368
Iteration: 8, Func. Count: 84, Neg. LLF: 153.56039717748692
Iteration: 9, Func. Count: 95, Neg. LLF: 153.42583197969648
Iteration: 10, Func. Count: 105, Neg. LLF: 153.40397307549594
Iteration: 11, Func. Count: 115, Neg. LLF: 153.37599999790845
Iteration: 12, Func. Count: 125, Neg. LLF: 153.4078111269793
Iteration: 13, Func. Count: 136, Neg. LLF: 153.36264984217368
Iteration: 14, Func. Count: 146, Neg. LLF: 153.35934379588247
Iteration: 15, Func. Count: 156, Neg. LLF: 153.3589733691147
Iteration: 16, Func. Count: 166, Neg. LLF: 153.35893518152676
Iteration: 17, Func. Count: 176, Neg. LLF: 153.35893261074858
Iteration: 18, Func. Count: 185, Neg. LLF: 153.3589324354736
Optimization terminated successfully (Exit mode 0)
Current function value: 153.35893261074858
Iterations: 18
Function evaluations: 185
Gradient evaluations: 18
Iteration: 1, Func. Count: 12, Neg. LLF: 182.90909318262746
Iteration: 2, Func. Count: 24, Neg. LLF: 156.04428831334337
Iteration: 3, Func. Count: 36, Neg. LLF: 162.28628377080685
Iteration: 4, Func. Count: 48, Neg. LLF: 154.39281978208098
Iteration: 5, Func. Count: 59, Neg. LLF: 157.36626306386046
Iteration: 6, Func. Count: 71, Neg. LLF: 164.85896296908695
Iteration: 7, Func. Count: 84, Neg. LLF: 156.8022221376747
Iteration: 8, Func. Count: 96, Neg. LLF: 153.3731192986849
Iteration: 9, Func. Count: 107, Neg. LLF: 154.00542339536472
Iteration: 10, Func. Count: 119, Neg. LLF: 153.27402165890913
Iteration: 11, Func. Count: 131, Neg. LLF: 153.2425333923334
Iteration: 12, Func. Count: 142, Neg. LLF: 153.24219577178084
Iteration: 13, Func. Count: 153, Neg. LLF: 153.2421233511838
Iteration: 14, Func. Count: 164, Neg. LLF: 153.24211072052907
Iteration: 15, Func. Count: 175, Neg. LLF: 153.2421097544371
Optimization terminated successfully (Exit mode 0)
Current function value: 153.2421097544371
Iterations: 15
Function evaluations: 175
Gradient evaluations: 15
Iteration: 1, Func. Count: 13, Neg. LLF: 182.4805266424125
Iteration: 2, Func. Count: 26, Neg. LLF: 258.96779124738066
Iteration: 3, Func. Count: 39, Neg. LLF: 168.0986869999799
Iteration: 4, Func. Count: 52, Neg. LLF: 195.48414541325263
Iteration: 5, Func. Count: 65, Neg. LLF: 153.99970470512278
Iteration: 6, Func. Count: 77, Neg. LLF: 160.54114322904502
Iteration: 7, Func. Count: 90, Neg. LLF: 155.4738456370509
Iteration: 8, Func. Count: 103, Neg. LLF: 153.18263608547016
Iteration: 9, Func. Count: 116, Neg. LLF: 152.9506085351865
Iteration: 10, Func. Count: 128, Neg. LLF: 152.92035910929036
Iteration: 11, Func. Count: 140, Neg. LLF: 152.90149082671226
Iteration: 12, Func. Count: 152, Neg. LLF: 152.89310680255974
Iteration: 13, Func. Count: 164, Neg. LLF: 152.89282631813433
Iteration: 14, Func. Count: 176, Neg. LLF: 152.8926765309187
Iteration: 15, Func. Count: 188, Neg. LLF: 152.892597745274
Iteration: 16, Func. Count: 200, Neg. LLF: 152.89259197457912
Iteration: 17, Func. Count: 211, Neg. LLF: 152.89259188914338
Optimization terminated successfully (Exit mode 0)
Current function value: 152.89259197457912
Iterations: 17
Function evaluations: 211
Gradient evaluations: 17
Iteration: 1, Func. Count: 10, Neg. LLF: 166.42804940386637
Iteration: 2, Func. Count: 20, Neg. LLF: 160.62102447176923
Iteration: 3, Func. Count: 31, Neg. LLF: 160.3215428596042
Iteration: 4, Func. Count: 41, Neg. LLF: 158.59617919632754
Iteration: 5, Func. Count: 51, Neg. LLF: 158.94735645316436
Iteration: 6, Func. Count: 61, Neg. LLF: 157.8407281638747
Iteration: 7, Func. Count: 71, Neg. LLF: 157.37587791820897
Iteration: 8, Func. Count: 80, Neg. LLF: 157.6022787309312
Iteration: 9, Func. Count: 90, Neg. LLF: 158.44064031884218
Iteration: 10, Func. Count: 100, Neg. LLF: 156.83730943427307
Iteration: 11, Func. Count: 109, Neg. LLF: 158.86814529439133
Iteration: 12, Func. Count: 119, Neg. LLF: 155.5672557126287
Iteration: 13, Func. Count: 128, Neg. LLF: 155.43286200850142
Iteration: 14, Func. Count: 137, Neg. LLF: 155.24941001768036
Iteration: 15, Func. Count: 146, Neg. LLF: 155.22091704041515
Iteration: 16, Func. Count: 155, Neg. LLF: 155.20622548026938
Iteration: 17, Func. Count: 164, Neg. LLF: 155.18836831276613
Iteration: 18, Func. Count: 173, Neg. LLF: 155.1807376449213
Iteration: 19, Func. Count: 182, Neg. LLF: 155.17988725825336
Iteration: 20, Func. Count: 191, Neg. LLF: 155.17985284686523
Iteration: 21, Func. Count: 200, Neg. LLF: 155.17983520910747
Iteration: 22, Func. Count: 208, Neg. LLF: 155.1798351959507
Optimization terminated successfully (Exit mode 0)
Current function value: 155.17983520910747
Iterations: 22
Function evaluations: 208
Gradient evaluations: 22
Iteration: 1, Func. Count: 11, Neg. LLF: 236.45543539289775
Iteration: 2, Func. Count: 22, Neg. LLF: 155.24200066437166
Iteration: 3, Func. Count: 32, Neg. LLF: 252.9984366894687
Iteration: 4, Func. Count: 44, Neg. LLF: 164.18920626529916
Iteration: 5, Func. Count: 55, Neg. LLF: 156.9248801956777
Iteration: 6, Func. Count: 66, Neg. LLF: 155.15210486954777
Iteration: 7, Func. Count: 77, Neg. LLF: 154.8216477585713
Iteration: 8, Func. Count: 88, Neg. LLF: 154.60472396622228
Iteration: 9, Func. Count: 99, Neg. LLF: 153.96359424307167
Iteration: 10, Func. Count: 109, Neg. LLF: 153.93496114841733
Iteration: 11, Func. Count: 119, Neg. LLF: 153.93345800074286
Iteration: 12, Func. Count: 129, Neg. LLF: 153.9312255967684
Iteration: 13, Func. Count: 139, Neg. LLF: 153.93117793697584
Iteration: 14, Func. Count: 149, Neg. LLF: 153.93113783578397
Iteration: 15, Func. Count: 159, Neg. LLF: 153.9311307637388
Iteration: 16, Func. Count: 169, Neg. LLF: 153.93112758752832
Iteration: 17, Func. Count: 178, Neg. LLF: 153.93112740982477
Optimization terminated successfully (Exit mode 0)
Current function value: 153.93112758752832
Iterations: 17
Function evaluations: 178
Gradient evaluations: 17
Iteration: 1, Func. Count: 12, Neg. LLF: 182.9932025822733
Iteration: 2, Func. Count: 24, Neg. LLF: 155.22620438966916
Iteration: 3, Func. Count: 35, Neg. LLF: 169.60630232251364
Iteration: 4, Func. Count: 47, Neg. LLF: 184.70445856956596
Iteration: 5, Func. Count: 59, Neg. LLF: 154.9784953625484
Iteration: 6, Func. Count: 71, Neg. LLF: 153.86325244694189
Iteration: 7, Func. Count: 82, Neg. LLF: 153.82422725962678
Iteration: 8, Func. Count: 94, Neg. LLF: 158.1677860834993
Iteration: 9, Func. Count: 106, Neg. LLF: 153.5507125859242
Iteration: 10, Func. Count: 117, Neg. LLF: 153.48873120178573
Iteration: 11, Func. Count: 128, Neg. LLF: 153.45757031297362
Iteration: 12, Func. Count: 139, Neg. LLF: 153.41888275486545
Iteration: 13, Func. Count: 150, Neg. LLF: 153.3903327785555
Iteration: 14, Func. Count: 161, Neg. LLF: 153.36871393126907
Iteration: 15, Func. Count: 172, Neg. LLF: 153.36685836562518
Iteration: 16, Func. Count: 184, Neg. LLF: 153.35422312675954
Iteration: 17, Func. Count: 195, Neg. LLF: 153.352944347051
Iteration: 18, Func. Count: 206, Neg. LLF: 153.35293507806946
Iteration: 19, Func. Count: 217, Neg. LLF: 153.35293183192567
Iteration: 20, Func. Count: 227, Neg. LLF: 153.35293165663185
Optimization terminated successfully (Exit mode 0)
Current function value: 153.35293183192567
Iterations: 20
Function evaluations: 227
Gradient evaluations: 20
Iteration: 1, Func. Count: 13, Neg. LLF: 182.0317569963569
Iteration: 2, Func. Count: 26, Neg. LLF: 195.64592403588793
Iteration: 3, Func. Count: 39, Neg. LLF: 152.81695711936206
Iteration: 4, Func. Count: 51, Neg. LLF: 152.68485832509592
Iteration: 5, Func. Count: 63, Neg. LLF: 278.37322564514614
Iteration: 6, Func. Count: 77, Neg. LLF: 152.34563572213324
Iteration: 7, Func. Count: 89, Neg. LLF: 152.2026975410836
Iteration: 8, Func. Count: 101, Neg. LLF: 152.39371491329734
Iteration: 9, Func. Count: 114, Neg. LLF: 152.10950339912233
Iteration: 10, Func. Count: 126, Neg. LLF: 152.07223170862025
Iteration: 11, Func. Count: 138, Neg. LLF: 152.06902013409845
Iteration: 12, Func. Count: 150, Neg. LLF: 152.0652440916367
Iteration: 13, Func. Count: 162, Neg. LLF: 152.0649350657051
Iteration: 14, Func. Count: 174, Neg. LLF: 152.06491913280635
Iteration: 15, Func. Count: 185, Neg. LLF: 152.06491904509255
Optimization terminated successfully (Exit mode 0)
Current function value: 152.06491913280635
Iterations: 15
Function evaluations: 185
Gradient evaluations: 15
Iteration: 1, Func. Count: 14, Neg. LLF: 181.8362477366897
Iteration: 2, Func. Count: 28, Neg. LLF: 195.2193282748975
Iteration: 3, Func. Count: 42, Neg. LLF: 154.54268884244956
Iteration: 4, Func. Count: 55, Neg. LLF: 162.86564556298916
Iteration: 5, Func. Count: 69, Neg. LLF: 161.00729207252712
Iteration: 6, Func. Count: 84, Neg. LLF: 154.62260786680247
Iteration: 7, Func. Count: 98, Neg. LLF: 153.02485946915482
Iteration: 8, Func. Count: 112, Neg. LLF: 152.457394042372
Iteration: 9, Func. Count: 126, Neg. LLF: 152.37385830404995
Iteration: 10, Func. Count: 139, Neg. LLF: 152.513587892249
Iteration: 11, Func. Count: 153, Neg. LLF: 152.21485218365075
Iteration: 12, Func. Count: 166, Neg. LLF: 152.20874177971402
Iteration: 13, Func. Count: 179, Neg. LLF: 152.20789719919023
Iteration: 14, Func. Count: 192, Neg. LLF: 152.20769026133078
Iteration: 15, Func. Count: 205, Neg. LLF: 152.2075911562934
Iteration: 16, Func. Count: 218, Neg. LLF: 152.20754144972148
Iteration: 17, Func. Count: 231, Neg. LLF: 152.20751929201074
Iteration: 18, Func. Count: 244, Neg. LLF: 152.20751512937255
Iteration: 19, Func. Count: 256, Neg. LLF: 152.2075150486846
Optimization terminated successfully (Exit mode 0)
Current function value: 152.20751512937255
Iterations: 19
Function evaluations: 256
Gradient evaluations: 19
Iteration: 1, Func. Count: 11, Neg. LLF: 161.85867826279477
Iteration: 2, Func. Count: 22, Neg. LLF: 159.59138596073836
Iteration: 3, Func. Count: 33, Neg. LLF: 160.92579785426173
Iteration: 4, Func. Count: 45, Neg. LLF: 158.29977826745542
Iteration: 5, Func. Count: 56, Neg. LLF: 157.5806617775489
Iteration: 6, Func. Count: 66, Neg. LLF: 157.7699225372261
Iteration: 7, Func. Count: 77, Neg. LLF: 158.4691018054692
Iteration: 8, Func. Count: 89, Neg. LLF: 157.52328742919576
Iteration: 9, Func. Count: 100, Neg. LLF: 157.14636877545087
Iteration: 10, Func. Count: 110, Neg. LLF: 156.2795514934982
Iteration: 11, Func. Count: 120, Neg. LLF: 156.08656476442167
Iteration: 12, Func. Count: 130, Neg. LLF: 155.47524274042362
Iteration: 13, Func. Count: 140, Neg. LLF: 155.266328137834
Iteration: 14, Func. Count: 150, Neg. LLF: 155.22583411522356
Iteration: 15, Func. Count: 160, Neg. LLF: 155.18613630006814
Iteration: 16, Func. Count: 170, Neg. LLF: 155.18195673313534
Iteration: 17, Func. Count: 180, Neg. LLF: 155.18010345518226
Iteration: 18, Func. Count: 190, Neg. LLF: 155.17989169747733
Iteration: 19, Func. Count: 200, Neg. LLF: 155.17983681260858
Iteration: 20, Func. Count: 210, Neg. LLF: 155.17983522499614
Iteration: 21, Func. Count: 219, Neg. LLF: 155.17983532815208
Optimization terminated successfully (Exit mode 0)
Current function value: 155.17983522499614
Iterations: 21
Function evaluations: 219
Gradient evaluations: 21
Iteration: 1, Func. Count: 12, Neg. LLF: 234.16742460655126
Iteration: 2, Func. Count: 24, Neg. LLF: 155.44900926302924
Iteration: 3, Func. Count: 35, Neg. LLF: 391.3544876441387
Iteration: 4, Func. Count: 48, Neg. LLF: 164.5645338283471
Iteration: 5, Func. Count: 60, Neg. LLF: 158.14141809222198
Iteration: 6, Func. Count: 73, Neg. LLF: 154.48117665816483
Iteration: 7, Func. Count: 84, Neg. LLF: 155.67439948835212
Iteration: 8, Func. Count: 96, Neg. LLF: 155.39713539368705
Iteration: 9, Func. Count: 108, Neg. LLF: 154.07084180226357
Iteration: 10, Func. Count: 120, Neg. LLF: 154.05421530257834
Iteration: 11, Func. Count: 132, Neg. LLF: 153.93327047844133
Iteration: 12, Func. Count: 143, Neg. LLF: 153.95997244025634
Iteration: 13, Func. Count: 155, Neg. LLF: 153.93113539253542
Iteration: 14, Func. Count: 166, Neg. LLF: 153.93112770358488
Iteration: 15, Func. Count: 176, Neg. LLF: 153.9311275259533
Optimization terminated successfully (Exit mode 0)
Current function value: 153.93112770358488
Iterations: 15
Function evaluations: 176
Gradient evaluations: 15
Iteration: 1, Func. Count: 13, Neg. LLF: 182.51708736916106
Iteration: 2, Func. Count: 26, Neg. LLF: 155.13183902229406
Iteration: 3, Func. Count: 38, Neg. LLF: 177.115242227075
Iteration: 4, Func. Count: 51, Neg. LLF: 156.10688071895507
Iteration: 5, Func. Count: 64, Neg. LLF: 154.37219411870967
Iteration: 6, Func. Count: 76, Neg. LLF: 154.17802280646913
Iteration: 7, Func. Count: 88, Neg. LLF: 157.3649912338814
Iteration: 8, Func. Count: 101, Neg. LLF: 153.82312151452837
Iteration: 9, Func. Count: 114, Neg. LLF: 153.4798050724811
Iteration: 10, Func. Count: 126, Neg. LLF: 153.52906113499023
Iteration: 11, Func. Count: 139, Neg. LLF: 153.41095051299837
Iteration: 12, Func. Count: 151, Neg. LLF: 153.4006128026529
Iteration: 13, Func. Count: 163, Neg. LLF: 153.3814015797493
Iteration: 14, Func. Count: 175, Neg. LLF: 153.36187386445386
Iteration: 15, Func. Count: 187, Neg. LLF: 153.35524815094453
Iteration: 16, Func. Count: 199, Neg. LLF: 153.35382592286555
Iteration: 17, Func. Count: 211, Neg. LLF: 153.35355227753902
Iteration: 18, Func. Count: 224, Neg. LLF: 153.3529513756922
Iteration: 19, Func. Count: 236, Neg. LLF: 153.35293268695526
Iteration: 20, Func. Count: 248, Neg. LLF: 153.35293178846123
Optimization terminated successfully (Exit mode 0)
Current function value: 153.35293178846123
Iterations: 20
Function evaluations: 248
Gradient evaluations: 20
Iteration: 1, Func. Count: 14, Neg. LLF: 181.3262987874889
Iteration: 2, Func. Count: 28, Neg. LLF: 194.1086811799663
Iteration: 3, Func. Count: 42, Neg. LLF: 152.64178834368144
Iteration: 4, Func. Count: 55, Neg. LLF: 152.69642835026204
Iteration: 5, Func. Count: 69, Neg. LLF: 1122.6651899590554
Iteration: 6, Func. Count: 84, Neg. LLF: 152.3488458418549
Iteration: 7, Func. Count: 97, Neg. LLF: 156.62236632367703
Iteration: 8, Func. Count: 111, Neg. LLF: 152.08066971282483
Iteration: 9, Func. Count: 124, Neg. LLF: 152.07190593865622
Iteration: 10, Func. Count: 137, Neg. LLF: 152.0685618977463
Iteration: 11, Func. Count: 150, Neg. LLF: 152.06573887857897
Iteration: 12, Func. Count: 163, Neg. LLF: 152.06501065473037
Iteration: 13, Func. Count: 176, Neg. LLF: 152.06492831854067
Iteration: 14, Func. Count: 189, Neg. LLF: 152.06491567988414
Iteration: 15, Func. Count: 202, Neg. LLF: 152.06491421681793
Optimization terminated successfully (Exit mode 0)
Current function value: 152.0649156772492
Iterations: 15
Function evaluations: 212
Gradient evaluations: 15
Iteration: 1, Func. Count: 15, Neg. LLF: 181.20897485538566
Iteration: 2, Func. Count: 30, Neg. LLF: 193.30912003607338
Iteration: 3, Func. Count: 45, Neg. LLF: 208.83261698414947
Iteration: 4, Func. Count: 60, Neg. LLF: 154.9697703438913
Iteration: 5, Func. Count: 75, Neg. LLF: 152.81051854366376
Iteration: 6, Func. Count: 89, Neg. LLF: 154.96138168641804
Iteration: 7, Func. Count: 104, Neg. LLF: 166.09663692848216
Iteration: 8, Func. Count: 119, Neg. LLF: 153.67363464221773
Iteration: 9, Func. Count: 134, Neg. LLF: 152.31213863936156
Iteration: 10, Func. Count: 148, Neg. LLF: 152.24803680483663
Iteration: 11, Func. Count: 162, Neg. LLF: 152.22407374519335
Iteration: 12, Func. Count: 176, Neg. LLF: 152.21293405410967
Iteration: 13, Func. Count: 190, Neg. LLF: 152.20869269482895
Iteration: 14, Func. Count: 204, Neg. LLF: 152.20788161391656
Iteration: 15, Func. Count: 218, Neg. LLF: 152.20760437766626
Iteration: 16, Func. Count: 232, Neg. LLF: 152.2075166511924
Iteration: 17, Func. Count: 246, Neg. LLF: 152.2075148944971
Iteration: 18, Func. Count: 259, Neg. LLF: 152.2075148138737
Optimization terminated successfully (Exit mode 0)
Current function value: 152.2075148944971
Iterations: 18
Function evaluations: 259
Gradient evaluations: 18
Iteration: 1, Func. Count: 8, Neg. LLF: 160.586996901428
Iteration: 2, Func. Count: 16, Neg. LLF: 161.9927829222084
Iteration: 3, Func. Count: 25, Neg. LLF: 159.61319247730253
Iteration: 4, Func. Count: 32, Neg. LLF: 159.59129193460979
Iteration: 5, Func. Count: 39, Neg. LLF: 159.57624008674196
Iteration: 6, Func. Count: 46, Neg. LLF: 159.5176749078759
Iteration: 7, Func. Count: 53, Neg. LLF: 164.7893445694935
Iteration: 8, Func. Count: 61, Neg. LLF: 159.44270266876933
Iteration: 9, Func. Count: 68, Neg. LLF: 159.2731924005655
Iteration: 10, Func. Count: 75, Neg. LLF: 159.67800565567046
Iteration: 11, Func. Count: 83, Neg. LLF: 159.03040670643716
Iteration: 12, Func. Count: 90, Neg. LLF: 158.74398965865493
Iteration: 13, Func. Count: 97, Neg. LLF: 158.73885443157462
Iteration: 14, Func. Count: 105, Neg. LLF: 158.69939034626674
Iteration: 15, Func. Count: 113, Neg. LLF: 158.66367644055882
Iteration: 16, Func. Count: 120, Neg. LLF: 158.66338320194794
Iteration: 17, Func. Count: 127, Neg. LLF: 158.66326836012132
Iteration: 18, Func. Count: 134, Neg. LLF: 158.66326741184434
Optimization terminated successfully (Exit mode 0)
Current function value: 158.66326741184434
Iterations: 18
Function evaluations: 134
Gradient evaluations: 18
Iteration: 1, Func. Count: 9, Neg. LLF: 170.28408619906065
Iteration: 2, Func. Count: 18, Neg. LLF: 163.86482818911526
Iteration: 3, Func. Count: 27, Neg. LLF: 159.72721082500678
Iteration: 4, Func. Count: 36, Neg. LLF: 157.71609807955934
Iteration: 5, Func. Count: 44, Neg. LLF: 159.52229619170012
Iteration: 6, Func. Count: 53, Neg. LLF: 157.67712771870103
Iteration: 7, Func. Count: 62, Neg. LLF: 157.38228673608083
Iteration: 8, Func. Count: 70, Neg. LLF: 157.511042122722
Iteration: 9, Func. Count: 79, Neg. LLF: 157.1972299442947
Iteration: 10, Func. Count: 87, Neg. LLF: 157.1817845184104
Iteration: 11, Func. Count: 95, Neg. LLF: 157.18065779895025
Iteration: 12, Func. Count: 103, Neg. LLF: 157.180634540403
Iteration: 13, Func. Count: 110, Neg. LLF: 157.18063446797234
Optimization terminated successfully (Exit mode 0)
Current function value: 157.180634540403
Iterations: 13
Function evaluations: 110
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 169.16550232900656
Iteration: 2, Func. Count: 20, Neg. LLF: 163.90167010181423
Iteration: 3, Func. Count: 30, Neg. LLF: 167.97415105466928
Iteration: 4, Func. Count: 40, Neg. LLF: 157.10468178898108
Iteration: 5, Func. Count: 49, Neg. LLF: 156.98821505372985
Iteration: 6, Func. Count: 58, Neg. LLF: 156.90352111530834
Iteration: 7, Func. Count: 67, Neg. LLF: 156.8392202100399
Iteration: 8, Func. Count: 76, Neg. LLF: 156.82100651315542
Iteration: 9, Func. Count: 85, Neg. LLF: 156.81498789421875
Iteration: 10, Func. Count: 94, Neg. LLF: 156.81458353703155
Iteration: 11, Func. Count: 103, Neg. LLF: 156.81451916845822
Iteration: 12, Func. Count: 112, Neg. LLF: 156.81450456365678
Iteration: 13, Func. Count: 120, Neg. LLF: 156.81450451871166
Optimization terminated successfully (Exit mode 0)
Current function value: 156.81450456365678
Iterations: 13
Function evaluations: 120
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 168.64326472389382
Iteration: 2, Func. Count: 22, Neg. LLF: 157.94547526603236
Iteration: 3, Func. Count: 33, Neg. LLF: 157.34814784481335
Iteration: 4, Func. Count: 43, Neg. LLF: 157.5033208543208
Iteration: 5, Func. Count: 54, Neg. LLF: 157.8168581519532
Iteration: 6, Func. Count: 65, Neg. LLF: 156.88253607419455
Iteration: 7, Func. Count: 75, Neg. LLF: 156.84058157859192
Iteration: 8, Func. Count: 85, Neg. LLF: 156.81773272330258
Iteration: 9, Func. Count: 95, Neg. LLF: 156.81619641780424
Iteration: 10, Func. Count: 105, Neg. LLF: 156.81452106217486
Iteration: 11, Func. Count: 115, Neg. LLF: 156.81450497800694
Iteration: 12, Func. Count: 125, Neg. LLF: 156.81450434916815
Optimization terminated successfully (Exit mode 0)
Current function value: 156.81450434916815
Iterations: 12
Function evaluations: 125
Gradient evaluations: 12
Iteration: 1, Func. Count: 12, Neg. LLF: 168.3233228094499
Iteration: 2, Func. Count: 24, Neg. LLF: 168.6136503784889
Iteration: 3, Func. Count: 36, Neg. LLF: 157.19930103502907
Iteration: 4, Func. Count: 47, Neg. LLF: 157.01464835902897
Iteration: 5, Func. Count: 59, Neg. LLF: 162.45465120910305
Iteration: 6, Func. Count: 71, Neg. LLF: 158.50069721967319
Iteration: 7, Func. Count: 83, Neg. LLF: 156.38299583347424
Iteration: 8, Func. Count: 95, Neg. LLF: 156.27291215057875
Iteration: 9, Func. Count: 106, Neg. LLF: 156.26219717552797
Iteration: 10, Func. Count: 117, Neg. LLF: 156.2614583977678
Iteration: 11, Func. Count: 128, Neg. LLF: 156.26100949000653
Iteration: 12, Func. Count: 139, Neg. LLF: 156.26097807237323
Iteration: 13, Func. Count: 150, Neg. LLF: 156.26094213476003
Iteration: 14, Func. Count: 161, Neg. LLF: 156.26093186278445
Iteration: 15, Func. Count: 172, Neg. LLF: 156.26093048363282
Iteration: 16, Func. Count: 182, Neg. LLF: 156.26093046468085
Optimization terminated successfully (Exit mode 0)
Current function value: 156.26093048363282
Iterations: 16
Function evaluations: 182
Gradient evaluations: 16
Iteration: 1, Func. Count: 9, Neg. LLF: 160.47218344812757
Iteration: 2, Func. Count: 18, Neg. LLF: 162.50402765899813
Iteration: 3, Func. Count: 27, Neg. LLF: 159.7538352311335
Iteration: 4, Func. Count: 36, Neg. LLF: 160.9275943125857
Iteration: 5, Func. Count: 45, Neg. LLF: 159.2213261784162
Iteration: 6, Func. Count: 54, Neg. LLF: 160.46114720542545
Iteration: 7, Func. Count: 63, Neg. LLF: 161.41084094962272
Iteration: 8, Func. Count: 72, Neg. LLF: 159.1126847110043
Iteration: 9, Func. Count: 81, Neg. LLF: 158.5426802812212
Iteration: 10, Func. Count: 89, Neg. LLF: 158.4658847274609
Iteration: 11, Func. Count: 97, Neg. LLF: 159.7130810574829
Iteration: 12, Func. Count: 106, Neg. LLF: 158.0333943393389
Iteration: 13, Func. Count: 114, Neg. LLF: 157.18975446358277
Iteration: 14, Func. Count: 122, Neg. LLF: 156.71719514658602
Iteration: 15, Func. Count: 130, Neg. LLF: 191.09288719611965
Iteration: 16, Func. Count: 139, Neg. LLF: 206.25274591615903
Iteration: 17, Func. Count: 148, Neg. LLF: 211.20700174824532
Iteration: 18, Func. Count: 157, Neg. LLF: 207.41370175449137
Iteration: 19, Func. Count: 166, Neg. LLF: 209.8445872811264
Iteration: 20, Func. Count: 175, Neg. LLF: 207.89264514308132
Iteration: 21, Func. Count: 184, Neg. LLF: 209.4256976857286
Iteration: 22, Func. Count: 193, Neg. LLF: 207.64681849245108
Iteration: 23, Func. Count: 202, Neg. LLF: 208.96950312423513
Iteration: 24, Func. Count: 211, Neg. LLF: 158.54234798678465
Iteration: 25, Func. Count: 220, Neg. LLF: 156.11219164966587
Iteration: 26, Func. Count: 229, Neg. LLF: 155.96788365336943
Iteration: 27, Func. Count: 238, Neg. LLF: 155.9500776848119
Iteration: 28, Func. Count: 247, Neg. LLF: 155.94927273894072
Iteration: 29, Func. Count: 256, Neg. LLF: 155.9492277473361
Iteration: 30, Func. Count: 264, Neg. LLF: 155.9492228188929
Optimization terminated successfully (Exit mode 0)
Current function value: 155.94922287412325
Iterations: 30
Function evaluations: 264
Gradient evaluations: 30
Iteration: 1, Func. Count: 10, Neg. LLF: 449.9447636201342
Iteration: 2, Func. Count: 20, Neg. LLF: 210.1826757391572
Iteration: 3, Func. Count: 30, Neg. LLF: 154.0438277479445
Iteration: 4, Func. Count: 39, Neg. LLF: 180.5137699627782
Iteration: 5, Func. Count: 49, Neg. LLF: 463.06930654236817
Iteration: 6, Func. Count: 59, Neg. LLF: 153.70291429975254
Iteration: 7, Func. Count: 69, Neg. LLF: 153.53091261256597
Iteration: 8, Func. Count: 79, Neg. LLF: 153.41560103413804
Iteration: 9, Func. Count: 88, Neg. LLF: 153.41348496195047
Iteration: 10, Func. Count: 97, Neg. LLF: 153.413463810251
Iteration: 11, Func. Count: 106, Neg. LLF: 153.4134627771174
Iteration: 12, Func. Count: 114, Neg. LLF: 153.413462609756
Optimization terminated successfully (Exit mode 0)
Current function value: 153.4134627771174
Iterations: 12
Function evaluations: 114
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 234.44886164218298
Iteration: 2, Func. Count: 22, Neg. LLF: 158.7295151163282
Iteration: 3, Func. Count: 33, Neg. LLF: 269.0930076791462
Iteration: 4, Func. Count: 44, Neg. LLF: 165.6344241763495
Iteration: 5, Func. Count: 55, Neg. LLF: 159.64049369348874
Iteration: 6, Func. Count: 66, Neg. LLF: 164.31469321631198
Iteration: 7, Func. Count: 77, Neg. LLF: 158.27391725846383
Iteration: 8, Func. Count: 88, Neg. LLF: 153.60123354589385
Iteration: 9, Func. Count: 98, Neg. LLF: 153.57817245633487
Iteration: 10, Func. Count: 109, Neg. LLF: 153.29430777787647
Iteration: 11, Func. Count: 119, Neg. LLF: 153.27255275785694
Iteration: 12, Func. Count: 130, Neg. LLF: 153.21315909447432
Iteration: 13, Func. Count: 140, Neg. LLF: 153.20419338803225
Iteration: 14, Func. Count: 150, Neg. LLF: 153.20276446629208
Iteration: 15, Func. Count: 160, Neg. LLF: 153.20265419141145
Iteration: 16, Func. Count: 170, Neg. LLF: 153.20254888889932
Iteration: 17, Func. Count: 180, Neg. LLF: 153.2025467327075
Iteration: 18, Func. Count: 189, Neg. LLF: 153.20254657284184
Optimization terminated successfully (Exit mode 0)
Current function value: 153.2025467327075
Iterations: 18
Function evaluations: 189
Gradient evaluations: 18
Iteration: 1, Func. Count: 12, Neg. LLF: 230.88444661143134
Iteration: 2, Func. Count: 24, Neg. LLF: 157.18004519126123
Iteration: 3, Func. Count: 36, Neg. LLF: 164.8812941459219
Iteration: 4, Func. Count: 48, Neg. LLF: 166.48478078197908
Iteration: 5, Func. Count: 60, Neg. LLF: 160.0415417142985
Iteration: 6, Func. Count: 72, Neg. LLF: 155.25535101944945
Iteration: 7, Func. Count: 84, Neg. LLF: 154.38923960545142
Iteration: 8, Func. Count: 95, Neg. LLF: 168.4659692279734
Iteration: 9, Func. Count: 107, Neg. LLF: 155.26095231008193
Iteration: 10, Func. Count: 119, Neg. LLF: 153.58619059797536
Iteration: 11, Func. Count: 130, Neg. LLF: 153.80533887527315
Iteration: 12, Func. Count: 142, Neg. LLF: 153.51807478826998
Iteration: 13, Func. Count: 154, Neg. LLF: 153.25205360796272
Iteration: 14, Func. Count: 165, Neg. LLF: 153.28154649971236
Iteration: 15, Func. Count: 177, Neg. LLF: 153.20467543188386
Iteration: 16, Func. Count: 188, Neg. LLF: 153.20354135468756
Iteration: 17, Func. Count: 199, Neg. LLF: 153.20284517666755
Iteration: 18, Func. Count: 210, Neg. LLF: 153.20256040357376
Iteration: 19, Func. Count: 221, Neg. LLF: 153.20254826804825
Iteration: 20, Func. Count: 232, Neg. LLF: 153.20254671028792
Iteration: 21, Func. Count: 242, Neg. LLF: 153.20254679770434
Optimization terminated successfully (Exit mode 0)
Current function value: 153.20254671028792
Iterations: 21
Function evaluations: 242
Gradient evaluations: 21
Iteration: 1, Func. Count: 13, Neg. LLF: 229.50614705022906
Iteration: 2, Func. Count: 26, Neg. LLF: 165.5793061514368
Iteration: 3, Func. Count: 39, Neg. LLF: 161.62257577471334
Iteration: 4, Func. Count: 52, Neg. LLF: 155.97411707310877
Iteration: 5, Func. Count: 65, Neg. LLF: 155.5234681085642
Iteration: 6, Func. Count: 78, Neg. LLF: 154.55338528074714
Iteration: 7, Func. Count: 90, Neg. LLF: 157.01443193502325
Iteration: 8, Func. Count: 104, Neg. LLF: 155.46820860520435
Iteration: 9, Func. Count: 117, Neg. LLF: 154.14704021227166
Iteration: 10, Func. Count: 130, Neg. LLF: 155.79278307005444
Iteration: 11, Func. Count: 143, Neg. LLF: 153.51896572136496
Iteration: 12, Func. Count: 155, Neg. LLF: 153.47606987964824
Iteration: 13, Func. Count: 167, Neg. LLF: 153.46436397170524
Iteration: 14, Func. Count: 179, Neg. LLF: 153.4553608380531
Iteration: 15, Func. Count: 191, Neg. LLF: 153.43797902658176
Iteration: 16, Func. Count: 203, Neg. LLF: 153.41514445197384
Iteration: 17, Func. Count: 215, Neg. LLF: 153.38197013725426
Iteration: 18, Func. Count: 227, Neg. LLF: 153.37391016038785
Iteration: 19, Func. Count: 239, Neg. LLF: 153.36690137590745
Iteration: 20, Func. Count: 251, Neg. LLF: 153.36010691168545
Iteration: 21, Func. Count: 263, Neg. LLF: 153.35904358192798
Iteration: 22, Func. Count: 275, Neg. LLF: 153.35896182454428
Iteration: 23, Func. Count: 287, Neg. LLF: 153.35896049838257
Iteration: 24, Func. Count: 299, Neg. LLF: 153.3589596828251
Optimization terminated successfully (Exit mode 0)
Current function value: 153.3589596828251
Iterations: 24
Function evaluations: 299
Gradient evaluations: 24
Iteration: 1, Func. Count: 10, Neg. LLF: 165.4812419601906
Iteration: 2, Func. Count: 20, Neg. LLF: 160.54899225140517
Iteration: 3, Func. Count: 31, Neg. LLF: 160.42609306804763
Iteration: 4, Func. Count: 41, Neg. LLF: 162.57970200829115
Iteration: 5, Func. Count: 51, Neg. LLF: 158.543913735662
Iteration: 6, Func. Count: 61, Neg. LLF: 158.61293154001686
Iteration: 7, Func. Count: 71, Neg. LLF: 158.90988504449516
Iteration: 8, Func. Count: 81, Neg. LLF: 158.30321341262106
Iteration: 9, Func. Count: 90, Neg. LLF: 158.12147684053036
Iteration: 10, Func. Count: 99, Neg. LLF: 157.90957895389195
Iteration: 11, Func. Count: 108, Neg. LLF: 166.26515633408277
Iteration: 12, Func. Count: 118, Neg. LLF: 156.8295673982499
Iteration: 13, Func. Count: 127, Neg. LLF: 157.67774918519228
Iteration: 14, Func. Count: 137, Neg. LLF: 157.6903207769809
Iteration: 15, Func. Count: 147, Neg. LLF: 155.66309799139876
Iteration: 16, Func. Count: 156, Neg. LLF: 155.29026152826884
Iteration: 17, Func. Count: 165, Neg. LLF: 155.5909496764604
Iteration: 18, Func. Count: 175, Neg. LLF: 155.37457152817993
Iteration: 19, Func. Count: 185, Neg. LLF: 155.19196698548734
Iteration: 20, Func. Count: 194, Neg. LLF: 155.19262376399251
Iteration: 21, Func. Count: 204, Neg. LLF: 155.19030256813463
Iteration: 22, Func. Count: 214, Neg. LLF: 155.19008236832292
Iteration: 23, Func. Count: 223, Neg. LLF: 155.19007911526873
Iteration: 24, Func. Count: 231, Neg. LLF: 155.19007906124773
Optimization terminated successfully (Exit mode 0)
Current function value: 155.19007911526873
Iterations: 24
Function evaluations: 231
Gradient evaluations: 24
Iteration: 1, Func. Count: 11, Neg. LLF: 348.36870914910077
Iteration: 2, Func. Count: 22, Neg. LLF: 188.08730307598677
Iteration: 3, Func. Count: 33, Neg. LLF: 155.65173070156428
Iteration: 4, Func. Count: 44, Neg. LLF: 196.65023596625244
Iteration: 5, Func. Count: 55, Neg. LLF: 168.004787420832
Iteration: 6, Func. Count: 66, Neg. LLF: 155.65345414821138
Iteration: 7, Func. Count: 77, Neg. LLF: 153.93104384499875
Iteration: 8, Func. Count: 88, Neg. LLF: 153.31605136735203
Iteration: 9, Func. Count: 98, Neg. LLF: 153.31052324997438
Iteration: 10, Func. Count: 108, Neg. LLF: 153.31042982995262
Iteration: 11, Func. Count: 119, Neg. LLF: 153.31003649791595
Iteration: 12, Func. Count: 129, Neg. LLF: 153.31003283728134
Iteration: 13, Func. Count: 138, Neg. LLF: 153.31003269051814
Optimization terminated successfully (Exit mode 0)
Current function value: 153.31003283728134
Iterations: 13
Function evaluations: 138
Gradient evaluations: 13
Iteration: 1, Func. Count: 12, Neg. LLF: 184.42438972823658
Iteration: 2, Func. Count: 24, Neg. LLF: 169.42040395341738
Iteration: 3, Func. Count: 36, Neg. LLF: 218.9766606026431
Iteration: 4, Func. Count: 48, Neg. LLF: 155.26526259894317
Iteration: 5, Func. Count: 60, Neg. LLF: 161.38314476172044
Iteration: 6, Func. Count: 72, Neg. LLF: 161.4250276814535
Iteration: 7, Func. Count: 84, Neg. LLF: 153.29160286819706
Iteration: 8, Func. Count: 95, Neg. LLF: 154.3661316562052
Iteration: 9, Func. Count: 107, Neg. LLF: 161.5850728176827
Iteration: 10, Func. Count: 120, Neg. LLF: 152.7264869358035
Iteration: 11, Func. Count: 131, Neg. LLF: 152.60071125613314
Iteration: 12, Func. Count: 142, Neg. LLF: 152.60420077224362
Iteration: 13, Func. Count: 154, Neg. LLF: 152.6155644924002
Iteration: 14, Func. Count: 166, Neg. LLF: 152.58413199007808
Iteration: 15, Func. Count: 177, Neg. LLF: 152.5827343483584
Iteration: 16, Func. Count: 188, Neg. LLF: 152.5826922680417
Iteration: 17, Func. Count: 200, Neg. LLF: 152.5825705729026
Iteration: 18, Func. Count: 211, Neg. LLF: 152.5825689951982
Iteration: 19, Func. Count: 221, Neg. LLF: 152.5825688546705
Optimization terminated successfully (Exit mode 0)
Current function value: 152.5825689951982
Iterations: 19
Function evaluations: 221
Gradient evaluations: 19
Iteration: 1, Func. Count: 13, Neg. LLF: 182.81925508239755
Iteration: 2, Func. Count: 26, Neg. LLF: 158.28643030742938
Iteration: 3, Func. Count: 39, Neg. LLF: 155.87805194276427
Iteration: 4, Func. Count: 52, Neg. LLF: 159.86933904220936
Iteration: 5, Func. Count: 65, Neg. LLF: 215.42023682044922
Iteration: 6, Func. Count: 78, Neg. LLF: 155.41850869412926
Iteration: 7, Func. Count: 91, Neg. LLF: 155.7918735174462
Iteration: 8, Func. Count: 104, Neg. LLF: 153.96227194200065
Iteration: 9, Func. Count: 117, Neg. LLF: 154.38594403870016
Iteration: 10, Func. Count: 130, Neg. LLF: 154.06091299781292
Iteration: 11, Func. Count: 143, Neg. LLF: 153.78104502675993
Iteration: 12, Func. Count: 156, Neg. LLF: 152.7398741559515
Iteration: 13, Func. Count: 168, Neg. LLF: 154.37701861735061
Iteration: 14, Func. Count: 181, Neg. LLF: 152.6962801394533
Iteration: 15, Func. Count: 194, Neg. LLF: 152.6124508896278
Iteration: 16, Func. Count: 206, Neg. LLF: 152.5977157698443
Iteration: 17, Func. Count: 218, Neg. LLF: 152.58689931477934
Iteration: 18, Func. Count: 230, Neg. LLF: 152.5825990814542
Iteration: 19, Func. Count: 242, Neg. LLF: 152.58257134401885
Iteration: 20, Func. Count: 254, Neg. LLF: 152.58256903896404
Iteration: 21, Func. Count: 265, Neg. LLF: 152.58256902172695
Optimization terminated successfully (Exit mode 0)
Current function value: 152.58256903896404
Iterations: 21
Function evaluations: 265
Gradient evaluations: 21
Iteration: 1, Func. Count: 14, Neg. LLF: 182.29862666326878
Iteration: 2, Func. Count: 28, Neg. LLF: 259.7517458514226
Iteration: 3, Func. Count: 42, Neg. LLF: 155.60573683851487
Iteration: 4, Func. Count: 56, Neg. LLF: 157.03951415999228
Iteration: 5, Func. Count: 70, Neg. LLF: 153.83836420922833
Iteration: 6, Func. Count: 83, Neg. LLF: 167.95730459274984
Iteration: 7, Func. Count: 97, Neg. LLF: 156.3059832665474
Iteration: 8, Func. Count: 111, Neg. LLF: 153.70392831216327
Iteration: 9, Func. Count: 125, Neg. LLF: 156.96253329933748
Iteration: 10, Func. Count: 139, Neg. LLF: 152.9407698227234
Iteration: 11, Func. Count: 152, Neg. LLF: 152.90375114005647
Iteration: 12, Func. Count: 165, Neg. LLF: 152.89562382852364
Iteration: 13, Func. Count: 178, Neg. LLF: 152.89369270398774
Iteration: 14, Func. Count: 191, Neg. LLF: 152.89292397415338
Iteration: 15, Func. Count: 204, Neg. LLF: 152.89261895100356
Iteration: 16, Func. Count: 217, Neg. LLF: 152.89259248205343
Iteration: 17, Func. Count: 230, Neg. LLF: 152.8925917580453
Optimization terminated successfully (Exit mode 0)
Current function value: 152.8925917580453
Iterations: 17
Function evaluations: 230
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 165.58812024414257
Iteration: 2, Func. Count: 22, Neg. LLF: 160.79142075468755
Iteration: 3, Func. Count: 34, Neg. LLF: 164.74693410308836
Iteration: 4, Func. Count: 45, Neg. LLF: 157.83005682716194
Iteration: 5, Func. Count: 55, Neg. LLF: 157.90966119412286
Iteration: 6, Func. Count: 66, Neg. LLF: 158.23077617809855
Iteration: 7, Func. Count: 77, Neg. LLF: 159.7878323183894
Iteration: 8, Func. Count: 88, Neg. LLF: 157.51077983742576
Iteration: 9, Func. Count: 99, Neg. LLF: 158.04438748358177
Iteration: 10, Func. Count: 110, Neg. LLF: 156.9446789126494
Iteration: 11, Func. Count: 120, Neg. LLF: 156.2031914532504
Iteration: 12, Func. Count: 130, Neg. LLF: 156.60878316307773
Iteration: 13, Func. Count: 141, Neg. LLF: 211.9898850087038
Iteration: 14, Func. Count: 152, Neg. LLF: 195.65528431056322
Iteration: 15, Func. Count: 163, Neg. LLF: 199.50022863045712
Iteration: 16, Func. Count: 174, Neg. LLF: 180.2714516606084
Iteration: 17, Func. Count: 185, Neg. LLF: 170.65723898069328
Iteration: 18, Func. Count: 197, Neg. LLF: 177.1669763982501
Iteration: 19, Func. Count: 208, Neg. LLF: 166.20919321137234
Iteration: 20, Func. Count: 219, Neg. LLF: 155.4011891962492
Iteration: 21, Func. Count: 230, Neg. LLF: 155.0508862460326
Iteration: 22, Func. Count: 241, Neg. LLF: 188.0166691539076
Iteration: 23, Func. Count: 252, Neg. LLF: 154.1375039528659
Iteration: 24, Func. Count: 262, Neg. LLF: 182.03824310394918
Iteration: 25, Func. Count: 273, Neg. LLF: 163.2314805916775
Iteration: 26, Func. Count: 284, Neg. LLF: 159.87805938086407
Iteration: 27, Func. Count: 295, Neg. LLF: 161.1445954583868
Iteration: 28, Func. Count: 306, Neg. LLF: 162.86200417221738
Iteration: 29, Func. Count: 317, Neg. LLF: 165.2094075358433
Iteration: 30, Func. Count: 328, Neg. LLF: 166.3260253009101
Iteration: 31, Func. Count: 339, Neg. LLF: 168.37731965516952
Iteration: 32, Func. Count: 350, Neg. LLF: 167.1793450230449
Iteration: 33, Func. Count: 361, Neg. LLF: 154.91454841057714
Iteration: 34, Func. Count: 372, Neg. LLF: 153.6743807626163
Iteration: 35, Func. Count: 383, Neg. LLF: 170.7367783321727
Iteration: 36, Func. Count: 394, Neg. LLF: 153.011279293071
Iteration: 37, Func. Count: 404, Neg. LLF: 153.00011793866918
Iteration: 38, Func. Count: 414, Neg. LLF: 152.99907409929105
Iteration: 39, Func. Count: 424, Neg. LLF: 152.99896543078341
Iteration: 40, Func. Count: 434, Neg. LLF: 152.99889419953317
Iteration: 41, Func. Count: 444, Neg. LLF: 152.9988820222687
Iteration: 42, Func. Count: 454, Neg. LLF: 152.99887725761647
Iteration: 43, Func. Count: 464, Neg. LLF: 152.9988770454129
Optimization terminated successfully (Exit mode 0)
Current function value: 152.9988770454129
Iterations: 44
Function evaluations: 464
Gradient evaluations: 43
Iteration: 1, Func. Count: 12, Neg. LLF: 235.27947616256074
Iteration: 2, Func. Count: 24, Neg. LLF: 168.7117401561348
Iteration: 3, Func. Count: 36, Neg. LLF: 300.858095824168
Iteration: 4, Func. Count: 48, Neg. LLF: 157.55424581995283
Iteration: 5, Func. Count: 60, Neg. LLF: 172.16434917574836
Iteration: 6, Func. Count: 72, Neg. LLF: 155.4558688341067
Iteration: 7, Func. Count: 84, Neg. LLF: 171.16106487207063
Iteration: 8, Func. Count: 96, Neg. LLF: 164.07399154419755
Iteration: 9, Func. Count: 108, Neg. LLF: 158.1729871408759
Iteration: 10, Func. Count: 120, Neg. LLF: 156.95965913398845
Iteration: 11, Func. Count: 132, Neg. LLF: 156.99008751526608
Iteration: 12, Func. Count: 144, Neg. LLF: 153.90280192308822
Iteration: 13, Func. Count: 156, Neg. LLF: 153.36850134718955
Iteration: 14, Func. Count: 167, Neg. LLF: 153.32510028557655
Iteration: 15, Func. Count: 178, Neg. LLF: 153.3128866720468
Iteration: 16, Func. Count: 189, Neg. LLF: 153.31011009821003
Iteration: 17, Func. Count: 200, Neg. LLF: 153.3100393800074
Iteration: 18, Func. Count: 211, Neg. LLF: 153.31003289231546
Iteration: 19, Func. Count: 221, Neg. LLF: 153.31003274549846
Optimization terminated successfully (Exit mode 0)
Current function value: 153.31003289231546
Iterations: 19
Function evaluations: 221
Gradient evaluations: 19
Iteration: 1, Func. Count: 13, Neg. LLF: 183.4716332867895
Iteration: 2, Func. Count: 26, Neg. LLF: 170.85732928948468
Iteration: 3, Func. Count: 39, Neg. LLF: 221.61906334377144
Iteration: 4, Func. Count: 52, Neg. LLF: 154.73062670064294
Iteration: 5, Func. Count: 65, Neg. LLF: 160.1803477926341
Iteration: 6, Func. Count: 78, Neg. LLF: 155.67404042160774
Iteration: 7, Func. Count: 91, Neg. LLF: 154.06073829271037
Iteration: 8, Func. Count: 104, Neg. LLF: 153.81080252921416
Iteration: 9, Func. Count: 117, Neg. LLF: 153.12963581475
Iteration: 10, Func. Count: 130, Neg. LLF: 169.9804912716003
Iteration: 11, Func. Count: 143, Neg. LLF: 152.47832092189023
Iteration: 12, Func. Count: 155, Neg. LLF: 152.5975538658177
Iteration: 13, Func. Count: 168, Neg. LLF: 152.46906333788658
Iteration: 14, Func. Count: 180, Neg. LLF: 152.46804643845704
Iteration: 15, Func. Count: 193, Neg. LLF: 152.46414053302954
Iteration: 16, Func. Count: 206, Neg. LLF: 152.46298323835754
Iteration: 17, Func. Count: 218, Neg. LLF: 152.4629757642772
Iteration: 18, Func. Count: 229, Neg. LLF: 152.46297563487707
Optimization terminated successfully (Exit mode 0)
Current function value: 152.4629757642772
Iterations: 18
Function evaluations: 229
Gradient evaluations: 18
Iteration: 1, Func. Count: 14, Neg. LLF: 181.80090621453624
Iteration: 2, Func. Count: 28, Neg. LLF: 197.02671238389232
Iteration: 3, Func. Count: 42, Neg. LLF: 158.3310139997601
Iteration: 4, Func. Count: 56, Neg. LLF: 152.79582994339754
Iteration: 5, Func. Count: 69, Neg. LLF: 154.67623952678608
Iteration: 6, Func. Count: 83, Neg. LLF: 153.19396075748486
Iteration: 7, Func. Count: 97, Neg. LLF: 152.8168500646322
Iteration: 8, Func. Count: 111, Neg. LLF: 152.6976854573646
Iteration: 9, Func. Count: 125, Neg. LLF: 152.11970558123664
Iteration: 10, Func. Count: 138, Neg. LLF: 152.13164078593127
Iteration: 11, Func. Count: 152, Neg. LLF: 152.07816115885257
Iteration: 12, Func. Count: 165, Neg. LLF: 152.06755615721517
Iteration: 13, Func. Count: 178, Neg. LLF: 152.0650644946046
Iteration: 14, Func. Count: 191, Neg. LLF: 152.0649144530559
Iteration: 15, Func. Count: 204, Neg. LLF: 152.06491813091824
Iteration: 16, Func. Count: 217, Neg. LLF: 152.06494234986104
Optimization terminated successfully (Exit mode 0)
Current function value: 152.0649181303759
Iterations: 17
Function evaluations: 219
Gradient evaluations: 16
Iteration: 1, Func. Count: 15, Neg. LLF: 181.56276562490544
Iteration: 2, Func. Count: 30, Neg. LLF: 196.65340947428427
Iteration: 3, Func. Count: 45, Neg. LLF: 155.12846442199333
Iteration: 4, Func. Count: 60, Neg. LLF: 200.44782953857896
Iteration: 5, Func. Count: 75, Neg. LLF: 152.62847574951763
Iteration: 6, Func. Count: 89, Neg. LLF: 152.3643282111562
Iteration: 7, Func. Count: 103, Neg. LLF: 152.514312334743
Iteration: 8, Func. Count: 118, Neg. LLF: 152.45557710769876
Iteration: 9, Func. Count: 133, Neg. LLF: 152.24405235912684
Iteration: 10, Func. Count: 147, Neg. LLF: 152.22097992886202
Iteration: 11, Func. Count: 161, Neg. LLF: 152.20881666846003
Iteration: 12, Func. Count: 175, Neg. LLF: 152.20755815601754
Iteration: 13, Func. Count: 189, Neg. LLF: 152.2075169327755
Iteration: 14, Func. Count: 203, Neg. LLF: 152.20751490733136
Iteration: 15, Func. Count: 216, Neg. LLF: 152.20751482669505
Optimization terminated successfully (Exit mode 0)
Current function value: 152.20751490733136
Iterations: 15
Function evaluations: 216
Gradient evaluations: 15
Iteration: 1, Func. Count: 12, Neg. LLF: 161.36405979182027
Iteration: 2, Func. Count: 24, Neg. LLF: 159.45987299191233
Iteration: 3, Func. Count: 36, Neg. LLF: 158.91455147533662
Iteration: 4, Func. Count: 48, Neg. LLF: 162.21117761871957
Iteration: 5, Func. Count: 60, Neg. LLF: 157.39853107915505
Iteration: 6, Func. Count: 71, Neg. LLF: 158.05784008028513
Iteration: 7, Func. Count: 83, Neg. LLF: 157.2784573666498
Iteration: 8, Func. Count: 94, Neg. LLF: 158.44079932894002
Iteration: 9, Func. Count: 106, Neg. LLF: 157.19429761470477
Iteration: 10, Func. Count: 118, Neg. LLF: 155.95338782483168
Iteration: 11, Func. Count: 129, Neg. LLF: 161.0746374109894
Iteration: 12, Func. Count: 141, Neg. LLF: 161.54303071906497
Iteration: 13, Func. Count: 153, Neg. LLF: 221.02018646439353
Iteration: 14, Func. Count: 165, Neg. LLF: 203.09492825946117
Iteration: 15, Func. Count: 177, Neg. LLF: 279.43978831289877
Iteration: 16, Func. Count: 189, Neg. LLF: 222.2227753295743
Iteration: 17, Func. Count: 201, Neg. LLF: 184.14093997027186
Iteration: 18, Func. Count: 213, Neg. LLF: 180.49593458941797
Iteration: 19, Func. Count: 225, Neg. LLF: 189.04995991824117
Iteration: 20, Func. Count: 237, Neg. LLF: 217.2339838890754
Iteration: 21, Func. Count: 249, Neg. LLF: 204.12833804490688
Iteration: 22, Func. Count: 261, Neg. LLF: 207.6396796152878
Iteration: 23, Func. Count: 273, Neg. LLF: 197.28697489219408
Iteration: 24, Func. Count: 285, Neg. LLF: 199.35180833814925
Iteration: 25, Func. Count: 297, Neg. LLF: 190.1416011561822
Iteration: 26, Func. Count: 309, Neg. LLF: 195.81074608474154
Iteration: 27, Func. Count: 321, Neg. LLF: 187.6152381054313
Iteration: 28, Func. Count: 333, Neg. LLF: 195.95515727428153
Iteration: 29, Func. Count: 345, Neg. LLF: 188.90826253646145
Iteration: 30, Func. Count: 357, Neg. LLF: 196.908205920116
Iteration: 31, Func. Count: 369, Neg. LLF: 155.03754656782468
Iteration: 32, Func. Count: 382, Neg. LLF: 193.11269532937138
Iteration: 33, Func. Count: 394, Neg. LLF: 161.25668149264197
Iteration: 34, Func. Count: 406, Neg. LLF: 201.72384067640556
Iteration: 35, Func. Count: 418, Neg. LLF: 151.5512611769065
Iteration: 36, Func. Count: 430, Neg. LLF: 151.01169405478973
Iteration: 37, Func. Count: 441, Neg. LLF: 150.9632540932917
Iteration: 38, Func. Count: 452, Neg. LLF: 150.91328048281272
Iteration: 39, Func. Count: 463, Neg. LLF: 150.88636416744203
Iteration: 40, Func. Count: 474, Neg. LLF: 150.88374353116177
Iteration: 41, Func. Count: 485, Neg. LLF: 150.88367696440855
Iteration: 42, Func. Count: 496, Neg. LLF: 150.88366958395332
Iteration: 43, Func. Count: 506, Neg. LLF: 150.88366944361357
Optimization terminated successfully (Exit mode 0)
Current function value: 150.88366958395332
Iterations: 43
Function evaluations: 506
Gradient evaluations: 43
Iteration: 1, Func. Count: 13, Neg. LLF: 232.18427336284745
Iteration: 2, Func. Count: 26, Neg. LLF: 186.48000107387315
Iteration: 3, Func. Count: 39, Neg. LLF: 238.38344211497392
Iteration: 4, Func. Count: 52, Neg. LLF: 176.30709857783677
Iteration: 5, Func. Count: 65, Neg. LLF: 153.11090282750482
Iteration: 6, Func. Count: 77, Neg. LLF: 264.6093863050139
Iteration: 7, Func. Count: 90, Neg. LLF: 189.72485133342946
Iteration: 8, Func. Count: 104, Neg. LLF: 190.02902478655366
Iteration: 9, Func. Count: 117, Neg. LLF: 205.18388476356316
Iteration: 10, Func. Count: 130, Neg. LLF: 178.71090840746245
Iteration: 11, Func. Count: 143, Neg. LLF: 154.67811971135114
Iteration: 12, Func. Count: 156, Neg. LLF: 151.61748056522916
Iteration: 13, Func. Count: 168, Neg. LLF: 158.5078313175777
Iteration: 14, Func. Count: 181, Neg. LLF: 155.23390681386468
Iteration: 15, Func. Count: 194, Neg. LLF: 151.04439025381737
Iteration: 16, Func. Count: 206, Neg. LLF: 150.95721552281017
Iteration: 17, Func. Count: 218, Neg. LLF: 150.92143977558933
Iteration: 18, Func. Count: 230, Neg. LLF: 150.8983980842541
Iteration: 19, Func. Count: 242, Neg. LLF: 150.8897886204249
Iteration: 20, Func. Count: 254, Neg. LLF: 150.88420441283444
Iteration: 21, Func. Count: 266, Neg. LLF: 150.88369249430707
Iteration: 22, Func. Count: 278, Neg. LLF: 150.88366944784156
Iteration: 23, Func. Count: 289, Neg. LLF: 150.88366957625885
Optimization terminated successfully (Exit mode 0)
Current function value: 150.88366944784156
Iterations: 23
Function evaluations: 289
Gradient evaluations: 23
Iteration: 1, Func. Count: 14, Neg. LLF: 183.8651800446759
Iteration: 2, Func. Count: 28, Neg. LLF: 176.20699934590877
Iteration: 3, Func. Count: 42, Neg. LLF: 202.60663988192718
Iteration: 4, Func. Count: 56, Neg. LLF: 156.27870632302566
Iteration: 5, Func. Count: 70, Neg. LLF: 154.36581910822443
Iteration: 6, Func. Count: 84, Neg. LLF: 170.47979528581305
Iteration: 7, Func. Count: 98, Neg. LLF: 202.86132891647995
Iteration: 8, Func. Count: 112, Neg. LLF: 217.69476080379567
Iteration: 9, Func. Count: 126, Neg. LLF: 306.5853465010381
Iteration: 10, Func. Count: 140, Neg. LLF: 300.3747339976048
Iteration: 11, Func. Count: 154, Neg. LLF: 14934.255520084911
Iteration: 12, Func. Count: 168, Neg. LLF: 348.65785638390327
Iteration: 13, Func. Count: 182, Neg. LLF: 250.8985177772817
Iteration: 14, Func. Count: 196, Neg. LLF: 160.11940000648224
Iteration: 15, Func. Count: 210, Neg. LLF: 153.25948078788036
Iteration: 16, Func. Count: 224, Neg. LLF: 151.19719630538702
Iteration: 17, Func. Count: 237, Neg. LLF: 151.21542656485812
Iteration: 18, Func. Count: 252, Neg. LLF: 151.41842386886563
Iteration: 19, Func. Count: 266, Neg. LLF: 151.00171169563833
Iteration: 20, Func. Count: 280, Neg. LLF: 150.6017189575641
Iteration: 21, Func. Count: 294, Neg. LLF: 150.5096694305314
Iteration: 22, Func. Count: 307, Neg. LLF: 150.4751431007025
Iteration: 23, Func. Count: 320, Neg. LLF: 150.47249450018808
Iteration: 24, Func. Count: 333, Neg. LLF: 150.4647277685631
Iteration: 25, Func. Count: 346, Neg. LLF: 150.44613797310745
Iteration: 26, Func. Count: 359, Neg. LLF: 150.41243358099493
Iteration: 27, Func. Count: 372, Neg. LLF: 150.3679450923092
Iteration: 28, Func. Count: 385, Neg. LLF: 150.34318355343754
Iteration: 29, Func. Count: 398, Neg. LLF: 150.33579260337297
Iteration: 30, Func. Count: 411, Neg. LLF: 150.33463671888632
Iteration: 31, Func. Count: 424, Neg. LLF: 150.33439725990243
Iteration: 32, Func. Count: 437, Neg. LLF: 150.33432880740233
Iteration: 33, Func. Count: 450, Neg. LLF: 150.33432598578756
Iteration: 34, Func. Count: 462, Neg. LLF: 150.33432583223254
Optimization terminated successfully (Exit mode 0)
Current function value: 150.33432598578756
Iterations: 34
Function evaluations: 462
Gradient evaluations: 34
Iteration: 1, Func. Count: 15, Neg. LLF: 181.11830991615264
Iteration: 2, Func. Count: 30, Neg. LLF: 190.478500195125
Iteration: 3, Func. Count: 45, Neg. LLF: 192.42018707871188
Iteration: 4, Func. Count: 60, Neg. LLF: 219.89104931387487
Iteration: 5, Func. Count: 75, Neg. LLF: 154.4862491515668
Iteration: 6, Func. Count: 90, Neg. LLF: 153.85434704713853
Iteration: 7, Func. Count: 105, Neg. LLF: 159.40237975552077
Iteration: 8, Func. Count: 120, Neg. LLF: 160.79433776442048
Iteration: 9, Func. Count: 135, Neg. LLF: 262.5017052705442
Iteration: 10, Func. Count: 150, Neg. LLF: 178.93816666683514
Iteration: 11, Func. Count: 165, Neg. LLF: 229.31302522392522
Iteration: 12, Func. Count: 180, Neg. LLF: 152.49596926228156
Iteration: 13, Func. Count: 195, Neg. LLF: 241.78931232976663
Iteration: 14, Func. Count: 210, Neg. LLF: 151.39624327274691
Iteration: 15, Func. Count: 225, Neg. LLF: 151.71031314251496
Iteration: 16, Func. Count: 240, Neg. LLF: 150.62001422652045
Iteration: 17, Func. Count: 254, Neg. LLF: 150.87404998840685
Iteration: 18, Func. Count: 269, Neg. LLF: 150.75030153671668
Iteration: 19, Func. Count: 285, Neg. LLF: 150.37487132090868
Iteration: 20, Func. Count: 299, Neg. LLF: 150.33998420409
Iteration: 21, Func. Count: 313, Neg. LLF: 150.33592268333592
Iteration: 22, Func. Count: 327, Neg. LLF: 150.3344419895297
Iteration: 23, Func. Count: 341, Neg. LLF: 150.3343336030544
Iteration: 24, Func. Count: 355, Neg. LLF: 150.33432617974103
Iteration: 25, Func. Count: 368, Neg. LLF: 150.33432642621048
Optimization terminated successfully (Exit mode 0)
Current function value: 150.33432617974103
Iterations: 25
Function evaluations: 368
Gradient evaluations: 25
Iteration: 1, Func. Count: 16, Neg. LLF: 180.8247824346493
Iteration: 2, Func. Count: 32, Neg. LLF: 188.1417108509434
Iteration: 3, Func. Count: 48, Neg. LLF: 211.42408834257554
Iteration: 4, Func. Count: 64, Neg. LLF: 160.85497707295326
Iteration: 5, Func. Count: 80, Neg. LLF: 156.8572349192188
Iteration: 6, Func. Count: 96, Neg. LLF: 151.77846557103885
Iteration: 7, Func. Count: 111, Neg. LLF: 162.45572178854917
Iteration: 8, Func. Count: 127, Neg. LLF: 152.4909836426157
Iteration: 9, Func. Count: 143, Neg. LLF: 151.4743325285724
Iteration: 10, Func. Count: 159, Neg. LLF: 151.37779137488417
Iteration: 11, Func. Count: 175, Neg. LLF: 151.300050612994
Iteration: 12, Func. Count: 191, Neg. LLF: 151.05577681618718
Iteration: 13, Func. Count: 207, Neg. LLF: 151.6629001849094
Iteration: 14, Func. Count: 223, Neg. LLF: 151.06090286704958
Iteration: 15, Func. Count: 239, Neg. LLF: 151.03083760588186
Iteration: 16, Func. Count: 254, Neg. LLF: 151.0283051524424
Iteration: 17, Func. Count: 269, Neg. LLF: 151.0208553800752
Iteration: 18, Func. Count: 284, Neg. LLF: 151.00600633911455
Iteration: 19, Func. Count: 299, Neg. LLF: 151.0991159571332
Iteration: 20, Func. Count: 315, Neg. LLF: 150.9525030267502
Iteration: 21, Func. Count: 330, Neg. LLF: 150.9240370027896
Iteration: 22, Func. Count: 345, Neg. LLF: 154.2319323524771
Iteration: 23, Func. Count: 361, Neg. LLF: 150.88320886362567
Iteration: 24, Func. Count: 376, Neg. LLF: 150.87032442907747
Iteration: 25, Func. Count: 392, Neg. LLF: 151.51208942901647
Iteration: 26, Func. Count: 409, Neg. LLF: 150.64439378754705
Iteration: 27, Func. Count: 424, Neg. LLF: 150.42163927272324
Iteration: 28, Func. Count: 439, Neg. LLF: 150.390663683524
Iteration: 29, Func. Count: 455, Neg. LLF: 150.33498729418784
Iteration: 30, Func. Count: 470, Neg. LLF: 150.33465554704813
Iteration: 31, Func. Count: 485, Neg. LLF: 150.3343373262243
Iteration: 32, Func. Count: 500, Neg. LLF: 150.33432733171622
Iteration: 33, Func. Count: 515, Neg. LLF: 150.3343260146926
Iteration: 34, Func. Count: 529, Neg. LLF: 150.33432609548083
Optimization terminated successfully (Exit mode 0)
Current function value: 150.3343260146926
Iterations: 34
Function evaluations: 529
Gradient evaluations: 34
Iteration: 1, Func. Count: 6, Neg. LLF: 522.2676663865718
Iteration: 2, Func. Count: 12, Neg. LLF: 155.23321012589645
Iteration: 3, Func. Count: 18, Neg. LLF: 154.32436760821398
Iteration: 4, Func. Count: 23, Neg. LLF: 154.30593037432863
Iteration: 5, Func. Count: 28, Neg. LLF: 154.30379203857876
Iteration: 6, Func. Count: 33, Neg. LLF: 154.30373889448214
Iteration: 7, Func. Count: 38, Neg. LLF: 154.30373718725554
Iteration: 8, Func. Count: 42, Neg. LLF: 154.3037369856047
Optimization terminated successfully (Exit mode 0)
Current function value: 154.30373718725554
Iterations: 8
Function evaluations: 42
Gradient evaluations: 8
Iteration: 1, Func. Count: 5, Neg. LLF: 165.17002216383662
Iteration: 2, Func. Count: 10, Neg. LLF: 164.90791166224358
Iteration: 3, Func. Count: 15, Neg. LLF: 163.77341959161825
Iteration: 4, Func. Count: 19, Neg. LLF: 163.1858890322714
Iteration: 5, Func. Count: 23, Neg. LLF: 162.75401235061
Iteration: 6, Func. Count: 27, Neg. LLF: 162.65531020684955
Iteration: 7, Func. Count: 31, Neg. LLF: 162.63578732806965
Iteration: 8, Func. Count: 35, Neg. LLF: 162.63320151378525
Iteration: 9, Func. Count: 39, Neg. LLF: 162.6319126102241
Iteration: 10, Func. Count: 43, Neg. LLF: 162.6312141465364
Iteration: 11, Func. Count: 47, Neg. LLF: 162.63110201513746
Iteration: 12, Func. Count: 51, Neg. LLF: 162.63109823853182
Iteration: 13, Func. Count: 54, Neg. LLF: 162.63109823852955
Optimization terminated successfully (Exit mode 0)
Current function value: 162.63109823853182
Iterations: 13
Function evaluations: 54
Gradient evaluations: 13
Iteration: 1, Func. Count: 6, Neg. LLF: 551.6114857388799
Iteration: 2, Func. Count: 12, Neg. LLF: 160.35269818055252
Iteration: 3, Func. Count: 18, Neg. LLF: 158.9786475703729
Iteration: 4, Func. Count: 23, Neg. LLF: 165.32484721365626
Iteration: 5, Func. Count: 30, Neg. LLF: 158.95859102569347
Iteration: 6, Func. Count: 35, Neg. LLF: 158.95244371000342
Iteration: 7, Func. Count: 40, Neg. LLF: 158.95211845925155
Iteration: 8, Func. Count: 45, Neg. LLF: 158.95210007834743
Iteration: 9, Func. Count: 49, Neg. LLF: 158.95210007799125
Optimization terminated successfully (Exit mode 0)
Current function value: 158.95210007834743
Iterations: 9
Function evaluations: 49
Gradient evaluations: 9
Iteration: 1, Func. Count: 7, Neg. LLF: 235.2731117273775
Iteration: 2, Func. Count: 14, Neg. LLF: 159.51638321460337
Iteration: 3, Func. Count: 21, Neg. LLF: 160.2453021458233
Iteration: 4, Func. Count: 28, Neg. LLF: 159.13045683020425
Iteration: 5, Func. Count: 35, Neg. LLF: 159.32690022235883
Iteration: 6, Func. Count: 42, Neg. LLF: 159.05264036124768
Iteration: 7, Func. Count: 48, Neg. LLF: 159.02248016879525
Iteration: 8, Func. Count: 54, Neg. LLF: 158.98942821890356
Iteration: 9, Func. Count: 60, Neg. LLF: 158.9593891935497
Iteration: 10, Func. Count: 66, Neg. LLF: 158.9530700044589
Iteration: 11, Func. Count: 72, Neg. LLF: 158.95215219595158
Iteration: 12, Func. Count: 78, Neg. LLF: 158.95210559573707
Iteration: 13, Func. Count: 84, Neg. LLF: 158.95209963660747
Iteration: 14, Func. Count: 89, Neg. LLF: 158.95209963785564
Optimization terminated successfully (Exit mode 0)
Current function value: 158.95209963660747
Iterations: 14
Function evaluations: 89
Gradient evaluations: 14
Iteration: 1, Func. Count: 8, Neg. LLF: 232.0395714472432
Iteration: 2, Func. Count: 16, Neg. LLF: 159.25009112051532
Iteration: 3, Func. Count: 23, Neg. LLF: 175.1764124363408
Iteration: 4, Func. Count: 31, Neg. LLF: 168.21865807791445
Iteration: 5, Func. Count: 39, Neg. LLF: 159.06111324143674
Iteration: 6, Func. Count: 46, Neg. LLF: 159.02109647979702
Iteration: 7, Func. Count: 53, Neg. LLF: 158.9778607804026
Iteration: 8, Func. Count: 60, Neg. LLF: 158.93270836982626
Iteration: 9, Func. Count: 67, Neg. LLF: 158.91279935068363
Iteration: 10, Func. Count: 74, Neg. LLF: 158.9116739734793
Iteration: 11, Func. Count: 81, Neg. LLF: 158.9114628437656
Iteration: 12, Func. Count: 88, Neg. LLF: 158.91145926362816
Iteration: 13, Func. Count: 94, Neg. LLF: 158.91145926171643
Optimization terminated successfully (Exit mode 0)
Current function value: 158.91145926362816
Iterations: 13
Function evaluations: 94
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 231.20395251711793
Iteration: 2, Func. Count: 18, Neg. LLF: 248.10976657279537
Iteration: 3, Func. Count: 28, Neg. LLF: 162.89620319058295
Iteration: 4, Func. Count: 37, Neg. LLF: 159.74094199520675
Iteration: 5, Func. Count: 46, Neg. LLF: 158.6208561167975
Iteration: 6, Func. Count: 54, Neg. LLF: 158.55841986143997
Iteration: 7, Func. Count: 62, Neg. LLF: 158.53072451649635
Iteration: 8, Func. Count: 70, Neg. LLF: 158.51990815631825
Iteration: 9, Func. Count: 78, Neg. LLF: 158.50392175330643
Iteration: 10, Func. Count: 86, Neg. LLF: 158.4913041009559
Iteration: 11, Func. Count: 94, Neg. LLF: 158.48861616484413
Iteration: 12, Func. Count: 102, Neg. LLF: 158.48832449399254
Iteration: 13, Func. Count: 110, Neg. LLF: 158.48832248574274
Iteration: 14, Func. Count: 117, Neg. LLF: 158.4883224680278
Optimization terminated successfully (Exit mode 0)
Current function value: 158.48832248574274
Iterations: 14
Function evaluations: 117
Gradient evaluations: 14
Iteration: 1, Func. Count: 6, Neg. LLF: 164.2458190588567
Iteration: 2, Func. Count: 12, Neg. LLF: 164.00611236472713
Iteration: 3, Func. Count: 18, Neg. LLF: 161.96467251534727
Iteration: 4, Func. Count: 24, Neg. LLF: 161.0797479895771
Iteration: 5, Func. Count: 29, Neg. LLF: 161.07608118416806
Iteration: 6, Func. Count: 34, Neg. LLF: 161.0585374406318
Iteration: 7, Func. Count: 39, Neg. LLF: 161.0417290197398
Iteration: 8, Func. Count: 44, Neg. LLF: 161.04114623533945
Iteration: 9, Func. Count: 49, Neg. LLF: 161.04104910792995
Iteration: 10, Func. Count: 54, Neg. LLF: 161.0409499641467
Iteration: 11, Func. Count: 59, Neg. LLF: 161.04090250766401
Iteration: 12, Func. Count: 64, Neg. LLF: 161.0408926646538
Iteration: 13, Func. Count: 69, Neg. LLF: 161.040892096135
Optimization terminated successfully (Exit mode 0)
Current function value: 161.040892096135
Iterations: 13
Function evaluations: 69
Gradient evaluations: 13
Iteration: 1, Func. Count: 7, Neg. LLF: 238.1339099957882
Iteration: 2, Func. Count: 14, Neg. LLF: 159.59197838423086
Iteration: 3, Func. Count: 21, Neg. LLF: 159.79533212464713
Iteration: 4, Func. Count: 28, Neg. LLF: 159.19085461206316
Iteration: 5, Func. Count: 35, Neg. LLF: 159.0602602152988
Iteration: 6, Func. Count: 41, Neg. LLF: 159.02523856302807
Iteration: 7, Func. Count: 47, Neg. LLF: 159.00009711650287
Iteration: 8, Func. Count: 53, Neg. LLF: 158.9710981905559
Iteration: 9, Func. Count: 59, Neg. LLF: 158.95454326992228
Iteration: 10, Func. Count: 65, Neg. LLF: 158.95239259263698
Iteration: 11, Func. Count: 71, Neg. LLF: 158.95211539697306
Iteration: 12, Func. Count: 77, Neg. LLF: 158.95210007015118
Iteration: 13, Func. Count: 83, Neg. LLF: 158.95209954071723
Optimization terminated successfully (Exit mode 0)
Current function value: 158.95209954071723
Iterations: 13
Function evaluations: 83
Gradient evaluations: 13
Iteration: 1, Func. Count: 8, Neg. LLF: 236.03265323643595
Iteration: 2, Func. Count: 16, Neg. LLF: 282.52086883319265
Iteration: 3, Func. Count: 25, Neg. LLF: 165.12877014955757
Iteration: 4, Func. Count: 33, Neg. LLF: 159.10399869828413
Iteration: 5, Func. Count: 41, Neg. LLF: 158.97661242101273
Iteration: 6, Func. Count: 48, Neg. LLF: 158.9281501108562
Iteration: 7, Func. Count: 55, Neg. LLF: 158.91774445096095
Iteration: 8, Func. Count: 62, Neg. LLF: 158.90864392031094
Iteration: 9, Func. Count: 69, Neg. LLF: 158.90394271525892
Iteration: 10, Func. Count: 76, Neg. LLF: 158.89477731487426
Iteration: 11, Func. Count: 83, Neg. LLF: 158.89369801726664
Iteration: 12, Func. Count: 90, Neg. LLF: 158.8934093582063
Iteration: 13, Func. Count: 97, Neg. LLF: 158.89340301256894
Iteration: 14, Func. Count: 103, Neg. LLF: 158.89340300834218
Optimization terminated successfully (Exit mode 0)
Current function value: 158.89340301256894
Iterations: 14
Function evaluations: 103
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 188.51901420912503
Iteration: 2, Func. Count: 18, Neg. LLF: 159.57533742962565
Iteration: 3, Func. Count: 27, Neg. LLF: 171.7804719477085
Iteration: 4, Func. Count: 37, Neg. LLF: 158.4446189184609
Iteration: 5, Func. Count: 45, Neg. LLF: 158.12048013852382
Iteration: 6, Func. Count: 53, Neg. LLF: 158.2623386516632
Iteration: 7, Func. Count: 62, Neg. LLF: 158.10853490720095
Iteration: 8, Func. Count: 71, Neg. LLF: 158.06350653822463
Iteration: 9, Func. Count: 79, Neg. LLF: 158.0537968995627
Iteration: 10, Func. Count: 87, Neg. LLF: 158.0420968389942
Iteration: 11, Func. Count: 95, Neg. LLF: 158.03801714302446
Iteration: 12, Func. Count: 103, Neg. LLF: 158.03502313330128
Iteration: 13, Func. Count: 111, Neg. LLF: 158.0349394607731
Iteration: 14, Func. Count: 119, Neg. LLF: 158.0349381066748
Iteration: 15, Func. Count: 126, Neg. LLF: 158.03493806503604
Optimization terminated successfully (Exit mode 0)
Current function value: 158.0349381066748
Iterations: 15
Function evaluations: 126
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 187.01558365144473
Iteration: 2, Func. Count: 20, Neg. LLF: 258.1334978062778
Iteration: 3, Func. Count: 31, Neg. LLF: 165.4818893894219
Iteration: 4, Func. Count: 41, Neg. LLF: 157.98502877970864
Iteration: 5, Func. Count: 50, Neg. LLF: 159.8368665318473
Iteration: 6, Func. Count: 60, Neg. LLF: 158.63780296721905
Iteration: 7, Func. Count: 70, Neg. LLF: 157.93930094528795
Iteration: 8, Func. Count: 80, Neg. LLF: 157.6731392352236
Iteration: 9, Func. Count: 89, Neg. LLF: 157.67028429826416
Iteration: 10, Func. Count: 98, Neg. LLF: 157.66929780457428
Iteration: 11, Func. Count: 107, Neg. LLF: 157.66879308258783
Iteration: 12, Func. Count: 116, Neg. LLF: 157.6682938824799
Iteration: 13, Func. Count: 125, Neg. LLF: 157.6674897323186
Iteration: 14, Func. Count: 134, Neg. LLF: 157.66703382066987
Iteration: 15, Func. Count: 143, Neg. LLF: 157.66690639356167
Iteration: 16, Func. Count: 152, Neg. LLF: 157.6668975855065
Iteration: 17, Func. Count: 160, Neg. LLF: 157.66689755785507
Optimization terminated successfully (Exit mode 0)
Current function value: 157.6668975855065
Iterations: 17
Function evaluations: 160
Gradient evaluations: 17
Iteration: 1, Func. Count: 7, Neg. LLF: 166.3284875707984
Iteration: 2, Func. Count: 14, Neg. LLF: 162.90186203412242
Iteration: 3, Func. Count: 21, Neg. LLF: 163.80108732469782
Iteration: 4, Func. Count: 28, Neg. LLF: 160.1075265607376
Iteration: 5, Func. Count: 34, Neg. LLF: 160.12333504581116
Iteration: 6, Func. Count: 41, Neg. LLF: 159.96448196581795
Iteration: 7, Func. Count: 47, Neg. LLF: 159.85653668437024
Iteration: 8, Func. Count: 53, Neg. LLF: 159.8297922373022
Iteration: 9, Func. Count: 59, Neg. LLF: 159.76568478106304
Iteration: 10, Func. Count: 65, Neg. LLF: 159.63916685578425
Iteration: 11, Func. Count: 71, Neg. LLF: 159.55302397383096
Iteration: 12, Func. Count: 77, Neg. LLF: 159.5140087063162
Iteration: 13, Func. Count: 83, Neg. LLF: 159.50609050185574
Iteration: 14, Func. Count: 89, Neg. LLF: 159.50590507532655
Iteration: 15, Func. Count: 95, Neg. LLF: 159.5058780745333
Iteration: 16, Func. Count: 101, Neg. LLF: 159.50587755447702
Optimization terminated successfully (Exit mode 0)
Current function value: 159.50587755447702
Iterations: 16
Function evaluations: 101
Gradient evaluations: 16
Iteration: 1, Func. Count: 8, Neg. LLF: 235.23732142322945
Iteration: 2, Func. Count: 16, Neg. LLF: 159.71344347531752
Iteration: 3, Func. Count: 24, Neg. LLF: 160.54658827923868
Iteration: 4, Func. Count: 32, Neg. LLF: 159.12662306529066
Iteration: 5, Func. Count: 39, Neg. LLF: 159.06869220641246
Iteration: 6, Func. Count: 46, Neg. LLF: 159.03928943309225
Iteration: 7, Func. Count: 53, Neg. LLF: 159.0123539859917
Iteration: 8, Func. Count: 60, Neg. LLF: 158.9837008865363
Iteration: 9, Func. Count: 67, Neg. LLF: 158.95696274088482
Iteration: 10, Func. Count: 74, Neg. LLF: 158.95232207049915
Iteration: 11, Func. Count: 81, Neg. LLF: 158.95210043134801
Iteration: 12, Func. Count: 88, Neg. LLF: 158.95209954924402
Optimization terminated successfully (Exit mode 0)
Current function value: 158.95209954924402
Iterations: 12
Function evaluations: 88
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 234.11866867562296
Iteration: 2, Func. Count: 18, Neg. LLF: 339.20948893732964
Iteration: 3, Func. Count: 28, Neg. LLF: 166.56127747864744
Iteration: 4, Func. Count: 37, Neg. LLF: 159.06097343894422
Iteration: 5, Func. Count: 45, Neg. LLF: 158.98960092414427
Iteration: 6, Func. Count: 53, Neg. LLF: 158.95953410713884
Iteration: 7, Func. Count: 61, Neg. LLF: 158.9674376559208
Iteration: 8, Func. Count: 70, Neg. LLF: 158.91636799550815
Iteration: 9, Func. Count: 78, Neg. LLF: 158.90906621786954
Iteration: 10, Func. Count: 86, Neg. LLF: 158.89904832923645
Iteration: 11, Func. Count: 94, Neg. LLF: 158.89410089128577
Iteration: 12, Func. Count: 102, Neg. LLF: 158.89348932079534
Iteration: 13, Func. Count: 110, Neg. LLF: 158.8934068095707
Iteration: 14, Func. Count: 118, Neg. LLF: 158.89340309090022
Iteration: 15, Func. Count: 125, Neg. LLF: 158.8934030866103
Optimization terminated successfully (Exit mode 0)
Current function value: 158.89340309090022
Iterations: 15
Function evaluations: 125
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 187.52847355723313
Iteration: 2, Func. Count: 20, Neg. LLF: 159.78719983234012
Iteration: 3, Func. Count: 30, Neg. LLF: 181.77234193285176
Iteration: 4, Func. Count: 41, Neg. LLF: 162.93196816597572
Iteration: 5, Func. Count: 51, Neg. LLF: 157.84476527332555
Iteration: 6, Func. Count: 60, Neg. LLF: 157.4430556311265
Iteration: 7, Func. Count: 69, Neg. LLF: 156.97639424673483
Iteration: 8, Func. Count: 78, Neg. LLF: 156.89783712488102
Iteration: 9, Func. Count: 87, Neg. LLF: 156.86639564615095
Iteration: 10, Func. Count: 96, Neg. LLF: 156.85897164711938
Iteration: 11, Func. Count: 105, Neg. LLF: 156.858259278087
Iteration: 12, Func. Count: 114, Neg. LLF: 156.85681528541366
Iteration: 13, Func. Count: 123, Neg. LLF: 156.856441242554
Iteration: 14, Func. Count: 132, Neg. LLF: 156.8561805762875
Iteration: 15, Func. Count: 141, Neg. LLF: 156.85616974407588
Iteration: 16, Func. Count: 149, Neg. LLF: 156.85616970954868
Optimization terminated successfully (Exit mode 0)
Current function value: 156.85616974407588
Iterations: 16
Function evaluations: 149
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 186.48401527348045
Iteration: 2, Func. Count: 22, Neg. LLF: 255.39904609948854
Iteration: 3, Func. Count: 34, Neg. LLF: 166.473326025436
Iteration: 4, Func. Count: 45, Neg. LLF: 165.2690715809089
Iteration: 5, Func. Count: 56, Neg. LLF: 158.51189504814644
Iteration: 6, Func. Count: 67, Neg. LLF: 158.48769833353668
Iteration: 7, Func. Count: 78, Neg. LLF: 157.12764324430972
Iteration: 8, Func. Count: 88, Neg. LLF: 157.10531454800267
Iteration: 9, Func. Count: 98, Neg. LLF: 157.10118123970128
Iteration: 10, Func. Count: 108, Neg. LLF: 157.09750280127017
Iteration: 11, Func. Count: 118, Neg. LLF: 157.09623636371762
Iteration: 12, Func. Count: 128, Neg. LLF: 157.09550874992445
Iteration: 13, Func. Count: 138, Neg. LLF: 157.09431961501338
Iteration: 14, Func. Count: 148, Neg. LLF: 157.0936468317096
Iteration: 15, Func. Count: 158, Neg. LLF: 157.09351437144036
Iteration: 16, Func. Count: 168, Neg. LLF: 157.09350629467528
Iteration: 17, Func. Count: 177, Neg. LLF: 157.0935062669644
Optimization terminated successfully (Exit mode 0)
Current function value: 157.09350629467528
Iterations: 17
Function evaluations: 177
Gradient evaluations: 17
Iteration: 1, Func. Count: 8, Neg. LLF: 168.25641804155362
Iteration: 2, Func. Count: 16, Neg. LLF: 164.65562537114664
Iteration: 3, Func. Count: 25, Neg. LLF: 163.48826329251736
Iteration: 4, Func. Count: 33, Neg. LLF: 160.9140431033918
Iteration: 5, Func. Count: 41, Neg. LLF: 160.0423095089759
Iteration: 6, Func. Count: 48, Neg. LLF: 159.9836351244947
Iteration: 7, Func. Count: 55, Neg. LLF: 159.94965342222397
Iteration: 8, Func. Count: 62, Neg. LLF: 159.8915581456566
Iteration: 9, Func. Count: 69, Neg. LLF: 159.76145685489922
Iteration: 10, Func. Count: 76, Neg. LLF: 159.6416007835498
Iteration: 11, Func. Count: 83, Neg. LLF: 159.57974836221
Iteration: 12, Func. Count: 90, Neg. LLF: 159.53670032644777
Iteration: 13, Func. Count: 97, Neg. LLF: 159.52439955877225
Iteration: 14, Func. Count: 104, Neg. LLF: 159.50779168359966
Iteration: 15, Func. Count: 111, Neg. LLF: 159.50612677887852
Iteration: 16, Func. Count: 118, Neg. LLF: 159.5058965271613
Iteration: 17, Func. Count: 125, Neg. LLF: 159.50587892831265
Iteration: 18, Func. Count: 132, Neg. LLF: 159.5058775986045
Iteration: 19, Func. Count: 138, Neg. LLF: 159.5058776916189
Optimization terminated successfully (Exit mode 0)
Current function value: 159.5058775986045
Iterations: 19
Function evaluations: 138
Gradient evaluations: 19
Iteration: 1, Func. Count: 9, Neg. LLF: 232.53473082353344
Iteration: 2, Func. Count: 18, Neg. LLF: 159.72520866097142
Iteration: 3, Func. Count: 27, Neg. LLF: 159.58626731568293
Iteration: 4, Func. Count: 36, Neg. LLF: 159.20747278556664
Iteration: 5, Func. Count: 45, Neg. LLF: 159.08175164267604
Iteration: 6, Func. Count: 53, Neg. LLF: 159.04292608423626
Iteration: 7, Func. Count: 61, Neg. LLF: 159.0148865094333
Iteration: 8, Func. Count: 69, Neg. LLF: 158.97875947384256
Iteration: 9, Func. Count: 77, Neg. LLF: 158.95460867088218
Iteration: 10, Func. Count: 85, Neg. LLF: 158.9524049333933
Iteration: 11, Func. Count: 93, Neg. LLF: 158.95217633727736
Iteration: 12, Func. Count: 101, Neg. LLF: 158.95210191882663
Iteration: 13, Func. Count: 109, Neg. LLF: 158.95209959959263
Iteration: 14, Func. Count: 116, Neg. LLF: 158.9520995996038
Optimization terminated successfully (Exit mode 0)
Current function value: 158.95209959959263
Iterations: 14
Function evaluations: 116
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 231.39247855945126
Iteration: 2, Func. Count: 20, Neg. LLF: 175.10787543505316
Iteration: 3, Func. Count: 30, Neg. LLF: 163.56391797241818
Iteration: 4, Func. Count: 40, Neg. LLF: 159.04253762670933
Iteration: 5, Func. Count: 49, Neg. LLF: 159.10429909629892
Iteration: 6, Func. Count: 59, Neg. LLF: 158.96803370467416
Iteration: 7, Func. Count: 68, Neg. LLF: 159.01664371793348
Iteration: 8, Func. Count: 78, Neg. LLF: 158.92464487936167
Iteration: 9, Func. Count: 87, Neg. LLF: 158.91306104537625
Iteration: 10, Func. Count: 96, Neg. LLF: 158.90571566512244
Iteration: 11, Func. Count: 105, Neg. LLF: 158.89413043663535
Iteration: 12, Func. Count: 114, Neg. LLF: 158.89350532891342
Iteration: 13, Func. Count: 123, Neg. LLF: 158.8934116650469
Iteration: 14, Func. Count: 132, Neg. LLF: 158.89340353344986
Iteration: 15, Func. Count: 141, Neg. LLF: 158.8934029241431
Optimization terminated successfully (Exit mode 0)
Current function value: 158.8934029241431
Iterations: 15
Function evaluations: 141
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 186.6010456844911
Iteration: 2, Func. Count: 22, Neg. LLF: 159.7704960821711
Iteration: 3, Func. Count: 33, Neg. LLF: 169.69648758425444
Iteration: 4, Func. Count: 44, Neg. LLF: 162.96841563422828
Iteration: 5, Func. Count: 55, Neg. LLF: 157.50925225012307
Iteration: 6, Func. Count: 65, Neg. LLF: 157.07522056181378
Iteration: 7, Func. Count: 75, Neg. LLF: 156.96955723556135
Iteration: 8, Func. Count: 85, Neg. LLF: 156.88875047252927
Iteration: 9, Func. Count: 95, Neg. LLF: 156.86427337676588
Iteration: 10, Func. Count: 105, Neg. LLF: 156.86165973417312
Iteration: 11, Func. Count: 115, Neg. LLF: 156.85972876005465
Iteration: 12, Func. Count: 125, Neg. LLF: 156.85785192661064
Iteration: 13, Func. Count: 135, Neg. LLF: 156.85650135171994
Iteration: 14, Func. Count: 145, Neg. LLF: 156.85619823370087
Iteration: 15, Func. Count: 155, Neg. LLF: 156.85616868141554
Iteration: 16, Func. Count: 165, Neg. LLF: 156.8562432149912
Optimization terminated successfully (Exit mode 0)
Current function value: 156.85616853886086
Iterations: 17
Function evaluations: 166
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 165.5135220102231
Iteration: 2, Func. Count: 24, Neg. LLF: 174.66181518708245
Iteration: 3, Func. Count: 36, Neg. LLF: 166.99437163542575
Iteration: 4, Func. Count: 48, Neg. LLF: 161.89003540316102
Iteration: 5, Func. Count: 60, Neg. LLF: 158.08558499296151
Iteration: 6, Func. Count: 71, Neg. LLF: 158.0795313337676
Iteration: 7, Func. Count: 83, Neg. LLF: 157.919444363894
Iteration: 8, Func. Count: 94, Neg. LLF: 157.52758241860627
Iteration: 9, Func. Count: 105, Neg. LLF: 157.4078370280853
Iteration: 10, Func. Count: 116, Neg. LLF: 157.1934729924385
Iteration: 11, Func. Count: 127, Neg. LLF: 157.11439542209916
Iteration: 12, Func. Count: 138, Neg. LLF: 157.101543428271
Iteration: 13, Func. Count: 149, Neg. LLF: 157.0954617977471
Iteration: 14, Func. Count: 160, Neg. LLF: 157.093867390219
Iteration: 15, Func. Count: 171, Neg. LLF: 157.09354372405767
Iteration: 16, Func. Count: 182, Neg. LLF: 157.09350639769548
Iteration: 17, Func. Count: 192, Neg. LLF: 157.0935063699774
Optimization terminated successfully (Exit mode 0)
Current function value: 157.09350639769548
Iterations: 17
Function evaluations: 192
Gradient evaluations: 17
Iteration: 1, Func. Count: 5, Neg. LLF: 161.71532400130806
Iteration: 2, Func. Count: 9, Neg. LLF: 161.58702054184437
Iteration: 3, Func. Count: 13, Neg. LLF: 161.13593314910204
Iteration: 4, Func. Count: 17, Neg. LLF: 161.10325665314156
Iteration: 5, Func. Count: 21, Neg. LLF: 161.0650489327868
Iteration: 6, Func. Count: 25, Neg. LLF: 161.0633854961982
Iteration: 7, Func. Count: 29, Neg. LLF: 161.06329021418222
Iteration: 8, Func. Count: 33, Neg. LLF: 161.0632179344074
Iteration: 9, Func. Count: 37, Neg. LLF: 161.06291741719966
Iteration: 10, Func. Count: 41, Neg. LLF: 161.062632308813
Iteration: 11, Func. Count: 45, Neg. LLF: 161.06244713159043
Iteration: 12, Func. Count: 49, Neg. LLF: 161.0624089481069
Iteration: 13, Func. Count: 53, Neg. LLF: 161.062406395991
Iteration: 14, Func. Count: 56, Neg. LLF: 161.06240639598752
Optimization terminated successfully (Exit mode 0)
Current function value: 161.062406395991
Iterations: 14
Function evaluations: 56
Gradient evaluations: 14
Iteration: 1, Func. Count: 6, Neg. LLF: 162.40116736606612
Iteration: 2, Func. Count: 12, Neg. LLF: 311.5616093586828
Iteration: 3, Func. Count: 19, Neg. LLF: 161.92880482579454
Iteration: 4, Func. Count: 25, Neg. LLF: 161.04677243270757
Iteration: 5, Func. Count: 30, Neg. LLF: 161.04578946475556
Iteration: 6, Func. Count: 35, Neg. LLF: 161.0446655840593
Iteration: 7, Func. Count: 40, Neg. LLF: 161.04276623222395
Iteration: 8, Func. Count: 45, Neg. LLF: 161.04187644902694
Iteration: 9, Func. Count: 50, Neg. LLF: 161.04168470881237
Iteration: 10, Func. Count: 55, Neg. LLF: 161.04167731772475
Iteration: 11, Func. Count: 59, Neg. LLF: 161.04167731771523
Optimization terminated successfully (Exit mode 0)
Current function value: 161.04167731772475
Iterations: 11
Function evaluations: 59
Gradient evaluations: 11
Iteration: 1, Func. Count: 7, Neg. LLF: 171.51183482554674
Iteration: 2, Func. Count: 14, Neg. LLF: 161.4716286699707
Iteration: 3, Func. Count: 21, Neg. LLF: 162.01599590770778
Iteration: 4, Func. Count: 28, Neg. LLF: 160.94613365601452
Iteration: 5, Func. Count: 34, Neg. LLF: 161.0064692716163
Iteration: 6, Func. Count: 41, Neg. LLF: 160.9444534403817
Iteration: 7, Func. Count: 47, Neg. LLF: 160.94400877748905
Iteration: 8, Func. Count: 53, Neg. LLF: 160.94267213494052
Iteration: 9, Func. Count: 59, Neg. LLF: 160.9418653338635
Iteration: 10, Func. Count: 65, Neg. LLF: 160.94149773900202
Iteration: 11, Func. Count: 71, Neg. LLF: 160.9414388648096
Iteration: 12, Func. Count: 77, Neg. LLF: 160.94143244527564
Iteration: 13, Func. Count: 82, Neg. LLF: 160.94143244527766
Optimization terminated successfully (Exit mode 0)
Current function value: 160.94143244527564
Iterations: 13
Function evaluations: 82
Gradient evaluations: 13
Iteration: 1, Func. Count: 8, Neg. LLF: 170.83052875791978
Iteration: 2, Func. Count: 16, Neg. LLF: 161.1937687894115
Iteration: 3, Func. Count: 24, Neg. LLF: 162.76444561880498
Iteration: 4, Func. Count: 32, Neg. LLF: 162.19352594267323
Iteration: 5, Func. Count: 40, Neg. LLF: 160.73808069136604
Iteration: 6, Func. Count: 47, Neg. LLF: 160.73499793683317
Iteration: 7, Func. Count: 54, Neg. LLF: 160.73200492744172
Iteration: 8, Func. Count: 61, Neg. LLF: 160.73185937048277
Iteration: 9, Func. Count: 68, Neg. LLF: 160.73184850199615
Iteration: 10, Func. Count: 75, Neg. LLF: 160.7317966518623
Iteration: 11, Func. Count: 82, Neg. LLF: 160.731748990555
Iteration: 12, Func. Count: 88, Neg. LLF: 160.7317489906464
Optimization terminated successfully (Exit mode 0)
Current function value: 160.731748990555
Iterations: 12
Function evaluations: 88
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 161.87850430938073
Iteration: 2, Func. Count: 18, Neg. LLF: 163.29370314216578
Iteration: 3, Func. Count: 27, Neg. LLF: 169.92899212868974
Iteration: 4, Func. Count: 36, Neg. LLF: 160.54377450589337
Iteration: 5, Func. Count: 44, Neg. LLF: 161.0077058846442
Iteration: 6, Func. Count: 53, Neg. LLF: 160.47016933763962
Iteration: 7, Func. Count: 61, Neg. LLF: 160.38704574643572
Iteration: 8, Func. Count: 69, Neg. LLF: 160.361053814222
Iteration: 9, Func. Count: 77, Neg. LLF: 160.32690803968777
Iteration: 10, Func. Count: 85, Neg. LLF: 160.28527268140263
Iteration: 11, Func. Count: 93, Neg. LLF: 160.1982204071734
Iteration: 12, Func. Count: 101, Neg. LLF: 160.1381655587603
Iteration: 13, Func. Count: 109, Neg. LLF: 160.0748967005539
Iteration: 14, Func. Count: 117, Neg. LLF: 160.0622248926546
Iteration: 15, Func. Count: 125, Neg. LLF: 160.06160892262804
Iteration: 16, Func. Count: 133, Neg. LLF: 160.0614321882238
Iteration: 17, Func. Count: 141, Neg. LLF: 160.06142895718483
Iteration: 18, Func. Count: 148, Neg. LLF: 160.06142895717946
Optimization terminated successfully (Exit mode 0)
Current function value: 160.06142895718483
Iterations: 18
Function evaluations: 148
Gradient evaluations: 18
Iteration: 1, Func. Count: 6, Neg. LLF: 161.0363119606001
Iteration: 2, Func. Count: 12, Neg. LLF: 160.82516406615784
Iteration: 3, Func. Count: 18, Neg. LLF: 160.52823648516747
Iteration: 4, Func. Count: 24, Neg. LLF: 160.37524246232726
Iteration: 5, Func. Count: 29, Neg. LLF: 160.36920054618082
Iteration: 6, Func. Count: 34, Neg. LLF: 160.3460980301859
Iteration: 7, Func. Count: 39, Neg. LLF: 160.31677677826158
Iteration: 8, Func. Count: 44, Neg. LLF: 160.3009193322868
Iteration: 9, Func. Count: 49, Neg. LLF: 160.2940023875557
Iteration: 10, Func. Count: 54, Neg. LLF: 160.29168790710474
Iteration: 11, Func. Count: 59, Neg. LLF: 160.29146561078983
Iteration: 12, Func. Count: 64, Neg. LLF: 160.29130909702442
Iteration: 13, Func. Count: 69, Neg. LLF: 160.29130247024935
Iteration: 14, Func. Count: 73, Neg. LLF: 160.29130247025125
Optimization terminated successfully (Exit mode 0)
Current function value: 160.29130247024935
Iterations: 14
Function evaluations: 73
Gradient evaluations: 14
Iteration: 1, Func. Count: 7, Neg. LLF: 232.5686235848331
Iteration: 2, Func. Count: 14, Neg. LLF: 159.95591779263012
Iteration: 3, Func. Count: 21, Neg. LLF: 159.2619336330041
Iteration: 4, Func. Count: 28, Neg. LLF: 159.29176576100755
Iteration: 5, Func. Count: 35, Neg. LLF: 159.35045138935695
Iteration: 6, Func. Count: 42, Neg. LLF: 159.05462161865674
Iteration: 7, Func. Count: 48, Neg. LLF: 159.0199723372908
Iteration: 8, Func. Count: 54, Neg. LLF: 158.98002149290292
Iteration: 9, Func. Count: 60, Neg. LLF: 158.9585929298523
Iteration: 10, Func. Count: 66, Neg. LLF: 158.95252153386
Iteration: 11, Func. Count: 72, Neg. LLF: 158.95210515909514
Iteration: 12, Func. Count: 78, Neg. LLF: 158.9520999979785
Iteration: 13, Func. Count: 84, Neg. LLF: 158.95209962414637
Optimization terminated successfully (Exit mode 0)
Current function value: 158.95209962414637
Iterations: 13
Function evaluations: 84
Gradient evaluations: 13
Iteration: 1, Func. Count: 8, Neg. LLF: 231.34679556615657
Iteration: 2, Func. Count: 16, Neg. LLF: 159.6150117144723
Iteration: 3, Func. Count: 24, Neg. LLF: 159.79406757862546
Iteration: 4, Func. Count: 32, Neg. LLF: 160.61997335604187
Iteration: 5, Func. Count: 40, Neg. LLF: 159.11433641685323
Iteration: 6, Func. Count: 47, Neg. LLF: 159.13945683267795
Iteration: 7, Func. Count: 55, Neg. LLF: 159.2939091602409
Iteration: 8, Func. Count: 63, Neg. LLF: 159.05900757727863
Iteration: 9, Func. Count: 70, Neg. LLF: 159.03705472272313
Iteration: 10, Func. Count: 77, Neg. LLF: 159.0154215109168
Iteration: 11, Func. Count: 84, Neg. LLF: 158.95496214850743
Iteration: 12, Func. Count: 91, Neg. LLF: 158.95265040593188
Iteration: 13, Func. Count: 98, Neg. LLF: 158.95221483005454
Iteration: 14, Func. Count: 105, Neg. LLF: 158.9522424687921
Iteration: 15, Func. Count: 113, Neg. LLF: 158.95209989181714
Iteration: 16, Func. Count: 119, Neg. LLF: 158.95209989314424
Optimization terminated successfully (Exit mode 0)
Current function value: 158.95209989181714
Iterations: 16
Function evaluations: 119
Gradient evaluations: 16
Iteration: 1, Func. Count: 9, Neg. LLF: 227.86870694795766
Iteration: 2, Func. Count: 18, Neg. LLF: 159.56343887976382
Iteration: 3, Func. Count: 26, Neg. LLF: 160.16254773721695
Iteration: 4, Func. Count: 35, Neg. LLF: 189.38189570528
Iteration: 5, Func. Count: 44, Neg. LLF: 167.6778214224292
Iteration: 6, Func. Count: 53, Neg. LLF: 159.05997809085287
Iteration: 7, Func. Count: 61, Neg. LLF: 159.02756171111145
Iteration: 8, Func. Count: 69, Neg. LLF: 159.0026922834179
Iteration: 9, Func. Count: 77, Neg. LLF: 158.96440251599017
Iteration: 10, Func. Count: 85, Neg. LLF: 158.93156414494467
Iteration: 11, Func. Count: 93, Neg. LLF: 158.91382843245808
Iteration: 12, Func. Count: 101, Neg. LLF: 158.91182840833437
Iteration: 13, Func. Count: 109, Neg. LLF: 158.9114784409616
Iteration: 14, Func. Count: 117, Neg. LLF: 158.91145414851715
Iteration: 15, Func. Count: 125, Neg. LLF: 158.9114524520458
Iteration: 16, Func. Count: 132, Neg. LLF: 158.91145245009372
Optimization terminated successfully (Exit mode 0)
Current function value: 158.9114524520458
Iterations: 16
Function evaluations: 132
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 228.48798897407912
Iteration: 2, Func. Count: 20, Neg. LLF: 159.46218471811585
Iteration: 3, Func. Count: 29, Neg. LLF: 159.22876425271363
Iteration: 4, Func. Count: 39, Neg. LLF: 259.05183234239706
Iteration: 5, Func. Count: 49, Neg. LLF: 171.7241280359603
Iteration: 6, Func. Count: 59, Neg. LLF: 160.6378319735366
Iteration: 7, Func. Count: 69, Neg. LLF: 158.5601359413386
Iteration: 8, Func. Count: 78, Neg. LLF: 158.50840632833757
Iteration: 9, Func. Count: 87, Neg. LLF: 158.49224448778745
Iteration: 10, Func. Count: 96, Neg. LLF: 158.47802822313963
Iteration: 11, Func. Count: 105, Neg. LLF: 158.46517191542654
Iteration: 12, Func. Count: 114, Neg. LLF: 158.45306070090408
Iteration: 13, Func. Count: 123, Neg. LLF: 158.44969532054796
Iteration: 14, Func. Count: 132, Neg. LLF: 158.44935858516328
Iteration: 15, Func. Count: 141, Neg. LLF: 158.44935505459773
Iteration: 16, Func. Count: 149, Neg. LLF: 158.44935503900982
Optimization terminated successfully (Exit mode 0)
Current function value: 158.44935505459773
Iterations: 16
Function evaluations: 149
Gradient evaluations: 16
Iteration: 1, Func. Count: 7, Neg. LLF: 166.53021712813538
Iteration: 2, Func. Count: 14, Neg. LLF: 161.9422801032626
Iteration: 3, Func. Count: 22, Neg. LLF: 160.73110335404706
Iteration: 4, Func. Count: 29, Neg. LLF: 160.73608794474086
Iteration: 5, Func. Count: 36, Neg. LLF: 160.3580441789641
Iteration: 6, Func. Count: 42, Neg. LLF: 160.34791288189058
Iteration: 7, Func. Count: 48, Neg. LLF: 160.3432605847922
Iteration: 8, Func. Count: 54, Neg. LLF: 160.33567530964115
Iteration: 9, Func. Count: 60, Neg. LLF: 160.32783265046677
Iteration: 10, Func. Count: 66, Neg. LLF: 160.3086889636772
Iteration: 11, Func. Count: 72, Neg. LLF: 160.29980907989622
Iteration: 12, Func. Count: 78, Neg. LLF: 160.29398298328766
Iteration: 13, Func. Count: 84, Neg. LLF: 160.29164009838846
Iteration: 14, Func. Count: 90, Neg. LLF: 160.29133103874614
Iteration: 15, Func. Count: 96, Neg. LLF: 160.2913025957834
Iteration: 16, Func. Count: 101, Neg. LLF: 160.29130260030402
Optimization terminated successfully (Exit mode 0)
Current function value: 160.2913025957834
Iterations: 16
Function evaluations: 101
Gradient evaluations: 16
Iteration: 1, Func. Count: 8, Neg. LLF: 191.20110400277528
Iteration: 2, Func. Count: 16, Neg. LLF: 160.0596665427485
Iteration: 3, Func. Count: 24, Neg. LLF: 159.21784867594275
Iteration: 4, Func. Count: 32, Neg. LLF: 159.2125866716657
Iteration: 5, Func. Count: 40, Neg. LLF: 159.2451961897451
Iteration: 6, Func. Count: 48, Neg. LLF: 159.05272501588834
Iteration: 7, Func. Count: 55, Neg. LLF: 159.02835772252746
Iteration: 8, Func. Count: 62, Neg. LLF: 158.98240453785638
Iteration: 9, Func. Count: 69, Neg. LLF: 158.9577523895126
Iteration: 10, Func. Count: 76, Neg. LLF: 158.9523810760568
Iteration: 11, Func. Count: 83, Neg. LLF: 158.9521685701699
Iteration: 12, Func. Count: 90, Neg. LLF: 158.95211145966198
Iteration: 13, Func. Count: 97, Neg. LLF: 158.9521017761417
Iteration: 14, Func. Count: 104, Neg. LLF: 158.95209955636938
Iteration: 15, Func. Count: 110, Neg. LLF: 158.95209955634195
Optimization terminated successfully (Exit mode 0)
Current function value: 158.95209955636938
Iterations: 15
Function evaluations: 110
Gradient evaluations: 15
Iteration: 1, Func. Count: 9, Neg. LLF: 186.8762660551623
Iteration: 2, Func. Count: 18, Neg. LLF: 159.29222054440578
Iteration: 3, Func. Count: 27, Neg. LLF: 160.4424553927155
Iteration: 4, Func. Count: 36, Neg. LLF: 159.3833798279893
Iteration: 5, Func. Count: 45, Neg. LLF: 158.98816842566407
Iteration: 6, Func. Count: 53, Neg. LLF: 159.1371741903037
Iteration: 7, Func. Count: 62, Neg. LLF: 159.39621854256325
Iteration: 8, Func. Count: 71, Neg. LLF: 158.9428748071451
Iteration: 9, Func. Count: 79, Neg. LLF: 158.91353553575254
Iteration: 10, Func. Count: 87, Neg. LLF: 158.89848482515282
Iteration: 11, Func. Count: 95, Neg. LLF: 158.89410192816956
Iteration: 12, Func. Count: 103, Neg. LLF: 158.89343629925708
Iteration: 13, Func. Count: 111, Neg. LLF: 158.89340437351046
Iteration: 14, Func. Count: 119, Neg. LLF: 158.89340296149936
Iteration: 15, Func. Count: 126, Neg. LLF: 158.89340295721772
Optimization terminated successfully (Exit mode 0)
Current function value: 158.89340296149936
Iterations: 15
Function evaluations: 126
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 183.81085134308665
Iteration: 2, Func. Count: 20, Neg. LLF: 159.5093843648806
Iteration: 3, Func. Count: 30, Neg. LLF: 160.98751335290947
Iteration: 4, Func. Count: 40, Neg. LLF: 165.331499998686
Iteration: 5, Func. Count: 50, Neg. LLF: 158.28221826627035
Iteration: 6, Func. Count: 59, Neg. LLF: 158.19954978237834
Iteration: 7, Func. Count: 68, Neg. LLF: 158.17428030413183
Iteration: 8, Func. Count: 78, Neg. LLF: 158.08882219441864
Iteration: 9, Func. Count: 87, Neg. LLF: 158.07202825622971
Iteration: 10, Func. Count: 96, Neg. LLF: 158.05846995111773
Iteration: 11, Func. Count: 105, Neg. LLF: 158.03748801437143
Iteration: 12, Func. Count: 114, Neg. LLF: 158.03513203576006
Iteration: 13, Func. Count: 123, Neg. LLF: 158.03494051913026
Iteration: 14, Func. Count: 132, Neg. LLF: 158.03493831643226
Iteration: 15, Func. Count: 140, Neg. LLF: 158.03493827484874
Optimization terminated successfully (Exit mode 0)
Current function value: 158.03493831643226
Iterations: 15
Function evaluations: 140
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 184.96668376897918
Iteration: 2, Func. Count: 22, Neg. LLF: 159.37148559126118
Iteration: 3, Func. Count: 33, Neg. LLF: 158.17926289446598
Iteration: 4, Func. Count: 43, Neg. LLF: 160.02386073478078
Iteration: 5, Func. Count: 54, Neg. LLF: 159.13215509846046
Iteration: 6, Func. Count: 65, Neg. LLF: 158.1124795979005
Iteration: 7, Func. Count: 76, Neg. LLF: 177.84747037950353
Iteration: 8, Func. Count: 88, Neg. LLF: 157.75697269974836
Iteration: 9, Func. Count: 98, Neg. LLF: 157.79702555738243
Iteration: 10, Func. Count: 109, Neg. LLF: 157.7017898036042
Iteration: 11, Func. Count: 119, Neg. LLF: 157.67727495743316
Iteration: 12, Func. Count: 129, Neg. LLF: 157.67463063424466
Iteration: 13, Func. Count: 139, Neg. LLF: 157.6732644800603
Iteration: 14, Func. Count: 149, Neg. LLF: 157.66922855846343
Iteration: 15, Func. Count: 159, Neg. LLF: 157.66747130414453
Iteration: 16, Func. Count: 169, Neg. LLF: 157.66694682579597
Iteration: 17, Func. Count: 179, Neg. LLF: 157.66690363383327
Iteration: 18, Func. Count: 189, Neg. LLF: 157.66689833199075
Iteration: 19, Func. Count: 199, Neg. LLF: 157.66689755003327
Optimization terminated successfully (Exit mode 0)
Current function value: 157.66689755003327
Iterations: 19
Function evaluations: 199
Gradient evaluations: 19
Iteration: 1, Func. Count: 8, Neg. LLF: 162.8768125902194
Iteration: 2, Func. Count: 16, Neg. LLF: 161.97785231970494
Iteration: 3, Func. Count: 24, Neg. LLF: 160.62441073157743
Iteration: 4, Func. Count: 32, Neg. LLF: 166.00482420752468
Iteration: 5, Func. Count: 40, Neg. LLF: 159.6803950479779
Iteration: 6, Func. Count: 48, Neg. LLF: 159.5357903124906
Iteration: 7, Func. Count: 56, Neg. LLF: 159.4461272535646
Iteration: 8, Func. Count: 63, Neg. LLF: 159.2790635923299
Iteration: 9, Func. Count: 70, Neg. LLF: 159.08653395826582
Iteration: 10, Func. Count: 77, Neg. LLF: 158.82708934321116
Iteration: 11, Func. Count: 84, Neg. LLF: 158.6147116160992
Iteration: 12, Func. Count: 91, Neg. LLF: 158.5391724807346
Iteration: 13, Func. Count: 98, Neg. LLF: 158.53472065869977
Iteration: 14, Func. Count: 105, Neg. LLF: 158.53462171572355
Iteration: 15, Func. Count: 112, Neg. LLF: 158.53461768033756
Iteration: 16, Func. Count: 119, Neg. LLF: 158.53461332608163
Iteration: 17, Func. Count: 126, Neg. LLF: 158.53461024221238
Iteration: 18, Func. Count: 133, Neg. LLF: 158.53460928713739
Optimization terminated successfully (Exit mode 0)
Current function value: 158.53460928713739
Iterations: 18
Function evaluations: 133
Gradient evaluations: 18
Iteration: 1, Func. Count: 9, Neg. LLF: 230.75838548701262
Iteration: 2, Func. Count: 18, Neg. LLF: 160.2995565836383
Iteration: 3, Func. Count: 27, Neg. LLF: 159.5431828748179
Iteration: 4, Func. Count: 36, Neg. LLF: 159.5232807258772
Iteration: 5, Func. Count: 45, Neg. LLF: 159.20327224182336
Iteration: 6, Func. Count: 54, Neg. LLF: 159.08880110737783
Iteration: 7, Func. Count: 62, Neg. LLF: 159.06844707846892
Iteration: 8, Func. Count: 70, Neg. LLF: 159.02855921801145
Iteration: 9, Func. Count: 78, Neg. LLF: 158.9797447109376
Iteration: 10, Func. Count: 86, Neg. LLF: 158.95425784164436
Iteration: 11, Func. Count: 94, Neg. LLF: 158.95251266289833
Iteration: 12, Func. Count: 102, Neg. LLF: 158.95210866417506
Iteration: 13, Func. Count: 110, Neg. LLF: 158.95210159742365
Iteration: 14, Func. Count: 118, Neg. LLF: 158.9520995407395
Iteration: 15, Func. Count: 125, Neg. LLF: 158.95209954074625
Optimization terminated successfully (Exit mode 0)
Current function value: 158.9520995407395
Iterations: 15
Function evaluations: 125
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 182.84161447500563
Iteration: 2, Func. Count: 20, Neg. LLF: 160.33696889092136
Iteration: 3, Func. Count: 30, Neg. LLF: 159.6057870363386
Iteration: 4, Func. Count: 40, Neg. LLF: 159.57713821604455
Iteration: 5, Func. Count: 50, Neg. LLF: 159.03724246193127
Iteration: 6, Func. Count: 59, Neg. LLF: 159.0481467895102
Iteration: 7, Func. Count: 69, Neg. LLF: 159.0518441492844
Iteration: 8, Func. Count: 79, Neg. LLF: 158.96246659930608
Iteration: 9, Func. Count: 88, Neg. LLF: 158.9348564341282
Iteration: 10, Func. Count: 97, Neg. LLF: 158.9097456269746
Iteration: 11, Func. Count: 106, Neg. LLF: 158.89539789744802
Iteration: 12, Func. Count: 115, Neg. LLF: 158.89396677902823
Iteration: 13, Func. Count: 124, Neg. LLF: 158.89344324216017
Iteration: 14, Func. Count: 133, Neg. LLF: 158.89340982369615
Iteration: 15, Func. Count: 142, Neg. LLF: 158.893402952888
Iteration: 16, Func. Count: 150, Neg. LLF: 158.8934029486625
Optimization terminated successfully (Exit mode 0)
Current function value: 158.893402952888
Iterations: 16
Function evaluations: 150
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 183.98205385320492
Iteration: 2, Func. Count: 22, Neg. LLF: 165.16652092892485
Iteration: 3, Func. Count: 33, Neg. LLF: 157.3129216413057
Iteration: 4, Func. Count: 43, Neg. LLF: 213.5939418914892
Iteration: 5, Func. Count: 54, Neg. LLF: 157.2443827084523
Iteration: 6, Func. Count: 65, Neg. LLF: 156.8918572285365
Iteration: 7, Func. Count: 75, Neg. LLF: 156.87466844788702
Iteration: 8, Func. Count: 85, Neg. LLF: 156.86829287641325
Iteration: 9, Func. Count: 95, Neg. LLF: 156.8616292778601
Iteration: 10, Func. Count: 105, Neg. LLF: 156.8586431221945
Iteration: 11, Func. Count: 115, Neg. LLF: 156.8573069091581
Iteration: 12, Func. Count: 125, Neg. LLF: 156.8565416354825
Iteration: 13, Func. Count: 135, Neg. LLF: 156.85622468975495
Iteration: 14, Func. Count: 145, Neg. LLF: 156.85617306170107
Iteration: 15, Func. Count: 155, Neg. LLF: 156.85617002009394
Iteration: 16, Func. Count: 164, Neg. LLF: 156.85616998567738
Optimization terminated successfully (Exit mode 0)
Current function value: 156.85617002009394
Iterations: 16
Function evaluations: 164
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 186.15246875215746
Iteration: 2, Func. Count: 24, Neg. LLF: 187.04740762321512
Iteration: 3, Func. Count: 36, Neg. LLF: 158.08492334046386
Iteration: 4, Func. Count: 47, Neg. LLF: 158.51104318765212
Iteration: 5, Func. Count: 59, Neg. LLF: 212.2187397674861
Iteration: 6, Func. Count: 71, Neg. LLF: 166.00666440578277
Iteration: 7, Func. Count: 84, Neg. LLF: 157.10120331454712
Iteration: 8, Func. Count: 95, Neg. LLF: 157.09569024898354
Iteration: 9, Func. Count: 106, Neg. LLF: 157.0949791317738
Iteration: 10, Func. Count: 117, Neg. LLF: 157.09388125600233
Iteration: 11, Func. Count: 128, Neg. LLF: 157.09362209489802
Iteration: 12, Func. Count: 139, Neg. LLF: 157.0935684375119
Iteration: 13, Func. Count: 150, Neg. LLF: 157.09355705578494
Iteration: 14, Func. Count: 161, Neg. LLF: 157.0935322489603
Iteration: 15, Func. Count: 172, Neg. LLF: 157.09351376082148
Iteration: 16, Func. Count: 183, Neg. LLF: 157.09350680957817
Iteration: 17, Func. Count: 194, Neg. LLF: 157.09350605675186
Optimization terminated successfully (Exit mode 0)
Current function value: 157.09350605675186
Iterations: 17
Function evaluations: 194
Gradient evaluations: 17
Iteration: 1, Func. Count: 9, Neg. LLF: 167.0485729475704
Iteration: 2, Func. Count: 19, Neg. LLF: 161.62315257161848
Iteration: 3, Func. Count: 28, Neg. LLF: 161.01739854255422
Iteration: 4, Func. Count: 37, Neg. LLF: 163.47470848804159
Iteration: 5, Func. Count: 46, Neg. LLF: 159.6361546307204
Iteration: 6, Func. Count: 54, Neg. LLF: 160.0256911469754
Iteration: 7, Func. Count: 63, Neg. LLF: 159.6727951501202
Iteration: 8, Func. Count: 72, Neg. LLF: 159.45803849100446
Iteration: 9, Func. Count: 80, Neg. LLF: 159.28511648283487
Iteration: 10, Func. Count: 88, Neg. LLF: 159.0412335086521
Iteration: 11, Func. Count: 96, Neg. LLF: 158.7348673889702
Iteration: 12, Func. Count: 104, Neg. LLF: 158.60787600385467
Iteration: 13, Func. Count: 112, Neg. LLF: 158.55792171446186
Iteration: 14, Func. Count: 120, Neg. LLF: 158.54056245041417
Iteration: 15, Func. Count: 128, Neg. LLF: 158.53773730517082
Iteration: 16, Func. Count: 136, Neg. LLF: 158.536184452663
Iteration: 17, Func. Count: 144, Neg. LLF: 158.53479910127933
Iteration: 18, Func. Count: 152, Neg. LLF: 158.53464678907818
Iteration: 19, Func. Count: 160, Neg. LLF: 158.53461657274903
Iteration: 20, Func. Count: 168, Neg. LLF: 158.53461027899033
Iteration: 21, Func. Count: 176, Neg. LLF: 158.534609223161
Iteration: 22, Func. Count: 183, Neg. LLF: 158.53460936897912
Optimization terminated successfully (Exit mode 0)
Current function value: 158.534609223161
Iterations: 22
Function evaluations: 183
Gradient evaluations: 22
Iteration: 1, Func. Count: 10, Neg. LLF: 229.1145644083493
Iteration: 2, Func. Count: 20, Neg. LLF: 160.08318190607687
Iteration: 3, Func. Count: 30, Neg. LLF: 160.6162608982501
Iteration: 4, Func. Count: 40, Neg. LLF: 159.20442406376498
Iteration: 5, Func. Count: 49, Neg. LLF: 159.43945575119025
Iteration: 6, Func. Count: 59, Neg. LLF: 169.18686373975027
Iteration: 7, Func. Count: 69, Neg. LLF: 159.0873215798547
Iteration: 8, Func. Count: 78, Neg. LLF: 159.05544417419793
Iteration: 9, Func. Count: 87, Neg. LLF: 159.00858601169392
Iteration: 10, Func. Count: 96, Neg. LLF: 158.97622036047034
Iteration: 11, Func. Count: 105, Neg. LLF: 158.9539202036776
Iteration: 12, Func. Count: 114, Neg. LLF: 158.9521537864441
Iteration: 13, Func. Count: 123, Neg. LLF: 158.95210535525388
Iteration: 14, Func. Count: 132, Neg. LLF: 158.9521006013198
Iteration: 15, Func. Count: 141, Neg. LLF: 158.95209954322985
Iteration: 16, Func. Count: 149, Neg. LLF: 158.9520995432249
Optimization terminated successfully (Exit mode 0)
Current function value: 158.95209954322985
Iterations: 16
Function evaluations: 149
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 182.34672732498962
Iteration: 2, Func. Count: 22, Neg. LLF: 160.35928530507636
Iteration: 3, Func. Count: 33, Neg. LLF: 159.71895252193207
Iteration: 4, Func. Count: 44, Neg. LLF: 159.45456942192425
Iteration: 5, Func. Count: 55, Neg. LLF: 159.04072950347745
Iteration: 6, Func. Count: 65, Neg. LLF: 159.10394189195213
Iteration: 7, Func. Count: 76, Neg. LLF: 159.40678918154723
Iteration: 8, Func. Count: 87, Neg. LLF: 158.96753745648496
Iteration: 9, Func. Count: 97, Neg. LLF: 158.94017514471082
Iteration: 10, Func. Count: 107, Neg. LLF: 158.91660179164586
Iteration: 11, Func. Count: 117, Neg. LLF: 158.89668766888414
Iteration: 12, Func. Count: 127, Neg. LLF: 158.89368062067763
Iteration: 13, Func. Count: 137, Neg. LLF: 158.89341972162254
Iteration: 14, Func. Count: 147, Neg. LLF: 158.8934061322877
Iteration: 15, Func. Count: 157, Neg. LLF: 158.89340292446138
Iteration: 16, Func. Count: 166, Neg. LLF: 158.89340292022874
Optimization terminated successfully (Exit mode 0)
Current function value: 158.89340292446138
Iterations: 16
Function evaluations: 166
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 183.92158794976217
Iteration: 2, Func. Count: 24, Neg. LLF: 173.43268974721656
Iteration: 3, Func. Count: 36, Neg. LLF: 157.48527240647996
Iteration: 4, Func. Count: 47, Neg. LLF: 201.09573297259715
Iteration: 5, Func. Count: 59, Neg. LLF: 157.4041427536548
Iteration: 6, Func. Count: 71, Neg. LLF: 156.90361650217824
Iteration: 7, Func. Count: 82, Neg. LLF: 156.87939471550797
Iteration: 8, Func. Count: 93, Neg. LLF: 156.87258153235476
Iteration: 9, Func. Count: 104, Neg. LLF: 156.86452405596307
Iteration: 10, Func. Count: 115, Neg. LLF: 156.85976484398782
Iteration: 11, Func. Count: 126, Neg. LLF: 156.8580297862798
Iteration: 12, Func. Count: 137, Neg. LLF: 156.85677316223342
Iteration: 13, Func. Count: 148, Neg. LLF: 156.85627643453873
Iteration: 14, Func. Count: 159, Neg. LLF: 156.85617457000237
Iteration: 15, Func. Count: 170, Neg. LLF: 156.85616851676255
Iteration: 16, Func. Count: 181, Neg. LLF: 156.85616942537226
Optimization terminated successfully (Exit mode 0)
Current function value: 156.85616942537226
Iterations: 16
Function evaluations: 181
Gradient evaluations: 16
Iteration: 1, Func. Count: 13, Neg. LLF: 186.92418309591417
Iteration: 2, Func. Count: 26, Neg. LLF: 185.39664007438319
Iteration: 3, Func. Count: 39, Neg. LLF: 158.24483425077514
Iteration: 4, Func. Count: 51, Neg. LLF: 157.55113736033275
Iteration: 5, Func. Count: 63, Neg. LLF: 161.01522547177098
Iteration: 6, Func. Count: 76, Neg. LLF: 157.03077424064372
Iteration: 7, Func. Count: 88, Neg. LLF: 156.87205367442888
Iteration: 8, Func. Count: 100, Neg. LLF: 156.86973400584796
Iteration: 9, Func. Count: 112, Neg. LLF: 156.86521737907313
Iteration: 10, Func. Count: 124, Neg. LLF: 156.85684432372867
Iteration: 11, Func. Count: 136, Neg. LLF: 156.85633168297394
Iteration: 12, Func. Count: 148, Neg. LLF: 156.8562438279345
Iteration: 13, Func. Count: 160, Neg. LLF: 156.8562229640487
Iteration: 14, Func. Count: 172, Neg. LLF: 156.85617580571736
Iteration: 15, Func. Count: 184, Neg. LLF: 156.85617000663518
Iteration: 16, Func. Count: 196, Neg. LLF: 156.8561694502772
Optimization terminated successfully (Exit mode 0)
Current function value: 156.8561694502772
Iterations: 16
Function evaluations: 196
Gradient evaluations: 16
Iteration: 1, Func. Count: 6, Neg. LLF: 161.85401553394533
Iteration: 2, Func. Count: 11, Neg. LLF: 162.32640917524103
Iteration: 3, Func. Count: 17, Neg. LLF: 161.35208270629724
Iteration: 4, Func. Count: 22, Neg. LLF: 161.6511390841178
Iteration: 5, Func. Count: 28, Neg. LLF: 161.07111690231372
Iteration: 6, Func. Count: 33, Neg. LLF: 161.0633085963582
Iteration: 7, Func. Count: 38, Neg. LLF: 161.0631650824617
Iteration: 8, Func. Count: 43, Neg. LLF: 161.0631158871672
Iteration: 9, Func. Count: 48, Neg. LLF: 161.06293209492063
Iteration: 10, Func. Count: 53, Neg. LLF: 161.06269932867758
Iteration: 11, Func. Count: 58, Neg. LLF: 161.0624855042282
Iteration: 12, Func. Count: 63, Neg. LLF: 161.06241509609848
Iteration: 13, Func. Count: 68, Neg. LLF: 161.06240658599253
Iteration: 14, Func. Count: 72, Neg. LLF: 161.06240661580225
Optimization terminated successfully (Exit mode 0)
Current function value: 161.06240658599253
Iterations: 14
Function evaluations: 72
Gradient evaluations: 14
Iteration: 1, Func. Count: 7, Neg. LLF: 173.5508953995669
Iteration: 2, Func. Count: 14, Neg. LLF: 162.3219256641151
Iteration: 3, Func. Count: 21, Neg. LLF: 161.89316734061595
Iteration: 4, Func. Count: 28, Neg. LLF: 161.06695041192376
Iteration: 5, Func. Count: 34, Neg. LLF: 161.04750026467664
Iteration: 6, Func. Count: 40, Neg. LLF: 161.04632228516812
Iteration: 7, Func. Count: 46, Neg. LLF: 161.04520534198957
Iteration: 8, Func. Count: 52, Neg. LLF: 161.04303302105816
Iteration: 9, Func. Count: 58, Neg. LLF: 161.04195792307573
Iteration: 10, Func. Count: 64, Neg. LLF: 161.0416878889279
Iteration: 11, Func. Count: 70, Neg. LLF: 161.0416773679433
Iteration: 12, Func. Count: 75, Neg. LLF: 161.04167736790922
Optimization terminated successfully (Exit mode 0)
Current function value: 161.0416773679433
Iterations: 12
Function evaluations: 75
Gradient evaluations: 12
Iteration: 1, Func. Count: 8, Neg. LLF: 172.06101501046456
Iteration: 2, Func. Count: 16, Neg. LLF: 161.70422924926794
Iteration: 3, Func. Count: 24, Neg. LLF: 161.75857453856523
Iteration: 4, Func. Count: 32, Neg. LLF: 161.10417526510918
Iteration: 5, Func. Count: 40, Neg. LLF: 160.9448685606875
Iteration: 6, Func. Count: 47, Neg. LLF: 160.94375673919632
Iteration: 7, Func. Count: 54, Neg. LLF: 160.94348722332268
Iteration: 8, Func. Count: 61, Neg. LLF: 160.94258746216758
Iteration: 9, Func. Count: 68, Neg. LLF: 160.94200385740513
Iteration: 10, Func. Count: 75, Neg. LLF: 160.94154083364538
Iteration: 11, Func. Count: 82, Neg. LLF: 160.94144525707733
Iteration: 12, Func. Count: 89, Neg. LLF: 160.9414338445025
Iteration: 13, Func. Count: 96, Neg. LLF: 160.94143248723358
Iteration: 14, Func. Count: 102, Neg. LLF: 160.94143248720977
Optimization terminated successfully (Exit mode 0)
Current function value: 160.94143248723358
Iterations: 14
Function evaluations: 102
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 162.0082515800585
Iteration: 2, Func. Count: 18, Neg. LLF: 163.4261989696489
Iteration: 3, Func. Count: 27, Neg. LLF: 164.64537547042752
Iteration: 4, Func. Count: 36, Neg. LLF: 160.9402574110778
Iteration: 5, Func. Count: 44, Neg. LLF: 161.15901874276142
Iteration: 6, Func. Count: 53, Neg. LLF: 160.85431495446676
Iteration: 7, Func. Count: 61, Neg. LLF: 160.85070690710515
Iteration: 8, Func. Count: 69, Neg. LLF: 160.83205481018484
Iteration: 9, Func. Count: 77, Neg. LLF: 160.806509509391
Iteration: 10, Func. Count: 85, Neg. LLF: 160.7504217784161
Iteration: 11, Func. Count: 93, Neg. LLF: 160.7246586698362
Iteration: 12, Func. Count: 101, Neg. LLF: 160.71039412943134
Iteration: 13, Func. Count: 109, Neg. LLF: 160.71000128809993
Iteration: 14, Func. Count: 117, Neg. LLF: 160.7099773231773
Iteration: 15, Func. Count: 124, Neg. LLF: 160.70997732315186
Optimization terminated successfully (Exit mode 0)
Current function value: 160.7099773231773
Iterations: 15
Function evaluations: 124
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 161.96772910898625
Iteration: 2, Func. Count: 20, Neg. LLF: 163.77932099248903
Iteration: 3, Func. Count: 30, Neg. LLF: 173.98244190394877
Iteration: 4, Func. Count: 40, Neg. LLF: 160.35171096056266
Iteration: 5, Func. Count: 49, Neg. LLF: 160.47871542654786
Iteration: 6, Func. Count: 59, Neg. LLF: 160.01208452208013
Iteration: 7, Func. Count: 68, Neg. LLF: 159.94582352185844
Iteration: 8, Func. Count: 77, Neg. LLF: 159.9275644369273
Iteration: 9, Func. Count: 86, Neg. LLF: 159.9056535185445
Iteration: 10, Func. Count: 95, Neg. LLF: 159.85697281508087
Iteration: 11, Func. Count: 104, Neg. LLF: 159.77756235448123
Iteration: 12, Func. Count: 113, Neg. LLF: 159.74445663146187
Iteration: 13, Func. Count: 122, Neg. LLF: 159.75741117851686
Iteration: 14, Func. Count: 132, Neg. LLF: 159.71523905041687
Iteration: 15, Func. Count: 141, Neg. LLF: 159.70980270728617
Iteration: 16, Func. Count: 150, Neg. LLF: 159.7080667366381
Iteration: 17, Func. Count: 159, Neg. LLF: 159.70798996705614
Iteration: 18, Func. Count: 168, Neg. LLF: 159.70798339180826
Iteration: 19, Func. Count: 176, Neg. LLF: 159.70798339181454
Optimization terminated successfully (Exit mode 0)
Current function value: 159.70798339180826
Iterations: 19
Function evaluations: 176
Gradient evaluations: 19
Iteration: 1, Func. Count: 7, Neg. LLF: 161.35604544032458
Iteration: 2, Func. Count: 14, Neg. LLF: 164.24817372393977
Iteration: 3, Func. Count: 22, Neg. LLF: 161.36743874701975
Iteration: 4, Func. Count: 29, Neg. LLF: 160.3735060922944
Iteration: 5, Func. Count: 35, Neg. LLF: 160.3641102248169
Iteration: 6, Func. Count: 41, Neg. LLF: 160.35524897421146
Iteration: 7, Func. Count: 47, Neg. LLF: 160.32202423314882
Iteration: 8, Func. Count: 53, Neg. LLF: 160.30317711135538
Iteration: 9, Func. Count: 59, Neg. LLF: 160.29009005927693
Iteration: 10, Func. Count: 65, Neg. LLF: 160.27956611557065
Iteration: 11, Func. Count: 71, Neg. LLF: 160.27390094280662
Iteration: 12, Func. Count: 77, Neg. LLF: 160.2734752127626
Iteration: 13, Func. Count: 83, Neg. LLF: 160.27343894937815
Iteration: 14, Func. Count: 89, Neg. LLF: 160.27343793909537
Iteration: 15, Func. Count: 94, Neg. LLF: 160.27343793909498
Optimization terminated successfully (Exit mode 0)
Current function value: 160.27343793909537
Iterations: 15
Function evaluations: 94
Gradient evaluations: 15
Iteration: 1, Func. Count: 8, Neg. LLF: 235.3749952196884
Iteration: 2, Func. Count: 16, Neg. LLF: 159.83484071147836
Iteration: 3, Func. Count: 24, Neg. LLF: 159.09941183077385
Iteration: 4, Func. Count: 31, Neg. LLF: 159.17970003071807
Iteration: 5, Func. Count: 39, Neg. LLF: 159.16710753389486
Iteration: 6, Func. Count: 47, Neg. LLF: 159.04557783832968
Iteration: 7, Func. Count: 54, Neg. LLF: 159.01525879403238
Iteration: 8, Func. Count: 61, Neg. LLF: 158.9553976277366
Iteration: 9, Func. Count: 68, Neg. LLF: 158.95259851593576
Iteration: 10, Func. Count: 75, Neg. LLF: 158.95222546125905
Iteration: 11, Func. Count: 82, Neg. LLF: 158.95211153415067
Iteration: 12, Func. Count: 89, Neg. LLF: 158.95210037745318
Iteration: 13, Func. Count: 96, Neg. LLF: 158.95209954329064
Optimization terminated successfully (Exit mode 0)
Current function value: 158.95209954329064
Iterations: 13
Function evaluations: 96
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 232.00979716607208
Iteration: 2, Func. Count: 18, Neg. LLF: 159.6262352885504
Iteration: 3, Func. Count: 27, Neg. LLF: 160.1741407491388
Iteration: 4, Func. Count: 36, Neg. LLF: 160.49079198966547
Iteration: 5, Func. Count: 45, Neg. LLF: 159.15526071899268
Iteration: 6, Func. Count: 54, Neg. LLF: 159.1042598887942
Iteration: 7, Func. Count: 63, Neg. LLF: 159.07139627079732
Iteration: 8, Func. Count: 71, Neg. LLF: 159.05566649863044
Iteration: 9, Func. Count: 79, Neg. LLF: 159.03133880242495
Iteration: 10, Func. Count: 87, Neg. LLF: 158.99862319495074
Iteration: 11, Func. Count: 95, Neg. LLF: 158.988906348388
Iteration: 12, Func. Count: 103, Neg. LLF: 158.95485615062418
Iteration: 13, Func. Count: 111, Neg. LLF: 158.95224704213845
Iteration: 14, Func. Count: 119, Neg. LLF: 158.95222534212635
Iteration: 15, Func. Count: 128, Neg. LLF: 158.9521023782612
Iteration: 16, Func. Count: 136, Neg. LLF: 158.9520995430068
Iteration: 17, Func. Count: 143, Neg. LLF: 158.95209954440404
Optimization terminated successfully (Exit mode 0)
Current function value: 158.9520995430068
Iterations: 17
Function evaluations: 143
Gradient evaluations: 17
Iteration: 1, Func. Count: 10, Neg. LLF: 229.54770468900335
Iteration: 2, Func. Count: 20, Neg. LLF: 159.6328135821651
Iteration: 3, Func. Count: 29, Neg. LLF: 159.9907974947792
Iteration: 4, Func. Count: 39, Neg. LLF: 185.36784830564147
Iteration: 5, Func. Count: 49, Neg. LLF: 167.69573009496696
Iteration: 6, Func. Count: 59, Neg. LLF: 159.0459657955186
Iteration: 7, Func. Count: 68, Neg. LLF: 159.02877670602192
Iteration: 8, Func. Count: 77, Neg. LLF: 159.00524781617153
Iteration: 9, Func. Count: 86, Neg. LLF: 158.93140532281578
Iteration: 10, Func. Count: 95, Neg. LLF: 158.9150077545634
Iteration: 11, Func. Count: 104, Neg. LLF: 158.9116614951456
Iteration: 12, Func. Count: 113, Neg. LLF: 158.91148021233792
Iteration: 13, Func. Count: 122, Neg. LLF: 158.91145427883168
Iteration: 14, Func. Count: 131, Neg. LLF: 158.9114524272248
Iteration: 15, Func. Count: 139, Neg. LLF: 158.91145242513903
Optimization terminated successfully (Exit mode 0)
Current function value: 158.9114524272248
Iterations: 15
Function evaluations: 139
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 230.39236643122985
Iteration: 2, Func. Count: 22, Neg. LLF: 159.4997844787431
Iteration: 3, Func. Count: 32, Neg. LLF: 159.47116738019983
Iteration: 4, Func. Count: 43, Neg. LLF: 191.70920458767995
Iteration: 5, Func. Count: 54, Neg. LLF: 164.50566693926365
Iteration: 6, Func. Count: 66, Neg. LLF: 158.54998038873873
Iteration: 7, Func. Count: 76, Neg. LLF: 159.0152189359831
Iteration: 8, Func. Count: 87, Neg. LLF: 158.51198407771267
Iteration: 9, Func. Count: 97, Neg. LLF: 158.85996314766896
Iteration: 10, Func. Count: 108, Neg. LLF: 158.4843817968805
Iteration: 11, Func. Count: 118, Neg. LLF: 158.47827826153934
Iteration: 12, Func. Count: 128, Neg. LLF: 158.4686059252984
Iteration: 13, Func. Count: 138, Neg. LLF: 158.45947601101975
Iteration: 14, Func. Count: 148, Neg. LLF: 158.45173078516487
Iteration: 15, Func. Count: 158, Neg. LLF: 158.44967813571603
Iteration: 16, Func. Count: 168, Neg. LLF: 158.44942678638927
Iteration: 17, Func. Count: 178, Neg. LLF: 158.4493754334604
Iteration: 18, Func. Count: 188, Neg. LLF: 158.44935563112438
Iteration: 19, Func. Count: 198, Neg. LLF: 158.4493549375743
Optimization terminated successfully (Exit mode 0)
Current function value: 158.4493549375743
Iterations: 19
Function evaluations: 198
Gradient evaluations: 19
Iteration: 1, Func. Count: 8, Neg. LLF: 166.4892953957632
Iteration: 2, Func. Count: 16, Neg. LLF: 161.6982216763253
Iteration: 3, Func. Count: 25, Neg. LLF: 161.7854937140201
Iteration: 4, Func. Count: 34, Neg. LLF: 166.8170096925823
Iteration: 5, Func. Count: 42, Neg. LLF: 160.31609812962435
Iteration: 6, Func. Count: 50, Neg. LLF: 160.26824099108438
Iteration: 7, Func. Count: 57, Neg. LLF: 160.25914298056836
Iteration: 8, Func. Count: 64, Neg. LLF: 160.24964993293125
Iteration: 9, Func. Count: 71, Neg. LLF: 160.221397307691
Iteration: 10, Func. Count: 78, Neg. LLF: 160.1942304868438
Iteration: 11, Func. Count: 85, Neg. LLF: 160.1834491738184
Iteration: 12, Func. Count: 92, Neg. LLF: 160.18046586073942
Iteration: 13, Func. Count: 99, Neg. LLF: 160.1802319225872
Iteration: 14, Func. Count: 106, Neg. LLF: 160.18021580797807
Iteration: 15, Func. Count: 113, Neg. LLF: 160.18021129321806
Iteration: 16, Func. Count: 119, Neg. LLF: 160.18021129322923
Optimization terminated successfully (Exit mode 0)
Current function value: 160.18021129321806
Iterations: 16
Function evaluations: 119
Gradient evaluations: 16
Iteration: 1, Func. Count: 9, Neg. LLF: 221.48888824711668
Iteration: 2, Func. Count: 18, Neg. LLF: 159.72055567618355
Iteration: 3, Func. Count: 27, Neg. LLF: 162.713936278313
Iteration: 4, Func. Count: 36, Neg. LLF: 159.14344371868484
Iteration: 5, Func. Count: 44, Neg. LLF: 159.45110099056302
Iteration: 6, Func. Count: 53, Neg. LLF: 161.60757818819778
Iteration: 7, Func. Count: 62, Neg. LLF: 159.05796553447422
Iteration: 8, Func. Count: 70, Neg. LLF: 159.02617764805973
Iteration: 9, Func. Count: 78, Neg. LLF: 158.99462524149502
Iteration: 10, Func. Count: 86, Neg. LLF: 158.97026572873796
Iteration: 11, Func. Count: 94, Neg. LLF: 158.95417477926202
Iteration: 12, Func. Count: 102, Neg. LLF: 158.95225822917553
Iteration: 13, Func. Count: 110, Neg. LLF: 158.95211408383878
Iteration: 14, Func. Count: 118, Neg. LLF: 158.9521007892983
Iteration: 15, Func. Count: 126, Neg. LLF: 158.9520995720759
Iteration: 16, Func. Count: 133, Neg. LLF: 158.95209957207769
Optimization terminated successfully (Exit mode 0)
Current function value: 158.9520995720759
Iterations: 16
Function evaluations: 133
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 184.74808996978456
Iteration: 2, Func. Count: 20, Neg. LLF: 159.89515602851864
Iteration: 3, Func. Count: 30, Neg. LLF: 160.3049067278458
Iteration: 4, Func. Count: 40, Neg. LLF: 159.79026395806
Iteration: 5, Func. Count: 50, Neg. LLF: 159.13208742934063
Iteration: 6, Func. Count: 60, Neg. LLF: 159.08870139889135
Iteration: 7, Func. Count: 70, Neg. LLF: 158.94302516142466
Iteration: 8, Func. Count: 79, Neg. LLF: 158.96015447291336
Iteration: 9, Func. Count: 89, Neg. LLF: 158.8859045490498
Iteration: 10, Func. Count: 98, Neg. LLF: 158.8800115934806
Iteration: 11, Func. Count: 107, Neg. LLF: 158.87916947233913
Iteration: 12, Func. Count: 116, Neg. LLF: 158.8788693695917
Iteration: 13, Func. Count: 125, Neg. LLF: 158.87828083578046
Iteration: 14, Func. Count: 134, Neg. LLF: 158.87800354047826
Iteration: 15, Func. Count: 143, Neg. LLF: 158.87781344318032
Iteration: 16, Func. Count: 152, Neg. LLF: 158.87777394150214
Iteration: 17, Func. Count: 161, Neg. LLF: 158.87776891648943
Iteration: 18, Func. Count: 169, Neg. LLF: 158.87776891655716
Optimization terminated successfully (Exit mode 0)
Current function value: 158.87776891648943
Iterations: 18
Function evaluations: 169
Gradient evaluations: 18
Iteration: 1, Func. Count: 11, Neg. LLF: 184.4063076822047
Iteration: 2, Func. Count: 22, Neg. LLF: 159.30491834455978
Iteration: 3, Func. Count: 33, Neg. LLF: 158.155829332859
Iteration: 4, Func. Count: 43, Neg. LLF: 158.196640071763
Iteration: 5, Func. Count: 54, Neg. LLF: 158.1562264167368
Iteration: 6, Func. Count: 65, Neg. LLF: 158.13837930975188
Iteration: 7, Func. Count: 76, Neg. LLF: 158.06932805149094
Iteration: 8, Func. Count: 86, Neg. LLF: 158.04950218339184
Iteration: 9, Func. Count: 96, Neg. LLF: 158.03661073813407
Iteration: 10, Func. Count: 106, Neg. LLF: 158.0351016093541
Iteration: 11, Func. Count: 116, Neg. LLF: 158.03493992224432
Iteration: 12, Func. Count: 126, Neg. LLF: 158.03493813990218
Iteration: 13, Func. Count: 135, Neg. LLF: 158.03493809826247
Optimization terminated successfully (Exit mode 0)
Current function value: 158.03493813990218
Iterations: 13
Function evaluations: 135
Gradient evaluations: 13
Iteration: 1, Func. Count: 12, Neg. LLF: 184.49030452432007
Iteration: 2, Func. Count: 24, Neg. LLF: 158.93441841070745
Iteration: 3, Func. Count: 35, Neg. LLF: 160.2938630137819
Iteration: 4, Func. Count: 47, Neg. LLF: 238.5533119897231
Iteration: 5, Func. Count: 60, Neg. LLF: 162.50957133620557
Iteration: 6, Func. Count: 72, Neg. LLF: 160.51991752908538
Iteration: 7, Func. Count: 84, Neg. LLF: 158.21792027110715
Iteration: 8, Func. Count: 96, Neg. LLF: 157.44035412031522
Iteration: 9, Func. Count: 107, Neg. LLF: 157.48469463479455
Iteration: 10, Func. Count: 119, Neg. LLF: 157.41744045886935
Iteration: 11, Func. Count: 131, Neg. LLF: 157.4064137794021
Iteration: 12, Func. Count: 142, Neg. LLF: 157.4062888332542
Iteration: 13, Func. Count: 153, Neg. LLF: 157.40626222754392
Iteration: 14, Func. Count: 164, Neg. LLF: 157.4062592321445
Iteration: 15, Func. Count: 175, Neg. LLF: 157.4062574956808
Iteration: 16, Func. Count: 186, Neg. LLF: 157.40625442591696
Iteration: 17, Func. Count: 197, Neg. LLF: 157.40625242249632
Iteration: 18, Func. Count: 208, Neg. LLF: 157.40625174210226
Optimization terminated successfully (Exit mode 0)
Current function value: 157.40625174210226
Iterations: 18
Function evaluations: 208
Gradient evaluations: 18
Iteration: 1, Func. Count: 9, Neg. LLF: 165.1470466384617
Iteration: 2, Func. Count: 18, Neg. LLF: 162.2569878199738
Iteration: 3, Func. Count: 27, Neg. LLF: 161.07170031841468
Iteration: 4, Func. Count: 37, Neg. LLF: 160.17858753646823
Iteration: 5, Func. Count: 46, Neg. LLF: 160.77008486826264
Iteration: 6, Func. Count: 55, Neg. LLF: 159.5246253356922
Iteration: 7, Func. Count: 63, Neg. LLF: 159.46203903760664
Iteration: 8, Func. Count: 71, Neg. LLF: 159.46741898505354
Iteration: 9, Func. Count: 80, Neg. LLF: 159.17162773680352
Iteration: 10, Func. Count: 88, Neg. LLF: 158.9440975763483
Iteration: 11, Func. Count: 96, Neg. LLF: 158.73397938756526
Iteration: 12, Func. Count: 104, Neg. LLF: 158.57544284331559
Iteration: 13, Func. Count: 112, Neg. LLF: 158.5396016767508
Iteration: 14, Func. Count: 120, Neg. LLF: 158.53603091406526
Iteration: 15, Func. Count: 128, Neg. LLF: 158.53562489507615
Iteration: 16, Func. Count: 136, Neg. LLF: 158.535557614593
Iteration: 17, Func. Count: 144, Neg. LLF: 158.53553860753888
Iteration: 18, Func. Count: 152, Neg. LLF: 158.5353628889829
Iteration: 19, Func. Count: 160, Neg. LLF: 158.5352368492862
Iteration: 20, Func. Count: 168, Neg. LLF: 158.53492577712683
Iteration: 21, Func. Count: 176, Neg. LLF: 158.6134543567183
Iteration: 22, Func. Count: 185, Neg. LLF: 158.53442190708563
Iteration: 23, Func. Count: 193, Neg. LLF: 158.53388297540639
Iteration: 24, Func. Count: 201, Neg. LLF: 158.53354999197356
Iteration: 25, Func. Count: 209, Neg. LLF: 158.53263048140178
Iteration: 26, Func. Count: 217, Neg. LLF: 158.53225430694457
Iteration: 27, Func. Count: 225, Neg. LLF: 158.53213898147936
Iteration: 28, Func. Count: 233, Neg. LLF: 158.53213311806326
Iteration: 29, Func. Count: 241, Neg. LLF: 158.53213192344367
Iteration: 30, Func. Count: 248, Neg. LLF: 158.532131918299
Optimization terminated successfully (Exit mode 0)
Current function value: 158.53213192344367
Iterations: 30
Function evaluations: 248
Gradient evaluations: 30
Iteration: 1, Func. Count: 10, Neg. LLF: 232.56274083964135
Iteration: 2, Func. Count: 20, Neg. LLF: 159.8429235591544
Iteration: 3, Func. Count: 30, Neg. LLF: 165.09732540964194
Iteration: 4, Func. Count: 40, Neg. LLF: 159.1640692721863
Iteration: 5, Func. Count: 49, Neg. LLF: 159.63812063553846
Iteration: 6, Func. Count: 59, Neg. LLF: 160.90648744948277
Iteration: 7, Func. Count: 69, Neg. LLF: 159.06854472009394
Iteration: 8, Func. Count: 78, Neg. LLF: 159.02947764018953
Iteration: 9, Func. Count: 87, Neg. LLF: 158.99767816938066
Iteration: 10, Func. Count: 96, Neg. LLF: 158.97603208870083
Iteration: 11, Func. Count: 105, Neg. LLF: 158.9540729818314
Iteration: 12, Func. Count: 114, Neg. LLF: 158.952334364287
Iteration: 13, Func. Count: 123, Neg. LLF: 158.95211926888823
Iteration: 14, Func. Count: 132, Neg. LLF: 158.95210087009082
Iteration: 15, Func. Count: 141, Neg. LLF: 158.95209955125677
Iteration: 16, Func. Count: 149, Neg. LLF: 158.95209955126222
Optimization terminated successfully (Exit mode 0)
Current function value: 158.95209955125677
Iterations: 16
Function evaluations: 149
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 184.1430407356953
Iteration: 2, Func. Count: 22, Neg. LLF: 160.04088282930346
Iteration: 3, Func. Count: 33, Neg. LLF: 163.96424717198275
Iteration: 4, Func. Count: 44, Neg. LLF: 160.63756349501975
Iteration: 5, Func. Count: 55, Neg. LLF: 159.1634789721209
Iteration: 6, Func. Count: 66, Neg. LLF: 159.1551249250285
Iteration: 7, Func. Count: 77, Neg. LLF: 158.90002297088512
Iteration: 8, Func. Count: 87, Neg. LLF: 158.87353855875546
Iteration: 9, Func. Count: 97, Neg. LLF: 158.87573525108178
Iteration: 10, Func. Count: 108, Neg. LLF: 158.8667629511945
Iteration: 11, Func. Count: 118, Neg. LLF: 158.86587414495023
Iteration: 12, Func. Count: 128, Neg. LLF: 158.86540781146095
Iteration: 13, Func. Count: 138, Neg. LLF: 158.8652608780938
Iteration: 14, Func. Count: 148, Neg. LLF: 158.86520641032774
Iteration: 15, Func. Count: 158, Neg. LLF: 158.8650523767303
Iteration: 16, Func. Count: 168, Neg. LLF: 158.8650332466083
Iteration: 17, Func. Count: 178, Neg. LLF: 158.86503116392058
Iteration: 18, Func. Count: 187, Neg. LLF: 158.8650311637469
Optimization terminated successfully (Exit mode 0)
Current function value: 158.86503116392058
Iterations: 18
Function evaluations: 187
Gradient evaluations: 18
Iteration: 1, Func. Count: 12, Neg. LLF: 183.8026737213741
Iteration: 2, Func. Count: 24, Neg. LLF: 161.44884202104024
Iteration: 3, Func. Count: 36, Neg. LLF: 157.77693501181784
Iteration: 4, Func. Count: 47, Neg. LLF: 158.0680489003152
Iteration: 5, Func. Count: 59, Neg. LLF: 157.20470295135067
Iteration: 6, Func. Count: 70, Neg. LLF: 157.0174375046606
Iteration: 7, Func. Count: 81, Neg. LLF: 156.88056537804042
Iteration: 8, Func. Count: 92, Neg. LLF: 156.86885246064335
Iteration: 9, Func. Count: 103, Neg. LLF: 156.86224431065466
Iteration: 10, Func. Count: 114, Neg. LLF: 156.86075863054646
Iteration: 11, Func. Count: 125, Neg. LLF: 156.85720536154372
Iteration: 12, Func. Count: 136, Neg. LLF: 156.85631265583072
Iteration: 13, Func. Count: 147, Neg. LLF: 156.8562059155198
Iteration: 14, Func. Count: 158, Neg. LLF: 156.85612426796868
Iteration: 15, Func. Count: 169, Neg. LLF: 156.85618234357466
Iteration: 16, Func. Count: 182, Neg. LLF: 156.8561695995043
Iteration: 17, Func. Count: 194, Neg. LLF: 156.8561694652566
Iteration: 18, Func. Count: 204, Neg. LLF: 156.85616943080805
Optimization terminated successfully (Exit mode 0)
Current function value: 156.8561694652566
Iterations: 19
Function evaluations: 204
Gradient evaluations: 18
Iteration: 1, Func. Count: 13, Neg. LLF: 184.24428815571687
Iteration: 2, Func. Count: 26, Neg. LLF: 158.4144139523864
Iteration: 3, Func. Count: 38, Neg. LLF: 157.16449021206856
Iteration: 4, Func. Count: 50, Neg. LLF: 157.90867406942982
Iteration: 5, Func. Count: 63, Neg. LLF: 156.9541900535956
Iteration: 6, Func. Count: 76, Neg. LLF: 156.86817609118427
Iteration: 7, Func. Count: 88, Neg. LLF: 156.8637753044715
Iteration: 8, Func. Count: 100, Neg. LLF: 156.8606406417821
Iteration: 9, Func. Count: 112, Neg. LLF: 156.85716838081873
Iteration: 10, Func. Count: 124, Neg. LLF: 156.85627713738887
Iteration: 11, Func. Count: 136, Neg. LLF: 156.85616992450372
Iteration: 12, Func. Count: 147, Neg. LLF: 156.85616996409038
Optimization terminated successfully (Exit mode 0)
Current function value: 156.85616992450372
Iterations: 12
Function evaluations: 147
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 161.7937582737184
Iteration: 2, Func. Count: 20, Neg. LLF: 161.80739050567865
Iteration: 3, Func. Count: 30, Neg. LLF: 160.72552058691468
Iteration: 4, Func. Count: 40, Neg. LLF: 159.8433892744282
Iteration: 5, Func. Count: 50, Neg. LLF: 159.99058621666737
Iteration: 6, Func. Count: 60, Neg. LLF: 159.50900095665924
Iteration: 7, Func. Count: 69, Neg. LLF: 159.80298636784806
Iteration: 8, Func. Count: 79, Neg. LLF: 159.4473358686513
Iteration: 9, Func. Count: 88, Neg. LLF: 159.58713876846178
Iteration: 10, Func. Count: 98, Neg. LLF: 159.25742876767094
Iteration: 11, Func. Count: 107, Neg. LLF: 158.73482145294628
Iteration: 12, Func. Count: 116, Neg. LLF: 158.55564858460986
Iteration: 13, Func. Count: 125, Neg. LLF: 158.53505323085477
Iteration: 14, Func. Count: 134, Neg. LLF: 158.5336295855332
Iteration: 15, Func. Count: 143, Neg. LLF: 158.5328059342936
Iteration: 16, Func. Count: 152, Neg. LLF: 158.53234598701923
Iteration: 17, Func. Count: 161, Neg. LLF: 158.53214363960484
Iteration: 18, Func. Count: 170, Neg. LLF: 158.53213248860257
Iteration: 19, Func. Count: 179, Neg. LLF: 158.5321318971343
Optimization terminated successfully (Exit mode 0)
Current function value: 158.5321318971343
Iterations: 19
Function evaluations: 179
Gradient evaluations: 19
Iteration: 1, Func. Count: 11, Neg. LLF: 229.04013851328602
Iteration: 2, Func. Count: 22, Neg. LLF: 159.99372853728738
Iteration: 3, Func. Count: 33, Neg. LLF: 163.3536964179314
Iteration: 4, Func. Count: 44, Neg. LLF: 159.27274634155512
Iteration: 5, Func. Count: 54, Neg. LLF: 159.72724495895486
Iteration: 6, Func. Count: 65, Neg. LLF: 178.73462284153405
Iteration: 7, Func. Count: 76, Neg. LLF: 159.0899605225158
Iteration: 8, Func. Count: 86, Neg. LLF: 159.0508422702002
Iteration: 9, Func. Count: 96, Neg. LLF: 159.00920445508575
Iteration: 10, Func. Count: 106, Neg. LLF: 158.98767499360167
Iteration: 11, Func. Count: 116, Neg. LLF: 158.95830680879166
Iteration: 12, Func. Count: 126, Neg. LLF: 158.95249190919486
Iteration: 13, Func. Count: 136, Neg. LLF: 158.9521218618122
Iteration: 14, Func. Count: 146, Neg. LLF: 158.95209976663833
Iteration: 15, Func. Count: 155, Neg. LLF: 158.95209976670924
Optimization terminated successfully (Exit mode 0)
Current function value: 158.95209976663833
Iterations: 15
Function evaluations: 155
Gradient evaluations: 15
Iteration: 1, Func. Count: 12, Neg. LLF: 183.8188622422552
Iteration: 2, Func. Count: 24, Neg. LLF: 160.21236123206398
Iteration: 3, Func. Count: 36, Neg. LLF: 165.26534938859643
Iteration: 4, Func. Count: 48, Neg. LLF: 161.54576844918375
Iteration: 5, Func. Count: 60, Neg. LLF: 159.0966908163573
Iteration: 6, Func. Count: 71, Neg. LLF: 159.0249497919073
Iteration: 7, Func. Count: 82, Neg. LLF: 159.01164569354398
Iteration: 8, Func. Count: 94, Neg. LLF: 158.91790083322883
Iteration: 9, Func. Count: 105, Neg. LLF: 158.87084530808966
Iteration: 10, Func. Count: 116, Neg. LLF: 158.86663647448768
Iteration: 11, Func. Count: 127, Neg. LLF: 158.8655194963808
Iteration: 12, Func. Count: 138, Neg. LLF: 158.86533172135037
Iteration: 13, Func. Count: 149, Neg. LLF: 158.86524148049503
Iteration: 14, Func. Count: 160, Neg. LLF: 158.86516295376617
Iteration: 15, Func. Count: 171, Neg. LLF: 158.8650595294214
Iteration: 16, Func. Count: 182, Neg. LLF: 158.86503434761823
Iteration: 17, Func. Count: 193, Neg. LLF: 158.86503122934505
Iteration: 18, Func. Count: 203, Neg. LLF: 158.8650312292034
Optimization terminated successfully (Exit mode 0)
Current function value: 158.86503122934505
Iterations: 18
Function evaluations: 203
Gradient evaluations: 18
Iteration: 1, Func. Count: 13, Neg. LLF: 183.34378631077897
Iteration: 2, Func. Count: 26, Neg. LLF: 161.50219117783112
Iteration: 3, Func. Count: 39, Neg. LLF: 157.5175649238616
Iteration: 4, Func. Count: 51, Neg. LLF: 211.65914637124942
Iteration: 5, Func. Count: 65, Neg. LLF: 157.1187709954789
Iteration: 6, Func. Count: 77, Neg. LLF: 156.97645832889754
Iteration: 7, Func. Count: 89, Neg. LLF: 156.89064584756665
Iteration: 8, Func. Count: 101, Neg. LLF: 156.8665422161017
Iteration: 9, Func. Count: 113, Neg. LLF: 156.8628454504075
Iteration: 10, Func. Count: 125, Neg. LLF: 156.86050651921403
Iteration: 11, Func. Count: 137, Neg. LLF: 156.857722527564
Iteration: 12, Func. Count: 149, Neg. LLF: 156.85647691040165
Iteration: 13, Func. Count: 161, Neg. LLF: 156.85618185425704
Iteration: 14, Func. Count: 173, Neg. LLF: 156.85616942616866
Iteration: 15, Func. Count: 184, Neg. LLF: 156.85616939168446
Optimization terminated successfully (Exit mode 0)
Current function value: 156.85616942616866
Iterations: 15
Function evaluations: 184
Gradient evaluations: 15
Iteration: 1, Func. Count: 14, Neg. LLF: 183.8687173465293
Iteration: 2, Func. Count: 28, Neg. LLF: 159.4612473345296
Iteration: 3, Func. Count: 42, Neg. LLF: 157.97720628558432
Iteration: 4, Func. Count: 55, Neg. LLF: 165.03998600393848
Iteration: 5, Func. Count: 69, Neg. LLF: 181.9726399301879
Iteration: 6, Func. Count: 83, Neg. LLF: 193.13374572583902
Iteration: 7, Func. Count: 97, Neg. LLF: 157.12625240839878
Iteration: 8, Func. Count: 111, Neg. LLF: 157.31863197900404
Iteration: 9, Func. Count: 125, Neg. LLF: 156.99173252870577
Iteration: 10, Func. Count: 138, Neg. LLF: 156.9779460751507
Iteration: 11, Func. Count: 151, Neg. LLF: 156.97445335241326
Iteration: 12, Func. Count: 164, Neg. LLF: 156.97177457631798
Iteration: 13, Func. Count: 177, Neg. LLF: 156.97080680083837
Iteration: 14, Func. Count: 190, Neg. LLF: 156.96986565232027
Iteration: 15, Func. Count: 203, Neg. LLF: 156.96908134995573
Iteration: 16, Func. Count: 216, Neg. LLF: 156.9684515115136
Iteration: 17, Func. Count: 229, Neg. LLF: 156.9682398978972
Iteration: 18, Func. Count: 242, Neg. LLF: 156.9682157944164
Iteration: 19, Func. Count: 255, Neg. LLF: 156.96821467205197
Iteration: 20, Func. Count: 267, Neg. LLF: 156.96821465614593
Optimization terminated successfully (Exit mode 0)
Current function value: 156.96821467205197
Iterations: 20
Function evaluations: 267
Gradient evaluations: 20
Iteration: 1, Func. Count: 7, Neg. LLF: 162.10532298024378
Iteration: 2, Func. Count: 13, Neg. LLF: 164.08220851435934
Iteration: 3, Func. Count: 20, Neg. LLF: 161.43945427820134
Iteration: 4, Func. Count: 26, Neg. LLF: 161.2328020805869
Iteration: 5, Func. Count: 32, Neg. LLF: 161.1088047869716
Iteration: 6, Func. Count: 38, Neg. LLF: 161.06711330835444
Iteration: 7, Func. Count: 44, Neg. LLF: 161.0629134943139
Iteration: 8, Func. Count: 50, Neg. LLF: 161.06272254396612
Iteration: 9, Func. Count: 56, Neg. LLF: 161.06270692496028
Iteration: 10, Func. Count: 62, Neg. LLF: 161.06263536492983
Iteration: 11, Func. Count: 68, Neg. LLF: 161.06243637868002
Iteration: 12, Func. Count: 74, Neg. LLF: 161.06240636699167
Iteration: 13, Func. Count: 79, Neg. LLF: 161.06240637364823
Optimization terminated successfully (Exit mode 0)
Current function value: 161.06240636699167
Iterations: 13
Function evaluations: 79
Gradient evaluations: 13
Iteration: 1, Func. Count: 8, Neg. LLF: 172.04105151357953
Iteration: 2, Func. Count: 16, Neg. LLF: 162.24839081343438
Iteration: 3, Func. Count: 24, Neg. LLF: 161.10385359573513
Iteration: 4, Func. Count: 31, Neg. LLF: 186.64664693952147
Iteration: 5, Func. Count: 40, Neg. LLF: 161.07188190945908
Iteration: 6, Func. Count: 48, Neg. LLF: 161.04970082659693
Iteration: 7, Func. Count: 55, Neg. LLF: 161.0482415288967
Iteration: 8, Func. Count: 62, Neg. LLF: 161.04474552190686
Iteration: 9, Func. Count: 69, Neg. LLF: 161.04245871481768
Iteration: 10, Func. Count: 76, Neg. LLF: 161.04172976726665
Iteration: 11, Func. Count: 83, Neg. LLF: 161.0416776077819
Iteration: 12, Func. Count: 89, Neg. LLF: 161.04167760776875
Optimization terminated successfully (Exit mode 0)
Current function value: 161.0416776077819
Iterations: 12
Function evaluations: 89
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 171.1694970940996
Iteration: 2, Func. Count: 18, Neg. LLF: 161.60929136373792
Iteration: 3, Func. Count: 27, Neg. LLF: 162.90931618192465
Iteration: 4, Func. Count: 36, Neg. LLF: 161.2361020793988
Iteration: 5, Func. Count: 45, Neg. LLF: 160.95289743543398
Iteration: 6, Func. Count: 53, Neg. LLF: 160.9431221788377
Iteration: 7, Func. Count: 61, Neg. LLF: 160.94255187691977
Iteration: 8, Func. Count: 69, Neg. LLF: 160.9423944987047
Iteration: 9, Func. Count: 77, Neg. LLF: 160.94209077723474
Iteration: 10, Func. Count: 85, Neg. LLF: 160.94189280190514
Iteration: 11, Func. Count: 93, Neg. LLF: 160.94157055412325
Iteration: 12, Func. Count: 101, Neg. LLF: 160.9414539297867
Iteration: 13, Func. Count: 109, Neg. LLF: 160.9414333571352
Iteration: 14, Func. Count: 117, Neg. LLF: 160.9414323186738
Iteration: 15, Func. Count: 124, Neg. LLF: 160.94143231868063
Optimization terminated successfully (Exit mode 0)
Current function value: 160.9414323186738
Iterations: 15
Function evaluations: 124
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 162.02185068050608
Iteration: 2, Func. Count: 20, Neg. LLF: 163.21120946035637
Iteration: 3, Func. Count: 30, Neg. LLF: 165.19436496659682
Iteration: 4, Func. Count: 40, Neg. LLF: 160.89984271410495
Iteration: 5, Func. Count: 49, Neg. LLF: 161.2593934497777
Iteration: 6, Func. Count: 59, Neg. LLF: 160.85567328618149
Iteration: 7, Func. Count: 68, Neg. LLF: 160.85080058260442
Iteration: 8, Func. Count: 77, Neg. LLF: 160.8417598461866
Iteration: 9, Func. Count: 86, Neg. LLF: 160.8181659957913
Iteration: 10, Func. Count: 95, Neg. LLF: 160.77636097518968
Iteration: 11, Func. Count: 104, Neg. LLF: 160.74644963614594
Iteration: 12, Func. Count: 113, Neg. LLF: 160.72375627301875
Iteration: 13, Func. Count: 122, Neg. LLF: 160.71281048103256
Iteration: 14, Func. Count: 131, Neg. LLF: 160.71020157905414
Iteration: 15, Func. Count: 140, Neg. LLF: 160.7099922387219
Iteration: 16, Func. Count: 149, Neg. LLF: 160.70997813161426
Iteration: 17, Func. Count: 158, Neg. LLF: 160.70997697816887
Iteration: 18, Func. Count: 166, Neg. LLF: 160.70997697817708
Optimization terminated successfully (Exit mode 0)
Current function value: 160.70997697816887
Iterations: 18
Function evaluations: 166
Gradient evaluations: 18
Iteration: 1, Func. Count: 11, Neg. LLF: 161.98018384073634
Iteration: 2, Func. Count: 22, Neg. LLF: 163.23685887221916
Iteration: 3, Func. Count: 33, Neg. LLF: 168.1536587481644
Iteration: 4, Func. Count: 44, Neg. LLF: 160.28078810057502
Iteration: 5, Func. Count: 54, Neg. LLF: 160.2388553990557
Iteration: 6, Func. Count: 65, Neg. LLF: 159.9602912535785
Iteration: 7, Func. Count: 75, Neg. LLF: 160.08807295693197
Iteration: 8, Func. Count: 86, Neg. LLF: 159.91912026303604
Iteration: 9, Func. Count: 96, Neg. LLF: 159.89892722678584
Iteration: 10, Func. Count: 106, Neg. LLF: 159.84231525441558
Iteration: 11, Func. Count: 116, Neg. LLF: 159.8042050178996
Iteration: 12, Func. Count: 126, Neg. LLF: 159.7502907614596
Iteration: 13, Func. Count: 136, Neg. LLF: 159.72432129816298
Iteration: 14, Func. Count: 146, Neg. LLF: 160.12365869675924
Iteration: 15, Func. Count: 157, Neg. LLF: 159.7093276028545
Iteration: 16, Func. Count: 167, Neg. LLF: 159.70800330262452
Iteration: 17, Func. Count: 177, Neg. LLF: 159.7079846473409
Iteration: 18, Func. Count: 187, Neg. LLF: 159.7079831815421
Iteration: 19, Func. Count: 196, Neg. LLF: 159.70798318152526
Optimization terminated successfully (Exit mode 0)
Current function value: 159.7079831815421
Iterations: 19
Function evaluations: 196
Gradient evaluations: 19
Iteration: 1, Func. Count: 8, Neg. LLF: 161.9612908612977
Iteration: 2, Func. Count: 16, Neg. LLF: 163.83310675226105
Iteration: 3, Func. Count: 24, Neg. LLF: 160.47889638575293
Iteration: 4, Func. Count: 31, Neg. LLF: 160.44841475399977
Iteration: 5, Func. Count: 39, Neg. LLF: 160.99945971348265
Iteration: 6, Func. Count: 47, Neg. LLF: 160.38295035958035
Iteration: 7, Func. Count: 55, Neg. LLF: 160.35323095011654
Iteration: 8, Func. Count: 62, Neg. LLF: 160.3397958466356
Iteration: 9, Func. Count: 69, Neg. LLF: 160.3249781451892
Iteration: 10, Func. Count: 76, Neg. LLF: 160.29648678054102
Iteration: 11, Func. Count: 83, Neg. LLF: 160.28435479259338
Iteration: 12, Func. Count: 90, Neg. LLF: 160.2764648028939
Iteration: 13, Func. Count: 97, Neg. LLF: 160.43460398396024
Iteration: 14, Func. Count: 106, Neg. LLF: 160.27429180688645
Iteration: 15, Func. Count: 113, Neg. LLF: 160.2736927034397
Iteration: 16, Func. Count: 120, Neg. LLF: 160.27331021344682
Iteration: 17, Func. Count: 127, Neg. LLF: 160.27330961814855
Optimization terminated successfully (Exit mode 0)
Current function value: 160.27330961814855
Iterations: 17
Function evaluations: 127
Gradient evaluations: 17
Iteration: 1, Func. Count: 9, Neg. LLF: 237.52750249859315
Iteration: 2, Func. Count: 18, Neg. LLF: 171.0767394426696
Iteration: 3, Func. Count: 28, Neg. LLF: 159.76681022310365
Iteration: 4, Func. Count: 37, Neg. LLF: 160.73680387849816
Iteration: 5, Func. Count: 46, Neg. LLF: 159.13327894167588
Iteration: 6, Func. Count: 54, Neg. LLF: 159.05612948199902
Iteration: 7, Func. Count: 62, Neg. LLF: 159.0392972940821
Iteration: 8, Func. Count: 70, Neg. LLF: 159.00655090848755
Iteration: 9, Func. Count: 78, Neg. LLF: 158.97345684433336
Iteration: 10, Func. Count: 86, Neg. LLF: 158.95984721905808
Iteration: 11, Func. Count: 94, Neg. LLF: 158.9523354862603
Iteration: 12, Func. Count: 102, Neg. LLF: 158.95211644595616
Iteration: 13, Func. Count: 110, Neg. LLF: 158.9521063779145
Iteration: 14, Func. Count: 118, Neg. LLF: 158.95209968369977
Iteration: 15, Func. Count: 125, Neg. LLF: 158.95209968355246
Optimization terminated successfully (Exit mode 0)
Current function value: 158.95209968369977
Iterations: 15
Function evaluations: 125
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 231.36943868231714
Iteration: 2, Func. Count: 20, Neg. LLF: 159.74441533760574
Iteration: 3, Func. Count: 30, Neg. LLF: 159.80098159238665
Iteration: 4, Func. Count: 40, Neg. LLF: 164.635378865259
Iteration: 5, Func. Count: 50, Neg. LLF: 159.74737489512242
Iteration: 6, Func. Count: 60, Neg. LLF: 159.17380784466724
Iteration: 7, Func. Count: 70, Neg. LLF: 159.0673895800048
Iteration: 8, Func. Count: 79, Neg. LLF: 159.05478036039145
Iteration: 9, Func. Count: 88, Neg. LLF: 159.0266863314251
Iteration: 10, Func. Count: 97, Neg. LLF: 158.99948040885974
Iteration: 11, Func. Count: 106, Neg. LLF: 158.99502835486814
Iteration: 12, Func. Count: 116, Neg. LLF: 158.953335134163
Iteration: 13, Func. Count: 125, Neg. LLF: 158.9526304044714
Iteration: 14, Func. Count: 134, Neg. LLF: 158.95210863133056
Iteration: 15, Func. Count: 143, Neg. LLF: 158.95210709183402
Iteration: 16, Func. Count: 152, Neg. LLF: 158.952099609945
Optimization terminated successfully (Exit mode 0)
Current function value: 158.95209960847475
Iterations: 16
Function evaluations: 152
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 228.836840251501
Iteration: 2, Func. Count: 22, Neg. LLF: 159.7211356620054
Iteration: 3, Func. Count: 32, Neg. LLF: 160.43703393795263
Iteration: 4, Func. Count: 43, Neg. LLF: 169.2283854221961
Iteration: 5, Func. Count: 54, Neg. LLF: 162.15298237227285
Iteration: 6, Func. Count: 65, Neg. LLF: 159.19459376532782
Iteration: 7, Func. Count: 76, Neg. LLF: 159.04604589424906
Iteration: 8, Func. Count: 87, Neg. LLF: 159.01560234648272
Iteration: 9, Func. Count: 97, Neg. LLF: 158.97191457777623
Iteration: 10, Func. Count: 107, Neg. LLF: 158.92671986072617
Iteration: 11, Func. Count: 117, Neg. LLF: 158.91709208558433
Iteration: 12, Func. Count: 127, Neg. LLF: 158.91292862881343
Iteration: 13, Func. Count: 137, Neg. LLF: 158.9118934025414
Iteration: 14, Func. Count: 147, Neg. LLF: 158.91149640591445
Iteration: 15, Func. Count: 157, Neg. LLF: 158.91146448575094
Iteration: 16, Func. Count: 167, Neg. LLF: 158.91145230857438
Iteration: 17, Func. Count: 176, Neg. LLF: 158.91145230663506
Optimization terminated successfully (Exit mode 0)
Current function value: 158.91145230857438
Iterations: 17
Function evaluations: 176
Gradient evaluations: 17
Iteration: 1, Func. Count: 12, Neg. LLF: 229.56745234072358
Iteration: 2, Func. Count: 24, Neg. LLF: 159.57306384908125
Iteration: 3, Func. Count: 35, Neg. LLF: 159.36023727608844
Iteration: 4, Func. Count: 47, Neg. LLF: 195.12174930232825
Iteration: 5, Func. Count: 59, Neg. LLF: 164.32950749050212
Iteration: 6, Func. Count: 72, Neg. LLF: 158.54573156855292
Iteration: 7, Func. Count: 83, Neg. LLF: 159.5529954016198
Iteration: 8, Func. Count: 95, Neg. LLF: 158.51500141897623
Iteration: 9, Func. Count: 107, Neg. LLF: 158.48237753059684
Iteration: 10, Func. Count: 118, Neg. LLF: 158.47664503329102
Iteration: 11, Func. Count: 129, Neg. LLF: 158.46633544802097
Iteration: 12, Func. Count: 140, Neg. LLF: 158.45357217288083
Iteration: 13, Func. Count: 151, Neg. LLF: 158.4496619153914
Iteration: 14, Func. Count: 162, Neg. LLF: 158.4493781937918
Iteration: 15, Func. Count: 173, Neg. LLF: 158.44936132106005
Iteration: 16, Func. Count: 184, Neg. LLF: 158.44935494952787
Iteration: 17, Func. Count: 194, Neg. LLF: 158.44935493389178
Optimization terminated successfully (Exit mode 0)
Current function value: 158.44935494952787
Iterations: 17
Function evaluations: 194
Gradient evaluations: 17
Iteration: 1, Func. Count: 9, Neg. LLF: 167.64600306170945
Iteration: 2, Func. Count: 18, Neg. LLF: 162.2188499654338
Iteration: 3, Func. Count: 28, Neg. LLF: 162.15320095276192
Iteration: 4, Func. Count: 38, Neg. LLF: 167.3593329861165
Iteration: 5, Func. Count: 47, Neg. LLF: 160.28873341253149
Iteration: 6, Func. Count: 55, Neg. LLF: 160.3390961678222
Iteration: 7, Func. Count: 64, Neg. LLF: 160.26522246422513
Iteration: 8, Func. Count: 72, Neg. LLF: 160.25385607308263
Iteration: 9, Func. Count: 80, Neg. LLF: 160.2470734137819
Iteration: 10, Func. Count: 88, Neg. LLF: 160.21329960418336
Iteration: 11, Func. Count: 96, Neg. LLF: 160.18791078283363
Iteration: 12, Func. Count: 104, Neg. LLF: 164.29304204692426
Iteration: 13, Func. Count: 114, Neg. LLF: 160.17691239036662
Iteration: 14, Func. Count: 122, Neg. LLF: 160.1730554903905
Iteration: 15, Func. Count: 130, Neg. LLF: 160.17294722067655
Iteration: 16, Func. Count: 138, Neg. LLF: 160.17294501949777
Iteration: 17, Func. Count: 145, Neg. LLF: 160.17294501949553
Optimization terminated successfully (Exit mode 0)
Current function value: 160.17294501949777
Iterations: 17
Function evaluations: 145
Gradient evaluations: 17
Iteration: 1, Func. Count: 10, Neg. LLF: 237.50149439201914
Iteration: 2, Func. Count: 20, Neg. LLF: 161.925556151592
Iteration: 3, Func. Count: 31, Neg. LLF: 159.61658258372023
Iteration: 4, Func. Count: 41, Neg. LLF: 163.1419567556147
Iteration: 5, Func. Count: 51, Neg. LLF: 159.122473280278
Iteration: 6, Func. Count: 61, Neg. LLF: 159.05255878052915
Iteration: 7, Func. Count: 70, Neg. LLF: 159.03603192642873
Iteration: 8, Func. Count: 79, Neg. LLF: 158.98439960936622
Iteration: 9, Func. Count: 88, Neg. LLF: 158.95809625061085
Iteration: 10, Func. Count: 97, Neg. LLF: 158.95258883347336
Iteration: 11, Func. Count: 106, Neg. LLF: 158.9521500971371
Iteration: 12, Func. Count: 115, Neg. LLF: 158.95211095149511
Iteration: 13, Func. Count: 124, Neg. LLF: 158.9520997571709
Iteration: 14, Func. Count: 132, Neg. LLF: 158.95209975720408
Optimization terminated successfully (Exit mode 0)
Current function value: 158.9520997571709
Iterations: 14
Function evaluations: 132
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 187.7200463592246
Iteration: 2, Func. Count: 22, Neg. LLF: 159.1895863095343
Iteration: 3, Func. Count: 32, Neg. LLF: 161.17480933721606
Iteration: 4, Func. Count: 43, Neg. LLF: 161.03019181436622
Iteration: 5, Func. Count: 54, Neg. LLF: 161.06273613746288
Iteration: 6, Func. Count: 66, Neg. LLF: 160.10862052163634
Iteration: 7, Func. Count: 77, Neg. LLF: 158.98548435828138
Iteration: 8, Func. Count: 88, Neg. LLF: 158.95842446663346
Iteration: 9, Func. Count: 98, Neg. LLF: 158.9411295132622
Iteration: 10, Func. Count: 108, Neg. LLF: 158.91631621661662
Iteration: 11, Func. Count: 118, Neg. LLF: 158.90341246194788
Iteration: 12, Func. Count: 128, Neg. LLF: 158.89501774306282
Iteration: 13, Func. Count: 138, Neg. LLF: 158.89369941295143
Iteration: 14, Func. Count: 148, Neg. LLF: 158.8934194378813
Iteration: 15, Func. Count: 158, Neg. LLF: 158.89340361059348
Iteration: 16, Func. Count: 168, Neg. LLF: 158.89340293409427
Optimization terminated successfully (Exit mode 0)
Current function value: 158.89340293409427
Iterations: 16
Function evaluations: 168
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 183.77550138144736
Iteration: 2, Func. Count: 24, Neg. LLF: 159.22968097501476
Iteration: 3, Func. Count: 35, Neg. LLF: 158.38165186386493
Iteration: 4, Func. Count: 46, Neg. LLF: 222.07456804199956
Iteration: 5, Func. Count: 59, Neg. LLF: 174.33299978269056
Iteration: 6, Func. Count: 71, Neg. LLF: 158.144122910835
Iteration: 7, Func. Count: 82, Neg. LLF: 158.1119489675468
Iteration: 8, Func. Count: 93, Neg. LLF: 158.0887047125396
Iteration: 9, Func. Count: 104, Neg. LLF: 158.0720518628609
Iteration: 10, Func. Count: 115, Neg. LLF: 158.04579352426546
Iteration: 11, Func. Count: 126, Neg. LLF: 158.03729326753452
Iteration: 12, Func. Count: 137, Neg. LLF: 158.0350864036611
Iteration: 13, Func. Count: 148, Neg. LLF: 158.03494914173166
Iteration: 14, Func. Count: 159, Neg. LLF: 158.03493848720393
Iteration: 15, Func. Count: 169, Neg. LLF: 158.03493844569272
Optimization terminated successfully (Exit mode 0)
Current function value: 158.03493848720393
Iterations: 15
Function evaluations: 169
Gradient evaluations: 15
Iteration: 1, Func. Count: 13, Neg. LLF: 184.6397107781632
Iteration: 2, Func. Count: 26, Neg. LLF: 160.95905036899717
Iteration: 3, Func. Count: 39, Neg. LLF: 171.42670321001904
Iteration: 4, Func. Count: 52, Neg. LLF: 161.47702727872596
Iteration: 5, Func. Count: 65, Neg. LLF: 158.05582092725174
Iteration: 6, Func. Count: 77, Neg. LLF: 158.06544297021452
Iteration: 7, Func. Count: 90, Neg. LLF: 162.81279176089663
Iteration: 8, Func. Count: 103, Neg. LLF: 157.69764446770188
Iteration: 9, Func. Count: 116, Neg. LLF: 157.41126174706122
Iteration: 10, Func. Count: 128, Neg. LLF: 157.40697497315284
Iteration: 11, Func. Count: 140, Neg. LLF: 157.40666131804522
Iteration: 12, Func. Count: 152, Neg. LLF: 157.40657840266422
Iteration: 13, Func. Count: 164, Neg. LLF: 157.4064101193399
Iteration: 14, Func. Count: 176, Neg. LLF: 157.4063500954508
Iteration: 15, Func. Count: 188, Neg. LLF: 157.4062623780951
Iteration: 16, Func. Count: 200, Neg. LLF: 157.40625246642236
Iteration: 17, Func. Count: 212, Neg. LLF: 157.40625168502487
Optimization terminated successfully (Exit mode 0)
Current function value: 157.40625168502487
Iterations: 17
Function evaluations: 212
Gradient evaluations: 17
Iteration: 1, Func. Count: 10, Neg. LLF: 167.9258685390009
Iteration: 2, Func. Count: 20, Neg. LLF: 162.60344960398749
Iteration: 3, Func. Count: 31, Neg. LLF: 162.7098712208168
Iteration: 4, Func. Count: 42, Neg. LLF: 160.01364753379883
Iteration: 5, Func. Count: 52, Neg. LLF: 159.55044571928568
Iteration: 6, Func. Count: 61, Neg. LLF: 162.01301550005627
Iteration: 7, Func. Count: 71, Neg. LLF: 159.45290764639094
Iteration: 8, Func. Count: 80, Neg. LLF: 159.86777273900182
Iteration: 9, Func. Count: 90, Neg. LLF: 159.27414657194785
Iteration: 10, Func. Count: 99, Neg. LLF: 158.96480936059078
Iteration: 11, Func. Count: 108, Neg. LLF: 158.67456976352977
Iteration: 12, Func. Count: 117, Neg. LLF: 158.54352175302975
Iteration: 13, Func. Count: 126, Neg. LLF: 158.53387374639786
Iteration: 14, Func. Count: 135, Neg. LLF: 158.53244593541024
Iteration: 15, Func. Count: 144, Neg. LLF: 158.53221284691767
Iteration: 16, Func. Count: 153, Neg. LLF: 158.53215757421788
Iteration: 17, Func. Count: 162, Neg. LLF: 158.532143108796
Iteration: 18, Func. Count: 171, Neg. LLF: 158.53213359181422
Iteration: 19, Func. Count: 180, Neg. LLF: 158.5321319627933
Iteration: 20, Func. Count: 188, Neg. LLF: 158.5321319576315
Optimization terminated successfully (Exit mode 0)
Current function value: 158.5321319627933
Iterations: 20
Function evaluations: 188
Gradient evaluations: 20
Iteration: 1, Func. Count: 11, Neg. LLF: 234.5321655214202
Iteration: 2, Func. Count: 22, Neg. LLF: 159.63422846268142
Iteration: 3, Func. Count: 33, Neg. LLF: 181.63042935584986
Iteration: 4, Func. Count: 44, Neg. LLF: 159.19235875520414
Iteration: 5, Func. Count: 54, Neg. LLF: 159.17409398102177
Iteration: 6, Func. Count: 65, Neg. LLF: 159.3055882286798
Iteration: 7, Func. Count: 76, Neg. LLF: 159.0533454715276
Iteration: 8, Func. Count: 86, Neg. LLF: 159.02529691579454
Iteration: 9, Func. Count: 96, Neg. LLF: 158.99518715152203
Iteration: 10, Func. Count: 106, Neg. LLF: 158.95925445807023
Iteration: 11, Func. Count: 116, Neg. LLF: 158.95245556550293
Iteration: 12, Func. Count: 126, Neg. LLF: 158.95215483460981
Iteration: 13, Func. Count: 136, Neg. LLF: 158.952100808446
Iteration: 14, Func. Count: 146, Neg. LLF: 158.9520995795365
Iteration: 15, Func. Count: 155, Neg. LLF: 158.95209957950118
Optimization terminated successfully (Exit mode 0)
Current function value: 158.9520995795365
Iterations: 15
Function evaluations: 155
Gradient evaluations: 15
Iteration: 1, Func. Count: 12, Neg. LLF: 188.11200890182093
Iteration: 2, Func. Count: 24, Neg. LLF: 159.2380017544862
Iteration: 3, Func. Count: 35, Neg. LLF: 161.71781812523085
Iteration: 4, Func. Count: 47, Neg. LLF: 160.98066565725563
Iteration: 5, Func. Count: 59, Neg. LLF: 159.01594957246948
Iteration: 6, Func. Count: 71, Neg. LLF: 182.61242483101364
Iteration: 7, Func. Count: 84, Neg. LLF: 158.9664059046023
Iteration: 8, Func. Count: 95, Neg. LLF: 158.95811494654393
Iteration: 9, Func. Count: 106, Neg. LLF: 158.9324567885692
Iteration: 10, Func. Count: 117, Neg. LLF: 158.9156988230949
Iteration: 11, Func. Count: 128, Neg. LLF: 158.90081565614824
Iteration: 12, Func. Count: 139, Neg. LLF: 158.89471210473243
Iteration: 13, Func. Count: 150, Neg. LLF: 158.89341491016717
Iteration: 14, Func. Count: 161, Neg. LLF: 158.89340434932197
Iteration: 15, Func. Count: 172, Neg. LLF: 158.89340318299972
Iteration: 16, Func. Count: 182, Neg. LLF: 158.8934031787844
Optimization terminated successfully (Exit mode 0)
Current function value: 158.89340318299972
Iterations: 16
Function evaluations: 182
Gradient evaluations: 16
Iteration: 1, Func. Count: 13, Neg. LLF: 183.32151811900704
Iteration: 2, Func. Count: 26, Neg. LLF: 158.5771724940194
Iteration: 3, Func. Count: 38, Neg. LLF: 158.93494231647912
Iteration: 4, Func. Count: 51, Neg. LLF: 162.72320789260135
Iteration: 5, Func. Count: 64, Neg. LLF: 158.6612062982199
Iteration: 6, Func. Count: 77, Neg. LLF: 156.98698160909672
Iteration: 7, Func. Count: 89, Neg. LLF: 156.89341459324748
Iteration: 8, Func. Count: 101, Neg. LLF: 156.87627444081815
Iteration: 9, Func. Count: 113, Neg. LLF: 156.86665980498165
Iteration: 10, Func. Count: 125, Neg. LLF: 156.86339898111618
Iteration: 11, Func. Count: 137, Neg. LLF: 156.8585372221445
Iteration: 12, Func. Count: 149, Neg. LLF: 156.85658048671837
Iteration: 13, Func. Count: 161, Neg. LLF: 156.85604473418616
Iteration: 14, Func. Count: 173, Neg. LLF: 156.85615163372336
Iteration: 15, Func. Count: 185, Neg. LLF: 156.856037623386
Iteration: 16, Func. Count: 207, Neg. LLF: 156.85615231828336
Iteration: 17, Func. Count: 229, Neg. LLF: 156.85607065088132
Iteration: 18, Func. Count: 251, Neg. LLF: 156.85617143528526
Iteration: 19, Func. Count: 264, Neg. LLF: 156.85616986256406
Iteration: 20, Func. Count: 277, Neg. LLF: 156.85616946564494
Iteration: 21, Func. Count: 290, Neg. LLF: 156.85616945479953
Iteration: 22, Func. Count: 301, Neg. LLF: 156.8561694203575
Optimization terminated successfully (Exit mode 0)
Current function value: 156.85616945479953
Iterations: 23
Function evaluations: 301
Gradient evaluations: 22
Iteration: 1, Func. Count: 14, Neg. LLF: 184.46414909503454
Iteration: 2, Func. Count: 28, Neg. LLF: 206.73411952160762
Iteration: 3, Func. Count: 42, Neg. LLF: 159.413376039477
Iteration: 4, Func. Count: 56, Neg. LLF: 157.73258807457427
Iteration: 5, Func. Count: 69, Neg. LLF: 157.64795020345207
Iteration: 6, Func. Count: 83, Neg. LLF: 161.31106663477567
Iteration: 7, Func. Count: 98, Neg. LLF: 159.14500729175546
Iteration: 8, Func. Count: 112, Neg. LLF: 157.37720399363863
Iteration: 9, Func. Count: 126, Neg. LLF: 162.93624703341746
Iteration: 10, Func. Count: 140, Neg. LLF: 156.9891302725432
Iteration: 11, Func. Count: 153, Neg. LLF: 156.98426975847485
Iteration: 12, Func. Count: 166, Neg. LLF: 156.98045400805964
Iteration: 13, Func. Count: 179, Neg. LLF: 156.97649917323045
Iteration: 14, Func. Count: 192, Neg. LLF: 156.97146177199392
Iteration: 15, Func. Count: 205, Neg. LLF: 156.96928736134342
Iteration: 16, Func. Count: 218, Neg. LLF: 156.96834814790142
Iteration: 17, Func. Count: 231, Neg. LLF: 156.96822646087665
Iteration: 18, Func. Count: 244, Neg. LLF: 156.9682154674892
Iteration: 19, Func. Count: 257, Neg. LLF: 156.9682147064246
Optimization terminated successfully (Exit mode 0)
Current function value: 156.9682147064246
Iterations: 19
Function evaluations: 257
Gradient evaluations: 19
Iteration: 1, Func. Count: 11, Neg. LLF: 163.38134106702248
Iteration: 2, Func. Count: 22, Neg. LLF: 161.39848350430412
Iteration: 3, Func. Count: 33, Neg. LLF: 161.1769138354947
Iteration: 4, Func. Count: 44, Neg. LLF: 161.62420761223828
Iteration: 5, Func. Count: 55, Neg. LLF: 159.55997481419607
Iteration: 6, Func. Count: 65, Neg. LLF: 160.60501381896316
Iteration: 7, Func. Count: 76, Neg. LLF: 159.47288744763614
Iteration: 8, Func. Count: 86, Neg. LLF: 159.40935916955405
Iteration: 9, Func. Count: 96, Neg. LLF: 159.93828592826037
Iteration: 10, Func. Count: 107, Neg. LLF: 158.877324882907
Iteration: 11, Func. Count: 117, Neg. LLF: 158.84462743122347
Iteration: 12, Func. Count: 128, Neg. LLF: 158.60626599517408
Iteration: 13, Func. Count: 138, Neg. LLF: 158.5679298238643
Iteration: 14, Func. Count: 148, Neg. LLF: 158.54012066318754
Iteration: 15, Func. Count: 158, Neg. LLF: 158.53508730733236
Iteration: 16, Func. Count: 168, Neg. LLF: 158.5327630909003
Iteration: 17, Func. Count: 178, Neg. LLF: 158.53227620764682
Iteration: 18, Func. Count: 188, Neg. LLF: 158.53214356558394
Iteration: 19, Func. Count: 198, Neg. LLF: 158.53213210981716
Iteration: 20, Func. Count: 207, Neg. LLF: 158.53213225207475
Optimization terminated successfully (Exit mode 0)
Current function value: 158.53213210981716
Iterations: 20
Function evaluations: 207
Gradient evaluations: 20
Iteration: 1, Func. Count: 12, Neg. LLF: 231.92511385807347
Iteration: 2, Func. Count: 24, Neg. LLF: 159.63074727262864
Iteration: 3, Func. Count: 36, Neg. LLF: 165.14643365494376
Iteration: 4, Func. Count: 48, Neg. LLF: 159.1833727905974
Iteration: 5, Func. Count: 59, Neg. LLF: 159.17191404766305
Iteration: 6, Func. Count: 71, Neg. LLF: 159.42515515505266
Iteration: 7, Func. Count: 83, Neg. LLF: 159.06036735156258
Iteration: 8, Func. Count: 94, Neg. LLF: 159.03308425053973
Iteration: 9, Func. Count: 105, Neg. LLF: 158.99646763612603
Iteration: 10, Func. Count: 116, Neg. LLF: 158.9784224026015
Iteration: 11, Func. Count: 127, Neg. LLF: 158.95401257717236
Iteration: 12, Func. Count: 138, Neg. LLF: 158.9521899006439
Iteration: 13, Func. Count: 149, Neg. LLF: 158.9521175489893
Iteration: 14, Func. Count: 160, Neg. LLF: 158.95209962297963
Iteration: 15, Func. Count: 170, Neg. LLF: 158.9520996229905
Optimization terminated successfully (Exit mode 0)
Current function value: 158.95209962297963
Iterations: 15
Function evaluations: 170
Gradient evaluations: 15
Iteration: 1, Func. Count: 13, Neg. LLF: 192.05053577631838
Iteration: 2, Func. Count: 26, Neg. LLF: 159.24246562133214
Iteration: 3, Func. Count: 38, Neg. LLF: 159.09513869538551
Iteration: 4, Func. Count: 50, Neg. LLF: 261.1286352175505
Iteration: 5, Func. Count: 64, Neg. LLF: 162.34985198345132
Iteration: 6, Func. Count: 78, Neg. LLF: 159.80383442121857
Iteration: 7, Func. Count: 91, Neg. LLF: 158.9944603384142
Iteration: 8, Func. Count: 104, Neg. LLF: 158.96738884141308
Iteration: 9, Func. Count: 116, Neg. LLF: 158.95292453555444
Iteration: 10, Func. Count: 128, Neg. LLF: 158.92103445163758
Iteration: 11, Func. Count: 140, Neg. LLF: 158.9089154567023
Iteration: 12, Func. Count: 152, Neg. LLF: 158.89678928755953
Iteration: 13, Func. Count: 164, Neg. LLF: 158.8937686588236
Iteration: 14, Func. Count: 176, Neg. LLF: 158.8934218228682
Iteration: 15, Func. Count: 188, Neg. LLF: 158.8934043686594
Iteration: 16, Func. Count: 200, Neg. LLF: 158.8934029571374
Iteration: 17, Func. Count: 211, Neg. LLF: 158.89340295291728
Optimization terminated successfully (Exit mode 0)
Current function value: 158.8934029571374
Iterations: 17
Function evaluations: 211
Gradient evaluations: 17
Iteration: 1, Func. Count: 14, Neg. LLF: 182.8507467910742
Iteration: 2, Func. Count: 28, Neg. LLF: 158.50985705258032
Iteration: 3, Func. Count: 41, Neg. LLF: 157.67534172677946
Iteration: 4, Func. Count: 54, Neg. LLF: 157.70880634671687
Iteration: 5, Func. Count: 68, Neg. LLF: 161.45863033865518
Iteration: 6, Func. Count: 82, Neg. LLF: 156.9153473152468
Iteration: 7, Func. Count: 95, Neg. LLF: 156.87880620852013
Iteration: 8, Func. Count: 108, Neg. LLF: 156.87332778413358
Iteration: 9, Func. Count: 121, Neg. LLF: 156.86435105831148
Iteration: 10, Func. Count: 134, Neg. LLF: 156.85821278603788
Iteration: 11, Func. Count: 147, Neg. LLF: 156.8563510696338
Iteration: 12, Func. Count: 160, Neg. LLF: 156.8561757326554
Iteration: 13, Func. Count: 173, Neg. LLF: 156.85616963552218
Iteration: 14, Func. Count: 185, Neg. LLF: 156.85616960112128
Optimization terminated successfully (Exit mode 0)
Current function value: 156.85616963552218
Iterations: 14
Function evaluations: 185
Gradient evaluations: 14
Iteration: 1, Func. Count: 15, Neg. LLF: 165.4006140853301
Iteration: 2, Func. Count: 30, Neg. LLF: 159.97959507529262
Iteration: 3, Func. Count: 45, Neg. LLF: 159.795703289973
Iteration: 4, Func. Count: 60, Neg. LLF: 161.5443415549933
Iteration: 5, Func. Count: 75, Neg. LLF: 160.19169151256983
Iteration: 6, Func. Count: 90, Neg. LLF: 161.66063534028947
Iteration: 7, Func. Count: 105, Neg. LLF: 158.69334528861287
Iteration: 8, Func. Count: 120, Neg. LLF: 157.67798738363484
Iteration: 9, Func. Count: 134, Neg. LLF: 157.54303411000518
Iteration: 10, Func. Count: 148, Neg. LLF: 157.3061952319114
Iteration: 11, Func. Count: 162, Neg. LLF: 157.1806733166684
Iteration: 12, Func. Count: 176, Neg. LLF: 157.02541392295328
Iteration: 13, Func. Count: 190, Neg. LLF: 157.21439716174058
Iteration: 14, Func. Count: 205, Neg. LLF: 157.12650131819737
Iteration: 15, Func. Count: 220, Neg. LLF: 156.97604735448763
Iteration: 16, Func. Count: 234, Neg. LLF: 156.96919366821703
Iteration: 17, Func. Count: 248, Neg. LLF: 156.96828168842222
Iteration: 18, Func. Count: 262, Neg. LLF: 156.9682195392046
Iteration: 19, Func. Count: 276, Neg. LLF: 156.96821472861083
Iteration: 20, Func. Count: 289, Neg. LLF: 156.96821471267373
Optimization terminated successfully (Exit mode 0)
Current function value: 156.96821472861083
Iterations: 20
Function evaluations: 289
Gradient evaluations: 20
Iteration: 1, Func. Count: 8, Neg. LLF: 162.03211324991895
Iteration: 2, Func. Count: 15, Neg. LLF: 163.75975215709008
Iteration: 3, Func. Count: 23, Neg. LLF: 161.46999882252052
Iteration: 4, Func. Count: 30, Neg. LLF: 161.10855308964682
Iteration: 5, Func. Count: 37, Neg. LLF: 161.0796524222398
Iteration: 6, Func. Count: 44, Neg. LLF: 161.06303286117083
Iteration: 7, Func. Count: 51, Neg. LLF: 161.06254393807936
Iteration: 8, Func. Count: 58, Neg. LLF: 161.06253183248788
Iteration: 9, Func. Count: 65, Neg. LLF: 161.06252136949115
Iteration: 10, Func. Count: 72, Neg. LLF: 161.06248335820587
Iteration: 11, Func. Count: 79, Neg. LLF: 161.06244357338056
Iteration: 12, Func. Count: 86, Neg. LLF: 161.06241366673405
Iteration: 13, Func. Count: 93, Neg. LLF: 161.06240698090403
Iteration: 14, Func. Count: 100, Neg. LLF: 161.0624063764621
Optimization terminated successfully (Exit mode 0)
Current function value: 161.0624063764621
Iterations: 14
Function evaluations: 100
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 170.9525237985987
Iteration: 2, Func. Count: 18, Neg. LLF: 162.01242217974863
Iteration: 3, Func. Count: 27, Neg. LLF: 161.08509591736203
Iteration: 4, Func. Count: 35, Neg. LLF: 176.467841311738
Iteration: 5, Func. Count: 45, Neg. LLF: 161.05787689785436
Iteration: 6, Func. Count: 53, Neg. LLF: 161.06111401001024
Iteration: 7, Func. Count: 62, Neg. LLF: 161.05080261183753
Iteration: 8, Func. Count: 70, Neg. LLF: 161.04894663867117
Iteration: 9, Func. Count: 78, Neg. LLF: 161.04248801101215
Iteration: 10, Func. Count: 86, Neg. LLF: 161.0417099345384
Iteration: 11, Func. Count: 94, Neg. LLF: 161.0416774213781
Iteration: 12, Func. Count: 101, Neg. LLF: 161.04167742141763
Optimization terminated successfully (Exit mode 0)
Current function value: 161.0416774213781
Iterations: 12
Function evaluations: 101
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 161.99220060334864
Iteration: 2, Func. Count: 20, Neg. LLF: 163.068751304728
Iteration: 3, Func. Count: 30, Neg. LLF: 162.95851543226198
Iteration: 4, Func. Count: 40, Neg. LLF: 161.32116531248195
Iteration: 5, Func. Count: 50, Neg. LLF: 161.26035954250153
Iteration: 6, Func. Count: 60, Neg. LLF: 161.17994756818032
Iteration: 7, Func. Count: 69, Neg. LLF: 161.15216088450825
Iteration: 8, Func. Count: 78, Neg. LLF: 161.151539893624
Iteration: 9, Func. Count: 87, Neg. LLF: 161.15137641035108
Iteration: 10, Func. Count: 96, Neg. LLF: 161.15133575945504
Iteration: 11, Func. Count: 105, Neg. LLF: 161.15116766795728
Iteration: 12, Func. Count: 114, Neg. LLF: 161.15106952414473
Iteration: 13, Func. Count: 123, Neg. LLF: 161.15079949077958
Iteration: 14, Func. Count: 132, Neg. LLF: 161.14959962267076
Iteration: 15, Func. Count: 141, Neg. LLF: 161.18876665792138
Iteration: 16, Func. Count: 151, Neg. LLF: 161.2021651007585
Iteration: 17, Func. Count: 161, Neg. LLF: 161.23211851814338
Iteration: 18, Func. Count: 171, Neg. LLF: 161.17467130180987
Iteration: 19, Func. Count: 181, Neg. LLF: 161.13734586443604
Iteration: 20, Func. Count: 191, Neg. LLF: 161.1584935761883
Iteration: 21, Func. Count: 201, Neg. LLF: 161.1142275525255
Iteration: 22, Func. Count: 210, Neg. LLF: 161.45993175500448
Iteration: 23, Func. Count: 220, Neg. LLF: 161.20883722231957
Iteration: 24, Func. Count: 230, Neg. LLF: 161.0086905236778
Iteration: 25, Func. Count: 239, Neg. LLF: 160.9613054964854
Iteration: 26, Func. Count: 248, Neg. LLF: 160.95830797174932
Iteration: 27, Func. Count: 258, Neg. LLF: 160.94384642685384
Iteration: 28, Func. Count: 267, Neg. LLF: 160.9419726513973
Iteration: 29, Func. Count: 276, Neg. LLF: 160.94163549074264
Iteration: 30, Func. Count: 285, Neg. LLF: 160.94146979661068
Iteration: 31, Func. Count: 294, Neg. LLF: 160.94143514358774
Iteration: 32, Func. Count: 303, Neg. LLF: 160.94143233626485
Iteration: 33, Func. Count: 311, Neg. LLF: 160.94143233628574
Optimization terminated successfully (Exit mode 0)
Current function value: 160.94143233626485
Iterations: 33
Function evaluations: 311
Gradient evaluations: 33
Iteration: 1, Func. Count: 11, Neg. LLF: 161.93447695977414
Iteration: 2, Func. Count: 22, Neg. LLF: 163.13587794064767
Iteration: 3, Func. Count: 33, Neg. LLF: 167.59306407133232
Iteration: 4, Func. Count: 44, Neg. LLF: 160.89222840854902
Iteration: 5, Func. Count: 54, Neg. LLF: 161.98599319296278
Iteration: 6, Func. Count: 65, Neg. LLF: 160.8560121104939
Iteration: 7, Func. Count: 75, Neg. LLF: 160.85231849629565
Iteration: 8, Func. Count: 85, Neg. LLF: 160.8342676988509
Iteration: 9, Func. Count: 95, Neg. LLF: 160.76625188304814
Iteration: 10, Func. Count: 105, Neg. LLF: 160.7401033670568
Iteration: 11, Func. Count: 115, Neg. LLF: 160.72467710924613
Iteration: 12, Func. Count: 125, Neg. LLF: 160.7123687466282
Iteration: 13, Func. Count: 135, Neg. LLF: 160.71021329046292
Iteration: 14, Func. Count: 145, Neg. LLF: 160.70998914296825
Iteration: 15, Func. Count: 155, Neg. LLF: 160.70997826602436
Iteration: 16, Func. Count: 165, Neg. LLF: 160.7099769815761
Iteration: 17, Func. Count: 174, Neg. LLF: 160.7099769815839
Optimization terminated successfully (Exit mode 0)
Current function value: 160.7099769815761
Iterations: 17
Function evaluations: 174
Gradient evaluations: 17
Iteration: 1, Func. Count: 12, Neg. LLF: 161.9049334749956
Iteration: 2, Func. Count: 24, Neg. LLF: 163.08089385890204
Iteration: 3, Func. Count: 36, Neg. LLF: 172.0667232734075
Iteration: 4, Func. Count: 48, Neg. LLF: 160.67597038442383
Iteration: 5, Func. Count: 59, Neg. LLF: 161.25725996583193
Iteration: 6, Func. Count: 71, Neg. LLF: 160.50376540480283
Iteration: 7, Func. Count: 83, Neg. LLF: 160.21720703957598
Iteration: 8, Func. Count: 95, Neg. LLF: 160.17693212634404
Iteration: 9, Func. Count: 107, Neg. LLF: 159.92599102545793
Iteration: 10, Func. Count: 118, Neg. LLF: 159.90368094781675
Iteration: 11, Func. Count: 129, Neg. LLF: 159.84934446001787
Iteration: 12, Func. Count: 140, Neg. LLF: 159.8194535176193
Iteration: 13, Func. Count: 151, Neg. LLF: 159.87074571577313
Iteration: 14, Func. Count: 163, Neg. LLF: 159.75585436487526
Iteration: 15, Func. Count: 174, Neg. LLF: 159.7106194194452
Iteration: 16, Func. Count: 185, Neg. LLF: 159.70844859509629
Iteration: 17, Func. Count: 196, Neg. LLF: 159.7080172628982
Iteration: 18, Func. Count: 207, Neg. LLF: 159.7079854988453
Iteration: 19, Func. Count: 218, Neg. LLF: 159.7079831685332
Iteration: 20, Func. Count: 228, Neg. LLF: 159.70798316851884
Optimization terminated successfully (Exit mode 0)
Current function value: 159.7079831685332
Iterations: 20
Function evaluations: 228
Gradient evaluations: 20
Iteration: 1, Func. Count: 9, Neg. LLF: 162.05767687015785
Iteration: 2, Func. Count: 18, Neg. LLF: 162.34458964908208
Iteration: 3, Func. Count: 27, Neg. LLF: 160.67850372419983
Iteration: 4, Func. Count: 36, Neg. LLF: 160.3816257947581
Iteration: 5, Func. Count: 44, Neg. LLF: 160.4323324203824
Iteration: 6, Func. Count: 53, Neg. LLF: 160.37924044830388
Iteration: 7, Func. Count: 62, Neg. LLF: 160.34736065313268
Iteration: 8, Func. Count: 70, Neg. LLF: 160.33193940749572
Iteration: 9, Func. Count: 78, Neg. LLF: 160.3257550595284
Iteration: 10, Func. Count: 86, Neg. LLF: 160.3076693630006
Iteration: 11, Func. Count: 94, Neg. LLF: 160.28201160829
Iteration: 12, Func. Count: 102, Neg. LLF: 160.2767421387514
Iteration: 13, Func. Count: 110, Neg. LLF: 160.27369337737673
Iteration: 14, Func. Count: 118, Neg. LLF: 160.38029156878696
Iteration: 15, Func. Count: 128, Neg. LLF: 160.27333426723857
Iteration: 16, Func. Count: 136, Neg. LLF: 160.27331024565248
Iteration: 17, Func. Count: 144, Neg. LLF: 160.27330964224765
Optimization terminated successfully (Exit mode 0)
Current function value: 160.27330964224765
Iterations: 17
Function evaluations: 144
Gradient evaluations: 17
Iteration: 1, Func. Count: 10, Neg. LLF: 237.59321812954065
Iteration: 2, Func. Count: 20, Neg. LLF: 167.39226761911394
Iteration: 3, Func. Count: 31, Neg. LLF: 159.39861794935106
Iteration: 4, Func. Count: 41, Neg. LLF: 172.63989841179787
Iteration: 5, Func. Count: 51, Neg. LLF: 159.6263133677637
Iteration: 6, Func. Count: 61, Neg. LLF: 159.00330649333827
Iteration: 7, Func. Count: 70, Neg. LLF: 159.11718200654084
Iteration: 8, Func. Count: 80, Neg. LLF: 158.971505830071
Iteration: 9, Func. Count: 89, Neg. LLF: 158.96711276456958
Iteration: 10, Func. Count: 98, Neg. LLF: 158.94363828629383
Iteration: 11, Func. Count: 107, Neg. LLF: 158.93802000750622
Iteration: 12, Func. Count: 116, Neg. LLF: 158.92538099650002
Iteration: 13, Func. Count: 125, Neg. LLF: 158.92262823389672
Iteration: 14, Func. Count: 134, Neg. LLF: 158.92224205210738
Iteration: 15, Func. Count: 143, Neg. LLF: 158.9222353864944
Iteration: 16, Func. Count: 151, Neg. LLF: 158.9222353800211
Optimization terminated successfully (Exit mode 0)
Current function value: 158.9222353864944
Iterations: 16
Function evaluations: 151
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 231.22814786904706
Iteration: 2, Func. Count: 22, Neg. LLF: 159.65746907545073
Iteration: 3, Func. Count: 33, Neg. LLF: 159.97378880783154
Iteration: 4, Func. Count: 44, Neg. LLF: 172.674512442739
Iteration: 5, Func. Count: 56, Neg. LLF: 164.89960126671485
Iteration: 6, Func. Count: 68, Neg. LLF: 159.05829067379557
Iteration: 7, Func. Count: 78, Neg. LLF: 159.0044696620631
Iteration: 8, Func. Count: 88, Neg. LLF: 158.9871802721096
Iteration: 9, Func. Count: 98, Neg. LLF: 158.98074044052004
Iteration: 10, Func. Count: 108, Neg. LLF: 158.96041835753266
Iteration: 11, Func. Count: 118, Neg. LLF: 158.94314863333634
Iteration: 12, Func. Count: 128, Neg. LLF: 158.92731904197558
Iteration: 13, Func. Count: 138, Neg. LLF: 158.92322678441383
Iteration: 14, Func. Count: 148, Neg. LLF: 158.92224907631322
Iteration: 15, Func. Count: 158, Neg. LLF: 158.92223726228113
Iteration: 16, Func. Count: 168, Neg. LLF: 158.9222350664059
Iteration: 17, Func. Count: 177, Neg. LLF: 158.92223506505545
Optimization terminated successfully (Exit mode 0)
Current function value: 158.9222350664059
Iterations: 17
Function evaluations: 177
Gradient evaluations: 17
Iteration: 1, Func. Count: 12, Neg. LLF: 228.2683951416092
Iteration: 2, Func. Count: 24, Neg. LLF: 159.637967754066
Iteration: 3, Func. Count: 35, Neg. LLF: 161.4019169768136
Iteration: 4, Func. Count: 47, Neg. LLF: 166.28149968665969
Iteration: 5, Func. Count: 59, Neg. LLF: 162.57406211223935
Iteration: 6, Func. Count: 71, Neg. LLF: 159.27777151875944
Iteration: 7, Func. Count: 83, Neg. LLF: 159.03088849120064
Iteration: 8, Func. Count: 94, Neg. LLF: 159.02952985398383
Iteration: 9, Func. Count: 106, Neg. LLF: 159.39275573499182
Iteration: 10, Func. Count: 118, Neg. LLF: 159.0465653785786
Iteration: 11, Func. Count: 130, Neg. LLF: 158.97422425617904
Iteration: 12, Func. Count: 141, Neg. LLF: 158.9601304518412
Iteration: 13, Func. Count: 152, Neg. LLF: 158.92491812764024
Iteration: 14, Func. Count: 163, Neg. LLF: 158.91434401940433
Iteration: 15, Func. Count: 174, Neg. LLF: 158.9087197328036
Iteration: 16, Func. Count: 185, Neg. LLF: 158.90782515462956
Iteration: 17, Func. Count: 196, Neg. LLF: 158.90754379105587
Iteration: 18, Func. Count: 207, Neg. LLF: 158.90746693704753
Iteration: 19, Func. Count: 218, Neg. LLF: 158.90745957746466
Iteration: 20, Func. Count: 228, Neg. LLF: 158.9074595723772
Optimization terminated successfully (Exit mode 0)
Current function value: 158.90745957746466
Iterations: 20
Function evaluations: 228
Gradient evaluations: 20
Iteration: 1, Func. Count: 13, Neg. LLF: 228.70702561826997
Iteration: 2, Func. Count: 26, Neg. LLF: 159.48774053675328
Iteration: 3, Func. Count: 38, Neg. LLF: 159.56048810919836
Iteration: 4, Func. Count: 51, Neg. LLF: 161.07788800846131
Iteration: 5, Func. Count: 64, Neg. LLF: 188.0084070286495
Iteration: 6, Func. Count: 77, Neg. LLF: 161.40099572707936
Iteration: 7, Func. Count: 90, Neg. LLF: 158.56685304680445
Iteration: 8, Func. Count: 102, Neg. LLF: 159.51055800220917
Iteration: 9, Func. Count: 115, Neg. LLF: 158.49788556311833
Iteration: 10, Func. Count: 127, Neg. LLF: 158.4814543183687
Iteration: 11, Func. Count: 139, Neg. LLF: 158.47754035719544
Iteration: 12, Func. Count: 151, Neg. LLF: 158.46811454143366
Iteration: 13, Func. Count: 163, Neg. LLF: 158.46092980675417
Iteration: 14, Func. Count: 175, Neg. LLF: 158.45762880346217
Iteration: 15, Func. Count: 187, Neg. LLF: 158.45564714420536
Iteration: 16, Func. Count: 199, Neg. LLF: 158.45263843604573
Iteration: 17, Func. Count: 211, Neg. LLF: 158.4502342332275
Iteration: 18, Func. Count: 223, Neg. LLF: 158.4494000896588
Iteration: 19, Func. Count: 235, Neg. LLF: 158.4493571640641
Iteration: 20, Func. Count: 247, Neg. LLF: 158.44935560162526
Iteration: 21, Func. Count: 259, Neg. LLF: 158.44935491615786
Optimization terminated successfully (Exit mode 0)
Current function value: 158.44935491615786
Iterations: 21
Function evaluations: 259
Gradient evaluations: 21
Iteration: 1, Func. Count: 10, Neg. LLF: 163.45903738993178
Iteration: 2, Func. Count: 20, Neg. LLF: 163.65068015256756
Iteration: 3, Func. Count: 31, Neg. LLF: 160.85602642518924
Iteration: 4, Func. Count: 41, Neg. LLF: 161.21256736652933
Iteration: 5, Func. Count: 51, Neg. LLF: 160.41696260526143
Iteration: 6, Func. Count: 61, Neg. LLF: 160.3805962974439
Iteration: 7, Func. Count: 71, Neg. LLF: 160.25645671827763
Iteration: 8, Func. Count: 80, Neg. LLF: 160.2492399826223
Iteration: 9, Func. Count: 89, Neg. LLF: 160.2143571331099
Iteration: 10, Func. Count: 98, Neg. LLF: 160.19410889758854
Iteration: 11, Func. Count: 107, Neg. LLF: 160.40584981434225
Iteration: 12, Func. Count: 118, Neg. LLF: 160.183451063121
Iteration: 13, Func. Count: 127, Neg. LLF: 160.17551693673272
Iteration: 14, Func. Count: 136, Neg. LLF: 160.17319285400706
Iteration: 15, Func. Count: 145, Neg. LLF: 160.17295778165976
Iteration: 16, Func. Count: 154, Neg. LLF: 160.17294527335758
Iteration: 17, Func. Count: 162, Neg. LLF: 160.17294527337026
Optimization terminated successfully (Exit mode 0)
Current function value: 160.17294527335758
Iterations: 17
Function evaluations: 162
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 237.54292232048675
Iteration: 2, Func. Count: 22, Neg. LLF: 184.94110280152339
Iteration: 3, Func. Count: 34, Neg. LLF: 163.98904357991947
Iteration: 4, Func. Count: 46, Neg. LLF: 159.47901356408585
Iteration: 5, Func. Count: 57, Neg. LLF: 266.5969883368129
Iteration: 6, Func. Count: 68, Neg. LLF: 159.03817058743167
Iteration: 7, Func. Count: 78, Neg. LLF: 158.96704216748236
Iteration: 8, Func. Count: 88, Neg. LLF: 158.9611043434886
Iteration: 9, Func. Count: 98, Neg. LLF: 158.95351097582778
Iteration: 10, Func. Count: 108, Neg. LLF: 158.9397879265498
Iteration: 11, Func. Count: 118, Neg. LLF: 158.93116804585884
Iteration: 12, Func. Count: 128, Neg. LLF: 158.92519295673702
Iteration: 13, Func. Count: 138, Neg. LLF: 158.92411002121796
Iteration: 14, Func. Count: 148, Neg. LLF: 158.9235336633118
Iteration: 15, Func. Count: 158, Neg. LLF: 158.92238468569172
Iteration: 16, Func. Count: 168, Neg. LLF: 158.9222537243029
Iteration: 17, Func. Count: 178, Neg. LLF: 158.92223545747453
Iteration: 18, Func. Count: 188, Neg. LLF: 158.92223511277967
Optimization terminated successfully (Exit mode 0)
Current function value: 158.92223511277967
Iterations: 18
Function evaluations: 188
Gradient evaluations: 18
Iteration: 1, Func. Count: 12, Neg. LLF: 189.2424197677334
Iteration: 2, Func. Count: 24, Neg. LLF: 159.16911043129542
Iteration: 3, Func. Count: 35, Neg. LLF: 162.21714323216673
Iteration: 4, Func. Count: 47, Neg. LLF: 161.20694549843256
Iteration: 5, Func. Count: 59, Neg. LLF: 161.59961586142566
Iteration: 6, Func. Count: 72, Neg. LLF: 168.1310651944235
Iteration: 7, Func. Count: 85, Neg. LLF: 160.01362884579285
Iteration: 8, Func. Count: 97, Neg. LLF: 158.89807251161218
Iteration: 9, Func. Count: 109, Neg. LLF: 158.88619574276169
Iteration: 10, Func. Count: 121, Neg. LLF: 158.8440297664262
Iteration: 11, Func. Count: 133, Neg. LLF: 158.82464671461003
Iteration: 12, Func. Count: 144, Neg. LLF: 158.82334618035128
Iteration: 13, Func. Count: 155, Neg. LLF: 158.82319019147243
Iteration: 14, Func. Count: 166, Neg. LLF: 158.82303718146423
Iteration: 15, Func. Count: 177, Neg. LLF: 158.8229174374807
Iteration: 16, Func. Count: 188, Neg. LLF: 158.82275634588785
Iteration: 17, Func. Count: 199, Neg. LLF: 158.822563554395
Iteration: 18, Func. Count: 210, Neg. LLF: 158.82244151411874
Iteration: 19, Func. Count: 221, Neg. LLF: 158.8224032379293
Iteration: 20, Func. Count: 232, Neg. LLF: 158.82239529589683
Iteration: 21, Func. Count: 243, Neg. LLF: 158.82239460499275
Optimization terminated successfully (Exit mode 0)
Current function value: 158.82239460499275
Iterations: 21
Function evaluations: 243
Gradient evaluations: 21
Iteration: 1, Func. Count: 13, Neg. LLF: 183.8011150983287
Iteration: 2, Func. Count: 26, Neg. LLF: 159.40163345949193
Iteration: 3, Func. Count: 39, Neg. LLF: 160.16536736484898
Iteration: 4, Func. Count: 52, Neg. LLF: 161.52648206467222
Iteration: 5, Func. Count: 65, Neg. LLF: 158.1273329990372
Iteration: 6, Func. Count: 77, Neg. LLF: 158.6532478634087
Iteration: 7, Func. Count: 91, Neg. LLF: 158.10435022766904
Iteration: 8, Func. Count: 103, Neg. LLF: 158.0857441727186
Iteration: 9, Func. Count: 115, Neg. LLF: 158.05676388795035
Iteration: 10, Func. Count: 127, Neg. LLF: 158.04369303189895
Iteration: 11, Func. Count: 139, Neg. LLF: 158.0355074251148
Iteration: 12, Func. Count: 151, Neg. LLF: 158.03500206786362
Iteration: 13, Func. Count: 163, Neg. LLF: 158.03494653624233
Iteration: 14, Func. Count: 175, Neg. LLF: 158.03493815101018
Iteration: 15, Func. Count: 186, Neg. LLF: 158.0349381094001
Optimization terminated successfully (Exit mode 0)
Current function value: 158.03493815101018
Iterations: 15
Function evaluations: 186
Gradient evaluations: 15
Iteration: 1, Func. Count: 14, Neg. LLF: 184.3487483936417
Iteration: 2, Func. Count: 28, Neg. LLF: 165.09089378323597
Iteration: 3, Func. Count: 42, Neg. LLF: 163.90085339899522
Iteration: 4, Func. Count: 56, Neg. LLF: 168.8699343278192
Iteration: 5, Func. Count: 70, Neg. LLF: 158.14041953482027
Iteration: 6, Func. Count: 83, Neg. LLF: 157.89435219125107
Iteration: 7, Func. Count: 96, Neg. LLF: 159.7604208401417
Iteration: 8, Func. Count: 110, Neg. LLF: 166.3078215908321
Iteration: 9, Func. Count: 124, Neg. LLF: 157.54085605551245
Iteration: 10, Func. Count: 137, Neg. LLF: 157.41685059845616
Iteration: 11, Func. Count: 150, Neg. LLF: 157.40825319981224
Iteration: 12, Func. Count: 163, Neg. LLF: 157.40676325485538
Iteration: 13, Func. Count: 176, Neg. LLF: 157.4065623229808
Iteration: 14, Func. Count: 189, Neg. LLF: 157.40650140379907
Iteration: 15, Func. Count: 202, Neg. LLF: 157.4064036987461
Iteration: 16, Func. Count: 215, Neg. LLF: 157.4063094678263
Iteration: 17, Func. Count: 228, Neg. LLF: 157.4062606424078
Iteration: 18, Func. Count: 241, Neg. LLF: 157.40625217619842
Iteration: 19, Func. Count: 253, Neg. LLF: 157.40625215519674
Optimization terminated successfully (Exit mode 0)
Current function value: 157.40625217619842
Iterations: 19
Function evaluations: 253
Gradient evaluations: 19
Iteration: 1, Func. Count: 11, Neg. LLF: 163.67395160647325
Iteration: 2, Func. Count: 22, Neg. LLF: 162.69541849250675
Iteration: 3, Func. Count: 34, Neg. LLF: 161.60265925166624
Iteration: 4, Func. Count: 45, Neg. LLF: 159.93281085632404
Iteration: 5, Func. Count: 55, Neg. LLF: 159.51532768902544
Iteration: 6, Func. Count: 65, Neg. LLF: 159.71252642896835
Iteration: 7, Func. Count: 76, Neg. LLF: 159.5072559415214
Iteration: 8, Func. Count: 87, Neg. LLF: 159.39877796552744
Iteration: 9, Func. Count: 97, Neg. LLF: 159.18411621875055
Iteration: 10, Func. Count: 107, Neg. LLF: 226.07511521016679
Iteration: 11, Func. Count: 118, Neg. LLF: 158.90764162016342
Iteration: 12, Func. Count: 129, Neg. LLF: 158.5431889182079
Iteration: 13, Func. Count: 139, Neg. LLF: 158.53718093323894
Iteration: 14, Func. Count: 149, Neg. LLF: 158.53410020193806
Iteration: 15, Func. Count: 159, Neg. LLF: 158.53252305315556
Iteration: 16, Func. Count: 169, Neg. LLF: 158.5321725087533
Iteration: 17, Func. Count: 179, Neg. LLF: 158.53213471575634
Iteration: 18, Func. Count: 189, Neg. LLF: 158.53213198343795
Iteration: 19, Func. Count: 198, Neg. LLF: 158.5321319782881
Optimization terminated successfully (Exit mode 0)
Current function value: 158.53213198343795
Iterations: 19
Function evaluations: 198
Gradient evaluations: 19
Iteration: 1, Func. Count: 12, Neg. LLF: 234.54113147151241
Iteration: 2, Func. Count: 24, Neg. LLF: 177.88755461006093
Iteration: 3, Func. Count: 37, Neg. LLF: 159.7820664917028
Iteration: 4, Func. Count: 49, Neg. LLF: 160.623728048609
Iteration: 5, Func. Count: 61, Neg. LLF: 159.08679052615943
Iteration: 6, Func. Count: 72, Neg. LLF: 159.05274393705412
Iteration: 7, Func. Count: 84, Neg. LLF: 158.9843698019231
Iteration: 8, Func. Count: 96, Neg. LLF: 158.98779432584305
Iteration: 9, Func. Count: 108, Neg. LLF: 158.96742274086355
Iteration: 10, Func. Count: 119, Neg. LLF: 158.952182024189
Iteration: 11, Func. Count: 130, Neg. LLF: 158.94067063411603
Iteration: 12, Func. Count: 141, Neg. LLF: 158.9292267597979
Iteration: 13, Func. Count: 152, Neg. LLF: 158.9234945116279
Iteration: 14, Func. Count: 163, Neg. LLF: 158.92300969567705
Iteration: 15, Func. Count: 174, Neg. LLF: 158.9223493609676
Iteration: 16, Func. Count: 185, Neg. LLF: 158.92225407448458
Iteration: 17, Func. Count: 196, Neg. LLF: 158.9222355550013
Iteration: 18, Func. Count: 206, Neg. LLF: 158.92223554842988
Optimization terminated successfully (Exit mode 0)
Current function value: 158.9222355550013
Iterations: 18
Function evaluations: 206
Gradient evaluations: 18
Iteration: 1, Func. Count: 13, Neg. LLF: 190.56499324704617
Iteration: 2, Func. Count: 26, Neg. LLF: 159.20469880813326
Iteration: 3, Func. Count: 38, Neg. LLF: 162.2273346805942
Iteration: 4, Func. Count: 51, Neg. LLF: 161.83026815502066
Iteration: 5, Func. Count: 64, Neg. LLF: 161.09509149818564
Iteration: 6, Func. Count: 78, Neg. LLF: 163.50419910383638
Iteration: 7, Func. Count: 92, Neg. LLF: 162.51332768944084
Iteration: 8, Func. Count: 105, Neg. LLF: 158.83220366803295
Iteration: 9, Func. Count: 117, Neg. LLF: 158.8271848801509
Iteration: 10, Func. Count: 130, Neg. LLF: 159.0110605916599
Iteration: 11, Func. Count: 143, Neg. LLF: 158.78372689840762
Iteration: 12, Func. Count: 155, Neg. LLF: 158.77349932434237
Iteration: 13, Func. Count: 167, Neg. LLF: 158.9264001967643
Iteration: 14, Func. Count: 180, Neg. LLF: 158.76355516835991
Iteration: 15, Func. Count: 192, Neg. LLF: 158.75828558893008
Iteration: 16, Func. Count: 204, Neg. LLF: 158.75637380405084
Iteration: 17, Func. Count: 216, Neg. LLF: 158.75541690148876
Iteration: 18, Func. Count: 228, Neg. LLF: 158.75455457372325
Iteration: 19, Func. Count: 240, Neg. LLF: 158.7541941595936
Iteration: 20, Func. Count: 252, Neg. LLF: 158.75413465545904
Iteration: 21, Func. Count: 264, Neg. LLF: 158.75413081743804
Iteration: 22, Func. Count: 275, Neg. LLF: 158.75413080501602
Optimization terminated successfully (Exit mode 0)
Current function value: 158.75413081743804
Iterations: 22
Function evaluations: 275
Gradient evaluations: 22
Iteration: 1, Func. Count: 14, Neg. LLF: 183.23033827810679
Iteration: 2, Func. Count: 28, Neg. LLF: 159.4118395611623
Iteration: 3, Func. Count: 42, Neg. LLF: 157.7245964381035
Iteration: 4, Func. Count: 55, Neg. LLF: 157.52802337060913
Iteration: 5, Func. Count: 68, Neg. LLF: 157.34189591860786
Iteration: 6, Func. Count: 81, Neg. LLF: 184.71909075149995
Iteration: 7, Func. Count: 95, Neg. LLF: 172.73764501141704
Iteration: 8, Func. Count: 109, Neg. LLF: 156.86712953351167
Iteration: 9, Func. Count: 122, Neg. LLF: 156.86192134605344
Iteration: 10, Func. Count: 135, Neg. LLF: 156.85867870269877
Iteration: 11, Func. Count: 148, Neg. LLF: 156.85789587559572
Iteration: 12, Func. Count: 161, Neg. LLF: 156.85703362310585
Iteration: 13, Func. Count: 174, Neg. LLF: 156.85640746160325
Iteration: 14, Func. Count: 187, Neg. LLF: 156.8561907815754
Iteration: 15, Func. Count: 200, Neg. LLF: 156.85617007691542
Iteration: 16, Func. Count: 213, Neg. LLF: 156.85616946231855
Optimization terminated successfully (Exit mode 0)
Current function value: 156.85616946231855
Iterations: 16
Function evaluations: 213
Gradient evaluations: 16
Iteration: 1, Func. Count: 15, Neg. LLF: 164.98842863815284
Iteration: 2, Func. Count: 30, Neg. LLF: 162.92163163676707
Iteration: 3, Func. Count: 45, Neg. LLF: 159.48704343640526
Iteration: 4, Func. Count: 60, Neg. LLF: 161.68050384888113
Iteration: 5, Func. Count: 75, Neg. LLF: 159.2052778873221
Iteration: 6, Func. Count: 90, Neg. LLF: 165.4871830717559
Iteration: 7, Func. Count: 105, Neg. LLF: 157.74938273220025
Iteration: 8, Func. Count: 119, Neg. LLF: 157.7214425667836
Iteration: 9, Func. Count: 134, Neg. LLF: 157.52694999401533
Iteration: 10, Func. Count: 148, Neg. LLF: 157.30684469022825
Iteration: 11, Func. Count: 162, Neg. LLF: 157.1688215164147
Iteration: 12, Func. Count: 176, Neg. LLF: 157.02727718234516
Iteration: 13, Func. Count: 190, Neg. LLF: 157.36555089787672
Iteration: 14, Func. Count: 205, Neg. LLF: 157.0299788371767
Iteration: 15, Func. Count: 220, Neg. LLF: 156.97602414886677
Iteration: 16, Func. Count: 234, Neg. LLF: 156.99755214307785
Iteration: 17, Func. Count: 249, Neg. LLF: 156.9687051093817
Iteration: 18, Func. Count: 263, Neg. LLF: 156.96828589927352
Iteration: 19, Func. Count: 277, Neg. LLF: 156.9682177815339
Iteration: 20, Func. Count: 291, Neg. LLF: 156.9682147137175
Iteration: 21, Func. Count: 304, Neg. LLF: 156.9682146978444
Optimization terminated successfully (Exit mode 0)
Current function value: 156.9682147137175
Iterations: 21
Function evaluations: 304
Gradient evaluations: 21
Iteration: 1, Func. Count: 12, Neg. LLF: 163.3081323386747
Iteration: 2, Func. Count: 24, Neg. LLF: 162.07432247828643
Iteration: 3, Func. Count: 36, Neg. LLF: 160.94867525263228
Iteration: 4, Func. Count: 48, Neg. LLF: 160.5698276676005
Iteration: 5, Func. Count: 60, Neg. LLF: 159.70455151726262
Iteration: 6, Func. Count: 71, Neg. LLF: 160.37016707298054
Iteration: 7, Func. Count: 83, Neg. LLF: 159.82480287524126
Iteration: 8, Func. Count: 95, Neg. LLF: 159.43553492792563
Iteration: 9, Func. Count: 106, Neg. LLF: 159.89274996428782
Iteration: 10, Func. Count: 118, Neg. LLF: 160.14485124314206
Iteration: 11, Func. Count: 130, Neg. LLF: 159.20273152745455
Iteration: 12, Func. Count: 141, Neg. LLF: 158.88657372194234
Iteration: 13, Func. Count: 152, Neg. LLF: 159.18876251133804
Iteration: 14, Func. Count: 164, Neg. LLF: 161.36691850877165
Iteration: 15, Func. Count: 176, Neg. LLF: 158.5857689745259
Iteration: 16, Func. Count: 188, Neg. LLF: 158.21717873175464
Iteration: 17, Func. Count: 199, Neg. LLF: 158.1241517991155
Iteration: 18, Func. Count: 210, Neg. LLF: 158.10705908473793
Iteration: 19, Func. Count: 221, Neg. LLF: 158.09407508933066
Iteration: 20, Func. Count: 232, Neg. LLF: 158.09223102864686
Iteration: 21, Func. Count: 243, Neg. LLF: 158.0907861557955
Iteration: 22, Func. Count: 254, Neg. LLF: 158.09054114366947
Iteration: 23, Func. Count: 265, Neg. LLF: 158.0903459216612
Iteration: 24, Func. Count: 276, Neg. LLF: 158.09031019702138
Iteration: 25, Func. Count: 286, Neg. LLF: 158.09031004476407
Optimization terminated successfully (Exit mode 0)
Current function value: 158.09031019702138
Iterations: 25
Function evaluations: 286
Gradient evaluations: 25
Iteration: 1, Func. Count: 13, Neg. LLF: 231.89828772889868
Iteration: 2, Func. Count: 26, Neg. LLF: 189.37912790861952
Iteration: 3, Func. Count: 39, Neg. LLF: 163.23578327899992
Iteration: 4, Func. Count: 53, Neg. LLF: 159.29250375407162
Iteration: 5, Func. Count: 66, Neg. LLF: 162.49678870025306
Iteration: 6, Func. Count: 79, Neg. LLF: 158.87681408880857
Iteration: 7, Func. Count: 91, Neg. LLF: 158.69917031884688
Iteration: 8, Func. Count: 103, Neg. LLF: 158.63872795247104
Iteration: 9, Func. Count: 115, Neg. LLF: 158.63387012216117
Iteration: 10, Func. Count: 127, Neg. LLF: 158.63177574008967
Iteration: 11, Func. Count: 139, Neg. LLF: 158.63140271745152
Iteration: 12, Func. Count: 151, Neg. LLF: 158.63057743274686
Iteration: 13, Func. Count: 163, Neg. LLF: 158.6296285130528
Iteration: 14, Func. Count: 175, Neg. LLF: 158.62834925300857
Iteration: 15, Func. Count: 187, Neg. LLF: 158.62758364593734
Iteration: 16, Func. Count: 199, Neg. LLF: 158.62740543853536
Iteration: 17, Func. Count: 211, Neg. LLF: 158.627395461019
Iteration: 18, Func. Count: 222, Neg. LLF: 158.62739543018557
Optimization terminated successfully (Exit mode 0)
Current function value: 158.627395461019
Iterations: 18
Function evaluations: 222
Gradient evaluations: 18
Iteration: 1, Func. Count: 14, Neg. LLF: 220.30678565320534
Iteration: 2, Func. Count: 28, Neg. LLF: 185.07829088457004
Iteration: 3, Func. Count: 42, Neg. LLF: 224.4019153269675
Iteration: 4, Func. Count: 56, Neg. LLF: 199.25105566818866
Iteration: 5, Func. Count: 70, Neg. LLF: 158.65940959523664
Iteration: 6, Func. Count: 83, Neg. LLF: 158.9768516172243
Iteration: 7, Func. Count: 97, Neg. LLF: 160.2014299586031
Iteration: 8, Func. Count: 111, Neg. LLF: 160.1383116603515
Iteration: 9, Func. Count: 126, Neg. LLF: 158.62681663441995
Iteration: 10, Func. Count: 140, Neg. LLF: 158.60803953217297
Iteration: 11, Func. Count: 154, Neg. LLF: 158.51168946517885
Iteration: 12, Func. Count: 167, Neg. LLF: 158.50566270713134
Iteration: 13, Func. Count: 180, Neg. LLF: 158.50458067469268
Iteration: 14, Func. Count: 193, Neg. LLF: 158.5040931145877
Iteration: 15, Func. Count: 206, Neg. LLF: 158.50343569253383
Iteration: 16, Func. Count: 219, Neg. LLF: 158.50207161674837
Iteration: 17, Func. Count: 232, Neg. LLF: 158.49907632116717
Iteration: 18, Func. Count: 245, Neg. LLF: 158.49863817113155
Iteration: 19, Func. Count: 258, Neg. LLF: 158.4985468889334
Iteration: 20, Func. Count: 271, Neg. LLF: 158.49853715143396
Iteration: 21, Func. Count: 284, Neg. LLF: 158.49853421273122
Iteration: 22, Func. Count: 296, Neg. LLF: 158.49853418686206
Optimization terminated successfully (Exit mode 0)
Current function value: 158.49853421273122
Iterations: 22
Function evaluations: 296
Gradient evaluations: 22
Iteration: 1, Func. Count: 15, Neg. LLF: 164.2031252323701
Iteration: 2, Func. Count: 30, Neg. LLF: 162.947480970744
Iteration: 3, Func. Count: 45, Neg. LLF: 159.74920851660224
Iteration: 4, Func. Count: 60, Neg. LLF: 160.7742601910232
Iteration: 5, Func. Count: 75, Neg. LLF: 171.0213705318668
Iteration: 6, Func. Count: 90, Neg. LLF: 159.282990503775
Iteration: 7, Func. Count: 105, Neg. LLF: 158.3961317100548
Iteration: 8, Func. Count: 119, Neg. LLF: 158.2430471111816
Iteration: 9, Func. Count: 133, Neg. LLF: 158.0967089736955
Iteration: 10, Func. Count: 147, Neg. LLF: 157.99340709387926
Iteration: 11, Func. Count: 161, Neg. LLF: 157.79598783162848
Iteration: 12, Func. Count: 175, Neg. LLF: 157.4492938908507
Iteration: 13, Func. Count: 189, Neg. LLF: 157.04823719666194
Iteration: 14, Func. Count: 203, Neg. LLF: 156.89027784015664
Iteration: 15, Func. Count: 217, Neg. LLF: 156.8799463394861
Iteration: 16, Func. Count: 232, Neg. LLF: 156.8565294152286
Iteration: 17, Func. Count: 246, Neg. LLF: 156.8562422062732
Iteration: 18, Func. Count: 260, Neg. LLF: 156.85618293292268
Iteration: 19, Func. Count: 274, Neg. LLF: 156.85617087495496
Iteration: 20, Func. Count: 288, Neg. LLF: 156.85616948479202
Iteration: 21, Func. Count: 301, Neg. LLF: 156.8561694503428
Optimization terminated successfully (Exit mode 0)
Current function value: 156.85616948479202
Iterations: 21
Function evaluations: 301
Gradient evaluations: 21
Iteration: 1, Func. Count: 16, Neg. LLF: 165.40765188473435
Iteration: 2, Func. Count: 32, Neg. LLF: 165.3204828155068
Iteration: 3, Func. Count: 48, Neg. LLF: 159.65012428637604
Iteration: 4, Func. Count: 64, Neg. LLF: 161.9590538167735
Iteration: 5, Func. Count: 80, Neg. LLF: 159.05391103045497
Iteration: 6, Func. Count: 96, Neg. LLF: 165.7646385367499
Iteration: 7, Func. Count: 112, Neg. LLF: 157.72479374387098
Iteration: 8, Func. Count: 127, Neg. LLF: 157.62373308117554
Iteration: 9, Func. Count: 142, Neg. LLF: 157.40026250077926
Iteration: 10, Func. Count: 157, Neg. LLF: 157.29779753056332
Iteration: 11, Func. Count: 172, Neg. LLF: 157.05748556260622
Iteration: 12, Func. Count: 187, Neg. LLF: 157.25239122924927
Iteration: 13, Func. Count: 203, Neg. LLF: 157.87611382414013
Iteration: 14, Func. Count: 219, Neg. LLF: 157.00229905888202
Iteration: 15, Func. Count: 235, Neg. LLF: 156.96730177857128
Iteration: 16, Func. Count: 250, Neg. LLF: 156.96699896179675
Iteration: 17, Func. Count: 265, Neg. LLF: 156.96696395559266
Iteration: 18, Func. Count: 280, Neg. LLF: 156.96695756137655
Iteration: 19, Func. Count: 294, Neg. LLF: 156.9669575363942
Optimization terminated successfully (Exit mode 0)
Current function value: 156.96695756137655
Iterations: 19
Function evaluations: 294
Gradient evaluations: 19
Iteration: 1, Func. Count: 6, Neg. LLF: 551.6114857388799
Iteration: 2, Func. Count: 12, Neg. LLF: 160.35269818055252
Iteration: 3, Func. Count: 18, Neg. LLF: 158.9786475703729
Iteration: 4, Func. Count: 23, Neg. LLF: 165.32484721365626
Iteration: 5, Func. Count: 30, Neg. LLF: 158.95859102569347
Iteration: 6, Func. Count: 35, Neg. LLF: 158.95244371000342
Iteration: 7, Func. Count: 40, Neg. LLF: 158.95211845925155
Iteration: 8, Func. Count: 45, Neg. LLF: 158.95210007834743
Iteration: 9, Func. Count: 49, Neg. LLF: 158.95210007799125
Optimization terminated successfully (Exit mode 0)
Current function value: 158.95210007834743
Iterations: 9
Function evaluations: 49
Gradient evaluations: 9
Iteration: 1, Func. Count: 5, Neg. LLF: 166.59610594133503
Iteration: 2, Func. Count: 10, Neg. LLF: 166.08909751980053
Iteration: 3, Func. Count: 15, Neg. LLF: 165.03625505351422
Iteration: 4, Func. Count: 19, Neg. LLF: 164.2920027363145
Iteration: 5, Func. Count: 23, Neg. LLF: 163.70746961463644
Iteration: 6, Func. Count: 27, Neg. LLF: 163.592735211537
Iteration: 7, Func. Count: 31, Neg. LLF: 163.57747880831846
Iteration: 8, Func. Count: 35, Neg. LLF: 163.5717240581182
Iteration: 9, Func. Count: 39, Neg. LLF: 163.56963145448685
Iteration: 10, Func. Count: 43, Neg. LLF: 163.5694400532533
Iteration: 11, Func. Count: 47, Neg. LLF: 163.5694248471913
Iteration: 12, Func. Count: 50, Neg. LLF: 163.56942484719707
Optimization terminated successfully (Exit mode 0)
Current function value: 163.5694248471913
Iterations: 12
Function evaluations: 50
Gradient evaluations: 12
Iteration: 1, Func. Count: 6, Neg. LLF: 5055.537345817793
Iteration: 2, Func. Count: 13, Neg. LLF: 164.40206615272118
Iteration: 3, Func. Count: 19, Neg. LLF: 160.6797486408526
Iteration: 4, Func. Count: 25, Neg. LLF: 160.4830042017264
Iteration: 5, Func. Count: 30, Neg. LLF: 160.46677699427818
Iteration: 6, Func. Count: 35, Neg. LLF: 160.46422250272767
Iteration: 7, Func. Count: 40, Neg. LLF: 160.4632000718183
Iteration: 8, Func. Count: 45, Neg. LLF: 160.4630949724716
Iteration: 9, Func. Count: 50, Neg. LLF: 160.46308284182555
Iteration: 10, Func. Count: 55, Neg. LLF: 160.46308207965595
Optimization terminated successfully (Exit mode 0)
Current function value: 160.46308207965595
Iterations: 10
Function evaluations: 55
Gradient evaluations: 10
Iteration: 1, Func. Count: 7, Neg. LLF: 23069836.387962397
Iteration: 2, Func. Count: 15, Neg. LLF: 269.759798896317
Iteration: 3, Func. Count: 22, Neg. LLF: 161.80141288949918
Iteration: 4, Func. Count: 29, Neg. LLF: 160.5465335720411
Iteration: 5, Func. Count: 35, Neg. LLF: 160.48063288818227
Iteration: 6, Func. Count: 41, Neg. LLF: 160.46693178814024
Iteration: 7, Func. Count: 47, Neg. LLF: 160.46342580431644
Iteration: 8, Func. Count: 53, Neg. LLF: 160.4630850438881
Iteration: 9, Func. Count: 59, Neg. LLF: 160.463082719726
Iteration: 10, Func. Count: 64, Neg. LLF: 160.4630827204023
Optimization terminated successfully (Exit mode 0)
Current function value: 160.463082719726
Iterations: 10
Function evaluations: 64
Gradient evaluations: 10
Iteration: 1, Func. Count: 8, Neg. LLF: 246.04504468260558
Iteration: 2, Func. Count: 16, Neg. LLF: 163.33566062634642
Iteration: 3, Func. Count: 24, Neg. LLF: 161.45294937085072
Iteration: 4, Func. Count: 32, Neg. LLF: 160.71494770197717
Iteration: 5, Func. Count: 39, Neg. LLF: 164.0381924134216
Iteration: 6, Func. Count: 47, Neg. LLF: 160.6513177339487
Iteration: 7, Func. Count: 54, Neg. LLF: 160.5574380696782
Iteration: 8, Func. Count: 61, Neg. LLF: 160.47747445187224
Iteration: 9, Func. Count: 68, Neg. LLF: 160.44116155934876
Iteration: 10, Func. Count: 75, Neg. LLF: 160.42572964197183
Iteration: 11, Func. Count: 82, Neg. LLF: 160.42350257065843
Iteration: 12, Func. Count: 89, Neg. LLF: 160.42340685922986
Iteration: 13, Func. Count: 96, Neg. LLF: 160.42334992332462
Iteration: 14, Func. Count: 103, Neg. LLF: 160.423348191417
Iteration: 15, Func. Count: 109, Neg. LLF: 160.42334819138082
Optimization terminated successfully (Exit mode 0)
Current function value: 160.423348191417
Iterations: 15
Function evaluations: 109
Gradient evaluations: 15
Iteration: 1, Func. Count: 9, Neg. LLF: 285.2006751251365
Iteration: 2, Func. Count: 19, Neg. LLF: 262.646513472758
Iteration: 3, Func. Count: 28, Neg. LLF: 161.48031358814498
Iteration: 4, Func. Count: 37, Neg. LLF: 160.31527967400916
Iteration: 5, Func. Count: 45, Neg. LLF: 160.15341568730804
Iteration: 6, Func. Count: 53, Neg. LLF: 160.11379349002198
Iteration: 7, Func. Count: 61, Neg. LLF: 160.09656544209733
Iteration: 8, Func. Count: 69, Neg. LLF: 160.08176478675597
Iteration: 9, Func. Count: 77, Neg. LLF: 160.0672444819709
Iteration: 10, Func. Count: 85, Neg. LLF: 160.05526251032998
Iteration: 11, Func. Count: 93, Neg. LLF: 160.05496258497726
Iteration: 12, Func. Count: 101, Neg. LLF: 160.0549348800191
Iteration: 13, Func. Count: 108, Neg. LLF: 160.05493488016864
Optimization terminated successfully (Exit mode 0)
Current function value: 160.0549348800191
Iterations: 13
Function evaluations: 108
Gradient evaluations: 13
Iteration: 1, Func. Count: 6, Neg. LLF: 165.62725918909786
Iteration: 2, Func. Count: 12, Neg. LLF: 164.6803278628128
Iteration: 3, Func. Count: 18, Neg. LLF: 163.2277928779771
Iteration: 4, Func. Count: 24, Neg. LLF: 162.5557114890987
Iteration: 5, Func. Count: 29, Neg. LLF: 162.5180614021817
Iteration: 6, Func. Count: 34, Neg. LLF: 162.45689654239555
Iteration: 7, Func. Count: 39, Neg. LLF: 162.4074243847487
Iteration: 8, Func. Count: 44, Neg. LLF: 162.3929168538796
Iteration: 9, Func. Count: 49, Neg. LLF: 162.3862790848857
Iteration: 10, Func. Count: 54, Neg. LLF: 162.3821232372374
Iteration: 11, Func. Count: 59, Neg. LLF: 162.38059551985816
Iteration: 12, Func. Count: 64, Neg. LLF: 162.38029647338618
Iteration: 13, Func. Count: 69, Neg. LLF: 162.38027901044882
Iteration: 14, Func. Count: 73, Neg. LLF: 162.38027901048736
Optimization terminated successfully (Exit mode 0)
Current function value: 162.38027901044882
Iterations: 14
Function evaluations: 73
Gradient evaluations: 14
Iteration: 1, Func. Count: 7, Neg. LLF: 6058.137447542682
Iteration: 2, Func. Count: 15, Neg. LLF: 167.3751742526064
Iteration: 3, Func. Count: 22, Neg. LLF: 160.77614513605405
Iteration: 4, Func. Count: 29, Neg. LLF: 160.58149633553552
Iteration: 5, Func. Count: 36, Neg. LLF: 160.48154879967265
Iteration: 6, Func. Count: 43, Neg. LLF: 160.46569298334106
Iteration: 7, Func. Count: 49, Neg. LLF: 160.4627707557817
Iteration: 8, Func. Count: 55, Neg. LLF: 160.46267957663397
Iteration: 9, Func. Count: 61, Neg. LLF: 160.46267689576467
Iteration: 10, Func. Count: 67, Neg. LLF: 160.46267568396476
Iteration: 11, Func. Count: 72, Neg. LLF: 160.46267568402044
Optimization terminated successfully (Exit mode 0)
Current function value: 160.46267568396476
Iterations: 11
Function evaluations: 72
Gradient evaluations: 11
Iteration: 1, Func. Count: 8, Neg. LLF: 23033478.332033437
Iteration: 2, Func. Count: 17, Neg. LLF: 203.23839318687092
Iteration: 3, Func. Count: 25, Neg. LLF: 161.87306315612292
Iteration: 4, Func. Count: 33, Neg. LLF: 160.64425115099837
Iteration: 5, Func. Count: 41, Neg. LLF: 160.4204846801706
Iteration: 6, Func. Count: 48, Neg. LLF: 160.39347001581746
Iteration: 7, Func. Count: 55, Neg. LLF: 160.38544301102226
Iteration: 8, Func. Count: 62, Neg. LLF: 160.3816507956716
Iteration: 9, Func. Count: 69, Neg. LLF: 160.3802700505873
Iteration: 10, Func. Count: 76, Neg. LLF: 160.38008529469477
Iteration: 11, Func. Count: 83, Neg. LLF: 160.38002011415665
Iteration: 12, Func. Count: 90, Neg. LLF: 160.38000540774303
Iteration: 13, Func. Count: 97, Neg. LLF: 160.3800043152812
Iteration: 14, Func. Count: 103, Neg. LLF: 160.38000431525282
Optimization terminated successfully (Exit mode 0)
Current function value: 160.3800043152812
Iterations: 14
Function evaluations: 103
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 198.06756742116409
Iteration: 2, Func. Count: 18, Neg. LLF: 162.18182446138744
Iteration: 3, Func. Count: 27, Neg. LLF: 159.7189791957089
Iteration: 4, Func. Count: 35, Neg. LLF: 161.02202916642727
Iteration: 5, Func. Count: 44, Neg. LLF: 160.40144578939905
Iteration: 6, Func. Count: 53, Neg. LLF: 159.508390812899
Iteration: 7, Func. Count: 61, Neg. LLF: 159.4459420685822
Iteration: 8, Func. Count: 69, Neg. LLF: 159.41254885060113
Iteration: 9, Func. Count: 77, Neg. LLF: 159.3784391010009
Iteration: 10, Func. Count: 85, Neg. LLF: 159.34673869156845
Iteration: 11, Func. Count: 93, Neg. LLF: 159.3238425713276
Iteration: 12, Func. Count: 101, Neg. LLF: 159.3191820755955
Iteration: 13, Func. Count: 109, Neg. LLF: 159.31911970600666
Iteration: 14, Func. Count: 117, Neg. LLF: 159.31910500770107
Iteration: 15, Func. Count: 124, Neg. LLF: 159.31910495693361
Optimization terminated successfully (Exit mode 0)
Current function value: 159.31910500770107
Iterations: 15
Function evaluations: 124
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 371.283622876354
Iteration: 2, Func. Count: 21, Neg. LLF: 212.31024252379598
Iteration: 3, Func. Count: 31, Neg. LLF: 161.71973612107664
Iteration: 4, Func. Count: 41, Neg. LLF: 159.93943284117768
Iteration: 5, Func. Count: 50, Neg. LLF: 160.06232825302735
Iteration: 6, Func. Count: 60, Neg. LLF: 162.15811381097646
Iteration: 7, Func. Count: 70, Neg. LLF: 159.40635495917516
Iteration: 8, Func. Count: 79, Neg. LLF: 159.37124691716733
Iteration: 9, Func. Count: 88, Neg. LLF: 159.3836571897307
Iteration: 10, Func. Count: 98, Neg. LLF: 159.34523599683317
Iteration: 11, Func. Count: 107, Neg. LLF: 159.33590620148235
Iteration: 12, Func. Count: 116, Neg. LLF: 159.3199744564133
Iteration: 13, Func. Count: 125, Neg. LLF: 159.30864971849743
Iteration: 14, Func. Count: 134, Neg. LLF: 159.30274928743245
Iteration: 15, Func. Count: 143, Neg. LLF: 159.30223310333676
Iteration: 16, Func. Count: 152, Neg. LLF: 159.30214769619027
Iteration: 17, Func. Count: 161, Neg. LLF: 159.30214591738937
Iteration: 18, Func. Count: 169, Neg. LLF: 159.30214590963254
Optimization terminated successfully (Exit mode 0)
Current function value: 159.30214591738937
Iterations: 18
Function evaluations: 169
Gradient evaluations: 18
Iteration: 1, Func. Count: 7, Neg. LLF: 167.01746273876296
Iteration: 2, Func. Count: 14, Neg. LLF: 165.37905247027467
Iteration: 3, Func. Count: 22, Neg. LLF: 165.27572496976876
Iteration: 4, Func. Count: 29, Neg. LLF: 161.57595389091657
Iteration: 5, Func. Count: 35, Neg. LLF: 161.57076394140813
Iteration: 6, Func. Count: 41, Neg. LLF: 161.54874609600552
Iteration: 7, Func. Count: 47, Neg. LLF: 161.53909067489636
Iteration: 8, Func. Count: 53, Neg. LLF: 161.52963442063927
Iteration: 9, Func. Count: 59, Neg. LLF: 161.51889966876718
Iteration: 10, Func. Count: 65, Neg. LLF: 161.51160233065758
Iteration: 11, Func. Count: 71, Neg. LLF: 161.48373532150674
Iteration: 12, Func. Count: 77, Neg. LLF: 161.46721564588378
Iteration: 13, Func. Count: 83, Neg. LLF: 161.45708641612202
Iteration: 14, Func. Count: 89, Neg. LLF: 161.45586219861457
Iteration: 15, Func. Count: 95, Neg. LLF: 161.455844691235
Iteration: 16, Func. Count: 100, Neg. LLF: 161.45584469122994
Optimization terminated successfully (Exit mode 0)
Current function value: 161.455844691235
Iterations: 16
Function evaluations: 100
Gradient evaluations: 16
Iteration: 1, Func. Count: 8, Neg. LLF: 1732.8155921492455
Iteration: 2, Func. Count: 17, Neg. LLF: 167.89164376389232
Iteration: 3, Func. Count: 25, Neg. LLF: 160.9722058021315
Iteration: 4, Func. Count: 33, Neg. LLF: 160.74212710042707
Iteration: 5, Func. Count: 41, Neg. LLF: 160.5533001796982
Iteration: 6, Func. Count: 49, Neg. LLF: 160.47011129792295
Iteration: 7, Func. Count: 56, Neg. LLF: 160.46340868552994
Iteration: 8, Func. Count: 63, Neg. LLF: 160.46271527062427
Iteration: 9, Func. Count: 70, Neg. LLF: 160.4626881754804
Iteration: 10, Func. Count: 77, Neg. LLF: 160.46267969227105
Iteration: 11, Func. Count: 84, Neg. LLF: 160.4626758124895
Iteration: 12, Func. Count: 91, Neg. LLF: 160.46267520562202
Optimization terminated successfully (Exit mode 0)
Current function value: 160.46267520562202
Iterations: 12
Function evaluations: 91
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 197.41454044429847
Iteration: 2, Func. Count: 18, Neg. LLF: 160.75831537052625
Iteration: 3, Func. Count: 27, Neg. LLF: 161.0991702320438
Iteration: 4, Func. Count: 36, Neg. LLF: 161.88205233131632
Iteration: 5, Func. Count: 45, Neg. LLF: 160.493386244501
Iteration: 6, Func. Count: 53, Neg. LLF: 160.48497194037384
Iteration: 7, Func. Count: 61, Neg. LLF: 160.45567909410966
Iteration: 8, Func. Count: 69, Neg. LLF: 160.4487279151553
Iteration: 9, Func. Count: 77, Neg. LLF: 160.42336874965656
Iteration: 10, Func. Count: 85, Neg. LLF: 160.42048861728904
Iteration: 11, Func. Count: 94, Neg. LLF: 160.40348402494595
Iteration: 12, Func. Count: 102, Neg. LLF: 160.38300041454966
Iteration: 13, Func. Count: 110, Neg. LLF: 160.3804462227198
Iteration: 14, Func. Count: 118, Neg. LLF: 160.38004355304517
Iteration: 15, Func. Count: 126, Neg. LLF: 160.38002837485786
Iteration: 16, Func. Count: 134, Neg. LLF: 160.38000437611882
Iteration: 17, Func. Count: 141, Neg. LLF: 160.3800043761295
Optimization terminated successfully (Exit mode 0)
Current function value: 160.38000437611882
Iterations: 17
Function evaluations: 141
Gradient evaluations: 17
Iteration: 1, Func. Count: 10, Neg. LLF: 198.3261495286436
Iteration: 2, Func. Count: 20, Neg. LLF: 163.3587062590913
Iteration: 3, Func. Count: 30, Neg. LLF: 162.59047095607545
Iteration: 4, Func. Count: 40, Neg. LLF: 158.649894366447
Iteration: 5, Func. Count: 49, Neg. LLF: 158.32620350534168
Iteration: 6, Func. Count: 58, Neg. LLF: 158.21014567912286
Iteration: 7, Func. Count: 67, Neg. LLF: 158.16222410159023
Iteration: 8, Func. Count: 76, Neg. LLF: 158.1164046697756
Iteration: 9, Func. Count: 85, Neg. LLF: 158.08804346104228
Iteration: 10, Func. Count: 94, Neg. LLF: 158.06588682236813
Iteration: 11, Func. Count: 103, Neg. LLF: 158.06081503651254
Iteration: 12, Func. Count: 112, Neg. LLF: 158.06031283161317
Iteration: 13, Func. Count: 121, Neg. LLF: 158.060296362893
Iteration: 14, Func. Count: 130, Neg. LLF: 158.06041522055312
Optimization terminated successfully (Exit mode 0)
Current function value: 158.06029625989433
Iterations: 15
Function evaluations: 132
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 288.09111953887
Iteration: 2, Func. Count: 23, Neg. LLF: 261.76271207118447
Iteration: 3, Func. Count: 34, Neg. LLF: 174.33824121727073
Iteration: 4, Func. Count: 45, Neg. LLF: 161.30484700944217
Iteration: 5, Func. Count: 56, Neg. LLF: 160.1226958585622
Iteration: 6, Func. Count: 67, Neg. LLF: 160.56292383157873
Iteration: 7, Func. Count: 78, Neg. LLF: 159.31106969672737
Iteration: 8, Func. Count: 88, Neg. LLF: 159.1454795567584
Iteration: 9, Func. Count: 98, Neg. LLF: 159.07717218907914
Iteration: 10, Func. Count: 108, Neg. LLF: 159.01114503483035
Iteration: 11, Func. Count: 118, Neg. LLF: 158.95606345952186
Iteration: 12, Func. Count: 128, Neg. LLF: 158.93590520737737
Iteration: 13, Func. Count: 138, Neg. LLF: 158.921710855945
Iteration: 14, Func. Count: 148, Neg. LLF: 158.92074075057545
Iteration: 15, Func. Count: 158, Neg. LLF: 158.92057733177626
Iteration: 16, Func. Count: 168, Neg. LLF: 158.92055654423092
Iteration: 17, Func. Count: 178, Neg. LLF: 158.920548911375
Iteration: 18, Func. Count: 188, Neg. LLF: 158.92054812272374
Optimization terminated successfully (Exit mode 0)
Current function value: 158.92054812272374
Iterations: 18
Function evaluations: 188
Gradient evaluations: 18
Iteration: 1, Func. Count: 8, Neg. LLF: 169.3359971515024
Iteration: 2, Func. Count: 16, Neg. LLF: 165.9423074235168
Iteration: 3, Func. Count: 25, Neg. LLF: 165.96987024565917
Iteration: 4, Func. Count: 33, Neg. LLF: 162.8855726239366
Iteration: 5, Func. Count: 41, Neg. LLF: 161.60174533889136
Iteration: 6, Func. Count: 48, Neg. LLF: 161.56694843130197
Iteration: 7, Func. Count: 55, Neg. LLF: 161.55619634170236
Iteration: 8, Func. Count: 62, Neg. LLF: 161.54486543978828
Iteration: 9, Func. Count: 69, Neg. LLF: 161.5321366976658
Iteration: 10, Func. Count: 76, Neg. LLF: 161.52019610885222
Iteration: 11, Func. Count: 83, Neg. LLF: 161.5096100219351
Iteration: 12, Func. Count: 90, Neg. LLF: 161.49495115758205
Iteration: 13, Func. Count: 97, Neg. LLF: 161.47869828122035
Iteration: 14, Func. Count: 104, Neg. LLF: 161.46373413363852
Iteration: 15, Func. Count: 111, Neg. LLF: 161.45685085761133
Iteration: 16, Func. Count: 118, Neg. LLF: 161.45594064872313
Iteration: 17, Func. Count: 125, Neg. LLF: 161.4558617603225
Iteration: 18, Func. Count: 132, Neg. LLF: 161.455845204292
Iteration: 19, Func. Count: 138, Neg. LLF: 161.45584528711288
Optimization terminated successfully (Exit mode 0)
Current function value: 161.455845204292
Iterations: 19
Function evaluations: 138
Gradient evaluations: 19
Iteration: 1, Func. Count: 9, Neg. LLF: 1347.878035786882
Iteration: 2, Func. Count: 18, Neg. LLF: 161.39397336905589
Iteration: 3, Func. Count: 27, Neg. LLF: 160.49079813376068
Iteration: 4, Func. Count: 35, Neg. LLF: 175.3325837590954
Iteration: 5, Func. Count: 44, Neg. LLF: 160.48188947262065
Iteration: 6, Func. Count: 53, Neg. LLF: 160.46359836562831
Iteration: 7, Func. Count: 61, Neg. LLF: 160.4627367898424
Iteration: 8, Func. Count: 69, Neg. LLF: 160.46270704477652
Iteration: 9, Func. Count: 77, Neg. LLF: 160.4626806380112
Iteration: 10, Func. Count: 85, Neg. LLF: 160.46267567360164
Iteration: 11, Func. Count: 92, Neg. LLF: 160.4626756736473
Optimization terminated successfully (Exit mode 0)
Current function value: 160.46267567360164
Iterations: 11
Function evaluations: 92
Gradient evaluations: 11
Iteration: 1, Func. Count: 10, Neg. LLF: 199.4920655460658
Iteration: 2, Func. Count: 20, Neg. LLF: 160.77593557224688
Iteration: 3, Func. Count: 30, Neg. LLF: 161.12994271324433
Iteration: 4, Func. Count: 40, Neg. LLF: 162.1660672998695
Iteration: 5, Func. Count: 50, Neg. LLF: 160.49377091046364
Iteration: 6, Func. Count: 59, Neg. LLF: 160.4975626731868
Iteration: 7, Func. Count: 69, Neg. LLF: 160.45896181392314
Iteration: 8, Func. Count: 78, Neg. LLF: 160.42673076086405
Iteration: 9, Func. Count: 87, Neg. LLF: 160.40312445506407
Iteration: 10, Func. Count: 96, Neg. LLF: 160.43044671262905
Iteration: 11, Func. Count: 106, Neg. LLF: 160.38283496073757
Iteration: 12, Func. Count: 115, Neg. LLF: 160.3803143641084
Iteration: 13, Func. Count: 124, Neg. LLF: 160.38007576887523
Iteration: 14, Func. Count: 133, Neg. LLF: 160.38000452870915
Iteration: 15, Func. Count: 141, Neg. LLF: 160.3800045286333
Optimization terminated successfully (Exit mode 0)
Current function value: 160.38000452870915
Iterations: 15
Function evaluations: 141
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 195.3340616071667
Iteration: 2, Func. Count: 22, Neg. LLF: 163.23061871614817
Iteration: 3, Func. Count: 33, Neg. LLF: 160.82692666209573
Iteration: 4, Func. Count: 44, Neg. LLF: 159.39202400154335
Iteration: 5, Func. Count: 54, Neg. LLF: 158.69094885933197
Iteration: 6, Func. Count: 64, Neg. LLF: 158.58837470169107
Iteration: 7, Func. Count: 74, Neg. LLF: 158.90861568085398
Iteration: 8, Func. Count: 85, Neg. LLF: 158.24765019446454
Iteration: 9, Func. Count: 95, Neg. LLF: 158.1080514974509
Iteration: 10, Func. Count: 105, Neg. LLF: 158.0673330361157
Iteration: 11, Func. Count: 115, Neg. LLF: 158.061398066354
Iteration: 12, Func. Count: 125, Neg. LLF: 158.0612103704719
Iteration: 13, Func. Count: 135, Neg. LLF: 158.06085202128233
Iteration: 14, Func. Count: 145, Neg. LLF: 158.06081676896935
Iteration: 15, Func. Count: 156, Neg. LLF: 158.06026571613694
Iteration: 16, Func. Count: 166, Neg. LLF: 158.06025829498367
Iteration: 17, Func. Count: 176, Neg. LLF: 158.06021812671472
Iteration: 18, Func. Count: 196, Neg. LLF: 158.06028479973716
Iteration: 19, Func. Count: 207, Neg. LLF: 158.06026696476502
Iteration: 20, Func. Count: 227, Neg. LLF: 158.06042004909767
Iteration: 21, Func. Count: 239, Neg. LLF: 158.06031998299866
Iteration: 22, Func. Count: 251, Neg. LLF: 158.06029794735878
Iteration: 23, Func. Count: 262, Neg. LLF: 158.06029763118028
Iteration: 24, Func. Count: 271, Neg. LLF: 158.06029759217517
Optimization terminated successfully (Exit mode 0)
Current function value: 158.06029763118028
Iterations: 25
Function evaluations: 271
Gradient evaluations: 24
Iteration: 1, Func. Count: 12, Neg. LLF: 197.06612002017403
Iteration: 2, Func. Count: 24, Neg. LLF: 190.09076700059538
Iteration: 3, Func. Count: 36, Neg. LLF: 163.2137339053805
Iteration: 4, Func. Count: 48, Neg. LLF: 165.07755121649802
Iteration: 5, Func. Count: 60, Neg. LLF: 159.87946230893138
Iteration: 6, Func. Count: 72, Neg. LLF: 159.1128742619475
Iteration: 7, Func. Count: 83, Neg. LLF: 159.03178759122807
Iteration: 8, Func. Count: 94, Neg. LLF: 159.26611659037815
Iteration: 9, Func. Count: 106, Neg. LLF: 158.97918334508083
Iteration: 10, Func. Count: 118, Neg. LLF: 158.94147285288594
Iteration: 11, Func. Count: 129, Neg. LLF: 158.93603175961113
Iteration: 12, Func. Count: 140, Neg. LLF: 158.92949893598248
Iteration: 13, Func. Count: 151, Neg. LLF: 158.92348454311812
Iteration: 14, Func. Count: 162, Neg. LLF: 158.92092504375708
Iteration: 15, Func. Count: 173, Neg. LLF: 158.9205716450095
Iteration: 16, Func. Count: 184, Neg. LLF: 158.92054941034678
Iteration: 17, Func. Count: 195, Neg. LLF: 158.92054807935278
Iteration: 18, Func. Count: 205, Neg. LLF: 158.9205480742542
Optimization terminated successfully (Exit mode 0)
Current function value: 158.92054807935278
Iterations: 18
Function evaluations: 205
Gradient evaluations: 18
Iteration: 1, Func. Count: 5, Neg. LLF: 164.0521019224663
Iteration: 2, Func. Count: 10, Neg. LLF: 163.01785939142334
Iteration: 3, Func. Count: 14, Neg. LLF: 162.95181501180284
Iteration: 4, Func. Count: 18, Neg. LLF: 162.93673098942062
Iteration: 5, Func. Count: 22, Neg. LLF: 162.92464397388284
Iteration: 6, Func. Count: 26, Neg. LLF: 162.87428964795194
Iteration: 7, Func. Count: 30, Neg. LLF: 162.83583515396128
Iteration: 8, Func. Count: 34, Neg. LLF: 162.816668699863
Iteration: 9, Func. Count: 38, Neg. LLF: 162.81386460252605
Iteration: 10, Func. Count: 42, Neg. LLF: 162.81368513903217
Iteration: 11, Func. Count: 46, Neg. LLF: 162.81367471095237
Iteration: 12, Func. Count: 49, Neg. LLF: 162.81367471096243
Optimization terminated successfully (Exit mode 0)
Current function value: 162.81367471095237
Iterations: 12
Function evaluations: 49
Gradient evaluations: 12
Iteration: 1, Func. Count: 6, Neg. LLF: 164.01626493020223
Iteration: 2, Func. Count: 13, Neg. LLF: 163.11972057285598
Iteration: 3, Func. Count: 19, Neg. LLF: 162.95809663857557
Iteration: 4, Func. Count: 25, Neg. LLF: 162.91108324186206
Iteration: 5, Func. Count: 30, Neg. LLF: 162.9073938808322
Iteration: 6, Func. Count: 35, Neg. LLF: 162.897781282248
Iteration: 7, Func. Count: 40, Neg. LLF: 162.8752271777239
Iteration: 8, Func. Count: 45, Neg. LLF: 162.8557305898441
Iteration: 9, Func. Count: 50, Neg. LLF: 162.82715641622465
Iteration: 10, Func. Count: 55, Neg. LLF: 162.81576559499962
Iteration: 11, Func. Count: 60, Neg. LLF: 162.81389866409893
Iteration: 12, Func. Count: 65, Neg. LLF: 162.81369240634743
Iteration: 13, Func. Count: 70, Neg. LLF: 162.81367442903743
Iteration: 14, Func. Count: 74, Neg. LLF: 162.81367443528262
Optimization terminated successfully (Exit mode 0)
Current function value: 162.81367442903743
Iterations: 14
Function evaluations: 74
Gradient evaluations: 14
Iteration: 1, Func. Count: 7, Neg. LLF: 222.28698488804443
Iteration: 2, Func. Count: 15, Neg. LLF: 171.57614405857157
Iteration: 3, Func. Count: 22, Neg. LLF: 178.85370443255593
Iteration: 4, Func. Count: 30, Neg. LLF: 162.94826624306856
Iteration: 5, Func. Count: 37, Neg. LLF: 162.8578660024257
Iteration: 6, Func. Count: 43, Neg. LLF: 162.8578040004325
Iteration: 7, Func. Count: 49, Neg. LLF: 162.85773263212346
Iteration: 8, Func. Count: 55, Neg. LLF: 162.85757334749016
Iteration: 9, Func. Count: 61, Neg. LLF: 162.85732747499094
Iteration: 10, Func. Count: 67, Neg. LLF: 162.85709038915226
Iteration: 11, Func. Count: 73, Neg. LLF: 162.85700137174797
Iteration: 12, Func. Count: 79, Neg. LLF: 162.85699193375186
Iteration: 13, Func. Count: 84, Neg. LLF: 162.856991933704
Optimization terminated successfully (Exit mode 0)
Current function value: 162.85699193375186
Iterations: 13
Function evaluations: 84
Gradient evaluations: 13
Iteration: 1, Func. Count: 8, Neg. LLF: 342.05972446007127
Iteration: 2, Func. Count: 17, Neg. LLF: 173.85816720703977
Iteration: 3, Func. Count: 25, Neg. LLF: 164.79650020370315
Iteration: 4, Func. Count: 33, Neg. LLF: 162.78172747634642
Iteration: 5, Func. Count: 41, Neg. LLF: 162.70331320963268
Iteration: 6, Func. Count: 48, Neg. LLF: 162.69762033362844
Iteration: 7, Func. Count: 55, Neg. LLF: 162.6908688372718
Iteration: 8, Func. Count: 62, Neg. LLF: 162.68983390273098
Iteration: 9, Func. Count: 69, Neg. LLF: 162.68979756976933
Iteration: 10, Func. Count: 76, Neg. LLF: 162.689795845637
Iteration: 11, Func. Count: 83, Neg. LLF: 162.68979388004877
Iteration: 12, Func. Count: 90, Neg. LLF: 162.689788853896
Iteration: 13, Func. Count: 97, Neg. LLF: 162.68978142243742
Iteration: 14, Func. Count: 104, Neg. LLF: 162.68977411595583
Iteration: 15, Func. Count: 111, Neg. LLF: 162.68977137386986
Iteration: 16, Func. Count: 117, Neg. LLF: 162.6897713739613
Optimization terminated successfully (Exit mode 0)
Current function value: 162.68977137386986
Iterations: 16
Function evaluations: 117
Gradient evaluations: 16
Iteration: 1, Func. Count: 9, Neg. LLF: 164.9601768055303
Iteration: 2, Func. Count: 18, Neg. LLF: 167.18719106510045
Iteration: 3, Func. Count: 27, Neg. LLF: 172.4852769970834
Iteration: 4, Func. Count: 36, Neg. LLF: 163.7196766458205
Iteration: 5, Func. Count: 45, Neg. LLF: 162.38949198175914
Iteration: 6, Func. Count: 53, Neg. LLF: 162.37364502193378
Iteration: 7, Func. Count: 61, Neg. LLF: 162.3483378785992
Iteration: 8, Func. Count: 69, Neg. LLF: 162.33322920620466
Iteration: 9, Func. Count: 77, Neg. LLF: 162.31975608848435
Iteration: 10, Func. Count: 85, Neg. LLF: 162.31046740991033
Iteration: 11, Func. Count: 93, Neg. LLF: 162.2997526401534
Iteration: 12, Func. Count: 101, Neg. LLF: 162.2809269917192
Iteration: 13, Func. Count: 109, Neg. LLF: 162.24386433445878
Iteration: 14, Func. Count: 117, Neg. LLF: 162.191566963753
Iteration: 15, Func. Count: 125, Neg. LLF: 162.13351166854787
Iteration: 16, Func. Count: 133, Neg. LLF: 162.06170912132012
Iteration: 17, Func. Count: 141, Neg. LLF: 162.05781604426568
Iteration: 18, Func. Count: 149, Neg. LLF: 162.05500079804355
Iteration: 19, Func. Count: 157, Neg. LLF: 162.05451102897118
Iteration: 20, Func. Count: 165, Neg. LLF: 162.05448574468667
Iteration: 21, Func. Count: 172, Neg. LLF: 162.0544857447624
Optimization terminated successfully (Exit mode 0)
Current function value: 162.05448574468667
Iterations: 21
Function evaluations: 172
Gradient evaluations: 21
Iteration: 1, Func. Count: 6, Neg. LLF: 163.1095198474089
Iteration: 2, Func. Count: 12, Neg. LLF: 162.9222125380826
Iteration: 3, Func. Count: 18, Neg. LLF: 163.13303285002803
Iteration: 4, Func. Count: 24, Neg. LLF: 162.24077744146632
Iteration: 5, Func. Count: 29, Neg. LLF: 162.23807833081102
Iteration: 6, Func. Count: 34, Neg. LLF: 162.23631247690682
Iteration: 7, Func. Count: 39, Neg. LLF: 162.23360625300373
Iteration: 8, Func. Count: 44, Neg. LLF: 162.2314220469316
Iteration: 9, Func. Count: 49, Neg. LLF: 162.2262160819462
Iteration: 10, Func. Count: 54, Neg. LLF: 162.22254992454467
Iteration: 11, Func. Count: 59, Neg. LLF: 162.2212244993863
Iteration: 12, Func. Count: 64, Neg. LLF: 162.22110822302346
Iteration: 13, Func. Count: 69, Neg. LLF: 162.22110296466457
Iteration: 14, Func. Count: 73, Neg. LLF: 162.2211029646646
Optimization terminated successfully (Exit mode 0)
Current function value: 162.22110296466457
Iterations: 14
Function evaluations: 73
Gradient evaluations: 14
Iteration: 1, Func. Count: 7, Neg. LLF: 2839.337209742615
Iteration: 2, Func. Count: 15, Neg. LLF: 163.85381428046432
Iteration: 3, Func. Count: 22, Neg. LLF: 160.63816333428463
Iteration: 4, Func. Count: 29, Neg. LLF: 160.48724408033522
Iteration: 5, Func. Count: 35, Neg. LLF: 160.46674843892643
Iteration: 6, Func. Count: 41, Neg. LLF: 160.46435358422292
Iteration: 7, Func. Count: 47, Neg. LLF: 160.46318733302047
Iteration: 8, Func. Count: 53, Neg. LLF: 160.46309165113001
Iteration: 9, Func. Count: 59, Neg. LLF: 160.46308270356863
Iteration: 10, Func. Count: 65, Neg. LLF: 160.4630820794741
Optimization terminated successfully (Exit mode 0)
Current function value: 160.4630820794741
Iterations: 10
Function evaluations: 65
Gradient evaluations: 10
Iteration: 1, Func. Count: 8, Neg. LLF: 2501.1623193993387
Iteration: 2, Func. Count: 17, Neg. LLF: 166.79232204818743
Iteration: 3, Func. Count: 25, Neg. LLF: 160.78899802337926
Iteration: 4, Func. Count: 32, Neg. LLF: 160.46483309887617
Iteration: 5, Func. Count: 39, Neg. LLF: 160.46339593924154
Iteration: 6, Func. Count: 46, Neg. LLF: 160.4631772108383
Iteration: 7, Func. Count: 53, Neg. LLF: 160.4630895576568
Iteration: 8, Func. Count: 60, Neg. LLF: 160.46308522766836
Iteration: 9, Func. Count: 67, Neg. LLF: 160.4630820651502
Iteration: 10, Func. Count: 73, Neg. LLF: 160.4630820657133
Optimization terminated successfully (Exit mode 0)
Current function value: 160.4630820651502
Iterations: 10
Function evaluations: 73
Gradient evaluations: 10
Iteration: 1, Func. Count: 9, Neg. LLF: 236.18690297603086
Iteration: 2, Func. Count: 18, Neg. LLF: 161.03705875289168
Iteration: 3, Func. Count: 26, Neg. LLF: 162.3085022833979
Iteration: 4, Func. Count: 35, Neg. LLF: 169.50907653871982
Iteration: 5, Func. Count: 44, Neg. LLF: 160.6995921442575
Iteration: 6, Func. Count: 52, Neg. LLF: 160.6278136480694
Iteration: 7, Func. Count: 60, Neg. LLF: 160.58989464283206
Iteration: 8, Func. Count: 68, Neg. LLF: 160.50275758639205
Iteration: 9, Func. Count: 76, Neg. LLF: 160.67232185858842
Iteration: 10, Func. Count: 85, Neg. LLF: 160.4272251142762
Iteration: 11, Func. Count: 93, Neg. LLF: 160.4235797102524
Iteration: 12, Func. Count: 101, Neg. LLF: 160.4233562414715
Iteration: 13, Func. Count: 109, Neg. LLF: 160.42334873964387
Iteration: 14, Func. Count: 116, Neg. LLF: 160.42334873983103
Optimization terminated successfully (Exit mode 0)
Current function value: 160.42334873964387
Iterations: 14
Function evaluations: 116
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 234.17089031936965
Iteration: 2, Func. Count: 20, Neg. LLF: 161.52548029410852
Iteration: 3, Func. Count: 30, Neg. LLF: 160.87480596419977
Iteration: 4, Func. Count: 39, Neg. LLF: 166.39187946446665
Iteration: 5, Func. Count: 49, Neg. LLF: 160.87514496638246
Iteration: 6, Func. Count: 59, Neg. LLF: 160.23192094940612
Iteration: 7, Func. Count: 68, Neg. LLF: 160.2114895507284
Iteration: 8, Func. Count: 77, Neg. LLF: 160.15382389249538
Iteration: 9, Func. Count: 86, Neg. LLF: 160.12145695930235
Iteration: 10, Func. Count: 95, Neg. LLF: 160.06962760522566
Iteration: 11, Func. Count: 104, Neg. LLF: 160.0572306250212
Iteration: 12, Func. Count: 113, Neg. LLF: 160.05519740627395
Iteration: 13, Func. Count: 122, Neg. LLF: 160.0549467065687
Iteration: 14, Func. Count: 131, Neg. LLF: 160.05493695237962
Iteration: 15, Func. Count: 140, Neg. LLF: 160.05493473753899
Iteration: 16, Func. Count: 148, Neg. LLF: 160.05493473753026
Optimization terminated successfully (Exit mode 0)
Current function value: 160.05493473753899
Iterations: 16
Function evaluations: 148
Gradient evaluations: 16
Iteration: 1, Func. Count: 7, Neg. LLF: 168.35133173452746
Iteration: 2, Func. Count: 14, Neg. LLF: 163.89889189996947
Iteration: 3, Func. Count: 22, Neg. LLF: 162.75131495729985
Iteration: 4, Func. Count: 29, Neg. LLF: 164.23997010262903
Iteration: 5, Func. Count: 36, Neg. LLF: 162.0833150091985
Iteration: 6, Func. Count: 42, Neg. LLF: 162.07638232052207
Iteration: 7, Func. Count: 48, Neg. LLF: 162.0737449067386
Iteration: 8, Func. Count: 54, Neg. LLF: 162.0718364775304
Iteration: 9, Func. Count: 60, Neg. LLF: 162.0644950952972
Iteration: 10, Func. Count: 66, Neg. LLF: 162.05788155360977
Iteration: 11, Func. Count: 72, Neg. LLF: 162.05359435489802
Iteration: 12, Func. Count: 78, Neg. LLF: 162.0528778375614
Iteration: 13, Func. Count: 84, Neg. LLF: 162.05280042804338
Iteration: 14, Func. Count: 90, Neg. LLF: 162.05279525271334
Iteration: 15, Func. Count: 95, Neg. LLF: 162.0527952527314
Optimization terminated successfully (Exit mode 0)
Current function value: 162.05279525271334
Iterations: 15
Function evaluations: 95
Gradient evaluations: 15
Iteration: 1, Func. Count: 8, Neg. LLF: 1791.8808807441792
Iteration: 2, Func. Count: 17, Neg. LLF: 165.8267232945729
Iteration: 3, Func. Count: 25, Neg. LLF: 160.70370077909726
Iteration: 4, Func. Count: 33, Neg. LLF: 160.5555387904169
Iteration: 5, Func. Count: 41, Neg. LLF: 160.47722577256414
Iteration: 6, Func. Count: 48, Neg. LLF: 160.4644727449888
Iteration: 7, Func. Count: 55, Neg. LLF: 160.46285251352205
Iteration: 8, Func. Count: 62, Neg. LLF: 160.46269291253194
Iteration: 9, Func. Count: 69, Neg. LLF: 160.46268221849337
Iteration: 10, Func. Count: 76, Neg. LLF: 160.4626769864831
Iteration: 11, Func. Count: 83, Neg. LLF: 160.46267533226091
Iteration: 12, Func. Count: 89, Neg. LLF: 160.46267533241712
Optimization terminated successfully (Exit mode 0)
Current function value: 160.46267533226091
Iterations: 12
Function evaluations: 89
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 2901.155809027359
Iteration: 2, Func. Count: 19, Neg. LLF: 167.46648734101407
Iteration: 3, Func. Count: 28, Neg. LLF: 160.98566960458263
Iteration: 4, Func. Count: 37, Neg. LLF: 160.60745653371876
Iteration: 5, Func. Count: 45, Neg. LLF: 160.85663979753366
Iteration: 6, Func. Count: 54, Neg. LLF: 160.41780216488368
Iteration: 7, Func. Count: 62, Neg. LLF: 160.39029669751835
Iteration: 8, Func. Count: 70, Neg. LLF: 160.38485103384852
Iteration: 9, Func. Count: 78, Neg. LLF: 160.3814525969117
Iteration: 10, Func. Count: 86, Neg. LLF: 160.3801743522748
Iteration: 11, Func. Count: 94, Neg. LLF: 160.38006825982387
Iteration: 12, Func. Count: 102, Neg. LLF: 160.3800116553406
Iteration: 13, Func. Count: 110, Neg. LLF: 160.38000499784857
Iteration: 14, Func. Count: 118, Neg. LLF: 160.38000434817974
Optimization terminated successfully (Exit mode 0)
Current function value: 160.38000434817974
Iterations: 14
Function evaluations: 118
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 190.12682850467192
Iteration: 2, Func. Count: 20, Neg. LLF: 160.93657752980593
Iteration: 3, Func. Count: 30, Neg. LLF: 163.82583241847712
Iteration: 4, Func. Count: 40, Neg. LLF: 166.88268172930336
Iteration: 5, Func. Count: 50, Neg. LLF: 159.55313125737007
Iteration: 6, Func. Count: 59, Neg. LLF: 159.47974406171332
Iteration: 7, Func. Count: 68, Neg. LLF: 159.46046304556288
Iteration: 8, Func. Count: 77, Neg. LLF: 159.4123663209702
Iteration: 9, Func. Count: 86, Neg. LLF: 159.3412352418328
Iteration: 10, Func. Count: 95, Neg. LLF: 159.3323854718998
Iteration: 11, Func. Count: 104, Neg. LLF: 159.3210794904942
Iteration: 12, Func. Count: 113, Neg. LLF: 159.31959818721742
Iteration: 13, Func. Count: 122, Neg. LLF: 159.31912737713907
Iteration: 14, Func. Count: 131, Neg. LLF: 159.31910988774567
Iteration: 15, Func. Count: 140, Neg. LLF: 159.31910500787106
Iteration: 16, Func. Count: 148, Neg. LLF: 159.31910495706776
Optimization terminated successfully (Exit mode 0)
Current function value: 159.31910500787106
Iterations: 16
Function evaluations: 148
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 190.03417903925128
Iteration: 2, Func. Count: 22, Neg. LLF: 161.21216235606275
Iteration: 3, Func. Count: 33, Neg. LLF: 159.97568764091145
Iteration: 4, Func. Count: 43, Neg. LLF: 170.26706873911004
Iteration: 5, Func. Count: 54, Neg. LLF: 162.40898102653807
Iteration: 6, Func. Count: 65, Neg. LLF: 159.59410531241844
Iteration: 7, Func. Count: 76, Neg. LLF: 159.40362142133037
Iteration: 8, Func. Count: 86, Neg. LLF: 159.33044504556324
Iteration: 9, Func. Count: 96, Neg. LLF: 159.31242852728332
Iteration: 10, Func. Count: 106, Neg. LLF: 159.30595985900777
Iteration: 11, Func. Count: 116, Neg. LLF: 159.30417194504636
Iteration: 12, Func. Count: 126, Neg. LLF: 159.30385775413546
Iteration: 13, Func. Count: 136, Neg. LLF: 159.30295640041712
Iteration: 14, Func. Count: 146, Neg. LLF: 159.30234832923705
Iteration: 15, Func. Count: 156, Neg. LLF: 159.30218397870112
Iteration: 16, Func. Count: 166, Neg. LLF: 159.30214787612329
Iteration: 17, Func. Count: 176, Neg. LLF: 159.3021457283429
Iteration: 18, Func. Count: 185, Neg. LLF: 159.30214572060623
Optimization terminated successfully (Exit mode 0)
Current function value: 159.3021457283429
Iterations: 18
Function evaluations: 185
Gradient evaluations: 18
Iteration: 1, Func. Count: 8, Neg. LLF: 164.574801626292
Iteration: 2, Func. Count: 16, Neg. LLF: 163.89490795628024
Iteration: 3, Func. Count: 24, Neg. LLF: 162.46780072234486
Iteration: 4, Func. Count: 32, Neg. LLF: 165.42317796038677
Iteration: 5, Func. Count: 40, Neg. LLF: 161.30529460771334
Iteration: 6, Func. Count: 47, Neg. LLF: 161.4843028132202
Iteration: 7, Func. Count: 55, Neg. LLF: 161.27558491397753
Iteration: 8, Func. Count: 63, Neg. LLF: 161.21939273542608
Iteration: 9, Func. Count: 70, Neg. LLF: 161.19245753404226
Iteration: 10, Func. Count: 77, Neg. LLF: 161.17718301972613
Iteration: 11, Func. Count: 84, Neg. LLF: 161.09673304065637
Iteration: 12, Func. Count: 91, Neg. LLF: 161.0063452956343
Iteration: 13, Func. Count: 98, Neg. LLF: 160.9653439616469
Iteration: 14, Func. Count: 105, Neg. LLF: 160.95974098537476
Iteration: 15, Func. Count: 112, Neg. LLF: 160.95928399875757
Iteration: 16, Func. Count: 119, Neg. LLF: 160.95926051976662
Iteration: 17, Func. Count: 126, Neg. LLF: 160.95925586677578
Iteration: 18, Func. Count: 132, Neg. LLF: 160.9592558667811
Optimization terminated successfully (Exit mode 0)
Current function value: 160.95925586677578
Iterations: 18
Function evaluations: 132
Gradient evaluations: 18
Iteration: 1, Func. Count: 9, Neg. LLF: 1027.9853057774542
Iteration: 2, Func. Count: 18, Neg. LLF: 161.2924559510083
Iteration: 3, Func. Count: 27, Neg. LLF: 160.4848460306539
Iteration: 4, Func. Count: 35, Neg. LLF: 175.34058453129725
Iteration: 5, Func. Count: 44, Neg. LLF: 160.48209930096812
Iteration: 6, Func. Count: 53, Neg. LLF: 160.46315891137957
Iteration: 7, Func. Count: 61, Neg. LLF: 160.46272668055244
Iteration: 8, Func. Count: 69, Neg. LLF: 160.46270314891916
Iteration: 9, Func. Count: 77, Neg. LLF: 160.4626791345094
Iteration: 10, Func. Count: 85, Neg. LLF: 160.46267543337981
Iteration: 11, Func. Count: 92, Neg. LLF: 160.46267543338183
Optimization terminated successfully (Exit mode 0)
Current function value: 160.46267543337981
Iterations: 11
Function evaluations: 92
Gradient evaluations: 11
Iteration: 1, Func. Count: 10, Neg. LLF: 191.83618105469913
Iteration: 2, Func. Count: 20, Neg. LLF: 160.8225135278595
Iteration: 3, Func. Count: 30, Neg. LLF: 160.87648215470185
Iteration: 4, Func. Count: 40, Neg. LLF: 162.97433423636195
Iteration: 5, Func. Count: 50, Neg. LLF: 160.5062694422118
Iteration: 6, Func. Count: 59, Neg. LLF: 160.48201942408429
Iteration: 7, Func. Count: 68, Neg. LLF: 160.46226631885756
Iteration: 8, Func. Count: 77, Neg. LLF: 160.44650690939295
Iteration: 9, Func. Count: 86, Neg. LLF: 160.433677619043
Iteration: 10, Func. Count: 95, Neg. LLF: 160.4093435038704
Iteration: 11, Func. Count: 104, Neg. LLF: 160.40135944714137
Iteration: 12, Func. Count: 113, Neg. LLF: 160.38819052905933
Iteration: 13, Func. Count: 122, Neg. LLF: 160.38302696515532
Iteration: 14, Func. Count: 131, Neg. LLF: 160.38030552375523
Iteration: 15, Func. Count: 140, Neg. LLF: 160.38003786430016
Iteration: 16, Func. Count: 149, Neg. LLF: 160.38000729126676
Iteration: 17, Func. Count: 158, Neg. LLF: 160.38000462271958
Iteration: 18, Func. Count: 166, Neg. LLF: 160.38000462279513
Optimization terminated successfully (Exit mode 0)
Current function value: 160.38000462271958
Iterations: 18
Function evaluations: 166
Gradient evaluations: 18
Iteration: 1, Func. Count: 11, Neg. LLF: 190.52168940712139
Iteration: 2, Func. Count: 22, Neg. LLF: 162.33585276393367
Iteration: 3, Func. Count: 33, Neg. LLF: 159.08328750872056
Iteration: 4, Func. Count: 43, Neg. LLF: 373.5863298071981
Iteration: 5, Func. Count: 55, Neg. LLF: 158.29773727874212
Iteration: 6, Func. Count: 65, Neg. LLF: 158.25316295548583
Iteration: 7, Func. Count: 75, Neg. LLF: 158.1216039487081
Iteration: 8, Func. Count: 85, Neg. LLF: 158.0943979309062
Iteration: 9, Func. Count: 95, Neg. LLF: 158.07550647977297
Iteration: 10, Func. Count: 105, Neg. LLF: 158.06133794194494
Iteration: 11, Func. Count: 115, Neg. LLF: 158.0603482959094
Iteration: 12, Func. Count: 125, Neg. LLF: 158.0602896128426
Iteration: 13, Func. Count: 135, Neg. LLF: 158.06029350879322
Iteration: 14, Func. Count: 145, Neg. LLF: 158.06023041025236
Iteration: 15, Func. Count: 165, Neg. LLF: 158.06024174900546
Iteration: 16, Func. Count: 185, Neg. LLF: 158.0602443750294
Iteration: 17, Func. Count: 205, Neg. LLF: 158.06030912255878
Iteration: 18, Func. Count: 216, Neg. LLF: 158.06030004394847
Iteration: 19, Func. Count: 227, Neg. LLF: 158.06029819383107
Iteration: 20, Func. Count: 238, Neg. LLF: 158.06029775910795
Optimization terminated successfully (Exit mode 0)
Current function value: 158.06029482963044
Iterations: 21
Function evaluations: 239
Gradient evaluations: 20
Iteration: 1, Func. Count: 12, Neg. LLF: 192.46801573574183
Iteration: 2, Func. Count: 24, Neg. LLF: 160.83558719859954
Iteration: 3, Func. Count: 36, Neg. LLF: 160.10735038415623
Iteration: 4, Func. Count: 47, Neg. LLF: 160.46574248083002
Iteration: 5, Func. Count: 59, Neg. LLF: 294.6232683373658
Iteration: 6, Func. Count: 71, Neg. LLF: 215.98089369403758
Iteration: 7, Func. Count: 83, Neg. LLF: 159.62189368449168
Iteration: 8, Func. Count: 95, Neg. LLF: 158.98022285377166
Iteration: 9, Func. Count: 106, Neg. LLF: 158.9553706489318
Iteration: 10, Func. Count: 117, Neg. LLF: 158.94647516711333
Iteration: 11, Func. Count: 128, Neg. LLF: 158.94011573212993
Iteration: 12, Func. Count: 139, Neg. LLF: 158.93714699825955
Iteration: 13, Func. Count: 150, Neg. LLF: 158.93124002074248
Iteration: 14, Func. Count: 161, Neg. LLF: 158.92702175477288
Iteration: 15, Func. Count: 172, Neg. LLF: 158.92328635714367
Iteration: 16, Func. Count: 183, Neg. LLF: 158.92204147924764
Iteration: 17, Func. Count: 194, Neg. LLF: 158.92173131250374
Iteration: 18, Func. Count: 205, Neg. LLF: 158.92101785863656
Iteration: 19, Func. Count: 216, Neg. LLF: 158.9207255037197
Iteration: 20, Func. Count: 227, Neg. LLF: 158.92055786734633
Iteration: 21, Func. Count: 238, Neg. LLF: 158.9205484206985
Iteration: 22, Func. Count: 248, Neg. LLF: 158.9205484154558
Optimization terminated successfully (Exit mode 0)
Current function value: 158.9205484206985
Iterations: 22
Function evaluations: 248
Gradient evaluations: 22
Iteration: 1, Func. Count: 9, Neg. LLF: 168.25155435974108
Iteration: 2, Func. Count: 19, Neg. LLF: 163.60916604897724
Iteration: 3, Func. Count: 28, Neg. LLF: 162.8784182138368
Iteration: 4, Func. Count: 37, Neg. LLF: 164.54392876917348
Iteration: 5, Func. Count: 46, Neg. LLF: 161.28565965546036
Iteration: 6, Func. Count: 54, Neg. LLF: 161.39688542617392
Iteration: 7, Func. Count: 63, Neg. LLF: 161.2675303359529
Iteration: 8, Func. Count: 72, Neg. LLF: 161.22310738590974
Iteration: 9, Func. Count: 80, Neg. LLF: 161.1896338639707
Iteration: 10, Func. Count: 88, Neg. LLF: 161.16433636717062
Iteration: 11, Func. Count: 96, Neg. LLF: 161.04772505108156
Iteration: 12, Func. Count: 104, Neg. LLF: 160.99735793555087
Iteration: 13, Func. Count: 112, Neg. LLF: 160.9660932718686
Iteration: 14, Func. Count: 120, Neg. LLF: 160.9606354311815
Iteration: 15, Func. Count: 128, Neg. LLF: 160.95939210982385
Iteration: 16, Func. Count: 136, Neg. LLF: 160.9592705437692
Iteration: 17, Func. Count: 144, Neg. LLF: 160.959257580218
Iteration: 18, Func. Count: 152, Neg. LLF: 160.95925591768767
Iteration: 19, Func. Count: 159, Neg. LLF: 160.95925602775048
Optimization terminated successfully (Exit mode 0)
Current function value: 160.95925591768767
Iterations: 19
Function evaluations: 159
Gradient evaluations: 19
Iteration: 1, Func. Count: 10, Neg. LLF: 935.4898669800958
Iteration: 2, Func. Count: 20, Neg. LLF: 161.3767708729557
Iteration: 3, Func. Count: 30, Neg. LLF: 160.49097267286473
Iteration: 4, Func. Count: 39, Neg. LLF: 175.81196305224452
Iteration: 5, Func. Count: 49, Neg. LLF: 160.4805486110814
Iteration: 6, Func. Count: 59, Neg. LLF: 160.4639921186774
Iteration: 7, Func. Count: 68, Neg. LLF: 160.46271583346257
Iteration: 8, Func. Count: 77, Neg. LLF: 160.46269668721317
Iteration: 9, Func. Count: 86, Neg. LLF: 160.4626784724478
Iteration: 10, Func. Count: 95, Neg. LLF: 160.46267543808423
Iteration: 11, Func. Count: 103, Neg. LLF: 160.46267543800457
Optimization terminated successfully (Exit mode 0)
Current function value: 160.46267543808423
Iterations: 11
Function evaluations: 103
Gradient evaluations: 11
Iteration: 1, Func. Count: 11, Neg. LLF: 192.0574060342696
Iteration: 2, Func. Count: 22, Neg. LLF: 160.84207686270318
Iteration: 3, Func. Count: 32, Neg. LLF: 160.77939543896608
Iteration: 4, Func. Count: 43, Neg. LLF: 161.0076679665393
Iteration: 5, Func. Count: 55, Neg. LLF: 160.50241672553733
Iteration: 6, Func. Count: 65, Neg. LLF: 161.06425297387685
Iteration: 7, Func. Count: 76, Neg. LLF: 160.481268797216
Iteration: 8, Func. Count: 86, Neg. LLF: 160.45193222146875
Iteration: 9, Func. Count: 96, Neg. LLF: 160.4128139582933
Iteration: 10, Func. Count: 106, Neg. LLF: 160.3957509557223
Iteration: 11, Func. Count: 116, Neg. LLF: 160.38667556955727
Iteration: 12, Func. Count: 126, Neg. LLF: 160.38125512174676
Iteration: 13, Func. Count: 136, Neg. LLF: 160.38005990859577
Iteration: 14, Func. Count: 146, Neg. LLF: 160.38000985180082
Iteration: 15, Func. Count: 156, Neg. LLF: 160.38000428091408
Iteration: 16, Func. Count: 165, Neg. LLF: 160.3800042808929
Optimization terminated successfully (Exit mode 0)
Current function value: 160.38000428091408
Iterations: 16
Function evaluations: 165
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 190.47604339804138
Iteration: 2, Func. Count: 24, Neg. LLF: 165.1820234304251
Iteration: 3, Func. Count: 36, Neg. LLF: 159.6982238985501
Iteration: 4, Func. Count: 47, Neg. LLF: 183.39785023707753
Iteration: 5, Func. Count: 59, Neg. LLF: 158.68177646282922
Iteration: 6, Func. Count: 70, Neg. LLF: 158.39177960342968
Iteration: 7, Func. Count: 81, Neg. LLF: 158.23112936463485
Iteration: 8, Func. Count: 92, Neg. LLF: 158.18207536510982
Iteration: 9, Func. Count: 103, Neg. LLF: 158.1455122789303
Iteration: 10, Func. Count: 114, Neg. LLF: 158.1083069745235
Iteration: 11, Func. Count: 125, Neg. LLF: 158.07295331440122
Iteration: 12, Func. Count: 136, Neg. LLF: 158.0608423956474
Iteration: 13, Func. Count: 147, Neg. LLF: 158.06043263932273
Iteration: 14, Func. Count: 158, Neg. LLF: 158.06029215062915
Iteration: 15, Func. Count: 169, Neg. LLF: 158.06031254364265
Iteration: 16, Func. Count: 182, Neg. LLF: 158.06029806169155
Iteration: 17, Func. Count: 194, Neg. LLF: 158.0602974790541
Iteration: 18, Func. Count: 204, Neg. LLF: 158.06029744008086
Optimization terminated successfully (Exit mode 0)
Current function value: 158.0602974790541
Iterations: 19
Function evaluations: 204
Gradient evaluations: 18
Iteration: 1, Func. Count: 13, Neg. LLF: 194.77317915779622
Iteration: 2, Func. Count: 26, Neg. LLF: 163.78285698886742
Iteration: 3, Func. Count: 39, Neg. LLF: 160.30151211738692
Iteration: 4, Func. Count: 51, Neg. LLF: 163.07596223512013
Iteration: 5, Func. Count: 64, Neg. LLF: 169.9143562822957
Iteration: 6, Func. Count: 77, Neg. LLF: 159.22494094333186
Iteration: 7, Func. Count: 90, Neg. LLF: 175.5954225741328
Iteration: 8, Func. Count: 103, Neg. LLF: 158.95611880137093
Iteration: 9, Func. Count: 115, Neg. LLF: 158.93023225420936
Iteration: 10, Func. Count: 127, Neg. LLF: 158.92589410088488
Iteration: 11, Func. Count: 139, Neg. LLF: 158.924604425538
Iteration: 12, Func. Count: 151, Neg. LLF: 158.92335414062188
Iteration: 13, Func. Count: 163, Neg. LLF: 158.92239566679933
Iteration: 14, Func. Count: 175, Neg. LLF: 158.9208966677035
Iteration: 15, Func. Count: 187, Neg. LLF: 158.92057769724914
Iteration: 16, Func. Count: 199, Neg. LLF: 158.92054931119034
Iteration: 17, Func. Count: 211, Neg. LLF: 158.92054808342604
Iteration: 18, Func. Count: 222, Neg. LLF: 158.92054807832508
Optimization terminated successfully (Exit mode 0)
Current function value: 158.92054808342604
Iterations: 18
Function evaluations: 222
Gradient evaluations: 18
Iteration: 1, Func. Count: 6, Neg. LLF: 164.13793555899673
Iteration: 2, Func. Count: 12, Neg. LLF: 162.98620823387708
Iteration: 3, Func. Count: 17, Neg. LLF: 162.99460609294493
Iteration: 4, Func. Count: 23, Neg. LLF: 162.94093385781477
Iteration: 5, Func. Count: 28, Neg. LLF: 162.9221470580333
Iteration: 6, Func. Count: 33, Neg. LLF: 162.85849514391802
Iteration: 7, Func. Count: 38, Neg. LLF: 162.8249988674411
Iteration: 8, Func. Count: 43, Neg. LLF: 162.81428768492708
Iteration: 9, Func. Count: 48, Neg. LLF: 162.81369250763257
Iteration: 10, Func. Count: 53, Neg. LLF: 162.8136752863813
Iteration: 11, Func. Count: 58, Neg. LLF: 162.8136743820558
Optimization terminated successfully (Exit mode 0)
Current function value: 162.8136743820558
Iterations: 11
Function evaluations: 58
Gradient evaluations: 11
Iteration: 1, Func. Count: 7, Neg. LLF: 179.44825686949073
Iteration: 2, Func. Count: 14, Neg. LLF: 235.79722014475865
Iteration: 3, Func. Count: 21, Neg. LLF: 171.44884546935916
Iteration: 4, Func. Count: 28, Neg. LLF: 162.92457279135547
Iteration: 5, Func. Count: 34, Neg. LLF: 162.92121072655814
Iteration: 6, Func. Count: 40, Neg. LLF: 162.92077303266345
Iteration: 7, Func. Count: 46, Neg. LLF: 162.92009793620525
Iteration: 8, Func. Count: 52, Neg. LLF: 162.91811577415424
Iteration: 9, Func. Count: 58, Neg. LLF: 162.91703767732247
Iteration: 10, Func. Count: 64, Neg. LLF: 162.9166122941866
Iteration: 11, Func. Count: 70, Neg. LLF: 162.91657399273967
Iteration: 12, Func. Count: 75, Neg. LLF: 162.91657399273612
Optimization terminated successfully (Exit mode 0)
Current function value: 162.91657399273967
Iterations: 12
Function evaluations: 75
Gradient evaluations: 12
Iteration: 1, Func. Count: 8, Neg. LLF: 185.67303277202936
Iteration: 2, Func. Count: 17, Neg. LLF: 166.03017442560508
Iteration: 3, Func. Count: 25, Neg. LLF: 175.79023133403106
Iteration: 4, Func. Count: 33, Neg. LLF: 162.8956423448044
Iteration: 5, Func. Count: 40, Neg. LLF: 163.03666835120012
Iteration: 6, Func. Count: 48, Neg. LLF: 162.8728921212573
Iteration: 7, Func. Count: 55, Neg. LLF: 162.8600933442031
Iteration: 8, Func. Count: 62, Neg. LLF: 162.85770331072604
Iteration: 9, Func. Count: 69, Neg. LLF: 162.85726995384084
Iteration: 10, Func. Count: 76, Neg. LLF: 162.85722497847777
Iteration: 11, Func. Count: 83, Neg. LLF: 162.85721292614488
Iteration: 12, Func. Count: 90, Neg. LLF: 162.85717110325038
Iteration: 13, Func. Count: 97, Neg. LLF: 162.85709782703196
Iteration: 14, Func. Count: 104, Neg. LLF: 162.8570258241869
Iteration: 15, Func. Count: 111, Neg. LLF: 162.85699590150023
Iteration: 16, Func. Count: 118, Neg. LLF: 162.8569916218927
Iteration: 17, Func. Count: 124, Neg. LLF: 162.85699162196656
Optimization terminated successfully (Exit mode 0)
Current function value: 162.8569916218927
Iterations: 17
Function evaluations: 124
Gradient evaluations: 17
Iteration: 1, Func. Count: 9, Neg. LLF: 344.27693364578874
Iteration: 2, Func. Count: 19, Neg. LLF: 191.83117545469133
Iteration: 3, Func. Count: 28, Neg. LLF: 165.43463789783885
Iteration: 4, Func. Count: 37, Neg. LLF: 162.78496434009793
Iteration: 5, Func. Count: 45, Neg. LLF: 162.6977635786589
Iteration: 6, Func. Count: 53, Neg. LLF: 162.69026030605414
Iteration: 7, Func. Count: 61, Neg. LLF: 162.6898736646317
Iteration: 8, Func. Count: 69, Neg. LLF: 162.6897859535282
Iteration: 9, Func. Count: 77, Neg. LLF: 162.68977497604607
Iteration: 10, Func. Count: 84, Neg. LLF: 162.68977497604297
Optimization terminated successfully (Exit mode 0)
Current function value: 162.68977497604607
Iterations: 10
Function evaluations: 84
Gradient evaluations: 10
Iteration: 1, Func. Count: 10, Neg. LLF: 165.03452599517746
Iteration: 2, Func. Count: 21, Neg. LLF: 168.07989789720955
Iteration: 3, Func. Count: 31, Neg. LLF: 172.91829626676787
Iteration: 4, Func. Count: 41, Neg. LLF: 161.8949843175231
Iteration: 5, Func. Count: 50, Neg. LLF: 161.75810439023553
Iteration: 6, Func. Count: 59, Neg. LLF: 161.67912759429566
Iteration: 7, Func. Count: 68, Neg. LLF: 161.66358646189667
Iteration: 8, Func. Count: 77, Neg. LLF: 161.65503765531335
Iteration: 9, Func. Count: 86, Neg. LLF: 161.62799009836482
Iteration: 10, Func. Count: 95, Neg. LLF: 161.5646199498434
Iteration: 11, Func. Count: 104, Neg. LLF: 161.47532690086612
Iteration: 12, Func. Count: 113, Neg. LLF: 161.4287865810871
Iteration: 13, Func. Count: 122, Neg. LLF: 161.6363587313923
Iteration: 14, Func. Count: 132, Neg. LLF: 161.40674519535045
Iteration: 15, Func. Count: 141, Neg. LLF: 161.39784646298813
Iteration: 16, Func. Count: 150, Neg. LLF: 161.39764946251756
Iteration: 17, Func. Count: 159, Neg. LLF: 161.39764019514843
Iteration: 18, Func. Count: 167, Neg. LLF: 161.39764019509585
Optimization terminated successfully (Exit mode 0)
Current function value: 161.39764019514843
Iterations: 18
Function evaluations: 167
Gradient evaluations: 18
Iteration: 1, Func. Count: 7, Neg. LLF: 163.81500637031112
Iteration: 2, Func. Count: 14, Neg. LLF: 165.08299457280242
Iteration: 3, Func. Count: 22, Neg. LLF: 163.58677494741696
Iteration: 4, Func. Count: 29, Neg. LLF: 162.16317946298958
Iteration: 5, Func. Count: 35, Neg. LLF: 162.19345631043691
Iteration: 6, Func. Count: 42, Neg. LLF: 162.16061458938165
Iteration: 7, Func. Count: 48, Neg. LLF: 162.1604707020334
Iteration: 8, Func. Count: 54, Neg. LLF: 162.15971549816467
Iteration: 9, Func. Count: 60, Neg. LLF: 162.1577907948931
Iteration: 10, Func. Count: 66, Neg. LLF: 162.1576563195239
Iteration: 11, Func. Count: 72, Neg. LLF: 162.15765019939735
Iteration: 12, Func. Count: 77, Neg. LLF: 162.15765019940147
Optimization terminated successfully (Exit mode 0)
Current function value: 162.15765019939735
Iterations: 12
Function evaluations: 77
Gradient evaluations: 12
Iteration: 1, Func. Count: 8, Neg. LLF: 2906.459476470977
Iteration: 2, Func. Count: 17, Neg. LLF: 163.9842334428837
Iteration: 3, Func. Count: 25, Neg. LLF: 160.6438015016902
Iteration: 4, Func. Count: 33, Neg. LLF: 160.48781362965246
Iteration: 5, Func. Count: 40, Neg. LLF: 160.46665762364196
Iteration: 6, Func. Count: 47, Neg. LLF: 160.46433037707897
Iteration: 7, Func. Count: 54, Neg. LLF: 160.4631926137345
Iteration: 8, Func. Count: 61, Neg. LLF: 160.46309267163116
Iteration: 9, Func. Count: 68, Neg. LLF: 160.46308270608287
Iteration: 10, Func. Count: 75, Neg. LLF: 160.4630820778131
Optimization terminated successfully (Exit mode 0)
Current function value: 160.4630820778131
Iterations: 10
Function evaluations: 75
Gradient evaluations: 10
Iteration: 1, Func. Count: 9, Neg. LLF: 2721.1416905920855
Iteration: 2, Func. Count: 19, Neg. LLF: 166.86444623700172
Iteration: 3, Func. Count: 28, Neg. LLF: 160.8719208876285
Iteration: 4, Func. Count: 36, Neg. LLF: 160.52133003508584
Iteration: 5, Func. Count: 44, Neg. LLF: 160.49010510092154
Iteration: 6, Func. Count: 52, Neg. LLF: 160.46463975679885
Iteration: 7, Func. Count: 60, Neg. LLF: 160.46365019819186
Iteration: 8, Func. Count: 68, Neg. LLF: 160.46316113084947
Iteration: 9, Func. Count: 76, Neg. LLF: 160.46309138309942
Iteration: 10, Func. Count: 84, Neg. LLF: 160.46308208461065
Iteration: 11, Func. Count: 91, Neg. LLF: 160.46308208520887
Optimization terminated successfully (Exit mode 0)
Current function value: 160.46308208461065
Iterations: 11
Function evaluations: 91
Gradient evaluations: 11
Iteration: 1, Func. Count: 10, Neg. LLF: 237.04552441938046
Iteration: 2, Func. Count: 20, Neg. LLF: 160.9771731042732
Iteration: 3, Func. Count: 29, Neg. LLF: 162.44404656980714
Iteration: 4, Func. Count: 39, Neg. LLF: 169.51377673914553
Iteration: 5, Func. Count: 49, Neg. LLF: 160.7049958971708
Iteration: 6, Func. Count: 58, Neg. LLF: 160.6247013524475
Iteration: 7, Func. Count: 67, Neg. LLF: 160.57301652463065
Iteration: 8, Func. Count: 76, Neg. LLF: 160.4803578106205
Iteration: 9, Func. Count: 85, Neg. LLF: 160.44027916292666
Iteration: 10, Func. Count: 94, Neg. LLF: 160.4247948398669
Iteration: 11, Func. Count: 103, Neg. LLF: 160.42353390756494
Iteration: 12, Func. Count: 112, Neg. LLF: 160.42339578335464
Iteration: 13, Func. Count: 121, Neg. LLF: 160.42335004895423
Iteration: 14, Func. Count: 130, Neg. LLF: 160.42334819273665
Iteration: 15, Func. Count: 138, Neg. LLF: 160.42334819271102
Optimization terminated successfully (Exit mode 0)
Current function value: 160.42334819273665
Iterations: 15
Function evaluations: 138
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 235.9824564705554
Iteration: 2, Func. Count: 22, Neg. LLF: 161.8378983518972
Iteration: 3, Func. Count: 33, Neg. LLF: 160.46476385784874
Iteration: 4, Func. Count: 43, Neg. LLF: 162.4618371589077
Iteration: 5, Func. Count: 54, Neg. LLF: 163.0110978625813
Iteration: 6, Func. Count: 65, Neg. LLF: 160.2537232658111
Iteration: 7, Func. Count: 75, Neg. LLF: 160.2227450285759
Iteration: 8, Func. Count: 85, Neg. LLF: 160.20075127513587
Iteration: 9, Func. Count: 95, Neg. LLF: 160.14330532599553
Iteration: 10, Func. Count: 105, Neg. LLF: 160.0768832320651
Iteration: 11, Func. Count: 115, Neg. LLF: 160.05875420533903
Iteration: 12, Func. Count: 125, Neg. LLF: 160.05519334579105
Iteration: 13, Func. Count: 135, Neg. LLF: 160.05500879526997
Iteration: 14, Func. Count: 145, Neg. LLF: 160.05493572040996
Iteration: 15, Func. Count: 155, Neg. LLF: 160.05493477181935
Optimization terminated successfully (Exit mode 0)
Current function value: 160.05493477181935
Iterations: 15
Function evaluations: 155
Gradient evaluations: 15
Iteration: 1, Func. Count: 8, Neg. LLF: 168.15890606648802
Iteration: 2, Func. Count: 16, Neg. LLF: 163.67278985773916
Iteration: 3, Func. Count: 25, Neg. LLF: 164.09455128665883
Iteration: 4, Func. Count: 34, Neg. LLF: 165.83167375712952
Iteration: 5, Func. Count: 42, Neg. LLF: 162.17369391898436
Iteration: 6, Func. Count: 51, Neg. LLF: 161.94153610941171
Iteration: 7, Func. Count: 58, Neg. LLF: 161.93984627213405
Iteration: 8, Func. Count: 65, Neg. LLF: 161.9397364086518
Iteration: 9, Func. Count: 72, Neg. LLF: 161.9396285426056
Iteration: 10, Func. Count: 79, Neg. LLF: 161.939358587976
Iteration: 11, Func. Count: 86, Neg. LLF: 161.93897797848422
Iteration: 12, Func. Count: 93, Neg. LLF: 161.93862991960785
Iteration: 13, Func. Count: 100, Neg. LLF: 161.93849825291423
Iteration: 14, Func. Count: 107, Neg. LLF: 161.93848086031863
Iteration: 15, Func. Count: 114, Neg. LLF: 161.93847979170422
Iteration: 16, Func. Count: 120, Neg. LLF: 161.9384797917154
Optimization terminated successfully (Exit mode 0)
Current function value: 161.93847979170422
Iterations: 16
Function evaluations: 120
Gradient evaluations: 16
Iteration: 1, Func. Count: 9, Neg. LLF: 1602.4655225772517
Iteration: 2, Func. Count: 19, Neg. LLF: 165.81176494934107
Iteration: 3, Func. Count: 28, Neg. LLF: 160.71269561312897
Iteration: 4, Func. Count: 37, Neg. LLF: 160.56939262778639
Iteration: 5, Func. Count: 46, Neg. LLF: 160.48008294512613
Iteration: 6, Func. Count: 54, Neg. LLF: 160.46482652135526
Iteration: 7, Func. Count: 62, Neg. LLF: 160.46292301219685
Iteration: 8, Func. Count: 70, Neg. LLF: 160.46269579118757
Iteration: 9, Func. Count: 78, Neg. LLF: 160.46268242823078
Iteration: 10, Func. Count: 86, Neg. LLF: 160.46267744620263
Iteration: 11, Func. Count: 94, Neg. LLF: 160.4626753682435
Iteration: 12, Func. Count: 101, Neg. LLF: 160.4626753683976
Optimization terminated successfully (Exit mode 0)
Current function value: 160.4626753682435
Iterations: 12
Function evaluations: 101
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 3122.5161042083478
Iteration: 2, Func. Count: 21, Neg. LLF: 169.363951247785
Iteration: 3, Func. Count: 31, Neg. LLF: 161.3695012609286
Iteration: 4, Func. Count: 41, Neg. LLF: 160.6137909029966
Iteration: 5, Func. Count: 50, Neg. LLF: 160.9703198766886
Iteration: 6, Func. Count: 60, Neg. LLF: 160.4161936040819
Iteration: 7, Func. Count: 69, Neg. LLF: 160.39051607815827
Iteration: 8, Func. Count: 78, Neg. LLF: 160.38360325376036
Iteration: 9, Func. Count: 87, Neg. LLF: 160.38114402116975
Iteration: 10, Func. Count: 96, Neg. LLF: 160.38037006530442
Iteration: 11, Func. Count: 105, Neg. LLF: 160.38013869295736
Iteration: 12, Func. Count: 114, Neg. LLF: 160.38007229178757
Iteration: 13, Func. Count: 123, Neg. LLF: 160.38001128516677
Iteration: 14, Func. Count: 132, Neg. LLF: 160.38000543770576
Iteration: 15, Func. Count: 141, Neg. LLF: 160.38000440427732
Iteration: 16, Func. Count: 149, Neg. LLF: 160.38000440420734
Optimization terminated successfully (Exit mode 0)
Current function value: 160.38000440427732
Iterations: 16
Function evaluations: 149
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 190.36007211466813
Iteration: 2, Func. Count: 22, Neg. LLF: 160.96692148453698
Iteration: 3, Func. Count: 33, Neg. LLF: 160.53093259572051
Iteration: 4, Func. Count: 44, Neg. LLF: 162.52592979995234
Iteration: 5, Func. Count: 55, Neg. LLF: 161.2214062272122
Iteration: 6, Func. Count: 66, Neg. LLF: 159.48453724739917
Iteration: 7, Func. Count: 76, Neg. LLF: 159.44599914450694
Iteration: 8, Func. Count: 86, Neg. LLF: 159.4218698607994
Iteration: 9, Func. Count: 96, Neg. LLF: 159.36046496179003
Iteration: 10, Func. Count: 106, Neg. LLF: 159.33130885882346
Iteration: 11, Func. Count: 116, Neg. LLF: 159.32177761288438
Iteration: 12, Func. Count: 126, Neg. LLF: 159.3195818324363
Iteration: 13, Func. Count: 136, Neg. LLF: 159.3191454415924
Iteration: 14, Func. Count: 146, Neg. LLF: 159.31910635010365
Iteration: 15, Func. Count: 156, Neg. LLF: 159.31910500091908
Iteration: 16, Func. Count: 165, Neg. LLF: 159.3191049501761
Optimization terminated successfully (Exit mode 0)
Current function value: 159.31910500091908
Iterations: 16
Function evaluations: 165
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 189.38863674966697
Iteration: 2, Func. Count: 24, Neg. LLF: 161.47958938824365
Iteration: 3, Func. Count: 36, Neg. LLF: 165.62118841392436
Iteration: 4, Func. Count: 48, Neg. LLF: 170.87686678805676
Iteration: 5, Func. Count: 60, Neg. LLF: 160.7959017679227
Iteration: 6, Func. Count: 72, Neg. LLF: 159.272818456687
Iteration: 7, Func. Count: 83, Neg. LLF: 159.44157520139325
Iteration: 8, Func. Count: 95, Neg. LLF: 159.38992383091426
Iteration: 9, Func. Count: 107, Neg. LLF: 159.11800689385814
Iteration: 10, Func. Count: 119, Neg. LLF: 159.03171389627096
Iteration: 11, Func. Count: 130, Neg. LLF: 159.0395386222839
Iteration: 12, Func. Count: 142, Neg. LLF: 159.02859365541823
Iteration: 13, Func. Count: 153, Neg. LLF: 159.02503816565428
Iteration: 14, Func. Count: 164, Neg. LLF: 159.02233854544272
Iteration: 15, Func. Count: 175, Neg. LLF: 159.02030667125962
Iteration: 16, Func. Count: 186, Neg. LLF: 159.0199683594994
Iteration: 17, Func. Count: 197, Neg. LLF: 159.01995356415432
Iteration: 18, Func. Count: 207, Neg. LLF: 159.01995354198144
Optimization terminated successfully (Exit mode 0)
Current function value: 159.01995356415432
Iterations: 18
Function evaluations: 207
Gradient evaluations: 18
Iteration: 1, Func. Count: 9, Neg. LLF: 165.747765412225
Iteration: 2, Func. Count: 18, Neg. LLF: 163.78203655175307
Iteration: 3, Func. Count: 27, Neg. LLF: 163.69039762385
Iteration: 4, Func. Count: 37, Neg. LLF: 162.94141140784748
Iteration: 5, Func. Count: 46, Neg. LLF: 161.71533950251768
Iteration: 6, Func. Count: 55, Neg. LLF: 161.46042201108534
Iteration: 7, Func. Count: 64, Neg. LLF: 161.3061680334715
Iteration: 8, Func. Count: 73, Neg. LLF: 161.22793916329806
Iteration: 9, Func. Count: 81, Neg. LLF: 161.40359262152356
Iteration: 10, Func. Count: 90, Neg. LLF: 161.19835738143274
Iteration: 11, Func. Count: 98, Neg. LLF: 161.0997091138008
Iteration: 12, Func. Count: 106, Neg. LLF: 161.004141282763
Iteration: 13, Func. Count: 114, Neg. LLF: 160.9783520903115
Iteration: 14, Func. Count: 122, Neg. LLF: 160.95232489714124
Iteration: 15, Func. Count: 130, Neg. LLF: 160.94075498535818
Iteration: 16, Func. Count: 138, Neg. LLF: 160.93936747180106
Iteration: 17, Func. Count: 146, Neg. LLF: 160.9392833491686
Iteration: 18, Func. Count: 154, Neg. LLF: 160.93927947231757
Iteration: 19, Func. Count: 161, Neg. LLF: 160.93927947230137
Optimization terminated successfully (Exit mode 0)
Current function value: 160.93927947231757
Iterations: 19
Function evaluations: 161
Gradient evaluations: 19
Iteration: 1, Func. Count: 10, Neg. LLF: 1034.0927545066734
Iteration: 2, Func. Count: 20, Neg. LLF: 161.29463796737988
Iteration: 3, Func. Count: 30, Neg. LLF: 160.4847688162145
Iteration: 4, Func. Count: 39, Neg. LLF: 175.21146483562188
Iteration: 5, Func. Count: 49, Neg. LLF: 160.4809368321433
Iteration: 6, Func. Count: 59, Neg. LLF: 160.46323203914835
Iteration: 7, Func. Count: 68, Neg. LLF: 160.46273040184752
Iteration: 8, Func. Count: 77, Neg. LLF: 160.46270502539272
Iteration: 9, Func. Count: 86, Neg. LLF: 160.4626793138742
Iteration: 10, Func. Count: 95, Neg. LLF: 160.46267544754411
Iteration: 11, Func. Count: 103, Neg. LLF: 160.4626754475378
Optimization terminated successfully (Exit mode 0)
Current function value: 160.46267544754411
Iterations: 11
Function evaluations: 103
Gradient evaluations: 11
Iteration: 1, Func. Count: 11, Neg. LLF: 192.62650419652024
Iteration: 2, Func. Count: 22, Neg. LLF: 160.8941289158469
Iteration: 3, Func. Count: 33, Neg. LLF: 161.78755067603925
Iteration: 4, Func. Count: 44, Neg. LLF: 165.4613669379749
Iteration: 5, Func. Count: 55, Neg. LLF: 160.4938043435365
Iteration: 6, Func. Count: 65, Neg. LLF: 160.49337193246495
Iteration: 7, Func. Count: 76, Neg. LLF: 160.47328376152478
Iteration: 8, Func. Count: 86, Neg. LLF: 160.47544699750168
Iteration: 9, Func. Count: 97, Neg. LLF: 160.46697279918567
Iteration: 10, Func. Count: 107, Neg. LLF: 160.4626206884806
Iteration: 11, Func. Count: 117, Neg. LLF: 160.437327719389
Iteration: 12, Func. Count: 127, Neg. LLF: 160.42760407727658
Iteration: 13, Func. Count: 137, Neg. LLF: 160.39656364186865
Iteration: 14, Func. Count: 147, Neg. LLF: 160.38648534461697
Iteration: 15, Func. Count: 157, Neg. LLF: 160.38293993158263
Iteration: 16, Func. Count: 167, Neg. LLF: 160.3806917491894
Iteration: 17, Func. Count: 177, Neg. LLF: 160.38026249787325
Iteration: 18, Func. Count: 187, Neg. LLF: 160.38002936875787
Iteration: 19, Func. Count: 197, Neg. LLF: 160.38000644288036
Iteration: 20, Func. Count: 207, Neg. LLF: 160.38000455290737
Iteration: 21, Func. Count: 216, Neg. LLF: 160.38000455296822
Optimization terminated successfully (Exit mode 0)
Current function value: 160.38000455290737
Iterations: 21
Function evaluations: 216
Gradient evaluations: 21
Iteration: 1, Func. Count: 12, Neg. LLF: 190.2597960980923
Iteration: 2, Func. Count: 24, Neg. LLF: 161.60262965725485
Iteration: 3, Func. Count: 36, Neg. LLF: 159.4821454189077
Iteration: 4, Func. Count: 47, Neg. LLF: 158.88676970031457
Iteration: 5, Func. Count: 58, Neg. LLF: 158.47270358506972
Iteration: 6, Func. Count: 69, Neg. LLF: 158.66183056596637
Iteration: 7, Func. Count: 81, Neg. LLF: 175.6277083891595
Iteration: 8, Func. Count: 93, Neg. LLF: 158.15542304446794
Iteration: 9, Func. Count: 104, Neg. LLF: 158.12131769220494
Iteration: 10, Func. Count: 115, Neg. LLF: 158.10013617927177
Iteration: 11, Func. Count: 126, Neg. LLF: 158.07322893927213
Iteration: 12, Func. Count: 137, Neg. LLF: 158.06344998026273
Iteration: 13, Func. Count: 148, Neg. LLF: 158.06032097225986
Iteration: 14, Func. Count: 159, Neg. LLF: 158.0602990384885
Iteration: 15, Func. Count: 170, Neg. LLF: 158.06029733282594
Iteration: 16, Func. Count: 180, Neg. LLF: 158.06029729385716
Optimization terminated successfully (Exit mode 0)
Current function value: 158.06029733282594
Iterations: 16
Function evaluations: 180
Gradient evaluations: 16
Iteration: 1, Func. Count: 13, Neg. LLF: 189.5842763977928
Iteration: 2, Func. Count: 26, Neg. LLF: 159.70244768511392
Iteration: 3, Func. Count: 38, Neg. LLF: 192.90707936419264
Iteration: 4, Func. Count: 51, Neg. LLF: 177.65458670905014
Iteration: 5, Func. Count: 64, Neg. LLF: 193.8044001357721
Iteration: 6, Func. Count: 77, Neg. LLF: 159.80135106324008
Iteration: 7, Func. Count: 90, Neg. LLF: 159.87218064380548
Iteration: 8, Func. Count: 103, Neg. LLF: 158.58822798166773
Iteration: 9, Func. Count: 115, Neg. LLF: 158.58073308812334
Iteration: 10, Func. Count: 127, Neg. LLF: 158.56053511120533
Iteration: 11, Func. Count: 139, Neg. LLF: 158.55953832067402
Iteration: 12, Func. Count: 151, Neg. LLF: 158.55919209048568
Iteration: 13, Func. Count: 163, Neg. LLF: 158.55915124389043
Iteration: 14, Func. Count: 175, Neg. LLF: 158.55912669086834
Iteration: 15, Func. Count: 187, Neg. LLF: 158.559024528836
Iteration: 16, Func. Count: 199, Neg. LLF: 158.55895933186665
Iteration: 17, Func. Count: 210, Neg. LLF: 158.55895930780056
Optimization terminated successfully (Exit mode 0)
Current function value: 158.55895933186665
Iterations: 17
Function evaluations: 210
Gradient evaluations: 17
Iteration: 1, Func. Count: 10, Neg. LLF: 163.48783764010705
Iteration: 2, Func. Count: 20, Neg. LLF: 163.82761462069323
Iteration: 3, Func. Count: 30, Neg. LLF: 162.95089531951305
Iteration: 4, Func. Count: 40, Neg. LLF: 161.48716568351227
Iteration: 5, Func. Count: 50, Neg. LLF: 162.0587769488207
Iteration: 6, Func. Count: 60, Neg. LLF: 161.27421118878368
Iteration: 7, Func. Count: 69, Neg. LLF: 161.36472026962642
Iteration: 8, Func. Count: 79, Neg. LLF: 161.62831373615907
Iteration: 9, Func. Count: 89, Neg. LLF: 161.29625818114542
Iteration: 10, Func. Count: 99, Neg. LLF: 161.20730490323157
Iteration: 11, Func. Count: 108, Neg. LLF: 161.17316414953498
Iteration: 12, Func. Count: 117, Neg. LLF: 161.06598515851084
Iteration: 13, Func. Count: 126, Neg. LLF: 160.98266598872482
Iteration: 14, Func. Count: 135, Neg. LLF: 160.95345551817005
Iteration: 15, Func. Count: 144, Neg. LLF: 160.93981574193762
Iteration: 16, Func. Count: 153, Neg. LLF: 160.93935656085355
Iteration: 17, Func. Count: 162, Neg. LLF: 160.93930672971072
Iteration: 18, Func. Count: 171, Neg. LLF: 160.93928304044744
Iteration: 19, Func. Count: 180, Neg. LLF: 160.93927932453335
Iteration: 20, Func. Count: 188, Neg. LLF: 160.9392794320537
Optimization terminated successfully (Exit mode 0)
Current function value: 160.93927932453335
Iterations: 20
Function evaluations: 188
Gradient evaluations: 20
Iteration: 1, Func. Count: 11, Neg. LLF: 935.9562237380368
Iteration: 2, Func. Count: 22, Neg. LLF: 161.379163518573
Iteration: 3, Func. Count: 33, Neg. LLF: 160.49157034792145
Iteration: 4, Func. Count: 43, Neg. LLF: 175.8645050117052
Iteration: 5, Func. Count: 54, Neg. LLF: 160.4808678988049
Iteration: 6, Func. Count: 65, Neg. LLF: 160.46418117089684
Iteration: 7, Func. Count: 75, Neg. LLF: 160.46272209326258
Iteration: 8, Func. Count: 85, Neg. LLF: 160.4627002632644
Iteration: 9, Func. Count: 95, Neg. LLF: 160.46267810472568
Iteration: 10, Func. Count: 105, Neg. LLF: 160.46267536369524
Iteration: 11, Func. Count: 114, Neg. LLF: 160.46267536356675
Optimization terminated successfully (Exit mode 0)
Current function value: 160.46267536369524
Iterations: 11
Function evaluations: 114
Gradient evaluations: 11
Iteration: 1, Func. Count: 12, Neg. LLF: 193.46695826501806
Iteration: 2, Func. Count: 24, Neg. LLF: 160.9262123848249
Iteration: 3, Func. Count: 36, Neg. LLF: 161.74166551792467
Iteration: 4, Func. Count: 48, Neg. LLF: 164.67538869398686
Iteration: 5, Func. Count: 60, Neg. LLF: 160.5077020546558
Iteration: 6, Func. Count: 71, Neg. LLF: 160.49519335519008
Iteration: 7, Func. Count: 82, Neg. LLF: 160.47418997795018
Iteration: 8, Func. Count: 93, Neg. LLF: 160.4709799582552
Iteration: 9, Func. Count: 104, Neg. LLF: 160.46718595773677
Iteration: 10, Func. Count: 115, Neg. LLF: 160.46350748106636
Iteration: 11, Func. Count: 126, Neg. LLF: 160.4514047453481
Iteration: 12, Func. Count: 137, Neg. LLF: 160.4409021196099
Iteration: 13, Func. Count: 148, Neg. LLF: 160.41593173872738
Iteration: 14, Func. Count: 159, Neg. LLF: 160.393174987448
Iteration: 15, Func. Count: 170, Neg. LLF: 160.39255136953474
Iteration: 16, Func. Count: 182, Neg. LLF: 160.38062443083598
Iteration: 17, Func. Count: 193, Neg. LLF: 160.3800944013942
Iteration: 18, Func. Count: 204, Neg. LLF: 160.38001243584955
Iteration: 19, Func. Count: 215, Neg. LLF: 160.3800056295878
Iteration: 20, Func. Count: 226, Neg. LLF: 160.3800042757839
Iteration: 21, Func. Count: 236, Neg. LLF: 160.38000427576523
Optimization terminated successfully (Exit mode 0)
Current function value: 160.3800042757839
Iterations: 21
Function evaluations: 236
Gradient evaluations: 21
Iteration: 1, Func. Count: 13, Neg. LLF: 189.94122814563053
Iteration: 2, Func. Count: 26, Neg. LLF: 162.10115118143045
Iteration: 3, Func. Count: 39, Neg. LLF: 159.5924166590212
Iteration: 4, Func. Count: 51, Neg. LLF: 194.009595739701
Iteration: 5, Func. Count: 65, Neg. LLF: 158.81729728150887
Iteration: 6, Func. Count: 77, Neg. LLF: 158.45655713847611
Iteration: 7, Func. Count: 89, Neg. LLF: 158.25075664389942
Iteration: 8, Func. Count: 101, Neg. LLF: 158.18605437808358
Iteration: 9, Func. Count: 113, Neg. LLF: 158.12758997021336
Iteration: 10, Func. Count: 125, Neg. LLF: 158.11032392944807
Iteration: 11, Func. Count: 137, Neg. LLF: 158.0712168605354
Iteration: 12, Func. Count: 149, Neg. LLF: 158.06234076575564
Iteration: 13, Func. Count: 161, Neg. LLF: 158.06036950208343
Iteration: 14, Func. Count: 173, Neg. LLF: 158.06039149800048
Iteration: 15, Func. Count: 186, Neg. LLF: 158.06030972819931
Iteration: 16, Func. Count: 198, Neg. LLF: 158.06029939350373
Iteration: 17, Func. Count: 210, Neg. LLF: 158.0602975205048
Iteration: 18, Func. Count: 222, Neg. LLF: 158.0603072216853
Optimization terminated successfully (Exit mode 0)
Current function value: 158.060297497626
Iterations: 19
Function evaluations: 223
Gradient evaluations: 18
Iteration: 1, Func. Count: 14, Neg. LLF: 189.70203413531027
Iteration: 2, Func. Count: 28, Neg. LLF: 160.02276547295403
Iteration: 3, Func. Count: 41, Neg. LLF: 160.31873355860466
Iteration: 4, Func. Count: 55, Neg. LLF: 187.39827465141738
Iteration: 5, Func. Count: 69, Neg. LLF: 159.64199977206763
Iteration: 6, Func. Count: 83, Neg. LLF: 159.13358994948666
Iteration: 7, Func. Count: 97, Neg. LLF: 158.92846677460005
Iteration: 8, Func. Count: 111, Neg. LLF: 158.56421057260928
Iteration: 9, Func. Count: 124, Neg. LLF: 158.66727024190047
Iteration: 10, Func. Count: 138, Neg. LLF: 158.56147838681528
Iteration: 11, Func. Count: 152, Neg. LLF: 158.55974735098027
Iteration: 12, Func. Count: 165, Neg. LLF: 158.55954704646572
Iteration: 13, Func. Count: 178, Neg. LLF: 158.5594756405763
Iteration: 14, Func. Count: 191, Neg. LLF: 158.55914810594896
Iteration: 15, Func. Count: 204, Neg. LLF: 158.5590027563316
Iteration: 16, Func. Count: 217, Neg. LLF: 158.55896182102657
Iteration: 17, Func. Count: 230, Neg. LLF: 158.55895935977742
Iteration: 18, Func. Count: 242, Neg. LLF: 158.55895933566808
Optimization terminated successfully (Exit mode 0)
Current function value: 158.55895935977742
Iterations: 18
Function evaluations: 242
Gradient evaluations: 18
Iteration: 1, Func. Count: 7, Neg. LLF: 164.3784369868468
Iteration: 2, Func. Count: 14, Neg. LLF: 162.98804985151565
Iteration: 3, Func. Count: 20, Neg. LLF: 162.9644135862869
Iteration: 4, Func. Count: 26, Neg. LLF: 162.94298387459597
Iteration: 5, Func. Count: 32, Neg. LLF: 162.9328013179287
Iteration: 6, Func. Count: 38, Neg. LLF: 162.8801264614086
Iteration: 7, Func. Count: 44, Neg. LLF: 162.82953683327818
Iteration: 8, Func. Count: 50, Neg. LLF: 162.81597659210385
Iteration: 9, Func. Count: 56, Neg. LLF: 162.81383490945643
Iteration: 10, Func. Count: 62, Neg. LLF: 162.81368505333157
Iteration: 11, Func. Count: 68, Neg. LLF: 162.81367469412058
Iteration: 12, Func. Count: 73, Neg. LLF: 162.8136747434897
Optimization terminated successfully (Exit mode 0)
Current function value: 162.81367469412058
Iterations: 12
Function evaluations: 73
Gradient evaluations: 12
Iteration: 1, Func. Count: 8, Neg. LLF: 176.8058670049023
Iteration: 2, Func. Count: 17, Neg. LLF: 166.39943468485302
Iteration: 3, Func. Count: 25, Neg. LLF: 193.97549862877057
Iteration: 4, Func. Count: 34, Neg. LLF: 162.93031099759182
Iteration: 5, Func. Count: 41, Neg. LLF: 162.92863276188564
Iteration: 6, Func. Count: 49, Neg. LLF: 162.91985249897917
Iteration: 7, Func. Count: 56, Neg. LLF: 162.91936160286377
Iteration: 8, Func. Count: 63, Neg. LLF: 162.9188041718248
Iteration: 9, Func. Count: 70, Neg. LLF: 162.91761847006606
Iteration: 10, Func. Count: 77, Neg. LLF: 162.91684577099446
Iteration: 11, Func. Count: 84, Neg. LLF: 162.9165944468512
Iteration: 12, Func. Count: 91, Neg. LLF: 162.91657377760149
Iteration: 13, Func. Count: 97, Neg. LLF: 162.9165737776421
Optimization terminated successfully (Exit mode 0)
Current function value: 162.91657377760149
Iterations: 13
Function evaluations: 97
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 177.51942284484164
Iteration: 2, Func. Count: 18, Neg. LLF: 164.4543602330501
Iteration: 3, Func. Count: 27, Neg. LLF: 337.86047154119785
Iteration: 4, Func. Count: 37, Neg. LLF: 162.86638639496445
Iteration: 5, Func. Count: 45, Neg. LLF: 162.9083210071447
Iteration: 6, Func. Count: 54, Neg. LLF: 162.85835129376142
Iteration: 7, Func. Count: 62, Neg. LLF: 162.85745123081435
Iteration: 8, Func. Count: 70, Neg. LLF: 162.85743095641428
Iteration: 9, Func. Count: 78, Neg. LLF: 162.85731670701406
Iteration: 10, Func. Count: 86, Neg. LLF: 162.8571552834281
Iteration: 11, Func. Count: 94, Neg. LLF: 162.85704000598818
Iteration: 12, Func. Count: 102, Neg. LLF: 162.85699549536835
Iteration: 13, Func. Count: 110, Neg. LLF: 162.85699158478974
Iteration: 14, Func. Count: 117, Neg. LLF: 162.85699158477456
Optimization terminated successfully (Exit mode 0)
Current function value: 162.85699158478974
Iterations: 14
Function evaluations: 117
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 165.106560948295
Iteration: 2, Func. Count: 20, Neg. LLF: 167.2706385864259
Iteration: 3, Func. Count: 30, Neg. LLF: 173.31244813275467
Iteration: 4, Func. Count: 40, Neg. LLF: 162.83982664592725
Iteration: 5, Func. Count: 49, Neg. LLF: 162.95909015524938
Iteration: 6, Func. Count: 59, Neg. LLF: 162.89650028660992
Iteration: 7, Func. Count: 69, Neg. LLF: 162.81851831802692
Iteration: 8, Func. Count: 78, Neg. LLF: 162.81758311919427
Iteration: 9, Func. Count: 87, Neg. LLF: 162.8165261485239
Iteration: 10, Func. Count: 96, Neg. LLF: 162.81327214560184
Iteration: 11, Func. Count: 105, Neg. LLF: 162.80274350517067
Iteration: 12, Func. Count: 114, Neg. LLF: 162.78632014088282
Iteration: 13, Func. Count: 123, Neg. LLF: 162.76945834682286
Iteration: 14, Func. Count: 132, Neg. LLF: 162.75851538298076
Iteration: 15, Func. Count: 141, Neg. LLF: 162.75650048821302
Iteration: 16, Func. Count: 150, Neg. LLF: 162.75645071470038
Iteration: 17, Func. Count: 159, Neg. LLF: 162.75643666064613
Iteration: 18, Func. Count: 167, Neg. LLF: 162.75643666066065
Optimization terminated successfully (Exit mode 0)
Current function value: 162.75643666064613
Iterations: 18
Function evaluations: 167
Gradient evaluations: 18
Iteration: 1, Func. Count: 11, Neg. LLF: 165.05981322272223
Iteration: 2, Func. Count: 22, Neg. LLF: 167.4461887870797
Iteration: 3, Func. Count: 33, Neg. LLF: 173.4625580075487
Iteration: 4, Func. Count: 44, Neg. LLF: 161.90395028465824
Iteration: 5, Func. Count: 54, Neg. LLF: 161.93331880893393
Iteration: 6, Func. Count: 65, Neg. LLF: 161.68496194720416
Iteration: 7, Func. Count: 75, Neg. LLF: 161.6731611849494
Iteration: 8, Func. Count: 85, Neg. LLF: 161.66088638903568
Iteration: 9, Func. Count: 95, Neg. LLF: 161.6492509389158
Iteration: 10, Func. Count: 105, Neg. LLF: 161.58468045622294
Iteration: 11, Func. Count: 115, Neg. LLF: 161.50428877757315
Iteration: 12, Func. Count: 125, Neg. LLF: 161.44628766615256
Iteration: 13, Func. Count: 135, Neg. LLF: 161.72438707251416
Iteration: 14, Func. Count: 146, Neg. LLF: 161.40732063491475
Iteration: 15, Func. Count: 156, Neg. LLF: 161.3980772499954
Iteration: 16, Func. Count: 166, Neg. LLF: 161.3976957217356
Iteration: 17, Func. Count: 176, Neg. LLF: 161.39764093786874
Iteration: 18, Func. Count: 186, Neg. LLF: 161.39763990340094
Iteration: 19, Func. Count: 195, Neg. LLF: 161.39763990342342
Optimization terminated successfully (Exit mode 0)
Current function value: 161.39763990340094
Iterations: 19
Function evaluations: 195
Gradient evaluations: 19
Iteration: 1, Func. Count: 8, Neg. LLF: 164.06727873259027
Iteration: 2, Func. Count: 16, Neg. LLF: 163.38530304416312
Iteration: 3, Func. Count: 24, Neg. LLF: 163.8339705160676
Iteration: 4, Func. Count: 32, Neg. LLF: 162.75397063894158
Iteration: 5, Func. Count: 40, Neg. LLF: 162.20983409259878
Iteration: 6, Func. Count: 47, Neg. LLF: 162.17309376982286
Iteration: 7, Func. Count: 54, Neg. LLF: 162.203683117433
Iteration: 8, Func. Count: 62, Neg. LLF: 162.16289909653705
Iteration: 9, Func. Count: 69, Neg. LLF: 162.16169707586252
Iteration: 10, Func. Count: 76, Neg. LLF: 162.16129997597272
Iteration: 11, Func. Count: 83, Neg. LLF: 162.1609273660669
Iteration: 12, Func. Count: 90, Neg. LLF: 162.160391168702
Iteration: 13, Func. Count: 97, Neg. LLF: 162.1593074076632
Iteration: 14, Func. Count: 104, Neg. LLF: 162.15823201881074
Iteration: 15, Func. Count: 111, Neg. LLF: 162.15772675401314
Iteration: 16, Func. Count: 118, Neg. LLF: 162.15765425329334
Iteration: 17, Func. Count: 125, Neg. LLF: 162.15765000182446
Iteration: 18, Func. Count: 131, Neg. LLF: 162.15765000182472
Optimization terminated successfully (Exit mode 0)
Current function value: 162.15765000182446
Iterations: 18
Function evaluations: 131
Gradient evaluations: 18
Iteration: 1, Func. Count: 9, Neg. LLF: 2943.1261692810117
Iteration: 2, Func. Count: 19, Neg. LLF: 164.0984497898566
Iteration: 3, Func. Count: 28, Neg. LLF: 160.64730190827905
Iteration: 4, Func. Count: 37, Neg. LLF: 160.48926638706035
Iteration: 5, Func. Count: 45, Neg. LLF: 160.46662606021567
Iteration: 6, Func. Count: 53, Neg. LLF: 160.46433790599937
Iteration: 7, Func. Count: 61, Neg. LLF: 160.46319824287622
Iteration: 8, Func. Count: 69, Neg. LLF: 160.46309362540532
Iteration: 9, Func. Count: 77, Neg. LLF: 160.46308273534927
Iteration: 10, Func. Count: 85, Neg. LLF: 160.46308207790716
Optimization terminated successfully (Exit mode 0)
Current function value: 160.46308207790716
Iterations: 10
Function evaluations: 85
Gradient evaluations: 10
Iteration: 1, Func. Count: 10, Neg. LLF: 22988760.143358544
Iteration: 2, Func. Count: 21, Neg. LLF: 205.64446898318695
Iteration: 3, Func. Count: 31, Neg. LLF: 161.53713542506125
Iteration: 4, Func. Count: 41, Neg. LLF: 160.54245840825882
Iteration: 5, Func. Count: 50, Neg. LLF: 160.47400107353585
Iteration: 6, Func. Count: 59, Neg. LLF: 160.4654009911289
Iteration: 7, Func. Count: 68, Neg. LLF: 160.463271862691
Iteration: 8, Func. Count: 77, Neg. LLF: 160.46309160967635
Iteration: 9, Func. Count: 86, Neg. LLF: 160.46308575367917
Iteration: 10, Func. Count: 95, Neg. LLF: 160.46308208026832
Iteration: 11, Func. Count: 103, Neg. LLF: 160.46308208093862
Optimization terminated successfully (Exit mode 0)
Current function value: 160.46308208026832
Iterations: 11
Function evaluations: 103
Gradient evaluations: 11
Iteration: 1, Func. Count: 11, Neg. LLF: 236.79321695265992
Iteration: 2, Func. Count: 22, Neg. LLF: 161.09700311966233
Iteration: 3, Func. Count: 32, Neg. LLF: 164.97989237517623
Iteration: 4, Func. Count: 43, Neg. LLF: 169.67472201754822
Iteration: 5, Func. Count: 54, Neg. LLF: 160.65877540149125
Iteration: 6, Func. Count: 64, Neg. LLF: 160.625024202708
Iteration: 7, Func. Count: 74, Neg. LLF: 160.55809427303774
Iteration: 8, Func. Count: 84, Neg. LLF: 160.45903617876957
Iteration: 9, Func. Count: 94, Neg. LLF: 160.4372002700563
Iteration: 10, Func. Count: 104, Neg. LLF: 160.42455628244224
Iteration: 11, Func. Count: 114, Neg. LLF: 160.4234972448742
Iteration: 12, Func. Count: 124, Neg. LLF: 160.42335377216133
Iteration: 13, Func. Count: 134, Neg. LLF: 160.42334821252825
Iteration: 14, Func. Count: 143, Neg. LLF: 160.4233482125107
Optimization terminated successfully (Exit mode 0)
Current function value: 160.42334821252825
Iterations: 14
Function evaluations: 143
Gradient evaluations: 14
Iteration: 1, Func. Count: 12, Neg. LLF: 235.65114748779104
Iteration: 2, Func. Count: 24, Neg. LLF: 161.35640992335053
Iteration: 3, Func. Count: 35, Neg. LLF: 160.73666460612128
Iteration: 4, Func. Count: 46, Neg. LLF: 164.44951413107376
Iteration: 5, Func. Count: 58, Neg. LLF: 165.88652207560364
Iteration: 6, Func. Count: 70, Neg. LLF: 160.51254468080162
Iteration: 7, Func. Count: 82, Neg. LLF: 160.23878472137
Iteration: 8, Func. Count: 93, Neg. LLF: 160.21681714367458
Iteration: 9, Func. Count: 104, Neg. LLF: 160.17380836622016
Iteration: 10, Func. Count: 115, Neg. LLF: 160.11073328234002
Iteration: 11, Func. Count: 126, Neg. LLF: 160.0801452109094
Iteration: 12, Func. Count: 137, Neg. LLF: 160.05811837603372
Iteration: 13, Func. Count: 148, Neg. LLF: 160.0559038649577
Iteration: 14, Func. Count: 159, Neg. LLF: 160.0551044973515
Iteration: 15, Func. Count: 170, Neg. LLF: 160.05495483271434
Iteration: 16, Func. Count: 181, Neg. LLF: 160.05493491262936
Iteration: 17, Func. Count: 191, Neg. LLF: 160.05493491258946
Optimization terminated successfully (Exit mode 0)
Current function value: 160.05493491262936
Iterations: 17
Function evaluations: 191
Gradient evaluations: 17
Iteration: 1, Func. Count: 9, Neg. LLF: 169.43118418333196
Iteration: 2, Func. Count: 18, Neg. LLF: 164.17680431357746
Iteration: 3, Func. Count: 28, Neg. LLF: 164.31490163460734
Iteration: 4, Func. Count: 38, Neg. LLF: 165.74311517484793
Iteration: 5, Func. Count: 47, Neg. LLF: 162.22684899707212
Iteration: 6, Func. Count: 57, Neg. LLF: 161.9482314583594
Iteration: 7, Func. Count: 65, Neg. LLF: 161.94232068278063
Iteration: 8, Func. Count: 73, Neg. LLF: 161.94005596989084
Iteration: 9, Func. Count: 81, Neg. LLF: 161.93989462377218
Iteration: 10, Func. Count: 89, Neg. LLF: 161.93979908765303
Iteration: 11, Func. Count: 97, Neg. LLF: 161.93943126600968
Iteration: 12, Func. Count: 105, Neg. LLF: 161.9390215664399
Iteration: 13, Func. Count: 113, Neg. LLF: 161.93861737691677
Iteration: 14, Func. Count: 121, Neg. LLF: 161.93849383194367
Iteration: 15, Func. Count: 129, Neg. LLF: 161.93848017905364
Iteration: 16, Func. Count: 136, Neg. LLF: 161.93848017903392
Optimization terminated successfully (Exit mode 0)
Current function value: 161.93848017905364
Iterations: 16
Function evaluations: 136
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 1540.0679692389663
Iteration: 2, Func. Count: 21, Neg. LLF: 165.72094262309975
Iteration: 3, Func. Count: 31, Neg. LLF: 160.71575288025056
Iteration: 4, Func. Count: 41, Neg. LLF: 160.58056007275292
Iteration: 5, Func. Count: 51, Neg. LLF: 160.48247500841512
Iteration: 6, Func. Count: 60, Neg. LLF: 160.46505523345076
Iteration: 7, Func. Count: 69, Neg. LLF: 160.4629806209226
Iteration: 8, Func. Count: 78, Neg. LLF: 160.4627016087234
Iteration: 9, Func. Count: 87, Neg. LLF: 160.4626839907748
Iteration: 10, Func. Count: 96, Neg. LLF: 160.4626779847131
Iteration: 11, Func. Count: 105, Neg. LLF: 160.46267540800224
Iteration: 12, Func. Count: 113, Neg. LLF: 160.46267540815612
Optimization terminated successfully (Exit mode 0)
Current function value: 160.46267540800224
Iterations: 12
Function evaluations: 113
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 22961026.757729717
Iteration: 2, Func. Count: 23, Neg. LLF: 200.5088204449148
Iteration: 3, Func. Count: 34, Neg. LLF: 161.65491609439144
Iteration: 4, Func. Count: 45, Neg. LLF: 160.6665629117988
Iteration: 5, Func. Count: 56, Neg. LLF: 160.4160640739918
Iteration: 6, Func. Count: 66, Neg. LLF: 160.38948891007766
Iteration: 7, Func. Count: 76, Neg. LLF: 160.38451110451638
Iteration: 8, Func. Count: 86, Neg. LLF: 160.3807664808099
Iteration: 9, Func. Count: 96, Neg. LLF: 160.38009079654879
Iteration: 10, Func. Count: 106, Neg. LLF: 160.38002178472783
Iteration: 11, Func. Count: 116, Neg. LLF: 160.38000753383847
Iteration: 12, Func. Count: 126, Neg. LLF: 160.38000459705614
Iteration: 13, Func. Count: 135, Neg. LLF: 160.3800045970069
Optimization terminated successfully (Exit mode 0)
Current function value: 160.38000459705614
Iterations: 13
Function evaluations: 135
Gradient evaluations: 13
Iteration: 1, Func. Count: 12, Neg. LLF: 190.20363730046796
Iteration: 2, Func. Count: 24, Neg. LLF: 160.93230496373454
Iteration: 3, Func. Count: 36, Neg. LLF: 161.43328909234705
Iteration: 4, Func. Count: 48, Neg. LLF: 162.69213730050228
Iteration: 5, Func. Count: 60, Neg. LLF: 159.5038352331283
Iteration: 6, Func. Count: 71, Neg. LLF: 162.904183411486
Iteration: 7, Func. Count: 83, Neg. LLF: 159.44783924588165
Iteration: 8, Func. Count: 94, Neg. LLF: 159.4158803379033
Iteration: 9, Func. Count: 105, Neg. LLF: 159.33119198309763
Iteration: 10, Func. Count: 116, Neg. LLF: 159.32396780070314
Iteration: 11, Func. Count: 127, Neg. LLF: 159.3207920807627
Iteration: 12, Func. Count: 138, Neg. LLF: 159.3192338898142
Iteration: 13, Func. Count: 149, Neg. LLF: 159.31911008242193
Iteration: 14, Func. Count: 160, Neg. LLF: 159.31910527292118
Iteration: 15, Func. Count: 170, Neg. LLF: 159.31910522225922
Optimization terminated successfully (Exit mode 0)
Current function value: 159.31910527292118
Iterations: 15
Function evaluations: 170
Gradient evaluations: 15
Iteration: 1, Func. Count: 13, Neg. LLF: 190.83111069384788
Iteration: 2, Func. Count: 26, Neg. LLF: 161.54283858319587
Iteration: 3, Func. Count: 39, Neg. LLF: 166.2989471156614
Iteration: 4, Func. Count: 52, Neg. LLF: 167.22768970625114
Iteration: 5, Func. Count: 65, Neg. LLF: 159.4910512124944
Iteration: 6, Func. Count: 77, Neg. LLF: 163.47072852270992
Iteration: 7, Func. Count: 90, Neg. LLF: 160.599660916045
Iteration: 8, Func. Count: 103, Neg. LLF: 159.0321500545133
Iteration: 9, Func. Count: 115, Neg. LLF: 159.22895824801174
Iteration: 10, Func. Count: 128, Neg. LLF: 159.07877628190124
Iteration: 11, Func. Count: 141, Neg. LLF: 159.02742977187344
Iteration: 12, Func. Count: 153, Neg. LLF: 159.026135256418
Iteration: 13, Func. Count: 165, Neg. LLF: 159.0245049992617
Iteration: 14, Func. Count: 177, Neg. LLF: 159.02282063842054
Iteration: 15, Func. Count: 189, Neg. LLF: 159.02123623195837
Iteration: 16, Func. Count: 201, Neg. LLF: 159.02029001339375
Iteration: 17, Func. Count: 213, Neg. LLF: 159.01997971112567
Iteration: 18, Func. Count: 225, Neg. LLF: 159.0199544869595
Iteration: 19, Func. Count: 237, Neg. LLF: 159.01995350772893
Optimization terminated successfully (Exit mode 0)
Current function value: 159.01995350772893
Iterations: 19
Function evaluations: 237
Gradient evaluations: 19
Iteration: 1, Func. Count: 10, Neg. LLF: 169.74627976800087
Iteration: 2, Func. Count: 20, Neg. LLF: 164.84089722671226
Iteration: 3, Func. Count: 31, Neg. LLF: 163.63549933143
Iteration: 4, Func. Count: 42, Neg. LLF: 162.02238113347255
Iteration: 5, Func. Count: 52, Neg. LLF: 162.40996025814474
Iteration: 6, Func. Count: 62, Neg. LLF: 161.27118723048795
Iteration: 7, Func. Count: 71, Neg. LLF: 161.5797410486029
Iteration: 8, Func. Count: 81, Neg. LLF: 161.5333707201529
Iteration: 9, Func. Count: 91, Neg. LLF: 161.22148753878272
Iteration: 10, Func. Count: 100, Neg. LLF: 161.20134280487244
Iteration: 11, Func. Count: 109, Neg. LLF: 161.18002786177377
Iteration: 12, Func. Count: 118, Neg. LLF: 161.0748320466937
Iteration: 13, Func. Count: 127, Neg. LLF: 161.00018515520998
Iteration: 14, Func. Count: 136, Neg. LLF: 160.94838070303186
Iteration: 15, Func. Count: 145, Neg. LLF: 160.9416204133793
Iteration: 16, Func. Count: 154, Neg. LLF: 160.9398067532515
Iteration: 17, Func. Count: 163, Neg. LLF: 160.93930390761486
Iteration: 18, Func. Count: 172, Neg. LLF: 160.939282314325
Iteration: 19, Func. Count: 181, Neg. LLF: 160.9392792082048
Iteration: 20, Func. Count: 189, Neg. LLF: 160.93927920820465
Optimization terminated successfully (Exit mode 0)
Current function value: 160.9392792082048
Iterations: 20
Function evaluations: 189
Gradient evaluations: 20
Iteration: 1, Func. Count: 11, Neg. LLF: 1034.0275803575591
Iteration: 2, Func. Count: 22, Neg. LLF: 161.3069547888958
Iteration: 3, Func. Count: 33, Neg. LLF: 160.4845939417658
Iteration: 4, Func. Count: 43, Neg. LLF: 175.17837675496605
Iteration: 5, Func. Count: 54, Neg. LLF: 160.47952826670863
Iteration: 6, Func. Count: 65, Neg. LLF: 160.4632906405617
Iteration: 7, Func. Count: 75, Neg. LLF: 160.46273512637762
Iteration: 8, Func. Count: 85, Neg. LLF: 160.462707432851
Iteration: 9, Func. Count: 95, Neg. LLF: 160.4626796582737
Iteration: 10, Func. Count: 105, Neg. LLF: 160.46267545829843
Iteration: 11, Func. Count: 114, Neg. LLF: 160.46267545829124
Optimization terminated successfully (Exit mode 0)
Current function value: 160.46267545829843
Iterations: 11
Function evaluations: 114
Gradient evaluations: 11
Iteration: 1, Func. Count: 12, Neg. LLF: 196.13191909875002
Iteration: 2, Func. Count: 24, Neg. LLF: 160.77728366074703
Iteration: 3, Func. Count: 36, Neg. LLF: 161.12522901166807
Iteration: 4, Func. Count: 48, Neg. LLF: 162.13524353323626
Iteration: 5, Func. Count: 60, Neg. LLF: 160.4905299790302
Iteration: 6, Func. Count: 71, Neg. LLF: 160.4721123360559
Iteration: 7, Func. Count: 82, Neg. LLF: 160.4391225669328
Iteration: 8, Func. Count: 93, Neg. LLF: 160.4672669271001
Iteration: 9, Func. Count: 105, Neg. LLF: 160.40135797894752
Iteration: 10, Func. Count: 116, Neg. LLF: 160.44140330016995
Iteration: 11, Func. Count: 128, Neg. LLF: 160.38235553300873
Iteration: 12, Func. Count: 139, Neg. LLF: 160.38035769037072
Iteration: 13, Func. Count: 150, Neg. LLF: 160.3800481830267
Iteration: 14, Func. Count: 161, Neg. LLF: 160.38000678260514
Iteration: 15, Func. Count: 172, Neg. LLF: 160.3800048562232
Iteration: 16, Func. Count: 183, Neg. LLF: 160.380004272605
Optimization terminated successfully (Exit mode 0)
Current function value: 160.380004272605
Iterations: 16
Function evaluations: 183
Gradient evaluations: 16
Iteration: 1, Func. Count: 13, Neg. LLF: 190.20414466808958
Iteration: 2, Func. Count: 26, Neg. LLF: 159.95312709912088
Iteration: 3, Func. Count: 38, Neg. LLF: 159.74887354458778
Iteration: 4, Func. Count: 50, Neg. LLF: 164.77869527897278
Iteration: 5, Func. Count: 63, Neg. LLF: 158.27456209310756
Iteration: 6, Func. Count: 75, Neg. LLF: 158.23879236672826
Iteration: 7, Func. Count: 87, Neg. LLF: 158.1696217753789
Iteration: 8, Func. Count: 99, Neg. LLF: 158.11100535104538
Iteration: 9, Func. Count: 111, Neg. LLF: 158.08207591984092
Iteration: 10, Func. Count: 123, Neg. LLF: 158.06552596991094
Iteration: 11, Func. Count: 135, Neg. LLF: 158.0615167143725
Iteration: 12, Func. Count: 147, Neg. LLF: 158.06064341039252
Iteration: 13, Func. Count: 159, Neg. LLF: 158.06073175500302
Iteration: 14, Func. Count: 172, Neg. LLF: 158.06027270954846
Iteration: 15, Func. Count: 184, Neg. LLF: 158.06024659019747
Iteration: 16, Func. Count: 206, Neg. LLF: 158.06028879704357
Iteration: 17, Func. Count: 228, Neg. LLF: 158.0603145947043
Iteration: 18, Func. Count: 242, Neg. LLF: 158.06029919229985
Iteration: 19, Func. Count: 255, Neg. LLF: 158.06029764417767
Iteration: 20, Func. Count: 268, Neg. LLF: 158.06029748378043
Iteration: 21, Func. Count: 279, Neg. LLF: 158.0602974448151
Optimization terminated successfully (Exit mode 0)
Current function value: 158.06029748378043
Iterations: 22
Function evaluations: 279
Gradient evaluations: 21
Iteration: 1, Func. Count: 14, Neg. LLF: 191.55168446891759
Iteration: 2, Func. Count: 28, Neg. LLF: 161.61146298280192
Iteration: 3, Func. Count: 42, Neg. LLF: 167.22068365390575
Iteration: 4, Func. Count: 56, Neg. LLF: 202.07034956237047
Iteration: 5, Func. Count: 70, Neg. LLF: 159.14011322933902
Iteration: 6, Func. Count: 83, Neg. LLF: 162.26931347719588
Iteration: 7, Func. Count: 97, Neg. LLF: 159.2668972028446
Iteration: 8, Func. Count: 111, Neg. LLF: 159.21884025132684
Iteration: 9, Func. Count: 125, Neg. LLF: 159.59122219942356
Iteration: 10, Func. Count: 139, Neg. LLF: 158.64259613934433
Iteration: 11, Func. Count: 153, Neg. LLF: 158.55994376504538
Iteration: 12, Func. Count: 166, Neg. LLF: 158.55900954333143
Iteration: 13, Func. Count: 179, Neg. LLF: 158.5589824902291
Iteration: 14, Func. Count: 192, Neg. LLF: 158.55897757185465
Iteration: 15, Func. Count: 205, Neg. LLF: 158.55897386231646
Iteration: 16, Func. Count: 218, Neg. LLF: 158.55897024265445
Iteration: 17, Func. Count: 231, Neg. LLF: 158.55896394778998
Iteration: 18, Func. Count: 244, Neg. LLF: 158.5589603393696
Iteration: 19, Func. Count: 257, Neg. LLF: 158.55895939000192
Optimization terminated successfully (Exit mode 0)
Current function value: 158.55895939000192
Iterations: 19
Function evaluations: 257
Gradient evaluations: 19
Iteration: 1, Func. Count: 11, Neg. LLF: 165.29569316321079
Iteration: 2, Func. Count: 22, Neg. LLF: 163.34472659153903
Iteration: 3, Func. Count: 33, Neg. LLF: 165.09662134806572
Iteration: 4, Func. Count: 45, Neg. LLF: 162.18486559646007
Iteration: 5, Func. Count: 56, Neg. LLF: 161.47141478974427
Iteration: 6, Func. Count: 66, Neg. LLF: 162.73444310313286
Iteration: 7, Func. Count: 77, Neg. LLF: 162.92103477481007
Iteration: 8, Func. Count: 88, Neg. LLF: 162.18775842382067
Iteration: 9, Func. Count: 99, Neg. LLF: 161.22996266492683
Iteration: 10, Func. Count: 109, Neg. LLF: 161.21340112159052
Iteration: 11, Func. Count: 119, Neg. LLF: 161.1958258500069
Iteration: 12, Func. Count: 129, Neg. LLF: 161.12387810304347
Iteration: 13, Func. Count: 139, Neg. LLF: 161.06688486967124
Iteration: 14, Func. Count: 149, Neg. LLF: 161.02160392162367
Iteration: 15, Func. Count: 159, Neg. LLF: 160.99635106099078
Iteration: 16, Func. Count: 169, Neg. LLF: 160.9543584138854
Iteration: 17, Func. Count: 179, Neg. LLF: 160.9419161534092
Iteration: 18, Func. Count: 189, Neg. LLF: 160.93965029196085
Iteration: 19, Func. Count: 199, Neg. LLF: 160.93929391825776
Iteration: 20, Func. Count: 209, Neg. LLF: 160.93928278154368
Iteration: 21, Func. Count: 219, Neg. LLF: 160.93927968988962
Iteration: 22, Func. Count: 228, Neg. LLF: 160.93927979738518
Optimization terminated successfully (Exit mode 0)
Current function value: 160.93927968988962
Iterations: 22
Function evaluations: 228
Gradient evaluations: 22
Iteration: 1, Func. Count: 12, Neg. LLF: 932.3713041247363
Iteration: 2, Func. Count: 24, Neg. LLF: 161.39137158587778
Iteration: 3, Func. Count: 36, Neg. LLF: 160.49187361663647
Iteration: 4, Func. Count: 47, Neg. LLF: 175.97524772178792
Iteration: 5, Func. Count: 59, Neg. LLF: 160.48065380349573
Iteration: 6, Func. Count: 71, Neg. LLF: 160.46426601080415
Iteration: 7, Func. Count: 82, Neg. LLF: 160.4627273761382
Iteration: 8, Func. Count: 93, Neg. LLF: 160.46270320903574
Iteration: 9, Func. Count: 104, Neg. LLF: 160.4626779445398
Iteration: 10, Func. Count: 115, Neg. LLF: 160.46267534027118
Iteration: 11, Func. Count: 125, Neg. LLF: 160.46267534012517
Optimization terminated successfully (Exit mode 0)
Current function value: 160.46267534027118
Iterations: 11
Function evaluations: 125
Gradient evaluations: 11
Iteration: 1, Func. Count: 13, Neg. LLF: 197.8537105543253
Iteration: 2, Func. Count: 26, Neg. LLF: 160.79476965342536
Iteration: 3, Func. Count: 39, Neg. LLF: 161.16285715411993
Iteration: 4, Func. Count: 52, Neg. LLF: 162.39412506230906
Iteration: 5, Func. Count: 65, Neg. LLF: 160.50078382803824
Iteration: 6, Func. Count: 77, Neg. LLF: 160.57678647827186
Iteration: 7, Func. Count: 90, Neg. LLF: 160.4653715468119
Iteration: 8, Func. Count: 102, Neg. LLF: 160.42904626299625
Iteration: 9, Func. Count: 114, Neg. LLF: 160.40696207321935
Iteration: 10, Func. Count: 126, Neg. LLF: 160.3997243872672
Iteration: 11, Func. Count: 138, Neg. LLF: 160.3883381304338
Iteration: 12, Func. Count: 150, Neg. LLF: 160.38300111015698
Iteration: 13, Func. Count: 162, Neg. LLF: 160.3802303676361
Iteration: 14, Func. Count: 174, Neg. LLF: 160.38001165118004
Iteration: 15, Func. Count: 186, Neg. LLF: 160.38000490320712
Iteration: 16, Func. Count: 198, Neg. LLF: 160.38000428910078
Optimization terminated successfully (Exit mode 0)
Current function value: 160.38000428910078
Iterations: 16
Function evaluations: 198
Gradient evaluations: 16
Iteration: 1, Func. Count: 14, Neg. LLF: 189.92458565066002
Iteration: 2, Func. Count: 28, Neg. LLF: 160.33082447228375
Iteration: 3, Func. Count: 41, Neg. LLF: 158.90093415804287
Iteration: 4, Func. Count: 54, Neg. LLF: 158.68156100721768
Iteration: 5, Func. Count: 67, Neg. LLF: 158.34035420911266
Iteration: 6, Func. Count: 80, Neg. LLF: 160.21456992158352
Iteration: 7, Func. Count: 94, Neg. LLF: 158.21078720912462
Iteration: 8, Func. Count: 107, Neg. LLF: 158.16206444732373
Iteration: 9, Func. Count: 120, Neg. LLF: 158.1251366445843
Iteration: 10, Func. Count: 133, Neg. LLF: 158.0820901022786
Iteration: 11, Func. Count: 146, Neg. LLF: 158.0630356493296
Iteration: 12, Func. Count: 159, Neg. LLF: 158.06051786861178
Iteration: 13, Func. Count: 172, Neg. LLF: 158.06030537077345
Iteration: 14, Func. Count: 185, Neg. LLF: 158.06030047597878
Iteration: 15, Func. Count: 198, Neg. LLF: 158.06029958153778
Optimization terminated successfully (Exit mode 0)
Current function value: 158.06029958153778
Iterations: 15
Function evaluations: 198
Gradient evaluations: 15
Iteration: 1, Func. Count: 15, Neg. LLF: 192.5407824454698
Iteration: 2, Func. Count: 30, Neg. LLF: 160.66912040984215
Iteration: 3, Func. Count: 44, Neg. LLF: 161.39865175196047
Iteration: 4, Func. Count: 59, Neg. LLF: 200.18437133536054
Iteration: 5, Func. Count: 74, Neg. LLF: 162.63049471221385
Iteration: 6, Func. Count: 89, Neg. LLF: 159.48857249440775
Iteration: 7, Func. Count: 104, Neg. LLF: 173.11705729948326
Iteration: 8, Func. Count: 119, Neg. LLF: 158.60759258290432
Iteration: 9, Func. Count: 133, Neg. LLF: 158.9604986981524
Iteration: 10, Func. Count: 148, Neg. LLF: 158.56171274023046
Iteration: 11, Func. Count: 162, Neg. LLF: 158.55950956646004
Iteration: 12, Func. Count: 176, Neg. LLF: 158.5592180616717
Iteration: 13, Func. Count: 190, Neg. LLF: 158.5590004632118
Iteration: 14, Func. Count: 204, Neg. LLF: 158.55899546269404
Iteration: 15, Func. Count: 218, Neg. LLF: 158.55898566332567
Iteration: 16, Func. Count: 232, Neg. LLF: 158.55897331725834
Iteration: 17, Func. Count: 246, Neg. LLF: 158.558962822876
Iteration: 18, Func. Count: 260, Neg. LLF: 158.5589596438449
Iteration: 19, Func. Count: 273, Neg. LLF: 158.55895961971623
Optimization terminated successfully (Exit mode 0)
Current function value: 158.5589596438449
Iterations: 19
Function evaluations: 273
Gradient evaluations: 19
Iteration: 1, Func. Count: 8, Neg. LLF: 164.38419526678157
Iteration: 2, Func. Count: 16, Neg. LLF: 162.98997165751572
Iteration: 3, Func. Count: 23, Neg. LLF: 162.96676832450473
Iteration: 4, Func. Count: 30, Neg. LLF: 162.9444392404175
Iteration: 5, Func. Count: 37, Neg. LLF: 162.93101296309948
Iteration: 6, Func. Count: 44, Neg. LLF: 162.90954618463218
Iteration: 7, Func. Count: 51, Neg. LLF: 162.86669259564502
Iteration: 8, Func. Count: 58, Neg. LLF: 162.8296715302528
Iteration: 9, Func. Count: 65, Neg. LLF: 162.81542482983292
Iteration: 10, Func. Count: 72, Neg. LLF: 162.8137759319871
Iteration: 11, Func. Count: 79, Neg. LLF: 162.8136803741419
Iteration: 12, Func. Count: 86, Neg. LLF: 162.81367448612025
Iteration: 13, Func. Count: 92, Neg. LLF: 162.81367456269658
Optimization terminated successfully (Exit mode 0)
Current function value: 162.81367448612025
Iterations: 13
Function evaluations: 92
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 176.42862515670103
Iteration: 2, Func. Count: 19, Neg. LLF: 254.7279596039316
Iteration: 3, Func. Count: 29, Neg. LLF: 171.19264888249768
Iteration: 4, Func. Count: 38, Neg. LLF: 162.92321031499816
Iteration: 5, Func. Count: 46, Neg. LLF: 162.98611825211933
Iteration: 6, Func. Count: 55, Neg. LLF: 162.91640039019117
Iteration: 7, Func. Count: 63, Neg. LLF: 162.91400085344748
Iteration: 8, Func. Count: 71, Neg. LLF: 162.91396956414025
Iteration: 9, Func. Count: 79, Neg. LLF: 162.91395060696618
Iteration: 10, Func. Count: 87, Neg. LLF: 162.9139139146629
Iteration: 11, Func. Count: 95, Neg. LLF: 162.91384061662305
Iteration: 12, Func. Count: 103, Neg. LLF: 162.91375231045245
Iteration: 13, Func. Count: 111, Neg. LLF: 162.9137014434945
Iteration: 14, Func. Count: 119, Neg. LLF: 162.91369040549017
Iteration: 15, Func. Count: 127, Neg. LLF: 162.91368969964483
Optimization terminated successfully (Exit mode 0)
Current function value: 162.91368969964483
Iterations: 15
Function evaluations: 127
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 165.09985067666105
Iteration: 2, Func. Count: 21, Neg. LLF: 167.65742491829704
Iteration: 3, Func. Count: 31, Neg. LLF: 177.50724697380602
Iteration: 4, Func. Count: 41, Neg. LLF: 163.18259515302788
Iteration: 5, Func. Count: 51, Neg. LLF: 163.5959673984716
Iteration: 6, Func. Count: 61, Neg. LLF: 163.82969019743896
Iteration: 7, Func. Count: 71, Neg. LLF: 163.01066852618115
Iteration: 8, Func. Count: 80, Neg. LLF: 162.98749660170537
Iteration: 9, Func. Count: 89, Neg. LLF: 162.9220257108343
Iteration: 10, Func. Count: 98, Neg. LLF: 162.91614677652476
Iteration: 11, Func. Count: 107, Neg. LLF: 162.90740581567215
Iteration: 12, Func. Count: 116, Neg. LLF: 162.90399369155438
Iteration: 13, Func. Count: 125, Neg. LLF: 162.90091301734137
Iteration: 14, Func. Count: 134, Neg. LLF: 162.89363587976055
Iteration: 15, Func. Count: 143, Neg. LLF: 162.8768308018342
Iteration: 16, Func. Count: 152, Neg. LLF: 162.8369329994153
Iteration: 17, Func. Count: 161, Neg. LLF: 162.80281544700193
Iteration: 18, Func. Count: 170, Neg. LLF: 162.78358959865966
Iteration: 19, Func. Count: 179, Neg. LLF: 162.77892166306012
Iteration: 20, Func. Count: 188, Neg. LLF: 162.7787641908311
Iteration: 21, Func. Count: 197, Neg. LLF: 162.77874238566528
Iteration: 22, Func. Count: 206, Neg. LLF: 162.77874177957304
Optimization terminated successfully (Exit mode 0)
Current function value: 162.77874177957304
Iterations: 22
Function evaluations: 206
Gradient evaluations: 22
Iteration: 1, Func. Count: 11, Neg. LLF: 165.03193819199768
Iteration: 2, Func. Count: 22, Neg. LLF: 166.97274004760345
Iteration: 3, Func. Count: 33, Neg. LLF: 174.25995282650007
Iteration: 4, Func. Count: 44, Neg. LLF: 163.4243130604365
Iteration: 5, Func. Count: 55, Neg. LLF: 163.31883217384438
Iteration: 6, Func. Count: 66, Neg. LLF: 162.83573193606625
Iteration: 7, Func. Count: 76, Neg. LLF: 162.8190358074633
Iteration: 8, Func. Count: 86, Neg. LLF: 162.82609275405014
Iteration: 9, Func. Count: 97, Neg. LLF: 162.81739056486208
Iteration: 10, Func. Count: 107, Neg. LLF: 162.81636551344818
Iteration: 11, Func. Count: 117, Neg. LLF: 162.8108005459231
Iteration: 12, Func. Count: 127, Neg. LLF: 162.8007478458061
Iteration: 13, Func. Count: 137, Neg. LLF: 162.7846372819515
Iteration: 14, Func. Count: 147, Neg. LLF: 162.77013581597757
Iteration: 15, Func. Count: 157, Neg. LLF: 162.75881195184144
Iteration: 16, Func. Count: 167, Neg. LLF: 162.75659115585884
Iteration: 17, Func. Count: 177, Neg. LLF: 162.7564450600192
Iteration: 18, Func. Count: 187, Neg. LLF: 162.75644022434804
Iteration: 19, Func. Count: 197, Neg. LLF: 162.75643634086828
Iteration: 20, Func. Count: 206, Neg. LLF: 162.75643634090554
Optimization terminated successfully (Exit mode 0)
Current function value: 162.75643634086828
Iterations: 20
Function evaluations: 206
Gradient evaluations: 20
Iteration: 1, Func. Count: 12, Neg. LLF: 165.00211586660487
Iteration: 2, Func. Count: 24, Neg. LLF: 166.98523590879768
Iteration: 3, Func. Count: 36, Neg. LLF: 175.09663840105796
Iteration: 4, Func. Count: 48, Neg. LLF: 161.9061162651722
Iteration: 5, Func. Count: 59, Neg. LLF: 161.89137728088593
Iteration: 6, Func. Count: 71, Neg. LLF: 161.686294696807
Iteration: 7, Func. Count: 82, Neg. LLF: 161.67251802572005
Iteration: 8, Func. Count: 93, Neg. LLF: 161.66270146759385
Iteration: 9, Func. Count: 104, Neg. LLF: 161.64564223746083
Iteration: 10, Func. Count: 115, Neg. LLF: 161.58730151353032
Iteration: 11, Func. Count: 126, Neg. LLF: 161.50765982609627
Iteration: 12, Func. Count: 137, Neg. LLF: 161.44875029702075
Iteration: 13, Func. Count: 148, Neg. LLF: 161.70688685677382
Iteration: 14, Func. Count: 160, Neg. LLF: 161.4095550574084
Iteration: 15, Func. Count: 171, Neg. LLF: 161.3983382852438
Iteration: 16, Func. Count: 182, Neg. LLF: 161.39769855541195
Iteration: 17, Func. Count: 193, Neg. LLF: 161.39764027887665
Iteration: 18, Func. Count: 203, Neg. LLF: 161.3976402787947
Optimization terminated successfully (Exit mode 0)
Current function value: 161.39764027887665
Iterations: 18
Function evaluations: 203
Gradient evaluations: 18
Iteration: 1, Func. Count: 9, Neg. LLF: 164.2129845623652
Iteration: 2, Func. Count: 18, Neg. LLF: 163.9420218446538
Iteration: 3, Func. Count: 27, Neg. LLF: 163.6252143227426
Iteration: 4, Func. Count: 36, Neg. LLF: 162.51779721889437
Iteration: 5, Func. Count: 45, Neg. LLF: 162.2359332034596
Iteration: 6, Func. Count: 53, Neg. LLF: 162.76916327306043
Iteration: 7, Func. Count: 62, Neg. LLF: 162.16723689191318
Iteration: 8, Func. Count: 70, Neg. LLF: 162.16592586796054
Iteration: 9, Func. Count: 79, Neg. LLF: 162.16222890429987
Iteration: 10, Func. Count: 87, Neg. LLF: 162.16190307019167
Iteration: 11, Func. Count: 95, Neg. LLF: 162.16113548380656
Iteration: 12, Func. Count: 103, Neg. LLF: 162.15972748372386
Iteration: 13, Func. Count: 111, Neg. LLF: 162.15832038364394
Iteration: 14, Func. Count: 119, Neg. LLF: 162.15772437269166
Iteration: 15, Func. Count: 127, Neg. LLF: 162.1576534888601
Iteration: 16, Func. Count: 135, Neg. LLF: 162.1576499927363
Iteration: 17, Func. Count: 142, Neg. LLF: 162.1576499927363
Optimization terminated successfully (Exit mode 0)
Current function value: 162.1576499927363
Iterations: 17
Function evaluations: 142
Gradient evaluations: 17
Iteration: 1, Func. Count: 10, Neg. LLF: 3064.676063303231
Iteration: 2, Func. Count: 21, Neg. LLF: 164.18284239251415
Iteration: 3, Func. Count: 31, Neg. LLF: 160.65444656262588
Iteration: 4, Func. Count: 41, Neg. LLF: 160.48672031661584
Iteration: 5, Func. Count: 50, Neg. LLF: 160.46646697362024
Iteration: 6, Func. Count: 59, Neg. LLF: 160.46424233460706
Iteration: 7, Func. Count: 68, Neg. LLF: 160.4631983889126
Iteration: 8, Func. Count: 77, Neg. LLF: 160.46309348759192
Iteration: 9, Func. Count: 86, Neg. LLF: 160.46308265367392
Iteration: 10, Func. Count: 95, Neg. LLF: 160.46308207321349
Optimization terminated successfully (Exit mode 0)
Current function value: 160.46308207321349
Iterations: 10
Function evaluations: 95
Gradient evaluations: 10
Iteration: 1, Func. Count: 11, Neg. LLF: 22993283.36496118
Iteration: 2, Func. Count: 23, Neg. LLF: 209.77525018152897
Iteration: 3, Func. Count: 34, Neg. LLF: 161.5830577923953
Iteration: 4, Func. Count: 45, Neg. LLF: 160.54600125600487
Iteration: 5, Func. Count: 55, Neg. LLF: 160.4732854589023
Iteration: 6, Func. Count: 65, Neg. LLF: 160.4652878414212
Iteration: 7, Func. Count: 75, Neg. LLF: 160.46331794139414
Iteration: 8, Func. Count: 85, Neg. LLF: 160.46309671474847
Iteration: 9, Func. Count: 95, Neg. LLF: 160.4630878355059
Iteration: 10, Func. Count: 105, Neg. LLF: 160.46308206160276
Iteration: 11, Func. Count: 114, Neg. LLF: 160.46308206222773
Optimization terminated successfully (Exit mode 0)
Current function value: 160.46308206160276
Iterations: 11
Function evaluations: 114
Gradient evaluations: 11
Iteration: 1, Func. Count: 12, Neg. LLF: 236.61643810291162
Iteration: 2, Func. Count: 24, Neg. LLF: 161.06095833235452
Iteration: 3, Func. Count: 35, Neg. LLF: 166.1648020521814
Iteration: 4, Func. Count: 47, Neg. LLF: 187.0328055410077
Iteration: 5, Func. Count: 60, Neg. LLF: 160.9272920401113
Iteration: 6, Func. Count: 72, Neg. LLF: 160.69814280378858
Iteration: 7, Func. Count: 83, Neg. LLF: 160.6174749657904
Iteration: 8, Func. Count: 94, Neg. LLF: 160.5587397918778
Iteration: 9, Func. Count: 105, Neg. LLF: 160.45290941885304
Iteration: 10, Func. Count: 116, Neg. LLF: 160.4314028834877
Iteration: 11, Func. Count: 127, Neg. LLF: 160.44127349627558
Iteration: 12, Func. Count: 139, Neg. LLF: 160.42347220794903
Iteration: 13, Func. Count: 150, Neg. LLF: 160.42335519405984
Iteration: 14, Func. Count: 161, Neg. LLF: 160.42334954536014
Iteration: 15, Func. Count: 172, Neg. LLF: 160.4233482847092
Iteration: 16, Func. Count: 182, Neg. LLF: 160.42334828473898
Optimization terminated successfully (Exit mode 0)
Current function value: 160.4233482847092
Iterations: 16
Function evaluations: 182
Gradient evaluations: 16
Iteration: 1, Func. Count: 13, Neg. LLF: 237.62658834497134
Iteration: 2, Func. Count: 26, Neg. LLF: 161.12690633563207
Iteration: 3, Func. Count: 38, Neg. LLF: 160.59535532813786
Iteration: 4, Func. Count: 50, Neg. LLF: 230.1833026920996
Iteration: 5, Func. Count: 63, Neg. LLF: 210.3228532433641
Iteration: 6, Func. Count: 76, Neg. LLF: 160.35725126052228
Iteration: 7, Func. Count: 88, Neg. LLF: 163.71528249622315
Iteration: 8, Func. Count: 101, Neg. LLF: 160.2041385740552
Iteration: 9, Func. Count: 113, Neg. LLF: 160.17603919727682
Iteration: 10, Func. Count: 125, Neg. LLF: 160.14568217751605
Iteration: 11, Func. Count: 137, Neg. LLF: 160.10162208945604
Iteration: 12, Func. Count: 149, Neg. LLF: 160.06969350256028
Iteration: 13, Func. Count: 161, Neg. LLF: 160.05853994963158
Iteration: 14, Func. Count: 173, Neg. LLF: 160.05531900828126
Iteration: 15, Func. Count: 185, Neg. LLF: 160.05495884716711
Iteration: 16, Func. Count: 197, Neg. LLF: 160.05493611281227
Iteration: 17, Func. Count: 209, Neg. LLF: 160.05493490351157
Iteration: 18, Func. Count: 220, Neg. LLF: 160.05493490363196
Optimization terminated successfully (Exit mode 0)
Current function value: 160.05493490351157
Iterations: 18
Function evaluations: 220
Gradient evaluations: 18
Iteration: 1, Func. Count: 10, Neg. LLF: 167.082632218587
Iteration: 2, Func. Count: 20, Neg. LLF: 164.53871092704844
Iteration: 3, Func. Count: 31, Neg. LLF: 163.7309555854602
Iteration: 4, Func. Count: 42, Neg. LLF: 169.9449749029009
Iteration: 5, Func. Count: 52, Neg. LLF: 162.06379165541057
Iteration: 6, Func. Count: 61, Neg. LLF: 162.12565843299598
Iteration: 7, Func. Count: 71, Neg. LLF: 162.12704138038302
Iteration: 8, Func. Count: 81, Neg. LLF: 161.9410048936575
Iteration: 9, Func. Count: 90, Neg. LLF: 161.9401279860643
Iteration: 10, Func. Count: 99, Neg. LLF: 161.94002289252035
Iteration: 11, Func. Count: 108, Neg. LLF: 161.93974626475844
Iteration: 12, Func. Count: 117, Neg. LLF: 161.9394891237219
Iteration: 13, Func. Count: 126, Neg. LLF: 161.9389757516554
Iteration: 14, Func. Count: 135, Neg. LLF: 161.93862434248766
Iteration: 15, Func. Count: 144, Neg. LLF: 161.93849684941196
Iteration: 16, Func. Count: 153, Neg. LLF: 161.93848125513526
Iteration: 17, Func. Count: 162, Neg. LLF: 161.93847984033906
Iteration: 18, Func. Count: 170, Neg. LLF: 161.93847984034696
Optimization terminated successfully (Exit mode 0)
Current function value: 161.93847984033906
Iterations: 18
Function evaluations: 170
Gradient evaluations: 18
Iteration: 1, Func. Count: 11, Neg. LLF: 1685.6678771033853
Iteration: 2, Func. Count: 23, Neg. LLF: 166.2852441874178
Iteration: 3, Func. Count: 34, Neg. LLF: 160.7336056298876
Iteration: 4, Func. Count: 45, Neg. LLF: 160.58928342780766
Iteration: 5, Func. Count: 56, Neg. LLF: 160.48239444461254
Iteration: 6, Func. Count: 66, Neg. LLF: 160.4651303204364
Iteration: 7, Func. Count: 76, Neg. LLF: 160.46297808905376
Iteration: 8, Func. Count: 86, Neg. LLF: 160.4626943229387
Iteration: 9, Func. Count: 96, Neg. LLF: 160.46268088930853
Iteration: 10, Func. Count: 106, Neg. LLF: 160.46267735946537
Iteration: 11, Func. Count: 116, Neg. LLF: 160.46267535391567
Iteration: 12, Func. Count: 125, Neg. LLF: 160.46267535403754
Optimization terminated successfully (Exit mode 0)
Current function value: 160.46267535391567
Iterations: 12
Function evaluations: 125
Gradient evaluations: 12
Iteration: 1, Func. Count: 12, Neg. LLF: 22964232.55933973
Iteration: 2, Func. Count: 25, Neg. LLF: 200.97767633491196
Iteration: 3, Func. Count: 37, Neg. LLF: 161.68404814954516
Iteration: 4, Func. Count: 49, Neg. LLF: 160.6713369253222
Iteration: 5, Func. Count: 61, Neg. LLF: 160.41703722890122
Iteration: 6, Func. Count: 72, Neg. LLF: 160.3895442701864
Iteration: 7, Func. Count: 83, Neg. LLF: 160.3845053165212
Iteration: 8, Func. Count: 94, Neg. LLF: 160.38082976525843
Iteration: 9, Func. Count: 105, Neg. LLF: 160.380090258758
Iteration: 10, Func. Count: 116, Neg. LLF: 160.3800206720482
Iteration: 11, Func. Count: 127, Neg. LLF: 160.38000767865458
Iteration: 12, Func. Count: 138, Neg. LLF: 160.38000458865878
Iteration: 13, Func. Count: 148, Neg. LLF: 160.38000458860031
Optimization terminated successfully (Exit mode 0)
Current function value: 160.38000458865878
Iterations: 13
Function evaluations: 148
Gradient evaluations: 13
Iteration: 1, Func. Count: 13, Neg. LLF: 190.28604224317715
Iteration: 2, Func. Count: 26, Neg. LLF: 160.9315564800324
Iteration: 3, Func. Count: 39, Neg. LLF: 165.09341401259613
Iteration: 4, Func. Count: 52, Neg. LLF: 163.8284302403976
Iteration: 5, Func. Count: 65, Neg. LLF: 159.55143037274848
Iteration: 6, Func. Count: 77, Neg. LLF: 159.46531726919753
Iteration: 7, Func. Count: 89, Neg. LLF: 159.4408375938542
Iteration: 8, Func. Count: 101, Neg. LLF: 159.3786217289788
Iteration: 9, Func. Count: 113, Neg. LLF: 159.35066382264517
Iteration: 10, Func. Count: 125, Neg. LLF: 159.32416800965228
Iteration: 11, Func. Count: 137, Neg. LLF: 159.32021285698417
Iteration: 12, Func. Count: 149, Neg. LLF: 159.31915465701724
Iteration: 13, Func. Count: 161, Neg. LLF: 159.3191133711457
Iteration: 14, Func. Count: 173, Neg. LLF: 159.31910559050846
Iteration: 15, Func. Count: 185, Neg. LLF: 159.31910482461873
Optimization terminated successfully (Exit mode 0)
Current function value: 159.31910482461873
Iterations: 15
Function evaluations: 185
Gradient evaluations: 15
Iteration: 1, Func. Count: 14, Neg. LLF: 191.61795631240332
Iteration: 2, Func. Count: 28, Neg. LLF: 275.9601013648152
Iteration: 3, Func. Count: 43, Neg. LLF: 168.3142766099492
Iteration: 4, Func. Count: 57, Neg. LLF: 161.4268637154793
Iteration: 5, Func. Count: 71, Neg. LLF: 159.70738682097908
Iteration: 6, Func. Count: 84, Neg. LLF: 159.84954557877433
Iteration: 7, Func. Count: 98, Neg. LLF: 162.1481408274442
Iteration: 8, Func. Count: 113, Neg. LLF: 161.11449318672464
Iteration: 9, Func. Count: 127, Neg. LLF: 159.08650719695382
Iteration: 10, Func. Count: 140, Neg. LLF: 159.03662379133263
Iteration: 11, Func. Count: 153, Neg. LLF: 159.02602358290966
Iteration: 12, Func. Count: 166, Neg. LLF: 159.0238874995777
Iteration: 13, Func. Count: 179, Neg. LLF: 159.02343247032988
Iteration: 14, Func. Count: 192, Neg. LLF: 159.02243927786043
Iteration: 15, Func. Count: 205, Neg. LLF: 159.02123590958283
Iteration: 16, Func. Count: 218, Neg. LLF: 159.02046203884862
Iteration: 17, Func. Count: 231, Neg. LLF: 159.02009335021174
Iteration: 18, Func. Count: 244, Neg. LLF: 159.01997624729353
Iteration: 19, Func. Count: 257, Neg. LLF: 159.01995548576488
Iteration: 20, Func. Count: 270, Neg. LLF: 159.01995357669395
Iteration: 21, Func. Count: 282, Neg. LLF: 159.0199535545589
Optimization terminated successfully (Exit mode 0)
Current function value: 159.01995357669395
Iterations: 21
Function evaluations: 282
Gradient evaluations: 21
Iteration: 1, Func. Count: 11, Neg. LLF: 166.07066147656178
Iteration: 2, Func. Count: 22, Neg. LLF: 164.14521753445766
Iteration: 3, Func. Count: 34, Neg. LLF: 163.56250775427512
Iteration: 4, Func. Count: 45, Neg. LLF: 161.56925473154755
Iteration: 5, Func. Count: 55, Neg. LLF: 162.07104727231683
Iteration: 6, Func. Count: 66, Neg. LLF: 164.1494376713803
Iteration: 7, Func. Count: 77, Neg. LLF: 161.23679414470183
Iteration: 8, Func. Count: 87, Neg. LLF: 161.5410377146436
Iteration: 9, Func. Count: 98, Neg. LLF: 161.2137161444446
Iteration: 10, Func. Count: 108, Neg. LLF: 161.1938923465125
Iteration: 11, Func. Count: 118, Neg. LLF: 161.07541443021464
Iteration: 12, Func. Count: 128, Neg. LLF: 160.98121207931612
Iteration: 13, Func. Count: 138, Neg. LLF: 160.94948569460428
Iteration: 14, Func. Count: 148, Neg. LLF: 160.94028545349877
Iteration: 15, Func. Count: 158, Neg. LLF: 160.93938619944126
Iteration: 16, Func. Count: 168, Neg. LLF: 160.93928185520795
Iteration: 17, Func. Count: 178, Neg. LLF: 160.93927934288172
Iteration: 18, Func. Count: 187, Neg. LLF: 160.93927934287836
Optimization terminated successfully (Exit mode 0)
Current function value: 160.93927934288172
Iterations: 18
Function evaluations: 187
Gradient evaluations: 18
Iteration: 1, Func. Count: 12, Neg. LLF: 1057.0004555061225
Iteration: 2, Func. Count: 24, Neg. LLF: 161.29325594130987
Iteration: 3, Func. Count: 36, Neg. LLF: 160.48456801207502
Iteration: 4, Func. Count: 47, Neg. LLF: 175.07192801501114
Iteration: 5, Func. Count: 59, Neg. LLF: 160.47844275380484
Iteration: 6, Func. Count: 71, Neg. LLF: 160.4633613655683
Iteration: 7, Func. Count: 82, Neg. LLF: 160.46273857629842
Iteration: 8, Func. Count: 93, Neg. LLF: 160.46270906987283
Iteration: 9, Func. Count: 104, Neg. LLF: 160.4626799425202
Iteration: 10, Func. Count: 115, Neg. LLF: 160.4626754863979
Iteration: 11, Func. Count: 125, Neg. LLF: 160.46267548638966
Optimization terminated successfully (Exit mode 0)
Current function value: 160.4626754863979
Iterations: 11
Function evaluations: 125
Gradient evaluations: 11
Iteration: 1, Func. Count: 13, Neg. LLF: 196.29975248955824
Iteration: 2, Func. Count: 26, Neg. LLF: 160.77368506466664
Iteration: 3, Func. Count: 39, Neg. LLF: 161.160930897052
Iteration: 4, Func. Count: 52, Neg. LLF: 162.2420950265404
Iteration: 5, Func. Count: 65, Neg. LLF: 160.4941190558193
Iteration: 6, Func. Count: 77, Neg. LLF: 161.64612270532552
Iteration: 7, Func. Count: 90, Neg. LLF: 160.48315915960535
Iteration: 8, Func. Count: 102, Neg. LLF: 160.48499146557828
Iteration: 9, Func. Count: 115, Neg. LLF: 160.45930762265291
Iteration: 10, Func. Count: 127, Neg. LLF: 160.4504883314544
Iteration: 11, Func. Count: 139, Neg. LLF: 160.40735518972355
Iteration: 12, Func. Count: 151, Neg. LLF: 160.39896628692102
Iteration: 13, Func. Count: 163, Neg. LLF: 160.38545276894868
Iteration: 14, Func. Count: 175, Neg. LLF: 160.3812971348623
Iteration: 15, Func. Count: 187, Neg. LLF: 160.38010824842434
Iteration: 16, Func. Count: 199, Neg. LLF: 160.38000632127515
Iteration: 17, Func. Count: 211, Neg. LLF: 160.3800043492609
Iteration: 18, Func. Count: 222, Neg. LLF: 160.38000434930356
Optimization terminated successfully (Exit mode 0)
Current function value: 160.3800043492609
Iterations: 18
Function evaluations: 222
Gradient evaluations: 18
Iteration: 1, Func. Count: 14, Neg. LLF: 192.38783463969935
Iteration: 2, Func. Count: 28, Neg. LLF: 161.890578370349
Iteration: 3, Func. Count: 42, Neg. LLF: 163.77591696780053
Iteration: 4, Func. Count: 56, Neg. LLF: 164.501247095919
Iteration: 5, Func. Count: 70, Neg. LLF: 158.77701353406113
Iteration: 6, Func. Count: 83, Neg. LLF: 158.25434351497418
Iteration: 7, Func. Count: 96, Neg. LLF: 158.19467562363738
Iteration: 8, Func. Count: 109, Neg. LLF: 158.16058041306636
Iteration: 9, Func. Count: 122, Neg. LLF: 158.13534453364474
Iteration: 10, Func. Count: 135, Neg. LLF: 158.08069360152837
Iteration: 11, Func. Count: 148, Neg. LLF: 158.06316551556154
Iteration: 12, Func. Count: 161, Neg. LLF: 158.06044284039035
Iteration: 13, Func. Count: 174, Neg. LLF: 158.06029934034635
Iteration: 14, Func. Count: 187, Neg. LLF: 158.0602968418777
Iteration: 15, Func. Count: 199, Neg. LLF: 158.06029680289637
Optimization terminated successfully (Exit mode 0)
Current function value: 158.0602968418777
Iterations: 15
Function evaluations: 199
Gradient evaluations: 15
Iteration: 1, Func. Count: 15, Neg. LLF: 191.78841941818456
Iteration: 2, Func. Count: 30, Neg. LLF: 321.5108356149913
Iteration: 3, Func. Count: 46, Neg. LLF: 166.47282489788896
Iteration: 4, Func. Count: 61, Neg. LLF: 161.06763192418984
Iteration: 5, Func. Count: 76, Neg. LLF: 159.75168890060363
Iteration: 6, Func. Count: 91, Neg. LLF: 160.12901770221396
Iteration: 7, Func. Count: 106, Neg. LLF: 159.18747983348166
Iteration: 8, Func. Count: 121, Neg. LLF: 159.09083777500703
Iteration: 9, Func. Count: 136, Neg. LLF: 158.58535847931856
Iteration: 10, Func. Count: 150, Neg. LLF: 158.56186938617705
Iteration: 11, Func. Count: 164, Neg. LLF: 158.56535532554832
Iteration: 12, Func. Count: 179, Neg. LLF: 158.5591105079397
Iteration: 13, Func. Count: 193, Neg. LLF: 158.55904232859555
Iteration: 14, Func. Count: 207, Neg. LLF: 158.55903393535883
Iteration: 15, Func. Count: 221, Neg. LLF: 158.5589932228924
Iteration: 16, Func. Count: 235, Neg. LLF: 158.5589599604913
Iteration: 17, Func. Count: 248, Neg. LLF: 158.55895993635372
Optimization terminated successfully (Exit mode 0)
Current function value: 158.5589599604913
Iterations: 17
Function evaluations: 248
Gradient evaluations: 17
Iteration: 1, Func. Count: 12, Neg. LLF: 165.31115090989945
Iteration: 2, Func. Count: 24, Neg. LLF: 163.18250465053015
Iteration: 3, Func. Count: 36, Neg. LLF: 164.69134940331807
Iteration: 4, Func. Count: 49, Neg. LLF: 162.36470138764807
Iteration: 5, Func. Count: 61, Neg. LLF: 161.41361088956933
Iteration: 6, Func. Count: 72, Neg. LLF: 162.47613588643804
Iteration: 7, Func. Count: 84, Neg. LLF: 161.35300525394177
Iteration: 8, Func. Count: 96, Neg. LLF: 161.26698612135985
Iteration: 9, Func. Count: 108, Neg. LLF: 161.21321869462167
Iteration: 10, Func. Count: 119, Neg. LLF: 161.20061296290027
Iteration: 11, Func. Count: 130, Neg. LLF: 161.1748383918047
Iteration: 12, Func. Count: 141, Neg. LLF: 161.14535762768293
Iteration: 13, Func. Count: 152, Neg. LLF: 161.04654923390316
Iteration: 14, Func. Count: 163, Neg. LLF: 160.97771709155518
Iteration: 15, Func. Count: 174, Neg. LLF: 160.95421053787493
Iteration: 16, Func. Count: 185, Neg. LLF: 160.92910295122255
Iteration: 17, Func. Count: 196, Neg. LLF: 160.93142218626002
Iteration: 18, Func. Count: 208, Neg. LLF: 160.92045177086175
Iteration: 19, Func. Count: 219, Neg. LLF: 160.918283299424
Iteration: 20, Func. Count: 230, Neg. LLF: 160.9172341215152
Iteration: 21, Func. Count: 241, Neg. LLF: 160.9170069156785
Iteration: 22, Func. Count: 252, Neg. LLF: 160.91696513792272
Iteration: 23, Func. Count: 263, Neg. LLF: 160.91696217471448
Iteration: 24, Func. Count: 273, Neg. LLF: 160.91696205714504
Optimization terminated successfully (Exit mode 0)
Current function value: 160.91696217471448
Iterations: 24
Function evaluations: 273
Gradient evaluations: 24
Iteration: 1, Func. Count: 13, Neg. LLF: 946.3719224434293
Iteration: 2, Func. Count: 26, Neg. LLF: 262.6319481164627
Iteration: 3, Func. Count: 40, Neg. LLF: 161.12672135837315
Iteration: 4, Func. Count: 53, Neg. LLF: 160.48447993003907
Iteration: 5, Func. Count: 65, Neg. LLF: 173.7647632166241
Iteration: 6, Func. Count: 79, Neg. LLF: 160.4620406160757
Iteration: 7, Func. Count: 91, Neg. LLF: 160.46175846049914
Iteration: 8, Func. Count: 103, Neg. LLF: 160.46099807750105
Iteration: 9, Func. Count: 115, Neg. LLF: 160.46088600699025
Iteration: 10, Func. Count: 127, Neg. LLF: 160.4607906778329
Iteration: 11, Func. Count: 139, Neg. LLF: 160.4607891962285
Iteration: 12, Func. Count: 150, Neg. LLF: 160.46078919626248
Optimization terminated successfully (Exit mode 0)
Current function value: 160.4607891962285
Iterations: 12
Function evaluations: 150
Gradient evaluations: 12
Iteration: 1, Func. Count: 14, Neg. LLF: 198.18501720813697
Iteration: 2, Func. Count: 28, Neg. LLF: 164.84467997602397
Iteration: 3, Func. Count: 42, Neg. LLF: 161.1969310373088
Iteration: 4, Func. Count: 56, Neg. LLF: 162.7635859663316
Iteration: 5, Func. Count: 70, Neg. LLF: 164.31251928523713
Iteration: 6, Func. Count: 84, Neg. LLF: 160.49625124608372
Iteration: 7, Func. Count: 98, Neg. LLF: 160.43596242029736
Iteration: 8, Func. Count: 112, Neg. LLF: 160.4586297595221
Iteration: 9, Func. Count: 126, Neg. LLF: 160.38682670672472
Iteration: 10, Func. Count: 139, Neg. LLF: 160.3834567763086
Iteration: 11, Func. Count: 152, Neg. LLF: 160.37893517695935
Iteration: 12, Func. Count: 165, Neg. LLF: 160.37219365724093
Iteration: 13, Func. Count: 178, Neg. LLF: 160.3612213502814
Iteration: 14, Func. Count: 191, Neg. LLF: 160.34347426949367
Iteration: 15, Func. Count: 204, Neg. LLF: 160.34072228428508
Iteration: 16, Func. Count: 217, Neg. LLF: 160.33793213295715
Iteration: 17, Func. Count: 230, Neg. LLF: 160.3374900831851
Iteration: 18, Func. Count: 243, Neg. LLF: 160.3374426837196
Iteration: 19, Func. Count: 256, Neg. LLF: 160.33744137154852
Iteration: 20, Func. Count: 269, Neg. LLF: 160.337440656756
Optimization terminated successfully (Exit mode 0)
Current function value: 160.337440656756
Iterations: 20
Function evaluations: 269
Gradient evaluations: 20
Iteration: 1, Func. Count: 15, Neg. LLF: 192.01393667865938
Iteration: 2, Func. Count: 30, Neg. LLF: 162.03477818147522
Iteration: 3, Func. Count: 45, Neg. LLF: 159.83425919704317
Iteration: 4, Func. Count: 59, Neg. LLF: 164.16900830046575
Iteration: 5, Func. Count: 74, Neg. LLF: 160.27052745836775
Iteration: 6, Func. Count: 89, Neg. LLF: 159.135485053867
Iteration: 7, Func. Count: 103, Neg. LLF: 158.47161973498655
Iteration: 8, Func. Count: 117, Neg. LLF: 158.76943021323515
Iteration: 9, Func. Count: 132, Neg. LLF: 158.4092015057496
Iteration: 10, Func. Count: 147, Neg. LLF: 158.10718202026308
Iteration: 11, Func. Count: 161, Neg. LLF: 158.0880131652226
Iteration: 12, Func. Count: 175, Neg. LLF: 158.07635735938234
Iteration: 13, Func. Count: 189, Neg. LLF: 158.0708506021463
Iteration: 14, Func. Count: 203, Neg. LLF: 158.06156366848896
Iteration: 15, Func. Count: 217, Neg. LLF: 158.06036489347414
Iteration: 16, Func. Count: 231, Neg. LLF: 158.06029751671034
Iteration: 17, Func. Count: 244, Neg. LLF: 158.06029747772203
Optimization terminated successfully (Exit mode 0)
Current function value: 158.06029751671034
Iterations: 17
Function evaluations: 244
Gradient evaluations: 17
Iteration: 1, Func. Count: 16, Neg. LLF: 191.85182061467486
Iteration: 2, Func. Count: 32, Neg. LLF: 341.0419093844585
Iteration: 3, Func. Count: 49, Neg. LLF: 164.74390956566648
Iteration: 4, Func. Count: 65, Neg. LLF: 164.1075844498442
Iteration: 5, Func. Count: 81, Neg. LLF: 159.4528216700252
Iteration: 6, Func. Count: 96, Neg. LLF: 159.63676614170146
Iteration: 7, Func. Count: 112, Neg. LLF: 162.81979129246014
Iteration: 8, Func. Count: 130, Neg. LLF: 158.66190293012724
Iteration: 9, Func. Count: 145, Neg. LLF: 158.59953672869727
Iteration: 10, Func. Count: 160, Neg. LLF: 158.6035958725685
Iteration: 11, Func. Count: 176, Neg. LLF: 158.56043574216687
Iteration: 12, Func. Count: 191, Neg. LLF: 158.55958878376418
Iteration: 13, Func. Count: 206, Neg. LLF: 158.559064629455
Iteration: 14, Func. Count: 221, Neg. LLF: 158.5590380315195
Iteration: 15, Func. Count: 236, Neg. LLF: 158.55901775483173
Iteration: 16, Func. Count: 251, Neg. LLF: 158.55900763459118
Iteration: 17, Func. Count: 266, Neg. LLF: 158.55898491815674
Iteration: 18, Func. Count: 281, Neg. LLF: 158.55896789344231
Iteration: 19, Func. Count: 296, Neg. LLF: 158.55896024959424
Iteration: 20, Func. Count: 311, Neg. LLF: 158.55895935733767
Optimization terminated successfully (Exit mode 0)
Current function value: 158.55895935733767
Iterations: 20
Function evaluations: 311
Gradient evaluations: 20
Iteration: 1, Func. Count: 6, Neg. LLF: 5055.537345817793
Iteration: 2, Func. Count: 13, Neg. LLF: 164.40206615272118
Iteration: 3, Func. Count: 19, Neg. LLF: 160.6797486408526
Iteration: 4, Func. Count: 25, Neg. LLF: 160.4830042017264
Iteration: 5, Func. Count: 30, Neg. LLF: 160.46677699427818
Iteration: 6, Func. Count: 35, Neg. LLF: 160.46422250272767
Iteration: 7, Func. Count: 40, Neg. LLF: 160.4632000718183
Iteration: 8, Func. Count: 45, Neg. LLF: 160.4630949724716
Iteration: 9, Func. Count: 50, Neg. LLF: 160.46308284182555
Iteration: 10, Func. Count: 55, Neg. LLF: 160.46308207965595
Optimization terminated successfully (Exit mode 0)
Current function value: 160.46308207965595
Iterations: 10
Function evaluations: 55
Gradient evaluations: 10
Iteration: 1, Func. Count: 5, Neg. LLF: 165.64283631258388
Iteration: 2, Func. Count: 10, Neg. LLF: 165.58139550707295
Iteration: 3, Func. Count: 15, Neg. LLF: 164.1786738765199
Iteration: 4, Func. Count: 19, Neg. LLF: 163.53687183157132
Iteration: 5, Func. Count: 23, Neg. LLF: 163.04509471504528
Iteration: 6, Func. Count: 27, Neg. LLF: 162.9340933297209
Iteration: 7, Func. Count: 31, Neg. LLF: 162.9185841522371
Iteration: 8, Func. Count: 35, Neg. LLF: 162.91829036024635
Iteration: 9, Func. Count: 39, Neg. LLF: 162.9182852342965
Iteration: 10, Func. Count: 43, Neg. LLF: 162.91828166557252
Iteration: 11, Func. Count: 46, Neg. LLF: 162.9182816655989
Optimization terminated successfully (Exit mode 0)
Current function value: 162.91828166557252
Iterations: 11
Function evaluations: 46
Gradient evaluations: 11
Iteration: 1, Func. Count: 6, Neg. LLF: 19861294.315403085
Iteration: 2, Func. Count: 13, Neg. LLF: 159.76633786479937
Iteration: 3, Func. Count: 19, Neg. LLF: 158.8531446846373
Iteration: 4, Func. Count: 25, Neg. LLF: 158.24426300819545
Iteration: 5, Func. Count: 30, Neg. LLF: 158.18255035406864
Iteration: 6, Func. Count: 35, Neg. LLF: 158.18017784539634
Iteration: 7, Func. Count: 40, Neg. LLF: 158.18012568094585
Iteration: 8, Func. Count: 45, Neg. LLF: 158.18012448263102
Iteration: 9, Func. Count: 49, Neg. LLF: 158.18012448270474
Optimization terminated successfully (Exit mode 0)
Current function value: 158.18012448263102
Iterations: 9
Function evaluations: 49
Gradient evaluations: 9
Iteration: 1, Func. Count: 7, Neg. LLF: 20325990.397195656
Iteration: 2, Func. Count: 15, Neg. LLF: 171.85744467645097
Iteration: 3, Func. Count: 22, Neg. LLF: 159.79880990950244
Iteration: 4, Func. Count: 29, Neg. LLF: 158.37087584665622
Iteration: 5, Func. Count: 35, Neg. LLF: 158.28720955843062
Iteration: 6, Func. Count: 41, Neg. LLF: 158.20848969783367
Iteration: 7, Func. Count: 47, Neg. LLF: 158.18154731266935
Iteration: 8, Func. Count: 53, Neg. LLF: 158.1803206712631
Iteration: 9, Func. Count: 59, Neg. LLF: 158.18025332945263
Iteration: 10, Func. Count: 66, Neg. LLF: 158.18012449274673
Iteration: 11, Func. Count: 71, Neg. LLF: 158.180124493046
Optimization terminated successfully (Exit mode 0)
Current function value: 158.18012449274673
Iterations: 11
Function evaluations: 71
Gradient evaluations: 11
Iteration: 1, Func. Count: 8, Neg. LLF: 415.4288392593966
Iteration: 2, Func. Count: 17, Neg. LLF: 226.52716652245158
Iteration: 3, Func. Count: 25, Neg. LLF: 165.2488226860842
Iteration: 4, Func. Count: 33, Neg. LLF: 159.07232334763688
Iteration: 5, Func. Count: 40, Neg. LLF: 158.9729335205659
Iteration: 6, Func. Count: 47, Neg. LLF: 158.83153008298848
Iteration: 7, Func. Count: 55, Neg. LLF: 158.30017599836623
Iteration: 8, Func. Count: 62, Neg. LLF: 158.18563057429841
Iteration: 9, Func. Count: 69, Neg. LLF: 158.14925186139843
Iteration: 10, Func. Count: 76, Neg. LLF: 158.14871441625897
Iteration: 11, Func. Count: 84, Neg. LLF: 158.1417267453461
Iteration: 12, Func. Count: 91, Neg. LLF: 158.14150162360346
Iteration: 13, Func. Count: 98, Neg. LLF: 158.14149971379916
Iteration: 14, Func. Count: 104, Neg. LLF: 158.14149971383657
Optimization terminated successfully (Exit mode 0)
Current function value: 158.14149971379916
Iterations: 14
Function evaluations: 104
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 417.8782047962882
Iteration: 2, Func. Count: 18, Neg. LLF: 273.7570768327247
Iteration: 3, Func. Count: 27, Neg. LLF: 159.5435771988641
Iteration: 4, Func. Count: 35, Neg. LLF: 161.21040558145165
Iteration: 5, Func. Count: 44, Neg. LLF: 162.4120685058841
Iteration: 6, Func. Count: 53, Neg. LLF: 158.28183146109737
Iteration: 7, Func. Count: 61, Neg. LLF: 158.00894079932743
Iteration: 8, Func. Count: 69, Neg. LLF: 158.0210396772714
Iteration: 9, Func. Count: 78, Neg. LLF: 157.9174609572084
Iteration: 10, Func. Count: 86, Neg. LLF: 157.9066357553331
Iteration: 11, Func. Count: 94, Neg. LLF: 157.88958451664993
Iteration: 12, Func. Count: 102, Neg. LLF: 157.88800152008167
Iteration: 13, Func. Count: 110, Neg. LLF: 157.88703729239955
Iteration: 14, Func. Count: 118, Neg. LLF: 157.8869287930222
Iteration: 15, Func. Count: 126, Neg. LLF: 157.8869260549418
Iteration: 16, Func. Count: 133, Neg. LLF: 157.88692605504437
Optimization terminated successfully (Exit mode 0)
Current function value: 157.8869260549418
Iterations: 16
Function evaluations: 133
Gradient evaluations: 16
Iteration: 1, Func. Count: 6, Neg. LLF: 164.86499473597343
Iteration: 2, Func. Count: 12, Neg. LLF: 163.38615343521198
Iteration: 3, Func. Count: 18, Neg. LLF: 161.9133774035879
Iteration: 4, Func. Count: 24, Neg. LLF: 161.5961218839891
Iteration: 5, Func. Count: 29, Neg. LLF: 161.57430136921116
Iteration: 6, Func. Count: 34, Neg. LLF: 161.53740940333591
Iteration: 7, Func. Count: 39, Neg. LLF: 161.51484037101957
Iteration: 8, Func. Count: 44, Neg. LLF: 161.50634501690138
Iteration: 9, Func. Count: 49, Neg. LLF: 161.5025489294683
Iteration: 10, Func. Count: 54, Neg. LLF: 161.500136067629
Iteration: 11, Func. Count: 59, Neg. LLF: 161.49890105346242
Iteration: 12, Func. Count: 64, Neg. LLF: 161.4986368012862
Iteration: 13, Func. Count: 69, Neg. LLF: 161.49861982573566
Iteration: 14, Func. Count: 73, Neg. LLF: 161.49861982577139
Optimization terminated successfully (Exit mode 0)
Current function value: 161.49861982573566
Iterations: 14
Function evaluations: 73
Gradient evaluations: 14
Iteration: 1, Func. Count: 7, Neg. LLF: 19907164.461425766
Iteration: 2, Func. Count: 15, Neg. LLF: 160.83959930530452
Iteration: 3, Func. Count: 22, Neg. LLF: 158.9488052263506
Iteration: 4, Func. Count: 29, Neg. LLF: 158.26619529396177
Iteration: 5, Func. Count: 35, Neg. LLF: 158.20815387665655
Iteration: 6, Func. Count: 41, Neg. LLF: 158.2225845359932
Iteration: 7, Func. Count: 48, Neg. LLF: 158.17818664394485
Iteration: 8, Func. Count: 54, Neg. LLF: 158.17775243124706
Iteration: 9, Func. Count: 60, Neg. LLF: 158.17742408536418
Iteration: 10, Func. Count: 66, Neg. LLF: 158.17742304120458
Iteration: 11, Func. Count: 71, Neg. LLF: 158.17742304120057
Optimization terminated successfully (Exit mode 0)
Current function value: 158.17742304120458
Iterations: 11
Function evaluations: 71
Gradient evaluations: 11
Iteration: 1, Func. Count: 8, Neg. LLF: 20293607.068398196
Iteration: 2, Func. Count: 17, Neg. LLF: 179.40720945608845
Iteration: 3, Func. Count: 26, Neg. LLF: 160.4623628381693
Iteration: 4, Func. Count: 34, Neg. LLF: 158.14310620479145
Iteration: 5, Func. Count: 41, Neg. LLF: 158.71353845055722
Iteration: 6, Func. Count: 49, Neg. LLF: 158.0760730352464
Iteration: 7, Func. Count: 56, Neg. LLF: 158.05329238038237
Iteration: 8, Func. Count: 63, Neg. LLF: 158.0432046237172
Iteration: 9, Func. Count: 70, Neg. LLF: 158.0427131874293
Iteration: 10, Func. Count: 77, Neg. LLF: 158.0424011118134
Iteration: 11, Func. Count: 84, Neg. LLF: 158.04237927852284
Iteration: 12, Func. Count: 91, Neg. LLF: 158.0423695851817
Iteration: 13, Func. Count: 97, Neg. LLF: 158.04236958531618
Optimization terminated successfully (Exit mode 0)
Current function value: 158.0423695851817
Iterations: 13
Function evaluations: 97
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 420.42741057176033
Iteration: 2, Func. Count: 19, Neg. LLF: 205.05784435942704
Iteration: 3, Func. Count: 28, Neg. LLF: 160.27711109185668
Iteration: 4, Func. Count: 37, Neg. LLF: 158.12690063799766
Iteration: 5, Func. Count: 45, Neg. LLF: 157.5479384583859
Iteration: 6, Func. Count: 53, Neg. LLF: 168.24695451374532
Iteration: 7, Func. Count: 62, Neg. LLF: 157.36982601471846
Iteration: 8, Func. Count: 70, Neg. LLF: 157.52243220486454
Iteration: 9, Func. Count: 79, Neg. LLF: 157.205919973461
Iteration: 10, Func. Count: 87, Neg. LLF: 157.19796577853873
Iteration: 11, Func. Count: 95, Neg. LLF: 157.1968622655196
Iteration: 12, Func. Count: 103, Neg. LLF: 157.19613625149518
Iteration: 13, Func. Count: 111, Neg. LLF: 157.19454896577312
Iteration: 14, Func. Count: 119, Neg. LLF: 157.1940337102905
Iteration: 15, Func. Count: 127, Neg. LLF: 157.1939098339099
Iteration: 16, Func. Count: 135, Neg. LLF: 157.19390657735022
Iteration: 17, Func. Count: 142, Neg. LLF: 157.19390657734763
Optimization terminated successfully (Exit mode 0)
Current function value: 157.19390657735022
Iterations: 17
Function evaluations: 142
Gradient evaluations: 17
Iteration: 1, Func. Count: 10, Neg. LLF: 422.3857361984755
Iteration: 2, Func. Count: 20, Neg. LLF: 719.7813733563473
Iteration: 3, Func. Count: 30, Neg. LLF: 162.3064242294122
Iteration: 4, Func. Count: 40, Neg. LLF: 157.97756413828427
Iteration: 5, Func. Count: 49, Neg. LLF: 158.49715230067287
Iteration: 6, Func. Count: 59, Neg. LLF: 157.5532779459789
Iteration: 7, Func. Count: 69, Neg. LLF: 157.3407385881267
Iteration: 8, Func. Count: 79, Neg. LLF: 157.28578738895843
Iteration: 9, Func. Count: 89, Neg. LLF: 157.27067561253335
Iteration: 10, Func. Count: 98, Neg. LLF: 157.26689561188644
Iteration: 11, Func. Count: 107, Neg. LLF: 157.2634302559943
Iteration: 12, Func. Count: 116, Neg. LLF: 157.26202091497944
Iteration: 13, Func. Count: 125, Neg. LLF: 157.25832319779724
Iteration: 14, Func. Count: 134, Neg. LLF: 157.25816000475186
Iteration: 15, Func. Count: 143, Neg. LLF: 157.2581524483559
Iteration: 16, Func. Count: 152, Neg. LLF: 157.2581514135406
Iteration: 17, Func. Count: 160, Neg. LLF: 157.25815141355798
Optimization terminated successfully (Exit mode 0)
Current function value: 157.2581514135406
Iterations: 17
Function evaluations: 160
Gradient evaluations: 17
Iteration: 1, Func. Count: 7, Neg. LLF: 168.94175206391674
Iteration: 2, Func. Count: 15, Neg. LLF: 163.53925146042366
Iteration: 3, Func. Count: 22, Neg. LLF: 164.2441213753111
Iteration: 4, Func. Count: 29, Neg. LLF: 160.77114248131466
Iteration: 5, Func. Count: 35, Neg. LLF: 160.71037583902316
Iteration: 6, Func. Count: 41, Neg. LLF: 160.64332893026221
Iteration: 7, Func. Count: 47, Neg. LLF: 160.6253828799786
Iteration: 8, Func. Count: 53, Neg. LLF: 160.59422653906006
Iteration: 9, Func. Count: 59, Neg. LLF: 160.57940413730137
Iteration: 10, Func. Count: 65, Neg. LLF: 160.5497909426108
Iteration: 11, Func. Count: 71, Neg. LLF: 160.53181160958653
Iteration: 12, Func. Count: 77, Neg. LLF: 160.51601227490724
Iteration: 13, Func. Count: 83, Neg. LLF: 160.4949775033205
Iteration: 14, Func. Count: 89, Neg. LLF: 160.47622501991012
Iteration: 15, Func. Count: 95, Neg. LLF: 160.47122778090656
Iteration: 16, Func. Count: 101, Neg. LLF: 160.47053974998212
Iteration: 17, Func. Count: 107, Neg. LLF: 160.4704960042974
Iteration: 18, Func. Count: 113, Neg. LLF: 160.47049427643947
Iteration: 19, Func. Count: 118, Neg. LLF: 160.4704942764441
Optimization terminated successfully (Exit mode 0)
Current function value: 160.47049427643947
Iterations: 19
Function evaluations: 118
Gradient evaluations: 19
Iteration: 1, Func. Count: 8, Neg. LLF: 20002875.39822044
Iteration: 2, Func. Count: 17, Neg. LLF: 161.4249956231289
Iteration: 3, Func. Count: 25, Neg. LLF: 159.0983847749386
Iteration: 4, Func. Count: 33, Neg. LLF: 158.27081150040956
Iteration: 5, Func. Count: 40, Neg. LLF: 158.26398574853496
Iteration: 6, Func. Count: 48, Neg. LLF: 158.18025832072067
Iteration: 7, Func. Count: 55, Neg. LLF: 158.178631717763
Iteration: 8, Func. Count: 62, Neg. LLF: 158.17748768544453
Iteration: 9, Func. Count: 69, Neg. LLF: 158.17743271832484
Iteration: 10, Func. Count: 76, Neg. LLF: 158.17742309964555
Iteration: 11, Func. Count: 82, Neg. LLF: 158.17742309944884
Optimization terminated successfully (Exit mode 0)
Current function value: 158.17742309964555
Iterations: 11
Function evaluations: 82
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 20359914.655643754
Iteration: 2, Func. Count: 19, Neg. LLF: 183.53050401830592
Iteration: 3, Func. Count: 29, Neg. LLF: 160.789781305852
Iteration: 4, Func. Count: 38, Neg. LLF: 158.17273330166844
Iteration: 5, Func. Count: 46, Neg. LLF: 158.9326620625288
Iteration: 6, Func. Count: 55, Neg. LLF: 158.10145449297804
Iteration: 7, Func. Count: 63, Neg. LLF: 158.06320199229245
Iteration: 8, Func. Count: 71, Neg. LLF: 158.04455204149997
Iteration: 9, Func. Count: 79, Neg. LLF: 158.04293840305397
Iteration: 10, Func. Count: 87, Neg. LLF: 158.04251257822267
Iteration: 11, Func. Count: 95, Neg. LLF: 158.04239209742042
Iteration: 12, Func. Count: 103, Neg. LLF: 158.04237156263954
Iteration: 13, Func. Count: 111, Neg. LLF: 158.0423692149894
Iteration: 14, Func. Count: 118, Neg. LLF: 158.042369214982
Optimization terminated successfully (Exit mode 0)
Current function value: 158.0423692149894
Iterations: 14
Function evaluations: 118
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 422.95626402762724
Iteration: 2, Func. Count: 20, Neg. LLF: 617.1618849123757
Iteration: 3, Func. Count: 30, Neg. LLF: 161.20112508732694
Iteration: 4, Func. Count: 40, Neg. LLF: 158.97653350701358
Iteration: 5, Func. Count: 50, Neg. LLF: 156.86243146311853
Iteration: 6, Func. Count: 59, Neg. LLF: 156.43043077130937
Iteration: 7, Func. Count: 68, Neg. LLF: 161.54971646901328
Iteration: 8, Func. Count: 80, Neg. LLF: 156.70550684046762
Iteration: 9, Func. Count: 90, Neg. LLF: 156.09968015059948
Iteration: 10, Func. Count: 99, Neg. LLF: 156.06639931355377
Iteration: 11, Func. Count: 108, Neg. LLF: 156.0453323998515
Iteration: 12, Func. Count: 117, Neg. LLF: 156.0118930122686
Iteration: 13, Func. Count: 126, Neg. LLF: 155.99976892879383
Iteration: 14, Func. Count: 135, Neg. LLF: 155.99134663634817
Iteration: 15, Func. Count: 144, Neg. LLF: 155.99030488976845
Iteration: 16, Func. Count: 153, Neg. LLF: 155.99005778728815
Iteration: 17, Func. Count: 162, Neg. LLF: 155.9900528901257
Iteration: 18, Func. Count: 171, Neg. LLF: 155.99005211058414
Optimization terminated successfully (Exit mode 0)
Current function value: 155.99005211058414
Iterations: 18
Function evaluations: 171
Gradient evaluations: 18
Iteration: 1, Func. Count: 11, Neg. LLF: 423.4280305474115
Iteration: 2, Func. Count: 22, Neg. LLF: 3529123.3564325874
Iteration: 3, Func. Count: 33, Neg. LLF: 181.55974115138832
Iteration: 4, Func. Count: 44, Neg. LLF: 159.79486424938088
Iteration: 5, Func. Count: 55, Neg. LLF: 160.46792164643352
Iteration: 6, Func. Count: 66, Neg. LLF: 158.53932303911625
Iteration: 7, Func. Count: 77, Neg. LLF: 157.69744346473425
Iteration: 8, Func. Count: 88, Neg. LLF: 157.18367765848126
Iteration: 9, Func. Count: 98, Neg. LLF: 157.1537467300268
Iteration: 10, Func. Count: 108, Neg. LLF: 157.14105834631553
Iteration: 11, Func. Count: 118, Neg. LLF: 157.1166608789132
Iteration: 12, Func. Count: 128, Neg. LLF: 157.09625288798154
Iteration: 13, Func. Count: 138, Neg. LLF: 157.08060868180786
Iteration: 14, Func. Count: 148, Neg. LLF: 157.07813767132316
Iteration: 15, Func. Count: 158, Neg. LLF: 157.077558073906
Iteration: 16, Func. Count: 168, Neg. LLF: 157.07736049250508
Iteration: 17, Func. Count: 178, Neg. LLF: 157.07733013042252
Iteration: 18, Func. Count: 188, Neg. LLF: 157.07732783028277
Iteration: 19, Func. Count: 197, Neg. LLF: 157.07732783031895
Optimization terminated successfully (Exit mode 0)
Current function value: 157.07732783028277
Iterations: 19
Function evaluations: 197
Gradient evaluations: 19
Iteration: 1, Func. Count: 8, Neg. LLF: 168.78546992825056
Iteration: 2, Func. Count: 17, Neg. LLF: 167.58837366273676
Iteration: 3, Func. Count: 26, Neg. LLF: 165.36249495255578
Iteration: 4, Func. Count: 34, Neg. LLF: 161.15613423191238
Iteration: 5, Func. Count: 42, Neg. LLF: 160.65206659105965
Iteration: 6, Func. Count: 49, Neg. LLF: 160.62357051393369
Iteration: 7, Func. Count: 56, Neg. LLF: 160.60879342923528
Iteration: 8, Func. Count: 63, Neg. LLF: 160.5906400312295
Iteration: 9, Func. Count: 70, Neg. LLF: 160.55676269720172
Iteration: 10, Func. Count: 77, Neg. LLF: 160.5336208760694
Iteration: 11, Func. Count: 84, Neg. LLF: 160.51445575976865
Iteration: 12, Func. Count: 91, Neg. LLF: 160.4891993221545
Iteration: 13, Func. Count: 98, Neg. LLF: 160.47475886572772
Iteration: 14, Func. Count: 105, Neg. LLF: 160.47100946000077
Iteration: 15, Func. Count: 112, Neg. LLF: 160.4705343139914
Iteration: 16, Func. Count: 119, Neg. LLF: 160.47049622453977
Iteration: 17, Func. Count: 126, Neg. LLF: 160.47049430755908
Iteration: 18, Func. Count: 132, Neg. LLF: 160.4704943673743
Optimization terminated successfully (Exit mode 0)
Current function value: 160.47049430755908
Iterations: 18
Function evaluations: 132
Gradient evaluations: 18
Iteration: 1, Func. Count: 9, Neg. LLF: 20104646.737012565
Iteration: 2, Func. Count: 19, Neg. LLF: 162.2980396878181
Iteration: 3, Func. Count: 28, Neg. LLF: 159.50717429144467
Iteration: 4, Func. Count: 37, Neg. LLF: 158.2753704413199
Iteration: 5, Func. Count: 45, Neg. LLF: 158.21616811217083
Iteration: 6, Func. Count: 53, Neg. LLF: 158.21059571987306
Iteration: 7, Func. Count: 62, Neg. LLF: 158.26007129843686
Iteration: 8, Func. Count: 71, Neg. LLF: 158.17863408333258
Iteration: 9, Func. Count: 79, Neg. LLF: 158.1774347332246
Iteration: 10, Func. Count: 87, Neg. LLF: 158.1774232515322
Iteration: 11, Func. Count: 94, Neg. LLF: 158.1774232515956
Optimization terminated successfully (Exit mode 0)
Current function value: 158.1774232515322
Iterations: 11
Function evaluations: 94
Gradient evaluations: 11
Iteration: 1, Func. Count: 10, Neg. LLF: 20462090.503768157
Iteration: 2, Func. Count: 21, Neg. LLF: 183.47426072883246
Iteration: 3, Func. Count: 32, Neg. LLF: 161.6955034706927
Iteration: 4, Func. Count: 42, Neg. LLF: 158.12091174473525
Iteration: 5, Func. Count: 51, Neg. LLF: 158.17689416559412
Iteration: 6, Func. Count: 61, Neg. LLF: 158.0530808172502
Iteration: 7, Func. Count: 70, Neg. LLF: 158.04918073703158
Iteration: 8, Func. Count: 79, Neg. LLF: 158.04387815598065
Iteration: 9, Func. Count: 88, Neg. LLF: 158.04263188063706
Iteration: 10, Func. Count: 97, Neg. LLF: 158.04237310291833
Iteration: 11, Func. Count: 106, Neg. LLF: 158.0423698161105
Iteration: 12, Func. Count: 115, Neg. LLF: 158.0423690266679
Optimization terminated successfully (Exit mode 0)
Current function value: 158.0423690266679
Iterations: 12
Function evaluations: 115
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 420.4297242310584
Iteration: 2, Func. Count: 22, Neg. LLF: 6184.539115481138
Iteration: 3, Func. Count: 33, Neg. LLF: 168.56486768516032
Iteration: 4, Func. Count: 44, Neg. LLF: 160.32104795580707
Iteration: 5, Func. Count: 55, Neg. LLF: 157.04645320896793
Iteration: 6, Func. Count: 65, Neg. LLF: 156.30580235496078
Iteration: 7, Func. Count: 75, Neg. LLF: 159.83253924484654
Iteration: 8, Func. Count: 88, Neg. LLF: 156.17427191364322
Iteration: 9, Func. Count: 98, Neg. LLF: 156.0671911047925
Iteration: 10, Func. Count: 108, Neg. LLF: 156.04767876259962
Iteration: 11, Func. Count: 118, Neg. LLF: 156.03420695554513
Iteration: 12, Func. Count: 128, Neg. LLF: 156.01140100622172
Iteration: 13, Func. Count: 138, Neg. LLF: 155.99637519033095
Iteration: 14, Func. Count: 148, Neg. LLF: 155.99040248699114
Iteration: 15, Func. Count: 158, Neg. LLF: 155.99008812532514
Iteration: 16, Func. Count: 168, Neg. LLF: 155.99005269036138
Iteration: 17, Func. Count: 178, Neg. LLF: 155.99005208608622
Optimization terminated successfully (Exit mode 0)
Current function value: 155.99005208608622
Iterations: 17
Function evaluations: 178
Gradient evaluations: 17
Iteration: 1, Func. Count: 12, Neg. LLF: 421.1984694380405
Iteration: 2, Func. Count: 24, Neg. LLF: 4831871.285009193
Iteration: 3, Func. Count: 36, Neg. LLF: 193.71698746439532
Iteration: 4, Func. Count: 48, Neg. LLF: 160.18687381750146
Iteration: 5, Func. Count: 60, Neg. LLF: 158.0362432035377
Iteration: 6, Func. Count: 71, Neg. LLF: 158.62139204727686
Iteration: 7, Func. Count: 83, Neg. LLF: 171.47460629420303
Iteration: 8, Func. Count: 95, Neg. LLF: 157.1827725274887
Iteration: 9, Func. Count: 106, Neg. LLF: 157.15231292701088
Iteration: 10, Func. Count: 117, Neg. LLF: 157.1323593804172
Iteration: 11, Func. Count: 128, Neg. LLF: 157.12472291218265
Iteration: 12, Func. Count: 139, Neg. LLF: 157.09601720883686
Iteration: 13, Func. Count: 150, Neg. LLF: 157.07947195782
Iteration: 14, Func. Count: 161, Neg. LLF: 157.07866831736274
Iteration: 15, Func. Count: 172, Neg. LLF: 157.07794487104454
Iteration: 16, Func. Count: 183, Neg. LLF: 157.07769150539718
Iteration: 17, Func. Count: 194, Neg. LLF: 157.07736731830164
Iteration: 18, Func. Count: 205, Neg. LLF: 157.07733000163927
Iteration: 19, Func. Count: 216, Neg. LLF: 157.07732782503768
Iteration: 20, Func. Count: 226, Neg. LLF: 157.07732782505414
Optimization terminated successfully (Exit mode 0)
Current function value: 157.07732782503768
Iterations: 20
Function evaluations: 226
Gradient evaluations: 20
Iteration: 1, Func. Count: 5, Neg. LLF: 162.95253996989928
Iteration: 2, Func. Count: 10, Neg. LLF: 161.9685376753849
Iteration: 3, Func. Count: 14, Neg. LLF: 161.923830867462
Iteration: 4, Func. Count: 18, Neg. LLF: 161.9201208171358
Iteration: 5, Func. Count: 22, Neg. LLF: 161.9154540131871
Iteration: 6, Func. Count: 26, Neg. LLF: 161.90307899920154
Iteration: 7, Func. Count: 30, Neg. LLF: 161.89090469566466
Iteration: 8, Func. Count: 34, Neg. LLF: 161.88406141642116
Iteration: 9, Func. Count: 38, Neg. LLF: 161.8828280923178
Iteration: 10, Func. Count: 42, Neg. LLF: 161.882734395681
Iteration: 11, Func. Count: 46, Neg. LLF: 161.88273033051482
Iteration: 12, Func. Count: 49, Neg. LLF: 161.88273033052022
Optimization terminated successfully (Exit mode 0)
Current function value: 161.88273033051482
Iterations: 12
Function evaluations: 49
Gradient evaluations: 12
Iteration: 1, Func. Count: 6, Neg. LLF: 169.56955633983122
Iteration: 2, Func. Count: 12, Neg. LLF: 135293222.36020178
Iteration: 3, Func. Count: 19, Neg. LLF: 176.86194114327708
Iteration: 4, Func. Count: 25, Neg. LLF: 161.89027425252615
Iteration: 5, Func. Count: 31, Neg. LLF: 160.34156367550105
Iteration: 6, Func. Count: 36, Neg. LLF: 160.23308440498195
Iteration: 7, Func. Count: 41, Neg. LLF: 160.2319781299543
Iteration: 8, Func. Count: 47, Neg. LLF: 160.19673927209573
Iteration: 9, Func. Count: 52, Neg. LLF: 160.19367081273853
Iteration: 10, Func. Count: 57, Neg. LLF: 160.19345231158817
Iteration: 11, Func. Count: 61, Neg. LLF: 160.19345231157644
Optimization terminated successfully (Exit mode 0)
Current function value: 160.19345231158817
Iterations: 11
Function evaluations: 61
Gradient evaluations: 11
Iteration: 1, Func. Count: 7, Neg. LLF: 6199.048391732637
Iteration: 2, Func. Count: 15, Neg. LLF: 240.60288428451327
Iteration: 3, Func. Count: 22, Neg. LLF: 174.80529523718081
Iteration: 4, Func. Count: 29, Neg. LLF: 160.37718112418835
Iteration: 5, Func. Count: 35, Neg. LLF: 160.19675341193107
Iteration: 6, Func. Count: 41, Neg. LLF: 160.2244453728187
Iteration: 7, Func. Count: 48, Neg. LLF: 160.16672037418894
Iteration: 8, Func. Count: 55, Neg. LLF: 160.16369437736245
Iteration: 9, Func. Count: 61, Neg. LLF: 160.16362617540784
Iteration: 10, Func. Count: 67, Neg. LLF: 160.16362374824286
Iteration: 11, Func. Count: 72, Neg. LLF: 160.16362374814145
Optimization terminated successfully (Exit mode 0)
Current function value: 160.16362374824286
Iterations: 11
Function evaluations: 72
Gradient evaluations: 11
Iteration: 1, Func. Count: 8, Neg. LLF: 19493666.891495317
Iteration: 2, Func. Count: 17, Neg. LLF: 189.58232048123432
Iteration: 3, Func. Count: 25, Neg. LLF: 161.1252552055373
Iteration: 4, Func. Count: 33, Neg. LLF: 160.27716389909233
Iteration: 5, Func. Count: 41, Neg. LLF: 160.133187038657
Iteration: 6, Func. Count: 48, Neg. LLF: 160.0546067149628
Iteration: 7, Func. Count: 55, Neg. LLF: 160.04002204092302
Iteration: 8, Func. Count: 62, Neg. LLF: 160.03875239299666
Iteration: 9, Func. Count: 69, Neg. LLF: 160.03854434747336
Iteration: 10, Func. Count: 76, Neg. LLF: 160.03853997236476
Iteration: 11, Func. Count: 82, Neg. LLF: 160.038539972586
Optimization terminated successfully (Exit mode 0)
Current function value: 160.03853997236476
Iterations: 11
Function evaluations: 82
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 19410480.323332533
Iteration: 2, Func. Count: 18, Neg. LLF: 163.55517568770213
Iteration: 3, Func. Count: 27, Neg. LLF: 169.50778841376376
Iteration: 4, Func. Count: 36, Neg. LLF: 160.90278805665864
Iteration: 5, Func. Count: 45, Neg. LLF: 160.67634141536874
Iteration: 6, Func. Count: 54, Neg. LLF: 159.51256398841258
Iteration: 7, Func. Count: 62, Neg. LLF: 159.48919554921443
Iteration: 8, Func. Count: 70, Neg. LLF: 159.48871249634112
Iteration: 9, Func. Count: 78, Neg. LLF: 159.48865802113835
Iteration: 10, Func. Count: 86, Neg. LLF: 159.4886406808201
Iteration: 11, Func. Count: 93, Neg. LLF: 159.48864068060516
Optimization terminated successfully (Exit mode 0)
Current function value: 159.4886406808201
Iterations: 11
Function evaluations: 93
Gradient evaluations: 11
Iteration: 1, Func. Count: 6, Neg. LLF: 162.074576925549
Iteration: 2, Func. Count: 12, Neg. LLF: 162.36120996845702
Iteration: 3, Func. Count: 18, Neg. LLF: 161.66291106468324
Iteration: 4, Func. Count: 24, Neg. LLF: 161.23776782197712
Iteration: 5, Func. Count: 29, Neg. LLF: 161.23049448846703
Iteration: 6, Func. Count: 34, Neg. LLF: 161.2302250110007
Iteration: 7, Func. Count: 39, Neg. LLF: 161.2300795190334
Iteration: 8, Func. Count: 44, Neg. LLF: 161.2300198839262
Iteration: 9, Func. Count: 49, Neg. LLF: 161.22995482772234
Iteration: 10, Func. Count: 54, Neg. LLF: 161.2298562839225
Iteration: 11, Func. Count: 59, Neg. LLF: 161.22970627840832
Iteration: 12, Func. Count: 64, Neg. LLF: 161.2295941556495
Iteration: 13, Func. Count: 69, Neg. LLF: 161.2295573247477
Iteration: 14, Func. Count: 74, Neg. LLF: 161.2295535989419
Iteration: 15, Func. Count: 78, Neg. LLF: 161.22955359893967
Optimization terminated successfully (Exit mode 0)
Current function value: 161.2295535989419
Iterations: 15
Function evaluations: 78
Gradient evaluations: 15
Iteration: 1, Func. Count: 7, Neg. LLF: 19627267.78464877
Iteration: 2, Func. Count: 15, Neg. LLF: 159.63375008714837
Iteration: 3, Func. Count: 22, Neg. LLF: 158.76390240081804
Iteration: 4, Func. Count: 29, Neg. LLF: 158.23837074131004
Iteration: 5, Func. Count: 35, Neg. LLF: 158.19000693251127
Iteration: 6, Func. Count: 41, Neg. LLF: 158.18034760604968
Iteration: 7, Func. Count: 47, Neg. LLF: 158.1801255044665
Iteration: 8, Func. Count: 53, Neg. LLF: 158.18012447495468
Iteration: 9, Func. Count: 58, Neg. LLF: 158.180124474962
Optimization terminated successfully (Exit mode 0)
Current function value: 158.18012447495468
Iterations: 9
Function evaluations: 58
Gradient evaluations: 9
Iteration: 1, Func. Count: 8, Neg. LLF: 7722.670499331168
Iteration: 2, Func. Count: 17, Neg. LLF: 160.19705045370162
Iteration: 3, Func. Count: 25, Neg. LLF: 158.52727124290595
Iteration: 4, Func. Count: 32, Neg. LLF: 158.27809453579758
Iteration: 5, Func. Count: 39, Neg. LLF: 158.20394316557568
Iteration: 6, Func. Count: 46, Neg. LLF: 158.2230540736048
Iteration: 7, Func. Count: 54, Neg. LLF: 158.19795637020746
Iteration: 8, Func. Count: 62, Neg. LLF: 158.18013540760447
Iteration: 9, Func. Count: 69, Neg. LLF: 158.18012515620916
Iteration: 10, Func. Count: 76, Neg. LLF: 158.18012450256114
Optimization terminated successfully (Exit mode 0)
Current function value: 158.18012450256114
Iterations: 10
Function evaluations: 76
Gradient evaluations: 10
Iteration: 1, Func. Count: 9, Neg. LLF: 19311306.600608923
Iteration: 2, Func. Count: 19, Neg. LLF: 161.26381660389046
Iteration: 3, Func. Count: 28, Neg. LLF: 159.63044962025714
Iteration: 4, Func. Count: 37, Neg. LLF: 158.33031322162307
Iteration: 5, Func. Count: 45, Neg. LLF: 158.48061197744454
Iteration: 6, Func. Count: 54, Neg. LLF: 158.18132444187466
Iteration: 7, Func. Count: 63, Neg. LLF: 158.1464313937363
Iteration: 8, Func. Count: 71, Neg. LLF: 158.1445965121972
Iteration: 9, Func. Count: 79, Neg. LLF: 158.14201042299652
Iteration: 10, Func. Count: 87, Neg. LLF: 158.14152824698616
Iteration: 11, Func. Count: 95, Neg. LLF: 158.1414995774161
Iteration: 12, Func. Count: 102, Neg. LLF: 158.14149957773725
Optimization terminated successfully (Exit mode 0)
Current function value: 158.1414995774161
Iterations: 12
Function evaluations: 102
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 2873.2230145616627
Iteration: 2, Func. Count: 21, Neg. LLF: 160.18344413223608
Iteration: 3, Func. Count: 31, Neg. LLF: 158.3519201832013
Iteration: 4, Func. Count: 40, Neg. LLF: 158.37049128584056
Iteration: 5, Func. Count: 50, Neg. LLF: 158.27051950273315
Iteration: 6, Func. Count: 60, Neg. LLF: 157.94932241585585
Iteration: 7, Func. Count: 70, Neg. LLF: 157.89368772339594
Iteration: 8, Func. Count: 79, Neg. LLF: 157.88801341771787
Iteration: 9, Func. Count: 88, Neg. LLF: 157.88693136073675
Iteration: 10, Func. Count: 97, Neg. LLF: 157.88692607165095
Iteration: 11, Func. Count: 105, Neg. LLF: 157.88692607168485
Optimization terminated successfully (Exit mode 0)
Current function value: 157.88692607165095
Iterations: 11
Function evaluations: 105
Gradient evaluations: 11
Iteration: 1, Func. Count: 7, Neg. LLF: 167.63858670437764
Iteration: 2, Func. Count: 14, Neg. LLF: 163.05920982676415
Iteration: 3, Func. Count: 22, Neg. LLF: 161.83261482184434
Iteration: 4, Func. Count: 29, Neg. LLF: 162.9969376394853
Iteration: 5, Func. Count: 36, Neg. LLF: 161.09138023199
Iteration: 6, Func. Count: 42, Neg. LLF: 161.08364578675958
Iteration: 7, Func. Count: 48, Neg. LLF: 161.08244130757745
Iteration: 8, Func. Count: 54, Neg. LLF: 161.08236418608783
Iteration: 9, Func. Count: 60, Neg. LLF: 161.08231689572852
Iteration: 10, Func. Count: 66, Neg. LLF: 161.08227374894594
Iteration: 11, Func. Count: 72, Neg. LLF: 161.08218997176039
Iteration: 12, Func. Count: 78, Neg. LLF: 161.08208951228573
Iteration: 13, Func. Count: 84, Neg. LLF: 161.08200912441305
Iteration: 14, Func. Count: 90, Neg. LLF: 161.0819853750802
Iteration: 15, Func. Count: 96, Neg. LLF: 161.08198297369188
Iteration: 16, Func. Count: 101, Neg. LLF: 161.0819829736918
Optimization terminated successfully (Exit mode 0)
Current function value: 161.08198297369188
Iterations: 16
Function evaluations: 101
Gradient evaluations: 16
Iteration: 1, Func. Count: 8, Neg. LLF: 19658292.594892174
Iteration: 2, Func. Count: 17, Neg. LLF: 160.40401946565606
Iteration: 3, Func. Count: 25, Neg. LLF: 158.88094514248257
Iteration: 4, Func. Count: 33, Neg. LLF: 158.26665257703903
Iteration: 5, Func. Count: 40, Neg. LLF: 158.19087980904447
Iteration: 6, Func. Count: 47, Neg. LLF: 158.23277589357284
Iteration: 7, Func. Count: 55, Neg. LLF: 158.1776392974855
Iteration: 8, Func. Count: 62, Neg. LLF: 158.17745927888802
Iteration: 9, Func. Count: 69, Neg. LLF: 158.17742304182102
Iteration: 10, Func. Count: 75, Neg. LLF: 158.17742304192015
Optimization terminated successfully (Exit mode 0)
Current function value: 158.17742304182102
Iterations: 10
Function evaluations: 75
Gradient evaluations: 10
Iteration: 1, Func. Count: 9, Neg. LLF: 23434.413000271124
Iteration: 2, Func. Count: 19, Neg. LLF: 167.4071211734835
Iteration: 3, Func. Count: 28, Neg. LLF: 158.30512923197512
Iteration: 4, Func. Count: 36, Neg. LLF: 158.39710830423994
Iteration: 5, Func. Count: 45, Neg. LLF: 160.98827492153146
Iteration: 6, Func. Count: 54, Neg. LLF: 158.0575516750148
Iteration: 7, Func. Count: 62, Neg. LLF: 158.04515294680314
Iteration: 8, Func. Count: 70, Neg. LLF: 158.0427094043705
Iteration: 9, Func. Count: 78, Neg. LLF: 158.04237526985102
Iteration: 10, Func. Count: 86, Neg. LLF: 158.04236926204516
Iteration: 11, Func. Count: 93, Neg. LLF: 158.04236926218488
Optimization terminated successfully (Exit mode 0)
Current function value: 158.04236926204516
Iterations: 11
Function evaluations: 93
Gradient evaluations: 11
Iteration: 1, Func. Count: 10, Neg. LLF: 474.0263061074193
Iteration: 2, Func. Count: 20, Neg. LLF: 175.4299033579347
Iteration: 3, Func. Count: 30, Neg. LLF: 158.38209275249227
Iteration: 4, Func. Count: 39, Neg. LLF: 157.53086174023133
Iteration: 5, Func. Count: 48, Neg. LLF: 163.351850413351
Iteration: 6, Func. Count: 58, Neg. LLF: 165.75986634755128
Iteration: 7, Func. Count: 68, Neg. LLF: 166.8098453973572
Iteration: 8, Func. Count: 78, Neg. LLF: 166.1121371705927
Iteration: 9, Func. Count: 88, Neg. LLF: 164.08452267556663
Iteration: 10, Func. Count: 98, Neg. LLF: 157.48109229867612
Iteration: 11, Func. Count: 108, Neg. LLF: 157.21049221809878
Iteration: 12, Func. Count: 117, Neg. LLF: 157.20183690390905
Iteration: 13, Func. Count: 126, Neg. LLF: 157.1992474746561
Iteration: 14, Func. Count: 135, Neg. LLF: 157.19515859464818
Iteration: 15, Func. Count: 144, Neg. LLF: 157.19456442413227
Iteration: 16, Func. Count: 153, Neg. LLF: 157.1941868732692
Iteration: 17, Func. Count: 162, Neg. LLF: 157.19401445321677
Iteration: 18, Func. Count: 171, Neg. LLF: 157.1939198841968
Iteration: 19, Func. Count: 180, Neg. LLF: 157.1939072750671
Iteration: 20, Func. Count: 189, Neg. LLF: 157.19390656569837
Optimization terminated successfully (Exit mode 0)
Current function value: 157.19390656569837
Iterations: 20
Function evaluations: 189
Gradient evaluations: 20
Iteration: 1, Func. Count: 11, Neg. LLF: 3590.164604861824
Iteration: 2, Func. Count: 23, Neg. LLF: 224.41584549832135
Iteration: 3, Func. Count: 34, Neg. LLF: 161.60875479729054
Iteration: 4, Func. Count: 45, Neg. LLF: 158.47950200207288
Iteration: 5, Func. Count: 56, Neg. LLF: 157.62581869816898
Iteration: 6, Func. Count: 66, Neg. LLF: 157.48639348295998
Iteration: 7, Func. Count: 76, Neg. LLF: 157.48616063196778
Iteration: 8, Func. Count: 87, Neg. LLF: 157.2929365002252
Iteration: 9, Func. Count: 97, Neg. LLF: 157.36071488056018
Iteration: 10, Func. Count: 108, Neg. LLF: 157.27490612191406
Iteration: 11, Func. Count: 119, Neg. LLF: 157.26350382187854
Iteration: 12, Func. Count: 129, Neg. LLF: 157.26055348393345
Iteration: 13, Func. Count: 139, Neg. LLF: 157.25887692878968
Iteration: 14, Func. Count: 149, Neg. LLF: 157.25823956809788
Iteration: 15, Func. Count: 159, Neg. LLF: 157.2581570433834
Iteration: 16, Func. Count: 169, Neg. LLF: 157.25815152985498
Iteration: 17, Func. Count: 178, Neg. LLF: 157.25815153000565
Optimization terminated successfully (Exit mode 0)
Current function value: 157.25815152985498
Iterations: 17
Function evaluations: 178
Gradient evaluations: 17
Iteration: 1, Func. Count: 8, Neg. LLF: 163.91868960744978
Iteration: 2, Func. Count: 16, Neg. LLF: 162.70766499002525
Iteration: 3, Func. Count: 24, Neg. LLF: 162.95209528823307
Iteration: 4, Func. Count: 32, Neg. LLF: 167.47398980172167
Iteration: 5, Func. Count: 40, Neg. LLF: 160.56531013433698
Iteration: 6, Func. Count: 48, Neg. LLF: 160.35127068997392
Iteration: 7, Func. Count: 56, Neg. LLF: 160.27617013573297
Iteration: 8, Func. Count: 63, Neg. LLF: 160.2362024343718
Iteration: 9, Func. Count: 70, Neg. LLF: 160.20173694982896
Iteration: 10, Func. Count: 77, Neg. LLF: 160.1367924121512
Iteration: 11, Func. Count: 84, Neg. LLF: 159.92198541722533
Iteration: 12, Func. Count: 91, Neg. LLF: 159.89543979032595
Iteration: 13, Func. Count: 98, Neg. LLF: 159.88450753948098
Iteration: 14, Func. Count: 105, Neg. LLF: 159.8812412194455
Iteration: 15, Func. Count: 112, Neg. LLF: 159.88020934490967
Iteration: 16, Func. Count: 119, Neg. LLF: 159.8798599653573
Iteration: 17, Func. Count: 126, Neg. LLF: 159.87985004150232
Iteration: 18, Func. Count: 133, Neg. LLF: 159.87984914493896
Optimization terminated successfully (Exit mode 0)
Current function value: 159.87984914493896
Iterations: 18
Function evaluations: 133
Gradient evaluations: 18
Iteration: 1, Func. Count: 9, Neg. LLF: 19728305.58785231
Iteration: 2, Func. Count: 19, Neg. LLF: 160.92515034473197
Iteration: 3, Func. Count: 28, Neg. LLF: 159.03937793483377
Iteration: 4, Func. Count: 37, Neg. LLF: 158.2745284564723
Iteration: 5, Func. Count: 45, Neg. LLF: 158.29673502556753
Iteration: 6, Func. Count: 54, Neg. LLF: 158.18302624158727
Iteration: 7, Func. Count: 62, Neg. LLF: 158.17907686739628
Iteration: 8, Func. Count: 70, Neg. LLF: 158.17744325687775
Iteration: 9, Func. Count: 78, Neg. LLF: 158.17742729310484
Iteration: 10, Func. Count: 86, Neg. LLF: 158.1774231675059
Iteration: 11, Func. Count: 93, Neg. LLF: 158.1774231678389
Optimization terminated successfully (Exit mode 0)
Current function value: 158.1774231675059
Iterations: 11
Function evaluations: 93
Gradient evaluations: 11
Iteration: 1, Func. Count: 10, Neg. LLF: 13315.794950906109
Iteration: 2, Func. Count: 21, Neg. LLF: 169.8324885178956
Iteration: 3, Func. Count: 31, Neg. LLF: 158.61490510272967
Iteration: 4, Func. Count: 40, Neg. LLF: 158.75835100307873
Iteration: 5, Func. Count: 50, Neg. LLF: 179.28785486865002
Iteration: 6, Func. Count: 60, Neg. LLF: 158.23790679635368
Iteration: 7, Func. Count: 70, Neg. LLF: 158.06118099942714
Iteration: 8, Func. Count: 79, Neg. LLF: 158.05517445045143
Iteration: 9, Func. Count: 88, Neg. LLF: 158.0431323920881
Iteration: 10, Func. Count: 97, Neg. LLF: 158.04253955900643
Iteration: 11, Func. Count: 106, Neg. LLF: 158.04245498229926
Iteration: 12, Func. Count: 115, Neg. LLF: 158.04241992590255
Iteration: 13, Func. Count: 124, Neg. LLF: 158.04237929712698
Iteration: 14, Func. Count: 133, Neg. LLF: 158.04237016450247
Iteration: 15, Func. Count: 142, Neg. LLF: 158.04236907473643
Iteration: 16, Func. Count: 150, Neg. LLF: 158.04236907475936
Optimization terminated successfully (Exit mode 0)
Current function value: 158.04236907473643
Iterations: 16
Function evaluations: 150
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 1001.4239303979253
Iteration: 2, Func. Count: 22, Neg. LLF: 173.47542606400623
Iteration: 3, Func. Count: 33, Neg. LLF: 158.1514639842701
Iteration: 4, Func. Count: 43, Neg. LLF: 158.04083647424721
Iteration: 5, Func. Count: 54, Neg. LLF: 158.910784740098
Iteration: 6, Func. Count: 65, Neg. LLF: 178.79354655720547
Iteration: 7, Func. Count: 76, Neg. LLF: 156.24199792032425
Iteration: 8, Func. Count: 86, Neg. LLF: 156.01675011400525
Iteration: 9, Func. Count: 96, Neg. LLF: 155.99762078032353
Iteration: 10, Func. Count: 106, Neg. LLF: 155.99253189501255
Iteration: 11, Func. Count: 116, Neg. LLF: 155.99022939183894
Iteration: 12, Func. Count: 126, Neg. LLF: 155.9900596969771
Iteration: 13, Func. Count: 136, Neg. LLF: 155.99005210654465
Iteration: 14, Func. Count: 145, Neg. LLF: 155.99005210304088
Optimization terminated successfully (Exit mode 0)
Current function value: 155.99005210654465
Iterations: 14
Function evaluations: 145
Gradient evaluations: 14
Iteration: 1, Func. Count: 12, Neg. LLF: 3436.2672244037512
Iteration: 2, Func. Count: 25, Neg. LLF: 359.5476174975749
Iteration: 3, Func. Count: 37, Neg. LLF: 159.44984196269735
Iteration: 4, Func. Count: 49, Neg. LLF: 161.15630712982886
Iteration: 5, Func. Count: 61, Neg. LLF: 165.55770723851643
Iteration: 6, Func. Count: 73, Neg. LLF: 158.05897973502587
Iteration: 7, Func. Count: 85, Neg. LLF: 157.1816264344857
Iteration: 8, Func. Count: 96, Neg. LLF: 157.15419234743777
Iteration: 9, Func. Count: 107, Neg. LLF: 157.13227212612824
Iteration: 10, Func. Count: 118, Neg. LLF: 157.0957421521849
Iteration: 11, Func. Count: 129, Neg. LLF: 157.08025402065596
Iteration: 12, Func. Count: 140, Neg. LLF: 157.07789124892096
Iteration: 13, Func. Count: 151, Neg. LLF: 157.07734960106205
Iteration: 14, Func. Count: 162, Neg. LLF: 157.0773309715192
Iteration: 15, Func. Count: 173, Neg. LLF: 157.07732831186416
Iteration: 16, Func. Count: 183, Neg. LLF: 157.0773283116811
Optimization terminated successfully (Exit mode 0)
Current function value: 157.07732831186416
Iterations: 16
Function evaluations: 183
Gradient evaluations: 16
Iteration: 1, Func. Count: 9, Neg. LLF: 168.03537328689387
Iteration: 2, Func. Count: 19, Neg. LLF: 162.79956696108866
Iteration: 3, Func. Count: 28, Neg. LLF: 160.59834219740728
Iteration: 4, Func. Count: 37, Neg. LLF: 162.97744282457262
Iteration: 5, Func. Count: 47, Neg. LLF: 160.31004439685398
Iteration: 6, Func. Count: 55, Neg. LLF: 160.3276158884755
Iteration: 7, Func. Count: 64, Neg. LLF: 160.23902108698366
Iteration: 8, Func. Count: 72, Neg. LLF: 160.16674023306064
Iteration: 9, Func. Count: 80, Neg. LLF: 160.07177678739677
Iteration: 10, Func. Count: 88, Neg. LLF: 159.95560656013598
Iteration: 11, Func. Count: 96, Neg. LLF: 159.90005450154044
Iteration: 12, Func. Count: 104, Neg. LLF: 159.88162435982363
Iteration: 13, Func. Count: 112, Neg. LLF: 159.87999368268234
Iteration: 14, Func. Count: 120, Neg. LLF: 159.8798676655288
Iteration: 15, Func. Count: 128, Neg. LLF: 159.8798507150967
Iteration: 16, Func. Count: 136, Neg. LLF: 159.87984915369375
Iteration: 17, Func. Count: 143, Neg. LLF: 159.87984923336285
Optimization terminated successfully (Exit mode 0)
Current function value: 159.87984915369375
Iterations: 17
Function evaluations: 143
Gradient evaluations: 17
Iteration: 1, Func. Count: 10, Neg. LLF: 19807973.275555886
Iteration: 2, Func. Count: 21, Neg. LLF: 161.6264594688667
Iteration: 3, Func. Count: 31, Neg. LLF: 159.3868788454168
Iteration: 4, Func. Count: 41, Neg. LLF: 158.2784055209312
Iteration: 5, Func. Count: 50, Neg. LLF: 158.30714795430077
Iteration: 6, Func. Count: 60, Neg. LLF: 158.19410318597696
Iteration: 7, Func. Count: 69, Neg. LLF: 158.17986272853713
Iteration: 8, Func. Count: 78, Neg. LLF: 158.17867522990443
Iteration: 9, Func. Count: 87, Neg. LLF: 158.17743193556774
Iteration: 10, Func. Count: 96, Neg. LLF: 158.17742318861605
Iteration: 11, Func. Count: 104, Neg. LLF: 158.1774231887526
Optimization terminated successfully (Exit mode 0)
Current function value: 158.17742318861605
Iterations: 11
Function evaluations: 104
Gradient evaluations: 11
Iteration: 1, Func. Count: 11, Neg. LLF: 13263.847123216066
Iteration: 2, Func. Count: 23, Neg. LLF: 170.02987308746313
Iteration: 3, Func. Count: 34, Neg. LLF: 158.65832868091672
Iteration: 4, Func. Count: 44, Neg. LLF: 158.92937589148573
Iteration: 5, Func. Count: 55, Neg. LLF: 182.44905819222956
Iteration: 6, Func. Count: 66, Neg. LLF: 158.24949047662503
Iteration: 7, Func. Count: 77, Neg. LLF: 158.0654363600175
Iteration: 8, Func. Count: 87, Neg. LLF: 158.0534923440602
Iteration: 9, Func. Count: 97, Neg. LLF: 158.04343229981254
Iteration: 10, Func. Count: 107, Neg. LLF: 158.04256329767242
Iteration: 11, Func. Count: 117, Neg. LLF: 158.04246280505663
Iteration: 12, Func. Count: 127, Neg. LLF: 158.04242389585394
Iteration: 13, Func. Count: 137, Neg. LLF: 158.04238293982854
Iteration: 14, Func. Count: 147, Neg. LLF: 158.042370812192
Iteration: 15, Func. Count: 157, Neg. LLF: 158.04236910972924
Iteration: 16, Func. Count: 166, Neg. LLF: 158.04236910978162
Optimization terminated successfully (Exit mode 0)
Current function value: 158.04236910972924
Iterations: 16
Function evaluations: 166
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 427.40230635265664
Iteration: 2, Func. Count: 24, Neg. LLF: 161.73933075440422
Iteration: 3, Func. Count: 36, Neg. LLF: 157.65856071137975
Iteration: 4, Func. Count: 47, Neg. LLF: 156.48418244307769
Iteration: 5, Func. Count: 58, Neg. LLF: 161.1844230577375
Iteration: 6, Func. Count: 72, Neg. LLF: 160.36671779594312
Iteration: 7, Func. Count: 84, Neg. LLF: 156.227496924613
Iteration: 8, Func. Count: 95, Neg. LLF: 156.00238180151024
Iteration: 9, Func. Count: 106, Neg. LLF: 155.9965088522364
Iteration: 10, Func. Count: 117, Neg. LLF: 155.9915955617893
Iteration: 11, Func. Count: 128, Neg. LLF: 155.99050551801562
Iteration: 12, Func. Count: 139, Neg. LLF: 155.99008313552704
Iteration: 13, Func. Count: 150, Neg. LLF: 155.99005274089362
Iteration: 14, Func. Count: 161, Neg. LLF: 155.99005205797948
Optimization terminated successfully (Exit mode 0)
Current function value: 155.99005205797948
Iterations: 14
Function evaluations: 161
Gradient evaluations: 14
Iteration: 1, Func. Count: 13, Neg. LLF: 1876.4276423590236
Iteration: 2, Func. Count: 27, Neg. LLF: 398.6671044003302
Iteration: 3, Func. Count: 40, Neg. LLF: 159.08168478781246
Iteration: 4, Func. Count: 53, Neg. LLF: 164.9485275356198
Iteration: 5, Func. Count: 66, Neg. LLF: 159.16559166713895
Iteration: 6, Func. Count: 79, Neg. LLF: 157.9536288253805
Iteration: 7, Func. Count: 92, Neg. LLF: 157.27941372838032
Iteration: 8, Func. Count: 104, Neg. LLF: 157.18562113281024
Iteration: 9, Func. Count: 116, Neg. LLF: 157.16785030601284
Iteration: 10, Func. Count: 128, Neg. LLF: 157.13461274808054
Iteration: 11, Func. Count: 140, Neg. LLF: 157.11033232076147
Iteration: 12, Func. Count: 152, Neg. LLF: 157.08876769963817
Iteration: 13, Func. Count: 164, Neg. LLF: 157.0787341883112
Iteration: 14, Func. Count: 176, Neg. LLF: 157.07748876264614
Iteration: 15, Func. Count: 188, Neg. LLF: 157.07735873741785
Iteration: 16, Func. Count: 200, Neg. LLF: 157.07733307814158
Iteration: 17, Func. Count: 212, Neg. LLF: 157.07732826318752
Iteration: 18, Func. Count: 223, Neg. LLF: 157.07732826317132
Optimization terminated successfully (Exit mode 0)
Current function value: 157.07732826318752
Iterations: 18
Function evaluations: 223
Gradient evaluations: 18
Iteration: 1, Func. Count: 6, Neg. LLF: 163.0722454836081
Iteration: 2, Func. Count: 12, Neg. LLF: 161.94263741313006
Iteration: 3, Func. Count: 17, Neg. LLF: 161.92651338800584
Iteration: 4, Func. Count: 22, Neg. LLF: 161.93322194603365
Iteration: 5, Func. Count: 28, Neg. LLF: 161.91929330683547
Iteration: 6, Func. Count: 33, Neg. LLF: 161.91074588191293
Iteration: 7, Func. Count: 38, Neg. LLF: 161.89639395489962
Iteration: 8, Func. Count: 43, Neg. LLF: 161.88628246926274
Iteration: 9, Func. Count: 48, Neg. LLF: 161.88299574867034
Iteration: 10, Func. Count: 53, Neg. LLF: 161.88274457532944
Iteration: 11, Func. Count: 58, Neg. LLF: 161.8827306103708
Iteration: 12, Func. Count: 62, Neg. LLF: 161.88273063020748
Optimization terminated successfully (Exit mode 0)
Current function value: 161.8827306103708
Iterations: 12
Function evaluations: 62
Gradient evaluations: 12
Iteration: 1, Func. Count: 7, Neg. LLF: 1894.772638095951
Iteration: 2, Func. Count: 16, Neg. LLF: 351.2448934300834
Iteration: 3, Func. Count: 23, Neg. LLF: 173.03965142602468
Iteration: 4, Func. Count: 30, Neg. LLF: 160.53856909449286
Iteration: 5, Func. Count: 36, Neg. LLF: 160.49363964130666
Iteration: 6, Func. Count: 43, Neg. LLF: 160.30919519850997
Iteration: 7, Func. Count: 50, Neg. LLF: 160.21406671124316
Iteration: 8, Func. Count: 57, Neg. LLF: 160.1945294766264
Iteration: 9, Func. Count: 63, Neg. LLF: 160.19346983301267
Iteration: 10, Func. Count: 69, Neg. LLF: 160.1934519509739
Iteration: 11, Func. Count: 74, Neg. LLF: 160.19345195122946
Optimization terminated successfully (Exit mode 0)
Current function value: 160.1934519509739
Iterations: 11
Function evaluations: 74
Gradient evaluations: 11
Iteration: 1, Func. Count: 8, Neg. LLF: 14845.464407431358
Iteration: 2, Func. Count: 17, Neg. LLF: 224.88076587040237
Iteration: 3, Func. Count: 25, Neg. LLF: 160.94193296231953
Iteration: 4, Func. Count: 33, Neg. LLF: 161.15836155152664
Iteration: 5, Func. Count: 41, Neg. LLF: 161.0021124661209
Iteration: 6, Func. Count: 49, Neg. LLF: 161.00941445257826
Iteration: 7, Func. Count: 57, Neg. LLF: 161.00750085338305
Iteration: 8, Func. Count: 65, Neg. LLF: 160.20217760596458
Iteration: 9, Func. Count: 72, Neg. LLF: 160.16869042887967
Iteration: 10, Func. Count: 79, Neg. LLF: 160.16402610723
Iteration: 11, Func. Count: 86, Neg. LLF: 160.16012178813486
Iteration: 12, Func. Count: 93, Neg. LLF: 160.15970081869366
Iteration: 13, Func. Count: 100, Neg. LLF: 160.15965252889256
Iteration: 14, Func. Count: 107, Neg. LLF: 160.15965161168663
Optimization terminated successfully (Exit mode 0)
Current function value: 160.15965161168663
Iterations: 14
Function evaluations: 107
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 19538609.88408258
Iteration: 2, Func. Count: 19, Neg. LLF: 163.59596002723663
Iteration: 3, Func. Count: 28, Neg. LLF: 185.47251399759972
Iteration: 4, Func. Count: 37, Neg. LLF: 160.25456947661687
Iteration: 5, Func. Count: 46, Neg. LLF: 160.17223037906754
Iteration: 6, Func. Count: 54, Neg. LLF: 160.12336460900187
Iteration: 7, Func. Count: 62, Neg. LLF: 160.0590448013573
Iteration: 8, Func. Count: 70, Neg. LLF: 160.04177046793552
Iteration: 9, Func. Count: 78, Neg. LLF: 160.02201073228784
Iteration: 10, Func. Count: 86, Neg. LLF: 159.98742084093826
Iteration: 11, Func. Count: 94, Neg. LLF: 160.47776570501756
Iteration: 12, Func. Count: 103, Neg. LLF: 159.98422913682109
Iteration: 13, Func. Count: 112, Neg. LLF: 160.011032540289
Iteration: 14, Func. Count: 121, Neg. LLF: 159.9485377635012
Iteration: 15, Func. Count: 130, Neg. LLF: 159.9446488882769
Iteration: 16, Func. Count: 138, Neg. LLF: 159.94412220521565
Iteration: 17, Func. Count: 146, Neg. LLF: 159.9440125987468
Iteration: 18, Func. Count: 154, Neg. LLF: 159.9439814837706
Iteration: 19, Func. Count: 162, Neg. LLF: 159.94397834034555
Iteration: 20, Func. Count: 169, Neg. LLF: 159.94397834047228
Optimization terminated successfully (Exit mode 0)
Current function value: 159.94397834034555
Iterations: 20
Function evaluations: 169
Gradient evaluations: 20
Iteration: 1, Func. Count: 10, Neg. LLF: 378.6027003572552
Iteration: 2, Func. Count: 20, Neg. LLF: 187.4652096136249
Iteration: 3, Func. Count: 30, Neg. LLF: 182.5634649935201
Iteration: 4, Func. Count: 40, Neg. LLF: 159.3910349142874
Iteration: 5, Func. Count: 49, Neg. LLF: 160.37170274260308
Iteration: 6, Func. Count: 59, Neg. LLF: 162.14971145410667
Iteration: 7, Func. Count: 69, Neg. LLF: 158.97119305126427
Iteration: 8, Func. Count: 78, Neg. LLF: 158.88683092916057
Iteration: 9, Func. Count: 87, Neg. LLF: 158.81497564847368
Iteration: 10, Func. Count: 96, Neg. LLF: 158.7302790684419
Iteration: 11, Func. Count: 105, Neg. LLF: 158.7141392692253
Iteration: 12, Func. Count: 114, Neg. LLF: 158.7072056084858
Iteration: 13, Func. Count: 123, Neg. LLF: 158.70587123712892
Iteration: 14, Func. Count: 132, Neg. LLF: 158.70562998558623
Iteration: 15, Func. Count: 141, Neg. LLF: 158.70561622345014
Iteration: 16, Func. Count: 149, Neg. LLF: 158.70561622333562
Optimization terminated successfully (Exit mode 0)
Current function value: 158.70561622345014
Iterations: 16
Function evaluations: 149
Gradient evaluations: 16
Iteration: 1, Func. Count: 7, Neg. LLF: 162.83673508465557
Iteration: 2, Func. Count: 14, Neg. LLF: 164.12348709572078
Iteration: 3, Func. Count: 22, Neg. LLF: 162.98581564633426
Iteration: 4, Func. Count: 29, Neg. LLF: 161.1687796187083
Iteration: 5, Func. Count: 35, Neg. LLF: 161.19603838394372
Iteration: 6, Func. Count: 42, Neg. LLF: 161.16456238945352
Iteration: 7, Func. Count: 48, Neg. LLF: 161.16404010361578
Iteration: 8, Func. Count: 54, Neg. LLF: 161.16130128877967
Iteration: 9, Func. Count: 60, Neg. LLF: 161.1571613621729
Iteration: 10, Func. Count: 66, Neg. LLF: 161.1564196401728
Iteration: 11, Func. Count: 72, Neg. LLF: 161.15618565202917
Iteration: 12, Func. Count: 78, Neg. LLF: 161.15618325197846
Iteration: 13, Func. Count: 83, Neg. LLF: 161.1561832519876
Optimization terminated successfully (Exit mode 0)
Current function value: 161.15618325197846
Iterations: 13
Function evaluations: 83
Gradient evaluations: 13
Iteration: 1, Func. Count: 8, Neg. LLF: 19632402.66404375
Iteration: 2, Func. Count: 17, Neg. LLF: 159.70028449960085
Iteration: 3, Func. Count: 25, Neg. LLF: 158.77928023787854
Iteration: 4, Func. Count: 33, Neg. LLF: 158.24007943596243
Iteration: 5, Func. Count: 40, Neg. LLF: 158.1905390241839
Iteration: 6, Func. Count: 47, Neg. LLF: 158.18037039643238
Iteration: 7, Func. Count: 54, Neg. LLF: 158.1801256969979
Iteration: 8, Func. Count: 61, Neg. LLF: 158.18012448261013
Iteration: 9, Func. Count: 67, Neg. LLF: 158.18012448258276
Optimization terminated successfully (Exit mode 0)
Current function value: 158.18012448261013
Iterations: 9
Function evaluations: 67
Gradient evaluations: 9
Iteration: 1, Func. Count: 9, Neg. LLF: 17417.37237129693
Iteration: 2, Func. Count: 19, Neg. LLF: 160.3011314490209
Iteration: 3, Func. Count: 28, Neg. LLF: 158.63545378973154
Iteration: 4, Func. Count: 36, Neg. LLF: 158.29677054841233
Iteration: 5, Func. Count: 44, Neg. LLF: 158.30433992687352
Iteration: 6, Func. Count: 53, Neg. LLF: 158.23411335481296
Iteration: 7, Func. Count: 62, Neg. LLF: 158.18087796986615
Iteration: 8, Func. Count: 70, Neg. LLF: 158.18043752954748
Iteration: 9, Func. Count: 78, Neg. LLF: 158.18012490216807
Iteration: 10, Func. Count: 85, Neg. LLF: 158.18012490239474
Optimization terminated successfully (Exit mode 0)
Current function value: 158.18012490216807
Iterations: 10
Function evaluations: 85
Gradient evaluations: 10
Iteration: 1, Func. Count: 10, Neg. LLF: 2358.9718780632484
Iteration: 2, Func. Count: 21, Neg. LLF: 163.25155082980388
Iteration: 3, Func. Count: 31, Neg. LLF: 158.75696049146273
Iteration: 4, Func. Count: 40, Neg. LLF: 158.43028790697647
Iteration: 5, Func. Count: 49, Neg. LLF: 158.45704344594083
Iteration: 6, Func. Count: 59, Neg. LLF: 158.21243308799933
Iteration: 7, Func. Count: 68, Neg. LLF: 158.18946066013277
Iteration: 8, Func. Count: 77, Neg. LLF: 158.23202265638434
Iteration: 9, Func. Count: 87, Neg. LLF: 158.14180735821085
Iteration: 10, Func. Count: 96, Neg. LLF: 158.14150479990013
Iteration: 11, Func. Count: 105, Neg. LLF: 158.14149927045352
Iteration: 12, Func. Count: 113, Neg. LLF: 158.14149927057403
Optimization terminated successfully (Exit mode 0)
Current function value: 158.14149927045352
Iterations: 12
Function evaluations: 113
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 3956.8199672525957
Iteration: 2, Func. Count: 23, Neg. LLF: 169.61868253518097
Iteration: 3, Func. Count: 34, Neg. LLF: 158.295710428628
Iteration: 4, Func. Count: 44, Neg. LLF: 158.19298615577608
Iteration: 5, Func. Count: 54, Neg. LLF: 161.97131786608927
Iteration: 6, Func. Count: 65, Neg. LLF: 158.1065362460177
Iteration: 7, Func. Count: 76, Neg. LLF: 157.90949741075286
Iteration: 8, Func. Count: 86, Neg. LLF: 157.89161109774957
Iteration: 9, Func. Count: 96, Neg. LLF: 157.88701344161095
Iteration: 10, Func. Count: 106, Neg. LLF: 157.88693836945444
Iteration: 11, Func. Count: 116, Neg. LLF: 157.8869260748229
Iteration: 12, Func. Count: 125, Neg. LLF: 157.88692607470898
Optimization terminated successfully (Exit mode 0)
Current function value: 157.8869260748229
Iterations: 12
Function evaluations: 125
Gradient evaluations: 12
Iteration: 1, Func. Count: 8, Neg. LLF: 167.44885341222312
Iteration: 2, Func. Count: 16, Neg. LLF: 162.8872569929761
Iteration: 3, Func. Count: 25, Neg. LLF: 163.20409753671385
Iteration: 4, Func. Count: 34, Neg. LLF: 168.9316935685659
Iteration: 5, Func. Count: 42, Neg. LLF: 160.96889445230926
Iteration: 6, Func. Count: 50, Neg. LLF: 161.38626211110682
Iteration: 7, Func. Count: 58, Neg. LLF: 160.9574250254695
Iteration: 8, Func. Count: 65, Neg. LLF: 160.9569056114925
Iteration: 9, Func. Count: 72, Neg. LLF: 160.95501625244935
Iteration: 10, Func. Count: 79, Neg. LLF: 160.95259452912745
Iteration: 11, Func. Count: 86, Neg. LLF: 160.95029217655735
Iteration: 12, Func. Count: 93, Neg. LLF: 160.94935186107983
Iteration: 13, Func. Count: 100, Neg. LLF: 160.94917659522807
Iteration: 14, Func. Count: 107, Neg. LLF: 160.9491720791105
Iteration: 15, Func. Count: 113, Neg. LLF: 160.94917207911746
Optimization terminated successfully (Exit mode 0)
Current function value: 160.9491720791105
Iterations: 15
Function evaluations: 113
Gradient evaluations: 15
Iteration: 1, Func. Count: 9, Neg. LLF: 19662846.881176375
Iteration: 2, Func. Count: 19, Neg. LLF: 160.49849684278064
Iteration: 3, Func. Count: 28, Neg. LLF: 158.89892626174023
Iteration: 4, Func. Count: 37, Neg. LLF: 158.2679393215923
Iteration: 5, Func. Count: 45, Neg. LLF: 158.1905904553579
Iteration: 6, Func. Count: 53, Neg. LLF: 158.2289836876469
Iteration: 7, Func. Count: 62, Neg. LLF: 158.17761599046455
Iteration: 8, Func. Count: 70, Neg. LLF: 158.17746285253472
Iteration: 9, Func. Count: 78, Neg. LLF: 158.17742304345623
Iteration: 10, Func. Count: 85, Neg. LLF: 158.17742304356378
Optimization terminated successfully (Exit mode 0)
Current function value: 158.17742304345623
Iterations: 10
Function evaluations: 85
Gradient evaluations: 10
Iteration: 1, Func. Count: 10, Neg. LLF: 19269403.44071037
Iteration: 2, Func. Count: 21, Neg. LLF: 168.7450170343837
Iteration: 3, Func. Count: 31, Neg. LLF: 158.9511833916441
Iteration: 4, Func. Count: 41, Neg. LLF: 158.87285736754427
Iteration: 5, Func. Count: 51, Neg. LLF: 158.11749496368148
Iteration: 6, Func. Count: 60, Neg. LLF: 158.0540542052491
Iteration: 7, Func. Count: 69, Neg. LLF: 158.04509332096166
Iteration: 8, Func. Count: 78, Neg. LLF: 158.04298451658468
Iteration: 9, Func. Count: 87, Neg. LLF: 158.04237697866031
Iteration: 10, Func. Count: 96, Neg. LLF: 158.0423699477813
Iteration: 11, Func. Count: 105, Neg. LLF: 158.0423690732493
Optimization terminated successfully (Exit mode 0)
Current function value: 158.0423690732493
Iterations: 11
Function evaluations: 105
Gradient evaluations: 11
Iteration: 1, Func. Count: 11, Neg. LLF: 1382.6133144230428
Iteration: 2, Func. Count: 23, Neg. LLF: 269.1529457882436
Iteration: 3, Func. Count: 34, Neg. LLF: 158.92859537613933
Iteration: 4, Func. Count: 45, Neg. LLF: 157.6483605418705
Iteration: 5, Func. Count: 55, Neg. LLF: 165.09840027118628
Iteration: 6, Func. Count: 66, Neg. LLF: 159.50801913637517
Iteration: 7, Func. Count: 77, Neg. LLF: 157.2270812182418
Iteration: 8, Func. Count: 87, Neg. LLF: 157.26232559931654
Iteration: 9, Func. Count: 98, Neg. LLF: 157.20113749123706
Iteration: 10, Func. Count: 108, Neg. LLF: 157.19667587857276
Iteration: 11, Func. Count: 118, Neg. LLF: 157.19520373102063
Iteration: 12, Func. Count: 128, Neg. LLF: 157.1940443172194
Iteration: 13, Func. Count: 138, Neg. LLF: 157.19392485942134
Iteration: 14, Func. Count: 148, Neg. LLF: 157.19390699024407
Iteration: 15, Func. Count: 157, Neg. LLF: 157.1939069903895
Optimization terminated successfully (Exit mode 0)
Current function value: 157.19390699024407
Iterations: 15
Function evaluations: 157
Gradient evaluations: 15
Iteration: 1, Func. Count: 12, Neg. LLF: 5135.8596602755515
Iteration: 2, Func. Count: 25, Neg. LLF: 241.62188867908193
Iteration: 3, Func. Count: 37, Neg. LLF: 162.76861414294547
Iteration: 4, Func. Count: 49, Neg. LLF: 158.620637028058
Iteration: 5, Func. Count: 61, Neg. LLF: 157.7258249156012
Iteration: 6, Func. Count: 73, Neg. LLF: 158.11379195975044
Iteration: 7, Func. Count: 85, Neg. LLF: 157.64140484148533
Iteration: 8, Func. Count: 97, Neg. LLF: 157.42398462063775
Iteration: 9, Func. Count: 109, Neg. LLF: 157.02590818417275
Iteration: 10, Func. Count: 120, Neg. LLF: 157.0240239582077
Iteration: 11, Func. Count: 132, Neg. LLF: 157.00974754799418
Iteration: 12, Func. Count: 143, Neg. LLF: 157.0060621144759
Iteration: 13, Func. Count: 154, Neg. LLF: 157.00406014709696
Iteration: 14, Func. Count: 165, Neg. LLF: 157.00381029234796
Iteration: 15, Func. Count: 176, Neg. LLF: 157.00379381816825
Iteration: 16, Func. Count: 186, Neg. LLF: 157.00379380671467
Optimization terminated successfully (Exit mode 0)
Current function value: 157.00379381816825
Iterations: 16
Function evaluations: 186
Gradient evaluations: 16
Iteration: 1, Func. Count: 9, Neg. LLF: 166.599877924914
Iteration: 2, Func. Count: 18, Neg. LLF: 163.0092415209755
Iteration: 3, Func. Count: 28, Neg. LLF: 162.9259907151827
Iteration: 4, Func. Count: 38, Neg. LLF: 161.46772570591818
Iteration: 5, Func. Count: 47, Neg. LLF: 160.55526374392926
Iteration: 6, Func. Count: 56, Neg. LLF: 160.3030409846183
Iteration: 7, Func. Count: 64, Neg. LLF: 160.64404736030113
Iteration: 8, Func. Count: 73, Neg. LLF: 160.24575962000307
Iteration: 9, Func. Count: 81, Neg. LLF: 160.16115719232803
Iteration: 10, Func. Count: 89, Neg. LLF: 159.99747776820874
Iteration: 11, Func. Count: 97, Neg. LLF: 159.91380730712277
Iteration: 12, Func. Count: 105, Neg. LLF: 159.86756097535564
Iteration: 13, Func. Count: 113, Neg. LLF: 159.85885355493446
Iteration: 14, Func. Count: 121, Neg. LLF: 159.8560027147114
Iteration: 15, Func. Count: 129, Neg. LLF: 159.85517857402272
Iteration: 16, Func. Count: 137, Neg. LLF: 159.85502222164484
Iteration: 17, Func. Count: 145, Neg. LLF: 159.85501447059934
Iteration: 18, Func. Count: 153, Neg. LLF: 159.85501343265489
Iteration: 19, Func. Count: 160, Neg. LLF: 159.8550134326519
Optimization terminated successfully (Exit mode 0)
Current function value: 159.85501343265489
Iterations: 19
Function evaluations: 160
Gradient evaluations: 19
Iteration: 1, Func. Count: 10, Neg. LLF: 19732335.65693329
Iteration: 2, Func. Count: 21, Neg. LLF: 161.04818886056236
Iteration: 3, Func. Count: 31, Neg. LLF: 159.06683795044844
Iteration: 4, Func. Count: 41, Neg. LLF: 158.27490408575977
Iteration: 5, Func. Count: 50, Neg. LLF: 158.29818319282023
Iteration: 6, Func. Count: 60, Neg. LLF: 158.1837463361348
Iteration: 7, Func. Count: 69, Neg. LLF: 158.1790932871675
Iteration: 8, Func. Count: 78, Neg. LLF: 158.17745584622017
Iteration: 9, Func. Count: 87, Neg. LLF: 158.1774396914467
Iteration: 10, Func. Count: 96, Neg. LLF: 158.17742312825433
Iteration: 11, Func. Count: 104, Neg. LLF: 158.17742312834054
Optimization terminated successfully (Exit mode 0)
Current function value: 158.17742312825433
Iterations: 11
Function evaluations: 104
Gradient evaluations: 11
Iteration: 1, Func. Count: 11, Neg. LLF: 91636.33675926847
Iteration: 2, Func. Count: 23, Neg. LLF: 172.20925797728015
Iteration: 3, Func. Count: 34, Neg. LLF: 160.34868487137592
Iteration: 4, Func. Count: 45, Neg. LLF: 158.7937571937753
Iteration: 5, Func. Count: 56, Neg. LLF: 160.16993394610734
Iteration: 6, Func. Count: 67, Neg. LLF: 158.08600605097334
Iteration: 7, Func. Count: 77, Neg. LLF: 158.08104558612126
Iteration: 8, Func. Count: 88, Neg. LLF: 158.0456159080455
Iteration: 9, Func. Count: 98, Neg. LLF: 158.04277797468328
Iteration: 10, Func. Count: 108, Neg. LLF: 158.04237725769576
Iteration: 11, Func. Count: 118, Neg. LLF: 158.042370463149
Iteration: 12, Func. Count: 128, Neg. LLF: 158.04236933435533
Iteration: 13, Func. Count: 138, Neg. LLF: 158.0423693698257
Optimization terminated successfully (Exit mode 0)
Current function value: 158.04236906908005
Iterations: 13
Function evaluations: 139
Gradient evaluations: 13
Iteration: 1, Func. Count: 12, Neg. LLF: 1286.9333081933153
Iteration: 2, Func. Count: 25, Neg. LLF: 520.6691458752739
Iteration: 3, Func. Count: 37, Neg. LLF: 156.93322843420444
Iteration: 4, Func. Count: 48, Neg. LLF: 159.75931335734285
Iteration: 5, Func. Count: 60, Neg. LLF: 163.72179766462995
Iteration: 6, Func. Count: 73, Neg. LLF: 156.02257887154937
Iteration: 7, Func. Count: 84, Neg. LLF: 155.99884512374211
Iteration: 8, Func. Count: 95, Neg. LLF: 155.9916071175437
Iteration: 9, Func. Count: 106, Neg. LLF: 155.99033129706217
Iteration: 10, Func. Count: 117, Neg. LLF: 155.99008068193328
Iteration: 11, Func. Count: 128, Neg. LLF: 155.99005214706833
Iteration: 12, Func. Count: 138, Neg. LLF: 155.9900521436058
Optimization terminated successfully (Exit mode 0)
Current function value: 155.99005214706833
Iterations: 12
Function evaluations: 138
Gradient evaluations: 12
Iteration: 1, Func. Count: 13, Neg. LLF: 4825.415898161277
Iteration: 2, Func. Count: 27, Neg. LLF: 467.780976030912
Iteration: 3, Func. Count: 40, Neg. LLF: 163.3046089450524
Iteration: 4, Func. Count: 53, Neg. LLF: 163.5877823040421
Iteration: 5, Func. Count: 66, Neg. LLF: 158.5785616893253
Iteration: 6, Func. Count: 79, Neg. LLF: 157.40528798150598
Iteration: 7, Func. Count: 92, Neg. LLF: 157.33315862735944
Iteration: 8, Func. Count: 105, Neg. LLF: 156.62609178324925
Iteration: 9, Func. Count: 117, Neg. LLF: 156.57209473178196
Iteration: 10, Func. Count: 129, Neg. LLF: 156.56286689572906
Iteration: 11, Func. Count: 141, Neg. LLF: 156.55837249404283
Iteration: 12, Func. Count: 153, Neg. LLF: 156.55744476892096
Iteration: 13, Func. Count: 165, Neg. LLF: 156.55676577936666
Iteration: 14, Func. Count: 177, Neg. LLF: 156.55674296897988
Iteration: 15, Func. Count: 189, Neg. LLF: 156.556742096052
Optimization terminated successfully (Exit mode 0)
Current function value: 156.556742096052
Iterations: 15
Function evaluations: 189
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 162.88079732195763
Iteration: 2, Func. Count: 20, Neg. LLF: 162.9927465968386
Iteration: 3, Func. Count: 31, Neg. LLF: 162.1305586011088
Iteration: 4, Func. Count: 41, Neg. LLF: 160.4711885018485
Iteration: 5, Func. Count: 51, Neg. LLF: 160.34546199698468
Iteration: 6, Func. Count: 60, Neg. LLF: 160.36873328782625
Iteration: 7, Func. Count: 70, Neg. LLF: 160.9099725075009
Iteration: 8, Func. Count: 80, Neg. LLF: 160.46150754817273
Iteration: 9, Func. Count: 90, Neg. LLF: 160.25640943734587
Iteration: 10, Func. Count: 99, Neg. LLF: 160.15164302283804
Iteration: 11, Func. Count: 108, Neg. LLF: 160.0208877862614
Iteration: 12, Func. Count: 117, Neg. LLF: 159.90484958530496
Iteration: 13, Func. Count: 126, Neg. LLF: 159.86074260173586
Iteration: 14, Func. Count: 135, Neg. LLF: 159.85604460185033
Iteration: 15, Func. Count: 144, Neg. LLF: 159.85547697435126
Iteration: 16, Func. Count: 153, Neg. LLF: 159.85511159997554
Iteration: 17, Func. Count: 162, Neg. LLF: 159.85501652648938
Iteration: 18, Func. Count: 171, Neg. LLF: 159.85501345981555
Iteration: 19, Func. Count: 179, Neg. LLF: 159.85501353545516
Optimization terminated successfully (Exit mode 0)
Current function value: 159.85501345981555
Iterations: 19
Function evaluations: 179
Gradient evaluations: 19
Iteration: 1, Func. Count: 11, Neg. LLF: 19811971.989633724
Iteration: 2, Func. Count: 23, Neg. LLF: 161.8009514895258
Iteration: 3, Func. Count: 34, Neg. LLF: 159.43141146460073
Iteration: 4, Func. Count: 45, Neg. LLF: 158.279051746326
Iteration: 5, Func. Count: 55, Neg. LLF: 158.2667161610172
Iteration: 6, Func. Count: 66, Neg. LLF: 158.21891866659243
Iteration: 7, Func. Count: 76, Neg. LLF: 158.1855450095073
Iteration: 8, Func. Count: 86, Neg. LLF: 158.18259477069213
Iteration: 9, Func. Count: 96, Neg. LLF: 158.17751739210556
Iteration: 10, Func. Count: 106, Neg. LLF: 158.17742340522997
Iteration: 11, Func. Count: 115, Neg. LLF: 158.17742340564809
Optimization terminated successfully (Exit mode 0)
Current function value: 158.17742340522997
Iterations: 11
Function evaluations: 115
Gradient evaluations: 11
Iteration: 1, Func. Count: 12, Neg. LLF: 69232.8863977063
Iteration: 2, Func. Count: 25, Neg. LLF: 172.56223234106594
Iteration: 3, Func. Count: 37, Neg. LLF: 160.54179227895352
Iteration: 4, Func. Count: 49, Neg. LLF: 159.50807653814516
Iteration: 5, Func. Count: 61, Neg. LLF: 158.63997256507915
Iteration: 6, Func. Count: 73, Neg. LLF: 158.13556735502306
Iteration: 7, Func. Count: 84, Neg. LLF: 158.06729304753705
Iteration: 8, Func. Count: 95, Neg. LLF: 158.04692679772384
Iteration: 9, Func. Count: 106, Neg. LLF: 158.04302652594512
Iteration: 10, Func. Count: 117, Neg. LLF: 158.04248191842188
Iteration: 11, Func. Count: 128, Neg. LLF: 158.04239292869576
Iteration: 12, Func. Count: 139, Neg. LLF: 158.0423714422134
Iteration: 13, Func. Count: 150, Neg. LLF: 158.04236907090583
Iteration: 14, Func. Count: 160, Neg. LLF: 158.04236907095623
Optimization terminated successfully (Exit mode 0)
Current function value: 158.04236907090583
Iterations: 14
Function evaluations: 160
Gradient evaluations: 14
Iteration: 1, Func. Count: 13, Neg. LLF: 1209.1354257422804
Iteration: 2, Func. Count: 26, Neg. LLF: 238.2194618815927
Iteration: 3, Func. Count: 39, Neg. LLF: 159.5031965368577
Iteration: 4, Func. Count: 52, Neg. LLF: 156.89358528915565
Iteration: 5, Func. Count: 64, Neg. LLF: 157.90992947308368
Iteration: 6, Func. Count: 77, Neg. LLF: 161.81932384949044
Iteration: 7, Func. Count: 90, Neg. LLF: 156.00597172839076
Iteration: 8, Func. Count: 102, Neg. LLF: 155.99233351045777
Iteration: 9, Func. Count: 114, Neg. LLF: 155.99031791301206
Iteration: 10, Func. Count: 126, Neg. LLF: 155.99006013283713
Iteration: 11, Func. Count: 138, Neg. LLF: 155.9900523802768
Iteration: 12, Func. Count: 149, Neg. LLF: 155.9900523768702
Optimization terminated successfully (Exit mode 0)
Current function value: 155.9900523802768
Iterations: 12
Function evaluations: 149
Gradient evaluations: 12
Iteration: 1, Func. Count: 14, Neg. LLF: 4561.218368445628
Iteration: 2, Func. Count: 29, Neg. LLF: 450.4977945237661
Iteration: 3, Func. Count: 43, Neg. LLF: 159.3068111779311
Iteration: 4, Func. Count: 57, Neg. LLF: 169.02485325330193
Iteration: 5, Func. Count: 71, Neg. LLF: 157.08321722561894
Iteration: 6, Func. Count: 84, Neg. LLF: 157.70783515363865
Iteration: 7, Func. Count: 98, Neg. LLF: 158.60266125295334
Iteration: 8, Func. Count: 112, Neg. LLF: 156.58019602634118
Iteration: 9, Func. Count: 125, Neg. LLF: 156.55873441044847
Iteration: 10, Func. Count: 138, Neg. LLF: 156.55762485281926
Iteration: 11, Func. Count: 151, Neg. LLF: 156.55692119427266
Iteration: 12, Func. Count: 164, Neg. LLF: 156.55680986739483
Iteration: 13, Func. Count: 177, Neg. LLF: 156.55676349910857
Iteration: 14, Func. Count: 190, Neg. LLF: 156.55674688751208
Iteration: 15, Func. Count: 203, Neg. LLF: 156.55674239167695
Iteration: 16, Func. Count: 215, Neg. LLF: 156.55674237580268
Optimization terminated successfully (Exit mode 0)
Current function value: 156.55674239167695
Iterations: 16
Function evaluations: 215
Gradient evaluations: 16
Iteration: 1, Func. Count: 7, Neg. LLF: 163.34219084353245
Iteration: 2, Func. Count: 14, Neg. LLF: 161.99336953269142
Iteration: 3, Func. Count: 20, Neg. LLF: 161.94036457311947
Iteration: 4, Func. Count: 26, Neg. LLF: 161.927828335771
Iteration: 5, Func. Count: 32, Neg. LLF: 161.92150710972706
Iteration: 6, Func. Count: 38, Neg. LLF: 161.91666049756597
Iteration: 7, Func. Count: 44, Neg. LLF: 161.91070897351022
Iteration: 8, Func. Count: 50, Neg. LLF: 161.8993109062996
Iteration: 9, Func. Count: 56, Neg. LLF: 161.88785266516925
Iteration: 10, Func. Count: 62, Neg. LLF: 161.88316018554775
Iteration: 11, Func. Count: 68, Neg. LLF: 161.8827502205166
Iteration: 12, Func. Count: 74, Neg. LLF: 161.88273086609342
Iteration: 13, Func. Count: 80, Neg. LLF: 161.8827302674796
Optimization terminated successfully (Exit mode 0)
Current function value: 161.8827302674796
Iterations: 13
Function evaluations: 80
Gradient evaluations: 13
Iteration: 1, Func. Count: 8, Neg. LLF: 1740.6735506258178
Iteration: 2, Func. Count: 17, Neg. LLF: 270.25588127830247
Iteration: 3, Func. Count: 25, Neg. LLF: 172.9050822040898
Iteration: 4, Func. Count: 33, Neg. LLF: 160.47832335858948
Iteration: 5, Func. Count: 40, Neg. LLF: 160.34739906399582
Iteration: 6, Func. Count: 47, Neg. LLF: 160.46051240470436
Iteration: 7, Func. Count: 55, Neg. LLF: 160.2237866902302
Iteration: 8, Func. Count: 63, Neg. LLF: 160.19432354924987
Iteration: 9, Func. Count: 70, Neg. LLF: 160.19346487204393
Iteration: 10, Func. Count: 77, Neg. LLF: 160.19345426219638
Iteration: 11, Func. Count: 84, Neg. LLF: 160.19345184059196
Iteration: 12, Func. Count: 90, Neg. LLF: 160.19345184059296
Optimization terminated successfully (Exit mode 0)
Current function value: 160.19345184059196
Iterations: 12
Function evaluations: 90
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 11999.840343802316
Iteration: 2, Func. Count: 19, Neg. LLF: 217.17252466891026
Iteration: 3, Func. Count: 28, Neg. LLF: 162.1098762986193
Iteration: 4, Func. Count: 37, Neg. LLF: 160.4807630994057
Iteration: 5, Func. Count: 45, Neg. LLF: 160.65120721792331
Iteration: 6, Func. Count: 54, Neg. LLF: 160.5574968895898
Iteration: 7, Func. Count: 63, Neg. LLF: 160.3747978143575
Iteration: 8, Func. Count: 72, Neg. LLF: 160.16462784911798
Iteration: 9, Func. Count: 80, Neg. LLF: 160.16026880649923
Iteration: 10, Func. Count: 88, Neg. LLF: 160.15973085949818
Iteration: 11, Func. Count: 96, Neg. LLF: 160.15965571461777
Iteration: 12, Func. Count: 104, Neg. LLF: 160.15965172060618
Iteration: 13, Func. Count: 111, Neg. LLF: 160.15965172089162
Optimization terminated successfully (Exit mode 0)
Current function value: 160.15965172060618
Iterations: 13
Function evaluations: 111
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 19518007.2948277
Iteration: 2, Func. Count: 21, Neg. LLF: 165.51784937710755
Iteration: 3, Func. Count: 31, Neg. LLF: 181.19006096776704
Iteration: 4, Func. Count: 41, Neg. LLF: 161.49122161506978
Iteration: 5, Func. Count: 51, Neg. LLF: 160.00616092633632
Iteration: 6, Func. Count: 60, Neg. LLF: 160.02558762957673
Iteration: 7, Func. Count: 70, Neg. LLF: 159.95510103090166
Iteration: 8, Func. Count: 79, Neg. LLF: 159.9379670463882
Iteration: 9, Func. Count: 88, Neg. LLF: 159.8470859454643
Iteration: 10, Func. Count: 97, Neg. LLF: 159.6529739143858
Iteration: 11, Func. Count: 106, Neg. LLF: 159.6192824736723
Iteration: 12, Func. Count: 115, Neg. LLF: 159.61182440186656
Iteration: 13, Func. Count: 124, Neg. LLF: 159.60911248618822
Iteration: 14, Func. Count: 133, Neg. LLF: 160.55353646206078
Iteration: 15, Func. Count: 145, Neg. LLF: 188.5516035251159
Iteration: 16, Func. Count: 157, Neg. LLF: 159.76872047805733
Iteration: 17, Func. Count: 167, Neg. LLF: 159.6088201061103
Optimization terminated successfully (Exit mode 0)
Current function value: 159.60882010617232
Iterations: 18
Function evaluations: 167
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 376.6348162075331
Iteration: 2, Func. Count: 22, Neg. LLF: 201.61691038344307
Iteration: 3, Func. Count: 33, Neg. LLF: 165.7077847419997
Iteration: 4, Func. Count: 44, Neg. LLF: 159.4860069474902
Iteration: 5, Func. Count: 54, Neg. LLF: 161.04587321881826
Iteration: 6, Func. Count: 65, Neg. LLF: 159.20501304202594
Iteration: 7, Func. Count: 76, Neg. LLF: 159.15195116826723
Iteration: 8, Func. Count: 87, Neg. LLF: 158.88664894985843
Iteration: 9, Func. Count: 97, Neg. LLF: 158.7737566590029
Iteration: 10, Func. Count: 107, Neg. LLF: 158.71530081788933
Iteration: 11, Func. Count: 117, Neg. LLF: 158.70609151655415
Iteration: 12, Func. Count: 127, Neg. LLF: 158.70565067453427
Iteration: 13, Func. Count: 137, Neg. LLF: 158.70561787997295
Iteration: 14, Func. Count: 147, Neg. LLF: 158.70561611014932
Iteration: 15, Func. Count: 156, Neg. LLF: 158.70561611013852
Optimization terminated successfully (Exit mode 0)
Current function value: 158.70561611014932
Iterations: 15
Function evaluations: 156
Gradient evaluations: 15
Iteration: 1, Func. Count: 8, Neg. LLF: 162.96499411288036
Iteration: 2, Func. Count: 16, Neg. LLF: 161.8649358232514
Iteration: 3, Func. Count: 24, Neg. LLF: 162.9921356215915
Iteration: 4, Func. Count: 32, Neg. LLF: 161.7237481039649
Iteration: 5, Func. Count: 40, Neg. LLF: 161.17968484143282
Iteration: 6, Func. Count: 47, Neg. LLF: 161.16827040426702
Iteration: 7, Func. Count: 54, Neg. LLF: 161.16447482205731
Iteration: 8, Func. Count: 61, Neg. LLF: 161.16217249635287
Iteration: 9, Func. Count: 68, Neg. LLF: 161.1615088682988
Iteration: 10, Func. Count: 75, Neg. LLF: 161.16086885791026
Iteration: 11, Func. Count: 82, Neg. LLF: 161.16013585477222
Iteration: 12, Func. Count: 89, Neg. LLF: 161.1584212706144
Iteration: 13, Func. Count: 96, Neg. LLF: 161.1569535912705
Iteration: 14, Func. Count: 103, Neg. LLF: 161.15629020481052
Iteration: 15, Func. Count: 110, Neg. LLF: 161.1561867403721
Iteration: 16, Func. Count: 117, Neg. LLF: 161.15618315198057
Iteration: 17, Func. Count: 123, Neg. LLF: 161.1561831519813
Optimization terminated successfully (Exit mode 0)
Current function value: 161.15618315198057
Iterations: 17
Function evaluations: 123
Gradient evaluations: 17
Iteration: 1, Func. Count: 9, Neg. LLF: 19636639.28934196
Iteration: 2, Func. Count: 19, Neg. LLF: 159.7463299759973
Iteration: 3, Func. Count: 28, Neg. LLF: 158.78950766402278
Iteration: 4, Func. Count: 37, Neg. LLF: 158.24140663418925
Iteration: 5, Func. Count: 45, Neg. LLF: 158.191137894078
Iteration: 6, Func. Count: 53, Neg. LLF: 158.18039078128493
Iteration: 7, Func. Count: 61, Neg. LLF: 158.18012586565467
Iteration: 8, Func. Count: 69, Neg. LLF: 158.18012448430198
Iteration: 9, Func. Count: 76, Neg. LLF: 158.18012448427393
Optimization terminated successfully (Exit mode 0)
Current function value: 158.18012448430198
Iterations: 9
Function evaluations: 76
Gradient evaluations: 9
Iteration: 1, Func. Count: 10, Neg. LLF: 19440737.492269464
Iteration: 2, Func. Count: 21, Neg. LLF: 162.15265969756362
Iteration: 3, Func. Count: 31, Neg. LLF: 159.39764134048178
Iteration: 4, Func. Count: 41, Neg. LLF: 158.36262347242408
Iteration: 5, Func. Count: 50, Neg. LLF: 158.27546814898062
Iteration: 6, Func. Count: 59, Neg. LLF: 158.20650849934628
Iteration: 7, Func. Count: 68, Neg. LLF: 158.1852654393192
Iteration: 8, Func. Count: 77, Neg. LLF: 158.18379453399862
Iteration: 9, Func. Count: 86, Neg. LLF: 158.18015632776908
Iteration: 10, Func. Count: 95, Neg. LLF: 158.18012508716552
Iteration: 11, Func. Count: 104, Neg. LLF: 158.1801244774255
Optimization terminated successfully (Exit mode 0)
Current function value: 158.1801244774255
Iterations: 11
Function evaluations: 104
Gradient evaluations: 11
Iteration: 1, Func. Count: 11, Neg. LLF: 2347.6408046861334
Iteration: 2, Func. Count: 23, Neg. LLF: 185.00330637867634
Iteration: 3, Func. Count: 34, Neg. LLF: 159.0047235991711
Iteration: 4, Func. Count: 44, Neg. LLF: 159.05745964360912
Iteration: 5, Func. Count: 55, Neg. LLF: 158.548131947598
Iteration: 6, Func. Count: 66, Neg. LLF: 159.00694478870008
Iteration: 7, Func. Count: 77, Neg. LLF: 158.16440350712463
Iteration: 8, Func. Count: 87, Neg. LLF: 158.14406945545323
Iteration: 9, Func. Count: 97, Neg. LLF: 158.14216045319546
Iteration: 10, Func. Count: 107, Neg. LLF: 158.14157056938325
Iteration: 11, Func. Count: 117, Neg. LLF: 158.14149963828913
Iteration: 12, Func. Count: 126, Neg. LLF: 158.14149963765632
Optimization terminated successfully (Exit mode 0)
Current function value: 158.14149963828913
Iterations: 12
Function evaluations: 126
Gradient evaluations: 12
Iteration: 1, Func. Count: 12, Neg. LLF: 3810.1656765986027
Iteration: 2, Func. Count: 25, Neg. LLF: 170.32212762792497
Iteration: 3, Func. Count: 37, Neg. LLF: 158.2741481550424
Iteration: 4, Func. Count: 48, Neg. LLF: 158.42379607509199
Iteration: 5, Func. Count: 60, Neg. LLF: 159.82582684405557
Iteration: 6, Func. Count: 72, Neg. LLF: 158.0838957071941
Iteration: 7, Func. Count: 84, Neg. LLF: 157.90166202842906
Iteration: 8, Func. Count: 95, Neg. LLF: 157.88794863020365
Iteration: 9, Func. Count: 106, Neg. LLF: 157.88695783532506
Iteration: 10, Func. Count: 117, Neg. LLF: 157.8869305880136
Iteration: 11, Func. Count: 128, Neg. LLF: 157.8869266167205
Iteration: 12, Func. Count: 138, Neg. LLF: 157.88692661680156
Optimization terminated successfully (Exit mode 0)
Current function value: 157.8869266167205
Iterations: 12
Function evaluations: 138
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 168.78482494176242
Iteration: 2, Func. Count: 18, Neg. LLF: 163.38420398408684
Iteration: 3, Func. Count: 28, Neg. LLF: 163.27678218227166
Iteration: 4, Func. Count: 38, Neg. LLF: 167.80298514234795
Iteration: 5, Func. Count: 47, Neg. LLF: 161.09415142019506
Iteration: 6, Func. Count: 56, Neg. LLF: 161.11277840416784
Iteration: 7, Func. Count: 65, Neg. LLF: 160.96060694580228
Iteration: 8, Func. Count: 73, Neg. LLF: 160.95724556695623
Iteration: 9, Func. Count: 81, Neg. LLF: 160.95565671889875
Iteration: 10, Func. Count: 89, Neg. LLF: 160.95523159814536
Iteration: 11, Func. Count: 97, Neg. LLF: 160.9527280187188
Iteration: 12, Func. Count: 105, Neg. LLF: 160.94980992815468
Iteration: 13, Func. Count: 113, Neg. LLF: 160.9493023160932
Iteration: 14, Func. Count: 121, Neg. LLF: 160.94917490590504
Iteration: 15, Func. Count: 129, Neg. LLF: 160.94917207360228
Iteration: 16, Func. Count: 136, Neg. LLF: 160.94917207360493
Optimization terminated successfully (Exit mode 0)
Current function value: 160.94917207360228
Iterations: 16
Function evaluations: 136
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 19666952.800535414
Iteration: 2, Func. Count: 21, Neg. LLF: 160.55234196050225
Iteration: 3, Func. Count: 31, Neg. LLF: 158.90862916505463
Iteration: 4, Func. Count: 41, Neg. LLF: 158.2687765651664
Iteration: 5, Func. Count: 50, Neg. LLF: 158.18969394861153
Iteration: 6, Func. Count: 59, Neg. LLF: 158.22405283021942
Iteration: 7, Func. Count: 69, Neg. LLF: 158.17757170312552
Iteration: 8, Func. Count: 78, Neg. LLF: 158.1774579605897
Iteration: 9, Func. Count: 87, Neg. LLF: 158.17742304483846
Iteration: 10, Func. Count: 95, Neg. LLF: 158.17742304493916
Optimization terminated successfully (Exit mode 0)
Current function value: 158.17742304483846
Iterations: 10
Function evaluations: 95
Gradient evaluations: 10
Iteration: 1, Func. Count: 11, Neg. LLF: 19269120.830685616
Iteration: 2, Func. Count: 23, Neg. LLF: 171.1297230450047
Iteration: 3, Func. Count: 34, Neg. LLF: 158.73522424238965
Iteration: 4, Func. Count: 45, Neg. LLF: 158.80452497739262
Iteration: 5, Func. Count: 56, Neg. LLF: 158.2653967632894
Iteration: 6, Func. Count: 66, Neg. LLF: 158.0518801379658
Iteration: 7, Func. Count: 76, Neg. LLF: 158.043638101041
Iteration: 8, Func. Count: 86, Neg. LLF: 158.04255958441712
Iteration: 9, Func. Count: 96, Neg. LLF: 158.04237441160552
Iteration: 10, Func. Count: 106, Neg. LLF: 158.04236904112787
Iteration: 11, Func. Count: 115, Neg. LLF: 158.0423690411268
Optimization terminated successfully (Exit mode 0)
Current function value: 158.04236904112787
Iterations: 11
Function evaluations: 115
Gradient evaluations: 11
Iteration: 1, Func. Count: 12, Neg. LLF: 1341.6881879205102
Iteration: 2, Func. Count: 24, Neg. LLF: 6569.996353649362
Iteration: 3, Func. Count: 36, Neg. LLF: 166.66546359847354
Iteration: 4, Func. Count: 48, Neg. LLF: 157.69352832942837
Iteration: 5, Func. Count: 59, Neg. LLF: 158.5528036271058
Iteration: 6, Func. Count: 71, Neg. LLF: 157.99529737068582
Iteration: 7, Func. Count: 83, Neg. LLF: 157.34688240594156
Iteration: 8, Func. Count: 94, Neg. LLF: 157.27401739259372
Iteration: 9, Func. Count: 105, Neg. LLF: 157.22770782144536
Iteration: 10, Func. Count: 116, Neg. LLF: 157.2205363141077
Iteration: 11, Func. Count: 127, Neg. LLF: 157.19948002168266
Iteration: 12, Func. Count: 138, Neg. LLF: 157.19622871131708
Iteration: 13, Func. Count: 149, Neg. LLF: 157.1945129108625
Iteration: 14, Func. Count: 160, Neg. LLF: 157.19407251430832
Iteration: 15, Func. Count: 171, Neg. LLF: 157.19392210891291
Iteration: 16, Func. Count: 182, Neg. LLF: 157.1939100851453
Iteration: 17, Func. Count: 193, Neg. LLF: 157.19390675794688
Iteration: 18, Func. Count: 203, Neg. LLF: 157.19390675801372
Optimization terminated successfully (Exit mode 0)
Current function value: 157.19390675794688
Iterations: 18
Function evaluations: 203
Gradient evaluations: 18
Iteration: 1, Func. Count: 13, Neg. LLF: 5041.921078607351
Iteration: 2, Func. Count: 27, Neg. LLF: 464.3558896746689
Iteration: 3, Func. Count: 40, Neg. LLF: 162.67724020016178
Iteration: 4, Func. Count: 53, Neg. LLF: 158.70510340809278
Iteration: 5, Func. Count: 66, Neg. LLF: 157.2649434824893
Iteration: 6, Func. Count: 78, Neg. LLF: 158.0909279010146
Iteration: 7, Func. Count: 91, Neg. LLF: 159.11375379866888
Iteration: 8, Func. Count: 104, Neg. LLF: 157.21433475815311
Iteration: 9, Func. Count: 117, Neg. LLF: 157.0383804745117
Iteration: 10, Func. Count: 129, Neg. LLF: 157.28358229547328
Iteration: 11, Func. Count: 142, Neg. LLF: 157.01042789468343
Iteration: 12, Func. Count: 154, Neg. LLF: 157.0060034147882
Iteration: 13, Func. Count: 166, Neg. LLF: 157.00457683346514
Iteration: 14, Func. Count: 178, Neg. LLF: 157.0038093341808
Iteration: 15, Func. Count: 190, Neg. LLF: 157.00379530983432
Iteration: 16, Func. Count: 202, Neg. LLF: 157.00379361921966
Iteration: 17, Func. Count: 213, Neg. LLF: 157.00379360786854
Optimization terminated successfully (Exit mode 0)
Current function value: 157.00379361921966
Iterations: 17
Function evaluations: 213
Gradient evaluations: 17
Iteration: 1, Func. Count: 10, Neg. LLF: 169.11734878208574
Iteration: 2, Func. Count: 20, Neg. LLF: 164.0276928957206
Iteration: 3, Func. Count: 31, Neg. LLF: 162.90255860581192
Iteration: 4, Func. Count: 42, Neg. LLF: 161.26896066206362
Iteration: 5, Func. Count: 52, Neg. LLF: 161.35625327159948
Iteration: 6, Func. Count: 62, Neg. LLF: 160.32872763032387
Iteration: 7, Func. Count: 71, Neg. LLF: 160.6738390354898
Iteration: 8, Func. Count: 81, Neg. LLF: 160.53137214895057
Iteration: 9, Func. Count: 91, Neg. LLF: 160.26379016714955
Iteration: 10, Func. Count: 100, Neg. LLF: 160.21714590171734
Iteration: 11, Func. Count: 109, Neg. LLF: 160.16965810264196
Iteration: 12, Func. Count: 118, Neg. LLF: 159.9589205049839
Iteration: 13, Func. Count: 127, Neg. LLF: 159.88316359919634
Iteration: 14, Func. Count: 136, Neg. LLF: 159.86381114569255
Iteration: 15, Func. Count: 145, Neg. LLF: 159.8582435447017
Iteration: 16, Func. Count: 154, Neg. LLF: 159.8551319680055
Iteration: 17, Func. Count: 163, Neg. LLF: 159.8550303971432
Iteration: 18, Func. Count: 172, Neg. LLF: 159.85501358804248
Iteration: 19, Func. Count: 180, Neg. LLF: 159.85501358804837
Optimization terminated successfully (Exit mode 0)
Current function value: 159.85501358804248
Iterations: 19
Function evaluations: 180
Gradient evaluations: 19
Iteration: 1, Func. Count: 11, Neg. LLF: 19737388.320016127
Iteration: 2, Func. Count: 23, Neg. LLF: 161.09838956225605
Iteration: 3, Func. Count: 34, Neg. LLF: 159.08790341175765
Iteration: 4, Func. Count: 45, Neg. LLF: 158.2756034882141
Iteration: 5, Func. Count: 55, Neg. LLF: 158.299354910622
Iteration: 6, Func. Count: 66, Neg. LLF: 158.18408333561092
Iteration: 7, Func. Count: 76, Neg. LLF: 158.1791730527443
Iteration: 8, Func. Count: 86, Neg. LLF: 158.17745814124183
Iteration: 9, Func. Count: 96, Neg. LLF: 158.17744303000921
Iteration: 10, Func. Count: 106, Neg. LLF: 158.17742312973485
Iteration: 11, Func. Count: 115, Neg. LLF: 158.17742312980093
Optimization terminated successfully (Exit mode 0)
Current function value: 158.17742312973485
Iterations: 11
Function evaluations: 115
Gradient evaluations: 11
Iteration: 1, Func. Count: 12, Neg. LLF: 71956.64942455222
Iteration: 2, Func. Count: 25, Neg. LLF: 174.31614281715443
Iteration: 3, Func. Count: 37, Neg. LLF: 160.32829481217965
Iteration: 4, Func. Count: 49, Neg. LLF: 158.84262960628033
Iteration: 5, Func. Count: 61, Neg. LLF: 160.0756119176059
Iteration: 6, Func. Count: 73, Neg. LLF: 158.08942988140714
Iteration: 7, Func. Count: 84, Neg. LLF: 158.06576008523737
Iteration: 8, Func. Count: 95, Neg. LLF: 158.04589745789843
Iteration: 9, Func. Count: 106, Neg. LLF: 158.04452110039438
Iteration: 10, Func. Count: 117, Neg. LLF: 158.04243197819247
Iteration: 11, Func. Count: 128, Neg. LLF: 158.04237454994376
Iteration: 12, Func. Count: 139, Neg. LLF: 158.04236946986177
Iteration: 13, Func. Count: 149, Neg. LLF: 158.04236946980282
Optimization terminated successfully (Exit mode 0)
Current function value: 158.04236946986177
Iterations: 13
Function evaluations: 149
Gradient evaluations: 13
Iteration: 1, Func. Count: 13, Neg. LLF: 1220.3788343586443
Iteration: 2, Func. Count: 26, Neg. LLF: 192.943062735856
Iteration: 3, Func. Count: 39, Neg. LLF: 159.169930012873
Iteration: 4, Func. Count: 52, Neg. LLF: 156.37620626945397
Iteration: 5, Func. Count: 64, Neg. LLF: 175.73487202213943
Iteration: 6, Func. Count: 78, Neg. LLF: 156.3401028805483
Iteration: 7, Func. Count: 91, Neg. LLF: 160.25181772549809
Iteration: 8, Func. Count: 104, Neg. LLF: 156.03480144123733
Iteration: 9, Func. Count: 116, Neg. LLF: 156.00407442996635
Iteration: 10, Func. Count: 128, Neg. LLF: 155.99273713715493
Iteration: 11, Func. Count: 140, Neg. LLF: 155.99062462585434
Iteration: 12, Func. Count: 152, Neg. LLF: 155.99007861024472
Iteration: 13, Func. Count: 164, Neg. LLF: 155.9900530979348
Iteration: 14, Func. Count: 176, Neg. LLF: 155.99005206735802
Iteration: 15, Func. Count: 187, Neg. LLF: 155.9900520639335
Optimization terminated successfully (Exit mode 0)
Current function value: 155.99005206735802
Iterations: 15
Function evaluations: 187
Gradient evaluations: 15
Iteration: 1, Func. Count: 14, Neg. LLF: 4481.407915600492
Iteration: 2, Func. Count: 29, Neg. LLF: 1724.4878706509855
Iteration: 3, Func. Count: 43, Neg. LLF: 163.27900526680963
Iteration: 4, Func. Count: 57, Neg. LLF: 162.3160167040618
Iteration: 5, Func. Count: 71, Neg. LLF: 158.77347807089637
Iteration: 6, Func. Count: 85, Neg. LLF: 157.4162088228619
Iteration: 7, Func. Count: 99, Neg. LLF: 156.81500410513257
Iteration: 8, Func. Count: 112, Neg. LLF: 157.11396443129195
Iteration: 9, Func. Count: 126, Neg. LLF: 156.61198826027967
Iteration: 10, Func. Count: 139, Neg. LLF: 156.63931019543017
Iteration: 11, Func. Count: 153, Neg. LLF: 156.5605029541882
Iteration: 12, Func. Count: 166, Neg. LLF: 156.55843320739976
Iteration: 13, Func. Count: 179, Neg. LLF: 156.5569536351437
Iteration: 14, Func. Count: 192, Neg. LLF: 156.55677905183256
Iteration: 15, Func. Count: 205, Neg. LLF: 156.55674352923128
Iteration: 16, Func. Count: 218, Neg. LLF: 156.55674209794626
Iteration: 17, Func. Count: 230, Neg. LLF: 156.55674208208694
Optimization terminated successfully (Exit mode 0)
Current function value: 156.55674209794626
Iterations: 17
Function evaluations: 230
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 164.39454395256453
Iteration: 2, Func. Count: 22, Neg. LLF: 162.61074643358117
Iteration: 3, Func. Count: 33, Neg. LLF: 164.70743358990234
Iteration: 4, Func. Count: 45, Neg. LLF: 162.03590515412375
Iteration: 5, Func. Count: 56, Neg. LLF: 160.58429576690813
Iteration: 6, Func. Count: 66, Neg. LLF: 161.62446829355525
Iteration: 7, Func. Count: 77, Neg. LLF: 162.0070567190928
Iteration: 8, Func. Count: 89, Neg. LLF: 161.26333915587205
Iteration: 9, Func. Count: 100, Neg. LLF: 160.28270936911082
Iteration: 10, Func. Count: 110, Neg. LLF: 160.25647705011292
Iteration: 11, Func. Count: 120, Neg. LLF: 160.22532023058608
Iteration: 12, Func. Count: 130, Neg. LLF: 160.06669323945027
Iteration: 13, Func. Count: 140, Neg. LLF: 159.9604152336978
Iteration: 14, Func. Count: 150, Neg. LLF: 159.91878127438588
Iteration: 15, Func. Count: 160, Neg. LLF: 159.89507593531926
Iteration: 16, Func. Count: 170, Neg. LLF: 159.86643489351806
Iteration: 17, Func. Count: 180, Neg. LLF: 159.85891053630377
Iteration: 18, Func. Count: 190, Neg. LLF: 159.855699981886
Iteration: 19, Func. Count: 200, Neg. LLF: 159.8551253795366
Iteration: 20, Func. Count: 210, Neg. LLF: 159.85505675695336
Iteration: 21, Func. Count: 220, Neg. LLF: 159.8550143637089
Iteration: 22, Func. Count: 230, Neg. LLF: 159.85501345594764
Optimization terminated successfully (Exit mode 0)
Current function value: 159.85501345594764
Iterations: 22
Function evaluations: 230
Gradient evaluations: 22
Iteration: 1, Func. Count: 12, Neg. LLF: 19817808.26495689
Iteration: 2, Func. Count: 25, Neg. LLF: 161.863870637088
Iteration: 3, Func. Count: 37, Neg. LLF: 159.4716185203434
Iteration: 4, Func. Count: 49, Neg. LLF: 158.279667392126
Iteration: 5, Func. Count: 60, Neg. LLF: 158.24891572592023
Iteration: 6, Func. Count: 71, Neg. LLF: 158.23289785768057
Iteration: 7, Func. Count: 82, Neg. LLF: 158.2031072542646
Iteration: 8, Func. Count: 93, Neg. LLF: 158.1814706164094
Iteration: 9, Func. Count: 104, Neg. LLF: 158.1791323891106
Iteration: 10, Func. Count: 115, Neg. LLF: 158.17753570027523
Iteration: 11, Func. Count: 126, Neg. LLF: 158.17743850711938
Iteration: 12, Func. Count: 137, Neg. LLF: 158.17742323911867
Iteration: 13, Func. Count: 147, Neg. LLF: 158.177423238859
Optimization terminated successfully (Exit mode 0)
Current function value: 158.17742323911867
Iterations: 13
Function evaluations: 147
Gradient evaluations: 13
Iteration: 1, Func. Count: 13, Neg. LLF: 52029.196976925334
Iteration: 2, Func. Count: 27, Neg. LLF: 175.10120018132574
Iteration: 3, Func. Count: 40, Neg. LLF: 160.51277410022334
Iteration: 4, Func. Count: 53, Neg. LLF: 159.67521530067498
Iteration: 5, Func. Count: 66, Neg. LLF: 158.62946120772233
Iteration: 6, Func. Count: 79, Neg. LLF: 158.13295319668276
Iteration: 7, Func. Count: 91, Neg. LLF: 158.0775420662125
Iteration: 8, Func. Count: 103, Neg. LLF: 158.04900875848017
Iteration: 9, Func. Count: 115, Neg. LLF: 158.04336547232262
Iteration: 10, Func. Count: 127, Neg. LLF: 158.042532028552
Iteration: 11, Func. Count: 139, Neg. LLF: 158.04238471686375
Iteration: 12, Func. Count: 151, Neg. LLF: 158.0423719288103
Iteration: 13, Func. Count: 163, Neg. LLF: 158.04236903335607
Iteration: 14, Func. Count: 174, Neg. LLF: 158.0423690333914
Optimization terminated successfully (Exit mode 0)
Current function value: 158.04236903335607
Iterations: 14
Function evaluations: 174
Gradient evaluations: 14
Iteration: 1, Func. Count: 14, Neg. LLF: 520.7915032261797
Iteration: 2, Func. Count: 28, Neg. LLF: 165.88232570920158
Iteration: 3, Func. Count: 42, Neg. LLF: 156.81685581516035
Iteration: 4, Func. Count: 55, Neg. LLF: 156.9852314760213
Iteration: 5, Func. Count: 69, Neg. LLF: 164.3448160874399
Iteration: 6, Func. Count: 84, Neg. LLF: 156.06184374732229
Iteration: 7, Func. Count: 97, Neg. LLF: 156.184441003525
Iteration: 8, Func. Count: 111, Neg. LLF: 156.02588223595865
Iteration: 9, Func. Count: 124, Neg. LLF: 155.9942292219955
Iteration: 10, Func. Count: 137, Neg. LLF: 155.99158695046833
Iteration: 11, Func. Count: 150, Neg. LLF: 155.99014059627416
Iteration: 12, Func. Count: 163, Neg. LLF: 155.99005512096483
Iteration: 13, Func. Count: 176, Neg. LLF: 155.99005208360867
Iteration: 14, Func. Count: 188, Neg. LLF: 155.99005208014233
Optimization terminated successfully (Exit mode 0)
Current function value: 155.99005208360867
Iterations: 14
Function evaluations: 188
Gradient evaluations: 14
Iteration: 1, Func. Count: 15, Neg. LLF: 2994.4777832815194
Iteration: 2, Func. Count: 31, Neg. LLF: 1515.3829398788737
Iteration: 3, Func. Count: 46, Neg. LLF: 163.36969143361603
Iteration: 4, Func. Count: 61, Neg. LLF: 161.11508725987503
Iteration: 5, Func. Count: 76, Neg. LLF: 158.88900486075062
Iteration: 6, Func. Count: 91, Neg. LLF: 157.3484649317091
Iteration: 7, Func. Count: 105, Neg. LLF: 157.00103074550873
Iteration: 8, Func. Count: 119, Neg. LLF: 163.72324742184068
Iteration: 9, Func. Count: 134, Neg. LLF: 156.6078534009507
Iteration: 10, Func. Count: 148, Neg. LLF: 156.58365588828914
Iteration: 11, Func. Count: 162, Neg. LLF: 156.56093745972936
Iteration: 12, Func. Count: 176, Neg. LLF: 156.55780108845886
Iteration: 13, Func. Count: 190, Neg. LLF: 156.5572025687813
Iteration: 14, Func. Count: 204, Neg. LLF: 156.55675448270932
Iteration: 15, Func. Count: 218, Neg. LLF: 156.55674317485486
Iteration: 16, Func. Count: 232, Neg. LLF: 156.55674212604927
Iteration: 17, Func. Count: 245, Neg. LLF: 156.55674211020272
Optimization terminated successfully (Exit mode 0)
Current function value: 156.55674212604927
Iterations: 17
Function evaluations: 245
Gradient evaluations: 17
Iteration: 1, Func. Count: 8, Neg. LLF: 163.33763155817817
Iteration: 2, Func. Count: 16, Neg. LLF: 161.98260234584964
Iteration: 3, Func. Count: 23, Neg. LLF: 161.94000188122104
Iteration: 4, Func. Count: 30, Neg. LLF: 161.92923745717567
Iteration: 5, Func. Count: 37, Neg. LLF: 161.92189818470186
Iteration: 6, Func. Count: 44, Neg. LLF: 161.91693987811044
Iteration: 7, Func. Count: 51, Neg. LLF: 161.9111673303999
Iteration: 8, Func. Count: 58, Neg. LLF: 161.90035938317465
Iteration: 9, Func. Count: 65, Neg. LLF: 161.88875140733128
Iteration: 10, Func. Count: 72, Neg. LLF: 161.88335330531243
Iteration: 11, Func. Count: 79, Neg. LLF: 161.8827621809194
Iteration: 12, Func. Count: 86, Neg. LLF: 161.88273135568755
Iteration: 13, Func. Count: 93, Neg. LLF: 161.88273027169123
Iteration: 14, Func. Count: 99, Neg. LLF: 161.8827303349736
Optimization terminated successfully (Exit mode 0)
Current function value: 161.88273027169123
Iterations: 14
Function evaluations: 99
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 2464.9697960206227
Iteration: 2, Func. Count: 19, Neg. LLF: 217.45963369429933
Iteration: 3, Func. Count: 28, Neg. LLF: 161.4550973264708
Iteration: 4, Func. Count: 37, Neg. LLF: 202.277082729692
Iteration: 5, Func. Count: 46, Neg. LLF: 183.11550619850033
Iteration: 6, Func. Count: 55, Neg. LLF: 172.16344806924468
Iteration: 7, Func. Count: 64, Neg. LLF: 160.8362231392579
Iteration: 8, Func. Count: 73, Neg. LLF: 160.2105401642695
Iteration: 9, Func. Count: 81, Neg. LLF: 160.23921165468644
Iteration: 10, Func. Count: 90, Neg. LLF: 160.19785297208117
Iteration: 11, Func. Count: 98, Neg. LLF: 160.1934630758881
Iteration: 12, Func. Count: 106, Neg. LLF: 160.19345260608583
Iteration: 13, Func. Count: 114, Neg. LLF: 160.19345184603054
Optimization terminated successfully (Exit mode 0)
Current function value: 160.19345184603054
Iterations: 13
Function evaluations: 114
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 33221.82855073809
Iteration: 2, Func. Count: 21, Neg. LLF: 163.44510161884227
Iteration: 3, Func. Count: 31, Neg. LLF: 190.54470531716868
Iteration: 4, Func. Count: 41, Neg. LLF: 160.36881302787876
Iteration: 5, Func. Count: 50, Neg. LLF: 161.06957474006776
Iteration: 6, Func. Count: 60, Neg. LLF: 160.2558118245856
Iteration: 7, Func. Count: 70, Neg. LLF: 160.20857940678823
Iteration: 8, Func. Count: 80, Neg. LLF: 160.1613290592772
Iteration: 9, Func. Count: 89, Neg. LLF: 160.15967863730074
Iteration: 10, Func. Count: 98, Neg. LLF: 160.15965298577467
Iteration: 11, Func. Count: 107, Neg. LLF: 160.15965146028933
Iteration: 12, Func. Count: 115, Neg. LLF: 160.15965146029654
Optimization terminated successfully (Exit mode 0)
Current function value: 160.15965146028933
Iterations: 12
Function evaluations: 115
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 19464302.40547904
Iteration: 2, Func. Count: 23, Neg. LLF: 162.87889819165883
Iteration: 3, Func. Count: 34, Neg. LLF: 164.88640152612376
Iteration: 4, Func. Count: 45, Neg. LLF: 160.38582317693985
Iteration: 5, Func. Count: 55, Neg. LLF: 161.16922069921378
Iteration: 6, Func. Count: 66, Neg. LLF: 160.3235183680646
Iteration: 7, Func. Count: 77, Neg. LLF: 160.04772963638447
Iteration: 8, Func. Count: 87, Neg. LLF: 160.02755625475805
Iteration: 9, Func. Count: 97, Neg. LLF: 160.01341500723245
Iteration: 10, Func. Count: 107, Neg. LLF: 160.01081991757093
Iteration: 11, Func. Count: 117, Neg. LLF: 160.01067310507648
Iteration: 12, Func. Count: 127, Neg. LLF: 160.01055277675013
Iteration: 13, Func. Count: 137, Neg. LLF: 160.01054928518315
Iteration: 14, Func. Count: 146, Neg. LLF: 160.01054928533117
Optimization terminated successfully (Exit mode 0)
Current function value: 160.01054928518315
Iterations: 14
Function evaluations: 146
Gradient evaluations: 14
Iteration: 1, Func. Count: 12, Neg. LLF: 375.65864637645967
Iteration: 2, Func. Count: 24, Neg. LLF: 229.08208635405558
Iteration: 3, Func. Count: 36, Neg. LLF: 161.04680825861476
Iteration: 4, Func. Count: 48, Neg. LLF: 159.29566715279455
Iteration: 5, Func. Count: 59, Neg. LLF: 168.19661994384424
Iteration: 6, Func. Count: 71, Neg. LLF: 159.7264580965326
Iteration: 7, Func. Count: 83, Neg. LLF: 161.68020496500858
Iteration: 8, Func. Count: 95, Neg. LLF: 158.96659412115264
Iteration: 9, Func. Count: 106, Neg. LLF: 158.86444488886391
Iteration: 10, Func. Count: 117, Neg. LLF: 158.7650841683888
Iteration: 11, Func. Count: 128, Neg. LLF: 158.71226751843892
Iteration: 12, Func. Count: 139, Neg. LLF: 158.70680104081217
Iteration: 13, Func. Count: 150, Neg. LLF: 158.7057163281459
Iteration: 14, Func. Count: 161, Neg. LLF: 158.70562130102493
Iteration: 15, Func. Count: 172, Neg. LLF: 158.70561610604628
Iteration: 16, Func. Count: 182, Neg. LLF: 158.7056161060403
Optimization terminated successfully (Exit mode 0)
Current function value: 158.70561610604628
Iterations: 16
Function evaluations: 182
Gradient evaluations: 16
Iteration: 1, Func. Count: 9, Neg. LLF: 163.22480853843243
Iteration: 2, Func. Count: 18, Neg. LLF: 164.12098573449325
Iteration: 3, Func. Count: 27, Neg. LLF: 162.64638740375108
Iteration: 4, Func. Count: 36, Neg. LLF: 161.633215483764
Iteration: 5, Func. Count: 45, Neg. LLF: 161.76236933057461
Iteration: 6, Func. Count: 54, Neg. LLF: 161.17344864969795
Iteration: 7, Func. Count: 62, Neg. LLF: 161.1610150999562
Iteration: 8, Func. Count: 70, Neg. LLF: 161.1603261654671
Iteration: 9, Func. Count: 78, Neg. LLF: 161.16005295011107
Iteration: 10, Func. Count: 86, Neg. LLF: 161.1592121422252
Iteration: 11, Func. Count: 94, Neg. LLF: 161.15770733142378
Iteration: 12, Func. Count: 102, Neg. LLF: 161.15659394671454
Iteration: 13, Func. Count: 110, Neg. LLF: 161.15622259489
Iteration: 14, Func. Count: 118, Neg. LLF: 161.15618408190892
Iteration: 15, Func. Count: 126, Neg. LLF: 161.15618313155855
Optimization terminated successfully (Exit mode 0)
Current function value: 161.15618313155855
Iterations: 15
Function evaluations: 126
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 19650399.61328978
Iteration: 2, Func. Count: 21, Neg. LLF: 159.78270325288392
Iteration: 3, Func. Count: 31, Neg. LLF: 158.81179577197258
Iteration: 4, Func. Count: 41, Neg. LLF: 158.24362749634878
Iteration: 5, Func. Count: 50, Neg. LLF: 158.19036270156184
Iteration: 6, Func. Count: 59, Neg. LLF: 158.18041150844866
Iteration: 7, Func. Count: 68, Neg. LLF: 158.18012637121268
Iteration: 8, Func. Count: 77, Neg. LLF: 158.18012455158456
Iteration: 9, Func. Count: 85, Neg. LLF: 158.18012455152152
Optimization terminated successfully (Exit mode 0)
Current function value: 158.18012455158456
Iterations: 9
Function evaluations: 85
Gradient evaluations: 9
Iteration: 1, Func. Count: 11, Neg. LLF: 168753.40091124584
Iteration: 2, Func. Count: 23, Neg. LLF: 160.47576668529416
Iteration: 3, Func. Count: 34, Neg. LLF: 158.88274370257847
Iteration: 4, Func. Count: 44, Neg. LLF: 158.32346583030468
Iteration: 5, Func. Count: 54, Neg. LLF: 158.19014893024047
Iteration: 6, Func. Count: 64, Neg. LLF: 158.18399398231836
Iteration: 7, Func. Count: 74, Neg. LLF: 158.18760826198653
Iteration: 8, Func. Count: 85, Neg. LLF: 158.1806200480502
Iteration: 9, Func. Count: 96, Neg. LLF: 158.1801244839852
Iteration: 10, Func. Count: 105, Neg. LLF: 158.18012448442406
Optimization terminated successfully (Exit mode 0)
Current function value: 158.1801244839852
Iterations: 10
Function evaluations: 105
Gradient evaluations: 10
Iteration: 1, Func. Count: 12, Neg. LLF: 2614.731451155345
Iteration: 2, Func. Count: 25, Neg. LLF: 162.45134986122173
Iteration: 3, Func. Count: 37, Neg. LLF: 159.0542916454457
Iteration: 4, Func. Count: 48, Neg. LLF: 158.47968734367132
Iteration: 5, Func. Count: 59, Neg. LLF: 158.39789203008579
Iteration: 6, Func. Count: 70, Neg. LLF: 158.4872263956656
Iteration: 7, Func. Count: 82, Neg. LLF: 158.4164747197822
Iteration: 8, Func. Count: 94, Neg. LLF: 158.18599311265922
Iteration: 9, Func. Count: 106, Neg. LLF: 158.1425608886126
Iteration: 10, Func. Count: 117, Neg. LLF: 158.14168581750098
Iteration: 11, Func. Count: 128, Neg. LLF: 158.14150228389965
Iteration: 12, Func. Count: 139, Neg. LLF: 158.14149924842093
Iteration: 13, Func. Count: 149, Neg. LLF: 158.14149924835738
Optimization terminated successfully (Exit mode 0)
Current function value: 158.14149924842093
Iterations: 13
Function evaluations: 149
Gradient evaluations: 13
Iteration: 1, Func. Count: 13, Neg. LLF: 4081.9006605152204
Iteration: 2, Func. Count: 27, Neg. LLF: 169.33790553625232
Iteration: 3, Func. Count: 40, Neg. LLF: 159.21140618246238
Iteration: 4, Func. Count: 52, Neg. LLF: 158.59448918615456
Iteration: 5, Func. Count: 64, Neg. LLF: 159.41788724005235
Iteration: 6, Func. Count: 78, Neg. LLF: 158.2568465714158
Iteration: 7, Func. Count: 90, Neg. LLF: 157.9784001073904
Iteration: 8, Func. Count: 102, Neg. LLF: 157.93332549348344
Iteration: 9, Func. Count: 114, Neg. LLF: 157.89120245565758
Iteration: 10, Func. Count: 126, Neg. LLF: 157.8871985695488
Iteration: 11, Func. Count: 138, Neg. LLF: 157.88693568480883
Iteration: 12, Func. Count: 150, Neg. LLF: 157.88692726763455
Iteration: 13, Func. Count: 162, Neg. LLF: 157.8869260370224
Iteration: 14, Func. Count: 173, Neg. LLF: 157.88692603692766
Optimization terminated successfully (Exit mode 0)
Current function value: 157.8869260370224
Iterations: 14
Function evaluations: 173
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 165.9012651780125
Iteration: 2, Func. Count: 20, Neg. LLF: 163.53647650611916
Iteration: 3, Func. Count: 31, Neg. LLF: 161.62089241706587
Iteration: 4, Func. Count: 41, Neg. LLF: 166.2373832871908
Iteration: 5, Func. Count: 52, Neg. LLF: 161.04634589014267
Iteration: 6, Func. Count: 61, Neg. LLF: 161.1567044769884
Iteration: 7, Func. Count: 71, Neg. LLF: 160.96324540116143
Iteration: 8, Func. Count: 80, Neg. LLF: 160.9560910670479
Iteration: 9, Func. Count: 89, Neg. LLF: 160.9556090483378
Iteration: 10, Func. Count: 98, Neg. LLF: 160.9548670816176
Iteration: 11, Func. Count: 107, Neg. LLF: 160.95261956060665
Iteration: 12, Func. Count: 116, Neg. LLF: 160.95052446827935
Iteration: 13, Func. Count: 125, Neg. LLF: 160.9493937905508
Iteration: 14, Func. Count: 134, Neg. LLF: 160.9491840095759
Iteration: 15, Func. Count: 143, Neg. LLF: 160.949172105408
Iteration: 16, Func. Count: 151, Neg. LLF: 160.94917210541215
Optimization terminated successfully (Exit mode 0)
Current function value: 160.949172105408
Iterations: 16
Function evaluations: 151
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 19679891.894841947
Iteration: 2, Func. Count: 23, Neg. LLF: 160.61136522747196
Iteration: 3, Func. Count: 34, Neg. LLF: 158.93015191514453
Iteration: 4, Func. Count: 45, Neg. LLF: 158.268710374489
Iteration: 5, Func. Count: 55, Neg. LLF: 158.1884413332013
Iteration: 6, Func. Count: 65, Neg. LLF: 158.20800065667078
Iteration: 7, Func. Count: 76, Neg. LLF: 158.17752091883614
Iteration: 8, Func. Count: 86, Neg. LLF: 158.17742755281373
Iteration: 9, Func. Count: 96, Neg. LLF: 158.17742391137776
Iteration: 10, Func. Count: 106, Neg. LLF: 158.17742303273445
Optimization terminated successfully (Exit mode 0)
Current function value: 158.17742303273445
Iterations: 10
Function evaluations: 106
Gradient evaluations: 10
Iteration: 1, Func. Count: 12, Neg. LLF: 19270263.907306597
Iteration: 2, Func. Count: 25, Neg. LLF: 172.92694464877206
Iteration: 3, Func. Count: 37, Neg. LLF: 158.89913602644503
Iteration: 4, Func. Count: 49, Neg. LLF: 158.94746455158156
Iteration: 5, Func. Count: 61, Neg. LLF: 158.24122870906243
Iteration: 6, Func. Count: 72, Neg. LLF: 158.063471680189
Iteration: 7, Func. Count: 83, Neg. LLF: 158.04722719031406
Iteration: 8, Func. Count: 94, Neg. LLF: 158.04273101554693
Iteration: 9, Func. Count: 105, Neg. LLF: 158.04243736954294
Iteration: 10, Func. Count: 116, Neg. LLF: 158.04238069955397
Iteration: 11, Func. Count: 127, Neg. LLF: 158.0423722696245
Iteration: 12, Func. Count: 138, Neg. LLF: 158.04236924371304
Iteration: 13, Func. Count: 148, Neg. LLF: 158.04236924385503
Optimization terminated successfully (Exit mode 0)
Current function value: 158.04236924371304
Iterations: 13
Function evaluations: 148
Gradient evaluations: 13
Iteration: 1, Func. Count: 13, Neg. LLF: 1527.4378221589975
Iteration: 2, Func. Count: 27, Neg. LLF: 875.5231438031599
Iteration: 3, Func. Count: 40, Neg. LLF: 159.32015723770107
Iteration: 4, Func. Count: 53, Neg. LLF: 158.11724076483415
Iteration: 5, Func. Count: 65, Neg. LLF: 158.26312057380147
Iteration: 6, Func. Count: 78, Neg. LLF: 158.81965191558206
Iteration: 7, Func. Count: 91, Neg. LLF: 157.3212193277336
Iteration: 8, Func. Count: 103, Neg. LLF: 157.41666524189125
Iteration: 9, Func. Count: 116, Neg. LLF: 157.2053864939097
Iteration: 10, Func. Count: 128, Neg. LLF: 157.19806666596455
Iteration: 11, Func. Count: 140, Neg. LLF: 157.1962388865991
Iteration: 12, Func. Count: 152, Neg. LLF: 157.19393494491572
Iteration: 13, Func. Count: 164, Neg. LLF: 157.19390735530519
Iteration: 14, Func. Count: 176, Neg. LLF: 157.19390656678178
Optimization terminated successfully (Exit mode 0)
Current function value: 157.19390656678178
Iterations: 14
Function evaluations: 176
Gradient evaluations: 14
Iteration: 1, Func. Count: 14, Neg. LLF: 5446.086051296616
Iteration: 2, Func. Count: 29, Neg. LLF: 484.7763576097571
Iteration: 3, Func. Count: 43, Neg. LLF: 162.61614546544067
Iteration: 4, Func. Count: 57, Neg. LLF: 158.47255927219223
Iteration: 5, Func. Count: 71, Neg. LLF: 158.339463733859
Iteration: 6, Func. Count: 85, Neg. LLF: 157.50450488586964
Iteration: 7, Func. Count: 99, Neg. LLF: 157.37298519218336
Iteration: 8, Func. Count: 113, Neg. LLF: 157.31051763122667
Iteration: 9, Func. Count: 127, Neg. LLF: 157.03558934778079
Iteration: 10, Func. Count: 140, Neg. LLF: 157.04605732859073
Iteration: 11, Func. Count: 154, Neg. LLF: 157.02769921054227
Iteration: 12, Func. Count: 168, Neg. LLF: 157.00760939702636
Iteration: 13, Func. Count: 181, Neg. LLF: 157.00448099003614
Iteration: 14, Func. Count: 194, Neg. LLF: 157.00382095476542
Iteration: 15, Func. Count: 207, Neg. LLF: 157.0037963036593
Iteration: 16, Func. Count: 220, Neg. LLF: 157.00379341400884
Iteration: 17, Func. Count: 232, Neg. LLF: 157.0037934027042
Optimization terminated successfully (Exit mode 0)
Current function value: 157.00379341400884
Iterations: 17
Function evaluations: 232
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 164.9475262722201
Iteration: 2, Func. Count: 22, Neg. LLF: 163.38335370745176
Iteration: 3, Func. Count: 34, Neg. LLF: 162.2063268243316
Iteration: 4, Func. Count: 45, Neg. LLF: 160.77368688591852
Iteration: 5, Func. Count: 56, Neg. LLF: 160.30440674500645
Iteration: 6, Func. Count: 66, Neg. LLF: 161.93971877135075
Iteration: 7, Func. Count: 77, Neg. LLF: 160.2767206136445
Iteration: 8, Func. Count: 87, Neg. LLF: 160.2592267172145
Iteration: 9, Func. Count: 97, Neg. LLF: 160.15542439035843
Iteration: 10, Func. Count: 107, Neg. LLF: 159.9246089316664
Iteration: 11, Func. Count: 117, Neg. LLF: 159.86511651143323
Iteration: 12, Func. Count: 127, Neg. LLF: 159.85589524053034
Iteration: 13, Func. Count: 137, Neg. LLF: 159.85507547732885
Iteration: 14, Func. Count: 147, Neg. LLF: 159.8550239486101
Iteration: 15, Func. Count: 157, Neg. LLF: 159.85501385811912
Iteration: 16, Func. Count: 166, Neg. LLF: 159.85501385811838
Optimization terminated successfully (Exit mode 0)
Current function value: 159.85501385811912
Iterations: 16
Function evaluations: 166
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 19751143.988032077
Iteration: 2, Func. Count: 25, Neg. LLF: 161.1655051937046
Iteration: 3, Func. Count: 37, Neg. LLF: 159.119757735553
Iteration: 4, Func. Count: 49, Neg. LLF: 158.27593961174034
Iteration: 5, Func. Count: 60, Neg. LLF: 158.302436376076
Iteration: 6, Func. Count: 72, Neg. LLF: 158.1848292919766
Iteration: 7, Func. Count: 83, Neg. LLF: 158.1790161160371
Iteration: 8, Func. Count: 94, Neg. LLF: 158.17747339362677
Iteration: 9, Func. Count: 105, Neg. LLF: 158.17746254418012
Iteration: 10, Func. Count: 117, Neg. LLF: 158.17742311531907
Iteration: 11, Func. Count: 127, Neg. LLF: 158.17742311530674
Optimization terminated successfully (Exit mode 0)
Current function value: 158.17742311531907
Iterations: 11
Function evaluations: 127
Gradient evaluations: 11
Iteration: 1, Func. Count: 13, Neg. LLF: 19272389.30801834
Iteration: 2, Func. Count: 27, Neg. LLF: 176.2378537255374
Iteration: 3, Func. Count: 40, Neg. LLF: 160.55852874950497
Iteration: 4, Func. Count: 53, Neg. LLF: 158.97919421296896
Iteration: 5, Func. Count: 66, Neg. LLF: 160.46989573714527
Iteration: 6, Func. Count: 79, Neg. LLF: 158.0979655235194
Iteration: 7, Func. Count: 91, Neg. LLF: 158.12157272185328
Iteration: 8, Func. Count: 104, Neg. LLF: 158.0524839670212
Iteration: 9, Func. Count: 116, Neg. LLF: 158.0455200993956
Iteration: 10, Func. Count: 128, Neg. LLF: 158.0425692328919
Iteration: 11, Func. Count: 140, Neg. LLF: 158.04238354559067
Iteration: 12, Func. Count: 152, Neg. LLF: 158.04237113259884
Iteration: 13, Func. Count: 164, Neg. LLF: 158.0423691735043
Iteration: 14, Func. Count: 175, Neg. LLF: 158.0423691735098
Optimization terminated successfully (Exit mode 0)
Current function value: 158.0423691735043
Iterations: 14
Function evaluations: 175
Gradient evaluations: 14
Iteration: 1, Func. Count: 14, Neg. LLF: 1363.5562455339616
Iteration: 2, Func. Count: 28, Neg. LLF: 235.60101301020177
Iteration: 3, Func. Count: 42, Neg. LLF: 158.37852728027175
Iteration: 4, Func. Count: 55, Neg. LLF: 159.59169783587396
Iteration: 5, Func. Count: 70, Neg. LLF: 349.4909393143439
Iteration: 6, Func. Count: 85, Neg. LLF: 156.60380869010265
Iteration: 7, Func. Count: 98, Neg. LLF: 156.09767568600293
Iteration: 8, Func. Count: 111, Neg. LLF: 156.07967495329203
Iteration: 9, Func. Count: 124, Neg. LLF: 156.00076029799067
Iteration: 10, Func. Count: 137, Neg. LLF: 155.99323887869448
Iteration: 11, Func. Count: 150, Neg. LLF: 155.99178707193258
Iteration: 12, Func. Count: 163, Neg. LLF: 155.9907455855142
Iteration: 13, Func. Count: 176, Neg. LLF: 155.99022332250993
Iteration: 14, Func. Count: 189, Neg. LLF: 155.99006324624852
Iteration: 15, Func. Count: 202, Neg. LLF: 155.99005235775772
Iteration: 16, Func. Count: 214, Neg. LLF: 155.99005235433674
Optimization terminated successfully (Exit mode 0)
Current function value: 155.99005235775772
Iterations: 16
Function evaluations: 214
Gradient evaluations: 16
Iteration: 1, Func. Count: 15, Neg. LLF: 4868.34206522048
Iteration: 2, Func. Count: 31, Neg. LLF: 963.4509859964459
Iteration: 3, Func. Count: 46, Neg. LLF: 163.33620099252767
Iteration: 4, Func. Count: 61, Neg. LLF: 160.84053882472958
Iteration: 5, Func. Count: 76, Neg. LLF: 158.84330107021034
Iteration: 6, Func. Count: 91, Neg. LLF: 156.76554922206154
Iteration: 7, Func. Count: 105, Neg. LLF: 156.6804977383856
Iteration: 8, Func. Count: 119, Neg. LLF: 156.81032187357843
Iteration: 9, Func. Count: 134, Neg. LLF: 156.6058509255608
Iteration: 10, Func. Count: 148, Neg. LLF: 156.5652623665104
Iteration: 11, Func. Count: 162, Neg. LLF: 156.55877603282104
Iteration: 12, Func. Count: 176, Neg. LLF: 156.55697364403454
Iteration: 13, Func. Count: 190, Neg. LLF: 156.55683374582733
Iteration: 14, Func. Count: 204, Neg. LLF: 156.55676474177716
Iteration: 15, Func. Count: 218, Neg. LLF: 156.55674472281854
Iteration: 16, Func. Count: 232, Neg. LLF: 156.55674216067797
Iteration: 17, Func. Count: 245, Neg. LLF: 156.55674214478265
Optimization terminated successfully (Exit mode 0)
Current function value: 156.55674216067797
Iterations: 17
Function evaluations: 245
Gradient evaluations: 17
Iteration: 1, Func. Count: 12, Neg. LLF: 164.49651067899296
Iteration: 2, Func. Count: 24, Neg. LLF: 162.99868937083593
Iteration: 3, Func. Count: 37, Neg. LLF: 165.8102579417842
Iteration: 4, Func. Count: 50, Neg. LLF: 161.2795392542666
Iteration: 5, Func. Count: 62, Neg. LLF: 160.54665023219226
Iteration: 6, Func. Count: 73, Neg. LLF: 160.33801456248938
Iteration: 7, Func. Count: 84, Neg. LLF: 161.53868392986809
Iteration: 8, Func. Count: 96, Neg. LLF: 160.44247872329427
Iteration: 9, Func. Count: 108, Neg. LLF: 160.2674351391051
Iteration: 10, Func. Count: 119, Neg. LLF: 160.22445249341112
Iteration: 11, Func. Count: 130, Neg. LLF: 160.17430875926897
Iteration: 12, Func. Count: 141, Neg. LLF: 160.042069988824
Iteration: 13, Func. Count: 152, Neg. LLF: 159.91436672681084
Iteration: 14, Func. Count: 163, Neg. LLF: 159.86254385790775
Iteration: 15, Func. Count: 174, Neg. LLF: 159.84534539061812
Iteration: 16, Func. Count: 185, Neg. LLF: 159.82993257746708
Iteration: 17, Func. Count: 196, Neg. LLF: 159.82510579889222
Iteration: 18, Func. Count: 207, Neg. LLF: 159.8225898721454
Iteration: 19, Func. Count: 218, Neg. LLF: 159.82214914342623
Iteration: 20, Func. Count: 229, Neg. LLF: 159.82194929240515
Iteration: 21, Func. Count: 240, Neg. LLF: 159.821895947769
Iteration: 22, Func. Count: 251, Neg. LLF: 159.82188079841006
Iteration: 23, Func. Count: 262, Neg. LLF: 159.8218789761083
Iteration: 24, Func. Count: 272, Neg. LLF: 159.82187888664023
Optimization terminated successfully (Exit mode 0)
Current function value: 159.8218789761083
Iterations: 24
Function evaluations: 272
Gradient evaluations: 24
Iteration: 1, Func. Count: 13, Neg. LLF: 19831972.925207578
Iteration: 2, Func. Count: 27, Neg. LLF: 161.95068641010792
Iteration: 3, Func. Count: 40, Neg. LLF: 159.53318524988924
Iteration: 4, Func. Count: 53, Neg. LLF: 158.2809037927309
Iteration: 5, Func. Count: 65, Neg. LLF: 158.22678775872228
Iteration: 6, Func. Count: 77, Neg. LLF: 158.23018915501447
Iteration: 7, Func. Count: 90, Neg. LLF: 158.20010019105308
Iteration: 8, Func. Count: 103, Neg. LLF: 158.17794169826573
Iteration: 9, Func. Count: 115, Neg. LLF: 158.17746084319924
Iteration: 10, Func. Count: 127, Neg. LLF: 158.17742354865155
Iteration: 11, Func. Count: 139, Neg. LLF: 158.17742304145108
Optimization terminated successfully (Exit mode 0)
Current function value: 158.17742304145108
Iterations: 11
Function evaluations: 139
Gradient evaluations: 11
Iteration: 1, Func. Count: 14, Neg. LLF: 19280718.41659554
Iteration: 2, Func. Count: 29, Neg. LLF: 177.63877874892884
Iteration: 3, Func. Count: 43, Neg. LLF: 160.856976301079
Iteration: 4, Func. Count: 57, Neg. LLF: 159.8606965057099
Iteration: 5, Func. Count: 71, Neg. LLF: 159.24185525133512
Iteration: 6, Func. Count: 85, Neg. LLF: 158.39124283990515
Iteration: 7, Func. Count: 99, Neg. LLF: 158.18154707055942
Iteration: 8, Func. Count: 112, Neg. LLF: 158.2074616428896
Iteration: 9, Func. Count: 126, Neg. LLF: 158.06118003209738
Iteration: 10, Func. Count: 139, Neg. LLF: 158.0510229755291
Iteration: 11, Func. Count: 152, Neg. LLF: 158.04499510371667
Iteration: 12, Func. Count: 165, Neg. LLF: 158.04241902976332
Iteration: 13, Func. Count: 178, Neg. LLF: 158.04237699524293
Iteration: 14, Func. Count: 191, Neg. LLF: 158.04237278791862
Iteration: 15, Func. Count: 204, Neg. LLF: 158.042369811655
Iteration: 16, Func. Count: 217, Neg. LLF: 158.04236910389514
Optimization terminated successfully (Exit mode 0)
Current function value: 158.04236910389514
Iterations: 16
Function evaluations: 217
Gradient evaluations: 16
Iteration: 1, Func. Count: 15, Neg. LLF: 538.521719041303
Iteration: 2, Func. Count: 30, Neg. LLF: 166.56556141465404
Iteration: 3, Func. Count: 45, Neg. LLF: 157.29396078138004
Iteration: 4, Func. Count: 59, Neg. LLF: 156.89335864243276
Iteration: 5, Func. Count: 73, Neg. LLF: 156.49240698180895
Iteration: 6, Func. Count: 87, Neg. LLF: 156.07193016703667
Iteration: 7, Func. Count: 101, Neg. LLF: 155.99461036530036
Iteration: 8, Func. Count: 115, Neg. LLF: 155.99025791388743
Iteration: 9, Func. Count: 129, Neg. LLF: 155.9900966370053
Iteration: 10, Func. Count: 143, Neg. LLF: 155.9900665831134
Iteration: 11, Func. Count: 157, Neg. LLF: 155.99005334938326
Iteration: 12, Func. Count: 171, Neg. LLF: 155.99005205682715
Iteration: 13, Func. Count: 184, Neg. LLF: 155.9900520533626
Optimization terminated successfully (Exit mode 0)
Current function value: 155.99005205682715
Iterations: 13
Function evaluations: 184
Gradient evaluations: 13
Iteration: 1, Func. Count: 16, Neg. LLF: 2534.313034964709
Iteration: 2, Func. Count: 33, Neg. LLF: 1475.5487918593249
Iteration: 3, Func. Count: 49, Neg. LLF: 163.63300153040743
Iteration: 4, Func. Count: 65, Neg. LLF: 160.6614705313276
Iteration: 5, Func. Count: 81, Neg. LLF: 157.82180404914013
Iteration: 6, Func. Count: 97, Neg. LLF: 159.02534638458692
Iteration: 7, Func. Count: 113, Neg. LLF: 156.69514347026717
Iteration: 8, Func. Count: 128, Neg. LLF: 156.5837244886651
Iteration: 9, Func. Count: 143, Neg. LLF: 156.6359472450893
Iteration: 10, Func. Count: 159, Neg. LLF: 156.5617042366141
Iteration: 11, Func. Count: 174, Neg. LLF: 156.5580092466711
Iteration: 12, Func. Count: 189, Neg. LLF: 156.5572140536651
Iteration: 13, Func. Count: 204, Neg. LLF: 156.55675084656238
Iteration: 14, Func. Count: 219, Neg. LLF: 156.55674296853013
Iteration: 15, Func. Count: 234, Neg. LLF: 156.5567420959206
Optimization terminated successfully (Exit mode 0)
Current function value: 156.5567420959206
Iterations: 15
Function evaluations: 234
Gradient evaluations: 15
Iteration: 1, Func. Count: 6, Neg. LLF: 19861294.315403085
Iteration: 2, Func. Count: 13, Neg. LLF: 159.76633786479937
Iteration: 3, Func. Count: 19, Neg. LLF: 158.8531446846373
Iteration: 4, Func. Count: 25, Neg. LLF: 158.24426300819545
Iteration: 5, Func. Count: 30, Neg. LLF: 158.18255035406864
Iteration: 6, Func. Count: 35, Neg. LLF: 158.18017784539634
Iteration: 7, Func. Count: 40, Neg. LLF: 158.18012568094585
Iteration: 8, Func. Count: 45, Neg. LLF: 158.18012448263102
Iteration: 9, Func. Count: 49, Neg. LLF: 158.18012448270474
Optimization terminated successfully (Exit mode 0)
Current function value: 158.18012448263102
Iterations: 9
Function evaluations: 49
Gradient evaluations: 9
Iteration: 1, Func. Count: 5, Neg. LLF: 166.6114509888373
Iteration: 2, Func. Count: 9, Neg. LLF: 168.64338296841592
Iteration: 3, Func. Count: 14, Neg. LLF: 165.94489642466831
Iteration: 4, Func. Count: 18, Neg. LLF: 165.54522505550003
Iteration: 5, Func. Count: 22, Neg. LLF: 165.02992684661962
Iteration: 6, Func. Count: 26, Neg. LLF: 164.96427093691136
Iteration: 7, Func. Count: 30, Neg. LLF: 164.92030807828246
Iteration: 8, Func. Count: 34, Neg. LLF: 164.84561665357916
Iteration: 9, Func. Count: 38, Neg. LLF: 164.83600581998334
Iteration: 10, Func. Count: 42, Neg. LLF: 164.83440504730117
Iteration: 11, Func. Count: 46, Neg. LLF: 164.83424154014116
Iteration: 12, Func. Count: 50, Neg. LLF: 164.83421982072366
Iteration: 13, Func. Count: 54, Neg. LLF: 164.83421924559718
Optimization terminated successfully (Exit mode 0)
Current function value: 164.83421924559718
Iterations: 13
Function evaluations: 54
Gradient evaluations: 13
Iteration: 1, Func. Count: 6, Neg. LLF: 373.5276745799776
Iteration: 2, Func. Count: 13, Neg. LLF: 163.2351992745307
Iteration: 3, Func. Count: 20, Neg. LLF: 162.06588216295012
Iteration: 4, Func. Count: 25, Neg. LLF: 161.985057496965
Iteration: 5, Func. Count: 30, Neg. LLF: 161.96688750103903
Iteration: 6, Func. Count: 35, Neg. LLF: 161.96409333734636
Iteration: 7, Func. Count: 40, Neg. LLF: 161.96393594959957
Iteration: 8, Func. Count: 45, Neg. LLF: 161.96391488202664
Iteration: 9, Func. Count: 50, Neg. LLF: 161.96391197053836
Iteration: 10, Func. Count: 54, Neg. LLF: 161.96391197055416
Optimization terminated successfully (Exit mode 0)
Current function value: 161.96391197053836
Iterations: 10
Function evaluations: 54
Gradient evaluations: 10
Iteration: 1, Func. Count: 7, Neg. LLF: 384.0668890070563
Iteration: 2, Func. Count: 15, Neg. LLF: 162.03000025931405
Iteration: 3, Func. Count: 22, Neg. LLF: 161.59309600772306
Iteration: 4, Func. Count: 28, Neg. LLF: 161.48478296250155
Iteration: 5, Func. Count: 34, Neg. LLF: 162.0754819263468
Iteration: 6, Func. Count: 42, Neg. LLF: 161.25911787027795
Iteration: 7, Func. Count: 48, Neg. LLF: 161.21818938217473
Iteration: 8, Func. Count: 54, Neg. LLF: 161.1688296165476
Iteration: 9, Func. Count: 60, Neg. LLF: 161.15781321153892
Iteration: 10, Func. Count: 66, Neg. LLF: 161.1437678852954
Iteration: 11, Func. Count: 72, Neg. LLF: 161.14315077600426
Iteration: 12, Func. Count: 78, Neg. LLF: 161.14314102854638
Iteration: 13, Func. Count: 84, Neg. LLF: 161.14313995356886
Iteration: 14, Func. Count: 89, Neg. LLF: 161.1431399250683
Optimization terminated successfully (Exit mode 0)
Current function value: 161.14313995356886
Iterations: 14
Function evaluations: 89
Gradient evaluations: 14
Iteration: 1, Func. Count: 8, Neg. LLF: 387.4698263577382
Iteration: 2, Func. Count: 17, Neg. LLF: 162.53819356656916
Iteration: 3, Func. Count: 25, Neg. LLF: 161.5676643945655
Iteration: 4, Func. Count: 32, Neg. LLF: 161.7637323671638
Iteration: 5, Func. Count: 40, Neg. LLF: 162.66331151805548
Iteration: 6, Func. Count: 48, Neg. LLF: 161.2609020526627
Iteration: 7, Func. Count: 55, Neg. LLF: 161.20817281143547
Iteration: 8, Func. Count: 62, Neg. LLF: 161.18831766437455
Iteration: 9, Func. Count: 69, Neg. LLF: 161.15412701840384
Iteration: 10, Func. Count: 76, Neg. LLF: 161.1462724609367
Iteration: 11, Func. Count: 83, Neg. LLF: 161.1432738006431
Iteration: 12, Func. Count: 90, Neg. LLF: 161.1431517858556
Iteration: 13, Func. Count: 97, Neg. LLF: 161.14314034138124
Iteration: 14, Func. Count: 103, Neg. LLF: 161.14314034551853
Optimization terminated successfully (Exit mode 0)
Current function value: 161.14314034138124
Iterations: 14
Function evaluations: 103
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 389.76852855304077
Iteration: 2, Func. Count: 18, Neg. LLF: 216.85713747419896
Iteration: 3, Func. Count: 27, Neg. LLF: 161.84015817330194
Iteration: 4, Func. Count: 35, Neg. LLF: 161.9088508087887
Iteration: 5, Func. Count: 44, Neg. LLF: 162.90423219898693
Iteration: 6, Func. Count: 53, Neg. LLF: 161.56732634936773
Iteration: 7, Func. Count: 61, Neg. LLF: 161.4377130861545
Iteration: 8, Func. Count: 69, Neg. LLF: 161.35190140988388
Iteration: 9, Func. Count: 77, Neg. LLF: 161.30463725166652
Iteration: 10, Func. Count: 85, Neg. LLF: 161.24197285804496
Iteration: 11, Func. Count: 93, Neg. LLF: 161.2079380122524
Iteration: 12, Func. Count: 101, Neg. LLF: 161.18549259813662
Iteration: 13, Func. Count: 109, Neg. LLF: 161.15080117256866
Iteration: 14, Func. Count: 117, Neg. LLF: 161.14368544937275
Iteration: 15, Func. Count: 125, Neg. LLF: 161.14323970797653
Iteration: 16, Func. Count: 133, Neg. LLF: 161.14314915839415
Iteration: 17, Func. Count: 141, Neg. LLF: 161.14313999556114
Iteration: 18, Func. Count: 148, Neg. LLF: 161.14313998594233
Optimization terminated successfully (Exit mode 0)
Current function value: 161.14313999556114
Iterations: 18
Function evaluations: 148
Gradient evaluations: 18
Iteration: 1, Func. Count: 6, Neg. LLF: 166.05097617442482
Iteration: 2, Func. Count: 12, Neg. LLF: 170.22378572494804
Iteration: 3, Func. Count: 19, Neg. LLF: 164.56696050339772
Iteration: 4, Func. Count: 25, Neg. LLF: 163.71231619097253
Iteration: 5, Func. Count: 30, Neg. LLF: 163.6756661928715
Iteration: 6, Func. Count: 35, Neg. LLF: 163.66714933899087
Iteration: 7, Func. Count: 40, Neg. LLF: 163.66024047099936
Iteration: 8, Func. Count: 45, Neg. LLF: 163.6433501276979
Iteration: 9, Func. Count: 50, Neg. LLF: 163.63935502468053
Iteration: 10, Func. Count: 55, Neg. LLF: 163.63562873327675
Iteration: 11, Func. Count: 60, Neg. LLF: 163.63158652056484
Iteration: 12, Func. Count: 65, Neg. LLF: 163.62542082583948
Iteration: 13, Func. Count: 70, Neg. LLF: 163.6203911147785
Iteration: 14, Func. Count: 75, Neg. LLF: 163.6191321305139
Iteration: 15, Func. Count: 80, Neg. LLF: 163.61899591744734
Iteration: 16, Func. Count: 85, Neg. LLF: 163.6189911442686
Iteration: 17, Func. Count: 89, Neg. LLF: 163.61899114427723
Optimization terminated successfully (Exit mode 0)
Current function value: 163.6189911442686
Iterations: 17
Function evaluations: 89
Gradient evaluations: 17
Iteration: 1, Func. Count: 7, Neg. LLF: 374.16306279355064
Iteration: 2, Func. Count: 15, Neg. LLF: 163.565662729893
Iteration: 3, Func. Count: 23, Neg. LLF: 162.07213763492913
Iteration: 4, Func. Count: 29, Neg. LLF: 162.0399239667411
Iteration: 5, Func. Count: 35, Neg. LLF: 161.98785300979165
Iteration: 6, Func. Count: 41, Neg. LLF: 161.96880340457744
Iteration: 7, Func. Count: 47, Neg. LLF: 161.96397985209643
Iteration: 8, Func. Count: 53, Neg. LLF: 161.9639122911516
Iteration: 9, Func. Count: 59, Neg. LLF: 161.96391209610127
Optimization terminated successfully (Exit mode 0)
Current function value: 161.96391209610127
Iterations: 9
Function evaluations: 59
Gradient evaluations: 9
Iteration: 1, Func. Count: 8, Neg. LLF: 382.13852551481733
Iteration: 2, Func. Count: 17, Neg. LLF: 162.94410224608401
Iteration: 3, Func. Count: 25, Neg. LLF: 161.57869838431188
Iteration: 4, Func. Count: 32, Neg. LLF: 161.79050293757223
Iteration: 5, Func. Count: 41, Neg. LLF: 161.4090932695165
Iteration: 6, Func. Count: 48, Neg. LLF: 161.42538542883625
Iteration: 7, Func. Count: 56, Neg. LLF: 161.25249104701308
Iteration: 8, Func. Count: 63, Neg. LLF: 161.1887497194004
Iteration: 9, Func. Count: 70, Neg. LLF: 161.16678506891398
Iteration: 10, Func. Count: 77, Neg. LLF: 161.1504088569564
Iteration: 11, Func. Count: 84, Neg. LLF: 161.14519614394118
Iteration: 12, Func. Count: 91, Neg. LLF: 161.14329117891282
Iteration: 13, Func. Count: 98, Neg. LLF: 161.14314466254262
Iteration: 14, Func. Count: 105, Neg. LLF: 161.14313996723658
Iteration: 15, Func. Count: 111, Neg. LLF: 161.14313993871605
Optimization terminated successfully (Exit mode 0)
Current function value: 161.14313996723658
Iterations: 15
Function evaluations: 111
Gradient evaluations: 15
Iteration: 1, Func. Count: 9, Neg. LLF: 385.44948269221277
Iteration: 2, Func. Count: 18, Neg. LLF: 181.8004655222677
Iteration: 3, Func. Count: 27, Neg. LLF: 163.25068099197568
Iteration: 4, Func. Count: 36, Neg. LLF: 161.8874854911148
Iteration: 5, Func. Count: 44, Neg. LLF: 163.1973513463767
Iteration: 6, Func. Count: 54, Neg. LLF: 161.6731848237219
Iteration: 7, Func. Count: 62, Neg. LLF: 161.53507325205675
Iteration: 8, Func. Count: 70, Neg. LLF: 161.464755010568
Iteration: 9, Func. Count: 78, Neg. LLF: 161.3675259373741
Iteration: 10, Func. Count: 86, Neg. LLF: 161.24768946182687
Iteration: 11, Func. Count: 94, Neg. LLF: 161.21714392611926
Iteration: 12, Func. Count: 102, Neg. LLF: 161.19605356067197
Iteration: 13, Func. Count: 110, Neg. LLF: 161.17166356283047
Iteration: 14, Func. Count: 118, Neg. LLF: 161.1451656997495
Iteration: 15, Func. Count: 126, Neg. LLF: 161.14321749880867
Iteration: 16, Func. Count: 134, Neg. LLF: 161.1431444355621
Iteration: 17, Func. Count: 142, Neg. LLF: 161.1431401832303
Iteration: 18, Func. Count: 149, Neg. LLF: 161.14314018732364
Optimization terminated successfully (Exit mode 0)
Current function value: 161.1431401832303
Iterations: 18
Function evaluations: 149
Gradient evaluations: 18
Iteration: 1, Func. Count: 10, Neg. LLF: 388.02382910210605
Iteration: 2, Func. Count: 20, Neg. LLF: 181.72829962958036
Iteration: 3, Func. Count: 30, Neg. LLF: 163.5265199532114
Iteration: 4, Func. Count: 40, Neg. LLF: 161.93086236151555
Iteration: 5, Func. Count: 49, Neg. LLF: 161.95546991789135
Iteration: 6, Func. Count: 59, Neg. LLF: 161.75477858373816
Iteration: 7, Func. Count: 69, Neg. LLF: 161.52951121252028
Iteration: 8, Func. Count: 78, Neg. LLF: 161.43367319072823
Iteration: 9, Func. Count: 87, Neg. LLF: 161.41620312212729
Iteration: 10, Func. Count: 97, Neg. LLF: 161.3021524977157
Iteration: 11, Func. Count: 106, Neg. LLF: 161.2207776158228
Iteration: 12, Func. Count: 115, Neg. LLF: 161.18589310031942
Iteration: 13, Func. Count: 124, Neg. LLF: 161.17352952298123
Iteration: 14, Func. Count: 133, Neg. LLF: 161.1460993182166
Iteration: 15, Func. Count: 142, Neg. LLF: 161.14318556596572
Iteration: 16, Func. Count: 151, Neg. LLF: 161.1431401074091
Iteration: 17, Func. Count: 159, Neg. LLF: 161.14314009774918
Optimization terminated successfully (Exit mode 0)
Current function value: 161.1431401074091
Iterations: 17
Function evaluations: 159
Gradient evaluations: 17
Iteration: 1, Func. Count: 7, Neg. LLF: 164.86907572552136
Iteration: 2, Func. Count: 14, Neg. LLF: 169.02924144192988
Iteration: 3, Func. Count: 21, Neg. LLF: 165.82954376494155
Iteration: 4, Func. Count: 29, Neg. LLF: 164.75757359911594
Iteration: 5, Func. Count: 36, Neg. LLF: 162.13342802173375
Iteration: 6, Func. Count: 42, Neg. LLF: 162.10826422592316
Iteration: 7, Func. Count: 48, Neg. LLF: 162.04958180382087
Iteration: 8, Func. Count: 54, Neg. LLF: 162.02130315519273
Iteration: 9, Func. Count: 60, Neg. LLF: 161.9073400372654
Iteration: 10, Func. Count: 66, Neg. LLF: 161.76836986942084
Iteration: 11, Func. Count: 72, Neg. LLF: 161.61212812648074
Iteration: 12, Func. Count: 78, Neg. LLF: 161.54676888709807
Iteration: 13, Func. Count: 84, Neg. LLF: 161.5230528401044
Iteration: 14, Func. Count: 90, Neg. LLF: 161.5190287166128
Iteration: 15, Func. Count: 96, Neg. LLF: 161.51887702505866
Iteration: 16, Func. Count: 102, Neg. LLF: 161.51880028998085
Iteration: 17, Func. Count: 108, Neg. LLF: 161.5187973462858
Iteration: 18, Func. Count: 114, Neg. LLF: 161.51879609370013
Iteration: 19, Func. Count: 119, Neg. LLF: 161.5187960911719
Optimization terminated successfully (Exit mode 0)
Current function value: 161.51879609370013
Iterations: 19
Function evaluations: 119
Gradient evaluations: 19
Iteration: 1, Func. Count: 8, Neg. LLF: 376.048093315226
Iteration: 2, Func. Count: 17, Neg. LLF: 162.81115835559893
Iteration: 3, Func. Count: 27, Neg. LLF: 162.09460520505533
Iteration: 4, Func. Count: 35, Neg. LLF: 162.04414305565658
Iteration: 5, Func. Count: 43, Neg. LLF: 161.98955951794596
Iteration: 6, Func. Count: 50, Neg. LLF: 161.9750533987516
Iteration: 7, Func. Count: 57, Neg. LLF: 161.9632143651239
Iteration: 8, Func. Count: 64, Neg. LLF: 161.95451898904483
Iteration: 9, Func. Count: 71, Neg. LLF: 161.95377355996268
Iteration: 10, Func. Count: 78, Neg. LLF: 161.95375030141156
Iteration: 11, Func. Count: 84, Neg. LLF: 161.95375030153127
Optimization terminated successfully (Exit mode 0)
Current function value: 161.95375030141156
Iterations: 11
Function evaluations: 84
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 384.08507151793305
Iteration: 2, Func. Count: 19, Neg. LLF: 163.39170024818768
Iteration: 3, Func. Count: 28, Neg. LLF: 162.1392105001727
Iteration: 4, Func. Count: 37, Neg. LLF: 161.36841734370321
Iteration: 5, Func. Count: 45, Neg. LLF: 161.45234783241966
Iteration: 6, Func. Count: 54, Neg. LLF: 161.21103194201112
Iteration: 7, Func. Count: 62, Neg. LLF: 161.15498848295255
Iteration: 8, Func. Count: 70, Neg. LLF: 161.10380624673564
Iteration: 9, Func. Count: 78, Neg. LLF: 161.08532734516285
Iteration: 10, Func. Count: 86, Neg. LLF: 161.06759582543012
Iteration: 11, Func. Count: 94, Neg. LLF: 161.0664048509825
Iteration: 12, Func. Count: 102, Neg. LLF: 161.0663932252827
Iteration: 13, Func. Count: 110, Neg. LLF: 161.0663911640384
Iteration: 14, Func. Count: 117, Neg. LLF: 161.06639114077245
Optimization terminated successfully (Exit mode 0)
Current function value: 161.0663911640384
Iterations: 14
Function evaluations: 117
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 388.0729365808899
Iteration: 2, Func. Count: 20, Neg. LLF: 198.9014339725204
Iteration: 3, Func. Count: 30, Neg. LLF: 164.71610123709712
Iteration: 4, Func. Count: 40, Neg. LLF: 161.30924734850439
Iteration: 5, Func. Count: 49, Neg. LLF: 161.16409974479413
Iteration: 6, Func. Count: 58, Neg. LLF: 167.6784199799614
Iteration: 7, Func. Count: 68, Neg. LLF: 160.85442313288914
Iteration: 8, Func. Count: 77, Neg. LLF: 161.4298374236234
Iteration: 9, Func. Count: 87, Neg. LLF: 160.63620192376726
Iteration: 10, Func. Count: 96, Neg. LLF: 160.5723946604426
Iteration: 11, Func. Count: 105, Neg. LLF: 160.5660129684702
Iteration: 12, Func. Count: 114, Neg. LLF: 160.5570042030827
Iteration: 13, Func. Count: 123, Neg. LLF: 160.549756514487
Iteration: 14, Func. Count: 132, Neg. LLF: 160.53356591439433
Iteration: 15, Func. Count: 141, Neg. LLF: 160.51908252694906
Iteration: 16, Func. Count: 150, Neg. LLF: 160.50795178751147
Iteration: 17, Func. Count: 159, Neg. LLF: 160.50324274878056
Iteration: 18, Func. Count: 168, Neg. LLF: 160.50181313687537
Iteration: 19, Func. Count: 177, Neg. LLF: 160.50116864259692
Iteration: 20, Func. Count: 186, Neg. LLF: 160.50060562192579
Iteration: 21, Func. Count: 195, Neg. LLF: 160.5001802603681
Iteration: 22, Func. Count: 204, Neg. LLF: 160.50002563628405
Iteration: 23, Func. Count: 213, Neg. LLF: 160.5000060743653
Iteration: 24, Func. Count: 222, Neg. LLF: 160.50000526314355
Optimization terminated successfully (Exit mode 0)
Current function value: 160.50000526314355
Iterations: 24
Function evaluations: 222
Gradient evaluations: 24
Iteration: 1, Func. Count: 11, Neg. LLF: 173.17256188544567
Iteration: 2, Func. Count: 22, Neg. LLF: 169.93067784199351
Iteration: 3, Func. Count: 33, Neg. LLF: 161.68788649378152
Iteration: 4, Func. Count: 44, Neg. LLF: 161.37829167362253
Iteration: 5, Func. Count: 55, Neg. LLF: 160.95190086633028
Iteration: 6, Func. Count: 65, Neg. LLF: 160.75902845716593
Iteration: 7, Func. Count: 75, Neg. LLF: 161.22276552412214
Iteration: 8, Func. Count: 87, Neg. LLF: 160.71636793301502
Iteration: 9, Func. Count: 97, Neg. LLF: 160.6385331646891
Iteration: 10, Func. Count: 107, Neg. LLF: 160.5622942716087
Iteration: 11, Func. Count: 117, Neg. LLF: 160.5404900210916
Iteration: 12, Func. Count: 127, Neg. LLF: 160.53095011390104
Iteration: 13, Func. Count: 137, Neg. LLF: 160.51249417742625
Iteration: 14, Func. Count: 147, Neg. LLF: 160.5060667886058
Iteration: 15, Func. Count: 157, Neg. LLF: 160.5002115458371
Iteration: 16, Func. Count: 167, Neg. LLF: 160.50001484209858
Iteration: 17, Func. Count: 177, Neg. LLF: 160.50000546821767
Iteration: 18, Func. Count: 186, Neg. LLF: 160.50000550794567
Optimization terminated successfully (Exit mode 0)
Current function value: 160.50000546821767
Iterations: 18
Function evaluations: 186
Gradient evaluations: 18
Iteration: 1, Func. Count: 8, Neg. LLF: 164.77050394220052
Iteration: 2, Func. Count: 16, Neg. LLF: 165.51839087870502
Iteration: 3, Func. Count: 24, Neg. LLF: 163.45107736932067
Iteration: 4, Func. Count: 32, Neg. LLF: 162.11439719786767
Iteration: 5, Func. Count: 39, Neg. LLF: 162.64108360710702
Iteration: 6, Func. Count: 47, Neg. LLF: 162.0165889060208
Iteration: 7, Func. Count: 54, Neg. LLF: 161.9316459150991
Iteration: 8, Func. Count: 61, Neg. LLF: 161.8509744713641
Iteration: 9, Func. Count: 68, Neg. LLF: 161.69385710937252
Iteration: 10, Func. Count: 75, Neg. LLF: 161.6044049527531
Iteration: 11, Func. Count: 82, Neg. LLF: 161.55867746454277
Iteration: 12, Func. Count: 89, Neg. LLF: 161.53917998716298
Iteration: 13, Func. Count: 96, Neg. LLF: 161.51970522588857
Iteration: 14, Func. Count: 103, Neg. LLF: 161.51895169972587
Iteration: 15, Func. Count: 110, Neg. LLF: 161.51879836993788
Iteration: 16, Func. Count: 117, Neg. LLF: 161.5187961710075
Iteration: 17, Func. Count: 123, Neg. LLF: 161.51879625037674
Optimization terminated successfully (Exit mode 0)
Current function value: 161.5187961710075
Iterations: 17
Function evaluations: 123
Gradient evaluations: 17
Iteration: 1, Func. Count: 9, Neg. LLF: 375.0408695508342
Iteration: 2, Func. Count: 19, Neg. LLF: 162.72564474457658
Iteration: 3, Func. Count: 30, Neg. LLF: 162.0393801449616
Iteration: 4, Func. Count: 38, Neg. LLF: 162.04437992620123
Iteration: 5, Func. Count: 47, Neg. LLF: 162.0455061184153
Iteration: 6, Func. Count: 56, Neg. LLF: 161.98789486613745
Iteration: 7, Func. Count: 64, Neg. LLF: 161.9666196066567
Iteration: 8, Func. Count: 72, Neg. LLF: 161.95903618108557
Iteration: 9, Func. Count: 80, Neg. LLF: 161.954161681981
Iteration: 10, Func. Count: 88, Neg. LLF: 161.95376614933718
Iteration: 11, Func. Count: 96, Neg. LLF: 161.95375028834212
Iteration: 12, Func. Count: 103, Neg. LLF: 161.9537502883088
Optimization terminated successfully (Exit mode 0)
Current function value: 161.95375028834212
Iterations: 12
Function evaluations: 103
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 383.565440840243
Iteration: 2, Func. Count: 21, Neg. LLF: 164.1425350823684
Iteration: 3, Func. Count: 31, Neg. LLF: 162.29966727278676
Iteration: 4, Func. Count: 41, Neg. LLF: 161.4373211944284
Iteration: 5, Func. Count: 50, Neg. LLF: 161.52340100397254
Iteration: 6, Func. Count: 60, Neg. LLF: 161.2447843460542
Iteration: 7, Func. Count: 69, Neg. LLF: 161.1653456539365
Iteration: 8, Func. Count: 78, Neg. LLF: 161.12981346701207
Iteration: 9, Func. Count: 87, Neg. LLF: 161.10219067244896
Iteration: 10, Func. Count: 96, Neg. LLF: 161.07476889413087
Iteration: 11, Func. Count: 105, Neg. LLF: 161.0669365161444
Iteration: 12, Func. Count: 114, Neg. LLF: 161.06646546297293
Iteration: 13, Func. Count: 123, Neg. LLF: 161.06640018265176
Iteration: 14, Func. Count: 132, Neg. LLF: 161.06639124014148
Iteration: 15, Func. Count: 140, Neg. LLF: 161.0663912168806
Optimization terminated successfully (Exit mode 0)
Current function value: 161.06639124014148
Iterations: 15
Function evaluations: 140
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 387.23129513841445
Iteration: 2, Func. Count: 22, Neg. LLF: 203.97017836890683
Iteration: 3, Func. Count: 33, Neg. LLF: 164.93873366115577
Iteration: 4, Func. Count: 44, Neg. LLF: 161.3982203348163
Iteration: 5, Func. Count: 54, Neg. LLF: 161.2309571298605
Iteration: 6, Func. Count: 64, Neg. LLF: 163.7214995422218
Iteration: 7, Func. Count: 75, Neg. LLF: 160.90105304194088
Iteration: 8, Func. Count: 85, Neg. LLF: 160.71381168330845
Iteration: 9, Func. Count: 95, Neg. LLF: 160.60670898014132
Iteration: 10, Func. Count: 105, Neg. LLF: 160.59862750710613
Iteration: 11, Func. Count: 115, Neg. LLF: 160.58149759098038
Iteration: 12, Func. Count: 125, Neg. LLF: 160.58267958585375
Iteration: 13, Func. Count: 136, Neg. LLF: 160.5354164805054
Iteration: 14, Func. Count: 146, Neg. LLF: 160.5211146513832
Iteration: 15, Func. Count: 156, Neg. LLF: 160.51549872823074
Iteration: 16, Func. Count: 166, Neg. LLF: 160.51099302609495
Iteration: 17, Func. Count: 176, Neg. LLF: 160.5063860684112
Iteration: 18, Func. Count: 186, Neg. LLF: 160.50267085631089
Iteration: 19, Func. Count: 196, Neg. LLF: 160.50047345692562
Iteration: 20, Func. Count: 206, Neg. LLF: 160.50002030389538
Iteration: 21, Func. Count: 216, Neg. LLF: 160.50000568373397
Iteration: 22, Func. Count: 225, Neg. LLF: 160.50000568374227
Optimization terminated successfully (Exit mode 0)
Current function value: 160.50000568373397
Iterations: 22
Function evaluations: 225
Gradient evaluations: 22
Iteration: 1, Func. Count: 12, Neg. LLF: 168.3468550476916
Iteration: 2, Func. Count: 24, Neg. LLF: 161.86272372890198
Iteration: 3, Func. Count: 36, Neg. LLF: 161.6982335001477
Iteration: 4, Func. Count: 48, Neg. LLF: 167.18631453801518
Iteration: 5, Func. Count: 60, Neg. LLF: 161.05047209271413
Iteration: 6, Func. Count: 72, Neg. LLF: 160.77958482281656
Iteration: 7, Func. Count: 83, Neg. LLF: 160.75909062766306
Iteration: 8, Func. Count: 94, Neg. LLF: 160.737000709404
Iteration: 9, Func. Count: 105, Neg. LLF: 160.60970442523234
Iteration: 10, Func. Count: 116, Neg. LLF: 160.53827292001978
Iteration: 11, Func. Count: 127, Neg. LLF: 160.51765171828018
Iteration: 12, Func. Count: 138, Neg. LLF: 160.5063396887954
Iteration: 13, Func. Count: 149, Neg. LLF: 160.5002535517307
Iteration: 14, Func. Count: 160, Neg. LLF: 160.50001388647829
Iteration: 15, Func. Count: 171, Neg. LLF: 160.50000555230284
Iteration: 16, Func. Count: 181, Neg. LLF: 160.50000559208246
Optimization terminated successfully (Exit mode 0)
Current function value: 160.50000555230284
Iterations: 16
Function evaluations: 181
Gradient evaluations: 16
Iteration: 1, Func. Count: 5, Neg. LLF: 165.345566960615
Iteration: 2, Func. Count: 10, Neg. LLF: 164.62154648846604
Iteration: 3, Func. Count: 15, Neg. LLF: 164.5662081334192
Iteration: 4, Func. Count: 19, Neg. LLF: 164.5442746710083
Iteration: 5, Func. Count: 23, Neg. LLF: 164.53739111973834
Iteration: 6, Func. Count: 27, Neg. LLF: 164.5059693158256
Iteration: 7, Func. Count: 31, Neg. LLF: 164.44515113714732
Iteration: 8, Func. Count: 35, Neg. LLF: 164.44238446683528
Iteration: 9, Func. Count: 39, Neg. LLF: 164.44227989672586
Iteration: 10, Func. Count: 42, Neg. LLF: 164.44227989672265
Optimization terminated successfully (Exit mode 0)
Current function value: 164.44227989672586
Iterations: 10
Function evaluations: 42
Gradient evaluations: 10
Iteration: 1, Func. Count: 6, Neg. LLF: 359.2977355521374
Iteration: 2, Func. Count: 13, Neg. LLF: 165.29655739520038
Iteration: 3, Func. Count: 19, Neg. LLF: 163.72935366630946
Iteration: 4, Func. Count: 25, Neg. LLF: 163.66741239455595
Iteration: 5, Func. Count: 31, Neg. LLF: 163.11486890922828
Iteration: 6, Func. Count: 36, Neg. LLF: 162.83801392866292
Iteration: 7, Func. Count: 41, Neg. LLF: 162.5567040731099
Iteration: 8, Func. Count: 46, Neg. LLF: 169.17867121169363
Iteration: 9, Func. Count: 52, Neg. LLF: 162.512875799292
Iteration: 10, Func. Count: 57, Neg. LLF: 162.5126535546338
Iteration: 11, Func. Count: 62, Neg. LLF: 162.51265224381964
Iteration: 12, Func. Count: 67, Neg. LLF: 162.51265152608676
Optimization terminated successfully (Exit mode 0)
Current function value: 162.51265152608676
Iterations: 12
Function evaluations: 67
Gradient evaluations: 12
Iteration: 1, Func. Count: 7, Neg. LLF: 369.58490311839165
Iteration: 2, Func. Count: 15, Neg. LLF: 164.75194113726022
Iteration: 3, Func. Count: 22, Neg. LLF: 163.2209643567937
Iteration: 4, Func. Count: 29, Neg. LLF: 162.98688625385876
Iteration: 5, Func. Count: 35, Neg. LLF: 162.75754146986833
Iteration: 6, Func. Count: 41, Neg. LLF: 162.6104770726983
Iteration: 7, Func. Count: 47, Neg. LLF: 162.57228651140457
Iteration: 8, Func. Count: 53, Neg. LLF: 162.50473433446663
Iteration: 9, Func. Count: 59, Neg. LLF: 162.5001688328592
Iteration: 10, Func. Count: 65, Neg. LLF: 162.4999323309284
Iteration: 11, Func. Count: 71, Neg. LLF: 162.49991796668942
Iteration: 12, Func. Count: 76, Neg. LLF: 162.49991796611013
Optimization terminated successfully (Exit mode 0)
Current function value: 162.49991796668942
Iterations: 12
Function evaluations: 76
Gradient evaluations: 12
Iteration: 1, Func. Count: 8, Neg. LLF: 375.33366927685614
Iteration: 2, Func. Count: 17, Neg. LLF: 163.90976590659037
Iteration: 3, Func. Count: 25, Neg. LLF: 162.95470413798503
Iteration: 4, Func. Count: 32, Neg. LLF: 162.89360923002803
Iteration: 5, Func. Count: 39, Neg. LLF: 162.75447283721212
Iteration: 6, Func. Count: 46, Neg. LLF: 162.71300315512082
Iteration: 7, Func. Count: 53, Neg. LLF: 162.65911879852638
Iteration: 8, Func. Count: 60, Neg. LLF: 162.63584583317098
Iteration: 9, Func. Count: 67, Neg. LLF: 162.632449818562
Iteration: 10, Func. Count: 74, Neg. LLF: 162.62988621902974
Iteration: 11, Func. Count: 81, Neg. LLF: 162.62857205986487
Iteration: 12, Func. Count: 88, Neg. LLF: 162.6279643410535
Iteration: 13, Func. Count: 95, Neg. LLF: 162.61352586716578
Iteration: 14, Func. Count: 102, Neg. LLF: 162.53036686017683
Iteration: 15, Func. Count: 109, Neg. LLF: 162.5382031449328
Iteration: 16, Func. Count: 117, Neg. LLF: 162.51300770235525
Iteration: 17, Func. Count: 124, Neg. LLF: 162.51447876273727
Iteration: 18, Func. Count: 132, Neg. LLF: 162.5126590311673
Iteration: 19, Func. Count: 139, Neg. LLF: 162.51265159080782
Iteration: 20, Func. Count: 145, Neg. LLF: 162.51265159710286
Optimization terminated successfully (Exit mode 0)
Current function value: 162.51265159080782
Iterations: 20
Function evaluations: 145
Gradient evaluations: 20
Iteration: 1, Func. Count: 9, Neg. LLF: 195.88581915958852
Iteration: 2, Func. Count: 19, Neg. LLF: 166.08836457395893
Iteration: 3, Func. Count: 28, Neg. LLF: 164.26664401357192
Iteration: 4, Func. Count: 37, Neg. LLF: 163.63764748704676
Iteration: 5, Func. Count: 45, Neg. LLF: 163.59194002508266
Iteration: 6, Func. Count: 53, Neg. LLF: 163.65663579214575
Iteration: 7, Func. Count: 62, Neg. LLF: 163.53239531880808
Iteration: 8, Func. Count: 70, Neg. LLF: 163.51277007274595
Iteration: 9, Func. Count: 78, Neg. LLF: 163.34313400228203
Iteration: 10, Func. Count: 86, Neg. LLF: 165.1057657189772
Iteration: 11, Func. Count: 95, Neg. LLF: 166.87038929745842
Iteration: 12, Func. Count: 104, Neg. LLF: 164.58314004437807
Iteration: 13, Func. Count: 113, Neg. LLF: 163.2174264892921
Iteration: 14, Func. Count: 122, Neg. LLF: 162.68467846953092
Iteration: 15, Func. Count: 130, Neg. LLF: 162.7054074321244
Iteration: 16, Func. Count: 139, Neg. LLF: 162.65891369285126
Iteration: 17, Func. Count: 148, Neg. LLF: 162.6418080372184
Iteration: 18, Func. Count: 156, Neg. LLF: 162.56200194750213
Iteration: 19, Func. Count: 164, Neg. LLF: 162.55181890615194
Iteration: 20, Func. Count: 172, Neg. LLF: 162.5420832535885
Iteration: 21, Func. Count: 180, Neg. LLF: 162.5370174480962
Iteration: 22, Func. Count: 188, Neg. LLF: 162.5352046808641
Iteration: 23, Func. Count: 196, Neg. LLF: 162.53278182288454
Iteration: 24, Func. Count: 204, Neg. LLF: 162.52071217311888
Iteration: 25, Func. Count: 212, Neg. LLF: 162.5140623727754
Iteration: 26, Func. Count: 220, Neg. LLF: 1078.5324262311633
Iteration: 27, Func. Count: 232, Neg. LLF: 162.5129827360421
Iteration: 28, Func. Count: 240, Neg. LLF: 162.51265255688088
Iteration: 29, Func. Count: 248, Neg. LLF: 162.51265153078893
Iteration: 30, Func. Count: 255, Neg. LLF: 162.5126515434974
Optimization terminated successfully (Exit mode 0)
Current function value: 162.51265153078893
Iterations: 31
Function evaluations: 255
Gradient evaluations: 30
Iteration: 1, Func. Count: 6, Neg. LLF: 164.50552015923375
Iteration: 2, Func. Count: 12, Neg. LLF: 165.50631535389005
Iteration: 3, Func. Count: 18, Neg. LLF: 164.74285883430886
Iteration: 4, Func. Count: 24, Neg. LLF: 163.8282736236914
Iteration: 5, Func. Count: 29, Neg. LLF: 163.8142418081039
Iteration: 6, Func. Count: 34, Neg. LLF: 163.81194688533947
Iteration: 7, Func. Count: 39, Neg. LLF: 163.810158845557
Iteration: 8, Func. Count: 44, Neg. LLF: 163.81014609673812
Iteration: 9, Func. Count: 48, Neg. LLF: 163.8101460967331
Optimization terminated successfully (Exit mode 0)
Current function value: 163.81014609673812
Iterations: 9
Function evaluations: 48
Gradient evaluations: 9
Iteration: 1, Func. Count: 7, Neg. LLF: 366.0704425073606
Iteration: 2, Func. Count: 15, Neg. LLF: 163.25103130004538
Iteration: 3, Func. Count: 23, Neg. LLF: 162.08271137714303
Iteration: 4, Func. Count: 29, Neg. LLF: 162.0384929537481
Iteration: 5, Func. Count: 35, Neg. LLF: 161.98108127034263
Iteration: 6, Func. Count: 41, Neg. LLF: 161.968071304227
Iteration: 7, Func. Count: 47, Neg. LLF: 161.96422212115687
Iteration: 8, Func. Count: 53, Neg. LLF: 161.9639850055924
Iteration: 9, Func. Count: 59, Neg. LLF: 161.96391221090153
Iteration: 10, Func. Count: 64, Neg. LLF: 161.96391221084014
Optimization terminated successfully (Exit mode 0)
Current function value: 161.96391221090153
Iterations: 10
Function evaluations: 64
Gradient evaluations: 10
Iteration: 1, Func. Count: 8, Neg. LLF: 376.2560283024898
Iteration: 2, Func. Count: 17, Neg. LLF: 161.93956265272678
Iteration: 3, Func. Count: 25, Neg. LLF: 161.40814569219566
Iteration: 4, Func. Count: 32, Neg. LLF: 161.39080811262875
Iteration: 5, Func. Count: 40, Neg. LLF: 161.23263036664974
Iteration: 6, Func. Count: 47, Neg. LLF: 161.19055419609222
Iteration: 7, Func. Count: 54, Neg. LLF: 161.16146618700947
Iteration: 8, Func. Count: 61, Neg. LLF: 161.15240717203847
Iteration: 9, Func. Count: 68, Neg. LLF: 161.14318776528933
Iteration: 10, Func. Count: 75, Neg. LLF: 161.14314080681984
Iteration: 11, Func. Count: 82, Neg. LLF: 161.14313995503485
Optimization terminated successfully (Exit mode 0)
Current function value: 161.14313995503485
Iterations: 11
Function evaluations: 82
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 380.1946116461689
Iteration: 2, Func. Count: 19, Neg. LLF: 162.30703506635408
Iteration: 3, Func. Count: 28, Neg. LLF: 161.38111312658424
Iteration: 4, Func. Count: 36, Neg. LLF: 162.41696276357044
Iteration: 5, Func. Count: 46, Neg. LLF: 162.59585990571938
Iteration: 6, Func. Count: 55, Neg. LLF: 161.22555663082798
Iteration: 7, Func. Count: 63, Neg. LLF: 161.19346270442702
Iteration: 8, Func. Count: 71, Neg. LLF: 161.165422905429
Iteration: 9, Func. Count: 79, Neg. LLF: 161.15482290283896
Iteration: 10, Func. Count: 87, Neg. LLF: 161.14452103440343
Iteration: 11, Func. Count: 95, Neg. LLF: 161.14322834935396
Iteration: 12, Func. Count: 103, Neg. LLF: 161.1431474607259
Iteration: 13, Func. Count: 111, Neg. LLF: 161.1431399984138
Iteration: 14, Func. Count: 118, Neg. LLF: 161.14314000246435
Optimization terminated successfully (Exit mode 0)
Current function value: 161.1431399984138
Iterations: 14
Function evaluations: 118
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 362.06575928534807
Iteration: 2, Func. Count: 20, Neg. LLF: 171.55528505366502
Iteration: 3, Func. Count: 30, Neg. LLF: 161.9901474151031
Iteration: 4, Func. Count: 39, Neg. LLF: 161.9220972049319
Iteration: 5, Func. Count: 49, Neg. LLF: 172.98781702838247
Iteration: 6, Func. Count: 59, Neg. LLF: 161.47888414619882
Iteration: 7, Func. Count: 68, Neg. LLF: 161.4054948149938
Iteration: 8, Func. Count: 77, Neg. LLF: 161.2982512840123
Iteration: 9, Func. Count: 86, Neg. LLF: 161.2203420022101
Iteration: 10, Func. Count: 95, Neg. LLF: 161.20495790665976
Iteration: 11, Func. Count: 104, Neg. LLF: 161.1890619466357
Iteration: 12, Func. Count: 113, Neg. LLF: 161.16912804340447
Iteration: 13, Func. Count: 122, Neg. LLF: 161.151255446663
Iteration: 14, Func. Count: 131, Neg. LLF: 161.14438627397948
Iteration: 15, Func. Count: 140, Neg. LLF: 161.14315040067035
Iteration: 16, Func. Count: 149, Neg. LLF: 161.14313994519037
Iteration: 17, Func. Count: 157, Neg. LLF: 161.14313993558014
Optimization terminated successfully (Exit mode 0)
Current function value: 161.14313994519037
Iterations: 17
Function evaluations: 157
Gradient evaluations: 17
Iteration: 1, Func. Count: 7, Neg. LLF: 168.79782458988342
Iteration: 2, Func. Count: 14, Neg. LLF: 164.97884142956283
Iteration: 3, Func. Count: 22, Neg. LLF: 164.3072733925585
Iteration: 4, Func. Count: 29, Neg. LLF: 164.37227435069488
Iteration: 5, Func. Count: 37, Neg. LLF: 163.5478033906286
Iteration: 6, Func. Count: 43, Neg. LLF: 163.54081791306095
Iteration: 7, Func. Count: 49, Neg. LLF: 163.53991203624165
Iteration: 8, Func. Count: 55, Neg. LLF: 163.53960316943886
Iteration: 9, Func. Count: 61, Neg. LLF: 163.53809136679678
Iteration: 10, Func. Count: 67, Neg. LLF: 163.5363658110003
Iteration: 11, Func. Count: 73, Neg. LLF: 163.5344912918916
Iteration: 12, Func. Count: 79, Neg. LLF: 163.5338150389841
Iteration: 13, Func. Count: 85, Neg. LLF: 163.5336792203127
Iteration: 14, Func. Count: 91, Neg. LLF: 163.53366155904706
Iteration: 15, Func. Count: 97, Neg. LLF: 163.53366018485744
Iteration: 16, Func. Count: 102, Neg. LLF: 163.53366018486165
Optimization terminated successfully (Exit mode 0)
Current function value: 163.53366018485744
Iterations: 16
Function evaluations: 102
Gradient evaluations: 16
Iteration: 1, Func. Count: 8, Neg. LLF: 366.28954371236546
Iteration: 2, Func. Count: 17, Neg. LLF: 163.4133260933952
Iteration: 3, Func. Count: 26, Neg. LLF: 162.12679352058245
Iteration: 4, Func. Count: 33, Neg. LLF: 162.05459136183129
Iteration: 5, Func. Count: 40, Neg. LLF: 162.03163010289913
Iteration: 6, Func. Count: 47, Neg. LLF: 161.98495373813748
Iteration: 7, Func. Count: 54, Neg. LLF: 161.96678714175226
Iteration: 8, Func. Count: 61, Neg. LLF: 161.96396667541876
Iteration: 9, Func. Count: 68, Neg. LLF: 161.96391334067806
Iteration: 10, Func. Count: 75, Neg. LLF: 161.96391245306415
Optimization terminated successfully (Exit mode 0)
Current function value: 161.96391245306415
Iterations: 10
Function evaluations: 75
Gradient evaluations: 10
Iteration: 1, Func. Count: 9, Neg. LLF: 374.26976588548354
Iteration: 2, Func. Count: 19, Neg. LLF: 162.95129564106648
Iteration: 3, Func. Count: 28, Neg. LLF: 161.56433237511473
Iteration: 4, Func. Count: 36, Neg. LLF: 161.77979370331641
Iteration: 5, Func. Count: 46, Neg. LLF: 161.42391189725623
Iteration: 6, Func. Count: 54, Neg. LLF: 161.32566198107386
Iteration: 7, Func. Count: 62, Neg. LLF: 161.2441920203163
Iteration: 8, Func. Count: 70, Neg. LLF: 161.19692626552722
Iteration: 9, Func. Count: 78, Neg. LLF: 161.17139916209945
Iteration: 10, Func. Count: 86, Neg. LLF: 161.1539003877709
Iteration: 11, Func. Count: 94, Neg. LLF: 161.1437784453968
Iteration: 12, Func. Count: 102, Neg. LLF: 161.1431607591691
Iteration: 13, Func. Count: 110, Neg. LLF: 161.14314208426734
Iteration: 14, Func. Count: 118, Neg. LLF: 161.14313994204804
Iteration: 15, Func. Count: 125, Neg. LLF: 161.14313991352716
Optimization terminated successfully (Exit mode 0)
Current function value: 161.14313994204804
Iterations: 15
Function evaluations: 125
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 378.15044601294915
Iteration: 2, Func. Count: 21, Neg. LLF: 164.35705203976215
Iteration: 3, Func. Count: 31, Neg. LLF: 161.78036360694165
Iteration: 4, Func. Count: 40, Neg. LLF: 161.98502285531208
Iteration: 5, Func. Count: 50, Neg. LLF: 161.72108603189022
Iteration: 6, Func. Count: 59, Neg. LLF: 161.67384539248982
Iteration: 7, Func. Count: 68, Neg. LLF: 161.6158099253429
Iteration: 8, Func. Count: 77, Neg. LLF: 161.3493561865427
Iteration: 9, Func. Count: 86, Neg. LLF: 161.26881157347935
Iteration: 10, Func. Count: 95, Neg. LLF: 161.21271901117905
Iteration: 11, Func. Count: 104, Neg. LLF: 161.17412761540749
Iteration: 12, Func. Count: 113, Neg. LLF: 161.16403615125395
Iteration: 13, Func. Count: 122, Neg. LLF: 161.1462474106882
Iteration: 14, Func. Count: 131, Neg. LLF: 161.14394624682458
Iteration: 15, Func. Count: 140, Neg. LLF: 161.14316032590662
Iteration: 16, Func. Count: 149, Neg. LLF: 161.14314081174828
Iteration: 17, Func. Count: 158, Neg. LLF: 161.1431399416527
Optimization terminated successfully (Exit mode 0)
Current function value: 161.1431399416527
Iterations: 17
Function evaluations: 158
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 360.1043992228289
Iteration: 2, Func. Count: 22, Neg. LLF: 169.6185111119278
Iteration: 3, Func. Count: 33, Neg. LLF: 162.36613846907588
Iteration: 4, Func. Count: 43, Neg. LLF: 161.73196666064288
Iteration: 5, Func. Count: 53, Neg. LLF: 171.35815526723974
Iteration: 6, Func. Count: 65, Neg. LLF: 161.4674745991944
Iteration: 7, Func. Count: 75, Neg. LLF: 161.38927390840908
Iteration: 8, Func. Count: 85, Neg. LLF: 161.30766375109857
Iteration: 9, Func. Count: 95, Neg. LLF: 161.20785864201088
Iteration: 10, Func. Count: 105, Neg. LLF: 161.19115380950117
Iteration: 11, Func. Count: 115, Neg. LLF: 161.179205469212
Iteration: 12, Func. Count: 125, Neg. LLF: 161.14337341704731
Iteration: 13, Func. Count: 135, Neg. LLF: 161.1431546505132
Iteration: 14, Func. Count: 145, Neg. LLF: 161.14314035737473
Iteration: 15, Func. Count: 154, Neg. LLF: 161.1431403479791
Optimization terminated successfully (Exit mode 0)
Current function value: 161.14314035737473
Iterations: 15
Function evaluations: 154
Gradient evaluations: 15
Iteration: 1, Func. Count: 8, Neg. LLF: 164.70082661675278
Iteration: 2, Func. Count: 16, Neg. LLF: 164.49641278696788
Iteration: 3, Func. Count: 24, Neg. LLF: 162.8888827005219
Iteration: 4, Func. Count: 33, Neg. LLF: 170.5220032390158
Iteration: 5, Func. Count: 41, Neg. LLF: 162.0830374361676
Iteration: 6, Func. Count: 49, Neg. LLF: 162.08236911998094
Iteration: 7, Func. Count: 57, Neg. LLF: 161.92705744966753
Iteration: 8, Func. Count: 64, Neg. LLF: 161.75605522409546
Iteration: 9, Func. Count: 71, Neg. LLF: 161.38845992132522
Iteration: 10, Func. Count: 78, Neg. LLF: 161.1425851113977
Iteration: 11, Func. Count: 85, Neg. LLF: 161.01918458023775
Iteration: 12, Func. Count: 92, Neg. LLF: 161.0079253481403
Iteration: 13, Func. Count: 99, Neg. LLF: 161.00513187024464
Iteration: 14, Func. Count: 106, Neg. LLF: 161.0050568467383
Iteration: 15, Func. Count: 113, Neg. LLF: 161.00504264222883
Iteration: 16, Func. Count: 119, Neg. LLF: 161.00504263428638
Optimization terminated successfully (Exit mode 0)
Current function value: 161.00504264222883
Iterations: 16
Function evaluations: 119
Gradient evaluations: 16
Iteration: 1, Func. Count: 9, Neg. LLF: 367.8224480493939
Iteration: 2, Func. Count: 19, Neg. LLF: 162.5549198247495
Iteration: 3, Func. Count: 30, Neg. LLF: 162.1060419801474
Iteration: 4, Func. Count: 38, Neg. LLF: 162.11591116040134
Iteration: 5, Func. Count: 47, Neg. LLF: 162.32785180621931
Iteration: 6, Func. Count: 56, Neg. LLF: 161.98914674559487
Iteration: 7, Func. Count: 64, Neg. LLF: 161.96824883514824
Iteration: 8, Func. Count: 72, Neg. LLF: 161.9624625043654
Iteration: 9, Func. Count: 80, Neg. LLF: 161.954657309973
Iteration: 10, Func. Count: 88, Neg. LLF: 161.953855420171
Iteration: 11, Func. Count: 96, Neg. LLF: 161.95375327739126
Iteration: 12, Func. Count: 104, Neg. LLF: 161.95375042757794
Iteration: 13, Func. Count: 111, Neg. LLF: 161.9537504273266
Optimization terminated successfully (Exit mode 0)
Current function value: 161.95375042757794
Iterations: 13
Function evaluations: 111
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 376.00386813526273
Iteration: 2, Func. Count: 21, Neg. LLF: 162.81955079313911
Iteration: 3, Func. Count: 31, Neg. LLF: 162.03435826287995
Iteration: 4, Func. Count: 41, Neg. LLF: 161.34278517815582
Iteration: 5, Func. Count: 50, Neg. LLF: 161.67801334541372
Iteration: 6, Func. Count: 60, Neg. LLF: 161.19779908792404
Iteration: 7, Func. Count: 69, Neg. LLF: 161.1388588903167
Iteration: 8, Func. Count: 78, Neg. LLF: 161.0993116633272
Iteration: 9, Func. Count: 87, Neg. LLF: 161.07919342733686
Iteration: 10, Func. Count: 96, Neg. LLF: 161.06679516731054
Iteration: 11, Func. Count: 105, Neg. LLF: 161.06645445145614
Iteration: 12, Func. Count: 114, Neg. LLF: 161.0663937023202
Iteration: 13, Func. Count: 123, Neg. LLF: 161.06639133058627
Iteration: 14, Func. Count: 131, Neg. LLF: 161.06639130738802
Optimization terminated successfully (Exit mode 0)
Current function value: 161.06639133058627
Iterations: 14
Function evaluations: 131
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 380.61477148675857
Iteration: 2, Func. Count: 22, Neg. LLF: 193.43221056694554
Iteration: 3, Func. Count: 33, Neg. LLF: 163.95863245315905
Iteration: 4, Func. Count: 44, Neg. LLF: 161.8824353428553
Iteration: 5, Func. Count: 55, Neg. LLF: 161.21592048410133
Iteration: 6, Func. Count: 65, Neg. LLF: 161.50067230354836
Iteration: 7, Func. Count: 76, Neg. LLF: 160.82090138413548
Iteration: 8, Func. Count: 86, Neg. LLF: 160.67537764912893
Iteration: 9, Func. Count: 96, Neg. LLF: 160.60752623658755
Iteration: 10, Func. Count: 106, Neg. LLF: 160.59362321871848
Iteration: 11, Func. Count: 116, Neg. LLF: 160.57188169976885
Iteration: 12, Func. Count: 126, Neg. LLF: 160.56718207369408
Iteration: 13, Func. Count: 137, Neg. LLF: 160.53300876122861
Iteration: 14, Func. Count: 147, Neg. LLF: 160.5260834332216
Iteration: 15, Func. Count: 157, Neg. LLF: 160.52061101930454
Iteration: 16, Func. Count: 167, Neg. LLF: 160.51273285575644
Iteration: 17, Func. Count: 177, Neg. LLF: 160.5051103077434
Iteration: 18, Func. Count: 187, Neg. LLF: 160.5013384088042
Iteration: 19, Func. Count: 197, Neg. LLF: 160.50011668841202
Iteration: 20, Func. Count: 207, Neg. LLF: 160.50000663649627
Iteration: 21, Func. Count: 217, Neg. LLF: 160.5000052769388
Iteration: 22, Func. Count: 226, Neg. LLF: 160.50000527695266
Optimization terminated successfully (Exit mode 0)
Current function value: 160.5000052769388
Iterations: 22
Function evaluations: 226
Gradient evaluations: 22
Iteration: 1, Func. Count: 12, Neg. LLF: 170.03926642607377
Iteration: 2, Func. Count: 24, Neg. LLF: 161.89010759452273
Iteration: 3, Func. Count: 35, Neg. LLF: 161.77071796367025
Iteration: 4, Func. Count: 47, Neg. LLF: 166.2264900995354
Iteration: 5, Func. Count: 59, Neg. LLF: 161.0735691346819
Iteration: 6, Func. Count: 71, Neg. LLF: 160.93605022699117
Iteration: 7, Func. Count: 83, Neg. LLF: 160.77032203095075
Iteration: 8, Func. Count: 94, Neg. LLF: 160.73470408753414
Iteration: 9, Func. Count: 105, Neg. LLF: 160.6254341393678
Iteration: 10, Func. Count: 116, Neg. LLF: 160.56089172182735
Iteration: 11, Func. Count: 127, Neg. LLF: 160.51768419541685
Iteration: 12, Func. Count: 138, Neg. LLF: 160.50702755381957
Iteration: 13, Func. Count: 149, Neg. LLF: 160.50029197479634
Iteration: 14, Func. Count: 160, Neg. LLF: 160.50001242469284
Iteration: 15, Func. Count: 171, Neg. LLF: 160.50000600831436
Iteration: 16, Func. Count: 182, Neg. LLF: 160.5000052648744
Optimization terminated successfully (Exit mode 0)
Current function value: 160.5000052648744
Iterations: 16
Function evaluations: 182
Gradient evaluations: 16
Iteration: 1, Func. Count: 9, Neg. LLF: 164.6759184649154
Iteration: 2, Func. Count: 18, Neg. LLF: 164.27788154043898
Iteration: 3, Func. Count: 27, Neg. LLF: 162.8739756068132
Iteration: 4, Func. Count: 37, Neg. LLF: 167.96745093894788
Iteration: 5, Func. Count: 46, Neg. LLF: 162.04667925482374
Iteration: 6, Func. Count: 54, Neg. LLF: 162.57632972813616
Iteration: 7, Func. Count: 63, Neg. LLF: 162.0313014040754
Iteration: 8, Func. Count: 72, Neg. LLF: 161.89379251445104
Iteration: 9, Func. Count: 80, Neg. LLF: 161.77289500686052
Iteration: 10, Func. Count: 88, Neg. LLF: 161.50706554094288
Iteration: 11, Func. Count: 96, Neg. LLF: 161.2181556969524
Iteration: 12, Func. Count: 104, Neg. LLF: 161.03748223523942
Iteration: 13, Func. Count: 112, Neg. LLF: 161.01753069154847
Iteration: 14, Func. Count: 120, Neg. LLF: 161.00618080423163
Iteration: 15, Func. Count: 128, Neg. LLF: 161.00519418032854
Iteration: 16, Func. Count: 136, Neg. LLF: 161.0050460688786
Iteration: 17, Func. Count: 144, Neg. LLF: 161.0050420332079
Iteration: 18, Func. Count: 151, Neg. LLF: 161.0050421348572
Optimization terminated successfully (Exit mode 0)
Current function value: 161.0050420332079
Iterations: 18
Function evaluations: 151
Gradient evaluations: 18
Iteration: 1, Func. Count: 10, Neg. LLF: 366.6222530059122
Iteration: 2, Func. Count: 21, Neg. LLF: 162.5676897607909
Iteration: 3, Func. Count: 33, Neg. LLF: 162.0318821930976
Iteration: 4, Func. Count: 42, Neg. LLF: 162.0027640082858
Iteration: 5, Func. Count: 51, Neg. LLF: 162.09887467709575
Iteration: 6, Func. Count: 61, Neg. LLF: 161.98951028814193
Iteration: 7, Func. Count: 70, Neg. LLF: 161.97908894239387
Iteration: 8, Func. Count: 79, Neg. LLF: 161.96181124461341
Iteration: 9, Func. Count: 88, Neg. LLF: 161.95578260544772
Iteration: 10, Func. Count: 97, Neg. LLF: 161.95380992873126
Iteration: 11, Func. Count: 106, Neg. LLF: 161.9537532087658
Iteration: 12, Func. Count: 115, Neg. LLF: 161.95375035476647
Iteration: 13, Func. Count: 123, Neg. LLF: 161.95375035492523
Optimization terminated successfully (Exit mode 0)
Current function value: 161.95375035476647
Iterations: 13
Function evaluations: 123
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 375.3959850371203
Iteration: 2, Func. Count: 23, Neg. LLF: 163.17444763575128
Iteration: 3, Func. Count: 34, Neg. LLF: 162.26418171652924
Iteration: 4, Func. Count: 45, Neg. LLF: 161.36359312154804
Iteration: 5, Func. Count: 55, Neg. LLF: 161.8207112268847
Iteration: 6, Func. Count: 66, Neg. LLF: 161.1972381621433
Iteration: 7, Func. Count: 76, Neg. LLF: 161.1493118314824
Iteration: 8, Func. Count: 86, Neg. LLF: 161.1096370231351
Iteration: 9, Func. Count: 96, Neg. LLF: 161.0925964023288
Iteration: 10, Func. Count: 106, Neg. LLF: 161.06697527139744
Iteration: 11, Func. Count: 116, Neg. LLF: 161.06644875162007
Iteration: 12, Func. Count: 126, Neg. LLF: 161.0663916135497
Iteration: 13, Func. Count: 135, Neg. LLF: 161.0663915902884
Optimization terminated successfully (Exit mode 0)
Current function value: 161.0663916135497
Iterations: 13
Function evaluations: 135
Gradient evaluations: 13
Iteration: 1, Func. Count: 12, Neg. LLF: 379.7687150155945
Iteration: 2, Func. Count: 24, Neg. LLF: 201.025573987973
Iteration: 3, Func. Count: 36, Neg. LLF: 163.93009096670045
Iteration: 4, Func. Count: 48, Neg. LLF: 162.0274363822022
Iteration: 5, Func. Count: 60, Neg. LLF: 161.2801627292303
Iteration: 6, Func. Count: 71, Neg. LLF: 161.7792913502254
Iteration: 7, Func. Count: 83, Neg. LLF: 160.94896704448135
Iteration: 8, Func. Count: 94, Neg. LLF: 160.8077525583705
Iteration: 9, Func. Count: 105, Neg. LLF: 160.76631794374524
Iteration: 10, Func. Count: 116, Neg. LLF: 160.6404982239954
Iteration: 11, Func. Count: 127, Neg. LLF: 160.6028719142816
Iteration: 12, Func. Count: 138, Neg. LLF: 160.58984302689998
Iteration: 13, Func. Count: 149, Neg. LLF: 160.54452945607912
Iteration: 14, Func. Count: 160, Neg. LLF: 160.53039080511508
Iteration: 15, Func. Count: 171, Neg. LLF: 160.52390794315414
Iteration: 16, Func. Count: 182, Neg. LLF: 160.51891746489818
Iteration: 17, Func. Count: 193, Neg. LLF: 160.51132031432942
Iteration: 18, Func. Count: 204, Neg. LLF: 160.5047501945198
Iteration: 19, Func. Count: 215, Neg. LLF: 160.50137738696395
Iteration: 20, Func. Count: 226, Neg. LLF: 160.50011485676956
Iteration: 21, Func. Count: 237, Neg. LLF: 160.5000069971957
Iteration: 22, Func. Count: 248, Neg. LLF: 160.50000538005625
Iteration: 23, Func. Count: 258, Neg. LLF: 160.5000053800191
Optimization terminated successfully (Exit mode 0)
Current function value: 160.50000538005625
Iterations: 23
Function evaluations: 258
Gradient evaluations: 23
Iteration: 1, Func. Count: 13, Neg. LLF: 166.64534789230404
Iteration: 2, Func. Count: 26, Neg. LLF: 194.46773725369044
Iteration: 3, Func. Count: 39, Neg. LLF: 161.9754775825785
Iteration: 4, Func. Count: 52, Neg. LLF: 161.0147913846649
Iteration: 5, Func. Count: 64, Neg. LLF: 161.25409317913244
Iteration: 6, Func. Count: 77, Neg. LLF: 160.76913199068193
Iteration: 7, Func. Count: 89, Neg. LLF: 160.75335805698157
Iteration: 8, Func. Count: 101, Neg. LLF: 160.66761453731766
Iteration: 9, Func. Count: 113, Neg. LLF: 160.51370729097334
Iteration: 10, Func. Count: 125, Neg. LLF: 160.50357032000065
Iteration: 11, Func. Count: 137, Neg. LLF: 160.5001743554176
Iteration: 12, Func. Count: 149, Neg. LLF: 160.50003196596228
Iteration: 13, Func. Count: 161, Neg. LLF: 160.5000090222257
Iteration: 14, Func. Count: 173, Neg. LLF: 160.5000052636676
Iteration: 15, Func. Count: 184, Neg. LLF: 160.50000530339597
Optimization terminated successfully (Exit mode 0)
Current function value: 160.5000052636676
Iterations: 15
Function evaluations: 184
Gradient evaluations: 15
Iteration: 1, Func. Count: 6, Neg. LLF: 165.43414912142111
Iteration: 2, Func. Count: 12, Neg. LLF: 164.5886200468119
Iteration: 3, Func. Count: 17, Neg. LLF: 164.55323018499797
Iteration: 4, Func. Count: 22, Neg. LLF: 164.5468517076023
Iteration: 5, Func. Count: 27, Neg. LLF: 164.5113041402711
Iteration: 6, Func. Count: 32, Neg. LLF: 164.47546066565
Iteration: 7, Func. Count: 37, Neg. LLF: 164.44893636276598
Iteration: 8, Func. Count: 42, Neg. LLF: 164.44272818103593
Iteration: 9, Func. Count: 47, Neg. LLF: 164.4423114022884
Iteration: 10, Func. Count: 52, Neg. LLF: 164.44228116039963
Iteration: 11, Func. Count: 57, Neg. LLF: 164.4422796843021
Iteration: 12, Func. Count: 61, Neg. LLF: 164.44227970378157
Optimization terminated successfully (Exit mode 0)
Current function value: 164.4422796843021
Iterations: 12
Function evaluations: 61
Gradient evaluations: 12
Iteration: 1, Func. Count: 7, Neg. LLF: 360.7596126435543
Iteration: 2, Func. Count: 15, Neg. LLF: 165.28371295894792
Iteration: 3, Func. Count: 22, Neg. LLF: 163.75833405036235
Iteration: 4, Func. Count: 29, Neg. LLF: 164.45818346890982
Iteration: 5, Func. Count: 36, Neg. LLF: 163.09362168523128
Iteration: 6, Func. Count: 42, Neg. LLF: 162.80863926083316
Iteration: 7, Func. Count: 48, Neg. LLF: 163.05664879385017
Iteration: 8, Func. Count: 55, Neg. LLF: 163.22116930483253
Iteration: 9, Func. Count: 62, Neg. LLF: 162.55205910425727
Iteration: 10, Func. Count: 69, Neg. LLF: 162.5134961815952
Iteration: 11, Func. Count: 75, Neg. LLF: 162.51265708976092
Iteration: 12, Func. Count: 81, Neg. LLF: 162.51265195203982
Iteration: 13, Func. Count: 86, Neg. LLF: 162.51265195158425
Optimization terminated successfully (Exit mode 0)
Current function value: 162.51265195203982
Iterations: 13
Function evaluations: 86
Gradient evaluations: 13
Iteration: 1, Func. Count: 8, Neg. LLF: 370.5154477398081
Iteration: 2, Func. Count: 17, Neg. LLF: 164.3658122482641
Iteration: 3, Func. Count: 25, Neg. LLF: 163.17306556914187
Iteration: 4, Func. Count: 33, Neg. LLF: 162.7923741184819
Iteration: 5, Func. Count: 40, Neg. LLF: 162.72098826338552
Iteration: 6, Func. Count: 47, Neg. LLF: 162.61612829082586
Iteration: 7, Func. Count: 54, Neg. LLF: 162.55633637044562
Iteration: 8, Func. Count: 61, Neg. LLF: 162.52726589783705
Iteration: 9, Func. Count: 68, Neg. LLF: 162.50467376510136
Iteration: 10, Func. Count: 75, Neg. LLF: 162.5002958982614
Iteration: 11, Func. Count: 82, Neg. LLF: 162.4999190566061
Iteration: 12, Func. Count: 89, Neg. LLF: 162.4999175256017
Iteration: 13, Func. Count: 95, Neg. LLF: 162.4999175255893
Optimization terminated successfully (Exit mode 0)
Current function value: 162.4999175256017
Iterations: 13
Function evaluations: 95
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 375.6388226092474
Iteration: 2, Func. Count: 18, Neg. LLF: 163.48172540479382
Iteration: 3, Func. Count: 26, Neg. LLF: 167.72493672892205
Iteration: 4, Func. Count: 36, Neg. LLF: 166.83684713950376
Iteration: 5, Func. Count: 45, Neg. LLF: 162.9014825423584
Iteration: 6, Func. Count: 53, Neg. LLF: 162.73299027396084
Iteration: 7, Func. Count: 61, Neg. LLF: 162.59179445132278
Iteration: 8, Func. Count: 69, Neg. LLF: 163.5197241926714
Iteration: 9, Func. Count: 78, Neg. LLF: 162.45146001853857
Iteration: 10, Func. Count: 86, Neg. LLF: 162.35571518935882
Iteration: 11, Func. Count: 94, Neg. LLF: 162.1416439742945
Iteration: 12, Func. Count: 102, Neg. LLF: 162.58971509051403
Iteration: 13, Func. Count: 111, Neg. LLF: 21144082.817411385
Iteration: 14, Func. Count: 122, Neg. LLF: 181.19291670325458
Iteration: 15, Func. Count: 132, Neg. LLF: 162.1392173754587
Iteration: 16, Func. Count: 141, Neg. LLF: 162.1222845349175
Iteration: 17, Func. Count: 149, Neg. LLF: 162.12228399283896
Optimization terminated successfully (Exit mode 0)
Current function value: 162.12228399283896
Iterations: 18
Function evaluations: 149
Gradient evaluations: 17
Iteration: 1, Func. Count: 10, Neg. LLF: 195.96942112146397
Iteration: 2, Func. Count: 20, Neg. LLF: 166.93741923653502
Iteration: 3, Func. Count: 30, Neg. LLF: 165.76522639619515
Iteration: 4, Func. Count: 40, Neg. LLF: 162.68767140247095
Iteration: 5, Func. Count: 49, Neg. LLF: 162.59820712902632
Iteration: 6, Func. Count: 58, Neg. LLF: 162.57813740871333
Iteration: 7, Func. Count: 67, Neg. LLF: 162.57188350345757
Iteration: 8, Func. Count: 76, Neg. LLF: 162.54766263328662
Iteration: 9, Func. Count: 85, Neg. LLF: 162.52693847905292
Iteration: 10, Func. Count: 94, Neg. LLF: 162.49805773259186
Iteration: 11, Func. Count: 103, Neg. LLF: 162.4765996666023
Iteration: 12, Func. Count: 112, Neg. LLF: 162.46196454760758
Iteration: 13, Func. Count: 121, Neg. LLF: 162.4628305217954
Iteration: 14, Func. Count: 131, Neg. LLF: 162.4627032952536
Iteration: 15, Func. Count: 141, Neg. LLF: 162.46147003849737
Iteration: 16, Func. Count: 149, Neg. LLF: 162.461470038445
Optimization terminated successfully (Exit mode 0)
Current function value: 162.46147003849737
Iterations: 16
Function evaluations: 149
Gradient evaluations: 16
Iteration: 1, Func. Count: 7, Neg. LLF: 167.94089030545416
Iteration: 2, Func. Count: 14, Neg. LLF: 164.67448501827474
Iteration: 3, Func. Count: 21, Neg. LLF: 163.71741756598038
Iteration: 4, Func. Count: 28, Neg. LLF: 163.86514811405976
Iteration: 5, Func. Count: 35, Neg. LLF: 164.6795207676044
Iteration: 6, Func. Count: 42, Neg. LLF: 163.46720295158988
Iteration: 7, Func. Count: 48, Neg. LLF: 163.46307915854948
Iteration: 8, Func. Count: 54, Neg. LLF: 163.46117400107389
Iteration: 9, Func. Count: 60, Neg. LLF: 163.45977400755737
Iteration: 10, Func. Count: 66, Neg. LLF: 163.45673457443507
Iteration: 11, Func. Count: 72, Neg. LLF: 163.44891661580095
Iteration: 12, Func. Count: 78, Neg. LLF: 163.4400381855841
Iteration: 13, Func. Count: 84, Neg. LLF: 163.4354132019527
Iteration: 14, Func. Count: 90, Neg. LLF: 163.43450195713615
Iteration: 15, Func. Count: 96, Neg. LLF: 163.43446056261232
Iteration: 16, Func. Count: 101, Neg. LLF: 163.4344605626089
Optimization terminated successfully (Exit mode 0)
Current function value: 163.43446056261232
Iterations: 16
Function evaluations: 101
Gradient evaluations: 16
Iteration: 1, Func. Count: 8, Neg. LLF: 366.4815057725058
Iteration: 2, Func. Count: 17, Neg. LLF: 163.26075151728085
Iteration: 3, Func. Count: 26, Neg. LLF: 162.08196387594512
Iteration: 4, Func. Count: 33, Neg. LLF: 162.03645030440083
Iteration: 5, Func. Count: 40, Neg. LLF: 161.98680147987383
Iteration: 6, Func. Count: 47, Neg. LLF: 161.96957152684493
Iteration: 7, Func. Count: 54, Neg. LLF: 161.96439595841306
Iteration: 8, Func. Count: 61, Neg. LLF: 161.96403093979245
Iteration: 9, Func. Count: 68, Neg. LLF: 161.9639124480742
Iteration: 10, Func. Count: 75, Neg. LLF: 161.96391197438777
Optimization terminated successfully (Exit mode 0)
Current function value: 161.96391197438777
Iterations: 10
Function evaluations: 75
Gradient evaluations: 10
Iteration: 1, Func. Count: 9, Neg. LLF: 376.63806316084566
Iteration: 2, Func. Count: 19, Neg. LLF: 161.9015467061409
Iteration: 3, Func. Count: 28, Neg. LLF: 161.42450333906808
Iteration: 4, Func. Count: 36, Neg. LLF: 161.39228795478445
Iteration: 5, Func. Count: 45, Neg. LLF: 161.30292861482536
Iteration: 6, Func. Count: 54, Neg. LLF: 161.30855936243643
Iteration: 7, Func. Count: 63, Neg. LLF: 161.18466325833884
Iteration: 8, Func. Count: 71, Neg. LLF: 161.15444165255644
Iteration: 9, Func. Count: 79, Neg. LLF: 161.14777563115388
Iteration: 10, Func. Count: 87, Neg. LLF: 161.14330585021077
Iteration: 11, Func. Count: 95, Neg. LLF: 161.14311843729226
Iteration: 12, Func. Count: 103, Neg. LLF: 161.14310762255758
Iteration: 13, Func. Count: 110, Neg. LLF: 161.14310759424038
Optimization terminated successfully (Exit mode 0)
Current function value: 161.14310762255758
Iterations: 13
Function evaluations: 110
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 358.77888273584034
Iteration: 2, Func. Count: 21, Neg. LLF: 161.74501573607816
Iteration: 3, Func. Count: 30, Neg. LLF: 161.28856197087964
Iteration: 4, Func. Count: 39, Neg. LLF: 165.39451402517398
Iteration: 5, Func. Count: 50, Neg. LLF: 161.24533953635395
Iteration: 6, Func. Count: 59, Neg. LLF: 161.17543593776412
Iteration: 7, Func. Count: 68, Neg. LLF: 161.167302783531
Iteration: 8, Func. Count: 77, Neg. LLF: 161.16018912423675
Iteration: 9, Func. Count: 86, Neg. LLF: 161.14543299721583
Iteration: 10, Func. Count: 95, Neg. LLF: 161.14319475297137
Iteration: 11, Func. Count: 104, Neg. LLF: 161.1431077012138
Iteration: 12, Func. Count: 113, Neg. LLF: 161.14310710155067
Optimization terminated successfully (Exit mode 0)
Current function value: 161.14310710155067
Iterations: 12
Function evaluations: 113
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 363.01730492872036
Iteration: 2, Func. Count: 22, Neg. LLF: 172.7224124427836
Iteration: 3, Func. Count: 33, Neg. LLF: 161.96621150774533
Iteration: 4, Func. Count: 43, Neg. LLF: 161.89059300762267
Iteration: 5, Func. Count: 54, Neg. LLF: 174.9756435857935
Iteration: 6, Func. Count: 65, Neg. LLF: 161.45599680173993
Iteration: 7, Func. Count: 75, Neg. LLF: 161.38686003254836
Iteration: 8, Func. Count: 85, Neg. LLF: 161.231852465737
Iteration: 9, Func. Count: 95, Neg. LLF: 161.2073136765465
Iteration: 10, Func. Count: 105, Neg. LLF: 161.19402966396157
Iteration: 11, Func. Count: 115, Neg. LLF: 161.1525070470455
Iteration: 12, Func. Count: 125, Neg. LLF: 161.14616181587596
Iteration: 13, Func. Count: 135, Neg. LLF: 161.1432392283642
Iteration: 14, Func. Count: 145, Neg. LLF: 161.143109916495
Iteration: 15, Func. Count: 155, Neg. LLF: 161.14310720823502
Iteration: 16, Func. Count: 164, Neg. LLF: 161.14310719842166
Optimization terminated successfully (Exit mode 0)
Current function value: 161.14310720823502
Iterations: 16
Function evaluations: 164
Gradient evaluations: 16
Iteration: 1, Func. Count: 8, Neg. LLF: 168.58717088307122
Iteration: 2, Func. Count: 16, Neg. LLF: 164.80787357282153
Iteration: 3, Func. Count: 25, Neg. LLF: 165.07257452930136
Iteration: 4, Func. Count: 34, Neg. LLF: 168.15702453542823
Iteration: 5, Func. Count: 42, Neg. LLF: 163.26750182082756
Iteration: 6, Func. Count: 49, Neg. LLF: 163.57409355471347
Iteration: 7, Func. Count: 57, Neg. LLF: 163.24925330479846
Iteration: 8, Func. Count: 64, Neg. LLF: 163.2463230276228
Iteration: 9, Func. Count: 71, Neg. LLF: 163.24549720026192
Iteration: 10, Func. Count: 78, Neg. LLF: 163.24421172723288
Iteration: 11, Func. Count: 85, Neg. LLF: 163.24175677019574
Iteration: 12, Func. Count: 92, Neg. LLF: 163.23807373345892
Iteration: 13, Func. Count: 99, Neg. LLF: 163.23426330774495
Iteration: 14, Func. Count: 106, Neg. LLF: 163.23202645592121
Iteration: 15, Func. Count: 113, Neg. LLF: 163.23139824283098
Iteration: 16, Func. Count: 120, Neg. LLF: 163.23136014527242
Iteration: 17, Func. Count: 127, Neg. LLF: 163.23135808472182
Iteration: 18, Func. Count: 133, Neg. LLF: 163.23135808471912
Optimization terminated successfully (Exit mode 0)
Current function value: 163.23135808472182
Iterations: 18
Function evaluations: 133
Gradient evaluations: 18
Iteration: 1, Func. Count: 9, Neg. LLF: 366.67079918963805
Iteration: 2, Func. Count: 19, Neg. LLF: 163.42042597162626
Iteration: 3, Func. Count: 29, Neg. LLF: 162.12601168443248
Iteration: 4, Func. Count: 37, Neg. LLF: 162.0545213301511
Iteration: 5, Func. Count: 45, Neg. LLF: 162.03143893934504
Iteration: 6, Func. Count: 53, Neg. LLF: 161.9845066152816
Iteration: 7, Func. Count: 61, Neg. LLF: 161.9664723363766
Iteration: 8, Func. Count: 69, Neg. LLF: 161.96396079053832
Iteration: 9, Func. Count: 77, Neg. LLF: 161.96391473451126
Iteration: 10, Func. Count: 85, Neg. LLF: 161.96391257675532
Iteration: 11, Func. Count: 93, Neg. LLF: 161.96391196474062
Optimization terminated successfully (Exit mode 0)
Current function value: 161.96391196474062
Iterations: 11
Function evaluations: 93
Gradient evaluations: 11
Iteration: 1, Func. Count: 10, Neg. LLF: 374.61219874297944
Iteration: 2, Func. Count: 21, Neg. LLF: 162.88405377684384
Iteration: 3, Func. Count: 31, Neg. LLF: 161.55185958992197
Iteration: 4, Func. Count: 40, Neg. LLF: 161.77524634557406
Iteration: 5, Func. Count: 51, Neg. LLF: 161.3515181115079
Iteration: 6, Func. Count: 60, Neg. LLF: 161.5107296252393
Iteration: 7, Func. Count: 70, Neg. LLF: 161.23452883596846
Iteration: 8, Func. Count: 79, Neg. LLF: 161.1839819694812
Iteration: 9, Func. Count: 88, Neg. LLF: 161.137227342836
Iteration: 10, Func. Count: 97, Neg. LLF: 161.12498147039616
Iteration: 11, Func. Count: 106, Neg. LLF: 161.11379121121487
Iteration: 12, Func. Count: 115, Neg. LLF: 161.1130533107231
Iteration: 13, Func. Count: 124, Neg. LLF: 161.1129381614081
Iteration: 14, Func. Count: 133, Neg. LLF: 161.11293469286886
Iteration: 15, Func. Count: 141, Neg. LLF: 161.11293466407466
Optimization terminated successfully (Exit mode 0)
Current function value: 161.11293469286886
Iterations: 15
Function evaluations: 141
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 378.38081643268345
Iteration: 2, Func. Count: 23, Neg. LLF: 164.50490885211278
Iteration: 3, Func. Count: 34, Neg. LLF: 161.79552150794748
Iteration: 4, Func. Count: 44, Neg. LLF: 161.99165247613016
Iteration: 5, Func. Count: 55, Neg. LLF: 161.86050947773595
Iteration: 6, Func. Count: 66, Neg. LLF: 161.69540870075656
Iteration: 7, Func. Count: 76, Neg. LLF: 161.6483360072661
Iteration: 8, Func. Count: 86, Neg. LLF: 161.55085695285072
Iteration: 9, Func. Count: 96, Neg. LLF: 161.4334852337979
Iteration: 10, Func. Count: 106, Neg. LLF: 161.33475999911795
Iteration: 11, Func. Count: 116, Neg. LLF: 161.23464867527568
Iteration: 12, Func. Count: 126, Neg. LLF: 161.26845838945312
Iteration: 13, Func. Count: 137, Neg. LLF: 161.15955209432536
Iteration: 14, Func. Count: 147, Neg. LLF: 161.12937467650278
Iteration: 15, Func. Count: 157, Neg. LLF: 161.11695540076758
Iteration: 16, Func. Count: 167, Neg. LLF: 161.11302962949435
Iteration: 17, Func. Count: 177, Neg. LLF: 161.11293871885502
Iteration: 18, Func. Count: 187, Neg. LLF: 161.11293461821316
Iteration: 19, Func. Count: 196, Neg. LLF: 161.1129346566305
Optimization terminated successfully (Exit mode 0)
Current function value: 161.11293461821316
Iterations: 19
Function evaluations: 196
Gradient evaluations: 19
Iteration: 1, Func. Count: 12, Neg. LLF: 360.8600121498196
Iteration: 2, Func. Count: 24, Neg. LLF: 170.2545771876375
Iteration: 3, Func. Count: 36, Neg. LLF: 162.2697884846784
Iteration: 4, Func. Count: 47, Neg. LLF: 161.66783434345717
Iteration: 5, Func. Count: 58, Neg. LLF: 168.59015713980486
Iteration: 6, Func. Count: 71, Neg. LLF: 161.45343074082646
Iteration: 7, Func. Count: 82, Neg. LLF: 161.36179120650422
Iteration: 8, Func. Count: 93, Neg. LLF: 161.28317242672878
Iteration: 9, Func. Count: 104, Neg. LLF: 161.19662187921801
Iteration: 10, Func. Count: 115, Neg. LLF: 161.16864790942637
Iteration: 11, Func. Count: 126, Neg. LLF: 161.14448664214137
Iteration: 12, Func. Count: 137, Neg. LLF: 161.11730653456974
Iteration: 13, Func. Count: 148, Neg. LLF: 161.11315060496747
Iteration: 14, Func. Count: 159, Neg. LLF: 161.11293791178844
Iteration: 15, Func. Count: 170, Neg. LLF: 161.11293481381495
Iteration: 16, Func. Count: 180, Neg. LLF: 161.11293479735718
Optimization terminated successfully (Exit mode 0)
Current function value: 161.11293481381495
Iterations: 16
Function evaluations: 180
Gradient evaluations: 16
Iteration: 1, Func. Count: 9, Neg. LLF: 163.89469054796177
Iteration: 2, Func. Count: 18, Neg. LLF: 168.01538444738998
Iteration: 3, Func. Count: 27, Neg. LLF: 163.32175716208513
Iteration: 4, Func. Count: 36, Neg. LLF: 165.6996809067449
Iteration: 5, Func. Count: 45, Neg. LLF: 162.09009420982602
Iteration: 6, Func. Count: 54, Neg. LLF: 162.04353841015336
Iteration: 7, Func. Count: 63, Neg. LLF: 161.92829580796922
Iteration: 8, Func. Count: 71, Neg. LLF: 161.61121711618796
Iteration: 9, Func. Count: 79, Neg. LLF: 161.87504585280644
Iteration: 10, Func. Count: 88, Neg. LLF: 161.23923104884895
Iteration: 11, Func. Count: 96, Neg. LLF: 161.06097339665683
Iteration: 12, Func. Count: 104, Neg. LLF: 161.00876661390765
Iteration: 13, Func. Count: 112, Neg. LLF: 161.00517355633448
Iteration: 14, Func. Count: 120, Neg. LLF: 161.0050804464183
Iteration: 15, Func. Count: 128, Neg. LLF: 161.00504490269412
Iteration: 16, Func. Count: 136, Neg. LLF: 161.00504229650318
Iteration: 17, Func. Count: 143, Neg. LLF: 161.0050422885602
Optimization terminated successfully (Exit mode 0)
Current function value: 161.00504229650318
Iterations: 17
Function evaluations: 143
Gradient evaluations: 17
Iteration: 1, Func. Count: 10, Neg. LLF: 368.17312758248016
Iteration: 2, Func. Count: 21, Neg. LLF: 162.54689938696544
Iteration: 3, Func. Count: 33, Neg. LLF: 162.09395737169393
Iteration: 4, Func. Count: 42, Neg. LLF: 162.09456487146207
Iteration: 5, Func. Count: 52, Neg. LLF: 162.33157458182666
Iteration: 6, Func. Count: 62, Neg. LLF: 161.98895364942118
Iteration: 7, Func. Count: 71, Neg. LLF: 161.967514250041
Iteration: 8, Func. Count: 80, Neg. LLF: 161.96032479749832
Iteration: 9, Func. Count: 89, Neg. LLF: 161.95445134787573
Iteration: 10, Func. Count: 98, Neg. LLF: 161.95383109648458
Iteration: 11, Func. Count: 107, Neg. LLF: 161.95375233728518
Iteration: 12, Func. Count: 116, Neg. LLF: 161.95375035940566
Iteration: 13, Func. Count: 124, Neg. LLF: 161.95375035915606
Optimization terminated successfully (Exit mode 0)
Current function value: 161.95375035940566
Iterations: 13
Function evaluations: 124
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 376.33908135896934
Iteration: 2, Func. Count: 23, Neg. LLF: 162.82825168745487
Iteration: 3, Func. Count: 34, Neg. LLF: 162.01563244656475
Iteration: 4, Func. Count: 45, Neg. LLF: 161.3290751717792
Iteration: 5, Func. Count: 55, Neg. LLF: 161.60248881792663
Iteration: 6, Func. Count: 66, Neg. LLF: 161.224422272426
Iteration: 7, Func. Count: 76, Neg. LLF: 161.14377907753166
Iteration: 8, Func. Count: 86, Neg. LLF: 161.1042539789941
Iteration: 9, Func. Count: 96, Neg. LLF: 161.0880840280432
Iteration: 10, Func. Count: 106, Neg. LLF: 161.06663039485363
Iteration: 11, Func. Count: 116, Neg. LLF: 161.06393977600948
Iteration: 12, Func. Count: 126, Neg. LLF: 161.0636941223366
Iteration: 13, Func. Count: 136, Neg. LLF: 161.06367607063837
Iteration: 14, Func. Count: 146, Neg. LLF: 161.06367501181265
Iteration: 15, Func. Count: 155, Neg. LLF: 161.06367498796493
Optimization terminated successfully (Exit mode 0)
Current function value: 161.06367501181265
Iterations: 15
Function evaluations: 155
Gradient evaluations: 15
Iteration: 1, Func. Count: 12, Neg. LLF: 358.41380719764925
Iteration: 2, Func. Count: 25, Neg. LLF: 174.34306497911146
Iteration: 3, Func. Count: 37, Neg. LLF: 162.0973657790133
Iteration: 4, Func. Count: 49, Neg. LLF: 161.17575971188293
Iteration: 5, Func. Count: 60, Neg. LLF: 160.89604217728794
Iteration: 6, Func. Count: 71, Neg. LLF: 163.85038038706887
Iteration: 7, Func. Count: 84, Neg. LLF: 161.1298696092627
Iteration: 8, Func. Count: 96, Neg. LLF: 160.5896289637404
Iteration: 9, Func. Count: 107, Neg. LLF: 160.56927498275044
Iteration: 10, Func. Count: 118, Neg. LLF: 160.5242773606526
Iteration: 11, Func. Count: 129, Neg. LLF: 160.50795659073412
Iteration: 12, Func. Count: 140, Neg. LLF: 160.5021507754707
Iteration: 13, Func. Count: 151, Neg. LLF: 160.50136095397983
Iteration: 14, Func. Count: 162, Neg. LLF: 160.50115701676606
Iteration: 15, Func. Count: 173, Neg. LLF: 160.50090343018317
Iteration: 16, Func. Count: 184, Neg. LLF: 160.5005299288026
Iteration: 17, Func. Count: 195, Neg. LLF: 160.50018103512397
Iteration: 18, Func. Count: 206, Neg. LLF: 160.50002889616363
Iteration: 19, Func. Count: 217, Neg. LLF: 160.5000061306854
Iteration: 20, Func. Count: 228, Neg. LLF: 160.50000526433217
Optimization terminated successfully (Exit mode 0)
Current function value: 160.50000526433217
Iterations: 20
Function evaluations: 228
Gradient evaluations: 20
Iteration: 1, Func. Count: 13, Neg. LLF: 165.98337249888738
Iteration: 2, Func. Count: 26, Neg. LLF: 162.42959035357282
Iteration: 3, Func. Count: 39, Neg. LLF: 163.85289521277628
Iteration: 4, Func. Count: 52, Neg. LLF: 160.9125751506291
Iteration: 5, Func. Count: 64, Neg. LLF: 161.52659424238155
Iteration: 6, Func. Count: 77, Neg. LLF: 161.2589810469911
Iteration: 7, Func. Count: 90, Neg. LLF: 160.84192858889932
Iteration: 8, Func. Count: 103, Neg. LLF: 160.78200758298198
Iteration: 9, Func. Count: 115, Neg. LLF: 160.7478528137464
Iteration: 10, Func. Count: 127, Neg. LLF: 160.64214012414448
Iteration: 11, Func. Count: 139, Neg. LLF: 160.5654128132866
Iteration: 12, Func. Count: 151, Neg. LLF: 160.50910973763595
Iteration: 13, Func. Count: 163, Neg. LLF: 160.50357301647043
Iteration: 14, Func. Count: 175, Neg. LLF: 160.50084771830853
Iteration: 15, Func. Count: 187, Neg. LLF: 160.5000263519408
Iteration: 16, Func. Count: 199, Neg. LLF: 160.50000551785698
Iteration: 17, Func. Count: 210, Neg. LLF: 160.50000555756878
Optimization terminated successfully (Exit mode 0)
Current function value: 160.50000551785698
Iterations: 17
Function evaluations: 210
Gradient evaluations: 17
Iteration: 1, Func. Count: 10, Neg. LLF: 164.67866449845252
Iteration: 2, Func. Count: 20, Neg. LLF: 164.92897843645125
Iteration: 3, Func. Count: 30, Neg. LLF: 163.156814107268
Iteration: 4, Func. Count: 40, Neg. LLF: 165.29300121664284
Iteration: 5, Func. Count: 50, Neg. LLF: 162.10384547765923
Iteration: 6, Func. Count: 59, Neg. LLF: 162.03606015080635
Iteration: 7, Func. Count: 68, Neg. LLF: 163.20858397868838
Iteration: 8, Func. Count: 79, Neg. LLF: 161.95437450487316
Iteration: 9, Func. Count: 88, Neg. LLF: 161.9152102811995
Iteration: 10, Func. Count: 97, Neg. LLF: 161.82784077868703
Iteration: 11, Func. Count: 106, Neg. LLF: 161.73128679522998
Iteration: 12, Func. Count: 115, Neg. LLF: 161.2908967723496
Iteration: 13, Func. Count: 124, Neg. LLF: 161.08822410073734
Iteration: 14, Func. Count: 133, Neg. LLF: 161.0213838355487
Iteration: 15, Func. Count: 142, Neg. LLF: 161.00715376061572
Iteration: 16, Func. Count: 151, Neg. LLF: 161.00520089104657
Iteration: 17, Func. Count: 160, Neg. LLF: 161.00507879807128
Iteration: 18, Func. Count: 169, Neg. LLF: 161.00504840967656
Iteration: 19, Func. Count: 178, Neg. LLF: 161.0050440554908
Iteration: 20, Func. Count: 187, Neg. LLF: 161.00504218042173
Iteration: 21, Func. Count: 195, Neg. LLF: 161.00504228209294
Optimization terminated successfully (Exit mode 0)
Current function value: 161.00504218042173
Iterations: 21
Function evaluations: 195
Gradient evaluations: 21
Iteration: 1, Func. Count: 11, Neg. LLF: 366.97902844364705
Iteration: 2, Func. Count: 23, Neg. LLF: 162.56970521564472
Iteration: 3, Func. Count: 36, Neg. LLF: 162.0299706548606
Iteration: 4, Func. Count: 46, Neg. LLF: 161.99611817066267
Iteration: 5, Func. Count: 56, Neg. LLF: 162.01796086277932
Iteration: 6, Func. Count: 67, Neg. LLF: 161.98773641096037
Iteration: 7, Func. Count: 77, Neg. LLF: 161.96139568639845
Iteration: 8, Func. Count: 87, Neg. LLF: 161.95548236058622
Iteration: 9, Func. Count: 97, Neg. LLF: 161.95383911416107
Iteration: 10, Func. Count: 107, Neg. LLF: 161.95375023636922
Iteration: 11, Func. Count: 116, Neg. LLF: 161.9537502363003
Optimization terminated successfully (Exit mode 0)
Current function value: 161.95375023636922
Iterations: 11
Function evaluations: 116
Gradient evaluations: 11
Iteration: 1, Func. Count: 12, Neg. LLF: 375.7276806582167
Iteration: 2, Func. Count: 25, Neg. LLF: 163.33534189326127
Iteration: 3, Func. Count: 37, Neg. LLF: 162.20750529383966
Iteration: 4, Func. Count: 49, Neg. LLF: 161.36622678527127
Iteration: 5, Func. Count: 60, Neg. LLF: 161.7612814825763
Iteration: 6, Func. Count: 72, Neg. LLF: 161.30794865025524
Iteration: 7, Func. Count: 84, Neg. LLF: 161.1805552105374
Iteration: 8, Func. Count: 95, Neg. LLF: 161.12318526871263
Iteration: 9, Func. Count: 106, Neg. LLF: 161.09766141708087
Iteration: 10, Func. Count: 117, Neg. LLF: 161.08383586495955
Iteration: 11, Func. Count: 128, Neg. LLF: 161.06784634184652
Iteration: 12, Func. Count: 139, Neg. LLF: 161.06389081752565
Iteration: 13, Func. Count: 150, Neg. LLF: 161.0637137384244
Iteration: 14, Func. Count: 161, Neg. LLF: 161.0636755475346
Iteration: 15, Func. Count: 172, Neg. LLF: 161.06367496723215
Optimization terminated successfully (Exit mode 0)
Current function value: 161.06367496723215
Iterations: 15
Function evaluations: 172
Gradient evaluations: 15
Iteration: 1, Func. Count: 13, Neg. LLF: 357.4805734476339
Iteration: 2, Func. Count: 27, Neg. LLF: 176.38529803037903
Iteration: 3, Func. Count: 40, Neg. LLF: 162.06581115750646
Iteration: 4, Func. Count: 52, Neg. LLF: 167.11550106900222
Iteration: 5, Func. Count: 66, Neg. LLF: 162.79765226236833
Iteration: 6, Func. Count: 79, Neg. LLF: 160.92000107082836
Iteration: 7, Func. Count: 91, Neg. LLF: 160.8214990121055
Iteration: 8, Func. Count: 103, Neg. LLF: 160.87459653750733
Iteration: 9, Func. Count: 116, Neg. LLF: 160.734740202084
Iteration: 10, Func. Count: 129, Neg. LLF: 160.56977519735892
Iteration: 11, Func. Count: 141, Neg. LLF: 160.54996172053518
Iteration: 12, Func. Count: 153, Neg. LLF: 160.53039575098285
Iteration: 13, Func. Count: 165, Neg. LLF: 160.51015924638597
Iteration: 14, Func. Count: 177, Neg. LLF: 160.5018086198234
Iteration: 15, Func. Count: 189, Neg. LLF: 160.50138266085568
Iteration: 16, Func. Count: 201, Neg. LLF: 160.50110626483448
Iteration: 17, Func. Count: 213, Neg. LLF: 160.50077617777555
Iteration: 18, Func. Count: 225, Neg. LLF: 160.50056098906933
Iteration: 19, Func. Count: 237, Neg. LLF: 160.50038350891856
Iteration: 20, Func. Count: 249, Neg. LLF: 160.5002108947839
Iteration: 21, Func. Count: 261, Neg. LLF: 160.5000676791726
Iteration: 22, Func. Count: 273, Neg. LLF: 160.50001234347573
Iteration: 23, Func. Count: 285, Neg. LLF: 160.50000550060753
Iteration: 24, Func. Count: 296, Neg. LLF: 160.50000550052948
Optimization terminated successfully (Exit mode 0)
Current function value: 160.50000550060753
Iterations: 24
Function evaluations: 296
Gradient evaluations: 24
Iteration: 1, Func. Count: 14, Neg. LLF: 165.50600625466217
Iteration: 2, Func. Count: 28, Neg. LLF: 172.9163755740904
Iteration: 3, Func. Count: 42, Neg. LLF: 162.24264089742985
Iteration: 4, Func. Count: 56, Neg. LLF: 161.4287983099946
Iteration: 5, Func. Count: 69, Neg. LLF: 161.01787355106183
Iteration: 6, Func. Count: 82, Neg. LLF: 160.88906091297045
Iteration: 7, Func. Count: 95, Neg. LLF: 160.80671281559526
Iteration: 8, Func. Count: 108, Neg. LLF: 160.7769321695562
Iteration: 9, Func. Count: 121, Neg. LLF: 160.69899207228192
Iteration: 10, Func. Count: 134, Neg. LLF: 160.6674628415834
Iteration: 11, Func. Count: 147, Neg. LLF: 160.55417494230267
Iteration: 12, Func. Count: 160, Neg. LLF: 160.5171691714929
Iteration: 13, Func. Count: 173, Neg. LLF: 160.50251001603476
Iteration: 14, Func. Count: 186, Neg. LLF: 160.50109731365615
Iteration: 15, Func. Count: 199, Neg. LLF: 160.50005223804993
Iteration: 16, Func. Count: 212, Neg. LLF: 160.5000073626096
Iteration: 17, Func. Count: 225, Neg. LLF: 160.50000526724344
Iteration: 18, Func. Count: 237, Neg. LLF: 160.5000053069731
Optimization terminated successfully (Exit mode 0)
Current function value: 160.50000526724344
Iterations: 18
Function evaluations: 237
Gradient evaluations: 18
Iteration: 1, Func. Count: 7, Neg. LLF: 165.97204602765876
Iteration: 2, Func. Count: 14, Neg. LLF: 167.72599549173302
Iteration: 3, Func. Count: 22, Neg. LLF: 164.4845732645119
Iteration: 4, Func. Count: 28, Neg. LLF: 164.47499927917892
Iteration: 5, Func. Count: 34, Neg. LLF: 164.47374002003147
Iteration: 6, Func. Count: 40, Neg. LLF: 164.4722002708938
Iteration: 7, Func. Count: 46, Neg. LLF: 164.468719673204
Iteration: 8, Func. Count: 52, Neg. LLF: 164.46103379714486
Iteration: 9, Func. Count: 58, Neg. LLF: 164.4490166163155
Iteration: 10, Func. Count: 64, Neg. LLF: 164.43694894707073
Iteration: 11, Func. Count: 70, Neg. LLF: 164.43356208292525
Iteration: 12, Func. Count: 76, Neg. LLF: 164.43315992540676
Iteration: 13, Func. Count: 82, Neg. LLF: 164.43311150158507
Iteration: 14, Func. Count: 87, Neg. LLF: 164.43311150160858
Optimization terminated successfully (Exit mode 0)
Current function value: 164.43311150158507
Iterations: 14
Function evaluations: 87
Gradient evaluations: 14
Iteration: 1, Func. Count: 8, Neg. LLF: 363.1612565627445
Iteration: 2, Func. Count: 17, Neg. LLF: 165.2479017485288
Iteration: 3, Func. Count: 25, Neg. LLF: 163.7793095532183
Iteration: 4, Func. Count: 33, Neg. LLF: 165.16490173152042
Iteration: 5, Func. Count: 41, Neg. LLF: 163.10729666797474
Iteration: 6, Func. Count: 48, Neg. LLF: 162.88922236494454
Iteration: 7, Func. Count: 55, Neg. LLF: 163.3191491334268
Iteration: 8, Func. Count: 63, Neg. LLF: 165.8335956439957
Iteration: 9, Func. Count: 71, Neg. LLF: 162.53755305608016
Iteration: 10, Func. Count: 78, Neg. LLF: 162.51558291729955
Iteration: 11, Func. Count: 85, Neg. LLF: 162.51294434218775
Iteration: 12, Func. Count: 92, Neg. LLF: 162.51265961010458
Iteration: 13, Func. Count: 99, Neg. LLF: 162.512652125988
Iteration: 14, Func. Count: 106, Neg. LLF: 162.51265158557527
Optimization terminated successfully (Exit mode 0)
Current function value: 162.51265158557527
Iterations: 14
Function evaluations: 106
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 372.295637706839
Iteration: 2, Func. Count: 19, Neg. LLF: 164.6332298249616
Iteration: 3, Func. Count: 28, Neg. LLF: 163.24932666530503
Iteration: 4, Func. Count: 37, Neg. LLF: 163.04575825765983
Iteration: 5, Func. Count: 46, Neg. LLF: 162.7026725452992
Iteration: 6, Func. Count: 54, Neg. LLF: 162.66855285683053
Iteration: 7, Func. Count: 62, Neg. LLF: 162.50915007167512
Iteration: 8, Func. Count: 70, Neg. LLF: 162.5031249566626
Iteration: 9, Func. Count: 78, Neg. LLF: 162.50001988815288
Iteration: 10, Func. Count: 86, Neg. LLF: 162.49992190499708
Iteration: 11, Func. Count: 94, Neg. LLF: 162.49991751510143
Iteration: 12, Func. Count: 101, Neg. LLF: 162.49991751510203
Optimization terminated successfully (Exit mode 0)
Current function value: 162.49991751510143
Iterations: 12
Function evaluations: 101
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 196.28984712458112
Iteration: 2, Func. Count: 21, Neg. LLF: 174.1374694651867
Iteration: 3, Func. Count: 31, Neg. LLF: 165.1858089989999
Iteration: 4, Func. Count: 41, Neg. LLF: 163.09820978449804
Iteration: 5, Func. Count: 50, Neg. LLF: 163.3827723947598
Iteration: 6, Func. Count: 60, Neg. LLF: 162.96981361411218
Iteration: 7, Func. Count: 69, Neg. LLF: 162.9433485444263
Iteration: 8, Func. Count: 78, Neg. LLF: 162.92595029103563
Iteration: 9, Func. Count: 87, Neg. LLF: 162.84901256210648
Iteration: 10, Func. Count: 96, Neg. LLF: 162.7885402834643
Iteration: 11, Func. Count: 105, Neg. LLF: 162.6712623627543
Iteration: 12, Func. Count: 114, Neg. LLF: 162.53769896752192
Iteration: 13, Func. Count: 123, Neg. LLF: 162.83947206411477
Iteration: 14, Func. Count: 133, Neg. LLF: 162.48764857681633
Iteration: 15, Func. Count: 143, Neg. LLF: 162.20911560706136
Iteration: 16, Func. Count: 152, Neg. LLF: 162.13811646569704
Iteration: 17, Func. Count: 161, Neg. LLF: 162.1228285102243
Iteration: 18, Func. Count: 170, Neg. LLF: 162.12228997898364
Iteration: 19, Func. Count: 179, Neg. LLF: 162.12228447277536
Iteration: 20, Func. Count: 188, Neg. LLF: 174.01286101114763
Optimization terminated successfully (Exit mode 0)
Current function value: 162.1222839976407
Iterations: 21
Function evaluations: 192
Gradient evaluations: 20
Iteration: 1, Func. Count: 11, Neg. LLF: 196.2708434277707
Iteration: 2, Func. Count: 22, Neg. LLF: 173.19469866041294
Iteration: 3, Func. Count: 33, Neg. LLF: 175.24065797587906
Iteration: 4, Func. Count: 44, Neg. LLF: 162.65101897369928
Iteration: 5, Func. Count: 54, Neg. LLF: 162.59759933510864
Iteration: 6, Func. Count: 64, Neg. LLF: 162.58701525064606
Iteration: 7, Func. Count: 74, Neg. LLF: 162.55840060592922
Iteration: 8, Func. Count: 84, Neg. LLF: 162.5501055261769
Iteration: 9, Func. Count: 94, Neg. LLF: 162.52633703394156
Iteration: 10, Func. Count: 104, Neg. LLF: 162.5133605347234
Iteration: 11, Func. Count: 114, Neg. LLF: 162.49014194049528
Iteration: 12, Func. Count: 124, Neg. LLF: 162.4741821167982
Iteration: 13, Func. Count: 134, Neg. LLF: 162.46185814165582
Iteration: 14, Func. Count: 144, Neg. LLF: 162.46154706120547
Iteration: 15, Func. Count: 154, Neg. LLF: 162.46160305624136
Iteration: 16, Func. Count: 165, Neg. LLF: 162.46147007107436
Iteration: 17, Func. Count: 174, Neg. LLF: 162.46147007114965
Optimization terminated successfully (Exit mode 0)
Current function value: 162.46147007107436
Iterations: 17
Function evaluations: 174
Gradient evaluations: 17
Iteration: 1, Func. Count: 8, Neg. LLF: 165.24263277878828
Iteration: 2, Func. Count: 16, Neg. LLF: 164.1135473854021
Iteration: 3, Func. Count: 24, Neg. LLF: 163.61507385033548
Iteration: 4, Func. Count: 32, Neg. LLF: 163.9573543562861
Iteration: 5, Func. Count: 40, Neg. LLF: 163.88851525071172
Iteration: 6, Func. Count: 48, Neg. LLF: 163.47802470361228
Iteration: 7, Func. Count: 55, Neg. LLF: 163.46621445779303
Iteration: 8, Func. Count: 62, Neg. LLF: 163.45974822702917
Iteration: 9, Func. Count: 69, Neg. LLF: 163.45838697805584
Iteration: 10, Func. Count: 76, Neg. LLF: 163.45630605480758
Iteration: 11, Func. Count: 83, Neg. LLF: 163.45187652931705
Iteration: 12, Func. Count: 90, Neg. LLF: 163.4449413650743
Iteration: 13, Func. Count: 97, Neg. LLF: 163.43877173530544
Iteration: 14, Func. Count: 104, Neg. LLF: 163.4354025834268
Iteration: 15, Func. Count: 111, Neg. LLF: 163.43449132754256
Iteration: 16, Func. Count: 118, Neg. LLF: 163.4344631688801
Iteration: 17, Func. Count: 125, Neg. LLF: 163.4344604249255
Iteration: 18, Func. Count: 131, Neg. LLF: 163.4344604249272
Optimization terminated successfully (Exit mode 0)
Current function value: 163.4344604249255
Iterations: 18
Function evaluations: 131
Gradient evaluations: 18
Iteration: 1, Func. Count: 9, Neg. LLF: 366.8194290417843
Iteration: 2, Func. Count: 19, Neg. LLF: 163.26543534289698
Iteration: 3, Func. Count: 29, Neg. LLF: 162.08244304708182
Iteration: 4, Func. Count: 37, Neg. LLF: 162.03625176611175
Iteration: 5, Func. Count: 45, Neg. LLF: 161.99461662895686
Iteration: 6, Func. Count: 53, Neg. LLF: 161.97146230793246
Iteration: 7, Func. Count: 61, Neg. LLF: 161.96469818969462
Iteration: 8, Func. Count: 69, Neg. LLF: 161.9640960087747
Iteration: 9, Func. Count: 77, Neg. LLF: 161.96391342003162
Iteration: 10, Func. Count: 85, Neg. LLF: 161.96391202263302
Iteration: 11, Func. Count: 92, Neg. LLF: 161.9639120227155
Optimization terminated successfully (Exit mode 0)
Current function value: 161.96391202263302
Iterations: 11
Function evaluations: 92
Gradient evaluations: 11
Iteration: 1, Func. Count: 10, Neg. LLF: 376.84292324464263
Iteration: 2, Func. Count: 21, Neg. LLF: 161.9358037680213
Iteration: 3, Func. Count: 31, Neg. LLF: 161.4266188543817
Iteration: 4, Func. Count: 40, Neg. LLF: 161.40107743945248
Iteration: 5, Func. Count: 50, Neg. LLF: 161.35380351339626
Iteration: 6, Func. Count: 60, Neg. LLF: 161.29229735385135
Iteration: 7, Func. Count: 70, Neg. LLF: 161.18748202876534
Iteration: 8, Func. Count: 79, Neg. LLF: 161.15681132427915
Iteration: 9, Func. Count: 88, Neg. LLF: 161.14957277891972
Iteration: 10, Func. Count: 97, Neg. LLF: 161.14327280300404
Iteration: 11, Func. Count: 106, Neg. LLF: 161.1431156653413
Iteration: 12, Func. Count: 115, Neg. LLF: 161.14310735316857
Iteration: 13, Func. Count: 123, Neg. LLF: 161.1431073248159
Optimization terminated successfully (Exit mode 0)
Current function value: 161.14310735316857
Iterations: 13
Function evaluations: 123
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 359.8501757697583
Iteration: 2, Func. Count: 23, Neg. LLF: 162.04684096335367
Iteration: 3, Func. Count: 33, Neg. LLF: 161.28495166800954
Iteration: 4, Func. Count: 43, Neg. LLF: 164.4388577644401
Iteration: 5, Func. Count: 55, Neg. LLF: 161.5056318701468
Iteration: 6, Func. Count: 66, Neg. LLF: 161.17926502853976
Iteration: 7, Func. Count: 76, Neg. LLF: 161.16547727940574
Iteration: 8, Func. Count: 86, Neg. LLF: 161.15456811071698
Iteration: 9, Func. Count: 96, Neg. LLF: 161.14505179725376
Iteration: 10, Func. Count: 106, Neg. LLF: 161.14318868648627
Iteration: 11, Func. Count: 116, Neg. LLF: 161.14315987098965
Iteration: 12, Func. Count: 126, Neg. LLF: 161.14310991912092
Iteration: 13, Func. Count: 136, Neg. LLF: 161.1431070749846
Iteration: 14, Func. Count: 145, Neg. LLF: 161.14310708024868
Optimization terminated successfully (Exit mode 0)
Current function value: 161.1431070749846
Iterations: 14
Function evaluations: 145
Gradient evaluations: 14
Iteration: 1, Func. Count: 12, Neg. LLF: 363.8316599537669
Iteration: 2, Func. Count: 24, Neg. LLF: 173.34644197609592
Iteration: 3, Func. Count: 36, Neg. LLF: 161.98561159924364
Iteration: 4, Func. Count: 47, Neg. LLF: 161.9293406898703
Iteration: 5, Func. Count: 59, Neg. LLF: 173.9396819879279
Iteration: 6, Func. Count: 71, Neg. LLF: 161.55549274492452
Iteration: 7, Func. Count: 82, Neg. LLF: 161.42094300997832
Iteration: 8, Func. Count: 93, Neg. LLF: 161.54227651545798
Iteration: 9, Func. Count: 105, Neg. LLF: 161.2977967279407
Iteration: 10, Func. Count: 116, Neg. LLF: 161.21804973469915
Iteration: 11, Func. Count: 127, Neg. LLF: 161.20185215904397
Iteration: 12, Func. Count: 138, Neg. LLF: 161.1695905364504
Iteration: 13, Func. Count: 149, Neg. LLF: 161.1490659454502
Iteration: 14, Func. Count: 160, Neg. LLF: 161.14333479921302
Iteration: 15, Func. Count: 171, Neg. LLF: 161.14314389384913
Iteration: 16, Func. Count: 182, Neg. LLF: 161.14311198402348
Iteration: 17, Func. Count: 193, Neg. LLF: 161.1431074318414
Iteration: 18, Func. Count: 203, Neg. LLF: 161.14310742212024
Optimization terminated successfully (Exit mode 0)
Current function value: 161.1431074318414
Iterations: 18
Function evaluations: 203
Gradient evaluations: 18
Iteration: 1, Func. Count: 9, Neg. LLF: 170.44792945796746
Iteration: 2, Func. Count: 18, Neg. LLF: 165.64379394970948
Iteration: 3, Func. Count: 28, Neg. LLF: 164.8789444905528
Iteration: 4, Func. Count: 38, Neg. LLF: 168.89368369282994
Iteration: 5, Func. Count: 47, Neg. LLF: 163.2817112382793
Iteration: 6, Func. Count: 55, Neg. LLF: 163.73122674464872
Iteration: 7, Func. Count: 64, Neg. LLF: 163.2458278576302
Iteration: 8, Func. Count: 72, Neg. LLF: 163.244888792071
Iteration: 9, Func. Count: 80, Neg. LLF: 163.24388515503637
Iteration: 10, Func. Count: 88, Neg. LLF: 163.24235610687904
Iteration: 11, Func. Count: 96, Neg. LLF: 163.2398473527694
Iteration: 12, Func. Count: 104, Neg. LLF: 163.23649317286106
Iteration: 13, Func. Count: 112, Neg. LLF: 163.2333581672034
Iteration: 14, Func. Count: 120, Neg. LLF: 163.23134399070054
Iteration: 15, Func. Count: 128, Neg. LLF: 163.2306790947718
Iteration: 16, Func. Count: 136, Neg. LLF: 163.230571255274
Iteration: 17, Func. Count: 144, Neg. LLF: 163.23055762259526
Iteration: 18, Func. Count: 151, Neg. LLF: 163.2305576226012
Optimization terminated successfully (Exit mode 0)
Current function value: 163.23055762259526
Iterations: 18
Function evaluations: 151
Gradient evaluations: 18
Iteration: 1, Func. Count: 10, Neg. LLF: 367.00375822451576
Iteration: 2, Func. Count: 21, Neg. LLF: 163.42906490994312
Iteration: 3, Func. Count: 32, Neg. LLF: 162.1273287102197
Iteration: 4, Func. Count: 41, Neg. LLF: 162.05434843706948
Iteration: 5, Func. Count: 50, Neg. LLF: 162.03152640360332
Iteration: 6, Func. Count: 59, Neg. LLF: 161.98382527436803
Iteration: 7, Func. Count: 68, Neg. LLF: 161.96648827025996
Iteration: 8, Func. Count: 77, Neg. LLF: 161.96396104878
Iteration: 9, Func. Count: 86, Neg. LLF: 161.96391435246346
Iteration: 10, Func. Count: 95, Neg. LLF: 161.9639126095763
Iteration: 11, Func. Count: 104, Neg. LLF: 161.96391196456483
Optimization terminated successfully (Exit mode 0)
Current function value: 161.96391196456483
Iterations: 11
Function evaluations: 104
Gradient evaluations: 11
Iteration: 1, Func. Count: 11, Neg. LLF: 374.843394554008
Iteration: 2, Func. Count: 23, Neg. LLF: 162.9456524629861
Iteration: 3, Func. Count: 34, Neg. LLF: 161.5646544622794
Iteration: 4, Func. Count: 44, Neg. LLF: 161.78251061066877
Iteration: 5, Func. Count: 56, Neg. LLF: 161.36929664760586
Iteration: 6, Func. Count: 66, Neg. LLF: 161.48726042840173
Iteration: 7, Func. Count: 77, Neg. LLF: 161.24783814755887
Iteration: 8, Func. Count: 87, Neg. LLF: 161.20536514016374
Iteration: 9, Func. Count: 97, Neg. LLF: 161.1425595322723
Iteration: 10, Func. Count: 107, Neg. LLF: 161.127629532364
Iteration: 11, Func. Count: 117, Neg. LLF: 161.11401049379177
Iteration: 12, Func. Count: 127, Neg. LLF: 161.11301474122894
Iteration: 13, Func. Count: 137, Neg. LLF: 161.11293945670354
Iteration: 14, Func. Count: 147, Neg. LLF: 161.1129346495729
Iteration: 15, Func. Count: 156, Neg. LLF: 161.11293462072015
Optimization terminated successfully (Exit mode 0)
Current function value: 161.1129346495729
Iterations: 15
Function evaluations: 156
Gradient evaluations: 15
Iteration: 1, Func. Count: 12, Neg. LLF: 357.66209019994307
Iteration: 2, Func. Count: 25, Neg. LLF: 164.10095203410995
Iteration: 3, Func. Count: 37, Neg. LLF: 161.6497338203512
Iteration: 4, Func. Count: 48, Neg. LLF: 161.6674110599644
Iteration: 5, Func. Count: 60, Neg. LLF: 175.96885293847907
Iteration: 6, Func. Count: 72, Neg. LLF: 161.40840710084044
Iteration: 7, Func. Count: 83, Neg. LLF: 161.2854691787777
Iteration: 8, Func. Count: 94, Neg. LLF: 161.20411604259056
Iteration: 9, Func. Count: 105, Neg. LLF: 161.1687377134264
Iteration: 10, Func. Count: 116, Neg. LLF: 161.1440756295609
Iteration: 11, Func. Count: 127, Neg. LLF: 161.12155305926544
Iteration: 12, Func. Count: 138, Neg. LLF: 161.11480798448756
Iteration: 13, Func. Count: 149, Neg. LLF: 161.1133588962277
Iteration: 14, Func. Count: 160, Neg. LLF: 161.1129512296351
Iteration: 15, Func. Count: 171, Neg. LLF: 161.1129357055369
Iteration: 16, Func. Count: 182, Neg. LLF: 161.11293456921106
Iteration: 17, Func. Count: 192, Neg. LLF: 161.11293460756616
Optimization terminated successfully (Exit mode 0)
Current function value: 161.11293456921106
Iterations: 17
Function evaluations: 192
Gradient evaluations: 17
Iteration: 1, Func. Count: 13, Neg. LLF: 361.79179734286777
Iteration: 2, Func. Count: 26, Neg. LLF: 170.74301253835364
Iteration: 3, Func. Count: 39, Neg. LLF: 162.43438187661454
Iteration: 4, Func. Count: 51, Neg. LLF: 161.7488034523929
Iteration: 5, Func. Count: 63, Neg. LLF: 174.73949936634858
Iteration: 6, Func. Count: 77, Neg. LLF: 161.46701557636297
Iteration: 7, Func. Count: 89, Neg. LLF: 161.38310887939141
Iteration: 8, Func. Count: 101, Neg. LLF: 161.29450184842062
Iteration: 9, Func. Count: 113, Neg. LLF: 161.20281263554324
Iteration: 10, Func. Count: 125, Neg. LLF: 161.17203829333536
Iteration: 11, Func. Count: 137, Neg. LLF: 161.15090131113772
Iteration: 12, Func. Count: 149, Neg. LLF: 161.12574477816898
Iteration: 13, Func. Count: 161, Neg. LLF: 161.11399481688392
Iteration: 14, Func. Count: 173, Neg. LLF: 161.11294904444995
Iteration: 15, Func. Count: 185, Neg. LLF: 161.11293523098797
Iteration: 16, Func. Count: 197, Neg. LLF: 161.11293458547698
Optimization terminated successfully (Exit mode 0)
Current function value: 161.11293458547698
Iterations: 16
Function evaluations: 197
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 165.21670187055472
Iteration: 2, Func. Count: 20, Neg. LLF: 165.11048751325612
Iteration: 3, Func. Count: 30, Neg. LLF: 163.0636228293722
Iteration: 4, Func. Count: 40, Neg. LLF: 162.67318167598182
Iteration: 5, Func. Count: 50, Neg. LLF: 162.76457318814093
Iteration: 6, Func. Count: 60, Neg. LLF: 162.0449755992454
Iteration: 7, Func. Count: 69, Neg. LLF: 162.09289682996112
Iteration: 8, Func. Count: 79, Neg. LLF: 161.94795539216793
Iteration: 9, Func. Count: 88, Neg. LLF: 161.8906731859892
Iteration: 10, Func. Count: 97, Neg. LLF: 161.78733472074302
Iteration: 11, Func. Count: 106, Neg. LLF: 161.6282400705175
Iteration: 12, Func. Count: 115, Neg. LLF: 161.4614013281831
Iteration: 13, Func. Count: 124, Neg. LLF: 161.11566659285006
Iteration: 14, Func. Count: 133, Neg. LLF: 161.0313007147915
Iteration: 15, Func. Count: 142, Neg. LLF: 161.01051976047097
Iteration: 16, Func. Count: 151, Neg. LLF: 161.00751926278824
Iteration: 17, Func. Count: 160, Neg. LLF: 161.0051706187765
Iteration: 18, Func. Count: 169, Neg. LLF: 161.00504975512928
Iteration: 19, Func. Count: 178, Neg. LLF: 161.00504191861745
Iteration: 20, Func. Count: 186, Neg. LLF: 161.0050419106759
Optimization terminated successfully (Exit mode 0)
Current function value: 161.00504191861745
Iterations: 20
Function evaluations: 186
Gradient evaluations: 20
Iteration: 1, Func. Count: 11, Neg. LLF: 368.4612790633493
Iteration: 2, Func. Count: 23, Neg. LLF: 162.53615962057333
Iteration: 3, Func. Count: 36, Neg. LLF: 162.08848512408036
Iteration: 4, Func. Count: 46, Neg. LLF: 162.0765806088887
Iteration: 5, Func. Count: 57, Neg. LLF: 162.35624203126346
Iteration: 6, Func. Count: 68, Neg. LLF: 161.9887163015229
Iteration: 7, Func. Count: 78, Neg. LLF: 161.96680444691611
Iteration: 8, Func. Count: 88, Neg. LLF: 161.95849404080727
Iteration: 9, Func. Count: 98, Neg. LLF: 161.9542709886151
Iteration: 10, Func. Count: 108, Neg. LLF: 161.9537975924853
Iteration: 11, Func. Count: 118, Neg. LLF: 161.95375214525265
Iteration: 12, Func. Count: 128, Neg. LLF: 161.95375025436815
Iteration: 13, Func. Count: 137, Neg. LLF: 161.9537502541849
Optimization terminated successfully (Exit mode 0)
Current function value: 161.95375025436815
Iterations: 13
Function evaluations: 137
Gradient evaluations: 13
Iteration: 1, Func. Count: 12, Neg. LLF: 376.54356761780105
Iteration: 2, Func. Count: 25, Neg. LLF: 162.7652455914311
Iteration: 3, Func. Count: 37, Neg. LLF: 161.9942231923833
Iteration: 4, Func. Count: 49, Neg. LLF: 161.3206061495662
Iteration: 5, Func. Count: 60, Neg. LLF: 161.5972017449975
Iteration: 6, Func. Count: 72, Neg. LLF: 161.20660362550393
Iteration: 7, Func. Count: 83, Neg. LLF: 161.1395803525603
Iteration: 8, Func. Count: 94, Neg. LLF: 161.09857240002904
Iteration: 9, Func. Count: 105, Neg. LLF: 161.08360705452648
Iteration: 10, Func. Count: 116, Neg. LLF: 161.06496000248677
Iteration: 11, Func. Count: 127, Neg. LLF: 161.06379105387714
Iteration: 12, Func. Count: 138, Neg. LLF: 161.0636794320151
Iteration: 13, Func. Count: 149, Neg. LLF: 161.0636752868903
Iteration: 14, Func. Count: 159, Neg. LLF: 161.0636752630622
Optimization terminated successfully (Exit mode 0)
Current function value: 161.0636752868903
Iterations: 14
Function evaluations: 159
Gradient evaluations: 14
Iteration: 1, Func. Count: 13, Neg. LLF: 359.4928908765884
Iteration: 2, Func. Count: 27, Neg. LLF: 170.52077418476904
Iteration: 3, Func. Count: 40, Neg. LLF: 162.09614011412327
Iteration: 4, Func. Count: 53, Neg. LLF: 161.33169236687422
Iteration: 5, Func. Count: 65, Neg. LLF: 160.651823409349
Iteration: 6, Func. Count: 77, Neg. LLF: 160.59955440361648
Iteration: 7, Func. Count: 89, Neg. LLF: 161.62605228295962
Iteration: 8, Func. Count: 103, Neg. LLF: 160.56948944873477
Iteration: 9, Func. Count: 115, Neg. LLF: 160.5438670343681
Iteration: 10, Func. Count: 127, Neg. LLF: 160.50665723619383
Iteration: 11, Func. Count: 139, Neg. LLF: 160.5052925434337
Iteration: 12, Func. Count: 152, Neg. LLF: 160.50099649699882
Iteration: 13, Func. Count: 164, Neg. LLF: 160.50081357446498
Iteration: 14, Func. Count: 176, Neg. LLF: 160.50067562187064
Iteration: 15, Func. Count: 188, Neg. LLF: 160.50042593684626
Iteration: 16, Func. Count: 200, Neg. LLF: 160.50017273636584
Iteration: 17, Func. Count: 212, Neg. LLF: 160.50003285018704
Iteration: 18, Func. Count: 224, Neg. LLF: 160.50000670534513
Iteration: 19, Func. Count: 236, Neg. LLF: 160.50000527566098
Iteration: 20, Func. Count: 247, Neg. LLF: 160.50000527566112
Optimization terminated successfully (Exit mode 0)
Current function value: 160.50000527566098
Iterations: 20
Function evaluations: 247
Gradient evaluations: 20
Iteration: 1, Func. Count: 14, Neg. LLF: 163.50190335466866
Iteration: 2, Func. Count: 28, Neg. LLF: 178.99146232207428
Iteration: 3, Func. Count: 42, Neg. LLF: 161.8824993606654
Iteration: 4, Func. Count: 56, Neg. LLF: 160.91264751530537
Iteration: 5, Func. Count: 69, Neg. LLF: 161.61902864623676
Iteration: 6, Func. Count: 83, Neg. LLF: 160.80231335644928
Iteration: 7, Func. Count: 96, Neg. LLF: 160.77639984109402
Iteration: 8, Func. Count: 109, Neg. LLF: 160.73677597158508
Iteration: 9, Func. Count: 122, Neg. LLF: 160.65951765096852
Iteration: 10, Func. Count: 135, Neg. LLF: 160.56577998594256
Iteration: 11, Func. Count: 148, Neg. LLF: 160.51081239729334
Iteration: 12, Func. Count: 161, Neg. LLF: 160.5001114583354
Iteration: 13, Func. Count: 174, Neg. LLF: 160.50002272899783
Iteration: 14, Func. Count: 187, Neg. LLF: 160.5000097455549
Iteration: 15, Func. Count: 200, Neg. LLF: 160.50000601083275
Iteration: 16, Func. Count: 213, Neg. LLF: 160.50000525851146
Optimization terminated successfully (Exit mode 0)
Current function value: 160.50000525851146
Iterations: 16
Function evaluations: 213
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 164.2287359574092
Iteration: 2, Func. Count: 22, Neg. LLF: 163.88503286764657
Iteration: 3, Func. Count: 34, Neg. LLF: 165.71478640032015
Iteration: 4, Func. Count: 45, Neg. LLF: 162.1903900702845
Iteration: 5, Func. Count: 55, Neg. LLF: 162.0053703370779
Iteration: 6, Func. Count: 65, Neg. LLF: 161.99797800618194
Iteration: 7, Func. Count: 76, Neg. LLF: 161.9179257140506
Iteration: 8, Func. Count: 86, Neg. LLF: 161.83783571632262
Iteration: 9, Func. Count: 96, Neg. LLF: 161.6593270292688
Iteration: 10, Func. Count: 106, Neg. LLF: 161.50619012524598
Iteration: 11, Func. Count: 116, Neg. LLF: 161.36241488738258
Iteration: 12, Func. Count: 126, Neg. LLF: 161.01891458500126
Iteration: 13, Func. Count: 136, Neg. LLF: 161.0099290492501
Iteration: 14, Func. Count: 146, Neg. LLF: 161.0066440230252
Iteration: 15, Func. Count: 156, Neg. LLF: 161.00519245106653
Iteration: 16, Func. Count: 166, Neg. LLF: 161.0050686048323
Iteration: 17, Func. Count: 176, Neg. LLF: 161.0050419857326
Iteration: 18, Func. Count: 185, Neg. LLF: 161.00504208739315
Optimization terminated successfully (Exit mode 0)
Current function value: 161.0050419857326
Iterations: 18
Function evaluations: 185
Gradient evaluations: 18
Iteration: 1, Func. Count: 12, Neg. LLF: 367.26743461095947
Iteration: 2, Func. Count: 25, Neg. LLF: 162.57784140670455
Iteration: 3, Func. Count: 39, Neg. LLF: 162.03158485483706
Iteration: 4, Func. Count: 50, Neg. LLF: 161.99536281209058
Iteration: 5, Func. Count: 61, Neg. LLF: 162.00816092889102
Iteration: 6, Func. Count: 73, Neg. LLF: 161.98645685991448
Iteration: 7, Func. Count: 84, Neg. LLF: 161.95773934019272
Iteration: 8, Func. Count: 95, Neg. LLF: 161.95445981010414
Iteration: 9, Func. Count: 106, Neg. LLF: 161.95378361575862
Iteration: 10, Func. Count: 117, Neg. LLF: 161.95375383993286
Iteration: 11, Func. Count: 128, Neg. LLF: 161.95375026582417
Iteration: 12, Func. Count: 138, Neg. LLF: 161.95375026595096
Optimization terminated successfully (Exit mode 0)
Current function value: 161.95375026582417
Iterations: 12
Function evaluations: 138
Gradient evaluations: 12
Iteration: 1, Func. Count: 13, Neg. LLF: 375.931481428825
Iteration: 2, Func. Count: 27, Neg. LLF: 163.0980997664559
Iteration: 3, Func. Count: 40, Neg. LLF: 162.22622662483718
Iteration: 4, Func. Count: 53, Neg. LLF: 161.34412284639242
Iteration: 5, Func. Count: 65, Neg. LLF: 161.77029034111027
Iteration: 6, Func. Count: 78, Neg. LLF: 161.22505402880623
Iteration: 7, Func. Count: 90, Neg. LLF: 161.15767374044444
Iteration: 8, Func. Count: 102, Neg. LLF: 161.11561699738493
Iteration: 9, Func. Count: 114, Neg. LLF: 161.09878360423357
Iteration: 10, Func. Count: 126, Neg. LLF: 161.07591158848675
Iteration: 11, Func. Count: 138, Neg. LLF: 161.0669904925823
Iteration: 12, Func. Count: 150, Neg. LLF: 161.0639658712021
Iteration: 13, Func. Count: 162, Neg. LLF: 161.06370572466642
Iteration: 14, Func. Count: 174, Neg. LLF: 161.06367616156928
Iteration: 15, Func. Count: 186, Neg. LLF: 161.06367499797852
Iteration: 16, Func. Count: 197, Neg. LLF: 161.0636749741159
Optimization terminated successfully (Exit mode 0)
Current function value: 161.06367499797852
Iterations: 16
Function evaluations: 197
Gradient evaluations: 16
Iteration: 1, Func. Count: 14, Neg. LLF: 358.5443032060204
Iteration: 2, Func. Count: 29, Neg. LLF: 172.08949688498893
Iteration: 3, Func. Count: 43, Neg. LLF: 162.0463397948274
Iteration: 4, Func. Count: 57, Neg. LLF: 161.51000311172584
Iteration: 5, Func. Count: 70, Neg. LLF: 160.7665169332917
Iteration: 6, Func. Count: 83, Neg. LLF: 160.67301411643217
Iteration: 7, Func. Count: 96, Neg. LLF: 162.24627007581626
Iteration: 8, Func. Count: 110, Neg. LLF: 160.7410887870015
Iteration: 9, Func. Count: 124, Neg. LLF: 160.56497969030232
Iteration: 10, Func. Count: 137, Neg. LLF: 160.53082299903696
Iteration: 11, Func. Count: 150, Neg. LLF: 160.51281197626395
Iteration: 12, Func. Count: 163, Neg. LLF: 160.5019312027173
Iteration: 13, Func. Count: 176, Neg. LLF: 160.5009263294572
Iteration: 14, Func. Count: 189, Neg. LLF: 160.500636027852
Iteration: 15, Func. Count: 202, Neg. LLF: 160.500550997204
Iteration: 16, Func. Count: 215, Neg. LLF: 160.50039271036042
Iteration: 17, Func. Count: 228, Neg. LLF: 160.50020755616248
Iteration: 18, Func. Count: 241, Neg. LLF: 160.50005627903394
Iteration: 19, Func. Count: 254, Neg. LLF: 160.5000100779474
Iteration: 20, Func. Count: 267, Neg. LLF: 160.50000537912874
Iteration: 21, Func. Count: 279, Neg. LLF: 160.50000537915085
Optimization terminated successfully (Exit mode 0)
Current function value: 160.50000537912874
Iterations: 21
Function evaluations: 279
Gradient evaluations: 21
Iteration: 1, Func. Count: 15, Neg. LLF: 165.42978594116903
Iteration: 2, Func. Count: 30, Neg. LLF: 172.39262678003166
Iteration: 3, Func. Count: 45, Neg. LLF: 161.80291788236536
Iteration: 4, Func. Count: 59, Neg. LLF: 163.0945533333987
Iteration: 5, Func. Count: 74, Neg. LLF: 163.00146042702187
Iteration: 6, Func. Count: 89, Neg. LLF: 160.82895233830442
Iteration: 7, Func. Count: 103, Neg. LLF: 160.8028452633136
Iteration: 8, Func. Count: 117, Neg. LLF: 160.76473798220042
Iteration: 9, Func. Count: 131, Neg. LLF: 160.7064167152842
Iteration: 10, Func. Count: 145, Neg. LLF: 160.6150641436713
Iteration: 11, Func. Count: 159, Neg. LLF: 160.51689572762703
Iteration: 12, Func. Count: 173, Neg. LLF: 160.5032692782352
Iteration: 13, Func. Count: 187, Neg. LLF: 160.5008974639811
Iteration: 14, Func. Count: 201, Neg. LLF: 160.50007556736952
Iteration: 15, Func. Count: 215, Neg. LLF: 160.50002776480463
Iteration: 16, Func. Count: 229, Neg. LLF: 160.50001787016907
Iteration: 17, Func. Count: 243, Neg. LLF: 160.50001161485167
Iteration: 18, Func. Count: 257, Neg. LLF: 160.50000615792797
Iteration: 19, Func. Count: 271, Neg. LLF: 160.50000531824566
Optimization terminated successfully (Exit mode 0)
Current function value: 160.50000531824566
Iterations: 19
Function evaluations: 271
Gradient evaluations: 19
Iteration: 1, Func. Count: 8, Neg. LLF: 165.86679140951148
Iteration: 2, Func. Count: 16, Neg. LLF: 167.77833372635916
Iteration: 3, Func. Count: 25, Neg. LLF: 164.48714706694452
Iteration: 4, Func. Count: 32, Neg. LLF: 164.47697582677984
Iteration: 5, Func. Count: 39, Neg. LLF: 164.47270105938094
Iteration: 6, Func. Count: 46, Neg. LLF: 164.47181461234567
Iteration: 7, Func. Count: 53, Neg. LLF: 164.46889403141697
Iteration: 8, Func. Count: 60, Neg. LLF: 164.4542317844611
Iteration: 9, Func. Count: 67, Neg. LLF: 164.43342944549715
Iteration: 10, Func. Count: 74, Neg. LLF: 164.43312345821104
Iteration: 11, Func. Count: 81, Neg. LLF: 164.43311140554826
Iteration: 12, Func. Count: 87, Neg. LLF: 164.43311145170435
Optimization terminated successfully (Exit mode 0)
Current function value: 164.43311140554826
Iterations: 12
Function evaluations: 87
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 365.3701088828617
Iteration: 2, Func. Count: 19, Neg. LLF: 164.7362975571098
Iteration: 3, Func. Count: 28, Neg. LLF: 180.13056970218474
Iteration: 4, Func. Count: 38, Neg. LLF: 163.0472359943492
Iteration: 5, Func. Count: 46, Neg. LLF: 163.23270045046866
Iteration: 6, Func. Count: 55, Neg. LLF: 162.97877976520508
Iteration: 7, Func. Count: 63, Neg. LLF: 162.75806095834477
Iteration: 8, Func. Count: 71, Neg. LLF: 162.60732137772897
Iteration: 9, Func. Count: 79, Neg. LLF: 163.80779196171937
Iteration: 10, Func. Count: 89, Neg. LLF: 162.514935498091
Iteration: 11, Func. Count: 97, Neg. LLF: 162.51285809633222
Iteration: 12, Func. Count: 105, Neg. LLF: 162.5126622715521
Iteration: 13, Func. Count: 113, Neg. LLF: 162.51265167507984
Iteration: 14, Func. Count: 120, Neg. LLF: 162.51265167449134
Optimization terminated successfully (Exit mode 0)
Current function value: 162.51265167507984
Iterations: 14
Function evaluations: 120
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 374.1577586011968
Iteration: 2, Func. Count: 21, Neg. LLF: 164.08636406791584
Iteration: 3, Func. Count: 31, Neg. LLF: 163.2148977414492
Iteration: 4, Func. Count: 41, Neg. LLF: 162.78743141980502
Iteration: 5, Func. Count: 50, Neg. LLF: 162.73442982969712
Iteration: 6, Func. Count: 59, Neg. LLF: 162.5472046847998
Iteration: 7, Func. Count: 68, Neg. LLF: 162.51771714361408
Iteration: 8, Func. Count: 77, Neg. LLF: 162.50477274212565
Iteration: 9, Func. Count: 86, Neg. LLF: 162.50020759869918
Iteration: 10, Func. Count: 95, Neg. LLF: 162.5000301250455
Iteration: 11, Func. Count: 104, Neg. LLF: 162.49991933421435
Iteration: 12, Func. Count: 113, Neg. LLF: 162.49991751656427
Iteration: 13, Func. Count: 121, Neg. LLF: 162.4999175165886
Optimization terminated successfully (Exit mode 0)
Current function value: 162.49991751656427
Iterations: 13
Function evaluations: 121
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 196.13883111240426
Iteration: 2, Func. Count: 23, Neg. LLF: 169.6819992639644
Iteration: 3, Func. Count: 34, Neg. LLF: 165.4275485709883
Iteration: 4, Func. Count: 45, Neg. LLF: 163.17403617587732
Iteration: 5, Func. Count: 55, Neg. LLF: 163.06176802150247
Iteration: 6, Func. Count: 65, Neg. LLF: 162.95925961136405
Iteration: 7, Func. Count: 75, Neg. LLF: 162.94206206218678
Iteration: 8, Func. Count: 85, Neg. LLF: 162.92166830124302
Iteration: 9, Func. Count: 95, Neg. LLF: 162.894621007955
Iteration: 10, Func. Count: 105, Neg. LLF: 162.83746826203182
Iteration: 11, Func. Count: 115, Neg. LLF: 162.7849053959562
Iteration: 12, Func. Count: 125, Neg. LLF: 162.697680840678
Iteration: 13, Func. Count: 135, Neg. LLF: 162.55828929293676
Iteration: 14, Func. Count: 145, Neg. LLF: 162.6378536300042
Iteration: 15, Func. Count: 156, Neg. LLF: 162.40051531033598
Iteration: 16, Func. Count: 166, Neg. LLF: 162.32966486845643
Iteration: 17, Func. Count: 176, Neg. LLF: 162.46646510522365
Iteration: 18, Func. Count: 187, Neg. LLF: 162.1718210126611
Iteration: 19, Func. Count: 197, Neg. LLF: 194.8008595343722
Iteration: 20, Func. Count: 210, Neg. LLF: 1435.5877343346842
Iteration: 21, Func. Count: 223, Neg. LLF: 178.75569432090458
Iteration: 22, Func. Count: 235, Neg. LLF: 162.150832282227
Iteration: 23, Func. Count: 245, Neg. LLF: 162.1265957278808
Iteration: 24, Func. Count: 255, Neg. LLF: 162.12338985195976
Iteration: 25, Func. Count: 265, Neg. LLF: 162.12228473824734
Iteration: 26, Func. Count: 275, Neg. LLF: 162.1222839975929
Optimization terminated successfully (Exit mode 0)
Current function value: 162.1222839975929
Iterations: 27
Function evaluations: 275
Gradient evaluations: 26
Iteration: 1, Func. Count: 12, Neg. LLF: 196.15433858031938
Iteration: 2, Func. Count: 24, Neg. LLF: 170.5643237179064
Iteration: 3, Func. Count: 36, Neg. LLF: 164.72690475165743
Iteration: 4, Func. Count: 48, Neg. LLF: 162.81487406552182
Iteration: 5, Func. Count: 59, Neg. LLF: 162.64870899038002
Iteration: 6, Func. Count: 70, Neg. LLF: 162.58383406101112
Iteration: 7, Func. Count: 81, Neg. LLF: 162.57133059407855
Iteration: 8, Func. Count: 92, Neg. LLF: 162.56318915474588
Iteration: 9, Func. Count: 103, Neg. LLF: 162.54624448885548
Iteration: 10, Func. Count: 114, Neg. LLF: 162.5298965808247
Iteration: 11, Func. Count: 125, Neg. LLF: 162.49147956873705
Iteration: 12, Func. Count: 136, Neg. LLF: 162.4653512075956
Iteration: 13, Func. Count: 147, Neg. LLF: 162.4620671009808
Iteration: 14, Func. Count: 158, Neg. LLF: 162.46161859275153
Iteration: 15, Func. Count: 169, Neg. LLF: 162.4615631816171
Iteration: 16, Func. Count: 180, Neg. LLF: 162.46181742511124
Iteration: 17, Func. Count: 192, Neg. LLF: 162.46146987480233
Iteration: 18, Func. Count: 202, Neg. LLF: 162.4614698748454
Optimization terminated successfully (Exit mode 0)
Current function value: 162.46146987480233
Iterations: 18
Function evaluations: 202
Gradient evaluations: 18
Iteration: 1, Func. Count: 9, Neg. LLF: 166.58904993431725
Iteration: 2, Func. Count: 18, Neg. LLF: 168.40044741649294
Iteration: 3, Func. Count: 27, Neg. LLF: 166.54112243952824
Iteration: 4, Func. Count: 36, Neg. LLF: 163.60117415526227
Iteration: 5, Func. Count: 44, Neg. LLF: 163.9191368029249
Iteration: 6, Func. Count: 53, Neg. LLF: 165.37416884388253
Iteration: 7, Func. Count: 63, Neg. LLF: 163.46557091466067
Iteration: 8, Func. Count: 71, Neg. LLF: 163.46019694397683
Iteration: 9, Func. Count: 79, Neg. LLF: 163.4588046428534
Iteration: 10, Func. Count: 87, Neg. LLF: 163.45552044768536
Iteration: 11, Func. Count: 95, Neg. LLF: 163.45283250818974
Iteration: 12, Func. Count: 103, Neg. LLF: 163.44705464765724
Iteration: 13, Func. Count: 111, Neg. LLF: 163.44166408248398
Iteration: 14, Func. Count: 119, Neg. LLF: 163.43796267724267
Iteration: 15, Func. Count: 127, Neg. LLF: 163.4359522028907
Iteration: 16, Func. Count: 135, Neg. LLF: 163.4348602281692
Iteration: 17, Func. Count: 143, Neg. LLF: 163.43453773196754
Iteration: 18, Func. Count: 151, Neg. LLF: 163.4344643560376
Iteration: 19, Func. Count: 159, Neg. LLF: 163.43446045951097
Iteration: 20, Func. Count: 166, Neg. LLF: 163.43446045950714
Optimization terminated successfully (Exit mode 0)
Current function value: 163.43446045951097
Iterations: 20
Function evaluations: 166
Gradient evaluations: 20
Iteration: 1, Func. Count: 10, Neg. LLF: 367.2244219100725
Iteration: 2, Func. Count: 21, Neg. LLF: 163.2519552244499
Iteration: 3, Func. Count: 32, Neg. LLF: 162.08118298134988
Iteration: 4, Func. Count: 41, Neg. LLF: 162.03383496579383
Iteration: 5, Func. Count: 50, Neg. LLF: 161.99812568287456
Iteration: 6, Func. Count: 59, Neg. LLF: 161.97181865600214
Iteration: 7, Func. Count: 68, Neg. LLF: 161.96479539707448
Iteration: 8, Func. Count: 77, Neg. LLF: 161.96411270117508
Iteration: 9, Func. Count: 86, Neg. LLF: 161.9639132203658
Iteration: 10, Func. Count: 95, Neg. LLF: 161.9639119984024
Iteration: 11, Func. Count: 103, Neg. LLF: 161.96391199849083
Optimization terminated successfully (Exit mode 0)
Current function value: 161.9639119984024
Iterations: 11
Function evaluations: 103
Gradient evaluations: 11
Iteration: 1, Func. Count: 11, Neg. LLF: 377.1572491562075
Iteration: 2, Func. Count: 23, Neg. LLF: 161.9095194680888
Iteration: 3, Func. Count: 34, Neg. LLF: 161.437147305404
Iteration: 4, Func. Count: 44, Neg. LLF: 161.3974844098755
Iteration: 5, Func. Count: 55, Neg. LLF: 161.33476970576714
Iteration: 6, Func. Count: 66, Neg. LLF: 161.30615320522995
Iteration: 7, Func. Count: 77, Neg. LLF: 161.18713136885495
Iteration: 8, Func. Count: 87, Neg. LLF: 161.1560567858883
Iteration: 9, Func. Count: 97, Neg. LLF: 161.14882700198402
Iteration: 10, Func. Count: 107, Neg. LLF: 161.14335051380857
Iteration: 11, Func. Count: 117, Neg. LLF: 161.14312355116004
Iteration: 12, Func. Count: 127, Neg. LLF: 161.1431077879533
Iteration: 13, Func. Count: 137, Neg. LLF: 161.14310708425708
Optimization terminated successfully (Exit mode 0)
Current function value: 161.14310708425708
Iterations: 13
Function evaluations: 137
Gradient evaluations: 13
Iteration: 1, Func. Count: 12, Neg. LLF: 360.45916901813735
Iteration: 2, Func. Count: 25, Neg. LLF: 161.72478170347784
Iteration: 3, Func. Count: 36, Neg. LLF: 161.2745103845482
Iteration: 4, Func. Count: 47, Neg. LLF: 161.96085796515007
Iteration: 5, Func. Count: 60, Neg. LLF: 161.61155165223437
Iteration: 6, Func. Count: 72, Neg. LLF: 161.16899121855383
Iteration: 7, Func. Count: 83, Neg. LLF: 161.16319209021117
Iteration: 8, Func. Count: 94, Neg. LLF: 161.15283359416034
Iteration: 9, Func. Count: 105, Neg. LLF: 161.14365898958036
Iteration: 10, Func. Count: 116, Neg. LLF: 161.14317031868086
Iteration: 11, Func. Count: 127, Neg. LLF: 161.14310733612277
Iteration: 12, Func. Count: 137, Neg. LLF: 161.1431073412332
Optimization terminated successfully (Exit mode 0)
Current function value: 161.14310733612277
Iterations: 12
Function evaluations: 137
Gradient evaluations: 12
Iteration: 1, Func. Count: 13, Neg. LLF: 364.2615512247325
Iteration: 2, Func. Count: 26, Neg. LLF: 172.3939739335291
Iteration: 3, Func. Count: 39, Neg. LLF: 161.92797926059632
Iteration: 4, Func. Count: 51, Neg. LLF: 161.89867085188018
Iteration: 5, Func. Count: 64, Neg. LLF: 169.7947445739443
Iteration: 6, Func. Count: 77, Neg. LLF: 161.45072239630994
Iteration: 7, Func. Count: 89, Neg. LLF: 161.41759979280292
Iteration: 8, Func. Count: 101, Neg. LLF: 161.33288808316172
Iteration: 9, Func. Count: 113, Neg. LLF: 161.22188659032173
Iteration: 10, Func. Count: 125, Neg. LLF: 161.2067031117065
Iteration: 11, Func. Count: 137, Neg. LLF: 161.1720659327281
Iteration: 12, Func. Count: 149, Neg. LLF: 161.15911892273803
Iteration: 13, Func. Count: 161, Neg. LLF: 161.14492532864938
Iteration: 14, Func. Count: 173, Neg. LLF: 161.14330589660096
Iteration: 15, Func. Count: 185, Neg. LLF: 161.14314442821768
Iteration: 16, Func. Count: 197, Neg. LLF: 161.1431096043626
Iteration: 17, Func. Count: 209, Neg. LLF: 161.1431070743736
Iteration: 18, Func. Count: 220, Neg. LLF: 161.14310706450215
Optimization terminated successfully (Exit mode 0)
Current function value: 161.1431070743736
Iterations: 18
Function evaluations: 220
Gradient evaluations: 18
Iteration: 1, Func. Count: 10, Neg. LLF: 170.3223607537557
Iteration: 2, Func. Count: 20, Neg. LLF: 165.95439804920414
Iteration: 3, Func. Count: 31, Neg. LLF: 164.9900166908928
Iteration: 4, Func. Count: 42, Neg. LLF: 165.14752268109015
Iteration: 5, Func. Count: 52, Neg. LLF: 163.27479116372533
Iteration: 6, Func. Count: 61, Neg. LLF: 163.8464148894073
Iteration: 7, Func. Count: 71, Neg. LLF: 163.24947530571254
Iteration: 8, Func. Count: 80, Neg. LLF: 163.24500207601727
Iteration: 9, Func. Count: 89, Neg. LLF: 163.24445975092658
Iteration: 10, Func. Count: 98, Neg. LLF: 163.24267651054708
Iteration: 11, Func. Count: 107, Neg. LLF: 163.23929675153715
Iteration: 12, Func. Count: 116, Neg. LLF: 163.23493113992657
Iteration: 13, Func. Count: 125, Neg. LLF: 163.23217484067192
Iteration: 14, Func. Count: 134, Neg. LLF: 163.23083746416677
Iteration: 15, Func. Count: 143, Neg. LLF: 163.23058094842446
Iteration: 16, Func. Count: 152, Neg. LLF: 163.2305617820657
Iteration: 17, Func. Count: 161, Neg. LLF: 163.23055793624027
Iteration: 18, Func. Count: 170, Neg. LLF: 163.23055727849038
Optimization terminated successfully (Exit mode 0)
Current function value: 163.23055727849038
Iterations: 18
Function evaluations: 170
Gradient evaluations: 18
Iteration: 1, Func. Count: 11, Neg. LLF: 367.3833156209058
Iteration: 2, Func. Count: 23, Neg. LLF: 163.4173133224364
Iteration: 3, Func. Count: 35, Neg. LLF: 162.12417009041897
Iteration: 4, Func. Count: 45, Neg. LLF: 162.0542902287296
Iteration: 5, Func. Count: 55, Neg. LLF: 162.03082387716168
Iteration: 6, Func. Count: 65, Neg. LLF: 161.98384068110465
Iteration: 7, Func. Count: 75, Neg. LLF: 161.96633192161593
Iteration: 8, Func. Count: 85, Neg. LLF: 161.96396393704995
Iteration: 9, Func. Count: 95, Neg. LLF: 161.96391563840922
Iteration: 10, Func. Count: 105, Neg. LLF: 161.96391264030768
Iteration: 11, Func. Count: 115, Neg. LLF: 161.96391196480803
Optimization terminated successfully (Exit mode 0)
Current function value: 161.96391196480803
Iterations: 11
Function evaluations: 115
Gradient evaluations: 11
Iteration: 1, Func. Count: 12, Neg. LLF: 375.14845664361513
Iteration: 2, Func. Count: 25, Neg. LLF: 162.89968632785886
Iteration: 3, Func. Count: 37, Neg. LLF: 161.5574063967342
Iteration: 4, Func. Count: 48, Neg. LLF: 161.77774808848147
Iteration: 5, Func. Count: 61, Neg. LLF: 161.35341967766166
Iteration: 6, Func. Count: 72, Neg. LLF: 161.53117590830203
Iteration: 7, Func. Count: 84, Neg. LLF: 161.23709151667896
Iteration: 8, Func. Count: 95, Neg. LLF: 161.18650174313422
Iteration: 9, Func. Count: 106, Neg. LLF: 161.1369013115565
Iteration: 10, Func. Count: 117, Neg. LLF: 161.1252386891947
Iteration: 11, Func. Count: 128, Neg. LLF: 161.1135124077318
Iteration: 12, Func. Count: 139, Neg. LLF: 161.113010378196
Iteration: 13, Func. Count: 150, Neg. LLF: 161.11293610615695
Iteration: 14, Func. Count: 161, Neg. LLF: 161.11293463283215
Iteration: 15, Func. Count: 171, Neg. LLF: 161.11293460402607
Optimization terminated successfully (Exit mode 0)
Current function value: 161.11293463283215
Iterations: 15
Function evaluations: 171
Gradient evaluations: 15
Iteration: 1, Func. Count: 13, Neg. LLF: 378.84061630668504
Iteration: 2, Func. Count: 26, Neg. LLF: 181.7771791366602
Iteration: 3, Func. Count: 39, Neg. LLF: 163.0642321624355
Iteration: 4, Func. Count: 52, Neg. LLF: 161.8716002152993
Iteration: 5, Func. Count: 64, Neg. LLF: 164.18238453648684
Iteration: 6, Func. Count: 78, Neg. LLF: 161.6368943941013
Iteration: 7, Func. Count: 90, Neg. LLF: 161.5198556298206
Iteration: 8, Func. Count: 102, Neg. LLF: 161.4477715800393
Iteration: 9, Func. Count: 114, Neg. LLF: 161.3201673533667
Iteration: 10, Func. Count: 126, Neg. LLF: 161.23970567075017
Iteration: 11, Func. Count: 138, Neg. LLF: 161.2063566382652
Iteration: 12, Func. Count: 150, Neg. LLF: 161.17642837635188
Iteration: 13, Func. Count: 162, Neg. LLF: 161.11904521855698
Iteration: 14, Func. Count: 174, Neg. LLF: 161.11387919058
Iteration: 15, Func. Count: 186, Neg. LLF: 161.11295799400048
Iteration: 16, Func. Count: 198, Neg. LLF: 161.11293699195804
Iteration: 17, Func. Count: 210, Neg. LLF: 161.11293455935345
Iteration: 18, Func. Count: 221, Neg. LLF: 161.11293459772324
Optimization terminated successfully (Exit mode 0)
Current function value: 161.11293455935345
Iterations: 18
Function evaluations: 221
Gradient evaluations: 18
Iteration: 1, Func. Count: 14, Neg. LLF: 362.2312055407113
Iteration: 2, Func. Count: 28, Neg. LLF: 169.0869498407888
Iteration: 3, Func. Count: 42, Neg. LLF: 162.29778615180078
Iteration: 4, Func. Count: 55, Neg. LLF: 162.00443854747928
Iteration: 5, Func. Count: 68, Neg. LLF: 168.16951172368593
Iteration: 6, Func. Count: 82, Neg. LLF: 161.63771284334928
Iteration: 7, Func. Count: 95, Neg. LLF: 161.66840721322313
Iteration: 8, Func. Count: 109, Neg. LLF: 161.6405921702213
Iteration: 9, Func. Count: 123, Neg. LLF: 161.39529773194877
Iteration: 10, Func. Count: 136, Neg. LLF: 161.31974421435743
Iteration: 11, Func. Count: 149, Neg. LLF: 161.2473949602043
Iteration: 12, Func. Count: 162, Neg. LLF: 161.20853907762995
Iteration: 13, Func. Count: 175, Neg. LLF: 161.17647057283233
Iteration: 14, Func. Count: 188, Neg. LLF: 161.14524694879404
Iteration: 15, Func. Count: 201, Neg. LLF: 161.1145932134811
Iteration: 16, Func. Count: 214, Neg. LLF: 161.11310033562867
Iteration: 17, Func. Count: 227, Neg. LLF: 161.11294004076038
Iteration: 18, Func. Count: 240, Neg. LLF: 161.1129346048671
Iteration: 19, Func. Count: 252, Neg. LLF: 161.1129345885622
Optimization terminated successfully (Exit mode 0)
Current function value: 161.1129346048671
Iterations: 19
Function evaluations: 252
Gradient evaluations: 19
Iteration: 1, Func. Count: 11, Neg. LLF: 164.56949324342725
Iteration: 2, Func. Count: 22, Neg. LLF: 164.88705041907915
Iteration: 3, Func. Count: 34, Neg. LLF: 164.99785342234665
Iteration: 4, Func. Count: 45, Neg. LLF: 162.17856645801243
Iteration: 5, Func. Count: 55, Neg. LLF: 162.17796369350768
Iteration: 6, Func. Count: 66, Neg. LLF: 162.70397047327094
Iteration: 7, Func. Count: 77, Neg. LLF: 161.95267144802682
Iteration: 8, Func. Count: 87, Neg. LLF: 161.89021242585937
Iteration: 9, Func. Count: 97, Neg. LLF: 161.71742542922047
Iteration: 10, Func. Count: 107, Neg. LLF: 161.62276431357301
Iteration: 11, Func. Count: 117, Neg. LLF: 161.38839279244692
Iteration: 12, Func. Count: 127, Neg. LLF: 161.11090083359875
Iteration: 13, Func. Count: 137, Neg. LLF: 161.06450066435946
Iteration: 14, Func. Count: 147, Neg. LLF: 161.03455010821185
Iteration: 15, Func. Count: 157, Neg. LLF: 161.03333963630502
Iteration: 16, Func. Count: 168, Neg. LLF: 161.0051802611813
Iteration: 17, Func. Count: 178, Neg. LLF: 161.0050453599726
Iteration: 18, Func. Count: 188, Neg. LLF: 161.00504207173455
Iteration: 19, Func. Count: 197, Neg. LLF: 161.00504206379594
Optimization terminated successfully (Exit mode 0)
Current function value: 161.00504207173455
Iterations: 19
Function evaluations: 197
Gradient evaluations: 19
Iteration: 1, Func. Count: 12, Neg. LLF: 368.8174337718545
Iteration: 2, Func. Count: 25, Neg. LLF: 162.53233052027647
Iteration: 3, Func. Count: 39, Neg. LLF: 162.0770041468282
Iteration: 4, Func. Count: 50, Neg. LLF: 162.0550233261532
Iteration: 5, Func. Count: 61, Neg. LLF: 162.3334256301773
Iteration: 6, Func. Count: 73, Neg. LLF: 161.98868661555673
Iteration: 7, Func. Count: 84, Neg. LLF: 161.98354505678805
Iteration: 8, Func. Count: 95, Neg. LLF: 161.96962603417634
Iteration: 9, Func. Count: 106, Neg. LLF: 161.95738787673181
Iteration: 10, Func. Count: 117, Neg. LLF: 161.95396414413804
Iteration: 11, Func. Count: 128, Neg. LLF: 161.95375169259438
Iteration: 12, Func. Count: 139, Neg. LLF: 161.9537501449144
Iteration: 13, Func. Count: 149, Neg. LLF: 161.95375014486865
Optimization terminated successfully (Exit mode 0)
Current function value: 161.9537501449144
Iterations: 13
Function evaluations: 149
Gradient evaluations: 13
Iteration: 1, Func. Count: 13, Neg. LLF: 376.84033726493556
Iteration: 2, Func. Count: 27, Neg. LLF: 162.76919217488685
Iteration: 3, Func. Count: 40, Neg. LLF: 161.99240017623518
Iteration: 4, Func. Count: 53, Neg. LLF: 161.31449905844462
Iteration: 5, Func. Count: 65, Neg. LLF: 161.56596359663908
Iteration: 6, Func. Count: 78, Neg. LLF: 161.20246286091896
Iteration: 7, Func. Count: 90, Neg. LLF: 161.13765387922115
Iteration: 8, Func. Count: 102, Neg. LLF: 161.09532545686082
Iteration: 9, Func. Count: 114, Neg. LLF: 161.0806826095108
Iteration: 10, Func. Count: 126, Neg. LLF: 161.0645840213447
Iteration: 11, Func. Count: 138, Neg. LLF: 161.06378628901518
Iteration: 12, Func. Count: 150, Neg. LLF: 161.06367852556872
Iteration: 13, Func. Count: 162, Neg. LLF: 161.06367525506667
Iteration: 14, Func. Count: 173, Neg. LLF: 161.06367523125635
Optimization terminated successfully (Exit mode 0)
Current function value: 161.06367525506667
Iterations: 14
Function evaluations: 173
Gradient evaluations: 14
Iteration: 1, Func. Count: 14, Neg. LLF: 360.08590730812125
Iteration: 2, Func. Count: 29, Neg. LLF: 170.56617538414704
Iteration: 3, Func. Count: 43, Neg. LLF: 162.04536717129986
Iteration: 4, Func. Count: 57, Neg. LLF: 161.09506583229287
Iteration: 5, Func. Count: 70, Neg. LLF: 160.73809559126602
Iteration: 6, Func. Count: 83, Neg. LLF: 160.6038966045208
Iteration: 7, Func. Count: 96, Neg. LLF: 160.92391571573697
Iteration: 8, Func. Count: 111, Neg. LLF: 160.59855839881826
Iteration: 9, Func. Count: 125, Neg. LLF: 160.55673584335995
Iteration: 10, Func. Count: 138, Neg. LLF: 160.51856335007218
Iteration: 11, Func. Count: 151, Neg. LLF: 160.5046063879427
Iteration: 12, Func. Count: 164, Neg. LLF: 160.5012556389078
Iteration: 13, Func. Count: 177, Neg. LLF: 160.5009966300575
Iteration: 14, Func. Count: 190, Neg. LLF: 160.5008504136529
Iteration: 15, Func. Count: 203, Neg. LLF: 160.50051393270624
Iteration: 16, Func. Count: 216, Neg. LLF: 160.50020045152712
Iteration: 17, Func. Count: 229, Neg. LLF: 160.5000322897173
Iteration: 18, Func. Count: 242, Neg. LLF: 160.50000665003222
Iteration: 19, Func. Count: 255, Neg. LLF: 160.500005273574
Iteration: 20, Func. Count: 267, Neg. LLF: 160.50000527358358
Optimization terminated successfully (Exit mode 0)
Current function value: 160.500005273574
Iterations: 20
Function evaluations: 267
Gradient evaluations: 20
Iteration: 1, Func. Count: 15, Neg. LLF: 168.23455234723568
Iteration: 2, Func. Count: 30, Neg. LLF: 162.1867564763984
Iteration: 3, Func. Count: 45, Neg. LLF: 160.93533778596768
Iteration: 4, Func. Count: 59, Neg. LLF: 162.83126220483175
Iteration: 5, Func. Count: 74, Neg. LLF: 160.8668170003624
Iteration: 6, Func. Count: 89, Neg. LLF: 160.79089395364187
Iteration: 7, Func. Count: 103, Neg. LLF: 160.76175619718754
Iteration: 8, Func. Count: 117, Neg. LLF: 160.67845979918732
Iteration: 9, Func. Count: 131, Neg. LLF: 160.58409786795602
Iteration: 10, Func. Count: 145, Neg. LLF: 160.5308065826108
Iteration: 11, Func. Count: 159, Neg. LLF: 160.5036494412231
Iteration: 12, Func. Count: 173, Neg. LLF: 160.5003793536118
Iteration: 13, Func. Count: 187, Neg. LLF: 160.50006540961888
Iteration: 14, Func. Count: 201, Neg. LLF: 160.50000812472643
Iteration: 15, Func. Count: 215, Neg. LLF: 160.50000526019065
Iteration: 16, Func. Count: 228, Neg. LLF: 160.50000529994665
Optimization terminated successfully (Exit mode 0)
Current function value: 160.50000526019065
Iterations: 16
Function evaluations: 228
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 164.1450461743429
Iteration: 2, Func. Count: 24, Neg. LLF: 164.2109482267157
Iteration: 3, Func. Count: 36, Neg. LLF: 163.0764112007091
Iteration: 4, Func. Count: 48, Neg. LLF: 176.42784154815115
Iteration: 5, Func. Count: 61, Neg. LLF: 162.1187578056881
Iteration: 6, Func. Count: 72, Neg. LLF: 162.06270134507403
Iteration: 7, Func. Count: 84, Neg. LLF: 161.95955030582297
Iteration: 8, Func. Count: 96, Neg. LLF: 161.90381690179416
Iteration: 9, Func. Count: 107, Neg. LLF: 161.69938756461138
Iteration: 10, Func. Count: 118, Neg. LLF: 161.16253207848712
Iteration: 11, Func. Count: 129, Neg. LLF: 161.02616083728523
Iteration: 12, Func. Count: 140, Neg. LLF: 161.00741141155075
Iteration: 13, Func. Count: 151, Neg. LLF: 161.00562815762677
Iteration: 14, Func. Count: 162, Neg. LLF: 161.00522046686459
Iteration: 15, Func. Count: 173, Neg. LLF: 161.0050594036545
Iteration: 16, Func. Count: 184, Neg. LLF: 161.00504221166412
Iteration: 17, Func. Count: 194, Neg. LLF: 161.00504211000717
Optimization terminated successfully (Exit mode 0)
Current function value: 161.00504221166412
Iterations: 17
Function evaluations: 194
Gradient evaluations: 17
Iteration: 1, Func. Count: 13, Neg. LLF: 367.60937118774774
Iteration: 2, Func. Count: 27, Neg. LLF: 162.5828977821364
Iteration: 3, Func. Count: 42, Neg. LLF: 162.0295320381445
Iteration: 4, Func. Count: 54, Neg. LLF: 161.99995742960968
Iteration: 5, Func. Count: 66, Neg. LLF: 162.08651638764877
Iteration: 6, Func. Count: 79, Neg. LLF: 161.98887096454374
Iteration: 7, Func. Count: 91, Neg. LLF: 161.97569145913766
Iteration: 8, Func. Count: 103, Neg. LLF: 161.95838474181778
Iteration: 9, Func. Count: 115, Neg. LLF: 161.95479873001898
Iteration: 10, Func. Count: 127, Neg. LLF: 161.95380183750865
Iteration: 11, Func. Count: 139, Neg. LLF: 161.95375444526832
Iteration: 12, Func. Count: 151, Neg. LLF: 161.95375026559034
Iteration: 13, Func. Count: 162, Neg. LLF: 161.95375026551983
Optimization terminated successfully (Exit mode 0)
Current function value: 161.95375026559034
Iterations: 13
Function evaluations: 162
Gradient evaluations: 13
Iteration: 1, Func. Count: 14, Neg. LLF: 376.22111633256435
Iteration: 2, Func. Count: 29, Neg. LLF: 163.21123945463953
Iteration: 3, Func. Count: 43, Neg. LLF: 162.20348027278365
Iteration: 4, Func. Count: 57, Neg. LLF: 161.34858858675824
Iteration: 5, Func. Count: 70, Neg. LLF: 161.7497651430125
Iteration: 6, Func. Count: 84, Neg. LLF: 161.26418784282126
Iteration: 7, Func. Count: 98, Neg. LLF: 161.1673107157982
Iteration: 8, Func. Count: 111, Neg. LLF: 161.1182573830358
Iteration: 9, Func. Count: 124, Neg. LLF: 161.0956260412502
Iteration: 10, Func. Count: 137, Neg. LLF: 161.0814063907748
Iteration: 11, Func. Count: 150, Neg. LLF: 161.0659329918866
Iteration: 12, Func. Count: 163, Neg. LLF: 161.0638304121045
Iteration: 13, Func. Count: 176, Neg. LLF: 161.06369730407258
Iteration: 14, Func. Count: 189, Neg. LLF: 161.0636756596422
Iteration: 15, Func. Count: 202, Neg. LLF: 161.06367496576695
Optimization terminated successfully (Exit mode 0)
Current function value: 161.06367496576695
Iterations: 15
Function evaluations: 202
Gradient evaluations: 15
Iteration: 1, Func. Count: 15, Neg. LLF: 359.13855136907677
Iteration: 2, Func. Count: 31, Neg. LLF: 172.1311147418774
Iteration: 3, Func. Count: 46, Neg. LLF: 162.04036048545484
Iteration: 4, Func. Count: 61, Neg. LLF: 161.54905236004686
Iteration: 5, Func. Count: 75, Neg. LLF: 160.76944328170404
Iteration: 6, Func. Count: 89, Neg. LLF: 160.66573079406584
Iteration: 7, Func. Count: 103, Neg. LLF: 163.8353184671235
Iteration: 8, Func. Count: 118, Neg. LLF: 160.6577712831917
Iteration: 9, Func. Count: 133, Neg. LLF: 160.565030259293
Iteration: 10, Func. Count: 147, Neg. LLF: 160.54445215397234
Iteration: 11, Func. Count: 161, Neg. LLF: 160.51397155502036
Iteration: 12, Func. Count: 175, Neg. LLF: 160.5022327664512
Iteration: 13, Func. Count: 189, Neg. LLF: 160.50093693205542
Iteration: 14, Func. Count: 203, Neg. LLF: 160.50072968334115
Iteration: 15, Func. Count: 217, Neg. LLF: 160.50061227478855
Iteration: 16, Func. Count: 231, Neg. LLF: 160.5004353627399
Iteration: 17, Func. Count: 245, Neg. LLF: 160.5002161192231
Iteration: 18, Func. Count: 259, Neg. LLF: 160.5000563320457
Iteration: 19, Func. Count: 273, Neg. LLF: 160.50000969871664
Iteration: 20, Func. Count: 287, Neg. LLF: 160.50000535986058
Iteration: 21, Func. Count: 300, Neg. LLF: 160.50000535987556
Optimization terminated successfully (Exit mode 0)
Current function value: 160.50000535986058
Iterations: 21
Function evaluations: 300
Gradient evaluations: 21
Iteration: 1, Func. Count: 16, Neg. LLF: 165.65693691655858
Iteration: 2, Func. Count: 32, Neg. LLF: 172.63071438375871
Iteration: 3, Func. Count: 48, Neg. LLF: 161.74914943032002
Iteration: 4, Func. Count: 63, Neg. LLF: 162.53346476397567
Iteration: 5, Func. Count: 79, Neg. LLF: 162.97280807844473
Iteration: 6, Func. Count: 95, Neg. LLF: 160.8255626683092
Iteration: 7, Func. Count: 110, Neg. LLF: 160.8015040848138
Iteration: 8, Func. Count: 125, Neg. LLF: 160.723139408577
Iteration: 9, Func. Count: 140, Neg. LLF: 160.64828956647307
Iteration: 10, Func. Count: 155, Neg. LLF: 160.55064448187682
Iteration: 11, Func. Count: 170, Neg. LLF: 160.51215925396787
Iteration: 12, Func. Count: 185, Neg. LLF: 160.50349703852845
Iteration: 13, Func. Count: 200, Neg. LLF: 160.50044214277588
Iteration: 14, Func. Count: 215, Neg. LLF: 160.50024396588208
Iteration: 15, Func. Count: 230, Neg. LLF: 160.50013691053314
Iteration: 16, Func. Count: 245, Neg. LLF: 160.50002921468155
Iteration: 17, Func. Count: 260, Neg. LLF: 160.50000739915748
Iteration: 18, Func. Count: 275, Neg. LLF: 160.5000052895358
Iteration: 19, Func. Count: 289, Neg. LLF: 160.50000532928007
Optimization terminated successfully (Exit mode 0)
Current function value: 160.5000052895358
Iterations: 19
Function evaluations: 289
Gradient evaluations: 19
Iteration: 1, Func. Count: 6, Neg. LLF: 373.5276745799776
Iteration: 2, Func. Count: 13, Neg. LLF: 163.2351992745307
Iteration: 3, Func. Count: 20, Neg. LLF: 162.06588216295012
Iteration: 4, Func. Count: 25, Neg. LLF: 161.985057496965
Iteration: 5, Func. Count: 30, Neg. LLF: 161.96688750103903
Iteration: 6, Func. Count: 35, Neg. LLF: 161.96409333734636
Iteration: 7, Func. Count: 40, Neg. LLF: 161.96393594959957
Iteration: 8, Func. Count: 45, Neg. LLF: 161.96391488202664
Iteration: 9, Func. Count: 50, Neg. LLF: 161.96391197053836
Iteration: 10, Func. Count: 54, Neg. LLF: 161.96391197055416
Optimization terminated successfully (Exit mode 0)
Current function value: 161.96391197053836
Iterations: 10
Function evaluations: 54
Gradient evaluations: 10
Iteration: 1, Func. Count: 5, Neg. LLF: 161.31383223606898
Iteration: 2, Func. Count: 9, Neg. LLF: 164.34544793587594
Iteration: 3, Func. Count: 14, Neg. LLF: 160.12181048129204
Iteration: 4, Func. Count: 18, Neg. LLF: 159.76172509265857
Iteration: 5, Func. Count: 22, Neg. LLF: 159.5872140425463
Iteration: 6, Func. Count: 26, Neg. LLF: 159.56310100342463
Iteration: 7, Func. Count: 30, Neg. LLF: 159.56062296380574
Iteration: 8, Func. Count: 34, Neg. LLF: 159.5601178944006
Iteration: 9, Func. Count: 38, Neg. LLF: 159.55983230327104
Iteration: 10, Func. Count: 42, Neg. LLF: 159.55967792714284
Iteration: 11, Func. Count: 46, Neg. LLF: 159.55964276117783
Iteration: 12, Func. Count: 50, Neg. LLF: 159.5596400908469
Iteration: 13, Func. Count: 53, Neg. LLF: 159.55964009085451
Optimization terminated successfully (Exit mode 0)
Current function value: 159.5596400908469
Iterations: 13
Function evaluations: 53
Gradient evaluations: 13
Iteration: 1, Func. Count: 6, Neg. LLF: 356.5439894055863
Iteration: 2, Func. Count: 13, Neg. LLF: 158.79344471997453
Iteration: 3, Func. Count: 19, Neg. LLF: 158.6147563770241
Iteration: 4, Func. Count: 25, Neg. LLF: 158.44297322637306
Iteration: 5, Func. Count: 30, Neg. LLF: 158.39132507923867
Iteration: 6, Func. Count: 35, Neg. LLF: 158.32874873787685
Iteration: 7, Func. Count: 40, Neg. LLF: 158.29621947187158
Iteration: 8, Func. Count: 45, Neg. LLF: 158.29259559590577
Iteration: 9, Func. Count: 50, Neg. LLF: 158.29312913217174
Iteration: 10, Func. Count: 56, Neg. LLF: 158.29200015998072
Iteration: 11, Func. Count: 61, Neg. LLF: 158.2919986093566
Iteration: 12, Func. Count: 65, Neg. LLF: 158.29199860936993
Optimization terminated successfully (Exit mode 0)
Current function value: 158.2919986093566
Iterations: 12
Function evaluations: 65
Gradient evaluations: 12
Iteration: 1, Func. Count: 7, Neg. LLF: 374.2715491014879
Iteration: 2, Func. Count: 15, Neg. LLF: 158.75214355586692
Iteration: 3, Func. Count: 22, Neg. LLF: 158.38641851180043
Iteration: 4, Func. Count: 29, Neg. LLF: 158.38001081655037
Iteration: 5, Func. Count: 36, Neg. LLF: 158.363368989827
Iteration: 6, Func. Count: 42, Neg. LLF: 158.36094992774602
Iteration: 7, Func. Count: 48, Neg. LLF: 158.35926902171562
Iteration: 8, Func. Count: 54, Neg. LLF: 158.3541219025175
Iteration: 9, Func. Count: 60, Neg. LLF: 158.350518937064
Iteration: 10, Func. Count: 66, Neg. LLF: 158.34627675630304
Iteration: 11, Func. Count: 72, Neg. LLF: 158.33895487286816
Iteration: 12, Func. Count: 78, Neg. LLF: 158.33790901411683
Iteration: 13, Func. Count: 85, Neg. LLF: 158.30285218716742
Iteration: 14, Func. Count: 91, Neg. LLF: 158.29396390788162
Iteration: 15, Func. Count: 97, Neg. LLF: 158.29211409538385
Iteration: 16, Func. Count: 103, Neg. LLF: 158.29210302019897
Iteration: 17, Func. Count: 110, Neg. LLF: 158.29199860926877
Optimization terminated successfully (Exit mode 0)
Current function value: 158.29199860926877
Iterations: 17
Function evaluations: 110
Gradient evaluations: 17
Iteration: 1, Func. Count: 8, Neg. LLF: 381.6182342189004
Iteration: 2, Func. Count: 17, Neg. LLF: 159.05290801979748
Iteration: 3, Func. Count: 25, Neg. LLF: 158.92388196659374
Iteration: 4, Func. Count: 33, Neg. LLF: 158.43180748154995
Iteration: 5, Func. Count: 41, Neg. LLF: 158.32799222093556
Iteration: 6, Func. Count: 48, Neg. LLF: 158.3149743614641
Iteration: 7, Func. Count: 55, Neg. LLF: 158.30719833675823
Iteration: 8, Func. Count: 62, Neg. LLF: 158.3002626782716
Iteration: 9, Func. Count: 69, Neg. LLF: 158.29225647204703
Iteration: 10, Func. Count: 76, Neg. LLF: 158.28834589636136
Iteration: 11, Func. Count: 83, Neg. LLF: 158.285588576632
Iteration: 12, Func. Count: 90, Neg. LLF: 158.28516585903714
Iteration: 13, Func. Count: 97, Neg. LLF: 158.28511545501073
Iteration: 14, Func. Count: 104, Neg. LLF: 158.28510315415627
Iteration: 15, Func. Count: 111, Neg. LLF: 158.28509737008028
Iteration: 16, Func. Count: 117, Neg. LLF: 158.28509737016412
Optimization terminated successfully (Exit mode 0)
Current function value: 158.28509737008028
Iterations: 16
Function evaluations: 117
Gradient evaluations: 16
Iteration: 1, Func. Count: 9, Neg. LLF: 191.47792335701087
Iteration: 2, Func. Count: 18, Neg. LLF: 158.54687878670603
Iteration: 3, Func. Count: 26, Neg. LLF: 158.39049359169047
Iteration: 4, Func. Count: 34, Neg. LLF: 161.5177073846403
Iteration: 5, Func. Count: 43, Neg. LLF: 160.42813800029688
Iteration: 6, Func. Count: 52, Neg. LLF: 158.3457366751167
Iteration: 7, Func. Count: 61, Neg. LLF: 158.16139517551687
Iteration: 8, Func. Count: 69, Neg. LLF: 158.14909663384952
Iteration: 9, Func. Count: 77, Neg. LLF: 158.14144414935797
Iteration: 10, Func. Count: 85, Neg. LLF: 158.14117546551708
Iteration: 11, Func. Count: 93, Neg. LLF: 158.14100268894242
Iteration: 12, Func. Count: 101, Neg. LLF: 158.1406164666245
Iteration: 13, Func. Count: 109, Neg. LLF: 158.14017283764122
Iteration: 14, Func. Count: 117, Neg. LLF: 158.1398791362293
Iteration: 15, Func. Count: 125, Neg. LLF: 158.13981981027823
Iteration: 16, Func. Count: 133, Neg. LLF: 158.13981649291745
Iteration: 17, Func. Count: 140, Neg. LLF: 158.1398164950278
Optimization terminated successfully (Exit mode 0)
Current function value: 158.13981649291745
Iterations: 17
Function evaluations: 140
Gradient evaluations: 17
Iteration: 1, Func. Count: 6, Neg. LLF: 162.45244212823442
Iteration: 2, Func. Count: 12, Neg. LLF: 163.46970871673665
Iteration: 3, Func. Count: 19, Neg. LLF: 163.44704739154383
Iteration: 4, Func. Count: 25, Neg. LLF: 160.1081480968269
Iteration: 5, Func. Count: 30, Neg. LLF: 160.01717593822906
Iteration: 6, Func. Count: 35, Neg. LLF: 159.7773298293842
Iteration: 7, Func. Count: 40, Neg. LLF: 159.6674835195604
Iteration: 8, Func. Count: 45, Neg. LLF: 159.58215473401714
Iteration: 9, Func. Count: 50, Neg. LLF: 159.57279524648675
Iteration: 10, Func. Count: 55, Neg. LLF: 159.56594433734725
Iteration: 11, Func. Count: 60, Neg. LLF: 159.5547001106413
Iteration: 12, Func. Count: 65, Neg. LLF: 159.54108299688556
Iteration: 13, Func. Count: 70, Neg. LLF: 159.5358491947471
Iteration: 14, Func. Count: 75, Neg. LLF: 159.53495174614048
Iteration: 15, Func. Count: 80, Neg. LLF: 159.5348720782442
Iteration: 16, Func. Count: 85, Neg. LLF: 159.53487134350416
Optimization terminated successfully (Exit mode 0)
Current function value: 159.53487134350416
Iterations: 16
Function evaluations: 85
Gradient evaluations: 16
Iteration: 1, Func. Count: 7, Neg. LLF: 357.1638790166519
Iteration: 2, Func. Count: 15, Neg. LLF: 158.8500339142839
Iteration: 3, Func. Count: 22, Neg. LLF: 158.62299372997452
Iteration: 4, Func. Count: 29, Neg. LLF: 158.45001614094983
Iteration: 5, Func. Count: 35, Neg. LLF: 158.3998389087294
Iteration: 6, Func. Count: 41, Neg. LLF: 158.67353311347136
Iteration: 7, Func. Count: 48, Neg. LLF: 158.33498101692328
Iteration: 8, Func. Count: 55, Neg. LLF: 158.29388206501812
Iteration: 9, Func. Count: 61, Neg. LLF: 158.29236309074147
Iteration: 10, Func. Count: 67, Neg. LLF: 158.29201513399977
Iteration: 11, Func. Count: 73, Neg. LLF: 158.292000268871
Iteration: 12, Func. Count: 79, Neg. LLF: 158.291998647591
Iteration: 13, Func. Count: 84, Neg. LLF: 158.29199864738968
Optimization terminated successfully (Exit mode 0)
Current function value: 158.291998647591
Iterations: 13
Function evaluations: 84
Gradient evaluations: 13
Iteration: 1, Func. Count: 8, Neg. LLF: 370.29014615140954
Iteration: 2, Func. Count: 17, Neg. LLF: 158.77157853789942
Iteration: 3, Func. Count: 25, Neg. LLF: 158.42465548295175
Iteration: 4, Func. Count: 32, Neg. LLF: 158.4132955466546
Iteration: 5, Func. Count: 40, Neg. LLF: 158.36730675787035
Iteration: 6, Func. Count: 47, Neg. LLF: 158.35978212217123
Iteration: 7, Func. Count: 54, Neg. LLF: 158.35865741620978
Iteration: 8, Func. Count: 61, Neg. LLF: 158.35489808283518
Iteration: 9, Func. Count: 68, Neg. LLF: 158.34747037862073
Iteration: 10, Func. Count: 75, Neg. LLF: 158.3359670220481
Iteration: 11, Func. Count: 82, Neg. LLF: 158.34578666811836
Iteration: 12, Func. Count: 90, Neg. LLF: 158.32093188690052
Iteration: 13, Func. Count: 97, Neg. LLF: 158.29272031504144
Iteration: 14, Func. Count: 104, Neg. LLF: 158.2920196690515
Iteration: 15, Func. Count: 111, Neg. LLF: 158.29199947865496
Iteration: 16, Func. Count: 118, Neg. LLF: 158.29199876881447
Optimization terminated successfully (Exit mode 0)
Current function value: 158.29199876881447
Iterations: 16
Function evaluations: 118
Gradient evaluations: 16
Iteration: 1, Func. Count: 9, Neg. LLF: 376.9168956272062
Iteration: 2, Func. Count: 19, Neg. LLF: 159.134527194813
Iteration: 3, Func. Count: 28, Neg. LLF: 158.57372182034402
Iteration: 4, Func. Count: 37, Neg. LLF: 158.4078731586581
Iteration: 5, Func. Count: 45, Neg. LLF: 158.36738499425633
Iteration: 6, Func. Count: 53, Neg. LLF: 158.35286296970511
Iteration: 7, Func. Count: 61, Neg. LLF: 158.34541497802323
Iteration: 8, Func. Count: 69, Neg. LLF: 158.3274090765152
Iteration: 9, Func. Count: 77, Neg. LLF: 158.3174309340043
Iteration: 10, Func. Count: 85, Neg. LLF: 158.29669706677902
Iteration: 11, Func. Count: 93, Neg. LLF: 158.29020719485376
Iteration: 12, Func. Count: 101, Neg. LLF: 158.28649756416465
Iteration: 13, Func. Count: 109, Neg. LLF: 158.28586647766008
Iteration: 14, Func. Count: 117, Neg. LLF: 158.28566494837875
Iteration: 15, Func. Count: 125, Neg. LLF: 158.28544168882874
Iteration: 16, Func. Count: 133, Neg. LLF: 158.28523585589502
Iteration: 17, Func. Count: 141, Neg. LLF: 158.28512023172297
Iteration: 18, Func. Count: 149, Neg. LLF: 158.2850990613219
Iteration: 19, Func. Count: 157, Neg. LLF: 158.2850970022329
Iteration: 20, Func. Count: 164, Neg. LLF: 158.2850970022057
Optimization terminated successfully (Exit mode 0)
Current function value: 158.2850970022329
Iterations: 20
Function evaluations: 164
Gradient evaluations: 20
Iteration: 1, Func. Count: 10, Neg. LLF: 191.42847524415612
Iteration: 2, Func. Count: 20, Neg. LLF: 159.5240176467647
Iteration: 3, Func. Count: 30, Neg. LLF: 158.71375704843726
Iteration: 4, Func. Count: 39, Neg. LLF: 159.1268143046941
Iteration: 5, Func. Count: 50, Neg. LLF: 158.5694210212623
Iteration: 6, Func. Count: 59, Neg. LLF: 158.5613222585815
Iteration: 7, Func. Count: 68, Neg. LLF: 158.5415612684301
Iteration: 8, Func. Count: 77, Neg. LLF: 158.45279247596488
Iteration: 9, Func. Count: 86, Neg. LLF: 158.3478085426016
Iteration: 10, Func. Count: 95, Neg. LLF: 158.38931759643467
Iteration: 11, Func. Count: 105, Neg. LLF: 158.2949564026524
Iteration: 12, Func. Count: 114, Neg. LLF: 158.28477945573783
Iteration: 13, Func. Count: 123, Neg. LLF: 158.28231539699345
Iteration: 14, Func. Count: 132, Neg. LLF: 158.2806685394014
Iteration: 15, Func. Count: 141, Neg. LLF: 158.27777044708125
Iteration: 16, Func. Count: 150, Neg. LLF: 158.27608337968098
Iteration: 17, Func. Count: 159, Neg. LLF: 158.27572275878603
Iteration: 18, Func. Count: 168, Neg. LLF: 158.27566800283944
Iteration: 19, Func. Count: 176, Neg. LLF: 158.27566800285734
Optimization terminated successfully (Exit mode 0)
Current function value: 158.27566800283944
Iterations: 19
Function evaluations: 176
Gradient evaluations: 19
Iteration: 1, Func. Count: 7, Neg. LLF: 160.29326239931967
Iteration: 2, Func. Count: 13, Neg. LLF: 162.91212475645563
Iteration: 3, Func. Count: 20, Neg. LLF: 158.26489438716413
Iteration: 4, Func. Count: 26, Neg. LLF: 158.20798608611366
Iteration: 5, Func. Count: 32, Neg. LLF: 158.2109474401887
Iteration: 6, Func. Count: 39, Neg. LLF: 158.2681779673378
Iteration: 7, Func. Count: 46, Neg. LLF: 158.1886264607718
Iteration: 8, Func. Count: 52, Neg. LLF: 158.17772496440978
Iteration: 9, Func. Count: 58, Neg. LLF: 158.1744727963765
Iteration: 10, Func. Count: 64, Neg. LLF: 158.1739144248584
Iteration: 11, Func. Count: 70, Neg. LLF: 158.1735747596813
Iteration: 12, Func. Count: 76, Neg. LLF: 158.17265292162213
Iteration: 13, Func. Count: 82, Neg. LLF: 158.17191016917891
Iteration: 14, Func. Count: 88, Neg. LLF: 158.17160529765533
Iteration: 15, Func. Count: 94, Neg. LLF: 158.17156513722233
Iteration: 16, Func. Count: 100, Neg. LLF: 158.17156380018187
Iteration: 17, Func. Count: 105, Neg. LLF: 158.17156380018255
Optimization terminated successfully (Exit mode 0)
Current function value: 158.17156380018187
Iterations: 17
Function evaluations: 105
Gradient evaluations: 17
Iteration: 1, Func. Count: 8, Neg. LLF: 361.203235065741
Iteration: 2, Func. Count: 17, Neg. LLF: 158.93458172668218
Iteration: 3, Func. Count: 25, Neg. LLF: 158.34485021529608
Iteration: 4, Func. Count: 32, Neg. LLF: 158.34399666349321
Iteration: 5, Func. Count: 40, Neg. LLF: 158.32584080615604
Iteration: 6, Func. Count: 47, Neg. LLF: 158.29408873722593
Iteration: 7, Func. Count: 54, Neg. LLF: 158.3260449178694
Iteration: 8, Func. Count: 62, Neg. LLF: 158.27449999877172
Iteration: 9, Func. Count: 69, Neg. LLF: 158.2739679304781
Iteration: 10, Func. Count: 76, Neg. LLF: 158.2739113987724
Iteration: 11, Func. Count: 83, Neg. LLF: 158.2739098647656
Iteration: 12, Func. Count: 90, Neg. LLF: 158.27390933123593
Optimization terminated successfully (Exit mode 0)
Current function value: 158.27390933123593
Iterations: 12
Function evaluations: 90
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 374.43400529946524
Iteration: 2, Func. Count: 19, Neg. LLF: 158.95524113879966
Iteration: 3, Func. Count: 28, Neg. LLF: 158.34834638206044
Iteration: 4, Func. Count: 36, Neg. LLF: 158.31955058124004
Iteration: 5, Func. Count: 44, Neg. LLF: 158.2956535148569
Iteration: 6, Func. Count: 52, Neg. LLF: 158.29337258501053
Iteration: 7, Func. Count: 60, Neg. LLF: 158.2918090749095
Iteration: 8, Func. Count: 68, Neg. LLF: 158.28876062041957
Iteration: 9, Func. Count: 76, Neg. LLF: 158.28449482615957
Iteration: 10, Func. Count: 84, Neg. LLF: 158.28235825982208
Iteration: 11, Func. Count: 92, Neg. LLF: 158.2817874493049
Iteration: 12, Func. Count: 100, Neg. LLF: 158.27874131010876
Iteration: 13, Func. Count: 108, Neg. LLF: 158.2742744916843
Iteration: 14, Func. Count: 116, Neg. LLF: 158.27406360396705
Iteration: 15, Func. Count: 124, Neg. LLF: 158.27398056009233
Iteration: 16, Func. Count: 132, Neg. LLF: 158.27392139671517
Iteration: 17, Func. Count: 140, Neg. LLF: 158.27391225052642
Iteration: 18, Func. Count: 148, Neg. LLF: 158.27390936162334
Iteration: 19, Func. Count: 155, Neg. LLF: 158.2739093629791
Optimization terminated successfully (Exit mode 0)
Current function value: 158.27390936162334
Iterations: 19
Function evaluations: 155
Gradient evaluations: 19
Iteration: 1, Func. Count: 10, Neg. LLF: 174.97423795092368
Iteration: 2, Func. Count: 20, Neg. LLF: 171.16174334787692
Iteration: 3, Func. Count: 30, Neg. LLF: 157.26737286054723
Iteration: 4, Func. Count: 39, Neg. LLF: 157.83872131777247
Iteration: 5, Func. Count: 49, Neg. LLF: 157.22908163781506
Iteration: 6, Func. Count: 58, Neg. LLF: 157.21247487773846
Iteration: 7, Func. Count: 67, Neg. LLF: 157.19964660699753
Iteration: 8, Func. Count: 76, Neg. LLF: 157.1884809632284
Iteration: 9, Func. Count: 85, Neg. LLF: 157.1855912919753
Iteration: 10, Func. Count: 94, Neg. LLF: 157.1853629198969
Iteration: 11, Func. Count: 103, Neg. LLF: 157.18515097523442
Iteration: 12, Func. Count: 112, Neg. LLF: 157.18461048709997
Iteration: 13, Func. Count: 121, Neg. LLF: 157.18412556335295
Iteration: 14, Func. Count: 130, Neg. LLF: 157.18391123353658
Iteration: 15, Func. Count: 139, Neg. LLF: 157.18387668268676
Iteration: 16, Func. Count: 148, Neg. LLF: 157.18387488143932
Iteration: 17, Func. Count: 156, Neg. LLF: 157.1838748814396
Optimization terminated successfully (Exit mode 0)
Current function value: 157.18387488143932
Iterations: 17
Function evaluations: 156
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 191.64810589912247
Iteration: 2, Func. Count: 22, Neg. LLF: 166.26465085235057
Iteration: 3, Func. Count: 33, Neg. LLF: 157.28173341146496
Iteration: 4, Func. Count: 43, Neg. LLF: 158.22890820740696
Iteration: 5, Func. Count: 54, Neg. LLF: 157.26982685410442
Iteration: 6, Func. Count: 65, Neg. LLF: 157.02363854765414
Iteration: 7, Func. Count: 75, Neg. LLF: 156.9319188975899
Iteration: 8, Func. Count: 85, Neg. LLF: 156.87159278741194
Iteration: 9, Func. Count: 95, Neg. LLF: 156.83545533317508
Iteration: 10, Func. Count: 105, Neg. LLF: 156.828594489873
Iteration: 11, Func. Count: 115, Neg. LLF: 156.82777244911375
Iteration: 12, Func. Count: 125, Neg. LLF: 156.82774223033329
Iteration: 13, Func. Count: 135, Neg. LLF: 156.8277386914746
Iteration: 14, Func. Count: 145, Neg. LLF: 156.8277369814186
Iteration: 15, Func. Count: 155, Neg. LLF: 156.8277322850258
Iteration: 16, Func. Count: 165, Neg. LLF: 156.8277281778125
Iteration: 17, Func. Count: 175, Neg. LLF: 156.82772608306763
Iteration: 18, Func. Count: 184, Neg. LLF: 156.82772608307067
Optimization terminated successfully (Exit mode 0)
Current function value: 156.82772608306763
Iterations: 18
Function evaluations: 184
Gradient evaluations: 18
Iteration: 1, Func. Count: 8, Neg. LLF: 160.18705909420547
Iteration: 2, Func. Count: 15, Neg. LLF: 160.12552125765072
Iteration: 3, Func. Count: 23, Neg. LLF: 170.733892676697
Iteration: 4, Func. Count: 31, Neg. LLF: 158.51300828266955
Iteration: 5, Func. Count: 38, Neg. LLF: 158.25485187386772
Iteration: 6, Func. Count: 45, Neg. LLF: 158.6280919943872
Iteration: 7, Func. Count: 54, Neg. LLF: 158.6914542496333
Iteration: 8, Func. Count: 62, Neg. LLF: 158.17941993115562
Iteration: 9, Func. Count: 69, Neg. LLF: 158.17795460030752
Iteration: 10, Func. Count: 76, Neg. LLF: 158.17720461390365
Iteration: 11, Func. Count: 83, Neg. LLF: 158.17544155757676
Iteration: 12, Func. Count: 90, Neg. LLF: 158.17317274771293
Iteration: 13, Func. Count: 97, Neg. LLF: 158.17185304759926
Iteration: 14, Func. Count: 104, Neg. LLF: 158.1715891746112
Iteration: 15, Func. Count: 111, Neg. LLF: 158.17156859707742
Iteration: 16, Func. Count: 118, Neg. LLF: 158.17156751060824
Iteration: 17, Func. Count: 125, Neg. LLF: 158.17156580513867
Iteration: 18, Func. Count: 132, Neg. LLF: 158.1715643926803
Iteration: 19, Func. Count: 138, Neg. LLF: 158.17156449264886
Optimization terminated successfully (Exit mode 0)
Current function value: 158.1715643926803
Iterations: 19
Function evaluations: 138
Gradient evaluations: 19
Iteration: 1, Func. Count: 9, Neg. LLF: 360.39429276695876
Iteration: 2, Func. Count: 19, Neg. LLF: 158.92327678906452
Iteration: 3, Func. Count: 28, Neg. LLF: 158.34691854614755
Iteration: 4, Func. Count: 36, Neg. LLF: 158.3386327452214
Iteration: 5, Func. Count: 44, Neg. LLF: 158.31297586238378
Iteration: 6, Func. Count: 52, Neg. LLF: 158.30916077260662
Iteration: 7, Func. Count: 61, Neg. LLF: 158.28275457339856
Iteration: 8, Func. Count: 70, Neg. LLF: 158.27722208819208
Iteration: 9, Func. Count: 79, Neg. LLF: 158.27392327558934
Iteration: 10, Func. Count: 87, Neg. LLF: 158.27390942847285
Iteration: 11, Func. Count: 94, Neg. LLF: 158.27390942874598
Optimization terminated successfully (Exit mode 0)
Current function value: 158.27390942847285
Iterations: 11
Function evaluations: 94
Gradient evaluations: 11
Iteration: 1, Func. Count: 10, Neg. LLF: 374.27783368153666
Iteration: 2, Func. Count: 21, Neg. LLF: 158.90192279314778
Iteration: 3, Func. Count: 31, Neg. LLF: 158.40018661274857
Iteration: 4, Func. Count: 40, Neg. LLF: 158.38823507796403
Iteration: 5, Func. Count: 50, Neg. LLF: 158.41193336688067
Iteration: 6, Func. Count: 60, Neg. LLF: 158.29752291357352
Iteration: 7, Func. Count: 69, Neg. LLF: 158.2930884807166
Iteration: 8, Func. Count: 78, Neg. LLF: 158.29146844444998
Iteration: 9, Func. Count: 87, Neg. LLF: 158.28916372069222
Iteration: 10, Func. Count: 96, Neg. LLF: 158.2849892819502
Iteration: 11, Func. Count: 105, Neg. LLF: 158.28187356694087
Iteration: 12, Func. Count: 114, Neg. LLF: 158.28043457012984
Iteration: 13, Func. Count: 123, Neg. LLF: 158.27610117699027
Iteration: 14, Func. Count: 132, Neg. LLF: 158.27445471749917
Iteration: 15, Func. Count: 141, Neg. LLF: 158.27394882928698
Iteration: 16, Func. Count: 150, Neg. LLF: 158.27392676630438
Iteration: 17, Func. Count: 159, Neg. LLF: 158.2739102510836
Iteration: 18, Func. Count: 168, Neg. LLF: 158.27390941291296
Optimization terminated successfully (Exit mode 0)
Current function value: 158.27390941291296
Iterations: 18
Function evaluations: 168
Gradient evaluations: 18
Iteration: 1, Func. Count: 11, Neg. LLF: 180.67550021447227
Iteration: 2, Func. Count: 22, Neg. LLF: 170.08691691472194
Iteration: 3, Func. Count: 33, Neg. LLF: 157.27505494690078
Iteration: 4, Func. Count: 43, Neg. LLF: 157.8548662657245
Iteration: 5, Func. Count: 54, Neg. LLF: 157.24133352998308
Iteration: 6, Func. Count: 64, Neg. LLF: 157.21069273244888
Iteration: 7, Func. Count: 74, Neg. LLF: 157.19155842154868
Iteration: 8, Func. Count: 84, Neg. LLF: 157.18693662589115
Iteration: 9, Func. Count: 94, Neg. LLF: 157.18595333567512
Iteration: 10, Func. Count: 104, Neg. LLF: 157.18573172118576
Iteration: 11, Func. Count: 114, Neg. LLF: 157.18509493208222
Iteration: 12, Func. Count: 124, Neg. LLF: 157.18445381183722
Iteration: 13, Func. Count: 134, Neg. LLF: 157.18400885826838
Iteration: 14, Func. Count: 144, Neg. LLF: 157.18388765959543
Iteration: 15, Func. Count: 154, Neg. LLF: 157.18387521901002
Iteration: 16, Func. Count: 163, Neg. LLF: 157.18387521902994
Optimization terminated successfully (Exit mode 0)
Current function value: 157.18387521901002
Iterations: 16
Function evaluations: 163
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 191.61503799173923
Iteration: 2, Func. Count: 24, Neg. LLF: 167.01079079187193
Iteration: 3, Func. Count: 36, Neg. LLF: 157.28317645293524
Iteration: 4, Func. Count: 47, Neg. LLF: 158.24548012634128
Iteration: 5, Func. Count: 59, Neg. LLF: 157.2925916930417
Iteration: 6, Func. Count: 71, Neg. LLF: 157.0360768231061
Iteration: 7, Func. Count: 82, Neg. LLF: 156.96624468313962
Iteration: 8, Func. Count: 93, Neg. LLF: 156.88051137284992
Iteration: 9, Func. Count: 104, Neg. LLF: 156.8496606410185
Iteration: 10, Func. Count: 115, Neg. LLF: 156.82899838145994
Iteration: 11, Func. Count: 126, Neg. LLF: 156.82784648558263
Iteration: 12, Func. Count: 137, Neg. LLF: 156.8277519263362
Iteration: 13, Func. Count: 148, Neg. LLF: 156.8277472439732
Iteration: 14, Func. Count: 159, Neg. LLF: 156.8277435924324
Iteration: 15, Func. Count: 170, Neg. LLF: 156.82773891662185
Iteration: 16, Func. Count: 181, Neg. LLF: 156.82773158113
Iteration: 17, Func. Count: 192, Neg. LLF: 156.82772707524785
Iteration: 18, Func. Count: 203, Neg. LLF: 156.8277258593672
Iteration: 19, Func. Count: 213, Neg. LLF: 156.82772585939279
Optimization terminated successfully (Exit mode 0)
Current function value: 156.8277258593672
Iterations: 19
Function evaluations: 213
Gradient evaluations: 19
Iteration: 1, Func. Count: 5, Neg. LLF: 161.4626938196842
Iteration: 2, Func. Count: 9, Neg. LLF: 161.31184385586127
Iteration: 3, Func. Count: 13, Neg. LLF: 160.7419334730461
Iteration: 4, Func. Count: 17, Neg. LLF: 160.68340823001856
Iteration: 5, Func. Count: 21, Neg. LLF: 160.5757215384467
Iteration: 6, Func. Count: 25, Neg. LLF: 160.5337474654955
Iteration: 7, Func. Count: 29, Neg. LLF: 160.37930279418978
Iteration: 8, Func. Count: 33, Neg. LLF: 160.23414070120214
Iteration: 9, Func. Count: 37, Neg. LLF: 160.21307877539877
Iteration: 10, Func. Count: 41, Neg. LLF: 160.21072493965653
Iteration: 11, Func. Count: 45, Neg. LLF: 160.210677952666
Iteration: 12, Func. Count: 48, Neg. LLF: 160.21067795266168
Optimization terminated successfully (Exit mode 0)
Current function value: 160.210677952666
Iterations: 12
Function evaluations: 48
Gradient evaluations: 12
Iteration: 1, Func. Count: 6, Neg. LLF: 528.0881031198539
Iteration: 2, Func. Count: 13, Neg. LLF: 158.52164962355883
Iteration: 3, Func. Count: 18, Neg. LLF: 159.3392548404499
Iteration: 4, Func. Count: 24, Neg. LLF: 158.53336411145136
Iteration: 5, Func. Count: 30, Neg. LLF: 158.2967664225454
Iteration: 6, Func. Count: 35, Neg. LLF: 158.2987286440714
Iteration: 7, Func. Count: 41, Neg. LLF: 158.2923731511523
Iteration: 8, Func. Count: 46, Neg. LLF: 158.29199892187629
Iteration: 9, Func. Count: 50, Neg. LLF: 158.29199892137564
Optimization terminated successfully (Exit mode 0)
Current function value: 158.29199892187629
Iterations: 9
Function evaluations: 50
Gradient evaluations: 9
Iteration: 1, Func. Count: 7, Neg. LLF: 420.8520611246504
Iteration: 2, Func. Count: 15, Neg. LLF: 158.56525391749582
Iteration: 3, Func. Count: 21, Neg. LLF: 158.43882600574779
Iteration: 4, Func. Count: 27, Neg. LLF: 158.4092142142768
Iteration: 5, Func. Count: 33, Neg. LLF: 158.38202519878323
Iteration: 6, Func. Count: 39, Neg. LLF: 158.366136822064
Iteration: 7, Func. Count: 45, Neg. LLF: 158.33340719466455
Iteration: 8, Func. Count: 51, Neg. LLF: 158.29222451753984
Iteration: 9, Func. Count: 57, Neg. LLF: 158.2921058017167
Iteration: 10, Func. Count: 63, Neg. LLF: 158.2920803506848
Iteration: 11, Func. Count: 70, Neg. LLF: 158.29200197860038
Iteration: 12, Func. Count: 76, Neg. LLF: 158.2919986116915
Iteration: 13, Func. Count: 81, Neg. LLF: 158.29199861383483
Optimization terminated successfully (Exit mode 0)
Current function value: 158.2919986116915
Iterations: 13
Function evaluations: 81
Gradient evaluations: 13
Iteration: 1, Func. Count: 8, Neg. LLF: 191.7270668025771
Iteration: 2, Func. Count: 16, Neg. LLF: 159.19806655383246
Iteration: 3, Func. Count: 23, Neg. LLF: 159.530031638115
Iteration: 4, Func. Count: 31, Neg. LLF: 159.15004597920046
Iteration: 5, Func. Count: 38, Neg. LLF: 159.0962220893225
Iteration: 6, Func. Count: 45, Neg. LLF: 158.72341688294324
Iteration: 7, Func. Count: 52, Neg. LLF: 161.52338171844428
Iteration: 8, Func. Count: 60, Neg. LLF: 158.8757747650275
Iteration: 9, Func. Count: 68, Neg. LLF: 158.45076767121293
Iteration: 10, Func. Count: 75, Neg. LLF: 158.79792955156753
Iteration: 11, Func. Count: 83, Neg. LLF: 158.38830585493616
Iteration: 12, Func. Count: 90, Neg. LLF: 158.3619736772945
Iteration: 13, Func. Count: 97, Neg. LLF: 158.35234620216175
Iteration: 14, Func. Count: 104, Neg. LLF: 158.34446931216323
Iteration: 15, Func. Count: 111, Neg. LLF: 158.32220145779763
Iteration: 16, Func. Count: 118, Neg. LLF: 158.29844857762464
Iteration: 17, Func. Count: 125, Neg. LLF: 158.2953640190764
Iteration: 18, Func. Count: 132, Neg. LLF: 158.2921236126001
Iteration: 19, Func. Count: 139, Neg. LLF: 158.29200811608547
Iteration: 20, Func. Count: 146, Neg. LLF: 158.29199912562171
Iteration: 21, Func. Count: 153, Neg. LLF: 158.291998609175
Optimization terminated successfully (Exit mode 0)
Current function value: 158.291998609175
Iterations: 21
Function evaluations: 153
Gradient evaluations: 21
Iteration: 1, Func. Count: 9, Neg. LLF: 191.89577173139878
Iteration: 2, Func. Count: 18, Neg. LLF: 158.99483140664245
Iteration: 3, Func. Count: 26, Neg. LLF: 158.9565413697227
Iteration: 4, Func. Count: 34, Neg. LLF: 158.90215175661882
Iteration: 5, Func. Count: 42, Neg. LLF: 158.58119246770843
Iteration: 6, Func. Count: 50, Neg. LLF: 160.87598635353646
Iteration: 7, Func. Count: 59, Neg. LLF: 158.77019399288284
Iteration: 8, Func. Count: 68, Neg. LLF: 158.51292690782867
Iteration: 9, Func. Count: 77, Neg. LLF: 158.43097227870626
Iteration: 10, Func. Count: 85, Neg. LLF: 158.41192220445677
Iteration: 11, Func. Count: 93, Neg. LLF: 158.37377059897767
Iteration: 12, Func. Count: 101, Neg. LLF: 158.3469061280731
Iteration: 13, Func. Count: 109, Neg. LLF: 158.30205966723045
Iteration: 14, Func. Count: 117, Neg. LLF: 158.3686819708274
Iteration: 15, Func. Count: 126, Neg. LLF: 158.2920976488988
Iteration: 16, Func. Count: 134, Neg. LLF: 158.29201158436396
Iteration: 17, Func. Count: 142, Neg. LLF: 158.29199861122953
Iteration: 18, Func. Count: 149, Neg. LLF: 158.29199862050058
Optimization terminated successfully (Exit mode 0)
Current function value: 158.29199861122953
Iterations: 18
Function evaluations: 149
Gradient evaluations: 18
Iteration: 1, Func. Count: 6, Neg. LLF: 160.4847829164881
Iteration: 2, Func. Count: 12, Neg. LLF: 161.52298545387396
Iteration: 3, Func. Count: 18, Neg. LLF: 161.82126476733384
Iteration: 4, Func. Count: 24, Neg. LLF: 159.34244256783708
Iteration: 5, Func. Count: 29, Neg. LLF: 159.29480155585722
Iteration: 6, Func. Count: 34, Neg. LLF: 159.2671457748449
Iteration: 7, Func. Count: 39, Neg. LLF: 159.24270630433944
Iteration: 8, Func. Count: 44, Neg. LLF: 159.23427163287568
Iteration: 9, Func. Count: 49, Neg. LLF: 159.2241736695516
Iteration: 10, Func. Count: 54, Neg. LLF: 159.20976907808895
Iteration: 11, Func. Count: 59, Neg. LLF: 159.19333547459885
Iteration: 12, Func. Count: 64, Neg. LLF: 159.1864077167931
Iteration: 13, Func. Count: 69, Neg. LLF: 159.18570364600203
Iteration: 14, Func. Count: 74, Neg. LLF: 159.18560773883715
Iteration: 15, Func. Count: 79, Neg. LLF: 159.18560704730658
Optimization terminated successfully (Exit mode 0)
Current function value: 159.18560704730658
Iterations: 15
Function evaluations: 79
Gradient evaluations: 15
Iteration: 1, Func. Count: 7, Neg. LLF: 349.695932439771
Iteration: 2, Func. Count: 15, Neg. LLF: 158.81344718809646
Iteration: 3, Func. Count: 22, Neg. LLF: 158.54956014653226
Iteration: 4, Func. Count: 28, Neg. LLF: 158.46875340692807
Iteration: 5, Func. Count: 34, Neg. LLF: 158.44871875554855
Iteration: 6, Func. Count: 40, Neg. LLF: 158.3915183588807
Iteration: 7, Func. Count: 46, Neg. LLF: 158.30261867933876
Iteration: 8, Func. Count: 52, Neg. LLF: 158.2962148074701
Iteration: 9, Func. Count: 58, Neg. LLF: 158.29244606238242
Iteration: 10, Func. Count: 64, Neg. LLF: 158.29460099628994
Iteration: 11, Func. Count: 71, Neg. LLF: 158.29199875795334
Iteration: 12, Func. Count: 76, Neg. LLF: 158.29199875831378
Optimization terminated successfully (Exit mode 0)
Current function value: 158.29199875795334
Iterations: 12
Function evaluations: 76
Gradient evaluations: 12
Iteration: 1, Func. Count: 8, Neg. LLF: 366.4978607486596
Iteration: 2, Func. Count: 17, Neg. LLF: 158.78739573432435
Iteration: 3, Func. Count: 25, Neg. LLF: 158.4083544416749
Iteration: 4, Func. Count: 32, Neg. LLF: 158.36493604618454
Iteration: 5, Func. Count: 39, Neg. LLF: 158.3633207222811
Iteration: 6, Func. Count: 46, Neg. LLF: 158.3611977868546
Iteration: 7, Func. Count: 53, Neg. LLF: 158.35942196136259
Iteration: 8, Func. Count: 60, Neg. LLF: 158.3567590360067
Iteration: 9, Func. Count: 67, Neg. LLF: 158.35207281579147
Iteration: 10, Func. Count: 74, Neg. LLF: 158.35004954013078
Iteration: 11, Func. Count: 81, Neg. LLF: 158.346026702292
Iteration: 12, Func. Count: 88, Neg. LLF: 158.33028312997988
Iteration: 13, Func. Count: 95, Neg. LLF: 158.31578482748975
Iteration: 14, Func. Count: 102, Neg. LLF: 158.29322530096684
Iteration: 15, Func. Count: 109, Neg. LLF: 158.29502833653046
Iteration: 16, Func. Count: 117, Neg. LLF: 158.29200032400965
Iteration: 17, Func. Count: 124, Neg. LLF: 158.29199862333664
Iteration: 18, Func. Count: 130, Neg. LLF: 158.29199862556888
Optimization terminated successfully (Exit mode 0)
Current function value: 158.29199862333664
Iterations: 18
Function evaluations: 130
Gradient evaluations: 18
Iteration: 1, Func. Count: 9, Neg. LLF: 373.7474942755307
Iteration: 2, Func. Count: 19, Neg. LLF: 159.06326249708275
Iteration: 3, Func. Count: 28, Neg. LLF: 158.91967550980286
Iteration: 4, Func. Count: 37, Neg. LLF: 158.34970049352518
Iteration: 5, Func. Count: 45, Neg. LLF: 158.31423998367498
Iteration: 6, Func. Count: 53, Neg. LLF: 158.30752705602688
Iteration: 7, Func. Count: 61, Neg. LLF: 158.29802285222866
Iteration: 8, Func. Count: 69, Neg. LLF: 158.29292471140994
Iteration: 9, Func. Count: 77, Neg. LLF: 158.286949666223
Iteration: 10, Func. Count: 85, Neg. LLF: 158.2852295227
Iteration: 11, Func. Count: 93, Neg. LLF: 158.28510505159753
Iteration: 12, Func. Count: 101, Neg. LLF: 158.2850981351229
Iteration: 13, Func. Count: 109, Neg. LLF: 158.28509700909217
Iteration: 14, Func. Count: 116, Neg. LLF: 158.28509700906767
Optimization terminated successfully (Exit mode 0)
Current function value: 158.28509700909217
Iterations: 14
Function evaluations: 116
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 191.34152133028516
Iteration: 2, Func. Count: 20, Neg. LLF: 158.56028736612964
Iteration: 3, Func. Count: 29, Neg. LLF: 158.3680821736578
Iteration: 4, Func. Count: 38, Neg. LLF: 161.23796696874058
Iteration: 5, Func. Count: 48, Neg. LLF: 159.94207320539505
Iteration: 6, Func. Count: 58, Neg. LLF: 158.2665245925545
Iteration: 7, Func. Count: 68, Neg. LLF: 158.13776325113722
Iteration: 8, Func. Count: 77, Neg. LLF: 158.11613933349835
Iteration: 9, Func. Count: 86, Neg. LLF: 158.11193997581182
Iteration: 10, Func. Count: 95, Neg. LLF: 158.10865924706195
Iteration: 11, Func. Count: 104, Neg. LLF: 158.10563836329706
Iteration: 12, Func. Count: 113, Neg. LLF: 158.10209769423275
Iteration: 13, Func. Count: 122, Neg. LLF: 158.09943465158238
Iteration: 14, Func. Count: 131, Neg. LLF: 158.09650425394392
Iteration: 15, Func. Count: 140, Neg. LLF: 158.09426194058625
Iteration: 16, Func. Count: 149, Neg. LLF: 158.09360737808615
Iteration: 17, Func. Count: 158, Neg. LLF: 158.09352402188298
Iteration: 18, Func. Count: 167, Neg. LLF: 158.09351805050278
Iteration: 19, Func. Count: 175, Neg. LLF: 158.0935180963229
Optimization terminated successfully (Exit mode 0)
Current function value: 158.09351805050278
Iterations: 19
Function evaluations: 175
Gradient evaluations: 19
Iteration: 1, Func. Count: 7, Neg. LLF: 161.9712848861882
Iteration: 2, Func. Count: 14, Neg. LLF: 161.5318870677804
Iteration: 3, Func. Count: 21, Neg. LLF: 161.50619740595997
Iteration: 4, Func. Count: 28, Neg. LLF: 159.3837511023813
Iteration: 5, Func. Count: 34, Neg. LLF: 159.31993813621222
Iteration: 6, Func. Count: 40, Neg. LLF: 159.28007310725516
Iteration: 7, Func. Count: 46, Neg. LLF: 159.23692965932537
Iteration: 8, Func. Count: 52, Neg. LLF: 159.2298704337323
Iteration: 9, Func. Count: 58, Neg. LLF: 159.22239742149063
Iteration: 10, Func. Count: 64, Neg. LLF: 159.21321933760245
Iteration: 11, Func. Count: 70, Neg. LLF: 159.19864110488808
Iteration: 12, Func. Count: 76, Neg. LLF: 159.18786654762093
Iteration: 13, Func. Count: 82, Neg. LLF: 159.1858315054574
Iteration: 14, Func. Count: 88, Neg. LLF: 159.18562617460736
Iteration: 15, Func. Count: 94, Neg. LLF: 159.18560703436526
Iteration: 16, Func. Count: 99, Neg. LLF: 159.18560704413935
Optimization terminated successfully (Exit mode 0)
Current function value: 159.18560703436526
Iterations: 16
Function evaluations: 99
Gradient evaluations: 16
Iteration: 1, Func. Count: 8, Neg. LLF: 349.712749149284
Iteration: 2, Func. Count: 17, Neg. LLF: 158.87415936518354
Iteration: 3, Func. Count: 25, Neg. LLF: 158.59216322208798
Iteration: 4, Func. Count: 33, Neg. LLF: 158.46604158716517
Iteration: 5, Func. Count: 40, Neg. LLF: 158.41776445022683
Iteration: 6, Func. Count: 47, Neg. LLF: 158.57699079780525
Iteration: 7, Func. Count: 55, Neg. LLF: 158.41988581940612
Iteration: 8, Func. Count: 63, Neg. LLF: 158.30667989627418
Iteration: 9, Func. Count: 70, Neg. LLF: 158.29383394660064
Iteration: 10, Func. Count: 77, Neg. LLF: 158.29270520025375
Iteration: 11, Func. Count: 84, Neg. LLF: 158.2920132896705
Iteration: 12, Func. Count: 91, Neg. LLF: 158.29199971295225
Iteration: 13, Func. Count: 98, Neg. LLF: 158.29199860956888
Iteration: 14, Func. Count: 104, Neg. LLF: 158.29199860957885
Optimization terminated successfully (Exit mode 0)
Current function value: 158.29199860956888
Iterations: 14
Function evaluations: 104
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 362.4929042734037
Iteration: 2, Func. Count: 19, Neg. LLF: 158.7843173834809
Iteration: 3, Func. Count: 28, Neg. LLF: 158.36520946837268
Iteration: 4, Func. Count: 36, Neg. LLF: 158.36360851379456
Iteration: 5, Func. Count: 44, Neg. LLF: 158.36164710021777
Iteration: 6, Func. Count: 52, Neg. LLF: 158.36813342339863
Iteration: 7, Func. Count: 61, Neg. LLF: 158.35791301098874
Iteration: 8, Func. Count: 69, Neg. LLF: 158.35061231874258
Iteration: 9, Func. Count: 77, Neg. LLF: 158.34789347960742
Iteration: 10, Func. Count: 85, Neg. LLF: 158.34357881751825
Iteration: 11, Func. Count: 93, Neg. LLF: 158.33745441589116
Iteration: 12, Func. Count: 101, Neg. LLF: 158.32194696882152
Iteration: 13, Func. Count: 109, Neg. LLF: 158.30568380270557
Iteration: 14, Func. Count: 117, Neg. LLF: 158.29404256353627
Iteration: 15, Func. Count: 125, Neg. LLF: 158.29506743383888
Iteration: 16, Func. Count: 134, Neg. LLF: 158.29200324959515
Iteration: 17, Func. Count: 142, Neg. LLF: 158.29199877927277
Iteration: 18, Func. Count: 149, Neg. LLF: 158.2919987810124
Optimization terminated successfully (Exit mode 0)
Current function value: 158.29199877927277
Iterations: 18
Function evaluations: 149
Gradient evaluations: 18
Iteration: 1, Func. Count: 10, Neg. LLF: 369.088097247898
Iteration: 2, Func. Count: 21, Neg. LLF: 159.07319025372632
Iteration: 3, Func. Count: 31, Neg. LLF: 158.3794323443489
Iteration: 4, Func. Count: 40, Neg. LLF: 158.37168074966843
Iteration: 5, Func. Count: 49, Neg. LLF: 158.45141630918653
Iteration: 6, Func. Count: 59, Neg. LLF: 158.35997035819634
Iteration: 7, Func. Count: 68, Neg. LLF: 158.34590879839413
Iteration: 8, Func. Count: 77, Neg. LLF: 158.33108438160082
Iteration: 9, Func. Count: 86, Neg. LLF: 158.32356545568365
Iteration: 10, Func. Count: 95, Neg. LLF: 158.30523811828806
Iteration: 11, Func. Count: 104, Neg. LLF: 158.28983130170104
Iteration: 12, Func. Count: 113, Neg. LLF: 158.28798953242074
Iteration: 13, Func. Count: 122, Neg. LLF: 158.28679127469954
Iteration: 14, Func. Count: 131, Neg. LLF: 158.28561772813669
Iteration: 15, Func. Count: 140, Neg. LLF: 158.28546926182125
Iteration: 16, Func. Count: 149, Neg. LLF: 158.2851466980497
Iteration: 17, Func. Count: 158, Neg. LLF: 158.28510549683804
Iteration: 18, Func. Count: 167, Neg. LLF: 158.28509707170556
Iteration: 19, Func. Count: 175, Neg. LLF: 158.28509707161356
Optimization terminated successfully (Exit mode 0)
Current function value: 158.28509707170556
Iterations: 19
Function evaluations: 175
Gradient evaluations: 19
Iteration: 1, Func. Count: 11, Neg. LLF: 191.28326439193725
Iteration: 2, Func. Count: 22, Neg. LLF: 159.4943888503324
Iteration: 3, Func. Count: 33, Neg. LLF: 158.73154853313838
Iteration: 4, Func. Count: 43, Neg. LLF: 159.21243488177365
Iteration: 5, Func. Count: 55, Neg. LLF: 158.5704312114419
Iteration: 6, Func. Count: 65, Neg. LLF: 158.56165938871843
Iteration: 7, Func. Count: 75, Neg. LLF: 158.53768442731186
Iteration: 8, Func. Count: 85, Neg. LLF: 158.4245115978211
Iteration: 9, Func. Count: 95, Neg. LLF: 158.67486616713876
Iteration: 10, Func. Count: 106, Neg. LLF: 158.30577636800518
Iteration: 11, Func. Count: 116, Neg. LLF: 158.29739352140513
Iteration: 12, Func. Count: 126, Neg. LLF: 158.33104197999504
Iteration: 13, Func. Count: 137, Neg. LLF: 158.2796920498127
Iteration: 14, Func. Count: 147, Neg. LLF: 158.2788243340889
Iteration: 15, Func. Count: 157, Neg. LLF: 158.27739675908344
Iteration: 16, Func. Count: 167, Neg. LLF: 158.27598746008448
Iteration: 17, Func. Count: 177, Neg. LLF: 158.2757223231711
Iteration: 18, Func. Count: 187, Neg. LLF: 158.27566818196289
Iteration: 19, Func. Count: 196, Neg. LLF: 158.2756681819907
Optimization terminated successfully (Exit mode 0)
Current function value: 158.27566818196289
Iterations: 19
Function evaluations: 196
Gradient evaluations: 19
Iteration: 1, Func. Count: 8, Neg. LLF: 159.9441037587622
Iteration: 2, Func. Count: 16, Neg. LLF: 159.1374658386837
Iteration: 3, Func. Count: 24, Neg. LLF: 158.51484231908648
Iteration: 4, Func. Count: 32, Neg. LLF: 159.2890457214227
Iteration: 5, Func. Count: 40, Neg. LLF: 157.6431694726483
Iteration: 6, Func. Count: 47, Neg. LLF: 157.60561916247283
Iteration: 7, Func. Count: 54, Neg. LLF: 157.5524619039107
Iteration: 8, Func. Count: 61, Neg. LLF: 157.42739084525516
Iteration: 9, Func. Count: 68, Neg. LLF: 157.30566429467146
Iteration: 10, Func. Count: 75, Neg. LLF: 157.23149426922242
Iteration: 11, Func. Count: 82, Neg. LLF: 157.21400932586295
Iteration: 12, Func. Count: 89, Neg. LLF: 157.2112865462911
Iteration: 13, Func. Count: 96, Neg. LLF: 157.21110882828387
Iteration: 14, Func. Count: 103, Neg. LLF: 157.21104479944995
Iteration: 15, Func. Count: 110, Neg. LLF: 157.21104276282094
Iteration: 16, Func. Count: 116, Neg. LLF: 157.21104275868257
Optimization terminated successfully (Exit mode 0)
Current function value: 157.21104276282094
Iterations: 16
Function evaluations: 116
Gradient evaluations: 16
Iteration: 1, Func. Count: 9, Neg. LLF: 353.10895319946803
Iteration: 2, Func. Count: 19, Neg. LLF: 158.96048260581856
Iteration: 3, Func. Count: 28, Neg. LLF: 158.3474400058651
Iteration: 4, Func. Count: 36, Neg. LLF: 158.35365968374467
Iteration: 5, Func. Count: 45, Neg. LLF: 158.3276265448715
Iteration: 6, Func. Count: 53, Neg. LLF: 158.33119659929147
Iteration: 7, Func. Count: 62, Neg. LLF: 158.28053599415097
Iteration: 8, Func. Count: 70, Neg. LLF: 158.27656645696354
Iteration: 9, Func. Count: 78, Neg. LLF: 158.2739988076059
Iteration: 10, Func. Count: 86, Neg. LLF: 158.2739172200768
Iteration: 11, Func. Count: 94, Neg. LLF: 158.27391378931804
Iteration: 12, Func. Count: 102, Neg. LLF: 158.27390940769286
Iteration: 13, Func. Count: 109, Neg. LLF: 158.27390940770465
Optimization terminated successfully (Exit mode 0)
Current function value: 158.27390940769286
Iterations: 13
Function evaluations: 109
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 366.1198947143233
Iteration: 2, Func. Count: 21, Neg. LLF: 158.9453943606305
Iteration: 3, Func. Count: 31, Neg. LLF: 158.4275305147333
Iteration: 4, Func. Count: 40, Neg. LLF: 158.30742027271654
Iteration: 5, Func. Count: 49, Neg. LLF: 158.29465528659824
Iteration: 6, Func. Count: 58, Neg. LLF: 158.29346857520312
Iteration: 7, Func. Count: 67, Neg. LLF: 158.2891385090521
Iteration: 8, Func. Count: 76, Neg. LLF: 158.28578860206883
Iteration: 9, Func. Count: 85, Neg. LLF: 158.2833739433748
Iteration: 10, Func. Count: 94, Neg. LLF: 158.28229874657006
Iteration: 11, Func. Count: 103, Neg. LLF: 158.28080996627597
Iteration: 12, Func. Count: 112, Neg. LLF: 158.27514642816234
Iteration: 13, Func. Count: 121, Neg. LLF: 158.2745825226144
Iteration: 14, Func. Count: 130, Neg. LLF: 158.2743304203534
Iteration: 15, Func. Count: 139, Neg. LLF: 158.2740748241482
Iteration: 16, Func. Count: 148, Neg. LLF: 158.2739188366695
Iteration: 17, Func. Count: 157, Neg. LLF: 158.27390947625017
Iteration: 18, Func. Count: 165, Neg. LLF: 158.27390947748773
Optimization terminated successfully (Exit mode 0)
Current function value: 158.27390947625017
Iterations: 18
Function evaluations: 165
Gradient evaluations: 18
Iteration: 1, Func. Count: 11, Neg. LLF: 171.93962601050242
Iteration: 2, Func. Count: 22, Neg. LLF: 170.08776761419907
Iteration: 3, Func. Count: 33, Neg. LLF: 157.2648568451583
Iteration: 4, Func. Count: 43, Neg. LLF: 157.70805634065294
Iteration: 5, Func. Count: 54, Neg. LLF: 157.2531585603557
Iteration: 6, Func. Count: 65, Neg. LLF: 158.83109984634743
Iteration: 7, Func. Count: 76, Neg. LLF: 157.1476467012856
Iteration: 8, Func. Count: 86, Neg. LLF: 157.11115393606488
Iteration: 9, Func. Count: 96, Neg. LLF: 157.0716116794871
Iteration: 10, Func. Count: 106, Neg. LLF: 157.0409507712474
Iteration: 11, Func. Count: 116, Neg. LLF: 157.03683073033642
Iteration: 12, Func. Count: 126, Neg. LLF: 157.03343645399676
Iteration: 13, Func. Count: 136, Neg. LLF: 157.0325362683121
Iteration: 14, Func. Count: 146, Neg. LLF: 157.030865045176
Iteration: 15, Func. Count: 156, Neg. LLF: 157.02940178673518
Iteration: 16, Func. Count: 166, Neg. LLF: 157.02787233126767
Iteration: 17, Func. Count: 176, Neg. LLF: 157.02678386125987
Iteration: 18, Func. Count: 186, Neg. LLF: 157.0264030593596
Iteration: 19, Func. Count: 196, Neg. LLF: 157.02636412465097
Iteration: 20, Func. Count: 206, Neg. LLF: 157.0263619745375
Iteration: 21, Func. Count: 215, Neg. LLF: 157.02636197454353
Optimization terminated successfully (Exit mode 0)
Current function value: 157.0263619745375
Iterations: 21
Function evaluations: 215
Gradient evaluations: 21
Iteration: 1, Func. Count: 12, Neg. LLF: 191.49739856528973
Iteration: 2, Func. Count: 24, Neg. LLF: 165.96106906423537
Iteration: 3, Func. Count: 36, Neg. LLF: 157.28466875994076
Iteration: 4, Func. Count: 47, Neg. LLF: 158.50527724117052
Iteration: 5, Func. Count: 59, Neg. LLF: 157.2813742934921
Iteration: 6, Func. Count: 71, Neg. LLF: 157.0188199320827
Iteration: 7, Func. Count: 82, Neg. LLF: 156.92584639190991
Iteration: 8, Func. Count: 93, Neg. LLF: 156.86863229845255
Iteration: 9, Func. Count: 104, Neg. LLF: 156.8329259254907
Iteration: 10, Func. Count: 115, Neg. LLF: 156.82852317140447
Iteration: 11, Func. Count: 126, Neg. LLF: 156.8279075543362
Iteration: 12, Func. Count: 137, Neg. LLF: 156.82786755777738
Iteration: 13, Func. Count: 148, Neg. LLF: 156.82784606755172
Iteration: 14, Func. Count: 159, Neg. LLF: 156.82781373700328
Iteration: 15, Func. Count: 170, Neg. LLF: 156.82776744706442
Iteration: 16, Func. Count: 181, Neg. LLF: 156.82773563496568
Iteration: 17, Func. Count: 192, Neg. LLF: 156.82772655435906
Iteration: 18, Func. Count: 203, Neg. LLF: 156.82772578517944
Optimization terminated successfully (Exit mode 0)
Current function value: 156.82772578517944
Iterations: 18
Function evaluations: 203
Gradient evaluations: 18
Iteration: 1, Func. Count: 9, Neg. LLF: 159.90342241304697
Iteration: 2, Func. Count: 18, Neg. LLF: 159.15133793232707
Iteration: 3, Func. Count: 27, Neg. LLF: 158.22712906577138
Iteration: 4, Func. Count: 36, Neg. LLF: 159.80928604479024
Iteration: 5, Func. Count: 45, Neg. LLF: 157.65251114586445
Iteration: 6, Func. Count: 53, Neg. LLF: 157.60612038725824
Iteration: 7, Func. Count: 61, Neg. LLF: 157.56378226251041
Iteration: 8, Func. Count: 69, Neg. LLF: 157.4737590505867
Iteration: 9, Func. Count: 77, Neg. LLF: 157.4089565240945
Iteration: 10, Func. Count: 85, Neg. LLF: 157.24412469574366
Iteration: 11, Func. Count: 93, Neg. LLF: 157.21731529945578
Iteration: 12, Func. Count: 101, Neg. LLF: 157.21160696599773
Iteration: 13, Func. Count: 109, Neg. LLF: 157.21112076915108
Iteration: 14, Func. Count: 117, Neg. LLF: 157.2110454722726
Iteration: 15, Func. Count: 125, Neg. LLF: 157.21104284467026
Iteration: 16, Func. Count: 132, Neg. LLF: 157.21104297844613
Optimization terminated successfully (Exit mode 0)
Current function value: 157.21104284467026
Iterations: 16
Function evaluations: 132
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 406.0839641970893
Iteration: 2, Func. Count: 21, Neg. LLF: 158.75993137045526
Iteration: 3, Func. Count: 31, Neg. LLF: 160.53678951569472
Iteration: 4, Func. Count: 41, Neg. LLF: 158.33084576377738
Iteration: 5, Func. Count: 50, Neg. LLF: 158.31408816127592
Iteration: 6, Func. Count: 59, Neg. LLF: 158.2780738718506
Iteration: 7, Func. Count: 68, Neg. LLF: 158.27539121532666
Iteration: 8, Func. Count: 77, Neg. LLF: 158.27393591392405
Iteration: 9, Func. Count: 86, Neg. LLF: 158.2739273957466
Iteration: 10, Func. Count: 96, Neg. LLF: 158.27390954425312
Iteration: 11, Func. Count: 104, Neg. LLF: 158.2739095445364
Optimization terminated successfully (Exit mode 0)
Current function value: 158.27390954425312
Iterations: 11
Function evaluations: 104
Gradient evaluations: 11
Iteration: 1, Func. Count: 11, Neg. LLF: 365.8131238328151
Iteration: 2, Func. Count: 23, Neg. LLF: 158.89922293109703
Iteration: 3, Func. Count: 34, Neg. LLF: 158.71058895364598
Iteration: 4, Func. Count: 45, Neg. LLF: 158.35729544873598
Iteration: 5, Func. Count: 55, Neg. LLF: 158.29851283110858
Iteration: 6, Func. Count: 65, Neg. LLF: 158.2957928971525
Iteration: 7, Func. Count: 75, Neg. LLF: 158.2930011617335
Iteration: 8, Func. Count: 85, Neg. LLF: 158.2915998580896
Iteration: 9, Func. Count: 95, Neg. LLF: 158.28790845555943
Iteration: 10, Func. Count: 105, Neg. LLF: 158.28398975623884
Iteration: 11, Func. Count: 115, Neg. LLF: 158.28258575142746
Iteration: 12, Func. Count: 125, Neg. LLF: 158.281774031784
Iteration: 13, Func. Count: 135, Neg. LLF: 158.27476315708535
Iteration: 14, Func. Count: 145, Neg. LLF: 158.27423294017376
Iteration: 15, Func. Count: 155, Neg. LLF: 158.27392129370097
Iteration: 16, Func. Count: 165, Neg. LLF: 158.2739097565629
Iteration: 17, Func. Count: 174, Neg. LLF: 158.2739097572731
Optimization terminated successfully (Exit mode 0)
Current function value: 158.2739097565629
Iterations: 17
Function evaluations: 174
Gradient evaluations: 17
Iteration: 1, Func. Count: 12, Neg. LLF: 174.99320500389314
Iteration: 2, Func. Count: 24, Neg. LLF: 170.80515131284827
Iteration: 3, Func. Count: 36, Neg. LLF: 157.2677521139913
Iteration: 4, Func. Count: 47, Neg. LLF: 157.71522933519165
Iteration: 5, Func. Count: 59, Neg. LLF: 157.21839286450282
Iteration: 6, Func. Count: 70, Neg. LLF: 160.16433119311696
Iteration: 7, Func. Count: 82, Neg. LLF: 157.1515979428076
Iteration: 8, Func. Count: 93, Neg. LLF: 157.11190028388023
Iteration: 9, Func. Count: 104, Neg. LLF: 157.05147885186298
Iteration: 10, Func. Count: 115, Neg. LLF: 157.04741271179068
Iteration: 11, Func. Count: 126, Neg. LLF: 157.03831341950834
Iteration: 12, Func. Count: 137, Neg. LLF: 157.03713738122917
Iteration: 13, Func. Count: 148, Neg. LLF: 157.03272263594658
Iteration: 14, Func. Count: 159, Neg. LLF: 157.02881138982266
Iteration: 15, Func. Count: 170, Neg. LLF: 157.02664454163803
Iteration: 16, Func. Count: 181, Neg. LLF: 157.02639320468666
Iteration: 17, Func. Count: 192, Neg. LLF: 157.0263677998659
Iteration: 18, Func. Count: 203, Neg. LLF: 157.02636301851786
Iteration: 19, Func. Count: 214, Neg. LLF: 157.02636204292415
Optimization terminated successfully (Exit mode 0)
Current function value: 157.02636204292415
Iterations: 19
Function evaluations: 214
Gradient evaluations: 19
Iteration: 1, Func. Count: 13, Neg. LLF: 191.46250546342796
Iteration: 2, Func. Count: 26, Neg. LLF: 166.65050383764304
Iteration: 3, Func. Count: 39, Neg. LLF: 157.2855098839184
Iteration: 4, Func. Count: 51, Neg. LLF: 158.5029960495637
Iteration: 5, Func. Count: 64, Neg. LLF: 157.29232573330623
Iteration: 6, Func. Count: 77, Neg. LLF: 157.03148629398154
Iteration: 7, Func. Count: 89, Neg. LLF: 156.9455825160986
Iteration: 8, Func. Count: 101, Neg. LLF: 156.87506380755204
Iteration: 9, Func. Count: 113, Neg. LLF: 156.84280631784904
Iteration: 10, Func. Count: 125, Neg. LLF: 156.8290071743521
Iteration: 11, Func. Count: 137, Neg. LLF: 156.82799206228924
Iteration: 12, Func. Count: 149, Neg. LLF: 156.8279078533128
Iteration: 13, Func. Count: 161, Neg. LLF: 156.82788460898263
Iteration: 14, Func. Count: 173, Neg. LLF: 156.82784278275523
Iteration: 15, Func. Count: 185, Neg. LLF: 156.82779146380676
Iteration: 16, Func. Count: 197, Neg. LLF: 156.82774428865514
Iteration: 17, Func. Count: 209, Neg. LLF: 156.82772797187533
Iteration: 18, Func. Count: 221, Neg. LLF: 156.8277258431926
Iteration: 19, Func. Count: 232, Neg. LLF: 156.82772584321074
Optimization terminated successfully (Exit mode 0)
Current function value: 156.8277258431926
Iterations: 19
Function evaluations: 232
Gradient evaluations: 19
Iteration: 1, Func. Count: 6, Neg. LLF: 161.47446356749177
Iteration: 2, Func. Count: 11, Neg. LLF: 161.3904437694047
Iteration: 3, Func. Count: 16, Neg. LLF: 160.82245645819071
Iteration: 4, Func. Count: 21, Neg. LLF: 160.65276212367698
Iteration: 5, Func. Count: 26, Neg. LLF: 160.57494652415514
Iteration: 6, Func. Count: 31, Neg. LLF: 160.53336455261103
Iteration: 7, Func. Count: 36, Neg. LLF: 160.37702327867356
Iteration: 8, Func. Count: 41, Neg. LLF: 160.2361365150695
Iteration: 9, Func. Count: 46, Neg. LLF: 160.21331129191532
Iteration: 10, Func. Count: 51, Neg. LLF: 160.21073969518636
Iteration: 11, Func. Count: 56, Neg. LLF: 160.21067899534384
Iteration: 12, Func. Count: 61, Neg. LLF: 160.21067800222175
Optimization terminated successfully (Exit mode 0)
Current function value: 160.21067800222175
Iterations: 12
Function evaluations: 61
Gradient evaluations: 12
Iteration: 1, Func. Count: 7, Neg. LLF: 529.1344730308489
Iteration: 2, Func. Count: 15, Neg. LLF: 158.52277703730823
Iteration: 3, Func. Count: 21, Neg. LLF: 159.10948346362878
Iteration: 4, Func. Count: 28, Neg. LLF: 158.53867071813286
Iteration: 5, Func. Count: 35, Neg. LLF: 158.29807830222708
Iteration: 6, Func. Count: 41, Neg. LLF: 158.29911910228975
Iteration: 7, Func. Count: 48, Neg. LLF: 158.29225024920532
Iteration: 8, Func. Count: 54, Neg. LLF: 158.2919993094203
Iteration: 9, Func. Count: 60, Neg. LLF: 158.2919986195832
Optimization terminated successfully (Exit mode 0)
Current function value: 158.2919986195832
Iterations: 9
Function evaluations: 60
Gradient evaluations: 9
Iteration: 1, Func. Count: 8, Neg. LLF: 420.82005578259196
Iteration: 2, Func. Count: 17, Neg. LLF: 158.54230300119892
Iteration: 3, Func. Count: 24, Neg. LLF: 158.43923605323462
Iteration: 4, Func. Count: 31, Neg. LLF: 158.41350123827925
Iteration: 5, Func. Count: 38, Neg. LLF: 158.3807251168021
Iteration: 6, Func. Count: 45, Neg. LLF: 158.362554995925
Iteration: 7, Func. Count: 52, Neg. LLF: 158.32753416926968
Iteration: 8, Func. Count: 59, Neg. LLF: 158.29204882332476
Iteration: 9, Func. Count: 66, Neg. LLF: 158.29222848603987
Iteration: 10, Func. Count: 74, Neg. LLF: 158.29199870798098
Iteration: 11, Func. Count: 80, Neg. LLF: 158.29199870974247
Optimization terminated successfully (Exit mode 0)
Current function value: 158.29199870798098
Iterations: 11
Function evaluations: 80
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 192.33257140130485
Iteration: 2, Func. Count: 18, Neg. LLF: 161.89438755667555
Iteration: 3, Func. Count: 28, Neg. LLF: 159.17792201015257
Iteration: 4, Func. Count: 36, Neg. LLF: 159.12366023705786
Iteration: 5, Func. Count: 44, Neg. LLF: 159.04897231362608
Iteration: 6, Func. Count: 52, Neg. LLF: 158.9190448396976
Iteration: 7, Func. Count: 60, Neg. LLF: 158.74710259258902
Iteration: 8, Func. Count: 68, Neg. LLF: 158.57374194170634
Iteration: 9, Func. Count: 76, Neg. LLF: 161.00630233358464
Iteration: 10, Func. Count: 85, Neg. LLF: 160.27549275772765
Iteration: 11, Func. Count: 94, Neg. LLF: 160.0579560490635
Iteration: 12, Func. Count: 103, Neg. LLF: 158.78696679198416
Iteration: 13, Func. Count: 112, Neg. LLF: 158.4559480617668
Iteration: 14, Func. Count: 121, Neg. LLF: 158.37268997606068
Iteration: 15, Func. Count: 129, Neg. LLF: 158.3551262274442
Iteration: 16, Func. Count: 137, Neg. LLF: 158.34891014379977
Iteration: 17, Func. Count: 145, Neg. LLF: 158.33861493574574
Iteration: 18, Func. Count: 153, Neg. LLF: 158.32478225254926
Iteration: 19, Func. Count: 161, Neg. LLF: 158.30111306283413
Iteration: 20, Func. Count: 169, Neg. LLF: 158.29669036039252
Iteration: 21, Func. Count: 177, Neg. LLF: 158.2928533101875
Iteration: 22, Func. Count: 185, Neg. LLF: 158.2920035052191
Iteration: 23, Func. Count: 193, Neg. LLF: 158.29199862773936
Iteration: 24, Func. Count: 200, Neg. LLF: 158.29199863278083
Optimization terminated successfully (Exit mode 0)
Current function value: 158.29199862773936
Iterations: 24
Function evaluations: 200
Gradient evaluations: 24
Iteration: 1, Func. Count: 10, Neg. LLF: 191.9160183086289
Iteration: 2, Func. Count: 20, Neg. LLF: 159.00460201545064
Iteration: 3, Func. Count: 29, Neg. LLF: 158.706639682115
Iteration: 4, Func. Count: 38, Neg. LLF: 158.5262439917117
Iteration: 5, Func. Count: 47, Neg. LLF: 158.44063767021066
Iteration: 6, Func. Count: 56, Neg. LLF: 158.42284516892428
Iteration: 7, Func. Count: 65, Neg. LLF: 158.39930142277626
Iteration: 8, Func. Count: 74, Neg. LLF: 158.38618133371114
Iteration: 9, Func. Count: 83, Neg. LLF: 158.36492212902968
Iteration: 10, Func. Count: 92, Neg. LLF: 158.34138869682826
Iteration: 11, Func. Count: 101, Neg. LLF: 158.3365764614197
Iteration: 12, Func. Count: 110, Neg. LLF: 158.3358830848801
Iteration: 13, Func. Count: 119, Neg. LLF: 158.33585078894032
Iteration: 14, Func. Count: 128, Neg. LLF: 158.33585014031573
Optimization terminated successfully (Exit mode 0)
Current function value: 158.33585014031573
Iterations: 14
Function evaluations: 128
Gradient evaluations: 14
Iteration: 1, Func. Count: 7, Neg. LLF: 161.3673553246417
Iteration: 2, Func. Count: 14, Neg. LLF: 161.36401899317752
Iteration: 3, Func. Count: 21, Neg. LLF: 162.69310987101255
Iteration: 4, Func. Count: 28, Neg. LLF: 159.36166371951276
Iteration: 5, Func. Count: 34, Neg. LLF: 159.64632187539124
Iteration: 6, Func. Count: 41, Neg. LLF: 160.91027011347268
Iteration: 7, Func. Count: 49, Neg. LLF: 159.21582563102697
Iteration: 8, Func. Count: 55, Neg. LLF: 159.19205568951952
Iteration: 9, Func. Count: 61, Neg. LLF: 159.1837268082885
Iteration: 10, Func. Count: 67, Neg. LLF: 159.17764192274203
Iteration: 11, Func. Count: 73, Neg. LLF: 159.1716081238979
Iteration: 12, Func. Count: 79, Neg. LLF: 159.16246664739703
Iteration: 13, Func. Count: 85, Neg. LLF: 159.1523606243512
Iteration: 14, Func. Count: 91, Neg. LLF: 159.1477975876469
Iteration: 15, Func. Count: 97, Neg. LLF: 159.14727329401356
Iteration: 16, Func. Count: 103, Neg. LLF: 159.14722276533504
Iteration: 17, Func. Count: 108, Neg. LLF: 159.14722276533536
Optimization terminated successfully (Exit mode 0)
Current function value: 159.14722276533504
Iterations: 17
Function evaluations: 108
Gradient evaluations: 17
Iteration: 1, Func. Count: 8, Neg. LLF: 350.0059063153809
Iteration: 2, Func. Count: 17, Neg. LLF: 158.81440942850742
Iteration: 3, Func. Count: 25, Neg. LLF: 158.55323957492368
Iteration: 4, Func. Count: 32, Neg. LLF: 158.4690730649366
Iteration: 5, Func. Count: 39, Neg. LLF: 158.4492939827009
Iteration: 6, Func. Count: 46, Neg. LLF: 158.39211697592967
Iteration: 7, Func. Count: 53, Neg. LLF: 158.30365982983824
Iteration: 8, Func. Count: 60, Neg. LLF: 158.29639361287906
Iteration: 9, Func. Count: 67, Neg. LLF: 158.29245709198887
Iteration: 10, Func. Count: 74, Neg. LLF: 158.29468533059696
Iteration: 11, Func. Count: 82, Neg. LLF: 158.29199876836267
Iteration: 12, Func. Count: 88, Neg. LLF: 158.29199876874213
Optimization terminated successfully (Exit mode 0)
Current function value: 158.29199876836267
Iterations: 12
Function evaluations: 88
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 366.5820605713259
Iteration: 2, Func. Count: 19, Neg. LLF: 158.78309593146423
Iteration: 3, Func. Count: 28, Neg. LLF: 158.44611744012457
Iteration: 4, Func. Count: 37, Neg. LLF: 158.36494318786526
Iteration: 5, Func. Count: 45, Neg. LLF: 158.36296026608468
Iteration: 6, Func. Count: 53, Neg. LLF: 158.36137712441248
Iteration: 7, Func. Count: 61, Neg. LLF: 158.35740428264282
Iteration: 8, Func. Count: 69, Neg. LLF: 158.3522183606529
Iteration: 9, Func. Count: 77, Neg. LLF: 158.3499251192655
Iteration: 10, Func. Count: 85, Neg. LLF: 158.3458224162669
Iteration: 11, Func. Count: 93, Neg. LLF: 158.32895062654168
Iteration: 12, Func. Count: 101, Neg. LLF: 158.30799242759036
Iteration: 13, Func. Count: 109, Neg. LLF: 158.2940253536281
Iteration: 14, Func. Count: 117, Neg. LLF: 158.29218405004013
Iteration: 15, Func. Count: 125, Neg. LLF: 158.29203378966528
Iteration: 16, Func. Count: 133, Neg. LLF: 158.29199875071004
Iteration: 17, Func. Count: 140, Neg. LLF: 158.29199875239263
Optimization terminated successfully (Exit mode 0)
Current function value: 158.29199875071004
Iterations: 17
Function evaluations: 140
Gradient evaluations: 17
Iteration: 1, Func. Count: 10, Neg. LLF: 373.83407442762143
Iteration: 2, Func. Count: 21, Neg. LLF: 159.04439615430897
Iteration: 3, Func. Count: 31, Neg. LLF: 158.92318138819488
Iteration: 4, Func. Count: 41, Neg. LLF: 158.3760305825246
Iteration: 5, Func. Count: 50, Neg. LLF: 158.31457475705534
Iteration: 6, Func. Count: 59, Neg. LLF: 158.3080721812228
Iteration: 7, Func. Count: 68, Neg. LLF: 158.2984740730159
Iteration: 8, Func. Count: 77, Neg. LLF: 158.29316669778817
Iteration: 9, Func. Count: 86, Neg. LLF: 158.2877458533555
Iteration: 10, Func. Count: 95, Neg. LLF: 158.2853156888698
Iteration: 11, Func. Count: 104, Neg. LLF: 158.2851081676332
Iteration: 12, Func. Count: 113, Neg. LLF: 158.28510150494677
Iteration: 13, Func. Count: 122, Neg. LLF: 158.28509858093452
Iteration: 14, Func. Count: 131, Neg. LLF: 158.28509713682521
Iteration: 15, Func. Count: 139, Neg. LLF: 158.28509713683948
Optimization terminated successfully (Exit mode 0)
Current function value: 158.28509713682521
Iterations: 15
Function evaluations: 139
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 191.3563264139918
Iteration: 2, Func. Count: 22, Neg. LLF: 158.54037542582918
Iteration: 3, Func. Count: 32, Neg. LLF: 158.34978858464746
Iteration: 4, Func. Count: 42, Neg. LLF: 160.97090445806452
Iteration: 5, Func. Count: 53, Neg. LLF: 171.56619419672003
Iteration: 6, Func. Count: 65, Neg. LLF: 158.26860619744832
Iteration: 7, Func. Count: 76, Neg. LLF: 158.18032481061545
Iteration: 8, Func. Count: 86, Neg. LLF: 158.16190492874807
Iteration: 9, Func. Count: 96, Neg. LLF: 158.1460842067417
Iteration: 10, Func. Count: 106, Neg. LLF: 158.14232659637588
Iteration: 11, Func. Count: 116, Neg. LLF: 158.1421054187846
Iteration: 12, Func. Count: 126, Neg. LLF: 158.14126712833956
Iteration: 13, Func. Count: 136, Neg. LLF: 158.14054286019189
Iteration: 14, Func. Count: 146, Neg. LLF: 158.13995727140937
Iteration: 15, Func. Count: 156, Neg. LLF: 158.1398253346781
Iteration: 16, Func. Count: 166, Neg. LLF: 158.13981653667267
Iteration: 17, Func. Count: 175, Neg. LLF: 158.13981653877306
Optimization terminated successfully (Exit mode 0)
Current function value: 158.13981653667267
Iterations: 17
Function evaluations: 175
Gradient evaluations: 17
Iteration: 1, Func. Count: 8, Neg. LLF: 161.74512534637958
Iteration: 2, Func. Count: 16, Neg. LLF: 161.9228756674184
Iteration: 3, Func. Count: 24, Neg. LLF: 161.781855512159
Iteration: 4, Func. Count: 32, Neg. LLF: 160.1895528322884
Iteration: 5, Func. Count: 40, Neg. LLF: 159.8061133062484
Iteration: 6, Func. Count: 48, Neg. LLF: 159.19909402499786
Iteration: 7, Func. Count: 55, Neg. LLF: 159.5564137399516
Iteration: 8, Func. Count: 63, Neg. LLF: 159.54232307439645
Iteration: 9, Func. Count: 71, Neg. LLF: 159.14038933715395
Iteration: 10, Func. Count: 78, Neg. LLF: 159.12718645678962
Iteration: 11, Func. Count: 85, Neg. LLF: 159.12326190596292
Iteration: 12, Func. Count: 92, Neg. LLF: 159.12166492683104
Iteration: 13, Func. Count: 99, Neg. LLF: 159.11925586903928
Iteration: 14, Func. Count: 106, Neg. LLF: 159.11515178416923
Iteration: 15, Func. Count: 113, Neg. LLF: 159.1104136072892
Iteration: 16, Func. Count: 120, Neg. LLF: 159.108093656741
Iteration: 17, Func. Count: 127, Neg. LLF: 159.10778892021304
Iteration: 18, Func. Count: 134, Neg. LLF: 159.10776203441873
Iteration: 19, Func. Count: 141, Neg. LLF: 159.10776149284285
Optimization terminated successfully (Exit mode 0)
Current function value: 159.10776149284285
Iterations: 19
Function evaluations: 141
Gradient evaluations: 19
Iteration: 1, Func. Count: 9, Neg. LLF: 349.955392574802
Iteration: 2, Func. Count: 19, Neg. LLF: 158.87530386458164
Iteration: 3, Func. Count: 28, Neg. LLF: 158.59305960590632
Iteration: 4, Func. Count: 37, Neg. LLF: 158.46550601242842
Iteration: 5, Func. Count: 45, Neg. LLF: 158.41709844884522
Iteration: 6, Func. Count: 53, Neg. LLF: 158.5271536136919
Iteration: 7, Func. Count: 62, Neg. LLF: 158.38964595530837
Iteration: 8, Func. Count: 71, Neg. LLF: 158.30594319752882
Iteration: 9, Func. Count: 79, Neg. LLF: 158.29303184327713
Iteration: 10, Func. Count: 87, Neg. LLF: 158.2922203234146
Iteration: 11, Func. Count: 95, Neg. LLF: 158.29200860966745
Iteration: 12, Func. Count: 103, Neg. LLF: 158.29199910280136
Iteration: 13, Func. Count: 111, Neg. LLF: 158.29199861101225
Optimization terminated successfully (Exit mode 0)
Current function value: 158.29199861101225
Iterations: 13
Function evaluations: 111
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 362.5182955604468
Iteration: 2, Func. Count: 21, Neg. LLF: 158.77849369225547
Iteration: 3, Func. Count: 31, Neg. LLF: 158.36522162010226
Iteration: 4, Func. Count: 40, Neg. LLF: 158.3716261860533
Iteration: 5, Func. Count: 50, Neg. LLF: 158.36312048623006
Iteration: 6, Func. Count: 59, Neg. LLF: 158.3603317857685
Iteration: 7, Func. Count: 68, Neg. LLF: 158.3574015240121
Iteration: 8, Func. Count: 77, Neg. LLF: 158.34989432957028
Iteration: 9, Func. Count: 86, Neg. LLF: 158.34008116289607
Iteration: 10, Func. Count: 95, Neg. LLF: 158.3384240999348
Iteration: 11, Func. Count: 104, Neg. LLF: 158.33064934842326
Iteration: 12, Func. Count: 113, Neg. LLF: 158.31980908885177
Iteration: 13, Func. Count: 122, Neg. LLF: 158.29927204485375
Iteration: 14, Func. Count: 131, Neg. LLF: 158.29328765621852
Iteration: 15, Func. Count: 140, Neg. LLF: 158.2922777338506
Iteration: 16, Func. Count: 149, Neg. LLF: 158.2920013439329
Iteration: 17, Func. Count: 158, Neg. LLF: 158.29199860883807
Iteration: 18, Func. Count: 166, Neg. LLF: 158.29199861101057
Optimization terminated successfully (Exit mode 0)
Current function value: 158.29199860883807
Iterations: 18
Function evaluations: 166
Gradient evaluations: 18
Iteration: 1, Func. Count: 11, Neg. LLF: 369.10055175808776
Iteration: 2, Func. Count: 23, Neg. LLF: 159.07977064912987
Iteration: 3, Func. Count: 34, Neg. LLF: 158.39482193089583
Iteration: 4, Func. Count: 44, Neg. LLF: 158.4332231949075
Iteration: 5, Func. Count: 55, Neg. LLF: 158.36642006837872
Iteration: 6, Func. Count: 65, Neg. LLF: 158.34850702776373
Iteration: 7, Func. Count: 75, Neg. LLF: 158.32553011412224
Iteration: 8, Func. Count: 85, Neg. LLF: 158.31453376386048
Iteration: 9, Func. Count: 95, Neg. LLF: 158.3021764267504
Iteration: 10, Func. Count: 105, Neg. LLF: 158.29168908759965
Iteration: 11, Func. Count: 115, Neg. LLF: 158.28658620305586
Iteration: 12, Func. Count: 125, Neg. LLF: 158.28569135937363
Iteration: 13, Func. Count: 135, Neg. LLF: 158.28526907751515
Iteration: 14, Func. Count: 145, Neg. LLF: 158.28520972912898
Iteration: 15, Func. Count: 155, Neg. LLF: 158.28514325476337
Iteration: 16, Func. Count: 165, Neg. LLF: 158.28510388235352
Iteration: 17, Func. Count: 175, Neg. LLF: 158.28509744514525
Iteration: 18, Func. Count: 184, Neg. LLF: 158.28509744494306
Optimization terminated successfully (Exit mode 0)
Current function value: 158.28509744514525
Iterations: 18
Function evaluations: 184
Gradient evaluations: 18
Iteration: 1, Func. Count: 12, Neg. LLF: 191.29873893574646
Iteration: 2, Func. Count: 24, Neg. LLF: 159.44828023270233
Iteration: 3, Func. Count: 36, Neg. LLF: 158.7554310662325
Iteration: 4, Func. Count: 47, Neg. LLF: 159.60333397105802
Iteration: 5, Func. Count: 59, Neg. LLF: 158.41812650640006
Iteration: 6, Func. Count: 70, Neg. LLF: 158.38987681260673
Iteration: 7, Func. Count: 81, Neg. LLF: 158.3544275963326
Iteration: 8, Func. Count: 92, Neg. LLF: 158.3493903446725
Iteration: 9, Func. Count: 103, Neg. LLF: 158.33076951219178
Iteration: 10, Func. Count: 114, Neg. LLF: 158.31980218656975
Iteration: 11, Func. Count: 125, Neg. LLF: 158.30772499147204
Iteration: 12, Func. Count: 136, Neg. LLF: 158.2957649079099
Iteration: 13, Func. Count: 147, Neg. LLF: 158.29393885568408
Iteration: 14, Func. Count: 158, Neg. LLF: 158.29391550396494
Iteration: 15, Func. Count: 169, Neg. LLF: 158.2939143554999
Iteration: 16, Func. Count: 179, Neg. LLF: 158.29391435554737
Optimization terminated successfully (Exit mode 0)
Current function value: 158.2939143554999
Iterations: 16
Function evaluations: 179
Gradient evaluations: 16
Iteration: 1, Func. Count: 9, Neg. LLF: 159.72958433660384
Iteration: 2, Func. Count: 17, Neg. LLF: 159.69622822769867
Iteration: 3, Func. Count: 26, Neg. LLF: 158.58921012378937
Iteration: 4, Func. Count: 34, Neg. LLF: 158.24342418417876
Iteration: 5, Func. Count: 43, Neg. LLF: 162.4157631460458
Iteration: 6, Func. Count: 52, Neg. LLF: 157.70864706955882
Iteration: 7, Func. Count: 60, Neg. LLF: 157.84552171768564
Iteration: 8, Func. Count: 69, Neg. LLF: 157.5496786597443
Iteration: 9, Func. Count: 77, Neg. LLF: 157.51681049842665
Iteration: 10, Func. Count: 85, Neg. LLF: 157.46817292787256
Iteration: 11, Func. Count: 93, Neg. LLF: 157.2712003750974
Iteration: 12, Func. Count: 101, Neg. LLF: 157.22356900447605
Iteration: 13, Func. Count: 109, Neg. LLF: 157.21165502112052
Iteration: 14, Func. Count: 117, Neg. LLF: 157.21108562366007
Iteration: 15, Func. Count: 125, Neg. LLF: 157.21104623783737
Iteration: 16, Func. Count: 133, Neg. LLF: 157.21104311426095
Iteration: 17, Func. Count: 140, Neg. LLF: 157.21104311010606
Optimization terminated successfully (Exit mode 0)
Current function value: 157.21104311426095
Iterations: 17
Function evaluations: 140
Gradient evaluations: 17
Iteration: 1, Func. Count: 10, Neg. LLF: 353.2987340484305
Iteration: 2, Func. Count: 21, Neg. LLF: 158.96163781053895
Iteration: 3, Func. Count: 31, Neg. LLF: 158.34738327064463
Iteration: 4, Func. Count: 40, Neg. LLF: 158.35221716518322
Iteration: 5, Func. Count: 50, Neg. LLF: 158.32765090520746
Iteration: 6, Func. Count: 59, Neg. LLF: 158.32577299500343
Iteration: 7, Func. Count: 69, Neg. LLF: 158.27957802212532
Iteration: 8, Func. Count: 78, Neg. LLF: 158.27661578778657
Iteration: 9, Func. Count: 87, Neg. LLF: 158.27398080345867
Iteration: 10, Func. Count: 96, Neg. LLF: 158.27391418077192
Iteration: 11, Func. Count: 105, Neg. LLF: 158.27391194320876
Iteration: 12, Func. Count: 114, Neg. LLF: 158.2739093968257
Iteration: 13, Func. Count: 122, Neg. LLF: 158.27390939682277
Optimization terminated successfully (Exit mode 0)
Current function value: 158.2739093968257
Iterations: 13
Function evaluations: 122
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 366.13492222938856
Iteration: 2, Func. Count: 23, Neg. LLF: 158.93750105663716
Iteration: 3, Func. Count: 34, Neg. LLF: 158.42329860532712
Iteration: 4, Func. Count: 44, Neg. LLF: 158.30820464119546
Iteration: 5, Func. Count: 54, Neg. LLF: 158.29472581487727
Iteration: 6, Func. Count: 64, Neg. LLF: 158.29348966548244
Iteration: 7, Func. Count: 74, Neg. LLF: 158.28945869217134
Iteration: 8, Func. Count: 84, Neg. LLF: 158.28634173745672
Iteration: 9, Func. Count: 94, Neg. LLF: 158.28411535343298
Iteration: 10, Func. Count: 104, Neg. LLF: 158.28280843824052
Iteration: 11, Func. Count: 114, Neg. LLF: 158.28190096667632
Iteration: 12, Func. Count: 124, Neg. LLF: 158.27883834369453
Iteration: 13, Func. Count: 134, Neg. LLF: 158.27405888403047
Iteration: 14, Func. Count: 144, Neg. LLF: 158.27393618511252
Iteration: 15, Func. Count: 154, Neg. LLF: 158.27390977518445
Iteration: 16, Func. Count: 163, Neg. LLF: 158.27390977688202
Optimization terminated successfully (Exit mode 0)
Current function value: 158.27390977518445
Iterations: 16
Function evaluations: 163
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 171.85109758875845
Iteration: 2, Func. Count: 24, Neg. LLF: 170.2920269876674
Iteration: 3, Func. Count: 36, Neg. LLF: 157.26690100139993
Iteration: 4, Func. Count: 47, Neg. LLF: 157.7139150692313
Iteration: 5, Func. Count: 59, Neg. LLF: 157.24813926514696
Iteration: 6, Func. Count: 71, Neg. LLF: 158.91362404937277
Iteration: 7, Func. Count: 83, Neg. LLF: 157.14603949592603
Iteration: 8, Func. Count: 94, Neg. LLF: 157.11426128712722
Iteration: 9, Func. Count: 105, Neg. LLF: 157.07473612100952
Iteration: 10, Func. Count: 116, Neg. LLF: 157.0413760544373
Iteration: 11, Func. Count: 127, Neg. LLF: 157.0362615961776
Iteration: 12, Func. Count: 138, Neg. LLF: 157.03342983426688
Iteration: 13, Func. Count: 149, Neg. LLF: 157.0324417595106
Iteration: 14, Func. Count: 160, Neg. LLF: 157.0309292035177
Iteration: 15, Func. Count: 171, Neg. LLF: 157.02950497752212
Iteration: 16, Func. Count: 182, Neg. LLF: 157.0279868765738
Iteration: 17, Func. Count: 193, Neg. LLF: 157.02683201419777
Iteration: 18, Func. Count: 204, Neg. LLF: 157.02640862725346
Iteration: 19, Func. Count: 215, Neg. LLF: 157.0263645160818
Iteration: 20, Func. Count: 226, Neg. LLF: 157.02636198555402
Iteration: 21, Func. Count: 236, Neg. LLF: 157.02636198555933
Optimization terminated successfully (Exit mode 0)
Current function value: 157.02636198555402
Iterations: 21
Function evaluations: 236
Gradient evaluations: 21
Iteration: 1, Func. Count: 13, Neg. LLF: 191.50812357229276
Iteration: 2, Func. Count: 26, Neg. LLF: 166.01638381683057
Iteration: 3, Func. Count: 39, Neg. LLF: 157.28437179163032
Iteration: 4, Func. Count: 51, Neg. LLF: 158.49109550737745
Iteration: 5, Func. Count: 64, Neg. LLF: 157.27970644274086
Iteration: 6, Func. Count: 77, Neg. LLF: 157.0169485411285
Iteration: 7, Func. Count: 89, Neg. LLF: 156.92545278306426
Iteration: 8, Func. Count: 101, Neg. LLF: 156.86849942602464
Iteration: 9, Func. Count: 113, Neg. LLF: 156.83270141290458
Iteration: 10, Func. Count: 125, Neg. LLF: 156.82849553681757
Iteration: 11, Func. Count: 137, Neg. LLF: 156.8279415925549
Iteration: 12, Func. Count: 149, Neg. LLF: 156.82789296338407
Iteration: 13, Func. Count: 161, Neg. LLF: 156.82786721540788
Iteration: 14, Func. Count: 173, Neg. LLF: 156.82783138357078
Iteration: 15, Func. Count: 185, Neg. LLF: 156.8277762385633
Iteration: 16, Func. Count: 197, Neg. LLF: 156.82773782241603
Iteration: 17, Func. Count: 209, Neg. LLF: 156.82772676105995
Iteration: 18, Func. Count: 221, Neg. LLF: 156.82772578875495
Optimization terminated successfully (Exit mode 0)
Current function value: 156.82772578875495
Iterations: 18
Function evaluations: 221
Gradient evaluations: 18
Iteration: 1, Func. Count: 10, Neg. LLF: 159.8926743210081
Iteration: 2, Func. Count: 20, Neg. LLF: 159.34082704290134
Iteration: 3, Func. Count: 30, Neg. LLF: 158.8467108990853
Iteration: 4, Func. Count: 40, Neg. LLF: 158.91110262139506
Iteration: 5, Func. Count: 50, Neg. LLF: 157.66568628752964
Iteration: 6, Func. Count: 59, Neg. LLF: 157.61304619538024
Iteration: 7, Func. Count: 68, Neg. LLF: 157.5777944063423
Iteration: 8, Func. Count: 77, Neg. LLF: 157.40757737991967
Iteration: 9, Func. Count: 86, Neg. LLF: 157.29119709829658
Iteration: 10, Func. Count: 95, Neg. LLF: 157.2293251046467
Iteration: 11, Func. Count: 104, Neg. LLF: 157.21466367471595
Iteration: 12, Func. Count: 113, Neg. LLF: 157.211585529416
Iteration: 13, Func. Count: 122, Neg. LLF: 157.2110454742338
Iteration: 14, Func. Count: 131, Neg. LLF: 157.21104275366693
Iteration: 15, Func. Count: 139, Neg. LLF: 157.21104288743905
Optimization terminated successfully (Exit mode 0)
Current function value: 157.21104275366693
Iterations: 15
Function evaluations: 139
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 406.4665379560141
Iteration: 2, Func. Count: 23, Neg. LLF: 158.76081927309895
Iteration: 3, Func. Count: 34, Neg. LLF: 160.55148786671546
Iteration: 4, Func. Count: 45, Neg. LLF: 158.33016034891597
Iteration: 5, Func. Count: 55, Neg. LLF: 158.3131329132071
Iteration: 6, Func. Count: 65, Neg. LLF: 158.27841743555794
Iteration: 7, Func. Count: 75, Neg. LLF: 158.27517151583308
Iteration: 8, Func. Count: 85, Neg. LLF: 158.2739247151893
Iteration: 9, Func. Count: 95, Neg. LLF: 158.27391892765627
Iteration: 10, Func. Count: 105, Neg. LLF: 158.27390950839296
Iteration: 11, Func. Count: 114, Neg. LLF: 158.2739095086993
Optimization terminated successfully (Exit mode 0)
Current function value: 158.27390950839296
Iterations: 11
Function evaluations: 114
Gradient evaluations: 11
Iteration: 1, Func. Count: 12, Neg. LLF: 365.8255628403892
Iteration: 2, Func. Count: 25, Neg. LLF: 158.89317737907902
Iteration: 3, Func. Count: 37, Neg. LLF: 158.78146898714414
Iteration: 4, Func. Count: 49, Neg. LLF: 158.36360607109978
Iteration: 5, Func. Count: 60, Neg. LLF: 158.30022437716934
Iteration: 6, Func. Count: 71, Neg. LLF: 158.2958983458576
Iteration: 7, Func. Count: 82, Neg. LLF: 158.29305526019027
Iteration: 8, Func. Count: 93, Neg. LLF: 158.29175027445385
Iteration: 9, Func. Count: 104, Neg. LLF: 158.28858932664468
Iteration: 10, Func. Count: 115, Neg. LLF: 158.28413793551877
Iteration: 11, Func. Count: 126, Neg. LLF: 158.28279161796272
Iteration: 12, Func. Count: 137, Neg. LLF: 158.2818856945988
Iteration: 13, Func. Count: 148, Neg. LLF: 158.27413498465108
Iteration: 14, Func. Count: 159, Neg. LLF: 158.27401857034997
Iteration: 15, Func. Count: 170, Neg. LLF: 158.27391617931661
Iteration: 16, Func. Count: 181, Neg. LLF: 158.27391458263395
Iteration: 17, Func. Count: 193, Neg. LLF: 158.27390933310977
Iteration: 18, Func. Count: 203, Neg. LLF: 158.2739093344155
Optimization terminated successfully (Exit mode 0)
Current function value: 158.27390933310977
Iterations: 18
Function evaluations: 203
Gradient evaluations: 18
Iteration: 1, Func. Count: 13, Neg. LLF: 175.06325553809936
Iteration: 2, Func. Count: 26, Neg. LLF: 171.00063689916618
Iteration: 3, Func. Count: 39, Neg. LLF: 157.2690987919545
Iteration: 4, Func. Count: 51, Neg. LLF: 157.73441303192163
Iteration: 5, Func. Count: 64, Neg. LLF: 157.2185388924898
Iteration: 6, Func. Count: 76, Neg. LLF: 159.66421730283372
Iteration: 7, Func. Count: 89, Neg. LLF: 157.1536970712973
Iteration: 8, Func. Count: 101, Neg. LLF: 157.11410195347108
Iteration: 9, Func. Count: 113, Neg. LLF: 157.05016064149876
Iteration: 10, Func. Count: 125, Neg. LLF: 157.04105897792783
Iteration: 11, Func. Count: 137, Neg. LLF: 157.03825440066353
Iteration: 12, Func. Count: 149, Neg. LLF: 157.0368101193798
Iteration: 13, Func. Count: 161, Neg. LLF: 157.03119374518835
Iteration: 14, Func. Count: 173, Neg. LLF: 157.02788077639136
Iteration: 15, Func. Count: 185, Neg. LLF: 157.02653817738818
Iteration: 16, Func. Count: 197, Neg. LLF: 157.02638702148528
Iteration: 17, Func. Count: 209, Neg. LLF: 157.02636683681018
Iteration: 18, Func. Count: 221, Neg. LLF: 157.02636255982662
Iteration: 19, Func. Count: 232, Neg. LLF: 157.02636255983288
Optimization terminated successfully (Exit mode 0)
Current function value: 157.02636255982662
Iterations: 19
Function evaluations: 232
Gradient evaluations: 19
Iteration: 1, Func. Count: 14, Neg. LLF: 191.47302100657555
Iteration: 2, Func. Count: 28, Neg. LLF: 166.71026984497797
Iteration: 3, Func. Count: 42, Neg. LLF: 157.28465468793536
Iteration: 4, Func. Count: 55, Neg. LLF: 158.48953000807222
Iteration: 5, Func. Count: 69, Neg. LLF: 157.29125966358853
Iteration: 6, Func. Count: 83, Neg. LLF: 157.02971358021253
Iteration: 7, Func. Count: 96, Neg. LLF: 156.94262693413842
Iteration: 8, Func. Count: 109, Neg. LLF: 156.87477494185572
Iteration: 9, Func. Count: 122, Neg. LLF: 156.84108643219906
Iteration: 10, Func. Count: 135, Neg. LLF: 156.82903974280399
Iteration: 11, Func. Count: 148, Neg. LLF: 156.82801855024215
Iteration: 12, Func. Count: 161, Neg. LLF: 156.82793699567236
Iteration: 13, Func. Count: 174, Neg. LLF: 156.82790934993724
Iteration: 14, Func. Count: 187, Neg. LLF: 156.82786035924903
Iteration: 15, Func. Count: 200, Neg. LLF: 156.8277986063503
Iteration: 16, Func. Count: 213, Neg. LLF: 156.82774560179496
Iteration: 17, Func. Count: 226, Neg. LLF: 156.82772794894714
Iteration: 18, Func. Count: 239, Neg. LLF: 156.8277258339734
Iteration: 19, Func. Count: 251, Neg. LLF: 156.82772583399003
Optimization terminated successfully (Exit mode 0)
Current function value: 156.8277258339734
Iterations: 19
Function evaluations: 251
Gradient evaluations: 19
Iteration: 1, Func. Count: 7, Neg. LLF: 162.2490982826733
Iteration: 2, Func. Count: 14, Neg. LLF: 162.94003175798298
Iteration: 3, Func. Count: 22, Neg. LLF: 160.61739067105788
Iteration: 4, Func. Count: 28, Neg. LLF: 160.57799291601998
Iteration: 5, Func. Count: 34, Neg. LLF: 160.56763655475604
Iteration: 6, Func. Count: 40, Neg. LLF: 160.5044588565611
Iteration: 7, Func. Count: 46, Neg. LLF: 160.2654323487163
Iteration: 8, Func. Count: 52, Neg. LLF: 160.2197015243482
Iteration: 9, Func. Count: 58, Neg. LLF: 160.21166579697902
Iteration: 10, Func. Count: 64, Neg. LLF: 160.21085749813082
Iteration: 11, Func. Count: 70, Neg. LLF: 160.21070024341387
Iteration: 12, Func. Count: 76, Neg. LLF: 160.2106789010375
Iteration: 13, Func. Count: 82, Neg. LLF: 160.2106778660388
Iteration: 14, Func. Count: 87, Neg. LLF: 160.21067790441546
Optimization terminated successfully (Exit mode 0)
Current function value: 160.2106778660388
Iterations: 14
Function evaluations: 87
Gradient evaluations: 14
Iteration: 1, Func. Count: 8, Neg. LLF: 531.161887678795
Iteration: 2, Func. Count: 17, Neg. LLF: 158.52578380905368
Iteration: 3, Func. Count: 24, Neg. LLF: 161.57817970809958
Iteration: 4, Func. Count: 33, Neg. LLF: 158.48362961707733
Iteration: 5, Func. Count: 41, Neg. LLF: 158.6643833831255
Iteration: 6, Func. Count: 49, Neg. LLF: 158.2922617482778
Iteration: 7, Func. Count: 56, Neg. LLF: 158.29200462384523
Iteration: 8, Func. Count: 63, Neg. LLF: 158.29199961384327
Iteration: 9, Func. Count: 70, Neg. LLF: 158.29199865749877
Optimization terminated successfully (Exit mode 0)
Current function value: 158.29199865749877
Iterations: 9
Function evaluations: 70
Gradient evaluations: 9
Iteration: 1, Func. Count: 9, Neg. LLF: 423.64666498184096
Iteration: 2, Func. Count: 19, Neg. LLF: 158.57826264521
Iteration: 3, Func. Count: 27, Neg. LLF: 158.45067480730523
Iteration: 4, Func. Count: 35, Neg. LLF: 158.4235335936946
Iteration: 5, Func. Count: 43, Neg. LLF: 158.38578091092256
Iteration: 6, Func. Count: 51, Neg. LLF: 158.3712990870382
Iteration: 7, Func. Count: 59, Neg. LLF: 158.338720399097
Iteration: 8, Func. Count: 67, Neg. LLF: 158.29261010930847
Iteration: 9, Func. Count: 75, Neg. LLF: 158.29235318697056
Iteration: 10, Func. Count: 83, Neg. LLF: 158.29200154910356
Iteration: 11, Func. Count: 91, Neg. LLF: 158.29199936880676
Iteration: 12, Func. Count: 99, Neg. LLF: 158.29199938536104
Optimization terminated successfully (Exit mode 0)
Current function value: 158.29199866057982
Iterations: 12
Function evaluations: 100
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 191.80050018505634
Iteration: 2, Func. Count: 20, Neg. LLF: 158.45434222503096
Iteration: 3, Func. Count: 29, Neg. LLF: 159.0534347250506
Iteration: 4, Func. Count: 39, Neg. LLF: 158.42028760602847
Iteration: 5, Func. Count: 48, Neg. LLF: 158.31904397585174
Iteration: 6, Func. Count: 57, Neg. LLF: 158.27302786338103
Iteration: 7, Func. Count: 66, Neg. LLF: 158.82050260808612
Iteration: 8, Func. Count: 76, Neg. LLF: 158.15993576971823
Iteration: 9, Func. Count: 85, Neg. LLF: 158.14663521188214
Iteration: 10, Func. Count: 94, Neg. LLF: 158.146153464428
Iteration: 11, Func. Count: 103, Neg. LLF: 158.14588454484704
Iteration: 12, Func. Count: 112, Neg. LLF: 158.14588159593822
Iteration: 13, Func. Count: 121, Neg. LLF: 158.14587927566774
Iteration: 14, Func. Count: 129, Neg. LLF: 158.14587927567067
Optimization terminated successfully (Exit mode 0)
Current function value: 158.14587927566774
Iterations: 14
Function evaluations: 129
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 191.96684902003162
Iteration: 2, Func. Count: 22, Neg. LLF: 158.99971262044738
Iteration: 3, Func. Count: 32, Neg. LLF: 158.9035272261546
Iteration: 4, Func. Count: 42, Neg. LLF: 158.58438784178793
Iteration: 5, Func. Count: 52, Neg. LLF: 158.43973236252458
Iteration: 6, Func. Count: 62, Neg. LLF: 158.42033779215788
Iteration: 7, Func. Count: 72, Neg. LLF: 158.40792094915267
Iteration: 8, Func. Count: 82, Neg. LLF: 158.37160879280475
Iteration: 9, Func. Count: 92, Neg. LLF: 158.35072839408306
Iteration: 10, Func. Count: 102, Neg. LLF: 158.3362184099068
Iteration: 11, Func. Count: 112, Neg. LLF: 158.3358857999486
Iteration: 12, Func. Count: 122, Neg. LLF: 158.33585011656174
Iteration: 13, Func. Count: 131, Neg. LLF: 158.33585011662694
Optimization terminated successfully (Exit mode 0)
Current function value: 158.33585011656174
Iterations: 13
Function evaluations: 131
Gradient evaluations: 13
Iteration: 1, Func. Count: 8, Neg. LLF: 163.16027915626833
Iteration: 2, Func. Count: 16, Neg. LLF: 161.35615381998605
Iteration: 3, Func. Count: 24, Neg. LLF: 161.67102501919922
Iteration: 4, Func. Count: 32, Neg. LLF: 159.6775658688975
Iteration: 5, Func. Count: 40, Neg. LLF: 159.8990427110488
Iteration: 6, Func. Count: 48, Neg. LLF: 159.40702478535968
Iteration: 7, Func. Count: 56, Neg. LLF: 159.5872696783775
Iteration: 8, Func. Count: 64, Neg. LLF: 159.22734690992579
Iteration: 9, Func. Count: 71, Neg. LLF: 159.2322468812842
Iteration: 10, Func. Count: 79, Neg. LLF: 159.19178372223945
Iteration: 11, Func. Count: 86, Neg. LLF: 159.18548263591458
Iteration: 12, Func. Count: 93, Neg. LLF: 159.17945702439008
Iteration: 13, Func. Count: 100, Neg. LLF: 159.16546477128819
Iteration: 14, Func. Count: 107, Neg. LLF: 159.15283369306087
Iteration: 15, Func. Count: 114, Neg. LLF: 159.14762882106797
Iteration: 16, Func. Count: 121, Neg. LLF: 159.14725610000482
Iteration: 17, Func. Count: 128, Neg. LLF: 159.1472229505444
Iteration: 18, Func. Count: 135, Neg. LLF: 159.14722225315379
Optimization terminated successfully (Exit mode 0)
Current function value: 159.14722225315379
Iterations: 18
Function evaluations: 135
Gradient evaluations: 18
Iteration: 1, Func. Count: 9, Neg. LLF: 350.74996449004317
Iteration: 2, Func. Count: 19, Neg. LLF: 158.81872637650324
Iteration: 3, Func. Count: 28, Neg. LLF: 158.59575478064252
Iteration: 4, Func. Count: 37, Neg. LLF: 158.45106432361047
Iteration: 5, Func. Count: 45, Neg. LLF: 158.3954395974094
Iteration: 6, Func. Count: 53, Neg. LLF: 158.5215034874763
Iteration: 7, Func. Count: 62, Neg. LLF: 158.32265810202625
Iteration: 8, Func. Count: 71, Neg. LLF: 158.29379424925335
Iteration: 9, Func. Count: 79, Neg. LLF: 158.2927650854642
Iteration: 10, Func. Count: 87, Neg. LLF: 158.29201154847794
Iteration: 11, Func. Count: 95, Neg. LLF: 158.29200044890084
Iteration: 12, Func. Count: 103, Neg. LLF: 158.29199860943913
Iteration: 13, Func. Count: 110, Neg. LLF: 158.29199860944308
Optimization terminated successfully (Exit mode 0)
Current function value: 158.29199860943913
Iterations: 13
Function evaluations: 110
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 366.9727989860066
Iteration: 2, Func. Count: 21, Neg. LLF: 158.7857725583076
Iteration: 3, Func. Count: 31, Neg. LLF: 158.4051616609974
Iteration: 4, Func. Count: 40, Neg. LLF: 158.36705727272997
Iteration: 5, Func. Count: 49, Neg. LLF: 158.36644140645947
Iteration: 6, Func. Count: 59, Neg. LLF: 158.361360702587
Iteration: 7, Func. Count: 68, Neg. LLF: 158.3585195582427
Iteration: 8, Func. Count: 77, Neg. LLF: 158.3556285638217
Iteration: 9, Func. Count: 86, Neg. LLF: 158.3520919622804
Iteration: 10, Func. Count: 95, Neg. LLF: 158.34961273315844
Iteration: 11, Func. Count: 104, Neg. LLF: 158.34481986656664
Iteration: 12, Func. Count: 113, Neg. LLF: 158.32991559656227
Iteration: 13, Func. Count: 122, Neg. LLF: 158.29287666706122
Iteration: 14, Func. Count: 131, Neg. LLF: 158.2924417066557
Iteration: 15, Func. Count: 140, Neg. LLF: 158.29221185361885
Iteration: 16, Func. Count: 149, Neg. LLF: 158.2920478086905
Iteration: 17, Func. Count: 158, Neg. LLF: 158.29207339109738
Iteration: 18, Func. Count: 168, Neg. LLF: 313.7307170169195
Iteration: 19, Func. Count: 181, Neg. LLF: 158.29200201206748
Iteration: 20, Func. Count: 190, Neg. LLF: 158.2919991593334
Iteration: 21, Func. Count: 199, Neg. LLF: 158.2919986107009
Optimization terminated successfully (Exit mode 0)
Current function value: 158.2919986107009
Iterations: 22
Function evaluations: 199
Gradient evaluations: 21
Iteration: 1, Func. Count: 11, Neg. LLF: 374.2736018956514
Iteration: 2, Func. Count: 23, Neg. LLF: 159.0574980034964
Iteration: 3, Func. Count: 34, Neg. LLF: 158.92317592201658
Iteration: 4, Func. Count: 45, Neg. LLF: 158.3763164149457
Iteration: 5, Func. Count: 55, Neg. LLF: 158.315297222311
Iteration: 6, Func. Count: 65, Neg. LLF: 158.30838441805065
Iteration: 7, Func. Count: 75, Neg. LLF: 158.2999638277351
Iteration: 8, Func. Count: 85, Neg. LLF: 158.29413494007815
Iteration: 9, Func. Count: 95, Neg. LLF: 158.28840233357087
Iteration: 10, Func. Count: 105, Neg. LLF: 158.28533709552215
Iteration: 11, Func. Count: 115, Neg. LLF: 158.285100707609
Iteration: 12, Func. Count: 125, Neg. LLF: 158.28509766444532
Iteration: 13, Func. Count: 134, Neg. LLF: 158.28509766464424
Optimization terminated successfully (Exit mode 0)
Current function value: 158.28509766444532
Iterations: 13
Function evaluations: 134
Gradient evaluations: 13
Iteration: 1, Func. Count: 12, Neg. LLF: 191.3454457355448
Iteration: 2, Func. Count: 24, Neg. LLF: 158.53723321091863
Iteration: 3, Func. Count: 35, Neg. LLF: 158.3457498468728
Iteration: 4, Func. Count: 46, Neg. LLF: 161.4907120254126
Iteration: 5, Func. Count: 58, Neg. LLF: 171.78590971022936
Iteration: 6, Func. Count: 71, Neg. LLF: 158.23190422295622
Iteration: 7, Func. Count: 82, Neg. LLF: 158.17085944326197
Iteration: 8, Func. Count: 93, Neg. LLF: 158.361812973981
Iteration: 9, Func. Count: 105, Neg. LLF: 158.14056880535068
Iteration: 10, Func. Count: 116, Neg. LLF: 158.12492193916324
Iteration: 11, Func. Count: 127, Neg. LLF: 158.11363141654024
Iteration: 12, Func. Count: 138, Neg. LLF: 158.10933013325177
Iteration: 13, Func. Count: 149, Neg. LLF: 158.1074615194613
Iteration: 14, Func. Count: 160, Neg. LLF: 158.1048284980352
Iteration: 15, Func. Count: 171, Neg. LLF: 158.09941720227897
Iteration: 16, Func. Count: 182, Neg. LLF: 158.09532747755904
Iteration: 17, Func. Count: 193, Neg. LLF: 158.09371386554173
Iteration: 18, Func. Count: 204, Neg. LLF: 158.09352413779425
Iteration: 19, Func. Count: 215, Neg. LLF: 158.0935179136194
Iteration: 20, Func. Count: 225, Neg. LLF: 158.0935179595445
Optimization terminated successfully (Exit mode 0)
Current function value: 158.0935179136194
Iterations: 20
Function evaluations: 225
Gradient evaluations: 20
Iteration: 1, Func. Count: 9, Neg. LLF: 163.75707587536095
Iteration: 2, Func. Count: 18, Neg. LLF: 161.81941603819362
Iteration: 3, Func. Count: 27, Neg. LLF: 162.47062657468783
Iteration: 4, Func. Count: 36, Neg. LLF: 160.25568283821917
Iteration: 5, Func. Count: 45, Neg. LLF: 160.02275333977673
Iteration: 6, Func. Count: 54, Neg. LLF: 159.3116052332355
Iteration: 7, Func. Count: 62, Neg. LLF: 159.2403518097098
Iteration: 8, Func. Count: 70, Neg. LLF: 159.80609057606068
Iteration: 9, Func. Count: 80, Neg. LLF: 159.44313625417223
Iteration: 10, Func. Count: 89, Neg. LLF: 159.154109921489
Iteration: 11, Func. Count: 97, Neg. LLF: 159.1322173455826
Iteration: 12, Func. Count: 105, Neg. LLF: 159.12677074025157
Iteration: 13, Func. Count: 113, Neg. LLF: 159.12400015814669
Iteration: 14, Func. Count: 121, Neg. LLF: 159.1221958292629
Iteration: 15, Func. Count: 129, Neg. LLF: 159.11941046044763
Iteration: 16, Func. Count: 137, Neg. LLF: 159.11373688893593
Iteration: 17, Func. Count: 145, Neg. LLF: 159.10932942834017
Iteration: 18, Func. Count: 153, Neg. LLF: 159.10786621053245
Iteration: 19, Func. Count: 161, Neg. LLF: 159.10776841003346
Iteration: 20, Func. Count: 169, Neg. LLF: 159.10776151692224
Iteration: 21, Func. Count: 176, Neg. LLF: 159.10776151691883
Optimization terminated successfully (Exit mode 0)
Current function value: 159.10776151692224
Iterations: 21
Function evaluations: 176
Gradient evaluations: 21
Iteration: 1, Func. Count: 10, Neg. LLF: 350.66414270620544
Iteration: 2, Func. Count: 21, Neg. LLF: 158.88101307791374
Iteration: 3, Func. Count: 31, Neg. LLF: 158.6286357034492
Iteration: 4, Func. Count: 41, Neg. LLF: 158.4637941269556
Iteration: 5, Func. Count: 50, Neg. LLF: 158.41600083034828
Iteration: 6, Func. Count: 59, Neg. LLF: 158.7415159783292
Iteration: 7, Func. Count: 69, Neg. LLF: 158.7107879184393
Iteration: 8, Func. Count: 79, Neg. LLF: 158.33830853104456
Iteration: 9, Func. Count: 89, Neg. LLF: 158.2922412636065
Iteration: 10, Func. Count: 98, Neg. LLF: 158.29209595395375
Iteration: 11, Func. Count: 107, Neg. LLF: 158.2920038304789
Iteration: 12, Func. Count: 116, Neg. LLF: 158.29199982575085
Iteration: 13, Func. Count: 125, Neg. LLF: 158.2919986198115
Iteration: 14, Func. Count: 133, Neg. LLF: 158.29199861985336
Optimization terminated successfully (Exit mode 0)
Current function value: 158.2919986198115
Iterations: 14
Function evaluations: 133
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 362.9240810021803
Iteration: 2, Func. Count: 23, Neg. LLF: 158.79055115157345
Iteration: 3, Func. Count: 34, Neg. LLF: 158.36786901460923
Iteration: 4, Func. Count: 44, Neg. LLF: 158.4322576689526
Iteration: 5, Func. Count: 55, Neg. LLF: 158.3635154906069
Iteration: 6, Func. Count: 65, Neg. LLF: 158.36056111447593
Iteration: 7, Func. Count: 75, Neg. LLF: 158.3585953216759
Iteration: 8, Func. Count: 85, Neg. LLF: 158.35417396516328
Iteration: 9, Func. Count: 95, Neg. LLF: 158.34776322792428
Iteration: 10, Func. Count: 105, Neg. LLF: 158.3373346461768
Iteration: 11, Func. Count: 115, Neg. LLF: 158.3358088362491
Iteration: 12, Func. Count: 125, Neg. LLF: 158.32528700339952
Iteration: 13, Func. Count: 135, Neg. LLF: 158.29546359919595
Iteration: 14, Func. Count: 145, Neg. LLF: 158.29302805799787
Iteration: 15, Func. Count: 155, Neg. LLF: 158.29214590802343
Iteration: 16, Func. Count: 165, Neg. LLF: 158.29200541419834
Iteration: 17, Func. Count: 175, Neg. LLF: 158.29199869578306
Iteration: 18, Func. Count: 184, Neg. LLF: 158.29199869771833
Optimization terminated successfully (Exit mode 0)
Current function value: 158.29199869578306
Iterations: 18
Function evaluations: 184
Gradient evaluations: 18
Iteration: 1, Func. Count: 12, Neg. LLF: 369.5606814164818
Iteration: 2, Func. Count: 25, Neg. LLF: 159.09249652264918
Iteration: 3, Func. Count: 37, Neg. LLF: 158.40930226863927
Iteration: 4, Func. Count: 48, Neg. LLF: 158.43321878975328
Iteration: 5, Func. Count: 60, Neg. LLF: 158.3810840011501
Iteration: 6, Func. Count: 72, Neg. LLF: 158.36085003862232
Iteration: 7, Func. Count: 83, Neg. LLF: 158.34123775805008
Iteration: 8, Func. Count: 94, Neg. LLF: 158.3226688805938
Iteration: 9, Func. Count: 105, Neg. LLF: 158.31389824035458
Iteration: 10, Func. Count: 116, Neg. LLF: 158.29098151686253
Iteration: 11, Func. Count: 127, Neg. LLF: 158.28723152842937
Iteration: 12, Func. Count: 138, Neg. LLF: 158.2857269342388
Iteration: 13, Func. Count: 149, Neg. LLF: 158.28518641389243
Iteration: 14, Func. Count: 160, Neg. LLF: 158.2851445403753
Iteration: 15, Func. Count: 171, Neg. LLF: 158.28513178248957
Iteration: 16, Func. Count: 182, Neg. LLF: 158.2851094375346
Iteration: 17, Func. Count: 193, Neg. LLF: 158.2850991681088
Iteration: 18, Func. Count: 204, Neg. LLF: 158.28509711573065
Iteration: 19, Func. Count: 214, Neg. LLF: 158.28509711561412
Optimization terminated successfully (Exit mode 0)
Current function value: 158.28509711573065
Iterations: 19
Function evaluations: 214
Gradient evaluations: 19
Iteration: 1, Func. Count: 13, Neg. LLF: 191.29137596376086
Iteration: 2, Func. Count: 26, Neg. LLF: 159.50447439622928
Iteration: 3, Func. Count: 39, Neg. LLF: 158.83665439725476
Iteration: 4, Func. Count: 51, Neg. LLF: 160.26806749704335
Iteration: 5, Func. Count: 65, Neg. LLF: 158.46323551456544
Iteration: 6, Func. Count: 77, Neg. LLF: 158.40145568776978
Iteration: 7, Func. Count: 89, Neg. LLF: 158.35602788028265
Iteration: 8, Func. Count: 101, Neg. LLF: 158.347478625933
Iteration: 9, Func. Count: 113, Neg. LLF: 158.33472858515782
Iteration: 10, Func. Count: 125, Neg. LLF: 158.32910456441422
Iteration: 11, Func. Count: 137, Neg. LLF: 158.31504948762645
Iteration: 12, Func. Count: 149, Neg. LLF: 158.30332695909877
Iteration: 13, Func. Count: 161, Neg. LLF: 158.29411159540814
Iteration: 14, Func. Count: 173, Neg. LLF: 158.29392058596005
Iteration: 15, Func. Count: 185, Neg. LLF: 158.29391447943203
Iteration: 16, Func. Count: 196, Neg. LLF: 158.29391447952253
Optimization terminated successfully (Exit mode 0)
Current function value: 158.29391447943203
Iterations: 16
Function evaluations: 196
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 162.0279961266597
Iteration: 2, Func. Count: 20, Neg. LLF: 160.89759970411487
Iteration: 3, Func. Count: 30, Neg. LLF: 161.08516026826373
Iteration: 4, Func. Count: 41, Neg. LLF: 157.85519293549552
Iteration: 5, Func. Count: 50, Neg. LLF: 157.63623949854264
Iteration: 6, Func. Count: 59, Neg. LLF: 157.5883745566341
Iteration: 7, Func. Count: 68, Neg. LLF: 157.5584435764825
Iteration: 8, Func. Count: 77, Neg. LLF: 157.49097225353594
Iteration: 9, Func. Count: 86, Neg. LLF: 157.40041793498568
Iteration: 10, Func. Count: 95, Neg. LLF: 157.25641682813554
Iteration: 11, Func. Count: 104, Neg. LLF: 157.21805817673493
Iteration: 12, Func. Count: 113, Neg. LLF: 157.2119030038439
Iteration: 13, Func. Count: 122, Neg. LLF: 157.21116898730142
Iteration: 14, Func. Count: 131, Neg. LLF: 157.2110485347654
Iteration: 15, Func. Count: 140, Neg. LLF: 157.21104286814196
Iteration: 16, Func. Count: 148, Neg. LLF: 157.21104286401004
Optimization terminated successfully (Exit mode 0)
Current function value: 157.21104286814196
Iterations: 16
Function evaluations: 148
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 353.93954105562887
Iteration: 2, Func. Count: 23, Neg. LLF: 158.96840997849438
Iteration: 3, Func. Count: 34, Neg. LLF: 158.34985962958405
Iteration: 4, Func. Count: 44, Neg. LLF: 158.367414801106
Iteration: 5, Func. Count: 55, Neg. LLF: 158.33166125500728
Iteration: 6, Func. Count: 65, Neg. LLF: 158.31331276657463
Iteration: 7, Func. Count: 75, Neg. LLF: 158.27804779673195
Iteration: 8, Func. Count: 85, Neg. LLF: 158.27539082344708
Iteration: 9, Func. Count: 95, Neg. LLF: 158.27391756111746
Iteration: 10, Func. Count: 105, Neg. LLF: 158.27391457350063
Iteration: 11, Func. Count: 115, Neg. LLF: 158.27390947998458
Iteration: 12, Func. Count: 124, Neg. LLF: 158.27390948004145
Optimization terminated successfully (Exit mode 0)
Current function value: 158.27390947998458
Iterations: 12
Function evaluations: 124
Gradient evaluations: 12
Iteration: 1, Func. Count: 12, Neg. LLF: 366.50177319282926
Iteration: 2, Func. Count: 25, Neg. LLF: 158.953306900617
Iteration: 3, Func. Count: 37, Neg. LLF: 158.40495010672774
Iteration: 4, Func. Count: 48, Neg. LLF: 158.30662627376722
Iteration: 5, Func. Count: 59, Neg. LLF: 158.2947415854564
Iteration: 6, Func. Count: 70, Neg. LLF: 158.2934819247653
Iteration: 7, Func. Count: 81, Neg. LLF: 158.29061486306205
Iteration: 8, Func. Count: 92, Neg. LLF: 158.28553862461536
Iteration: 9, Func. Count: 103, Neg. LLF: 158.28285050496152
Iteration: 10, Func. Count: 114, Neg. LLF: 158.28228838093514
Iteration: 11, Func. Count: 125, Neg. LLF: 158.28081509429754
Iteration: 12, Func. Count: 136, Neg. LLF: 158.27600275571365
Iteration: 13, Func. Count: 147, Neg. LLF: 158.27418078613894
Iteration: 14, Func. Count: 158, Neg. LLF: 158.2739521636964
Iteration: 15, Func. Count: 169, Neg. LLF: 158.27392392733935
Iteration: 16, Func. Count: 180, Neg. LLF: 158.27391017740212
Iteration: 17, Func. Count: 191, Neg. LLF: 158.2739093997526
Optimization terminated successfully (Exit mode 0)
Current function value: 158.2739093997526
Iterations: 17
Function evaluations: 191
Gradient evaluations: 17
Iteration: 1, Func. Count: 13, Neg. LLF: 172.66728256053358
Iteration: 2, Func. Count: 26, Neg. LLF: 169.96861138625195
Iteration: 3, Func. Count: 39, Neg. LLF: 157.264461061895
Iteration: 4, Func. Count: 51, Neg. LLF: 157.73178206408537
Iteration: 5, Func. Count: 64, Neg. LLF: 157.23715383560804
Iteration: 6, Func. Count: 77, Neg. LLF: 158.72625907010715
Iteration: 7, Func. Count: 90, Neg. LLF: 157.15554815922198
Iteration: 8, Func. Count: 102, Neg. LLF: 157.1141701271888
Iteration: 9, Func. Count: 114, Neg. LLF: 157.06708744616327
Iteration: 10, Func. Count: 126, Neg. LLF: 157.04196381699208
Iteration: 11, Func. Count: 138, Neg. LLF: 157.0400751160026
Iteration: 12, Func. Count: 151, Neg. LLF: 157.0347708537458
Iteration: 13, Func. Count: 163, Neg. LLF: 157.03326868727834
Iteration: 14, Func. Count: 175, Neg. LLF: 157.0314190438982
Iteration: 15, Func. Count: 187, Neg. LLF: 157.02929653212112
Iteration: 16, Func. Count: 199, Neg. LLF: 157.0276185930411
Iteration: 17, Func. Count: 211, Neg. LLF: 157.02663865918564
Iteration: 18, Func. Count: 223, Neg. LLF: 157.0263954243315
Iteration: 19, Func. Count: 235, Neg. LLF: 157.0263640652413
Iteration: 20, Func. Count: 247, Neg. LLF: 157.02636198567038
Iteration: 21, Func. Count: 258, Neg. LLF: 157.02636198566037
Optimization terminated successfully (Exit mode 0)
Current function value: 157.02636198567038
Iterations: 21
Function evaluations: 258
Gradient evaluations: 21
Iteration: 1, Func. Count: 14, Neg. LLF: 191.49929388628658
Iteration: 2, Func. Count: 28, Neg. LLF: 165.83205903716774
Iteration: 3, Func. Count: 42, Neg. LLF: 157.28384274388128
Iteration: 4, Func. Count: 55, Neg. LLF: 158.50932537487378
Iteration: 5, Func. Count: 69, Neg. LLF: 157.2632845325891
Iteration: 6, Func. Count: 83, Neg. LLF: 157.01522251261972
Iteration: 7, Func. Count: 96, Neg. LLF: 156.92613637434343
Iteration: 8, Func. Count: 109, Neg. LLF: 156.86850139444905
Iteration: 9, Func. Count: 122, Neg. LLF: 156.83252915402022
Iteration: 10, Func. Count: 135, Neg. LLF: 156.82847163583804
Iteration: 11, Func. Count: 148, Neg. LLF: 156.8279280437687
Iteration: 12, Func. Count: 161, Neg. LLF: 156.82787187412094
Iteration: 13, Func. Count: 174, Neg. LLF: 156.82784967272153
Iteration: 14, Func. Count: 187, Neg. LLF: 156.82782190833223
Iteration: 15, Func. Count: 200, Neg. LLF: 156.82777413456702
Iteration: 16, Func. Count: 213, Neg. LLF: 156.827738414819
Iteration: 17, Func. Count: 226, Neg. LLF: 156.82772693944676
Iteration: 18, Func. Count: 239, Neg. LLF: 156.82772579716706
Iteration: 19, Func. Count: 251, Neg. LLF: 156.82772579717093
Optimization terminated successfully (Exit mode 0)
Current function value: 156.82772579716706
Iterations: 19
Function evaluations: 251
Gradient evaluations: 19
Iteration: 1, Func. Count: 11, Neg. LLF: 160.76031665252304
Iteration: 2, Func. Count: 22, Neg. LLF: 160.03052028134988
Iteration: 3, Func. Count: 33, Neg. LLF: 160.0303714431509
Iteration: 4, Func. Count: 44, Neg. LLF: 158.55495904577
Iteration: 5, Func. Count: 55, Neg. LLF: 158.0164379168531
Iteration: 6, Func. Count: 66, Neg. LLF: 157.64002682112417
Iteration: 7, Func. Count: 76, Neg. LLF: 157.58108834912665
Iteration: 8, Func. Count: 86, Neg. LLF: 157.4863707535592
Iteration: 9, Func. Count: 96, Neg. LLF: 157.46223384254438
Iteration: 10, Func. Count: 106, Neg. LLF: 157.35412757146952
Iteration: 11, Func. Count: 116, Neg. LLF: 157.2571049661253
Iteration: 12, Func. Count: 126, Neg. LLF: 157.21553350320744
Iteration: 13, Func. Count: 136, Neg. LLF: 157.21121145045075
Iteration: 14, Func. Count: 146, Neg. LLF: 157.2110456519099
Iteration: 15, Func. Count: 156, Neg. LLF: 157.21104297285478
Iteration: 16, Func. Count: 165, Neg. LLF: 157.21104310662395
Optimization terminated successfully (Exit mode 0)
Current function value: 157.21104297285478
Iterations: 16
Function evaluations: 165
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 407.33889544857124
Iteration: 2, Func. Count: 25, Neg. LLF: 158.7645124913385
Iteration: 3, Func. Count: 37, Neg. LLF: 160.7948686414479
Iteration: 4, Func. Count: 49, Neg. LLF: 158.32953276904257
Iteration: 5, Func. Count: 60, Neg. LLF: 158.31158151991917
Iteration: 6, Func. Count: 71, Neg. LLF: 158.2799131662328
Iteration: 7, Func. Count: 82, Neg. LLF: 158.2746379271434
Iteration: 8, Func. Count: 93, Neg. LLF: 158.27412146045722
Iteration: 9, Func. Count: 104, Neg. LLF: 158.2739400604093
Iteration: 10, Func. Count: 115, Neg. LLF: 158.27391295338768
Iteration: 11, Func. Count: 126, Neg. LLF: 158.2739093386976
Iteration: 12, Func. Count: 136, Neg. LLF: 158.27390933880588
Optimization terminated successfully (Exit mode 0)
Current function value: 158.2739093386976
Iterations: 12
Function evaluations: 136
Gradient evaluations: 12
Iteration: 1, Func. Count: 13, Neg. LLF: 366.18640430071576
Iteration: 2, Func. Count: 27, Neg. LLF: 158.90506070788925
Iteration: 3, Func. Count: 40, Neg. LLF: 158.58749703636494
Iteration: 4, Func. Count: 53, Neg. LLF: 158.3570528180025
Iteration: 5, Func. Count: 65, Neg. LLF: 158.29650596469074
Iteration: 6, Func. Count: 77, Neg. LLF: 158.29421237983584
Iteration: 7, Func. Count: 89, Neg. LLF: 158.29267977094128
Iteration: 8, Func. Count: 101, Neg. LLF: 158.28933724064066
Iteration: 9, Func. Count: 113, Neg. LLF: 158.28536903595102
Iteration: 10, Func. Count: 125, Neg. LLF: 158.28264584395512
Iteration: 11, Func. Count: 137, Neg. LLF: 158.2821880882893
Iteration: 12, Func. Count: 149, Neg. LLF: 158.28114005152105
Iteration: 13, Func. Count: 161, Neg. LLF: 158.27638760022464
Iteration: 14, Func. Count: 173, Neg. LLF: 158.27566222021937
Iteration: 15, Func. Count: 185, Neg. LLF: 158.27401426571367
Iteration: 16, Func. Count: 197, Neg. LLF: 158.2739268545301
Iteration: 17, Func. Count: 209, Neg. LLF: 158.2739096721717
Iteration: 18, Func. Count: 220, Neg. LLF: 158.2739096735259
Optimization terminated successfully (Exit mode 0)
Current function value: 158.2739096721717
Iterations: 18
Function evaluations: 220
Gradient evaluations: 18
Iteration: 1, Func. Count: 14, Neg. LLF: 176.4755368704779
Iteration: 2, Func. Count: 28, Neg. LLF: 170.33799455466882
Iteration: 3, Func. Count: 42, Neg. LLF: 157.27077796719365
Iteration: 4, Func. Count: 55, Neg. LLF: 157.68787194701656
Iteration: 5, Func. Count: 69, Neg. LLF: 157.22437409490055
Iteration: 6, Func. Count: 82, Neg. LLF: 158.51424007578117
Iteration: 7, Func. Count: 96, Neg. LLF: 157.14446159966695
Iteration: 8, Func. Count: 109, Neg. LLF: 157.1088701858731
Iteration: 9, Func. Count: 122, Neg. LLF: 157.06326210244427
Iteration: 10, Func. Count: 135, Neg. LLF: 157.04266572088545
Iteration: 11, Func. Count: 148, Neg. LLF: 157.0396963101045
Iteration: 12, Func. Count: 161, Neg. LLF: 157.03775706804885
Iteration: 13, Func. Count: 174, Neg. LLF: 157.03446213624764
Iteration: 14, Func. Count: 187, Neg. LLF: 157.0302024674319
Iteration: 15, Func. Count: 200, Neg. LLF: 157.02748703111112
Iteration: 16, Func. Count: 213, Neg. LLF: 157.02659250093933
Iteration: 17, Func. Count: 226, Neg. LLF: 157.02640975832952
Iteration: 18, Func. Count: 239, Neg. LLF: 157.02636826852867
Iteration: 19, Func. Count: 252, Neg. LLF: 157.0263623178505
Iteration: 20, Func. Count: 264, Neg. LLF: 157.02636231782853
Optimization terminated successfully (Exit mode 0)
Current function value: 157.0263623178505
Iterations: 20
Function evaluations: 264
Gradient evaluations: 20
Iteration: 1, Func. Count: 15, Neg. LLF: 191.46419080022176
Iteration: 2, Func. Count: 30, Neg. LLF: 166.4795931399404
Iteration: 3, Func. Count: 45, Neg. LLF: 157.2838990260388
Iteration: 4, Func. Count: 59, Neg. LLF: 158.4898052297606
Iteration: 5, Func. Count: 74, Neg. LLF: 157.2730207075821
Iteration: 6, Func. Count: 89, Neg. LLF: 157.02659896043568
Iteration: 7, Func. Count: 103, Neg. LLF: 156.93985261133886
Iteration: 8, Func. Count: 117, Neg. LLF: 156.8746203220256
Iteration: 9, Func. Count: 131, Neg. LLF: 156.83810494068194
Iteration: 10, Func. Count: 145, Neg. LLF: 156.82894782931723
Iteration: 11, Func. Count: 159, Neg. LLF: 156.8279996707269
Iteration: 12, Func. Count: 173, Neg. LLF: 156.82792331714927
Iteration: 13, Func. Count: 187, Neg. LLF: 156.82789624253184
Iteration: 14, Func. Count: 201, Neg. LLF: 156.82785324352668
Iteration: 15, Func. Count: 215, Neg. LLF: 156.82779461093676
Iteration: 16, Func. Count: 229, Neg. LLF: 156.82774501511437
Iteration: 17, Func. Count: 243, Neg. LLF: 156.82772784808097
Iteration: 18, Func. Count: 257, Neg. LLF: 156.82772583526148
Iteration: 19, Func. Count: 270, Neg. LLF: 156.82772583527833
Optimization terminated successfully (Exit mode 0)
Current function value: 156.82772583526148
Iterations: 19
Function evaluations: 270
Gradient evaluations: 19
Iteration: 1, Func. Count: 8, Neg. LLF: 162.25659643566578
Iteration: 2, Func. Count: 16, Neg. LLF: 163.0119082968444
Iteration: 3, Func. Count: 25, Neg. LLF: 160.65131752536342
Iteration: 4, Func. Count: 32, Neg. LLF: 160.57990595813175
Iteration: 5, Func. Count: 39, Neg. LLF: 160.5671325929538
Iteration: 6, Func. Count: 46, Neg. LLF: 160.53383020021346
Iteration: 7, Func. Count: 53, Neg. LLF: 160.47386670917774
Iteration: 8, Func. Count: 60, Neg. LLF: 160.3162909898563
Iteration: 9, Func. Count: 67, Neg. LLF: 160.22096414558806
Iteration: 10, Func. Count: 74, Neg. LLF: 160.21417233435793
Iteration: 11, Func. Count: 81, Neg. LLF: 160.21075598957054
Iteration: 12, Func. Count: 88, Neg. LLF: 160.2106861959157
Iteration: 13, Func. Count: 95, Neg. LLF: 160.21067836896657
Iteration: 14, Func. Count: 101, Neg. LLF: 160.21067846978272
Optimization terminated successfully (Exit mode 0)
Current function value: 160.21067836896657
Iterations: 14
Function evaluations: 101
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 416.20504788532935
Iteration: 2, Func. Count: 19, Neg. LLF: 158.75510511276747
Iteration: 3, Func. Count: 27, Neg. LLF: 183.19772290256475
Iteration: 4, Func. Count: 37, Neg. LLF: 159.21291403621936
Iteration: 5, Func. Count: 46, Neg. LLF: 158.50902976185435
Iteration: 6, Func. Count: 54, Neg. LLF: 158.4040161719587
Iteration: 7, Func. Count: 62, Neg. LLF: 158.31603002803894
Iteration: 8, Func. Count: 70, Neg. LLF: 158.30465768110162
Iteration: 9, Func. Count: 78, Neg. LLF: 158.29368978714785
Iteration: 10, Func. Count: 86, Neg. LLF: 158.29204149166452
Iteration: 11, Func. Count: 94, Neg. LLF: 158.2919988294672
Iteration: 12, Func. Count: 101, Neg. LLF: 158.29199882919553
Optimization terminated successfully (Exit mode 0)
Current function value: 158.2919988294672
Iterations: 12
Function evaluations: 101
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 426.9620751245921
Iteration: 2, Func. Count: 21, Neg. LLF: 158.56179082172667
Iteration: 3, Func. Count: 30, Neg. LLF: 159.32265302622451
Iteration: 4, Func. Count: 41, Neg. LLF: 174.33652652631324
Iteration: 5, Func. Count: 51, Neg. LLF: 158.4117348065369
Iteration: 6, Func. Count: 60, Neg. LLF: 158.39944881092305
Iteration: 7, Func. Count: 69, Neg. LLF: 158.38038227650878
Iteration: 8, Func. Count: 78, Neg. LLF: 158.35969085685844
Iteration: 9, Func. Count: 87, Neg. LLF: 158.3459200526016
Iteration: 10, Func. Count: 96, Neg. LLF: 158.29246838056878
Iteration: 11, Func. Count: 105, Neg. LLF: 158.293445472437
Iteration: 12, Func. Count: 115, Neg. LLF: 158.29199901664202
Iteration: 13, Func. Count: 123, Neg. LLF: 158.2919990188059
Optimization terminated successfully (Exit mode 0)
Current function value: 158.29199901664202
Iterations: 13
Function evaluations: 123
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 191.8128045132408
Iteration: 2, Func. Count: 22, Neg. LLF: 159.20300758194557
Iteration: 3, Func. Count: 32, Neg. LLF: 159.40532488646085
Iteration: 4, Func. Count: 43, Neg. LLF: 158.5845711136722
Iteration: 5, Func. Count: 53, Neg. LLF: 158.54764284728418
Iteration: 6, Func. Count: 64, Neg. LLF: 158.35896645915898
Iteration: 7, Func. Count: 74, Neg. LLF: 158.32498077120363
Iteration: 8, Func. Count: 84, Neg. LLF: 158.3185438531739
Iteration: 9, Func. Count: 95, Neg. LLF: 161.8635100604084
Iteration: 10, Func. Count: 106, Neg. LLF: 158.1715562306302
Iteration: 11, Func. Count: 116, Neg. LLF: 158.14991894816148
Iteration: 12, Func. Count: 126, Neg. LLF: 158.15871059469464
Iteration: 13, Func. Count: 137, Neg. LLF: 158.1462787545993
Iteration: 14, Func. Count: 147, Neg. LLF: 158.14587972542282
Iteration: 15, Func. Count: 156, Neg. LLF: 158.14587972524743
Optimization terminated successfully (Exit mode 0)
Current function value: 158.14587972542282
Iterations: 15
Function evaluations: 156
Gradient evaluations: 15
Iteration: 1, Func. Count: 12, Neg. LLF: 191.95567119752954
Iteration: 2, Func. Count: 24, Neg. LLF: 158.99863059197025
Iteration: 3, Func. Count: 35, Neg. LLF: 158.94534212417827
Iteration: 4, Func. Count: 46, Neg. LLF: 158.67250410857147
Iteration: 5, Func. Count: 57, Neg. LLF: 158.46001091141028
Iteration: 6, Func. Count: 68, Neg. LLF: 158.4036533863346
Iteration: 7, Func. Count: 79, Neg. LLF: 158.38201337794376
Iteration: 8, Func. Count: 90, Neg. LLF: 158.3751522558434
Iteration: 9, Func. Count: 101, Neg. LLF: 158.3627368970594
Iteration: 10, Func. Count: 112, Neg. LLF: 158.35029976885255
Iteration: 11, Func. Count: 123, Neg. LLF: 158.3374449734581
Iteration: 12, Func. Count: 134, Neg. LLF: 158.33597643388865
Iteration: 13, Func. Count: 145, Neg. LLF: 158.3358516485942
Iteration: 14, Func. Count: 156, Neg. LLF: 158.33585012597752
Iteration: 15, Func. Count: 166, Neg. LLF: 158.33585012605522
Optimization terminated successfully (Exit mode 0)
Current function value: 158.33585012597752
Iterations: 15
Function evaluations: 166
Gradient evaluations: 15
Iteration: 1, Func. Count: 9, Neg. LLF: 161.66634562209305
Iteration: 2, Func. Count: 18, Neg. LLF: 161.46034451956055
Iteration: 3, Func. Count: 27, Neg. LLF: 160.81884421334664
Iteration: 4, Func. Count: 36, Neg. LLF: 159.56157440078172
Iteration: 5, Func. Count: 44, Neg. LLF: 159.36732444882912
Iteration: 6, Func. Count: 52, Neg. LLF: 159.41060455443963
Iteration: 7, Func. Count: 61, Neg. LLF: 159.3072060379738
Iteration: 8, Func. Count: 70, Neg. LLF: 159.21935415365033
Iteration: 9, Func. Count: 78, Neg. LLF: 159.19382604876714
Iteration: 10, Func. Count: 86, Neg. LLF: 159.1805326179197
Iteration: 11, Func. Count: 94, Neg. LLF: 159.17744389127705
Iteration: 12, Func. Count: 102, Neg. LLF: 159.16971889334812
Iteration: 13, Func. Count: 110, Neg. LLF: 159.16008021147286
Iteration: 14, Func. Count: 118, Neg. LLF: 159.15037497998043
Iteration: 15, Func. Count: 126, Neg. LLF: 159.147477297914
Iteration: 16, Func. Count: 134, Neg. LLF: 159.14724811892128
Iteration: 17, Func. Count: 142, Neg. LLF: 159.14722230096226
Iteration: 18, Func. Count: 149, Neg. LLF: 159.14722230096027
Optimization terminated successfully (Exit mode 0)
Current function value: 159.14722230096226
Iterations: 18
Function evaluations: 149
Gradient evaluations: 18
Iteration: 1, Func. Count: 10, Neg. LLF: 351.7705511167944
Iteration: 2, Func. Count: 21, Neg. LLF: 198.44162266367368
Iteration: 3, Func. Count: 32, Neg. LLF: 158.8445120060272
Iteration: 4, Func. Count: 42, Neg. LLF: 158.65970665642374
Iteration: 5, Func. Count: 52, Neg. LLF: 158.4473009799581
Iteration: 6, Func. Count: 61, Neg. LLF: 158.41762104652787
Iteration: 7, Func. Count: 70, Neg. LLF: 158.41858628755864
Iteration: 8, Func. Count: 80, Neg. LLF: 158.30040244935896
Iteration: 9, Func. Count: 89, Neg. LLF: 158.33019420933317
Iteration: 10, Func. Count: 99, Neg. LLF: 158.29412033401422
Iteration: 11, Func. Count: 108, Neg. LLF: 158.29201247677352
Iteration: 12, Func. Count: 117, Neg. LLF: 158.29199865721586
Iteration: 13, Func. Count: 125, Neg. LLF: 158.2919986573251
Optimization terminated successfully (Exit mode 0)
Current function value: 158.29199865721586
Iterations: 13
Function evaluations: 125
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 367.56550534537814
Iteration: 2, Func. Count: 23, Neg. LLF: 158.78624382492018
Iteration: 3, Func. Count: 34, Neg. LLF: 158.4149137641641
Iteration: 4, Func. Count: 44, Neg. LLF: 158.3690189211701
Iteration: 5, Func. Count: 54, Neg. LLF: 158.37089301061894
Iteration: 6, Func. Count: 65, Neg. LLF: 158.36161938994167
Iteration: 7, Func. Count: 75, Neg. LLF: 158.35869888539867
Iteration: 8, Func. Count: 85, Neg. LLF: 158.35627384682516
Iteration: 9, Func. Count: 95, Neg. LLF: 158.35295763667997
Iteration: 10, Func. Count: 105, Neg. LLF: 158.35031278401527
Iteration: 11, Func. Count: 115, Neg. LLF: 158.34654378822975
Iteration: 12, Func. Count: 125, Neg. LLF: 158.3296369751634
Iteration: 13, Func. Count: 135, Neg. LLF: 158.29918246310018
Iteration: 14, Func. Count: 145, Neg. LLF: 158.29415029029798
Iteration: 15, Func. Count: 155, Neg. LLF: 158.29202047113404
Iteration: 16, Func. Count: 165, Neg. LLF: 158.29199950951454
Iteration: 17, Func. Count: 175, Neg. LLF: 158.29199862399992
Optimization terminated successfully (Exit mode 0)
Current function value: 158.29199862399992
Iterations: 17
Function evaluations: 175
Gradient evaluations: 17
Iteration: 1, Func. Count: 12, Neg. LLF: 374.3387760040161
Iteration: 2, Func. Count: 25, Neg. LLF: 159.0677606490301
Iteration: 3, Func. Count: 37, Neg. LLF: 158.92116772186802
Iteration: 4, Func. Count: 49, Neg. LLF: 158.38946474197192
Iteration: 5, Func. Count: 61, Neg. LLF: 158.31412059219804
Iteration: 6, Func. Count: 72, Neg. LLF: 158.30778324012618
Iteration: 7, Func. Count: 83, Neg. LLF: 158.30130473164962
Iteration: 8, Func. Count: 94, Neg. LLF: 158.29153326944905
Iteration: 9, Func. Count: 105, Neg. LLF: 158.2878200578778
Iteration: 10, Func. Count: 116, Neg. LLF: 158.28572252786
Iteration: 11, Func. Count: 127, Neg. LLF: 158.2851653074627
Iteration: 12, Func. Count: 138, Neg. LLF: 158.28510916890374
Iteration: 13, Func. Count: 149, Neg. LLF: 158.28510200611225
Iteration: 14, Func. Count: 160, Neg. LLF: 158.2850971503964
Iteration: 15, Func. Count: 170, Neg. LLF: 158.28509715043427
Optimization terminated successfully (Exit mode 0)
Current function value: 158.2850971503964
Iterations: 15
Function evaluations: 170
Gradient evaluations: 15
Iteration: 1, Func. Count: 13, Neg. LLF: 191.33937910880138
Iteration: 2, Func. Count: 26, Neg. LLF: 158.56550502209913
Iteration: 3, Func. Count: 38, Neg. LLF: 158.38856580450434
Iteration: 4, Func. Count: 50, Neg. LLF: 161.68885420863208
Iteration: 5, Func. Count: 63, Neg. LLF: 174.7981439147132
Iteration: 6, Func. Count: 77, Neg. LLF: 158.27161153430822
Iteration: 7, Func. Count: 90, Neg. LLF: 158.17902927455685
Iteration: 8, Func. Count: 102, Neg. LLF: 158.1445334312679
Iteration: 9, Func. Count: 114, Neg. LLF: 158.14218567674152
Iteration: 10, Func. Count: 126, Neg. LLF: 158.141905390758
Iteration: 11, Func. Count: 138, Neg. LLF: 158.14156990927893
Iteration: 12, Func. Count: 150, Neg. LLF: 158.14082196221477
Iteration: 13, Func. Count: 162, Neg. LLF: 158.14017205642728
Iteration: 14, Func. Count: 174, Neg. LLF: 158.13985368729033
Iteration: 15, Func. Count: 186, Neg. LLF: 158.1398175561445
Iteration: 16, Func. Count: 198, Neg. LLF: 158.1398164518547
Iteration: 17, Func. Count: 209, Neg. LLF: 158.13981645396842
Optimization terminated successfully (Exit mode 0)
Current function value: 158.1398164518547
Iterations: 17
Function evaluations: 209
Gradient evaluations: 17
Iteration: 1, Func. Count: 10, Neg. LLF: 163.8084497351212
Iteration: 2, Func. Count: 20, Neg. LLF: 161.53656885891715
Iteration: 3, Func. Count: 30, Neg. LLF: 161.4361604951108
Iteration: 4, Func. Count: 40, Neg. LLF: 159.69821751443388
Iteration: 5, Func. Count: 49, Neg. LLF: 160.1810819087052
Iteration: 6, Func. Count: 59, Neg. LLF: 163.86083257171066
Iteration: 7, Func. Count: 70, Neg. LLF: 159.92947917098806
Iteration: 8, Func. Count: 81, Neg. LLF: 159.8694573537199
Iteration: 9, Func. Count: 91, Neg. LLF: 159.1604017421819
Iteration: 10, Func. Count: 100, Neg. LLF: 159.14588387001817
Iteration: 11, Func. Count: 109, Neg. LLF: 159.1389389203317
Iteration: 12, Func. Count: 118, Neg. LLF: 159.13387816777964
Iteration: 13, Func. Count: 127, Neg. LLF: 159.12963449713433
Iteration: 14, Func. Count: 136, Neg. LLF: 159.1220841056698
Iteration: 15, Func. Count: 145, Neg. LLF: 159.1138827246191
Iteration: 16, Func. Count: 154, Neg. LLF: 159.1085305677706
Iteration: 17, Func. Count: 163, Neg. LLF: 159.10781771855343
Iteration: 18, Func. Count: 172, Neg. LLF: 159.10776442435753
Iteration: 19, Func. Count: 181, Neg. LLF: 159.1077615704809
Iteration: 20, Func. Count: 189, Neg. LLF: 159.1077615704313
Optimization terminated successfully (Exit mode 0)
Current function value: 159.1077615704809
Iterations: 20
Function evaluations: 189
Gradient evaluations: 20
Iteration: 1, Func. Count: 11, Neg. LLF: 351.6285931086271
Iteration: 2, Func. Count: 23, Neg. LLF: 167.00887485500746
Iteration: 3, Func. Count: 35, Neg. LLF: 158.90480136038292
Iteration: 4, Func. Count: 46, Neg. LLF: 158.65621569098596
Iteration: 5, Func. Count: 57, Neg. LLF: 158.45846198724843
Iteration: 6, Func. Count: 67, Neg. LLF: 158.42891269873672
Iteration: 7, Func. Count: 77, Neg. LLF: 158.43274359839168
Iteration: 8, Func. Count: 88, Neg. LLF: 158.34993193918993
Iteration: 9, Func. Count: 98, Neg. LLF: 158.29709083798608
Iteration: 10, Func. Count: 108, Neg. LLF: 158.29465056474723
Iteration: 11, Func. Count: 118, Neg. LLF: 158.2937413590689
Iteration: 12, Func. Count: 128, Neg. LLF: 158.29200791358704
Iteration: 13, Func. Count: 138, Neg. LLF: 158.29199867751998
Iteration: 14, Func. Count: 147, Neg. LLF: 158.29199867780002
Optimization terminated successfully (Exit mode 0)
Current function value: 158.29199867751998
Iterations: 14
Function evaluations: 147
Gradient evaluations: 14
Iteration: 1, Func. Count: 12, Neg. LLF: 363.4841705843854
Iteration: 2, Func. Count: 25, Neg. LLF: 158.791151094937
Iteration: 3, Func. Count: 37, Neg. LLF: 158.36958456183297
Iteration: 4, Func. Count: 48, Neg. LLF: 158.51891935126469
Iteration: 5, Func. Count: 60, Neg. LLF: 158.36231343565868
Iteration: 6, Func. Count: 71, Neg. LLF: 158.36014248347087
Iteration: 7, Func. Count: 82, Neg. LLF: 158.3582465566532
Iteration: 8, Func. Count: 93, Neg. LLF: 158.3519016320193
Iteration: 9, Func. Count: 104, Neg. LLF: 158.3466921584311
Iteration: 10, Func. Count: 115, Neg. LLF: 158.34092442687265
Iteration: 11, Func. Count: 126, Neg. LLF: 158.34087510277746
Iteration: 12, Func. Count: 138, Neg. LLF: 158.32349068341807
Iteration: 13, Func. Count: 149, Neg. LLF: 158.29288572571238
Iteration: 14, Func. Count: 160, Neg. LLF: 158.2920524514898
Iteration: 15, Func. Count: 171, Neg. LLF: 158.29200242396146
Iteration: 16, Func. Count: 182, Neg. LLF: 158.2919996407487
Iteration: 17, Func. Count: 193, Neg. LLF: 158.29199859429656
Iteration: 18, Func. Count: 203, Neg. LLF: 158.29199859652672
Optimization terminated successfully (Exit mode 0)
Current function value: 158.29199859429656
Iterations: 18
Function evaluations: 203
Gradient evaluations: 18
Iteration: 1, Func. Count: 13, Neg. LLF: 369.63634759513155
Iteration: 2, Func. Count: 27, Neg. LLF: 159.09430860573298
Iteration: 3, Func. Count: 40, Neg. LLF: 158.39435782020462
Iteration: 4, Func. Count: 52, Neg. LLF: 158.43305493955904
Iteration: 5, Func. Count: 65, Neg. LLF: 158.3640316613301
Iteration: 6, Func. Count: 77, Neg. LLF: 158.34660336448536
Iteration: 7, Func. Count: 89, Neg. LLF: 158.3256356837242
Iteration: 8, Func. Count: 101, Neg. LLF: 158.31323160165334
Iteration: 9, Func. Count: 113, Neg. LLF: 158.3031772930747
Iteration: 10, Func. Count: 125, Neg. LLF: 158.29146331266335
Iteration: 11, Func. Count: 137, Neg. LLF: 158.28685227511022
Iteration: 12, Func. Count: 149, Neg. LLF: 158.28603156996272
Iteration: 13, Func. Count: 161, Neg. LLF: 158.28534560247152
Iteration: 14, Func. Count: 173, Neg. LLF: 158.28527194570609
Iteration: 15, Func. Count: 185, Neg. LLF: 158.2851033791205
Iteration: 16, Func. Count: 197, Neg. LLF: 158.28509755832908
Iteration: 17, Func. Count: 209, Neg. LLF: 158.28509699526123
Optimization terminated successfully (Exit mode 0)
Current function value: 158.28509699526123
Iterations: 17
Function evaluations: 209
Gradient evaluations: 17
Iteration: 1, Func. Count: 14, Neg. LLF: 191.28657135460276
Iteration: 2, Func. Count: 28, Neg. LLF: 159.5168920033561
Iteration: 3, Func. Count: 42, Neg. LLF: 158.87293832265198
Iteration: 4, Func. Count: 55, Neg. LLF: 160.36718906926305
Iteration: 5, Func. Count: 70, Neg. LLF: 158.47613275488564
Iteration: 6, Func. Count: 83, Neg. LLF: 158.40545372060865
Iteration: 7, Func. Count: 96, Neg. LLF: 158.3571302190458
Iteration: 8, Func. Count: 109, Neg. LLF: 158.34764067211236
Iteration: 9, Func. Count: 122, Neg. LLF: 158.33477793161498
Iteration: 10, Func. Count: 135, Neg. LLF: 158.32951910785363
Iteration: 11, Func. Count: 148, Neg. LLF: 158.31639924188678
Iteration: 12, Func. Count: 161, Neg. LLF: 158.30501062087163
Iteration: 13, Func. Count: 174, Neg. LLF: 158.29434496567606
Iteration: 14, Func. Count: 187, Neg. LLF: 158.29393061393162
Iteration: 15, Func. Count: 200, Neg. LLF: 158.2939151342642
Iteration: 16, Func. Count: 213, Neg. LLF: 158.29391421514475
Optimization terminated successfully (Exit mode 0)
Current function value: 158.29391421514475
Iterations: 16
Function evaluations: 213
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 161.25185528889656
Iteration: 2, Func. Count: 22, Neg. LLF: 160.22426132124914
Iteration: 3, Func. Count: 33, Neg. LLF: 159.0475893070652
Iteration: 4, Func. Count: 44, Neg. LLF: 158.3106976726562
Iteration: 5, Func. Count: 55, Neg. LLF: 157.63883883913672
Iteration: 6, Func. Count: 65, Neg. LLF: 157.60107007698088
Iteration: 7, Func. Count: 75, Neg. LLF: 157.53259081168912
Iteration: 8, Func. Count: 85, Neg. LLF: 157.48648069173316
Iteration: 9, Func. Count: 95, Neg. LLF: 157.4417064396612
Iteration: 10, Func. Count: 105, Neg. LLF: 157.25347745420729
Iteration: 11, Func. Count: 115, Neg. LLF: 157.2156521304915
Iteration: 12, Func. Count: 125, Neg. LLF: 157.21113971693512
Iteration: 13, Func. Count: 135, Neg. LLF: 157.21104315361384
Iteration: 14, Func. Count: 144, Neg. LLF: 157.21104314946803
Optimization terminated successfully (Exit mode 0)
Current function value: 157.21104315361384
Iterations: 14
Function evaluations: 144
Gradient evaluations: 14
Iteration: 1, Func. Count: 12, Neg. LLF: 354.8666179331102
Iteration: 2, Func. Count: 25, Neg. LLF: 158.96462280405999
Iteration: 3, Func. Count: 37, Neg. LLF: 158.35402559559006
Iteration: 4, Func. Count: 48, Neg. LLF: 158.3711022633551
Iteration: 5, Func. Count: 60, Neg. LLF: 158.33248927417497
Iteration: 6, Func. Count: 71, Neg. LLF: 158.31333044928016
Iteration: 7, Func. Count: 82, Neg. LLF: 158.3006689083186
Iteration: 8, Func. Count: 93, Neg. LLF: 158.28773507194717
Iteration: 9, Func. Count: 104, Neg. LLF: 158.27975486497786
Iteration: 10, Func. Count: 115, Neg. LLF: 158.27419871562947
Iteration: 11, Func. Count: 126, Neg. LLF: 158.27394840714922
Iteration: 12, Func. Count: 137, Neg. LLF: 158.2739160494248
Iteration: 13, Func. Count: 148, Neg. LLF: 158.2739093689081
Iteration: 14, Func. Count: 158, Neg. LLF: 158.27390936901023
Optimization terminated successfully (Exit mode 0)
Current function value: 158.2739093689081
Iterations: 14
Function evaluations: 158
Gradient evaluations: 14
Iteration: 1, Func. Count: 13, Neg. LLF: 367.0579261164183
Iteration: 2, Func. Count: 27, Neg. LLF: 158.95416908551346
Iteration: 3, Func. Count: 40, Neg. LLF: 158.38561994070832
Iteration: 4, Func. Count: 52, Neg. LLF: 158.30883980132185
Iteration: 5, Func. Count: 64, Neg. LLF: 158.29520547418554
Iteration: 6, Func. Count: 76, Neg. LLF: 158.29358737444124
Iteration: 7, Func. Count: 88, Neg. LLF: 158.29163581651815
Iteration: 8, Func. Count: 100, Neg. LLF: 158.28724520584325
Iteration: 9, Func. Count: 112, Neg. LLF: 158.28366124449204
Iteration: 10, Func. Count: 124, Neg. LLF: 158.28208132035263
Iteration: 11, Func. Count: 136, Neg. LLF: 158.28091349816052
Iteration: 12, Func. Count: 148, Neg. LLF: 158.27482141621664
Iteration: 13, Func. Count: 160, Neg. LLF: 158.27505160625043
Iteration: 14, Func. Count: 173, Neg. LLF: 158.27412532205557
Iteration: 15, Func. Count: 185, Neg. LLF: 158.27392192516936
Iteration: 16, Func. Count: 197, Neg. LLF: 158.27391074376254
Iteration: 17, Func. Count: 209, Neg. LLF: 158.27390932420502
Iteration: 18, Func. Count: 220, Neg. LLF: 158.27390932550182
Optimization terminated successfully (Exit mode 0)
Current function value: 158.27390932420502
Iterations: 18
Function evaluations: 220
Gradient evaluations: 18
Iteration: 1, Func. Count: 14, Neg. LLF: 172.96742909093794
Iteration: 2, Func. Count: 28, Neg. LLF: 169.99244745164975
Iteration: 3, Func. Count: 42, Neg. LLF: 157.26417503047801
Iteration: 4, Func. Count: 55, Neg. LLF: 157.72146152044382
Iteration: 5, Func. Count: 69, Neg. LLF: 157.23753229116676
Iteration: 6, Func. Count: 83, Neg. LLF: 158.59719720851177
Iteration: 7, Func. Count: 97, Neg. LLF: 157.15687943454944
Iteration: 8, Func. Count: 110, Neg. LLF: 157.1145674305589
Iteration: 9, Func. Count: 123, Neg. LLF: 157.06348705810277
Iteration: 10, Func. Count: 136, Neg. LLF: 157.041311604699
Iteration: 11, Func. Count: 149, Neg. LLF: 157.04000858784912
Iteration: 12, Func. Count: 163, Neg. LLF: 157.03494260837263
Iteration: 13, Func. Count: 176, Neg. LLF: 157.03369771953797
Iteration: 14, Func. Count: 189, Neg. LLF: 157.03105870015636
Iteration: 15, Func. Count: 202, Neg. LLF: 157.0290426913865
Iteration: 16, Func. Count: 215, Neg. LLF: 157.02739039747152
Iteration: 17, Func. Count: 228, Neg. LLF: 157.02657505028543
Iteration: 18, Func. Count: 241, Neg. LLF: 157.02638584650234
Iteration: 19, Func. Count: 254, Neg. LLF: 157.0263632197656
Iteration: 20, Func. Count: 267, Neg. LLF: 157.02636197149747
Iteration: 21, Func. Count: 279, Neg. LLF: 157.02636197148934
Optimization terminated successfully (Exit mode 0)
Current function value: 157.02636197149747
Iterations: 21
Function evaluations: 279
Gradient evaluations: 21
Iteration: 1, Func. Count: 15, Neg. LLF: 191.49540471302666
Iteration: 2, Func. Count: 30, Neg. LLF: 165.81994817423328
Iteration: 3, Func. Count: 45, Neg. LLF: 157.28348422653002
Iteration: 4, Func. Count: 59, Neg. LLF: 158.50721594530276
Iteration: 5, Func. Count: 74, Neg. LLF: 157.26090860215243
Iteration: 6, Func. Count: 89, Neg. LLF: 157.0144473860613
Iteration: 7, Func. Count: 103, Neg. LLF: 156.9265606855446
Iteration: 8, Func. Count: 117, Neg. LLF: 156.86881849406993
Iteration: 9, Func. Count: 131, Neg. LLF: 156.83234601501795
Iteration: 10, Func. Count: 145, Neg. LLF: 156.8284774803247
Iteration: 11, Func. Count: 159, Neg. LLF: 156.82793436133008
Iteration: 12, Func. Count: 173, Neg. LLF: 156.82787746731344
Iteration: 13, Func. Count: 187, Neg. LLF: 156.82785396570128
Iteration: 14, Func. Count: 201, Neg. LLF: 156.82782594257776
Iteration: 15, Func. Count: 215, Neg. LLF: 156.82777501686536
Iteration: 16, Func. Count: 229, Neg. LLF: 156.8277386386105
Iteration: 17, Func. Count: 243, Neg. LLF: 156.8277269154652
Iteration: 18, Func. Count: 257, Neg. LLF: 156.8277258010223
Iteration: 19, Func. Count: 270, Neg. LLF: 156.8277258010272
Optimization terminated successfully (Exit mode 0)
Current function value: 156.8277258010223
Iterations: 19
Function evaluations: 270
Gradient evaluations: 19
Iteration: 1, Func. Count: 12, Neg. LLF: 160.68982900524603
Iteration: 2, Func. Count: 24, Neg. LLF: 159.96081739392662
Iteration: 3, Func. Count: 36, Neg. LLF: 158.54659187097252
Iteration: 4, Func. Count: 47, Neg. LLF: 157.79978519327963
Iteration: 5, Func. Count: 58, Neg. LLF: 158.5224089088965
Iteration: 6, Func. Count: 70, Neg. LLF: 157.62537021433374
Iteration: 7, Func. Count: 81, Neg. LLF: 157.57323110268482
Iteration: 8, Func. Count: 92, Neg. LLF: 157.52815317399458
Iteration: 9, Func. Count: 103, Neg. LLF: 157.4742654223988
Iteration: 10, Func. Count: 114, Neg. LLF: 157.37950246494168
Iteration: 11, Func. Count: 125, Neg. LLF: 157.26799923292097
Iteration: 12, Func. Count: 136, Neg. LLF: 157.22308960289783
Iteration: 13, Func. Count: 147, Neg. LLF: 157.21107850556467
Iteration: 14, Func. Count: 158, Neg. LLF: 157.21104311812908
Iteration: 15, Func. Count: 168, Neg. LLF: 157.21104325189327
Optimization terminated successfully (Exit mode 0)
Current function value: 157.21104311812908
Iterations: 15
Function evaluations: 168
Gradient evaluations: 15
Iteration: 1, Func. Count: 13, Neg. LLF: 408.48934247437614
Iteration: 2, Func. Count: 27, Neg. LLF: 159.05433466346383
Iteration: 3, Func. Count: 40, Neg. LLF: 158.43112317166097
Iteration: 4, Func. Count: 52, Neg. LLF: 158.32828034554782
Iteration: 5, Func. Count: 64, Neg. LLF: 158.31461025476455
Iteration: 6, Func. Count: 76, Neg. LLF: 158.28274574936367
Iteration: 7, Func. Count: 88, Neg. LLF: 158.27746485575844
Iteration: 8, Func. Count: 100, Neg. LLF: 158.2761607460264
Iteration: 9, Func. Count: 112, Neg. LLF: 158.27396039247066
Iteration: 10, Func. Count: 124, Neg. LLF: 158.27392264475725
Iteration: 11, Func. Count: 136, Neg. LLF: 158.2739116215563
Iteration: 12, Func. Count: 148, Neg. LLF: 158.27390940872337
Iteration: 13, Func. Count: 159, Neg. LLF: 158.27390940884194
Optimization terminated successfully (Exit mode 0)
Current function value: 158.27390940872337
Iterations: 13
Function evaluations: 159
Gradient evaluations: 13
Iteration: 1, Func. Count: 14, Neg. LLF: 366.7178565982421
Iteration: 2, Func. Count: 29, Neg. LLF: 158.90606075220055
Iteration: 3, Func. Count: 43, Neg. LLF: 158.5766195325991
Iteration: 4, Func. Count: 57, Neg. LLF: 158.36507538556617
Iteration: 5, Func. Count: 70, Neg. LLF: 158.29698722241963
Iteration: 6, Func. Count: 83, Neg. LLF: 158.29391326807195
Iteration: 7, Func. Count: 96, Neg. LLF: 158.29256698245203
Iteration: 8, Func. Count: 109, Neg. LLF: 158.28751324149232
Iteration: 9, Func. Count: 122, Neg. LLF: 158.283560574071
Iteration: 10, Func. Count: 135, Neg. LLF: 158.28243143344778
Iteration: 11, Func. Count: 148, Neg. LLF: 158.28171437009345
Iteration: 12, Func. Count: 161, Neg. LLF: 158.28027352272935
Iteration: 13, Func. Count: 174, Neg. LLF: 158.27603445417674
Iteration: 14, Func. Count: 187, Neg. LLF: 158.27750221205878
Iteration: 15, Func. Count: 201, Neg. LLF: 158.27498469305598
Iteration: 16, Func. Count: 214, Neg. LLF: 158.2739343010808
Iteration: 17, Func. Count: 227, Neg. LLF: 158.27390995152075
Iteration: 18, Func. Count: 240, Neg. LLF: 158.27390932220104
Optimization terminated successfully (Exit mode 0)
Current function value: 158.27390932220104
Iterations: 18
Function evaluations: 240
Gradient evaluations: 18
Iteration: 1, Func. Count: 15, Neg. LLF: 176.91328007660047
Iteration: 2, Func. Count: 30, Neg. LLF: 170.23639186611265
Iteration: 3, Func. Count: 45, Neg. LLF: 157.2707917615665
Iteration: 4, Func. Count: 59, Neg. LLF: 157.68554632887725
Iteration: 5, Func. Count: 74, Neg. LLF: 157.22525612207792
Iteration: 6, Func. Count: 88, Neg. LLF: 158.47897469585004
Iteration: 7, Func. Count: 103, Neg. LLF: 157.145142919097
Iteration: 8, Func. Count: 117, Neg. LLF: 157.11179951160582
Iteration: 9, Func. Count: 131, Neg. LLF: 157.07305699431703
Iteration: 10, Func. Count: 145, Neg. LLF: 157.04350102880807
Iteration: 11, Func. Count: 159, Neg. LLF: 157.0397882345559
Iteration: 12, Func. Count: 173, Neg. LLF: 157.03761420861161
Iteration: 13, Func. Count: 187, Neg. LLF: 157.0345461374043
Iteration: 14, Func. Count: 201, Neg. LLF: 157.0308086364324
Iteration: 15, Func. Count: 215, Neg. LLF: 157.02792398309865
Iteration: 16, Func. Count: 229, Neg. LLF: 157.02665223392245
Iteration: 17, Func. Count: 243, Neg. LLF: 157.0264167460264
Iteration: 18, Func. Count: 257, Neg. LLF: 157.02637346588304
Iteration: 19, Func. Count: 271, Neg. LLF: 157.02636352219025
Iteration: 20, Func. Count: 285, Neg. LLF: 157.02636204022352
Iteration: 21, Func. Count: 298, Neg. LLF: 157.02636204021164
Optimization terminated successfully (Exit mode 0)
Current function value: 157.02636204022352
Iterations: 21
Function evaluations: 298
Gradient evaluations: 21
Iteration: 1, Func. Count: 16, Neg. LLF: 191.4604846319239
Iteration: 2, Func. Count: 32, Neg. LLF: 166.46523697230404
Iteration: 3, Func. Count: 48, Neg. LLF: 157.28364699381814
Iteration: 4, Func. Count: 63, Neg. LLF: 158.48856739172334
Iteration: 5, Func. Count: 79, Neg. LLF: 157.26901754217522
Iteration: 6, Func. Count: 95, Neg. LLF: 157.0259009203704
Iteration: 7, Func. Count: 110, Neg. LLF: 156.94093725383303
Iteration: 8, Func. Count: 125, Neg. LLF: 156.87545323317732
Iteration: 9, Func. Count: 140, Neg. LLF: 156.83829606024514
Iteration: 10, Func. Count: 155, Neg. LLF: 156.82894407557947
Iteration: 11, Func. Count: 170, Neg. LLF: 156.82801035309532
Iteration: 12, Func. Count: 185, Neg. LLF: 156.82792623560832
Iteration: 13, Func. Count: 200, Neg. LLF: 156.82789869117744
Iteration: 14, Func. Count: 215, Neg. LLF: 156.82785656407108
Iteration: 15, Func. Count: 230, Neg. LLF: 156.82779802715584
Iteration: 16, Func. Count: 245, Neg. LLF: 156.82774673081533
Iteration: 17, Func. Count: 260, Neg. LLF: 156.82772819529515
Iteration: 18, Func. Count: 275, Neg. LLF: 156.82772584845358
Iteration: 19, Func. Count: 289, Neg. LLF: 156.82772584847328
Optimization terminated successfully (Exit mode 0)
Current function value: 156.82772584845358
Iterations: 19
Function evaluations: 289
Gradient evaluations: 19
Iteration: 1, Func. Count: 6, Neg. LLF: 356.5439894055863
Iteration: 2, Func. Count: 13, Neg. LLF: 158.79344471997453
Iteration: 3, Func. Count: 19, Neg. LLF: 158.6147563770241
Iteration: 4, Func. Count: 25, Neg. LLF: 158.44297322637306
Iteration: 5, Func. Count: 30, Neg. LLF: 158.39132507923867
Iteration: 6, Func. Count: 35, Neg. LLF: 158.32874873787685
Iteration: 7, Func. Count: 40, Neg. LLF: 158.29621947187158
Iteration: 8, Func. Count: 45, Neg. LLF: 158.29259559590577
Iteration: 9, Func. Count: 50, Neg. LLF: 158.29312913217174
Iteration: 10, Func. Count: 56, Neg. LLF: 158.29200015998072
Iteration: 11, Func. Count: 61, Neg. LLF: 158.2919986093566
Iteration: 12, Func. Count: 65, Neg. LLF: 158.29199860936993
Optimization terminated successfully (Exit mode 0)
Current function value: 158.2919986093566
Iterations: 12
Function evaluations: 65
Gradient evaluations: 12
Iteration: 1, Func. Count: 5, Neg. LLF: 161.07647283025955
Iteration: 2, Func. Count: 10, Neg. LLF: 160.9297327350495
Iteration: 3, Func. Count: 15, Neg. LLF: 157.85090206926427
Iteration: 4, Func. Count: 19, Neg. LLF: 156.87489545875644
Iteration: 5, Func. Count: 23, Neg. LLF: 156.60716329905065
Iteration: 6, Func. Count: 27, Neg. LLF: 156.5268900041779
Iteration: 7, Func. Count: 31, Neg. LLF: 156.521993529048
Iteration: 8, Func. Count: 35, Neg. LLF: 156.52198561177084
Iteration: 9, Func. Count: 38, Neg. LLF: 156.52198561177678
Optimization terminated successfully (Exit mode 0)
Current function value: 156.52198561177084
Iterations: 9
Function evaluations: 38
Gradient evaluations: 9
Iteration: 1, Func. Count: 6, Neg. LLF: 474.32913106561153
Iteration: 2, Func. Count: 13, Neg. LLF: 155.41785548574813
Iteration: 3, Func. Count: 18, Neg. LLF: 155.38433555251058
Iteration: 4, Func. Count: 23, Neg. LLF: 155.35897270337793
Iteration: 5, Func. Count: 28, Neg. LLF: 155.35094891463382
Iteration: 6, Func. Count: 33, Neg. LLF: 155.34809608236984
Iteration: 7, Func. Count: 38, Neg. LLF: 155.34705444737534
Iteration: 8, Func. Count: 43, Neg. LLF: 155.34690445584502
Iteration: 9, Func. Count: 48, Neg. LLF: 155.34689974360475
Iteration: 10, Func. Count: 52, Neg. LLF: 155.3468997437353
Optimization terminated successfully (Exit mode 0)
Current function value: 155.34689974360475
Iterations: 10
Function evaluations: 52
Gradient evaluations: 10
Iteration: 1, Func. Count: 7, Neg. LLF: 187.4681708460402
Iteration: 2, Func. Count: 15, Neg. LLF: 155.91810769911996
Iteration: 3, Func. Count: 22, Neg. LLF: 155.3439172468491
Iteration: 4, Func. Count: 28, Neg. LLF: 155.37856963023685
Iteration: 5, Func. Count: 35, Neg. LLF: 155.25159472481704
Iteration: 6, Func. Count: 41, Neg. LLF: 155.2300808586619
Iteration: 7, Func. Count: 47, Neg. LLF: 155.22702470299564
Iteration: 8, Func. Count: 53, Neg. LLF: 155.218723535026
Iteration: 9, Func. Count: 59, Neg. LLF: 155.21175856695214
Iteration: 10, Func. Count: 65, Neg. LLF: 155.193065229732
Iteration: 11, Func. Count: 71, Neg. LLF: 155.17248070544176
Iteration: 12, Func. Count: 77, Neg. LLF: 155.16324484357466
Iteration: 13, Func. Count: 83, Neg. LLF: 155.15959365472676
Iteration: 14, Func. Count: 89, Neg. LLF: 155.15923545262015
Iteration: 15, Func. Count: 95, Neg. LLF: 155.1592244732842
Iteration: 16, Func. Count: 100, Neg. LLF: 155.15922447324292
Optimization terminated successfully (Exit mode 0)
Current function value: 155.1592244732842
Iterations: 16
Function evaluations: 100
Gradient evaluations: 16
Iteration: 1, Func. Count: 8, Neg. LLF: 187.5639018177767
Iteration: 2, Func. Count: 17, Neg. LLF: 155.95691686920765
Iteration: 3, Func. Count: 25, Neg. LLF: 155.51185821095225
Iteration: 4, Func. Count: 32, Neg. LLF: 155.38472299132732
Iteration: 5, Func. Count: 39, Neg. LLF: 155.25693665021583
Iteration: 6, Func. Count: 46, Neg. LLF: 155.21578409264825
Iteration: 7, Func. Count: 53, Neg. LLF: 155.2085673918808
Iteration: 8, Func. Count: 60, Neg. LLF: 155.20153568551345
Iteration: 9, Func. Count: 67, Neg. LLF: 155.19906155212948
Iteration: 10, Func. Count: 74, Neg. LLF: 155.18823796971984
Iteration: 11, Func. Count: 81, Neg. LLF: 155.17522728906138
Iteration: 12, Func. Count: 88, Neg. LLF: 155.16262539633064
Iteration: 13, Func. Count: 95, Neg. LLF: 155.15931656780356
Iteration: 14, Func. Count: 102, Neg. LLF: 155.1592259788581
Iteration: 15, Func. Count: 109, Neg. LLF: 155.15922467505726
Iteration: 16, Func. Count: 115, Neg. LLF: 155.15922470249683
Optimization terminated successfully (Exit mode 0)
Current function value: 155.15922467505726
Iterations: 16
Function evaluations: 115
Gradient evaluations: 16
Iteration: 1, Func. Count: 9, Neg. LLF: 187.71227218972652
Iteration: 2, Func. Count: 19, Neg. LLF: 156.0133875023646
Iteration: 3, Func. Count: 28, Neg. LLF: 155.5959018226816
Iteration: 4, Func. Count: 36, Neg. LLF: 155.3455719276358
Iteration: 5, Func. Count: 44, Neg. LLF: 155.24694895442906
Iteration: 6, Func. Count: 52, Neg. LLF: 155.22203828747854
Iteration: 7, Func. Count: 60, Neg. LLF: 155.21094946313085
Iteration: 8, Func. Count: 68, Neg. LLF: 155.20574587418116
Iteration: 9, Func. Count: 76, Neg. LLF: 155.20188734488127
Iteration: 10, Func. Count: 84, Neg. LLF: 155.19625483162275
Iteration: 11, Func. Count: 92, Neg. LLF: 155.18400072270177
Iteration: 12, Func. Count: 100, Neg. LLF: 155.16819132632048
Iteration: 13, Func. Count: 108, Neg. LLF: 155.1610347265806
Iteration: 14, Func. Count: 116, Neg. LLF: 155.15937485226388
Iteration: 15, Func. Count: 124, Neg. LLF: 155.15922876992843
Iteration: 16, Func. Count: 132, Neg. LLF: 155.15922446671047
Iteration: 17, Func. Count: 139, Neg. LLF: 155.1592244768466
Optimization terminated successfully (Exit mode 0)
Current function value: 155.15922446671047
Iterations: 17
Function evaluations: 139
Gradient evaluations: 17
Iteration: 1, Func. Count: 6, Neg. LLF: 160.72427977068847
Iteration: 2, Func. Count: 12, Neg. LLF: 161.03633509952232
Iteration: 3, Func. Count: 18, Neg. LLF: 157.94015352670607
Iteration: 4, Func. Count: 23, Neg. LLF: 156.76984193089356
Iteration: 5, Func. Count: 28, Neg. LLF: 156.60391135593468
Iteration: 6, Func. Count: 33, Neg. LLF: 156.5330950637774
Iteration: 7, Func. Count: 38, Neg. LLF: 156.5247079009426
Iteration: 8, Func. Count: 43, Neg. LLF: 156.52328868519368
Iteration: 9, Func. Count: 48, Neg. LLF: 156.52217114268714
Iteration: 10, Func. Count: 53, Neg. LLF: 156.52199336845584
Iteration: 11, Func. Count: 58, Neg. LLF: 156.52198525740744
Iteration: 12, Func. Count: 62, Neg. LLF: 156.52198528138595
Optimization terminated successfully (Exit mode 0)
Current function value: 156.52198525740744
Iterations: 12
Function evaluations: 62
Gradient evaluations: 12
Iteration: 1, Func. Count: 7, Neg. LLF: 475.149256737714
Iteration: 2, Func. Count: 15, Neg. LLF: 155.42493328325284
Iteration: 3, Func. Count: 21, Neg. LLF: 155.38670449248244
Iteration: 4, Func. Count: 27, Neg. LLF: 155.36329823525585
Iteration: 5, Func. Count: 33, Neg. LLF: 155.3518590623837
Iteration: 6, Func. Count: 39, Neg. LLF: 155.34752013807866
Iteration: 7, Func. Count: 45, Neg. LLF: 155.34695860550914
Iteration: 8, Func. Count: 51, Neg. LLF: 155.34690296650504
Iteration: 9, Func. Count: 57, Neg. LLF: 155.34689972877433
Iteration: 10, Func. Count: 62, Neg. LLF: 155.34689972881904
Optimization terminated successfully (Exit mode 0)
Current function value: 155.34689972877433
Iterations: 10
Function evaluations: 62
Gradient evaluations: 10
Iteration: 1, Func. Count: 8, Neg. LLF: 414.156855379552
Iteration: 2, Func. Count: 17, Neg. LLF: 155.4068208612506
Iteration: 3, Func. Count: 24, Neg. LLF: 155.37938264310387
Iteration: 4, Func. Count: 31, Neg. LLF: 155.37847348218042
Iteration: 5, Func. Count: 38, Neg. LLF: 155.37527523097344
Iteration: 6, Func. Count: 45, Neg. LLF: 155.36165971843866
Iteration: 7, Func. Count: 52, Neg. LLF: 155.3594277511271
Iteration: 8, Func. Count: 59, Neg. LLF: 155.35602839335596
Iteration: 9, Func. Count: 66, Neg. LLF: 155.34632977891147
Iteration: 10, Func. Count: 73, Neg. LLF: 155.3431811790042
Iteration: 11, Func. Count: 80, Neg. LLF: 155.33928427349687
Iteration: 12, Func. Count: 87, Neg. LLF: 155.32877882248718
Iteration: 13, Func. Count: 94, Neg. LLF: 155.3173171391297
Iteration: 14, Func. Count: 101, Neg. LLF: 155.28706452680163
Iteration: 15, Func. Count: 108, Neg. LLF: 155.24112670299814
Iteration: 16, Func. Count: 115, Neg. LLF: 155.18787911386366
Iteration: 17, Func. Count: 122, Neg. LLF: 155.17783878693672
Iteration: 18, Func. Count: 129, Neg. LLF: 155.16561627162065
Iteration: 19, Func. Count: 136, Neg. LLF: 155.16017499071864
Iteration: 20, Func. Count: 143, Neg. LLF: 155.1592679086937
Iteration: 21, Func. Count: 150, Neg. LLF: 155.15926638318928
Iteration: 22, Func. Count: 158, Neg. LLF: 155.15922464200096
Iteration: 23, Func. Count: 164, Neg. LLF: 155.15922464202671
Optimization terminated successfully (Exit mode 0)
Current function value: 155.15922464200096
Iterations: 23
Function evaluations: 164
Gradient evaluations: 23
Iteration: 1, Func. Count: 9, Neg. LLF: 189.3288252710653
Iteration: 2, Func. Count: 18, Neg. LLF: 155.6322333784063
Iteration: 3, Func. Count: 26, Neg. LLF: 155.60128564860418
Iteration: 4, Func. Count: 34, Neg. LLF: 155.57653136502222
Iteration: 5, Func. Count: 42, Neg. LLF: 155.53064572057343
Iteration: 6, Func. Count: 50, Neg. LLF: 155.47983624524437
Iteration: 7, Func. Count: 58, Neg. LLF: 155.43387253547348
Iteration: 8, Func. Count: 66, Neg. LLF: 155.41974186223325
Iteration: 9, Func. Count: 74, Neg. LLF: 155.41578643381226
Iteration: 10, Func. Count: 82, Neg. LLF: 155.4128958405349
Iteration: 11, Func. Count: 90, Neg. LLF: 155.4084516167117
Iteration: 12, Func. Count: 98, Neg. LLF: 155.34385939637488
Iteration: 13, Func. Count: 106, Neg. LLF: 155.34349760949314
Iteration: 14, Func. Count: 114, Neg. LLF: 155.34290253097916
Iteration: 15, Func. Count: 122, Neg. LLF: 155.33856352447776
Iteration: 16, Func. Count: 130, Neg. LLF: 158.65741714153867
Iteration: 17, Func. Count: 139, Neg. LLF: 163.74191828525747
Iteration: 18, Func. Count: 148, Neg. LLF: 155.188063468402
Iteration: 19, Func. Count: 156, Neg. LLF: 155.18816994940664
Iteration: 20, Func. Count: 165, Neg. LLF: 155.16550211576381
Iteration: 21, Func. Count: 173, Neg. LLF: 155.16144067123184
Iteration: 22, Func. Count: 181, Neg. LLF: 155.16041627164668
Iteration: 23, Func. Count: 189, Neg. LLF: 155.1596138489544
Iteration: 24, Func. Count: 197, Neg. LLF: 155.15929281340235
Iteration: 25, Func. Count: 205, Neg. LLF: 155.15923013682
Iteration: 26, Func. Count: 213, Neg. LLF: 155.15922471868163
Iteration: 27, Func. Count: 220, Neg. LLF: 155.15922474616556
Optimization terminated successfully (Exit mode 0)
Current function value: 155.15922471868163
Iterations: 27
Function evaluations: 220
Gradient evaluations: 27
Iteration: 1, Func. Count: 10, Neg. LLF: 189.4420260256612
Iteration: 2, Func. Count: 20, Neg. LLF: 155.62826977181416
Iteration: 3, Func. Count: 29, Neg. LLF: 155.58895753642526
Iteration: 4, Func. Count: 38, Neg. LLF: 155.52240227429533
Iteration: 5, Func. Count: 47, Neg. LLF: 155.4989479955037
Iteration: 6, Func. Count: 56, Neg. LLF: 155.48643818485965
Iteration: 7, Func. Count: 65, Neg. LLF: 155.47283328183374
Iteration: 8, Func. Count: 74, Neg. LLF: 155.4585573838624
Iteration: 9, Func. Count: 83, Neg. LLF: 155.44508856114481
Iteration: 10, Func. Count: 92, Neg. LLF: 155.44282084619354
Iteration: 11, Func. Count: 101, Neg. LLF: 155.44274487650986
Iteration: 12, Func. Count: 110, Neg. LLF: 155.44274436573426
Optimization terminated successfully (Exit mode 0)
Current function value: 155.44274436573426
Iterations: 12
Function evaluations: 110
Gradient evaluations: 12
Iteration: 1, Func. Count: 7, Neg. LLF: 155.7679328817703
Iteration: 2, Func. Count: 14, Neg. LLF: 155.77793475342975
Iteration: 3, Func. Count: 21, Neg. LLF: 154.0445426103692
Iteration: 4, Func. Count: 27, Neg. LLF: 154.74494183745088
Iteration: 5, Func. Count: 34, Neg. LLF: 153.95903851561349
Iteration: 6, Func. Count: 40, Neg. LLF: 153.95095701926837
Iteration: 7, Func. Count: 46, Neg. LLF: 153.95081786776169
Iteration: 8, Func. Count: 52, Neg. LLF: 153.9507847769325
Iteration: 9, Func. Count: 58, Neg. LLF: 153.95071023274582
Iteration: 10, Func. Count: 64, Neg. LLF: 153.95063091842346
Iteration: 11, Func. Count: 70, Neg. LLF: 153.95058201365933
Iteration: 12, Func. Count: 76, Neg. LLF: 153.9505723609772
Iteration: 13, Func. Count: 82, Neg. LLF: 153.95057167631904
Optimization terminated successfully (Exit mode 0)
Current function value: 153.95057167631904
Iterations: 13
Function evaluations: 82
Gradient evaluations: 13
Iteration: 1, Func. Count: 8, Neg. LLF: 478.13060914606365
Iteration: 2, Func. Count: 17, Neg. LLF: 155.4223364968236
Iteration: 3, Func. Count: 24, Neg. LLF: 155.38690842528658
Iteration: 4, Func. Count: 31, Neg. LLF: 155.36239166628994
Iteration: 5, Func. Count: 38, Neg. LLF: 155.35324106125887
Iteration: 6, Func. Count: 45, Neg. LLF: 155.34769023414438
Iteration: 7, Func. Count: 52, Neg. LLF: 155.34698919681014
Iteration: 8, Func. Count: 59, Neg. LLF: 155.34690358729813
Iteration: 9, Func. Count: 66, Neg. LLF: 155.34689973132689
Iteration: 10, Func. Count: 72, Neg. LLF: 155.34689973139143
Optimization terminated successfully (Exit mode 0)
Current function value: 155.34689973132689
Iterations: 10
Function evaluations: 72
Gradient evaluations: 10
Iteration: 1, Func. Count: 9, Neg. LLF: 187.80647432203347
Iteration: 2, Func. Count: 19, Neg. LLF: 159.7343363592129
Iteration: 3, Func. Count: 28, Neg. LLF: 155.07214305702934
Iteration: 4, Func. Count: 36, Neg. LLF: 154.96123599821948
Iteration: 5, Func. Count: 44, Neg. LLF: 154.92701839619855
Iteration: 6, Func. Count: 52, Neg. LLF: 154.92320924710853
Iteration: 7, Func. Count: 60, Neg. LLF: 154.91676390578303
Iteration: 8, Func. Count: 68, Neg. LLF: 154.8820521095116
Iteration: 9, Func. Count: 76, Neg. LLF: 154.51172943291326
Iteration: 10, Func. Count: 84, Neg. LLF: 154.35995934295153
Iteration: 11, Func. Count: 92, Neg. LLF: 154.0048803989556
Iteration: 12, Func. Count: 100, Neg. LLF: 153.96023076616277
Iteration: 13, Func. Count: 108, Neg. LLF: 153.95421091258308
Iteration: 14, Func. Count: 116, Neg. LLF: 153.95349323472183
Iteration: 15, Func. Count: 124, Neg. LLF: 153.95308421968454
Iteration: 16, Func. Count: 132, Neg. LLF: 153.95238749950263
Iteration: 17, Func. Count: 140, Neg. LLF: 153.95148275140343
Iteration: 18, Func. Count: 148, Neg. LLF: 153.95080044564452
Iteration: 19, Func. Count: 156, Neg. LLF: 153.95059445990918
Iteration: 20, Func. Count: 164, Neg. LLF: 153.95057212683128
Iteration: 21, Func. Count: 171, Neg. LLF: 153.95057218090167
Optimization terminated successfully (Exit mode 0)
Current function value: 153.95057212683128
Iterations: 21
Function evaluations: 171
Gradient evaluations: 21
Iteration: 1, Func. Count: 10, Neg. LLF: 180.156589885428
Iteration: 2, Func. Count: 20, Neg. LLF: 163.22109914932543
Iteration: 3, Func. Count: 30, Neg. LLF: 155.46875545984724
Iteration: 4, Func. Count: 40, Neg. LLF: 155.15011870977196
Iteration: 5, Func. Count: 49, Neg. LLF: 156.74483569183755
Iteration: 6, Func. Count: 59, Neg. LLF: 154.9308253535377
Iteration: 7, Func. Count: 68, Neg. LLF: 154.89929321510925
Iteration: 8, Func. Count: 77, Neg. LLF: 154.8702503629141
Iteration: 9, Func. Count: 86, Neg. LLF: 154.8350067223366
Iteration: 10, Func. Count: 95, Neg. LLF: 154.69731650345395
Iteration: 11, Func. Count: 104, Neg. LLF: 154.613731441034
Iteration: 12, Func. Count: 113, Neg. LLF: 154.43228533663222
Iteration: 13, Func. Count: 122, Neg. LLF: 155.6778568831664
Iteration: 14, Func. Count: 133, Neg. LLF: 155.5449986308693
Iteration: 15, Func. Count: 143, Neg. LLF: 154.19896614533633
Iteration: 16, Func. Count: 152, Neg. LLF: 153.9747544209802
Iteration: 17, Func. Count: 161, Neg. LLF: 153.9538314663309
Iteration: 18, Func. Count: 170, Neg. LLF: 153.95152979090108
Iteration: 19, Func. Count: 179, Neg. LLF: 153.95112578338538
Iteration: 20, Func. Count: 188, Neg. LLF: 153.95067273732462
Iteration: 21, Func. Count: 197, Neg. LLF: 153.95059227874916
Iteration: 22, Func. Count: 206, Neg. LLF: 153.95057595593832
Iteration: 23, Func. Count: 215, Neg. LLF: 153.95057277320558
Iteration: 24, Func. Count: 224, Neg. LLF: 153.95057172784135
Iteration: 25, Func. Count: 232, Neg. LLF: 153.95057179931618
Optimization terminated successfully (Exit mode 0)
Current function value: 153.95057172784135
Iterations: 25
Function evaluations: 232
Gradient evaluations: 25
Iteration: 1, Func. Count: 11, Neg. LLF: 170.86286195407973
Iteration: 2, Func. Count: 22, Neg. LLF: 174.29235969690387
Iteration: 3, Func. Count: 33, Neg. LLF: 154.7970127124866
Iteration: 4, Func. Count: 43, Neg. LLF: 154.19813423255357
Iteration: 5, Func. Count: 53, Neg. LLF: 154.1296739533822
Iteration: 6, Func. Count: 63, Neg. LLF: 154.040690488024
Iteration: 7, Func. Count: 73, Neg. LLF: 154.01150327084758
Iteration: 8, Func. Count: 83, Neg. LLF: 153.9931701639106
Iteration: 9, Func. Count: 93, Neg. LLF: 153.98742010559215
Iteration: 10, Func. Count: 103, Neg. LLF: 153.98060769155867
Iteration: 11, Func. Count: 113, Neg. LLF: 153.9726300721973
Iteration: 12, Func. Count: 123, Neg. LLF: 153.96474443387982
Iteration: 13, Func. Count: 133, Neg. LLF: 153.95956308169346
Iteration: 14, Func. Count: 143, Neg. LLF: 153.9580850104572
Iteration: 15, Func. Count: 153, Neg. LLF: 153.9579892951981
Iteration: 16, Func. Count: 163, Neg. LLF: 153.95798101827435
Iteration: 17, Func. Count: 172, Neg. LLF: 153.95798101828944
Optimization terminated successfully (Exit mode 0)
Current function value: 153.95798101827435
Iterations: 17
Function evaluations: 172
Gradient evaluations: 17
Iteration: 1, Func. Count: 8, Neg. LLF: 155.72514841041124
Iteration: 2, Func. Count: 16, Neg. LLF: 155.57982497110302
Iteration: 3, Func. Count: 24, Neg. LLF: 154.0516360155854
Iteration: 4, Func. Count: 31, Neg. LLF: 154.848230312811
Iteration: 5, Func. Count: 39, Neg. LLF: 153.95577715113194
Iteration: 6, Func. Count: 46, Neg. LLF: 153.9507488639917
Iteration: 7, Func. Count: 53, Neg. LLF: 153.95064514349332
Iteration: 8, Func. Count: 60, Neg. LLF: 153.9506332213331
Iteration: 9, Func. Count: 67, Neg. LLF: 153.95062195363494
Iteration: 10, Func. Count: 74, Neg. LLF: 153.95059779111818
Iteration: 11, Func. Count: 81, Neg. LLF: 153.95057964679927
Iteration: 12, Func. Count: 88, Neg. LLF: 153.9505724397591
Iteration: 13, Func. Count: 95, Neg. LLF: 153.95057169492267
Optimization terminated successfully (Exit mode 0)
Current function value: 153.95057169492267
Iterations: 13
Function evaluations: 95
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 474.9621830527644
Iteration: 2, Func. Count: 19, Neg. LLF: 155.42317035890883
Iteration: 3, Func. Count: 27, Neg. LLF: 155.38659010625318
Iteration: 4, Func. Count: 35, Neg. LLF: 155.35994872157812
Iteration: 5, Func. Count: 43, Neg. LLF: 155.3478898454564
Iteration: 6, Func. Count: 51, Neg. LLF: 155.34744557816674
Iteration: 7, Func. Count: 59, Neg. LLF: 155.34694970370265
Iteration: 8, Func. Count: 67, Neg. LLF: 155.34690114388778
Iteration: 9, Func. Count: 75, Neg. LLF: 155.34689973532363
Iteration: 10, Func. Count: 82, Neg. LLF: 155.3468997354134
Optimization terminated successfully (Exit mode 0)
Current function value: 155.34689973532363
Iterations: 10
Function evaluations: 82
Gradient evaluations: 10
Iteration: 1, Func. Count: 10, Neg. LLF: 417.9951934541583
Iteration: 2, Func. Count: 21, Neg. LLF: 155.40074419531615
Iteration: 3, Func. Count: 30, Neg. LLF: 155.39975609365567
Iteration: 4, Func. Count: 40, Neg. LLF: 155.53474221352877
Iteration: 5, Func. Count: 50, Neg. LLF: 155.37577774369825
Iteration: 6, Func. Count: 60, Neg. LLF: 155.32688217656167
Iteration: 7, Func. Count: 69, Neg. LLF: 157.57118024311612
Iteration: 8, Func. Count: 80, Neg. LLF: 155.28042830051328
Iteration: 9, Func. Count: 89, Neg. LLF: 155.23498062249917
Iteration: 10, Func. Count: 98, Neg. LLF: 155.13448845404673
Iteration: 11, Func. Count: 107, Neg. LLF: 155.053608554025
Iteration: 12, Func. Count: 116, Neg. LLF: 155.0350457106474
Iteration: 13, Func. Count: 125, Neg. LLF: 154.99283779689583
Iteration: 14, Func. Count: 134, Neg. LLF: 154.3352944097127
Iteration: 15, Func. Count: 143, Neg. LLF: 154.31941454952013
Iteration: 16, Func. Count: 152, Neg. LLF: 154.23784225350786
Iteration: 17, Func. Count: 161, Neg. LLF: 154.05889730325032
Iteration: 18, Func. Count: 170, Neg. LLF: 154.00314931238245
Iteration: 19, Func. Count: 179, Neg. LLF: 153.9855252625689
Iteration: 20, Func. Count: 188, Neg. LLF: 153.98053733563665
Iteration: 21, Func. Count: 197, Neg. LLF: 153.97632058516993
Iteration: 22, Func. Count: 206, Neg. LLF: 153.9733231210405
Iteration: 23, Func. Count: 215, Neg. LLF: 153.97023158731076
Iteration: 24, Func. Count: 224, Neg. LLF: 153.9660200578587
Iteration: 25, Func. Count: 233, Neg. LLF: 153.95885996689523
Iteration: 26, Func. Count: 242, Neg. LLF: 153.9550162233337
Iteration: 27, Func. Count: 251, Neg. LLF: 153.9506721296658
Iteration: 28, Func. Count: 260, Neg. LLF: 153.95059083880165
Iteration: 29, Func. Count: 269, Neg. LLF: 153.9505825797553
Iteration: 30, Func. Count: 278, Neg. LLF: 153.95057312858708
Iteration: 31, Func. Count: 287, Neg. LLF: 153.95057170920163
Iteration: 32, Func. Count: 295, Neg. LLF: 153.9505717633441
Optimization terminated successfully (Exit mode 0)
Current function value: 153.95057170920163
Iterations: 33
Function evaluations: 295
Gradient evaluations: 32
Iteration: 1, Func. Count: 11, Neg. LLF: 188.5178327246549
Iteration: 2, Func. Count: 22, Neg. LLF: 160.05078815184638
Iteration: 3, Func. Count: 33, Neg. LLF: 155.27667307195082
Iteration: 4, Func. Count: 43, Neg. LLF: 155.24584984747216
Iteration: 5, Func. Count: 54, Neg. LLF: 156.46297346201243
Iteration: 6, Func. Count: 65, Neg. LLF: 154.95599042607103
Iteration: 7, Func. Count: 75, Neg. LLF: 154.92223550740118
Iteration: 8, Func. Count: 85, Neg. LLF: 154.89727471708582
Iteration: 9, Func. Count: 95, Neg. LLF: 154.8416416780231
Iteration: 10, Func. Count: 105, Neg. LLF: 154.74194173553488
Iteration: 11, Func. Count: 115, Neg. LLF: 154.55113288364095
Iteration: 12, Func. Count: 125, Neg. LLF: 154.25025929273124
Iteration: 13, Func. Count: 135, Neg. LLF: 154.23937908003984
Iteration: 14, Func. Count: 146, Neg. LLF: 154.08518894519818
Iteration: 15, Func. Count: 156, Neg. LLF: 154.04428951162686
Iteration: 16, Func. Count: 166, Neg. LLF: 154.00837282783186
Iteration: 17, Func. Count: 176, Neg. LLF: 153.99330529228666
Iteration: 18, Func. Count: 186, Neg. LLF: 153.96988238460503
Iteration: 19, Func. Count: 196, Neg. LLF: 153.9569826559929
Iteration: 20, Func. Count: 206, Neg. LLF: 153.95183680843297
Iteration: 21, Func. Count: 216, Neg. LLF: 153.9505767535739
Iteration: 22, Func. Count: 226, Neg. LLF: 153.950571912137
Iteration: 23, Func. Count: 235, Neg. LLF: 153.95057198359433
Optimization terminated successfully (Exit mode 0)
Current function value: 153.950571912137
Iterations: 23
Function evaluations: 235
Gradient evaluations: 23
Iteration: 1, Func. Count: 12, Neg. LLF: 160.440902675176
Iteration: 2, Func. Count: 24, Neg. LLF: 156.27135377631535
Iteration: 3, Func. Count: 36, Neg. LLF: 154.08134603547703
Iteration: 4, Func. Count: 47, Neg. LLF: 154.21213235396004
Iteration: 5, Func. Count: 59, Neg. LLF: 153.99500208533533
Iteration: 6, Func. Count: 70, Neg. LLF: 153.99130627387493
Iteration: 7, Func. Count: 81, Neg. LLF: 153.97721800004624
Iteration: 8, Func. Count: 92, Neg. LLF: 153.9646353439449
Iteration: 9, Func. Count: 103, Neg. LLF: 153.96239660498944
Iteration: 10, Func. Count: 114, Neg. LLF: 153.96015888266427
Iteration: 11, Func. Count: 125, Neg. LLF: 153.9585465556965
Iteration: 12, Func. Count: 136, Neg. LLF: 153.95803968146163
Iteration: 13, Func. Count: 147, Neg. LLF: 153.95798468646043
Iteration: 14, Func. Count: 158, Neg. LLF: 153.95798078919861
Iteration: 15, Func. Count: 168, Neg. LLF: 153.95798078918872
Optimization terminated successfully (Exit mode 0)
Current function value: 153.95798078919861
Iterations: 15
Function evaluations: 168
Gradient evaluations: 15
Iteration: 1, Func. Count: 5, Neg. LLF: 159.10061249668252
Iteration: 2, Func. Count: 10, Neg. LLF: 157.67457913099318
Iteration: 3, Func. Count: 14, Neg. LLF: 157.29610822826567
Iteration: 4, Func. Count: 18, Neg. LLF: 157.13664065661507
Iteration: 5, Func. Count: 22, Neg. LLF: 156.81256051281298
Iteration: 6, Func. Count: 26, Neg. LLF: 156.75433197185063
Iteration: 7, Func. Count: 30, Neg. LLF: 156.74423581891435
Iteration: 8, Func. Count: 34, Neg. LLF: 156.7438305431834
Iteration: 9, Func. Count: 38, Neg. LLF: 156.74382745363366
Iteration: 10, Func. Count: 41, Neg. LLF: 156.74382745363133
Optimization terminated successfully (Exit mode 0)
Current function value: 156.74382745363366
Iterations: 10
Function evaluations: 41
Gradient evaluations: 10
Iteration: 1, Func. Count: 6, Neg. LLF: 565.5410751937968
Iteration: 2, Func. Count: 13, Neg. LLF: 155.39210737258747
Iteration: 3, Func. Count: 18, Neg. LLF: 155.37658426444312
Iteration: 4, Func. Count: 23, Neg. LLF: 155.3525752878049
Iteration: 5, Func. Count: 28, Neg. LLF: 155.3470133685527
Iteration: 6, Func. Count: 33, Neg. LLF: 155.3469095513086
Iteration: 7, Func. Count: 38, Neg. LLF: 155.34690405073113
Iteration: 8, Func. Count: 43, Neg. LLF: 155.34689973189887
Iteration: 9, Func. Count: 47, Neg. LLF: 155.34689973187258
Optimization terminated successfully (Exit mode 0)
Current function value: 155.34689973189887
Iterations: 9
Function evaluations: 47
Gradient evaluations: 9
Iteration: 1, Func. Count: 7, Neg. LLF: 188.97155751231088
Iteration: 2, Func. Count: 14, Neg. LLF: 155.67270452584108
Iteration: 3, Func. Count: 20, Neg. LLF: 155.65652165790934
Iteration: 4, Func. Count: 26, Neg. LLF: 155.62151011227905
Iteration: 5, Func. Count: 32, Neg. LLF: 155.43574622966008
Iteration: 6, Func. Count: 38, Neg. LLF: 156.97274973987132
Iteration: 7, Func. Count: 45, Neg. LLF: 155.49560329389882
Iteration: 8, Func. Count: 52, Neg. LLF: 155.34850738525026
Iteration: 9, Func. Count: 58, Neg. LLF: 155.34631662226886
Iteration: 10, Func. Count: 64, Neg. LLF: 155.34626283259018
Iteration: 11, Func. Count: 70, Neg. LLF: 155.34626189958811
Optimization terminated successfully (Exit mode 0)
Current function value: 155.34626189958811
Iterations: 11
Function evaluations: 70
Gradient evaluations: 11
Iteration: 1, Func. Count: 8, Neg. LLF: 189.21030286100574
Iteration: 2, Func. Count: 16, Neg. LLF: 155.63352758637808
Iteration: 3, Func. Count: 23, Neg. LLF: 155.60269670849638
Iteration: 4, Func. Count: 30, Neg. LLF: 155.5771965598034
Iteration: 5, Func. Count: 37, Neg. LLF: 155.54095474119492
Iteration: 6, Func. Count: 44, Neg. LLF: 155.50927129644447
Iteration: 7, Func. Count: 51, Neg. LLF: 155.43957462251538
Iteration: 8, Func. Count: 58, Neg. LLF: 155.41981082504574
Iteration: 9, Func. Count: 65, Neg. LLF: 155.41438450386804
Iteration: 10, Func. Count: 72, Neg. LLF: 155.41335841785914
Iteration: 11, Func. Count: 79, Neg. LLF: 155.41240215472192
Iteration: 12, Func. Count: 86, Neg. LLF: 155.40442737027684
Iteration: 13, Func. Count: 93, Neg. LLF: 155.3520482914527
Iteration: 14, Func. Count: 100, Neg. LLF: 155.3485058799918
Iteration: 15, Func. Count: 107, Neg. LLF: 155.34630696887132
Iteration: 16, Func. Count: 114, Neg. LLF: 155.34626201686467
Iteration: 17, Func. Count: 120, Neg. LLF: 155.34626202180078
Optimization terminated successfully (Exit mode 0)
Current function value: 155.34626201686467
Iterations: 17
Function evaluations: 120
Gradient evaluations: 17
Iteration: 1, Func. Count: 9, Neg. LLF: 189.32647254461318
Iteration: 2, Func. Count: 18, Neg. LLF: 155.62189883119706
Iteration: 3, Func. Count: 26, Neg. LLF: 155.58219305064682
Iteration: 4, Func. Count: 34, Neg. LLF: 155.5138151241751
Iteration: 5, Func. Count: 42, Neg. LLF: 155.4979933406344
Iteration: 6, Func. Count: 50, Neg. LLF: 155.48342785555627
Iteration: 7, Func. Count: 58, Neg. LLF: 155.47355668166261
Iteration: 8, Func. Count: 66, Neg. LLF: 155.45303389372128
Iteration: 9, Func. Count: 74, Neg. LLF: 155.44399576208622
Iteration: 10, Func. Count: 82, Neg. LLF: 155.44275903546728
Iteration: 11, Func. Count: 90, Neg. LLF: 155.44274438320642
Iteration: 12, Func. Count: 97, Neg. LLF: 155.4427443831979
Optimization terminated successfully (Exit mode 0)
Current function value: 155.44274438320642
Iterations: 12
Function evaluations: 97
Gradient evaluations: 12
Iteration: 1, Func. Count: 6, Neg. LLF: 158.8859174268187
Iteration: 2, Func. Count: 12, Neg. LLF: 158.88473599597384
Iteration: 3, Func. Count: 18, Neg. LLF: 160.31094640588077
Iteration: 4, Func. Count: 24, Neg. LLF: 156.75061428692104
Iteration: 5, Func. Count: 29, Neg. LLF: 156.68144601292389
Iteration: 6, Func. Count: 34, Neg. LLF: 156.58530373907942
Iteration: 7, Func. Count: 39, Neg. LLF: 156.37886794625598
Iteration: 8, Func. Count: 44, Neg. LLF: 156.30075546035536
Iteration: 9, Func. Count: 49, Neg. LLF: 156.27798729584208
Iteration: 10, Func. Count: 54, Neg. LLF: 156.2765249708202
Iteration: 11, Func. Count: 59, Neg. LLF: 156.2764840627598
Iteration: 12, Func. Count: 64, Neg. LLF: 156.2764799456004
Iteration: 13, Func. Count: 68, Neg. LLF: 156.2764799456175
Optimization terminated successfully (Exit mode 0)
Current function value: 156.2764799456004
Iterations: 13
Function evaluations: 68
Gradient evaluations: 13
Iteration: 1, Func. Count: 7, Neg. LLF: 441.02033956487213
Iteration: 2, Func. Count: 15, Neg. LLF: 155.41598760340304
Iteration: 3, Func. Count: 21, Neg. LLF: 155.40115366972714
Iteration: 4, Func. Count: 27, Neg. LLF: 155.3752979800565
Iteration: 5, Func. Count: 33, Neg. LLF: 155.34783234191178
Iteration: 6, Func. Count: 39, Neg. LLF: 155.34697499173652
Iteration: 7, Func. Count: 45, Neg. LLF: 155.34690708285098
Iteration: 8, Func. Count: 51, Neg. LLF: 155.34689978026162
Iteration: 9, Func. Count: 56, Neg. LLF: 155.3468997803576
Optimization terminated successfully (Exit mode 0)
Current function value: 155.34689978026162
Iterations: 9
Function evaluations: 56
Gradient evaluations: 9
Iteration: 1, Func. Count: 8, Neg. LLF: 187.35547000587917
Iteration: 2, Func. Count: 17, Neg. LLF: 155.89742194525184
Iteration: 3, Func. Count: 25, Neg. LLF: 155.32837073639882
Iteration: 4, Func. Count: 32, Neg. LLF: 160.77379607596558
Iteration: 5, Func. Count: 41, Neg. LLF: 155.30682765899843
Iteration: 6, Func. Count: 48, Neg. LLF: 155.21950904460908
Iteration: 7, Func. Count: 55, Neg. LLF: 155.2107660627644
Iteration: 8, Func. Count: 62, Neg. LLF: 155.20521931523277
Iteration: 9, Func. Count: 69, Neg. LLF: 155.20349653711892
Iteration: 10, Func. Count: 76, Neg. LLF: 155.20090160484398
Iteration: 11, Func. Count: 83, Neg. LLF: 155.1968168039315
Iteration: 12, Func. Count: 90, Neg. LLF: 155.1871297034421
Iteration: 13, Func. Count: 97, Neg. LLF: 155.17294073105614
Iteration: 14, Func. Count: 104, Neg. LLF: 155.16254867641538
Iteration: 15, Func. Count: 111, Neg. LLF: 155.15774175471256
Iteration: 16, Func. Count: 118, Neg. LLF: 155.15706702190724
Iteration: 17, Func. Count: 125, Neg. LLF: 155.1570500607567
Iteration: 18, Func. Count: 132, Neg. LLF: 155.15704907612044
Optimization terminated successfully (Exit mode 0)
Current function value: 155.15704907612044
Iterations: 18
Function evaluations: 132
Gradient evaluations: 18
Iteration: 1, Func. Count: 9, Neg. LLF: 187.4426522869832
Iteration: 2, Func. Count: 19, Neg. LLF: 156.7386067970953
Iteration: 3, Func. Count: 28, Neg. LLF: 155.42469262924467
Iteration: 4, Func. Count: 36, Neg. LLF: 155.34561813508662
Iteration: 5, Func. Count: 44, Neg. LLF: 155.27429506583047
Iteration: 6, Func. Count: 52, Neg. LLF: 158.92669683603083
Iteration: 7, Func. Count: 61, Neg. LLF: 155.21347249934564
Iteration: 8, Func. Count: 69, Neg. LLF: 155.17639522520102
Iteration: 9, Func. Count: 77, Neg. LLF: 155.17458196796244
Iteration: 10, Func. Count: 85, Neg. LLF: 155.1737396731823
Iteration: 11, Func. Count: 93, Neg. LLF: 155.1727119779036
Iteration: 12, Func. Count: 101, Neg. LLF: 155.17081828150162
Iteration: 13, Func. Count: 109, Neg. LLF: 155.16750165585202
Iteration: 14, Func. Count: 117, Neg. LLF: 155.1621123306416
Iteration: 15, Func. Count: 125, Neg. LLF: 155.15811986180503
Iteration: 16, Func. Count: 133, Neg. LLF: 155.15711388783163
Iteration: 17, Func. Count: 141, Neg. LLF: 155.15705295304014
Iteration: 18, Func. Count: 149, Neg. LLF: 155.15704903387527
Iteration: 19, Func. Count: 156, Neg. LLF: 155.15704906894695
Optimization terminated successfully (Exit mode 0)
Current function value: 155.15704903387527
Iterations: 19
Function evaluations: 156
Gradient evaluations: 19
Iteration: 1, Func. Count: 10, Neg. LLF: 187.5897965599576
Iteration: 2, Func. Count: 21, Neg. LLF: 157.60315452059902
Iteration: 3, Func. Count: 31, Neg. LLF: 155.46457734602865
Iteration: 4, Func. Count: 40, Neg. LLF: 155.36529700410637
Iteration: 5, Func. Count: 49, Neg. LLF: 155.24355202767774
Iteration: 6, Func. Count: 58, Neg. LLF: 158.06959832851524
Iteration: 7, Func. Count: 68, Neg. LLF: 155.19188321479135
Iteration: 8, Func. Count: 77, Neg. LLF: 155.18739662148715
Iteration: 9, Func. Count: 86, Neg. LLF: 155.18521076297785
Iteration: 10, Func. Count: 95, Neg. LLF: 155.1834605199069
Iteration: 11, Func. Count: 104, Neg. LLF: 155.18167333985636
Iteration: 12, Func. Count: 113, Neg. LLF: 155.17634609632626
Iteration: 13, Func. Count: 122, Neg. LLF: 155.1676403284984
Iteration: 14, Func. Count: 131, Neg. LLF: 155.160635282835
Iteration: 15, Func. Count: 140, Neg. LLF: 155.15725671716928
Iteration: 16, Func. Count: 149, Neg. LLF: 155.15706681030488
Iteration: 17, Func. Count: 158, Neg. LLF: 155.15704960318268
Iteration: 18, Func. Count: 167, Neg. LLF: 155.15704902428757
Optimization terminated successfully (Exit mode 0)
Current function value: 155.15704902428757
Iterations: 18
Function evaluations: 167
Gradient evaluations: 18
Iteration: 1, Func. Count: 7, Neg. LLF: 160.45476300392073
Iteration: 2, Func. Count: 14, Neg. LLF: 158.60796716897067
Iteration: 3, Func. Count: 21, Neg. LLF: 160.39835424511324
Iteration: 4, Func. Count: 28, Neg. LLF: 156.73188258097383
Iteration: 5, Func. Count: 34, Neg. LLF: 156.66605669892365
Iteration: 6, Func. Count: 40, Neg. LLF: 156.54233467365344
Iteration: 7, Func. Count: 46, Neg. LLF: 156.40080386016723
Iteration: 8, Func. Count: 52, Neg. LLF: 156.30348804230877
Iteration: 9, Func. Count: 58, Neg. LLF: 156.2786235431822
Iteration: 10, Func. Count: 64, Neg. LLF: 156.27671028316962
Iteration: 11, Func. Count: 70, Neg. LLF: 156.27650668322252
Iteration: 12, Func. Count: 76, Neg. LLF: 156.27648071178444
Iteration: 13, Func. Count: 82, Neg. LLF: 156.27647952887997
Iteration: 14, Func. Count: 87, Neg. LLF: 156.27647957314056
Optimization terminated successfully (Exit mode 0)
Current function value: 156.27647952887997
Iterations: 14
Function evaluations: 87
Gradient evaluations: 14
Iteration: 1, Func. Count: 8, Neg. LLF: 441.07276756467866
Iteration: 2, Func. Count: 17, Neg. LLF: 155.42069351942914
Iteration: 3, Func. Count: 24, Neg. LLF: 155.3968935614531
Iteration: 4, Func. Count: 31, Neg. LLF: 155.37059485949104
Iteration: 5, Func. Count: 38, Neg. LLF: 155.35194248352764
Iteration: 6, Func. Count: 45, Neg. LLF: 155.3476312973938
Iteration: 7, Func. Count: 52, Neg. LLF: 155.34692050254958
Iteration: 8, Func. Count: 59, Neg. LLF: 155.3468999000601
Iteration: 9, Func. Count: 65, Neg. LLF: 155.34689990045575
Optimization terminated successfully (Exit mode 0)
Current function value: 155.3468999000601
Iterations: 9
Function evaluations: 65
Gradient evaluations: 9
Iteration: 1, Func. Count: 9, Neg. LLF: 398.4973826370658
Iteration: 2, Func. Count: 19, Neg. LLF: 155.3993057644118
Iteration: 3, Func. Count: 27, Neg. LLF: 155.39997545422088
Iteration: 4, Func. Count: 36, Neg. LLF: 155.376978545132
Iteration: 5, Func. Count: 44, Neg. LLF: 155.37429937716087
Iteration: 6, Func. Count: 52, Neg. LLF: 155.36684520937442
Iteration: 7, Func. Count: 60, Neg. LLF: 155.35562285402403
Iteration: 8, Func. Count: 68, Neg. LLF: 155.3547565226106
Iteration: 9, Func. Count: 76, Neg. LLF: 155.3531061542239
Iteration: 10, Func. Count: 84, Neg. LLF: 155.35085302687764
Iteration: 11, Func. Count: 92, Neg. LLF: 155.34703124143073
Iteration: 12, Func. Count: 100, Neg. LLF: 155.33668181653508
Iteration: 13, Func. Count: 108, Neg. LLF: 155.32186013156965
Iteration: 14, Func. Count: 116, Neg. LLF: 155.309714591671
Iteration: 15, Func. Count: 124, Neg. LLF: 155.27925253442052
Iteration: 16, Func. Count: 132, Neg. LLF: 155.26280801596087
Iteration: 17, Func. Count: 140, Neg. LLF: 155.21366593641966
Iteration: 18, Func. Count: 148, Neg. LLF: 155.16966186625137
Iteration: 19, Func. Count: 156, Neg. LLF: 155.18000376511574
Iteration: 20, Func. Count: 165, Neg. LLF: 155.2877479967935
Iteration: 21, Func. Count: 174, Neg. LLF: 155.15986541981562
Iteration: 22, Func. Count: 182, Neg. LLF: 155.15753789525698
Iteration: 23, Func. Count: 190, Neg. LLF: 157.7400142284752
Iteration: 24, Func. Count: 201, Neg. LLF: 155.84150372713148
Iteration: 25, Func. Count: 211, Neg. LLF: 155.15716958903397
Iteration: 26, Func. Count: 219, Neg. LLF: 155.15708073696527
Iteration: 27, Func. Count: 227, Neg. LLF: 155.15708283670006
Iteration: 28, Func. Count: 236, Neg. LLF: 155.15707118868255
Iteration: 29, Func. Count: 244, Neg. LLF: 155.15706709637095
Iteration: 30, Func. Count: 252, Neg. LLF: 155.1570596506149
Iteration: 31, Func. Count: 260, Neg. LLF: 155.15705275035384
Iteration: 32, Func. Count: 268, Neg. LLF: 155.15704945565838
Iteration: 33, Func. Count: 275, Neg. LLF: 155.15704945559494
Optimization terminated successfully (Exit mode 0)
Current function value: 155.15704945565838
Iterations: 34
Function evaluations: 275
Gradient evaluations: 33
Iteration: 1, Func. Count: 10, Neg. LLF: 189.08656954140497
Iteration: 2, Func. Count: 20, Neg. LLF: 155.6387678652768
Iteration: 3, Func. Count: 29, Neg. LLF: 155.6079811474995
Iteration: 4, Func. Count: 38, Neg. LLF: 155.57807768239647
Iteration: 5, Func. Count: 47, Neg. LLF: 155.54490925184876
Iteration: 6, Func. Count: 56, Neg. LLF: 155.51303256880752
Iteration: 7, Func. Count: 65, Neg. LLF: 155.45161058965155
Iteration: 8, Func. Count: 74, Neg. LLF: 155.4284331531406
Iteration: 9, Func. Count: 83, Neg. LLF: 155.416133608472
Iteration: 10, Func. Count: 92, Neg. LLF: 155.41404927525795
Iteration: 11, Func. Count: 101, Neg. LLF: 155.41153079511787
Iteration: 12, Func. Count: 110, Neg. LLF: 155.36014560306032
Iteration: 13, Func. Count: 119, Neg. LLF: 155.34348848507062
Iteration: 14, Func. Count: 128, Neg. LLF: 155.34227943087768
Iteration: 15, Func. Count: 137, Neg. LLF: 155.33935512723852
Iteration: 16, Func. Count: 146, Neg. LLF: 155.32903942506468
Iteration: 17, Func. Count: 155, Neg. LLF: 159.8461098783117
Iteration: 18, Func. Count: 165, Neg. LLF: 157.04671699498098
Iteration: 19, Func. Count: 175, Neg. LLF: 155.20580154378564
Iteration: 20, Func. Count: 184, Neg. LLF: 155.16773684327185
Iteration: 21, Func. Count: 193, Neg. LLF: 155.15916881199223
Iteration: 22, Func. Count: 202, Neg. LLF: 155.1576711241633
Iteration: 23, Func. Count: 211, Neg. LLF: 155.1574488759656
Iteration: 24, Func. Count: 220, Neg. LLF: 155.1571701274899
Iteration: 25, Func. Count: 229, Neg. LLF: 155.1571288224611
Iteration: 26, Func. Count: 238, Neg. LLF: 155.15706325272038
Iteration: 27, Func. Count: 247, Neg. LLF: 155.15705064032676
Iteration: 28, Func. Count: 256, Neg. LLF: 155.15704903517388
Iteration: 29, Func. Count: 264, Neg. LLF: 155.15704907035217
Optimization terminated successfully (Exit mode 0)
Current function value: 155.15704903517388
Iterations: 29
Function evaluations: 264
Gradient evaluations: 29
Iteration: 1, Func. Count: 11, Neg. LLF: 189.2064460695106
Iteration: 2, Func. Count: 22, Neg. LLF: 155.6241053149946
Iteration: 3, Func. Count: 32, Neg. LLF: 155.5839210450947
Iteration: 4, Func. Count: 42, Neg. LLF: 155.5300227157494
Iteration: 5, Func. Count: 52, Neg. LLF: 155.4986171418643
Iteration: 6, Func. Count: 62, Neg. LLF: 155.48896114418926
Iteration: 7, Func. Count: 72, Neg. LLF: 155.47670255370357
Iteration: 8, Func. Count: 82, Neg. LLF: 155.4494225879153
Iteration: 9, Func. Count: 92, Neg. LLF: 155.44356514580468
Iteration: 10, Func. Count: 102, Neg. LLF: 155.44039963512418
Iteration: 11, Func. Count: 112, Neg. LLF: 155.44037669596818
Iteration: 12, Func. Count: 122, Neg. LLF: 155.44037426008293
Iteration: 13, Func. Count: 132, Neg. LLF: 155.44037289762346
Iteration: 14, Func. Count: 141, Neg. LLF: 155.44037289761516
Optimization terminated successfully (Exit mode 0)
Current function value: 155.44037289762346
Iterations: 14
Function evaluations: 141
Gradient evaluations: 14
Iteration: 1, Func. Count: 8, Neg. LLF: 155.43416687460478
Iteration: 2, Func. Count: 16, Neg. LLF: 156.43813982401784
Iteration: 3, Func. Count: 24, Neg. LLF: 154.17746496939685
Iteration: 4, Func. Count: 32, Neg. LLF: 153.93069243209752
Iteration: 5, Func. Count: 39, Neg. LLF: 153.94142777395427
Iteration: 6, Func. Count: 47, Neg. LLF: 153.89955999712703
Iteration: 7, Func. Count: 54, Neg. LLF: 153.884795067957
Iteration: 8, Func. Count: 61, Neg. LLF: 153.8842834530754
Iteration: 9, Func. Count: 68, Neg. LLF: 153.8842649672383
Iteration: 10, Func. Count: 75, Neg. LLF: 153.88424407446038
Iteration: 11, Func. Count: 82, Neg. LLF: 153.8841891250072
Iteration: 12, Func. Count: 89, Neg. LLF: 153.88412152366382
Iteration: 13, Func. Count: 96, Neg. LLF: 153.88404639695563
Iteration: 14, Func. Count: 103, Neg. LLF: 153.8840100834456
Iteration: 15, Func. Count: 110, Neg. LLF: 153.8840026556585
Iteration: 16, Func. Count: 116, Neg. LLF: 153.88400265566148
Optimization terminated successfully (Exit mode 0)
Current function value: 153.8840026556585
Iterations: 16
Function evaluations: 116
Gradient evaluations: 16
Iteration: 1, Func. Count: 9, Neg. LLF: 443.1073766931121
Iteration: 2, Func. Count: 19, Neg. LLF: 155.41933504669893
Iteration: 3, Func. Count: 27, Neg. LLF: 155.39695447820543
Iteration: 4, Func. Count: 35, Neg. LLF: 155.37318710195177
Iteration: 5, Func. Count: 43, Neg. LLF: 155.35155220974468
Iteration: 6, Func. Count: 51, Neg. LLF: 155.34761656151287
Iteration: 7, Func. Count: 59, Neg. LLF: 155.34692016286706
Iteration: 8, Func. Count: 67, Neg. LLF: 155.34689987401805
Iteration: 9, Func. Count: 74, Neg. LLF: 155.34689987440828
Optimization terminated successfully (Exit mode 0)
Current function value: 155.34689987401805
Iterations: 9
Function evaluations: 74
Gradient evaluations: 9
Iteration: 1, Func. Count: 10, Neg. LLF: 176.04618073403793
Iteration: 2, Func. Count: 21, Neg. LLF: 161.85435608046797
Iteration: 3, Func. Count: 31, Neg. LLF: 155.1317322667626
Iteration: 4, Func. Count: 40, Neg. LLF: 155.06954384994927
Iteration: 5, Func. Count: 49, Neg. LLF: 155.13845124833347
Iteration: 6, Func. Count: 59, Neg. LLF: 154.9133355452561
Iteration: 7, Func. Count: 68, Neg. LLF: 154.90587980830406
Iteration: 8, Func. Count: 77, Neg. LLF: 154.86848845639648
Iteration: 9, Func. Count: 86, Neg. LLF: 154.54274743367873
Iteration: 10, Func. Count: 95, Neg. LLF: 154.14472047134046
Iteration: 11, Func. Count: 104, Neg. LLF: 154.10115666843504
Iteration: 12, Func. Count: 113, Neg. LLF: 154.04838645081256
Iteration: 13, Func. Count: 122, Neg. LLF: 153.99613409962404
Iteration: 14, Func. Count: 131, Neg. LLF: 153.9581060091511
Iteration: 15, Func. Count: 140, Neg. LLF: 153.92169720570737
Iteration: 16, Func. Count: 149, Neg. LLF: 153.90341797092535
Iteration: 17, Func. Count: 158, Neg. LLF: 153.89791431669263
Iteration: 18, Func. Count: 167, Neg. LLF: 153.89575147452663
Iteration: 19, Func. Count: 176, Neg. LLF: 153.8936225048369
Iteration: 20, Func. Count: 185, Neg. LLF: 153.89130276942376
Iteration: 21, Func. Count: 194, Neg. LLF: 153.88787905128405
Iteration: 22, Func. Count: 203, Neg. LLF: 153.88507698220695
Iteration: 23, Func. Count: 212, Neg. LLF: 153.88420229639192
Iteration: 24, Func. Count: 221, Neg. LLF: 153.8841153185112
Iteration: 25, Func. Count: 230, Neg. LLF: 153.88401092056307
Iteration: 26, Func. Count: 239, Neg. LLF: 153.88421143704903
Iteration: 27, Func. Count: 249, Neg. LLF: 153.88401639124098
Iteration: 28, Func. Count: 259, Neg. LLF: 153.88404780353065
Iteration: 29, Func. Count: 269, Neg. LLF: 153.88400302021876
Iteration: 30, Func. Count: 277, Neg. LLF: 153.88400309536132
Optimization terminated successfully (Exit mode 0)
Current function value: 153.88400302021876
Iterations: 31
Function evaluations: 277
Gradient evaluations: 30
Iteration: 1, Func. Count: 11, Neg. LLF: 170.75035928816018
Iteration: 2, Func. Count: 22, Neg. LLF: 168.0522341014678
Iteration: 3, Func. Count: 33, Neg. LLF: 155.33959234131012
Iteration: 4, Func. Count: 43, Neg. LLF: 155.0732303289084
Iteration: 5, Func. Count: 53, Neg. LLF: 155.60898450979795
Iteration: 6, Func. Count: 64, Neg. LLF: 155.101307458405
Iteration: 7, Func. Count: 75, Neg. LLF: 154.95015289843994
Iteration: 8, Func. Count: 85, Neg. LLF: 154.89807254102257
Iteration: 9, Func. Count: 95, Neg. LLF: 154.87721002499677
Iteration: 10, Func. Count: 105, Neg. LLF: 154.83178134514597
Iteration: 11, Func. Count: 115, Neg. LLF: 154.73355919843152
Iteration: 12, Func. Count: 125, Neg. LLF: 154.60347815265982
Iteration: 13, Func. Count: 135, Neg. LLF: 154.9512902789591
Iteration: 14, Func. Count: 146, Neg. LLF: 154.1273009378593
Iteration: 15, Func. Count: 156, Neg. LLF: 154.01983405502483
Iteration: 16, Func. Count: 166, Neg. LLF: 153.98888907094673
Iteration: 17, Func. Count: 176, Neg. LLF: 153.97680285029335
Iteration: 18, Func. Count: 186, Neg. LLF: 153.96289284798954
Iteration: 19, Func. Count: 196, Neg. LLF: 153.94174725121482
Iteration: 20, Func. Count: 206, Neg. LLF: 153.92141868641275
Iteration: 21, Func. Count: 216, Neg. LLF: 153.90849286422232
Iteration: 22, Func. Count: 226, Neg. LLF: 153.88957133303478
Iteration: 23, Func. Count: 236, Neg. LLF: 153.88620482832124
Iteration: 24, Func. Count: 246, Neg. LLF: 153.88419459611558
Iteration: 25, Func. Count: 256, Neg. LLF: 153.88408866238058
Iteration: 26, Func. Count: 266, Neg. LLF: 153.8840539930089
Iteration: 27, Func. Count: 276, Neg. LLF: 153.8840319980103
Iteration: 28, Func. Count: 286, Neg. LLF: 153.88420294260112
Iteration: 29, Func. Count: 297, Neg. LLF: 153.8845512042164
Iteration: 30, Func. Count: 308, Neg. LLF: 153.88427022517337
Iteration: 31, Func. Count: 319, Neg. LLF: 153.88401135011839
Iteration: 32, Func. Count: 329, Neg. LLF: 153.8840087469794
Optimization terminated successfully (Exit mode 0)
Current function value: 153.88400865683963
Iterations: 33
Function evaluations: 329
Gradient evaluations: 32
Iteration: 1, Func. Count: 12, Neg. LLF: 165.44159706025525
Iteration: 2, Func. Count: 24, Neg. LLF: 172.54895203755672
Iteration: 3, Func. Count: 36, Neg. LLF: 154.4429206782064
Iteration: 4, Func. Count: 47, Neg. LLF: 154.1906289251176
Iteration: 5, Func. Count: 58, Neg. LLF: 154.0951354805933
Iteration: 6, Func. Count: 69, Neg. LLF: 154.9924873867688
Iteration: 7, Func. Count: 81, Neg. LLF: 154.0134734089777
Iteration: 8, Func. Count: 92, Neg. LLF: 153.94151057579384
Iteration: 9, Func. Count: 103, Neg. LLF: 153.90896648801674
Iteration: 10, Func. Count: 114, Neg. LLF: 153.90346812516142
Iteration: 11, Func. Count: 125, Neg. LLF: 153.9015016782199
Iteration: 12, Func. Count: 136, Neg. LLF: 153.90139011175302
Iteration: 13, Func. Count: 147, Neg. LLF: 153.9013097835044
Iteration: 14, Func. Count: 158, Neg. LLF: 153.9011527480338
Iteration: 15, Func. Count: 169, Neg. LLF: 153.90094261195105
Iteration: 16, Func. Count: 180, Neg. LLF: 153.90073556572207
Iteration: 17, Func. Count: 191, Neg. LLF: 153.90064559381736
Iteration: 18, Func. Count: 202, Neg. LLF: 153.9006313791721
Iteration: 19, Func. Count: 213, Neg. LLF: 153.9006306043274
Optimization terminated successfully (Exit mode 0)
Current function value: 153.9006306043274
Iterations: 19
Function evaluations: 213
Gradient evaluations: 19
Iteration: 1, Func. Count: 9, Neg. LLF: 155.43033704818725
Iteration: 2, Func. Count: 18, Neg. LLF: 155.91569839232847
Iteration: 3, Func. Count: 27, Neg. LLF: 154.14363605457433
Iteration: 4, Func. Count: 36, Neg. LLF: 153.93626615774886
Iteration: 5, Func. Count: 44, Neg. LLF: 153.91343557845346
Iteration: 6, Func. Count: 52, Neg. LLF: 153.89199818083424
Iteration: 7, Func. Count: 60, Neg. LLF: 153.8841715875841
Iteration: 8, Func. Count: 68, Neg. LLF: 153.88411223594102
Iteration: 9, Func. Count: 76, Neg. LLF: 153.88410491596704
Iteration: 10, Func. Count: 84, Neg. LLF: 153.88409579425021
Iteration: 11, Func. Count: 92, Neg. LLF: 153.88407769365236
Iteration: 12, Func. Count: 100, Neg. LLF: 153.8840519856537
Iteration: 13, Func. Count: 108, Neg. LLF: 153.88402342428301
Iteration: 14, Func. Count: 116, Neg. LLF: 153.88400719105363
Iteration: 15, Func. Count: 124, Neg. LLF: 153.88400259103489
Iteration: 16, Func. Count: 131, Neg. LLF: 153.884002635986
Optimization terminated successfully (Exit mode 0)
Current function value: 153.88400259103489
Iterations: 16
Function evaluations: 131
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 440.4417883339695
Iteration: 2, Func. Count: 21, Neg. LLF: 155.41920581371855
Iteration: 3, Func. Count: 30, Neg. LLF: 155.39921909689195
Iteration: 4, Func. Count: 39, Neg. LLF: 155.37041960632624
Iteration: 5, Func. Count: 48, Neg. LLF: 155.3498567984268
Iteration: 6, Func. Count: 57, Neg. LLF: 155.3474060094843
Iteration: 7, Func. Count: 66, Neg. LLF: 155.34691730925923
Iteration: 8, Func. Count: 75, Neg. LLF: 155.34690082847172
Iteration: 9, Func. Count: 84, Neg. LLF: 155.34689973639226
Iteration: 10, Func. Count: 92, Neg. LLF: 155.3468997363573
Optimization terminated successfully (Exit mode 0)
Current function value: 155.34689973639226
Iterations: 10
Function evaluations: 92
Gradient evaluations: 10
Iteration: 1, Func. Count: 11, Neg. LLF: 188.46412997181812
Iteration: 2, Func. Count: 22, Neg. LLF: 158.77986907205235
Iteration: 3, Func. Count: 33, Neg. LLF: 155.56308992628774
Iteration: 4, Func. Count: 44, Neg. LLF: 155.3663149352415
Iteration: 5, Func. Count: 55, Neg. LLF: 154.87208497921281
Iteration: 6, Func. Count: 65, Neg. LLF: 154.36897509294442
Iteration: 7, Func. Count: 75, Neg. LLF: 154.21848442221585
Iteration: 8, Func. Count: 85, Neg. LLF: 154.12475072107534
Iteration: 9, Func. Count: 95, Neg. LLF: 154.07972546859494
Iteration: 10, Func. Count: 105, Neg. LLF: 154.04407123991166
Iteration: 11, Func. Count: 115, Neg. LLF: 153.9847157727323
Iteration: 12, Func. Count: 125, Neg. LLF: 153.91726182506164
Iteration: 13, Func. Count: 135, Neg. LLF: 153.91035513001958
Iteration: 14, Func. Count: 145, Neg. LLF: 153.89705480707443
Iteration: 15, Func. Count: 155, Neg. LLF: 153.89219567643505
Iteration: 16, Func. Count: 165, Neg. LLF: 153.8898899728376
Iteration: 17, Func. Count: 175, Neg. LLF: 153.8884561346256
Iteration: 18, Func. Count: 185, Neg. LLF: 153.88636094650676
Iteration: 19, Func. Count: 195, Neg. LLF: 153.88519103289173
Iteration: 20, Func. Count: 205, Neg. LLF: 153.8845032912947
Iteration: 21, Func. Count: 215, Neg. LLF: 153.88424917034098
Iteration: 22, Func. Count: 225, Neg. LLF: 153.88422875869065
Iteration: 23, Func. Count: 235, Neg. LLF: 153.88420869401438
Iteration: 24, Func. Count: 245, Neg. LLF: 153.8841636605526
Iteration: 25, Func. Count: 255, Neg. LLF: 153.88409600762697
Iteration: 26, Func. Count: 265, Neg. LLF: 153.88403056125247
Iteration: 27, Func. Count: 275, Neg. LLF: 153.884005571553
Iteration: 28, Func. Count: 285, Neg. LLF: 153.884002328506
Iteration: 29, Func. Count: 294, Neg. LLF: 153.88400240364322
Optimization terminated successfully (Exit mode 0)
Current function value: 153.884002328506
Iterations: 29
Function evaluations: 294
Gradient evaluations: 29
Iteration: 1, Func. Count: 12, Neg. LLF: 188.3155688205014
Iteration: 2, Func. Count: 24, Neg. LLF: 159.71913642209924
Iteration: 3, Func. Count: 36, Neg. LLF: 155.27948118518913
Iteration: 4, Func. Count: 47, Neg. LLF: 155.24914199594133
Iteration: 5, Func. Count: 59, Neg. LLF: 156.42646099539755
Iteration: 6, Func. Count: 71, Neg. LLF: 154.95288461366513
Iteration: 7, Func. Count: 82, Neg. LLF: 154.9190289477776
Iteration: 8, Func. Count: 93, Neg. LLF: 154.89428792886272
Iteration: 9, Func. Count: 104, Neg. LLF: 154.81786649284794
Iteration: 10, Func. Count: 115, Neg. LLF: 154.24860085257725
Iteration: 11, Func. Count: 126, Neg. LLF: 154.69944586885066
Iteration: 12, Func. Count: 138, Neg. LLF: 153.9799845260025
Iteration: 13, Func. Count: 149, Neg. LLF: 153.96783166584007
Iteration: 14, Func. Count: 160, Neg. LLF: 153.9564920313959
Iteration: 15, Func. Count: 171, Neg. LLF: 153.9410682310547
Iteration: 16, Func. Count: 182, Neg. LLF: 153.92072426377547
Iteration: 17, Func. Count: 193, Neg. LLF: 153.89831715206859
Iteration: 18, Func. Count: 204, Neg. LLF: 153.8866781782562
Iteration: 19, Func. Count: 215, Neg. LLF: 153.88526267295626
Iteration: 20, Func. Count: 226, Neg. LLF: 153.88466484345616
Iteration: 21, Func. Count: 237, Neg. LLF: 153.88436365238243
Iteration: 22, Func. Count: 248, Neg. LLF: 153.88420053458384
Iteration: 23, Func. Count: 259, Neg. LLF: 153.88403223319688
Iteration: 24, Func. Count: 270, Neg. LLF: 153.8840047660316
Iteration: 25, Func. Count: 281, Neg. LLF: 153.88400229800544
Iteration: 26, Func. Count: 291, Neg. LLF: 153.88400238813958
Optimization terminated successfully (Exit mode 0)
Current function value: 153.88400229800544
Iterations: 26
Function evaluations: 291
Gradient evaluations: 26
Iteration: 1, Func. Count: 13, Neg. LLF: 159.17294441254035
Iteration: 2, Func. Count: 26, Neg. LLF: 154.18096126646842
Iteration: 3, Func. Count: 38, Neg. LLF: 154.1637326495548
Iteration: 4, Func. Count: 51, Neg. LLF: 154.6162081037342
Iteration: 5, Func. Count: 64, Neg. LLF: 153.9616869861838
Iteration: 6, Func. Count: 77, Neg. LLF: 153.90122937365908
Iteration: 7, Func. Count: 89, Neg. LLF: 153.90068127161132
Iteration: 8, Func. Count: 101, Neg. LLF: 153.90064502320132
Iteration: 9, Func. Count: 113, Neg. LLF: 153.90064142186185
Iteration: 10, Func. Count: 124, Neg. LLF: 153.90064142183732
Optimization terminated successfully (Exit mode 0)
Current function value: 153.90064142186185
Iterations: 10
Function evaluations: 124
Gradient evaluations: 10
Iteration: 1, Func. Count: 6, Neg. LLF: 158.77457420887313
Iteration: 2, Func. Count: 12, Neg. LLF: 157.6479489164821
Iteration: 3, Func. Count: 17, Neg. LLF: 157.30439546376743
Iteration: 4, Func. Count: 22, Neg. LLF: 157.14977794440188
Iteration: 5, Func. Count: 27, Neg. LLF: 156.87711720932225
Iteration: 6, Func. Count: 32, Neg. LLF: 156.76839703066906
Iteration: 7, Func. Count: 37, Neg. LLF: 156.74536208944684
Iteration: 8, Func. Count: 42, Neg. LLF: 156.74384788775765
Iteration: 9, Func. Count: 47, Neg. LLF: 156.7438276019062
Iteration: 10, Func. Count: 51, Neg. LLF: 156.74382764667823
Optimization terminated successfully (Exit mode 0)
Current function value: 156.7438276019062
Iterations: 10
Function evaluations: 51
Gradient evaluations: 10
Iteration: 1, Func. Count: 7, Neg. LLF: 566.3345614304985
Iteration: 2, Func. Count: 15, Neg. LLF: 155.39317297347168
Iteration: 3, Func. Count: 21, Neg. LLF: 155.37428579679818
Iteration: 4, Func. Count: 27, Neg. LLF: 155.35026374875812
Iteration: 5, Func. Count: 33, Neg. LLF: 155.34703003726636
Iteration: 6, Func. Count: 39, Neg. LLF: 155.34691034362535
Iteration: 7, Func. Count: 45, Neg. LLF: 155.3469038240025
Iteration: 8, Func. Count: 51, Neg. LLF: 155.3468997373451
Iteration: 9, Func. Count: 56, Neg. LLF: 155.3468997374291
Optimization terminated successfully (Exit mode 0)
Current function value: 155.3468997373451
Iterations: 9
Function evaluations: 56
Gradient evaluations: 9
Iteration: 1, Func. Count: 8, Neg. LLF: 188.97120901976987
Iteration: 2, Func. Count: 16, Neg. LLF: 155.67419010966717
Iteration: 3, Func. Count: 23, Neg. LLF: 155.65783549283955
Iteration: 4, Func. Count: 30, Neg. LLF: 155.63007974874668
Iteration: 5, Func. Count: 37, Neg. LLF: 155.49164530455914
Iteration: 6, Func. Count: 44, Neg. LLF: 157.42936396795685
Iteration: 7, Func. Count: 52, Neg. LLF: 157.00910544204683
Iteration: 8, Func. Count: 60, Neg. LLF: 156.16702401941168
Iteration: 9, Func. Count: 68, Neg. LLF: 155.39661799361522
Iteration: 10, Func. Count: 76, Neg. LLF: 155.34854387174363
Iteration: 11, Func. Count: 83, Neg. LLF: 155.34742933068176
Iteration: 12, Func. Count: 90, Neg. LLF: 155.34627073784168
Iteration: 13, Func. Count: 97, Neg. LLF: 155.34626244725501
Iteration: 14, Func. Count: 103, Neg. LLF: 155.3462624475543
Optimization terminated successfully (Exit mode 0)
Current function value: 155.34626244725501
Iterations: 14
Function evaluations: 103
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 189.21022089233023
Iteration: 2, Func. Count: 18, Neg. LLF: 155.631957509519
Iteration: 3, Func. Count: 26, Neg. LLF: 155.6018886853251
Iteration: 4, Func. Count: 34, Neg. LLF: 155.5772552437451
Iteration: 5, Func. Count: 42, Neg. LLF: 155.53431186219888
Iteration: 6, Func. Count: 50, Neg. LLF: 155.5228744436388
Iteration: 7, Func. Count: 59, Neg. LLF: 155.43157965314052
Iteration: 8, Func. Count: 67, Neg. LLF: 155.42024843011592
Iteration: 9, Func. Count: 75, Neg. LLF: 155.41527845561131
Iteration: 10, Func. Count: 83, Neg. LLF: 155.4134511719496
Iteration: 11, Func. Count: 91, Neg. LLF: 155.40995480856492
Iteration: 12, Func. Count: 99, Neg. LLF: 155.352069172081
Iteration: 13, Func. Count: 107, Neg. LLF: 155.3505230335413
Iteration: 14, Func. Count: 115, Neg. LLF: 155.34742882156553
Iteration: 15, Func. Count: 123, Neg. LLF: 155.34631429308368
Iteration: 16, Func. Count: 131, Neg. LLF: 155.34626199358263
Iteration: 17, Func. Count: 138, Neg. LLF: 155.34626199863288
Optimization terminated successfully (Exit mode 0)
Current function value: 155.34626199358263
Iterations: 18
Function evaluations: 138
Gradient evaluations: 17
Iteration: 1, Func. Count: 10, Neg. LLF: 189.33298572174442
Iteration: 2, Func. Count: 20, Neg. LLF: 155.62180292171792
Iteration: 3, Func. Count: 29, Neg. LLF: 155.56796400773771
Iteration: 4, Func. Count: 38, Neg. LLF: 155.516437969281
Iteration: 5, Func. Count: 47, Neg. LLF: 155.4997223637223
Iteration: 6, Func. Count: 56, Neg. LLF: 155.48310409949502
Iteration: 7, Func. Count: 65, Neg. LLF: 155.47522308796272
Iteration: 8, Func. Count: 74, Neg. LLF: 155.47019545212058
Iteration: 9, Func. Count: 83, Neg. LLF: 155.45837186996758
Iteration: 10, Func. Count: 92, Neg. LLF: 155.4479851223218
Iteration: 11, Func. Count: 101, Neg. LLF: 155.44102138554672
Iteration: 12, Func. Count: 110, Neg. LLF: 155.44093216494457
Iteration: 13, Func. Count: 119, Neg. LLF: 155.44092985790118
Iteration: 14, Func. Count: 127, Neg. LLF: 155.4409298578905
Optimization terminated successfully (Exit mode 0)
Current function value: 155.44092985790118
Iterations: 14
Function evaluations: 127
Gradient evaluations: 14
Iteration: 1, Func. Count: 7, Neg. LLF: 158.01074446304648
Iteration: 2, Func. Count: 14, Neg. LLF: 159.44404206598637
Iteration: 3, Func. Count: 21, Neg. LLF: 160.18831109417346
Iteration: 4, Func. Count: 28, Neg. LLF: 156.79456160791423
Iteration: 5, Func. Count: 34, Neg. LLF: 157.25876521415577
Iteration: 6, Func. Count: 41, Neg. LLF: 159.20450013505553
Iteration: 7, Func. Count: 49, Neg. LLF: 156.65176502673125
Iteration: 8, Func. Count: 55, Neg. LLF: 156.4691985983359
Iteration: 9, Func. Count: 61, Neg. LLF: 156.37163374878864
Iteration: 10, Func. Count: 67, Neg. LLF: 156.28759890099772
Iteration: 11, Func. Count: 73, Neg. LLF: 156.27732956061064
Iteration: 12, Func. Count: 79, Neg. LLF: 156.2765138865059
Iteration: 13, Func. Count: 85, Neg. LLF: 156.27648197438373
Iteration: 14, Func. Count: 91, Neg. LLF: 156.27647956293745
Iteration: 15, Func. Count: 96, Neg. LLF: 156.27647956293518
Optimization terminated successfully (Exit mode 0)
Current function value: 156.27647956293745
Iterations: 15
Function evaluations: 96
Gradient evaluations: 15
Iteration: 1, Func. Count: 8, Neg. LLF: 441.26432298702963
Iteration: 2, Func. Count: 17, Neg. LLF: 155.41735503772088
Iteration: 3, Func. Count: 24, Neg. LLF: 155.39960972289924
Iteration: 4, Func. Count: 31, Neg. LLF: 155.3712224795343
Iteration: 5, Func. Count: 38, Neg. LLF: 155.34869959471428
Iteration: 6, Func. Count: 45, Neg. LLF: 155.3470529913452
Iteration: 7, Func. Count: 52, Neg. LLF: 155.34690611708658
Iteration: 8, Func. Count: 59, Neg. LLF: 155.3469005251405
Iteration: 9, Func. Count: 66, Neg. LLF: 155.34689972836554
Optimization terminated successfully (Exit mode 0)
Current function value: 155.34689972836554
Iterations: 9
Function evaluations: 66
Gradient evaluations: 9
Iteration: 1, Func. Count: 9, Neg. LLF: 187.36943303821377
Iteration: 2, Func. Count: 19, Neg. LLF: 155.92329600935528
Iteration: 3, Func. Count: 28, Neg. LLF: 155.3307900910828
Iteration: 4, Func. Count: 36, Neg. LLF: 160.73620062766116
Iteration: 5, Func. Count: 46, Neg. LLF: 155.3436243032787
Iteration: 6, Func. Count: 55, Neg. LLF: 155.22197125224216
Iteration: 7, Func. Count: 63, Neg. LLF: 155.21040974574004
Iteration: 8, Func. Count: 71, Neg. LLF: 155.2060992650054
Iteration: 9, Func. Count: 79, Neg. LLF: 155.20394712007334
Iteration: 10, Func. Count: 87, Neg. LLF: 155.20182957794796
Iteration: 11, Func. Count: 95, Neg. LLF: 155.19794876042036
Iteration: 12, Func. Count: 103, Neg. LLF: 155.1893089553961
Iteration: 13, Func. Count: 111, Neg. LLF: 155.17447539714664
Iteration: 14, Func. Count: 119, Neg. LLF: 155.16430565474397
Iteration: 15, Func. Count: 127, Neg. LLF: 155.15743278483316
Iteration: 16, Func. Count: 135, Neg. LLF: 155.15711130487742
Iteration: 17, Func. Count: 143, Neg. LLF: 155.1570498601616
Iteration: 18, Func. Count: 151, Neg. LLF: 155.1570492322399
Optimization terminated successfully (Exit mode 0)
Current function value: 155.1570492322399
Iterations: 18
Function evaluations: 151
Gradient evaluations: 18
Iteration: 1, Func. Count: 10, Neg. LLF: 187.4598054965144
Iteration: 2, Func. Count: 21, Neg. LLF: 157.4243788261466
Iteration: 3, Func. Count: 31, Neg. LLF: 155.44690709755736
Iteration: 4, Func. Count: 40, Neg. LLF: 155.39875481188795
Iteration: 5, Func. Count: 49, Neg. LLF: 155.30574761122813
Iteration: 6, Func. Count: 58, Neg. LLF: 155.18421163188765
Iteration: 7, Func. Count: 67, Neg. LLF: 157.111104293571
Iteration: 8, Func. Count: 77, Neg. LLF: 155.16523051146453
Iteration: 9, Func. Count: 86, Neg. LLF: 155.16450370602735
Iteration: 10, Func. Count: 95, Neg. LLF: 155.16427307131332
Iteration: 11, Func. Count: 104, Neg. LLF: 155.16284741275538
Iteration: 12, Func. Count: 113, Neg. LLF: 155.15957513814064
Iteration: 13, Func. Count: 122, Neg. LLF: 155.15799554656397
Iteration: 14, Func. Count: 131, Neg. LLF: 155.15705530291154
Iteration: 15, Func. Count: 140, Neg. LLF: 155.15704908628626
Iteration: 16, Func. Count: 148, Neg. LLF: 155.15704912145543
Optimization terminated successfully (Exit mode 0)
Current function value: 155.15704908628626
Iterations: 16
Function evaluations: 148
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 187.61509054608246
Iteration: 2, Func. Count: 23, Neg. LLF: 158.3623587306156
Iteration: 3, Func. Count: 34, Neg. LLF: 155.48177223404323
Iteration: 4, Func. Count: 44, Neg. LLF: 155.3732084256147
Iteration: 5, Func. Count: 54, Neg. LLF: 155.25269590693168
Iteration: 6, Func. Count: 64, Neg. LLF: 156.74985016274903
Iteration: 7, Func. Count: 75, Neg. LLF: 155.19176369490262
Iteration: 8, Func. Count: 85, Neg. LLF: 155.18770957233727
Iteration: 9, Func. Count: 95, Neg. LLF: 155.1849043116192
Iteration: 10, Func. Count: 105, Neg. LLF: 155.18361686342763
Iteration: 11, Func. Count: 115, Neg. LLF: 155.1814341097129
Iteration: 12, Func. Count: 125, Neg. LLF: 155.17606654621807
Iteration: 13, Func. Count: 135, Neg. LLF: 155.16713628650146
Iteration: 14, Func. Count: 145, Neg. LLF: 155.1605776052807
Iteration: 15, Func. Count: 155, Neg. LLF: 155.15725408625804
Iteration: 16, Func. Count: 165, Neg. LLF: 155.15705089820645
Iteration: 17, Func. Count: 175, Neg. LLF: 155.15704920484055
Iteration: 18, Func. Count: 184, Neg. LLF: 155.1570492141045
Optimization terminated successfully (Exit mode 0)
Current function value: 155.15704920484055
Iterations: 18
Function evaluations: 184
Gradient evaluations: 18
Iteration: 1, Func. Count: 8, Neg. LLF: 159.51635524543067
Iteration: 2, Func. Count: 16, Neg. LLF: 158.650163709996
Iteration: 3, Func. Count: 24, Neg. LLF: 159.81934963306014
Iteration: 4, Func. Count: 32, Neg. LLF: 157.3776772484886
Iteration: 5, Func. Count: 40, Neg. LLF: 156.9796874934119
Iteration: 6, Func. Count: 48, Neg. LLF: 156.54325015725271
Iteration: 7, Func. Count: 55, Neg. LLF: 156.48115372616206
Iteration: 8, Func. Count: 62, Neg. LLF: 156.3822948070028
Iteration: 9, Func. Count: 69, Neg. LLF: 156.32617697352362
Iteration: 10, Func. Count: 76, Neg. LLF: 156.30053611210326
Iteration: 11, Func. Count: 83, Neg. LLF: 156.25250504358155
Iteration: 12, Func. Count: 90, Neg. LLF: 156.24643116934516
Iteration: 13, Func. Count: 97, Neg. LLF: 156.2459174585516
Iteration: 14, Func. Count: 104, Neg. LLF: 156.24589973461147
Iteration: 15, Func. Count: 111, Neg. LLF: 156.24589721657676
Iteration: 16, Func. Count: 117, Neg. LLF: 156.24589717367664
Optimization terminated successfully (Exit mode 0)
Current function value: 156.24589721657676
Iterations: 16
Function evaluations: 117
Gradient evaluations: 16
Iteration: 1, Func. Count: 9, Neg. LLF: 441.2866599966877
Iteration: 2, Func. Count: 19, Neg. LLF: 155.4224919071408
Iteration: 3, Func. Count: 27, Neg. LLF: 155.3962747828848
Iteration: 4, Func. Count: 35, Neg. LLF: 155.37023403131553
Iteration: 5, Func. Count: 43, Neg. LLF: 155.3548414656568
Iteration: 6, Func. Count: 51, Neg. LLF: 155.34779622384164
Iteration: 7, Func. Count: 59, Neg. LLF: 155.34696694170782
Iteration: 8, Func. Count: 67, Neg. LLF: 155.34690049049348
Iteration: 9, Func. Count: 75, Neg. LLF: 155.34689972734125
Optimization terminated successfully (Exit mode 0)
Current function value: 155.34689972734125
Iterations: 9
Function evaluations: 75
Gradient evaluations: 9
Iteration: 1, Func. Count: 10, Neg. LLF: 398.1839984252695
Iteration: 2, Func. Count: 21, Neg. LLF: 155.40258246219213
Iteration: 3, Func. Count: 30, Neg. LLF: 155.39351095967223
Iteration: 4, Func. Count: 39, Neg. LLF: 155.37871268823181
Iteration: 5, Func. Count: 48, Neg. LLF: 155.37523949042165
Iteration: 6, Func. Count: 57, Neg. LLF: 155.37100172102154
Iteration: 7, Func. Count: 66, Neg. LLF: 155.3552782001541
Iteration: 8, Func. Count: 75, Neg. LLF: 155.35352138621647
Iteration: 9, Func. Count: 84, Neg. LLF: 155.34923991079154
Iteration: 10, Func. Count: 93, Neg. LLF: 155.34666680376924
Iteration: 11, Func. Count: 102, Neg. LLF: 155.33355837295235
Iteration: 12, Func. Count: 111, Neg. LLF: 155.3223665704369
Iteration: 13, Func. Count: 120, Neg. LLF: 155.31008263575166
Iteration: 14, Func. Count: 129, Neg. LLF: 155.29098039654383
Iteration: 15, Func. Count: 138, Neg. LLF: 155.2732870265733
Iteration: 16, Func. Count: 147, Neg. LLF: 155.2384502094063
Iteration: 17, Func. Count: 156, Neg. LLF: 155.1993310847244
Iteration: 18, Func. Count: 165, Neg. LLF: 155.2272216671432
Iteration: 19, Func. Count: 175, Neg. LLF: 155.20586319127455
Iteration: 20, Func. Count: 185, Neg. LLF: 155.1689754449871
Iteration: 21, Func. Count: 195, Neg. LLF: 155.17715640361473
Iteration: 22, Func. Count: 205, Neg. LLF: 155.15802553622308
Iteration: 23, Func. Count: 214, Neg. LLF: 155.1574213831622
Iteration: 24, Func. Count: 223, Neg. LLF: 155.15766079551278
Iteration: 25, Func. Count: 233, Neg. LLF: 155.156732856535
Iteration: 26, Func. Count: 242, Neg. LLF: 155.15673178493472
Iteration: 27, Func. Count: 251, Neg. LLF: 155.156729211393
Iteration: 28, Func. Count: 260, Neg. LLF: 155.35410661593752
Iteration: 29, Func. Count: 272, Neg. LLF: 155.15688435647274
Optimization terminated successfully (Exit mode 0)
Current function value: 155.15672578302383
Iterations: 30
Function evaluations: 273
Gradient evaluations: 29
Iteration: 1, Func. Count: 11, Neg. LLF: 189.08832607239765
Iteration: 2, Func. Count: 22, Neg. LLF: 155.6377306710939
Iteration: 3, Func. Count: 32, Neg. LLF: 155.60654720353398
Iteration: 4, Func. Count: 42, Neg. LLF: 155.58069349956725
Iteration: 5, Func. Count: 52, Neg. LLF: 155.54289113965567
Iteration: 6, Func. Count: 62, Neg. LLF: 155.48878906815085
Iteration: 7, Func. Count: 72, Neg. LLF: 155.44371759845293
Iteration: 8, Func. Count: 82, Neg. LLF: 155.42247518330785
Iteration: 9, Func. Count: 92, Neg. LLF: 155.41601389540702
Iteration: 10, Func. Count: 102, Neg. LLF: 155.41419178842173
Iteration: 11, Func. Count: 112, Neg. LLF: 155.4106673435297
Iteration: 12, Func. Count: 122, Neg. LLF: 155.3527999112373
Iteration: 13, Func. Count: 132, Neg. LLF: 155.34447596554313
Iteration: 14, Func. Count: 142, Neg. LLF: 155.34301644910266
Iteration: 15, Func. Count: 152, Neg. LLF: 155.3423234678138
Iteration: 16, Func. Count: 162, Neg. LLF: 155.34086316100425
Iteration: 17, Func. Count: 172, Neg. LLF: 155.33673379402035
Iteration: 18, Func. Count: 182, Neg. LLF: 155.32574338044824
Iteration: 19, Func. Count: 192, Neg. LLF: 155.30937643130022
Iteration: 20, Func. Count: 202, Neg. LLF: 155.28644949885287
Iteration: 21, Func. Count: 212, Neg. LLF: 155.23658336914306
Iteration: 22, Func. Count: 222, Neg. LLF: 155.1903873035727
Iteration: 23, Func. Count: 232, Neg. LLF: 155.1734447876897
Iteration: 24, Func. Count: 242, Neg. LLF: 156.43223137930767
Iteration: 25, Func. Count: 254, Neg. LLF: 155.16725751238792
Iteration: 26, Func. Count: 264, Neg. LLF: 155.1631010337199
Iteration: 27, Func. Count: 274, Neg. LLF: 155.15848801800973
Iteration: 28, Func. Count: 284, Neg. LLF: 155.15944383642318
Iteration: 29, Func. Count: 295, Neg. LLF: 155.1568513107458
Iteration: 30, Func. Count: 305, Neg. LLF: 157.62554168678565
Iteration: 31, Func. Count: 318, Neg. LLF: 155.21047325012324
Iteration: 32, Func. Count: 330, Neg. LLF: 155.15987673751076
Iteration: 33, Func. Count: 342, Neg. LLF: 155.15748312321875
Iteration: 34, Func. Count: 353, Neg. LLF: 155.1567165673233
Optimization terminated successfully (Exit mode 0)
Current function value: 155.1567165673233
Iterations: 35
Function evaluations: 353
Gradient evaluations: 34
Iteration: 1, Func. Count: 12, Neg. LLF: 189.2147683890003
Iteration: 2, Func. Count: 24, Neg. LLF: 155.62455549099192
Iteration: 3, Func. Count: 35, Neg. LLF: 155.7567757129543
Iteration: 4, Func. Count: 47, Neg. LLF: 155.439443854568
Iteration: 5, Func. Count: 58, Neg. LLF: 155.69641634417872
Iteration: 6, Func. Count: 70, Neg. LLF: 155.36544897530794
Iteration: 7, Func. Count: 81, Neg. LLF: 155.35281424321505
Iteration: 8, Func. Count: 92, Neg. LLF: 155.34509273232877
Iteration: 9, Func. Count: 103, Neg. LLF: 155.33546847442614
Iteration: 10, Func. Count: 114, Neg. LLF: 155.32300079377876
Iteration: 11, Func. Count: 125, Neg. LLF: 155.31549860061938
Iteration: 12, Func. Count: 136, Neg. LLF: 155.31187417551328
Iteration: 13, Func. Count: 147, Neg. LLF: 155.31178969029577
Iteration: 14, Func. Count: 158, Neg. LLF: 155.31178476560348
Iteration: 15, Func. Count: 169, Neg. LLF: 155.31178322105052
Iteration: 16, Func. Count: 179, Neg. LLF: 155.31178322103
Optimization terminated successfully (Exit mode 0)
Current function value: 155.31178322105052
Iterations: 16
Function evaluations: 179
Gradient evaluations: 16
Iteration: 1, Func. Count: 9, Neg. LLF: 154.67406395786992
Iteration: 2, Func. Count: 17, Neg. LLF: 155.61070496266976
Iteration: 3, Func. Count: 26, Neg. LLF: 154.01505243970547
Iteration: 4, Func. Count: 34, Neg. LLF: 154.2119145122737
Iteration: 5, Func. Count: 43, Neg. LLF: 153.88733950937922
Iteration: 6, Func. Count: 51, Neg. LLF: 153.88466734110864
Iteration: 7, Func. Count: 59, Neg. LLF: 153.88455760781102
Iteration: 8, Func. Count: 67, Neg. LLF: 153.88452244558925
Iteration: 9, Func. Count: 75, Neg. LLF: 153.8843669537374
Iteration: 10, Func. Count: 83, Neg. LLF: 153.88422054875826
Iteration: 11, Func. Count: 91, Neg. LLF: 153.8860736118142
Iteration: 12, Func. Count: 100, Neg. LLF: 153.8840448167325
Iteration: 13, Func. Count: 108, Neg. LLF: 153.8840088463743
Iteration: 14, Func. Count: 116, Neg. LLF: 153.88400217773383
Iteration: 15, Func. Count: 123, Neg. LLF: 153.88400217773375
Optimization terminated successfully (Exit mode 0)
Current function value: 153.88400217773383
Iterations: 15
Function evaluations: 123
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 443.28836746980966
Iteration: 2, Func. Count: 21, Neg. LLF: 155.42110100513665
Iteration: 3, Func. Count: 30, Neg. LLF: 155.39598620888964
Iteration: 4, Func. Count: 39, Neg. LLF: 155.37205741852077
Iteration: 5, Func. Count: 48, Neg. LLF: 155.3558118671135
Iteration: 6, Func. Count: 57, Neg. LLF: 155.34745533948694
Iteration: 7, Func. Count: 66, Neg. LLF: 155.34694574681214
Iteration: 8, Func. Count: 75, Neg. LLF: 155.3469004289225
Iteration: 9, Func. Count: 84, Neg. LLF: 155.34689972730416
Optimization terminated successfully (Exit mode 0)
Current function value: 155.34689972730416
Iterations: 9
Function evaluations: 84
Gradient evaluations: 9
Iteration: 1, Func. Count: 11, Neg. LLF: 176.9769547143133
Iteration: 2, Func. Count: 23, Neg. LLF: 161.87820090615412
Iteration: 3, Func. Count: 34, Neg. LLF: 155.11991205279884
Iteration: 4, Func. Count: 44, Neg. LLF: 155.04734744486208
Iteration: 5, Func. Count: 54, Neg. LLF: 154.91813244018135
Iteration: 6, Func. Count: 64, Neg. LLF: 154.91140536357378
Iteration: 7, Func. Count: 74, Neg. LLF: 154.8841929575062
Iteration: 8, Func. Count: 84, Neg. LLF: 154.84013269036538
Iteration: 9, Func. Count: 94, Neg. LLF: 154.5869663131304
Iteration: 10, Func. Count: 104, Neg. LLF: 154.3527980788607
Iteration: 11, Func. Count: 114, Neg. LLF: 157.67101323895852
Iteration: 12, Func. Count: 125, Neg. LLF: 154.11131888126857
Iteration: 13, Func. Count: 135, Neg. LLF: 154.05494085617954
Iteration: 14, Func. Count: 145, Neg. LLF: 153.93123060199508
Iteration: 15, Func. Count: 155, Neg. LLF: 153.93569177881682
Iteration: 16, Func. Count: 166, Neg. LLF: 153.89902490363355
Iteration: 17, Func. Count: 176, Neg. LLF: 153.89240153998304
Iteration: 18, Func. Count: 186, Neg. LLF: 153.8851540359881
Iteration: 19, Func. Count: 196, Neg. LLF: 153.88414812809378
Iteration: 20, Func. Count: 206, Neg. LLF: 153.88400883980992
Iteration: 21, Func. Count: 216, Neg. LLF: 153.88400247940365
Iteration: 22, Func. Count: 225, Neg. LLF: 153.88400255457037
Optimization terminated successfully (Exit mode 0)
Current function value: 153.88400247940365
Iterations: 22
Function evaluations: 225
Gradient evaluations: 22
Iteration: 1, Func. Count: 12, Neg. LLF: 171.2084804656017
Iteration: 2, Func. Count: 24, Neg. LLF: 168.71356324306416
Iteration: 3, Func. Count: 36, Neg. LLF: 155.34263015273513
Iteration: 4, Func. Count: 47, Neg. LLF: 155.06273606749744
Iteration: 5, Func. Count: 58, Neg. LLF: 155.6852893617301
Iteration: 6, Func. Count: 70, Neg. LLF: 155.06378270814542
Iteration: 7, Func. Count: 82, Neg. LLF: 154.93110889553898
Iteration: 8, Func. Count: 93, Neg. LLF: 154.88957199676474
Iteration: 9, Func. Count: 104, Neg. LLF: 154.86502147114078
Iteration: 10, Func. Count: 115, Neg. LLF: 154.82816344432462
Iteration: 11, Func. Count: 126, Neg. LLF: 154.68385901072594
Iteration: 12, Func. Count: 137, Neg. LLF: 154.44042154398934
Iteration: 13, Func. Count: 148, Neg. LLF: 154.87864002423066
Iteration: 14, Func. Count: 160, Neg. LLF: 158.58221402435447
Iteration: 15, Func. Count: 173, Neg. LLF: 154.00083547646145
Iteration: 16, Func. Count: 184, Neg. LLF: 153.98096077177914
Iteration: 17, Func. Count: 195, Neg. LLF: 153.96546529676888
Iteration: 18, Func. Count: 206, Neg. LLF: 153.95089861618695
Iteration: 19, Func. Count: 217, Neg. LLF: 153.92999066598009
Iteration: 20, Func. Count: 228, Neg. LLF: 153.91637432663944
Iteration: 21, Func. Count: 239, Neg. LLF: 153.90684998644207
Iteration: 22, Func. Count: 250, Neg. LLF: 153.898906971691
Iteration: 23, Func. Count: 261, Neg. LLF: 153.89481255704916
Iteration: 24, Func. Count: 272, Neg. LLF: 153.89036897478852
Iteration: 25, Func. Count: 283, Neg. LLF: 153.88703826973935
Iteration: 26, Func. Count: 294, Neg. LLF: 153.8850867031943
Iteration: 27, Func. Count: 305, Neg. LLF: 153.88426980115096
Iteration: 28, Func. Count: 316, Neg. LLF: 153.88404819849208
Iteration: 29, Func. Count: 327, Neg. LLF: 153.88400362175764
Iteration: 30, Func. Count: 338, Neg. LLF: 153.88400235967694
Iteration: 31, Func. Count: 348, Neg. LLF: 153.8840024498089
Optimization terminated successfully (Exit mode 0)
Current function value: 153.88400235967694
Iterations: 31
Function evaluations: 348
Gradient evaluations: 31
Iteration: 1, Func. Count: 13, Neg. LLF: 166.1797412827192
Iteration: 2, Func. Count: 26, Neg. LLF: 174.56458879062788
Iteration: 3, Func. Count: 39, Neg. LLF: 154.49219456630092
Iteration: 4, Func. Count: 51, Neg. LLF: 154.18782122756113
Iteration: 5, Func. Count: 63, Neg. LLF: 155.79670200933947
Iteration: 6, Func. Count: 77, Neg. LLF: 154.04504882255384
Iteration: 7, Func. Count: 89, Neg. LLF: 153.99781773033132
Iteration: 8, Func. Count: 101, Neg. LLF: 153.9600790765187
Iteration: 9, Func. Count: 113, Neg. LLF: 153.9668766475336
Iteration: 10, Func. Count: 126, Neg. LLF: 153.90731650171344
Iteration: 11, Func. Count: 138, Neg. LLF: 153.90226201114132
Iteration: 12, Func. Count: 150, Neg. LLF: 153.90183082731798
Iteration: 13, Func. Count: 162, Neg. LLF: 153.90172762661905
Iteration: 14, Func. Count: 174, Neg. LLF: 153.9015042511601
Iteration: 15, Func. Count: 186, Neg. LLF: 153.90115458712341
Iteration: 16, Func. Count: 198, Neg. LLF: 153.900802209236
Iteration: 17, Func. Count: 210, Neg. LLF: 153.90065294293927
Iteration: 18, Func. Count: 222, Neg. LLF: 153.90063179495075
Iteration: 19, Func. Count: 234, Neg. LLF: 153.90063060976382
Iteration: 20, Func. Count: 245, Neg. LLF: 153.90063060976132
Optimization terminated successfully (Exit mode 0)
Current function value: 153.90063060976382
Iterations: 20
Function evaluations: 245
Gradient evaluations: 20
Iteration: 1, Func. Count: 10, Neg. LLF: 154.66088140240637
Iteration: 2, Func. Count: 19, Neg. LLF: 155.65365507233201
Iteration: 3, Func. Count: 29, Neg. LLF: 154.04407708616344
Iteration: 4, Func. Count: 39, Neg. LLF: 153.90402438274012
Iteration: 5, Func. Count: 48, Neg. LLF: 153.88599214125168
Iteration: 6, Func. Count: 57, Neg. LLF: 153.88485828596296
Iteration: 7, Func. Count: 66, Neg. LLF: 153.88467139224306
Iteration: 8, Func. Count: 75, Neg. LLF: 153.88463106408375
Iteration: 9, Func. Count: 84, Neg. LLF: 153.8844118042614
Iteration: 10, Func. Count: 93, Neg. LLF: 153.88416380971867
Iteration: 11, Func. Count: 102, Neg. LLF: 153.8843061717639
Iteration: 12, Func. Count: 112, Neg. LLF: 153.8842562591789
Iteration: 13, Func. Count: 122, Neg. LLF: 153.88400463427263
Iteration: 14, Func. Count: 131, Neg. LLF: 153.88400217561102
Iteration: 15, Func. Count: 139, Neg. LLF: 153.88400222056856
Optimization terminated successfully (Exit mode 0)
Current function value: 153.88400217561102
Iterations: 15
Function evaluations: 139
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 440.6406754151881
Iteration: 2, Func. Count: 23, Neg. LLF: 155.42110384892166
Iteration: 3, Func. Count: 33, Neg. LLF: 155.39787028991532
Iteration: 4, Func. Count: 43, Neg. LLF: 155.37047147964725
Iteration: 5, Func. Count: 53, Neg. LLF: 155.35119811305225
Iteration: 6, Func. Count: 63, Neg. LLF: 155.34781476378905
Iteration: 7, Func. Count: 73, Neg. LLF: 155.34691367038653
Iteration: 8, Func. Count: 83, Neg. LLF: 155.3468997704362
Iteration: 9, Func. Count: 92, Neg. LLF: 155.34689977060262
Optimization terminated successfully (Exit mode 0)
Current function value: 155.3468997704362
Iterations: 9
Function evaluations: 92
Gradient evaluations: 9
Iteration: 1, Func. Count: 12, Neg. LLF: 188.47167471126414
Iteration: 2, Func. Count: 24, Neg. LLF: 158.86368496534604
Iteration: 3, Func. Count: 36, Neg. LLF: 155.4484465764461
Iteration: 4, Func. Count: 47, Neg. LLF: 155.662662379727
Iteration: 5, Func. Count: 59, Neg. LLF: 155.56359389602258
Iteration: 6, Func. Count: 71, Neg. LLF: 154.60231720666965
Iteration: 7, Func. Count: 82, Neg. LLF: 154.28096153465978
Iteration: 8, Func. Count: 93, Neg. LLF: 154.1803757405393
Iteration: 9, Func. Count: 104, Neg. LLF: 154.12938990912372
Iteration: 10, Func. Count: 115, Neg. LLF: 154.08905562317622
Iteration: 11, Func. Count: 126, Neg. LLF: 154.06670643633802
Iteration: 12, Func. Count: 137, Neg. LLF: 154.04884529522087
Iteration: 13, Func. Count: 148, Neg. LLF: 154.0196261750044
Iteration: 14, Func. Count: 159, Neg. LLF: 153.90429507460027
Iteration: 15, Func. Count: 170, Neg. LLF: 153.89162166826782
Iteration: 16, Func. Count: 181, Neg. LLF: 153.8865413706433
Iteration: 17, Func. Count: 192, Neg. LLF: 153.88537562687355
Iteration: 18, Func. Count: 203, Neg. LLF: 153.88436589598686
Iteration: 19, Func. Count: 214, Neg. LLF: 153.88418548415063
Iteration: 20, Func. Count: 225, Neg. LLF: 153.88412923487846
Iteration: 21, Func. Count: 236, Neg. LLF: 153.8840932617308
Iteration: 22, Func. Count: 247, Neg. LLF: 153.8840473533025
Iteration: 23, Func. Count: 258, Neg. LLF: 153.8840307038914
Iteration: 24, Func. Count: 269, Neg. LLF: 153.88402655358271
Iteration: 25, Func. Count: 280, Neg. LLF: 153.884024575158
Iteration: 26, Func. Count: 291, Neg. LLF: 153.88401946527424
Iteration: 27, Func. Count: 302, Neg. LLF: 153.88401231537395
Iteration: 28, Func. Count: 313, Neg. LLF: 153.88400515094244
Iteration: 29, Func. Count: 324, Neg. LLF: 153.88400256261232
Iteration: 30, Func. Count: 334, Neg. LLF: 153.88400263780122
Optimization terminated successfully (Exit mode 0)
Current function value: 153.88400256261232
Iterations: 30
Function evaluations: 334
Gradient evaluations: 30
Iteration: 1, Func. Count: 13, Neg. LLF: 188.32957778079748
Iteration: 2, Func. Count: 26, Neg. LLF: 159.91524584786052
Iteration: 3, Func. Count: 39, Neg. LLF: 155.28548711416624
Iteration: 4, Func. Count: 51, Neg. LLF: 155.22660074613626
Iteration: 5, Func. Count: 64, Neg. LLF: 156.65893037884848
Iteration: 6, Func. Count: 77, Neg. LLF: 154.95280203567637
Iteration: 7, Func. Count: 89, Neg. LLF: 154.91974298288883
Iteration: 8, Func. Count: 101, Neg. LLF: 154.8945168536003
Iteration: 9, Func. Count: 113, Neg. LLF: 154.8268983356196
Iteration: 10, Func. Count: 125, Neg. LLF: 154.26928678312646
Iteration: 11, Func. Count: 137, Neg. LLF: 154.68853444212152
Iteration: 12, Func. Count: 150, Neg. LLF: 153.98435493209118
Iteration: 13, Func. Count: 162, Neg. LLF: 153.97113613398074
Iteration: 14, Func. Count: 174, Neg. LLF: 153.9608221071389
Iteration: 15, Func. Count: 186, Neg. LLF: 153.94510408300732
Iteration: 16, Func. Count: 198, Neg. LLF: 153.92579243108975
Iteration: 17, Func. Count: 210, Neg. LLF: 153.90202985771825
Iteration: 18, Func. Count: 222, Neg. LLF: 153.88739701937325
Iteration: 19, Func. Count: 234, Neg. LLF: 153.88527757727056
Iteration: 20, Func. Count: 246, Neg. LLF: 153.88474370799273
Iteration: 21, Func. Count: 258, Neg. LLF: 153.88438249558922
Iteration: 22, Func. Count: 270, Neg. LLF: 153.88425143547482
Iteration: 23, Func. Count: 282, Neg. LLF: 153.88403415626775
Iteration: 24, Func. Count: 294, Neg. LLF: 153.8840049495665
Iteration: 25, Func. Count: 306, Neg. LLF: 153.8840022063472
Iteration: 26, Func. Count: 317, Neg. LLF: 153.88400229646615
Optimization terminated successfully (Exit mode 0)
Current function value: 153.8840022063472
Iterations: 26
Function evaluations: 317
Gradient evaluations: 26
Iteration: 1, Func. Count: 14, Neg. LLF: 159.38878104661833
Iteration: 2, Func. Count: 28, Neg. LLF: 154.27412532132186
Iteration: 3, Func. Count: 41, Neg. LLF: 154.22508455839488
Iteration: 4, Func. Count: 55, Neg. LLF: 157.13573088111397
Iteration: 5, Func. Count: 69, Neg. LLF: 154.0445744506783
Iteration: 6, Func. Count: 83, Neg. LLF: 153.90284742563406
Iteration: 7, Func. Count: 96, Neg. LLF: 153.90085546403313
Iteration: 8, Func. Count: 109, Neg. LLF: 153.90067699422272
Iteration: 9, Func. Count: 122, Neg. LLF: 153.90064552311722
Iteration: 10, Func. Count: 135, Neg. LLF: 153.90064455896143
Optimization terminated successfully (Exit mode 0)
Current function value: 153.90064455896143
Iterations: 10
Function evaluations: 135
Gradient evaluations: 10
Iteration: 1, Func. Count: 7, Neg. LLF: 158.64281742944073
Iteration: 2, Func. Count: 14, Neg. LLF: 158.6083267643337
Iteration: 3, Func. Count: 21, Neg. LLF: 156.955621978031
Iteration: 4, Func. Count: 27, Neg. LLF: 156.95194930914874
Iteration: 5, Func. Count: 34, Neg. LLF: 156.88244739868588
Iteration: 6, Func. Count: 40, Neg. LLF: 156.8560660281489
Iteration: 7, Func. Count: 46, Neg. LLF: 156.84409593871032
Iteration: 8, Func. Count: 52, Neg. LLF: 156.81664729475713
Iteration: 9, Func. Count: 58, Neg. LLF: 156.73143550630326
Iteration: 10, Func. Count: 64, Neg. LLF: 156.6716975578797
Iteration: 11, Func. Count: 70, Neg. LLF: 156.64993501915637
Iteration: 12, Func. Count: 76, Neg. LLF: 156.64815128213473
Iteration: 13, Func. Count: 82, Neg. LLF: 156.64805535937836
Iteration: 14, Func. Count: 88, Neg. LLF: 156.6480486206493
Iteration: 15, Func. Count: 93, Neg. LLF: 156.64804862071685
Optimization terminated successfully (Exit mode 0)
Current function value: 156.6480486206493
Iterations: 15
Function evaluations: 93
Gradient evaluations: 15
Iteration: 1, Func. Count: 8, Neg. LLF: 568.8625832448549
Iteration: 2, Func. Count: 17, Neg. LLF: 155.39283216410809
Iteration: 3, Func. Count: 24, Neg. LLF: 155.3789081648257
Iteration: 4, Func. Count: 31, Neg. LLF: 155.35153217153183
Iteration: 5, Func. Count: 38, Neg. LLF: 155.3470005240711
Iteration: 6, Func. Count: 45, Neg. LLF: 155.34690918373252
Iteration: 7, Func. Count: 52, Neg. LLF: 155.34690428515717
Iteration: 8, Func. Count: 59, Neg. LLF: 155.3468997318074
Iteration: 9, Func. Count: 65, Neg. LLF: 155.34689973178402
Optimization terminated successfully (Exit mode 0)
Current function value: 155.3468997318074
Iterations: 9
Function evaluations: 65
Gradient evaluations: 9
Iteration: 1, Func. Count: 9, Neg. LLF: 188.98633272189528
Iteration: 2, Func. Count: 18, Neg. LLF: 155.67291784445752
Iteration: 3, Func. Count: 26, Neg. LLF: 155.65668413914844
Iteration: 4, Func. Count: 34, Neg. LLF: 155.6239374410776
Iteration: 5, Func. Count: 42, Neg. LLF: 155.45679727430158
Iteration: 6, Func. Count: 50, Neg. LLF: 157.12951559784574
Iteration: 7, Func. Count: 59, Neg. LLF: 156.17713773138524
Iteration: 8, Func. Count: 68, Neg. LLF: 155.37422132462538
Iteration: 9, Func. Count: 77, Neg. LLF: 155.34629502517416
Iteration: 10, Func. Count: 85, Neg. LLF: 155.34627458756484
Iteration: 11, Func. Count: 93, Neg. LLF: 155.34626754139697
Iteration: 12, Func. Count: 101, Neg. LLF: 155.3462622854528
Iteration: 13, Func. Count: 108, Neg. LLF: 155.34626228574746
Optimization terminated successfully (Exit mode 0)
Current function value: 155.3462622854528
Iterations: 13
Function evaluations: 108
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 189.22945775528828
Iteration: 2, Func. Count: 20, Neg. LLF: 160.88114904353893
Iteration: 3, Func. Count: 31, Neg. LLF: 155.57527148873456
Iteration: 4, Func. Count: 40, Neg. LLF: 155.52524368494966
Iteration: 5, Func. Count: 49, Neg. LLF: 155.5137355421388
Iteration: 6, Func. Count: 58, Neg. LLF: 155.4929280159481
Iteration: 7, Func. Count: 67, Neg. LLF: 155.47862552822352
Iteration: 8, Func. Count: 76, Neg. LLF: 155.46880041729392
Iteration: 9, Func. Count: 85, Neg. LLF: 155.45435480217287
Iteration: 10, Func. Count: 94, Neg. LLF: 155.4214531775273
Iteration: 11, Func. Count: 103, Neg. LLF: 155.41849795967184
Iteration: 12, Func. Count: 112, Neg. LLF: 155.4177194609882
Iteration: 13, Func. Count: 121, Neg. LLF: 155.41755421428084
Iteration: 14, Func. Count: 130, Neg. LLF: 155.41707498103173
Iteration: 15, Func. Count: 139, Neg. LLF: 155.41701267206187
Iteration: 16, Func. Count: 148, Neg. LLF: 155.41700217846
Iteration: 17, Func. Count: 156, Neg. LLF: 155.4170021784661
Optimization terminated successfully (Exit mode 0)
Current function value: 155.41700217846
Iterations: 17
Function evaluations: 156
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 189.34133512479187
Iteration: 2, Func. Count: 22, Neg. LLF: 155.62632074831387
Iteration: 3, Func. Count: 32, Neg. LLF: 155.58639216860857
Iteration: 4, Func. Count: 42, Neg. LLF: 155.5141972067885
Iteration: 5, Func. Count: 52, Neg. LLF: 155.49293483869914
Iteration: 6, Func. Count: 62, Neg. LLF: 155.47571236741788
Iteration: 7, Func. Count: 72, Neg. LLF: 155.47052782391722
Iteration: 8, Func. Count: 82, Neg. LLF: 155.466845899687
Iteration: 9, Func. Count: 92, Neg. LLF: 155.45179810212494
Iteration: 10, Func. Count: 102, Neg. LLF: 155.4432018873814
Iteration: 11, Func. Count: 112, Neg. LLF: 155.44116385866886
Iteration: 12, Func. Count: 122, Neg. LLF: 155.44093300521774
Iteration: 13, Func. Count: 132, Neg. LLF: 155.4409298996554
Iteration: 14, Func. Count: 141, Neg. LLF: 155.44092989955084
Optimization terminated successfully (Exit mode 0)
Current function value: 155.4409298996554
Iterations: 14
Function evaluations: 141
Gradient evaluations: 14
Iteration: 1, Func. Count: 8, Neg. LLF: 158.3411747943842
Iteration: 2, Func. Count: 16, Neg. LLF: 158.88358940697046
Iteration: 3, Func. Count: 25, Neg. LLF: 157.45715734859598
Iteration: 4, Func. Count: 33, Neg. LLF: 156.8553148126509
Iteration: 5, Func. Count: 41, Neg. LLF: 156.45313492555667
Iteration: 6, Func. Count: 48, Neg. LLF: 156.43270288341864
Iteration: 7, Func. Count: 55, Neg. LLF: 156.3968933139438
Iteration: 8, Func. Count: 62, Neg. LLF: 156.3738893372943
Iteration: 9, Func. Count: 69, Neg. LLF: 156.27355037679263
Iteration: 10, Func. Count: 76, Neg. LLF: 156.2452778637917
Iteration: 11, Func. Count: 83, Neg. LLF: 156.24333784646015
Iteration: 12, Func. Count: 90, Neg. LLF: 156.24224657787448
Iteration: 13, Func. Count: 97, Neg. LLF: 156.24221617749907
Iteration: 14, Func. Count: 104, Neg. LLF: 156.24221556874437
Optimization terminated successfully (Exit mode 0)
Current function value: 156.24221556874437
Iterations: 14
Function evaluations: 104
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 442.49586428215935
Iteration: 2, Func. Count: 19, Neg. LLF: 155.4162065155918
Iteration: 3, Func. Count: 27, Neg. LLF: 155.4006255637608
Iteration: 4, Func. Count: 35, Neg. LLF: 155.3737650990341
Iteration: 5, Func. Count: 43, Neg. LLF: 155.34817967413414
Iteration: 6, Func. Count: 51, Neg. LLF: 155.34697342846073
Iteration: 7, Func. Count: 59, Neg. LLF: 155.34690101303192
Iteration: 8, Func. Count: 67, Neg. LLF: 155.34689973672343
Iteration: 9, Func. Count: 74, Neg. LLF: 155.34689973681037
Optimization terminated successfully (Exit mode 0)
Current function value: 155.34689973672343
Iterations: 9
Function evaluations: 74
Gradient evaluations: 9
Iteration: 1, Func. Count: 10, Neg. LLF: 187.35526901961714
Iteration: 2, Func. Count: 21, Neg. LLF: 155.88962159258122
Iteration: 3, Func. Count: 31, Neg. LLF: 155.33576504508997
Iteration: 4, Func. Count: 40, Neg. LLF: 160.7244889739616
Iteration: 5, Func. Count: 51, Neg. LLF: 155.33299679181226
Iteration: 6, Func. Count: 61, Neg. LLF: 155.22242354162873
Iteration: 7, Func. Count: 70, Neg. LLF: 155.21115793922877
Iteration: 8, Func. Count: 79, Neg. LLF: 155.20542829597883
Iteration: 9, Func. Count: 88, Neg. LLF: 155.20363305042355
Iteration: 10, Func. Count: 97, Neg. LLF: 155.20133309264986
Iteration: 11, Func. Count: 106, Neg. LLF: 155.19730315485313
Iteration: 12, Func. Count: 115, Neg. LLF: 155.18808630535415
Iteration: 13, Func. Count: 124, Neg. LLF: 155.1734934055434
Iteration: 14, Func. Count: 133, Neg. LLF: 155.16332388909214
Iteration: 15, Func. Count: 142, Neg. LLF: 155.1575291722109
Iteration: 16, Func. Count: 151, Neg. LLF: 155.15710354992356
Iteration: 17, Func. Count: 160, Neg. LLF: 155.15704999666247
Iteration: 18, Func. Count: 169, Neg. LLF: 155.15704915114145
Optimization terminated successfully (Exit mode 0)
Current function value: 155.15704915114145
Iterations: 18
Function evaluations: 169
Gradient evaluations: 18
Iteration: 1, Func. Count: 11, Neg. LLF: 187.45320436336732
Iteration: 2, Func. Count: 23, Neg. LLF: 165.35838675755767
Iteration: 3, Func. Count: 35, Neg. LLF: 155.69145347691298
Iteration: 4, Func. Count: 45, Neg. LLF: 155.4549118354265
Iteration: 5, Func. Count: 55, Neg. LLF: 155.24080096097254
Iteration: 6, Func. Count: 65, Neg. LLF: 158.05344389242634
Iteration: 7, Func. Count: 76, Neg. LLF: 155.21946029027276
Iteration: 8, Func. Count: 86, Neg. LLF: 155.20471287352768
Iteration: 9, Func. Count: 96, Neg. LLF: 155.19966521478088
Iteration: 10, Func. Count: 106, Neg. LLF: 155.19226076216134
Iteration: 11, Func. Count: 116, Neg. LLF: 155.18757907577475
Iteration: 12, Func. Count: 126, Neg. LLF: 155.183629612374
Iteration: 13, Func. Count: 136, Neg. LLF: 155.1815204077025
Iteration: 14, Func. Count: 146, Neg. LLF: 155.1795542953809
Iteration: 15, Func. Count: 156, Neg. LLF: 155.17641352747455
Iteration: 16, Func. Count: 166, Neg. LLF: 155.16999965355964
Iteration: 17, Func. Count: 176, Neg. LLF: 155.16271467464617
Iteration: 18, Func. Count: 186, Neg. LLF: 155.1577093397866
Iteration: 19, Func. Count: 196, Neg. LLF: 155.1570700696589
Iteration: 20, Func. Count: 206, Neg. LLF: 155.15705094294228
Iteration: 21, Func. Count: 216, Neg. LLF: 155.15704899006312
Iteration: 22, Func. Count: 225, Neg. LLF: 155.15704902519252
Optimization terminated successfully (Exit mode 0)
Current function value: 155.15704899006312
Iterations: 22
Function evaluations: 225
Gradient evaluations: 22
Iteration: 1, Func. Count: 12, Neg. LLF: 187.59279141807616
Iteration: 2, Func. Count: 25, Neg. LLF: 161.3575483070593
Iteration: 3, Func. Count: 38, Neg. LLF: 155.82125339964557
Iteration: 4, Func. Count: 49, Neg. LLF: 155.33313573027624
Iteration: 5, Func. Count: 60, Neg. LLF: 155.25259654541227
Iteration: 6, Func. Count: 71, Neg. LLF: 157.29640803130104
Iteration: 7, Func. Count: 83, Neg. LLF: 155.21552557030367
Iteration: 8, Func. Count: 94, Neg. LLF: 155.2019162685192
Iteration: 9, Func. Count: 105, Neg. LLF: 155.19188286662146
Iteration: 10, Func. Count: 116, Neg. LLF: 155.18937822706707
Iteration: 11, Func. Count: 127, Neg. LLF: 155.18807116495466
Iteration: 12, Func. Count: 138, Neg. LLF: 155.1848713348742
Iteration: 13, Func. Count: 149, Neg. LLF: 155.17840098107968
Iteration: 14, Func. Count: 160, Neg. LLF: 155.168443343268
Iteration: 15, Func. Count: 171, Neg. LLF: 155.16160783837623
Iteration: 16, Func. Count: 182, Neg. LLF: 155.15723533797694
Iteration: 17, Func. Count: 193, Neg. LLF: 155.15706911303542
Iteration: 18, Func. Count: 204, Neg. LLF: 155.15704947333748
Iteration: 19, Func. Count: 215, Neg. LLF: 155.15704898572432
Optimization terminated successfully (Exit mode 0)
Current function value: 155.15704898572432
Iterations: 19
Function evaluations: 215
Gradient evaluations: 19
Iteration: 1, Func. Count: 9, Neg. LLF: 158.279106018444
Iteration: 2, Func. Count: 18, Neg. LLF: 158.7604383899101
Iteration: 3, Func. Count: 28, Neg. LLF: 157.25890965646084
Iteration: 4, Func. Count: 37, Neg. LLF: 156.8805124839052
Iteration: 5, Func. Count: 46, Neg. LLF: 156.44730041025565
Iteration: 6, Func. Count: 54, Neg. LLF: 156.71426262615637
Iteration: 7, Func. Count: 63, Neg. LLF: 156.41441610282288
Iteration: 8, Func. Count: 71, Neg. LLF: 156.38482377710392
Iteration: 9, Func. Count: 79, Neg. LLF: 156.3516839304378
Iteration: 10, Func. Count: 87, Neg. LLF: 156.27733008126506
Iteration: 11, Func. Count: 95, Neg. LLF: 156.24458288711196
Iteration: 12, Func. Count: 103, Neg. LLF: 156.23938138887277
Iteration: 13, Func. Count: 111, Neg. LLF: 156.23346393862346
Iteration: 14, Func. Count: 119, Neg. LLF: 156.2329485536772
Iteration: 15, Func. Count: 127, Neg. LLF: 156.23288870168943
Iteration: 16, Func. Count: 135, Neg. LLF: 156.23288775393561
Optimization terminated successfully (Exit mode 0)
Current function value: 156.23288775393561
Iterations: 16
Function evaluations: 135
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 442.4907303689432
Iteration: 2, Func. Count: 21, Neg. LLF: 155.4212222825779
Iteration: 3, Func. Count: 30, Neg. LLF: 155.39632605624345
Iteration: 4, Func. Count: 39, Neg. LLF: 155.37151359803434
Iteration: 5, Func. Count: 48, Neg. LLF: 155.35325639268734
Iteration: 6, Func. Count: 57, Neg. LLF: 155.34743570849906
Iteration: 7, Func. Count: 66, Neg. LLF: 155.34692947120416
Iteration: 8, Func. Count: 75, Neg. LLF: 155.3469000004662
Iteration: 9, Func. Count: 83, Neg. LLF: 155.34690000091553
Optimization terminated successfully (Exit mode 0)
Current function value: 155.3469000004662
Iterations: 9
Function evaluations: 83
Gradient evaluations: 9
Iteration: 1, Func. Count: 11, Neg. LLF: 398.66471340422237
Iteration: 2, Func. Count: 23, Neg. LLF: 155.40063711539702
Iteration: 3, Func. Count: 33, Neg. LLF: 155.40195079543832
Iteration: 4, Func. Count: 44, Neg. LLF: 155.37887985497886
Iteration: 5, Func. Count: 54, Neg. LLF: 155.37604998370261
Iteration: 6, Func. Count: 64, Neg. LLF: 155.3713155270636
Iteration: 7, Func. Count: 74, Neg. LLF: 155.3567459299983
Iteration: 8, Func. Count: 84, Neg. LLF: 155.3552626926084
Iteration: 9, Func. Count: 94, Neg. LLF: 155.3501179905864
Iteration: 10, Func. Count: 104, Neg. LLF: 155.34664223843876
Iteration: 11, Func. Count: 114, Neg. LLF: 155.33981240602913
Iteration: 12, Func. Count: 124, Neg. LLF: 155.32803201417246
Iteration: 13, Func. Count: 134, Neg. LLF: 155.31929324157878
Iteration: 14, Func. Count: 144, Neg. LLF: 155.30272904344912
Iteration: 15, Func. Count: 154, Neg. LLF: 155.27713694876329
Iteration: 16, Func. Count: 164, Neg. LLF: 155.23832686986415
Iteration: 17, Func. Count: 174, Neg. LLF: 155.24799214568935
Iteration: 18, Func. Count: 185, Neg. LLF: 155.2244167338737
Iteration: 19, Func. Count: 196, Neg. LLF: 155.17002347531522
Iteration: 20, Func. Count: 207, Neg. LLF: 155.1625455806366
Iteration: 21, Func. Count: 217, Neg. LLF: 155.21364324614228
Iteration: 22, Func. Count: 228, Neg. LLF: 155.1589483326113
Iteration: 23, Func. Count: 238, Neg. LLF: 155.158256001848
Iteration: 24, Func. Count: 248, Neg. LLF: 155.15763514491383
Iteration: 25, Func. Count: 258, Neg. LLF: 155.15685460139298
Iteration: 26, Func. Count: 268, Neg. LLF: 155.15682647470248
Iteration: 27, Func. Count: 278, Neg. LLF: 156.01304655321314
Iteration: 28, Func. Count: 291, Neg. LLF: 155.16472042572943
Iteration: 29, Func. Count: 303, Neg. LLF: 155.15723865553147
Iteration: 30, Func. Count: 314, Neg. LLF: 155.15807705349368
Iteration: 31, Func. Count: 325, Neg. LLF: 155.15673151998067
Iteration: 32, Func. Count: 335, Neg. LLF: 155.15672539169688
Iteration: 33, Func. Count: 345, Neg. LLF: 155.1567147564379
Iteration: 34, Func. Count: 355, Neg. LLF: 155.15671074169018
Iteration: 35, Func. Count: 365, Neg. LLF: 155.15671016013292
Optimization terminated successfully (Exit mode 0)
Current function value: 155.15671016013292
Iterations: 36
Function evaluations: 365
Gradient evaluations: 35
Iteration: 1, Func. Count: 12, Neg. LLF: 189.10586471356515
Iteration: 2, Func. Count: 24, Neg. LLF: 162.66199894323137
Iteration: 3, Func. Count: 37, Neg. LLF: 155.5841723050149
Iteration: 4, Func. Count: 48, Neg. LLF: 155.53037423436305
Iteration: 5, Func. Count: 59, Neg. LLF: 155.5196554425666
Iteration: 6, Func. Count: 70, Neg. LLF: 155.49710903333414
Iteration: 7, Func. Count: 81, Neg. LLF: 155.48455241831533
Iteration: 8, Func. Count: 92, Neg. LLF: 155.47355944196784
Iteration: 9, Func. Count: 103, Neg. LLF: 155.4634280066141
Iteration: 10, Func. Count: 114, Neg. LLF: 155.42546298578517
Iteration: 11, Func. Count: 125, Neg. LLF: 155.41775344449283
Iteration: 12, Func. Count: 136, Neg. LLF: 155.41718279720533
Iteration: 13, Func. Count: 147, Neg. LLF: 155.41712131819912
Iteration: 14, Func. Count: 158, Neg. LLF: 155.4170163890862
Iteration: 15, Func. Count: 169, Neg. LLF: 155.41700335135275
Iteration: 16, Func. Count: 180, Neg. LLF: 155.4170020703873
Iteration: 17, Func. Count: 190, Neg. LLF: 155.4170020703973
Optimization terminated successfully (Exit mode 0)
Current function value: 155.4170020703873
Iterations: 17
Function evaluations: 190
Gradient evaluations: 17
Iteration: 1, Func. Count: 13, Neg. LLF: 189.22112589617143
Iteration: 2, Func. Count: 26, Neg. LLF: 155.6279936771795
Iteration: 3, Func. Count: 38, Neg. LLF: 155.6430223091056
Iteration: 4, Func. Count: 51, Neg. LLF: 155.46391928090665
Iteration: 5, Func. Count: 63, Neg. LLF: 156.20446590468188
Iteration: 6, Func. Count: 76, Neg. LLF: 155.36001862196306
Iteration: 7, Func. Count: 88, Neg. LLF: 155.35063042001872
Iteration: 8, Func. Count: 100, Neg. LLF: 155.34476111033422
Iteration: 9, Func. Count: 112, Neg. LLF: 155.3248246932103
Iteration: 10, Func. Count: 124, Neg. LLF: 155.31539064111348
Iteration: 11, Func. Count: 136, Neg. LLF: 155.31193531332062
Iteration: 12, Func. Count: 148, Neg. LLF: 155.3118175736454
Iteration: 13, Func. Count: 160, Neg. LLF: 155.3117861338073
Iteration: 14, Func. Count: 172, Neg. LLF: 155.31178322029558
Iteration: 15, Func. Count: 183, Neg. LLF: 155.31178322023698
Optimization terminated successfully (Exit mode 0)
Current function value: 155.31178322029558
Iterations: 15
Function evaluations: 183
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 155.45985567965246
Iteration: 2, Func. Count: 20, Neg. LLF: 155.12205646921257
Iteration: 3, Func. Count: 30, Neg. LLF: 154.06673640001193
Iteration: 4, Func. Count: 39, Neg. LLF: 153.9151913605956
Iteration: 5, Func. Count: 48, Neg. LLF: 153.93625772823285
Iteration: 6, Func. Count: 58, Neg. LLF: 153.9004413830122
Iteration: 7, Func. Count: 67, Neg. LLF: 153.88960601834606
Iteration: 8, Func. Count: 76, Neg. LLF: 153.88738671303008
Iteration: 9, Func. Count: 85, Neg. LLF: 153.88449795411682
Iteration: 10, Func. Count: 94, Neg. LLF: 153.88445494996773
Iteration: 11, Func. Count: 103, Neg. LLF: 153.88441602140523
Iteration: 12, Func. Count: 112, Neg. LLF: 153.8843052659202
Iteration: 13, Func. Count: 121, Neg. LLF: 153.8841826247715
Iteration: 14, Func. Count: 130, Neg. LLF: 153.88407643281857
Iteration: 15, Func. Count: 139, Neg. LLF: 153.88401264112707
Iteration: 16, Func. Count: 148, Neg. LLF: 153.88400271803002
Iteration: 17, Func. Count: 156, Neg. LLF: 153.8840027180371
Optimization terminated successfully (Exit mode 0)
Current function value: 153.88400271803002
Iterations: 17
Function evaluations: 156
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 444.45851620098654
Iteration: 2, Func. Count: 23, Neg. LLF: 155.42015756920142
Iteration: 3, Func. Count: 33, Neg. LLF: 155.39603785554948
Iteration: 4, Func. Count: 43, Neg. LLF: 155.37451153977025
Iteration: 5, Func. Count: 53, Neg. LLF: 155.35311037544486
Iteration: 6, Func. Count: 63, Neg. LLF: 155.34725224187608
Iteration: 7, Func. Count: 73, Neg. LLF: 155.34692112496094
Iteration: 8, Func. Count: 83, Neg. LLF: 155.34689992412666
Iteration: 9, Func. Count: 92, Neg. LLF: 155.3468999245318
Optimization terminated successfully (Exit mode 0)
Current function value: 155.34689992412666
Iterations: 9
Function evaluations: 92
Gradient evaluations: 9
Iteration: 1, Func. Count: 12, Neg. LLF: 181.25030242419817
Iteration: 2, Func. Count: 25, Neg. LLF: 160.3340680415426
Iteration: 3, Func. Count: 37, Neg. LLF: 155.0942943393605
Iteration: 4, Func. Count: 48, Neg. LLF: 154.9932692825496
Iteration: 5, Func. Count: 59, Neg. LLF: 154.92218816347113
Iteration: 6, Func. Count: 70, Neg. LLF: 154.9178892938204
Iteration: 7, Func. Count: 81, Neg. LLF: 154.9108665595947
Iteration: 8, Func. Count: 92, Neg. LLF: 154.88451399144208
Iteration: 9, Func. Count: 103, Neg. LLF: 154.4876620709157
Iteration: 10, Func. Count: 114, Neg. LLF: 154.35686671355316
Iteration: 11, Func. Count: 125, Neg. LLF: 154.04458166606403
Iteration: 12, Func. Count: 136, Neg. LLF: 153.99666334500176
Iteration: 13, Func. Count: 147, Neg. LLF: 153.9601696235119
Iteration: 14, Func. Count: 158, Neg. LLF: 153.941078202819
Iteration: 15, Func. Count: 169, Neg. LLF: 153.91964007273634
Iteration: 16, Func. Count: 180, Neg. LLF: 153.89880660521874
Iteration: 17, Func. Count: 191, Neg. LLF: 153.88712814522984
Iteration: 18, Func. Count: 202, Neg. LLF: 153.88445856849503
Iteration: 19, Func. Count: 213, Neg. LLF: 153.88416251116854
Iteration: 20, Func. Count: 224, Neg. LLF: 153.88459651386333
Optimization terminated successfully (Exit mode 0)
Current function value: 153.88416198255854
Iterations: 20
Function evaluations: 226
Gradient evaluations: 20
Iteration: 1, Func. Count: 13, Neg. LLF: 174.65403278832144
Iteration: 2, Func. Count: 26, Neg. LLF: 165.34297792296863
Iteration: 3, Func. Count: 39, Neg. LLF: 155.3793343147259
Iteration: 4, Func. Count: 51, Neg. LLF: 155.0079662045331
Iteration: 5, Func. Count: 63, Neg. LLF: 155.54518101087285
Iteration: 6, Func. Count: 76, Neg. LLF: 154.94527573916216
Iteration: 7, Func. Count: 88, Neg. LLF: 154.9070549073797
Iteration: 8, Func. Count: 100, Neg. LLF: 154.87975154436242
Iteration: 9, Func. Count: 112, Neg. LLF: 154.83114754029623
Iteration: 10, Func. Count: 124, Neg. LLF: 154.6835455187543
Iteration: 11, Func. Count: 136, Neg. LLF: 154.43074703936617
Iteration: 12, Func. Count: 148, Neg. LLF: 154.5253322800295
Iteration: 13, Func. Count: 161, Neg. LLF: 154.08670067511127
Iteration: 14, Func. Count: 173, Neg. LLF: 154.035011286119
Iteration: 15, Func. Count: 185, Neg. LLF: 154.0072956084518
Iteration: 16, Func. Count: 197, Neg. LLF: 153.98093649030872
Iteration: 17, Func. Count: 209, Neg. LLF: 153.9622763262763
Iteration: 18, Func. Count: 221, Neg. LLF: 153.94980554958263
Iteration: 19, Func. Count: 233, Neg. LLF: 153.93329059739867
Iteration: 20, Func. Count: 245, Neg. LLF: 153.90637093948703
Iteration: 21, Func. Count: 257, Neg. LLF: 153.8912409292574
Iteration: 22, Func. Count: 269, Neg. LLF: 153.888676620468
Iteration: 23, Func. Count: 281, Neg. LLF: 153.88642684358578
Iteration: 24, Func. Count: 293, Neg. LLF: 153.88539867299804
Iteration: 25, Func. Count: 305, Neg. LLF: 153.88422949681865
Iteration: 26, Func. Count: 317, Neg. LLF: 153.88402253459216
Iteration: 27, Func. Count: 329, Neg. LLF: 153.88400383437917
Iteration: 28, Func. Count: 341, Neg. LLF: 153.88400248735402
Iteration: 29, Func. Count: 352, Neg. LLF: 153.88400257743072
Optimization terminated successfully (Exit mode 0)
Current function value: 153.88400248735402
Iterations: 29
Function evaluations: 352
Gradient evaluations: 29
Iteration: 1, Func. Count: 14, Neg. LLF: 167.50526605086364
Iteration: 2, Func. Count: 28, Neg. LLF: 173.33341109485846
Iteration: 3, Func. Count: 42, Neg. LLF: 154.53990175688725
Iteration: 4, Func. Count: 55, Neg. LLF: 154.1777347411575
Iteration: 5, Func. Count: 68, Neg. LLF: 156.25321601556877
Iteration: 6, Func. Count: 83, Neg. LLF: 154.04796624188518
Iteration: 7, Func. Count: 96, Neg. LLF: 153.99247731421391
Iteration: 8, Func. Count: 109, Neg. LLF: 153.95006659103106
Iteration: 9, Func. Count: 122, Neg. LLF: 153.9364029084518
Iteration: 10, Func. Count: 135, Neg. LLF: 153.9523685743067
Iteration: 11, Func. Count: 149, Neg. LLF: 153.90386498677472
Iteration: 12, Func. Count: 162, Neg. LLF: 153.90145007176537
Iteration: 13, Func. Count: 175, Neg. LLF: 153.90135229003656
Iteration: 14, Func. Count: 188, Neg. LLF: 153.9012427206823
Iteration: 15, Func. Count: 201, Neg. LLF: 153.90110186702208
Iteration: 16, Func. Count: 214, Neg. LLF: 153.90090796000052
Iteration: 17, Func. Count: 227, Neg. LLF: 153.90071507394316
Iteration: 18, Func. Count: 240, Neg. LLF: 153.90064116455258
Iteration: 19, Func. Count: 253, Neg. LLF: 153.90063113155162
Iteration: 20, Func. Count: 265, Neg. LLF: 153.9006311315347
Optimization terminated successfully (Exit mode 0)
Current function value: 153.90063113155162
Iterations: 20
Function evaluations: 265
Gradient evaluations: 20
Iteration: 1, Func. Count: 11, Neg. LLF: 155.41485955073196
Iteration: 2, Func. Count: 21, Neg. LLF: 155.8492871109054
Iteration: 3, Func. Count: 32, Neg. LLF: 154.12110724382944
Iteration: 4, Func. Count: 43, Neg. LLF: 153.89688495416834
Iteration: 5, Func. Count: 53, Neg. LLF: 153.8868149070568
Iteration: 6, Func. Count: 63, Neg. LLF: 153.88529301979574
Iteration: 7, Func. Count: 73, Neg. LLF: 153.8851762214513
Iteration: 8, Func. Count: 83, Neg. LLF: 153.88505610626382
Iteration: 9, Func. Count: 93, Neg. LLF: 153.88471300872868
Iteration: 10, Func. Count: 103, Neg. LLF: 153.88435979415814
Iteration: 11, Func. Count: 113, Neg. LLF: 153.88427853800752
Iteration: 12, Func. Count: 123, Neg. LLF: 153.88616480054475
Iteration: 13, Func. Count: 134, Neg. LLF: 153.8840103791974
Iteration: 14, Func. Count: 144, Neg. LLF: 153.88400244865264
Iteration: 15, Func. Count: 153, Neg. LLF: 153.8840024936049
Optimization terminated successfully (Exit mode 0)
Current function value: 153.88400244865264
Iterations: 15
Function evaluations: 153
Gradient evaluations: 15
Iteration: 1, Func. Count: 12, Neg. LLF: 441.8182797648437
Iteration: 2, Func. Count: 25, Neg. LLF: 155.4201101910873
Iteration: 3, Func. Count: 36, Neg. LLF: 155.39804064185856
Iteration: 4, Func. Count: 47, Neg. LLF: 155.37119377692215
Iteration: 5, Func. Count: 58, Neg. LLF: 155.3508931758979
Iteration: 6, Func. Count: 69, Neg. LLF: 155.34788341508002
Iteration: 7, Func. Count: 80, Neg. LLF: 155.34691654879416
Iteration: 8, Func. Count: 91, Neg. LLF: 155.34689981966383
Iteration: 9, Func. Count: 101, Neg. LLF: 155.34689981972505
Optimization terminated successfully (Exit mode 0)
Current function value: 155.34689981966383
Iterations: 9
Function evaluations: 101
Gradient evaluations: 9
Iteration: 1, Func. Count: 13, Neg. LLF: 188.47708279720047
Iteration: 2, Func. Count: 26, Neg. LLF: 158.74769670158187
Iteration: 3, Func. Count: 39, Neg. LLF: 155.4464457933775
Iteration: 4, Func. Count: 51, Neg. LLF: 155.61464679961318
Iteration: 5, Func. Count: 64, Neg. LLF: 155.58699473958714
Iteration: 6, Func. Count: 77, Neg. LLF: 154.5667920029765
Iteration: 7, Func. Count: 89, Neg. LLF: 154.29182015399965
Iteration: 8, Func. Count: 101, Neg. LLF: 154.1872406269926
Iteration: 9, Func. Count: 113, Neg. LLF: 154.13348568967692
Iteration: 10, Func. Count: 125, Neg. LLF: 154.09482020694895
Iteration: 11, Func. Count: 137, Neg. LLF: 154.06965134708815
Iteration: 12, Func. Count: 149, Neg. LLF: 154.05009614546188
Iteration: 13, Func. Count: 161, Neg. LLF: 154.01955350822513
Iteration: 14, Func. Count: 173, Neg. LLF: 153.8946686898396
Iteration: 15, Func. Count: 185, Neg. LLF: 153.8879161514229
Iteration: 16, Func. Count: 197, Neg. LLF: 153.8849491514503
Iteration: 17, Func. Count: 209, Neg. LLF: 153.88453565769777
Iteration: 18, Func. Count: 221, Neg. LLF: 153.88417869519367
Iteration: 19, Func. Count: 233, Neg. LLF: 153.88415128468907
Iteration: 20, Func. Count: 245, Neg. LLF: 153.8841307028555
Iteration: 21, Func. Count: 257, Neg. LLF: 153.88410532544887
Iteration: 22, Func. Count: 269, Neg. LLF: 153.88407706601086
Iteration: 23, Func. Count: 281, Neg. LLF: 153.88405882840001
Iteration: 24, Func. Count: 293, Neg. LLF: 153.88404532096072
Iteration: 25, Func. Count: 305, Neg. LLF: 153.88402998656477
Iteration: 26, Func. Count: 317, Neg. LLF: 153.88401306243196
Iteration: 27, Func. Count: 329, Neg. LLF: 153.88400411992154
Iteration: 28, Func. Count: 341, Neg. LLF: 153.88400230410184
Iteration: 29, Func. Count: 352, Neg. LLF: 153.88400237927848
Optimization terminated successfully (Exit mode 0)
Current function value: 153.88400230410184
Iterations: 29
Function evaluations: 352
Gradient evaluations: 29
Iteration: 1, Func. Count: 14, Neg. LLF: 188.3318004602352
Iteration: 2, Func. Count: 28, Neg. LLF: 159.6830502809044
Iteration: 3, Func. Count: 42, Neg. LLF: 155.26155072888633
Iteration: 4, Func. Count: 55, Neg. LLF: 155.2638528294819
Iteration: 5, Func. Count: 69, Neg. LLF: 156.30800558630702
Iteration: 6, Func. Count: 83, Neg. LLF: 154.95083918437064
Iteration: 7, Func. Count: 96, Neg. LLF: 154.9152168147616
Iteration: 8, Func. Count: 109, Neg. LLF: 154.89084649635564
Iteration: 9, Func. Count: 122, Neg. LLF: 154.7787079940137
Iteration: 10, Func. Count: 135, Neg. LLF: 154.23214549920664
Iteration: 11, Func. Count: 148, Neg. LLF: 154.07362118614097
Iteration: 12, Func. Count: 161, Neg. LLF: 153.99513205334978
Iteration: 13, Func. Count: 174, Neg. LLF: 153.9668265385334
Iteration: 14, Func. Count: 187, Neg. LLF: 153.9449670283864
Iteration: 15, Func. Count: 200, Neg. LLF: 153.9371458109713
Iteration: 16, Func. Count: 213, Neg. LLF: 153.93032141558163
Iteration: 17, Func. Count: 226, Neg. LLF: 153.90823770674547
Iteration: 18, Func. Count: 239, Neg. LLF: 153.89491078104209
Iteration: 19, Func. Count: 252, Neg. LLF: 153.89031270049287
Iteration: 20, Func. Count: 265, Neg. LLF: 153.8896500039929
Iteration: 21, Func. Count: 278, Neg. LLF: 153.8887231698855
Iteration: 22, Func. Count: 291, Neg. LLF: 153.8870808524651
Iteration: 23, Func. Count: 304, Neg. LLF: 153.8850309676967
Iteration: 24, Func. Count: 317, Neg. LLF: 153.8841163457892
Iteration: 25, Func. Count: 330, Neg. LLF: 153.88401943255678
Iteration: 26, Func. Count: 343, Neg. LLF: 153.8840024782001
Iteration: 27, Func. Count: 355, Neg. LLF: 153.88400256831633
Optimization terminated successfully (Exit mode 0)
Current function value: 153.8840024782001
Iterations: 27
Function evaluations: 355
Gradient evaluations: 27
Iteration: 1, Func. Count: 15, Neg. LLF: 159.76198925104657
Iteration: 2, Func. Count: 30, Neg. LLF: 154.79631225901846
Iteration: 3, Func. Count: 44, Neg. LLF: 154.4839428935357
Iteration: 4, Func. Count: 58, Neg. LLF: 161.27173097091833
Iteration: 5, Func. Count: 74, Neg. LLF: 154.25210014574807
Iteration: 6, Func. Count: 88, Neg. LLF: 153.94285841518405
Iteration: 7, Func. Count: 102, Neg. LLF: 153.90572799630536
Iteration: 8, Func. Count: 116, Neg. LLF: 153.90228285401926
Iteration: 9, Func. Count: 130, Neg. LLF: 153.90077371382597
Iteration: 10, Func. Count: 144, Neg. LLF: 153.90066539646085
Iteration: 11, Func. Count: 158, Neg. LLF: 153.9006426310578
Iteration: 12, Func. Count: 172, Neg. LLF: 153.9006417754285
Optimization terminated successfully (Exit mode 0)
Current function value: 153.9006417754285
Iterations: 12
Function evaluations: 172
Gradient evaluations: 12
Iteration: 1, Func. Count: 8, Neg. LLF: 158.14333343825572
Iteration: 2, Func. Count: 16, Neg. LLF: 158.2331337788943
Iteration: 3, Func. Count: 24, Neg. LLF: 156.89922556332832
Iteration: 4, Func. Count: 31, Neg. LLF: 156.95861460745945
Iteration: 5, Func. Count: 39, Neg. LLF: 156.8362851285638
Iteration: 6, Func. Count: 46, Neg. LLF: 156.8211065515101
Iteration: 7, Func. Count: 53, Neg. LLF: 156.75101002020273
Iteration: 8, Func. Count: 60, Neg. LLF: 156.65604342641774
Iteration: 9, Func. Count: 67, Neg. LLF: 156.6484522749158
Iteration: 10, Func. Count: 74, Neg. LLF: 156.64809573366475
Iteration: 11, Func. Count: 81, Neg. LLF: 156.64804908084628
Iteration: 12, Func. Count: 88, Neg. LLF: 156.6480483287815
Optimization terminated successfully (Exit mode 0)
Current function value: 156.6480483287815
Iterations: 12
Function evaluations: 88
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 571.5716876948541
Iteration: 2, Func. Count: 19, Neg. LLF: 155.39342384526
Iteration: 3, Func. Count: 27, Neg. LLF: 155.3749062831697
Iteration: 4, Func. Count: 35, Neg. LLF: 155.34940076466862
Iteration: 5, Func. Count: 43, Neg. LLF: 155.34697709435898
Iteration: 6, Func. Count: 51, Neg. LLF: 155.34690289350354
Iteration: 7, Func. Count: 59, Neg. LLF: 155.34690148713904
Iteration: 8, Func. Count: 67, Neg. LLF: 155.34689973164657
Iteration: 9, Func. Count: 74, Neg. LLF: 155.34689973170643
Optimization terminated successfully (Exit mode 0)
Current function value: 155.34689973164657
Iterations: 9
Function evaluations: 74
Gradient evaluations: 9
Iteration: 1, Func. Count: 10, Neg. LLF: 188.99417787688554
Iteration: 2, Func. Count: 20, Neg. LLF: 155.67326151306585
Iteration: 3, Func. Count: 29, Neg. LLF: 155.65687186166483
Iteration: 4, Func. Count: 38, Neg. LLF: 155.6265164919327
Iteration: 5, Func. Count: 47, Neg. LLF: 155.4741794921863
Iteration: 6, Func. Count: 56, Neg. LLF: 157.28278555941966
Iteration: 7, Func. Count: 66, Neg. LLF: 156.81472675206155
Iteration: 8, Func. Count: 76, Neg. LLF: 155.66047780682695
Iteration: 9, Func. Count: 86, Neg. LLF: 155.3546673488244
Iteration: 10, Func. Count: 95, Neg. LLF: 155.3464782436837
Iteration: 11, Func. Count: 104, Neg. LLF: 155.34636481599898
Iteration: 12, Func. Count: 113, Neg. LLF: 155.3463174839343
Iteration: 13, Func. Count: 122, Neg. LLF: 155.3462829221381
Iteration: 14, Func. Count: 131, Neg. LLF: 155.3462625721716
Iteration: 15, Func. Count: 140, Neg. LLF: 155.3462618547075
Optimization terminated successfully (Exit mode 0)
Current function value: 155.3462618547075
Iterations: 15
Function evaluations: 140
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 189.22618101322456
Iteration: 2, Func. Count: 22, Neg. LLF: 161.4728037755029
Iteration: 3, Func. Count: 34, Neg. LLF: 155.58660869340463
Iteration: 4, Func. Count: 44, Neg. LLF: 155.5293650886526
Iteration: 5, Func. Count: 54, Neg. LLF: 155.51802412958858
Iteration: 6, Func. Count: 64, Neg. LLF: 155.49354639272215
Iteration: 7, Func. Count: 74, Neg. LLF: 155.4875224170422
Iteration: 8, Func. Count: 84, Neg. LLF: 155.47169846165843
Iteration: 9, Func. Count: 94, Neg. LLF: 155.46348570526993
Iteration: 10, Func. Count: 104, Neg. LLF: 155.43169397280826
Iteration: 11, Func. Count: 114, Neg. LLF: 155.42004304360117
Iteration: 12, Func. Count: 124, Neg. LLF: 155.4173190769364
Iteration: 13, Func. Count: 134, Neg. LLF: 155.41708004243046
Iteration: 14, Func. Count: 144, Neg. LLF: 155.41703118345234
Iteration: 15, Func. Count: 154, Neg. LLF: 155.4170133349176
Iteration: 16, Func. Count: 164, Neg. LLF: 155.41700214128883
Iteration: 17, Func. Count: 173, Neg. LLF: 155.41700214133257
Optimization terminated successfully (Exit mode 0)
Current function value: 155.41700214128883
Iterations: 17
Function evaluations: 173
Gradient evaluations: 17
Iteration: 1, Func. Count: 12, Neg. LLF: 189.3322959187644
Iteration: 2, Func. Count: 24, Neg. LLF: 155.6270695904335
Iteration: 3, Func. Count: 35, Neg. LLF: 155.59270637648456
Iteration: 4, Func. Count: 46, Neg. LLF: 155.5218400087358
Iteration: 5, Func. Count: 57, Neg. LLF: 155.48541981245512
Iteration: 6, Func. Count: 68, Neg. LLF: 155.46864145927466
Iteration: 7, Func. Count: 79, Neg. LLF: 155.46237246168963
Iteration: 8, Func. Count: 90, Neg. LLF: 155.45944503622323
Iteration: 9, Func. Count: 101, Neg. LLF: 155.44913501205232
Iteration: 10, Func. Count: 112, Neg. LLF: 155.44140265012416
Iteration: 11, Func. Count: 123, Neg. LLF: 155.44095013608185
Iteration: 12, Func. Count: 134, Neg. LLF: 155.44092989079692
Iteration: 13, Func. Count: 144, Neg. LLF: 155.44092989073937
Optimization terminated successfully (Exit mode 0)
Current function value: 155.44092989079692
Iterations: 13
Function evaluations: 144
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 157.74681733277592
Iteration: 2, Func. Count: 18, Neg. LLF: 157.2541491906732
Iteration: 3, Func. Count: 27, Neg. LLF: 158.06980071972833
Iteration: 4, Func. Count: 36, Neg. LLF: 156.74887647615657
Iteration: 5, Func. Count: 45, Neg. LLF: 156.45092259187663
Iteration: 6, Func. Count: 53, Neg. LLF: 156.4198201986485
Iteration: 7, Func. Count: 61, Neg. LLF: 156.39345655379955
Iteration: 8, Func. Count: 69, Neg. LLF: 156.36382565616037
Iteration: 9, Func. Count: 77, Neg. LLF: 156.32208599500245
Iteration: 10, Func. Count: 85, Neg. LLF: 156.26303706769983
Iteration: 11, Func. Count: 93, Neg. LLF: 156.2440131714162
Iteration: 12, Func. Count: 101, Neg. LLF: 156.24229625748188
Iteration: 13, Func. Count: 109, Neg. LLF: 156.2422219116405
Iteration: 14, Func. Count: 117, Neg. LLF: 156.24221592619378
Iteration: 15, Func. Count: 124, Neg. LLF: 156.24221592621453
Optimization terminated successfully (Exit mode 0)
Current function value: 156.24221592619378
Iterations: 15
Function evaluations: 124
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 444.09544120130505
Iteration: 2, Func. Count: 21, Neg. LLF: 155.41776177293568
Iteration: 3, Func. Count: 30, Neg. LLF: 155.40052766209746
Iteration: 4, Func. Count: 39, Neg. LLF: 155.37204931337251
Iteration: 5, Func. Count: 48, Neg. LLF: 155.3484614819993
Iteration: 6, Func. Count: 57, Neg. LLF: 155.3470067184126
Iteration: 7, Func. Count: 66, Neg. LLF: 155.34690176905724
Iteration: 8, Func. Count: 75, Neg. LLF: 155.34690010611538
Iteration: 9, Func. Count: 83, Neg. LLF: 155.34690010552657
Optimization terminated successfully (Exit mode 0)
Current function value: 155.34690010611538
Iterations: 9
Function evaluations: 83
Gradient evaluations: 9
Iteration: 1, Func. Count: 11, Neg. LLF: 187.37380864562604
Iteration: 2, Func. Count: 23, Neg. LLF: 155.89905563507514
Iteration: 3, Func. Count: 34, Neg. LLF: 155.3337992899364
Iteration: 4, Func. Count: 44, Neg. LLF: 160.7223756821917
Iteration: 5, Func. Count: 56, Neg. LLF: 155.34385566466662
Iteration: 6, Func. Count: 67, Neg. LLF: 155.2225538762396
Iteration: 7, Func. Count: 77, Neg. LLF: 155.21083989029128
Iteration: 8, Func. Count: 87, Neg. LLF: 155.20584793466628
Iteration: 9, Func. Count: 97, Neg. LLF: 155.20382055807545
Iteration: 10, Func. Count: 107, Neg. LLF: 155.20166812046782
Iteration: 11, Func. Count: 117, Neg. LLF: 155.197845953379
Iteration: 12, Func. Count: 127, Neg. LLF: 155.18917412568015
Iteration: 13, Func. Count: 137, Neg. LLF: 155.1745071495504
Iteration: 14, Func. Count: 147, Neg. LLF: 155.1643613958408
Iteration: 15, Func. Count: 157, Neg. LLF: 155.15740693012097
Iteration: 16, Func. Count: 167, Neg. LLF: 155.15711292395173
Iteration: 17, Func. Count: 177, Neg. LLF: 155.15704973184785
Iteration: 18, Func. Count: 187, Neg. LLF: 155.15704921509007
Optimization terminated successfully (Exit mode 0)
Current function value: 155.15704921509007
Iterations: 18
Function evaluations: 187
Gradient evaluations: 18
Iteration: 1, Func. Count: 12, Neg. LLF: 187.4514219940031
Iteration: 2, Func. Count: 25, Neg. LLF: 165.3422344218356
Iteration: 3, Func. Count: 38, Neg. LLF: 155.69704023507845
Iteration: 4, Func. Count: 49, Neg. LLF: 155.4035545298383
Iteration: 5, Func. Count: 60, Neg. LLF: 155.24740050906237
Iteration: 6, Func. Count: 71, Neg. LLF: 157.5478662083427
Iteration: 7, Func. Count: 83, Neg. LLF: 155.22874753104026
Iteration: 8, Func. Count: 94, Neg. LLF: 155.21243259208055
Iteration: 9, Func. Count: 105, Neg. LLF: 155.20509788496477
Iteration: 10, Func. Count: 116, Neg. LLF: 155.18870203247465
Iteration: 11, Func. Count: 127, Neg. LLF: 155.18406702366042
Iteration: 12, Func. Count: 138, Neg. LLF: 155.1826286635999
Iteration: 13, Func. Count: 149, Neg. LLF: 155.1813377823261
Iteration: 14, Func. Count: 160, Neg. LLF: 155.17607438722854
Iteration: 15, Func. Count: 171, Neg. LLF: 155.1690893768322
Iteration: 16, Func. Count: 182, Neg. LLF: 155.1622489889755
Iteration: 17, Func. Count: 193, Neg. LLF: 155.15733262319222
Iteration: 18, Func. Count: 204, Neg. LLF: 155.1570600912815
Iteration: 19, Func. Count: 215, Neg. LLF: 155.15705043982874
Iteration: 20, Func. Count: 226, Neg. LLF: 155.1570489810398
Iteration: 21, Func. Count: 236, Neg. LLF: 155.15704901616868
Optimization terminated successfully (Exit mode 0)
Current function value: 155.1570489810398
Iterations: 21
Function evaluations: 236
Gradient evaluations: 21
Iteration: 1, Func. Count: 13, Neg. LLF: 187.58036593255184
Iteration: 2, Func. Count: 27, Neg. LLF: 161.5297117754169
Iteration: 3, Func. Count: 41, Neg. LLF: 155.8519113555274
Iteration: 4, Func. Count: 53, Neg. LLF: 155.33278787898828
Iteration: 5, Func. Count: 65, Neg. LLF: 155.25496804768702
Iteration: 6, Func. Count: 77, Neg. LLF: 156.35501638344454
Iteration: 7, Func. Count: 90, Neg. LLF: 155.2165996654807
Iteration: 8, Func. Count: 102, Neg. LLF: 155.20214563931472
Iteration: 9, Func. Count: 114, Neg. LLF: 155.19135436712037
Iteration: 10, Func. Count: 126, Neg. LLF: 155.18929157211704
Iteration: 11, Func. Count: 138, Neg. LLF: 155.187850625823
Iteration: 12, Func. Count: 150, Neg. LLF: 155.18485413442986
Iteration: 13, Func. Count: 162, Neg. LLF: 155.178289338691
Iteration: 14, Func. Count: 174, Neg. LLF: 155.16857192914838
Iteration: 15, Func. Count: 186, Neg. LLF: 155.16169122224792
Iteration: 16, Func. Count: 198, Neg. LLF: 155.15718189682283
Iteration: 17, Func. Count: 210, Neg. LLF: 155.15706681798358
Iteration: 18, Func. Count: 222, Neg. LLF: 155.15704927006317
Iteration: 19, Func. Count: 233, Neg. LLF: 155.15704927931822
Optimization terminated successfully (Exit mode 0)
Current function value: 155.15704927006317
Iterations: 19
Function evaluations: 233
Gradient evaluations: 19
Iteration: 1, Func. Count: 10, Neg. LLF: 158.1749806508092
Iteration: 2, Func. Count: 20, Neg. LLF: 158.87185383828697
Iteration: 3, Func. Count: 31, Neg. LLF: 157.16107798187025
Iteration: 4, Func. Count: 41, Neg. LLF: 156.89002369243747
Iteration: 5, Func. Count: 51, Neg. LLF: 156.45898591719038
Iteration: 6, Func. Count: 60, Neg. LLF: 156.43567038975544
Iteration: 7, Func. Count: 69, Neg. LLF: 156.6057286763717
Iteration: 8, Func. Count: 79, Neg. LLF: 156.39273877458317
Iteration: 9, Func. Count: 88, Neg. LLF: 156.35545584263576
Iteration: 10, Func. Count: 97, Neg. LLF: 156.32045178485998
Iteration: 11, Func. Count: 106, Neg. LLF: 156.25726123961047
Iteration: 12, Func. Count: 115, Neg. LLF: 156.24345257425367
Iteration: 13, Func. Count: 124, Neg. LLF: 156.23402103659095
Iteration: 14, Func. Count: 133, Neg. LLF: 156.23301783001418
Iteration: 15, Func. Count: 142, Neg. LLF: 156.2328966075913
Iteration: 16, Func. Count: 151, Neg. LLF: 156.23288776975687
Iteration: 17, Func. Count: 159, Neg. LLF: 156.23288772889464
Optimization terminated successfully (Exit mode 0)
Current function value: 156.23288776975687
Iterations: 17
Function evaluations: 159
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 444.06461562508076
Iteration: 2, Func. Count: 23, Neg. LLF: 155.42320073664413
Iteration: 3, Func. Count: 33, Neg. LLF: 155.39648460710544
Iteration: 4, Func. Count: 43, Neg. LLF: 155.37081131269588
Iteration: 5, Func. Count: 53, Neg. LLF: 155.3539855569775
Iteration: 6, Func. Count: 63, Neg. LLF: 155.34747389615657
Iteration: 7, Func. Count: 73, Neg. LLF: 155.3469313414259
Iteration: 8, Func. Count: 83, Neg. LLF: 155.34690007384356
Iteration: 9, Func. Count: 92, Neg. LLF: 155.34690007428492
Optimization terminated successfully (Exit mode 0)
Current function value: 155.34690007384356
Iterations: 9
Function evaluations: 92
Gradient evaluations: 9
Iteration: 1, Func. Count: 12, Neg. LLF: 399.27969297495804
Iteration: 2, Func. Count: 25, Neg. LLF: 155.40179119152432
Iteration: 3, Func. Count: 36, Neg. LLF: 155.40008167369186
Iteration: 4, Func. Count: 48, Neg. LLF: 155.3786669740996
Iteration: 5, Func. Count: 59, Neg. LLF: 155.3760349948689
Iteration: 6, Func. Count: 70, Neg. LLF: 155.36941088587866
Iteration: 7, Func. Count: 81, Neg. LLF: 155.35635729711333
Iteration: 8, Func. Count: 92, Neg. LLF: 155.35551017260568
Iteration: 9, Func. Count: 103, Neg. LLF: 155.3518354084795
Iteration: 10, Func. Count: 114, Neg. LLF: 155.34540005503058
Iteration: 11, Func. Count: 125, Neg. LLF: 155.33916432606512
Iteration: 12, Func. Count: 136, Neg. LLF: 155.3245046846834
Iteration: 13, Func. Count: 147, Neg. LLF: 155.31504933464575
Iteration: 14, Func. Count: 158, Neg. LLF: 155.29049043289348
Iteration: 15, Func. Count: 169, Neg. LLF: 155.2637237686275
Iteration: 16, Func. Count: 180, Neg. LLF: 155.21698342935687
Iteration: 17, Func. Count: 191, Neg. LLF: 155.59696145207627
Iteration: 18, Func. Count: 203, Neg. LLF: 155.16098632440864
Iteration: 19, Func. Count: 214, Neg. LLF: 155.16167940227714
Iteration: 20, Func. Count: 226, Neg. LLF: 158.06646783122648
Iteration: 21, Func. Count: 239, Neg. LLF: 158.06418193878008
Iteration: 22, Func. Count: 252, Neg. LLF: 155.17128021453377
Iteration: 23, Func. Count: 264, Neg. LLF: 155.15808569718908
Iteration: 24, Func. Count: 275, Neg. LLF: 155.1569255439901
Iteration: 25, Func. Count: 286, Neg. LLF: 155.15690094753492
Iteration: 26, Func. Count: 297, Neg. LLF: 155.15688624005685
Iteration: 27, Func. Count: 308, Neg. LLF: 155.15685321439966
Iteration: 28, Func. Count: 319, Neg. LLF: 155.15679516585644
Iteration: 29, Func. Count: 330, Neg. LLF: 155.15673798541462
Iteration: 30, Func. Count: 341, Neg. LLF: 155.15671341425582
Iteration: 31, Func. Count: 352, Neg. LLF: 155.1567103081328
Iteration: 32, Func. Count: 362, Neg. LLF: 155.15671030812834
Optimization terminated successfully (Exit mode 0)
Current function value: 155.1567103081328
Iterations: 33
Function evaluations: 362
Gradient evaluations: 32
Iteration: 1, Func. Count: 13, Neg. LLF: 189.10292954741087
Iteration: 2, Func. Count: 26, Neg. LLF: 162.67208459444683
Iteration: 3, Func. Count: 40, Neg. LLF: 155.59491651744204
Iteration: 4, Func. Count: 52, Neg. LLF: 155.53475646050117
Iteration: 5, Func. Count: 64, Neg. LLF: 155.52410251482615
Iteration: 6, Func. Count: 76, Neg. LLF: 155.49750962259458
Iteration: 7, Func. Count: 88, Neg. LLF: 155.4929401819064
Iteration: 8, Func. Count: 100, Neg. LLF: 155.4762176442676
Iteration: 9, Func. Count: 112, Neg. LLF: 155.46857853208283
Iteration: 10, Func. Count: 124, Neg. LLF: 155.43730043558924
Iteration: 11, Func. Count: 136, Neg. LLF: 155.42312315093812
Iteration: 12, Func. Count: 148, Neg. LLF: 155.41787484081746
Iteration: 13, Func. Count: 160, Neg. LLF: 155.41720601493552
Iteration: 14, Func. Count: 172, Neg. LLF: 155.4170770603189
Iteration: 15, Func. Count: 184, Neg. LLF: 155.41702778478265
Iteration: 16, Func. Count: 196, Neg. LLF: 155.41700230170906
Iteration: 17, Func. Count: 207, Neg. LLF: 155.41700230170537
Optimization terminated successfully (Exit mode 0)
Current function value: 155.41700230170906
Iterations: 17
Function evaluations: 207
Gradient evaluations: 17
Iteration: 1, Func. Count: 14, Neg. LLF: 189.21209286944287
Iteration: 2, Func. Count: 28, Neg. LLF: 155.62901475599492
Iteration: 3, Func. Count: 41, Neg. LLF: 155.67211344766497
Iteration: 4, Func. Count: 55, Neg. LLF: 155.47034178739025
Iteration: 5, Func. Count: 68, Neg. LLF: 155.70188635588107
Iteration: 6, Func. Count: 82, Neg. LLF: 155.36096981413684
Iteration: 7, Func. Count: 95, Neg. LLF: 155.34748943195413
Iteration: 8, Func. Count: 108, Neg. LLF: 155.34281104994486
Iteration: 9, Func. Count: 121, Neg. LLF: 155.32340246644293
Iteration: 10, Func. Count: 134, Neg. LLF: 155.31302825280503
Iteration: 11, Func. Count: 147, Neg. LLF: 155.3121308473293
Iteration: 12, Func. Count: 160, Neg. LLF: 155.3118160520838
Iteration: 13, Func. Count: 173, Neg. LLF: 155.3117854108279
Iteration: 14, Func. Count: 186, Neg. LLF: 155.31178325590417
Iteration: 15, Func. Count: 198, Neg. LLF: 155.31178325580228
Optimization terminated successfully (Exit mode 0)
Current function value: 155.31178325590417
Iterations: 15
Function evaluations: 198
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 155.29115820930917
Iteration: 2, Func. Count: 21, Neg. LLF: 155.62274712707378
Iteration: 3, Func. Count: 32, Neg. LLF: 154.0674364829017
Iteration: 4, Func. Count: 43, Neg. LLF: 153.9050410602764
Iteration: 5, Func. Count: 53, Neg. LLF: 153.88583191542745
Iteration: 6, Func. Count: 63, Neg. LLF: 153.8848115268035
Iteration: 7, Func. Count: 73, Neg. LLF: 153.88475267318546
Iteration: 8, Func. Count: 83, Neg. LLF: 153.8846573320604
Iteration: 9, Func. Count: 93, Neg. LLF: 153.88444730366675
Iteration: 10, Func. Count: 103, Neg. LLF: 153.88423347790444
Iteration: 11, Func. Count: 113, Neg. LLF: 153.88570749417858
Iteration: 12, Func. Count: 124, Neg. LLF: 153.8840429524935
Iteration: 13, Func. Count: 134, Neg. LLF: 153.8840076005266
Iteration: 14, Func. Count: 144, Neg. LLF: 153.88400217625906
Iteration: 15, Func. Count: 153, Neg. LLF: 153.8840021762589
Optimization terminated successfully (Exit mode 0)
Current function value: 153.88400217625906
Iterations: 15
Function evaluations: 153
Gradient evaluations: 15
Iteration: 1, Func. Count: 12, Neg. LLF: 446.03234398812015
Iteration: 2, Func. Count: 25, Neg. LLF: 155.4220247206535
Iteration: 3, Func. Count: 36, Neg. LLF: 155.3960293664633
Iteration: 4, Func. Count: 47, Neg. LLF: 155.3728638682829
Iteration: 5, Func. Count: 58, Neg. LLF: 155.35482638090764
Iteration: 6, Func. Count: 69, Neg. LLF: 155.34726227995571
Iteration: 7, Func. Count: 80, Neg. LLF: 155.34692363051946
Iteration: 8, Func. Count: 91, Neg. LLF: 155.34690007553695
Iteration: 9, Func. Count: 101, Neg. LLF: 155.3469000759046
Optimization terminated successfully (Exit mode 0)
Current function value: 155.34690007553695
Iterations: 9
Function evaluations: 101
Gradient evaluations: 9
Iteration: 1, Func. Count: 13, Neg. LLF: 182.31309566331979
Iteration: 2, Func. Count: 27, Neg. LLF: 160.23099499071998
Iteration: 3, Func. Count: 40, Neg. LLF: 155.08372476116352
Iteration: 4, Func. Count: 52, Neg. LLF: 154.97367269483715
Iteration: 5, Func. Count: 64, Neg. LLF: 154.92505322673549
Iteration: 6, Func. Count: 76, Neg. LLF: 154.92232769082034
Iteration: 7, Func. Count: 88, Neg. LLF: 154.90365105620728
Iteration: 8, Func. Count: 100, Neg. LLF: 154.70518846431764
Iteration: 9, Func. Count: 112, Neg. LLF: 154.37131081769758
Iteration: 10, Func. Count: 124, Neg. LLF: 154.29525481330606
Iteration: 11, Func. Count: 137, Neg. LLF: 154.6053518378182
Iteration: 12, Func. Count: 150, Neg. LLF: 153.9938156882598
Iteration: 13, Func. Count: 162, Neg. LLF: 153.9480698675745
Iteration: 14, Func. Count: 174, Neg. LLF: 153.92728762673613
Iteration: 15, Func. Count: 186, Neg. LLF: 153.91501162914292
Iteration: 16, Func. Count: 198, Neg. LLF: 153.89337542099057
Iteration: 17, Func. Count: 210, Neg. LLF: 153.8912092217775
Iteration: 18, Func. Count: 222, Neg. LLF: 153.88954337057362
Iteration: 19, Func. Count: 234, Neg. LLF: 153.8881637151152
Iteration: 20, Func. Count: 246, Neg. LLF: 153.88578614199847
Iteration: 21, Func. Count: 258, Neg. LLF: 153.88433077287155
Iteration: 22, Func. Count: 270, Neg. LLF: 153.91444439519236
Iteration: 23, Func. Count: 283, Neg. LLF: 153.88432910549633
Iteration: 24, Func. Count: 296, Neg. LLF: 153.88574352090433
Iteration: 25, Func. Count: 309, Neg. LLF: 153.88409732963004
Iteration: 26, Func. Count: 321, Neg. LLF: 153.88409334870215
Iteration: 27, Func. Count: 333, Neg. LLF: 153.88407155349344
Iteration: 28, Func. Count: 345, Neg. LLF: 153.88400987754483
Iteration: 29, Func. Count: 357, Neg. LLF: 153.8840022197095
Iteration: 30, Func. Count: 368, Neg. LLF: 153.88400229486342
Optimization terminated successfully (Exit mode 0)
Current function value: 153.8840022197095
Iterations: 31
Function evaluations: 368
Gradient evaluations: 30
Iteration: 1, Func. Count: 14, Neg. LLF: 174.21253417453187
Iteration: 2, Func. Count: 28, Neg. LLF: 165.68956903034794
Iteration: 3, Func. Count: 42, Neg. LLF: 155.36916498730497
Iteration: 4, Func. Count: 55, Neg. LLF: 155.02713532979382
Iteration: 5, Func. Count: 68, Neg. LLF: 155.66323723001136
Iteration: 6, Func. Count: 82, Neg. LLF: 154.98480810978458
Iteration: 7, Func. Count: 96, Neg. LLF: 154.91048732225536
Iteration: 8, Func. Count: 109, Neg. LLF: 154.86585142170273
Iteration: 9, Func. Count: 122, Neg. LLF: 154.83681237135565
Iteration: 10, Func. Count: 135, Neg. LLF: 154.71450428157243
Iteration: 11, Func. Count: 148, Neg. LLF: 154.47750182340184
Iteration: 12, Func. Count: 161, Neg. LLF: 154.59384794001485
Iteration: 13, Func. Count: 175, Neg. LLF: 154.47562345676067
Iteration: 14, Func. Count: 189, Neg. LLF: 153.9807071306054
Iteration: 15, Func. Count: 202, Neg. LLF: 153.95926993175254
Iteration: 16, Func. Count: 215, Neg. LLF: 153.94591852718145
Iteration: 17, Func. Count: 228, Neg. LLF: 153.93140056951972
Iteration: 18, Func. Count: 241, Neg. LLF: 153.91876736486583
Iteration: 19, Func. Count: 254, Neg. LLF: 153.91022352054227
Iteration: 20, Func. Count: 267, Neg. LLF: 153.9027440535954
Iteration: 21, Func. Count: 280, Neg. LLF: 153.89916305195592
Iteration: 22, Func. Count: 293, Neg. LLF: 153.89519670120566
Iteration: 23, Func. Count: 306, Neg. LLF: 153.89069811017947
Iteration: 24, Func. Count: 319, Neg. LLF: 153.88717549572488
Iteration: 25, Func. Count: 332, Neg. LLF: 153.88474543054866
Iteration: 26, Func. Count: 345, Neg. LLF: 153.8842092223661
Iteration: 27, Func. Count: 358, Neg. LLF: 153.88401473897963
Iteration: 28, Func. Count: 371, Neg. LLF: 153.8840092371719
Iteration: 29, Func. Count: 384, Neg. LLF: 153.88400602097937
Iteration: 30, Func. Count: 397, Neg. LLF: 153.88400258471637
Iteration: 31, Func. Count: 409, Neg. LLF: 153.88400267484755
Optimization terminated successfully (Exit mode 0)
Current function value: 153.88400258471637
Iterations: 32
Function evaluations: 409
Gradient evaluations: 31
Iteration: 1, Func. Count: 15, Neg. LLF: 167.07209032941824
Iteration: 2, Func. Count: 30, Neg. LLF: 173.18474708738214
Iteration: 3, Func. Count: 45, Neg. LLF: 154.51298023107427
Iteration: 4, Func. Count: 59, Neg. LLF: 154.17655018194952
Iteration: 5, Func. Count: 73, Neg. LLF: 156.07846706112755
Iteration: 6, Func. Count: 89, Neg. LLF: 154.04446472963335
Iteration: 7, Func. Count: 103, Neg. LLF: 153.99378090894
Iteration: 8, Func. Count: 117, Neg. LLF: 153.94777397916988
Iteration: 9, Func. Count: 131, Neg. LLF: 153.9340710923911
Iteration: 10, Func. Count: 145, Neg. LLF: 153.90485290310323
Iteration: 11, Func. Count: 159, Neg. LLF: 153.90195382186062
Iteration: 12, Func. Count: 173, Neg. LLF: 153.90160042454409
Iteration: 13, Func. Count: 187, Neg. LLF: 153.90150709848544
Iteration: 14, Func. Count: 201, Neg. LLF: 153.90137490624855
Iteration: 15, Func. Count: 215, Neg. LLF: 153.9011020245021
Iteration: 16, Func. Count: 229, Neg. LLF: 153.90081587224475
Iteration: 17, Func. Count: 243, Neg. LLF: 153.90065991532705
Iteration: 18, Func. Count: 257, Neg. LLF: 153.90063245212377
Iteration: 19, Func. Count: 271, Neg. LLF: 153.90063063920618
Iteration: 20, Func. Count: 284, Neg. LLF: 153.9006306392107
Optimization terminated successfully (Exit mode 0)
Current function value: 153.90063063920618
Iterations: 20
Function evaluations: 284
Gradient evaluations: 20
Iteration: 1, Func. Count: 12, Neg. LLF: 155.19678960408086
Iteration: 2, Func. Count: 23, Neg. LLF: 155.77200411347553
Iteration: 3, Func. Count: 35, Neg. LLF: 154.07105204204942
Iteration: 4, Func. Count: 47, Neg. LLF: 153.90185520772172
Iteration: 5, Func. Count: 58, Neg. LLF: 153.88505766322527
Iteration: 6, Func. Count: 69, Neg. LLF: 153.88483848593617
Iteration: 7, Func. Count: 80, Neg. LLF: 153.88478099942165
Iteration: 8, Func. Count: 91, Neg. LLF: 153.884643883752
Iteration: 9, Func. Count: 102, Neg. LLF: 153.88438418625424
Iteration: 10, Func. Count: 113, Neg. LLF: 153.8841833519322
Iteration: 11, Func. Count: 124, Neg. LLF: 153.88731410492784
Iteration: 12, Func. Count: 136, Neg. LLF: 153.88402842018178
Iteration: 13, Func. Count: 147, Neg. LLF: 153.8840037864143
Iteration: 14, Func. Count: 158, Neg. LLF: 153.88400218265053
Iteration: 15, Func. Count: 168, Neg. LLF: 153.88400222760683
Optimization terminated successfully (Exit mode 0)
Current function value: 153.88400218265053
Iterations: 15
Function evaluations: 168
Gradient evaluations: 15
Iteration: 1, Func. Count: 13, Neg. LLF: 443.3430049286414
Iteration: 2, Func. Count: 27, Neg. LLF: 183.18278609971404
Iteration: 3, Func. Count: 41, Neg. LLF: 155.4109893617143
Iteration: 4, Func. Count: 53, Neg. LLF: 155.39437749466904
Iteration: 5, Func. Count: 65, Neg. LLF: 155.37496773312108
Iteration: 6, Func. Count: 77, Neg. LLF: 155.3519201797034
Iteration: 7, Func. Count: 89, Neg. LLF: 155.3497967997462
Iteration: 8, Func. Count: 101, Neg. LLF: 155.34692216180346
Iteration: 9, Func. Count: 113, Neg. LLF: 155.34689987948607
Iteration: 10, Func. Count: 124, Neg. LLF: 155.34689987966178
Optimization terminated successfully (Exit mode 0)
Current function value: 155.34689987948607
Iterations: 10
Function evaluations: 124
Gradient evaluations: 10
Iteration: 1, Func. Count: 14, Neg. LLF: 188.48896223072842
Iteration: 2, Func. Count: 28, Neg. LLF: 158.78439189406114
Iteration: 3, Func. Count: 42, Neg. LLF: 155.4271358015352
Iteration: 4, Func. Count: 55, Neg. LLF: 155.6694066644405
Iteration: 5, Func. Count: 69, Neg. LLF: 155.52100952512242
Iteration: 6, Func. Count: 83, Neg. LLF: 154.598889324977
Iteration: 7, Func. Count: 96, Neg. LLF: 154.28028521337868
Iteration: 8, Func. Count: 109, Neg. LLF: 154.17901120887663
Iteration: 9, Func. Count: 122, Neg. LLF: 154.1277123901644
Iteration: 10, Func. Count: 135, Neg. LLF: 154.0879888279081
Iteration: 11, Func. Count: 148, Neg. LLF: 154.06616521660493
Iteration: 12, Func. Count: 161, Neg. LLF: 154.04830292518605
Iteration: 13, Func. Count: 174, Neg. LLF: 154.01826277826967
Iteration: 14, Func. Count: 187, Neg. LLF: 153.9011952914943
Iteration: 15, Func. Count: 200, Neg. LLF: 153.89079328074328
Iteration: 16, Func. Count: 213, Neg. LLF: 153.8862649112631
Iteration: 17, Func. Count: 226, Neg. LLF: 153.88527943487185
Iteration: 18, Func. Count: 239, Neg. LLF: 153.8843691254389
Iteration: 19, Func. Count: 252, Neg. LLF: 153.88422630527714
Iteration: 20, Func. Count: 265, Neg. LLF: 153.88417122953544
Iteration: 21, Func. Count: 278, Neg. LLF: 153.8841281763455
Iteration: 22, Func. Count: 291, Neg. LLF: 153.88407951742437
Iteration: 23, Func. Count: 304, Neg. LLF: 153.88406109808687
Iteration: 24, Func. Count: 317, Neg. LLF: 153.88405410705175
Iteration: 25, Func. Count: 330, Neg. LLF: 153.88404749056423
Iteration: 26, Func. Count: 343, Neg. LLF: 153.88403376617205
Iteration: 27, Func. Count: 356, Neg. LLF: 153.88401629207453
Iteration: 28, Func. Count: 369, Neg. LLF: 153.8840053114783
Iteration: 29, Func. Count: 382, Neg. LLF: 153.88400264065575
Iteration: 30, Func. Count: 394, Neg. LLF: 153.88400271584888
Optimization terminated successfully (Exit mode 0)
Current function value: 153.88400264065575
Iterations: 30
Function evaluations: 394
Gradient evaluations: 30
Iteration: 1, Func. Count: 15, Neg. LLF: 188.33106459223683
Iteration: 2, Func. Count: 30, Neg. LLF: 159.704672444265
Iteration: 3, Func. Count: 45, Neg. LLF: 155.26084551174273
Iteration: 4, Func. Count: 59, Neg. LLF: 155.2721132953952
Iteration: 5, Func. Count: 74, Neg. LLF: 156.26153539497486
Iteration: 6, Func. Count: 89, Neg. LLF: 154.95140303801895
Iteration: 7, Func. Count: 103, Neg. LLF: 154.91638731060652
Iteration: 8, Func. Count: 117, Neg. LLF: 154.89247382660943
Iteration: 9, Func. Count: 131, Neg. LLF: 154.80112094316874
Iteration: 10, Func. Count: 145, Neg. LLF: 154.24753858355194
Iteration: 11, Func. Count: 159, Neg. LLF: 154.07616256422233
Iteration: 12, Func. Count: 173, Neg. LLF: 154.0343784145319
Iteration: 13, Func. Count: 187, Neg. LLF: 153.963838588598
Iteration: 14, Func. Count: 201, Neg. LLF: 153.94545450351546
Iteration: 15, Func. Count: 215, Neg. LLF: 153.9402590557977
Iteration: 16, Func. Count: 229, Neg. LLF: 153.92190584855715
Iteration: 17, Func. Count: 243, Neg. LLF: 153.90932620241486
Iteration: 18, Func. Count: 257, Neg. LLF: 153.88824668024606
Iteration: 19, Func. Count: 271, Neg. LLF: 153.88712338097824
Iteration: 20, Func. Count: 285, Neg. LLF: 153.88595682725636
Iteration: 21, Func. Count: 299, Neg. LLF: 153.88468547719805
Iteration: 22, Func. Count: 313, Neg. LLF: 153.88409732089255
Iteration: 23, Func. Count: 327, Neg. LLF: 153.88400933936992
Iteration: 24, Func. Count: 341, Neg. LLF: 153.8840025594433
Iteration: 25, Func. Count: 354, Neg. LLF: 153.88400264958273
Optimization terminated successfully (Exit mode 0)
Current function value: 153.8840025594433
Iterations: 25
Function evaluations: 354
Gradient evaluations: 25
Iteration: 1, Func. Count: 16, Neg. LLF: 159.64414436737115
Iteration: 2, Func. Count: 32, Neg. LLF: 154.60199177952947
Iteration: 3, Func. Count: 47, Neg. LLF: 154.41694151491086
Iteration: 4, Func. Count: 63, Neg. LLF: 158.82280255721196
Iteration: 5, Func. Count: 80, Neg. LLF: 154.15323179429856
Iteration: 6, Func. Count: 96, Neg. LLF: 153.90709303276756
Iteration: 7, Func. Count: 111, Neg. LLF: 153.9014491335751
Iteration: 8, Func. Count: 126, Neg. LLF: 153.90065624452998
Iteration: 9, Func. Count: 141, Neg. LLF: 153.900636260876
Iteration: 10, Func. Count: 156, Neg. LLF: 153.9006331311441
Iteration: 11, Func. Count: 170, Neg. LLF: 153.90063313112782
Optimization terminated successfully (Exit mode 0)
Current function value: 153.9006331311441
Iterations: 11
Function evaluations: 170
Gradient evaluations: 11
Iteration: 1, Func. Count: 7, Neg. LLF: 155.7679328817703
Iteration: 2, Func. Count: 14, Neg. LLF: 155.77793475342975
Iteration: 3, Func. Count: 21, Neg. LLF: 154.0445426103692
Iteration: 4, Func. Count: 27, Neg. LLF: 154.74494183745088
Iteration: 5, Func. Count: 34, Neg. LLF: 153.95903851561349
Iteration: 6, Func. Count: 40, Neg. LLF: 153.95095701926837
Iteration: 7, Func. Count: 46, Neg. LLF: 153.95081786776169
Iteration: 8, Func. Count: 52, Neg. LLF: 153.9507847769325
Iteration: 9, Func. Count: 58, Neg. LLF: 153.95071023274582
Iteration: 10, Func. Count: 64, Neg. LLF: 153.95063091842346
Iteration: 11, Func. Count: 70, Neg. LLF: 153.95058201365933
Iteration: 12, Func. Count: 76, Neg. LLF: 153.9505723609772
Iteration: 13, Func. Count: 82, Neg. LLF: 153.95057167631904
Optimization terminated successfully (Exit mode 0)
Current function value: 153.95057167631904
Iterations: 13
Function evaluations: 82
Gradient evaluations: 13
Iteration: 1, Func. Count: 5, Neg. LLF: 158.88571601897803
Iteration: 2, Func. Count: 10, Neg. LLF: 156.0378338723674
Iteration: 3, Func. Count: 15, Neg. LLF: 153.7095094410377
Iteration: 4, Func. Count: 19, Neg. LLF: 152.2895964440345
Iteration: 5, Func. Count: 23, Neg. LLF: 151.81742845905572
Iteration: 6, Func. Count: 27, Neg. LLF: 151.67273116583522
Iteration: 7, Func. Count: 31, Neg. LLF: 151.64709962328024
Iteration: 8, Func. Count: 35, Neg. LLF: 151.62852778920575
Iteration: 9, Func. Count: 39, Neg. LLF: 151.6264204208525
Iteration: 10, Func. Count: 43, Neg. LLF: 151.6262464796727
Iteration: 11, Func. Count: 47, Neg. LLF: 151.6262390197686
Iteration: 12, Func. Count: 50, Neg. LLF: 151.62623904650613
Optimization terminated successfully (Exit mode 0)
Current function value: 151.6262390197686
Iterations: 12
Function evaluations: 50
Gradient evaluations: 12
Iteration: 1, Func. Count: 6, Neg. LLF: 152.02998367047934
Iteration: 2, Func. Count: 13, Neg. LLF: 151.62529933690337
Iteration: 3, Func. Count: 18, Neg. LLF: 151.6252980255918
Iteration: 4, Func. Count: 23, Neg. LLF: 151.62529047101276
Iteration: 5, Func. Count: 28, Neg. LLF: 151.62522055155327
Iteration: 6, Func. Count: 33, Neg. LLF: 151.62483280763465
Iteration: 7, Func. Count: 38, Neg. LLF: 151.62203085350407
Iteration: 8, Func. Count: 43, Neg. LLF: 152.71039475489522
Iteration: 9, Func. Count: 49, Neg. LLF: 152.7373896120631
Iteration: 10, Func. Count: 55, Neg. LLF: 152.70921134912288
Iteration: 11, Func. Count: 61, Neg. LLF: 152.57367707471883
Iteration: 12, Func. Count: 67, Neg. LLF: 151.6079128166455
Iteration: 13, Func. Count: 72, Neg. LLF: 151.64228491982348
Iteration: 14, Func. Count: 78, Neg. LLF: 151.63437335022869
Iteration: 15, Func. Count: 84, Neg. LLF: 151.6138299925678
Iteration: 16, Func. Count: 90, Neg. LLF: 151.60502296350487
Iteration: 17, Func. Count: 95, Neg. LLF: 151.60502089756264
Iteration: 18, Func. Count: 99, Neg. LLF: 151.60502089768823
Optimization terminated successfully (Exit mode 0)
Current function value: 151.60502089756264
Iterations: 18
Function evaluations: 99
Gradient evaluations: 18
Iteration: 1, Func. Count: 7, Neg. LLF: 156.4636176527339
Iteration: 2, Func. Count: 15, Neg. LLF: 151.62123947504182
Iteration: 3, Func. Count: 21, Neg. LLF: 151.62122228636866
Iteration: 4, Func. Count: 27, Neg. LLF: 151.62113337848714
Iteration: 5, Func. Count: 33, Neg. LLF: 151.62107404364636
Iteration: 6, Func. Count: 39, Neg. LLF: 151.62105592478235
Iteration: 7, Func. Count: 45, Neg. LLF: 151.62104990664156
Iteration: 8, Func. Count: 51, Neg. LLF: 151.62103243529182
Iteration: 9, Func. Count: 57, Neg. LLF: 151.6209960074984
Iteration: 10, Func. Count: 63, Neg. LLF: 151.6208931352236
Iteration: 11, Func. Count: 69, Neg. LLF: 151.62062629836802
Iteration: 12, Func. Count: 75, Neg. LLF: 151.61994526101188
Iteration: 13, Func. Count: 81, Neg. LLF: 151.61856133966688
Iteration: 14, Func. Count: 87, Neg. LLF: 151.61582225986785
Iteration: 15, Func. Count: 93, Neg. LLF: 151.64785224200077
Iteration: 16, Func. Count: 100, Neg. LLF: 151.6335219347011
Iteration: 17, Func. Count: 107, Neg. LLF: 151.60667938256663
Iteration: 18, Func. Count: 113, Neg. LLF: 151.6060857251464
Iteration: 19, Func. Count: 119, Neg. LLF: 151.60581550631773
Iteration: 20, Func. Count: 125, Neg. LLF: 151.6053456539351
Iteration: 21, Func. Count: 131, Neg. LLF: 151.60504213085704
Iteration: 22, Func. Count: 137, Neg. LLF: 151.6050298834482
Iteration: 23, Func. Count: 143, Neg. LLF: 151.60502266810823
Iteration: 24, Func. Count: 149, Neg. LLF: 151.60502110984802
Iteration: 25, Func. Count: 154, Neg. LLF: 151.60502111000102
Optimization terminated successfully (Exit mode 0)
Current function value: 151.60502110984802
Iterations: 25
Function evaluations: 154
Gradient evaluations: 25
Iteration: 1, Func. Count: 8, Neg. LLF: 159.50677859169116
Iteration: 2, Func. Count: 17, Neg. LLF: 151.6139687816529
Iteration: 3, Func. Count: 24, Neg. LLF: 151.61231552798873
Iteration: 4, Func. Count: 31, Neg. LLF: 151.6086533804494
Iteration: 5, Func. Count: 38, Neg. LLF: 151.60593594447457
Iteration: 6, Func. Count: 45, Neg. LLF: 151.59384289014292
Iteration: 7, Func. Count: 52, Neg. LLF: 151.59380296101648
Iteration: 8, Func. Count: 60, Neg. LLF: 151.59371889822057
Iteration: 9, Func. Count: 67, Neg. LLF: 151.59368618765046
Iteration: 10, Func. Count: 74, Neg. LLF: 151.5936373749984
Iteration: 11, Func. Count: 81, Neg. LLF: 151.59347619739398
Iteration: 12, Func. Count: 88, Neg. LLF: 151.59311998728603
Iteration: 13, Func. Count: 95, Neg. LLF: 151.59234002584623
Iteration: 14, Func. Count: 102, Neg. LLF: 151.59103846673256
Iteration: 15, Func. Count: 109, Neg. LLF: 151.58928761030313
Iteration: 16, Func. Count: 116, Neg. LLF: 151.58864244245365
Iteration: 17, Func. Count: 123, Neg. LLF: 151.58861984079846
Iteration: 18, Func. Count: 129, Neg. LLF: 151.5886198407244
Optimization terminated successfully (Exit mode 0)
Current function value: 151.58861984079846
Iterations: 18
Function evaluations: 129
Gradient evaluations: 18
Iteration: 1, Func. Count: 9, Neg. LLF: 159.51778779676692
Iteration: 2, Func. Count: 19, Neg. LLF: 151.6116213125314
Iteration: 3, Func. Count: 27, Neg. LLF: 151.6095285754964
Iteration: 4, Func. Count: 35, Neg. LLF: 151.6070263966144
Iteration: 5, Func. Count: 43, Neg. LLF: 151.59938899965803
Iteration: 6, Func. Count: 51, Neg. LLF: 151.59902616826759
Iteration: 7, Func. Count: 59, Neg. LLF: 151.59838703133485
Iteration: 8, Func. Count: 67, Neg. LLF: 151.5941449534507
Iteration: 9, Func. Count: 75, Neg. LLF: 151.5937394955737
Iteration: 10, Func. Count: 83, Neg. LLF: 151.5936652317629
Iteration: 11, Func. Count: 91, Neg. LLF: 151.5936571124212
Iteration: 12, Func. Count: 99, Neg. LLF: 151.59360848769188
Iteration: 13, Func. Count: 107, Neg. LLF: 151.5933550831523
Iteration: 14, Func. Count: 115, Neg. LLF: 151.59213988416826
Iteration: 15, Func. Count: 123, Neg. LLF: 151.588730342889
Iteration: 16, Func. Count: 131, Neg. LLF: 151.5886260337193
Iteration: 17, Func. Count: 139, Neg. LLF: 151.58862051034185
Iteration: 18, Func. Count: 147, Neg. LLF: 151.5886197586936
Optimization terminated successfully (Exit mode 0)
Current function value: 151.5886197586936
Iterations: 18
Function evaluations: 147
Gradient evaluations: 18
Iteration: 1, Func. Count: 6, Neg. LLF: 158.76064239870615
Iteration: 2, Func. Count: 12, Neg. LLF: 155.9091499940116
Iteration: 3, Func. Count: 18, Neg. LLF: 153.70628603046694
Iteration: 4, Func. Count: 23, Neg. LLF: 152.2997735874037
Iteration: 5, Func. Count: 28, Neg. LLF: 151.81786283416918
Iteration: 6, Func. Count: 33, Neg. LLF: 151.6736382796122
Iteration: 7, Func. Count: 38, Neg. LLF: 151.6478460995452
Iteration: 8, Func. Count: 43, Neg. LLF: 151.62831927728092
Iteration: 9, Func. Count: 48, Neg. LLF: 151.62639016940668
Iteration: 10, Func. Count: 53, Neg. LLF: 151.626244931553
Iteration: 11, Func. Count: 58, Neg. LLF: 151.62623898693892
Iteration: 12, Func. Count: 62, Neg. LLF: 151.6262390169216
Optimization terminated successfully (Exit mode 0)
Current function value: 151.62623898693892
Iterations: 12
Function evaluations: 62
Gradient evaluations: 12
Iteration: 1, Func. Count: 7, Neg. LLF: 151.84052586286634
Iteration: 2, Func. Count: 15, Neg. LLF: 151.62535710705438
Iteration: 3, Func. Count: 21, Neg. LLF: 151.6253463988629
Iteration: 4, Func. Count: 28, Neg. LLF: 151.6252986451015
Iteration: 5, Func. Count: 34, Neg. LLF: 151.62529649717587
Iteration: 6, Func. Count: 40, Neg. LLF: 151.62529231087248
Iteration: 7, Func. Count: 46, Neg. LLF: 151.62527987527173
Iteration: 8, Func. Count: 52, Neg. LLF: 151.62524832223843
Iteration: 9, Func. Count: 58, Neg. LLF: 151.62516009902956
Iteration: 10, Func. Count: 64, Neg. LLF: 151.6249364801732
Iteration: 11, Func. Count: 70, Neg. LLF: 151.6242313134466
Iteration: 12, Func. Count: 76, Neg. LLF: 151.62365067211263
Iteration: 13, Func. Count: 82, Neg. LLF: 151.62037153112644
Iteration: 14, Func. Count: 88, Neg. LLF: 151.60919289222826
Iteration: 15, Func. Count: 94, Neg. LLF: 151.6086819612946
Iteration: 16, Func. Count: 101, Neg. LLF: 151.6106822281203
Iteration: 17, Func. Count: 108, Neg. LLF: 151.6050248178481
Iteration: 18, Func. Count: 114, Neg. LLF: 151.60502095470778
Iteration: 19, Func. Count: 119, Neg. LLF: 151.60502095457784
Optimization terminated successfully (Exit mode 0)
Current function value: 151.60502095470778
Iterations: 19
Function evaluations: 119
Gradient evaluations: 19
Iteration: 1, Func. Count: 8, Neg. LLF: 155.86147647326305
Iteration: 2, Func. Count: 17, Neg. LLF: 151.62140796509647
Iteration: 3, Func. Count: 24, Neg. LLF: 151.62138392808382
Iteration: 4, Func. Count: 31, Neg. LLF: 151.62134558697764
Iteration: 5, Func. Count: 38, Neg. LLF: 151.6212881998264
Iteration: 6, Func. Count: 45, Neg. LLF: 151.62117752734358
Iteration: 7, Func. Count: 52, Neg. LLF: 151.62108020131203
Iteration: 8, Func. Count: 59, Neg. LLF: 151.6210338376958
Iteration: 9, Func. Count: 66, Neg. LLF: 151.62102372993175
Iteration: 10, Func. Count: 73, Neg. LLF: 151.62101696631842
Iteration: 11, Func. Count: 80, Neg. LLF: 151.62099461023897
Iteration: 12, Func. Count: 87, Neg. LLF: 151.62094164508193
Iteration: 13, Func. Count: 94, Neg. LLF: 151.62079544512295
Iteration: 14, Func. Count: 101, Neg. LLF: 151.62040021450233
Iteration: 15, Func. Count: 108, Neg. LLF: 151.619210512512
Iteration: 16, Func. Count: 115, Neg. LLF: 151.6184037834315
Iteration: 17, Func. Count: 122, Neg. LLF: 151.6164079368482
Iteration: 18, Func. Count: 129, Neg. LLF: 151.61415612857695
Iteration: 19, Func. Count: 136, Neg. LLF: 151.7534621622912
Iteration: 20, Func. Count: 144, Neg. LLF: 152.37431925123883
Iteration: 21, Func. Count: 152, Neg. LLF: 152.06964574266163
Iteration: 22, Func. Count: 160, Neg. LLF: 151.61377411445096
Iteration: 23, Func. Count: 168, Neg. LLF: 151.60613592833403
Iteration: 24, Func. Count: 175, Neg. LLF: 151.60586815140707
Iteration: 25, Func. Count: 182, Neg. LLF: 151.60563617723733
Iteration: 26, Func. Count: 189, Neg. LLF: 151.6050833392448
Iteration: 27, Func. Count: 196, Neg. LLF: 151.6050447881368
Iteration: 28, Func. Count: 203, Neg. LLF: 151.60503324390697
Iteration: 29, Func. Count: 210, Neg. LLF: 151.60502223455592
Iteration: 30, Func. Count: 217, Neg. LLF: 151.6050209168637
Iteration: 31, Func. Count: 223, Neg. LLF: 151.60502091698788
Optimization terminated successfully (Exit mode 0)
Current function value: 151.6050209168637
Iterations: 31
Function evaluations: 223
Gradient evaluations: 31
Iteration: 1, Func. Count: 9, Neg. LLF: 159.50556984278666
Iteration: 2, Func. Count: 19, Neg. LLF: 151.61350642634437
Iteration: 3, Func. Count: 27, Neg. LLF: 151.6100719890194
Iteration: 4, Func. Count: 35, Neg. LLF: 151.5940915832778
Iteration: 5, Func. Count: 43, Neg. LLF: 151.59376051659848
Iteration: 6, Func. Count: 51, Neg. LLF: 151.59374424026478
Iteration: 7, Func. Count: 59, Neg. LLF: 151.59372620744682
Iteration: 8, Func. Count: 67, Neg. LLF: 151.59370085067857
Iteration: 9, Func. Count: 75, Neg. LLF: 151.5936308432517
Iteration: 10, Func. Count: 83, Neg. LLF: 151.59346144851455
Iteration: 11, Func. Count: 91, Neg. LLF: 151.59305176157972
Iteration: 12, Func. Count: 99, Neg. LLF: 151.5922121649481
Iteration: 13, Func. Count: 107, Neg. LLF: 151.5908277685184
Iteration: 14, Func. Count: 115, Neg. LLF: 151.58906830868256
Iteration: 15, Func. Count: 123, Neg. LLF: 151.58863644332908
Iteration: 16, Func. Count: 131, Neg. LLF: 151.5886199394253
Iteration: 17, Func. Count: 138, Neg. LLF: 151.5886199393947
Optimization terminated successfully (Exit mode 0)
Current function value: 151.5886199394253
Iterations: 17
Function evaluations: 138
Gradient evaluations: 17
Iteration: 1, Func. Count: 10, Neg. LLF: 159.5164287198345
Iteration: 2, Func. Count: 21, Neg. LLF: 151.6112685915842
Iteration: 3, Func. Count: 30, Neg. LLF: 151.60743377930802
Iteration: 4, Func. Count: 39, Neg. LLF: 151.59933400272047
Iteration: 5, Func. Count: 48, Neg. LLF: 151.599071724319
Iteration: 6, Func. Count: 57, Neg. LLF: 151.59736597006167
Iteration: 7, Func. Count: 66, Neg. LLF: 151.59425633604735
Iteration: 8, Func. Count: 75, Neg. LLF: 151.59401122148518
Iteration: 9, Func. Count: 84, Neg. LLF: 151.5936612822796
Iteration: 10, Func. Count: 93, Neg. LLF: 151.59365372370644
Iteration: 11, Func. Count: 102, Neg. LLF: 151.59361349352983
Iteration: 12, Func. Count: 111, Neg. LLF: 151.5934127277054
Iteration: 13, Func. Count: 120, Neg. LLF: 151.5924531754301
Iteration: 14, Func. Count: 129, Neg. LLF: 151.58915147362842
Iteration: 15, Func. Count: 138, Neg. LLF: 151.5889305026038
Iteration: 16, Func. Count: 147, Neg. LLF: 151.58863097419697
Iteration: 17, Func. Count: 156, Neg. LLF: 151.5886199406739
Iteration: 18, Func. Count: 164, Neg. LLF: 151.58861994150885
Optimization terminated successfully (Exit mode 0)
Current function value: 151.5886199406739
Iterations: 18
Function evaluations: 164
Gradient evaluations: 18
Iteration: 1, Func. Count: 7, Neg. LLF: 154.32519159148836
Iteration: 2, Func. Count: 14, Neg. LLF: 153.61785843964788
Iteration: 3, Func. Count: 21, Neg. LLF: 155.04105396017275
Iteration: 4, Func. Count: 29, Neg. LLF: 152.21403023010345
Iteration: 5, Func. Count: 35, Neg. LLF: 151.53591194118636
Iteration: 6, Func. Count: 41, Neg. LLF: 151.34341758618714
Iteration: 7, Func. Count: 47, Neg. LLF: 151.25105156696665
Iteration: 8, Func. Count: 53, Neg. LLF: 151.22190362918684
Iteration: 9, Func. Count: 59, Neg. LLF: 151.2148555000015
Iteration: 10, Func. Count: 65, Neg. LLF: 151.2068030930819
Iteration: 11, Func. Count: 71, Neg. LLF: 151.20635490822244
Iteration: 12, Func. Count: 77, Neg. LLF: 151.2063036541027
Iteration: 13, Func. Count: 82, Neg. LLF: 151.20630365409747
Optimization terminated successfully (Exit mode 0)
Current function value: 151.2063036541027
Iterations: 13
Function evaluations: 82
Gradient evaluations: 13
Iteration: 1, Func. Count: 8, Neg. LLF: 154.0767606100663
Iteration: 2, Func. Count: 18, Neg. LLF: 154.75089189403997
Iteration: 3, Func. Count: 27, Neg. LLF: 151.5817066589424
Iteration: 4, Func. Count: 34, Neg. LLF: 151.57721279870088
Iteration: 5, Func. Count: 41, Neg. LLF: 151.57641362979524
Iteration: 6, Func. Count: 48, Neg. LLF: 151.57131760941718
Iteration: 7, Func. Count: 55, Neg. LLF: 151.5382099938804
Iteration: 8, Func. Count: 62, Neg. LLF: 151.23452774884055
Iteration: 9, Func. Count: 69, Neg. LLF: 151.22584542179354
Iteration: 10, Func. Count: 76, Neg. LLF: 151.21190868848478
Iteration: 11, Func. Count: 83, Neg. LLF: 151.20991414694333
Iteration: 12, Func. Count: 90, Neg. LLF: 151.20790229663672
Iteration: 13, Func. Count: 97, Neg. LLF: 151.20675895143816
Iteration: 14, Func. Count: 104, Neg. LLF: 151.20634842612057
Iteration: 15, Func. Count: 111, Neg. LLF: 151.20630662000127
Iteration: 16, Func. Count: 118, Neg. LLF: 151.2063036840161
Iteration: 17, Func. Count: 124, Neg. LLF: 151.20630369995203
Optimization terminated successfully (Exit mode 0)
Current function value: 151.2063036840161
Iterations: 17
Function evaluations: 124
Gradient evaluations: 17
Iteration: 1, Func. Count: 9, Neg. LLF: 153.69543519598508
Iteration: 2, Func. Count: 20, Neg. LLF: 155.1420469821463
Iteration: 3, Func. Count: 30, Neg. LLF: 151.53812920380744
Iteration: 4, Func. Count: 38, Neg. LLF: 151.47289363075492
Iteration: 5, Func. Count: 46, Neg. LLF: 151.45561055894055
Iteration: 6, Func. Count: 54, Neg. LLF: 151.45323526788505
Iteration: 7, Func. Count: 62, Neg. LLF: 151.45298899352608
Iteration: 8, Func. Count: 70, Neg. LLF: 151.45277289289402
Iteration: 9, Func. Count: 78, Neg. LLF: 151.4525820629714
Iteration: 10, Func. Count: 86, Neg. LLF: 151.45239457533282
Iteration: 11, Func. Count: 94, Neg. LLF: 151.45203804940047
Iteration: 12, Func. Count: 102, Neg. LLF: 151.45109239190592
Iteration: 13, Func. Count: 110, Neg. LLF: 151.4475915095935
Iteration: 14, Func. Count: 118, Neg. LLF: 151.42411167343104
Iteration: 15, Func. Count: 126, Neg. LLF: 151.415256674612
Iteration: 16, Func. Count: 134, Neg. LLF: 151.35445515674493
Iteration: 17, Func. Count: 142, Neg. LLF: 151.28753993111982
Iteration: 18, Func. Count: 150, Neg. LLF: 151.2231462486953
Iteration: 19, Func. Count: 158, Neg. LLF: 151.21343054786527
Iteration: 20, Func. Count: 166, Neg. LLF: 151.20862528633197
Iteration: 21, Func. Count: 174, Neg. LLF: 151.20659266933643
Iteration: 22, Func. Count: 182, Neg. LLF: 151.20638562617142
Iteration: 23, Func. Count: 190, Neg. LLF: 151.2063511113872
Iteration: 24, Func. Count: 198, Neg. LLF: 151.2063211521853
Iteration: 25, Func. Count: 206, Neg. LLF: 151.20630665346073
Iteration: 26, Func. Count: 214, Neg. LLF: 151.20630379189376
Iteration: 27, Func. Count: 221, Neg. LLF: 151.20630380576625
Optimization terminated successfully (Exit mode 0)
Current function value: 151.20630379189376
Iterations: 27
Function evaluations: 221
Gradient evaluations: 27
Iteration: 1, Func. Count: 10, Neg. LLF: 153.79477406813888
Iteration: 2, Func. Count: 22, Neg. LLF: 155.28206970946226
Iteration: 3, Func. Count: 32, Neg. LLF: 151.5100499056731
Iteration: 4, Func. Count: 41, Neg. LLF: 151.4901433512086
Iteration: 5, Func. Count: 50, Neg. LLF: 151.48799769528046
Iteration: 6, Func. Count: 59, Neg. LLF: 151.48774349513621
Iteration: 7, Func. Count: 68, Neg. LLF: 151.48676602855394
Iteration: 8, Func. Count: 77, Neg. LLF: 151.48468829851572
Iteration: 9, Func. Count: 86, Neg. LLF: 151.47616600133344
Iteration: 10, Func. Count: 95, Neg. LLF: 151.40895679979096
Iteration: 11, Func. Count: 104, Neg. LLF: 151.39666842657675
Iteration: 12, Func. Count: 113, Neg. LLF: 151.2604161016036
Iteration: 13, Func. Count: 122, Neg. LLF: 151.2372071776406
Iteration: 14, Func. Count: 131, Neg. LLF: 151.22509653778152
Iteration: 15, Func. Count: 140, Neg. LLF: 151.2183435733631
Iteration: 16, Func. Count: 149, Neg. LLF: 151.21485491337552
Iteration: 17, Func. Count: 158, Neg. LLF: 151.21324652467254
Iteration: 18, Func. Count: 167, Neg. LLF: 151.21124475233395
Iteration: 19, Func. Count: 176, Neg. LLF: 151.2086465454737
Iteration: 20, Func. Count: 185, Neg. LLF: 151.2069101371181
Iteration: 21, Func. Count: 194, Neg. LLF: 151.20636113048113
Iteration: 22, Func. Count: 203, Neg. LLF: 151.20630975332136
Iteration: 23, Func. Count: 212, Neg. LLF: 151.2063037449898
Iteration: 24, Func. Count: 220, Neg. LLF: 151.20630376899766
Optimization terminated successfully (Exit mode 0)
Current function value: 151.2063037449898
Iterations: 25
Function evaluations: 220
Gradient evaluations: 24
Iteration: 1, Func. Count: 11, Neg. LLF: 153.79829595775539
Iteration: 2, Func. Count: 24, Neg. LLF: 155.12837900386964
Iteration: 3, Func. Count: 35, Neg. LLF: 151.15879046926517
Iteration: 4, Func. Count: 45, Neg. LLF: 151.11932808206294
Iteration: 5, Func. Count: 55, Neg. LLF: 151.09261576761602
Iteration: 6, Func. Count: 65, Neg. LLF: 151.04606399278435
Iteration: 7, Func. Count: 75, Neg. LLF: 151.03506174151585
Iteration: 8, Func. Count: 85, Neg. LLF: 151.03295257281303
Iteration: 9, Func. Count: 95, Neg. LLF: 151.03119869143447
Iteration: 10, Func. Count: 105, Neg. LLF: 151.0265682128769
Iteration: 11, Func. Count: 115, Neg. LLF: 151.01943026934651
Iteration: 12, Func. Count: 125, Neg. LLF: 151.01107534612373
Iteration: 13, Func. Count: 135, Neg. LLF: 151.00191396982208
Iteration: 14, Func. Count: 145, Neg. LLF: 150.99642024598197
Iteration: 15, Func. Count: 155, Neg. LLF: 150.99627287696453
Iteration: 16, Func. Count: 165, Neg. LLF: 150.99623856684252
Iteration: 17, Func. Count: 174, Neg. LLF: 150.99623856678573
Optimization terminated successfully (Exit mode 0)
Current function value: 150.99623856684252
Iterations: 17
Function evaluations: 174
Gradient evaluations: 17
Iteration: 1, Func. Count: 8, Neg. LLF: 154.3558031554285
Iteration: 2, Func. Count: 16, Neg. LLF: 153.4605484086872
Iteration: 3, Func. Count: 24, Neg. LLF: 152.37303103653923
Iteration: 4, Func. Count: 31, Neg. LLF: 153.62178946387843
Iteration: 5, Func. Count: 39, Neg. LLF: 151.4253483135831
Iteration: 6, Func. Count: 46, Neg. LLF: 151.31354629542201
Iteration: 7, Func. Count: 53, Neg. LLF: 151.27080557945644
Iteration: 8, Func. Count: 60, Neg. LLF: 151.22825746391229
Iteration: 9, Func. Count: 67, Neg. LLF: 151.2104248927816
Iteration: 10, Func. Count: 74, Neg. LLF: 151.20637764222943
Iteration: 11, Func. Count: 81, Neg. LLF: 151.20630451662646
Iteration: 12, Func. Count: 88, Neg. LLF: 151.20630368119774
Optimization terminated successfully (Exit mode 0)
Current function value: 151.20630368119774
Iterations: 12
Function evaluations: 88
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 153.980698744857
Iteration: 2, Func. Count: 20, Neg. LLF: 154.79549057866433
Iteration: 3, Func. Count: 30, Neg. LLF: 151.58263534466198
Iteration: 4, Func. Count: 38, Neg. LLF: 151.57718877498166
Iteration: 5, Func. Count: 46, Neg. LLF: 151.57638064793667
Iteration: 6, Func. Count: 54, Neg. LLF: 151.57120158088526
Iteration: 7, Func. Count: 62, Neg. LLF: 151.5361204608737
Iteration: 8, Func. Count: 70, Neg. LLF: 151.26703913761128
Iteration: 9, Func. Count: 78, Neg. LLF: 151.24921517016205
Iteration: 10, Func. Count: 86, Neg. LLF: 151.22682214984658
Iteration: 11, Func. Count: 94, Neg. LLF: 151.21694310667664
Iteration: 12, Func. Count: 102, Neg. LLF: 151.20890849818903
Iteration: 13, Func. Count: 110, Neg. LLF: 151.20718432644944
Iteration: 14, Func. Count: 118, Neg. LLF: 151.20663470609446
Iteration: 15, Func. Count: 126, Neg. LLF: 151.2063608188083
Iteration: 16, Func. Count: 134, Neg. LLF: 151.2063079715407
Iteration: 17, Func. Count: 142, Neg. LLF: 151.2063037215537
Iteration: 18, Func. Count: 149, Neg. LLF: 151.20630373747971
Optimization terminated successfully (Exit mode 0)
Current function value: 151.2063037215537
Iterations: 18
Function evaluations: 149
Gradient evaluations: 18
Iteration: 1, Func. Count: 10, Neg. LLF: 153.7825784167916
Iteration: 2, Func. Count: 22, Neg. LLF: 155.17503777081436
Iteration: 3, Func. Count: 33, Neg. LLF: 151.53958114805295
Iteration: 4, Func. Count: 42, Neg. LLF: 151.47250424511896
Iteration: 5, Func. Count: 51, Neg. LLF: 151.45519534780098
Iteration: 6, Func. Count: 60, Neg. LLF: 151.45333476414717
Iteration: 7, Func. Count: 69, Neg. LLF: 151.4530377701162
Iteration: 8, Func. Count: 78, Neg. LLF: 151.45275853703544
Iteration: 9, Func. Count: 87, Neg. LLF: 151.4525749333963
Iteration: 10, Func. Count: 96, Neg. LLF: 151.45241053368983
Iteration: 11, Func. Count: 105, Neg. LLF: 151.45209416047985
Iteration: 12, Func. Count: 114, Neg. LLF: 151.45125671563324
Iteration: 13, Func. Count: 123, Neg. LLF: 151.448358795512
Iteration: 14, Func. Count: 132, Neg. LLF: 151.42087841813915
Iteration: 15, Func. Count: 141, Neg. LLF: 151.4066642004671
Iteration: 16, Func. Count: 150, Neg. LLF: 151.28932543539938
Iteration: 17, Func. Count: 159, Neg. LLF: 151.2184211232965
Iteration: 18, Func. Count: 168, Neg. LLF: 151.2129724215988
Iteration: 19, Func. Count: 177, Neg. LLF: 151.2064025191086
Iteration: 20, Func. Count: 186, Neg. LLF: 151.20630632256092
Iteration: 21, Func. Count: 195, Neg. LLF: 151.20630492801615
Iteration: 22, Func. Count: 203, Neg. LLF: 151.2063049419422
Optimization terminated successfully (Exit mode 0)
Current function value: 151.20630492801615
Iterations: 22
Function evaluations: 203
Gradient evaluations: 22
Iteration: 1, Func. Count: 11, Neg. LLF: 153.79400614875428
Iteration: 2, Func. Count: 24, Neg. LLF: 155.28433012153545
Iteration: 3, Func. Count: 35, Neg. LLF: 151.51084333856875
Iteration: 4, Func. Count: 45, Neg. LLF: 151.490069240131
Iteration: 5, Func. Count: 55, Neg. LLF: 151.4880087567587
Iteration: 6, Func. Count: 65, Neg. LLF: 151.4877559831822
Iteration: 7, Func. Count: 75, Neg. LLF: 151.48672697407062
Iteration: 8, Func. Count: 85, Neg. LLF: 151.48460970882144
Iteration: 9, Func. Count: 95, Neg. LLF: 151.47494241325717
Iteration: 10, Func. Count: 105, Neg. LLF: 151.41427565380985
Iteration: 11, Func. Count: 115, Neg. LLF: 151.40751728474768
Iteration: 12, Func. Count: 125, Neg. LLF: 151.35128857912784
Iteration: 13, Func. Count: 135, Neg. LLF: 151.241937448373
Iteration: 14, Func. Count: 145, Neg. LLF: 151.2368349106124
Iteration: 15, Func. Count: 155, Neg. LLF: 151.23178287533642
Iteration: 16, Func. Count: 165, Neg. LLF: 151.22442049768833
Iteration: 17, Func. Count: 175, Neg. LLF: 151.22148352492866
Iteration: 18, Func. Count: 185, Neg. LLF: 151.21797194773765
Iteration: 19, Func. Count: 195, Neg. LLF: 151.2166082360654
Iteration: 20, Func. Count: 205, Neg. LLF: 151.2116745749698
Iteration: 21, Func. Count: 215, Neg. LLF: 151.20809081951512
Iteration: 22, Func. Count: 225, Neg. LLF: 151.20655899439927
Iteration: 23, Func. Count: 235, Neg. LLF: 151.2063068816692
Iteration: 24, Func. Count: 245, Neg. LLF: 151.20630638433724
Optimization terminated successfully (Exit mode 0)
Current function value: 151.20630638433724
Iterations: 25
Function evaluations: 245
Gradient evaluations: 24
Iteration: 1, Func. Count: 12, Neg. LLF: 153.79769381451533
Iteration: 2, Func. Count: 26, Neg. LLF: 155.13205348183513
Iteration: 3, Func. Count: 38, Neg. LLF: 151.16268899911518
Iteration: 4, Func. Count: 49, Neg. LLF: 151.12340525188876
Iteration: 5, Func. Count: 60, Neg. LLF: 151.09702923210645
Iteration: 6, Func. Count: 71, Neg. LLF: 151.04611670755654
Iteration: 7, Func. Count: 82, Neg. LLF: 151.0349013130935
Iteration: 8, Func. Count: 93, Neg. LLF: 151.03276665367318
Iteration: 9, Func. Count: 104, Neg. LLF: 151.03096879403677
Iteration: 10, Func. Count: 115, Neg. LLF: 151.02661630230114
Iteration: 11, Func. Count: 126, Neg. LLF: 151.02004792411213
Iteration: 12, Func. Count: 137, Neg. LLF: 151.01217569027207
Iteration: 13, Func. Count: 148, Neg. LLF: 151.0030127913715
Iteration: 14, Func. Count: 159, Neg. LLF: 150.99651881673253
Iteration: 15, Func. Count: 170, Neg. LLF: 150.9962846589639
Iteration: 16, Func. Count: 181, Neg. LLF: 150.9962388403883
Iteration: 17, Func. Count: 191, Neg. LLF: 150.99623884042305
Optimization terminated successfully (Exit mode 0)
Current function value: 150.9962388403883
Iterations: 17
Function evaluations: 191
Gradient evaluations: 17
Iteration: 1, Func. Count: 5, Neg. LLF: 157.45178731416476
Iteration: 2, Func. Count: 10, Neg. LLF: 155.12415927385712
Iteration: 3, Func. Count: 14, Neg. LLF: 153.09987169688995
Iteration: 4, Func. Count: 18, Neg. LLF: 152.20694287288399
Iteration: 5, Func. Count: 22, Neg. LLF: 151.74554447566052
Iteration: 6, Func. Count: 26, Neg. LLF: 151.6367071474599
Iteration: 7, Func. Count: 30, Neg. LLF: 151.62655991429946
Iteration: 8, Func. Count: 34, Neg. LLF: 151.62624506377415
Iteration: 9, Func. Count: 38, Neg. LLF: 151.6262392972039
Iteration: 10, Func. Count: 41, Neg. LLF: 151.62623938225119
Optimization terminated successfully (Exit mode 0)
Current function value: 151.6262392972039
Iterations: 10
Function evaluations: 41
Gradient evaluations: 10
Iteration: 1, Func. Count: 6, Neg. LLF: 154.15695216238336
Iteration: 2, Func. Count: 13, Neg. LLF: 151.62659942126143
Iteration: 3, Func. Count: 18, Neg. LLF: 151.62576280008446
Iteration: 4, Func. Count: 23, Neg. LLF: 151.625347838149
Iteration: 5, Func. Count: 28, Neg. LLF: 151.62530807568461
Iteration: 6, Func. Count: 33, Neg. LLF: 151.62530668403275
Iteration: 7, Func. Count: 38, Neg. LLF: 151.62529813072499
Iteration: 8, Func. Count: 43, Neg. LLF: 151.62525175866017
Iteration: 9, Func. Count: 48, Neg. LLF: 151.6250001789312
Iteration: 10, Func. Count: 53, Neg. LLF: 151.623368879202
Iteration: 11, Func. Count: 58, Neg. LLF: 151.63240172483702
Iteration: 12, Func. Count: 64, Neg. LLF: 152.70528966346762
Iteration: 13, Func. Count: 70, Neg. LLF: 152.59681898002333
Iteration: 14, Func. Count: 76, Neg. LLF: 151.63704522470888
Iteration: 15, Func. Count: 82, Neg. LLF: 151.6370358105981
Iteration: 16, Func. Count: 88, Neg. LLF: 151.79202569196983
Iteration: 17, Func. Count: 94, Neg. LLF: 151.65102849235043
Iteration: 18, Func. Count: 100, Neg. LLF: 151.60874386034195
Iteration: 19, Func. Count: 106, Neg. LLF: 151.6050744724288
Iteration: 20, Func. Count: 111, Neg. LLF: 151.60502145835196
Iteration: 21, Func. Count: 116, Neg. LLF: 151.60502085189447
Optimization terminated successfully (Exit mode 0)
Current function value: 151.60502085189447
Iterations: 21
Function evaluations: 116
Gradient evaluations: 21
Iteration: 1, Func. Count: 7, Neg. LLF: 151.9214159662759
Iteration: 2, Func. Count: 14, Neg. LLF: 151.62628727398436
Iteration: 3, Func. Count: 20, Neg. LLF: 151.62471765264385
Iteration: 4, Func. Count: 27, Neg. LLF: 151.62118811473457
Iteration: 5, Func. Count: 33, Neg. LLF: 151.62113856690314
Iteration: 6, Func. Count: 39, Neg. LLF: 151.62113430501188
Iteration: 7, Func. Count: 45, Neg. LLF: 151.62111107033223
Iteration: 8, Func. Count: 51, Neg. LLF: 151.62102310139545
Iteration: 9, Func. Count: 57, Neg. LLF: 151.62094079501864
Iteration: 10, Func. Count: 63, Neg. LLF: 151.62091617302664
Iteration: 11, Func. Count: 69, Neg. LLF: 151.62081087828633
Iteration: 12, Func. Count: 75, Neg. LLF: 151.62052561530405
Iteration: 13, Func. Count: 81, Neg. LLF: 151.62016224958344
Iteration: 14, Func. Count: 87, Neg. LLF: 151.61914998676963
Iteration: 15, Func. Count: 93, Neg. LLF: 151.6133787106692
Iteration: 16, Func. Count: 99, Neg. LLF: 151.8632490770805
Iteration: 17, Func. Count: 106, Neg. LLF: 151.60939911504042
Iteration: 18, Func. Count: 112, Neg. LLF: 151.60580243281012
Iteration: 19, Func. Count: 118, Neg. LLF: 151.60698135623815
Iteration: 20, Func. Count: 125, Neg. LLF: 151.60802165400912
Iteration: 21, Func. Count: 132, Neg. LLF: 151.6050214538772
Iteration: 22, Func. Count: 138, Neg. LLF: 151.6050208506708
Optimization terminated successfully (Exit mode 0)
Current function value: 151.6050208506708
Iterations: 22
Function evaluations: 138
Gradient evaluations: 22
Iteration: 1, Func. Count: 8, Neg. LLF: 159.49035059618748
Iteration: 2, Func. Count: 17, Neg. LLF: 151.61428153187148
Iteration: 3, Func. Count: 24, Neg. LLF: 151.61100320661566
Iteration: 4, Func. Count: 31, Neg. LLF: 151.60531111739868
Iteration: 5, Func. Count: 38, Neg. LLF: 151.5994790873119
Iteration: 6, Func. Count: 45, Neg. LLF: 151.59454990905877
Iteration: 7, Func. Count: 52, Neg. LLF: 151.59414165769556
Iteration: 8, Func. Count: 59, Neg. LLF: 151.59375735178523
Iteration: 9, Func. Count: 66, Neg. LLF: 151.5937499685197
Iteration: 10, Func. Count: 73, Neg. LLF: 151.59371225706374
Iteration: 11, Func. Count: 80, Neg. LLF: 151.5935256148407
Iteration: 12, Func. Count: 87, Neg. LLF: 151.5926314252112
Iteration: 13, Func. Count: 94, Neg. LLF: 151.58942956880327
Iteration: 14, Func. Count: 101, Neg. LLF: 151.58909344724958
Iteration: 15, Func. Count: 108, Neg. LLF: 151.58865201863242
Iteration: 16, Func. Count: 115, Neg. LLF: 151.5886213630061
Iteration: 17, Func. Count: 122, Neg. LLF: 151.58861976106556
Iteration: 18, Func. Count: 128, Neg. LLF: 151.58861976107957
Optimization terminated successfully (Exit mode 0)
Current function value: 151.58861976106556
Iterations: 18
Function evaluations: 128
Gradient evaluations: 18
Iteration: 1, Func. Count: 9, Neg. LLF: 159.50487674696112
Iteration: 2, Func. Count: 19, Neg. LLF: 151.61142977411026
Iteration: 3, Func. Count: 27, Neg. LLF: 151.6073951224812
Iteration: 4, Func. Count: 35, Neg. LLF: 151.60399889623082
Iteration: 5, Func. Count: 43, Neg. LLF: 151.60121890229763
Iteration: 6, Func. Count: 51, Neg. LLF: 151.60090467867707
Iteration: 7, Func. Count: 59, Neg. LLF: 151.59933455393
Iteration: 8, Func. Count: 67, Neg. LLF: 151.59459767828466
Iteration: 9, Func. Count: 75, Neg. LLF: 151.5941273507622
Iteration: 10, Func. Count: 83, Neg. LLF: 151.5936500213693
Iteration: 11, Func. Count: 91, Neg. LLF: 151.5936418931243
Iteration: 12, Func. Count: 99, Neg. LLF: 151.59359133127697
Iteration: 13, Func. Count: 107, Neg. LLF: 151.59335304016815
Iteration: 14, Func. Count: 115, Neg. LLF: 151.59300353231959
Iteration: 15, Func. Count: 123, Neg. LLF: 151.59194409280255
Iteration: 16, Func. Count: 131, Neg. LLF: 151.59020629264506
Iteration: 17, Func. Count: 139, Neg. LLF: 151.58905869201985
Iteration: 18, Func. Count: 147, Neg. LLF: 151.58865383209064
Iteration: 19, Func. Count: 155, Neg. LLF: 151.58861996129872
Iteration: 20, Func. Count: 162, Neg. LLF: 151.5886199620309
Optimization terminated successfully (Exit mode 0)
Current function value: 151.58861996129872
Iterations: 20
Function evaluations: 162
Gradient evaluations: 20
Iteration: 1, Func. Count: 6, Neg. LLF: 158.8764946389745
Iteration: 2, Func. Count: 12, Neg. LLF: 156.521541884964
Iteration: 3, Func. Count: 18, Neg. LLF: 154.44136003404523
Iteration: 4, Func. Count: 23, Neg. LLF: 153.14943731650848
Iteration: 5, Func. Count: 28, Neg. LLF: 152.33792295781674
Iteration: 6, Func. Count: 33, Neg. LLF: 151.6609919187646
Iteration: 7, Func. Count: 38, Neg. LLF: 151.63512856860137
Iteration: 8, Func. Count: 43, Neg. LLF: 151.6278042844032
Iteration: 9, Func. Count: 48, Neg. LLF: 151.62681530083364
Iteration: 10, Func. Count: 53, Neg. LLF: 151.62623925129702
Iteration: 11, Func. Count: 57, Neg. LLF: 151.62623922458755
Optimization terminated successfully (Exit mode 0)
Current function value: 151.62623925129702
Iterations: 11
Function evaluations: 57
Gradient evaluations: 11
Iteration: 1, Func. Count: 7, Neg. LLF: 162.0356744867814
Iteration: 2, Func. Count: 15, Neg. LLF: 151.62652490383056
Iteration: 3, Func. Count: 21, Neg. LLF: 151.6260048575758
Iteration: 4, Func. Count: 27, Neg. LLF: 151.6257881604791
Iteration: 5, Func. Count: 33, Neg. LLF: 151.6253876301328
Iteration: 6, Func. Count: 39, Neg. LLF: 151.62534138745656
Iteration: 7, Func. Count: 45, Neg. LLF: 151.62533591688108
Iteration: 8, Func. Count: 51, Neg. LLF: 151.62533436282644
Iteration: 9, Func. Count: 57, Neg. LLF: 151.62532554110462
Iteration: 10, Func. Count: 63, Neg. LLF: 151.62530902236045
Iteration: 11, Func. Count: 69, Neg. LLF: 151.62525265360716
Iteration: 12, Func. Count: 75, Neg. LLF: 151.62511144560693
Iteration: 13, Func. Count: 81, Neg. LLF: 151.62468594469613
Iteration: 14, Func. Count: 87, Neg. LLF: 151.62350168681533
Iteration: 15, Func. Count: 93, Neg. LLF: 151.6210852347446
Iteration: 16, Func. Count: 99, Neg. LLF: 151.75167344600192
Iteration: 17, Func. Count: 106, Neg. LLF: 151.7369130527035
Iteration: 18, Func. Count: 113, Neg. LLF: 151.66384959524322
Iteration: 19, Func. Count: 120, Neg. LLF: 151.6114929183189
Iteration: 20, Func. Count: 127, Neg. LLF: 151.81099891455025
Iteration: 21, Func. Count: 134, Neg. LLF: 151.6050702667716
Iteration: 22, Func. Count: 140, Neg. LLF: 151.60502245477417
Iteration: 23, Func. Count: 146, Neg. LLF: 151.6050209041773
Iteration: 24, Func. Count: 151, Neg. LLF: 151.60502090413783
Optimization terminated successfully (Exit mode 0)
Current function value: 151.6050209041773
Iterations: 24
Function evaluations: 151
Gradient evaluations: 24
Iteration: 1, Func. Count: 8, Neg. LLF: 153.37308109000892
Iteration: 2, Func. Count: 17, Neg. LLF: 151.6236362640219
Iteration: 3, Func. Count: 24, Neg. LLF: 151.62183920962354
Iteration: 4, Func. Count: 31, Neg. LLF: 151.62114113979064
Iteration: 5, Func. Count: 38, Neg. LLF: 151.62113159883262
Iteration: 6, Func. Count: 45, Neg. LLF: 151.6211275907225
Iteration: 7, Func. Count: 52, Neg. LLF: 151.6211040918952
Iteration: 8, Func. Count: 59, Neg. LLF: 151.62098741365185
Iteration: 9, Func. Count: 66, Neg. LLF: 151.62048059864406
Iteration: 10, Func. Count: 73, Neg. LLF: 151.61914170415358
Iteration: 11, Func. Count: 80, Neg. LLF: 151.6182105151925
Iteration: 12, Func. Count: 87, Neg. LLF: 151.61576466217926
Iteration: 13, Func. Count: 94, Neg. LLF: 151.61380663317433
Iteration: 14, Func. Count: 101, Neg. LLF: 153.86197414205392
Iteration: 15, Func. Count: 109, Neg. LLF: 152.81398812501138
Iteration: 16, Func. Count: 117, Neg. LLF: 152.23199670252023
Iteration: 17, Func. Count: 125, Neg. LLF: 151.6108797347142
Iteration: 18, Func. Count: 133, Neg. LLF: 151.898151899057
Iteration: 19, Func. Count: 141, Neg. LLF: 151.6062160559109
Iteration: 20, Func. Count: 149, Neg. LLF: 151.60564711630482
Iteration: 21, Func. Count: 156, Neg. LLF: 151.6050528784015
Iteration: 22, Func. Count: 163, Neg. LLF: 151.60502831021782
Iteration: 23, Func. Count: 170, Neg. LLF: 151.60502184533357
Iteration: 24, Func. Count: 177, Neg. LLF: 151.60502092888623
Optimization terminated successfully (Exit mode 0)
Current function value: 151.60502092888623
Iterations: 24
Function evaluations: 177
Gradient evaluations: 24
Iteration: 1, Func. Count: 9, Neg. LLF: 159.47301012603305
Iteration: 2, Func. Count: 19, Neg. LLF: 151.61580631662704
Iteration: 3, Func. Count: 27, Neg. LLF: 151.61361734061245
Iteration: 4, Func. Count: 35, Neg. LLF: 151.61182189564536
Iteration: 5, Func. Count: 43, Neg. LLF: 151.6024037140082
Iteration: 6, Func. Count: 51, Neg. LLF: 151.59382672728273
Iteration: 7, Func. Count: 59, Neg. LLF: 151.59376685195272
Iteration: 8, Func. Count: 67, Neg. LLF: 151.5937554978813
Iteration: 9, Func. Count: 75, Neg. LLF: 151.5937350798094
Iteration: 10, Func. Count: 83, Neg. LLF: 151.59367274951242
Iteration: 11, Func. Count: 91, Neg. LLF: 151.59352718264424
Iteration: 12, Func. Count: 99, Neg. LLF: 151.59313210939882
Iteration: 13, Func. Count: 107, Neg. LLF: 151.59228631270187
Iteration: 14, Func. Count: 115, Neg. LLF: 151.59088853342035
Iteration: 15, Func. Count: 123, Neg. LLF: 151.5896144886721
Iteration: 16, Func. Count: 131, Neg. LLF: 151.58869762776658
Iteration: 17, Func. Count: 139, Neg. LLF: 151.5886229704528
Iteration: 18, Func. Count: 147, Neg. LLF: 151.58862017028756
Iteration: 19, Func. Count: 154, Neg. LLF: 151.58862017040948
Optimization terminated successfully (Exit mode 0)
Current function value: 151.58862017028756
Iterations: 19
Function evaluations: 154
Gradient evaluations: 19
Iteration: 1, Func. Count: 10, Neg. LLF: 159.48780050893754
Iteration: 2, Func. Count: 21, Neg. LLF: 151.61315421341914
Iteration: 3, Func. Count: 30, Neg. LLF: 151.61086709909452
Iteration: 4, Func. Count: 39, Neg. LLF: 151.60852641393734
Iteration: 5, Func. Count: 48, Neg. LLF: 151.60291321437353
Iteration: 6, Func. Count: 57, Neg. LLF: 151.60061833779653
Iteration: 7, Func. Count: 66, Neg. LLF: 151.60033182910365
Iteration: 8, Func. Count: 75, Neg. LLF: 151.59875500058646
Iteration: 9, Func. Count: 84, Neg. LLF: 151.593761097451
Iteration: 10, Func. Count: 93, Neg. LLF: 151.59369878055543
Iteration: 11, Func. Count: 102, Neg. LLF: 151.59366925531177
Iteration: 12, Func. Count: 111, Neg. LLF: 151.59365911572493
Iteration: 13, Func. Count: 120, Neg. LLF: 151.59359234749553
Iteration: 14, Func. Count: 129, Neg. LLF: 151.5932719636201
Iteration: 15, Func. Count: 138, Neg. LLF: 151.59279236866286
Iteration: 16, Func. Count: 147, Neg. LLF: 151.5915354999177
Iteration: 17, Func. Count: 156, Neg. LLF: 151.59018741565075
Iteration: 18, Func. Count: 165, Neg. LLF: 151.58905059744066
Iteration: 19, Func. Count: 174, Neg. LLF: 151.58862279367852
Iteration: 20, Func. Count: 183, Neg. LLF: 151.5886197208354
Iteration: 21, Func. Count: 191, Neg. LLF: 151.58861972166585
Optimization terminated successfully (Exit mode 0)
Current function value: 151.5886197208354
Iterations: 21
Function evaluations: 191
Gradient evaluations: 21
Iteration: 1, Func. Count: 7, Neg. LLF: 159.45498299452365
Iteration: 2, Func. Count: 14, Neg. LLF: 156.510603029069
Iteration: 3, Func. Count: 21, Neg. LLF: 154.56443410239845
Iteration: 4, Func. Count: 27, Neg. LLF: 153.39968300119543
Iteration: 5, Func. Count: 33, Neg. LLF: 152.7395423685204
Iteration: 6, Func. Count: 39, Neg. LLF: 151.72256444166135
Iteration: 7, Func. Count: 45, Neg. LLF: 151.65323284771046
Iteration: 8, Func. Count: 51, Neg. LLF: 151.63113267804385
Iteration: 9, Func. Count: 57, Neg. LLF: 151.62657817373946
Iteration: 10, Func. Count: 63, Neg. LLF: 151.62625432879096
Iteration: 11, Func. Count: 69, Neg. LLF: 151.62623930628175
Iteration: 12, Func. Count: 74, Neg. LLF: 151.62623933627128
Optimization terminated successfully (Exit mode 0)
Current function value: 151.62623930628175
Iterations: 12
Function evaluations: 74
Gradient evaluations: 12
Iteration: 1, Func. Count: 8, Neg. LLF: 160.32998201569148
Iteration: 2, Func. Count: 17, Neg. LLF: 151.62607924891137
Iteration: 3, Func. Count: 24, Neg. LLF: 151.62571908242145
Iteration: 4, Func. Count: 31, Neg. LLF: 151.62553290944413
Iteration: 5, Func. Count: 38, Neg. LLF: 151.62542080844838
Iteration: 6, Func. Count: 45, Neg. LLF: 151.62533829643363
Iteration: 7, Func. Count: 52, Neg. LLF: 151.62532564526808
Iteration: 8, Func. Count: 59, Neg. LLF: 151.62532340837615
Iteration: 9, Func. Count: 66, Neg. LLF: 151.62532082323548
Iteration: 10, Func. Count: 73, Neg. LLF: 151.62531262557016
Iteration: 11, Func. Count: 80, Neg. LLF: 151.62529240652864
Iteration: 12, Func. Count: 87, Neg. LLF: 151.62523589362118
Iteration: 13, Func. Count: 94, Neg. LLF: 151.62509237556876
Iteration: 14, Func. Count: 101, Neg. LLF: 151.6246056722871
Iteration: 15, Func. Count: 108, Neg. LLF: 151.62336416926914
Iteration: 16, Func. Count: 115, Neg. LLF: 151.62074509653797
Iteration: 17, Func. Count: 122, Neg. LLF: 151.99365372738006
Iteration: 18, Func. Count: 130, Neg. LLF: 151.65405978813098
Iteration: 19, Func. Count: 138, Neg. LLF: 151.6236436404473
Iteration: 20, Func. Count: 146, Neg. LLF: 151.60510267021337
Iteration: 21, Func. Count: 153, Neg. LLF: 151.60905347098924
Iteration: 22, Func. Count: 161, Neg. LLF: 151.6050234048232
Iteration: 23, Func. Count: 168, Neg. LLF: 151.60502083648782
Iteration: 24, Func. Count: 174, Neg. LLF: 151.60502083648416
Optimization terminated successfully (Exit mode 0)
Current function value: 151.60502083648782
Iterations: 24
Function evaluations: 174
Gradient evaluations: 24
Iteration: 1, Func. Count: 9, Neg. LLF: 154.10032474279615
Iteration: 2, Func. Count: 19, Neg. LLF: 151.6223148520126
Iteration: 3, Func. Count: 27, Neg. LLF: 151.62162239852185
Iteration: 4, Func. Count: 35, Neg. LLF: 151.6211891054394
Iteration: 5, Func. Count: 43, Neg. LLF: 151.62117679260317
Iteration: 6, Func. Count: 51, Neg. LLF: 151.6211617189956
Iteration: 7, Func. Count: 59, Neg. LLF: 151.6211267916069
Iteration: 8, Func. Count: 67, Neg. LLF: 151.62107567730837
Iteration: 9, Func. Count: 75, Neg. LLF: 151.62103005769347
Iteration: 10, Func. Count: 83, Neg. LLF: 151.62101025227932
Iteration: 11, Func. Count: 91, Neg. LLF: 151.62099760653987
Iteration: 12, Func. Count: 99, Neg. LLF: 151.62097321782278
Iteration: 13, Func. Count: 107, Neg. LLF: 151.620918991989
Iteration: 14, Func. Count: 115, Neg. LLF: 151.62077755125026
Iteration: 15, Func. Count: 123, Neg. LLF: 151.62040094891003
Iteration: 16, Func. Count: 131, Neg. LLF: 151.6194308527134
Iteration: 17, Func. Count: 139, Neg. LLF: 151.61785125827777
Iteration: 18, Func. Count: 147, Neg. LLF: 151.61385862181962
Iteration: 19, Func. Count: 155, Neg. LLF: 152.04768689925925
Iteration: 20, Func. Count: 164, Neg. LLF: 151.62657766422424
Iteration: 21, Func. Count: 173, Neg. LLF: 151.611051047011
Iteration: 22, Func. Count: 182, Neg. LLF: 151.6059998836204
Iteration: 23, Func. Count: 190, Neg. LLF: 151.60572154125072
Iteration: 24, Func. Count: 198, Neg. LLF: 151.60511312926178
Iteration: 25, Func. Count: 206, Neg. LLF: 151.6050277968496
Iteration: 26, Func. Count: 214, Neg. LLF: 151.6050211596125
Iteration: 27, Func. Count: 221, Neg. LLF: 151.60502115995314
Optimization terminated successfully (Exit mode 0)
Current function value: 151.6050211596125
Iterations: 27
Function evaluations: 221
Gradient evaluations: 27
Iteration: 1, Func. Count: 10, Neg. LLF: 159.47090133574267
Iteration: 2, Func. Count: 21, Neg. LLF: 151.61487046058923
Iteration: 3, Func. Count: 30, Neg. LLF: 151.61322951421977
Iteration: 4, Func. Count: 39, Neg. LLF: 151.6095489222972
Iteration: 5, Func. Count: 48, Neg. LLF: 151.60666257010928
Iteration: 6, Func. Count: 57, Neg. LLF: 151.59529783222234
Iteration: 7, Func. Count: 66, Neg. LLF: 151.5939686662367
Iteration: 8, Func. Count: 75, Neg. LLF: 151.5938340401912
Iteration: 9, Func. Count: 84, Neg. LLF: 151.5938179148487
Iteration: 10, Func. Count: 93, Neg. LLF: 151.59379727820098
Iteration: 11, Func. Count: 102, Neg. LLF: 151.59376954044654
Iteration: 12, Func. Count: 111, Neg. LLF: 151.5937094236553
Iteration: 13, Func. Count: 120, Neg. LLF: 151.59356678219754
Iteration: 14, Func. Count: 129, Neg. LLF: 151.59320890458335
Iteration: 15, Func. Count: 138, Neg. LLF: 151.59238585926448
Iteration: 16, Func. Count: 147, Neg. LLF: 151.59078753574346
Iteration: 17, Func. Count: 156, Neg. LLF: 151.58942324848664
Iteration: 18, Func. Count: 165, Neg. LLF: 151.5887371257604
Iteration: 19, Func. Count: 174, Neg. LLF: 151.58861983885936
Iteration: 20, Func. Count: 182, Neg. LLF: 151.58861983889696
Optimization terminated successfully (Exit mode 0)
Current function value: 151.58861983885936
Iterations: 20
Function evaluations: 182
Gradient evaluations: 20
Iteration: 1, Func. Count: 11, Neg. LLF: 159.48571486847965
Iteration: 2, Func. Count: 23, Neg. LLF: 151.61243484868612
Iteration: 3, Func. Count: 33, Neg. LLF: 151.60994049577525
Iteration: 4, Func. Count: 43, Neg. LLF: 151.60622370969472
Iteration: 5, Func. Count: 53, Neg. LLF: 151.60168093455218
Iteration: 6, Func. Count: 63, Neg. LLF: 151.60137728347235
Iteration: 7, Func. Count: 73, Neg. LLF: 151.6002348760366
Iteration: 8, Func. Count: 83, Neg. LLF: 151.59875655487173
Iteration: 9, Func. Count: 93, Neg. LLF: 151.595450621531
Iteration: 10, Func. Count: 103, Neg. LLF: 151.59486970637582
Iteration: 11, Func. Count: 113, Neg. LLF: 151.5936617270251
Iteration: 12, Func. Count: 123, Neg. LLF: 151.593645597786
Iteration: 13, Func. Count: 133, Neg. LLF: 151.59363172671334
Iteration: 14, Func. Count: 143, Neg. LLF: 151.59359418417714
Iteration: 15, Func. Count: 153, Neg. LLF: 151.59350201491634
Iteration: 16, Func. Count: 163, Neg. LLF: 151.59325610486522
Iteration: 17, Func. Count: 173, Neg. LLF: 151.59268028881962
Iteration: 18, Func. Count: 183, Neg. LLF: 151.59137538776042
Iteration: 19, Func. Count: 193, Neg. LLF: 151.58959192439625
Iteration: 20, Func. Count: 203, Neg. LLF: 151.58882198541866
Iteration: 21, Func. Count: 213, Neg. LLF: 151.58862623271332
Iteration: 22, Func. Count: 223, Neg. LLF: 151.58861973547283
Iteration: 23, Func. Count: 232, Neg. LLF: 151.58861973626085
Optimization terminated successfully (Exit mode 0)
Current function value: 151.58861973547283
Iterations: 23
Function evaluations: 232
Gradient evaluations: 23
Iteration: 1, Func. Count: 8, Neg. LLF: 155.6703725614843
Iteration: 2, Func. Count: 16, Neg. LLF: 155.36134788687136
Iteration: 3, Func. Count: 24, Neg. LLF: 153.1263022105934
Iteration: 4, Func. Count: 32, Neg. LLF: 153.36699034367754
Iteration: 5, Func. Count: 40, Neg. LLF: 152.33790023404896
Iteration: 6, Func. Count: 47, Neg. LLF: 151.84615339907276
Iteration: 7, Func. Count: 54, Neg. LLF: 151.44521906046168
Iteration: 8, Func. Count: 61, Neg. LLF: 151.2528252811868
Iteration: 9, Func. Count: 68, Neg. LLF: 151.20989045119043
Iteration: 10, Func. Count: 75, Neg. LLF: 151.20744790793174
Iteration: 11, Func. Count: 82, Neg. LLF: 151.2064336821482
Iteration: 12, Func. Count: 89, Neg. LLF: 151.2063588141768
Iteration: 13, Func. Count: 96, Neg. LLF: 151.206303917812
Iteration: 14, Func. Count: 102, Neg. LLF: 151.2063039178248
Optimization terminated successfully (Exit mode 0)
Current function value: 151.206303917812
Iterations: 14
Function evaluations: 102
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 153.9656111359535
Iteration: 2, Func. Count: 20, Neg. LLF: 154.71590635875182
Iteration: 3, Func. Count: 30, Neg. LLF: 151.57981062177745
Iteration: 4, Func. Count: 38, Neg. LLF: 151.57678837146875
Iteration: 5, Func. Count: 46, Neg. LLF: 151.57519687488687
Iteration: 6, Func. Count: 54, Neg. LLF: 151.57337498679132
Iteration: 7, Func. Count: 62, Neg. LLF: 151.56483799690918
Iteration: 8, Func. Count: 70, Neg. LLF: 151.5363346009154
Iteration: 9, Func. Count: 78, Neg. LLF: 151.4445781418566
Iteration: 10, Func. Count: 86, Neg. LLF: 151.39562655577518
Iteration: 11, Func. Count: 94, Neg. LLF: 151.26539745185423
Iteration: 12, Func. Count: 102, Neg. LLF: 151.2394173545668
Iteration: 13, Func. Count: 110, Neg. LLF: 151.22473733695628
Iteration: 14, Func. Count: 118, Neg. LLF: 151.21052042103037
Iteration: 15, Func. Count: 126, Neg. LLF: 151.207528334785
Iteration: 16, Func. Count: 134, Neg. LLF: 151.20690098171943
Iteration: 17, Func. Count: 142, Neg. LLF: 151.2065053240971
Iteration: 18, Func. Count: 150, Neg. LLF: 151.20633294861378
Iteration: 19, Func. Count: 158, Neg. LLF: 151.20630544437813
Iteration: 20, Func. Count: 166, Neg. LLF: 151.20630367598702
Iteration: 21, Func. Count: 173, Neg. LLF: 151.20630369190232
Optimization terminated successfully (Exit mode 0)
Current function value: 151.20630367598702
Iterations: 21
Function evaluations: 173
Gradient evaluations: 21
Iteration: 1, Func. Count: 10, Neg. LLF: 153.66666359071547
Iteration: 2, Func. Count: 22, Neg. LLF: 155.03338541733066
Iteration: 3, Func. Count: 33, Neg. LLF: 151.52606205352288
Iteration: 4, Func. Count: 42, Neg. LLF: 151.47298107022885
Iteration: 5, Func. Count: 51, Neg. LLF: 151.45751548111792
Iteration: 6, Func. Count: 60, Neg. LLF: 151.4540897886975
Iteration: 7, Func. Count: 69, Neg. LLF: 151.45322990240768
Iteration: 8, Func. Count: 78, Neg. LLF: 151.45244945048202
Iteration: 9, Func. Count: 87, Neg. LLF: 151.45220300969464
Iteration: 10, Func. Count: 96, Neg. LLF: 151.45208054524528
Iteration: 11, Func. Count: 105, Neg. LLF: 151.45187476835906
Iteration: 12, Func. Count: 114, Neg. LLF: 151.45137518388924
Iteration: 13, Func. Count: 123, Neg. LLF: 151.4498724053406
Iteration: 14, Func. Count: 132, Neg. LLF: 151.44339453109717
Iteration: 15, Func. Count: 141, Neg. LLF: 151.42895380805638
Iteration: 16, Func. Count: 150, Neg. LLF: 151.40565177456747
Iteration: 17, Func. Count: 159, Neg. LLF: 151.35150661354612
Iteration: 18, Func. Count: 168, Neg. LLF: 151.26768386476485
Iteration: 19, Func. Count: 177, Neg. LLF: 151.22464513436006
Iteration: 20, Func. Count: 186, Neg. LLF: 151.21477638341437
Iteration: 21, Func. Count: 195, Neg. LLF: 151.20737639022275
Iteration: 22, Func. Count: 204, Neg. LLF: 151.2063844472434
Iteration: 23, Func. Count: 213, Neg. LLF: 151.20631837590517
Iteration: 24, Func. Count: 222, Neg. LLF: 151.20630888652104
Iteration: 25, Func. Count: 231, Neg. LLF: 151.20630435353596
Iteration: 26, Func. Count: 240, Neg. LLF: 151.20630368372034
Optimization terminated successfully (Exit mode 0)
Current function value: 151.20630368372034
Iterations: 26
Function evaluations: 240
Gradient evaluations: 26
Iteration: 1, Func. Count: 11, Neg. LLF: 153.79821212153735
Iteration: 2, Func. Count: 24, Neg. LLF: 155.188311962181
Iteration: 3, Func. Count: 35, Neg. LLF: 151.4994871078671
Iteration: 4, Func. Count: 45, Neg. LLF: 151.4900718317923
Iteration: 5, Func. Count: 55, Neg. LLF: 151.48790233964388
Iteration: 6, Func. Count: 65, Neg. LLF: 151.48766102519153
Iteration: 7, Func. Count: 75, Neg. LLF: 151.4864779297777
Iteration: 8, Func. Count: 85, Neg. LLF: 151.48402431660108
Iteration: 9, Func. Count: 95, Neg. LLF: 151.47249484467852
Iteration: 10, Func. Count: 105, Neg. LLF: 151.4074113659775
Iteration: 11, Func. Count: 115, Neg. LLF: 151.39098447688872
Iteration: 12, Func. Count: 125, Neg. LLF: 151.26575383539998
Iteration: 13, Func. Count: 135, Neg. LLF: 151.25535713166514
Iteration: 14, Func. Count: 145, Neg. LLF: 151.2383202853425
Iteration: 15, Func. Count: 155, Neg. LLF: 151.2232209484202
Iteration: 16, Func. Count: 165, Neg. LLF: 151.21580419849403
Iteration: 17, Func. Count: 175, Neg. LLF: 151.21338412058802
Iteration: 18, Func. Count: 185, Neg. LLF: 151.2115307140895
Iteration: 19, Func. Count: 195, Neg. LLF: 151.20887868663544
Iteration: 20, Func. Count: 205, Neg. LLF: 151.20703443877275
Iteration: 21, Func. Count: 215, Neg. LLF: 151.206414274305
Iteration: 22, Func. Count: 225, Neg. LLF: 151.20631266572383
Iteration: 23, Func. Count: 235, Neg. LLF: 151.2063109623113
Iteration: 24, Func. Count: 245, Neg. LLF: 151.206303728638
Iteration: 25, Func. Count: 254, Neg. LLF: 151.2063037526492
Optimization terminated successfully (Exit mode 0)
Current function value: 151.206303728638
Iterations: 26
Function evaluations: 254
Gradient evaluations: 25
Iteration: 1, Func. Count: 12, Neg. LLF: 153.801699646769
Iteration: 2, Func. Count: 26, Neg. LLF: 155.04999298350515
Iteration: 3, Func. Count: 38, Neg. LLF: 151.1439108378983
Iteration: 4, Func. Count: 49, Neg. LLF: 151.11111623662666
Iteration: 5, Func. Count: 60, Neg. LLF: 151.0878145303637
Iteration: 6, Func. Count: 71, Neg. LLF: 151.0516881883647
Iteration: 7, Func. Count: 82, Neg. LLF: 151.03613532299914
Iteration: 8, Func. Count: 93, Neg. LLF: 151.03242034123534
Iteration: 9, Func. Count: 104, Neg. LLF: 151.03109971871152
Iteration: 10, Func. Count: 115, Neg. LLF: 151.02695106223157
Iteration: 11, Func. Count: 126, Neg. LLF: 151.01975544962264
Iteration: 12, Func. Count: 137, Neg. LLF: 151.00985409369915
Iteration: 13, Func. Count: 148, Neg. LLF: 151.000941174233
Iteration: 14, Func. Count: 159, Neg. LLF: 150.99626687440076
Iteration: 15, Func. Count: 170, Neg. LLF: 150.99623902034537
Iteration: 16, Func. Count: 180, Neg. LLF: 150.99623902033483
Optimization terminated successfully (Exit mode 0)
Current function value: 150.99623902034537
Iterations: 16
Function evaluations: 180
Gradient evaluations: 16
Iteration: 1, Func. Count: 9, Neg. LLF: 155.96088203177644
Iteration: 2, Func. Count: 18, Neg. LLF: 155.7107372260366
Iteration: 3, Func. Count: 27, Neg. LLF: 153.0239573476854
Iteration: 4, Func. Count: 36, Neg. LLF: 152.46264257611404
Iteration: 5, Func. Count: 44, Neg. LLF: 152.49431812821612
Iteration: 6, Func. Count: 53, Neg. LLF: 152.03858582275654
Iteration: 7, Func. Count: 61, Neg. LLF: 151.37035688208374
Iteration: 8, Func. Count: 69, Neg. LLF: 151.26395417677202
Iteration: 9, Func. Count: 77, Neg. LLF: 151.20853308865495
Iteration: 10, Func. Count: 85, Neg. LLF: 151.20746334442742
Iteration: 11, Func. Count: 93, Neg. LLF: 151.206318192263
Iteration: 12, Func. Count: 101, Neg. LLF: 151.20630618395379
Iteration: 13, Func. Count: 109, Neg. LLF: 151.20630373809027
Iteration: 14, Func. Count: 116, Neg. LLF: 151.20630378655397
Optimization terminated successfully (Exit mode 0)
Current function value: 151.20630373809027
Iterations: 14
Function evaluations: 116
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 153.8977372890199
Iteration: 2, Func. Count: 22, Neg. LLF: 154.75352432522934
Iteration: 3, Func. Count: 33, Neg. LLF: 151.58072033924404
Iteration: 4, Func. Count: 42, Neg. LLF: 151.57679170939625
Iteration: 5, Func. Count: 51, Neg. LLF: 151.57522693204822
Iteration: 6, Func. Count: 60, Neg. LLF: 151.57362223950634
Iteration: 7, Func. Count: 69, Neg. LLF: 151.56518961063554
Iteration: 8, Func. Count: 78, Neg. LLF: 151.53762449846107
Iteration: 9, Func. Count: 87, Neg. LLF: 151.442348417704
Iteration: 10, Func. Count: 96, Neg. LLF: 151.39588726611382
Iteration: 11, Func. Count: 105, Neg. LLF: 151.26928649752418
Iteration: 12, Func. Count: 114, Neg. LLF: 151.24071370246645
Iteration: 13, Func. Count: 123, Neg. LLF: 151.225045028814
Iteration: 14, Func. Count: 132, Neg. LLF: 151.21033553687266
Iteration: 15, Func. Count: 141, Neg. LLF: 151.20743316190095
Iteration: 16, Func. Count: 150, Neg. LLF: 151.20686174539625
Iteration: 17, Func. Count: 159, Neg. LLF: 151.2064987259939
Iteration: 18, Func. Count: 168, Neg. LLF: 151.2063336908144
Iteration: 19, Func. Count: 177, Neg. LLF: 151.20630561892216
Iteration: 20, Func. Count: 186, Neg. LLF: 151.20630368313925
Iteration: 21, Func. Count: 194, Neg. LLF: 151.2063036990532
Optimization terminated successfully (Exit mode 0)
Current function value: 151.20630368313925
Iterations: 21
Function evaluations: 194
Gradient evaluations: 21
Iteration: 1, Func. Count: 11, Neg. LLF: 153.78583152993673
Iteration: 2, Func. Count: 24, Neg. LLF: 155.06570822044827
Iteration: 3, Func. Count: 36, Neg. LLF: 151.5266800058067
Iteration: 4, Func. Count: 46, Neg. LLF: 151.4728847001389
Iteration: 5, Func. Count: 56, Neg. LLF: 151.4572658164005
Iteration: 6, Func. Count: 66, Neg. LLF: 151.4545465143435
Iteration: 7, Func. Count: 76, Neg. LLF: 151.4534296508419
Iteration: 8, Func. Count: 86, Neg. LLF: 151.4524753071494
Iteration: 9, Func. Count: 96, Neg. LLF: 151.45220503111722
Iteration: 10, Func. Count: 106, Neg. LLF: 151.45208597148624
Iteration: 11, Func. Count: 116, Neg. LLF: 151.45188670162497
Iteration: 12, Func. Count: 126, Neg. LLF: 151.45141482218344
Iteration: 13, Func. Count: 136, Neg. LLF: 151.45000774378653
Iteration: 14, Func. Count: 146, Neg. LLF: 151.4441741403086
Iteration: 15, Func. Count: 156, Neg. LLF: 151.4341164032736
Iteration: 16, Func. Count: 166, Neg. LLF: 151.41047245246196
Iteration: 17, Func. Count: 176, Neg. LLF: 151.3658064667063
Iteration: 18, Func. Count: 186, Neg. LLF: 151.28302267978052
Iteration: 19, Func. Count: 196, Neg. LLF: 151.22999294523441
Iteration: 20, Func. Count: 206, Neg. LLF: 151.21615461208938
Iteration: 21, Func. Count: 216, Neg. LLF: 151.20868993882436
Iteration: 22, Func. Count: 226, Neg. LLF: 151.2065314367531
Iteration: 23, Func. Count: 236, Neg. LLF: 151.2063433393562
Iteration: 24, Func. Count: 246, Neg. LLF: 151.20631687304223
Iteration: 25, Func. Count: 256, Neg. LLF: 151.2063056016229
Iteration: 26, Func. Count: 266, Neg. LLF: 151.20630378433793
Iteration: 27, Func. Count: 275, Neg. LLF: 151.20630379821452
Optimization terminated successfully (Exit mode 0)
Current function value: 151.20630378433793
Iterations: 27
Function evaluations: 275
Gradient evaluations: 27
Iteration: 1, Func. Count: 12, Neg. LLF: 153.79750371363255
Iteration: 2, Func. Count: 26, Neg. LLF: 155.19037635374076
Iteration: 3, Func. Count: 38, Neg. LLF: 151.50009043874644
Iteration: 4, Func. Count: 49, Neg. LLF: 151.4900735700667
Iteration: 5, Func. Count: 60, Neg. LLF: 151.48790983529054
Iteration: 6, Func. Count: 71, Neg. LLF: 151.48766791774636
Iteration: 7, Func. Count: 82, Neg. LLF: 151.48649766743839
Iteration: 8, Func. Count: 93, Neg. LLF: 151.48407487561303
Iteration: 9, Func. Count: 104, Neg. LLF: 151.4712759877793
Iteration: 10, Func. Count: 115, Neg. LLF: 151.4169948294719
Iteration: 11, Func. Count: 126, Neg. LLF: 151.41037730428246
Iteration: 12, Func. Count: 137, Neg. LLF: 151.36101772225163
Iteration: 13, Func. Count: 148, Neg. LLF: 151.25885425439407
Iteration: 14, Func. Count: 159, Neg. LLF: 151.2561741962522
Iteration: 15, Func. Count: 170, Neg. LLF: 151.24336542787645
Iteration: 16, Func. Count: 181, Neg. LLF: 151.24413012899691
Iteration: 17, Func. Count: 193, Neg. LLF: 151.22388201820095
Iteration: 18, Func. Count: 204, Neg. LLF: 151.22275659027804
Iteration: 19, Func. Count: 215, Neg. LLF: 151.2215583498349
Iteration: 20, Func. Count: 226, Neg. LLF: 151.21816876230042
Iteration: 21, Func. Count: 237, Neg. LLF: 151.21026860979458
Iteration: 22, Func. Count: 248, Neg. LLF: 151.20757024447497
Iteration: 23, Func. Count: 259, Neg. LLF: 151.20642040087031
Iteration: 24, Func. Count: 270, Neg. LLF: 151.20676208564538
Iteration: 25, Func. Count: 282, Neg. LLF: 151.20637538454667
Iteration: 26, Func. Count: 293, Neg. LLF: 151.20636568938755
Iteration: 27, Func. Count: 304, Neg. LLF: 151.20634705195332
Iteration: 28, Func. Count: 315, Neg. LLF: 151.2063230127589
Iteration: 29, Func. Count: 326, Neg. LLF: 151.20630760094792
Iteration: 30, Func. Count: 337, Neg. LLF: 151.20630390817354
Iteration: 31, Func. Count: 347, Neg. LLF: 151.20630393217337
Optimization terminated successfully (Exit mode 0)
Current function value: 151.20630390817354
Iterations: 32
Function evaluations: 347
Gradient evaluations: 31
Iteration: 1, Func. Count: 13, Neg. LLF: 153.80115994066313
Iteration: 2, Func. Count: 28, Neg. LLF: 155.05365883275437
Iteration: 3, Func. Count: 41, Neg. LLF: 151.14707844723594
Iteration: 4, Func. Count: 53, Neg. LLF: 151.11417765164535
Iteration: 5, Func. Count: 65, Neg. LLF: 151.09149180874618
Iteration: 6, Func. Count: 77, Neg. LLF: 151.0513617640364
Iteration: 7, Func. Count: 89, Neg. LLF: 151.03568172046536
Iteration: 8, Func. Count: 101, Neg. LLF: 151.03222152885502
Iteration: 9, Func. Count: 113, Neg. LLF: 151.0309002567306
Iteration: 10, Func. Count: 125, Neg. LLF: 151.0266252278925
Iteration: 11, Func. Count: 137, Neg. LLF: 151.01937349554706
Iteration: 12, Func. Count: 149, Neg. LLF: 151.00973521585703
Iteration: 13, Func. Count: 161, Neg. LLF: 151.00091874927685
Iteration: 14, Func. Count: 173, Neg. LLF: 150.99625799390563
Iteration: 15, Func. Count: 185, Neg. LLF: 150.99623947134174
Iteration: 16, Func. Count: 197, Neg. LLF: 150.9962386005794
Optimization terminated successfully (Exit mode 0)
Current function value: 150.9962386005794
Iterations: 16
Function evaluations: 197
Gradient evaluations: 16
Iteration: 1, Func. Count: 6, Neg. LLF: 156.64103583644007
Iteration: 2, Func. Count: 12, Neg. LLF: 154.88189604223285
Iteration: 3, Func. Count: 17, Neg. LLF: 153.35790187310127
Iteration: 4, Func. Count: 22, Neg. LLF: 152.1066417968543
Iteration: 5, Func. Count: 27, Neg. LLF: 151.80249711368126
Iteration: 6, Func. Count: 32, Neg. LLF: 151.6391282725523
Iteration: 7, Func. Count: 37, Neg. LLF: 151.62674438668913
Iteration: 8, Func. Count: 42, Neg. LLF: 151.6262455987648
Iteration: 9, Func. Count: 47, Neg. LLF: 151.62623929710477
Iteration: 10, Func. Count: 51, Neg. LLF: 151.6262393854539
Optimization terminated successfully (Exit mode 0)
Current function value: 151.62623929710477
Iterations: 10
Function evaluations: 51
Gradient evaluations: 10
Iteration: 1, Func. Count: 7, Neg. LLF: 154.62427063519416
Iteration: 2, Func. Count: 15, Neg. LLF: 151.6255701764542
Iteration: 3, Func. Count: 21, Neg. LLF: 151.6255674601019
Iteration: 4, Func. Count: 28, Neg. LLF: 151.62533979593127
Iteration: 5, Func. Count: 34, Neg. LLF: 151.62530450470922
Iteration: 6, Func. Count: 40, Neg. LLF: 151.62530315596456
Iteration: 7, Func. Count: 46, Neg. LLF: 151.62529601313196
Iteration: 8, Func. Count: 52, Neg. LLF: 151.6252599657087
Iteration: 9, Func. Count: 58, Neg. LLF: 151.62507332463807
Iteration: 10, Func. Count: 64, Neg. LLF: 151.6239520062515
Iteration: 11, Func. Count: 70, Neg. LLF: 151.6102133117875
Iteration: 12, Func. Count: 76, Neg. LLF: 151.916484314149
Iteration: 13, Func. Count: 83, Neg. LLF: 151.86153594971503
Iteration: 14, Func. Count: 90, Neg. LLF: 151.9759467992263
Iteration: 15, Func. Count: 97, Neg. LLF: 151.6060466099124
Iteration: 16, Func. Count: 104, Neg. LLF: 151.60502354395635
Iteration: 17, Func. Count: 110, Neg. LLF: 151.6050209825819
Iteration: 18, Func. Count: 115, Neg. LLF: 151.60502098235716
Optimization terminated successfully (Exit mode 0)
Current function value: 151.6050209825819
Iterations: 18
Function evaluations: 115
Gradient evaluations: 18
Iteration: 1, Func. Count: 8, Neg. LLF: 151.66661566761138
Iteration: 2, Func. Count: 15, Neg. LLF: 151.62304899464948
Iteration: 3, Func. Count: 22, Neg. LLF: 151.63116006721987
Iteration: 4, Func. Count: 30, Neg. LLF: 151.62119915133297
Iteration: 5, Func. Count: 37, Neg. LLF: 151.62118562668925
Iteration: 6, Func. Count: 44, Neg. LLF: 151.6211326770059
Iteration: 7, Func. Count: 51, Neg. LLF: 151.62108315456723
Iteration: 8, Func. Count: 58, Neg. LLF: 151.6210780571787
Iteration: 9, Func. Count: 65, Neg. LLF: 151.62104665483136
Iteration: 10, Func. Count: 72, Neg. LLF: 151.6209585705467
Iteration: 11, Func. Count: 79, Neg. LLF: 151.62076396778164
Iteration: 12, Func. Count: 86, Neg. LLF: 151.62002700646417
Iteration: 13, Func. Count: 93, Neg. LLF: 151.6193205334398
Iteration: 14, Func. Count: 100, Neg. LLF: 151.61526333828473
Iteration: 15, Func. Count: 107, Neg. LLF: 152.00436208458024
Iteration: 16, Func. Count: 115, Neg. LLF: 151.8547578720732
Iteration: 17, Func. Count: 123, Neg. LLF: 151.61426919726722
Iteration: 18, Func. Count: 131, Neg. LLF: 152.17073293801548
Iteration: 19, Func. Count: 139, Neg. LLF: 151.63159194207716
Iteration: 20, Func. Count: 147, Neg. LLF: 151.6066478484149
Iteration: 21, Func. Count: 154, Neg. LLF: 151.60565446660488
Iteration: 22, Func. Count: 161, Neg. LLF: 151.60592609179642
Iteration: 23, Func. Count: 169, Neg. LLF: 151.6050501550756
Iteration: 24, Func. Count: 176, Neg. LLF: 151.60502238981167
Iteration: 25, Func. Count: 183, Neg. LLF: 151.60502149244127
Optimization terminated successfully (Exit mode 0)
Current function value: 151.60502149244127
Iterations: 25
Function evaluations: 183
Gradient evaluations: 25
Iteration: 1, Func. Count: 9, Neg. LLF: 159.4883756658812
Iteration: 2, Func. Count: 19, Neg. LLF: 151.61194190500228
Iteration: 3, Func. Count: 27, Neg. LLF: 151.60481596161753
Iteration: 4, Func. Count: 35, Neg. LLF: 151.5958346876299
Iteration: 5, Func. Count: 43, Neg. LLF: 151.59461758147376
Iteration: 6, Func. Count: 51, Neg. LLF: 151.593777589341
Iteration: 7, Func. Count: 59, Neg. LLF: 151.5937703994949
Iteration: 8, Func. Count: 67, Neg. LLF: 151.59373446749515
Iteration: 9, Func. Count: 75, Neg. LLF: 151.5935564340806
Iteration: 10, Func. Count: 83, Neg. LLF: 151.59270305308058
Iteration: 11, Func. Count: 91, Neg. LLF: 151.58956250276412
Iteration: 12, Func. Count: 99, Neg. LLF: 151.58921633286786
Iteration: 13, Func. Count: 107, Neg. LLF: 151.5886739840442
Iteration: 14, Func. Count: 115, Neg. LLF: 151.58862460974478
Iteration: 15, Func. Count: 123, Neg. LLF: 151.58861996048742
Iteration: 16, Func. Count: 130, Neg. LLF: 151.5886199604887
Optimization terminated successfully (Exit mode 0)
Current function value: 151.58861996048742
Iterations: 16
Function evaluations: 130
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 159.5029806289779
Iteration: 2, Func. Count: 21, Neg. LLF: 151.6089447461168
Iteration: 3, Func. Count: 30, Neg. LLF: 151.60262402499873
Iteration: 4, Func. Count: 39, Neg. LLF: 151.60098856899916
Iteration: 5, Func. Count: 48, Neg. LLF: 151.60036601490265
Iteration: 6, Func. Count: 57, Neg. LLF: 151.5997375527772
Iteration: 7, Func. Count: 66, Neg. LLF: 151.59815837871858
Iteration: 8, Func. Count: 75, Neg. LLF: 151.59543087638852
Iteration: 9, Func. Count: 84, Neg. LLF: 151.59494165612014
Iteration: 10, Func. Count: 93, Neg. LLF: 151.59368935650542
Iteration: 11, Func. Count: 102, Neg. LLF: 151.59364260009633
Iteration: 12, Func. Count: 111, Neg. LLF: 151.5936333793691
Iteration: 13, Func. Count: 120, Neg. LLF: 151.59358201446815
Iteration: 14, Func. Count: 129, Neg. LLF: 151.5934833629191
Iteration: 15, Func. Count: 138, Neg. LLF: 151.59319724139849
Iteration: 16, Func. Count: 147, Neg. LLF: 151.59254052159253
Iteration: 17, Func. Count: 156, Neg. LLF: 151.59112328521786
Iteration: 18, Func. Count: 165, Neg. LLF: 151.58936753048542
Iteration: 19, Func. Count: 174, Neg. LLF: 151.5887337198556
Iteration: 20, Func. Count: 183, Neg. LLF: 151.5886271767167
Iteration: 21, Func. Count: 192, Neg. LLF: 151.58862006594694
Iteration: 22, Func. Count: 200, Neg. LLF: 151.58862006663628
Optimization terminated successfully (Exit mode 0)
Current function value: 151.58862006594694
Iterations: 22
Function evaluations: 200
Gradient evaluations: 22
Iteration: 1, Func. Count: 7, Neg. LLF: 156.85580486540263
Iteration: 2, Func. Count: 14, Neg. LLF: 154.8938956426755
Iteration: 3, Func. Count: 21, Neg. LLF: 165.6509718618921
Iteration: 4, Func. Count: 28, Neg. LLF: 153.37420529851548
Iteration: 5, Func. Count: 34, Neg. LLF: 152.20886162310677
Iteration: 6, Func. Count: 40, Neg. LLF: 151.693757566957
Iteration: 7, Func. Count: 46, Neg. LLF: 151.6324123249556
Iteration: 8, Func. Count: 52, Neg. LLF: 151.62648170187003
Iteration: 9, Func. Count: 58, Neg. LLF: 151.62629033253054
Iteration: 10, Func. Count: 64, Neg. LLF: 151.62624316905465
Iteration: 11, Func. Count: 70, Neg. LLF: 151.62623899238199
Iteration: 12, Func. Count: 75, Neg. LLF: 151.62623896564452
Optimization terminated successfully (Exit mode 0)
Current function value: 151.62623899238199
Iterations: 12
Function evaluations: 75
Gradient evaluations: 12
Iteration: 1, Func. Count: 8, Neg. LLF: 163.50446053386653
Iteration: 2, Func. Count: 17, Neg. LLF: 151.62556249037763
Iteration: 3, Func. Count: 24, Neg. LLF: 151.6255016508713
Iteration: 4, Func. Count: 32, Neg. LLF: 151.62533056915476
Iteration: 5, Func. Count: 39, Neg. LLF: 151.62530832011745
Iteration: 6, Func. Count: 46, Neg. LLF: 151.62530702683753
Iteration: 7, Func. Count: 53, Neg. LLF: 151.6252999539066
Iteration: 8, Func. Count: 60, Neg. LLF: 151.62526422410386
Iteration: 9, Func. Count: 67, Neg. LLF: 151.62507867455284
Iteration: 10, Func. Count: 74, Neg. LLF: 151.62396383319165
Iteration: 11, Func. Count: 81, Neg. LLF: 151.61033679258122
Iteration: 12, Func. Count: 88, Neg. LLF: 151.94494868295965
Iteration: 13, Func. Count: 96, Neg. LLF: 151.78552010510697
Iteration: 14, Func. Count: 104, Neg. LLF: 151.99034978421153
Iteration: 15, Func. Count: 112, Neg. LLF: 151.60620709995644
Iteration: 16, Func. Count: 120, Neg. LLF: 151.6050233921701
Iteration: 17, Func. Count: 127, Neg. LLF: 151.60502096973678
Iteration: 18, Func. Count: 133, Neg. LLF: 151.60502096949887
Optimization terminated successfully (Exit mode 0)
Current function value: 151.60502096973678
Iterations: 18
Function evaluations: 133
Gradient evaluations: 18
Iteration: 1, Func. Count: 9, Neg. LLF: 154.87111320535277
Iteration: 2, Func. Count: 19, Neg. LLF: 151.6214274742383
Iteration: 3, Func. Count: 27, Neg. LLF: 151.62141520292406
Iteration: 4, Func. Count: 36, Neg. LLF: 151.6211667006164
Iteration: 5, Func. Count: 44, Neg. LLF: 151.62115796518907
Iteration: 6, Func. Count: 52, Neg. LLF: 151.62111096777247
Iteration: 7, Func. Count: 60, Neg. LLF: 151.62106108355007
Iteration: 8, Func. Count: 68, Neg. LLF: 151.62102159473037
Iteration: 9, Func. Count: 76, Neg. LLF: 151.62100576628794
Iteration: 10, Func. Count: 84, Neg. LLF: 151.62099053924732
Iteration: 11, Func. Count: 92, Neg. LLF: 151.62095673948733
Iteration: 12, Func. Count: 100, Neg. LLF: 151.62087516910324
Iteration: 13, Func. Count: 108, Neg. LLF: 151.62066317979654
Iteration: 14, Func. Count: 116, Neg. LLF: 151.62011568124174
Iteration: 15, Func. Count: 124, Neg. LLF: 151.61893409539687
Iteration: 16, Func. Count: 132, Neg. LLF: 151.61683471788893
Iteration: 17, Func. Count: 140, Neg. LLF: 151.6160656879978
Iteration: 18, Func. Count: 149, Neg. LLF: 151.62043764783542
Iteration: 19, Func. Count: 158, Neg. LLF: 151.60665157721377
Iteration: 20, Func. Count: 166, Neg. LLF: 151.60608844687118
Iteration: 21, Func. Count: 174, Neg. LLF: 151.60573849317916
Iteration: 22, Func. Count: 182, Neg. LLF: 151.6051355936568
Iteration: 23, Func. Count: 190, Neg. LLF: 151.60505477389512
Iteration: 24, Func. Count: 198, Neg. LLF: 151.60502300469204
Iteration: 25, Func. Count: 206, Neg. LLF: 151.6050210775316
Iteration: 26, Func. Count: 213, Neg. LLF: 151.60502107753297
Optimization terminated successfully (Exit mode 0)
Current function value: 151.6050210775316
Iterations: 26
Function evaluations: 213
Gradient evaluations: 26
Iteration: 1, Func. Count: 10, Neg. LLF: 159.47083920420513
Iteration: 2, Func. Count: 21, Neg. LLF: 151.61344434283595
Iteration: 3, Func. Count: 30, Neg. LLF: 151.61111321847062
Iteration: 4, Func. Count: 39, Neg. LLF: 151.60598474484786
Iteration: 5, Func. Count: 48, Neg. LLF: 151.60184805406493
Iteration: 6, Func. Count: 57, Neg. LLF: 151.59532726070657
Iteration: 7, Func. Count: 66, Neg. LLF: 151.59446422724056
Iteration: 8, Func. Count: 75, Neg. LLF: 151.5941265036395
Iteration: 9, Func. Count: 84, Neg. LLF: 151.59384898657999
Iteration: 10, Func. Count: 93, Neg. LLF: 151.59376646803858
Iteration: 11, Func. Count: 102, Neg. LLF: 151.59374962825783
Iteration: 12, Func. Count: 111, Neg. LLF: 151.59373510514214
Iteration: 13, Func. Count: 120, Neg. LLF: 151.593690433357
Iteration: 14, Func. Count: 129, Neg. LLF: 151.59358598486838
Iteration: 15, Func. Count: 138, Neg. LLF: 151.59330583170814
Iteration: 16, Func. Count: 147, Neg. LLF: 151.59265467822397
Iteration: 17, Func. Count: 156, Neg. LLF: 151.59123368926475
Iteration: 18, Func. Count: 165, Neg. LLF: 151.58953060512954
Iteration: 19, Func. Count: 174, Neg. LLF: 151.5888107190549
Iteration: 20, Func. Count: 183, Neg. LLF: 151.58862706349058
Iteration: 21, Func. Count: 192, Neg. LLF: 151.5886206032119
Iteration: 22, Func. Count: 201, Neg. LLF: 151.58861971784629
Optimization terminated successfully (Exit mode 0)
Current function value: 151.58861971784629
Iterations: 22
Function evaluations: 201
Gradient evaluations: 22
Iteration: 1, Func. Count: 11, Neg. LLF: 159.485683929745
Iteration: 2, Func. Count: 23, Neg. LLF: 151.61061830619525
Iteration: 3, Func. Count: 33, Neg. LLF: 151.60772287402438
Iteration: 4, Func. Count: 43, Neg. LLF: 151.60413235470276
Iteration: 5, Func. Count: 53, Neg. LLF: 151.60103229913477
Iteration: 6, Func. Count: 63, Neg. LLF: 151.60075289774022
Iteration: 7, Func. Count: 73, Neg. LLF: 151.59938944793723
Iteration: 8, Func. Count: 83, Neg. LLF: 151.5946629033783
Iteration: 9, Func. Count: 93, Neg. LLF: 151.59415095407485
Iteration: 10, Func. Count: 103, Neg. LLF: 151.59364841244522
Iteration: 11, Func. Count: 113, Neg. LLF: 151.59364087990974
Iteration: 12, Func. Count: 123, Neg. LLF: 151.5935977731352
Iteration: 13, Func. Count: 133, Neg. LLF: 151.59338013457435
Iteration: 14, Func. Count: 143, Neg. LLF: 151.59234628000237
Iteration: 15, Func. Count: 153, Neg. LLF: 151.58900866157902
Iteration: 16, Func. Count: 163, Neg. LLF: 151.58874986577385
Iteration: 17, Func. Count: 173, Neg. LLF: 151.5886277055237
Iteration: 18, Func. Count: 183, Neg. LLF: 151.58862007152953
Iteration: 19, Func. Count: 192, Neg. LLF: 151.58862007224954
Optimization terminated successfully (Exit mode 0)
Current function value: 151.58862007152953
Iterations: 19
Function evaluations: 192
Gradient evaluations: 19
Iteration: 1, Func. Count: 8, Neg. LLF: 156.94076374770324
Iteration: 2, Func. Count: 16, Neg. LLF: 155.18866660903504
Iteration: 3, Func. Count: 24, Neg. LLF: 154.16673360069055
Iteration: 4, Func. Count: 31, Neg. LLF: 153.65735125036855
Iteration: 5, Func. Count: 38, Neg. LLF: 151.9303472389729
Iteration: 6, Func. Count: 45, Neg. LLF: 151.646038549054
Iteration: 7, Func. Count: 52, Neg. LLF: 151.6298500292231
Iteration: 8, Func. Count: 59, Neg. LLF: 151.62636946860897
Iteration: 9, Func. Count: 66, Neg. LLF: 151.62627968397405
Iteration: 10, Func. Count: 73, Neg. LLF: 151.62623899984447
Iteration: 11, Func. Count: 79, Neg. LLF: 151.62623896986753
Optimization terminated successfully (Exit mode 0)
Current function value: 151.62623899984447
Iterations: 11
Function evaluations: 79
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 161.59486207727645
Iteration: 2, Func. Count: 19, Neg. LLF: 151.62538541396736
Iteration: 3, Func. Count: 27, Neg. LLF: 151.6254026332556
Iteration: 4, Func. Count: 36, Neg. LLF: 151.62531016502925
Iteration: 5, Func. Count: 44, Neg. LLF: 151.62530268652532
Iteration: 6, Func. Count: 52, Neg. LLF: 151.62529851973892
Iteration: 7, Func. Count: 60, Neg. LLF: 151.62529334144446
Iteration: 8, Func. Count: 68, Neg. LLF: 151.6252733070494
Iteration: 9, Func. Count: 76, Neg. LLF: 151.62522890346128
Iteration: 10, Func. Count: 84, Neg. LLF: 151.62509051794166
Iteration: 11, Func. Count: 92, Neg. LLF: 151.62473616872373
Iteration: 12, Func. Count: 100, Neg. LLF: 151.62378552470554
Iteration: 13, Func. Count: 108, Neg. LLF: 151.62223381254242
Iteration: 14, Func. Count: 116, Neg. LLF: 151.61649872052834
Iteration: 15, Func. Count: 124, Neg. LLF: 151.61240487642505
Iteration: 16, Func. Count: 133, Neg. LLF: 151.6052678357434
Iteration: 17, Func. Count: 141, Neg. LLF: 151.60519560547297
Iteration: 18, Func. Count: 149, Neg. LLF: 151.6050244120742
Iteration: 19, Func. Count: 157, Neg. LLF: 151.60502105567213
Iteration: 20, Func. Count: 164, Neg. LLF: 151.60502105563384
Optimization terminated successfully (Exit mode 0)
Current function value: 151.60502105567213
Iterations: 20
Function evaluations: 164
Gradient evaluations: 20
Iteration: 1, Func. Count: 10, Neg. LLF: 155.94829287676296
Iteration: 2, Func. Count: 21, Neg. LLF: 151.62137893923
Iteration: 3, Func. Count: 30, Neg. LLF: 151.6213852960468
Iteration: 4, Func. Count: 40, Neg. LLF: 151.62128180908164
Iteration: 5, Func. Count: 49, Neg. LLF: 151.62120505298356
Iteration: 6, Func. Count: 58, Neg. LLF: 151.62113755129545
Iteration: 7, Func. Count: 67, Neg. LLF: 151.6211052481162
Iteration: 8, Func. Count: 76, Neg. LLF: 151.6210379765788
Iteration: 9, Func. Count: 85, Neg. LLF: 151.6210071085894
Iteration: 10, Func. Count: 94, Neg. LLF: 151.6209928867648
Iteration: 11, Func. Count: 103, Neg. LLF: 151.62098345772296
Iteration: 12, Func. Count: 112, Neg. LLF: 151.6209673882546
Iteration: 13, Func. Count: 121, Neg. LLF: 151.62092543155944
Iteration: 14, Func. Count: 130, Neg. LLF: 151.6208123072532
Iteration: 15, Func. Count: 139, Neg. LLF: 151.62050428189357
Iteration: 16, Func. Count: 148, Neg. LLF: 151.61961390930972
Iteration: 17, Func. Count: 157, Neg. LLF: 151.6178423773538
Iteration: 18, Func. Count: 166, Neg. LLF: 151.61355760672726
Iteration: 19, Func. Count: 175, Neg. LLF: 151.67822384224448
Iteration: 20, Func. Count: 185, Neg. LLF: 151.67862678357727
Iteration: 21, Func. Count: 195, Neg. LLF: 151.62937659913948
Iteration: 22, Func. Count: 205, Neg. LLF: 151.62783672915097
Iteration: 23, Func. Count: 215, Neg. LLF: 151.60908634604303
Iteration: 24, Func. Count: 225, Neg. LLF: 151.60538077415796
Iteration: 25, Func. Count: 234, Neg. LLF: 151.60521856889514
Iteration: 26, Func. Count: 243, Neg. LLF: 151.6050298661686
Iteration: 27, Func. Count: 252, Neg. LLF: 151.60502217590243
Iteration: 28, Func. Count: 261, Neg. LLF: 151.60502085540162
Iteration: 29, Func. Count: 269, Neg. LLF: 151.60502085554438
Optimization terminated successfully (Exit mode 0)
Current function value: 151.60502085540162
Iterations: 29
Function evaluations: 269
Gradient evaluations: 29
Iteration: 1, Func. Count: 11, Neg. LLF: 159.4692328601435
Iteration: 2, Func. Count: 23, Neg. LLF: 151.61280931426163
Iteration: 3, Func. Count: 33, Neg. LLF: 151.6109473763383
Iteration: 4, Func. Count: 43, Neg. LLF: 151.60375698692235
Iteration: 5, Func. Count: 53, Neg. LLF: 151.5968003246079
Iteration: 6, Func. Count: 63, Neg. LLF: 151.59475507532056
Iteration: 7, Func. Count: 73, Neg. LLF: 151.5936682791956
Iteration: 8, Func. Count: 83, Neg. LLF: 151.5936567126217
Iteration: 9, Func. Count: 93, Neg. LLF: 151.59363282850376
Iteration: 10, Func. Count: 103, Neg. LLF: 151.59360201577147
Iteration: 11, Func. Count: 113, Neg. LLF: 151.59350225880016
Iteration: 12, Func. Count: 123, Neg. LLF: 151.59326964329662
Iteration: 13, Func. Count: 133, Neg. LLF: 151.59267849237014
Iteration: 14, Func. Count: 143, Neg. LLF: 151.59143622470285
Iteration: 15, Func. Count: 153, Neg. LLF: 151.58976564799764
Iteration: 16, Func. Count: 163, Neg. LLF: 151.58892286498994
Iteration: 17, Func. Count: 173, Neg. LLF: 151.58863166004747
Iteration: 18, Func. Count: 183, Neg. LLF: 151.588619879955
Iteration: 19, Func. Count: 192, Neg. LLF: 151.58861987988877
Optimization terminated successfully (Exit mode 0)
Current function value: 151.588619879955
Iterations: 19
Function evaluations: 192
Gradient evaluations: 19
Iteration: 1, Func. Count: 12, Neg. LLF: 159.48403540902092
Iteration: 2, Func. Count: 25, Neg. LLF: 151.6101846512373
Iteration: 3, Func. Count: 36, Neg. LLF: 151.60561700254297
Iteration: 4, Func. Count: 47, Neg. LLF: 151.601419578826
Iteration: 5, Func. Count: 58, Neg. LLF: 151.60100361214725
Iteration: 6, Func. Count: 69, Neg. LLF: 151.6006296122086
Iteration: 7, Func. Count: 80, Neg. LLF: 151.60019748769693
Iteration: 8, Func. Count: 91, Neg. LLF: 151.5984968189662
Iteration: 9, Func. Count: 102, Neg. LLF: 151.5955433897466
Iteration: 10, Func. Count: 113, Neg. LLF: 151.5951083420555
Iteration: 11, Func. Count: 124, Neg. LLF: 151.5938235507801
Iteration: 12, Func. Count: 135, Neg. LLF: 151.5936451165641
Iteration: 13, Func. Count: 146, Neg. LLF: 151.59362925417796
Iteration: 14, Func. Count: 157, Neg. LLF: 151.5936129997442
Iteration: 15, Func. Count: 168, Neg. LLF: 151.59358162124119
Iteration: 16, Func. Count: 179, Neg. LLF: 151.59349178523485
Iteration: 17, Func. Count: 190, Neg. LLF: 151.59327240627246
Iteration: 18, Func. Count: 201, Neg. LLF: 151.5927276987345
Iteration: 19, Func. Count: 212, Neg. LLF: 151.59152917278473
Iteration: 20, Func. Count: 223, Neg. LLF: 151.58988854975527
Iteration: 21, Func. Count: 234, Neg. LLF: 151.5889978516041
Iteration: 22, Func. Count: 245, Neg. LLF: 151.58863038066985
Iteration: 23, Func. Count: 256, Neg. LLF: 151.5886200313447
Iteration: 24, Func. Count: 266, Neg. LLF: 151.58862003207526
Optimization terminated successfully (Exit mode 0)
Current function value: 151.5886200313447
Iterations: 24
Function evaluations: 266
Gradient evaluations: 24
Iteration: 1, Func. Count: 9, Neg. LLF: 154.09666254827945
Iteration: 2, Func. Count: 18, Neg. LLF: 154.9605167936906
Iteration: 3, Func. Count: 27, Neg. LLF: 152.93927543617104
Iteration: 4, Func. Count: 36, Neg. LLF: 153.32776291448408
Iteration: 5, Func. Count: 45, Neg. LLF: 152.31953829874487
Iteration: 6, Func. Count: 53, Neg. LLF: 152.3361146056894
Iteration: 7, Func. Count: 62, Neg. LLF: 151.97633934605233
Iteration: 8, Func. Count: 70, Neg. LLF: 151.33284030557084
Iteration: 9, Func. Count: 78, Neg. LLF: 151.22623798054968
Iteration: 10, Func. Count: 86, Neg. LLF: 151.20663966235813
Iteration: 11, Func. Count: 94, Neg. LLF: 151.2063482998405
Iteration: 12, Func. Count: 102, Neg. LLF: 151.206315884727
Iteration: 13, Func. Count: 110, Neg. LLF: 151.20630570894406
Iteration: 14, Func. Count: 118, Neg. LLF: 151.2063040969554
Iteration: 15, Func. Count: 125, Neg. LLF: 151.2063040969656
Optimization terminated successfully (Exit mode 0)
Current function value: 151.2063040969554
Iterations: 15
Function evaluations: 125
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 154.01676435823578
Iteration: 2, Func. Count: 22, Neg. LLF: 154.6858368695664
Iteration: 3, Func. Count: 33, Neg. LLF: 151.5809317364743
Iteration: 4, Func. Count: 42, Neg. LLF: 151.57687441804944
Iteration: 5, Func. Count: 51, Neg. LLF: 151.57564112953216
Iteration: 6, Func. Count: 60, Neg. LLF: 151.5733927557913
Iteration: 7, Func. Count: 69, Neg. LLF: 151.5661811116524
Iteration: 8, Func. Count: 78, Neg. LLF: 151.5395359759054
Iteration: 9, Func. Count: 87, Neg. LLF: 151.44147860855597
Iteration: 10, Func. Count: 96, Neg. LLF: 151.39558449576973
Iteration: 11, Func. Count: 105, Neg. LLF: 151.27660779064647
Iteration: 12, Func. Count: 114, Neg. LLF: 151.25161310599765
Iteration: 13, Func. Count: 123, Neg. LLF: 151.22705883151104
Iteration: 14, Func. Count: 132, Neg. LLF: 151.21045631868063
Iteration: 15, Func. Count: 141, Neg. LLF: 151.2069053950138
Iteration: 16, Func. Count: 150, Neg. LLF: 151.2065395978784
Iteration: 17, Func. Count: 159, Neg. LLF: 151.2063769972601
Iteration: 18, Func. Count: 168, Neg. LLF: 151.20631153971584
Iteration: 19, Func. Count: 177, Neg. LLF: 151.20630406986172
Iteration: 20, Func. Count: 185, Neg. LLF: 151.2063040857977
Optimization terminated successfully (Exit mode 0)
Current function value: 151.20630406986172
Iterations: 20
Function evaluations: 185
Gradient evaluations: 20
Iteration: 1, Func. Count: 11, Neg. LLF: 153.70559142753896
Iteration: 2, Func. Count: 24, Neg. LLF: 155.0558700542695
Iteration: 3, Func. Count: 36, Neg. LLF: 151.53282003958233
Iteration: 4, Func. Count: 46, Neg. LLF: 151.47157006725132
Iteration: 5, Func. Count: 56, Neg. LLF: 151.45525471162236
Iteration: 6, Func. Count: 66, Neg. LLF: 151.45373159594007
Iteration: 7, Func. Count: 76, Neg. LLF: 151.45311568915113
Iteration: 8, Func. Count: 86, Neg. LLF: 151.45258498319296
Iteration: 9, Func. Count: 96, Neg. LLF: 151.4523772448927
Iteration: 10, Func. Count: 106, Neg. LLF: 151.45224838689344
Iteration: 11, Func. Count: 116, Neg. LLF: 151.45200264911588
Iteration: 12, Func. Count: 126, Neg. LLF: 151.4513831827012
Iteration: 13, Func. Count: 136, Neg. LLF: 151.44940095357202
Iteration: 14, Func. Count: 146, Neg. LLF: 151.4372438310161
Iteration: 15, Func. Count: 156, Neg. LLF: 151.39944200323345
Iteration: 16, Func. Count: 166, Neg. LLF: 151.3583258544242
Iteration: 17, Func. Count: 176, Neg. LLF: 151.2430549720721
Iteration: 18, Func. Count: 186, Neg. LLF: 151.21999523282363
Iteration: 19, Func. Count: 196, Neg. LLF: 151.21147980166845
Iteration: 20, Func. Count: 206, Neg. LLF: 151.20686879850697
Iteration: 21, Func. Count: 216, Neg. LLF: 151.2064162953057
Iteration: 22, Func. Count: 226, Neg. LLF: 151.2063570421054
Iteration: 23, Func. Count: 236, Neg. LLF: 151.2063141244104
Iteration: 24, Func. Count: 246, Neg. LLF: 151.2063046090062
Iteration: 25, Func. Count: 256, Neg. LLF: 151.20630365848984
Optimization terminated successfully (Exit mode 0)
Current function value: 151.20630365848984
Iterations: 25
Function evaluations: 256
Gradient evaluations: 25
Iteration: 1, Func. Count: 12, Neg. LLF: 153.7895900562347
Iteration: 2, Func. Count: 26, Neg. LLF: 155.19774449019616
Iteration: 3, Func. Count: 38, Neg. LLF: 151.5074232108464
Iteration: 4, Func. Count: 49, Neg. LLF: 151.49019146444033
Iteration: 5, Func. Count: 60, Neg. LLF: 151.48791251349883
Iteration: 6, Func. Count: 71, Neg. LLF: 151.48767358153898
Iteration: 7, Func. Count: 82, Neg. LLF: 151.48644643864105
Iteration: 8, Func. Count: 93, Neg. LLF: 151.48390167785058
Iteration: 9, Func. Count: 104, Neg. LLF: 151.4639830855394
Iteration: 10, Func. Count: 115, Neg. LLF: 151.42117341505138
Iteration: 11, Func. Count: 126, Neg. LLF: 151.41807768545513
Iteration: 12, Func. Count: 137, Neg. LLF: 151.4039365073408
Iteration: 13, Func. Count: 148, Neg. LLF: 151.28198527983344
Iteration: 14, Func. Count: 159, Neg. LLF: 151.25776290654358
Iteration: 15, Func. Count: 170, Neg. LLF: 151.24883334853703
Iteration: 16, Func. Count: 181, Neg. LLF: 151.39207421470252
Iteration: 17, Func. Count: 193, Neg. LLF: 151.22945558311082
Iteration: 18, Func. Count: 204, Neg. LLF: 151.22627658258236
Iteration: 19, Func. Count: 215, Neg. LLF: 151.22201393430328
Iteration: 20, Func. Count: 226, Neg. LLF: 151.2124551878691
Iteration: 21, Func. Count: 237, Neg. LLF: 151.20755979923993
Iteration: 22, Func. Count: 248, Neg. LLF: 151.20637599448904
Iteration: 23, Func. Count: 259, Neg. LLF: 151.20630642351853
Iteration: 24, Func. Count: 270, Neg. LLF: 151.2063037627043
Iteration: 25, Func. Count: 280, Neg. LLF: 151.20630378668628
Optimization terminated successfully (Exit mode 0)
Current function value: 151.2063037627043
Iterations: 26
Function evaluations: 280
Gradient evaluations: 25
Iteration: 1, Func. Count: 13, Neg. LLF: 153.79302949234528
Iteration: 2, Func. Count: 28, Neg. LLF: 155.06284958288353
Iteration: 3, Func. Count: 41, Neg. LLF: 151.1631624576547
Iteration: 4, Func. Count: 53, Neg. LLF: 151.12937029703343
Iteration: 5, Func. Count: 65, Neg. LLF: 151.10715180672747
Iteration: 6, Func. Count: 77, Neg. LLF: 151.04425060660927
Iteration: 7, Func. Count: 89, Neg. LLF: 151.05489802130063
Iteration: 8, Func. Count: 102, Neg. LLF: 151.00748638984825
Iteration: 9, Func. Count: 114, Neg. LLF: 151.0026118832
Iteration: 10, Func. Count: 126, Neg. LLF: 150.98294657702618
Iteration: 11, Func. Count: 138, Neg. LLF: 150.96220333505156
Iteration: 12, Func. Count: 150, Neg. LLF: 150.93821797960092
Iteration: 13, Func. Count: 162, Neg. LLF: 150.91635842453888
Iteration: 14, Func. Count: 174, Neg. LLF: 150.87035391911357
Iteration: 15, Func. Count: 186, Neg. LLF: 150.84840342992703
Iteration: 16, Func. Count: 198, Neg. LLF: 150.84348544525395
Iteration: 17, Func. Count: 210, Neg. LLF: 150.84317799265193
Iteration: 18, Func. Count: 222, Neg. LLF: 150.84313510474402
Iteration: 19, Func. Count: 234, Neg. LLF: 150.84313427491708
Optimization terminated successfully (Exit mode 0)
Current function value: 150.84313427491708
Iterations: 19
Function evaluations: 234
Gradient evaluations: 19
Iteration: 1, Func. Count: 10, Neg. LLF: 154.30478728961992
Iteration: 2, Func. Count: 20, Neg. LLF: 155.12564618741226
Iteration: 3, Func. Count: 30, Neg. LLF: 153.01565186790887
Iteration: 4, Func. Count: 40, Neg. LLF: 153.47988898049033
Iteration: 5, Func. Count: 50, Neg. LLF: 152.34696627217374
Iteration: 6, Func. Count: 59, Neg. LLF: 152.60784153729657
Iteration: 7, Func. Count: 69, Neg. LLF: 152.09564291043287
Iteration: 8, Func. Count: 78, Neg. LLF: 151.47863150931485
Iteration: 9, Func. Count: 87, Neg. LLF: 151.23888266736947
Iteration: 10, Func. Count: 96, Neg. LLF: 151.21210649271387
Iteration: 11, Func. Count: 105, Neg. LLF: 151.20849034543284
Iteration: 12, Func. Count: 114, Neg. LLF: 151.20693927559626
Iteration: 13, Func. Count: 123, Neg. LLF: 151.20631920426328
Iteration: 14, Func. Count: 132, Neg. LLF: 151.20630650352513
Iteration: 15, Func. Count: 141, Neg. LLF: 151.206303632484
Iteration: 16, Func. Count: 149, Neg. LLF: 151.20630368094808
Optimization terminated successfully (Exit mode 0)
Current function value: 151.206303632484
Iterations: 16
Function evaluations: 149
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 153.93622197530954
Iteration: 2, Func. Count: 24, Neg. LLF: 154.72496297155098
Iteration: 3, Func. Count: 36, Neg. LLF: 151.5819456882729
Iteration: 4, Func. Count: 46, Neg. LLF: 151.57688514279857
Iteration: 5, Func. Count: 56, Neg. LLF: 151.57559265039868
Iteration: 6, Func. Count: 66, Neg. LLF: 151.57370474274902
Iteration: 7, Func. Count: 76, Neg. LLF: 151.5669706837117
Iteration: 8, Func. Count: 86, Neg. LLF: 151.54312065545395
Iteration: 9, Func. Count: 96, Neg. LLF: 151.44078901324036
Iteration: 10, Func. Count: 106, Neg. LLF: 151.39730793900034
Iteration: 11, Func. Count: 116, Neg. LLF: 151.28310385503798
Iteration: 12, Func. Count: 126, Neg. LLF: 151.25646999503795
Iteration: 13, Func. Count: 136, Neg. LLF: 151.2274402523879
Iteration: 14, Func. Count: 146, Neg. LLF: 151.21018702929365
Iteration: 15, Func. Count: 156, Neg. LLF: 151.20685164695644
Iteration: 16, Func. Count: 166, Neg. LLF: 151.2065309275512
Iteration: 17, Func. Count: 176, Neg. LLF: 151.20637346683026
Iteration: 18, Func. Count: 186, Neg. LLF: 151.2063116280537
Iteration: 19, Func. Count: 196, Neg. LLF: 151.20630409019137
Iteration: 20, Func. Count: 205, Neg. LLF: 151.20630410612424
Optimization terminated successfully (Exit mode 0)
Current function value: 151.20630409019137
Iterations: 20
Function evaluations: 205
Gradient evaluations: 20
Iteration: 1, Func. Count: 12, Neg. LLF: 153.77777946725047
Iteration: 2, Func. Count: 26, Neg. LLF: 155.07508100765133
Iteration: 3, Func. Count: 39, Neg. LLF: 151.5339444520067
Iteration: 4, Func. Count: 50, Neg. LLF: 151.4713043929384
Iteration: 5, Func. Count: 61, Neg. LLF: 151.45516182513853
Iteration: 6, Func. Count: 72, Neg. LLF: 151.45387814366893
Iteration: 7, Func. Count: 83, Neg. LLF: 151.45313960283823
Iteration: 8, Func. Count: 94, Neg. LLF: 151.45258153013407
Iteration: 9, Func. Count: 105, Neg. LLF: 151.4523749856848
Iteration: 10, Func. Count: 116, Neg. LLF: 151.4522498602139
Iteration: 11, Func. Count: 127, Neg. LLF: 151.45199867137586
Iteration: 12, Func. Count: 138, Neg. LLF: 151.45137628993325
Iteration: 13, Func. Count: 149, Neg. LLF: 151.44931699367072
Iteration: 14, Func. Count: 160, Neg. LLF: 151.43537704734976
Iteration: 15, Func. Count: 171, Neg. LLF: 151.3890085721032
Iteration: 16, Func. Count: 182, Neg. LLF: 151.35026953441405
Iteration: 17, Func. Count: 193, Neg. LLF: 151.23949286261723
Iteration: 18, Func. Count: 204, Neg. LLF: 151.21702131178424
Iteration: 19, Func. Count: 215, Neg. LLF: 151.210049607855
Iteration: 20, Func. Count: 226, Neg. LLF: 151.2067023073426
Iteration: 21, Func. Count: 237, Neg. LLF: 151.20640922602286
Iteration: 22, Func. Count: 248, Neg. LLF: 151.20635957968366
Iteration: 23, Func. Count: 259, Neg. LLF: 151.20631409263467
Iteration: 24, Func. Count: 270, Neg. LLF: 151.20630463020012
Iteration: 25, Func. Count: 281, Neg. LLF: 151.20630365492184
Optimization terminated successfully (Exit mode 0)
Current function value: 151.20630365492184
Iterations: 25
Function evaluations: 281
Gradient evaluations: 25
Iteration: 1, Func. Count: 13, Neg. LLF: 153.78886931805303
Iteration: 2, Func. Count: 28, Neg. LLF: 155.20009587134837
Iteration: 3, Func. Count: 41, Neg. LLF: 151.5097338553074
Iteration: 4, Func. Count: 53, Neg. LLF: 151.4903122135334
Iteration: 5, Func. Count: 65, Neg. LLF: 151.48791757920418
Iteration: 6, Func. Count: 77, Neg. LLF: 151.48767959594718
Iteration: 7, Func. Count: 89, Neg. LLF: 151.4864139227004
Iteration: 8, Func. Count: 101, Neg. LLF: 151.48389828790826
Iteration: 9, Func. Count: 113, Neg. LLF: 151.4641668445501
Iteration: 10, Func. Count: 125, Neg. LLF: 151.41936608348968
Iteration: 11, Func. Count: 137, Neg. LLF: 151.41606887499069
Iteration: 12, Func. Count: 149, Neg. LLF: 151.39909396427876
Iteration: 13, Func. Count: 161, Neg. LLF: 151.27541840338677
Iteration: 14, Func. Count: 173, Neg. LLF: 151.25621003898488
Iteration: 15, Func. Count: 185, Neg. LLF: 151.25624662140228
Iteration: 16, Func. Count: 198, Neg. LLF: 151.29973250478426
Iteration: 17, Func. Count: 211, Neg. LLF: 151.24465431095908
Iteration: 18, Func. Count: 223, Neg. LLF: 151.22361699164355
Iteration: 19, Func. Count: 235, Neg. LLF: 151.20639793090268
Iteration: 20, Func. Count: 247, Neg. LLF: 151.20630451499878
Iteration: 21, Func. Count: 259, Neg. LLF: 151.2063036911021
Optimization terminated successfully (Exit mode 0)
Current function value: 151.2063036911021
Iterations: 22
Function evaluations: 259
Gradient evaluations: 21
Iteration: 1, Func. Count: 14, Neg. LLF: 153.79247592011285
Iteration: 2, Func. Count: 30, Neg. LLF: 155.0667350213113
Iteration: 3, Func. Count: 44, Neg. LLF: 151.1673962558874
Iteration: 4, Func. Count: 57, Neg. LLF: 151.13516950985797
Iteration: 5, Func. Count: 70, Neg. LLF: 151.11350200465233
Iteration: 6, Func. Count: 83, Neg. LLF: 151.04832018523365
Iteration: 7, Func. Count: 96, Neg. LLF: 151.08413357682971
Iteration: 8, Func. Count: 110, Neg. LLF: 151.0081075940039
Iteration: 9, Func. Count: 123, Neg. LLF: 151.00179703630056
Iteration: 10, Func. Count: 136, Neg. LLF: 150.9921644436459
Iteration: 11, Func. Count: 149, Neg. LLF: 150.9745975877175
Iteration: 12, Func. Count: 162, Neg. LLF: 150.9472524326805
Iteration: 13, Func. Count: 175, Neg. LLF: 150.92332641796602
Iteration: 14, Func. Count: 188, Neg. LLF: 150.8901464556407
Iteration: 15, Func. Count: 201, Neg. LLF: 150.85883137050513
Iteration: 16, Func. Count: 214, Neg. LLF: 150.84746476266534
Iteration: 17, Func. Count: 227, Neg. LLF: 150.84325391849293
Iteration: 18, Func. Count: 240, Neg. LLF: 150.84314645244544
Iteration: 19, Func. Count: 253, Neg. LLF: 150.84313603068222
Iteration: 20, Func. Count: 266, Neg. LLF: 150.8431342686431
Iteration: 21, Func. Count: 278, Neg. LLF: 150.84313426864676
Optimization terminated successfully (Exit mode 0)
Current function value: 150.8431342686431
Iterations: 21
Function evaluations: 278
Gradient evaluations: 21
Iteration: 1, Func. Count: 7, Neg. LLF: 155.83389147251353
Iteration: 2, Func. Count: 14, Neg. LLF: 156.60732061256172
Iteration: 3, Func. Count: 21, Neg. LLF: 154.22308451348053
Iteration: 4, Func. Count: 27, Neg. LLF: 153.62629010368855
Iteration: 5, Func. Count: 33, Neg. LLF: 153.11015741908534
Iteration: 6, Func. Count: 39, Neg. LLF: 152.31958945269898
Iteration: 7, Func. Count: 45, Neg. LLF: 151.76443091626246
Iteration: 8, Func. Count: 51, Neg. LLF: 151.6344431305817
Iteration: 9, Func. Count: 57, Neg. LLF: 151.62636373340726
Iteration: 10, Func. Count: 63, Neg. LLF: 151.62624102514926
Iteration: 11, Func. Count: 69, Neg. LLF: 151.6262391214765
Iteration: 12, Func. Count: 74, Neg. LLF: 151.62623916895834
Optimization terminated successfully (Exit mode 0)
Current function value: 151.6262391214765
Iterations: 12
Function evaluations: 74
Gradient evaluations: 12
Iteration: 1, Func. Count: 8, Neg. LLF: 154.4963365999593
Iteration: 2, Func. Count: 17, Neg. LLF: 151.6254570937442
Iteration: 3, Func. Count: 24, Neg. LLF: 151.6254792765292
Iteration: 4, Func. Count: 32, Neg. LLF: 151.6253172432768
Iteration: 5, Func. Count: 39, Neg. LLF: 151.62530156871776
Iteration: 6, Func. Count: 46, Neg. LLF: 151.62530010302984
Iteration: 7, Func. Count: 53, Neg. LLF: 151.62529173407728
Iteration: 8, Func. Count: 60, Neg. LLF: 151.62524891469437
Iteration: 9, Func. Count: 67, Neg. LLF: 151.6250243067045
Iteration: 10, Func. Count: 74, Neg. LLF: 151.62362338785874
Iteration: 11, Func. Count: 81, Neg. LLF: 151.60738500884278
Iteration: 12, Func. Count: 88, Neg. LLF: 151.61604492546263
Iteration: 13, Func. Count: 96, Neg. LLF: 151.6557869549771
Iteration: 14, Func. Count: 104, Neg. LLF: 151.6050249409203
Iteration: 15, Func. Count: 111, Neg. LLF: 151.60502094533103
Iteration: 16, Func. Count: 117, Neg. LLF: 151.60502094527885
Optimization terminated successfully (Exit mode 0)
Current function value: 151.60502094533103
Iterations: 16
Function evaluations: 117
Gradient evaluations: 16
Iteration: 1, Func. Count: 9, Neg. LLF: 151.85359101464795
Iteration: 2, Func. Count: 18, Neg. LLF: 151.6214142120496
Iteration: 3, Func. Count: 26, Neg. LLF: 151.62154455922527
Iteration: 4, Func. Count: 35, Neg. LLF: 151.62116976539764
Iteration: 5, Func. Count: 43, Neg. LLF: 151.6211556659556
Iteration: 6, Func. Count: 51, Neg. LLF: 151.62110645294828
Iteration: 7, Func. Count: 59, Neg. LLF: 151.62107489232386
Iteration: 8, Func. Count: 67, Neg. LLF: 151.62105371945702
Iteration: 9, Func. Count: 75, Neg. LLF: 151.62104356460097
Iteration: 10, Func. Count: 83, Neg. LLF: 151.62102578431117
Iteration: 11, Func. Count: 91, Neg. LLF: 151.62097891932746
Iteration: 12, Func. Count: 99, Neg. LLF: 151.62085690304107
Iteration: 13, Func. Count: 107, Neg. LLF: 151.620528689251
Iteration: 14, Func. Count: 115, Neg. LLF: 151.61966790858963
Iteration: 15, Func. Count: 123, Neg. LLF: 151.61732794361947
Iteration: 16, Func. Count: 131, Neg. LLF: 151.61360979621506
Iteration: 17, Func. Count: 139, Neg. LLF: 151.9452802951098
Iteration: 18, Func. Count: 148, Neg. LLF: 151.60852423285738
Iteration: 19, Func. Count: 156, Neg. LLF: 151.60790495288745
Iteration: 20, Func. Count: 164, Neg. LLF: 151.6070070757649
Iteration: 21, Func. Count: 172, Neg. LLF: 151.60601223247187
Iteration: 22, Func. Count: 180, Neg. LLF: 151.60556413858538
Iteration: 23, Func. Count: 188, Neg. LLF: 151.60505938768114
Iteration: 24, Func. Count: 196, Neg. LLF: 151.60504055587532
Iteration: 25, Func. Count: 204, Neg. LLF: 151.60502198521147
Iteration: 26, Func. Count: 212, Neg. LLF: 151.60502084828684
Iteration: 27, Func. Count: 219, Neg. LLF: 151.60502084839388
Optimization terminated successfully (Exit mode 0)
Current function value: 151.60502084828684
Iterations: 27
Function evaluations: 219
Gradient evaluations: 27
Iteration: 1, Func. Count: 10, Neg. LLF: 159.49193920050513
Iteration: 2, Func. Count: 21, Neg. LLF: 151.61141238290506
Iteration: 3, Func. Count: 30, Neg. LLF: 151.60500233100584
Iteration: 4, Func. Count: 39, Neg. LLF: 151.59466955531704
Iteration: 5, Func. Count: 48, Neg. LLF: 151.59390331789868
Iteration: 6, Func. Count: 57, Neg. LLF: 151.5937697233799
Iteration: 7, Func. Count: 66, Neg. LLF: 151.5937621936953
Iteration: 8, Func. Count: 75, Neg. LLF: 151.59372114376848
Iteration: 9, Func. Count: 84, Neg. LLF: 151.59351709906645
Iteration: 10, Func. Count: 93, Neg. LLF: 151.59254674189907
Iteration: 11, Func. Count: 102, Neg. LLF: 151.5892239811658
Iteration: 12, Func. Count: 111, Neg. LLF: 151.58886823575259
Iteration: 13, Func. Count: 120, Neg. LLF: 151.58864171102152
Iteration: 14, Func. Count: 129, Neg. LLF: 151.5886225200913
Iteration: 15, Func. Count: 138, Neg. LLF: 151.58861975963654
Iteration: 16, Func. Count: 146, Neg. LLF: 151.58861975964265
Optimization terminated successfully (Exit mode 0)
Current function value: 151.58861975963654
Iterations: 16
Function evaluations: 146
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 159.50589027144758
Iteration: 2, Func. Count: 23, Neg. LLF: 151.60826737579242
Iteration: 3, Func. Count: 33, Neg. LLF: 151.60207075334077
Iteration: 4, Func. Count: 43, Neg. LLF: 151.60055287898598
Iteration: 5, Func. Count: 53, Neg. LLF: 151.60006686615827
Iteration: 6, Func. Count: 63, Neg. LLF: 151.598966201733
Iteration: 7, Func. Count: 73, Neg. LLF: 151.59608260601308
Iteration: 8, Func. Count: 83, Neg. LLF: 151.59488761262804
Iteration: 9, Func. Count: 93, Neg. LLF: 151.59366621592207
Iteration: 10, Func. Count: 103, Neg. LLF: 151.59365876570814
Iteration: 11, Func. Count: 113, Neg. LLF: 151.5936175562685
Iteration: 12, Func. Count: 123, Neg. LLF: 151.5934111634777
Iteration: 13, Func. Count: 133, Neg. LLF: 151.5924296559422
Iteration: 14, Func. Count: 143, Neg. LLF: 151.58913669306258
Iteration: 15, Func. Count: 153, Neg. LLF: 151.58883182558924
Iteration: 16, Func. Count: 163, Neg. LLF: 151.58863207918412
Iteration: 17, Func. Count: 173, Neg. LLF: 151.5886202613418
Iteration: 18, Func. Count: 183, Neg. LLF: 151.58861972905933
Optimization terminated successfully (Exit mode 0)
Current function value: 151.58861972905933
Iterations: 18
Function evaluations: 183
Gradient evaluations: 18
Iteration: 1, Func. Count: 8, Neg. LLF: 155.95718517932698
Iteration: 2, Func. Count: 16, Neg. LLF: 156.4693297512406
Iteration: 3, Func. Count: 24, Neg. LLF: 154.03580161038505
Iteration: 4, Func. Count: 31, Neg. LLF: 154.32361584362582
Iteration: 5, Func. Count: 39, Neg. LLF: 153.48435043406263
Iteration: 6, Func. Count: 46, Neg. LLF: 152.5191310440629
Iteration: 7, Func. Count: 53, Neg. LLF: 151.7411604952626
Iteration: 8, Func. Count: 60, Neg. LLF: 151.65376434271826
Iteration: 9, Func. Count: 67, Neg. LLF: 151.62687613234505
Iteration: 10, Func. Count: 74, Neg. LLF: 151.62624374872783
Iteration: 11, Func. Count: 81, Neg. LLF: 151.62623904581042
Iteration: 12, Func. Count: 87, Neg. LLF: 151.62623907254942
Optimization terminated successfully (Exit mode 0)
Current function value: 151.62623904581042
Iterations: 12
Function evaluations: 87
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 163.1497347382874
Iteration: 2, Func. Count: 19, Neg. LLF: 151.6254587681662
Iteration: 3, Func. Count: 27, Neg. LLF: 151.6254453944259
Iteration: 4, Func. Count: 36, Neg. LLF: 151.62531783666356
Iteration: 5, Func. Count: 44, Neg. LLF: 151.62530441445608
Iteration: 6, Func. Count: 52, Neg. LLF: 151.62530293837887
Iteration: 7, Func. Count: 60, Neg. LLF: 151.62529433997278
Iteration: 8, Func. Count: 68, Neg. LLF: 151.62524986394752
Iteration: 9, Func. Count: 76, Neg. LLF: 151.625016350589
Iteration: 10, Func. Count: 84, Neg. LLF: 151.6235472299684
Iteration: 11, Func. Count: 92, Neg. LLF: 151.6086975114212
Iteration: 12, Func. Count: 100, Neg. LLF: 151.6193364552874
Iteration: 13, Func. Count: 110, Neg. LLF: 151.6833425198245
Iteration: 14, Func. Count: 119, Neg. LLF: 151.6050682477765
Iteration: 15, Func. Count: 127, Neg. LLF: 151.60502157746404
Iteration: 16, Func. Count: 135, Neg. LLF: 151.6050208270989
Optimization terminated successfully (Exit mode 0)
Current function value: 151.6050208270989
Iterations: 16
Function evaluations: 135
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 153.7329102806534
Iteration: 2, Func. Count: 21, Neg. LLF: 151.62129500743447
Iteration: 3, Func. Count: 30, Neg. LLF: 151.6213146256581
Iteration: 4, Func. Count: 40, Neg. LLF: 151.62114081119842
Iteration: 5, Func. Count: 49, Neg. LLF: 151.62113513505082
Iteration: 6, Func. Count: 58, Neg. LLF: 151.62110833487256
Iteration: 7, Func. Count: 67, Neg. LLF: 151.6210201460479
Iteration: 8, Func. Count: 76, Neg. LLF: 151.62097154971914
Iteration: 9, Func. Count: 85, Neg. LLF: 151.62095297664925
Iteration: 10, Func. Count: 94, Neg. LLF: 151.62087666530235
Iteration: 11, Func. Count: 103, Neg. LLF: 151.62069527857176
Iteration: 12, Func. Count: 112, Neg. LLF: 151.62020599565358
Iteration: 13, Func. Count: 121, Neg. LLF: 151.6197211279359
Iteration: 14, Func. Count: 130, Neg. LLF: 151.61690771246253
Iteration: 15, Func. Count: 139, Neg. LLF: 151.70680936946826
Iteration: 16, Func. Count: 149, Neg. LLF: 151.91588357977471
Iteration: 17, Func. Count: 159, Neg. LLF: 151.79321490028448
Iteration: 18, Func. Count: 169, Neg. LLF: 151.6154143366745
Iteration: 19, Func. Count: 179, Neg. LLF: 151.6230806238437
Iteration: 20, Func. Count: 189, Neg. LLF: 151.61763615870672
Iteration: 21, Func. Count: 199, Neg. LLF: 151.7769464287568
Iteration: 22, Func. Count: 209, Neg. LLF: 151.61393306263
Iteration: 23, Func. Count: 219, Neg. LLF: 151.6139516291161
Iteration: 24, Func. Count: 229, Neg. LLF: 151.60661143200247
Iteration: 25, Func. Count: 238, Neg. LLF: 151.60527638131418
Iteration: 26, Func. Count: 247, Neg. LLF: 151.60506212570385
Iteration: 27, Func. Count: 256, Neg. LLF: 151.6050232624973
Iteration: 28, Func. Count: 265, Neg. LLF: 151.6050208553706
Iteration: 29, Func. Count: 273, Neg. LLF: 151.60502085548225
Optimization terminated successfully (Exit mode 0)
Current function value: 151.6050208553706
Iterations: 29
Function evaluations: 273
Gradient evaluations: 29
Iteration: 1, Func. Count: 11, Neg. LLF: 159.47424040727546
Iteration: 2, Func. Count: 23, Neg. LLF: 151.6129169588018
Iteration: 3, Func. Count: 33, Neg. LLF: 151.6104569775479
Iteration: 4, Func. Count: 43, Neg. LLF: 151.60451393756966
Iteration: 5, Func. Count: 53, Neg. LLF: 151.59393864160066
Iteration: 6, Func. Count: 63, Neg. LLF: 151.5937953366704
Iteration: 7, Func. Count: 73, Neg. LLF: 151.59377042705202
Iteration: 8, Func. Count: 83, Neg. LLF: 151.59375879313552
Iteration: 9, Func. Count: 93, Neg. LLF: 151.5937238060427
Iteration: 10, Func. Count: 103, Neg. LLF: 151.5936410557947
Iteration: 11, Func. Count: 113, Neg. LLF: 151.59342040843586
Iteration: 12, Func. Count: 123, Neg. LLF: 151.59289824965927
Iteration: 13, Func. Count: 133, Neg. LLF: 151.5918515414422
Iteration: 14, Func. Count: 143, Neg. LLF: 151.5904123838874
Iteration: 15, Func. Count: 153, Neg. LLF: 151.58911155383703
Iteration: 16, Func. Count: 163, Neg. LLF: 151.5886307138396
Iteration: 17, Func. Count: 173, Neg. LLF: 151.5886198464311
Iteration: 18, Func. Count: 182, Neg. LLF: 151.588619846341
Optimization terminated successfully (Exit mode 0)
Current function value: 151.5886198464311
Iterations: 18
Function evaluations: 182
Gradient evaluations: 18
Iteration: 1, Func. Count: 12, Neg. LLF: 159.48850754829897
Iteration: 2, Func. Count: 25, Neg. LLF: 151.60997415466719
Iteration: 3, Func. Count: 36, Neg. LLF: 151.60693882941086
Iteration: 4, Func. Count: 47, Neg. LLF: 151.60379731324787
Iteration: 5, Func. Count: 58, Neg. LLF: 151.600509297709
Iteration: 6, Func. Count: 69, Neg. LLF: 151.6001952520262
Iteration: 7, Func. Count: 80, Neg. LLF: 151.59859359805844
Iteration: 8, Func. Count: 91, Neg. LLF: 151.59425826729787
Iteration: 9, Func. Count: 102, Neg. LLF: 151.59393022901287
Iteration: 10, Func. Count: 113, Neg. LLF: 151.59365972001237
Iteration: 11, Func. Count: 124, Neg. LLF: 151.59365217749738
Iteration: 12, Func. Count: 135, Neg. LLF: 151.5936110098635
Iteration: 13, Func. Count: 146, Neg. LLF: 151.5934062674743
Iteration: 14, Func. Count: 157, Neg. LLF: 151.5924343683519
Iteration: 15, Func. Count: 168, Neg. LLF: 151.5891556058833
Iteration: 16, Func. Count: 179, Neg. LLF: 151.5888326374245
Iteration: 17, Func. Count: 190, Neg. LLF: 151.5886367007745
Iteration: 18, Func. Count: 201, Neg. LLF: 151.58862149568876
Iteration: 19, Func. Count: 212, Neg. LLF: 151.58861975455378
Iteration: 20, Func. Count: 222, Neg. LLF: 151.58861975537374
Optimization terminated successfully (Exit mode 0)
Current function value: 151.58861975455378
Iterations: 20
Function evaluations: 222
Gradient evaluations: 20
Iteration: 1, Func. Count: 9, Neg. LLF: 155.93037685527244
Iteration: 2, Func. Count: 18, Neg. LLF: 156.45049667674613
Iteration: 3, Func. Count: 27, Neg. LLF: 154.0474983711152
Iteration: 4, Func. Count: 35, Neg. LLF: 154.2140309640704
Iteration: 5, Func. Count: 44, Neg. LLF: 153.4034863833812
Iteration: 6, Func. Count: 52, Neg. LLF: 152.1746351919685
Iteration: 7, Func. Count: 60, Neg. LLF: 151.79782286585933
Iteration: 8, Func. Count: 68, Neg. LLF: 151.63482792558582
Iteration: 9, Func. Count: 76, Neg. LLF: 151.6272097694942
Iteration: 10, Func. Count: 84, Neg. LLF: 151.6262984958659
Iteration: 11, Func. Count: 92, Neg. LLF: 151.62624085820164
Iteration: 12, Func. Count: 100, Neg. LLF: 151.6262388989063
Iteration: 13, Func. Count: 107, Neg. LLF: 151.6262389288838
Optimization terminated successfully (Exit mode 0)
Current function value: 151.6262388989063
Iterations: 13
Function evaluations: 107
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 161.36469838880282
Iteration: 2, Func. Count: 21, Neg. LLF: 151.6253337363117
Iteration: 3, Func. Count: 30, Neg. LLF: 151.6253437941997
Iteration: 4, Func. Count: 40, Neg. LLF: 151.6253066974325
Iteration: 5, Func. Count: 49, Neg. LLF: 151.62530039206095
Iteration: 6, Func. Count: 58, Neg. LLF: 151.6252803157417
Iteration: 7, Func. Count: 67, Neg. LLF: 151.62526655855504
Iteration: 8, Func. Count: 76, Neg. LLF: 151.62522460523977
Iteration: 9, Func. Count: 85, Neg. LLF: 151.62511630264882
Iteration: 10, Func. Count: 94, Neg. LLF: 151.6248093170579
Iteration: 11, Func. Count: 103, Neg. LLF: 151.62400344841168
Iteration: 12, Func. Count: 112, Neg. LLF: 151.6221615669811
Iteration: 13, Func. Count: 121, Neg. LLF: 151.64404173984266
Iteration: 14, Func. Count: 131, Neg. LLF: 151.70603855776946
Iteration: 15, Func. Count: 141, Neg. LLF: 151.73519687621538
Iteration: 16, Func. Count: 151, Neg. LLF: 151.74816823537785
Iteration: 17, Func. Count: 161, Neg. LLF: 151.71978747066717
Iteration: 18, Func. Count: 171, Neg. LLF: 210.17295730883666
Iteration: 19, Func. Count: 182, Neg. LLF: 151.8630907077242
Iteration: 20, Func. Count: 192, Neg. LLF: 151.6547623917696
Iteration: 21, Func. Count: 202, Neg. LLF: 151.60578519473466
Iteration: 22, Func. Count: 211, Neg. LLF: 151.60607961919882
Iteration: 23, Func. Count: 221, Neg. LLF: 151.60502176901645
Iteration: 24, Func. Count: 230, Neg. LLF: 151.60502093249852
Optimization terminated successfully (Exit mode 0)
Current function value: 151.60502093249852
Iterations: 24
Function evaluations: 230
Gradient evaluations: 24
Iteration: 1, Func. Count: 11, Neg. LLF: 154.51459818132074
Iteration: 2, Func. Count: 23, Neg. LLF: 151.62126820702636
Iteration: 3, Func. Count: 33, Neg. LLF: 151.62126175683935
Iteration: 4, Func. Count: 44, Neg. LLF: 151.62123105113872
Iteration: 5, Func. Count: 54, Neg. LLF: 151.6211537246568
Iteration: 6, Func. Count: 64, Neg. LLF: 151.62104687315133
Iteration: 7, Func. Count: 74, Neg. LLF: 151.62103299025267
Iteration: 8, Func. Count: 84, Neg. LLF: 151.6210245740245
Iteration: 9, Func. Count: 94, Neg. LLF: 151.62101052395997
Iteration: 10, Func. Count: 104, Neg. LLF: 151.62097398926755
Iteration: 11, Func. Count: 114, Neg. LLF: 151.62088310896954
Iteration: 12, Func. Count: 124, Neg. LLF: 151.62063690725498
Iteration: 13, Func. Count: 134, Neg. LLF: 151.62001945412402
Iteration: 14, Func. Count: 144, Neg. LLF: 151.6187656595968
Iteration: 15, Func. Count: 154, Neg. LLF: 151.61641335198155
Iteration: 16, Func. Count: 164, Neg. LLF: 151.62954444071318
Iteration: 17, Func. Count: 175, Neg. LLF: 151.61748479077738
Iteration: 18, Func. Count: 186, Neg. LLF: 151.60707510476524
Iteration: 19, Func. Count: 196, Neg. LLF: 151.60602193797737
Iteration: 20, Func. Count: 206, Neg. LLF: 151.60548577092396
Iteration: 21, Func. Count: 216, Neg. LLF: 151.60503776306388
Iteration: 22, Func. Count: 226, Neg. LLF: 151.6050286801771
Iteration: 23, Func. Count: 236, Neg. LLF: 151.60502087236702
Iteration: 24, Func. Count: 245, Neg. LLF: 151.6050208724755
Optimization terminated successfully (Exit mode 0)
Current function value: 151.60502087236702
Iterations: 24
Function evaluations: 245
Gradient evaluations: 24
Iteration: 1, Func. Count: 12, Neg. LLF: 159.47280601184536
Iteration: 2, Func. Count: 25, Neg. LLF: 151.6122852455085
Iteration: 3, Func. Count: 36, Neg. LLF: 151.60795376271545
Iteration: 4, Func. Count: 47, Neg. LLF: 151.59421778074395
Iteration: 5, Func. Count: 58, Neg. LLF: 151.5938365652337
Iteration: 6, Func. Count: 69, Neg. LLF: 151.59376506348448
Iteration: 7, Func. Count: 80, Neg. LLF: 151.59375723480196
Iteration: 8, Func. Count: 91, Neg. LLF: 151.59371205018647
Iteration: 9, Func. Count: 102, Neg. LLF: 151.5934802415241
Iteration: 10, Func. Count: 113, Neg. LLF: 151.59236878524888
Iteration: 11, Func. Count: 124, Neg. LLF: 151.58951668680376
Iteration: 12, Func. Count: 135, Neg. LLF: 151.5888027897951
Iteration: 13, Func. Count: 146, Neg. LLF: 151.58863514696836
Iteration: 14, Func. Count: 157, Neg. LLF: 151.5886200000379
Iteration: 15, Func. Count: 167, Neg. LLF: 151.58862000013445
Optimization terminated successfully (Exit mode 0)
Current function value: 151.5886200000379
Iterations: 15
Function evaluations: 167
Gradient evaluations: 15
Iteration: 1, Func. Count: 13, Neg. LLF: 159.48692825766906
Iteration: 2, Func. Count: 27, Neg. LLF: 151.60947663568675
Iteration: 3, Func. Count: 39, Neg. LLF: 151.6037403130162
Iteration: 4, Func. Count: 51, Neg. LLF: 151.6007877999632
Iteration: 5, Func. Count: 63, Neg. LLF: 151.60042421239396
Iteration: 6, Func. Count: 75, Neg. LLF: 151.59985269424504
Iteration: 7, Func. Count: 87, Neg. LLF: 151.59808742998314
Iteration: 8, Func. Count: 99, Neg. LLF: 151.59525049171296
Iteration: 9, Func. Count: 111, Neg. LLF: 151.594876700052
Iteration: 10, Func. Count: 123, Neg. LLF: 151.5938260061928
Iteration: 11, Func. Count: 135, Neg. LLF: 151.59366148103277
Iteration: 12, Func. Count: 147, Neg. LLF: 151.5936457222159
Iteration: 13, Func. Count: 159, Neg. LLF: 151.5936249386148
Iteration: 14, Func. Count: 171, Neg. LLF: 151.59360058787524
Iteration: 15, Func. Count: 183, Neg. LLF: 151.59351328051355
Iteration: 16, Func. Count: 195, Neg. LLF: 151.59331077880012
Iteration: 17, Func. Count: 207, Neg. LLF: 151.59280054051231
Iteration: 18, Func. Count: 219, Neg. LLF: 151.59169351947858
Iteration: 19, Func. Count: 231, Neg. LLF: 151.5902298058292
Iteration: 20, Func. Count: 243, Neg. LLF: 151.58919527215647
Iteration: 21, Func. Count: 255, Neg. LLF: 151.5886266143443
Iteration: 22, Func. Count: 267, Neg. LLF: 151.58862104889653
Iteration: 23, Func. Count: 279, Neg. LLF: 151.58861971333596
Iteration: 24, Func. Count: 290, Neg. LLF: 151.5886197141571
Optimization terminated successfully (Exit mode 0)
Current function value: 151.58861971333596
Iterations: 24
Function evaluations: 290
Gradient evaluations: 24
Iteration: 1, Func. Count: 10, Neg. LLF: 154.25329741339016
Iteration: 2, Func. Count: 20, Neg. LLF: 154.56835388312172
Iteration: 3, Func. Count: 30, Neg. LLF: 152.70747385157875
Iteration: 4, Func. Count: 39, Neg. LLF: 153.77338877204105
Iteration: 5, Func. Count: 49, Neg. LLF: 154.6915251044638
Iteration: 6, Func. Count: 59, Neg. LLF: 152.30215198401729
Iteration: 7, Func. Count: 68, Neg. LLF: 152.15705434118718
Iteration: 8, Func. Count: 77, Neg. LLF: 151.9687923705847
Iteration: 9, Func. Count: 86, Neg. LLF: 151.3798318388475
Iteration: 10, Func. Count: 95, Neg. LLF: 151.23919624797327
Iteration: 11, Func. Count: 104, Neg. LLF: 151.21152039734076
Iteration: 12, Func. Count: 113, Neg. LLF: 151.20648695346352
Iteration: 13, Func. Count: 122, Neg. LLF: 151.20631579001054
Iteration: 14, Func. Count: 131, Neg. LLF: 151.20630395047814
Iteration: 15, Func. Count: 139, Neg. LLF: 151.20630395047527
Optimization terminated successfully (Exit mode 0)
Current function value: 151.20630395047814
Iterations: 15
Function evaluations: 139
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 154.19476606734656
Iteration: 2, Func. Count: 24, Neg. LLF: 154.62389967553506
Iteration: 3, Func. Count: 36, Neg. LLF: 151.5800915761555
Iteration: 4, Func. Count: 46, Neg. LLF: 151.57692083511958
Iteration: 5, Func. Count: 56, Neg. LLF: 151.57577615586013
Iteration: 6, Func. Count: 66, Neg. LLF: 151.57284921388788
Iteration: 7, Func. Count: 76, Neg. LLF: 151.5642597165717
Iteration: 8, Func. Count: 86, Neg. LLF: 151.53077886836206
Iteration: 9, Func. Count: 96, Neg. LLF: 151.44069026458462
Iteration: 10, Func. Count: 106, Neg. LLF: 151.38987826462613
Iteration: 11, Func. Count: 116, Neg. LLF: 151.25923246446075
Iteration: 12, Func. Count: 126, Neg. LLF: 151.23737608186426
Iteration: 13, Func. Count: 136, Neg. LLF: 151.22440912784973
Iteration: 14, Func. Count: 146, Neg. LLF: 151.2107875612793
Iteration: 15, Func. Count: 156, Neg. LLF: 151.20732534745466
Iteration: 16, Func. Count: 166, Neg. LLF: 151.20670816288177
Iteration: 17, Func. Count: 176, Neg. LLF: 151.2064280260094
Iteration: 18, Func. Count: 186, Neg. LLF: 151.20631776917614
Iteration: 19, Func. Count: 196, Neg. LLF: 151.20630439977356
Iteration: 20, Func. Count: 206, Neg. LLF: 151.20630364859335
Optimization terminated successfully (Exit mode 0)
Current function value: 151.20630364859335
Iterations: 20
Function evaluations: 206
Gradient evaluations: 20
Iteration: 1, Func. Count: 12, Neg. LLF: 153.55033365198614
Iteration: 2, Func. Count: 26, Neg. LLF: 154.9890355491753
Iteration: 3, Func. Count: 39, Neg. LLF: 151.5280840876699
Iteration: 4, Func. Count: 50, Neg. LLF: 151.47057233661673
Iteration: 5, Func. Count: 61, Neg. LLF: 151.45571807781437
Iteration: 6, Func. Count: 72, Neg. LLF: 151.45326263723103
Iteration: 7, Func. Count: 83, Neg. LLF: 151.45294458214454
Iteration: 8, Func. Count: 94, Neg. LLF: 151.4526610776434
Iteration: 9, Func. Count: 105, Neg. LLF: 151.4524466689381
Iteration: 10, Func. Count: 116, Neg. LLF: 151.45228154827905
Iteration: 11, Func. Count: 127, Neg. LLF: 151.45201500938185
Iteration: 12, Func. Count: 138, Neg. LLF: 151.45134690544214
Iteration: 13, Func. Count: 149, Neg. LLF: 151.4492488675782
Iteration: 14, Func. Count: 160, Neg. LLF: 151.43406516074734
Iteration: 15, Func. Count: 171, Neg. LLF: 151.39758413837683
Iteration: 16, Func. Count: 182, Neg. LLF: 151.34201601987715
Iteration: 17, Func. Count: 193, Neg. LLF: 151.22630948359833
Iteration: 18, Func. Count: 204, Neg. LLF: 151.21689613852277
Iteration: 19, Func. Count: 215, Neg. LLF: 151.20697302288897
Iteration: 20, Func. Count: 226, Neg. LLF: 151.20632072874082
Iteration: 21, Func. Count: 237, Neg. LLF: 151.2063038522575
Iteration: 22, Func. Count: 247, Neg. LLF: 151.2063038661066
Optimization terminated successfully (Exit mode 0)
Current function value: 151.2063038522575
Iterations: 22
Function evaluations: 247
Gradient evaluations: 22
Iteration: 1, Func. Count: 13, Neg. LLF: 153.78886252016142
Iteration: 2, Func. Count: 28, Neg. LLF: 155.1998359089215
Iteration: 3, Func. Count: 41, Neg. LLF: 151.50467981881545
Iteration: 4, Func. Count: 53, Neg. LLF: 151.49062123703766
Iteration: 5, Func. Count: 65, Neg. LLF: 151.48794044577195
Iteration: 6, Func. Count: 77, Neg. LLF: 151.48770976037548
Iteration: 7, Func. Count: 89, Neg. LLF: 151.48632355507175
Iteration: 8, Func. Count: 101, Neg. LLF: 151.4832194740576
Iteration: 9, Func. Count: 113, Neg. LLF: 151.45384121176593
Iteration: 10, Func. Count: 125, Neg. LLF: 151.41819520398286
Iteration: 11, Func. Count: 137, Neg. LLF: 151.4148680826089
Iteration: 12, Func. Count: 149, Neg. LLF: 151.3957385095886
Iteration: 13, Func. Count: 161, Neg. LLF: 151.2780220779956
Iteration: 14, Func. Count: 173, Neg. LLF: 151.26504627250392
Iteration: 15, Func. Count: 185, Neg. LLF: 151.24178745963067
Iteration: 16, Func. Count: 197, Neg. LLF: 151.23002825944022
Iteration: 17, Func. Count: 209, Neg. LLF: 151.2456154902545
Iteration: 18, Func. Count: 222, Neg. LLF: 151.22673881796135
Iteration: 19, Func. Count: 234, Neg. LLF: 151.22800334923855
Iteration: 20, Func. Count: 247, Neg. LLF: 151.30870788992496
Iteration: 21, Func. Count: 260, Neg. LLF: 151.21563383315498
Iteration: 22, Func. Count: 272, Neg. LLF: 151.21379448540867
Iteration: 23, Func. Count: 284, Neg. LLF: 151.2128944727253
Iteration: 24, Func. Count: 296, Neg. LLF: 151.2091497557551
Iteration: 25, Func. Count: 308, Neg. LLF: 151.20705055968344
Iteration: 26, Func. Count: 320, Neg. LLF: 151.20635819549693
Iteration: 27, Func. Count: 332, Neg. LLF: 151.20630546202804
Iteration: 28, Func. Count: 344, Neg. LLF: 151.20630366851307
Iteration: 29, Func. Count: 355, Neg. LLF: 151.20630369251415
Optimization terminated successfully (Exit mode 0)
Current function value: 151.20630366851307
Iterations: 30
Function evaluations: 355
Gradient evaluations: 29
Iteration: 1, Func. Count: 14, Neg. LLF: 153.79322447494224
Iteration: 2, Func. Count: 30, Neg. LLF: 155.05559995253685
Iteration: 3, Func. Count: 44, Neg. LLF: 151.15475810302874
Iteration: 4, Func. Count: 57, Neg. LLF: 151.11903195064545
Iteration: 5, Func. Count: 70, Neg. LLF: 151.09561879829465
Iteration: 6, Func. Count: 83, Neg. LLF: 151.04605766053066
Iteration: 7, Func. Count: 96, Neg. LLF: 151.04577490192472
Iteration: 8, Func. Count: 110, Neg. LLF: 151.00929576959268
Iteration: 9, Func. Count: 123, Neg. LLF: 151.00383154756292
Iteration: 10, Func. Count: 136, Neg. LLF: 150.9840891617191
Iteration: 11, Func. Count: 149, Neg. LLF: 150.96798352837632
Iteration: 12, Func. Count: 162, Neg. LLF: 150.94702395855225
Iteration: 13, Func. Count: 175, Neg. LLF: 150.9231350242746
Iteration: 14, Func. Count: 188, Neg. LLF: 150.88255070594244
Iteration: 15, Func. Count: 201, Neg. LLF: 150.8445387522734
Iteration: 16, Func. Count: 214, Neg. LLF: 150.8432388475778
Iteration: 17, Func. Count: 227, Neg. LLF: 150.84313843182701
Iteration: 18, Func. Count: 240, Neg. LLF: 150.84313433503297
Iteration: 19, Func. Count: 252, Neg. LLF: 150.84313433507756
Optimization terminated successfully (Exit mode 0)
Current function value: 150.84313433503297
Iterations: 19
Function evaluations: 252
Gradient evaluations: 19
Iteration: 1, Func. Count: 11, Neg. LLF: 154.38995795620235
Iteration: 2, Func. Count: 22, Neg. LLF: 154.57292725501642
Iteration: 3, Func. Count: 33, Neg. LLF: 152.57230820923584
Iteration: 4, Func. Count: 43, Neg. LLF: 153.69478067634097
Iteration: 5, Func. Count: 55, Neg. LLF: 152.35553065202177
Iteration: 6, Func. Count: 65, Neg. LLF: 152.28539505227207
Iteration: 7, Func. Count: 75, Neg. LLF: 152.3470554696227
Iteration: 8, Func. Count: 86, Neg. LLF: 152.1048826083493
Iteration: 9, Func. Count: 96, Neg. LLF: 151.7569330035733
Iteration: 10, Func. Count: 106, Neg. LLF: 151.39367422322385
Iteration: 11, Func. Count: 116, Neg. LLF: 151.24792785125652
Iteration: 12, Func. Count: 126, Neg. LLF: 151.21410106191334
Iteration: 13, Func. Count: 136, Neg. LLF: 151.20696360277148
Iteration: 14, Func. Count: 146, Neg. LLF: 151.20630810033316
Iteration: 15, Func. Count: 156, Neg. LLF: 151.20630378417914
Iteration: 16, Func. Count: 165, Neg. LLF: 151.20630383264117
Optimization terminated successfully (Exit mode 0)
Current function value: 151.20630378417914
Iterations: 16
Function evaluations: 165
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 154.08398782238143
Iteration: 2, Func. Count: 26, Neg. LLF: 154.6665742296206
Iteration: 3, Func. Count: 39, Neg. LLF: 151.58083662053593
Iteration: 4, Func. Count: 50, Neg. LLF: 151.57691873848464
Iteration: 5, Func. Count: 61, Neg. LLF: 151.57575983289055
Iteration: 6, Func. Count: 72, Neg. LLF: 151.57327505157232
Iteration: 7, Func. Count: 83, Neg. LLF: 151.5657128181176
Iteration: 8, Func. Count: 94, Neg. LLF: 151.53695103490054
Iteration: 9, Func. Count: 105, Neg. LLF: 151.44193903131526
Iteration: 10, Func. Count: 116, Neg. LLF: 151.39498059536103
Iteration: 11, Func. Count: 127, Neg. LLF: 151.27171465389648
Iteration: 12, Func. Count: 138, Neg. LLF: 151.24639881749184
Iteration: 13, Func. Count: 149, Neg. LLF: 151.2273727045262
Iteration: 14, Func. Count: 160, Neg. LLF: 151.21128731225167
Iteration: 15, Func. Count: 171, Neg. LLF: 151.20742167184653
Iteration: 16, Func. Count: 182, Neg. LLF: 151.20677936239852
Iteration: 17, Func. Count: 193, Neg. LLF: 151.20644999996458
Iteration: 18, Func. Count: 204, Neg. LLF: 151.2063215517125
Iteration: 19, Func. Count: 215, Neg. LLF: 151.2063046639708
Iteration: 20, Func. Count: 226, Neg. LLF: 151.20630365927556
Iteration: 21, Func. Count: 236, Neg. LLF: 151.20630367519183
Optimization terminated successfully (Exit mode 0)
Current function value: 151.20630365927556
Iterations: 21
Function evaluations: 236
Gradient evaluations: 21
Iteration: 1, Func. Count: 13, Neg. LLF: 153.57163951391146
Iteration: 2, Func. Count: 28, Neg. LLF: 155.02206391844146
Iteration: 3, Func. Count: 42, Neg. LLF: 151.52901575006533
Iteration: 4, Func. Count: 54, Neg. LLF: 151.47038917574
Iteration: 5, Func. Count: 66, Neg. LLF: 151.4553957623849
Iteration: 6, Func. Count: 78, Neg. LLF: 151.45351500558263
Iteration: 7, Func. Count: 90, Neg. LLF: 151.45307125254658
Iteration: 8, Func. Count: 102, Neg. LLF: 151.45264334826757
Iteration: 9, Func. Count: 114, Neg. LLF: 151.45242841697228
Iteration: 10, Func. Count: 126, Neg. LLF: 151.45228715541992
Iteration: 11, Func. Count: 138, Neg. LLF: 151.4520474247143
Iteration: 12, Func. Count: 150, Neg. LLF: 151.45144645598523
Iteration: 13, Func. Count: 162, Neg. LLF: 151.44957099894083
Iteration: 14, Func. Count: 174, Neg. LLF: 151.43847129420206
Iteration: 15, Func. Count: 186, Neg. LLF: 151.40331368062027
Iteration: 16, Func. Count: 198, Neg. LLF: 151.36230240096597
Iteration: 17, Func. Count: 210, Neg. LLF: 151.24664363824976
Iteration: 18, Func. Count: 222, Neg. LLF: 151.22182424935443
Iteration: 19, Func. Count: 234, Neg. LLF: 151.2127445264283
Iteration: 20, Func. Count: 246, Neg. LLF: 151.2069767797976
Iteration: 21, Func. Count: 258, Neg. LLF: 151.20640574110132
Iteration: 22, Func. Count: 270, Neg. LLF: 151.20635026388615
Iteration: 23, Func. Count: 282, Neg. LLF: 151.20631546237163
Iteration: 24, Func. Count: 294, Neg. LLF: 151.20630494390838
Iteration: 25, Func. Count: 306, Neg. LLF: 151.20630368066043
Iteration: 26, Func. Count: 317, Neg. LLF: 151.20630369455
Optimization terminated successfully (Exit mode 0)
Current function value: 151.20630368066043
Iterations: 26
Function evaluations: 317
Gradient evaluations: 26
Iteration: 1, Func. Count: 14, Neg. LLF: 153.7881562890294
Iteration: 2, Func. Count: 30, Neg. LLF: 155.20226568166362
Iteration: 3, Func. Count: 44, Neg. LLF: 151.50673308051663
Iteration: 4, Func. Count: 57, Neg. LLF: 151.4907465522636
Iteration: 5, Func. Count: 70, Neg. LLF: 151.4879461704134
Iteration: 6, Func. Count: 83, Neg. LLF: 151.48771459405336
Iteration: 7, Func. Count: 96, Neg. LLF: 151.48635039897349
Iteration: 8, Func. Count: 109, Neg. LLF: 151.4833816597485
Iteration: 9, Func. Count: 122, Neg. LLF: 151.45821948210983
Iteration: 10, Func. Count: 135, Neg. LLF: 151.4172447936343
Iteration: 11, Func. Count: 148, Neg. LLF: 151.41382592949176
Iteration: 12, Func. Count: 161, Neg. LLF: 151.39454274569684
Iteration: 13, Func. Count: 174, Neg. LLF: 151.2769282097981
Iteration: 14, Func. Count: 187, Neg. LLF: 151.26657287650679
Iteration: 15, Func. Count: 200, Neg. LLF: 151.26707298426587
Iteration: 16, Func. Count: 214, Neg. LLF: 151.23733280895908
Iteration: 17, Func. Count: 227, Neg. LLF: 151.29494322292254
Iteration: 18, Func. Count: 241, Neg. LLF: 151.25441859884657
Iteration: 19, Func. Count: 256, Neg. LLF: 151.25335806437903
Iteration: 20, Func. Count: 271, Neg. LLF: 151.3595900333169
Iteration: 21, Func. Count: 285, Neg. LLF: 151.2219537582418
Iteration: 22, Func. Count: 298, Neg. LLF: 151.2200237402556
Iteration: 23, Func. Count: 311, Neg. LLF: 151.21511080982572
Iteration: 24, Func. Count: 324, Neg. LLF: 151.20798427352904
Iteration: 25, Func. Count: 337, Neg. LLF: 151.20647562834728
Iteration: 26, Func. Count: 350, Neg. LLF: 151.20630769699645
Iteration: 27, Func. Count: 363, Neg. LLF: 151.20630369195442
Iteration: 28, Func. Count: 375, Neg. LLF: 151.20630371597906
Optimization terminated successfully (Exit mode 0)
Current function value: 151.20630369195442
Iterations: 29
Function evaluations: 375
Gradient evaluations: 28
Iteration: 1, Func. Count: 15, Neg. LLF: 153.79268680761874
Iteration: 2, Func. Count: 32, Neg. LLF: 155.05944779727827
Iteration: 3, Func. Count: 47, Neg. LLF: 151.15855920896158
Iteration: 4, Func. Count: 61, Neg. LLF: 151.12331199410548
Iteration: 5, Func. Count: 75, Neg. LLF: 151.10038430234812
Iteration: 6, Func. Count: 89, Neg. LLF: 151.04597350705848
Iteration: 7, Func. Count: 103, Neg. LLF: 151.05858142600584
Iteration: 8, Func. Count: 118, Neg. LLF: 151.0090479848102
Iteration: 9, Func. Count: 132, Neg. LLF: 151.00306850928735
Iteration: 10, Func. Count: 146, Neg. LLF: 150.98924824022208
Iteration: 11, Func. Count: 160, Neg. LLF: 150.97272444935538
Iteration: 12, Func. Count: 174, Neg. LLF: 150.94938876624835
Iteration: 13, Func. Count: 188, Neg. LLF: 150.92750125160828
Iteration: 14, Func. Count: 202, Neg. LLF: 150.8931402437676
Iteration: 15, Func. Count: 216, Neg. LLF: 150.85111347074863
Iteration: 16, Func. Count: 230, Neg. LLF: 150.8439304253854
Iteration: 17, Func. Count: 244, Neg. LLF: 150.8432136703063
Iteration: 18, Func. Count: 258, Neg. LLF: 150.8431362775218
Iteration: 19, Func. Count: 272, Neg. LLF: 150.84313472327938
Iteration: 20, Func. Count: 285, Neg. LLF: 150.84313472315333
Optimization terminated successfully (Exit mode 0)
Current function value: 150.84313472327938
Iterations: 20
Function evaluations: 285
Gradient evaluations: 20
Iteration: 1, Func. Count: 8, Neg. LLF: 155.88634272559693
Iteration: 2, Func. Count: 16, Neg. LLF: 156.60281366418212
Iteration: 3, Func. Count: 24, Neg. LLF: 154.18232140321803
Iteration: 4, Func. Count: 31, Neg. LLF: 153.74697340905794
Iteration: 5, Func. Count: 38, Neg. LLF: 153.30405205754113
Iteration: 6, Func. Count: 45, Neg. LLF: 152.65989004907217
Iteration: 7, Func. Count: 52, Neg. LLF: 151.8050359357857
Iteration: 8, Func. Count: 59, Neg. LLF: 151.6603601772133
Iteration: 9, Func. Count: 66, Neg. LLF: 151.62750882118075
Iteration: 10, Func. Count: 73, Neg. LLF: 151.62625136336703
Iteration: 11, Func. Count: 80, Neg. LLF: 151.62623897921122
Iteration: 12, Func. Count: 86, Neg. LLF: 151.62623912131227
Optimization terminated successfully (Exit mode 0)
Current function value: 151.62623897921122
Iterations: 12
Function evaluations: 86
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 155.9200505140178
Iteration: 2, Func. Count: 19, Neg. LLF: 151.6253305969115
Iteration: 3, Func. Count: 27, Neg. LLF: 151.62534325852963
Iteration: 4, Func. Count: 36, Neg. LLF: 151.6253020714272
Iteration: 5, Func. Count: 44, Neg. LLF: 151.62529518626332
Iteration: 6, Func. Count: 52, Neg. LLF: 151.62526969010406
Iteration: 7, Func. Count: 60, Neg. LLF: 151.62524163979944
Iteration: 8, Func. Count: 68, Neg. LLF: 151.6252110226368
Iteration: 9, Func. Count: 76, Neg. LLF: 151.62507630820733
Iteration: 10, Func. Count: 84, Neg. LLF: 151.6247653919967
Iteration: 11, Func. Count: 92, Neg. LLF: 151.62384011445593
Iteration: 12, Func. Count: 100, Neg. LLF: 151.62188696683057
Iteration: 13, Func. Count: 108, Neg. LLF: 151.66219258056012
Iteration: 14, Func. Count: 117, Neg. LLF: 152.04813581193955
Iteration: 15, Func. Count: 126, Neg. LLF: 152.21948760033655
Iteration: 16, Func. Count: 135, Neg. LLF: 152.2539278060062
Iteration: 17, Func. Count: 144, Neg. LLF: 152.19971811504186
Iteration: 18, Func. Count: 153, Neg. LLF: 157.64172113253642
Iteration: 19, Func. Count: 163, Neg. LLF: 152.16323275220694
Iteration: 20, Func. Count: 172, Neg. LLF: 151.6167587630165
Iteration: 21, Func. Count: 181, Neg. LLF: 151.60679790532504
Iteration: 22, Func. Count: 189, Neg. LLF: 151.60631042792008
Iteration: 23, Func. Count: 197, Neg. LLF: 151.60543229878726
Iteration: 24, Func. Count: 205, Neg. LLF: 151.60507747385202
Iteration: 25, Func. Count: 213, Neg. LLF: 151.60502797986192
Iteration: 26, Func. Count: 221, Neg. LLF: 151.60502143920667
Iteration: 27, Func. Count: 228, Neg. LLF: 151.6050214394301
Optimization terminated successfully (Exit mode 0)
Current function value: 151.60502143920667
Iterations: 27
Function evaluations: 228
Gradient evaluations: 27
Iteration: 1, Func. Count: 10, Neg. LLF: 151.62656905738143
Iteration: 2, Func. Count: 19, Neg. LLF: 151.63176198926908
Iteration: 3, Func. Count: 29, Neg. LLF: 151.62322494245313
Iteration: 4, Func. Count: 39, Neg. LLF: 151.62113409903412
Iteration: 5, Func. Count: 48, Neg. LLF: 151.62111847549585
Iteration: 6, Func. Count: 57, Neg. LLF: 151.6211128150383
Iteration: 7, Func. Count: 66, Neg. LLF: 151.6210968171072
Iteration: 8, Func. Count: 75, Neg. LLF: 151.62106573278098
Iteration: 9, Func. Count: 84, Neg. LLF: 151.6209752947162
Iteration: 10, Func. Count: 93, Neg. LLF: 151.6207407912981
Iteration: 11, Func. Count: 102, Neg. LLF: 151.6200485912298
Iteration: 12, Func. Count: 111, Neg. LLF: 151.61727716367756
Iteration: 13, Func. Count: 120, Neg. LLF: 151.64252659047833
Iteration: 14, Func. Count: 130, Neg. LLF: 151.74592247146575
Iteration: 15, Func. Count: 140, Neg. LLF: 151.81829724670683
Iteration: 16, Func. Count: 150, Neg. LLF: 151.79458116844503
Iteration: 17, Func. Count: 161, Neg. LLF: 152.26804627860565
Iteration: 18, Func. Count: 171, Neg. LLF: 216.21173462849276
Iteration: 19, Func. Count: 183, Neg. LLF: 151.60856517003987
Iteration: 20, Func. Count: 193, Neg. LLF: 151.6069055644792
Iteration: 21, Func. Count: 202, Neg. LLF: 151.6066814598534
Iteration: 22, Func. Count: 211, Neg. LLF: 151.6062962270457
Iteration: 23, Func. Count: 220, Neg. LLF: 151.6062923289631
Iteration: 24, Func. Count: 229, Neg. LLF: 151.60629022249327
Iteration: 25, Func. Count: 238, Neg. LLF: 151.60627705437352
Iteration: 26, Func. Count: 247, Neg. LLF: 151.60624877466265
Iteration: 27, Func. Count: 256, Neg. LLF: 151.60617945752605
Iteration: 28, Func. Count: 265, Neg. LLF: 151.60601646339853
Iteration: 29, Func. Count: 274, Neg. LLF: 151.60549359226667
Iteration: 30, Func. Count: 283, Neg. LLF: 151.60513611843587
Iteration: 31, Func. Count: 292, Neg. LLF: 151.60502496834414
Iteration: 32, Func. Count: 301, Neg. LLF: 151.6050209286443
Iteration: 33, Func. Count: 309, Neg. LLF: 151.6050209287991
Optimization terminated successfully (Exit mode 0)
Current function value: 151.6050209286443
Iterations: 34
Function evaluations: 309
Gradient evaluations: 33
Iteration: 1, Func. Count: 11, Neg. LLF: 159.49034885222665
Iteration: 2, Func. Count: 23, Neg. LLF: 151.6117486340537
Iteration: 3, Func. Count: 33, Neg. LLF: 151.6052864841534
Iteration: 4, Func. Count: 43, Neg. LLF: 151.59475820176402
Iteration: 5, Func. Count: 53, Neg. LLF: 151.59390322707216
Iteration: 6, Func. Count: 63, Neg. LLF: 151.59376292741817
Iteration: 7, Func. Count: 73, Neg. LLF: 151.59375541508024
Iteration: 8, Func. Count: 83, Neg. LLF: 151.5937142934239
Iteration: 9, Func. Count: 93, Neg. LLF: 151.59350940606365
Iteration: 10, Func. Count: 103, Neg. LLF: 151.59253718524695
Iteration: 11, Func. Count: 113, Neg. LLF: 151.5892148646003
Iteration: 12, Func. Count: 123, Neg. LLF: 151.58885583301813
Iteration: 13, Func. Count: 133, Neg. LLF: 151.5886404594588
Iteration: 14, Func. Count: 143, Neg. LLF: 151.58862202795086
Iteration: 15, Func. Count: 153, Neg. LLF: 151.58861975913098
Iteration: 16, Func. Count: 162, Neg. LLF: 151.58861975914087
Optimization terminated successfully (Exit mode 0)
Current function value: 151.58861975913098
Iterations: 16
Function evaluations: 162
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 159.5032780292642
Iteration: 2, Func. Count: 25, Neg. LLF: 151.60870112578624
Iteration: 3, Func. Count: 36, Neg. LLF: 151.6021172154574
Iteration: 4, Func. Count: 47, Neg. LLF: 151.6001738699334
Iteration: 5, Func. Count: 58, Neg. LLF: 151.59968765916602
Iteration: 6, Func. Count: 69, Neg. LLF: 151.59844134390497
Iteration: 7, Func. Count: 80, Neg. LLF: 151.5958289554893
Iteration: 8, Func. Count: 91, Neg. LLF: 151.59471434164587
Iteration: 9, Func. Count: 102, Neg. LLF: 151.5936743614942
Iteration: 10, Func. Count: 113, Neg. LLF: 151.59366697714555
Iteration: 11, Func. Count: 124, Neg. LLF: 151.59362793531284
Iteration: 12, Func. Count: 135, Neg. LLF: 151.5934340761242
Iteration: 13, Func. Count: 146, Neg. LLF: 151.59251025087872
Iteration: 14, Func. Count: 157, Neg. LLF: 151.58928935381266
Iteration: 15, Func. Count: 168, Neg. LLF: 151.5889360241995
Iteration: 16, Func. Count: 179, Neg. LLF: 151.58864636961204
Iteration: 17, Func. Count: 190, Neg. LLF: 151.58862232173252
Iteration: 18, Func. Count: 201, Neg. LLF: 151.58861976968083
Iteration: 19, Func. Count: 211, Neg. LLF: 151.5886197705061
Optimization terminated successfully (Exit mode 0)
Current function value: 151.58861976968083
Iterations: 19
Function evaluations: 211
Gradient evaluations: 19
Iteration: 1, Func. Count: 9, Neg. LLF: 156.06902806624592
Iteration: 2, Func. Count: 18, Neg. LLF: 156.5213107232348
Iteration: 3, Func. Count: 27, Neg. LLF: 154.07847715661953
Iteration: 4, Func. Count: 35, Neg. LLF: 154.65019601720732
Iteration: 5, Func. Count: 44, Neg. LLF: 153.7389962848573
Iteration: 6, Func. Count: 53, Neg. LLF: 152.9907670331753
Iteration: 7, Func. Count: 61, Neg. LLF: 151.97725755371877
Iteration: 8, Func. Count: 69, Neg. LLF: 151.63766580993374
Iteration: 9, Func. Count: 77, Neg. LLF: 151.6275237360131
Iteration: 10, Func. Count: 85, Neg. LLF: 151.62624404108016
Iteration: 11, Func. Count: 93, Neg. LLF: 151.62623979649254
Iteration: 12, Func. Count: 101, Neg. LLF: 151.6262388736511
Optimization terminated successfully (Exit mode 0)
Current function value: 151.6262388736511
Iterations: 12
Function evaluations: 101
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 167.32199476337325
Iteration: 2, Func. Count: 21, Neg. LLF: 151.6253344615363
Iteration: 3, Func. Count: 30, Neg. LLF: 151.6253461749144
Iteration: 4, Func. Count: 40, Neg. LLF: 151.62530335718478
Iteration: 5, Func. Count: 49, Neg. LLF: 151.6252971779335
Iteration: 6, Func. Count: 58, Neg. LLF: 151.6252672689133
Iteration: 7, Func. Count: 67, Neg. LLF: 151.62513010123155
Iteration: 8, Func. Count: 76, Neg. LLF: 151.62462247689282
Iteration: 9, Func. Count: 85, Neg. LLF: 151.6241326024045
Iteration: 10, Func. Count: 94, Neg. LLF: 151.6226782325044
Iteration: 11, Func. Count: 103, Neg. LLF: 151.61707397892053
Iteration: 12, Func. Count: 112, Neg. LLF: 153.75236021947893
Iteration: 13, Func. Count: 122, Neg. LLF: 153.45779000625046
Iteration: 14, Func. Count: 132, Neg. LLF: 152.27824870351554
Iteration: 15, Func. Count: 142, Neg. LLF: 151.67463224991613
Iteration: 16, Func. Count: 152, Neg. LLF: 151.6057799644173
Iteration: 17, Func. Count: 162, Neg. LLF: 151.60502328410226
Iteration: 18, Func. Count: 171, Neg. LLF: 151.60502136940252
Iteration: 19, Func. Count: 180, Neg. LLF: 151.6050208368498
Optimization terminated successfully (Exit mode 0)
Current function value: 151.6050208368498
Iterations: 19
Function evaluations: 180
Gradient evaluations: 19
Iteration: 1, Func. Count: 11, Neg. LLF: 155.72510459299994
Iteration: 2, Func. Count: 23, Neg. LLF: 151.62119597529994
Iteration: 3, Func. Count: 33, Neg. LLF: 151.62119812501297
Iteration: 4, Func. Count: 44, Neg. LLF: 151.62115078932914
Iteration: 5, Func. Count: 54, Neg. LLF: 151.62113541530974
Iteration: 6, Func. Count: 64, Neg. LLF: 151.62109089339083
Iteration: 7, Func. Count: 74, Neg. LLF: 151.6210495047633
Iteration: 8, Func. Count: 84, Neg. LLF: 151.62102206702616
Iteration: 9, Func. Count: 94, Neg. LLF: 151.62100797511002
Iteration: 10, Func. Count: 104, Neg. LLF: 151.6209834207076
Iteration: 11, Func. Count: 114, Neg. LLF: 151.62092796706457
Iteration: 12, Func. Count: 124, Neg. LLF: 151.62077930671168
Iteration: 13, Func. Count: 134, Neg. LLF: 151.62039816623601
Iteration: 14, Func. Count: 144, Neg. LLF: 151.6194959984192
Iteration: 15, Func. Count: 154, Neg. LLF: 151.61798139592116
Iteration: 16, Func. Count: 164, Neg. LLF: 151.61422384886703
Iteration: 17, Func. Count: 174, Neg. LLF: 151.91004671945686
Iteration: 18, Func. Count: 185, Neg. LLF: 151.61063026721058
Iteration: 19, Func. Count: 196, Neg. LLF: 151.6066098092246
Iteration: 20, Func. Count: 206, Neg. LLF: 151.60574955133742
Iteration: 21, Func. Count: 216, Neg. LLF: 151.60508290833664
Iteration: 22, Func. Count: 226, Neg. LLF: 151.6050821258947
Iteration: 23, Func. Count: 237, Neg. LLF: 151.60502126628182
Iteration: 24, Func. Count: 246, Neg. LLF: 151.60502126657346
Optimization terminated successfully (Exit mode 0)
Current function value: 151.60502126628182
Iterations: 24
Function evaluations: 246
Gradient evaluations: 24
Iteration: 1, Func. Count: 12, Neg. LLF: 159.47269265144934
Iteration: 2, Func. Count: 25, Neg. LLF: 151.61324605927646
Iteration: 3, Func. Count: 36, Neg. LLF: 151.6111013540446
Iteration: 4, Func. Count: 47, Neg. LLF: 151.605407546111
Iteration: 5, Func. Count: 58, Neg. LLF: 151.5953081758686
Iteration: 6, Func. Count: 69, Neg. LLF: 151.59378683908923
Iteration: 7, Func. Count: 80, Neg. LLF: 151.5937617932328
Iteration: 8, Func. Count: 91, Neg. LLF: 151.59374721788197
Iteration: 9, Func. Count: 102, Neg. LLF: 151.59372602786
Iteration: 10, Func. Count: 113, Neg. LLF: 151.59365404473505
Iteration: 11, Func. Count: 124, Neg. LLF: 151.5934893177885
Iteration: 12, Func. Count: 135, Neg. LLF: 151.59306424321738
Iteration: 13, Func. Count: 146, Neg. LLF: 151.59219880528372
Iteration: 14, Func. Count: 157, Neg. LLF: 151.59080465522516
Iteration: 15, Func. Count: 168, Neg. LLF: 151.58927788595173
Iteration: 16, Func. Count: 179, Neg. LLF: 151.5886627731526
Iteration: 17, Func. Count: 190, Neg. LLF: 151.58861996080594
Iteration: 18, Func. Count: 200, Neg. LLF: 151.588619960734
Optimization terminated successfully (Exit mode 0)
Current function value: 151.58861996080594
Iterations: 18
Function evaluations: 200
Gradient evaluations: 18
Iteration: 1, Func. Count: 13, Neg. LLF: 159.4859132853414
Iteration: 2, Func. Count: 27, Neg. LLF: 151.61043245746833
Iteration: 3, Func. Count: 39, Neg. LLF: 151.60753627939584
Iteration: 4, Func. Count: 51, Neg. LLF: 151.60495611219807
Iteration: 5, Func. Count: 63, Neg. LLF: 151.60000438344102
Iteration: 6, Func. Count: 75, Neg. LLF: 151.5997218364765
Iteration: 7, Func. Count: 87, Neg. LLF: 151.5981425232535
Iteration: 8, Func. Count: 99, Neg. LLF: 151.59391016944275
Iteration: 9, Func. Count: 111, Neg. LLF: 151.59375392621308
Iteration: 10, Func. Count: 123, Neg. LLF: 151.5936672421027
Iteration: 11, Func. Count: 135, Neg. LLF: 151.59365921503812
Iteration: 12, Func. Count: 147, Neg. LLF: 151.5936122774975
Iteration: 13, Func. Count: 159, Neg. LLF: 151.59337387217832
Iteration: 14, Func. Count: 171, Neg. LLF: 151.5922465901298
Iteration: 15, Func. Count: 183, Neg. LLF: 151.58885894409917
Iteration: 16, Func. Count: 195, Neg. LLF: 151.5886627112938
Iteration: 17, Func. Count: 207, Neg. LLF: 151.58862311206462
Iteration: 18, Func. Count: 219, Neg. LLF: 151.58862010090735
Iteration: 19, Func. Count: 230, Neg. LLF: 151.58862010158032
Optimization terminated successfully (Exit mode 0)
Current function value: 151.58862010090735
Iterations: 19
Function evaluations: 230
Gradient evaluations: 19
Iteration: 1, Func. Count: 10, Neg. LLF: 156.03756907482853
Iteration: 2, Func. Count: 20, Neg. LLF: 156.52594355389476
Iteration: 3, Func. Count: 30, Neg. LLF: 154.0724171368776
Iteration: 4, Func. Count: 39, Neg. LLF: 154.50217788205083
Iteration: 5, Func. Count: 49, Neg. LLF: 153.73706168941078
Iteration: 6, Func. Count: 59, Neg. LLF: 152.900770553754
Iteration: 7, Func. Count: 68, Neg. LLF: 151.8777860557562
Iteration: 8, Func. Count: 77, Neg. LLF: 151.6309876899314
Iteration: 9, Func. Count: 86, Neg. LLF: 151.6265294427428
Iteration: 10, Func. Count: 95, Neg. LLF: 151.62631896595647
Iteration: 11, Func. Count: 104, Neg. LLF: 151.62625617016525
Iteration: 12, Func. Count: 113, Neg. LLF: 151.62623963896144
Iteration: 13, Func. Count: 122, Neg. LLF: 151.62623889016356
Optimization terminated successfully (Exit mode 0)
Current function value: 151.62623889016356
Iterations: 13
Function evaluations: 122
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 164.8810684314757
Iteration: 2, Func. Count: 23, Neg. LLF: 151.62530740650524
Iteration: 3, Func. Count: 33, Neg. LLF: 151.62530788139165
Iteration: 4, Func. Count: 44, Neg. LLF: 151.62530285856366
Iteration: 5, Func. Count: 54, Neg. LLF: 151.6252963218003
Iteration: 6, Func. Count: 64, Neg. LLF: 151.62526377608086
Iteration: 7, Func. Count: 74, Neg. LLF: 151.6251024382207
Iteration: 8, Func. Count: 84, Neg. LLF: 151.62426214534344
Iteration: 9, Func. Count: 94, Neg. LLF: 151.62501377655258
Iteration: 10, Func. Count: 105, Neg. LLF: 159.40081458176746
Iteration: 11, Func. Count: 116, Neg. LLF: 151.6246700335657
Iteration: 12, Func. Count: 127, Neg. LLF: 151.6294661320117
Iteration: 13, Func. Count: 138, Neg. LLF: 151.69399234644177
Iteration: 14, Func. Count: 149, Neg. LLF: 152.1137313464959
Iteration: 15, Func. Count: 160, Neg. LLF: 151.7632220382665
Iteration: 16, Func. Count: 171, Neg. LLF: 151.6384055621166
Iteration: 17, Func. Count: 182, Neg. LLF: 151.60728296165902
Iteration: 18, Func. Count: 192, Neg. LLF: 151.60520641046685
Iteration: 19, Func. Count: 202, Neg. LLF: 151.6050311915521
Iteration: 20, Func. Count: 212, Neg. LLF: 151.60502079655578
Iteration: 21, Func. Count: 221, Neg. LLF: 151.60502079675243
Optimization terminated successfully (Exit mode 0)
Current function value: 151.60502079655578
Iterations: 21
Function evaluations: 221
Gradient evaluations: 21
Iteration: 1, Func. Count: 12, Neg. LLF: 156.9361580202495
Iteration: 2, Func. Count: 25, Neg. LLF: 151.6212691637388
Iteration: 3, Func. Count: 36, Neg. LLF: 151.6212555934843
Iteration: 4, Func. Count: 47, Neg. LLF: 151.62121111121976
Iteration: 5, Func. Count: 58, Neg. LLF: 151.6211239558574
Iteration: 6, Func. Count: 69, Neg. LLF: 151.62105690993474
Iteration: 7, Func. Count: 80, Neg. LLF: 151.62101105200307
Iteration: 8, Func. Count: 91, Neg. LLF: 151.62099882084382
Iteration: 9, Func. Count: 102, Neg. LLF: 151.6209891783277
Iteration: 10, Func. Count: 113, Neg. LLF: 151.62097290948134
Iteration: 11, Func. Count: 124, Neg. LLF: 151.6209312817394
Iteration: 12, Func. Count: 135, Neg. LLF: 151.6208238791347
Iteration: 13, Func. Count: 146, Neg. LLF: 151.6205299205202
Iteration: 14, Func. Count: 157, Neg. LLF: 151.61976720982815
Iteration: 15, Func. Count: 168, Neg. LLF: 151.61823915307576
Iteration: 16, Func. Count: 179, Neg. LLF: 151.6149292095454
Iteration: 17, Func. Count: 190, Neg. LLF: 151.65916594249921
Iteration: 18, Func. Count: 202, Neg. LLF: 151.67676762622307
Iteration: 19, Func. Count: 214, Neg. LLF: 151.60956580027576
Iteration: 20, Func. Count: 226, Neg. LLF: 151.60688453467642
Iteration: 21, Func. Count: 238, Neg. LLF: 151.60576639719085
Iteration: 22, Func. Count: 249, Neg. LLF: 151.60530206122797
Iteration: 23, Func. Count: 260, Neg. LLF: 151.6050422620075
Iteration: 24, Func. Count: 271, Neg. LLF: 151.6050214742425
Iteration: 25, Func. Count: 282, Neg. LLF: 151.60502087485952
Optimization terminated successfully (Exit mode 0)
Current function value: 151.60502087485952
Iterations: 25
Function evaluations: 282
Gradient evaluations: 25
Iteration: 1, Func. Count: 13, Neg. LLF: 159.4712843106783
Iteration: 2, Func. Count: 27, Neg. LLF: 151.61263385887997
Iteration: 3, Func. Count: 39, Neg. LLF: 151.60980298270022
Iteration: 4, Func. Count: 51, Neg. LLF: 151.59424254542174
Iteration: 5, Func. Count: 63, Neg. LLF: 151.59378184527094
Iteration: 6, Func. Count: 75, Neg. LLF: 151.5937413532792
Iteration: 7, Func. Count: 87, Neg. LLF: 151.5937270194727
Iteration: 8, Func. Count: 99, Neg. LLF: 151.5937091931622
Iteration: 9, Func. Count: 111, Neg. LLF: 151.59364921857912
Iteration: 10, Func. Count: 123, Neg. LLF: 151.59351099246229
Iteration: 11, Func. Count: 135, Neg. LLF: 151.5931531222554
Iteration: 12, Func. Count: 147, Neg. LLF: 151.59231629987403
Iteration: 13, Func. Count: 159, Neg. LLF: 151.59062022548943
Iteration: 14, Func. Count: 171, Neg. LLF: 151.58919878515712
Iteration: 15, Func. Count: 183, Neg. LLF: 151.58868082293242
Iteration: 16, Func. Count: 195, Neg. LLF: 151.5886212223663
Iteration: 17, Func. Count: 207, Neg. LLF: 151.5886198540612
Iteration: 18, Func. Count: 218, Neg. LLF: 151.58861985409212
Optimization terminated successfully (Exit mode 0)
Current function value: 151.5886198540612
Iterations: 18
Function evaluations: 218
Gradient evaluations: 18
Iteration: 1, Func. Count: 14, Neg. LLF: 159.48434188381884
Iteration: 2, Func. Count: 29, Neg. LLF: 151.60992310113576
Iteration: 3, Func. Count: 42, Neg. LLF: 151.6037297189547
Iteration: 4, Func. Count: 55, Neg. LLF: 151.60059195771376
Iteration: 5, Func. Count: 68, Neg. LLF: 151.6000350359958
Iteration: 6, Func. Count: 81, Neg. LLF: 151.59957771253514
Iteration: 7, Func. Count: 94, Neg. LLF: 151.59898841775208
Iteration: 8, Func. Count: 107, Neg. LLF: 151.5955910581249
Iteration: 9, Func. Count: 120, Neg. LLF: 151.59458923773835
Iteration: 10, Func. Count: 133, Neg. LLF: 151.59368171337167
Iteration: 11, Func. Count: 146, Neg. LLF: 151.5936745482857
Iteration: 12, Func. Count: 159, Neg. LLF: 151.59363765961578
Iteration: 13, Func. Count: 172, Neg. LLF: 151.59345568047422
Iteration: 14, Func. Count: 185, Neg. LLF: 151.59258577327677
Iteration: 15, Func. Count: 198, Neg. LLF: 151.5894737850339
Iteration: 16, Func. Count: 211, Neg. LLF: 151.58903302225642
Iteration: 17, Func. Count: 224, Neg. LLF: 151.58866290624331
Iteration: 18, Func. Count: 237, Neg. LLF: 151.5886257271844
Iteration: 19, Func. Count: 250, Neg. LLF: 151.58862013797633
Iteration: 20, Func. Count: 262, Neg. LLF: 151.5886201387276
Optimization terminated successfully (Exit mode 0)
Current function value: 151.58862013797633
Iterations: 20
Function evaluations: 262
Gradient evaluations: 20
Iteration: 1, Func. Count: 11, Neg. LLF: 154.57559035769796
Iteration: 2, Func. Count: 22, Neg. LLF: 154.68466566930678
Iteration: 3, Func. Count: 33, Neg. LLF: 152.57582157867932
Iteration: 4, Func. Count: 43, Neg. LLF: 153.84982061575624
Iteration: 5, Func. Count: 55, Neg. LLF: 152.35525335285735
Iteration: 6, Func. Count: 65, Neg. LLF: 152.42110221394816
Iteration: 7, Func. Count: 76, Neg. LLF: 152.18881413700404
Iteration: 8, Func. Count: 86, Neg. LLF: 151.99802309815587
Iteration: 9, Func. Count: 96, Neg. LLF: 151.54559981032753
Iteration: 10, Func. Count: 106, Neg. LLF: 151.2814079794257
Iteration: 11, Func. Count: 116, Neg. LLF: 151.21950734854252
Iteration: 12, Func. Count: 126, Neg. LLF: 151.207440041653
Iteration: 13, Func. Count: 136, Neg. LLF: 151.206404620261
Iteration: 14, Func. Count: 146, Neg. LLF: 151.20633606540403
Iteration: 15, Func. Count: 156, Neg. LLF: 151.20630680539304
Iteration: 16, Func. Count: 166, Neg. LLF: 151.20630378191558
Iteration: 17, Func. Count: 175, Neg. LLF: 151.20630378193175
Optimization terminated successfully (Exit mode 0)
Current function value: 151.20630378191558
Iterations: 17
Function evaluations: 175
Gradient evaluations: 17
Iteration: 1, Func. Count: 12, Neg. LLF: 154.1028491005317
Iteration: 2, Func. Count: 26, Neg. LLF: 154.6669422238195
Iteration: 3, Func. Count: 39, Neg. LLF: 151.58117611791405
Iteration: 4, Func. Count: 50, Neg. LLF: 151.5769972912689
Iteration: 5, Func. Count: 61, Neg. LLF: 151.5759599193788
Iteration: 6, Func. Count: 72, Neg. LLF: 151.57284344592873
Iteration: 7, Func. Count: 83, Neg. LLF: 151.56466722948332
Iteration: 8, Func. Count: 94, Neg. LLF: 151.53029192803652
Iteration: 9, Func. Count: 105, Neg. LLF: 151.43432116727772
Iteration: 10, Func. Count: 116, Neg. LLF: 151.38795280069183
Iteration: 11, Func. Count: 127, Neg. LLF: 151.2670971924468
Iteration: 12, Func. Count: 138, Neg. LLF: 151.24334068134806
Iteration: 13, Func. Count: 149, Neg. LLF: 151.22562666245173
Iteration: 14, Func. Count: 160, Neg. LLF: 151.21049929302404
Iteration: 15, Func. Count: 171, Neg. LLF: 151.20681805270033
Iteration: 16, Func. Count: 182, Neg. LLF: 151.20646999811046
Iteration: 17, Func. Count: 193, Neg. LLF: 151.20636209332739
Iteration: 18, Func. Count: 204, Neg. LLF: 151.20630947975837
Iteration: 19, Func. Count: 215, Neg. LLF: 151.20630396770662
Iteration: 20, Func. Count: 225, Neg. LLF: 151.20630398364622
Optimization terminated successfully (Exit mode 0)
Current function value: 151.20630396770662
Iterations: 20
Function evaluations: 225
Gradient evaluations: 20
Iteration: 1, Func. Count: 13, Neg. LLF: 153.57250306561392
Iteration: 2, Func. Count: 28, Neg. LLF: 155.02732760886983
Iteration: 3, Func. Count: 42, Neg. LLF: 151.5310741700991
Iteration: 4, Func. Count: 54, Neg. LLF: 151.47055781254411
Iteration: 5, Func. Count: 66, Neg. LLF: 151.45523948644566
Iteration: 6, Func. Count: 78, Neg. LLF: 151.4534312932789
Iteration: 7, Func. Count: 90, Neg. LLF: 151.45304932281257
Iteration: 8, Func. Count: 102, Neg. LLF: 151.45267774183188
Iteration: 9, Func. Count: 114, Neg. LLF: 151.4524710689122
Iteration: 10, Func. Count: 126, Neg. LLF: 151.45232359485874
Iteration: 11, Func. Count: 138, Neg. LLF: 151.45206772699967
Iteration: 12, Func. Count: 150, Neg. LLF: 151.45141233241554
Iteration: 13, Func. Count: 162, Neg. LLF: 151.449314815523
Iteration: 14, Func. Count: 174, Neg. LLF: 151.43508464493732
Iteration: 15, Func. Count: 186, Neg. LLF: 151.39911752201
Iteration: 16, Func. Count: 198, Neg. LLF: 151.34914116170486
Iteration: 17, Func. Count: 210, Neg. LLF: 151.23035125612788
Iteration: 18, Func. Count: 222, Neg. LLF: 151.2175805073993
Iteration: 19, Func. Count: 234, Neg. LLF: 151.2084899463606
Iteration: 20, Func. Count: 246, Neg. LLF: 151.20645384219603
Iteration: 21, Func. Count: 258, Neg. LLF: 151.20632263770574
Iteration: 22, Func. Count: 270, Neg. LLF: 151.20631387117552
Iteration: 23, Func. Count: 282, Neg. LLF: 151.2063053534449
Iteration: 24, Func. Count: 294, Neg. LLF: 151.20630381477125
Iteration: 25, Func. Count: 305, Neg. LLF: 151.20630382865374
Optimization terminated successfully (Exit mode 0)
Current function value: 151.20630381477125
Iterations: 25
Function evaluations: 305
Gradient evaluations: 25
Iteration: 1, Func. Count: 14, Neg. LLF: 153.78828009713843
Iteration: 2, Func. Count: 30, Neg. LLF: 155.20535627805535
Iteration: 3, Func. Count: 44, Neg. LLF: 151.50603320531104
Iteration: 4, Func. Count: 57, Neg. LLF: 151.4904673562751
Iteration: 5, Func. Count: 70, Neg. LLF: 151.48794216010464
Iteration: 6, Func. Count: 83, Neg. LLF: 151.4877174922532
Iteration: 7, Func. Count: 96, Neg. LLF: 151.48626703567413
Iteration: 8, Func. Count: 109, Neg. LLF: 151.48093513713573
Iteration: 9, Func. Count: 122, Neg. LLF: 151.42096620099002
Iteration: 10, Func. Count: 135, Neg. LLF: 151.4128108114276
Iteration: 11, Func. Count: 148, Neg. LLF: 151.35034504823824
Iteration: 12, Func. Count: 161, Neg. LLF: 151.2265080003183
Iteration: 13, Func. Count: 174, Neg. LLF: 151.22289948628074
Iteration: 14, Func. Count: 187, Neg. LLF: 151.21872568911883
Iteration: 15, Func. Count: 200, Neg. LLF: 151.213996838385
Iteration: 16, Func. Count: 213, Neg. LLF: 151.21067688758612
Iteration: 17, Func. Count: 226, Neg. LLF: 151.20959722172978
Iteration: 18, Func. Count: 239, Neg. LLF: 151.2083083173282
Iteration: 19, Func. Count: 252, Neg. LLF: 151.20728155196744
Iteration: 20, Func. Count: 265, Neg. LLF: 151.20650889782894
Iteration: 21, Func. Count: 278, Neg. LLF: 151.2063339760416
Iteration: 22, Func. Count: 291, Neg. LLF: 151.206405187142
Iteration: 23, Func. Count: 305, Neg. LLF: 151.20631438414648
Iteration: 24, Func. Count: 319, Neg. LLF: 151.20630392801937
Iteration: 25, Func. Count: 331, Neg. LLF: 151.20630395205075
Optimization terminated successfully (Exit mode 0)
Current function value: 151.20630392801937
Iterations: 26
Function evaluations: 331
Gradient evaluations: 25
Iteration: 1, Func. Count: 15, Neg. LLF: 153.79276026639698
Iteration: 2, Func. Count: 32, Neg. LLF: 155.0590118357771
Iteration: 3, Func. Count: 47, Neg. LLF: 151.15635421458475
Iteration: 4, Func. Count: 61, Neg. LLF: 151.11947900396316
Iteration: 5, Func. Count: 75, Neg. LLF: 151.09567780127998
Iteration: 6, Func. Count: 89, Neg. LLF: 151.04410898993527
Iteration: 7, Func. Count: 103, Neg. LLF: 151.0200027102307
Iteration: 8, Func. Count: 117, Neg. LLF: 151.03685343850404
Iteration: 9, Func. Count: 132, Neg. LLF: 151.0026610938869
Iteration: 10, Func. Count: 146, Neg. LLF: 150.99519731014678
Iteration: 11, Func. Count: 160, Neg. LLF: 150.97766845933924
Iteration: 12, Func. Count: 174, Neg. LLF: 150.95448170932474
Iteration: 13, Func. Count: 188, Neg. LLF: 150.93106473097208
Iteration: 14, Func. Count: 202, Neg. LLF: 150.90112635068323
Iteration: 15, Func. Count: 216, Neg. LLF: 150.8540885053831
Iteration: 16, Func. Count: 230, Neg. LLF: 150.8445542954495
Iteration: 17, Func. Count: 244, Neg. LLF: 150.84326869605238
Iteration: 18, Func. Count: 258, Neg. LLF: 150.84314126594182
Iteration: 19, Func. Count: 272, Neg. LLF: 150.84313482241356
Iteration: 20, Func. Count: 286, Neg. LLF: 150.8431342674563
Optimization terminated successfully (Exit mode 0)
Current function value: 150.8431342674563
Iterations: 20
Function evaluations: 286
Gradient evaluations: 20
Iteration: 1, Func. Count: 12, Neg. LLF: 154.63014797007781
Iteration: 2, Func. Count: 24, Neg. LLF: 154.7477583647992
Iteration: 3, Func. Count: 36, Neg. LLF: 152.86046483094594
Iteration: 4, Func. Count: 47, Neg. LLF: 152.97036551850647
Iteration: 5, Func. Count: 59, Neg. LLF: 152.39511088185375
Iteration: 6, Func. Count: 70, Neg. LLF: 152.4007903185016
Iteration: 7, Func. Count: 82, Neg. LLF: 152.37415620595317
Iteration: 8, Func. Count: 94, Neg. LLF: 152.11219879371635
Iteration: 9, Func. Count: 105, Neg. LLF: 151.72602205126586
Iteration: 10, Func. Count: 116, Neg. LLF: 151.2868523012364
Iteration: 11, Func. Count: 127, Neg. LLF: 151.21921863212194
Iteration: 12, Func. Count: 138, Neg. LLF: 151.20905733657892
Iteration: 13, Func. Count: 149, Neg. LLF: 151.2063419383269
Iteration: 14, Func. Count: 160, Neg. LLF: 151.20630564325313
Iteration: 15, Func. Count: 171, Neg. LLF: 151.2063036667818
Iteration: 16, Func. Count: 181, Neg. LLF: 151.20630361831527
Optimization terminated successfully (Exit mode 0)
Current function value: 151.2063036667818
Iterations: 16
Function evaluations: 181
Gradient evaluations: 16
Iteration: 1, Func. Count: 13, Neg. LLF: 154.0049321444862
Iteration: 2, Func. Count: 28, Neg. LLF: 154.70877527875243
Iteration: 3, Func. Count: 42, Neg. LLF: 151.5821400555815
Iteration: 4, Func. Count: 54, Neg. LLF: 151.57699482200164
Iteration: 5, Func. Count: 66, Neg. LLF: 151.57591471711848
Iteration: 6, Func. Count: 78, Neg. LLF: 151.57337168464107
Iteration: 7, Func. Count: 90, Neg. LLF: 151.56641793134625
Iteration: 8, Func. Count: 102, Neg. LLF: 151.5385708010419
Iteration: 9, Func. Count: 114, Neg. LLF: 151.43604691226065
Iteration: 10, Func. Count: 126, Neg. LLF: 151.3937982216814
Iteration: 11, Func. Count: 138, Neg. LLF: 151.28022273678974
Iteration: 12, Func. Count: 150, Neg. LLF: 151.25280124971212
Iteration: 13, Func. Count: 162, Neg. LLF: 151.22836919987577
Iteration: 14, Func. Count: 174, Neg. LLF: 151.21071676839088
Iteration: 15, Func. Count: 186, Neg. LLF: 151.20688324034407
Iteration: 16, Func. Count: 198, Neg. LLF: 151.20652260659466
Iteration: 17, Func. Count: 210, Neg. LLF: 151.2063774657266
Iteration: 18, Func. Count: 222, Neg. LLF: 151.2063117178141
Iteration: 19, Func. Count: 234, Neg. LLF: 151.2063041020584
Iteration: 20, Func. Count: 245, Neg. LLF: 151.20630411799704
Optimization terminated successfully (Exit mode 0)
Current function value: 151.2063041020584
Iterations: 20
Function evaluations: 245
Gradient evaluations: 20
Iteration: 1, Func. Count: 14, Neg. LLF: 153.6496253878965
Iteration: 2, Func. Count: 30, Neg. LLF: 155.06094922791635
Iteration: 3, Func. Count: 45, Neg. LLF: 151.53251247979594
Iteration: 4, Func. Count: 58, Neg. LLF: 151.470408830465
Iteration: 5, Func. Count: 71, Neg. LLF: 151.45506528179206
Iteration: 6, Func. Count: 84, Neg. LLF: 151.4536429575084
Iteration: 7, Func. Count: 97, Neg. LLF: 151.45313420018493
Iteration: 8, Func. Count: 110, Neg. LLF: 151.45266966660233
Iteration: 9, Func. Count: 123, Neg. LLF: 151.45246170538147
Iteration: 10, Func. Count: 136, Neg. LLF: 151.45232699281297
Iteration: 11, Func. Count: 149, Neg. LLF: 151.4520805597848
Iteration: 12, Func. Count: 162, Neg. LLF: 151.45146024208498
Iteration: 13, Func. Count: 175, Neg. LLF: 151.44946233636992
Iteration: 14, Func. Count: 188, Neg. LLF: 151.4366067288505
Iteration: 15, Func. Count: 201, Neg. LLF: 151.3954319429784
Iteration: 16, Func. Count: 214, Neg. LLF: 151.35383650495925
Iteration: 17, Func. Count: 227, Neg. LLF: 151.2397499062644
Iteration: 18, Func. Count: 240, Neg. LLF: 151.21914254627805
Iteration: 19, Func. Count: 253, Neg. LLF: 151.21083157786856
Iteration: 20, Func. Count: 266, Neg. LLF: 151.2068047742834
Iteration: 21, Func. Count: 279, Neg. LLF: 151.20641285071906
Iteration: 22, Func. Count: 292, Neg. LLF: 151.20635845812706
Iteration: 23, Func. Count: 305, Neg. LLF: 151.20631442946717
Iteration: 24, Func. Count: 318, Neg. LLF: 151.20630469058528
Iteration: 25, Func. Count: 331, Neg. LLF: 151.2063036590074
Iteration: 26, Func. Count: 343, Neg. LLF: 151.20630367289672
Optimization terminated successfully (Exit mode 0)
Current function value: 151.2063036590074
Iterations: 26
Function evaluations: 343
Gradient evaluations: 26
Iteration: 1, Func. Count: 15, Neg. LLF: 153.78753893178222
Iteration: 2, Func. Count: 32, Neg. LLF: 155.2077249107551
Iteration: 3, Func. Count: 47, Neg. LLF: 151.50817983986033
Iteration: 4, Func. Count: 61, Neg. LLF: 151.49056084055618
Iteration: 5, Func. Count: 75, Neg. LLF: 151.4879480393768
Iteration: 6, Func. Count: 89, Neg. LLF: 151.48772229699983
Iteration: 7, Func. Count: 103, Neg. LLF: 151.48629270819023
Iteration: 8, Func. Count: 117, Neg. LLF: 151.481524677122
Iteration: 9, Func. Count: 131, Neg. LLF: 151.42145440921857
Iteration: 10, Func. Count: 145, Neg. LLF: 151.4141608660289
Iteration: 11, Func. Count: 159, Neg. LLF: 151.35657963988797
Iteration: 12, Func. Count: 173, Neg. LLF: 151.2239495451986
Iteration: 13, Func. Count: 187, Neg. LLF: 151.22135221160153
Iteration: 14, Func. Count: 201, Neg. LLF: 151.21683378287116
Iteration: 15, Func. Count: 215, Neg. LLF: 151.2137010466828
Iteration: 16, Func. Count: 229, Neg. LLF: 151.21142167236644
Iteration: 17, Func. Count: 243, Neg. LLF: 151.20961563245586
Iteration: 18, Func. Count: 257, Neg. LLF: 151.20842978545772
Iteration: 19, Func. Count: 271, Neg. LLF: 151.20758983544349
Iteration: 20, Func. Count: 285, Neg. LLF: 151.2065625237588
Iteration: 21, Func. Count: 299, Neg. LLF: 151.20631989609572
Iteration: 22, Func. Count: 313, Neg. LLF: 151.20637794899093
Iteration: 23, Func. Count: 328, Neg. LLF: 151.2063142887321
Iteration: 24, Func. Count: 342, Neg. LLF: 151.2063046210187
Optimization terminated successfully (Exit mode 0)
Current function value: 151.20630459697188
Iterations: 25
Function evaluations: 342
Gradient evaluations: 24
Iteration: 1, Func. Count: 16, Neg. LLF: 153.79219332926164
Iteration: 2, Func. Count: 34, Neg. LLF: 155.06283978075612
Iteration: 3, Func. Count: 50, Neg. LLF: 151.1602771549577
Iteration: 4, Func. Count: 65, Neg. LLF: 151.12374711912952
Iteration: 5, Func. Count: 80, Neg. LLF: 151.10039894302938
Iteration: 6, Func. Count: 95, Neg. LLF: 151.04330555135024
Iteration: 7, Func. Count: 110, Neg. LLF: 151.020820687705
Iteration: 8, Func. Count: 125, Neg. LLF: 151.04101931822274
Iteration: 9, Func. Count: 141, Neg. LLF: 151.0028852249553
Iteration: 10, Func. Count: 156, Neg. LLF: 150.98994476086463
Iteration: 11, Func. Count: 171, Neg. LLF: 150.97310620533582
Iteration: 12, Func. Count: 186, Neg. LLF: 150.94907131698565
Iteration: 13, Func. Count: 201, Neg. LLF: 150.92716869164468
Iteration: 14, Func. Count: 216, Neg. LLF: 150.89181438614872
Iteration: 15, Func. Count: 231, Neg. LLF: 150.85233667026256
Iteration: 16, Func. Count: 246, Neg. LLF: 150.84417139728555
Iteration: 17, Func. Count: 261, Neg. LLF: 150.84319899369248
Iteration: 18, Func. Count: 276, Neg. LLF: 150.84313942837383
Iteration: 19, Func. Count: 291, Neg. LLF: 150.84313440975308
Iteration: 20, Func. Count: 305, Neg. LLF: 150.84313440971198
Optimization terminated successfully (Exit mode 0)
Current function value: 150.84313440975308
Iterations: 20
Function evaluations: 305
Gradient evaluations: 20
Iteration: 1, Func. Count: 5, Neg. LLF: 158.88571601897803
Iteration: 2, Func. Count: 10, Neg. LLF: 156.0378338723674
Iteration: 3, Func. Count: 15, Neg. LLF: 153.7095094410377
Iteration: 4, Func. Count: 19, Neg. LLF: 152.2895964440345
Iteration: 5, Func. Count: 23, Neg. LLF: 151.81742845905572
Iteration: 6, Func. Count: 27, Neg. LLF: 151.67273116583522
Iteration: 7, Func. Count: 31, Neg. LLF: 151.64709962328024
Iteration: 8, Func. Count: 35, Neg. LLF: 151.62852778920575
Iteration: 9, Func. Count: 39, Neg. LLF: 151.6264204208525
Iteration: 10, Func. Count: 43, Neg. LLF: 151.6262464796727
Iteration: 11, Func. Count: 47, Neg. LLF: 151.6262390197686
Iteration: 12, Func. Count: 50, Neg. LLF: 151.62623904650613
Optimization terminated successfully (Exit mode 0)
Current function value: 151.6262390197686
Iterations: 12
Function evaluations: 50
Gradient evaluations: 12
Iteration: 1, Func. Count: 5, Neg. LLF: 155.88983056639498
Iteration: 2, Func. Count: 10, Neg. LLF: 155.37830669090886
Iteration: 3, Func. Count: 15, Neg. LLF: 150.85498663403368
Iteration: 4, Func. Count: 19, Neg. LLF: 150.22605346286792
Iteration: 5, Func. Count: 23, Neg. LLF: 150.0924724480632
Iteration: 6, Func. Count: 27, Neg. LLF: 150.0657232160361
Iteration: 7, Func. Count: 31, Neg. LLF: 150.06502175588312
Iteration: 8, Func. Count: 35, Neg. LLF: 150.0650174118912
Iteration: 9, Func. Count: 38, Neg. LLF: 150.06501741188504
Optimization terminated successfully (Exit mode 0)
Current function value: 150.0650174118912
Iterations: 9
Function evaluations: 38
Gradient evaluations: 9
Iteration: 1, Func. Count: 6, Neg. LLF: 150.6400956428835
Iteration: 2, Func. Count: 12, Neg. LLF: 150.46995879571298
Iteration: 3, Func. Count: 17, Neg. LLF: 153.3479825234559
Iteration: 4, Func. Count: 24, Neg. LLF: 150.33024845193293
Iteration: 5, Func. Count: 29, Neg. LLF: 150.1006519379868
Iteration: 6, Func. Count: 34, Neg. LLF: 150.08361424141128
Iteration: 7, Func. Count: 39, Neg. LLF: 150.06795894626796
Iteration: 8, Func. Count: 44, Neg. LLF: 150.06550861699372
Iteration: 9, Func. Count: 49, Neg. LLF: 150.06507391306923
Iteration: 10, Func. Count: 54, Neg. LLF: 150.06502013242982
Iteration: 11, Func. Count: 59, Neg. LLF: 150.06501721594233
Iteration: 12, Func. Count: 63, Neg. LLF: 150.06501723363925
Optimization terminated successfully (Exit mode 0)
Current function value: 150.06501721594233
Iterations: 12
Function evaluations: 63
Gradient evaluations: 12
Iteration: 1, Func. Count: 7, Neg. LLF: 154.90229333745916
Iteration: 2, Func. Count: 15, Neg. LLF: 151.08798321395457
Iteration: 3, Func. Count: 22, Neg. LLF: 150.47592753865356
Iteration: 4, Func. Count: 28, Neg. LLF: 150.4617743302648
Iteration: 5, Func. Count: 34, Neg. LLF: 150.4495596333494
Iteration: 6, Func. Count: 40, Neg. LLF: 150.41206027851462
Iteration: 7, Func. Count: 46, Neg. LLF: 150.17950563744762
Iteration: 8, Func. Count: 52, Neg. LLF: 150.09044665639772
Iteration: 9, Func. Count: 58, Neg. LLF: 150.07688258300632
Iteration: 10, Func. Count: 64, Neg. LLF: 150.06528948799775
Iteration: 11, Func. Count: 70, Neg. LLF: 150.06505263201254
Iteration: 12, Func. Count: 76, Neg. LLF: 150.06502898081757
Iteration: 13, Func. Count: 82, Neg. LLF: 150.06501828455964
Iteration: 14, Func. Count: 88, Neg. LLF: 150.06501719293396
Iteration: 15, Func. Count: 93, Neg. LLF: 150.06501721067985
Optimization terminated successfully (Exit mode 0)
Current function value: 150.06501719293396
Iterations: 15
Function evaluations: 93
Gradient evaluations: 15
Iteration: 1, Func. Count: 8, Neg. LLF: 159.5742087236134
Iteration: 2, Func. Count: 17, Neg. LLF: 150.6206675824268
Iteration: 3, Func. Count: 25, Neg. LLF: 150.47240477649072
Iteration: 4, Func. Count: 32, Neg. LLF: 150.46452193009125
Iteration: 5, Func. Count: 39, Neg. LLF: 150.4437817898084
Iteration: 6, Func. Count: 46, Neg. LLF: 150.4135097598517
Iteration: 7, Func. Count: 53, Neg. LLF: 150.26923501789108
Iteration: 8, Func. Count: 60, Neg. LLF: 150.10518892437648
Iteration: 9, Func. Count: 67, Neg. LLF: 150.083977220799
Iteration: 10, Func. Count: 74, Neg. LLF: 150.06748448052096
Iteration: 11, Func. Count: 81, Neg. LLF: 150.06529034316478
Iteration: 12, Func. Count: 88, Neg. LLF: 150.06501783393782
Iteration: 13, Func. Count: 95, Neg. LLF: 150.06501714565553
Optimization terminated successfully (Exit mode 0)
Current function value: 150.06501714565553
Iterations: 13
Function evaluations: 95
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 158.49355971451942
Iteration: 2, Func. Count: 19, Neg. LLF: 150.91054881466172
Iteration: 3, Func. Count: 28, Neg. LLF: 150.50702251253907
Iteration: 4, Func. Count: 36, Neg. LLF: 150.50012455087298
Iteration: 5, Func. Count: 44, Neg. LLF: 150.49409947682616
Iteration: 6, Func. Count: 52, Neg. LLF: 150.4745179720017
Iteration: 7, Func. Count: 60, Neg. LLF: 150.41302333487923
Iteration: 8, Func. Count: 68, Neg. LLF: 150.30989224997148
Iteration: 9, Func. Count: 76, Neg. LLF: 150.09728217059006
Iteration: 10, Func. Count: 84, Neg. LLF: 150.0694783009357
Iteration: 11, Func. Count: 92, Neg. LLF: 150.06600271636592
Iteration: 12, Func. Count: 100, Neg. LLF: 150.06546288981824
Iteration: 13, Func. Count: 108, Neg. LLF: 150.06511039985443
Iteration: 14, Func. Count: 116, Neg. LLF: 150.0650245135323
Iteration: 15, Func. Count: 124, Neg. LLF: 150.06501731205722
Iteration: 16, Func. Count: 131, Neg. LLF: 150.06501734161083
Optimization terminated successfully (Exit mode 0)
Current function value: 150.06501731205722
Iterations: 16
Function evaluations: 131
Gradient evaluations: 16
Iteration: 1, Func. Count: 6, Neg. LLF: 155.7472379826581
Iteration: 2, Func. Count: 12, Neg. LLF: 156.0927561484407
Iteration: 3, Func. Count: 18, Neg. LLF: 150.8734693645743
Iteration: 4, Func. Count: 23, Neg. LLF: 150.51308340287522
Iteration: 5, Func. Count: 28, Neg. LLF: 150.16144225174847
Iteration: 6, Func. Count: 33, Neg. LLF: 150.07886793901545
Iteration: 7, Func. Count: 38, Neg. LLF: 150.06642805568416
Iteration: 8, Func. Count: 43, Neg. LLF: 150.06556916332593
Iteration: 9, Func. Count: 48, Neg. LLF: 150.06521876133536
Iteration: 10, Func. Count: 53, Neg. LLF: 150.06503621376078
Iteration: 11, Func. Count: 58, Neg. LLF: 150.06501775264098
Iteration: 12, Func. Count: 63, Neg. LLF: 150.0650171427521
Optimization terminated successfully (Exit mode 0)
Current function value: 150.0650171427521
Iterations: 12
Function evaluations: 63
Gradient evaluations: 12
Iteration: 1, Func. Count: 7, Neg. LLF: 151.8795174983054
Iteration: 2, Func. Count: 15, Neg. LLF: 151.93524273725188
Iteration: 3, Func. Count: 22, Neg. LLF: 150.47338895353843
Iteration: 4, Func. Count: 28, Neg. LLF: 150.46558165878773
Iteration: 5, Func. Count: 34, Neg. LLF: 150.44157651081065
Iteration: 6, Func. Count: 40, Neg. LLF: 150.27781117703393
Iteration: 7, Func. Count: 46, Neg. LLF: 150.08824320168023
Iteration: 8, Func. Count: 52, Neg. LLF: 150.07462387278065
Iteration: 9, Func. Count: 58, Neg. LLF: 150.0653112799544
Iteration: 10, Func. Count: 64, Neg. LLF: 150.06510781628666
Iteration: 11, Func. Count: 70, Neg. LLF: 150.0650442146818
Iteration: 12, Func. Count: 76, Neg. LLF: 150.0650194096788
Iteration: 13, Func. Count: 82, Neg. LLF: 150.06501722484174
Iteration: 14, Func. Count: 87, Neg. LLF: 150.06501724254497
Optimization terminated successfully (Exit mode 0)
Current function value: 150.06501722484174
Iterations: 14
Function evaluations: 87
Gradient evaluations: 14
Iteration: 1, Func. Count: 8, Neg. LLF: 151.72056579488316
Iteration: 2, Func. Count: 17, Neg. LLF: 151.82475014158024
Iteration: 3, Func. Count: 25, Neg. LLF: 150.5026162423618
Iteration: 4, Func. Count: 32, Neg. LLF: 150.46279701978082
Iteration: 5, Func. Count: 39, Neg. LLF: 150.45052643460346
Iteration: 6, Func. Count: 46, Neg. LLF: 150.40738448183282
Iteration: 7, Func. Count: 53, Neg. LLF: 150.16719549969034
Iteration: 8, Func. Count: 60, Neg. LLF: 150.0795000687363
Iteration: 9, Func. Count: 67, Neg. LLF: 150.07325658005735
Iteration: 10, Func. Count: 74, Neg. LLF: 150.06567588761484
Iteration: 11, Func. Count: 81, Neg. LLF: 150.0653563276954
Iteration: 12, Func. Count: 88, Neg. LLF: 150.06507078161516
Iteration: 13, Func. Count: 95, Neg. LLF: 150.06504449269767
Iteration: 14, Func. Count: 102, Neg. LLF: 150.06501750615067
Iteration: 15, Func. Count: 108, Neg. LLF: 150.0650175238892
Optimization terminated successfully (Exit mode 0)
Current function value: 150.06501750615067
Iterations: 15
Function evaluations: 108
Gradient evaluations: 15
Iteration: 1, Func. Count: 9, Neg. LLF: 153.8243403666568
Iteration: 2, Func. Count: 19, Neg. LLF: 151.78599526999318
Iteration: 3, Func. Count: 28, Neg. LLF: 150.4991446895498
Iteration: 4, Func. Count: 36, Neg. LLF: 150.4667730862957
Iteration: 5, Func. Count: 44, Neg. LLF: 150.45343031680926
Iteration: 6, Func. Count: 52, Neg. LLF: 150.41921806452063
Iteration: 7, Func. Count: 60, Neg. LLF: 150.3156995770141
Iteration: 8, Func. Count: 68, Neg. LLF: 150.14958459680207
Iteration: 9, Func. Count: 76, Neg. LLF: 150.12131946601127
Iteration: 10, Func. Count: 84, Neg. LLF: 150.0757160130354
Iteration: 11, Func. Count: 92, Neg. LLF: 150.06888124916588
Iteration: 12, Func. Count: 100, Neg. LLF: 150.0653868474486
Iteration: 13, Func. Count: 108, Neg. LLF: 150.06514238529948
Iteration: 14, Func. Count: 116, Neg. LLF: 150.06503492692104
Iteration: 15, Func. Count: 124, Neg. LLF: 150.06501817639526
Iteration: 16, Func. Count: 132, Neg. LLF: 150.06501715392693
Iteration: 17, Func. Count: 139, Neg. LLF: 150.06501718853463
Optimization terminated successfully (Exit mode 0)
Current function value: 150.06501715392693
Iterations: 17
Function evaluations: 139
Gradient evaluations: 17
Iteration: 1, Func. Count: 10, Neg. LLF: 156.61817584598242
Iteration: 2, Func. Count: 20, Neg. LLF: 150.6378733036203
Iteration: 3, Func. Count: 29, Neg. LLF: 150.6211817739757
Iteration: 4, Func. Count: 38, Neg. LLF: 150.60824995186803
Iteration: 5, Func. Count: 47, Neg. LLF: 150.6080903556842
Iteration: 6, Func. Count: 56, Neg. LLF: 150.60789096107902
Iteration: 7, Func. Count: 65, Neg. LLF: 150.60786229623136
Iteration: 8, Func. Count: 74, Neg. LLF: 150.60767492099885
Iteration: 9, Func. Count: 83, Neg. LLF: 150.60705764640088
Iteration: 10, Func. Count: 92, Neg. LLF: 150.60703206084142
Iteration: 11, Func. Count: 101, Neg. LLF: 150.6069012926338
Iteration: 12, Func. Count: 110, Neg. LLF: 150.60669922273289
Iteration: 13, Func. Count: 119, Neg. LLF: 150.60661482269234
Iteration: 14, Func. Count: 128, Neg. LLF: 150.60638312249677
Iteration: 15, Func. Count: 137, Neg. LLF: 150.60624990426655
Iteration: 16, Func. Count: 146, Neg. LLF: 150.60620774528783
Iteration: 17, Func. Count: 155, Neg. LLF: 150.60618155947768
Iteration: 18, Func. Count: 164, Neg. LLF: 150.60597304074932
Iteration: 19, Func. Count: 173, Neg. LLF: 150.6043711298661
Iteration: 20, Func. Count: 182, Neg. LLF: 150.5994010117585
Iteration: 21, Func. Count: 191, Neg. LLF: 150.60182058632907
Iteration: 22, Func. Count: 201, Neg. LLF: 150.59848241172293
Iteration: 23, Func. Count: 210, Neg. LLF: 511.0361652530784
Iteration: 24, Func. Count: 222, Neg. LLF: 150.67052382377875
Iteration: 25, Func. Count: 232, Neg. LLF: 150.56163513502887
Iteration: 26, Func. Count: 241, Neg. LLF: 150.55996686266528
Iteration: 27, Func. Count: 250, Neg. LLF: 150.55994497334103
Iteration: 28, Func. Count: 259, Neg. LLF: 150.55990512573752
Iteration: 29, Func. Count: 268, Neg. LLF: 150.55990405817602
Iteration: 30, Func. Count: 276, Neg. LLF: 150.5599040484949
Optimization terminated successfully (Exit mode 0)
Current function value: 150.55990405817602
Iterations: 31
Function evaluations: 276
Gradient evaluations: 30
Iteration: 1, Func. Count: 7, Neg. LLF: 154.90155284511303
Iteration: 2, Func. Count: 14, Neg. LLF: 154.76153051093587
Iteration: 3, Func. Count: 21, Neg. LLF: 150.84471750266437
Iteration: 4, Func. Count: 27, Neg. LLF: 152.66011341678782
Iteration: 5, Func. Count: 35, Neg. LLF: 150.13280931979355
Iteration: 6, Func. Count: 41, Neg. LLF: 150.08724480414128
Iteration: 7, Func. Count: 47, Neg. LLF: 150.0690597461873
Iteration: 8, Func. Count: 53, Neg. LLF: 150.06701862975717
Iteration: 9, Func. Count: 59, Neg. LLF: 150.0655459897644
Iteration: 10, Func. Count: 65, Neg. LLF: 150.06506712018435
Iteration: 11, Func. Count: 71, Neg. LLF: 150.06501758882658
Iteration: 12, Func. Count: 76, Neg. LLF: 150.06501761880008
Optimization terminated successfully (Exit mode 0)
Current function value: 150.06501758882658
Iterations: 12
Function evaluations: 76
Gradient evaluations: 12
Iteration: 1, Func. Count: 8, Neg. LLF: 152.20225204761317
Iteration: 2, Func. Count: 17, Neg. LLF: 151.89692506335956
Iteration: 3, Func. Count: 25, Neg. LLF: 150.47414956185108
Iteration: 4, Func. Count: 32, Neg. LLF: 150.46609084055734
Iteration: 5, Func. Count: 39, Neg. LLF: 150.44746494950337
Iteration: 6, Func. Count: 46, Neg. LLF: 150.32138953089483
Iteration: 7, Func. Count: 53, Neg. LLF: 150.14859541576496
Iteration: 8, Func. Count: 60, Neg. LLF: 150.0863185911599
Iteration: 9, Func. Count: 67, Neg. LLF: 150.06749620141954
Iteration: 10, Func. Count: 74, Neg. LLF: 150.0656563910412
Iteration: 11, Func. Count: 81, Neg. LLF: 150.06508563157962
Iteration: 12, Func. Count: 88, Neg. LLF: 150.06503475942878
Iteration: 13, Func. Count: 95, Neg. LLF: 150.06502101885377
Iteration: 14, Func. Count: 102, Neg. LLF: 150.06501756668388
Iteration: 15, Func. Count: 108, Neg. LLF: 150.06501758435462
Optimization terminated successfully (Exit mode 0)
Current function value: 150.06501756668388
Iterations: 15
Function evaluations: 108
Gradient evaluations: 15
Iteration: 1, Func. Count: 9, Neg. LLF: 152.95517530677148
Iteration: 2, Func. Count: 19, Neg. LLF: 151.8100848258199
Iteration: 3, Func. Count: 28, Neg. LLF: 150.50083497399402
Iteration: 4, Func. Count: 36, Neg. LLF: 150.46356037555722
Iteration: 5, Func. Count: 44, Neg. LLF: 150.45204325052353
Iteration: 6, Func. Count: 52, Neg. LLF: 150.42832935001454
Iteration: 7, Func. Count: 60, Neg. LLF: 150.32043143699403
Iteration: 8, Func. Count: 68, Neg. LLF: 150.13461070007347
Iteration: 9, Func. Count: 76, Neg. LLF: 150.10743324092806
Iteration: 10, Func. Count: 84, Neg. LLF: 150.0691575279098
Iteration: 11, Func. Count: 92, Neg. LLF: 150.06642648101084
Iteration: 12, Func. Count: 100, Neg. LLF: 150.0654531845546
Iteration: 13, Func. Count: 108, Neg. LLF: 150.065127315504
Iteration: 14, Func. Count: 116, Neg. LLF: 150.0650380059141
Iteration: 15, Func. Count: 124, Neg. LLF: 150.06501850019964
Iteration: 16, Func. Count: 132, Neg. LLF: 150.0650171775509
Iteration: 17, Func. Count: 139, Neg. LLF: 150.06501719530155
Optimization terminated successfully (Exit mode 0)
Current function value: 150.0650171775509
Iterations: 17
Function evaluations: 139
Gradient evaluations: 17
Iteration: 1, Func. Count: 10, Neg. LLF: 158.27398832390736
Iteration: 2, Func. Count: 20, Neg. LLF: 150.65001189409085
Iteration: 3, Func. Count: 29, Neg. LLF: 150.63691238084093
Iteration: 4, Func. Count: 38, Neg. LLF: 150.61402193861755
Iteration: 5, Func. Count: 47, Neg. LLF: 150.60791941738242
Iteration: 6, Func. Count: 56, Neg. LLF: 150.60766975702126
Iteration: 7, Func. Count: 65, Neg. LLF: 150.60765383724853
Iteration: 8, Func. Count: 74, Neg. LLF: 150.60762565435658
Iteration: 9, Func. Count: 83, Neg. LLF: 150.60745629133066
Iteration: 10, Func. Count: 92, Neg. LLF: 150.60702768204112
Iteration: 11, Func. Count: 101, Neg. LLF: 150.60691977571446
Iteration: 12, Func. Count: 110, Neg. LLF: 150.60666438849844
Iteration: 13, Func. Count: 119, Neg. LLF: 150.6066466188162
Iteration: 14, Func. Count: 128, Neg. LLF: 150.6066362530985
Iteration: 15, Func. Count: 137, Neg. LLF: 150.60658051427848
Iteration: 16, Func. Count: 146, Neg. LLF: 150.60648689069828
Iteration: 17, Func. Count: 155, Neg. LLF: 150.60629789137724
Iteration: 18, Func. Count: 164, Neg. LLF: 150.62291953774763
Iteration: 19, Func. Count: 174, Neg. LLF: 150.62292024797978
Iteration: 20, Func. Count: 184, Neg. LLF: 150.61967794901108
Iteration: 21, Func. Count: 194, Neg. LLF: 150.62288690575983
Iteration: 22, Func. Count: 204, Neg. LLF: 150.6121145500014
Iteration: 23, Func. Count: 214, Neg. LLF: 150.6054261446209
Iteration: 24, Func. Count: 223, Neg. LLF: 150.6113146229798
Iteration: 25, Func. Count: 233, Neg. LLF: 150.60535270516624
Iteration: 26, Func. Count: 242, Neg. LLF: 150.6052092159724
Iteration: 27, Func. Count: 251, Neg. LLF: 150.60480980343254
Iteration: 28, Func. Count: 260, Neg. LLF: 150.60385251336714
Iteration: 29, Func. Count: 269, Neg. LLF: 150.6024543951767
Iteration: 30, Func. Count: 278, Neg. LLF: 150.60677709059303
Iteration: 31, Func. Count: 288, Neg. LLF: 150.59610000196446
Iteration: 32, Func. Count: 297, Neg. LLF: 150.58338574049137
Iteration: 33, Func. Count: 306, Neg. LLF: 150.56811862768413
Iteration: 34, Func. Count: 315, Neg. LLF: 150.52690701089517
Iteration: 35, Func. Count: 324, Neg. LLF: 152.0493859225822
Iteration: 36, Func. Count: 334, Neg. LLF: 175.09565551678992
Iteration: 37, Func. Count: 345, Neg. LLF: 252.91056114803462
Iteration: 38, Func. Count: 356, Neg. LLF: 150.04507917384396
Iteration: 39, Func. Count: 365, Neg. LLF: 150.05037159982658
Iteration: 40, Func. Count: 375, Neg. LLF: 150.04460410254708
Iteration: 41, Func. Count: 385, Neg. LLF: 150.03866734322628
Iteration: 42, Func. Count: 394, Neg. LLF: 150.03866028724758
Iteration: 43, Func. Count: 402, Neg. LLF: 150.03866025486192
Optimization terminated successfully (Exit mode 0)
Current function value: 150.03866028724758
Iterations: 44
Function evaluations: 402
Gradient evaluations: 43
Iteration: 1, Func. Count: 11, Neg. LLF: 156.57811753251445
Iteration: 2, Func. Count: 22, Neg. LLF: 150.6387824090532
Iteration: 3, Func. Count: 32, Neg. LLF: 150.6205395696146
Iteration: 4, Func. Count: 42, Neg. LLF: 150.60810813023676
Iteration: 5, Func. Count: 52, Neg. LLF: 150.60800612410665
Iteration: 6, Func. Count: 62, Neg. LLF: 150.60791035743526
Iteration: 7, Func. Count: 72, Neg. LLF: 150.60787591430116
Iteration: 8, Func. Count: 82, Neg. LLF: 150.60762063953337
Iteration: 9, Func. Count: 92, Neg. LLF: 150.60710620520192
Iteration: 10, Func. Count: 102, Neg. LLF: 150.60705361495164
Iteration: 11, Func. Count: 112, Neg. LLF: 150.60697824415172
Iteration: 12, Func. Count: 122, Neg. LLF: 150.6069272015822
Iteration: 13, Func. Count: 132, Neg. LLF: 150.60666688983238
Iteration: 14, Func. Count: 142, Neg. LLF: 150.60651097914467
Iteration: 15, Func. Count: 152, Neg. LLF: 150.6062563980561
Iteration: 16, Func. Count: 162, Neg. LLF: 150.60622219383356
Iteration: 17, Func. Count: 172, Neg. LLF: 150.60619638696124
Iteration: 18, Func. Count: 182, Neg. LLF: 150.60606809353825
Iteration: 19, Func. Count: 192, Neg. LLF: 150.6062953604672
Iteration: 20, Func. Count: 203, Neg. LLF: 150.60596955554652
Iteration: 21, Func. Count: 214, Neg. LLF: 150.60475336686423
Iteration: 22, Func. Count: 224, Neg. LLF: 150.59939331674576
Iteration: 23, Func. Count: 234, Neg. LLF: 150.64881850122418
Iteration: 24, Func. Count: 247, Neg. LLF: 188.97306927473267
Iteration: 25, Func. Count: 267, Neg. LLF: 162.1500239664722
Iteration: 26, Func. Count: 287, Neg. LLF: 169.51009219996382
Iteration: 27, Func. Count: 307, Neg. LLF: 340.7042539879745
Iteration: 28, Func. Count: 327, Neg. LLF: 177.51438118111406
Iteration: 29, Func. Count: 347, Neg. LLF: 155.96933396949322
Iteration: 30, Func. Count: 361, Neg. LLF: 150.7469896958656
Iteration: 31, Func. Count: 375, Neg. LLF: 177.20355571080515
Iteration: 32, Func. Count: 387, Neg. LLF: 150.56493054869534
Iteration: 33, Func. Count: 397, Neg. LLF: 150.5625839405876
Iteration: 34, Func. Count: 407, Neg. LLF: 150.56003257807967
Iteration: 35, Func. Count: 417, Neg. LLF: 150.5599964063321
Iteration: 36, Func. Count: 428, Neg. LLF: 150.55990524041064
Iteration: 37, Func. Count: 438, Neg. LLF: 150.5599040426816
Iteration: 38, Func. Count: 447, Neg. LLF: 150.55990403307354
Optimization terminated successfully (Exit mode 0)
Current function value: 150.5599040426816
Iterations: 39
Function evaluations: 447
Gradient evaluations: 38
Iteration: 1, Func. Count: 8, Neg. LLF: 154.42674719364453
Iteration: 2, Func. Count: 16, Neg. LLF: 154.55969141294463
Iteration: 3, Func. Count: 24, Neg. LLF: 150.8274600748917
Iteration: 4, Func. Count: 31, Neg. LLF: 150.22181764076075
Iteration: 5, Func. Count: 38, Neg. LLF: 150.1117434110675
Iteration: 6, Func. Count: 45, Neg. LLF: 150.07683210458615
Iteration: 7, Func. Count: 52, Neg. LLF: 150.0703431874952
Iteration: 8, Func. Count: 59, Neg. LLF: 150.06736734736782
Iteration: 9, Func. Count: 66, Neg. LLF: 150.06547465394738
Iteration: 10, Func. Count: 73, Neg. LLF: 150.0650333664741
Iteration: 11, Func. Count: 80, Neg. LLF: 150.06501721272426
Iteration: 12, Func. Count: 86, Neg. LLF: 150.06501727273974
Optimization terminated successfully (Exit mode 0)
Current function value: 150.06501721272426
Iterations: 12
Function evaluations: 86
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 152.1863648216867
Iteration: 2, Func. Count: 19, Neg. LLF: 151.90042757138323
Iteration: 3, Func. Count: 28, Neg. LLF: 150.474006357032
Iteration: 4, Func. Count: 36, Neg. LLF: 150.46627380572434
Iteration: 5, Func. Count: 44, Neg. LLF: 150.4476626201546
Iteration: 6, Func. Count: 52, Neg. LLF: 150.31810623592537
Iteration: 7, Func. Count: 60, Neg. LLF: 150.1662216950472
Iteration: 8, Func. Count: 68, Neg. LLF: 150.08991417390615
Iteration: 9, Func. Count: 76, Neg. LLF: 150.06908795186982
Iteration: 10, Func. Count: 84, Neg. LLF: 150.06616883609618
Iteration: 11, Func. Count: 92, Neg. LLF: 150.06512895299917
Iteration: 12, Func. Count: 100, Neg. LLF: 150.06504009057718
Iteration: 13, Func. Count: 108, Neg. LLF: 150.06502190464352
Iteration: 14, Func. Count: 116, Neg. LLF: 150.0650176177402
Iteration: 15, Func. Count: 123, Neg. LLF: 150.0650176354194
Optimization terminated successfully (Exit mode 0)
Current function value: 150.0650176177402
Iterations: 15
Function evaluations: 123
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 153.18851319434626
Iteration: 2, Func. Count: 21, Neg. LLF: 151.8096830320763
Iteration: 3, Func. Count: 31, Neg. LLF: 150.50100409909373
Iteration: 4, Func. Count: 40, Neg. LLF: 150.4636021238147
Iteration: 5, Func. Count: 49, Neg. LLF: 150.45241570556408
Iteration: 6, Func. Count: 58, Neg. LLF: 150.42616983325937
Iteration: 7, Func. Count: 67, Neg. LLF: 150.3351450322748
Iteration: 8, Func. Count: 76, Neg. LLF: 150.17547647711953
Iteration: 9, Func. Count: 85, Neg. LLF: 150.11395395734354
Iteration: 10, Func. Count: 94, Neg. LLF: 150.08386858749685
Iteration: 11, Func. Count: 103, Neg. LLF: 150.06747790936308
Iteration: 12, Func. Count: 112, Neg. LLF: 150.06619547688862
Iteration: 13, Func. Count: 121, Neg. LLF: 150.06516703875835
Iteration: 14, Func. Count: 130, Neg. LLF: 150.06506125111665
Iteration: 15, Func. Count: 139, Neg. LLF: 150.06501867732823
Iteration: 16, Func. Count: 148, Neg. LLF: 150.0650171807895
Iteration: 17, Func. Count: 156, Neg. LLF: 150.06501719854387
Optimization terminated successfully (Exit mode 0)
Current function value: 150.0650171807895
Iterations: 17
Function evaluations: 156
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 158.26753125892947
Iteration: 2, Func. Count: 22, Neg. LLF: 150.65004774692568
Iteration: 3, Func. Count: 32, Neg. LLF: 150.6371015085553
Iteration: 4, Func. Count: 42, Neg. LLF: 150.61406539315345
Iteration: 5, Func. Count: 52, Neg. LLF: 150.60789405397725
Iteration: 6, Func. Count: 62, Neg. LLF: 150.6076622862599
Iteration: 7, Func. Count: 72, Neg. LLF: 150.60764751728476
Iteration: 8, Func. Count: 82, Neg. LLF: 150.60761545527197
Iteration: 9, Func. Count: 92, Neg. LLF: 150.60748133884735
Iteration: 10, Func. Count: 102, Neg. LLF: 150.60706911218614
Iteration: 11, Func. Count: 112, Neg. LLF: 150.60697011171627
Iteration: 12, Func. Count: 122, Neg. LLF: 150.60670423377277
Iteration: 13, Func. Count: 132, Neg. LLF: 150.60666457678582
Iteration: 14, Func. Count: 142, Neg. LLF: 150.60665614944182
Iteration: 15, Func. Count: 152, Neg. LLF: 150.606602342066
Iteration: 16, Func. Count: 162, Neg. LLF: 150.60636270894184
Iteration: 17, Func. Count: 172, Neg. LLF: 150.6058870411885
Iteration: 18, Func. Count: 182, Neg. LLF: 150.60615992936812
Iteration: 19, Func. Count: 194, Neg. LLF: 150.60573267746003
Iteration: 20, Func. Count: 204, Neg. LLF: 150.6161268421473
Iteration: 21, Func. Count: 215, Neg. LLF: 150.61414293776448
Iteration: 22, Func. Count: 226, Neg. LLF: 150.64296735139482
Optimization terminated successfully (Exit mode 0)
Current function value: 150.6053697565753
Iterations: 22
Function evaluations: 236
Gradient evaluations: 22
Iteration: 1, Func. Count: 12, Neg. LLF: 156.58229076430231
Iteration: 2, Func. Count: 24, Neg. LLF: 150.63854601905044
Iteration: 3, Func. Count: 35, Neg. LLF: 150.62027056084167
Iteration: 4, Func. Count: 46, Neg. LLF: 150.60805973868733
Iteration: 5, Func. Count: 57, Neg. LLF: 150.60799250901803
Iteration: 6, Func. Count: 68, Neg. LLF: 150.607926390081
Iteration: 7, Func. Count: 79, Neg. LLF: 150.60788272884275
Iteration: 8, Func. Count: 90, Neg. LLF: 150.60756319097084
Iteration: 9, Func. Count: 101, Neg. LLF: 150.6072254244813
Iteration: 10, Func. Count: 112, Neg. LLF: 150.60709873922175
Iteration: 11, Func. Count: 123, Neg. LLF: 150.60693727600247
Iteration: 12, Func. Count: 134, Neg. LLF: 150.60690647263743
Iteration: 13, Func. Count: 145, Neg. LLF: 150.60670711624905
Iteration: 14, Func. Count: 156, Neg. LLF: 150.60743519598384
Iteration: 15, Func. Count: 168, Neg. LLF: 150.60711146396713
Iteration: 16, Func. Count: 180, Neg. LLF: 150.6062445297193
Iteration: 17, Func. Count: 191, Neg. LLF: 150.60621511987347
Iteration: 18, Func. Count: 202, Neg. LLF: 150.60617247127078
Iteration: 19, Func. Count: 213, Neg. LLF: 150.6059879648437
Iteration: 20, Func. Count: 224, Neg. LLF: 150.60625144442176
Iteration: 21, Func. Count: 236, Neg. LLF: 150.60574422263878
Iteration: 22, Func. Count: 247, Neg. LLF: 150.60469965866847
Iteration: 23, Func. Count: 258, Neg. LLF: 150.59890285214098
Iteration: 24, Func. Count: 269, Neg. LLF: 166.30288474976706
Iteration: 25, Func. Count: 282, Neg. LLF: 150.57317806660726
Iteration: 26, Func. Count: 293, Neg. LLF: 150.56337200052462
Iteration: 27, Func. Count: 304, Neg. LLF: 150.56002136359854
Iteration: 28, Func. Count: 315, Neg. LLF: 150.55991562830448
Iteration: 29, Func. Count: 326, Neg. LLF: 150.5599081885534
Iteration: 30, Func. Count: 337, Neg. LLF: 150.5599040830812
Iteration: 31, Func. Count: 347, Neg. LLF: 150.5599040735012
Optimization terminated successfully (Exit mode 0)
Current function value: 150.5599040830812
Iterations: 32
Function evaluations: 347
Gradient evaluations: 31
Iteration: 1, Func. Count: 5, Neg. LLF: 153.80796635316145
Iteration: 2, Func. Count: 10, Neg. LLF: 156.34137626804304
Iteration: 3, Func. Count: 15, Neg. LLF: 150.87804452736313
Iteration: 4, Func. Count: 19, Neg. LLF: 150.7897557451538
Iteration: 5, Func. Count: 23, Neg. LLF: 150.75136795666216
Iteration: 6, Func. Count: 27, Neg. LLF: 150.6345026479676
Iteration: 7, Func. Count: 31, Neg. LLF: 150.61444221786346
Iteration: 8, Func. Count: 35, Neg. LLF: 150.61198735600644
Iteration: 9, Func. Count: 39, Neg. LLF: 150.61186930160312
Iteration: 10, Func. Count: 43, Neg. LLF: 150.61186216380472
Iteration: 11, Func. Count: 46, Neg. LLF: 150.6118621638235
Optimization terminated successfully (Exit mode 0)
Current function value: 150.61186216380472
Iterations: 11
Function evaluations: 46
Gradient evaluations: 11
Iteration: 1, Func. Count: 6, Neg. LLF: 155.08747156436468
Iteration: 2, Func. Count: 13, Neg. LLF: 150.71973187700237
Iteration: 3, Func. Count: 18, Neg. LLF: 150.7174730634366
Iteration: 4, Func. Count: 23, Neg. LLF: 150.7171078121119
Iteration: 5, Func. Count: 27, Neg. LLF: 150.7171078120107
Optimization terminated successfully (Exit mode 0)
Current function value: 150.7171078121119
Iterations: 5
Function evaluations: 27
Gradient evaluations: 5
Iteration: 1, Func. Count: 7, Neg. LLF: 152.07067451900267
Iteration: 2, Func. Count: 15, Neg. LLF: 150.71343710796356
Iteration: 3, Func. Count: 21, Neg. LLF: 150.71019965878838
Iteration: 4, Func. Count: 27, Neg. LLF: 150.7095745134522
Iteration: 5, Func. Count: 33, Neg. LLF: 150.70873485560156
Iteration: 6, Func. Count: 39, Neg. LLF: 150.7054019818194
Iteration: 7, Func. Count: 45, Neg. LLF: 150.70463570102595
Iteration: 8, Func. Count: 51, Neg. LLF: 150.70419573913625
Iteration: 9, Func. Count: 57, Neg. LLF: 150.7041946485952
Iteration: 10, Func. Count: 63, Neg. LLF: 150.70418722376652
Iteration: 11, Func. Count: 69, Neg. LLF: 150.7041449522224
Iteration: 12, Func. Count: 75, Neg. LLF: 150.7039071795098
Iteration: 13, Func. Count: 81, Neg. LLF: 150.70229059831226
Iteration: 14, Func. Count: 87, Neg. LLF: 150.6488776596477
Iteration: 15, Func. Count: 93, Neg. LLF: 150.65597628076716
Iteration: 16, Func. Count: 100, Neg. LLF: 150.71837153504632
Iteration: 17, Func. Count: 108, Neg. LLF: 150.60597566606128
Iteration: 18, Func. Count: 114, Neg. LLF: 150.6059483289878
Iteration: 19, Func. Count: 120, Neg. LLF: 150.60594673067962
Iteration: 20, Func. Count: 126, Neg. LLF: 150.60594385362813
Iteration: 21, Func. Count: 131, Neg. LLF: 150.60594384716228
Optimization terminated successfully (Exit mode 0)
Current function value: 150.60594385362813
Iterations: 21
Function evaluations: 131
Gradient evaluations: 21
Iteration: 1, Func. Count: 8, Neg. LLF: 153.5789125117923
Iteration: 2, Func. Count: 17, Neg. LLF: 150.70886452211437
Iteration: 3, Func. Count: 24, Neg. LLF: 150.7052810485563
Iteration: 4, Func. Count: 31, Neg. LLF: 150.703827629415
Iteration: 5, Func. Count: 38, Neg. LLF: 150.70153168783418
Iteration: 6, Func. Count: 45, Neg. LLF: 150.70118962439216
Iteration: 7, Func. Count: 52, Neg. LLF: 150.70048456861505
Iteration: 8, Func. Count: 59, Neg. LLF: 150.70030875744098
Iteration: 9, Func. Count: 66, Neg. LLF: 150.69985989072148
Iteration: 10, Func. Count: 73, Neg. LLF: 150.69969571227847
Iteration: 11, Func. Count: 80, Neg. LLF: 150.69962579238097
Iteration: 12, Func. Count: 87, Neg. LLF: 150.69962288089147
Iteration: 13, Func. Count: 94, Neg. LLF: 150.69961847311097
Iteration: 14, Func. Count: 101, Neg. LLF: 150.69960749990548
Iteration: 15, Func. Count: 108, Neg. LLF: 150.69957771694254
Iteration: 16, Func. Count: 115, Neg. LLF: 150.69949692721758
Iteration: 17, Func. Count: 122, Neg. LLF: 150.69927687316718
Iteration: 18, Func. Count: 129, Neg. LLF: 150.6984569579417
Iteration: 19, Func. Count: 136, Neg. LLF: 150.71491403528424
Iteration: 20, Func. Count: 144, Neg. LLF: 150.93676214998402
Iteration: 21, Func. Count: 152, Neg. LLF: 150.92240487129263
Iteration: 22, Func. Count: 160, Neg. LLF: 150.89535156767354
Iteration: 23, Func. Count: 168, Neg. LLF: 150.8676256676675
Iteration: 24, Func. Count: 176, Neg. LLF: 150.79541500797117
Iteration: 25, Func. Count: 184, Neg. LLF: 150.80841649447316
Iteration: 26, Func. Count: 192, Neg. LLF: 150.7504737906743
Iteration: 27, Func. Count: 200, Neg. LLF: 150.6937000902445
Iteration: 28, Func. Count: 208, Neg. LLF: 150.77512501436706
Iteration: 29, Func. Count: 216, Neg. LLF: 150.72941383932636
Iteration: 30, Func. Count: 224, Neg. LLF: 150.67743054862348
Iteration: 31, Func. Count: 231, Neg. LLF: 150.63913176947477
Iteration: 32, Func. Count: 238, Neg. LLF: 150.6095869004047
Iteration: 33, Func. Count: 245, Neg. LLF: 150.60592723001952
Iteration: 34, Func. Count: 252, Neg. LLF: 150.6057982184179
Iteration: 35, Func. Count: 259, Neg. LLF: 150.605792975895
Iteration: 36, Func. Count: 266, Neg. LLF: 150.60578549218937
Iteration: 37, Func. Count: 272, Neg. LLF: 150.60578548692877
Optimization terminated successfully (Exit mode 0)
Current function value: 150.60578549218937
Iterations: 37
Function evaluations: 272
Gradient evaluations: 37
Iteration: 1, Func. Count: 9, Neg. LLF: 173.1961225522026
Iteration: 2, Func. Count: 19, Neg. LLF: 150.70317192019772
Iteration: 3, Func. Count: 27, Neg. LLF: 150.69797108659583
Iteration: 4, Func. Count: 35, Neg. LLF: 150.69501227000688
Iteration: 5, Func. Count: 43, Neg. LLF: 150.69281251021704
Iteration: 6, Func. Count: 51, Neg. LLF: 150.6895960949938
Iteration: 7, Func. Count: 59, Neg. LLF: 150.68918640612105
Iteration: 8, Func. Count: 67, Neg. LLF: 150.68916621160645
Iteration: 9, Func. Count: 75, Neg. LLF: 150.68912503914768
Iteration: 10, Func. Count: 83, Neg. LLF: 150.68909597934325
Iteration: 11, Func. Count: 91, Neg. LLF: 150.68894221491846
Iteration: 12, Func. Count: 99, Neg. LLF: 150.6885960793
Iteration: 13, Func. Count: 107, Neg. LLF: 150.6875536605488
Iteration: 14, Func. Count: 115, Neg. LLF: 150.68367093262745
Iteration: 15, Func. Count: 123, Neg. LLF: 150.76033046127247
Iteration: 16, Func. Count: 132, Neg. LLF: 150.74126772113073
Iteration: 17, Func. Count: 141, Neg. LLF: 150.74211742472644
Iteration: 18, Func. Count: 150, Neg. LLF: 150.73025603189024
Iteration: 19, Func. Count: 159, Neg. LLF: 150.7028981053038
Iteration: 20, Func. Count: 168, Neg. LLF: 150.66544481970845
Iteration: 21, Func. Count: 176, Neg. LLF: 150.65837412652155
Iteration: 22, Func. Count: 184, Neg. LLF: 150.62567521235343
Iteration: 23, Func. Count: 192, Neg. LLF: 150.6125471454929
Iteration: 24, Func. Count: 200, Neg. LLF: 150.60442114888127
Iteration: 25, Func. Count: 208, Neg. LLF: 150.59622563426225
Iteration: 26, Func. Count: 216, Neg. LLF: 150.584202882113
Iteration: 27, Func. Count: 224, Neg. LLF: 150.5748661938016
Iteration: 28, Func. Count: 232, Neg. LLF: 150.57060640156953
Iteration: 29, Func. Count: 240, Neg. LLF: 150.57022136716805
Iteration: 30, Func. Count: 248, Neg. LLF: 150.57020913836644
Iteration: 31, Func. Count: 256, Neg. LLF: 150.57020851111102
Optimization terminated successfully (Exit mode 0)
Current function value: 150.57020851111102
Iterations: 31
Function evaluations: 256
Gradient evaluations: 31
Iteration: 1, Func. Count: 6, Neg. LLF: 158.99897341645607
Iteration: 2, Func. Count: 12, Neg. LLF: 151.84505591729769
Iteration: 3, Func. Count: 18, Neg. LLF: 150.40391999013616
Iteration: 4, Func. Count: 23, Neg. LLF: 150.31167074781771
Iteration: 5, Func. Count: 28, Neg. LLF: 150.27477242540778
Iteration: 6, Func. Count: 33, Neg. LLF: 150.21589373880806
Iteration: 7, Func. Count: 38, Neg. LLF: 150.12129155610043
Iteration: 8, Func. Count: 43, Neg. LLF: 150.07997114425754
Iteration: 9, Func. Count: 48, Neg. LLF: 150.06684813505305
Iteration: 10, Func. Count: 53, Neg. LLF: 150.0649108538579
Iteration: 11, Func. Count: 58, Neg. LLF: 150.06482637530567
Iteration: 12, Func. Count: 63, Neg. LLF: 150.06478936463756
Iteration: 13, Func. Count: 68, Neg. LLF: 150.0647876652058
Iteration: 14, Func. Count: 72, Neg. LLF: 150.06478766520146
Optimization terminated successfully (Exit mode 0)
Current function value: 150.0647876652058
Iterations: 14
Function evaluations: 72
Gradient evaluations: 14
Iteration: 1, Func. Count: 7, Neg. LLF: 150.76449832772764
Iteration: 2, Func. Count: 14, Neg. LLF: 150.67098854964513
Iteration: 3, Func. Count: 21, Neg. LLF: 150.4590492789302
Iteration: 4, Func. Count: 27, Neg. LLF: 150.4229711588043
Iteration: 5, Func. Count: 33, Neg. LLF: 150.29485276797072
Iteration: 6, Func. Count: 39, Neg. LLF: 150.07458571335994
Iteration: 7, Func. Count: 45, Neg. LLF: 150.06960642508153
Iteration: 8, Func. Count: 51, Neg. LLF: 150.0653120367225
Iteration: 9, Func. Count: 57, Neg. LLF: 150.06525334605237
Iteration: 10, Func. Count: 63, Neg. LLF: 150.06506445449594
Iteration: 11, Func. Count: 69, Neg. LLF: 150.0650391691471
Iteration: 12, Func. Count: 75, Neg. LLF: 150.0650224285228
Iteration: 13, Func. Count: 81, Neg. LLF: 150.06501890926754
Iteration: 14, Func. Count: 87, Neg. LLF: 150.0650172740583
Iteration: 15, Func. Count: 92, Neg. LLF: 150.06501729175744
Optimization terminated successfully (Exit mode 0)
Current function value: 150.0650172740583
Iterations: 15
Function evaluations: 92
Gradient evaluations: 15
Iteration: 1, Func. Count: 8, Neg. LLF: 154.34092308983773
Iteration: 2, Func. Count: 17, Neg. LLF: 151.7511684974955
Iteration: 3, Func. Count: 25, Neg. LLF: 150.47088643816397
Iteration: 4, Func. Count: 32, Neg. LLF: 150.46232566255748
Iteration: 5, Func. Count: 39, Neg. LLF: 150.45007128637724
Iteration: 6, Func. Count: 46, Neg. LLF: 150.41337648879892
Iteration: 7, Func. Count: 53, Neg. LLF: 150.1177936237979
Iteration: 8, Func. Count: 60, Neg. LLF: 150.08548881951316
Iteration: 9, Func. Count: 67, Neg. LLF: 150.07230318589887
Iteration: 10, Func. Count: 74, Neg. LLF: 150.06644758327866
Iteration: 11, Func. Count: 81, Neg. LLF: 150.06594519436717
Iteration: 12, Func. Count: 88, Neg. LLF: 150.06592788972364
Iteration: 13, Func. Count: 95, Neg. LLF: 150.0659193746998
Iteration: 14, Func. Count: 102, Neg. LLF: 150.06590447925848
Iteration: 15, Func. Count: 109, Neg. LLF: 150.06588134632148
Iteration: 16, Func. Count: 116, Neg. LLF: 150.0658103196134
Iteration: 17, Func. Count: 123, Neg. LLF: 150.06565932720295
Iteration: 18, Func. Count: 130, Neg. LLF: 150.0654835010077
Iteration: 19, Func. Count: 137, Neg. LLF: 150.06507529702534
Iteration: 20, Func. Count: 144, Neg. LLF: 150.06480417670872
Iteration: 21, Func. Count: 151, Neg. LLF: 150.06478841337284
Iteration: 22, Func. Count: 158, Neg. LLF: 150.06478759708628
Optimization terminated successfully (Exit mode 0)
Current function value: 150.06478759708628
Iterations: 22
Function evaluations: 158
Gradient evaluations: 22
Iteration: 1, Func. Count: 9, Neg. LLF: 158.28615412645024
Iteration: 2, Func. Count: 19, Neg. LLF: 150.90069028118324
Iteration: 3, Func. Count: 28, Neg. LLF: 150.4714338596692
Iteration: 4, Func. Count: 36, Neg. LLF: 150.46412567201233
Iteration: 5, Func. Count: 44, Neg. LLF: 150.4508705535268
Iteration: 6, Func. Count: 52, Neg. LLF: 150.4037822721096
Iteration: 7, Func. Count: 60, Neg. LLF: 150.22865065980298
Iteration: 8, Func. Count: 68, Neg. LLF: 150.1141060218539
Iteration: 9, Func. Count: 76, Neg. LLF: 150.07715673457184
Iteration: 10, Func. Count: 84, Neg. LLF: 150.066982167339
Iteration: 11, Func. Count: 92, Neg. LLF: 150.06578593292764
Iteration: 12, Func. Count: 100, Neg. LLF: 150.06503374441277
Iteration: 13, Func. Count: 108, Neg. LLF: 150.06501989955936
Iteration: 14, Func. Count: 116, Neg. LLF: 150.06501782626918
Iteration: 15, Func. Count: 124, Neg. LLF: 150.0650171764095
Optimization terminated successfully (Exit mode 0)
Current function value: 150.0650171764095
Iterations: 15
Function evaluations: 124
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 157.4265600513057
Iteration: 2, Func. Count: 21, Neg. LLF: 151.31106836957443
Iteration: 3, Func. Count: 31, Neg. LLF: 150.5156077431085
Iteration: 4, Func. Count: 40, Neg. LLF: 150.50295035595195
Iteration: 5, Func. Count: 49, Neg. LLF: 150.48015482576375
Iteration: 6, Func. Count: 58, Neg. LLF: 150.47234234269055
Iteration: 7, Func. Count: 67, Neg. LLF: 150.42127588566402
Iteration: 8, Func. Count: 76, Neg. LLF: 150.07684289254172
Iteration: 9, Func. Count: 85, Neg. LLF: 150.0672576669437
Iteration: 10, Func. Count: 94, Neg. LLF: 150.0656604101078
Iteration: 11, Func. Count: 103, Neg. LLF: 150.0650273180695
Iteration: 12, Func. Count: 112, Neg. LLF: 150.06501914830923
Iteration: 13, Func. Count: 121, Neg. LLF: 150.06501816275613
Optimization terminated successfully (Exit mode 0)
Current function value: 150.06501816275613
Iterations: 13
Function evaluations: 121
Gradient evaluations: 13
Iteration: 1, Func. Count: 7, Neg. LLF: 159.06865982892592
Iteration: 2, Func. Count: 14, Neg. LLF: 151.92741528118626
Iteration: 3, Func. Count: 21, Neg. LLF: 150.4137752832166
Iteration: 4, Func. Count: 27, Neg. LLF: 150.31959469139846
Iteration: 5, Func. Count: 33, Neg. LLF: 150.28099354849317
Iteration: 6, Func. Count: 39, Neg. LLF: 150.22548374390112
Iteration: 7, Func. Count: 45, Neg. LLF: 150.14052137074253
Iteration: 8, Func. Count: 51, Neg. LLF: 150.09167826327402
Iteration: 9, Func. Count: 57, Neg. LLF: 150.06754159746126
Iteration: 10, Func. Count: 63, Neg. LLF: 150.06489353954518
Iteration: 11, Func. Count: 69, Neg. LLF: 150.06482150950578
Iteration: 12, Func. Count: 75, Neg. LLF: 150.06479208810183
Iteration: 13, Func. Count: 81, Neg. LLF: 150.06478786825406
Iteration: 14, Func. Count: 86, Neg. LLF: 150.06478789738406
Optimization terminated successfully (Exit mode 0)
Current function value: 150.06478786825406
Iterations: 14
Function evaluations: 86
Gradient evaluations: 14
Iteration: 1, Func. Count: 8, Neg. LLF: 151.8785161487911
Iteration: 2, Func. Count: 17, Neg. LLF: 151.89536384844766
Iteration: 3, Func. Count: 25, Neg. LLF: 150.4714903758634
Iteration: 4, Func. Count: 32, Neg. LLF: 150.46562947221017
Iteration: 5, Func. Count: 39, Neg. LLF: 150.4463141011225
Iteration: 6, Func. Count: 46, Neg. LLF: 150.33279613044678
Iteration: 7, Func. Count: 53, Neg. LLF: 150.15186062173032
Iteration: 8, Func. Count: 60, Neg. LLF: 150.07762090301404
Iteration: 9, Func. Count: 67, Neg. LLF: 150.06556167398352
Iteration: 10, Func. Count: 74, Neg. LLF: 150.0652352008062
Iteration: 11, Func. Count: 81, Neg. LLF: 150.06510518206892
Iteration: 12, Func. Count: 88, Neg. LLF: 150.0650259401156
Iteration: 13, Func. Count: 95, Neg. LLF: 150.0650177707335
Iteration: 14, Func. Count: 102, Neg. LLF: 150.06501718943574
Optimization terminated successfully (Exit mode 0)
Current function value: 150.06501718943574
Iterations: 14
Function evaluations: 102
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 152.84301372294735
Iteration: 2, Func. Count: 19, Neg. LLF: 151.7998946277459
Iteration: 3, Func. Count: 28, Neg. LLF: 150.49591995298775
Iteration: 4, Func. Count: 36, Neg. LLF: 150.46278060308276
Iteration: 5, Func. Count: 44, Neg. LLF: 150.45048441090813
Iteration: 6, Func. Count: 52, Neg. LLF: 150.42897517044509
Iteration: 7, Func. Count: 60, Neg. LLF: 150.32178716043757
Iteration: 8, Func. Count: 68, Neg. LLF: 150.10013656850177
Iteration: 9, Func. Count: 76, Neg. LLF: 150.0820009584024
Iteration: 10, Func. Count: 84, Neg. LLF: 150.07175395988588
Iteration: 11, Func. Count: 92, Neg. LLF: 150.0676026013754
Iteration: 12, Func. Count: 100, Neg. LLF: 150.0655502732491
Iteration: 13, Func. Count: 108, Neg. LLF: 150.06504967330125
Iteration: 14, Func. Count: 116, Neg. LLF: 150.065021255613
Iteration: 15, Func. Count: 124, Neg. LLF: 150.06501851065872
Iteration: 16, Func. Count: 132, Neg. LLF: 150.0650173778773
Iteration: 17, Func. Count: 139, Neg. LLF: 150.0650173956176
Optimization terminated successfully (Exit mode 0)
Current function value: 150.0650173778773
Iterations: 17
Function evaluations: 139
Gradient evaluations: 17
Iteration: 1, Func. Count: 10, Neg. LLF: 153.62142899014003
Iteration: 2, Func. Count: 21, Neg. LLF: 151.78453198306119
Iteration: 3, Func. Count: 31, Neg. LLF: 150.49035112134808
Iteration: 4, Func. Count: 40, Neg. LLF: 150.46677552371992
Iteration: 5, Func. Count: 49, Neg. LLF: 150.45440325288908
Iteration: 6, Func. Count: 58, Neg. LLF: 150.43147754959898
Iteration: 7, Func. Count: 67, Neg. LLF: 150.29998441064114
Iteration: 8, Func. Count: 76, Neg. LLF: 150.11936882208528
Iteration: 9, Func. Count: 85, Neg. LLF: 150.09687378909177
Iteration: 10, Func. Count: 94, Neg. LLF: 150.0722263992685
Iteration: 11, Func. Count: 103, Neg. LLF: 150.06708628634723
Iteration: 12, Func. Count: 112, Neg. LLF: 150.06572454804393
Iteration: 13, Func. Count: 121, Neg. LLF: 150.06508970935133
Iteration: 14, Func. Count: 130, Neg. LLF: 150.0650215491953
Iteration: 15, Func. Count: 139, Neg. LLF: 150.06501725327735
Iteration: 16, Func. Count: 147, Neg. LLF: 150.0650172879039
Optimization terminated successfully (Exit mode 0)
Current function value: 150.06501725327735
Iterations: 16
Function evaluations: 147
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 153.50893318176793
Iteration: 2, Func. Count: 23, Neg. LLF: 151.75493596483446
Iteration: 3, Func. Count: 34, Neg. LLF: 150.53240101899064
Iteration: 4, Func. Count: 44, Neg. LLF: 150.5065311283141
Iteration: 5, Func. Count: 54, Neg. LLF: 150.49715012041278
Iteration: 6, Func. Count: 64, Neg. LLF: 150.48162412243326
Iteration: 7, Func. Count: 74, Neg. LLF: 150.47043623811376
Iteration: 8, Func. Count: 84, Neg. LLF: 150.39807962813532
Iteration: 9, Func. Count: 94, Neg. LLF: 150.09750947504756
Iteration: 10, Func. Count: 104, Neg. LLF: 150.08572102288585
Iteration: 11, Func. Count: 114, Neg. LLF: 150.07549872769957
Iteration: 12, Func. Count: 124, Neg. LLF: 150.07030540985602
Iteration: 13, Func. Count: 134, Neg. LLF: 150.06746419577172
Iteration: 14, Func. Count: 144, Neg. LLF: 150.06579343925992
Iteration: 15, Func. Count: 154, Neg. LLF: 150.06504243287196
Iteration: 16, Func. Count: 164, Neg. LLF: 150.0650189296949
Iteration: 17, Func. Count: 174, Neg. LLF: 150.06501715443568
Iteration: 18, Func. Count: 183, Neg. LLF: 150.06501718394026
Optimization terminated successfully (Exit mode 0)
Current function value: 150.06501715443568
Iterations: 18
Function evaluations: 183
Gradient evaluations: 18
Iteration: 1, Func. Count: 8, Neg. LLF: 158.1248528025372
Iteration: 2, Func. Count: 16, Neg. LLF: 152.11843113204807
Iteration: 3, Func. Count: 24, Neg. LLF: 150.47816784860595
Iteration: 4, Func. Count: 31, Neg. LLF: 150.31295598117833
Iteration: 5, Func. Count: 38, Neg. LLF: 150.28333015655392
Iteration: 6, Func. Count: 45, Neg. LLF: 150.18876858662634
Iteration: 7, Func. Count: 52, Neg. LLF: 150.11961084023687
Iteration: 8, Func. Count: 59, Neg. LLF: 150.07776877739522
Iteration: 9, Func. Count: 66, Neg. LLF: 150.06553765487618
Iteration: 10, Func. Count: 73, Neg. LLF: 150.06490447806857
Iteration: 11, Func. Count: 80, Neg. LLF: 150.06482319780991
Iteration: 12, Func. Count: 87, Neg. LLF: 150.06478899107418
Iteration: 13, Func. Count: 94, Neg. LLF: 150.0647875996083
Iteration: 14, Func. Count: 100, Neg. LLF: 150.06478763515594
Optimization terminated successfully (Exit mode 0)
Current function value: 150.0647875996083
Iterations: 14
Function evaluations: 100
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 152.23804767208307
Iteration: 2, Func. Count: 19, Neg. LLF: 151.88347753962188
Iteration: 3, Func. Count: 28, Neg. LLF: 150.4728876208228
Iteration: 4, Func. Count: 36, Neg. LLF: 150.4657918774415
Iteration: 5, Func. Count: 44, Neg. LLF: 150.44497014066175
Iteration: 6, Func. Count: 52, Neg. LLF: 150.20539155056045
Iteration: 7, Func. Count: 60, Neg. LLF: 150.09503369059425
Iteration: 8, Func. Count: 68, Neg. LLF: 150.0742865020113
Iteration: 9, Func. Count: 76, Neg. LLF: 150.06757303467913
Iteration: 10, Func. Count: 84, Neg. LLF: 150.06602499238417
Iteration: 11, Func. Count: 92, Neg. LLF: 150.0657198540526
Iteration: 12, Func. Count: 100, Neg. LLF: 150.06570303881946
Iteration: 13, Func. Count: 108, Neg. LLF: 150.06569496341865
Iteration: 14, Func. Count: 116, Neg. LLF: 150.06567768475523
Iteration: 15, Func. Count: 124, Neg. LLF: 150.06564499932912
Iteration: 16, Func. Count: 132, Neg. LLF: 150.06555841133653
Iteration: 17, Func. Count: 140, Neg. LLF: 150.06540464853092
Iteration: 18, Func. Count: 148, Neg. LLF: 150.0652055683614
Iteration: 19, Func. Count: 156, Neg. LLF: 150.06490865453824
Iteration: 20, Func. Count: 164, Neg. LLF: 150.06479281452073
Iteration: 21, Func. Count: 172, Neg. LLF: 150.0647881225769
Iteration: 22, Func. Count: 180, Neg. LLF: 150.06478758660552
Optimization terminated successfully (Exit mode 0)
Current function value: 150.06478758660552
Iterations: 22
Function evaluations: 180
Gradient evaluations: 22
Iteration: 1, Func. Count: 10, Neg. LLF: 153.08657195403404
Iteration: 2, Func. Count: 21, Neg. LLF: 151.79829327423158
Iteration: 3, Func. Count: 31, Neg. LLF: 150.4967655710115
Iteration: 4, Func. Count: 40, Neg. LLF: 150.46267322586957
Iteration: 5, Func. Count: 49, Neg. LLF: 150.44956502834023
Iteration: 6, Func. Count: 58, Neg. LLF: 150.42909056775918
Iteration: 7, Func. Count: 67, Neg. LLF: 150.32973849292162
Iteration: 8, Func. Count: 76, Neg. LLF: 150.1005906210433
Iteration: 9, Func. Count: 85, Neg. LLF: 150.0795698662245
Iteration: 10, Func. Count: 94, Neg. LLF: 150.07236752709272
Iteration: 11, Func. Count: 103, Neg. LLF: 150.06641251448133
Iteration: 12, Func. Count: 112, Neg. LLF: 150.06542413007614
Iteration: 13, Func. Count: 121, Neg. LLF: 150.06504331375638
Iteration: 14, Func. Count: 130, Neg. LLF: 150.0650238850057
Iteration: 15, Func. Count: 139, Neg. LLF: 150.06501910353043
Iteration: 16, Func. Count: 148, Neg. LLF: 150.06501739603766
Iteration: 17, Func. Count: 156, Neg. LLF: 150.06501741375908
Optimization terminated successfully (Exit mode 0)
Current function value: 150.06501739603766
Iterations: 17
Function evaluations: 156
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 153.53353107459617
Iteration: 2, Func. Count: 23, Neg. LLF: 151.78280771498348
Iteration: 3, Func. Count: 34, Neg. LLF: 150.4907406246958
Iteration: 4, Func. Count: 44, Neg. LLF: 150.46683425244208
Iteration: 5, Func. Count: 54, Neg. LLF: 150.45465392420655
Iteration: 6, Func. Count: 64, Neg. LLF: 150.43075602844098
Iteration: 7, Func. Count: 74, Neg. LLF: 150.29100563473236
Iteration: 8, Func. Count: 84, Neg. LLF: 150.12210652693102
Iteration: 9, Func. Count: 94, Neg. LLF: 150.0982187811657
Iteration: 10, Func. Count: 104, Neg. LLF: 150.07051521625
Iteration: 11, Func. Count: 114, Neg. LLF: 150.066460299609
Iteration: 12, Func. Count: 124, Neg. LLF: 150.06547038642913
Iteration: 13, Func. Count: 134, Neg. LLF: 150.06506698504612
Iteration: 14, Func. Count: 144, Neg. LLF: 150.06502022544348
Iteration: 15, Func. Count: 154, Neg. LLF: 150.06501720733021
Iteration: 16, Func. Count: 163, Neg. LLF: 150.0650172419499
Optimization terminated successfully (Exit mode 0)
Current function value: 150.06501720733021
Iterations: 16
Function evaluations: 163
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 152.89067845213896
Iteration: 2, Func. Count: 25, Neg. LLF: 151.78138748936536
Iteration: 3, Func. Count: 37, Neg. LLF: 150.52901947973757
Iteration: 4, Func. Count: 48, Neg. LLF: 150.50429276630302
Iteration: 5, Func. Count: 59, Neg. LLF: 150.48676724961922
Iteration: 6, Func. Count: 70, Neg. LLF: 150.48180446868426
Iteration: 7, Func. Count: 81, Neg. LLF: 150.47018994733637
Iteration: 8, Func. Count: 92, Neg. LLF: 150.39533370896328
Iteration: 9, Func. Count: 103, Neg. LLF: 150.17894478522115
Iteration: 10, Func. Count: 114, Neg. LLF: 150.11456924607006
Iteration: 11, Func. Count: 125, Neg. LLF: 150.09018628531155
Iteration: 12, Func. Count: 136, Neg. LLF: 150.07909947764523
Iteration: 13, Func. Count: 147, Neg. LLF: 150.07059106948066
Iteration: 14, Func. Count: 158, Neg. LLF: 150.0673148926032
Iteration: 15, Func. Count: 169, Neg. LLF: 150.06593151137207
Iteration: 16, Func. Count: 180, Neg. LLF: 150.06536437986315
Iteration: 17, Func. Count: 191, Neg. LLF: 150.06506529111869
Iteration: 18, Func. Count: 202, Neg. LLF: 150.06501974116742
Iteration: 19, Func. Count: 213, Neg. LLF: 150.0650171772423
Iteration: 20, Func. Count: 223, Neg. LLF: 150.06501720674993
Optimization terminated successfully (Exit mode 0)
Current function value: 150.0650171772423
Iterations: 20
Function evaluations: 223
Gradient evaluations: 20
Iteration: 1, Func. Count: 9, Neg. LLF: 158.3106816747123
Iteration: 2, Func. Count: 18, Neg. LLF: 152.19647702786358
Iteration: 3, Func. Count: 27, Neg. LLF: 150.52197585019027
Iteration: 4, Func. Count: 35, Neg. LLF: 150.31379618959946
Iteration: 5, Func. Count: 43, Neg. LLF: 150.28555509257498
Iteration: 6, Func. Count: 51, Neg. LLF: 150.16240468933609
Iteration: 7, Func. Count: 59, Neg. LLF: 150.1042921470471
Iteration: 8, Func. Count: 67, Neg. LLF: 150.0727591597268
Iteration: 9, Func. Count: 75, Neg. LLF: 150.0650760056208
Iteration: 10, Func. Count: 83, Neg. LLF: 150.06482721326105
Iteration: 11, Func. Count: 91, Neg. LLF: 150.064800617126
Iteration: 12, Func. Count: 99, Neg. LLF: 150.06478767283514
Iteration: 13, Func. Count: 106, Neg. LLF: 150.06478773122635
Optimization terminated successfully (Exit mode 0)
Current function value: 150.06478767283514
Iterations: 13
Function evaluations: 106
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 152.2307873917349
Iteration: 2, Func. Count: 21, Neg. LLF: 151.88635783421395
Iteration: 3, Func. Count: 31, Neg. LLF: 150.47273972038334
Iteration: 4, Func. Count: 40, Neg. LLF: 150.46530122420177
Iteration: 5, Func. Count: 49, Neg. LLF: 150.44315200788802
Iteration: 6, Func. Count: 58, Neg. LLF: 150.18846992274655
Iteration: 7, Func. Count: 67, Neg. LLF: 150.10434393597978
Iteration: 8, Func. Count: 76, Neg. LLF: 150.0795123055825
Iteration: 9, Func. Count: 85, Neg. LLF: 150.06878919225804
Iteration: 10, Func. Count: 94, Neg. LLF: 150.06631008278322
Iteration: 11, Func. Count: 103, Neg. LLF: 150.06601137593626
Iteration: 12, Func. Count: 112, Neg. LLF: 150.06600344586786
Iteration: 13, Func. Count: 121, Neg. LLF: 150.06600119019424
Iteration: 14, Func. Count: 130, Neg. LLF: 150.06599807638855
Iteration: 15, Func. Count: 139, Neg. LLF: 150.06599244130504
Iteration: 16, Func. Count: 148, Neg. LLF: 150.06597707856062
Iteration: 17, Func. Count: 157, Neg. LLF: 150.0659264951041
Iteration: 18, Func. Count: 166, Neg. LLF: 150.06589506965634
Iteration: 19, Func. Count: 175, Neg. LLF: 150.0657432460658
Iteration: 20, Func. Count: 184, Neg. LLF: 150.06551369380628
Iteration: 21, Func. Count: 193, Neg. LLF: 150.06485692501798
Iteration: 22, Func. Count: 202, Neg. LLF: 150.06479953817018
Iteration: 23, Func. Count: 211, Neg. LLF: 150.0647877408006
Iteration: 24, Func. Count: 219, Neg. LLF: 150.06478776269185
Optimization terminated successfully (Exit mode 0)
Current function value: 150.0647877408006
Iterations: 24
Function evaluations: 219
Gradient evaluations: 24
Iteration: 1, Func. Count: 11, Neg. LLF: 153.04588187427868
Iteration: 2, Func. Count: 23, Neg. LLF: 151.7974426009625
Iteration: 3, Func. Count: 34, Neg. LLF: 150.4974112338394
Iteration: 4, Func. Count: 44, Neg. LLF: 150.4624929541677
Iteration: 5, Func. Count: 54, Neg. LLF: 150.44982034855673
Iteration: 6, Func. Count: 64, Neg. LLF: 150.4290977109805
Iteration: 7, Func. Count: 74, Neg. LLF: 150.32974467844522
Iteration: 8, Func. Count: 84, Neg. LLF: 150.0993479842159
Iteration: 9, Func. Count: 94, Neg. LLF: 150.07905127497864
Iteration: 10, Func. Count: 104, Neg. LLF: 150.07148114236105
Iteration: 11, Func. Count: 114, Neg. LLF: 150.0662602897456
Iteration: 12, Func. Count: 124, Neg. LLF: 150.06534318513343
Iteration: 13, Func. Count: 134, Neg. LLF: 150.0650462259621
Iteration: 14, Func. Count: 144, Neg. LLF: 150.06502435900865
Iteration: 15, Func. Count: 154, Neg. LLF: 150.06501929875284
Iteration: 16, Func. Count: 164, Neg. LLF: 150.06501746053908
Iteration: 17, Func. Count: 173, Neg. LLF: 150.06501747825607
Optimization terminated successfully (Exit mode 0)
Current function value: 150.06501746053908
Iterations: 17
Function evaluations: 173
Gradient evaluations: 17
Iteration: 1, Func. Count: 12, Neg. LLF: 153.48517552045476
Iteration: 2, Func. Count: 25, Neg. LLF: 151.78196953963325
Iteration: 3, Func. Count: 37, Neg. LLF: 150.49252648707366
Iteration: 4, Func. Count: 48, Neg. LLF: 150.46673794731362
Iteration: 5, Func. Count: 59, Neg. LLF: 150.4547766348862
Iteration: 6, Func. Count: 70, Neg. LLF: 150.42972551817613
Iteration: 7, Func. Count: 81, Neg. LLF: 150.28116194747733
Iteration: 8, Func. Count: 92, Neg. LLF: 150.12697416217213
Iteration: 9, Func. Count: 103, Neg. LLF: 150.10121807010265
Iteration: 10, Func. Count: 114, Neg. LLF: 150.06880920127156
Iteration: 11, Func. Count: 125, Neg. LLF: 150.06579566373966
Iteration: 12, Func. Count: 136, Neg. LLF: 150.06523818960812
Iteration: 13, Func. Count: 147, Neg. LLF: 150.06504885898804
Iteration: 14, Func. Count: 158, Neg. LLF: 150.06501920285308
Iteration: 15, Func. Count: 169, Neg. LLF: 150.06501718506354
Iteration: 16, Func. Count: 179, Neg. LLF: 150.065017219677
Optimization terminated successfully (Exit mode 0)
Current function value: 150.06501718506354
Iterations: 16
Function evaluations: 179
Gradient evaluations: 16
Iteration: 1, Func. Count: 13, Neg. LLF: 152.8538012138216
Iteration: 2, Func. Count: 27, Neg. LLF: 151.7807722951608
Iteration: 3, Func. Count: 40, Neg. LLF: 150.52927117070507
Iteration: 4, Func. Count: 52, Neg. LLF: 150.503897194323
Iteration: 5, Func. Count: 64, Neg. LLF: 150.48650136407582
Iteration: 6, Func. Count: 76, Neg. LLF: 150.48193491076123
Iteration: 7, Func. Count: 88, Neg. LLF: 150.47011390263293
Iteration: 8, Func. Count: 100, Neg. LLF: 150.39502964763193
Iteration: 9, Func. Count: 112, Neg. LLF: 150.18810846450066
Iteration: 10, Func. Count: 124, Neg. LLF: 150.1171128041732
Iteration: 11, Func. Count: 136, Neg. LLF: 150.09142185249587
Iteration: 12, Func. Count: 148, Neg. LLF: 150.0801260082709
Iteration: 13, Func. Count: 160, Neg. LLF: 150.07077858716843
Iteration: 14, Func. Count: 172, Neg. LLF: 150.06720462279353
Iteration: 15, Func. Count: 184, Neg. LLF: 150.06578280663823
Iteration: 16, Func. Count: 196, Neg. LLF: 150.06538632772126
Iteration: 17, Func. Count: 208, Neg. LLF: 150.06505184476939
Iteration: 18, Func. Count: 220, Neg. LLF: 150.0650195156715
Iteration: 19, Func. Count: 232, Neg. LLF: 150.06501716497556
Iteration: 20, Func. Count: 243, Neg. LLF: 150.06501719449082
Optimization terminated successfully (Exit mode 0)
Current function value: 150.06501716497556
Iterations: 20
Function evaluations: 243
Gradient evaluations: 20
Iteration: 1, Func. Count: 6, Neg. LLF: 152.3536355439103
Iteration: 2, Func. Count: 12, Neg. LLF: 150.94735717074002
Iteration: 3, Func. Count: 17, Neg. LLF: 150.81607448242536
Iteration: 4, Func. Count: 22, Neg. LLF: 150.77716980072088
Iteration: 5, Func. Count: 27, Neg. LLF: 150.72290367736906
Iteration: 6, Func. Count: 32, Neg. LLF: 150.64339876628273
Iteration: 7, Func. Count: 37, Neg. LLF: 150.6146255436497
Iteration: 8, Func. Count: 42, Neg. LLF: 150.6120012898906
Iteration: 9, Func. Count: 47, Neg. LLF: 150.61187308872007
Iteration: 10, Func. Count: 52, Neg. LLF: 150.61186238766962
Iteration: 11, Func. Count: 57, Neg. LLF: 150.61186163452237
Optimization terminated successfully (Exit mode 0)
Current function value: 150.61186163452237
Iterations: 11
Function evaluations: 57
Gradient evaluations: 11
Iteration: 1, Func. Count: 7, Neg. LLF: 153.16663748891898
Iteration: 2, Func. Count: 15, Neg. LLF: 150.7179655504443
Iteration: 3, Func. Count: 21, Neg. LLF: 150.7174032496342
Iteration: 4, Func. Count: 27, Neg. LLF: 150.71714282227506
Iteration: 5, Func. Count: 33, Neg. LLF: 150.71710704061064
Iteration: 6, Func. Count: 38, Neg. LLF: 150.71710704061593
Optimization terminated successfully (Exit mode 0)
Current function value: 150.71710704061064
Iterations: 6
Function evaluations: 38
Gradient evaluations: 6
Iteration: 1, Func. Count: 8, Neg. LLF: 150.71356631603211
Iteration: 2, Func. Count: 15, Neg. LLF: 150.92165767234803
Iteration: 3, Func. Count: 23, Neg. LLF: 150.71019095762887
Iteration: 4, Func. Count: 30, Neg. LLF: 150.70908763716884
Iteration: 5, Func. Count: 37, Neg. LLF: 150.70618286029196
Iteration: 6, Func. Count: 44, Neg. LLF: 150.70476983137826
Iteration: 7, Func. Count: 51, Neg. LLF: 150.70448864238114
Iteration: 8, Func. Count: 58, Neg. LLF: 150.70421397860892
Iteration: 9, Func. Count: 65, Neg. LLF: 150.7042086043539
Iteration: 10, Func. Count: 72, Neg. LLF: 150.70420707267604
Iteration: 11, Func. Count: 79, Neg. LLF: 150.70420303201797
Iteration: 12, Func. Count: 86, Neg. LLF: 150.70419283245803
Iteration: 13, Func. Count: 93, Neg. LLF: 150.70416496009986
Iteration: 14, Func. Count: 100, Neg. LLF: 150.70408779261962
Iteration: 15, Func. Count: 107, Neg. LLF: 150.70387577830365
Iteration: 16, Func. Count: 114, Neg. LLF: 150.703188942885
Iteration: 17, Func. Count: 121, Neg. LLF: 150.8967971033954
Iteration: 18, Func. Count: 129, Neg. LLF: 150.81099464576116
Iteration: 19, Func. Count: 137, Neg. LLF: 150.77981740322036
Iteration: 20, Func. Count: 145, Neg. LLF: 150.7516626640336
Iteration: 21, Func. Count: 153, Neg. LLF: 150.7324305818023
Iteration: 22, Func. Count: 161, Neg. LLF: 150.78990808105615
Iteration: 23, Func. Count: 169, Neg. LLF: 150.690510693979
Iteration: 24, Func. Count: 176, Neg. LLF: 1845.5967207180222
Iteration: 25, Func. Count: 186, Neg. LLF: 224.74138733337497
Iteration: 26, Func. Count: 195, Neg. LLF: 150.67965678614783
Iteration: 27, Func. Count: 202, Neg. LLF: 150.67781670883042
Iteration: 28, Func. Count: 209, Neg. LLF: 150.67752382379737
Iteration: 29, Func. Count: 216, Neg. LLF: 150.67733490744908
Iteration: 30, Func. Count: 223, Neg. LLF: 150.6760243611454
Iteration: 31, Func. Count: 230, Neg. LLF: 150.66690764983284
Iteration: 32, Func. Count: 237, Neg. LLF: 150.6241465832232
Iteration: 33, Func. Count: 244, Neg. LLF: 150.61366320311868
Iteration: 34, Func. Count: 251, Neg. LLF: 150.60668215163435
Iteration: 35, Func. Count: 258, Neg. LLF: 150.60599138195636
Iteration: 36, Func. Count: 265, Neg. LLF: 150.60595982811955
Iteration: 37, Func. Count: 272, Neg. LLF: 150.60594759509354
Iteration: 38, Func. Count: 279, Neg. LLF: 150.60594405754767
Iteration: 39, Func. Count: 285, Neg. LLF: 150.6059440515157
Optimization terminated successfully (Exit mode 0)
Current function value: 150.60594405754767
Iterations: 40
Function evaluations: 285
Gradient evaluations: 39
Iteration: 1, Func. Count: 9, Neg. LLF: 167.215619214231
Iteration: 2, Func. Count: 19, Neg. LLF: 150.70570376963687
Iteration: 3, Func. Count: 27, Neg. LLF: 150.7038350288406
Iteration: 4, Func. Count: 35, Neg. LLF: 150.70174519597848
Iteration: 5, Func. Count: 43, Neg. LLF: 150.7005692957775
Iteration: 6, Func. Count: 51, Neg. LLF: 150.70040725675813
Iteration: 7, Func. Count: 59, Neg. LLF: 150.70006639209626
Iteration: 8, Func. Count: 67, Neg. LLF: 150.69980124291084
Iteration: 9, Func. Count: 75, Neg. LLF: 150.6996635256716
Iteration: 10, Func. Count: 83, Neg. LLF: 150.69962571260615
Iteration: 11, Func. Count: 91, Neg. LLF: 150.69962365226903
Iteration: 12, Func. Count: 99, Neg. LLF: 150.6996122189668
Iteration: 13, Func. Count: 107, Neg. LLF: 150.69958764363025
Iteration: 14, Func. Count: 115, Neg. LLF: 150.69951737947633
Iteration: 15, Func. Count: 123, Neg. LLF: 150.69931674215255
Iteration: 16, Func. Count: 131, Neg. LLF: 150.69856049110922
Iteration: 17, Func. Count: 139, Neg. LLF: 150.66823351377045
Iteration: 18, Func. Count: 147, Neg. LLF: 150.65948771597576
Iteration: 19, Func. Count: 156, Neg. LLF: 150.62317688563968
Iteration: 20, Func. Count: 164, Neg. LLF: 150.61549282465378
Iteration: 21, Func. Count: 172, Neg. LLF: 150.6094111209162
Iteration: 22, Func. Count: 181, Neg. LLF: 150.60755876907928
Iteration: 23, Func. Count: 189, Neg. LLF: 150.60661503743546
Iteration: 24, Func. Count: 197, Neg. LLF: 150.6064793651708
Iteration: 25, Func. Count: 205, Neg. LLF: 150.60629777019886
Iteration: 26, Func. Count: 213, Neg. LLF: 150.60728666172474
Iteration: 27, Func. Count: 222, Neg. LLF: 150.60757264402162
Iteration: 28, Func. Count: 231, Neg. LLF: 150.6062466724605
Iteration: 29, Func. Count: 240, Neg. LLF: 150.60579672611533
Iteration: 30, Func. Count: 248, Neg. LLF: 150.60564428196832
Iteration: 31, Func. Count: 256, Neg. LLF: 150.60560707858664
Iteration: 32, Func. Count: 264, Neg. LLF: 150.60560229793288
Iteration: 33, Func. Count: 272, Neg. LLF: 150.60560057786998
Iteration: 34, Func. Count: 280, Neg. LLF: 150.60559978306617
Optimization terminated successfully (Exit mode 0)
Current function value: 150.60559978306617
Iterations: 34
Function evaluations: 280
Gradient evaluations: 34
Iteration: 1, Func. Count: 10, Neg. LLF: 172.8347416402849
Iteration: 2, Func. Count: 21, Neg. LLF: 150.70010679787814
Iteration: 3, Func. Count: 30, Neg. LLF: 150.69645963236246
Iteration: 4, Func. Count: 39, Neg. LLF: 150.69469280498944
Iteration: 5, Func. Count: 48, Neg. LLF: 150.69247173939937
Iteration: 6, Func. Count: 57, Neg. LLF: 150.69117255208266
Iteration: 7, Func. Count: 66, Neg. LLF: 150.68943750172255
Iteration: 8, Func. Count: 75, Neg. LLF: 150.68919728328405
Iteration: 9, Func. Count: 84, Neg. LLF: 150.68911810296953
Iteration: 10, Func. Count: 93, Neg. LLF: 150.68910722367394
Iteration: 11, Func. Count: 102, Neg. LLF: 150.68904218839978
Iteration: 12, Func. Count: 111, Neg. LLF: 150.68869847099523
Iteration: 13, Func. Count: 120, Neg. LLF: 150.6867580482968
Iteration: 14, Func. Count: 129, Neg. LLF: 150.66851556887613
Iteration: 15, Func. Count: 138, Neg. LLF: 150.60296388126747
Iteration: 16, Func. Count: 147, Neg. LLF: 150.61225156270706
Iteration: 17, Func. Count: 157, Neg. LLF: 150.59900929745345
Iteration: 18, Func. Count: 166, Neg. LLF: 150.59786153877025
Iteration: 19, Func. Count: 175, Neg. LLF: 150.58601019977965
Iteration: 20, Func. Count: 184, Neg. LLF: 150.574418935639
Iteration: 21, Func. Count: 193, Neg. LLF: 150.57266365862307
Iteration: 22, Func. Count: 202, Neg. LLF: 150.56961606441024
Iteration: 23, Func. Count: 211, Neg. LLF: 150.6032616077647
Iteration: 24, Func. Count: 222, Neg. LLF: 150.57101144283357
Iteration: 25, Func. Count: 232, Neg. LLF: 150.57022851615517
Iteration: 26, Func. Count: 241, Neg. LLF: 150.57022126902285
Iteration: 27, Func. Count: 250, Neg. LLF: 150.5702085382068
Iteration: 28, Func. Count: 258, Neg. LLF: 150.57020852403522
Optimization terminated successfully (Exit mode 0)
Current function value: 150.5702085382068
Iterations: 29
Function evaluations: 258
Gradient evaluations: 28
Iteration: 1, Func. Count: 7, Neg. LLF: 154.0380916087794
Iteration: 2, Func. Count: 14, Neg. LLF: 153.6214974288264
Iteration: 3, Func. Count: 21, Neg. LLF: 150.37872286347138
Iteration: 4, Func. Count: 27, Neg. LLF: 150.33722208202292
Iteration: 5, Func. Count: 33, Neg. LLF: 150.29212843728703
Iteration: 6, Func. Count: 39, Neg. LLF: 150.2492218434159
Iteration: 7, Func. Count: 45, Neg. LLF: 150.16357459666344
Iteration: 8, Func. Count: 51, Neg. LLF: 150.08590378188794
Iteration: 9, Func. Count: 57, Neg. LLF: 150.0675366069357
Iteration: 10, Func. Count: 63, Neg. LLF: 150.0651313254966
Iteration: 11, Func. Count: 69, Neg. LLF: 150.06485015483833
Iteration: 12, Func. Count: 75, Neg. LLF: 150.06479433940783
Iteration: 13, Func. Count: 81, Neg. LLF: 150.06478786154295
Iteration: 14, Func. Count: 86, Neg. LLF: 150.06478786155432
Optimization terminated successfully (Exit mode 0)
Current function value: 150.06478786154295
Iterations: 14
Function evaluations: 86
Gradient evaluations: 14
Iteration: 1, Func. Count: 8, Neg. LLF: 150.81314787947633
Iteration: 2, Func. Count: 16, Neg. LLF: 151.8256880589652
Iteration: 3, Func. Count: 24, Neg. LLF: 150.46792024290562
Iteration: 4, Func. Count: 31, Neg. LLF: 150.4591440315845
Iteration: 5, Func. Count: 38, Neg. LLF: 150.34926440861352
Iteration: 6, Func. Count: 45, Neg. LLF: 150.0740743398129
Iteration: 7, Func. Count: 52, Neg. LLF: 150.0667553360693
Iteration: 8, Func. Count: 59, Neg. LLF: 150.06609677051588
Iteration: 9, Func. Count: 66, Neg. LLF: 150.06579175292427
Iteration: 10, Func. Count: 73, Neg. LLF: 150.06566608666583
Iteration: 11, Func. Count: 80, Neg. LLF: 150.0656182347696
Iteration: 12, Func. Count: 87, Neg. LLF: 150.06551972598888
Iteration: 13, Func. Count: 94, Neg. LLF: 150.0652826126065
Iteration: 14, Func. Count: 101, Neg. LLF: 150.06516420574147
Iteration: 15, Func. Count: 108, Neg. LLF: 150.0650218365742
Iteration: 16, Func. Count: 115, Neg. LLF: 150.06501848683817
Iteration: 17, Func. Count: 122, Neg. LLF: 150.06501718560324
Iteration: 18, Func. Count: 128, Neg. LLF: 150.06501720326952
Optimization terminated successfully (Exit mode 0)
Current function value: 150.06501718560324
Iterations: 18
Function evaluations: 128
Gradient evaluations: 18
Iteration: 1, Func. Count: 9, Neg. LLF: 156.9345585241304
Iteration: 2, Func. Count: 19, Neg. LLF: 151.51335604030533
Iteration: 3, Func. Count: 28, Neg. LLF: 150.48501274318224
Iteration: 4, Func. Count: 36, Neg. LLF: 150.46208365669295
Iteration: 5, Func. Count: 44, Neg. LLF: 150.45096881629829
Iteration: 6, Func. Count: 52, Neg. LLF: 150.40969181991497
Iteration: 7, Func. Count: 60, Neg. LLF: 150.1319976870246
Iteration: 8, Func. Count: 68, Neg. LLF: 150.08950629712325
Iteration: 9, Func. Count: 76, Neg. LLF: 150.07208487000088
Iteration: 10, Func. Count: 84, Neg. LLF: 150.06679809031928
Iteration: 11, Func. Count: 92, Neg. LLF: 150.0650826279174
Iteration: 12, Func. Count: 100, Neg. LLF: 150.06501932357543
Iteration: 13, Func. Count: 108, Neg. LLF: 150.06501757073966
Iteration: 14, Func. Count: 115, Neg. LLF: 150.06501758842415
Optimization terminated successfully (Exit mode 0)
Current function value: 150.06501757073966
Iterations: 14
Function evaluations: 115
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 158.41906296763582
Iteration: 2, Func. Count: 21, Neg. LLF: 150.85944605060976
Iteration: 3, Func. Count: 31, Neg. LLF: 150.47226406848705
Iteration: 4, Func. Count: 40, Neg. LLF: 150.4652721904601
Iteration: 5, Func. Count: 49, Neg. LLF: 150.4531436746415
Iteration: 6, Func. Count: 58, Neg. LLF: 150.4158805602563
Iteration: 7, Func. Count: 67, Neg. LLF: 150.31860737604393
Iteration: 8, Func. Count: 76, Neg. LLF: 150.15503931448532
Iteration: 9, Func. Count: 85, Neg. LLF: 150.09637237000277
Iteration: 10, Func. Count: 94, Neg. LLF: 150.06965156675304
Iteration: 11, Func. Count: 103, Neg. LLF: 150.06674299681976
Iteration: 12, Func. Count: 112, Neg. LLF: 150.06515057570863
Iteration: 13, Func. Count: 121, Neg. LLF: 150.06502117523243
Iteration: 14, Func. Count: 130, Neg. LLF: 150.06501745021916
Iteration: 15, Func. Count: 138, Neg. LLF: 150.0650174848013
Optimization terminated successfully (Exit mode 0)
Current function value: 150.06501745021916
Iterations: 15
Function evaluations: 138
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 157.5083726548748
Iteration: 2, Func. Count: 23, Neg. LLF: 151.1697208006088
Iteration: 3, Func. Count: 34, Neg. LLF: 150.51704461782668
Iteration: 4, Func. Count: 44, Neg. LLF: 150.5002222283471
Iteration: 5, Func. Count: 54, Neg. LLF: 150.48041174003873
Iteration: 6, Func. Count: 64, Neg. LLF: 150.4732684125191
Iteration: 7, Func. Count: 74, Neg. LLF: 150.40664699945023
Iteration: 8, Func. Count: 84, Neg. LLF: 150.08807061265207
Iteration: 9, Func. Count: 94, Neg. LLF: 150.0750144970092
Iteration: 10, Func. Count: 104, Neg. LLF: 150.06843739914888
Iteration: 11, Func. Count: 114, Neg. LLF: 150.06506951319147
Iteration: 12, Func. Count: 124, Neg. LLF: 150.06501922819479
Iteration: 13, Func. Count: 134, Neg. LLF: 150.0650183368977
Optimization terminated successfully (Exit mode 0)
Current function value: 150.0650183368977
Iterations: 13
Function evaluations: 134
Gradient evaluations: 13
Iteration: 1, Func. Count: 8, Neg. LLF: 156.08100536677148
Iteration: 2, Func. Count: 16, Neg. LLF: 152.13161881500642
Iteration: 3, Func. Count: 24, Neg. LLF: 150.47453445083636
Iteration: 4, Func. Count: 31, Neg. LLF: 150.35242467330207
Iteration: 5, Func. Count: 38, Neg. LLF: 150.28416824823648
Iteration: 6, Func. Count: 45, Neg. LLF: 150.25687544842864
Iteration: 7, Func. Count: 52, Neg. LLF: 150.1628763870031
Iteration: 8, Func. Count: 59, Neg. LLF: 150.08960556144453
Iteration: 9, Func. Count: 66, Neg. LLF: 150.068436994793
Iteration: 10, Func. Count: 73, Neg. LLF: 150.0651764524731
Iteration: 11, Func. Count: 80, Neg. LLF: 150.06487922356186
Iteration: 12, Func. Count: 87, Neg. LLF: 150.0648021233484
Iteration: 13, Func. Count: 94, Neg. LLF: 150.06478800701672
Iteration: 14, Func. Count: 100, Neg. LLF: 150.0647879778769
Optimization terminated successfully (Exit mode 0)
Current function value: 150.06478800701672
Iterations: 14
Function evaluations: 100
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 152.3427590800352
Iteration: 2, Func. Count: 19, Neg. LLF: 151.84918991288615
Iteration: 3, Func. Count: 28, Neg. LLF: 150.4723802895938
Iteration: 4, Func. Count: 36, Neg. LLF: 150.46408040533646
Iteration: 5, Func. Count: 44, Neg. LLF: 150.44511388252528
Iteration: 6, Func. Count: 52, Neg. LLF: 150.35271800821923
Iteration: 7, Func. Count: 60, Neg. LLF: 150.20957036583852
Iteration: 8, Func. Count: 68, Neg. LLF: 150.1090935754051
Iteration: 9, Func. Count: 76, Neg. LLF: 150.071433588608
Iteration: 10, Func. Count: 84, Neg. LLF: 150.06637588744815
Iteration: 11, Func. Count: 92, Neg. LLF: 150.06535011315322
Iteration: 12, Func. Count: 100, Neg. LLF: 150.0651189692001
Iteration: 13, Func. Count: 108, Neg. LLF: 150.06505151610858
Iteration: 14, Func. Count: 116, Neg. LLF: 150.06502321931274
Iteration: 15, Func. Count: 124, Neg. LLF: 150.0650175945639
Iteration: 16, Func. Count: 131, Neg. LLF: 150.06501761223132
Optimization terminated successfully (Exit mode 0)
Current function value: 150.0650175945639
Iterations: 16
Function evaluations: 131
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 153.11324186202947
Iteration: 2, Func. Count: 21, Neg. LLF: 151.79572572449874
Iteration: 3, Func. Count: 31, Neg. LLF: 150.5005910504255
Iteration: 4, Func. Count: 40, Neg. LLF: 150.4622212654289
Iteration: 5, Func. Count: 49, Neg. LLF: 150.45060565117714
Iteration: 6, Func. Count: 58, Neg. LLF: 150.43116652821243
Iteration: 7, Func. Count: 67, Neg. LLF: 150.33489171591984
Iteration: 8, Func. Count: 76, Neg. LLF: 150.0900931849772
Iteration: 9, Func. Count: 85, Neg. LLF: 150.08019364555747
Iteration: 10, Func. Count: 94, Neg. LLF: 150.0674872227645
Iteration: 11, Func. Count: 103, Neg. LLF: 150.06660920601047
Iteration: 12, Func. Count: 112, Neg. LLF: 150.0661734226103
Iteration: 13, Func. Count: 121, Neg. LLF: 150.06607588062886
Iteration: 14, Func. Count: 130, Neg. LLF: 150.06605413258453
Iteration: 15, Func. Count: 139, Neg. LLF: 150.06605210337153
Iteration: 16, Func. Count: 147, Neg. LLF: 150.06605212443498
Optimization terminated successfully (Exit mode 0)
Current function value: 150.06605210337153
Iterations: 16
Function evaluations: 147
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 153.5493709194584
Iteration: 2, Func. Count: 23, Neg. LLF: 151.77906364642277
Iteration: 3, Func. Count: 34, Neg. LLF: 150.50523657351752
Iteration: 4, Func. Count: 44, Neg. LLF: 150.46608633675672
Iteration: 5, Func. Count: 54, Neg. LLF: 150.45391326450059
Iteration: 6, Func. Count: 64, Neg. LLF: 150.4210529746
Iteration: 7, Func. Count: 74, Neg. LLF: 150.32814097085296
Iteration: 8, Func. Count: 84, Neg. LLF: 150.17075075724514
Iteration: 9, Func. Count: 94, Neg. LLF: 150.12833761742073
Iteration: 10, Func. Count: 104, Neg. LLF: 150.07319055751262
Iteration: 11, Func. Count: 114, Neg. LLF: 150.0679905821546
Iteration: 12, Func. Count: 124, Neg. LLF: 150.0653988862134
Iteration: 13, Func. Count: 134, Neg. LLF: 150.0651651524727
Iteration: 14, Func. Count: 144, Neg. LLF: 150.06505870316107
Iteration: 15, Func. Count: 154, Neg. LLF: 150.0650234091986
Iteration: 16, Func. Count: 164, Neg. LLF: 150.06501747411312
Iteration: 17, Func. Count: 173, Neg. LLF: 150.06501750869322
Optimization terminated successfully (Exit mode 0)
Current function value: 150.06501747411312
Iterations: 17
Function evaluations: 173
Gradient evaluations: 17
Iteration: 1, Func. Count: 12, Neg. LLF: 152.92276885551453
Iteration: 2, Func. Count: 25, Neg. LLF: 151.77826744522875
Iteration: 3, Func. Count: 37, Neg. LLF: 150.53069046938901
Iteration: 4, Func. Count: 48, Neg. LLF: 150.50453664546166
Iteration: 5, Func. Count: 59, Neg. LLF: 150.48700885560459
Iteration: 6, Func. Count: 70, Neg. LLF: 150.48280902460982
Iteration: 7, Func. Count: 81, Neg. LLF: 150.47137958923014
Iteration: 8, Func. Count: 92, Neg. LLF: 150.40484607421774
Iteration: 9, Func. Count: 103, Neg. LLF: 150.18457934076432
Iteration: 10, Func. Count: 114, Neg. LLF: 150.1199189128231
Iteration: 11, Func. Count: 125, Neg. LLF: 150.09921259364825
Iteration: 12, Func. Count: 136, Neg. LLF: 150.08562301107776
Iteration: 13, Func. Count: 147, Neg. LLF: 150.07154688572896
Iteration: 14, Func. Count: 158, Neg. LLF: 150.06733829834147
Iteration: 15, Func. Count: 169, Neg. LLF: 150.06603078665523
Iteration: 16, Func. Count: 180, Neg. LLF: 150.06600833010734
Iteration: 17, Func. Count: 191, Neg. LLF: 150.06597645975313
Iteration: 18, Func. Count: 202, Neg. LLF: 150.0659583709907
Iteration: 19, Func. Count: 213, Neg. LLF: 150.06579651121376
Iteration: 20, Func. Count: 224, Neg. LLF: 150.0739299253611
Iteration: 21, Func. Count: 236, Neg. LLF: 150.06568873655695
Iteration: 22, Func. Count: 248, Neg. LLF: 150.06526718074335
Iteration: 23, Func. Count: 259, Neg. LLF: 150.06479736114602
Iteration: 24, Func. Count: 270, Neg. LLF: 150.06478819266923
Iteration: 25, Func. Count: 281, Neg. LLF: 150.06478760956824
Optimization terminated successfully (Exit mode 0)
Current function value: 150.06478760956824
Iterations: 25
Function evaluations: 281
Gradient evaluations: 25
Iteration: 1, Func. Count: 9, Neg. LLF: 155.67803659116058
Iteration: 2, Func. Count: 18, Neg. LLF: 152.22755285605342
Iteration: 3, Func. Count: 27, Neg. LLF: 150.48432051797565
Iteration: 4, Func. Count: 35, Neg. LLF: 150.38437708134
Iteration: 5, Func. Count: 43, Neg. LLF: 150.2977448552071
Iteration: 6, Func. Count: 51, Neg. LLF: 150.26059767924465
Iteration: 7, Func. Count: 59, Neg. LLF: 150.22294320626793
Iteration: 8, Func. Count: 67, Neg. LLF: 150.13257793795367
Iteration: 9, Func. Count: 75, Neg. LLF: 150.0814338155557
Iteration: 10, Func. Count: 83, Neg. LLF: 150.0662816940951
Iteration: 11, Func. Count: 91, Neg. LLF: 150.06502574399474
Iteration: 12, Func. Count: 99, Neg. LLF: 150.06483711867912
Iteration: 13, Func. Count: 107, Neg. LLF: 150.0647913288304
Iteration: 14, Func. Count: 115, Neg. LLF: 150.06478765943123
Iteration: 15, Func. Count: 122, Neg. LLF: 150.06478769499137
Optimization terminated successfully (Exit mode 0)
Current function value: 150.06478765943123
Iterations: 15
Function evaluations: 122
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 152.2056894560245
Iteration: 2, Func. Count: 21, Neg. LLF: 151.88814131659902
Iteration: 3, Func. Count: 31, Neg. LLF: 150.47261359813402
Iteration: 4, Func. Count: 40, Neg. LLF: 150.46422101045053
Iteration: 5, Func. Count: 49, Neg. LLF: 150.44074760918713
Iteration: 6, Func. Count: 58, Neg. LLF: 150.18325248515885
Iteration: 7, Func. Count: 67, Neg. LLF: 150.10867987361263
Iteration: 8, Func. Count: 76, Neg. LLF: 150.0799348597726
Iteration: 9, Func. Count: 85, Neg. LLF: 150.06657121361607
Iteration: 10, Func. Count: 94, Neg. LLF: 150.06521066765703
Iteration: 11, Func. Count: 103, Neg. LLF: 150.06513231422247
Iteration: 12, Func. Count: 112, Neg. LLF: 150.06510472211224
Iteration: 13, Func. Count: 121, Neg. LLF: 150.06508831644928
Iteration: 14, Func. Count: 130, Neg. LLF: 150.06507147982413
Iteration: 15, Func. Count: 139, Neg. LLF: 150.06503240206166
Iteration: 16, Func. Count: 148, Neg. LLF: 150.06496238533578
Iteration: 17, Func. Count: 157, Neg. LLF: 150.06486764296682
Iteration: 18, Func. Count: 166, Neg. LLF: 150.0648023875049
Iteration: 19, Func. Count: 175, Neg. LLF: 150.06478867676907
Iteration: 20, Func. Count: 184, Neg. LLF: 150.06478765239538
Iteration: 21, Func. Count: 192, Neg. LLF: 150.06478767428302
Optimization terminated successfully (Exit mode 0)
Current function value: 150.06478765239538
Iterations: 21
Function evaluations: 192
Gradient evaluations: 21
Iteration: 1, Func. Count: 11, Neg. LLF: 153.03167503942112
Iteration: 2, Func. Count: 23, Neg. LLF: 151.79632124888388
Iteration: 3, Func. Count: 34, Neg. LLF: 150.5021927704263
Iteration: 4, Func. Count: 44, Neg. LLF: 150.4619633454964
Iteration: 5, Func. Count: 54, Neg. LLF: 150.4507957798851
Iteration: 6, Func. Count: 64, Neg. LLF: 150.43061367945404
Iteration: 7, Func. Count: 74, Neg. LLF: 150.32513482590673
Iteration: 8, Func. Count: 84, Neg. LLF: 150.08619163566698
Iteration: 9, Func. Count: 94, Neg. LLF: 150.07781894316318
Iteration: 10, Func. Count: 104, Neg. LLF: 150.06699807303025
Iteration: 11, Func. Count: 114, Neg. LLF: 150.0665049588761
Iteration: 12, Func. Count: 124, Neg. LLF: 150.0661264757629
Iteration: 13, Func. Count: 134, Neg. LLF: 150.06606018095567
Iteration: 14, Func. Count: 144, Neg. LLF: 150.0660530942272
Iteration: 15, Func. Count: 153, Neg. LLF: 150.06605311535628
Optimization terminated successfully (Exit mode 0)
Current function value: 150.0660530942272
Iterations: 15
Function evaluations: 153
Gradient evaluations: 15
Iteration: 1, Func. Count: 12, Neg. LLF: 153.46129828530096
Iteration: 2, Func. Count: 25, Neg. LLF: 151.77918827839693
Iteration: 3, Func. Count: 37, Neg. LLF: 150.50544827512542
Iteration: 4, Func. Count: 48, Neg. LLF: 150.4661689423352
Iteration: 5, Func. Count: 59, Neg. LLF: 150.4543371532595
Iteration: 6, Func. Count: 70, Neg. LLF: 150.42036570511195
Iteration: 7, Func. Count: 81, Neg. LLF: 150.322420615443
Iteration: 8, Func. Count: 92, Neg. LLF: 150.16095727953018
Iteration: 9, Func. Count: 103, Neg. LLF: 150.1212891843985
Iteration: 10, Func. Count: 114, Neg. LLF: 150.07528491555578
Iteration: 11, Func. Count: 125, Neg. LLF: 150.0672593668824
Iteration: 12, Func. Count: 136, Neg. LLF: 150.06529092113797
Iteration: 13, Func. Count: 147, Neg. LLF: 150.06508066722773
Iteration: 14, Func. Count: 158, Neg. LLF: 150.065039448125
Iteration: 15, Func. Count: 169, Neg. LLF: 150.06502143516198
Iteration: 16, Func. Count: 180, Neg. LLF: 150.0650175320249
Iteration: 17, Func. Count: 190, Neg. LLF: 150.06501756658542
Optimization terminated successfully (Exit mode 0)
Current function value: 150.0650175320249
Iterations: 17
Function evaluations: 190
Gradient evaluations: 17
Iteration: 1, Func. Count: 13, Neg. LLF: 152.84346063149994
Iteration: 2, Func. Count: 27, Neg. LLF: 151.77872949055254
Iteration: 3, Func. Count: 40, Neg. LLF: 150.53571705929843
Iteration: 4, Func. Count: 52, Neg. LLF: 150.50339277495385
Iteration: 5, Func. Count: 64, Neg. LLF: 150.4871767262793
Iteration: 6, Func. Count: 76, Neg. LLF: 150.48326697159695
Iteration: 7, Func. Count: 88, Neg. LLF: 150.47163667724533
Iteration: 8, Func. Count: 100, Neg. LLF: 150.3994769053428
Iteration: 9, Func. Count: 112, Neg. LLF: 150.18035645922308
Iteration: 10, Func. Count: 124, Neg. LLF: 150.12017582935704
Iteration: 11, Func. Count: 136, Neg. LLF: 150.10290036600267
Iteration: 12, Func. Count: 148, Neg. LLF: 150.08389060579307
Iteration: 13, Func. Count: 160, Neg. LLF: 150.0705740321457
Iteration: 14, Func. Count: 172, Neg. LLF: 150.066702293804
Iteration: 15, Func. Count: 184, Neg. LLF: 150.06573714757747
Iteration: 16, Func. Count: 196, Neg. LLF: 150.06571071990982
Iteration: 17, Func. Count: 208, Neg. LLF: 150.06563197981507
Iteration: 18, Func. Count: 220, Neg. LLF: 150.06547437426462
Iteration: 19, Func. Count: 232, Neg. LLF: 150.06527701909076
Iteration: 20, Func. Count: 244, Neg. LLF: 150.06505725464814
Iteration: 21, Func. Count: 256, Neg. LLF: 150.06481367073644
Iteration: 22, Func. Count: 268, Neg. LLF: 150.0647931944623
Iteration: 23, Func. Count: 280, Neg. LLF: 150.06478767838945
Iteration: 24, Func. Count: 291, Neg. LLF: 150.0647877080168
Optimization terminated successfully (Exit mode 0)
Current function value: 150.06478767838945
Iterations: 24
Function evaluations: 291
Gradient evaluations: 24
Iteration: 1, Func. Count: 10, Neg. LLF: 155.80486796352548
Iteration: 2, Func. Count: 20, Neg. LLF: 152.2698749890205
Iteration: 3, Func. Count: 30, Neg. LLF: 150.4920235630039
Iteration: 4, Func. Count: 39, Neg. LLF: 150.39278179273867
Iteration: 5, Func. Count: 48, Neg. LLF: 150.30178883132194
Iteration: 6, Func. Count: 57, Neg. LLF: 150.26256186571234
Iteration: 7, Func. Count: 66, Neg. LLF: 150.2266882572283
Iteration: 8, Func. Count: 75, Neg. LLF: 150.14134117723756
Iteration: 9, Func. Count: 84, Neg. LLF: 150.083936471057
Iteration: 10, Func. Count: 93, Neg. LLF: 150.06663107576134
Iteration: 11, Func. Count: 102, Neg. LLF: 150.0650792972796
Iteration: 12, Func. Count: 111, Neg. LLF: 150.0648450038453
Iteration: 13, Func. Count: 120, Neg. LLF: 150.06479159985912
Iteration: 14, Func. Count: 129, Neg. LLF: 150.06478765554246
Iteration: 15, Func. Count: 137, Neg. LLF: 150.06478771394356
Optimization terminated successfully (Exit mode 0)
Current function value: 150.06478765554246
Iterations: 15
Function evaluations: 137
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 152.19811296590746
Iteration: 2, Func. Count: 23, Neg. LLF: 151.8919293296084
Iteration: 3, Func. Count: 34, Neg. LLF: 150.4724767477531
Iteration: 4, Func. Count: 44, Neg. LLF: 150.4638320757701
Iteration: 5, Func. Count: 54, Neg. LLF: 150.4378003271912
Iteration: 6, Func. Count: 64, Neg. LLF: 150.34244043632688
Iteration: 7, Func. Count: 74, Neg. LLF: 150.12117933641775
Iteration: 8, Func. Count: 84, Neg. LLF: 150.08784985577765
Iteration: 9, Func. Count: 94, Neg. LLF: 150.07117417416546
Iteration: 10, Func. Count: 104, Neg. LLF: 150.06599442107714
Iteration: 11, Func. Count: 114, Neg. LLF: 150.06532946465143
Iteration: 12, Func. Count: 124, Neg. LLF: 150.0650671265652
Iteration: 13, Func. Count: 134, Neg. LLF: 150.06502154740417
Iteration: 14, Func. Count: 144, Neg. LLF: 150.06501724244836
Iteration: 15, Func. Count: 153, Neg. LLF: 150.06501726013806
Optimization terminated successfully (Exit mode 0)
Current function value: 150.06501724244836
Iterations: 15
Function evaluations: 153
Gradient evaluations: 15
Iteration: 1, Func. Count: 12, Neg. LLF: 152.99055111298395
Iteration: 2, Func. Count: 25, Neg. LLF: 151.7963476664174
Iteration: 3, Func. Count: 37, Neg. LLF: 150.50281046106142
Iteration: 4, Func. Count: 48, Neg. LLF: 150.46194231185768
Iteration: 5, Func. Count: 59, Neg. LLF: 150.4509172036677
Iteration: 6, Func. Count: 70, Neg. LLF: 150.42927882120267
Iteration: 7, Func. Count: 81, Neg. LLF: 150.31187784834907
Iteration: 8, Func. Count: 92, Neg. LLF: 150.08478986189775
Iteration: 9, Func. Count: 103, Neg. LLF: 150.07707327358114
Iteration: 10, Func. Count: 114, Neg. LLF: 150.06683450433616
Iteration: 11, Func. Count: 125, Neg. LLF: 150.06638828173192
Iteration: 12, Func. Count: 136, Neg. LLF: 150.06607096391207
Iteration: 13, Func. Count: 147, Neg. LLF: 150.06600675075228
Iteration: 14, Func. Count: 158, Neg. LLF: 150.0659977872732
Iteration: 15, Func. Count: 169, Neg. LLF: 150.0659946564701
Iteration: 16, Func. Count: 180, Neg. LLF: 150.06598372954005
Iteration: 17, Func. Count: 191, Neg. LLF: 150.06594404943525
Iteration: 18, Func. Count: 202, Neg. LLF: 150.06563389008195
Iteration: 19, Func. Count: 213, Neg. LLF: 150.0654895915265
Iteration: 20, Func. Count: 224, Neg. LLF: 150.0650844510946
Iteration: 21, Func. Count: 235, Neg. LLF: 150.0650173461198
Iteration: 22, Func. Count: 245, Neg. LLF: 150.06501736385124
Optimization terminated successfully (Exit mode 0)
Current function value: 150.0650173461198
Iterations: 22
Function evaluations: 245
Gradient evaluations: 22
Iteration: 1, Func. Count: 13, Neg. LLF: 153.41179900842354
Iteration: 2, Func. Count: 27, Neg. LLF: 151.7791970571657
Iteration: 3, Func. Count: 40, Neg. LLF: 150.50694419074378
Iteration: 4, Func. Count: 52, Neg. LLF: 150.466073640164
Iteration: 5, Func. Count: 64, Neg. LLF: 150.45447237030848
Iteration: 6, Func. Count: 76, Neg. LLF: 150.41504727575904
Iteration: 7, Func. Count: 88, Neg. LLF: 150.32485177694434
Iteration: 8, Func. Count: 100, Neg. LLF: 150.16471972226222
Iteration: 9, Func. Count: 112, Neg. LLF: 150.124297456239
Iteration: 10, Func. Count: 124, Neg. LLF: 150.0721475032446
Iteration: 11, Func. Count: 136, Neg. LLF: 150.06685749081495
Iteration: 12, Func. Count: 148, Neg. LLF: 150.06517256348684
Iteration: 13, Func. Count: 160, Neg. LLF: 150.0650620542413
Iteration: 14, Func. Count: 172, Neg. LLF: 150.06503508143834
Iteration: 15, Func. Count: 184, Neg. LLF: 150.06502162828906
Iteration: 16, Func. Count: 196, Neg. LLF: 150.0650176302091
Iteration: 17, Func. Count: 207, Neg. LLF: 150.06501766475787
Optimization terminated successfully (Exit mode 0)
Current function value: 150.0650176302091
Iterations: 17
Function evaluations: 207
Gradient evaluations: 17
Iteration: 1, Func. Count: 14, Neg. LLF: 152.8061373579566
Iteration: 2, Func. Count: 29, Neg. LLF: 151.7789105325787
Iteration: 3, Func. Count: 43, Neg. LLF: 150.53592726634264
Iteration: 4, Func. Count: 56, Neg. LLF: 150.50280641550273
Iteration: 5, Func. Count: 69, Neg. LLF: 150.4870163779762
Iteration: 6, Func. Count: 82, Neg. LLF: 150.48305416088206
Iteration: 7, Func. Count: 95, Neg. LLF: 150.47106717564765
Iteration: 8, Func. Count: 108, Neg. LLF: 150.393790258846
Iteration: 9, Func. Count: 121, Neg. LLF: 150.14298080708218
Iteration: 10, Func. Count: 134, Neg. LLF: 150.11084355660472
Iteration: 11, Func. Count: 147, Neg. LLF: 150.0982884997148
Iteration: 12, Func. Count: 160, Neg. LLF: 150.07381648865106
Iteration: 13, Func. Count: 173, Neg. LLF: 150.06853889308954
Iteration: 14, Func. Count: 186, Neg. LLF: 150.06601247346896
Iteration: 15, Func. Count: 199, Neg. LLF: 150.06560905652003
Iteration: 16, Func. Count: 212, Neg. LLF: 150.06549493746934
Iteration: 17, Func. Count: 225, Neg. LLF: 150.0654627889572
Iteration: 18, Func. Count: 238, Neg. LLF: 150.06542479834775
Iteration: 19, Func. Count: 251, Neg. LLF: 150.0653167025283
Iteration: 20, Func. Count: 264, Neg. LLF: 150.06513835477764
Iteration: 21, Func. Count: 277, Neg. LLF: 150.06496921713804
Iteration: 22, Func. Count: 290, Neg. LLF: 150.06480710177584
Iteration: 23, Func. Count: 303, Neg. LLF: 150.06478766690134
Iteration: 24, Func. Count: 315, Neg. LLF: 150.06478769656005
Optimization terminated successfully (Exit mode 0)
Current function value: 150.06478766690134
Iterations: 24
Function evaluations: 315
Gradient evaluations: 24
Iteration: 1, Func. Count: 7, Neg. LLF: 152.08607385116875
Iteration: 2, Func. Count: 13, Neg. LLF: 153.1712412626228
Iteration: 3, Func. Count: 20, Neg. LLF: 151.1480430004514
Iteration: 4, Func. Count: 26, Neg. LLF: 152.71487453358387
Iteration: 5, Func. Count: 33, Neg. LLF: 150.807021423756
Iteration: 6, Func. Count: 39, Neg. LLF: 150.75923877982572
Iteration: 7, Func. Count: 45, Neg. LLF: 150.73823208969873
Iteration: 8, Func. Count: 51, Neg. LLF: 150.66631674974258
Iteration: 9, Func. Count: 57, Neg. LLF: 150.6180556046441
Iteration: 10, Func. Count: 63, Neg. LLF: 150.61239309259764
Iteration: 11, Func. Count: 69, Neg. LLF: 150.61187130944003
Iteration: 12, Func. Count: 75, Neg. LLF: 150.61186163079765
Iteration: 13, Func. Count: 80, Neg. LLF: 150.61186176843697
Optimization terminated successfully (Exit mode 0)
Current function value: 150.61186163079765
Iterations: 13
Function evaluations: 80
Gradient evaluations: 13
Iteration: 1, Func. Count: 8, Neg. LLF: 151.88238092462925
Iteration: 2, Func. Count: 17, Neg. LLF: 150.71750585784346
Iteration: 3, Func. Count: 24, Neg. LLF: 150.71744489162208
Iteration: 4, Func. Count: 32, Neg. LLF: 150.71712983310388
Iteration: 5, Func. Count: 39, Neg. LLF: 150.7171076649415
Iteration: 6, Func. Count: 45, Neg. LLF: 150.71710766494212
Optimization terminated successfully (Exit mode 0)
Current function value: 150.7171076649415
Iterations: 6
Function evaluations: 45
Gradient evaluations: 6
Iteration: 1, Func. Count: 9, Neg. LLF: 151.40510294701124
Iteration: 2, Func. Count: 18, Neg. LLF: 150.71030705094748
Iteration: 3, Func. Count: 26, Neg. LLF: 150.71012856546582
Iteration: 4, Func. Count: 35, Neg. LLF: 150.70887759564826
Iteration: 5, Func. Count: 43, Neg. LLF: 150.70452486830268
Iteration: 6, Func. Count: 51, Neg. LLF: 150.7042673645374
Iteration: 7, Func. Count: 59, Neg. LLF: 150.7041907412721
Iteration: 8, Func. Count: 67, Neg. LLF: 150.7041895251372
Iteration: 9, Func. Count: 75, Neg. LLF: 150.70418344232806
Iteration: 10, Func. Count: 83, Neg. LLF: 150.70417146209192
Iteration: 11, Func. Count: 91, Neg. LLF: 150.70413590365098
Iteration: 12, Func. Count: 99, Neg. LLF: 150.70404471184767
Iteration: 13, Func. Count: 107, Neg. LLF: 150.7037799070987
Iteration: 14, Func. Count: 115, Neg. LLF: 150.7029106151255
Iteration: 15, Func. Count: 123, Neg. LLF: 151.03217226099338
Iteration: 16, Func. Count: 132, Neg. LLF: 150.9236454080051
Iteration: 17, Func. Count: 141, Neg. LLF: 150.87804017837448
Iteration: 18, Func. Count: 150, Neg. LLF: 150.84767359908767
Iteration: 19, Func. Count: 159, Neg. LLF: 150.8274989475394
Iteration: 20, Func. Count: 168, Neg. LLF: 166.72450738046712
Iteration: 21, Func. Count: 178, Neg. LLF: 150.710837025752
Iteration: 22, Func. Count: 187, Neg. LLF: 150.68771573351975
Iteration: 23, Func. Count: 195, Neg. LLF: 150.68744265625278
Iteration: 24, Func. Count: 203, Neg. LLF: 150.68622157734364
Iteration: 25, Func. Count: 211, Neg. LLF: 150.68416793752388
Iteration: 26, Func. Count: 219, Neg. LLF: 150.68527995046557
Iteration: 27, Func. Count: 228, Neg. LLF: 150.7085353106466
Iteration: 28, Func. Count: 237, Neg. LLF: 150.68007947837643
Iteration: 29, Func. Count: 246, Neg. LLF: 150.6340917788001
Iteration: 30, Func. Count: 254, Neg. LLF: 150.69165113441954
Iteration: 31, Func. Count: 263, Neg. LLF: 150.6065473566608
Iteration: 32, Func. Count: 271, Neg. LLF: 150.60616773345495
Iteration: 33, Func. Count: 279, Neg. LLF: 150.60610821209397
Iteration: 34, Func. Count: 287, Neg. LLF: 150.60604837272973
Iteration: 35, Func. Count: 295, Neg. LLF: 150.60597539609125
Iteration: 36, Func. Count: 303, Neg. LLF: 150.6059521987386
Iteration: 37, Func. Count: 311, Neg. LLF: 150.6059440540442
Iteration: 38, Func. Count: 318, Neg. LLF: 150.60594404792073
Optimization terminated successfully (Exit mode 0)
Current function value: 150.6059440540442
Iterations: 39
Function evaluations: 318
Gradient evaluations: 38
Iteration: 1, Func. Count: 10, Neg. LLF: 176.78379749284113
Iteration: 2, Func. Count: 21, Neg. LLF: 150.70491216916162
Iteration: 3, Func. Count: 30, Neg. LLF: 150.70355794188941
Iteration: 4, Func. Count: 39, Neg. LLF: 150.70129217512155
Iteration: 5, Func. Count: 48, Neg. LLF: 150.70082188903035
Iteration: 6, Func. Count: 57, Neg. LLF: 150.70062045942245
Iteration: 7, Func. Count: 66, Neg. LLF: 150.70028485812915
Iteration: 8, Func. Count: 75, Neg. LLF: 150.69988284976105
Iteration: 9, Func. Count: 84, Neg. LLF: 150.69969128520574
Iteration: 10, Func. Count: 93, Neg. LLF: 150.6996178800115
Iteration: 11, Func. Count: 102, Neg. LLF: 150.69961596103445
Iteration: 12, Func. Count: 111, Neg. LLF: 150.69960299884403
Iteration: 13, Func. Count: 120, Neg. LLF: 150.6995284076256
Iteration: 14, Func. Count: 129, Neg. LLF: 150.69925771434126
Iteration: 15, Func. Count: 138, Neg. LLF: 150.69858319189828
Iteration: 16, Func. Count: 147, Neg. LLF: 150.6817650255389
Iteration: 17, Func. Count: 156, Neg. LLF: 150.6863014677753
Iteration: 18, Func. Count: 166, Neg. LLF: 150.6547813679515
Iteration: 19, Func. Count: 175, Neg. LLF: 150.63900859600585
Iteration: 20, Func. Count: 184, Neg. LLF: 150.6196123589841
Iteration: 21, Func. Count: 193, Neg. LLF: 150.608290992637
Iteration: 22, Func. Count: 202, Neg. LLF: 150.60672112873712
Iteration: 23, Func. Count: 211, Neg. LLF: 150.60655781951547
Iteration: 24, Func. Count: 220, Neg. LLF: 150.60646410102316
Iteration: 25, Func. Count: 229, Neg. LLF: 150.6063805804947
Iteration: 26, Func. Count: 238, Neg. LLF: 150.60603850296908
Iteration: 27, Func. Count: 247, Neg. LLF: 150.62199427557175
Iteration: 28, Func. Count: 257, Neg. LLF: 150.62193564162573
Iteration: 29, Func. Count: 267, Neg. LLF: 150.60581340135258
Iteration: 30, Func. Count: 276, Neg. LLF: 150.6057868143765
Iteration: 31, Func. Count: 285, Neg. LLF: 150.60578502318614
Iteration: 32, Func. Count: 293, Neg. LLF: 150.60578501874068
Optimization terminated successfully (Exit mode 0)
Current function value: 150.60578502318614
Iterations: 32
Function evaluations: 293
Gradient evaluations: 32
Iteration: 1, Func. Count: 11, Neg. LLF: 172.6609807172012
Iteration: 2, Func. Count: 23, Neg. LLF: 150.69925554860131
Iteration: 3, Func. Count: 33, Neg. LLF: 150.69692027351564
Iteration: 4, Func. Count: 43, Neg. LLF: 150.69564186642407
Iteration: 5, Func. Count: 53, Neg. LLF: 150.69310119991925
Iteration: 6, Func. Count: 63, Neg. LLF: 150.69214457447052
Iteration: 7, Func. Count: 73, Neg. LLF: 150.68937544217727
Iteration: 8, Func. Count: 83, Neg. LLF: 150.68920741625007
Iteration: 9, Func. Count: 93, Neg. LLF: 150.6890986845195
Iteration: 10, Func. Count: 103, Neg. LLF: 150.6890879447011
Iteration: 11, Func. Count: 113, Neg. LLF: 150.68902618201847
Iteration: 12, Func. Count: 123, Neg. LLF: 150.68870625103557
Iteration: 13, Func. Count: 133, Neg. LLF: 150.68692337091835
Iteration: 14, Func. Count: 143, Neg. LLF: 150.67099833828593
Iteration: 15, Func. Count: 153, Neg. LLF: 150.60294573238497
Iteration: 16, Func. Count: 163, Neg. LLF: 150.61666805777674
Iteration: 17, Func. Count: 174, Neg. LLF: 150.59769198861358
Iteration: 18, Func. Count: 184, Neg. LLF: 150.59440333870833
Iteration: 19, Func. Count: 194, Neg. LLF: 150.58497331722387
Iteration: 20, Func. Count: 204, Neg. LLF: 150.57947320890662
Iteration: 21, Func. Count: 214, Neg. LLF: 150.57070893528865
Iteration: 22, Func. Count: 224, Neg. LLF: 150.57000446841977
Iteration: 23, Func. Count: 234, Neg. LLF: 150.60695336496622
Iteration: 24, Func. Count: 246, Neg. LLF: 150.58686864670753
Iteration: 25, Func. Count: 257, Neg. LLF: 150.5702097781584
Iteration: 26, Func. Count: 267, Neg. LLF: 150.5702100099102
Iteration: 27, Func. Count: 277, Neg. LLF: 150.57020860066206
Optimization terminated successfully (Exit mode 0)
Current function value: 150.57020861514752
Iterations: 28
Function evaluations: 277
Gradient evaluations: 27
Iteration: 1, Func. Count: 8, Neg. LLF: 152.7832306818115
Iteration: 2, Func. Count: 16, Neg. LLF: 157.10527441558676
Iteration: 3, Func. Count: 24, Neg. LLF: 150.38822837468177
Iteration: 4, Func. Count: 31, Neg. LLF: 150.32500910754368
Iteration: 5, Func. Count: 38, Neg. LLF: 150.27383878777363
Iteration: 6, Func. Count: 45, Neg. LLF: 150.2035136242781
Iteration: 7, Func. Count: 52, Neg. LLF: 150.1416138847291
Iteration: 8, Func. Count: 59, Neg. LLF: 150.07962745500416
Iteration: 9, Func. Count: 66, Neg. LLF: 150.06711788927686
Iteration: 10, Func. Count: 73, Neg. LLF: 150.06495175015257
Iteration: 11, Func. Count: 80, Neg. LLF: 150.06481824880177
Iteration: 12, Func. Count: 87, Neg. LLF: 150.06479426623696
Iteration: 13, Func. Count: 94, Neg. LLF: 150.06478800458822
Iteration: 14, Func. Count: 100, Neg. LLF: 150.06478800460425
Optimization terminated successfully (Exit mode 0)
Current function value: 150.06478800458822
Iterations: 14
Function evaluations: 100
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 151.27167435445662
Iteration: 2, Func. Count: 18, Neg. LLF: 151.7194956058109
Iteration: 3, Func. Count: 27, Neg. LLF: 150.46841240160927
Iteration: 4, Func. Count: 35, Neg. LLF: 150.45960162675323
Iteration: 5, Func. Count: 43, Neg. LLF: 150.4350804451101
Iteration: 6, Func. Count: 51, Neg. LLF: 150.18584713950807
Iteration: 7, Func. Count: 59, Neg. LLF: 150.12659874356413
Iteration: 8, Func. Count: 67, Neg. LLF: 150.07097083705372
Iteration: 9, Func. Count: 75, Neg. LLF: 150.06643116179418
Iteration: 10, Func. Count: 83, Neg. LLF: 150.06521749912596
Iteration: 11, Func. Count: 91, Neg. LLF: 150.06486433969096
Iteration: 12, Func. Count: 99, Neg. LLF: 150.0648286000299
Iteration: 13, Func. Count: 107, Neg. LLF: 150.06482648872336
Iteration: 14, Func. Count: 115, Neg. LLF: 150.06482527579988
Iteration: 15, Func. Count: 123, Neg. LLF: 150.06482162712715
Iteration: 16, Func. Count: 131, Neg. LLF: 150.06481425042878
Iteration: 17, Func. Count: 139, Neg. LLF: 150.0648027337731
Iteration: 18, Func. Count: 147, Neg. LLF: 150.06479245090654
Iteration: 19, Func. Count: 155, Neg. LLF: 150.06478811543573
Iteration: 20, Func. Count: 162, Neg. LLF: 150.06478813727253
Optimization terminated successfully (Exit mode 0)
Current function value: 150.06478811543573
Iterations: 20
Function evaluations: 162
Gradient evaluations: 20
Iteration: 1, Func. Count: 10, Neg. LLF: 157.2075541869995
Iteration: 2, Func. Count: 21, Neg. LLF: 151.3639493127581
Iteration: 3, Func. Count: 31, Neg. LLF: 150.4942952598746
Iteration: 4, Func. Count: 40, Neg. LLF: 150.46260460664294
Iteration: 5, Func. Count: 49, Neg. LLF: 150.4525414054764
Iteration: 6, Func. Count: 58, Neg. LLF: 150.41390070702704
Iteration: 7, Func. Count: 67, Neg. LLF: 150.20436775415837
Iteration: 8, Func. Count: 76, Neg. LLF: 150.10460141249044
Iteration: 9, Func. Count: 85, Neg. LLF: 150.0745809651119
Iteration: 10, Func. Count: 94, Neg. LLF: 150.0665090970215
Iteration: 11, Func. Count: 103, Neg. LLF: 150.0656427952476
Iteration: 12, Func. Count: 112, Neg. LLF: 150.0651849870939
Iteration: 13, Func. Count: 121, Neg. LLF: 150.06503121032662
Iteration: 14, Func. Count: 130, Neg. LLF: 150.06501865652174
Iteration: 15, Func. Count: 139, Neg. LLF: 150.06501752312204
Iteration: 16, Func. Count: 147, Neg. LLF: 150.06501754091522
Optimization terminated successfully (Exit mode 0)
Current function value: 150.06501752312204
Iterations: 16
Function evaluations: 147
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 158.7608048573408
Iteration: 2, Func. Count: 23, Neg. LLF: 150.80395230329083
Iteration: 3, Func. Count: 34, Neg. LLF: 150.47319490888293
Iteration: 4, Func. Count: 44, Neg. LLF: 150.46587366755304
Iteration: 5, Func. Count: 54, Neg. LLF: 150.4530952317944
Iteration: 6, Func. Count: 64, Neg. LLF: 150.4219200375989
Iteration: 7, Func. Count: 74, Neg. LLF: 150.3474437700781
Iteration: 8, Func. Count: 84, Neg. LLF: 150.17805755586303
Iteration: 9, Func. Count: 94, Neg. LLF: 150.1156426022108
Iteration: 10, Func. Count: 104, Neg. LLF: 150.07501028089482
Iteration: 11, Func. Count: 114, Neg. LLF: 150.06776389112952
Iteration: 12, Func. Count: 124, Neg. LLF: 150.06542771404452
Iteration: 13, Func. Count: 134, Neg. LLF: 150.06504691955604
Iteration: 14, Func. Count: 144, Neg. LLF: 150.06502396923082
Iteration: 15, Func. Count: 154, Neg. LLF: 150.06501876901794
Iteration: 16, Func. Count: 164, Neg. LLF: 150.06501724200152
Iteration: 17, Func. Count: 173, Neg. LLF: 150.0650172765717
Optimization terminated successfully (Exit mode 0)
Current function value: 150.06501724200152
Iterations: 17
Function evaluations: 173
Gradient evaluations: 17
Iteration: 1, Func. Count: 12, Neg. LLF: 157.7832885119742
Iteration: 2, Func. Count: 25, Neg. LLF: 151.09885684246325
Iteration: 3, Func. Count: 37, Neg. LLF: 150.51367219926027
Iteration: 4, Func. Count: 48, Neg. LLF: 150.49434889433846
Iteration: 5, Func. Count: 59, Neg. LLF: 150.48081807384594
Iteration: 6, Func. Count: 70, Neg. LLF: 150.47360251725502
Iteration: 7, Func. Count: 81, Neg. LLF: 150.43668527492164
Iteration: 8, Func. Count: 92, Neg. LLF: 150.37970850403144
Iteration: 9, Func. Count: 103, Neg. LLF: 150.08183096680048
Iteration: 10, Func. Count: 114, Neg. LLF: 150.07262906956487
Iteration: 11, Func. Count: 125, Neg. LLF: 150.0673698982247
Iteration: 12, Func. Count: 136, Neg. LLF: 150.065051094006
Iteration: 13, Func. Count: 147, Neg. LLF: 150.0650332541512
Iteration: 14, Func. Count: 158, Neg. LLF: 150.0650221302515
Iteration: 15, Func. Count: 169, Neg. LLF: 150.06501884535382
Iteration: 16, Func. Count: 180, Neg. LLF: 150.0650172302776
Iteration: 17, Func. Count: 190, Neg. LLF: 150.0650172598112
Optimization terminated successfully (Exit mode 0)
Current function value: 150.0650172302776
Iterations: 17
Function evaluations: 190
Gradient evaluations: 17
Iteration: 1, Func. Count: 9, Neg. LLF: 153.18761786914672
Iteration: 2, Func. Count: 18, Neg. LLF: 155.2385631349289
Iteration: 3, Func. Count: 27, Neg. LLF: 150.37839955410493
Iteration: 4, Func. Count: 35, Neg. LLF: 150.31761276266016
Iteration: 5, Func. Count: 43, Neg. LLF: 150.27984264046793
Iteration: 6, Func. Count: 51, Neg. LLF: 150.19864285994336
Iteration: 7, Func. Count: 59, Neg. LLF: 150.13896674635714
Iteration: 8, Func. Count: 67, Neg. LLF: 150.08049134764005
Iteration: 9, Func. Count: 75, Neg. LLF: 150.06636962887717
Iteration: 10, Func. Count: 83, Neg. LLF: 150.0649363926385
Iteration: 11, Func. Count: 91, Neg. LLF: 150.06482148140077
Iteration: 12, Func. Count: 99, Neg. LLF: 150.06479344847168
Iteration: 13, Func. Count: 107, Neg. LLF: 150.06478788178666
Iteration: 14, Func. Count: 114, Neg. LLF: 150.06478785262823
Optimization terminated successfully (Exit mode 0)
Current function value: 150.06478788178666
Iterations: 14
Function evaluations: 114
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 152.350590832017
Iteration: 2, Func. Count: 21, Neg. LLF: 151.8487529845222
Iteration: 3, Func. Count: 31, Neg. LLF: 150.47238729348658
Iteration: 4, Func. Count: 40, Neg. LLF: 150.4641934254211
Iteration: 5, Func. Count: 49, Neg. LLF: 150.44646655156728
Iteration: 6, Func. Count: 58, Neg. LLF: 150.34774397846746
Iteration: 7, Func. Count: 67, Neg. LLF: 150.21203974579475
Iteration: 8, Func. Count: 76, Neg. LLF: 150.11546466592827
Iteration: 9, Func. Count: 85, Neg. LLF: 150.06831461196583
Iteration: 10, Func. Count: 94, Neg. LLF: 150.06564025694087
Iteration: 11, Func. Count: 103, Neg. LLF: 150.06505933107806
Iteration: 12, Func. Count: 112, Neg. LLF: 150.0650187789139
Iteration: 13, Func. Count: 121, Neg. LLF: 150.0650172158822
Iteration: 14, Func. Count: 129, Neg. LLF: 150.0650172335816
Optimization terminated successfully (Exit mode 0)
Current function value: 150.0650172158822
Iterations: 14
Function evaluations: 129
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 153.13588846403331
Iteration: 2, Func. Count: 23, Neg. LLF: 151.79494377132184
Iteration: 3, Func. Count: 34, Neg. LLF: 150.50697339926
Iteration: 4, Func. Count: 44, Neg. LLF: 150.4620631361536
Iteration: 5, Func. Count: 54, Neg. LLF: 150.4518217730967
Iteration: 6, Func. Count: 64, Neg. LLF: 150.43414352565952
Iteration: 7, Func. Count: 74, Neg. LLF: 150.33114068648888
Iteration: 8, Func. Count: 84, Neg. LLF: 150.11493847694703
Iteration: 9, Func. Count: 94, Neg. LLF: 150.08578158251765
Iteration: 10, Func. Count: 104, Neg. LLF: 150.06795945392827
Iteration: 11, Func. Count: 114, Neg. LLF: 150.06666335217452
Iteration: 12, Func. Count: 124, Neg. LLF: 150.06572048688753
Iteration: 13, Func. Count: 134, Neg. LLF: 150.06551134152204
Iteration: 14, Func. Count: 144, Neg. LLF: 150.0652602218105
Iteration: 15, Func. Count: 154, Neg. LLF: 150.06511973008293
Iteration: 16, Func. Count: 164, Neg. LLF: 150.06508735598382
Iteration: 17, Func. Count: 174, Neg. LLF: 150.06504511141483
Iteration: 18, Func. Count: 184, Neg. LLF: 150.06502918316517
Iteration: 19, Func. Count: 194, Neg. LLF: 150.06502815038021
Iteration: 20, Func. Count: 204, Neg. LLF: 150.0650181458674
Iteration: 21, Func. Count: 214, Neg. LLF: 150.06501753704924
Optimization terminated successfully (Exit mode 0)
Current function value: 150.06501753704924
Iterations: 22
Function evaluations: 214
Gradient evaluations: 21
Iteration: 1, Func. Count: 12, Neg. LLF: 153.59312083465977
Iteration: 2, Func. Count: 25, Neg. LLF: 151.7770497607427
Iteration: 3, Func. Count: 37, Neg. LLF: 150.5133693615846
Iteration: 4, Func. Count: 48, Neg. LLF: 150.466486200092
Iteration: 5, Func. Count: 59, Neg. LLF: 150.45577473366473
Iteration: 6, Func. Count: 70, Neg. LLF: 150.41570173420018
Iteration: 7, Func. Count: 81, Neg. LLF: 150.30743135729918
Iteration: 8, Func. Count: 92, Neg. LLF: 150.1713946184037
Iteration: 9, Func. Count: 103, Neg. LLF: 150.12804244329823
Iteration: 10, Func. Count: 114, Neg. LLF: 150.0725249486131
Iteration: 11, Func. Count: 125, Neg. LLF: 150.06688691785553
Iteration: 12, Func. Count: 136, Neg. LLF: 150.06554896669388
Iteration: 13, Func. Count: 147, Neg. LLF: 150.06515434368077
Iteration: 14, Func. Count: 158, Neg. LLF: 150.0650563113173
Iteration: 15, Func. Count: 169, Neg. LLF: 150.06503578215103
Iteration: 16, Func. Count: 180, Neg. LLF: 150.06502331803586
Iteration: 17, Func. Count: 191, Neg. LLF: 150.0650178733316
Iteration: 18, Func. Count: 202, Neg. LLF: 150.06501721170937
Optimization terminated successfully (Exit mode 0)
Current function value: 150.06501721170937
Iterations: 18
Function evaluations: 202
Gradient evaluations: 18
Iteration: 1, Func. Count: 13, Neg. LLF: 152.94126728485725
Iteration: 2, Func. Count: 27, Neg. LLF: 151.7763891917335
Iteration: 3, Func. Count: 40, Neg. LLF: 150.52889659875808
Iteration: 4, Func. Count: 52, Neg. LLF: 150.5014209773908
Iteration: 5, Func. Count: 64, Neg. LLF: 150.48660017226425
Iteration: 6, Func. Count: 76, Neg. LLF: 150.48233971775755
Iteration: 7, Func. Count: 88, Neg. LLF: 150.4692524164632
Iteration: 8, Func. Count: 100, Neg. LLF: 150.3789661402596
Iteration: 9, Func. Count: 112, Neg. LLF: 150.1238012635114
Iteration: 10, Func. Count: 124, Neg. LLF: 150.10707646044025
Iteration: 11, Func. Count: 136, Neg. LLF: 150.08833251207088
Iteration: 12, Func. Count: 148, Neg. LLF: 150.07489076043979
Iteration: 13, Func. Count: 160, Neg. LLF: 150.06962668701627
Iteration: 14, Func. Count: 172, Neg. LLF: 150.06625434280068
Iteration: 15, Func. Count: 184, Neg. LLF: 150.0651883265247
Iteration: 16, Func. Count: 196, Neg. LLF: 150.0650913475861
Iteration: 17, Func. Count: 208, Neg. LLF: 150.06507603232296
Iteration: 18, Func. Count: 220, Neg. LLF: 150.06505575045787
Iteration: 19, Func. Count: 232, Neg. LLF: 150.0650025755201
Iteration: 20, Func. Count: 244, Neg. LLF: 150.06491749704563
Iteration: 21, Func. Count: 256, Neg. LLF: 150.06483821885007
Iteration: 22, Func. Count: 268, Neg. LLF: 150.0647945886394
Iteration: 23, Func. Count: 280, Neg. LLF: 150.0647876182896
Iteration: 24, Func. Count: 291, Neg. LLF: 150.0647876479333
Optimization terminated successfully (Exit mode 0)
Current function value: 150.0647876182896
Iterations: 24
Function evaluations: 291
Gradient evaluations: 24
Iteration: 1, Func. Count: 10, Neg. LLF: 153.69157255954505
Iteration: 2, Func. Count: 20, Neg. LLF: 153.34511333383634
Iteration: 3, Func. Count: 30, Neg. LLF: 150.39600328740948
Iteration: 4, Func. Count: 39, Neg. LLF: 150.6468981414743
Iteration: 5, Func. Count: 49, Neg. LLF: 150.27694621029232
Iteration: 6, Func. Count: 58, Neg. LLF: 150.1797486471549
Iteration: 7, Func. Count: 67, Neg. LLF: 150.10880118996133
Iteration: 8, Func. Count: 76, Neg. LLF: 150.07241283784532
Iteration: 9, Func. Count: 85, Neg. LLF: 150.06548500462563
Iteration: 10, Func. Count: 94, Neg. LLF: 150.06485142623893
Iteration: 11, Func. Count: 103, Neg. LLF: 150.06480068788503
Iteration: 12, Func. Count: 112, Neg. LLF: 150.06478848321757
Iteration: 13, Func. Count: 121, Neg. LLF: 150.06478761600874
Optimization terminated successfully (Exit mode 0)
Current function value: 150.06478761600874
Iterations: 13
Function evaluations: 121
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 152.1940075819387
Iteration: 2, Func. Count: 23, Neg. LLF: 151.88915229192088
Iteration: 3, Func. Count: 34, Neg. LLF: 150.47259334404018
Iteration: 4, Func. Count: 44, Neg. LLF: 150.4643301584181
Iteration: 5, Func. Count: 54, Neg. LLF: 150.44025587944765
Iteration: 6, Func. Count: 64, Neg. LLF: 150.33431229658214
Iteration: 7, Func. Count: 74, Neg. LLF: 150.12479414042966
Iteration: 8, Func. Count: 84, Neg. LLF: 150.08899672937412
Iteration: 9, Func. Count: 94, Neg. LLF: 150.07188750436435
Iteration: 10, Func. Count: 104, Neg. LLF: 150.06590876970796
Iteration: 11, Func. Count: 114, Neg. LLF: 150.06526169933574
Iteration: 12, Func. Count: 124, Neg. LLF: 150.06506634110585
Iteration: 13, Func. Count: 134, Neg. LLF: 150.06502128627483
Iteration: 14, Func. Count: 144, Neg. LLF: 150.0650172560603
Iteration: 15, Func. Count: 153, Neg. LLF: 150.06501727375303
Optimization terminated successfully (Exit mode 0)
Current function value: 150.0650172560603
Iterations: 15
Function evaluations: 153
Gradient evaluations: 15
Iteration: 1, Func. Count: 12, Neg. LLF: 153.05126369580486
Iteration: 2, Func. Count: 25, Neg. LLF: 151.79602052522253
Iteration: 3, Func. Count: 37, Neg. LLF: 150.5084075811245
Iteration: 4, Func. Count: 48, Neg. LLF: 150.4617551200814
Iteration: 5, Func. Count: 59, Neg. LLF: 150.45217094925098
Iteration: 6, Func. Count: 70, Neg. LLF: 150.43227630834662
Iteration: 7, Func. Count: 81, Neg. LLF: 150.31340154883395
Iteration: 8, Func. Count: 92, Neg. LLF: 150.13236403725742
Iteration: 9, Func. Count: 103, Neg. LLF: 150.08730203647386
Iteration: 10, Func. Count: 114, Neg. LLF: 150.06785302978523
Iteration: 11, Func. Count: 125, Neg. LLF: 150.06569338297297
Iteration: 12, Func. Count: 136, Neg. LLF: 150.0654751088259
Iteration: 13, Func. Count: 147, Neg. LLF: 150.06505173690402
Iteration: 14, Func. Count: 158, Neg. LLF: 150.06501917054874
Iteration: 15, Func. Count: 169, Neg. LLF: 150.06501822950733
Optimization terminated successfully (Exit mode 0)
Current function value: 150.06501822950733
Iterations: 15
Function evaluations: 169
Gradient evaluations: 15
Iteration: 1, Func. Count: 13, Neg. LLF: 153.5021847643199
Iteration: 2, Func. Count: 27, Neg. LLF: 151.77774618774686
Iteration: 3, Func. Count: 40, Neg. LLF: 150.51345796293248
Iteration: 4, Func. Count: 52, Neg. LLF: 150.4665915932439
Iteration: 5, Func. Count: 64, Neg. LLF: 150.45592108083088
Iteration: 6, Func. Count: 76, Neg. LLF: 150.4127098188889
Iteration: 7, Func. Count: 88, Neg. LLF: 150.3016442956359
Iteration: 8, Func. Count: 100, Neg. LLF: 150.15867336535453
Iteration: 9, Func. Count: 112, Neg. LLF: 150.1200630106327
Iteration: 10, Func. Count: 124, Neg. LLF: 150.0709083229674
Iteration: 11, Func. Count: 136, Neg. LLF: 150.0662212615078
Iteration: 12, Func. Count: 148, Neg. LLF: 150.06529793894327
Iteration: 13, Func. Count: 160, Neg. LLF: 150.06510251274054
Iteration: 14, Func. Count: 172, Neg. LLF: 150.06505193412247
Iteration: 15, Func. Count: 184, Neg. LLF: 150.06503237006484
Iteration: 16, Func. Count: 196, Neg. LLF: 150.0650209369187
Iteration: 17, Func. Count: 208, Neg. LLF: 150.06501755018974
Iteration: 18, Func. Count: 219, Neg. LLF: 150.06501758476034
Optimization terminated successfully (Exit mode 0)
Current function value: 150.06501755018974
Iterations: 18
Function evaluations: 219
Gradient evaluations: 18
Iteration: 1, Func. Count: 14, Neg. LLF: 152.85719524830995
Iteration: 2, Func. Count: 29, Neg. LLF: 151.77705077426725
Iteration: 3, Func. Count: 43, Neg. LLF: 150.53349255749225
Iteration: 4, Func. Count: 56, Neg. LLF: 150.50008653950906
Iteration: 5, Func. Count: 69, Neg. LLF: 150.4872024177068
Iteration: 6, Func. Count: 82, Neg. LLF: 150.48278311761396
Iteration: 7, Func. Count: 95, Neg. LLF: 150.46884459856165
Iteration: 8, Func. Count: 108, Neg. LLF: 150.37105157614508
Iteration: 9, Func. Count: 121, Neg. LLF: 150.12611991499804
Iteration: 10, Func. Count: 134, Neg. LLF: 150.1138160751786
Iteration: 11, Func. Count: 147, Neg. LLF: 150.0845991572636
Iteration: 12, Func. Count: 160, Neg. LLF: 150.07494169296442
Iteration: 13, Func. Count: 173, Neg. LLF: 150.06852682211036
Iteration: 14, Func. Count: 186, Neg. LLF: 150.06546887156716
Iteration: 15, Func. Count: 199, Neg. LLF: 150.06484012350114
Iteration: 16, Func. Count: 212, Neg. LLF: 150.06478966891922
Iteration: 17, Func. Count: 225, Neg. LLF: 150.06478844720434
Iteration: 18, Func. Count: 237, Neg. LLF: 150.0647884768317
Optimization terminated successfully (Exit mode 0)
Current function value: 150.06478844720434
Iterations: 18
Function evaluations: 237
Gradient evaluations: 18
Iteration: 1, Func. Count: 11, Neg. LLF: 155.09356809574527
Iteration: 2, Func. Count: 22, Neg. LLF: 152.27214808402158
Iteration: 3, Func. Count: 33, Neg. LLF: 150.4912073243832
Iteration: 4, Func. Count: 43, Neg. LLF: 150.48509082032226
Iteration: 5, Func. Count: 54, Neg. LLF: 150.2762386415583
Iteration: 6, Func. Count: 64, Neg. LLF: 150.25115899024502
Iteration: 7, Func. Count: 74, Neg. LLF: 150.18652402862656
Iteration: 8, Func. Count: 84, Neg. LLF: 150.10229181084873
Iteration: 9, Func. Count: 94, Neg. LLF: 150.0697212924376
Iteration: 10, Func. Count: 104, Neg. LLF: 150.06538548829516
Iteration: 11, Func. Count: 114, Neg. LLF: 150.06489632669914
Iteration: 12, Func. Count: 124, Neg. LLF: 150.0647946039363
Iteration: 13, Func. Count: 134, Neg. LLF: 150.06478767382137
Iteration: 14, Func. Count: 143, Neg. LLF: 150.06478773221792
Optimization terminated successfully (Exit mode 0)
Current function value: 150.06478767382137
Iterations: 14
Function evaluations: 143
Gradient evaluations: 14
Iteration: 1, Func. Count: 12, Neg. LLF: 152.18513402717963
Iteration: 2, Func. Count: 25, Neg. LLF: 151.89323131734125
Iteration: 3, Func. Count: 37, Neg. LLF: 150.47245153153216
Iteration: 4, Func. Count: 48, Neg. LLF: 150.46394166065116
Iteration: 5, Func. Count: 59, Neg. LLF: 150.4367993121264
Iteration: 6, Func. Count: 70, Neg. LLF: 150.3434355529127
Iteration: 7, Func. Count: 81, Neg. LLF: 150.11762391034256
Iteration: 8, Func. Count: 92, Neg. LLF: 150.08811151340194
Iteration: 9, Func. Count: 103, Neg. LLF: 150.06994343642023
Iteration: 10, Func. Count: 114, Neg. LLF: 150.06588520409318
Iteration: 11, Func. Count: 125, Neg. LLF: 150.06527398233064
Iteration: 12, Func. Count: 136, Neg. LLF: 150.06505622994044
Iteration: 13, Func. Count: 147, Neg. LLF: 150.06502032265428
Iteration: 14, Func. Count: 158, Neg. LLF: 150.06501720124692
Iteration: 15, Func. Count: 168, Neg. LLF: 150.0650172189294
Optimization terminated successfully (Exit mode 0)
Current function value: 150.06501720124692
Iterations: 15
Function evaluations: 168
Gradient evaluations: 15
Iteration: 1, Func. Count: 13, Neg. LLF: 153.0083962139356
Iteration: 2, Func. Count: 27, Neg. LLF: 151.7963178930537
Iteration: 3, Func. Count: 40, Neg. LLF: 150.50894330145516
Iteration: 4, Func. Count: 52, Neg. LLF: 150.46180859268287
Iteration: 5, Func. Count: 64, Neg. LLF: 150.45240442308304
Iteration: 6, Func. Count: 76, Neg. LLF: 150.42939611098922
Iteration: 7, Func. Count: 88, Neg. LLF: 150.29705776669562
Iteration: 8, Func. Count: 100, Neg. LLF: 150.1500096255641
Iteration: 9, Func. Count: 112, Neg. LLF: 150.08850783917043
Iteration: 10, Func. Count: 124, Neg. LLF: 150.0670879515077
Iteration: 11, Func. Count: 136, Neg. LLF: 150.06538814702995
Iteration: 12, Func. Count: 148, Neg. LLF: 150.06523509787033
Iteration: 13, Func. Count: 160, Neg. LLF: 150.06505029236936
Iteration: 14, Func. Count: 172, Neg. LLF: 150.06503626265095
Iteration: 15, Func. Count: 184, Neg. LLF: 150.06502276934864
Iteration: 16, Func. Count: 196, Neg. LLF: 150.0650179182875
Iteration: 17, Func. Count: 207, Neg. LLF: 150.06501793608166
Optimization terminated successfully (Exit mode 0)
Current function value: 150.0650179182875
Iterations: 17
Function evaluations: 207
Gradient evaluations: 17
Iteration: 1, Func. Count: 14, Neg. LLF: 153.4510592870659
Iteration: 2, Func. Count: 29, Neg. LLF: 151.7780523800654
Iteration: 3, Func. Count: 43, Neg. LLF: 150.51471775994457
Iteration: 4, Func. Count: 56, Neg. LLF: 150.46652539533585
Iteration: 5, Func. Count: 69, Neg. LLF: 150.45624485470844
Iteration: 6, Func. Count: 82, Neg. LLF: 150.40643908002158
Iteration: 7, Func. Count: 95, Neg. LLF: 150.29794003490787
Iteration: 8, Func. Count: 108, Neg. LLF: 150.17455224117717
Iteration: 9, Func. Count: 121, Neg. LLF: 150.1261133205428
Iteration: 10, Func. Count: 134, Neg. LLF: 150.07207490017652
Iteration: 11, Func. Count: 147, Neg. LLF: 150.0670657117752
Iteration: 12, Func. Count: 160, Neg. LLF: 150.06590066893273
Iteration: 13, Func. Count: 173, Neg. LLF: 150.06575877507385
Iteration: 14, Func. Count: 186, Neg. LLF: 150.06561073968072
Iteration: 15, Func. Count: 199, Neg. LLF: 150.06517468409174
Iteration: 16, Func. Count: 212, Neg. LLF: 150.06510910411686
Iteration: 17, Func. Count: 225, Neg. LLF: 150.06502679078545
Iteration: 18, Func. Count: 238, Neg. LLF: 150.06502404428775
Iteration: 19, Func. Count: 251, Neg. LLF: 150.06501733712042
Iteration: 20, Func. Count: 263, Neg. LLF: 150.0650173717212
Optimization terminated successfully (Exit mode 0)
Current function value: 150.06501733712042
Iterations: 20
Function evaluations: 263
Gradient evaluations: 20
Iteration: 1, Func. Count: 15, Neg. LLF: 152.8169910835371
Iteration: 2, Func. Count: 31, Neg. LLF: 151.77733015904374
Iteration: 3, Func. Count: 46, Neg. LLF: 150.53367537382076
Iteration: 4, Func. Count: 60, Neg. LLF: 150.5001489640392
Iteration: 5, Func. Count: 74, Neg. LLF: 150.48716797473776
Iteration: 6, Func. Count: 88, Neg. LLF: 150.4828713240515
Iteration: 7, Func. Count: 102, Neg. LLF: 150.4692488553571
Iteration: 8, Func. Count: 116, Neg. LLF: 150.36515893170218
Iteration: 9, Func. Count: 130, Neg. LLF: 150.1261244407265
Iteration: 10, Func. Count: 144, Neg. LLF: 150.11179075683626
Iteration: 11, Func. Count: 158, Neg. LLF: 150.0846824947462
Iteration: 12, Func. Count: 172, Neg. LLF: 150.07526011917957
Iteration: 13, Func. Count: 186, Neg. LLF: 150.06882031766867
Iteration: 14, Func. Count: 200, Neg. LLF: 150.06548611450125
Iteration: 15, Func. Count: 214, Neg. LLF: 150.06481479230962
Iteration: 16, Func. Count: 228, Neg. LLF: 150.06479032828784
Iteration: 17, Func. Count: 242, Neg. LLF: 150.06478954900848
Optimization terminated successfully (Exit mode 0)
Current function value: 150.06478954900848
Iterations: 17
Function evaluations: 242
Gradient evaluations: 17
Iteration: 1, Func. Count: 8, Neg. LLF: 151.98174037432727
Iteration: 2, Func. Count: 15, Neg. LLF: 152.2638504534355
Iteration: 3, Func. Count: 23, Neg. LLF: 151.06580862867568
Iteration: 4, Func. Count: 30, Neg. LLF: 151.91085652047428
Iteration: 5, Func. Count: 38, Neg. LLF: 150.7705855818759
Iteration: 6, Func. Count: 45, Neg. LLF: 150.74336056343523
Iteration: 7, Func. Count: 52, Neg. LLF: 150.70366587167194
Iteration: 8, Func. Count: 59, Neg. LLF: 150.64449696927142
Iteration: 9, Func. Count: 66, Neg. LLF: 150.61801087423356
Iteration: 10, Func. Count: 73, Neg. LLF: 150.61201282635207
Iteration: 11, Func. Count: 80, Neg. LLF: 150.6118637030991
Iteration: 12, Func. Count: 87, Neg. LLF: 150.61186176855512
Iteration: 13, Func. Count: 93, Neg. LLF: 150.61186194249865
Optimization terminated successfully (Exit mode 0)
Current function value: 150.61186176855512
Iterations: 13
Function evaluations: 93
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 151.20828724361843
Iteration: 2, Func. Count: 18, Neg. LLF: 150.71718317091236
Iteration: 3, Func. Count: 26, Neg. LLF: 150.71724755225452
Iteration: 4, Func. Count: 34, Neg. LLF: 150.71710872371798
Optimization terminated successfully (Exit mode 0)
Current function value: 150.717108723567
Iterations: 4
Function evaluations: 34
Gradient evaluations: 4
Iteration: 1, Func. Count: 10, Neg. LLF: 153.70920021968973
Iteration: 2, Func. Count: 21, Neg. LLF: 150.7100054459932
Iteration: 3, Func. Count: 30, Neg. LLF: 150.70959116141617
Iteration: 4, Func. Count: 39, Neg. LLF: 150.70861699567536
Iteration: 5, Func. Count: 48, Neg. LLF: 150.7043154505712
Iteration: 6, Func. Count: 57, Neg. LLF: 150.7041894980113
Iteration: 7, Func. Count: 66, Neg. LLF: 150.70418462652972
Iteration: 8, Func. Count: 75, Neg. LLF: 150.70418337177554
Iteration: 9, Func. Count: 84, Neg. LLF: 150.70417521484492
Iteration: 10, Func. Count: 93, Neg. LLF: 150.7041286006698
Iteration: 11, Func. Count: 102, Neg. LLF: 150.703863678515
Iteration: 12, Func. Count: 111, Neg. LLF: 150.70195101318748
Iteration: 13, Func. Count: 120, Neg. LLF: 150.61986861515487
Iteration: 14, Func. Count: 129, Neg. LLF: 173.401623186506
Iteration: 15, Func. Count: 140, Neg. LLF: 152.97099735553573
Iteration: 16, Func. Count: 151, Neg. LLF: 150.6081258059733
Iteration: 17, Func. Count: 160, Neg. LLF: 150.6059632657952
Iteration: 18, Func. Count: 169, Neg. LLF: 150.6059476952562
Iteration: 19, Func. Count: 178, Neg. LLF: 150.6059426881234
Iteration: 20, Func. Count: 187, Neg. LLF: 150.60594450590222
Iteration: 21, Func. Count: 196, Neg. LLF: 150.6059407997477
Iteration: 22, Func. Count: 205, Neg. LLF: 150.60595532683593
Iteration: 23, Func. Count: 215, Neg. LLF: 150.6059438484825
Iteration: 24, Func. Count: 223, Neg. LLF: 150.60594384197876
Optimization terminated successfully (Exit mode 0)
Current function value: 150.6059438484825
Iterations: 25
Function evaluations: 223
Gradient evaluations: 24
Iteration: 1, Func. Count: 11, Neg. LLF: 176.84157075088038
Iteration: 2, Func. Count: 23, Neg. LLF: 150.70487423626489
Iteration: 3, Func. Count: 33, Neg. LLF: 150.70346950113478
Iteration: 4, Func. Count: 43, Neg. LLF: 150.70119430152604
Iteration: 5, Func. Count: 53, Neg. LLF: 150.70082033559245
Iteration: 6, Func. Count: 63, Neg. LLF: 150.7005911758429
Iteration: 7, Func. Count: 73, Neg. LLF: 150.70024667757042
Iteration: 8, Func. Count: 83, Neg. LLF: 150.69985781850585
Iteration: 9, Func. Count: 93, Neg. LLF: 150.6996775866449
Iteration: 10, Func. Count: 103, Neg. LLF: 150.69961445575348
Iteration: 11, Func. Count: 113, Neg. LLF: 150.69961249114957
Iteration: 12, Func. Count: 123, Neg. LLF: 150.69959910877103
Iteration: 13, Func. Count: 133, Neg. LLF: 150.6995628495575
Iteration: 14, Func. Count: 143, Neg. LLF: 150.69947254932669
Iteration: 15, Func. Count: 153, Neg. LLF: 150.69921086630086
Iteration: 16, Func. Count: 163, Neg. LLF: 150.69756479982306
Iteration: 17, Func. Count: 173, Neg. LLF: 150.95842219933166
Iteration: 18, Func. Count: 184, Neg. LLF: 150.9219708130513
Iteration: 19, Func. Count: 195, Neg. LLF: 150.8888341298
Iteration: 20, Func. Count: 206, Neg. LLF: 150.80894582621863
Iteration: 21, Func. Count: 217, Neg. LLF: 150.7100644522052
Iteration: 22, Func. Count: 228, Neg. LLF: 150.70914870208
Iteration: 23, Func. Count: 239, Neg. LLF: 150.71165730283232
Iteration: 24, Func. Count: 250, Neg. LLF: 150.74374175650703
Iteration: 25, Func. Count: 261, Neg. LLF: 150.6836390736851
Iteration: 26, Func. Count: 271, Neg. LLF: 150.6448930646705
Iteration: 27, Func. Count: 281, Neg. LLF: 150.60801542314715
Iteration: 28, Func. Count: 291, Neg. LLF: 150.606230379318
Iteration: 29, Func. Count: 301, Neg. LLF: 150.60580309063587
Iteration: 30, Func. Count: 311, Neg. LLF: 150.6057928835008
Iteration: 31, Func. Count: 321, Neg. LLF: 150.60578569453162
Iteration: 32, Func. Count: 331, Neg. LLF: 150.60578498918287
Optimization terminated successfully (Exit mode 0)
Current function value: 150.60578498918287
Iterations: 32
Function evaluations: 331
Gradient evaluations: 32
Iteration: 1, Func. Count: 12, Neg. LLF: 165.4394570929098
Iteration: 2, Func. Count: 25, Neg. LLF: 150.68575890108426
Iteration: 3, Func. Count: 36, Neg. LLF: 150.68062713163584
Iteration: 4, Func. Count: 47, Neg. LLF: 150.67870745859392
Iteration: 5, Func. Count: 58, Neg. LLF: 150.67390856309623
Iteration: 6, Func. Count: 69, Neg. LLF: 150.67284587679794
Iteration: 7, Func. Count: 80, Neg. LLF: 150.66582808441245
Iteration: 8, Func. Count: 91, Neg. LLF: 150.665480674129
Iteration: 9, Func. Count: 102, Neg. LLF: 150.66527177368968
Iteration: 10, Func. Count: 113, Neg. LLF: 150.66418126584009
Iteration: 11, Func. Count: 124, Neg. LLF: 150.65800372540664
Iteration: 12, Func. Count: 135, Neg. LLF: 150.63330029468253
Iteration: 13, Func. Count: 146, Neg. LLF: 150.60922220119863
Iteration: 14, Func. Count: 157, Neg. LLF: 150.61794691923237
Iteration: 15, Func. Count: 170, Neg. LLF: 150.59752375398241
Iteration: 16, Func. Count: 181, Neg. LLF: 150.5946050266948
Iteration: 17, Func. Count: 192, Neg. LLF: 150.59429734525298
Iteration: 18, Func. Count: 204, Neg. LLF: 150.5923269453934
Iteration: 19, Func. Count: 215, Neg. LLF: 150.9380369688427
Iteration: 20, Func. Count: 228, Neg. LLF: 150.66349359775245
Iteration: 21, Func. Count: 243, Neg. LLF: 150.65844609653493
Iteration: 22, Func. Count: 260, Neg. LLF: 150.7209359978088
Iteration: 23, Func. Count: 281, Neg. LLF: 150.76206817553003
Iteration: 24, Func. Count: 294, Neg. LLF: 151.24288688132648
Iteration: 25, Func. Count: 307, Neg. LLF: 155.84208467171456
Iteration: 26, Func. Count: 320, Neg. LLF: 150.58076168658673
Iteration: 27, Func. Count: 331, Neg. LLF: 150.57025033073432
Iteration: 28, Func. Count: 342, Neg. LLF: 150.5702739781046
Iteration: 29, Func. Count: 354, Neg. LLF: 150.57020874534706
Iteration: 30, Func. Count: 364, Neg. LLF: 150.57020873089965
Optimization terminated successfully (Exit mode 0)
Current function value: 150.57020874534706
Iterations: 31
Function evaluations: 364
Gradient evaluations: 30
Iteration: 1, Func. Count: 9, Neg. LLF: 152.59893164580805
Iteration: 2, Func. Count: 18, Neg. LLF: 155.0956772446819
Iteration: 3, Func. Count: 27, Neg. LLF: 150.3945699605366
Iteration: 4, Func. Count: 35, Neg. LLF: 150.32670646206572
Iteration: 5, Func. Count: 43, Neg. LLF: 150.27771643532301
Iteration: 6, Func. Count: 51, Neg. LLF: 150.19497148713316
Iteration: 7, Func. Count: 59, Neg. LLF: 150.14890645221644
Iteration: 8, Func. Count: 67, Neg. LLF: 150.0799917272067
Iteration: 9, Func. Count: 75, Neg. LLF: 150.06685190659712
Iteration: 10, Func. Count: 83, Neg. LLF: 150.0650107989183
Iteration: 11, Func. Count: 91, Neg. LLF: 150.06482789021447
Iteration: 12, Func. Count: 99, Neg. LLF: 150.0647910324943
Iteration: 13, Func. Count: 107, Neg. LLF: 150.06478767614178
Iteration: 14, Func. Count: 114, Neg. LLF: 150.06478767614618
Optimization terminated successfully (Exit mode 0)
Current function value: 150.06478767614178
Iterations: 14
Function evaluations: 114
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 151.86673197705983
Iteration: 2, Func. Count: 20, Neg. LLF: 151.71035442931273
Iteration: 3, Func. Count: 30, Neg. LLF: 150.46916205709192
Iteration: 4, Func. Count: 39, Neg. LLF: 150.45842693909165
Iteration: 5, Func. Count: 48, Neg. LLF: 150.43398172866486
Iteration: 6, Func. Count: 57, Neg. LLF: 150.2516180789642
Iteration: 7, Func. Count: 66, Neg. LLF: 150.1677191378148
Iteration: 8, Func. Count: 75, Neg. LLF: 150.07844043740084
Iteration: 9, Func. Count: 84, Neg. LLF: 150.06841856325394
Iteration: 10, Func. Count: 93, Neg. LLF: 150.0664678091851
Iteration: 11, Func. Count: 102, Neg. LLF: 150.06595557798602
Iteration: 12, Func. Count: 111, Neg. LLF: 150.06584165156838
Iteration: 13, Func. Count: 120, Neg. LLF: 150.06582955601087
Iteration: 14, Func. Count: 129, Neg. LLF: 150.06582198199683
Iteration: 15, Func. Count: 138, Neg. LLF: 150.06580016144812
Iteration: 16, Func. Count: 147, Neg. LLF: 150.0657398780936
Iteration: 17, Func. Count: 156, Neg. LLF: 150.0656042810139
Iteration: 18, Func. Count: 165, Neg. LLF: 150.06543048373118
Iteration: 19, Func. Count: 174, Neg. LLF: 150.06513659897558
Iteration: 20, Func. Count: 183, Neg. LLF: 150.06478977787592
Iteration: 21, Func. Count: 192, Neg. LLF: 150.06478769954654
Iteration: 22, Func. Count: 200, Neg. LLF: 150.0647877214658
Optimization terminated successfully (Exit mode 0)
Current function value: 150.06478769954654
Iterations: 22
Function evaluations: 200
Gradient evaluations: 22
Iteration: 1, Func. Count: 11, Neg. LLF: 157.2465907123754
Iteration: 2, Func. Count: 23, Neg. LLF: 151.30156193383274
Iteration: 3, Func. Count: 34, Neg. LLF: 150.49355317872747
Iteration: 4, Func. Count: 44, Neg. LLF: 150.46306895996617
Iteration: 5, Func. Count: 54, Neg. LLF: 150.45254783578048
Iteration: 6, Func. Count: 64, Neg. LLF: 150.40577755496344
Iteration: 7, Func. Count: 74, Neg. LLF: 150.23847728740398
Iteration: 8, Func. Count: 84, Neg. LLF: 150.11392407726714
Iteration: 9, Func. Count: 94, Neg. LLF: 150.0800328558969
Iteration: 10, Func. Count: 104, Neg. LLF: 150.06679805308602
Iteration: 11, Func. Count: 114, Neg. LLF: 150.0658544847726
Iteration: 12, Func. Count: 124, Neg. LLF: 150.0650472472755
Iteration: 13, Func. Count: 134, Neg. LLF: 150.06502695134756
Iteration: 14, Func. Count: 144, Neg. LLF: 150.06501862073148
Iteration: 15, Func. Count: 154, Neg. LLF: 150.06501723783964
Iteration: 16, Func. Count: 163, Neg. LLF: 150.06501725559784
Optimization terminated successfully (Exit mode 0)
Current function value: 150.06501723783964
Iterations: 16
Function evaluations: 163
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 158.85323276308858
Iteration: 2, Func. Count: 25, Neg. LLF: 150.7772477489652
Iteration: 3, Func. Count: 37, Neg. LLF: 150.47322745935503
Iteration: 4, Func. Count: 48, Neg. LLF: 150.46626919096911
Iteration: 5, Func. Count: 59, Neg. LLF: 150.45295118078639
Iteration: 6, Func. Count: 70, Neg. LLF: 150.41718868775456
Iteration: 7, Func. Count: 81, Neg. LLF: 150.35227761173
Iteration: 8, Func. Count: 92, Neg. LLF: 150.18621373279797
Iteration: 9, Func. Count: 103, Neg. LLF: 150.1178653216708
Iteration: 10, Func. Count: 114, Neg. LLF: 150.07530051889213
Iteration: 11, Func. Count: 125, Neg. LLF: 150.06769971796172
Iteration: 12, Func. Count: 136, Neg. LLF: 150.06542215584386
Iteration: 13, Func. Count: 147, Neg. LLF: 150.06504017795385
Iteration: 14, Func. Count: 158, Neg. LLF: 150.065022444632
Iteration: 15, Func. Count: 169, Neg. LLF: 150.06501854245087
Iteration: 16, Func. Count: 180, Neg. LLF: 150.06501724620813
Iteration: 17, Func. Count: 190, Neg. LLF: 150.0650172807758
Optimization terminated successfully (Exit mode 0)
Current function value: 150.06501724620813
Iterations: 17
Function evaluations: 190
Gradient evaluations: 17
Iteration: 1, Func. Count: 13, Neg. LLF: 157.92860699913973
Iteration: 2, Func. Count: 27, Neg. LLF: 151.1409486500524
Iteration: 3, Func. Count: 40, Neg. LLF: 150.50864886508316
Iteration: 4, Func. Count: 52, Neg. LLF: 150.49427990735717
Iteration: 5, Func. Count: 64, Neg. LLF: 150.48229599429484
Iteration: 6, Func. Count: 76, Neg. LLF: 150.47401938704326
Iteration: 7, Func. Count: 88, Neg. LLF: 150.45135483382182
Iteration: 8, Func. Count: 100, Neg. LLF: 150.43466423500246
Iteration: 9, Func. Count: 112, Neg. LLF: 150.33201768665614
Iteration: 10, Func. Count: 124, Neg. LLF: 150.09971943902437
Iteration: 11, Func. Count: 136, Neg. LLF: 150.08051286330485
Iteration: 12, Func. Count: 148, Neg. LLF: 150.06714861458968
Iteration: 13, Func. Count: 160, Neg. LLF: 150.06626821531245
Iteration: 14, Func. Count: 172, Neg. LLF: 150.06607613200998
Iteration: 15, Func. Count: 184, Neg. LLF: 150.06591238500883
Iteration: 16, Func. Count: 196, Neg. LLF: 150.06588547139424
Iteration: 17, Func. Count: 208, Neg. LLF: 150.06587514730973
Iteration: 18, Func. Count: 220, Neg. LLF: 150.06586631360486
Iteration: 19, Func. Count: 232, Neg. LLF: 150.0658253966576
Iteration: 20, Func. Count: 244, Neg. LLF: 150.06570412147406
Iteration: 21, Func. Count: 256, Neg. LLF: 150.06555194646242
Iteration: 22, Func. Count: 268, Neg. LLF: 150.06531786657735
Iteration: 23, Func. Count: 280, Neg. LLF: 150.06479834859627
Iteration: 24, Func. Count: 292, Neg. LLF: 150.06478989807255
Iteration: 25, Func. Count: 304, Neg. LLF: 150.06478776324792
Iteration: 26, Func. Count: 315, Neg. LLF: 150.0647877928834
Optimization terminated successfully (Exit mode 0)
Current function value: 150.06478776324792
Iterations: 26
Function evaluations: 315
Gradient evaluations: 26
Iteration: 1, Func. Count: 10, Neg. LLF: 152.92276709957588
Iteration: 2, Func. Count: 20, Neg. LLF: 156.64809102260276
Iteration: 3, Func. Count: 30, Neg. LLF: 150.38010770407507
Iteration: 4, Func. Count: 39, Neg. LLF: 150.31708784830693
Iteration: 5, Func. Count: 48, Neg. LLF: 150.27301418504123
Iteration: 6, Func. Count: 57, Neg. LLF: 150.18508255548005
Iteration: 7, Func. Count: 66, Neg. LLF: 150.13999551901225
Iteration: 8, Func. Count: 75, Neg. LLF: 150.07786465189758
Iteration: 9, Func. Count: 84, Neg. LLF: 150.06688897041244
Iteration: 10, Func. Count: 93, Neg. LLF: 150.06491556874693
Iteration: 11, Func. Count: 102, Neg. LLF: 150.06481996741482
Iteration: 12, Func. Count: 111, Neg. LLF: 150.06478980933562
Iteration: 13, Func. Count: 120, Neg. LLF: 150.0647876943264
Iteration: 14, Func. Count: 128, Neg. LLF: 150.0647876651902
Optimization terminated successfully (Exit mode 0)
Current function value: 150.0647876943264
Iterations: 14
Function evaluations: 128
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 152.32719000618408
Iteration: 2, Func. Count: 23, Neg. LLF: 151.85546304475318
Iteration: 3, Func. Count: 34, Neg. LLF: 150.47252803503682
Iteration: 4, Func. Count: 44, Neg. LLF: 150.46458307539388
Iteration: 5, Func. Count: 54, Neg. LLF: 150.44755168184363
Iteration: 6, Func. Count: 64, Neg. LLF: 150.35209459806802
Iteration: 7, Func. Count: 74, Neg. LLF: 150.22370858863295
Iteration: 8, Func. Count: 84, Neg. LLF: 150.13044630686215
Iteration: 9, Func. Count: 94, Neg. LLF: 150.06734475651163
Iteration: 10, Func. Count: 104, Neg. LLF: 150.06541664521768
Iteration: 11, Func. Count: 114, Neg. LLF: 150.06508238526152
Iteration: 12, Func. Count: 124, Neg. LLF: 150.06502756703728
Iteration: 13, Func. Count: 134, Neg. LLF: 150.065020485201
Iteration: 14, Func. Count: 144, Neg. LLF: 150.0650180009815
Iteration: 15, Func. Count: 154, Neg. LLF: 150.06501721970236
Optimization terminated successfully (Exit mode 0)
Current function value: 150.06501721970236
Iterations: 15
Function evaluations: 154
Gradient evaluations: 15
Iteration: 1, Func. Count: 12, Neg. LLF: 153.1095192755604
Iteration: 2, Func. Count: 25, Neg. LLF: 151.79596198243016
Iteration: 3, Func. Count: 37, Neg. LLF: 150.50733170480515
Iteration: 4, Func. Count: 48, Neg. LLF: 150.46172548189713
Iteration: 5, Func. Count: 59, Neg. LLF: 150.45198358763398
Iteration: 6, Func. Count: 70, Neg. LLF: 150.42858977276845
Iteration: 7, Func. Count: 81, Neg. LLF: 150.29599935163466
Iteration: 8, Func. Count: 92, Neg. LLF: 150.15703663747644
Iteration: 9, Func. Count: 103, Neg. LLF: 150.09232755922454
Iteration: 10, Func. Count: 114, Neg. LLF: 150.06907874391868
Iteration: 11, Func. Count: 125, Neg. LLF: 150.06687554290758
Iteration: 12, Func. Count: 136, Neg. LLF: 150.06596853882147
Iteration: 13, Func. Count: 147, Neg. LLF: 150.06518119085482
Iteration: 14, Func. Count: 158, Neg. LLF: 150.0650597289648
Iteration: 15, Func. Count: 169, Neg. LLF: 150.06503005117884
Iteration: 16, Func. Count: 180, Neg. LLF: 150.06502045626075
Iteration: 17, Func. Count: 191, Neg. LLF: 150.0650177315288
Iteration: 18, Func. Count: 201, Neg. LLF: 150.06501774927534
Optimization terminated successfully (Exit mode 0)
Current function value: 150.0650177315288
Iterations: 18
Function evaluations: 201
Gradient evaluations: 18
Iteration: 1, Func. Count: 13, Neg. LLF: 153.5851790724756
Iteration: 2, Func. Count: 27, Neg. LLF: 151.77627345615338
Iteration: 3, Func. Count: 40, Neg. LLF: 150.51237748292314
Iteration: 4, Func. Count: 52, Neg. LLF: 150.4669299234281
Iteration: 5, Func. Count: 64, Neg. LLF: 150.45583534625362
Iteration: 6, Func. Count: 76, Neg. LLF: 150.41472599145618
Iteration: 7, Func. Count: 88, Neg. LLF: 150.30825853169293
Iteration: 8, Func. Count: 100, Neg. LLF: 150.15209627662887
Iteration: 9, Func. Count: 112, Neg. LLF: 150.11633213758208
Iteration: 10, Func. Count: 124, Neg. LLF: 150.0747694074115
Iteration: 11, Func. Count: 136, Neg. LLF: 150.0656655839933
Iteration: 12, Func. Count: 148, Neg. LLF: 150.0650980800344
Iteration: 13, Func. Count: 160, Neg. LLF: 150.06505957170967
Iteration: 14, Func. Count: 172, Neg. LLF: 150.0650301857623
Iteration: 15, Func. Count: 184, Neg. LLF: 150.0650188004479
Iteration: 16, Func. Count: 196, Neg. LLF: 150.0650172186458
Iteration: 17, Func. Count: 207, Neg. LLF: 150.0650172532613
Optimization terminated successfully (Exit mode 0)
Current function value: 150.0650172186458
Iterations: 17
Function evaluations: 207
Gradient evaluations: 17
Iteration: 1, Func. Count: 14, Neg. LLF: 152.9544215672226
Iteration: 2, Func. Count: 29, Neg. LLF: 151.7749721703504
Iteration: 3, Func. Count: 43, Neg. LLF: 150.51939563569064
Iteration: 4, Func. Count: 56, Neg. LLF: 150.5009343182872
Iteration: 5, Func. Count: 69, Neg. LLF: 150.48413321974536
Iteration: 6, Func. Count: 82, Neg. LLF: 150.48003486620325
Iteration: 7, Func. Count: 95, Neg. LLF: 150.46712519034804
Iteration: 8, Func. Count: 108, Neg. LLF: 150.37657036073074
Iteration: 9, Func. Count: 121, Neg. LLF: 150.1012790577525
Iteration: 10, Func. Count: 134, Neg. LLF: 150.08756138542665
Iteration: 11, Func. Count: 147, Neg. LLF: 150.0778701189587
Iteration: 12, Func. Count: 160, Neg. LLF: 150.06936437356353
Iteration: 13, Func. Count: 173, Neg. LLF: 150.0674922848199
Iteration: 14, Func. Count: 186, Neg. LLF: 150.06643015975797
Iteration: 15, Func. Count: 199, Neg. LLF: 150.06610345368549
Iteration: 16, Func. Count: 212, Neg. LLF: 150.06605464389781
Iteration: 17, Func. Count: 225, Neg. LLF: 150.0660520860743
Iteration: 18, Func. Count: 237, Neg. LLF: 150.06605211576138
Optimization terminated successfully (Exit mode 0)
Current function value: 150.0660520860743
Iterations: 18
Function evaluations: 237
Gradient evaluations: 18
Iteration: 1, Func. Count: 11, Neg. LLF: 153.5645543528955
Iteration: 2, Func. Count: 22, Neg. LLF: 153.78555612647818
Iteration: 3, Func. Count: 33, Neg. LLF: 150.38438257651347
Iteration: 4, Func. Count: 43, Neg. LLF: 150.46760755097193
Iteration: 5, Func. Count: 54, Neg. LLF: 150.27270942564968
Iteration: 6, Func. Count: 64, Neg. LLF: 150.20457701532183
Iteration: 7, Func. Count: 74, Neg. LLF: 150.10821660856604
Iteration: 8, Func. Count: 84, Neg. LLF: 150.07202019039948
Iteration: 9, Func. Count: 94, Neg. LLF: 150.06563636026294
Iteration: 10, Func. Count: 104, Neg. LLF: 150.06491080969707
Iteration: 11, Func. Count: 114, Neg. LLF: 150.06480238352287
Iteration: 12, Func. Count: 124, Neg. LLF: 150.06478830594284
Iteration: 13, Func. Count: 134, Neg. LLF: 150.06478761046995
Optimization terminated successfully (Exit mode 0)
Current function value: 150.06478761046995
Iterations: 13
Function evaluations: 134
Gradient evaluations: 13
Iteration: 1, Func. Count: 12, Neg. LLF: 152.17597648018872
Iteration: 2, Func. Count: 25, Neg. LLF: 151.89792656990778
Iteration: 3, Func. Count: 37, Neg. LLF: 150.4727120989541
Iteration: 4, Func. Count: 48, Neg. LLF: 150.46425741930636
Iteration: 5, Func. Count: 59, Neg. LLF: 150.43873297487895
Iteration: 6, Func. Count: 70, Neg. LLF: 150.3466389848662
Iteration: 7, Func. Count: 81, Neg. LLF: 150.11980599418777
Iteration: 8, Func. Count: 92, Neg. LLF: 150.0897982681492
Iteration: 9, Func. Count: 103, Neg. LLF: 150.07016393776516
Iteration: 10, Func. Count: 114, Neg. LLF: 150.06591424813547
Iteration: 11, Func. Count: 125, Neg. LLF: 150.0652764662654
Iteration: 12, Func. Count: 136, Neg. LLF: 150.0650557618023
Iteration: 13, Func. Count: 147, Neg. LLF: 150.06502015540903
Iteration: 14, Func. Count: 158, Neg. LLF: 150.06501720139497
Iteration: 15, Func. Count: 168, Neg. LLF: 150.06501721907847
Optimization terminated successfully (Exit mode 0)
Current function value: 150.06501720139497
Iterations: 15
Function evaluations: 168
Gradient evaluations: 15
Iteration: 1, Func. Count: 13, Neg. LLF: 153.02480373754486
Iteration: 2, Func. Count: 27, Neg. LLF: 151.79768107245297
Iteration: 3, Func. Count: 40, Neg. LLF: 150.50882232158895
Iteration: 4, Func. Count: 52, Neg. LLF: 150.46132891950154
Iteration: 5, Func. Count: 64, Neg. LLF: 150.45226825020507
Iteration: 6, Func. Count: 76, Neg. LLF: 150.42299412756353
Iteration: 7, Func. Count: 88, Neg. LLF: 150.30347000667285
Iteration: 8, Func. Count: 100, Neg. LLF: 150.16297726520025
Iteration: 9, Func. Count: 112, Neg. LLF: 150.09257498815901
Iteration: 10, Func. Count: 124, Neg. LLF: 150.06764198313837
Iteration: 11, Func. Count: 136, Neg. LLF: 150.0657938747682
Iteration: 12, Func. Count: 148, Neg. LLF: 150.0655076049296
Iteration: 13, Func. Count: 160, Neg. LLF: 150.06507039734606
Iteration: 14, Func. Count: 172, Neg. LLF: 150.06503489798982
Iteration: 15, Func. Count: 184, Neg. LLF: 150.06502278935275
Iteration: 16, Func. Count: 196, Neg. LLF: 150.0650187393857
Iteration: 17, Func. Count: 208, Neg. LLF: 150.06501797336293
Optimization terminated successfully (Exit mode 0)
Current function value: 150.06501797336293
Iterations: 17
Function evaluations: 208
Gradient evaluations: 17
Iteration: 1, Func. Count: 14, Neg. LLF: 153.49339580105885
Iteration: 2, Func. Count: 29, Neg. LLF: 151.77735735241657
Iteration: 3, Func. Count: 43, Neg. LLF: 150.51251381134378
Iteration: 4, Func. Count: 56, Neg. LLF: 150.46705036995073
Iteration: 5, Func. Count: 69, Neg. LLF: 150.45619068761098
Iteration: 6, Func. Count: 82, Neg. LLF: 150.4139969148316
Iteration: 7, Func. Count: 95, Neg. LLF: 150.31284571036318
Iteration: 8, Func. Count: 108, Neg. LLF: 150.15266558745284
Iteration: 9, Func. Count: 121, Neg. LLF: 150.1165893535525
Iteration: 10, Func. Count: 134, Neg. LLF: 150.0781077910702
Iteration: 11, Func. Count: 147, Neg. LLF: 150.06602096004045
Iteration: 12, Func. Count: 160, Neg. LLF: 150.0651921010191
Iteration: 13, Func. Count: 173, Neg. LLF: 150.06506696228675
Iteration: 14, Func. Count: 186, Neg. LLF: 150.06502907922294
Iteration: 15, Func. Count: 199, Neg. LLF: 150.0650213151419
Iteration: 16, Func. Count: 212, Neg. LLF: 150.06501898289108
Iteration: 17, Func. Count: 225, Neg. LLF: 150.06501744843922
Iteration: 18, Func. Count: 237, Neg. LLF: 150.06501748300022
Optimization terminated successfully (Exit mode 0)
Current function value: 150.06501744843922
Iterations: 18
Function evaluations: 237
Gradient evaluations: 18
Iteration: 1, Func. Count: 15, Neg. LLF: 152.86762734675844
Iteration: 2, Func. Count: 31, Neg. LLF: 151.77592122604537
Iteration: 3, Func. Count: 46, Neg. LLF: 150.52219769641604
Iteration: 4, Func. Count: 60, Neg. LLF: 150.49920708732694
Iteration: 5, Func. Count: 74, Neg. LLF: 150.4854617750897
Iteration: 6, Func. Count: 88, Neg. LLF: 150.48119413766483
Iteration: 7, Func. Count: 102, Neg. LLF: 150.46776680650137
Iteration: 8, Func. Count: 116, Neg. LLF: 150.36865033802187
Iteration: 9, Func. Count: 130, Neg. LLF: 150.10545582091717
Iteration: 10, Func. Count: 144, Neg. LLF: 150.09259468298023
Iteration: 11, Func. Count: 158, Neg. LLF: 150.07412684541043
Iteration: 12, Func. Count: 172, Neg. LLF: 150.0702453569228
Iteration: 13, Func. Count: 186, Neg. LLF: 150.0673704949651
Iteration: 14, Func. Count: 200, Neg. LLF: 150.06610659069113
Iteration: 15, Func. Count: 214, Neg. LLF: 150.06581917065367
Iteration: 16, Func. Count: 228, Neg. LLF: 150.06580497188926
Iteration: 17, Func. Count: 242, Neg. LLF: 150.0657865370684
Iteration: 18, Func. Count: 256, Neg. LLF: 150.06572534959716
Iteration: 19, Func. Count: 270, Neg. LLF: 150.0655629396133
Iteration: 20, Func. Count: 284, Neg. LLF: 150.06537439056098
Iteration: 21, Func. Count: 298, Neg. LLF: 150.06513452531692
Iteration: 22, Func. Count: 312, Neg. LLF: 150.06480105194782
Iteration: 23, Func. Count: 326, Neg. LLF: 150.06479444006072
Iteration: 24, Func. Count: 340, Neg. LLF: 150.06478762777738
Iteration: 25, Func. Count: 353, Neg. LLF: 150.0647876574107
Optimization terminated successfully (Exit mode 0)
Current function value: 150.06478762777738
Iterations: 25
Function evaluations: 353
Gradient evaluations: 25
Iteration: 1, Func. Count: 12, Neg. LLF: 154.3941646741795
Iteration: 2, Func. Count: 24, Neg. LLF: 152.580671825753
Iteration: 3, Func. Count: 36, Neg. LLF: 150.46250310444404
Iteration: 4, Func. Count: 47, Neg. LLF: 150.5895555591563
Iteration: 5, Func. Count: 59, Neg. LLF: 150.28485618047245
Iteration: 6, Func. Count: 70, Neg. LLF: 150.24558760045556
Iteration: 7, Func. Count: 81, Neg. LLF: 150.21559142914916
Iteration: 8, Func. Count: 92, Neg. LLF: 150.11335298864964
Iteration: 9, Func. Count: 103, Neg. LLF: 150.0724413544198
Iteration: 10, Func. Count: 114, Neg. LLF: 150.06598205485633
Iteration: 11, Func. Count: 125, Neg. LLF: 150.06490506306014
Iteration: 12, Func. Count: 136, Neg. LLF: 150.0647936389971
Iteration: 13, Func. Count: 147, Neg. LLF: 150.0647876695669
Iteration: 14, Func. Count: 157, Neg. LLF: 150.06478772795754
Optimization terminated successfully (Exit mode 0)
Current function value: 150.0647876695669
Iterations: 14
Function evaluations: 157
Gradient evaluations: 14
Iteration: 1, Func. Count: 13, Neg. LLF: 152.16811950093177
Iteration: 2, Func. Count: 27, Neg. LLF: 151.9025450719559
Iteration: 3, Func. Count: 40, Neg. LLF: 150.47257947696477
Iteration: 4, Func. Count: 52, Neg. LLF: 150.46391825287313
Iteration: 5, Func. Count: 64, Neg. LLF: 150.43521183565318
Iteration: 6, Func. Count: 76, Neg. LLF: 150.34748467125468
Iteration: 7, Func. Count: 88, Neg. LLF: 150.12010674543353
Iteration: 8, Func. Count: 100, Neg. LLF: 150.09158177879445
Iteration: 9, Func. Count: 112, Neg. LLF: 150.06871772532526
Iteration: 10, Func. Count: 124, Neg. LLF: 150.0656628534751
Iteration: 11, Func. Count: 136, Neg. LLF: 150.06517272496203
Iteration: 12, Func. Count: 148, Neg. LLF: 150.0650416776764
Iteration: 13, Func. Count: 160, Neg. LLF: 150.06501878810937
Iteration: 14, Func. Count: 172, Neg. LLF: 150.06501716818025
Iteration: 15, Func. Count: 183, Neg. LLF: 150.065017185858
Optimization terminated successfully (Exit mode 0)
Current function value: 150.06501716818025
Iterations: 15
Function evaluations: 183
Gradient evaluations: 15
Iteration: 1, Func. Count: 14, Neg. LLF: 152.98202834920886
Iteration: 2, Func. Count: 29, Neg. LLF: 151.79829803397234
Iteration: 3, Func. Count: 43, Neg. LLF: 150.5093895349816
Iteration: 4, Func. Count: 56, Neg. LLF: 150.46132012473132
Iteration: 5, Func. Count: 69, Neg. LLF: 150.45238652348152
Iteration: 6, Func. Count: 82, Neg. LLF: 150.41560924010722
Iteration: 7, Func. Count: 95, Neg. LLF: 150.29492361455536
Iteration: 8, Func. Count: 108, Neg. LLF: 150.1605625483134
Iteration: 9, Func. Count: 121, Neg. LLF: 150.08979284984179
Iteration: 10, Func. Count: 134, Neg. LLF: 150.0662397172521
Iteration: 11, Func. Count: 147, Neg. LLF: 150.06543248125436
Iteration: 12, Func. Count: 160, Neg. LLF: 150.06522799423217
Iteration: 13, Func. Count: 173, Neg. LLF: 150.06506508096544
Iteration: 14, Func. Count: 186, Neg. LLF: 150.0650408376174
Iteration: 15, Func. Count: 199, Neg. LLF: 150.0650267342657
Iteration: 16, Func. Count: 212, Neg. LLF: 150.06502026756505
Iteration: 17, Func. Count: 225, Neg. LLF: 150.06501887495412
Iteration: 18, Func. Count: 238, Neg. LLF: 150.0650171891553
Iteration: 19, Func. Count: 250, Neg. LLF: 150.06501720690025
Optimization terminated successfully (Exit mode 0)
Current function value: 150.0650171891553
Iterations: 20
Function evaluations: 250
Gradient evaluations: 19
Iteration: 1, Func. Count: 15, Neg. LLF: 153.4421424495674
Iteration: 2, Func. Count: 31, Neg. LLF: 151.77783321427054
Iteration: 3, Func. Count: 46, Neg. LLF: 150.5137952006484
Iteration: 4, Func. Count: 60, Neg. LLF: 150.46704502672193
Iteration: 5, Func. Count: 74, Neg. LLF: 150.45640356428487
Iteration: 6, Func. Count: 88, Neg. LLF: 150.40620427514784
Iteration: 7, Func. Count: 102, Neg. LLF: 150.29491881205493
Iteration: 8, Func. Count: 116, Neg. LLF: 150.14974007434344
Iteration: 9, Func. Count: 130, Neg. LLF: 150.11477247902502
Iteration: 10, Func. Count: 144, Neg. LLF: 150.06947920753817
Iteration: 11, Func. Count: 158, Neg. LLF: 150.0656238634991
Iteration: 12, Func. Count: 172, Neg. LLF: 150.06518018335186
Iteration: 13, Func. Count: 186, Neg. LLF: 150.06509213251272
Iteration: 14, Func. Count: 200, Neg. LLF: 150.06504110676607
Iteration: 15, Func. Count: 214, Neg. LLF: 150.06502521532596
Iteration: 16, Func. Count: 228, Neg. LLF: 150.06501874807986
Iteration: 17, Func. Count: 242, Neg. LLF: 150.06501733208574
Iteration: 18, Func. Count: 255, Neg. LLF: 150.0650173666698
Optimization terminated successfully (Exit mode 0)
Current function value: 150.06501733208574
Iterations: 18
Function evaluations: 255
Gradient evaluations: 18
Iteration: 1, Func. Count: 16, Neg. LLF: 152.82652938643204
Iteration: 2, Func. Count: 33, Neg. LLF: 151.7763157594471
Iteration: 3, Func. Count: 49, Neg. LLF: 150.52227326832812
Iteration: 4, Func. Count: 64, Neg. LLF: 150.49931546619896
Iteration: 5, Func. Count: 79, Neg. LLF: 150.48560553230345
Iteration: 6, Func. Count: 94, Neg. LLF: 150.4814866467384
Iteration: 7, Func. Count: 109, Neg. LLF: 150.4686985688874
Iteration: 8, Func. Count: 124, Neg. LLF: 150.37561213339376
Iteration: 9, Func. Count: 139, Neg. LLF: 150.11161181953486
Iteration: 10, Func. Count: 154, Neg. LLF: 150.09484247735298
Iteration: 11, Func. Count: 169, Neg. LLF: 150.07574962262362
Iteration: 12, Func. Count: 184, Neg. LLF: 150.07103235188782
Iteration: 13, Func. Count: 199, Neg. LLF: 150.0675718435506
Iteration: 14, Func. Count: 214, Neg. LLF: 150.0660511160546
Iteration: 15, Func. Count: 229, Neg. LLF: 150.06564022532288
Iteration: 16, Func. Count: 244, Neg. LLF: 150.0656200151335
Iteration: 17, Func. Count: 259, Neg. LLF: 150.06559651623272
Iteration: 18, Func. Count: 274, Neg. LLF: 150.06551644969292
Iteration: 19, Func. Count: 289, Neg. LLF: 150.06533686242295
Iteration: 20, Func. Count: 304, Neg. LLF: 150.06513356073373
Iteration: 21, Func. Count: 319, Neg. LLF: 150.0649342981728
Iteration: 22, Func. Count: 334, Neg. LLF: 150.06478935312833
Iteration: 23, Func. Count: 349, Neg. LLF: 150.064787710683
Iteration: 24, Func. Count: 363, Neg. LLF: 150.06478774030026
Optimization terminated successfully (Exit mode 0)
Current function value: 150.064787710683
Iterations: 24
Function evaluations: 363
Gradient evaluations: 24
Iteration: 1, Func. Count: 5, Neg. LLF: 155.88983056639498
Iteration: 2, Func. Count: 10, Neg. LLF: 155.37830669090886
Iteration: 3, Func. Count: 15, Neg. LLF: 150.85498663403368
Iteration: 4, Func. Count: 19, Neg. LLF: 150.22605346286792
Iteration: 5, Func. Count: 23, Neg. LLF: 150.0924724480632
Iteration: 6, Func. Count: 27, Neg. LLF: 150.0657232160361
Iteration: 7, Func. Count: 31, Neg. LLF: 150.06502175588312
Iteration: 8, Func. Count: 35, Neg. LLF: 150.0650174118912
Iteration: 9, Func. Count: 38, Neg. LLF: 150.06501741188504
Optimization terminated successfully (Exit mode 0)
Current function value: 150.0650174118912
Iterations: 9
Function evaluations: 38
Gradient evaluations: 9
Iteration: 1, Func. Count: 5, Neg. LLF: 155.55712736280728
Iteration: 2, Func. Count: 10, Neg. LLF: 153.5144465335915
Iteration: 3, Func. Count: 15, Neg. LLF: 150.59316877121452
Iteration: 4, Func. Count: 19, Neg. LLF: 149.80168962320266
Iteration: 5, Func. Count: 23, Neg. LLF: 149.64183501841933
Iteration: 6, Func. Count: 27, Neg. LLF: 149.6156438552674
Iteration: 7, Func. Count: 31, Neg. LLF: 149.6071163665569
Iteration: 8, Func. Count: 35, Neg. LLF: 149.6049356128847
Iteration: 9, Func. Count: 39, Neg. LLF: 149.60460426555537
Iteration: 10, Func. Count: 43, Neg. LLF: 149.60457730873915
Iteration: 11, Func. Count: 47, Neg. LLF: 149.60457658675531
Optimization terminated successfully (Exit mode 0)
Current function value: 149.60457658675531
Iterations: 11
Function evaluations: 47
Gradient evaluations: 11
Iteration: 1, Func. Count: 6, Neg. LLF: 168.61266578214187
Iteration: 2, Func. Count: 13, Neg. LLF: 149.88738786036754
Iteration: 3, Func. Count: 19, Neg. LLF: 149.86799424103356
Iteration: 4, Func. Count: 24, Neg. LLF: 149.85663879153074
Iteration: 5, Func. Count: 29, Neg. LLF: 149.79878852470594
Iteration: 6, Func. Count: 34, Neg. LLF: 149.62133681412493
Iteration: 7, Func. Count: 39, Neg. LLF: 149.6079438461859
Iteration: 8, Func. Count: 44, Neg. LLF: 149.60478105281905
Iteration: 9, Func. Count: 49, Neg. LLF: 149.60460802660808
Iteration: 10, Func. Count: 54, Neg. LLF: 149.60458989344292
Iteration: 11, Func. Count: 59, Neg. LLF: 149.60457792406908
Iteration: 12, Func. Count: 64, Neg. LLF: 149.60457665664495
Iteration: 13, Func. Count: 68, Neg. LLF: 149.60457666426882
Optimization terminated successfully (Exit mode 0)
Current function value: 149.60457665664495
Iterations: 13
Function evaluations: 68
Gradient evaluations: 13
Iteration: 1, Func. Count: 7, Neg. LLF: 165.36975199377832
Iteration: 2, Func. Count: 15, Neg. LLF: 149.90434132260464
Iteration: 3, Func. Count: 21, Neg. LLF: 149.869777226684
Iteration: 4, Func. Count: 27, Neg. LLF: 149.8655612577588
Iteration: 5, Func. Count: 33, Neg. LLF: 149.86019267964255
Iteration: 6, Func. Count: 39, Neg. LLF: 149.85141717649233
Iteration: 7, Func. Count: 45, Neg. LLF: 149.82829924825188
Iteration: 8, Func. Count: 51, Neg. LLF: 149.78045812406623
Iteration: 9, Func. Count: 57, Neg. LLF: 149.69470243948643
Iteration: 10, Func. Count: 63, Neg. LLF: 149.62833356001485
Iteration: 11, Func. Count: 69, Neg. LLF: 149.6089832271623
Iteration: 12, Func. Count: 75, Neg. LLF: 149.60608073120775
Iteration: 13, Func. Count: 81, Neg. LLF: 149.60529901021368
Iteration: 14, Func. Count: 87, Neg. LLF: 149.60461437199083
Iteration: 15, Func. Count: 93, Neg. LLF: 149.60458213955286
Iteration: 16, Func. Count: 99, Neg. LLF: 149.60457854291295
Iteration: 17, Func. Count: 105, Neg. LLF: 149.60457724084742
Iteration: 18, Func. Count: 111, Neg. LLF: 149.60457663088815
Optimization terminated successfully (Exit mode 0)
Current function value: 149.60457663088815
Iterations: 18
Function evaluations: 111
Gradient evaluations: 18
Iteration: 1, Func. Count: 8, Neg. LLF: 171.76935123630562
Iteration: 2, Func. Count: 17, Neg. LLF: 149.9583085810365
Iteration: 3, Func. Count: 24, Neg. LLF: 149.8815454094384
Iteration: 4, Func. Count: 31, Neg. LLF: 149.87253050149283
Iteration: 5, Func. Count: 38, Neg. LLF: 149.85953542649207
Iteration: 6, Func. Count: 45, Neg. LLF: 149.853670719921
Iteration: 7, Func. Count: 52, Neg. LLF: 149.84028833319294
Iteration: 8, Func. Count: 59, Neg. LLF: 149.81532863613415
Iteration: 9, Func. Count: 66, Neg. LLF: 149.76227801776685
Iteration: 10, Func. Count: 73, Neg. LLF: 149.68335325272432
Iteration: 11, Func. Count: 80, Neg. LLF: 149.67584387056533
Iteration: 12, Func. Count: 87, Neg. LLF: 149.64485650052703
Iteration: 13, Func. Count: 94, Neg. LLF: 149.61098270391253
Iteration: 14, Func. Count: 101, Neg. LLF: 149.6075882346687
Iteration: 15, Func. Count: 108, Neg. LLF: 149.60460770287463
Iteration: 16, Func. Count: 115, Neg. LLF: 149.60457681999557
Iteration: 17, Func. Count: 121, Neg. LLF: 149.60457683968906
Optimization terminated successfully (Exit mode 0)
Current function value: 149.60457681999557
Iterations: 17
Function evaluations: 121
Gradient evaluations: 17
Iteration: 1, Func. Count: 9, Neg. LLF: 172.35362216071863
Iteration: 2, Func. Count: 19, Neg. LLF: 149.98891880265447
Iteration: 3, Func. Count: 28, Neg. LLF: 149.9136448291417
Iteration: 4, Func. Count: 36, Neg. LLF: 149.86730501337084
Iteration: 5, Func. Count: 44, Neg. LLF: 149.86453959624717
Iteration: 6, Func. Count: 52, Neg. LLF: 149.85802269765554
Iteration: 7, Func. Count: 60, Neg. LLF: 149.83002045077265
Iteration: 8, Func. Count: 68, Neg. LLF: 149.791371480913
Iteration: 9, Func. Count: 76, Neg. LLF: 149.74714905742601
Iteration: 10, Func. Count: 84, Neg. LLF: 149.68336747277024
Iteration: 11, Func. Count: 92, Neg. LLF: 149.67327476856215
Iteration: 12, Func. Count: 100, Neg. LLF: 149.63603417929707
Iteration: 13, Func. Count: 108, Neg. LLF: 149.61121785974572
Iteration: 14, Func. Count: 116, Neg. LLF: 149.60757843247976
Iteration: 15, Func. Count: 124, Neg. LLF: 149.6052884811663
Iteration: 16, Func. Count: 132, Neg. LLF: 149.60463463837516
Iteration: 17, Func. Count: 140, Neg. LLF: 149.6045769307299
Iteration: 18, Func. Count: 147, Neg. LLF: 149.6045769574968
Optimization terminated successfully (Exit mode 0)
Current function value: 149.6045769307299
Iterations: 18
Function evaluations: 147
Gradient evaluations: 18
Iteration: 1, Func. Count: 6, Neg. LLF: 155.13948779455174
Iteration: 2, Func. Count: 12, Neg. LLF: 154.54904895566133
Iteration: 3, Func. Count: 18, Neg. LLF: 150.65678282384735
Iteration: 4, Func. Count: 23, Neg. LLF: 150.0875055916731
Iteration: 5, Func. Count: 28, Neg. LLF: 149.68094323499105
Iteration: 6, Func. Count: 33, Neg. LLF: 149.61580891243196
Iteration: 7, Func. Count: 38, Neg. LLF: 149.6077035241465
Iteration: 8, Func. Count: 43, Neg. LLF: 149.60539333609125
Iteration: 9, Func. Count: 48, Neg. LLF: 149.6046909206264
Iteration: 10, Func. Count: 53, Neg. LLF: 149.60458321696845
Iteration: 11, Func. Count: 58, Neg. LLF: 149.6045766941712
Iteration: 12, Func. Count: 62, Neg. LLF: 149.60457671304226
Optimization terminated successfully (Exit mode 0)
Current function value: 149.6045766941712
Iterations: 12
Function evaluations: 62
Gradient evaluations: 12
Iteration: 1, Func. Count: 7, Neg. LLF: 152.44405646796648
Iteration: 2, Func. Count: 15, Neg. LLF: 152.0989440944511
Iteration: 3, Func. Count: 22, Neg. LLF: 149.87235757050857
Iteration: 4, Func. Count: 28, Neg. LLF: 149.86671964419287
Iteration: 5, Func. Count: 34, Neg. LLF: 149.85829704786653
Iteration: 6, Func. Count: 40, Neg. LLF: 149.83182035433023
Iteration: 7, Func. Count: 46, Neg. LLF: 149.77818783573554
Iteration: 8, Func. Count: 52, Neg. LLF: 149.68279175256615
Iteration: 9, Func. Count: 58, Neg. LLF: 149.6301700505349
Iteration: 10, Func. Count: 64, Neg. LLF: 149.6099705502411
Iteration: 11, Func. Count: 70, Neg. LLF: 149.6076317860203
Iteration: 12, Func. Count: 76, Neg. LLF: 149.60544579531347
Iteration: 13, Func. Count: 82, Neg. LLF: 149.60472557866237
Iteration: 14, Func. Count: 88, Neg. LLF: 149.6045929619926
Iteration: 15, Func. Count: 94, Neg. LLF: 149.60457943771968
Iteration: 16, Func. Count: 100, Neg. LLF: 149.60457675933228
Iteration: 17, Func. Count: 105, Neg. LLF: 149.60457676691996
Optimization terminated successfully (Exit mode 0)
Current function value: 149.60457675933228
Iterations: 17
Function evaluations: 105
Gradient evaluations: 17
Iteration: 1, Func. Count: 8, Neg. LLF: 150.16133132790011
Iteration: 2, Func. Count: 16, Neg. LLF: 152.54515226310397
Iteration: 3, Func. Count: 25, Neg. LLF: 149.90696619429923
Iteration: 4, Func. Count: 32, Neg. LLF: 149.86926723322648
Iteration: 5, Func. Count: 39, Neg. LLF: 149.86437308242833
Iteration: 6, Func. Count: 46, Neg. LLF: 149.84296485465686
Iteration: 7, Func. Count: 53, Neg. LLF: 149.82156803147487
Iteration: 8, Func. Count: 60, Neg. LLF: 149.79139643186932
Iteration: 9, Func. Count: 67, Neg. LLF: 149.7360971819054
Iteration: 10, Func. Count: 74, Neg. LLF: 149.68671736940874
Iteration: 11, Func. Count: 81, Neg. LLF: 149.6728597747939
Iteration: 12, Func. Count: 88, Neg. LLF: 149.62964913227304
Iteration: 13, Func. Count: 95, Neg. LLF: 149.61274336968268
Iteration: 14, Func. Count: 102, Neg. LLF: 149.60871447011462
Iteration: 15, Func. Count: 109, Neg. LLF: 149.6056360041013
Iteration: 16, Func. Count: 116, Neg. LLF: 149.6046719929264
Iteration: 17, Func. Count: 123, Neg. LLF: 149.6045771563098
Iteration: 18, Func. Count: 130, Neg. LLF: 149.60457658572466
Optimization terminated successfully (Exit mode 0)
Current function value: 149.60457658572466
Iterations: 18
Function evaluations: 130
Gradient evaluations: 18
Iteration: 1, Func. Count: 9, Neg. LLF: 151.72390994482387
Iteration: 2, Func. Count: 19, Neg. LLF: 152.13765578349836
Iteration: 3, Func. Count: 28, Neg. LLF: 149.94487049689047
Iteration: 4, Func. Count: 36, Neg. LLF: 149.88079296990404
Iteration: 5, Func. Count: 44, Neg. LLF: 149.87083417594943
Iteration: 6, Func. Count: 52, Neg. LLF: 149.84552427023365
Iteration: 7, Func. Count: 60, Neg. LLF: 149.83929294345663
Iteration: 8, Func. Count: 68, Neg. LLF: 149.83061690155802
Iteration: 9, Func. Count: 76, Neg. LLF: 149.81296245845817
Iteration: 10, Func. Count: 84, Neg. LLF: 149.77701254684993
Iteration: 11, Func. Count: 92, Neg. LLF: 149.70164841047915
Iteration: 12, Func. Count: 100, Neg. LLF: 149.68924049711273
Iteration: 13, Func. Count: 108, Neg. LLF: 149.64720078721638
Iteration: 14, Func. Count: 116, Neg. LLF: 149.62172376566363
Iteration: 15, Func. Count: 124, Neg. LLF: 149.61380033462152
Iteration: 16, Func. Count: 132, Neg. LLF: 149.60766233634723
Iteration: 17, Func. Count: 140, Neg. LLF: 149.60519786223662
Iteration: 18, Func. Count: 148, Neg. LLF: 149.60458245758227
Iteration: 19, Func. Count: 156, Neg. LLF: 149.60457660106937
Iteration: 20, Func. Count: 163, Neg. LLF: 149.60457662076738
Optimization terminated successfully (Exit mode 0)
Current function value: 149.60457660106937
Iterations: 20
Function evaluations: 163
Gradient evaluations: 20
Iteration: 1, Func. Count: 10, Neg. LLF: 154.11305306522578
Iteration: 2, Func. Count: 21, Neg. LLF: 151.0575852729145
Iteration: 3, Func. Count: 31, Neg. LLF: 149.95477854319904
Iteration: 4, Func. Count: 40, Neg. LLF: 149.88574907739485
Iteration: 5, Func. Count: 49, Neg. LLF: 149.8715004783643
Iteration: 6, Func. Count: 58, Neg. LLF: 149.85507321490485
Iteration: 7, Func. Count: 67, Neg. LLF: 149.85058296347316
Iteration: 8, Func. Count: 76, Neg. LLF: 149.83616415925962
Iteration: 9, Func. Count: 85, Neg. LLF: 149.8098240350671
Iteration: 10, Func. Count: 94, Neg. LLF: 149.75839242694835
Iteration: 11, Func. Count: 103, Neg. LLF: 149.68386203036883
Iteration: 12, Func. Count: 112, Neg. LLF: 149.67033889853454
Iteration: 13, Func. Count: 121, Neg. LLF: 149.628308757336
Iteration: 14, Func. Count: 130, Neg. LLF: 149.6111139803868
Iteration: 15, Func. Count: 139, Neg. LLF: 149.60793083316605
Iteration: 16, Func. Count: 148, Neg. LLF: 149.60551645738283
Iteration: 17, Func. Count: 157, Neg. LLF: 149.6046954391063
Iteration: 18, Func. Count: 166, Neg. LLF: 149.60457794208747
Iteration: 19, Func. Count: 175, Neg. LLF: 149.6045765989626
Iteration: 20, Func. Count: 183, Neg. LLF: 149.60457662576553
Optimization terminated successfully (Exit mode 0)
Current function value: 149.6045765989626
Iterations: 20
Function evaluations: 183
Gradient evaluations: 20
Iteration: 1, Func. Count: 7, Neg. LLF: 154.49521257233218
Iteration: 2, Func. Count: 14, Neg. LLF: 154.13460892630155
Iteration: 3, Func. Count: 21, Neg. LLF: 150.79677499085938
Iteration: 4, Func. Count: 27, Neg. LLF: 149.80770432653281
Iteration: 5, Func. Count: 33, Neg. LLF: 149.60743889691813
Iteration: 6, Func. Count: 39, Neg. LLF: 149.604976908448
Iteration: 7, Func. Count: 45, Neg. LLF: 149.60458767980145
Iteration: 8, Func. Count: 51, Neg. LLF: 149.60458247317928
Iteration: 9, Func. Count: 57, Neg. LLF: 149.60457659816544
Iteration: 10, Func. Count: 62, Neg. LLF: 149.6045766231297
Optimization terminated successfully (Exit mode 0)
Current function value: 149.60457659816544
Iterations: 10
Function evaluations: 62
Gradient evaluations: 10
Iteration: 1, Func. Count: 8, Neg. LLF: 152.3299178151267
Iteration: 2, Func. Count: 17, Neg. LLF: 152.11034416760552
Iteration: 3, Func. Count: 25, Neg. LLF: 149.87223572217573
Iteration: 4, Func. Count: 32, Neg. LLF: 149.86646477846185
Iteration: 5, Func. Count: 39, Neg. LLF: 149.85828060564037
Iteration: 6, Func. Count: 46, Neg. LLF: 149.83338988117129
Iteration: 7, Func. Count: 53, Neg. LLF: 149.7804616733616
Iteration: 8, Func. Count: 60, Neg. LLF: 149.68477221430885
Iteration: 9, Func. Count: 67, Neg. LLF: 149.6377415769542
Iteration: 10, Func. Count: 74, Neg. LLF: 149.6147628214048
Iteration: 11, Func. Count: 81, Neg. LLF: 149.60966648027153
Iteration: 12, Func. Count: 88, Neg. LLF: 149.6057629033279
Iteration: 13, Func. Count: 95, Neg. LLF: 149.60470582595343
Iteration: 14, Func. Count: 102, Neg. LLF: 149.60459021109074
Iteration: 15, Func. Count: 109, Neg. LLF: 149.60457909468934
Iteration: 16, Func. Count: 116, Neg. LLF: 149.6045766998548
Iteration: 17, Func. Count: 122, Neg. LLF: 149.6045767074467
Optimization terminated successfully (Exit mode 0)
Current function value: 149.6045766998548
Iterations: 17
Function evaluations: 122
Gradient evaluations: 17
Iteration: 1, Func. Count: 9, Neg. LLF: 150.47945323699665
Iteration: 2, Func. Count: 19, Neg. LLF: 152.1066372636582
Iteration: 3, Func. Count: 28, Neg. LLF: 149.90696859550934
Iteration: 4, Func. Count: 36, Neg. LLF: 149.865642690752
Iteration: 5, Func. Count: 44, Neg. LLF: 149.8628238874295
Iteration: 6, Func. Count: 52, Neg. LLF: 149.84911864676272
Iteration: 7, Func. Count: 60, Neg. LLF: 149.7935614066155
Iteration: 8, Func. Count: 68, Neg. LLF: 149.72960461263727
Iteration: 9, Func. Count: 76, Neg. LLF: 149.67776874302476
Iteration: 10, Func. Count: 84, Neg. LLF: 149.64190965082676
Iteration: 11, Func. Count: 92, Neg. LLF: 149.60593747946422
Iteration: 12, Func. Count: 100, Neg. LLF: 149.60469152502608
Iteration: 13, Func. Count: 108, Neg. LLF: 149.6046062474085
Iteration: 14, Func. Count: 116, Neg. LLF: 149.6045934474946
Iteration: 15, Func. Count: 124, Neg. LLF: 149.60458084037512
Iteration: 16, Func. Count: 132, Neg. LLF: 149.60457718891385
Iteration: 17, Func. Count: 140, Neg. LLF: 149.6045765986081
Optimization terminated successfully (Exit mode 0)
Current function value: 149.6045765986081
Iterations: 17
Function evaluations: 140
Gradient evaluations: 17
Iteration: 1, Func. Count: 10, Neg. LLF: 150.58487835536246
Iteration: 2, Func. Count: 20, Neg. LLF: 152.77347595571376
Iteration: 3, Func. Count: 31, Neg. LLF: 149.9447289024438
Iteration: 4, Func. Count: 40, Neg. LLF: 149.86967975911745
Iteration: 5, Func. Count: 49, Neg. LLF: 149.86357946579466
Iteration: 6, Func. Count: 58, Neg. LLF: 149.85698916970114
Iteration: 7, Func. Count: 67, Neg. LLF: 149.85125151966088
Iteration: 8, Func. Count: 76, Neg. LLF: 149.83343545177715
Iteration: 9, Func. Count: 85, Neg. LLF: 149.80107687748333
Iteration: 10, Func. Count: 94, Neg. LLF: 149.7342027923145
Iteration: 11, Func. Count: 103, Neg. LLF: 149.6865853706908
Iteration: 12, Func. Count: 112, Neg. LLF: 149.6628677899938
Iteration: 13, Func. Count: 121, Neg. LLF: 149.61694181286535
Iteration: 14, Func. Count: 130, Neg. LLF: 149.61038960605606
Iteration: 15, Func. Count: 139, Neg. LLF: 149.6063564137439
Iteration: 16, Func. Count: 148, Neg. LLF: 149.6049326872822
Iteration: 17, Func. Count: 157, Neg. LLF: 149.60458076142712
Iteration: 18, Func. Count: 166, Neg. LLF: 149.604576595253
Iteration: 19, Func. Count: 174, Neg. LLF: 149.6045766149539
Optimization terminated successfully (Exit mode 0)
Current function value: 149.604576595253
Iterations: 19
Function evaluations: 174
Gradient evaluations: 19
Iteration: 1, Func. Count: 11, Neg. LLF: 153.8393629543909
Iteration: 2, Func. Count: 23, Neg. LLF: 152.01752138303812
Iteration: 3, Func. Count: 34, Neg. LLF: 149.95550631449302
Iteration: 4, Func. Count: 44, Neg. LLF: 149.90458134232102
Iteration: 5, Func. Count: 54, Neg. LLF: 149.90028372301552
Iteration: 6, Func. Count: 64, Neg. LLF: 149.8775846114621
Iteration: 7, Func. Count: 74, Neg. LLF: 149.84033193751804
Iteration: 8, Func. Count: 84, Neg. LLF: 149.8120541735298
Iteration: 9, Func. Count: 94, Neg. LLF: 149.7908497497268
Iteration: 10, Func. Count: 104, Neg. LLF: 149.78293775119963
Iteration: 11, Func. Count: 114, Neg. LLF: 149.7688388885379
Iteration: 12, Func. Count: 124, Neg. LLF: 149.72896107172198
Iteration: 13, Func. Count: 134, Neg. LLF: 149.68518092102008
Iteration: 14, Func. Count: 144, Neg. LLF: 149.66161643322246
Iteration: 15, Func. Count: 154, Neg. LLF: 149.62280180342844
Iteration: 16, Func. Count: 164, Neg. LLF: 149.61634650707444
Iteration: 17, Func. Count: 174, Neg. LLF: 149.6087398726262
Iteration: 18, Func. Count: 184, Neg. LLF: 149.6059941389412
Iteration: 19, Func. Count: 194, Neg. LLF: 149.6048114705519
Iteration: 20, Func. Count: 204, Neg. LLF: 149.60461217915855
Iteration: 21, Func. Count: 214, Neg. LLF: 149.60458131562987
Iteration: 22, Func. Count: 224, Neg. LLF: 149.6045767067088
Iteration: 23, Func. Count: 233, Neg. LLF: 149.60457673352138
Optimization terminated successfully (Exit mode 0)
Current function value: 149.6045767067088
Iterations: 23
Function evaluations: 233
Gradient evaluations: 23
Iteration: 1, Func. Count: 8, Neg. LLF: 153.85164051057853
Iteration: 2, Func. Count: 16, Neg. LLF: 153.8027033753784
Iteration: 3, Func. Count: 24, Neg. LLF: 150.8877987130512
Iteration: 4, Func. Count: 31, Neg. LLF: 149.72313043488128
Iteration: 5, Func. Count: 38, Neg. LLF: 149.61951707147284
Iteration: 6, Func. Count: 45, Neg. LLF: 149.60486446074148
Iteration: 7, Func. Count: 52, Neg. LLF: 149.60460394902617
Iteration: 8, Func. Count: 59, Neg. LLF: 149.60457757497653
Iteration: 9, Func. Count: 65, Neg. LLF: 149.6045776207656
Optimization terminated successfully (Exit mode 0)
Current function value: 149.60457757497653
Iterations: 9
Function evaluations: 65
Gradient evaluations: 9
Iteration: 1, Func. Count: 9, Neg. LLF: 152.2746644496085
Iteration: 2, Func. Count: 19, Neg. LLF: 152.1171722862645
Iteration: 3, Func. Count: 28, Neg. LLF: 149.87213116334652
Iteration: 4, Func. Count: 36, Neg. LLF: 149.86628808391185
Iteration: 5, Func. Count: 44, Neg. LLF: 149.85831892460612
Iteration: 6, Func. Count: 52, Neg. LLF: 149.83430403458354
Iteration: 7, Func. Count: 60, Neg. LLF: 149.78193515112366
Iteration: 8, Func. Count: 68, Neg. LLF: 149.68583941827737
Iteration: 9, Func. Count: 76, Neg. LLF: 149.64224230954366
Iteration: 10, Func. Count: 84, Neg. LLF: 149.61712528658177
Iteration: 11, Func. Count: 92, Neg. LLF: 149.61022868788095
Iteration: 12, Func. Count: 100, Neg. LLF: 149.60574351831036
Iteration: 13, Func. Count: 108, Neg. LLF: 149.60466857894775
Iteration: 14, Func. Count: 116, Neg. LLF: 149.60458651301073
Iteration: 15, Func. Count: 124, Neg. LLF: 149.60457845097378
Iteration: 16, Func. Count: 132, Neg. LLF: 149.60457666372474
Iteration: 17, Func. Count: 139, Neg. LLF: 149.60457667131868
Optimization terminated successfully (Exit mode 0)
Current function value: 149.60457666372474
Iterations: 17
Function evaluations: 139
Gradient evaluations: 17
Iteration: 1, Func. Count: 10, Neg. LLF: 151.19071018294096
Iteration: 2, Func. Count: 21, Neg. LLF: 152.07122986452134
Iteration: 3, Func. Count: 31, Neg. LLF: 149.90808732439035
Iteration: 4, Func. Count: 40, Neg. LLF: 149.86621523972607
Iteration: 5, Func. Count: 49, Neg. LLF: 149.86385878230138
Iteration: 6, Func. Count: 58, Neg. LLF: 149.85058123430704
Iteration: 7, Func. Count: 67, Neg. LLF: 149.81572200489188
Iteration: 8, Func. Count: 76, Neg. LLF: 149.75455497758156
Iteration: 9, Func. Count: 85, Neg. LLF: 149.66625638585896
Iteration: 10, Func. Count: 94, Neg. LLF: 149.62250522769523
Iteration: 11, Func. Count: 103, Neg. LLF: 149.60529228802628
Iteration: 12, Func. Count: 112, Neg. LLF: 149.60505314731466
Iteration: 13, Func. Count: 121, Neg. LLF: 149.60459977499835
Iteration: 14, Func. Count: 130, Neg. LLF: 149.60458910464087
Iteration: 15, Func. Count: 139, Neg. LLF: 149.604577137594
Iteration: 16, Func. Count: 147, Neg. LLF: 149.60457714852637
Optimization terminated successfully (Exit mode 0)
Current function value: 149.604577137594
Iterations: 16
Function evaluations: 147
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 150.13657972349424
Iteration: 2, Func. Count: 22, Neg. LLF: 157.5925339120905
Iteration: 3, Func. Count: 34, Neg. LLF: 149.9406628029785
Iteration: 4, Func. Count: 44, Neg. LLF: 149.87109035255463
Iteration: 5, Func. Count: 54, Neg. LLF: 149.86333766542464
Iteration: 6, Func. Count: 64, Neg. LLF: 149.85616037581195
Iteration: 7, Func. Count: 74, Neg. LLF: 149.85122796586325
Iteration: 8, Func. Count: 84, Neg. LLF: 149.83504330885398
Iteration: 9, Func. Count: 94, Neg. LLF: 149.8062382447237
Iteration: 10, Func. Count: 104, Neg. LLF: 149.7474226829985
Iteration: 11, Func. Count: 114, Neg. LLF: 149.68075094267567
Iteration: 12, Func. Count: 124, Neg. LLF: 149.65505454454006
Iteration: 13, Func. Count: 134, Neg. LLF: 149.6120147841002
Iteration: 14, Func. Count: 144, Neg. LLF: 149.60810288315585
Iteration: 15, Func. Count: 154, Neg. LLF: 149.60584702228806
Iteration: 16, Func. Count: 164, Neg. LLF: 149.60486452373752
Iteration: 17, Func. Count: 174, Neg. LLF: 149.6045917196357
Iteration: 18, Func. Count: 184, Neg. LLF: 149.60457672379263
Iteration: 19, Func. Count: 193, Neg. LLF: 149.60457674348385
Optimization terminated successfully (Exit mode 0)
Current function value: 149.60457672379263
Iterations: 19
Function evaluations: 193
Gradient evaluations: 19
Iteration: 1, Func. Count: 12, Neg. LLF: 153.66875163054644
Iteration: 2, Func. Count: 25, Neg. LLF: 152.07545608069518
Iteration: 3, Func. Count: 37, Neg. LLF: 149.9561434694383
Iteration: 4, Func. Count: 48, Neg. LLF: 149.9076054042054
Iteration: 5, Func. Count: 59, Neg. LLF: 149.89981306265977
Iteration: 6, Func. Count: 70, Neg. LLF: 149.86866055424096
Iteration: 7, Func. Count: 81, Neg. LLF: 149.84184833979504
Iteration: 8, Func. Count: 92, Neg. LLF: 149.83508115897737
Iteration: 9, Func. Count: 103, Neg. LLF: 149.82238327698568
Iteration: 10, Func. Count: 114, Neg. LLF: 149.80280130278607
Iteration: 11, Func. Count: 125, Neg. LLF: 149.76393081326447
Iteration: 12, Func. Count: 136, Neg. LLF: 149.69198986482502
Iteration: 13, Func. Count: 147, Neg. LLF: 149.68363967465618
Iteration: 14, Func. Count: 158, Neg. LLF: 149.65086623271876
Iteration: 15, Func. Count: 169, Neg. LLF: 149.61343243306723
Iteration: 16, Func. Count: 180, Neg. LLF: 149.60861054858444
Iteration: 17, Func. Count: 191, Neg. LLF: 149.6054087627974
Iteration: 18, Func. Count: 202, Neg. LLF: 149.60462024376602
Iteration: 19, Func. Count: 213, Neg. LLF: 149.6045768904151
Iteration: 20, Func. Count: 223, Neg. LLF: 149.60457691718648
Optimization terminated successfully (Exit mode 0)
Current function value: 149.6045768904151
Iterations: 20
Function evaluations: 223
Gradient evaluations: 20
Iteration: 1, Func. Count: 5, Neg. LLF: 153.07777419067165
Iteration: 2, Func. Count: 10, Neg. LLF: 152.5072142941602
Iteration: 3, Func. Count: 15, Neg. LLF: 150.8005795693287
Iteration: 4, Func. Count: 19, Neg. LLF: 150.4580488345944
Iteration: 5, Func. Count: 23, Neg. LLF: 150.30614362286215
Iteration: 6, Func. Count: 27, Neg. LLF: 150.1323244901517
Iteration: 7, Func. Count: 31, Neg. LLF: 150.05192720252558
Iteration: 8, Func. Count: 35, Neg. LLF: 149.98150933902477
Iteration: 9, Func. Count: 39, Neg. LLF: 149.9776906673768
Iteration: 10, Func. Count: 43, Neg. LLF: 149.9775270632667
Iteration: 11, Func. Count: 47, Neg. LLF: 149.9775254725786
Iteration: 12, Func. Count: 51, Neg. LLF: 149.97752453317852
Optimization terminated successfully (Exit mode 0)
Current function value: 149.97752453317852
Iterations: 12
Function evaluations: 51
Gradient evaluations: 12
Iteration: 1, Func. Count: 6, Neg. LLF: 151.6410785800351
Iteration: 2, Func. Count: 13, Neg. LLF: 149.97815831142702
Iteration: 3, Func. Count: 18, Neg. LLF: 149.9768585362865
Iteration: 4, Func. Count: 23, Neg. LLF: 149.9765234899418
Iteration: 5, Func. Count: 28, Neg. LLF: 149.97652132924776
Iteration: 6, Func. Count: 32, Neg. LLF: 149.9765213292401
Optimization terminated successfully (Exit mode 0)
Current function value: 149.97652132924776
Iterations: 6
Function evaluations: 32
Gradient evaluations: 6
Iteration: 1, Func. Count: 7, Neg. LLF: 150.86659121708837
Iteration: 2, Func. Count: 15, Neg. LLF: 149.98031910406246
Iteration: 3, Func. Count: 21, Neg. LLF: 149.97931710270316
Iteration: 4, Func. Count: 27, Neg. LLF: 149.97905367826462
Iteration: 5, Func. Count: 33, Neg. LLF: 149.97901608017108
Iteration: 6, Func. Count: 39, Neg. LLF: 149.97882018070953
Iteration: 7, Func. Count: 45, Neg. LLF: 149.97772733877574
Iteration: 8, Func. Count: 51, Neg. LLF: 149.97650971262257
Iteration: 9, Func. Count: 57, Neg. LLF: 149.97650841578366
Iteration: 10, Func. Count: 62, Neg. LLF: 149.9765084159771
Optimization terminated successfully (Exit mode 0)
Current function value: 149.97650841578366
Iterations: 10
Function evaluations: 62
Gradient evaluations: 10
Iteration: 1, Func. Count: 8, Neg. LLF: 154.34804780591875
Iteration: 2, Func. Count: 17, Neg. LLF: 149.98050269947063
Iteration: 3, Func. Count: 24, Neg. LLF: 149.97971917736072
Iteration: 4, Func. Count: 31, Neg. LLF: 149.9795152943907
Iteration: 5, Func. Count: 38, Neg. LLF: 149.97950535914387
Iteration: 6, Func. Count: 45, Neg. LLF: 149.9794394664611
Iteration: 7, Func. Count: 52, Neg. LLF: 149.97903860793136
Iteration: 8, Func. Count: 59, Neg. LLF: 149.97861625782113
Iteration: 9, Func. Count: 66, Neg. LLF: 149.97852514295047
Iteration: 10, Func. Count: 73, Neg. LLF: 149.97791152483092
Iteration: 11, Func. Count: 80, Neg. LLF: 149.97656865799829
Iteration: 12, Func. Count: 87, Neg. LLF: 149.9765339181067
Iteration: 13, Func. Count: 94, Neg. LLF: 149.97649962999645
Iteration: 14, Func. Count: 100, Neg. LLF: 149.97649963038265
Optimization terminated successfully (Exit mode 0)
Current function value: 149.97649962999645
Iterations: 14
Function evaluations: 100
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 157.8225472068027
Iteration: 2, Func. Count: 19, Neg. LLF: 149.9814932773457
Iteration: 3, Func. Count: 27, Neg. LLF: 149.98072719145318
Iteration: 4, Func. Count: 35, Neg. LLF: 149.98056785447483
Iteration: 5, Func. Count: 43, Neg. LLF: 149.9805309074146
Iteration: 6, Func. Count: 51, Neg. LLF: 149.98027723395552
Iteration: 7, Func. Count: 59, Neg. LLF: 149.97948232038834
Iteration: 8, Func. Count: 67, Neg. LLF: 149.97944231139493
Iteration: 9, Func. Count: 75, Neg. LLF: 149.9794244703807
Iteration: 10, Func. Count: 83, Neg. LLF: 149.97940884256593
Iteration: 11, Func. Count: 91, Neg. LLF: 149.97933219558453
Iteration: 12, Func. Count: 99, Neg. LLF: 149.97910483171216
Iteration: 13, Func. Count: 107, Neg. LLF: 149.97889146659455
Iteration: 14, Func. Count: 115, Neg. LLF: 149.97870051016284
Iteration: 15, Func. Count: 123, Neg. LLF: 149.97775996210385
Iteration: 16, Func. Count: 131, Neg. LLF: 149.9768440703371
Iteration: 17, Func. Count: 139, Neg. LLF: 160.40189147783633
Iteration: 18, Func. Count: 150, Neg. LLF: 149.97716847074574
Iteration: 19, Func. Count: 159, Neg. LLF: 149.97650277946835
Iteration: 20, Func. Count: 166, Neg. LLF: 149.97650277997892
Optimization terminated successfully (Exit mode 0)
Current function value: 149.97650277946835
Iterations: 21
Function evaluations: 166
Gradient evaluations: 20
Iteration: 1, Func. Count: 6, Neg. LLF: 156.87659272743556
Iteration: 2, Func. Count: 12, Neg. LLF: 151.6937928704364
Iteration: 3, Func. Count: 18, Neg. LLF: 150.31061793528826
Iteration: 4, Func. Count: 23, Neg. LLF: 150.17055968513768
Iteration: 5, Func. Count: 28, Neg. LLF: 150.03701878353272
Iteration: 6, Func. Count: 33, Neg. LLF: 149.89223110680447
Iteration: 7, Func. Count: 38, Neg. LLF: 149.70816733150153
Iteration: 8, Func. Count: 43, Neg. LLF: 149.63573328225436
Iteration: 9, Func. Count: 48, Neg. LLF: 149.6051993749179
Iteration: 10, Func. Count: 53, Neg. LLF: 149.6046224923529
Iteration: 11, Func. Count: 58, Neg. LLF: 149.60457807937925
Iteration: 12, Func. Count: 63, Neg. LLF: 149.60457662783412
Iteration: 13, Func. Count: 67, Neg. LLF: 149.60457662784222
Optimization terminated successfully (Exit mode 0)
Current function value: 149.60457662783412
Iterations: 13
Function evaluations: 67
Gradient evaluations: 13
Iteration: 1, Func. Count: 7, Neg. LLF: 164.8947327678167
Iteration: 2, Func. Count: 15, Neg. LLF: 149.8797619009989
Iteration: 3, Func. Count: 21, Neg. LLF: 149.86643442503504
Iteration: 4, Func. Count: 27, Neg. LLF: 149.8630594971423
Iteration: 5, Func. Count: 33, Neg. LLF: 149.85191637192318
Iteration: 6, Func. Count: 39, Neg. LLF: 149.8291106551001
Iteration: 7, Func. Count: 45, Neg. LLF: 149.7197438511556
Iteration: 8, Func. Count: 51, Neg. LLF: 149.60724544580145
Iteration: 9, Func. Count: 57, Neg. LLF: 149.60552148047222
Iteration: 10, Func. Count: 63, Neg. LLF: 149.60464099732113
Iteration: 11, Func. Count: 69, Neg. LLF: 149.60460085541146
Iteration: 12, Func. Count: 75, Neg. LLF: 149.60457791464898
Iteration: 13, Func. Count: 81, Neg. LLF: 149.60457671334913
Iteration: 14, Func. Count: 86, Neg. LLF: 149.60457672098283
Optimization terminated successfully (Exit mode 0)
Current function value: 149.60457671334913
Iterations: 14
Function evaluations: 86
Gradient evaluations: 14
Iteration: 1, Func. Count: 8, Neg. LLF: 162.93954165758402
Iteration: 2, Func. Count: 17, Neg. LLF: 149.94228542199625
Iteration: 3, Func. Count: 24, Neg. LLF: 149.87214213040502
Iteration: 4, Func. Count: 31, Neg. LLF: 149.87383321870362
Iteration: 5, Func. Count: 39, Neg. LLF: 149.86118503626633
Iteration: 6, Func. Count: 46, Neg. LLF: 149.85350496347152
Iteration: 7, Func. Count: 53, Neg. LLF: 149.81520559964352
Iteration: 8, Func. Count: 60, Neg. LLF: 149.72431419332017
Iteration: 9, Func. Count: 67, Neg. LLF: 149.62928565489054
Iteration: 10, Func. Count: 74, Neg. LLF: 149.6190309570154
Iteration: 11, Func. Count: 81, Neg. LLF: 149.60473713068401
Iteration: 12, Func. Count: 88, Neg. LLF: 149.60458066423865
Iteration: 13, Func. Count: 95, Neg. LLF: 149.60457699862303
Iteration: 14, Func. Count: 101, Neg. LLF: 149.60457700963977
Optimization terminated successfully (Exit mode 0)
Current function value: 149.60457699862303
Iterations: 14
Function evaluations: 101
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 168.20569930204312
Iteration: 2, Func. Count: 19, Neg. LLF: 149.93794765551652
Iteration: 3, Func. Count: 27, Neg. LLF: 149.8839840645944
Iteration: 4, Func. Count: 35, Neg. LLF: 149.92641638029548
Iteration: 5, Func. Count: 44, Neg. LLF: 149.87272727634078
Iteration: 6, Func. Count: 52, Neg. LLF: 149.85587931687024
Iteration: 7, Func. Count: 60, Neg. LLF: 149.84545968088398
Iteration: 8, Func. Count: 68, Neg. LLF: 149.83762676254307
Iteration: 9, Func. Count: 76, Neg. LLF: 149.8027449211411
Iteration: 10, Func. Count: 84, Neg. LLF: 149.74384022185518
Iteration: 11, Func. Count: 92, Neg. LLF: 149.64425032622248
Iteration: 12, Func. Count: 100, Neg. LLF: 149.61515784680245
Iteration: 13, Func. Count: 108, Neg. LLF: 149.60538067225377
Iteration: 14, Func. Count: 116, Neg. LLF: 149.60498103853948
Iteration: 15, Func. Count: 124, Neg. LLF: 149.60461344731957
Iteration: 16, Func. Count: 132, Neg. LLF: 149.6045919592574
Iteration: 17, Func. Count: 140, Neg. LLF: 149.60457711098425
Iteration: 18, Func. Count: 147, Neg. LLF: 149.60457713065193
Optimization terminated successfully (Exit mode 0)
Current function value: 149.60457711098425
Iterations: 18
Function evaluations: 147
Gradient evaluations: 18
Iteration: 1, Func. Count: 10, Neg. LLF: 168.82087680345472
Iteration: 2, Func. Count: 21, Neg. LLF: 149.95682301545727
Iteration: 3, Func. Count: 30, Neg. LLF: 149.90899329137093
Iteration: 4, Func. Count: 39, Neg. LLF: 149.8839762669025
Iteration: 5, Func. Count: 48, Neg. LLF: 149.8650723716619
Iteration: 6, Func. Count: 57, Neg. LLF: 149.85928502652055
Iteration: 7, Func. Count: 66, Neg. LLF: 149.85125558229493
Iteration: 8, Func. Count: 75, Neg. LLF: 149.83521435145695
Iteration: 9, Func. Count: 84, Neg. LLF: 149.80619264125974
Iteration: 10, Func. Count: 93, Neg. LLF: 149.7558889934891
Iteration: 11, Func. Count: 102, Neg. LLF: 149.68353199657713
Iteration: 12, Func. Count: 111, Neg. LLF: 149.6725930159964
Iteration: 13, Func. Count: 120, Neg. LLF: 149.63272107614546
Iteration: 14, Func. Count: 129, Neg. LLF: 149.60710953906138
Iteration: 15, Func. Count: 138, Neg. LLF: 149.6057133466682
Iteration: 16, Func. Count: 147, Neg. LLF: 149.60470326011406
Iteration: 17, Func. Count: 156, Neg. LLF: 149.60458781493344
Iteration: 18, Func. Count: 165, Neg. LLF: 149.6045770849487
Iteration: 19, Func. Count: 173, Neg. LLF: 149.60457711173416
Optimization terminated successfully (Exit mode 0)
Current function value: 149.6045770849487
Iterations: 19
Function evaluations: 173
Gradient evaluations: 19
Iteration: 1, Func. Count: 7, Neg. LLF: 156.88057036165176
Iteration: 2, Func. Count: 14, Neg. LLF: 151.72183358460686
Iteration: 3, Func. Count: 21, Neg. LLF: 150.32694565815888
Iteration: 4, Func. Count: 27, Neg. LLF: 150.18488190412182
Iteration: 5, Func. Count: 33, Neg. LLF: 150.0587486006662
Iteration: 6, Func. Count: 39, Neg. LLF: 149.87984463774112
Iteration: 7, Func. Count: 45, Neg. LLF: 149.72821362552008
Iteration: 8, Func. Count: 51, Neg. LLF: 149.64292076008476
Iteration: 9, Func. Count: 57, Neg. LLF: 149.60532682729198
Iteration: 10, Func. Count: 63, Neg. LLF: 149.6046089001227
Iteration: 11, Func. Count: 69, Neg. LLF: 149.6045765847607
Iteration: 12, Func. Count: 74, Neg. LLF: 149.60457660363082
Optimization terminated successfully (Exit mode 0)
Current function value: 149.6045765847607
Iterations: 12
Function evaluations: 74
Gradient evaluations: 12
Iteration: 1, Func. Count: 8, Neg. LLF: 152.32769234090227
Iteration: 2, Func. Count: 17, Neg. LLF: 152.05191107615343
Iteration: 3, Func. Count: 25, Neg. LLF: 149.87396747346776
Iteration: 4, Func. Count: 32, Neg. LLF: 149.8659347995768
Iteration: 5, Func. Count: 39, Neg. LLF: 149.8581720239846
Iteration: 6, Func. Count: 46, Neg. LLF: 149.84291013066502
Iteration: 7, Func. Count: 53, Neg. LLF: 149.80238339074972
Iteration: 8, Func. Count: 60, Neg. LLF: 149.7256745446938
Iteration: 9, Func. Count: 67, Neg. LLF: 149.65067957542556
Iteration: 10, Func. Count: 74, Neg. LLF: 149.6231752549417
Iteration: 11, Func. Count: 81, Neg. LLF: 149.61014907688065
Iteration: 12, Func. Count: 88, Neg. LLF: 149.6068206985057
Iteration: 13, Func. Count: 95, Neg. LLF: 149.60469468892347
Iteration: 14, Func. Count: 102, Neg. LLF: 149.60458021812283
Iteration: 15, Func. Count: 109, Neg. LLF: 149.6045770545329
Iteration: 16, Func. Count: 115, Neg. LLF: 149.60457706212338
Optimization terminated successfully (Exit mode 0)
Current function value: 149.6045770545329
Iterations: 16
Function evaluations: 115
Gradient evaluations: 16
Iteration: 1, Func. Count: 9, Neg. LLF: 151.48240211410413
Iteration: 2, Func. Count: 19, Neg. LLF: 151.98837341861594
Iteration: 3, Func. Count: 28, Neg. LLF: 149.9041188507021
Iteration: 4, Func. Count: 36, Neg. LLF: 149.8678612249328
Iteration: 5, Func. Count: 44, Neg. LLF: 149.8645471180112
Iteration: 6, Func. Count: 52, Neg. LLF: 149.85088653486514
Iteration: 7, Func. Count: 60, Neg. LLF: 149.82522190699828
Iteration: 8, Func. Count: 68, Neg. LLF: 149.80063853390084
Iteration: 9, Func. Count: 76, Neg. LLF: 149.72667317657567
Iteration: 10, Func. Count: 84, Neg. LLF: 149.64075361496654
Iteration: 11, Func. Count: 92, Neg. LLF: 149.61888173078495
Iteration: 12, Func. Count: 100, Neg. LLF: 149.60658465757277
Iteration: 13, Func. Count: 108, Neg. LLF: 149.60503308690016
Iteration: 14, Func. Count: 116, Neg. LLF: 149.604676673059
Iteration: 15, Func. Count: 124, Neg. LLF: 149.60463744194004
Iteration: 16, Func. Count: 132, Neg. LLF: 149.60458249687497
Iteration: 17, Func. Count: 140, Neg. LLF: 149.60457701306993
Iteration: 18, Func. Count: 147, Neg. LLF: 149.6045770239865
Optimization terminated successfully (Exit mode 0)
Current function value: 149.60457701306993
Iterations: 18
Function evaluations: 147
Gradient evaluations: 18
Iteration: 1, Func. Count: 10, Neg. LLF: 150.15111186566378
Iteration: 2, Func. Count: 20, Neg. LLF: 152.16801720017446
Iteration: 3, Func. Count: 30, Neg. LLF: 149.9465004208312
Iteration: 4, Func. Count: 39, Neg. LLF: 149.88050279156658
Iteration: 5, Func. Count: 48, Neg. LLF: 149.8663314498402
Iteration: 6, Func. Count: 57, Neg. LLF: 149.8613391922737
Iteration: 7, Func. Count: 66, Neg. LLF: 149.85211110997398
Iteration: 8, Func. Count: 75, Neg. LLF: 149.83715456430585
Iteration: 9, Func. Count: 84, Neg. LLF: 149.81086452872077
Iteration: 10, Func. Count: 93, Neg. LLF: 149.7699786762566
Iteration: 11, Func. Count: 102, Neg. LLF: 149.70299434190247
Iteration: 12, Func. Count: 111, Neg. LLF: 149.65998319841057
Iteration: 13, Func. Count: 120, Neg. LLF: 149.61687837906015
Iteration: 14, Func. Count: 129, Neg. LLF: 149.60913906912032
Iteration: 15, Func. Count: 138, Neg. LLF: 149.60532139001037
Iteration: 16, Func. Count: 147, Neg. LLF: 149.60469984233865
Iteration: 17, Func. Count: 156, Neg. LLF: 149.60458892742366
Iteration: 18, Func. Count: 165, Neg. LLF: 149.60457732834482
Iteration: 19, Func. Count: 174, Neg. LLF: 149.6045766022736
Optimization terminated successfully (Exit mode 0)
Current function value: 149.6045766022736
Iterations: 19
Function evaluations: 174
Gradient evaluations: 19
Iteration: 1, Func. Count: 11, Neg. LLF: 153.2700859689938
Iteration: 2, Func. Count: 23, Neg. LLF: 152.08351889090392
Iteration: 3, Func. Count: 34, Neg. LLF: 149.95354413192484
Iteration: 4, Func. Count: 44, Neg. LLF: 149.89622462719308
Iteration: 5, Func. Count: 54, Neg. LLF: 149.870246031157
Iteration: 6, Func. Count: 64, Neg. LLF: 149.8582399919164
Iteration: 7, Func. Count: 74, Neg. LLF: 149.852795363206
Iteration: 8, Func. Count: 84, Neg. LLF: 149.84235541862392
Iteration: 9, Func. Count: 94, Neg. LLF: 149.82025134586064
Iteration: 10, Func. Count: 104, Neg. LLF: 149.77932941992447
Iteration: 11, Func. Count: 114, Neg. LLF: 149.69833583200082
Iteration: 12, Func. Count: 124, Neg. LLF: 149.68233424006354
Iteration: 13, Func. Count: 134, Neg. LLF: 149.6362637909904
Iteration: 14, Func. Count: 144, Neg. LLF: 149.6200352341263
Iteration: 15, Func. Count: 154, Neg. LLF: 149.6116673129841
Iteration: 16, Func. Count: 164, Neg. LLF: 149.60672726379434
Iteration: 17, Func. Count: 174, Neg. LLF: 149.60488969717574
Iteration: 18, Func. Count: 184, Neg. LLF: 149.60457810158817
Iteration: 19, Func. Count: 194, Neg. LLF: 149.6045766065261
Iteration: 20, Func. Count: 203, Neg. LLF: 149.60457663333986
Optimization terminated successfully (Exit mode 0)
Current function value: 149.6045766065261
Iterations: 20
Function evaluations: 203
Gradient evaluations: 20
Iteration: 1, Func. Count: 8, Neg. LLF: 156.24214157790522
Iteration: 2, Func. Count: 16, Neg. LLF: 151.8144502456446
Iteration: 3, Func. Count: 24, Neg. LLF: 150.3360194841561
Iteration: 4, Func. Count: 31, Neg. LLF: 150.20477166178262
Iteration: 5, Func. Count: 38, Neg. LLF: 150.07467881696832
Iteration: 6, Func. Count: 45, Neg. LLF: 149.88084578966846
Iteration: 7, Func. Count: 52, Neg. LLF: 149.73228415016692
Iteration: 8, Func. Count: 59, Neg. LLF: 149.6464286612898
Iteration: 9, Func. Count: 66, Neg. LLF: 149.60563241544705
Iteration: 10, Func. Count: 73, Neg. LLF: 149.60472473091463
Iteration: 11, Func. Count: 80, Neg. LLF: 149.6045768197119
Iteration: 12, Func. Count: 86, Neg. LLF: 149.60457684467278
Optimization terminated successfully (Exit mode 0)
Current function value: 149.6045768197119
Iterations: 12
Function evaluations: 86
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 152.23267432880323
Iteration: 2, Func. Count: 19, Neg. LLF: 152.06105667259143
Iteration: 3, Func. Count: 28, Neg. LLF: 149.87391814254528
Iteration: 4, Func. Count: 36, Neg. LLF: 149.86563032538368
Iteration: 5, Func. Count: 44, Neg. LLF: 149.85837061658816
Iteration: 6, Func. Count: 52, Neg. LLF: 149.84377045347412
Iteration: 7, Func. Count: 60, Neg. LLF: 149.80468380233427
Iteration: 8, Func. Count: 68, Neg. LLF: 149.730581310666
Iteration: 9, Func. Count: 76, Neg. LLF: 149.65425068112845
Iteration: 10, Func. Count: 84, Neg. LLF: 149.6254201809557
Iteration: 11, Func. Count: 92, Neg. LLF: 149.61014161499799
Iteration: 12, Func. Count: 100, Neg. LLF: 149.6066689289004
Iteration: 13, Func. Count: 108, Neg. LLF: 149.60466806023553
Iteration: 14, Func. Count: 116, Neg. LLF: 149.60457808316326
Iteration: 15, Func. Count: 124, Neg. LLF: 149.60457660840467
Iteration: 16, Func. Count: 131, Neg. LLF: 149.60457661602675
Optimization terminated successfully (Exit mode 0)
Current function value: 149.60457660840467
Iterations: 16
Function evaluations: 131
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 152.97436313861516
Iteration: 2, Func. Count: 21, Neg. LLF: 151.98583332485208
Iteration: 3, Func. Count: 31, Neg. LLF: 149.90409096659107
Iteration: 4, Func. Count: 40, Neg. LLF: 149.8684818022357
Iteration: 5, Func. Count: 49, Neg. LLF: 149.8648721427751
Iteration: 6, Func. Count: 58, Neg. LLF: 149.85087698659302
Iteration: 7, Func. Count: 67, Neg. LLF: 149.83365263964035
Iteration: 8, Func. Count: 76, Neg. LLF: 149.81273500393345
Iteration: 9, Func. Count: 85, Neg. LLF: 149.7517103732965
Iteration: 10, Func. Count: 94, Neg. LLF: 149.65365972580898
Iteration: 11, Func. Count: 103, Neg. LLF: 149.62616768257448
Iteration: 12, Func. Count: 112, Neg. LLF: 149.6086938776099
Iteration: 13, Func. Count: 121, Neg. LLF: 149.6054164774792
Iteration: 14, Func. Count: 130, Neg. LLF: 149.6047490665847
Iteration: 15, Func. Count: 139, Neg. LLF: 149.60467433352994
Iteration: 16, Func. Count: 148, Neg. LLF: 149.60460827731637
Iteration: 17, Func. Count: 157, Neg. LLF: 149.60458112310144
Iteration: 18, Func. Count: 166, Neg. LLF: 149.60457677455082
Iteration: 19, Func. Count: 174, Neg. LLF: 149.60457678549483
Optimization terminated successfully (Exit mode 0)
Current function value: 149.60457677455082
Iterations: 19
Function evaluations: 174
Gradient evaluations: 19
Iteration: 1, Func. Count: 11, Neg. LLF: 150.8553696949078
Iteration: 2, Func. Count: 22, Neg. LLF: 151.97089024672212
Iteration: 3, Func. Count: 33, Neg. LLF: 149.94002533331258
Iteration: 4, Func. Count: 43, Neg. LLF: 149.8792533519421
Iteration: 5, Func. Count: 53, Neg. LLF: 149.86823652479058
Iteration: 6, Func. Count: 63, Neg. LLF: 149.8494053399751
Iteration: 7, Func. Count: 73, Neg. LLF: 149.84134386811175
Iteration: 8, Func. Count: 83, Neg. LLF: 149.83108201873006
Iteration: 9, Func. Count: 93, Neg. LLF: 149.81823042140712
Iteration: 10, Func. Count: 103, Neg. LLF: 149.79368516407632
Iteration: 11, Func. Count: 113, Neg. LLF: 149.73341725053493
Iteration: 12, Func. Count: 123, Neg. LLF: 149.6935935737775
Iteration: 13, Func. Count: 133, Neg. LLF: 149.65206272829536
Iteration: 14, Func. Count: 143, Neg. LLF: 149.6201049733453
Iteration: 15, Func. Count: 153, Neg. LLF: 149.61441569240554
Iteration: 16, Func. Count: 163, Neg. LLF: 149.6083025739451
Iteration: 17, Func. Count: 173, Neg. LLF: 149.6056157511673
Iteration: 18, Func. Count: 183, Neg. LLF: 149.60463172060545
Iteration: 19, Func. Count: 193, Neg. LLF: 149.60457692828305
Iteration: 20, Func. Count: 202, Neg. LLF: 149.60457694798356
Optimization terminated successfully (Exit mode 0)
Current function value: 149.60457692828305
Iterations: 20
Function evaluations: 202
Gradient evaluations: 20
Iteration: 1, Func. Count: 12, Neg. LLF: 152.5455246514972
Iteration: 2, Func. Count: 25, Neg. LLF: 152.14129428458165
Iteration: 3, Func. Count: 37, Neg. LLF: 149.95383358964278
Iteration: 4, Func. Count: 48, Neg. LLF: 149.901520111939
Iteration: 5, Func. Count: 59, Neg. LLF: 149.88244773543718
Iteration: 6, Func. Count: 70, Neg. LLF: 149.8610773331307
Iteration: 7, Func. Count: 81, Neg. LLF: 149.85200066007653
Iteration: 8, Func. Count: 92, Neg. LLF: 149.84245373001934
Iteration: 9, Func. Count: 103, Neg. LLF: 149.83231658770245
Iteration: 10, Func. Count: 114, Neg. LLF: 149.81333018049804
Iteration: 11, Func. Count: 125, Neg. LLF: 149.7774313661197
Iteration: 12, Func. Count: 136, Neg. LLF: 149.69483861334558
Iteration: 13, Func. Count: 147, Neg. LLF: 149.66183282636177
Iteration: 14, Func. Count: 158, Neg. LLF: 149.61560571060699
Iteration: 15, Func. Count: 169, Neg. LLF: 149.61051681557683
Iteration: 16, Func. Count: 180, Neg. LLF: 149.60692248088745
Iteration: 17, Func. Count: 191, Neg. LLF: 149.60550596007548
Iteration: 18, Func. Count: 202, Neg. LLF: 149.60475975874039
Iteration: 19, Func. Count: 213, Neg. LLF: 149.60459332628508
Iteration: 20, Func. Count: 224, Neg. LLF: 149.6045771995785
Iteration: 21, Func. Count: 235, Neg. LLF: 149.60457659843195
Optimization terminated successfully (Exit mode 0)
Current function value: 149.60457659843195
Iterations: 21
Function evaluations: 235
Gradient evaluations: 21
Iteration: 1, Func. Count: 9, Neg. LLF: 156.14951403973657
Iteration: 2, Func. Count: 18, Neg. LLF: 151.86214531843078
Iteration: 3, Func. Count: 27, Neg. LLF: 150.3476182217908
Iteration: 4, Func. Count: 35, Neg. LLF: 150.2119476614514
Iteration: 5, Func. Count: 43, Neg. LLF: 150.08639088788334
Iteration: 6, Func. Count: 51, Neg. LLF: 149.8919602263956
Iteration: 7, Func. Count: 59, Neg. LLF: 149.74271092690645
Iteration: 8, Func. Count: 67, Neg. LLF: 149.65494330970134
Iteration: 9, Func. Count: 75, Neg. LLF: 149.6060567585995
Iteration: 10, Func. Count: 83, Neg. LLF: 149.60466043374396
Iteration: 11, Func. Count: 91, Neg. LLF: 149.60457707164642
Iteration: 12, Func. Count: 98, Neg. LLF: 149.60457711741412
Optimization terminated successfully (Exit mode 0)
Current function value: 149.60457707164642
Iterations: 12
Function evaluations: 98
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 152.18650046495702
Iteration: 2, Func. Count: 21, Neg. LLF: 152.06629258918156
Iteration: 3, Func. Count: 31, Neg. LLF: 149.87387194165635
Iteration: 4, Func. Count: 40, Neg. LLF: 149.8654609689746
Iteration: 5, Func. Count: 49, Neg. LLF: 149.85860782260318
Iteration: 6, Func. Count: 58, Neg. LLF: 149.84406386019162
Iteration: 7, Func. Count: 67, Neg. LLF: 149.80592571539623
Iteration: 8, Func. Count: 76, Neg. LLF: 149.7338471660578
Iteration: 9, Func. Count: 85, Neg. LLF: 149.65648107272435
Iteration: 10, Func. Count: 94, Neg. LLF: 149.6264230129152
Iteration: 11, Func. Count: 103, Neg. LLF: 149.61006473748773
Iteration: 12, Func. Count: 112, Neg. LLF: 149.60658931320182
Iteration: 13, Func. Count: 121, Neg. LLF: 149.60467390126016
Iteration: 14, Func. Count: 130, Neg. LLF: 149.6045802897423
Iteration: 15, Func. Count: 139, Neg. LLF: 149.60457708964393
Iteration: 16, Func. Count: 147, Neg. LLF: 149.60457709730116
Optimization terminated successfully (Exit mode 0)
Current function value: 149.60457708964393
Iterations: 16
Function evaluations: 147
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 154.8613040970292
Iteration: 2, Func. Count: 23, Neg. LLF: 151.98565444442045
Iteration: 3, Func. Count: 34, Neg. LLF: 149.90465906122085
Iteration: 4, Func. Count: 44, Neg. LLF: 149.8684067132965
Iteration: 5, Func. Count: 54, Neg. LLF: 149.8647503515602
Iteration: 6, Func. Count: 64, Neg. LLF: 149.8503504887969
Iteration: 7, Func. Count: 74, Neg. LLF: 149.83423043740933
Iteration: 8, Func. Count: 84, Neg. LLF: 149.81296070302986
Iteration: 9, Func. Count: 94, Neg. LLF: 149.75359985008583
Iteration: 10, Func. Count: 104, Neg. LLF: 149.65564513033627
Iteration: 11, Func. Count: 114, Neg. LLF: 149.62665750706688
Iteration: 12, Func. Count: 124, Neg. LLF: 149.6087303815231
Iteration: 13, Func. Count: 134, Neg. LLF: 149.60558065579386
Iteration: 14, Func. Count: 144, Neg. LLF: 149.60476692619906
Iteration: 15, Func. Count: 154, Neg. LLF: 149.6046848761569
Iteration: 16, Func. Count: 164, Neg. LLF: 149.60461319537242
Iteration: 17, Func. Count: 174, Neg. LLF: 149.60458232413225
Iteration: 18, Func. Count: 184, Neg. LLF: 149.60457683986058
Iteration: 19, Func. Count: 193, Neg. LLF: 149.60457685080397
Optimization terminated successfully (Exit mode 0)
Current function value: 149.60457683986058
Iterations: 19
Function evaluations: 193
Gradient evaluations: 19
Iteration: 1, Func. Count: 12, Neg. LLF: 152.17389658530558
Iteration: 2, Func. Count: 25, Neg. LLF: 151.9706757934514
Iteration: 3, Func. Count: 37, Neg. LLF: 149.94249351274934
Iteration: 4, Func. Count: 48, Neg. LLF: 149.8733263224122
Iteration: 5, Func. Count: 59, Neg. LLF: 149.867032800321
Iteration: 6, Func. Count: 70, Neg. LLF: 149.86225365939532
Iteration: 7, Func. Count: 81, Neg. LLF: 149.8539956674858
Iteration: 8, Func. Count: 92, Neg. LLF: 149.841195434322
Iteration: 9, Func. Count: 103, Neg. LLF: 149.81731538497164
Iteration: 10, Func. Count: 114, Neg. LLF: 149.7710756836702
Iteration: 11, Func. Count: 125, Neg. LLF: 149.68399520698975
Iteration: 12, Func. Count: 136, Neg. LLF: 149.62750038358826
Iteration: 13, Func. Count: 147, Neg. LLF: 149.61162704619312
Iteration: 14, Func. Count: 158, Neg. LLF: 149.60720763098223
Iteration: 15, Func. Count: 169, Neg. LLF: 149.60545370058375
Iteration: 16, Func. Count: 180, Neg. LLF: 149.60477178822018
Iteration: 17, Func. Count: 191, Neg. LLF: 149.6046701758042
Iteration: 18, Func. Count: 202, Neg. LLF: 149.60461057636172
Iteration: 19, Func. Count: 213, Neg. LLF: 149.60458196168253
Iteration: 20, Func. Count: 224, Neg. LLF: 149.6045768577191
Iteration: 21, Func. Count: 234, Neg. LLF: 149.60457687742874
Optimization terminated successfully (Exit mode 0)
Current function value: 149.6045768577191
Iterations: 21
Function evaluations: 234
Gradient evaluations: 21
Iteration: 1, Func. Count: 13, Neg. LLF: 151.88083679095513
Iteration: 2, Func. Count: 27, Neg. LLF: 152.23275509378803
Iteration: 3, Func. Count: 40, Neg. LLF: 149.95453323578099
Iteration: 4, Func. Count: 52, Neg. LLF: 149.91202305290665
Iteration: 5, Func. Count: 64, Neg. LLF: 149.88646590658746
Iteration: 6, Func. Count: 76, Neg. LLF: 149.86162361291136
Iteration: 7, Func. Count: 88, Neg. LLF: 149.85439824444128
Iteration: 8, Func. Count: 100, Neg. LLF: 149.84679935772323
Iteration: 9, Func. Count: 112, Neg. LLF: 149.8334949607523
Iteration: 10, Func. Count: 124, Neg. LLF: 149.80456961067352
Iteration: 11, Func. Count: 136, Neg. LLF: 149.75127763678714
Iteration: 12, Func. Count: 148, Neg. LLF: 149.6861069227271
Iteration: 13, Func. Count: 160, Neg. LLF: 149.67837034112006
Iteration: 14, Func. Count: 172, Neg. LLF: 149.6461514839524
Iteration: 15, Func. Count: 184, Neg. LLF: 149.605925636628
Iteration: 16, Func. Count: 196, Neg. LLF: 149.6047588871254
Iteration: 17, Func. Count: 208, Neg. LLF: 149.6046454534576
Iteration: 18, Func. Count: 220, Neg. LLF: 149.60457940646123
Iteration: 19, Func. Count: 232, Neg. LLF: 149.6045766736149
Iteration: 20, Func. Count: 243, Neg. LLF: 149.60457670042516
Optimization terminated successfully (Exit mode 0)
Current function value: 149.6045766736149
Iterations: 20
Function evaluations: 243
Gradient evaluations: 20
Iteration: 1, Func. Count: 6, Neg. LLF: 152.18794505155236
Iteration: 2, Func. Count: 12, Neg. LLF: 150.85468049210726
Iteration: 3, Func. Count: 17, Neg. LLF: 150.52211840422638
Iteration: 4, Func. Count: 22, Neg. LLF: 150.37430028663368
Iteration: 5, Func. Count: 27, Neg. LLF: 150.19710927512995
Iteration: 6, Func. Count: 32, Neg. LLF: 150.09686080083236
Iteration: 7, Func. Count: 37, Neg. LLF: 150.0371039484879
Iteration: 8, Func. Count: 42, Neg. LLF: 149.9790767191605
Iteration: 9, Func. Count: 47, Neg. LLF: 149.9777330599905
Iteration: 10, Func. Count: 52, Neg. LLF: 149.97752780544687
Iteration: 11, Func. Count: 57, Neg. LLF: 149.97752496372024
Iteration: 12, Func. Count: 61, Neg. LLF: 149.9775250167487
Optimization terminated successfully (Exit mode 0)
Current function value: 149.97752496372024
Iterations: 12
Function evaluations: 61
Gradient evaluations: 12
Iteration: 1, Func. Count: 7, Neg. LLF: 153.77456052133275
Iteration: 2, Func. Count: 15, Neg. LLF: 149.9768758206055
Iteration: 3, Func. Count: 21, Neg. LLF: 149.976787415331
Iteration: 4, Func. Count: 27, Neg. LLF: 149.97664300052136
Iteration: 5, Func. Count: 33, Neg. LLF: 149.97658753147488
Iteration: 6, Func. Count: 39, Neg. LLF: 149.9765210080336
Iteration: 7, Func. Count: 45, Neg. LLF: 149.97651283931015
Iteration: 8, Func. Count: 51, Neg. LLF: 149.97651193441487
Optimization terminated successfully (Exit mode 0)
Current function value: 149.97651193441487
Iterations: 8
Function evaluations: 51
Gradient evaluations: 8
Iteration: 1, Func. Count: 8, Neg. LLF: 150.00722816188696
Iteration: 2, Func. Count: 15, Neg. LLF: 149.97975979143376
Iteration: 3, Func. Count: 22, Neg. LLF: 149.9848048033314
Iteration: 4, Func. Count: 30, Neg. LLF: 149.9790455744078
Iteration: 5, Func. Count: 37, Neg. LLF: 149.978920523836
Iteration: 6, Func. Count: 44, Neg. LLF: 149.97850650332452
Iteration: 7, Func. Count: 51, Neg. LLF: 149.97742002760944
Iteration: 8, Func. Count: 58, Neg. LLF: 149.97694807350254
Iteration: 9, Func. Count: 65, Neg. LLF: 149.97653159469664
Iteration: 10, Func. Count: 71, Neg. LLF: 149.9765315949275
Optimization terminated successfully (Exit mode 0)
Current function value: 149.97653159469664
Iterations: 10
Function evaluations: 71
Gradient evaluations: 10
Iteration: 1, Func. Count: 9, Neg. LLF: 151.90542012184224
Iteration: 2, Func. Count: 19, Neg. LLF: 149.97968181707674
Iteration: 3, Func. Count: 27, Neg. LLF: 149.9796706119029
Iteration: 4, Func. Count: 36, Neg. LLF: 149.97952948056061
Iteration: 5, Func. Count: 44, Neg. LLF: 149.97951603324046
Iteration: 6, Func. Count: 52, Neg. LLF: 149.97943304037534
Iteration: 7, Func. Count: 60, Neg. LLF: 149.97923592036435
Iteration: 8, Func. Count: 68, Neg. LLF: 149.97911552946613
Iteration: 9, Func. Count: 76, Neg. LLF: 149.97901617952658
Iteration: 10, Func. Count: 84, Neg. LLF: 149.9789591151104
Iteration: 11, Func. Count: 92, Neg. LLF: 149.97882576919494
Iteration: 12, Func. Count: 100, Neg. LLF: 149.9771818993081
Iteration: 13, Func. Count: 108, Neg. LLF: 149.97692286111842
Iteration: 14, Func. Count: 116, Neg. LLF: 149.97650125949363
Iteration: 15, Func. Count: 124, Neg. LLF: 149.97650001242783
Iteration: 16, Func. Count: 131, Neg. LLF: 149.97650001280329
Optimization terminated successfully (Exit mode 0)
Current function value: 149.97650001242783
Iterations: 16
Function evaluations: 131
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 157.81745367591924
Iteration: 2, Func. Count: 21, Neg. LLF: 149.98066821176306
Iteration: 3, Func. Count: 30, Neg. LLF: 149.98070544113403
Iteration: 4, Func. Count: 40, Neg. LLF: 149.98053806647715
Iteration: 5, Func. Count: 49, Neg. LLF: 149.98038301849544
Iteration: 6, Func. Count: 58, Neg. LLF: 149.9794744357369
Iteration: 7, Func. Count: 67, Neg. LLF: 149.97946673768828
Iteration: 8, Func. Count: 76, Neg. LLF: 149.97943729811522
Iteration: 9, Func. Count: 85, Neg. LLF: 149.97935799233255
Iteration: 10, Func. Count: 94, Neg. LLF: 149.97919639330163
Iteration: 11, Func. Count: 103, Neg. LLF: 149.97910379999618
Iteration: 12, Func. Count: 112, Neg. LLF: 149.97897119656344
Iteration: 13, Func. Count: 121, Neg. LLF: 149.9789307672909
Iteration: 14, Func. Count: 130, Neg. LLF: 149.9785611529963
Iteration: 15, Func. Count: 139, Neg. LLF: 149.97775228406468
Iteration: 16, Func. Count: 148, Neg. LLF: 149.9772091863913
Iteration: 17, Func. Count: 157, Neg. LLF: 149.9765014015907
Iteration: 18, Func. Count: 166, Neg. LLF: 149.97650031447435
Iteration: 19, Func. Count: 175, Neg. LLF: 149.97649880566885
Iteration: 20, Func. Count: 183, Neg. LLF: 149.9764988061739
Optimization terminated successfully (Exit mode 0)
Current function value: 149.97649880566885
Iterations: 20
Function evaluations: 183
Gradient evaluations: 20
Iteration: 1, Func. Count: 7, Neg. LLF: 153.08270997086356
Iteration: 2, Func. Count: 14, Neg. LLF: 154.70792129226348
Iteration: 3, Func. Count: 21, Neg. LLF: 150.38486102613103
Iteration: 4, Func. Count: 27, Neg. LLF: 150.20751015289602
Iteration: 5, Func. Count: 33, Neg. LLF: 150.0461328509672
Iteration: 6, Func. Count: 39, Neg. LLF: 149.82106359823172
Iteration: 7, Func. Count: 45, Neg. LLF: 149.67056338566954
Iteration: 8, Func. Count: 51, Neg. LLF: 149.61182109470587
Iteration: 9, Func. Count: 57, Neg. LLF: 149.60516009040202
Iteration: 10, Func. Count: 63, Neg. LLF: 149.60460686387657
Iteration: 11, Func. Count: 69, Neg. LLF: 149.60458159333055
Iteration: 12, Func. Count: 75, Neg. LLF: 149.60457671219936
Iteration: 13, Func. Count: 80, Neg. LLF: 149.6045767121901
Optimization terminated successfully (Exit mode 0)
Current function value: 149.60457671219936
Iterations: 13
Function evaluations: 80
Gradient evaluations: 13
Iteration: 1, Func. Count: 8, Neg. LLF: 165.56268261865407
Iteration: 2, Func. Count: 17, Neg. LLF: 149.87483988649538
Iteration: 3, Func. Count: 24, Neg. LLF: 149.8658145788997
Iteration: 4, Func. Count: 31, Neg. LLF: 149.85956644517069
Iteration: 5, Func. Count: 38, Neg. LLF: 149.83940577877382
Iteration: 6, Func. Count: 45, Neg. LLF: 149.81093757783614
Iteration: 7, Func. Count: 52, Neg. LLF: 149.75054085675683
Iteration: 8, Func. Count: 59, Neg. LLF: 149.64538994197235
Iteration: 9, Func. Count: 66, Neg. LLF: 149.61628225916053
Iteration: 10, Func. Count: 73, Neg. LLF: 149.6050900415545
Iteration: 11, Func. Count: 80, Neg. LLF: 149.60471029408936
Iteration: 12, Func. Count: 87, Neg. LLF: 149.60460097420633
Iteration: 13, Func. Count: 94, Neg. LLF: 149.60458372032403
Iteration: 14, Func. Count: 101, Neg. LLF: 149.6045771674778
Iteration: 15, Func. Count: 107, Neg. LLF: 149.60457717512622
Optimization terminated successfully (Exit mode 0)
Current function value: 149.6045771674778
Iterations: 15
Function evaluations: 107
Gradient evaluations: 15
Iteration: 1, Func. Count: 9, Neg. LLF: 163.06113884767453
Iteration: 2, Func. Count: 19, Neg. LLF: 149.9368088889862
Iteration: 3, Func. Count: 27, Neg. LLF: 149.87277292553912
Iteration: 4, Func. Count: 35, Neg. LLF: 149.8713412862048
Iteration: 5, Func. Count: 44, Neg. LLF: 149.86057658824308
Iteration: 6, Func. Count: 52, Neg. LLF: 149.8546297106903
Iteration: 7, Func. Count: 60, Neg. LLF: 149.81615939429656
Iteration: 8, Func. Count: 68, Neg. LLF: 149.65157971247677
Iteration: 9, Func. Count: 76, Neg. LLF: 149.60984850689954
Iteration: 10, Func. Count: 84, Neg. LLF: 149.60676647195623
Iteration: 11, Func. Count: 92, Neg. LLF: 149.6048994735125
Iteration: 12, Func. Count: 100, Neg. LLF: 149.6046276794405
Iteration: 13, Func. Count: 108, Neg. LLF: 149.60457787605966
Iteration: 14, Func. Count: 116, Neg. LLF: 149.60457699751626
Optimization terminated successfully (Exit mode 0)
Current function value: 149.60457699751626
Iterations: 14
Function evaluations: 116
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 168.12557853162252
Iteration: 2, Func. Count: 21, Neg. LLF: 149.94227607551144
Iteration: 3, Func. Count: 30, Neg. LLF: 149.88863685092713
Iteration: 4, Func. Count: 39, Neg. LLF: 149.88663736442575
Iteration: 5, Func. Count: 49, Neg. LLF: 149.8649352473766
Iteration: 6, Func. Count: 58, Neg. LLF: 149.85277640184358
Iteration: 7, Func. Count: 67, Neg. LLF: 149.84757433317736
Iteration: 8, Func. Count: 76, Neg. LLF: 149.81571696304474
Iteration: 9, Func. Count: 85, Neg. LLF: 149.74864154575724
Iteration: 10, Func. Count: 94, Neg. LLF: 149.64491862263316
Iteration: 11, Func. Count: 103, Neg. LLF: 149.61947907979976
Iteration: 12, Func. Count: 112, Neg. LLF: 149.60756384695364
Iteration: 13, Func. Count: 121, Neg. LLF: 149.60533574289013
Iteration: 14, Func. Count: 130, Neg. LLF: 149.60463527490958
Iteration: 15, Func. Count: 139, Neg. LLF: 149.60459745876366
Iteration: 16, Func. Count: 148, Neg. LLF: 149.60458366893252
Iteration: 17, Func. Count: 157, Neg. LLF: 149.60457750495917
Iteration: 18, Func. Count: 166, Neg. LLF: 149.6045766187416
Optimization terminated successfully (Exit mode 0)
Current function value: 149.6045766187416
Iterations: 18
Function evaluations: 166
Gradient evaluations: 18
Iteration: 1, Func. Count: 11, Neg. LLF: 168.70761200354866
Iteration: 2, Func. Count: 23, Neg. LLF: 149.95719026005335
Iteration: 3, Func. Count: 33, Neg. LLF: 149.91656150132457
Iteration: 4, Func. Count: 43, Neg. LLF: 149.87227889068905
Iteration: 5, Func. Count: 53, Neg. LLF: 149.8689263530676
Iteration: 6, Func. Count: 63, Neg. LLF: 149.8604076325719
Iteration: 7, Func. Count: 73, Neg. LLF: 149.8480596965786
Iteration: 8, Func. Count: 83, Neg. LLF: 149.8371522014426
Iteration: 9, Func. Count: 93, Neg. LLF: 149.8146934942625
Iteration: 10, Func. Count: 103, Neg. LLF: 149.7728689828275
Iteration: 11, Func. Count: 113, Neg. LLF: 149.68608175002137
Iteration: 12, Func. Count: 123, Neg. LLF: 149.67389233728792
Iteration: 13, Func. Count: 133, Neg. LLF: 149.63308264210946
Iteration: 14, Func. Count: 143, Neg. LLF: 149.61736105981464
Iteration: 15, Func. Count: 153, Neg. LLF: 149.6087141260915
Iteration: 16, Func. Count: 163, Neg. LLF: 149.60552057935806
Iteration: 17, Func. Count: 173, Neg. LLF: 149.60458904507195
Iteration: 18, Func. Count: 183, Neg. LLF: 149.60457725966805
Iteration: 19, Func. Count: 192, Neg. LLF: 149.6045772864559
Optimization terminated successfully (Exit mode 0)
Current function value: 149.60457725966805
Iterations: 19
Function evaluations: 192
Gradient evaluations: 19
Iteration: 1, Func. Count: 8, Neg. LLF: 153.7031193402413
Iteration: 2, Func. Count: 16, Neg. LLF: 153.19203802906557
Iteration: 3, Func. Count: 24, Neg. LLF: 150.34015801698123
Iteration: 4, Func. Count: 31, Neg. LLF: 150.78040498488605
Iteration: 5, Func. Count: 39, Neg. LLF: 151.096426702064
Iteration: 6, Func. Count: 47, Neg. LLF: 150.0839493468723
Iteration: 7, Func. Count: 54, Neg. LLF: 149.84212243314738
Iteration: 8, Func. Count: 61, Neg. LLF: 149.68524158820097
Iteration: 9, Func. Count: 68, Neg. LLF: 149.6210469162995
Iteration: 10, Func. Count: 75, Neg. LLF: 149.60495168421193
Iteration: 11, Func. Count: 82, Neg. LLF: 149.6046037351304
Iteration: 12, Func. Count: 89, Neg. LLF: 149.6045765822985
Iteration: 13, Func. Count: 95, Neg. LLF: 149.60457656343002
Optimization terminated successfully (Exit mode 0)
Current function value: 149.6045765822985
Iterations: 13
Function evaluations: 95
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 152.31681886542535
Iteration: 2, Func. Count: 19, Neg. LLF: 152.06477760396106
Iteration: 3, Func. Count: 28, Neg. LLF: 149.87290536932497
Iteration: 4, Func. Count: 36, Neg. LLF: 149.86560564631952
Iteration: 5, Func. Count: 44, Neg. LLF: 149.85817997242523
Iteration: 6, Func. Count: 52, Neg. LLF: 149.8401827172319
Iteration: 7, Func. Count: 60, Neg. LLF: 149.79632116925288
Iteration: 8, Func. Count: 68, Neg. LLF: 149.71305129482633
Iteration: 9, Func. Count: 76, Neg. LLF: 149.65055296026466
Iteration: 10, Func. Count: 84, Neg. LLF: 149.6223899022655
Iteration: 11, Func. Count: 92, Neg. LLF: 149.61008243548451
Iteration: 12, Func. Count: 100, Neg. LLF: 149.60638308153543
Iteration: 13, Func. Count: 108, Neg. LLF: 149.60465801495394
Iteration: 14, Func. Count: 116, Neg. LLF: 149.60457871077725
Iteration: 15, Func. Count: 124, Neg. LLF: 149.60457681765877
Iteration: 16, Func. Count: 131, Neg. LLF: 149.60457682526118
Optimization terminated successfully (Exit mode 0)
Current function value: 149.60457681765877
Iterations: 16
Function evaluations: 131
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 154.0198491335759
Iteration: 2, Func. Count: 21, Neg. LLF: 151.99422218009514
Iteration: 3, Func. Count: 31, Neg. LLF: 149.90607556010562
Iteration: 4, Func. Count: 40, Neg. LLF: 149.8661984761461
Iteration: 5, Func. Count: 49, Neg. LLF: 149.8635673426667
Iteration: 6, Func. Count: 58, Neg. LLF: 149.8505066752228
Iteration: 7, Func. Count: 67, Neg. LLF: 149.79330160458866
Iteration: 8, Func. Count: 76, Neg. LLF: 149.6614556395996
Iteration: 9, Func. Count: 85, Neg. LLF: 149.6190073297187
Iteration: 10, Func. Count: 94, Neg. LLF: 149.60959648619726
Iteration: 11, Func. Count: 103, Neg. LLF: 149.60616153423882
Iteration: 12, Func. Count: 112, Neg. LLF: 149.60501555627212
Iteration: 13, Func. Count: 121, Neg. LLF: 149.60466331294305
Iteration: 14, Func. Count: 130, Neg. LLF: 149.6046197910712
Iteration: 15, Func. Count: 139, Neg. LLF: 149.60459386851008
Iteration: 16, Func. Count: 148, Neg. LLF: 149.60457955716674
Iteration: 17, Func. Count: 157, Neg. LLF: 149.60457675592144
Iteration: 18, Func. Count: 165, Neg. LLF: 149.60457676686127
Optimization terminated successfully (Exit mode 0)
Current function value: 149.60457675592144
Iterations: 18
Function evaluations: 165
Gradient evaluations: 18
Iteration: 1, Func. Count: 11, Neg. LLF: 151.13823684697778
Iteration: 2, Func. Count: 23, Neg. LLF: 151.9901719086578
Iteration: 3, Func. Count: 34, Neg. LLF: 149.94560858097574
Iteration: 4, Func. Count: 44, Neg. LLF: 149.87414824419437
Iteration: 5, Func. Count: 54, Neg. LLF: 149.8639647477511
Iteration: 6, Func. Count: 64, Neg. LLF: 149.85885638954252
Iteration: 7, Func. Count: 74, Neg. LLF: 149.85273480541912
Iteration: 8, Func. Count: 84, Neg. LLF: 149.8344106663526
Iteration: 9, Func. Count: 94, Neg. LLF: 149.79894011561043
Iteration: 10, Func. Count: 104, Neg. LLF: 149.72746501361814
Iteration: 11, Func. Count: 114, Neg. LLF: 149.63975317714343
Iteration: 12, Func. Count: 124, Neg. LLF: 149.61616805946264
Iteration: 13, Func. Count: 134, Neg. LLF: 149.60619907539524
Iteration: 14, Func. Count: 144, Neg. LLF: 149.60561731959095
Iteration: 15, Func. Count: 154, Neg. LLF: 149.6046887818996
Iteration: 16, Func. Count: 164, Neg. LLF: 149.60461075909444
Iteration: 17, Func. Count: 174, Neg. LLF: 149.60458644010134
Iteration: 18, Func. Count: 184, Neg. LLF: 149.60457914007864
Iteration: 19, Func. Count: 194, Neg. LLF: 149.6045767010976
Iteration: 20, Func. Count: 203, Neg. LLF: 149.60457672080037
Optimization terminated successfully (Exit mode 0)
Current function value: 149.6045767010976
Iterations: 20
Function evaluations: 203
Gradient evaluations: 20
Iteration: 1, Func. Count: 12, Neg. LLF: 152.29603851841102
Iteration: 2, Func. Count: 25, Neg. LLF: 152.1463954432758
Iteration: 3, Func. Count: 37, Neg. LLF: 149.95748558667958
Iteration: 4, Func. Count: 48, Neg. LLF: 149.91789212956317
Iteration: 5, Func. Count: 59, Neg. LLF: 149.89276399811703
Iteration: 6, Func. Count: 70, Neg. LLF: 149.8609210404325
Iteration: 7, Func. Count: 81, Neg. LLF: 149.85406565337755
Iteration: 8, Func. Count: 92, Neg. LLF: 149.84636451194905
Iteration: 9, Func. Count: 103, Neg. LLF: 149.83340167836914
Iteration: 10, Func. Count: 114, Neg. LLF: 149.8046860564089
Iteration: 11, Func. Count: 125, Neg. LLF: 149.7519885486777
Iteration: 12, Func. Count: 136, Neg. LLF: 149.6857386709341
Iteration: 13, Func. Count: 147, Neg. LLF: 149.67834600734267
Iteration: 14, Func. Count: 158, Neg. LLF: 149.64682603639682
Iteration: 15, Func. Count: 169, Neg. LLF: 149.6061622056259
Iteration: 16, Func. Count: 180, Neg. LLF: 149.60497736614786
Iteration: 17, Func. Count: 191, Neg. LLF: 149.60473252141594
Iteration: 18, Func. Count: 202, Neg. LLF: 149.6045766068241
Iteration: 19, Func. Count: 212, Neg. LLF: 149.6045766336177
Optimization terminated successfully (Exit mode 0)
Current function value: 149.6045766068241
Iterations: 19
Function evaluations: 212
Gradient evaluations: 19
Iteration: 1, Func. Count: 9, Neg. LLF: 154.25109286264012
Iteration: 2, Func. Count: 18, Neg. LLF: 152.21812715994037
Iteration: 3, Func. Count: 27, Neg. LLF: 150.38783289442017
Iteration: 4, Func. Count: 35, Neg. LLF: 151.07289545007168
Iteration: 5, Func. Count: 44, Neg. LLF: 150.5376132314856
Iteration: 6, Func. Count: 53, Neg. LLF: 150.0826380024874
Iteration: 7, Func. Count: 61, Neg. LLF: 149.9385786398781
Iteration: 8, Func. Count: 69, Neg. LLF: 149.7759240494155
Iteration: 9, Func. Count: 77, Neg. LLF: 149.65567555524063
Iteration: 10, Func. Count: 85, Neg. LLF: 149.6069851668268
Iteration: 11, Func. Count: 93, Neg. LLF: 149.60461799015295
Iteration: 12, Func. Count: 101, Neg. LLF: 149.60457697658362
Iteration: 13, Func. Count: 108, Neg. LLF: 149.60457700154979
Optimization terminated successfully (Exit mode 0)
Current function value: 149.60457697658362
Iterations: 13
Function evaluations: 108
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 152.22009959596153
Iteration: 2, Func. Count: 21, Neg. LLF: 152.0751204923389
Iteration: 3, Func. Count: 31, Neg. LLF: 149.87289223137822
Iteration: 4, Func. Count: 40, Neg. LLF: 149.86534664013453
Iteration: 5, Func. Count: 49, Neg. LLF: 149.8586561726273
Iteration: 6, Func. Count: 58, Neg. LLF: 149.84054617479885
Iteration: 7, Func. Count: 67, Neg. LLF: 149.79817565532636
Iteration: 8, Func. Count: 76, Neg. LLF: 149.7175106820064
Iteration: 9, Func. Count: 85, Neg. LLF: 149.65456419060308
Iteration: 10, Func. Count: 94, Neg. LLF: 149.62398539600238
Iteration: 11, Func. Count: 103, Neg. LLF: 149.60983157515756
Iteration: 12, Func. Count: 112, Neg. LLF: 149.6061870798529
Iteration: 13, Func. Count: 121, Neg. LLF: 149.60465160876572
Iteration: 14, Func. Count: 130, Neg. LLF: 149.60457966313695
Iteration: 15, Func. Count: 139, Neg. LLF: 149.60457701825413
Iteration: 16, Func. Count: 147, Neg. LLF: 149.6045770259075
Optimization terminated successfully (Exit mode 0)
Current function value: 149.60457701825413
Iterations: 16
Function evaluations: 147
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 156.02063035278178
Iteration: 2, Func. Count: 23, Neg. LLF: 151.99834704405006
Iteration: 3, Func. Count: 34, Neg. LLF: 149.90587068449045
Iteration: 4, Func. Count: 44, Neg. LLF: 149.866155281956
Iteration: 5, Func. Count: 54, Neg. LLF: 149.8634249692878
Iteration: 6, Func. Count: 64, Neg. LLF: 149.85035032713697
Iteration: 7, Func. Count: 74, Neg. LLF: 149.79425612694533
Iteration: 8, Func. Count: 84, Neg. LLF: 149.68181475400087
Iteration: 9, Func. Count: 94, Neg. LLF: 149.62607682745116
Iteration: 10, Func. Count: 104, Neg. LLF: 149.6128717575668
Iteration: 11, Func. Count: 114, Neg. LLF: 149.60691628955016
Iteration: 12, Func. Count: 124, Neg. LLF: 149.60543896227102
Iteration: 13, Func. Count: 134, Neg. LLF: 149.60472648392076
Iteration: 14, Func. Count: 144, Neg. LLF: 149.6046524756074
Iteration: 15, Func. Count: 154, Neg. LLF: 149.60460437153634
Iteration: 16, Func. Count: 164, Neg. LLF: 149.60458141181775
Iteration: 17, Func. Count: 174, Neg. LLF: 149.60457683741538
Iteration: 18, Func. Count: 183, Neg. LLF: 149.6045768483544
Optimization terminated successfully (Exit mode 0)
Current function value: 149.60457683741538
Iterations: 18
Function evaluations: 183
Gradient evaluations: 18
Iteration: 1, Func. Count: 12, Neg. LLF: 153.11662198574945
Iteration: 2, Func. Count: 25, Neg. LLF: 151.986020449369
Iteration: 3, Func. Count: 37, Neg. LLF: 149.9453242144443
Iteration: 4, Func. Count: 48, Neg. LLF: 149.8744341756683
Iteration: 5, Func. Count: 59, Neg. LLF: 149.86485723045126
Iteration: 6, Func. Count: 70, Neg. LLF: 149.8594285475304
Iteration: 7, Func. Count: 81, Neg. LLF: 149.85283330710251
Iteration: 8, Func. Count: 92, Neg. LLF: 149.83773586503105
Iteration: 9, Func. Count: 103, Neg. LLF: 149.80552623235272
Iteration: 10, Func. Count: 114, Neg. LLF: 149.73717813487488
Iteration: 11, Func. Count: 125, Neg. LLF: 149.6397778296694
Iteration: 12, Func. Count: 136, Neg. LLF: 149.61370977145341
Iteration: 13, Func. Count: 147, Neg. LLF: 149.6059051829802
Iteration: 14, Func. Count: 158, Neg. LLF: 149.6051853589459
Iteration: 15, Func. Count: 169, Neg. LLF: 149.60461752775456
Iteration: 16, Func. Count: 180, Neg. LLF: 149.60459971052995
Iteration: 17, Func. Count: 191, Neg. LLF: 149.60458417817935
Iteration: 18, Func. Count: 202, Neg. LLF: 149.6045780675483
Iteration: 19, Func. Count: 213, Neg. LLF: 149.60457664652435
Iteration: 20, Func. Count: 223, Neg. LLF: 149.60457666623162
Optimization terminated successfully (Exit mode 0)
Current function value: 149.60457664652435
Iterations: 20
Function evaluations: 223
Gradient evaluations: 20
Iteration: 1, Func. Count: 13, Neg. LLF: 151.1783479365437
Iteration: 2, Func. Count: 26, Neg. LLF: 152.44232344460875
Iteration: 3, Func. Count: 40, Neg. LLF: 149.95725351651893
Iteration: 4, Func. Count: 52, Neg. LLF: 149.9006624432236
Iteration: 5, Func. Count: 64, Neg. LLF: 149.87891565457025
Iteration: 6, Func. Count: 76, Neg. LLF: 149.85788028913402
Iteration: 7, Func. Count: 88, Neg. LLF: 149.85305138036958
Iteration: 8, Func. Count: 100, Neg. LLF: 149.84070431872948
Iteration: 9, Func. Count: 112, Neg. LLF: 149.826295570336
Iteration: 10, Func. Count: 124, Neg. LLF: 149.78672702394704
Iteration: 11, Func. Count: 136, Neg. LLF: 149.71287919167455
Iteration: 12, Func. Count: 148, Neg. LLF: 149.66081754817134
Iteration: 13, Func. Count: 160, Neg. LLF: 149.61676220407273
Iteration: 14, Func. Count: 172, Neg. LLF: 149.60843527548317
Iteration: 15, Func. Count: 184, Neg. LLF: 149.60625998867397
Iteration: 16, Func. Count: 196, Neg. LLF: 149.60505340433605
Iteration: 17, Func. Count: 208, Neg. LLF: 149.60464944635814
Iteration: 18, Func. Count: 220, Neg. LLF: 149.60457895911557
Iteration: 19, Func. Count: 232, Neg. LLF: 149.6045766270716
Iteration: 20, Func. Count: 243, Neg. LLF: 149.60457665387827
Optimization terminated successfully (Exit mode 0)
Current function value: 149.6045766270716
Iterations: 20
Function evaluations: 243
Gradient evaluations: 20
Iteration: 1, Func. Count: 10, Neg. LLF: 155.08344951611053
Iteration: 2, Func. Count: 20, Neg. LLF: 151.8760859498643
Iteration: 3, Func. Count: 30, Neg. LLF: 150.44644345511335
Iteration: 4, Func. Count: 39, Neg. LLF: 151.41661870475988
Iteration: 5, Func. Count: 49, Neg. LLF: 150.78514428817275
Iteration: 6, Func. Count: 59, Neg. LLF: 150.0859553733124
Iteration: 7, Func. Count: 68, Neg. LLF: 149.96298955176923
Iteration: 8, Func. Count: 77, Neg. LLF: 149.76121594088193
Iteration: 9, Func. Count: 86, Neg. LLF: 149.67181953957478
Iteration: 10, Func. Count: 95, Neg. LLF: 149.60646328045792
Iteration: 11, Func. Count: 104, Neg. LLF: 149.6046176695097
Iteration: 12, Func. Count: 113, Neg. LLF: 149.6045779063581
Iteration: 13, Func. Count: 122, Neg. LLF: 149.60457681917364
Iteration: 14, Func. Count: 130, Neg. LLF: 149.60457686493504
Optimization terminated successfully (Exit mode 0)
Current function value: 149.60457681917364
Iterations: 14
Function evaluations: 130
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 152.17271733191578
Iteration: 2, Func. Count: 23, Neg. LLF: 152.08122609195502
Iteration: 3, Func. Count: 34, Neg. LLF: 149.87286744938575
Iteration: 4, Func. Count: 44, Neg. LLF: 149.86522729770437
Iteration: 5, Func. Count: 54, Neg. LLF: 149.859033751136
Iteration: 6, Func. Count: 64, Neg. LLF: 149.83992864789826
Iteration: 7, Func. Count: 74, Neg. LLF: 149.79850739812557
Iteration: 8, Func. Count: 84, Neg. LLF: 149.71928551903787
Iteration: 9, Func. Count: 94, Neg. LLF: 149.6568334978907
Iteration: 10, Func. Count: 104, Neg. LLF: 149.6241264818245
Iteration: 11, Func. Count: 114, Neg. LLF: 149.60944334831282
Iteration: 12, Func. Count: 124, Neg. LLF: 149.6060443523407
Iteration: 13, Func. Count: 134, Neg. LLF: 149.60468505011858
Iteration: 14, Func. Count: 144, Neg. LLF: 149.60458822351936
Iteration: 15, Func. Count: 154, Neg. LLF: 149.6045783468498
Iteration: 16, Func. Count: 164, Neg. LLF: 149.60457671326685
Iteration: 17, Func. Count: 173, Neg. LLF: 149.6045767208735
Optimization terminated successfully (Exit mode 0)
Current function value: 149.60457671326685
Iterations: 17
Function evaluations: 173
Gradient evaluations: 17
Iteration: 1, Func. Count: 12, Neg. LLF: 155.89040624157604
Iteration: 2, Func. Count: 25, Neg. LLF: 152.00342398696512
Iteration: 3, Func. Count: 37, Neg. LLF: 149.90624002646314
Iteration: 4, Func. Count: 48, Neg. LLF: 149.86588637564924
Iteration: 5, Func. Count: 59, Neg. LLF: 149.86318098853056
Iteration: 6, Func. Count: 70, Neg. LLF: 149.85007858088608
Iteration: 7, Func. Count: 81, Neg. LLF: 149.79218854853832
Iteration: 8, Func. Count: 92, Neg. LLF: 149.6418835729105
Iteration: 9, Func. Count: 103, Neg. LLF: 149.61602531379083
Iteration: 10, Func. Count: 114, Neg. LLF: 149.6088797228785
Iteration: 11, Func. Count: 125, Neg. LLF: 149.6062895735043
Iteration: 12, Func. Count: 136, Neg. LLF: 149.60491682599334
Iteration: 13, Func. Count: 147, Neg. LLF: 149.60468430044452
Iteration: 14, Func. Count: 158, Neg. LLF: 149.60462800848802
Iteration: 15, Func. Count: 169, Neg. LLF: 149.60459315031017
Iteration: 16, Func. Count: 180, Neg. LLF: 149.6045785004365
Iteration: 17, Func. Count: 191, Neg. LLF: 149.60457665547733
Iteration: 18, Func. Count: 201, Neg. LLF: 149.60457666642688
Optimization terminated successfully (Exit mode 0)
Current function value: 149.60457665547733
Iterations: 18
Function evaluations: 201
Gradient evaluations: 18
Iteration: 1, Func. Count: 13, Neg. LLF: 155.87998699896244
Iteration: 2, Func. Count: 27, Neg. LLF: 151.98603782186484
Iteration: 3, Func. Count: 40, Neg. LLF: 149.94608553191532
Iteration: 4, Func. Count: 52, Neg. LLF: 149.8763756146873
Iteration: 5, Func. Count: 64, Neg. LLF: 149.86483319742536
Iteration: 6, Func. Count: 76, Neg. LLF: 149.8585410871441
Iteration: 7, Func. Count: 88, Neg. LLF: 149.85296882332975
Iteration: 8, Func. Count: 100, Neg. LLF: 149.8364437415097
Iteration: 9, Func. Count: 112, Neg. LLF: 149.80403889085161
Iteration: 10, Func. Count: 124, Neg. LLF: 149.73314120646464
Iteration: 11, Func. Count: 136, Neg. LLF: 149.64028093108857
Iteration: 12, Func. Count: 148, Neg. LLF: 149.61411298420703
Iteration: 13, Func. Count: 160, Neg. LLF: 149.60664684700598
Iteration: 14, Func. Count: 172, Neg. LLF: 149.60567789074153
Iteration: 15, Func. Count: 184, Neg. LLF: 149.60470809587449
Iteration: 16, Func. Count: 196, Neg. LLF: 149.60463605344378
Iteration: 17, Func. Count: 208, Neg. LLF: 149.6045925218606
Iteration: 18, Func. Count: 220, Neg. LLF: 149.60457890209508
Iteration: 19, Func. Count: 232, Neg. LLF: 149.60457666130972
Iteration: 20, Func. Count: 243, Neg. LLF: 149.60457668102063
Optimization terminated successfully (Exit mode 0)
Current function value: 149.60457666130972
Iterations: 20
Function evaluations: 243
Gradient evaluations: 20
Iteration: 1, Func. Count: 14, Neg. LLF: 150.38187784255612
Iteration: 2, Func. Count: 28, Neg. LLF: 152.53085976009973
Iteration: 3, Func. Count: 43, Neg. LLF: 149.95805089399977
Iteration: 4, Func. Count: 56, Neg. LLF: 149.9176308379709
Iteration: 5, Func. Count: 69, Neg. LLF: 149.87802191072436
Iteration: 6, Func. Count: 82, Neg. LLF: 149.86504678140548
Iteration: 7, Func. Count: 95, Neg. LLF: 149.84925082657685
Iteration: 8, Func. Count: 108, Neg. LLF: 149.843405905827
Iteration: 9, Func. Count: 121, Neg. LLF: 149.826368444804
Iteration: 10, Func. Count: 134, Neg. LLF: 149.79898649418135
Iteration: 11, Func. Count: 147, Neg. LLF: 149.74549956780598
Iteration: 12, Func. Count: 160, Neg. LLF: 149.67851756496097
Iteration: 13, Func. Count: 173, Neg. LLF: 149.6707610712633
Iteration: 14, Func. Count: 186, Neg. LLF: 149.63959308617848
Iteration: 15, Func. Count: 199, Neg. LLF: 149.6057694472475
Iteration: 16, Func. Count: 212, Neg. LLF: 149.60498837952508
Iteration: 17, Func. Count: 225, Neg. LLF: 149.60475259997241
Iteration: 18, Func. Count: 238, Neg. LLF: 149.60457691723082
Iteration: 19, Func. Count: 251, Neg. LLF: 149.60458005122334
Optimization terminated successfully (Exit mode 0)
Current function value: 149.6045766483664
Iterations: 20
Function evaluations: 252
Gradient evaluations: 19
Iteration: 1, Func. Count: 7, Neg. LLF: 151.94380064723302
Iteration: 2, Func. Count: 13, Neg. LLF: 152.33591232386908
Iteration: 3, Func. Count: 20, Neg. LLF: 150.95369096909135
Iteration: 4, Func. Count: 26, Neg. LLF: 153.65459335611558
Iteration: 5, Func. Count: 33, Neg. LLF: 150.6047001370672
Iteration: 6, Func. Count: 39, Neg. LLF: 150.47746420133288
Iteration: 7, Func. Count: 45, Neg. LLF: 150.40127128231592
Iteration: 8, Func. Count: 51, Neg. LLF: 150.18150455532293
Iteration: 9, Func. Count: 57, Neg. LLF: 150.08306954992293
Iteration: 10, Func. Count: 63, Neg. LLF: 150.0195397000266
Iteration: 11, Func. Count: 69, Neg. LLF: 149.97816907931352
Iteration: 12, Func. Count: 75, Neg. LLF: 149.97786046125162
Iteration: 13, Func. Count: 81, Neg. LLF: 149.97752914088193
Iteration: 14, Func. Count: 87, Neg. LLF: 149.97752509722042
Iteration: 15, Func. Count: 93, Neg. LLF: 149.9775245271307
Optimization terminated successfully (Exit mode 0)
Current function value: 149.9775245271307
Iterations: 15
Function evaluations: 93
Gradient evaluations: 15
Iteration: 1, Func. Count: 8, Neg. LLF: 156.70396270580798
Iteration: 2, Func. Count: 17, Neg. LLF: 149.97658322046084
Iteration: 3, Func. Count: 24, Neg. LLF: 149.97661706710028
Iteration: 4, Func. Count: 32, Neg. LLF: 149.97652578093934
Iteration: 5, Func. Count: 39, Neg. LLF: 149.97652308771086
Iteration: 6, Func. Count: 45, Neg. LLF: 149.9765230878195
Optimization terminated successfully (Exit mode 0)
Current function value: 149.97652308771086
Iterations: 6
Function evaluations: 45
Gradient evaluations: 6
Iteration: 1, Func. Count: 9, Neg. LLF: 150.08492973167603
Iteration: 2, Func. Count: 18, Neg. LLF: 149.97926417128042
Iteration: 3, Func. Count: 26, Neg. LLF: 149.9792563545247
Iteration: 4, Func. Count: 35, Neg. LLF: 149.979152578514
Iteration: 5, Func. Count: 43, Neg. LLF: 149.97881409096337
Iteration: 6, Func. Count: 51, Neg. LLF: 149.97659665651716
Iteration: 7, Func. Count: 59, Neg. LLF: 149.97652365372883
Iteration: 8, Func. Count: 67, Neg. LLF: 149.97652289140004
Optimization terminated successfully (Exit mode 0)
Current function value: 149.97652289140004
Iterations: 8
Function evaluations: 67
Gradient evaluations: 8
Iteration: 1, Func. Count: 10, Neg. LLF: 150.78985128675546
Iteration: 2, Func. Count: 21, Neg. LLF: 149.97959771595964
Iteration: 3, Func. Count: 30, Neg. LLF: 149.9796030305452
Iteration: 4, Func. Count: 40, Neg. LLF: 149.9795731675765
Iteration: 5, Func. Count: 49, Neg. LLF: 149.97952886628968
Iteration: 6, Func. Count: 58, Neg. LLF: 149.97933505720454
Iteration: 7, Func. Count: 67, Neg. LLF: 149.97907095880691
Iteration: 8, Func. Count: 76, Neg. LLF: 149.97905251388167
Iteration: 9, Func. Count: 85, Neg. LLF: 149.97891237100632
Iteration: 10, Func. Count: 94, Neg. LLF: 149.97667823433275
Iteration: 11, Func. Count: 103, Neg. LLF: 149.97650636071506
Iteration: 12, Func. Count: 112, Neg. LLF: 149.97650478515158
Iteration: 13, Func. Count: 120, Neg. LLF: 149.97650478553035
Optimization terminated successfully (Exit mode 0)
Current function value: 149.97650478515158
Iterations: 13
Function evaluations: 120
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 157.81549736510448
Iteration: 2, Func. Count: 23, Neg. LLF: 149.98056568682583
Iteration: 3, Func. Count: 33, Neg. LLF: 149.98056698245466
Iteration: 4, Func. Count: 44, Neg. LLF: 149.98050074815853
Iteration: 5, Func. Count: 54, Neg. LLF: 149.98033599388367
Iteration: 6, Func. Count: 64, Neg. LLF: 149.97946185841985
Iteration: 7, Func. Count: 74, Neg. LLF: 149.979454976444
Iteration: 8, Func. Count: 84, Neg. LLF: 149.9794366539772
Iteration: 9, Func. Count: 94, Neg. LLF: 149.97939189344527
Iteration: 10, Func. Count: 104, Neg. LLF: 149.9793084888417
Iteration: 11, Func. Count: 114, Neg. LLF: 149.97922211547032
Iteration: 12, Func. Count: 124, Neg. LLF: 149.97916586031917
Iteration: 13, Func. Count: 134, Neg. LLF: 149.97915417668847
Iteration: 14, Func. Count: 144, Neg. LLF: 149.97911041796723
Iteration: 15, Func. Count: 154, Neg. LLF: 149.97882422114927
Iteration: 16, Func. Count: 164, Neg. LLF: 149.9783912324977
Iteration: 17, Func. Count: 174, Neg. LLF: 149.9781085409277
Iteration: 18, Func. Count: 184, Neg. LLF: 149.9776150080608
Iteration: 19, Func. Count: 194, Neg. LLF: 149.97693846546358
Iteration: 20, Func. Count: 204, Neg. LLF: 149.9766578779856
Iteration: 21, Func. Count: 214, Neg. LLF: 149.97656728370865
Iteration: 22, Func. Count: 224, Neg. LLF: 149.97651371835357
Iteration: 23, Func. Count: 234, Neg. LLF: 149.9765236086959
Optimization terminated successfully (Exit mode 0)
Current function value: 149.97651276695828
Iterations: 23
Function evaluations: 235
Gradient evaluations: 23
Iteration: 1, Func. Count: 8, Neg. LLF: 152.24604458644478
Iteration: 2, Func. Count: 16, Neg. LLF: 151.39157867768884
Iteration: 3, Func. Count: 24, Neg. LLF: 151.1832100115061
Iteration: 4, Func. Count: 32, Neg. LLF: 150.21201337257202
Iteration: 5, Func. Count: 39, Neg. LLF: 150.0051273577052
Iteration: 6, Func. Count: 46, Neg. LLF: 149.84579684809515
Iteration: 7, Func. Count: 53, Neg. LLF: 149.68055770075415
Iteration: 8, Func. Count: 60, Neg. LLF: 149.61999305897191
Iteration: 9, Func. Count: 67, Neg. LLF: 149.60489864189208
Iteration: 10, Func. Count: 74, Neg. LLF: 149.60463528743432
Iteration: 11, Func. Count: 81, Neg. LLF: 149.60457721731547
Iteration: 12, Func. Count: 87, Neg. LLF: 149.6045772172997
Optimization terminated successfully (Exit mode 0)
Current function value: 149.60457721731547
Iterations: 12
Function evaluations: 87
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 166.79316608937273
Iteration: 2, Func. Count: 19, Neg. LLF: 149.87448070989046
Iteration: 3, Func. Count: 27, Neg. LLF: 149.8666582707939
Iteration: 4, Func. Count: 35, Neg. LLF: 149.86699885096473
Iteration: 5, Func. Count: 44, Neg. LLF: 149.8552126913101
Iteration: 6, Func. Count: 52, Neg. LLF: 149.8095494079818
Iteration: 7, Func. Count: 60, Neg. LLF: 149.63930910361023
Iteration: 8, Func. Count: 68, Neg. LLF: 149.61325750170565
Iteration: 9, Func. Count: 76, Neg. LLF: 149.60516363865017
Iteration: 10, Func. Count: 84, Neg. LLF: 149.60465297142116
Iteration: 11, Func. Count: 92, Neg. LLF: 149.60460032679563
Iteration: 12, Func. Count: 100, Neg. LLF: 149.60458583809907
Iteration: 13, Func. Count: 108, Neg. LLF: 149.60457712455627
Iteration: 14, Func. Count: 115, Neg. LLF: 149.60457713223295
Optimization terminated successfully (Exit mode 0)
Current function value: 149.60457712455627
Iterations: 14
Function evaluations: 115
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 163.6452959560049
Iteration: 2, Func. Count: 21, Neg. LLF: 149.93200427496163
Iteration: 3, Func. Count: 30, Neg. LLF: 149.8766111987929
Iteration: 4, Func. Count: 39, Neg. LLF: 149.8767227939606
Iteration: 5, Func. Count: 49, Neg. LLF: 149.85989335893063
Iteration: 6, Func. Count: 58, Neg. LLF: 149.8524396959376
Iteration: 7, Func. Count: 67, Neg. LLF: 149.84090461009833
Iteration: 8, Func. Count: 76, Neg. LLF: 149.80069460287515
Iteration: 9, Func. Count: 85, Neg. LLF: 149.7144210920997
Iteration: 10, Func. Count: 94, Neg. LLF: 149.63902154471904
Iteration: 11, Func. Count: 103, Neg. LLF: 149.62135433915705
Iteration: 12, Func. Count: 112, Neg. LLF: 149.60686357812642
Iteration: 13, Func. Count: 121, Neg. LLF: 149.60477876623534
Iteration: 14, Func. Count: 130, Neg. LLF: 149.604583642641
Iteration: 15, Func. Count: 139, Neg. LLF: 149.60457936185026
Iteration: 16, Func. Count: 148, Neg. LLF: 149.60457752509447
Iteration: 17, Func. Count: 157, Neg. LLF: 149.60457667929413
Optimization terminated successfully (Exit mode 0)
Current function value: 149.60457667929413
Iterations: 17
Function evaluations: 157
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 168.8861641690677
Iteration: 2, Func. Count: 23, Neg. LLF: 149.9464948735691
Iteration: 3, Func. Count: 33, Neg. LLF: 149.88410856271463
Iteration: 4, Func. Count: 43, Neg. LLF: 149.89310052881115
Iteration: 5, Func. Count: 54, Neg. LLF: 149.86242460391952
Iteration: 6, Func. Count: 64, Neg. LLF: 149.8514313766719
Iteration: 7, Func. Count: 74, Neg. LLF: 149.84590938111958
Iteration: 8, Func. Count: 84, Neg. LLF: 149.81276579347826
Iteration: 9, Func. Count: 94, Neg. LLF: 149.75544534224292
Iteration: 10, Func. Count: 104, Neg. LLF: 149.64902086961564
Iteration: 11, Func. Count: 114, Neg. LLF: 149.61819523145192
Iteration: 12, Func. Count: 124, Neg. LLF: 149.60661415250624
Iteration: 13, Func. Count: 134, Neg. LLF: 149.60546554449587
Iteration: 14, Func. Count: 144, Neg. LLF: 149.6047045728592
Iteration: 15, Func. Count: 154, Neg. LLF: 149.60463050756871
Iteration: 16, Func. Count: 164, Neg. LLF: 149.60458277440836
Iteration: 17, Func. Count: 174, Neg. LLF: 149.60457712633803
Iteration: 18, Func. Count: 183, Neg. LLF: 149.60457714600454
Optimization terminated successfully (Exit mode 0)
Current function value: 149.60457712633803
Iterations: 18
Function evaluations: 183
Gradient evaluations: 18
Iteration: 1, Func. Count: 12, Neg. LLF: 169.38796895601382
Iteration: 2, Func. Count: 25, Neg. LLF: 149.96243436336349
Iteration: 3, Func. Count: 36, Neg. LLF: 149.92651984653912
Iteration: 4, Func. Count: 47, Neg. LLF: 149.8753833160612
Iteration: 5, Func. Count: 58, Neg. LLF: 149.88222457203983
Iteration: 6, Func. Count: 70, Neg. LLF: 149.86161386694056
Iteration: 7, Func. Count: 81, Neg. LLF: 149.84776402636692
Iteration: 8, Func. Count: 92, Neg. LLF: 149.84022214605696
Iteration: 9, Func. Count: 103, Neg. LLF: 149.80663426784628
Iteration: 10, Func. Count: 114, Neg. LLF: 149.74873125018888
Iteration: 11, Func. Count: 125, Neg. LLF: 149.6530210160348
Iteration: 12, Func. Count: 136, Neg. LLF: 149.63872553932748
Iteration: 13, Func. Count: 147, Neg. LLF: 149.61794506608783
Iteration: 14, Func. Count: 158, Neg. LLF: 149.61156353595592
Iteration: 15, Func. Count: 169, Neg. LLF: 149.60562124925704
Iteration: 16, Func. Count: 180, Neg. LLF: 149.60474045564592
Iteration: 17, Func. Count: 191, Neg. LLF: 149.60458851828494
Iteration: 18, Func. Count: 202, Neg. LLF: 149.60458042542314
Iteration: 19, Func. Count: 213, Neg. LLF: 149.60457888668307
Iteration: 20, Func. Count: 224, Neg. LLF: 149.60457659415954
Iteration: 21, Func. Count: 234, Neg. LLF: 149.60457662097835
Optimization terminated successfully (Exit mode 0)
Current function value: 149.60457659415954
Iterations: 22
Function evaluations: 234
Gradient evaluations: 21
Iteration: 1, Func. Count: 9, Neg. LLF: 152.28445988912455
Iteration: 2, Func. Count: 18, Neg. LLF: 152.96138877772393
Iteration: 3, Func. Count: 27, Neg. LLF: 150.46120959369676
Iteration: 4, Func. Count: 35, Neg. LLF: 150.23342161579575
Iteration: 5, Func. Count: 43, Neg. LLF: 150.68485617074282
Iteration: 6, Func. Count: 53, Neg. LLF: 150.0424460059129
Iteration: 7, Func. Count: 61, Neg. LLF: 149.76563005909608
Iteration: 8, Func. Count: 69, Neg. LLF: 149.68053116270406
Iteration: 9, Func. Count: 77, Neg. LLF: 149.60965672613327
Iteration: 10, Func. Count: 85, Neg. LLF: 149.6054411339248
Iteration: 11, Func. Count: 93, Neg. LLF: 149.60459576028438
Iteration: 12, Func. Count: 101, Neg. LLF: 149.60457802566333
Iteration: 13, Func. Count: 109, Neg. LLF: 149.60457660029752
Iteration: 14, Func. Count: 116, Neg. LLF: 149.60457661916263
Optimization terminated successfully (Exit mode 0)
Current function value: 149.60457660029752
Iterations: 14
Function evaluations: 116
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 152.35157428028873
Iteration: 2, Func. Count: 21, Neg. LLF: 152.0707605516339
Iteration: 3, Func. Count: 31, Neg. LLF: 149.87253428618618
Iteration: 4, Func. Count: 40, Neg. LLF: 149.86572757538494
Iteration: 5, Func. Count: 49, Neg. LLF: 149.85882956949527
Iteration: 6, Func. Count: 58, Neg. LLF: 149.83867941337505
Iteration: 7, Func. Count: 67, Neg. LLF: 149.7935495556274
Iteration: 8, Func. Count: 76, Neg. LLF: 149.7076697650716
Iteration: 9, Func. Count: 85, Neg. LLF: 149.65042631460292
Iteration: 10, Func. Count: 94, Neg. LLF: 149.62149291774188
Iteration: 11, Func. Count: 103, Neg. LLF: 149.61040118258344
Iteration: 12, Func. Count: 112, Neg. LLF: 149.6063070924354
Iteration: 13, Func. Count: 121, Neg. LLF: 149.60466762439864
Iteration: 14, Func. Count: 130, Neg. LLF: 149.60457830177077
Iteration: 15, Func. Count: 139, Neg. LLF: 149.60457661490065
Iteration: 16, Func. Count: 147, Neg. LLF: 149.6045766225303
Optimization terminated successfully (Exit mode 0)
Current function value: 149.60457661490065
Iterations: 16
Function evaluations: 147
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 156.32387061202132
Iteration: 2, Func. Count: 23, Neg. LLF: 151.9982019880262
Iteration: 3, Func. Count: 34, Neg. LLF: 149.91173916776933
Iteration: 4, Func. Count: 44, Neg. LLF: 149.86540549732828
Iteration: 5, Func. Count: 54, Neg. LLF: 149.86300275686844
Iteration: 6, Func. Count: 64, Neg. LLF: 149.85011310342176
Iteration: 7, Func. Count: 74, Neg. LLF: 149.7900524691183
Iteration: 8, Func. Count: 84, Neg. LLF: 149.6231465989459
Iteration: 9, Func. Count: 94, Neg. LLF: 149.61460555570778
Iteration: 10, Func. Count: 104, Neg. LLF: 149.60585797414834
Iteration: 11, Func. Count: 114, Neg. LLF: 149.60502710258075
Iteration: 12, Func. Count: 124, Neg. LLF: 149.60460568076897
Iteration: 13, Func. Count: 134, Neg. LLF: 149.60459514546463
Iteration: 14, Func. Count: 144, Neg. LLF: 149.60457823119484
Iteration: 15, Func. Count: 154, Neg. LLF: 149.60457706415775
Iteration: 16, Func. Count: 163, Neg. LLF: 149.60457707504358
Optimization terminated successfully (Exit mode 0)
Current function value: 149.60457706415775
Iterations: 16
Function evaluations: 163
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 152.56421514528694
Iteration: 2, Func. Count: 25, Neg. LLF: 151.98882739101253
Iteration: 3, Func. Count: 37, Neg. LLF: 149.94874833962686
Iteration: 4, Func. Count: 48, Neg. LLF: 149.8698910500405
Iteration: 5, Func. Count: 59, Neg. LLF: 149.86283377150107
Iteration: 6, Func. Count: 70, Neg. LLF: 149.85732109904353
Iteration: 7, Func. Count: 81, Neg. LLF: 149.8500771393963
Iteration: 8, Func. Count: 92, Neg. LLF: 149.8281289922466
Iteration: 9, Func. Count: 103, Neg. LLF: 149.7870098559287
Iteration: 10, Func. Count: 114, Neg. LLF: 149.69807619000133
Iteration: 11, Func. Count: 125, Neg. LLF: 149.64820819212028
Iteration: 12, Func. Count: 136, Neg. LLF: 149.6148150584933
Iteration: 13, Func. Count: 147, Neg. LLF: 149.6098847758626
Iteration: 14, Func. Count: 158, Neg. LLF: 149.60679464993171
Iteration: 15, Func. Count: 169, Neg. LLF: 149.6053073784088
Iteration: 16, Func. Count: 180, Neg. LLF: 149.60478643395678
Iteration: 17, Func. Count: 191, Neg. LLF: 149.60462444804847
Iteration: 18, Func. Count: 202, Neg. LLF: 149.6045829010656
Iteration: 19, Func. Count: 213, Neg. LLF: 149.60457688276105
Iteration: 20, Func. Count: 223, Neg. LLF: 149.60457690244587
Optimization terminated successfully (Exit mode 0)
Current function value: 149.60457688276105
Iterations: 20
Function evaluations: 223
Gradient evaluations: 20
Iteration: 1, Func. Count: 13, Neg. LLF: 151.25609741624254
Iteration: 2, Func. Count: 26, Neg. LLF: 152.31073418749313
Iteration: 3, Func. Count: 40, Neg. LLF: 149.95883073871804
Iteration: 4, Func. Count: 52, Neg. LLF: 149.91886536425906
Iteration: 5, Func. Count: 64, Neg. LLF: 149.8860526686021
Iteration: 6, Func. Count: 76, Neg. LLF: 149.86487077461064
Iteration: 7, Func. Count: 88, Neg. LLF: 149.8525016342664
Iteration: 8, Func. Count: 100, Neg. LLF: 149.84810088028317
Iteration: 9, Func. Count: 112, Neg. LLF: 149.82264443391108
Iteration: 10, Func. Count: 124, Neg. LLF: 149.7851813005316
Iteration: 11, Func. Count: 136, Neg. LLF: 149.70807961966514
Iteration: 12, Func. Count: 148, Neg. LLF: 149.67183636572886
Iteration: 13, Func. Count: 160, Neg. LLF: 149.61350733637866
Iteration: 14, Func. Count: 172, Neg. LLF: 149.60849942507443
Iteration: 15, Func. Count: 184, Neg. LLF: 149.60662828175654
Iteration: 16, Func. Count: 196, Neg. LLF: 149.6053423422204
Iteration: 17, Func. Count: 208, Neg. LLF: 149.6047031869589
Iteration: 18, Func. Count: 220, Neg. LLF: 149.60458361239083
Iteration: 19, Func. Count: 232, Neg. LLF: 149.60457687310105
Iteration: 20, Func. Count: 243, Neg. LLF: 149.60457689994556
Optimization terminated successfully (Exit mode 0)
Current function value: 149.60457687310105
Iterations: 20
Function evaluations: 243
Gradient evaluations: 20
Iteration: 1, Func. Count: 10, Neg. LLF: 152.27018196334745
Iteration: 2, Func. Count: 20, Neg. LLF: 155.84935358397018
Iteration: 3, Func. Count: 30, Neg. LLF: 150.4053033124597
Iteration: 4, Func. Count: 39, Neg. LLF: 150.71610569713138
Iteration: 5, Func. Count: 49, Neg. LLF: 153.67030608072093
Iteration: 6, Func. Count: 59, Neg. LLF: 150.1053672386647
Iteration: 7, Func. Count: 68, Neg. LLF: 149.87444103028724
Iteration: 8, Func. Count: 77, Neg. LLF: 149.72245320542783
Iteration: 9, Func. Count: 86, Neg. LLF: 149.64620293211706
Iteration: 10, Func. Count: 95, Neg. LLF: 149.60750409275946
Iteration: 11, Func. Count: 104, Neg. LLF: 149.60500607240215
Iteration: 12, Func. Count: 113, Neg. LLF: 149.60458142871354
Iteration: 13, Func. Count: 122, Neg. LLF: 149.60457692210107
Iteration: 14, Func. Count: 130, Neg. LLF: 149.60457689713292
Optimization terminated successfully (Exit mode 0)
Current function value: 149.60457692210107
Iterations: 14
Function evaluations: 130
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 152.24965314717454
Iteration: 2, Func. Count: 23, Neg. LLF: 152.08166395081696
Iteration: 3, Func. Count: 34, Neg. LLF: 149.87251099082377
Iteration: 4, Func. Count: 44, Neg. LLF: 149.8655091369621
Iteration: 5, Func. Count: 54, Neg. LLF: 149.85931354340372
Iteration: 6, Func. Count: 64, Neg. LLF: 149.83795966977348
Iteration: 7, Func. Count: 74, Neg. LLF: 149.7935461389981
Iteration: 8, Func. Count: 84, Neg. LLF: 149.70848689629085
Iteration: 9, Func. Count: 94, Neg. LLF: 149.6548341387459
Iteration: 10, Func. Count: 104, Neg. LLF: 149.62237300516526
Iteration: 11, Func. Count: 114, Neg. LLF: 149.61003715732244
Iteration: 12, Func. Count: 124, Neg. LLF: 149.6059729193419
Iteration: 13, Func. Count: 134, Neg. LLF: 149.6046695494202
Iteration: 14, Func. Count: 144, Neg. LLF: 149.60458348744544
Iteration: 15, Func. Count: 154, Neg. LLF: 149.60457764345264
Iteration: 16, Func. Count: 164, Neg. LLF: 149.60457666899612
Optimization terminated successfully (Exit mode 0)
Current function value: 149.60457666899612
Iterations: 16
Function evaluations: 164
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 156.1365274725663
Iteration: 2, Func. Count: 25, Neg. LLF: 152.00659557427784
Iteration: 3, Func. Count: 37, Neg. LLF: 149.91133953851485
Iteration: 4, Func. Count: 48, Neg. LLF: 149.86528646224747
Iteration: 5, Func. Count: 59, Neg. LLF: 149.86285769415025
Iteration: 6, Func. Count: 70, Neg. LLF: 149.85044454135158
Iteration: 7, Func. Count: 81, Neg. LLF: 149.79250678116432
Iteration: 8, Func. Count: 92, Neg. LLF: 149.62428105443792
Iteration: 9, Func. Count: 103, Neg. LLF: 149.6158617165412
Iteration: 10, Func. Count: 114, Neg. LLF: 149.60608150988168
Iteration: 11, Func. Count: 125, Neg. LLF: 149.60510186415385
Iteration: 12, Func. Count: 136, Neg. LLF: 149.60459525767138
Iteration: 13, Func. Count: 147, Neg. LLF: 149.60458911846487
Iteration: 14, Func. Count: 158, Neg. LLF: 149.60457674785349
Iteration: 15, Func. Count: 168, Neg. LLF: 149.60457675881196
Optimization terminated successfully (Exit mode 0)
Current function value: 149.60457674785349
Iterations: 15
Function evaluations: 168
Gradient evaluations: 15
Iteration: 1, Func. Count: 13, Neg. LLF: 155.71382773338692
Iteration: 2, Func. Count: 27, Neg. LLF: 151.99039181642658
Iteration: 3, Func. Count: 40, Neg. LLF: 149.94849007145967
Iteration: 4, Func. Count: 52, Neg. LLF: 149.86990399537427
Iteration: 5, Func. Count: 64, Neg. LLF: 149.8628271319492
Iteration: 6, Func. Count: 76, Neg. LLF: 149.85733171602345
Iteration: 7, Func. Count: 88, Neg. LLF: 149.85009261176677
Iteration: 8, Func. Count: 100, Neg. LLF: 149.82797082273692
Iteration: 9, Func. Count: 112, Neg. LLF: 149.78628783565145
Iteration: 10, Func. Count: 124, Neg. LLF: 149.69842972290573
Iteration: 11, Func. Count: 136, Neg. LLF: 149.63619900128396
Iteration: 12, Func. Count: 148, Neg. LLF: 149.6071126468447
Iteration: 13, Func. Count: 160, Neg. LLF: 149.60541418169922
Iteration: 14, Func. Count: 172, Neg. LLF: 149.60500345707996
Iteration: 15, Func. Count: 184, Neg. LLF: 149.60468627503192
Iteration: 16, Func. Count: 196, Neg. LLF: 149.60461764359843
Iteration: 17, Func. Count: 208, Neg. LLF: 149.60458860485687
Iteration: 18, Func. Count: 220, Neg. LLF: 149.60457877296363
Iteration: 19, Func. Count: 232, Neg. LLF: 149.60457671463138
Iteration: 20, Func. Count: 243, Neg. LLF: 149.60457673432865
Optimization terminated successfully (Exit mode 0)
Current function value: 149.60457671463138
Iterations: 20
Function evaluations: 243
Gradient evaluations: 20
Iteration: 1, Func. Count: 14, Neg. LLF: 150.33883281354855
Iteration: 2, Func. Count: 28, Neg. LLF: 152.4575665642364
Iteration: 3, Func. Count: 43, Neg. LLF: 149.96176730921457
Iteration: 4, Func. Count: 56, Neg. LLF: 149.92947976827062
Iteration: 5, Func. Count: 69, Neg. LLF: 149.90992664598286
Iteration: 6, Func. Count: 82, Neg. LLF: 149.8898568712842
Iteration: 7, Func. Count: 95, Neg. LLF: 149.85256121086056
Iteration: 8, Func. Count: 108, Neg. LLF: 149.84070000053208
Iteration: 9, Func. Count: 121, Neg. LLF: 149.82883817469101
Iteration: 10, Func. Count: 134, Neg. LLF: 149.82103572575716
Iteration: 11, Func. Count: 147, Neg. LLF: 149.8028265148947
Iteration: 12, Func. Count: 160, Neg. LLF: 149.76877023858282
Iteration: 13, Func. Count: 173, Neg. LLF: 149.69142297945945
Iteration: 14, Func. Count: 186, Neg. LLF: 149.65640588856178
Iteration: 15, Func. Count: 199, Neg. LLF: 149.6087557387845
Iteration: 16, Func. Count: 212, Neg. LLF: 149.60540021814825
Iteration: 17, Func. Count: 225, Neg. LLF: 149.60482876089267
Iteration: 18, Func. Count: 238, Neg. LLF: 149.60470863053422
Iteration: 19, Func. Count: 251, Neg. LLF: 149.60461199548388
Iteration: 20, Func. Count: 264, Neg. LLF: 149.6045819843734
Iteration: 21, Func. Count: 277, Neg. LLF: 149.60457684903145
Iteration: 22, Func. Count: 289, Neg. LLF: 149.60457687584713
Optimization terminated successfully (Exit mode 0)
Current function value: 149.60457684903145
Iterations: 22
Function evaluations: 289
Gradient evaluations: 22
Iteration: 1, Func. Count: 11, Neg. LLF: 152.35901355368227
Iteration: 2, Func. Count: 22, Neg. LLF: 155.03969071211068
Iteration: 3, Func. Count: 33, Neg. LLF: 150.39262756101166
Iteration: 4, Func. Count: 43, Neg. LLF: 150.7186158667761
Iteration: 5, Func. Count: 54, Neg. LLF: 155.16630772637149
Iteration: 6, Func. Count: 65, Neg. LLF: 150.09945541199747
Iteration: 7, Func. Count: 75, Neg. LLF: 149.87545050532097
Iteration: 8, Func. Count: 85, Neg. LLF: 149.72421023823628
Iteration: 9, Func. Count: 95, Neg. LLF: 149.64315363936095
Iteration: 10, Func. Count: 105, Neg. LLF: 149.60652450283618
Iteration: 11, Func. Count: 115, Neg. LLF: 149.60496489784603
Iteration: 12, Func. Count: 125, Neg. LLF: 149.60458515498402
Iteration: 13, Func. Count: 135, Neg. LLF: 149.60457758807905
Iteration: 14, Func. Count: 145, Neg. LLF: 149.60457658281348
Iteration: 15, Func. Count: 154, Neg. LLF: 149.60457662857664
Optimization terminated successfully (Exit mode 0)
Current function value: 149.60457658281348
Iterations: 15
Function evaluations: 154
Gradient evaluations: 15
Iteration: 1, Func. Count: 12, Neg. LLF: 152.19968564160857
Iteration: 2, Func. Count: 25, Neg. LLF: 152.08820842463408
Iteration: 3, Func. Count: 37, Neg. LLF: 149.87247929292843
Iteration: 4, Func. Count: 48, Neg. LLF: 149.865419576232
Iteration: 5, Func. Count: 59, Neg. LLF: 149.85966037308822
Iteration: 6, Func. Count: 70, Neg. LLF: 149.83631583825598
Iteration: 7, Func. Count: 81, Neg. LLF: 149.79222580102828
Iteration: 8, Func. Count: 92, Neg. LLF: 149.70711013067074
Iteration: 9, Func. Count: 103, Neg. LLF: 149.65746127775424
Iteration: 10, Func. Count: 114, Neg. LLF: 149.621496702176
Iteration: 11, Func. Count: 125, Neg. LLF: 149.60954044709226
Iteration: 12, Func. Count: 136, Neg. LLF: 149.60575762971015
Iteration: 13, Func. Count: 147, Neg. LLF: 149.60470106455548
Iteration: 14, Func. Count: 158, Neg. LLF: 149.60458994869668
Iteration: 15, Func. Count: 169, Neg. LLF: 149.6045780622455
Iteration: 16, Func. Count: 180, Neg. LLF: 149.6045766551181
Iteration: 17, Func. Count: 190, Neg. LLF: 149.6045766627225
Optimization terminated successfully (Exit mode 0)
Current function value: 149.6045766551181
Iterations: 17
Function evaluations: 190
Gradient evaluations: 17
Iteration: 1, Func. Count: 13, Neg. LLF: 156.00162086029331
Iteration: 2, Func. Count: 27, Neg. LLF: 152.01233766194838
Iteration: 3, Func. Count: 40, Neg. LLF: 149.91164610452836
Iteration: 4, Func. Count: 52, Neg. LLF: 149.86513814584916
Iteration: 5, Func. Count: 64, Neg. LLF: 149.86268690643016
Iteration: 6, Func. Count: 76, Neg. LLF: 149.85016951885885
Iteration: 7, Func. Count: 88, Neg. LLF: 149.7918231782703
Iteration: 8, Func. Count: 100, Neg. LLF: 149.62727599778975
Iteration: 9, Func. Count: 112, Neg. LLF: 149.6188718657888
Iteration: 10, Func. Count: 124, Neg. LLF: 149.60497585845417
Iteration: 11, Func. Count: 136, Neg. LLF: 149.60466973685908
Iteration: 12, Func. Count: 148, Neg. LLF: 149.60458787888768
Iteration: 13, Func. Count: 160, Neg. LLF: 149.6045840520584
Iteration: 14, Func. Count: 172, Neg. LLF: 149.60457668389415
Iteration: 15, Func. Count: 183, Neg. LLF: 149.60457669484958
Optimization terminated successfully (Exit mode 0)
Current function value: 149.60457668389415
Iterations: 15
Function evaluations: 183
Gradient evaluations: 15
Iteration: 1, Func. Count: 14, Neg. LLF: 158.31721519244442
Iteration: 2, Func. Count: 29, Neg. LLF: 151.9923902579324
Iteration: 3, Func. Count: 43, Neg. LLF: 149.94912611832507
Iteration: 4, Func. Count: 56, Neg. LLF: 149.8712777714978
Iteration: 5, Func. Count: 69, Neg. LLF: 149.86272335418454
Iteration: 6, Func. Count: 82, Neg. LLF: 149.85681159786876
Iteration: 7, Func. Count: 95, Neg. LLF: 149.8506619005981
Iteration: 8, Func. Count: 108, Neg. LLF: 149.82786926295591
Iteration: 9, Func. Count: 121, Neg. LLF: 149.78689981050044
Iteration: 10, Func. Count: 134, Neg. LLF: 149.69921598271574
Iteration: 11, Func. Count: 147, Neg. LLF: 149.6367053987262
Iteration: 12, Func. Count: 160, Neg. LLF: 149.60607244841432
Iteration: 13, Func. Count: 173, Neg. LLF: 149.60477556629084
Iteration: 14, Func. Count: 186, Neg. LLF: 149.6046372813429
Iteration: 15, Func. Count: 199, Neg. LLF: 149.6045831078026
Iteration: 16, Func. Count: 212, Neg. LLF: 149.60457938258097
Iteration: 17, Func. Count: 225, Neg. LLF: 149.6045780084423
Iteration: 18, Func. Count: 238, Neg. LLF: 149.6045769680902
Iteration: 19, Func. Count: 250, Neg. LLF: 149.6045769877613
Optimization terminated successfully (Exit mode 0)
Current function value: 149.6045769680902
Iterations: 19
Function evaluations: 250
Gradient evaluations: 19
Iteration: 1, Func. Count: 15, Neg. LLF: 150.14075848168804
Iteration: 2, Func. Count: 30, Neg. LLF: 152.5594628916455
Iteration: 3, Func. Count: 46, Neg. LLF: 149.9712081517659
Iteration: 4, Func. Count: 60, Neg. LLF: 149.93366147510537
Iteration: 5, Func. Count: 74, Neg. LLF: 149.86606745712564
Iteration: 6, Func. Count: 88, Neg. LLF: 149.86289998370873
Iteration: 7, Func. Count: 102, Neg. LLF: 149.84275511175156
Iteration: 8, Func. Count: 116, Neg. LLF: 149.8223308274527
Iteration: 9, Func. Count: 130, Neg. LLF: 149.77613964376485
Iteration: 10, Func. Count: 144, Neg. LLF: 149.69294339281288
Iteration: 11, Func. Count: 158, Neg. LLF: 149.6678087385215
Iteration: 12, Func. Count: 172, Neg. LLF: 149.61712827411915
Iteration: 13, Func. Count: 186, Neg. LLF: 149.60622460658962
Iteration: 14, Func. Count: 200, Neg. LLF: 149.6048761018416
Iteration: 15, Func. Count: 214, Neg. LLF: 149.60466643266275
Iteration: 16, Func. Count: 228, Neg. LLF: 149.60458201931183
Iteration: 17, Func. Count: 242, Neg. LLF: 149.6045767765393
Iteration: 18, Func. Count: 255, Neg. LLF: 149.6045768033901
Optimization terminated successfully (Exit mode 0)
Current function value: 149.6045767765393
Iterations: 18
Function evaluations: 255
Gradient evaluations: 18
Iteration: 1, Func. Count: 8, Neg. LLF: 151.782344247825
Iteration: 2, Func. Count: 15, Neg. LLF: 151.44796156651992
Iteration: 3, Func. Count: 22, Neg. LLF: 150.71283457445048
Iteration: 4, Func. Count: 29, Neg. LLF: 150.5903035408541
Iteration: 5, Func. Count: 36, Neg. LLF: 150.46444770210184
Iteration: 6, Func. Count: 43, Neg. LLF: 150.35050327351902
Iteration: 7, Func. Count: 50, Neg. LLF: 150.26403567293414
Iteration: 8, Func. Count: 57, Neg. LLF: 150.08904890827196
Iteration: 9, Func. Count: 64, Neg. LLF: 150.0340616419246
Iteration: 10, Func. Count: 71, Neg. LLF: 149.97822826901918
Iteration: 11, Func. Count: 78, Neg. LLF: 149.97782238313857
Iteration: 12, Func. Count: 85, Neg. LLF: 149.97752912882666
Iteration: 13, Func. Count: 92, Neg. LLF: 149.9775251137682
Iteration: 14, Func. Count: 99, Neg. LLF: 149.97752452592584
Optimization terminated successfully (Exit mode 0)
Current function value: 149.97752452592584
Iterations: 14
Function evaluations: 99
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 158.7530850144016
Iteration: 2, Func. Count: 19, Neg. LLF: 149.97656794940337
Iteration: 3, Func. Count: 27, Neg. LLF: 149.97658521528518
Iteration: 4, Func. Count: 36, Neg. LLF: 149.97652710544367
Iteration: 5, Func. Count: 44, Neg. LLF: 149.9765239000453
Iteration: 6, Func. Count: 51, Neg. LLF: 149.97652390014542
Optimization terminated successfully (Exit mode 0)
Current function value: 149.9765239000453
Iterations: 6
Function evaluations: 51
Gradient evaluations: 6
Iteration: 1, Func. Count: 10, Neg. LLF: 150.52717800954423
Iteration: 2, Func. Count: 20, Neg. LLF: 149.97920755123192
Iteration: 3, Func. Count: 29, Neg. LLF: 149.9792318520218
Iteration: 4, Func. Count: 39, Neg. LLF: 149.97909005306988
Iteration: 5, Func. Count: 48, Neg. LLF: 149.97883096517717
Iteration: 6, Func. Count: 57, Neg. LLF: 149.97716203862805
Iteration: 7, Func. Count: 66, Neg. LLF: 149.97652018852463
Iteration: 8, Func. Count: 75, Neg. LLF: 149.97651675380163
Iteration: 9, Func. Count: 84, Neg. LLF: 149.9765119589506
Iteration: 10, Func. Count: 92, Neg. LLF: 149.9765119591108
Optimization terminated successfully (Exit mode 0)
Current function value: 149.9765119589506
Iterations: 10
Function evaluations: 92
Gradient evaluations: 10
Iteration: 1, Func. Count: 11, Neg. LLF: 150.0877642157494
Iteration: 2, Func. Count: 22, Neg. LLF: 149.9797713352693
Iteration: 3, Func. Count: 32, Neg. LLF: 149.97991507194592
Iteration: 4, Func. Count: 43, Neg. LLF: 149.97960336812764
Iteration: 5, Func. Count: 53, Neg. LLF: 149.9795908414648
Iteration: 6, Func. Count: 63, Neg. LLF: 149.97951384307214
Iteration: 7, Func. Count: 73, Neg. LLF: 149.97932150257145
Iteration: 8, Func. Count: 83, Neg. LLF: 149.9792168808987
Iteration: 9, Func. Count: 93, Neg. LLF: 149.97915507892006
Iteration: 10, Func. Count: 103, Neg. LLF: 149.97912615248924
Iteration: 11, Func. Count: 113, Neg. LLF: 149.97883441775411
Iteration: 12, Func. Count: 123, Neg. LLF: 149.9769647750828
Iteration: 13, Func. Count: 133, Neg. LLF: 149.97687374889492
Iteration: 14, Func. Count: 143, Neg. LLF: 149.97658007993707
Iteration: 15, Func. Count: 153, Neg. LLF: 149.97651545714058
Iteration: 16, Func. Count: 162, Neg. LLF: 149.97651545762713
Optimization terminated successfully (Exit mode 0)
Current function value: 149.97651545714058
Iterations: 16
Function evaluations: 162
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 157.3839476190117
Iteration: 2, Func. Count: 25, Neg. LLF: 149.98042273245937
Iteration: 3, Func. Count: 36, Neg. LLF: 149.9804000856633
Iteration: 4, Func. Count: 47, Neg. LLF: 149.98014031273794
Iteration: 5, Func. Count: 58, Neg. LLF: 149.97964607177173
Iteration: 6, Func. Count: 69, Neg. LLF: 149.97950391644002
Iteration: 7, Func. Count: 80, Neg. LLF: 149.97943998637274
Iteration: 8, Func. Count: 91, Neg. LLF: 149.97943455394895
Iteration: 9, Func. Count: 102, Neg. LLF: 149.97939479928755
Iteration: 10, Func. Count: 113, Neg. LLF: 149.97926103955916
Iteration: 11, Func. Count: 124, Neg. LLF: 149.97924508530448
Iteration: 12, Func. Count: 135, Neg. LLF: 149.97923617370495
Iteration: 13, Func. Count: 146, Neg. LLF: 149.97923385254478
Iteration: 14, Func. Count: 157, Neg. LLF: 149.97921568653157
Iteration: 15, Func. Count: 168, Neg. LLF: 149.97895092827537
Iteration: 16, Func. Count: 179, Neg. LLF: 149.97651071312723
Iteration: 17, Func. Count: 190, Neg. LLF: 149.9765040702675
Iteration: 18, Func. Count: 201, Neg. LLF: 149.97654988646931
Iteration: 19, Func. Count: 213, Neg. LLF: 149.98748732539437
Iteration: 20, Func. Count: 226, Neg. LLF: 149.97647902757097
Iteration: 21, Func. Count: 237, Neg. LLF: 149.97647804161488
Optimization terminated successfully (Exit mode 0)
Current function value: 149.97647804161488
Iterations: 22
Function evaluations: 237
Gradient evaluations: 21
Iteration: 1, Func. Count: 9, Neg. LLF: 152.01289122311482
Iteration: 2, Func. Count: 18, Neg. LLF: 150.5117100341972
Iteration: 3, Func. Count: 26, Neg. LLF: 151.40566144338584
Iteration: 4, Func. Count: 35, Neg. LLF: 150.30509631264002
Iteration: 5, Func. Count: 43, Neg. LLF: 150.07339734344427
Iteration: 6, Func. Count: 51, Neg. LLF: 149.93108056668382
Iteration: 7, Func. Count: 59, Neg. LLF: 149.81166949191714
Iteration: 8, Func. Count: 67, Neg. LLF: 149.6790592017356
Iteration: 9, Func. Count: 75, Neg. LLF: 149.61093102747864
Iteration: 10, Func. Count: 83, Neg. LLF: 149.60591149978774
Iteration: 11, Func. Count: 91, Neg. LLF: 149.60462539621844
Iteration: 12, Func. Count: 99, Neg. LLF: 149.60458240503897
Iteration: 13, Func. Count: 107, Neg. LLF: 149.60457671963184
Iteration: 14, Func. Count: 114, Neg. LLF: 149.604576719626
Optimization terminated successfully (Exit mode 0)
Current function value: 149.60457671963184
Iterations: 14
Function evaluations: 114
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 167.1862313255976
Iteration: 2, Func. Count: 21, Neg. LLF: 149.8731555576375
Iteration: 3, Func. Count: 30, Neg. LLF: 149.8666697885057
Iteration: 4, Func. Count: 39, Neg. LLF: 149.86474041753502
Iteration: 5, Func. Count: 48, Neg. LLF: 149.85320156930808
Iteration: 6, Func. Count: 57, Neg. LLF: 149.82171831700984
Iteration: 7, Func. Count: 66, Neg. LLF: 149.77141915983728
Iteration: 8, Func. Count: 75, Neg. LLF: 149.68850807885593
Iteration: 9, Func. Count: 84, Neg. LLF: 149.6333880266864
Iteration: 10, Func. Count: 93, Neg. LLF: 149.60751497848966
Iteration: 11, Func. Count: 102, Neg. LLF: 149.60527887239093
Iteration: 12, Func. Count: 111, Neg. LLF: 149.60483415006226
Iteration: 13, Func. Count: 120, Neg. LLF: 149.60464168147664
Iteration: 14, Func. Count: 129, Neg. LLF: 149.60458389640638
Iteration: 15, Func. Count: 138, Neg. LLF: 149.60457683206752
Iteration: 16, Func. Count: 146, Neg. LLF: 149.60457683969156
Optimization terminated successfully (Exit mode 0)
Current function value: 149.60457683206752
Iterations: 16
Function evaluations: 146
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 163.71578913102698
Iteration: 2, Func. Count: 23, Neg. LLF: 149.92741182738033
Iteration: 3, Func. Count: 33, Neg. LLF: 149.87628388426234
Iteration: 4, Func. Count: 43, Neg. LLF: 149.8756937935649
Iteration: 5, Func. Count: 54, Neg. LLF: 149.8598429065845
Iteration: 6, Func. Count: 64, Neg. LLF: 149.85252060708189
Iteration: 7, Func. Count: 74, Neg. LLF: 149.84037984689715
Iteration: 8, Func. Count: 84, Neg. LLF: 149.80046696193082
Iteration: 9, Func. Count: 94, Neg. LLF: 149.71808002606565
Iteration: 10, Func. Count: 104, Neg. LLF: 149.64071948275102
Iteration: 11, Func. Count: 114, Neg. LLF: 149.6209496611353
Iteration: 12, Func. Count: 124, Neg. LLF: 149.60750563107607
Iteration: 13, Func. Count: 134, Neg. LLF: 149.60489448955087
Iteration: 14, Func. Count: 144, Neg. LLF: 149.60458607758795
Iteration: 15, Func. Count: 154, Neg. LLF: 149.6045794390258
Iteration: 16, Func. Count: 164, Neg. LLF: 149.6045777831354
Iteration: 17, Func. Count: 174, Neg. LLF: 149.60457670803396
Iteration: 18, Func. Count: 183, Neg. LLF: 149.60457671897953
Optimization terminated successfully (Exit mode 0)
Current function value: 149.60457670803396
Iterations: 18
Function evaluations: 183
Gradient evaluations: 18
Iteration: 1, Func. Count: 12, Neg. LLF: 169.17056467932656
Iteration: 2, Func. Count: 25, Neg. LLF: 149.94493960124925
Iteration: 3, Func. Count: 36, Neg. LLF: 149.87385979852777
Iteration: 4, Func. Count: 47, Neg. LLF: 149.90406646586305
Iteration: 5, Func. Count: 59, Neg. LLF: 149.86233753777776
Iteration: 6, Func. Count: 70, Neg. LLF: 149.85086569516574
Iteration: 7, Func. Count: 81, Neg. LLF: 149.840986891797
Iteration: 8, Func. Count: 92, Neg. LLF: 149.80062474161457
Iteration: 9, Func. Count: 103, Neg. LLF: 149.73263004345623
Iteration: 10, Func. Count: 114, Neg. LLF: 149.64072187195126
Iteration: 11, Func. Count: 125, Neg. LLF: 149.6228200327597
Iteration: 12, Func. Count: 136, Neg. LLF: 149.60963266797322
Iteration: 13, Func. Count: 147, Neg. LLF: 149.60726206435123
Iteration: 14, Func. Count: 158, Neg. LLF: 149.60469998210021
Iteration: 15, Func. Count: 169, Neg. LLF: 149.60458500900899
Iteration: 16, Func. Count: 180, Neg. LLF: 149.6045770566537
Iteration: 17, Func. Count: 190, Neg. LLF: 149.60457707631824
Optimization terminated successfully (Exit mode 0)
Current function value: 149.6045770566537
Iterations: 17
Function evaluations: 190
Gradient evaluations: 17
Iteration: 1, Func. Count: 13, Neg. LLF: 169.95377733292653
Iteration: 2, Func. Count: 27, Neg. LLF: 149.96089286105158
Iteration: 3, Func. Count: 39, Neg. LLF: 149.90119795915237
Iteration: 4, Func. Count: 51, Neg. LLF: 149.87901846662547
Iteration: 5, Func. Count: 63, Neg. LLF: 149.86196855199975
Iteration: 6, Func. Count: 75, Neg. LLF: 149.85705179844015
Iteration: 7, Func. Count: 87, Neg. LLF: 149.8501007931025
Iteration: 8, Func. Count: 99, Neg. LLF: 149.8257456961895
Iteration: 9, Func. Count: 111, Neg. LLF: 149.7802927392953
Iteration: 10, Func. Count: 123, Neg. LLF: 149.7005241809798
Iteration: 11, Func. Count: 135, Neg. LLF: 149.62611865523166
Iteration: 12, Func. Count: 147, Neg. LLF: 149.6101226399653
Iteration: 13, Func. Count: 159, Neg. LLF: 149.60632931370438
Iteration: 14, Func. Count: 171, Neg. LLF: 149.60541800033883
Iteration: 15, Func. Count: 183, Neg. LLF: 149.60468339752873
Iteration: 16, Func. Count: 195, Neg. LLF: 149.60460602014302
Iteration: 17, Func. Count: 207, Neg. LLF: 149.60458036603603
Iteration: 18, Func. Count: 219, Neg. LLF: 149.60457697646507
Iteration: 19, Func. Count: 230, Neg. LLF: 149.6045770032661
Optimization terminated successfully (Exit mode 0)
Current function value: 149.60457697646507
Iterations: 19
Function evaluations: 230
Gradient evaluations: 19
Iteration: 1, Func. Count: 10, Neg. LLF: 152.05018470707972
Iteration: 2, Func. Count: 20, Neg. LLF: 150.96399018077366
Iteration: 3, Func. Count: 30, Neg. LLF: 151.22888696299168
Iteration: 4, Func. Count: 40, Neg. LLF: 150.55289095992518
Iteration: 5, Func. Count: 50, Neg. LLF: 150.18655178762285
Iteration: 6, Func. Count: 59, Neg. LLF: 149.97549067704475
Iteration: 7, Func. Count: 68, Neg. LLF: 149.80999710868758
Iteration: 8, Func. Count: 77, Neg. LLF: 149.71095753279863
Iteration: 9, Func. Count: 86, Neg. LLF: 149.63106033457115
Iteration: 10, Func. Count: 95, Neg. LLF: 149.60585969887367
Iteration: 11, Func. Count: 104, Neg. LLF: 149.60471718999713
Iteration: 12, Func. Count: 113, Neg. LLF: 149.60458551740905
Iteration: 13, Func. Count: 122, Neg. LLF: 149.60457714470755
Iteration: 14, Func. Count: 131, Neg. LLF: 149.60457658784267
Optimization terminated successfully (Exit mode 0)
Current function value: 149.60457658784267
Iterations: 14
Function evaluations: 131
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 152.32529168195506
Iteration: 2, Func. Count: 23, Neg. LLF: 152.08637846384195
Iteration: 3, Func. Count: 34, Neg. LLF: 149.8722054317816
Iteration: 4, Func. Count: 44, Neg. LLF: 149.86584958430103
Iteration: 5, Func. Count: 54, Neg. LLF: 149.8591158686801
Iteration: 6, Func. Count: 64, Neg. LLF: 149.83694307685371
Iteration: 7, Func. Count: 74, Neg. LLF: 149.78936328542238
Iteration: 8, Func. Count: 84, Neg. LLF: 149.69867349984148
Iteration: 9, Func. Count: 94, Neg. LLF: 149.6516441439456
Iteration: 10, Func. Count: 104, Neg. LLF: 149.62115898521327
Iteration: 11, Func. Count: 114, Neg. LLF: 149.61034776340702
Iteration: 12, Func. Count: 124, Neg. LLF: 149.6057888759805
Iteration: 13, Func. Count: 134, Neg. LLF: 149.60462716448916
Iteration: 14, Func. Count: 144, Neg. LLF: 149.60457745884153
Iteration: 15, Func. Count: 154, Neg. LLF: 149.60457660193015
Optimization terminated successfully (Exit mode 0)
Current function value: 149.60457660193015
Iterations: 15
Function evaluations: 154
Gradient evaluations: 15
Iteration: 1, Func. Count: 12, Neg. LLF: 156.36710208840697
Iteration: 2, Func. Count: 25, Neg. LLF: 152.0120248256784
Iteration: 3, Func. Count: 37, Neg. LLF: 149.9100523557691
Iteration: 4, Func. Count: 48, Neg. LLF: 149.8654389590303
Iteration: 5, Func. Count: 59, Neg. LLF: 149.8630078201893
Iteration: 6, Func. Count: 70, Neg. LLF: 149.84961581346104
Iteration: 7, Func. Count: 81, Neg. LLF: 149.7881300108976
Iteration: 8, Func. Count: 92, Neg. LLF: 149.64248897139507
Iteration: 9, Func. Count: 103, Neg. LLF: 149.61824514342248
Iteration: 10, Func. Count: 114, Neg. LLF: 149.60806318473513
Iteration: 11, Func. Count: 125, Neg. LLF: 149.60478030441456
Iteration: 12, Func. Count: 136, Neg. LLF: 149.6046731835573
Iteration: 13, Func. Count: 147, Neg. LLF: 149.60461737594395
Iteration: 14, Func. Count: 158, Neg. LLF: 149.6045919123399
Iteration: 15, Func. Count: 169, Neg. LLF: 149.6045798747215
Iteration: 16, Func. Count: 180, Neg. LLF: 149.60457693423223
Iteration: 17, Func. Count: 190, Neg. LLF: 149.60457694514983
Optimization terminated successfully (Exit mode 0)
Current function value: 149.60457693423223
Iterations: 17
Function evaluations: 190
Gradient evaluations: 17
Iteration: 1, Func. Count: 13, Neg. LLF: 155.1756158663666
Iteration: 2, Func. Count: 27, Neg. LLF: 151.99232394512097
Iteration: 3, Func. Count: 40, Neg. LLF: 149.94792286726116
Iteration: 4, Func. Count: 52, Neg. LLF: 149.8676975254339
Iteration: 5, Func. Count: 64, Neg. LLF: 149.8627922760706
Iteration: 6, Func. Count: 76, Neg. LLF: 149.85701370728847
Iteration: 7, Func. Count: 88, Neg. LLF: 149.84735367687728
Iteration: 8, Func. Count: 100, Neg. LLF: 149.82154331322565
Iteration: 9, Func. Count: 112, Neg. LLF: 149.77557609661767
Iteration: 10, Func. Count: 124, Neg. LLF: 149.68774016855104
Iteration: 11, Func. Count: 136, Neg. LLF: 149.66682345166407
Iteration: 12, Func. Count: 148, Neg. LLF: 149.61782831011246
Iteration: 13, Func. Count: 160, Neg. LLF: 149.61142065706025
Iteration: 14, Func. Count: 172, Neg. LLF: 149.60784900639936
Iteration: 15, Func. Count: 184, Neg. LLF: 149.60563170034877
Iteration: 16, Func. Count: 196, Neg. LLF: 149.60474756326886
Iteration: 17, Func. Count: 208, Neg. LLF: 149.6045873648588
Iteration: 18, Func. Count: 220, Neg. LLF: 149.60457755087697
Iteration: 19, Func. Count: 232, Neg. LLF: 149.60457684997215
Optimization terminated successfully (Exit mode 0)
Current function value: 149.60457684997215
Iterations: 19
Function evaluations: 232
Gradient evaluations: 19
Iteration: 1, Func. Count: 14, Neg. LLF: 150.1666126634814
Iteration: 2, Func. Count: 28, Neg. LLF: 154.63943838446068
Iteration: 3, Func. Count: 43, Neg. LLF: 149.95791969955923
Iteration: 4, Func. Count: 56, Neg. LLF: 149.91678353077603
Iteration: 5, Func. Count: 69, Neg. LLF: 149.90531533215204
Iteration: 6, Func. Count: 82, Neg. LLF: 149.87169181819309
Iteration: 7, Func. Count: 95, Neg. LLF: 149.85330391933374
Iteration: 8, Func. Count: 108, Neg. LLF: 149.83951319065068
Iteration: 9, Func. Count: 121, Neg. LLF: 149.83317128603213
Iteration: 10, Func. Count: 134, Neg. LLF: 149.81981025703283
Iteration: 11, Func. Count: 147, Neg. LLF: 149.79288746872066
Iteration: 12, Func. Count: 160, Neg. LLF: 149.7389931245431
Iteration: 13, Func. Count: 173, Neg. LLF: 149.66465143028356
Iteration: 14, Func. Count: 186, Neg. LLF: 149.62799332547968
Iteration: 15, Func. Count: 199, Neg. LLF: 149.60547722345407
Iteration: 16, Func. Count: 212, Neg. LLF: 149.60464751895228
Iteration: 17, Func. Count: 225, Neg. LLF: 149.60458952714623
Iteration: 18, Func. Count: 238, Neg. LLF: 149.60458318185013
Iteration: 19, Func. Count: 251, Neg. LLF: 149.60457909910247
Iteration: 20, Func. Count: 264, Neg. LLF: 149.60457706593684
Iteration: 21, Func. Count: 276, Neg. LLF: 149.60457709274368
Optimization terminated successfully (Exit mode 0)
Current function value: 149.60457706593684
Iterations: 21
Function evaluations: 276
Gradient evaluations: 21
Iteration: 1, Func. Count: 11, Neg. LLF: 152.00861402946316
Iteration: 2, Func. Count: 22, Neg. LLF: 153.18395173834722
Iteration: 3, Func. Count: 33, Neg. LLF: 150.44399280068353
Iteration: 4, Func. Count: 43, Neg. LLF: 150.22778445043858
Iteration: 5, Func. Count: 53, Neg. LLF: 150.10823790806595
Iteration: 6, Func. Count: 63, Neg. LLF: 150.7655030555385
Iteration: 7, Func. Count: 74, Neg. LLF: 149.74534070826576
Iteration: 8, Func. Count: 84, Neg. LLF: 149.65053289327435
Iteration: 9, Func. Count: 94, Neg. LLF: 149.60726145523458
Iteration: 10, Func. Count: 104, Neg. LLF: 149.6049479945138
Iteration: 11, Func. Count: 114, Neg. LLF: 149.60457931278464
Iteration: 12, Func. Count: 124, Neg. LLF: 149.60457675641217
Iteration: 13, Func. Count: 133, Neg. LLF: 149.60457678137743
Optimization terminated successfully (Exit mode 0)
Current function value: 149.60457675641217
Iterations: 13
Function evaluations: 133
Gradient evaluations: 13
Iteration: 1, Func. Count: 12, Neg. LLF: 152.2240756283876
Iteration: 2, Func. Count: 25, Neg. LLF: 152.0980933592574
Iteration: 3, Func. Count: 37, Neg. LLF: 149.87220257186002
Iteration: 4, Func. Count: 48, Neg. LLF: 149.86565151418483
Iteration: 5, Func. Count: 59, Neg. LLF: 149.8596697803848
Iteration: 6, Func. Count: 70, Neg. LLF: 149.8351579182837
Iteration: 7, Func. Count: 81, Neg. LLF: 149.78748970028587
Iteration: 8, Func. Count: 92, Neg. LLF: 149.6966145673577
Iteration: 9, Func. Count: 103, Neg. LLF: 149.65619817271056
Iteration: 10, Func. Count: 114, Neg. LLF: 149.620716442769
Iteration: 11, Func. Count: 125, Neg. LLF: 149.60966675551694
Iteration: 12, Func. Count: 136, Neg. LLF: 149.60538983763377
Iteration: 13, Func. Count: 147, Neg. LLF: 149.60463193640692
Iteration: 14, Func. Count: 158, Neg. LLF: 149.60458250661216
Iteration: 15, Func. Count: 169, Neg. LLF: 149.6045774202085
Iteration: 16, Func. Count: 180, Neg. LLF: 149.6045766220938
Optimization terminated successfully (Exit mode 0)
Current function value: 149.6045766220938
Iterations: 16
Function evaluations: 180
Gradient evaluations: 16
Iteration: 1, Func. Count: 13, Neg. LLF: 156.11583837133634
Iteration: 2, Func. Count: 27, Neg. LLF: 152.02158377807984
Iteration: 3, Func. Count: 40, Neg. LLF: 149.90970163637516
Iteration: 4, Func. Count: 52, Neg. LLF: 149.86533327963343
Iteration: 5, Func. Count: 64, Neg. LLF: 149.8628754063232
Iteration: 6, Func. Count: 76, Neg. LLF: 149.85002568049003
Iteration: 7, Func. Count: 88, Neg. LLF: 149.79083895544912
Iteration: 8, Func. Count: 100, Neg. LLF: 149.64211368872753
Iteration: 9, Func. Count: 112, Neg. LLF: 149.61991371446425
Iteration: 10, Func. Count: 124, Neg. LLF: 149.60750895772566
Iteration: 11, Func. Count: 136, Neg. LLF: 149.604798361624
Iteration: 12, Func. Count: 148, Neg. LLF: 149.60465582789269
Iteration: 13, Func. Count: 160, Neg. LLF: 149.6046106830886
Iteration: 14, Func. Count: 172, Neg. LLF: 149.60459217679508
Iteration: 15, Func. Count: 184, Neg. LLF: 149.60458099901908
Iteration: 16, Func. Count: 196, Neg. LLF: 149.60457712729678
Iteration: 17, Func. Count: 207, Neg. LLF: 149.60457713820048
Optimization terminated successfully (Exit mode 0)
Current function value: 149.60457712729678
Iterations: 17
Function evaluations: 207
Gradient evaluations: 17
Iteration: 1, Func. Count: 14, Neg. LLF: 158.5590615693251
Iteration: 2, Func. Count: 29, Neg. LLF: 151.99644451958648
Iteration: 3, Func. Count: 43, Neg. LLF: 149.94763990740324
Iteration: 4, Func. Count: 56, Neg. LLF: 149.86772973106764
Iteration: 5, Func. Count: 69, Neg. LLF: 149.8626571922937
Iteration: 6, Func. Count: 82, Neg. LLF: 149.85691127530637
Iteration: 7, Func. Count: 95, Neg. LLF: 149.84761074734342
Iteration: 8, Func. Count: 108, Neg. LLF: 149.8218887921445
Iteration: 9, Func. Count: 121, Neg. LLF: 149.77635445166203
Iteration: 10, Func. Count: 134, Neg. LLF: 149.68753112474917
Iteration: 11, Func. Count: 147, Neg. LLF: 149.66357851792608
Iteration: 12, Func. Count: 160, Neg. LLF: 149.6128372740605
Iteration: 13, Func. Count: 173, Neg. LLF: 149.60896849886836
Iteration: 14, Func. Count: 186, Neg. LLF: 149.60659684751963
Iteration: 15, Func. Count: 199, Neg. LLF: 149.6052808331035
Iteration: 16, Func. Count: 212, Neg. LLF: 149.60469720849474
Iteration: 17, Func. Count: 225, Neg. LLF: 149.6045869197867
Iteration: 18, Func. Count: 238, Neg. LLF: 149.60457738309884
Iteration: 19, Func. Count: 251, Neg. LLF: 149.60457674610416
Optimization terminated successfully (Exit mode 0)
Current function value: 149.60457674610416
Iterations: 19
Function evaluations: 251
Gradient evaluations: 19
Iteration: 1, Func. Count: 15, Neg. LLF: 150.27287959729904
Iteration: 2, Func. Count: 30, Neg. LLF: 152.0733507741149
Iteration: 3, Func. Count: 45, Neg. LLF: 149.96056323498104
Iteration: 4, Func. Count: 59, Neg. LLF: 149.9164241311312
Iteration: 5, Func. Count: 73, Neg. LLF: 149.86836453624548
Iteration: 6, Func. Count: 87, Neg. LLF: 149.86274886580622
Iteration: 7, Func. Count: 101, Neg. LLF: 149.85783538740864
Iteration: 8, Func. Count: 115, Neg. LLF: 149.8286833419303
Iteration: 9, Func. Count: 129, Neg. LLF: 149.76618637381097
Iteration: 10, Func. Count: 143, Neg. LLF: 149.6575331011913
Iteration: 11, Func. Count: 157, Neg. LLF: 149.63998477794766
Iteration: 12, Func. Count: 171, Neg. LLF: 149.63162504326743
Iteration: 13, Func. Count: 185, Neg. LLF: 149.6272900066025
Iteration: 14, Func. Count: 199, Neg. LLF: 149.6152316801504
Iteration: 15, Func. Count: 213, Neg. LLF: 149.6085351917925
Iteration: 16, Func. Count: 227, Neg. LLF: 149.60519834050717
Iteration: 17, Func. Count: 241, Neg. LLF: 149.60464751082998
Iteration: 18, Func. Count: 255, Neg. LLF: 149.60459598379404
Iteration: 19, Func. Count: 269, Neg. LLF: 149.60457724693686
Iteration: 20, Func. Count: 282, Neg. LLF: 149.60457727372798
Optimization terminated successfully (Exit mode 0)
Current function value: 149.60457724693686
Iterations: 20
Function evaluations: 282
Gradient evaluations: 20
Iteration: 1, Func. Count: 12, Neg. LLF: 151.8719445326753
Iteration: 2, Func. Count: 23, Neg. LLF: 153.20891441205922
Iteration: 3, Func. Count: 35, Neg. LLF: 151.00421747548168
Iteration: 4, Func. Count: 47, Neg. LLF: 150.2830589207924
Iteration: 5, Func. Count: 58, Neg. LLF: 154.11992080841182
Iteration: 6, Func. Count: 70, Neg. LLF: 150.10207885524719
Iteration: 7, Func. Count: 81, Neg. LLF: 150.00538799810022
Iteration: 8, Func. Count: 92, Neg. LLF: 149.90079540238693
Iteration: 9, Func. Count: 103, Neg. LLF: 149.78722364707693
Iteration: 10, Func. Count: 114, Neg. LLF: 149.6635932063496
Iteration: 11, Func. Count: 125, Neg. LLF: 149.60789324504557
Iteration: 12, Func. Count: 136, Neg. LLF: 149.60528138668815
Iteration: 13, Func. Count: 147, Neg. LLF: 149.60457951773373
Iteration: 14, Func. Count: 158, Neg. LLF: 149.60457659758723
Iteration: 15, Func. Count: 168, Neg. LLF: 149.6045765518291
Optimization terminated successfully (Exit mode 0)
Current function value: 149.60457659758723
Iterations: 15
Function evaluations: 168
Gradient evaluations: 15
Iteration: 1, Func. Count: 13, Neg. LLF: 152.17465172385684
Iteration: 2, Func. Count: 27, Neg. LLF: 152.10520430457527
Iteration: 3, Func. Count: 40, Neg. LLF: 149.87218144997615
Iteration: 4, Func. Count: 52, Neg. LLF: 149.86557845431219
Iteration: 5, Func. Count: 64, Neg. LLF: 149.8600396346571
Iteration: 6, Func. Count: 76, Neg. LLF: 149.8321874695355
Iteration: 7, Func. Count: 88, Neg. LLF: 149.7839413891607
Iteration: 8, Func. Count: 100, Neg. LLF: 149.69192078593906
Iteration: 9, Func. Count: 112, Neg. LLF: 149.65891884411454
Iteration: 10, Func. Count: 124, Neg. LLF: 149.61857991509254
Iteration: 11, Func. Count: 136, Neg. LLF: 149.608839567595
Iteration: 12, Func. Count: 148, Neg. LLF: 149.60522091192885
Iteration: 13, Func. Count: 160, Neg. LLF: 149.6046524987707
Iteration: 14, Func. Count: 172, Neg. LLF: 149.6045840731029
Iteration: 15, Func. Count: 184, Neg. LLF: 149.60457712009296
Iteration: 16, Func. Count: 195, Neg. LLF: 149.60457712771975
Optimization terminated successfully (Exit mode 0)
Current function value: 149.60457712009296
Iterations: 16
Function evaluations: 195
Gradient evaluations: 16
Iteration: 1, Func. Count: 14, Neg. LLF: 155.98100322145618
Iteration: 2, Func. Count: 29, Neg. LLF: 152.02806978459924
Iteration: 3, Func. Count: 43, Neg. LLF: 149.91005581036114
Iteration: 4, Func. Count: 56, Neg. LLF: 149.86524070128223
Iteration: 5, Func. Count: 69, Neg. LLF: 149.86273796057637
Iteration: 6, Func. Count: 82, Neg. LLF: 149.84968885674567
Iteration: 7, Func. Count: 95, Neg. LLF: 149.79003238117332
Iteration: 8, Func. Count: 108, Neg. LLF: 149.6482854228386
Iteration: 9, Func. Count: 121, Neg. LLF: 149.6215112325698
Iteration: 10, Func. Count: 134, Neg. LLF: 149.60843504947832
Iteration: 11, Func. Count: 147, Neg. LLF: 149.60472343072908
Iteration: 12, Func. Count: 160, Neg. LLF: 149.6046381383186
Iteration: 13, Func. Count: 173, Neg. LLF: 149.60460670776288
Iteration: 14, Func. Count: 186, Neg. LLF: 149.60458777489026
Iteration: 15, Func. Count: 199, Neg. LLF: 149.60457929772136
Iteration: 16, Func. Count: 212, Neg. LLF: 149.60457691856658
Iteration: 17, Func. Count: 224, Neg. LLF: 149.60457692948717
Optimization terminated successfully (Exit mode 0)
Current function value: 149.60457691856658
Iterations: 17
Function evaluations: 224
Gradient evaluations: 17
Iteration: 1, Func. Count: 15, Neg. LLF: 158.371663572177
Iteration: 2, Func. Count: 31, Neg. LLF: 152.00228466209592
Iteration: 3, Func. Count: 46, Neg. LLF: 149.9482899124531
Iteration: 4, Func. Count: 60, Neg. LLF: 149.8682236638364
Iteration: 5, Func. Count: 74, Neg. LLF: 149.86254749196124
Iteration: 6, Func. Count: 88, Neg. LLF: 149.85681601664976
Iteration: 7, Func. Count: 102, Neg. LLF: 149.84823572856587
Iteration: 8, Func. Count: 116, Neg. LLF: 149.82301040127663
Iteration: 9, Func. Count: 130, Neg. LLF: 149.7782903581203
Iteration: 10, Func. Count: 144, Neg. LLF: 149.68671569271078
Iteration: 11, Func. Count: 158, Neg. LLF: 149.65949666284723
Iteration: 12, Func. Count: 172, Neg. LLF: 149.61144826796473
Iteration: 13, Func. Count: 186, Neg. LLF: 149.6079049092751
Iteration: 14, Func. Count: 200, Neg. LLF: 149.60611407210757
Iteration: 15, Func. Count: 214, Neg. LLF: 149.60520259856284
Iteration: 16, Func. Count: 228, Neg. LLF: 149.60470912497235
Iteration: 17, Func. Count: 242, Neg. LLF: 149.60459078539833
Iteration: 18, Func. Count: 256, Neg. LLF: 149.60457724638988
Iteration: 19, Func. Count: 270, Neg. LLF: 149.60457659965607
Optimization terminated successfully (Exit mode 0)
Current function value: 149.60457659965607
Iterations: 19
Function evaluations: 270
Gradient evaluations: 19
Iteration: 1, Func. Count: 16, Neg. LLF: 151.2082249206989
Iteration: 2, Func. Count: 33, Neg. LLF: 152.02348906163655
Iteration: 3, Func. Count: 49, Neg. LLF: 149.95913790614162
Iteration: 4, Func. Count: 64, Neg. LLF: 149.88331521594083
Iteration: 5, Func. Count: 79, Neg. LLF: 149.86744257248083
Iteration: 6, Func. Count: 94, Neg. LLF: 149.8548533262261
Iteration: 7, Func. Count: 109, Neg. LLF: 149.84990981127277
Iteration: 8, Func. Count: 124, Neg. LLF: 149.83854095540514
Iteration: 9, Func. Count: 139, Neg. LLF: 149.81740149038765
Iteration: 10, Func. Count: 154, Neg. LLF: 149.77206006627532
Iteration: 11, Func. Count: 169, Neg. LLF: 149.67520160260014
Iteration: 12, Func. Count: 184, Neg. LLF: 149.6380024687181
Iteration: 13, Func. Count: 199, Neg. LLF: 149.60881645261318
Iteration: 14, Func. Count: 214, Neg. LLF: 149.6071244981153
Iteration: 15, Func. Count: 229, Neg. LLF: 149.60523391815104
Iteration: 16, Func. Count: 244, Neg. LLF: 149.60481948277396
Iteration: 17, Func. Count: 259, Neg. LLF: 149.6046437000781
Iteration: 18, Func. Count: 274, Neg. LLF: 149.60459117305095
Iteration: 19, Func. Count: 289, Neg. LLF: 149.60457755042395
Iteration: 20, Func. Count: 304, Neg. LLF: 149.60457660645093
Optimization terminated successfully (Exit mode 0)
Current function value: 149.60457660645093
Iterations: 20
Function evaluations: 304
Gradient evaluations: 20
Iteration: 1, Func. Count: 5, Neg. LLF: 155.55712736280728
Iteration: 2, Func. Count: 10, Neg. LLF: 153.5144465335915
Iteration: 3, Func. Count: 15, Neg. LLF: 150.59316877121452
Iteration: 4, Func. Count: 19, Neg. LLF: 149.80168962320266
Iteration: 5, Func. Count: 23, Neg. LLF: 149.64183501841933
Iteration: 6, Func. Count: 27, Neg. LLF: 149.6156438552674
Iteration: 7, Func. Count: 31, Neg. LLF: 149.6071163665569
Iteration: 8, Func. Count: 35, Neg. LLF: 149.6049356128847
Iteration: 9, Func. Count: 39, Neg. LLF: 149.60460426555537
Iteration: 10, Func. Count: 43, Neg. LLF: 149.60457730873915
Iteration: 11, Func. Count: 47, Neg. LLF: 149.60457658675531
Optimization terminated successfully (Exit mode 0)
Current function value: 149.60457658675531
Iterations: 11
Function evaluations: 47
Gradient evaluations: 11
Iteration: 1, Func. Count: 5, Neg. LLF: 152.76133206609245
Iteration: 2, Func. Count: 10, Neg. LLF: 151.12313699112318
Iteration: 3, Func. Count: 15, Neg. LLF: 147.00990496209653
Iteration: 4, Func. Count: 19, Neg. LLF: 146.32313085584923
Iteration: 5, Func. Count: 23, Neg. LLF: 146.21154704231023
Iteration: 6, Func. Count: 27, Neg. LLF: 146.19849704952895
Iteration: 7, Func. Count: 31, Neg. LLF: 146.18997872832048
Iteration: 8, Func. Count: 35, Neg. LLF: 146.18906931600628
Iteration: 9, Func. Count: 39, Neg. LLF: 146.1889343619111
Iteration: 10, Func. Count: 43, Neg. LLF: 146.1889307028115
Iteration: 11, Func. Count: 46, Neg. LLF: 146.18893070281754
Optimization terminated successfully (Exit mode 0)
Current function value: 146.1889307028115
Iterations: 11
Function evaluations: 46
Gradient evaluations: 11
Iteration: 1, Func. Count: 6, Neg. LLF: 175.66503882803275
Iteration: 2, Func. Count: 13, Neg. LLF: 146.46806107474555
Iteration: 3, Func. Count: 18, Neg. LLF: 146.46699233776494
Iteration: 4, Func. Count: 23, Neg. LLF: 146.46233217625527
Iteration: 5, Func. Count: 28, Neg. LLF: 146.4223697920001
Iteration: 6, Func. Count: 33, Neg. LLF: 146.6501711593818
Iteration: 7, Func. Count: 39, Neg. LLF: 146.69019458273758
Iteration: 8, Func. Count: 45, Neg. LLF: 146.5722911866382
Iteration: 9, Func. Count: 51, Neg. LLF: 157.7103424294336
Iteration: 10, Func. Count: 59, Neg. LLF: 146.41645485758687
Iteration: 11, Func. Count: 65, Neg. LLF: 146.34642269897384
Iteration: 12, Func. Count: 70, Neg. LLF: 146.34640583140026
Iteration: 13, Func. Count: 76, Neg. LLF: 146.34633948515093
Iteration: 14, Func. Count: 81, Neg. LLF: 146.3463381719792
Iteration: 15, Func. Count: 85, Neg. LLF: 146.34633817196826
Optimization terminated successfully (Exit mode 0)
Current function value: 146.3463381719792
Iterations: 15
Function evaluations: 85
Gradient evaluations: 15
Iteration: 1, Func. Count: 7, Neg. LLF: 168.51018053562703
Iteration: 2, Func. Count: 15, Neg. LLF: 146.4282551112577
Iteration: 3, Func. Count: 21, Neg. LLF: 146.4118386295643
Iteration: 4, Func. Count: 27, Neg. LLF: 146.41049398301377
Iteration: 5, Func. Count: 33, Neg. LLF: 146.4084774468378
Iteration: 6, Func. Count: 39, Neg. LLF: 146.39348529414093
Iteration: 7, Func. Count: 45, Neg. LLF: 146.39424267255194
Iteration: 8, Func. Count: 52, Neg. LLF: 146.37006015905695
Iteration: 9, Func. Count: 58, Neg. LLF: 146.36546299767932
Iteration: 10, Func. Count: 64, Neg. LLF: 146.36397223883247
Iteration: 11, Func. Count: 70, Neg. LLF: 146.36187811978613
Iteration: 12, Func. Count: 76, Neg. LLF: 146.35901061119773
Iteration: 13, Func. Count: 82, Neg. LLF: 146.3464079101846
Iteration: 14, Func. Count: 88, Neg. LLF: 146.346367886628
Iteration: 15, Func. Count: 94, Neg. LLF: 146.3463422471829
Iteration: 16, Func. Count: 100, Neg. LLF: 146.34634381663352
Iteration: 17, Func. Count: 106, Neg. LLF: 146.34633854083435
Optimization terminated successfully (Exit mode 0)
Current function value: 146.346338540051
Iterations: 17
Function evaluations: 106
Gradient evaluations: 17
Iteration: 1, Func. Count: 8, Neg. LLF: 164.08584627733714
Iteration: 2, Func. Count: 16, Neg. LLF: 146.40317994597007
Iteration: 3, Func. Count: 23, Neg. LLF: 146.39789332534758
Iteration: 4, Func. Count: 30, Neg. LLF: 146.38960412705595
Iteration: 5, Func. Count: 37, Neg. LLF: 146.38762492696745
Iteration: 6, Func. Count: 44, Neg. LLF: 146.38447437613536
Iteration: 7, Func. Count: 51, Neg. LLF: 146.38186500874568
Iteration: 8, Func. Count: 58, Neg. LLF: 146.3792582956075
Iteration: 9, Func. Count: 65, Neg. LLF: 146.37770484494717
Iteration: 10, Func. Count: 72, Neg. LLF: 146.37498318085434
Iteration: 11, Func. Count: 79, Neg. LLF: 146.3732303106211
Iteration: 12, Func. Count: 86, Neg. LLF: 146.37175997983007
Iteration: 13, Func. Count: 93, Neg. LLF: 146.3697159501027
Iteration: 14, Func. Count: 100, Neg. LLF: 146.36707579852853
Iteration: 15, Func. Count: 107, Neg. LLF: 146.3658833293388
Iteration: 16, Func. Count: 114, Neg. LLF: 146.363418029118
Iteration: 17, Func. Count: 121, Neg. LLF: 146.3610653027102
Iteration: 18, Func. Count: 128, Neg. LLF: 146.35732006061968
Iteration: 19, Func. Count: 135, Neg. LLF: 146.3476273643892
Iteration: 20, Func. Count: 142, Neg. LLF: 146.34645381445327
Iteration: 21, Func. Count: 149, Neg. LLF: 146.34634560525132
Iteration: 22, Func. Count: 156, Neg. LLF: 146.34634406534587
Iteration: 23, Func. Count: 164, Neg. LLF: 146.34633823297855
Iteration: 24, Func. Count: 170, Neg. LLF: 146.3463382347497
Optimization terminated successfully (Exit mode 0)
Current function value: 146.34633823297855
Iterations: 24
Function evaluations: 170
Gradient evaluations: 24
Iteration: 1, Func. Count: 9, Neg. LLF: 161.3528346965002
Iteration: 2, Func. Count: 18, Neg. LLF: 146.39830685083191
Iteration: 3, Func. Count: 26, Neg. LLF: 146.3964766865526
Iteration: 4, Func. Count: 34, Neg. LLF: 146.39280500163437
Iteration: 5, Func. Count: 42, Neg. LLF: 146.39181805691643
Iteration: 6, Func. Count: 50, Neg. LLF: 146.38729823019196
Iteration: 7, Func. Count: 58, Neg. LLF: 146.38306250861825
Iteration: 8, Func. Count: 66, Neg. LLF: 146.38090877772123
Iteration: 9, Func. Count: 74, Neg. LLF: 146.3779134008131
Iteration: 10, Func. Count: 82, Neg. LLF: 146.37697667283058
Iteration: 11, Func. Count: 90, Neg. LLF: 146.37630607695556
Iteration: 12, Func. Count: 98, Neg. LLF: 146.37447795269009
Iteration: 13, Func. Count: 106, Neg. LLF: 146.37199123810376
Iteration: 14, Func. Count: 114, Neg. LLF: 146.3668324404546
Iteration: 15, Func. Count: 122, Neg. LLF: 146.36566559030902
Iteration: 16, Func. Count: 130, Neg. LLF: 146.36256078643765
Iteration: 17, Func. Count: 138, Neg. LLF: 146.35863106706736
Iteration: 18, Func. Count: 146, Neg. LLF: 146.34663239838096
Iteration: 19, Func. Count: 154, Neg. LLF: 146.34747230594738
Iteration: 20, Func. Count: 163, Neg. LLF: 146.34646964456115
Iteration: 21, Func. Count: 172, Neg. LLF: 146.34633828727192
Iteration: 22, Func. Count: 179, Neg. LLF: 146.34633829025668
Optimization terminated successfully (Exit mode 0)
Current function value: 146.34633828727192
Iterations: 22
Function evaluations: 179
Gradient evaluations: 22
Iteration: 1, Func. Count: 6, Neg. LLF: 154.04968038508042
Iteration: 2, Func. Count: 12, Neg. LLF: 153.31781455597144
Iteration: 3, Func. Count: 18, Neg. LLF: 147.1130105271776
Iteration: 4, Func. Count: 23, Neg. LLF: 146.3719723665317
Iteration: 5, Func. Count: 28, Neg. LLF: 146.20413900707166
Iteration: 6, Func. Count: 33, Neg. LLF: 146.1939879882629
Iteration: 7, Func. Count: 38, Neg. LLF: 146.19084241911497
Iteration: 8, Func. Count: 43, Neg. LLF: 146.18924334414083
Iteration: 9, Func. Count: 48, Neg. LLF: 146.18895450489202
Iteration: 10, Func. Count: 53, Neg. LLF: 146.18893115496192
Iteration: 11, Func. Count: 57, Neg. LLF: 146.18893121471805
Optimization terminated successfully (Exit mode 0)
Current function value: 146.18893115496192
Iterations: 11
Function evaluations: 57
Gradient evaluations: 11
Iteration: 1, Func. Count: 7, Neg. LLF: 164.1749024827316
Iteration: 2, Func. Count: 14, Neg. LLF: 146.42484429040343
Iteration: 3, Func. Count: 20, Neg. LLF: 146.38523535129477
Iteration: 4, Func. Count: 26, Neg. LLF: 146.6849065514867
Iteration: 5, Func. Count: 33, Neg. LLF: 146.63577727528838
Iteration: 6, Func. Count: 40, Neg. LLF: 146.38261807417314
Iteration: 7, Func. Count: 47, Neg. LLF: 146.34664477796753
Iteration: 8, Func. Count: 53, Neg. LLF: 146.34634140338324
Iteration: 9, Func. Count: 59, Neg. LLF: 146.34633818358643
Iteration: 10, Func. Count: 64, Neg. LLF: 146.3463381835948
Optimization terminated successfully (Exit mode 0)
Current function value: 146.34633818358643
Iterations: 10
Function evaluations: 64
Gradient evaluations: 10
Iteration: 1, Func. Count: 8, Neg. LLF: 168.6009275132402
Iteration: 2, Func. Count: 17, Neg. LLF: 146.42868213352503
Iteration: 3, Func. Count: 24, Neg. LLF: 146.41160691033636
Iteration: 4, Func. Count: 31, Neg. LLF: 146.4114014198837
Iteration: 5, Func. Count: 39, Neg. LLF: 146.4080394448815
Iteration: 6, Func. Count: 46, Neg. LLF: 146.40274759434385
Iteration: 7, Func. Count: 53, Neg. LLF: 146.3891553935152
Iteration: 8, Func. Count: 60, Neg. LLF: 146.37683500974745
Iteration: 9, Func. Count: 67, Neg. LLF: 146.3673190628378
Iteration: 10, Func. Count: 74, Neg. LLF: 146.36565609602286
Iteration: 11, Func. Count: 81, Neg. LLF: 146.36341705460347
Iteration: 12, Func. Count: 88, Neg. LLF: 146.3620508388849
Iteration: 13, Func. Count: 95, Neg. LLF: 146.35957138725914
Iteration: 14, Func. Count: 102, Neg. LLF: 146.34746890909878
Iteration: 15, Func. Count: 109, Neg. LLF: 146.34656490825068
Iteration: 16, Func. Count: 116, Neg. LLF: 146.34640820139253
Iteration: 17, Func. Count: 123, Neg. LLF: 146.34635295385536
Iteration: 18, Func. Count: 130, Neg. LLF: 146.34633985733814
Iteration: 19, Func. Count: 137, Neg. LLF: 146.34633818798196
Iteration: 20, Func. Count: 143, Neg. LLF: 146.3463381885669
Optimization terminated successfully (Exit mode 0)
Current function value: 146.34633818798196
Iterations: 20
Function evaluations: 143
Gradient evaluations: 20
Iteration: 1, Func. Count: 9, Neg. LLF: 164.1287580401211
Iteration: 2, Func. Count: 18, Neg. LLF: 146.40341270555425
Iteration: 3, Func. Count: 26, Neg. LLF: 146.39815248048635
Iteration: 4, Func. Count: 34, Neg. LLF: 146.38938341855547
Iteration: 5, Func. Count: 42, Neg. LLF: 146.3874704750072
Iteration: 6, Func. Count: 50, Neg. LLF: 146.3846010789218
Iteration: 7, Func. Count: 58, Neg. LLF: 146.3815813170828
Iteration: 8, Func. Count: 66, Neg. LLF: 146.37865849838332
Iteration: 9, Func. Count: 74, Neg. LLF: 146.37695632821305
Iteration: 10, Func. Count: 82, Neg. LLF: 146.375066278582
Iteration: 11, Func. Count: 90, Neg. LLF: 146.37329768401548
Iteration: 12, Func. Count: 98, Neg. LLF: 146.37182859923468
Iteration: 13, Func. Count: 106, Neg. LLF: 146.36830422936214
Iteration: 14, Func. Count: 114, Neg. LLF: 146.36617993028491
Iteration: 15, Func. Count: 122, Neg. LLF: 146.36425881891356
Iteration: 16, Func. Count: 130, Neg. LLF: 146.359146154975
Iteration: 17, Func. Count: 138, Neg. LLF: 146.35710414488938
Iteration: 18, Func. Count: 146, Neg. LLF: 146.34786118432973
Iteration: 19, Func. Count: 154, Neg. LLF: 146.34711762241932
Iteration: 20, Func. Count: 162, Neg. LLF: 146.3463533732819
Iteration: 21, Func. Count: 170, Neg. LLF: 146.34633937917988
Iteration: 22, Func. Count: 178, Neg. LLF: 146.34633853568158
Optimization terminated successfully (Exit mode 0)
Current function value: 146.34633853568158
Iterations: 22
Function evaluations: 178
Gradient evaluations: 22
Iteration: 1, Func. Count: 10, Neg. LLF: 161.39813096281432
Iteration: 2, Func. Count: 20, Neg. LLF: 146.3985054123856
Iteration: 3, Func. Count: 29, Neg. LLF: 146.39664891254276
Iteration: 4, Func. Count: 38, Neg. LLF: 146.39274590982663
Iteration: 5, Func. Count: 47, Neg. LLF: 146.3918304485284
Iteration: 6, Func. Count: 56, Neg. LLF: 146.38866145059245
Iteration: 7, Func. Count: 65, Neg. LLF: 146.3839486167651
Iteration: 8, Func. Count: 74, Neg. LLF: 146.38090896064838
Iteration: 9, Func. Count: 83, Neg. LLF: 146.376744813448
Iteration: 10, Func. Count: 92, Neg. LLF: 146.3751193581098
Iteration: 11, Func. Count: 101, Neg. LLF: 146.37436496368042
Iteration: 12, Func. Count: 110, Neg. LLF: 146.37309428846254
Iteration: 13, Func. Count: 119, Neg. LLF: 146.37255831372877
Iteration: 14, Func. Count: 128, Neg. LLF: 146.37159525908658
Iteration: 15, Func. Count: 137, Neg. LLF: 146.37055935610707
Iteration: 16, Func. Count: 146, Neg. LLF: 146.36979869407412
Iteration: 17, Func. Count: 155, Neg. LLF: 146.3663290666593
Iteration: 18, Func. Count: 164, Neg. LLF: 146.36296456089082
Iteration: 19, Func. Count: 173, Neg. LLF: 146.35992185424809
Iteration: 20, Func. Count: 182, Neg. LLF: 146.3497205591119
Iteration: 21, Func. Count: 191, Neg. LLF: 146.3466745055791
Iteration: 22, Func. Count: 200, Neg. LLF: 146.3464287661951
Iteration: 23, Func. Count: 209, Neg. LLF: 146.34639886563218
Iteration: 24, Func. Count: 218, Neg. LLF: 146.34634122150527
Iteration: 25, Func. Count: 227, Neg. LLF: 146.34634017929514
Iteration: 26, Func. Count: 236, Neg. LLF: 146.34633921817596
Optimization terminated successfully (Exit mode 0)
Current function value: 146.34633921817596
Iterations: 26
Function evaluations: 236
Gradient evaluations: 26
Iteration: 1, Func. Count: 7, Neg. LLF: 152.05955499327348
Iteration: 2, Func. Count: 14, Neg. LLF: 151.76322739570003
Iteration: 3, Func. Count: 21, Neg. LLF: 147.08352857056033
Iteration: 4, Func. Count: 27, Neg. LLF: 146.36695324359502
Iteration: 5, Func. Count: 33, Neg. LLF: 146.2014091313861
Iteration: 6, Func. Count: 39, Neg. LLF: 146.18952155822095
Iteration: 7, Func. Count: 45, Neg. LLF: 146.18913703136033
Iteration: 8, Func. Count: 51, Neg. LLF: 146.1890062806442
Iteration: 9, Func. Count: 57, Neg. LLF: 146.18894763204378
Iteration: 10, Func. Count: 63, Neg. LLF: 146.1889316751022
Iteration: 11, Func. Count: 69, Neg. LLF: 146.18893065101364
Iteration: 12, Func. Count: 74, Neg. LLF: 146.18893067276562
Optimization terminated successfully (Exit mode 0)
Current function value: 146.18893065101364
Iterations: 12
Function evaluations: 74
Gradient evaluations: 12
Iteration: 1, Func. Count: 8, Neg. LLF: 164.1933511881237
Iteration: 2, Func. Count: 16, Neg. LLF: 146.42352177268043
Iteration: 3, Func. Count: 23, Neg. LLF: 146.38455166113042
Iteration: 4, Func. Count: 30, Neg. LLF: 146.67499456585804
Iteration: 5, Func. Count: 38, Neg. LLF: 146.64067345340177
Iteration: 6, Func. Count: 46, Neg. LLF: 146.37749274900565
Iteration: 7, Func. Count: 54, Neg. LLF: 146.34672154233857
Iteration: 8, Func. Count: 61, Neg. LLF: 146.34634105291573
Iteration: 9, Func. Count: 68, Neg. LLF: 146.34633819931287
Iteration: 10, Func. Count: 74, Neg. LLF: 146.34633819943247
Optimization terminated successfully (Exit mode 0)
Current function value: 146.34633819931287
Iterations: 10
Function evaluations: 74
Gradient evaluations: 10
Iteration: 1, Func. Count: 9, Neg. LLF: 168.56865897232095
Iteration: 2, Func. Count: 19, Neg. LLF: 146.42867734089856
Iteration: 3, Func. Count: 27, Neg. LLF: 146.41122255222447
Iteration: 4, Func. Count: 35, Neg. LLF: 146.41012687028604
Iteration: 5, Func. Count: 43, Neg. LLF: 146.407716885647
Iteration: 6, Func. Count: 51, Neg. LLF: 146.40297814329315
Iteration: 7, Func. Count: 59, Neg. LLF: 146.37809039160098
Iteration: 8, Func. Count: 67, Neg. LLF: 146.58855074608022
Iteration: 9, Func. Count: 76, Neg. LLF: 146.36705033593688
Iteration: 10, Func. Count: 85, Neg. LLF: 146.3626231955596
Iteration: 11, Func. Count: 93, Neg. LLF: 146.36096902269284
Iteration: 12, Func. Count: 101, Neg. LLF: 146.35768818860194
Iteration: 13, Func. Count: 109, Neg. LLF: 146.34726140868912
Iteration: 14, Func. Count: 117, Neg. LLF: 146.3465231533698
Iteration: 15, Func. Count: 125, Neg. LLF: 146.34643822225647
Iteration: 16, Func. Count: 133, Neg. LLF: 146.34635822473197
Iteration: 17, Func. Count: 141, Neg. LLF: 146.34634224407773
Iteration: 18, Func. Count: 149, Neg. LLF: 146.34633891166123
Iteration: 19, Func. Count: 157, Neg. LLF: 146.34633817692887
Optimization terminated successfully (Exit mode 0)
Current function value: 146.34633817692887
Iterations: 19
Function evaluations: 157
Gradient evaluations: 19
Iteration: 1, Func. Count: 10, Neg. LLF: 164.1040772480924
Iteration: 2, Func. Count: 20, Neg. LLF: 146.40346615257
Iteration: 3, Func. Count: 29, Neg. LLF: 146.39873074710943
Iteration: 4, Func. Count: 38, Neg. LLF: 146.3901524015102
Iteration: 5, Func. Count: 47, Neg. LLF: 146.38819722834074
Iteration: 6, Func. Count: 56, Neg. LLF: 146.38584568852485
Iteration: 7, Func. Count: 65, Neg. LLF: 146.38271578431124
Iteration: 8, Func. Count: 74, Neg. LLF: 146.37961957126723
Iteration: 9, Func. Count: 83, Neg. LLF: 146.37740381818577
Iteration: 10, Func. Count: 92, Neg. LLF: 146.37577505212687
Iteration: 11, Func. Count: 101, Neg. LLF: 146.37389222167778
Iteration: 12, Func. Count: 110, Neg. LLF: 146.37246865936385
Iteration: 13, Func. Count: 119, Neg. LLF: 146.36901540436688
Iteration: 14, Func. Count: 128, Neg. LLF: 146.36490264482157
Iteration: 15, Func. Count: 137, Neg. LLF: 146.36350080068772
Iteration: 16, Func. Count: 146, Neg. LLF: 146.3589604220775
Iteration: 17, Func. Count: 155, Neg. LLF: 146.35342416840672
Iteration: 18, Func. Count: 164, Neg. LLF: 146.34788632059707
Iteration: 19, Func. Count: 173, Neg. LLF: 146.3474261187364
Iteration: 20, Func. Count: 182, Neg. LLF: 146.3466545974643
Iteration: 21, Func. Count: 191, Neg. LLF: 149.43177387028217
Optimization terminated successfully (Exit mode 0)
Current function value: 146.3466537366767
Iterations: 22
Function evaluations: 195
Gradient evaluations: 21
Iteration: 1, Func. Count: 11, Neg. LLF: 161.28668285401298
Iteration: 2, Func. Count: 22, Neg. LLF: 146.39852055303365
Iteration: 3, Func. Count: 32, Neg. LLF: 146.39726271603095
Iteration: 4, Func. Count: 42, Neg. LLF: 146.3943139479253
Iteration: 5, Func. Count: 52, Neg. LLF: 146.3922841311935
Iteration: 6, Func. Count: 62, Neg. LLF: 146.39090266306232
Iteration: 7, Func. Count: 72, Neg. LLF: 146.3840263217951
Iteration: 8, Func. Count: 82, Neg. LLF: 146.381323771762
Iteration: 9, Func. Count: 92, Neg. LLF: 146.37733807442913
Iteration: 10, Func. Count: 102, Neg. LLF: 146.37553218078273
Iteration: 11, Func. Count: 112, Neg. LLF: 146.3748197325639
Iteration: 12, Func. Count: 122, Neg. LLF: 146.373506417408
Iteration: 13, Func. Count: 132, Neg. LLF: 146.3718593664742
Iteration: 14, Func. Count: 142, Neg. LLF: 146.3700063564979
Iteration: 15, Func. Count: 152, Neg. LLF: 146.3698552395208
Iteration: 16, Func. Count: 162, Neg. LLF: 146.36831965167136
Iteration: 17, Func. Count: 172, Neg. LLF: 146.36531234508715
Iteration: 18, Func. Count: 182, Neg. LLF: 146.36203792685112
Iteration: 19, Func. Count: 192, Neg. LLF: 146.35811229364924
Iteration: 20, Func. Count: 202, Neg. LLF: 146.34752307867603
Iteration: 21, Func. Count: 212, Neg. LLF: 146.34750132491843
Iteration: 22, Func. Count: 223, Neg. LLF: 146.34635299551468
Iteration: 23, Func. Count: 233, Neg. LLF: 146.34633880115064
Iteration: 24, Func. Count: 243, Neg. LLF: 146.34633821523317
Optimization terminated successfully (Exit mode 0)
Current function value: 146.34633821523317
Iterations: 24
Function evaluations: 243
Gradient evaluations: 24
Iteration: 1, Func. Count: 8, Neg. LLF: 151.23849849695068
Iteration: 2, Func. Count: 16, Neg. LLF: 151.2836876647325
Iteration: 3, Func. Count: 24, Neg. LLF: 147.07215817800125
Iteration: 4, Func. Count: 31, Neg. LLF: 146.3899137253055
Iteration: 5, Func. Count: 38, Neg. LLF: 146.2082850721034
Iteration: 6, Func. Count: 45, Neg. LLF: 146.18978443237518
Iteration: 7, Func. Count: 52, Neg. LLF: 146.18933974831492
Iteration: 8, Func. Count: 59, Neg. LLF: 146.18905294337262
Iteration: 9, Func. Count: 66, Neg. LLF: 146.18895629099907
Iteration: 10, Func. Count: 73, Neg. LLF: 146.18893178042597
Iteration: 11, Func. Count: 80, Neg. LLF: 146.1889306483307
Iteration: 12, Func. Count: 86, Neg. LLF: 146.1889307140084
Optimization terminated successfully (Exit mode 0)
Current function value: 146.1889306483307
Iterations: 12
Function evaluations: 86
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 164.21863718222752
Iteration: 2, Func. Count: 18, Neg. LLF: 146.4197167865817
Iteration: 3, Func. Count: 26, Neg. LLF: 146.38030349603895
Iteration: 4, Func. Count: 34, Neg. LLF: 146.6619437691177
Iteration: 5, Func. Count: 43, Neg. LLF: 146.62317474530863
Iteration: 6, Func. Count: 52, Neg. LLF: 146.36098855438928
Iteration: 7, Func. Count: 61, Neg. LLF: 146.34646504882895
Iteration: 8, Func. Count: 69, Neg. LLF: 146.34633986819384
Iteration: 9, Func. Count: 77, Neg. LLF: 146.34633819154942
Iteration: 10, Func. Count: 84, Neg. LLF: 146.34633819167863
Optimization terminated successfully (Exit mode 0)
Current function value: 146.34633819154942
Iterations: 10
Function evaluations: 84
Gradient evaluations: 10
Iteration: 1, Func. Count: 10, Neg. LLF: 168.5561187912176
Iteration: 2, Func. Count: 21, Neg. LLF: 146.42854691067058
Iteration: 3, Func. Count: 30, Neg. LLF: 146.41179765111977
Iteration: 4, Func. Count: 39, Neg. LLF: 146.4104571183139
Iteration: 5, Func. Count: 48, Neg. LLF: 146.40806913066413
Iteration: 6, Func. Count: 57, Neg. LLF: 146.4044878399796
Iteration: 7, Func. Count: 66, Neg. LLF: 146.3803476947431
Iteration: 8, Func. Count: 75, Neg. LLF: 146.57077188293852
Iteration: 9, Func. Count: 85, Neg. LLF: 146.3719659681976
Iteration: 10, Func. Count: 95, Neg. LLF: 146.36221868750548
Iteration: 11, Func. Count: 104, Neg. LLF: 146.36134337756565
Iteration: 12, Func. Count: 113, Neg. LLF: 146.35900201269618
Iteration: 13, Func. Count: 122, Neg. LLF: 146.35101772245812
Iteration: 14, Func. Count: 131, Neg. LLF: 146.34706552407067
Iteration: 15, Func. Count: 140, Neg. LLF: 146.34642764563793
Iteration: 16, Func. Count: 149, Neg. LLF: 146.34636745205952
Iteration: 17, Func. Count: 158, Neg. LLF: 146.34633958915987
Iteration: 18, Func. Count: 167, Neg. LLF: 146.34633819788928
Iteration: 19, Func. Count: 175, Neg. LLF: 146.346338198492
Optimization terminated successfully (Exit mode 0)
Current function value: 146.34633819788928
Iterations: 19
Function evaluations: 175
Gradient evaluations: 19
Iteration: 1, Func. Count: 11, Neg. LLF: 164.04941869605904
Iteration: 2, Func. Count: 22, Neg. LLF: 146.40315329005952
Iteration: 3, Func. Count: 32, Neg. LLF: 146.39862922079922
Iteration: 4, Func. Count: 42, Neg. LLF: 146.39042781991225
Iteration: 5, Func. Count: 52, Neg. LLF: 146.3885329960863
Iteration: 6, Func. Count: 62, Neg. LLF: 146.38617018084724
Iteration: 7, Func. Count: 72, Neg. LLF: 146.38308772452095
Iteration: 8, Func. Count: 82, Neg. LLF: 146.3796622525485
Iteration: 9, Func. Count: 92, Neg. LLF: 146.3772556036631
Iteration: 10, Func. Count: 102, Neg. LLF: 146.37560982519517
Iteration: 11, Func. Count: 112, Neg. LLF: 146.37397877032362
Iteration: 12, Func. Count: 122, Neg. LLF: 146.37257420871785
Iteration: 13, Func. Count: 132, Neg. LLF: 146.3687620104644
Iteration: 14, Func. Count: 142, Neg. LLF: 146.36446392778768
Iteration: 15, Func. Count: 152, Neg. LLF: 146.36375082415162
Iteration: 16, Func. Count: 162, Neg. LLF: 146.36260077470598
Iteration: 17, Func. Count: 172, Neg. LLF: 146.3615601777386
Iteration: 18, Func. Count: 182, Neg. LLF: 146.3583439255656
Iteration: 19, Func. Count: 192, Neg. LLF: 146.34956820351888
Iteration: 20, Func. Count: 202, Neg. LLF: 146.4883691039503
Iteration: 21, Func. Count: 213, Neg. LLF: 146.34675562190878
Iteration: 22, Func. Count: 223, Neg. LLF: 163.91751868989567
Iteration: 23, Func. Count: 237, Neg. LLF: 146.34656371388252
Iteration: 24, Func. Count: 247, Neg. LLF: 146.34648905292713
Iteration: 25, Func. Count: 257, Neg. LLF: 146.34638511720198
Iteration: 26, Func. Count: 267, Neg. LLF: 146.34634450488187
Iteration: 27, Func. Count: 277, Neg. LLF: 146.3463383570626
Iteration: 28, Func. Count: 286, Neg. LLF: 146.34633835861854
Optimization terminated successfully (Exit mode 0)
Current function value: 146.3463383570626
Iterations: 29
Function evaluations: 286
Gradient evaluations: 28
Iteration: 1, Func. Count: 12, Neg. LLF: 161.24125678734706
Iteration: 2, Func. Count: 24, Neg. LLF: 146.39840156463276
Iteration: 3, Func. Count: 35, Neg. LLF: 146.39734451214198
Iteration: 4, Func. Count: 46, Neg. LLF: 146.39452229050823
Iteration: 5, Func. Count: 57, Neg. LLF: 146.39251094150566
Iteration: 6, Func. Count: 68, Neg. LLF: 146.39124481389413
Iteration: 7, Func. Count: 79, Neg. LLF: 146.3848062464667
Iteration: 8, Func. Count: 90, Neg. LLF: 146.38026174083288
Iteration: 9, Func. Count: 101, Neg. LLF: 146.37680805105384
Iteration: 10, Func. Count: 112, Neg. LLF: 146.37528601264785
Iteration: 11, Func. Count: 123, Neg. LLF: 146.37446940357506
Iteration: 12, Func. Count: 134, Neg. LLF: 146.3731001516257
Iteration: 13, Func. Count: 145, Neg. LLF: 146.37114653805364
Iteration: 14, Func. Count: 156, Neg. LLF: 146.3686565616452
Iteration: 15, Func. Count: 167, Neg. LLF: 146.36822118543907
Iteration: 16, Func. Count: 179, Neg. LLF: 146.3661961630853
Iteration: 17, Func. Count: 190, Neg. LLF: 146.36353925144195
Iteration: 18, Func. Count: 201, Neg. LLF: 146.36121634939406
Iteration: 19, Func. Count: 212, Neg. LLF: 146.35585327165984
Iteration: 20, Func. Count: 223, Neg. LLF: 146.34646466974232
Iteration: 21, Func. Count: 234, Neg. LLF: 146.34641704423058
Iteration: 22, Func. Count: 245, Neg. LLF: 146.3463488441532
Iteration: 23, Func. Count: 256, Neg. LLF: 146.34634193376093
Iteration: 24, Func. Count: 267, Neg. LLF: 146.34633986595435
Iteration: 25, Func. Count: 278, Neg. LLF: 146.34633820916025
Iteration: 26, Func. Count: 288, Neg. LLF: 146.3463382120812
Optimization terminated successfully (Exit mode 0)
Current function value: 146.34633820916025
Iterations: 26
Function evaluations: 288
Gradient evaluations: 26
Iteration: 1, Func. Count: 5, Neg. LLF: 149.31797066639726
Iteration: 2, Func. Count: 10, Neg. LLF: 149.3704072958388
Iteration: 3, Func. Count: 15, Neg. LLF: 146.96026552182764
Iteration: 4, Func. Count: 19, Neg. LLF: 146.6692695775585
Iteration: 5, Func. Count: 23, Neg. LLF: 146.58353168688694
Iteration: 6, Func. Count: 27, Neg. LLF: 146.52570310485353
Iteration: 7, Func. Count: 31, Neg. LLF: 146.50588521575978
Iteration: 8, Func. Count: 35, Neg. LLF: 146.50397386636936
Iteration: 9, Func. Count: 39, Neg. LLF: 146.50391067903402
Iteration: 10, Func. Count: 43, Neg. LLF: 146.5039085713782
Iteration: 11, Func. Count: 46, Neg. LLF: 146.50390857138768
Optimization terminated successfully (Exit mode 0)
Current function value: 146.5039085713782
Iterations: 11
Function evaluations: 46
Gradient evaluations: 11
Iteration: 1, Func. Count: 6, Neg. LLF: 163.275317536976
Iteration: 2, Func. Count: 12, Neg. LLF: 146.42948386941072
Iteration: 3, Func. Count: 17, Neg. LLF: 146.4016933593272
Iteration: 4, Func. Count: 22, Neg. LLF: 146.421944673006
Iteration: 5, Func. Count: 28, Neg. LLF: 146.60716350563894
Iteration: 6, Func. Count: 34, Neg. LLF: 146.34723973537479
Iteration: 7, Func. Count: 39, Neg. LLF: 146.34660655057036
Iteration: 8, Func. Count: 44, Neg. LLF: 146.34634523697923
Iteration: 9, Func. Count: 49, Neg. LLF: 146.34633835513782
Iteration: 10, Func. Count: 53, Neg. LLF: 146.34633835515498
Optimization terminated successfully (Exit mode 0)
Current function value: 146.34633835513782
Iterations: 10
Function evaluations: 53
Gradient evaluations: 10
Iteration: 1, Func. Count: 7, Neg. LLF: 168.3122329002454
Iteration: 2, Func. Count: 15, Neg. LLF: 146.42697184535223
Iteration: 3, Func. Count: 21, Neg. LLF: 146.4145684612306
Iteration: 4, Func. Count: 27, Neg. LLF: 146.4132099169705
Iteration: 5, Func. Count: 33, Neg. LLF: 146.41052998396103
Iteration: 6, Func. Count: 39, Neg. LLF: 146.40806555647933
Iteration: 7, Func. Count: 45, Neg. LLF: 146.38268274509974
Iteration: 8, Func. Count: 51, Neg. LLF: 146.56877008568028
Iteration: 9, Func. Count: 58, Neg. LLF: 146.37797498617428
Iteration: 10, Func. Count: 65, Neg. LLF: 146.36212778618042
Iteration: 11, Func. Count: 71, Neg. LLF: 146.36166451331877
Iteration: 12, Func. Count: 77, Neg. LLF: 146.36018185908074
Iteration: 13, Func. Count: 83, Neg. LLF: 146.3564130384412
Iteration: 14, Func. Count: 89, Neg. LLF: 146.34893197360395
Iteration: 15, Func. Count: 95, Neg. LLF: 146.34657968825792
Iteration: 16, Func. Count: 101, Neg. LLF: 146.34649516254828
Iteration: 17, Func. Count: 107, Neg. LLF: 146.34633906621193
Iteration: 18, Func. Count: 113, Neg. LLF: 146.34633822765448
Optimization terminated successfully (Exit mode 0)
Current function value: 146.34633822765448
Iterations: 18
Function evaluations: 113
Gradient evaluations: 18
Iteration: 1, Func. Count: 8, Neg. LLF: 164.1112359593165
Iteration: 2, Func. Count: 16, Neg. LLF: 146.403404499771
Iteration: 3, Func. Count: 23, Neg. LLF: 146.39777104031214
Iteration: 4, Func. Count: 30, Neg. LLF: 146.389877843645
Iteration: 5, Func. Count: 37, Neg. LLF: 146.38790620030517
Iteration: 6, Func. Count: 44, Neg. LLF: 146.38306816659514
Iteration: 7, Func. Count: 51, Neg. LLF: 146.38201669711958
Iteration: 8, Func. Count: 58, Neg. LLF: 146.38015478110214
Iteration: 9, Func. Count: 65, Neg. LLF: 146.37793769075037
Iteration: 10, Func. Count: 72, Neg. LLF: 146.37255946791353
Iteration: 11, Func. Count: 79, Neg. LLF: 146.37172237103803
Iteration: 12, Func. Count: 86, Neg. LLF: 146.36952086889136
Iteration: 13, Func. Count: 93, Neg. LLF: 146.36605256176915
Iteration: 14, Func. Count: 100, Neg. LLF: 146.36286738042276
Iteration: 15, Func. Count: 107, Neg. LLF: 146.35606129950696
Iteration: 16, Func. Count: 114, Neg. LLF: 146.34750580698747
Iteration: 17, Func. Count: 121, Neg. LLF: 146.34654897545605
Iteration: 18, Func. Count: 128, Neg. LLF: 146.3465174080466
Iteration: 19, Func. Count: 136, Neg. LLF: 146.34635800101972
Iteration: 20, Func. Count: 143, Neg. LLF: 146.34633826028514
Iteration: 21, Func. Count: 149, Neg. LLF: 146.34633826196136
Optimization terminated successfully (Exit mode 0)
Current function value: 146.34633826028514
Iterations: 21
Function evaluations: 149
Gradient evaluations: 21
Iteration: 1, Func. Count: 9, Neg. LLF: 161.3737423063525
Iteration: 2, Func. Count: 18, Neg. LLF: 146.39923037200887
Iteration: 3, Func. Count: 26, Neg. LLF: 146.39702423894042
Iteration: 4, Func. Count: 34, Neg. LLF: 146.39252205498948
Iteration: 5, Func. Count: 42, Neg. LLF: 146.3915495581651
Iteration: 6, Func. Count: 50, Neg. LLF: 146.38904153672323
Iteration: 7, Func. Count: 58, Neg. LLF: 146.3793361807198
Iteration: 8, Func. Count: 66, Neg. LLF: 146.37762626660205
Iteration: 9, Func. Count: 74, Neg. LLF: 146.37759330480563
Iteration: 10, Func. Count: 82, Neg. LLF: 146.377517866696
Iteration: 11, Func. Count: 90, Neg. LLF: 146.3773836531551
Iteration: 12, Func. Count: 98, Neg. LLF: 146.3773631546172
Iteration: 13, Func. Count: 106, Neg. LLF: 146.3773590162793
Iteration: 14, Func. Count: 113, Neg. LLF: 146.3773590169085
Optimization terminated successfully (Exit mode 0)
Current function value: 146.3773590162793
Iterations: 14
Function evaluations: 113
Gradient evaluations: 14
Iteration: 1, Func. Count: 6, Neg. LLF: 149.9706139726941
Iteration: 2, Func. Count: 12, Neg. LLF: 150.35393527499122
Iteration: 3, Func. Count: 18, Neg. LLF: 146.71477972477388
Iteration: 4, Func. Count: 23, Neg. LLF: 146.49783666326968
Iteration: 5, Func. Count: 28, Neg. LLF: 146.36124128986324
Iteration: 6, Func. Count: 33, Neg. LLF: 146.2309055635056
Iteration: 7, Func. Count: 38, Neg. LLF: 146.1982549645399
Iteration: 8, Func. Count: 43, Neg. LLF: 146.19414929878266
Iteration: 9, Func. Count: 48, Neg. LLF: 146.19360789996236
Iteration: 10, Func. Count: 53, Neg. LLF: 146.1935524086243
Iteration: 11, Func. Count: 58, Neg. LLF: 146.19355055055152
Iteration: 12, Func. Count: 62, Neg. LLF: 146.19355055055357
Optimization terminated successfully (Exit mode 0)
Current function value: 146.19355055055152
Iterations: 12
Function evaluations: 62
Gradient evaluations: 12
Iteration: 1, Func. Count: 7, Neg. LLF: 169.88933077743454
Iteration: 2, Func. Count: 15, Neg. LLF: 146.53884480293027
Iteration: 3, Func. Count: 21, Neg. LLF: 146.53504861763454
Iteration: 4, Func. Count: 27, Neg. LLF: 146.53579485443936
Iteration: 5, Func. Count: 34, Neg. LLF: 146.53472733614225
Iteration: 6, Func. Count: 40, Neg. LLF: 146.5346878517884
Iteration: 7, Func. Count: 46, Neg. LLF: 146.5343864369066
Iteration: 8, Func. Count: 52, Neg. LLF: 146.53390703936006
Iteration: 9, Func. Count: 58, Neg. LLF: 146.53273780981564
Iteration: 10, Func. Count: 64, Neg. LLF: 146.52670260856254
Iteration: 11, Func. Count: 70, Neg. LLF: 146.529799875285
Iteration: 12, Func. Count: 77, Neg. LLF: 146.52079647230136
Iteration: 13, Func. Count: 84, Neg. LLF: 147.25875335497219
Iteration: 14, Func. Count: 91, Neg. LLF: 153.22001241445227
Iteration: 15, Func. Count: 99, Neg. LLF: 146.63187738868842
Iteration: 16, Func. Count: 106, Neg. LLF: 146.58578561524513
Iteration: 17, Func. Count: 113, Neg. LLF: 146.60437496887732
Iteration: 18, Func. Count: 120, Neg. LLF: 175.658270724911
Iteration: 19, Func. Count: 129, Neg. LLF: 146.8025813655736
Iteration: 20, Func. Count: 136, Neg. LLF: 146.45623784462254
Iteration: 21, Func. Count: 143, Neg. LLF: 146.35342028001236
Iteration: 22, Func. Count: 149, Neg. LLF: 146.34804165745314
Iteration: 23, Func. Count: 155, Neg. LLF: 146.34640093080904
Iteration: 24, Func. Count: 161, Neg. LLF: 146.3463404531851
Iteration: 25, Func. Count: 167, Neg. LLF: 146.34633818484053
Iteration: 26, Func. Count: 172, Neg. LLF: 146.34633818492335
Optimization terminated successfully (Exit mode 0)
Current function value: 146.34633818484053
Iterations: 26
Function evaluations: 172
Gradient evaluations: 26
Iteration: 1, Func. Count: 8, Neg. LLF: 168.19516460583532
Iteration: 2, Func. Count: 17, Neg. LLF: 146.4260780491819
Iteration: 3, Func. Count: 24, Neg. LLF: 146.4181447411117
Iteration: 4, Func. Count: 31, Neg. LLF: 146.41475647207187
Iteration: 5, Func. Count: 38, Neg. LLF: 146.4126758429673
Iteration: 6, Func. Count: 45, Neg. LLF: 146.4105567452271
Iteration: 7, Func. Count: 52, Neg. LLF: 146.39286797265913
Iteration: 8, Func. Count: 59, Neg. LLF: 146.49261886241013
Iteration: 9, Func. Count: 67, Neg. LLF: 146.37639236477827
Iteration: 10, Func. Count: 75, Neg. LLF: 146.36616482423238
Iteration: 11, Func. Count: 82, Neg. LLF: 146.36435722438858
Iteration: 12, Func. Count: 89, Neg. LLF: 146.3614528165076
Iteration: 13, Func. Count: 96, Neg. LLF: 146.3589377381116
Iteration: 14, Func. Count: 103, Neg. LLF: 146.35141983532353
Iteration: 15, Func. Count: 110, Neg. LLF: 146.34652731669533
Iteration: 16, Func. Count: 117, Neg. LLF: 146.34635158387746
Iteration: 17, Func. Count: 124, Neg. LLF: 146.34636680114082
Iteration: 18, Func. Count: 132, Neg. LLF: 146.34633817764635
Iteration: 19, Func. Count: 138, Neg. LLF: 146.34633817827645
Optimization terminated successfully (Exit mode 0)
Current function value: 146.34633817764635
Iterations: 19
Function evaluations: 138
Gradient evaluations: 19
Iteration: 1, Func. Count: 9, Neg. LLF: 163.93993262935558
Iteration: 2, Func. Count: 18, Neg. LLF: 146.40171688055645
Iteration: 3, Func. Count: 26, Neg. LLF: 146.39614891815552
Iteration: 4, Func. Count: 34, Neg. LLF: 146.39138231454666
Iteration: 5, Func. Count: 42, Neg. LLF: 146.38815871233587
Iteration: 6, Func. Count: 50, Neg. LLF: 146.38481977063094
Iteration: 7, Func. Count: 58, Neg. LLF: 146.38302284242826
Iteration: 8, Func. Count: 66, Neg. LLF: 146.38160334089625
Iteration: 9, Func. Count: 74, Neg. LLF: 146.3791134569237
Iteration: 10, Func. Count: 82, Neg. LLF: 146.37510991515725
Iteration: 11, Func. Count: 90, Neg. LLF: 146.37293072213504
Iteration: 12, Func. Count: 98, Neg. LLF: 146.37177220556777
Iteration: 13, Func. Count: 106, Neg. LLF: 146.36968980849338
Iteration: 14, Func. Count: 114, Neg. LLF: 146.36645160625162
Iteration: 15, Func. Count: 122, Neg. LLF: 146.36201254423545
Iteration: 16, Func. Count: 130, Neg. LLF: 146.35886153883956
Iteration: 17, Func. Count: 138, Neg. LLF: 146.34969425183243
Iteration: 18, Func. Count: 146, Neg. LLF: 146.34763478545563
Iteration: 19, Func. Count: 154, Neg. LLF: 146.34659069291985
Iteration: 20, Func. Count: 162, Neg. LLF: 146.3463429483196
Iteration: 21, Func. Count: 170, Neg. LLF: 146.34634143174853
Iteration: 22, Func. Count: 178, Neg. LLF: 146.3463551627733
Optimization terminated successfully (Exit mode 0)
Current function value: 146.3463413334026
Iterations: 22
Function evaluations: 179
Gradient evaluations: 22
Iteration: 1, Func. Count: 10, Neg. LLF: 161.15184222456523
Iteration: 2, Func. Count: 20, Neg. LLF: 146.3988250346753
Iteration: 3, Func. Count: 29, Neg. LLF: 146.39720307245048
Iteration: 4, Func. Count: 38, Neg. LLF: 146.39372478304546
Iteration: 5, Func. Count: 47, Neg. LLF: 146.39187058595988
Iteration: 6, Func. Count: 56, Neg. LLF: 146.38807965950562
Iteration: 7, Func. Count: 65, Neg. LLF: 146.3805141468603
Iteration: 8, Func. Count: 74, Neg. LLF: 146.3635974826621
Iteration: 9, Func. Count: 83, Neg. LLF: 146.34208962366992
Iteration: 10, Func. Count: 92, Neg. LLF: 146.21203119457738
Iteration: 11, Func. Count: 101, Neg. LLF: 176.72454395209783
Iteration: 12, Func. Count: 112, Neg. LLF: 148.11292632875538
Iteration: 13, Func. Count: 123, Neg. LLF: 147.46135677547338
Iteration: 14, Func. Count: 133, Neg. LLF: 146.10129126007783
Iteration: 15, Func. Count: 142, Neg. LLF: 146.00021219780547
Iteration: 16, Func. Count: 151, Neg. LLF: 145.7935625623763
Iteration: 17, Func. Count: 160, Neg. LLF: 145.7838214665056
Iteration: 18, Func. Count: 169, Neg. LLF: 145.7781580596769
Iteration: 19, Func. Count: 178, Neg. LLF: 145.77806302981352
Iteration: 20, Func. Count: 187, Neg. LLF: 145.77805676913732
Iteration: 21, Func. Count: 195, Neg. LLF: 145.77805687085774
Optimization terminated successfully (Exit mode 0)
Current function value: 145.77805676913732
Iterations: 22
Function evaluations: 195
Gradient evaluations: 21
Iteration: 1, Func. Count: 7, Neg. LLF: 152.87888453259757
Iteration: 2, Func. Count: 14, Neg. LLF: 148.76861529098056
Iteration: 3, Func. Count: 21, Neg. LLF: 146.6932188454706
Iteration: 4, Func. Count: 27, Neg. LLF: 146.58710748560478
Iteration: 5, Func. Count: 33, Neg. LLF: 146.45383980248977
Iteration: 6, Func. Count: 39, Neg. LLF: 146.32000963232693
Iteration: 7, Func. Count: 45, Neg. LLF: 146.22740640375997
Iteration: 8, Func. Count: 51, Neg. LLF: 146.19977833319047
Iteration: 9, Func. Count: 57, Neg. LLF: 146.19468511918302
Iteration: 10, Func. Count: 63, Neg. LLF: 146.19359619698082
Iteration: 11, Func. Count: 69, Neg. LLF: 146.1935607894032
Iteration: 12, Func. Count: 75, Neg. LLF: 146.1935506027415
Iteration: 13, Func. Count: 80, Neg. LLF: 146.19355065729988
Optimization terminated successfully (Exit mode 0)
Current function value: 146.1935506027415
Iterations: 13
Function evaluations: 80
Gradient evaluations: 13
Iteration: 1, Func. Count: 8, Neg. LLF: 158.41711725166138
Iteration: 2, Func. Count: 17, Neg. LLF: 146.56487941463172
Iteration: 3, Func. Count: 24, Neg. LLF: 146.53512417082695
Iteration: 4, Func. Count: 31, Neg. LLF: 146.5358174977357
Iteration: 5, Func. Count: 39, Neg. LLF: 146.53469450861226
Iteration: 6, Func. Count: 46, Neg. LLF: 146.5346694531881
Iteration: 7, Func. Count: 53, Neg. LLF: 146.5344757447513
Iteration: 8, Func. Count: 60, Neg. LLF: 146.53243566910444
Iteration: 9, Func. Count: 67, Neg. LLF: 146.52837075422318
Iteration: 10, Func. Count: 74, Neg. LLF: 146.5035455744967
Iteration: 11, Func. Count: 81, Neg. LLF: 146.87883761932048
Iteration: 12, Func. Count: 89, Neg. LLF: 146.7009242808047
Iteration: 13, Func. Count: 97, Neg. LLF: 146.37701992998547
Iteration: 14, Func. Count: 104, Neg. LLF: 164.05591151568942
Iteration: 15, Func. Count: 114, Neg. LLF: 146.3734817582007
Iteration: 16, Func. Count: 121, Neg. LLF: 146.35448749490274
Iteration: 17, Func. Count: 128, Neg. LLF: 146.35341466552813
Iteration: 18, Func. Count: 136, Neg. LLF: 146.34655919654523
Iteration: 19, Func. Count: 143, Neg. LLF: 146.34649496190065
Iteration: 20, Func. Count: 151, Neg. LLF: 146.34633909595706
Iteration: 21, Func. Count: 158, Neg. LLF: 146.34633817895022
Optimization terminated successfully (Exit mode 0)
Current function value: 146.34633817895022
Iterations: 22
Function evaluations: 158
Gradient evaluations: 21
Iteration: 1, Func. Count: 9, Neg. LLF: 168.2854852607359
Iteration: 2, Func. Count: 19, Neg. LLF: 146.4266901623817
Iteration: 3, Func. Count: 27, Neg. LLF: 146.41880212166603
Iteration: 4, Func. Count: 35, Neg. LLF: 146.41374219947772
Iteration: 5, Func. Count: 43, Neg. LLF: 146.4119959172308
Iteration: 6, Func. Count: 51, Neg. LLF: 146.40988220917933
Iteration: 7, Func. Count: 59, Neg. LLF: 146.39675885381166
Iteration: 8, Func. Count: 67, Neg. LLF: 146.44491628181066
Iteration: 9, Func. Count: 76, Neg. LLF: 146.37659865318545
Iteration: 10, Func. Count: 85, Neg. LLF: 146.36667604766544
Iteration: 11, Func. Count: 93, Neg. LLF: 146.36432088919517
Iteration: 12, Func. Count: 101, Neg. LLF: 146.36084261969845
Iteration: 13, Func. Count: 109, Neg. LLF: 146.35762754454652
Iteration: 14, Func. Count: 117, Neg. LLF: 146.34641263971514
Iteration: 15, Func. Count: 125, Neg. LLF: 146.34670166987078
Iteration: 16, Func. Count: 134, Neg. LLF: 146.34633976461416
Iteration: 17, Func. Count: 142, Neg. LLF: 146.3463381711326
Iteration: 18, Func. Count: 149, Neg. LLF: 146.34633817171152
Optimization terminated successfully (Exit mode 0)
Current function value: 146.3463381711326
Iterations: 18
Function evaluations: 149
Gradient evaluations: 18
Iteration: 1, Func. Count: 10, Neg. LLF: 163.9849284287968
Iteration: 2, Func. Count: 20, Neg. LLF: 146.40202723356632
Iteration: 3, Func. Count: 29, Neg. LLF: 146.39638227782777
Iteration: 4, Func. Count: 38, Neg. LLF: 146.39089290108248
Iteration: 5, Func. Count: 47, Neg. LLF: 146.38807678927068
Iteration: 6, Func. Count: 56, Neg. LLF: 146.38413811988312
Iteration: 7, Func. Count: 65, Neg. LLF: 146.38285591955486
Iteration: 8, Func. Count: 74, Neg. LLF: 146.38140342492775
Iteration: 9, Func. Count: 83, Neg. LLF: 146.3787614923298
Iteration: 10, Func. Count: 92, Neg. LLF: 146.37567511983968
Iteration: 11, Func. Count: 101, Neg. LLF: 146.37273062398947
Iteration: 12, Func. Count: 110, Neg. LLF: 146.37066751298505
Iteration: 13, Func. Count: 119, Neg. LLF: 146.36635427623295
Iteration: 14, Func. Count: 128, Neg. LLF: 146.36501716715907
Iteration: 15, Func. Count: 137, Neg. LLF: 146.35968180433704
Iteration: 16, Func. Count: 146, Neg. LLF: 146.35130883641713
Iteration: 17, Func. Count: 155, Neg. LLF: 146.34702148390284
Iteration: 18, Func. Count: 164, Neg. LLF: 146.34644854888887
Iteration: 19, Func. Count: 173, Neg. LLF: 146.34639844858447
Iteration: 20, Func. Count: 182, Neg. LLF: 146.34633948273495
Iteration: 21, Func. Count: 191, Neg. LLF: 146.34633824668867
Iteration: 22, Func. Count: 199, Neg. LLF: 146.34633824817786
Optimization terminated successfully (Exit mode 0)
Current function value: 146.34633824668867
Iterations: 22
Function evaluations: 199
Gradient evaluations: 22
Iteration: 1, Func. Count: 11, Neg. LLF: 161.19895570545063
Iteration: 2, Func. Count: 22, Neg. LLF: 146.39895330022998
Iteration: 3, Func. Count: 32, Neg. LLF: 146.39714967110672
Iteration: 4, Func. Count: 42, Neg. LLF: 146.39312773294495
Iteration: 5, Func. Count: 52, Neg. LLF: 146.39161358136658
Iteration: 6, Func. Count: 62, Neg. LLF: 146.3869774269615
Iteration: 7, Func. Count: 72, Neg. LLF: 146.37761625912313
Iteration: 8, Func. Count: 82, Neg. LLF: 146.37323550450313
Iteration: 9, Func. Count: 92, Neg. LLF: 146.3528681190931
Iteration: 10, Func. Count: 102, Neg. LLF: 146.33142260876616
Iteration: 11, Func. Count: 112, Neg. LLF: 148.8288602362356
Iteration: 12, Func. Count: 123, Neg. LLF: 247.16248102141236
Iteration: 13, Func. Count: 135, Neg. LLF: 156.6183251413438
Iteration: 14, Func. Count: 146, Neg. LLF: 146.12052337411268
Iteration: 15, Func. Count: 156, Neg. LLF: 146.1068036003312
Iteration: 16, Func. Count: 166, Neg. LLF: 146.06955177742645
Iteration: 17, Func. Count: 176, Neg. LLF: 145.84836433788956
Iteration: 18, Func. Count: 186, Neg. LLF: 145.80939488925807
Iteration: 19, Func. Count: 196, Neg. LLF: 145.78070984973724
Iteration: 20, Func. Count: 206, Neg. LLF: 145.7781526293913
Iteration: 21, Func. Count: 216, Neg. LLF: 145.77805731404337
Iteration: 22, Func. Count: 226, Neg. LLF: 145.7780567030913
Optimization terminated successfully (Exit mode 0)
Current function value: 145.7780567030913
Iterations: 23
Function evaluations: 226
Gradient evaluations: 22
Iteration: 1, Func. Count: 8, Neg. LLF: 151.30279967446103
Iteration: 2, Func. Count: 16, Neg. LLF: 148.8257113029816
Iteration: 3, Func. Count: 24, Neg. LLF: 146.74458381129185
Iteration: 4, Func. Count: 31, Neg. LLF: 148.5307792332064
Iteration: 5, Func. Count: 39, Neg. LLF: 147.16322058004084
Iteration: 6, Func. Count: 47, Neg. LLF: 146.4683820116171
Iteration: 7, Func. Count: 54, Neg. LLF: 146.33430917294598
Iteration: 8, Func. Count: 61, Neg. LLF: 146.2209389014827
Iteration: 9, Func. Count: 68, Neg. LLF: 146.19771016789295
Iteration: 10, Func. Count: 75, Neg. LLF: 146.19398610096908
Iteration: 11, Func. Count: 82, Neg. LLF: 146.19359260552716
Iteration: 12, Func. Count: 89, Neg. LLF: 146.193552123857
Iteration: 13, Func. Count: 96, Neg. LLF: 146.19355057779129
Iteration: 14, Func. Count: 102, Neg. LLF: 146.1935505976425
Optimization terminated successfully (Exit mode 0)
Current function value: 146.19355057779129
Iterations: 14
Function evaluations: 102
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 157.6547861437538
Iteration: 2, Func. Count: 19, Neg. LLF: 146.58469701960064
Iteration: 3, Func. Count: 27, Neg. LLF: 146.53514800476836
Iteration: 4, Func. Count: 35, Neg. LLF: 146.53572520336292
Iteration: 5, Func. Count: 44, Neg. LLF: 146.53470737451534
Iteration: 6, Func. Count: 52, Neg. LLF: 146.53468507323092
Iteration: 7, Func. Count: 60, Neg. LLF: 146.53448918003227
Iteration: 8, Func. Count: 68, Neg. LLF: 146.53170954432886
Iteration: 9, Func. Count: 76, Neg. LLF: 146.52631507541201
Iteration: 10, Func. Count: 84, Neg. LLF: 146.48753525875713
Iteration: 11, Func. Count: 92, Neg. LLF: 146.78725707589425
Iteration: 12, Func. Count: 101, Neg. LLF: 146.59940956270398
Iteration: 13, Func. Count: 110, Neg. LLF: 165.43946787382504
Iteration: 14, Func. Count: 121, Neg. LLF: 146.42121842702096
Iteration: 15, Func. Count: 129, Neg. LLF: 146.41794109239476
Iteration: 16, Func. Count: 137, Neg. LLF: 146.3996314465923
Iteration: 17, Func. Count: 145, Neg. LLF: 146.40670636281894
Iteration: 18, Func. Count: 154, Neg. LLF: 146.7007297975123
Iteration: 19, Func. Count: 163, Neg. LLF: 146.34729171825362
Iteration: 20, Func. Count: 171, Neg. LLF: 146.34652430779843
Iteration: 21, Func. Count: 179, Neg. LLF: 146.34680435202665
Iteration: 22, Func. Count: 188, Neg. LLF: 146.34633884027778
Iteration: 23, Func. Count: 196, Neg. LLF: 146.34633817203354
Optimization terminated successfully (Exit mode 0)
Current function value: 146.34633817203354
Iterations: 24
Function evaluations: 196
Gradient evaluations: 23
Iteration: 1, Func. Count: 10, Neg. LLF: 168.2532845642024
Iteration: 2, Func. Count: 20, Neg. LLF: 146.4268942256078
Iteration: 3, Func. Count: 29, Neg. LLF: 146.42384833930328
Iteration: 4, Func. Count: 38, Neg. LLF: 146.41557129183582
Iteration: 5, Func. Count: 47, Neg. LLF: 146.41164561884136
Iteration: 6, Func. Count: 56, Neg. LLF: 146.40917585776342
Iteration: 7, Func. Count: 65, Neg. LLF: 146.40536982609325
Iteration: 8, Func. Count: 74, Neg. LLF: 146.38668611328671
Iteration: 9, Func. Count: 83, Neg. LLF: 146.45315575063617
Iteration: 10, Func. Count: 93, Neg. LLF: 146.372669691122
Iteration: 11, Func. Count: 103, Neg. LLF: 146.36275276045893
Iteration: 12, Func. Count: 112, Neg. LLF: 146.36172852318754
Iteration: 13, Func. Count: 121, Neg. LLF: 146.358546893813
Iteration: 14, Func. Count: 130, Neg. LLF: 146.3471520845264
Iteration: 15, Func. Count: 139, Neg. LLF: 146.34640743282725
Iteration: 16, Func. Count: 148, Neg. LLF: 146.34634098601737
Iteration: 17, Func. Count: 157, Neg. LLF: 146.34634179351744
Iteration: 18, Func. Count: 167, Neg. LLF: 146.34633827850203
Optimization terminated successfully (Exit mode 0)
Current function value: 146.34633827850203
Iterations: 18
Function evaluations: 167
Gradient evaluations: 18
Iteration: 1, Func. Count: 11, Neg. LLF: 163.96043314583196
Iteration: 2, Func. Count: 22, Neg. LLF: 146.40186796409307
Iteration: 3, Func. Count: 32, Neg. LLF: 146.39638440816452
Iteration: 4, Func. Count: 42, Neg. LLF: 146.39091605901083
Iteration: 5, Func. Count: 52, Neg. LLF: 146.38784958880186
Iteration: 6, Func. Count: 62, Neg. LLF: 146.38470605831364
Iteration: 7, Func. Count: 72, Neg. LLF: 146.38255138715672
Iteration: 8, Func. Count: 82, Neg. LLF: 146.38062006950344
Iteration: 9, Func. Count: 92, Neg. LLF: 146.37886935886968
Iteration: 10, Func. Count: 102, Neg. LLF: 146.37491093744902
Iteration: 11, Func. Count: 112, Neg. LLF: 146.37314349055728
Iteration: 12, Func. Count: 122, Neg. LLF: 146.37172681458475
Iteration: 13, Func. Count: 132, Neg. LLF: 146.37060665084263
Iteration: 14, Func. Count: 142, Neg. LLF: 146.36777952104654
Iteration: 15, Func. Count: 152, Neg. LLF: 146.36608409833397
Iteration: 16, Func. Count: 162, Neg. LLF: 146.3610141009181
Iteration: 17, Func. Count: 172, Neg. LLF: 146.35548819519457
Iteration: 18, Func. Count: 182, Neg. LLF: 146.3468923461591
Iteration: 19, Func. Count: 192, Neg. LLF: 146.34639745793942
Iteration: 20, Func. Count: 202, Neg. LLF: 146.3464329122471
Iteration: 21, Func. Count: 213, Neg. LLF: 146.34633992030658
Iteration: 22, Func. Count: 223, Neg. LLF: 146.34633823694642
Iteration: 23, Func. Count: 232, Neg. LLF: 146.3463382387721
Optimization terminated successfully (Exit mode 0)
Current function value: 146.34633823694642
Iterations: 23
Function evaluations: 232
Gradient evaluations: 23
Iteration: 1, Func. Count: 12, Neg. LLF: 161.08996640003187
Iteration: 2, Func. Count: 24, Neg. LLF: 146.39870159147608
Iteration: 3, Func. Count: 35, Neg. LLF: 146.3970525855051
Iteration: 4, Func. Count: 46, Neg. LLF: 146.39336840563135
Iteration: 5, Func. Count: 57, Neg. LLF: 146.39158472695271
Iteration: 6, Func. Count: 68, Neg. LLF: 146.3879204576592
Iteration: 7, Func. Count: 79, Neg. LLF: 146.3780302126125
Iteration: 8, Func. Count: 90, Neg. LLF: 146.3706714646756
Iteration: 9, Func. Count: 101, Neg. LLF: 146.3549861790753
Iteration: 10, Func. Count: 112, Neg. LLF: 146.27172978782752
Iteration: 11, Func. Count: 123, Neg. LLF: 209.69204085883118
Iteration: 12, Func. Count: 136, Neg. LLF: 229.8492251977922
Iteration: 13, Func. Count: 149, Neg. LLF: 162.9568507376119
Iteration: 14, Func. Count: 161, Neg. LLF: 146.22360245109283
Iteration: 15, Func. Count: 173, Neg. LLF: 146.0766783215798
Iteration: 16, Func. Count: 184, Neg. LLF: 146.05570058485912
Iteration: 17, Func. Count: 195, Neg. LLF: 145.87526285359255
Iteration: 18, Func. Count: 206, Neg. LLF: 145.81409932444882
Iteration: 19, Func. Count: 217, Neg. LLF: 146.6753017484892
Iteration: 20, Func. Count: 229, Neg. LLF: 145.77999815414253
Iteration: 21, Func. Count: 240, Neg. LLF: 145.77815555042469
Iteration: 22, Func. Count: 251, Neg. LLF: 145.77805709572897
Iteration: 23, Func. Count: 261, Neg. LLF: 145.7780571972803
Optimization terminated successfully (Exit mode 0)
Current function value: 145.77805709572897
Iterations: 24
Function evaluations: 261
Gradient evaluations: 23
Iteration: 1, Func. Count: 9, Neg. LLF: 151.9830839381524
Iteration: 2, Func. Count: 18, Neg. LLF: 148.41170984401214
Iteration: 3, Func. Count: 27, Neg. LLF: 146.81598363506475
Iteration: 4, Func. Count: 35, Neg. LLF: 148.12253952969093
Iteration: 5, Func. Count: 44, Neg. LLF: 147.22456833117465
Iteration: 6, Func. Count: 53, Neg. LLF: 146.47841638773644
Iteration: 7, Func. Count: 61, Neg. LLF: 146.3835191954519
Iteration: 8, Func. Count: 69, Neg. LLF: 146.22353190695162
Iteration: 9, Func. Count: 77, Neg. LLF: 146.19797120764832
Iteration: 10, Func. Count: 85, Neg. LLF: 146.19403243081572
Iteration: 11, Func. Count: 93, Neg. LLF: 146.1936334353625
Iteration: 12, Func. Count: 101, Neg. LLF: 146.19355313470328
Iteration: 13, Func. Count: 109, Neg. LLF: 146.19355056861178
Iteration: 14, Func. Count: 116, Neg. LLF: 146.19355063130934
Optimization terminated successfully (Exit mode 0)
Current function value: 146.19355056861178
Iterations: 14
Function evaluations: 116
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 157.16401778102264
Iteration: 2, Func. Count: 21, Neg. LLF: 146.59929914510587
Iteration: 3, Func. Count: 30, Neg. LLF: 146.5352055577622
Iteration: 4, Func. Count: 39, Neg. LLF: 146.53582976965197
Iteration: 5, Func. Count: 49, Neg. LLF: 146.53471419146368
Iteration: 6, Func. Count: 58, Neg. LLF: 146.53469286481845
Iteration: 7, Func. Count: 67, Neg. LLF: 146.53449420561105
Iteration: 8, Func. Count: 76, Neg. LLF: 146.53062328395072
Iteration: 9, Func. Count: 85, Neg. LLF: 146.52220591090375
Iteration: 10, Func. Count: 94, Neg. LLF: 146.4515683539629
Iteration: 11, Func. Count: 103, Neg. LLF: 146.58922264839794
Iteration: 12, Func. Count: 113, Neg. LLF: 146.94644462187694
Iteration: 13, Func. Count: 123, Neg. LLF: 202.80750232246345
Iteration: 14, Func. Count: 135, Neg. LLF: 146.3902401679867
Iteration: 15, Func. Count: 144, Neg. LLF: 146.38675835449462
Iteration: 16, Func. Count: 153, Neg. LLF: 146.36555285250014
Iteration: 17, Func. Count: 162, Neg. LLF: 146.56764999517068
Iteration: 18, Func. Count: 172, Neg. LLF: 146.35977287897225
Iteration: 19, Func. Count: 182, Neg. LLF: 146.34638123035305
Iteration: 20, Func. Count: 191, Neg. LLF: 146.3463454552442
Iteration: 21, Func. Count: 200, Neg. LLF: 146.34634651811655
Iteration: 22, Func. Count: 210, Neg. LLF: 146.34633818106462
Optimization terminated successfully (Exit mode 0)
Current function value: 146.34633818106462
Iterations: 23
Function evaluations: 210
Gradient evaluations: 22
Iteration: 1, Func. Count: 11, Neg. LLF: 168.23924518654783
Iteration: 2, Func. Count: 22, Neg. LLF: 146.42675771249597
Iteration: 3, Func. Count: 32, Neg. LLF: 146.4238025599387
Iteration: 4, Func. Count: 42, Neg. LLF: 146.41601674443248
Iteration: 5, Func. Count: 52, Neg. LLF: 146.411736048289
Iteration: 6, Func. Count: 62, Neg. LLF: 146.40931272942132
Iteration: 7, Func. Count: 72, Neg. LLF: 146.4055334518885
Iteration: 8, Func. Count: 82, Neg. LLF: 146.38713995827447
Iteration: 9, Func. Count: 92, Neg. LLF: 146.44600948729658
Iteration: 10, Func. Count: 103, Neg. LLF: 146.37221771541684
Iteration: 11, Func. Count: 114, Neg. LLF: 146.3628475048313
Iteration: 12, Func. Count: 124, Neg. LLF: 146.36168862309228
Iteration: 13, Func. Count: 134, Neg. LLF: 146.35826866072148
Iteration: 14, Func. Count: 144, Neg. LLF: 146.34710691965577
Iteration: 15, Func. Count: 154, Neg. LLF: 146.34638372597553
Iteration: 16, Func. Count: 164, Neg. LLF: 146.34633911512225
Iteration: 17, Func. Count: 174, Neg. LLF: 146.34633995549632
Optimization terminated successfully (Exit mode 0)
Current function value: 146.34633833117817
Iterations: 17
Function evaluations: 175
Gradient evaluations: 17
Iteration: 1, Func. Count: 12, Neg. LLF: 163.9045409234586
Iteration: 2, Func. Count: 24, Neg. LLF: 146.4014207783873
Iteration: 3, Func. Count: 35, Neg. LLF: 146.39604508200662
Iteration: 4, Func. Count: 46, Neg. LLF: 146.39112404318934
Iteration: 5, Func. Count: 57, Neg. LLF: 146.38823189329622
Iteration: 6, Func. Count: 68, Neg. LLF: 146.38515910699834
Iteration: 7, Func. Count: 79, Neg. LLF: 146.3827552604328
Iteration: 8, Func. Count: 90, Neg. LLF: 146.38056769374788
Iteration: 9, Func. Count: 101, Neg. LLF: 146.37892791636526
Iteration: 10, Func. Count: 112, Neg. LLF: 146.37519127813155
Iteration: 11, Func. Count: 123, Neg. LLF: 146.37340871412638
Iteration: 12, Func. Count: 134, Neg. LLF: 146.37175461726088
Iteration: 13, Func. Count: 145, Neg. LLF: 146.37053167731287
Iteration: 14, Func. Count: 156, Neg. LLF: 146.36677442489415
Iteration: 15, Func. Count: 167, Neg. LLF: 146.36592842511888
Iteration: 16, Func. Count: 178, Neg. LLF: 146.36765846756683
Iteration: 17, Func. Count: 190, Neg. LLF: 146.35992170627807
Iteration: 18, Func. Count: 201, Neg. LLF: 146.35304321760862
Iteration: 19, Func. Count: 212, Neg. LLF: 146.34655020717926
Iteration: 20, Func. Count: 223, Neg. LLF: 152.93660987135883
Iteration: 21, Func. Count: 236, Neg. LLF: 194.5824583508368
Iteration: 22, Func. Count: 251, Neg. LLF: 146.34641042569388
Iteration: 23, Func. Count: 263, Neg. LLF: 146.3463780313185
Iteration: 24, Func. Count: 274, Neg. LLF: 146.34634886827462
Iteration: 25, Func. Count: 285, Neg. LLF: 146.34633817607957
Iteration: 26, Func. Count: 295, Neg. LLF: 146.34633817765427
Optimization terminated successfully (Exit mode 0)
Current function value: 146.34633817607957
Iterations: 27
Function evaluations: 295
Gradient evaluations: 26
Iteration: 1, Func. Count: 13, Neg. LLF: 161.04443965221688
Iteration: 2, Func. Count: 26, Neg. LLF: 146.39848136377472
Iteration: 3, Func. Count: 38, Neg. LLF: 146.39695605463038
Iteration: 4, Func. Count: 50, Neg. LLF: 146.3935455522736
Iteration: 5, Func. Count: 62, Neg. LLF: 146.39181606906632
Iteration: 6, Func. Count: 74, Neg. LLF: 146.38678246931624
Iteration: 7, Func. Count: 86, Neg. LLF: 146.37752709798423
Iteration: 8, Func. Count: 98, Neg. LLF: 146.3735547254327
Iteration: 9, Func. Count: 110, Neg. LLF: 146.3590398397397
Iteration: 10, Func. Count: 122, Neg. LLF: 170.65669304558247
Iteration: 11, Func. Count: 135, Neg. LLF: 150.21323540566334
Iteration: 12, Func. Count: 149, Neg. LLF: 146.56762897808105
Iteration: 13, Func. Count: 162, Neg. LLF: 146.20020177611568
Iteration: 14, Func. Count: 174, Neg. LLF: 146.18365641916841
Iteration: 15, Func. Count: 186, Neg. LLF: 146.16919858655118
Iteration: 16, Func. Count: 198, Neg. LLF: 146.0486121611125
Iteration: 17, Func. Count: 210, Neg. LLF: 145.8537510504607
Iteration: 18, Func. Count: 222, Neg. LLF: 145.80753670352618
Iteration: 19, Func. Count: 234, Neg. LLF: 145.78137080518775
Iteration: 20, Func. Count: 246, Neg. LLF: 145.77816377095417
Iteration: 21, Func. Count: 258, Neg. LLF: 145.77805959051506
Iteration: 22, Func. Count: 270, Neg. LLF: 145.77805680463328
Iteration: 23, Func. Count: 281, Neg. LLF: 145.77805690640352
Optimization terminated successfully (Exit mode 0)
Current function value: 145.77805680463328
Iterations: 24
Function evaluations: 281
Gradient evaluations: 23
Iteration: 1, Func. Count: 6, Neg. LLF: 148.92014597364582
Iteration: 2, Func. Count: 12, Neg. LLF: 147.98308209057677
Iteration: 3, Func. Count: 18, Neg. LLF: 146.94576828945955
Iteration: 4, Func. Count: 23, Neg. LLF: 147.66945217954876
Iteration: 5, Func. Count: 29, Neg. LLF: 146.59935968433768
Iteration: 6, Func. Count: 34, Neg. LLF: 146.52973452246042
Iteration: 7, Func. Count: 39, Neg. LLF: 146.50623264680428
Iteration: 8, Func. Count: 44, Neg. LLF: 146.50396846285525
Iteration: 9, Func. Count: 49, Neg. LLF: 146.5039111267368
Iteration: 10, Func. Count: 54, Neg. LLF: 146.5039088200683
Iteration: 11, Func. Count: 58, Neg. LLF: 146.50390889706765
Optimization terminated successfully (Exit mode 0)
Current function value: 146.5039088200683
Iterations: 11
Function evaluations: 58
Gradient evaluations: 11
Iteration: 1, Func. Count: 7, Neg. LLF: 163.3000312726639
Iteration: 2, Func. Count: 14, Neg. LLF: 146.44349006376513
Iteration: 3, Func. Count: 20, Neg. LLF: 146.41441970213336
Iteration: 4, Func. Count: 26, Neg. LLF: 146.35431464974542
Iteration: 5, Func. Count: 32, Neg. LLF: 146.44177553429174
Iteration: 6, Func. Count: 39, Neg. LLF: 146.3468899979152
Iteration: 7, Func. Count: 45, Neg. LLF: 146.346344056707
Iteration: 8, Func. Count: 51, Neg. LLF: 146.3463383398759
Iteration: 9, Func. Count: 56, Neg. LLF: 146.34633833996764
Optimization terminated successfully (Exit mode 0)
Current function value: 146.3463383398759
Iterations: 9
Function evaluations: 56
Gradient evaluations: 9
Iteration: 1, Func. Count: 8, Neg. LLF: 168.4851518011066
Iteration: 2, Func. Count: 17, Neg. LLF: 146.42845847816295
Iteration: 3, Func. Count: 24, Neg. LLF: 146.4126334122774
Iteration: 4, Func. Count: 31, Neg. LLF: 146.4116139805233
Iteration: 5, Func. Count: 38, Neg. LLF: 146.4092382912502
Iteration: 6, Func. Count: 45, Neg. LLF: 146.40566664561928
Iteration: 7, Func. Count: 52, Neg. LLF: 146.39827168039773
Iteration: 8, Func. Count: 59, Neg. LLF: 146.37178946041337
Iteration: 9, Func. Count: 66, Neg. LLF: 146.36800423543602
Iteration: 10, Func. Count: 73, Neg. LLF: 146.36425007601576
Iteration: 11, Func. Count: 80, Neg. LLF: 146.36305384660392
Iteration: 12, Func. Count: 87, Neg. LLF: 146.36098427595041
Iteration: 13, Func. Count: 94, Neg. LLF: 146.35572759608783
Iteration: 14, Func. Count: 101, Neg. LLF: 146.34723858835508
Iteration: 15, Func. Count: 108, Neg. LLF: 146.34637989479654
Iteration: 16, Func. Count: 115, Neg. LLF: 146.34633855210572
Iteration: 17, Func. Count: 121, Neg. LLF: 146.3463385526848
Optimization terminated successfully (Exit mode 0)
Current function value: 146.34633855210572
Iterations: 17
Function evaluations: 121
Gradient evaluations: 17
Iteration: 1, Func. Count: 9, Neg. LLF: 164.09245938544916
Iteration: 2, Func. Count: 18, Neg. LLF: 146.4038210576876
Iteration: 3, Func. Count: 26, Neg. LLF: 146.3988557709398
Iteration: 4, Func. Count: 34, Neg. LLF: 146.38981402296682
Iteration: 5, Func. Count: 42, Neg. LLF: 146.38809524479055
Iteration: 6, Func. Count: 50, Neg. LLF: 146.38590556494674
Iteration: 7, Func. Count: 58, Neg. LLF: 146.3828561593792
Iteration: 8, Func. Count: 66, Neg. LLF: 146.37990623498848
Iteration: 9, Func. Count: 74, Neg. LLF: 146.37769997781072
Iteration: 10, Func. Count: 82, Neg. LLF: 146.37599793728788
Iteration: 11, Func. Count: 90, Neg. LLF: 146.37390120683776
Iteration: 12, Func. Count: 98, Neg. LLF: 146.37243225467168
Iteration: 13, Func. Count: 106, Neg. LLF: 146.36906341636535
Iteration: 14, Func. Count: 114, Neg. LLF: 146.3652280636094
Iteration: 15, Func. Count: 122, Neg. LLF: 146.36411621569874
Iteration: 16, Func. Count: 130, Neg. LLF: 146.36058156463517
Iteration: 17, Func. Count: 138, Neg. LLF: 146.35549132027373
Iteration: 18, Func. Count: 146, Neg. LLF: 146.34750722852726
Iteration: 19, Func. Count: 154, Neg. LLF: 146.3468300305236
Iteration: 20, Func. Count: 162, Neg. LLF: 146.34643030653334
Iteration: 21, Func. Count: 170, Neg. LLF: 146.34635162269936
Iteration: 22, Func. Count: 178, Neg. LLF: 148.4040813509599
Optimization terminated successfully (Exit mode 0)
Current function value: 146.34635111647074
Iterations: 23
Function evaluations: 182
Gradient evaluations: 22
Iteration: 1, Func. Count: 10, Neg. LLF: 161.18340042244097
Iteration: 2, Func. Count: 20, Neg. LLF: 146.39905031397728
Iteration: 3, Func. Count: 29, Neg. LLF: 146.39775667858572
Iteration: 4, Func. Count: 38, Neg. LLF: 146.39481482511684
Iteration: 5, Func. Count: 47, Neg. LLF: 146.39273695015362
Iteration: 6, Func. Count: 56, Neg. LLF: 146.3917853383066
Iteration: 7, Func. Count: 65, Neg. LLF: 146.38633133280044
Iteration: 8, Func. Count: 74, Neg. LLF: 146.37977126703473
Iteration: 9, Func. Count: 83, Neg. LLF: 146.37730061229988
Iteration: 10, Func. Count: 92, Neg. LLF: 146.37624676355549
Iteration: 11, Func. Count: 101, Neg. LLF: 146.37481608935926
Iteration: 12, Func. Count: 110, Neg. LLF: 146.37328632986396
Iteration: 13, Func. Count: 119, Neg. LLF: 146.37149385723197
Iteration: 14, Func. Count: 128, Neg. LLF: 146.37018200078842
Iteration: 15, Func. Count: 137, Neg. LLF: 146.36960870522614
Iteration: 16, Func. Count: 146, Neg. LLF: 146.36848873888954
Iteration: 17, Func. Count: 155, Neg. LLF: 146.3622338034241
Iteration: 18, Func. Count: 164, Neg. LLF: 146.3595918116769
Iteration: 19, Func. Count: 173, Neg. LLF: 146.34972583134896
Iteration: 20, Func. Count: 182, Neg. LLF: 146.3464892447032
Iteration: 21, Func. Count: 191, Neg. LLF: 146.3464782278094
Iteration: 22, Func. Count: 201, Neg. LLF: 146.3463622139236
Iteration: 23, Func. Count: 210, Neg. LLF: 167.35331934922309
Iteration: 24, Func. Count: 223, Neg. LLF: 146.34638278436944
Iteration: 25, Func. Count: 232, Neg. LLF: 146.34633851853295
Optimization terminated successfully (Exit mode 0)
Current function value: 146.34633851562398
Iterations: 26
Function evaluations: 232
Gradient evaluations: 25
Iteration: 1, Func. Count: 7, Neg. LLF: 149.3235651044942
Iteration: 2, Func. Count: 14, Neg. LLF: 151.12635287443157
Iteration: 3, Func. Count: 21, Neg. LLF: 146.77859842072405
Iteration: 4, Func. Count: 27, Neg. LLF: 146.58000190980013
Iteration: 5, Func. Count: 33, Neg. LLF: 146.38767502186963
Iteration: 6, Func. Count: 39, Neg. LLF: 146.26975496955387
Iteration: 7, Func. Count: 45, Neg. LLF: 146.2058446410944
Iteration: 8, Func. Count: 51, Neg. LLF: 146.19492962990861
Iteration: 9, Func. Count: 57, Neg. LLF: 146.19369565525645
Iteration: 10, Func. Count: 63, Neg. LLF: 146.19357280624536
Iteration: 11, Func. Count: 69, Neg. LLF: 146.19355192975527
Iteration: 12, Func. Count: 75, Neg. LLF: 146.1935505728191
Iteration: 13, Func. Count: 80, Neg. LLF: 146.19355057282354
Optimization terminated successfully (Exit mode 0)
Current function value: 146.1935505728191
Iterations: 13
Function evaluations: 80
Gradient evaluations: 13
Iteration: 1, Func. Count: 8, Neg. LLF: 175.70831961202984
Iteration: 2, Func. Count: 17, Neg. LLF: 146.46905141405176
Iteration: 3, Func. Count: 24, Neg. LLF: 146.4683700178464
Iteration: 4, Func. Count: 31, Neg. LLF: 146.46628522455143
Iteration: 5, Func. Count: 38, Neg. LLF: 146.45609260351497
Iteration: 6, Func. Count: 45, Neg. LLF: 146.43688341193237
Iteration: 7, Func. Count: 52, Neg. LLF: 146.99396871716723
Iteration: 8, Func. Count: 60, Neg. LLF: 146.62971755414816
Iteration: 9, Func. Count: 68, Neg. LLF: 146.60182308794356
Iteration: 10, Func. Count: 76, Neg. LLF: 146.81682757690075
Iteration: 11, Func. Count: 84, Neg. LLF: 146.6324789468404
Iteration: 12, Func. Count: 92, Neg. LLF: 146.36526817278764
Iteration: 13, Func. Count: 99, Neg. LLF: 146.3502986079539
Iteration: 14, Func. Count: 106, Neg. LLF: 146.34728211836025
Iteration: 15, Func. Count: 113, Neg. LLF: 146.34634222608736
Iteration: 16, Func. Count: 120, Neg. LLF: 146.34633828906257
Iteration: 17, Func. Count: 126, Neg. LLF: 146.34633828929464
Optimization terminated successfully (Exit mode 0)
Current function value: 146.34633828906257
Iterations: 17
Function evaluations: 126
Gradient evaluations: 17
Iteration: 1, Func. Count: 9, Neg. LLF: 168.36415768225294
Iteration: 2, Func. Count: 19, Neg. LLF: 146.42790641678513
Iteration: 3, Func. Count: 27, Neg. LLF: 146.41749754419473
Iteration: 4, Func. Count: 35, Neg. LLF: 146.41391130249403
Iteration: 5, Func. Count: 43, Neg. LLF: 146.41204156938466
Iteration: 6, Func. Count: 51, Neg. LLF: 146.41005399908286
Iteration: 7, Func. Count: 59, Neg. LLF: 146.39767521916568
Iteration: 8, Func. Count: 67, Neg. LLF: 146.39257850727176
Iteration: 9, Func. Count: 76, Neg. LLF: 146.370404545408
Iteration: 10, Func. Count: 84, Neg. LLF: 146.36546962041487
Iteration: 11, Func. Count: 92, Neg. LLF: 146.36491913229918
Iteration: 12, Func. Count: 100, Neg. LLF: 146.36239524652953
Iteration: 13, Func. Count: 108, Neg. LLF: 146.36062987385822
Iteration: 14, Func. Count: 116, Neg. LLF: 146.3566090246475
Iteration: 15, Func. Count: 124, Neg. LLF: 146.34662589386372
Iteration: 16, Func. Count: 132, Neg. LLF: 146.3463702672461
Iteration: 17, Func. Count: 140, Neg. LLF: 146.3463442285486
Iteration: 18, Func. Count: 148, Neg. LLF: 146.3463448387856
Iteration: 19, Func. Count: 156, Neg. LLF: 146.3463386269797
Optimization terminated successfully (Exit mode 0)
Current function value: 146.34633862661659
Iterations: 19
Function evaluations: 156
Gradient evaluations: 19
Iteration: 1, Func. Count: 10, Neg. LLF: 163.91785184079131
Iteration: 2, Func. Count: 20, Neg. LLF: 146.402196509802
Iteration: 3, Func. Count: 29, Neg. LLF: 146.39732768656177
Iteration: 4, Func. Count: 38, Neg. LLF: 146.39100095888875
Iteration: 5, Func. Count: 47, Neg. LLF: 146.38911468008996
Iteration: 6, Func. Count: 56, Neg. LLF: 146.38640100822386
Iteration: 7, Func. Count: 65, Neg. LLF: 146.38365381787793
Iteration: 8, Func. Count: 74, Neg. LLF: 146.38054849498405
Iteration: 9, Func. Count: 83, Neg. LLF: 146.37852688547883
Iteration: 10, Func. Count: 92, Neg. LLF: 146.3764815712618
Iteration: 11, Func. Count: 101, Neg. LLF: 146.3740119206954
Iteration: 12, Func. Count: 110, Neg. LLF: 146.37247207430067
Iteration: 13, Func. Count: 119, Neg. LLF: 146.36885861272
Iteration: 14, Func. Count: 128, Neg. LLF: 146.36568967522894
Iteration: 15, Func. Count: 137, Neg. LLF: 146.36306516038889
Iteration: 16, Func. Count: 146, Neg. LLF: 146.36016244555444
Iteration: 17, Func. Count: 155, Neg. LLF: 146.3567641332437
Iteration: 18, Func. Count: 164, Neg. LLF: 146.3488661417716
Iteration: 19, Func. Count: 173, Neg. LLF: 146.3476347534177
Iteration: 20, Func. Count: 182, Neg. LLF: 146.34682566684418
Iteration: 21, Func. Count: 191, Neg. LLF: 146.34636134509813
Iteration: 22, Func. Count: 200, Neg. LLF: 146.34633853186276
Iteration: 23, Func. Count: 209, Neg. LLF: 146.3463454730233
Optimization terminated successfully (Exit mode 0)
Current function value: 146.34633848493627
Iterations: 23
Function evaluations: 210
Gradient evaluations: 23
Iteration: 1, Func. Count: 11, Neg. LLF: 160.9642691845536
Iteration: 2, Func. Count: 22, Neg. LLF: 146.39830328521063
Iteration: 3, Func. Count: 32, Neg. LLF: 146.3971962765843
Iteration: 4, Func. Count: 42, Neg. LLF: 146.39483260840677
Iteration: 5, Func. Count: 52, Neg. LLF: 146.39350413849667
Iteration: 6, Func. Count: 62, Neg. LLF: 146.39118811070688
Iteration: 7, Func. Count: 72, Neg. LLF: 146.38623536195993
Iteration: 8, Func. Count: 82, Neg. LLF: 146.3839675804916
Iteration: 9, Func. Count: 92, Neg. LLF: 146.38034747699118
Iteration: 10, Func. Count: 102, Neg. LLF: 146.37849999106453
Iteration: 11, Func. Count: 112, Neg. LLF: 146.3780676051674
Iteration: 12, Func. Count: 122, Neg. LLF: 146.37792218095626
Iteration: 13, Func. Count: 132, Neg. LLF: 146.37522288729156
Iteration: 14, Func. Count: 142, Neg. LLF: 146.3537619106245
Iteration: 15, Func. Count: 152, Neg. LLF: 150.7998057852472
Iteration: 16, Func. Count: 164, Neg. LLF: 173.42078796126148
Iteration: 17, Func. Count: 175, Neg. LLF: 149.05574123459027
Iteration: 18, Func. Count: 187, Neg. LLF: 147.34610851301977
Iteration: 19, Func. Count: 198, Neg. LLF: 146.18041284261747
Iteration: 20, Func. Count: 208, Neg. LLF: 146.16760071543425
Iteration: 21, Func. Count: 218, Neg. LLF: 146.14498194232067
Iteration: 22, Func. Count: 228, Neg. LLF: 145.9551422778612
Iteration: 23, Func. Count: 238, Neg. LLF: 145.910450086849
Iteration: 24, Func. Count: 248, Neg. LLF: 146.3436372997335
Iteration: 25, Func. Count: 259, Neg. LLF: 145.80115120276258
Iteration: 26, Func. Count: 270, Neg. LLF: 145.77827023169215
Iteration: 27, Func. Count: 280, Neg. LLF: 145.77805840436403
Iteration: 28, Func. Count: 290, Neg. LLF: 145.77805682708032
Iteration: 29, Func. Count: 299, Neg. LLF: 145.7780569288833
Optimization terminated successfully (Exit mode 0)
Current function value: 145.77805682708032
Iterations: 30
Function evaluations: 299
Gradient evaluations: 29
Iteration: 1, Func. Count: 8, Neg. LLF: 151.0499939853009
Iteration: 2, Func. Count: 16, Neg. LLF: 151.74704771615868
Iteration: 3, Func. Count: 24, Neg. LLF: 146.75659793626315
Iteration: 4, Func. Count: 31, Neg. LLF: 147.08897376951435
Iteration: 5, Func. Count: 39, Neg. LLF: 153.7746133874561
Iteration: 6, Func. Count: 47, Neg. LLF: 146.48926767701624
Iteration: 7, Func. Count: 54, Neg. LLF: 146.29124258425338
Iteration: 8, Func. Count: 61, Neg. LLF: 146.21868942288674
Iteration: 9, Func. Count: 68, Neg. LLF: 146.1964490261418
Iteration: 10, Func. Count: 75, Neg. LLF: 146.19391642804888
Iteration: 11, Func. Count: 82, Neg. LLF: 146.1935820425717
Iteration: 12, Func. Count: 89, Neg. LLF: 146.19355186435826
Iteration: 13, Func. Count: 96, Neg. LLF: 146.19355057272915
Iteration: 14, Func. Count: 102, Neg. LLF: 146.1935506272963
Optimization terminated successfully (Exit mode 0)
Current function value: 146.19355057272915
Iterations: 14
Function evaluations: 102
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 175.73351289545056
Iteration: 2, Func. Count: 19, Neg. LLF: 146.46948639967
Iteration: 3, Func. Count: 27, Neg. LLF: 146.4687922602967
Iteration: 4, Func. Count: 35, Neg. LLF: 146.46737438554717
Iteration: 5, Func. Count: 43, Neg. LLF: 146.45744147025906
Iteration: 6, Func. Count: 51, Neg. LLF: 146.46633395004196
Iteration: 7, Func. Count: 60, Neg. LLF: 147.11538504819245
Iteration: 8, Func. Count: 69, Neg. LLF: 146.62020360708968
Iteration: 9, Func. Count: 78, Neg. LLF: 146.58841914340633
Iteration: 10, Func. Count: 87, Neg. LLF: 146.7978125509178
Iteration: 11, Func. Count: 96, Neg. LLF: 146.3978704619407
Iteration: 12, Func. Count: 105, Neg. LLF: 146.34932917932747
Iteration: 13, Func. Count: 113, Neg. LLF: 146.347884146958
Iteration: 14, Func. Count: 121, Neg. LLF: 146.34680127727998
Iteration: 15, Func. Count: 129, Neg. LLF: 146.34634792696468
Iteration: 16, Func. Count: 137, Neg. LLF: 146.34633855369077
Iteration: 17, Func. Count: 144, Neg. LLF: 146.34633855365234
Optimization terminated successfully (Exit mode 0)
Current function value: 146.34633855369077
Iterations: 17
Function evaluations: 144
Gradient evaluations: 17
Iteration: 1, Func. Count: 10, Neg. LLF: 168.45590291122605
Iteration: 2, Func. Count: 20, Neg. LLF: 146.42881821231325
Iteration: 3, Func. Count: 29, Neg. LLF: 146.42628407926946
Iteration: 4, Func. Count: 38, Neg. LLF: 146.4190680373048
Iteration: 5, Func. Count: 47, Neg. LLF: 146.41035181542557
Iteration: 6, Func. Count: 56, Neg. LLF: 146.40863523314783
Iteration: 7, Func. Count: 65, Neg. LLF: 146.40584155418387
Iteration: 8, Func. Count: 74, Neg. LLF: 146.39229116746418
Iteration: 9, Func. Count: 83, Neg. LLF: 146.45340607143885
Iteration: 10, Func. Count: 93, Neg. LLF: 146.3732620999753
Iteration: 11, Func. Count: 103, Neg. LLF: 146.3659977147503
Iteration: 12, Func. Count: 112, Neg. LLF: 146.3632584309081
Iteration: 13, Func. Count: 121, Neg. LLF: 146.3604419520766
Iteration: 14, Func. Count: 130, Neg. LLF: 146.3515129912335
Iteration: 15, Func. Count: 139, Neg. LLF: 146.3470277787398
Iteration: 16, Func. Count: 148, Neg. LLF: 146.3498915763442
Iteration: 17, Func. Count: 158, Neg. LLF: 146.34634099954042
Iteration: 18, Func. Count: 167, Neg. LLF: 146.3463381802037
Iteration: 19, Func. Count: 175, Neg. LLF: 146.34633818082222
Optimization terminated successfully (Exit mode 0)
Current function value: 146.3463381802037
Iterations: 19
Function evaluations: 175
Gradient evaluations: 19
Iteration: 1, Func. Count: 11, Neg. LLF: 163.961991727572
Iteration: 2, Func. Count: 22, Neg. LLF: 146.40254084159363
Iteration: 3, Func. Count: 32, Neg. LLF: 146.3977331975825
Iteration: 4, Func. Count: 42, Neg. LLF: 146.39080746462767
Iteration: 5, Func. Count: 52, Neg. LLF: 146.38900070527342
Iteration: 6, Func. Count: 62, Neg. LLF: 146.38642041238657
Iteration: 7, Func. Count: 72, Neg. LLF: 146.38339965247536
Iteration: 8, Func. Count: 82, Neg. LLF: 146.37997041835632
Iteration: 9, Func. Count: 92, Neg. LLF: 146.37765701542654
Iteration: 10, Func. Count: 102, Neg. LLF: 146.37580706179023
Iteration: 11, Func. Count: 112, Neg. LLF: 146.37394740798467
Iteration: 12, Func. Count: 122, Neg. LLF: 146.37239103898807
Iteration: 13, Func. Count: 132, Neg. LLF: 146.36798075403445
Iteration: 14, Func. Count: 142, Neg. LLF: 146.36461856106132
Iteration: 15, Func. Count: 152, Neg. LLF: 146.3637432911136
Iteration: 16, Func. Count: 162, Neg. LLF: 146.35771446303622
Iteration: 17, Func. Count: 172, Neg. LLF: 146.34647415371126
Iteration: 18, Func. Count: 182, Neg. LLF: 207.56705458662378
Iteration: 19, Func. Count: 196, Neg. LLF: 146.34660105417657
Iteration: 20, Func. Count: 207, Neg. LLF: 146.3463468361114
Iteration: 21, Func. Count: 217, Neg. LLF: 146.34634127036358
Iteration: 22, Func. Count: 227, Neg. LLF: 146.34633817139996
Iteration: 23, Func. Count: 236, Neg. LLF: 146.34633817297154
Optimization terminated successfully (Exit mode 0)
Current function value: 146.34633817139996
Iterations: 24
Function evaluations: 236
Gradient evaluations: 23
Iteration: 1, Func. Count: 12, Neg. LLF: 158.49410013236243
Iteration: 2, Func. Count: 24, Neg. LLF: 146.3984304984704
Iteration: 3, Func. Count: 35, Neg. LLF: 146.4478812074369
Iteration: 4, Func. Count: 47, Neg. LLF: 146.353980071455
Iteration: 5, Func. Count: 58, Neg. LLF: 146.18544208517838
Iteration: 6, Func. Count: 69, Neg. LLF: 146.18066353988502
Iteration: 7, Func. Count: 80, Neg. LLF: 146.1778056945117
Iteration: 8, Func. Count: 91, Neg. LLF: 146.1764491715301
Iteration: 9, Func. Count: 102, Neg. LLF: 146.17410050819828
Iteration: 10, Func. Count: 113, Neg. LLF: 146.17159400623285
Iteration: 11, Func. Count: 124, Neg. LLF: 146.16933461588448
Iteration: 12, Func. Count: 135, Neg. LLF: 146.16866939954966
Iteration: 13, Func. Count: 146, Neg. LLF: 146.1685184936221
Iteration: 14, Func. Count: 157, Neg. LLF: 146.1685077724221
Iteration: 15, Func. Count: 167, Neg. LLF: 146.16850777236442
Optimization terminated successfully (Exit mode 0)
Current function value: 146.1685077724221
Iterations: 15
Function evaluations: 167
Gradient evaluations: 15
Iteration: 1, Func. Count: 9, Neg. LLF: 149.9405848633759
Iteration: 2, Func. Count: 18, Neg. LLF: 151.87290858890464
Iteration: 3, Func. Count: 27, Neg. LLF: 146.8131389117698
Iteration: 4, Func. Count: 35, Neg. LLF: 147.11541434969456
Iteration: 5, Func. Count: 44, Neg. LLF: 155.47592141735527
Iteration: 6, Func. Count: 53, Neg. LLF: 147.03573426423563
Iteration: 7, Func. Count: 63, Neg. LLF: 146.44187102182494
Iteration: 8, Func. Count: 71, Neg. LLF: 146.2769569959612
Iteration: 9, Func. Count: 79, Neg. LLF: 146.21553296712133
Iteration: 10, Func. Count: 87, Neg. LLF: 146.19575745183468
Iteration: 11, Func. Count: 95, Neg. LLF: 146.19383012884333
Iteration: 12, Func. Count: 103, Neg. LLF: 146.19359629349464
Iteration: 13, Func. Count: 111, Neg. LLF: 146.19355514356485
Iteration: 14, Func. Count: 119, Neg. LLF: 146.19355071574057
Iteration: 15, Func. Count: 126, Neg. LLF: 146.19355073562423
Optimization terminated successfully (Exit mode 0)
Current function value: 146.19355071574057
Iterations: 15
Function evaluations: 126
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 175.74047580489867
Iteration: 2, Func. Count: 21, Neg. LLF: 146.4700646719496
Iteration: 3, Func. Count: 30, Neg. LLF: 146.4687768729122
Iteration: 4, Func. Count: 39, Neg. LLF: 146.4657246373105
Iteration: 5, Func. Count: 48, Neg. LLF: 146.462035423857
Iteration: 6, Func. Count: 57, Neg. LLF: 146.45398157231486
Iteration: 7, Func. Count: 66, Neg. LLF: 146.42660784030818
Iteration: 8, Func. Count: 75, Neg. LLF: 146.5599704964174
Iteration: 9, Func. Count: 85, Neg. LLF: 146.50893814878563
Iteration: 10, Func. Count: 95, Neg. LLF: 146.39217672159236
Iteration: 11, Func. Count: 104, Neg. LLF: 146.3584355668048
Iteration: 12, Func. Count: 113, Neg. LLF: 146.35446838241685
Iteration: 13, Func. Count: 122, Neg. LLF: 146.34712843388613
Iteration: 14, Func. Count: 131, Neg. LLF: 146.34639552548398
Iteration: 15, Func. Count: 140, Neg. LLF: 146.3463383600354
Iteration: 16, Func. Count: 148, Neg. LLF: 146.34633836037557
Optimization terminated successfully (Exit mode 0)
Current function value: 146.3463383600354
Iterations: 16
Function evaluations: 148
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 168.4239674519048
Iteration: 2, Func. Count: 22, Neg. LLF: 146.42903995315535
Iteration: 3, Func. Count: 32, Neg. LLF: 146.42722990241373
Iteration: 4, Func. Count: 42, Neg. LLF: 146.4201006819066
Iteration: 5, Func. Count: 52, Neg. LLF: 146.41115189435112
Iteration: 6, Func. Count: 62, Neg. LLF: 146.4091902336638
Iteration: 7, Func. Count: 72, Neg. LLF: 146.4030118397097
Iteration: 8, Func. Count: 82, Neg. LLF: 146.39325288322954
Iteration: 9, Func. Count: 92, Neg. LLF: 146.38123829004394
Iteration: 10, Func. Count: 102, Neg. LLF: 146.36908880951415
Iteration: 11, Func. Count: 112, Neg. LLF: 146.36365677257947
Iteration: 12, Func. Count: 122, Neg. LLF: 146.36160909368567
Iteration: 13, Func. Count: 132, Neg. LLF: 146.3610041680115
Iteration: 14, Func. Count: 142, Neg. LLF: 146.35931732584513
Iteration: 15, Func. Count: 152, Neg. LLF: 146.34838740844447
Iteration: 16, Func. Count: 162, Neg. LLF: 146.34680983422123
Iteration: 17, Func. Count: 172, Neg. LLF: 146.3464801161234
Iteration: 18, Func. Count: 182, Neg. LLF: 146.34636718729155
Iteration: 19, Func. Count: 192, Neg. LLF: 146.3463388773136
Iteration: 20, Func. Count: 202, Neg. LLF: 146.3463381905045
Optimization terminated successfully (Exit mode 0)
Current function value: 146.3463381905045
Iterations: 20
Function evaluations: 202
Gradient evaluations: 20
Iteration: 1, Func. Count: 12, Neg. LLF: 163.93729220485076
Iteration: 2, Func. Count: 24, Neg. LLF: 146.40269863449376
Iteration: 3, Func. Count: 35, Neg. LLF: 146.3985988291491
Iteration: 4, Func. Count: 46, Neg. LLF: 146.39136113429055
Iteration: 5, Func. Count: 57, Neg. LLF: 146.38959076287162
Iteration: 6, Func. Count: 68, Neg. LLF: 146.38729207018397
Iteration: 7, Func. Count: 79, Neg. LLF: 146.384529300519
Iteration: 8, Func. Count: 90, Neg. LLF: 146.3808714049043
Iteration: 9, Func. Count: 101, Neg. LLF: 146.3781726574673
Iteration: 10, Func. Count: 112, Neg. LLF: 146.37627061196235
Iteration: 11, Func. Count: 123, Neg. LLF: 146.3744373511538
Iteration: 12, Func. Count: 134, Neg. LLF: 146.37303087131903
Iteration: 13, Func. Count: 145, Neg. LLF: 146.3709929290867
Iteration: 14, Func. Count: 156, Neg. LLF: 146.36595928820768
Iteration: 15, Func. Count: 167, Neg. LLF: 146.36546003108032
Iteration: 16, Func. Count: 178, Neg. LLF: 146.3635020390651
Iteration: 17, Func. Count: 189, Neg. LLF: 146.35825172778308
Iteration: 18, Func. Count: 200, Neg. LLF: 146.35112351833357
Iteration: 19, Func. Count: 211, Neg. LLF: 146.34771320691135
Iteration: 20, Func. Count: 222, Neg. LLF: 146.3463958161361
Iteration: 21, Func. Count: 233, Neg. LLF: 146.3463796941508
Iteration: 22, Func. Count: 245, Neg. LLF: 146.3463426703563
Iteration: 23, Func. Count: 256, Neg. LLF: 146.34635563151173
Optimization terminated successfully (Exit mode 0)
Current function value: 146.34634260539968
Iterations: 23
Function evaluations: 257
Gradient evaluations: 23
Iteration: 1, Func. Count: 13, Neg. LLF: 158.22507674873484
Iteration: 2, Func. Count: 26, Neg. LLF: 146.39863827986932
Iteration: 3, Func. Count: 38, Neg. LLF: 146.428156064394
Iteration: 4, Func. Count: 51, Neg. LLF: 146.33409631259357
Iteration: 5, Func. Count: 63, Neg. LLF: 146.19173535444764
Iteration: 6, Func. Count: 75, Neg. LLF: 146.18492479339034
Iteration: 7, Func. Count: 87, Neg. LLF: 146.17952025289847
Iteration: 8, Func. Count: 99, Neg. LLF: 146.17702747560023
Iteration: 9, Func. Count: 111, Neg. LLF: 146.17588936850495
Iteration: 10, Func. Count: 123, Neg. LLF: 146.1726195233091
Iteration: 11, Func. Count: 135, Neg. LLF: 146.1701476726511
Iteration: 12, Func. Count: 147, Neg. LLF: 146.1687065226922
Iteration: 13, Func. Count: 159, Neg. LLF: 146.16852236419768
Iteration: 14, Func. Count: 171, Neg. LLF: 146.16850770131435
Iteration: 15, Func. Count: 182, Neg. LLF: 146.1685077013228
Optimization terminated successfully (Exit mode 0)
Current function value: 146.16850770131435
Iterations: 15
Function evaluations: 182
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 150.2760856165112
Iteration: 2, Func. Count: 20, Neg. LLF: 150.64674600623457
Iteration: 3, Func. Count: 30, Neg. LLF: 146.7831565518291
Iteration: 4, Func. Count: 39, Neg. LLF: 147.1186934904053
Iteration: 5, Func. Count: 49, Neg. LLF: 157.48776560516202
Iteration: 6, Func. Count: 59, Neg. LLF: 146.89419468160185
Iteration: 7, Func. Count: 70, Neg. LLF: 146.41664954392922
Iteration: 8, Func. Count: 79, Neg. LLF: 146.256849936725
Iteration: 9, Func. Count: 88, Neg. LLF: 146.20461680170166
Iteration: 10, Func. Count: 97, Neg. LLF: 146.1948986829661
Iteration: 11, Func. Count: 106, Neg. LLF: 146.19371271060484
Iteration: 12, Func. Count: 115, Neg. LLF: 146.1935657811363
Iteration: 13, Func. Count: 124, Neg. LLF: 146.19355118140427
Iteration: 14, Func. Count: 133, Neg. LLF: 146.19355057090226
Optimization terminated successfully (Exit mode 0)
Current function value: 146.19355057090226
Iterations: 14
Function evaluations: 133
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 175.7519071018728
Iteration: 2, Func. Count: 23, Neg. LLF: 146.47008198228812
Iteration: 3, Func. Count: 33, Neg. LLF: 146.4686382616378
Iteration: 4, Func. Count: 43, Neg. LLF: 146.46566703932106
Iteration: 5, Func. Count: 53, Neg. LLF: 146.46220510657758
Iteration: 6, Func. Count: 63, Neg. LLF: 146.45360505177746
Iteration: 7, Func. Count: 73, Neg. LLF: 146.42570760516472
Iteration: 8, Func. Count: 83, Neg. LLF: 146.43799307528457
Iteration: 9, Func. Count: 94, Neg. LLF: 146.43924523240833
Iteration: 10, Func. Count: 105, Neg. LLF: 146.35263366381804
Iteration: 11, Func. Count: 115, Neg. LLF: 146.36397546091013
Iteration: 12, Func. Count: 126, Neg. LLF: 146.34634878389014
Iteration: 13, Func. Count: 136, Neg. LLF: 146.34633855289653
Iteration: 14, Func. Count: 145, Neg. LLF: 146.34633855246528
Optimization terminated successfully (Exit mode 0)
Current function value: 146.34633855289653
Iterations: 14
Function evaluations: 145
Gradient evaluations: 14
Iteration: 1, Func. Count: 12, Neg. LLF: 168.4102226263753
Iteration: 2, Func. Count: 24, Neg. LLF: 146.42894654485508
Iteration: 3, Func. Count: 35, Neg. LLF: 146.42724540871737
Iteration: 4, Func. Count: 46, Neg. LLF: 146.42008155224485
Iteration: 5, Func. Count: 57, Neg. LLF: 146.41124623176387
Iteration: 6, Func. Count: 68, Neg. LLF: 146.40925100467376
Iteration: 7, Func. Count: 79, Neg. LLF: 146.4006789164911
Iteration: 8, Func. Count: 90, Neg. LLF: 146.39179187939484
Iteration: 9, Func. Count: 101, Neg. LLF: 146.37767355501543
Iteration: 10, Func. Count: 112, Neg. LLF: 146.36808873770283
Iteration: 11, Func. Count: 123, Neg. LLF: 146.3654930019934
Iteration: 12, Func. Count: 134, Neg. LLF: 146.36330291494713
Iteration: 13, Func. Count: 145, Neg. LLF: 146.36165286908667
Iteration: 14, Func. Count: 156, Neg. LLF: 146.35730842232906
Iteration: 15, Func. Count: 167, Neg. LLF: 146.34681581111303
Iteration: 16, Func. Count: 178, Neg. LLF: 146.3465737046968
Iteration: 17, Func. Count: 189, Neg. LLF: 146.3464147528145
Iteration: 18, Func. Count: 200, Neg. LLF: 146.34634974773127
Iteration: 19, Func. Count: 211, Neg. LLF: 146.3463382059539
Iteration: 20, Func. Count: 221, Neg. LLF: 146.34633820668782
Optimization terminated successfully (Exit mode 0)
Current function value: 146.3463382059539
Iterations: 20
Function evaluations: 221
Gradient evaluations: 20
Iteration: 1, Func. Count: 13, Neg. LLF: 163.88233616652388
Iteration: 2, Func. Count: 26, Neg. LLF: 146.40238047944732
Iteration: 3, Func. Count: 38, Neg. LLF: 146.3985274260321
Iteration: 4, Func. Count: 50, Neg. LLF: 146.39152938431423
Iteration: 5, Func. Count: 62, Neg. LLF: 146.38985104141074
Iteration: 6, Func. Count: 74, Neg. LLF: 146.38766367061962
Iteration: 7, Func. Count: 86, Neg. LLF: 146.38477933151927
Iteration: 8, Func. Count: 98, Neg. LLF: 146.38090320955322
Iteration: 9, Func. Count: 110, Neg. LLF: 146.37795269355715
Iteration: 10, Func. Count: 122, Neg. LLF: 146.37599868161362
Iteration: 11, Func. Count: 134, Neg. LLF: 146.3743804912208
Iteration: 12, Func. Count: 146, Neg. LLF: 146.37304225783876
Iteration: 13, Func. Count: 158, Neg. LLF: 146.37104456613775
Iteration: 14, Func. Count: 170, Neg. LLF: 146.36577166185907
Iteration: 15, Func. Count: 182, Neg. LLF: 146.36540384641646
Iteration: 16, Func. Count: 194, Neg. LLF: 146.3638678117897
Iteration: 17, Func. Count: 206, Neg. LLF: 146.358861435134
Iteration: 18, Func. Count: 218, Neg. LLF: 146.35055627157996
Iteration: 19, Func. Count: 230, Neg. LLF: 146.34764456770844
Iteration: 20, Func. Count: 242, Neg. LLF: 146.34658433566878
Iteration: 21, Func. Count: 254, Neg. LLF: 146.34651054286425
Iteration: 22, Func. Count: 267, Neg. LLF: 146.34634484616168
Iteration: 23, Func. Count: 279, Neg. LLF: 146.34633943452087
Iteration: 24, Func. Count: 291, Neg. LLF: 151.15210055745274
Iteration: 25, Func. Count: 306, Neg. LLF: 146.3463381372883
Optimization terminated successfully (Exit mode 0)
Current function value: 146.34633813571742
Iterations: 26
Function evaluations: 306
Gradient evaluations: 25
Iteration: 1, Func. Count: 14, Neg. LLF: 158.28268781615324
Iteration: 2, Func. Count: 28, Neg. LLF: 146.39857769820225
Iteration: 3, Func. Count: 41, Neg. LLF: 146.42575859051888
Iteration: 4, Func. Count: 55, Neg. LLF: 146.34036767123743
Iteration: 5, Func. Count: 68, Neg. LLF: 146.18845559847293
Iteration: 6, Func. Count: 81, Neg. LLF: 146.18323186174075
Iteration: 7, Func. Count: 94, Neg. LLF: 146.17820554718676
Iteration: 8, Func. Count: 107, Neg. LLF: 146.17679873552194
Iteration: 9, Func. Count: 120, Neg. LLF: 146.17493146580364
Iteration: 10, Func. Count: 133, Neg. LLF: 146.17226278788073
Iteration: 11, Func. Count: 146, Neg. LLF: 146.16959821158852
Iteration: 12, Func. Count: 159, Neg. LLF: 146.16864691974828
Iteration: 13, Func. Count: 172, Neg. LLF: 146.1685148474127
Iteration: 14, Func. Count: 185, Neg. LLF: 146.16850768440676
Iteration: 15, Func. Count: 197, Neg. LLF: 146.16850768440355
Optimization terminated successfully (Exit mode 0)
Current function value: 146.16850768440676
Iterations: 15
Function evaluations: 197
Gradient evaluations: 15
Iteration: 1, Func. Count: 7, Neg. LLF: 148.18592533783468
Iteration: 2, Func. Count: 14, Neg. LLF: 146.98599356102716
Iteration: 3, Func. Count: 20, Neg. LLF: 147.3984661813191
Iteration: 4, Func. Count: 27, Neg. LLF: 146.5840804602469
Iteration: 5, Func. Count: 33, Neg. LLF: 146.51705115416635
Iteration: 6, Func. Count: 39, Neg. LLF: 146.50450134390766
Iteration: 7, Func. Count: 45, Neg. LLF: 146.50395915920882
Iteration: 8, Func. Count: 51, Neg. LLF: 146.50392109268785
Iteration: 9, Func. Count: 57, Neg. LLF: 146.50390870913225
Iteration: 10, Func. Count: 62, Neg. LLF: 146.50390876900295
Optimization terminated successfully (Exit mode 0)
Current function value: 146.50390870913225
Iterations: 10
Function evaluations: 62
Gradient evaluations: 10
Iteration: 1, Func. Count: 8, Neg. LLF: 163.24658475386133
Iteration: 2, Func. Count: 16, Neg. LLF: 146.45089722223827
Iteration: 3, Func. Count: 23, Neg. LLF: 146.41527598562257
Iteration: 4, Func. Count: 30, Neg. LLF: 146.35612529861018
Iteration: 5, Func. Count: 37, Neg. LLF: 146.62963153208975
Iteration: 6, Func. Count: 45, Neg. LLF: 146.34712173715965
Iteration: 7, Func. Count: 52, Neg. LLF: 146.3463902352279
Iteration: 8, Func. Count: 59, Neg. LLF: 146.34633899437281
Iteration: 9, Func. Count: 66, Neg. LLF: 146.3463382261025
Optimization terminated successfully (Exit mode 0)
Current function value: 146.3463382261025
Iterations: 9
Function evaluations: 66
Gradient evaluations: 9
Iteration: 1, Func. Count: 9, Neg. LLF: 168.41675425423654
Iteration: 2, Func. Count: 19, Neg. LLF: 146.4285961026513
Iteration: 3, Func. Count: 27, Neg. LLF: 146.41327657435332
Iteration: 4, Func. Count: 35, Neg. LLF: 146.41203892868245
Iteration: 5, Func. Count: 43, Neg. LLF: 146.40955382925287
Iteration: 6, Func. Count: 51, Neg. LLF: 146.4063549850051
Iteration: 7, Func. Count: 59, Neg. LLF: 146.38948262395584
Iteration: 8, Func. Count: 67, Neg. LLF: 146.41785297548904
Iteration: 9, Func. Count: 76, Neg. LLF: 146.3732623747065
Iteration: 10, Func. Count: 85, Neg. LLF: 146.36185460567813
Iteration: 11, Func. Count: 93, Neg. LLF: 146.3613813820608
Iteration: 12, Func. Count: 101, Neg. LLF: 146.3599728467588
Iteration: 13, Func. Count: 109, Neg. LLF: 146.35184043269757
Iteration: 14, Func. Count: 117, Neg. LLF: 146.34786511366963
Iteration: 15, Func. Count: 125, Neg. LLF: 146.34676974450923
Iteration: 16, Func. Count: 133, Neg. LLF: 146.34639277772547
Iteration: 17, Func. Count: 141, Neg. LLF: 146.3463385732092
Iteration: 18, Func. Count: 148, Neg. LLF: 146.34633857339554
Optimization terminated successfully (Exit mode 0)
Current function value: 146.3463385732092
Iterations: 18
Function evaluations: 148
Gradient evaluations: 18
Iteration: 1, Func. Count: 10, Neg. LLF: 163.96162721162128
Iteration: 2, Func. Count: 20, Neg. LLF: 146.40349401122054
Iteration: 3, Func. Count: 29, Neg. LLF: 146.39981550877175
Iteration: 4, Func. Count: 38, Neg. LLF: 146.39122598717415
Iteration: 5, Func. Count: 47, Neg. LLF: 146.38948424305678
Iteration: 6, Func. Count: 56, Neg. LLF: 146.38737822553367
Iteration: 7, Func. Count: 65, Neg. LLF: 146.3849945897747
Iteration: 8, Func. Count: 74, Neg. LLF: 146.38169958164542
Iteration: 9, Func. Count: 83, Neg. LLF: 146.3791027802514
Iteration: 10, Func. Count: 92, Neg. LLF: 146.37719466829617
Iteration: 11, Func. Count: 101, Neg. LLF: 146.37507625754031
Iteration: 12, Func. Count: 110, Neg. LLF: 146.37346973984046
Iteration: 13, Func. Count: 119, Neg. LLF: 146.37171344255268
Iteration: 14, Func. Count: 128, Neg. LLF: 146.36815100634942
Iteration: 15, Func. Count: 137, Neg. LLF: 146.36594601836694
Iteration: 16, Func. Count: 146, Neg. LLF: 146.3618122347803
Iteration: 17, Func. Count: 155, Neg. LLF: 146.356346002324
Iteration: 18, Func. Count: 164, Neg. LLF: 146.3494280964786
Iteration: 19, Func. Count: 173, Neg. LLF: 146.34873908478073
Iteration: 20, Func. Count: 182, Neg. LLF: 146.34707474571243
Iteration: 21, Func. Count: 191, Neg. LLF: 146.3464313804359
Iteration: 22, Func. Count: 200, Neg. LLF: 146.34655385933942
Iteration: 23, Func. Count: 210, Neg. LLF: 146.3463491070093
Iteration: 24, Func. Count: 219, Neg. LLF: 146.34634379309477
Iteration: 25, Func. Count: 228, Neg. LLF: 162.5720374565419
Iteration: 26, Func. Count: 240, Neg. LLF: 146.34633817720726
Optimization terminated successfully (Exit mode 0)
Current function value: 146.34633817563733
Iterations: 27
Function evaluations: 240
Gradient evaluations: 26
Iteration: 1, Func. Count: 11, Neg. LLF: 161.0485162818364
Iteration: 2, Func. Count: 22, Neg. LLF: 146.39856624875557
Iteration: 3, Func. Count: 32, Neg. LLF: 146.39811144604477
Iteration: 4, Func. Count: 43, Neg. LLF: 146.39525508697545
Iteration: 5, Func. Count: 53, Neg. LLF: 146.3931532125537
Iteration: 6, Func. Count: 63, Neg. LLF: 146.39195485750338
Iteration: 7, Func. Count: 73, Neg. LLF: 146.38574927080788
Iteration: 8, Func. Count: 83, Neg. LLF: 146.38270564477793
Iteration: 9, Func. Count: 93, Neg. LLF: 146.37955389025512
Iteration: 10, Func. Count: 103, Neg. LLF: 146.37722902363043
Iteration: 11, Func. Count: 113, Neg. LLF: 146.37656129224953
Iteration: 12, Func. Count: 123, Neg. LLF: 146.37482638490522
Iteration: 13, Func. Count: 133, Neg. LLF: 146.37298243597246
Iteration: 14, Func. Count: 143, Neg. LLF: 146.3660658487031
Iteration: 15, Func. Count: 153, Neg. LLF: 146.3638003378155
Iteration: 16, Func. Count: 163, Neg. LLF: 146.3627479986779
Iteration: 17, Func. Count: 173, Neg. LLF: 146.3621492698582
Iteration: 18, Func. Count: 183, Neg. LLF: 146.36122973336646
Iteration: 19, Func. Count: 193, Neg. LLF: 146.3564350192263
Iteration: 20, Func. Count: 203, Neg. LLF: 146.34635942781378
Iteration: 21, Func. Count: 213, Neg. LLF: 146.34636456824714
Iteration: 22, Func. Count: 224, Neg. LLF: 167.41203487556444
Iteration: 23, Func. Count: 238, Neg. LLF: 146.34634417625236
Iteration: 24, Func. Count: 248, Neg. LLF: 146.34633819912284
Optimization terminated successfully (Exit mode 0)
Current function value: 146.34633819619364
Iterations: 25
Function evaluations: 248
Gradient evaluations: 24
Iteration: 1, Func. Count: 8, Neg. LLF: 148.2570153700522
Iteration: 2, Func. Count: 16, Neg. LLF: 146.99411700163134
Iteration: 3, Func. Count: 23, Neg. LLF: 146.74164328649053
Iteration: 4, Func. Count: 30, Neg. LLF: 147.30617958168702
Iteration: 5, Func. Count: 38, Neg. LLF: 146.43347871672765
Iteration: 6, Func. Count: 45, Neg. LLF: 146.33865513484076
Iteration: 7, Func. Count: 52, Neg. LLF: 146.2535784379466
Iteration: 8, Func. Count: 59, Neg. LLF: 146.2079635529891
Iteration: 9, Func. Count: 66, Neg. LLF: 146.19553065024502
Iteration: 10, Func. Count: 73, Neg. LLF: 146.1939066969903
Iteration: 11, Func. Count: 80, Neg. LLF: 146.19357753959267
Iteration: 12, Func. Count: 87, Neg. LLF: 146.1935509923755
Iteration: 13, Func. Count: 93, Neg. LLF: 146.19355099237893
Optimization terminated successfully (Exit mode 0)
Current function value: 146.1935509923755
Iterations: 13
Function evaluations: 93
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 175.70274740756105
Iteration: 2, Func. Count: 19, Neg. LLF: 146.46990973772805
Iteration: 3, Func. Count: 27, Neg. LLF: 146.4681639923905
Iteration: 4, Func. Count: 35, Neg. LLF: 146.46604421005037
Iteration: 5, Func. Count: 43, Neg. LLF: 146.46298926330425
Iteration: 6, Func. Count: 51, Neg. LLF: 146.4494815024643
Iteration: 7, Func. Count: 59, Neg. LLF: 146.4686918943134
Iteration: 8, Func. Count: 68, Neg. LLF: 146.689774059489
Iteration: 9, Func. Count: 77, Neg. LLF: 146.63736213472117
Iteration: 10, Func. Count: 86, Neg. LLF: 146.61344207004157
Iteration: 11, Func. Count: 95, Neg. LLF: 146.7060590373879
Iteration: 12, Func. Count: 104, Neg. LLF: 146.41236259850288
Iteration: 13, Func. Count: 113, Neg. LLF: 146.34878406984373
Iteration: 14, Func. Count: 121, Neg. LLF: 146.34663690600863
Iteration: 15, Func. Count: 129, Neg. LLF: 146.34634347031468
Iteration: 16, Func. Count: 137, Neg. LLF: 146.34633819259957
Iteration: 17, Func. Count: 144, Neg. LLF: 146.3463381925516
Optimization terminated successfully (Exit mode 0)
Current function value: 146.34633819259957
Iterations: 17
Function evaluations: 144
Gradient evaluations: 17
Iteration: 1, Func. Count: 10, Neg. LLF: 168.2938600417669
Iteration: 2, Func. Count: 21, Neg. LLF: 146.42816962509843
Iteration: 3, Func. Count: 30, Neg. LLF: 146.4178250753129
Iteration: 4, Func. Count: 39, Neg. LLF: 146.41479078055838
Iteration: 5, Func. Count: 48, Neg. LLF: 146.4125395694895
Iteration: 6, Func. Count: 57, Neg. LLF: 146.41072050005303
Iteration: 7, Func. Count: 66, Neg. LLF: 146.40146152079254
Iteration: 8, Func. Count: 75, Neg. LLF: 146.3680783389084
Iteration: 9, Func. Count: 84, Neg. LLF: 146.36779822811047
Iteration: 10, Func. Count: 94, Neg. LLF: 146.364059757688
Iteration: 11, Func. Count: 103, Neg. LLF: 146.36143443069255
Iteration: 12, Func. Count: 112, Neg. LLF: 146.35722898990454
Iteration: 13, Func. Count: 121, Neg. LLF: 146.34794478272755
Iteration: 14, Func. Count: 130, Neg. LLF: 146.34722724611856
Iteration: 15, Func. Count: 139, Neg. LLF: 146.34670377571132
Iteration: 16, Func. Count: 148, Neg. LLF: 146.346340784701
Iteration: 17, Func. Count: 157, Neg. LLF: 146.34633817210903
Iteration: 18, Func. Count: 165, Neg. LLF: 146.34633817263892
Optimization terminated successfully (Exit mode 0)
Current function value: 146.34633817210903
Iterations: 18
Function evaluations: 165
Gradient evaluations: 18
Iteration: 1, Func. Count: 11, Neg. LLF: 163.78761602174004
Iteration: 2, Func. Count: 22, Neg. LLF: 146.4017636506358
Iteration: 3, Func. Count: 32, Neg. LLF: 146.39822403126428
Iteration: 4, Func. Count: 42, Neg. LLF: 146.39205929490782
Iteration: 5, Func. Count: 52, Neg. LLF: 146.3904277201108
Iteration: 6, Func. Count: 62, Neg. LLF: 146.38827867008877
Iteration: 7, Func. Count: 72, Neg. LLF: 146.38540439957706
Iteration: 8, Func. Count: 82, Neg. LLF: 146.38232559236138
Iteration: 9, Func. Count: 92, Neg. LLF: 146.3798037030652
Iteration: 10, Func. Count: 102, Neg. LLF: 146.3779972114822
Iteration: 11, Func. Count: 112, Neg. LLF: 146.37507254828478
Iteration: 12, Func. Count: 122, Neg. LLF: 146.37352609672016
Iteration: 13, Func. Count: 132, Neg. LLF: 146.37165666021468
Iteration: 14, Func. Count: 142, Neg. LLF: 146.37021398553972
Iteration: 15, Func. Count: 152, Neg. LLF: 146.36747610468444
Iteration: 16, Func. Count: 162, Neg. LLF: 146.36572035999956
Iteration: 17, Func. Count: 172, Neg. LLF: 146.36336454544795
Iteration: 18, Func. Count: 182, Neg. LLF: 146.3593568850444
Iteration: 19, Func. Count: 192, Neg. LLF: 146.3565104195176
Iteration: 20, Func. Count: 202, Neg. LLF: 146.34769467433972
Iteration: 21, Func. Count: 212, Neg. LLF: 146.3487436477896
Iteration: 22, Func. Count: 223, Neg. LLF: 146.34653854771395
Iteration: 23, Func. Count: 234, Neg. LLF: 146.34633904008766
Iteration: 24, Func. Count: 244, Neg. LLF: 146.3463381722743
Optimization terminated successfully (Exit mode 0)
Current function value: 146.3463381722743
Iterations: 24
Function evaluations: 244
Gradient evaluations: 24
Iteration: 1, Func. Count: 12, Neg. LLF: 160.83099002157803
Iteration: 2, Func. Count: 24, Neg. LLF: 146.3977341635998
Iteration: 3, Func. Count: 35, Neg. LLF: 146.397364359001
Iteration: 4, Func. Count: 47, Neg. LLF: 146.3953070124746
Iteration: 5, Func. Count: 58, Neg. LLF: 146.39402506991473
Iteration: 6, Func. Count: 69, Neg. LLF: 146.39015899315956
Iteration: 7, Func. Count: 80, Neg. LLF: 146.38405403122584
Iteration: 8, Func. Count: 91, Neg. LLF: 146.3822560933412
Iteration: 9, Func. Count: 102, Neg. LLF: 146.3746326437627
Iteration: 10, Func. Count: 113, Neg. LLF: 146.32671360207576
Iteration: 11, Func. Count: 124, Neg. LLF: 146.19950658285765
Iteration: 12, Func. Count: 135, Neg. LLF: 146.07744553722782
Iteration: 13, Func. Count: 146, Neg. LLF: 145.86491192302114
Iteration: 14, Func. Count: 157, Neg. LLF: 146.89233097356885
Iteration: 15, Func. Count: 169, Neg. LLF: 993.5172973935155
Iteration: 16, Func. Count: 183, Neg. LLF: 146.88948377803644
Iteration: 17, Func. Count: 195, Neg. LLF: 145.7943448247174
Iteration: 18, Func. Count: 206, Neg. LLF: 145.77929069156897
Iteration: 19, Func. Count: 217, Neg. LLF: 145.77849557140686
Iteration: 20, Func. Count: 228, Neg. LLF: 145.7780653833031
Iteration: 21, Func. Count: 239, Neg. LLF: 145.77805717312663
Iteration: 22, Func. Count: 249, Neg. LLF: 145.77805727497056
Optimization terminated successfully (Exit mode 0)
Current function value: 145.77805717312663
Iterations: 23
Function evaluations: 249
Gradient evaluations: 22
Iteration: 1, Func. Count: 9, Neg. LLF: 148.7085171552244
Iteration: 2, Func. Count: 18, Neg. LLF: 147.86493024418908
Iteration: 3, Func. Count: 27, Neg. LLF: 146.90687089242437
Iteration: 4, Func. Count: 35, Neg. LLF: 146.61814501296433
Iteration: 5, Func. Count: 43, Neg. LLF: 147.13109321203757
Iteration: 6, Func. Count: 53, Neg. LLF: 146.42580054249487
Iteration: 7, Func. Count: 61, Neg. LLF: 146.26173003193514
Iteration: 8, Func. Count: 69, Neg. LLF: 146.22196955360474
Iteration: 9, Func. Count: 77, Neg. LLF: 146.1953204613699
Iteration: 10, Func. Count: 85, Neg. LLF: 146.19376180502223
Iteration: 11, Func. Count: 93, Neg. LLF: 146.19358734077227
Iteration: 12, Func. Count: 101, Neg. LLF: 146.19355326671553
Iteration: 13, Func. Count: 109, Neg. LLF: 146.1935505879878
Iteration: 14, Func. Count: 116, Neg. LLF: 146.19355053341494
Optimization terminated successfully (Exit mode 0)
Current function value: 146.1935505879878
Iterations: 14
Function evaluations: 116
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 175.72824904673075
Iteration: 2, Func. Count: 21, Neg. LLF: 146.47054101993896
Iteration: 3, Func. Count: 30, Neg. LLF: 146.46842329701357
Iteration: 4, Func. Count: 39, Neg. LLF: 146.4660261466142
Iteration: 5, Func. Count: 48, Neg. LLF: 146.46376319985842
Iteration: 6, Func. Count: 57, Neg. LLF: 146.44980842700116
Iteration: 7, Func. Count: 66, Neg. LLF: 146.44132566428294
Iteration: 8, Func. Count: 75, Neg. LLF: 146.42638016379698
Iteration: 9, Func. Count: 85, Neg. LLF: 146.3954395362232
Iteration: 10, Func. Count: 94, Neg. LLF: 146.3470901237398
Iteration: 11, Func. Count: 103, Neg. LLF: 146.34642762582888
Iteration: 12, Func. Count: 112, Neg. LLF: 146.3463726700239
Iteration: 13, Func. Count: 121, Neg. LLF: 146.34633833144343
Iteration: 14, Func. Count: 129, Neg. LLF: 146.34633833118963
Optimization terminated successfully (Exit mode 0)
Current function value: 146.34633833144343
Iterations: 14
Function evaluations: 129
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 168.38551024923407
Iteration: 2, Func. Count: 22, Neg. LLF: 146.4292038753122
Iteration: 3, Func. Count: 32, Neg. LLF: 146.42787069129173
Iteration: 4, Func. Count: 42, Neg. LLF: 146.42044396704168
Iteration: 5, Func. Count: 52, Neg. LLF: 146.41233545960438
Iteration: 6, Func. Count: 62, Neg. LLF: 146.41082382935159
Iteration: 7, Func. Count: 72, Neg. LLF: 146.40757470165738
Iteration: 8, Func. Count: 82, Neg. LLF: 146.40157373010967
Iteration: 9, Func. Count: 92, Neg. LLF: 146.37928862781237
Iteration: 10, Func. Count: 102, Neg. LLF: 146.3739452133894
Iteration: 11, Func. Count: 112, Neg. LLF: 146.36349332024238
Iteration: 12, Func. Count: 122, Neg. LLF: 146.36112368303867
Iteration: 13, Func. Count: 132, Neg. LLF: 146.36075130286866
Iteration: 14, Func. Count: 142, Neg. LLF: 146.36011031733756
Iteration: 15, Func. Count: 152, Neg. LLF: 146.35938537535242
Iteration: 16, Func. Count: 162, Neg. LLF: 146.35588020597177
Iteration: 17, Func. Count: 172, Neg. LLF: 146.34969124366683
Iteration: 18, Func. Count: 182, Neg. LLF: 146.3466423969387
Iteration: 19, Func. Count: 192, Neg. LLF: 146.3463439048087
Iteration: 20, Func. Count: 202, Neg. LLF: 146.3463401125896
Iteration: 21, Func. Count: 212, Neg. LLF: 146.34633825105584
Iteration: 22, Func. Count: 221, Neg. LLF: 146.34633825152991
Optimization terminated successfully (Exit mode 0)
Current function value: 146.34633825105584
Iterations: 22
Function evaluations: 221
Gradient evaluations: 22
Iteration: 1, Func. Count: 12, Neg. LLF: 163.8323530212734
Iteration: 2, Func. Count: 24, Neg. LLF: 146.40218832316515
Iteration: 3, Func. Count: 35, Neg. LLF: 146.39873777306354
Iteration: 4, Func. Count: 46, Neg. LLF: 146.391882026589
Iteration: 5, Func. Count: 57, Neg. LLF: 146.390251580967
Iteration: 6, Func. Count: 68, Neg. LLF: 146.3881603175471
Iteration: 7, Func. Count: 79, Neg. LLF: 146.3852212167458
Iteration: 8, Func. Count: 90, Neg. LLF: 146.3817398318384
Iteration: 9, Func. Count: 101, Neg. LLF: 146.37891271530725
Iteration: 10, Func. Count: 112, Neg. LLF: 146.37699864660203
Iteration: 11, Func. Count: 123, Neg. LLF: 146.37478052764143
Iteration: 12, Func. Count: 134, Neg. LLF: 146.37331424104258
Iteration: 13, Func. Count: 145, Neg. LLF: 146.3716143831717
Iteration: 14, Func. Count: 156, Neg. LLF: 146.3690252162626
Iteration: 15, Func. Count: 167, Neg. LLF: 146.3667438750885
Iteration: 16, Func. Count: 178, Neg. LLF: 146.36534195081046
Iteration: 17, Func. Count: 189, Neg. LLF: 146.36241027937328
Iteration: 18, Func. Count: 200, Neg. LLF: 146.36082693767716
Iteration: 19, Func. Count: 211, Neg. LLF: 146.3576549873758
Iteration: 20, Func. Count: 222, Neg. LLF: 146.34840137818568
Iteration: 21, Func. Count: 233, Neg. LLF: 146.34731338675348
Iteration: 22, Func. Count: 244, Neg. LLF: 146.34637883522626
Iteration: 23, Func. Count: 255, Neg. LLF: 146.34634382396786
Iteration: 24, Func. Count: 266, Neg. LLF: 146.3463392677348
Iteration: 25, Func. Count: 277, Neg. LLF: 146.34633820563812
Iteration: 26, Func. Count: 287, Neg. LLF: 146.3463382073667
Optimization terminated successfully (Exit mode 0)
Current function value: 146.34633820563812
Iterations: 26
Function evaluations: 287
Gradient evaluations: 26
Iteration: 1, Func. Count: 13, Neg. LLF: 157.64449908125735
Iteration: 2, Func. Count: 26, Neg. LLF: 146.39797472731004
Iteration: 3, Func. Count: 38, Neg. LLF: 146.46948662764433
Iteration: 4, Func. Count: 51, Neg. LLF: 146.38971671113606
Iteration: 5, Func. Count: 63, Neg. LLF: 146.37295786401342
Iteration: 6, Func. Count: 75, Neg. LLF: 146.31188190009755
Iteration: 7, Func. Count: 87, Neg. LLF: 146.27372358745632
Iteration: 8, Func. Count: 99, Neg. LLF: 149.30315685118984
Iteration: 9, Func. Count: 113, Neg. LLF: 146.18386545877962
Iteration: 10, Func. Count: 125, Neg. LLF: 146.17446388428235
Iteration: 11, Func. Count: 137, Neg. LLF: 146.1721147849254
Iteration: 12, Func. Count: 149, Neg. LLF: 146.171605256956
Iteration: 13, Func. Count: 161, Neg. LLF: 146.1711585106593
Iteration: 14, Func. Count: 173, Neg. LLF: 146.16997825445378
Iteration: 15, Func. Count: 185, Neg. LLF: 146.16895579012044
Iteration: 16, Func. Count: 197, Neg. LLF: 146.16855782880737
Iteration: 17, Func. Count: 209, Neg. LLF: 146.1685106870272
Iteration: 18, Func. Count: 221, Neg. LLF: 146.16850775901125
Iteration: 19, Func. Count: 232, Neg. LLF: 146.168507759032
Optimization terminated successfully (Exit mode 0)
Current function value: 146.16850775901125
Iterations: 19
Function evaluations: 232
Gradient evaluations: 19
Iteration: 1, Func. Count: 10, Neg. LLF: 148.27454569787096
Iteration: 2, Func. Count: 20, Neg. LLF: 147.0929718023213
Iteration: 3, Func. Count: 29, Neg. LLF: 147.48192652220075
Iteration: 4, Func. Count: 39, Neg. LLF: 150.53170556927765
Iteration: 5, Func. Count: 49, Neg. LLF: 146.9479176391129
Iteration: 6, Func. Count: 59, Neg. LLF: 146.8728923125288
Iteration: 7, Func. Count: 69, Neg. LLF: 146.33130811975076
Iteration: 8, Func. Count: 78, Neg. LLF: 146.26734677906975
Iteration: 9, Func. Count: 87, Neg. LLF: 146.2028448227849
Iteration: 10, Func. Count: 96, Neg. LLF: 146.19467067345178
Iteration: 11, Func. Count: 105, Neg. LLF: 146.19375195707804
Iteration: 12, Func. Count: 114, Neg. LLF: 146.19356875136884
Iteration: 13, Func. Count: 123, Neg. LLF: 146.19355087207825
Iteration: 14, Func. Count: 131, Neg. LLF: 146.1935508919415
Optimization terminated successfully (Exit mode 0)
Current function value: 146.19355087207825
Iterations: 14
Function evaluations: 131
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 158.84434405403817
Iteration: 2, Func. Count: 23, Neg. LLF: 146.47378068465508
Iteration: 3, Func. Count: 33, Neg. LLF: 146.46613489324022
Iteration: 4, Func. Count: 43, Neg. LLF: 146.4834518920846
Iteration: 5, Func. Count: 54, Neg. LLF: 146.46314659900682
Iteration: 6, Func. Count: 64, Neg. LLF: 146.45406816254933
Iteration: 7, Func. Count: 74, Neg. LLF: 146.4417702261255
Iteration: 8, Func. Count: 84, Neg. LLF: 146.41819083366366
Iteration: 9, Func. Count: 94, Neg. LLF: 146.4933529195353
Iteration: 10, Func. Count: 105, Neg. LLF: 146.37474430137613
Iteration: 11, Func. Count: 116, Neg. LLF: 146.3483249556711
Iteration: 12, Func. Count: 126, Neg. LLF: 146.3519644755818
Iteration: 13, Func. Count: 137, Neg. LLF: 146.34695137911226
Iteration: 14, Func. Count: 147, Neg. LLF: 146.34634584971565
Iteration: 15, Func. Count: 157, Neg. LLF: 146.34633821965866
Iteration: 16, Func. Count: 166, Neg. LLF: 146.34633821975652
Optimization terminated successfully (Exit mode 0)
Current function value: 146.34633821965866
Iterations: 16
Function evaluations: 166
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 151.32225747689589
Iteration: 2, Func. Count: 25, Neg. LLF: 146.46160917249378
Iteration: 3, Func. Count: 36, Neg. LLF: 146.5574921608909
Iteration: 4, Func. Count: 48, Neg. LLF: 146.55289202997713
Iteration: 5, Func. Count: 60, Neg. LLF: 146.4384575863636
Iteration: 6, Func. Count: 72, Neg. LLF: 146.4009272566998
Iteration: 7, Func. Count: 83, Neg. LLF: 146.3997617403355
Iteration: 8, Func. Count: 94, Neg. LLF: 146.39861128183975
Iteration: 9, Func. Count: 105, Neg. LLF: 146.39231715963447
Iteration: 10, Func. Count: 116, Neg. LLF: 146.36780705017364
Iteration: 11, Func. Count: 127, Neg. LLF: 146.3661359137685
Iteration: 12, Func. Count: 139, Neg. LLF: 146.36105222986393
Iteration: 13, Func. Count: 150, Neg. LLF: 146.36066324331472
Iteration: 14, Func. Count: 161, Neg. LLF: 146.36010110899434
Iteration: 15, Func. Count: 172, Neg. LLF: 146.35882006475302
Iteration: 16, Func. Count: 183, Neg. LLF: 146.357666728158
Iteration: 17, Func. Count: 194, Neg. LLF: 146.3492286759161
Iteration: 18, Func. Count: 205, Neg. LLF: 146.35935748418254
Iteration: 19, Func. Count: 217, Neg. LLF: 146.34638558745854
Iteration: 20, Func. Count: 228, Neg. LLF: 146.34633932430714
Iteration: 21, Func. Count: 239, Neg. LLF: 146.34633818085175
Iteration: 22, Func. Count: 249, Neg. LLF: 146.34633818150027
Optimization terminated successfully (Exit mode 0)
Current function value: 146.34633818085175
Iterations: 22
Function evaluations: 249
Gradient evaluations: 22
Iteration: 1, Func. Count: 13, Neg. LLF: 150.81919971933502
Iteration: 2, Func. Count: 27, Neg. LLF: 146.4281311322673
Iteration: 3, Func. Count: 39, Neg. LLF: 146.31595420030175
Iteration: 4, Func. Count: 51, Neg. LLF: 146.42355488988866
Iteration: 5, Func. Count: 64, Neg. LLF: 146.3741674207002
Iteration: 6, Func. Count: 77, Neg. LLF: 146.26072003481477
Iteration: 7, Func. Count: 89, Neg. LLF: 146.2539675047953
Iteration: 8, Func. Count: 101, Neg. LLF: 146.251668468451
Iteration: 9, Func. Count: 113, Neg. LLF: 146.2510024912202
Iteration: 10, Func. Count: 125, Neg. LLF: 146.2529688931829
Iteration: 11, Func. Count: 138, Neg. LLF: 146.25059322070854
Iteration: 12, Func. Count: 150, Neg. LLF: 146.23982436150797
Iteration: 13, Func. Count: 162, Neg. LLF: 146.19845049522493
Iteration: 14, Func. Count: 174, Neg. LLF: 146.175033256939
Iteration: 15, Func. Count: 186, Neg. LLF: 146.03654650745165
Iteration: 16, Func. Count: 198, Neg. LLF: 145.91873616611073
Iteration: 17, Func. Count: 210, Neg. LLF: 145.84850093256188
Iteration: 18, Func. Count: 222, Neg. LLF: 145.736846040477
Iteration: 19, Func. Count: 234, Neg. LLF: 145.7544775086502
Iteration: 20, Func. Count: 247, Neg. LLF: 145.63842746972935
Iteration: 21, Func. Count: 260, Neg. LLF: 28793492.91048627
Iteration: 22, Func. Count: 274, Neg. LLF: 146.08925255181916
Iteration: 23, Func. Count: 287, Neg. LLF: 145.71175686175326
Iteration: 24, Func. Count: 300, Neg. LLF: 145.58809034085226
Iteration: 25, Func. Count: 312, Neg. LLF: 145.5841198934045
Iteration: 26, Func. Count: 324, Neg. LLF: 145.58446782697848
Iteration: 27, Func. Count: 337, Neg. LLF: 145.58357411110515
Iteration: 28, Func. Count: 349, Neg. LLF: 145.58351676070092
Iteration: 29, Func. Count: 360, Neg. LLF: 145.5835166969022
Optimization terminated successfully (Exit mode 0)
Current function value: 145.58351676070092
Iterations: 30
Function evaluations: 360
Gradient evaluations: 29
Iteration: 1, Func. Count: 14, Neg. LLF: 152.51080929088437
Iteration: 2, Func. Count: 29, Neg. LLF: 146.40622623533946
Iteration: 3, Func. Count: 42, Neg. LLF: 146.3555123508613
Iteration: 4, Func. Count: 55, Neg. LLF: 146.3256008576116
Iteration: 5, Func. Count: 68, Neg. LLF: 146.35933872078408
Iteration: 6, Func. Count: 82, Neg. LLF: 146.308226979494
Iteration: 7, Func. Count: 95, Neg. LLF: 146.30469266486395
Iteration: 8, Func. Count: 108, Neg. LLF: 146.30415817339878
Iteration: 9, Func. Count: 121, Neg. LLF: 146.30399652742796
Iteration: 10, Func. Count: 134, Neg. LLF: 146.3039438564057
Iteration: 11, Func. Count: 147, Neg. LLF: 146.3037271049896
Iteration: 12, Func. Count: 160, Neg. LLF: 146.3034100254947
Iteration: 13, Func. Count: 173, Neg. LLF: 146.3030574212155
Iteration: 14, Func. Count: 186, Neg. LLF: 146.30289291258035
Iteration: 15, Func. Count: 199, Neg. LLF: 146.3028552251414
Iteration: 16, Func. Count: 212, Neg. LLF: 146.3028528443032
Iteration: 17, Func. Count: 224, Neg. LLF: 146.30285284431014
Optimization terminated successfully (Exit mode 0)
Current function value: 146.3028528443032
Iterations: 17
Function evaluations: 224
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 148.18364002738144
Iteration: 2, Func. Count: 22, Neg. LLF: 147.18531606965317
Iteration: 3, Func. Count: 33, Neg. LLF: 147.19886666291688
Iteration: 4, Func. Count: 44, Neg. LLF: 147.02223535153524
Iteration: 5, Func. Count: 55, Neg. LLF: 146.63720011546405
Iteration: 6, Func. Count: 65, Neg. LLF: 146.36395932760206
Iteration: 7, Func. Count: 75, Neg. LLF: 146.28479660683846
Iteration: 8, Func. Count: 85, Neg. LLF: 146.22249315263315
Iteration: 9, Func. Count: 95, Neg. LLF: 146.1986691291424
Iteration: 10, Func. Count: 105, Neg. LLF: 146.19385867326122
Iteration: 11, Func. Count: 115, Neg. LLF: 146.1935746258032
Iteration: 12, Func. Count: 125, Neg. LLF: 146.1935546248063
Iteration: 13, Func. Count: 135, Neg. LLF: 146.19355091293707
Iteration: 14, Func. Count: 144, Neg. LLF: 146.19355097564642
Optimization terminated successfully (Exit mode 0)
Current function value: 146.19355091293707
Iterations: 14
Function evaluations: 144
Gradient evaluations: 14
Iteration: 1, Func. Count: 12, Neg. LLF: 158.83248376840515
Iteration: 2, Func. Count: 25, Neg. LLF: 146.4738773016252
Iteration: 3, Func. Count: 36, Neg. LLF: 146.46586511139623
Iteration: 4, Func. Count: 47, Neg. LLF: 146.4770860672844
Iteration: 5, Func. Count: 59, Neg. LLF: 146.4628292954816
Iteration: 6, Func. Count: 70, Neg. LLF: 146.45673882262395
Iteration: 7, Func. Count: 81, Neg. LLF: 146.44881926251347
Iteration: 8, Func. Count: 92, Neg. LLF: 146.4252499152352
Iteration: 9, Func. Count: 103, Neg. LLF: 146.3953338215805
Iteration: 10, Func. Count: 114, Neg. LLF: 146.72469809364003
Iteration: 11, Func. Count: 126, Neg. LLF: 146.50550076781025
Iteration: 12, Func. Count: 138, Neg. LLF: 146.34752535217933
Iteration: 13, Func. Count: 149, Neg. LLF: 146.34753710674974
Iteration: 14, Func. Count: 161, Neg. LLF: 146.35044002698427
Iteration: 15, Func. Count: 173, Neg. LLF: 146.34633819681088
Iteration: 16, Func. Count: 183, Neg. LLF: 146.34633819675037
Optimization terminated successfully (Exit mode 0)
Current function value: 146.34633819681088
Iterations: 16
Function evaluations: 183
Gradient evaluations: 16
Iteration: 1, Func. Count: 13, Neg. LLF: 151.31282860047565
Iteration: 2, Func. Count: 27, Neg. LLF: 146.462754935357
Iteration: 3, Func. Count: 39, Neg. LLF: 146.5559816252691
Iteration: 4, Func. Count: 52, Neg. LLF: 146.56749028015355
Iteration: 5, Func. Count: 65, Neg. LLF: 146.43734946635044
Iteration: 6, Func. Count: 78, Neg. LLF: 146.40092937610046
Iteration: 7, Func. Count: 90, Neg. LLF: 146.3997456595511
Iteration: 8, Func. Count: 102, Neg. LLF: 146.3986395602599
Iteration: 9, Func. Count: 114, Neg. LLF: 146.39263433926158
Iteration: 10, Func. Count: 126, Neg. LLF: 146.36890853801225
Iteration: 11, Func. Count: 138, Neg. LLF: 146.3685481415356
Iteration: 12, Func. Count: 151, Neg. LLF: 146.361313025035
Iteration: 13, Func. Count: 163, Neg. LLF: 146.3609347677392
Iteration: 14, Func. Count: 175, Neg. LLF: 146.36085985120434
Iteration: 15, Func. Count: 188, Neg. LLF: 146.35979541181956
Iteration: 16, Func. Count: 200, Neg. LLF: 146.35306743712317
Iteration: 17, Func. Count: 212, Neg. LLF: 146.34642949603037
Iteration: 18, Func. Count: 224, Neg. LLF: 146.34639410553206
Iteration: 19, Func. Count: 236, Neg. LLF: 146.34634301617564
Iteration: 20, Func. Count: 248, Neg. LLF: 148.3864004140675
Optimization terminated successfully (Exit mode 0)
Current function value: 146.34634252459927
Iterations: 21
Function evaluations: 252
Gradient evaluations: 20
Iteration: 1, Func. Count: 14, Neg. LLF: 150.7841127303334
Iteration: 2, Func. Count: 29, Neg. LLF: 146.4290752228392
Iteration: 3, Func. Count: 42, Neg. LLF: 146.30936246784412
Iteration: 4, Func. Count: 55, Neg. LLF: 146.41874107096515
Iteration: 5, Func. Count: 69, Neg. LLF: 146.37147794155777
Iteration: 6, Func. Count: 83, Neg. LLF: 146.2579269252229
Iteration: 7, Func. Count: 96, Neg. LLF: 146.25239368001502
Iteration: 8, Func. Count: 109, Neg. LLF: 146.25137213754405
Iteration: 9, Func. Count: 122, Neg. LLF: 146.25100877881482
Iteration: 10, Func. Count: 135, Neg. LLF: 146.25312386753743
Iteration: 11, Func. Count: 149, Neg. LLF: 146.2504257599333
Iteration: 12, Func. Count: 162, Neg. LLF: 146.2398875698368
Iteration: 13, Func. Count: 175, Neg. LLF: 146.2358146043739
Iteration: 14, Func. Count: 189, Neg. LLF: 146.18329254094107
Iteration: 15, Func. Count: 202, Neg. LLF: 146.07762549954057
Iteration: 16, Func. Count: 215, Neg. LLF: 145.92514826298287
Iteration: 17, Func. Count: 228, Neg. LLF: 777.8152954239531
Iteration: 18, Func. Count: 243, Neg. LLF: 281.60672089493556
Iteration: 19, Func. Count: 258, Neg. LLF: 146.55717676110078
Iteration: 20, Func. Count: 272, Neg. LLF: 147.3482431287867
Iteration: 21, Func. Count: 286, Neg. LLF: 145.90025851250613
Iteration: 22, Func. Count: 300, Neg. LLF: 145.72260016732724
Iteration: 23, Func. Count: 314, Neg. LLF: 145.58947406217035
Iteration: 24, Func. Count: 327, Neg. LLF: 145.58436093273195
Iteration: 25, Func. Count: 340, Neg. LLF: 145.58363874534083
Iteration: 26, Func. Count: 353, Neg. LLF: 145.58352378638105
Iteration: 27, Func. Count: 366, Neg. LLF: 145.58351678292377
Iteration: 28, Func. Count: 378, Neg. LLF: 145.58351671903853
Optimization terminated successfully (Exit mode 0)
Current function value: 145.58351678292377
Iterations: 29
Function evaluations: 378
Gradient evaluations: 28
Iteration: 1, Func. Count: 15, Neg. LLF: 152.44542222837123
Iteration: 2, Func. Count: 31, Neg. LLF: 146.40666753281732
Iteration: 3, Func. Count: 45, Neg. LLF: 146.35487379679432
Iteration: 4, Func. Count: 59, Neg. LLF: 146.32454272988244
Iteration: 5, Func. Count: 73, Neg. LLF: 146.38640477620584
Iteration: 6, Func. Count: 88, Neg. LLF: 146.3080561010916
Iteration: 7, Func. Count: 102, Neg. LLF: 146.3044212000737
Iteration: 8, Func. Count: 116, Neg. LLF: 146.3040691751453
Iteration: 9, Func. Count: 130, Neg. LLF: 146.30398302554707
Iteration: 10, Func. Count: 144, Neg. LLF: 146.30390574439645
Iteration: 11, Func. Count: 158, Neg. LLF: 146.30374519734906
Iteration: 12, Func. Count: 172, Neg. LLF: 146.3034514606769
Iteration: 13, Func. Count: 186, Neg. LLF: 146.3031075393951
Iteration: 14, Func. Count: 200, Neg. LLF: 146.3029076771748
Iteration: 15, Func. Count: 214, Neg. LLF: 146.30285691652426
Iteration: 16, Func. Count: 228, Neg. LLF: 146.30285290321206
Iteration: 17, Func. Count: 241, Neg. LLF: 146.30285290322664
Optimization terminated successfully (Exit mode 0)
Current function value: 146.30285290321206
Iterations: 17
Function evaluations: 241
Gradient evaluations: 17
Iteration: 1, Func. Count: 8, Neg. LLF: 148.10229085560547
Iteration: 2, Func. Count: 15, Neg. LLF: 147.79260882219603
Iteration: 3, Func. Count: 22, Neg. LLF: 146.7982220376605
Iteration: 4, Func. Count: 29, Neg. LLF: 146.69217969469216
Iteration: 5, Func. Count: 36, Neg. LLF: 146.62977541381227
Iteration: 6, Func. Count: 43, Neg. LLF: 146.55394986982694
Iteration: 7, Func. Count: 50, Neg. LLF: 146.50841754986746
Iteration: 8, Func. Count: 57, Neg. LLF: 146.50413733367486
Iteration: 9, Func. Count: 64, Neg. LLF: 146.50391127181896
Iteration: 10, Func. Count: 71, Neg. LLF: 146.5039084590482
Iteration: 11, Func. Count: 77, Neg. LLF: 146.5039086088958
Optimization terminated successfully (Exit mode 0)
Current function value: 146.5039084590482
Iterations: 11
Function evaluations: 77
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 163.2028120160061
Iteration: 2, Func. Count: 18, Neg. LLF: 146.45329921781953
Iteration: 3, Func. Count: 26, Neg. LLF: 146.41315654345706
Iteration: 4, Func. Count: 34, Neg. LLF: 146.35563413498022
Iteration: 5, Func. Count: 42, Neg. LLF: 146.6008584647756
Iteration: 6, Func. Count: 51, Neg. LLF: 146.34708533533998
Iteration: 7, Func. Count: 59, Neg. LLF: 146.34638510265248
Iteration: 8, Func. Count: 67, Neg. LLF: 146.34633881568772
Iteration: 9, Func. Count: 75, Neg. LLF: 146.3463382097373
Optimization terminated successfully (Exit mode 0)
Current function value: 146.3463382097373
Iterations: 9
Function evaluations: 75
Gradient evaluations: 9
Iteration: 1, Func. Count: 10, Neg. LLF: 168.46909174863086
Iteration: 2, Func. Count: 21, Neg. LLF: 146.4293023674281
Iteration: 3, Func. Count: 30, Neg. LLF: 146.41331345211574
Iteration: 4, Func. Count: 39, Neg. LLF: 146.41126052465185
Iteration: 5, Func. Count: 48, Neg. LLF: 146.40893953186588
Iteration: 6, Func. Count: 57, Neg. LLF: 146.40594091842866
Iteration: 7, Func. Count: 66, Neg. LLF: 146.38980655426553
Iteration: 8, Func. Count: 75, Neg. LLF: 146.41946007804918
Iteration: 9, Func. Count: 85, Neg. LLF: 146.37064392561837
Iteration: 10, Func. Count: 95, Neg. LLF: 146.36244123095057
Iteration: 11, Func. Count: 104, Neg. LLF: 146.36079817642465
Iteration: 12, Func. Count: 113, Neg. LLF: 146.35630056288687
Iteration: 13, Func. Count: 122, Neg. LLF: 146.34722955454185
Iteration: 14, Func. Count: 131, Neg. LLF: 146.34668618716321
Iteration: 15, Func. Count: 140, Neg. LLF: 146.34637785466822
Iteration: 16, Func. Count: 149, Neg. LLF: 146.3463405574526
Iteration: 17, Func. Count: 158, Neg. LLF: 146.3463381938119
Iteration: 18, Func. Count: 166, Neg. LLF: 146.34633819451383
Optimization terminated successfully (Exit mode 0)
Current function value: 146.3463381938119
Iterations: 18
Function evaluations: 166
Gradient evaluations: 18
Iteration: 1, Func. Count: 11, Neg. LLF: 164.04369214442445
Iteration: 2, Func. Count: 22, Neg. LLF: 146.40406664848322
Iteration: 3, Func. Count: 32, Neg. LLF: 146.40041546624107
Iteration: 4, Func. Count: 42, Neg. LLF: 146.3911532417548
Iteration: 5, Func. Count: 52, Neg. LLF: 146.3892740036922
Iteration: 6, Func. Count: 62, Neg. LLF: 146.3871425334636
Iteration: 7, Func. Count: 72, Neg. LLF: 146.384764017068
Iteration: 8, Func. Count: 82, Neg. LLF: 146.3816733334945
Iteration: 9, Func. Count: 92, Neg. LLF: 146.37924558743745
Iteration: 10, Func. Count: 102, Neg. LLF: 146.37743101734011
Iteration: 11, Func. Count: 112, Neg. LLF: 146.37521776186048
Iteration: 12, Func. Count: 122, Neg. LLF: 146.37352053373615
Iteration: 13, Func. Count: 132, Neg. LLF: 146.37177992140988
Iteration: 14, Func. Count: 142, Neg. LLF: 146.3686494049802
Iteration: 15, Func. Count: 152, Neg. LLF: 146.36605740809205
Iteration: 16, Func. Count: 162, Neg. LLF: 146.3615895329152
Iteration: 17, Func. Count: 172, Neg. LLF: 146.35725178657611
Iteration: 18, Func. Count: 182, Neg. LLF: 146.34855700558126
Iteration: 19, Func. Count: 192, Neg. LLF: 146.3506701968853
Iteration: 20, Func. Count: 203, Neg. LLF: 146.34637501837094
Iteration: 21, Func. Count: 213, Neg. LLF: 146.34636047008593
Iteration: 22, Func. Count: 223, Neg. LLF: 146.34634448352878
Iteration: 23, Func. Count: 233, Neg. LLF: 146.34634177847846
Iteration: 24, Func. Count: 243, Neg. LLF: 146.3463465837879
Optimization terminated successfully (Exit mode 0)
Current function value: 146.3463413945539
Iterations: 24
Function evaluations: 244
Gradient evaluations: 24
Iteration: 1, Func. Count: 12, Neg. LLF: 161.28575433334967
Iteration: 2, Func. Count: 24, Neg. LLF: 146.39878507471698
Iteration: 3, Func. Count: 35, Neg. LLF: 146.39794204786966
Iteration: 4, Func. Count: 46, Neg. LLF: 146.39477224053314
Iteration: 5, Func. Count: 57, Neg. LLF: 146.39278178446023
Iteration: 6, Func. Count: 68, Neg. LLF: 146.39183906043706
Iteration: 7, Func. Count: 79, Neg. LLF: 146.38730239656454
Iteration: 8, Func. Count: 90, Neg. LLF: 146.37926474566177
Iteration: 9, Func. Count: 101, Neg. LLF: 146.37695371686613
Iteration: 10, Func. Count: 112, Neg. LLF: 146.37622944767278
Iteration: 11, Func. Count: 123, Neg. LLF: 146.37397588037982
Iteration: 12, Func. Count: 134, Neg. LLF: 146.3721416238127
Iteration: 13, Func. Count: 145, Neg. LLF: 146.36815219917966
Iteration: 14, Func. Count: 156, Neg. LLF: 146.3668878497834
Iteration: 15, Func. Count: 167, Neg. LLF: 146.38102519084438
Iteration: 16, Func. Count: 179, Neg. LLF: 146.36305008676115
Iteration: 17, Func. Count: 190, Neg. LLF: 146.35972681815193
Iteration: 18, Func. Count: 201, Neg. LLF: 146.3507522040731
Iteration: 19, Func. Count: 212, Neg. LLF: 146.34637487409074
Iteration: 20, Func. Count: 223, Neg. LLF: 146.34634820505914
Iteration: 21, Func. Count: 234, Neg. LLF: 146.34634266343093
Iteration: 22, Func. Count: 245, Neg. LLF: 146.34634393854034
Optimization terminated successfully (Exit mode 0)
Current function value: 146.3463418147275
Iterations: 22
Function evaluations: 246
Gradient evaluations: 22
Iteration: 1, Func. Count: 9, Neg. LLF: 148.2229711657898
Iteration: 2, Func. Count: 18, Neg. LLF: 146.93159842771084
Iteration: 3, Func. Count: 26, Neg. LLF: 146.6833046107022
Iteration: 4, Func. Count: 34, Neg. LLF: 146.85758638181312
Iteration: 5, Func. Count: 43, Neg. LLF: 146.69119585806925
Iteration: 6, Func. Count: 52, Neg. LLF: 146.326685475201
Iteration: 7, Func. Count: 60, Neg. LLF: 146.2426950986654
Iteration: 8, Func. Count: 68, Neg. LLF: 146.19919162070005
Iteration: 9, Func. Count: 76, Neg. LLF: 146.1942120924497
Iteration: 10, Func. Count: 84, Neg. LLF: 146.19363221277953
Iteration: 11, Func. Count: 92, Neg. LLF: 146.193555638112
Iteration: 12, Func. Count: 100, Neg. LLF: 146.19355059195664
Iteration: 13, Func. Count: 107, Neg. LLF: 146.19355059195777
Optimization terminated successfully (Exit mode 0)
Current function value: 146.19355059195664
Iterations: 13
Function evaluations: 107
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 175.69736660054997
Iteration: 2, Func. Count: 21, Neg. LLF: 146.4707218019227
Iteration: 3, Func. Count: 30, Neg. LLF: 146.46801974320434
Iteration: 4, Func. Count: 39, Neg. LLF: 146.46652480963454
Iteration: 5, Func. Count: 48, Neg. LLF: 146.46292259477048
Iteration: 6, Func. Count: 57, Neg. LLF: 146.45097317617407
Iteration: 7, Func. Count: 66, Neg. LLF: 146.44065636148238
Iteration: 8, Func. Count: 75, Neg. LLF: 146.42777723159685
Iteration: 9, Func. Count: 85, Neg. LLF: 146.399013322981
Iteration: 10, Func. Count: 94, Neg. LLF: 146.34933110518088
Iteration: 11, Func. Count: 103, Neg. LLF: 146.3483585291336
Iteration: 12, Func. Count: 112, Neg. LLF: 146.3464016404784
Iteration: 13, Func. Count: 121, Neg. LLF: 146.34634829385072
Iteration: 14, Func. Count: 130, Neg. LLF: 146.3463386520063
Iteration: 15, Func. Count: 139, Neg. LLF: 146.3463381731281
Optimization terminated successfully (Exit mode 0)
Current function value: 146.3463381731281
Iterations: 15
Function evaluations: 139
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 168.34862055242866
Iteration: 2, Func. Count: 23, Neg. LLF: 146.42904962429594
Iteration: 3, Func. Count: 33, Neg. LLF: 146.4171566890755
Iteration: 4, Func. Count: 43, Neg. LLF: 146.41430013165848
Iteration: 5, Func. Count: 53, Neg. LLF: 146.41203301683697
Iteration: 6, Func. Count: 63, Neg. LLF: 146.41003432239597
Iteration: 7, Func. Count: 73, Neg. LLF: 146.39848436684773
Iteration: 8, Func. Count: 83, Neg. LLF: 146.37161902599667
Iteration: 9, Func. Count: 93, Neg. LLF: 146.3702584913548
Iteration: 10, Func. Count: 104, Neg. LLF: 146.3661037060236
Iteration: 11, Func. Count: 114, Neg. LLF: 146.36345733924136
Iteration: 12, Func. Count: 124, Neg. LLF: 146.36155268984845
Iteration: 13, Func. Count: 134, Neg. LLF: 146.35853813135506
Iteration: 14, Func. Count: 144, Neg. LLF: 146.34635455184267
Iteration: 15, Func. Count: 154, Neg. LLF: 146.34634117889462
Iteration: 16, Func. Count: 164, Neg. LLF: 146.34634002189853
Iteration: 17, Func. Count: 174, Neg. LLF: 146.34633821276304
Iteration: 18, Func. Count: 183, Neg. LLF: 146.3463382134254
Optimization terminated successfully (Exit mode 0)
Current function value: 146.34633821276304
Iterations: 18
Function evaluations: 183
Gradient evaluations: 18
Iteration: 1, Func. Count: 12, Neg. LLF: 163.8717278104179
Iteration: 2, Func. Count: 24, Neg. LLF: 146.40248939920616
Iteration: 3, Func. Count: 35, Neg. LLF: 146.39901781716836
Iteration: 4, Func. Count: 46, Neg. LLF: 146.39201408427138
Iteration: 5, Func. Count: 57, Neg. LLF: 146.39023443187423
Iteration: 6, Func. Count: 68, Neg. LLF: 146.38798928350525
Iteration: 7, Func. Count: 79, Neg. LLF: 146.38528254418935
Iteration: 8, Func. Count: 90, Neg. LLF: 146.38230912315765
Iteration: 9, Func. Count: 101, Neg. LLF: 146.37992707115095
Iteration: 10, Func. Count: 112, Neg. LLF: 146.37818017046288
Iteration: 11, Func. Count: 123, Neg. LLF: 146.37523729396975
Iteration: 12, Func. Count: 134, Neg. LLF: 146.3735959007384
Iteration: 13, Func. Count: 145, Neg. LLF: 146.3717382311018
Iteration: 14, Func. Count: 156, Neg. LLF: 146.37038372579173
Iteration: 15, Func. Count: 167, Neg. LLF: 146.36750844846932
Iteration: 16, Func. Count: 178, Neg. LLF: 146.36583447615956
Iteration: 17, Func. Count: 189, Neg. LLF: 146.362218941498
Iteration: 18, Func. Count: 200, Neg. LLF: 146.35954754004905
Iteration: 19, Func. Count: 211, Neg. LLF: 146.35571493554468
Iteration: 20, Func. Count: 222, Neg. LLF: 146.34952636142717
Iteration: 21, Func. Count: 233, Neg. LLF: 146.34677369884167
Iteration: 22, Func. Count: 244, Neg. LLF: 146.34636952792354
Iteration: 23, Func. Count: 255, Neg. LLF: 146.34633852406915
Iteration: 24, Func. Count: 265, Neg. LLF: 146.34633852507076
Optimization terminated successfully (Exit mode 0)
Current function value: 146.34633852406915
Iterations: 24
Function evaluations: 265
Gradient evaluations: 24
Iteration: 1, Func. Count: 13, Neg. LLF: 161.06943079112153
Iteration: 2, Func. Count: 26, Neg. LLF: 146.3979741057073
Iteration: 3, Func. Count: 38, Neg. LLF: 146.39728149455019
Iteration: 4, Func. Count: 50, Neg. LLF: 146.39482173822586
Iteration: 5, Func. Count: 62, Neg. LLF: 146.3936030847926
Iteration: 6, Func. Count: 74, Neg. LLF: 146.39120910559677
Iteration: 7, Func. Count: 86, Neg. LLF: 146.38687772268068
Iteration: 8, Func. Count: 98, Neg. LLF: 146.3849052967941
Iteration: 9, Func. Count: 110, Neg. LLF: 146.38161598840432
Iteration: 10, Func. Count: 122, Neg. LLF: 146.37945054241706
Iteration: 11, Func. Count: 134, Neg. LLF: 146.37834235644053
Iteration: 12, Func. Count: 146, Neg. LLF: 146.37756146784926
Iteration: 13, Func. Count: 158, Neg. LLF: 146.37630746211775
Iteration: 14, Func. Count: 170, Neg. LLF: 146.3745976185627
Iteration: 15, Func. Count: 182, Neg. LLF: 146.36364058922263
Iteration: 16, Func. Count: 194, Neg. LLF: 146.36148472604225
Iteration: 17, Func. Count: 206, Neg. LLF: 146.36001324048817
Iteration: 18, Func. Count: 218, Neg. LLF: 146.3597614896258
Iteration: 19, Func. Count: 230, Neg. LLF: 146.3580544722816
Iteration: 20, Func. Count: 242, Neg. LLF: 146.35269036050138
Iteration: 21, Func. Count: 254, Neg. LLF: 146.3482877323672
Iteration: 22, Func. Count: 266, Neg. LLF: 146.3466500331512
Iteration: 23, Func. Count: 278, Neg. LLF: 146.3463474440184
Iteration: 24, Func. Count: 290, Neg. LLF: 146.34634992605777
Iteration: 25, Func. Count: 303, Neg. LLF: 146.34634908034727
Iteration: 26, Func. Count: 316, Neg. LLF: 146.34633948327152
Iteration: 27, Func. Count: 328, Neg. LLF: 146.34634026291232
Optimization terminated successfully (Exit mode 0)
Current function value: 146.34633926535486
Iterations: 27
Function evaluations: 329
Gradient evaluations: 27
Iteration: 1, Func. Count: 10, Neg. LLF: 148.67379014694725
Iteration: 2, Func. Count: 20, Neg. LLF: 147.4617282011515
Iteration: 3, Func. Count: 30, Neg. LLF: 147.16619860693783
Iteration: 4, Func. Count: 40, Neg. LLF: 146.91524771887816
Iteration: 5, Func. Count: 50, Neg. LLF: 149.09428455051332
Iteration: 6, Func. Count: 60, Neg. LLF: 146.40540217538512
Iteration: 7, Func. Count: 69, Neg. LLF: 146.313968052755
Iteration: 8, Func. Count: 78, Neg. LLF: 146.21947259210413
Iteration: 9, Func. Count: 87, Neg. LLF: 146.19903540000598
Iteration: 10, Func. Count: 96, Neg. LLF: 146.1939685674118
Iteration: 11, Func. Count: 105, Neg. LLF: 146.19358953024874
Iteration: 12, Func. Count: 114, Neg. LLF: 146.193556731744
Iteration: 13, Func. Count: 123, Neg. LLF: 146.19355106101102
Iteration: 14, Func. Count: 131, Neg. LLF: 146.19355111556564
Optimization terminated successfully (Exit mode 0)
Current function value: 146.19355106101102
Iterations: 14
Function evaluations: 131
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 175.72319485255994
Iteration: 2, Func. Count: 23, Neg. LLF: 146.47150689261818
Iteration: 3, Func. Count: 33, Neg. LLF: 146.46816829422352
Iteration: 4, Func. Count: 43, Neg. LLF: 146.46648170945767
Iteration: 5, Func. Count: 53, Neg. LLF: 146.46389493246167
Iteration: 6, Func. Count: 63, Neg. LLF: 146.4536121081002
Iteration: 7, Func. Count: 73, Neg. LLF: 146.4183951876238
Iteration: 8, Func. Count: 83, Neg. LLF: 146.46589649535224
Iteration: 9, Func. Count: 94, Neg. LLF: 146.3651981067716
Iteration: 10, Func. Count: 104, Neg. LLF: 146.39066718221474
Iteration: 11, Func. Count: 115, Neg. LLF: 146.4709759552998
Iteration: 12, Func. Count: 126, Neg. LLF: 146.34636004296584
Iteration: 13, Func. Count: 136, Neg. LLF: 146.34633827040105
Iteration: 14, Func. Count: 145, Neg. LLF: 146.34633827031365
Optimization terminated successfully (Exit mode 0)
Current function value: 146.34633827040105
Iterations: 14
Function evaluations: 145
Gradient evaluations: 14
Iteration: 1, Func. Count: 12, Neg. LLF: 168.44001799694985
Iteration: 2, Func. Count: 24, Neg. LLF: 146.43012924426188
Iteration: 3, Func. Count: 35, Neg. LLF: 146.42936828836915
Iteration: 4, Func. Count: 47, Neg. LLF: 146.42102880035657
Iteration: 5, Func. Count: 58, Neg. LLF: 146.41079523198914
Iteration: 6, Func. Count: 69, Neg. LLF: 146.40939336219523
Iteration: 7, Func. Count: 80, Neg. LLF: 146.40653892738814
Iteration: 8, Func. Count: 91, Neg. LLF: 146.39530296689583
Iteration: 9, Func. Count: 102, Neg. LLF: 146.37932163665315
Iteration: 10, Func. Count: 113, Neg. LLF: 146.37328420305118
Iteration: 11, Func. Count: 124, Neg. LLF: 146.36591916526504
Iteration: 12, Func. Count: 135, Neg. LLF: 146.36465450576523
Iteration: 13, Func. Count: 146, Neg. LLF: 146.3622140591163
Iteration: 14, Func. Count: 157, Neg. LLF: 146.35911687776593
Iteration: 15, Func. Count: 168, Neg. LLF: 146.3465313862636
Iteration: 16, Func. Count: 179, Neg. LLF: 146.34641542385938
Iteration: 17, Func. Count: 190, Neg. LLF: 146.34634434411558
Iteration: 18, Func. Count: 201, Neg. LLF: 146.3463482749479
Iteration: 19, Func. Count: 213, Neg. LLF: 146.34633819018583
Optimization terminated successfully (Exit mode 0)
Current function value: 146.34633819018583
Iterations: 19
Function evaluations: 213
Gradient evaluations: 19
Iteration: 1, Func. Count: 13, Neg. LLF: 163.91525588528526
Iteration: 2, Func. Count: 26, Neg. LLF: 146.4028649156918
Iteration: 3, Func. Count: 38, Neg. LLF: 146.39946575771373
Iteration: 4, Func. Count: 50, Neg. LLF: 146.39181054034714
Iteration: 5, Func. Count: 62, Neg. LLF: 146.39003711559997
Iteration: 6, Func. Count: 74, Neg. LLF: 146.38785750189444
Iteration: 7, Func. Count: 86, Neg. LLF: 146.38509667996078
Iteration: 8, Func. Count: 98, Neg. LLF: 146.38175282374914
Iteration: 9, Func. Count: 110, Neg. LLF: 146.37910992999622
Iteration: 10, Func. Count: 122, Neg. LLF: 146.3772677206333
Iteration: 11, Func. Count: 134, Neg. LLF: 146.37493175819216
Iteration: 12, Func. Count: 146, Neg. LLF: 146.3733892575255
Iteration: 13, Func. Count: 158, Neg. LLF: 146.37166766923883
Iteration: 14, Func. Count: 170, Neg. LLF: 146.3693357164017
Iteration: 15, Func. Count: 182, Neg. LLF: 146.36680041423415
Iteration: 16, Func. Count: 194, Neg. LLF: 146.36549010622844
Iteration: 17, Func. Count: 206, Neg. LLF: 146.3620127255874
Iteration: 18, Func. Count: 218, Neg. LLF: 146.3598917521308
Iteration: 19, Func. Count: 230, Neg. LLF: 146.35756340589865
Iteration: 20, Func. Count: 242, Neg. LLF: 146.34949823309742
Iteration: 21, Func. Count: 254, Neg. LLF: 146.34715311152982
Iteration: 22, Func. Count: 266, Neg. LLF: 146.34644271950202
Iteration: 23, Func. Count: 278, Neg. LLF: 146.34635507973232
Iteration: 24, Func. Count: 290, Neg. LLF: 146.34633953594604
Iteration: 25, Func. Count: 302, Neg. LLF: 146.34633826820553
Iteration: 26, Func. Count: 313, Neg. LLF: 146.34633827005635
Optimization terminated successfully (Exit mode 0)
Current function value: 146.34633826820553
Iterations: 26
Function evaluations: 313
Gradient evaluations: 26
Iteration: 1, Func. Count: 14, Neg. LLF: 157.38843895262116
Iteration: 2, Func. Count: 28, Neg. LLF: 146.3982821646301
Iteration: 3, Func. Count: 41, Neg. LLF: 146.478718465327
Iteration: 4, Func. Count: 55, Neg. LLF: 146.40005892122497
Iteration: 5, Func. Count: 69, Neg. LLF: 146.3934458200141
Iteration: 6, Func. Count: 82, Neg. LLF: 146.37471812724246
Iteration: 7, Func. Count: 95, Neg. LLF: 146.29188262906234
Iteration: 8, Func. Count: 108, Neg. LLF: 146.18466047009093
Iteration: 9, Func. Count: 121, Neg. LLF: 146.1777904779053
Iteration: 10, Func. Count: 134, Neg. LLF: 146.1735774609241
Iteration: 11, Func. Count: 147, Neg. LLF: 146.17318105004273
Iteration: 12, Func. Count: 160, Neg. LLF: 146.1717506493381
Iteration: 13, Func. Count: 173, Neg. LLF: 146.17024680638715
Iteration: 14, Func. Count: 186, Neg. LLF: 146.16886747749788
Iteration: 15, Func. Count: 199, Neg. LLF: 146.16854204152878
Iteration: 16, Func. Count: 212, Neg. LLF: 146.1685084796382
Iteration: 17, Func. Count: 224, Neg. LLF: 146.16850847972938
Optimization terminated successfully (Exit mode 0)
Current function value: 146.1685084796382
Iterations: 17
Function evaluations: 224
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 148.2647994022978
Iteration: 2, Func. Count: 22, Neg. LLF: 146.91623931305963
Iteration: 3, Func. Count: 32, Neg. LLF: 147.43606787484188
Iteration: 4, Func. Count: 43, Neg. LLF: 150.4400706452387
Iteration: 5, Func. Count: 54, Neg. LLF: 146.6714869377708
Iteration: 6, Func. Count: 65, Neg. LLF: 146.9281033550575
Iteration: 7, Func. Count: 76, Neg. LLF: 146.36079220691477
Iteration: 8, Func. Count: 86, Neg. LLF: 146.2574461640239
Iteration: 9, Func. Count: 96, Neg. LLF: 146.22334796538135
Iteration: 10, Func. Count: 106, Neg. LLF: 146.2004714966845
Iteration: 11, Func. Count: 116, Neg. LLF: 146.19484074814153
Iteration: 12, Func. Count: 126, Neg. LLF: 146.19366340043103
Iteration: 13, Func. Count: 136, Neg. LLF: 146.19355477315165
Iteration: 14, Func. Count: 146, Neg. LLF: 146.19355063570026
Iteration: 15, Func. Count: 155, Neg. LLF: 146.1935506158537
Optimization terminated successfully (Exit mode 0)
Current function value: 146.19355063570026
Iterations: 15
Function evaluations: 155
Gradient evaluations: 15
Iteration: 1, Func. Count: 12, Neg. LLF: 160.73761358494647
Iteration: 2, Func. Count: 25, Neg. LLF: 146.47443747321915
Iteration: 3, Func. Count: 36, Neg. LLF: 146.46579471158094
Iteration: 4, Func. Count: 47, Neg. LLF: 146.47059714556198
Iteration: 5, Func. Count: 59, Neg. LLF: 146.4625384196923
Iteration: 6, Func. Count: 70, Neg. LLF: 146.45824429834724
Iteration: 7, Func. Count: 81, Neg. LLF: 146.43417578613116
Iteration: 8, Func. Count: 92, Neg. LLF: 146.74642348381155
Iteration: 9, Func. Count: 104, Neg. LLF: 146.8999377718407
Iteration: 10, Func. Count: 116, Neg. LLF: 146.5691447683852
Iteration: 11, Func. Count: 128, Neg. LLF: 146.35359871368948
Iteration: 12, Func. Count: 139, Neg. LLF: 146.34817183209358
Iteration: 13, Func. Count: 150, Neg. LLF: 146.34657417664013
Iteration: 14, Func. Count: 161, Neg. LLF: 146.35649096018693
Iteration: 15, Func. Count: 173, Neg. LLF: 146.34633906790864
Iteration: 16, Func. Count: 184, Neg. LLF: 146.34633817217423
Optimization terminated successfully (Exit mode 0)
Current function value: 146.34633817217423
Iterations: 16
Function evaluations: 184
Gradient evaluations: 16
Iteration: 1, Func. Count: 13, Neg. LLF: 151.39625210813676
Iteration: 2, Func. Count: 27, Neg. LLF: 146.46158207304933
Iteration: 3, Func. Count: 39, Neg. LLF: 146.5834585655808
Iteration: 4, Func. Count: 52, Neg. LLF: 146.58442703321558
Iteration: 5, Func. Count: 65, Neg. LLF: 146.43545816846103
Iteration: 6, Func. Count: 78, Neg. LLF: 146.4011260293957
Iteration: 7, Func. Count: 90, Neg. LLF: 146.39974155620453
Iteration: 8, Func. Count: 102, Neg. LLF: 146.3987744259193
Iteration: 9, Func. Count: 114, Neg. LLF: 146.39355220261595
Iteration: 10, Func. Count: 126, Neg. LLF: 146.37212877704465
Iteration: 11, Func. Count: 138, Neg. LLF: 146.37757256054087
Iteration: 12, Func. Count: 151, Neg. LLF: 146.3618205226657
Iteration: 13, Func. Count: 163, Neg. LLF: 146.36179528122236
Iteration: 14, Func. Count: 176, Neg. LLF: 146.36107897846242
Iteration: 15, Func. Count: 188, Neg. LLF: 146.3595702664393
Iteration: 16, Func. Count: 200, Neg. LLF: 146.3486632528845
Iteration: 17, Func. Count: 212, Neg. LLF: 146.3470950694254
Iteration: 18, Func. Count: 224, Neg. LLF: 146.34634630399256
Iteration: 19, Func. Count: 236, Neg. LLF: 146.346353938168
Iteration: 20, Func. Count: 248, Neg. LLF: 146.3463384082296
Optimization terminated successfully (Exit mode 0)
Current function value: 146.3463384076293
Iterations: 20
Function evaluations: 248
Gradient evaluations: 20
Iteration: 1, Func. Count: 14, Neg. LLF: 150.84892225618145
Iteration: 2, Func. Count: 29, Neg. LLF: 146.4285761190363
Iteration: 3, Func. Count: 42, Neg. LLF: 146.32185948655714
Iteration: 4, Func. Count: 55, Neg. LLF: 146.42881982947344
Iteration: 5, Func. Count: 69, Neg. LLF: 146.37620628772436
Iteration: 6, Func. Count: 83, Neg. LLF: 146.26520051676167
Iteration: 7, Func. Count: 96, Neg. LLF: 146.25639066289142
Iteration: 8, Func. Count: 109, Neg. LLF: 146.25252152368722
Iteration: 9, Func. Count: 122, Neg. LLF: 146.25100299231622
Iteration: 10, Func. Count: 135, Neg. LLF: 146.2520003492548
Iteration: 11, Func. Count: 149, Neg. LLF: 146.25063375423966
Iteration: 12, Func. Count: 162, Neg. LLF: 146.24209534980824
Iteration: 13, Func. Count: 175, Neg. LLF: 146.21187450263997
Iteration: 14, Func. Count: 188, Neg. LLF: 146.19399356693694
Iteration: 15, Func. Count: 201, Neg. LLF: 146.03686868009655
Iteration: 16, Func. Count: 214, Neg. LLF: 145.68101902763274
Iteration: 17, Func. Count: 227, Neg. LLF: 145.77693080488376
Iteration: 18, Func. Count: 241, Neg. LLF: 146.63259514957417
Iteration: 19, Func. Count: 255, Neg. LLF: 146.25973266756554
Iteration: 20, Func. Count: 269, Neg. LLF: 145.60126963151112
Iteration: 21, Func. Count: 282, Neg. LLF: 146.22719660678098
Iteration: 22, Func. Count: 296, Neg. LLF: 145.737010352966
Iteration: 23, Func. Count: 310, Neg. LLF: 145.5835580874063
Iteration: 24, Func. Count: 323, Neg. LLF: 145.5835168339631
Iteration: 25, Func. Count: 335, Neg. LLF: 145.58351677023148
Optimization terminated successfully (Exit mode 0)
Current function value: 145.5835168339631
Iterations: 26
Function evaluations: 335
Gradient evaluations: 25
Iteration: 1, Func. Count: 15, Neg. LLF: 152.32712815164706
Iteration: 2, Func. Count: 31, Neg. LLF: 146.4086215544736
Iteration: 3, Func. Count: 45, Neg. LLF: 146.3603871826063
Iteration: 4, Func. Count: 59, Neg. LLF: 146.35293862142842
Iteration: 5, Func. Count: 73, Neg. LLF: 146.32031617965407
Iteration: 6, Func. Count: 87, Neg. LLF: 146.31929421050893
Iteration: 7, Func. Count: 102, Neg. LLF: 146.30517513262
Iteration: 8, Func. Count: 116, Neg. LLF: 146.30420721815676
Iteration: 9, Func. Count: 130, Neg. LLF: 146.30404571441903
Iteration: 10, Func. Count: 144, Neg. LLF: 146.30398700604115
Iteration: 11, Func. Count: 158, Neg. LLF: 146.30382470022755
Iteration: 12, Func. Count: 172, Neg. LLF: 146.30358940550624
Iteration: 13, Func. Count: 186, Neg. LLF: 146.30321210226865
Iteration: 14, Func. Count: 200, Neg. LLF: 146.30295240640353
Iteration: 15, Func. Count: 214, Neg. LLF: 146.3028645276143
Iteration: 16, Func. Count: 228, Neg. LLF: 146.30285316994144
Iteration: 17, Func. Count: 241, Neg. LLF: 146.30285317001307
Optimization terminated successfully (Exit mode 0)
Current function value: 146.30285316994144
Iterations: 17
Function evaluations: 241
Gradient evaluations: 17
Iteration: 1, Func. Count: 12, Neg. LLF: 148.09046290213445
Iteration: 2, Func. Count: 23, Neg. LLF: 148.87424198685443
Iteration: 3, Func. Count: 35, Neg. LLF: 146.86514324603058
Iteration: 4, Func. Count: 46, Neg. LLF: 147.7472577240193
Iteration: 5, Func. Count: 58, Neg. LLF: 146.70768273248416
Iteration: 6, Func. Count: 69, Neg. LLF: 146.64066281401338
Iteration: 7, Func. Count: 81, Neg. LLF: 146.41902567262125
Iteration: 8, Func. Count: 92, Neg. LLF: 146.32744471269177
Iteration: 9, Func. Count: 103, Neg. LLF: 146.26308601862257
Iteration: 10, Func. Count: 114, Neg. LLF: 146.21298958725419
Iteration: 11, Func. Count: 125, Neg. LLF: 146.195159571212
Iteration: 12, Func. Count: 136, Neg. LLF: 146.19378063181637
Iteration: 13, Func. Count: 147, Neg. LLF: 146.19357520220237
Iteration: 14, Func. Count: 158, Neg. LLF: 146.1935512801909
Iteration: 15, Func. Count: 169, Neg. LLF: 146.19355054257795
Optimization terminated successfully (Exit mode 0)
Current function value: 146.19355054257795
Iterations: 15
Function evaluations: 169
Gradient evaluations: 15
Iteration: 1, Func. Count: 13, Neg. LLF: 151.15622346815618
Iteration: 2, Func. Count: 28, Neg. LLF: 146.57233030973384
Iteration: 3, Func. Count: 41, Neg. LLF: 151.47190278266433
Iteration: 4, Func. Count: 55, Neg. LLF: 146.39193112362983
Iteration: 5, Func. Count: 67, Neg. LLF: 146.38933239852454
Iteration: 6, Func. Count: 79, Neg. LLF: 146.3847111883612
Iteration: 7, Func. Count: 91, Neg. LLF: 146.3724616763547
Iteration: 8, Func. Count: 103, Neg. LLF: 146.35402418872846
Iteration: 9, Func. Count: 115, Neg. LLF: 146.32773586648779
Iteration: 10, Func. Count: 127, Neg. LLF: 146.31168679345708
Iteration: 11, Func. Count: 139, Neg. LLF: 146.31128246674294
Iteration: 12, Func. Count: 152, Neg. LLF: 146.30869522711356
Iteration: 13, Func. Count: 164, Neg. LLF: 146.30866513937121
Iteration: 14, Func. Count: 176, Neg. LLF: 146.30866437214846
Optimization terminated successfully (Exit mode 0)
Current function value: 146.30866437214846
Iterations: 14
Function evaluations: 176
Gradient evaluations: 14
Iteration: 1, Func. Count: 14, Neg. LLF: 151.73302955071648
Iteration: 2, Func. Count: 29, Neg. LLF: 146.66613753922005
Iteration: 3, Func. Count: 43, Neg. LLF: 146.5796952029589
Iteration: 4, Func. Count: 57, Neg. LLF: 146.44945373646414
Iteration: 5, Func. Count: 70, Neg. LLF: 146.40286853173058
Iteration: 6, Func. Count: 83, Neg. LLF: 146.4235063370918
Iteration: 7, Func. Count: 98, Neg. LLF: 146.4004006435254
Iteration: 8, Func. Count: 111, Neg. LLF: 146.39940496904782
Iteration: 9, Func. Count: 124, Neg. LLF: 146.39408798946616
Iteration: 10, Func. Count: 137, Neg. LLF: 146.3835471937881
Iteration: 11, Func. Count: 150, Neg. LLF: 146.36226585450243
Iteration: 12, Func. Count: 163, Neg. LLF: 146.36907891369594
Iteration: 13, Func. Count: 177, Neg. LLF: 146.35909487033177
Iteration: 14, Func. Count: 190, Neg. LLF: 146.358927119157
Iteration: 15, Func. Count: 203, Neg. LLF: 146.35863768872048
Iteration: 16, Func. Count: 216, Neg. LLF: 146.3572004622469
Iteration: 17, Func. Count: 229, Neg. LLF: 146.35286874002233
Iteration: 18, Func. Count: 242, Neg. LLF: 146.34900115574007
Iteration: 19, Func. Count: 255, Neg. LLF: 146.34412951807698
Iteration: 20, Func. Count: 268, Neg. LLF: 146.3160782010566
Iteration: 21, Func. Count: 281, Neg. LLF: 146.31090832096083
Iteration: 22, Func. Count: 294, Neg. LLF: 146.3091691378229
Iteration: 23, Func. Count: 307, Neg. LLF: 146.30903699651114
Iteration: 24, Func. Count: 320, Neg. LLF: 146.3088253110873
Iteration: 25, Func. Count: 333, Neg. LLF: 146.30874323563978
Iteration: 26, Func. Count: 346, Neg. LLF: 147.13142250132267
Iteration: 27, Func. Count: 362, Neg. LLF: 146.31041204266066
Iteration: 28, Func. Count: 377, Neg. LLF: 146.3086681073166
Iteration: 29, Func. Count: 390, Neg. LLF: 146.30866465474955
Iteration: 30, Func. Count: 402, Neg. LLF: 146.30866465835825
Optimization terminated successfully (Exit mode 0)
Current function value: 146.30866465474955
Iterations: 31
Function evaluations: 402
Gradient evaluations: 30
Iteration: 1, Func. Count: 15, Neg. LLF: 150.8124955597156
Iteration: 2, Func. Count: 31, Neg. LLF: 146.42954936166743
Iteration: 3, Func. Count: 45, Neg. LLF: 146.3152793508043
Iteration: 4, Func. Count: 59, Neg. LLF: 146.4249399962246
Iteration: 5, Func. Count: 74, Neg. LLF: 146.37309624806966
Iteration: 6, Func. Count: 89, Neg. LLF: 146.25975825912823
Iteration: 7, Func. Count: 103, Neg. LLF: 146.2535593323857
Iteration: 8, Func. Count: 117, Neg. LLF: 146.25155806195616
Iteration: 9, Func. Count: 131, Neg. LLF: 146.25099384541713
Iteration: 10, Func. Count: 145, Neg. LLF: 146.2529533258219
Iteration: 11, Func. Count: 160, Neg. LLF: 146.2505619977358
Iteration: 12, Func. Count: 174, Neg. LLF: 146.2396983745909
Iteration: 13, Func. Count: 188, Neg. LLF: 146.19863648175118
Iteration: 14, Func. Count: 202, Neg. LLF: 146.17526108990307
Iteration: 15, Func. Count: 216, Neg. LLF: 146.03960304371802
Iteration: 16, Func. Count: 230, Neg. LLF: 145.91081296579847
Iteration: 17, Func. Count: 244, Neg. LLF: 145.86065470070574
Iteration: 18, Func. Count: 258, Neg. LLF: 145.77796036648945
Iteration: 19, Func. Count: 272, Neg. LLF: 145.8155979536662
Iteration: 20, Func. Count: 287, Neg. LLF: 145.8331041204068
Iteration: 21, Func. Count: 302, Neg. LLF: 28830701.59970646
Iteration: 22, Func. Count: 319, Neg. LLF: 146.387452100944
Iteration: 23, Func. Count: 334, Neg. LLF: 145.8554070630466
Iteration: 24, Func. Count: 349, Neg. LLF: 145.59021806202398
Iteration: 25, Func. Count: 363, Neg. LLF: 145.58680615299645
Iteration: 26, Func. Count: 377, Neg. LLF: 145.58409531604875
Iteration: 27, Func. Count: 391, Neg. LLF: 145.58387452759615
Iteration: 28, Func. Count: 405, Neg. LLF: 145.58352685582977
Iteration: 29, Func. Count: 419, Neg. LLF: 145.58352109498065
Iteration: 30, Func. Count: 433, Neg. LLF: 145.58351675226984
Iteration: 31, Func. Count: 446, Neg. LLF: 145.58351668845134
Optimization terminated successfully (Exit mode 0)
Current function value: 145.58351675226984
Iterations: 32
Function evaluations: 446
Gradient evaluations: 31
Iteration: 1, Func. Count: 16, Neg. LLF: 152.26308935337278
Iteration: 2, Func. Count: 33, Neg. LLF: 146.4091542204524
Iteration: 3, Func. Count: 48, Neg. LLF: 146.35951773821773
Iteration: 4, Func. Count: 63, Neg. LLF: 146.35116119956024
Iteration: 5, Func. Count: 78, Neg. LLF: 146.3244473419353
Iteration: 6, Func. Count: 93, Neg. LLF: 146.31428873571275
Iteration: 7, Func. Count: 108, Neg. LLF: 146.30596104852762
Iteration: 8, Func. Count: 123, Neg. LLF: 146.30460082193608
Iteration: 9, Func. Count: 138, Neg. LLF: 146.30403917145622
Iteration: 10, Func. Count: 153, Neg. LLF: 146.3039869967835
Iteration: 11, Func. Count: 168, Neg. LLF: 146.3038308754843
Iteration: 12, Func. Count: 183, Neg. LLF: 146.30364544467693
Iteration: 13, Func. Count: 198, Neg. LLF: 146.30328384354837
Iteration: 14, Func. Count: 213, Neg. LLF: 146.30299557958637
Iteration: 15, Func. Count: 228, Neg. LLF: 146.30287406682746
Iteration: 16, Func. Count: 243, Neg. LLF: 146.30285375465127
Iteration: 17, Func. Count: 258, Neg. LLF: 146.30285282012542
Optimization terminated successfully (Exit mode 0)
Current function value: 146.30285282012542
Iterations: 17
Function evaluations: 258
Gradient evaluations: 17
Iteration: 1, Func. Count: 5, Neg. LLF: 152.76133206609245
Iteration: 2, Func. Count: 10, Neg. LLF: 151.12313699112318
Iteration: 3, Func. Count: 15, Neg. LLF: 147.00990496209653
Iteration: 4, Func. Count: 19, Neg. LLF: 146.32313085584923
Iteration: 5, Func. Count: 23, Neg. LLF: 146.21154704231023
Iteration: 6, Func. Count: 27, Neg. LLF: 146.19849704952895
Iteration: 7, Func. Count: 31, Neg. LLF: 146.18997872832048
Iteration: 8, Func. Count: 35, Neg. LLF: 146.18906931600628
Iteration: 9, Func. Count: 39, Neg. LLF: 146.1889343619111
Iteration: 10, Func. Count: 43, Neg. LLF: 146.1889307028115
Iteration: 11, Func. Count: 46, Neg. LLF: 146.18893070281754
Optimization terminated successfully (Exit mode 0)
Current function value: 146.1889307028115
Iterations: 11
Function evaluations: 46
Gradient evaluations: 11
Iteration: 1, Func. Count: 5, Neg. LLF: 152.07799682289482
Iteration: 2, Func. Count: 10, Neg. LLF: 151.86966298706793
Iteration: 3, Func. Count: 15, Neg. LLF: 147.19926498409012
Iteration: 4, Func. Count: 19, Neg. LLF: 146.61098160962737
Iteration: 5, Func. Count: 23, Neg. LLF: 146.46499222782276
Iteration: 6, Func. Count: 27, Neg. LLF: 146.45263924602764
Iteration: 7, Func. Count: 31, Neg. LLF: 146.45205501011756
Iteration: 8, Func. Count: 35, Neg. LLF: 146.45165240038472
Iteration: 9, Func. Count: 39, Neg. LLF: 146.45160972086143
Iteration: 10, Func. Count: 43, Neg. LLF: 146.45160233280373
Iteration: 11, Func. Count: 46, Neg. LLF: 146.45160233280725
Optimization terminated successfully (Exit mode 0)
Current function value: 146.45160233280373
Iterations: 11
Function evaluations: 46
Gradient evaluations: 11
Iteration: 1, Func. Count: 6, Neg. LLF: 150.60029354352042
Iteration: 2, Func. Count: 13, Neg. LLF: 146.93487097127897
Iteration: 3, Func. Count: 19, Neg. LLF: 146.92787699212164
Iteration: 4, Func. Count: 24, Neg. LLF: 146.87511936348196
Iteration: 5, Func. Count: 29, Neg. LLF: 146.65939577465133
Iteration: 6, Func. Count: 34, Neg. LLF: 146.52319301548064
Iteration: 7, Func. Count: 39, Neg. LLF: 146.45762182870772
Iteration: 8, Func. Count: 44, Neg. LLF: 146.4544947089957
Iteration: 9, Func. Count: 49, Neg. LLF: 146.45176299691556
Iteration: 10, Func. Count: 54, Neg. LLF: 146.4516940658482
Iteration: 11, Func. Count: 59, Neg. LLF: 146.45165144732255
Iteration: 12, Func. Count: 64, Neg. LLF: 146.45161449502905
Iteration: 13, Func. Count: 69, Neg. LLF: 146.45160351974494
Iteration: 14, Func. Count: 74, Neg. LLF: 146.45160227351818
Iteration: 15, Func. Count: 78, Neg. LLF: 146.45160230279592
Optimization terminated successfully (Exit mode 0)
Current function value: 146.45160227351818
Iterations: 15
Function evaluations: 78
Gradient evaluations: 15
Iteration: 1, Func. Count: 7, Neg. LLF: 150.45440695404983
Iteration: 2, Func. Count: 15, Neg. LLF: 146.88765096295268
Iteration: 3, Func. Count: 21, Neg. LLF: 146.81585839871096
Iteration: 4, Func. Count: 27, Neg. LLF: 146.80196125291866
Iteration: 5, Func. Count: 33, Neg. LLF: 146.78193153079752
Iteration: 6, Func. Count: 39, Neg. LLF: 146.75849801130616
Iteration: 7, Func. Count: 45, Neg. LLF: 146.7456827865383
Iteration: 8, Func. Count: 51, Neg. LLF: 146.71662271658099
Iteration: 9, Func. Count: 57, Neg. LLF: 146.6921143315923
Iteration: 10, Func. Count: 63, Neg. LLF: 146.61156535279216
Iteration: 11, Func. Count: 69, Neg. LLF: 146.53436975773133
Iteration: 12, Func. Count: 75, Neg. LLF: 146.49459720567782
Iteration: 13, Func. Count: 81, Neg. LLF: 146.4561816996503
Iteration: 14, Func. Count: 87, Neg. LLF: 146.45236331250385
Iteration: 15, Func. Count: 93, Neg. LLF: 146.45161921414947
Iteration: 16, Func. Count: 99, Neg. LLF: 146.45160463556397
Iteration: 17, Func. Count: 105, Neg. LLF: 146.45160269598426
Iteration: 18, Func. Count: 110, Neg. LLF: 146.45160270132286
Optimization terminated successfully (Exit mode 0)
Current function value: 146.45160269598426
Iterations: 18
Function evaluations: 110
Gradient evaluations: 18
Iteration: 1, Func. Count: 8, Neg. LLF: 148.11194756305602
Iteration: 2, Func. Count: 17, Neg. LLF: 146.78731083368103
Iteration: 3, Func. Count: 24, Neg. LLF: 146.82291952531463
Iteration: 4, Func. Count: 32, Neg. LLF: 146.7671220676031
Iteration: 5, Func. Count: 39, Neg. LLF: 146.75495157967782
Iteration: 6, Func. Count: 46, Neg. LLF: 146.74444630984635
Iteration: 7, Func. Count: 53, Neg. LLF: 146.6800957695694
Iteration: 8, Func. Count: 60, Neg. LLF: 146.51666480992068
Iteration: 9, Func. Count: 67, Neg. LLF: 146.47404410902936
Iteration: 10, Func. Count: 74, Neg. LLF: 146.453040802626
Iteration: 11, Func. Count: 81, Neg. LLF: 146.45184541063867
Iteration: 12, Func. Count: 88, Neg. LLF: 146.45167611159658
Iteration: 13, Func. Count: 95, Neg. LLF: 146.4516100208264
Iteration: 14, Func. Count: 102, Neg. LLF: 146.45160258107612
Iteration: 15, Func. Count: 108, Neg. LLF: 146.45160260760204
Optimization terminated successfully (Exit mode 0)
Current function value: 146.45160258107612
Iterations: 15
Function evaluations: 108
Gradient evaluations: 15
Iteration: 1, Func. Count: 9, Neg. LLF: 148.89352036568158
Iteration: 2, Func. Count: 19, Neg. LLF: 146.78489135827644
Iteration: 3, Func. Count: 27, Neg. LLF: 146.78397992983446
Iteration: 4, Func. Count: 36, Neg. LLF: 146.76266022395282
Iteration: 5, Func. Count: 44, Neg. LLF: 146.7350556801621
Iteration: 6, Func. Count: 52, Neg. LLF: 146.66639116196248
Iteration: 7, Func. Count: 60, Neg. LLF: 146.5905922145567
Iteration: 8, Func. Count: 68, Neg. LLF: 146.55364126327078
Iteration: 9, Func. Count: 76, Neg. LLF: 146.5047898991823
Iteration: 10, Func. Count: 84, Neg. LLF: 146.4613384808802
Iteration: 11, Func. Count: 92, Neg. LLF: 146.45461585863066
Iteration: 12, Func. Count: 100, Neg. LLF: 146.45264799599022
Iteration: 13, Func. Count: 108, Neg. LLF: 146.4516501221026
Iteration: 14, Func. Count: 116, Neg. LLF: 146.45160378349806
Iteration: 15, Func. Count: 124, Neg. LLF: 146.45160224257302
Iteration: 16, Func. Count: 131, Neg. LLF: 146.45160227046506
Optimization terminated successfully (Exit mode 0)
Current function value: 146.45160224257302
Iterations: 16
Function evaluations: 131
Gradient evaluations: 16
Iteration: 1, Func. Count: 6, Neg. LLF: 153.8128186573176
Iteration: 2, Func. Count: 12, Neg. LLF: 154.0863935118566
Iteration: 3, Func. Count: 18, Neg. LLF: 147.24971327359205
Iteration: 4, Func. Count: 23, Neg. LLF: 146.64257853299023
Iteration: 5, Func. Count: 28, Neg. LLF: 146.4774507702459
Iteration: 6, Func. Count: 33, Neg. LLF: 146.45186658262608
Iteration: 7, Func. Count: 38, Neg. LLF: 146.45161604833174
Iteration: 8, Func. Count: 43, Neg. LLF: 146.45160607617086
Iteration: 9, Func. Count: 48, Neg. LLF: 146.45160383564678
Iteration: 10, Func. Count: 53, Neg. LLF: 146.4516025271424
Iteration: 11, Func. Count: 57, Neg. LLF: 146.45160259028546
Optimization terminated successfully (Exit mode 0)
Current function value: 146.4516025271424
Iterations: 11
Function evaluations: 57
Gradient evaluations: 11
Iteration: 1, Func. Count: 7, Neg. LLF: 147.3461632285528
Iteration: 2, Func. Count: 15, Neg. LLF: 149.12937667921554
Iteration: 3, Func. Count: 23, Neg. LLF: 146.92956116862183
Iteration: 4, Func. Count: 29, Neg. LLF: 146.92471352999974
Iteration: 5, Func. Count: 35, Neg. LLF: 146.9026595776887
Iteration: 6, Func. Count: 41, Neg. LLF: 146.62659450884863
Iteration: 7, Func. Count: 47, Neg. LLF: 146.58305493596367
Iteration: 8, Func. Count: 53, Neg. LLF: 146.47427223270728
Iteration: 9, Func. Count: 59, Neg. LLF: 146.45487600595294
Iteration: 10, Func. Count: 65, Neg. LLF: 146.4521549437511
Iteration: 11, Func. Count: 71, Neg. LLF: 146.45176462579897
Iteration: 12, Func. Count: 77, Neg. LLF: 146.4516264083192
Iteration: 13, Func. Count: 83, Neg. LLF: 146.45160391356725
Iteration: 14, Func. Count: 89, Neg. LLF: 146.45160226899696
Iteration: 15, Func. Count: 94, Neg. LLF: 146.45160229829582
Optimization terminated successfully (Exit mode 0)
Current function value: 146.45160226899696
Iterations: 15
Function evaluations: 94
Gradient evaluations: 15
Iteration: 1, Func. Count: 8, Neg. LLF: 148.32939334073976
Iteration: 2, Func. Count: 17, Neg. LLF: 148.76001551371743
Iteration: 3, Func. Count: 25, Neg. LLF: 146.85679388523502
Iteration: 4, Func. Count: 32, Neg. LLF: 146.77662259915294
Iteration: 5, Func. Count: 39, Neg. LLF: 146.7731009495834
Iteration: 6, Func. Count: 46, Neg. LLF: 146.76580834002147
Iteration: 7, Func. Count: 53, Neg. LLF: 146.75824545883856
Iteration: 8, Func. Count: 60, Neg. LLF: 146.7437380408882
Iteration: 9, Func. Count: 67, Neg. LLF: 146.72250512942793
Iteration: 10, Func. Count: 74, Neg. LLF: 146.67192929518302
Iteration: 11, Func. Count: 81, Neg. LLF: 146.60214646693242
Iteration: 12, Func. Count: 88, Neg. LLF: 146.57129248414876
Iteration: 13, Func. Count: 95, Neg. LLF: 146.54576080360948
Iteration: 14, Func. Count: 102, Neg. LLF: 146.51792899213933
Iteration: 15, Func. Count: 109, Neg. LLF: 146.46367499621445
Iteration: 16, Func. Count: 116, Neg. LLF: 146.45347648262268
Iteration: 17, Func. Count: 123, Neg. LLF: 146.4517917823472
Iteration: 18, Func. Count: 130, Neg. LLF: 146.45160717077061
Iteration: 19, Func. Count: 137, Neg. LLF: 146.4516024762075
Iteration: 20, Func. Count: 143, Neg. LLF: 146.45160248145032
Optimization terminated successfully (Exit mode 0)
Current function value: 146.4516024762075
Iterations: 20
Function evaluations: 143
Gradient evaluations: 20
Iteration: 1, Func. Count: 9, Neg. LLF: 154.33555849716385
Iteration: 2, Func. Count: 19, Neg. LLF: 148.67835478164773
Iteration: 3, Func. Count: 28, Neg. LLF: 146.88794774088424
Iteration: 4, Func. Count: 36, Neg. LLF: 146.7810784389243
Iteration: 5, Func. Count: 44, Neg. LLF: 146.77156463504895
Iteration: 6, Func. Count: 52, Neg. LLF: 146.76395619445117
Iteration: 7, Func. Count: 60, Neg. LLF: 146.75571219382303
Iteration: 8, Func. Count: 68, Neg. LLF: 146.73214635461906
Iteration: 9, Func. Count: 76, Neg. LLF: 146.70036387011567
Iteration: 10, Func. Count: 84, Neg. LLF: 146.61917417784605
Iteration: 11, Func. Count: 92, Neg. LLF: 146.57239144672226
Iteration: 12, Func. Count: 100, Neg. LLF: 146.5449516858675
Iteration: 13, Func. Count: 108, Neg. LLF: 146.52172220264487
Iteration: 14, Func. Count: 116, Neg. LLF: 146.48311727646967
Iteration: 15, Func. Count: 124, Neg. LLF: 146.45584455218633
Iteration: 16, Func. Count: 132, Neg. LLF: 146.45212562861204
Iteration: 17, Func. Count: 140, Neg. LLF: 146.45160649485285
Iteration: 18, Func. Count: 148, Neg. LLF: 146.4516025443474
Iteration: 19, Func. Count: 155, Neg. LLF: 146.4516025708874
Optimization terminated successfully (Exit mode 0)
Current function value: 146.4516025443474
Iterations: 19
Function evaluations: 155
Gradient evaluations: 19
Iteration: 1, Func. Count: 10, Neg. LLF: 153.9433438285114
Iteration: 2, Func. Count: 21, Neg. LLF: 148.67119875479122
Iteration: 3, Func. Count: 31, Neg. LLF: 146.82271167836086
Iteration: 4, Func. Count: 40, Neg. LLF: 146.78157253083427
Iteration: 5, Func. Count: 49, Neg. LLF: 146.76505901809358
Iteration: 6, Func. Count: 58, Neg. LLF: 146.75255804956947
Iteration: 7, Func. Count: 67, Neg. LLF: 146.73469962558374
Iteration: 8, Func. Count: 76, Neg. LLF: 146.67161844464005
Iteration: 9, Func. Count: 85, Neg. LLF: 146.55276461878407
Iteration: 10, Func. Count: 94, Neg. LLF: 146.53245982510202
Iteration: 11, Func. Count: 103, Neg. LLF: 146.50264822782194
Iteration: 12, Func. Count: 112, Neg. LLF: 146.47753792470093
Iteration: 13, Func. Count: 121, Neg. LLF: 146.4626620351724
Iteration: 14, Func. Count: 130, Neg. LLF: 146.454754409835
Iteration: 15, Func. Count: 139, Neg. LLF: 146.45166415294113
Iteration: 16, Func. Count: 148, Neg. LLF: 146.45161033930097
Iteration: 17, Func. Count: 157, Neg. LLF: 146.4516022413343
Iteration: 18, Func. Count: 165, Neg. LLF: 146.4516022692331
Optimization terminated successfully (Exit mode 0)
Current function value: 146.4516022413343
Iterations: 18
Function evaluations: 165
Gradient evaluations: 18
Iteration: 1, Func. Count: 7, Neg. LLF: 151.49933811341123
Iteration: 2, Func. Count: 14, Neg. LLF: 152.21088316449817
Iteration: 3, Func. Count: 21, Neg. LLF: 148.39426090124485
Iteration: 4, Func. Count: 29, Neg. LLF: 146.90020935285986
Iteration: 5, Func. Count: 35, Neg. LLF: 146.57727990254517
Iteration: 6, Func. Count: 41, Neg. LLF: 146.46639026272567
Iteration: 7, Func. Count: 47, Neg. LLF: 146.4545393066015
Iteration: 8, Func. Count: 53, Neg. LLF: 146.45313059286437
Iteration: 9, Func. Count: 59, Neg. LLF: 146.45174968952705
Iteration: 10, Func. Count: 65, Neg. LLF: 146.45161519006035
Iteration: 11, Func. Count: 71, Neg. LLF: 146.45160244200093
Iteration: 12, Func. Count: 76, Neg. LLF: 146.45160245335745
Optimization terminated successfully (Exit mode 0)
Current function value: 146.45160244200093
Iterations: 12
Function evaluations: 76
Gradient evaluations: 12
Iteration: 1, Func. Count: 8, Neg. LLF: 147.43997623930088
Iteration: 2, Func. Count: 17, Neg. LLF: 149.03325953517836
Iteration: 3, Func. Count: 25, Neg. LLF: 146.9294920221521
Iteration: 4, Func. Count: 32, Neg. LLF: 146.9277523093862
Iteration: 5, Func. Count: 39, Neg. LLF: 146.9235779970295
Iteration: 6, Func. Count: 46, Neg. LLF: 146.8911017420655
Iteration: 7, Func. Count: 53, Neg. LLF: 146.5468609716354
Iteration: 8, Func. Count: 60, Neg. LLF: 146.4849612891984
Iteration: 9, Func. Count: 67, Neg. LLF: 146.46717183929545
Iteration: 10, Func. Count: 74, Neg. LLF: 146.45738991391156
Iteration: 11, Func. Count: 81, Neg. LLF: 146.45394526697822
Iteration: 12, Func. Count: 88, Neg. LLF: 146.45230640619806
Iteration: 13, Func. Count: 95, Neg. LLF: 146.45174998962028
Iteration: 14, Func. Count: 102, Neg. LLF: 146.4516157256649
Iteration: 15, Func. Count: 109, Neg. LLF: 146.45160279369213
Iteration: 16, Func. Count: 116, Neg. LLF: 146.4516022468282
Optimization terminated successfully (Exit mode 0)
Current function value: 146.4516022468282
Iterations: 16
Function evaluations: 116
Gradient evaluations: 16
Iteration: 1, Func. Count: 9, Neg. LLF: 148.66138978586505
Iteration: 2, Func. Count: 19, Neg. LLF: 148.76273441674982
Iteration: 3, Func. Count: 28, Neg. LLF: 146.85419810434936
Iteration: 4, Func. Count: 36, Neg. LLF: 146.7766286040786
Iteration: 5, Func. Count: 44, Neg. LLF: 146.7734634390156
Iteration: 6, Func. Count: 52, Neg. LLF: 146.7663233539611
Iteration: 7, Func. Count: 60, Neg. LLF: 146.7576039967867
Iteration: 8, Func. Count: 68, Neg. LLF: 146.7427432602637
Iteration: 9, Func. Count: 76, Neg. LLF: 146.7206667783563
Iteration: 10, Func. Count: 84, Neg. LLF: 146.66878631923254
Iteration: 11, Func. Count: 92, Neg. LLF: 146.60026035555862
Iteration: 12, Func. Count: 100, Neg. LLF: 146.5702160093295
Iteration: 13, Func. Count: 108, Neg. LLF: 146.54548170954655
Iteration: 14, Func. Count: 116, Neg. LLF: 146.51606554806253
Iteration: 15, Func. Count: 124, Neg. LLF: 146.46001245822094
Iteration: 16, Func. Count: 132, Neg. LLF: 146.45280296024848
Iteration: 17, Func. Count: 140, Neg. LLF: 146.45167949785392
Iteration: 18, Func. Count: 148, Neg. LLF: 146.45160436746056
Iteration: 19, Func. Count: 156, Neg. LLF: 146.45160234786778
Iteration: 20, Func. Count: 163, Neg. LLF: 146.45160235312787
Optimization terminated successfully (Exit mode 0)
Current function value: 146.45160234786778
Iterations: 20
Function evaluations: 163
Gradient evaluations: 20
Iteration: 1, Func. Count: 10, Neg. LLF: 154.0487651051162
Iteration: 2, Func. Count: 21, Neg. LLF: 148.68568370375226
Iteration: 3, Func. Count: 31, Neg. LLF: 146.88621390300108
Iteration: 4, Func. Count: 40, Neg. LLF: 146.78072410701404
Iteration: 5, Func. Count: 49, Neg. LLF: 146.7728901941754
Iteration: 6, Func. Count: 58, Neg. LLF: 146.7652925510585
Iteration: 7, Func. Count: 67, Neg. LLF: 146.75789345819484
Iteration: 8, Func. Count: 76, Neg. LLF: 146.7296626548669
Iteration: 9, Func. Count: 85, Neg. LLF: 146.70072442622237
Iteration: 10, Func. Count: 94, Neg. LLF: 146.60880214059318
Iteration: 11, Func. Count: 103, Neg. LLF: 146.56611200238132
Iteration: 12, Func. Count: 112, Neg. LLF: 146.55665052837583
Iteration: 13, Func. Count: 121, Neg. LLF: 146.5227659968006
Iteration: 14, Func. Count: 130, Neg. LLF: 146.49412956839757
Iteration: 15, Func. Count: 139, Neg. LLF: 146.45758879531013
Iteration: 16, Func. Count: 148, Neg. LLF: 146.45251927337148
Iteration: 17, Func. Count: 157, Neg. LLF: 146.45161180356098
Iteration: 18, Func. Count: 166, Neg. LLF: 146.4516028126738
Iteration: 19, Func. Count: 174, Neg. LLF: 146.45160283918776
Optimization terminated successfully (Exit mode 0)
Current function value: 146.4516028126738
Iterations: 19
Function evaluations: 174
Gradient evaluations: 19
Iteration: 1, Func. Count: 11, Neg. LLF: 375.15799791009897
Iteration: 2, Func. Count: 23, Neg. LLF: 146.89371919909982
Iteration: 3, Func. Count: 33, Neg. LLF: 146.87403220833136
Iteration: 4, Func. Count: 43, Neg. LLF: 146.85533308349818
Iteration: 5, Func. Count: 53, Neg. LLF: 146.8147595929036
Iteration: 6, Func. Count: 63, Neg. LLF: 146.73081364269834
Iteration: 7, Func. Count: 73, Neg. LLF: 146.73210890834514
Iteration: 8, Func. Count: 84, Neg. LLF: 146.72076541756257
Iteration: 9, Func. Count: 94, Neg. LLF: 146.7205718234494
Iteration: 10, Func. Count: 104, Neg. LLF: 146.72055490329498
Iteration: 11, Func. Count: 113, Neg. LLF: 146.7205549032171
Optimization terminated successfully (Exit mode 0)
Current function value: 146.72055490329498
Iterations: 11
Function evaluations: 113
Gradient evaluations: 11
Iteration: 1, Func. Count: 8, Neg. LLF: 150.68418581816638
Iteration: 2, Func. Count: 16, Neg. LLF: 151.60546414245476
Iteration: 3, Func. Count: 24, Neg. LLF: 148.60787674772914
Iteration: 4, Func. Count: 33, Neg. LLF: 146.95732965950793
Iteration: 5, Func. Count: 40, Neg. LLF: 146.6025754043249
Iteration: 6, Func. Count: 47, Neg. LLF: 146.48386365998647
Iteration: 7, Func. Count: 54, Neg. LLF: 146.45990991098031
Iteration: 8, Func. Count: 61, Neg. LLF: 146.4559174796719
Iteration: 9, Func. Count: 68, Neg. LLF: 146.45258516495062
Iteration: 10, Func. Count: 75, Neg. LLF: 146.45165338969989
Iteration: 11, Func. Count: 82, Neg. LLF: 146.45160340278764
Iteration: 12, Func. Count: 89, Neg. LLF: 146.4516022781278
Iteration: 13, Func. Count: 95, Neg. LLF: 146.4516023355106
Optimization terminated successfully (Exit mode 0)
Current function value: 146.4516022781278
Iterations: 13
Function evaluations: 95
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 147.72761432652186
Iteration: 2, Func. Count: 19, Neg. LLF: 148.89856566102014
Iteration: 3, Func. Count: 28, Neg. LLF: 146.92942260948058
Iteration: 4, Func. Count: 36, Neg. LLF: 146.92665044217304
Iteration: 5, Func. Count: 44, Neg. LLF: 146.92065044027993
Iteration: 6, Func. Count: 52, Neg. LLF: 146.87975869766927
Iteration: 7, Func. Count: 60, Neg. LLF: 146.50031932402882
Iteration: 8, Func. Count: 68, Neg. LLF: 146.48750408191341
Iteration: 9, Func. Count: 76, Neg. LLF: 146.45346230810352
Iteration: 10, Func. Count: 84, Neg. LLF: 146.45181885219202
Iteration: 11, Func. Count: 92, Neg. LLF: 146.45165832558249
Iteration: 12, Func. Count: 100, Neg. LLF: 146.4516315033108
Iteration: 13, Func. Count: 108, Neg. LLF: 146.4516035508757
Iteration: 14, Func. Count: 116, Neg. LLF: 146.45160238278572
Iteration: 15, Func. Count: 123, Neg. LLF: 146.45160241210144
Optimization terminated successfully (Exit mode 0)
Current function value: 146.45160238278572
Iterations: 15
Function evaluations: 123
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 150.17220814074363
Iteration: 2, Func. Count: 21, Neg. LLF: 148.7485674565091
Iteration: 3, Func. Count: 31, Neg. LLF: 146.8548917298389
Iteration: 4, Func. Count: 40, Neg. LLF: 146.77772103064157
Iteration: 5, Func. Count: 49, Neg. LLF: 146.77473230943252
Iteration: 6, Func. Count: 58, Neg. LLF: 146.76744427346034
Iteration: 7, Func. Count: 67, Neg. LLF: 146.75822867964726
Iteration: 8, Func. Count: 76, Neg. LLF: 146.74320467671959
Iteration: 9, Func. Count: 85, Neg. LLF: 146.7203998207164
Iteration: 10, Func. Count: 94, Neg. LLF: 146.66927040111307
Iteration: 11, Func. Count: 103, Neg. LLF: 146.60116618673626
Iteration: 12, Func. Count: 112, Neg. LLF: 146.57114542705145
Iteration: 13, Func. Count: 121, Neg. LLF: 146.54632496480025
Iteration: 14, Func. Count: 130, Neg. LLF: 146.51766795610854
Iteration: 15, Func. Count: 139, Neg. LLF: 146.46429012392903
Iteration: 16, Func. Count: 148, Neg. LLF: 146.45342581571575
Iteration: 17, Func. Count: 157, Neg. LLF: 146.4517365289191
Iteration: 18, Func. Count: 166, Neg. LLF: 146.45160552999528
Iteration: 19, Func. Count: 175, Neg. LLF: 146.45160243214912
Iteration: 20, Func. Count: 183, Neg. LLF: 146.45160243740145
Optimization terminated successfully (Exit mode 0)
Current function value: 146.45160243214912
Iterations: 20
Function evaluations: 183
Gradient evaluations: 20
Iteration: 1, Func. Count: 11, Neg. LLF: 153.84575794085654
Iteration: 2, Func. Count: 23, Neg. LLF: 148.68875933510006
Iteration: 3, Func. Count: 34, Neg. LLF: 146.88700851209703
Iteration: 4, Func. Count: 44, Neg. LLF: 146.78068827041125
Iteration: 5, Func. Count: 54, Neg. LLF: 146.77219990662564
Iteration: 6, Func. Count: 64, Neg. LLF: 146.76471224932038
Iteration: 7, Func. Count: 74, Neg. LLF: 146.75700757700596
Iteration: 8, Func. Count: 84, Neg. LLF: 146.7278069952264
Iteration: 9, Func. Count: 94, Neg. LLF: 146.68942645856797
Iteration: 10, Func. Count: 104, Neg. LLF: 146.58893794223553
Iteration: 11, Func. Count: 114, Neg. LLF: 146.55475467373003
Iteration: 12, Func. Count: 124, Neg. LLF: 146.54987027482855
Iteration: 13, Func. Count: 135, Neg. LLF: 146.5148370727309
Iteration: 14, Func. Count: 145, Neg. LLF: 146.4715352383984
Iteration: 15, Func. Count: 155, Neg. LLF: 146.4563356962864
Iteration: 16, Func. Count: 165, Neg. LLF: 146.4524292043639
Iteration: 17, Func. Count: 175, Neg. LLF: 146.4516118024559
Iteration: 18, Func. Count: 185, Neg. LLF: 146.45160244259324
Iteration: 19, Func. Count: 194, Neg. LLF: 146.45160246910467
Optimization terminated successfully (Exit mode 0)
Current function value: 146.45160244259324
Iterations: 19
Function evaluations: 194
Gradient evaluations: 19
Iteration: 1, Func. Count: 12, Neg. LLF: 374.62662127249405
Iteration: 2, Func. Count: 25, Neg. LLF: 146.89360489037185
Iteration: 3, Func. Count: 36, Neg. LLF: 146.87460398890624
Iteration: 4, Func. Count: 47, Neg. LLF: 146.8562710904177
Iteration: 5, Func. Count: 58, Neg. LLF: 146.8160083182911
Iteration: 6, Func. Count: 69, Neg. LLF: 146.73519216176345
Iteration: 7, Func. Count: 80, Neg. LLF: 146.72801325715628
Iteration: 8, Func. Count: 91, Neg. LLF: 146.72215184130303
Iteration: 9, Func. Count: 102, Neg. LLF: 146.7209248690486
Iteration: 10, Func. Count: 113, Neg. LLF: 146.7206164250486
Iteration: 11, Func. Count: 124, Neg. LLF: 146.7205557029644
Iteration: 12, Func. Count: 135, Neg. LLF: 146.72055480028237
Optimization terminated successfully (Exit mode 0)
Current function value: 146.72055480028237
Iterations: 12
Function evaluations: 135
Gradient evaluations: 12
Iteration: 1, Func. Count: 5, Neg. LLF: 149.46299382139495
Iteration: 2, Func. Count: 10, Neg. LLF: 150.24640700105897
Iteration: 3, Func. Count: 15, Neg. LLF: 147.21467651067042
Iteration: 4, Func. Count: 19, Neg. LLF: 146.9437601100387
Iteration: 5, Func. Count: 23, Neg. LLF: 146.8783717495695
Iteration: 6, Func. Count: 27, Neg. LLF: 146.8245641283169
Iteration: 7, Func. Count: 31, Neg. LLF: 146.8144238500556
Iteration: 8, Func. Count: 35, Neg. LLF: 146.81358546431193
Iteration: 9, Func. Count: 39, Neg. LLF: 146.8135728844691
Iteration: 10, Func. Count: 42, Neg. LLF: 146.81357288450263
Optimization terminated successfully (Exit mode 0)
Current function value: 146.8135728844691
Iterations: 10
Function evaluations: 42
Gradient evaluations: 10
Iteration: 1, Func. Count: 6, Neg. LLF: 148.9132707232028
Iteration: 2, Func. Count: 13, Neg. LLF: 146.95964724735296
Iteration: 3, Func. Count: 18, Neg. LLF: 146.9594368987578
Iteration: 4, Func. Count: 23, Neg. LLF: 146.9593526938368
Iteration: 5, Func. Count: 28, Neg. LLF: 146.9593053835596
Iteration: 6, Func. Count: 33, Neg. LLF: 146.9592985847871
Iteration: 7, Func. Count: 37, Neg. LLF: 146.9592985847112
Optimization terminated successfully (Exit mode 0)
Current function value: 146.9592985847871
Iterations: 7
Function evaluations: 37
Gradient evaluations: 7
Iteration: 1, Func. Count: 7, Neg. LLF: 148.4638583190496
Iteration: 2, Func. Count: 15, Neg. LLF: 146.96412800505902
Iteration: 3, Func. Count: 21, Neg. LLF: 146.96395827572204
Iteration: 4, Func. Count: 27, Neg. LLF: 146.96384447141716
Iteration: 5, Func. Count: 33, Neg. LLF: 146.9631489038488
Iteration: 6, Func. Count: 39, Neg. LLF: 146.9616643554465
Iteration: 7, Func. Count: 45, Neg. LLF: 146.9603128990107
Iteration: 8, Func. Count: 51, Neg. LLF: 146.95931013585135
Iteration: 9, Func. Count: 57, Neg. LLF: 146.95927203085586
Iteration: 10, Func. Count: 62, Neg. LLF: 146.95927203111378
Optimization terminated successfully (Exit mode 0)
Current function value: 146.95927203085586
Iterations: 10
Function evaluations: 62
Gradient evaluations: 10
Iteration: 1, Func. Count: 8, Neg. LLF: 147.59479368741404
Iteration: 2, Func. Count: 17, Neg. LLF: 146.96761152105526
Iteration: 3, Func. Count: 24, Neg. LLF: 146.9666243690092
Iteration: 4, Func. Count: 31, Neg. LLF: 146.96557959221113
Iteration: 5, Func. Count: 38, Neg. LLF: 146.96374756497008
Iteration: 6, Func. Count: 45, Neg. LLF: 146.9635207989114
Iteration: 7, Func. Count: 52, Neg. LLF: 146.96239171934243
Iteration: 8, Func. Count: 59, Neg. LLF: 146.96077884120623
Iteration: 9, Func. Count: 66, Neg. LLF: 146.9601529463392
Iteration: 10, Func. Count: 73, Neg. LLF: 146.95928713431502
Iteration: 11, Func. Count: 80, Neg. LLF: 146.95928087571397
Iteration: 12, Func. Count: 87, Neg. LLF: 146.95927972560878
Iteration: 13, Func. Count: 93, Neg. LLF: 146.95927972607916
Optimization terminated successfully (Exit mode 0)
Current function value: 146.95927972560878
Iterations: 13
Function evaluations: 93
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 158.7026447292839
Iteration: 2, Func. Count: 20, Neg. LLF: 146.9702445106238
Iteration: 3, Func. Count: 28, Neg. LLF: 146.96978325145827
Iteration: 4, Func. Count: 36, Neg. LLF: 146.96899551364808
Iteration: 5, Func. Count: 44, Neg. LLF: 146.96611880052654
Iteration: 6, Func. Count: 52, Neg. LLF: 146.9636718146648
Iteration: 7, Func. Count: 60, Neg. LLF: 146.9628505802726
Iteration: 8, Func. Count: 68, Neg. LLF: 146.96158499629985
Iteration: 9, Func. Count: 76, Neg. LLF: 146.9612974393962
Iteration: 10, Func. Count: 84, Neg. LLF: 146.95960039299305
Iteration: 11, Func. Count: 92, Neg. LLF: 146.95933349953918
Iteration: 12, Func. Count: 100, Neg. LLF: 146.95928652635197
Iteration: 13, Func. Count: 107, Neg. LLF: 146.95928652705433
Optimization terminated successfully (Exit mode 0)
Current function value: 146.95928652635197
Iterations: 13
Function evaluations: 107
Gradient evaluations: 13
Iteration: 1, Func. Count: 6, Neg. LLF: 150.14040724296473
Iteration: 2, Func. Count: 12, Neg. LLF: 150.08135848090768
Iteration: 3, Func. Count: 18, Neg. LLF: 146.94534320050556
Iteration: 4, Func. Count: 23, Neg. LLF: 146.73492846462227
Iteration: 5, Func. Count: 28, Neg. LLF: 146.64394552490478
Iteration: 6, Func. Count: 33, Neg. LLF: 146.49285723646446
Iteration: 7, Func. Count: 38, Neg. LLF: 146.4485384903894
Iteration: 8, Func. Count: 43, Neg. LLF: 146.44113227462682
Iteration: 9, Func. Count: 48, Neg. LLF: 146.44062772294228
Iteration: 10, Func. Count: 53, Neg. LLF: 146.44060462299643
Iteration: 11, Func. Count: 58, Neg. LLF: 146.4406036601555
Optimization terminated successfully (Exit mode 0)
Current function value: 146.4406036601555
Iterations: 11
Function evaluations: 58
Gradient evaluations: 11
Iteration: 1, Func. Count: 7, Neg. LLF: 150.2102579014361
Iteration: 2, Func. Count: 15, Neg. LLF: 146.9363303642661
Iteration: 3, Func. Count: 21, Neg. LLF: 146.92845923253267
Iteration: 4, Func. Count: 27, Neg. LLF: 146.93045681601333
Iteration: 5, Func. Count: 34, Neg. LLF: 146.91866737481018
Iteration: 6, Func. Count: 40, Neg. LLF: 146.8827732914083
Iteration: 7, Func. Count: 46, Neg. LLF: 146.48561995478167
Iteration: 8, Func. Count: 52, Neg. LLF: 146.46704707364626
Iteration: 9, Func. Count: 58, Neg. LLF: 146.45321393952284
Iteration: 10, Func. Count: 64, Neg. LLF: 146.45187107357597
Iteration: 11, Func. Count: 70, Neg. LLF: 146.45095623950604
Iteration: 12, Func. Count: 76, Neg. LLF: 146.45044454533354
Iteration: 13, Func. Count: 82, Neg. LLF: 146.45018506677428
Iteration: 14, Func. Count: 88, Neg. LLF: 146.4498270456406
Iteration: 15, Func. Count: 94, Neg. LLF: 146.44883719330505
Iteration: 16, Func. Count: 100, Neg. LLF: 146.4468929613609
Iteration: 17, Func. Count: 106, Neg. LLF: 146.44484117506536
Iteration: 18, Func. Count: 112, Neg. LLF: 146.44133606278515
Iteration: 19, Func. Count: 118, Neg. LLF: 146.4406150010893
Iteration: 20, Func. Count: 124, Neg. LLF: 146.440603926272
Iteration: 21, Func. Count: 129, Neg. LLF: 146.44060395878856
Optimization terminated successfully (Exit mode 0)
Current function value: 146.440603926272
Iterations: 21
Function evaluations: 129
Gradient evaluations: 21
Iteration: 1, Func. Count: 8, Neg. LLF: 146.91302424749585
Iteration: 2, Func. Count: 15, Neg. LLF: 147.27611034798454
Iteration: 3, Func. Count: 23, Neg. LLF: 147.7414022263757
Iteration: 4, Func. Count: 31, Neg. LLF: 146.76342392460427
Iteration: 5, Func. Count: 38, Neg. LLF: 147.03936209149057
Iteration: 6, Func. Count: 46, Neg. LLF: 146.95503242281666
Iteration: 7, Func. Count: 54, Neg. LLF: 146.8028809638053
Iteration: 8, Func. Count: 62, Neg. LLF: 146.67076808155736
Iteration: 9, Func. Count: 69, Neg. LLF: 146.6394383215445
Iteration: 10, Func. Count: 76, Neg. LLF: 146.61998906755937
Iteration: 11, Func. Count: 83, Neg. LLF: 146.58882936109688
Iteration: 12, Func. Count: 90, Neg. LLF: 146.56010762991806
Iteration: 13, Func. Count: 97, Neg. LLF: 146.4967569928683
Iteration: 14, Func. Count: 104, Neg. LLF: 146.48721120395652
Iteration: 15, Func. Count: 111, Neg. LLF: 146.4571925394287
Iteration: 16, Func. Count: 118, Neg. LLF: 146.44656226359413
Iteration: 17, Func. Count: 125, Neg. LLF: 146.44123777927044
Iteration: 18, Func. Count: 132, Neg. LLF: 146.44069908938775
Iteration: 19, Func. Count: 139, Neg. LLF: 146.4406113639957
Iteration: 20, Func. Count: 146, Neg. LLF: 146.44060379669526
Iteration: 21, Func. Count: 152, Neg. LLF: 146.44060380835347
Optimization terminated successfully (Exit mode 0)
Current function value: 146.44060379669526
Iterations: 21
Function evaluations: 152
Gradient evaluations: 21
Iteration: 1, Func. Count: 9, Neg. LLF: 147.45638326011775
Iteration: 2, Func. Count: 19, Neg. LLF: 146.81149592209164
Iteration: 3, Func. Count: 27, Neg. LLF: 146.80727947972537
Iteration: 4, Func. Count: 36, Neg. LLF: 146.69956891355693
Iteration: 5, Func. Count: 44, Neg. LLF: 146.6983939498104
Iteration: 6, Func. Count: 53, Neg. LLF: 146.6853904499764
Iteration: 7, Func. Count: 61, Neg. LLF: 146.62078826899048
Iteration: 8, Func. Count: 69, Neg. LLF: 146.52641326549727
Iteration: 9, Func. Count: 77, Neg. LLF: 146.50320503131834
Iteration: 10, Func. Count: 85, Neg. LLF: 146.49191350971094
Iteration: 11, Func. Count: 93, Neg. LLF: 146.45323231062088
Iteration: 12, Func. Count: 101, Neg. LLF: 146.4423117826065
Iteration: 13, Func. Count: 109, Neg. LLF: 146.44081177617406
Iteration: 14, Func. Count: 117, Neg. LLF: 146.44064535243382
Iteration: 15, Func. Count: 125, Neg. LLF: 146.4406043049735
Iteration: 16, Func. Count: 133, Neg. LLF: 146.44060368241261
Optimization terminated successfully (Exit mode 0)
Current function value: 146.44060368241261
Iterations: 16
Function evaluations: 133
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 155.07093510131028
Iteration: 2, Func. Count: 21, Neg. LLF: 147.2269191273446
Iteration: 3, Func. Count: 31, Neg. LLF: 146.7932427589678
Iteration: 4, Func. Count: 40, Neg. LLF: 146.64355534685586
Iteration: 5, Func. Count: 49, Neg. LLF: 146.6893693082617
Iteration: 6, Func. Count: 59, Neg. LLF: 146.63377961932676
Iteration: 7, Func. Count: 68, Neg. LLF: 146.6225121412613
Iteration: 8, Func. Count: 77, Neg. LLF: 146.61652822636626
Iteration: 9, Func. Count: 86, Neg. LLF: 146.57786710706665
Iteration: 10, Func. Count: 95, Neg. LLF: 146.50140078350523
Iteration: 11, Func. Count: 104, Neg. LLF: 146.46516131547781
Iteration: 12, Func. Count: 113, Neg. LLF: 146.44627136067703
Iteration: 13, Func. Count: 122, Neg. LLF: 146.44119579182248
Iteration: 14, Func. Count: 131, Neg. LLF: 146.44075314663664
Iteration: 15, Func. Count: 140, Neg. LLF: 146.44060775867877
Iteration: 16, Func. Count: 149, Neg. LLF: 146.4406039015111
Iteration: 17, Func. Count: 157, Neg. LLF: 146.44060392185523
Optimization terminated successfully (Exit mode 0)
Current function value: 146.4406039015111
Iterations: 17
Function evaluations: 157
Gradient evaluations: 17
Iteration: 1, Func. Count: 7, Neg. LLF: 153.36606772419938
Iteration: 2, Func. Count: 14, Neg. LLF: 148.85745258089472
Iteration: 3, Func. Count: 21, Neg. LLF: 146.88943211638096
Iteration: 4, Func. Count: 27, Neg. LLF: 146.7412514610366
Iteration: 5, Func. Count: 33, Neg. LLF: 146.65659095472867
Iteration: 6, Func. Count: 39, Neg. LLF: 146.53680580071102
Iteration: 7, Func. Count: 45, Neg. LLF: 146.46471716922701
Iteration: 8, Func. Count: 51, Neg. LLF: 146.44270431349608
Iteration: 9, Func. Count: 57, Neg. LLF: 146.44063769436335
Iteration: 10, Func. Count: 63, Neg. LLF: 146.44060567556897
Iteration: 11, Func. Count: 69, Neg. LLF: 146.44060377114477
Iteration: 12, Func. Count: 74, Neg. LLF: 146.44060382788246
Optimization terminated successfully (Exit mode 0)
Current function value: 146.44060377114477
Iterations: 12
Function evaluations: 74
Gradient evaluations: 12
Iteration: 1, Func. Count: 8, Neg. LLF: 147.4520190123043
Iteration: 2, Func. Count: 17, Neg. LLF: 148.97526267577055
Iteration: 3, Func. Count: 25, Neg. LLF: 146.93042198324858
Iteration: 4, Func. Count: 32, Neg. LLF: 146.92803995251813
Iteration: 5, Func. Count: 39, Neg. LLF: 146.92359048197517
Iteration: 6, Func. Count: 46, Neg. LLF: 146.9116610466255
Iteration: 7, Func. Count: 53, Neg. LLF: 146.86082643614384
Iteration: 8, Func. Count: 60, Neg. LLF: 146.68974191150406
Iteration: 9, Func. Count: 67, Neg. LLF: 146.6602098737797
Iteration: 10, Func. Count: 74, Neg. LLF: 146.63339575964682
Iteration: 11, Func. Count: 81, Neg. LLF: 146.57720499897167
Iteration: 12, Func. Count: 88, Neg. LLF: 146.51295408525334
Iteration: 13, Func. Count: 95, Neg. LLF: 146.4714854246278
Iteration: 14, Func. Count: 102, Neg. LLF: 146.45966115469608
Iteration: 15, Func. Count: 109, Neg. LLF: 146.45587996335306
Iteration: 16, Func. Count: 116, Neg. LLF: 146.45325129532802
Iteration: 17, Func. Count: 123, Neg. LLF: 146.45200917846856
Iteration: 18, Func. Count: 130, Neg. LLF: 146.4516423572365
Iteration: 19, Func. Count: 137, Neg. LLF: 146.45160317101383
Iteration: 20, Func. Count: 144, Neg. LLF: 146.4516022627365
Optimization terminated successfully (Exit mode 0)
Current function value: 146.4516022627365
Iterations: 20
Function evaluations: 144
Gradient evaluations: 20
Iteration: 1, Func. Count: 9, Neg. LLF: 148.4035976052215
Iteration: 2, Func. Count: 19, Neg. LLF: 148.73674596640413
Iteration: 3, Func. Count: 28, Neg. LLF: 146.8189472404493
Iteration: 4, Func. Count: 36, Neg. LLF: 146.77304501770664
Iteration: 5, Func. Count: 44, Neg. LLF: 146.74485017752252
Iteration: 6, Func. Count: 52, Neg. LLF: 146.68543843248574
Iteration: 7, Func. Count: 60, Neg. LLF: 146.65727613542137
Iteration: 8, Func. Count: 68, Neg. LLF: 146.60121136365484
Iteration: 9, Func. Count: 76, Neg. LLF: 146.57026352989854
Iteration: 10, Func. Count: 84, Neg. LLF: 146.5411215150601
Iteration: 11, Func. Count: 92, Neg. LLF: 146.490240218504
Iteration: 12, Func. Count: 100, Neg. LLF: 146.47409614026796
Iteration: 13, Func. Count: 108, Neg. LLF: 146.46257659406092
Iteration: 14, Func. Count: 116, Neg. LLF: 146.45876237854765
Iteration: 15, Func. Count: 124, Neg. LLF: 146.45249291399887
Iteration: 16, Func. Count: 132, Neg. LLF: 146.44673776070596
Iteration: 17, Func. Count: 140, Neg. LLF: 146.44207886878772
Iteration: 18, Func. Count: 148, Neg. LLF: 146.4408142327135
Iteration: 19, Func. Count: 156, Neg. LLF: 146.4406193338726
Iteration: 20, Func. Count: 164, Neg. LLF: 146.4406038207544
Iteration: 21, Func. Count: 171, Neg. LLF: 146.44060383240387
Optimization terminated successfully (Exit mode 0)
Current function value: 146.4406038207544
Iterations: 21
Function evaluations: 171
Gradient evaluations: 21
Iteration: 1, Func. Count: 10, Neg. LLF: 153.81639819198085
Iteration: 2, Func. Count: 21, Neg. LLF: 148.67475610652374
Iteration: 3, Func. Count: 31, Neg. LLF: 146.85877961401332
Iteration: 4, Func. Count: 40, Neg. LLF: 146.77883603433088
Iteration: 5, Func. Count: 49, Neg. LLF: 146.75406151089496
Iteration: 6, Func. Count: 58, Neg. LLF: 146.69722553904342
Iteration: 7, Func. Count: 67, Neg. LLF: 146.69951286132817
Iteration: 8, Func. Count: 77, Neg. LLF: 146.6392213484525
Iteration: 9, Func. Count: 86, Neg. LLF: 146.60406388144216
Iteration: 10, Func. Count: 95, Neg. LLF: 146.5788075144043
Iteration: 11, Func. Count: 104, Neg. LLF: 146.55417014104802
Iteration: 12, Func. Count: 113, Neg. LLF: 146.53493466494626
Iteration: 13, Func. Count: 122, Neg. LLF: 146.46980195899235
Iteration: 14, Func. Count: 131, Neg. LLF: 146.45711298617695
Iteration: 15, Func. Count: 140, Neg. LLF: 146.45343123882384
Iteration: 16, Func. Count: 149, Neg. LLF: 146.44300459894083
Iteration: 17, Func. Count: 158, Neg. LLF: 146.441121989075
Iteration: 18, Func. Count: 167, Neg. LLF: 146.44064148241563
Iteration: 19, Func. Count: 176, Neg. LLF: 146.4406055818806
Iteration: 20, Func. Count: 185, Neg. LLF: 146.44060366212378
Iteration: 21, Func. Count: 193, Neg. LLF: 146.44060370107397
Optimization terminated successfully (Exit mode 0)
Current function value: 146.44060366212378
Iterations: 21
Function evaluations: 193
Gradient evaluations: 21
Iteration: 1, Func. Count: 11, Neg. LLF: 153.42296899898562
Iteration: 2, Func. Count: 23, Neg. LLF: 148.6736562763317
Iteration: 3, Func. Count: 34, Neg. LLF: 146.79950203890655
Iteration: 4, Func. Count: 44, Neg. LLF: 146.75231881083062
Iteration: 5, Func. Count: 54, Neg. LLF: 146.69322206345095
Iteration: 6, Func. Count: 64, Neg. LLF: 146.6997146986398
Iteration: 7, Func. Count: 75, Neg. LLF: 146.60416462868235
Iteration: 8, Func. Count: 85, Neg. LLF: 146.59724524024998
Iteration: 9, Func. Count: 95, Neg. LLF: 146.59179202144978
Iteration: 10, Func. Count: 105, Neg. LLF: 146.58551507736485
Iteration: 11, Func. Count: 115, Neg. LLF: 146.5395176344478
Iteration: 12, Func. Count: 125, Neg. LLF: 146.46314150657236
Iteration: 13, Func. Count: 135, Neg. LLF: 146.44238016800605
Iteration: 14, Func. Count: 145, Neg. LLF: 146.44077523710249
Iteration: 15, Func. Count: 155, Neg. LLF: 146.4406220433238
Iteration: 16, Func. Count: 165, Neg. LLF: 146.4406104011972
Iteration: 17, Func. Count: 175, Neg. LLF: 146.44060548310364
Iteration: 18, Func. Count: 185, Neg. LLF: 146.4406042973853
Iteration: 19, Func. Count: 194, Neg. LLF: 146.44060431781662
Optimization terminated successfully (Exit mode 0)
Current function value: 146.4406042973853
Iterations: 19
Function evaluations: 194
Gradient evaluations: 19
Iteration: 1, Func. Count: 8, Neg. LLF: 152.98451054391666
Iteration: 2, Func. Count: 16, Neg. LLF: 148.68888617638473
Iteration: 3, Func. Count: 24, Neg. LLF: 147.047196962064
Iteration: 4, Func. Count: 31, Neg. LLF: 147.2019861653494
Iteration: 5, Func. Count: 39, Neg. LLF: 148.4968707612799
Iteration: 6, Func. Count: 47, Neg. LLF: 146.67887133214472
Iteration: 7, Func. Count: 54, Neg. LLF: 146.5740053453493
Iteration: 8, Func. Count: 61, Neg. LLF: 146.50246767499226
Iteration: 9, Func. Count: 68, Neg. LLF: 146.44943090586838
Iteration: 10, Func. Count: 75, Neg. LLF: 146.44083175314944
Iteration: 11, Func. Count: 82, Neg. LLF: 146.4406188357103
Iteration: 12, Func. Count: 89, Neg. LLF: 146.44060588832502
Iteration: 13, Func. Count: 96, Neg. LLF: 146.440603625987
Iteration: 14, Func. Count: 102, Neg. LLF: 146.44060363380518
Optimization terminated successfully (Exit mode 0)
Current function value: 146.440603625987
Iterations: 14
Function evaluations: 102
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 147.54142075891204
Iteration: 2, Func. Count: 19, Neg. LLF: 148.93329169329476
Iteration: 3, Func. Count: 28, Neg. LLF: 146.93017578645498
Iteration: 4, Func. Count: 36, Neg. LLF: 146.92689358537683
Iteration: 5, Func. Count: 44, Neg. LLF: 146.9223984974993
Iteration: 6, Func. Count: 52, Neg. LLF: 146.89225909696677
Iteration: 7, Func. Count: 60, Neg. LLF: 146.67742716487064
Iteration: 8, Func. Count: 68, Neg. LLF: 146.63505605979
Iteration: 9, Func. Count: 76, Neg. LLF: 146.51430405174204
Iteration: 10, Func. Count: 84, Neg. LLF: 146.46727602310222
Iteration: 11, Func. Count: 92, Neg. LLF: 146.45280467646626
Iteration: 12, Func. Count: 100, Neg. LLF: 146.45169956932583
Iteration: 13, Func. Count: 108, Neg. LLF: 146.45162654965006
Iteration: 14, Func. Count: 116, Neg. LLF: 146.4516140776198
Iteration: 15, Func. Count: 124, Neg. LLF: 146.4516071845687
Iteration: 16, Func. Count: 132, Neg. LLF: 146.45160304761532
Iteration: 17, Func. Count: 140, Neg. LLF: 146.45160228860664
Optimization terminated successfully (Exit mode 0)
Current function value: 146.45160228860664
Iterations: 17
Function evaluations: 140
Gradient evaluations: 17
Iteration: 1, Func. Count: 10, Neg. LLF: 148.66081923051743
Iteration: 2, Func. Count: 21, Neg. LLF: 148.73907961582188
Iteration: 3, Func. Count: 31, Neg. LLF: 146.81502460663825
Iteration: 4, Func. Count: 40, Neg. LLF: 146.77225433275447
Iteration: 5, Func. Count: 49, Neg. LLF: 146.73855030633644
Iteration: 6, Func. Count: 58, Neg. LLF: 146.68767623845002
Iteration: 7, Func. Count: 67, Neg. LLF: 146.63677613424724
Iteration: 8, Func. Count: 76, Neg. LLF: 146.58810559312795
Iteration: 9, Func. Count: 85, Neg. LLF: 146.55869691974124
Iteration: 10, Func. Count: 94, Neg. LLF: 146.52609354484827
Iteration: 11, Func. Count: 103, Neg. LLF: 146.48038022072612
Iteration: 12, Func. Count: 112, Neg. LLF: 146.46861838036958
Iteration: 13, Func. Count: 121, Neg. LLF: 146.4643861793811
Iteration: 14, Func. Count: 130, Neg. LLF: 146.45516922761243
Iteration: 15, Func. Count: 139, Neg. LLF: 146.44755705346253
Iteration: 16, Func. Count: 148, Neg. LLF: 146.44176833919175
Iteration: 17, Func. Count: 157, Neg. LLF: 146.44072799276046
Iteration: 18, Func. Count: 166, Neg. LLF: 146.44061751290187
Iteration: 19, Func. Count: 175, Neg. LLF: 146.44060404605708
Iteration: 20, Func. Count: 183, Neg. LLF: 146.44060405768718
Optimization terminated successfully (Exit mode 0)
Current function value: 146.44060404605708
Iterations: 20
Function evaluations: 183
Gradient evaluations: 20
Iteration: 1, Func. Count: 11, Neg. LLF: 153.57291945293167
Iteration: 2, Func. Count: 23, Neg. LLF: 148.6780780698601
Iteration: 3, Func. Count: 34, Neg. LLF: 146.8565069915252
Iteration: 4, Func. Count: 44, Neg. LLF: 146.77836898185618
Iteration: 5, Func. Count: 54, Neg. LLF: 146.75432486427684
Iteration: 6, Func. Count: 64, Neg. LLF: 146.70161390614962
Iteration: 7, Func. Count: 74, Neg. LLF: 146.71110868793767
Iteration: 8, Func. Count: 85, Neg. LLF: 146.64455262853753
Iteration: 9, Func. Count: 95, Neg. LLF: 146.61184441586107
Iteration: 10, Func. Count: 105, Neg. LLF: 146.590237538466
Iteration: 11, Func. Count: 115, Neg. LLF: 146.56350062333271
Iteration: 12, Func. Count: 125, Neg. LLF: 146.53786448341498
Iteration: 13, Func. Count: 135, Neg. LLF: 146.48966975674875
Iteration: 14, Func. Count: 145, Neg. LLF: 146.46219508914737
Iteration: 15, Func. Count: 155, Neg. LLF: 146.45424740606722
Iteration: 16, Func. Count: 165, Neg. LLF: 146.4499410514909
Iteration: 17, Func. Count: 175, Neg. LLF: 146.4447234213479
Iteration: 18, Func. Count: 185, Neg. LLF: 146.44185314001993
Iteration: 19, Func. Count: 195, Neg. LLF: 146.4407580065179
Iteration: 20, Func. Count: 205, Neg. LLF: 146.44061805120543
Iteration: 21, Func. Count: 215, Neg. LLF: 146.44060455844482
Iteration: 22, Func. Count: 225, Neg. LLF: 146.44060369129872
Optimization terminated successfully (Exit mode 0)
Current function value: 146.44060369129872
Iterations: 22
Function evaluations: 225
Gradient evaluations: 22
Iteration: 1, Func. Count: 12, Neg. LLF: 153.183770541561
Iteration: 2, Func. Count: 25, Neg. LLF: 148.67606680462745
Iteration: 3, Func. Count: 37, Neg. LLF: 146.80175865457406
Iteration: 4, Func. Count: 48, Neg. LLF: 146.7502686866946
Iteration: 5, Func. Count: 59, Neg. LLF: 146.6958783077475
Iteration: 6, Func. Count: 70, Neg. LLF: 146.6357964053336
Iteration: 7, Func. Count: 81, Neg. LLF: 146.62369074683085
Iteration: 8, Func. Count: 93, Neg. LLF: 146.5891836339261
Iteration: 9, Func. Count: 104, Neg. LLF: 146.58598402349776
Iteration: 10, Func. Count: 115, Neg. LLF: 146.56804772431286
Iteration: 11, Func. Count: 126, Neg. LLF: 146.54464247549515
Iteration: 12, Func. Count: 137, Neg. LLF: 146.48072872551688
Iteration: 13, Func. Count: 148, Neg. LLF: 146.46307556274965
Iteration: 14, Func. Count: 159, Neg. LLF: 146.45136981528495
Iteration: 15, Func. Count: 170, Neg. LLF: 146.44260933481442
Iteration: 16, Func. Count: 181, Neg. LLF: 146.4409752848215
Iteration: 17, Func. Count: 192, Neg. LLF: 146.44066459355628
Iteration: 18, Func. Count: 203, Neg. LLF: 146.44061277111967
Iteration: 19, Func. Count: 214, Neg. LLF: 146.4406043178212
Iteration: 20, Func. Count: 224, Neg. LLF: 146.44060433811433
Optimization terminated successfully (Exit mode 0)
Current function value: 146.4406043178212
Iterations: 20
Function evaluations: 224
Gradient evaluations: 20
Iteration: 1, Func. Count: 9, Neg. LLF: 152.6858820539823
Iteration: 2, Func. Count: 18, Neg. LLF: 148.80156582432608
Iteration: 3, Func. Count: 27, Neg. LLF: 147.16084726515948
Iteration: 4, Func. Count: 36, Neg. LLF: 146.75932234934237
Iteration: 5, Func. Count: 44, Neg. LLF: 147.75392476127968
Iteration: 6, Func. Count: 53, Neg. LLF: 146.6729089940077
Iteration: 7, Func. Count: 61, Neg. LLF: 146.59552649191832
Iteration: 8, Func. Count: 69, Neg. LLF: 146.48154519396633
Iteration: 9, Func. Count: 77, Neg. LLF: 146.44577705878868
Iteration: 10, Func. Count: 85, Neg. LLF: 146.44090703103618
Iteration: 11, Func. Count: 93, Neg. LLF: 146.44061864907468
Iteration: 12, Func. Count: 101, Neg. LLF: 146.4406037947722
Iteration: 13, Func. Count: 108, Neg. LLF: 146.44060384888616
Optimization terminated successfully (Exit mode 0)
Current function value: 146.4406037947722
Iterations: 13
Function evaluations: 108
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 147.83087621186428
Iteration: 2, Func. Count: 21, Neg. LLF: 148.83850051653405
Iteration: 3, Func. Count: 31, Neg. LLF: 146.9301966873967
Iteration: 4, Func. Count: 40, Neg. LLF: 146.9263711974278
Iteration: 5, Func. Count: 49, Neg. LLF: 146.92161133588692
Iteration: 6, Func. Count: 58, Neg. LLF: 146.89111957643723
Iteration: 7, Func. Count: 67, Neg. LLF: 146.61297257878573
Iteration: 8, Func. Count: 76, Neg. LLF: 146.58070452574106
Iteration: 9, Func. Count: 85, Neg. LLF: 146.47746129658395
Iteration: 10, Func. Count: 94, Neg. LLF: 146.45385342022692
Iteration: 11, Func. Count: 103, Neg. LLF: 146.45214535891495
Iteration: 12, Func. Count: 112, Neg. LLF: 146.45189420588034
Iteration: 13, Func. Count: 121, Neg. LLF: 146.45169557297936
Iteration: 14, Func. Count: 130, Neg. LLF: 146.45161639136575
Iteration: 15, Func. Count: 139, Neg. LLF: 146.4516029806827
Iteration: 16, Func. Count: 148, Neg. LLF: 146.45160225442314
Optimization terminated successfully (Exit mode 0)
Current function value: 146.45160225442314
Iterations: 16
Function evaluations: 148
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 150.03368300595648
Iteration: 2, Func. Count: 23, Neg. LLF: 148.72913275467758
Iteration: 3, Func. Count: 34, Neg. LLF: 146.81933215899198
Iteration: 4, Func. Count: 44, Neg. LLF: 146.77382237296675
Iteration: 5, Func. Count: 54, Neg. LLF: 146.73955768859028
Iteration: 6, Func. Count: 64, Neg. LLF: 146.68064696178476
Iteration: 7, Func. Count: 74, Neg. LLF: 146.63387936124744
Iteration: 8, Func. Count: 84, Neg. LLF: 146.61705783365267
Iteration: 9, Func. Count: 94, Neg. LLF: 146.5699968147975
Iteration: 10, Func. Count: 104, Neg. LLF: 146.5533161908522
Iteration: 11, Func. Count: 114, Neg. LLF: 146.48991218563734
Iteration: 12, Func. Count: 124, Neg. LLF: 146.46465353754252
Iteration: 13, Func. Count: 134, Neg. LLF: 146.45966703522294
Iteration: 14, Func. Count: 144, Neg. LLF: 146.45534228857986
Iteration: 15, Func. Count: 154, Neg. LLF: 146.4487344555586
Iteration: 16, Func. Count: 164, Neg. LLF: 146.44337868540356
Iteration: 17, Func. Count: 174, Neg. LLF: 146.44107431379643
Iteration: 18, Func. Count: 184, Neg. LLF: 146.4406452909716
Iteration: 19, Func. Count: 194, Neg. LLF: 146.44060719994724
Iteration: 20, Func. Count: 204, Neg. LLF: 146.44060382901432
Iteration: 21, Func. Count: 213, Neg. LLF: 146.44060384065648
Optimization terminated successfully (Exit mode 0)
Current function value: 146.44060382901432
Iterations: 21
Function evaluations: 213
Gradient evaluations: 21
Iteration: 1, Func. Count: 12, Neg. LLF: 153.40283194127952
Iteration: 2, Func. Count: 25, Neg. LLF: 148.67961914082406
Iteration: 3, Func. Count: 37, Neg. LLF: 146.8578553607177
Iteration: 4, Func. Count: 48, Neg. LLF: 146.77827972639466
Iteration: 5, Func. Count: 59, Neg. LLF: 146.7548435341592
Iteration: 6, Func. Count: 70, Neg. LLF: 146.6998343025704
Iteration: 7, Func. Count: 81, Neg. LLF: 146.7147756281026
Iteration: 8, Func. Count: 93, Neg. LLF: 146.6458521931219
Iteration: 9, Func. Count: 104, Neg. LLF: 146.61380306434944
Iteration: 10, Func. Count: 115, Neg. LLF: 146.59264515302777
Iteration: 11, Func. Count: 126, Neg. LLF: 146.5620283088785
Iteration: 12, Func. Count: 137, Neg. LLF: 146.5386616064398
Iteration: 13, Func. Count: 148, Neg. LLF: 146.4827495883348
Iteration: 14, Func. Count: 159, Neg. LLF: 146.45669774381435
Iteration: 15, Func. Count: 170, Neg. LLF: 146.4509875609401
Iteration: 16, Func. Count: 181, Neg. LLF: 146.44748339209457
Iteration: 17, Func. Count: 192, Neg. LLF: 146.44322642122188
Iteration: 18, Func. Count: 203, Neg. LLF: 146.44125485125068
Iteration: 19, Func. Count: 214, Neg. LLF: 146.44068960763784
Iteration: 20, Func. Count: 225, Neg. LLF: 146.4406122339241
Iteration: 21, Func. Count: 236, Neg. LLF: 146.44060401564158
Iteration: 22, Func. Count: 246, Neg. LLF: 146.44060405464674
Optimization terminated successfully (Exit mode 0)
Current function value: 146.44060401564158
Iterations: 22
Function evaluations: 246
Gradient evaluations: 22
Iteration: 1, Func. Count: 13, Neg. LLF: 153.0395411736473
Iteration: 2, Func. Count: 27, Neg. LLF: 148.67691182284662
Iteration: 3, Func. Count: 40, Neg. LLF: 146.80286014514365
Iteration: 4, Func. Count: 52, Neg. LLF: 146.74939504315788
Iteration: 5, Func. Count: 64, Neg. LLF: 146.69506572469322
Iteration: 6, Func. Count: 76, Neg. LLF: 146.62835756754373
Iteration: 7, Func. Count: 88, Neg. LLF: 146.62533408518712
Iteration: 8, Func. Count: 101, Neg. LLF: 146.58979412147264
Iteration: 9, Func. Count: 113, Neg. LLF: 146.58615344942478
Iteration: 10, Func. Count: 125, Neg. LLF: 146.5796709707949
Iteration: 11, Func. Count: 137, Neg. LLF: 146.55454512696352
Iteration: 12, Func. Count: 149, Neg. LLF: 146.50717468023018
Iteration: 13, Func. Count: 161, Neg. LLF: 146.46472512518537
Iteration: 14, Func. Count: 173, Neg. LLF: 146.4489258760733
Iteration: 15, Func. Count: 185, Neg. LLF: 146.44415174061646
Iteration: 16, Func. Count: 197, Neg. LLF: 146.44076121167933
Iteration: 17, Func. Count: 209, Neg. LLF: 146.4406435786527
Iteration: 18, Func. Count: 221, Neg. LLF: 146.44061032879483
Iteration: 19, Func. Count: 233, Neg. LLF: 146.44060426817873
Iteration: 20, Func. Count: 245, Neg. LLF: 146.44060367944277
Optimization terminated successfully (Exit mode 0)
Current function value: 146.44060367944277
Iterations: 20
Function evaluations: 245
Gradient evaluations: 20
Iteration: 1, Func. Count: 6, Neg. LLF: 148.99768146715704
Iteration: 2, Func. Count: 12, Neg. LLF: 148.2124244320135
Iteration: 3, Func. Count: 18, Neg. LLF: 147.19651930140424
Iteration: 4, Func. Count: 23, Neg. LLF: 148.06287727900428
Iteration: 5, Func. Count: 29, Neg. LLF: 146.896363874753
Iteration: 6, Func. Count: 34, Neg. LLF: 146.8355302728733
Iteration: 7, Func. Count: 39, Neg. LLF: 146.8154289128511
Iteration: 8, Func. Count: 44, Neg. LLF: 146.81362448607726
Iteration: 9, Func. Count: 49, Neg. LLF: 146.81357612321295
Iteration: 10, Func. Count: 54, Neg. LLF: 146.8135730703292
Iteration: 11, Func. Count: 58, Neg. LLF: 146.81357314277588
Optimization terminated successfully (Exit mode 0)
Current function value: 146.8135730703292
Iterations: 11
Function evaluations: 58
Gradient evaluations: 11
Iteration: 1, Func. Count: 7, Neg. LLF: 147.8457938643451
Iteration: 2, Func. Count: 15, Neg. LLF: 146.9593075156045
Iteration: 3, Func. Count: 21, Neg. LLF: 146.95930843799036
Optimization terminated successfully (Exit mode 0)
Current function value: 146.95930673286247
Iterations: 3
Function evaluations: 22
Gradient evaluations: 3
Iteration: 1, Func. Count: 8, Neg. LLF: 146.99114890564593
Iteration: 2, Func. Count: 15, Neg. LLF: 146.96366872374566
Iteration: 3, Func. Count: 22, Neg. LLF: 146.96354418112128
Iteration: 4, Func. Count: 29, Neg. LLF: 146.96318115127795
Iteration: 5, Func. Count: 36, Neg. LLF: 146.96105584609043
Iteration: 6, Func. Count: 43, Neg. LLF: 146.95983293895887
Iteration: 7, Func. Count: 50, Neg. LLF: 146.959292912922
Iteration: 8, Func. Count: 57, Neg. LLF: 146.95929224921946
Optimization terminated successfully (Exit mode 0)
Current function value: 146.95929224921946
Iterations: 8
Function evaluations: 57
Gradient evaluations: 8
Iteration: 1, Func. Count: 9, Neg. LLF: 154.1300236022322
Iteration: 2, Func. Count: 19, Neg. LLF: 146.96751881204085
Iteration: 3, Func. Count: 27, Neg. LLF: 146.96720519164748
Iteration: 4, Func. Count: 35, Neg. LLF: 146.9656702100206
Iteration: 5, Func. Count: 43, Neg. LLF: 146.9618209035617
Iteration: 6, Func. Count: 51, Neg. LLF: 146.96140523956439
Iteration: 7, Func. Count: 59, Neg. LLF: 146.96086487550144
Iteration: 8, Func. Count: 67, Neg. LLF: 146.9600903385229
Iteration: 9, Func. Count: 75, Neg. LLF: 146.9593488168163
Iteration: 10, Func. Count: 83, Neg. LLF: 146.95927783293635
Iteration: 11, Func. Count: 91, Neg. LLF: 146.95927650728504
Iteration: 12, Func. Count: 98, Neg. LLF: 146.9592765077641
Optimization terminated successfully (Exit mode 0)
Current function value: 146.95927650728504
Iterations: 12
Function evaluations: 98
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 170.9080601401127
Iteration: 2, Func. Count: 22, Neg. LLF: 146.97018522576582
Iteration: 3, Func. Count: 31, Neg. LLF: 146.96983341225683
Iteration: 4, Func. Count: 40, Neg. LLF: 146.96325580462735
Iteration: 5, Func. Count: 49, Neg. LLF: 146.96151586634784
Iteration: 6, Func. Count: 58, Neg. LLF: 146.96106245392025
Iteration: 7, Func. Count: 67, Neg. LLF: 146.9597400175691
Iteration: 8, Func. Count: 76, Neg. LLF: 146.95953568669154
Iteration: 9, Func. Count: 85, Neg. LLF: 146.95928783556494
Iteration: 10, Func. Count: 93, Neg. LLF: 146.95928783628773
Optimization terminated successfully (Exit mode 0)
Current function value: 146.95928783556494
Iterations: 10
Function evaluations: 93
Gradient evaluations: 10
Iteration: 1, Func. Count: 7, Neg. LLF: 149.2968196819528
Iteration: 2, Func. Count: 14, Neg. LLF: 153.88114092229932
Iteration: 3, Func. Count: 21, Neg. LLF: 146.95348942541654
Iteration: 4, Func. Count: 27, Neg. LLF: 146.80607237492583
Iteration: 5, Func. Count: 33, Neg. LLF: 146.68529856167635
Iteration: 6, Func. Count: 39, Neg. LLF: 146.4921409169197
Iteration: 7, Func. Count: 45, Neg. LLF: 146.45921018045075
Iteration: 8, Func. Count: 51, Neg. LLF: 146.44153883410084
Iteration: 9, Func. Count: 57, Neg. LLF: 146.44062800851526
Iteration: 10, Func. Count: 63, Neg. LLF: 146.44060434633587
Iteration: 11, Func. Count: 69, Neg. LLF: 146.4406037062483
Optimization terminated successfully (Exit mode 0)
Current function value: 146.4406037062483
Iterations: 11
Function evaluations: 69
Gradient evaluations: 11
Iteration: 1, Func. Count: 8, Neg. LLF: 148.80322672302944
Iteration: 2, Func. Count: 17, Neg. LLF: 146.9308788703153
Iteration: 3, Func. Count: 24, Neg. LLF: 146.9310113906536
Iteration: 4, Func. Count: 32, Neg. LLF: 146.91770625228835
Iteration: 5, Func. Count: 39, Neg. LLF: 146.8919868896283
Iteration: 6, Func. Count: 46, Neg. LLF: 146.55028450155785
Iteration: 7, Func. Count: 53, Neg. LLF: 146.46623336376354
Iteration: 8, Func. Count: 60, Neg. LLF: 146.45490538933123
Iteration: 9, Func. Count: 67, Neg. LLF: 146.4534208083359
Iteration: 10, Func. Count: 74, Neg. LLF: 146.4519892067317
Iteration: 11, Func. Count: 81, Neg. LLF: 146.45164494890736
Iteration: 12, Func. Count: 88, Neg. LLF: 146.45160692788252
Iteration: 13, Func. Count: 95, Neg. LLF: 146.4516030808849
Iteration: 14, Func. Count: 102, Neg. LLF: 146.45160229331213
Optimization terminated successfully (Exit mode 0)
Current function value: 146.45160229331213
Iterations: 14
Function evaluations: 102
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 148.48883998865836
Iteration: 2, Func. Count: 18, Neg. LLF: 146.99512905469987
Iteration: 3, Func. Count: 27, Neg. LLF: 146.7883529174562
Iteration: 4, Func. Count: 35, Neg. LLF: 146.99989243177285
Iteration: 5, Func. Count: 44, Neg. LLF: 146.94723071805277
Iteration: 6, Func. Count: 53, Neg. LLF: 151.50463335684532
Iteration: 7, Func. Count: 63, Neg. LLF: 146.69041038428077
Iteration: 8, Func. Count: 71, Neg. LLF: 146.6759814161881
Iteration: 9, Func. Count: 79, Neg. LLF: 146.64608453077273
Iteration: 10, Func. Count: 87, Neg. LLF: 146.5381120327647
Iteration: 11, Func. Count: 95, Neg. LLF: 146.49920787999835
Iteration: 12, Func. Count: 103, Neg. LLF: 146.47221728886254
Iteration: 13, Func. Count: 111, Neg. LLF: 146.448529901719
Iteration: 14, Func. Count: 119, Neg. LLF: 146.44505471538295
Iteration: 15, Func. Count: 127, Neg. LLF: 146.44473793308936
Iteration: 16, Func. Count: 135, Neg. LLF: 146.44418777320666
Iteration: 17, Func. Count: 143, Neg. LLF: 146.44335408120205
Iteration: 18, Func. Count: 151, Neg. LLF: 146.44197682315829
Iteration: 19, Func. Count: 159, Neg. LLF: 146.44097930627183
Iteration: 20, Func. Count: 167, Neg. LLF: 146.4406348489738
Iteration: 21, Func. Count: 175, Neg. LLF: 146.4406042853995
Iteration: 22, Func. Count: 183, Neg. LLF: 146.4406036330144
Optimization terminated successfully (Exit mode 0)
Current function value: 146.4406036330144
Iterations: 22
Function evaluations: 183
Gradient evaluations: 22
Iteration: 1, Func. Count: 10, Neg. LLF: 146.930543695402
Iteration: 2, Func. Count: 19, Neg. LLF: 146.8038490184818
Iteration: 3, Func. Count: 28, Neg. LLF: 147.29786980239456
Iteration: 4, Func. Count: 38, Neg. LLF: 146.84136793724798
Iteration: 5, Func. Count: 48, Neg. LLF: 146.7054015566154
Iteration: 6, Func. Count: 57, Neg. LLF: 146.69528328085153
Iteration: 7, Func. Count: 66, Neg. LLF: 146.6752107947729
Iteration: 8, Func. Count: 75, Neg. LLF: 146.5637024753878
Iteration: 9, Func. Count: 84, Neg. LLF: 146.51134035675005
Iteration: 10, Func. Count: 93, Neg. LLF: 146.47746768374154
Iteration: 11, Func. Count: 102, Neg. LLF: 146.4653370963694
Iteration: 12, Func. Count: 111, Neg. LLF: 146.4611699683884
Iteration: 13, Func. Count: 120, Neg. LLF: 146.4523874734758
Iteration: 14, Func. Count: 129, Neg. LLF: 146.44480185477613
Iteration: 15, Func. Count: 138, Neg. LLF: 146.4412826619008
Iteration: 16, Func. Count: 147, Neg. LLF: 146.4406981046251
Iteration: 17, Func. Count: 156, Neg. LLF: 146.44060885694773
Iteration: 18, Func. Count: 165, Neg. LLF: 146.44060373524061
Iteration: 19, Func. Count: 173, Neg. LLF: 146.4406037742019
Optimization terminated successfully (Exit mode 0)
Current function value: 146.44060373524061
Iterations: 19
Function evaluations: 173
Gradient evaluations: 19
Iteration: 1, Func. Count: 11, Neg. LLF: 154.92739307732424
Iteration: 2, Func. Count: 23, Neg. LLF: 146.8073800075283
Iteration: 3, Func. Count: 33, Neg. LLF: 146.74307973791886
Iteration: 4, Func. Count: 43, Neg. LLF: 147.19051910714398
Iteration: 5, Func. Count: 54, Neg. LLF: 146.62624738938396
Iteration: 6, Func. Count: 64, Neg. LLF: 146.61203687878455
Iteration: 7, Func. Count: 74, Neg. LLF: 146.63775511045517
Iteration: 8, Func. Count: 85, Neg. LLF: 146.59820914816697
Iteration: 9, Func. Count: 95, Neg. LLF: 146.5871197091848
Iteration: 10, Func. Count: 105, Neg. LLF: 146.5697472983179
Iteration: 11, Func. Count: 115, Neg. LLF: 146.54585147303138
Iteration: 12, Func. Count: 125, Neg. LLF: 146.50858019923237
Iteration: 13, Func. Count: 135, Neg. LLF: 146.47564500748558
Iteration: 14, Func. Count: 145, Neg. LLF: 146.44683330497594
Iteration: 15, Func. Count: 155, Neg. LLF: 146.44158080067754
Iteration: 16, Func. Count: 165, Neg. LLF: 146.4409940619259
Iteration: 17, Func. Count: 175, Neg. LLF: 146.4406080411954
Iteration: 18, Func. Count: 185, Neg. LLF: 146.44060397423544
Iteration: 19, Func. Count: 194, Neg. LLF: 146.44060399455572
Optimization terminated successfully (Exit mode 0)
Current function value: 146.44060397423544
Iterations: 19
Function evaluations: 194
Gradient evaluations: 19
Iteration: 1, Func. Count: 8, Neg. LLF: 151.28164815125376
Iteration: 2, Func. Count: 16, Neg. LLF: 151.5000868006957
Iteration: 3, Func. Count: 24, Neg. LLF: 146.91155775068486
Iteration: 4, Func. Count: 31, Neg. LLF: 147.1653465389029
Iteration: 5, Func. Count: 39, Neg. LLF: 153.2152369375154
Iteration: 6, Func. Count: 47, Neg. LLF: 146.71224863588438
Iteration: 7, Func. Count: 54, Neg. LLF: 146.6015494088187
Iteration: 8, Func. Count: 61, Neg. LLF: 146.52372052397584
Iteration: 9, Func. Count: 68, Neg. LLF: 146.4518347451243
Iteration: 10, Func. Count: 75, Neg. LLF: 146.4429856770868
Iteration: 11, Func. Count: 82, Neg. LLF: 146.44095613974415
Iteration: 12, Func. Count: 89, Neg. LLF: 146.4406266088093
Iteration: 13, Func. Count: 96, Neg. LLF: 146.4406044716557
Iteration: 14, Func. Count: 103, Neg. LLF: 146.44060365449778
Optimization terminated successfully (Exit mode 0)
Current function value: 146.44060365449778
Iterations: 14
Function evaluations: 103
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 147.8920269879106
Iteration: 2, Func. Count: 19, Neg. LLF: 148.81180832959697
Iteration: 3, Func. Count: 28, Neg. LLF: 146.9297788131796
Iteration: 4, Func. Count: 36, Neg. LLF: 146.92668087207986
Iteration: 5, Func. Count: 44, Neg. LLF: 146.92191384713772
Iteration: 6, Func. Count: 52, Neg. LLF: 146.8884564609436
Iteration: 7, Func. Count: 60, Neg. LLF: 146.53480870390285
Iteration: 8, Func. Count: 68, Neg. LLF: 146.51875802551487
Iteration: 9, Func. Count: 76, Neg. LLF: 146.48988924197153
Iteration: 10, Func. Count: 84, Neg. LLF: 146.457374782191
Iteration: 11, Func. Count: 92, Neg. LLF: 146.45472400677141
Iteration: 12, Func. Count: 100, Neg. LLF: 146.45384932408456
Iteration: 13, Func. Count: 108, Neg. LLF: 146.4529065501441
Iteration: 14, Func. Count: 116, Neg. LLF: 146.4525456339088
Iteration: 15, Func. Count: 124, Neg. LLF: 146.4520011483779
Iteration: 16, Func. Count: 132, Neg. LLF: 146.45175330972833
Iteration: 17, Func. Count: 140, Neg. LLF: 146.45164406978904
Iteration: 18, Func. Count: 148, Neg. LLF: 146.45161262338078
Iteration: 19, Func. Count: 156, Neg. LLF: 146.4516029564721
Iteration: 20, Func. Count: 164, Neg. LLF: 146.4516022554148
Optimization terminated successfully (Exit mode 0)
Current function value: 146.4516022554148
Iterations: 20
Function evaluations: 164
Gradient evaluations: 20
Iteration: 1, Func. Count: 10, Neg. LLF: 151.7080688831977
Iteration: 2, Func. Count: 21, Neg. LLF: 148.71689107917433
Iteration: 3, Func. Count: 31, Neg. LLF: 146.83785994518058
Iteration: 4, Func. Count: 40, Neg. LLF: 146.7752513600491
Iteration: 5, Func. Count: 49, Neg. LLF: 146.7648149345449
Iteration: 6, Func. Count: 58, Neg. LLF: 146.74054877011574
Iteration: 7, Func. Count: 67, Neg. LLF: 146.70583883875904
Iteration: 8, Func. Count: 76, Neg. LLF: 146.67230698661717
Iteration: 9, Func. Count: 85, Neg. LLF: 146.59021541312154
Iteration: 10, Func. Count: 94, Neg. LLF: 146.562779426702
Iteration: 11, Func. Count: 103, Neg. LLF: 146.55446109104753
Iteration: 12, Func. Count: 112, Neg. LLF: 146.5349865849612
Iteration: 13, Func. Count: 121, Neg. LLF: 146.51513672705136
Iteration: 14, Func. Count: 130, Neg. LLF: 146.49963427607872
Iteration: 15, Func. Count: 139, Neg. LLF: 146.49151783281312
Iteration: 16, Func. Count: 148, Neg. LLF: 146.48725493557922
Iteration: 17, Func. Count: 157, Neg. LLF: 146.48339657906456
Iteration: 18, Func. Count: 166, Neg. LLF: 146.47690426861575
Iteration: 19, Func. Count: 175, Neg. LLF: 146.4651932885214
Iteration: 20, Func. Count: 184, Neg. LLF: 146.45101669999266
Iteration: 21, Func. Count: 193, Neg. LLF: 146.44204793268608
Iteration: 22, Func. Count: 202, Neg. LLF: 146.4406764078242
Iteration: 23, Func. Count: 211, Neg. LLF: 146.44060816081344
Iteration: 24, Func. Count: 220, Neg. LLF: 146.4406038993489
Iteration: 25, Func. Count: 228, Neg. LLF: 146.4406039110549
Optimization terminated successfully (Exit mode 0)
Current function value: 146.4406038993489
Iterations: 25
Function evaluations: 228
Gradient evaluations: 25
Iteration: 1, Func. Count: 11, Neg. LLF: 153.6403743410847
Iteration: 2, Func. Count: 23, Neg. LLF: 148.6751006652439
Iteration: 3, Func. Count: 34, Neg. LLF: 146.89700216727218
Iteration: 4, Func. Count: 44, Neg. LLF: 146.83142720688386
Iteration: 5, Func. Count: 54, Neg. LLF: 146.74910578234028
Iteration: 6, Func. Count: 64, Neg. LLF: 146.74531462541773
Iteration: 7, Func. Count: 74, Neg. LLF: 146.73075016181633
Iteration: 8, Func. Count: 84, Neg. LLF: 146.72057521386932
Iteration: 9, Func. Count: 94, Neg. LLF: 146.68304605740096
Iteration: 10, Func. Count: 104, Neg. LLF: 146.6139888401751
Iteration: 11, Func. Count: 114, Neg. LLF: 146.55693505501335
Iteration: 12, Func. Count: 124, Neg. LLF: 146.46559024134098
Iteration: 13, Func. Count: 134, Neg. LLF: 146.45962088867296
Iteration: 14, Func. Count: 144, Neg. LLF: 146.4433326913863
Iteration: 15, Func. Count: 154, Neg. LLF: 146.44181713971196
Iteration: 16, Func. Count: 164, Neg. LLF: 146.44101946177767
Iteration: 17, Func. Count: 174, Neg. LLF: 146.44090108357997
Iteration: 18, Func. Count: 184, Neg. LLF: 146.44060967815437
Iteration: 19, Func. Count: 194, Neg. LLF: 146.4406037858117
Iteration: 20, Func. Count: 203, Neg. LLF: 146.44060382471548
Optimization terminated successfully (Exit mode 0)
Current function value: 146.4406037858117
Iterations: 20
Function evaluations: 203
Gradient evaluations: 20
Iteration: 1, Func. Count: 12, Neg. LLF: 152.85785590228517
Iteration: 2, Func. Count: 25, Neg. LLF: 148.66705636529073
Iteration: 3, Func. Count: 37, Neg. LLF: 147.88384190338496
Iteration: 4, Func. Count: 49, Neg. LLF: 146.57621876283523
Iteration: 5, Func. Count: 60, Neg. LLF: 146.53757390918904
Iteration: 6, Func. Count: 71, Neg. LLF: 146.4811429163721
Iteration: 7, Func. Count: 82, Neg. LLF: 146.4809139216887
Iteration: 8, Func. Count: 94, Neg. LLF: 146.7870291314869
Iteration: 9, Func. Count: 107, Neg. LLF: 146.45259294962855
Iteration: 10, Func. Count: 118, Neg. LLF: 146.45026674529475
Iteration: 11, Func. Count: 129, Neg. LLF: 146.44743334803687
Iteration: 12, Func. Count: 140, Neg. LLF: 146.44396728868855
Iteration: 13, Func. Count: 151, Neg. LLF: 146.43605935390858
Iteration: 14, Func. Count: 162, Neg. LLF: 146.41940316512142
Iteration: 15, Func. Count: 173, Neg. LLF: 146.4068331362192
Iteration: 16, Func. Count: 184, Neg. LLF: 146.39155883090805
Iteration: 17, Func. Count: 195, Neg. LLF: 146.38519587925563
Iteration: 18, Func. Count: 206, Neg. LLF: 146.38451130749445
Iteration: 19, Func. Count: 217, Neg. LLF: 146.38445019864014
Iteration: 20, Func. Count: 228, Neg. LLF: 146.38444298432825
Iteration: 21, Func. Count: 239, Neg. LLF: 146.3844421022035
Optimization terminated successfully (Exit mode 0)
Current function value: 146.3844421022035
Iterations: 21
Function evaluations: 239
Gradient evaluations: 21
Iteration: 1, Func. Count: 9, Neg. LLF: 151.5627379429881
Iteration: 2, Func. Count: 18, Neg. LLF: 149.86832389784234
Iteration: 3, Func. Count: 27, Neg. LLF: 146.9552106405276
Iteration: 4, Func. Count: 35, Neg. LLF: 147.24359162281993
Iteration: 5, Func. Count: 44, Neg. LLF: 150.30871536677907
Iteration: 6, Func. Count: 53, Neg. LLF: 146.72089402100744
Iteration: 7, Func. Count: 61, Neg. LLF: 146.63667819634418
Iteration: 8, Func. Count: 69, Neg. LLF: 146.5939498116202
Iteration: 9, Func. Count: 77, Neg. LLF: 146.5065999278839
Iteration: 10, Func. Count: 85, Neg. LLF: 146.44682495280833
Iteration: 11, Func. Count: 93, Neg. LLF: 146.4412378408587
Iteration: 12, Func. Count: 101, Neg. LLF: 146.44069491578935
Iteration: 13, Func. Count: 109, Neg. LLF: 146.4406070426963
Iteration: 14, Func. Count: 117, Neg. LLF: 146.44060386948956
Iteration: 15, Func. Count: 124, Neg. LLF: 146.44060387727504
Optimization terminated successfully (Exit mode 0)
Current function value: 146.44060386948956
Iterations: 15
Function evaluations: 124
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 148.05180910602948
Iteration: 2, Func. Count: 21, Neg. LLF: 148.81614244916477
Iteration: 3, Func. Count: 31, Neg. LLF: 146.92960922089426
Iteration: 4, Func. Count: 40, Neg. LLF: 146.92649611550632
Iteration: 5, Func. Count: 49, Neg. LLF: 146.92164386629634
Iteration: 6, Func. Count: 58, Neg. LLF: 146.88809782213775
Iteration: 7, Func. Count: 67, Neg. LLF: 146.5351692483236
Iteration: 8, Func. Count: 76, Neg. LLF: 146.52050122198864
Iteration: 9, Func. Count: 85, Neg. LLF: 146.4892360885741
Iteration: 10, Func. Count: 94, Neg. LLF: 146.45670505893898
Iteration: 11, Func. Count: 103, Neg. LLF: 146.45451879093173
Iteration: 12, Func. Count: 112, Neg. LLF: 146.45335710315237
Iteration: 13, Func. Count: 121, Neg. LLF: 146.4522306881189
Iteration: 14, Func. Count: 130, Neg. LLF: 146.4517460269404
Iteration: 15, Func. Count: 139, Neg. LLF: 146.45164169905146
Iteration: 16, Func. Count: 148, Neg. LLF: 146.45161537993152
Iteration: 17, Func. Count: 157, Neg. LLF: 146.45160398068714
Iteration: 18, Func. Count: 166, Neg. LLF: 146.45160231657258
Iteration: 19, Func. Count: 174, Neg. LLF: 146.45160234584145
Optimization terminated successfully (Exit mode 0)
Current function value: 146.45160231657258
Iterations: 19
Function evaluations: 174
Gradient evaluations: 19
Iteration: 1, Func. Count: 11, Neg. LLF: 151.76188118828009
Iteration: 2, Func. Count: 23, Neg. LLF: 148.72464269802643
Iteration: 3, Func. Count: 34, Neg. LLF: 146.8339828359769
Iteration: 4, Func. Count: 44, Neg. LLF: 146.7748364758589
Iteration: 5, Func. Count: 54, Neg. LLF: 146.7666330238798
Iteration: 6, Func. Count: 64, Neg. LLF: 146.74076059423413
Iteration: 7, Func. Count: 74, Neg. LLF: 146.7113894026279
Iteration: 8, Func. Count: 84, Neg. LLF: 146.68187283542244
Iteration: 9, Func. Count: 94, Neg. LLF: 146.58658936979685
Iteration: 10, Func. Count: 104, Neg. LLF: 146.65015513442324
Iteration: 11, Func. Count: 115, Neg. LLF: 146.55958080881686
Iteration: 12, Func. Count: 125, Neg. LLF: 146.53095399956942
Iteration: 13, Func. Count: 135, Neg. LLF: 146.51647344692608
Iteration: 14, Func. Count: 145, Neg. LLF: 146.49473791284672
Iteration: 15, Func. Count: 155, Neg. LLF: 146.48408523933318
Iteration: 16, Func. Count: 165, Neg. LLF: 146.47879026011466
Iteration: 17, Func. Count: 175, Neg. LLF: 146.47631627790798
Iteration: 18, Func. Count: 185, Neg. LLF: 146.47193031647532
Iteration: 19, Func. Count: 195, Neg. LLF: 146.46318949616673
Iteration: 20, Func. Count: 205, Neg. LLF: 146.45151699196603
Iteration: 21, Func. Count: 215, Neg. LLF: 146.44256880943547
Iteration: 22, Func. Count: 225, Neg. LLF: 146.44070297324674
Iteration: 23, Func. Count: 235, Neg. LLF: 146.44060610000128
Iteration: 24, Func. Count: 245, Neg. LLF: 146.44060369576124
Iteration: 25, Func. Count: 254, Neg. LLF: 146.4406037074569
Optimization terminated successfully (Exit mode 0)
Current function value: 146.44060369576124
Iterations: 25
Function evaluations: 254
Gradient evaluations: 25
Iteration: 1, Func. Count: 12, Neg. LLF: 153.3990785966632
Iteration: 2, Func. Count: 25, Neg. LLF: 148.68192877605316
Iteration: 3, Func. Count: 37, Neg. LLF: 146.91348135172095
Iteration: 4, Func. Count: 48, Neg. LLF: 146.88544398588905
Iteration: 5, Func. Count: 59, Neg. LLF: 146.91561536100394
Iteration: 6, Func. Count: 71, Neg. LLF: 146.7529367323137
Iteration: 7, Func. Count: 82, Neg. LLF: 146.70456754814956
Iteration: 8, Func. Count: 93, Neg. LLF: 146.69649680082134
Iteration: 9, Func. Count: 104, Neg. LLF: 146.6672159099683
Iteration: 10, Func. Count: 115, Neg. LLF: 146.60258249611874
Iteration: 11, Func. Count: 126, Neg. LLF: 146.4977790236606
Iteration: 12, Func. Count: 137, Neg. LLF: 146.46391163218993
Iteration: 13, Func. Count: 148, Neg. LLF: 146.4521914163615
Iteration: 14, Func. Count: 159, Neg. LLF: 146.45191614415896
Iteration: 15, Func. Count: 170, Neg. LLF: 146.45165284895285
Iteration: 16, Func. Count: 181, Neg. LLF: 146.4516063165887
Iteration: 17, Func. Count: 192, Neg. LLF: 146.45160231413507
Iteration: 18, Func. Count: 202, Neg. LLF: 146.45160234067393
Optimization terminated successfully (Exit mode 0)
Current function value: 146.45160231413507
Iterations: 18
Function evaluations: 202
Gradient evaluations: 18
Iteration: 1, Func. Count: 13, Neg. LLF: 152.60030130746748
Iteration: 2, Func. Count: 27, Neg. LLF: 148.6723657531606
Iteration: 3, Func. Count: 40, Neg. LLF: 147.89533410623048
Iteration: 4, Func. Count: 53, Neg. LLF: 146.57590568810252
Iteration: 5, Func. Count: 65, Neg. LLF: 146.5410126319515
Iteration: 6, Func. Count: 77, Neg. LLF: 147.96460962947614
Iteration: 7, Func. Count: 90, Neg. LLF: 146.48242138804437
Iteration: 8, Func. Count: 102, Neg. LLF: 146.46194585079428
Iteration: 9, Func. Count: 114, Neg. LLF: 146.45779844415267
Iteration: 10, Func. Count: 126, Neg. LLF: 146.45232125067233
Iteration: 11, Func. Count: 138, Neg. LLF: 146.450477230133
Iteration: 12, Func. Count: 150, Neg. LLF: 146.44882896897076
Iteration: 13, Func. Count: 162, Neg. LLF: 146.44462401726065
Iteration: 14, Func. Count: 174, Neg. LLF: 146.43965508583724
Iteration: 15, Func. Count: 186, Neg. LLF: 146.4299251993131
Iteration: 16, Func. Count: 198, Neg. LLF: 146.4139009947246
Iteration: 17, Func. Count: 210, Neg. LLF: 146.40098645902347
Iteration: 18, Func. Count: 222, Neg. LLF: 146.38276826454532
Iteration: 19, Func. Count: 234, Neg. LLF: 146.38199896466546
Iteration: 20, Func. Count: 246, Neg. LLF: 146.38164606053084
Iteration: 21, Func. Count: 258, Neg. LLF: 146.38163300557787
Iteration: 22, Func. Count: 270, Neg. LLF: 146.3816320302407
Optimization terminated successfully (Exit mode 0)
Current function value: 146.3816320302407
Iterations: 22
Function evaluations: 270
Gradient evaluations: 22
Iteration: 1, Func. Count: 10, Neg. LLF: 152.23282479275423
Iteration: 2, Func. Count: 20, Neg. LLF: 148.9565975036255
Iteration: 3, Func. Count: 30, Neg. LLF: 147.06311173456805
Iteration: 4, Func. Count: 39, Neg. LLF: 147.6180408728048
Iteration: 5, Func. Count: 49, Neg. LLF: 149.65185598623825
Iteration: 6, Func. Count: 59, Neg. LLF: 146.73374541569288
Iteration: 7, Func. Count: 68, Neg. LLF: 147.48595423452736
Iteration: 8, Func. Count: 78, Neg. LLF: 146.63600379690263
Iteration: 9, Func. Count: 87, Neg. LLF: 146.56657673698922
Iteration: 10, Func. Count: 96, Neg. LLF: 146.47651411251303
Iteration: 11, Func. Count: 105, Neg. LLF: 146.44645280950158
Iteration: 12, Func. Count: 114, Neg. LLF: 146.44137421802535
Iteration: 13, Func. Count: 123, Neg. LLF: 146.44065681215022
Iteration: 14, Func. Count: 132, Neg. LLF: 146.44060535092586
Iteration: 15, Func. Count: 141, Neg. LLF: 146.44060369410937
Iteration: 16, Func. Count: 149, Neg. LLF: 146.44060374823246
Optimization terminated successfully (Exit mode 0)
Current function value: 146.44060369410937
Iterations: 16
Function evaluations: 149
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 148.62336589118175
Iteration: 2, Func. Count: 23, Neg. LLF: 148.79187218162608
Iteration: 3, Func. Count: 34, Neg. LLF: 146.9295756255532
Iteration: 4, Func. Count: 44, Neg. LLF: 146.92646326599044
Iteration: 5, Func. Count: 54, Neg. LLF: 146.92156723243227
Iteration: 6, Func. Count: 64, Neg. LLF: 146.8892353766385
Iteration: 7, Func. Count: 74, Neg. LLF: 146.53365551088498
Iteration: 8, Func. Count: 84, Neg. LLF: 146.51976033063244
Iteration: 9, Func. Count: 94, Neg. LLF: 146.4711803295815
Iteration: 10, Func. Count: 104, Neg. LLF: 146.45726638598666
Iteration: 11, Func. Count: 114, Neg. LLF: 146.45499760605608
Iteration: 12, Func. Count: 124, Neg. LLF: 146.45273686016836
Iteration: 13, Func. Count: 134, Neg. LLF: 146.45189066378182
Iteration: 14, Func. Count: 144, Neg. LLF: 146.4516576631189
Iteration: 15, Func. Count: 154, Neg. LLF: 146.4516270729317
Iteration: 16, Func. Count: 164, Neg. LLF: 146.45160572398862
Iteration: 17, Func. Count: 174, Neg. LLF: 146.45160267352225
Iteration: 18, Func. Count: 183, Neg. LLF: 146.4516027028427
Optimization terminated successfully (Exit mode 0)
Current function value: 146.45160267352225
Iterations: 18
Function evaluations: 183
Gradient evaluations: 18
Iteration: 1, Func. Count: 12, Neg. LLF: 151.62484587728753
Iteration: 2, Func. Count: 25, Neg. LLF: 148.72781130139387
Iteration: 3, Func. Count: 37, Neg. LLF: 146.83093294675558
Iteration: 4, Func. Count: 48, Neg. LLF: 146.77452104997118
Iteration: 5, Func. Count: 59, Neg. LLF: 146.76657796337366
Iteration: 6, Func. Count: 70, Neg. LLF: 146.74285655915082
Iteration: 7, Func. Count: 81, Neg. LLF: 146.71233759166435
Iteration: 8, Func. Count: 92, Neg. LLF: 146.6824390238059
Iteration: 9, Func. Count: 103, Neg. LLF: 146.5831813425797
Iteration: 10, Func. Count: 114, Neg. LLF: 146.6371423602273
Iteration: 11, Func. Count: 126, Neg. LLF: 146.54623056739143
Iteration: 12, Func. Count: 137, Neg. LLF: 146.52550872774358
Iteration: 13, Func. Count: 148, Neg. LLF: 146.50974087207035
Iteration: 14, Func. Count: 159, Neg. LLF: 146.49299112758428
Iteration: 15, Func. Count: 170, Neg. LLF: 146.4771837416266
Iteration: 16, Func. Count: 181, Neg. LLF: 146.47348914579499
Iteration: 17, Func. Count: 192, Neg. LLF: 146.47091442648872
Iteration: 18, Func. Count: 203, Neg. LLF: 146.46751249560992
Iteration: 19, Func. Count: 214, Neg. LLF: 146.45902592818734
Iteration: 20, Func. Count: 225, Neg. LLF: 146.44918500171366
Iteration: 21, Func. Count: 236, Neg. LLF: 146.44184167238126
Iteration: 22, Func. Count: 247, Neg. LLF: 146.4406451423648
Iteration: 23, Func. Count: 258, Neg. LLF: 146.44060425486688
Iteration: 24, Func. Count: 269, Neg. LLF: 146.44060365198885
Optimization terminated successfully (Exit mode 0)
Current function value: 146.44060365198885
Iterations: 24
Function evaluations: 269
Gradient evaluations: 24
Iteration: 1, Func. Count: 13, Neg. LLF: 153.2282101853597
Iteration: 2, Func. Count: 27, Neg. LLF: 148.68468267797263
Iteration: 3, Func. Count: 40, Neg. LLF: 146.91691861580688
Iteration: 4, Func. Count: 52, Neg. LLF: 146.89097303741738
Iteration: 5, Func. Count: 64, Neg. LLF: 146.8918532018033
Iteration: 6, Func. Count: 77, Neg. LLF: 146.76032783115318
Iteration: 7, Func. Count: 89, Neg. LLF: 146.7047947161773
Iteration: 8, Func. Count: 101, Neg. LLF: 146.69241810576108
Iteration: 9, Func. Count: 113, Neg. LLF: 146.67839722352022
Iteration: 10, Func. Count: 125, Neg. LLF: 146.62472590410334
Iteration: 11, Func. Count: 137, Neg. LLF: 146.57250387209027
Iteration: 12, Func. Count: 149, Neg. LLF: 146.48243291200816
Iteration: 13, Func. Count: 161, Neg. LLF: 146.46394552808576
Iteration: 14, Func. Count: 173, Neg. LLF: 146.45267847572677
Iteration: 15, Func. Count: 185, Neg. LLF: 146.45187734320533
Iteration: 16, Func. Count: 197, Neg. LLF: 146.45164875774222
Iteration: 17, Func. Count: 209, Neg. LLF: 146.45160829615614
Iteration: 18, Func. Count: 221, Neg. LLF: 146.45160242528056
Iteration: 19, Func. Count: 232, Neg. LLF: 146.45160245181967
Optimization terminated successfully (Exit mode 0)
Current function value: 146.45160242528056
Iterations: 19
Function evaluations: 232
Gradient evaluations: 19
Iteration: 1, Func. Count: 14, Neg. LLF: 152.4930022389916
Iteration: 2, Func. Count: 29, Neg. LLF: 148.67442517547454
Iteration: 3, Func. Count: 43, Neg. LLF: 147.89789417756472
Iteration: 4, Func. Count: 57, Neg. LLF: 146.57534118242876
Iteration: 5, Func. Count: 70, Neg. LLF: 146.54138157793648
Iteration: 6, Func. Count: 83, Neg. LLF: 147.77978864743557
Iteration: 7, Func. Count: 97, Neg. LLF: 146.48216895859184
Iteration: 8, Func. Count: 110, Neg. LLF: 146.46275989498182
Iteration: 9, Func. Count: 123, Neg. LLF: 146.4573827386231
Iteration: 10, Func. Count: 136, Neg. LLF: 146.4522197745
Iteration: 11, Func. Count: 149, Neg. LLF: 146.4504730777722
Iteration: 12, Func. Count: 162, Neg. LLF: 146.44874233246264
Iteration: 13, Func. Count: 175, Neg. LLF: 146.44458076173316
Iteration: 14, Func. Count: 188, Neg. LLF: 146.4393801768604
Iteration: 15, Func. Count: 201, Neg. LLF: 146.42920717524964
Iteration: 16, Func. Count: 214, Neg. LLF: 146.41348678866564
Iteration: 17, Func. Count: 227, Neg. LLF: 146.40081301371177
Iteration: 18, Func. Count: 240, Neg. LLF: 146.38636627241078
Iteration: 19, Func. Count: 253, Neg. LLF: 146.3819697560405
Iteration: 20, Func. Count: 266, Neg. LLF: 146.3816630144058
Iteration: 21, Func. Count: 279, Neg. LLF: 146.38163459326634
Iteration: 22, Func. Count: 292, Neg. LLF: 146.38163222290754
Iteration: 23, Func. Count: 304, Neg. LLF: 146.3816322229206
Optimization terminated successfully (Exit mode 0)
Current function value: 146.38163222290754
Iterations: 23
Function evaluations: 304
Gradient evaluations: 23
Iteration: 1, Func. Count: 7, Neg. LLF: 148.30303181198656
Iteration: 2, Func. Count: 13, Neg. LLF: 148.18465340251333
Iteration: 3, Func. Count: 19, Neg. LLF: 147.16492443663458
Iteration: 4, Func. Count: 25, Neg. LLF: 147.20710615359803
Iteration: 5, Func. Count: 32, Neg. LLF: 146.96765280851443
Iteration: 6, Func. Count: 38, Neg. LLF: 146.88044400823335
Iteration: 7, Func. Count: 44, Neg. LLF: 146.82944892377958
Iteration: 8, Func. Count: 50, Neg. LLF: 146.81488772307094
Iteration: 9, Func. Count: 56, Neg. LLF: 146.81360060433386
Iteration: 10, Func. Count: 62, Neg. LLF: 146.81357445161748
Iteration: 11, Func. Count: 68, Neg. LLF: 146.8135728113212
Iteration: 12, Func. Count: 73, Neg. LLF: 146.81357286414632
Optimization terminated successfully (Exit mode 0)
Current function value: 146.8135728113212
Iterations: 12
Function evaluations: 73
Gradient evaluations: 12
Iteration: 1, Func. Count: 8, Neg. LLF: 147.6834116181155
Iteration: 2, Func. Count: 17, Neg. LLF: 146.95952533377277
Iteration: 3, Func. Count: 24, Neg. LLF: 146.9595308036931
Iteration: 4, Func. Count: 32, Neg. LLF: 146.95930852523946
Iteration: 5, Func. Count: 39, Neg. LLF: 146.95930605865667
Iteration: 6, Func. Count: 45, Neg. LLF: 146.95930605865334
Optimization terminated successfully (Exit mode 0)
Current function value: 146.95930605865667
Iterations: 6
Function evaluations: 45
Gradient evaluations: 6
Iteration: 1, Func. Count: 9, Neg. LLF: 147.0300030885335
Iteration: 2, Func. Count: 18, Neg. LLF: 146.9649236011883
Iteration: 3, Func. Count: 26, Neg. LLF: 146.96814007644176
Iteration: 4, Func. Count: 35, Neg. LLF: 146.96365433416992
Iteration: 5, Func. Count: 43, Neg. LLF: 146.96331437859675
Iteration: 6, Func. Count: 51, Neg. LLF: 146.96099920971938
Iteration: 7, Func. Count: 59, Neg. LLF: 146.95974601381485
Iteration: 8, Func. Count: 67, Neg. LLF: 146.95930177535018
Iteration: 9, Func. Count: 75, Neg. LLF: 146.95930117027936
Optimization terminated successfully (Exit mode 0)
Current function value: 146.95930117027936
Iterations: 9
Function evaluations: 75
Gradient evaluations: 9
Iteration: 1, Func. Count: 10, Neg. LLF: 151.92104646813527
Iteration: 2, Func. Count: 21, Neg. LLF: 146.96806486546933
Iteration: 3, Func. Count: 30, Neg. LLF: 146.96764477277
Iteration: 4, Func. Count: 39, Neg. LLF: 146.96705317347656
Iteration: 5, Func. Count: 48, Neg. LLF: 146.96352616946683
Iteration: 6, Func. Count: 57, Neg. LLF: 146.96209739306846
Iteration: 7, Func. Count: 66, Neg. LLF: 146.96160512637124
Iteration: 8, Func. Count: 75, Neg. LLF: 146.95942054391512
Iteration: 9, Func. Count: 84, Neg. LLF: 146.95933083666392
Iteration: 10, Func. Count: 93, Neg. LLF: 146.95929282419524
Iteration: 11, Func. Count: 101, Neg. LLF: 146.9592928247229
Optimization terminated successfully (Exit mode 0)
Current function value: 146.95929282419524
Iterations: 11
Function evaluations: 101
Gradient evaluations: 11
Iteration: 1, Func. Count: 11, Neg. LLF: 170.72385870752848
Iteration: 2, Func. Count: 24, Neg. LLF: 146.97065878625983
Iteration: 3, Func. Count: 34, Neg. LLF: 146.97026184473395
Iteration: 4, Func. Count: 44, Neg. LLF: 146.96910120891536
Iteration: 5, Func. Count: 54, Neg. LLF: 146.96477377866876
Iteration: 6, Func. Count: 64, Neg. LLF: 146.9637972165128
Iteration: 7, Func. Count: 74, Neg. LLF: 146.9620182056894
Iteration: 8, Func. Count: 84, Neg. LLF: 146.96172831248245
Iteration: 9, Func. Count: 94, Neg. LLF: 146.96010179663693
Iteration: 10, Func. Count: 104, Neg. LLF: 146.95929704206955
Iteration: 11, Func. Count: 114, Neg. LLF: 146.95929374507145
Iteration: 12, Func. Count: 124, Neg. LLF: 146.95929273809256
Iteration: 13, Func. Count: 133, Neg. LLF: 146.9592927387851
Optimization terminated successfully (Exit mode 0)
Current function value: 146.95929273809256
Iterations: 13
Function evaluations: 133
Gradient evaluations: 13
Iteration: 1, Func. Count: 8, Neg. LLF: 148.27892512560342
Iteration: 2, Func. Count: 16, Neg. LLF: 147.04774753158293
Iteration: 3, Func. Count: 23, Neg. LLF: 146.90460517983598
Iteration: 4, Func. Count: 30, Neg. LLF: 146.9756496578451
Iteration: 5, Func. Count: 38, Neg. LLF: 146.6362606099244
Iteration: 6, Func. Count: 45, Neg. LLF: 146.5408825369392
Iteration: 7, Func. Count: 52, Neg. LLF: 146.48659907711883
Iteration: 8, Func. Count: 59, Neg. LLF: 146.45240709537032
Iteration: 9, Func. Count: 66, Neg. LLF: 146.44182287764588
Iteration: 10, Func. Count: 73, Neg. LLF: 146.4406931103781
Iteration: 11, Func. Count: 80, Neg. LLF: 146.4406044466977
Iteration: 12, Func. Count: 87, Neg. LLF: 146.44060362511678
Optimization terminated successfully (Exit mode 0)
Current function value: 146.44060362511678
Iterations: 12
Function evaluations: 87
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 148.67725563319618
Iteration: 2, Func. Count: 19, Neg. LLF: 146.92905291069894
Iteration: 3, Func. Count: 27, Neg. LLF: 146.92414526540546
Iteration: 4, Func. Count: 35, Neg. LLF: 146.88941365647185
Iteration: 5, Func. Count: 43, Neg. LLF: 146.48251612347968
Iteration: 6, Func. Count: 51, Neg. LLF: 146.48005429926673
Iteration: 7, Func. Count: 60, Neg. LLF: 146.46186631099522
Iteration: 8, Func. Count: 68, Neg. LLF: 146.4567968844602
Iteration: 9, Func. Count: 76, Neg. LLF: 146.45570128210636
Iteration: 10, Func. Count: 84, Neg. LLF: 146.45418557353707
Iteration: 11, Func. Count: 92, Neg. LLF: 146.4524195614529
Iteration: 12, Func. Count: 100, Neg. LLF: 146.45180033924566
Iteration: 13, Func. Count: 108, Neg. LLF: 146.45161661809823
Iteration: 14, Func. Count: 116, Neg. LLF: 146.45160423685235
Iteration: 15, Func. Count: 124, Neg. LLF: 146.45160253073203
Iteration: 16, Func. Count: 131, Neg. LLF: 146.45160255999787
Optimization terminated successfully (Exit mode 0)
Current function value: 146.45160253073203
Iterations: 16
Function evaluations: 131
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 149.34864782947372
Iteration: 2, Func. Count: 21, Neg. LLF: 147.00321621246303
Iteration: 3, Func. Count: 31, Neg. LLF: 146.791355702594
Iteration: 4, Func. Count: 40, Neg. LLF: 146.77350338230485
Iteration: 5, Func. Count: 49, Neg. LLF: 146.72934654895198
Iteration: 6, Func. Count: 58, Neg. LLF: 146.6939219398771
Iteration: 7, Func. Count: 67, Neg. LLF: 146.71648098608668
Iteration: 8, Func. Count: 77, Neg. LLF: 146.67018739920513
Iteration: 9, Func. Count: 86, Neg. LLF: 146.64958705099028
Iteration: 10, Func. Count: 95, Neg. LLF: 146.5562890090328
Iteration: 11, Func. Count: 104, Neg. LLF: 146.51586585891152
Iteration: 12, Func. Count: 113, Neg. LLF: 146.4913919522585
Iteration: 13, Func. Count: 122, Neg. LLF: 146.4585561574665
Iteration: 14, Func. Count: 131, Neg. LLF: 146.44518031611528
Iteration: 15, Func. Count: 140, Neg. LLF: 146.44217028979412
Iteration: 16, Func. Count: 149, Neg. LLF: 146.44111624096658
Iteration: 17, Func. Count: 158, Neg. LLF: 146.44081072816485
Iteration: 18, Func. Count: 167, Neg. LLF: 146.44069201720694
Iteration: 19, Func. Count: 176, Neg. LLF: 146.44061875792684
Iteration: 20, Func. Count: 185, Neg. LLF: 146.44060486735637
Iteration: 21, Func. Count: 194, Neg. LLF: 146.4406036497872
Iteration: 22, Func. Count: 202, Neg. LLF: 146.44060366148358
Optimization terminated successfully (Exit mode 0)
Current function value: 146.4406036497872
Iterations: 22
Function evaluations: 202
Gradient evaluations: 22
Iteration: 1, Func. Count: 11, Neg. LLF: 146.89687855800176
Iteration: 2, Func. Count: 21, Neg. LLF: 146.77196101186013
Iteration: 3, Func. Count: 31, Neg. LLF: 147.17230351520593
Iteration: 4, Func. Count: 42, Neg. LLF: 146.7435160871996
Iteration: 5, Func. Count: 52, Neg. LLF: 146.96524579102595
Iteration: 6, Func. Count: 63, Neg. LLF: 146.7170115106478
Iteration: 7, Func. Count: 73, Neg. LLF: 146.6859922300804
Iteration: 8, Func. Count: 83, Neg. LLF: 146.60564847366334
Iteration: 9, Func. Count: 93, Neg. LLF: 146.5590088186235
Iteration: 10, Func. Count: 103, Neg. LLF: 146.52058792041586
Iteration: 11, Func. Count: 113, Neg. LLF: 146.50610570922217
Iteration: 12, Func. Count: 123, Neg. LLF: 146.49120331962808
Iteration: 13, Func. Count: 133, Neg. LLF: 146.47269443541094
Iteration: 14, Func. Count: 143, Neg. LLF: 146.45206361341073
Iteration: 15, Func. Count: 153, Neg. LLF: 146.44158663577534
Iteration: 16, Func. Count: 163, Neg. LLF: 146.4406728241247
Iteration: 17, Func. Count: 173, Neg. LLF: 146.44061151687262
Iteration: 18, Func. Count: 183, Neg. LLF: 146.44060388546663
Iteration: 19, Func. Count: 192, Neg. LLF: 146.4406039243824
Optimization terminated successfully (Exit mode 0)
Current function value: 146.44060388546663
Iterations: 19
Function evaluations: 192
Gradient evaluations: 19
Iteration: 1, Func. Count: 12, Neg. LLF: 154.52345944021127
Iteration: 2, Func. Count: 25, Neg. LLF: 146.7905389024639
Iteration: 3, Func. Count: 36, Neg. LLF: 146.7228107267133
Iteration: 4, Func. Count: 47, Neg. LLF: 146.80200001187802
Iteration: 5, Func. Count: 59, Neg. LLF: 146.65271215631367
Iteration: 6, Func. Count: 70, Neg. LLF: 146.622898336178
Iteration: 7, Func. Count: 81, Neg. LLF: 146.73472323548407
Iteration: 8, Func. Count: 94, Neg. LLF: 146.6104321111173
Iteration: 9, Func. Count: 105, Neg. LLF: 146.59903680462162
Iteration: 10, Func. Count: 116, Neg. LLF: 146.5842477757256
Iteration: 11, Func. Count: 127, Neg. LLF: 146.56296812381757
Iteration: 12, Func. Count: 138, Neg. LLF: 146.52985904136827
Iteration: 13, Func. Count: 149, Neg. LLF: 146.49727567551633
Iteration: 14, Func. Count: 160, Neg. LLF: 146.47207389011962
Iteration: 15, Func. Count: 171, Neg. LLF: 146.44152027404536
Iteration: 16, Func. Count: 182, Neg. LLF: 146.4407630462592
Iteration: 17, Func. Count: 193, Neg. LLF: 146.44062393735155
Iteration: 18, Func. Count: 204, Neg. LLF: 146.4406045203708
Iteration: 19, Func. Count: 214, Neg. LLF: 146.44060454074568
Optimization terminated successfully (Exit mode 0)
Current function value: 146.4406045203708
Iterations: 19
Function evaluations: 214
Gradient evaluations: 19
Iteration: 1, Func. Count: 9, Neg. LLF: 148.76538698482892
Iteration: 2, Func. Count: 18, Neg. LLF: 148.41579523341838
Iteration: 3, Func. Count: 27, Neg. LLF: 147.0759111377461
Iteration: 4, Func. Count: 35, Neg. LLF: 147.04167468798966
Iteration: 5, Func. Count: 44, Neg. LLF: 148.18675397817282
Iteration: 6, Func. Count: 53, Neg. LLF: 146.7353300910931
Iteration: 7, Func. Count: 61, Neg. LLF: 146.62091201944025
Iteration: 8, Func. Count: 69, Neg. LLF: 146.55311019097368
Iteration: 9, Func. Count: 77, Neg. LLF: 146.47824829731317
Iteration: 10, Func. Count: 85, Neg. LLF: 146.4485329298705
Iteration: 11, Func. Count: 93, Neg. LLF: 146.44159232531527
Iteration: 12, Func. Count: 101, Neg. LLF: 146.44064407688663
Iteration: 13, Func. Count: 109, Neg. LLF: 146.4406055632502
Iteration: 14, Func. Count: 117, Neg. LLF: 146.44060378018426
Iteration: 15, Func. Count: 124, Neg. LLF: 146.44060372342724
Optimization terminated successfully (Exit mode 0)
Current function value: 146.44060378018426
Iterations: 15
Function evaluations: 124
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 147.96225215433572
Iteration: 2, Func. Count: 21, Neg. LLF: 148.8138177775082
Iteration: 3, Func. Count: 31, Neg. LLF: 146.92946655095807
Iteration: 4, Func. Count: 40, Neg. LLF: 146.9267857002989
Iteration: 5, Func. Count: 49, Neg. LLF: 146.92169778441504
Iteration: 6, Func. Count: 58, Neg. LLF: 146.88712876819272
Iteration: 7, Func. Count: 67, Neg. LLF: 146.50963039650946
Iteration: 8, Func. Count: 76, Neg. LLF: 146.49077915089862
Iteration: 9, Func. Count: 85, Neg. LLF: 146.46212414444219
Iteration: 10, Func. Count: 94, Neg. LLF: 146.45537656860873
Iteration: 11, Func. Count: 103, Neg. LLF: 146.453601983017
Iteration: 12, Func. Count: 112, Neg. LLF: 146.45290993152938
Iteration: 13, Func. Count: 121, Neg. LLF: 146.45258644200803
Iteration: 14, Func. Count: 130, Neg. LLF: 146.45245594878588
Iteration: 15, Func. Count: 139, Neg. LLF: 146.45223911207412
Iteration: 16, Func. Count: 148, Neg. LLF: 146.45157772646965
Iteration: 17, Func. Count: 157, Neg. LLF: 146.4502481203985
Iteration: 18, Func. Count: 166, Neg. LLF: 146.44855812974268
Iteration: 19, Func. Count: 175, Neg. LLF: 146.44294498198408
Iteration: 20, Func. Count: 184, Neg. LLF: 146.44136100651633
Iteration: 21, Func. Count: 193, Neg. LLF: 146.44063587324402
Iteration: 22, Func. Count: 202, Neg. LLF: 146.44060653195638
Iteration: 23, Func. Count: 211, Neg. LLF: 146.44060362311592
Iteration: 24, Func. Count: 219, Neg. LLF: 146.44060365569317
Optimization terminated successfully (Exit mode 0)
Current function value: 146.44060362311592
Iterations: 24
Function evaluations: 219
Gradient evaluations: 24
Iteration: 1, Func. Count: 11, Neg. LLF: 151.30078090963192
Iteration: 2, Func. Count: 23, Neg. LLF: 148.72501459368178
Iteration: 3, Func. Count: 34, Neg. LLF: 146.83064115880973
Iteration: 4, Func. Count: 44, Neg. LLF: 146.7745593104309
Iteration: 5, Func. Count: 54, Neg. LLF: 146.7683261308624
Iteration: 6, Func. Count: 64, Neg. LLF: 146.7406201395393
Iteration: 7, Func. Count: 74, Neg. LLF: 146.7125433422805
Iteration: 8, Func. Count: 84, Neg. LLF: 146.68473252710976
Iteration: 9, Func. Count: 94, Neg. LLF: 146.5805093152302
Iteration: 10, Func. Count: 104, Neg. LLF: 146.57979305670125
Iteration: 11, Func. Count: 115, Neg. LLF: 146.54107446480168
Iteration: 12, Func. Count: 125, Neg. LLF: 146.527935891219
Iteration: 13, Func. Count: 135, Neg. LLF: 146.50112171072092
Iteration: 14, Func. Count: 145, Neg. LLF: 146.48661017770812
Iteration: 15, Func. Count: 155, Neg. LLF: 146.4753891354303
Iteration: 16, Func. Count: 165, Neg. LLF: 146.47137472595946
Iteration: 17, Func. Count: 175, Neg. LLF: 146.46907289046374
Iteration: 18, Func. Count: 185, Neg. LLF: 146.4654839602009
Iteration: 19, Func. Count: 195, Neg. LLF: 146.4575643733696
Iteration: 20, Func. Count: 205, Neg. LLF: 146.44823860010035
Iteration: 21, Func. Count: 215, Neg. LLF: 146.44182446912419
Iteration: 22, Func. Count: 225, Neg. LLF: 146.44066152559904
Iteration: 23, Func. Count: 235, Neg. LLF: 146.44060520056823
Iteration: 24, Func. Count: 245, Neg. LLF: 146.4406036890083
Iteration: 25, Func. Count: 254, Neg. LLF: 146.44060370070352
Optimization terminated successfully (Exit mode 0)
Current function value: 146.4406036890083
Iterations: 25
Function evaluations: 254
Gradient evaluations: 25
Iteration: 1, Func. Count: 12, Neg. LLF: 153.78233663744263
Iteration: 2, Func. Count: 25, Neg. LLF: 148.6787258399224
Iteration: 3, Func. Count: 37, Neg. LLF: 146.91364055336678
Iteration: 4, Func. Count: 48, Neg. LLF: 146.88130516004674
Iteration: 5, Func. Count: 59, Neg. LLF: 146.88677900890463
Iteration: 6, Func. Count: 71, Neg. LLF: 146.75946096601078
Iteration: 7, Func. Count: 82, Neg. LLF: 146.71247934393196
Iteration: 8, Func. Count: 93, Neg. LLF: 146.70505346287084
Iteration: 9, Func. Count: 104, Neg. LLF: 146.66769686971654
Iteration: 10, Func. Count: 115, Neg. LLF: 146.6018301165293
Iteration: 11, Func. Count: 126, Neg. LLF: 146.50546433897526
Iteration: 12, Func. Count: 137, Neg. LLF: 146.4646213618756
Iteration: 13, Func. Count: 148, Neg. LLF: 146.45216153927635
Iteration: 14, Func. Count: 159, Neg. LLF: 146.45190258642583
Iteration: 15, Func. Count: 170, Neg. LLF: 146.45166325516263
Iteration: 16, Func. Count: 181, Neg. LLF: 146.4516086005172
Iteration: 17, Func. Count: 192, Neg. LLF: 146.4516024308639
Iteration: 18, Func. Count: 202, Neg. LLF: 146.4516024574177
Optimization terminated successfully (Exit mode 0)
Current function value: 146.4516024308639
Iterations: 18
Function evaluations: 202
Gradient evaluations: 18
Iteration: 1, Func. Count: 13, Neg. LLF: 152.77734849545044
Iteration: 2, Func. Count: 27, Neg. LLF: 148.6650943778948
Iteration: 3, Func. Count: 40, Neg. LLF: 147.9033364933584
Iteration: 4, Func. Count: 53, Neg. LLF: 146.57889263210586
Iteration: 5, Func. Count: 65, Neg. LLF: 146.53962852168388
Iteration: 6, Func. Count: 77, Neg. LLF: 146.49071792303488
Iteration: 7, Func. Count: 89, Neg. LLF: 146.50034779330196
Iteration: 8, Func. Count: 102, Neg. LLF: 146.45478668105528
Iteration: 9, Func. Count: 114, Neg. LLF: 146.45121388134189
Iteration: 10, Func. Count: 126, Neg. LLF: 146.4486669006555
Iteration: 11, Func. Count: 138, Neg. LLF: 146.4442925095625
Iteration: 12, Func. Count: 150, Neg. LLF: 146.4389140002044
Iteration: 13, Func. Count: 162, Neg. LLF: 146.42592847566473
Iteration: 14, Func. Count: 174, Neg. LLF: 146.41024058438728
Iteration: 15, Func. Count: 186, Neg. LLF: 146.39860703117668
Iteration: 16, Func. Count: 198, Neg. LLF: 146.38460627140455
Iteration: 17, Func. Count: 210, Neg. LLF: 146.38447058654143
Iteration: 18, Func. Count: 222, Neg. LLF: 146.38444386671355
Iteration: 19, Func. Count: 234, Neg. LLF: 146.38444210515445
Iteration: 20, Func. Count: 245, Neg. LLF: 146.3844421051646
Optimization terminated successfully (Exit mode 0)
Current function value: 146.38444210515445
Iterations: 20
Function evaluations: 245
Gradient evaluations: 20
Iteration: 1, Func. Count: 10, Neg. LLF: 148.25886779074625
Iteration: 2, Func. Count: 20, Neg. LLF: 147.16716452560215
Iteration: 3, Func. Count: 29, Neg. LLF: 148.18294937769738
Iteration: 4, Func. Count: 39, Neg. LLF: 155.89254003126322
Iteration: 5, Func. Count: 49, Neg. LLF: 146.88999430186811
Iteration: 6, Func. Count: 59, Neg. LLF: 146.67918030133376
Iteration: 7, Func. Count: 68, Neg. LLF: 146.64375436252772
Iteration: 8, Func. Count: 77, Neg. LLF: 146.49181159896855
Iteration: 9, Func. Count: 86, Neg. LLF: 146.45405684494804
Iteration: 10, Func. Count: 95, Neg. LLF: 146.4437112907455
Iteration: 11, Func. Count: 104, Neg. LLF: 146.4414205955175
Iteration: 12, Func. Count: 113, Neg. LLF: 146.44068062094135
Iteration: 13, Func. Count: 122, Neg. LLF: 146.4406064661506
Iteration: 14, Func. Count: 131, Neg. LLF: 146.44060366812698
Iteration: 15, Func. Count: 139, Neg. LLF: 146.44060367594233
Optimization terminated successfully (Exit mode 0)
Current function value: 146.44060366812698
Iterations: 15
Function evaluations: 139
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 148.13742241468807
Iteration: 2, Func. Count: 23, Neg. LLF: 148.82170963915382
Iteration: 3, Func. Count: 34, Neg. LLF: 146.92931002728332
Iteration: 4, Func. Count: 44, Neg. LLF: 146.926609360492
Iteration: 5, Func. Count: 54, Neg. LLF: 146.9212193903519
Iteration: 6, Func. Count: 64, Neg. LLF: 146.88406355355727
Iteration: 7, Func. Count: 74, Neg. LLF: 146.5094655005657
Iteration: 8, Func. Count: 84, Neg. LLF: 146.4922097145281
Iteration: 9, Func. Count: 94, Neg. LLF: 146.46198272708892
Iteration: 10, Func. Count: 104, Neg. LLF: 146.45489973191937
Iteration: 11, Func. Count: 114, Neg. LLF: 146.45360656397864
Iteration: 12, Func. Count: 124, Neg. LLF: 146.45328291211135
Iteration: 13, Func. Count: 134, Neg. LLF: 146.45305799419873
Iteration: 14, Func. Count: 144, Neg. LLF: 146.45296538596276
Iteration: 15, Func. Count: 154, Neg. LLF: 146.45284651564205
Iteration: 16, Func. Count: 164, Neg. LLF: 146.45250297104127
Iteration: 17, Func. Count: 174, Neg. LLF: 146.45150703704013
Iteration: 18, Func. Count: 184, Neg. LLF: 146.45028210882143
Iteration: 19, Func. Count: 194, Neg. LLF: 146.44578867357362
Iteration: 20, Func. Count: 204, Neg. LLF: 146.44090976899574
Iteration: 21, Func. Count: 214, Neg. LLF: 146.4406111371669
Iteration: 22, Func. Count: 224, Neg. LLF: 146.44060384060697
Iteration: 23, Func. Count: 233, Neg. LLF: 146.44060387320172
Optimization terminated successfully (Exit mode 0)
Current function value: 146.44060384060697
Iterations: 23
Function evaluations: 233
Gradient evaluations: 23
Iteration: 1, Func. Count: 12, Neg. LLF: 151.83954763512597
Iteration: 2, Func. Count: 25, Neg. LLF: 148.73242297783685
Iteration: 3, Func. Count: 37, Neg. LLF: 146.82670279280202
Iteration: 4, Func. Count: 48, Neg. LLF: 146.76080840686367
Iteration: 5, Func. Count: 59, Neg. LLF: 146.74417294382582
Iteration: 6, Func. Count: 70, Neg. LLF: 146.74044358418294
Iteration: 7, Func. Count: 81, Neg. LLF: 146.73694682688821
Iteration: 8, Func. Count: 92, Neg. LLF: 146.73408053472883
Iteration: 9, Func. Count: 103, Neg. LLF: 146.71546487282754
Iteration: 10, Func. Count: 114, Neg. LLF: 146.67827943506703
Iteration: 11, Func. Count: 125, Neg. LLF: 146.5321524412032
Iteration: 12, Func. Count: 136, Neg. LLF: 146.4776156974454
Iteration: 13, Func. Count: 147, Neg. LLF: 146.46095707897533
Iteration: 14, Func. Count: 158, Neg. LLF: 146.45673275847068
Iteration: 15, Func. Count: 169, Neg. LLF: 146.45161250337503
Iteration: 16, Func. Count: 180, Neg. LLF: 146.4516027232493
Iteration: 17, Func. Count: 190, Neg. LLF: 146.45160272851908
Optimization terminated successfully (Exit mode 0)
Current function value: 146.4516027232493
Iterations: 17
Function evaluations: 190
Gradient evaluations: 17
Iteration: 1, Func. Count: 13, Neg. LLF: 152.01159937307247
Iteration: 2, Func. Count: 27, Neg. LLF: 148.54921691025763
Iteration: 3, Func. Count: 40, Neg. LLF: 146.80176241083254
Iteration: 4, Func. Count: 52, Neg. LLF: 146.7823500396757
Iteration: 5, Func. Count: 64, Neg. LLF: 146.756720583942
Iteration: 6, Func. Count: 76, Neg. LLF: 146.75412062664938
Iteration: 7, Func. Count: 88, Neg. LLF: 146.75132164991072
Iteration: 8, Func. Count: 100, Neg. LLF: 146.74872886111746
Iteration: 9, Func. Count: 112, Neg. LLF: 146.74353447792615
Iteration: 10, Func. Count: 124, Neg. LLF: 146.71753890515112
Iteration: 11, Func. Count: 136, Neg. LLF: 146.67737545957078
Iteration: 12, Func. Count: 148, Neg. LLF: 147.63042877956153
Iteration: 13, Func. Count: 162, Neg. LLF: 148.3820099610021
Iteration: 14, Func. Count: 176, Neg. LLF: 146.66655879254924
Iteration: 15, Func. Count: 188, Neg. LLF: 146.64630458688126
Iteration: 16, Func. Count: 200, Neg. LLF: 146.56716675006425
Iteration: 17, Func. Count: 212, Neg. LLF: 146.49198589961722
Iteration: 18, Func. Count: 224, Neg. LLF: 146.4731285867904
Iteration: 19, Func. Count: 236, Neg. LLF: 146.4595436251759
Iteration: 20, Func. Count: 248, Neg. LLF: 146.45437646734445
Iteration: 21, Func. Count: 260, Neg. LLF: 146.441633605197
Iteration: 22, Func. Count: 272, Neg. LLF: 146.440730219091
Iteration: 23, Func. Count: 284, Neg. LLF: 146.44060937851103
Iteration: 24, Func. Count: 296, Neg. LLF: 146.44060402217002
Iteration: 25, Func. Count: 307, Neg. LLF: 146.44060406116225
Optimization terminated successfully (Exit mode 0)
Current function value: 146.44060402217002
Iterations: 26
Function evaluations: 307
Gradient evaluations: 25
Iteration: 1, Func. Count: 14, Neg. LLF: 151.90660042335517
Iteration: 2, Func. Count: 29, Neg. LLF: 148.6718157271865
Iteration: 3, Func. Count: 43, Neg. LLF: 147.95920338749457
Iteration: 4, Func. Count: 57, Neg. LLF: 146.59269240194087
Iteration: 5, Func. Count: 70, Neg. LLF: 146.55676054628339
Iteration: 6, Func. Count: 83, Neg. LLF: 147.33633481254859
Iteration: 7, Func. Count: 97, Neg. LLF: 146.49148676194247
Iteration: 8, Func. Count: 110, Neg. LLF: 146.46202524049232
Iteration: 9, Func. Count: 123, Neg. LLF: 146.46427756774165
Iteration: 10, Func. Count: 137, Neg. LLF: 146.45222755931042
Iteration: 11, Func. Count: 150, Neg. LLF: 146.4500635644772
Iteration: 12, Func. Count: 163, Neg. LLF: 146.4477797351566
Iteration: 13, Func. Count: 176, Neg. LLF: 146.44450367171464
Iteration: 14, Func. Count: 189, Neg. LLF: 146.4387072024104
Iteration: 15, Func. Count: 202, Neg. LLF: 146.4278268394169
Iteration: 16, Func. Count: 215, Neg. LLF: 146.4123561000846
Iteration: 17, Func. Count: 228, Neg. LLF: 146.39497615846534
Iteration: 18, Func. Count: 241, Neg. LLF: 146.38447653449327
Iteration: 19, Func. Count: 254, Neg. LLF: 146.3823021029486
Iteration: 20, Func. Count: 267, Neg. LLF: 146.38169052759062
Iteration: 21, Func. Count: 280, Neg. LLF: 146.38163382721325
Iteration: 22, Func. Count: 293, Neg. LLF: 146.38163220416814
Iteration: 23, Func. Count: 305, Neg. LLF: 146.3816322041166
Optimization terminated successfully (Exit mode 0)
Current function value: 146.38163220416814
Iterations: 23
Function evaluations: 305
Gradient evaluations: 23
Iteration: 1, Func. Count: 11, Neg. LLF: 148.122950037798
Iteration: 2, Func. Count: 22, Neg. LLF: 147.26643795763962
Iteration: 3, Func. Count: 33, Neg. LLF: 148.067308592546
Iteration: 4, Func. Count: 44, Neg. LLF: 147.1191780160273
Iteration: 5, Func. Count: 55, Neg. LLF: 146.7693527471751
Iteration: 6, Func. Count: 65, Neg. LLF: 147.37588832886453
Iteration: 7, Func. Count: 76, Neg. LLF: 146.59225349763318
Iteration: 8, Func. Count: 86, Neg. LLF: 146.52287191929923
Iteration: 9, Func. Count: 96, Neg. LLF: 146.46005642473006
Iteration: 10, Func. Count: 106, Neg. LLF: 146.44563289836668
Iteration: 11, Func. Count: 116, Neg. LLF: 146.440671316708
Iteration: 12, Func. Count: 126, Neg. LLF: 146.44060383295988
Iteration: 13, Func. Count: 135, Neg. LLF: 146.4406038870624
Optimization terminated successfully (Exit mode 0)
Current function value: 146.44060383295988
Iterations: 13
Function evaluations: 135
Gradient evaluations: 13
Iteration: 1, Func. Count: 12, Neg. LLF: 148.75762638912406
Iteration: 2, Func. Count: 25, Neg. LLF: 148.79988216680314
Iteration: 3, Func. Count: 37, Neg. LLF: 146.92926443967326
Iteration: 4, Func. Count: 48, Neg. LLF: 146.92664687885903
Iteration: 5, Func. Count: 59, Neg. LLF: 146.92129105598207
Iteration: 6, Func. Count: 70, Neg. LLF: 146.88583000840205
Iteration: 7, Func. Count: 81, Neg. LLF: 146.50773728211905
Iteration: 8, Func. Count: 92, Neg. LLF: 146.49173120897018
Iteration: 9, Func. Count: 103, Neg. LLF: 146.45906476984644
Iteration: 10, Func. Count: 114, Neg. LLF: 146.45489888705723
Iteration: 11, Func. Count: 125, Neg. LLF: 146.45389289013718
Iteration: 12, Func. Count: 136, Neg. LLF: 146.45337855768267
Iteration: 13, Func. Count: 147, Neg. LLF: 146.45315595821288
Iteration: 14, Func. Count: 158, Neg. LLF: 146.45308669654298
Iteration: 15, Func. Count: 169, Neg. LLF: 146.45298650535582
Iteration: 16, Func. Count: 180, Neg. LLF: 146.4526457632259
Iteration: 17, Func. Count: 191, Neg. LLF: 146.45178322576874
Iteration: 18, Func. Count: 202, Neg. LLF: 146.4506187164788
Iteration: 19, Func. Count: 213, Neg. LLF: 146.44590667566243
Iteration: 20, Func. Count: 224, Neg. LLF: 146.44125491923015
Iteration: 21, Func. Count: 235, Neg. LLF: 146.4406888861905
Iteration: 22, Func. Count: 246, Neg. LLF: 146.4406099321206
Iteration: 23, Func. Count: 257, Neg. LLF: 146.44060364341397
Iteration: 24, Func. Count: 267, Neg. LLF: 146.44060367599667
Optimization terminated successfully (Exit mode 0)
Current function value: 146.44060364341397
Iterations: 24
Function evaluations: 267
Gradient evaluations: 24
Iteration: 1, Func. Count: 13, Neg. LLF: 151.69713747902384
Iteration: 2, Func. Count: 27, Neg. LLF: 148.73624083936926
Iteration: 3, Func. Count: 40, Neg. LLF: 146.82334940004844
Iteration: 4, Func. Count: 52, Neg. LLF: 146.76240114780256
Iteration: 5, Func. Count: 64, Neg. LLF: 146.74421646726978
Iteration: 6, Func. Count: 76, Neg. LLF: 146.741130617226
Iteration: 7, Func. Count: 88, Neg. LLF: 146.73693688391313
Iteration: 8, Func. Count: 100, Neg. LLF: 146.73426288875757
Iteration: 9, Func. Count: 112, Neg. LLF: 146.70361153623867
Iteration: 10, Func. Count: 124, Neg. LLF: 146.67251827449002
Iteration: 11, Func. Count: 136, Neg. LLF: 146.56131299085962
Iteration: 12, Func. Count: 148, Neg. LLF: 146.5223609726052
Iteration: 13, Func. Count: 160, Neg. LLF: 146.4805305104937
Iteration: 14, Func. Count: 172, Neg. LLF: 146.45246442055935
Iteration: 15, Func. Count: 184, Neg. LLF: 146.44680110327621
Iteration: 16, Func. Count: 196, Neg. LLF: 146.44497033587004
Iteration: 17, Func. Count: 208, Neg. LLF: 146.44245188209229
Iteration: 18, Func. Count: 220, Neg. LLF: 146.44154223118647
Iteration: 19, Func. Count: 232, Neg. LLF: 146.44112036866184
Iteration: 20, Func. Count: 244, Neg. LLF: 146.44088836072194
Iteration: 21, Func. Count: 256, Neg. LLF: 146.4406755766703
Iteration: 22, Func. Count: 268, Neg. LLF: 146.44061116780875
Iteration: 23, Func. Count: 280, Neg. LLF: 146.44060383098125
Iteration: 24, Func. Count: 291, Neg. LLF: 146.44060384271404
Optimization terminated successfully (Exit mode 0)
Current function value: 146.44060383098125
Iterations: 24
Function evaluations: 291
Gradient evaluations: 24
Iteration: 1, Func. Count: 14, Neg. LLF: 151.83102553913923
Iteration: 2, Func. Count: 29, Neg. LLF: 148.55237864154415
Iteration: 3, Func. Count: 43, Neg. LLF: 146.8027326831143
Iteration: 4, Func. Count: 56, Neg. LLF: 146.78425074651855
Iteration: 5, Func. Count: 69, Neg. LLF: 146.75888863957465
Iteration: 6, Func. Count: 82, Neg. LLF: 146.75789823106945
Iteration: 7, Func. Count: 96, Neg. LLF: 146.75092136450064
Iteration: 8, Func. Count: 109, Neg. LLF: 146.73685238474093
Iteration: 9, Func. Count: 122, Neg. LLF: 146.7052500916521
Iteration: 10, Func. Count: 135, Neg. LLF: 146.69775795389995
Iteration: 11, Func. Count: 148, Neg. LLF: 146.67511344292708
Iteration: 12, Func. Count: 161, Neg. LLF: 146.63574567114054
Iteration: 13, Func. Count: 174, Neg. LLF: 146.57326121548263
Iteration: 14, Func. Count: 187, Neg. LLF: 151.79182000124987
Iteration: 15, Func. Count: 201, Neg. LLF: 147.6690494924706
Iteration: 16, Func. Count: 215, Neg. LLF: 146.4520793892618
Iteration: 17, Func. Count: 228, Neg. LLF: 146.45231529805645
Iteration: 18, Func. Count: 242, Neg. LLF: 146.4438695265981
Iteration: 19, Func. Count: 255, Neg. LLF: 146.44354838488707
Iteration: 20, Func. Count: 268, Neg. LLF: 146.4429967189334
Iteration: 21, Func. Count: 281, Neg. LLF: 146.44175406317976
Iteration: 22, Func. Count: 294, Neg. LLF: 146.44088504816872
Iteration: 23, Func. Count: 307, Neg. LLF: 146.44062311703857
Iteration: 24, Func. Count: 320, Neg. LLF: 146.4406048323524
Iteration: 25, Func. Count: 333, Neg. LLF: 146.44060364637684
Iteration: 26, Func. Count: 345, Neg. LLF: 146.4406036853157
Optimization terminated successfully (Exit mode 0)
Current function value: 146.44060364637684
Iterations: 27
Function evaluations: 345
Gradient evaluations: 26
Iteration: 1, Func. Count: 15, Neg. LLF: 151.75611517130235
Iteration: 2, Func. Count: 31, Neg. LLF: 148.67422272621016
Iteration: 3, Func. Count: 46, Neg. LLF: 147.96606803012625
Iteration: 4, Func. Count: 61, Neg. LLF: 146.59345694140967
Iteration: 5, Func. Count: 75, Neg. LLF: 146.55814804026593
Iteration: 6, Func. Count: 89, Neg. LLF: 147.28890713541256
Iteration: 7, Func. Count: 104, Neg. LLF: 146.48652722237347
Iteration: 8, Func. Count: 118, Neg. LLF: 146.46242210945553
Iteration: 9, Func. Count: 132, Neg. LLF: 146.46185393719887
Iteration: 10, Func. Count: 147, Neg. LLF: 146.45218545001075
Iteration: 11, Func. Count: 161, Neg. LLF: 146.45032936635107
Iteration: 12, Func. Count: 175, Neg. LLF: 146.44747740872418
Iteration: 13, Func. Count: 189, Neg. LLF: 146.44452370511107
Iteration: 14, Func. Count: 203, Neg. LLF: 146.43872412141567
Iteration: 15, Func. Count: 217, Neg. LLF: 146.42708302355607
Iteration: 16, Func. Count: 231, Neg. LLF: 146.4127990363811
Iteration: 17, Func. Count: 245, Neg. LLF: 146.39692593920103
Iteration: 18, Func. Count: 259, Neg. LLF: 146.38242075550812
Iteration: 19, Func. Count: 273, Neg. LLF: 146.38172857424362
Iteration: 20, Func. Count: 287, Neg. LLF: 146.38164849542045
Iteration: 21, Func. Count: 301, Neg. LLF: 146.3816340105736
Iteration: 22, Func. Count: 315, Neg. LLF: 146.38163228022864
Iteration: 23, Func. Count: 328, Neg. LLF: 146.38163228020636
Optimization terminated successfully (Exit mode 0)
Current function value: 146.38163228022864
Iterations: 23
Function evaluations: 328
Gradient evaluations: 23
Iteration: 1, Func. Count: 8, Neg. LLF: 148.24333485452968
Iteration: 2, Func. Count: 15, Neg. LLF: 147.80674124773924
Iteration: 3, Func. Count: 22, Neg. LLF: 150.40993322371375
Iteration: 4, Func. Count: 30, Neg. LLF: 150.25128265921515
Iteration: 5, Func. Count: 38, Neg. LLF: 146.99144931713582
Iteration: 6, Func. Count: 45, Neg. LLF: 146.92753543904485
Iteration: 7, Func. Count: 52, Neg. LLF: 146.88255677996943
Iteration: 8, Func. Count: 59, Neg. LLF: 146.82177127752954
Iteration: 9, Func. Count: 66, Neg. LLF: 146.81411869666834
Iteration: 10, Func. Count: 73, Neg. LLF: 146.813577004698
Iteration: 11, Func. Count: 80, Neg. LLF: 146.81357273882972
Iteration: 12, Func. Count: 86, Neg. LLF: 146.8135728834475
Optimization terminated successfully (Exit mode 0)
Current function value: 146.81357273882972
Iterations: 12
Function evaluations: 86
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 147.30595664447375
Iteration: 2, Func. Count: 18, Neg. LLF: 146.9601329216427
Iteration: 3, Func. Count: 26, Neg. LLF: 146.96040831734018
Iteration: 4, Func. Count: 35, Neg. LLF: 146.95930937749486
Iteration: 5, Func. Count: 43, Neg. LLF: 146.95930715511562
Iteration: 6, Func. Count: 50, Neg. LLF: 146.95930715511398
Optimization terminated successfully (Exit mode 0)
Current function value: 146.95930715511562
Iterations: 6
Function evaluations: 50
Gradient evaluations: 6
Iteration: 1, Func. Count: 10, Neg. LLF: 147.04691347196572
Iteration: 2, Func. Count: 20, Neg. LLF: 146.96586525273366
Iteration: 3, Func. Count: 29, Neg. LLF: 146.9693958544949
Iteration: 4, Func. Count: 39, Neg. LLF: 146.96361892744082
Iteration: 5, Func. Count: 48, Neg. LLF: 146.96343981051498
Iteration: 6, Func. Count: 57, Neg. LLF: 146.96252523703166
Iteration: 7, Func. Count: 66, Neg. LLF: 146.9592975853083
Iteration: 8, Func. Count: 75, Neg. LLF: 146.9592925213174
Iteration: 9, Func. Count: 83, Neg. LLF: 146.95929252157475
Optimization terminated successfully (Exit mode 0)
Current function value: 146.9592925213174
Iterations: 9
Function evaluations: 83
Gradient evaluations: 9
Iteration: 1, Func. Count: 11, Neg. LLF: 160.53848415245574
Iteration: 2, Func. Count: 23, Neg. LLF: 146.96812449881963
Iteration: 3, Func. Count: 33, Neg. LLF: 146.96755576204936
Iteration: 4, Func. Count: 43, Neg. LLF: 146.9670331833136
Iteration: 5, Func. Count: 53, Neg. LLF: 146.96364332396456
Iteration: 6, Func. Count: 63, Neg. LLF: 146.9622385623843
Iteration: 7, Func. Count: 73, Neg. LLF: 146.96184065617035
Iteration: 8, Func. Count: 83, Neg. LLF: 146.95966931843998
Iteration: 9, Func. Count: 93, Neg. LLF: 146.95944030700554
Iteration: 10, Func. Count: 103, Neg. LLF: 146.95928735677387
Iteration: 11, Func. Count: 112, Neg. LLF: 146.95928735725556
Optimization terminated successfully (Exit mode 0)
Current function value: 146.95928735677387
Iterations: 11
Function evaluations: 112
Gradient evaluations: 11
Iteration: 1, Func. Count: 12, Neg. LLF: 170.98013009962827
Iteration: 2, Func. Count: 25, Neg. LLF: 146.9704337980732
Iteration: 3, Func. Count: 36, Neg. LLF: 146.97007425354224
Iteration: 4, Func. Count: 47, Neg. LLF: 146.96943182183838
Iteration: 5, Func. Count: 58, Neg. LLF: 146.9634059706142
Iteration: 6, Func. Count: 69, Neg. LLF: 146.9620971662217
Iteration: 7, Func. Count: 80, Neg. LLF: 146.96188848898768
Iteration: 8, Func. Count: 91, Neg. LLF: 146.96073547446076
Iteration: 9, Func. Count: 102, Neg. LLF: 146.9592898081392
Iteration: 10, Func. Count: 113, Neg. LLF: 146.95928910375022
Optimization terminated successfully (Exit mode 0)
Current function value: 146.95928910375022
Iterations: 10
Function evaluations: 113
Gradient evaluations: 10
Iteration: 1, Func. Count: 9, Neg. LLF: 148.25234442434126
Iteration: 2, Func. Count: 18, Neg. LLF: 147.32800939137303
Iteration: 3, Func. Count: 26, Neg. LLF: 147.06335602558045
Iteration: 4, Func. Count: 34, Neg. LLF: 148.46229677677678
Iteration: 5, Func. Count: 44, Neg. LLF: 148.82985858507266
Iteration: 6, Func. Count: 53, Neg. LLF: 146.68706225339176
Iteration: 7, Func. Count: 61, Neg. LLF: 146.58732608175538
Iteration: 8, Func. Count: 69, Neg. LLF: 146.53589232088882
Iteration: 9, Func. Count: 77, Neg. LLF: 146.4767388743585
Iteration: 10, Func. Count: 85, Neg. LLF: 146.44545306637417
Iteration: 11, Func. Count: 93, Neg. LLF: 146.44094991262963
Iteration: 12, Func. Count: 101, Neg. LLF: 146.44061011609836
Iteration: 13, Func. Count: 109, Neg. LLF: 146.44060365722498
Iteration: 14, Func. Count: 116, Neg. LLF: 146.44060365722848
Optimization terminated successfully (Exit mode 0)
Current function value: 146.44060365722498
Iterations: 14
Function evaluations: 116
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 147.9269719524542
Iteration: 2, Func. Count: 21, Neg. LLF: 146.92882779250087
Iteration: 3, Func. Count: 30, Neg. LLF: 146.92536654621716
Iteration: 4, Func. Count: 39, Neg. LLF: 146.89481486849883
Iteration: 5, Func. Count: 48, Neg. LLF: 146.50014066924794
Iteration: 6, Func. Count: 57, Neg. LLF: 146.48059087125168
Iteration: 7, Func. Count: 66, Neg. LLF: 146.45548064813468
Iteration: 8, Func. Count: 75, Neg. LLF: 146.45465759871908
Iteration: 9, Func. Count: 84, Neg. LLF: 146.4533091796066
Iteration: 10, Func. Count: 93, Neg. LLF: 146.45282516136922
Iteration: 11, Func. Count: 102, Neg. LLF: 146.45176665583622
Iteration: 12, Func. Count: 111, Neg. LLF: 146.45166536659588
Iteration: 13, Func. Count: 120, Neg. LLF: 146.4516024275592
Iteration: 14, Func. Count: 128, Neg. LLF: 146.45160245683118
Optimization terminated successfully (Exit mode 0)
Current function value: 146.4516024275592
Iterations: 14
Function evaluations: 128
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 151.71874423413442
Iteration: 2, Func. Count: 23, Neg. LLF: 146.9972038748046
Iteration: 3, Func. Count: 34, Neg. LLF: 146.79250580612538
Iteration: 4, Func. Count: 44, Neg. LLF: 146.75408334963637
Iteration: 5, Func. Count: 54, Neg. LLF: 146.7262579115331
Iteration: 6, Func. Count: 64, Neg. LLF: 146.6923908711567
Iteration: 7, Func. Count: 74, Neg. LLF: 146.70207307950903
Iteration: 8, Func. Count: 85, Neg. LLF: 146.67123872694083
Iteration: 9, Func. Count: 95, Neg. LLF: 146.64992973959792
Iteration: 10, Func. Count: 105, Neg. LLF: 146.55400436978408
Iteration: 11, Func. Count: 115, Neg. LLF: 146.50992236614354
Iteration: 12, Func. Count: 125, Neg. LLF: 146.48479361142583
Iteration: 13, Func. Count: 135, Neg. LLF: 146.45503958464218
Iteration: 14, Func. Count: 145, Neg. LLF: 146.44436440685675
Iteration: 15, Func. Count: 155, Neg. LLF: 146.4418415843098
Iteration: 16, Func. Count: 165, Neg. LLF: 146.44103582964397
Iteration: 17, Func. Count: 175, Neg. LLF: 146.4407962970754
Iteration: 18, Func. Count: 185, Neg. LLF: 146.440694126289
Iteration: 19, Func. Count: 195, Neg. LLF: 146.44062045416683
Iteration: 20, Func. Count: 205, Neg. LLF: 146.44060513874146
Iteration: 21, Func. Count: 215, Neg. LLF: 146.4406036596241
Iteration: 22, Func. Count: 224, Neg. LLF: 146.44060367132087
Optimization terminated successfully (Exit mode 0)
Current function value: 146.4406036596241
Iterations: 22
Function evaluations: 224
Gradient evaluations: 22
Iteration: 1, Func. Count: 12, Neg. LLF: 147.5466429580423
Iteration: 2, Func. Count: 24, Neg. LLF: 146.7772089140332
Iteration: 3, Func. Count: 35, Neg. LLF: 146.91096823071777
Iteration: 4, Func. Count: 47, Neg. LLF: 147.00634494592302
Iteration: 5, Func. Count: 59, Neg. LLF: 146.70362202536677
Iteration: 6, Func. Count: 70, Neg. LLF: 146.68674893504942
Iteration: 7, Func. Count: 81, Neg. LLF: 146.6621174017323
Iteration: 8, Func. Count: 92, Neg. LLF: 146.62365219262125
Iteration: 9, Func. Count: 103, Neg. LLF: 146.56612519011068
Iteration: 10, Func. Count: 114, Neg. LLF: 146.54317152083337
Iteration: 11, Func. Count: 125, Neg. LLF: 146.52892006006974
Iteration: 12, Func. Count: 136, Neg. LLF: 146.4750031052023
Iteration: 13, Func. Count: 147, Neg. LLF: 146.45398414503873
Iteration: 14, Func. Count: 158, Neg. LLF: 146.44476592981772
Iteration: 15, Func. Count: 169, Neg. LLF: 146.44068414299372
Iteration: 16, Func. Count: 180, Neg. LLF: 146.44061016527445
Iteration: 17, Func. Count: 191, Neg. LLF: 146.44060426783716
Iteration: 18, Func. Count: 202, Neg. LLF: 146.4406036354675
Optimization terminated successfully (Exit mode 0)
Current function value: 146.4406036354675
Iterations: 18
Function evaluations: 202
Gradient evaluations: 18
Iteration: 1, Func. Count: 13, Neg. LLF: 159.535480916931
Iteration: 2, Func. Count: 27, Neg. LLF: 146.78615819918107
Iteration: 3, Func. Count: 39, Neg. LLF: 146.74509564774309
Iteration: 4, Func. Count: 51, Neg. LLF: 146.7168403448974
Iteration: 5, Func. Count: 63, Neg. LLF: 146.64865295446893
Iteration: 6, Func. Count: 75, Neg. LLF: 146.61553112835549
Iteration: 7, Func. Count: 87, Neg. LLF: 146.73690215755332
Iteration: 8, Func. Count: 100, Neg. LLF: 146.60476703381255
Iteration: 9, Func. Count: 112, Neg. LLF: 146.59435820773734
Iteration: 10, Func. Count: 124, Neg. LLF: 146.57288857916618
Iteration: 11, Func. Count: 136, Neg. LLF: 146.55293177195816
Iteration: 12, Func. Count: 148, Neg. LLF: 146.51538149192027
Iteration: 13, Func. Count: 160, Neg. LLF: 146.48675220020647
Iteration: 14, Func. Count: 172, Neg. LLF: 146.46046009342794
Iteration: 15, Func. Count: 184, Neg. LLF: 146.4417248714418
Iteration: 16, Func. Count: 196, Neg. LLF: 146.44078582641254
Iteration: 17, Func. Count: 208, Neg. LLF: 146.4406211584745
Iteration: 18, Func. Count: 220, Neg. LLF: 146.4406050482119
Iteration: 19, Func. Count: 232, Neg. LLF: 146.4406036719612
Iteration: 20, Func. Count: 243, Neg. LLF: 146.44060369231863
Optimization terminated successfully (Exit mode 0)
Current function value: 146.4406036719612
Iterations: 20
Function evaluations: 243
Gradient evaluations: 20
Iteration: 1, Func. Count: 10, Neg. LLF: 148.5814157345655
Iteration: 2, Func. Count: 20, Neg. LLF: 147.48011275512516
Iteration: 3, Func. Count: 30, Neg. LLF: 147.84735229376852
Iteration: 4, Func. Count: 40, Neg. LLF: 147.18955331718269
Iteration: 5, Func. Count: 50, Neg. LLF: 146.89232846561072
Iteration: 6, Func. Count: 59, Neg. LLF: 146.65405652925944
Iteration: 7, Func. Count: 68, Neg. LLF: 146.56760173001732
Iteration: 8, Func. Count: 77, Neg. LLF: 146.49431323626462
Iteration: 9, Func. Count: 86, Neg. LLF: 146.4537746178456
Iteration: 10, Func. Count: 95, Neg. LLF: 146.44274396527055
Iteration: 11, Func. Count: 104, Neg. LLF: 146.4406506462319
Iteration: 12, Func. Count: 113, Neg. LLF: 146.44060498480744
Iteration: 13, Func. Count: 122, Neg. LLF: 146.44060369375396
Iteration: 14, Func. Count: 130, Neg. LLF: 146.4406036370028
Optimization terminated successfully (Exit mode 0)
Current function value: 146.44060369375396
Iterations: 14
Function evaluations: 130
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 148.53307213238767
Iteration: 2, Func. Count: 23, Neg. LLF: 148.79840215793473
Iteration: 3, Func. Count: 34, Neg. LLF: 146.92938193364964
Iteration: 4, Func. Count: 44, Neg. LLF: 146.9267851556947
Iteration: 5, Func. Count: 54, Neg. LLF: 146.9209334246188
Iteration: 6, Func. Count: 64, Neg. LLF: 146.87887395325458
Iteration: 7, Func. Count: 74, Neg. LLF: 146.49520306677272
Iteration: 8, Func. Count: 84, Neg. LLF: 146.4820524310747
Iteration: 9, Func. Count: 94, Neg. LLF: 146.4611052448797
Iteration: 10, Func. Count: 104, Neg. LLF: 146.45413563924765
Iteration: 11, Func. Count: 114, Neg. LLF: 146.4531972156303
Iteration: 12, Func. Count: 124, Neg. LLF: 146.4531083605642
Iteration: 13, Func. Count: 134, Neg. LLF: 146.45300944535722
Iteration: 14, Func. Count: 144, Neg. LLF: 146.45289492666242
Iteration: 15, Func. Count: 154, Neg. LLF: 146.45261712329315
Iteration: 16, Func. Count: 164, Neg. LLF: 146.45183491751388
Iteration: 17, Func. Count: 174, Neg. LLF: 146.45088907466618
Iteration: 18, Func. Count: 184, Neg. LLF: 146.44882489327637
Iteration: 19, Func. Count: 194, Neg. LLF: 146.44182737872703
Iteration: 20, Func. Count: 204, Neg. LLF: 146.4406715149344
Iteration: 21, Func. Count: 214, Neg. LLF: 146.44072277704115
Iteration: 22, Func. Count: 225, Neg. LLF: 146.44060391540103
Iteration: 23, Func. Count: 234, Neg. LLF: 146.44060394798203
Optimization terminated successfully (Exit mode 0)
Current function value: 146.44060391540103
Iterations: 23
Function evaluations: 234
Gradient evaluations: 23
Iteration: 1, Func. Count: 12, Neg. LLF: 151.93188861308593
Iteration: 2, Func. Count: 25, Neg. LLF: 148.72835979264912
Iteration: 3, Func. Count: 37, Neg. LLF: 146.83464197369864
Iteration: 4, Func. Count: 48, Neg. LLF: 146.7746752000578
Iteration: 5, Func. Count: 59, Neg. LLF: 146.76715411817915
Iteration: 6, Func. Count: 70, Neg. LLF: 146.71329166954888
Iteration: 7, Func. Count: 81, Neg. LLF: 146.78749427923927
Iteration: 8, Func. Count: 93, Neg. LLF: 146.65444283015023
Iteration: 9, Func. Count: 104, Neg. LLF: 146.62413856022957
Iteration: 10, Func. Count: 115, Neg. LLF: 146.60173123881145
Iteration: 11, Func. Count: 126, Neg. LLF: 146.58212004572297
Iteration: 12, Func. Count: 137, Neg. LLF: 146.55902319143607
Iteration: 13, Func. Count: 148, Neg. LLF: 146.52726829010763
Iteration: 14, Func. Count: 159, Neg. LLF: 146.49707033189236
Iteration: 15, Func. Count: 170, Neg. LLF: 146.48398690604708
Iteration: 16, Func. Count: 181, Neg. LLF: 146.47735190737265
Iteration: 17, Func. Count: 192, Neg. LLF: 146.4674925200564
Iteration: 18, Func. Count: 203, Neg. LLF: 146.45341121892042
Iteration: 19, Func. Count: 214, Neg. LLF: 146.44327280943705
Iteration: 20, Func. Count: 225, Neg. LLF: 146.4409405108107
Iteration: 21, Func. Count: 236, Neg. LLF: 146.44063299281606
Iteration: 22, Func. Count: 247, Neg. LLF: 146.4406042898164
Iteration: 23, Func. Count: 258, Neg. LLF: 146.4406036312751
Optimization terminated successfully (Exit mode 0)
Current function value: 146.4406036312751
Iterations: 23
Function evaluations: 258
Gradient evaluations: 23
Iteration: 1, Func. Count: 13, Neg. LLF: 153.6964399150108
Iteration: 2, Func. Count: 27, Neg. LLF: 148.67995429218476
Iteration: 3, Func. Count: 40, Neg. LLF: 146.92634451861622
Iteration: 4, Func. Count: 52, Neg. LLF: 146.89148319202735
Iteration: 5, Func. Count: 64, Neg. LLF: 146.8000698014269
Iteration: 6, Func. Count: 76, Neg. LLF: 146.76181382583738
Iteration: 7, Func. Count: 88, Neg. LLF: 146.73397902576073
Iteration: 8, Func. Count: 100, Neg. LLF: 146.72522036496437
Iteration: 9, Func. Count: 112, Neg. LLF: 146.70945254325963
Iteration: 10, Func. Count: 124, Neg. LLF: 146.63526031661203
Iteration: 11, Func. Count: 136, Neg. LLF: 146.5532431671585
Iteration: 12, Func. Count: 148, Neg. LLF: 146.50991675138877
Iteration: 13, Func. Count: 160, Neg. LLF: 146.4918776698323
Iteration: 14, Func. Count: 172, Neg. LLF: 146.47894230455222
Iteration: 15, Func. Count: 184, Neg. LLF: 146.464610450316
Iteration: 16, Func. Count: 196, Neg. LLF: 146.45619295521567
Iteration: 17, Func. Count: 208, Neg. LLF: 146.4519450118597
Iteration: 18, Func. Count: 220, Neg. LLF: 146.45160619503804
Iteration: 19, Func. Count: 232, Neg. LLF: 146.4516023859776
Iteration: 20, Func. Count: 243, Neg. LLF: 146.45160241252543
Optimization terminated successfully (Exit mode 0)
Current function value: 146.4516023859776
Iterations: 20
Function evaluations: 243
Gradient evaluations: 20
Iteration: 1, Func. Count: 14, Neg. LLF: 152.70058341029775
Iteration: 2, Func. Count: 29, Neg. LLF: 148.66202012074424
Iteration: 3, Func. Count: 43, Neg. LLF: 147.9079608681021
Iteration: 4, Func. Count: 57, Neg. LLF: 146.5794242341603
Iteration: 5, Func. Count: 70, Neg. LLF: 146.5405692917858
Iteration: 6, Func. Count: 83, Neg. LLF: 146.46587506693774
Iteration: 7, Func. Count: 96, Neg. LLF: 146.4612818256318
Iteration: 8, Func. Count: 109, Neg. LLF: 146.4530387310615
Iteration: 9, Func. Count: 122, Neg. LLF: 146.4530118122204
Iteration: 10, Func. Count: 136, Neg. LLF: 146.49261006626472
Iteration: 11, Func. Count: 150, Neg. LLF: 146.45001952132336
Iteration: 12, Func. Count: 163, Neg. LLF: 146.4444112644434
Iteration: 13, Func. Count: 176, Neg. LLF: 146.4384325146279
Iteration: 14, Func. Count: 189, Neg. LLF: 146.42303948702
Iteration: 15, Func. Count: 202, Neg. LLF: 146.4107746874399
Iteration: 16, Func. Count: 215, Neg. LLF: 146.39932946202518
Iteration: 17, Func. Count: 228, Neg. LLF: 146.38828842351842
Iteration: 18, Func. Count: 241, Neg. LLF: 146.38450372448534
Iteration: 19, Func. Count: 254, Neg. LLF: 146.38445164551015
Iteration: 20, Func. Count: 267, Neg. LLF: 146.38444226014232
Iteration: 21, Func. Count: 279, Neg. LLF: 146.38444226017126
Optimization terminated successfully (Exit mode 0)
Current function value: 146.38444226014232
Iterations: 21
Function evaluations: 279
Gradient evaluations: 21
Iteration: 1, Func. Count: 11, Neg. LLF: 148.1506447267098
Iteration: 2, Func. Count: 21, Neg. LLF: 148.5731250184758
Iteration: 3, Func. Count: 32, Neg. LLF: 148.77508360504086
Iteration: 4, Func. Count: 43, Neg. LLF: 147.8207835330259
Iteration: 5, Func. Count: 54, Neg. LLF: 147.16900670506612
Iteration: 6, Func. Count: 65, Neg. LLF: 146.74307405599825
Iteration: 7, Func. Count: 75, Neg. LLF: 146.62626856635416
Iteration: 8, Func. Count: 85, Neg. LLF: 146.66066110477428
Iteration: 9, Func. Count: 96, Neg. LLF: 146.54312323863093
Iteration: 10, Func. Count: 106, Neg. LLF: 146.46168238770795
Iteration: 11, Func. Count: 116, Neg. LLF: 146.44249511065777
Iteration: 12, Func. Count: 126, Neg. LLF: 146.44068956120233
Iteration: 13, Func. Count: 136, Neg. LLF: 146.44060944253758
Iteration: 14, Func. Count: 146, Neg. LLF: 146.4406039014788
Iteration: 15, Func. Count: 155, Neg. LLF: 146.44060389364836
Optimization terminated successfully (Exit mode 0)
Current function value: 146.4406039014788
Iterations: 15
Function evaluations: 155
Gradient evaluations: 15
Iteration: 1, Func. Count: 12, Neg. LLF: 148.76325869378638
Iteration: 2, Func. Count: 25, Neg. LLF: 148.81088037416066
Iteration: 3, Func. Count: 37, Neg. LLF: 146.92923745184737
Iteration: 4, Func. Count: 48, Neg. LLF: 146.92663071456764
Iteration: 5, Func. Count: 59, Neg. LLF: 146.92018921205917
Iteration: 6, Func. Count: 70, Neg. LLF: 146.8710416415457
Iteration: 7, Func. Count: 81, Neg. LLF: 146.49822193153318
Iteration: 8, Func. Count: 92, Neg. LLF: 146.48468563448822
Iteration: 9, Func. Count: 103, Neg. LLF: 146.46078962813414
Iteration: 10, Func. Count: 114, Neg. LLF: 146.45456946865818
Iteration: 11, Func. Count: 125, Neg. LLF: 146.4537191752398
Iteration: 12, Func. Count: 136, Neg. LLF: 146.45362106535197
Iteration: 13, Func. Count: 147, Neg. LLF: 146.45356126998152
Iteration: 14, Func. Count: 158, Neg. LLF: 146.45354947963077
Iteration: 15, Func. Count: 169, Neg. LLF: 146.45353781707976
Iteration: 16, Func. Count: 180, Neg. LLF: 146.45349985439194
Iteration: 17, Func. Count: 191, Neg. LLF: 146.45330773207456
Iteration: 18, Func. Count: 202, Neg. LLF: 146.45437093574134
Iteration: 19, Func. Count: 214, Neg. LLF: 146.45277602914726
Iteration: 20, Func. Count: 225, Neg. LLF: 146.45190745022072
Iteration: 21, Func. Count: 236, Neg. LLF: 146.44775988849312
Iteration: 22, Func. Count: 247, Neg. LLF: 146.4567433843956
Iteration: 23, Func. Count: 259, Neg. LLF: 146.440990815045
Iteration: 24, Func. Count: 271, Neg. LLF: 146.44060917595223
Iteration: 25, Func. Count: 282, Neg. LLF: 146.44060365330176
Iteration: 26, Func. Count: 292, Neg. LLF: 146.44060368586204
Optimization terminated successfully (Exit mode 0)
Current function value: 146.44060365330176
Iterations: 26
Function evaluations: 292
Gradient evaluations: 26
Iteration: 1, Func. Count: 13, Neg. LLF: 151.73079223774388
Iteration: 2, Func. Count: 27, Neg. LLF: 148.7400077147872
Iteration: 3, Func. Count: 40, Neg. LLF: 146.83046795526766
Iteration: 4, Func. Count: 52, Neg. LLF: 146.76109910733157
Iteration: 5, Func. Count: 64, Neg. LLF: 146.7438951732774
Iteration: 6, Func. Count: 76, Neg. LLF: 146.7399430251693
Iteration: 7, Func. Count: 88, Neg. LLF: 146.73678512794933
Iteration: 8, Func. Count: 100, Neg. LLF: 146.73348631309707
Iteration: 9, Func. Count: 112, Neg. LLF: 146.72387816182538
Iteration: 10, Func. Count: 124, Neg. LLF: 146.69011461097145
Iteration: 11, Func. Count: 136, Neg. LLF: 146.61214361436882
Iteration: 12, Func. Count: 148, Neg. LLF: 146.5199639501391
Iteration: 13, Func. Count: 160, Neg. LLF: 146.47525202547865
Iteration: 14, Func. Count: 172, Neg. LLF: 146.4651472321204
Iteration: 15, Func. Count: 184, Neg. LLF: 146.45405927635568
Iteration: 16, Func. Count: 196, Neg. LLF: 146.45188798450934
Iteration: 17, Func. Count: 208, Neg. LLF: 146.45163537057516
Iteration: 18, Func. Count: 220, Neg. LLF: 146.45161554148265
Iteration: 19, Func. Count: 232, Neg. LLF: 146.45160520156577
Iteration: 20, Func. Count: 244, Neg. LLF: 146.4516024688241
Iteration: 21, Func. Count: 255, Neg. LLF: 146.4516024741218
Optimization terminated successfully (Exit mode 0)
Current function value: 146.4516024688241
Iterations: 21
Function evaluations: 255
Gradient evaluations: 21
Iteration: 1, Func. Count: 14, Neg. LLF: 151.98475533812532
Iteration: 2, Func. Count: 29, Neg. LLF: 148.55990622768027
Iteration: 3, Func. Count: 43, Neg. LLF: 146.8011672748627
Iteration: 4, Func. Count: 56, Neg. LLF: 146.77878412490819
Iteration: 5, Func. Count: 69, Neg. LLF: 146.7520913789896
Iteration: 6, Func. Count: 82, Neg. LLF: 146.74909350678485
Iteration: 7, Func. Count: 95, Neg. LLF: 146.74649928935426
Iteration: 8, Func. Count: 108, Neg. LLF: 146.74323665650078
Iteration: 9, Func. Count: 121, Neg. LLF: 146.73880309870813
Iteration: 10, Func. Count: 134, Neg. LLF: 146.69583174220884
Iteration: 11, Func. Count: 147, Neg. LLF: 146.60897803275208
Iteration: 12, Func. Count: 160, Neg. LLF: 149.39794965546417
Iteration: 13, Func. Count: 175, Neg. LLF: 146.78332309699707
Iteration: 14, Func. Count: 189, Neg. LLF: 146.49255094841263
Iteration: 15, Func. Count: 202, Neg. LLF: 146.49517143469382
Iteration: 16, Func. Count: 216, Neg. LLF: 146.4809816147427
Iteration: 17, Func. Count: 229, Neg. LLF: 146.46850364157126
Iteration: 18, Func. Count: 242, Neg. LLF: 146.4541565120564
Iteration: 19, Func. Count: 255, Neg. LLF: 146.4421148361766
Iteration: 20, Func. Count: 268, Neg. LLF: 146.44065220701458
Iteration: 21, Func. Count: 281, Neg. LLF: 146.44060831136943
Iteration: 22, Func. Count: 294, Neg. LLF: 146.4406040942448
Iteration: 23, Func. Count: 306, Neg. LLF: 146.44060413316475
Optimization terminated successfully (Exit mode 0)
Current function value: 146.4406040942448
Iterations: 24
Function evaluations: 306
Gradient evaluations: 23
Iteration: 1, Func. Count: 15, Neg. LLF: 151.82803023451538
Iteration: 2, Func. Count: 31, Neg. LLF: 148.6693774012992
Iteration: 3, Func. Count: 46, Neg. LLF: 147.96614432762883
Iteration: 4, Func. Count: 61, Neg. LLF: 146.59339096896827
Iteration: 5, Func. Count: 75, Neg. LLF: 146.55680628935258
Iteration: 6, Func. Count: 89, Neg. LLF: 147.3152869407532
Iteration: 7, Func. Count: 104, Neg. LLF: 146.48127587976072
Iteration: 8, Func. Count: 118, Neg. LLF: 146.46030230295375
Iteration: 9, Func. Count: 132, Neg. LLF: 146.46257827154645
Iteration: 10, Func. Count: 147, Neg. LLF: 146.45194360585919
Iteration: 11, Func. Count: 161, Neg. LLF: 146.45006469567036
Iteration: 12, Func. Count: 175, Neg. LLF: 146.44747570823526
Iteration: 13, Func. Count: 189, Neg. LLF: 146.4440811408591
Iteration: 14, Func. Count: 203, Neg. LLF: 146.43801530827716
Iteration: 15, Func. Count: 217, Neg. LLF: 146.42623760716052
Iteration: 16, Func. Count: 231, Neg. LLF: 146.4152666515326
Iteration: 17, Func. Count: 245, Neg. LLF: 146.39678706958773
Iteration: 18, Func. Count: 259, Neg. LLF: 146.38602256940766
Iteration: 19, Func. Count: 273, Neg. LLF: 146.38202228145545
Iteration: 20, Func. Count: 287, Neg. LLF: 146.38167182406846
Iteration: 21, Func. Count: 301, Neg. LLF: 146.38163662066793
Iteration: 22, Func. Count: 315, Neg. LLF: 146.38163285487008
Iteration: 23, Func. Count: 329, Neg. LLF: 146.38163203178476
Optimization terminated successfully (Exit mode 0)
Current function value: 146.38163203178476
Iterations: 23
Function evaluations: 329
Gradient evaluations: 23
Iteration: 1, Func. Count: 12, Neg. LLF: 147.96670198054937
Iteration: 2, Func. Count: 23, Neg. LLF: 147.82367245909296
Iteration: 3, Func. Count: 34, Neg. LLF: 152.30633268156984
Iteration: 4, Func. Count: 47, Neg. LLF: 148.2139161768235
Iteration: 5, Func. Count: 59, Neg. LLF: 147.10472411883413
Iteration: 6, Func. Count: 71, Neg. LLF: 146.75575917597538
Iteration: 7, Func. Count: 82, Neg. LLF: 146.71164457125082
Iteration: 8, Func. Count: 93, Neg. LLF: 146.93532035892136
Iteration: 9, Func. Count: 105, Neg. LLF: 146.57516050837938
Iteration: 10, Func. Count: 116, Neg. LLF: 146.52658120915535
Iteration: 11, Func. Count: 127, Neg. LLF: 146.46641943824457
Iteration: 12, Func. Count: 138, Neg. LLF: 146.4491763998378
Iteration: 13, Func. Count: 149, Neg. LLF: 146.44098481010806
Iteration: 14, Func. Count: 160, Neg. LLF: 146.4406154648564
Iteration: 15, Func. Count: 171, Neg. LLF: 146.4406036639178
Iteration: 16, Func. Count: 181, Neg. LLF: 146.4406037180273
Optimization terminated successfully (Exit mode 0)
Current function value: 146.4406036639178
Iterations: 16
Function evaluations: 181
Gradient evaluations: 16
Iteration: 1, Func. Count: 13, Neg. LLF: 150.2831983686861
Iteration: 2, Func. Count: 27, Neg. LLF: 148.70346891678744
Iteration: 3, Func. Count: 40, Neg. LLF: 147.00233584568898
Iteration: 4, Func. Count: 53, Neg. LLF: 146.92291665380105
Iteration: 5, Func. Count: 65, Neg. LLF: 146.92258779684056
Iteration: 6, Func. Count: 77, Neg. LLF: 146.92183683008733
Iteration: 7, Func. Count: 89, Neg. LLF: 146.90959733054734
Iteration: 8, Func. Count: 101, Neg. LLF: 146.89176664302016
Iteration: 9, Func. Count: 113, Neg. LLF: 146.7478099148957
Iteration: 10, Func. Count: 125, Neg. LLF: 146.53703497680328
Iteration: 11, Func. Count: 137, Neg. LLF: 146.52072036300365
Iteration: 12, Func. Count: 149, Neg. LLF: 146.5107001417593
Iteration: 13, Func. Count: 161, Neg. LLF: 146.48218588883316
Iteration: 14, Func. Count: 173, Neg. LLF: 146.4615509731418
Iteration: 15, Func. Count: 185, Neg. LLF: 146.48402595783494
Iteration: 16, Func. Count: 198, Neg. LLF: 146.46722092041875
Iteration: 17, Func. Count: 211, Neg. LLF: 146.4547352903303
Iteration: 18, Func. Count: 223, Neg. LLF: 146.45348268822306
Iteration: 19, Func. Count: 235, Neg. LLF: 146.45257073700267
Iteration: 20, Func. Count: 247, Neg. LLF: 146.4516300822494
Iteration: 21, Func. Count: 259, Neg. LLF: 146.45160360133735
Iteration: 22, Func. Count: 271, Neg. LLF: 146.45160223872196
Iteration: 23, Func. Count: 282, Neg. LLF: 146.45160226800286
Optimization terminated successfully (Exit mode 0)
Current function value: 146.45160223872196
Iterations: 24
Function evaluations: 282
Gradient evaluations: 23
Iteration: 1, Func. Count: 14, Neg. LLF: 151.59105175061862
Iteration: 2, Func. Count: 29, Neg. LLF: 148.74422018356904
Iteration: 3, Func. Count: 43, Neg. LLF: 146.88473323851602
Iteration: 4, Func. Count: 56, Neg. LLF: 146.78283551805282
Iteration: 5, Func. Count: 69, Neg. LLF: 146.90533150168025
Iteration: 6, Func. Count: 83, Neg. LLF: 146.80723075003613
Iteration: 7, Func. Count: 97, Neg. LLF: 146.74758622664646
Iteration: 8, Func. Count: 110, Neg. LLF: 146.74261059273073
Iteration: 9, Func. Count: 123, Neg. LLF: 146.74035651592325
Iteration: 10, Func. Count: 136, Neg. LLF: 146.73421449258063
Iteration: 11, Func. Count: 149, Neg. LLF: 146.7157410833282
Iteration: 12, Func. Count: 162, Neg. LLF: 146.66592253517868
Iteration: 13, Func. Count: 175, Neg. LLF: 146.60302440724493
Iteration: 14, Func. Count: 188, Neg. LLF: 146.51772479909388
Iteration: 15, Func. Count: 201, Neg. LLF: 146.49039040824573
Iteration: 16, Func. Count: 214, Neg. LLF: 146.47484277994664
Iteration: 17, Func. Count: 227, Neg. LLF: 146.46118742142306
Iteration: 18, Func. Count: 240, Neg. LLF: 146.4527959813679
Iteration: 19, Func. Count: 253, Neg. LLF: 146.45226095070433
Iteration: 20, Func. Count: 266, Neg. LLF: 146.45163076243847
Iteration: 21, Func. Count: 279, Neg. LLF: 146.45160313637706
Iteration: 22, Func. Count: 292, Neg. LLF: 146.45160224583907
Optimization terminated successfully (Exit mode 0)
Current function value: 146.45160224583907
Iterations: 22
Function evaluations: 292
Gradient evaluations: 22
Iteration: 1, Func. Count: 15, Neg. LLF: 151.8030163624773
Iteration: 2, Func. Count: 31, Neg. LLF: 148.56249504680824
Iteration: 3, Func. Count: 46, Neg. LLF: 146.80223246200467
Iteration: 4, Func. Count: 60, Neg. LLF: 146.7815808519133
Iteration: 5, Func. Count: 74, Neg. LLF: 146.7521488631897
Iteration: 6, Func. Count: 88, Neg. LLF: 146.74888089725704
Iteration: 7, Func. Count: 102, Neg. LLF: 146.74676673142997
Iteration: 8, Func. Count: 116, Neg. LLF: 146.74401954165364
Iteration: 9, Func. Count: 130, Neg. LLF: 146.74117919361848
Iteration: 10, Func. Count: 144, Neg. LLF: 146.72453475434097
Iteration: 11, Func. Count: 158, Neg. LLF: 146.55491468610873
Iteration: 12, Func. Count: 172, Neg. LLF: 146.48932862609314
Iteration: 13, Func. Count: 186, Neg. LLF: 146.47575297325835
Iteration: 14, Func. Count: 200, Neg. LLF: 146.4572197029841
Iteration: 15, Func. Count: 214, Neg. LLF: 146.47131765838614
Iteration: 16, Func. Count: 229, Neg. LLF: 146.4553405311751
Iteration: 17, Func. Count: 244, Neg. LLF: 146.45379517100633
Iteration: 18, Func. Count: 258, Neg. LLF: 146.4535984426117
Iteration: 19, Func. Count: 272, Neg. LLF: 146.45356769148736
Iteration: 20, Func. Count: 286, Neg. LLF: 146.45351065312911
Iteration: 21, Func. Count: 300, Neg. LLF: 146.45365359731747
Iteration: 22, Func. Count: 315, Neg. LLF: 146.45322091920306
Iteration: 23, Func. Count: 329, Neg. LLF: 146.45265217791123
Iteration: 24, Func. Count: 343, Neg. LLF: 146.45116109561909
Iteration: 25, Func. Count: 357, Neg. LLF: 146.4486225252483
Iteration: 26, Func. Count: 371, Neg. LLF: 146.44130197488937
Iteration: 27, Func. Count: 385, Neg. LLF: 146.44064779746338
Iteration: 28, Func. Count: 399, Neg. LLF: 146.4406286037029
Iteration: 29, Func. Count: 413, Neg. LLF: 146.4406038463445
Iteration: 30, Func. Count: 426, Neg. LLF: 146.44060388531557
Optimization terminated successfully (Exit mode 0)
Current function value: 146.4406038463445
Iterations: 31
Function evaluations: 426
Gradient evaluations: 30
Iteration: 1, Func. Count: 16, Neg. LLF: 151.67763598900996
Iteration: 2, Func. Count: 33, Neg. LLF: 148.6719435219252
Iteration: 3, Func. Count: 49, Neg. LLF: 147.97318427135366
Iteration: 4, Func. Count: 65, Neg. LLF: 146.59420450707495
Iteration: 5, Func. Count: 80, Neg. LLF: 146.55812455334993
Iteration: 6, Func. Count: 95, Neg. LLF: 147.26936772078304
Iteration: 7, Func. Count: 111, Neg. LLF: 146.47716361682694
Iteration: 8, Func. Count: 126, Neg. LLF: 146.46002229579227
Iteration: 9, Func. Count: 141, Neg. LLF: 146.4610179311971
Iteration: 10, Func. Count: 157, Neg. LLF: 146.45191828401573
Iteration: 11, Func. Count: 172, Neg. LLF: 146.45021280398223
Iteration: 12, Func. Count: 187, Neg. LLF: 146.44718376216142
Iteration: 13, Func. Count: 202, Neg. LLF: 146.44396421070692
Iteration: 14, Func. Count: 217, Neg. LLF: 146.4376832779591
Iteration: 15, Func. Count: 232, Neg. LLF: 146.42277477735453
Iteration: 16, Func. Count: 247, Neg. LLF: 146.41539514394802
Iteration: 17, Func. Count: 262, Neg. LLF: 146.3960201746403
Iteration: 18, Func. Count: 277, Neg. LLF: 146.38622459270493
Iteration: 19, Func. Count: 292, Neg. LLF: 146.38229700090835
Iteration: 20, Func. Count: 307, Neg. LLF: 146.38170415029495
Iteration: 21, Func. Count: 322, Neg. LLF: 146.38164315763038
Iteration: 22, Func. Count: 337, Neg. LLF: 146.38163334277152
Iteration: 23, Func. Count: 352, Neg. LLF: 146.38163201386212
Iteration: 24, Func. Count: 366, Neg. LLF: 146.3816320138579
Optimization terminated successfully (Exit mode 0)
Current function value: 146.38163201386212
Iterations: 24
Function evaluations: 366
Gradient evaluations: 24
Iteration: 1, Func. Count: 5, Neg. LLF: 152.07799682289482
Iteration: 2, Func. Count: 10, Neg. LLF: 151.86966298706793
Iteration: 3, Func. Count: 15, Neg. LLF: 147.19926498409012
Iteration: 4, Func. Count: 19, Neg. LLF: 146.61098160962737
Iteration: 5, Func. Count: 23, Neg. LLF: 146.46499222782276
Iteration: 6, Func. Count: 27, Neg. LLF: 146.45263924602764
Iteration: 7, Func. Count: 31, Neg. LLF: 146.45205501011756
Iteration: 8, Func. Count: 35, Neg. LLF: 146.45165240038472
Iteration: 9, Func. Count: 39, Neg. LLF: 146.45160972086143
Iteration: 10, Func. Count: 43, Neg. LLF: 146.45160233280373
Iteration: 11, Func. Count: 46, Neg. LLF: 146.45160233280725
Optimization terminated successfully (Exit mode 0)
Current function value: 146.45160233280373
Iterations: 11
Function evaluations: 46
Gradient evaluations: 11
Iteration: 1, Func. Count: 5, Neg. LLF: 150.63573670475682
Iteration: 2, Func. Count: 10, Neg. LLF: 150.42159391551354
Iteration: 3, Func. Count: 15, Neg. LLF: 144.74604212296785
Iteration: 4, Func. Count: 19, Neg. LLF: 144.20379562123026
Iteration: 5, Func. Count: 23, Neg. LLF: 144.11452312120403
Iteration: 6, Func. Count: 27, Neg. LLF: 144.11250242293235
Iteration: 7, Func. Count: 31, Neg. LLF: 144.11128295934944
Iteration: 8, Func. Count: 35, Neg. LLF: 144.11102634612215
Iteration: 9, Func. Count: 39, Neg. LLF: 144.11098539110563
Iteration: 10, Func. Count: 43, Neg. LLF: 144.11098419054676
Iteration: 11, Func. Count: 46, Neg. LLF: 144.11098419054852
Optimization terminated successfully (Exit mode 0)
Current function value: 144.11098419054676
Iterations: 11
Function evaluations: 46
Gradient evaluations: 11
Iteration: 1, Func. Count: 6, Neg. LLF: 145.42983522620912
Iteration: 2, Func. Count: 13, Neg. LLF: 145.31947203246264
Iteration: 3, Func. Count: 19, Neg. LLF: 144.74400801712065
Iteration: 4, Func. Count: 24, Neg. LLF: 144.6801055501378
Iteration: 5, Func. Count: 29, Neg. LLF: 144.24787728448013
Iteration: 6, Func. Count: 34, Neg. LLF: 144.13012110338786
Iteration: 7, Func. Count: 39, Neg. LLF: 144.11667507233423
Iteration: 8, Func. Count: 44, Neg. LLF: 144.1116770968407
Iteration: 9, Func. Count: 49, Neg. LLF: 144.1112852310155
Iteration: 10, Func. Count: 54, Neg. LLF: 144.11102804308115
Iteration: 11, Func. Count: 59, Neg. LLF: 144.11098779791467
Iteration: 12, Func. Count: 64, Neg. LLF: 144.11098425631218
Iteration: 13, Func. Count: 68, Neg. LLF: 144.1109842922343
Optimization terminated successfully (Exit mode 0)
Current function value: 144.11098425631218
Iterations: 13
Function evaluations: 68
Gradient evaluations: 13
Iteration: 1, Func. Count: 7, Neg. LLF: 146.2691015169663
Iteration: 2, Func. Count: 14, Neg. LLF: 146.47258517969365
Iteration: 3, Func. Count: 22, Neg. LLF: 144.55482679257963
Iteration: 4, Func. Count: 28, Neg. LLF: 144.55965333462947
Iteration: 5, Func. Count: 35, Neg. LLF: 144.5129166324901
Iteration: 6, Func. Count: 41, Neg. LLF: 144.45281949212975
Iteration: 7, Func. Count: 47, Neg. LLF: 144.37783708329832
Iteration: 8, Func. Count: 53, Neg. LLF: 144.31567576134285
Iteration: 9, Func. Count: 59, Neg. LLF: 144.16956336257655
Iteration: 10, Func. Count: 65, Neg. LLF: 144.12969692238576
Iteration: 11, Func. Count: 71, Neg. LLF: 144.11829066173658
Iteration: 12, Func. Count: 77, Neg. LLF: 144.1127609564579
Iteration: 13, Func. Count: 83, Neg. LLF: 144.1111951377519
Iteration: 14, Func. Count: 89, Neg. LLF: 144.11099457162098
Iteration: 15, Func. Count: 95, Neg. LLF: 144.11098422656187
Iteration: 16, Func. Count: 100, Neg. LLF: 144.11098423768962
Optimization terminated successfully (Exit mode 0)
Current function value: 144.11098422656187
Iterations: 16
Function evaluations: 100
Gradient evaluations: 16
Iteration: 1, Func. Count: 8, Neg. LLF: 144.82095145646815
Iteration: 2, Func. Count: 16, Neg. LLF: 148.67153931748845
Iteration: 3, Func. Count: 25, Neg. LLF: 144.54388144432457
Iteration: 4, Func. Count: 32, Neg. LLF: 144.56801216409147
Iteration: 5, Func. Count: 40, Neg. LLF: 144.5133986306234
Iteration: 6, Func. Count: 47, Neg. LLF: 144.43730502705375
Iteration: 7, Func. Count: 54, Neg. LLF: 144.18564738269058
Iteration: 8, Func. Count: 61, Neg. LLF: 144.14867591517097
Iteration: 9, Func. Count: 68, Neg. LLF: 144.12019149251512
Iteration: 10, Func. Count: 75, Neg. LLF: 144.11383823462
Iteration: 11, Func. Count: 82, Neg. LLF: 144.11193946271447
Iteration: 12, Func. Count: 89, Neg. LLF: 144.1111502610488
Iteration: 13, Func. Count: 96, Neg. LLF: 144.11099687411735
Iteration: 14, Func. Count: 103, Neg. LLF: 144.11098440782473
Iteration: 15, Func. Count: 109, Neg. LLF: 144.11098443995027
Optimization terminated successfully (Exit mode 0)
Current function value: 144.11098440782473
Iterations: 15
Function evaluations: 109
Gradient evaluations: 15
Iteration: 1, Func. Count: 9, Neg. LLF: 145.0877203884214
Iteration: 2, Func. Count: 18, Neg. LLF: 145.65537592522503
Iteration: 3, Func. Count: 27, Neg. LLF: 144.5500512745137
Iteration: 4, Func. Count: 35, Neg. LLF: 144.92098974600447
Iteration: 5, Func. Count: 44, Neg. LLF: 144.53564995404508
Iteration: 6, Func. Count: 53, Neg. LLF: 144.50410665134484
Iteration: 7, Func. Count: 61, Neg. LLF: 144.34824041232878
Iteration: 8, Func. Count: 69, Neg. LLF: 144.1317293936823
Iteration: 9, Func. Count: 77, Neg. LLF: 144.11786665402337
Iteration: 10, Func. Count: 85, Neg. LLF: 144.11377921496594
Iteration: 11, Func. Count: 93, Neg. LLF: 144.11278098201652
Iteration: 12, Func. Count: 101, Neg. LLF: 144.11143036030444
Iteration: 13, Func. Count: 109, Neg. LLF: 144.11105456500175
Iteration: 14, Func. Count: 117, Neg. LLF: 144.11098565948782
Iteration: 15, Func. Count: 125, Neg. LLF: 144.1109841831349
Iteration: 16, Func. Count: 132, Neg. LLF: 144.1109842181708
Optimization terminated successfully (Exit mode 0)
Current function value: 144.1109841831349
Iterations: 16
Function evaluations: 132
Gradient evaluations: 16
Iteration: 1, Func. Count: 6, Neg. LLF: 152.54666944540517
Iteration: 2, Func. Count: 12, Neg. LLF: 154.560454958907
Iteration: 3, Func. Count: 18, Neg. LLF: 144.81902659797197
Iteration: 4, Func. Count: 23, Neg. LLF: 144.25091939909927
Iteration: 5, Func. Count: 28, Neg. LLF: 144.11686732476764
Iteration: 6, Func. Count: 33, Neg. LLF: 144.11109482085357
Iteration: 7, Func. Count: 38, Neg. LLF: 144.11101753203425
Iteration: 8, Func. Count: 43, Neg. LLF: 144.11099848345665
Iteration: 9, Func. Count: 48, Neg. LLF: 144.1109869866925
Iteration: 10, Func. Count: 53, Neg. LLF: 144.1109843626139
Iteration: 11, Func. Count: 57, Neg. LLF: 144.110984435115
Optimization terminated successfully (Exit mode 0)
Current function value: 144.1109843626139
Iterations: 11
Function evaluations: 57
Gradient evaluations: 11
Iteration: 1, Func. Count: 7, Neg. LLF: 147.33114034398727
Iteration: 2, Func. Count: 15, Neg. LLF: 146.3300837373892
Iteration: 3, Func. Count: 22, Neg. LLF: 144.75341395729362
Iteration: 4, Func. Count: 28, Neg. LLF: 144.73935540282096
Iteration: 5, Func. Count: 34, Neg. LLF: 144.7164965092705
Iteration: 6, Func. Count: 40, Neg. LLF: 144.6637772940032
Iteration: 7, Func. Count: 46, Neg. LLF: 144.23011327879775
Iteration: 8, Func. Count: 52, Neg. LLF: 144.14190761107722
Iteration: 9, Func. Count: 58, Neg. LLF: 144.1181803419515
Iteration: 10, Func. Count: 64, Neg. LLF: 144.11422485394013
Iteration: 11, Func. Count: 70, Neg. LLF: 144.11161717368063
Iteration: 12, Func. Count: 76, Neg. LLF: 144.11120217611352
Iteration: 13, Func. Count: 82, Neg. LLF: 144.1110473661114
Iteration: 14, Func. Count: 88, Neg. LLF: 144.110994345623
Iteration: 15, Func. Count: 94, Neg. LLF: 144.11098473851968
Iteration: 16, Func. Count: 100, Neg. LLF: 144.11098418329738
Optimization terminated successfully (Exit mode 0)
Current function value: 144.11098418329738
Iterations: 16
Function evaluations: 100
Gradient evaluations: 16
Iteration: 1, Func. Count: 8, Neg. LLF: 476.1753726225574
Iteration: 2, Func. Count: 17, Neg. LLF: 144.69912563532523
Iteration: 3, Func. Count: 24, Neg. LLF: 144.00642746320653
Iteration: 4, Func. Count: 31, Neg. LLF: 144.0213919901799
Iteration: 5, Func. Count: 39, Neg. LLF: 143.98994195326418
Iteration: 6, Func. Count: 46, Neg. LLF: 143.98992223399588
Optimization terminated successfully (Exit mode 0)
Current function value: 143.9899222337735
Iterations: 6
Function evaluations: 46
Gradient evaluations: 6
Iteration: 1, Func. Count: 9, Neg. LLF: 597.0963679700656
Iteration: 2, Func. Count: 19, Neg. LLF: 144.47497495945294
Iteration: 3, Func. Count: 27, Neg. LLF: 144.08070538568637
Iteration: 4, Func. Count: 35, Neg. LLF: 144.08375698924638
Iteration: 5, Func. Count: 44, Neg. LLF: 144.05580863181999
Iteration: 6, Func. Count: 52, Neg. LLF: 144.04648406012734
Iteration: 7, Func. Count: 60, Neg. LLF: 144.0411587801675
Iteration: 8, Func. Count: 68, Neg. LLF: 144.03557303970786
Iteration: 9, Func. Count: 76, Neg. LLF: 144.02409620670838
Iteration: 10, Func. Count: 84, Neg. LLF: 144.0241209398088
Iteration: 11, Func. Count: 93, Neg. LLF: 144.02439595186348
Iteration: 12, Func. Count: 102, Neg. LLF: 144.02383058945665
Iteration: 13, Func. Count: 110, Neg. LLF: 144.0224572397773
Iteration: 14, Func. Count: 118, Neg. LLF: 144.0130030905654
Iteration: 15, Func. Count: 126, Neg. LLF: 23463727.436439842
Iteration: 16, Func. Count: 138, Neg. LLF: 144.0132160014309
Iteration: 17, Func. Count: 147, Neg. LLF: 144.01279452643587
Iteration: 18, Func. Count: 154, Neg. LLF: 144.0127945284701
Optimization terminated successfully (Exit mode 0)
Current function value: 144.01279452643587
Iterations: 19
Function evaluations: 154
Gradient evaluations: 18
Iteration: 1, Func. Count: 10, Neg. LLF: 685.0368706532951
Iteration: 2, Func. Count: 21, Neg. LLF: 144.27974035211932
Iteration: 3, Func. Count: 30, Neg. LLF: 144.0646903563765
Iteration: 4, Func. Count: 39, Neg. LLF: 144.0533931450946
Iteration: 5, Func. Count: 48, Neg. LLF: 144.04225138870615
Iteration: 6, Func. Count: 57, Neg. LLF: 144.03496915541908
Iteration: 7, Func. Count: 66, Neg. LLF: 144.03375759633548
Iteration: 8, Func. Count: 75, Neg. LLF: 144.03366727893226
Iteration: 9, Func. Count: 83, Neg. LLF: 144.03366727894254
Optimization terminated successfully (Exit mode 0)
Current function value: 144.03366727893226
Iterations: 9
Function evaluations: 83
Gradient evaluations: 9
Iteration: 1, Func. Count: 7, Neg. LLF: 149.52850430036483
Iteration: 2, Func. Count: 14, Neg. LLF: 150.8556671992698
Iteration: 3, Func. Count: 21, Neg. LLF: 144.77751174211713
Iteration: 4, Func. Count: 27, Neg. LLF: 144.2495020320979
Iteration: 5, Func. Count: 33, Neg. LLF: 144.12831569200264
Iteration: 6, Func. Count: 39, Neg. LLF: 144.11388073441915
Iteration: 7, Func. Count: 45, Neg. LLF: 144.11267478176944
Iteration: 8, Func. Count: 51, Neg. LLF: 144.11098981290795
Iteration: 9, Func. Count: 57, Neg. LLF: 144.110984410479
Iteration: 10, Func. Count: 62, Neg. LLF: 144.1109844324787
Optimization terminated successfully (Exit mode 0)
Current function value: 144.110984410479
Iterations: 10
Function evaluations: 62
Gradient evaluations: 10
Iteration: 1, Func. Count: 8, Neg. LLF: 147.31711792466268
Iteration: 2, Func. Count: 18, Neg. LLF: 146.387151067799
Iteration: 3, Func. Count: 26, Neg. LLF: 144.76280872182193
Iteration: 4, Func. Count: 33, Neg. LLF: 144.73089131599534
Iteration: 5, Func. Count: 40, Neg. LLF: 144.70428215010506
Iteration: 6, Func. Count: 47, Neg. LLF: 144.51835521601433
Iteration: 7, Func. Count: 54, Neg. LLF: 144.21301543369586
Iteration: 8, Func. Count: 61, Neg. LLF: 144.1727026531284
Iteration: 9, Func. Count: 68, Neg. LLF: 144.12502698486048
Iteration: 10, Func. Count: 75, Neg. LLF: 144.11913352718193
Iteration: 11, Func. Count: 82, Neg. LLF: 144.1112068616213
Iteration: 12, Func. Count: 89, Neg. LLF: 144.11110969485367
Iteration: 13, Func. Count: 96, Neg. LLF: 144.11105051966192
Iteration: 14, Func. Count: 103, Neg. LLF: 144.1109981052655
Iteration: 15, Func. Count: 110, Neg. LLF: 144.11098546596367
Iteration: 16, Func. Count: 117, Neg. LLF: 144.1109842039403
Iteration: 17, Func. Count: 123, Neg. LLF: 144.11098423984637
Optimization terminated successfully (Exit mode 0)
Current function value: 144.1109842039403
Iterations: 17
Function evaluations: 123
Gradient evaluations: 17
Iteration: 1, Func. Count: 9, Neg. LLF: 474.7463158609951
Iteration: 2, Func. Count: 19, Neg. LLF: 144.69950649901597
Iteration: 3, Func. Count: 27, Neg. LLF: 144.01300044033576
Iteration: 4, Func. Count: 35, Neg. LLF: 144.018083681831
Iteration: 5, Func. Count: 44, Neg. LLF: 143.9905155812536
Iteration: 6, Func. Count: 53, Neg. LLF: 143.9899218526455
Optimization terminated successfully (Exit mode 0)
Current function value: 143.9899218526455
Iterations: 6
Function evaluations: 53
Gradient evaluations: 6
Iteration: 1, Func. Count: 10, Neg. LLF: 595.0682493184731
Iteration: 2, Func. Count: 21, Neg. LLF: 144.47697083249273
Iteration: 3, Func. Count: 30, Neg. LLF: 144.08480386834893
Iteration: 4, Func. Count: 39, Neg. LLF: 144.08664620630827
Iteration: 5, Func. Count: 49, Neg. LLF: 144.05914426089157
Iteration: 6, Func. Count: 58, Neg. LLF: 144.04676761879003
Iteration: 7, Func. Count: 67, Neg. LLF: 144.04186699621377
Iteration: 8, Func. Count: 76, Neg. LLF: 144.03817911182452
Iteration: 9, Func. Count: 85, Neg. LLF: 144.0246911895475
Iteration: 10, Func. Count: 94, Neg. LLF: 144.01700791451293
Iteration: 11, Func. Count: 103, Neg. LLF: 23466005.077459186
Iteration: 12, Func. Count: 115, Neg. LLF: 144.01288702488046
Iteration: 13, Func. Count: 124, Neg. LLF: 144.0131838129192
Iteration: 14, Func. Count: 134, Neg. LLF: 144.0127945325527
Iteration: 15, Func. Count: 142, Neg. LLF: 144.01279453420685
Optimization terminated successfully (Exit mode 0)
Current function value: 144.0127945325527
Iterations: 16
Function evaluations: 142
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 683.4037107035705
Iteration: 2, Func. Count: 23, Neg. LLF: 144.2824865095018
Iteration: 3, Func. Count: 33, Neg. LLF: 144.06853480480254
Iteration: 4, Func. Count: 43, Neg. LLF: 144.05480088613385
Iteration: 5, Func. Count: 53, Neg. LLF: 144.0431601233118
Iteration: 6, Func. Count: 63, Neg. LLF: 144.0350419460724
Iteration: 7, Func. Count: 73, Neg. LLF: 144.03374314217837
Iteration: 8, Func. Count: 83, Neg. LLF: 144.03366737736738
Iteration: 9, Func. Count: 92, Neg. LLF: 144.03366737732892
Optimization terminated successfully (Exit mode 0)
Current function value: 144.03366737736738
Iterations: 9
Function evaluations: 92
Gradient evaluations: 9
Iteration: 1, Func. Count: 8, Neg. LLF: 148.81431120055575
Iteration: 2, Func. Count: 16, Neg. LLF: 150.2165315779154
Iteration: 3, Func. Count: 24, Neg. LLF: 144.76645332539866
Iteration: 4, Func. Count: 31, Neg. LLF: 144.2659801915405
Iteration: 5, Func. Count: 38, Neg. LLF: 144.1453618326258
Iteration: 6, Func. Count: 45, Neg. LLF: 144.1199889371294
Iteration: 7, Func. Count: 52, Neg. LLF: 144.11620040774534
Iteration: 8, Func. Count: 59, Neg. LLF: 144.11118342117035
Iteration: 9, Func. Count: 66, Neg. LLF: 144.11098674178933
Iteration: 10, Func. Count: 73, Neg. LLF: 144.11098419948144
Iteration: 11, Func. Count: 79, Neg. LLF: 144.11098426382006
Optimization terminated successfully (Exit mode 0)
Current function value: 144.11098419948144
Iterations: 11
Function evaluations: 79
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 147.31142437864824
Iteration: 2, Func. Count: 19, Neg. LLF: 146.34674736868268
Iteration: 3, Func. Count: 28, Neg. LLF: 144.75113831904747
Iteration: 4, Func. Count: 36, Neg. LLF: 144.7369111890576
Iteration: 5, Func. Count: 44, Neg. LLF: 144.71388285576907
Iteration: 6, Func. Count: 52, Neg. LLF: 144.64947800199934
Iteration: 7, Func. Count: 60, Neg. LLF: 144.19214428185586
Iteration: 8, Func. Count: 68, Neg. LLF: 144.13433009219656
Iteration: 9, Func. Count: 76, Neg. LLF: 144.1205014112712
Iteration: 10, Func. Count: 84, Neg. LLF: 144.1149391337282
Iteration: 11, Func. Count: 92, Neg. LLF: 144.11208489021783
Iteration: 12, Func. Count: 100, Neg. LLF: 144.11137326548905
Iteration: 13, Func. Count: 108, Neg. LLF: 144.1110831092673
Iteration: 14, Func. Count: 116, Neg. LLF: 144.11099652170185
Iteration: 15, Func. Count: 124, Neg. LLF: 144.11098474279487
Iteration: 16, Func. Count: 132, Neg. LLF: 144.11098418410091
Optimization terminated successfully (Exit mode 0)
Current function value: 144.11098418410091
Iterations: 16
Function evaluations: 132
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 473.0951589812142
Iteration: 2, Func. Count: 21, Neg. LLF: 144.6994401204537
Iteration: 3, Func. Count: 30, Neg. LLF: 144.01527387951413
Iteration: 4, Func. Count: 39, Neg. LLF: 144.02024353882254
Iteration: 5, Func. Count: 49, Neg. LLF: 143.99037687218797
Iteration: 6, Func. Count: 59, Neg. LLF: 143.9899218521605
Iteration: 7, Func. Count: 67, Neg. LLF: 143.9899218521344
Optimization terminated successfully (Exit mode 0)
Current function value: 143.9899218521605
Iterations: 7
Function evaluations: 67
Gradient evaluations: 7
Iteration: 1, Func. Count: 11, Neg. LLF: 592.8897446381502
Iteration: 2, Func. Count: 23, Neg. LLF: 144.47707271159675
Iteration: 3, Func. Count: 33, Neg. LLF: 144.0869351261844
Iteration: 4, Func. Count: 43, Neg. LLF: 144.08816994452474
Iteration: 5, Func. Count: 54, Neg. LLF: 144.0596177523197
Iteration: 6, Func. Count: 64, Neg. LLF: 144.0428273907707
Iteration: 7, Func. Count: 74, Neg. LLF: 144.04015234247558
Iteration: 8, Func. Count: 84, Neg. LLF: 144.03977063722698
Iteration: 9, Func. Count: 94, Neg. LLF: 144.03969063157956
Iteration: 10, Func. Count: 104, Neg. LLF: 144.03923798251517
Iteration: 11, Func. Count: 114, Neg. LLF: 144.02474246031355
Iteration: 12, Func. Count: 124, Neg. LLF: 144.01491185270004
Iteration: 13, Func. Count: 134, Neg. LLF: 23466474.38832211
Iteration: 14, Func. Count: 148, Neg. LLF: 144.0128431001788
Iteration: 15, Func. Count: 158, Neg. LLF: 144.01279633336534
Iteration: 16, Func. Count: 168, Neg. LLF: 144.01279452507907
Iteration: 17, Func. Count: 177, Neg. LLF: 144.01279452706834
Optimization terminated successfully (Exit mode 0)
Current function value: 144.01279452507907
Iterations: 18
Function evaluations: 177
Gradient evaluations: 17
Iteration: 1, Func. Count: 12, Neg. LLF: 680.2966061723135
Iteration: 2, Func. Count: 25, Neg. LLF: 144.28367118561437
Iteration: 3, Func. Count: 36, Neg. LLF: 144.0684164131352
Iteration: 4, Func. Count: 47, Neg. LLF: 144.055012116566
Iteration: 5, Func. Count: 58, Neg. LLF: 144.0431599229594
Iteration: 6, Func. Count: 69, Neg. LLF: 144.03513834917356
Iteration: 7, Func. Count: 80, Neg. LLF: 144.03375744416806
Iteration: 8, Func. Count: 91, Neg. LLF: 144.03366726201054
Iteration: 9, Func. Count: 101, Neg. LLF: 144.03366726197996
Optimization terminated successfully (Exit mode 0)
Current function value: 144.03366726201054
Iterations: 9
Function evaluations: 101
Gradient evaluations: 9
Iteration: 1, Func. Count: 5, Neg. LLF: 147.33834297762732
Iteration: 2, Func. Count: 10, Neg. LLF: 151.0657379743226
Iteration: 3, Func. Count: 15, Neg. LLF: 144.59029139989423
Iteration: 4, Func. Count: 19, Neg. LLF: 144.3947596392207
Iteration: 5, Func. Count: 23, Neg. LLF: 144.35949293553855
Iteration: 6, Func. Count: 27, Neg. LLF: 144.3354103537321
Iteration: 7, Func. Count: 31, Neg. LLF: 144.33082050972658
Iteration: 8, Func. Count: 35, Neg. LLF: 144.33059680134147
Iteration: 9, Func. Count: 39, Neg. LLF: 144.3305926404399
Iteration: 10, Func. Count: 42, Neg. LLF: 144.33059264046204
Optimization terminated successfully (Exit mode 0)
Current function value: 144.3305926404399
Iterations: 10
Function evaluations: 42
Gradient evaluations: 10
Iteration: 1, Func. Count: 6, Neg. LLF: 147.13716995137975
Iteration: 2, Func. Count: 12, Neg. LLF: 150.6398131129069
Iteration: 3, Func. Count: 18, Neg. LLF: 144.8017050282853
Iteration: 4, Func. Count: 24, Neg. LLF: 144.6814271719828
Iteration: 5, Func. Count: 29, Neg. LLF: 144.61196584427267
Iteration: 6, Func. Count: 34, Neg. LLF: 144.55282082051082
Iteration: 7, Func. Count: 39, Neg. LLF: 144.36515168443975
Iteration: 8, Func. Count: 44, Neg. LLF: 144.33834835878315
Iteration: 9, Func. Count: 49, Neg. LLF: 144.3308887492757
Iteration: 10, Func. Count: 54, Neg. LLF: 144.3306032833917
Iteration: 11, Func. Count: 59, Neg. LLF: 144.33059336826673
Iteration: 12, Func. Count: 64, Neg. LLF: 144.3305925840922
Optimization terminated successfully (Exit mode 0)
Current function value: 144.3305925840922
Iterations: 12
Function evaluations: 64
Gradient evaluations: 12
Iteration: 1, Func. Count: 7, Neg. LLF: 147.8939994468629
Iteration: 2, Func. Count: 14, Neg. LLF: 146.0302439733152
Iteration: 3, Func. Count: 21, Neg. LLF: 144.7681353208809
Iteration: 4, Func. Count: 28, Neg. LLF: 144.54676255636528
Iteration: 5, Func. Count: 34, Neg. LLF: 144.54209193195211
Iteration: 6, Func. Count: 40, Neg. LLF: 144.53727525126934
Iteration: 7, Func. Count: 46, Neg. LLF: 144.53618816299007
Iteration: 8, Func. Count: 52, Neg. LLF: 144.52828207580302
Iteration: 9, Func. Count: 58, Neg. LLF: 144.45397385134456
Iteration: 10, Func. Count: 64, Neg. LLF: 144.3642432512738
Iteration: 11, Func. Count: 70, Neg. LLF: 144.35735289812058
Iteration: 12, Func. Count: 76, Neg. LLF: 144.34258704277175
Iteration: 13, Func. Count: 82, Neg. LLF: 144.33712380704753
Iteration: 14, Func. Count: 88, Neg. LLF: 144.33241963618497
Iteration: 15, Func. Count: 94, Neg. LLF: 144.33082591786413
Iteration: 16, Func. Count: 100, Neg. LLF: 144.33060667952697
Iteration: 17, Func. Count: 106, Neg. LLF: 144.3305929717622
Iteration: 18, Func. Count: 111, Neg. LLF: 144.3305929989143
Optimization terminated successfully (Exit mode 0)
Current function value: 144.3305929717622
Iterations: 18
Function evaluations: 111
Gradient evaluations: 18
Iteration: 1, Func. Count: 8, Neg. LLF: 642.0545239130386
Iteration: 2, Func. Count: 17, Neg. LLF: 144.46891820575422
Iteration: 3, Func. Count: 24, Neg. LLF: 144.05621897312457
Iteration: 4, Func. Count: 31, Neg. LLF: 144.0714886929897
Iteration: 5, Func. Count: 39, Neg. LLF: 144.04647407420669
Iteration: 6, Func. Count: 46, Neg. LLF: 144.0388492477563
Iteration: 7, Func. Count: 53, Neg. LLF: 144.03762276929206
Iteration: 8, Func. Count: 60, Neg. LLF: 144.03678877835074
Iteration: 9, Func. Count: 67, Neg. LLF: 144.008646544434
Iteration: 10, Func. Count: 74, Neg. LLF: 143.99208917848105
Iteration: 11, Func. Count: 81, Neg. LLF: 23465244.533880033
Iteration: 12, Func. Count: 92, Neg. LLF: 143.98996207697687
Iteration: 13, Func. Count: 99, Neg. LLF: 143.98995535323905
Iteration: 14, Func. Count: 106, Neg. LLF: 143.9899325372828
Iteration: 15, Func. Count: 113, Neg. LLF: 143.98992185144039
Iteration: 16, Func. Count: 119, Neg. LLF: 143.98992186280213
Optimization terminated successfully (Exit mode 0)
Current function value: 143.98992185144039
Iterations: 17
Function evaluations: 119
Gradient evaluations: 16
Iteration: 1, Func. Count: 9, Neg. LLF: 150.62388824859582
Iteration: 2, Func. Count: 18, Neg. LLF: 145.36401989302308
Iteration: 3, Func. Count: 27, Neg. LLF: 144.83934412660912
Iteration: 4, Func. Count: 36, Neg. LLF: 144.3860267543791
Iteration: 5, Func. Count: 44, Neg. LLF: 144.37838958211603
Iteration: 6, Func. Count: 52, Neg. LLF: 144.36445206016245
Iteration: 7, Func. Count: 60, Neg. LLF: 144.33643656899807
Iteration: 8, Func. Count: 68, Neg. LLF: 144.31510847045925
Iteration: 9, Func. Count: 76, Neg. LLF: 144.30566007093725
Iteration: 10, Func. Count: 84, Neg. LLF: 144.3018105080637
Iteration: 11, Func. Count: 92, Neg. LLF: 144.30140213055458
Iteration: 12, Func. Count: 100, Neg. LLF: 144.30133781524262
Iteration: 13, Func. Count: 108, Neg. LLF: 144.3013362438604
Iteration: 14, Func. Count: 115, Neg. LLF: 144.3013362438648
Optimization terminated successfully (Exit mode 0)
Current function value: 144.3013362438604
Iterations: 14
Function evaluations: 115
Gradient evaluations: 14
Iteration: 1, Func. Count: 6, Neg. LLF: 148.5536500792652
Iteration: 2, Func. Count: 12, Neg. LLF: 146.8573971324629
Iteration: 3, Func. Count: 18, Neg. LLF: 144.2235098898947
Iteration: 4, Func. Count: 23, Neg. LLF: 144.09244763457417
Iteration: 5, Func. Count: 28, Neg. LLF: 144.03157185431306
Iteration: 6, Func. Count: 33, Neg. LLF: 143.94900162321161
Iteration: 7, Func. Count: 38, Neg. LLF: 143.93519800702404
Iteration: 8, Func. Count: 43, Neg. LLF: 143.93395592216802
Iteration: 9, Func. Count: 48, Neg. LLF: 143.9339369602848
Iteration: 10, Func. Count: 52, Neg. LLF: 143.93393696029588
Optimization terminated successfully (Exit mode 0)
Current function value: 143.9339369602848
Iterations: 10
Function evaluations: 52
Gradient evaluations: 10
Iteration: 1, Func. Count: 7, Neg. LLF: 146.19534188630362
Iteration: 2, Func. Count: 14, Neg. LLF: 146.33235547474231
Iteration: 3, Func. Count: 21, Neg. LLF: 144.30795746809807
Iteration: 4, Func. Count: 27, Neg. LLF: 146.15742190113863
Iteration: 5, Func. Count: 34, Neg. LLF: 144.20945544034907
Iteration: 6, Func. Count: 40, Neg. LLF: 144.13162417944085
Iteration: 7, Func. Count: 46, Neg. LLF: 144.01031014006423
Iteration: 8, Func. Count: 52, Neg. LLF: 143.9394086060526
Iteration: 9, Func. Count: 58, Neg. LLF: 143.93416061773368
Iteration: 10, Func. Count: 64, Neg. LLF: 143.93393740010092
Iteration: 11, Func. Count: 70, Neg. LLF: 143.93393658077932
Optimization terminated successfully (Exit mode 0)
Current function value: 143.93393658077932
Iterations: 11
Function evaluations: 70
Gradient evaluations: 11
Iteration: 1, Func. Count: 8, Neg. LLF: 146.5818447904672
Iteration: 2, Func. Count: 16, Neg. LLF: 146.1796141454026
Iteration: 3, Func. Count: 24, Neg. LLF: 144.3346422788332
Iteration: 4, Func. Count: 31, Neg. LLF: 144.48410270291978
Iteration: 5, Func. Count: 39, Neg. LLF: 144.2973776181004
Iteration: 6, Func. Count: 47, Neg. LLF: 144.18265879482152
Iteration: 7, Func. Count: 54, Neg. LLF: 144.13286446729447
Iteration: 8, Func. Count: 61, Neg. LLF: 143.9685600319653
Iteration: 9, Func. Count: 68, Neg. LLF: 143.94026047247723
Iteration: 10, Func. Count: 75, Neg. LLF: 143.93474411897841
Iteration: 11, Func. Count: 82, Neg. LLF: 143.9340534118104
Iteration: 12, Func. Count: 89, Neg. LLF: 143.9339534145306
Iteration: 13, Func. Count: 96, Neg. LLF: 143.9339376988107
Iteration: 14, Func. Count: 103, Neg. LLF: 143.93393661837746
Iteration: 15, Func. Count: 109, Neg. LLF: 143.93393664333044
Optimization terminated successfully (Exit mode 0)
Current function value: 143.93393661837746
Iterations: 15
Function evaluations: 109
Gradient evaluations: 15
Iteration: 1, Func. Count: 9, Neg. LLF: 147.85938541327695
Iteration: 2, Func. Count: 18, Neg. LLF: 146.20287316678048
Iteration: 3, Func. Count: 27, Neg. LLF: 144.31324543474176
Iteration: 4, Func. Count: 35, Neg. LLF: 144.23527656791296
Iteration: 5, Func. Count: 43, Neg. LLF: 144.21964832891769
Iteration: 6, Func. Count: 52, Neg. LLF: 144.16643469730846
Iteration: 7, Func. Count: 60, Neg. LLF: 144.06305742737032
Iteration: 8, Func. Count: 68, Neg. LLF: 144.00475445008664
Iteration: 9, Func. Count: 76, Neg. LLF: 143.940083825144
Iteration: 10, Func. Count: 84, Neg. LLF: 143.93419390405995
Iteration: 11, Func. Count: 92, Neg. LLF: 143.93393917986882
Iteration: 12, Func. Count: 100, Neg. LLF: 143.93393677133025
Iteration: 13, Func. Count: 107, Neg. LLF: 143.9339368235354
Optimization terminated successfully (Exit mode 0)
Current function value: 143.93393677133025
Iterations: 13
Function evaluations: 107
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 150.62393143089844
Iteration: 2, Func. Count: 20, Neg. LLF: 146.4878554925533
Iteration: 3, Func. Count: 30, Neg. LLF: 144.38135575360153
Iteration: 4, Func. Count: 40, Neg. LLF: 144.05194725150835
Iteration: 5, Func. Count: 49, Neg. LLF: 144.04945628147703
Iteration: 6, Func. Count: 58, Neg. LLF: 144.04260200881936
Iteration: 7, Func. Count: 67, Neg. LLF: 144.02764041228752
Iteration: 8, Func. Count: 76, Neg. LLF: 143.9950892020005
Iteration: 9, Func. Count: 85, Neg. LLF: 143.9481167980175
Iteration: 10, Func. Count: 94, Neg. LLF: 143.93906433973356
Iteration: 11, Func. Count: 103, Neg. LLF: 143.93406501877547
Iteration: 12, Func. Count: 112, Neg. LLF: 143.93394904226744
Iteration: 13, Func. Count: 121, Neg. LLF: 143.93393795173162
Iteration: 14, Func. Count: 130, Neg. LLF: 143.93393669476032
Iteration: 15, Func. Count: 138, Neg. LLF: 143.93393670915682
Optimization terminated successfully (Exit mode 0)
Current function value: 143.93393669476032
Iterations: 15
Function evaluations: 138
Gradient evaluations: 15
Iteration: 1, Func. Count: 7, Neg. LLF: 152.09920892436656
Iteration: 2, Func. Count: 14, Neg. LLF: 145.95146073346768
Iteration: 3, Func. Count: 21, Neg. LLF: 144.23660295840648
Iteration: 4, Func. Count: 27, Neg. LLF: 144.1299448252884
Iteration: 5, Func. Count: 33, Neg. LLF: 144.05626800595854
Iteration: 6, Func. Count: 39, Neg. LLF: 144.01097187967048
Iteration: 7, Func. Count: 45, Neg. LLF: 143.94967476598222
Iteration: 8, Func. Count: 51, Neg. LLF: 143.9346332811722
Iteration: 9, Func. Count: 57, Neg. LLF: 143.93394527904533
Iteration: 10, Func. Count: 63, Neg. LLF: 143.9339366887939
Iteration: 11, Func. Count: 68, Neg. LLF: 143.933936747914
Optimization terminated successfully (Exit mode 0)
Current function value: 143.9339366887939
Iterations: 11
Function evaluations: 68
Gradient evaluations: 11
Iteration: 1, Func. Count: 8, Neg. LLF: 147.53029914021252
Iteration: 2, Func. Count: 16, Neg. LLF: 145.69354857210269
Iteration: 3, Func. Count: 24, Neg. LLF: 153.64127477822774
Iteration: 4, Func. Count: 32, Neg. LLF: 144.40967078197698
Iteration: 5, Func. Count: 40, Neg. LLF: 144.23956169543783
Iteration: 6, Func. Count: 47, Neg. LLF: 144.1158256182233
Iteration: 7, Func. Count: 54, Neg. LLF: 143.9961974937759
Iteration: 8, Func. Count: 61, Neg. LLF: 143.9411110692294
Iteration: 9, Func. Count: 68, Neg. LLF: 143.93467856090885
Iteration: 10, Func. Count: 75, Neg. LLF: 143.93394664492857
Iteration: 11, Func. Count: 82, Neg. LLF: 143.93393679152692
Iteration: 12, Func. Count: 88, Neg. LLF: 143.93393682907623
Optimization terminated successfully (Exit mode 0)
Current function value: 143.93393679152692
Iterations: 12
Function evaluations: 88
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 148.38080820530328
Iteration: 2, Func. Count: 19, Neg. LLF: 146.23730850389194
Iteration: 3, Func. Count: 28, Neg. LLF: 144.3978116114649
Iteration: 4, Func. Count: 37, Neg. LLF: 144.2644025196862
Iteration: 5, Func. Count: 45, Neg. LLF: 144.17625196684173
Iteration: 6, Func. Count: 53, Neg. LLF: 144.071600817445
Iteration: 7, Func. Count: 61, Neg. LLF: 143.9458091445538
Iteration: 8, Func. Count: 69, Neg. LLF: 143.9347233509556
Iteration: 9, Func. Count: 77, Neg. LLF: 143.93400758942806
Iteration: 10, Func. Count: 85, Neg. LLF: 143.93393775771182
Iteration: 11, Func. Count: 93, Neg. LLF: 143.9339367824875
Optimization terminated successfully (Exit mode 0)
Current function value: 143.9339367824875
Iterations: 11
Function evaluations: 93
Gradient evaluations: 11
Iteration: 1, Func. Count: 10, Neg. LLF: 148.4569811717329
Iteration: 2, Func. Count: 21, Neg. LLF: 146.2326441294989
Iteration: 3, Func. Count: 31, Neg. LLF: 144.37107499877246
Iteration: 4, Func. Count: 40, Neg. LLF: 144.22954163681192
Iteration: 5, Func. Count: 49, Neg. LLF: 144.221523020325
Iteration: 6, Func. Count: 59, Neg. LLF: 144.18240593570252
Iteration: 7, Func. Count: 68, Neg. LLF: 144.12563096873384
Iteration: 8, Func. Count: 77, Neg. LLF: 144.0118043383158
Iteration: 9, Func. Count: 86, Neg. LLF: 143.93772389576188
Iteration: 10, Func. Count: 95, Neg. LLF: 143.93409326083855
Iteration: 11, Func. Count: 104, Neg. LLF: 143.93394553295104
Iteration: 12, Func. Count: 113, Neg. LLF: 143.9339367740459
Iteration: 13, Func. Count: 121, Neg. LLF: 143.93393682623787
Optimization terminated successfully (Exit mode 0)
Current function value: 143.9339367740459
Iterations: 13
Function evaluations: 121
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 148.0864625331916
Iteration: 2, Func. Count: 23, Neg. LLF: 146.27062456001235
Iteration: 3, Func. Count: 34, Neg. LLF: 144.40517236433283
Iteration: 4, Func. Count: 45, Neg. LLF: 144.14178584699206
Iteration: 5, Func. Count: 55, Neg. LLF: 144.07439711424587
Iteration: 6, Func. Count: 65, Neg. LLF: 144.0634078695527
Iteration: 7, Func. Count: 75, Neg. LLF: 144.04225046540176
Iteration: 8, Func. Count: 85, Neg. LLF: 144.0382139455367
Iteration: 9, Func. Count: 95, Neg. LLF: 144.01490732641338
Iteration: 10, Func. Count: 105, Neg. LLF: 143.94684332844602
Iteration: 11, Func. Count: 115, Neg. LLF: 143.93559457340223
Iteration: 12, Func. Count: 125, Neg. LLF: 143.93407279885463
Iteration: 13, Func. Count: 135, Neg. LLF: 143.93393898747055
Iteration: 14, Func. Count: 145, Neg. LLF: 143.93393665949588
Iteration: 15, Func. Count: 154, Neg. LLF: 143.93393667393286
Optimization terminated successfully (Exit mode 0)
Current function value: 143.93393665949588
Iterations: 15
Function evaluations: 154
Gradient evaluations: 15
Iteration: 1, Func. Count: 8, Neg. LLF: 150.389426492413
Iteration: 2, Func. Count: 16, Neg. LLF: 145.8619564366281
Iteration: 3, Func. Count: 24, Neg. LLF: 144.32678032295036
Iteration: 4, Func. Count: 31, Neg. LLF: 144.46877498248773
Iteration: 5, Func. Count: 39, Neg. LLF: 144.3397951462861
Iteration: 6, Func. Count: 47, Neg. LLF: 144.04999511199776
Iteration: 7, Func. Count: 54, Neg. LLF: 144.00178060992886
Iteration: 8, Func. Count: 61, Neg. LLF: 143.958562243154
Iteration: 9, Func. Count: 68, Neg. LLF: 143.9362270381902
Iteration: 10, Func. Count: 75, Neg. LLF: 143.93404869910623
Iteration: 11, Func. Count: 82, Neg. LLF: 143.93393907162417
Iteration: 12, Func. Count: 89, Neg. LLF: 143.9339366019095
Iteration: 13, Func. Count: 95, Neg. LLF: 143.93393661875325
Optimization terminated successfully (Exit mode 0)
Current function value: 143.9339366019095
Iterations: 13
Function evaluations: 95
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 147.20249670810733
Iteration: 2, Func. Count: 19, Neg. LLF: 146.23259773562648
Iteration: 3, Func. Count: 28, Neg. LLF: 144.33404265668483
Iteration: 4, Func. Count: 36, Neg. LLF: 144.2730976295671
Iteration: 5, Func. Count: 44, Neg. LLF: 144.20975956312458
Iteration: 6, Func. Count: 52, Neg. LLF: 144.10189276078964
Iteration: 7, Func. Count: 60, Neg. LLF: 143.9869468377343
Iteration: 8, Func. Count: 68, Neg. LLF: 143.94129926264176
Iteration: 9, Func. Count: 76, Neg. LLF: 143.9351855590028
Iteration: 10, Func. Count: 84, Neg. LLF: 143.93398341136128
Iteration: 11, Func. Count: 92, Neg. LLF: 143.93393751687324
Iteration: 12, Func. Count: 100, Neg. LLF: 143.93393658654205
Optimization terminated successfully (Exit mode 0)
Current function value: 143.93393658654205
Iterations: 12
Function evaluations: 100
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 148.34342562315302
Iteration: 2, Func. Count: 21, Neg. LLF: 146.2355622387553
Iteration: 3, Func. Count: 31, Neg. LLF: 144.4042886376678
Iteration: 4, Func. Count: 41, Neg. LLF: 144.271942653984
Iteration: 5, Func. Count: 50, Neg. LLF: 144.1802369503547
Iteration: 6, Func. Count: 59, Neg. LLF: 144.09040165931162
Iteration: 7, Func. Count: 68, Neg. LLF: 143.9553618235123
Iteration: 8, Func. Count: 77, Neg. LLF: 143.9358653951732
Iteration: 9, Func. Count: 86, Neg. LLF: 143.93404094610415
Iteration: 10, Func. Count: 95, Neg. LLF: 143.93394253935935
Iteration: 11, Func. Count: 104, Neg. LLF: 143.93393694119993
Iteration: 12, Func. Count: 112, Neg. LLF: 143.933936966166
Optimization terminated successfully (Exit mode 0)
Current function value: 143.93393694119993
Iterations: 12
Function evaluations: 112
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 148.41523451702017
Iteration: 2, Func. Count: 23, Neg. LLF: 146.22995786885772
Iteration: 3, Func. Count: 34, Neg. LLF: 144.37680597142432
Iteration: 4, Func. Count: 44, Neg. LLF: 144.230203955732
Iteration: 5, Func. Count: 54, Neg. LLF: 144.22714288801396
Iteration: 6, Func. Count: 65, Neg. LLF: 144.18391821334967
Iteration: 7, Func. Count: 75, Neg. LLF: 144.13219785378232
Iteration: 8, Func. Count: 85, Neg. LLF: 144.0122500000576
Iteration: 9, Func. Count: 95, Neg. LLF: 143.93722240886237
Iteration: 10, Func. Count: 105, Neg. LLF: 143.93409352961726
Iteration: 11, Func. Count: 115, Neg. LLF: 143.93394537456345
Iteration: 12, Func. Count: 125, Neg. LLF: 143.93393677018003
Iteration: 13, Func. Count: 134, Neg. LLF: 143.9339368223714
Optimization terminated successfully (Exit mode 0)
Current function value: 143.93393677018003
Iterations: 13
Function evaluations: 134
Gradient evaluations: 13
Iteration: 1, Func. Count: 12, Neg. LLF: 148.0527766136955
Iteration: 2, Func. Count: 25, Neg. LLF: 146.2682319527796
Iteration: 3, Func. Count: 37, Neg. LLF: 144.41073387235784
Iteration: 4, Func. Count: 49, Neg. LLF: 144.15217393655243
Iteration: 5, Func. Count: 60, Neg. LLF: 144.0781070280871
Iteration: 6, Func. Count: 71, Neg. LLF: 144.06428222260104
Iteration: 7, Func. Count: 82, Neg. LLF: 144.04865308681534
Iteration: 8, Func. Count: 93, Neg. LLF: 144.04045148099263
Iteration: 9, Func. Count: 104, Neg. LLF: 144.03081752062397
Iteration: 10, Func. Count: 115, Neg. LLF: 143.98520147558793
Iteration: 11, Func. Count: 126, Neg. LLF: 143.94600973958444
Iteration: 12, Func. Count: 137, Neg. LLF: 143.9368191405375
Iteration: 13, Func. Count: 148, Neg. LLF: 143.93395960141004
Iteration: 14, Func. Count: 159, Neg. LLF: 143.933936840443
Iteration: 15, Func. Count: 169, Neg. LLF: 143.93393685483827
Optimization terminated successfully (Exit mode 0)
Current function value: 143.933936840443
Iterations: 15
Function evaluations: 169
Gradient evaluations: 15
Iteration: 1, Func. Count: 9, Neg. LLF: 150.47573698956117
Iteration: 2, Func. Count: 18, Neg. LLF: 145.86558297453962
Iteration: 3, Func. Count: 27, Neg. LLF: 144.38419471716213
Iteration: 4, Func. Count: 35, Neg. LLF: 144.5689350189866
Iteration: 5, Func. Count: 44, Neg. LLF: 144.5644180099617
Iteration: 6, Func. Count: 53, Neg. LLF: 144.05726893018053
Iteration: 7, Func. Count: 61, Neg. LLF: 144.03047927526933
Iteration: 8, Func. Count: 69, Neg. LLF: 143.97237784416242
Iteration: 9, Func. Count: 77, Neg. LLF: 143.94282266174062
Iteration: 10, Func. Count: 85, Neg. LLF: 143.93514613760115
Iteration: 11, Func. Count: 93, Neg. LLF: 143.93397088429975
Iteration: 12, Func. Count: 101, Neg. LLF: 143.93393724190312
Iteration: 13, Func. Count: 109, Neg. LLF: 143.93393658773113
Optimization terminated successfully (Exit mode 0)
Current function value: 143.93393658773113
Iterations: 13
Function evaluations: 109
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 148.86248008248626
Iteration: 2, Func. Count: 20, Neg. LLF: 146.14392123487468
Iteration: 3, Func. Count: 30, Neg. LLF: 155.87827766502858
Iteration: 4, Func. Count: 40, Neg. LLF: 144.4555372524291
Iteration: 5, Func. Count: 50, Neg. LLF: 144.25495576433977
Iteration: 6, Func. Count: 59, Neg. LLF: 144.110960392413
Iteration: 7, Func. Count: 68, Neg. LLF: 143.96877404436788
Iteration: 8, Func. Count: 77, Neg. LLF: 143.93993756186148
Iteration: 9, Func. Count: 86, Neg. LLF: 143.9341815519077
Iteration: 10, Func. Count: 95, Neg. LLF: 143.93396887640458
Iteration: 11, Func. Count: 104, Neg. LLF: 143.93393892769112
Iteration: 12, Func. Count: 113, Neg. LLF: 143.93393659307065
Iteration: 13, Func. Count: 121, Neg. LLF: 143.93393663059555
Optimization terminated successfully (Exit mode 0)
Current function value: 143.93393659307065
Iterations: 13
Function evaluations: 121
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 148.3393227815096
Iteration: 2, Func. Count: 23, Neg. LLF: 146.2336716314081
Iteration: 3, Func. Count: 34, Neg. LLF: 144.40863738580668
Iteration: 4, Func. Count: 45, Neg. LLF: 144.2770689834406
Iteration: 5, Func. Count: 55, Neg. LLF: 144.1821944674964
Iteration: 6, Func. Count: 65, Neg. LLF: 144.1022822379869
Iteration: 7, Func. Count: 75, Neg. LLF: 143.96221409244694
Iteration: 8, Func. Count: 85, Neg. LLF: 143.93775805172447
Iteration: 9, Func. Count: 95, Neg. LLF: 143.93408475306214
Iteration: 10, Func. Count: 105, Neg. LLF: 143.93395226066488
Iteration: 11, Func. Count: 115, Neg. LLF: 143.93393755779647
Iteration: 12, Func. Count: 125, Neg. LLF: 143.9339366975179
Optimization terminated successfully (Exit mode 0)
Current function value: 143.9339366975179
Iterations: 12
Function evaluations: 125
Gradient evaluations: 12
Iteration: 1, Func. Count: 12, Neg. LLF: 148.40913681330122
Iteration: 2, Func. Count: 25, Neg. LLF: 146.22784085937676
Iteration: 3, Func. Count: 37, Neg. LLF: 144.38034223275798
Iteration: 4, Func. Count: 48, Neg. LLF: 144.23056787388083
Iteration: 5, Func. Count: 59, Neg. LLF: 144.22965178678746
Iteration: 6, Func. Count: 71, Neg. LLF: 144.18501931738464
Iteration: 7, Func. Count: 82, Neg. LLF: 144.1358384891821
Iteration: 8, Func. Count: 93, Neg. LLF: 144.01073352884845
Iteration: 9, Func. Count: 104, Neg. LLF: 143.9366944000327
Iteration: 10, Func. Count: 115, Neg. LLF: 143.9341049731735
Iteration: 11, Func. Count: 126, Neg. LLF: 143.9339431361386
Iteration: 12, Func. Count: 137, Neg. LLF: 143.9339367417391
Iteration: 13, Func. Count: 147, Neg. LLF: 143.9339367939205
Optimization terminated successfully (Exit mode 0)
Current function value: 143.9339367417391
Iterations: 13
Function evaluations: 147
Gradient evaluations: 13
Iteration: 1, Func. Count: 13, Neg. LLF: 148.0528867041227
Iteration: 2, Func. Count: 27, Neg. LLF: 146.26625674121308
Iteration: 3, Func. Count: 40, Neg. LLF: 144.41321112083082
Iteration: 4, Func. Count: 53, Neg. LLF: 144.16165232171
Iteration: 5, Func. Count: 65, Neg. LLF: 144.08090372505282
Iteration: 6, Func. Count: 77, Neg. LLF: 144.06520000500194
Iteration: 7, Func. Count: 89, Neg. LLF: 144.0486336907302
Iteration: 8, Func. Count: 101, Neg. LLF: 144.0404084718012
Iteration: 9, Func. Count: 113, Neg. LLF: 144.0306008313156
Iteration: 10, Func. Count: 125, Neg. LLF: 143.98600818108983
Iteration: 11, Func. Count: 137, Neg. LLF: 143.9465060903307
Iteration: 12, Func. Count: 149, Neg. LLF: 143.93703335744146
Iteration: 13, Func. Count: 161, Neg. LLF: 143.93396070313588
Iteration: 14, Func. Count: 173, Neg. LLF: 143.93393670501683
Iteration: 15, Func. Count: 184, Neg. LLF: 143.9339367194186
Optimization terminated successfully (Exit mode 0)
Current function value: 143.93393670501683
Iterations: 15
Function evaluations: 184
Gradient evaluations: 15
Iteration: 1, Func. Count: 6, Neg. LLF: 147.23734466513497
Iteration: 2, Func. Count: 12, Neg. LLF: 150.814439676689
Iteration: 3, Func. Count: 18, Neg. LLF: 144.60498737767978
Iteration: 4, Func. Count: 23, Neg. LLF: 145.926827324138
Iteration: 5, Func. Count: 29, Neg. LLF: 144.38317081682354
Iteration: 6, Func. Count: 34, Neg. LLF: 144.34382777569968
Iteration: 7, Func. Count: 39, Neg. LLF: 144.33101354159868
Iteration: 8, Func. Count: 44, Neg. LLF: 144.33059776871303
Iteration: 9, Func. Count: 49, Neg. LLF: 144.33059281110218
Iteration: 10, Func. Count: 53, Neg. LLF: 144.33059287638625
Optimization terminated successfully (Exit mode 0)
Current function value: 144.33059281110218
Iterations: 10
Function evaluations: 53
Gradient evaluations: 10
Iteration: 1, Func. Count: 7, Neg. LLF: 387.2290465520664
Iteration: 2, Func. Count: 16, Neg. LLF: 144.87725089785422
Iteration: 3, Func. Count: 22, Neg. LLF: 144.62963234635714
Iteration: 4, Func. Count: 28, Neg. LLF: 144.37981008503448
Iteration: 5, Func. Count: 34, Neg. LLF: 145.4863220038566
Iteration: 6, Func. Count: 41, Neg. LLF: 144.01327351187126
Iteration: 7, Func. Count: 47, Neg. LLF: 144.01279540512257
Iteration: 8, Func. Count: 53, Neg. LLF: 144.01279452388232
Optimization terminated successfully (Exit mode 0)
Current function value: 144.01279452388232
Iterations: 8
Function evaluations: 53
Gradient evaluations: 8
Iteration: 1, Func. Count: 8, Neg. LLF: 517.3978414383608
Iteration: 2, Func. Count: 17, Neg. LLF: 144.68859717154288
Iteration: 3, Func. Count: 24, Neg. LLF: 144.0412269643264
Iteration: 4, Func. Count: 31, Neg. LLF: 144.0625386970199
Iteration: 5, Func. Count: 39, Neg. LLF: 144.00422678051652
Iteration: 6, Func. Count: 47, Neg. LLF: 143.99004055237336
Iteration: 7, Func. Count: 54, Neg. LLF: 143.9899809926715
Iteration: 8, Func. Count: 61, Neg. LLF: 143.9899218515976
Iteration: 9, Func. Count: 67, Neg. LLF: 143.98992185161526
Optimization terminated successfully (Exit mode 0)
Current function value: 143.9899218515976
Iterations: 9
Function evaluations: 67
Gradient evaluations: 9
Iteration: 1, Func. Count: 9, Neg. LLF: 637.4107078576874
Iteration: 2, Func. Count: 19, Neg. LLF: 144.46990709365392
Iteration: 3, Func. Count: 27, Neg. LLF: 144.0555763749933
Iteration: 4, Func. Count: 35, Neg. LLF: 144.05530307232885
Iteration: 5, Func. Count: 44, Neg. LLF: 144.04747323159776
Iteration: 6, Func. Count: 52, Neg. LLF: 144.04186156055886
Iteration: 7, Func. Count: 60, Neg. LLF: 144.0379491533956
Iteration: 8, Func. Count: 68, Neg. LLF: 144.0372780808893
Iteration: 9, Func. Count: 76, Neg. LLF: 144.03465563706783
Iteration: 10, Func. Count: 84, Neg. LLF: 144.00373800056906
Iteration: 11, Func. Count: 92, Neg. LLF: 23467159.082618468
Iteration: 12, Func. Count: 104, Neg. LLF: 143.99002084513236
Iteration: 13, Func. Count: 112, Neg. LLF: 143.98999445121007
Iteration: 14, Func. Count: 121, Neg. LLF: 143.9899218514704
Iteration: 15, Func. Count: 128, Neg. LLF: 143.98992186283667
Optimization terminated successfully (Exit mode 0)
Current function value: 143.9899218514704
Iterations: 16
Function evaluations: 128
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 719.4711701588677
Iteration: 2, Func. Count: 21, Neg. LLF: 144.27535775871982
Iteration: 3, Func. Count: 30, Neg. LLF: 144.05199590061906
Iteration: 4, Func. Count: 39, Neg. LLF: 144.0457218304457
Iteration: 5, Func. Count: 48, Neg. LLF: 144.04486448668067
Iteration: 6, Func. Count: 58, Neg. LLF: 144.03462212504098
Iteration: 7, Func. Count: 67, Neg. LLF: 144.03367617549117
Iteration: 8, Func. Count: 76, Neg. LLF: 144.03366728769856
Iteration: 9, Func. Count: 84, Neg. LLF: 144.03366728769586
Optimization terminated successfully (Exit mode 0)
Current function value: 144.03366728769856
Iterations: 9
Function evaluations: 84
Gradient evaluations: 9
Iteration: 1, Func. Count: 7, Neg. LLF: 147.56119701747843
Iteration: 2, Func. Count: 14, Neg. LLF: 152.08157199500218
Iteration: 3, Func. Count: 21, Neg. LLF: 144.2894049888077
Iteration: 4, Func. Count: 27, Neg. LLF: 144.15747038288686
Iteration: 5, Func. Count: 33, Neg. LLF: 144.05422385057278
Iteration: 6, Func. Count: 39, Neg. LLF: 143.963214623822
Iteration: 7, Func. Count: 45, Neg. LLF: 143.93966947112955
Iteration: 8, Func. Count: 51, Neg. LLF: 143.93410957829855
Iteration: 9, Func. Count: 57, Neg. LLF: 143.93393986633865
Iteration: 10, Func. Count: 63, Neg. LLF: 143.93393673132573
Iteration: 11, Func. Count: 68, Neg. LLF: 143.9339367313199
Optimization terminated successfully (Exit mode 0)
Current function value: 143.93393673132573
Iterations: 11
Function evaluations: 68
Gradient evaluations: 11
Iteration: 1, Func. Count: 8, Neg. LLF: 145.60019391556378
Iteration: 2, Func. Count: 17, Neg. LLF: 144.64026252103076
Iteration: 3, Func. Count: 24, Neg. LLF: 144.4278574874288
Iteration: 4, Func. Count: 31, Neg. LLF: 144.92064373665033
Iteration: 5, Func. Count: 39, Neg. LLF: 144.22592303981716
Iteration: 6, Func. Count: 46, Neg. LLF: 144.99567015618845
Iteration: 7, Func. Count: 54, Neg. LLF: 144.09674485260885
Iteration: 8, Func. Count: 61, Neg. LLF: 144.027766396493
Iteration: 9, Func. Count: 68, Neg. LLF: 143.98868036049524
Iteration: 10, Func. Count: 75, Neg. LLF: 143.9391297313275
Iteration: 11, Func. Count: 82, Neg. LLF: 143.9342471259253
Iteration: 12, Func. Count: 89, Neg. LLF: 143.93395472492006
Iteration: 13, Func. Count: 96, Neg. LLF: 143.93393749409285
Iteration: 14, Func. Count: 103, Neg. LLF: 143.9339365926251
Optimization terminated successfully (Exit mode 0)
Current function value: 143.9339365926251
Iterations: 14
Function evaluations: 103
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 145.4107723853889
Iteration: 2, Func. Count: 19, Neg. LLF: 144.46983740077448
Iteration: 3, Func. Count: 27, Neg. LLF: 145.89281614198896
Iteration: 4, Func. Count: 36, Neg. LLF: 144.7001750981876
Iteration: 5, Func. Count: 45, Neg. LLF: 144.1858653581531
Iteration: 6, Func. Count: 53, Neg. LLF: 144.15173612614518
Iteration: 7, Func. Count: 61, Neg. LLF: 144.01738799689844
Iteration: 8, Func. Count: 69, Neg. LLF: 143.96899637889976
Iteration: 9, Func. Count: 77, Neg. LLF: 143.93593196669968
Iteration: 10, Func. Count: 85, Neg. LLF: 143.93408845169256
Iteration: 11, Func. Count: 93, Neg. LLF: 143.93394266651612
Iteration: 12, Func. Count: 101, Neg. LLF: 143.93393750676717
Iteration: 13, Func. Count: 109, Neg. LLF: 143.93393659144698
Optimization terminated successfully (Exit mode 0)
Current function value: 143.93393659144698
Iterations: 13
Function evaluations: 109
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 145.4456807333542
Iteration: 2, Func. Count: 21, Neg. LLF: 144.4616913266096
Iteration: 3, Func. Count: 30, Neg. LLF: 146.7378264463885
Iteration: 4, Func. Count: 40, Neg. LLF: 144.6194049175284
Iteration: 5, Func. Count: 50, Neg. LLF: 144.19502199312976
Iteration: 6, Func. Count: 59, Neg. LLF: 144.166369827078
Iteration: 7, Func. Count: 68, Neg. LLF: 144.08886555176156
Iteration: 8, Func. Count: 77, Neg. LLF: 144.03454330077543
Iteration: 9, Func. Count: 86, Neg. LLF: 143.94173202946018
Iteration: 10, Func. Count: 95, Neg. LLF: 143.93493138210977
Iteration: 11, Func. Count: 104, Neg. LLF: 143.93400014832025
Iteration: 12, Func. Count: 113, Neg. LLF: 143.9339386776049
Iteration: 13, Func. Count: 122, Neg. LLF: 143.93393669321156
Iteration: 14, Func. Count: 130, Neg. LLF: 143.93393674539237
Optimization terminated successfully (Exit mode 0)
Current function value: 143.93393669321156
Iterations: 14
Function evaluations: 130
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 145.61117847202632
Iteration: 2, Func. Count: 23, Neg. LLF: 144.6033259446472
Iteration: 3, Func. Count: 34, Neg. LLF: 147.65121583141647
Iteration: 4, Func. Count: 45, Neg. LLF: 144.12394799524884
Iteration: 5, Func. Count: 55, Neg. LLF: 144.18607105176952
Iteration: 6, Func. Count: 66, Neg. LLF: 144.07718523503357
Iteration: 7, Func. Count: 77, Neg. LLF: 144.04585736990666
Iteration: 8, Func. Count: 87, Neg. LLF: 144.03540337578335
Iteration: 9, Func. Count: 97, Neg. LLF: 144.01058231756488
Iteration: 10, Func. Count: 107, Neg. LLF: 143.9579760261755
Iteration: 11, Func. Count: 117, Neg. LLF: 143.9446371471601
Iteration: 12, Func. Count: 127, Neg. LLF: 143.93544407087256
Iteration: 13, Func. Count: 137, Neg. LLF: 143.9340063352076
Iteration: 14, Func. Count: 147, Neg. LLF: 143.93394149274292
Iteration: 15, Func. Count: 157, Neg. LLF: 143.93393676355925
Iteration: 16, Func. Count: 166, Neg. LLF: 143.93393677804923
Optimization terminated successfully (Exit mode 0)
Current function value: 143.93393676355925
Iterations: 16
Function evaluations: 166
Gradient evaluations: 16
Iteration: 1, Func. Count: 8, Neg. LLF: 149.8830634580402
Iteration: 2, Func. Count: 16, Neg. LLF: 149.0084393156829
Iteration: 3, Func. Count: 24, Neg. LLF: 144.22002603201003
Iteration: 4, Func. Count: 31, Neg. LLF: 144.60676639761326
Iteration: 5, Func. Count: 39, Neg. LLF: 145.63199055510364
Iteration: 6, Func. Count: 47, Neg. LLF: 144.08534925246846
Iteration: 7, Func. Count: 54, Neg. LLF: 143.9706525504778
Iteration: 8, Func. Count: 61, Neg. LLF: 143.94070011565302
Iteration: 9, Func. Count: 68, Neg. LLF: 143.93400676833076
Iteration: 10, Func. Count: 75, Neg. LLF: 143.9339380483059
Iteration: 11, Func. Count: 82, Neg. LLF: 143.93393666907875
Iteration: 12, Func. Count: 88, Neg. LLF: 143.9339366099615
Optimization terminated successfully (Exit mode 0)
Current function value: 143.93393666907875
Iterations: 12
Function evaluations: 88
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 147.3396792937972
Iteration: 2, Func. Count: 19, Neg. LLF: 146.31823820729358
Iteration: 3, Func. Count: 28, Neg. LLF: 144.6215892773172
Iteration: 4, Func. Count: 36, Neg. LLF: 145.8454221596762
Iteration: 5, Func. Count: 46, Neg. LLF: 145.31911513786855
Iteration: 6, Func. Count: 55, Neg. LLF: 144.55537693584233
Iteration: 7, Func. Count: 64, Neg. LLF: 144.16549511855206
Iteration: 8, Func. Count: 72, Neg. LLF: 144.0749300387877
Iteration: 9, Func. Count: 80, Neg. LLF: 144.00157778552864
Iteration: 10, Func. Count: 88, Neg. LLF: 143.96517642162874
Iteration: 11, Func. Count: 96, Neg. LLF: 143.944910935792
Iteration: 12, Func. Count: 104, Neg. LLF: 143.9361195428946
Iteration: 13, Func. Count: 112, Neg. LLF: 143.93492711631797
Iteration: 14, Func. Count: 120, Neg. LLF: 143.93408045645532
Iteration: 15, Func. Count: 128, Neg. LLF: 143.9339720339162
Iteration: 16, Func. Count: 136, Neg. LLF: 143.93393975384066
Iteration: 17, Func. Count: 144, Neg. LLF: 143.93393688368704
Iteration: 18, Func. Count: 151, Neg. LLF: 143.93393692118934
Optimization terminated successfully (Exit mode 0)
Current function value: 143.93393688368704
Iterations: 18
Function evaluations: 151
Gradient evaluations: 18
Iteration: 1, Func. Count: 10, Neg. LLF: 458.1774599448039
Iteration: 2, Func. Count: 21, Neg. LLF: 1137.8907807029568
Iteration: 3, Func. Count: 32, Neg. LLF: 144.5639793184588
Iteration: 4, Func. Count: 41, Neg. LLF: 144.1878378439138
Iteration: 5, Func. Count: 50, Neg. LLF: 144.0776629763221
Iteration: 6, Func. Count: 59, Neg. LLF: 144.0170190352812
Iteration: 7, Func. Count: 68, Neg. LLF: 144.01236362981612
Iteration: 8, Func. Count: 77, Neg. LLF: 144.01224708824626
Iteration: 9, Func. Count: 87, Neg. LLF: 144.0088899646481
Iteration: 10, Func. Count: 96, Neg. LLF: 144.00702526894045
Iteration: 11, Func. Count: 105, Neg. LLF: 144.28230631448486
Iteration: 12, Func. Count: 115, Neg. LLF: 144.04640117627747
Iteration: 13, Func. Count: 125, Neg. LLF: 144.00582860903776
Iteration: 14, Func. Count: 135, Neg. LLF: 144.0039922816485
Iteration: 15, Func. Count: 144, Neg. LLF: 144.0039352003974
Iteration: 16, Func. Count: 153, Neg. LLF: 144.00392016218385
Iteration: 17, Func. Count: 162, Neg. LLF: 144.0039198781771
Optimization terminated successfully (Exit mode 0)
Current function value: 144.0039198781771
Iterations: 17
Function evaluations: 162
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 557.6540998645536
Iteration: 2, Func. Count: 23, Neg. LLF: 11281642.466032699
Iteration: 3, Func. Count: 35, Neg. LLF: 144.42003516059603
Iteration: 4, Func. Count: 45, Neg. LLF: 143.81199060063062
Iteration: 5, Func. Count: 55, Neg. LLF: 143.66908066878491
Iteration: 6, Func. Count: 65, Neg. LLF: 143.67535596643862
Iteration: 7, Func. Count: 76, Neg. LLF: 143.84691057325648
Iteration: 8, Func. Count: 87, Neg. LLF: 143.62269437752744
Iteration: 9, Func. Count: 97, Neg. LLF: 143.6223448189321
Iteration: 10, Func. Count: 107, Neg. LLF: 143.62233847303344
Iteration: 11, Func. Count: 116, Neg. LLF: 143.62233847280368
Optimization terminated successfully (Exit mode 0)
Current function value: 143.62233847303344
Iterations: 11
Function evaluations: 116
Gradient evaluations: 11
Iteration: 1, Func. Count: 12, Neg. LLF: 631.981600979916
Iteration: 2, Func. Count: 25, Neg. LLF: 11281666.106979964
Iteration: 3, Func. Count: 38, Neg. LLF: 144.1169649784854
Iteration: 4, Func. Count: 49, Neg. LLF: 143.9427902208744
Iteration: 5, Func. Count: 60, Neg. LLF: 143.99704968287426
Iteration: 6, Func. Count: 72, Neg. LLF: 143.7712913634624
Iteration: 7, Func. Count: 84, Neg. LLF: 143.69124384762773
Iteration: 8, Func. Count: 95, Neg. LLF: 143.68769529653454
Iteration: 9, Func. Count: 106, Neg. LLF: 143.6867687270109
Iteration: 10, Func. Count: 117, Neg. LLF: 143.686727745025
Iteration: 11, Func. Count: 128, Neg. LLF: 143.6867222669732
Iteration: 12, Func. Count: 138, Neg. LLF: 143.68672226687127
Optimization terminated successfully (Exit mode 0)
Current function value: 143.6867222669732
Iterations: 12
Function evaluations: 138
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 148.1076021870829
Iteration: 2, Func. Count: 18, Neg. LLF: 149.32159813839775
Iteration: 3, Func. Count: 27, Neg. LLF: 144.27686617616973
Iteration: 4, Func. Count: 35, Neg. LLF: 144.57239431463984
Iteration: 5, Func. Count: 44, Neg. LLF: 147.77392308884774
Iteration: 6, Func. Count: 53, Neg. LLF: 144.14166899675197
Iteration: 7, Func. Count: 61, Neg. LLF: 144.10547104736375
Iteration: 8, Func. Count: 69, Neg. LLF: 143.99955390010837
Iteration: 9, Func. Count: 77, Neg. LLF: 143.95305084570762
Iteration: 10, Func. Count: 85, Neg. LLF: 143.9380222113303
Iteration: 11, Func. Count: 93, Neg. LLF: 143.93453104157305
Iteration: 12, Func. Count: 101, Neg. LLF: 143.9339390206057
Iteration: 13, Func. Count: 109, Neg. LLF: 143.9339366228317
Iteration: 14, Func. Count: 116, Neg. LLF: 143.93393663968027
Optimization terminated successfully (Exit mode 0)
Current function value: 143.9339366228317
Iterations: 14
Function evaluations: 116
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 147.32546277534777
Iteration: 2, Func. Count: 21, Neg. LLF: 146.3316780787125
Iteration: 3, Func. Count: 31, Neg. LLF: 144.67853727811158
Iteration: 4, Func. Count: 40, Neg. LLF: 145.98446997600715
Iteration: 5, Func. Count: 51, Neg. LLF: 145.70431202510892
Iteration: 6, Func. Count: 61, Neg. LLF: 144.72660917896908
Iteration: 7, Func. Count: 71, Neg. LLF: 144.18052892235937
Iteration: 8, Func. Count: 80, Neg. LLF: 144.15827507227755
Iteration: 9, Func. Count: 89, Neg. LLF: 144.0030636717642
Iteration: 10, Func. Count: 98, Neg. LLF: 143.97830509967463
Iteration: 11, Func. Count: 107, Neg. LLF: 143.9500766640942
Iteration: 12, Func. Count: 116, Neg. LLF: 143.9359780204001
Iteration: 13, Func. Count: 125, Neg. LLF: 143.9348753447397
Iteration: 14, Func. Count: 134, Neg. LLF: 143.93394543615864
Iteration: 15, Func. Count: 143, Neg. LLF: 143.93393771712863
Iteration: 16, Func. Count: 152, Neg. LLF: 143.9339365853823
Iteration: 17, Func. Count: 160, Neg. LLF: 143.93393662291444
Optimization terminated successfully (Exit mode 0)
Current function value: 143.9339365853823
Iterations: 17
Function evaluations: 160
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 457.21899598129454
Iteration: 2, Func. Count: 23, Neg. LLF: 1109.4608754552728
Iteration: 3, Func. Count: 35, Neg. LLF: 144.56386403464592
Iteration: 4, Func. Count: 45, Neg. LLF: 144.17527482138237
Iteration: 5, Func. Count: 55, Neg. LLF: 144.0599743971197
Iteration: 6, Func. Count: 65, Neg. LLF: 144.0344695053721
Iteration: 7, Func. Count: 75, Neg. LLF: 144.0342527654233
Iteration: 8, Func. Count: 86, Neg. LLF: 144.01436761885606
Iteration: 9, Func. Count: 96, Neg. LLF: 144.00937890518583
Iteration: 10, Func. Count: 106, Neg. LLF: 144.00842110703448
Iteration: 11, Func. Count: 116, Neg. LLF: 144.0042308834858
Iteration: 12, Func. Count: 126, Neg. LLF: 144.0041773841403
Iteration: 13, Func. Count: 137, Neg. LLF: 144.00392632302095
Iteration: 14, Func. Count: 147, Neg. LLF: 144.00392147426052
Iteration: 15, Func. Count: 157, Neg. LLF: 144.0039204173316
Iteration: 16, Func. Count: 167, Neg. LLF: 146.95596960879828
Optimization terminated successfully (Exit mode 0)
Current function value: 144.00392040178193
Iterations: 17
Function evaluations: 171
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 556.3514172151714
Iteration: 2, Func. Count: 25, Neg. LLF: 11281492.427650167
Iteration: 3, Func. Count: 38, Neg. LLF: 144.41908421316822
Iteration: 4, Func. Count: 49, Neg. LLF: 143.81790898242895
Iteration: 5, Func. Count: 60, Neg. LLF: 143.66913269129742
Iteration: 6, Func. Count: 71, Neg. LLF: 143.70969253172413
Iteration: 7, Func. Count: 83, Neg. LLF: 143.6985194635138
Iteration: 8, Func. Count: 95, Neg. LLF: 143.622847663346
Iteration: 9, Func. Count: 106, Neg. LLF: 143.62245303781495
Iteration: 10, Func. Count: 117, Neg. LLF: 143.62234119703558
Iteration: 11, Func. Count: 128, Neg. LLF: 143.6223385197556
Iteration: 12, Func. Count: 138, Neg. LLF: 143.62233851940152
Optimization terminated successfully (Exit mode 0)
Current function value: 143.6223385197556
Iterations: 12
Function evaluations: 138
Gradient evaluations: 12
Iteration: 1, Func. Count: 13, Neg. LLF: 631.0529372293803
Iteration: 2, Func. Count: 27, Neg. LLF: 11281493.248890037
Iteration: 3, Func. Count: 41, Neg. LLF: 144.10919548734586
Iteration: 4, Func. Count: 53, Neg. LLF: 143.95283071647904
Iteration: 5, Func. Count: 65, Neg. LLF: 143.97007494788804
Iteration: 6, Func. Count: 78, Neg. LLF: 143.83087267353966
Iteration: 7, Func. Count: 91, Neg. LLF: 143.69321402592374
Iteration: 8, Func. Count: 103, Neg. LLF: 143.68819119376096
Iteration: 9, Func. Count: 115, Neg. LLF: 143.6868932330287
Iteration: 10, Func. Count: 127, Neg. LLF: 143.68675427841478
Iteration: 11, Func. Count: 139, Neg. LLF: 143.68672223357964
Iteration: 12, Func. Count: 150, Neg. LLF: 143.6867222334826
Optimization terminated successfully (Exit mode 0)
Current function value: 143.68672223357964
Iterations: 12
Function evaluations: 150
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 148.7707536022799
Iteration: 2, Func. Count: 20, Neg. LLF: 147.64068670585397
Iteration: 3, Func. Count: 30, Neg. LLF: 144.25196428089447
Iteration: 4, Func. Count: 39, Neg. LLF: 144.79728972317682
Iteration: 5, Func. Count: 49, Neg. LLF: 145.6034195157027
Iteration: 6, Func. Count: 59, Neg. LLF: 144.11490753920643
Iteration: 7, Func. Count: 68, Neg. LLF: 144.06516675623766
Iteration: 8, Func. Count: 77, Neg. LLF: 143.98179363669348
Iteration: 9, Func. Count: 86, Neg. LLF: 143.94752353365288
Iteration: 10, Func. Count: 95, Neg. LLF: 143.93594301269832
Iteration: 11, Func. Count: 104, Neg. LLF: 143.9340396150353
Iteration: 12, Func. Count: 113, Neg. LLF: 143.93393669577208
Iteration: 13, Func. Count: 121, Neg. LLF: 143.93393675255743
Optimization terminated successfully (Exit mode 0)
Current function value: 143.93393669577208
Iterations: 13
Function evaluations: 121
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 147.31987781562688
Iteration: 2, Func. Count: 23, Neg. LLF: 146.33381982787935
Iteration: 3, Func. Count: 34, Neg. LLF: 144.7110989186277
Iteration: 4, Func. Count: 44, Neg. LLF: 146.09263413761016
Iteration: 5, Func. Count: 56, Neg. LLF: 145.990735143743
Iteration: 6, Func. Count: 67, Neg. LLF: 144.67893540444982
Iteration: 7, Func. Count: 78, Neg. LLF: 144.18198813041045
Iteration: 8, Func. Count: 88, Neg. LLF: 144.1794952650242
Iteration: 9, Func. Count: 99, Neg. LLF: 144.0111145775266
Iteration: 10, Func. Count: 109, Neg. LLF: 143.97893897246004
Iteration: 11, Func. Count: 119, Neg. LLF: 143.95280373397222
Iteration: 12, Func. Count: 129, Neg. LLF: 143.9374430532563
Iteration: 13, Func. Count: 139, Neg. LLF: 143.93545430087428
Iteration: 14, Func. Count: 149, Neg. LLF: 143.934143650918
Iteration: 15, Func. Count: 159, Neg. LLF: 143.93396985178126
Iteration: 16, Func. Count: 169, Neg. LLF: 143.93394080974892
Iteration: 17, Func. Count: 179, Neg. LLF: 143.93393698509072
Iteration: 18, Func. Count: 188, Neg. LLF: 143.93393702258544
Optimization terminated successfully (Exit mode 0)
Current function value: 143.93393698509072
Iterations: 18
Function evaluations: 188
Gradient evaluations: 18
Iteration: 1, Func. Count: 12, Neg. LLF: 455.8448466127619
Iteration: 2, Func. Count: 25, Neg. LLF: 1035.159999441856
Iteration: 3, Func. Count: 38, Neg. LLF: 144.56421014706598
Iteration: 4, Func. Count: 49, Neg. LLF: 144.166330398958
Iteration: 5, Func. Count: 60, Neg. LLF: 144.04552298527057
Iteration: 6, Func. Count: 71, Neg. LLF: 144.04745797181516
Iteration: 7, Func. Count: 83, Neg. LLF: 144.0121543945381
Iteration: 8, Func. Count: 94, Neg. LLF: 144.00728249825724
Iteration: 9, Func. Count: 105, Neg. LLF: 144.00642610342567
Iteration: 10, Func. Count: 116, Neg. LLF: 144.00504999887906
Iteration: 11, Func. Count: 127, Neg. LLF: 144.0043683577227
Iteration: 12, Func. Count: 138, Neg. LLF: 144.0039908946062
Iteration: 13, Func. Count: 149, Neg. LLF: 144.00393619780067
Iteration: 14, Func. Count: 160, Neg. LLF: 144.0039285723132
Iteration: 15, Func. Count: 171, Neg. LLF: 144.00392277077808
Iteration: 16, Func. Count: 182, Neg. LLF: 144.00392256301288
Optimization terminated successfully (Exit mode 0)
Current function value: 144.00392256301288
Iterations: 16
Function evaluations: 182
Gradient evaluations: 16
Iteration: 1, Func. Count: 13, Neg. LLF: 554.6496170508885
Iteration: 2, Func. Count: 27, Neg. LLF: 11281519.891891321
Iteration: 3, Func. Count: 41, Neg. LLF: 144.41850278452378
Iteration: 4, Func. Count: 53, Neg. LLF: 143.75988594929382
Iteration: 5, Func. Count: 65, Neg. LLF: 143.67246924596049
Iteration: 6, Func. Count: 77, Neg. LLF: 143.69032793392103
Iteration: 7, Func. Count: 90, Neg. LLF: 143.68770285491732
Iteration: 8, Func. Count: 103, Neg. LLF: 143.62279192336072
Iteration: 9, Func. Count: 115, Neg. LLF: 143.62237626541545
Iteration: 10, Func. Count: 127, Neg. LLF: 143.6223419788269
Iteration: 11, Func. Count: 139, Neg. LLF: 143.62233837572958
Iteration: 12, Func. Count: 151, Neg. LLF: 143.689553853562
Optimization terminated successfully (Exit mode 0)
Current function value: 143.62233836708907
Iterations: 13
Function evaluations: 155
Gradient evaluations: 12
Iteration: 1, Func. Count: 14, Neg. LLF: 628.7488167030014
Iteration: 2, Func. Count: 29, Neg. LLF: 11281507.980453983
Iteration: 3, Func. Count: 44, Neg. LLF: 144.10953299177254
Iteration: 4, Func. Count: 57, Neg. LLF: 143.94964619981886
Iteration: 5, Func. Count: 70, Neg. LLF: 143.95465247880202
Iteration: 6, Func. Count: 84, Neg. LLF: 143.79654310754972
Iteration: 7, Func. Count: 98, Neg. LLF: 143.69294497189674
Iteration: 8, Func. Count: 111, Neg. LLF: 143.68805011182206
Iteration: 9, Func. Count: 124, Neg. LLF: 143.68689863898805
Iteration: 10, Func. Count: 137, Neg. LLF: 143.68675835967704
Iteration: 11, Func. Count: 150, Neg. LLF: 143.68672218205725
Iteration: 12, Func. Count: 162, Neg. LLF: 143.686722182034
Optimization terminated successfully (Exit mode 0)
Current function value: 143.68672218205725
Iterations: 12
Function evaluations: 162
Gradient evaluations: 12
Iteration: 1, Func. Count: 7, Neg. LLF: 145.79001391988191
Iteration: 2, Func. Count: 14, Neg. LLF: 144.61848297546223
Iteration: 3, Func. Count: 20, Neg. LLF: 144.5937479897516
Iteration: 4, Func. Count: 27, Neg. LLF: 144.3718674443756
Iteration: 5, Func. Count: 33, Neg. LLF: 144.34489293275334
Iteration: 6, Func. Count: 39, Neg. LLF: 144.33151787639915
Iteration: 7, Func. Count: 45, Neg. LLF: 144.3306146531134
Iteration: 8, Func. Count: 51, Neg. LLF: 144.33059284226098
Iteration: 9, Func. Count: 56, Neg. LLF: 144.3305929162525
Optimization terminated successfully (Exit mode 0)
Current function value: 144.33059284226098
Iterations: 9
Function evaluations: 56
Gradient evaluations: 9
Iteration: 1, Func. Count: 8, Neg. LLF: 389.31802120880354
Iteration: 2, Func. Count: 18, Neg. LLF: 144.8785894359824
Iteration: 3, Func. Count: 25, Neg. LLF: 144.42668082099948
Iteration: 4, Func. Count: 32, Neg. LLF: 146.0661314274333
Iteration: 5, Func. Count: 40, Neg. LLF: 144.06515873488252
Iteration: 6, Func. Count: 47, Neg. LLF: 144.01341154850383
Iteration: 7, Func. Count: 54, Neg. LLF: 144.01279718474996
Iteration: 8, Func. Count: 61, Neg. LLF: 144.01279452975012
Iteration: 9, Func. Count: 67, Neg. LLF: 144.0127945298582
Optimization terminated successfully (Exit mode 0)
Current function value: 144.01279452975012
Iterations: 9
Function evaluations: 67
Gradient evaluations: 9
Iteration: 1, Func. Count: 9, Neg. LLF: 521.1208092024228
Iteration: 2, Func. Count: 19, Neg. LLF: 144.68679619803336
Iteration: 3, Func. Count: 27, Neg. LLF: 144.03707579388418
Iteration: 4, Func. Count: 35, Neg. LLF: 144.0281200462143
Iteration: 5, Func. Count: 44, Neg. LLF: 144.01173461270844
Iteration: 6, Func. Count: 53, Neg. LLF: 143.98992250931
Iteration: 7, Func. Count: 61, Neg. LLF: 143.98992214796309
Optimization terminated successfully (Exit mode 0)
Current function value: 143.98992214796309
Iterations: 7
Function evaluations: 61
Gradient evaluations: 7
Iteration: 1, Func. Count: 10, Neg. LLF: 641.6857904925897
Iteration: 2, Func. Count: 21, Neg. LLF: 144.46639056697967
Iteration: 3, Func. Count: 30, Neg. LLF: 144.06818230674716
Iteration: 4, Func. Count: 39, Neg. LLF: 144.09929568597397
Iteration: 5, Func. Count: 49, Neg. LLF: 144.05177326980234
Iteration: 6, Func. Count: 58, Neg. LLF: 144.03965785418237
Iteration: 7, Func. Count: 67, Neg. LLF: 144.0379366374809
Iteration: 8, Func. Count: 76, Neg. LLF: 144.03710910614387
Iteration: 9, Func. Count: 85, Neg. LLF: 144.03121614182425
Iteration: 10, Func. Count: 94, Neg. LLF: 144.00071142815972
Iteration: 11, Func. Count: 103, Neg. LLF: 23466654.353244223
Iteration: 12, Func. Count: 115, Neg. LLF: 143.98998855423824
Iteration: 13, Func. Count: 124, Neg. LLF: 143.9902025446631
Iteration: 14, Func. Count: 134, Neg. LLF: 143.9899263729774
Iteration: 15, Func. Count: 143, Neg. LLF: 143.98992185246323
Iteration: 16, Func. Count: 151, Neg. LLF: 143.9899218638267
Optimization terminated successfully (Exit mode 0)
Current function value: 143.98992185246323
Iterations: 17
Function evaluations: 151
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 723.7757657253862
Iteration: 2, Func. Count: 23, Neg. LLF: 144.26947311368414
Iteration: 3, Func. Count: 33, Neg. LLF: 144.0559300656319
Iteration: 4, Func. Count: 43, Neg. LLF: 144.0576758461251
Iteration: 5, Func. Count: 54, Neg. LLF: 144.03852059853781
Iteration: 6, Func. Count: 64, Neg. LLF: 144.03059060285636
Iteration: 7, Func. Count: 74, Neg. LLF: 144.02828790513897
Iteration: 8, Func. Count: 84, Neg. LLF: 144.02824888466577
Iteration: 9, Func. Count: 95, Neg. LLF: 144.02723252531104
Iteration: 10, Func. Count: 105, Neg. LLF: 144.02719138966305
Iteration: 11, Func. Count: 114, Neg. LLF: 144.02719138972006
Optimization terminated successfully (Exit mode 0)
Current function value: 144.02719138966305
Iterations: 11
Function evaluations: 114
Gradient evaluations: 11
Iteration: 1, Func. Count: 8, Neg. LLF: 145.81251869354597
Iteration: 2, Func. Count: 16, Neg. LLF: 144.66563709100174
Iteration: 3, Func. Count: 23, Neg. LLF: 144.3668040295388
Iteration: 4, Func. Count: 30, Neg. LLF: 144.98203569414434
Iteration: 5, Func. Count: 38, Neg. LLF: 144.09807246265487
Iteration: 6, Func. Count: 45, Neg. LLF: 144.01415842936134
Iteration: 7, Func. Count: 52, Neg. LLF: 143.97499021127172
Iteration: 8, Func. Count: 59, Neg. LLF: 143.95199904881036
Iteration: 9, Func. Count: 66, Neg. LLF: 143.93479626573924
Iteration: 10, Func. Count: 73, Neg. LLF: 143.93395737720948
Iteration: 11, Func. Count: 80, Neg. LLF: 143.93393667596644
Iteration: 12, Func. Count: 86, Neg. LLF: 143.933936675969
Optimization terminated successfully (Exit mode 0)
Current function value: 143.93393667596644
Iterations: 12
Function evaluations: 86
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 145.6481948972904
Iteration: 2, Func. Count: 19, Neg. LLF: 144.72167165769585
Iteration: 3, Func. Count: 28, Neg. LLF: 144.62364237854942
Iteration: 4, Func. Count: 37, Neg. LLF: 144.31495120933485
Iteration: 5, Func. Count: 45, Neg. LLF: 145.16141489472705
Iteration: 6, Func. Count: 54, Neg. LLF: 144.2101612110539
Iteration: 7, Func. Count: 62, Neg. LLF: 144.09380869900224
Iteration: 8, Func. Count: 70, Neg. LLF: 144.00947571293122
Iteration: 9, Func. Count: 78, Neg. LLF: 143.9568392233258
Iteration: 10, Func. Count: 86, Neg. LLF: 143.93993712407055
Iteration: 11, Func. Count: 94, Neg. LLF: 143.93512914971194
Iteration: 12, Func. Count: 102, Neg. LLF: 143.9340853072762
Iteration: 13, Func. Count: 110, Neg. LLF: 143.93394784469712
Iteration: 14, Func. Count: 118, Neg. LLF: 143.93393682341798
Iteration: 15, Func. Count: 125, Neg. LLF: 143.93393686097087
Optimization terminated successfully (Exit mode 0)
Current function value: 143.93393682341798
Iterations: 15
Function evaluations: 125
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 145.43555858244036
Iteration: 2, Func. Count: 21, Neg. LLF: 144.50667771115437
Iteration: 3, Func. Count: 30, Neg. LLF: 145.3807325328661
Iteration: 4, Func. Count: 40, Neg. LLF: 144.68278683646744
Iteration: 5, Func. Count: 50, Neg. LLF: 144.2586191934567
Iteration: 6, Func. Count: 60, Neg. LLF: 144.1782506033231
Iteration: 7, Func. Count: 69, Neg. LLF: 144.0455964797074
Iteration: 8, Func. Count: 78, Neg. LLF: 143.9667929992032
Iteration: 9, Func. Count: 87, Neg. LLF: 143.93590882971512
Iteration: 10, Func. Count: 96, Neg. LLF: 143.93395399214918
Iteration: 11, Func. Count: 105, Neg. LLF: 143.93393737852318
Iteration: 12, Func. Count: 114, Neg. LLF: 143.93393662098578
Optimization terminated successfully (Exit mode 0)
Current function value: 143.93393662098578
Iterations: 12
Function evaluations: 114
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 145.46547200153017
Iteration: 2, Func. Count: 23, Neg. LLF: 144.49074694483073
Iteration: 3, Func. Count: 33, Neg. LLF: 146.57607214783488
Iteration: 4, Func. Count: 44, Neg. LLF: 144.62084866850702
Iteration: 5, Func. Count: 55, Neg. LLF: 144.21234623970372
Iteration: 6, Func. Count: 65, Neg. LLF: 144.17717985045152
Iteration: 7, Func. Count: 75, Neg. LLF: 144.12983525699963
Iteration: 8, Func. Count: 85, Neg. LLF: 144.0618853422327
Iteration: 9, Func. Count: 95, Neg. LLF: 143.99984980768866
Iteration: 10, Func. Count: 105, Neg. LLF: 143.95135293972857
Iteration: 11, Func. Count: 115, Neg. LLF: 143.93834612784477
Iteration: 12, Func. Count: 125, Neg. LLF: 143.9341497056067
Iteration: 13, Func. Count: 135, Neg. LLF: 143.93395118435726
Iteration: 14, Func. Count: 145, Neg. LLF: 143.93393701418955
Iteration: 15, Func. Count: 154, Neg. LLF: 143.9339370664345
Optimization terminated successfully (Exit mode 0)
Current function value: 143.93393701418955
Iterations: 15
Function evaluations: 154
Gradient evaluations: 15
Iteration: 1, Func. Count: 12, Neg. LLF: 145.62450236827587
Iteration: 2, Func. Count: 25, Neg. LLF: 144.62917614181694
Iteration: 3, Func. Count: 37, Neg. LLF: 147.73009335294893
Iteration: 4, Func. Count: 49, Neg. LLF: 144.13626348318363
Iteration: 5, Func. Count: 60, Neg. LLF: 144.25910074501684
Iteration: 6, Func. Count: 72, Neg. LLF: 144.08174976890237
Iteration: 7, Func. Count: 84, Neg. LLF: 144.04606409942693
Iteration: 8, Func. Count: 95, Neg. LLF: 144.0378068303001
Iteration: 9, Func. Count: 106, Neg. LLF: 144.01302771687432
Iteration: 10, Func. Count: 117, Neg. LLF: 143.96459110684046
Iteration: 11, Func. Count: 128, Neg. LLF: 143.94680512400802
Iteration: 12, Func. Count: 139, Neg. LLF: 143.9364030982889
Iteration: 13, Func. Count: 150, Neg. LLF: 143.93401985216698
Iteration: 14, Func. Count: 161, Neg. LLF: 143.9339432404625
Iteration: 15, Func. Count: 172, Neg. LLF: 143.93393677805363
Iteration: 16, Func. Count: 182, Neg. LLF: 143.93393679254402
Optimization terminated successfully (Exit mode 0)
Current function value: 143.93393677805363
Iterations: 16
Function evaluations: 182
Gradient evaluations: 16
Iteration: 1, Func. Count: 9, Neg. LLF: 146.41314669476708
Iteration: 2, Func. Count: 18, Neg. LLF: 146.7903560237149
Iteration: 3, Func. Count: 27, Neg. LLF: 144.4379095585791
Iteration: 4, Func. Count: 35, Neg. LLF: 144.38607547478722
Iteration: 5, Func. Count: 44, Neg. LLF: 147.3564500488727
Iteration: 6, Func. Count: 53, Neg. LLF: 144.12565584687468
Iteration: 7, Func. Count: 61, Neg. LLF: 143.99634536351232
Iteration: 8, Func. Count: 69, Neg. LLF: 143.969959943257
Iteration: 9, Func. Count: 77, Neg. LLF: 143.9390638778753
Iteration: 10, Func. Count: 85, Neg. LLF: 143.93401663430973
Iteration: 11, Func. Count: 93, Neg. LLF: 143.93393732356316
Iteration: 12, Func. Count: 101, Neg. LLF: 143.93393658087467
Optimization terminated successfully (Exit mode 0)
Current function value: 143.93393658087467
Iterations: 12
Function evaluations: 101
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 147.32126938306027
Iteration: 2, Func. Count: 21, Neg. LLF: 146.3306413480951
Iteration: 3, Func. Count: 31, Neg. LLF: 144.6565467802815
Iteration: 4, Func. Count: 40, Neg. LLF: 146.1146021069477
Iteration: 5, Func. Count: 51, Neg. LLF: 145.58575140013502
Iteration: 6, Func. Count: 61, Neg. LLF: 144.5292246604989
Iteration: 7, Func. Count: 71, Neg. LLF: 144.1709859973644
Iteration: 8, Func. Count: 80, Neg. LLF: 144.08054413581334
Iteration: 9, Func. Count: 89, Neg. LLF: 144.0041937999775
Iteration: 10, Func. Count: 98, Neg. LLF: 143.96718678836177
Iteration: 11, Func. Count: 107, Neg. LLF: 143.94483638454884
Iteration: 12, Func. Count: 116, Neg. LLF: 143.93653357909136
Iteration: 13, Func. Count: 125, Neg. LLF: 143.9350684918015
Iteration: 14, Func. Count: 134, Neg. LLF: 143.93414023359688
Iteration: 15, Func. Count: 143, Neg. LLF: 143.9339804696037
Iteration: 16, Func. Count: 152, Neg. LLF: 143.93394236472284
Iteration: 17, Func. Count: 161, Neg. LLF: 143.933937155005
Iteration: 18, Func. Count: 169, Neg. LLF: 143.9339371924985
Optimization terminated successfully (Exit mode 0)
Current function value: 143.933937155005
Iterations: 18
Function evaluations: 169
Gradient evaluations: 18
Iteration: 1, Func. Count: 11, Neg. LLF: 460.86581930959164
Iteration: 2, Func. Count: 23, Neg. LLF: 1345.7971954772415
Iteration: 3, Func. Count: 35, Neg. LLF: 144.56191533021624
Iteration: 4, Func. Count: 45, Neg. LLF: 144.1335219367364
Iteration: 5, Func. Count: 55, Neg. LLF: 144.0335482310283
Iteration: 6, Func. Count: 65, Neg. LLF: 144.04085213737727
Iteration: 7, Func. Count: 76, Neg. LLF: 144.00668608936
Iteration: 8, Func. Count: 86, Neg. LLF: 144.00521684388931
Iteration: 9, Func. Count: 96, Neg. LLF: 144.0044883517559
Iteration: 10, Func. Count: 106, Neg. LLF: 144.00414492341366
Iteration: 11, Func. Count: 116, Neg. LLF: 144.00393548597202
Iteration: 12, Func. Count: 126, Neg. LLF: 144.00392068016126
Iteration: 13, Func. Count: 136, Neg. LLF: 144.00391998554727
Optimization terminated successfully (Exit mode 0)
Current function value: 144.00391998554727
Iterations: 13
Function evaluations: 136
Gradient evaluations: 13
Iteration: 1, Func. Count: 12, Neg. LLF: 560.6278227351806
Iteration: 2, Func. Count: 25, Neg. LLF: 11281562.450363042
Iteration: 3, Func. Count: 38, Neg. LLF: 144.4192366519078
Iteration: 4, Func. Count: 49, Neg. LLF: 143.90570504817444
Iteration: 5, Func. Count: 60, Neg. LLF: 143.96181088726587
Iteration: 6, Func. Count: 72, Neg. LLF: 143.65597824633772
Iteration: 7, Func. Count: 83, Neg. LLF: 143.6488101477076
Iteration: 8, Func. Count: 95, Neg. LLF: 143.6433679519148
Iteration: 9, Func. Count: 107, Neg. LLF: 143.62631131553184
Iteration: 10, Func. Count: 119, Neg. LLF: 143.6223462143657
Iteration: 11, Func. Count: 130, Neg. LLF: 143.62233881866257
Iteration: 12, Func. Count: 140, Neg. LLF: 143.6223388186512
Optimization terminated successfully (Exit mode 0)
Current function value: 143.62233881866257
Iterations: 12
Function evaluations: 140
Gradient evaluations: 12
Iteration: 1, Func. Count: 13, Neg. LLF: 635.0338809503269
Iteration: 2, Func. Count: 27, Neg. LLF: 11281480.093861984
Iteration: 3, Func. Count: 41, Neg. LLF: 144.13061977632125
Iteration: 4, Func. Count: 53, Neg. LLF: 144.00272809934407
Iteration: 5, Func. Count: 65, Neg. LLF: 143.88647635436365
Iteration: 6, Func. Count: 78, Neg. LLF: 143.69823423320236
Iteration: 7, Func. Count: 90, Neg. LLF: 143.68935824909124
Iteration: 8, Func. Count: 102, Neg. LLF: 143.68697999056386
Iteration: 9, Func. Count: 114, Neg. LLF: 143.68673055777825
Iteration: 10, Func. Count: 126, Neg. LLF: 143.68672266391457
Iteration: 11, Func. Count: 137, Neg. LLF: 143.6867226637248
Optimization terminated successfully (Exit mode 0)
Current function value: 143.68672266391457
Iterations: 11
Function evaluations: 137
Gradient evaluations: 11
Iteration: 1, Func. Count: 10, Neg. LLF: 145.7749587005861
Iteration: 2, Func. Count: 20, Neg. LLF: 144.76342338713098
Iteration: 3, Func. Count: 30, Neg. LLF: 145.67708260256094
Iteration: 4, Func. Count: 40, Neg. LLF: 144.6347117681287
Iteration: 5, Func. Count: 50, Neg. LLF: 144.14102301918723
Iteration: 6, Func. Count: 59, Neg. LLF: 144.04484583064908
Iteration: 7, Func. Count: 68, Neg. LLF: 143.98110447338607
Iteration: 8, Func. Count: 77, Neg. LLF: 143.9603339812766
Iteration: 9, Func. Count: 86, Neg. LLF: 143.93855136184197
Iteration: 10, Func. Count: 95, Neg. LLF: 143.93419862829467
Iteration: 11, Func. Count: 104, Neg. LLF: 143.93394427729575
Iteration: 12, Func. Count: 113, Neg. LLF: 143.93393658893953
Iteration: 13, Func. Count: 121, Neg. LLF: 143.93393657210322
Optimization terminated successfully (Exit mode 0)
Current function value: 143.93393658893953
Iterations: 13
Function evaluations: 121
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 147.30806488936582
Iteration: 2, Func. Count: 23, Neg. LLF: 146.34528513397638
Iteration: 3, Func. Count: 34, Neg. LLF: 144.72039466610963
Iteration: 4, Func. Count: 44, Neg. LLF: 146.25521720483155
Iteration: 5, Func. Count: 56, Neg. LLF: 146.05983246688135
Iteration: 6, Func. Count: 67, Neg. LLF: 144.6435905955415
Iteration: 7, Func. Count: 78, Neg. LLF: 144.18353604732454
Iteration: 8, Func. Count: 88, Neg. LLF: 144.1786910905132
Iteration: 9, Func. Count: 99, Neg. LLF: 144.0132675935704
Iteration: 10, Func. Count: 109, Neg. LLF: 143.9797633596613
Iteration: 11, Func. Count: 119, Neg. LLF: 143.9543005417702
Iteration: 12, Func. Count: 129, Neg. LLF: 143.93778751864406
Iteration: 13, Func. Count: 139, Neg. LLF: 143.93564409070316
Iteration: 14, Func. Count: 149, Neg. LLF: 143.93409441289415
Iteration: 15, Func. Count: 159, Neg. LLF: 143.93396318498995
Iteration: 16, Func. Count: 169, Neg. LLF: 143.93394002156785
Iteration: 17, Func. Count: 179, Neg. LLF: 143.93393687620693
Iteration: 18, Func. Count: 188, Neg. LLF: 143.93393691371458
Optimization terminated successfully (Exit mode 0)
Current function value: 143.93393687620693
Iterations: 18
Function evaluations: 188
Gradient evaluations: 18
Iteration: 1, Func. Count: 12, Neg. LLF: 329.9868927420374
Iteration: 2, Func. Count: 25, Neg. LLF: 151.39394544144258
Iteration: 3, Func. Count: 38, Neg. LLF: 145.14307975442694
Iteration: 4, Func. Count: 50, Neg. LLF: 144.98227807764815
Iteration: 5, Func. Count: 62, Neg. LLF: 144.110160666803
Iteration: 6, Func. Count: 73, Neg. LLF: 144.02330778279978
Iteration: 7, Func. Count: 84, Neg. LLF: 145.54810418307423
Iteration: 8, Func. Count: 96, Neg. LLF: 144.1121017854293
Iteration: 9, Func. Count: 108, Neg. LLF: 143.90199064357992
Iteration: 10, Func. Count: 119, Neg. LLF: 143.90120339522636
Iteration: 11, Func. Count: 130, Neg. LLF: 143.900125404048
Iteration: 12, Func. Count: 141, Neg. LLF: 143.90002764903716
Iteration: 13, Func. Count: 152, Neg. LLF: 143.90002353295478
Iteration: 14, Func. Count: 162, Neg. LLF: 143.90002353302427
Optimization terminated successfully (Exit mode 0)
Current function value: 143.90002353295478
Iterations: 14
Function evaluations: 162
Gradient evaluations: 14
Iteration: 1, Func. Count: 13, Neg. LLF: 559.2891617703903
Iteration: 2, Func. Count: 27, Neg. LLF: 9790791.681258878
Iteration: 3, Func. Count: 41, Neg. LLF: 144.22803146194997
Iteration: 4, Func. Count: 53, Neg. LLF: 143.98446969914187
Iteration: 5, Func. Count: 65, Neg. LLF: 144.0107596578141
Iteration: 6, Func. Count: 78, Neg. LLF: 144.08077305312156
Iteration: 7, Func. Count: 91, Neg. LLF: 143.79886287950177
Iteration: 8, Func. Count: 104, Neg. LLF: 143.6815184471166
Iteration: 9, Func. Count: 117, Neg. LLF: 143.58365413321604
Iteration: 10, Func. Count: 129, Neg. LLF: 144.2727800272291
Iteration: 11, Func. Count: 142, Neg. LLF: 143.57349273395178
Iteration: 12, Func. Count: 154, Neg. LLF: 143.57328922362169
Iteration: 13, Func. Count: 165, Neg. LLF: 143.57328922356436
Optimization terminated successfully (Exit mode 0)
Current function value: 143.57328922362169
Iterations: 13
Function evaluations: 165
Gradient evaluations: 13
Iteration: 1, Func. Count: 14, Neg. LLF: 634.0592956174161
Iteration: 2, Func. Count: 29, Neg. LLF: 9781393.262050845
Iteration: 3, Func. Count: 44, Neg. LLF: 143.82798645237494
Iteration: 4, Func. Count: 57, Neg. LLF: 143.8327745707835
Iteration: 5, Func. Count: 71, Neg. LLF: 143.5933913310651
Iteration: 6, Func. Count: 84, Neg. LLF: 143.60797137966517
Iteration: 7, Func. Count: 98, Neg. LLF: 143.5895629115887
Iteration: 8, Func. Count: 112, Neg. LLF: 143.555382768085
Iteration: 9, Func. Count: 125, Neg. LLF: 143.55518018995653
Iteration: 10, Func. Count: 138, Neg. LLF: 143.55484717878736
Iteration: 11, Func. Count: 151, Neg. LLF: 143.55482628301607
Iteration: 12, Func. Count: 164, Neg. LLF: 143.55482561791092
Optimization terminated successfully (Exit mode 0)
Current function value: 143.55482561791092
Iterations: 12
Function evaluations: 164
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 145.68416375107128
Iteration: 2, Func. Count: 22, Neg. LLF: 144.91452612192802
Iteration: 3, Func. Count: 33, Neg. LLF: 144.9753781103731
Iteration: 4, Func. Count: 44, Neg. LLF: 144.56993238320172
Iteration: 5, Func. Count: 55, Neg. LLF: 144.12730197835333
Iteration: 6, Func. Count: 65, Neg. LLF: 144.04051524414794
Iteration: 7, Func. Count: 75, Neg. LLF: 143.97486516743487
Iteration: 8, Func. Count: 85, Neg. LLF: 143.9614616565161
Iteration: 9, Func. Count: 95, Neg. LLF: 143.93835968949406
Iteration: 10, Func. Count: 105, Neg. LLF: 143.9341569034423
Iteration: 11, Func. Count: 115, Neg. LLF: 143.93394249138612
Iteration: 12, Func. Count: 125, Neg. LLF: 143.93393665019897
Iteration: 13, Func. Count: 134, Neg. LLF: 143.9339367069872
Optimization terminated successfully (Exit mode 0)
Current function value: 143.93393665019897
Iterations: 13
Function evaluations: 134
Gradient evaluations: 13
Iteration: 1, Func. Count: 12, Neg. LLF: 147.30265300979738
Iteration: 2, Func. Count: 25, Neg. LLF: 146.34773270532548
Iteration: 3, Func. Count: 37, Neg. LLF: 144.75647689784796
Iteration: 4, Func. Count: 49, Neg. LLF: 144.69686946321758
Iteration: 5, Func. Count: 61, Neg. LLF: 144.29164278892276
Iteration: 6, Func. Count: 72, Neg. LLF: 144.49316213462646
Iteration: 7, Func. Count: 84, Neg. LLF: 144.09420201183357
Iteration: 8, Func. Count: 95, Neg. LLF: 144.0202740896357
Iteration: 9, Func. Count: 106, Neg. LLF: 143.98191890138068
Iteration: 10, Func. Count: 117, Neg. LLF: 143.93828926234428
Iteration: 11, Func. Count: 128, Neg. LLF: 143.9349177102009
Iteration: 12, Func. Count: 139, Neg. LLF: 143.93413491270093
Iteration: 13, Func. Count: 150, Neg. LLF: 143.93396326027565
Iteration: 14, Func. Count: 161, Neg. LLF: 143.93393734397281
Iteration: 15, Func. Count: 172, Neg. LLF: 143.93393658526904
Optimization terminated successfully (Exit mode 0)
Current function value: 143.93393658526904
Iterations: 15
Function evaluations: 172
Gradient evaluations: 15
Iteration: 1, Func. Count: 13, Neg. LLF: 328.98180171783247
Iteration: 2, Func. Count: 27, Neg. LLF: 149.69249176941258
Iteration: 3, Func. Count: 41, Neg. LLF: 145.14610653093948
Iteration: 4, Func. Count: 54, Neg. LLF: 145.0031233322453
Iteration: 5, Func. Count: 67, Neg. LLF: 144.24959780637988
Iteration: 6, Func. Count: 79, Neg. LLF: 144.01644625297013
Iteration: 7, Func. Count: 91, Neg. LLF: 146.56014081013242
Iteration: 8, Func. Count: 105, Neg. LLF: 144.31465649371793
Iteration: 9, Func. Count: 118, Neg. LLF: 143.90746536794492
Iteration: 10, Func. Count: 130, Neg. LLF: 143.90349593392557
Iteration: 11, Func. Count: 142, Neg. LLF: 143.9008030003819
Iteration: 12, Func. Count: 154, Neg. LLF: 143.90007524216045
Iteration: 13, Func. Count: 166, Neg. LLF: 143.90002523252258
Iteration: 14, Func. Count: 178, Neg. LLF: 143.90002354214562
Iteration: 15, Func. Count: 189, Neg. LLF: 143.900023542328
Optimization terminated successfully (Exit mode 0)
Current function value: 143.90002354214562
Iterations: 15
Function evaluations: 189
Gradient evaluations: 15
Iteration: 1, Func. Count: 14, Neg. LLF: 557.5854860109287
Iteration: 2, Func. Count: 29, Neg. LLF: 9793677.136359427
Iteration: 3, Func. Count: 44, Neg. LLF: 144.22669325562666
Iteration: 4, Func. Count: 57, Neg. LLF: 144.07265425871245
Iteration: 5, Func. Count: 70, Neg. LLF: 144.0590898771538
Iteration: 6, Func. Count: 84, Neg. LLF: 144.0439291777884
Iteration: 7, Func. Count: 98, Neg. LLF: 143.72478015532522
Iteration: 8, Func. Count: 112, Neg. LLF: 143.71860562757018
Iteration: 9, Func. Count: 126, Neg. LLF: 143.57837138419288
Iteration: 10, Func. Count: 139, Neg. LLF: 143.5745346573815
Iteration: 11, Func. Count: 152, Neg. LLF: 143.5735029799264
Iteration: 12, Func. Count: 165, Neg. LLF: 143.5732908029905
Iteration: 13, Func. Count: 178, Neg. LLF: 143.57328893351982
Iteration: 14, Func. Count: 190, Neg. LLF: 143.57328893371664
Optimization terminated successfully (Exit mode 0)
Current function value: 143.57328893351982
Iterations: 14
Function evaluations: 190
Gradient evaluations: 14
Iteration: 1, Func. Count: 15, Neg. LLF: 631.7616730858729
Iteration: 2, Func. Count: 31, Neg. LLF: 9783136.804708134
Iteration: 3, Func. Count: 47, Neg. LLF: 143.8259484010523
Iteration: 4, Func. Count: 61, Neg. LLF: 143.86027558267472
Iteration: 5, Func. Count: 76, Neg. LLF: 143.59515893134608
Iteration: 6, Func. Count: 90, Neg. LLF: 143.59053766371105
Iteration: 7, Func. Count: 105, Neg. LLF: 143.5921055723759
Iteration: 8, Func. Count: 120, Neg. LLF: 143.55542892055158
Iteration: 9, Func. Count: 134, Neg. LLF: 143.5550924845687
Iteration: 10, Func. Count: 148, Neg. LLF: 143.5548784374864
Iteration: 11, Func. Count: 162, Neg. LLF: 143.55482708268764
Iteration: 12, Func. Count: 176, Neg. LLF: 143.55482562190164
Iteration: 13, Func. Count: 189, Neg. LLF: 143.55482562200592
Optimization terminated successfully (Exit mode 0)
Current function value: 143.55482562190164
Iterations: 13
Function evaluations: 189
Gradient evaluations: 13
Iteration: 1, Func. Count: 8, Neg. LLF: 145.66967948462343
Iteration: 2, Func. Count: 15, Neg. LLF: 145.39794836811447
Iteration: 3, Func. Count: 22, Neg. LLF: 144.52694634951033
Iteration: 4, Func. Count: 29, Neg. LLF: 144.44686936759848
Iteration: 5, Func. Count: 36, Neg. LLF: 144.38338832806733
Iteration: 6, Func. Count: 43, Neg. LLF: 144.35628482901905
Iteration: 7, Func. Count: 50, Neg. LLF: 144.33868994763193
Iteration: 8, Func. Count: 57, Neg. LLF: 144.3307296813369
Iteration: 9, Func. Count: 64, Neg. LLF: 144.33059305259283
Iteration: 10, Func. Count: 70, Neg. LLF: 144.3305932068211
Optimization terminated successfully (Exit mode 0)
Current function value: 144.33059305259283
Iterations: 10
Function evaluations: 70
Gradient evaluations: 10
Iteration: 1, Func. Count: 9, Neg. LLF: 391.3394044361025
Iteration: 2, Func. Count: 20, Neg. LLF: 144.8791683306965
Iteration: 3, Func. Count: 28, Neg. LLF: 144.3835899284468
Iteration: 4, Func. Count: 36, Neg. LLF: 145.5872170103799
Iteration: 5, Func. Count: 45, Neg. LLF: 144.36462026086383
Iteration: 6, Func. Count: 54, Neg. LLF: 144.0128004048927
Iteration: 7, Func. Count: 62, Neg. LLF: 144.0127946548736
Iteration: 8, Func. Count: 69, Neg. LLF: 144.01279465452618
Optimization terminated successfully (Exit mode 0)
Current function value: 144.0127946548736
Iterations: 8
Function evaluations: 69
Gradient evaluations: 8
Iteration: 1, Func. Count: 10, Neg. LLF: 520.0932825075121
Iteration: 2, Func. Count: 21, Neg. LLF: 144.69009777498016
Iteration: 3, Func. Count: 30, Neg. LLF: 144.05533000611345
Iteration: 4, Func. Count: 39, Neg. LLF: 144.02066772031037
Iteration: 5, Func. Count: 48, Neg. LLF: 144.02198817397345
Iteration: 6, Func. Count: 58, Neg. LLF: 143.99017483518156
Iteration: 7, Func. Count: 67, Neg. LLF: 143.98992262331578
Iteration: 8, Func. Count: 76, Neg. LLF: 143.9899218516192
Optimization terminated successfully (Exit mode 0)
Current function value: 143.9899218516192
Iterations: 8
Function evaluations: 76
Gradient evaluations: 8
Iteration: 1, Func. Count: 11, Neg. LLF: 637.8578013283768
Iteration: 2, Func. Count: 23, Neg. LLF: 144.47043575094267
Iteration: 3, Func. Count: 33, Neg. LLF: 144.06971856521176
Iteration: 4, Func. Count: 43, Neg. LLF: 144.09682363268837
Iteration: 5, Func. Count: 54, Neg. LLF: 144.05241722677195
Iteration: 6, Func. Count: 64, Neg. LLF: 144.0414132381569
Iteration: 7, Func. Count: 74, Neg. LLF: 144.03873797534524
Iteration: 8, Func. Count: 84, Neg. LLF: 144.03741316209965
Iteration: 9, Func. Count: 94, Neg. LLF: 144.0365272102926
Iteration: 10, Func. Count: 104, Neg. LLF: 144.00629087278548
Iteration: 11, Func. Count: 114, Neg. LLF: 23470124.37499283
Iteration: 12, Func. Count: 128, Neg. LLF: 143.9908023639825
Iteration: 13, Func. Count: 138, Neg. LLF: 143.98999672293397
Iteration: 14, Func. Count: 148, Neg. LLF: 143.98992195698088
Iteration: 15, Func. Count: 157, Neg. LLF: 143.9899219682899
Optimization terminated successfully (Exit mode 0)
Current function value: 143.98992195698088
Iterations: 16
Function evaluations: 157
Gradient evaluations: 15
Iteration: 1, Func. Count: 12, Neg. LLF: 715.5847316214019
Iteration: 2, Func. Count: 25, Neg. LLF: 144.27745407606162
Iteration: 3, Func. Count: 36, Neg. LLF: 144.05321107801362
Iteration: 4, Func. Count: 47, Neg. LLF: 144.05564915106117
Iteration: 5, Func. Count: 59, Neg. LLF: 144.0398126064156
Iteration: 6, Func. Count: 70, Neg. LLF: 144.0288566825514
Iteration: 7, Func. Count: 81, Neg. LLF: 144.02785664945787
Iteration: 8, Func. Count: 92, Neg. LLF: 144.02741417060528
Iteration: 9, Func. Count: 103, Neg. LLF: 144.0273103891868
Iteration: 10, Func. Count: 114, Neg. LLF: 144.02719280987506
Iteration: 11, Func. Count: 125, Neg. LLF: 144.02719133157973
Iteration: 12, Func. Count: 135, Neg. LLF: 144.02719133161364
Optimization terminated successfully (Exit mode 0)
Current function value: 144.02719133157973
Iterations: 12
Function evaluations: 135
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 145.73482514739797
Iteration: 2, Func. Count: 18, Neg. LLF: 144.5520200753232
Iteration: 3, Func. Count: 26, Neg. LLF: 144.27000034827387
Iteration: 4, Func. Count: 34, Neg. LLF: 144.1353643957153
Iteration: 5, Func. Count: 42, Neg. LLF: 144.37530674637426
Iteration: 6, Func. Count: 51, Neg. LLF: 144.03639024104822
Iteration: 7, Func. Count: 60, Neg. LLF: 143.96361765873868
Iteration: 8, Func. Count: 68, Neg. LLF: 143.93497584992582
Iteration: 9, Func. Count: 76, Neg. LLF: 143.93396170545594
Iteration: 10, Func. Count: 84, Neg. LLF: 143.9339366696604
Iteration: 11, Func. Count: 91, Neg. LLF: 143.9339366696686
Optimization terminated successfully (Exit mode 0)
Current function value: 143.9339366696604
Iterations: 11
Function evaluations: 91
Gradient evaluations: 11
Iteration: 1, Func. Count: 10, Neg. LLF: 145.72168303052175
Iteration: 2, Func. Count: 21, Neg. LLF: 144.6863692195257
Iteration: 3, Func. Count: 30, Neg. LLF: 144.40189051479666
Iteration: 4, Func. Count: 39, Neg. LLF: 144.82932683047397
Iteration: 5, Func. Count: 49, Neg. LLF: 144.22002855825724
Iteration: 6, Func. Count: 58, Neg. LLF: 146.77307795378817
Iteration: 7, Func. Count: 68, Neg. LLF: 144.07530197446397
Iteration: 8, Func. Count: 77, Neg. LLF: 144.0179077000297
Iteration: 9, Func. Count: 86, Neg. LLF: 143.98100596800026
Iteration: 10, Func. Count: 95, Neg. LLF: 143.9355626615824
Iteration: 11, Func. Count: 104, Neg. LLF: 143.93399332645396
Iteration: 12, Func. Count: 113, Neg. LLF: 143.9339370673312
Iteration: 13, Func. Count: 121, Neg. LLF: 143.93393710489335
Optimization terminated successfully (Exit mode 0)
Current function value: 143.9339370673312
Iterations: 13
Function evaluations: 121
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 145.41837260555806
Iteration: 2, Func. Count: 23, Neg. LLF: 144.48345084339977
Iteration: 3, Func. Count: 33, Neg. LLF: 145.70794451117837
Iteration: 4, Func. Count: 44, Neg. LLF: 144.60602925779455
Iteration: 5, Func. Count: 55, Neg. LLF: 144.24405888209677
Iteration: 6, Func. Count: 66, Neg. LLF: 144.1773010436395
Iteration: 7, Func. Count: 76, Neg. LLF: 144.03037999950695
Iteration: 8, Func. Count: 86, Neg. LLF: 143.96120635391833
Iteration: 9, Func. Count: 96, Neg. LLF: 143.93532231232072
Iteration: 10, Func. Count: 106, Neg. LLF: 143.93398059958798
Iteration: 11, Func. Count: 116, Neg. LLF: 143.93394273376782
Iteration: 12, Func. Count: 126, Neg. LLF: 143.93393690230147
Iteration: 13, Func. Count: 135, Neg. LLF: 143.93393692731084
Optimization terminated successfully (Exit mode 0)
Current function value: 143.93393690230147
Iterations: 13
Function evaluations: 135
Gradient evaluations: 13
Iteration: 1, Func. Count: 12, Neg. LLF: 145.45109015250284
Iteration: 2, Func. Count: 25, Neg. LLF: 144.46853323917767
Iteration: 3, Func. Count: 36, Neg. LLF: 146.7577113847492
Iteration: 4, Func. Count: 48, Neg. LLF: 144.5994403687195
Iteration: 5, Func. Count: 60, Neg. LLF: 144.19181983506346
Iteration: 6, Func. Count: 71, Neg. LLF: 144.16531312772722
Iteration: 7, Func. Count: 82, Neg. LLF: 144.07654870903025
Iteration: 8, Func. Count: 93, Neg. LLF: 144.00740342163087
Iteration: 9, Func. Count: 104, Neg. LLF: 143.94368993785776
Iteration: 10, Func. Count: 115, Neg. LLF: 143.9342939090938
Iteration: 11, Func. Count: 126, Neg. LLF: 143.93398702888024
Iteration: 12, Func. Count: 137, Neg. LLF: 143.9339369033482
Iteration: 13, Func. Count: 147, Neg. LLF: 143.93393695547442
Optimization terminated successfully (Exit mode 0)
Current function value: 143.9339369033482
Iterations: 13
Function evaluations: 147
Gradient evaluations: 13
Iteration: 1, Func. Count: 13, Neg. LLF: 145.61865819544772
Iteration: 2, Func. Count: 27, Neg. LLF: 144.60793115085283
Iteration: 3, Func. Count: 40, Neg. LLF: 147.65075969890222
Iteration: 4, Func. Count: 53, Neg. LLF: 144.11784553160916
Iteration: 5, Func. Count: 65, Neg. LLF: 144.14807712409205
Iteration: 6, Func. Count: 78, Neg. LLF: 144.0834021751995
Iteration: 7, Func. Count: 91, Neg. LLF: 144.04574134228852
Iteration: 8, Func. Count: 103, Neg. LLF: 144.0330666649812
Iteration: 9, Func. Count: 115, Neg. LLF: 144.00869197118425
Iteration: 10, Func. Count: 127, Neg. LLF: 143.9508154809367
Iteration: 11, Func. Count: 139, Neg. LLF: 143.94112997869752
Iteration: 12, Func. Count: 151, Neg. LLF: 143.93444936600739
Iteration: 13, Func. Count: 163, Neg. LLF: 143.93397278136254
Iteration: 14, Func. Count: 175, Neg. LLF: 143.93393774569108
Iteration: 15, Func. Count: 187, Neg. LLF: 143.93393663713877
Iteration: 16, Func. Count: 198, Neg. LLF: 143.93393665161042
Optimization terminated successfully (Exit mode 0)
Current function value: 143.93393663713877
Iterations: 16
Function evaluations: 198
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 146.31301189089857
Iteration: 2, Func. Count: 20, Neg. LLF: 145.86938823414854
Iteration: 3, Func. Count: 30, Neg. LLF: 144.8070373726358
Iteration: 4, Func. Count: 40, Neg. LLF: 144.7048197409635
Iteration: 5, Func. Count: 50, Neg. LLF: 144.16806838676013
Iteration: 6, Func. Count: 59, Neg. LLF: 144.06815872412795
Iteration: 7, Func. Count: 68, Neg. LLF: 143.99570522568598
Iteration: 8, Func. Count: 77, Neg. LLF: 143.96909532485566
Iteration: 9, Func. Count: 86, Neg. LLF: 143.93728593059635
Iteration: 10, Func. Count: 95, Neg. LLF: 143.933971003863
Iteration: 11, Func. Count: 104, Neg. LLF: 143.9339367142297
Iteration: 12, Func. Count: 112, Neg. LLF: 143.93393665511087
Optimization terminated successfully (Exit mode 0)
Current function value: 143.9339367142297
Iterations: 12
Function evaluations: 112
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 147.30936522180167
Iteration: 2, Func. Count: 23, Neg. LLF: 146.344805910587
Iteration: 3, Func. Count: 34, Neg. LLF: 144.69866794886056
Iteration: 4, Func. Count: 44, Neg. LLF: 146.23147766242138
Iteration: 5, Func. Count: 56, Neg. LLF: 145.9294072412036
Iteration: 6, Func. Count: 67, Neg. LLF: 144.52972942916588
Iteration: 7, Func. Count: 78, Neg. LLF: 144.17592324903092
Iteration: 8, Func. Count: 88, Neg. LLF: 144.08579591411257
Iteration: 9, Func. Count: 98, Neg. LLF: 144.00518126303717
Iteration: 10, Func. Count: 108, Neg. LLF: 143.9681371604355
Iteration: 11, Func. Count: 118, Neg. LLF: 143.94499391968404
Iteration: 12, Func. Count: 128, Neg. LLF: 143.93671243383176
Iteration: 13, Func. Count: 138, Neg. LLF: 143.93511902245993
Iteration: 14, Func. Count: 148, Neg. LLF: 143.9341635743187
Iteration: 15, Func. Count: 158, Neg. LLF: 143.93398553911572
Iteration: 16, Func. Count: 168, Neg. LLF: 143.93394394859672
Iteration: 17, Func. Count: 178, Neg. LLF: 143.9339373428598
Iteration: 18, Func. Count: 188, Neg. LLF: 143.93393660634473
Optimization terminated successfully (Exit mode 0)
Current function value: 143.93393660634473
Iterations: 18
Function evaluations: 188
Gradient evaluations: 18
Iteration: 1, Func. Count: 12, Neg. LLF: 460.25602087006814
Iteration: 2, Func. Count: 25, Neg. LLF: 1325.1550749447656
Iteration: 3, Func. Count: 38, Neg. LLF: 144.56189558221627
Iteration: 4, Func. Count: 49, Neg. LLF: 144.14845754381903
Iteration: 5, Func. Count: 60, Neg. LLF: 144.03794689122688
Iteration: 6, Func. Count: 71, Neg. LLF: 144.0139991103315
Iteration: 7, Func. Count: 82, Neg. LLF: 144.01923700083162
Iteration: 8, Func. Count: 94, Neg. LLF: 144.01009523796344
Iteration: 9, Func. Count: 105, Neg. LLF: 144.00831602322458
Iteration: 10, Func. Count: 116, Neg. LLF: 144.00959066323176
Iteration: 11, Func. Count: 128, Neg. LLF: 144.0052933279269
Iteration: 12, Func. Count: 139, Neg. LLF: 144.0043737576546
Iteration: 13, Func. Count: 150, Neg. LLF: 144.0039450415433
Iteration: 14, Func. Count: 161, Neg. LLF: 144.00392090796257
Iteration: 15, Func. Count: 172, Neg. LLF: 144.03725918585846
Optimization terminated successfully (Exit mode 0)
Current function value: 144.00392078558613
Iterations: 16
Function evaluations: 175
Gradient evaluations: 15
Iteration: 1, Func. Count: 13, Neg. LLF: 557.999745876641
Iteration: 2, Func. Count: 27, Neg. LLF: 11281579.416623184
Iteration: 3, Func. Count: 41, Neg. LLF: 144.4189528448204
Iteration: 4, Func. Count: 53, Neg. LLF: 143.87331475774556
Iteration: 5, Func. Count: 65, Neg. LLF: 143.65118072963725
Iteration: 6, Func. Count: 77, Neg. LLF: 143.67503928831147
Iteration: 7, Func. Count: 90, Neg. LLF: 143.706752162107
Iteration: 8, Func. Count: 103, Neg. LLF: 143.62428894948192
Iteration: 9, Func. Count: 116, Neg. LLF: 143.62245247074952
Iteration: 10, Func. Count: 128, Neg. LLF: 143.62233866752916
Iteration: 11, Func. Count: 140, Neg. LLF: 153.18892839775714
Optimization terminated successfully (Exit mode 0)
Current function value: 143.62233834220572
Iterations: 12
Function evaluations: 144
Gradient evaluations: 11
Iteration: 1, Func. Count: 14, Neg. LLF: 629.0688118927834
Iteration: 2, Func. Count: 29, Neg. LLF: 11281480.398561902
Iteration: 3, Func. Count: 44, Neg. LLF: 144.1425096221613
Iteration: 4, Func. Count: 57, Neg. LLF: 143.99700015296997
Iteration: 5, Func. Count: 70, Neg. LLF: 143.90775718883287
Iteration: 6, Func. Count: 84, Neg. LLF: 143.6975465794677
Iteration: 7, Func. Count: 97, Neg. LLF: 143.68957114487083
Iteration: 8, Func. Count: 110, Neg. LLF: 143.68696277572846
Iteration: 9, Func. Count: 123, Neg. LLF: 143.68673416190995
Iteration: 10, Func. Count: 136, Neg. LLF: 143.6867225972392
Iteration: 11, Func. Count: 148, Neg. LLF: 143.68672259709103
Optimization terminated successfully (Exit mode 0)
Current function value: 143.6867225972392
Iterations: 11
Function evaluations: 148
Gradient evaluations: 11
Iteration: 1, Func. Count: 11, Neg. LLF: 145.7130187521744
Iteration: 2, Func. Count: 21, Neg. LLF: 147.12134876394828
Iteration: 3, Func. Count: 32, Neg. LLF: 144.4542056095146
Iteration: 4, Func. Count: 42, Neg. LLF: 144.68742296716653
Iteration: 5, Func. Count: 53, Neg. LLF: 144.17947919883966
Iteration: 6, Func. Count: 63, Neg. LLF: 144.19559605980746
Iteration: 7, Func. Count: 74, Neg. LLF: 144.2056006442307
Iteration: 8, Func. Count: 85, Neg. LLF: 144.0056940650672
Iteration: 9, Func. Count: 95, Neg. LLF: 143.97262305001428
Iteration: 10, Func. Count: 105, Neg. LLF: 143.9452626422936
Iteration: 11, Func. Count: 115, Neg. LLF: 143.9345786120023
Iteration: 12, Func. Count: 125, Neg. LLF: 143.9339635121922
Iteration: 13, Func. Count: 135, Neg. LLF: 143.93393699573892
Iteration: 14, Func. Count: 144, Neg. LLF: 143.93393701259262
Optimization terminated successfully (Exit mode 0)
Current function value: 143.93393699573892
Iterations: 14
Function evaluations: 144
Gradient evaluations: 14
Iteration: 1, Func. Count: 12, Neg. LLF: 147.29676129318196
Iteration: 2, Func. Count: 25, Neg. LLF: 146.36038844261282
Iteration: 3, Func. Count: 37, Neg. LLF: 144.76901389442546
Iteration: 4, Func. Count: 49, Neg. LLF: 144.69674814475127
Iteration: 5, Func. Count: 61, Neg. LLF: 144.29360106345803
Iteration: 6, Func. Count: 72, Neg. LLF: 144.49282148674538
Iteration: 7, Func. Count: 84, Neg. LLF: 144.09353501997313
Iteration: 8, Func. Count: 95, Neg. LLF: 144.0213070776857
Iteration: 9, Func. Count: 106, Neg. LLF: 143.9821615551309
Iteration: 10, Func. Count: 117, Neg. LLF: 143.9380447429083
Iteration: 11, Func. Count: 128, Neg. LLF: 143.93493893075572
Iteration: 12, Func. Count: 139, Neg. LLF: 143.93413025190412
Iteration: 13, Func. Count: 150, Neg. LLF: 143.93396254164873
Iteration: 14, Func. Count: 161, Neg. LLF: 143.93393727615688
Iteration: 15, Func. Count: 172, Neg. LLF: 143.93393658754178
Optimization terminated successfully (Exit mode 0)
Current function value: 143.93393658754178
Iterations: 15
Function evaluations: 172
Gradient evaluations: 15
Iteration: 1, Func. Count: 13, Neg. LLF: 329.3408505714463
Iteration: 2, Func. Count: 27, Neg. LLF: 149.131587113994
Iteration: 3, Func. Count: 41, Neg. LLF: 145.15217658881784
Iteration: 4, Func. Count: 54, Neg. LLF: 145.00652270793358
Iteration: 5, Func. Count: 67, Neg. LLF: 144.2922306265475
Iteration: 6, Func. Count: 79, Neg. LLF: 144.1209473688508
Iteration: 7, Func. Count: 91, Neg. LLF: 147.3509977429307
Iteration: 8, Func. Count: 105, Neg. LLF: 144.26921358266443
Iteration: 9, Func. Count: 118, Neg. LLF: 143.91622014110717
Iteration: 10, Func. Count: 130, Neg. LLF: 143.90816048050823
Iteration: 11, Func. Count: 142, Neg. LLF: 143.90351731928317
Iteration: 12, Func. Count: 154, Neg. LLF: 143.9009819895413
Iteration: 13, Func. Count: 166, Neg. LLF: 143.90007887435019
Iteration: 14, Func. Count: 178, Neg. LLF: 143.90002626258
Iteration: 15, Func. Count: 190, Neg. LLF: 143.90002362671865
Iteration: 16, Func. Count: 201, Neg. LLF: 143.90002362651884
Optimization terminated successfully (Exit mode 0)
Current function value: 143.90002362671865
Iterations: 16
Function evaluations: 201
Gradient evaluations: 16
Iteration: 1, Func. Count: 14, Neg. LLF: 556.6056047081955
Iteration: 2, Func. Count: 29, Neg. LLF: 9791903.597606549
Iteration: 3, Func. Count: 44, Neg. LLF: 144.2285397477316
Iteration: 4, Func. Count: 57, Neg. LLF: 143.9631039168116
Iteration: 5, Func. Count: 70, Neg. LLF: 143.98309181896954
Iteration: 6, Func. Count: 84, Neg. LLF: 144.08509671952876
Iteration: 7, Func. Count: 98, Neg. LLF: 143.81704423520546
Iteration: 8, Func. Count: 112, Neg. LLF: 143.78031125593506
Iteration: 9, Func. Count: 126, Neg. LLF: 143.60008511903067
Iteration: 10, Func. Count: 139, Neg. LLF: 143.57801538235262
Iteration: 11, Func. Count: 152, Neg. LLF: 143.57349375493723
Iteration: 12, Func. Count: 165, Neg. LLF: 143.57331876240733
Iteration: 13, Func. Count: 178, Neg. LLF: 143.5732892649945
Iteration: 14, Func. Count: 190, Neg. LLF: 143.5732892650508
Optimization terminated successfully (Exit mode 0)
Current function value: 143.5732892649945
Iterations: 14
Function evaluations: 190
Gradient evaluations: 14
Iteration: 1, Func. Count: 15, Neg. LLF: 628.0330383800092
Iteration: 2, Func. Count: 31, Neg. LLF: 9781038.393685365
Iteration: 3, Func. Count: 47, Neg. LLF: 143.83716830662394
Iteration: 4, Func. Count: 61, Neg. LLF: 143.67808802390908
Iteration: 5, Func. Count: 75, Neg. LLF: 143.67238715599848
Iteration: 6, Func. Count: 90, Neg. LLF: 143.8709905510758
Iteration: 7, Func. Count: 105, Neg. LLF: 143.5636910914241
Iteration: 8, Func. Count: 119, Neg. LLF: 143.55664899456224
Iteration: 9, Func. Count: 133, Neg. LLF: 143.55506165006577
Iteration: 10, Func. Count: 147, Neg. LLF: 143.55485437297313
Iteration: 11, Func. Count: 161, Neg. LLF: 143.55482864812555
Iteration: 12, Func. Count: 175, Neg. LLF: 143.55482565639133
Iteration: 13, Func. Count: 188, Neg. LLF: 143.55482565652514
Optimization terminated successfully (Exit mode 0)
Current function value: 143.55482565639133
Iterations: 13
Function evaluations: 188
Gradient evaluations: 13
Iteration: 1, Func. Count: 12, Neg. LLF: 145.52718058935147
Iteration: 2, Func. Count: 23, Neg. LLF: 146.16884429447782
Iteration: 3, Func. Count: 35, Neg. LLF: 144.48087353349757
Iteration: 4, Func. Count: 46, Neg. LLF: 144.35287291702718
Iteration: 5, Func. Count: 57, Neg. LLF: 150.39064195765695
Iteration: 6, Func. Count: 69, Neg. LLF: 144.0429385949027
Iteration: 7, Func. Count: 80, Neg. LLF: 144.01202463996316
Iteration: 8, Func. Count: 91, Neg. LLF: 143.98323050297472
Iteration: 9, Func. Count: 102, Neg. LLF: 143.96096652940892
Iteration: 10, Func. Count: 113, Neg. LLF: 143.9375215391535
Iteration: 11, Func. Count: 124, Neg. LLF: 143.93427213774817
Iteration: 12, Func. Count: 135, Neg. LLF: 143.9339515844693
Iteration: 13, Func. Count: 146, Neg. LLF: 143.93393698097924
Iteration: 14, Func. Count: 156, Neg. LLF: 143.9339369241763
Optimization terminated successfully (Exit mode 0)
Current function value: 143.93393698097924
Iterations: 14
Function evaluations: 156
Gradient evaluations: 14
Iteration: 1, Func. Count: 13, Neg. LLF: 146.8539342672358
Iteration: 2, Func. Count: 27, Neg. LLF: 146.34461404266392
Iteration: 3, Func. Count: 40, Neg. LLF: 147.23779860627513
Iteration: 4, Func. Count: 53, Neg. LLF: 144.3361930609509
Iteration: 5, Func. Count: 65, Neg. LLF: 144.39252702360716
Iteration: 6, Func. Count: 78, Neg. LLF: 144.2584207038954
Iteration: 7, Func. Count: 90, Neg. LLF: 144.05633940886744
Iteration: 8, Func. Count: 102, Neg. LLF: 143.978357623429
Iteration: 9, Func. Count: 114, Neg. LLF: 143.95603760892467
Iteration: 10, Func. Count: 126, Neg. LLF: 143.94207781537264
Iteration: 11, Func. Count: 138, Neg. LLF: 143.93554577993217
Iteration: 12, Func. Count: 150, Neg. LLF: 143.9342056368208
Iteration: 13, Func. Count: 162, Neg. LLF: 143.9339473216739
Iteration: 14, Func. Count: 174, Neg. LLF: 143.93393747649887
Iteration: 15, Func. Count: 185, Neg. LLF: 143.93393751404696
Optimization terminated successfully (Exit mode 0)
Current function value: 143.93393747649887
Iterations: 15
Function evaluations: 185
Gradient evaluations: 15
Iteration: 1, Func. Count: 14, Neg. LLF: 296.70481850483526
Iteration: 2, Func. Count: 29, Neg. LLF: 156.24563134558093
Iteration: 3, Func. Count: 44, Neg. LLF: 146.41184636241465
Iteration: 4, Func. Count: 58, Neg. LLF: 145.74031615027397
Iteration: 5, Func. Count: 72, Neg. LLF: 145.69139091621366
Iteration: 6, Func. Count: 86, Neg. LLF: 143.86956850488306
Iteration: 7, Func. Count: 99, Neg. LLF: 144.66895281884948
Iteration: 8, Func. Count: 113, Neg. LLF: 143.88734711494772
Iteration: 9, Func. Count: 127, Neg. LLF: 143.82776884692035
Iteration: 10, Func. Count: 141, Neg. LLF: 143.78543971306638
Iteration: 11, Func. Count: 154, Neg. LLF: 143.78445595231116
Iteration: 12, Func. Count: 167, Neg. LLF: 2230.42215196891
Iteration: 13, Func. Count: 184, Neg. LLF: 144.0854980943336
Optimization terminated successfully (Exit mode 0)
Current function value: 143.78444945046027
Iterations: 14
Function evaluations: 187
Gradient evaluations: 13
Iteration: 1, Func. Count: 15, Neg. LLF: 554.8682047764712
Iteration: 2, Func. Count: 31, Neg. LLF: 9794890.85671637
Iteration: 3, Func. Count: 47, Neg. LLF: 144.22727347463635
Iteration: 4, Func. Count: 61, Neg. LLF: 144.0361218965502
Iteration: 5, Func. Count: 75, Neg. LLF: 144.0485745189828
Iteration: 6, Func. Count: 90, Neg. LLF: 144.04029004140827
Iteration: 7, Func. Count: 105, Neg. LLF: 143.73724566068046
Iteration: 8, Func. Count: 120, Neg. LLF: 143.69227099358795
Iteration: 9, Func. Count: 135, Neg. LLF: 143.57799298246587
Iteration: 10, Func. Count: 149, Neg. LLF: 143.57659228607196
Iteration: 11, Func. Count: 164, Neg. LLF: 143.57349792424802
Iteration: 12, Func. Count: 178, Neg. LLF: 143.57328901389252
Iteration: 13, Func. Count: 191, Neg. LLF: 143.57328901375715
Optimization terminated successfully (Exit mode 0)
Current function value: 143.57328901389252
Iterations: 13
Function evaluations: 191
Gradient evaluations: 13
Iteration: 1, Func. Count: 16, Neg. LLF: 625.7264283590799
Iteration: 2, Func. Count: 33, Neg. LLF: 9782882.051232444
Iteration: 3, Func. Count: 50, Neg. LLF: 143.8350549892604
Iteration: 4, Func. Count: 65, Neg. LLF: 143.69166853064996
Iteration: 5, Func. Count: 80, Neg. LLF: 143.69905740623702
Iteration: 6, Func. Count: 96, Neg. LLF: 143.9722088386005
Iteration: 7, Func. Count: 112, Neg. LLF: 143.56465048870683
Iteration: 8, Func. Count: 127, Neg. LLF: 143.5573368544517
Iteration: 9, Func. Count: 142, Neg. LLF: 143.55518075813873
Iteration: 10, Func. Count: 157, Neg. LLF: 143.55487674265044
Iteration: 11, Func. Count: 172, Neg. LLF: 143.55483187192002
Iteration: 12, Func. Count: 187, Neg. LLF: 143.55482572003686
Iteration: 13, Func. Count: 201, Neg. LLF: 143.5548257202142
Optimization terminated successfully (Exit mode 0)
Current function value: 143.55482572003686
Iterations: 13
Function evaluations: 201
Gradient evaluations: 13
Iteration: 1, Func. Count: 5, Neg. LLF: 150.63573670475682
Iteration: 2, Func. Count: 10, Neg. LLF: 150.42159391551354
Iteration: 3, Func. Count: 15, Neg. LLF: 144.74604212296785
Iteration: 4, Func. Count: 19, Neg. LLF: 144.20379562123026
Iteration: 5, Func. Count: 23, Neg. LLF: 144.11452312120403
Iteration: 6, Func. Count: 27, Neg. LLF: 144.11250242293235
Iteration: 7, Func. Count: 31, Neg. LLF: 144.11128295934944
Iteration: 8, Func. Count: 35, Neg. LLF: 144.11102634612215
Iteration: 9, Func. Count: 39, Neg. LLF: 144.11098539110563
Iteration: 10, Func. Count: 43, Neg. LLF: 144.11098419054676
Iteration: 11, Func. Count: 46, Neg. LLF: 144.11098419054852
Optimization terminated successfully (Exit mode 0)
Current function value: 144.11098419054676
Iterations: 11
Function evaluations: 46
Gradient evaluations: 11
Iteration: 1, Func. Count: 5, Neg. LLF: 150.46591582228703
Iteration: 2, Func. Count: 10, Neg. LLF: 153.01090814576725
Iteration: 3, Func. Count: 15, Neg. LLF: 143.99424370575943
Iteration: 4, Func. Count: 19, Neg. LLF: 143.5307597990097
Iteration: 5, Func. Count: 23, Neg. LLF: 143.44588162320017
Iteration: 6, Func. Count: 27, Neg. LLF: 143.44309621182586
Iteration: 7, Func. Count: 31, Neg. LLF: 143.44306962732085
Iteration: 8, Func. Count: 35, Neg. LLF: 143.44306451754667
Iteration: 9, Func. Count: 39, Neg. LLF: 143.44306231762428
Iteration: 10, Func. Count: 43, Neg. LLF: 143.44306162625628
Optimization terminated successfully (Exit mode 0)
Current function value: 143.44306162625628
Iterations: 10
Function evaluations: 43
Gradient evaluations: 10
Iteration: 1, Func. Count: 6, Neg. LLF: 19254358.250310276
Iteration: 2, Func. Count: 13, Neg. LLF: 142.7011404439821
Iteration: 3, Func. Count: 18, Neg. LLF: 142.9270898567831
Iteration: 4, Func. Count: 25, Neg. LLF: 140.77316042536256
Iteration: 5, Func. Count: 30, Neg. LLF: 140.5903214637162
Iteration: 6, Func. Count: 35, Neg. LLF: 140.51521294531045
Iteration: 7, Func. Count: 40, Neg. LLF: 140.41402315248487
Iteration: 8, Func. Count: 45, Neg. LLF: 140.41239473222123
Iteration: 9, Func. Count: 50, Neg. LLF: 140.41237563682668
Iteration: 10, Func. Count: 54, Neg. LLF: 140.41237563673022
Optimization terminated successfully (Exit mode 0)
Current function value: 140.41237563682668
Iterations: 10
Function evaluations: 54
Gradient evaluations: 10
Iteration: 1, Func. Count: 7, Neg. LLF: 19266067.1952113
Iteration: 2, Func. Count: 15, Neg. LLF: 141.5725820420971
Iteration: 3, Func. Count: 21, Neg. LLF: 141.14558389475454
Iteration: 4, Func. Count: 27, Neg. LLF: 140.79418058856177
Iteration: 5, Func. Count: 33, Neg. LLF: 140.58437763637457
Iteration: 6, Func. Count: 39, Neg. LLF: 140.77881592333648
Iteration: 7, Func. Count: 46, Neg. LLF: 140.52642756976468
Iteration: 8, Func. Count: 52, Neg. LLF: 140.5143352852743
Iteration: 9, Func. Count: 58, Neg. LLF: 140.50031038753266
Iteration: 10, Func. Count: 64, Neg. LLF: 140.48350379328807
Iteration: 11, Func. Count: 70, Neg. LLF: 140.46497260017392
Iteration: 12, Func. Count: 76, Neg. LLF: 140.44910552559952
Iteration: 13, Func. Count: 82, Neg. LLF: 140.4124588461892
Iteration: 14, Func. Count: 88, Neg. LLF: 140.4132456097358
Iteration: 15, Func. Count: 94, Neg. LLF: 140.41237567265622
Optimization terminated successfully (Exit mode 0)
Current function value: 140.41237567053088
Iterations: 15
Function evaluations: 94
Gradient evaluations: 15
Iteration: 1, Func. Count: 8, Neg. LLF: 19486141.944850586
Iteration: 2, Func. Count: 17, Neg. LLF: 141.74743312493123
Iteration: 3, Func. Count: 24, Neg. LLF: 140.73601794699323
Iteration: 4, Func. Count: 31, Neg. LLF: 141.7355138917631
Iteration: 5, Func. Count: 40, Neg. LLF: 140.9800031870538
Iteration: 6, Func. Count: 48, Neg. LLF: 140.5226710992245
Iteration: 7, Func. Count: 55, Neg. LLF: 140.49979032842674
Iteration: 8, Func. Count: 62, Neg. LLF: 140.4971852531645
Iteration: 9, Func. Count: 69, Neg. LLF: 140.4965814372231
Iteration: 10, Func. Count: 76, Neg. LLF: 140.49481437501754
Iteration: 11, Func. Count: 83, Neg. LLF: 140.49428984145337
Iteration: 12, Func. Count: 90, Neg. LLF: 140.4942234427293
Iteration: 13, Func. Count: 97, Neg. LLF: 140.49421914450673
Iteration: 14, Func. Count: 103, Neg. LLF: 140.49421914452523
Optimization terminated successfully (Exit mode 0)
Current function value: 140.49421914450673
Iterations: 14
Function evaluations: 103
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 1014.8977911365855
Iteration: 2, Func. Count: 19, Neg. LLF: 144.6285880223853
Iteration: 3, Func. Count: 28, Neg. LLF: 141.39644160741676
Iteration: 4, Func. Count: 36, Neg. LLF: 141.45169097486786
Iteration: 5, Func. Count: 45, Neg. LLF: 140.646774564958
Iteration: 6, Func. Count: 53, Neg. LLF: 140.6803239795779
Iteration: 7, Func. Count: 62, Neg. LLF: 140.61725356334156
Iteration: 8, Func. Count: 71, Neg. LLF: 140.49383774103688
Iteration: 9, Func. Count: 79, Neg. LLF: 140.48984679936166
Iteration: 10, Func. Count: 87, Neg. LLF: 140.48617544171745
Iteration: 11, Func. Count: 95, Neg. LLF: 140.46959196175442
Iteration: 12, Func. Count: 103, Neg. LLF: 140.45625983496026
Iteration: 13, Func. Count: 111, Neg. LLF: 140.41237603562703
Iteration: 14, Func. Count: 119, Neg. LLF: 140.4123780613021
Optimization terminated successfully (Exit mode 0)
Current function value: 140.41237558978986
Iterations: 14
Function evaluations: 120
Gradient evaluations: 14
Iteration: 1, Func. Count: 6, Neg. LLF: 153.01074551026724
Iteration: 2, Func. Count: 12, Neg. LLF: 159.930591748893
Iteration: 3, Func. Count: 18, Neg. LLF: 144.04236331048733
Iteration: 4, Func. Count: 23, Neg. LLF: 143.56453594626103
Iteration: 5, Func. Count: 28, Neg. LLF: 143.45433052604156
Iteration: 6, Func. Count: 33, Neg. LLF: 143.4440043527675
Iteration: 7, Func. Count: 38, Neg. LLF: 143.44358926546548
Iteration: 8, Func. Count: 43, Neg. LLF: 143.44308924907926
Iteration: 9, Func. Count: 48, Neg. LLF: 143.44306376417535
Iteration: 10, Func. Count: 53, Neg. LLF: 143.44306159274768
Iteration: 11, Func. Count: 57, Neg. LLF: 143.44306166884198
Optimization terminated successfully (Exit mode 0)
Current function value: 143.44306159274768
Iterations: 11
Function evaluations: 57
Gradient evaluations: 11
Iteration: 1, Func. Count: 7, Neg. LLF: 19256808.534897204
Iteration: 2, Func. Count: 15, Neg. LLF: 142.6981382042363
Iteration: 3, Func. Count: 21, Neg. LLF: 142.940007026276
Iteration: 4, Func. Count: 29, Neg. LLF: 140.80460360252772
Iteration: 5, Func. Count: 35, Neg. LLF: 140.63321826751684
Iteration: 6, Func. Count: 41, Neg. LLF: 140.4644005803567
Iteration: 7, Func. Count: 47, Neg. LLF: 140.41369388703347
Iteration: 8, Func. Count: 53, Neg. LLF: 140.4123892706922
Iteration: 9, Func. Count: 59, Neg. LLF: 140.41237560252114
Iteration: 10, Func. Count: 64, Neg. LLF: 140.41237560229968
Optimization terminated successfully (Exit mode 0)
Current function value: 140.41237560252114
Iterations: 10
Function evaluations: 64
Gradient evaluations: 10
Iteration: 1, Func. Count: 8, Neg. LLF: 19266353.331141796
Iteration: 2, Func. Count: 17, Neg. LLF: 141.55947975950184
Iteration: 3, Func. Count: 24, Neg. LLF: 141.03770571454496
Iteration: 4, Func. Count: 31, Neg. LLF: 140.7039524870891
Iteration: 5, Func. Count: 38, Neg. LLF: 140.58716501463908
Iteration: 6, Func. Count: 45, Neg. LLF: 140.6212399532736
Iteration: 7, Func. Count: 53, Neg. LLF: 140.53527536379758
Iteration: 8, Func. Count: 60, Neg. LLF: 140.51873137096325
Iteration: 9, Func. Count: 67, Neg. LLF: 140.50967502826182
Iteration: 10, Func. Count: 74, Neg. LLF: 140.50095364752727
Iteration: 11, Func. Count: 81, Neg. LLF: 140.48334970206278
Iteration: 12, Func. Count: 88, Neg. LLF: 140.46444671850514
Iteration: 13, Func. Count: 95, Neg. LLF: 140.44843445103228
Iteration: 14, Func. Count: 102, Neg. LLF: 140.4124882876938
Iteration: 15, Func. Count: 109, Neg. LLF: 140.41243739369992
Iteration: 16, Func. Count: 116, Neg. LLF: 145.31660357580958
Optimization terminated successfully (Exit mode 0)
Current function value: 140.41243738362743
Iterations: 17
Function evaluations: 120
Gradient evaluations: 16
Iteration: 1, Func. Count: 9, Neg. LLF: 19267060.084559176
Iteration: 2, Func. Count: 19, Neg. LLF: 141.12446854140643
Iteration: 3, Func. Count: 27, Neg. LLF: 140.716774890158
Iteration: 4, Func. Count: 35, Neg. LLF: 144.49762742693466
Iteration: 5, Func. Count: 45, Neg. LLF: 140.60596631397635
Iteration: 6, Func. Count: 53, Neg. LLF: 140.52631816309488
Iteration: 7, Func. Count: 61, Neg. LLF: 140.50605263853654
Iteration: 8, Func. Count: 69, Neg. LLF: 140.50302729146415
Iteration: 9, Func. Count: 77, Neg. LLF: 140.49798864680272
Iteration: 10, Func. Count: 85, Neg. LLF: 140.49541740940643
Iteration: 11, Func. Count: 93, Neg. LLF: 140.49422631798052
Iteration: 12, Func. Count: 101, Neg. LLF: 140.4942191966923
Iteration: 13, Func. Count: 108, Neg. LLF: 140.49421919673117
Optimization terminated successfully (Exit mode 0)
Current function value: 140.4942191966923
Iterations: 13
Function evaluations: 108
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 19476940.795795865
Iteration: 2, Func. Count: 21, Neg. LLF: 141.54475187173426
Iteration: 3, Func. Count: 30, Neg. LLF: 140.83214308132497
Iteration: 4, Func. Count: 39, Neg. LLF: 148.0787323638813
Iteration: 5, Func. Count: 50, Neg. LLF: 140.84671886277073
Iteration: 6, Func. Count: 60, Neg. LLF: 140.75535096724104
Iteration: 7, Func. Count: 70, Neg. LLF: 140.6591006146639
Iteration: 8, Func. Count: 79, Neg. LLF: 140.6028794885688
Iteration: 9, Func. Count: 88, Neg. LLF: 140.51608237361702
Iteration: 10, Func. Count: 97, Neg. LLF: 140.4572869691891
Iteration: 11, Func. Count: 106, Neg. LLF: 140.45436949790275
Iteration: 12, Func. Count: 115, Neg. LLF: 140.4522126125457
Iteration: 13, Func. Count: 124, Neg. LLF: 140.45094717131718
Iteration: 14, Func. Count: 133, Neg. LLF: 140.44357930609783
Iteration: 15, Func. Count: 142, Neg. LLF: 140.42731422038486
Iteration: 16, Func. Count: 151, Neg. LLF: 140.42065556573976
Iteration: 17, Func. Count: 160, Neg. LLF: 140.41479177918674
Iteration: 18, Func. Count: 169, Neg. LLF: 140.41431887412523
Iteration: 19, Func. Count: 178, Neg. LLF: 145.3208717743385
Optimization terminated successfully (Exit mode 0)
Current function value: 140.41431886556865
Iterations: 19
Function evaluations: 183
Gradient evaluations: 19
Iteration: 1, Func. Count: 7, Neg. LLF: 149.549168699339
Iteration: 2, Func. Count: 14, Neg. LLF: 154.33482287934993
Iteration: 3, Func. Count: 21, Neg. LLF: 144.01016613096203
Iteration: 4, Func. Count: 27, Neg. LLF: 143.62442257456203
Iteration: 5, Func. Count: 33, Neg. LLF: 143.46127278331682
Iteration: 6, Func. Count: 39, Neg. LLF: 143.45165786641562
Iteration: 7, Func. Count: 45, Neg. LLF: 143.44681875480322
Iteration: 8, Func. Count: 51, Neg. LLF: 143.44319789676246
Iteration: 9, Func. Count: 57, Neg. LLF: 143.4430624951275
Iteration: 10, Func. Count: 63, Neg. LLF: 143.44306158325065
Optimization terminated successfully (Exit mode 0)
Current function value: 143.44306158325065
Iterations: 10
Function evaluations: 63
Gradient evaluations: 10
Iteration: 1, Func. Count: 8, Neg. LLF: 19260088.198725693
Iteration: 2, Func. Count: 17, Neg. LLF: 142.70368440253463
Iteration: 3, Func. Count: 24, Neg. LLF: 142.95188897506551
Iteration: 4, Func. Count: 33, Neg. LLF: 140.85644240066767
Iteration: 5, Func. Count: 40, Neg. LLF: 140.67411630345703
Iteration: 6, Func. Count: 47, Neg. LLF: 140.43371233683928
Iteration: 7, Func. Count: 54, Neg. LLF: 140.41308734331648
Iteration: 8, Func. Count: 61, Neg. LLF: 140.41238067055323
Iteration: 9, Func. Count: 68, Neg. LLF: 140.41237544723808
Iteration: 10, Func. Count: 74, Neg. LLF: 140.412375447039
Optimization terminated successfully (Exit mode 0)
Current function value: 140.41237544723808
Iterations: 10
Function evaluations: 74
Gradient evaluations: 10
Iteration: 1, Func. Count: 9, Neg. LLF: 19270153.382413562
Iteration: 2, Func. Count: 19, Neg. LLF: 141.59755370275482
Iteration: 3, Func. Count: 27, Neg. LLF: 141.11615492012575
Iteration: 4, Func. Count: 35, Neg. LLF: 140.7490281796757
Iteration: 5, Func. Count: 43, Neg. LLF: 140.57998242612038
Iteration: 6, Func. Count: 51, Neg. LLF: 140.6837072225482
Iteration: 7, Func. Count: 60, Neg. LLF: 140.5269991352911
Iteration: 8, Func. Count: 68, Neg. LLF: 140.51510523640127
Iteration: 9, Func. Count: 76, Neg. LLF: 140.5010286267874
Iteration: 10, Func. Count: 84, Neg. LLF: 140.48455991423262
Iteration: 11, Func. Count: 92, Neg. LLF: 140.46579016451537
Iteration: 12, Func. Count: 100, Neg. LLF: 140.45022815747808
Iteration: 13, Func. Count: 108, Neg. LLF: 140.41237722617038
Iteration: 14, Func. Count: 116, Neg. LLF: 140.41303101394442
Iteration: 15, Func. Count: 125, Neg. LLF: 140.41237538327144
Optimization terminated successfully (Exit mode 0)
Current function value: 140.41237538125893
Iterations: 15
Function evaluations: 125
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 19270707.770920776
Iteration: 2, Func. Count: 21, Neg. LLF: 141.16284198488586
Iteration: 3, Func. Count: 30, Neg. LLF: 140.71885661932052
Iteration: 4, Func. Count: 39, Neg. LLF: 143.90333177962188
Iteration: 5, Func. Count: 50, Neg. LLF: 140.62266704924582
Iteration: 6, Func. Count: 59, Neg. LLF: 140.52255956443503
Iteration: 7, Func. Count: 68, Neg. LLF: 140.50536937374721
Iteration: 8, Func. Count: 77, Neg. LLF: 140.502577439743
Iteration: 9, Func. Count: 86, Neg. LLF: 140.49772541304537
Iteration: 10, Func. Count: 95, Neg. LLF: 140.49523646457487
Iteration: 11, Func. Count: 104, Neg. LLF: 140.4942208904237
Iteration: 12, Func. Count: 113, Neg. LLF: 140.49421915119723
Iteration: 13, Func. Count: 121, Neg. LLF: 140.49421915124336
Optimization terminated successfully (Exit mode 0)
Current function value: 140.49421915119723
Iterations: 13
Function evaluations: 121
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 19532250.33785976
Iteration: 2, Func. Count: 23, Neg. LLF: 141.93085473482668
Iteration: 3, Func. Count: 33, Neg. LLF: 140.83402982260685
Iteration: 4, Func. Count: 43, Neg. LLF: 148.10367411684095
Iteration: 5, Func. Count: 55, Neg. LLF: 140.9186894692442
Iteration: 6, Func. Count: 66, Neg. LLF: 140.73967362209004
Iteration: 7, Func. Count: 76, Neg. LLF: 140.6642209210644
Iteration: 8, Func. Count: 86, Neg. LLF: 140.63155459572414
Iteration: 9, Func. Count: 96, Neg. LLF: 140.57115877050336
Iteration: 10, Func. Count: 106, Neg. LLF: 140.4577683581019
Iteration: 11, Func. Count: 116, Neg. LLF: 140.46030981464702
Iteration: 12, Func. Count: 127, Neg. LLF: 140.4539382118943
Iteration: 13, Func. Count: 137, Neg. LLF: 140.45084878583026
Iteration: 14, Func. Count: 147, Neg. LLF: 140.44306692552172
Iteration: 15, Func. Count: 157, Neg. LLF: 140.42441045438363
Iteration: 16, Func. Count: 167, Neg. LLF: 19276988.430754993
Iteration: 17, Func. Count: 181, Neg. LLF: 140.59429939774296
Iteration: 18, Func. Count: 192, Neg. LLF: 140.41237529837642
Iteration: 19, Func. Count: 201, Neg. LLF: 140.41237531192965
Optimization terminated successfully (Exit mode 0)
Current function value: 140.41237529837642
Iterations: 20
Function evaluations: 201
Gradient evaluations: 19
Iteration: 1, Func. Count: 8, Neg. LLF: 148.71596554151918
Iteration: 2, Func. Count: 16, Neg. LLF: 153.5153149668594
Iteration: 3, Func. Count: 24, Neg. LLF: 144.0009200308668
Iteration: 4, Func. Count: 31, Neg. LLF: 143.56415302890784
Iteration: 5, Func. Count: 38, Neg. LLF: 143.481793248583
Iteration: 6, Func. Count: 45, Neg. LLF: 143.45669647545765
Iteration: 7, Func. Count: 52, Neg. LLF: 143.45036870724968
Iteration: 8, Func. Count: 59, Neg. LLF: 143.44436750265018
Iteration: 9, Func. Count: 66, Neg. LLF: 143.4431061891708
Iteration: 10, Func. Count: 73, Neg. LLF: 143.44306167441698
Iteration: 11, Func. Count: 79, Neg. LLF: 143.443061735039
Optimization terminated successfully (Exit mode 0)
Current function value: 143.44306167441698
Iterations: 11
Function evaluations: 79
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 19260346.80474432
Iteration: 2, Func. Count: 19, Neg. LLF: 142.70972605869412
Iteration: 3, Func. Count: 27, Neg. LLF: 142.95667476146582
Iteration: 4, Func. Count: 37, Neg. LLF: 140.86063600973384
Iteration: 5, Func. Count: 45, Neg. LLF: 140.67604675557004
Iteration: 6, Func. Count: 53, Neg. LLF: 140.4337114045896
Iteration: 7, Func. Count: 61, Neg. LLF: 140.41308727581907
Iteration: 8, Func. Count: 69, Neg. LLF: 140.41238065196305
Iteration: 9, Func. Count: 77, Neg. LLF: 140.41237544839822
Iteration: 10, Func. Count: 84, Neg. LLF: 140.41237544819774
Optimization terminated successfully (Exit mode 0)
Current function value: 140.41237544839822
Iterations: 10
Function evaluations: 84
Gradient evaluations: 10
Iteration: 1, Func. Count: 10, Neg. LLF: 19270417.95097424
Iteration: 2, Func. Count: 21, Neg. LLF: 141.59161023054963
Iteration: 3, Func. Count: 30, Neg. LLF: 141.06552595057076
Iteration: 4, Func. Count: 39, Neg. LLF: 140.7070880721352
Iteration: 5, Func. Count: 48, Neg. LLF: 140.58574004557957
Iteration: 6, Func. Count: 57, Neg. LLF: 140.60381809420454
Iteration: 7, Func. Count: 67, Neg. LLF: 140.5378748039173
Iteration: 8, Func. Count: 76, Neg. LLF: 140.51831484374966
Iteration: 9, Func. Count: 85, Neg. LLF: 140.5100899241022
Iteration: 10, Func. Count: 94, Neg. LLF: 140.50159671577384
Iteration: 11, Func. Count: 103, Neg. LLF: 140.48520299253371
Iteration: 12, Func. Count: 112, Neg. LLF: 140.46581671890127
Iteration: 13, Func. Count: 121, Neg. LLF: 140.4500783359227
Iteration: 14, Func. Count: 130, Neg. LLF: 140.41257396617567
Iteration: 15, Func. Count: 139, Neg. LLF: 13761549.534846198
Iteration: 16, Func. Count: 153, Neg. LLF: 140.4148052929699
Iteration: 17, Func. Count: 162, Neg. LLF: 140.4123753063506
Optimization terminated successfully (Exit mode 0)
Current function value: 140.4123753043296
Iterations: 18
Function evaluations: 162
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 19271117.07196663
Iteration: 2, Func. Count: 23, Neg. LLF: 141.16629240095165
Iteration: 3, Func. Count: 33, Neg. LLF: 140.72155216730098
Iteration: 4, Func. Count: 43, Neg. LLF: 143.66687330375316
Iteration: 5, Func. Count: 55, Neg. LLF: 140.62882607900085
Iteration: 6, Func. Count: 65, Neg. LLF: 140.52118755236734
Iteration: 7, Func. Count: 75, Neg. LLF: 140.5050093084812
Iteration: 8, Func. Count: 85, Neg. LLF: 140.50235868126538
Iteration: 9, Func. Count: 95, Neg. LLF: 140.49758293876886
Iteration: 10, Func. Count: 105, Neg. LLF: 140.49514194417722
Iteration: 11, Func. Count: 115, Neg. LLF: 140.49421975410382
Iteration: 12, Func. Count: 125, Neg. LLF: 140.4942191463508
Optimization terminated successfully (Exit mode 0)
Current function value: 140.4942191463508
Iterations: 12
Function evaluations: 125
Gradient evaluations: 12
Iteration: 1, Func. Count: 12, Neg. LLF: 19267668.438481588
Iteration: 2, Func. Count: 24, Neg. LLF: 159.07246544534263
Iteration: 3, Func. Count: 36, Neg. LLF: 142.16967498283987
Iteration: 4, Func. Count: 47, Neg. LLF: 141.04708972413408
Iteration: 5, Func. Count: 58, Neg. LLF: 143.1536925902677
Iteration: 6, Func. Count: 70, Neg. LLF: 140.8311803229933
Iteration: 7, Func. Count: 81, Neg. LLF: 140.65525761462646
Iteration: 8, Func. Count: 92, Neg. LLF: 140.6270116979888
Iteration: 9, Func. Count: 103, Neg. LLF: 140.58682339237444
Iteration: 10, Func. Count: 114, Neg. LLF: 140.5173675361833
Iteration: 11, Func. Count: 125, Neg. LLF: 140.42525567746102
Iteration: 12, Func. Count: 136, Neg. LLF: 140.41359803426602
Iteration: 13, Func. Count: 147, Neg. LLF: 140.41238307283416
Iteration: 14, Func. Count: 158, Neg. LLF: 9189.85299385897
Optimization terminated successfully (Exit mode 0)
Current function value: 140.41238254583655
Iterations: 15
Function evaluations: 163
Gradient evaluations: 14
Iteration: 1, Func. Count: 5, Neg. LLF: 146.85398606073304
Iteration: 2, Func. Count: 10, Neg. LLF: 155.7226868988271
Iteration: 3, Func. Count: 15, Neg. LLF: 143.5677452705781
Iteration: 4, Func. Count: 19, Neg. LLF: 143.48306808417286
Iteration: 5, Func. Count: 23, Neg. LLF: 143.47052722910246
Iteration: 6, Func. Count: 27, Neg. LLF: 143.4576203856691
Iteration: 7, Func. Count: 31, Neg. LLF: 143.45698884943786
Iteration: 8, Func. Count: 35, Neg. LLF: 143.45696865618174
Iteration: 9, Func. Count: 38, Neg. LLF: 143.45696865620928
Optimization terminated successfully (Exit mode 0)
Current function value: 143.45696865618174
Iterations: 9
Function evaluations: 38
Gradient evaluations: 9
Iteration: 1, Func. Count: 6, Neg. LLF: 19243796.60442663
Iteration: 2, Func. Count: 13, Neg. LLF: 162.73436749603673
Iteration: 3, Func. Count: 19, Neg. LLF: 150.73015088784308
Iteration: 4, Func. Count: 25, Neg. LLF: 146.94072528699704
Iteration: 5, Func. Count: 31, Neg. LLF: 143.02491199681626
Iteration: 6, Func. Count: 37, Neg. LLF: 141.64311357393188
Iteration: 7, Func. Count: 43, Neg. LLF: 140.47116675745218
Iteration: 8, Func. Count: 48, Neg. LLF: 140.84098386595772
Iteration: 9, Func. Count: 54, Neg. LLF: 140.41300655367715
Iteration: 10, Func. Count: 59, Neg. LLF: 140.41237623770317
Iteration: 11, Func. Count: 64, Neg. LLF: 140.41237529992927
Optimization terminated successfully (Exit mode 0)
Current function value: 140.41237529992927
Iterations: 11
Function evaluations: 64
Gradient evaluations: 11
Iteration: 1, Func. Count: 7, Neg. LLF: 19240463.218959972
Iteration: 2, Func. Count: 15, Neg. LLF: 167.7971359209305
Iteration: 3, Func. Count: 22, Neg. LLF: 159.65357785779403
Iteration: 4, Func. Count: 29, Neg. LLF: 150.81184353762475
Iteration: 5, Func. Count: 36, Neg. LLF: 146.2703873362412
Iteration: 6, Func. Count: 43, Neg. LLF: 141.3050975712163
Iteration: 7, Func. Count: 50, Neg. LLF: 141.00135133402762
Iteration: 8, Func. Count: 57, Neg. LLF: 140.50264528388928
Iteration: 9, Func. Count: 63, Neg. LLF: 140.50645630644277
Iteration: 10, Func. Count: 70, Neg. LLF: 140.59170608964948
Iteration: 11, Func. Count: 77, Neg. LLF: 140.48709640619677
Iteration: 12, Func. Count: 83, Neg. LLF: 140.48021295037893
Iteration: 13, Func. Count: 89, Neg. LLF: 140.46120309652088
Iteration: 14, Func. Count: 95, Neg. LLF: 140.44320562883254
Iteration: 15, Func. Count: 101, Neg. LLF: 140.41238263959073
Iteration: 16, Func. Count: 107, Neg. LLF: 140.4124071479287
Iteration: 17, Func. Count: 113, Neg. LLF: 140.4123753338236
Optimization terminated successfully (Exit mode 0)
Current function value: 140.41237533170207
Iterations: 17
Function evaluations: 113
Gradient evaluations: 17
Iteration: 1, Func. Count: 8, Neg. LLF: 19240426.44248146
Iteration: 2, Func. Count: 17, Neg. LLF: 156.49666272233264
Iteration: 3, Func. Count: 25, Neg. LLF: 157.6141327181711
Iteration: 4, Func. Count: 33, Neg. LLF: 150.8721704413821
Iteration: 5, Func. Count: 41, Neg. LLF: 145.383363354165
Iteration: 6, Func. Count: 49, Neg. LLF: 144.47245307265283
Iteration: 7, Func. Count: 57, Neg. LLF: 141.5933555855305
Iteration: 8, Func. Count: 65, Neg. LLF: 140.7352799429766
Iteration: 9, Func. Count: 73, Neg. LLF: 140.6958326091307
Iteration: 10, Func. Count: 81, Neg. LLF: 140.50614731777134
Iteration: 11, Func. Count: 88, Neg. LLF: 140.50404720283342
Iteration: 12, Func. Count: 95, Neg. LLF: 140.50087583945873
Iteration: 13, Func. Count: 102, Neg. LLF: 140.50082305022255
Iteration: 14, Func. Count: 109, Neg. LLF: 140.500739570297
Iteration: 15, Func. Count: 116, Neg. LLF: 140.50073555327336
Iteration: 16, Func. Count: 123, Neg. LLF: 140.5007350215012
Optimization terminated successfully (Exit mode 0)
Current function value: 140.5007350215012
Iterations: 16
Function evaluations: 123
Gradient evaluations: 16
Iteration: 1, Func. Count: 9, Neg. LLF: 19240424.2874324
Iteration: 2, Func. Count: 18, Neg. LLF: 144.9658936328963
Iteration: 3, Func. Count: 27, Neg. LLF: 143.4193127927861
Iteration: 4, Func. Count: 36, Neg. LLF: 142.52277513756303
Iteration: 5, Func. Count: 45, Neg. LLF: 141.06292156579522
Iteration: 6, Func. Count: 54, Neg. LLF: 149.0084794539613
Iteration: 7, Func. Count: 63, Neg. LLF: 143.95860425267634
Iteration: 8, Func. Count: 72, Neg. LLF: 141.87669846804044
Iteration: 9, Func. Count: 81, Neg. LLF: 141.1435651170627
Iteration: 10, Func. Count: 90, Neg. LLF: 140.6533279477638
Iteration: 11, Func. Count: 99, Neg. LLF: 140.54257706310713
Iteration: 12, Func. Count: 107, Neg. LLF: 140.51384524214
Iteration: 13, Func. Count: 115, Neg. LLF: 140.50684716757897
Iteration: 14, Func. Count: 123, Neg. LLF: 140.50520668038675
Iteration: 15, Func. Count: 131, Neg. LLF: 140.5033733920107
Iteration: 16, Func. Count: 139, Neg. LLF: 140.50188243592112
Iteration: 17, Func. Count: 147, Neg. LLF: 140.50125874595884
Iteration: 18, Func. Count: 155, Neg. LLF: 140.50075406584975
Iteration: 19, Func. Count: 163, Neg. LLF: 140.50073525572324
Iteration: 20, Func. Count: 170, Neg. LLF: 140.50073526082426
Optimization terminated successfully (Exit mode 0)
Current function value: 140.50073525572324
Iterations: 20
Function evaluations: 170
Gradient evaluations: 20
Iteration: 1, Func. Count: 6, Neg. LLF: 148.12031023098064
Iteration: 2, Func. Count: 12, Neg. LLF: 145.94791041828415
Iteration: 3, Func. Count: 18, Neg. LLF: 143.19867751076782
Iteration: 4, Func. Count: 23, Neg. LLF: 143.11048957487253
Iteration: 5, Func. Count: 28, Neg. LLF: 143.08923976734715
Iteration: 6, Func. Count: 33, Neg. LLF: 143.0477804222969
Iteration: 7, Func. Count: 38, Neg. LLF: 143.04464487684788
Iteration: 8, Func. Count: 43, Neg. LLF: 143.04441195864143
Iteration: 9, Func. Count: 48, Neg. LLF: 143.04440826583263
Iteration: 10, Func. Count: 52, Neg. LLF: 143.04440826583718
Optimization terminated successfully (Exit mode 0)
Current function value: 143.04440826583263
Iterations: 10
Function evaluations: 52
Gradient evaluations: 10
Iteration: 1, Func. Count: 7, Neg. LLF: 19269665.46686708
Iteration: 2, Func. Count: 15, Neg. LLF: 162.9897283420843
Iteration: 3, Func. Count: 22, Neg. LLF: 146.88535285728662
Iteration: 4, Func. Count: 29, Neg. LLF: 147.35524044556882
Iteration: 5, Func. Count: 36, Neg. LLF: 142.26806108411702
Iteration: 6, Func. Count: 43, Neg. LLF: 142.5584068107556
Iteration: 7, Func. Count: 50, Neg. LLF: 140.79452597651047
Iteration: 8, Func. Count: 56, Neg. LLF: 141.47443605770584
Iteration: 9, Func. Count: 63, Neg. LLF: 141.69601795988487
Iteration: 10, Func. Count: 70, Neg. LLF: 140.10901204010057
Iteration: 11, Func. Count: 76, Neg. LLF: 140.10573877414328
Iteration: 12, Func. Count: 82, Neg. LLF: 140.10516550926292
Iteration: 13, Func. Count: 88, Neg. LLF: 140.10516104017233
Iteration: 14, Func. Count: 93, Neg. LLF: 140.10516104013158
Optimization terminated successfully (Exit mode 0)
Current function value: 140.10516104017233
Iterations: 14
Function evaluations: 93
Gradient evaluations: 14
Iteration: 1, Func. Count: 8, Neg. LLF: 19244914.686582834
Iteration: 2, Func. Count: 17, Neg. LLF: 168.4707395252364
Iteration: 3, Func. Count: 25, Neg. LLF: 148.0074589757091
Iteration: 4, Func. Count: 33, Neg. LLF: 147.24468105623444
Iteration: 5, Func. Count: 41, Neg. LLF: 144.4515804102961
Iteration: 6, Func. Count: 49, Neg. LLF: 140.56605681794917
Iteration: 7, Func. Count: 56, Neg. LLF: 140.53755208706417
Iteration: 8, Func. Count: 63, Neg. LLF: 140.96460203178228
Iteration: 9, Func. Count: 71, Neg. LLF: 144.39035597777166
Iteration: 10, Func. Count: 79, Neg. LLF: 140.19614099655715
Iteration: 11, Func. Count: 86, Neg. LLF: 140.18678972011492
Iteration: 12, Func. Count: 94, Neg. LLF: 140.1687614307874
Iteration: 13, Func. Count: 101, Neg. LLF: 140.1685657561108
Iteration: 14, Func. Count: 108, Neg. LLF: 140.16830486037517
Iteration: 15, Func. Count: 115, Neg. LLF: 140.1644766690839
Iteration: 16, Func. Count: 122, Neg. LLF: 141.57511356118118
Iteration: 17, Func. Count: 130, Neg. LLF: 141.59741295223384
Iteration: 18, Func. Count: 138, Neg. LLF: 140.2660148003511
Iteration: 19, Func. Count: 146, Neg. LLF: 140.15992283299087
Iteration: 20, Func. Count: 154, Neg. LLF: 140.15064968092085
Iteration: 21, Func. Count: 161, Neg. LLF: 140.1411473647168
Iteration: 22, Func. Count: 168, Neg. LLF: 140.13873957885605
Iteration: 23, Func. Count: 176, Neg. LLF: 140.12945738145356
Iteration: 24, Func. Count: 183, Neg. LLF: 140.12864460521837
Iteration: 25, Func. Count: 190, Neg. LLF: 140.1285426442311
Iteration: 26, Func. Count: 197, Neg. LLF: 140.12853938331196
Iteration: 27, Func. Count: 203, Neg. LLF: 140.12853938316096
Optimization terminated successfully (Exit mode 0)
Current function value: 140.12853938331196
Iterations: 27
Function evaluations: 203
Gradient evaluations: 27
Iteration: 1, Func. Count: 9, Neg. LLF: 19320135.047723517
Iteration: 2, Func. Count: 19, Neg. LLF: 156.9552173057185
Iteration: 3, Func. Count: 28, Neg. LLF: 157.7365017335204
Iteration: 4, Func. Count: 37, Neg. LLF: 153.75263254643502
Iteration: 5, Func. Count: 46, Neg. LLF: 150.2214000500416
Iteration: 6, Func. Count: 55, Neg. LLF: 144.06024392929433
Iteration: 7, Func. Count: 64, Neg. LLF: 146.55722101774262
Iteration: 8, Func. Count: 73, Neg. LLF: 140.92474215395086
Iteration: 9, Func. Count: 81, Neg. LLF: 141.18759801176552
Iteration: 10, Func. Count: 90, Neg. LLF: 155.61795161868585
Iteration: 11, Func. Count: 99, Neg. LLF: 140.29933205302012
Iteration: 12, Func. Count: 107, Neg. LLF: 140.2340707908426
Iteration: 13, Func. Count: 115, Neg. LLF: 140.21306009901235
Iteration: 14, Func. Count: 123, Neg. LLF: 140.3302387013339
Iteration: 15, Func. Count: 132, Neg. LLF: 140.4772934769023
Iteration: 16, Func. Count: 141, Neg. LLF: 140.13513598325437
Iteration: 17, Func. Count: 149, Neg. LLF: 140.1241510647606
Iteration: 18, Func. Count: 157, Neg. LLF: 140.1182500517389
Iteration: 19, Func. Count: 165, Neg. LLF: 140.1162305660756
Iteration: 20, Func. Count: 173, Neg. LLF: 140.11612243648602
Iteration: 21, Func. Count: 181, Neg. LLF: 140.1161207686426
Iteration: 22, Func. Count: 188, Neg. LLF: 140.11612076856485
Optimization terminated successfully (Exit mode 0)
Current function value: 140.1161207686426
Iterations: 22
Function evaluations: 188
Gradient evaluations: 22
Iteration: 1, Func. Count: 10, Neg. LLF: 19892142.815247454
Iteration: 2, Func. Count: 21, Neg. LLF: 158.25395473091672
Iteration: 3, Func. Count: 31, Neg. LLF: 157.65722186793633
Iteration: 4, Func. Count: 41, Neg. LLF: 151.57704877092922
Iteration: 5, Func. Count: 51, Neg. LLF: 146.2674272430325
Iteration: 6, Func. Count: 61, Neg. LLF: 143.6049280748215
Iteration: 7, Func. Count: 71, Neg. LLF: 141.63387234068858
Iteration: 8, Func. Count: 81, Neg. LLF: 140.70487318465004
Iteration: 9, Func. Count: 90, Neg. LLF: 142.5418972712073
Iteration: 10, Func. Count: 100, Neg. LLF: 160.40135028027703
Iteration: 11, Func. Count: 110, Neg. LLF: 140.28181878765372
Iteration: 12, Func. Count: 119, Neg. LLF: 140.15173786350826
Iteration: 13, Func. Count: 128, Neg. LLF: 140.13171999586314
Iteration: 14, Func. Count: 137, Neg. LLF: 140.12033867403986
Iteration: 15, Func. Count: 146, Neg. LLF: 140.1185524668002
Iteration: 16, Func. Count: 155, Neg. LLF: 140.11629484162546
Iteration: 17, Func. Count: 164, Neg. LLF: 140.11613669307047
Iteration: 18, Func. Count: 173, Neg. LLF: 140.11612077046018
Iteration: 19, Func. Count: 181, Neg. LLF: 140.116120784136
Optimization terminated successfully (Exit mode 0)
Current function value: 140.11612077046018
Iterations: 19
Function evaluations: 181
Gradient evaluations: 19
Iteration: 1, Func. Count: 7, Neg. LLF: 152.23909302476164
Iteration: 2, Func. Count: 14, Neg. LLF: 144.8960546921032
Iteration: 3, Func. Count: 21, Neg. LLF: 143.2202416952669
Iteration: 4, Func. Count: 27, Neg. LLF: 143.13288751142954
Iteration: 5, Func. Count: 33, Neg. LLF: 143.09419649011545
Iteration: 6, Func. Count: 39, Neg. LLF: 143.07816655299834
Iteration: 7, Func. Count: 45, Neg. LLF: 143.04708629882458
Iteration: 8, Func. Count: 51, Neg. LLF: 143.0449070498765
Iteration: 9, Func. Count: 57, Neg. LLF: 143.0444104187004
Iteration: 10, Func. Count: 63, Neg. LLF: 143.0444081965076
Iteration: 11, Func. Count: 68, Neg. LLF: 143.04440825362934
Optimization terminated successfully (Exit mode 0)
Current function value: 143.0444081965076
Iterations: 11
Function evaluations: 68
Gradient evaluations: 11
Iteration: 1, Func. Count: 8, Neg. LLF: 19270646.838267114
Iteration: 2, Func. Count: 17, Neg. LLF: 162.99658068119044
Iteration: 3, Func. Count: 25, Neg. LLF: 146.90568365641911
Iteration: 4, Func. Count: 33, Neg. LLF: 147.36646566362364
Iteration: 5, Func. Count: 41, Neg. LLF: 142.27222134154988
Iteration: 6, Func. Count: 49, Neg. LLF: 142.56221274973564
Iteration: 7, Func. Count: 57, Neg. LLF: 140.7717203952025
Iteration: 8, Func. Count: 64, Neg. LLF: 141.67103417266026
Iteration: 9, Func. Count: 72, Neg. LLF: 141.21656395889258
Iteration: 10, Func. Count: 80, Neg. LLF: 140.10886779635868
Iteration: 11, Func. Count: 87, Neg. LLF: 140.1053570659082
Iteration: 12, Func. Count: 94, Neg. LLF: 140.10516255421334
Iteration: 13, Func. Count: 101, Neg. LLF: 140.10516102706745
Iteration: 14, Func. Count: 107, Neg. LLF: 140.10516102703224
Optimization terminated successfully (Exit mode 0)
Current function value: 140.10516102706745
Iterations: 14
Function evaluations: 107
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 19243384.13399404
Iteration: 2, Func. Count: 19, Neg. LLF: 168.42211957921324
Iteration: 3, Func. Count: 28, Neg. LLF: 148.45985286283084
Iteration: 4, Func. Count: 37, Neg. LLF: 146.8089051692973
Iteration: 5, Func. Count: 46, Neg. LLF: 144.3919630570979
Iteration: 6, Func. Count: 55, Neg. LLF: 140.5618895062328
Iteration: 7, Func. Count: 63, Neg. LLF: 140.51287499237696
Iteration: 8, Func. Count: 71, Neg. LLF: 140.6995893527653
Iteration: 9, Func. Count: 80, Neg. LLF: 140.93162208101188
Iteration: 10, Func. Count: 89, Neg. LLF: 140.27553092027173
Iteration: 11, Func. Count: 98, Neg. LLF: 140.1640797913236
Iteration: 12, Func. Count: 106, Neg. LLF: 140.16277943821905
Iteration: 13, Func. Count: 114, Neg. LLF: 140.1496197332573
Iteration: 14, Func. Count: 122, Neg. LLF: 140.1162455476677
Iteration: 15, Func. Count: 130, Neg. LLF: 140.10764064362132
Iteration: 16, Func. Count: 138, Neg. LLF: 140.1055191509816
Iteration: 17, Func. Count: 146, Neg. LLF: 140.10516231391128
Iteration: 18, Func. Count: 154, Neg. LLF: 140.1051652634393
Optimization terminated successfully (Exit mode 0)
Current function value: 140.10516231391125
Iterations: 18
Function evaluations: 164
Gradient evaluations: 18
Iteration: 1, Func. Count: 10, Neg. LLF: 19243107.690562427
Iteration: 2, Func. Count: 21, Neg. LLF: 156.64283199048035
Iteration: 3, Func. Count: 31, Neg. LLF: 157.6624571818533
Iteration: 4, Func. Count: 41, Neg. LLF: 151.2641192230417
Iteration: 5, Func. Count: 51, Neg. LLF: 145.49006826739466
Iteration: 6, Func. Count: 61, Neg. LLF: 145.55585356613793
Iteration: 7, Func. Count: 71, Neg. LLF: 141.57579845441745
Iteration: 8, Func. Count: 81, Neg. LLF: 140.4307708053295
Iteration: 9, Func. Count: 90, Neg. LLF: 140.34382468408216
Iteration: 10, Func. Count: 99, Neg. LLF: 140.21910233070403
Iteration: 11, Func. Count: 108, Neg. LLF: 140.17941929216659
Iteration: 12, Func. Count: 117, Neg. LLF: 140.15604091533416
Iteration: 13, Func. Count: 126, Neg. LLF: 140.12325015637492
Iteration: 14, Func. Count: 135, Neg. LLF: 140.11713585659294
Iteration: 15, Func. Count: 144, Neg. LLF: 140.11616619709352
Iteration: 16, Func. Count: 153, Neg. LLF: 140.1161240507327
Iteration: 17, Func. Count: 162, Neg. LLF: 140.1161208512321
Iteration: 18, Func. Count: 170, Neg. LLF: 140.11612085097636
Optimization terminated successfully (Exit mode 0)
Current function value: 140.1161208512321
Iterations: 18
Function evaluations: 170
Gradient evaluations: 18
Iteration: 1, Func. Count: 11, Neg. LLF: 19429445.591423355
Iteration: 2, Func. Count: 23, Neg. LLF: 149.7191745761508
Iteration: 3, Func. Count: 34, Neg. LLF: 147.1731961223373
Iteration: 4, Func. Count: 45, Neg. LLF: 148.6181159336032
Iteration: 5, Func. Count: 56, Neg. LLF: 144.07549091541497
Iteration: 6, Func. Count: 67, Neg. LLF: 141.99964084046036
Iteration: 7, Func. Count: 78, Neg. LLF: 140.61937753146256
Iteration: 8, Func. Count: 88, Neg. LLF: 140.79603735202966
Iteration: 9, Func. Count: 99, Neg. LLF: 140.42471814555043
Iteration: 10, Func. Count: 109, Neg. LLF: 140.33630010764625
Iteration: 11, Func. Count: 119, Neg. LLF: 140.30814498580534
Iteration: 12, Func. Count: 129, Neg. LLF: 140.29063630960567
Iteration: 13, Func. Count: 139, Neg. LLF: 140.2837357187361
Iteration: 14, Func. Count: 149, Neg. LLF: 140.27395617959456
Iteration: 15, Func. Count: 159, Neg. LLF: 140.14092968382027
Iteration: 16, Func. Count: 169, Neg. LLF: 140.15115302282803
Iteration: 17, Func. Count: 180, Neg. LLF: 140.11140692954655
Iteration: 18, Func. Count: 190, Neg. LLF: 140.1073616232611
Iteration: 19, Func. Count: 200, Neg. LLF: 140.1070808266469
Iteration: 20, Func. Count: 210, Neg. LLF: 140.10564222051542
Iteration: 21, Func. Count: 220, Neg. LLF: 140.10681322268496
Iteration: 22, Func. Count: 231, Neg. LLF: 19240431.226780474
Iteration: 23, Func. Count: 245, Neg. LLF: 140.1587422502912
Iteration: 24, Func. Count: 257, Neg. LLF: 140.1051734915405
Iteration: 25, Func. Count: 267, Neg. LLF: 140.1051620700864
Iteration: 26, Func. Count: 277, Neg. LLF: 140.10516112575766
Optimization terminated successfully (Exit mode 0)
Current function value: 140.10516112575766
Iterations: 27
Function evaluations: 277
Gradient evaluations: 26
Iteration: 1, Func. Count: 8, Neg. LLF: 149.96856824337678
Iteration: 2, Func. Count: 16, Neg. LLF: 144.83257469339117
Iteration: 3, Func. Count: 24, Neg. LLF: 143.30048934485896
Iteration: 4, Func. Count: 31, Neg. LLF: 143.1411294011155
Iteration: 5, Func. Count: 38, Neg. LLF: 143.10157211925994
Iteration: 6, Func. Count: 45, Neg. LLF: 143.08250310899632
Iteration: 7, Func. Count: 52, Neg. LLF: 143.0600588866969
Iteration: 8, Func. Count: 59, Neg. LLF: 143.04641207983906
Iteration: 9, Func. Count: 66, Neg. LLF: 143.0444494383464
Iteration: 10, Func. Count: 73, Neg. LLF: 143.04440853106198
Iteration: 11, Func. Count: 79, Neg. LLF: 143.04440854335323
Optimization terminated successfully (Exit mode 0)
Current function value: 143.04440853106198
Iterations: 11
Function evaluations: 79
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 19275146.474855624
Iteration: 2, Func. Count: 19, Neg. LLF: 163.0084556518831
Iteration: 3, Func. Count: 28, Neg. LLF: 146.14987154016507
Iteration: 4, Func. Count: 37, Neg. LLF: 147.13892953125813
Iteration: 5, Func. Count: 46, Neg. LLF: 141.85869667419115
Iteration: 6, Func. Count: 55, Neg. LLF: 142.25736367117022
Iteration: 7, Func. Count: 64, Neg. LLF: 1759.450478670376
Iteration: 8, Func. Count: 74, Neg. LLF: 140.34098512884412
Iteration: 9, Func. Count: 82, Neg. LLF: 140.21117221738942
Iteration: 10, Func. Count: 90, Neg. LLF: 140.10856362345152
Iteration: 11, Func. Count: 98, Neg. LLF: 140.10528709878318
Iteration: 12, Func. Count: 106, Neg. LLF: 140.10517160980666
Iteration: 13, Func. Count: 114, Neg. LLF: 140.10516102937353
Iteration: 14, Func. Count: 121, Neg. LLF: 140.10516102926263
Optimization terminated successfully (Exit mode 0)
Current function value: 140.10516102937353
Iterations: 14
Function evaluations: 121
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 19244937.909409333
Iteration: 2, Func. Count: 21, Neg. LLF: 168.4320134774723
Iteration: 3, Func. Count: 31, Neg. LLF: 147.95703115873792
Iteration: 4, Func. Count: 41, Neg. LLF: 147.0936005548932
Iteration: 5, Func. Count: 51, Neg. LLF: 144.42793406863984
Iteration: 6, Func. Count: 61, Neg. LLF: 140.5644714735901
Iteration: 7, Func. Count: 70, Neg. LLF: 140.51535766897553
Iteration: 8, Func. Count: 79, Neg. LLF: 147.3240719184415
Iteration: 9, Func. Count: 89, Neg. LLF: 140.98390486784183
Iteration: 10, Func. Count: 99, Neg. LLF: 140.19972972987412
Iteration: 11, Func. Count: 108, Neg. LLF: 140.18888174735278
Iteration: 12, Func. Count: 118, Neg. LLF: 140.16734694481946
Iteration: 13, Func. Count: 127, Neg. LLF: 140.16654167765535
Iteration: 14, Func. Count: 136, Neg. LLF: 140.1658412091173
Iteration: 15, Func. Count: 145, Neg. LLF: 140.1599766547342
Iteration: 16, Func. Count: 154, Neg. LLF: 140.15160785671688
Iteration: 17, Func. Count: 163, Neg. LLF: 140.1285324705339
Iteration: 18, Func. Count: 172, Neg. LLF: 140.10906745657977
Iteration: 19, Func. Count: 181, Neg. LLF: 140.1051755395248
Iteration: 20, Func. Count: 190, Neg. LLF: 140.10516119692076
Iteration: 21, Func. Count: 198, Neg. LLF: 140.10516120078867
Optimization terminated successfully (Exit mode 0)
Current function value: 140.10516119692076
Iterations: 21
Function evaluations: 198
Gradient evaluations: 21
Iteration: 1, Func. Count: 11, Neg. LLF: 19244660.087636903
Iteration: 2, Func. Count: 23, Neg. LLF: 156.67271758404394
Iteration: 3, Func. Count: 34, Neg. LLF: 157.50795925858867
Iteration: 4, Func. Count: 45, Neg. LLF: 151.31809105319428
Iteration: 5, Func. Count: 56, Neg. LLF: 145.31529184064678
Iteration: 6, Func. Count: 67, Neg. LLF: 145.8601955437581
Iteration: 7, Func. Count: 78, Neg. LLF: 141.70612130004383
Iteration: 8, Func. Count: 89, Neg. LLF: 140.467069582528
Iteration: 9, Func. Count: 99, Neg. LLF: 140.3967496817002
Iteration: 10, Func. Count: 110, Neg. LLF: 140.20766602692862
Iteration: 11, Func. Count: 120, Neg. LLF: 140.1346117583592
Iteration: 12, Func. Count: 130, Neg. LLF: 140.12109566032817
Iteration: 13, Func. Count: 140, Neg. LLF: 140.1171390538471
Iteration: 14, Func. Count: 150, Neg. LLF: 140.1171916375638
Iteration: 15, Func. Count: 161, Neg. LLF: 140.11615728519055
Iteration: 16, Func. Count: 171, Neg. LLF: 140.11612482610795
Iteration: 17, Func. Count: 181, Neg. LLF: 140.11612077878607
Iteration: 18, Func. Count: 190, Neg. LLF: 140.11612077877524
Optimization terminated successfully (Exit mode 0)
Current function value: 140.11612077878607
Iterations: 18
Function evaluations: 190
Gradient evaluations: 18
Iteration: 1, Func. Count: 12, Neg. LLF: 19549503.693250194
Iteration: 2, Func. Count: 25, Neg. LLF: 150.5946964556627
Iteration: 3, Func. Count: 37, Neg. LLF: 148.79539046792135
Iteration: 4, Func. Count: 49, Neg. LLF: 152.4461355003654
Iteration: 5, Func. Count: 61, Neg. LLF: 143.84506574928486
Iteration: 6, Func. Count: 73, Neg. LLF: 142.33087351410654
Iteration: 7, Func. Count: 85, Neg. LLF: 140.73467421325225
Iteration: 8, Func. Count: 96, Neg. LLF: 142.71201799892313
Iteration: 9, Func. Count: 108, Neg. LLF: 140.59086330489816
Iteration: 10, Func. Count: 120, Neg. LLF: 140.3555895027009
Iteration: 11, Func. Count: 131, Neg. LLF: 140.32484989267417
Iteration: 12, Func. Count: 142, Neg. LLF: 140.30939080219923
Iteration: 13, Func. Count: 153, Neg. LLF: 140.28817424112114
Iteration: 14, Func. Count: 164, Neg. LLF: 140.1698122354001
Iteration: 15, Func. Count: 175, Neg. LLF: 140.1799464765128
Iteration: 16, Func. Count: 187, Neg. LLF: 140.15608699451676
Iteration: 17, Func. Count: 198, Neg. LLF: 140.1543052536879
Iteration: 18, Func. Count: 209, Neg. LLF: 140.1427112584446
Iteration: 19, Func. Count: 220, Neg. LLF: 140.36911355769826
Iteration: 20, Func. Count: 232, Neg. LLF: 140.14686809762222
Iteration: 21, Func. Count: 244, Neg. LLF: 140.1319374485703
Iteration: 22, Func. Count: 255, Neg. LLF: 140.12879025772378
Iteration: 23, Func. Count: 266, Neg. LLF: 140.12854578700433
Iteration: 24, Func. Count: 277, Neg. LLF: 140.12853901140087
Iteration: 25, Func. Count: 287, Neg. LLF: 140.1285390245804
Optimization terminated successfully (Exit mode 0)
Current function value: 140.12853901140087
Iterations: 25
Function evaluations: 287
Gradient evaluations: 25
Iteration: 1, Func. Count: 9, Neg. LLF: 150.43552213437115
Iteration: 2, Func. Count: 18, Neg. LLF: 144.76438253563293
Iteration: 3, Func. Count: 27, Neg. LLF: 143.3704901843477
Iteration: 4, Func. Count: 35, Neg. LLF: 143.1392846244848
Iteration: 5, Func. Count: 43, Neg. LLF: 143.1025308880545
Iteration: 6, Func. Count: 51, Neg. LLF: 143.08210598946326
Iteration: 7, Func. Count: 59, Neg. LLF: 143.06275194966148
Iteration: 8, Func. Count: 67, Neg. LLF: 143.0468490902118
Iteration: 9, Func. Count: 75, Neg. LLF: 143.04447469709748
Iteration: 10, Func. Count: 83, Neg. LLF: 143.0444086797071
Iteration: 11, Func. Count: 90, Neg. LLF: 143.04440873150577
Optimization terminated successfully (Exit mode 0)
Current function value: 143.0444086797071
Iterations: 11
Function evaluations: 90
Gradient evaluations: 11
Iteration: 1, Func. Count: 10, Neg. LLF: 19275910.59643654
Iteration: 2, Func. Count: 21, Neg. LLF: 163.03799263352658
Iteration: 3, Func. Count: 31, Neg. LLF: 146.11383479635478
Iteration: 4, Func. Count: 41, Neg. LLF: 147.08834065954736
Iteration: 5, Func. Count: 51, Neg. LLF: 141.82845373467688
Iteration: 6, Func. Count: 61, Neg. LLF: 142.23623603776267
Iteration: 7, Func. Count: 71, Neg. LLF: 24229.2286703969
Iteration: 8, Func. Count: 82, Neg. LLF: 140.33942552921053
Iteration: 9, Func. Count: 91, Neg. LLF: 140.1926188347231
Iteration: 10, Func. Count: 100, Neg. LLF: 140.1097614663748
Iteration: 11, Func. Count: 109, Neg. LLF: 140.1053247782263
Iteration: 12, Func. Count: 118, Neg. LLF: 140.10517832235016
Iteration: 13, Func. Count: 127, Neg. LLF: 140.1051610344952
Iteration: 14, Func. Count: 135, Neg. LLF: 140.10516103432494
Optimization terminated successfully (Exit mode 0)
Current function value: 140.1051610344952
Iterations: 14
Function evaluations: 135
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 19245209.27361226
Iteration: 2, Func. Count: 23, Neg. LLF: 168.38064085500844
Iteration: 3, Func. Count: 34, Neg. LLF: 147.89614303419444
Iteration: 4, Func. Count: 45, Neg. LLF: 147.1115503829468
Iteration: 5, Func. Count: 56, Neg. LLF: 144.42033300150987
Iteration: 6, Func. Count: 67, Neg. LLF: 140.56533000553583
Iteration: 7, Func. Count: 77, Neg. LLF: 140.5224629880806
Iteration: 8, Func. Count: 87, Neg. LLF: 155.3052814727246
Iteration: 9, Func. Count: 98, Neg. LLF: 141.58891222599115
Iteration: 10, Func. Count: 109, Neg. LLF: 140.19422046772556
Iteration: 11, Func. Count: 119, Neg. LLF: 140.1803834635226
Iteration: 12, Func. Count: 129, Neg. LLF: 140.16924435132972
Iteration: 13, Func. Count: 139, Neg. LLF: 140.16837413623907
Iteration: 14, Func. Count: 149, Neg. LLF: 140.1681157495554
Iteration: 15, Func. Count: 159, Neg. LLF: 140.16783945899223
Iteration: 16, Func. Count: 169, Neg. LLF: 140.16509705855594
Iteration: 17, Func. Count: 179, Neg. LLF: 140.16276564109918
Iteration: 18, Func. Count: 189, Neg. LLF: 140.15231951738735
Iteration: 19, Func. Count: 199, Neg. LLF: 140.12039863619393
Iteration: 20, Func. Count: 209, Neg. LLF: 140.10668823083475
Iteration: 21, Func. Count: 219, Neg. LLF: 140.10526577132373
Iteration: 22, Func. Count: 229, Neg. LLF: 140.10516842739432
Iteration: 23, Func. Count: 239, Neg. LLF: 140.10516092758317
Iteration: 24, Func. Count: 248, Neg. LLF: 140.10516093210532
Optimization terminated successfully (Exit mode 0)
Current function value: 140.10516092758317
Iterations: 24
Function evaluations: 248
Gradient evaluations: 24
Iteration: 1, Func. Count: 12, Neg. LLF: 19244882.275173254
Iteration: 2, Func. Count: 25, Neg. LLF: 156.67880785049977
Iteration: 3, Func. Count: 37, Neg. LLF: 157.43773163357974
Iteration: 4, Func. Count: 49, Neg. LLF: 151.22989393079516
Iteration: 5, Func. Count: 61, Neg. LLF: 145.25957168097946
Iteration: 6, Func. Count: 73, Neg. LLF: 145.72902551467982
Iteration: 7, Func. Count: 85, Neg. LLF: 141.6171259106805
Iteration: 8, Func. Count: 97, Neg. LLF: 140.44825811155297
Iteration: 9, Func. Count: 108, Neg. LLF: 140.35212433183545
Iteration: 10, Func. Count: 119, Neg. LLF: 140.2198721338455
Iteration: 11, Func. Count: 130, Neg. LLF: 140.17838383533572
Iteration: 12, Func. Count: 141, Neg. LLF: 140.17032599443434
Iteration: 13, Func. Count: 152, Neg. LLF: 140.13118551500756
Iteration: 14, Func. Count: 163, Neg. LLF: 140.11967430924912
Iteration: 15, Func. Count: 174, Neg. LLF: 140.1162189777113
Iteration: 16, Func. Count: 185, Neg. LLF: 140.116123732096
Iteration: 17, Func. Count: 196, Neg. LLF: 140.11612079572416
Iteration: 18, Func. Count: 206, Neg. LLF: 140.1161207956636
Optimization terminated successfully (Exit mode 0)
Current function value: 140.11612079572416
Iterations: 18
Function evaluations: 206
Gradient evaluations: 18
Iteration: 1, Func. Count: 13, Neg. LLF: 19350448.054269124
Iteration: 2, Func. Count: 27, Neg. LLF: 148.687427304106
Iteration: 3, Func. Count: 40, Neg. LLF: 145.21030982988577
Iteration: 4, Func. Count: 53, Neg. LLF: 145.20456746235993
Iteration: 5, Func. Count: 66, Neg. LLF: 143.03117533292132
Iteration: 6, Func. Count: 79, Neg. LLF: 140.80587015468163
Iteration: 7, Func. Count: 91, Neg. LLF: 140.9079284290366
Iteration: 8, Func. Count: 104, Neg. LLF: 145.77307943549675
Iteration: 9, Func. Count: 117, Neg. LLF: 140.6229307956346
Iteration: 10, Func. Count: 130, Neg. LLF: 140.36429098069445
Iteration: 11, Func. Count: 142, Neg. LLF: 140.2890230099555
Iteration: 12, Func. Count: 154, Neg. LLF: 140.15665715498022
Iteration: 13, Func. Count: 166, Neg. LLF: 140.14506320695696
Iteration: 14, Func. Count: 178, Neg. LLF: 140.13614000652936
Iteration: 15, Func. Count: 190, Neg. LLF: 140.13480223452973
Iteration: 16, Func. Count: 202, Neg. LLF: 140.13375700766443
Iteration: 17, Func. Count: 214, Neg. LLF: 140.13019981453385
Iteration: 18, Func. Count: 226, Neg. LLF: 140.12918477460113
Iteration: 19, Func. Count: 238, Neg. LLF: 140.12855593120074
Iteration: 20, Func. Count: 250, Neg. LLF: 140.12854254295453
Iteration: 21, Func. Count: 262, Neg. LLF: 140.12853898063977
Iteration: 22, Func. Count: 273, Neg. LLF: 140.1285389940583
Optimization terminated successfully (Exit mode 0)
Current function value: 140.12853898063977
Iterations: 22
Function evaluations: 273
Gradient evaluations: 22
Iteration: 1, Func. Count: 6, Neg. LLF: 147.0261582808827
Iteration: 2, Func. Count: 12, Neg. LLF: 160.7279334160645
Iteration: 3, Func. Count: 18, Neg. LLF: 143.5768143397257
Iteration: 4, Func. Count: 23, Neg. LLF: 143.79850090561897
Iteration: 5, Func. Count: 29, Neg. LLF: 143.49586304350723
Iteration: 6, Func. Count: 34, Neg. LLF: 143.47329358846173
Iteration: 7, Func. Count: 39, Neg. LLF: 143.46034582823918
Iteration: 8, Func. Count: 44, Neg. LLF: 143.45715980687504
Iteration: 9, Func. Count: 49, Neg. LLF: 143.45697334472945
Iteration: 10, Func. Count: 54, Neg. LLF: 143.45696859013145
Iteration: 11, Func. Count: 58, Neg. LLF: 143.4569686515739
Optimization terminated successfully (Exit mode 0)
Current function value: 143.45696859013145
Iterations: 11
Function evaluations: 58
Gradient evaluations: 11
Iteration: 1, Func. Count: 7, Neg. LLF: 19268015.047698755
Iteration: 2, Func. Count: 15, Neg. LLF: 165.1193604846918
Iteration: 3, Func. Count: 22, Neg. LLF: 149.32706812343423
Iteration: 4, Func. Count: 29, Neg. LLF: 145.73674174189745
Iteration: 5, Func. Count: 36, Neg. LLF: 141.53477540282813
Iteration: 6, Func. Count: 43, Neg. LLF: 141.8408584598476
Iteration: 7, Func. Count: 50, Neg. LLF: 140.5920472509296
Iteration: 8, Func. Count: 56, Neg. LLF: 140.42848705087502
Iteration: 9, Func. Count: 62, Neg. LLF: 140.42810286111526
Iteration: 10, Func. Count: 69, Neg. LLF: 140.41254309917832
Iteration: 11, Func. Count: 75, Neg. LLF: 140.4123753179847
Iteration: 12, Func. Count: 80, Neg. LLF: 140.41237531831484
Optimization terminated successfully (Exit mode 0)
Current function value: 140.4123753179847
Iterations: 12
Function evaluations: 80
Gradient evaluations: 12
Iteration: 1, Func. Count: 8, Neg. LLF: 19257366.811457086
Iteration: 2, Func. Count: 17, Neg. LLF: 166.17308468945288
Iteration: 3, Func. Count: 25, Neg. LLF: 158.06169246152865
Iteration: 4, Func. Count: 33, Neg. LLF: 148.97707198401974
Iteration: 5, Func. Count: 41, Neg. LLF: 144.59527222404174
Iteration: 6, Func. Count: 49, Neg. LLF: 141.02417869682367
Iteration: 7, Func. Count: 56, Neg. LLF: 144.49204513988485
Iteration: 8, Func. Count: 65, Neg. LLF: 149.7423511996152
Iteration: 9, Func. Count: 76, Neg. LLF: 140.55570961530194
Iteration: 10, Func. Count: 83, Neg. LLF: 140.5176952325267
Iteration: 11, Func. Count: 90, Neg. LLF: 140.51505997702722
Iteration: 12, Func. Count: 97, Neg. LLF: 140.511615575674
Iteration: 13, Func. Count: 104, Neg. LLF: 140.50878332971402
Iteration: 14, Func. Count: 111, Neg. LLF: 140.49900090240146
Iteration: 15, Func. Count: 118, Neg. LLF: 140.48289684356908
Iteration: 16, Func. Count: 125, Neg. LLF: 140.47067509009295
Iteration: 17, Func. Count: 132, Neg. LLF: 140.45318446273566
Iteration: 18, Func. Count: 139, Neg. LLF: 140.4125120772827
Iteration: 19, Func. Count: 146, Neg. LLF: 140.41296936608333
Iteration: 20, Func. Count: 153, Neg. LLF: 140.41237535418617
Optimization terminated successfully (Exit mode 0)
Current function value: 140.41237535202046
Iterations: 20
Function evaluations: 153
Gradient evaluations: 20
Iteration: 1, Func. Count: 9, Neg. LLF: 19253517.14953578
Iteration: 2, Func. Count: 19, Neg. LLF: 152.95872077387756
Iteration: 3, Func. Count: 28, Neg. LLF: 151.6200087223292
Iteration: 4, Func. Count: 37, Neg. LLF: 144.68292159186564
Iteration: 5, Func. Count: 46, Neg. LLF: 142.040911521806
Iteration: 6, Func. Count: 55, Neg. LLF: 140.59961850406054
Iteration: 7, Func. Count: 63, Neg. LLF: 140.4982345433095
Iteration: 8, Func. Count: 71, Neg. LLF: 140.496973540716
Iteration: 9, Func. Count: 79, Neg. LLF: 140.4965021577933
Iteration: 10, Func. Count: 87, Neg. LLF: 140.4946789695819
Iteration: 11, Func. Count: 95, Neg. LLF: 140.4942357120038
Iteration: 12, Func. Count: 103, Neg. LLF: 140.49421972250826
Iteration: 13, Func. Count: 111, Neg. LLF: 140.49421915208927
Optimization terminated successfully (Exit mode 0)
Current function value: 140.49421915208927
Iterations: 13
Function evaluations: 111
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 19247801.20667995
Iteration: 2, Func. Count: 20, Neg. LLF: 144.9800026195035
Iteration: 3, Func. Count: 30, Neg. LLF: 143.3654914050447
Iteration: 4, Func. Count: 40, Neg. LLF: 140.72051371643752
Iteration: 5, Func. Count: 49, Neg. LLF: 141.00741758552266
Iteration: 6, Func. Count: 59, Neg. LLF: 140.98504233231353
Iteration: 7, Func. Count: 69, Neg. LLF: 140.54254148597553
Iteration: 8, Func. Count: 78, Neg. LLF: 140.5348491264258
Iteration: 9, Func. Count: 87, Neg. LLF: 140.53234527828997
Iteration: 10, Func. Count: 96, Neg. LLF: 140.53046506399915
Iteration: 11, Func. Count: 105, Neg. LLF: 140.51704403699543
Iteration: 12, Func. Count: 114, Neg. LLF: 140.4271176843661
Iteration: 13, Func. Count: 123, Neg. LLF: 140.46186904565548
Iteration: 14, Func. Count: 134, Neg. LLF: 140.48474924784946
Optimization terminated successfully (Exit mode 0)
Current function value: 140.42706448590243
Iterations: 14
Function evaluations: 138
Gradient evaluations: 14
Iteration: 1, Func. Count: 7, Neg. LLF: 147.26674740590235
Iteration: 2, Func. Count: 14, Neg. LLF: 151.8564573340423
Iteration: 3, Func. Count: 21, Neg. LLF: 143.24024607854608
Iteration: 4, Func. Count: 27, Neg. LLF: 143.1599441420422
Iteration: 5, Func. Count: 33, Neg. LLF: 143.11646325078806
Iteration: 6, Func. Count: 39, Neg. LLF: 143.0696892029664
Iteration: 7, Func. Count: 45, Neg. LLF: 143.0531888209496
Iteration: 8, Func. Count: 51, Neg. LLF: 143.04479426044728
Iteration: 9, Func. Count: 57, Neg. LLF: 143.0444278860918
Iteration: 10, Func. Count: 63, Neg. LLF: 143.04440872158267
Iteration: 11, Func. Count: 68, Neg. LLF: 143.04440872155743
Optimization terminated successfully (Exit mode 0)
Current function value: 143.04440872158267
Iterations: 11
Function evaluations: 68
Gradient evaluations: 11
Iteration: 1, Func. Count: 8, Neg. LLF: 19321089.062230032
Iteration: 2, Func. Count: 17, Neg. LLF: 165.21613765581822
Iteration: 3, Func. Count: 25, Neg. LLF: 141.73248334645933
Iteration: 4, Func. Count: 32, Neg. LLF: 156.63507660266006
Iteration: 5, Func. Count: 41, Neg. LLF: 238.44155413360883
Iteration: 6, Func. Count: 50, Neg. LLF: 140.53810849331734
Iteration: 7, Func. Count: 57, Neg. LLF: 140.24694571310204
Iteration: 8, Func. Count: 64, Neg. LLF: 140.1260792063127
Iteration: 9, Func. Count: 71, Neg. LLF: 140.10683897726648
Iteration: 10, Func. Count: 78, Neg. LLF: 140.1051743576926
Iteration: 11, Func. Count: 85, Neg. LLF: 140.1051614291313
Iteration: 12, Func. Count: 91, Neg. LLF: 140.10516143031228
Optimization terminated successfully (Exit mode 0)
Current function value: 140.1051614291313
Iterations: 12
Function evaluations: 91
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 19245403.925434887
Iteration: 2, Func. Count: 19, Neg. LLF: 166.73612132577284
Iteration: 3, Func. Count: 28, Neg. LLF: 156.30809602071088
Iteration: 4, Func. Count: 37, Neg. LLF: 145.53078470760434
Iteration: 5, Func. Count: 46, Neg. LLF: 143.00485135746973
Iteration: 6, Func. Count: 55, Neg. LLF: 141.91033789058568
Iteration: 7, Func. Count: 64, Neg. LLF: 141.73644764554322
Iteration: 8, Func. Count: 73, Neg. LLF: 141.71264170555966
Iteration: 9, Func. Count: 82, Neg. LLF: 140.7129147382641
Iteration: 10, Func. Count: 91, Neg. LLF: 140.28971954383846
Iteration: 11, Func. Count: 99, Neg. LLF: 140.82139383381187
Iteration: 12, Func. Count: 108, Neg. LLF: 140.16767660516905
Iteration: 13, Func. Count: 116, Neg. LLF: 140.13775844322672
Iteration: 14, Func. Count: 124, Neg. LLF: 140.12899116724384
Iteration: 15, Func. Count: 132, Neg. LLF: 140.12865640886855
Iteration: 16, Func. Count: 140, Neg. LLF: 140.12861478594
Iteration: 17, Func. Count: 148, Neg. LLF: 140.1285650018293
Iteration: 18, Func. Count: 156, Neg. LLF: 140.12854214647783
Iteration: 19, Func. Count: 164, Neg. LLF: 140.12853909896663
Iteration: 20, Func. Count: 171, Neg. LLF: 140.12853909938036
Optimization terminated successfully (Exit mode 0)
Current function value: 140.12853909896663
Iterations: 20
Function evaluations: 171
Gradient evaluations: 20
Iteration: 1, Func. Count: 10, Neg. LLF: 19372482.986644775
Iteration: 2, Func. Count: 21, Neg. LLF: 155.10507440964338
Iteration: 3, Func. Count: 31, Neg. LLF: 158.2741787194182
Iteration: 4, Func. Count: 41, Neg. LLF: 141.92632199970078
Iteration: 5, Func. Count: 51, Neg. LLF: 141.68866270780646
Iteration: 6, Func. Count: 61, Neg. LLF: 144.3797725753412
Iteration: 7, Func. Count: 71, Neg. LLF: 140.2710226424981
Iteration: 8, Func. Count: 80, Neg. LLF: 140.16396297274656
Iteration: 9, Func. Count: 89, Neg. LLF: 140.1977085350355
Iteration: 10, Func. Count: 99, Neg. LLF: 140.13707175985198
Iteration: 11, Func. Count: 109, Neg. LLF: 140.1172859203604
Iteration: 12, Func. Count: 118, Neg. LLF: 140.11616867829704
Iteration: 13, Func. Count: 127, Neg. LLF: 140.1161247949955
Iteration: 14, Func. Count: 136, Neg. LLF: 140.1161208350042
Iteration: 15, Func. Count: 144, Neg. LLF: 140.11612083492454
Optimization terminated successfully (Exit mode 0)
Current function value: 140.1161208350042
Iterations: 15
Function evaluations: 144
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 19717686.190821175
Iteration: 2, Func. Count: 23, Neg. LLF: 147.70523471571127
Iteration: 3, Func. Count: 34, Neg. LLF: 156.24313948563108
Iteration: 4, Func. Count: 45, Neg. LLF: 151.55244679951173
Iteration: 5, Func. Count: 56, Neg. LLF: 142.0727781629457
Iteration: 6, Func. Count: 67, Neg. LLF: 141.0698849738102
Iteration: 7, Func. Count: 77, Neg. LLF: 141.0538738214943
Iteration: 8, Func. Count: 88, Neg. LLF: 364.5193631884713
Iteration: 9, Func. Count: 100, Neg. LLF: 140.56997408309277
Iteration: 10, Func. Count: 110, Neg. LLF: 140.50815590164993
Iteration: 11, Func. Count: 120, Neg. LLF: 140.44551990478192
Iteration: 12, Func. Count: 130, Neg. LLF: 140.6280727401727
Iteration: 13, Func. Count: 141, Neg. LLF: 140.29237526229545
Iteration: 14, Func. Count: 151, Neg. LLF: 140.27543915117798
Iteration: 15, Func. Count: 161, Neg. LLF: 140.24862651710214
Iteration: 16, Func. Count: 171, Neg. LLF: 140.24688922324842
Iteration: 17, Func. Count: 181, Neg. LLF: 140.24663706969375
Iteration: 18, Func. Count: 191, Neg. LLF: 140.24663411968845
Iteration: 19, Func. Count: 200, Neg. LLF: 140.24663411967467
Optimization terminated successfully (Exit mode 0)
Current function value: 140.24663411968845
Iterations: 19
Function evaluations: 200
Gradient evaluations: 19
Iteration: 1, Func. Count: 8, Neg. LLF: 150.25634646016968
Iteration: 2, Func. Count: 16, Neg. LLF: 148.5007662054782
Iteration: 3, Func. Count: 24, Neg. LLF: 143.17444426490013
Iteration: 4, Func. Count: 31, Neg. LLF: 143.90240516626076
Iteration: 5, Func. Count: 39, Neg. LLF: 143.79796783057685
Iteration: 6, Func. Count: 47, Neg. LLF: 143.1077662061985
Iteration: 7, Func. Count: 54, Neg. LLF: 143.05651317640724
Iteration: 8, Func. Count: 61, Neg. LLF: 143.045571524855
Iteration: 9, Func. Count: 68, Neg. LLF: 143.0444255695188
Iteration: 10, Func. Count: 75, Neg. LLF: 143.04440880564644
Iteration: 11, Func. Count: 82, Neg. LLF: 143.04440821635052
Optimization terminated successfully (Exit mode 0)
Current function value: 143.04440821635052
Iterations: 11
Function evaluations: 82
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 19322771.932543144
Iteration: 2, Func. Count: 19, Neg. LLF: 150.7975083686502
Iteration: 3, Func. Count: 29, Neg. LLF: 141.37154086413696
Iteration: 4, Func. Count: 37, Neg. LLF: 141.04224268304336
Iteration: 5, Func. Count: 46, Neg. LLF: 140.09030424547223
Iteration: 6, Func. Count: 54, Neg. LLF: 140.16448348294992
Iteration: 7, Func. Count: 63, Neg. LLF: 140.10448405879254
Iteration: 8, Func. Count: 72, Neg. LLF: 139.90611121118425
Iteration: 9, Func. Count: 80, Neg. LLF: 139.90731003514531
Iteration: 10, Func. Count: 89, Neg. LLF: 139.90228068590736
Iteration: 11, Func. Count: 96, Neg. LLF: 139.90228068605214
Optimization terminated successfully (Exit mode 0)
Current function value: 139.90228068590736
Iterations: 11
Function evaluations: 96
Gradient evaluations: 11
Iteration: 1, Func. Count: 10, Neg. LLF: 19247199.486068632
Iteration: 2, Func. Count: 21, Neg. LLF: 166.77842262921556
Iteration: 3, Func. Count: 31, Neg. LLF: 157.87817224713444
Iteration: 4, Func. Count: 41, Neg. LLF: 145.52973206952942
Iteration: 5, Func. Count: 51, Neg. LLF: 142.90145589819326
Iteration: 6, Func. Count: 61, Neg. LLF: 142.0108373025667
Iteration: 7, Func. Count: 71, Neg. LLF: 142.90578002714267
Iteration: 8, Func. Count: 81, Neg. LLF: 141.93205534674254
Iteration: 9, Func. Count: 91, Neg. LLF: 144.3815633538522
Iteration: 10, Func. Count: 101, Neg. LLF: 140.29367646142816
Iteration: 11, Func. Count: 110, Neg. LLF: 140.17438027036135
Iteration: 12, Func. Count: 119, Neg. LLF: 140.1364506973862
Iteration: 13, Func. Count: 128, Neg. LLF: 140.1294467294874
Iteration: 14, Func. Count: 137, Neg. LLF: 140.12884200672005
Iteration: 15, Func. Count: 146, Neg. LLF: 140.12869635195148
Iteration: 16, Func. Count: 155, Neg. LLF: 140.12854529875548
Iteration: 17, Func. Count: 164, Neg. LLF: 140.12853915634844
Iteration: 18, Func. Count: 172, Neg. LLF: 140.12853915655265
Optimization terminated successfully (Exit mode 0)
Current function value: 140.12853915634844
Iterations: 18
Function evaluations: 172
Gradient evaluations: 18
Iteration: 1, Func. Count: 11, Neg. LLF: 19243987.418685194
Iteration: 2, Func. Count: 23, Neg. LLF: 153.38482566748112
Iteration: 3, Func. Count: 34, Neg. LLF: 143.4114309206751
Iteration: 4, Func. Count: 45, Neg. LLF: 139.93842835498566
Iteration: 5, Func. Count: 55, Neg. LLF: 140.9015025783906
Iteration: 6, Func. Count: 66, Neg. LLF: 141.96109050971015
Iteration: 7, Func. Count: 77, Neg. LLF: 140.95635803208657
Iteration: 8, Func. Count: 90, Neg. LLF: 139.62647029033687
Iteration: 9, Func. Count: 100, Neg. LLF: 139.6184581518126
Iteration: 10, Func. Count: 110, Neg. LLF: 139.61481685791668
Iteration: 11, Func. Count: 120, Neg. LLF: 139.61456992362363
Iteration: 12, Func. Count: 130, Neg. LLF: 139.61454230303428
Iteration: 13, Func. Count: 140, Neg. LLF: 139.61453206462534
Iteration: 14, Func. Count: 149, Neg. LLF: 139.6145320649692
Optimization terminated successfully (Exit mode 0)
Current function value: 139.61453206462534
Iterations: 14
Function evaluations: 149
Gradient evaluations: 14
Iteration: 1, Func. Count: 12, Neg. LLF: 19356349.27206513
Iteration: 2, Func. Count: 25, Neg. LLF: 149.60571960866872
Iteration: 3, Func. Count: 37, Neg. LLF: 141.0087688073414
Iteration: 4, Func. Count: 48, Neg. LLF: 140.63862255623857
Iteration: 5, Func. Count: 59, Neg. LLF: 146.42916582401793
Iteration: 6, Func. Count: 72, Neg. LLF: 140.4570447409903
Iteration: 7, Func. Count: 83, Neg. LLF: 141.68046871615437
Iteration: 8, Func. Count: 95, Neg. LLF: 141.01059828503486
Iteration: 9, Func. Count: 107, Neg. LLF: 140.61388741662935
Iteration: 10, Func. Count: 119, Neg. LLF: 140.21810622989082
Iteration: 11, Func. Count: 130, Neg. LLF: 140.1553967210904
Iteration: 12, Func. Count: 141, Neg. LLF: 140.11117967253247
Iteration: 13, Func. Count: 152, Neg. LLF: 140.1010823770092
Iteration: 14, Func. Count: 163, Neg. LLF: 140.09881297052817
Iteration: 15, Func. Count: 174, Neg. LLF: 140.09860752852072
Iteration: 16, Func. Count: 185, Neg. LLF: 140.09860293417225
Iteration: 17, Func. Count: 195, Neg. LLF: 140.09860293429946
Optimization terminated successfully (Exit mode 0)
Current function value: 140.09860293417225
Iterations: 17
Function evaluations: 195
Gradient evaluations: 17
Iteration: 1, Func. Count: 9, Neg. LLF: 148.13051848604206
Iteration: 2, Func. Count: 18, Neg. LLF: 148.9665198766293
Iteration: 3, Func. Count: 27, Neg. LLF: 143.2207470822493
Iteration: 4, Func. Count: 35, Neg. LLF: 143.87214951140496
Iteration: 5, Func. Count: 44, Neg. LLF: 145.02632461239367
Iteration: 6, Func. Count: 53, Neg. LLF: 143.13117016060193
Iteration: 7, Func. Count: 61, Neg. LLF: 143.11476814060566
Iteration: 8, Func. Count: 69, Neg. LLF: 143.0747848119479
Iteration: 9, Func. Count: 77, Neg. LLF: 143.05323139037827
Iteration: 10, Func. Count: 85, Neg. LLF: 143.04536217665617
Iteration: 11, Func. Count: 93, Neg. LLF: 143.04447225030341
Iteration: 12, Func. Count: 101, Neg. LLF: 143.04440855633197
Iteration: 13, Func. Count: 108, Neg. LLF: 143.0444085686523
Optimization terminated successfully (Exit mode 0)
Current function value: 143.04440855633197
Iterations: 13
Function evaluations: 108
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 19330032.807616588
Iteration: 2, Func. Count: 21, Neg. LLF: 151.02061132967003
Iteration: 3, Func. Count: 32, Neg. LLF: 141.41481052118962
Iteration: 4, Func. Count: 41, Neg. LLF: 141.02877695047408
Iteration: 5, Func. Count: 51, Neg. LLF: 140.43547406710505
Iteration: 6, Func. Count: 60, Neg. LLF: 142.03311794514514
Iteration: 7, Func. Count: 70, Neg. LLF: 140.03849924534344
Iteration: 8, Func. Count: 79, Neg. LLF: 139.9115178864241
Iteration: 9, Func. Count: 88, Neg. LLF: 139.90472306023702
Iteration: 10, Func. Count: 97, Neg. LLF: 139.90266904685558
Iteration: 11, Func. Count: 106, Neg. LLF: 139.9023216580491
Iteration: 12, Func. Count: 115, Neg. LLF: 139.90228281809868
Iteration: 13, Func. Count: 124, Neg. LLF: 139.90228059393422
Iteration: 14, Func. Count: 132, Neg. LLF: 139.90228059369468
Optimization terminated successfully (Exit mode 0)
Current function value: 139.90228059393422
Iterations: 14
Function evaluations: 132
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 19245235.93263306
Iteration: 2, Func. Count: 23, Neg. LLF: 166.69514623945832
Iteration: 3, Func. Count: 34, Neg. LLF: 155.78147536960014
Iteration: 4, Func. Count: 45, Neg. LLF: 145.52310561320576
Iteration: 5, Func. Count: 56, Neg. LLF: 142.95813405747663
Iteration: 6, Func. Count: 67, Neg. LLF: 141.89588918384518
Iteration: 7, Func. Count: 78, Neg. LLF: 141.6138637555773
Iteration: 8, Func. Count: 89, Neg. LLF: 141.81309658641612
Iteration: 9, Func. Count: 100, Neg. LLF: 146.52014060128732
Iteration: 10, Func. Count: 111, Neg. LLF: 140.3034310108312
Iteration: 11, Func. Count: 121, Neg. LLF: 140.20186631865292
Iteration: 12, Func. Count: 131, Neg. LLF: 140.2612470772877
Iteration: 13, Func. Count: 142, Neg. LLF: 140.19170610827834
Iteration: 14, Func. Count: 153, Neg. LLF: 140.17363085995837
Iteration: 15, Func. Count: 163, Neg. LLF: 140.1732724893644
Iteration: 16, Func. Count: 173, Neg. LLF: 140.17193915678695
Iteration: 17, Func. Count: 183, Neg. LLF: 140.17171326614863
Iteration: 18, Func. Count: 193, Neg. LLF: 140.1717003929993
Iteration: 19, Func. Count: 203, Neg. LLF: 140.17169933952633
Iteration: 20, Func. Count: 212, Neg. LLF: 140.171699339524
Optimization terminated successfully (Exit mode 0)
Current function value: 140.17169933952633
Iterations: 20
Function evaluations: 212
Gradient evaluations: 20
Iteration: 1, Func. Count: 12, Neg. LLF: 19242650.18791806
Iteration: 2, Func. Count: 25, Neg. LLF: 153.32569989221025
Iteration: 3, Func. Count: 37, Neg. LLF: 143.4173018945586
Iteration: 4, Func. Count: 49, Neg. LLF: 139.9309839338548
Iteration: 5, Func. Count: 60, Neg. LLF: 140.8181507649804
Iteration: 6, Func. Count: 72, Neg. LLF: 142.12683986642972
Iteration: 7, Func. Count: 85, Neg. LLF: 142.37035172041223
Iteration: 8, Func. Count: 99, Neg. LLF: 139.63068530345592
Iteration: 9, Func. Count: 110, Neg. LLF: 139.61487936055627
Iteration: 10, Func. Count: 121, Neg. LLF: 139.61453341828104
Iteration: 11, Func. Count: 132, Neg. LLF: 139.61453192210766
Iteration: 12, Func. Count: 142, Neg. LLF: 139.61453192209495
Optimization terminated successfully (Exit mode 0)
Current function value: 139.61453192210766
Iterations: 12
Function evaluations: 142
Gradient evaluations: 12
Iteration: 1, Func. Count: 13, Neg. LLF: 19447968.273095783
Iteration: 2, Func. Count: 27, Neg. LLF: 149.25960938038716
Iteration: 3, Func. Count: 40, Neg. LLF: 141.37547273329253
Iteration: 4, Func. Count: 52, Neg. LLF: 142.76616929437486
Iteration: 5, Func. Count: 65, Neg. LLF: 148.70484621788893
Iteration: 6, Func. Count: 78, Neg. LLF: 142.20635323352292
Iteration: 7, Func. Count: 91, Neg. LLF: 140.49826858591038
Iteration: 8, Func. Count: 104, Neg. LLF: 140.4313541692109
Iteration: 9, Func. Count: 117, Neg. LLF: 140.5273857616934
Iteration: 10, Func. Count: 130, Neg. LLF: 140.34625747915726
Iteration: 11, Func. Count: 143, Neg. LLF: 140.30232526303325
Iteration: 12, Func. Count: 155, Neg. LLF: 140.22749848824057
Iteration: 13, Func. Count: 167, Neg. LLF: 140.1503667914409
Iteration: 14, Func. Count: 179, Neg. LLF: 140.10934197808774
Iteration: 15, Func. Count: 191, Neg. LLF: 140.10384285508027
Iteration: 16, Func. Count: 203, Neg. LLF: 140.09932757981966
Iteration: 17, Func. Count: 215, Neg. LLF: 140.0986370136778
Iteration: 18, Func. Count: 227, Neg. LLF: 140.09860455000867
Iteration: 19, Func. Count: 239, Neg. LLF: 140.09860178087092
Iteration: 20, Func. Count: 251, Neg. LLF: 140.13035757627765
Optimization terminated successfully (Exit mode 0)
Current function value: 140.09860177874114
Iterations: 21
Function evaluations: 255
Gradient evaluations: 20
Iteration: 1, Func. Count: 10, Neg. LLF: 148.8214195299276
Iteration: 2, Func. Count: 20, Neg. LLF: 147.11419314153812
Iteration: 3, Func. Count: 30, Neg. LLF: 143.2031239046194
Iteration: 4, Func. Count: 39, Neg. LLF: 143.98714096474552
Iteration: 5, Func. Count: 49, Neg. LLF: 144.58138379268834
Iteration: 6, Func. Count: 59, Neg. LLF: 143.13234875004804
Iteration: 7, Func. Count: 69, Neg. LLF: 143.0939139443257
Iteration: 8, Func. Count: 78, Neg. LLF: 143.06427567186626
Iteration: 9, Func. Count: 87, Neg. LLF: 143.04749000035378
Iteration: 10, Func. Count: 96, Neg. LLF: 143.0446604280037
Iteration: 11, Func. Count: 105, Neg. LLF: 143.0444137708825
Iteration: 12, Func. Count: 114, Neg. LLF: 143.044408242203
Iteration: 13, Func. Count: 122, Neg. LLF: 143.0444082940269
Optimization terminated successfully (Exit mode 0)
Current function value: 143.044408242203
Iterations: 13
Function evaluations: 122
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 19331466.451328225
Iteration: 2, Func. Count: 23, Neg. LLF: 151.02233266164816
Iteration: 3, Func. Count: 35, Neg. LLF: 141.41822514620466
Iteration: 4, Func. Count: 45, Neg. LLF: 141.02865664564783
Iteration: 5, Func. Count: 56, Neg. LLF: 140.4446214209533
Iteration: 6, Func. Count: 66, Neg. LLF: 142.07083603445886
Iteration: 7, Func. Count: 77, Neg. LLF: 140.04435373466492
Iteration: 8, Func. Count: 87, Neg. LLF: 139.91242075598714
Iteration: 9, Func. Count: 97, Neg. LLF: 139.905464541351
Iteration: 10, Func. Count: 107, Neg. LLF: 139.90266929795894
Iteration: 11, Func. Count: 117, Neg. LLF: 139.90232744983695
Iteration: 12, Func. Count: 127, Neg. LLF: 139.90228278950957
Iteration: 13, Func. Count: 137, Neg. LLF: 139.90228060113958
Iteration: 14, Func. Count: 146, Neg. LLF: 139.90228060084604
Optimization terminated successfully (Exit mode 0)
Current function value: 139.90228060113958
Iterations: 14
Function evaluations: 146
Gradient evaluations: 14
Iteration: 1, Func. Count: 12, Neg. LLF: 19244924.53697496
Iteration: 2, Func. Count: 25, Neg. LLF: 166.62692380258363
Iteration: 3, Func. Count: 37, Neg. LLF: 155.58904157451187
Iteration: 4, Func. Count: 49, Neg. LLF: 145.51178415750593
Iteration: 5, Func. Count: 61, Neg. LLF: 142.95272186161753
Iteration: 6, Func. Count: 73, Neg. LLF: 141.8589154906153
Iteration: 7, Func. Count: 85, Neg. LLF: 141.47612712163982
Iteration: 8, Func. Count: 97, Neg. LLF: 141.78131301259344
Iteration: 9, Func. Count: 109, Neg. LLF: 146.15241502648172
Iteration: 10, Func. Count: 121, Neg. LLF: 140.30148854010486
Iteration: 11, Func. Count: 132, Neg. LLF: 140.20153576356148
Iteration: 12, Func. Count: 143, Neg. LLF: 140.23787553160506
Iteration: 13, Func. Count: 155, Neg. LLF: 140.2020474006262
Iteration: 14, Func. Count: 167, Neg. LLF: 140.1735876224243
Iteration: 15, Func. Count: 178, Neg. LLF: 140.173313317259
Iteration: 16, Func. Count: 189, Neg. LLF: 140.17229578159638
Iteration: 17, Func. Count: 200, Neg. LLF: 140.17170292449057
Iteration: 18, Func. Count: 211, Neg. LLF: 140.17169887650624
Iteration: 19, Func. Count: 221, Neg. LLF: 140.17169887662078
Optimization terminated successfully (Exit mode 0)
Current function value: 140.17169887650624
Iterations: 19
Function evaluations: 221
Gradient evaluations: 19
Iteration: 1, Func. Count: 13, Neg. LLF: 19242490.414688878
Iteration: 2, Func. Count: 27, Neg. LLF: 153.31144262809693
Iteration: 3, Func. Count: 40, Neg. LLF: 143.40535324856472
Iteration: 4, Func. Count: 53, Neg. LLF: 139.9289461730247
Iteration: 5, Func. Count: 65, Neg. LLF: 140.78008260576507
Iteration: 6, Func. Count: 78, Neg. LLF: 142.5531389147228
Iteration: 7, Func. Count: 92, Neg. LLF: 144.70483977717467
Iteration: 8, Func. Count: 107, Neg. LLF: 139.64097429113608
Iteration: 9, Func. Count: 120, Neg. LLF: 139.61472583874558
Iteration: 10, Func. Count: 132, Neg. LLF: 139.6145327158306
Iteration: 11, Func. Count: 144, Neg. LLF: 139.61453179361257
Optimization terminated successfully (Exit mode 0)
Current function value: 139.61453179361257
Iterations: 11
Function evaluations: 144
Gradient evaluations: 11
Iteration: 1, Func. Count: 14, Neg. LLF: 19461663.33630609
Iteration: 2, Func. Count: 29, Neg. LLF: 148.97700205908072
Iteration: 3, Func. Count: 43, Neg. LLF: 141.49347610690396
Iteration: 4, Func. Count: 56, Neg. LLF: 142.0579871832263
Iteration: 5, Func. Count: 71, Neg. LLF: 172.1575453730152
Iteration: 6, Func. Count: 85, Neg. LLF: 142.66252934566324
Iteration: 7, Func. Count: 99, Neg. LLF: 141.49662220560046
Iteration: 8, Func. Count: 113, Neg. LLF: 142.26931890602577
Iteration: 9, Func. Count: 127, Neg. LLF: 140.6259804978294
Iteration: 10, Func. Count: 140, Neg. LLF: 140.410562084976
Iteration: 11, Func. Count: 153, Neg. LLF: 140.62487264296814
Iteration: 12, Func. Count: 167, Neg. LLF: 140.34164922183476
Iteration: 13, Func. Count: 180, Neg. LLF: 140.3120517915861
Iteration: 14, Func. Count: 193, Neg. LLF: 140.30527908734538
Iteration: 15, Func. Count: 206, Neg. LLF: 140.28060746626326
Iteration: 16, Func. Count: 219, Neg. LLF: 140.21590316855588
Iteration: 17, Func. Count: 232, Neg. LLF: 140.16464711704654
Iteration: 18, Func. Count: 245, Neg. LLF: 140.14066448290583
Iteration: 19, Func. Count: 258, Neg. LLF: 140.10057048020332
Iteration: 20, Func. Count: 271, Neg. LLF: 140.09868038530848
Iteration: 21, Func. Count: 284, Neg. LLF: 140.09860207723324
Iteration: 22, Func. Count: 297, Neg. LLF: 140.09860149379662
Optimization terminated successfully (Exit mode 0)
Current function value: 140.09860149379662
Iterations: 22
Function evaluations: 297
Gradient evaluations: 22
Iteration: 1, Func. Count: 7, Neg. LLF: 145.07247344937122
Iteration: 2, Func. Count: 14, Neg. LLF: 144.92357727565627
Iteration: 3, Func. Count: 21, Neg. LLF: 143.55996073302364
Iteration: 4, Func. Count: 27, Neg. LLF: 147.1976540703923
Iteration: 5, Func. Count: 34, Neg. LLF: 143.48403376597076
Iteration: 6, Func. Count: 40, Neg. LLF: 143.47212402494125
Iteration: 7, Func. Count: 46, Neg. LLF: 143.45927384459011
Iteration: 8, Func. Count: 52, Neg. LLF: 143.45722148761968
Iteration: 9, Func. Count: 58, Neg. LLF: 143.4569767180827
Iteration: 10, Func. Count: 64, Neg. LLF: 143.45696869927158
Iteration: 11, Func. Count: 69, Neg. LLF: 143.45696877529548
Optimization terminated successfully (Exit mode 0)
Current function value: 143.45696869927158
Iterations: 11
Function evaluations: 69
Gradient evaluations: 11
Iteration: 1, Func. Count: 8, Neg. LLF: 19367648.211768217
Iteration: 2, Func. Count: 17, Neg. LLF: 170.3344983741998
Iteration: 3, Func. Count: 25, Neg. LLF: 140.74270130306118
Iteration: 4, Func. Count: 32, Neg. LLF: 145.58828435117323
Iteration: 5, Func. Count: 40, Neg. LLF: 141.20335185785243
Iteration: 6, Func. Count: 48, Neg. LLF: 140.52833733870364
Iteration: 7, Func. Count: 55, Neg. LLF: 140.55055733096003
Iteration: 8, Func. Count: 63, Neg. LLF: 140.4856270976857
Iteration: 9, Func. Count: 70, Neg. LLF: 140.4190843124793
Iteration: 10, Func. Count: 77, Neg. LLF: 140.41240521893815
Iteration: 11, Func. Count: 84, Neg. LLF: 140.41237556219576
Iteration: 12, Func. Count: 90, Neg. LLF: 140.41237556209396
Optimization terminated successfully (Exit mode 0)
Current function value: 140.41237556219576
Iterations: 12
Function evaluations: 90
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 19292406.513829023
Iteration: 2, Func. Count: 19, Neg. LLF: 169.63222536411956
Iteration: 3, Func. Count: 28, Neg. LLF: 141.4021214589967
Iteration: 4, Func. Count: 36, Neg. LLF: 154.92142425354402
Iteration: 5, Func. Count: 45, Neg. LLF: 153.09974556413349
Iteration: 6, Func. Count: 55, Neg. LLF: 140.6404644224149
Iteration: 7, Func. Count: 64, Neg. LLF: 140.45054042096046
Iteration: 8, Func. Count: 72, Neg. LLF: 140.42553995791806
Iteration: 9, Func. Count: 80, Neg. LLF: 140.41485742984528
Iteration: 10, Func. Count: 88, Neg. LLF: 140.40702698011324
Iteration: 11, Func. Count: 96, Neg. LLF: 140.40061484535698
Iteration: 12, Func. Count: 104, Neg. LLF: 140.39771521866209
Iteration: 13, Func. Count: 112, Neg. LLF: 140.39753441701075
Iteration: 14, Func. Count: 120, Neg. LLF: 140.3975282147331
Iteration: 15, Func. Count: 127, Neg. LLF: 140.39752821497322
Optimization terminated successfully (Exit mode 0)
Current function value: 140.3975282147331
Iterations: 15
Function evaluations: 127
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 19280149.33996073
Iteration: 2, Func. Count: 21, Neg. LLF: 155.590774220394
Iteration: 3, Func. Count: 31, Neg. LLF: 140.80942346753017
Iteration: 4, Func. Count: 40, Neg. LLF: 146.4221530834827
Iteration: 5, Func. Count: 50, Neg. LLF: 142.72846864448456
Iteration: 6, Func. Count: 60, Neg. LLF: 141.1106498734748
Iteration: 7, Func. Count: 70, Neg. LLF: 140.7740673535548
Iteration: 8, Func. Count: 80, Neg. LLF: 144.3357178276331
Iteration: 9, Func. Count: 91, Neg. LLF: 140.40985191614098
Iteration: 10, Func. Count: 101, Neg. LLF: 140.35337877943428
Iteration: 11, Func. Count: 110, Neg. LLF: 140.3524173985756
Iteration: 12, Func. Count: 119, Neg. LLF: 140.351935096839
Iteration: 13, Func. Count: 128, Neg. LLF: 140.35179007796677
Iteration: 14, Func. Count: 137, Neg. LLF: 140.35178751768993
Iteration: 15, Func. Count: 145, Neg. LLF: 140.3517875177444
Optimization terminated successfully (Exit mode 0)
Current function value: 140.35178751768993
Iterations: 15
Function evaluations: 145
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 19255664.40857624
Iteration: 2, Func. Count: 22, Neg. LLF: 147.4778079659348
Iteration: 3, Func. Count: 33, Neg. LLF: 141.47803541650865
Iteration: 4, Func. Count: 44, Neg. LLF: 140.6614712814294
Iteration: 5, Func. Count: 54, Neg. LLF: 140.6673368751347
Iteration: 6, Func. Count: 65, Neg. LLF: 140.3601245539291
Iteration: 7, Func. Count: 75, Neg. LLF: 143.43957641325295
Iteration: 8, Func. Count: 86, Neg. LLF: 140.37623855115484
Iteration: 9, Func. Count: 97, Neg. LLF: 140.30058582802326
Iteration: 10, Func. Count: 108, Neg. LLF: 140.2807888368311
Iteration: 11, Func. Count: 118, Neg. LLF: 140.2801533160416
Iteration: 12, Func. Count: 128, Neg. LLF: 140.27997973347834
Iteration: 13, Func. Count: 138, Neg. LLF: 140.27996314653646
Iteration: 14, Func. Count: 148, Neg. LLF: 140.27996254745432
Optimization terminated successfully (Exit mode 0)
Current function value: 140.27996254745432
Iterations: 14
Function evaluations: 148
Gradient evaluations: 14
Iteration: 1, Func. Count: 8, Neg. LLF: 144.96273260246465
Iteration: 2, Func. Count: 16, Neg. LLF: 144.62315179789985
Iteration: 3, Func. Count: 24, Neg. LLF: 143.71513130143575
Iteration: 4, Func. Count: 32, Neg. LLF: 143.17349786933636
Iteration: 5, Func. Count: 39, Neg. LLF: 146.75206602954572
Iteration: 6, Func. Count: 47, Neg. LLF: 143.10604673479722
Iteration: 7, Func. Count: 54, Neg. LLF: 143.0774846875993
Iteration: 8, Func. Count: 61, Neg. LLF: 143.05808319177217
Iteration: 9, Func. Count: 68, Neg. LLF: 143.0454256326226
Iteration: 10, Func. Count: 75, Neg. LLF: 143.04445913298116
Iteration: 11, Func. Count: 82, Neg. LLF: 143.04440838340753
Iteration: 12, Func. Count: 88, Neg. LLF: 143.04440838342296
Optimization terminated successfully (Exit mode 0)
Current function value: 143.04440838340753
Iterations: 12
Function evaluations: 88
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 19473418.452901017
Iteration: 2, Func. Count: 19, Neg. LLF: 170.28722920178046
Iteration: 3, Func. Count: 28, Neg. LLF: 142.32019656935302
Iteration: 4, Func. Count: 37, Neg. LLF: 141.74276903285016
Iteration: 5, Func. Count: 46, Neg. LLF: 141.36864736997273
Iteration: 6, Func. Count: 55, Neg. LLF: 141.31998591903093
Iteration: 7, Func. Count: 64, Neg. LLF: 140.13265428421175
Iteration: 8, Func. Count: 72, Neg. LLF: 140.1082994761277
Iteration: 9, Func. Count: 80, Neg. LLF: 140.1051946723101
Iteration: 10, Func. Count: 88, Neg. LLF: 140.1051613134318
Iteration: 11, Func. Count: 95, Neg. LLF: 140.10516131229048
Optimization terminated successfully (Exit mode 0)
Current function value: 140.1051613134318
Iterations: 11
Function evaluations: 95
Gradient evaluations: 11
Iteration: 1, Func. Count: 10, Neg. LLF: 19328121.90317578
Iteration: 2, Func. Count: 21, Neg. LLF: 170.08159287576333
Iteration: 3, Func. Count: 31, Neg. LLF: 141.4164198568689
Iteration: 4, Func. Count: 40, Neg. LLF: 157.03032168681585
Iteration: 5, Func. Count: 50, Neg. LLF: 166.8234603621583
Iteration: 6, Func. Count: 61, Neg. LLF: 140.63176918046352
Iteration: 7, Func. Count: 71, Neg. LLF: 140.24027322932218
Iteration: 8, Func. Count: 80, Neg. LLF: 141.41118558728567
Iteration: 9, Func. Count: 90, Neg. LLF: 140.17920915435803
Iteration: 10, Func. Count: 99, Neg. LLF: 140.15626416905957
Iteration: 11, Func. Count: 108, Neg. LLF: 140.14439957021006
Iteration: 12, Func. Count: 117, Neg. LLF: 140.1393260761781
Iteration: 13, Func. Count: 126, Neg. LLF: 140.1302020271616
Iteration: 14, Func. Count: 135, Neg. LLF: 140.12879771304662
Iteration: 15, Func. Count: 144, Neg. LLF: 140.1285503585451
Iteration: 16, Func. Count: 153, Neg. LLF: 140.1285391723728
Iteration: 17, Func. Count: 161, Neg. LLF: 140.12853917218752
Optimization terminated successfully (Exit mode 0)
Current function value: 140.1285391723728
Iterations: 17
Function evaluations: 161
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 19807662.13040466
Iteration: 2, Func. Count: 23, Neg. LLF: 159.65998585639718
Iteration: 3, Func. Count: 34, Neg. LLF: 158.37025085972115
Iteration: 4, Func. Count: 45, Neg. LLF: 142.5561682381894
Iteration: 5, Func. Count: 56, Neg. LLF: 140.6553262440008
Iteration: 6, Func. Count: 66, Neg. LLF: 140.44055607840076
Iteration: 7, Func. Count: 76, Neg. LLF: 141.01819814471835
Iteration: 8, Func. Count: 87, Neg. LLF: 140.48813567623
Iteration: 9, Func. Count: 98, Neg. LLF: 140.36760186895913
Iteration: 10, Func. Count: 108, Neg. LLF: 140.35825584768816
Iteration: 11, Func. Count: 118, Neg. LLF: 140.31352017486364
Iteration: 12, Func. Count: 128, Neg. LLF: 140.1866441926734
Iteration: 13, Func. Count: 138, Neg. LLF: 145.36014613386314
Iteration: 14, Func. Count: 150, Neg. LLF: 143.41694928042537
Iteration: 15, Func. Count: 161, Neg. LLF: 140.13353952641947
Iteration: 16, Func. Count: 171, Neg. LLF: 140.11946984642034
Iteration: 17, Func. Count: 181, Neg. LLF: 140.11666571225152
Iteration: 18, Func. Count: 191, Neg. LLF: 140.11614954876137
Iteration: 19, Func. Count: 201, Neg. LLF: 140.1161270054035
Iteration: 20, Func. Count: 211, Neg. LLF: 140.11612080119463
Iteration: 21, Func. Count: 220, Neg. LLF: 140.11612080126685
Optimization terminated successfully (Exit mode 0)
Current function value: 140.11612080119463
Iterations: 21
Function evaluations: 220
Gradient evaluations: 21
Iteration: 1, Func. Count: 12, Neg. LLF: 20226392.465374995
Iteration: 2, Func. Count: 25, Neg. LLF: 158.20122605691012
Iteration: 3, Func. Count: 37, Neg. LLF: 153.8786485252925
Iteration: 4, Func. Count: 49, Neg. LLF: 158.58553613727886
Iteration: 5, Func. Count: 61, Neg. LLF: 141.72287512350402
Iteration: 6, Func. Count: 73, Neg. LLF: 141.01407518899347
Iteration: 7, Func. Count: 85, Neg. LLF: 140.38227820016445
Iteration: 8, Func. Count: 96, Neg. LLF: 167.46642232648415
Iteration: 9, Func. Count: 109, Neg. LLF: 140.29930832699867
Iteration: 10, Func. Count: 120, Neg. LLF: 140.34292031062742
Iteration: 11, Func. Count: 132, Neg. LLF: 140.27908080001077
Iteration: 12, Func. Count: 143, Neg. LLF: 140.27647573538565
Iteration: 13, Func. Count: 154, Neg. LLF: 140.27642733292066
Iteration: 14, Func. Count: 165, Neg. LLF: 140.27642685806688
Optimization terminated successfully (Exit mode 0)
Current function value: 140.27642685806688
Iterations: 14
Function evaluations: 165
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 146.10636439633964
Iteration: 2, Func. Count: 18, Neg. LLF: 152.2865236308744
Iteration: 3, Func. Count: 27, Neg. LLF: 143.29786001429338
Iteration: 4, Func. Count: 35, Neg. LLF: 143.18092788603158
Iteration: 5, Func. Count: 43, Neg. LLF: 143.157278752722
Iteration: 6, Func. Count: 51, Neg. LLF: 143.27508082276862
Iteration: 7, Func. Count: 60, Neg. LLF: 143.0713823245639
Iteration: 8, Func. Count: 68, Neg. LLF: 143.05796883556326
Iteration: 9, Func. Count: 76, Neg. LLF: 143.04478603594657
Iteration: 10, Func. Count: 84, Neg. LLF: 143.04441517344065
Iteration: 11, Func. Count: 92, Neg. LLF: 143.04440822772915
Iteration: 12, Func. Count: 99, Neg. LLF: 143.0444082848433
Optimization terminated successfully (Exit mode 0)
Current function value: 143.04440822772915
Iterations: 12
Function evaluations: 99
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 19476959.725382954
Iteration: 2, Func. Count: 21, Neg. LLF: 154.47812791059977
Iteration: 3, Func. Count: 32, Neg. LLF: 144.00609402697202
Iteration: 4, Func. Count: 42, Neg. LLF: 141.80332040154752
Iteration: 5, Func. Count: 52, Neg. LLF: 143.29872066779194
Iteration: 6, Func. Count: 62, Neg. LLF: 140.14921583709784
Iteration: 7, Func. Count: 71, Neg. LLF: 141.49891130133736
Iteration: 8, Func. Count: 81, Neg. LLF: 139.9111022879967
Iteration: 9, Func. Count: 90, Neg. LLF: 139.90341881254548
Iteration: 10, Func. Count: 99, Neg. LLF: 139.90239678462237
Iteration: 11, Func. Count: 108, Neg. LLF: 139.90228126816854
Iteration: 12, Func. Count: 117, Neg. LLF: 139.90228058512469
Optimization terminated successfully (Exit mode 0)
Current function value: 139.90228058512469
Iterations: 12
Function evaluations: 117
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 19322288.632611416
Iteration: 2, Func. Count: 23, Neg. LLF: 169.91688165924472
Iteration: 3, Func. Count: 34, Neg. LLF: 141.41017843132383
Iteration: 4, Func. Count: 44, Neg. LLF: 149.05820652403156
Iteration: 5, Func. Count: 55, Neg. LLF: 193.62892370969342
Iteration: 6, Func. Count: 68, Neg. LLF: 140.5353316639761
Iteration: 7, Func. Count: 79, Neg. LLF: 140.29836294026256
Iteration: 8, Func. Count: 89, Neg. LLF: 140.22280507598484
Iteration: 9, Func. Count: 99, Neg. LLF: 142.5782116013238
Iteration: 10, Func. Count: 110, Neg. LLF: 140.158939485903
Iteration: 11, Func. Count: 120, Neg. LLF: 140.14382640404813
Iteration: 12, Func. Count: 130, Neg. LLF: 140.13928576190506
Iteration: 13, Func. Count: 140, Neg. LLF: 140.13541384736536
Iteration: 14, Func. Count: 150, Neg. LLF: 140.12985334859442
Iteration: 15, Func. Count: 160, Neg. LLF: 140.12866261333343
Iteration: 16, Func. Count: 170, Neg. LLF: 140.128544774487
Iteration: 17, Func. Count: 180, Neg. LLF: 140.1285391875088
Iteration: 18, Func. Count: 189, Neg. LLF: 140.12853918700995
Optimization terminated successfully (Exit mode 0)
Current function value: 140.1285391875088
Iterations: 18
Function evaluations: 189
Gradient evaluations: 18
Iteration: 1, Func. Count: 12, Neg. LLF: 19309616.691789504
Iteration: 2, Func. Count: 25, Neg. LLF: 155.8401204692955
Iteration: 3, Func. Count: 37, Neg. LLF: 141.55941999406969
Iteration: 4, Func. Count: 49, Neg. LLF: 140.64822048032156
Iteration: 5, Func. Count: 60, Neg. LLF: 141.01208942694927
Iteration: 6, Func. Count: 73, Neg. LLF: 152.5951861088644
Iteration: 7, Func. Count: 87, Neg. LLF: 139.9324470217588
Iteration: 8, Func. Count: 99, Neg. LLF: 139.6970174869897
Iteration: 9, Func. Count: 110, Neg. LLF: 139.66911636738496
Iteration: 10, Func. Count: 121, Neg. LLF: 139.61876303411248
Iteration: 11, Func. Count: 132, Neg. LLF: 139.61480313691348
Iteration: 12, Func. Count: 143, Neg. LLF: 139.6145887947857
Iteration: 13, Func. Count: 154, Neg. LLF: 139.61453231978948
Iteration: 14, Func. Count: 164, Neg. LLF: 139.61453231991376
Optimization terminated successfully (Exit mode 0)
Current function value: 139.61453231978948
Iterations: 14
Function evaluations: 164
Gradient evaluations: 14
Iteration: 1, Func. Count: 13, Neg. LLF: 19612075.32309012
Iteration: 2, Func. Count: 26, Neg. LLF: 149.50356800756023
Iteration: 3, Func. Count: 39, Neg. LLF: 141.98847991381126
Iteration: 4, Func. Count: 52, Neg. LLF: 146.0693068164697
Iteration: 5, Func. Count: 65, Neg. LLF: 141.83181451827244
Iteration: 6, Func. Count: 78, Neg. LLF: 140.54894926418584
Iteration: 7, Func. Count: 91, Neg. LLF: 142.40203589658245
Iteration: 8, Func. Count: 104, Neg. LLF: 140.21329244738592
Iteration: 9, Func. Count: 116, Neg. LLF: 144.6485975115437
Iteration: 10, Func. Count: 130, Neg. LLF: 140.13225636706335
Iteration: 11, Func. Count: 142, Neg. LLF: 140.11196341086264
Iteration: 12, Func. Count: 154, Neg. LLF: 140.13839549622617
Iteration: 13, Func. Count: 168, Neg. LLF: 140.11293280212647
Iteration: 14, Func. Count: 181, Neg. LLF: 140.11102214043518
Iteration: 15, Func. Count: 193, Neg. LLF: 140.11101777868055
Iteration: 16, Func. Count: 204, Neg. LLF: 140.11101777868996
Optimization terminated successfully (Exit mode 0)
Current function value: 140.11101777868055
Iterations: 16
Function evaluations: 204
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 145.20192625231243
Iteration: 2, Func. Count: 20, Neg. LLF: 146.45001516788892
Iteration: 3, Func. Count: 30, Neg. LLF: 143.41754553279353
Iteration: 4, Func. Count: 39, Neg. LLF: 143.20350073501385
Iteration: 5, Func. Count: 48, Neg. LLF: 144.03606945960553
Iteration: 6, Func. Count: 59, Neg. LLF: 143.13624227052009
Iteration: 7, Func. Count: 68, Neg. LLF: 143.08456408284727
Iteration: 8, Func. Count: 77, Neg. LLF: 143.06629091368288
Iteration: 9, Func. Count: 86, Neg. LLF: 143.05278983378116
Iteration: 10, Func. Count: 95, Neg. LLF: 143.04586192689197
Iteration: 11, Func. Count: 104, Neg. LLF: 143.04447675736924
Iteration: 12, Func. Count: 113, Neg. LLF: 143.0444098280857
Iteration: 13, Func. Count: 122, Neg. LLF: 143.04440821602702
Iteration: 14, Func. Count: 130, Neg. LLF: 143.0444082037093
Optimization terminated successfully (Exit mode 0)
Current function value: 143.04440821602702
Iterations: 14
Function evaluations: 130
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 19489117.87251202
Iteration: 2, Func. Count: 23, Neg. LLF: 183.59807064436913
Iteration: 3, Func. Count: 34, Neg. LLF: 141.15757067455885
Iteration: 4, Func. Count: 44, Neg. LLF: 142.61797989081083
Iteration: 5, Func. Count: 55, Neg. LLF: 261.1957557534414
Iteration: 6, Func. Count: 66, Neg. LLF: 139.665787141536
Iteration: 7, Func. Count: 76, Neg. LLF: 139.72212759630392
Iteration: 8, Func. Count: 87, Neg. LLF: 139.627638408143
Iteration: 9, Func. Count: 98, Neg. LLF: 139.5628467130846
Iteration: 10, Func. Count: 108, Neg. LLF: 139.55994287687255
Iteration: 11, Func. Count: 118, Neg. LLF: 139.5598963162047
Iteration: 12, Func. Count: 128, Neg. LLF: 139.5598932397069
Iteration: 13, Func. Count: 137, Neg. LLF: 139.5598932397272
Optimization terminated successfully (Exit mode 0)
Current function value: 139.5598932397069
Iterations: 13
Function evaluations: 137
Gradient evaluations: 13
Iteration: 1, Func. Count: 12, Neg. LLF: 19329201.017800357
Iteration: 2, Func. Count: 25, Neg. LLF: 178.01708435634055
Iteration: 3, Func. Count: 37, Neg. LLF: 147.4185365196329
Iteration: 4, Func. Count: 49, Neg. LLF: 148.3063314923742
Iteration: 5, Func. Count: 61, Neg. LLF: 145.75321194970192
Iteration: 6, Func. Count: 73, Neg. LLF: 140.4854020585641
Iteration: 7, Func. Count: 84, Neg. LLF: 146.29432953539384
Iteration: 8, Func. Count: 96, Neg. LLF: 170.86572452123917
Iteration: 9, Func. Count: 108, Neg. LLF: 139.54945636352988
Iteration: 10, Func. Count: 119, Neg. LLF: 139.51463061054514
Iteration: 11, Func. Count: 130, Neg. LLF: 139.49678930021722
Iteration: 12, Func. Count: 141, Neg. LLF: 139.49213922262607
Iteration: 13, Func. Count: 152, Neg. LLF: 139.48864799163835
Iteration: 14, Func. Count: 163, Neg. LLF: 139.48798119779715
Iteration: 15, Func. Count: 174, Neg. LLF: 139.48796398728118
Iteration: 16, Func. Count: 185, Neg. LLF: 139.4879627525172
Iteration: 17, Func. Count: 195, Neg. LLF: 139.48796275243632
Optimization terminated successfully (Exit mode 0)
Current function value: 139.4879627525172
Iterations: 17
Function evaluations: 195
Gradient evaluations: 17
Iteration: 1, Func. Count: 13, Neg. LLF: 19315636.195756707
Iteration: 2, Func. Count: 27, Neg. LLF: 156.33013241302402
Iteration: 3, Func. Count: 40, Neg. LLF: 140.7235292753951
Iteration: 4, Func. Count: 52, Neg. LLF: 140.5995186718869
Iteration: 5, Func. Count: 65, Neg. LLF: 147.66066169066715
Iteration: 6, Func. Count: 78, Neg. LLF: 140.58858854564045
Iteration: 7, Func. Count: 91, Neg. LLF: 140.07281240792145
Iteration: 8, Func. Count: 104, Neg. LLF: 139.58698472261062
Iteration: 9, Func. Count: 116, Neg. LLF: 139.77853411240142
Iteration: 10, Func. Count: 129, Neg. LLF: 139.38535075961894
Iteration: 11, Func. Count: 141, Neg. LLF: 139.356333387155
Iteration: 12, Func. Count: 153, Neg. LLF: 139.3540982282249
Iteration: 13, Func. Count: 165, Neg. LLF: 139.35408168462718
Iteration: 14, Func. Count: 176, Neg. LLF: 139.3540816844182
Optimization terminated successfully (Exit mode 0)
Current function value: 139.35408168462718
Iterations: 14
Function evaluations: 176
Gradient evaluations: 14
Iteration: 1, Func. Count: 14, Neg. LLF: 19747642.54086252
Iteration: 2, Func. Count: 28, Neg. LLF: 170.04632994801295
Iteration: 3, Func. Count: 43, Neg. LLF: 145.9351306410504
Iteration: 4, Func. Count: 57, Neg. LLF: 140.49777501087084
Iteration: 5, Func. Count: 70, Neg. LLF: 142.70388503930104
Iteration: 6, Func. Count: 84, Neg. LLF: 156.02533329275818
Iteration: 7, Func. Count: 98, Neg. LLF: 140.85418199239638
Iteration: 8, Func. Count: 112, Neg. LLF: 139.60538292693028
Iteration: 9, Func. Count: 126, Neg. LLF: 139.45910680709048
Iteration: 10, Func. Count: 139, Neg. LLF: 139.45862990106752
Iteration: 11, Func. Count: 152, Neg. LLF: 139.45869478738203
Iteration: 12, Func. Count: 166, Neg. LLF: 139.458342797935
Iteration: 13, Func. Count: 179, Neg. LLF: 139.45833342288873
Iteration: 14, Func. Count: 192, Neg. LLF: 139.45833140042714
Iteration: 15, Func. Count: 204, Neg. LLF: 139.45833140044203
Optimization terminated successfully (Exit mode 0)
Current function value: 139.45833140042714
Iterations: 15
Function evaluations: 204
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 145.11985287004276
Iteration: 2, Func. Count: 22, Neg. LLF: 147.0129026057681
Iteration: 3, Func. Count: 33, Neg. LLF: 143.30406209830616
Iteration: 4, Func. Count: 43, Neg. LLF: 143.17628235223503
Iteration: 5, Func. Count: 53, Neg. LLF: 143.14967352832244
Iteration: 6, Func. Count: 63, Neg. LLF: 143.07976895437542
Iteration: 7, Func. Count: 73, Neg. LLF: 143.06258463237648
Iteration: 8, Func. Count: 83, Neg. LLF: 143.05272741856794
Iteration: 9, Func. Count: 93, Neg. LLF: 143.04460649030395
Iteration: 10, Func. Count: 103, Neg. LLF: 143.04441128333826
Iteration: 11, Func. Count: 113, Neg. LLF: 143.04440821006733
Iteration: 12, Func. Count: 122, Neg. LLF: 143.04440826188696
Optimization terminated successfully (Exit mode 0)
Current function value: 143.04440821006733
Iterations: 12
Function evaluations: 122
Gradient evaluations: 12
Iteration: 1, Func. Count: 12, Neg. LLF: 19491398.403688394
Iteration: 2, Func. Count: 25, Neg. LLF: 183.5760812648045
Iteration: 3, Func. Count: 37, Neg. LLF: 141.16221112190962
Iteration: 4, Func. Count: 48, Neg. LLF: 142.67303647738362
Iteration: 5, Func. Count: 60, Neg. LLF: 262.27423077990875
Iteration: 6, Func. Count: 72, Neg. LLF: 139.67059548343383
Iteration: 7, Func. Count: 83, Neg. LLF: 139.72593738899576
Iteration: 8, Func. Count: 95, Neg. LLF: 139.62943963229958
Iteration: 9, Func. Count: 107, Neg. LLF: 139.56293204236334
Iteration: 10, Func. Count: 118, Neg. LLF: 139.55994235296902
Iteration: 11, Func. Count: 129, Neg. LLF: 139.5598961718305
Iteration: 12, Func. Count: 140, Neg. LLF: 139.55989323937857
Iteration: 13, Func. Count: 150, Neg. LLF: 139.55989323939895
Optimization terminated successfully (Exit mode 0)
Current function value: 139.55989323937857
Iterations: 13
Function evaluations: 150
Gradient evaluations: 13
Iteration: 1, Func. Count: 13, Neg. LLF: 19330997.284304306
Iteration: 2, Func. Count: 27, Neg. LLF: 178.52821127257482
Iteration: 3, Func. Count: 40, Neg. LLF: 147.41320307754594
Iteration: 4, Func. Count: 53, Neg. LLF: 148.31405941464286
Iteration: 5, Func. Count: 66, Neg. LLF: 145.75793562908814
Iteration: 6, Func. Count: 79, Neg. LLF: 140.4275333581169
Iteration: 7, Func. Count: 91, Neg. LLF: 146.30504470591183
Iteration: 8, Func. Count: 104, Neg. LLF: 167.35442635307663
Iteration: 9, Func. Count: 117, Neg. LLF: 139.54519324638363
Iteration: 10, Func. Count: 129, Neg. LLF: 139.5112603611365
Iteration: 11, Func. Count: 141, Neg. LLF: 139.49780692644262
Iteration: 12, Func. Count: 153, Neg. LLF: 139.49034266015224
Iteration: 13, Func. Count: 165, Neg. LLF: 139.4880218684294
Iteration: 14, Func. Count: 177, Neg. LLF: 139.48796741857527
Iteration: 15, Func. Count: 189, Neg. LLF: 139.4879628213976
Iteration: 16, Func. Count: 200, Neg. LLF: 139.48796282151818
Optimization terminated successfully (Exit mode 0)
Current function value: 139.4879628213976
Iterations: 16
Function evaluations: 200
Gradient evaluations: 16
Iteration: 1, Func. Count: 14, Neg. LLF: 19316932.171789013
Iteration: 2, Func. Count: 29, Neg. LLF: 156.677323575478
Iteration: 3, Func. Count: 43, Neg. LLF: 140.7227439529401
Iteration: 4, Func. Count: 56, Neg. LLF: 140.60565643966143
Iteration: 5, Func. Count: 70, Neg. LLF: 147.96062502783158
Iteration: 6, Func. Count: 84, Neg. LLF: 140.59714480036382
Iteration: 7, Func. Count: 98, Neg. LLF: 140.01492529736785
Iteration: 8, Func. Count: 112, Neg. LLF: 139.4959533910075
Iteration: 9, Func. Count: 125, Neg. LLF: 139.7495207126444
Iteration: 10, Func. Count: 139, Neg. LLF: 139.36206355850106
Iteration: 11, Func. Count: 152, Neg. LLF: 139.3545473418465
Iteration: 12, Func. Count: 165, Neg. LLF: 139.35411075780848
Iteration: 13, Func. Count: 178, Neg. LLF: 139.3540822672481
Iteration: 14, Func. Count: 191, Neg. LLF: 139.35408154667144
Optimization terminated successfully (Exit mode 0)
Current function value: 139.35408154667144
Iterations: 14
Function evaluations: 191
Gradient evaluations: 14
Iteration: 1, Func. Count: 15, Neg. LLF: 19781102.3901643
Iteration: 2, Func. Count: 30, Neg. LLF: 167.80521055487395
Iteration: 3, Func. Count: 46, Neg. LLF: 146.78366755099682
Iteration: 4, Func. Count: 61, Neg. LLF: 141.1412618849187
Iteration: 5, Func. Count: 75, Neg. LLF: 139.88285523998633
Iteration: 6, Func. Count: 89, Neg. LLF: 144.44344486362155
Iteration: 7, Func. Count: 104, Neg. LLF: 140.58578983820522
Iteration: 8, Func. Count: 119, Neg. LLF: 140.35355347151264
Iteration: 9, Func. Count: 135, Neg. LLF: 139.55610212147792
Iteration: 10, Func. Count: 150, Neg. LLF: 139.45978359394593
Iteration: 11, Func. Count: 164, Neg. LLF: 139.45858622328362
Iteration: 12, Func. Count: 178, Neg. LLF: 139.4583521051693
Iteration: 13, Func. Count: 192, Neg. LLF: 139.45833541043092
Iteration: 14, Func. Count: 206, Neg. LLF: 139.45833150040426
Iteration: 15, Func. Count: 219, Neg. LLF: 139.45833150035637
Optimization terminated successfully (Exit mode 0)
Current function value: 139.45833150040426
Iterations: 15
Function evaluations: 219
Gradient evaluations: 15
Iteration: 1, Func. Count: 8, Neg. LLF: 144.80840290470414
Iteration: 2, Func. Count: 15, Neg. LLF: 147.77953867042382
Iteration: 3, Func. Count: 23, Neg. LLF: 144.06445755834324
Iteration: 4, Func. Count: 30, Neg. LLF: 145.1198439770559
Iteration: 5, Func. Count: 38, Neg. LLF: 143.6143773117581
Iteration: 6, Func. Count: 46, Neg. LLF: 143.4849199074926
Iteration: 7, Func. Count: 53, Neg. LLF: 143.4601101675165
Iteration: 8, Func. Count: 60, Neg. LLF: 143.45703510955775
Iteration: 9, Func. Count: 67, Neg. LLF: 143.4569685624043
Iteration: 10, Func. Count: 73, Neg. LLF: 143.45696870961137
Optimization terminated successfully (Exit mode 0)
Current function value: 143.4569685624043
Iterations: 10
Function evaluations: 73
Gradient evaluations: 10
Iteration: 1, Func. Count: 9, Neg. LLF: 19441519.405365527
Iteration: 2, Func. Count: 19, Neg. LLF: 175.39687001335514
Iteration: 3, Func. Count: 28, Neg. LLF: 146.174644857551
Iteration: 4, Func. Count: 37, Neg. LLF: 140.7116460210173
Iteration: 5, Func. Count: 45, Neg. LLF: 140.57814519640345
Iteration: 6, Func. Count: 53, Neg. LLF: 140.5231293827412
Iteration: 7, Func. Count: 61, Neg. LLF: 140.49060735608396
Iteration: 8, Func. Count: 69, Neg. LLF: 140.4126127328211
Iteration: 9, Func. Count: 77, Neg. LLF: 140.41237595480214
Iteration: 10, Func. Count: 85, Neg. LLF: 140.41237529797917
Optimization terminated successfully (Exit mode 0)
Current function value: 140.41237529797917
Iterations: 10
Function evaluations: 85
Gradient evaluations: 10
Iteration: 1, Func. Count: 10, Neg. LLF: 19428694.239912435
Iteration: 2, Func. Count: 21, Neg. LLF: 171.8083499427914
Iteration: 3, Func. Count: 31, Neg. LLF: 143.39096305899295
Iteration: 4, Func. Count: 41, Neg. LLF: 141.43804076243387
Iteration: 5, Func. Count: 51, Neg. LLF: 141.13990640880485
Iteration: 6, Func. Count: 61, Neg. LLF: 144.64946805470464
Iteration: 7, Func. Count: 71, Neg. LLF: 140.40000930567967
Iteration: 8, Func. Count: 80, Neg. LLF: 140.39819260292464
Iteration: 9, Func. Count: 89, Neg. LLF: 140.39771160108037
Iteration: 10, Func. Count: 98, Neg. LLF: 140.39753649233836
Iteration: 11, Func. Count: 107, Neg. LLF: 140.3975285960531
Iteration: 12, Func. Count: 116, Neg. LLF: 140.39752788684007
Optimization terminated successfully (Exit mode 0)
Current function value: 140.39752788684007
Iterations: 12
Function evaluations: 116
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 19337193.678903658
Iteration: 2, Func. Count: 22, Neg. LLF: 192.2594148496933
Iteration: 3, Func. Count: 33, Neg. LLF: 142.65913815112563
Iteration: 4, Func. Count: 44, Neg. LLF: 141.60645829932136
Iteration: 5, Func. Count: 55, Neg. LLF: 140.39687560825087
Iteration: 6, Func. Count: 65, Neg. LLF: 141.14002304825692
Iteration: 7, Func. Count: 76, Neg. LLF: 141.18880606131307
Iteration: 8, Func. Count: 87, Neg. LLF: 140.404673212541
Iteration: 9, Func. Count: 98, Neg. LLF: 140.29176276501656
Iteration: 10, Func. Count: 108, Neg. LLF: 140.2891879264838
Iteration: 11, Func. Count: 118, Neg. LLF: 140.28732481144604
Iteration: 12, Func. Count: 128, Neg. LLF: 140.28716060359457
Iteration: 13, Func. Count: 138, Neg. LLF: 140.28715745476669
Iteration: 14, Func. Count: 148, Neg. LLF: 140.28715629698306
Iteration: 15, Func. Count: 157, Neg. LLF: 140.28715629696615
Optimization terminated successfully (Exit mode 0)
Current function value: 140.28715629698306
Iterations: 15
Function evaluations: 157
Gradient evaluations: 15
Iteration: 1, Func. Count: 12, Neg. LLF: 19286416.160101328
Iteration: 2, Func. Count: 24, Neg. LLF: 151.9801578426076
Iteration: 3, Func. Count: 36, Neg. LLF: 141.0152651982447
Iteration: 4, Func. Count: 47, Neg. LLF: 140.6245790853385
Iteration: 5, Func. Count: 58, Neg. LLF: 144.46995172940703
Iteration: 6, Func. Count: 70, Neg. LLF: 140.4431282759099
Iteration: 7, Func. Count: 81, Neg. LLF: 140.57471123931538
Iteration: 8, Func. Count: 93, Neg. LLF: 140.2993246128431
Iteration: 9, Func. Count: 104, Neg. LLF: 140.30049936610516
Iteration: 10, Func. Count: 116, Neg. LLF: 140.27657050344598
Iteration: 11, Func. Count: 127, Neg. LLF: 140.27643088198394
Iteration: 12, Func. Count: 138, Neg. LLF: 140.27642764772824
Iteration: 13, Func. Count: 149, Neg. LLF: 140.27642688743927
Optimization terminated successfully (Exit mode 0)
Current function value: 140.27642688743927
Iterations: 13
Function evaluations: 149
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 144.85023075569194
Iteration: 2, Func. Count: 18, Neg. LLF: 144.07161368850387
Iteration: 3, Func. Count: 27, Neg. LLF: 143.87577698253693
Iteration: 4, Func. Count: 36, Neg. LLF: 143.17399774734153
Iteration: 5, Func. Count: 44, Neg. LLF: 143.15217003562705
Iteration: 6, Func. Count: 53, Neg. LLF: 143.0798421688831
Iteration: 7, Func. Count: 61, Neg. LLF: 143.05287413002003
Iteration: 8, Func. Count: 69, Neg. LLF: 143.04459232150245
Iteration: 9, Func. Count: 77, Neg. LLF: 143.0444091706783
Iteration: 10, Func. Count: 85, Neg. LLF: 143.0444081992836
Optimization terminated successfully (Exit mode 0)
Current function value: 143.0444081992836
Iterations: 10
Function evaluations: 85
Gradient evaluations: 10
Iteration: 1, Func. Count: 10, Neg. LLF: 20171983.30736169
Iteration: 2, Func. Count: 21, Neg. LLF: 149.5745408679173
Iteration: 3, Func. Count: 31, Neg. LLF: 173.08695461084196
Iteration: 4, Func. Count: 41, Neg. LLF: 141.83711876119946
Iteration: 5, Func. Count: 51, Neg. LLF: 140.7963243928553
Iteration: 6, Func. Count: 60, Neg. LLF: 141.14690086408154
Iteration: 7, Func. Count: 70, Neg. LLF: 140.48351934791404
Iteration: 8, Func. Count: 80, Neg. LLF: 140.14482149056536
Iteration: 9, Func. Count: 89, Neg. LLF: 140.11188002238677
Iteration: 10, Func. Count: 98, Neg. LLF: 140.10975344928138
Iteration: 11, Func. Count: 107, Neg. LLF: 140.1056684377302
Iteration: 12, Func. Count: 116, Neg. LLF: 140.1052609197598
Iteration: 13, Func. Count: 125, Neg. LLF: 140.10516158270855
Iteration: 14, Func. Count: 134, Neg. LLF: 140.10516102883034
Optimization terminated successfully (Exit mode 0)
Current function value: 140.10516102883034
Iterations: 14
Function evaluations: 134
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 19495737.142933067
Iteration: 2, Func. Count: 23, Neg. LLF: 172.62463437093092
Iteration: 3, Func. Count: 34, Neg. LLF: 163.46012362336552
Iteration: 4, Func. Count: 45, Neg. LLF: 141.45894747815768
Iteration: 5, Func. Count: 55, Neg. LLF: 141.74054976297174
Iteration: 6, Func. Count: 66, Neg. LLF: 155.5834991073204
Iteration: 7, Func. Count: 78, Neg. LLF: 145.56500241947063
Iteration: 8, Func. Count: 89, Neg. LLF: 140.6710304383154
Iteration: 9, Func. Count: 100, Neg. LLF: 140.15576438545182
Iteration: 10, Func. Count: 110, Neg. LLF: 140.20962356843498
Iteration: 11, Func. Count: 121, Neg. LLF: 140.13222231943945
Iteration: 12, Func. Count: 131, Neg. LLF: 140.13041836390087
Iteration: 13, Func. Count: 141, Neg. LLF: 140.13020112468783
Iteration: 14, Func. Count: 151, Neg. LLF: 140.12965643466234
Iteration: 15, Func. Count: 161, Neg. LLF: 140.1292041996312
Iteration: 16, Func. Count: 171, Neg. LLF: 140.12873560036925
Iteration: 17, Func. Count: 181, Neg. LLF: 140.12856101133804
Iteration: 18, Func. Count: 191, Neg. LLF: 140.1285391102988
Iteration: 19, Func. Count: 200, Neg. LLF: 140.12853911012172
Optimization terminated successfully (Exit mode 0)
Current function value: 140.1285391102988
Iterations: 19
Function evaluations: 200
Gradient evaluations: 19
Iteration: 1, Func. Count: 12, Neg. LLF: 20002372.98148963
Iteration: 2, Func. Count: 25, Neg. LLF: 165.77679182255085
Iteration: 3, Func. Count: 37, Neg. LLF: 158.72386836527028
Iteration: 4, Func. Count: 49, Neg. LLF: 140.79634590409785
Iteration: 5, Func. Count: 60, Neg. LLF: 141.16959414948712
Iteration: 6, Func. Count: 72, Neg. LLF: 141.51188367255136
Iteration: 7, Func. Count: 84, Neg. LLF: 140.58421781415507
Iteration: 8, Func. Count: 96, Neg. LLF: 140.88539212054292
Iteration: 9, Func. Count: 108, Neg. LLF: 141.25346283862305
Iteration: 10, Func. Count: 120, Neg. LLF: 140.4355374465965
Iteration: 11, Func. Count: 132, Neg. LLF: 140.20782698477865
Iteration: 12, Func. Count: 143, Neg. LLF: 140.16979767913696
Iteration: 13, Func. Count: 154, Neg. LLF: 140.11634077527737
Iteration: 14, Func. Count: 165, Neg. LLF: 140.1161812142157
Iteration: 15, Func. Count: 176, Neg. LLF: 140.11614767212984
Iteration: 16, Func. Count: 187, Neg. LLF: 140.11612936172025
Iteration: 17, Func. Count: 198, Neg. LLF: 140.1161232828998
Iteration: 18, Func. Count: 209, Neg. LLF: 140.1161210155271
Iteration: 19, Func. Count: 219, Neg. LLF: 140.11612101528678
Optimization terminated successfully (Exit mode 0)
Current function value: 140.1161210155271
Iterations: 19
Function evaluations: 219
Gradient evaluations: 19
Iteration: 1, Func. Count: 13, Neg. LLF: 20442436.244209435
Iteration: 2, Func. Count: 27, Neg. LLF: 168.7418854489273
Iteration: 3, Func. Count: 41, Neg. LLF: 151.59413215157736
Iteration: 4, Func. Count: 54, Neg. LLF: 149.00288150524904
Iteration: 5, Func. Count: 67, Neg. LLF: 141.92132061622004
Iteration: 6, Func. Count: 80, Neg. LLF: 140.6917184763475
Iteration: 7, Func. Count: 92, Neg. LLF: 140.43734895770743
Iteration: 8, Func. Count: 104, Neg. LLF: 140.67750504629328
Iteration: 9, Func. Count: 117, Neg. LLF: 141.06685423771302
Iteration: 10, Func. Count: 130, Neg. LLF: 140.28620764538033
Iteration: 11, Func. Count: 142, Neg. LLF: 140.2819737488353
Iteration: 12, Func. Count: 154, Neg. LLF: 140.28044346036415
Iteration: 13, Func. Count: 166, Neg. LLF: 140.2801596230596
Iteration: 14, Func. Count: 178, Neg. LLF: 140.2799804137193
Iteration: 15, Func. Count: 190, Neg. LLF: 140.27996990190488
Iteration: 16, Func. Count: 202, Neg. LLF: 140.27996256886792
Iteration: 17, Func. Count: 213, Neg. LLF: 140.2799625688872
Optimization terminated successfully (Exit mode 0)
Current function value: 140.27996256886792
Iterations: 17
Function evaluations: 213
Gradient evaluations: 17
Iteration: 1, Func. Count: 10, Neg. LLF: 145.95331179036546
Iteration: 2, Func. Count: 20, Neg. LLF: 150.28458148523887
Iteration: 3, Func. Count: 30, Neg. LLF: 143.42496476599058
Iteration: 4, Func. Count: 39, Neg. LLF: 143.2184321249127
Iteration: 5, Func. Count: 48, Neg. LLF: 144.1535161199875
Iteration: 6, Func. Count: 59, Neg. LLF: 143.1465070926534
Iteration: 7, Func. Count: 68, Neg. LLF: 143.08717437452424
Iteration: 8, Func. Count: 77, Neg. LLF: 143.06834026444943
Iteration: 9, Func. Count: 86, Neg. LLF: 143.05660158343346
Iteration: 10, Func. Count: 95, Neg. LLF: 143.04481772439505
Iteration: 11, Func. Count: 104, Neg. LLF: 143.0444266791946
Iteration: 12, Func. Count: 113, Neg. LLF: 143.04440836904487
Iteration: 13, Func. Count: 121, Neg. LLF: 143.04440842616526
Optimization terminated successfully (Exit mode 0)
Current function value: 143.04440836904487
Iterations: 13
Function evaluations: 121
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 19580384.17919349
Iteration: 2, Func. Count: 23, Neg. LLF: 155.8732888942107
Iteration: 3, Func. Count: 35, Neg. LLF: 153.88075911680266
Iteration: 4, Func. Count: 46, Neg. LLF: 141.6428550315126
Iteration: 5, Func. Count: 57, Neg. LLF: 141.85146198321291
Iteration: 6, Func. Count: 68, Neg. LLF: 140.25599763373742
Iteration: 7, Func. Count: 78, Neg. LLF: 140.95664324595626
Iteration: 8, Func. Count: 89, Neg. LLF: 144.66488962315037
Iteration: 9, Func. Count: 100, Neg. LLF: 139.90280930266445
Iteration: 10, Func. Count: 110, Neg. LLF: 139.902291920024
Iteration: 11, Func. Count: 120, Neg. LLF: 139.90228071468553
Iteration: 12, Func. Count: 129, Neg. LLF: 139.90228071491478
Optimization terminated successfully (Exit mode 0)
Current function value: 139.90228071468553
Iterations: 12
Function evaluations: 129
Gradient evaluations: 12
Iteration: 1, Func. Count: 12, Neg. LLF: 19486435.72848331
Iteration: 2, Func. Count: 25, Neg. LLF: 172.0875596343788
Iteration: 3, Func. Count: 37, Neg. LLF: 159.7516931588173
Iteration: 4, Func. Count: 49, Neg. LLF: 141.46380660263907
Iteration: 5, Func. Count: 60, Neg. LLF: 141.7630525533131
Iteration: 6, Func. Count: 72, Neg. LLF: 208.17510464611377
Iteration: 7, Func. Count: 84, Neg. LLF: 142.00466481765866
Iteration: 8, Func. Count: 96, Neg. LLF: 140.15044934730895
Iteration: 9, Func. Count: 107, Neg. LLF: 140.13874917431224
Iteration: 10, Func. Count: 118, Neg. LLF: 140.13276878550573
Iteration: 11, Func. Count: 129, Neg. LLF: 140.13236433493788
Iteration: 12, Func. Count: 140, Neg. LLF: 140.1311243521876
Iteration: 13, Func. Count: 151, Neg. LLF: 140.12973416267397
Iteration: 14, Func. Count: 162, Neg. LLF: 140.12892263287796
Iteration: 15, Func. Count: 173, Neg. LLF: 140.12854262088044
Iteration: 16, Func. Count: 184, Neg. LLF: 140.1285389822603
Iteration: 17, Func. Count: 194, Neg. LLF: 140.12853898225055
Optimization terminated successfully (Exit mode 0)
Current function value: 140.1285389822603
Iterations: 17
Function evaluations: 194
Gradient evaluations: 17
Iteration: 1, Func. Count: 13, Neg. LLF: 19587728.427167065
Iteration: 2, Func. Count: 27, Neg. LLF: 158.61619638528794
Iteration: 3, Func. Count: 40, Neg. LLF: 143.715656330149
Iteration: 4, Func. Count: 53, Neg. LLF: 141.61991127234757
Iteration: 5, Func. Count: 66, Neg. LLF: 140.1086951531236
Iteration: 6, Func. Count: 78, Neg. LLF: 145.89369730619993
Iteration: 7, Func. Count: 92, Neg. LLF: 148.57426361608438
Iteration: 8, Func. Count: 105, Neg. LLF: 139.64118672371103
Iteration: 9, Func. Count: 117, Neg. LLF: 139.65400318234464
Iteration: 10, Func. Count: 130, Neg. LLF: 139.61516989019148
Iteration: 11, Func. Count: 142, Neg. LLF: 139.61475918595465
Iteration: 12, Func. Count: 154, Neg. LLF: 139.61460712177754
Iteration: 13, Func. Count: 166, Neg. LLF: 139.61453225739945
Iteration: 14, Func. Count: 177, Neg. LLF: 139.61453225718844
Optimization terminated successfully (Exit mode 0)
Current function value: 139.61453225739945
Iterations: 14
Function evaluations: 177
Gradient evaluations: 14
Iteration: 1, Func. Count: 14, Neg. LLF: 19736158.180831052
Iteration: 2, Func. Count: 28, Neg. LLF: 154.6064696976032
Iteration: 3, Func. Count: 42, Neg. LLF: 141.40730173626415
Iteration: 4, Func. Count: 55, Neg. LLF: 145.36879160735387
Iteration: 5, Func. Count: 69, Neg. LLF: 146.1653615718784
Iteration: 6, Func. Count: 83, Neg. LLF: 162.12961003468644
Iteration: 7, Func. Count: 97, Neg. LLF: 141.79720693625748
Iteration: 8, Func. Count: 111, Neg. LLF: 140.9008434392151
Iteration: 9, Func. Count: 125, Neg. LLF: 140.33252762187288
Iteration: 10, Func. Count: 139, Neg. LLF: 140.11191518066303
Iteration: 11, Func. Count: 152, Neg. LLF: 140.10785808206927
Iteration: 12, Func. Count: 165, Neg. LLF: 140.10731960515494
Iteration: 13, Func. Count: 178, Neg. LLF: 140.10724348640431
Iteration: 14, Func. Count: 191, Neg. LLF: 140.1072282476526
Iteration: 15, Func. Count: 204, Neg. LLF: 140.10722385671335
Iteration: 16, Func. Count: 216, Neg. LLF: 140.10722385654657
Optimization terminated successfully (Exit mode 0)
Current function value: 140.10722385671335
Iterations: 16
Function evaluations: 216
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 145.083453081933
Iteration: 2, Func. Count: 22, Neg. LLF: 145.27309301811326
Iteration: 3, Func. Count: 33, Neg. LLF: 143.80310274041338
Iteration: 4, Func. Count: 44, Neg. LLF: 143.27223917362895
Iteration: 5, Func. Count: 54, Neg. LLF: 143.29833943223403
Iteration: 6, Func. Count: 65, Neg. LLF: 143.09680871188763
Iteration: 7, Func. Count: 75, Neg. LLF: 143.081077157213
Iteration: 8, Func. Count: 85, Neg. LLF: 143.05419590047694
Iteration: 9, Func. Count: 95, Neg. LLF: 143.04685233200533
Iteration: 10, Func. Count: 105, Neg. LLF: 143.0444240362073
Iteration: 11, Func. Count: 115, Neg. LLF: 143.04440843184042
Iteration: 12, Func. Count: 124, Neg. LLF: 143.0444084195453
Optimization terminated successfully (Exit mode 0)
Current function value: 143.04440843184042
Iterations: 12
Function evaluations: 124
Gradient evaluations: 12
Iteration: 1, Func. Count: 12, Neg. LLF: 19595174.340981107
Iteration: 2, Func. Count: 25, Neg. LLF: 180.7368824983179
Iteration: 3, Func. Count: 38, Neg. LLF: 140.67991513510066
Iteration: 4, Func. Count: 49, Neg. LLF: 140.4747217127376
Iteration: 5, Func. Count: 61, Neg. LLF: 139.70794340771909
Iteration: 6, Func. Count: 72, Neg. LLF: 139.64734426309866
Iteration: 7, Func. Count: 83, Neg. LLF: 141.31674814695924
Iteration: 8, Func. Count: 95, Neg. LLF: 139.56132292973325
Iteration: 9, Func. Count: 106, Neg. LLF: 139.56042123518355
Iteration: 10, Func. Count: 117, Neg. LLF: 139.5599097352201
Iteration: 11, Func. Count: 128, Neg. LLF: 139.5598938213825
Iteration: 12, Func. Count: 139, Neg. LLF: 139.55989323725888
Optimization terminated successfully (Exit mode 0)
Current function value: 139.55989323725888
Iterations: 12
Function evaluations: 139
Gradient evaluations: 12
Iteration: 1, Func. Count: 13, Neg. LLF: 19499538.17319559
Iteration: 2, Func. Count: 27, Neg. LLF: 185.83515369515786
Iteration: 3, Func. Count: 40, Neg. LLF: 146.79004889670642
Iteration: 4, Func. Count: 53, Neg. LLF: 148.24717136795283
Iteration: 5, Func. Count: 66, Neg. LLF: 146.49161834211347
Iteration: 6, Func. Count: 79, Neg. LLF: 139.81525518360897
Iteration: 7, Func. Count: 91, Neg. LLF: 139.66839473486294
Iteration: 8, Func. Count: 103, Neg. LLF: 144.28112661942828
Iteration: 9, Func. Count: 117, Neg. LLF: 147.51643887936729
Iteration: 10, Func. Count: 130, Neg. LLF: 139.49563002509453
Iteration: 11, Func. Count: 142, Neg. LLF: 139.4903671571339
Iteration: 12, Func. Count: 154, Neg. LLF: 139.48902282748418
Iteration: 13, Func. Count: 166, Neg. LLF: 139.48802075885314
Iteration: 14, Func. Count: 178, Neg. LLF: 139.48796343980916
Iteration: 15, Func. Count: 190, Neg. LLF: 139.48796270225267
Optimization terminated successfully (Exit mode 0)
Current function value: 139.48796270225267
Iterations: 15
Function evaluations: 190
Gradient evaluations: 15
Iteration: 1, Func. Count: 14, Neg. LLF: 19665823.103011582
Iteration: 2, Func. Count: 29, Neg. LLF: 156.38406561670467
Iteration: 3, Func. Count: 43, Neg. LLF: 142.2700682703655
Iteration: 4, Func. Count: 57, Neg. LLF: 140.38037786581208
Iteration: 5, Func. Count: 70, Neg. LLF: 143.9454057017059
Iteration: 6, Func. Count: 84, Neg. LLF: 177.63504535294157
Iteration: 7, Func. Count: 98, Neg. LLF: 144.41033572752937
Iteration: 8, Func. Count: 112, Neg. LLF: 145.321790625497
Iteration: 9, Func. Count: 126, Neg. LLF: 145.6440747783839
Iteration: 10, Func. Count: 140, Neg. LLF: 139.68482428523902
Iteration: 11, Func. Count: 154, Neg. LLF: 139.36240630221243
Iteration: 12, Func. Count: 167, Neg. LLF: 139.3586912527287
Iteration: 13, Func. Count: 180, Neg. LLF: 139.3551134520029
Iteration: 14, Func. Count: 193, Neg. LLF: 139.35441383394965
Iteration: 15, Func. Count: 206, Neg. LLF: 139.35416788300188
Iteration: 16, Func. Count: 219, Neg. LLF: 139.3540992790123
Iteration: 17, Func. Count: 232, Neg. LLF: 139.35408397176425
Iteration: 18, Func. Count: 245, Neg. LLF: 139.35408152762625
Iteration: 19, Func. Count: 257, Neg. LLF: 139.35408152783756
Optimization terminated successfully (Exit mode 0)
Current function value: 139.35408152762625
Iterations: 19
Function evaluations: 257
Gradient evaluations: 19
Iteration: 1, Func. Count: 15, Neg. LLF: 19905967.59569867
Iteration: 2, Func. Count: 30, Neg. LLF: 247.32642673069216
Iteration: 3, Func. Count: 46, Neg. LLF: 140.21517640658897
Iteration: 4, Func. Count: 60, Neg. LLF: 142.0871770462132
Iteration: 5, Func. Count: 75, Neg. LLF: 147.05130247827688
Iteration: 6, Func. Count: 91, Neg. LLF: 139.86305593866598
Iteration: 7, Func. Count: 106, Neg. LLF: 141.2130991239507
Iteration: 8, Func. Count: 121, Neg. LLF: 139.46609142987003
Iteration: 9, Func. Count: 135, Neg. LLF: 139.4589892513701
Iteration: 10, Func. Count: 149, Neg. LLF: 139.45856734169237
Iteration: 11, Func. Count: 163, Neg. LLF: 139.4583324570685
Iteration: 12, Func. Count: 177, Neg. LLF: 139.45833143355443
Iteration: 13, Func. Count: 190, Neg. LLF: 139.45833143364732
Optimization terminated successfully (Exit mode 0)
Current function value: 139.45833143355443
Iterations: 13
Function evaluations: 190
Gradient evaluations: 13
Iteration: 1, Func. Count: 12, Neg. LLF: 144.8448311028393
Iteration: 2, Func. Count: 23, Neg. LLF: 148.59421539025257
Iteration: 3, Func. Count: 35, Neg. LLF: 143.3829816554958
Iteration: 4, Func. Count: 46, Neg. LLF: 143.98285350291613
Iteration: 5, Func. Count: 58, Neg. LLF: 144.93788634545086
Iteration: 6, Func. Count: 70, Neg. LLF: 148.722761713937
Iteration: 7, Func. Count: 82, Neg. LLF: 143.13525951955495
Iteration: 8, Func. Count: 93, Neg. LLF: 143.08950160375892
Iteration: 9, Func. Count: 104, Neg. LLF: 143.0770213362395
Iteration: 10, Func. Count: 115, Neg. LLF: 143.06135845455245
Iteration: 11, Func. Count: 126, Neg. LLF: 143.04884868886097
Iteration: 12, Func. Count: 137, Neg. LLF: 143.04460188563667
Iteration: 13, Func. Count: 148, Neg. LLF: 143.04441135369754
Iteration: 14, Func. Count: 159, Neg. LLF: 143.044408206659
Iteration: 15, Func. Count: 169, Neg. LLF: 143.0444081548436
Optimization terminated successfully (Exit mode 0)
Current function value: 143.044408206659
Iterations: 15
Function evaluations: 169
Gradient evaluations: 15
Iteration: 1, Func. Count: 13, Neg. LLF: 19597444.703750845
Iteration: 2, Func. Count: 27, Neg. LLF: 448.73198334763674
Iteration: 3, Func. Count: 41, Neg. LLF: 140.66915849021626
Iteration: 4, Func. Count: 53, Neg. LLF: 140.33429783347057
Iteration: 5, Func. Count: 66, Neg. LLF: 139.9224829491081
Iteration: 6, Func. Count: 79, Neg. LLF: 139.3584444009434
Iteration: 7, Func. Count: 91, Neg. LLF: 139.40371009732564
Iteration: 8, Func. Count: 104, Neg. LLF: 139.31864512473234
Iteration: 9, Func. Count: 116, Neg. LLF: 139.31462229795358
Iteration: 10, Func. Count: 128, Neg. LLF: 139.3145188879169
Iteration: 11, Func. Count: 140, Neg. LLF: 139.3145178317157
Iteration: 12, Func. Count: 151, Neg. LLF: 139.31451783166986
Optimization terminated successfully (Exit mode 0)
Current function value: 139.3145178317157
Iterations: 12
Function evaluations: 151
Gradient evaluations: 12
Iteration: 1, Func. Count: 14, Neg. LLF: 19502137.942627557
Iteration: 2, Func. Count: 29, Neg. LLF: 153.34798618274306
Iteration: 3, Func. Count: 43, Neg. LLF: 146.99915271600324
Iteration: 4, Func. Count: 57, Neg. LLF: 154.39726724522345
Iteration: 5, Func. Count: 71, Neg. LLF: 147.1567415600205
Iteration: 6, Func. Count: 85, Neg. LLF: 144.46818709920058
Iteration: 7, Func. Count: 99, Neg. LLF: 140.11404061463548
Iteration: 8, Func. Count: 112, Neg. LLF: 144.30744270907198
Iteration: 9, Func. Count: 126, Neg. LLF: 212.94823803588827
Iteration: 10, Func. Count: 141, Neg. LLF: 145.70234200316386
Iteration: 11, Func. Count: 155, Neg. LLF: 139.49886096854192
Iteration: 12, Func. Count: 168, Neg. LLF: 139.49043276676588
Iteration: 13, Func. Count: 181, Neg. LLF: 139.48880165875448
Iteration: 14, Func. Count: 194, Neg. LLF: 139.4881489099059
Iteration: 15, Func. Count: 207, Neg. LLF: 139.4879807040391
Iteration: 16, Func. Count: 220, Neg. LLF: 139.48796304684592
Iteration: 17, Func. Count: 232, Neg. LLF: 139.4879630473013
Optimization terminated successfully (Exit mode 0)
Current function value: 139.48796304684592
Iterations: 17
Function evaluations: 232
Gradient evaluations: 17
Iteration: 1, Func. Count: 15, Neg. LLF: 19392992.139955174
Iteration: 2, Func. Count: 30, Neg. LLF: 7019011.389048276
Iteration: 3, Func. Count: 46, Neg. LLF: 140.41731904303407
Iteration: 4, Func. Count: 60, Neg. LLF: 146.3637189959646
Iteration: 5, Func. Count: 76, Neg. LLF: 265.73131798269395
Iteration: 6, Func. Count: 91, Neg. LLF: 140.15860935335783
Iteration: 7, Func. Count: 106, Neg. LLF: 141.4348980765334
Iteration: 8, Func. Count: 121, Neg. LLF: 139.58556269464245
Iteration: 9, Func. Count: 135, Neg. LLF: 139.57659773762072
Iteration: 10, Func. Count: 149, Neg. LLF: 139.4857672827315
Iteration: 11, Func. Count: 163, Neg. LLF: 139.46646323700304
Iteration: 12, Func. Count: 177, Neg. LLF: 139.43165278674405
Iteration: 13, Func. Count: 191, Neg. LLF: 139.64967287943546
Iteration: 14, Func. Count: 207, Neg. LLF: 139.42070564246427
Iteration: 15, Func. Count: 221, Neg. LLF: 139.41946782820045
Iteration: 16, Func. Count: 235, Neg. LLF: 139.41926559238934
Iteration: 17, Func. Count: 249, Neg. LLF: 139.41908913889233
Iteration: 18, Func. Count: 263, Neg. LLF: 139.41908524149437
Iteration: 19, Func. Count: 277, Neg. LLF: 139.41908472444902
Optimization terminated successfully (Exit mode 0)
Current function value: 139.41908472444902
Iterations: 19
Function evaluations: 277
Gradient evaluations: 19
Iteration: 1, Func. Count: 16, Neg. LLF: 19944664.025944818
Iteration: 2, Func. Count: 32, Neg. LLF: 21170.400596908974
Iteration: 3, Func. Count: 49, Neg. LLF: 140.01033610625063
Iteration: 4, Func. Count: 64, Neg. LLF: 145.08249110746664
Iteration: 5, Func. Count: 80, Neg. LLF: 148.6993112708429
Iteration: 6, Func. Count: 97, Neg. LLF: 139.99556212419733
Iteration: 7, Func. Count: 113, Neg. LLF: 139.46196148776815
Iteration: 8, Func. Count: 128, Neg. LLF: 139.4593927016066
Iteration: 9, Func. Count: 143, Neg. LLF: 139.45871905296644
Iteration: 10, Func. Count: 158, Neg. LLF: 139.45843461298836
Iteration: 11, Func. Count: 173, Neg. LLF: 139.4583314722526
Iteration: 12, Func. Count: 187, Neg. LLF: 139.4583314722562
Optimization terminated successfully (Exit mode 0)
Current function value: 139.4583314722526
Iterations: 12
Function evaluations: 187
Gradient evaluations: 12
Iteration: 1, Func. Count: 6, Neg. LLF: 19243796.60442663
Iteration: 2, Func. Count: 13, Neg. LLF: 162.73436749603673
Iteration: 3, Func. Count: 19, Neg. LLF: 150.73015088784308
Iteration: 4, Func. Count: 25, Neg. LLF: 146.94072528699704
Iteration: 5, Func. Count: 31, Neg. LLF: 143.02491199681626
Iteration: 6, Func. Count: 37, Neg. LLF: 141.64311357393188
Iteration: 7, Func. Count: 43, Neg. LLF: 140.47116675745218
Iteration: 8, Func. Count: 48, Neg. LLF: 140.84098386595772
Iteration: 9, Func. Count: 54, Neg. LLF: 140.41300655367715
Iteration: 10, Func. Count: 59, Neg. LLF: 140.41237623770317
Iteration: 11, Func. Count: 64, Neg. LLF: 140.41237529992927
Optimization terminated successfully (Exit mode 0)
Current function value: 140.41237529992927
Iterations: 11
Function evaluations: 64
Gradient evaluations: 11
Iteration: 1, Func. Count: 5, Neg. LLF: 146.61442916019854
Iteration: 2, Func. Count: 10, Neg. LLF: 140.96270366639544
Iteration: 3, Func. Count: 14, Neg. LLF: 138.96840649827936
Iteration: 4, Func. Count: 18, Neg. LLF: 139.22296642956326
Iteration: 5, Func. Count: 23, Neg. LLF: 138.6773012858362
Iteration: 6, Func. Count: 27, Neg. LLF: 138.6623611824918
Iteration: 7, Func. Count: 31, Neg. LLF: 138.66030876118108
Iteration: 8, Func. Count: 35, Neg. LLF: 138.6601307397476
Iteration: 9, Func. Count: 39, Neg. LLF: 138.6600512482701
Iteration: 10, Func. Count: 43, Neg. LLF: 138.66003769859242
Iteration: 11, Func. Count: 47, Neg. LLF: 138.66003695264789
Optimization terminated successfully (Exit mode 0)
Current function value: 138.66003695264789
Iterations: 11
Function evaluations: 47
Gradient evaluations: 11
Iteration: 1, Func. Count: 6, Neg. LLF: 21871285.590662096
Iteration: 2, Func. Count: 13, Neg. LLF: 138.14318891390792
Iteration: 3, Func. Count: 18, Neg. LLF: 138.22499883427778
Iteration: 4, Func. Count: 24, Neg. LLF: 138.8155358892423
Iteration: 5, Func. Count: 30, Neg. LLF: 137.54096237385383
Iteration: 6, Func. Count: 35, Neg. LLF: 137.27107974095168
Iteration: 7, Func. Count: 40, Neg. LLF: 137.2695069777546
Iteration: 8, Func. Count: 45, Neg. LLF: 137.26936738577825
Iteration: 9, Func. Count: 49, Neg. LLF: 137.26936738628297
Optimization terminated successfully (Exit mode 0)
Current function value: 137.26936738577825
Iterations: 9
Function evaluations: 49
Gradient evaluations: 9
Iteration: 1, Func. Count: 7, Neg. LLF: 21879322.626681995
Iteration: 2, Func. Count: 15, Neg. LLF: 138.8482486506305
Iteration: 3, Func. Count: 22, Neg. LLF: 137.68309993237025
Iteration: 4, Func. Count: 28, Neg. LLF: 137.61367081048294
Iteration: 5, Func. Count: 35, Neg. LLF: 137.2903206977167
Iteration: 6, Func. Count: 41, Neg. LLF: 137.28304087522937
Iteration: 7, Func. Count: 47, Neg. LLF: 137.28193711232566
Iteration: 8, Func. Count: 53, Neg. LLF: 137.28192712725843
Iteration: 9, Func. Count: 59, Neg. LLF: 137.28192661601702
Optimization terminated successfully (Exit mode 0)
Current function value: 137.28192661601702
Iterations: 9
Function evaluations: 59
Gradient evaluations: 9
Iteration: 1, Func. Count: 8, Neg. LLF: 21874210.05511085
Iteration: 2, Func. Count: 17, Neg. LLF: 138.36045723667408
Iteration: 3, Func. Count: 25, Neg. LLF: 137.4985720011235
Iteration: 4, Func. Count: 32, Neg. LLF: 137.41890229334803
Iteration: 5, Func. Count: 40, Neg. LLF: 137.27633106276733
Iteration: 6, Func. Count: 47, Neg. LLF: 137.27587374568373
Iteration: 7, Func. Count: 55, Neg. LLF: 137.2688693755148
Iteration: 8, Func. Count: 62, Neg. LLF: 137.26015724079525
Iteration: 9, Func. Count: 69, Neg. LLF: 137.2437324075054
Iteration: 10, Func. Count: 76, Neg. LLF: 137.24301646600048
Iteration: 11, Func. Count: 83, Neg. LLF: 137.24295059377383
Iteration: 12, Func. Count: 90, Neg. LLF: 137.2429332538855
Iteration: 13, Func. Count: 97, Neg. LLF: 137.2429292415709
Iteration: 14, Func. Count: 103, Neg. LLF: 137.2429292417407
Optimization terminated successfully (Exit mode 0)
Current function value: 137.2429292415709
Iterations: 14
Function evaluations: 103
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 21866712.28828784
Iteration: 2, Func. Count: 19, Neg. LLF: 138.14723185198548
Iteration: 3, Func. Count: 28, Neg. LLF: 137.4404100514952
Iteration: 4, Func. Count: 36, Neg. LLF: 137.400658851748
Iteration: 5, Func. Count: 44, Neg. LLF: 137.32180527989203
Iteration: 6, Func. Count: 52, Neg. LLF: 137.3156284629193
Iteration: 7, Func. Count: 60, Neg. LLF: 137.31473883142323
Iteration: 8, Func. Count: 68, Neg. LLF: 137.31442160376042
Iteration: 9, Func. Count: 76, Neg. LLF: 137.31428644830237
Iteration: 10, Func. Count: 84, Neg. LLF: 137.3142247793919
Iteration: 11, Func. Count: 92, Neg. LLF: 137.31421499348463
Iteration: 12, Func. Count: 99, Neg. LLF: 137.31421499339987
Optimization terminated successfully (Exit mode 0)
Current function value: 137.31421499348463
Iterations: 12
Function evaluations: 99
Gradient evaluations: 12
Iteration: 1, Func. Count: 6, Neg. LLF: 148.0997044831017
Iteration: 2, Func. Count: 13, Neg. LLF: 138.9587741121759
Iteration: 3, Func. Count: 18, Neg. LLF: 139.75698244805199
Iteration: 4, Func. Count: 24, Neg. LLF: 138.7105385505144
Iteration: 5, Func. Count: 29, Neg. LLF: 138.66834491657792
Iteration: 6, Func. Count: 34, Neg. LLF: 138.66016588221416
Iteration: 7, Func. Count: 39, Neg. LLF: 138.66003735956477
Iteration: 8, Func. Count: 43, Neg. LLF: 138.66003740115335
Optimization terminated successfully (Exit mode 0)
Current function value: 138.66003735956477
Iterations: 8
Function evaluations: 43
Gradient evaluations: 8
Iteration: 1, Func. Count: 7, Neg. LLF: 21875981.31208081
Iteration: 2, Func. Count: 15, Neg. LLF: 138.17668838486705
Iteration: 3, Func. Count: 21, Neg. LLF: 138.24694338417547
Iteration: 4, Func. Count: 28, Neg. LLF: 138.9478730602592
Iteration: 5, Func. Count: 35, Neg. LLF: 137.56077349937473
Iteration: 6, Func. Count: 41, Neg. LLF: 137.27009866445533
Iteration: 7, Func. Count: 47, Neg. LLF: 137.26941912758366
Iteration: 8, Func. Count: 53, Neg. LLF: 137.26936736000545
Iteration: 9, Func. Count: 58, Neg. LLF: 137.26936735996543
Optimization terminated successfully (Exit mode 0)
Current function value: 137.26936736000545
Iterations: 9
Function evaluations: 58
Gradient evaluations: 9
Iteration: 1, Func. Count: 8, Neg. LLF: 21879813.756132588
Iteration: 2, Func. Count: 17, Neg. LLF: 138.84608419093084
Iteration: 3, Func. Count: 25, Neg. LLF: 137.67290674570748
Iteration: 4, Func. Count: 32, Neg. LLF: 137.5931891460847
Iteration: 5, Func. Count: 40, Neg. LLF: 137.28936746346534
Iteration: 6, Func. Count: 47, Neg. LLF: 137.28267780540276
Iteration: 7, Func. Count: 54, Neg. LLF: 137.2819350850866
Iteration: 8, Func. Count: 61, Neg. LLF: 137.28192691845896
Iteration: 9, Func. Count: 67, Neg. LLF: 137.28192691792705
Optimization terminated successfully (Exit mode 0)
Current function value: 137.28192691845896
Iterations: 9
Function evaluations: 67
Gradient evaluations: 9
Iteration: 1, Func. Count: 9, Neg. LLF: 21874251.768528238
Iteration: 2, Func. Count: 19, Neg. LLF: 138.34626558860066
Iteration: 3, Func. Count: 28, Neg. LLF: 137.494103977645
Iteration: 4, Func. Count: 36, Neg. LLF: 137.44204817712404
Iteration: 5, Func. Count: 45, Neg. LLF: 137.2778761580793
Iteration: 6, Func. Count: 53, Neg. LLF: 137.27590101432054
Iteration: 7, Func. Count: 61, Neg. LLF: 137.26698218732278
Iteration: 8, Func. Count: 69, Neg. LLF: 137.24723919201332
Iteration: 9, Func. Count: 77, Neg. LLF: 137.24306572961729
Iteration: 10, Func. Count: 85, Neg. LLF: 137.24293546476082
Iteration: 11, Func. Count: 93, Neg. LLF: 137.24292939230543
Iteration: 12, Func. Count: 100, Neg. LLF: 137.24292939186
Optimization terminated successfully (Exit mode 0)
Current function value: 137.24292939230543
Iterations: 12
Function evaluations: 100
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 21866812.58308688
Iteration: 2, Func. Count: 21, Neg. LLF: 138.13042711629575
Iteration: 3, Func. Count: 31, Neg. LLF: 137.43461951879485
Iteration: 4, Func. Count: 40, Neg. LLF: 137.40441036912694
Iteration: 5, Func. Count: 50, Neg. LLF: 137.32215572815605
Iteration: 6, Func. Count: 59, Neg. LLF: 137.31473026266605
Iteration: 7, Func. Count: 68, Neg. LLF: 137.31451972487585
Iteration: 8, Func. Count: 77, Neg. LLF: 137.31428177381477
Iteration: 9, Func. Count: 86, Neg. LLF: 137.3142285931005
Iteration: 10, Func. Count: 95, Neg. LLF: 137.31421517164966
Iteration: 11, Func. Count: 104, Neg. LLF: 137.31421450488375
Optimization terminated successfully (Exit mode 0)
Current function value: 137.31421450488375
Iterations: 11
Function evaluations: 104
Gradient evaluations: 11
Iteration: 1, Func. Count: 7, Neg. LLF: 144.80412630046763
Iteration: 2, Func. Count: 15, Neg. LLF: 141.0708955170069
Iteration: 3, Func. Count: 21, Neg. LLF: 140.505044627989
Iteration: 4, Func. Count: 27, Neg. LLF: 138.75407407500342
Iteration: 5, Func. Count: 33, Neg. LLF: 138.67215671506548
Iteration: 6, Func. Count: 39, Neg. LLF: 138.66392940179273
Iteration: 7, Func. Count: 45, Neg. LLF: 138.66035469046838
Iteration: 8, Func. Count: 51, Neg. LLF: 138.66006411270726
Iteration: 9, Func. Count: 57, Neg. LLF: 138.66003694584583
Iteration: 10, Func. Count: 62, Neg. LLF: 138.66003696743363
Optimization terminated successfully (Exit mode 0)
Current function value: 138.66003694584583
Iterations: 10
Function evaluations: 62
Gradient evaluations: 10
Iteration: 1, Func. Count: 8, Neg. LLF: 21881686.360106118
Iteration: 2, Func. Count: 17, Neg. LLF: 138.2481449227233
Iteration: 3, Func. Count: 24, Neg. LLF: 138.2947471392365
Iteration: 4, Func. Count: 32, Neg. LLF: 139.15699214021475
Iteration: 5, Func. Count: 40, Neg. LLF: 137.6215792507848
Iteration: 6, Func. Count: 48, Neg. LLF: 137.28130679619548
Iteration: 7, Func. Count: 55, Neg. LLF: 137.27424356866385
Iteration: 8, Func. Count: 62, Neg. LLF: 137.26936977352543
Iteration: 9, Func. Count: 69, Neg. LLF: 137.26936736130688
Iteration: 10, Func. Count: 75, Neg. LLF: 137.2693673613756
Optimization terminated successfully (Exit mode 0)
Current function value: 137.26936736130688
Iterations: 10
Function evaluations: 75
Gradient evaluations: 10
Iteration: 1, Func. Count: 9, Neg. LLF: 21885936.60664376
Iteration: 2, Func. Count: 19, Neg. LLF: 138.9070399914504
Iteration: 3, Func. Count: 28, Neg. LLF: 137.68292451044815
Iteration: 4, Func. Count: 36, Neg. LLF: 137.58151773773469
Iteration: 5, Func. Count: 45, Neg. LLF: 137.2884948177499
Iteration: 6, Func. Count: 53, Neg. LLF: 137.28285882234684
Iteration: 7, Func. Count: 61, Neg. LLF: 137.28193082578767
Iteration: 8, Func. Count: 69, Neg. LLF: 137.28192688106154
Iteration: 9, Func. Count: 76, Neg. LLF: 137.2819268804972
Optimization terminated successfully (Exit mode 0)
Current function value: 137.28192688106154
Iterations: 9
Function evaluations: 76
Gradient evaluations: 9
Iteration: 1, Func. Count: 10, Neg. LLF: 21880301.154628612
Iteration: 2, Func. Count: 21, Neg. LLF: 138.42277824998845
Iteration: 3, Func. Count: 31, Neg. LLF: 137.5072536403956
Iteration: 4, Func. Count: 40, Neg. LLF: 137.41961284104815
Iteration: 5, Func. Count: 49, Neg. LLF: 137.28846314668456
Iteration: 6, Func. Count: 58, Neg. LLF: 137.28268127507835
Iteration: 7, Func. Count: 67, Neg. LLF: 137.254686115488
Iteration: 8, Func. Count: 76, Neg. LLF: 137.24465772920308
Iteration: 9, Func. Count: 85, Neg. LLF: 137.24300176561442
Iteration: 10, Func. Count: 94, Neg. LLF: 137.24292912769388
Iteration: 11, Func. Count: 102, Neg. LLF: 137.24292912775968
Optimization terminated successfully (Exit mode 0)
Current function value: 137.24292912769388
Iterations: 11
Function evaluations: 102
Gradient evaluations: 11
Iteration: 1, Func. Count: 11, Neg. LLF: 21872340.374730702
Iteration: 2, Func. Count: 23, Neg. LLF: 138.20672059465963
Iteration: 3, Func. Count: 34, Neg. LLF: 137.44029977810422
Iteration: 4, Func. Count: 44, Neg. LLF: 137.40203514386772
Iteration: 5, Func. Count: 54, Neg. LLF: 137.31929098124078
Iteration: 6, Func. Count: 64, Neg. LLF: 137.3152865437961
Iteration: 7, Func. Count: 74, Neg. LLF: 137.3146960656921
Iteration: 8, Func. Count: 84, Neg. LLF: 137.31437001229548
Iteration: 9, Func. Count: 94, Neg. LLF: 137.31425850942406
Iteration: 10, Func. Count: 104, Neg. LLF: 137.31421948543547
Iteration: 11, Func. Count: 114, Neg. LLF: 137.3142146333065
Iteration: 12, Func. Count: 123, Neg. LLF: 137.3142146332339
Optimization terminated successfully (Exit mode 0)
Current function value: 137.3142146333065
Iterations: 12
Function evaluations: 123
Gradient evaluations: 12
Iteration: 1, Func. Count: 8, Neg. LLF: 144.2933374150648
Iteration: 2, Func. Count: 17, Neg. LLF: 141.93238506306952
Iteration: 3, Func. Count: 25, Neg. LLF: 140.51664289821795
Iteration: 4, Func. Count: 32, Neg. LLF: 138.82330078887853
Iteration: 5, Func. Count: 39, Neg. LLF: 138.68738332376284
Iteration: 6, Func. Count: 46, Neg. LLF: 138.6697475311023
Iteration: 7, Func. Count: 53, Neg. LLF: 138.66026041217782
Iteration: 8, Func. Count: 60, Neg. LLF: 138.6600405348051
Iteration: 9, Func. Count: 67, Neg. LLF: 138.66003694445627
Iteration: 10, Func. Count: 73, Neg. LLF: 138.66003701453988
Optimization terminated successfully (Exit mode 0)
Current function value: 138.66003694445627
Iterations: 10
Function evaluations: 73
Gradient evaluations: 10
Iteration: 1, Func. Count: 9, Neg. LLF: 21880456.390265375
Iteration: 2, Func. Count: 19, Neg. LLF: 138.2421800371482
Iteration: 3, Func. Count: 27, Neg. LLF: 138.2949763946086
Iteration: 4, Func. Count: 36, Neg. LLF: 139.11972792558979
Iteration: 5, Func. Count: 45, Neg. LLF: 137.6223128016285
Iteration: 6, Func. Count: 54, Neg. LLF: 137.28105140744069
Iteration: 7, Func. Count: 62, Neg. LLF: 137.27402851335555
Iteration: 8, Func. Count: 70, Neg. LLF: 137.26936962939774
Iteration: 9, Func. Count: 78, Neg. LLF: 137.26936736348006
Iteration: 10, Func. Count: 85, Neg. LLF: 137.26936736354511
Optimization terminated successfully (Exit mode 0)
Current function value: 137.26936736348006
Iterations: 10
Function evaluations: 85
Gradient evaluations: 10
Iteration: 1, Func. Count: 10, Neg. LLF: 21885416.846373755
Iteration: 2, Func. Count: 21, Neg. LLF: 138.90661750711084
Iteration: 3, Func. Count: 31, Neg. LLF: 137.68267559364946
Iteration: 4, Func. Count: 40, Neg. LLF: 137.58063738254762
Iteration: 5, Func. Count: 50, Neg. LLF: 137.2887315866398
Iteration: 6, Func. Count: 59, Neg. LLF: 137.2828479462077
Iteration: 7, Func. Count: 68, Neg. LLF: 137.28193188371876
Iteration: 8, Func. Count: 77, Neg. LLF: 137.28192692735536
Iteration: 9, Func. Count: 85, Neg. LLF: 137.2819269267542
Optimization terminated successfully (Exit mode 0)
Current function value: 137.28192692735536
Iterations: 9
Function evaluations: 85
Gradient evaluations: 9
Iteration: 1, Func. Count: 11, Neg. LLF: 21880312.020865936
Iteration: 2, Func. Count: 23, Neg. LLF: 138.42070925943187
Iteration: 3, Func. Count: 34, Neg. LLF: 137.50340746054428
Iteration: 4, Func. Count: 44, Neg. LLF: 137.4224600519446
Iteration: 5, Func. Count: 55, Neg. LLF: 137.276739838522
Iteration: 6, Func. Count: 65, Neg. LLF: 137.275826768697
Iteration: 7, Func. Count: 75, Neg. LLF: 137.267094251828
Iteration: 8, Func. Count: 85, Neg. LLF: 137.2496607652629
Iteration: 9, Func. Count: 95, Neg. LLF: 137.24309273472429
Iteration: 10, Func. Count: 105, Neg. LLF: 137.24293544648856
Iteration: 11, Func. Count: 115, Neg. LLF: 137.2429293424326
Iteration: 12, Func. Count: 124, Neg. LLF: 137.2429293419602
Optimization terminated successfully (Exit mode 0)
Current function value: 137.2429293424326
Iterations: 12
Function evaluations: 124
Gradient evaluations: 12
Iteration: 1, Func. Count: 12, Neg. LLF: 21872454.89194792
Iteration: 2, Func. Count: 25, Neg. LLF: 138.21107883670754
Iteration: 3, Func. Count: 37, Neg. LLF: 137.43916122413208
Iteration: 4, Func. Count: 48, Neg. LLF: 137.40259865054148
Iteration: 5, Func. Count: 60, Neg. LLF: 137.31948686882944
Iteration: 6, Func. Count: 71, Neg. LLF: 137.31483124862706
Iteration: 7, Func. Count: 82, Neg. LLF: 137.3145362846557
Iteration: 8, Func. Count: 93, Neg. LLF: 137.31431219376657
Iteration: 9, Func. Count: 104, Neg. LLF: 137.3142366283227
Iteration: 10, Func. Count: 115, Neg. LLF: 137.3142159223588
Iteration: 11, Func. Count: 126, Neg. LLF: 137.3142145207082
Iteration: 12, Func. Count: 136, Neg. LLF: 137.3142145207341
Optimization terminated successfully (Exit mode 0)
Current function value: 137.3142145207082
Iterations: 12
Function evaluations: 136
Gradient evaluations: 12
Iteration: 1, Func. Count: 5, Neg. LLF: 139.6097902427199
Iteration: 2, Func. Count: 10, Neg. LLF: 137.6236176760743
Iteration: 3, Func. Count: 14, Neg. LLF: 139.63931846058358
Iteration: 4, Func. Count: 19, Neg. LLF: 137.34478968703687
Iteration: 5, Func. Count: 23, Neg. LLF: 137.34092261107594
Iteration: 6, Func. Count: 27, Neg. LLF: 137.34083481191337
Iteration: 7, Func. Count: 31, Neg. LLF: 137.34082698975416
Iteration: 8, Func. Count: 35, Neg. LLF: 137.34082427669225
Iteration: 9, Func. Count: 38, Neg. LLF: 137.3408242766595
Optimization terminated successfully (Exit mode 0)
Current function value: 137.34082427669225
Iterations: 9
Function evaluations: 38
Gradient evaluations: 9
Iteration: 1, Func. Count: 6, Neg. LLF: 142.19146789205644
Iteration: 2, Func. Count: 12, Neg. LLF: 147.25877498079635
Iteration: 3, Func. Count: 19, Neg. LLF: 137.44551315890516
Iteration: 4, Func. Count: 25, Neg. LLF: 137.31046075882395
Iteration: 5, Func. Count: 30, Neg. LLF: 137.30750098637543
Iteration: 6, Func. Count: 35, Neg. LLF: 137.30304552121584
Iteration: 7, Func. Count: 40, Neg. LLF: 137.29142624347926
Iteration: 8, Func. Count: 45, Neg. LLF: 137.2836312997278
Iteration: 9, Func. Count: 50, Neg. LLF: 137.27730679509708
Iteration: 10, Func. Count: 55, Neg. LLF: 137.27496148363727
Iteration: 11, Func. Count: 60, Neg. LLF: 137.27483867597834
Iteration: 12, Func. Count: 65, Neg. LLF: 137.27483072569228
Iteration: 13, Func. Count: 70, Neg. LLF: 137.2748300522669
Optimization terminated successfully (Exit mode 0)
Current function value: 137.2748300522669
Iterations: 13
Function evaluations: 70
Gradient evaluations: 13
Iteration: 1, Func. Count: 7, Neg. LLF: 367.77117600703934
Iteration: 2, Func. Count: 15, Neg. LLF: 163.21393722489495
Iteration: 3, Func. Count: 22, Neg. LLF: 136.4868261185312
Iteration: 4, Func. Count: 28, Neg. LLF: 136.4855823665963
Iteration: 5, Func. Count: 35, Neg. LLF: 136.3099142862384
Iteration: 6, Func. Count: 41, Neg. LLF: 136.30609180682552
Iteration: 7, Func. Count: 47, Neg. LLF: 136.3058067404756
Iteration: 8, Func. Count: 53, Neg. LLF: 136.30569378938728
Iteration: 9, Func. Count: 59, Neg. LLF: 136.30556667038138
Iteration: 10, Func. Count: 65, Neg. LLF: 136.30556388959872
Iteration: 11, Func. Count: 70, Neg. LLF: 136.30556388966363
Optimization terminated successfully (Exit mode 0)
Current function value: 136.30556388959872
Iterations: 11
Function evaluations: 70
Gradient evaluations: 11
Iteration: 1, Func. Count: 8, Neg. LLF: 442.4954516372859
Iteration: 2, Func. Count: 17, Neg. LLF: 152.628295000748
Iteration: 3, Func. Count: 25, Neg. LLF: 136.9489298662415
Iteration: 4, Func. Count: 33, Neg. LLF: 136.36524373803672
Iteration: 5, Func. Count: 40, Neg. LLF: 136.3185357034974
Iteration: 6, Func. Count: 47, Neg. LLF: 136.30660890438904
Iteration: 7, Func. Count: 54, Neg. LLF: 136.3059482269168
Iteration: 8, Func. Count: 61, Neg. LLF: 136.30557001612377
Iteration: 9, Func. Count: 68, Neg. LLF: 136.30556463002688
Iteration: 10, Func. Count: 75, Neg. LLF: 136.30556379638372
Optimization terminated successfully (Exit mode 0)
Current function value: 136.30556379638372
Iterations: 10
Function evaluations: 75
Gradient evaluations: 10
Iteration: 1, Func. Count: 9, Neg. LLF: 523.5546422301207
Iteration: 2, Func. Count: 19, Neg. LLF: 146.1388758034186
Iteration: 3, Func. Count: 28, Neg. LLF: 136.42195805039458
Iteration: 4, Func. Count: 36, Neg. LLF: 136.3164626421401
Iteration: 5, Func. Count: 44, Neg. LLF: 136.49777428765827
Iteration: 6, Func. Count: 53, Neg. LLF: 136.28391173174222
Iteration: 7, Func. Count: 61, Neg. LLF: 136.28357520466164
Iteration: 8, Func. Count: 69, Neg. LLF: 136.28357125468213
Iteration: 9, Func. Count: 77, Neg. LLF: 136.28356845005513
Iteration: 10, Func. Count: 84, Neg. LLF: 136.28356845007926
Optimization terminated successfully (Exit mode 0)
Current function value: 136.28356845005513
Iterations: 10
Function evaluations: 84
Gradient evaluations: 10
Iteration: 1, Func. Count: 6, Neg. LLF: 139.48158123285094
Iteration: 2, Func. Count: 12, Neg. LLF: 139.65875277159302
Iteration: 3, Func. Count: 18, Neg. LLF: 139.9859395984282
Iteration: 4, Func. Count: 24, Neg. LLF: 137.6083100563158
Iteration: 5, Func. Count: 30, Neg. LLF: 137.31925107118053
Iteration: 6, Func. Count: 35, Neg. LLF: 137.31777592089796
Iteration: 7, Func. Count: 40, Neg. LLF: 137.31774210226433
Iteration: 8, Func. Count: 45, Neg. LLF: 137.31773248509504
Iteration: 9, Func. Count: 50, Neg. LLF: 137.3177313140376
Iteration: 10, Func. Count: 54, Neg. LLF: 137.31773131403884
Optimization terminated successfully (Exit mode 0)
Current function value: 137.3177313140376
Iterations: 10
Function evaluations: 54
Gradient evaluations: 10
Iteration: 1, Func. Count: 7, Neg. LLF: 152.90306026602104
Iteration: 2, Func. Count: 14, Neg. LLF: 141.89501840497397
Iteration: 3, Func. Count: 21, Neg. LLF: 137.09494726169027
Iteration: 4, Func. Count: 28, Neg. LLF: 137.02156460511793
Iteration: 5, Func. Count: 35, Neg. LLF: 136.86474119190711
Iteration: 6, Func. Count: 41, Neg. LLF: 136.82707491730383
Iteration: 7, Func. Count: 47, Neg. LLF: 136.7705848533481
Iteration: 8, Func. Count: 53, Neg. LLF: 136.6068311923291
Iteration: 9, Func. Count: 59, Neg. LLF: 137.11624942206493
Iteration: 10, Func. Count: 66, Neg. LLF: 138.7858013397802
Iteration: 11, Func. Count: 73, Neg. LLF: 144.26885943866546
Iteration: 12, Func. Count: 80, Neg. LLF: 136.40114909898597
Iteration: 13, Func. Count: 86, Neg. LLF: 136.38138681694235
Iteration: 14, Func. Count: 92, Neg. LLF: 136.38190587289168
Iteration: 15, Func. Count: 99, Neg. LLF: 136.3776031793951
Iteration: 16, Func. Count: 105, Neg. LLF: 136.37712537854696
Iteration: 17, Func. Count: 111, Neg. LLF: 136.37700846387085
Iteration: 18, Func. Count: 117, Neg. LLF: 136.37700376273708
Iteration: 19, Func. Count: 122, Neg. LLF: 136.37700376261986
Optimization terminated successfully (Exit mode 0)
Current function value: 136.37700376273708
Iterations: 19
Function evaluations: 122
Gradient evaluations: 19
Iteration: 1, Func. Count: 8, Neg. LLF: 242.63563360760736
Iteration: 2, Func. Count: 16, Neg. LLF: 143.97917099426363
Iteration: 3, Func. Count: 24, Neg. LLF: 138.99126871545872
Iteration: 4, Func. Count: 32, Neg. LLF: 137.93339571900998
Iteration: 5, Func. Count: 40, Neg. LLF: 141.1748884367233
Iteration: 6, Func. Count: 48, Neg. LLF: 136.43128632935392
Iteration: 7, Func. Count: 56, Neg. LLF: 136.29588135640975
Iteration: 8, Func. Count: 64, Neg. LLF: 136.22222411295968
Iteration: 9, Func. Count: 71, Neg. LLF: 136.22036041793405
Iteration: 10, Func. Count: 78, Neg. LLF: 136.21967407466198
Iteration: 11, Func. Count: 86, Neg. LLF: 136.2173231965936
Iteration: 12, Func. Count: 93, Neg. LLF: 136.21729734180096
Iteration: 13, Func. Count: 100, Neg. LLF: 136.21729318617636
Iteration: 14, Func. Count: 107, Neg. LLF: 136.21729149377177
Iteration: 15, Func. Count: 113, Neg. LLF: 136.217291493779
Optimization terminated successfully (Exit mode 0)
Current function value: 136.21729149377177
Iterations: 15
Function evaluations: 113
Gradient evaluations: 15
Iteration: 1, Func. Count: 9, Neg. LLF: 276.5319274457204
Iteration: 2, Func. Count: 18, Neg. LLF: 143.1593454351011
Iteration: 3, Func. Count: 27, Neg. LLF: 138.0048181782272
Iteration: 4, Func. Count: 36, Neg. LLF: 137.87680689904323
Iteration: 5, Func. Count: 45, Neg. LLF: 138.43107474921493
Iteration: 6, Func. Count: 54, Neg. LLF: 136.4614931849817
Iteration: 7, Func. Count: 63, Neg. LLF: 136.29014650114627
Iteration: 8, Func. Count: 72, Neg. LLF: 136.12324512973728
Iteration: 9, Func. Count: 80, Neg. LLF: 136.11885767010136
Iteration: 10, Func. Count: 88, Neg. LLF: 136.11718072561692
Iteration: 11, Func. Count: 96, Neg. LLF: 136.1169372653237
Iteration: 12, Func. Count: 104, Neg. LLF: 136.11690748372584
Iteration: 13, Func. Count: 112, Neg. LLF: 136.1169038400337
Iteration: 14, Func. Count: 119, Neg. LLF: 136.11690384004055
Optimization terminated successfully (Exit mode 0)
Current function value: 136.1169038400337
Iterations: 14
Function evaluations: 119
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 318.47121413102576
Iteration: 2, Func. Count: 20, Neg. LLF: 147.73438820324859
Iteration: 3, Func. Count: 30, Neg. LLF: 139.8508765196409
Iteration: 4, Func. Count: 40, Neg. LLF: 137.05161618139758
Iteration: 5, Func. Count: 50, Neg. LLF: 137.58332193390476
Iteration: 6, Func. Count: 60, Neg. LLF: 136.15497291588738
Iteration: 7, Func. Count: 69, Neg. LLF: 136.47434386980854
Iteration: 8, Func. Count: 79, Neg. LLF: 136.1231445907359
Iteration: 9, Func. Count: 88, Neg. LLF: 136.11809333955813
Iteration: 10, Func. Count: 97, Neg. LLF: 136.11802612475154
Iteration: 11, Func. Count: 107, Neg. LLF: 136.11697700183174
Iteration: 12, Func. Count: 116, Neg. LLF: 136.1169045894166
Iteration: 13, Func. Count: 125, Neg. LLF: 136.1169038587428
Optimization terminated successfully (Exit mode 0)
Current function value: 136.1169038587428
Iterations: 13
Function evaluations: 125
Gradient evaluations: 13
Iteration: 1, Func. Count: 7, Neg. LLF: 139.68850470883237
Iteration: 2, Func. Count: 14, Neg. LLF: 140.1464613882249
Iteration: 3, Func. Count: 21, Neg. LLF: 140.04499197049927
Iteration: 4, Func. Count: 28, Neg. LLF: 137.47439530075815
Iteration: 5, Func. Count: 34, Neg. LLF: 137.32231409647562
Iteration: 6, Func. Count: 40, Neg. LLF: 137.31813514339083
Iteration: 7, Func. Count: 46, Neg. LLF: 137.31774145254974
Iteration: 8, Func. Count: 52, Neg. LLF: 137.31773360528186
Iteration: 9, Func. Count: 58, Neg. LLF: 137.3177315486112
Iteration: 10, Func. Count: 63, Neg. LLF: 137.31773157316798
Optimization terminated successfully (Exit mode 0)
Current function value: 137.3177315486112
Iterations: 10
Function evaluations: 63
Gradient evaluations: 10
Iteration: 1, Func. Count: 8, Neg. LLF: 152.91546103594692
Iteration: 2, Func. Count: 16, Neg. LLF: 141.88050917279236
Iteration: 3, Func. Count: 24, Neg. LLF: 137.09534487379847
Iteration: 4, Func. Count: 32, Neg. LLF: 137.0170531297286
Iteration: 5, Func. Count: 40, Neg. LLF: 136.8636620484267
Iteration: 6, Func. Count: 47, Neg. LLF: 136.82483485669434
Iteration: 7, Func. Count: 54, Neg. LLF: 136.77317420166003
Iteration: 8, Func. Count: 61, Neg. LLF: 136.53640844268764
Iteration: 9, Func. Count: 68, Neg. LLF: 137.0059314000279
Iteration: 10, Func. Count: 76, Neg. LLF: 137.01964113751566
Iteration: 11, Func. Count: 84, Neg. LLF: 136.41194237155233
Iteration: 12, Func. Count: 91, Neg. LLF: 136.39278199637184
Iteration: 13, Func. Count: 98, Neg. LLF: 136.3946584795107
Iteration: 14, Func. Count: 106, Neg. LLF: 136.381878930435
Iteration: 15, Func. Count: 113, Neg. LLF: 136.37734140083447
Iteration: 16, Func. Count: 120, Neg. LLF: 136.37701253501825
Iteration: 17, Func. Count: 127, Neg. LLF: 136.3770040083409
Iteration: 18, Func. Count: 133, Neg. LLF: 136.37700400870114
Optimization terminated successfully (Exit mode 0)
Current function value: 136.3770040083409
Iterations: 18
Function evaluations: 133
Gradient evaluations: 18
Iteration: 1, Func. Count: 9, Neg. LLF: 242.72157830949087
Iteration: 2, Func. Count: 18, Neg. LLF: 143.840207455824
Iteration: 3, Func. Count: 27, Neg. LLF: 138.8922632954686
Iteration: 4, Func. Count: 36, Neg. LLF: 137.88888220199706
Iteration: 5, Func. Count: 45, Neg. LLF: 141.28303272569786
Iteration: 6, Func. Count: 54, Neg. LLF: 136.42338470850038
Iteration: 7, Func. Count: 63, Neg. LLF: 136.29243565718994
Iteration: 8, Func. Count: 72, Neg. LLF: 136.2202377631369
Iteration: 9, Func. Count: 80, Neg. LLF: 136.21815506533042
Iteration: 10, Func. Count: 88, Neg. LLF: 136.21777585173783
Iteration: 11, Func. Count: 96, Neg. LLF: 136.21731148920145
Iteration: 12, Func. Count: 104, Neg. LLF: 136.21729633959868
Iteration: 13, Func. Count: 112, Neg. LLF: 136.21729223946735
Iteration: 14, Func. Count: 120, Neg. LLF: 136.21729150019715
Optimization terminated successfully (Exit mode 0)
Current function value: 136.21729150019715
Iterations: 14
Function evaluations: 120
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 276.60611210874004
Iteration: 2, Func. Count: 20, Neg. LLF: 143.0322578028328
Iteration: 3, Func. Count: 30, Neg. LLF: 137.95596814075319
Iteration: 4, Func. Count: 40, Neg. LLF: 137.80954221960238
Iteration: 5, Func. Count: 50, Neg. LLF: 138.45953630454383
Iteration: 6, Func. Count: 60, Neg. LLF: 136.44491221330563
Iteration: 7, Func. Count: 70, Neg. LLF: 136.2896117239201
Iteration: 8, Func. Count: 80, Neg. LLF: 136.12289694005275
Iteration: 9, Func. Count: 89, Neg. LLF: 136.11881620689758
Iteration: 10, Func. Count: 98, Neg. LLF: 136.1170951532624
Iteration: 11, Func. Count: 107, Neg. LLF: 136.1169240314926
Iteration: 12, Func. Count: 116, Neg. LLF: 136.1169063404879
Iteration: 13, Func. Count: 125, Neg. LLF: 136.1169038458497
Iteration: 14, Func. Count: 133, Neg. LLF: 136.1169038458336
Optimization terminated successfully (Exit mode 0)
Current function value: 136.1169038458497
Iterations: 14
Function evaluations: 133
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 318.1361694429438
Iteration: 2, Func. Count: 22, Neg. LLF: 147.44887804709782
Iteration: 3, Func. Count: 33, Neg. LLF: 139.7435182655532
Iteration: 4, Func. Count: 44, Neg. LLF: 137.04454637095543
Iteration: 5, Func. Count: 55, Neg. LLF: 137.59381696293082
Iteration: 6, Func. Count: 66, Neg. LLF: 136.16068139836844
Iteration: 7, Func. Count: 76, Neg. LLF: 136.43046538483907
Iteration: 8, Func. Count: 87, Neg. LLF: 136.1273207408001
Iteration: 9, Func. Count: 97, Neg. LLF: 136.11953600051393
Iteration: 10, Func. Count: 107, Neg. LLF: 136.11858269902754
Iteration: 11, Func. Count: 117, Neg. LLF: 136.11699768370104
Iteration: 12, Func. Count: 127, Neg. LLF: 136.11692614003687
Iteration: 13, Func. Count: 137, Neg. LLF: 136.1169038661161
Iteration: 14, Func. Count: 146, Neg. LLF: 136.11690387120439
Optimization terminated successfully (Exit mode 0)
Current function value: 136.1169038661161
Iterations: 14
Function evaluations: 146
Gradient evaluations: 14
Iteration: 1, Func. Count: 8, Neg. LLF: 139.5389002111475
Iteration: 2, Func. Count: 16, Neg. LLF: 139.8064148969479
Iteration: 3, Func. Count: 24, Neg. LLF: 139.59220919694337
Iteration: 4, Func. Count: 32, Neg. LLF: 140.4306957722903
Iteration: 5, Func. Count: 40, Neg. LLF: 137.4624563524018
Iteration: 6, Func. Count: 47, Neg. LLF: 137.35880099779462
Iteration: 7, Func. Count: 54, Neg. LLF: 137.35682149184802
Iteration: 8, Func. Count: 62, Neg. LLF: 137.32029237451943
Iteration: 9, Func. Count: 69, Neg. LLF: 137.31785451190456
Iteration: 10, Func. Count: 76, Neg. LLF: 137.31747184192542
Iteration: 11, Func. Count: 83, Neg. LLF: 137.31739538395905
Iteration: 12, Func. Count: 90, Neg. LLF: 137.31736711467468
Iteration: 13, Func. Count: 97, Neg. LLF: 137.31736658332528
Optimization terminated successfully (Exit mode 0)
Current function value: 137.31736658332528
Iterations: 13
Function evaluations: 97
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 152.9549411595207
Iteration: 2, Func. Count: 18, Neg. LLF: 141.91001025458797
Iteration: 3, Func. Count: 27, Neg. LLF: 137.0862745208371
Iteration: 4, Func. Count: 36, Neg. LLF: 137.0171305620826
Iteration: 5, Func. Count: 45, Neg. LLF: 136.8621215531462
Iteration: 6, Func. Count: 53, Neg. LLF: 136.8241351335929
Iteration: 7, Func. Count: 61, Neg. LLF: 136.77507223603223
Iteration: 8, Func. Count: 69, Neg. LLF: 136.58950131852941
Iteration: 9, Func. Count: 77, Neg. LLF: 137.00644276145275
Iteration: 10, Func. Count: 86, Neg. LLF: 137.0153960695363
Iteration: 11, Func. Count: 95, Neg. LLF: 136.98396559531426
Iteration: 12, Func. Count: 104, Neg. LLF: 136.39233783453142
Iteration: 13, Func. Count: 112, Neg. LLF: 136.52376344627322
Iteration: 14, Func. Count: 121, Neg. LLF: 136.37832131381313
Iteration: 15, Func. Count: 129, Neg. LLF: 136.37702201720228
Iteration: 16, Func. Count: 137, Neg. LLF: 136.37700529307162
Iteration: 17, Func. Count: 145, Neg. LLF: 136.37700372462544
Iteration: 18, Func. Count: 152, Neg. LLF: 136.37700372457002
Optimization terminated successfully (Exit mode 0)
Current function value: 136.37700372462544
Iterations: 18
Function evaluations: 152
Gradient evaluations: 18
Iteration: 1, Func. Count: 10, Neg. LLF: 243.29790013030993
Iteration: 2, Func. Count: 20, Neg. LLF: 143.8998714060443
Iteration: 3, Func. Count: 30, Neg. LLF: 138.93691868758495
Iteration: 4, Func. Count: 40, Neg. LLF: 137.88123346808237
Iteration: 5, Func. Count: 50, Neg. LLF: 141.15682478296574
Iteration: 6, Func. Count: 60, Neg. LLF: 136.42467257170372
Iteration: 7, Func. Count: 70, Neg. LLF: 136.29263720444877
Iteration: 8, Func. Count: 80, Neg. LLF: 136.22092993257354
Iteration: 9, Func. Count: 89, Neg. LLF: 136.21876481660755
Iteration: 10, Func. Count: 98, Neg. LLF: 136.21819206767347
Iteration: 11, Func. Count: 107, Neg. LLF: 136.21731890968846
Iteration: 12, Func. Count: 116, Neg. LLF: 136.2172964577621
Iteration: 13, Func. Count: 125, Neg. LLF: 136.21729271747733
Iteration: 14, Func. Count: 134, Neg. LLF: 136.21729149881847
Iteration: 15, Func. Count: 142, Neg. LLF: 136.2172914988256
Optimization terminated successfully (Exit mode 0)
Current function value: 136.21729149881847
Iterations: 15
Function evaluations: 142
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 277.2582748492324
Iteration: 2, Func. Count: 22, Neg. LLF: 143.11637713444006
Iteration: 3, Func. Count: 33, Neg. LLF: 137.98965866078404
Iteration: 4, Func. Count: 44, Neg. LLF: 137.81574804377797
Iteration: 5, Func. Count: 55, Neg. LLF: 138.36566592456174
Iteration: 6, Func. Count: 66, Neg. LLF: 136.45490101024157
Iteration: 7, Func. Count: 77, Neg. LLF: 136.291559285905
Iteration: 8, Func. Count: 88, Neg. LLF: 136.12280898528354
Iteration: 9, Func. Count: 98, Neg. LLF: 136.11878899731025
Iteration: 10, Func. Count: 108, Neg. LLF: 136.11711613348507
Iteration: 11, Func. Count: 118, Neg. LLF: 136.1169272671632
Iteration: 12, Func. Count: 128, Neg. LLF: 136.11690659115357
Iteration: 13, Func. Count: 138, Neg. LLF: 136.11690383864712
Iteration: 14, Func. Count: 147, Neg. LLF: 136.1169038386434
Optimization terminated successfully (Exit mode 0)
Current function value: 136.11690383864712
Iterations: 14
Function evaluations: 147
Gradient evaluations: 14
Iteration: 1, Func. Count: 12, Neg. LLF: 319.34246153823284
Iteration: 2, Func. Count: 24, Neg. LLF: 147.7188845731818
Iteration: 3, Func. Count: 36, Neg. LLF: 140.00140390490853
Iteration: 4, Func. Count: 48, Neg. LLF: 137.02715281719804
Iteration: 5, Func. Count: 60, Neg. LLF: 137.63159059706092
Iteration: 6, Func. Count: 72, Neg. LLF: 136.14804264760653
Iteration: 7, Func. Count: 83, Neg. LLF: 136.4989885034445
Iteration: 8, Func. Count: 95, Neg. LLF: 136.1244755502039
Iteration: 9, Func. Count: 106, Neg. LLF: 136.11804203171718
Iteration: 10, Func. Count: 117, Neg. LLF: 136.1175343419872
Iteration: 11, Func. Count: 128, Neg. LLF: 136.11696591463203
Iteration: 12, Func. Count: 139, Neg. LLF: 136.11691075310068
Iteration: 13, Func. Count: 150, Neg. LLF: 136.1169038724905
Iteration: 14, Func. Count: 160, Neg. LLF: 136.11690387758526
Optimization terminated successfully (Exit mode 0)
Current function value: 136.1169038724905
Iterations: 14
Function evaluations: 160
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 139.51053898438178
Iteration: 2, Func. Count: 18, Neg. LLF: 140.28153083946208
Iteration: 3, Func. Count: 27, Neg. LLF: 139.6392118344031
Iteration: 4, Func. Count: 36, Neg. LLF: 137.69390320943043
Iteration: 5, Func. Count: 44, Neg. LLF: 137.7087722602473
Iteration: 6, Func. Count: 53, Neg. LLF: 137.41200583123944
Iteration: 7, Func. Count: 62, Neg. LLF: 137.3220890360804
Iteration: 8, Func. Count: 70, Neg. LLF: 137.31804630500272
Iteration: 9, Func. Count: 78, Neg. LLF: 137.3175217893817
Iteration: 10, Func. Count: 86, Neg. LLF: 137.31738900845986
Iteration: 11, Func. Count: 94, Neg. LLF: 137.31736792553573
Iteration: 12, Func. Count: 102, Neg. LLF: 137.3173665921069
Iteration: 13, Func. Count: 109, Neg. LLF: 137.31736666246098
Optimization terminated successfully (Exit mode 0)
Current function value: 137.3173665921069
Iterations: 13
Function evaluations: 109
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 152.94962096813674
Iteration: 2, Func. Count: 20, Neg. LLF: 141.89793597197848
Iteration: 3, Func. Count: 30, Neg. LLF: 137.08212722159791
Iteration: 4, Func. Count: 40, Neg. LLF: 137.01547223346802
Iteration: 5, Func. Count: 50, Neg. LLF: 136.8611414458731
Iteration: 6, Func. Count: 59, Neg. LLF: 136.82516595898105
Iteration: 7, Func. Count: 68, Neg. LLF: 136.77452967890338
Iteration: 8, Func. Count: 77, Neg. LLF: 136.6617675942933
Iteration: 9, Func. Count: 86, Neg. LLF: 136.50909078880915
Iteration: 10, Func. Count: 95, Neg. LLF: 137.058252021894
Iteration: 11, Func. Count: 105, Neg. LLF: 137.94757652647894
Iteration: 12, Func. Count: 115, Neg. LLF: 137.48872200301517
Iteration: 13, Func. Count: 125, Neg. LLF: 136.75524841530896
Iteration: 14, Func. Count: 135, Neg. LLF: 136.40356434902344
Iteration: 15, Func. Count: 145, Neg. LLF: 136.3791142303299
Iteration: 16, Func. Count: 155, Neg. LLF: 136.37705652555837
Iteration: 17, Func. Count: 164, Neg. LLF: 136.37700378596278
Iteration: 18, Func. Count: 172, Neg. LLF: 136.37700378601693
Optimization terminated successfully (Exit mode 0)
Current function value: 136.37700378596278
Iterations: 18
Function evaluations: 172
Gradient evaluations: 18
Iteration: 1, Func. Count: 11, Neg. LLF: 243.39452587357005
Iteration: 2, Func. Count: 22, Neg. LLF: 143.8767642913175
Iteration: 3, Func. Count: 33, Neg. LLF: 138.89108085351452
Iteration: 4, Func. Count: 44, Neg. LLF: 137.88345815996615
Iteration: 5, Func. Count: 55, Neg. LLF: 141.2486746619193
Iteration: 6, Func. Count: 66, Neg. LLF: 136.4227935355652
Iteration: 7, Func. Count: 77, Neg. LLF: 136.2919736841366
Iteration: 8, Func. Count: 88, Neg. LLF: 136.22021051536376
Iteration: 9, Func. Count: 98, Neg. LLF: 136.21814719797212
Iteration: 10, Func. Count: 108, Neg. LLF: 136.21774768840098
Iteration: 11, Func. Count: 118, Neg. LLF: 136.21731065645528
Iteration: 12, Func. Count: 128, Neg. LLF: 136.21729615934066
Iteration: 13, Func. Count: 138, Neg. LLF: 136.2172921944322
Iteration: 14, Func. Count: 148, Neg. LLF: 136.2172914998424
Optimization terminated successfully (Exit mode 0)
Current function value: 136.2172914998424
Iterations: 14
Function evaluations: 148
Gradient evaluations: 14
Iteration: 1, Func. Count: 12, Neg. LLF: 277.2678715175833
Iteration: 2, Func. Count: 24, Neg. LLF: 143.1041049722588
Iteration: 3, Func. Count: 36, Neg. LLF: 137.97433557558526
Iteration: 4, Func. Count: 48, Neg. LLF: 137.81867313318054
Iteration: 5, Func. Count: 60, Neg. LLF: 138.4241281068126
Iteration: 6, Func. Count: 72, Neg. LLF: 136.44822477921738
Iteration: 7, Func. Count: 84, Neg. LLF: 136.29097200867267
Iteration: 8, Func. Count: 96, Neg. LLF: 136.12266387291356
Iteration: 9, Func. Count: 107, Neg. LLF: 136.1187121130201
Iteration: 10, Func. Count: 118, Neg. LLF: 136.11708845063797
Iteration: 11, Func. Count: 129, Neg. LLF: 136.1169255924584
Iteration: 12, Func. Count: 140, Neg. LLF: 136.1169064229011
Iteration: 13, Func. Count: 151, Neg. LLF: 136.11690384306246
Iteration: 14, Func. Count: 161, Neg. LLF: 136.11690384304927
Optimization terminated successfully (Exit mode 0)
Current function value: 136.11690384306246
Iterations: 14
Function evaluations: 161
Gradient evaluations: 14
Iteration: 1, Func. Count: 13, Neg. LLF: 318.93464518720765
Iteration: 2, Func. Count: 26, Neg. LLF: 147.75990991836085
Iteration: 3, Func. Count: 39, Neg. LLF: 139.87024164418904
Iteration: 4, Func. Count: 52, Neg. LLF: 137.03634855236936
Iteration: 5, Func. Count: 65, Neg. LLF: 137.64760637213175
Iteration: 6, Func. Count: 78, Neg. LLF: 136.15314204040885
Iteration: 7, Func. Count: 90, Neg. LLF: 136.4985445225632
Iteration: 8, Func. Count: 103, Neg. LLF: 136.1266451336994
Iteration: 9, Func. Count: 115, Neg. LLF: 136.11873191713644
Iteration: 10, Func. Count: 127, Neg. LLF: 136.11794356712588
Iteration: 11, Func. Count: 139, Neg. LLF: 136.11698394494448
Iteration: 12, Func. Count: 151, Neg. LLF: 136.11691928815858
Iteration: 13, Func. Count: 163, Neg. LLF: 136.11690386900864
Iteration: 14, Func. Count: 174, Neg. LLF: 136.11690387410493
Optimization terminated successfully (Exit mode 0)
Current function value: 136.11690386900864
Iterations: 14
Function evaluations: 174
Gradient evaluations: 14
Iteration: 1, Func. Count: 6, Neg. LLF: 139.5261819907468
Iteration: 2, Func. Count: 12, Neg. LLF: 140.4175745772813
Iteration: 3, Func. Count: 19, Neg. LLF: 137.50940366931744
Iteration: 4, Func. Count: 24, Neg. LLF: 137.8487358106028
Iteration: 5, Func. Count: 30, Neg. LLF: 137.50009623735863
Iteration: 6, Func. Count: 36, Neg. LLF: 137.32948255550536
Iteration: 7, Func. Count: 41, Neg. LLF: 137.3271221984457
Iteration: 8, Func. Count: 46, Neg. LLF: 137.32700437084196
Iteration: 9, Func. Count: 51, Neg. LLF: 137.32700007247098
Iteration: 10, Func. Count: 55, Neg. LLF: 137.32700007248266
Optimization terminated successfully (Exit mode 0)
Current function value: 137.32700007247098
Iterations: 10
Function evaluations: 55
Gradient evaluations: 10
Iteration: 1, Func. Count: 7, Neg. LLF: 139.61823744973051
Iteration: 2, Func. Count: 15, Neg. LLF: 138.27335504206403
Iteration: 3, Func. Count: 22, Neg. LLF: 137.31117234246415
Iteration: 4, Func. Count: 29, Neg. LLF: 137.2935787000913
Iteration: 5, Func. Count: 36, Neg. LLF: 137.2839090530077
Iteration: 6, Func. Count: 43, Neg. LLF: 137.28275062028558
Iteration: 7, Func. Count: 49, Neg. LLF: 137.28230571319608
Iteration: 8, Func. Count: 55, Neg. LLF: 137.27976301472253
Iteration: 9, Func. Count: 61, Neg. LLF: 137.2749313994608
Iteration: 10, Func. Count: 67, Neg. LLF: 137.274837876669
Iteration: 11, Func. Count: 73, Neg. LLF: 137.2748302031454
Iteration: 12, Func. Count: 78, Neg. LLF: 137.27483020318533
Optimization terminated successfully (Exit mode 0)
Current function value: 137.2748302031454
Iterations: 12
Function evaluations: 78
Gradient evaluations: 12
Iteration: 1, Func. Count: 8, Neg. LLF: 170.01121001779552
Iteration: 2, Func. Count: 16, Neg. LLF: 139.42185687446744
Iteration: 3, Func. Count: 24, Neg. LLF: 159.58336963116935
Iteration: 4, Func. Count: 32, Neg. LLF: 136.38649267482333
Iteration: 5, Func. Count: 39, Neg. LLF: 136.3489274295097
Iteration: 6, Func. Count: 46, Neg. LLF: 136.33126424388166
Iteration: 7, Func. Count: 53, Neg. LLF: 136.31084422651833
Iteration: 8, Func. Count: 60, Neg. LLF: 136.3065739289396
Iteration: 9, Func. Count: 67, Neg. LLF: 136.3056297693499
Iteration: 10, Func. Count: 74, Neg. LLF: 136.30558157939038
Iteration: 11, Func. Count: 81, Neg. LLF: 136.30556737260142
Iteration: 12, Func. Count: 88, Neg. LLF: 136.3055639292151
Iteration: 13, Func. Count: 94, Neg. LLF: 136.30556392922944
Optimization terminated successfully (Exit mode 0)
Current function value: 136.3055639292151
Iterations: 13
Function evaluations: 94
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 396.7023827076913
Iteration: 2, Func. Count: 19, Neg. LLF: 171.31369416929917
Iteration: 3, Func. Count: 28, Neg. LLF: 136.6554117287461
Iteration: 4, Func. Count: 36, Neg. LLF: 136.46625950113713
Iteration: 5, Func. Count: 44, Neg. LLF: 136.36445495426756
Iteration: 6, Func. Count: 52, Neg. LLF: 136.33481095272424
Iteration: 7, Func. Count: 60, Neg. LLF: 136.3101002117857
Iteration: 8, Func. Count: 68, Neg. LLF: 136.30659129119667
Iteration: 9, Func. Count: 76, Neg. LLF: 136.30557215731076
Iteration: 10, Func. Count: 84, Neg. LLF: 136.30556467975273
Iteration: 11, Func. Count: 92, Neg. LLF: 136.30556386662357
Optimization terminated successfully (Exit mode 0)
Current function value: 136.30556386662357
Iterations: 11
Function evaluations: 92
Gradient evaluations: 11
Iteration: 1, Func. Count: 10, Neg. LLF: 461.150501669682
Iteration: 2, Func. Count: 21, Neg. LLF: 175.1685069667205
Iteration: 3, Func. Count: 31, Neg. LLF: 136.5128970615289
Iteration: 4, Func. Count: 40, Neg. LLF: 136.45352554411156
Iteration: 5, Func. Count: 49, Neg. LLF: 136.50673837890864
Iteration: 6, Func. Count: 59, Neg. LLF: 136.32933128300365
Iteration: 7, Func. Count: 68, Neg. LLF: 136.3003456238208
Iteration: 8, Func. Count: 77, Neg. LLF: 136.28582824355075
Iteration: 9, Func. Count: 86, Neg. LLF: 136.28371719327814
Iteration: 10, Func. Count: 95, Neg. LLF: 136.28358031451552
Iteration: 11, Func. Count: 104, Neg. LLF: 136.28356913344896
Iteration: 12, Func. Count: 112, Neg. LLF: 136.28356913339456
Optimization terminated successfully (Exit mode 0)
Current function value: 136.28356913344896
Iterations: 12
Function evaluations: 112
Gradient evaluations: 12
Iteration: 1, Func. Count: 7, Neg. LLF: 139.3610222744649
Iteration: 2, Func. Count: 14, Neg. LLF: 142.41884467583992
Iteration: 3, Func. Count: 21, Neg. LLF: 138.2480670648864
Iteration: 4, Func. Count: 28, Neg. LLF: 138.20672012693686
Iteration: 5, Func. Count: 35, Neg. LLF: 137.5878346918106
Iteration: 6, Func. Count: 42, Neg. LLF: 137.44358795502154
Iteration: 7, Func. Count: 49, Neg. LLF: 137.29971457994844
Iteration: 8, Func. Count: 55, Neg. LLF: 137.2879423500016
Iteration: 9, Func. Count: 61, Neg. LLF: 137.2824800709069
Iteration: 10, Func. Count: 67, Neg. LLF: 137.27713973539565
Iteration: 11, Func. Count: 73, Neg. LLF: 137.27711114330123
Iteration: 12, Func. Count: 79, Neg. LLF: 137.27711008176897
Iteration: 13, Func. Count: 84, Neg. LLF: 137.27711008177866
Optimization terminated successfully (Exit mode 0)
Current function value: 137.27711008176897
Iterations: 13
Function evaluations: 84
Gradient evaluations: 13
Iteration: 1, Func. Count: 8, Neg. LLF: 142.37716720811292
Iteration: 2, Func. Count: 16, Neg. LLF: 139.76840965580448
Iteration: 3, Func. Count: 25, Neg. LLF: 138.90231959949523
Iteration: 4, Func. Count: 33, Neg. LLF: 137.82807046803322
Iteration: 5, Func. Count: 41, Neg. LLF: 137.13071370038062
Iteration: 6, Func. Count: 48, Neg. LLF: 137.12196071597057
Iteration: 7, Func. Count: 55, Neg. LLF: 137.10588307089347
Iteration: 8, Func. Count: 62, Neg. LLF: 137.0845083839566
Iteration: 9, Func. Count: 69, Neg. LLF: 137.00164713751514
Iteration: 10, Func. Count: 76, Neg. LLF: 136.95436618127525
Iteration: 11, Func. Count: 83, Neg. LLF: 136.77175266151843
Iteration: 12, Func. Count: 90, Neg. LLF: 136.75433236132272
Iteration: 13, Func. Count: 98, Neg. LLF: 136.3976502331846
Iteration: 14, Func. Count: 105, Neg. LLF: 136.45910530099164
Iteration: 15, Func. Count: 113, Neg. LLF: 136.45087480339694
Iteration: 16, Func. Count: 121, Neg. LLF: 136.39551221035492
Iteration: 17, Func. Count: 129, Neg. LLF: 136.3770780102413
Iteration: 18, Func. Count: 136, Neg. LLF: 136.37700411952392
Iteration: 19, Func. Count: 142, Neg. LLF: 136.37700411933216
Optimization terminated successfully (Exit mode 0)
Current function value: 136.37700411952392
Iterations: 19
Function evaluations: 142
Gradient evaluations: 19
Iteration: 1, Func. Count: 9, Neg. LLF: 228.13554861293292
Iteration: 2, Func. Count: 18, Neg. LLF: 142.41109703276132
Iteration: 3, Func. Count: 27, Neg. LLF: 139.20432019037872
Iteration: 4, Func. Count: 36, Neg. LLF: 137.05758928092237
Iteration: 5, Func. Count: 45, Neg. LLF: 139.5581977583384
Iteration: 6, Func. Count: 54, Neg. LLF: 136.37476765448775
Iteration: 7, Func. Count: 62, Neg. LLF: 136.27318591791897
Iteration: 8, Func. Count: 70, Neg. LLF: 136.3756068233865
Iteration: 9, Func. Count: 79, Neg. LLF: 136.22494383611453
Iteration: 10, Func. Count: 87, Neg. LLF: 136.21887936635562
Iteration: 11, Func. Count: 95, Neg. LLF: 136.21803769856453
Iteration: 12, Func. Count: 103, Neg. LLF: 136.2174976971609
Iteration: 13, Func. Count: 111, Neg. LLF: 136.2173074675061
Iteration: 14, Func. Count: 119, Neg. LLF: 136.21729239238334
Iteration: 15, Func. Count: 127, Neg. LLF: 136.21729158440553
Optimization terminated successfully (Exit mode 0)
Current function value: 136.21729158440553
Iterations: 15
Function evaluations: 127
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 258.35950771243307
Iteration: 2, Func. Count: 20, Neg. LLF: 140.75687925592487
Iteration: 3, Func. Count: 30, Neg. LLF: 137.51290723922773
Iteration: 4, Func. Count: 40, Neg. LLF: 137.05517939182172
Iteration: 5, Func. Count: 50, Neg. LLF: 136.5147262150745
Iteration: 6, Func. Count: 60, Neg. LLF: 136.1772079449069
Iteration: 7, Func. Count: 69, Neg. LLF: 138.52405811778556
Iteration: 8, Func. Count: 79, Neg. LLF: 136.13235998451114
Iteration: 9, Func. Count: 88, Neg. LLF: 136.12017119637287
Iteration: 10, Func. Count: 97, Neg. LLF: 136.11717474644297
Iteration: 11, Func. Count: 106, Neg. LLF: 136.1169121846012
Iteration: 12, Func. Count: 115, Neg. LLF: 136.11690435359395
Iteration: 13, Func. Count: 123, Neg. LLF: 136.1169043536903
Optimization terminated successfully (Exit mode 0)
Current function value: 136.11690435359395
Iterations: 13
Function evaluations: 123
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 288.37521308364796
Iteration: 2, Func. Count: 22, Neg. LLF: 140.41115561396836
Iteration: 3, Func. Count: 33, Neg. LLF: 138.38269556866018
Iteration: 4, Func. Count: 44, Neg. LLF: 136.4524430501054
Iteration: 5, Func. Count: 54, Neg. LLF: 136.6432107462761
Iteration: 6, Func. Count: 65, Neg. LLF: 136.18676818277146
Iteration: 7, Func. Count: 76, Neg. LLF: 136.4008626281247
Iteration: 8, Func. Count: 87, Neg. LLF: 136.1187079589587
Iteration: 9, Func. Count: 97, Neg. LLF: 136.11698269426833
Iteration: 10, Func. Count: 107, Neg. LLF: 136.11692349379956
Iteration: 11, Func. Count: 117, Neg. LLF: 136.11690679770533
Iteration: 12, Func. Count: 127, Neg. LLF: 136.11690405428047
Iteration: 13, Func. Count: 136, Neg. LLF: 136.11690405926126
Optimization terminated successfully (Exit mode 0)
Current function value: 136.11690405428047
Iterations: 13
Function evaluations: 136
Gradient evaluations: 13
Iteration: 1, Func. Count: 8, Neg. LLF: 141.84661391158238
Iteration: 2, Func. Count: 16, Neg. LLF: 140.7142937796396
Iteration: 3, Func. Count: 24, Neg. LLF: 138.32526594390254
Iteration: 4, Func. Count: 32, Neg. LLF: 138.69979257608927
Iteration: 5, Func. Count: 40, Neg. LLF: 137.39281825412058
Iteration: 6, Func. Count: 47, Neg. LLF: 137.216748838134
Iteration: 7, Func. Count: 54, Neg. LLF: 137.17297849986736
Iteration: 8, Func. Count: 61, Neg. LLF: 137.16284809773043
Iteration: 9, Func. Count: 68, Neg. LLF: 137.15177697317577
Iteration: 10, Func. Count: 75, Neg. LLF: 137.1508107919948
Iteration: 11, Func. Count: 82, Neg. LLF: 137.15077562825712
Iteration: 12, Func. Count: 89, Neg. LLF: 137.15075530218766
Iteration: 13, Func. Count: 95, Neg. LLF: 137.150755284612
Optimization terminated successfully (Exit mode 0)
Current function value: 137.15075530218766
Iterations: 13
Function evaluations: 95
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 143.19758211234426
Iteration: 2, Func. Count: 19, Neg. LLF: 142.53223031701583
Iteration: 3, Func. Count: 28, Neg. LLF: 137.81387810414643
Iteration: 4, Func. Count: 37, Neg. LLF: 137.3128955948167
Iteration: 5, Func. Count: 46, Neg. LLF: 137.0093068906798
Iteration: 6, Func. Count: 54, Neg. LLF: 137.06333992386098
Iteration: 7, Func. Count: 63, Neg. LLF: 136.98209671463684
Iteration: 8, Func. Count: 71, Neg. LLF: 136.96086234351316
Iteration: 9, Func. Count: 79, Neg. LLF: 136.93738875706163
Iteration: 10, Func. Count: 87, Neg. LLF: 136.8883633506567
Iteration: 11, Func. Count: 95, Neg. LLF: 136.82120860515235
Iteration: 12, Func. Count: 103, Neg. LLF: 136.73300644443802
Iteration: 13, Func. Count: 111, Neg. LLF: 136.525549767349
Iteration: 14, Func. Count: 119, Neg. LLF: 137.20985013098067
Iteration: 15, Func. Count: 128, Neg. LLF: 143.89426762801946
Iteration: 16, Func. Count: 137, Neg. LLF: 137.6341101874582
Iteration: 17, Func. Count: 146, Neg. LLF: 136.6834240541014
Iteration: 18, Func. Count: 155, Neg. LLF: 136.39485463488518
Iteration: 19, Func. Count: 164, Neg. LLF: 136.37956618825666
Iteration: 20, Func. Count: 172, Neg. LLF: 136.3771886299851
Iteration: 21, Func. Count: 180, Neg. LLF: 136.37707047202684
Iteration: 22, Func. Count: 188, Neg. LLF: 136.37702640997284
Iteration: 23, Func. Count: 196, Neg. LLF: 136.3770054342735
Iteration: 24, Func. Count: 204, Neg. LLF: 136.37700372334936
Iteration: 25, Func. Count: 211, Neg. LLF: 136.37700372343352
Optimization terminated successfully (Exit mode 0)
Current function value: 136.37700372334936
Iterations: 25
Function evaluations: 211
Gradient evaluations: 25
Iteration: 1, Func. Count: 10, Neg. LLF: 189.9420926770796
Iteration: 2, Func. Count: 20, Neg. LLF: 140.79554052637658
Iteration: 3, Func. Count: 30, Neg. LLF: 137.29085335622878
Iteration: 4, Func. Count: 40, Neg. LLF: 137.6405294798181
Iteration: 5, Func. Count: 50, Neg. LLF: 136.43400100289108
Iteration: 6, Func. Count: 59, Neg. LLF: 136.57523212592506
Iteration: 7, Func. Count: 69, Neg. LLF: 137.564708822994
Iteration: 8, Func. Count: 79, Neg. LLF: 136.46350392168793
Iteration: 9, Func. Count: 89, Neg. LLF: 136.231169360404
Iteration: 10, Func. Count: 98, Neg. LLF: 136.22570805453745
Iteration: 11, Func. Count: 107, Neg. LLF: 136.2203786905594
Iteration: 12, Func. Count: 116, Neg. LLF: 136.21835704959037
Iteration: 13, Func. Count: 125, Neg. LLF: 136.21785468460956
Iteration: 14, Func. Count: 134, Neg. LLF: 136.21749813057872
Iteration: 15, Func. Count: 143, Neg. LLF: 136.21736871991257
Iteration: 16, Func. Count: 152, Neg. LLF: 136.21729808694937
Iteration: 17, Func. Count: 161, Neg. LLF: 136.2172917714379
Iteration: 18, Func. Count: 169, Neg. LLF: 136.21729177144218
Optimization terminated successfully (Exit mode 0)
Current function value: 136.2172917714379
Iterations: 18
Function evaluations: 169
Gradient evaluations: 18
Iteration: 1, Func. Count: 11, Neg. LLF: 230.86895312200633
Iteration: 2, Func. Count: 22, Neg. LLF: 140.4857903232602
Iteration: 3, Func. Count: 33, Neg. LLF: 137.1128385687245
Iteration: 4, Func. Count: 44, Neg. LLF: 137.051097731767
Iteration: 5, Func. Count: 55, Neg. LLF: 136.43081958293524
Iteration: 6, Func. Count: 66, Neg. LLF: 136.7039351828818
Iteration: 7, Func. Count: 77, Neg. LLF: 136.28959379305238
Iteration: 8, Func. Count: 88, Neg. LLF: 136.12387872648483
Iteration: 9, Func. Count: 98, Neg. LLF: 136.1277254777399
Iteration: 10, Func. Count: 109, Neg. LLF: 136.11973947039644
Iteration: 11, Func. Count: 119, Neg. LLF: 136.11693381952762
Iteration: 12, Func. Count: 129, Neg. LLF: 136.1169067370111
Iteration: 13, Func. Count: 139, Neg. LLF: 136.1169039881603
Iteration: 14, Func. Count: 148, Neg. LLF: 136.11690398810592
Optimization terminated successfully (Exit mode 0)
Current function value: 136.1169039881603
Iterations: 14
Function evaluations: 148
Gradient evaluations: 14
Iteration: 1, Func. Count: 12, Neg. LLF: 287.5061786636247
Iteration: 2, Func. Count: 24, Neg. LLF: 140.41216702487728
Iteration: 3, Func. Count: 36, Neg. LLF: 137.79654104022634
Iteration: 4, Func. Count: 48, Neg. LLF: 136.54904054325758
Iteration: 5, Func. Count: 59, Neg. LLF: 137.20271185813442
Iteration: 6, Func. Count: 71, Neg. LLF: 137.64975529198028
Iteration: 7, Func. Count: 84, Neg. LLF: 136.34105838608906
Iteration: 8, Func. Count: 96, Neg. LLF: 136.13511253233787
Iteration: 9, Func. Count: 107, Neg. LLF: 136.11932670982546
Iteration: 10, Func. Count: 118, Neg. LLF: 136.11718177540718
Iteration: 11, Func. Count: 129, Neg. LLF: 136.11693834229283
Iteration: 12, Func. Count: 140, Neg. LLF: 136.11690418515934
Iteration: 13, Func. Count: 150, Neg. LLF: 136.11690419019732
Optimization terminated successfully (Exit mode 0)
Current function value: 136.11690418515934
Iterations: 13
Function evaluations: 150
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 142.59431315826674
Iteration: 2, Func. Count: 19, Neg. LLF: 140.80859114914855
Iteration: 3, Func. Count: 29, Neg. LLF: 137.97852221161077
Iteration: 4, Func. Count: 38, Neg. LLF: 137.5279003444289
Iteration: 5, Func. Count: 47, Neg. LLF: 137.36320683200537
Iteration: 6, Func. Count: 56, Neg. LLF: 137.92164675904385
Iteration: 7, Func. Count: 65, Neg. LLF: 137.15352521213913
Iteration: 8, Func. Count: 73, Neg. LLF: 137.1505637726035
Iteration: 9, Func. Count: 81, Neg. LLF: 137.1504455113317
Iteration: 10, Func. Count: 89, Neg. LLF: 137.15041167674943
Iteration: 11, Func. Count: 97, Neg. LLF: 137.15039858950652
Iteration: 12, Func. Count: 105, Neg. LLF: 137.15039786064548
Optimization terminated successfully (Exit mode 0)
Current function value: 137.15039786064548
Iterations: 12
Function evaluations: 105
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 143.2267656639776
Iteration: 2, Func. Count: 21, Neg. LLF: 142.5177625619673
Iteration: 3, Func. Count: 31, Neg. LLF: 137.9082882987499
Iteration: 4, Func. Count: 41, Neg. LLF: 137.34053225873373
Iteration: 5, Func. Count: 51, Neg. LLF: 137.00236136623317
Iteration: 6, Func. Count: 60, Neg. LLF: 137.02427666404458
Iteration: 7, Func. Count: 70, Neg. LLF: 136.98176922272793
Iteration: 8, Func. Count: 79, Neg. LLF: 136.95880503592352
Iteration: 9, Func. Count: 88, Neg. LLF: 136.93278675185024
Iteration: 10, Func. Count: 97, Neg. LLF: 136.88439645941222
Iteration: 11, Func. Count: 106, Neg. LLF: 136.8111662788694
Iteration: 12, Func. Count: 115, Neg. LLF: 136.70041466655346
Iteration: 13, Func. Count: 124, Neg. LLF: 136.52075018652704
Iteration: 14, Func. Count: 133, Neg. LLF: 138.46435404704152
Iteration: 15, Func. Count: 143, Neg. LLF: 137.4228103787571
Iteration: 16, Func. Count: 153, Neg. LLF: 137.1841105957342
Iteration: 17, Func. Count: 163, Neg. LLF: 136.6281510846711
Iteration: 18, Func. Count: 173, Neg. LLF: 136.40341129805998
Iteration: 19, Func. Count: 183, Neg. LLF: 136.3813848627651
Iteration: 20, Func. Count: 192, Neg. LLF: 136.37716394233806
Iteration: 21, Func. Count: 201, Neg. LLF: 136.37700914439063
Iteration: 22, Func. Count: 210, Neg. LLF: 136.3770038001672
Iteration: 23, Func. Count: 218, Neg. LLF: 136.37700380003207
Optimization terminated successfully (Exit mode 0)
Current function value: 136.3770038001672
Iterations: 23
Function evaluations: 218
Gradient evaluations: 23
Iteration: 1, Func. Count: 11, Neg. LLF: 190.09850105078678
Iteration: 2, Func. Count: 22, Neg. LLF: 140.80548679057205
Iteration: 3, Func. Count: 33, Neg. LLF: 137.2936773782687
Iteration: 4, Func. Count: 44, Neg. LLF: 137.84435275525362
Iteration: 5, Func. Count: 55, Neg. LLF: 136.43423846693148
Iteration: 6, Func. Count: 65, Neg. LLF: 136.525259556159
Iteration: 7, Func. Count: 76, Neg. LLF: 137.396720250386
Iteration: 8, Func. Count: 87, Neg. LLF: 136.43717910725613
Iteration: 9, Func. Count: 98, Neg. LLF: 136.24676641224747
Iteration: 10, Func. Count: 108, Neg. LLF: 136.25465189051138
Iteration: 11, Func. Count: 119, Neg. LLF: 136.19223620054163
Iteration: 12, Func. Count: 129, Neg. LLF: 136.18724816124003
Iteration: 13, Func. Count: 139, Neg. LLF: 136.18453787002264
Iteration: 14, Func. Count: 149, Neg. LLF: 136.18373517924394
Iteration: 15, Func. Count: 159, Neg. LLF: 136.18331086463144
Iteration: 16, Func. Count: 169, Neg. LLF: 136.18317764992875
Iteration: 17, Func. Count: 179, Neg. LLF: 136.18314504997528
Iteration: 18, Func. Count: 189, Neg. LLF: 136.18314054291352
Iteration: 19, Func. Count: 199, Neg. LLF: 136.18313953162024
Iteration: 20, Func. Count: 208, Neg. LLF: 136.18313953162178
Optimization terminated successfully (Exit mode 0)
Current function value: 136.18313953162024
Iterations: 20
Function evaluations: 208
Gradient evaluations: 20
Iteration: 1, Func. Count: 12, Neg. LLF: 230.89694726910747
Iteration: 2, Func. Count: 24, Neg. LLF: 140.54155787400674
Iteration: 3, Func. Count: 36, Neg. LLF: 137.09073575832866
Iteration: 4, Func. Count: 48, Neg. LLF: 137.05686800799384
Iteration: 5, Func. Count: 60, Neg. LLF: 136.43010119979232
Iteration: 6, Func. Count: 72, Neg. LLF: 136.6298010733179
Iteration: 7, Func. Count: 84, Neg. LLF: 136.30999047356715
Iteration: 8, Func. Count: 96, Neg. LLF: 136.123805394439
Iteration: 9, Func. Count: 107, Neg. LLF: 136.12593495635988
Iteration: 10, Func. Count: 119, Neg. LLF: 136.11949251197913
Iteration: 11, Func. Count: 130, Neg. LLF: 136.11692788599635
Iteration: 12, Func. Count: 141, Neg. LLF: 136.11690629006355
Iteration: 13, Func. Count: 152, Neg. LLF: 136.11690396445263
Iteration: 14, Func. Count: 162, Neg. LLF: 136.11690396440125
Optimization terminated successfully (Exit mode 0)
Current function value: 136.11690396445263
Iterations: 14
Function evaluations: 162
Gradient evaluations: 14
Iteration: 1, Func. Count: 13, Neg. LLF: 288.23530141077663
Iteration: 2, Func. Count: 26, Neg. LLF: 140.4541043471049
Iteration: 3, Func. Count: 39, Neg. LLF: 137.8786293142683
Iteration: 4, Func. Count: 52, Neg. LLF: 136.54178075293316
Iteration: 5, Func. Count: 64, Neg. LLF: 137.01785067391904
Iteration: 6, Func. Count: 77, Neg. LLF: 138.67123632837001
Iteration: 7, Func. Count: 91, Neg. LLF: 136.27248044390095
Iteration: 8, Func. Count: 104, Neg. LLF: 136.12341017868354
Iteration: 9, Func. Count: 116, Neg. LLF: 136.11936152938776
Iteration: 10, Func. Count: 128, Neg. LLF: 136.11712509353805
Iteration: 11, Func. Count: 140, Neg. LLF: 136.11692402413368
Iteration: 12, Func. Count: 152, Neg. LLF: 136.11690781749581
Iteration: 13, Func. Count: 164, Neg. LLF: 136.11690399108474
Iteration: 14, Func. Count: 175, Neg. LLF: 136.1169039960875
Optimization terminated successfully (Exit mode 0)
Current function value: 136.11690399108474
Iterations: 14
Function evaluations: 175
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 142.3899383133539
Iteration: 2, Func. Count: 21, Neg. LLF: 140.6361465500483
Iteration: 3, Func. Count: 32, Neg. LLF: 137.9645152792929
Iteration: 4, Func. Count: 42, Neg. LLF: 137.68554810145142
Iteration: 5, Func. Count: 52, Neg. LLF: 137.23091231276737
Iteration: 6, Func. Count: 61, Neg. LLF: 137.44519243307397
Iteration: 7, Func. Count: 71, Neg. LLF: 137.18134068499558
Iteration: 8, Func. Count: 80, Neg. LLF: 137.15108478258372
Iteration: 9, Func. Count: 89, Neg. LLF: 137.1504948557428
Iteration: 10, Func. Count: 98, Neg. LLF: 137.15041545484726
Iteration: 11, Func. Count: 107, Neg. LLF: 137.15040299324454
Iteration: 12, Func. Count: 116, Neg. LLF: 137.15039820904266
Iteration: 13, Func. Count: 124, Neg. LLF: 137.150398282274
Optimization terminated successfully (Exit mode 0)
Current function value: 137.15039820904266
Iterations: 13
Function evaluations: 124
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 143.2238865644142
Iteration: 2, Func. Count: 23, Neg. LLF: 142.5155069329926
Iteration: 3, Func. Count: 34, Neg. LLF: 137.9825519385197
Iteration: 4, Func. Count: 45, Neg. LLF: 137.319712660805
Iteration: 5, Func. Count: 56, Neg. LLF: 137.0018268974783
Iteration: 6, Func. Count: 66, Neg. LLF: 137.02576906257073
Iteration: 7, Func. Count: 77, Neg. LLF: 136.97800890388478
Iteration: 8, Func. Count: 87, Neg. LLF: 136.95818278297256
Iteration: 9, Func. Count: 97, Neg. LLF: 136.9249237632264
Iteration: 10, Func. Count: 107, Neg. LLF: 136.87636913094929
Iteration: 11, Func. Count: 117, Neg. LLF: 136.80476836631527
Iteration: 12, Func. Count: 127, Neg. LLF: 136.68664035695667
Iteration: 13, Func. Count: 137, Neg. LLF: 136.56369907665356
Iteration: 14, Func. Count: 147, Neg. LLF: 136.50694722622828
Iteration: 15, Func. Count: 157, Neg. LLF: 136.55775774139448
Iteration: 16, Func. Count: 168, Neg. LLF: 143.0677045175296
Iteration: 17, Func. Count: 180, Neg. LLF: 136.3855260639635
Iteration: 18, Func. Count: 190, Neg. LLF: 136.3809926475619
Iteration: 19, Func. Count: 200, Neg. LLF: 136.38223150526267
Iteration: 20, Func. Count: 211, Neg. LLF: 136.37711341241078
Iteration: 21, Func. Count: 221, Neg. LLF: 136.37700371498383
Iteration: 22, Func. Count: 230, Neg. LLF: 136.37700371505028
Optimization terminated successfully (Exit mode 0)
Current function value: 136.37700371498383
Iterations: 22
Function evaluations: 230
Gradient evaluations: 22
Iteration: 1, Func. Count: 12, Neg. LLF: 190.11059717003448
Iteration: 2, Func. Count: 24, Neg. LLF: 140.80435933544095
Iteration: 3, Func. Count: 36, Neg. LLF: 137.28829070834246
Iteration: 4, Func. Count: 48, Neg. LLF: 138.10989395654474
Iteration: 5, Func. Count: 60, Neg. LLF: 136.4267472344578
Iteration: 6, Func. Count: 71, Neg. LLF: 136.5218025390751
Iteration: 7, Func. Count: 83, Neg. LLF: 137.19117330654225
Iteration: 8, Func. Count: 95, Neg. LLF: 136.4401952356438
Iteration: 9, Func. Count: 107, Neg. LLF: 136.23650716588034
Iteration: 10, Func. Count: 118, Neg. LLF: 136.23179280717727
Iteration: 11, Func. Count: 129, Neg. LLF: 136.20780900129319
Iteration: 12, Func. Count: 140, Neg. LLF: 136.18592795584675
Iteration: 13, Func. Count: 151, Neg. LLF: 136.18414843168674
Iteration: 14, Func. Count: 162, Neg. LLF: 136.18359130693736
Iteration: 15, Func. Count: 173, Neg. LLF: 136.18334859839763
Iteration: 16, Func. Count: 184, Neg. LLF: 136.18323274903884
Iteration: 17, Func. Count: 195, Neg. LLF: 136.18318676302331
Iteration: 18, Func. Count: 206, Neg. LLF: 136.18315620387062
Iteration: 19, Func. Count: 217, Neg. LLF: 136.18314292337854
Iteration: 20, Func. Count: 228, Neg. LLF: 136.1831398131539
Iteration: 21, Func. Count: 238, Neg. LLF: 136.18313981326767
Optimization terminated successfully (Exit mode 0)
Current function value: 136.1831398131539
Iterations: 21
Function evaluations: 238
Gradient evaluations: 21
Iteration: 1, Func. Count: 13, Neg. LLF: 231.02134209201964
Iteration: 2, Func. Count: 26, Neg. LLF: 140.54015984214408
Iteration: 3, Func. Count: 39, Neg. LLF: 137.08009343821664
Iteration: 4, Func. Count: 52, Neg. LLF: 137.05399138907796
Iteration: 5, Func. Count: 65, Neg. LLF: 136.45057722171273
Iteration: 6, Func. Count: 78, Neg. LLF: 136.54653614185105
Iteration: 7, Func. Count: 91, Neg. LLF: 136.33035652450857
Iteration: 8, Func. Count: 104, Neg. LLF: 136.12389874106054
Iteration: 9, Func. Count: 116, Neg. LLF: 136.11979108081107
Iteration: 10, Func. Count: 128, Neg. LLF: 136.11729526459462
Iteration: 11, Func. Count: 140, Neg. LLF: 136.1169135039859
Iteration: 12, Func. Count: 152, Neg. LLF: 136.1169058343169
Iteration: 13, Func. Count: 164, Neg. LLF: 136.11690436612994
Iteration: 14, Func. Count: 176, Neg. LLF: 136.11690384378898
Optimization terminated successfully (Exit mode 0)
Current function value: 136.11690384378898
Iterations: 14
Function evaluations: 176
Gradient evaluations: 14
Iteration: 1, Func. Count: 14, Neg. LLF: 288.0124721581575
Iteration: 2, Func. Count: 28, Neg. LLF: 140.44499142217845
Iteration: 3, Func. Count: 42, Neg. LLF: 137.81112019450623
Iteration: 4, Func. Count: 56, Neg. LLF: 136.5792953488886
Iteration: 5, Func. Count: 70, Neg. LLF: 137.47081425489176
Iteration: 6, Func. Count: 84, Neg. LLF: 141.9318804798876
Iteration: 7, Func. Count: 98, Neg. LLF: 136.12243719789956
Iteration: 8, Func. Count: 111, Neg. LLF: 136.1181947524079
Iteration: 9, Func. Count: 124, Neg. LLF: 136.11706946626202
Iteration: 10, Func. Count: 137, Neg. LLF: 136.11693966685678
Iteration: 11, Func. Count: 150, Neg. LLF: 136.11690489983096
Iteration: 12, Func. Count: 163, Neg. LLF: 136.11690390300907
Optimization terminated successfully (Exit mode 0)
Current function value: 136.11690390300907
Iterations: 12
Function evaluations: 163
Gradient evaluations: 12
Iteration: 1, Func. Count: 7, Neg. LLF: 140.51945704690414
Iteration: 2, Func. Count: 14, Neg. LLF: 141.56538947196998
Iteration: 3, Func. Count: 21, Neg. LLF: 137.31591827414567
Iteration: 4, Func. Count: 28, Neg. LLF: 136.9041979542558
Iteration: 5, Func. Count: 34, Neg. LLF: 136.63205208801617
Iteration: 6, Func. Count: 40, Neg. LLF: 136.60442672788696
Iteration: 7, Func. Count: 46, Neg. LLF: 136.59155647960475
Iteration: 8, Func. Count: 52, Neg. LLF: 136.587522911104
Iteration: 9, Func. Count: 58, Neg. LLF: 136.58367619251356
Iteration: 10, Func. Count: 64, Neg. LLF: 136.58366175920023
Iteration: 11, Func. Count: 69, Neg. LLF: 136.58366175921793
Optimization terminated successfully (Exit mode 0)
Current function value: 136.58366175920023
Iterations: 11
Function evaluations: 69
Gradient evaluations: 11
Iteration: 1, Func. Count: 8, Neg. LLF: 140.3781229673937
Iteration: 2, Func. Count: 17, Neg. LLF: 138.8207674241432
Iteration: 3, Func. Count: 25, Neg. LLF: 137.34794746773565
Iteration: 4, Func. Count: 33, Neg. LLF: 136.73885338443702
Iteration: 5, Func. Count: 40, Neg. LLF: 136.58909327651835
Iteration: 6, Func. Count: 47, Neg. LLF: 136.58401232473256
Iteration: 7, Func. Count: 54, Neg. LLF: 136.5837265586111
Iteration: 8, Func. Count: 61, Neg. LLF: 136.58368781501827
Iteration: 9, Func. Count: 68, Neg. LLF: 136.58367358291565
Iteration: 10, Func. Count: 75, Neg. LLF: 136.58366876039003
Iteration: 11, Func. Count: 82, Neg. LLF: 136.58366247753074
Iteration: 12, Func. Count: 89, Neg. LLF: 136.58366173966616
Optimization terminated successfully (Exit mode 0)
Current function value: 136.58366173966616
Iterations: 12
Function evaluations: 89
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 174.5952676714573
Iteration: 2, Func. Count: 18, Neg. LLF: 140.81587612128087
Iteration: 3, Func. Count: 27, Neg. LLF: 169.89264180685655
Iteration: 4, Func. Count: 36, Neg. LLF: 136.40065699359994
Iteration: 5, Func. Count: 44, Neg. LLF: 137.06211210298994
Iteration: 6, Func. Count: 53, Neg. LLF: 136.33420991297874
Iteration: 7, Func. Count: 61, Neg. LLF: 136.32009827054398
Iteration: 8, Func. Count: 69, Neg. LLF: 136.30660827188018
Iteration: 9, Func. Count: 77, Neg. LLF: 136.30573123207742
Iteration: 10, Func. Count: 85, Neg. LLF: 136.30558038845652
Iteration: 11, Func. Count: 93, Neg. LLF: 136.30556698242245
Iteration: 12, Func. Count: 101, Neg. LLF: 136.30556390690174
Iteration: 13, Func. Count: 108, Neg. LLF: 136.30556390687278
Optimization terminated successfully (Exit mode 0)
Current function value: 136.30556390690174
Iterations: 13
Function evaluations: 108
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 425.6276738351994
Iteration: 2, Func. Count: 21, Neg. LLF: 251.70233008817945
Iteration: 3, Func. Count: 31, Neg. LLF: 171.22213375849358
Iteration: 4, Func. Count: 41, Neg. LLF: 136.7407416479303
Iteration: 5, Func. Count: 50, Neg. LLF: 138.22747045224435
Iteration: 6, Func. Count: 60, Neg. LLF: 136.42326600177532
Iteration: 7, Func. Count: 69, Neg. LLF: 136.32670876177772
Iteration: 8, Func. Count: 78, Neg. LLF: 136.3139865851214
Iteration: 9, Func. Count: 87, Neg. LLF: 136.30600016889662
Iteration: 10, Func. Count: 96, Neg. LLF: 136.30559837362037
Iteration: 11, Func. Count: 105, Neg. LLF: 136.30556654325912
Iteration: 12, Func. Count: 114, Neg. LLF: 136.3055639280072
Iteration: 13, Func. Count: 122, Neg. LLF: 136.30556393954976
Optimization terminated successfully (Exit mode 0)
Current function value: 136.3055639280072
Iterations: 13
Function evaluations: 122
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 505.3348026567466
Iteration: 2, Func. Count: 23, Neg. LLF: 274.9742595469594
Iteration: 3, Func. Count: 34, Neg. LLF: 154.71303536530925
Iteration: 4, Func. Count: 45, Neg. LLF: 136.68094729035576
Iteration: 5, Func. Count: 55, Neg. LLF: 136.5812352519914
Iteration: 6, Func. Count: 66, Neg. LLF: 136.3081141279898
Iteration: 7, Func. Count: 76, Neg. LLF: 136.30618908736363
Iteration: 8, Func. Count: 86, Neg. LLF: 136.3060427474324
Iteration: 9, Func. Count: 96, Neg. LLF: 136.3058971629712
Iteration: 10, Func. Count: 106, Neg. LLF: 136.3058537145392
Iteration: 11, Func. Count: 116, Neg. LLF: 136.30584458369208
Iteration: 12, Func. Count: 126, Neg. LLF: 136.3058429065708
Iteration: 13, Func. Count: 136, Neg. LLF: 136.30584209861064
Optimization terminated successfully (Exit mode 0)
Current function value: 136.30584209861064
Iterations: 13
Function evaluations: 136
Gradient evaluations: 13
Iteration: 1, Func. Count: 8, Neg. LLF: 139.34305830547078
Iteration: 2, Func. Count: 16, Neg. LLF: 138.37767967770947
Iteration: 3, Func. Count: 24, Neg. LLF: 141.2436526185246
Iteration: 4, Func. Count: 32, Neg. LLF: 137.0141348387143
Iteration: 5, Func. Count: 40, Neg. LLF: 138.14851770296156
Iteration: 6, Func. Count: 48, Neg. LLF: 136.42609584801534
Iteration: 7, Func. Count: 56, Neg. LLF: 136.35886642190516
Iteration: 8, Func. Count: 63, Neg. LLF: 136.3580710292135
Iteration: 9, Func. Count: 70, Neg. LLF: 136.356539913857
Iteration: 10, Func. Count: 77, Neg. LLF: 136.35652418447515
Iteration: 11, Func. Count: 84, Neg. LLF: 136.35652335304565
Optimization terminated successfully (Exit mode 0)
Current function value: 136.35652335304565
Iterations: 11
Function evaluations: 84
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 143.30216262130327
Iteration: 2, Func. Count: 18, Neg. LLF: 137.9736825698436
Iteration: 3, Func. Count: 28, Neg. LLF: 137.6243341167345
Iteration: 4, Func. Count: 37, Neg. LLF: 136.6081271715142
Iteration: 5, Func. Count: 46, Neg. LLF: 150.68114156603667
Iteration: 6, Func. Count: 55, Neg. LLF: 136.36353137078163
Iteration: 7, Func. Count: 63, Neg. LLF: 136.35812862389588
Iteration: 8, Func. Count: 71, Neg. LLF: 136.35709097089645
Iteration: 9, Func. Count: 79, Neg. LLF: 136.35671588104793
Iteration: 10, Func. Count: 87, Neg. LLF: 136.35664946175302
Iteration: 11, Func. Count: 95, Neg. LLF: 136.35655755774624
Iteration: 12, Func. Count: 103, Neg. LLF: 136.35652805449106
Iteration: 13, Func. Count: 111, Neg. LLF: 136.35652351524823
Iteration: 14, Func. Count: 118, Neg. LLF: 136.35652352666355
Optimization terminated successfully (Exit mode 0)
Current function value: 136.35652351524823
Iterations: 14
Function evaluations: 118
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 235.00713010808204
Iteration: 2, Func. Count: 20, Neg. LLF: 143.0520511426014
Iteration: 3, Func. Count: 30, Neg. LLF: 138.45170075858582
Iteration: 4, Func. Count: 40, Neg. LLF: 137.15782198356325
Iteration: 5, Func. Count: 50, Neg. LLF: 137.92691892149153
Iteration: 6, Func. Count: 60, Neg. LLF: 136.3712443619755
Iteration: 7, Func. Count: 69, Neg. LLF: 136.2478290697468
Iteration: 8, Func. Count: 78, Neg. LLF: 136.2570825680652
Iteration: 9, Func. Count: 88, Neg. LLF: 136.2208313326529
Iteration: 10, Func. Count: 97, Neg. LLF: 136.2184573618743
Iteration: 11, Func. Count: 106, Neg. LLF: 136.21782011479874
Iteration: 12, Func. Count: 115, Neg. LLF: 136.21739628103956
Iteration: 13, Func. Count: 124, Neg. LLF: 136.2173063173554
Iteration: 14, Func. Count: 133, Neg. LLF: 136.21729180192108
Iteration: 15, Func. Count: 141, Neg. LLF: 136.2172918018134
Optimization terminated successfully (Exit mode 0)
Current function value: 136.21729180192108
Iterations: 15
Function evaluations: 141
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 268.6638518491563
Iteration: 2, Func. Count: 22, Neg. LLF: 142.217061525727
Iteration: 3, Func. Count: 33, Neg. LLF: 137.80426601318536
Iteration: 4, Func. Count: 44, Neg. LLF: 136.5495972758166
Iteration: 5, Func. Count: 54, Neg. LLF: 138.4118325229286
Iteration: 6, Func. Count: 66, Neg. LLF: 138.14148397087908
Iteration: 7, Func. Count: 77, Neg. LLF: 137.98757975080045
Iteration: 8, Func. Count: 88, Neg. LLF: 136.33402817630187
Iteration: 9, Func. Count: 99, Neg. LLF: 136.12935332383705
Iteration: 10, Func. Count: 109, Neg. LLF: 136.12056121237683
Iteration: 11, Func. Count: 119, Neg. LLF: 136.1177104146521
Iteration: 12, Func. Count: 129, Neg. LLF: 136.1169572813589
Iteration: 13, Func. Count: 139, Neg. LLF: 136.1169179374261
Iteration: 14, Func. Count: 149, Neg. LLF: 136.11690494100077
Iteration: 15, Func. Count: 159, Neg. LLF: 136.11690394672
Optimization terminated successfully (Exit mode 0)
Current function value: 136.11690394672
Iterations: 15
Function evaluations: 159
Gradient evaluations: 15
Iteration: 1, Func. Count: 12, Neg. LLF: 305.35578874956207
Iteration: 2, Func. Count: 24, Neg. LLF: 141.37410585523003
Iteration: 3, Func. Count: 36, Neg. LLF: 140.0864011497173
Iteration: 4, Func. Count: 48, Neg. LLF: 137.79122228712606
Iteration: 5, Func. Count: 60, Neg. LLF: 140.99005657884118
Iteration: 6, Func. Count: 72, Neg. LLF: 136.55076476361614
Iteration: 7, Func. Count: 84, Neg. LLF: 136.3742441683159
Iteration: 8, Func. Count: 96, Neg. LLF: 136.1903334331908
Iteration: 9, Func. Count: 107, Neg. LLF: 136.1521313599396
Iteration: 10, Func. Count: 118, Neg. LLF: 136.126760163009
Iteration: 11, Func. Count: 129, Neg. LLF: 136.11948709285306
Iteration: 12, Func. Count: 140, Neg. LLF: 136.1171775513393
Iteration: 13, Func. Count: 151, Neg. LLF: 136.11692214743445
Iteration: 14, Func. Count: 162, Neg. LLF: 136.11690743715164
Iteration: 15, Func. Count: 173, Neg. LLF: 136.1169040136286
Iteration: 16, Func. Count: 183, Neg. LLF: 136.11690401868498
Optimization terminated successfully (Exit mode 0)
Current function value: 136.1169040136286
Iterations: 16
Function evaluations: 183
Gradient evaluations: 16
Iteration: 1, Func. Count: 9, Neg. LLF: 143.5573000624
Iteration: 2, Func. Count: 19, Neg. LLF: 139.23948647125732
Iteration: 3, Func. Count: 28, Neg. LLF: 136.64724868697243
Iteration: 4, Func. Count: 36, Neg. LLF: 142.23436841734414
Iteration: 5, Func. Count: 45, Neg. LLF: 139.2657271699935
Iteration: 6, Func. Count: 54, Neg. LLF: 136.2988250722214
Iteration: 7, Func. Count: 63, Neg. LLF: 136.52750753613958
Iteration: 8, Func. Count: 72, Neg. LLF: 136.2555839994239
Iteration: 9, Func. Count: 80, Neg. LLF: 136.25349840140478
Iteration: 10, Func. Count: 88, Neg. LLF: 136.25187086538614
Iteration: 11, Func. Count: 96, Neg. LLF: 136.2516313458505
Iteration: 12, Func. Count: 104, Neg. LLF: 136.25145995580178
Iteration: 13, Func. Count: 112, Neg. LLF: 136.25143758067526
Iteration: 14, Func. Count: 120, Neg. LLF: 136.25143410210993
Iteration: 15, Func. Count: 127, Neg. LLF: 136.2514340685555
Optimization terminated successfully (Exit mode 0)
Current function value: 136.25143410210993
Iterations: 15
Function evaluations: 127
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 144.46451976148893
Iteration: 2, Func. Count: 21, Neg. LLF: 142.54620496228887
Iteration: 3, Func. Count: 31, Neg. LLF: 140.4481442158847
Iteration: 4, Func. Count: 41, Neg. LLF: 136.5547678095141
Iteration: 5, Func. Count: 50, Neg. LLF: 136.6408675357105
Iteration: 6, Func. Count: 60, Neg. LLF: 137.95310163686966
Iteration: 7, Func. Count: 70, Neg. LLF: 136.26150400015217
Iteration: 8, Func. Count: 79, Neg. LLF: 136.26893263865986
Iteration: 9, Func. Count: 89, Neg. LLF: 136.2518986248323
Iteration: 10, Func. Count: 98, Neg. LLF: 136.2515879839263
Iteration: 11, Func. Count: 107, Neg. LLF: 136.25151562369803
Iteration: 12, Func. Count: 116, Neg. LLF: 136.25146137132145
Iteration: 13, Func. Count: 125, Neg. LLF: 136.2514390848218
Iteration: 14, Func. Count: 134, Neg. LLF: 136.25143471462616
Iteration: 15, Func. Count: 142, Neg. LLF: 136.25143473797922
Optimization terminated successfully (Exit mode 0)
Current function value: 136.25143471462616
Iterations: 15
Function evaluations: 142
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 190.1057402600658
Iteration: 2, Func. Count: 22, Neg. LLF: 140.45889012435484
Iteration: 3, Func. Count: 33, Neg. LLF: 137.78398321700345
Iteration: 4, Func. Count: 44, Neg. LLF: 137.17326514633027
Iteration: 5, Func. Count: 55, Neg. LLF: 136.34430505556597
Iteration: 6, Func. Count: 65, Neg. LLF: 136.51640058635613
Iteration: 7, Func. Count: 76, Neg. LLF: 136.60769282808786
Iteration: 8, Func. Count: 87, Neg. LLF: 136.2623332588081
Iteration: 9, Func. Count: 98, Neg. LLF: 136.2290674801729
Iteration: 10, Func. Count: 108, Neg. LLF: 136.2257027837055
Iteration: 11, Func. Count: 118, Neg. LLF: 136.22084003245965
Iteration: 12, Func. Count: 128, Neg. LLF: 136.21844868168003
Iteration: 13, Func. Count: 138, Neg. LLF: 136.21748321667943
Iteration: 14, Func. Count: 148, Neg. LLF: 136.21732367920626
Iteration: 15, Func. Count: 158, Neg. LLF: 136.2172966786871
Iteration: 16, Func. Count: 168, Neg. LLF: 136.21729208494372
Iteration: 17, Func. Count: 177, Neg. LLF: 136.21729208499008
Optimization terminated successfully (Exit mode 0)
Current function value: 136.21729208494372
Iterations: 17
Function evaluations: 177
Gradient evaluations: 17
Iteration: 1, Func. Count: 12, Neg. LLF: 216.4439114550211
Iteration: 2, Func. Count: 24, Neg. LLF: 141.00540451640765
Iteration: 3, Func. Count: 36, Neg. LLF: 136.5226197502433
Iteration: 4, Func. Count: 47, Neg. LLF: 143.4631192411202
Iteration: 5, Func. Count: 60, Neg. LLF: 137.260888811494
Iteration: 6, Func. Count: 72, Neg. LLF: 137.84819945147515
Iteration: 7, Func. Count: 84, Neg. LLF: 136.28075094640474
Iteration: 8, Func. Count: 96, Neg. LLF: 136.4710828912248
Iteration: 9, Func. Count: 108, Neg. LLF: 136.27125965003464
Iteration: 10, Func. Count: 120, Neg. LLF: 136.12636398307245
Iteration: 11, Func. Count: 131, Neg. LLF: 136.1193826568841
Iteration: 12, Func. Count: 142, Neg. LLF: 136.11721020169833
Iteration: 13, Func. Count: 153, Neg. LLF: 136.11694596239167
Iteration: 14, Func. Count: 164, Neg. LLF: 136.116905498841
Iteration: 15, Func. Count: 175, Neg. LLF: 136.1169039416031
Iteration: 16, Func. Count: 185, Neg. LLF: 136.11690394160635
Optimization terminated successfully (Exit mode 0)
Current function value: 136.1169039416031
Iterations: 16
Function evaluations: 185
Gradient evaluations: 16
Iteration: 1, Func. Count: 13, Neg. LLF: 303.88156831907617
Iteration: 2, Func. Count: 26, Neg. LLF: 141.39666160088453
Iteration: 3, Func. Count: 39, Neg. LLF: 140.1684680936118
Iteration: 4, Func. Count: 52, Neg. LLF: 137.76102993287088
Iteration: 5, Func. Count: 65, Neg. LLF: 141.9555719800048
Iteration: 6, Func. Count: 78, Neg. LLF: 136.45406795760502
Iteration: 7, Func. Count: 91, Neg. LLF: 136.3937734562685
Iteration: 8, Func. Count: 104, Neg. LLF: 136.2255870199127
Iteration: 9, Func. Count: 116, Neg. LLF: 136.2497491213223
Iteration: 10, Func. Count: 129, Neg. LLF: 136.19590460551217
Iteration: 11, Func. Count: 141, Neg. LLF: 136.16793143395174
Iteration: 12, Func. Count: 153, Neg. LLF: 136.15434415325396
Iteration: 13, Func. Count: 165, Neg. LLF: 136.12271268896396
Iteration: 14, Func. Count: 177, Neg. LLF: 136.11817069391842
Iteration: 15, Func. Count: 189, Neg. LLF: 136.1170088951932
Iteration: 16, Func. Count: 201, Neg. LLF: 136.11690774336864
Iteration: 17, Func. Count: 213, Neg. LLF: 136.11690414774836
Iteration: 18, Func. Count: 224, Neg. LLF: 136.11690415288402
Optimization terminated successfully (Exit mode 0)
Current function value: 136.11690414774836
Iterations: 18
Function evaluations: 224
Gradient evaluations: 18
Iteration: 1, Func. Count: 10, Neg. LLF: 141.47762490236525
Iteration: 2, Func. Count: 20, Neg. LLF: 143.73236865243118
Iteration: 3, Func. Count: 30, Neg. LLF: 137.72627998622212
Iteration: 4, Func. Count: 40, Neg. LLF: 136.68513364116447
Iteration: 5, Func. Count: 50, Neg. LLF: 142.31551448302844
Iteration: 6, Func. Count: 60, Neg. LLF: 136.35820842864405
Iteration: 7, Func. Count: 70, Neg. LLF: 136.1790302471685
Iteration: 8, Func. Count: 80, Neg. LLF: 136.47992842972698
Iteration: 9, Func. Count: 90, Neg. LLF: 135.9534826144106
Iteration: 10, Func. Count: 99, Neg. LLF: 135.95200380246555
Iteration: 11, Func. Count: 108, Neg. LLF: 135.95195362827923
Iteration: 12, Func. Count: 117, Neg. LLF: 135.95189198327137
Iteration: 13, Func. Count: 126, Neg. LLF: 135.95188553816863
Iteration: 14, Func. Count: 135, Neg. LLF: 135.9518750473459
Iteration: 15, Func. Count: 144, Neg. LLF: 135.95187249447372
Iteration: 16, Func. Count: 152, Neg. LLF: 135.95187249447918
Optimization terminated successfully (Exit mode 0)
Current function value: 135.95187249447372
Iterations: 16
Function evaluations: 152
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 140.73655634885762
Iteration: 2, Func. Count: 22, Neg. LLF: 140.35339851519544
Iteration: 3, Func. Count: 33, Neg. LLF: 136.63546265302955
Iteration: 4, Func. Count: 44, Neg. LLF: 141.66638150257154
Iteration: 5, Func. Count: 56, Neg. LLF: 136.41416459133077
Iteration: 6, Func. Count: 67, Neg. LLF: 149.09789834065157
Iteration: 7, Func. Count: 78, Neg. LLF: 135.95743539647688
Iteration: 8, Func. Count: 88, Neg. LLF: 136.11052321129597
Iteration: 9, Func. Count: 99, Neg. LLF: 135.95469424161757
Iteration: 10, Func. Count: 109, Neg. LLF: 135.9533827915113
Iteration: 11, Func. Count: 119, Neg. LLF: 135.95268695828372
Iteration: 12, Func. Count: 129, Neg. LLF: 135.95205158614513
Iteration: 13, Func. Count: 139, Neg. LLF: 135.9518974335113
Iteration: 14, Func. Count: 149, Neg. LLF: 135.95187379914907
Iteration: 15, Func. Count: 159, Neg. LLF: 135.9518724339359
Iteration: 16, Func. Count: 168, Neg. LLF: 135.95187245109236
Optimization terminated successfully (Exit mode 0)
Current function value: 135.9518724339359
Iterations: 16
Function evaluations: 168
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 164.7899891886068
Iteration: 2, Func. Count: 24, Neg. LLF: 139.19748567926308
Iteration: 3, Func. Count: 36, Neg. LLF: 140.14658358431043
Iteration: 4, Func. Count: 48, Neg. LLF: 137.51909007949232
Iteration: 5, Func. Count: 60, Neg. LLF: 142.75746607357405
Iteration: 6, Func. Count: 72, Neg. LLF: 136.36970227423066
Iteration: 7, Func. Count: 83, Neg. LLF: 136.29335134728728
Iteration: 8, Func. Count: 94, Neg. LLF: 136.50001548013165
Iteration: 9, Func. Count: 106, Neg. LLF: 136.24261241397375
Iteration: 10, Func. Count: 117, Neg. LLF: 136.25856126458976
Iteration: 11, Func. Count: 129, Neg. LLF: 136.2259358530559
Iteration: 12, Func. Count: 140, Neg. LLF: 136.21890823217146
Iteration: 13, Func. Count: 151, Neg. LLF: 136.21742586436793
Iteration: 14, Func. Count: 162, Neg. LLF: 136.21730731042427
Iteration: 15, Func. Count: 173, Neg. LLF: 136.21729437735326
Iteration: 16, Func. Count: 184, Neg. LLF: 136.21729245501055
Iteration: 17, Func. Count: 195, Neg. LLF: 136.21729153178154
Optimization terminated successfully (Exit mode 0)
Current function value: 136.21729153178154
Iterations: 17
Function evaluations: 195
Gradient evaluations: 17
Iteration: 1, Func. Count: 13, Neg. LLF: 174.12940537742548
Iteration: 2, Func. Count: 26, Neg. LLF: 241.40691285636328
Iteration: 3, Func. Count: 40, Neg. LLF: 142.91307395573176
Iteration: 4, Func. Count: 53, Neg. LLF: 136.29156055348403
Iteration: 5, Func. Count: 65, Neg. LLF: 136.29287402558518
Iteration: 6, Func. Count: 78, Neg. LLF: 137.26461608240317
Iteration: 7, Func. Count: 91, Neg. LLF: 138.4356902379081
Iteration: 8, Func. Count: 105, Neg. LLF: 136.1056080529961
Iteration: 9, Func. Count: 118, Neg. LLF: 136.2967290054596
Iteration: 10, Func. Count: 131, Neg. LLF: 136.0600850123015
Iteration: 11, Func. Count: 143, Neg. LLF: 136.037819063583
Iteration: 12, Func. Count: 155, Neg. LLF: 136.0175192320083
Iteration: 13, Func. Count: 167, Neg. LLF: 136.01033360512855
Iteration: 14, Func. Count: 179, Neg. LLF: 136.00248829241542
Iteration: 15, Func. Count: 191, Neg. LLF: 135.99967422599732
Iteration: 16, Func. Count: 203, Neg. LLF: 135.99896387565803
Iteration: 17, Func. Count: 215, Neg. LLF: 135.99868058509006
Iteration: 18, Func. Count: 227, Neg. LLF: 135.9986098298125
Iteration: 19, Func. Count: 239, Neg. LLF: 135.9985952476343
Iteration: 20, Func. Count: 251, Neg. LLF: 135.99859166597622
Iteration: 21, Func. Count: 263, Neg. LLF: 135.9985907166652
Optimization terminated successfully (Exit mode 0)
Current function value: 135.9985907166652
Iterations: 21
Function evaluations: 263
Gradient evaluations: 21
Iteration: 1, Func. Count: 14, Neg. LLF: 304.288560195904
Iteration: 2, Func. Count: 28, Neg. LLF: 141.8255001555925
Iteration: 3, Func. Count: 42, Neg. LLF: 138.11164698268811
Iteration: 4, Func. Count: 56, Neg. LLF: 172.5493645760234
Iteration: 5, Func. Count: 70, Neg. LLF: 137.05298180868792
Iteration: 6, Func. Count: 84, Neg. LLF: 137.05657180816692
Iteration: 7, Func. Count: 98, Neg. LLF: 140.88364846718497
Iteration: 8, Func. Count: 112, Neg. LLF: 136.2998165466153
Iteration: 9, Func. Count: 126, Neg. LLF: 136.14368499025466
Iteration: 10, Func. Count: 139, Neg. LLF: 136.16576498482743
Iteration: 11, Func. Count: 153, Neg. LLF: 136.13053045756675
Iteration: 12, Func. Count: 166, Neg. LLF: 136.12898586743015
Iteration: 13, Func. Count: 179, Neg. LLF: 136.12880088215869
Iteration: 14, Func. Count: 192, Neg. LLF: 136.12876413327325
Iteration: 15, Func. Count: 205, Neg. LLF: 136.1287343927707
Iteration: 16, Func. Count: 218, Neg. LLF: 136.1287195401306
Iteration: 17, Func. Count: 231, Neg. LLF: 136.12870777811608
Iteration: 18, Func. Count: 244, Neg. LLF: 136.12870605186734
Iteration: 19, Func. Count: 256, Neg. LLF: 136.12870605182752
Optimization terminated successfully (Exit mode 0)
Current function value: 136.12870605186734
Iterations: 19
Function evaluations: 256
Gradient evaluations: 19
Iteration: 1, Func. Count: 11, Neg. LLF: 141.4491051248161
Iteration: 2, Func. Count: 22, Neg. LLF: 143.32124418536398
Iteration: 3, Func. Count: 33, Neg. LLF: 137.32981020837713
Iteration: 4, Func. Count: 44, Neg. LLF: 136.67057365936162
Iteration: 5, Func. Count: 55, Neg. LLF: 143.58259278538426
Iteration: 6, Func. Count: 66, Neg. LLF: 136.52136201998812
Iteration: 7, Func. Count: 77, Neg. LLF: 136.375695420308
Iteration: 8, Func. Count: 88, Neg. LLF: 136.30988200020442
Iteration: 9, Func. Count: 99, Neg. LLF: 135.95330102038866
Iteration: 10, Func. Count: 109, Neg. LLF: 135.95220744855033
Iteration: 11, Func. Count: 119, Neg. LLF: 135.95199885018482
Iteration: 12, Func. Count: 129, Neg. LLF: 135.95195371188083
Iteration: 13, Func. Count: 139, Neg. LLF: 135.95189426193292
Iteration: 14, Func. Count: 149, Neg. LLF: 135.95187353517673
Iteration: 15, Func. Count: 159, Neg. LLF: 135.95187241214037
Iteration: 16, Func. Count: 168, Neg. LLF: 135.9518724831732
Optimization terminated successfully (Exit mode 0)
Current function value: 135.95187241214037
Iterations: 16
Function evaluations: 168
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 140.74681402752697
Iteration: 2, Func. Count: 24, Neg. LLF: 140.33214081890083
Iteration: 3, Func. Count: 36, Neg. LLF: 136.61382807581262
Iteration: 4, Func. Count: 48, Neg. LLF: 137.06260025329985
Iteration: 5, Func. Count: 60, Neg. LLF: 137.6170131595935
Iteration: 6, Func. Count: 72, Neg. LLF: 146.29905426904037
Iteration: 7, Func. Count: 84, Neg. LLF: 135.9813847115397
Iteration: 8, Func. Count: 95, Neg. LLF: 136.11282633348787
Iteration: 9, Func. Count: 107, Neg. LLF: 135.97985506847962
Iteration: 10, Func. Count: 119, Neg. LLF: 135.9546592326159
Iteration: 11, Func. Count: 130, Neg. LLF: 135.9536705952379
Iteration: 12, Func. Count: 141, Neg. LLF: 135.95197707903588
Iteration: 13, Func. Count: 152, Neg. LLF: 135.9518800367298
Iteration: 14, Func. Count: 163, Neg. LLF: 135.9518725165392
Iteration: 15, Func. Count: 173, Neg. LLF: 135.95187253371472
Optimization terminated successfully (Exit mode 0)
Current function value: 135.9518725165392
Iterations: 15
Function evaluations: 173
Gradient evaluations: 15
Iteration: 1, Func. Count: 13, Neg. LLF: 164.80304725267402
Iteration: 2, Func. Count: 26, Neg. LLF: 139.20111586214264
Iteration: 3, Func. Count: 39, Neg. LLF: 140.10562862878444
Iteration: 4, Func. Count: 52, Neg. LLF: 137.51335373960848
Iteration: 5, Func. Count: 65, Neg. LLF: 143.2432532984426
Iteration: 6, Func. Count: 78, Neg. LLF: 136.36848593451808
Iteration: 7, Func. Count: 90, Neg. LLF: 136.2938272863767
Iteration: 8, Func. Count: 102, Neg. LLF: 136.48904260945224
Iteration: 9, Func. Count: 115, Neg. LLF: 136.2425161844731
Iteration: 10, Func. Count: 127, Neg. LLF: 136.26217106672365
Iteration: 11, Func. Count: 140, Neg. LLF: 136.2264047780069
Iteration: 12, Func. Count: 152, Neg. LLF: 136.2190211597229
Iteration: 13, Func. Count: 164, Neg. LLF: 136.21742451870944
Iteration: 14, Func. Count: 176, Neg. LLF: 136.21730763687015
Iteration: 15, Func. Count: 188, Neg. LLF: 136.21729380580507
Iteration: 16, Func. Count: 200, Neg. LLF: 136.21729232005498
Iteration: 17, Func. Count: 212, Neg. LLF: 136.21729152150473
Optimization terminated successfully (Exit mode 0)
Current function value: 136.21729152150473
Iterations: 17
Function evaluations: 212
Gradient evaluations: 17
Iteration: 1, Func. Count: 14, Neg. LLF: 174.17382429189084
Iteration: 2, Func. Count: 28, Neg. LLF: 240.5861761183099
Iteration: 3, Func. Count: 43, Neg. LLF: 142.88111710903866
Iteration: 4, Func. Count: 57, Neg. LLF: 136.28977711403243
Iteration: 5, Func. Count: 70, Neg. LLF: 136.28686902417013
Iteration: 6, Func. Count: 84, Neg. LLF: 137.2701945634603
Iteration: 7, Func. Count: 98, Neg. LLF: 138.48644101216158
Iteration: 8, Func. Count: 113, Neg. LLF: 136.09664503313172
Iteration: 9, Func. Count: 126, Neg. LLF: 136.45899174680818
Iteration: 10, Func. Count: 140, Neg. LLF: 136.06086133462637
Iteration: 11, Func. Count: 153, Neg. LLF: 136.05077234548875
Iteration: 12, Func. Count: 166, Neg. LLF: 136.0148290045544
Iteration: 13, Func. Count: 179, Neg. LLF: 136.00652081763258
Iteration: 14, Func. Count: 192, Neg. LLF: 136.00302585984542
Iteration: 15, Func. Count: 205, Neg. LLF: 135.9992802627799
Iteration: 16, Func. Count: 218, Neg. LLF: 135.9986766034962
Iteration: 17, Func. Count: 231, Neg. LLF: 135.99861529748455
Iteration: 18, Func. Count: 244, Neg. LLF: 135.99859782191498
Iteration: 19, Func. Count: 257, Neg. LLF: 135.9985915860361
Iteration: 20, Func. Count: 270, Neg. LLF: 135.99859072700792
Optimization terminated successfully (Exit mode 0)
Current function value: 135.99859072700792
Iterations: 20
Function evaluations: 270
Gradient evaluations: 20
Iteration: 1, Func. Count: 15, Neg. LLF: 304.15262518386083
Iteration: 2, Func. Count: 30, Neg. LLF: 141.87002026467246
Iteration: 3, Func. Count: 45, Neg. LLF: 138.0973650260452
Iteration: 4, Func. Count: 60, Neg. LLF: 172.38813591742738
Iteration: 5, Func. Count: 75, Neg. LLF: 137.1931262156283
Iteration: 6, Func. Count: 90, Neg. LLF: 136.98635031371168
Iteration: 7, Func. Count: 105, Neg. LLF: 139.01826183698878
Iteration: 8, Func. Count: 120, Neg. LLF: 136.31053541328316
Iteration: 9, Func. Count: 135, Neg. LLF: 136.14498130030736
Iteration: 10, Func. Count: 149, Neg. LLF: 136.18254891783937
Iteration: 11, Func. Count: 164, Neg. LLF: 136.13076052622736
Iteration: 12, Func. Count: 178, Neg. LLF: 136.1289980446121
Iteration: 13, Func. Count: 192, Neg. LLF: 136.1287949976016
Iteration: 14, Func. Count: 206, Neg. LLF: 136.12876059425267
Iteration: 15, Func. Count: 220, Neg. LLF: 136.12873334498056
Iteration: 16, Func. Count: 234, Neg. LLF: 136.12871876215686
Iteration: 17, Func. Count: 248, Neg. LLF: 136.12870792866883
Iteration: 18, Func. Count: 262, Neg. LLF: 136.12870607164717
Iteration: 19, Func. Count: 275, Neg. LLF: 136.1287060715944
Optimization terminated successfully (Exit mode 0)
Current function value: 136.12870607164717
Iterations: 19
Function evaluations: 275
Gradient evaluations: 19
Iteration: 1, Func. Count: 8, Neg. LLF: 142.0127447571626
Iteration: 2, Func. Count: 16, Neg. LLF: 141.78611373200545
Iteration: 3, Func. Count: 24, Neg. LLF: 137.24436673012363
Iteration: 4, Func. Count: 31, Neg. LLF: 137.14843862624616
Iteration: 5, Func. Count: 39, Neg. LLF: 136.74403236160322
Iteration: 6, Func. Count: 47, Neg. LLF: 136.60055494840958
Iteration: 7, Func. Count: 54, Neg. LLF: 136.59018075229375
Iteration: 8, Func. Count: 61, Neg. LLF: 136.5847659256845
Iteration: 9, Func. Count: 68, Neg. LLF: 136.5837340752444
Iteration: 10, Func. Count: 75, Neg. LLF: 136.5836621669454
Iteration: 11, Func. Count: 81, Neg. LLF: 136.58366223412577
Optimization terminated successfully (Exit mode 0)
Current function value: 136.5836621669454
Iterations: 11
Function evaluations: 81
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 193.73087364732854
Iteration: 2, Func. Count: 18, Neg. LLF: 157.9665662952467
Iteration: 3, Func. Count: 27, Neg. LLF: 155.44305760242864
Iteration: 4, Func. Count: 37, Neg. LLF: 137.28971181220777
Iteration: 5, Func. Count: 45, Neg. LLF: 137.27740513727002
Iteration: 6, Func. Count: 53, Neg. LLF: 137.42145512245204
Iteration: 7, Func. Count: 62, Neg. LLF: 137.26107528745666
Iteration: 8, Func. Count: 70, Neg. LLF: 137.25968751052386
Iteration: 9, Func. Count: 78, Neg. LLF: 137.259571284993
Iteration: 10, Func. Count: 86, Neg. LLF: 137.25956608886824
Iteration: 11, Func. Count: 94, Neg. LLF: 137.25956388915478
Iteration: 12, Func. Count: 101, Neg. LLF: 137.25956388922708
Optimization terminated successfully (Exit mode 0)
Current function value: 137.25956388915478
Iterations: 12
Function evaluations: 101
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 174.65390055905365
Iteration: 2, Func. Count: 20, Neg. LLF: 142.09598203670944
Iteration: 3, Func. Count: 30, Neg. LLF: 179.37469949582263
Iteration: 4, Func. Count: 40, Neg. LLF: 136.40362556145453
Iteration: 5, Func. Count: 49, Neg. LLF: 137.5428900507504
Iteration: 6, Func. Count: 59, Neg. LLF: 136.33200921019082
Iteration: 7, Func. Count: 68, Neg. LLF: 136.3193096748735
Iteration: 8, Func. Count: 77, Neg. LLF: 136.309340430866
Iteration: 9, Func. Count: 86, Neg. LLF: 136.3061165268057
Iteration: 10, Func. Count: 95, Neg. LLF: 136.30557904503468
Iteration: 11, Func. Count: 104, Neg. LLF: 136.30556509502648
Iteration: 12, Func. Count: 113, Neg. LLF: 136.3055639401569
Iteration: 13, Func. Count: 121, Neg. LLF: 136.30556394013075
Optimization terminated successfully (Exit mode 0)
Current function value: 136.3055639401569
Iterations: 13
Function evaluations: 121
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 189.13092710321956
Iteration: 2, Func. Count: 22, Neg. LLF: 143.1679024785688
Iteration: 3, Func. Count: 33, Neg. LLF: 137.92229114404194
Iteration: 4, Func. Count: 44, Neg. LLF: 136.65263642374515
Iteration: 5, Func. Count: 54, Neg. LLF: 136.5124437413931
Iteration: 6, Func. Count: 64, Neg. LLF: 136.77928385623315
Iteration: 7, Func. Count: 75, Neg. LLF: 136.32818387493404
Iteration: 8, Func. Count: 85, Neg. LLF: 136.3115212988926
Iteration: 9, Func. Count: 95, Neg. LLF: 136.30588080885363
Iteration: 10, Func. Count: 105, Neg. LLF: 136.3056049089048
Iteration: 11, Func. Count: 115, Neg. LLF: 136.30557012511338
Iteration: 12, Func. Count: 125, Neg. LLF: 136.30556379733426
Iteration: 13, Func. Count: 134, Neg. LLF: 136.305563808848
Optimization terminated successfully (Exit mode 0)
Current function value: 136.30556379733426
Iterations: 13
Function evaluations: 134
Gradient evaluations: 13
Iteration: 1, Func. Count: 12, Neg. LLF: 483.83727716958714
Iteration: 2, Func. Count: 25, Neg. LLF: 309.01029913178996
Iteration: 3, Func. Count: 37, Neg. LLF: 169.5295360561225
Iteration: 4, Func. Count: 49, Neg. LLF: 142.2157244886772
Iteration: 5, Func. Count: 61, Neg. LLF: 136.49223591996187
Iteration: 6, Func. Count: 72, Neg. LLF: 136.3265768002
Iteration: 7, Func. Count: 83, Neg. LLF: 136.30771389247764
Iteration: 8, Func. Count: 94, Neg. LLF: 136.3064601624572
Iteration: 9, Func. Count: 105, Neg. LLF: 136.30609155760948
Iteration: 10, Func. Count: 116, Neg. LLF: 136.30591244652027
Iteration: 11, Func. Count: 127, Neg. LLF: 136.30586633577434
Iteration: 12, Func. Count: 138, Neg. LLF: 136.30585517227817
Iteration: 13, Func. Count: 149, Neg. LLF: 136.30584669271852
Iteration: 14, Func. Count: 160, Neg. LLF: 136.30584273350223
Iteration: 15, Func. Count: 171, Neg. LLF: 136.30584197824373
Optimization terminated successfully (Exit mode 0)
Current function value: 136.30584197824373
Iterations: 15
Function evaluations: 171
Gradient evaluations: 15
Iteration: 1, Func. Count: 9, Neg. LLF: 140.39373324867842
Iteration: 2, Func. Count: 18, Neg. LLF: 139.79808637464072
Iteration: 3, Func. Count: 27, Neg. LLF: 141.2126323058142
Iteration: 4, Func. Count: 36, Neg. LLF: 136.59122859328897
Iteration: 5, Func. Count: 44, Neg. LLF: 147.37261192770248
Iteration: 6, Func. Count: 53, Neg. LLF: 136.37399151936498
Iteration: 7, Func. Count: 61, Neg. LLF: 136.39838816119502
Iteration: 8, Func. Count: 70, Neg. LLF: 136.3570900350968
Iteration: 9, Func. Count: 78, Neg. LLF: 136.3568844390773
Iteration: 10, Func. Count: 86, Neg. LLF: 136.35667484887048
Iteration: 11, Func. Count: 94, Neg. LLF: 136.35654665147283
Iteration: 12, Func. Count: 102, Neg. LLF: 136.3565248710892
Iteration: 13, Func. Count: 110, Neg. LLF: 136.35652336983955
Iteration: 14, Func. Count: 117, Neg. LLF: 136.35652336985373
Optimization terminated successfully (Exit mode 0)
Current function value: 136.35652336983955
Iterations: 14
Function evaluations: 117
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 282.5631892539122
Iteration: 2, Func. Count: 20, Neg. LLF: 143.11309100352676
Iteration: 3, Func. Count: 30, Neg. LLF: 138.79788153434336
Iteration: 4, Func. Count: 40, Neg. LLF: 136.89573075733222
Iteration: 5, Func. Count: 49, Neg. LLF: 136.9978690640481
Iteration: 6, Func. Count: 59, Neg. LLF: 136.83863986476487
Iteration: 7, Func. Count: 69, Neg. LLF: 136.83298616393992
Iteration: 8, Func. Count: 79, Neg. LLF: 137.2724093810239
Iteration: 9, Func. Count: 89, Neg. LLF: 137.24394351515022
Iteration: 10, Func. Count: 99, Neg. LLF: 136.88012894505542
Iteration: 11, Func. Count: 109, Neg. LLF: 136.6401592062529
Iteration: 12, Func. Count: 119, Neg. LLF: 136.53499995714566
Iteration: 13, Func. Count: 129, Neg. LLF: 136.4500424568432
Iteration: 14, Func. Count: 139, Neg. LLF: 136.3798107548942
Iteration: 15, Func. Count: 148, Neg. LLF: 136.3770469894512
Iteration: 16, Func. Count: 157, Neg. LLF: 136.37700684735148
Iteration: 17, Func. Count: 166, Neg. LLF: 136.37700370135389
Iteration: 18, Func. Count: 174, Neg. LLF: 136.37700370135798
Optimization terminated successfully (Exit mode 0)
Current function value: 136.37700370135389
Iterations: 18
Function evaluations: 174
Gradient evaluations: 18
Iteration: 1, Func. Count: 11, Neg. LLF: 232.23420210755964
Iteration: 2, Func. Count: 22, Neg. LLF: 144.45158226405954
Iteration: 3, Func. Count: 33, Neg. LLF: 139.07418292726402
Iteration: 4, Func. Count: 44, Neg. LLF: 137.1508591953525
Iteration: 5, Func. Count: 55, Neg. LLF: 146.4063044949006
Iteration: 6, Func. Count: 67, Neg. LLF: 136.36571255033527
Iteration: 7, Func. Count: 77, Neg. LLF: 136.23747102709035
Iteration: 8, Func. Count: 87, Neg. LLF: 136.22196014441855
Iteration: 9, Func. Count: 97, Neg. LLF: 136.2187595859252
Iteration: 10, Func. Count: 107, Neg. LLF: 136.2176098139006
Iteration: 11, Func. Count: 117, Neg. LLF: 136.2174368776778
Iteration: 12, Func. Count: 127, Neg. LLF: 136.21733645525492
Iteration: 13, Func. Count: 137, Neg. LLF: 136.21729549404785
Iteration: 14, Func. Count: 147, Neg. LLF: 136.21729204521841
Iteration: 15, Func. Count: 156, Neg. LLF: 136.21729204521316
Optimization terminated successfully (Exit mode 0)
Current function value: 136.21729204521841
Iterations: 15
Function evaluations: 156
Gradient evaluations: 15
Iteration: 1, Func. Count: 12, Neg. LLF: 262.7477741613887
Iteration: 2, Func. Count: 24, Neg. LLF: 143.28235380026567
Iteration: 3, Func. Count: 36, Neg. LLF: 138.532240107412
Iteration: 4, Func. Count: 48, Neg. LLF: 136.6296444788627
Iteration: 5, Func. Count: 59, Neg. LLF: 140.05632774796769
Iteration: 6, Func. Count: 72, Neg. LLF: 143.951944496178
Iteration: 7, Func. Count: 84, Neg. LLF: 136.19519552212725
Iteration: 8, Func. Count: 95, Neg. LLF: 136.28807024250958
Iteration: 9, Func. Count: 107, Neg. LLF: 136.5744895665893
Iteration: 10, Func. Count: 119, Neg. LLF: 136.12340732612338
Iteration: 11, Func. Count: 130, Neg. LLF: 136.11855772805433
Iteration: 12, Func. Count: 141, Neg. LLF: 136.11694591595102
Iteration: 13, Func. Count: 152, Neg. LLF: 136.1169070915208
Iteration: 14, Func. Count: 163, Neg. LLF: 136.11690426121353
Iteration: 15, Func. Count: 173, Neg. LLF: 136.11690426120865
Optimization terminated successfully (Exit mode 0)
Current function value: 136.11690426121353
Iterations: 15
Function evaluations: 173
Gradient evaluations: 15
Iteration: 1, Func. Count: 13, Neg. LLF: 294.1056527268352
Iteration: 2, Func. Count: 26, Neg. LLF: 141.80115472315538
Iteration: 3, Func. Count: 39, Neg. LLF: 141.59439896651799
Iteration: 4, Func. Count: 52, Neg. LLF: 137.75965441767846
Iteration: 5, Func. Count: 65, Neg. LLF: 137.56743571900023
Iteration: 6, Func. Count: 78, Neg. LLF: 136.60910387500644
Iteration: 7, Func. Count: 91, Neg. LLF: 136.3065718027545
Iteration: 8, Func. Count: 103, Neg. LLF: 136.25004163912777
Iteration: 9, Func. Count: 115, Neg. LLF: 136.27084342736896
Iteration: 10, Func. Count: 128, Neg. LLF: 136.18270440242162
Iteration: 11, Func. Count: 140, Neg. LLF: 136.14076932135404
Iteration: 12, Func. Count: 152, Neg. LLF: 136.13927207687797
Iteration: 13, Func. Count: 165, Neg. LLF: 136.11878908797115
Iteration: 14, Func. Count: 177, Neg. LLF: 136.117061547845
Iteration: 15, Func. Count: 189, Neg. LLF: 136.1169872043554
Iteration: 16, Func. Count: 201, Neg. LLF: 136.11690827702253
Iteration: 17, Func. Count: 213, Neg. LLF: 136.11690447592656
Iteration: 18, Func. Count: 224, Neg. LLF: 136.11690448109863
Optimization terminated successfully (Exit mode 0)
Current function value: 136.11690447592656
Iterations: 18
Function evaluations: 224
Gradient evaluations: 18
Iteration: 1, Func. Count: 10, Neg. LLF: 144.07576028683206
Iteration: 2, Func. Count: 21, Neg. LLF: 139.06653868777138
Iteration: 3, Func. Count: 31, Neg. LLF: 136.65651831315463
Iteration: 4, Func. Count: 40, Neg. LLF: 139.87892521839248
Iteration: 5, Func. Count: 50, Neg. LLF: 143.77101027242946
Iteration: 6, Func. Count: 60, Neg. LLF: 136.29634561750458
Iteration: 7, Func. Count: 69, Neg. LLF: 137.65720465748487
Iteration: 8, Func. Count: 79, Neg. LLF: 136.25989545005055
Iteration: 9, Func. Count: 88, Neg. LLF: 136.25531055181315
Iteration: 10, Func. Count: 97, Neg. LLF: 136.25342817870913
Iteration: 11, Func. Count: 106, Neg. LLF: 136.2521130241163
Iteration: 12, Func. Count: 115, Neg. LLF: 136.2515950901299
Iteration: 13, Func. Count: 124, Neg. LLF: 136.25150133818101
Iteration: 14, Func. Count: 133, Neg. LLF: 136.25144306782852
Iteration: 15, Func. Count: 142, Neg. LLF: 136.2514348745266
Iteration: 16, Func. Count: 151, Neg. LLF: 136.2514340708104
Optimization terminated successfully (Exit mode 0)
Current function value: 136.2514340708104
Iterations: 16
Function evaluations: 151
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 212.05834071143107
Iteration: 2, Func. Count: 22, Neg. LLF: 139.84057111324967
Iteration: 3, Func. Count: 33, Neg. LLF: 137.613741107573
Iteration: 4, Func. Count: 44, Neg. LLF: 136.6427271391561
Iteration: 5, Func. Count: 54, Neg. LLF: 136.5175011065765
Iteration: 6, Func. Count: 64, Neg. LLF: 136.4790934683651
Iteration: 7, Func. Count: 74, Neg. LLF: 137.21742728572355
Iteration: 8, Func. Count: 85, Neg. LLF: 137.30086764014254
Iteration: 9, Func. Count: 96, Neg. LLF: 137.01052040289608
Iteration: 10, Func. Count: 107, Neg. LLF: 136.4288290570794
Iteration: 11, Func. Count: 118, Neg. LLF: 136.3803508391318
Iteration: 12, Func. Count: 129, Neg. LLF: 136.37748016465818
Iteration: 13, Func. Count: 140, Neg. LLF: 136.3770041025276
Iteration: 14, Func. Count: 149, Neg. LLF: 136.37700410262804
Optimization terminated successfully (Exit mode 0)
Current function value: 136.3770041025276
Iterations: 14
Function evaluations: 149
Gradient evaluations: 14
Iteration: 1, Func. Count: 12, Neg. LLF: 187.3797763935818
Iteration: 2, Func. Count: 24, Neg. LLF: 140.58854933816684
Iteration: 3, Func. Count: 36, Neg. LLF: 137.75858054465132
Iteration: 4, Func. Count: 48, Neg. LLF: 137.25762773194037
Iteration: 5, Func. Count: 60, Neg. LLF: 136.38891046132443
Iteration: 6, Func. Count: 71, Neg. LLF: 136.47525851377284
Iteration: 7, Func. Count: 83, Neg. LLF: 138.45773815386798
Iteration: 8, Func. Count: 96, Neg. LLF: 136.21171244751315
Iteration: 9, Func. Count: 107, Neg. LLF: 136.19912877538712
Iteration: 10, Func. Count: 118, Neg. LLF: 136.19581590878204
Iteration: 11, Func. Count: 129, Neg. LLF: 136.19231526308445
Iteration: 12, Func. Count: 140, Neg. LLF: 136.19137714046005
Iteration: 13, Func. Count: 151, Neg. LLF: 136.1909992741721
Iteration: 14, Func. Count: 162, Neg. LLF: 136.19098276799915
Iteration: 15, Func. Count: 173, Neg. LLF: 136.19098075557145
Iteration: 16, Func. Count: 183, Neg. LLF: 136.19098075557034
Optimization terminated successfully (Exit mode 0)
Current function value: 136.19098075557145
Iterations: 16
Function evaluations: 183
Gradient evaluations: 16
Iteration: 1, Func. Count: 13, Neg. LLF: 203.6769137284639
Iteration: 2, Func. Count: 26, Neg. LLF: 140.23145323870256
Iteration: 3, Func. Count: 39, Neg. LLF: 137.08078167278197
Iteration: 4, Func. Count: 52, Neg. LLF: 142.51530664358648
Iteration: 5, Func. Count: 65, Neg. LLF: 136.945457840574
Iteration: 6, Func. Count: 78, Neg. LLF: 136.7557952188285
Iteration: 7, Func. Count: 91, Neg. LLF: 136.16942718807516
Iteration: 8, Func. Count: 103, Neg. LLF: 136.56519998242172
Iteration: 9, Func. Count: 116, Neg. LLF: 136.41014898954654
Iteration: 10, Func. Count: 129, Neg. LLF: 136.15881627786032
Iteration: 11, Func. Count: 142, Neg. LLF: 136.13038326380814
Iteration: 12, Func. Count: 154, Neg. LLF: 136.12108425387035
Iteration: 13, Func. Count: 166, Neg. LLF: 136.1175395128417
Iteration: 14, Func. Count: 178, Neg. LLF: 136.1170452039855
Iteration: 15, Func. Count: 190, Neg. LLF: 136.11690707425308
Iteration: 16, Func. Count: 202, Neg. LLF: 136.1169039575333
Iteration: 17, Func. Count: 213, Neg. LLF: 136.1169039575592
Optimization terminated successfully (Exit mode 0)
Current function value: 136.1169039575333
Iterations: 17
Function evaluations: 213
Gradient evaluations: 17
Iteration: 1, Func. Count: 14, Neg. LLF: 242.05138130471445
Iteration: 2, Func. Count: 28, Neg. LLF: 141.20460481908532
Iteration: 3, Func. Count: 42, Neg. LLF: 141.24365406894668
Iteration: 4, Func. Count: 56, Neg. LLF: 136.54927703292955
Iteration: 5, Func. Count: 69, Neg. LLF: 137.04510594672922
Iteration: 6, Func. Count: 83, Neg. LLF: 142.40819977686382
Iteration: 7, Func. Count: 97, Neg. LLF: 136.46648993274275
Iteration: 8, Func. Count: 111, Neg. LLF: 137.1870448471748
Iteration: 9, Func. Count: 125, Neg. LLF: 136.2466745732434
Iteration: 10, Func. Count: 139, Neg. LLF: 136.20481598035693
Iteration: 11, Func. Count: 153, Neg. LLF: 136.1843203395619
Iteration: 12, Func. Count: 167, Neg. LLF: 136.14721636398107
Iteration: 13, Func. Count: 180, Neg. LLF: 136.12416310808928
Iteration: 14, Func. Count: 193, Neg. LLF: 136.11851539198665
Iteration: 15, Func. Count: 206, Neg. LLF: 136.1171760062049
Iteration: 16, Func. Count: 219, Neg. LLF: 136.11693201933167
Iteration: 17, Func. Count: 232, Neg. LLF: 136.116905078303
Iteration: 18, Func. Count: 245, Neg. LLF: 136.11690394292367
Iteration: 19, Func. Count: 257, Neg. LLF: 136.11690394800394
Optimization terminated successfully (Exit mode 0)
Current function value: 136.11690394292367
Iterations: 19
Function evaluations: 257
Gradient evaluations: 19
Iteration: 1, Func. Count: 11, Neg. LLF: 142.89392682195947
Iteration: 2, Func. Count: 22, Neg. LLF: 146.58700364756237
Iteration: 3, Func. Count: 33, Neg. LLF: 137.16530473577734
Iteration: 4, Func. Count: 44, Neg. LLF: 137.81426811950044
Iteration: 5, Func. Count: 55, Neg. LLF: 136.30864994304596
Iteration: 6, Func. Count: 66, Neg. LLF: 142.34153810795826
Iteration: 7, Func. Count: 77, Neg. LLF: 136.21547645314374
Iteration: 8, Func. Count: 88, Neg. LLF: 135.9596297695786
Iteration: 9, Func. Count: 98, Neg. LLF: 135.95349808994342
Iteration: 10, Func. Count: 108, Neg. LLF: 135.95290040282143
Iteration: 11, Func. Count: 118, Neg. LLF: 135.95244677286803
Iteration: 12, Func. Count: 128, Neg. LLF: 135.95207660009032
Iteration: 13, Func. Count: 138, Neg. LLF: 135.95189102249506
Iteration: 14, Func. Count: 148, Neg. LLF: 135.95187291202438
Iteration: 15, Func. Count: 158, Neg. LLF: 135.9518723927683
Optimization terminated successfully (Exit mode 0)
Current function value: 135.9518723927683
Iterations: 15
Function evaluations: 158
Gradient evaluations: 15
Iteration: 1, Func. Count: 12, Neg. LLF: 175.57685863867488
Iteration: 2, Func. Count: 25, Neg. LLF: 142.09969356252313
Iteration: 3, Func. Count: 37, Neg. LLF: 137.40122276904273
Iteration: 4, Func. Count: 49, Neg. LLF: 136.58173173646014
Iteration: 5, Func. Count: 60, Neg. LLF: 136.66454440818077
Iteration: 6, Func. Count: 72, Neg. LLF: 136.62011529552677
Iteration: 7, Func. Count: 84, Neg. LLF: 136.45146356067562
Iteration: 8, Func. Count: 95, Neg. LLF: 136.46729710706143
Iteration: 9, Func. Count: 107, Neg. LLF: 136.39866421817206
Iteration: 10, Func. Count: 118, Neg. LLF: 136.3791055194987
Iteration: 11, Func. Count: 129, Neg. LLF: 136.37745009957956
Iteration: 12, Func. Count: 140, Neg. LLF: 136.37751777675666
Iteration: 13, Func. Count: 152, Neg. LLF: 136.37700398076768
Iteration: 14, Func. Count: 162, Neg. LLF: 136.37700398104872
Optimization terminated successfully (Exit mode 0)
Current function value: 136.37700398076768
Iterations: 14
Function evaluations: 162
Gradient evaluations: 14
Iteration: 1, Func. Count: 13, Neg. LLF: 163.92313308146518
Iteration: 2, Func. Count: 26, Neg. LLF: 139.07804193685487
Iteration: 3, Func. Count: 39, Neg. LLF: 142.39372605805536
Iteration: 4, Func. Count: 52, Neg. LLF: 137.45900739856867
Iteration: 5, Func. Count: 65, Neg. LLF: 180.8659975314221
Iteration: 6, Func. Count: 79, Neg. LLF: 136.3760227137738
Iteration: 7, Func. Count: 91, Neg. LLF: 136.3865736240581
Iteration: 8, Func. Count: 104, Neg. LLF: 136.3107908903536
Iteration: 9, Func. Count: 117, Neg. LLF: 136.20274019077314
Iteration: 10, Func. Count: 129, Neg. LLF: 136.19275022636566
Iteration: 11, Func. Count: 141, Neg. LLF: 136.18902565684382
Iteration: 12, Func. Count: 153, Neg. LLF: 136.18520759879976
Iteration: 13, Func. Count: 165, Neg. LLF: 136.1841191035325
Iteration: 14, Func. Count: 177, Neg. LLF: 136.18325315177557
Iteration: 15, Func. Count: 189, Neg. LLF: 136.18316007131378
Iteration: 16, Func. Count: 201, Neg. LLF: 136.18314120720078
Iteration: 17, Func. Count: 213, Neg. LLF: 136.18314000089205
Iteration: 18, Func. Count: 224, Neg. LLF: 136.18314000092425
Optimization terminated successfully (Exit mode 0)
Current function value: 136.18314000089205
Iterations: 18
Function evaluations: 224
Gradient evaluations: 18
Iteration: 1, Func. Count: 14, Neg. LLF: 171.63181725090016
Iteration: 2, Func. Count: 28, Neg. LLF: 285.5763568849372
Iteration: 3, Func. Count: 43, Neg. LLF: 138.4685553301535
Iteration: 4, Func. Count: 57, Neg. LLF: 136.27921702490409
Iteration: 5, Func. Count: 70, Neg. LLF: 136.19406857689285
Iteration: 6, Func. Count: 83, Neg. LLF: 136.83599922878534
Iteration: 7, Func. Count: 97, Neg. LLF: 136.81314017767426
Iteration: 8, Func. Count: 111, Neg. LLF: 136.24819203958583
Iteration: 9, Func. Count: 125, Neg. LLF: 136.0804579470065
Iteration: 10, Func. Count: 138, Neg. LLF: 136.07872929095856
Iteration: 11, Func. Count: 152, Neg. LLF: 136.07313022432118
Iteration: 12, Func. Count: 166, Neg. LLF: 136.0504641518523
Iteration: 13, Func. Count: 179, Neg. LLF: 136.0132898758623
Iteration: 14, Func. Count: 192, Neg. LLF: 136.00298299390823
Iteration: 15, Func. Count: 205, Neg. LLF: 135.99963566893217
Iteration: 16, Func. Count: 218, Neg. LLF: 135.998803992004
Iteration: 17, Func. Count: 231, Neg. LLF: 135.9986369485127
Iteration: 18, Func. Count: 244, Neg. LLF: 135.99859545164617
Iteration: 19, Func. Count: 257, Neg. LLF: 135.99859167215996
Iteration: 20, Func. Count: 270, Neg. LLF: 135.99859084504573
Optimization terminated successfully (Exit mode 0)
Current function value: 135.99859084504573
Iterations: 20
Function evaluations: 270
Gradient evaluations: 20
Iteration: 1, Func. Count: 15, Neg. LLF: 185.38710428674383
Iteration: 2, Func. Count: 30, Neg. LLF: 138.4568180054275
Iteration: 3, Func. Count: 45, Neg. LLF: 139.76616580992805
Iteration: 4, Func. Count: 60, Neg. LLF: 137.01462167293454
Iteration: 5, Func. Count: 75, Neg. LLF: 136.7045573554167
Iteration: 6, Func. Count: 90, Neg. LLF: 137.67968618994578
Iteration: 7, Func. Count: 105, Neg. LLF: 136.26818164464174
Iteration: 8, Func. Count: 119, Neg. LLF: 138.49746104880148
Iteration: 9, Func. Count: 134, Neg. LLF: 136.40981730681898
Iteration: 10, Func. Count: 149, Neg. LLF: 136.26381660183287
Iteration: 11, Func. Count: 164, Neg. LLF: 136.13545093732236
Iteration: 12, Func. Count: 178, Neg. LLF: 136.13113413170828
Iteration: 13, Func. Count: 192, Neg. LLF: 136.12988621938067
Iteration: 14, Func. Count: 206, Neg. LLF: 136.12932625219173
Iteration: 15, Func. Count: 220, Neg. LLF: 136.12906313065906
Iteration: 16, Func. Count: 234, Neg. LLF: 136.12884978316723
Iteration: 17, Func. Count: 248, Neg. LLF: 136.12875570471957
Iteration: 18, Func. Count: 262, Neg. LLF: 136.12871337560802
Iteration: 19, Func. Count: 276, Neg. LLF: 136.12870648295913
Iteration: 20, Func. Count: 289, Neg. LLF: 136.12870648303527
Optimization terminated successfully (Exit mode 0)
Current function value: 136.12870648295913
Iterations: 20
Function evaluations: 289
Gradient evaluations: 20
Iteration: 1, Func. Count: 12, Neg. LLF: 143.59044929441274
Iteration: 2, Func. Count: 24, Neg. LLF: 144.96053711932763
Iteration: 3, Func. Count: 36, Neg. LLF: 137.3473818252513
Iteration: 4, Func. Count: 48, Neg. LLF: 136.67515124169583
Iteration: 5, Func. Count: 60, Neg. LLF: 142.3128956844237
Iteration: 6, Func. Count: 72, Neg. LLF: 136.99665931642954
Iteration: 7, Func. Count: 84, Neg. LLF: 136.18133383213328
Iteration: 8, Func. Count: 96, Neg. LLF: 136.01300981663633
Iteration: 9, Func. Count: 107, Neg. LLF: 135.98985412998343
Iteration: 10, Func. Count: 118, Neg. LLF: 135.96016084658012
Iteration: 11, Func. Count: 129, Neg. LLF: 135.95232260093226
Iteration: 12, Func. Count: 140, Neg. LLF: 135.95208576342534
Iteration: 13, Func. Count: 151, Neg. LLF: 135.95199598183774
Iteration: 14, Func. Count: 162, Neg. LLF: 135.95193664375708
Iteration: 15, Func. Count: 173, Neg. LLF: 135.9518761696688
Iteration: 16, Func. Count: 184, Neg. LLF: 135.9518725419482
Iteration: 17, Func. Count: 194, Neg. LLF: 135.95187247091198
Optimization terminated successfully (Exit mode 0)
Current function value: 135.9518725419482
Iterations: 17
Function evaluations: 194
Gradient evaluations: 17
Iteration: 1, Func. Count: 13, Neg. LLF: 175.4937455521966
Iteration: 2, Func. Count: 27, Neg. LLF: 140.04400800469793
Iteration: 3, Func. Count: 40, Neg. LLF: 137.46963843949706
Iteration: 4, Func. Count: 53, Neg. LLF: 136.58362206435578
Iteration: 5, Func. Count: 65, Neg. LLF: 136.63492372336438
Iteration: 6, Func. Count: 78, Neg. LLF: 136.80596888446607
Iteration: 7, Func. Count: 91, Neg. LLF: 136.45298154240365
Iteration: 8, Func. Count: 103, Neg. LLF: 136.4514642516593
Iteration: 9, Func. Count: 116, Neg. LLF: 136.3962832590288
Iteration: 10, Func. Count: 128, Neg. LLF: 136.37817736103173
Iteration: 11, Func. Count: 140, Neg. LLF: 136.37740542859623
Iteration: 12, Func. Count: 152, Neg. LLF: 136.3772516376758
Iteration: 13, Func. Count: 164, Neg. LLF: 136.37700702831526
Iteration: 14, Func. Count: 176, Neg. LLF: 136.37700375953602
Iteration: 15, Func. Count: 187, Neg. LLF: 136.37700375936885
Optimization terminated successfully (Exit mode 0)
Current function value: 136.37700375953602
Iterations: 15
Function evaluations: 187
Gradient evaluations: 15
Iteration: 1, Func. Count: 14, Neg. LLF: 163.9138795464149
Iteration: 2, Func. Count: 28, Neg. LLF: 139.0868050996718
Iteration: 3, Func. Count: 42, Neg. LLF: 142.3271578313231
Iteration: 4, Func. Count: 56, Neg. LLF: 137.4540415180413
Iteration: 5, Func. Count: 70, Neg. LLF: 181.1090842019877
Iteration: 6, Func. Count: 85, Neg. LLF: 136.37617183480623
Iteration: 7, Func. Count: 98, Neg. LLF: 136.2600194985614
Iteration: 8, Func. Count: 111, Neg. LLF: 136.13587434072167
Iteration: 9, Func. Count: 124, Neg. LLF: 136.09479660990905
Iteration: 10, Func. Count: 137, Neg. LLF: 136.0832801890036
Iteration: 11, Func. Count: 150, Neg. LLF: 136.06264904702078
Iteration: 12, Func. Count: 163, Neg. LLF: 136.05407216176926
Iteration: 13, Func. Count: 176, Neg. LLF: 136.04912756383177
Iteration: 14, Func. Count: 189, Neg. LLF: 136.04892045562175
Iteration: 15, Func. Count: 202, Neg. LLF: 136.0489075327427
Iteration: 16, Func. Count: 215, Neg. LLF: 136.0489059346814
Iteration: 17, Func. Count: 227, Neg. LLF: 136.04890593468292
Optimization terminated successfully (Exit mode 0)
Current function value: 136.0489059346814
Iterations: 17
Function evaluations: 227
Gradient evaluations: 17
Iteration: 1, Func. Count: 15, Neg. LLF: 171.63911474110964
Iteration: 2, Func. Count: 30, Neg. LLF: 285.1789173813289
Iteration: 3, Func. Count: 46, Neg. LLF: 138.51066186410802
Iteration: 4, Func. Count: 61, Neg. LLF: 136.27797058132458
Iteration: 5, Func. Count: 75, Neg. LLF: 136.19141153050904
Iteration: 6, Func. Count: 89, Neg. LLF: 136.84669341526387
Iteration: 7, Func. Count: 104, Neg. LLF: 136.72131609801806
Iteration: 8, Func. Count: 119, Neg. LLF: 136.24660298410672
Iteration: 9, Func. Count: 134, Neg. LLF: 136.07927739431054
Iteration: 10, Func. Count: 148, Neg. LLF: 136.06629956283342
Iteration: 11, Func. Count: 162, Neg. LLF: 136.07679707722687
Iteration: 12, Func. Count: 177, Neg. LLF: 136.04670516978015
Iteration: 13, Func. Count: 191, Neg. LLF: 136.0066682166582
Iteration: 14, Func. Count: 205, Neg. LLF: 136.0005367171771
Iteration: 15, Func. Count: 219, Neg. LLF: 135.99909533308082
Iteration: 16, Func. Count: 233, Neg. LLF: 135.99875008375153
Iteration: 17, Func. Count: 247, Neg. LLF: 135.99864223491167
Iteration: 18, Func. Count: 261, Neg. LLF: 135.99860119505678
Iteration: 19, Func. Count: 275, Neg. LLF: 135.9985931482622
Iteration: 20, Func. Count: 289, Neg. LLF: 135.99859080412998
Iteration: 21, Func. Count: 302, Neg. LLF: 135.99859080417232
Optimization terminated successfully (Exit mode 0)
Current function value: 135.99859080412998
Iterations: 21
Function evaluations: 302
Gradient evaluations: 21
Iteration: 1, Func. Count: 16, Neg. LLF: 185.04077182687053
Iteration: 2, Func. Count: 32, Neg. LLF: 139.08969701266298
Iteration: 3, Func. Count: 48, Neg. LLF: 138.9139888235329
Iteration: 4, Func. Count: 64, Neg. LLF: 137.63468547763532
Iteration: 5, Func. Count: 80, Neg. LLF: 139.50781735870135
Iteration: 6, Func. Count: 96, Neg. LLF: 137.08210805197663
Iteration: 7, Func. Count: 112, Neg. LLF: 137.74690865933366
Iteration: 8, Func. Count: 128, Neg. LLF: 136.16109099209467
Iteration: 9, Func. Count: 143, Neg. LLF: 136.19880217981327
Iteration: 10, Func. Count: 159, Neg. LLF: 136.05790776988005
Iteration: 11, Func. Count: 174, Neg. LLF: 136.02457244830552
Iteration: 12, Func. Count: 189, Neg. LLF: 136.02823399702993
Iteration: 13, Func. Count: 205, Neg. LLF: 136.01321193920768
Iteration: 14, Func. Count: 220, Neg. LLF: 136.01216317334337
Iteration: 15, Func. Count: 235, Neg. LLF: 136.01212800658107
Iteration: 16, Func. Count: 250, Neg. LLF: 136.01211736814727
Iteration: 17, Func. Count: 265, Neg. LLF: 136.0121028058514
Iteration: 18, Func. Count: 280, Neg. LLF: 136.01209963409912
Iteration: 19, Func. Count: 295, Neg. LLF: 136.0120976129549
Iteration: 20, Func. Count: 309, Neg. LLF: 136.0120976130677
Optimization terminated successfully (Exit mode 0)
Current function value: 136.0120976129549
Iterations: 20
Function evaluations: 309
Gradient evaluations: 20
Iteration: 1, Func. Count: 5, Neg. LLF: 139.6097902427199
Iteration: 2, Func. Count: 10, Neg. LLF: 137.6236176760743
Iteration: 3, Func. Count: 14, Neg. LLF: 139.63931846058358
Iteration: 4, Func. Count: 19, Neg. LLF: 137.34478968703687
Iteration: 5, Func. Count: 23, Neg. LLF: 137.34092261107594
Iteration: 6, Func. Count: 27, Neg. LLF: 137.34083481191337
Iteration: 7, Func. Count: 31, Neg. LLF: 137.34082698975416
Iteration: 8, Func. Count: 35, Neg. LLF: 137.34082427669225
Iteration: 9, Func. Count: 38, Neg. LLF: 137.3408242766595
Optimization terminated successfully (Exit mode 0)
Current function value: 137.34082427669225
Iterations: 9
Function evaluations: 38
Gradient evaluations: 9
Iteration: 1, Func. Count: 5, Neg. LLF: 143.62069623589363
Iteration: 2, Func. Count: 10, Neg. LLF: 143.18787306009685
Iteration: 3, Func. Count: 15, Neg. LLF: 137.87502635067287
Iteration: 4, Func. Count: 19, Neg. LLF: 137.73706888066954
Iteration: 5, Func. Count: 23, Neg. LLF: 137.64710074233224
Iteration: 6, Func. Count: 27, Neg. LLF: 137.6108852873337
Iteration: 7, Func. Count: 31, Neg. LLF: 137.60312109710728
Iteration: 8, Func. Count: 35, Neg. LLF: 137.60188842216547
Iteration: 9, Func. Count: 39, Neg. LLF: 137.6017314395434
Iteration: 10, Func. Count: 43, Neg. LLF: 137.60160347077257
Iteration: 11, Func. Count: 46, Neg. LLF: 137.6016034707636
Optimization terminated successfully (Exit mode 0)
Current function value: 137.60160347077257
Iterations: 11
Function evaluations: 46
Gradient evaluations: 11
Iteration: 1, Func. Count: 6, Neg. LLF: 19562581.00904542
Iteration: 2, Func. Count: 13, Neg. LLF: 152.15888837483314
Iteration: 3, Func. Count: 19, Neg. LLF: 142.3154431178083
Iteration: 4, Func. Count: 25, Neg. LLF: 136.7327998923461
Iteration: 5, Func. Count: 31, Neg. LLF: 139.82252262244472
Iteration: 6, Func. Count: 37, Neg. LLF: 136.08296803590503
Iteration: 7, Func. Count: 43, Neg. LLF: 135.1184912414115
Iteration: 8, Func. Count: 49, Neg. LLF: 134.79554061222078
Iteration: 9, Func. Count: 54, Neg. LLF: 134.69792426290908
Iteration: 10, Func. Count: 59, Neg. LLF: 134.68017498740912
Iteration: 11, Func. Count: 64, Neg. LLF: 134.67395773354517
Iteration: 12, Func. Count: 69, Neg. LLF: 134.67385230789395
Iteration: 13, Func. Count: 73, Neg. LLF: 134.67385230882164
Optimization terminated successfully (Exit mode 0)
Current function value: 134.67385230789395
Iterations: 13
Function evaluations: 73
Gradient evaluations: 13
Iteration: 1, Func. Count: 7, Neg. LLF: 21922311.795058887
Iteration: 2, Func. Count: 15, Neg. LLF: 148.0813403401588
Iteration: 3, Func. Count: 22, Neg. LLF: 137.7529713972358
Iteration: 4, Func. Count: 29, Neg. LLF: 135.78574440376795
Iteration: 5, Func. Count: 36, Neg. LLF: 134.74066595370465
Iteration: 6, Func. Count: 42, Neg. LLF: 134.78242893026427
Iteration: 7, Func. Count: 49, Neg. LLF: 141.91452119593555
Iteration: 8, Func. Count: 57, Neg. LLF: 134.70669023320033
Iteration: 9, Func. Count: 63, Neg. LLF: 134.69136574536796
Iteration: 10, Func. Count: 69, Neg. LLF: 134.6876509750951
Iteration: 11, Func. Count: 75, Neg. LLF: 134.68591672807094
Iteration: 12, Func. Count: 81, Neg. LLF: 134.68590941190234
Iteration: 13, Func. Count: 86, Neg. LLF: 134.68590941160673
Optimization terminated successfully (Exit mode 0)
Current function value: 134.68590941190234
Iterations: 13
Function evaluations: 86
Gradient evaluations: 13
Iteration: 1, Func. Count: 8, Neg. LLF: 24428052.6418242
Iteration: 2, Func. Count: 16, Neg. LLF: 150.4762051374
Iteration: 3, Func. Count: 24, Neg. LLF: 135.89326177097456
Iteration: 4, Func. Count: 32, Neg. LLF: 134.96473365750325
Iteration: 5, Func. Count: 39, Neg. LLF: 135.11369646673643
Iteration: 6, Func. Count: 47, Neg. LLF: 134.65464993069688
Iteration: 7, Func. Count: 55, Neg. LLF: 134.54577130675892
Iteration: 8, Func. Count: 63, Neg. LLF: 134.59668678270373
Iteration: 9, Func. Count: 71, Neg. LLF: 134.48181290978738
Iteration: 10, Func. Count: 78, Neg. LLF: 134.48155876841474
Iteration: 11, Func. Count: 85, Neg. LLF: 134.48146475463892
Iteration: 12, Func. Count: 92, Neg. LLF: 134.48144866088367
Iteration: 13, Func. Count: 98, Neg. LLF: 134.48144866076595
Optimization terminated successfully (Exit mode 0)
Current function value: 134.48144866088367
Iterations: 13
Function evaluations: 98
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 24000732.16587771
Iteration: 2, Func. Count: 18, Neg. LLF: 146.65182264400437
Iteration: 3, Func. Count: 27, Neg. LLF: 135.41368656319978
Iteration: 4, Func. Count: 35, Neg. LLF: 135.19886705049356
Iteration: 5, Func. Count: 43, Neg. LLF: 172.0249646656322
Iteration: 6, Func. Count: 52, Neg. LLF: 134.88966499736327
Iteration: 7, Func. Count: 60, Neg. LLF: 134.8045730627973
Iteration: 8, Func. Count: 68, Neg. LLF: 134.71500324596366
Iteration: 9, Func. Count: 76, Neg. LLF: 134.69955998366243
Iteration: 10, Func. Count: 84, Neg. LLF: 134.69256638103988
Iteration: 11, Func. Count: 92, Neg. LLF: 134.68742673611908
Iteration: 12, Func. Count: 100, Neg. LLF: 134.68142237805853
Iteration: 13, Func. Count: 108, Neg. LLF: 134.67939375641618
Iteration: 14, Func. Count: 116, Neg. LLF: 134.67867367426345
Iteration: 15, Func. Count: 124, Neg. LLF: 134.6786063586852
Iteration: 16, Func. Count: 132, Neg. LLF: 134.67860497034607
Iteration: 17, Func. Count: 139, Neg. LLF: 134.6786049703382
Optimization terminated successfully (Exit mode 0)
Current function value: 134.67860497034607
Iterations: 17
Function evaluations: 139
Gradient evaluations: 17
Iteration: 1, Func. Count: 6, Neg. LLF: 145.2985949482659
Iteration: 2, Func. Count: 13, Neg. LLF: 140.12393692862864
Iteration: 3, Func. Count: 19, Neg. LLF: 138.50755755803894
Iteration: 4, Func. Count: 24, Neg. LLF: 137.6448615357963
Iteration: 5, Func. Count: 29, Neg. LLF: 137.61740925726713
Iteration: 6, Func. Count: 34, Neg. LLF: 137.6033648623455
Iteration: 7, Func. Count: 39, Neg. LLF: 137.60186128077584
Iteration: 8, Func. Count: 44, Neg. LLF: 137.60162911906747
Iteration: 9, Func. Count: 49, Neg. LLF: 137.6016085926045
Iteration: 10, Func. Count: 54, Neg. LLF: 137.60160359259484
Iteration: 11, Func. Count: 58, Neg. LLF: 137.60160362591228
Optimization terminated successfully (Exit mode 0)
Current function value: 137.60160359259484
Iterations: 11
Function evaluations: 58
Gradient evaluations: 11
Iteration: 1, Func. Count: 7, Neg. LLF: 19569358.962924484
Iteration: 2, Func. Count: 15, Neg. LLF: 152.32128376286664
Iteration: 3, Func. Count: 22, Neg. LLF: 142.3874604663206
Iteration: 4, Func. Count: 29, Neg. LLF: 136.8138125256764
Iteration: 5, Func. Count: 36, Neg. LLF: 141.02545261280181
Iteration: 6, Func. Count: 43, Neg. LLF: 136.01385790461333
Iteration: 7, Func. Count: 50, Neg. LLF: 135.14797223106328
Iteration: 8, Func. Count: 57, Neg. LLF: 134.80275129983804
Iteration: 9, Func. Count: 63, Neg. LLF: 134.70628252153196
Iteration: 10, Func. Count: 69, Neg. LLF: 134.68093395993637
Iteration: 11, Func. Count: 75, Neg. LLF: 134.6739629658054
Iteration: 12, Func. Count: 81, Neg. LLF: 134.6738525844216
Iteration: 13, Func. Count: 87, Neg. LLF: 134.67385205622492
Optimization terminated successfully (Exit mode 0)
Current function value: 134.67385205622492
Iterations: 13
Function evaluations: 87
Gradient evaluations: 13
Iteration: 1, Func. Count: 8, Neg. LLF: 19549678.835579164
Iteration: 2, Func. Count: 17, Neg. LLF: 141.09442847642194
Iteration: 3, Func. Count: 25, Neg. LLF: 136.98884759879274
Iteration: 4, Func. Count: 33, Neg. LLF: 134.8507811282488
Iteration: 5, Func. Count: 40, Neg. LLF: 134.74041160806
Iteration: 6, Func. Count: 47, Neg. LLF: 134.72317143370563
Iteration: 7, Func. Count: 54, Neg. LLF: 134.86689857723658
Iteration: 8, Func. Count: 62, Neg. LLF: 134.7133493295696
Iteration: 9, Func. Count: 69, Neg. LLF: 134.71259214491545
Iteration: 10, Func. Count: 76, Neg. LLF: 134.70784171830323
Iteration: 11, Func. Count: 83, Neg. LLF: 134.69287296217
Iteration: 12, Func. Count: 90, Neg. LLF: 134.68496988339177
Iteration: 13, Func. Count: 97, Neg. LLF: 134.67749524535196
Iteration: 14, Func. Count: 104, Neg. LLF: 134.6758683256906
Iteration: 15, Func. Count: 111, Neg. LLF: 134.6739522173719
Iteration: 16, Func. Count: 118, Neg. LLF: 134.67385727085482
Iteration: 17, Func. Count: 125, Neg. LLF: 134.6738520673462
Iteration: 18, Func. Count: 131, Neg. LLF: 134.6738520687753
Optimization terminated successfully (Exit mode 0)
Current function value: 134.6738520673462
Iterations: 18
Function evaluations: 131
Gradient evaluations: 18
Iteration: 1, Func. Count: 9, Neg. LLF: 24083541.357498035
Iteration: 2, Func. Count: 19, Neg. LLF: 153.15846758352825
Iteration: 3, Func. Count: 28, Neg. LLF: 135.57408658012545
Iteration: 4, Func. Count: 36, Neg. LLF: 134.95001792296688
Iteration: 5, Func. Count: 44, Neg. LLF: 138.54161608101998
Iteration: 6, Func. Count: 55, Neg. LLF: 135.36883586374265
Iteration: 7, Func. Count: 64, Neg. LLF: 134.55236247326295
Iteration: 8, Func. Count: 72, Neg. LLF: 134.4898905862667
Iteration: 9, Func. Count: 80, Neg. LLF: 134.4831006320682
Iteration: 10, Func. Count: 88, Neg. LLF: 134.48162998995542
Iteration: 11, Func. Count: 96, Neg. LLF: 134.48146121330868
Iteration: 12, Func. Count: 104, Neg. LLF: 134.48144821642236
Iteration: 13, Func. Count: 111, Neg. LLF: 134.48144821641188
Optimization terminated successfully (Exit mode 0)
Current function value: 134.48144821642236
Iterations: 13
Function evaluations: 111
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 193.09523105302577
Iteration: 2, Func. Count: 20, Neg. LLF: 11739533.893307675
Iteration: 3, Func. Count: 30, Neg. LLF: 137.97060085524768
Iteration: 4, Func. Count: 40, Neg. LLF: 134.89990374351729
Iteration: 5, Func. Count: 49, Neg. LLF: 135.34067651625494
Iteration: 6, Func. Count: 59, Neg. LLF: 135.76199213449038
Iteration: 7, Func. Count: 70, Neg. LLF: 134.76477580397423
Iteration: 8, Func. Count: 79, Neg. LLF: 134.73544579614003
Iteration: 9, Func. Count: 88, Neg. LLF: 134.7322224474719
Iteration: 10, Func. Count: 97, Neg. LLF: 134.72556701485445
Iteration: 11, Func. Count: 106, Neg. LLF: 134.8867896603598
Iteration: 12, Func. Count: 116, Neg. LLF: 135.03021828748703
Iteration: 13, Func. Count: 126, Neg. LLF: 134.70947049107113
Iteration: 14, Func. Count: 136, Neg. LLF: 134.6975131606408
Iteration: 15, Func. Count: 145, Neg. LLF: 134.6808344867975
Iteration: 16, Func. Count: 154, Neg. LLF: 134.67906110171057
Iteration: 17, Func. Count: 163, Neg. LLF: 134.67865652480504
Iteration: 18, Func. Count: 172, Neg. LLF: 134.67861192643971
Iteration: 19, Func. Count: 181, Neg. LLF: 134.67860573197052
Iteration: 20, Func. Count: 190, Neg. LLF: 134.67860497108657
Optimization terminated successfully (Exit mode 0)
Current function value: 134.67860497108657
Iterations: 20
Function evaluations: 190
Gradient evaluations: 20
Iteration: 1, Func. Count: 7, Neg. LLF: 142.22580777726137
Iteration: 2, Func. Count: 15, Neg. LLF: 141.76026667787863
Iteration: 3, Func. Count: 22, Neg. LLF: 138.28659980637133
Iteration: 4, Func. Count: 28, Neg. LLF: 138.13137715461346
Iteration: 5, Func. Count: 35, Neg. LLF: 137.7042854260389
Iteration: 6, Func. Count: 41, Neg. LLF: 137.6873094555145
Iteration: 7, Func. Count: 48, Neg. LLF: 137.59222455803788
Iteration: 8, Func. Count: 54, Neg. LLF: 137.55975534583777
Iteration: 9, Func. Count: 60, Neg. LLF: 137.55778163600573
Iteration: 10, Func. Count: 66, Neg. LLF: 137.55766832086226
Iteration: 11, Func. Count: 72, Neg. LLF: 137.5576659566721
Iteration: 12, Func. Count: 78, Neg. LLF: 137.55766469403838
Iteration: 13, Func. Count: 83, Neg. LLF: 137.55766469405174
Optimization terminated successfully (Exit mode 0)
Current function value: 137.55766469403838
Iterations: 13
Function evaluations: 83
Gradient evaluations: 13
Iteration: 1, Func. Count: 8, Neg. LLF: 19577705.620271236
Iteration: 2, Func. Count: 17, Neg. LLF: 152.70537596554894
Iteration: 3, Func. Count: 25, Neg. LLF: 142.5101941395059
Iteration: 4, Func. Count: 33, Neg. LLF: 136.93112912781882
Iteration: 5, Func. Count: 41, Neg. LLF: 141.02566161808224
Iteration: 6, Func. Count: 49, Neg. LLF: 136.0150749888183
Iteration: 7, Func. Count: 57, Neg. LLF: 135.15035396741297
Iteration: 8, Func. Count: 65, Neg. LLF: 134.81219578870414
Iteration: 9, Func. Count: 72, Neg. LLF: 134.71291651397175
Iteration: 10, Func. Count: 79, Neg. LLF: 134.68107327999132
Iteration: 11, Func. Count: 86, Neg. LLF: 134.67394340290036
Iteration: 12, Func. Count: 93, Neg. LLF: 134.67385245675737
Iteration: 13, Func. Count: 99, Neg. LLF: 134.6738524582294
Optimization terminated successfully (Exit mode 0)
Current function value: 134.67385245675737
Iterations: 13
Function evaluations: 99
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 19556850.41848493
Iteration: 2, Func. Count: 19, Neg. LLF: 141.24051076093505
Iteration: 3, Func. Count: 28, Neg. LLF: 137.05487410922353
Iteration: 4, Func. Count: 37, Neg. LLF: 134.84455287885862
Iteration: 5, Func. Count: 45, Neg. LLF: 134.7479992736687
Iteration: 6, Func. Count: 53, Neg. LLF: 134.77579442205663
Iteration: 7, Func. Count: 62, Neg. LLF: 134.7262215787215
Iteration: 8, Func. Count: 70, Neg. LLF: 134.71448336893948
Iteration: 9, Func. Count: 78, Neg. LLF: 134.7135238838947
Iteration: 10, Func. Count: 86, Neg. LLF: 134.71195495130678
Iteration: 11, Func. Count: 94, Neg. LLF: 134.70840258877905
Iteration: 12, Func. Count: 102, Neg. LLF: 134.6926197827765
Iteration: 13, Func. Count: 110, Neg. LLF: 134.68358009369382
Iteration: 14, Func. Count: 118, Neg. LLF: 134.67888095833158
Iteration: 15, Func. Count: 126, Neg. LLF: 134.67460700268097
Iteration: 16, Func. Count: 134, Neg. LLF: 134.67385474191917
Iteration: 17, Func. Count: 142, Neg. LLF: 134.67385205889153
Iteration: 18, Func. Count: 149, Neg. LLF: 134.67385206045267
Optimization terminated successfully (Exit mode 0)
Current function value: 134.67385205889153
Iterations: 18
Function evaluations: 149
Gradient evaluations: 18
Iteration: 1, Func. Count: 10, Neg. LLF: 25128846.171467744
Iteration: 2, Func. Count: 20, Neg. LLF: 151.2240929523825
Iteration: 3, Func. Count: 30, Neg. LLF: 136.11276342566995
Iteration: 4, Func. Count: 39, Neg. LLF: 154.2133695447327
Iteration: 5, Func. Count: 49, Neg. LLF: 134.91859532274609
Iteration: 6, Func. Count: 58, Neg. LLF: 139.1986445685614
Iteration: 7, Func. Count: 68, Neg. LLF: 135.30687984045557
Iteration: 8, Func. Count: 78, Neg. LLF: 134.63243059998214
Iteration: 9, Func. Count: 88, Neg. LLF: 134.5016645473694
Iteration: 10, Func. Count: 97, Neg. LLF: 134.55964536872315
Iteration: 11, Func. Count: 107, Neg. LLF: 134.713458540853
Iteration: 12, Func. Count: 117, Neg. LLF: 134.48174793299182
Iteration: 13, Func. Count: 126, Neg. LLF: 134.48144995038476
Iteration: 14, Func. Count: 135, Neg. LLF: 134.481448233442
Iteration: 15, Func. Count: 143, Neg. LLF: 134.4814482333915
Optimization terminated successfully (Exit mode 0)
Current function value: 134.481448233442
Iterations: 15
Function evaluations: 143
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 193.12819214297372
Iteration: 2, Func. Count: 22, Neg. LLF: 11824729.76999777
Iteration: 3, Func. Count: 33, Neg. LLF: 138.18474675607678
Iteration: 4, Func. Count: 44, Neg. LLF: 134.90369371438297
Iteration: 5, Func. Count: 54, Neg. LLF: 135.35628371570604
Iteration: 6, Func. Count: 65, Neg. LLF: 135.65981618079994
Iteration: 7, Func. Count: 76, Neg. LLF: 134.75403457469545
Iteration: 8, Func. Count: 86, Neg. LLF: 134.74810702355816
Iteration: 9, Func. Count: 96, Neg. LLF: 134.73424480808004
Iteration: 10, Func. Count: 106, Neg. LLF: 134.73212040215506
Iteration: 11, Func. Count: 116, Neg. LLF: 134.71308860104173
Iteration: 12, Func. Count: 126, Neg. LLF: 134.88352561049308
Iteration: 13, Func. Count: 137, Neg. LLF: 134.75922017240208
Iteration: 14, Func. Count: 148, Neg. LLF: 134.68134427383725
Iteration: 15, Func. Count: 158, Neg. LLF: 134.67886093951938
Iteration: 16, Func. Count: 168, Neg. LLF: 134.67862729916024
Iteration: 17, Func. Count: 178, Neg. LLF: 134.67860629257555
Iteration: 18, Func. Count: 188, Neg. LLF: 134.67860499322344
Iteration: 19, Func. Count: 197, Neg. LLF: 134.67860499334054
Optimization terminated successfully (Exit mode 0)
Current function value: 134.67860499322344
Iterations: 19
Function evaluations: 197
Gradient evaluations: 19
Iteration: 1, Func. Count: 8, Neg. LLF: 141.71081478970422
Iteration: 2, Func. Count: 17, Neg. LLF: 141.3695700641802
Iteration: 3, Func. Count: 26, Neg. LLF: 141.335264894778
Iteration: 4, Func. Count: 34, Neg. LLF: 138.61506032916057
Iteration: 5, Func. Count: 42, Neg. LLF: 137.66063550304477
Iteration: 6, Func. Count: 49, Neg. LLF: 137.6127136873319
Iteration: 7, Func. Count: 56, Neg. LLF: 137.58236453068486
Iteration: 8, Func. Count: 63, Neg. LLF: 137.56564100305874
Iteration: 9, Func. Count: 70, Neg. LLF: 137.55833096227673
Iteration: 10, Func. Count: 77, Neg. LLF: 137.5577358500222
Iteration: 11, Func. Count: 84, Neg. LLF: 137.55767792880414
Iteration: 12, Func. Count: 91, Neg. LLF: 137.55766520935924
Iteration: 13, Func. Count: 97, Neg. LLF: 137.55766522573384
Optimization terminated successfully (Exit mode 0)
Current function value: 137.55766520935924
Iterations: 13
Function evaluations: 97
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 19574694.140290745
Iteration: 2, Func. Count: 19, Neg. LLF: 152.70836833701023
Iteration: 3, Func. Count: 28, Neg. LLF: 142.54742274229076
Iteration: 4, Func. Count: 37, Neg. LLF: 136.94536282675043
Iteration: 5, Func. Count: 46, Neg. LLF: 141.02866162196415
Iteration: 6, Func. Count: 55, Neg. LLF: 136.0394521947326
Iteration: 7, Func. Count: 64, Neg. LLF: 135.16861153861092
Iteration: 8, Func. Count: 73, Neg. LLF: 134.81019962057107
Iteration: 9, Func. Count: 81, Neg. LLF: 134.71550430697656
Iteration: 10, Func. Count: 89, Neg. LLF: 134.6832981011354
Iteration: 11, Func. Count: 97, Neg. LLF: 134.67395723350933
Iteration: 12, Func. Count: 105, Neg. LLF: 134.6738526961636
Iteration: 13, Func. Count: 113, Neg. LLF: 134.67385205654804
Optimization terminated successfully (Exit mode 0)
Current function value: 134.67385205654804
Iterations: 13
Function evaluations: 113
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 19555473.55485171
Iteration: 2, Func. Count: 21, Neg. LLF: 141.27222203643404
Iteration: 3, Func. Count: 31, Neg. LLF: 137.0506757382063
Iteration: 4, Func. Count: 41, Neg. LLF: 134.8484125044997
Iteration: 5, Func. Count: 50, Neg. LLF: 134.77131328922212
Iteration: 6, Func. Count: 59, Neg. LLF: 134.85071934337282
Iteration: 7, Func. Count: 69, Neg. LLF: 134.7195957936393
Iteration: 8, Func. Count: 78, Neg. LLF: 134.71698369967504
Iteration: 9, Func. Count: 87, Neg. LLF: 134.7155669121074
Iteration: 10, Func. Count: 96, Neg. LLF: 134.71258427799367
Iteration: 11, Func. Count: 105, Neg. LLF: 134.70457527282284
Iteration: 12, Func. Count: 114, Neg. LLF: 134.68011673492035
Iteration: 13, Func. Count: 123, Neg. LLF: 134.67473396251197
Iteration: 14, Func. Count: 132, Neg. LLF: 134.67475877691103
Iteration: 15, Func. Count: 142, Neg. LLF: 134.67390793192794
Iteration: 16, Func. Count: 151, Neg. LLF: 134.6738520602591
Iteration: 17, Func. Count: 159, Neg. LLF: 134.67385206179236
Optimization terminated successfully (Exit mode 0)
Current function value: 134.6738520602591
Iterations: 17
Function evaluations: 159
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 189.36299140774673
Iteration: 2, Func. Count: 22, Neg. LLF: 11838022.935711961
Iteration: 3, Func. Count: 33, Neg. LLF: 135.3594238471683
Iteration: 4, Func. Count: 43, Neg. LLF: 138.27437600234663
Iteration: 5, Func. Count: 54, Neg. LLF: 134.90644574149823
Iteration: 6, Func. Count: 65, Neg. LLF: 139.72894896905802
Iteration: 7, Func. Count: 77, Neg. LLF: 134.49119573688347
Iteration: 8, Func. Count: 87, Neg. LLF: 134.50578739551108
Iteration: 9, Func. Count: 98, Neg. LLF: 134.48484724352093
Iteration: 10, Func. Count: 109, Neg. LLF: 134.48147799911044
Iteration: 11, Func. Count: 119, Neg. LLF: 134.4814484143899
Iteration: 12, Func. Count: 128, Neg. LLF: 134.48144841429138
Optimization terminated successfully (Exit mode 0)
Current function value: 134.4814484143899
Iterations: 12
Function evaluations: 128
Gradient evaluations: 12
Iteration: 1, Func. Count: 12, Neg. LLF: 193.0422198588789
Iteration: 2, Func. Count: 24, Neg. LLF: 11836165.20462068
Iteration: 3, Func. Count: 36, Neg. LLF: 138.15267156096814
Iteration: 4, Func. Count: 48, Neg. LLF: 134.91450611643594
Iteration: 5, Func. Count: 59, Neg. LLF: 135.46836090670374
Iteration: 6, Func. Count: 71, Neg. LLF: 135.59077463647552
Iteration: 7, Func. Count: 83, Neg. LLF: 134.75519096670178
Iteration: 8, Func. Count: 94, Neg. LLF: 134.74837973584332
Iteration: 9, Func. Count: 105, Neg. LLF: 134.73535744560667
Iteration: 10, Func. Count: 116, Neg. LLF: 134.73337741342934
Iteration: 11, Func. Count: 127, Neg. LLF: 134.71274104642623
Iteration: 12, Func. Count: 138, Neg. LLF: 134.88283523744667
Iteration: 13, Func. Count: 150, Neg. LLF: 134.7521676985776
Iteration: 14, Func. Count: 162, Neg. LLF: 134.68040846323484
Iteration: 15, Func. Count: 173, Neg. LLF: 134.67884829415385
Iteration: 16, Func. Count: 184, Neg. LLF: 134.6786449538358
Iteration: 17, Func. Count: 195, Neg. LLF: 134.67860554398908
Iteration: 18, Func. Count: 206, Neg. LLF: 134.6786050488535
Optimization terminated successfully (Exit mode 0)
Current function value: 134.6786050488535
Iterations: 18
Function evaluations: 206
Gradient evaluations: 18
Iteration: 1, Func. Count: 5, Neg. LLF: 139.09419084843674
Iteration: 2, Func. Count: 10, Neg. LLF: 137.6904595428065
Iteration: 3, Func. Count: 15, Neg. LLF: 136.5955260021897
Iteration: 4, Func. Count: 19, Neg. LLF: 136.54694896729544
Iteration: 5, Func. Count: 23, Neg. LLF: 136.53101788928103
Iteration: 6, Func. Count: 27, Neg. LLF: 136.5300437555758
Iteration: 7, Func. Count: 31, Neg. LLF: 136.52975916702593
Iteration: 8, Func. Count: 35, Neg. LLF: 136.5297259431161
Iteration: 9, Func. Count: 39, Neg. LLF: 136.5297237887576
Iteration: 10, Func. Count: 42, Neg. LLF: 136.529723788746
Optimization terminated successfully (Exit mode 0)
Current function value: 136.5297237887576
Iterations: 10
Function evaluations: 42
Gradient evaluations: 10
Iteration: 1, Func. Count: 6, Neg. LLF: 19814324.7410443
Iteration: 2, Func. Count: 13, Neg. LLF: 176.973181572286
Iteration: 3, Func. Count: 19, Neg. LLF: 136.86456437505706
Iteration: 4, Func. Count: 25, Neg. LLF: 137.2255002747858
Iteration: 5, Func. Count: 31, Neg. LLF: 136.49312710732036
Iteration: 6, Func. Count: 37, Neg. LLF: 135.58188802310733
Iteration: 7, Func. Count: 43, Neg. LLF: 134.9108540016837
Iteration: 8, Func. Count: 49, Neg. LLF: 134.80093053805066
Iteration: 9, Func. Count: 54, Neg. LLF: 134.71304436164326
Iteration: 10, Func. Count: 59, Neg. LLF: 134.7704088214817
Iteration: 11, Func. Count: 65, Neg. LLF: 134.6738942714121
Iteration: 12, Func. Count: 70, Neg. LLF: 134.67385302185465
Iteration: 13, Func. Count: 75, Neg. LLF: 134.67385206174615
Optimization terminated successfully (Exit mode 0)
Current function value: 134.67385206174615
Iterations: 13
Function evaluations: 75
Gradient evaluations: 13
Iteration: 1, Func. Count: 7, Neg. LLF: 728.4412068901106
Iteration: 2, Func. Count: 15, Neg. LLF: 169.297626812151
Iteration: 3, Func. Count: 22, Neg. LLF: 137.23274192469415
Iteration: 4, Func. Count: 29, Neg. LLF: 134.90340803413847
Iteration: 5, Func. Count: 36, Neg. LLF: 134.62272485984755
Iteration: 6, Func. Count: 42, Neg. LLF: 134.61815457857466
Iteration: 7, Func. Count: 48, Neg. LLF: 134.61933320722954
Iteration: 8, Func. Count: 55, Neg. LLF: 134.6194455200386
Iteration: 9, Func. Count: 62, Neg. LLF: 134.61425889602089
Iteration: 10, Func. Count: 68, Neg. LLF: 134.61422759117912
Iteration: 11, Func. Count: 74, Neg. LLF: 134.6142260647566
Iteration: 12, Func. Count: 79, Neg. LLF: 134.61422606471575
Optimization terminated successfully (Exit mode 0)
Current function value: 134.6142260647566
Iterations: 12
Function evaluations: 79
Gradient evaluations: 12
Iteration: 1, Func. Count: 8, Neg. LLF: 1336.893409730444
Iteration: 2, Func. Count: 17, Neg. LLF: 166.09841122915938
Iteration: 3, Func. Count: 25, Neg. LLF: 137.7691074473875
Iteration: 4, Func. Count: 33, Neg. LLF: 135.04796718117078
Iteration: 5, Func. Count: 41, Neg. LLF: 134.6266581304401
Iteration: 6, Func. Count: 48, Neg. LLF: 134.69247236715705
Iteration: 7, Func. Count: 56, Neg. LLF: 134.59962254432963
Iteration: 8, Func. Count: 63, Neg. LLF: 134.59005402422324
Iteration: 9, Func. Count: 70, Neg. LLF: 134.58967747776603
Iteration: 10, Func. Count: 77, Neg. LLF: 134.58966758927627
Iteration: 11, Func. Count: 84, Neg. LLF: 134.58965266434367
Iteration: 12, Func. Count: 90, Neg. LLF: 134.58965266432222
Optimization terminated successfully (Exit mode 0)
Current function value: 134.58965266434367
Iterations: 12
Function evaluations: 90
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 2816.3001034736503
Iteration: 2, Func. Count: 19, Neg. LLF: 166.12222221673127
Iteration: 3, Func. Count: 28, Neg. LLF: 138.1155620705041
Iteration: 4, Func. Count: 37, Neg. LLF: 135.0434292000823
Iteration: 5, Func. Count: 46, Neg. LLF: 134.655181267248
Iteration: 6, Func. Count: 54, Neg. LLF: 134.68967407953582
Iteration: 7, Func. Count: 63, Neg. LLF: 134.65798614308946
Iteration: 8, Func. Count: 72, Neg. LLF: 134.59020772887035
Iteration: 9, Func. Count: 80, Neg. LLF: 134.5897740811141
Iteration: 10, Func. Count: 88, Neg. LLF: 134.58966555401486
Iteration: 11, Func. Count: 96, Neg. LLF: 134.5896526722384
Iteration: 12, Func. Count: 103, Neg. LLF: 134.58965267579444
Optimization terminated successfully (Exit mode 0)
Current function value: 134.5896526722384
Iterations: 12
Function evaluations: 103
Gradient evaluations: 12
Iteration: 1, Func. Count: 6, Neg. LLF: 138.55119717690175
Iteration: 2, Func. Count: 12, Neg. LLF: 139.33891570081886
Iteration: 3, Func. Count: 18, Neg. LLF: 139.39748856427875
Iteration: 4, Func. Count: 24, Neg. LLF: 136.65743092352497
Iteration: 5, Func. Count: 29, Neg. LLF: 136.54437541253645
Iteration: 6, Func. Count: 34, Neg. LLF: 136.52897975892708
Iteration: 7, Func. Count: 39, Neg. LLF: 136.52746288763043
Iteration: 8, Func. Count: 44, Neg. LLF: 136.52704811962434
Iteration: 9, Func. Count: 49, Neg. LLF: 136.5270261741948
Iteration: 10, Func. Count: 54, Neg. LLF: 136.52702477883372
Iteration: 11, Func. Count: 58, Neg. LLF: 136.52702477884412
Optimization terminated successfully (Exit mode 0)
Current function value: 136.52702477883372
Iterations: 11
Function evaluations: 58
Gradient evaluations: 11
Iteration: 1, Func. Count: 7, Neg. LLF: 19948071.029555794
Iteration: 2, Func. Count: 15, Neg. LLF: 146.5653737563865
Iteration: 3, Func. Count: 23, Neg. LLF: 134.76064472687062
Iteration: 4, Func. Count: 29, Neg. LLF: 135.18775546389315
Iteration: 5, Func. Count: 36, Neg. LLF: 141.38933367790221
Iteration: 6, Func. Count: 43, Neg. LLF: 134.87076642527956
Iteration: 7, Func. Count: 50, Neg. LLF: 134.49512626197534
Iteration: 8, Func. Count: 56, Neg. LLF: 134.4914126843787
Iteration: 9, Func. Count: 62, Neg. LLF: 134.49124399164015
Iteration: 10, Func. Count: 68, Neg. LLF: 134.49123979288674
Iteration: 11, Func. Count: 73, Neg. LLF: 134.49123979308897
Optimization terminated successfully (Exit mode 0)
Current function value: 134.49123979288674
Iterations: 11
Function evaluations: 73
Gradient evaluations: 11
Iteration: 1, Func. Count: 8, Neg. LLF: 674.3226776551847
Iteration: 2, Func. Count: 17, Neg. LLF: 142.5474457204464
Iteration: 3, Func. Count: 25, Neg. LLF: 137.2557213645692
Iteration: 4, Func. Count: 33, Neg. LLF: 137.9740336120187
Iteration: 5, Func. Count: 41, Neg. LLF: 134.72190408712436
Iteration: 6, Func. Count: 48, Neg. LLF: 134.7070729114053
Iteration: 7, Func. Count: 56, Neg. LLF: 134.7690822896347
Iteration: 8, Func. Count: 64, Neg. LLF: 134.5832822846294
Iteration: 9, Func. Count: 71, Neg. LLF: 134.58468566555982
Iteration: 10, Func. Count: 79, Neg. LLF: 134.5583210099983
Iteration: 11, Func. Count: 86, Neg. LLF: 134.55506853062204
Iteration: 12, Func. Count: 93, Neg. LLF: 134.55416371796048
Iteration: 13, Func. Count: 100, Neg. LLF: 134.55048181991305
Iteration: 14, Func. Count: 107, Neg. LLF: 134.5472897290121
Iteration: 15, Func. Count: 114, Neg. LLF: 134.53808956170147
Iteration: 16, Func. Count: 121, Neg. LLF: 134.4914681476728
Iteration: 17, Func. Count: 128, Neg. LLF: 134.49154093198413
Iteration: 18, Func. Count: 136, Neg. LLF: 134.49125148174463
Iteration: 19, Func. Count: 143, Neg. LLF: 134.49123941765671
Iteration: 20, Func. Count: 149, Neg. LLF: 134.49123942107283
Optimization terminated successfully (Exit mode 0)
Current function value: 134.49123941765671
Iterations: 20
Function evaluations: 149
Gradient evaluations: 20
Iteration: 1, Func. Count: 9, Neg. LLF: 1164.473487389151
Iteration: 2, Func. Count: 19, Neg. LLF: 139.5314814895235
Iteration: 3, Func. Count: 28, Neg. LLF: 137.60862150442338
Iteration: 4, Func. Count: 37, Neg. LLF: 138.55348755862695
Iteration: 5, Func. Count: 46, Neg. LLF: 135.14225467017982
Iteration: 6, Func. Count: 55, Neg. LLF: 134.72283410955797
Iteration: 7, Func. Count: 64, Neg. LLF: 134.7403241899059
Iteration: 8, Func. Count: 73, Neg. LLF: 134.5726886160571
Iteration: 9, Func. Count: 81, Neg. LLF: 134.5660395223287
Iteration: 10, Func. Count: 89, Neg. LLF: 134.5660958980176
Iteration: 11, Func. Count: 98, Neg. LLF: 134.56495225609365
Iteration: 12, Func. Count: 106, Neg. LLF: 134.56494749897612
Iteration: 13, Func. Count: 113, Neg. LLF: 134.56494749900037
Optimization terminated successfully (Exit mode 0)
Current function value: 134.56494749897612
Iterations: 13
Function evaluations: 113
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 2153.2802286744545
Iteration: 2, Func. Count: 21, Neg. LLF: 139.05984879438031
Iteration: 3, Func. Count: 31, Neg. LLF: 138.12596544399804
Iteration: 4, Func. Count: 41, Neg. LLF: 138.31609919076325
Iteration: 5, Func. Count: 51, Neg. LLF: 134.7525479156846
Iteration: 6, Func. Count: 61, Neg. LLF: 134.66373667084437
Iteration: 7, Func. Count: 71, Neg. LLF: 134.57740165994306
Iteration: 8, Func. Count: 80, Neg. LLF: 134.57632694665762
Iteration: 9, Func. Count: 90, Neg. LLF: 134.59774273675202
Iteration: 10, Func. Count: 100, Neg. LLF: 134.56495413296264
Iteration: 11, Func. Count: 109, Neg. LLF: 134.56494764595138
Iteration: 12, Func. Count: 117, Neg. LLF: 134.56494765445765
Optimization terminated successfully (Exit mode 0)
Current function value: 134.56494764595138
Iterations: 12
Function evaluations: 117
Gradient evaluations: 12
Iteration: 1, Func. Count: 7, Neg. LLF: 138.79020120022565
Iteration: 2, Func. Count: 14, Neg. LLF: 139.70172490961232
Iteration: 3, Func. Count: 21, Neg. LLF: 139.5531057097834
Iteration: 4, Func. Count: 28, Neg. LLF: 136.6586257946806
Iteration: 5, Func. Count: 34, Neg. LLF: 136.54475185567333
Iteration: 6, Func. Count: 40, Neg. LLF: 136.53138403238356
Iteration: 7, Func. Count: 46, Neg. LLF: 136.52775830652934
Iteration: 8, Func. Count: 52, Neg. LLF: 136.52711099982542
Iteration: 9, Func. Count: 58, Neg. LLF: 136.52702612721475
Iteration: 10, Func. Count: 64, Neg. LLF: 136.5270247737371
Iteration: 11, Func. Count: 69, Neg. LLF: 136.52702480966278
Optimization terminated successfully (Exit mode 0)
Current function value: 136.5270247737371
Iterations: 11
Function evaluations: 69
Gradient evaluations: 11
Iteration: 1, Func. Count: 8, Neg. LLF: 19956357.364453375
Iteration: 2, Func. Count: 17, Neg. LLF: 146.60164028043542
Iteration: 3, Func. Count: 26, Neg. LLF: 134.75693720724865
Iteration: 4, Func. Count: 33, Neg. LLF: 135.1791306768479
Iteration: 5, Func. Count: 41, Neg. LLF: 141.67685238595186
Iteration: 6, Func. Count: 49, Neg. LLF: 134.90054361429281
Iteration: 7, Func. Count: 57, Neg. LLF: 134.494847566304
Iteration: 8, Func. Count: 64, Neg. LLF: 134.4914566023578
Iteration: 9, Func. Count: 71, Neg. LLF: 134.49126257424987
Iteration: 10, Func. Count: 78, Neg. LLF: 134.49123977677843
Iteration: 11, Func. Count: 84, Neg. LLF: 134.49123977710457
Optimization terminated successfully (Exit mode 0)
Current function value: 134.49123977677843
Iterations: 11
Function evaluations: 84
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 673.6778687132091
Iteration: 2, Func. Count: 19, Neg. LLF: 142.4386105855242
Iteration: 3, Func. Count: 28, Neg. LLF: 137.23382081811934
Iteration: 4, Func. Count: 37, Neg. LLF: 137.91899217143205
Iteration: 5, Func. Count: 46, Neg. LLF: 134.71181902771875
Iteration: 6, Func. Count: 54, Neg. LLF: 134.71549922414195
Iteration: 7, Func. Count: 63, Neg. LLF: 134.7390507321486
Iteration: 8, Func. Count: 72, Neg. LLF: 134.58070693529535
Iteration: 9, Func. Count: 80, Neg. LLF: 134.60723436290195
Iteration: 10, Func. Count: 89, Neg. LLF: 134.5562959238482
Iteration: 11, Func. Count: 97, Neg. LLF: 134.55488931709377
Iteration: 12, Func. Count: 105, Neg. LLF: 134.55358977334313
Iteration: 13, Func. Count: 113, Neg. LLF: 134.55079117870238
Iteration: 14, Func. Count: 121, Neg. LLF: 134.54758002817482
Iteration: 15, Func. Count: 129, Neg. LLF: 134.53909814634653
Iteration: 16, Func. Count: 137, Neg. LLF: 134.49151880028774
Iteration: 17, Func. Count: 145, Neg. LLF: 134.4915280802888
Iteration: 18, Func. Count: 154, Neg. LLF: 134.49126782945982
Iteration: 19, Func. Count: 162, Neg. LLF: 134.49123991350353
Iteration: 20, Func. Count: 170, Neg. LLF: 134.49123961302146
Optimization terminated successfully (Exit mode 0)
Current function value: 134.49123961302146
Iterations: 20
Function evaluations: 170
Gradient evaluations: 20
Iteration: 1, Func. Count: 10, Neg. LLF: 1155.7915172420708
Iteration: 2, Func. Count: 21, Neg. LLF: 139.42793197534056
Iteration: 3, Func. Count: 31, Neg. LLF: 137.45961996211526
Iteration: 4, Func. Count: 41, Neg. LLF: 138.44735259957662
Iteration: 5, Func. Count: 51, Neg. LLF: 134.94138522002976
Iteration: 6, Func. Count: 61, Neg. LLF: 134.70786629699987
Iteration: 7, Func. Count: 71, Neg. LLF: 134.78107938023484
Iteration: 8, Func. Count: 81, Neg. LLF: 134.57020041054577
Iteration: 9, Func. Count: 90, Neg. LLF: 134.56550296823764
Iteration: 10, Func. Count: 99, Neg. LLF: 134.56542008077614
Iteration: 11, Func. Count: 109, Neg. LLF: 134.56495253279476
Iteration: 12, Func. Count: 118, Neg. LLF: 134.56494749616974
Iteration: 13, Func. Count: 126, Neg. LLF: 134.56494749619077
Optimization terminated successfully (Exit mode 0)
Current function value: 134.56494749616974
Iterations: 13
Function evaluations: 126
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 2096.4631733338106
Iteration: 2, Func. Count: 23, Neg. LLF: 139.02000371857412
Iteration: 3, Func. Count: 34, Neg. LLF: 137.97233254871037
Iteration: 4, Func. Count: 45, Neg. LLF: 138.20232108802514
Iteration: 5, Func. Count: 56, Neg. LLF: 134.73011396449928
Iteration: 6, Func. Count: 66, Neg. LLF: 134.72604721058414
Iteration: 7, Func. Count: 77, Neg. LLF: 134.74097663454955
Iteration: 8, Func. Count: 88, Neg. LLF: 134.65470410532782
Iteration: 9, Func. Count: 99, Neg. LLF: 134.5732347024357
Iteration: 10, Func. Count: 110, Neg. LLF: 134.5649781465432
Iteration: 11, Func. Count: 120, Neg. LLF: 134.56495515305443
Iteration: 12, Func. Count: 130, Neg. LLF: 134.564950392028
Iteration: 13, Func. Count: 140, Neg. LLF: 134.56494794236997
Iteration: 14, Func. Count: 149, Neg. LLF: 134.56494795101818
Optimization terminated successfully (Exit mode 0)
Current function value: 134.56494794236997
Iterations: 14
Function evaluations: 149
Gradient evaluations: 14
Iteration: 1, Func. Count: 8, Neg. LLF: 138.66671209249063
Iteration: 2, Func. Count: 16, Neg. LLF: 138.19562759013118
Iteration: 3, Func. Count: 24, Neg. LLF: 136.9975476924666
Iteration: 4, Func. Count: 32, Neg. LLF: 136.9033899006171
Iteration: 5, Func. Count: 40, Neg. LLF: 136.58092215254356
Iteration: 6, Func. Count: 47, Neg. LLF: 136.6431876864549
Iteration: 7, Func. Count: 55, Neg. LLF: 136.51489377433498
Iteration: 8, Func. Count: 62, Neg. LLF: 136.50526051176297
Iteration: 9, Func. Count: 69, Neg. LLF: 136.50260519582784
Iteration: 10, Func. Count: 76, Neg. LLF: 136.50257215999056
Iteration: 11, Func. Count: 82, Neg. LLF: 136.502572160024
Optimization terminated successfully (Exit mode 0)
Current function value: 136.50257215999056
Iterations: 11
Function evaluations: 82
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 19973655.134461902
Iteration: 2, Func. Count: 19, Neg. LLF: 146.69240460117717
Iteration: 3, Func. Count: 29, Neg. LLF: 134.7575373854665
Iteration: 4, Func. Count: 37, Neg. LLF: 135.18341348333442
Iteration: 5, Func. Count: 46, Neg. LLF: 141.6838320951772
Iteration: 6, Func. Count: 55, Neg. LLF: 134.89247081074228
Iteration: 7, Func. Count: 64, Neg. LLF: 134.49505892013673
Iteration: 8, Func. Count: 72, Neg. LLF: 134.49145462760984
Iteration: 9, Func. Count: 80, Neg. LLF: 134.49126353731168
Iteration: 10, Func. Count: 88, Neg. LLF: 134.49123974944027
Iteration: 11, Func. Count: 95, Neg. LLF: 134.4912397497523
Optimization terminated successfully (Exit mode 0)
Current function value: 134.49123974944027
Iterations: 11
Function evaluations: 95
Gradient evaluations: 11
Iteration: 1, Func. Count: 10, Neg. LLF: 680.6079872228892
Iteration: 2, Func. Count: 21, Neg. LLF: 142.66174770184213
Iteration: 3, Func. Count: 31, Neg. LLF: 137.21708619859152
Iteration: 4, Func. Count: 41, Neg. LLF: 137.88354860225354
Iteration: 5, Func. Count: 51, Neg. LLF: 134.71281543145093
Iteration: 6, Func. Count: 60, Neg. LLF: 134.7183237623188
Iteration: 7, Func. Count: 70, Neg. LLF: 134.7474561512707
Iteration: 8, Func. Count: 80, Neg. LLF: 134.58151144445014
Iteration: 9, Func. Count: 89, Neg. LLF: 134.60013569660825
Iteration: 10, Func. Count: 99, Neg. LLF: 134.55677863023627
Iteration: 11, Func. Count: 108, Neg. LLF: 134.55503084764797
Iteration: 12, Func. Count: 117, Neg. LLF: 134.55389140857403
Iteration: 13, Func. Count: 126, Neg. LLF: 134.55090593518477
Iteration: 14, Func. Count: 135, Neg. LLF: 134.54770561546567
Iteration: 15, Func. Count: 144, Neg. LLF: 134.54011075886018
Iteration: 16, Func. Count: 153, Neg. LLF: 134.49152440202943
Iteration: 17, Func. Count: 162, Neg. LLF: 134.49154759620853
Iteration: 18, Func. Count: 172, Neg. LLF: 134.49126745338393
Iteration: 19, Func. Count: 182, Neg. LLF: 134.49124013755298
Iteration: 20, Func. Count: 191, Neg. LLF: 134.4912401908241
Optimization terminated successfully (Exit mode 0)
Current function value: 134.49123957677364
Iterations: 20
Function evaluations: 192
Gradient evaluations: 20
Iteration: 1, Func. Count: 11, Neg. LLF: 1170.085061415186
Iteration: 2, Func. Count: 23, Neg. LLF: 139.61450043670743
Iteration: 3, Func. Count: 34, Neg. LLF: 137.32205315394688
Iteration: 4, Func. Count: 45, Neg. LLF: 138.36550770948298
Iteration: 5, Func. Count: 56, Neg. LLF: 135.0965231986708
Iteration: 6, Func. Count: 67, Neg. LLF: 134.69987323536628
Iteration: 7, Func. Count: 78, Neg. LLF: 134.7495729966913
Iteration: 8, Func. Count: 89, Neg. LLF: 134.57367597416666
Iteration: 9, Func. Count: 99, Neg. LLF: 134.56604912562574
Iteration: 10, Func. Count: 109, Neg. LLF: 134.56604142476405
Iteration: 11, Func. Count: 120, Neg. LLF: 134.5649501517219
Iteration: 12, Func. Count: 130, Neg. LLF: 134.56494741252297
Iteration: 13, Func. Count: 139, Neg. LLF: 134.56494741252337
Optimization terminated successfully (Exit mode 0)
Current function value: 134.56494741252297
Iterations: 13
Function evaluations: 139
Gradient evaluations: 13
Iteration: 1, Func. Count: 12, Neg. LLF: 2146.427257150907
Iteration: 2, Func. Count: 25, Neg. LLF: 139.00032698174186
Iteration: 3, Func. Count: 37, Neg. LLF: 137.79695953235387
Iteration: 4, Func. Count: 49, Neg. LLF: 138.11119251244244
Iteration: 5, Func. Count: 61, Neg. LLF: 134.72446677117955
Iteration: 6, Func. Count: 72, Neg. LLF: 134.71679444487572
Iteration: 7, Func. Count: 84, Neg. LLF: 134.73300583619897
Iteration: 8, Func. Count: 96, Neg. LLF: 134.64019379374403
Iteration: 9, Func. Count: 108, Neg. LLF: 134.57492929176547
Iteration: 10, Func. Count: 120, Neg. LLF: 134.56496700257398
Iteration: 11, Func. Count: 131, Neg. LLF: 134.56495078688636
Iteration: 12, Func. Count: 142, Neg. LLF: 134.56494830928784
Iteration: 13, Func. Count: 152, Neg. LLF: 134.56494831786398
Optimization terminated successfully (Exit mode 0)
Current function value: 134.56494830928784
Iterations: 13
Function evaluations: 152
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 138.53893857848067
Iteration: 2, Func. Count: 18, Neg. LLF: 137.99015849731637
Iteration: 3, Func. Count: 27, Neg. LLF: 136.85622554333318
Iteration: 4, Func. Count: 35, Neg. LLF: 139.2287857868529
Iteration: 5, Func. Count: 44, Neg. LLF: 137.26175118339899
Iteration: 6, Func. Count: 53, Neg. LLF: 136.54493103623125
Iteration: 7, Func. Count: 61, Neg. LLF: 136.546400556117
Iteration: 8, Func. Count: 70, Neg. LLF: 136.51319848360896
Iteration: 9, Func. Count: 78, Neg. LLF: 136.50493430650835
Iteration: 10, Func. Count: 86, Neg. LLF: 136.5027435061069
Iteration: 11, Func. Count: 94, Neg. LLF: 136.5025780246799
Iteration: 12, Func. Count: 102, Neg. LLF: 136.50257221681005
Iteration: 13, Func. Count: 109, Neg. LLF: 136.50257225684967
Optimization terminated successfully (Exit mode 0)
Current function value: 136.50257221681005
Iterations: 13
Function evaluations: 109
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 19969633.235566527
Iteration: 2, Func. Count: 21, Neg. LLF: 146.64574919209895
Iteration: 3, Func. Count: 32, Neg. LLF: 134.75758781744733
Iteration: 4, Func. Count: 41, Neg. LLF: 135.16284441562925
Iteration: 5, Func. Count: 51, Neg. LLF: 141.8177523248453
Iteration: 6, Func. Count: 61, Neg. LLF: 134.84981603820276
Iteration: 7, Func. Count: 71, Neg. LLF: 134.49558386903146
Iteration: 8, Func. Count: 80, Neg. LLF: 134.4914803553036
Iteration: 9, Func. Count: 89, Neg. LLF: 134.49129004370965
Iteration: 10, Func. Count: 98, Neg. LLF: 134.49123956497866
Iteration: 11, Func. Count: 106, Neg. LLF: 134.4912395652629
Optimization terminated successfully (Exit mode 0)
Current function value: 134.49123956497866
Iterations: 11
Function evaluations: 106
Gradient evaluations: 11
Iteration: 1, Func. Count: 11, Neg. LLF: 683.2990297190181
Iteration: 2, Func. Count: 23, Neg. LLF: 142.64745326270074
Iteration: 3, Func. Count: 34, Neg. LLF: 137.2147937721363
Iteration: 4, Func. Count: 45, Neg. LLF: 137.88667279895157
Iteration: 5, Func. Count: 56, Neg. LLF: 134.7113298978338
Iteration: 6, Func. Count: 66, Neg. LLF: 134.70862503356034
Iteration: 7, Func. Count: 77, Neg. LLF: 134.72922786180214
Iteration: 8, Func. Count: 88, Neg. LLF: 134.58074581053154
Iteration: 9, Func. Count: 98, Neg. LLF: 134.63003394105434
Iteration: 10, Func. Count: 109, Neg. LLF: 134.5561747992087
Iteration: 11, Func. Count: 119, Neg. LLF: 134.5550859899659
Iteration: 12, Func. Count: 129, Neg. LLF: 134.5529880325436
Iteration: 13, Func. Count: 139, Neg. LLF: 134.55018755859516
Iteration: 14, Func. Count: 149, Neg. LLF: 134.54669640857117
Iteration: 15, Func. Count: 159, Neg. LLF: 134.53049566195665
Iteration: 16, Func. Count: 169, Neg. LLF: 134.49141667787126
Iteration: 17, Func. Count: 179, Neg. LLF: 134.49130760068488
Iteration: 18, Func. Count: 189, Neg. LLF: 134.49124958981008
Iteration: 19, Func. Count: 199, Neg. LLF: 134.49124747641966
Iteration: 20, Func. Count: 210, Neg. LLF: 134.49123975930794
Optimization terminated successfully (Exit mode 0)
Current function value: 134.49123975930794
Iterations: 20
Function evaluations: 210
Gradient evaluations: 20
Iteration: 1, Func. Count: 12, Neg. LLF: 1178.2790180060192
Iteration: 2, Func. Count: 25, Neg. LLF: 139.59565321497584
Iteration: 3, Func. Count: 37, Neg. LLF: 137.36978654450675
Iteration: 4, Func. Count: 49, Neg. LLF: 138.43527528704954
Iteration: 5, Func. Count: 61, Neg. LLF: 135.00108476879467
Iteration: 6, Func. Count: 73, Neg. LLF: 134.7102363040977
Iteration: 7, Func. Count: 85, Neg. LLF: 134.7647575663473
Iteration: 8, Func. Count: 97, Neg. LLF: 134.57190439697604
Iteration: 9, Func. Count: 108, Neg. LLF: 134.56573048413105
Iteration: 10, Func. Count: 119, Neg. LLF: 134.56569330604032
Iteration: 11, Func. Count: 131, Neg. LLF: 134.56495105469534
Iteration: 12, Func. Count: 142, Neg. LLF: 134.56494744438527
Iteration: 13, Func. Count: 152, Neg. LLF: 134.56494744439792
Optimization terminated successfully (Exit mode 0)
Current function value: 134.56494744438527
Iterations: 13
Function evaluations: 152
Gradient evaluations: 13
Iteration: 1, Func. Count: 13, Neg. LLF: 2171.166128889394
Iteration: 2, Func. Count: 27, Neg. LLF: 139.02044247190713
Iteration: 3, Func. Count: 40, Neg. LLF: 137.82457230286502
Iteration: 4, Func. Count: 53, Neg. LLF: 138.14950196073806
Iteration: 5, Func. Count: 66, Neg. LLF: 134.72052531654816
Iteration: 6, Func. Count: 78, Neg. LLF: 134.73101657327396
Iteration: 7, Func. Count: 91, Neg. LLF: 134.74029193504984
Iteration: 8, Func. Count: 104, Neg. LLF: 134.6261899872017
Iteration: 9, Func. Count: 117, Neg. LLF: 134.5783374205207
Iteration: 10, Func. Count: 130, Neg. LLF: 134.56496401653902
Iteration: 11, Func. Count: 142, Neg. LLF: 134.5649508618131
Iteration: 12, Func. Count: 154, Neg. LLF: 134.56494848360455
Iteration: 13, Func. Count: 166, Neg. LLF: 134.56494770757075
Optimization terminated successfully (Exit mode 0)
Current function value: 134.56494770757075
Iterations: 13
Function evaluations: 166
Gradient evaluations: 13
Iteration: 1, Func. Count: 6, Neg. LLF: 138.6236371002753
Iteration: 2, Func. Count: 12, Neg. LLF: 138.10713909355124
Iteration: 3, Func. Count: 19, Neg. LLF: 136.5779533621712
Iteration: 4, Func. Count: 24, Neg. LLF: 138.43377956875557
Iteration: 5, Func. Count: 30, Neg. LLF: 136.4237254087809
Iteration: 6, Func. Count: 35, Neg. LLF: 136.40918966897007
Iteration: 7, Func. Count: 40, Neg. LLF: 136.40790852599355
Iteration: 8, Func. Count: 45, Neg. LLF: 136.4070383144382
Iteration: 9, Func. Count: 50, Neg. LLF: 136.40698754094186
Iteration: 10, Func. Count: 55, Neg. LLF: 136.40698466900983
Iteration: 11, Func. Count: 59, Neg. LLF: 136.40698466900315
Optimization terminated successfully (Exit mode 0)
Current function value: 136.40698466900983
Iterations: 11
Function evaluations: 59
Gradient evaluations: 11
Iteration: 1, Func. Count: 7, Neg. LLF: 20024569.057975966
Iteration: 2, Func. Count: 15, Neg. LLF: 142.10171680129548
Iteration: 3, Func. Count: 22, Neg. LLF: 138.16298097566118
Iteration: 4, Func. Count: 29, Neg. LLF: 137.19538963092452
Iteration: 5, Func. Count: 36, Neg. LLF: 139.03996907218618
Iteration: 6, Func. Count: 43, Neg. LLF: 136.33851201417826
Iteration: 7, Func. Count: 50, Neg. LLF: 135.15796206395603
Iteration: 8, Func. Count: 57, Neg. LLF: 134.6831089576861
Iteration: 9, Func. Count: 63, Neg. LLF: 134.85498374955912
Iteration: 10, Func. Count: 70, Neg. LLF: 134.67488531539556
Iteration: 11, Func. Count: 76, Neg. LLF: 134.6743853046366
Iteration: 12, Func. Count: 82, Neg. LLF: 134.67385370355464
Iteration: 13, Func. Count: 88, Neg. LLF: 134.67385207126816
Iteration: 14, Func. Count: 93, Neg. LLF: 134.67385207126733
Optimization terminated successfully (Exit mode 0)
Current function value: 134.67385207126816
Iterations: 14
Function evaluations: 93
Gradient evaluations: 14
Iteration: 1, Func. Count: 8, Neg. LLF: 689.8749766060793
Iteration: 2, Func. Count: 17, Neg. LLF: 163.2354988273394
Iteration: 3, Func. Count: 25, Neg. LLF: 136.27524755322924
Iteration: 4, Func. Count: 33, Neg. LLF: 134.64629887294458
Iteration: 5, Func. Count: 40, Neg. LLF: 134.65240711568308
Iteration: 6, Func. Count: 48, Neg. LLF: 134.6221204805788
Iteration: 7, Func. Count: 56, Neg. LLF: 134.62128161295888
Iteration: 8, Func. Count: 64, Neg. LLF: 134.61536029668292
Iteration: 9, Func. Count: 71, Neg. LLF: 134.61428032365012
Iteration: 10, Func. Count: 78, Neg. LLF: 134.6142298703708
Iteration: 11, Func. Count: 85, Neg. LLF: 134.61422587834053
Iteration: 12, Func. Count: 91, Neg. LLF: 134.61422587822156
Optimization terminated successfully (Exit mode 0)
Current function value: 134.61422587834053
Iterations: 12
Function evaluations: 91
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 1055.210083599666
Iteration: 2, Func. Count: 19, Neg. LLF: 154.47759642976587
Iteration: 3, Func. Count: 28, Neg. LLF: 136.12572207953528
Iteration: 4, Func. Count: 37, Neg. LLF: 134.94566737219824
Iteration: 5, Func. Count: 45, Neg. LLF: 134.6763090612755
Iteration: 6, Func. Count: 53, Neg. LLF: 134.89000837465076
Iteration: 7, Func. Count: 62, Neg. LLF: 134.59687753676906
Iteration: 8, Func. Count: 70, Neg. LLF: 134.5916898979831
Iteration: 9, Func. Count: 78, Neg. LLF: 134.59020855332227
Iteration: 10, Func. Count: 86, Neg. LLF: 134.58971707615498
Iteration: 11, Func. Count: 94, Neg. LLF: 134.58965652097697
Iteration: 12, Func. Count: 102, Neg. LLF: 134.58965263329225
Iteration: 13, Func. Count: 109, Neg. LLF: 134.5896526332397
Optimization terminated successfully (Exit mode 0)
Current function value: 134.58965263329225
Iterations: 13
Function evaluations: 109
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 1613.5506896975758
Iteration: 2, Func. Count: 20, Neg. LLF: 145.61907774111677
Iteration: 3, Func. Count: 30, Neg. LLF: 135.96875810566934
Iteration: 4, Func. Count: 40, Neg. LLF: 136.6677679418569
Iteration: 5, Func. Count: 50, Neg. LLF: 134.7054001000592
Iteration: 6, Func. Count: 59, Neg. LLF: 135.0323317305422
Iteration: 7, Func. Count: 69, Neg. LLF: 134.63268640081046
Iteration: 8, Func. Count: 78, Neg. LLF: 134.59472097307153
Iteration: 9, Func. Count: 87, Neg. LLF: 134.58989288565817
Iteration: 10, Func. Count: 96, Neg. LLF: 134.5900279900582
Iteration: 11, Func. Count: 106, Neg. LLF: 134.5896528094547
Iteration: 12, Func. Count: 114, Neg. LLF: 134.5896528131074
Optimization terminated successfully (Exit mode 0)
Current function value: 134.5896528094547
Iterations: 12
Function evaluations: 114
Gradient evaluations: 12
Iteration: 1, Func. Count: 7, Neg. LLF: 139.10644238633006
Iteration: 2, Func. Count: 14, Neg. LLF: 138.66491417701593
Iteration: 3, Func. Count: 21, Neg. LLF: 138.49714962365837
Iteration: 4, Func. Count: 29, Neg. LLF: 136.49960438331826
Iteration: 5, Func. Count: 35, Neg. LLF: 136.70201651951743
Iteration: 6, Func. Count: 42, Neg. LLF: 136.4240016282517
Iteration: 7, Func. Count: 48, Neg. LLF: 136.39499011545738
Iteration: 8, Func. Count: 54, Neg. LLF: 136.38924860178662
Iteration: 9, Func. Count: 60, Neg. LLF: 136.38435912145815
Iteration: 10, Func. Count: 66, Neg. LLF: 136.38256368144062
Iteration: 11, Func. Count: 72, Neg. LLF: 136.38202277644922
Iteration: 12, Func. Count: 78, Neg. LLF: 136.38201439345934
Iteration: 13, Func. Count: 83, Neg. LLF: 136.38201439346133
Optimization terminated successfully (Exit mode 0)
Current function value: 136.38201439345934
Iterations: 13
Function evaluations: 83
Gradient evaluations: 13
Iteration: 1, Func. Count: 8, Neg. LLF: 20187602.58388901
Iteration: 2, Func. Count: 17, Neg. LLF: 147.6539266006057
Iteration: 3, Func. Count: 26, Neg. LLF: 134.7573446761755
Iteration: 4, Func. Count: 33, Neg. LLF: 136.1407765048362
Iteration: 5, Func. Count: 41, Neg. LLF: 142.83933893745217
Iteration: 6, Func. Count: 49, Neg. LLF: 134.99622290185232
Iteration: 7, Func. Count: 57, Neg. LLF: 134.49935244965909
Iteration: 8, Func. Count: 64, Neg. LLF: 134.49198812526993
Iteration: 9, Func. Count: 71, Neg. LLF: 134.49138278677103
Iteration: 10, Func. Count: 78, Neg. LLF: 134.49127375592724
Iteration: 11, Func. Count: 85, Neg. LLF: 134.49124038608068
Iteration: 12, Func. Count: 92, Neg. LLF: 134.49123940661048
Optimization terminated successfully (Exit mode 0)
Current function value: 134.49123940661048
Iterations: 12
Function evaluations: 92
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 650.3139898972829
Iteration: 2, Func. Count: 19, Neg. LLF: 146.86076343298438
Iteration: 3, Func. Count: 28, Neg. LLF: 135.59925635738583
Iteration: 4, Func. Count: 37, Neg. LLF: 136.45998659190002
Iteration: 5, Func. Count: 46, Neg. LLF: 134.68088043492753
Iteration: 6, Func. Count: 54, Neg. LLF: 134.5901260543422
Iteration: 7, Func. Count: 62, Neg. LLF: 134.67648164581828
Iteration: 8, Func. Count: 71, Neg. LLF: 134.5658140650736
Iteration: 9, Func. Count: 79, Neg. LLF: 134.56265058553618
Iteration: 10, Func. Count: 87, Neg. LLF: 134.56259026805023
Iteration: 11, Func. Count: 95, Neg. LLF: 134.56257167485
Iteration: 12, Func. Count: 103, Neg. LLF: 134.56256986346992
Iteration: 13, Func. Count: 110, Neg. LLF: 134.56256986364517
Optimization terminated successfully (Exit mode 0)
Current function value: 134.56256986346992
Iterations: 13
Function evaluations: 110
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 962.7256361799666
Iteration: 2, Func. Count: 21, Neg. LLF: 141.9526771510359
Iteration: 3, Func. Count: 31, Neg. LLF: 134.98270885537025
Iteration: 4, Func. Count: 40, Neg. LLF: 135.49504286950975
Iteration: 5, Func. Count: 50, Neg. LLF: 138.4302381087434
Iteration: 6, Func. Count: 61, Neg. LLF: 134.588444423189
Iteration: 7, Func. Count: 70, Neg. LLF: 134.57501637334522
Iteration: 8, Func. Count: 79, Neg. LLF: 134.56829615497338
Iteration: 9, Func. Count: 88, Neg. LLF: 134.5655906035056
Iteration: 10, Func. Count: 97, Neg. LLF: 134.5650659249935
Iteration: 11, Func. Count: 106, Neg. LLF: 134.56496087295045
Iteration: 12, Func. Count: 115, Neg. LLF: 134.56495135734414
Iteration: 13, Func. Count: 124, Neg. LLF: 134.5649488948267
Iteration: 14, Func. Count: 133, Neg. LLF: 134.56494790259623
Optimization terminated successfully (Exit mode 0)
Current function value: 134.56494790259623
Iterations: 14
Function evaluations: 133
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 941.9569897742061
Iteration: 2, Func. Count: 23, Neg. LLF: 143.8447925658799
Iteration: 3, Func. Count: 34, Neg. LLF: 135.48982515788697
Iteration: 4, Func. Count: 45, Neg. LLF: 134.84542176914317
Iteration: 5, Func. Count: 55, Neg. LLF: 135.5496168483304
Iteration: 6, Func. Count: 66, Neg. LLF: 136.50268392450536
Iteration: 7, Func. Count: 77, Neg. LLF: 134.59268602569188
Iteration: 8, Func. Count: 87, Neg. LLF: 134.58975567723786
Iteration: 9, Func. Count: 97, Neg. LLF: 134.58536973500955
Iteration: 10, Func. Count: 107, Neg. LLF: 134.5765578132815
Iteration: 11, Func. Count: 117, Neg. LLF: 134.57434078534533
Iteration: 12, Func. Count: 128, Neg. LLF: 134.56941376511935
Iteration: 13, Func. Count: 139, Neg. LLF: 134.56586081408724
Iteration: 14, Func. Count: 149, Neg. LLF: 134.56500978203476
Iteration: 15, Func. Count: 159, Neg. LLF: 134.56495362192038
Iteration: 16, Func. Count: 169, Neg. LLF: 134.5649474547849
Iteration: 17, Func. Count: 178, Neg. LLF: 134.564947463372
Optimization terminated successfully (Exit mode 0)
Current function value: 134.5649474547849
Iterations: 17
Function evaluations: 178
Gradient evaluations: 17
Iteration: 1, Func. Count: 8, Neg. LLF: 140.7200235031825
Iteration: 2, Func. Count: 16, Neg. LLF: 139.87746897706882
Iteration: 3, Func. Count: 24, Neg. LLF: 137.50821890736728
Iteration: 4, Func. Count: 32, Neg. LLF: 136.28013698605702
Iteration: 5, Func. Count: 39, Neg. LLF: 136.08568250943546
Iteration: 6, Func. Count: 46, Neg. LLF: 136.08105673987956
Iteration: 7, Func. Count: 54, Neg. LLF: 136.05750070416008
Iteration: 8, Func. Count: 61, Neg. LLF: 136.05162949814937
Iteration: 9, Func. Count: 68, Neg. LLF: 136.0477066572896
Iteration: 10, Func. Count: 75, Neg. LLF: 136.0466999448894
Iteration: 11, Func. Count: 82, Neg. LLF: 136.04659526111905
Iteration: 12, Func. Count: 89, Neg. LLF: 136.04659080825064
Iteration: 13, Func. Count: 95, Neg. LLF: 136.04659078010266
Optimization terminated successfully (Exit mode 0)
Current function value: 136.04659080825064
Iterations: 13
Function evaluations: 95
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 20200405.77638304
Iteration: 2, Func. Count: 19, Neg. LLF: 180.28975645934267
Iteration: 3, Func. Count: 29, Neg. LLF: 134.62357719627283
Iteration: 4, Func. Count: 37, Neg. LLF: 134.574919273836
Iteration: 5, Func. Count: 45, Neg. LLF: 134.9510650537732
Iteration: 6, Func. Count: 54, Neg. LLF: 134.43883211837914
Iteration: 7, Func. Count: 63, Neg. LLF: 134.42646123484454
Iteration: 8, Func. Count: 72, Neg. LLF: 134.39476023985839
Iteration: 9, Func. Count: 80, Neg. LLF: 134.3947560793583
Iteration: 10, Func. Count: 88, Neg. LLF: 134.39475548555393
Optimization terminated successfully (Exit mode 0)
Current function value: 134.39475548555393
Iterations: 10
Function evaluations: 88
Gradient evaluations: 10
Iteration: 1, Func. Count: 10, Neg. LLF: 645.4233049854105
Iteration: 2, Func. Count: 21, Neg. LLF: 145.13639182096742
Iteration: 3, Func. Count: 31, Neg. LLF: 136.0109260655096
Iteration: 4, Func. Count: 41, Neg. LLF: 134.78703008115878
Iteration: 5, Func. Count: 50, Neg. LLF: 135.06563473613625
Iteration: 6, Func. Count: 60, Neg. LLF: 135.0098408985369
Iteration: 7, Func. Count: 70, Neg. LLF: 136.60898424622013
Iteration: 8, Func. Count: 80, Neg. LLF: 134.386369967753
Iteration: 9, Func. Count: 89, Neg. LLF: 134.38295049025825
Iteration: 10, Func. Count: 98, Neg. LLF: 134.3827486456013
Iteration: 11, Func. Count: 107, Neg. LLF: 134.38262982569506
Iteration: 12, Func. Count: 116, Neg. LLF: 134.38262434612096
Iteration: 13, Func. Count: 124, Neg. LLF: 134.38262434609018
Optimization terminated successfully (Exit mode 0)
Current function value: 134.38262434612096
Iterations: 13
Function evaluations: 124
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 948.4289767117986
Iteration: 2, Func. Count: 23, Neg. LLF: 141.70820871151034
Iteration: 3, Func. Count: 34, Neg. LLF: 135.04757124904916
Iteration: 4, Func. Count: 44, Neg. LLF: 134.9724788450777
Iteration: 5, Func. Count: 55, Neg. LLF: 149.60382575546694
Iteration: 6, Func. Count: 66, Neg. LLF: 134.91533080919456
Iteration: 7, Func. Count: 77, Neg. LLF: 134.4489809319815
Iteration: 8, Func. Count: 87, Neg. LLF: 134.42428978988872
Iteration: 9, Func. Count: 97, Neg. LLF: 134.39521923172043
Iteration: 10, Func. Count: 107, Neg. LLF: 134.38463559137455
Iteration: 11, Func. Count: 117, Neg. LLF: 134.3837554741957
Iteration: 12, Func. Count: 127, Neg. LLF: 134.38284784405957
Iteration: 13, Func. Count: 137, Neg. LLF: 134.38264955956623
Iteration: 14, Func. Count: 147, Neg. LLF: 134.3826284935088
Iteration: 15, Func. Count: 157, Neg. LLF: 134.38262426225722
Iteration: 16, Func. Count: 166, Neg. LLF: 134.38262429735772
Optimization terminated successfully (Exit mode 0)
Current function value: 134.38262426225722
Iterations: 16
Function evaluations: 166
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 1367.6456438301884
Iteration: 2, Func. Count: 25, Neg. LLF: 139.5811580531777
Iteration: 3, Func. Count: 37, Neg. LLF: 134.72970098387827
Iteration: 4, Func. Count: 48, Neg. LLF: 134.45125031638233
Iteration: 5, Func. Count: 59, Neg. LLF: 134.70425593816898
Iteration: 6, Func. Count: 71, Neg. LLF: 135.63142864578273
Iteration: 7, Func. Count: 83, Neg. LLF: 134.62654995813574
Iteration: 8, Func. Count: 95, Neg. LLF: 134.38727205987973
Iteration: 9, Func. Count: 106, Neg. LLF: 134.3841910418277
Iteration: 10, Func. Count: 117, Neg. LLF: 134.38275929769085
Iteration: 11, Func. Count: 128, Neg. LLF: 134.382626238103
Iteration: 12, Func. Count: 139, Neg. LLF: 134.38262395188377
Iteration: 13, Func. Count: 149, Neg. LLF: 134.38262395476977
Optimization terminated successfully (Exit mode 0)
Current function value: 134.38262395188377
Iterations: 13
Function evaluations: 149
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 141.91169213097808
Iteration: 2, Func. Count: 19, Neg. LLF: 140.54104159313843
Iteration: 3, Func. Count: 29, Neg. LLF: 136.15048879413393
Iteration: 4, Func. Count: 37, Neg. LLF: 136.29639099172303
Iteration: 5, Func. Count: 46, Neg. LLF: 136.30115682980917
Iteration: 6, Func. Count: 55, Neg. LLF: 136.04373918666917
Iteration: 7, Func. Count: 64, Neg. LLF: 136.01551403772598
Iteration: 8, Func. Count: 72, Neg. LLF: 136.00973735501785
Iteration: 9, Func. Count: 80, Neg. LLF: 136.00774486925488
Iteration: 10, Func. Count: 88, Neg. LLF: 136.00664265110572
Iteration: 11, Func. Count: 96, Neg. LLF: 136.00656940486354
Iteration: 12, Func. Count: 104, Neg. LLF: 136.00656551916492
Iteration: 13, Func. Count: 111, Neg. LLF: 136.0065655191701
Optimization terminated successfully (Exit mode 0)
Current function value: 136.00656551916492
Iterations: 13
Function evaluations: 111
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 20223062.32747178
Iteration: 2, Func. Count: 21, Neg. LLF: 181.02742645004804
Iteration: 3, Func. Count: 32, Neg. LLF: 134.62441208718255
Iteration: 4, Func. Count: 41, Neg. LLF: 134.5659687299892
Iteration: 5, Func. Count: 50, Neg. LLF: 135.0061956332292
Iteration: 6, Func. Count: 60, Neg. LLF: 134.42702016067653
Iteration: 7, Func. Count: 70, Neg. LLF: 134.4307558262275
Iteration: 8, Func. Count: 80, Neg. LLF: 134.39476056505669
Iteration: 9, Func. Count: 89, Neg. LLF: 134.39475582025466
Iteration: 10, Func. Count: 97, Neg. LLF: 134.39475582028763
Optimization terminated successfully (Exit mode 0)
Current function value: 134.39475582025466
Iterations: 10
Function evaluations: 97
Gradient evaluations: 10
Iteration: 1, Func. Count: 11, Neg. LLF: 650.2978253738569
Iteration: 2, Func. Count: 23, Neg. LLF: 145.3354595983147
Iteration: 3, Func. Count: 34, Neg. LLF: 135.96059355548115
Iteration: 4, Func. Count: 45, Neg. LLF: 134.78627757415924
Iteration: 5, Func. Count: 55, Neg. LLF: 135.07938895057023
Iteration: 6, Func. Count: 66, Neg. LLF: 134.9705417207372
Iteration: 7, Func. Count: 77, Neg. LLF: 137.06894218588508
Iteration: 8, Func. Count: 88, Neg. LLF: 134.38660522830259
Iteration: 9, Func. Count: 98, Neg. LLF: 134.3830968512409
Iteration: 10, Func. Count: 108, Neg. LLF: 134.3828122460596
Iteration: 11, Func. Count: 118, Neg. LLF: 134.38262638135888
Iteration: 12, Func. Count: 128, Neg. LLF: 134.38262409221127
Iteration: 13, Func. Count: 137, Neg. LLF: 134.38262409226647
Optimization terminated successfully (Exit mode 0)
Current function value: 134.38262409221127
Iterations: 13
Function evaluations: 137
Gradient evaluations: 13
Iteration: 1, Func. Count: 12, Neg. LLF: 956.7075749155691
Iteration: 2, Func. Count: 25, Neg. LLF: 141.8934261789715
Iteration: 3, Func. Count: 37, Neg. LLF: 134.99770358548255
Iteration: 4, Func. Count: 48, Neg. LLF: 134.99286891767196
Iteration: 5, Func. Count: 60, Neg. LLF: 144.69134036412865
Iteration: 6, Func. Count: 72, Neg. LLF: 134.88265601928248
Iteration: 7, Func. Count: 84, Neg. LLF: 134.5294080762374
Iteration: 8, Func. Count: 96, Neg. LLF: 134.3969233147186
Iteration: 9, Func. Count: 107, Neg. LLF: 134.39035024123663
Iteration: 10, Func. Count: 118, Neg. LLF: 134.38391571481765
Iteration: 11, Func. Count: 129, Neg. LLF: 134.3831833613083
Iteration: 12, Func. Count: 140, Neg. LLF: 134.38279689473296
Iteration: 13, Func. Count: 151, Neg. LLF: 134.38266124011398
Iteration: 14, Func. Count: 162, Neg. LLF: 134.38263147673376
Iteration: 15, Func. Count: 173, Neg. LLF: 134.38262678785298
Iteration: 16, Func. Count: 184, Neg. LLF: 134.38262390925289
Iteration: 17, Func. Count: 194, Neg. LLF: 134.382623944139
Optimization terminated successfully (Exit mode 0)
Current function value: 134.38262390925289
Iterations: 17
Function evaluations: 194
Gradient evaluations: 17
Iteration: 1, Func. Count: 13, Neg. LLF: 1386.3441286068607
Iteration: 2, Func. Count: 26, Neg. LLF: 141.98271744026792
Iteration: 3, Func. Count: 40, Neg. LLF: 135.69594739572943
Iteration: 4, Func. Count: 53, Neg. LLF: 135.41496882945648
Iteration: 5, Func. Count: 66, Neg. LLF: 135.3835880794314
Iteration: 6, Func. Count: 79, Neg. LLF: 134.60600857369695
Iteration: 7, Func. Count: 91, Neg. LLF: 138.27364136314736
Iteration: 8, Func. Count: 104, Neg. LLF: 134.955586406291
Iteration: 9, Func. Count: 117, Neg. LLF: 134.50093697755196
Iteration: 10, Func. Count: 130, Neg. LLF: 134.39917065070057
Iteration: 11, Func. Count: 142, Neg. LLF: 134.3850668396451
Iteration: 12, Func. Count: 154, Neg. LLF: 134.38292152825127
Iteration: 13, Func. Count: 166, Neg. LLF: 134.38265921854207
Iteration: 14, Func. Count: 178, Neg. LLF: 134.38262886711112
Iteration: 15, Func. Count: 190, Neg. LLF: 134.38262409739843
Iteration: 16, Func. Count: 201, Neg. LLF: 134.38262410031837
Optimization terminated successfully (Exit mode 0)
Current function value: 134.38262409739843
Iterations: 16
Function evaluations: 201
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 141.8271318519663
Iteration: 2, Func. Count: 21, Neg. LLF: 140.21540965204593
Iteration: 3, Func. Count: 32, Neg. LLF: 136.2268210102481
Iteration: 4, Func. Count: 41, Neg. LLF: 136.65701271663147
Iteration: 5, Func. Count: 51, Neg. LLF: 136.69370869610896
Iteration: 6, Func. Count: 61, Neg. LLF: 136.04591842386827
Iteration: 7, Func. Count: 71, Neg. LLF: 136.01778754880095
Iteration: 8, Func. Count: 80, Neg. LLF: 136.01101736942977
Iteration: 9, Func. Count: 89, Neg. LLF: 136.0073644447165
Iteration: 10, Func. Count: 98, Neg. LLF: 136.00672379184007
Iteration: 11, Func. Count: 107, Neg. LLF: 136.00657465338034
Iteration: 12, Func. Count: 116, Neg. LLF: 136.00656593031877
Iteration: 13, Func. Count: 124, Neg. LLF: 136.00656596336893
Optimization terminated successfully (Exit mode 0)
Current function value: 136.00656593031877
Iterations: 13
Function evaluations: 124
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 20220661.363160837
Iteration: 2, Func. Count: 23, Neg. LLF: 180.80909235727208
Iteration: 3, Func. Count: 35, Neg. LLF: 134.62370069265057
Iteration: 4, Func. Count: 45, Neg. LLF: 134.5776065676882
Iteration: 5, Func. Count: 55, Neg. LLF: 134.9390958737381
Iteration: 6, Func. Count: 66, Neg. LLF: 134.4414270952089
Iteration: 7, Func. Count: 77, Neg. LLF: 134.43141649542252
Iteration: 8, Func. Count: 88, Neg. LLF: 134.39476091512074
Iteration: 9, Func. Count: 98, Neg. LLF: 134.39475599369405
Iteration: 10, Func. Count: 108, Neg. LLF: 134.39475545434283
Optimization terminated successfully (Exit mode 0)
Current function value: 134.39475545434283
Iterations: 10
Function evaluations: 108
Gradient evaluations: 10
Iteration: 1, Func. Count: 12, Neg. LLF: 650.9691882050589
Iteration: 2, Func. Count: 25, Neg. LLF: 145.35512932406013
Iteration: 3, Func. Count: 37, Neg. LLF: 135.96482714074438
Iteration: 4, Func. Count: 49, Neg. LLF: 134.78326010250476
Iteration: 5, Func. Count: 60, Neg. LLF: 135.08456384679607
Iteration: 6, Func. Count: 72, Neg. LLF: 134.9782900797233
Iteration: 7, Func. Count: 84, Neg. LLF: 137.06742969802383
Iteration: 8, Func. Count: 96, Neg. LLF: 134.38659635067154
Iteration: 9, Func. Count: 107, Neg. LLF: 134.38306494978295
Iteration: 10, Func. Count: 118, Neg. LLF: 134.38279902967764
Iteration: 11, Func. Count: 129, Neg. LLF: 134.38262666510428
Iteration: 12, Func. Count: 140, Neg. LLF: 134.3826240867658
Iteration: 13, Func. Count: 150, Neg. LLF: 134.38262408679992
Optimization terminated successfully (Exit mode 0)
Current function value: 134.3826240867658
Iterations: 13
Function evaluations: 150
Gradient evaluations: 13
Iteration: 1, Func. Count: 13, Neg. LLF: 959.9258021156458
Iteration: 2, Func. Count: 27, Neg. LLF: 141.93677795189316
Iteration: 3, Func. Count: 40, Neg. LLF: 135.00580414201485
Iteration: 4, Func. Count: 52, Neg. LLF: 134.97655562993407
Iteration: 5, Func. Count: 65, Neg. LLF: 145.48538647859976
Iteration: 6, Func. Count: 78, Neg. LLF: 134.90417989802015
Iteration: 7, Func. Count: 91, Neg. LLF: 134.48784532836373
Iteration: 8, Func. Count: 103, Neg. LLF: 134.40795662969253
Iteration: 9, Func. Count: 115, Neg. LLF: 134.39762624625996
Iteration: 10, Func. Count: 127, Neg. LLF: 134.38350706538057
Iteration: 11, Func. Count: 139, Neg. LLF: 134.38332445927682
Iteration: 12, Func. Count: 152, Neg. LLF: 134.38269250036382
Iteration: 13, Func. Count: 164, Neg. LLF: 134.38263145707523
Iteration: 14, Func. Count: 176, Neg. LLF: 134.3826260741993
Iteration: 15, Func. Count: 188, Neg. LLF: 134.38262397597325
Iteration: 16, Func. Count: 199, Neg. LLF: 134.3826240109811
Optimization terminated successfully (Exit mode 0)
Current function value: 134.38262397597325
Iterations: 16
Function evaluations: 199
Gradient evaluations: 16
Iteration: 1, Func. Count: 14, Neg. LLF: 1395.638930124239
Iteration: 2, Func. Count: 28, Neg. LLF: 141.8849967847708
Iteration: 3, Func. Count: 43, Neg. LLF: 135.7553280828283
Iteration: 4, Func. Count: 57, Neg. LLF: 135.4466768463673
Iteration: 5, Func. Count: 71, Neg. LLF: 135.46588323788265
Iteration: 6, Func. Count: 85, Neg. LLF: 134.60253346329048
Iteration: 7, Func. Count: 98, Neg. LLF: 136.57719000817747
Iteration: 8, Func. Count: 112, Neg. LLF: 134.8983799751694
Iteration: 9, Func. Count: 126, Neg. LLF: 134.56653664751985
Iteration: 10, Func. Count: 140, Neg. LLF: 134.3912090441581
Iteration: 11, Func. Count: 153, Neg. LLF: 134.38414910299423
Iteration: 12, Func. Count: 166, Neg. LLF: 134.3827802974545
Iteration: 13, Func. Count: 179, Neg. LLF: 134.38262864744271
Iteration: 14, Func. Count: 192, Neg. LLF: 134.3826240565483
Iteration: 15, Func. Count: 204, Neg. LLF: 134.38262405962828
Optimization terminated successfully (Exit mode 0)
Current function value: 134.3826240565483
Iterations: 15
Function evaluations: 204
Gradient evaluations: 15
Iteration: 1, Func. Count: 7, Neg. LLF: 137.59015866947223
Iteration: 2, Func. Count: 14, Neg. LLF: 139.55698850572395
Iteration: 3, Func. Count: 21, Neg. LLF: 135.76940150031103
Iteration: 4, Func. Count: 28, Neg. LLF: 135.28454291764618
Iteration: 5, Func. Count: 34, Neg. LLF: 135.35830173649924
Iteration: 6, Func. Count: 41, Neg. LLF: 135.35626041456533
Iteration: 7, Func. Count: 48, Neg. LLF: 135.27362213987192
Iteration: 8, Func. Count: 54, Neg. LLF: 135.27358632519412
Iteration: 9, Func. Count: 60, Neg. LLF: 135.27357155944384
Iteration: 10, Func. Count: 66, Neg. LLF: 135.27355846693965
Iteration: 11, Func. Count: 72, Neg. LLF: 135.2735566158258
Iteration: 12, Func. Count: 77, Neg. LLF: 135.27355661585807
Optimization terminated successfully (Exit mode 0)
Current function value: 135.2735566158258
Iterations: 12
Function evaluations: 77
Gradient evaluations: 12
Iteration: 1, Func. Count: 8, Neg. LLF: 518.0994830427402
Iteration: 2, Func. Count: 17, Neg. LLF: 151.84688158628416
Iteration: 3, Func. Count: 25, Neg. LLF: 136.92695590185667
Iteration: 4, Func. Count: 33, Neg. LLF: 135.10255259378556
Iteration: 5, Func. Count: 40, Neg. LLF: 135.88903828895695
Iteration: 6, Func. Count: 48, Neg. LLF: 136.76839274761315
Iteration: 7, Func. Count: 56, Neg. LLF: 136.85201674888103
Iteration: 8, Func. Count: 64, Neg. LLF: 134.8740520606099
Iteration: 9, Func. Count: 71, Neg. LLF: 138.8838218001818
Iteration: 10, Func. Count: 80, Neg. LLF: 137.3510960427395
Iteration: 11, Func. Count: 88, Neg. LLF: 134.69020473505725
Iteration: 12, Func. Count: 95, Neg. LLF: 134.6785118731608
Iteration: 13, Func. Count: 102, Neg. LLF: 134.67409162790543
Iteration: 14, Func. Count: 109, Neg. LLF: 134.67386510383292
Iteration: 15, Func. Count: 116, Neg. LLF: 134.67385217173506
Iteration: 16, Func. Count: 122, Neg. LLF: 134.67385217092715
Optimization terminated successfully (Exit mode 0)
Current function value: 134.67385217173506
Iterations: 16
Function evaluations: 122
Gradient evaluations: 16
Iteration: 1, Func. Count: 9, Neg. LLF: 908.4526778262485
Iteration: 2, Func. Count: 19, Neg. LLF: 169.47944635012246
Iteration: 3, Func. Count: 28, Neg. LLF: 136.2942304039588
Iteration: 4, Func. Count: 37, Neg. LLF: 134.99008316692556
Iteration: 5, Func. Count: 46, Neg. LLF: 134.69513339217724
Iteration: 6, Func. Count: 54, Neg. LLF: 134.62546528201796
Iteration: 7, Func. Count: 62, Neg. LLF: 134.82011927275923
Iteration: 8, Func. Count: 72, Neg. LLF: 134.6172134865538
Iteration: 9, Func. Count: 80, Neg. LLF: 134.6148698072563
Iteration: 10, Func. Count: 88, Neg. LLF: 134.61428766717768
Iteration: 11, Func. Count: 96, Neg. LLF: 134.61422619791156
Iteration: 12, Func. Count: 103, Neg. LLF: 134.61422619808317
Optimization terminated successfully (Exit mode 0)
Current function value: 134.61422619791156
Iterations: 12
Function evaluations: 103
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 1603.250562389805
Iteration: 2, Func. Count: 20, Neg. LLF: 673068.0772906544
Iteration: 3, Func. Count: 30, Neg. LLF: 134.79062734156417
Iteration: 4, Func. Count: 39, Neg. LLF: 138.0185371256926
Iteration: 5, Func. Count: 49, Neg. LLF: 136.10472944891458
Iteration: 6, Func. Count: 59, Neg. LLF: 134.86954882138033
Iteration: 7, Func. Count: 69, Neg. LLF: 134.69759526890186
Iteration: 8, Func. Count: 79, Neg. LLF: 134.6144614982016
Iteration: 9, Func. Count: 88, Neg. LLF: 134.61286434321596
Iteration: 10, Func. Count: 97, Neg. LLF: 134.6118028016835
Iteration: 11, Func. Count: 106, Neg. LLF: 134.61127184348103
Iteration: 12, Func. Count: 115, Neg. LLF: 134.61125645175716
Iteration: 13, Func. Count: 124, Neg. LLF: 134.61125329278013
Iteration: 14, Func. Count: 132, Neg. LLF: 134.61125329281217
Optimization terminated successfully (Exit mode 0)
Current function value: 134.61125329278013
Iterations: 14
Function evaluations: 132
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 3532.6616049990184
Iteration: 2, Func. Count: 22, Neg. LLF: 370.0098002681818
Iteration: 3, Func. Count: 33, Neg. LLF: 135.11977470776915
Iteration: 4, Func. Count: 44, Neg. LLF: 136.37233393822495
Iteration: 5, Func. Count: 55, Neg. LLF: 134.48475622127378
Iteration: 6, Func. Count: 65, Neg. LLF: 134.4943445831944
Iteration: 7, Func. Count: 76, Neg. LLF: 134.68646845527894
Iteration: 8, Func. Count: 87, Neg. LLF: 134.31699672952794
Iteration: 9, Func. Count: 97, Neg. LLF: 134.30502884666132
Iteration: 10, Func. Count: 107, Neg. LLF: 134.30483955860984
Iteration: 11, Func. Count: 117, Neg. LLF: 134.30475179525868
Iteration: 12, Func. Count: 127, Neg. LLF: 134.3047420488386
Iteration: 13, Func. Count: 136, Neg. LLF: 134.3047420487942
Optimization terminated successfully (Exit mode 0)
Current function value: 134.3047420488386
Iterations: 13
Function evaluations: 136
Gradient evaluations: 13
Iteration: 1, Func. Count: 8, Neg. LLF: 139.44483394507134
Iteration: 2, Func. Count: 16, Neg. LLF: 141.64610701323713
Iteration: 3, Func. Count: 24, Neg. LLF: 135.53109453751122
Iteration: 4, Func. Count: 31, Neg. LLF: 145.83694324309297
Iteration: 5, Func. Count: 39, Neg. LLF: 135.4879379173716
Iteration: 6, Func. Count: 47, Neg. LLF: 135.50026772410266
Iteration: 7, Func. Count: 55, Neg. LLF: 135.2789866877333
Iteration: 8, Func. Count: 63, Neg. LLF: 135.3021730188077
Iteration: 9, Func. Count: 71, Neg. LLF: 135.25203315301133
Iteration: 10, Func. Count: 78, Neg. LLF: 135.25195014277745
Iteration: 11, Func. Count: 85, Neg. LLF: 135.251872709495
Iteration: 12, Func. Count: 92, Neg. LLF: 135.25183026975262
Iteration: 13, Func. Count: 99, Neg. LLF: 135.2518222404927
Iteration: 14, Func. Count: 105, Neg. LLF: 135.25182224051997
Optimization terminated successfully (Exit mode 0)
Current function value: 135.2518222404927
Iterations: 14
Function evaluations: 105
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 496.9190075742138
Iteration: 2, Func. Count: 19, Neg. LLF: 153.84330304661543
Iteration: 3, Func. Count: 28, Neg. LLF: 137.09151937644833
Iteration: 4, Func. Count: 37, Neg. LLF: 135.15856490094058
Iteration: 5, Func. Count: 45, Neg. LLF: 134.7036072571894
Iteration: 6, Func. Count: 53, Neg. LLF: 134.66672999709448
Iteration: 7, Func. Count: 61, Neg. LLF: 134.78959598628234
Iteration: 8, Func. Count: 70, Neg. LLF: 134.71755172209217
Iteration: 9, Func. Count: 79, Neg. LLF: 134.5976501072408
Iteration: 10, Func. Count: 88, Neg. LLF: 134.49153883095107
Iteration: 11, Func. Count: 96, Neg. LLF: 134.49124124053324
Iteration: 12, Func. Count: 104, Neg. LLF: 134.49123939834305
Iteration: 13, Func. Count: 111, Neg. LLF: 134.49123939855292
Optimization terminated successfully (Exit mode 0)
Current function value: 134.49123939834305
Iterations: 13
Function evaluations: 111
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 845.4979038803336
Iteration: 2, Func. Count: 21, Neg. LLF: 150.4385592654553
Iteration: 3, Func. Count: 31, Neg. LLF: 135.66985420090975
Iteration: 4, Func. Count: 41, Neg. LLF: 135.45924677690678
Iteration: 5, Func. Count: 51, Neg. LLF: 134.70251535265658
Iteration: 6, Func. Count: 60, Neg. LLF: 135.00304515148227
Iteration: 7, Func. Count: 70, Neg. LLF: 134.71029034542593
Iteration: 8, Func. Count: 80, Neg. LLF: 134.56463641103826
Iteration: 9, Func. Count: 89, Neg. LLF: 134.56275451625262
Iteration: 10, Func. Count: 98, Neg. LLF: 134.5627039838696
Iteration: 11, Func. Count: 108, Neg. LLF: 134.5625695285726
Iteration: 12, Func. Count: 116, Neg. LLF: 134.56256952864237
Optimization terminated successfully (Exit mode 0)
Current function value: 134.5625695285726
Iterations: 12
Function evaluations: 116
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 1413.030211031145
Iteration: 2, Func. Count: 22, Neg. LLF: 193.47119722814205
Iteration: 3, Func. Count: 33, Neg. LLF: 135.23468130367942
Iteration: 4, Func. Count: 44, Neg. LLF: 135.73044943387606
Iteration: 5, Func. Count: 55, Neg. LLF: 135.16907571987775
Iteration: 6, Func. Count: 66, Neg. LLF: 134.8523061276196
Iteration: 7, Func. Count: 77, Neg. LLF: 134.72983007962978
Iteration: 8, Func. Count: 88, Neg. LLF: 134.57039878344042
Iteration: 9, Func. Count: 98, Neg. LLF: 134.71943749284833
Iteration: 10, Func. Count: 109, Neg. LLF: 134.53756542613115
Iteration: 11, Func. Count: 119, Neg. LLF: 134.52224260348552
Iteration: 12, Func. Count: 129, Neg. LLF: 134.50139909939625
Iteration: 13, Func. Count: 139, Neg. LLF: 134.48597599833755
Iteration: 14, Func. Count: 149, Neg. LLF: 134.48089428130893
Iteration: 15, Func. Count: 159, Neg. LLF: 134.4765165438922
Iteration: 16, Func. Count: 169, Neg. LLF: 134.47631351305768
Iteration: 17, Func. Count: 179, Neg. LLF: 134.47632789525852
Iteration: 18, Func. Count: 190, Neg. LLF: 134.47626173268068
Iteration: 19, Func. Count: 200, Neg. LLF: 134.47626095233207
Optimization terminated successfully (Exit mode 0)
Current function value: 134.47626095233207
Iterations: 19
Function evaluations: 200
Gradient evaluations: 19
Iteration: 1, Func. Count: 12, Neg. LLF: 1425.6262068768403
Iteration: 2, Func. Count: 24, Neg. LLF: 187.98204486683863
Iteration: 3, Func. Count: 36, Neg. LLF: 137.07598616585642
Iteration: 4, Func. Count: 48, Neg. LLF: 135.82932731981467
Iteration: 5, Func. Count: 60, Neg. LLF: 134.60015352672517
Iteration: 6, Func. Count: 71, Neg. LLF: 134.3317287725382
Iteration: 7, Func. Count: 82, Neg. LLF: 134.39509441758614
Iteration: 8, Func. Count: 94, Neg. LLF: 134.1842695477112
Iteration: 9, Func. Count: 105, Neg. LLF: 134.15925953192237
Iteration: 10, Func. Count: 116, Neg. LLF: 134.15298781076666
Iteration: 11, Func. Count: 127, Neg. LLF: 134.15242608208675
Iteration: 12, Func. Count: 138, Neg. LLF: 134.15240085229303
Iteration: 13, Func. Count: 148, Neg. LLF: 134.1524008524137
Optimization terminated successfully (Exit mode 0)
Current function value: 134.15240085229303
Iterations: 13
Function evaluations: 148
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 138.9801413626654
Iteration: 2, Func. Count: 18, Neg. LLF: 144.13146285375046
Iteration: 3, Func. Count: 27, Neg. LLF: 135.18030025366443
Iteration: 4, Func. Count: 35, Neg. LLF: 135.8745488365527
Iteration: 5, Func. Count: 44, Neg. LLF: 137.34473673685886
Iteration: 6, Func. Count: 53, Neg. LLF: 135.7456906062389
Iteration: 7, Func. Count: 62, Neg. LLF: 135.00274692561058
Iteration: 8, Func. Count: 71, Neg. LLF: 134.9869402740923
Iteration: 9, Func. Count: 79, Neg. LLF: 134.98657083644585
Iteration: 10, Func. Count: 87, Neg. LLF: 134.98636503267429
Iteration: 11, Func. Count: 95, Neg. LLF: 134.9862298393265
Iteration: 12, Func. Count: 103, Neg. LLF: 134.98621287445923
Iteration: 13, Func. Count: 111, Neg. LLF: 134.98621198169923
Optimization terminated successfully (Exit mode 0)
Current function value: 134.98621198169923
Iterations: 13
Function evaluations: 111
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 495.0765900329413
Iteration: 2, Func. Count: 21, Neg. LLF: 152.35365208106344
Iteration: 3, Func. Count: 31, Neg. LLF: 137.2407725486873
Iteration: 4, Func. Count: 41, Neg. LLF: 135.0081324172428
Iteration: 5, Func. Count: 50, Neg. LLF: 134.5723510554291
Iteration: 6, Func. Count: 59, Neg. LLF: 134.45815951128375
Iteration: 7, Func. Count: 68, Neg. LLF: 135.17610499843806
Iteration: 8, Func. Count: 78, Neg. LLF: 134.44829781085076
Iteration: 9, Func. Count: 88, Neg. LLF: 134.39938761629895
Iteration: 10, Func. Count: 98, Neg. LLF: 134.39723380414333
Iteration: 11, Func. Count: 108, Neg. LLF: 134.39475551832317
Optimization terminated successfully (Exit mode 0)
Current function value: 134.39475551832317
Iterations: 11
Function evaluations: 108
Gradient evaluations: 11
Iteration: 1, Func. Count: 11, Neg. LLF: 832.3549978082154
Iteration: 2, Func. Count: 23, Neg. LLF: 148.40821305571328
Iteration: 3, Func. Count: 34, Neg. LLF: 134.89637176215086
Iteration: 4, Func. Count: 44, Neg. LLF: 135.2834778562353
Iteration: 5, Func. Count: 55, Neg. LLF: 135.3534334808597
Iteration: 6, Func. Count: 66, Neg. LLF: 135.40572050870497
Iteration: 7, Func. Count: 77, Neg. LLF: 134.42547894239183
Iteration: 8, Func. Count: 87, Neg. LLF: 134.3963226541001
Iteration: 9, Func. Count: 97, Neg. LLF: 134.3913757320467
Iteration: 10, Func. Count: 107, Neg. LLF: 134.382823157232
Iteration: 11, Func. Count: 117, Neg. LLF: 134.38264863954836
Iteration: 12, Func. Count: 127, Neg. LLF: 134.38262717421003
Iteration: 13, Func. Count: 137, Neg. LLF: 134.38262399925358
Iteration: 14, Func. Count: 146, Neg. LLF: 134.3826239992306
Optimization terminated successfully (Exit mode 0)
Current function value: 134.38262399925358
Iterations: 14
Function evaluations: 146
Gradient evaluations: 14
Iteration: 1, Func. Count: 12, Neg. LLF: 1369.6966154628128
Iteration: 2, Func. Count: 25, Neg. LLF: 144.32852484842505
Iteration: 3, Func. Count: 37, Neg. LLF: 135.16555147840586
Iteration: 4, Func. Count: 49, Neg. LLF: 134.73824858998643
Iteration: 5, Func. Count: 60, Neg. LLF: 134.95038611556842
Iteration: 6, Func. Count: 72, Neg. LLF: 134.8466014646463
Iteration: 7, Func. Count: 84, Neg. LLF: 134.57119580402863
Iteration: 8, Func. Count: 96, Neg. LLF: 134.49587245342892
Iteration: 9, Func. Count: 107, Neg. LLF: 134.50007631616194
Iteration: 10, Func. Count: 119, Neg. LLF: 134.4390779116705
Iteration: 11, Func. Count: 130, Neg. LLF: 134.3698330306435
Iteration: 12, Func. Count: 141, Neg. LLF: 134.23592263672958
Iteration: 13, Func. Count: 152, Neg. LLF: 134.50710174593584
Iteration: 14, Func. Count: 164, Neg. LLF: 134.1908055908495
Iteration: 15, Func. Count: 175, Neg. LLF: 134.17400146927383
Iteration: 16, Func. Count: 186, Neg. LLF: 134.16585865016813
Iteration: 17, Func. Count: 197, Neg. LLF: 134.1658731733141
Iteration: 18, Func. Count: 209, Neg. LLF: 134.16550035270794
Iteration: 19, Func. Count: 220, Neg. LLF: 134.16549894958695
Iteration: 20, Func. Count: 230, Neg. LLF: 134.16549894958754
Optimization terminated successfully (Exit mode 0)
Current function value: 134.16549894958695
Iterations: 20
Function evaluations: 230
Gradient evaluations: 20
Iteration: 1, Func. Count: 13, Neg. LLF: 2537.43443435191
Iteration: 2, Func. Count: 26, Neg. LLF: 165.94500135125693
Iteration: 3, Func. Count: 39, Neg. LLF: 135.1888988480383
Iteration: 4, Func. Count: 52, Neg. LLF: 136.21293000811227
Iteration: 5, Func. Count: 65, Neg. LLF: 134.41825666357246
Iteration: 6, Func. Count: 77, Neg. LLF: 134.4184803720835
Iteration: 7, Func. Count: 90, Neg. LLF: 137.04816385197407
Iteration: 8, Func. Count: 103, Neg. LLF: 134.16100017039963
Iteration: 9, Func. Count: 115, Neg. LLF: 134.04573758019043
Iteration: 10, Func. Count: 127, Neg. LLF: 134.02901079003718
Iteration: 11, Func. Count: 139, Neg. LLF: 134.03093532919272
Iteration: 12, Func. Count: 152, Neg. LLF: 134.02483530164992
Iteration: 13, Func. Count: 164, Neg. LLF: 134.02460186919055
Iteration: 14, Func. Count: 176, Neg. LLF: 134.0245844601443
Iteration: 15, Func. Count: 188, Neg. LLF: 134.0245758842466
Iteration: 16, Func. Count: 199, Neg. LLF: 134.02457588425344
Optimization terminated successfully (Exit mode 0)
Current function value: 134.0245758842466
Iterations: 16
Function evaluations: 199
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 141.79183178945226
Iteration: 2, Func. Count: 20, Neg. LLF: 142.54737102178618
Iteration: 3, Func. Count: 30, Neg. LLF: 136.16491615842165
Iteration: 4, Func. Count: 40, Neg. LLF: 135.19399559891127
Iteration: 5, Func. Count: 50, Neg. LLF: 134.89439458761726
Iteration: 6, Func. Count: 60, Neg. LLF: 135.58789464056258
Iteration: 7, Func. Count: 70, Neg. LLF: 135.18119666088816
Iteration: 8, Func. Count: 80, Neg. LLF: 134.76904720393338
Iteration: 9, Func. Count: 89, Neg. LLF: 134.75292896736318
Iteration: 10, Func. Count: 98, Neg. LLF: 134.75139841809016
Iteration: 11, Func. Count: 107, Neg. LLF: 134.75119504850332
Iteration: 12, Func. Count: 116, Neg. LLF: 134.75110294352424
Iteration: 13, Func. Count: 125, Neg. LLF: 134.75105778076937
Iteration: 14, Func. Count: 134, Neg. LLF: 134.751032990078
Iteration: 15, Func. Count: 143, Neg. LLF: 134.7510298590283
Iteration: 16, Func. Count: 151, Neg. LLF: 134.75102985902188
Optimization terminated successfully (Exit mode 0)
Current function value: 134.7510298590283
Iterations: 16
Function evaluations: 151
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 496.9103299414425
Iteration: 2, Func. Count: 23, Neg. LLF: 155.70372541968626
Iteration: 3, Func. Count: 35, Neg. LLF: 135.28109118867394
Iteration: 4, Func. Count: 45, Neg. LLF: 135.03313547665212
Iteration: 5, Func. Count: 56, Neg. LLF: 136.3508142251726
Iteration: 6, Func. Count: 68, Neg. LLF: 134.50431754112012
Iteration: 7, Func. Count: 78, Neg. LLF: 134.4991779404669
Iteration: 8, Func. Count: 89, Neg. LLF: 134.4559532483718
Iteration: 9, Func. Count: 100, Neg. LLF: 134.36940541881705
Iteration: 10, Func. Count: 110, Neg. LLF: 134.36207344993224
Iteration: 11, Func. Count: 120, Neg. LLF: 134.36085131272125
Iteration: 12, Func. Count: 130, Neg. LLF: 134.36065543047272
Iteration: 13, Func. Count: 140, Neg. LLF: 134.36064555108652
Iteration: 14, Func. Count: 150, Neg. LLF: 134.36064347006405
Iteration: 15, Func. Count: 159, Neg. LLF: 134.36064347025572
Optimization terminated successfully (Exit mode 0)
Current function value: 134.36064347006405
Iterations: 15
Function evaluations: 159
Gradient evaluations: 15
Iteration: 1, Func. Count: 12, Neg. LLF: 835.6200691236292
Iteration: 2, Func. Count: 25, Neg. LLF: 155.56662065819285
Iteration: 3, Func. Count: 37, Neg. LLF: 137.0557323238683
Iteration: 4, Func. Count: 49, Neg. LLF: 135.20586831107624
Iteration: 5, Func. Count: 61, Neg. LLF: 134.9195779730885
Iteration: 6, Func. Count: 73, Neg. LLF: 134.4365684192448
Iteration: 7, Func. Count: 84, Neg. LLF: 134.3828221166048
Iteration: 8, Func. Count: 95, Neg. LLF: 134.35898719492096
Iteration: 9, Func. Count: 106, Neg. LLF: 134.34436683354346
Iteration: 10, Func. Count: 117, Neg. LLF: 134.33852553112933
Iteration: 11, Func. Count: 128, Neg. LLF: 134.33588540231227
Iteration: 12, Func. Count: 139, Neg. LLF: 134.33557902104178
Iteration: 13, Func. Count: 150, Neg. LLF: 134.3355417452594
Iteration: 14, Func. Count: 161, Neg. LLF: 134.33549870181196
Iteration: 15, Func. Count: 171, Neg. LLF: 134.33549870182492
Optimization terminated successfully (Exit mode 0)
Current function value: 134.33549870181196
Iterations: 15
Function evaluations: 171
Gradient evaluations: 15
Iteration: 1, Func. Count: 13, Neg. LLF: 1374.123253783293
Iteration: 2, Func. Count: 26, Neg. LLF: 186.26243115372114
Iteration: 3, Func. Count: 39, Neg. LLF: 138.770299806806
Iteration: 4, Func. Count: 52, Neg. LLF: 134.35907474288283
Iteration: 5, Func. Count: 64, Neg. LLF: 134.74732788810297
Iteration: 6, Func. Count: 77, Neg. LLF: 151.4937212396691
Iteration: 7, Func. Count: 90, Neg. LLF: 135.32985866315713
Iteration: 8, Func. Count: 103, Neg. LLF: 134.4252018430977
Iteration: 9, Func. Count: 116, Neg. LLF: 133.87899759095467
Iteration: 10, Func. Count: 128, Neg. LLF: 133.86347793741626
Iteration: 11, Func. Count: 140, Neg. LLF: 133.8511706650034
Iteration: 12, Func. Count: 152, Neg. LLF: 133.84751347757347
Iteration: 13, Func. Count: 164, Neg. LLF: 133.84475414827833
Iteration: 14, Func. Count: 176, Neg. LLF: 133.84378110051236
Iteration: 15, Func. Count: 188, Neg. LLF: 133.8433470982688
Iteration: 16, Func. Count: 200, Neg. LLF: 133.84316113444717
Iteration: 17, Func. Count: 212, Neg. LLF: 133.84315662264248
Iteration: 18, Func. Count: 224, Neg. LLF: 133.84315464530266
Iteration: 19, Func. Count: 235, Neg. LLF: 133.8431546452858
Optimization terminated successfully (Exit mode 0)
Current function value: 133.84315464530266
Iterations: 19
Function evaluations: 235
Gradient evaluations: 19
Iteration: 1, Func. Count: 14, Neg. LLF: 2561.9430117589413
Iteration: 2, Func. Count: 28, Neg. LLF: 172.2455530226696
Iteration: 3, Func. Count: 42, Neg. LLF: 141.42747911310047
Iteration: 4, Func. Count: 56, Neg. LLF: 134.4552434961523
Iteration: 5, Func. Count: 69, Neg. LLF: 135.42560643896076
Iteration: 6, Func. Count: 83, Neg. LLF: 134.21545539753336
Iteration: 7, Func. Count: 96, Neg. LLF: 137.50258657169056
Iteration: 8, Func. Count: 110, Neg. LLF: 134.0977353730381
Iteration: 9, Func. Count: 124, Neg. LLF: 133.85057342192098
Iteration: 10, Func. Count: 137, Neg. LLF: 133.7615145085409
Iteration: 11, Func. Count: 150, Neg. LLF: 133.7457291057788
Iteration: 12, Func. Count: 163, Neg. LLF: 133.74166733349293
Iteration: 13, Func. Count: 176, Neg. LLF: 133.73695360369462
Iteration: 14, Func. Count: 189, Neg. LLF: 133.73655549528632
Iteration: 15, Func. Count: 202, Neg. LLF: 133.73647111073888
Iteration: 16, Func. Count: 215, Neg. LLF: 133.73645623306052
Iteration: 17, Func. Count: 227, Neg. LLF: 133.73645623299785
Optimization terminated successfully (Exit mode 0)
Current function value: 133.73645623306052
Iterations: 17
Function evaluations: 227
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 142.1506088999971
Iteration: 2, Func. Count: 22, Neg. LLF: 142.26950516489975
Iteration: 3, Func. Count: 33, Neg. LLF: 136.95026879051628
Iteration: 4, Func. Count: 44, Neg. LLF: 135.5536949397199
Iteration: 5, Func. Count: 55, Neg. LLF: 135.05763659069657
Iteration: 6, Func. Count: 66, Neg. LLF: 135.55737014748817
Iteration: 7, Func. Count: 77, Neg. LLF: 135.1403508685107
Iteration: 8, Func. Count: 88, Neg. LLF: 134.77294356941397
Iteration: 9, Func. Count: 98, Neg. LLF: 134.7520163183987
Iteration: 10, Func. Count: 108, Neg. LLF: 134.75145158909768
Iteration: 11, Func. Count: 118, Neg. LLF: 134.75120051684945
Iteration: 12, Func. Count: 128, Neg. LLF: 134.75109743386702
Iteration: 13, Func. Count: 138, Neg. LLF: 134.7510546993619
Iteration: 14, Func. Count: 148, Neg. LLF: 134.75103153341445
Iteration: 15, Func. Count: 158, Neg. LLF: 134.751029760486
Iteration: 16, Func. Count: 167, Neg. LLF: 134.75102979533668
Optimization terminated successfully (Exit mode 0)
Current function value: 134.751029760486
Iterations: 16
Function evaluations: 167
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 497.3601171590524
Iteration: 2, Func. Count: 25, Neg. LLF: 155.7446044178108
Iteration: 3, Func. Count: 38, Neg. LLF: 135.28923776948486
Iteration: 4, Func. Count: 49, Neg. LLF: 135.0261565086625
Iteration: 5, Func. Count: 61, Neg. LLF: 136.31222073403882
Iteration: 6, Func. Count: 74, Neg. LLF: 134.50094810466874
Iteration: 7, Func. Count: 85, Neg. LLF: 134.50100965053107
Iteration: 8, Func. Count: 97, Neg. LLF: 134.4484111167649
Iteration: 9, Func. Count: 109, Neg. LLF: 134.36946560128078
Iteration: 10, Func. Count: 120, Neg. LLF: 134.3620479882024
Iteration: 11, Func. Count: 131, Neg. LLF: 134.3608219414209
Iteration: 12, Func. Count: 142, Neg. LLF: 134.36065760619852
Iteration: 13, Func. Count: 153, Neg. LLF: 134.36064568417817
Iteration: 14, Func. Count: 164, Neg. LLF: 134.36064349558606
Iteration: 15, Func. Count: 174, Neg. LLF: 134.36064349578155
Optimization terminated successfully (Exit mode 0)
Current function value: 134.36064349558606
Iterations: 15
Function evaluations: 174
Gradient evaluations: 15
Iteration: 1, Func. Count: 13, Neg. LLF: 835.8798408071134
Iteration: 2, Func. Count: 27, Neg. LLF: 155.58860549078895
Iteration: 3, Func. Count: 40, Neg. LLF: 137.0747662138141
Iteration: 4, Func. Count: 53, Neg. LLF: 135.1878931336727
Iteration: 5, Func. Count: 66, Neg. LLF: 134.94739733361058
Iteration: 6, Func. Count: 79, Neg. LLF: 134.43978674633456
Iteration: 7, Func. Count: 91, Neg. LLF: 134.3886190689401
Iteration: 8, Func. Count: 103, Neg. LLF: 134.362399799442
Iteration: 9, Func. Count: 115, Neg. LLF: 134.345891172448
Iteration: 10, Func. Count: 127, Neg. LLF: 134.3396625677217
Iteration: 11, Func. Count: 139, Neg. LLF: 134.33630493845192
Iteration: 12, Func. Count: 151, Neg. LLF: 134.33599619539277
Iteration: 13, Func. Count: 163, Neg. LLF: 134.33550754999195
Iteration: 14, Func. Count: 175, Neg. LLF: 134.3354991071941
Iteration: 15, Func. Count: 187, Neg. LLF: 134.3354986364451
Optimization terminated successfully (Exit mode 0)
Current function value: 134.3354986364451
Iterations: 15
Function evaluations: 187
Gradient evaluations: 15
Iteration: 1, Func. Count: 14, Neg. LLF: 1379.993538364295
Iteration: 2, Func. Count: 28, Neg. LLF: 186.20191995410482
Iteration: 3, Func. Count: 42, Neg. LLF: 138.75880730679185
Iteration: 4, Func. Count: 56, Neg. LLF: 134.35945241436136
Iteration: 5, Func. Count: 69, Neg. LLF: 134.806875300267
Iteration: 6, Func. Count: 83, Neg. LLF: 150.8297035645926
Iteration: 7, Func. Count: 97, Neg. LLF: 135.50613747084466
Iteration: 8, Func. Count: 111, Neg. LLF: 134.40496422900736
Iteration: 9, Func. Count: 125, Neg. LLF: 133.8777524734262
Iteration: 10, Func. Count: 138, Neg. LLF: 133.8654515229729
Iteration: 11, Func. Count: 151, Neg. LLF: 133.8520984693054
Iteration: 12, Func. Count: 164, Neg. LLF: 133.8458782005782
Iteration: 13, Func. Count: 177, Neg. LLF: 133.84459835233474
Iteration: 14, Func. Count: 190, Neg. LLF: 133.84365764731743
Iteration: 15, Func. Count: 203, Neg. LLF: 133.84320367665697
Iteration: 16, Func. Count: 216, Neg. LLF: 133.84315933917426
Iteration: 17, Func. Count: 229, Neg. LLF: 133.84315547102122
Iteration: 18, Func. Count: 242, Neg. LLF: 133.84315462725758
Optimization terminated successfully (Exit mode 0)
Current function value: 133.84315462725758
Iterations: 18
Function evaluations: 242
Gradient evaluations: 18
Iteration: 1, Func. Count: 15, Neg. LLF: 2591.065425227115
Iteration: 2, Func. Count: 30, Neg. LLF: 172.3388629962089
Iteration: 3, Func. Count: 45, Neg. LLF: 141.46876243698648
Iteration: 4, Func. Count: 60, Neg. LLF: 134.448475637741
Iteration: 5, Func. Count: 74, Neg. LLF: 135.44990121278002
Iteration: 6, Func. Count: 90, Neg. LLF: 133.89012539596115
Iteration: 7, Func. Count: 104, Neg. LLF: 136.39689483920176
Iteration: 8, Func. Count: 119, Neg. LLF: 133.78795173263723
Iteration: 9, Func. Count: 133, Neg. LLF: 133.74532639064705
Iteration: 10, Func. Count: 147, Neg. LLF: 133.73930871461508
Iteration: 11, Func. Count: 161, Neg. LLF: 133.73693257638547
Iteration: 12, Func. Count: 175, Neg. LLF: 133.73653899124747
Iteration: 13, Func. Count: 189, Neg. LLF: 133.73645862657963
Iteration: 14, Func. Count: 203, Neg. LLF: 133.7364561385141
Iteration: 15, Func. Count: 216, Neg. LLF: 133.73645613844943
Optimization terminated successfully (Exit mode 0)
Current function value: 133.7364561385141
Iterations: 15
Function evaluations: 216
Gradient evaluations: 15
Iteration: 1, Func. Count: 8, Neg. LLF: 138.76193183291332
Iteration: 2, Func. Count: 16, Neg. LLF: 149.65452242822576
Iteration: 3, Func. Count: 24, Neg. LLF: 135.6460978432199
Iteration: 4, Func. Count: 32, Neg. LLF: 135.3971949739026
Iteration: 5, Func. Count: 39, Neg. LLF: 135.28369572340816
Iteration: 6, Func. Count: 46, Neg. LLF: 135.6846413757475
Iteration: 7, Func. Count: 55, Neg. LLF: 135.27892343481116
Iteration: 8, Func. Count: 62, Neg. LLF: 135.27375639253964
Iteration: 9, Func. Count: 69, Neg. LLF: 135.2752164187392
Iteration: 10, Func. Count: 77, Neg. LLF: 135.27332379737962
Iteration: 11, Func. Count: 84, Neg. LLF: 135.27331959677915
Iteration: 12, Func. Count: 91, Neg. LLF: 135.27331647343942
Iteration: 13, Func. Count: 98, Neg. LLF: 135.27331422255617
Iteration: 14, Func. Count: 104, Neg. LLF: 135.27331422255406
Optimization terminated successfully (Exit mode 0)
Current function value: 135.27331422255617
Iterations: 14
Function evaluations: 104
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 539.418473155808
Iteration: 2, Func. Count: 19, Neg. LLF: 172.4268368359687
Iteration: 3, Func. Count: 28, Neg. LLF: 136.78149885665576
Iteration: 4, Func. Count: 37, Neg. LLF: 141.73508566342164
Iteration: 5, Func. Count: 46, Neg. LLF: 134.99805223208804
Iteration: 6, Func. Count: 54, Neg. LLF: 134.77406476622428
Iteration: 7, Func. Count: 62, Neg. LLF: 137.14342822830722
Iteration: 8, Func. Count: 71, Neg. LLF: 134.72121138218242
Iteration: 9, Func. Count: 79, Neg. LLF: 134.69005191829547
Iteration: 10, Func. Count: 87, Neg. LLF: 134.6766781644938
Iteration: 11, Func. Count: 95, Neg. LLF: 134.67443507367972
Iteration: 12, Func. Count: 103, Neg. LLF: 134.6738546823578
Iteration: 13, Func. Count: 111, Neg. LLF: 134.6738520830977
Iteration: 14, Func. Count: 118, Neg. LLF: 134.67385208346016
Optimization terminated successfully (Exit mode 0)
Current function value: 134.6738520830977
Iterations: 14
Function evaluations: 118
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 933.2695417914795
Iteration: 2, Func. Count: 21, Neg. LLF: 156.84543361038286
Iteration: 3, Func. Count: 31, Neg. LLF: 136.45218187243384
Iteration: 4, Func. Count: 41, Neg. LLF: 135.0837930432909
Iteration: 5, Func. Count: 51, Neg. LLF: 134.91490243473837
Iteration: 6, Func. Count: 61, Neg. LLF: 134.649665649191
Iteration: 7, Func. Count: 70, Neg. LLF: 134.90419955275593
Iteration: 8, Func. Count: 81, Neg. LLF: 134.619027128554
Iteration: 9, Func. Count: 90, Neg. LLF: 134.61498836078687
Iteration: 10, Func. Count: 99, Neg. LLF: 134.61459821840708
Iteration: 11, Func. Count: 108, Neg. LLF: 134.61422948120045
Iteration: 12, Func. Count: 117, Neg. LLF: 134.6142259605047
Iteration: 13, Func. Count: 125, Neg. LLF: 134.61422596058662
Optimization terminated successfully (Exit mode 0)
Current function value: 134.6142259605047
Iterations: 13
Function evaluations: 125
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 1745.3833626838416
Iteration: 2, Func. Count: 22, Neg. LLF: 239.34953394304736
Iteration: 3, Func. Count: 33, Neg. LLF: 134.81144751614497
Iteration: 4, Func. Count: 43, Neg. LLF: 135.88393612429059
Iteration: 5, Func. Count: 54, Neg. LLF: 135.00896487661802
Iteration: 6, Func. Count: 65, Neg. LLF: 137.02558325000086
Iteration: 7, Func. Count: 76, Neg. LLF: 134.74929363669236
Iteration: 8, Func. Count: 87, Neg. LLF: 134.6155056594978
Iteration: 9, Func. Count: 97, Neg. LLF: 134.61355547978826
Iteration: 10, Func. Count: 107, Neg. LLF: 134.61153869894972
Iteration: 11, Func. Count: 117, Neg. LLF: 134.61131578318012
Iteration: 12, Func. Count: 127, Neg. LLF: 134.6112609771039
Iteration: 13, Func. Count: 137, Neg. LLF: 134.61125479063418
Iteration: 14, Func. Count: 147, Neg. LLF: 134.61125308628206
Iteration: 15, Func. Count: 156, Neg. LLF: 134.61125308627587
Optimization terminated successfully (Exit mode 0)
Current function value: 134.61125308628206
Iterations: 15
Function evaluations: 156
Gradient evaluations: 15
Iteration: 1, Func. Count: 12, Neg. LLF: 4667.380732478493
Iteration: 2, Func. Count: 24, Neg. LLF: 36543.88041090473
Iteration: 3, Func. Count: 36, Neg. LLF: 135.6785683072165
Iteration: 4, Func. Count: 48, Neg. LLF: 135.31564483088806
Iteration: 5, Func. Count: 60, Neg. LLF: 134.5938522694352
Iteration: 6, Func. Count: 71, Neg. LLF: 135.3328849675995
Iteration: 7, Func. Count: 83, Neg. LLF: 134.66646719978027
Iteration: 8, Func. Count: 95, Neg. LLF: 135.00280692687042
Iteration: 9, Func. Count: 107, Neg. LLF: 134.3558654995301
Iteration: 10, Func. Count: 118, Neg. LLF: 134.30745501257738
Iteration: 11, Func. Count: 129, Neg. LLF: 134.30635391894464
Iteration: 12, Func. Count: 140, Neg. LLF: 134.30487398592564
Iteration: 13, Func. Count: 151, Neg. LLF: 134.3047972250958
Iteration: 14, Func. Count: 162, Neg. LLF: 134.30474467965166
Iteration: 15, Func. Count: 173, Neg. LLF: 134.30474241086765
Iteration: 16, Func. Count: 183, Neg. LLF: 134.30474241086554
Optimization terminated successfully (Exit mode 0)
Current function value: 134.30474241086765
Iterations: 16
Function evaluations: 183
Gradient evaluations: 16
Iteration: 1, Func. Count: 9, Neg. LLF: 140.63245750343216
Iteration: 2, Func. Count: 18, Neg. LLF: 145.9945179125493
Iteration: 3, Func. Count: 27, Neg. LLF: 135.52051600091326
Iteration: 4, Func. Count: 35, Neg. LLF: 146.0315312858392
Iteration: 5, Func. Count: 44, Neg. LLF: 135.49991070667704
Iteration: 6, Func. Count: 53, Neg. LLF: 135.59846293358888
Iteration: 7, Func. Count: 62, Neg. LLF: 135.27225128607452
Iteration: 8, Func. Count: 71, Neg. LLF: 135.2918670350051
Iteration: 9, Func. Count: 80, Neg. LLF: 135.25209824279534
Iteration: 10, Func. Count: 88, Neg. LLF: 135.2519204317019
Iteration: 11, Func. Count: 96, Neg. LLF: 135.25188530543238
Iteration: 12, Func. Count: 104, Neg. LLF: 135.25182796655275
Iteration: 13, Func. Count: 112, Neg. LLF: 135.25182229112772
Iteration: 14, Func. Count: 120, Neg. LLF: 135.25182174891097
Optimization terminated successfully (Exit mode 0)
Current function value: 135.25182174891097
Iterations: 14
Function evaluations: 120
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 20614013.851142798
Iteration: 2, Func. Count: 21, Neg. LLF: 151.88498389532583
Iteration: 3, Func. Count: 32, Neg. LLF: 134.79787968754738
Iteration: 4, Func. Count: 41, Neg. LLF: 138.00475577741508
Iteration: 5, Func. Count: 51, Neg. LLF: 137.62632710567578
Iteration: 6, Func. Count: 61, Neg. LLF: 135.10818854873554
Iteration: 7, Func. Count: 71, Neg. LLF: 134.5488396508226
Iteration: 8, Func. Count: 81, Neg. LLF: 134.49675564738075
Iteration: 9, Func. Count: 91, Neg. LLF: 134.49124120888212
Iteration: 10, Func. Count: 100, Neg. LLF: 134.491239813552
Iteration: 11, Func. Count: 108, Neg. LLF: 134.4912398134391
Optimization terminated successfully (Exit mode 0)
Current function value: 134.491239813552
Iterations: 11
Function evaluations: 108
Gradient evaluations: 11
Iteration: 1, Func. Count: 11, Neg. LLF: 877.3964681810372
Iteration: 2, Func. Count: 23, Neg. LLF: 156.62919744078064
Iteration: 3, Func. Count: 34, Neg. LLF: 135.82214059273457
Iteration: 4, Func. Count: 45, Neg. LLF: 136.06911616597657
Iteration: 5, Func. Count: 56, Neg. LLF: 135.04552102311612
Iteration: 6, Func. Count: 67, Neg. LLF: 134.80393586789953
Iteration: 7, Func. Count: 77, Neg. LLF: 135.75347163032822
Iteration: 8, Func. Count: 88, Neg. LLF: 134.6511287368267
Iteration: 9, Func. Count: 98, Neg. LLF: 134.5723884781893
Iteration: 10, Func. Count: 108, Neg. LLF: 134.56530060530906
Iteration: 11, Func. Count: 118, Neg. LLF: 134.56340087118053
Iteration: 12, Func. Count: 128, Neg. LLF: 134.56258856995308
Iteration: 13, Func. Count: 138, Neg. LLF: 134.56256907095425
Iteration: 14, Func. Count: 147, Neg. LLF: 134.5625690708465
Optimization terminated successfully (Exit mode 0)
Current function value: 134.56256907095425
Iterations: 14
Function evaluations: 147
Gradient evaluations: 14
Iteration: 1, Func. Count: 12, Neg. LLF: 1539.869299052813
Iteration: 2, Func. Count: 24, Neg. LLF: 288.2963982304742
Iteration: 3, Func. Count: 36, Neg. LLF: 135.67693469512668
Iteration: 4, Func. Count: 48, Neg. LLF: 136.11735522232516
Iteration: 5, Func. Count: 60, Neg. LLF: 135.76010997817139
Iteration: 6, Func. Count: 72, Neg. LLF: 134.73982248821997
Iteration: 7, Func. Count: 83, Neg. LLF: 134.7714854465193
Iteration: 8, Func. Count: 95, Neg. LLF: 135.94026787450244
Iteration: 9, Func. Count: 107, Neg. LLF: 134.72433560886412
Iteration: 10, Func. Count: 119, Neg. LLF: 134.5703920552851
Iteration: 11, Func. Count: 130, Neg. LLF: 134.5424335681361
Iteration: 12, Func. Count: 141, Neg. LLF: 134.52245788514426
Iteration: 13, Func. Count: 152, Neg. LLF: 134.502487423842
Iteration: 14, Func. Count: 163, Neg. LLF: 134.49815957147447
Iteration: 15, Func. Count: 174, Neg. LLF: 134.48440588058645
Iteration: 16, Func. Count: 185, Neg. LLF: 134.47896239420263
Iteration: 17, Func. Count: 196, Neg. LLF: 134.47741805724672
Iteration: 18, Func. Count: 207, Neg. LLF: 134.4764827322937
Iteration: 19, Func. Count: 218, Neg. LLF: 134.4762816208505
Iteration: 20, Func. Count: 229, Neg. LLF: 134.47626297397485
Iteration: 21, Func. Count: 240, Neg. LLF: 134.47626102332237
Iteration: 22, Func. Count: 250, Neg. LLF: 134.47626102325816
Optimization terminated successfully (Exit mode 0)
Current function value: 134.47626102332237
Iterations: 22
Function evaluations: 250
Gradient evaluations: 22
Iteration: 1, Func. Count: 13, Neg. LLF: 1021.9821274146608
Iteration: 2, Func. Count: 26, Neg. LLF: 179.54874964963665
Iteration: 3, Func. Count: 39, Neg. LLF: 142.80942283453484
Iteration: 4, Func. Count: 52, Neg. LLF: 136.19909348818265
Iteration: 5, Func. Count: 65, Neg. LLF: 134.50697388252448
Iteration: 6, Func. Count: 77, Neg. LLF: 134.2922129259182
Iteration: 7, Func. Count: 89, Neg. LLF: 134.634596425451
Iteration: 8, Func. Count: 102, Neg. LLF: 134.67786397247303
Iteration: 9, Func. Count: 115, Neg. LLF: 134.17049288398752
Iteration: 10, Func. Count: 127, Neg. LLF: 134.15372412609412
Iteration: 11, Func. Count: 139, Neg. LLF: 134.15256764565737
Iteration: 12, Func. Count: 151, Neg. LLF: 134.15240336831246
Iteration: 13, Func. Count: 163, Neg. LLF: 134.15240056603733
Iteration: 14, Func. Count: 174, Neg. LLF: 134.15240056604225
Optimization terminated successfully (Exit mode 0)
Current function value: 134.15240056603733
Iterations: 14
Function evaluations: 174
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 139.5489379954687
Iteration: 2, Func. Count: 20, Neg. LLF: 144.79293720766728
Iteration: 3, Func. Count: 30, Neg. LLF: 135.13319959485264
Iteration: 4, Func. Count: 39, Neg. LLF: 135.17229618362373
Iteration: 5, Func. Count: 49, Neg. LLF: 137.0397603827646
Iteration: 6, Func. Count: 59, Neg. LLF: 135.52239871915708
Iteration: 7, Func. Count: 69, Neg. LLF: 134.99020040068018
Iteration: 8, Func. Count: 78, Neg. LLF: 134.9877028063236
Iteration: 9, Func. Count: 87, Neg. LLF: 134.98781191541352
Iteration: 10, Func. Count: 97, Neg. LLF: 134.98641865402934
Iteration: 11, Func. Count: 106, Neg. LLF: 134.98633222522955
Iteration: 12, Func. Count: 115, Neg. LLF: 134.98621153719517
Iteration: 13, Func. Count: 123, Neg. LLF: 134.98621150216312
Optimization terminated successfully (Exit mode 0)
Current function value: 134.98621153719517
Iterations: 13
Function evaluations: 123
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 20640496.75813261
Iteration: 2, Func. Count: 23, Neg. LLF: 200.23983901230125
Iteration: 3, Func. Count: 35, Neg. LLF: 134.63729593812576
Iteration: 4, Func. Count: 45, Neg. LLF: 134.58632468242686
Iteration: 5, Func. Count: 55, Neg. LLF: 135.15959104661675
Iteration: 6, Func. Count: 66, Neg. LLF: 134.40594177350619
Iteration: 7, Func. Count: 76, Neg. LLF: 134.39565922931956
Iteration: 8, Func. Count: 86, Neg. LLF: 134.40511322136874
Iteration: 9, Func. Count: 97, Neg. LLF: 134.39477786794012
Iteration: 10, Func. Count: 107, Neg. LLF: 134.3947564206754
Iteration: 11, Func. Count: 117, Neg. LLF: 134.39475546295145
Optimization terminated successfully (Exit mode 0)
Current function value: 134.39475546295145
Iterations: 11
Function evaluations: 117
Gradient evaluations: 11
Iteration: 1, Func. Count: 12, Neg. LLF: 859.695449806614
Iteration: 2, Func. Count: 25, Neg. LLF: 155.8791476862489
Iteration: 3, Func. Count: 37, Neg. LLF: 134.71434021071732
Iteration: 4, Func. Count: 48, Neg. LLF: 135.318029558402
Iteration: 5, Func. Count: 60, Neg. LLF: 135.33419735467646
Iteration: 6, Func. Count: 72, Neg. LLF: 134.97323434309743
Iteration: 7, Func. Count: 84, Neg. LLF: 134.43828263305278
Iteration: 8, Func. Count: 95, Neg. LLF: 134.46588042440092
Iteration: 9, Func. Count: 107, Neg. LLF: 134.5182942857434
Iteration: 10, Func. Count: 119, Neg. LLF: 134.38339946650981
Iteration: 11, Func. Count: 130, Neg. LLF: 134.3827173598715
Iteration: 12, Func. Count: 141, Neg. LLF: 134.38263026757892
Iteration: 13, Func. Count: 152, Neg. LLF: 134.38262436246382
Iteration: 14, Func. Count: 162, Neg. LLF: 134.38262436259825
Optimization terminated successfully (Exit mode 0)
Current function value: 134.38262436246382
Iterations: 14
Function evaluations: 162
Gradient evaluations: 14
Iteration: 1, Func. Count: 13, Neg. LLF: 1482.3146275231586
Iteration: 2, Func. Count: 26, Neg. LLF: 167.54168990049214
Iteration: 3, Func. Count: 39, Neg. LLF: 135.346824668688
Iteration: 4, Func. Count: 52, Neg. LLF: 136.8108995806709
Iteration: 5, Func. Count: 65, Neg. LLF: 135.40387744950047
Iteration: 6, Func. Count: 78, Neg. LLF: 134.77801742074357
Iteration: 7, Func. Count: 91, Neg. LLF: 135.05872039634843
Iteration: 8, Func. Count: 104, Neg. LLF: 134.48991587343227
Iteration: 9, Func. Count: 116, Neg. LLF: 134.45177445612535
Iteration: 10, Func. Count: 128, Neg. LLF: 134.52804145969262
Iteration: 11, Func. Count: 141, Neg. LLF: 134.42837455151252
Iteration: 12, Func. Count: 154, Neg. LLF: 134.3195828516235
Iteration: 13, Func. Count: 166, Neg. LLF: 134.2329807568409
Iteration: 14, Func. Count: 178, Neg. LLF: 134.55278493174433
Iteration: 15, Func. Count: 191, Neg. LLF: 134.1727189672276
Iteration: 16, Func. Count: 203, Neg. LLF: 134.16558398660152
Iteration: 17, Func. Count: 215, Neg. LLF: 134.16550491710424
Iteration: 18, Func. Count: 227, Neg. LLF: 134.1654990014931
Iteration: 19, Func. Count: 238, Neg. LLF: 134.16549900151148
Optimization terminated successfully (Exit mode 0)
Current function value: 134.1654990014931
Iterations: 19
Function evaluations: 238
Gradient evaluations: 19
Iteration: 1, Func. Count: 14, Neg. LLF: 3110.3034818666974
Iteration: 2, Func. Count: 28, Neg. LLF: 261.69393031590886
Iteration: 3, Func. Count: 42, Neg. LLF: 137.31543637878377
Iteration: 4, Func. Count: 56, Neg. LLF: 135.36895823150414
Iteration: 5, Func. Count: 70, Neg. LLF: 134.46345985346625
Iteration: 6, Func. Count: 83, Neg. LLF: 134.46780671716917
Iteration: 7, Func. Count: 97, Neg. LLF: 141.73538867963458
Iteration: 8, Func. Count: 111, Neg. LLF: 134.07702094507658
Iteration: 9, Func. Count: 124, Neg. LLF: 134.0573904230593
Iteration: 10, Func. Count: 137, Neg. LLF: 134.03370456740623
Iteration: 11, Func. Count: 150, Neg. LLF: 134.0254632078286
Iteration: 12, Func. Count: 163, Neg. LLF: 134.0246862043062
Iteration: 13, Func. Count: 176, Neg. LLF: 134.02460584154505
Iteration: 14, Func. Count: 189, Neg. LLF: 134.0245760293639
Iteration: 15, Func. Count: 201, Neg. LLF: 134.02457602925742
Optimization terminated successfully (Exit mode 0)
Current function value: 134.0245760293639
Iterations: 15
Function evaluations: 201
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 143.60277910648125
Iteration: 2, Func. Count: 22, Neg. LLF: 142.08049373981885
Iteration: 3, Func. Count: 33, Neg. LLF: 136.17668086960907
Iteration: 4, Func. Count: 44, Neg. LLF: 135.46954003120254
Iteration: 5, Func. Count: 55, Neg. LLF: 134.97357712001633
Iteration: 6, Func. Count: 66, Neg. LLF: 135.58584382419292
Iteration: 7, Func. Count: 77, Neg. LLF: 135.23170211943525
Iteration: 8, Func. Count: 88, Neg. LLF: 134.77221652857403
Iteration: 9, Func. Count: 98, Neg. LLF: 134.75235651902491
Iteration: 10, Func. Count: 108, Neg. LLF: 134.75158731966323
Iteration: 11, Func. Count: 118, Neg. LLF: 134.7512784454007
Iteration: 12, Func. Count: 128, Neg. LLF: 134.7511088499831
Iteration: 13, Func. Count: 138, Neg. LLF: 134.7510614418293
Iteration: 14, Func. Count: 148, Neg. LLF: 134.75103164910544
Iteration: 15, Func. Count: 158, Neg. LLF: 134.75102977013162
Iteration: 16, Func. Count: 167, Neg. LLF: 134.75102977012608
Optimization terminated successfully (Exit mode 0)
Current function value: 134.75102977013162
Iterations: 16
Function evaluations: 167
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 20676235.76221335
Iteration: 2, Func. Count: 25, Neg. LLF: 826.841643822117
Iteration: 3, Func. Count: 38, Neg. LLF: 134.59492473455657
Iteration: 4, Func. Count: 49, Neg. LLF: 134.45345825231976
Iteration: 5, Func. Count: 60, Neg. LLF: 137.50494218995925
Iteration: 6, Func. Count: 72, Neg. LLF: 134.94913869447942
Iteration: 7, Func. Count: 84, Neg. LLF: 134.37232409775967
Iteration: 8, Func. Count: 95, Neg. LLF: 134.36470570746226
Iteration: 9, Func. Count: 106, Neg. LLF: 134.37487058485874
Iteration: 10, Func. Count: 118, Neg. LLF: 134.36073455387918
Iteration: 11, Func. Count: 129, Neg. LLF: 134.3606589840499
Iteration: 12, Func. Count: 140, Neg. LLF: 134.36064361012365
Iteration: 13, Func. Count: 150, Neg. LLF: 134.36064361001948
Optimization terminated successfully (Exit mode 0)
Current function value: 134.36064361012365
Iterations: 13
Function evaluations: 150
Gradient evaluations: 13
Iteration: 1, Func. Count: 13, Neg. LLF: 861.2672393335608
Iteration: 2, Func. Count: 27, Neg. LLF: 161.9123176241564
Iteration: 3, Func. Count: 41, Neg. LLF: 137.2838585781185
Iteration: 4, Func. Count: 54, Neg. LLF: 135.47915883083766
Iteration: 5, Func. Count: 67, Neg. LLF: 134.53557817926477
Iteration: 6, Func. Count: 79, Neg. LLF: 134.52370030224054
Iteration: 7, Func. Count: 92, Neg. LLF: 134.88802717509404
Iteration: 8, Func. Count: 105, Neg. LLF: 134.39581855574994
Iteration: 9, Func. Count: 117, Neg. LLF: 134.37258091390672
Iteration: 10, Func. Count: 129, Neg. LLF: 134.3702700751121
Iteration: 11, Func. Count: 141, Neg. LLF: 134.36976537615274
Iteration: 12, Func. Count: 153, Neg. LLF: 134.3697235738209
Iteration: 13, Func. Count: 165, Neg. LLF: 134.36971884412418
Iteration: 14, Func. Count: 176, Neg. LLF: 134.36971884418324
Optimization terminated successfully (Exit mode 0)
Current function value: 134.36971884412418
Iterations: 14
Function evaluations: 176
Gradient evaluations: 14
Iteration: 1, Func. Count: 14, Neg. LLF: 1483.5322627394949
Iteration: 2, Func. Count: 28, Neg. LLF: 210.0038446971253
Iteration: 3, Func. Count: 42, Neg. LLF: 143.60172989096225
Iteration: 4, Func. Count: 56, Neg. LLF: 135.29700456762177
Iteration: 5, Func. Count: 70, Neg. LLF: 136.62359716338398
Iteration: 6, Func. Count: 85, Neg. LLF: 134.56696789878302
Iteration: 7, Func. Count: 98, Neg. LLF: 133.96238421007916
Iteration: 8, Func. Count: 111, Neg. LLF: 140.14443802633713
Iteration: 9, Func. Count: 126, Neg. LLF: 133.87531214362232
Iteration: 10, Func. Count: 139, Neg. LLF: 133.84937565103536
Iteration: 11, Func. Count: 152, Neg. LLF: 133.84501508370923
Iteration: 12, Func. Count: 165, Neg. LLF: 133.84594429863566
Iteration: 13, Func. Count: 179, Neg. LLF: 133.843198197442
Iteration: 14, Func. Count: 192, Neg. LLF: 133.84317339976602
Iteration: 15, Func. Count: 205, Neg. LLF: 133.8431592553232
Iteration: 16, Func. Count: 218, Neg. LLF: 133.84315490391495
Iteration: 17, Func. Count: 230, Neg. LLF: 133.84315490403432
Optimization terminated successfully (Exit mode 0)
Current function value: 133.84315490391495
Iterations: 17
Function evaluations: 230
Gradient evaluations: 17
Iteration: 1, Func. Count: 15, Neg. LLF: 3126.8411677554623
Iteration: 2, Func. Count: 30, Neg. LLF: 185.1326995764031
Iteration: 3, Func. Count: 45, Neg. LLF: 147.6084168196762
Iteration: 4, Func. Count: 60, Neg. LLF: 134.46081261449336
Iteration: 5, Func. Count: 74, Neg. LLF: 135.887355685397
Iteration: 6, Func. Count: 90, Neg. LLF: 134.33971038003563
Iteration: 7, Func. Count: 105, Neg. LLF: 138.51415514145765
Iteration: 8, Func. Count: 120, Neg. LLF: 135.60065370236077
Iteration: 9, Func. Count: 135, Neg. LLF: 133.9074200049657
Iteration: 10, Func. Count: 150, Neg. LLF: 133.75972485984005
Iteration: 11, Func. Count: 164, Neg. LLF: 133.74017134049302
Iteration: 12, Func. Count: 178, Neg. LLF: 133.73694073704553
Iteration: 13, Func. Count: 192, Neg. LLF: 133.7365793798252
Iteration: 14, Func. Count: 206, Neg. LLF: 133.73646248049982
Iteration: 15, Func. Count: 220, Neg. LLF: 133.73645635930237
Iteration: 16, Func. Count: 233, Neg. LLF: 133.73645635932417
Optimization terminated successfully (Exit mode 0)
Current function value: 133.73645635930237
Iterations: 16
Function evaluations: 233
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 144.64502726494328
Iteration: 2, Func. Count: 24, Neg. LLF: 142.63956973926327
Iteration: 3, Func. Count: 36, Neg. LLF: 136.81010748859728
Iteration: 4, Func. Count: 48, Neg. LLF: 135.7472767412709
Iteration: 5, Func. Count: 60, Neg. LLF: 134.95398314708228
Iteration: 6, Func. Count: 72, Neg. LLF: 135.76488376316908
Iteration: 7, Func. Count: 84, Neg. LLF: 134.91995897721637
Iteration: 8, Func. Count: 96, Neg. LLF: 134.79969375349754
Iteration: 9, Func. Count: 108, Neg. LLF: 134.75232686450815
Iteration: 10, Func. Count: 119, Neg. LLF: 134.7828043233636
Iteration: 11, Func. Count: 131, Neg. LLF: 134.7501228092403
Iteration: 12, Func. Count: 142, Neg. LLF: 134.74978476390794
Iteration: 13, Func. Count: 153, Neg. LLF: 134.74930939899724
Iteration: 14, Func. Count: 164, Neg. LLF: 134.7493019504489
Iteration: 15, Func. Count: 175, Neg. LLF: 134.74929964649226
Iteration: 16, Func. Count: 185, Neg. LLF: 134.74929961278738
Optimization terminated successfully (Exit mode 0)
Current function value: 134.74929964649226
Iterations: 16
Function evaluations: 185
Gradient evaluations: 16
Iteration: 1, Func. Count: 13, Neg. LLF: 20676252.306300834
Iteration: 2, Func. Count: 27, Neg. LLF: 845.6933304899909
Iteration: 3, Func. Count: 41, Neg. LLF: 134.591523548349
Iteration: 4, Func. Count: 53, Neg. LLF: 134.44390786297834
Iteration: 5, Func. Count: 65, Neg. LLF: 137.0621452024616
Iteration: 6, Func. Count: 78, Neg. LLF: 134.93891387411458
Iteration: 7, Func. Count: 91, Neg. LLF: 134.3681726452317
Iteration: 8, Func. Count: 103, Neg. LLF: 134.3641063839695
Iteration: 9, Func. Count: 115, Neg. LLF: 134.37094533389134
Iteration: 10, Func. Count: 128, Neg. LLF: 134.36074386547608
Iteration: 11, Func. Count: 140, Neg. LLF: 134.36066289938415
Iteration: 12, Func. Count: 152, Neg. LLF: 134.3606437010214
Iteration: 13, Func. Count: 163, Neg. LLF: 134.36064370107945
Optimization terminated successfully (Exit mode 0)
Current function value: 134.3606437010214
Iterations: 13
Function evaluations: 163
Gradient evaluations: 13
Iteration: 1, Func. Count: 14, Neg. LLF: 858.4100636329749
Iteration: 2, Func. Count: 29, Neg. LLF: 162.06055571601814
Iteration: 3, Func. Count: 44, Neg. LLF: 137.31178103912833
Iteration: 4, Func. Count: 58, Neg. LLF: 135.47714597204515
Iteration: 5, Func. Count: 72, Neg. LLF: 134.523801339435
Iteration: 6, Func. Count: 85, Neg. LLF: 134.4399210862467
Iteration: 7, Func. Count: 99, Neg. LLF: 134.62761803082023
Iteration: 8, Func. Count: 113, Neg. LLF: 134.3674829425854
Iteration: 9, Func. Count: 127, Neg. LLF: 134.22099203666176
Iteration: 10, Func. Count: 140, Neg. LLF: 134.219713271356
Iteration: 11, Func. Count: 153, Neg. LLF: 134.21940853403078
Iteration: 12, Func. Count: 166, Neg. LLF: 134.2193340009741
Iteration: 13, Func. Count: 179, Neg. LLF: 134.2193310153202
Iteration: 14, Func. Count: 191, Neg. LLF: 134.2193310153126
Optimization terminated successfully (Exit mode 0)
Current function value: 134.2193310153202
Iterations: 14
Function evaluations: 191
Gradient evaluations: 14
Iteration: 1, Func. Count: 15, Neg. LLF: 1482.1277920437178
Iteration: 2, Func. Count: 30, Neg. LLF: 159.03424487389796
Iteration: 3, Func. Count: 46, Neg. LLF: 138.944712739811
Iteration: 4, Func. Count: 61, Neg. LLF: 134.2003382819065
Iteration: 5, Func. Count: 75, Neg. LLF: 134.74920941824257
Iteration: 6, Func. Count: 90, Neg. LLF: 134.2944570344717
Iteration: 7, Func. Count: 105, Neg. LLF: 133.93096873125046
Iteration: 8, Func. Count: 119, Neg. LLF: 134.14499841770623
Iteration: 9, Func. Count: 134, Neg. LLF: 134.38273974652049
Iteration: 10, Func. Count: 149, Neg. LLF: 133.85195794252752
Iteration: 11, Func. Count: 163, Neg. LLF: 133.9021229055116
Iteration: 12, Func. Count: 178, Neg. LLF: 133.8432902421076
Iteration: 13, Func. Count: 192, Neg. LLF: 133.8432061166714
Iteration: 14, Func. Count: 206, Neg. LLF: 133.84317272666536
Iteration: 15, Func. Count: 220, Neg. LLF: 133.84315899821505
Iteration: 16, Func. Count: 234, Neg. LLF: 133.8431557517625
Iteration: 17, Func. Count: 248, Neg. LLF: 133.84315470791591
Iteration: 18, Func. Count: 261, Neg. LLF: 133.8431547078836
Optimization terminated successfully (Exit mode 0)
Current function value: 133.84315470791591
Iterations: 18
Function evaluations: 261
Gradient evaluations: 18
Iteration: 1, Func. Count: 16, Neg. LLF: 3132.978940850007
Iteration: 2, Func. Count: 32, Neg. LLF: 157.2212975565159
Iteration: 3, Func. Count: 49, Neg. LLF: 143.01098889606544
Iteration: 4, Func. Count: 65, Neg. LLF: 134.5457118807735
Iteration: 5, Func. Count: 80, Neg. LLF: 135.1219562826093
Iteration: 6, Func. Count: 96, Neg. LLF: 134.4124814409578
Iteration: 7, Func. Count: 112, Neg. LLF: 157.11909892485227
Iteration: 8, Func. Count: 128, Neg. LLF: 134.01151083275414
Iteration: 9, Func. Count: 144, Neg. LLF: 134.41576420957603
Iteration: 10, Func. Count: 160, Neg. LLF: 133.68428582224075
Iteration: 11, Func. Count: 175, Neg. LLF: 133.68596843705762
Iteration: 12, Func. Count: 191, Neg. LLF: 133.66906454824482
Iteration: 13, Func. Count: 206, Neg. LLF: 133.66851286955264
Iteration: 14, Func. Count: 221, Neg. LLF: 133.66830363149393
Iteration: 15, Func. Count: 236, Neg. LLF: 133.66823704631983
Iteration: 16, Func. Count: 251, Neg. LLF: 133.66822260696253
Iteration: 17, Func. Count: 266, Neg. LLF: 133.66822038435635
Iteration: 18, Func. Count: 280, Neg. LLF: 133.6682203843457
Optimization terminated successfully (Exit mode 0)
Current function value: 133.66822038435635
Iterations: 18
Function evaluations: 280
Gradient evaluations: 18
Iteration: 1, Func. Count: 6, Neg. LLF: 19814324.7410443
Iteration: 2, Func. Count: 13, Neg. LLF: 176.973181572286
Iteration: 3, Func. Count: 19, Neg. LLF: 136.86456437505706
Iteration: 4, Func. Count: 25, Neg. LLF: 137.2255002747858
Iteration: 5, Func. Count: 31, Neg. LLF: 136.49312710732036
Iteration: 6, Func. Count: 37, Neg. LLF: 135.58188802310733
Iteration: 7, Func. Count: 43, Neg. LLF: 134.9108540016837
Iteration: 8, Func. Count: 49, Neg. LLF: 134.80093053805066
Iteration: 9, Func. Count: 54, Neg. LLF: 134.71304436164326
Iteration: 10, Func. Count: 59, Neg. LLF: 134.7704088214817
Iteration: 11, Func. Count: 65, Neg. LLF: 134.6738942714121
Iteration: 12, Func. Count: 70, Neg. LLF: 134.67385302185465
Iteration: 13, Func. Count: 75, Neg. LLF: 134.67385206174615
Optimization terminated successfully (Exit mode 0)
Current function value: 134.67385206174615
Iterations: 13
Function evaluations: 75
Gradient evaluations: 13
Iteration: 1, Func. Count: 5, Neg. LLF: 139.17315118990305
Iteration: 2, Func. Count: 10, Neg. LLF: 140.34904071548266
Iteration: 3, Func. Count: 15, Neg. LLF: 132.44855849661673
Iteration: 4, Func. Count: 19, Neg. LLF: 132.28341508622788
Iteration: 5, Func. Count: 23, Neg. LLF: 132.22699697983262
Iteration: 6, Func. Count: 27, Neg. LLF: 132.20603634842274
Iteration: 7, Func. Count: 31, Neg. LLF: 132.20052747345963
Iteration: 8, Func. Count: 35, Neg. LLF: 132.2003524726017
Iteration: 9, Func. Count: 38, Neg. LLF: 132.20035247258605
Optimization terminated successfully (Exit mode 0)
Current function value: 132.2003524726017
Iterations: 9
Function evaluations: 38
Gradient evaluations: 9
Iteration: 1, Func. Count: 6, Neg. LLF: 19941034.032816816
Iteration: 2, Func. Count: 13, Neg. LLF: 150.74368625253885
Iteration: 3, Func. Count: 19, Neg. LLF: 138.6800615977821
Iteration: 4, Func. Count: 25, Neg. LLF: 132.06195520250714
Iteration: 5, Func. Count: 31, Neg. LLF: 130.57465357182357
Iteration: 6, Func. Count: 36, Neg. LLF: 131.64532355970516
Iteration: 7, Func. Count: 42, Neg. LLF: 133.03079852078648
Iteration: 8, Func. Count: 49, Neg. LLF: 130.2880314896481
Iteration: 9, Func. Count: 54, Neg. LLF: 130.27691659321906
Iteration: 10, Func. Count: 59, Neg. LLF: 130.27617369773117
Iteration: 11, Func. Count: 64, Neg. LLF: 130.27615358711466
Iteration: 12, Func. Count: 69, Neg. LLF: 130.27614826147212
Iteration: 13, Func. Count: 73, Neg. LLF: 130.27614826138128
Optimization terminated successfully (Exit mode 0)
Current function value: 130.27614826147212
Iterations: 13
Function evaluations: 73
Gradient evaluations: 13
Iteration: 1, Func. Count: 7, Neg. LLF: 23156576.52211804
Iteration: 2, Func. Count: 15, Neg. LLF: 141.23944255397336
Iteration: 3, Func. Count: 22, Neg. LLF: 131.07545793849536
Iteration: 4, Func. Count: 29, Neg. LLF: 130.29177595675517
Iteration: 5, Func. Count: 35, Neg. LLF: 130.37888127521344
Iteration: 6, Func. Count: 42, Neg. LLF: 130.28211111835603
Iteration: 7, Func. Count: 49, Neg. LLF: 130.27412412574117
Iteration: 8, Func. Count: 55, Neg. LLF: 130.2674288268759
Iteration: 9, Func. Count: 61, Neg. LLF: 130.26555019308802
Iteration: 10, Func. Count: 67, Neg. LLF: 130.26530193486735
Iteration: 11, Func. Count: 73, Neg. LLF: 130.26530018178553
Iteration: 12, Func. Count: 78, Neg. LLF: 130.26530018206412
Optimization terminated successfully (Exit mode 0)
Current function value: 130.26530018178553
Iterations: 12
Function evaluations: 78
Gradient evaluations: 12
Iteration: 1, Func. Count: 8, Neg. LLF: 194.84207244534497
Iteration: 2, Func. Count: 16, Neg. LLF: 145.1247600836945
Iteration: 3, Func. Count: 24, Neg. LLF: 131.48966751740366
Iteration: 4, Func. Count: 31, Neg. LLF: 132.18190500375252
Iteration: 5, Func. Count: 39, Neg. LLF: 131.3829772725568
Iteration: 6, Func. Count: 47, Neg. LLF: 132.78746742998942
Iteration: 7, Func. Count: 55, Neg. LLF: 130.69799454245145
Iteration: 8, Func. Count: 63, Neg. LLF: 130.44199902357096
Iteration: 9, Func. Count: 71, Neg. LLF: 130.35678932986374
Iteration: 10, Func. Count: 78, Neg. LLF: 130.35201083964833
Iteration: 11, Func. Count: 85, Neg. LLF: 130.34283026747275
Iteration: 12, Func. Count: 92, Neg. LLF: 130.32621145948517
Iteration: 13, Func. Count: 99, Neg. LLF: 130.3059456482966
Iteration: 14, Func. Count: 106, Neg. LLF: 130.27235142344034
Iteration: 15, Func. Count: 113, Neg. LLF: 130.26918311623353
Iteration: 16, Func. Count: 120, Neg. LLF: 130.26593561589905
Iteration: 17, Func. Count: 127, Neg. LLF: 130.2654464012725
Iteration: 18, Func. Count: 134, Neg. LLF: 130.2653292565271
Iteration: 19, Func. Count: 141, Neg. LLF: 130.2653078747422
Iteration: 20, Func. Count: 148, Neg. LLF: 130.2653001966597
Iteration: 21, Func. Count: 154, Neg. LLF: 130.26530021340216
Optimization terminated successfully (Exit mode 0)
Current function value: 130.2653001966597
Iterations: 21
Function evaluations: 154
Gradient evaluations: 21
Iteration: 1, Func. Count: 9, Neg. LLF: 200.13432187095412
Iteration: 2, Func. Count: 18, Neg. LLF: 145.72582160361486
Iteration: 3, Func. Count: 27, Neg. LLF: 130.95954515980196
Iteration: 4, Func. Count: 35, Neg. LLF: 132.88060741342397
Iteration: 5, Func. Count: 44, Neg. LLF: 131.88424445973982
Iteration: 6, Func. Count: 53, Neg. LLF: 130.3645134973738
Iteration: 7, Func. Count: 62, Neg. LLF: 130.23224182900523
Iteration: 8, Func. Count: 70, Neg. LLF: 130.22620054743723
Iteration: 9, Func. Count: 78, Neg. LLF: 130.22162317620345
Iteration: 10, Func. Count: 86, Neg. LLF: 130.21837466204684
Iteration: 11, Func. Count: 94, Neg. LLF: 130.21705175928884
Iteration: 12, Func. Count: 102, Neg. LLF: 130.2169998964591
Iteration: 13, Func. Count: 110, Neg. LLF: 130.2169953739099
Iteration: 14, Func. Count: 117, Neg. LLF: 130.21699537378228
Optimization terminated successfully (Exit mode 0)
Current function value: 130.2169953739099
Iterations: 14
Function evaluations: 117
Gradient evaluations: 14
Iteration: 1, Func. Count: 6, Neg. LLF: 142.64583358203618
Iteration: 2, Func. Count: 13, Neg. LLF: 134.08333296358828
Iteration: 3, Func. Count: 19, Neg. LLF: 134.20495250552835
Iteration: 4, Func. Count: 25, Neg. LLF: 132.20241498756482
Iteration: 5, Func. Count: 30, Neg. LLF: 132.20061736251964
Iteration: 6, Func. Count: 35, Neg. LLF: 132.20035574395334
Iteration: 7, Func. Count: 40, Neg. LLF: 132.2003534822416
Iteration: 8, Func. Count: 45, Neg. LLF: 132.2003521700107
Iteration: 9, Func. Count: 49, Neg. LLF: 132.20035222255038
Optimization terminated successfully (Exit mode 0)
Current function value: 132.2003521700107
Iterations: 9
Function evaluations: 49
Gradient evaluations: 9
Iteration: 1, Func. Count: 7, Neg. LLF: 19956014.31594018
Iteration: 2, Func. Count: 15, Neg. LLF: 151.07132633830324
Iteration: 3, Func. Count: 22, Neg. LLF: 138.86758107672674
Iteration: 4, Func. Count: 29, Neg. LLF: 132.08146533492038
Iteration: 5, Func. Count: 36, Neg. LLF: 130.55883396462465
Iteration: 6, Func. Count: 42, Neg. LLF: 131.75467198789045
Iteration: 7, Func. Count: 50, Neg. LLF: 132.15859450070863
Iteration: 8, Func. Count: 57, Neg. LLF: 130.29247222554946
Iteration: 9, Func. Count: 63, Neg. LLF: 130.28002775707935
Iteration: 10, Func. Count: 69, Neg. LLF: 130.27700593782745
Iteration: 11, Func. Count: 75, Neg. LLF: 130.2761589995885
Iteration: 12, Func. Count: 81, Neg. LLF: 130.2761482719609
Iteration: 13, Func. Count: 86, Neg. LLF: 130.2761482714685
Optimization terminated successfully (Exit mode 0)
Current function value: 130.2761482719609
Iterations: 13
Function evaluations: 86
Gradient evaluations: 13
Iteration: 1, Func. Count: 8, Neg. LLF: 19887321.939574946
Iteration: 2, Func. Count: 17, Neg. LLF: 136.55927058988567
Iteration: 3, Func. Count: 25, Neg. LLF: 131.5697455158083
Iteration: 4, Func. Count: 33, Neg. LLF: 131.43470500290994
Iteration: 5, Func. Count: 41, Neg. LLF: 130.3243889752803
Iteration: 6, Func. Count: 48, Neg. LLF: 130.27205205237527
Iteration: 7, Func. Count: 55, Neg. LLF: 130.27125452322008
Iteration: 8, Func. Count: 63, Neg. LLF: 130.26561245153064
Iteration: 9, Func. Count: 70, Neg. LLF: 130.2653125660702
Iteration: 10, Func. Count: 77, Neg. LLF: 130.26530306687846
Iteration: 11, Func. Count: 84, Neg. LLF: 130.2653001088375
Iteration: 12, Func. Count: 90, Neg. LLF: 130.26530010884628
Optimization terminated successfully (Exit mode 0)
Current function value: 130.2653001088375
Iterations: 12
Function evaluations: 90
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 201.92961174108373
Iteration: 2, Func. Count: 18, Neg. LLF: 14135322.418485196
Iteration: 3, Func. Count: 27, Neg. LLF: 131.40110621990056
Iteration: 4, Func. Count: 35, Neg. LLF: 134.61088751385728
Iteration: 5, Func. Count: 44, Neg. LLF: 133.0212308534781
Iteration: 6, Func. Count: 53, Neg. LLF: 130.41524905663394
Iteration: 7, Func. Count: 61, Neg. LLF: 130.40570203881998
Iteration: 8, Func. Count: 70, Neg. LLF: 130.3685686926143
Iteration: 9, Func. Count: 78, Neg. LLF: 130.3682618100194
Iteration: 10, Func. Count: 87, Neg. LLF: 130.3505998384363
Iteration: 11, Func. Count: 95, Neg. LLF: 130.3373376178078
Iteration: 12, Func. Count: 103, Neg. LLF: 130.3226021004232
Iteration: 13, Func. Count: 111, Neg. LLF: 130.30552036730003
Iteration: 14, Func. Count: 119, Neg. LLF: 130.27753463864715
Iteration: 15, Func. Count: 127, Neg. LLF: 130.2716667448204
Iteration: 16, Func. Count: 135, Neg. LLF: 130.26789214473663
Iteration: 17, Func. Count: 143, Neg. LLF: 130.2654279394642
Iteration: 18, Func. Count: 151, Neg. LLF: 130.26533294067087
Iteration: 19, Func. Count: 159, Neg. LLF: 136.72072791508157
Iteration: 20, Func. Count: 170, Neg. LLF: 130.26558361773453
Iteration: 21, Func. Count: 179, Neg. LLF: 130.26544552979047
Iteration: 22, Func. Count: 188, Neg. LLF: 130.26530010190203
Iteration: 23, Func. Count: 195, Neg. LLF: 130.26530011838818
Optimization terminated successfully (Exit mode 0)
Current function value: 130.26530010190203
Iterations: 24
Function evaluations: 195
Gradient evaluations: 23
Iteration: 1, Func. Count: 10, Neg. LLF: 203.75497368752005
Iteration: 2, Func. Count: 20, Neg. LLF: 15274306.370822161
Iteration: 3, Func. Count: 30, Neg. LLF: 134.72453210861627
Iteration: 4, Func. Count: 40, Neg. LLF: 131.04779112036977
Iteration: 5, Func. Count: 49, Neg. LLF: 134.5131955439631
Iteration: 6, Func. Count: 59, Neg. LLF: 130.51867284676007
Iteration: 7, Func. Count: 69, Neg. LLF: 133.70249702041434
Iteration: 8, Func. Count: 79, Neg. LLF: 130.3502374382851
Iteration: 9, Func. Count: 88, Neg. LLF: 130.25134163757554
Iteration: 10, Func. Count: 97, Neg. LLF: 130.3097463188687
Iteration: 11, Func. Count: 107, Neg. LLF: 130.22651290156188
Iteration: 12, Func. Count: 116, Neg. LLF: 130.22509915968163
Iteration: 13, Func. Count: 125, Neg. LLF: 130.22283577631862
Iteration: 14, Func. Count: 134, Neg. LLF: 130.2227291040139
Iteration: 15, Func. Count: 143, Neg. LLF: 130.22272543150456
Iteration: 16, Func. Count: 152, Neg. LLF: 130.2227240534961
Iteration: 17, Func. Count: 161, Neg. LLF: 130.22272172927129
Iteration: 18, Func. Count: 169, Neg. LLF: 130.22272172900108
Optimization terminated successfully (Exit mode 0)
Current function value: 130.22272172927129
Iterations: 18
Function evaluations: 169
Gradient evaluations: 18
Iteration: 1, Func. Count: 7, Neg. LLF: 137.51018660006417
Iteration: 2, Func. Count: 15, Neg. LLF: 135.10068431557224
Iteration: 3, Func. Count: 22, Neg. LLF: 132.3543453300106
Iteration: 4, Func. Count: 28, Neg. LLF: 134.7299010446172
Iteration: 5, Func. Count: 35, Neg. LLF: 132.22406356806252
Iteration: 6, Func. Count: 41, Neg. LLF: 132.21051107068308
Iteration: 7, Func. Count: 47, Neg. LLF: 132.20043956834147
Iteration: 8, Func. Count: 53, Neg. LLF: 132.20036072506835
Iteration: 9, Func. Count: 59, Neg. LLF: 132.2003180906438
Iteration: 10, Func. Count: 65, Neg. LLF: 132.2003171349337
Optimization terminated successfully (Exit mode 0)
Current function value: 132.2003171349337
Iterations: 10
Function evaluations: 65
Gradient evaluations: 10
Iteration: 1, Func. Count: 8, Neg. LLF: 19978444.520273414
Iteration: 2, Func. Count: 17, Neg. LLF: 151.7659953487719
Iteration: 3, Func. Count: 25, Neg. LLF: 139.17086353866566
Iteration: 4, Func. Count: 33, Neg. LLF: 132.08418014082915
Iteration: 5, Func. Count: 41, Neg. LLF: 130.53126773064585
Iteration: 6, Func. Count: 48, Neg. LLF: 131.90933441086867
Iteration: 7, Func. Count: 57, Neg. LLF: 132.23722774646458
Iteration: 8, Func. Count: 65, Neg. LLF: 130.29105706566295
Iteration: 9, Func. Count: 72, Neg. LLF: 130.27954794821497
Iteration: 10, Func. Count: 79, Neg. LLF: 130.2767771020542
Iteration: 11, Func. Count: 86, Neg. LLF: 130.27614943973362
Iteration: 12, Func. Count: 93, Neg. LLF: 130.27614822957227
Iteration: 13, Func. Count: 99, Neg. LLF: 130.27614822952165
Optimization terminated successfully (Exit mode 0)
Current function value: 130.27614822957227
Iterations: 13
Function evaluations: 99
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 19903385.25049605
Iteration: 2, Func. Count: 19, Neg. LLF: 136.74171268043114
Iteration: 3, Func. Count: 28, Neg. LLF: 131.8246725355904
Iteration: 4, Func. Count: 37, Neg. LLF: 131.57963121186532
Iteration: 5, Func. Count: 46, Neg. LLF: 130.31817960164284
Iteration: 6, Func. Count: 54, Neg. LLF: 130.27011517916944
Iteration: 7, Func. Count: 62, Neg. LLF: 130.2661585233474
Iteration: 8, Func. Count: 70, Neg. LLF: 130.2655471864152
Iteration: 9, Func. Count: 78, Neg. LLF: 130.2653356347635
Iteration: 10, Func. Count: 86, Neg. LLF: 130.26530315493227
Iteration: 11, Func. Count: 94, Neg. LLF: 130.26530070899915
Iteration: 12, Func. Count: 102, Neg. LLF: 130.2653001033955
Optimization terminated successfully (Exit mode 0)
Current function value: 130.2653001033955
Iterations: 12
Function evaluations: 102
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 205.60217214293047
Iteration: 2, Func. Count: 20, Neg. LLF: 12767265.857112968
Iteration: 3, Func. Count: 30, Neg. LLF: 131.509566424481
Iteration: 4, Func. Count: 39, Neg. LLF: 135.97788300895658
Iteration: 5, Func. Count: 49, Neg. LLF: 136.62360635507565
Iteration: 6, Func. Count: 59, Neg. LLF: 130.4379055228152
Iteration: 7, Func. Count: 69, Neg. LLF: 130.37588885869548
Iteration: 8, Func. Count: 78, Neg. LLF: 130.3663459671606
Iteration: 9, Func. Count: 87, Neg. LLF: 130.341713980724
Iteration: 10, Func. Count: 96, Neg. LLF: 130.33672943044786
Iteration: 11, Func. Count: 105, Neg. LLF: 130.32366804826657
Iteration: 12, Func. Count: 114, Neg. LLF: 130.31428949073137
Iteration: 13, Func. Count: 123, Neg. LLF: 130.28761370371848
Iteration: 14, Func. Count: 132, Neg. LLF: 130.3489704318916
Iteration: 15, Func. Count: 142, Neg. LLF: 130.27202489098343
Iteration: 16, Func. Count: 151, Neg. LLF: 130.2706897434819
Iteration: 17, Func. Count: 160, Neg. LLF: 130.2661303332308
Iteration: 18, Func. Count: 169, Neg. LLF: 130.26530237395102
Iteration: 19, Func. Count: 178, Neg. LLF: 130.2653023230982
Optimization terminated successfully (Exit mode 0)
Current function value: 130.26530161740854
Iterations: 19
Function evaluations: 179
Gradient evaluations: 19
Iteration: 1, Func. Count: 11, Neg. LLF: 214.1576615030483
Iteration: 2, Func. Count: 22, Neg. LLF: 12569153.522061113
Iteration: 3, Func. Count: 33, Neg. LLF: 135.7336716566242
Iteration: 4, Func. Count: 44, Neg. LLF: 130.63442994153183
Iteration: 5, Func. Count: 54, Neg. LLF: 135.4824893646135
Iteration: 6, Func. Count: 65, Neg. LLF: 130.28741192435456
Iteration: 7, Func. Count: 75, Neg. LLF: 130.29434786778614
Iteration: 8, Func. Count: 86, Neg. LLF: 130.23186513593745
Iteration: 9, Func. Count: 96, Neg. LLF: 130.22881608450956
Iteration: 10, Func. Count: 107, Neg. LLF: 130.22341614987442
Iteration: 11, Func. Count: 117, Neg. LLF: 130.22279248839848
Iteration: 12, Func. Count: 127, Neg. LLF: 130.2227351437764
Iteration: 13, Func. Count: 137, Neg. LLF: 130.22272156669163
Iteration: 14, Func. Count: 146, Neg. LLF: 130.2227215669167
Optimization terminated successfully (Exit mode 0)
Current function value: 130.22272156669163
Iterations: 14
Function evaluations: 146
Gradient evaluations: 14
Iteration: 1, Func. Count: 8, Neg. LLF: 136.40223702704395
Iteration: 2, Func. Count: 17, Neg. LLF: 135.13258112610524
Iteration: 3, Func. Count: 26, Neg. LLF: 148.73217471362554
Iteration: 4, Func. Count: 34, Neg. LLF: 133.07609945543075
Iteration: 5, Func. Count: 42, Neg. LLF: 132.27950001085335
Iteration: 6, Func. Count: 49, Neg. LLF: 132.23277463284617
Iteration: 7, Func. Count: 56, Neg. LLF: 132.20987435908404
Iteration: 8, Func. Count: 63, Neg. LLF: 132.20357676282592
Iteration: 9, Func. Count: 70, Neg. LLF: 132.20119754125366
Iteration: 10, Func. Count: 77, Neg. LLF: 132.2003444637065
Iteration: 11, Func. Count: 84, Neg. LLF: 132.20031782314572
Iteration: 12, Func. Count: 91, Neg. LLF: 132.20031717611457
Optimization terminated successfully (Exit mode 0)
Current function value: 132.20031717611457
Iterations: 12
Function evaluations: 91
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 19978560.448259607
Iteration: 2, Func. Count: 19, Neg. LLF: 151.8947838282164
Iteration: 3, Func. Count: 28, Neg. LLF: 139.25602227256093
Iteration: 4, Func. Count: 37, Neg. LLF: 132.10110014437205
Iteration: 5, Func. Count: 46, Neg. LLF: 130.5322009221762
Iteration: 6, Func. Count: 54, Neg. LLF: 131.94412129321734
Iteration: 7, Func. Count: 64, Neg. LLF: 132.4521097788397
Iteration: 8, Func. Count: 73, Neg. LLF: 130.29185199231839
Iteration: 9, Func. Count: 81, Neg. LLF: 130.27980378076566
Iteration: 10, Func. Count: 89, Neg. LLF: 130.27678708204598
Iteration: 11, Func. Count: 97, Neg. LLF: 130.2761510134269
Iteration: 12, Func. Count: 105, Neg. LLF: 130.2761482338642
Iteration: 13, Func. Count: 112, Neg. LLF: 130.276148233765
Optimization terminated successfully (Exit mode 0)
Current function value: 130.2761482338642
Iterations: 13
Function evaluations: 112
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 19904531.568802714
Iteration: 2, Func. Count: 21, Neg. LLF: 136.79721334076774
Iteration: 3, Func. Count: 31, Neg. LLF: 132.5732909641811
Iteration: 4, Func. Count: 41, Neg. LLF: 131.7399166539271
Iteration: 5, Func. Count: 51, Neg. LLF: 130.31962666868176
Iteration: 6, Func. Count: 60, Neg. LLF: 130.27323277026622
Iteration: 7, Func. Count: 69, Neg. LLF: 130.27025393333312
Iteration: 8, Func. Count: 78, Neg. LLF: 130.2654952178454
Iteration: 9, Func. Count: 87, Neg. LLF: 130.26534449615522
Iteration: 10, Func. Count: 96, Neg. LLF: 130.265305558467
Iteration: 11, Func. Count: 105, Neg. LLF: 130.26530077891266
Iteration: 12, Func. Count: 114, Neg. LLF: 130.26530010904818
Optimization terminated successfully (Exit mode 0)
Current function value: 130.26530010904818
Iterations: 12
Function evaluations: 114
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 205.35122553931458
Iteration: 2, Func. Count: 22, Neg. LLF: 12798894.515989587
Iteration: 3, Func. Count: 33, Neg. LLF: 131.44081481112391
Iteration: 4, Func. Count: 43, Neg. LLF: 135.92930468424652
Iteration: 5, Func. Count: 54, Neg. LLF: 136.32899339477407
Iteration: 6, Func. Count: 65, Neg. LLF: 130.43824655605556
Iteration: 7, Func. Count: 76, Neg. LLF: 130.37555084457696
Iteration: 8, Func. Count: 86, Neg. LLF: 130.36595690245971
Iteration: 9, Func. Count: 96, Neg. LLF: 130.34286498974143
Iteration: 10, Func. Count: 106, Neg. LLF: 130.3376680426592
Iteration: 11, Func. Count: 116, Neg. LLF: 130.32112331799397
Iteration: 12, Func. Count: 126, Neg. LLF: 130.30878834602512
Iteration: 13, Func. Count: 136, Neg. LLF: 130.27250778966385
Iteration: 14, Func. Count: 146, Neg. LLF: 130.27759239318067
Iteration: 15, Func. Count: 157, Neg. LLF: 130.26708113433472
Iteration: 16, Func. Count: 167, Neg. LLF: 130.26580238526503
Iteration: 17, Func. Count: 177, Neg. LLF: 130.2654121045937
Iteration: 18, Func. Count: 187, Neg. LLF: 130.2653375052821
Iteration: 19, Func. Count: 197, Neg. LLF: 130.26532770658787
Iteration: 20, Func. Count: 207, Neg. LLF: 130.2653119135233
Iteration: 21, Func. Count: 217, Neg. LLF: 217.41729346606093
Iteration: 22, Func. Count: 231, Neg. LLF: 130.26533236490116
Optimization terminated successfully (Exit mode 0)
Current function value: 130.265302137351
Iterations: 23
Function evaluations: 232
Gradient evaluations: 22
Iteration: 1, Func. Count: 12, Neg. LLF: 213.91863862899027
Iteration: 2, Func. Count: 24, Neg. LLF: 12593105.560675032
Iteration: 3, Func. Count: 36, Neg. LLF: 135.68017221277316
Iteration: 4, Func. Count: 48, Neg. LLF: 130.61474247695205
Iteration: 5, Func. Count: 59, Neg. LLF: 135.45029612859037
Iteration: 6, Func. Count: 71, Neg. LLF: 130.27060978802618
Iteration: 7, Func. Count: 82, Neg. LLF: 130.26451390048533
Iteration: 8, Func. Count: 94, Neg. LLF: 130.2315560014291
Iteration: 9, Func. Count: 105, Neg. LLF: 130.2285616731182
Iteration: 10, Func. Count: 117, Neg. LLF: 130.2230166029219
Iteration: 11, Func. Count: 128, Neg. LLF: 130.22275701838134
Iteration: 12, Func. Count: 139, Neg. LLF: 130.22272918270946
Iteration: 13, Func. Count: 150, Neg. LLF: 130.22272187980656
Iteration: 14, Func. Count: 160, Neg. LLF: 130.22272187994588
Optimization terminated successfully (Exit mode 0)
Current function value: 130.22272187980656
Iterations: 14
Function evaluations: 160
Gradient evaluations: 14
Iteration: 1, Func. Count: 5, Neg. LLF: 135.57290898269673
Iteration: 2, Func. Count: 10, Neg. LLF: 133.3714738362431
Iteration: 3, Func. Count: 15, Neg. LLF: 133.7556872434001
Iteration: 4, Func. Count: 20, Neg. LLF: 132.33559724861243
Iteration: 5, Func. Count: 24, Neg. LLF: 132.30621624763936
Iteration: 6, Func. Count: 28, Neg. LLF: 132.30364671405536
Iteration: 7, Func. Count: 32, Neg. LLF: 132.3032482616121
Iteration: 8, Func. Count: 36, Neg. LLF: 132.30319700628039
Iteration: 9, Func. Count: 40, Neg. LLF: 132.30319131929514
Iteration: 10, Func. Count: 43, Neg. LLF: 132.30319131927885
Optimization terminated successfully (Exit mode 0)
Current function value: 132.30319131929514
Iterations: 10
Function evaluations: 43
Gradient evaluations: 10
Iteration: 1, Func. Count: 6, Neg. LLF: 19808834.994690854
Iteration: 2, Func. Count: 13, Neg. LLF: 132.58814155772447
Iteration: 3, Func. Count: 19, Neg. LLF: 146.08072408014422
Iteration: 4, Func. Count: 25, Neg. LLF: 135.16136577393763
Iteration: 5, Func. Count: 31, Neg. LLF: 132.46647055868166
Iteration: 6, Func. Count: 37, Neg. LLF: 130.77650696738962
Iteration: 7, Func. Count: 43, Neg. LLF: 130.39483032767458
Iteration: 8, Func. Count: 48, Neg. LLF: 130.28628345384755
Iteration: 9, Func. Count: 53, Neg. LLF: 130.27668798925743
Iteration: 10, Func. Count: 58, Neg. LLF: 130.276190314157
Iteration: 11, Func. Count: 63, Neg. LLF: 130.27617397615367
Iteration: 12, Func. Count: 68, Neg. LLF: 130.27614826906955
Iteration: 13, Func. Count: 72, Neg. LLF: 130.27614826926208
Optimization terminated successfully (Exit mode 0)
Current function value: 130.27614826906955
Iterations: 13
Function evaluations: 72
Gradient evaluations: 13
Iteration: 1, Func. Count: 7, Neg. LLF: 887.3647545682385
Iteration: 2, Func. Count: 15, Neg. LLF: 134.50081157000147
Iteration: 3, Func. Count: 22, Neg. LLF: 134.8989569480582
Iteration: 4, Func. Count: 29, Neg. LLF: 131.32092670141742
Iteration: 5, Func. Count: 36, Neg. LLF: 130.18852539524173
Iteration: 6, Func. Count: 42, Neg. LLF: 130.1725464296137
Iteration: 7, Func. Count: 48, Neg. LLF: 130.1648596415661
Iteration: 8, Func. Count: 54, Neg. LLF: 130.16459165532694
Iteration: 9, Func. Count: 60, Neg. LLF: 130.16417844498866
Iteration: 10, Func. Count: 66, Neg. LLF: 130.16417363557267
Iteration: 11, Func. Count: 71, Neg. LLF: 130.16417363558398
Optimization terminated successfully (Exit mode 0)
Current function value: 130.16417363557267
Iterations: 11
Function evaluations: 71
Gradient evaluations: 11
Iteration: 1, Func. Count: 8, Neg. LLF: 4710.112389823088
Iteration: 2, Func. Count: 17, Neg. LLF: 175.08679642033673
Iteration: 3, Func. Count: 25, Neg. LLF: 132.13183519598243
Iteration: 4, Func. Count: 33, Neg. LLF: 137.2405459683224
Iteration: 5, Func. Count: 41, Neg. LLF: 130.20238441950556
Iteration: 6, Func. Count: 48, Neg. LLF: 130.67105794620437
Iteration: 7, Func. Count: 56, Neg. LLF: 130.1874244623175
Iteration: 8, Func. Count: 64, Neg. LLF: 130.16619141848804
Iteration: 9, Func. Count: 71, Neg. LLF: 130.16420962165864
Iteration: 10, Func. Count: 78, Neg. LLF: 130.16417805431132
Iteration: 11, Func. Count: 85, Neg. LLF: 130.16417359055933
Iteration: 12, Func. Count: 91, Neg. LLF: 130.16417359048447
Optimization terminated successfully (Exit mode 0)
Current function value: 130.16417359055933
Iterations: 12
Function evaluations: 91
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 19739529.175204813
Iteration: 2, Func. Count: 19, Neg. LLF: 169.29981859709065
Iteration: 3, Func. Count: 28, Neg. LLF: 131.9051999913129
Iteration: 4, Func. Count: 37, Neg. LLF: 130.4799034321545
Iteration: 5, Func. Count: 45, Neg. LLF: 130.5125725035098
Iteration: 6, Func. Count: 54, Neg. LLF: 130.59986375060123
Iteration: 7, Func. Count: 63, Neg. LLF: 130.8286575239644
Iteration: 8, Func. Count: 73, Neg. LLF: 130.1746832925292
Iteration: 9, Func. Count: 81, Neg. LLF: 130.16491279909653
Iteration: 10, Func. Count: 89, Neg. LLF: 130.1644896873757
Iteration: 11, Func. Count: 97, Neg. LLF: 130.16417968271756
Iteration: 12, Func. Count: 105, Neg. LLF: 130.16417370302563
Iteration: 13, Func. Count: 112, Neg. LLF: 130.16417370664013
Optimization terminated successfully (Exit mode 0)
Current function value: 130.16417370302563
Iterations: 13
Function evaluations: 112
Gradient evaluations: 13
Iteration: 1, Func. Count: 6, Neg. LLF: 134.86573533533505
Iteration: 2, Func. Count: 12, Neg. LLF: 134.52331938301
Iteration: 3, Func. Count: 18, Neg. LLF: 134.73143199952352
Iteration: 4, Func. Count: 24, Neg. LLF: 132.29106984368445
Iteration: 5, Func. Count: 29, Neg. LLF: 132.18467863007658
Iteration: 6, Func. Count: 35, Neg. LLF: 132.05987212483453
Iteration: 7, Func. Count: 40, Neg. LLF: 132.05612656336663
Iteration: 8, Func. Count: 45, Neg. LLF: 132.05556104283588
Iteration: 9, Func. Count: 50, Neg. LLF: 132.055555808785
Iteration: 10, Func. Count: 55, Neg. LLF: 132.05555434335474
Iteration: 11, Func. Count: 59, Neg. LLF: 132.05555434335656
Optimization terminated successfully (Exit mode 0)
Current function value: 132.05555434335474
Iterations: 11
Function evaluations: 59
Gradient evaluations: 11
Iteration: 1, Func. Count: 7, Neg. LLF: 19872444.04139368
Iteration: 2, Func. Count: 15, Neg. LLF: 131.2585055496554
Iteration: 3, Func. Count: 22, Neg. LLF: 150.9501615213052
Iteration: 4, Func. Count: 29, Neg. LLF: 131.46909393876317
Iteration: 5, Func. Count: 36, Neg. LLF: 130.65070489392713
Iteration: 6, Func. Count: 42, Neg. LLF: 130.53110487783457
Iteration: 7, Func. Count: 48, Neg. LLF: 131.6124554865269
Iteration: 8, Func. Count: 56, Neg. LLF: 130.63990232235238
Iteration: 9, Func. Count: 63, Neg. LLF: 130.30134370471222
Iteration: 10, Func. Count: 69, Neg. LLF: 130.28402583084073
Iteration: 11, Func. Count: 75, Neg. LLF: 130.27760791340944
Iteration: 12, Func. Count: 81, Neg. LLF: 130.2762049221385
Iteration: 13, Func. Count: 87, Neg. LLF: 130.27615057426925
Iteration: 14, Func. Count: 93, Neg. LLF: 130.27614822959004
Iteration: 15, Func. Count: 98, Neg. LLF: 130.27614822959092
Optimization terminated successfully (Exit mode 0)
Current function value: 130.27614822959004
Iterations: 15
Function evaluations: 98
Gradient evaluations: 15
Iteration: 1, Func. Count: 8, Neg. LLF: 782.8946990566574
Iteration: 2, Func. Count: 17, Neg. LLF: 134.78023691802176
Iteration: 3, Func. Count: 25, Neg. LLF: 134.39334347881123
Iteration: 4, Func. Count: 33, Neg. LLF: 132.4871111982681
Iteration: 5, Func. Count: 41, Neg. LLF: 130.5980449061342
Iteration: 6, Func. Count: 49, Neg. LLF: 130.4953353917247
Iteration: 7, Func. Count: 57, Neg. LLF: 130.1971849629876
Iteration: 8, Func. Count: 64, Neg. LLF: 130.1596368849474
Iteration: 9, Func. Count: 71, Neg. LLF: 130.16345316137753
Iteration: 10, Func. Count: 79, Neg. LLF: 130.15370357926588
Iteration: 11, Func. Count: 86, Neg. LLF: 130.1534534214604
Iteration: 12, Func. Count: 93, Neg. LLF: 130.15345004784464
Iteration: 13, Func. Count: 99, Neg. LLF: 130.15345004784496
Optimization terminated successfully (Exit mode 0)
Current function value: 130.15345004784464
Iterations: 13
Function evaluations: 99
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 2785.0583233597144
Iteration: 2, Func. Count: 19, Neg. LLF: 177.77098552837458
Iteration: 3, Func. Count: 28, Neg. LLF: 133.0450357043519
Iteration: 4, Func. Count: 37, Neg. LLF: 132.36863095476298
Iteration: 5, Func. Count: 46, Neg. LLF: 130.23345966914508
Iteration: 6, Func. Count: 54, Neg. LLF: 130.93495706536976
Iteration: 7, Func. Count: 63, Neg. LLF: 130.6411816944136
Iteration: 8, Func. Count: 72, Neg. LLF: 130.1957269776531
Iteration: 9, Func. Count: 81, Neg. LLF: 130.1569231616248
Iteration: 10, Func. Count: 89, Neg. LLF: 130.15352214436862
Iteration: 11, Func. Count: 97, Neg. LLF: 130.1534506632963
Iteration: 12, Func. Count: 105, Neg. LLF: 130.15344994566186
Optimization terminated successfully (Exit mode 0)
Current function value: 130.15344994566186
Iterations: 12
Function evaluations: 105
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 19734050.379704565
Iteration: 2, Func. Count: 21, Neg. LLF: 168.3858325483554
Iteration: 3, Func. Count: 31, Neg. LLF: 131.5237592201792
Iteration: 4, Func. Count: 41, Neg. LLF: 130.68752632930514
Iteration: 5, Func. Count: 51, Neg. LLF: 130.40183557862062
Iteration: 6, Func. Count: 61, Neg. LLF: 130.26520825237426
Iteration: 7, Func. Count: 71, Neg. LLF: 130.1939704040702
Iteration: 8, Func. Count: 80, Neg. LLF: 130.78909484166064
Iteration: 9, Func. Count: 90, Neg. LLF: 130.16560288812363
Iteration: 10, Func. Count: 99, Neg. LLF: 130.15406330230437
Iteration: 11, Func. Count: 108, Neg. LLF: 130.1535139497485
Iteration: 12, Func. Count: 117, Neg. LLF: 130.15345699666187
Iteration: 13, Func. Count: 126, Neg. LLF: 130.15345026801845
Iteration: 14, Func. Count: 134, Neg. LLF: 130.15345027012157
Optimization terminated successfully (Exit mode 0)
Current function value: 130.15345026801845
Iterations: 14
Function evaluations: 134
Gradient evaluations: 14
Iteration: 1, Func. Count: 7, Neg. LLF: 136.45052564701817
Iteration: 2, Func. Count: 14, Neg. LLF: 132.29402448090886
Iteration: 3, Func. Count: 20, Neg. LLF: 132.2821740544225
Iteration: 4, Func. Count: 27, Neg. LLF: 132.42452734457385
Iteration: 5, Func. Count: 34, Neg. LLF: 132.07421899420734
Iteration: 6, Func. Count: 41, Neg. LLF: 132.05591748418502
Iteration: 7, Func. Count: 47, Neg. LLF: 132.05555519860997
Iteration: 8, Func. Count: 53, Neg. LLF: 132.0555543465309
Optimization terminated successfully (Exit mode 0)
Current function value: 132.0555543465309
Iterations: 8
Function evaluations: 53
Gradient evaluations: 8
Iteration: 1, Func. Count: 8, Neg. LLF: 19879547.735786084
Iteration: 2, Func. Count: 17, Neg. LLF: 131.3811409388572
Iteration: 3, Func. Count: 25, Neg. LLF: 153.28122848217154
Iteration: 4, Func. Count: 33, Neg. LLF: 131.6225666845636
Iteration: 5, Func. Count: 41, Neg. LLF: 130.3065023781573
Iteration: 6, Func. Count: 48, Neg. LLF: 130.4232451208088
Iteration: 7, Func. Count: 56, Neg. LLF: 130.28968070710584
Iteration: 8, Func. Count: 63, Neg. LLF: 130.27847915267404
Iteration: 9, Func. Count: 70, Neg. LLF: 130.276181900756
Iteration: 10, Func. Count: 77, Neg. LLF: 130.27614897548295
Iteration: 11, Func. Count: 84, Neg. LLF: 130.2761486919311
Optimization terminated successfully (Exit mode 0)
Current function value: 130.2761486919311
Iterations: 11
Function evaluations: 84
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 785.8120943252829
Iteration: 2, Func. Count: 19, Neg. LLF: 134.57939826593378
Iteration: 3, Func. Count: 28, Neg. LLF: 134.35945871139813
Iteration: 4, Func. Count: 37, Neg. LLF: 132.41579167538038
Iteration: 5, Func. Count: 46, Neg. LLF: 130.6555566418528
Iteration: 6, Func. Count: 55, Neg. LLF: 130.4873880952842
Iteration: 7, Func. Count: 64, Neg. LLF: 130.19890814050456
Iteration: 8, Func. Count: 72, Neg. LLF: 130.16013104319885
Iteration: 9, Func. Count: 80, Neg. LLF: 130.16415835638222
Iteration: 10, Func. Count: 89, Neg. LLF: 130.15369169091946
Iteration: 11, Func. Count: 97, Neg. LLF: 130.1534541613211
Iteration: 12, Func. Count: 105, Neg. LLF: 130.15345008085455
Iteration: 13, Func. Count: 112, Neg. LLF: 130.15345008089892
Optimization terminated successfully (Exit mode 0)
Current function value: 130.15345008085455
Iterations: 13
Function evaluations: 112
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 2753.669938884784
Iteration: 2, Func. Count: 21, Neg. LLF: 172.02542215777527
Iteration: 3, Func. Count: 31, Neg. LLF: 132.44898115018066
Iteration: 4, Func. Count: 41, Neg. LLF: 132.15604801109
Iteration: 5, Func. Count: 51, Neg. LLF: 130.35113449084173
Iteration: 6, Func. Count: 60, Neg. LLF: 130.57696796198218
Iteration: 7, Func. Count: 70, Neg. LLF: 130.59128816880593
Iteration: 8, Func. Count: 80, Neg. LLF: 130.4549176458441
Iteration: 9, Func. Count: 90, Neg. LLF: 130.1545424766575
Iteration: 10, Func. Count: 99, Neg. LLF: 130.15348332117765
Iteration: 11, Func. Count: 108, Neg. LLF: 130.15345126223815
Iteration: 12, Func. Count: 117, Neg. LLF: 130.15344998465525
Iteration: 13, Func. Count: 125, Neg. LLF: 130.15344999188767
Optimization terminated successfully (Exit mode 0)
Current function value: 130.15344998465525
Iterations: 13
Function evaluations: 125
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 19734219.857829668
Iteration: 2, Func. Count: 23, Neg. LLF: 163.73397641902736
Iteration: 3, Func. Count: 34, Neg. LLF: 131.57372204110027
Iteration: 4, Func. Count: 45, Neg. LLF: 130.6612526173087
Iteration: 5, Func. Count: 56, Neg. LLF: 130.68326393892323
Iteration: 6, Func. Count: 67, Neg. LLF: 130.24788684070987
Iteration: 7, Func. Count: 77, Neg. LLF: 130.17261699824684
Iteration: 8, Func. Count: 87, Neg. LLF: 132.46008579237386
Iteration: 9, Func. Count: 98, Neg. LLF: 130.15400419171652
Iteration: 10, Func. Count: 108, Neg. LLF: 130.15354307474232
Iteration: 11, Func. Count: 118, Neg. LLF: 130.15345542535755
Iteration: 12, Func. Count: 128, Neg. LLF: 130.1534504525602
Iteration: 13, Func. Count: 138, Neg. LLF: 130.15344993237434
Optimization terminated successfully (Exit mode 0)
Current function value: 130.15344993237434
Iterations: 13
Function evaluations: 138
Gradient evaluations: 13
Iteration: 1, Func. Count: 8, Neg. LLF: 135.19359120798677
Iteration: 2, Func. Count: 17, Neg. LLF: 133.47193894275082
Iteration: 3, Func. Count: 25, Neg. LLF: 132.93778619029956
Iteration: 4, Func. Count: 33, Neg. LLF: 132.26758702357404
Iteration: 5, Func. Count: 40, Neg. LLF: 132.31738459588584
Iteration: 6, Func. Count: 48, Neg. LLF: 132.37602700552546
Iteration: 7, Func. Count: 56, Neg. LLF: 132.1572730714128
Iteration: 8, Func. Count: 64, Neg. LLF: 132.0535204751551
Iteration: 9, Func. Count: 71, Neg. LLF: 132.05254114988293
Iteration: 10, Func. Count: 78, Neg. LLF: 132.0524276860716
Iteration: 11, Func. Count: 85, Neg. LLF: 132.05240426877194
Iteration: 12, Func. Count: 91, Neg. LLF: 132.05240426877128
Optimization terminated successfully (Exit mode 0)
Current function value: 132.05240426877194
Iterations: 12
Function evaluations: 91
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 19896320.444893755
Iteration: 2, Func. Count: 19, Neg. LLF: 131.619707093842
Iteration: 3, Func. Count: 28, Neg. LLF: 155.07566882208042
Iteration: 4, Func. Count: 37, Neg. LLF: 132.41060417168393
Iteration: 5, Func. Count: 46, Neg. LLF: 130.54978406471966
Iteration: 6, Func. Count: 54, Neg. LLF: 132.5462064697549
Iteration: 7, Func. Count: 63, Neg. LLF: 136.40484246174685
Iteration: 8, Func. Count: 74, Neg. LLF: 130.28338257499172
Iteration: 9, Func. Count: 82, Neg. LLF: 130.2763157853948
Iteration: 10, Func. Count: 90, Neg. LLF: 130.27618604450583
Iteration: 11, Func. Count: 98, Neg. LLF: 130.27615858150352
Iteration: 12, Func. Count: 106, Neg. LLF: 130.27614867335527
Iteration: 13, Func. Count: 113, Neg. LLF: 130.2761486723872
Optimization terminated successfully (Exit mode 0)
Current function value: 130.27614867335527
Iterations: 13
Function evaluations: 113
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 800.0378050154458
Iteration: 2, Func. Count: 21, Neg. LLF: 134.78039062806593
Iteration: 3, Func. Count: 31, Neg. LLF: 134.2646266542823
Iteration: 4, Func. Count: 41, Neg. LLF: 132.4578702447692
Iteration: 5, Func. Count: 51, Neg. LLF: 130.62426623396493
Iteration: 6, Func. Count: 61, Neg. LLF: 130.4850813995478
Iteration: 7, Func. Count: 71, Neg. LLF: 130.19907043351637
Iteration: 8, Func. Count: 80, Neg. LLF: 130.15983673433396
Iteration: 9, Func. Count: 89, Neg. LLF: 130.1639428713741
Iteration: 10, Func. Count: 99, Neg. LLF: 130.15367699287054
Iteration: 11, Func. Count: 108, Neg. LLF: 130.1534536536079
Iteration: 12, Func. Count: 117, Neg. LLF: 130.15345004950456
Iteration: 13, Func. Count: 125, Neg. LLF: 130.15345004953787
Optimization terminated successfully (Exit mode 0)
Current function value: 130.15345004950456
Iterations: 13
Function evaluations: 125
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 2881.934365212611
Iteration: 2, Func. Count: 23, Neg. LLF: 176.7476030847873
Iteration: 3, Func. Count: 34, Neg. LLF: 133.1918712819343
Iteration: 4, Func. Count: 45, Neg. LLF: 132.3597352443891
Iteration: 5, Func. Count: 56, Neg. LLF: 130.22331746093997
Iteration: 6, Func. Count: 66, Neg. LLF: 130.95301345216234
Iteration: 7, Func. Count: 77, Neg. LLF: 130.52888296083918
Iteration: 8, Func. Count: 88, Neg. LLF: 130.18484539249474
Iteration: 9, Func. Count: 99, Neg. LLF: 130.16025096315497
Iteration: 10, Func. Count: 110, Neg. LLF: 130.15348795361243
Iteration: 11, Func. Count: 120, Neg. LLF: 130.15344994852552
Iteration: 12, Func. Count: 129, Neg. LLF: 130.15344995578826
Optimization terminated successfully (Exit mode 0)
Current function value: 130.15344994852552
Iterations: 12
Function evaluations: 129
Gradient evaluations: 12
Iteration: 1, Func. Count: 12, Neg. LLF: 19734085.931479387
Iteration: 2, Func. Count: 25, Neg. LLF: 162.57797762211842
Iteration: 3, Func. Count: 37, Neg. LLF: 131.48466068010055
Iteration: 4, Func. Count: 49, Neg. LLF: 130.70915586771426
Iteration: 5, Func. Count: 61, Neg. LLF: 130.42020277129998
Iteration: 6, Func. Count: 73, Neg. LLF: 130.2554860334725
Iteration: 7, Func. Count: 85, Neg. LLF: 130.1808965052969
Iteration: 8, Func. Count: 96, Neg. LLF: 130.79644029142918
Iteration: 9, Func. Count: 108, Neg. LLF: 130.15901126199512
Iteration: 10, Func. Count: 119, Neg. LLF: 130.1536961194155
Iteration: 11, Func. Count: 130, Neg. LLF: 130.15347593649415
Iteration: 12, Func. Count: 141, Neg. LLF: 130.15345265340275
Iteration: 13, Func. Count: 152, Neg. LLF: 130.15344994291615
Iteration: 14, Func. Count: 162, Neg. LLF: 130.1534499450594
Optimization terminated successfully (Exit mode 0)
Current function value: 130.15344994291615
Iterations: 14
Function evaluations: 162
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 135.2107070208224
Iteration: 2, Func. Count: 19, Neg. LLF: 135.05531436146902
Iteration: 3, Func. Count: 28, Neg. LLF: 134.324129376544
Iteration: 4, Func. Count: 37, Neg. LLF: 132.76148154538714
Iteration: 5, Func. Count: 46, Neg. LLF: 132.09869456612586
Iteration: 6, Func. Count: 54, Neg. LLF: 132.19102331844962
Iteration: 7, Func. Count: 63, Neg. LLF: 132.055751701442
Iteration: 8, Func. Count: 71, Neg. LLF: 132.05255377363613
Iteration: 9, Func. Count: 79, Neg. LLF: 132.05240606780808
Iteration: 10, Func. Count: 87, Neg. LLF: 132.05240432265805
Iteration: 11, Func. Count: 94, Neg. LLF: 132.05240433472687
Optimization terminated successfully (Exit mode 0)
Current function value: 132.05240432265805
Iterations: 11
Function evaluations: 94
Gradient evaluations: 11
Iteration: 1, Func. Count: 10, Neg. LLF: 19898553.21703055
Iteration: 2, Func. Count: 21, Neg. LLF: 131.64983859519356
Iteration: 3, Func. Count: 31, Neg. LLF: 155.1094235514965
Iteration: 4, Func. Count: 41, Neg. LLF: 132.48204074621762
Iteration: 5, Func. Count: 51, Neg. LLF: 130.57788754309223
Iteration: 6, Func. Count: 60, Neg. LLF: 132.78094786364588
Iteration: 7, Func. Count: 70, Neg. LLF: 136.62027979075313
Iteration: 8, Func. Count: 82, Neg. LLF: 130.28365097282702
Iteration: 9, Func. Count: 91, Neg. LLF: 130.2763330367754
Iteration: 10, Func. Count: 100, Neg. LLF: 130.27617836903852
Iteration: 11, Func. Count: 109, Neg. LLF: 130.27615771976065
Iteration: 12, Func. Count: 118, Neg. LLF: 130.27614857273997
Iteration: 13, Func. Count: 126, Neg. LLF: 130.27614857208718
Optimization terminated successfully (Exit mode 0)
Current function value: 130.27614857273997
Iterations: 13
Function evaluations: 126
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 808.5476009690256
Iteration: 2, Func. Count: 23, Neg. LLF: 134.88171642981453
Iteration: 3, Func. Count: 34, Neg. LLF: 134.30099487936127
Iteration: 4, Func. Count: 45, Neg. LLF: 132.4547753361533
Iteration: 5, Func. Count: 56, Neg. LLF: 130.63012059019235
Iteration: 6, Func. Count: 67, Neg. LLF: 130.47983122611708
Iteration: 7, Func. Count: 78, Neg. LLF: 130.197597963572
Iteration: 8, Func. Count: 88, Neg. LLF: 130.16033771708948
Iteration: 9, Func. Count: 98, Neg. LLF: 130.1651773315689
Iteration: 10, Func. Count: 109, Neg. LLF: 130.15367343368078
Iteration: 11, Func. Count: 119, Neg. LLF: 130.15345386606754
Iteration: 12, Func. Count: 129, Neg. LLF: 130.1534500654855
Iteration: 13, Func. Count: 138, Neg. LLF: 130.1534500655294
Optimization terminated successfully (Exit mode 0)
Current function value: 130.1534500654855
Iterations: 13
Function evaluations: 138
Gradient evaluations: 13
Iteration: 1, Func. Count: 12, Neg. LLF: 2990.627067777376
Iteration: 2, Func. Count: 25, Neg. LLF: 176.86875818911628
Iteration: 3, Func. Count: 37, Neg. LLF: 133.34561656271956
Iteration: 4, Func. Count: 49, Neg. LLF: 132.3852842397662
Iteration: 5, Func. Count: 61, Neg. LLF: 130.22392380832596
Iteration: 6, Func. Count: 72, Neg. LLF: 130.96291518706735
Iteration: 7, Func. Count: 84, Neg. LLF: 130.42252299636175
Iteration: 8, Func. Count: 96, Neg. LLF: 130.19419970319362
Iteration: 9, Func. Count: 108, Neg. LLF: 130.16015101903818
Iteration: 10, Func. Count: 120, Neg. LLF: 130.15347314594035
Iteration: 11, Func. Count: 131, Neg. LLF: 130.15344994692197
Iteration: 12, Func. Count: 141, Neg. LLF: 130.15344995420213
Optimization terminated successfully (Exit mode 0)
Current function value: 130.15344994692197
Iterations: 12
Function evaluations: 141
Gradient evaluations: 12
Iteration: 1, Func. Count: 13, Neg. LLF: 19734201.858343486
Iteration: 2, Func. Count: 27, Neg. LLF: 167.6461179623313
Iteration: 3, Func. Count: 40, Neg. LLF: 131.4686201213201
Iteration: 4, Func. Count: 53, Neg. LLF: 130.73121614526931
Iteration: 5, Func. Count: 66, Neg. LLF: 130.37058030805665
Iteration: 6, Func. Count: 79, Neg. LLF: 130.25494242428186
Iteration: 7, Func. Count: 92, Neg. LLF: 130.17066654526852
Iteration: 8, Func. Count: 104, Neg. LLF: 130.83115197842622
Iteration: 9, Func. Count: 117, Neg. LLF: 130.15646080876334
Iteration: 10, Func. Count: 129, Neg. LLF: 130.15356623836985
Iteration: 11, Func. Count: 141, Neg. LLF: 130.15346380829916
Iteration: 12, Func. Count: 153, Neg. LLF: 130.15345082010683
Iteration: 13, Func. Count: 165, Neg. LLF: 130.1534499336055
Optimization terminated successfully (Exit mode 0)
Current function value: 130.1534499336055
Iterations: 13
Function evaluations: 165
Gradient evaluations: 13
Iteration: 1, Func. Count: 6, Neg. LLF: 135.13304626351157
Iteration: 2, Func. Count: 12, Neg. LLF: 132.7617656665475
Iteration: 3, Func. Count: 18, Neg. LLF: 133.6614288270526
Iteration: 4, Func. Count: 24, Neg. LLF: 132.38132867648463
Iteration: 5, Func. Count: 30, Neg. LLF: 132.15271197001252
Iteration: 6, Func. Count: 35, Neg. LLF: 132.14358221566607
Iteration: 7, Func. Count: 40, Neg. LLF: 132.14263462936373
Iteration: 8, Func. Count: 45, Neg. LLF: 132.14244367156908
Iteration: 9, Func. Count: 50, Neg. LLF: 132.14244276114263
Optimization terminated successfully (Exit mode 0)
Current function value: 132.14244276114263
Iterations: 9
Function evaluations: 50
Gradient evaluations: 9
Iteration: 1, Func. Count: 7, Neg. LLF: 19938348.640452385
Iteration: 2, Func. Count: 15, Neg. LLF: 132.81357756771922
Iteration: 3, Func. Count: 22, Neg. LLF: 147.9037772634003
Iteration: 4, Func. Count: 29, Neg. LLF: 136.86353758667764
Iteration: 5, Func. Count: 36, Neg. LLF: 133.58137155959705
Iteration: 6, Func. Count: 43, Neg. LLF: 131.66372463381506
Iteration: 7, Func. Count: 50, Neg. LLF: 130.73506615409048
Iteration: 8, Func. Count: 56, Neg. LLF: 131.69379762012457
Iteration: 9, Func. Count: 63, Neg. LLF: 134.123075215584
Iteration: 10, Func. Count: 72, Neg. LLF: 130.3450127613954
Iteration: 11, Func. Count: 78, Neg. LLF: 130.2860695018942
Iteration: 12, Func. Count: 84, Neg. LLF: 130.27737531344718
Iteration: 13, Func. Count: 90, Neg. LLF: 130.2764714300421
Iteration: 14, Func. Count: 96, Neg. LLF: 130.27616981709636
Iteration: 15, Func. Count: 102, Neg. LLF: 130.2761484915059
Iteration: 16, Func. Count: 107, Neg. LLF: 130.27614849097273
Optimization terminated successfully (Exit mode 0)
Current function value: 130.2761484915059
Iterations: 16
Function evaluations: 107
Gradient evaluations: 16
Iteration: 1, Func. Count: 8, Neg. LLF: 712.6250399609879
Iteration: 2, Func. Count: 17, Neg. LLF: 131.51865838337918
Iteration: 3, Func. Count: 25, Neg. LLF: 130.32855222082367
Iteration: 4, Func. Count: 32, Neg. LLF: 131.89182893453753
Iteration: 5, Func. Count: 40, Neg. LLF: 130.26908817074727
Iteration: 6, Func. Count: 48, Neg. LLF: 130.211245811272
Iteration: 7, Func. Count: 56, Neg. LLF: 130.18728110284115
Iteration: 8, Func. Count: 63, Neg. LLF: 130.1660167785969
Iteration: 9, Func. Count: 70, Neg. LLF: 130.16453672937007
Iteration: 10, Func. Count: 77, Neg. LLF: 130.16424069027505
Iteration: 11, Func. Count: 84, Neg. LLF: 130.1641742181019
Iteration: 12, Func. Count: 91, Neg. LLF: 130.16417352785902
Optimization terminated successfully (Exit mode 0)
Current function value: 130.16417352785902
Iterations: 12
Function evaluations: 91
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 1477.831378854161
Iteration: 2, Func. Count: 19, Neg. LLF: 131.49312953201758
Iteration: 3, Func. Count: 28, Neg. LLF: 130.44701004748265
Iteration: 4, Func. Count: 36, Neg. LLF: 130.29732576819703
Iteration: 5, Func. Count: 44, Neg. LLF: 130.648114799923
Iteration: 6, Func. Count: 53, Neg. LLF: 130.2019567868822
Iteration: 7, Func. Count: 61, Neg. LLF: 130.18223731011128
Iteration: 8, Func. Count: 69, Neg. LLF: 130.1980588837671
Iteration: 9, Func. Count: 78, Neg. LLF: 130.18490077561006
Iteration: 10, Func. Count: 87, Neg. LLF: 130.16498505495318
Iteration: 11, Func. Count: 95, Neg. LLF: 130.16423012358226
Iteration: 12, Func. Count: 103, Neg. LLF: 130.16417681378792
Iteration: 13, Func. Count: 111, Neg. LLF: 130.16417352331234
Iteration: 14, Func. Count: 118, Neg. LLF: 130.16417352333121
Optimization terminated successfully (Exit mode 0)
Current function value: 130.16417352331234
Iterations: 14
Function evaluations: 118
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 7363.948959889238
Iteration: 2, Func. Count: 21, Neg. LLF: 131.50695801476206
Iteration: 3, Func. Count: 31, Neg. LLF: 130.60550233495618
Iteration: 4, Func. Count: 40, Neg. LLF: 130.47241490333872
Iteration: 5, Func. Count: 49, Neg. LLF: 130.95381252200215
Iteration: 6, Func. Count: 59, Neg. LLF: 130.19836505850387
Iteration: 7, Func. Count: 68, Neg. LLF: 130.17179446182615
Iteration: 8, Func. Count: 77, Neg. LLF: 130.31041046350177
Iteration: 9, Func. Count: 87, Neg. LLF: 130.16728844352883
Iteration: 10, Func. Count: 96, Neg. LLF: 130.1642264064589
Iteration: 11, Func. Count: 105, Neg. LLF: 130.16418176453564
Iteration: 12, Func. Count: 114, Neg. LLF: 130.16417566311523
Iteration: 13, Func. Count: 123, Neg. LLF: 130.1641735182679
Iteration: 14, Func. Count: 131, Neg. LLF: 130.16417352172084
Optimization terminated successfully (Exit mode 0)
Current function value: 130.1641735182679
Iterations: 14
Function evaluations: 131
Gradient evaluations: 14
Iteration: 1, Func. Count: 7, Neg. LLF: 134.85618899682592
Iteration: 2, Func. Count: 15, Neg. LLF: 132.99945318928945
Iteration: 3, Func. Count: 22, Neg. LLF: 133.00293241137797
Iteration: 4, Func. Count: 29, Neg. LLF: 132.6506616532013
Iteration: 5, Func. Count: 36, Neg. LLF: 132.3088119466569
Iteration: 6, Func. Count: 43, Neg. LLF: 132.0060349421661
Iteration: 7, Func. Count: 49, Neg. LLF: 132.00519099079457
Iteration: 8, Func. Count: 55, Neg. LLF: 132.00509686527494
Iteration: 9, Func. Count: 61, Neg. LLF: 132.00509418856254
Iteration: 10, Func. Count: 66, Neg. LLF: 132.00509418855913
Optimization terminated successfully (Exit mode 0)
Current function value: 132.00509418856254
Iterations: 10
Function evaluations: 66
Gradient evaluations: 10
Iteration: 1, Func. Count: 8, Neg. LLF: 20030828.81295722
Iteration: 2, Func. Count: 17, Neg. LLF: 133.6776299940419
Iteration: 3, Func. Count: 25, Neg. LLF: 133.32972635063547
Iteration: 4, Func. Count: 33, Neg. LLF: 143.58271667686842
Iteration: 5, Func. Count: 41, Neg. LLF: 134.93503062917534
Iteration: 6, Func. Count: 49, Neg. LLF: 131.7715086532183
Iteration: 7, Func. Count: 57, Neg. LLF: 130.4681888576332
Iteration: 8, Func. Count: 64, Neg. LLF: 131.50505387991376
Iteration: 9, Func. Count: 72, Neg. LLF: 130.72512923306186
Iteration: 10, Func. Count: 80, Neg. LLF: 130.28244121447835
Iteration: 11, Func. Count: 87, Neg. LLF: 130.27648515407378
Iteration: 12, Func. Count: 94, Neg. LLF: 130.27617092702863
Iteration: 13, Func. Count: 101, Neg. LLF: 130.2761485587821
Iteration: 14, Func. Count: 107, Neg. LLF: 130.27614855794698
Optimization terminated successfully (Exit mode 0)
Current function value: 130.2761485587821
Iterations: 14
Function evaluations: 107
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 659.6864521308614
Iteration: 2, Func. Count: 19, Neg. LLF: 131.60512630761676
Iteration: 3, Func. Count: 28, Neg. LLF: 131.08750344096964
Iteration: 4, Func. Count: 37, Neg. LLF: 130.6498326719317
Iteration: 5, Func. Count: 45, Neg. LLF: 133.2680746950101
Iteration: 6, Func. Count: 54, Neg. LLF: 149.53885312419982
Iteration: 7, Func. Count: 63, Neg. LLF: 130.29175024961668
Iteration: 8, Func. Count: 71, Neg. LLF: 130.17905471370514
Iteration: 9, Func. Count: 79, Neg. LLF: 130.17907317884826
Iteration: 10, Func. Count: 88, Neg. LLF: 130.15519117747152
Iteration: 11, Func. Count: 96, Neg. LLF: 130.15387322559928
Iteration: 12, Func. Count: 104, Neg. LLF: 130.15354246637762
Iteration: 13, Func. Count: 112, Neg. LLF: 130.15345286199567
Iteration: 14, Func. Count: 120, Neg. LLF: 130.15345001624976
Iteration: 15, Func. Count: 127, Neg. LLF: 130.1534500162421
Optimization terminated successfully (Exit mode 0)
Current function value: 130.15345001624976
Iterations: 15
Function evaluations: 127
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 1267.1530623153283
Iteration: 2, Func. Count: 21, Neg. LLF: 131.51532391652677
Iteration: 3, Func. Count: 31, Neg. LLF: 130.72921300780334
Iteration: 4, Func. Count: 40, Neg. LLF: 130.5604483483933
Iteration: 5, Func. Count: 50, Neg. LLF: 136.87584987624194
Iteration: 6, Func. Count: 60, Neg. LLF: 130.21421462188061
Iteration: 7, Func. Count: 69, Neg. LLF: 130.33088676249824
Iteration: 8, Func. Count: 79, Neg. LLF: 130.15552970652223
Iteration: 9, Func. Count: 88, Neg. LLF: 130.15377603854427
Iteration: 10, Func. Count: 97, Neg. LLF: 130.15346905266432
Iteration: 11, Func. Count: 106, Neg. LLF: 130.15345614571086
Iteration: 12, Func. Count: 115, Neg. LLF: 130.15345207969443
Iteration: 13, Func. Count: 124, Neg. LLF: 130.15344995055733
Iteration: 14, Func. Count: 132, Neg. LLF: 130.15344995792614
Optimization terminated successfully (Exit mode 0)
Current function value: 130.15344995055733
Iterations: 14
Function evaluations: 132
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 1407.6800645193546
Iteration: 2, Func. Count: 23, Neg. LLF: 131.47487415952526
Iteration: 3, Func. Count: 34, Neg. LLF: 130.50675291860915
Iteration: 4, Func. Count: 44, Neg. LLF: 131.25464701694003
Iteration: 5, Func. Count: 55, Neg. LLF: 132.0508251821217
Iteration: 6, Func. Count: 66, Neg. LLF: 130.520442326701
Iteration: 7, Func. Count: 77, Neg. LLF: 130.212180718924
Iteration: 8, Func. Count: 87, Neg. LLF: 130.15831268072205
Iteration: 9, Func. Count: 97, Neg. LLF: 130.15905556362068
Iteration: 10, Func. Count: 108, Neg. LLF: 130.15418047093547
Iteration: 11, Func. Count: 118, Neg. LLF: 130.15358982570422
Iteration: 12, Func. Count: 128, Neg. LLF: 130.15346468138077
Iteration: 13, Func. Count: 138, Neg. LLF: 130.15345024229572
Iteration: 14, Func. Count: 147, Neg. LLF: 130.15345024416737
Optimization terminated successfully (Exit mode 0)
Current function value: 130.15345024229572
Iterations: 14
Function evaluations: 147
Gradient evaluations: 14
Iteration: 1, Func. Count: 8, Neg. LLF: 135.0885036201893
Iteration: 2, Func. Count: 17, Neg. LLF: 132.42687206479815
Iteration: 3, Func. Count: 24, Neg. LLF: 132.19782656216913
Iteration: 4, Func. Count: 31, Neg. LLF: 133.9037146550534
Iteration: 5, Func. Count: 39, Neg. LLF: 140.46610943183384
Iteration: 6, Func. Count: 47, Neg. LLF: 131.74994399907283
Iteration: 7, Func. Count: 54, Neg. LLF: 131.73305942222697
Iteration: 8, Func. Count: 61, Neg. LLF: 131.72763201345273
Iteration: 9, Func. Count: 68, Neg. LLF: 131.72719765412208
Iteration: 10, Func. Count: 75, Neg. LLF: 131.72717300281045
Iteration: 11, Func. Count: 82, Neg. LLF: 131.72716957587525
Iteration: 12, Func. Count: 88, Neg. LLF: 131.72716953074777
Optimization terminated successfully (Exit mode 0)
Current function value: 131.72716957587525
Iterations: 12
Function evaluations: 88
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 20044422.74336112
Iteration: 2, Func. Count: 19, Neg. LLF: 138.72458840729996
Iteration: 3, Func. Count: 29, Neg. LLF: 130.43345670657078
Iteration: 4, Func. Count: 37, Neg. LLF: 132.9422847044838
Iteration: 5, Func. Count: 46, Neg. LLF: 130.62354634246128
Iteration: 6, Func. Count: 55, Neg. LLF: 130.3273216525286
Iteration: 7, Func. Count: 64, Neg. LLF: 130.1801381130046
Iteration: 8, Func. Count: 73, Neg. LLF: 130.1777484797846
Iteration: 9, Func. Count: 82, Neg. LLF: 130.16231305252444
Iteration: 10, Func. Count: 90, Neg. LLF: 130.16213460648976
Iteration: 11, Func. Count: 97, Neg. LLF: 130.16213460636766
Optimization terminated successfully (Exit mode 0)
Current function value: 130.16213460648976
Iterations: 11
Function evaluations: 97
Gradient evaluations: 11
Iteration: 1, Func. Count: 10, Neg. LLF: 653.5429034937927
Iteration: 2, Func. Count: 21, Neg. LLF: 131.57333512702883
Iteration: 3, Func. Count: 31, Neg. LLF: 131.07100297561743
Iteration: 4, Func. Count: 41, Neg. LLF: 130.64018552453624
Iteration: 5, Func. Count: 50, Neg. LLF: 133.09360450179793
Iteration: 6, Func. Count: 60, Neg. LLF: 148.1187918415699
Iteration: 7, Func. Count: 70, Neg. LLF: 130.47853650406043
Iteration: 8, Func. Count: 80, Neg. LLF: 130.21801057052232
Iteration: 9, Func. Count: 89, Neg. LLF: 130.37176427867817
Iteration: 10, Func. Count: 99, Neg. LLF: 130.16053814851446
Iteration: 11, Func. Count: 108, Neg. LLF: 130.15391506718262
Iteration: 12, Func. Count: 117, Neg. LLF: 130.15352077241812
Iteration: 13, Func. Count: 126, Neg. LLF: 130.15346152084507
Iteration: 14, Func. Count: 135, Neg. LLF: 130.15345040167787
Iteration: 15, Func. Count: 143, Neg. LLF: 130.15345040136066
Optimization terminated successfully (Exit mode 0)
Current function value: 130.15345040167787
Iterations: 15
Function evaluations: 143
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 1233.4980831280293
Iteration: 2, Func. Count: 23, Neg. LLF: 131.50236617945038
Iteration: 3, Func. Count: 34, Neg. LLF: 130.48970320924494
Iteration: 4, Func. Count: 44, Neg. LLF: 130.52503895996557
Iteration: 5, Func. Count: 55, Neg. LLF: 133.9348165341444
Iteration: 6, Func. Count: 67, Neg. LLF: 130.9613740159728
Iteration: 7, Func. Count: 78, Neg. LLF: 130.17075707008087
Iteration: 8, Func. Count: 88, Neg. LLF: 130.15812631222136
Iteration: 9, Func. Count: 98, Neg. LLF: 130.15468659609417
Iteration: 10, Func. Count: 108, Neg. LLF: 130.1537534489363
Iteration: 11, Func. Count: 118, Neg. LLF: 130.15345755879062
Iteration: 12, Func. Count: 128, Neg. LLF: 130.15345127156607
Iteration: 13, Func. Count: 138, Neg. LLF: 130.15345000312593
Iteration: 14, Func. Count: 147, Neg. LLF: 130.15345001040532
Optimization terminated successfully (Exit mode 0)
Current function value: 130.15345000312593
Iterations: 14
Function evaluations: 147
Gradient evaluations: 14
Iteration: 1, Func. Count: 12, Neg. LLF: 3614.055713970512
Iteration: 2, Func. Count: 25, Neg. LLF: 131.52002106172878
Iteration: 3, Func. Count: 37, Neg. LLF: 130.85344746646078
Iteration: 4, Func. Count: 48, Neg. LLF: 130.64993688549953
Iteration: 5, Func. Count: 59, Neg. LLF: 132.67034667157782
Iteration: 6, Func. Count: 72, Neg. LLF: 133.95395037223926
Iteration: 7, Func. Count: 84, Neg. LLF: 130.42051996038737
Iteration: 8, Func. Count: 96, Neg. LLF: 130.16650264094417
Iteration: 9, Func. Count: 107, Neg. LLF: 130.1571843611875
Iteration: 10, Func. Count: 118, Neg. LLF: 130.1536918763859
Iteration: 11, Func. Count: 129, Neg. LLF: 130.1535659829161
Iteration: 12, Func. Count: 140, Neg. LLF: 130.15345008116856
Iteration: 13, Func. Count: 150, Neg. LLF: 130.1534500832592
Optimization terminated successfully (Exit mode 0)
Current function value: 130.15345008116856
Iterations: 13
Function evaluations: 150
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 134.94551516553116
Iteration: 2, Func. Count: 19, Neg. LLF: 133.52737214083666
Iteration: 3, Func. Count: 28, Neg. LLF: 132.2962056983803
Iteration: 4, Func. Count: 37, Neg. LLF: 132.40057446562776
Iteration: 5, Func. Count: 46, Neg. LLF: 132.1402764442267
Iteration: 6, Func. Count: 55, Neg. LLF: 131.76198921708615
Iteration: 7, Func. Count: 63, Neg. LLF: 131.7304679138639
Iteration: 8, Func. Count: 71, Neg. LLF: 131.72742576775363
Iteration: 9, Func. Count: 79, Neg. LLF: 131.7271772810531
Iteration: 10, Func. Count: 87, Neg. LLF: 131.7271700265713
Iteration: 11, Func. Count: 94, Neg. LLF: 131.7271700291877
Optimization terminated successfully (Exit mode 0)
Current function value: 131.7271700265713
Iterations: 11
Function evaluations: 94
Gradient evaluations: 11
Iteration: 1, Func. Count: 10, Neg. LLF: 20070060.174673505
Iteration: 2, Func. Count: 21, Neg. LLF: 138.7965189051703
Iteration: 3, Func. Count: 32, Neg. LLF: 130.4363233078622
Iteration: 4, Func. Count: 41, Neg. LLF: 132.8913628109555
Iteration: 5, Func. Count: 51, Neg. LLF: 130.59039702482838
Iteration: 6, Func. Count: 61, Neg. LLF: 130.28834232354833
Iteration: 7, Func. Count: 71, Neg. LLF: 130.17879346940623
Iteration: 8, Func. Count: 81, Neg. LLF: 130.16828482614451
Iteration: 9, Func. Count: 91, Neg. LLF: 130.16257976492278
Iteration: 10, Func. Count: 101, Neg. LLF: 130.1621345097385
Iteration: 11, Func. Count: 109, Neg. LLF: 130.16213450963824
Optimization terminated successfully (Exit mode 0)
Current function value: 130.1621345097385
Iterations: 11
Function evaluations: 109
Gradient evaluations: 11
Iteration: 1, Func. Count: 11, Neg. LLF: 660.7307604674546
Iteration: 2, Func. Count: 23, Neg. LLF: 131.5866492961669
Iteration: 3, Func. Count: 34, Neg. LLF: 131.08156906371747
Iteration: 4, Func. Count: 45, Neg. LLF: 130.64020888824854
Iteration: 5, Func. Count: 55, Neg. LLF: 133.22075807706696
Iteration: 6, Func. Count: 66, Neg. LLF: 149.84504685864763
Iteration: 7, Func. Count: 77, Neg. LLF: 130.35106191084753
Iteration: 8, Func. Count: 88, Neg. LLF: 130.16327492811482
Iteration: 9, Func. Count: 98, Neg. LLF: 130.23869465407986
Iteration: 10, Func. Count: 109, Neg. LLF: 130.15450244829918
Iteration: 11, Func. Count: 119, Neg. LLF: 130.1537029874103
Iteration: 12, Func. Count: 129, Neg. LLF: 130.15345454887483
Iteration: 13, Func. Count: 139, Neg. LLF: 130.15345144872344
Iteration: 14, Func. Count: 149, Neg. LLF: 130.15344994930962
Iteration: 15, Func. Count: 158, Neg. LLF: 130.15344994927182
Optimization terminated successfully (Exit mode 0)
Current function value: 130.15344994930962
Iterations: 15
Function evaluations: 158
Gradient evaluations: 15
Iteration: 1, Func. Count: 12, Neg. LLF: 1254.454217330577
Iteration: 2, Func. Count: 25, Neg. LLF: 131.49489373839148
Iteration: 3, Func. Count: 37, Neg. LLF: 130.44171703551262
Iteration: 4, Func. Count: 48, Neg. LLF: 130.50038481373667
Iteration: 5, Func. Count: 60, Neg. LLF: 134.0793007035172
Iteration: 6, Func. Count: 72, Neg. LLF: 130.64025531199718
Iteration: 7, Func. Count: 84, Neg. LLF: 130.19317462644838
Iteration: 8, Func. Count: 95, Neg. LLF: 130.16343998760445
Iteration: 9, Func. Count: 106, Neg. LLF: 130.15602296849517
Iteration: 10, Func. Count: 117, Neg. LLF: 130.15399962909322
Iteration: 11, Func. Count: 128, Neg. LLF: 130.1534798735303
Iteration: 12, Func. Count: 139, Neg. LLF: 130.15345431297618
Iteration: 13, Func. Count: 150, Neg. LLF: 130.15345021814684
Iteration: 14, Func. Count: 160, Neg. LLF: 130.15345022548104
Optimization terminated successfully (Exit mode 0)
Current function value: 130.15345021814684
Iterations: 14
Function evaluations: 160
Gradient evaluations: 14
Iteration: 1, Func. Count: 13, Neg. LLF: 3837.651441406857
Iteration: 2, Func. Count: 27, Neg. LLF: 131.49860582346417
Iteration: 3, Func. Count: 40, Neg. LLF: 130.92363377096785
Iteration: 4, Func. Count: 53, Neg. LLF: 130.97853533363
Iteration: 5, Func. Count: 66, Neg. LLF: 131.91870491677315
Iteration: 6, Func. Count: 79, Neg. LLF: 130.50487217756526
Iteration: 7, Func. Count: 92, Neg. LLF: 130.21563760292298
Iteration: 8, Func. Count: 104, Neg. LLF: 130.16504090307603
Iteration: 9, Func. Count: 116, Neg. LLF: 130.15444180303024
Iteration: 10, Func. Count: 128, Neg. LLF: 130.1537737980061
Iteration: 11, Func. Count: 140, Neg. LLF: 130.15349494197412
Iteration: 12, Func. Count: 152, Neg. LLF: 130.15345409026455
Iteration: 13, Func. Count: 164, Neg. LLF: 130.1534500473671
Iteration: 14, Func. Count: 175, Neg. LLF: 130.15345004956467
Optimization terminated successfully (Exit mode 0)
Current function value: 130.1534500473671
Iterations: 14
Function evaluations: 175
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 134.7059754922773
Iteration: 2, Func. Count: 21, Neg. LLF: 133.98456569184427
Iteration: 3, Func. Count: 31, Neg. LLF: 132.14985193557234
Iteration: 4, Func. Count: 40, Neg. LLF: 132.15278439542143
Iteration: 5, Func. Count: 50, Neg. LLF: 133.85995103343475
Iteration: 6, Func. Count: 60, Neg. LLF: 131.73000949043833
Iteration: 7, Func. Count: 69, Neg. LLF: 131.72852696147518
Iteration: 8, Func. Count: 78, Neg. LLF: 131.72780386968566
Iteration: 9, Func. Count: 87, Neg. LLF: 131.72717943569953
Iteration: 10, Func. Count: 96, Neg. LLF: 131.7271698079644
Iteration: 11, Func. Count: 104, Neg. LLF: 131.72716983736132
Optimization terminated successfully (Exit mode 0)
Current function value: 131.7271698079644
Iterations: 11
Function evaluations: 104
Gradient evaluations: 11
Iteration: 1, Func. Count: 11, Neg. LLF: 20075410.391633354
Iteration: 2, Func. Count: 23, Neg. LLF: 138.8058265894799
Iteration: 3, Func. Count: 35, Neg. LLF: 130.43540036406188
Iteration: 4, Func. Count: 45, Neg. LLF: 132.8870698992709
Iteration: 5, Func. Count: 56, Neg. LLF: 130.5467193581567
Iteration: 6, Func. Count: 67, Neg. LLF: 130.2608473847911
Iteration: 7, Func. Count: 78, Neg. LLF: 130.17655149161558
Iteration: 8, Func. Count: 89, Neg. LLF: 130.16594966110983
Iteration: 9, Func. Count: 100, Neg. LLF: 130.16256147565167
Iteration: 10, Func. Count: 111, Neg. LLF: 130.16213450971486
Iteration: 11, Func. Count: 120, Neg. LLF: 130.16213450965734
Optimization terminated successfully (Exit mode 0)
Current function value: 130.16213450971486
Iterations: 11
Function evaluations: 120
Gradient evaluations: 11
Iteration: 1, Func. Count: 12, Neg. LLF: 663.233541192029
Iteration: 2, Func. Count: 25, Neg. LLF: 131.590146307516
Iteration: 3, Func. Count: 37, Neg. LLF: 131.0779899276286
Iteration: 4, Func. Count: 49, Neg. LLF: 130.63331422444705
Iteration: 5, Func. Count: 60, Neg. LLF: 133.31315454889827
Iteration: 6, Func. Count: 72, Neg. LLF: 149.26841659747802
Iteration: 7, Func. Count: 84, Neg. LLF: 130.35533125175408
Iteration: 8, Func. Count: 96, Neg. LLF: 130.16229538719924
Iteration: 9, Func. Count: 107, Neg. LLF: 130.19765616122802
Iteration: 10, Func. Count: 119, Neg. LLF: 130.15443140775187
Iteration: 11, Func. Count: 130, Neg. LLF: 130.1536542809277
Iteration: 12, Func. Count: 141, Neg. LLF: 130.153454161912
Iteration: 13, Func. Count: 152, Neg. LLF: 130.15345129861757
Iteration: 14, Func. Count: 163, Neg. LLF: 130.1534499472675
Iteration: 15, Func. Count: 173, Neg. LLF: 130.1534499472203
Optimization terminated successfully (Exit mode 0)
Current function value: 130.1534499472675
Iterations: 15
Function evaluations: 173
Gradient evaluations: 15
Iteration: 1, Func. Count: 13, Neg. LLF: 1268.3446697714405
Iteration: 2, Func. Count: 27, Neg. LLF: 131.49647823825092
Iteration: 3, Func. Count: 40, Neg. LLF: 130.4165986682799
Iteration: 4, Func. Count: 52, Neg. LLF: 130.4009712539482
Iteration: 5, Func. Count: 65, Neg. LLF: 130.42611889237392
Iteration: 6, Func. Count: 78, Neg. LLF: 130.43238796483928
Iteration: 7, Func. Count: 91, Neg. LLF: 130.36182904745414
Iteration: 8, Func. Count: 104, Neg. LLF: 130.25340166571908
Iteration: 9, Func. Count: 116, Neg. LLF: 130.21240904504975
Iteration: 10, Func. Count: 128, Neg. LLF: 130.1643953551722
Iteration: 11, Func. Count: 140, Neg. LLF: 130.15779673221348
Iteration: 12, Func. Count: 152, Neg. LLF: 130.15457590355146
Iteration: 13, Func. Count: 164, Neg. LLF: 130.15374245979427
Iteration: 14, Func. Count: 176, Neg. LLF: 130.1534918386588
Iteration: 15, Func. Count: 188, Neg. LLF: 130.15345282279904
Iteration: 16, Func. Count: 200, Neg. LLF: 130.1534500872209
Iteration: 17, Func. Count: 211, Neg. LLF: 130.15345009467177
Optimization terminated successfully (Exit mode 0)
Current function value: 130.1534500872209
Iterations: 17
Function evaluations: 211
Gradient evaluations: 17
Iteration: 1, Func. Count: 14, Neg. LLF: 4014.504195838024
Iteration: 2, Func. Count: 29, Neg. LLF: 131.48528875737622
Iteration: 3, Func. Count: 43, Neg. LLF: 130.98901147304963
Iteration: 4, Func. Count: 57, Neg. LLF: 130.97316982564215
Iteration: 5, Func. Count: 71, Neg. LLF: 131.43018221695016
Iteration: 6, Func. Count: 85, Neg. LLF: 130.48149563392647
Iteration: 7, Func. Count: 99, Neg. LLF: 130.22343997603866
Iteration: 8, Func. Count: 112, Neg. LLF: 130.17154713944768
Iteration: 9, Func. Count: 125, Neg. LLF: 130.1556228327657
Iteration: 10, Func. Count: 138, Neg. LLF: 130.1540045232402
Iteration: 11, Func. Count: 151, Neg. LLF: 130.15350352856836
Iteration: 12, Func. Count: 164, Neg. LLF: 130.15345661065118
Iteration: 13, Func. Count: 177, Neg. LLF: 130.15345059438724
Iteration: 14, Func. Count: 190, Neg. LLF: 130.15344995637113
Optimization terminated successfully (Exit mode 0)
Current function value: 130.15344995637113
Iterations: 14
Function evaluations: 190
Gradient evaluations: 14
Iteration: 1, Func. Count: 7, Neg. LLF: 132.42834303633086
Iteration: 2, Func. Count: 14, Neg. LLF: 131.44737355138133
Iteration: 3, Func. Count: 21, Neg. LLF: 130.18227756092782
Iteration: 4, Func. Count: 27, Neg. LLF: 393.81000550042535
Iteration: 5, Func. Count: 34, Neg. LLF: 130.10711868380503
Iteration: 6, Func. Count: 40, Neg. LLF: 130.0965767951029
Iteration: 7, Func. Count: 46, Neg. LLF: 130.0931753228433
Iteration: 8, Func. Count: 52, Neg. LLF: 130.08979446805824
Iteration: 9, Func. Count: 58, Neg. LLF: 130.0893475335581
Iteration: 10, Func. Count: 64, Neg. LLF: 130.0890441048039
Iteration: 11, Func. Count: 70, Neg. LLF: 130.0890379691294
Iteration: 12, Func. Count: 75, Neg. LLF: 130.0890379691514
Optimization terminated successfully (Exit mode 0)
Current function value: 130.0890379691294
Iterations: 12
Function evaluations: 75
Gradient evaluations: 12
Iteration: 1, Func. Count: 8, Neg. LLF: 20225640.701766167
Iteration: 2, Func. Count: 17, Neg. LLF: 137.3705853453455
Iteration: 3, Func. Count: 25, Neg. LLF: 132.77665613735866
Iteration: 4, Func. Count: 33, Neg. LLF: 137.66499944223835
Iteration: 5, Func. Count: 41, Neg. LLF: 138.52053489112367
Iteration: 6, Func. Count: 49, Neg. LLF: 135.43791298091412
Iteration: 7, Func. Count: 57, Neg. LLF: 133.48499526945832
Iteration: 8, Func. Count: 65, Neg. LLF: 132.215053457362
Iteration: 9, Func. Count: 73, Neg. LLF: 131.38566616979224
Iteration: 10, Func. Count: 81, Neg. LLF: 130.8385742231454
Iteration: 11, Func. Count: 89, Neg. LLF: 130.47592961879442
Iteration: 12, Func. Count: 96, Neg. LLF: 130.42150046063384
Iteration: 13, Func. Count: 103, Neg. LLF: 130.29884359016708
Iteration: 14, Func. Count: 110, Neg. LLF: 130.27839991485035
Iteration: 15, Func. Count: 117, Neg. LLF: 130.27623134847462
Iteration: 16, Func. Count: 124, Neg. LLF: 130.2761529619146
Iteration: 17, Func. Count: 131, Neg. LLF: 130.27614823094214
Iteration: 18, Func. Count: 137, Neg. LLF: 130.27614823098907
Optimization terminated successfully (Exit mode 0)
Current function value: 130.27614823094214
Iterations: 18
Function evaluations: 137
Gradient evaluations: 18
Iteration: 1, Func. Count: 9, Neg. LLF: 1765.48090301893
Iteration: 2, Func. Count: 19, Neg. LLF: 132.67277025590852
Iteration: 3, Func. Count: 28, Neg. LLF: 131.77930460039428
Iteration: 4, Func. Count: 37, Neg. LLF: 130.41381238648253
Iteration: 5, Func. Count: 45, Neg. LLF: 130.27583696297822
Iteration: 6, Func. Count: 53, Neg. LLF: 130.2500675307909
Iteration: 7, Func. Count: 61, Neg. LLF: 130.17922669820578
Iteration: 8, Func. Count: 69, Neg. LLF: 130.1731089506409
Iteration: 9, Func. Count: 77, Neg. LLF: 130.16750653806668
Iteration: 10, Func. Count: 85, Neg. LLF: 130.1646531347094
Iteration: 11, Func. Count: 93, Neg. LLF: 130.16425343815504
Iteration: 12, Func. Count: 101, Neg. LLF: 130.1641768850329
Iteration: 13, Func. Count: 109, Neg. LLF: 130.16417376048975
Iteration: 14, Func. Count: 116, Neg. LLF: 130.16417376042313
Optimization terminated successfully (Exit mode 0)
Current function value: 130.16417376048975
Iterations: 14
Function evaluations: 116
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 19977647.25021759
Iteration: 2, Func. Count: 21, Neg. LLF: 161.99126929622577
Iteration: 3, Func. Count: 31, Neg. LLF: 130.18161502055912
Iteration: 4, Func. Count: 40, Neg. LLF: 130.43147591059494
Iteration: 5, Func. Count: 51, Neg. LLF: 130.78313397719222
Iteration: 6, Func. Count: 61, Neg. LLF: 130.21494221446173
Iteration: 7, Func. Count: 71, Neg. LLF: 129.92040406633066
Iteration: 8, Func. Count: 80, Neg. LLF: 129.90436156027445
Iteration: 9, Func. Count: 89, Neg. LLF: 129.90078356341667
Iteration: 10, Func. Count: 98, Neg. LLF: 129.9002251905779
Iteration: 11, Func. Count: 107, Neg. LLF: 129.9001562765245
Iteration: 12, Func. Count: 116, Neg. LLF: 129.9001243429139
Iteration: 13, Func. Count: 125, Neg. LLF: 129.90012203607256
Iteration: 14, Func. Count: 133, Neg. LLF: 129.90012203605016
Optimization terminated successfully (Exit mode 0)
Current function value: 129.90012203607256
Iterations: 14
Function evaluations: 133
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 19878916.108375076
Iteration: 2, Func. Count: 22, Neg. LLF: 20360.3039181243
Iteration: 3, Func. Count: 33, Neg. LLF: 129.98964722545088
Iteration: 4, Func. Count: 43, Neg. LLF: 131.57014314754403
Iteration: 5, Func. Count: 54, Neg. LLF: 129.38338373973227
Iteration: 6, Func. Count: 64, Neg. LLF: 129.36994852791545
Iteration: 7, Func. Count: 75, Neg. LLF: 129.40693573922633
Iteration: 8, Func. Count: 86, Neg. LLF: 129.17814307775367
Iteration: 9, Func. Count: 96, Neg. LLF: 129.17553483190213
Iteration: 10, Func. Count: 106, Neg. LLF: 129.17296617233947
Iteration: 11, Func. Count: 116, Neg. LLF: 129.17294284436184
Iteration: 12, Func. Count: 126, Neg. LLF: 129.17293661766132
Iteration: 13, Func. Count: 135, Neg. LLF: 129.17293661761047
Optimization terminated successfully (Exit mode 0)
Current function value: 129.17293661766132
Iterations: 13
Function evaluations: 135
Gradient evaluations: 13
Iteration: 1, Func. Count: 8, Neg. LLF: 132.7336680002576
Iteration: 2, Func. Count: 16, Neg. LLF: 132.52368160340197
Iteration: 3, Func. Count: 24, Neg. LLF: 130.15953078351333
Iteration: 4, Func. Count: 31, Neg. LLF: 175.8150852324963
Iteration: 5, Func. Count: 39, Neg. LLF: 129.89973309249208
Iteration: 6, Func. Count: 46, Neg. LLF: 129.84585623156943
Iteration: 7, Func. Count: 53, Neg. LLF: 129.8442151322875
Iteration: 8, Func. Count: 60, Neg. LLF: 129.84387444871882
Iteration: 9, Func. Count: 67, Neg. LLF: 129.84364833485083
Iteration: 10, Func. Count: 74, Neg. LLF: 129.84364227098192
Iteration: 11, Func. Count: 81, Neg. LLF: 129.84364074047548
Iteration: 12, Func. Count: 87, Neg. LLF: 129.84364074048062
Optimization terminated successfully (Exit mode 0)
Current function value: 129.84364074047548
Iterations: 12
Function evaluations: 87
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 20361421.795079656
Iteration: 2, Func. Count: 19, Neg. LLF: 136.7647811660051
Iteration: 3, Func. Count: 28, Neg. LLF: 132.0552581914262
Iteration: 4, Func. Count: 37, Neg. LLF: 150.0836211320126
Iteration: 5, Func. Count: 46, Neg. LLF: 135.5246618041752
Iteration: 6, Func. Count: 55, Neg. LLF: 131.42646835882562
Iteration: 7, Func. Count: 64, Neg. LLF: 130.32682821691475
Iteration: 8, Func. Count: 72, Neg. LLF: 131.41729350233308
Iteration: 9, Func. Count: 81, Neg. LLF: 130.29959538769776
Iteration: 10, Func. Count: 89, Neg. LLF: 130.27765222796333
Iteration: 11, Func. Count: 97, Neg. LLF: 130.27615453714841
Iteration: 12, Func. Count: 105, Neg. LLF: 130.27614846316038
Iteration: 13, Func. Count: 112, Neg. LLF: 130.2761484620828
Optimization terminated successfully (Exit mode 0)
Current function value: 130.27614846316038
Iterations: 13
Function evaluations: 112
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 1498.4451314450055
Iteration: 2, Func. Count: 21, Neg. LLF: 133.7986337107734
Iteration: 3, Func. Count: 31, Neg. LLF: 131.19880377930795
Iteration: 4, Func. Count: 41, Neg. LLF: 130.42599475328825
Iteration: 5, Func. Count: 50, Neg. LLF: 130.41160886491613
Iteration: 6, Func. Count: 60, Neg. LLF: 130.26519130525966
Iteration: 7, Func. Count: 70, Neg. LLF: 130.2204025997575
Iteration: 8, Func. Count: 80, Neg. LLF: 130.18115346715655
Iteration: 9, Func. Count: 90, Neg. LLF: 130.1653328703516
Iteration: 10, Func. Count: 99, Neg. LLF: 130.16345077528376
Iteration: 11, Func. Count: 108, Neg. LLF: 130.1644780825074
Iteration: 12, Func. Count: 118, Neg. LLF: 130.15673032876407
Iteration: 13, Func. Count: 127, Neg. LLF: 130.15562896777521
Iteration: 14, Func. Count: 136, Neg. LLF: 130.15498787004373
Iteration: 15, Func. Count: 145, Neg. LLF: 130.1535220901003
Iteration: 16, Func. Count: 154, Neg. LLF: 130.15344553137592
Iteration: 17, Func. Count: 163, Neg. LLF: 130.15343072295332
Iteration: 18, Func. Count: 172, Neg. LLF: 130.15342760467402
Iteration: 19, Func. Count: 180, Neg. LLF: 130.15342760470102
Optimization terminated successfully (Exit mode 0)
Current function value: 130.15342760467402
Iterations: 19
Function evaluations: 180
Gradient evaluations: 19
Iteration: 1, Func. Count: 11, Neg. LLF: 3354.5576374404823
Iteration: 2, Func. Count: 23, Neg. LLF: 172.62053733134184
Iteration: 3, Func. Count: 34, Neg. LLF: 130.5250901672963
Iteration: 4, Func. Count: 44, Neg. LLF: 129.93954115818235
Iteration: 5, Func. Count: 54, Neg. LLF: 130.79102584845202
Iteration: 6, Func. Count: 67, Neg. LLF: 133.53626149354733
Iteration: 7, Func. Count: 78, Neg. LLF: 129.77442452711549
Iteration: 8, Func. Count: 88, Neg. LLF: 129.67425376496152
Iteration: 9, Func. Count: 98, Neg. LLF: 129.65024706868613
Iteration: 10, Func. Count: 108, Neg. LLF: 129.64397478748612
Iteration: 11, Func. Count: 118, Neg. LLF: 129.64192799764353
Iteration: 12, Func. Count: 128, Neg. LLF: 129.6416768733619
Iteration: 13, Func. Count: 138, Neg. LLF: 129.64164070009105
Iteration: 14, Func. Count: 147, Neg. LLF: 129.64164070022497
Optimization terminated successfully (Exit mode 0)
Current function value: 129.64164070009105
Iterations: 14
Function evaluations: 147
Gradient evaluations: 14
Iteration: 1, Func. Count: 12, Neg. LLF: 4179.794251054071
Iteration: 2, Func. Count: 24, Neg. LLF: 1584.9087907880628
Iteration: 3, Func. Count: 36, Neg. LLF: 138.3947805364218
Iteration: 4, Func. Count: 48, Neg. LLF: 129.5607469547816
Iteration: 5, Func. Count: 59, Neg. LLF: 130.71671448198546
Iteration: 6, Func. Count: 72, Neg. LLF: 129.13919792082058
Iteration: 7, Func. Count: 83, Neg. LLF: 128.99592177093191
Iteration: 8, Func. Count: 94, Neg. LLF: 128.97095955681218
Iteration: 9, Func. Count: 105, Neg. LLF: 128.96729294645294
Iteration: 10, Func. Count: 116, Neg. LLF: 128.96690158572835
Iteration: 11, Func. Count: 127, Neg. LLF: 128.96683260727582
Iteration: 12, Func. Count: 138, Neg. LLF: 128.96683104634693
Iteration: 13, Func. Count: 148, Neg. LLF: 128.966831046315
Optimization terminated successfully (Exit mode 0)
Current function value: 128.96683104634693
Iterations: 13
Function evaluations: 148
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 132.00399945261168
Iteration: 2, Func. Count: 18, Neg. LLF: 130.20306915725675
Iteration: 3, Func. Count: 26, Neg. LLF: 197.52611537320507
Iteration: 4, Func. Count: 35, Neg. LLF: 129.99516526226893
Iteration: 5, Func. Count: 44, Neg. LLF: 130.06447754032422
Iteration: 6, Func. Count: 53, Neg. LLF: 129.85437623530657
Iteration: 7, Func. Count: 61, Neg. LLF: 129.84588657768023
Iteration: 8, Func. Count: 69, Neg. LLF: 129.84421802397515
Iteration: 9, Func. Count: 77, Neg. LLF: 129.84366091206553
Iteration: 10, Func. Count: 85, Neg. LLF: 129.84364326283557
Iteration: 11, Func. Count: 93, Neg. LLF: 129.84364075165226
Iteration: 12, Func. Count: 100, Neg. LLF: 129.84364073447998
Optimization terminated successfully (Exit mode 0)
Current function value: 129.84364075165226
Iterations: 12
Function evaluations: 100
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 20386294.46642896
Iteration: 2, Func. Count: 21, Neg. LLF: 139.33718186213747
Iteration: 3, Func. Count: 32, Neg. LLF: 130.45532886044148
Iteration: 4, Func. Count: 41, Neg. LLF: 130.65077463526214
Iteration: 5, Func. Count: 51, Neg. LLF: 131.33997334341834
Iteration: 6, Func. Count: 61, Neg. LLF: 130.78629761078412
Iteration: 7, Func. Count: 71, Neg. LLF: 130.1799864861791
Iteration: 8, Func. Count: 80, Neg. LLF: 130.22042912468842
Iteration: 9, Func. Count: 90, Neg. LLF: 130.20033149366753
Iteration: 10, Func. Count: 100, Neg. LLF: 130.16260623331635
Iteration: 11, Func. Count: 110, Neg. LLF: 130.16213465176915
Iteration: 12, Func. Count: 118, Neg. LLF: 130.1621346515414
Optimization terminated successfully (Exit mode 0)
Current function value: 130.16213465176915
Iterations: 12
Function evaluations: 118
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 1432.7757276526063
Iteration: 2, Func. Count: 23, Neg. LLF: 133.90011175115023
Iteration: 3, Func. Count: 34, Neg. LLF: 130.9681937812122
Iteration: 4, Func. Count: 45, Neg. LLF: 130.41876843076088
Iteration: 5, Func. Count: 55, Neg. LLF: 130.8249688004898
Iteration: 6, Func. Count: 66, Neg. LLF: 130.22017377966878
Iteration: 7, Func. Count: 76, Neg. LLF: 130.2049245916627
Iteration: 8, Func. Count: 86, Neg. LLF: 130.25000275454644
Iteration: 9, Func. Count: 97, Neg. LLF: 130.16997210990422
Iteration: 10, Func. Count: 107, Neg. LLF: 130.16850846899837
Iteration: 11, Func. Count: 117, Neg. LLF: 130.1663014685121
Iteration: 12, Func. Count: 127, Neg. LLF: 130.16444788278065
Iteration: 13, Func. Count: 137, Neg. LLF: 130.16261992241616
Iteration: 14, Func. Count: 148, Neg. LLF: 130.15812418541995
Iteration: 15, Func. Count: 158, Neg. LLF: 130.15538580434588
Iteration: 16, Func. Count: 168, Neg. LLF: 130.15391656271532
Iteration: 17, Func. Count: 178, Neg. LLF: 130.15348261492358
Iteration: 18, Func. Count: 188, Neg. LLF: 130.15343543340714
Iteration: 19, Func. Count: 198, Neg. LLF: 130.15342869054322
Iteration: 20, Func. Count: 208, Neg. LLF: 130.15342737554369
Iteration: 21, Func. Count: 217, Neg. LLF: 130.15342737569927
Optimization terminated successfully (Exit mode 0)
Current function value: 130.15342737554369
Iterations: 21
Function evaluations: 217
Gradient evaluations: 21
Iteration: 1, Func. Count: 12, Neg. LLF: 20035121.817203123
Iteration: 2, Func. Count: 25, Neg. LLF: 163.08782974712773
Iteration: 3, Func. Count: 37, Neg. LLF: 130.9042036347795
Iteration: 4, Func. Count: 49, Neg. LLF: 129.8124383165539
Iteration: 5, Func. Count: 60, Neg. LLF: 130.2370621648115
Iteration: 6, Func. Count: 72, Neg. LLF: 130.12307836107954
Iteration: 7, Func. Count: 84, Neg. LLF: 129.64823447010284
Iteration: 8, Func. Count: 95, Neg. LLF: 129.64388490681955
Iteration: 9, Func. Count: 106, Neg. LLF: 129.64222004412957
Iteration: 10, Func. Count: 117, Neg. LLF: 129.6416791907836
Iteration: 11, Func. Count: 128, Neg. LLF: 129.64165122024426
Iteration: 12, Func. Count: 139, Neg. LLF: 129.6416396452052
Iteration: 13, Func. Count: 149, Neg. LLF: 129.64163964525267
Optimization terminated successfully (Exit mode 0)
Current function value: 129.6416396452052
Iterations: 13
Function evaluations: 149
Gradient evaluations: 13
Iteration: 1, Func. Count: 13, Neg. LLF: 19925048.808786627
Iteration: 2, Func. Count: 26, Neg. LLF: 2959.6749713153367
Iteration: 3, Func. Count: 39, Neg. LLF: 136.85591834595135
Iteration: 4, Func. Count: 52, Neg. LLF: 129.66402209357724
Iteration: 5, Func. Count: 64, Neg. LLF: 132.27682538326576
Iteration: 6, Func. Count: 77, Neg. LLF: 129.06733742448557
Iteration: 7, Func. Count: 89, Neg. LLF: 129.01440327834314
Iteration: 8, Func. Count: 101, Neg. LLF: 128.98705336589455
Iteration: 9, Func. Count: 113, Neg. LLF: 128.97378315957394
Iteration: 10, Func. Count: 125, Neg. LLF: 128.9682827632008
Iteration: 11, Func. Count: 137, Neg. LLF: 128.96685507092397
Iteration: 12, Func. Count: 149, Neg. LLF: 128.966834713842
Iteration: 13, Func. Count: 161, Neg. LLF: 128.96683175010344
Iteration: 14, Func. Count: 173, Neg. LLF: 128.96683103844236
Optimization terminated successfully (Exit mode 0)
Current function value: 128.96683103844236
Iterations: 14
Function evaluations: 173
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 135.37937252066504
Iteration: 2, Func. Count: 21, Neg. LLF: 139.01272694739544
Iteration: 3, Func. Count: 31, Neg. LLF: 131.45320863478182
Iteration: 4, Func. Count: 41, Neg. LLF: 129.85829551450564
Iteration: 5, Func. Count: 50, Neg. LLF: 130.7119394744787
Iteration: 6, Func. Count: 60, Neg. LLF: 134.17793989039214
Iteration: 7, Func. Count: 70, Neg. LLF: 129.39962643582135
Iteration: 8, Func. Count: 79, Neg. LLF: 129.39120644110739
Iteration: 9, Func. Count: 88, Neg. LLF: 129.38737485737056
Iteration: 10, Func. Count: 97, Neg. LLF: 129.3839305349223
Iteration: 11, Func. Count: 106, Neg. LLF: 129.38383105016507
Iteration: 12, Func. Count: 115, Neg. LLF: 129.38376399570834
Iteration: 13, Func. Count: 124, Neg. LLF: 129.38375694067952
Iteration: 14, Func. Count: 133, Neg. LLF: 129.3837552133326
Iteration: 15, Func. Count: 142, Neg. LLF: 129.38375444357519
Optimization terminated successfully (Exit mode 0)
Current function value: 129.38375444357519
Iterations: 15
Function evaluations: 142
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 20427369.717231993
Iteration: 2, Func. Count: 23, Neg. LLF: 156.96202354897704
Iteration: 3, Func. Count: 35, Neg. LLF: 130.87994753624417
Iteration: 4, Func. Count: 46, Neg. LLF: 130.25336420751557
Iteration: 5, Func. Count: 56, Neg. LLF: 130.86528490233889
Iteration: 6, Func. Count: 68, Neg. LLF: 130.00624063250334
Iteration: 7, Func. Count: 78, Neg. LLF: 130.11194793121186
Iteration: 8, Func. Count: 89, Neg. LLF: 129.97169004409577
Iteration: 9, Func. Count: 100, Neg. LLF: 129.9703357238882
Iteration: 10, Func. Count: 110, Neg. LLF: 129.97023803446717
Iteration: 11, Func. Count: 119, Neg. LLF: 129.9702380345878
Optimization terminated successfully (Exit mode 0)
Current function value: 129.97023803446717
Iterations: 11
Function evaluations: 119
Gradient evaluations: 11
Iteration: 1, Func. Count: 12, Neg. LLF: 787.0176481612875
Iteration: 2, Func. Count: 25, Neg. LLF: 158.04083607502378
Iteration: 3, Func. Count: 37, Neg. LLF: 134.38795791701676
Iteration: 4, Func. Count: 49, Neg. LLF: 131.25161652927687
Iteration: 5, Func. Count: 61, Neg. LLF: 129.9220222584092
Iteration: 6, Func. Count: 72, Neg. LLF: 129.9697708696202
Iteration: 7, Func. Count: 84, Neg. LLF: 129.84218400476297
Iteration: 8, Func. Count: 96, Neg. LLF: 129.6862942090529
Iteration: 9, Func. Count: 107, Neg. LLF: 129.6775232913404
Iteration: 10, Func. Count: 118, Neg. LLF: 129.6752631800157
Iteration: 11, Func. Count: 129, Neg. LLF: 129.67517720023898
Iteration: 12, Func. Count: 140, Neg. LLF: 129.6751709717902
Iteration: 13, Func. Count: 151, Neg. LLF: 129.67517024130885
Optimization terminated successfully (Exit mode 0)
Current function value: 129.67517024130885
Iterations: 13
Function evaluations: 151
Gradient evaluations: 13
Iteration: 1, Func. Count: 13, Neg. LLF: 20057173.19719026
Iteration: 2, Func. Count: 27, Neg. LLF: 136.55210068644857
Iteration: 3, Func. Count: 40, Neg. LLF: 143.23183579283744
Iteration: 4, Func. Count: 53, Neg. LLF: 130.02824409721043
Iteration: 5, Func. Count: 66, Neg. LLF: 128.78282404661698
Iteration: 6, Func. Count: 78, Neg. LLF: 131.35162390796333
Iteration: 7, Func. Count: 92, Neg. LLF: 128.5697999772415
Iteration: 8, Func. Count: 104, Neg. LLF: 128.5519924083411
Iteration: 9, Func. Count: 116, Neg. LLF: 128.537102680035
Iteration: 10, Func. Count: 128, Neg. LLF: 128.5348224013086
Iteration: 11, Func. Count: 140, Neg. LLF: 128.53426407989338
Iteration: 12, Func. Count: 152, Neg. LLF: 128.53416176730468
Iteration: 13, Func. Count: 164, Neg. LLF: 128.5341514039458
Iteration: 14, Func. Count: 176, Neg. LLF: 128.5341491461634
Iteration: 15, Func. Count: 187, Neg. LLF: 128.53414914616636
Optimization terminated successfully (Exit mode 0)
Current function value: 128.5341491461634
Iterations: 15
Function evaluations: 187
Gradient evaluations: 15
Iteration: 1, Func. Count: 14, Neg. LLF: 19941691.969215304
Iteration: 2, Func. Count: 28, Neg. LLF: 155.05201641887246
Iteration: 3, Func. Count: 42, Neg. LLF: 131.1551681863439
Iteration: 4, Func. Count: 56, Neg. LLF: 128.69496157973504
Iteration: 5, Func. Count: 69, Neg. LLF: 131.65077226486892
Iteration: 6, Func. Count: 84, Neg. LLF: 129.15232513548983
Iteration: 7, Func. Count: 98, Neg. LLF: 174.97744766604958
Iteration: 8, Func. Count: 112, Neg. LLF: 127.72086015623478
Iteration: 9, Func. Count: 125, Neg. LLF: 127.68057745048004
Iteration: 10, Func. Count: 138, Neg. LLF: 127.66133321972438
Iteration: 11, Func. Count: 151, Neg. LLF: 127.64632281940457
Iteration: 12, Func. Count: 164, Neg. LLF: 127.64239589439289
Iteration: 13, Func. Count: 177, Neg. LLF: 127.64069593568998
Iteration: 14, Func. Count: 190, Neg. LLF: 127.64039890970088
Iteration: 15, Func. Count: 203, Neg. LLF: 127.64038344661752
Iteration: 16, Func. Count: 216, Neg. LLF: 127.64038260536252
Optimization terminated successfully (Exit mode 0)
Current function value: 127.64038260536252
Iterations: 16
Function evaluations: 216
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 134.62865600763945
Iteration: 2, Func. Count: 23, Neg. LLF: 138.22988113538665
Iteration: 3, Func. Count: 34, Neg. LLF: 131.44710847875297
Iteration: 4, Func. Count: 45, Neg. LLF: 130.02577024454644
Iteration: 5, Func. Count: 56, Neg. LLF: 129.91303425496835
Iteration: 6, Func. Count: 67, Neg. LLF: 129.61276559724251
Iteration: 7, Func. Count: 78, Neg. LLF: 129.4074431449561
Iteration: 8, Func. Count: 88, Neg. LLF: 129.39432295909964
Iteration: 9, Func. Count: 98, Neg. LLF: 129.386976716733
Iteration: 10, Func. Count: 108, Neg. LLF: 129.38414236812753
Iteration: 11, Func. Count: 118, Neg. LLF: 129.3837983711518
Iteration: 12, Func. Count: 128, Neg. LLF: 129.3837638574209
Iteration: 13, Func. Count: 138, Neg. LLF: 129.38375910121417
Iteration: 14, Func. Count: 148, Neg. LLF: 129.38375432627282
Iteration: 15, Func. Count: 157, Neg. LLF: 129.38375437722107
Optimization terminated successfully (Exit mode 0)
Current function value: 129.38375432627282
Iterations: 15
Function evaluations: 157
Gradient evaluations: 15
Iteration: 1, Func. Count: 12, Neg. LLF: 20437394.273069486
Iteration: 2, Func. Count: 25, Neg. LLF: 157.02260942755186
Iteration: 3, Func. Count: 38, Neg. LLF: 130.8702515056373
Iteration: 4, Func. Count: 50, Neg. LLF: 130.2506289709746
Iteration: 5, Func. Count: 61, Neg. LLF: 130.93794242031532
Iteration: 6, Func. Count: 74, Neg. LLF: 130.0094141404071
Iteration: 7, Func. Count: 85, Neg. LLF: 130.14772046664146
Iteration: 8, Func. Count: 97, Neg. LLF: 129.974907707727
Iteration: 9, Func. Count: 109, Neg. LLF: 129.97052335326816
Iteration: 10, Func. Count: 120, Neg. LLF: 129.97023951720615
Iteration: 11, Func. Count: 131, Neg. LLF: 129.97023801877793
Iteration: 12, Func. Count: 141, Neg. LLF: 129.97023801839907
Optimization terminated successfully (Exit mode 0)
Current function value: 129.97023801877793
Iterations: 12
Function evaluations: 141
Gradient evaluations: 12
Iteration: 1, Func. Count: 13, Neg. LLF: 781.3683885113752
Iteration: 2, Func. Count: 27, Neg. LLF: 158.1131578926728
Iteration: 3, Func. Count: 40, Neg. LLF: 134.44404398739772
Iteration: 4, Func. Count: 53, Neg. LLF: 131.44150369663208
Iteration: 5, Func. Count: 66, Neg. LLF: 129.9195400444049
Iteration: 6, Func. Count: 78, Neg. LLF: 129.96456767036642
Iteration: 7, Func. Count: 91, Neg. LLF: 129.81562236096192
Iteration: 8, Func. Count: 104, Neg. LLF: 129.68504276677905
Iteration: 9, Func. Count: 116, Neg. LLF: 129.67782253970194
Iteration: 10, Func. Count: 128, Neg. LLF: 129.67527585685494
Iteration: 11, Func. Count: 140, Neg. LLF: 129.6751780385338
Iteration: 12, Func. Count: 152, Neg. LLF: 129.6751713926053
Iteration: 13, Func. Count: 164, Neg. LLF: 129.6751704126321
Optimization terminated successfully (Exit mode 0)
Current function value: 129.6751704126321
Iterations: 13
Function evaluations: 164
Gradient evaluations: 13
Iteration: 1, Func. Count: 14, Neg. LLF: 20065580.56447216
Iteration: 2, Func. Count: 29, Neg. LLF: 136.51439212932289
Iteration: 3, Func. Count: 43, Neg. LLF: 143.38453041941688
Iteration: 4, Func. Count: 57, Neg. LLF: 130.02401270623056
Iteration: 5, Func. Count: 71, Neg. LLF: 128.79452459195448
Iteration: 6, Func. Count: 84, Neg. LLF: 131.3043281669273
Iteration: 7, Func. Count: 99, Neg. LLF: 128.5746288155588
Iteration: 8, Func. Count: 112, Neg. LLF: 128.55356299926513
Iteration: 9, Func. Count: 125, Neg. LLF: 128.53913905569382
Iteration: 10, Func. Count: 138, Neg. LLF: 128.5351639313738
Iteration: 11, Func. Count: 151, Neg. LLF: 128.53433733632
Iteration: 12, Func. Count: 164, Neg. LLF: 128.53416588984322
Iteration: 13, Func. Count: 177, Neg. LLF: 128.53415029815548
Iteration: 14, Func. Count: 190, Neg. LLF: 128.53414911793118
Iteration: 15, Func. Count: 202, Neg. LLF: 128.534149117987
Optimization terminated successfully (Exit mode 0)
Current function value: 128.53414911793118
Iterations: 15
Function evaluations: 202
Gradient evaluations: 15
Iteration: 1, Func. Count: 15, Neg. LLF: 19948174.805599056
Iteration: 2, Func. Count: 30, Neg. LLF: 157.13095569209622
Iteration: 3, Func. Count: 45, Neg. LLF: 131.26424431836332
Iteration: 4, Func. Count: 60, Neg. LLF: 128.68986848227712
Iteration: 5, Func. Count: 74, Neg. LLF: 131.60284704697455
Iteration: 6, Func. Count: 90, Neg. LLF: 129.11718078959558
Iteration: 7, Func. Count: 105, Neg. LLF: 171.40574100464235
Iteration: 8, Func. Count: 120, Neg. LLF: 127.71897500886215
Iteration: 9, Func. Count: 134, Neg. LLF: 127.68430462751836
Iteration: 10, Func. Count: 148, Neg. LLF: 127.6606639549693
Iteration: 11, Func. Count: 162, Neg. LLF: 127.64644561711206
Iteration: 12, Func. Count: 176, Neg. LLF: 127.64246942886119
Iteration: 13, Func. Count: 190, Neg. LLF: 127.64066907908352
Iteration: 14, Func. Count: 204, Neg. LLF: 127.64040114469775
Iteration: 15, Func. Count: 218, Neg. LLF: 127.6403834787274
Iteration: 16, Func. Count: 232, Neg. LLF: 127.64038261113159
Optimization terminated successfully (Exit mode 0)
Current function value: 127.64038261113159
Iterations: 16
Function evaluations: 232
Gradient evaluations: 16
Iteration: 1, Func. Count: 8, Neg. LLF: 133.22557975671094
Iteration: 2, Func. Count: 16, Neg. LLF: 138.151861600786
Iteration: 3, Func. Count: 24, Neg. LLF: 130.19933693001718
Iteration: 4, Func. Count: 31, Neg. LLF: 434.93940527513405
Iteration: 5, Func. Count: 39, Neg. LLF: 130.09901445288727
Iteration: 6, Func. Count: 46, Neg. LLF: 130.0940014547399
Iteration: 7, Func. Count: 53, Neg. LLF: 130.0897942552475
Iteration: 8, Func. Count: 60, Neg. LLF: 130.14668984082473
Iteration: 9, Func. Count: 69, Neg. LLF: 130.0890670670126
Iteration: 10, Func. Count: 76, Neg. LLF: 130.08903804444608
Iteration: 11, Func. Count: 82, Neg. LLF: 130.08903807476037
Optimization terminated successfully (Exit mode 0)
Current function value: 130.08903804444608
Iterations: 11
Function evaluations: 82
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 20351896.094026715
Iteration: 2, Func. Count: 19, Neg. LLF: 136.40928907444408
Iteration: 3, Func. Count: 28, Neg. LLF: 131.94333250500586
Iteration: 4, Func. Count: 37, Neg. LLF: 133.81952989104195
Iteration: 5, Func. Count: 46, Neg. LLF: 136.09101722239242
Iteration: 6, Func. Count: 55, Neg. LLF: 139.99961891133822
Iteration: 7, Func. Count: 64, Neg. LLF: 134.86210026869767
Iteration: 8, Func. Count: 73, Neg. LLF: 133.2276885956327
Iteration: 9, Func. Count: 82, Neg. LLF: 131.65066979908497
Iteration: 10, Func. Count: 91, Neg. LLF: 130.5458451331518
Iteration: 11, Func. Count: 99, Neg. LLF: 130.72542599329475
Iteration: 12, Func. Count: 108, Neg. LLF: 130.35785343855514
Iteration: 13, Func. Count: 116, Neg. LLF: 130.36314872310092
Iteration: 14, Func. Count: 125, Neg. LLF: 130.27985967640976
Iteration: 15, Func. Count: 133, Neg. LLF: 130.27677753333504
Iteration: 16, Func. Count: 141, Neg. LLF: 130.27616612253
Iteration: 17, Func. Count: 149, Neg. LLF: 130.27614962711507
Iteration: 18, Func. Count: 157, Neg. LLF: 130.27614822895706
Iteration: 19, Func. Count: 164, Neg. LLF: 130.27614822897624
Optimization terminated successfully (Exit mode 0)
Current function value: 130.27614822895706
Iterations: 19
Function evaluations: 164
Gradient evaluations: 19
Iteration: 1, Func. Count: 10, Neg. LLF: 1520.72672638721
Iteration: 2, Func. Count: 21, Neg. LLF: 161.19482430776225
Iteration: 3, Func. Count: 31, Neg. LLF: 130.4480644566978
Iteration: 4, Func. Count: 40, Neg. LLF: 130.24693033193802
Iteration: 5, Func. Count: 49, Neg. LLF: 130.28298482135992
Iteration: 6, Func. Count: 59, Neg. LLF: 130.71483924357315
Iteration: 7, Func. Count: 69, Neg. LLF: 130.1907989614248
Iteration: 8, Func. Count: 78, Neg. LLF: 130.17699246233155
Iteration: 9, Func. Count: 87, Neg. LLF: 130.1704878726035
Iteration: 10, Func. Count: 96, Neg. LLF: 130.1654037196479
Iteration: 11, Func. Count: 105, Neg. LLF: 130.16425860367244
Iteration: 12, Func. Count: 114, Neg. LLF: 130.16417551387656
Iteration: 13, Func. Count: 123, Neg. LLF: 130.16417387832675
Iteration: 14, Func. Count: 131, Neg. LLF: 130.1641738781261
Optimization terminated successfully (Exit mode 0)
Current function value: 130.16417387832675
Iterations: 14
Function evaluations: 131
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 20236222.087033007
Iteration: 2, Func. Count: 23, Neg. LLF: 221.21025050035658
Iteration: 3, Func. Count: 34, Neg. LLF: 130.29548199562268
Iteration: 4, Func. Count: 44, Neg. LLF: 130.8132990893599
Iteration: 5, Func. Count: 55, Neg. LLF: 132.5130430866543
Iteration: 6, Func. Count: 66, Neg. LLF: 129.93700114173026
Iteration: 7, Func. Count: 76, Neg. LLF: 129.9432096533212
Iteration: 8, Func. Count: 87, Neg. LLF: 129.90094847741136
Iteration: 9, Func. Count: 97, Neg. LLF: 129.9002233664124
Iteration: 10, Func. Count: 107, Neg. LLF: 129.90012918332798
Iteration: 11, Func. Count: 117, Neg. LLF: 129.90012270048535
Iteration: 12, Func. Count: 127, Neg. LLF: 129.90012186657214
Optimization terminated successfully (Exit mode 0)
Current function value: 129.90012186657214
Iterations: 12
Function evaluations: 127
Gradient evaluations: 12
Iteration: 1, Func. Count: 12, Neg. LLF: 20076966.857307967
Iteration: 2, Func. Count: 24, Neg. LLF: 293.136165979871
Iteration: 3, Func. Count: 36, Neg. LLF: 130.4449137044588
Iteration: 4, Func. Count: 47, Neg. LLF: 131.66049683951658
Iteration: 5, Func. Count: 59, Neg. LLF: 129.49431329320947
Iteration: 6, Func. Count: 70, Neg. LLF: 129.25289406150017
Iteration: 7, Func. Count: 81, Neg. LLF: 130.096360674794
Iteration: 8, Func. Count: 93, Neg. LLF: 129.24287982840832
Iteration: 9, Func. Count: 105, Neg. LLF: 129.17385968353378
Iteration: 10, Func. Count: 116, Neg. LLF: 129.1730912109246
Iteration: 11, Func. Count: 127, Neg. LLF: 129.17295127133445
Iteration: 12, Func. Count: 138, Neg. LLF: 129.17293662111626
Iteration: 13, Func. Count: 148, Neg. LLF: 129.17293662109742
Optimization terminated successfully (Exit mode 0)
Current function value: 129.17293662111626
Iterations: 13
Function evaluations: 148
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 133.17106312908186
Iteration: 2, Func. Count: 18, Neg. LLF: 134.02720347865412
Iteration: 3, Func. Count: 27, Neg. LLF: 130.16039103089335
Iteration: 4, Func. Count: 35, Neg. LLF: 183.08287498616383
Iteration: 5, Func. Count: 44, Neg. LLF: 129.88685619998677
Iteration: 6, Func. Count: 52, Neg. LLF: 129.845013276479
Iteration: 7, Func. Count: 60, Neg. LLF: 129.84414688162082
Iteration: 8, Func. Count: 68, Neg. LLF: 129.84382495737916
Iteration: 9, Func. Count: 76, Neg. LLF: 129.84364826288794
Iteration: 10, Func. Count: 84, Neg. LLF: 129.8436420127932
Iteration: 11, Func. Count: 92, Neg. LLF: 129.84364074760802
Iteration: 12, Func. Count: 99, Neg. LLF: 129.84364074761658
Optimization terminated successfully (Exit mode 0)
Current function value: 129.84364074760802
Iterations: 12
Function evaluations: 99
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 20492874.676770084
Iteration: 2, Func. Count: 21, Neg. LLF: 137.8719292132144
Iteration: 3, Func. Count: 32, Neg. LLF: 132.36209845283943
Iteration: 4, Func. Count: 42, Neg. LLF: 133.30390977422363
Iteration: 5, Func. Count: 52, Neg. LLF: 135.8328026560541
Iteration: 6, Func. Count: 62, Neg. LLF: 132.51961068299605
Iteration: 7, Func. Count: 72, Neg. LLF: 134.98744963725275
Iteration: 8, Func. Count: 82, Neg. LLF: 131.01950651706736
Iteration: 9, Func. Count: 92, Neg. LLF: 130.973981375564
Iteration: 10, Func. Count: 102, Neg. LLF: 130.54704453488216
Iteration: 11, Func. Count: 111, Neg. LLF: 130.6360059668653
Iteration: 12, Func. Count: 121, Neg. LLF: 130.33849263025976
Iteration: 13, Func. Count: 130, Neg. LLF: 130.61493032549043
Iteration: 14, Func. Count: 140, Neg. LLF: 130.2763367557112
Iteration: 15, Func. Count: 149, Neg. LLF: 130.27614981596707
Iteration: 16, Func. Count: 158, Neg. LLF: 130.27614823311296
Iteration: 17, Func. Count: 166, Neg. LLF: 130.27614823330467
Optimization terminated successfully (Exit mode 0)
Current function value: 130.27614823311296
Iterations: 17
Function evaluations: 166
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 1359.730915377766
Iteration: 2, Func. Count: 23, Neg. LLF: 163.2380842179712
Iteration: 3, Func. Count: 34, Neg. LLF: 130.83562144395466
Iteration: 4, Func. Count: 44, Neg. LLF: 130.25652710976897
Iteration: 5, Func. Count: 54, Neg. LLF: 150.45636578251208
Iteration: 6, Func. Count: 66, Neg. LLF: 130.17725796106848
Iteration: 7, Func. Count: 76, Neg. LLF: 130.413052499219
Iteration: 8, Func. Count: 87, Neg. LLF: 130.16722180476623
Iteration: 9, Func. Count: 97, Neg. LLF: 130.16556643934365
Iteration: 10, Func. Count: 107, Neg. LLF: 130.1589919961525
Iteration: 11, Func. Count: 117, Neg. LLF: 130.15543036285894
Iteration: 12, Func. Count: 127, Neg. LLF: 130.15359763362252
Iteration: 13, Func. Count: 137, Neg. LLF: 130.15349373271832
Iteration: 14, Func. Count: 147, Neg. LLF: 130.1535114308924
Iteration: 15, Func. Count: 158, Neg. LLF: 130.15343590576578
Iteration: 16, Func. Count: 168, Neg. LLF: 130.15342724498288
Iteration: 17, Func. Count: 177, Neg. LLF: 130.15342724491882
Optimization terminated successfully (Exit mode 0)
Current function value: 130.15342724498288
Iterations: 17
Function evaluations: 177
Gradient evaluations: 17
Iteration: 1, Func. Count: 12, Neg. LLF: 1298.4318727464888
Iteration: 2, Func. Count: 25, Neg. LLF: 246.41079213503593
Iteration: 3, Func. Count: 37, Neg. LLF: 134.71777476524426
Iteration: 4, Func. Count: 49, Neg. LLF: 130.43863369012436
Iteration: 5, Func. Count: 60, Neg. LLF: 129.86421028220715
Iteration: 6, Func. Count: 71, Neg. LLF: 131.49285036469882
Iteration: 7, Func. Count: 85, Neg. LLF: 129.72616083566504
Iteration: 8, Func. Count: 96, Neg. LLF: 129.67350390018734
Iteration: 9, Func. Count: 107, Neg. LLF: 129.64678483979696
Iteration: 10, Func. Count: 118, Neg. LLF: 129.64323689566095
Iteration: 11, Func. Count: 129, Neg. LLF: 129.64192195688273
Iteration: 12, Func. Count: 140, Neg. LLF: 129.64165184451736
Iteration: 13, Func. Count: 151, Neg. LLF: 129.64164050073245
Iteration: 14, Func. Count: 162, Neg. LLF: 129.64163978730798
Optimization terminated successfully (Exit mode 0)
Current function value: 129.64163978730798
Iterations: 14
Function evaluations: 162
Gradient evaluations: 14
Iteration: 1, Func. Count: 13, Neg. LLF: 5516.458656756641
Iteration: 2, Func. Count: 26, Neg. LLF: 5151.779803501087
Iteration: 3, Func. Count: 39, Neg. LLF: 150.00980805994178
Iteration: 4, Func. Count: 52, Neg. LLF: 129.53566197857606
Iteration: 5, Func. Count: 64, Neg. LLF: 131.8950213846135
Iteration: 6, Func. Count: 78, Neg. LLF: 129.05378602625592
Iteration: 7, Func. Count: 90, Neg. LLF: 128.98420503925098
Iteration: 8, Func. Count: 102, Neg. LLF: 128.97159626826954
Iteration: 9, Func. Count: 114, Neg. LLF: 128.96750593890576
Iteration: 10, Func. Count: 126, Neg. LLF: 128.96693792753598
Iteration: 11, Func. Count: 138, Neg. LLF: 128.96684248469032
Iteration: 12, Func. Count: 150, Neg. LLF: 128.96683138061857
Iteration: 13, Func. Count: 161, Neg. LLF: 128.96683138057088
Optimization terminated successfully (Exit mode 0)
Current function value: 128.96683138061857
Iterations: 13
Function evaluations: 161
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 132.05470486396746
Iteration: 2, Func. Count: 20, Neg. LLF: 130.2259931500779
Iteration: 3, Func. Count: 29, Neg. LLF: 246.69204046615462
Iteration: 4, Func. Count: 39, Neg. LLF: 132.1100574044618
Iteration: 5, Func. Count: 49, Neg. LLF: 129.87134505266897
Iteration: 6, Func. Count: 58, Neg. LLF: 129.84862190545925
Iteration: 7, Func. Count: 67, Neg. LLF: 129.84570002044853
Iteration: 8, Func. Count: 76, Neg. LLF: 129.8437644486526
Iteration: 9, Func. Count: 85, Neg. LLF: 129.84364620082872
Iteration: 10, Func. Count: 94, Neg. LLF: 129.84364076485554
Iteration: 11, Func. Count: 102, Neg. LLF: 129.8436407476775
Optimization terminated successfully (Exit mode 0)
Current function value: 129.84364076485554
Iterations: 11
Function evaluations: 102
Gradient evaluations: 11
Iteration: 1, Func. Count: 11, Neg. LLF: 20527095.06553897
Iteration: 2, Func. Count: 23, Neg. LLF: 141.09239064116878
Iteration: 3, Func. Count: 35, Neg. LLF: 130.5261395149202
Iteration: 4, Func. Count: 45, Neg. LLF: 130.2890658842497
Iteration: 5, Func. Count: 55, Neg. LLF: 137.35561730157343
Iteration: 6, Func. Count: 66, Neg. LLF: 130.43123294720402
Iteration: 7, Func. Count: 77, Neg. LLF: 130.20166678495252
Iteration: 8, Func. Count: 88, Neg. LLF: 130.1622997509446
Iteration: 9, Func. Count: 98, Neg. LLF: 130.16214121247313
Iteration: 10, Func. Count: 108, Neg. LLF: 130.1621345651449
Iteration: 11, Func. Count: 117, Neg. LLF: 130.16213456537633
Optimization terminated successfully (Exit mode 0)
Current function value: 130.1621345651449
Iterations: 11
Function evaluations: 117
Gradient evaluations: 11
Iteration: 1, Func. Count: 12, Neg. LLF: 1291.2306687697612
Iteration: 2, Func. Count: 25, Neg. LLF: 165.3181360065883
Iteration: 3, Func. Count: 37, Neg. LLF: 131.6985340532775
Iteration: 4, Func. Count: 49, Neg. LLF: 130.19349443626442
Iteration: 5, Func. Count: 60, Neg. LLF: 131.1154222945989
Iteration: 6, Func. Count: 72, Neg. LLF: 130.23280995938586
Iteration: 7, Func. Count: 84, Neg. LLF: 130.17090363150623
Iteration: 8, Func. Count: 95, Neg. LLF: 130.16636348808714
Iteration: 9, Func. Count: 106, Neg. LLF: 130.16408673555523
Iteration: 10, Func. Count: 117, Neg. LLF: 130.16263415423376
Iteration: 11, Func. Count: 128, Neg. LLF: 130.15867460292228
Iteration: 12, Func. Count: 139, Neg. LLF: 130.15628093235037
Iteration: 13, Func. Count: 150, Neg. LLF: 130.1542511479341
Iteration: 14, Func. Count: 161, Neg. LLF: 130.15362440103803
Iteration: 15, Func. Count: 172, Neg. LLF: 130.1534563827889
Iteration: 16, Func. Count: 183, Neg. LLF: 130.15345192865047
Iteration: 17, Func. Count: 195, Neg. LLF: 130.1534273791642
Iteration: 18, Func. Count: 205, Neg. LLF: 130.15342737908506
Optimization terminated successfully (Exit mode 0)
Current function value: 130.1534273791642
Iterations: 18
Function evaluations: 205
Gradient evaluations: 18
Iteration: 1, Func. Count: 13, Neg. LLF: 20311397.952433664
Iteration: 2, Func. Count: 27, Neg. LLF: 226.69910888805387
Iteration: 3, Func. Count: 40, Neg. LLF: 145.4402873291582
Iteration: 4, Func. Count: 53, Neg. LLF: 129.91436820354787
Iteration: 5, Func. Count: 65, Neg. LLF: 131.07713900902766
Iteration: 6, Func. Count: 78, Neg. LLF: 130.267931571946
Iteration: 7, Func. Count: 92, Neg. LLF: 129.65583434003634
Iteration: 8, Func. Count: 104, Neg. LLF: 129.64593474543665
Iteration: 9, Func. Count: 116, Neg. LLF: 129.64236933437437
Iteration: 10, Func. Count: 128, Neg. LLF: 129.64183505657547
Iteration: 11, Func. Count: 140, Neg. LLF: 129.64172335175803
Iteration: 12, Func. Count: 152, Neg. LLF: 129.64165657141947
Iteration: 13, Func. Count: 164, Neg. LLF: 129.6416413084602
Iteration: 14, Func. Count: 176, Neg. LLF: 129.6416394705695
Iteration: 15, Func. Count: 187, Neg. LLF: 129.64163947054013
Optimization terminated successfully (Exit mode 0)
Current function value: 129.6416394705695
Iterations: 15
Function evaluations: 187
Gradient evaluations: 15
Iteration: 1, Func. Count: 14, Neg. LLF: 20142271.285267577
Iteration: 2, Func. Count: 28, Neg. LLF: 339.129952249296
Iteration: 3, Func. Count: 42, Neg. LLF: 143.95606649685786
Iteration: 4, Func. Count: 56, Neg. LLF: 130.04890948872662
Iteration: 5, Func. Count: 69, Neg. LLF: 133.8414004520847
Iteration: 6, Func. Count: 83, Neg. LLF: 129.10368072409932
Iteration: 7, Func. Count: 96, Neg. LLF: 129.019273093631
Iteration: 8, Func. Count: 109, Neg. LLF: 128.98475339989156
Iteration: 9, Func. Count: 122, Neg. LLF: 128.98064889620684
Iteration: 10, Func. Count: 136, Neg. LLF: 128.9676680522526
Iteration: 11, Func. Count: 149, Neg. LLF: 128.96685463149367
Iteration: 12, Func. Count: 162, Neg. LLF: 128.96683134157848
Iteration: 13, Func. Count: 174, Neg. LLF: 128.9668313414721
Optimization terminated successfully (Exit mode 0)
Current function value: 128.96683134157848
Iterations: 13
Function evaluations: 174
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 135.18341436495356
Iteration: 2, Func. Count: 23, Neg. LLF: 138.71104943577225
Iteration: 3, Func. Count: 34, Neg. LLF: 131.49813144668533
Iteration: 4, Func. Count: 45, Neg. LLF: 129.77920610600893
Iteration: 5, Func. Count: 55, Neg. LLF: 129.94384401072043
Iteration: 6, Func. Count: 66, Neg. LLF: 132.61973650439734
Iteration: 7, Func. Count: 78, Neg. LLF: 129.4294544938914
Iteration: 8, Func. Count: 88, Neg. LLF: 129.3975409820664
Iteration: 9, Func. Count: 98, Neg. LLF: 129.38981854042999
Iteration: 10, Func. Count: 108, Neg. LLF: 129.38565892982638
Iteration: 11, Func. Count: 118, Neg. LLF: 129.38383506069772
Iteration: 12, Func. Count: 128, Neg. LLF: 129.38379534858583
Iteration: 13, Func. Count: 138, Neg. LLF: 129.38376154502654
Iteration: 14, Func. Count: 148, Neg. LLF: 129.383755586388
Iteration: 15, Func. Count: 158, Neg. LLF: 129.3837542784869
Iteration: 16, Func. Count: 167, Neg. LLF: 129.38375427847677
Optimization terminated successfully (Exit mode 0)
Current function value: 129.3837542784869
Iterations: 16
Function evaluations: 167
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 8281862.51729688
Iteration: 2, Func. Count: 25, Neg. LLF: 156.55940335287121
Iteration: 3, Func. Count: 38, Neg. LLF: 130.9951588779851
Iteration: 4, Func. Count: 50, Neg. LLF: 130.2422422636338
Iteration: 5, Func. Count: 61, Neg. LLF: 131.76706901170442
Iteration: 6, Func. Count: 74, Neg. LLF: 130.04275914793442
Iteration: 7, Func. Count: 85, Neg. LLF: 130.3437810043218
Iteration: 8, Func. Count: 97, Neg. LLF: 129.9923717837715
Iteration: 9, Func. Count: 108, Neg. LLF: 129.9779782382499
Iteration: 10, Func. Count: 119, Neg. LLF: 129.97076355560503
Iteration: 11, Func. Count: 130, Neg. LLF: 129.97024445433257
Iteration: 12, Func. Count: 141, Neg. LLF: 129.97023812688371
Iteration: 13, Func. Count: 151, Neg. LLF: 129.9702381266742
Optimization terminated successfully (Exit mode 0)
Current function value: 129.97023812688371
Iterations: 13
Function evaluations: 151
Gradient evaluations: 13
Iteration: 1, Func. Count: 13, Neg. LLF: 589.8300875954072
Iteration: 2, Func. Count: 26, Neg. LLF: 139.33296566745776
Iteration: 3, Func. Count: 39, Neg. LLF: 132.22437019967091
Iteration: 4, Func. Count: 52, Neg. LLF: 130.0980599290134
Iteration: 5, Func. Count: 64, Neg. LLF: 131.49299719604468
Iteration: 6, Func. Count: 77, Neg. LLF: 130.05024605536218
Iteration: 7, Func. Count: 90, Neg. LLF: 130.18338672778577
Iteration: 8, Func. Count: 103, Neg. LLF: 130.98065338743655
Iteration: 9, Func. Count: 116, Neg. LLF: 130.40977344658964
Iteration: 10, Func. Count: 129, Neg. LLF: 130.05155189083573
Iteration: 11, Func. Count: 142, Neg. LLF: 129.681085849423
Iteration: 12, Func. Count: 154, Neg. LLF: 129.67701780880336
Iteration: 13, Func. Count: 166, Neg. LLF: 129.6756887554979
Iteration: 14, Func. Count: 178, Neg. LLF: 129.67518938123175
Iteration: 15, Func. Count: 190, Neg. LLF: 129.67517045110225
Iteration: 16, Func. Count: 201, Neg. LLF: 129.67517045121997
Optimization terminated successfully (Exit mode 0)
Current function value: 129.67517045110225
Iterations: 16
Function evaluations: 201
Gradient evaluations: 16
Iteration: 1, Func. Count: 14, Neg. LLF: 8172766.660921551
Iteration: 2, Func. Count: 28, Neg. LLF: 142.0431547018785
Iteration: 3, Func. Count: 42, Neg. LLF: 131.99243813276172
Iteration: 4, Func. Count: 56, Neg. LLF: 128.97286172301372
Iteration: 5, Func. Count: 69, Neg. LLF: 130.55878378575875
Iteration: 6, Func. Count: 84, Neg. LLF: 153.16993354187065
Iteration: 7, Func. Count: 98, Neg. LLF: 130.2545941732422
Iteration: 8, Func. Count: 112, Neg. LLF: 128.54051037876025
Iteration: 9, Func. Count: 125, Neg. LLF: 128.53566424330705
Iteration: 10, Func. Count: 138, Neg. LLF: 128.53459118808988
Iteration: 11, Func. Count: 151, Neg. LLF: 128.53416789149531
Iteration: 12, Func. Count: 164, Neg. LLF: 128.53415668205352
Iteration: 13, Func. Count: 177, Neg. LLF: 128.53414909268503
Iteration: 14, Func. Count: 189, Neg. LLF: 128.534149092728
Optimization terminated successfully (Exit mode 0)
Current function value: 128.53414909268503
Iterations: 14
Function evaluations: 189
Gradient evaluations: 14
Iteration: 1, Func. Count: 15, Neg. LLF: 8262260.043484857
Iteration: 2, Func. Count: 30, Neg. LLF: 4783611.639339062
Iteration: 3, Func. Count: 45, Neg. LLF: 138.3963729974388
Iteration: 4, Func. Count: 60, Neg. LLF: 128.69123292289345
Iteration: 5, Func. Count: 74, Neg. LLF: 129.6918660270582
Iteration: 6, Func. Count: 89, Neg. LLF: 129.39444698178605
Iteration: 7, Func. Count: 104, Neg. LLF: 132.11302648373766
Iteration: 8, Func. Count: 119, Neg. LLF: 127.7083293833047
Iteration: 9, Func. Count: 133, Neg. LLF: 127.66706570236902
Iteration: 10, Func. Count: 147, Neg. LLF: 127.64408621448753
Iteration: 11, Func. Count: 161, Neg. LLF: 127.64144649551868
Iteration: 12, Func. Count: 175, Neg. LLF: 127.64063295564635
Iteration: 13, Func. Count: 189, Neg. LLF: 127.64042588496902
Iteration: 14, Func. Count: 203, Neg. LLF: 127.64038284226659
Iteration: 15, Func. Count: 216, Neg. LLF: 127.6403828424789
Optimization terminated successfully (Exit mode 0)
Current function value: 127.64038284226659
Iterations: 15
Function evaluations: 216
Gradient evaluations: 15
Iteration: 1, Func. Count: 12, Neg. LLF: 135.1602485506891
Iteration: 2, Func. Count: 24, Neg. LLF: 143.5975132845636
Iteration: 3, Func. Count: 36, Neg. LLF: 131.55186716725598
Iteration: 4, Func. Count: 48, Neg. LLF: 130.0270146778492
Iteration: 5, Func. Count: 60, Neg. LLF: 129.85824389112798
Iteration: 6, Func. Count: 72, Neg. LLF: 129.4553605137052
Iteration: 7, Func. Count: 83, Neg. LLF: 129.3917829691391
Iteration: 8, Func. Count: 94, Neg. LLF: 129.38739598838734
Iteration: 9, Func. Count: 105, Neg. LLF: 129.3850891478083
Iteration: 10, Func. Count: 116, Neg. LLF: 129.38377599828797
Iteration: 11, Func. Count: 127, Neg. LLF: 129.38375547767208
Iteration: 12, Func. Count: 138, Neg. LLF: 129.38375451487926
Optimization terminated successfully (Exit mode 0)
Current function value: 129.38375451487926
Iterations: 12
Function evaluations: 138
Gradient evaluations: 12
Iteration: 1, Func. Count: 13, Neg. LLF: 8287342.240036976
Iteration: 2, Func. Count: 27, Neg. LLF: 155.35055910032952
Iteration: 3, Func. Count: 41, Neg. LLF: 130.97033815419294
Iteration: 4, Func. Count: 54, Neg. LLF: 130.24095979242438
Iteration: 5, Func. Count: 66, Neg. LLF: 131.79262726854708
Iteration: 6, Func. Count: 80, Neg. LLF: 130.04103050170494
Iteration: 7, Func. Count: 92, Neg. LLF: 130.19108814602708
Iteration: 8, Func. Count: 105, Neg. LLF: 130.00510806095215
Iteration: 9, Func. Count: 118, Neg. LLF: 129.9785590960295
Iteration: 10, Func. Count: 131, Neg. LLF: 129.9702472771321
Iteration: 11, Func. Count: 143, Neg. LLF: 129.97023784944258
Iteration: 12, Func. Count: 154, Neg. LLF: 129.9702378494196
Optimization terminated successfully (Exit mode 0)
Current function value: 129.97023784944258
Iterations: 12
Function evaluations: 154
Gradient evaluations: 12
Iteration: 1, Func. Count: 14, Neg. LLF: 585.5651854460201
Iteration: 2, Func. Count: 28, Neg. LLF: 139.58294926420515
Iteration: 3, Func. Count: 42, Neg. LLF: 132.1274719535236
Iteration: 4, Func. Count: 56, Neg. LLF: 130.04560092810735
Iteration: 5, Func. Count: 69, Neg. LLF: 131.45958811196306
Iteration: 6, Func. Count: 83, Neg. LLF: 129.95553069172544
Iteration: 7, Func. Count: 97, Neg. LLF: 130.82107351447476
Iteration: 8, Func. Count: 111, Neg. LLF: 129.7169264113563
Iteration: 9, Func. Count: 124, Neg. LLF: 129.7104153802758
Iteration: 10, Func. Count: 137, Neg. LLF: 129.7097522412171
Iteration: 11, Func. Count: 150, Neg. LLF: 129.70948117151156
Iteration: 12, Func. Count: 163, Neg. LLF: 129.7094562535099
Iteration: 13, Func. Count: 176, Neg. LLF: 129.7094555646483
Optimization terminated successfully (Exit mode 0)
Current function value: 129.7094555646483
Iterations: 13
Function evaluations: 176
Gradient evaluations: 13
Iteration: 1, Func. Count: 15, Neg. LLF: 8178701.488011389
Iteration: 2, Func. Count: 30, Neg. LLF: 142.32875135357733
Iteration: 3, Func. Count: 45, Neg. LLF: 131.81348337615174
Iteration: 4, Func. Count: 60, Neg. LLF: 129.00379892389188
Iteration: 5, Func. Count: 74, Neg. LLF: 130.7594803628266
Iteration: 6, Func. Count: 90, Neg. LLF: 158.60671391299675
Iteration: 7, Func. Count: 105, Neg. LLF: 130.31428376308867
Iteration: 8, Func. Count: 120, Neg. LLF: 128.53984627281966
Iteration: 9, Func. Count: 134, Neg. LLF: 128.5358869636063
Iteration: 10, Func. Count: 148, Neg. LLF: 128.53469885628465
Iteration: 11, Func. Count: 162, Neg. LLF: 128.53418963223797
Iteration: 12, Func. Count: 176, Neg. LLF: 128.53416412867767
Iteration: 13, Func. Count: 190, Neg. LLF: 128.53414998851306
Iteration: 14, Func. Count: 204, Neg. LLF: 128.53414914213485
Optimization terminated successfully (Exit mode 0)
Current function value: 128.53414914213485
Iterations: 14
Function evaluations: 204
Gradient evaluations: 14
Iteration: 1, Func. Count: 16, Neg. LLF: 8266691.026901381
Iteration: 2, Func. Count: 32, Neg. LLF: 4793078.530867723
Iteration: 3, Func. Count: 48, Neg. LLF: 138.2352418786871
Iteration: 4, Func. Count: 64, Neg. LLF: 128.69492979336422
Iteration: 5, Func. Count: 79, Neg. LLF: 129.62881191314347
Iteration: 6, Func. Count: 95, Neg. LLF: 129.44374189325765
Iteration: 7, Func. Count: 111, Neg. LLF: 131.849496291333
Iteration: 8, Func. Count: 127, Neg. LLF: 127.70757757267228
Iteration: 9, Func. Count: 142, Neg. LLF: 127.66647082598145
Iteration: 10, Func. Count: 157, Neg. LLF: 127.64376710832377
Iteration: 11, Func. Count: 172, Neg. LLF: 127.64143734512558
Iteration: 12, Func. Count: 187, Neg. LLF: 127.6406231003967
Iteration: 13, Func. Count: 202, Neg. LLF: 127.64042487456797
Iteration: 14, Func. Count: 217, Neg. LLF: 127.6403828678379
Iteration: 15, Func. Count: 231, Neg. LLF: 127.64038286806259
Optimization terminated successfully (Exit mode 0)
Current function value: 127.6403828678379
Iterations: 15
Function evaluations: 231
Gradient evaluations: 15
Iteration: 1, Func. Count: 6, Neg. LLF: 19941034.032816816
Iteration: 2, Func. Count: 13, Neg. LLF: 150.74368625253885
Iteration: 3, Func. Count: 19, Neg. LLF: 138.6800615977821
Iteration: 4, Func. Count: 25, Neg. LLF: 132.06195520250714
Iteration: 5, Func. Count: 31, Neg. LLF: 130.57465357182357
Iteration: 6, Func. Count: 36, Neg. LLF: 131.64532355970516
Iteration: 7, Func. Count: 42, Neg. LLF: 133.03079852078648
Iteration: 8, Func. Count: 49, Neg. LLF: 130.2880314896481
Iteration: 9, Func. Count: 54, Neg. LLF: 130.27691659321906
Iteration: 10, Func. Count: 59, Neg. LLF: 130.27617369773117
Iteration: 11, Func. Count: 64, Neg. LLF: 130.27615358711466
Iteration: 12, Func. Count: 69, Neg. LLF: 130.27614826147212
Iteration: 13, Func. Count: 73, Neg. LLF: 130.27614826138128
Optimization terminated successfully (Exit mode 0)
Current function value: 130.27614826147212
Iterations: 13
Function evaluations: 73
Gradient evaluations: 13
Iteration: 1, Func. Count: 5, Neg. LLF: 130.81313100973827
Iteration: 2, Func. Count: 10, Neg. LLF: 154.73153580293805
Iteration: 3, Func. Count: 15, Neg. LLF: 124.70654955377958
Iteration: 4, Func. Count: 19, Neg. LLF: 124.49228331440192
Iteration: 5, Func. Count: 23, Neg. LLF: 124.46482112502531
Iteration: 6, Func. Count: 27, Neg. LLF: 124.36864859644355
Iteration: 7, Func. Count: 31, Neg. LLF: 124.35826103069164
Iteration: 8, Func. Count: 35, Neg. LLF: 124.35711829468549
Iteration: 9, Func. Count: 39, Neg. LLF: 124.35711152496285
Iteration: 10, Func. Count: 42, Neg. LLF: 124.35711152497372
Optimization terminated successfully (Exit mode 0)
Current function value: 124.35711152496285
Iterations: 10
Function evaluations: 42
Gradient evaluations: 10
Iteration: 1, Func. Count: 6, Neg. LLF: 23829504.732409824
Iteration: 2, Func. Count: 13, Neg. LLF: 125.66715641473829
Iteration: 3, Func. Count: 19, Neg. LLF: 126.27415664249676
Iteration: 4, Func. Count: 25, Neg. LLF: 124.33910274625364
Iteration: 5, Func. Count: 31, Neg. LLF: 124.28381471161687
Iteration: 6, Func. Count: 36, Neg. LLF: 124.28284868038416
Iteration: 7, Func. Count: 41, Neg. LLF: 124.28212570680279
Iteration: 8, Func. Count: 46, Neg. LLF: 124.28195933535706
Iteration: 9, Func. Count: 51, Neg. LLF: 124.28164369992658
Iteration: 10, Func. Count: 56, Neg. LLF: 124.16128886428228
Iteration: 11, Func. Count: 61, Neg. LLF: 124.599981814666
Iteration: 12, Func. Count: 68, Neg. LLF: 124.12643114491148
Iteration: 13, Func. Count: 73, Neg. LLF: 124.12512467565219
Iteration: 14, Func. Count: 78, Neg. LLF: 124.12498260294264
Iteration: 15, Func. Count: 83, Neg. LLF: 124.12497275283104
Iteration: 16, Func. Count: 87, Neg. LLF: 124.12497275334572
Optimization terminated successfully (Exit mode 0)
Current function value: 124.12497275283104
Iterations: 16
Function evaluations: 87
Gradient evaluations: 16
Iteration: 1, Func. Count: 7, Neg. LLF: 223.74604777576778
Iteration: 2, Func. Count: 14, Neg. LLF: 144.76513327099758
Iteration: 3, Func. Count: 21, Neg. LLF: 123.99818369936821
Iteration: 4, Func. Count: 27, Neg. LLF: 123.96511892816385
Iteration: 5, Func. Count: 34, Neg. LLF: 123.58164676226698
Iteration: 6, Func. Count: 41, Neg. LLF: 123.49365703309252
Iteration: 7, Func. Count: 47, Neg. LLF: 123.49359064624063
Iteration: 8, Func. Count: 53, Neg. LLF: 123.4935888471404
Iteration: 9, Func. Count: 58, Neg. LLF: 123.49358884709414
Optimization terminated successfully (Exit mode 0)
Current function value: 123.4935888471404
Iterations: 9
Function evaluations: 58
Gradient evaluations: 9
Iteration: 1, Func. Count: 8, Neg. LLF: 234.24203507386605
Iteration: 2, Func. Count: 16, Neg. LLF: 161.457761672494
Iteration: 3, Func. Count: 24, Neg. LLF: 125.9987730646701
Iteration: 4, Func. Count: 32, Neg. LLF: 123.7318547778793
Iteration: 5, Func. Count: 39, Neg. LLF: 124.47263294527843
Iteration: 6, Func. Count: 48, Neg. LLF: 123.99215123091122
Iteration: 7, Func. Count: 56, Neg. LLF: 123.48863810997214
Iteration: 8, Func. Count: 63, Neg. LLF: 123.48892350769353
Iteration: 9, Func. Count: 71, Neg. LLF: 123.47197409821807
Iteration: 10, Func. Count: 78, Neg. LLF: 123.46917600667481
Iteration: 11, Func. Count: 85, Neg. LLF: 123.46769980038586
Iteration: 12, Func. Count: 92, Neg. LLF: 123.46766574111415
Iteration: 13, Func. Count: 99, Neg. LLF: 123.46766297667749
Iteration: 14, Func. Count: 105, Neg. LLF: 123.46766297681809
Optimization terminated successfully (Exit mode 0)
Current function value: 123.46766297667749
Iterations: 14
Function evaluations: 105
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 238.7134041577578
Iteration: 2, Func. Count: 18, Neg. LLF: 177.65389725575335
Iteration: 3, Func. Count: 27, Neg. LLF: 133.36421248281889
Iteration: 4, Func. Count: 36, Neg. LLF: 124.70962788311455
Iteration: 5, Func. Count: 45, Neg. LLF: 124.2000817202125
Iteration: 6, Func. Count: 54, Neg. LLF: 123.6932148143546
Iteration: 7, Func. Count: 63, Neg. LLF: 123.44815118727689
Iteration: 8, Func. Count: 71, Neg. LLF: 123.43695956148812
Iteration: 9, Func. Count: 79, Neg. LLF: 123.4338164130983
Iteration: 10, Func. Count: 87, Neg. LLF: 123.43362874184494
Iteration: 11, Func. Count: 95, Neg. LLF: 123.43359322544288
Iteration: 12, Func. Count: 103, Neg. LLF: 123.43357594806254
Iteration: 13, Func. Count: 111, Neg. LLF: 123.4335713920394
Iteration: 14, Func. Count: 118, Neg. LLF: 123.43357139193394
Optimization terminated successfully (Exit mode 0)
Current function value: 123.4335713920394
Iterations: 14
Function evaluations: 118
Gradient evaluations: 14
Iteration: 1, Func. Count: 6, Neg. LLF: 135.52212298006518
Iteration: 2, Func. Count: 13, Neg. LLF: 149.32354767758582
Iteration: 3, Func. Count: 19, Neg. LLF: 124.5869106153686
Iteration: 4, Func. Count: 24, Neg. LLF: 124.3835185558596
Iteration: 5, Func. Count: 29, Neg. LLF: 124.36024262874953
Iteration: 6, Func. Count: 34, Neg. LLF: 124.35744266674745
Iteration: 7, Func. Count: 39, Neg. LLF: 124.35731996364788
Iteration: 8, Func. Count: 44, Neg. LLF: 124.35714098737131
Iteration: 9, Func. Count: 49, Neg. LLF: 124.35711439742366
Iteration: 10, Func. Count: 54, Neg. LLF: 124.35711148927011
Iteration: 11, Func. Count: 58, Neg. LLF: 124.35711159526139
Optimization terminated successfully (Exit mode 0)
Current function value: 124.35711148927011
Iterations: 11
Function evaluations: 58
Gradient evaluations: 11
Iteration: 1, Func. Count: 7, Neg. LLF: 24335144.79368166
Iteration: 2, Func. Count: 15, Neg. LLF: 136.03550270153403
Iteration: 3, Func. Count: 22, Neg. LLF: 124.74618469419812
Iteration: 4, Func. Count: 29, Neg. LLF: 124.38040045205894
Iteration: 5, Func. Count: 35, Neg. LLF: 124.35744372608232
Iteration: 6, Func. Count: 42, Neg. LLF: 124.29555810726863
Iteration: 7, Func. Count: 48, Neg. LLF: 124.28721541593647
Iteration: 8, Func. Count: 54, Neg. LLF: 124.28402473647665
Iteration: 9, Func. Count: 60, Neg. LLF: 124.28224611991646
Iteration: 10, Func. Count: 66, Neg. LLF: 124.28194137617871
Iteration: 11, Func. Count: 72, Neg. LLF: 124.28170713097161
Iteration: 12, Func. Count: 78, Neg. LLF: 124.26508267596873
Iteration: 13, Func. Count: 84, Neg. LLF: 124.13555247044087
Iteration: 14, Func. Count: 90, Neg. LLF: 124.14278350431138
Iteration: 15, Func. Count: 97, Neg. LLF: 124.129327269551
Iteration: 16, Func. Count: 104, Neg. LLF: 20162575.52426966
Iteration: 17, Func. Count: 114, Neg. LLF: 124.14528606490086
Iteration: 18, Func. Count: 121, Neg. LLF: 124.12497324760926
Iteration: 19, Func. Count: 127, Neg. LLF: 124.12497275215955
Optimization terminated successfully (Exit mode 0)
Current function value: 124.12497275215955
Iterations: 20
Function evaluations: 127
Gradient evaluations: 19
Iteration: 1, Func. Count: 8, Neg. LLF: 164.27105521034736
Iteration: 2, Func. Count: 16, Neg. LLF: 139.80864672105142
Iteration: 3, Func. Count: 24, Neg. LLF: 131.3272222634739
Iteration: 4, Func. Count: 32, Neg. LLF: 123.69736603309245
Iteration: 5, Func. Count: 39, Neg. LLF: 124.01919781570061
Iteration: 6, Func. Count: 47, Neg. LLF: 123.52653223354775
Iteration: 7, Func. Count: 54, Neg. LLF: 123.49459660647102
Iteration: 8, Func. Count: 61, Neg. LLF: 123.49391637233887
Iteration: 9, Func. Count: 68, Neg. LLF: 123.49360638051611
Iteration: 10, Func. Count: 75, Neg. LLF: 123.49359238261985
Iteration: 11, Func. Count: 82, Neg. LLF: 123.49358850139917
Iteration: 12, Func. Count: 88, Neg. LLF: 123.49358850139119
Optimization terminated successfully (Exit mode 0)
Current function value: 123.49358850139917
Iterations: 12
Function evaluations: 88
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 169.88783498098041
Iteration: 2, Func. Count: 18, Neg. LLF: 194.8751612740417
Iteration: 3, Func. Count: 27, Neg. LLF: 128.36675728374658
Iteration: 4, Func. Count: 36, Neg. LLF: 124.08665364557773
Iteration: 5, Func. Count: 44, Neg. LLF: 123.73120195633243
Iteration: 6, Func. Count: 53, Neg. LLF: 123.74534730853725
Iteration: 7, Func. Count: 62, Neg. LLF: 123.49499154636496
Iteration: 8, Func. Count: 70, Neg. LLF: 123.4934711892297
Iteration: 9, Func. Count: 78, Neg. LLF: 123.49176137084554
Iteration: 10, Func. Count: 86, Neg. LLF: 123.4895729482792
Iteration: 11, Func. Count: 94, Neg. LLF: 123.37121603203015
Iteration: 12, Func. Count: 102, Neg. LLF: 123.63640444450373
Iteration: 13, Func. Count: 111, Neg. LLF: 123.47461977016695
Iteration: 14, Func. Count: 120, Neg. LLF: 123.86086251737318
Iteration: 15, Func. Count: 129, Neg. LLF: 123.39204775185189
Iteration: 16, Func. Count: 138, Neg. LLF: 123.1617345164282
Iteration: 17, Func. Count: 147, Neg. LLF: 122.82642456030867
Iteration: 18, Func. Count: 155, Neg. LLF: 122.78660954024308
Iteration: 19, Func. Count: 163, Neg. LLF: 122.78289295255922
Iteration: 20, Func. Count: 171, Neg. LLF: 122.78278277597857
Iteration: 21, Func. Count: 179, Neg. LLF: 122.78276670577488
Iteration: 22, Func. Count: 187, Neg. LLF: 122.7827658956558
Optimization terminated successfully (Exit mode 0)
Current function value: 122.7827658956558
Iterations: 22
Function evaluations: 187
Gradient evaluations: 22
Iteration: 1, Func. Count: 10, Neg. LLF: 197.2610453832895
Iteration: 2, Func. Count: 20, Neg. LLF: 11402245.566428592
Iteration: 3, Func. Count: 30, Neg. LLF: 124.94764529513266
Iteration: 4, Func. Count: 40, Neg. LLF: 124.57436810302997
Iteration: 5, Func. Count: 50, Neg. LLF: 123.7777007944148
Iteration: 6, Func. Count: 60, Neg. LLF: 123.49927624441638
Iteration: 7, Func. Count: 69, Neg. LLF: 123.56730988601424
Iteration: 8, Func. Count: 79, Neg. LLF: 123.39257739509631
Iteration: 9, Func. Count: 88, Neg. LLF: 123.54712999709803
Iteration: 10, Func. Count: 98, Neg. LLF: 123.50508134545773
Iteration: 11, Func. Count: 108, Neg. LLF: 123.38959538748419
Iteration: 12, Func. Count: 118, Neg. LLF: 123.78525238223743
Iteration: 13, Func. Count: 128, Neg. LLF: 123.92706125744381
Iteration: 14, Func. Count: 138, Neg. LLF: 123.40254255240657
Iteration: 15, Func. Count: 148, Neg. LLF: 123.05046110023684
Iteration: 16, Func. Count: 157, Neg. LLF: 123.57859884329864
Iteration: 17, Func. Count: 168, Neg. LLF: 123.56545298647765
Iteration: 18, Func. Count: 178, Neg. LLF: 122.84641988704482
Iteration: 19, Func. Count: 187, Neg. LLF: 122.81391661355752
Iteration: 20, Func. Count: 196, Neg. LLF: 122.7972654479755
Iteration: 21, Func. Count: 205, Neg. LLF: 122.79252045119465
Iteration: 22, Func. Count: 214, Neg. LLF: 122.78443871453086
Iteration: 23, Func. Count: 223, Neg. LLF: 122.783046331372
Iteration: 24, Func. Count: 232, Neg. LLF: 122.78277721596275
Iteration: 25, Func. Count: 241, Neg. LLF: 122.78276605528625
Iteration: 26, Func. Count: 249, Neg. LLF: 122.78276609667
Optimization terminated successfully (Exit mode 0)
Current function value: 122.78276605528625
Iterations: 26
Function evaluations: 249
Gradient evaluations: 26
Iteration: 1, Func. Count: 7, Neg. LLF: 129.03579224913582
Iteration: 2, Func. Count: 14, Neg. LLF: 151.19296525560935
Iteration: 3, Func. Count: 21, Neg. LLF: 124.30222575177311
Iteration: 4, Func. Count: 27, Neg. LLF: 124.4938094661136
Iteration: 5, Func. Count: 34, Neg. LLF: 123.92032420985353
Iteration: 6, Func. Count: 40, Neg. LLF: 123.87104297771204
Iteration: 7, Func. Count: 46, Neg. LLF: 123.8622437146685
Iteration: 8, Func. Count: 52, Neg. LLF: 123.85824070503764
Iteration: 9, Func. Count: 58, Neg. LLF: 123.85787950600132
Iteration: 10, Func. Count: 64, Neg. LLF: 123.85787373568212
Iteration: 11, Func. Count: 69, Neg. LLF: 123.85787373569586
Optimization terminated successfully (Exit mode 0)
Current function value: 123.85787373568212
Iterations: 11
Function evaluations: 69
Gradient evaluations: 11
Iteration: 1, Func. Count: 8, Neg. LLF: 26121164.596577875
Iteration: 2, Func. Count: 17, Neg. LLF: 156.11343027018788
Iteration: 3, Func. Count: 26, Neg. LLF: 127.24339056328994
Iteration: 4, Func. Count: 34, Neg. LLF: 124.3542105364683
Iteration: 5, Func. Count: 41, Neg. LLF: 124.41491255411074
Iteration: 6, Func. Count: 49, Neg. LLF: 124.31470584511688
Iteration: 7, Func. Count: 56, Neg. LLF: 124.29765051355912
Iteration: 8, Func. Count: 63, Neg. LLF: 124.28689228871453
Iteration: 9, Func. Count: 70, Neg. LLF: 124.28285634378827
Iteration: 10, Func. Count: 77, Neg. LLF: 124.282167128287
Iteration: 11, Func. Count: 84, Neg. LLF: 124.28191610002281
Iteration: 12, Func. Count: 91, Neg. LLF: 124.28172991598976
Iteration: 13, Func. Count: 98, Neg. LLF: 124.27108499963015
Iteration: 14, Func. Count: 105, Neg. LLF: 124.14354351149858
Iteration: 15, Func. Count: 112, Neg. LLF: 127.6535781659286
Iteration: 16, Func. Count: 121, Neg. LLF: 124.12664215744091
Iteration: 17, Func. Count: 128, Neg. LLF: 124.12515066385575
Iteration: 18, Func. Count: 135, Neg. LLF: 124.1254782271793
Iteration: 19, Func. Count: 143, Neg. LLF: 15182316.546620913
Iteration: 20, Func. Count: 155, Neg. LLF: 124.12515933163947
Iteration: 21, Func. Count: 163, Neg. LLF: 124.12497272717535
Iteration: 22, Func. Count: 169, Neg. LLF: 124.12497272717134
Optimization terminated successfully (Exit mode 0)
Current function value: 124.12497272717535
Iterations: 23
Function evaluations: 169
Gradient evaluations: 22
Iteration: 1, Func. Count: 9, Neg. LLF: 172.33062234793255
Iteration: 2, Func. Count: 18, Neg. LLF: 129.74407230194208
Iteration: 3, Func. Count: 28, Neg. LLF: 128.58551305450885
Iteration: 4, Func. Count: 37, Neg. LLF: 123.54001093748937
Iteration: 5, Func. Count: 45, Neg. LLF: 123.49873121045117
Iteration: 6, Func. Count: 53, Neg. LLF: 123.4944869231606
Iteration: 7, Func. Count: 61, Neg. LLF: 123.49390968312312
Iteration: 8, Func. Count: 69, Neg. LLF: 123.49363733326783
Iteration: 9, Func. Count: 77, Neg. LLF: 123.4935909235128
Iteration: 10, Func. Count: 85, Neg. LLF: 123.4935885024787
Iteration: 11, Func. Count: 92, Neg. LLF: 123.49358850248873
Optimization terminated successfully (Exit mode 0)
Current function value: 123.4935885024787
Iterations: 11
Function evaluations: 92
Gradient evaluations: 11
Iteration: 1, Func. Count: 10, Neg. LLF: 182.9134631717406
Iteration: 2, Func. Count: 20, Neg. LLF: 167.1602883359006
Iteration: 3, Func. Count: 30, Neg. LLF: 170.58068213625444
Iteration: 4, Func. Count: 40, Neg. LLF: 123.8210794450951
Iteration: 5, Func. Count: 49, Neg. LLF: 123.22605124101918
Iteration: 6, Func. Count: 58, Neg. LLF: 124.89551924895184
Iteration: 7, Func. Count: 70, Neg. LLF: 124.16165123526366
Iteration: 8, Func. Count: 80, Neg. LLF: 123.05870993546587
Iteration: 9, Func. Count: 89, Neg. LLF: 123.14426874902342
Iteration: 10, Func. Count: 99, Neg. LLF: 122.93058538055972
Iteration: 11, Func. Count: 109, Neg. LLF: 122.79578393260653
Iteration: 12, Func. Count: 118, Neg. LLF: 122.78601050695538
Iteration: 13, Func. Count: 127, Neg. LLF: 122.78309314534326
Iteration: 14, Func. Count: 136, Neg. LLF: 122.78291908886736
Iteration: 15, Func. Count: 145, Neg. LLF: 122.78283551963456
Iteration: 16, Func. Count: 154, Neg. LLF: 122.7827687650768
Iteration: 17, Func. Count: 163, Neg. LLF: 122.78276603930202
Iteration: 18, Func. Count: 171, Neg. LLF: 122.78276603916785
Optimization terminated successfully (Exit mode 0)
Current function value: 122.78276603930202
Iterations: 18
Function evaluations: 171
Gradient evaluations: 18
Iteration: 1, Func. Count: 11, Neg. LLF: 242.1296336129136
Iteration: 2, Func. Count: 22, Neg. LLF: 13670749.23820812
Iteration: 3, Func. Count: 33, Neg. LLF: 136.02695575929113
Iteration: 4, Func. Count: 44, Neg. LLF: 123.9704296280025
Iteration: 5, Func. Count: 54, Neg. LLF: 125.03876308586534
Iteration: 6, Func. Count: 65, Neg. LLF: 123.61350503409926
Iteration: 7, Func. Count: 75, Neg. LLF: 124.16511342724299
Iteration: 8, Func. Count: 86, Neg. LLF: 123.53225356169385
Iteration: 9, Func. Count: 96, Neg. LLF: 123.48960596612253
Iteration: 10, Func. Count: 106, Neg. LLF: 123.48086452603205
Iteration: 11, Func. Count: 116, Neg. LLF: 123.38050689018678
Iteration: 12, Func. Count: 126, Neg. LLF: 122.85933162069796
Iteration: 13, Func. Count: 136, Neg. LLF: 123.87488630711195
Iteration: 14, Func. Count: 147, Neg. LLF: 122.86165769160287
Iteration: 15, Func. Count: 158, Neg. LLF: 122.79499423094717
Iteration: 16, Func. Count: 168, Neg. LLF: 122.787622968394
Iteration: 17, Func. Count: 178, Neg. LLF: 122.78497624949928
Iteration: 18, Func. Count: 188, Neg. LLF: 122.78283701214131
Iteration: 19, Func. Count: 198, Neg. LLF: 122.78276706254906
Iteration: 20, Func. Count: 208, Neg. LLF: 122.7827659464091
Iteration: 21, Func. Count: 217, Neg. LLF: 122.78276598785085
Optimization terminated successfully (Exit mode 0)
Current function value: 122.7827659464091
Iterations: 21
Function evaluations: 217
Gradient evaluations: 21
Iteration: 1, Func. Count: 8, Neg. LLF: 128.73804745916118
Iteration: 2, Func. Count: 17, Neg. LLF: 161.1808542319405
Iteration: 3, Func. Count: 25, Neg. LLF: 128.57975815209238
Iteration: 4, Func. Count: 34, Neg. LLF: 123.91129463081623
Iteration: 5, Func. Count: 41, Neg. LLF: 125.20953810187612
Iteration: 6, Func. Count: 49, Neg. LLF: 123.8517039709867
Iteration: 7, Func. Count: 56, Neg. LLF: 123.84343679456585
Iteration: 8, Func. Count: 63, Neg. LLF: 123.84021343552284
Iteration: 9, Func. Count: 70, Neg. LLF: 123.83787932789703
Iteration: 10, Func. Count: 77, Neg. LLF: 123.83644426004372
Iteration: 11, Func. Count: 84, Neg. LLF: 123.8360386629305
Iteration: 12, Func. Count: 91, Neg. LLF: 123.83597442333979
Iteration: 13, Func. Count: 98, Neg. LLF: 123.83597283503744
Iteration: 14, Func. Count: 104, Neg. LLF: 123.83597283501625
Optimization terminated successfully (Exit mode 0)
Current function value: 123.83597283503744
Iterations: 14
Function evaluations: 104
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 26678602.35399413
Iteration: 2, Func. Count: 19, Neg. LLF: 181.61631091088415
Iteration: 3, Func. Count: 28, Neg. LLF: 127.41327777619414
Iteration: 4, Func. Count: 37, Neg. LLF: 124.39220198685696
Iteration: 5, Func. Count: 45, Neg. LLF: 125.24307145079706
Iteration: 6, Func. Count: 54, Neg. LLF: 124.7897423469567
Iteration: 7, Func. Count: 63, Neg. LLF: 124.30119970650402
Iteration: 8, Func. Count: 71, Neg. LLF: 124.29359379241221
Iteration: 9, Func. Count: 79, Neg. LLF: 124.287004158388
Iteration: 10, Func. Count: 87, Neg. LLF: 124.28292098237729
Iteration: 11, Func. Count: 95, Neg. LLF: 124.28216065600675
Iteration: 12, Func. Count: 103, Neg. LLF: 124.28187506084468
Iteration: 13, Func. Count: 111, Neg. LLF: 124.28139892139123
Iteration: 14, Func. Count: 119, Neg. LLF: 124.25156875137283
Iteration: 15, Func. Count: 127, Neg. LLF: 124.2790402021219
Iteration: 16, Func. Count: 137, Neg. LLF: 124.1321239689511
Iteration: 17, Func. Count: 145, Neg. LLF: 124.12574725948339
Iteration: 18, Func. Count: 153, Neg. LLF: 124.124990628161
Iteration: 19, Func. Count: 161, Neg. LLF: 124.12497306645413
Iteration: 20, Func. Count: 168, Neg. LLF: 124.12497306465147
Optimization terminated successfully (Exit mode 0)
Current function value: 124.12497306645413
Iterations: 20
Function evaluations: 168
Gradient evaluations: 20
Iteration: 1, Func. Count: 10, Neg. LLF: 169.50976702630584
Iteration: 2, Func. Count: 20, Neg. LLF: 165.5206770894163
Iteration: 3, Func. Count: 30, Neg. LLF: 136.28667192349948
Iteration: 4, Func. Count: 40, Neg. LLF: 123.54660375569638
Iteration: 5, Func. Count: 49, Neg. LLF: 123.66354259313418
Iteration: 6, Func. Count: 59, Neg. LLF: 123.50325660064766
Iteration: 7, Func. Count: 68, Neg. LLF: 123.49640889040201
Iteration: 8, Func. Count: 77, Neg. LLF: 123.49476091869526
Iteration: 9, Func. Count: 86, Neg. LLF: 123.49361007128769
Iteration: 10, Func. Count: 95, Neg. LLF: 123.4935887369382
Iteration: 11, Func. Count: 103, Neg. LLF: 123.49358873706855
Optimization terminated successfully (Exit mode 0)
Current function value: 123.4935887369382
Iterations: 11
Function evaluations: 103
Gradient evaluations: 11
Iteration: 1, Func. Count: 11, Neg. LLF: 176.29935952702587
Iteration: 2, Func. Count: 22, Neg. LLF: 139.48077253289756
Iteration: 3, Func. Count: 33, Neg. LLF: 129.41349653582094
Iteration: 4, Func. Count: 44, Neg. LLF: 125.87379185501949
Iteration: 5, Func. Count: 55, Neg. LLF: 126.74595918822094
Iteration: 6, Func. Count: 66, Neg. LLF: 123.176590267599
Iteration: 7, Func. Count: 76, Neg. LLF: 123.96125987311554
Iteration: 8, Func. Count: 88, Neg. LLF: 130.07964997034725
Iteration: 9, Func. Count: 99, Neg. LLF: 123.05147619130723
Iteration: 10, Func. Count: 110, Neg. LLF: 122.90425026687436
Iteration: 11, Func. Count: 120, Neg. LLF: 122.87102194659519
Iteration: 12, Func. Count: 130, Neg. LLF: 122.86065033545384
Iteration: 13, Func. Count: 140, Neg. LLF: 122.81721088283759
Iteration: 14, Func. Count: 150, Neg. LLF: 122.79935751888378
Iteration: 15, Func. Count: 160, Neg. LLF: 122.7902541482744
Iteration: 16, Func. Count: 170, Neg. LLF: 122.78331879219574
Iteration: 17, Func. Count: 180, Neg. LLF: 122.78287200916063
Iteration: 18, Func. Count: 190, Neg. LLF: 122.78276937721364
Iteration: 19, Func. Count: 200, Neg. LLF: 122.78276595717873
Iteration: 20, Func. Count: 209, Neg. LLF: 122.78276595717291
Optimization terminated successfully (Exit mode 0)
Current function value: 122.78276595717873
Iterations: 20
Function evaluations: 209
Gradient evaluations: 20
Iteration: 1, Func. Count: 12, Neg. LLF: 182.7159379119708
Iteration: 2, Func. Count: 24, Neg. LLF: 152.6776344637511
Iteration: 3, Func. Count: 36, Neg. LLF: 129.65476339176408
Iteration: 4, Func. Count: 48, Neg. LLF: 131.50719510229536
Iteration: 5, Func. Count: 60, Neg. LLF: 127.56597326637116
Iteration: 6, Func. Count: 72, Neg. LLF: 123.76293093069383
Iteration: 7, Func. Count: 83, Neg. LLF: 124.65786224696247
Iteration: 8, Func. Count: 95, Neg. LLF: 123.74318405477462
Iteration: 9, Func. Count: 107, Neg. LLF: 123.48046956882047
Iteration: 10, Func. Count: 118, Neg. LLF: 123.45593611580091
Iteration: 11, Func. Count: 129, Neg. LLF: 123.44359752932976
Iteration: 12, Func. Count: 140, Neg. LLF: 123.43808116078044
Iteration: 13, Func. Count: 151, Neg. LLF: 123.4342192183081
Iteration: 14, Func. Count: 162, Neg. LLF: 123.43377226251161
Iteration: 15, Func. Count: 173, Neg. LLF: 123.43367425591384
Iteration: 16, Func. Count: 184, Neg. LLF: 123.4336445994569
Iteration: 17, Func. Count: 195, Neg. LLF: 123.43363291162436
Iteration: 18, Func. Count: 206, Neg. LLF: 123.43358492013567
Iteration: 19, Func. Count: 217, Neg. LLF: 123.4335740399224
Iteration: 20, Func. Count: 228, Neg. LLF: 123.43357107278548
Iteration: 21, Func. Count: 238, Neg. LLF: 123.4335710727503
Optimization terminated successfully (Exit mode 0)
Current function value: 123.43357107278548
Iterations: 21
Function evaluations: 238
Gradient evaluations: 21
Iteration: 1, Func. Count: 5, Neg. LLF: 131.03408304035307
Iteration: 2, Func. Count: 10, Neg. LLF: 133.42720458896576
Iteration: 3, Func. Count: 15, Neg. LLF: 126.9818687267135
Iteration: 4, Func. Count: 20, Neg. LLF: 125.70461700593026
Iteration: 5, Func. Count: 24, Neg. LLF: 125.67023761859366
Iteration: 6, Func. Count: 28, Neg. LLF: 125.66567572547439
Iteration: 7, Func. Count: 32, Neg. LLF: 125.66481336796629
Iteration: 8, Func. Count: 36, Neg. LLF: 125.66478979576141
Iteration: 9, Func. Count: 40, Neg. LLF: 125.66478886939454
Optimization terminated successfully (Exit mode 0)
Current function value: 125.66478886939454
Iterations: 9
Function evaluations: 40
Gradient evaluations: 9
Iteration: 1, Func. Count: 6, Neg. LLF: 20373092.24182021
Iteration: 2, Func. Count: 13, Neg. LLF: 137.25895501053566
Iteration: 3, Func. Count: 19, Neg. LLF: 127.81325334665176
Iteration: 4, Func. Count: 25, Neg. LLF: 124.48666829186625
Iteration: 5, Func. Count: 30, Neg. LLF: 124.21659323130154
Iteration: 6, Func. Count: 35, Neg. LLF: 124.12633805175025
Iteration: 7, Func. Count: 40, Neg. LLF: 124.12497335844833
Iteration: 8, Func. Count: 45, Neg. LLF: 124.12497272726155
Optimization terminated successfully (Exit mode 0)
Current function value: 124.12497272726155
Iterations: 8
Function evaluations: 45
Gradient evaluations: 8
Iteration: 1, Func. Count: 7, Neg. LLF: 20930866.10657199
Iteration: 2, Func. Count: 15, Neg. LLF: 139.89294101158814
Iteration: 3, Func. Count: 22, Neg. LLF: 125.48168746265591
Iteration: 4, Func. Count: 29, Neg. LLF: 124.1472151544485
Iteration: 5, Func. Count: 35, Neg. LLF: 124.10884822139694
Iteration: 6, Func. Count: 41, Neg. LLF: 124.10740169060885
Iteration: 7, Func. Count: 47, Neg. LLF: 124.10680539816357
Iteration: 8, Func. Count: 53, Neg. LLF: 124.10443462394983
Iteration: 9, Func. Count: 59, Neg. LLF: 124.10307617543286
Iteration: 10, Func. Count: 65, Neg. LLF: 124.1027726870442
Iteration: 11, Func. Count: 71, Neg. LLF: 124.10276035368689
Iteration: 12, Func. Count: 76, Neg. LLF: 124.10276035396858
Optimization terminated successfully (Exit mode 0)
Current function value: 124.10276035368689
Iterations: 12
Function evaluations: 76
Gradient evaluations: 12
Iteration: 1, Func. Count: 8, Neg. LLF: 21465889.358657114
Iteration: 2, Func. Count: 17, Neg. LLF: 158.69547861569154
Iteration: 3, Func. Count: 25, Neg. LLF: 127.46761629829811
Iteration: 4, Func. Count: 33, Neg. LLF: 124.31507039443862
Iteration: 5, Func. Count: 40, Neg. LLF: 124.1275917338059
Iteration: 6, Func. Count: 47, Neg. LLF: 124.12101956834647
Iteration: 7, Func. Count: 54, Neg. LLF: 124.13283306171093
Iteration: 8, Func. Count: 62, Neg. LLF: 124.10862685813133
Iteration: 9, Func. Count: 69, Neg. LLF: 124.10708751215002
Iteration: 10, Func. Count: 77, Neg. LLF: 124.10284610128596
Iteration: 11, Func. Count: 84, Neg. LLF: 124.10276331276242
Iteration: 12, Func. Count: 91, Neg. LLF: 124.10276033092235
Iteration: 13, Func. Count: 97, Neg. LLF: 124.1027603410681
Optimization terminated successfully (Exit mode 0)
Current function value: 124.10276033092235
Iterations: 13
Function evaluations: 97
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 21886016.195685115
Iteration: 2, Func. Count: 19, Neg. LLF: 170.20604156007047
Iteration: 3, Func. Count: 28, Neg. LLF: 126.86715968288836
Iteration: 4, Func. Count: 37, Neg. LLF: 124.22651566015428
Iteration: 5, Func. Count: 45, Neg. LLF: 125.47905876100278
Iteration: 6, Func. Count: 54, Neg. LLF: 124.14193031540756
Iteration: 7, Func. Count: 62, Neg. LLF: 124.12369247801242
Iteration: 8, Func. Count: 70, Neg. LLF: 124.11033055126282
Iteration: 9, Func. Count: 78, Neg. LLF: 124.10946702286292
Iteration: 10, Func. Count: 86, Neg. LLF: 124.10838560222022
Iteration: 11, Func. Count: 94, Neg. LLF: 124.10663604827054
Iteration: 12, Func. Count: 102, Neg. LLF: 124.10470491970874
Iteration: 13, Func. Count: 110, Neg. LLF: 124.10274585027634
Iteration: 14, Func. Count: 118, Neg. LLF: 124.10151596496685
Iteration: 15, Func. Count: 126, Neg. LLF: 124.10141820538864
Iteration: 16, Func. Count: 134, Neg. LLF: 124.10141650873362
Iteration: 17, Func. Count: 142, Neg. LLF: 124.10141554920067
Optimization terminated successfully (Exit mode 0)
Current function value: 124.10141554920067
Iterations: 17
Function evaluations: 142
Gradient evaluations: 17
Iteration: 1, Func. Count: 6, Neg. LLF: 127.91659777619017
Iteration: 2, Func. Count: 12, Neg. LLF: 133.10128363433796
Iteration: 3, Func. Count: 18, Neg. LLF: 124.46490905033708
Iteration: 4, Func. Count: 23, Neg. LLF: 124.43405805484745
Iteration: 5, Func. Count: 28, Neg. LLF: 124.36752356824675
Iteration: 6, Func. Count: 33, Neg. LLF: 124.35863971221158
Iteration: 7, Func. Count: 38, Neg. LLF: 124.3571677971553
Iteration: 8, Func. Count: 43, Neg. LLF: 124.35711688166647
Iteration: 9, Func. Count: 48, Neg. LLF: 124.3571114733373
Iteration: 10, Func. Count: 52, Neg. LLF: 124.35711147334185
Optimization terminated successfully (Exit mode 0)
Current function value: 124.3571114733373
Iterations: 10
Function evaluations: 52
Gradient evaluations: 10
Iteration: 1, Func. Count: 7, Neg. LLF: 22978976.01548913
Iteration: 2, Func. Count: 15, Neg. LLF: 125.86353370436964
Iteration: 3, Func. Count: 22, Neg. LLF: 126.18648661154657
Iteration: 4, Func. Count: 29, Neg. LLF: 124.3289848364779
Iteration: 5, Func. Count: 35, Neg. LLF: 124.28915135479922
Iteration: 6, Func. Count: 41, Neg. LLF: 124.28404343064632
Iteration: 7, Func. Count: 47, Neg. LLF: 124.28297534569626
Iteration: 8, Func. Count: 53, Neg. LLF: 124.28209788413984
Iteration: 9, Func. Count: 59, Neg. LLF: 124.28193385574728
Iteration: 10, Func. Count: 65, Neg. LLF: 124.28177229577017
Iteration: 11, Func. Count: 71, Neg. LLF: 124.2769872730289
Iteration: 12, Func. Count: 77, Neg. LLF: 124.20781388684728
Iteration: 13, Func. Count: 83, Neg. LLF: 124.13878400692757
Iteration: 14, Func. Count: 89, Neg. LLF: 124.13109334324689
Iteration: 15, Func. Count: 95, Neg. LLF: 124.12525157577973
Iteration: 16, Func. Count: 101, Neg. LLF: 124.12498044267906
Iteration: 17, Func. Count: 107, Neg. LLF: 124.12497282254274
Iteration: 18, Func. Count: 112, Neg. LLF: 124.12497282257954
Optimization terminated successfully (Exit mode 0)
Current function value: 124.12497282254274
Iterations: 18
Function evaluations: 112
Gradient evaluations: 18
Iteration: 1, Func. Count: 8, Neg. LLF: 214.54577779744668
Iteration: 2, Func. Count: 16, Neg. LLF: 137.41712836363487
Iteration: 3, Func. Count: 24, Neg. LLF: 124.0751787596231
Iteration: 4, Func. Count: 31, Neg. LLF: 123.89474100828328
Iteration: 5, Func. Count: 39, Neg. LLF: 123.60275581184462
Iteration: 6, Func. Count: 47, Neg. LLF: 123.4936459582249
Iteration: 7, Func. Count: 54, Neg. LLF: 123.49358866063108
Iteration: 8, Func. Count: 60, Neg. LLF: 123.49358866059498
Optimization terminated successfully (Exit mode 0)
Current function value: 123.49358866063108
Iterations: 8
Function evaluations: 60
Gradient evaluations: 8
Iteration: 1, Func. Count: 9, Neg. LLF: 224.23556591062578
Iteration: 2, Func. Count: 18, Neg. LLF: 152.59695513326653
Iteration: 3, Func. Count: 27, Neg. LLF: 126.72104489468244
Iteration: 4, Func. Count: 36, Neg. LLF: 123.66897248995316
Iteration: 5, Func. Count: 44, Neg. LLF: 124.93724781221263
Iteration: 6, Func. Count: 54, Neg. LLF: 123.87843636438423
Iteration: 7, Func. Count: 63, Neg. LLF: 123.47044910573848
Iteration: 8, Func. Count: 71, Neg. LLF: 123.46917769777436
Iteration: 9, Func. Count: 79, Neg. LLF: 123.46799191790144
Iteration: 10, Func. Count: 87, Neg. LLF: 123.46777702365313
Iteration: 11, Func. Count: 95, Neg. LLF: 123.46766879595052
Iteration: 12, Func. Count: 103, Neg. LLF: 123.46766306043227
Iteration: 13, Func. Count: 110, Neg. LLF: 123.46766306034051
Optimization terminated successfully (Exit mode 0)
Current function value: 123.46766306043227
Iterations: 13
Function evaluations: 110
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 228.5698960617871
Iteration: 2, Func. Count: 20, Neg. LLF: 164.53316247288686
Iteration: 3, Func. Count: 30, Neg. LLF: 134.69713970300285
Iteration: 4, Func. Count: 40, Neg. LLF: 124.6862825684779
Iteration: 5, Func. Count: 50, Neg. LLF: 124.17193255740763
Iteration: 6, Func. Count: 60, Neg. LLF: 123.6967096020599
Iteration: 7, Func. Count: 70, Neg. LLF: 123.44780448063415
Iteration: 8, Func. Count: 79, Neg. LLF: 123.43831939920594
Iteration: 9, Func. Count: 88, Neg. LLF: 123.4338598292475
Iteration: 10, Func. Count: 97, Neg. LLF: 123.43361516164491
Iteration: 11, Func. Count: 106, Neg. LLF: 123.4335898552865
Iteration: 12, Func. Count: 115, Neg. LLF: 123.43357470259798
Iteration: 13, Func. Count: 124, Neg. LLF: 123.43357150476521
Iteration: 14, Func. Count: 132, Neg. LLF: 123.43357150469929
Optimization terminated successfully (Exit mode 0)
Current function value: 123.43357150476521
Iterations: 14
Function evaluations: 132
Gradient evaluations: 14
Iteration: 1, Func. Count: 7, Neg. LLF: 132.5647947474782
Iteration: 2, Func. Count: 15, Neg. LLF: 127.89592402598947
Iteration: 3, Func. Count: 22, Neg. LLF: 124.43350530940306
Iteration: 4, Func. Count: 28, Neg. LLF: 124.3644327833527
Iteration: 5, Func. Count: 34, Neg. LLF: 124.35768326185065
Iteration: 6, Func. Count: 40, Neg. LLF: 124.35721627533273
Iteration: 7, Func. Count: 46, Neg. LLF: 124.35711283840888
Iteration: 8, Func. Count: 52, Neg. LLF: 124.357111586454
Iteration: 9, Func. Count: 57, Neg. LLF: 124.35711169244568
Optimization terminated successfully (Exit mode 0)
Current function value: 124.357111586454
Iterations: 9
Function evaluations: 57
Gradient evaluations: 9
Iteration: 1, Func. Count: 8, Neg. LLF: 23357372.575466305
Iteration: 2, Func. Count: 17, Neg. LLF: 133.2650215799219
Iteration: 3, Func. Count: 25, Neg. LLF: 124.6017848921326
Iteration: 4, Func. Count: 32, Neg. LLF: 124.36167178951476
Iteration: 5, Func. Count: 39, Neg. LLF: 124.52474218294618
Iteration: 6, Func. Count: 47, Neg. LLF: 124.29191854171181
Iteration: 7, Func. Count: 54, Neg. LLF: 124.28614009445272
Iteration: 8, Func. Count: 61, Neg. LLF: 124.28313096434658
Iteration: 9, Func. Count: 68, Neg. LLF: 124.28220669461274
Iteration: 10, Func. Count: 75, Neg. LLF: 124.28196220712154
Iteration: 11, Func. Count: 82, Neg. LLF: 124.28175711608054
Iteration: 12, Func. Count: 89, Neg. LLF: 124.27819171389068
Iteration: 13, Func. Count: 96, Neg. LLF: 124.2728502364827
Iteration: 14, Func. Count: 103, Neg. LLF: 124.2198352061645
Iteration: 15, Func. Count: 111, Neg. LLF: 124.12602914870213
Iteration: 16, Func. Count: 118, Neg. LLF: 124.12497278530732
Iteration: 17, Func. Count: 124, Neg. LLF: 124.12497278458201
Optimization terminated successfully (Exit mode 0)
Current function value: 124.12497278530732
Iterations: 17
Function evaluations: 124
Gradient evaluations: 17
Iteration: 1, Func. Count: 9, Neg. LLF: 21688781.88536521
Iteration: 2, Func. Count: 19, Neg. LLF: 184.51962397936842
Iteration: 3, Func. Count: 28, Neg. LLF: 135.4334857894362
Iteration: 4, Func. Count: 37, Neg. LLF: 123.87696587685355
Iteration: 5, Func. Count: 45, Neg. LLF: 124.63315061741336
Iteration: 6, Func. Count: 54, Neg. LLF: 123.61643921367674
Iteration: 7, Func. Count: 62, Neg. LLF: 123.56522000859565
Iteration: 8, Func. Count: 70, Neg. LLF: 123.51143533885403
Iteration: 9, Func. Count: 78, Neg. LLF: 123.49799009149415
Iteration: 10, Func. Count: 86, Neg. LLF: 123.49429711026649
Iteration: 11, Func. Count: 94, Neg. LLF: 123.49377663273931
Iteration: 12, Func. Count: 102, Neg. LLF: 123.4936243848783
Iteration: 13, Func. Count: 110, Neg. LLF: 123.49359016886802
Iteration: 14, Func. Count: 118, Neg. LLF: 123.49358853895436
Iteration: 15, Func. Count: 125, Neg. LLF: 123.49358853897408
Optimization terminated successfully (Exit mode 0)
Current function value: 123.49358853895436
Iterations: 15
Function evaluations: 125
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 20508073.264968146
Iteration: 2, Func. Count: 21, Neg. LLF: 188.11016345182833
Iteration: 3, Func. Count: 31, Neg. LLF: 131.2486139779279
Iteration: 4, Func. Count: 41, Neg. LLF: 123.62732990187928
Iteration: 5, Func. Count: 50, Neg. LLF: 123.69428866562448
Iteration: 6, Func. Count: 60, Neg. LLF: 123.4225342788447
Iteration: 7, Func. Count: 69, Neg. LLF: 123.62062076098276
Iteration: 8, Func. Count: 79, Neg. LLF: 123.57623607632665
Iteration: 9, Func. Count: 89, Neg. LLF: 123.45678028120979
Iteration: 10, Func. Count: 99, Neg. LLF: 123.70853446541035
Iteration: 11, Func. Count: 109, Neg. LLF: 123.47350565286898
Iteration: 12, Func. Count: 119, Neg. LLF: 122.85227618666076
Iteration: 13, Func. Count: 128, Neg. LLF: 122.83811414444926
Iteration: 14, Func. Count: 137, Neg. LLF: 122.81559243452291
Iteration: 15, Func. Count: 146, Neg. LLF: 122.7839646913341
Iteration: 16, Func. Count: 155, Neg. LLF: 122.7830058975154
Iteration: 17, Func. Count: 164, Neg. LLF: 122.78279566560516
Iteration: 18, Func. Count: 173, Neg. LLF: 122.78277177112224
Iteration: 19, Func. Count: 182, Neg. LLF: 122.78276609674329
Iteration: 20, Func. Count: 190, Neg. LLF: 122.78276609654368
Optimization terminated successfully (Exit mode 0)
Current function value: 122.78276609674329
Iterations: 20
Function evaluations: 190
Gradient evaluations: 20
Iteration: 1, Func. Count: 11, Neg. LLF: 174.9944953436206
Iteration: 2, Func. Count: 22, Neg. LLF: 10540569.164270246
Iteration: 3, Func. Count: 33, Neg. LLF: 125.60295769305638
Iteration: 4, Func. Count: 44, Neg. LLF: 125.2236664998041
Iteration: 5, Func. Count: 55, Neg. LLF: 124.42951878518164
Iteration: 6, Func. Count: 66, Neg. LLF: 123.6318606826942
Iteration: 7, Func. Count: 76, Neg. LLF: 123.43821837593559
Iteration: 8, Func. Count: 86, Neg. LLF: 124.34263269554972
Iteration: 9, Func. Count: 97, Neg. LLF: 123.85482863457871
Iteration: 10, Func. Count: 108, Neg. LLF: 123.84502080864652
Iteration: 11, Func. Count: 119, Neg. LLF: 123.81971306882662
Iteration: 12, Func. Count: 130, Neg. LLF: 126.53963932546802
Iteration: 13, Func. Count: 141, Neg. LLF: 123.16589691976336
Iteration: 14, Func. Count: 152, Neg. LLF: 122.7880478148307
Iteration: 15, Func. Count: 162, Neg. LLF: 122.7846468009224
Iteration: 16, Func. Count: 172, Neg. LLF: 122.78343438612023
Iteration: 17, Func. Count: 182, Neg. LLF: 122.78338942109404
Iteration: 18, Func. Count: 193, Neg. LLF: 122.78281365660499
Iteration: 19, Func. Count: 203, Neg. LLF: 122.78276601373271
Iteration: 20, Func. Count: 212, Neg. LLF: 122.78276605522944
Optimization terminated successfully (Exit mode 0)
Current function value: 122.78276601373271
Iterations: 20
Function evaluations: 212
Gradient evaluations: 20
Iteration: 1, Func. Count: 8, Neg. LLF: 126.75137010686011
Iteration: 2, Func. Count: 17, Neg. LLF: 129.72774353664906
Iteration: 3, Func. Count: 25, Neg. LLF: 124.1360245418555
Iteration: 4, Func. Count: 32, Neg. LLF: 127.22828703930507
Iteration: 5, Func. Count: 40, Neg. LLF: 124.8331293487971
Iteration: 6, Func. Count: 48, Neg. LLF: 123.88683699512188
Iteration: 7, Func. Count: 55, Neg. LLF: 123.91600209266326
Iteration: 8, Func. Count: 63, Neg. LLF: 123.85830700245145
Iteration: 9, Func. Count: 70, Neg. LLF: 123.85792419493035
Iteration: 10, Func. Count: 77, Neg. LLF: 123.85788090559149
Iteration: 11, Func. Count: 84, Neg. LLF: 123.85787368481655
Iteration: 12, Func. Count: 90, Neg. LLF: 123.85787368481762
Optimization terminated successfully (Exit mode 0)
Current function value: 123.85787368481655
Iterations: 12
Function evaluations: 90
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 24943698.162266303
Iteration: 2, Func. Count: 19, Neg. LLF: 147.4894425471925
Iteration: 3, Func. Count: 29, Neg. LLF: 126.45449428884562
Iteration: 4, Func. Count: 38, Neg. LLF: 124.35607269515792
Iteration: 5, Func. Count: 46, Neg. LLF: 124.59119871408141
Iteration: 6, Func. Count: 55, Neg. LLF: 124.31280078395446
Iteration: 7, Func. Count: 63, Neg. LLF: 124.2981884665996
Iteration: 8, Func. Count: 71, Neg. LLF: 124.28580299806423
Iteration: 9, Func. Count: 79, Neg. LLF: 124.28283015617394
Iteration: 10, Func. Count: 87, Neg. LLF: 124.2822149791218
Iteration: 11, Func. Count: 95, Neg. LLF: 124.28192181882959
Iteration: 12, Func. Count: 103, Neg. LLF: 124.28171408000641
Iteration: 13, Func. Count: 111, Neg. LLF: 124.27968541474229
Iteration: 14, Func. Count: 119, Neg. LLF: 124.15379824680578
Iteration: 15, Func. Count: 127, Neg. LLF: 124.82142575522498
Iteration: 16, Func. Count: 138, Neg. LLF: 124.15790424574485
Iteration: 17, Func. Count: 147, Neg. LLF: 124.13213266037306
Iteration: 18, Func. Count: 155, Neg. LLF: 124.13172901
Iteration: 19, Func. Count: 163, Neg. LLF: 124.1341132826585
Iteration: 20, Func. Count: 172, Neg. LLF: 20125562.668710183
Iteration: 21, Func. Count: 184, Neg. LLF: 124.1256892166867
Iteration: 22, Func. Count: 192, Neg. LLF: 124.12497391947822
Iteration: 23, Func. Count: 200, Neg. LLF: 124.12497272728905
Iteration: 24, Func. Count: 207, Neg. LLF: 124.12497272732494
Optimization terminated successfully (Exit mode 0)
Current function value: 124.12497272728905
Iterations: 25
Function evaluations: 207
Gradient evaluations: 24
Iteration: 1, Func. Count: 10, Neg. LLF: 167.6587195228639
Iteration: 2, Func. Count: 20, Neg. LLF: 129.90763935902268
Iteration: 3, Func. Count: 31, Neg. LLF: 128.90533405289403
Iteration: 4, Func. Count: 41, Neg. LLF: 123.53231875688651
Iteration: 5, Func. Count: 50, Neg. LLF: 123.49959831588079
Iteration: 6, Func. Count: 59, Neg. LLF: 123.49464645245132
Iteration: 7, Func. Count: 68, Neg. LLF: 123.49403787675686
Iteration: 8, Func. Count: 77, Neg. LLF: 123.49364432364612
Iteration: 9, Func. Count: 86, Neg. LLF: 123.49359199205557
Iteration: 10, Func. Count: 95, Neg. LLF: 123.49358851822154
Iteration: 11, Func. Count: 103, Neg. LLF: 123.49358851824964
Optimization terminated successfully (Exit mode 0)
Current function value: 123.49358851822154
Iterations: 11
Function evaluations: 103
Gradient evaluations: 11
Iteration: 1, Func. Count: 11, Neg. LLF: 159.46626483737626
Iteration: 2, Func. Count: 22, Neg. LLF: 145.06726205903797
Iteration: 3, Func. Count: 33, Neg. LLF: 129.43476342054456
Iteration: 4, Func. Count: 44, Neg. LLF: 123.16265975473354
Iteration: 5, Func. Count: 54, Neg. LLF: 123.43167627507282
Iteration: 6, Func. Count: 65, Neg. LLF: 123.23136424122919
Iteration: 7, Func. Count: 76, Neg. LLF: 123.29174495225641
Iteration: 8, Func. Count: 87, Neg. LLF: 122.86937776189254
Iteration: 9, Func. Count: 97, Neg. LLF: 122.83984752987945
Iteration: 10, Func. Count: 107, Neg. LLF: 122.83063346042856
Iteration: 11, Func. Count: 117, Neg. LLF: 122.80833175062386
Iteration: 12, Func. Count: 127, Neg. LLF: 122.79156877729268
Iteration: 13, Func. Count: 137, Neg. LLF: 122.78437067078161
Iteration: 14, Func. Count: 147, Neg. LLF: 122.78286524728024
Iteration: 15, Func. Count: 157, Neg. LLF: 122.78276637314178
Iteration: 16, Func. Count: 166, Neg. LLF: 122.78276637323225
Optimization terminated successfully (Exit mode 0)
Current function value: 122.78276637314178
Iterations: 16
Function evaluations: 166
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 149.79745765955795
Iteration: 2, Func. Count: 24, Neg. LLF: 161.36975846181593
Iteration: 3, Func. Count: 36, Neg. LLF: 132.41534802478273
Iteration: 4, Func. Count: 48, Neg. LLF: 124.66895393780509
Iteration: 5, Func. Count: 60, Neg. LLF: 125.3873460021723
Iteration: 6, Func. Count: 72, Neg. LLF: 123.51440452915678
Iteration: 7, Func. Count: 83, Neg. LLF: 123.46356936121106
Iteration: 8, Func. Count: 94, Neg. LLF: 123.34106159929235
Iteration: 9, Func. Count: 105, Neg. LLF: 123.23947264669322
Iteration: 10, Func. Count: 116, Neg. LLF: 123.19503706857486
Iteration: 11, Func. Count: 127, Neg. LLF: 123.16480513661578
Iteration: 12, Func. Count: 139, Neg. LLF: 123.35859423256147
Iteration: 13, Func. Count: 151, Neg. LLF: 122.79027444387506
Iteration: 14, Func. Count: 162, Neg. LLF: 122.78432687681169
Iteration: 15, Func. Count: 173, Neg. LLF: 122.78293107084176
Iteration: 16, Func. Count: 184, Neg. LLF: 122.7827969116175
Iteration: 17, Func. Count: 195, Neg. LLF: 122.78276899347108
Iteration: 18, Func. Count: 206, Neg. LLF: 122.78276596985751
Iteration: 19, Func. Count: 216, Neg. LLF: 122.78276601123554
Optimization terminated successfully (Exit mode 0)
Current function value: 122.78276596985751
Iterations: 19
Function evaluations: 216
Gradient evaluations: 19
Iteration: 1, Func. Count: 9, Neg. LLF: 126.80082102162596
Iteration: 2, Func. Count: 19, Neg. LLF: 130.0730119151329
Iteration: 3, Func. Count: 28, Neg. LLF: 124.12168466420809
Iteration: 4, Func. Count: 36, Neg. LLF: 127.86284965323298
Iteration: 5, Func. Count: 45, Neg. LLF: 125.76800780385167
Iteration: 6, Func. Count: 54, Neg. LLF: 123.86301999612331
Iteration: 7, Func. Count: 62, Neg. LLF: 123.85277022520502
Iteration: 8, Func. Count: 70, Neg. LLF: 123.83811826884316
Iteration: 9, Func. Count: 78, Neg. LLF: 123.83622816316316
Iteration: 10, Func. Count: 86, Neg. LLF: 123.83598891910079
Iteration: 11, Func. Count: 94, Neg. LLF: 123.83597583498292
Iteration: 12, Func. Count: 102, Neg. LLF: 123.83597282924711
Iteration: 13, Func. Count: 109, Neg. LLF: 123.83597282926304
Optimization terminated successfully (Exit mode 0)
Current function value: 123.83597282924711
Iterations: 13
Function evaluations: 109
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 25450233.30006092
Iteration: 2, Func. Count: 21, Neg. LLF: 177.62583151429962
Iteration: 3, Func. Count: 32, Neg. LLF: 127.78702229065783
Iteration: 4, Func. Count: 42, Neg. LLF: 124.35823642629816
Iteration: 5, Func. Count: 51, Neg. LLF: 124.76131330520943
Iteration: 6, Func. Count: 61, Neg. LLF: 124.30950699449009
Iteration: 7, Func. Count: 70, Neg. LLF: 124.292088756718
Iteration: 8, Func. Count: 79, Neg. LLF: 124.2846339612819
Iteration: 9, Func. Count: 88, Neg. LLF: 124.28374187174593
Iteration: 10, Func. Count: 97, Neg. LLF: 124.28227837273636
Iteration: 11, Func. Count: 106, Neg. LLF: 124.282014020217
Iteration: 12, Func. Count: 115, Neg. LLF: 124.28176498560926
Iteration: 13, Func. Count: 124, Neg. LLF: 124.27526141254924
Iteration: 14, Func. Count: 133, Neg. LLF: 124.1556735572573
Iteration: 15, Func. Count: 142, Neg. LLF: 133.26378912605554
Iteration: 16, Func. Count: 156, Neg. LLF: 124.12663005894382
Iteration: 17, Func. Count: 165, Neg. LLF: 124.12506481647192
Iteration: 18, Func. Count: 174, Neg. LLF: 124.12498432320469
Iteration: 19, Func. Count: 183, Neg. LLF: 124.12497468494884
Iteration: 20, Func. Count: 192, Neg. LLF: 124.12497274881486
Iteration: 21, Func. Count: 200, Neg. LLF: 124.1249727488143
Optimization terminated successfully (Exit mode 0)
Current function value: 124.12497274881486
Iterations: 21
Function evaluations: 200
Gradient evaluations: 21
Iteration: 1, Func. Count: 11, Neg. LLF: 21196653.24976862
Iteration: 2, Func. Count: 23, Neg. LLF: 172.81693777170014
Iteration: 3, Func. Count: 34, Neg. LLF: 142.1774061701783
Iteration: 4, Func. Count: 45, Neg. LLF: 124.05277741659071
Iteration: 5, Func. Count: 55, Neg. LLF: 125.19596690762219
Iteration: 6, Func. Count: 66, Neg. LLF: 123.6725449762179
Iteration: 7, Func. Count: 76, Neg. LLF: 123.81937795200015
Iteration: 8, Func. Count: 87, Neg. LLF: 123.54106394221051
Iteration: 9, Func. Count: 97, Neg. LLF: 123.51239213781355
Iteration: 10, Func. Count: 107, Neg. LLF: 123.49815533451071
Iteration: 11, Func. Count: 117, Neg. LLF: 123.49475385931085
Iteration: 12, Func. Count: 127, Neg. LLF: 123.49365682017887
Iteration: 13, Func. Count: 137, Neg. LLF: 123.49359512099397
Iteration: 14, Func. Count: 147, Neg. LLF: 123.49358910075982
Iteration: 15, Func. Count: 156, Neg. LLF: 123.49358910056043
Optimization terminated successfully (Exit mode 0)
Current function value: 123.49358910075982
Iterations: 15
Function evaluations: 156
Gradient evaluations: 15
Iteration: 1, Func. Count: 12, Neg. LLF: 21349243.472516116
Iteration: 2, Func. Count: 25, Neg. LLF: 222.6587529658193
Iteration: 3, Func. Count: 37, Neg. LLF: 140.12604982111642
Iteration: 4, Func. Count: 49, Neg. LLF: 123.28770616701414
Iteration: 5, Func. Count: 60, Neg. LLF: 123.52187246050414
Iteration: 6, Func. Count: 72, Neg. LLF: 123.47400667302772
Iteration: 7, Func. Count: 84, Neg. LLF: 123.3251790251697
Iteration: 8, Func. Count: 96, Neg. LLF: 122.89366245430264
Iteration: 9, Func. Count: 107, Neg. LLF: 122.89798712826052
Iteration: 10, Func. Count: 119, Neg. LLF: 122.81494079807368
Iteration: 11, Func. Count: 130, Neg. LLF: 122.78508391971216
Iteration: 12, Func. Count: 141, Neg. LLF: 122.78335598068371
Iteration: 13, Func. Count: 152, Neg. LLF: 122.78278136268568
Iteration: 14, Func. Count: 163, Neg. LLF: 122.78276958359817
Iteration: 15, Func. Count: 174, Neg. LLF: 122.78276589958696
Iteration: 16, Func. Count: 184, Neg. LLF: 122.78276589959532
Optimization terminated successfully (Exit mode 0)
Current function value: 122.78276589958696
Iterations: 16
Function evaluations: 184
Gradient evaluations: 16
Iteration: 1, Func. Count: 13, Neg. LLF: 20149247.591847602
Iteration: 2, Func. Count: 27, Neg. LLF: 4798980.3633277165
Iteration: 3, Func. Count: 40, Neg. LLF: 134.34465370324497
Iteration: 4, Func. Count: 53, Neg. LLF: 124.71761708382496
Iteration: 5, Func. Count: 66, Neg. LLF: 123.87665827467225
Iteration: 6, Func. Count: 78, Neg. LLF: 124.04929200690249
Iteration: 7, Func. Count: 91, Neg. LLF: 123.74893481053574
Iteration: 8, Func. Count: 104, Neg. LLF: 123.89316041066353
Iteration: 9, Func. Count: 117, Neg. LLF: 123.45292075188819
Iteration: 10, Func. Count: 129, Neg. LLF: 123.43860563235972
Iteration: 11, Func. Count: 141, Neg. LLF: 123.43452714756505
Iteration: 12, Func. Count: 153, Neg. LLF: 123.43384765886975
Iteration: 13, Func. Count: 165, Neg. LLF: 123.43368497644116
Iteration: 14, Func. Count: 177, Neg. LLF: 123.43362222091235
Iteration: 15, Func. Count: 189, Neg. LLF: 123.43357740116309
Iteration: 16, Func. Count: 201, Neg. LLF: 123.43357149392519
Iteration: 17, Func. Count: 213, Neg. LLF: 123.4335711171027
Optimization terminated successfully (Exit mode 0)
Current function value: 123.4335711171027
Iterations: 17
Function evaluations: 213
Gradient evaluations: 17
Iteration: 1, Func. Count: 6, Neg. LLF: 129.34539169515364
Iteration: 2, Func. Count: 12, Neg. LLF: 128.19220783481737
Iteration: 3, Func. Count: 18, Neg. LLF: 126.17216311182877
Iteration: 4, Func. Count: 23, Neg. LLF: 125.79995066738208
Iteration: 5, Func. Count: 28, Neg. LLF: 125.70258134057138
Iteration: 6, Func. Count: 33, Neg. LLF: 125.67138340390524
Iteration: 7, Func. Count: 38, Neg. LLF: 125.66499387988833
Iteration: 8, Func. Count: 43, Neg. LLF: 125.66479008988276
Iteration: 9, Func. Count: 48, Neg. LLF: 125.66478887107844
Iteration: 10, Func. Count: 52, Neg. LLF: 125.6647889806973
Optimization terminated successfully (Exit mode 0)
Current function value: 125.66478887107844
Iterations: 10
Function evaluations: 52
Gradient evaluations: 10
Iteration: 1, Func. Count: 7, Neg. LLF: 20348561.988637578
Iteration: 2, Func. Count: 15, Neg. LLF: 137.03164606110687
Iteration: 3, Func. Count: 22, Neg. LLF: 127.78377067759281
Iteration: 4, Func. Count: 29, Neg. LLF: 124.46761468733776
Iteration: 5, Func. Count: 35, Neg. LLF: 124.22963137081534
Iteration: 6, Func. Count: 41, Neg. LLF: 124.12623948158814
Iteration: 7, Func. Count: 47, Neg. LLF: 124.12497319010645
Iteration: 8, Func. Count: 52, Neg. LLF: 124.12497318923012
Optimization terminated successfully (Exit mode 0)
Current function value: 124.12497319010645
Iterations: 8
Function evaluations: 52
Gradient evaluations: 8
Iteration: 1, Func. Count: 8, Neg. LLF: 256.00697673564184
Iteration: 2, Func. Count: 16, Neg. LLF: 537467.8909080998
Iteration: 3, Func. Count: 24, Neg. LLF: 124.77939450684063
Iteration: 4, Func. Count: 31, Neg. LLF: 127.47674173970843
Iteration: 5, Func. Count: 39, Neg. LLF: 124.8756529269118
Iteration: 6, Func. Count: 47, Neg. LLF: 124.16327221558782
Iteration: 7, Func. Count: 54, Neg. LLF: 124.14117048843694
Iteration: 8, Func. Count: 61, Neg. LLF: 124.1154892872086
Iteration: 9, Func. Count: 68, Neg. LLF: 124.110218501208
Iteration: 10, Func. Count: 75, Neg. LLF: 124.10722392570767
Iteration: 11, Func. Count: 82, Neg. LLF: 124.10357297928012
Iteration: 12, Func. Count: 89, Neg. LLF: 124.10294274426121
Iteration: 13, Func. Count: 96, Neg. LLF: 124.10278354743012
Iteration: 14, Func. Count: 103, Neg. LLF: 124.10276140841601
Iteration: 15, Func. Count: 110, Neg. LLF: 124.10276028459482
Iteration: 16, Func. Count: 116, Neg. LLF: 124.102760284631
Optimization terminated successfully (Exit mode 0)
Current function value: 124.10276028459482
Iterations: 16
Function evaluations: 116
Gradient evaluations: 16
Iteration: 1, Func. Count: 9, Neg. LLF: 274.2487112099739
Iteration: 2, Func. Count: 18, Neg. LLF: 23462.171545079003
Iteration: 3, Func. Count: 27, Neg. LLF: 125.26083446222664
Iteration: 4, Func. Count: 36, Neg. LLF: 126.18603030085913
Iteration: 5, Func. Count: 45, Neg. LLF: 124.20510806479619
Iteration: 6, Func. Count: 53, Neg. LLF: 124.22517215619274
Iteration: 7, Func. Count: 62, Neg. LLF: 124.1110580027663
Iteration: 8, Func. Count: 70, Neg. LLF: 124.10773131703733
Iteration: 9, Func. Count: 78, Neg. LLF: 124.10506850217939
Iteration: 10, Func. Count: 86, Neg. LLF: 124.10313733447111
Iteration: 11, Func. Count: 94, Neg. LLF: 124.10278544588559
Iteration: 12, Func. Count: 102, Neg. LLF: 124.10276243626386
Iteration: 13, Func. Count: 110, Neg. LLF: 124.10276030329061
Iteration: 14, Func. Count: 117, Neg. LLF: 124.10276031322122
Optimization terminated successfully (Exit mode 0)
Current function value: 124.10276030329061
Iterations: 14
Function evaluations: 117
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 286.71660726718414
Iteration: 2, Func. Count: 20, Neg. LLF: 6373.2323053994905
Iteration: 3, Func. Count: 30, Neg. LLF: 125.67893247524823
Iteration: 4, Func. Count: 40, Neg. LLF: 124.42140910272731
Iteration: 5, Func. Count: 49, Neg. LLF: 124.6121011327653
Iteration: 6, Func. Count: 59, Neg. LLF: 124.11997507013075
Iteration: 7, Func. Count: 69, Neg. LLF: 124.10681801111832
Iteration: 8, Func. Count: 78, Neg. LLF: 124.10560223883685
Iteration: 9, Func. Count: 87, Neg. LLF: 124.10300050320873
Iteration: 10, Func. Count: 96, Neg. LLF: 124.10199288683322
Iteration: 11, Func. Count: 105, Neg. LLF: 124.10145437822933
Iteration: 12, Func. Count: 114, Neg. LLF: 124.1014209755515
Iteration: 13, Func. Count: 123, Neg. LLF: 124.10141565557974
Iteration: 14, Func. Count: 131, Neg. LLF: 124.10141565572229
Optimization terminated successfully (Exit mode 0)
Current function value: 124.10141565557974
Iterations: 14
Function evaluations: 131
Gradient evaluations: 14
Iteration: 1, Func. Count: 7, Neg. LLF: 127.86364521293534
Iteration: 2, Func. Count: 14, Neg. LLF: 134.43085823049117
Iteration: 3, Func. Count: 21, Neg. LLF: 124.5662590982823
Iteration: 4, Func. Count: 27, Neg. LLF: 124.43551817782453
Iteration: 5, Func. Count: 33, Neg. LLF: 124.3856576727771
Iteration: 6, Func. Count: 39, Neg. LLF: 124.36214319720426
Iteration: 7, Func. Count: 45, Neg. LLF: 124.35761010166694
Iteration: 8, Func. Count: 51, Neg. LLF: 124.35716595855865
Iteration: 9, Func. Count: 57, Neg. LLF: 124.35711219192896
Iteration: 10, Func. Count: 63, Neg. LLF: 124.35711145377583
Optimization terminated successfully (Exit mode 0)
Current function value: 124.35711145377583
Iterations: 10
Function evaluations: 63
Gradient evaluations: 10
Iteration: 1, Func. Count: 8, Neg. LLF: 23001991.411696617
Iteration: 2, Func. Count: 17, Neg. LLF: 125.82770887547593
Iteration: 3, Func. Count: 25, Neg. LLF: 126.18985111678653
Iteration: 4, Func. Count: 33, Neg. LLF: 124.32557240783588
Iteration: 5, Func. Count: 40, Neg. LLF: 124.28827030826625
Iteration: 6, Func. Count: 47, Neg. LLF: 124.28395323002823
Iteration: 7, Func. Count: 54, Neg. LLF: 124.28279019805214
Iteration: 8, Func. Count: 61, Neg. LLF: 124.28203904455846
Iteration: 9, Func. Count: 68, Neg. LLF: 124.28187590714344
Iteration: 10, Func. Count: 75, Neg. LLF: 124.28145043830166
Iteration: 11, Func. Count: 82, Neg. LLF: 124.26480741611137
Iteration: 12, Func. Count: 89, Neg. LLF: 124.27824877079605
Iteration: 13, Func. Count: 98, Neg. LLF: 124.13755928959797
Iteration: 14, Func. Count: 105, Neg. LLF: 124.12630555758574
Iteration: 15, Func. Count: 112, Neg. LLF: 124.12508858910638
Iteration: 16, Func. Count: 119, Neg. LLF: 124.12497844354716
Iteration: 17, Func. Count: 126, Neg. LLF: 124.12497274343673
Iteration: 18, Func. Count: 132, Neg. LLF: 124.12497274378323
Optimization terminated successfully (Exit mode 0)
Current function value: 124.12497274343673
Iterations: 18
Function evaluations: 132
Gradient evaluations: 18
Iteration: 1, Func. Count: 9, Neg. LLF: 213.73726136735758
Iteration: 2, Func. Count: 18, Neg. LLF: 138.94892884302118
Iteration: 3, Func. Count: 27, Neg. LLF: 124.02893468558204
Iteration: 4, Func. Count: 35, Neg. LLF: 123.91095609170948
Iteration: 5, Func. Count: 44, Neg. LLF: 123.59468829597299
Iteration: 6, Func. Count: 53, Neg. LLF: 123.49363950378506
Iteration: 7, Func. Count: 61, Neg. LLF: 123.49358866275604
Iteration: 8, Func. Count: 68, Neg. LLF: 123.49358866276332
Optimization terminated successfully (Exit mode 0)
Current function value: 123.49358866275604
Iterations: 8
Function evaluations: 68
Gradient evaluations: 8
Iteration: 1, Func. Count: 10, Neg. LLF: 223.08061363345396
Iteration: 2, Func. Count: 20, Neg. LLF: 153.33174783361414
Iteration: 3, Func. Count: 30, Neg. LLF: 126.11413051277981
Iteration: 4, Func. Count: 40, Neg. LLF: 123.71345720185386
Iteration: 5, Func. Count: 49, Neg. LLF: 124.94046324256384
Iteration: 6, Func. Count: 60, Neg. LLF: 123.9745487030526
Iteration: 7, Func. Count: 70, Neg. LLF: 123.47485723395387
Iteration: 8, Func. Count: 79, Neg. LLF: 123.47070183809909
Iteration: 9, Func. Count: 88, Neg. LLF: 123.46864242613233
Iteration: 10, Func. Count: 97, Neg. LLF: 123.46813731252965
Iteration: 11, Func. Count: 106, Neg. LLF: 123.46769816806857
Iteration: 12, Func. Count: 115, Neg. LLF: 123.46766325164414
Iteration: 13, Func. Count: 123, Neg. LLF: 123.46766325175905
Optimization terminated successfully (Exit mode 0)
Current function value: 123.46766325164414
Iterations: 13
Function evaluations: 123
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 227.4331694234054
Iteration: 2, Func. Count: 22, Neg. LLF: 165.1413822776161
Iteration: 3, Func. Count: 33, Neg. LLF: 134.10376326977584
Iteration: 4, Func. Count: 44, Neg. LLF: 124.69649988639897
Iteration: 5, Func. Count: 55, Neg. LLF: 124.21970387170347
Iteration: 6, Func. Count: 66, Neg. LLF: 123.70960071916878
Iteration: 7, Func. Count: 77, Neg. LLF: 123.44701020656458
Iteration: 8, Func. Count: 87, Neg. LLF: 123.43925458978168
Iteration: 9, Func. Count: 97, Neg. LLF: 123.43385414768035
Iteration: 10, Func. Count: 107, Neg. LLF: 123.43361181498604
Iteration: 11, Func. Count: 117, Neg. LLF: 123.4335889750948
Iteration: 12, Func. Count: 127, Neg. LLF: 123.4335744452009
Iteration: 13, Func. Count: 137, Neg. LLF: 123.43357151938284
Iteration: 14, Func. Count: 146, Neg. LLF: 123.43357151934434
Optimization terminated successfully (Exit mode 0)
Current function value: 123.43357151938284
Iterations: 14
Function evaluations: 146
Gradient evaluations: 14
Iteration: 1, Func. Count: 8, Neg. LLF: 130.61150546432881
Iteration: 2, Func. Count: 16, Neg. LLF: 137.456077832068
Iteration: 3, Func. Count: 24, Neg. LLF: 124.65011836840362
Iteration: 4, Func. Count: 31, Neg. LLF: 124.4182781687093
Iteration: 5, Func. Count: 38, Neg. LLF: 124.49348179009343
Iteration: 6, Func. Count: 46, Neg. LLF: 124.35720430848056
Iteration: 7, Func. Count: 53, Neg. LLF: 124.35711710454002
Iteration: 8, Func. Count: 60, Neg. LLF: 124.3571115846751
Iteration: 9, Func. Count: 66, Neg. LLF: 124.35711147868416
Optimization terminated successfully (Exit mode 0)
Current function value: 124.3571115846751
Iterations: 9
Function evaluations: 66
Gradient evaluations: 9
Iteration: 1, Func. Count: 9, Neg. LLF: 23392623.8280811
Iteration: 2, Func. Count: 19, Neg. LLF: 134.3998818945136
Iteration: 3, Func. Count: 28, Neg. LLF: 124.67671574326313
Iteration: 4, Func. Count: 36, Neg. LLF: 124.35632918837483
Iteration: 5, Func. Count: 44, Neg. LLF: 124.48081912422482
Iteration: 6, Func. Count: 53, Neg. LLF: 124.29258796169852
Iteration: 7, Func. Count: 61, Neg. LLF: 124.28614254908778
Iteration: 8, Func. Count: 69, Neg. LLF: 124.28299370721349
Iteration: 9, Func. Count: 77, Neg. LLF: 124.28213947581008
Iteration: 10, Func. Count: 85, Neg. LLF: 124.28193120383655
Iteration: 11, Func. Count: 93, Neg. LLF: 124.28155568121005
Iteration: 12, Func. Count: 101, Neg. LLF: 124.3162856230006
Iteration: 13, Func. Count: 110, Neg. LLF: 124.28711313552324
Iteration: 14, Func. Count: 119, Neg. LLF: 124.2272820399141
Iteration: 15, Func. Count: 127, Neg. LLF: 124.15597412236738
Iteration: 16, Func. Count: 135, Neg. LLF: 124.23626830115974
Iteration: 17, Func. Count: 144, Neg. LLF: 124.12778431753404
Iteration: 18, Func. Count: 152, Neg. LLF: 124.12638481131172
Iteration: 19, Func. Count: 160, Neg. LLF: 128.46571685155158
Iteration: 20, Func. Count: 171, Neg. LLF: 124.73833478645491
Iteration: 21, Func. Count: 181, Neg. LLF: 124.12497272781125
Iteration: 22, Func. Count: 188, Neg. LLF: 124.12497272773298
Optimization terminated successfully (Exit mode 0)
Current function value: 124.12497272781125
Iterations: 23
Function evaluations: 188
Gradient evaluations: 22
Iteration: 1, Func. Count: 10, Neg. LLF: 24119396.40245637
Iteration: 2, Func. Count: 21, Neg. LLF: 222.75396796794826
Iteration: 3, Func. Count: 31, Neg. LLF: 133.79241493653439
Iteration: 4, Func. Count: 41, Neg. LLF: 123.73093319446093
Iteration: 5, Func. Count: 50, Neg. LLF: 124.23704007477431
Iteration: 6, Func. Count: 60, Neg. LLF: 123.59886009951936
Iteration: 7, Func. Count: 69, Neg. LLF: 123.56714450549617
Iteration: 8, Func. Count: 78, Neg. LLF: 123.53974773858751
Iteration: 9, Func. Count: 87, Neg. LLF: 123.50832379322473
Iteration: 10, Func. Count: 96, Neg. LLF: 123.49545507097291
Iteration: 11, Func. Count: 105, Neg. LLF: 123.49373647794474
Iteration: 12, Func. Count: 114, Neg. LLF: 123.49364601428188
Iteration: 13, Func. Count: 123, Neg. LLF: 123.49359361417027
Iteration: 14, Func. Count: 132, Neg. LLF: 123.49358907797651
Iteration: 15, Func. Count: 141, Neg. LLF: 123.49358850309662
Optimization terminated successfully (Exit mode 0)
Current function value: 123.49358850309662
Iterations: 15
Function evaluations: 141
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 161.89655137060228
Iteration: 2, Func. Count: 22, Neg. LLF: 148.9802855446205
Iteration: 3, Func. Count: 33, Neg. LLF: 133.22530345829426
Iteration: 4, Func. Count: 44, Neg. LLF: 123.58338173525185
Iteration: 5, Func. Count: 54, Neg. LLF: 123.54293118339824
Iteration: 6, Func. Count: 65, Neg. LLF: 123.48881840059764
Iteration: 7, Func. Count: 75, Neg. LLF: 123.53108318515562
Iteration: 8, Func. Count: 86, Neg. LLF: 123.60215799670753
Iteration: 9, Func. Count: 97, Neg. LLF: 123.47008323390314
Iteration: 10, Func. Count: 107, Neg. LLF: 123.46847605520247
Iteration: 11, Func. Count: 117, Neg. LLF: 123.46780304940796
Iteration: 12, Func. Count: 127, Neg. LLF: 123.46766433784214
Iteration: 13, Func. Count: 137, Neg. LLF: 123.46766283059851
Iteration: 14, Func. Count: 146, Neg. LLF: 123.46766283050859
Optimization terminated successfully (Exit mode 0)
Current function value: 123.46766283059851
Iterations: 14
Function evaluations: 146
Gradient evaluations: 14
Iteration: 1, Func. Count: 12, Neg. LLF: 169.20100989674287
Iteration: 2, Func. Count: 24, Neg. LLF: 373.5793179189036
Iteration: 3, Func. Count: 36, Neg. LLF: 127.88993472310717
Iteration: 4, Func. Count: 48, Neg. LLF: 126.30793950947012
Iteration: 5, Func. Count: 60, Neg. LLF: 123.9742329105032
Iteration: 6, Func. Count: 72, Neg. LLF: 123.95944682224503
Iteration: 7, Func. Count: 84, Neg. LLF: 123.4872587378738
Iteration: 8, Func. Count: 95, Neg. LLF: 123.44144973244364
Iteration: 9, Func. Count: 106, Neg. LLF: 123.4462817136367
Iteration: 10, Func. Count: 118, Neg. LLF: 123.43321827580417
Iteration: 11, Func. Count: 129, Neg. LLF: 123.43100512999946
Iteration: 12, Func. Count: 140, Neg. LLF: 123.38072537362196
Iteration: 13, Func. Count: 151, Neg. LLF: 123.3252212725766
Iteration: 14, Func. Count: 162, Neg. LLF: 122.9097834951589
Iteration: 15, Func. Count: 173, Neg. LLF: 122.97509687209558
Iteration: 16, Func. Count: 185, Neg. LLF: 122.83196213000569
Iteration: 17, Func. Count: 196, Neg. LLF: 122.79830965795527
Iteration: 18, Func. Count: 207, Neg. LLF: 122.78404583781193
Iteration: 19, Func. Count: 218, Neg. LLF: 122.7830063048318
Iteration: 20, Func. Count: 229, Neg. LLF: 122.7827917243174
Iteration: 21, Func. Count: 240, Neg. LLF: 122.78276619887413
Iteration: 22, Func. Count: 250, Neg. LLF: 122.7827662403372
Optimization terminated successfully (Exit mode 0)
Current function value: 122.78276619887413
Iterations: 22
Function evaluations: 250
Gradient evaluations: 22
Iteration: 1, Func. Count: 9, Neg. LLF: 127.74814358127377
Iteration: 2, Func. Count: 18, Neg. LLF: 134.71659036518435
Iteration: 3, Func. Count: 27, Neg. LLF: 124.50432849322102
Iteration: 4, Func. Count: 35, Neg. LLF: 125.00232616300335
Iteration: 5, Func. Count: 44, Neg. LLF: 124.63891789841648
Iteration: 6, Func. Count: 53, Neg. LLF: 124.53591631840948
Iteration: 7, Func. Count: 62, Neg. LLF: 123.91622398428275
Iteration: 8, Func. Count: 71, Neg. LLF: 123.86140480356063
Iteration: 9, Func. Count: 79, Neg. LLF: 123.85814382594613
Iteration: 10, Func. Count: 87, Neg. LLF: 123.85791250170992
Iteration: 11, Func. Count: 95, Neg. LLF: 123.85787719442877
Iteration: 12, Func. Count: 103, Neg. LLF: 123.85787383282738
Iteration: 13, Func. Count: 110, Neg. LLF: 123.85787383281978
Optimization terminated successfully (Exit mode 0)
Current function value: 123.85787383282738
Iterations: 13
Function evaluations: 110
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 24985535.333015025
Iteration: 2, Func. Count: 21, Neg. LLF: 150.79455571673407
Iteration: 3, Func. Count: 32, Neg. LLF: 126.74654216727964
Iteration: 4, Func. Count: 42, Neg. LLF: 124.35748755977855
Iteration: 5, Func. Count: 51, Neg. LLF: 124.574396227323
Iteration: 6, Func. Count: 61, Neg. LLF: 124.31338753178905
Iteration: 7, Func. Count: 70, Neg. LLF: 124.29806479706302
Iteration: 8, Func. Count: 79, Neg. LLF: 124.28601632045724
Iteration: 9, Func. Count: 88, Neg. LLF: 124.28277263080957
Iteration: 10, Func. Count: 97, Neg. LLF: 124.28237313016211
Iteration: 11, Func. Count: 106, Neg. LLF: 124.28185874840439
Iteration: 12, Func. Count: 115, Neg. LLF: 124.28172055820043
Iteration: 13, Func. Count: 124, Neg. LLF: 124.27660311764957
Iteration: 14, Func. Count: 133, Neg. LLF: 124.19472736250354
Iteration: 15, Func. Count: 142, Neg. LLF: 124.12869604334851
Iteration: 16, Func. Count: 151, Neg. LLF: 124.12578071589232
Iteration: 17, Func. Count: 160, Neg. LLF: 124.1251419633271
Iteration: 18, Func. Count: 169, Neg. LLF: 124.12497320982648
Iteration: 19, Func. Count: 178, Neg. LLF: 124.12497519582087
Iteration: 20, Func. Count: 197, Neg. LLF: 12034963.98609839
Iteration: 21, Func. Count: 211, Neg. LLF: 124.12497338565744
Iteration: 22, Func. Count: 220, Neg. LLF: 124.12497273053718
Optimization terminated successfully (Exit mode 0)
Current function value: 124.12497273053718
Iterations: 23
Function evaluations: 220
Gradient evaluations: 22
Iteration: 1, Func. Count: 11, Neg. LLF: 165.90750945409252
Iteration: 2, Func. Count: 22, Neg. LLF: 126.35889569019477
Iteration: 3, Func. Count: 34, Neg. LLF: 124.75988183151897
Iteration: 4, Func. Count: 45, Neg. LLF: 123.73674847121342
Iteration: 5, Func. Count: 55, Neg. LLF: 123.5147418667454
Iteration: 6, Func. Count: 65, Neg. LLF: 123.50582709669807
Iteration: 7, Func. Count: 75, Neg. LLF: 123.49556291558953
Iteration: 8, Func. Count: 85, Neg. LLF: 123.49424994759704
Iteration: 9, Func. Count: 95, Neg. LLF: 123.49360052034353
Iteration: 10, Func. Count: 105, Neg. LLF: 123.49358870886759
Iteration: 11, Func. Count: 114, Neg. LLF: 123.49358870886076
Optimization terminated successfully (Exit mode 0)
Current function value: 123.49358870886759
Iterations: 11
Function evaluations: 114
Gradient evaluations: 11
Iteration: 1, Func. Count: 12, Neg. LLF: 172.97896268952258
Iteration: 2, Func. Count: 24, Neg. LLF: 141.4148296462778
Iteration: 3, Func. Count: 36, Neg. LLF: 131.28565901848722
Iteration: 4, Func. Count: 48, Neg. LLF: 123.13563997246095
Iteration: 5, Func. Count: 59, Neg. LLF: 123.40864696134703
Iteration: 6, Func. Count: 71, Neg. LLF: 123.12842425817536
Iteration: 7, Func. Count: 83, Neg. LLF: 123.31399803127353
Iteration: 8, Func. Count: 95, Neg. LLF: 122.84178702099904
Iteration: 9, Func. Count: 106, Neg. LLF: 122.8230459973985
Iteration: 10, Func. Count: 117, Neg. LLF: 122.82265529468302
Iteration: 11, Func. Count: 129, Neg. LLF: 122.80729240166713
Iteration: 12, Func. Count: 140, Neg. LLF: 122.79491056490217
Iteration: 13, Func. Count: 151, Neg. LLF: 122.78538035079055
Iteration: 14, Func. Count: 162, Neg. LLF: 122.78298345523555
Iteration: 15, Func. Count: 173, Neg. LLF: 122.7827756446709
Iteration: 16, Func. Count: 184, Neg. LLF: 122.78276591116462
Iteration: 17, Func. Count: 194, Neg. LLF: 122.7827659110983
Optimization terminated successfully (Exit mode 0)
Current function value: 122.78276591116462
Iterations: 17
Function evaluations: 194
Gradient evaluations: 17
Iteration: 1, Func. Count: 13, Neg. LLF: 187.88410584993179
Iteration: 2, Func. Count: 26, Neg. LLF: 425.2431038883341
Iteration: 3, Func. Count: 39, Neg. LLF: 146.3691895291527
Iteration: 4, Func. Count: 52, Neg. LLF: 123.75933940745608
Iteration: 5, Func. Count: 64, Neg. LLF: 123.72748826789321
Iteration: 6, Func. Count: 77, Neg. LLF: 127.68489527018356
Iteration: 7, Func. Count: 90, Neg. LLF: 123.53718554856538
Iteration: 8, Func. Count: 103, Neg. LLF: 123.44594374003782
Iteration: 9, Func. Count: 115, Neg. LLF: 123.38651593763188
Iteration: 10, Func. Count: 127, Neg. LLF: 123.32075194287154
Iteration: 11, Func. Count: 139, Neg. LLF: 123.87867702169109
Iteration: 12, Func. Count: 152, Neg. LLF: 123.81789982974333
Iteration: 13, Func. Count: 165, Neg. LLF: 123.76412963816371
Iteration: 14, Func. Count: 178, Neg. LLF: 163.1397436037726
Iteration: 15, Func. Count: 192, Neg. LLF: 123.24178877892248
Iteration: 16, Func. Count: 205, Neg. LLF: 122.80830768281778
Iteration: 17, Func. Count: 217, Neg. LLF: 122.79258100724091
Iteration: 18, Func. Count: 229, Neg. LLF: 122.78827616986337
Iteration: 19, Func. Count: 241, Neg. LLF: 122.78727813375835
Iteration: 20, Func. Count: 253, Neg. LLF: 122.78470748029265
Iteration: 21, Func. Count: 265, Neg. LLF: 122.78313078998674
Iteration: 22, Func. Count: 277, Neg. LLF: 122.78278336238273
Iteration: 23, Func. Count: 289, Neg. LLF: 122.78276649994805
Iteration: 24, Func. Count: 301, Neg. LLF: 122.78276590209506
Optimization terminated successfully (Exit mode 0)
Current function value: 122.78276590209506
Iterations: 24
Function evaluations: 301
Gradient evaluations: 24
Iteration: 1, Func. Count: 10, Neg. LLF: 128.00279812394623
Iteration: 2, Func. Count: 21, Neg. LLF: 132.94219627700303
Iteration: 3, Func. Count: 31, Neg. LLF: 124.92474205690657
Iteration: 4, Func. Count: 40, Neg. LLF: 124.3284847363878
Iteration: 5, Func. Count: 49, Neg. LLF: 123.99926739768006
Iteration: 6, Func. Count: 58, Neg. LLF: 124.152546898644
Iteration: 7, Func. Count: 69, Neg. LLF: 124.26543721580643
Iteration: 8, Func. Count: 79, Neg. LLF: 123.84356624455754
Iteration: 9, Func. Count: 88, Neg. LLF: 123.83715012704762
Iteration: 10, Func. Count: 97, Neg. LLF: 123.83601548938505
Iteration: 11, Func. Count: 106, Neg. LLF: 123.83597350674253
Iteration: 12, Func. Count: 115, Neg. LLF: 123.83597283679286
Optimization terminated successfully (Exit mode 0)
Current function value: 123.83597283679286
Iterations: 12
Function evaluations: 115
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 25507946.689143106
Iteration: 2, Func. Count: 23, Neg. LLF: 178.83470791224946
Iteration: 3, Func. Count: 35, Neg. LLF: 127.35276899902344
Iteration: 4, Func. Count: 46, Neg. LLF: 124.35979963664182
Iteration: 5, Func. Count: 56, Neg. LLF: 124.97179386665825
Iteration: 6, Func. Count: 67, Neg. LLF: 124.31157984993627
Iteration: 7, Func. Count: 77, Neg. LLF: 124.2938889606572
Iteration: 8, Func. Count: 87, Neg. LLF: 124.28453774442833
Iteration: 9, Func. Count: 97, Neg. LLF: 124.28344371179828
Iteration: 10, Func. Count: 107, Neg. LLF: 124.2822239935672
Iteration: 11, Func. Count: 117, Neg. LLF: 124.28196607947255
Iteration: 12, Func. Count: 127, Neg. LLF: 124.28179181887702
Iteration: 13, Func. Count: 137, Neg. LLF: 124.27501029553387
Iteration: 14, Func. Count: 147, Neg. LLF: 124.17293691287496
Iteration: 15, Func. Count: 157, Neg. LLF: 124.14903137534459
Iteration: 16, Func. Count: 167, Neg. LLF: 134.6407141894371
Iteration: 17, Func. Count: 182, Neg. LLF: 124.2014209711587
Iteration: 18, Func. Count: 193, Neg. LLF: 124.12507044794974
Iteration: 19, Func. Count: 203, Neg. LLF: 124.12497476259146
Iteration: 20, Func. Count: 213, Neg. LLF: 124.12497976071536
Iteration: 21, Func. Count: 223, Neg. LLF: 124.12497279820168
Optimization terminated successfully (Exit mode 0)
Current function value: 124.12497279735042
Iterations: 22
Function evaluations: 223
Gradient evaluations: 21
Iteration: 1, Func. Count: 12, Neg. LLF: 164.54299130269428
Iteration: 2, Func. Count: 24, Neg. LLF: 177.36009084898112
Iteration: 3, Func. Count: 36, Neg. LLF: 127.36841743249096
Iteration: 4, Func. Count: 48, Neg. LLF: 123.64933628098805
Iteration: 5, Func. Count: 59, Neg. LLF: 124.08941696415096
Iteration: 6, Func. Count: 71, Neg. LLF: 123.50327788698132
Iteration: 7, Func. Count: 82, Neg. LLF: 123.49871643173809
Iteration: 8, Func. Count: 93, Neg. LLF: 123.49490482537944
Iteration: 9, Func. Count: 104, Neg. LLF: 123.49364830209947
Iteration: 10, Func. Count: 115, Neg. LLF: 123.49360911538605
Iteration: 11, Func. Count: 126, Neg. LLF: 123.4935886613392
Iteration: 12, Func. Count: 136, Neg. LLF: 123.49358866133171
Optimization terminated successfully (Exit mode 0)
Current function value: 123.4935886613392
Iterations: 12
Function evaluations: 136
Gradient evaluations: 12
Iteration: 1, Func. Count: 13, Neg. LLF: 170.1153521584824
Iteration: 2, Func. Count: 26, Neg. LLF: 137.44275635411256
Iteration: 3, Func. Count: 39, Neg. LLF: 124.24440126649169
Iteration: 4, Func. Count: 51, Neg. LLF: 123.01443300012991
Iteration: 5, Func. Count: 63, Neg. LLF: 125.96331434674605
Iteration: 6, Func. Count: 76, Neg. LLF: 125.46927491917967
Iteration: 7, Func. Count: 89, Neg. LLF: 122.91717872557943
Iteration: 8, Func. Count: 101, Neg. LLF: 123.07298582466477
Iteration: 9, Func. Count: 114, Neg. LLF: 123.33163514136118
Iteration: 10, Func. Count: 128, Neg. LLF: 122.87842537338662
Iteration: 11, Func. Count: 140, Neg. LLF: 122.84110804756207
Iteration: 12, Func. Count: 152, Neg. LLF: 122.89018560388305
Iteration: 13, Func. Count: 165, Neg. LLF: 122.80432772224911
Iteration: 14, Func. Count: 177, Neg. LLF: 122.7887332238166
Iteration: 15, Func. Count: 189, Neg. LLF: 122.78365347480207
Iteration: 16, Func. Count: 201, Neg. LLF: 122.78290029355392
Iteration: 17, Func. Count: 213, Neg. LLF: 122.78276727917722
Iteration: 18, Func. Count: 225, Neg. LLF: 122.78276591179808
Iteration: 19, Func. Count: 236, Neg. LLF: 122.7827659117998
Optimization terminated successfully (Exit mode 0)
Current function value: 122.78276591179808
Iterations: 19
Function evaluations: 236
Gradient evaluations: 19
Iteration: 1, Func. Count: 14, Neg. LLF: 174.853824243716
Iteration: 2, Func. Count: 28, Neg. LLF: 149.1835076463977
Iteration: 3, Func. Count: 42, Neg. LLF: 127.68245419698673
Iteration: 4, Func. Count: 56, Neg. LLF: 144.23482977773233
Iteration: 5, Func. Count: 70, Neg. LLF: 126.94276900264616
Iteration: 6, Func. Count: 84, Neg. LLF: 123.62525276397854
Iteration: 7, Func. Count: 97, Neg. LLF: 125.51841654537756
Iteration: 8, Func. Count: 111, Neg. LLF: 123.56345544374183
Iteration: 9, Func. Count: 125, Neg. LLF: 123.48721133930121
Iteration: 10, Func. Count: 138, Neg. LLF: 123.4563252073654
Iteration: 11, Func. Count: 151, Neg. LLF: 123.44662036192962
Iteration: 12, Func. Count: 164, Neg. LLF: 123.43786864506106
Iteration: 13, Func. Count: 177, Neg. LLF: 123.435360410436
Iteration: 14, Func. Count: 190, Neg. LLF: 123.43474829612617
Iteration: 15, Func. Count: 203, Neg. LLF: 123.43420451620827
Iteration: 16, Func. Count: 216, Neg. LLF: 123.43419058385625
Iteration: 17, Func. Count: 229, Neg. LLF: 123.43418972511031
Optimization terminated successfully (Exit mode 0)
Current function value: 123.43418972511031
Iterations: 17
Function evaluations: 229
Gradient evaluations: 17
Iteration: 1, Func. Count: 7, Neg. LLF: 127.87054559213855
Iteration: 2, Func. Count: 14, Neg. LLF: 129.48709950682388
Iteration: 3, Func. Count: 21, Neg. LLF: 125.5115372186779
Iteration: 4, Func. Count: 27, Neg. LLF: 127.794860201249
Iteration: 5, Func. Count: 34, Neg. LLF: 125.08652713074605
Iteration: 6, Func. Count: 40, Neg. LLF: 125.09847301833224
Iteration: 7, Func. Count: 47, Neg. LLF: 125.0410489784764
Iteration: 8, Func. Count: 54, Neg. LLF: 125.01898130632735
Iteration: 9, Func. Count: 60, Neg. LLF: 125.01893426668873
Iteration: 10, Func. Count: 65, Neg. LLF: 125.01893426669075
Optimization terminated successfully (Exit mode 0)
Current function value: 125.01893426668873
Iterations: 10
Function evaluations: 65
Gradient evaluations: 10
Iteration: 1, Func. Count: 8, Neg. LLF: 20334627.292887375
Iteration: 2, Func. Count: 17, Neg. LLF: 137.00898075397959
Iteration: 3, Func. Count: 25, Neg. LLF: 127.79908782712177
Iteration: 4, Func. Count: 33, Neg. LLF: 124.44228425089247
Iteration: 5, Func. Count: 40, Neg. LLF: 124.26862856789081
Iteration: 6, Func. Count: 47, Neg. LLF: 124.12571937421211
Iteration: 7, Func. Count: 54, Neg. LLF: 124.12497475269316
Iteration: 8, Func. Count: 61, Neg. LLF: 124.12497274957448
Iteration: 9, Func. Count: 67, Neg. LLF: 124.12497274950408
Optimization terminated successfully (Exit mode 0)
Current function value: 124.12497274957448
Iterations: 9
Function evaluations: 67
Gradient evaluations: 9
Iteration: 1, Func. Count: 9, Neg. LLF: 20360673.311114475
Iteration: 2, Func. Count: 19, Neg. LLF: 132.2354818914413
Iteration: 3, Func. Count: 28, Neg. LLF: 125.25652164972831
Iteration: 4, Func. Count: 37, Neg. LLF: 124.33170798489877
Iteration: 5, Func. Count: 45, Neg. LLF: 125.25117444587728
Iteration: 6, Func. Count: 54, Neg. LLF: 124.24256798896167
Iteration: 7, Func. Count: 62, Neg. LLF: 124.1288284772271
Iteration: 8, Func. Count: 70, Neg. LLF: 124.11318814460634
Iteration: 9, Func. Count: 78, Neg. LLF: 124.10467053089478
Iteration: 10, Func. Count: 86, Neg. LLF: 124.10279536393024
Iteration: 11, Func. Count: 94, Neg. LLF: 124.10276240964807
Iteration: 12, Func. Count: 102, Neg. LLF: 124.10276084787097
Iteration: 13, Func. Count: 109, Neg. LLF: 124.10276084714452
Optimization terminated successfully (Exit mode 0)
Current function value: 124.10276084787097
Iterations: 13
Function evaluations: 109
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 278.2574295121915
Iteration: 2, Func. Count: 20, Neg. LLF: 1806.2684231535434
Iteration: 3, Func. Count: 30, Neg. LLF: 282.13658071679447
Iteration: 4, Func. Count: 40, Neg. LLF: 124.51944467831996
Iteration: 5, Func. Count: 49, Neg. LLF: 125.02490836085265
Iteration: 6, Func. Count: 59, Neg. LLF: 127.43663023593373
Iteration: 7, Func. Count: 69, Neg. LLF: 124.4332042529069
Iteration: 8, Func. Count: 79, Neg. LLF: 124.25486107930463
Iteration: 9, Func. Count: 88, Neg. LLF: 124.18230665928246
Iteration: 10, Func. Count: 97, Neg. LLF: 124.37161027771462
Iteration: 11, Func. Count: 107, Neg. LLF: 124.11309112147505
Iteration: 12, Func. Count: 116, Neg. LLF: 124.1147677398435
Iteration: 13, Func. Count: 126, Neg. LLF: 124.1115700772461
Iteration: 14, Func. Count: 135, Neg. LLF: 124.11152683375184
Iteration: 15, Func. Count: 143, Neg. LLF: 124.11152683361613
Optimization terminated successfully (Exit mode 0)
Current function value: 124.11152683375184
Iterations: 15
Function evaluations: 143
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 242.10101452262978
Iteration: 2, Func. Count: 22, Neg. LLF: 1355.1525897877584
Iteration: 3, Func. Count: 33, Neg. LLF: 174.8602989775052
Iteration: 4, Func. Count: 44, Neg. LLF: 124.29495620571075
Iteration: 5, Func. Count: 54, Neg. LLF: 124.71260748217632
Iteration: 6, Func. Count: 65, Neg. LLF: 124.01766807433101
Iteration: 7, Func. Count: 75, Neg. LLF: 126.76297075167652
Iteration: 8, Func. Count: 86, Neg. LLF: 124.52179915432133
Iteration: 9, Func. Count: 97, Neg. LLF: 123.6396221831181
Iteration: 10, Func. Count: 107, Neg. LLF: 123.63809546227047
Iteration: 11, Func. Count: 117, Neg. LLF: 123.6375670718712
Iteration: 12, Func. Count: 127, Neg. LLF: 123.63756460202687
Iteration: 13, Func. Count: 136, Neg. LLF: 123.63756460203093
Optimization terminated successfully (Exit mode 0)
Current function value: 123.63756460202687
Iterations: 13
Function evaluations: 136
Gradient evaluations: 13
Iteration: 1, Func. Count: 8, Neg. LLF: 127.47843400532855
Iteration: 2, Func. Count: 17, Neg. LLF: 128.2165138346235
Iteration: 3, Func. Count: 26, Neg. LLF: 124.41853832943691
Iteration: 4, Func. Count: 33, Neg. LLF: 123.89111120435483
Iteration: 5, Func. Count: 40, Neg. LLF: 123.88552792438853
Iteration: 6, Func. Count: 47, Neg. LLF: 123.88503801834183
Iteration: 7, Func. Count: 54, Neg. LLF: 123.8849990398205
Iteration: 8, Func. Count: 61, Neg. LLF: 123.88498726162848
Iteration: 9, Func. Count: 67, Neg. LLF: 123.88498726165555
Optimization terminated successfully (Exit mode 0)
Current function value: 123.88498726162848
Iterations: 9
Function evaluations: 67
Gradient evaluations: 9
Iteration: 1, Func. Count: 9, Neg. LLF: 23120915.150374226
Iteration: 2, Func. Count: 19, Neg. LLF: 125.80220118022575
Iteration: 3, Func. Count: 28, Neg. LLF: 126.19806218639262
Iteration: 4, Func. Count: 37, Neg. LLF: 124.32623252542848
Iteration: 5, Func. Count: 45, Neg. LLF: 124.28718036263838
Iteration: 6, Func. Count: 53, Neg. LLF: 124.2834695312382
Iteration: 7, Func. Count: 61, Neg. LLF: 124.28262873805188
Iteration: 8, Func. Count: 69, Neg. LLF: 124.28195277107423
Iteration: 9, Func. Count: 77, Neg. LLF: 124.28181103708404
Iteration: 10, Func. Count: 85, Neg. LLF: 124.28143124572728
Iteration: 11, Func. Count: 93, Neg. LLF: 124.23152782301709
Iteration: 12, Func. Count: 101, Neg. LLF: 124.27612853067228
Iteration: 13, Func. Count: 111, Neg. LLF: 124.13034438211804
Iteration: 14, Func. Count: 119, Neg. LLF: 124.1253763180469
Iteration: 15, Func. Count: 127, Neg. LLF: 124.12497628935192
Iteration: 16, Func. Count: 135, Neg. LLF: 124.12497276557212
Iteration: 17, Func. Count: 142, Neg. LLF: 124.12497276503743
Optimization terminated successfully (Exit mode 0)
Current function value: 124.12497276557212
Iterations: 17
Function evaluations: 142
Gradient evaluations: 17
Iteration: 1, Func. Count: 10, Neg. LLF: 215.75789995874936
Iteration: 2, Func. Count: 20, Neg. LLF: 137.0464030366005
Iteration: 3, Func. Count: 30, Neg. LLF: 124.93026515019326
Iteration: 4, Func. Count: 40, Neg. LLF: 124.13751952522999
Iteration: 5, Func. Count: 50, Neg. LLF: 123.5949243934007
Iteration: 6, Func. Count: 59, Neg. LLF: 124.50747756892392
Iteration: 7, Func. Count: 69, Neg. LLF: 123.56206282994182
Iteration: 8, Func. Count: 79, Neg. LLF: 123.4811192658943
Iteration: 9, Func. Count: 88, Neg. LLF: 123.47924105435781
Iteration: 10, Func. Count: 97, Neg. LLF: 123.47908151567904
Iteration: 11, Func. Count: 106, Neg. LLF: 123.4790547695317
Iteration: 12, Func. Count: 114, Neg. LLF: 123.47905476950639
Optimization terminated successfully (Exit mode 0)
Current function value: 123.4790547695317
Iterations: 12
Function evaluations: 114
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 225.53774030101084
Iteration: 2, Func. Count: 22, Neg. LLF: 7054.02521057508
Iteration: 3, Func. Count: 33, Neg. LLF: 129.52765019437197
Iteration: 4, Func. Count: 44, Neg. LLF: 123.07023235159511
Iteration: 5, Func. Count: 54, Neg. LLF: 123.5622565369402
Iteration: 6, Func. Count: 65, Neg. LLF: 122.98821016078618
Iteration: 7, Func. Count: 76, Neg. LLF: 123.07339245647401
Iteration: 8, Func. Count: 87, Neg. LLF: 122.79345475181076
Iteration: 9, Func. Count: 97, Neg. LLF: 122.78620484978518
Iteration: 10, Func. Count: 107, Neg. LLF: 122.7833782445323
Iteration: 11, Func. Count: 117, Neg. LLF: 122.78279389284594
Iteration: 12, Func. Count: 127, Neg. LLF: 122.78276993127437
Iteration: 13, Func. Count: 137, Neg. LLF: 122.7827660970059
Iteration: 14, Func. Count: 146, Neg. LLF: 122.78276609692092
Optimization terminated successfully (Exit mode 0)
Current function value: 122.7827660970059
Iterations: 14
Function evaluations: 146
Gradient evaluations: 14
Iteration: 1, Func. Count: 12, Neg. LLF: 230.03349120844737
Iteration: 2, Func. Count: 24, Neg. LLF: 6253.077519331467
Iteration: 3, Func. Count: 36, Neg. LLF: 133.48500240003068
Iteration: 4, Func. Count: 48, Neg. LLF: 130.38462363326275
Iteration: 5, Func. Count: 60, Neg. LLF: 124.64882104750711
Iteration: 6, Func. Count: 72, Neg. LLF: 123.63846206342728
Iteration: 7, Func. Count: 84, Neg. LLF: 123.35319577181794
Iteration: 8, Func. Count: 95, Neg. LLF: 123.23025573241557
Iteration: 9, Func. Count: 106, Neg. LLF: 123.3592398287766
Iteration: 10, Func. Count: 118, Neg. LLF: 123.18993298765243
Iteration: 11, Func. Count: 129, Neg. LLF: 123.18601031488413
Iteration: 12, Func. Count: 140, Neg. LLF: 123.18540791376606
Iteration: 13, Func. Count: 151, Neg. LLF: 123.18400837097977
Iteration: 14, Func. Count: 162, Neg. LLF: 123.18330114168664
Iteration: 15, Func. Count: 173, Neg. LLF: 123.18002760855964
Iteration: 16, Func. Count: 184, Neg. LLF: 123.17732152808023
Iteration: 17, Func. Count: 195, Neg. LLF: 123.17632842643671
Iteration: 18, Func. Count: 206, Neg. LLF: 123.17533979531247
Iteration: 19, Func. Count: 217, Neg. LLF: 123.17494845574112
Iteration: 20, Func. Count: 228, Neg. LLF: 123.17489585020198
Iteration: 21, Func. Count: 239, Neg. LLF: 123.17488147823049
Iteration: 22, Func. Count: 250, Neg. LLF: 123.17488008219723
Iteration: 23, Func. Count: 260, Neg. LLF: 123.17488008221957
Optimization terminated successfully (Exit mode 0)
Current function value: 123.17488008219723
Iterations: 23
Function evaluations: 260
Gradient evaluations: 23
Iteration: 1, Func. Count: 9, Neg. LLF: 127.71618495923585
Iteration: 2, Func. Count: 18, Neg. LLF: 127.9052538785466
Iteration: 3, Func. Count: 27, Neg. LLF: 125.89758454597354
Iteration: 4, Func. Count: 36, Neg. LLF: 124.93706605388549
Iteration: 5, Func. Count: 45, Neg. LLF: 123.90204552798153
Iteration: 6, Func. Count: 53, Neg. LLF: 123.88867542466143
Iteration: 7, Func. Count: 61, Neg. LLF: 123.8853063489686
Iteration: 8, Func. Count: 69, Neg. LLF: 123.88519541759143
Iteration: 9, Func. Count: 77, Neg. LLF: 123.88498801160986
Iteration: 10, Func. Count: 85, Neg. LLF: 123.88498710136915
Optimization terminated successfully (Exit mode 0)
Current function value: 123.88498710136915
Iterations: 10
Function evaluations: 85
Gradient evaluations: 10
Iteration: 1, Func. Count: 10, Neg. LLF: 23515166.185637146
Iteration: 2, Func. Count: 21, Neg. LLF: 135.52889630506417
Iteration: 3, Func. Count: 31, Neg. LLF: 124.76217771321433
Iteration: 4, Func. Count: 41, Neg. LLF: 124.3595104979881
Iteration: 5, Func. Count: 50, Neg. LLF: 124.36984218499398
Iteration: 6, Func. Count: 60, Neg. LLF: 124.29263421041767
Iteration: 7, Func. Count: 69, Neg. LLF: 124.2864600351646
Iteration: 8, Func. Count: 78, Neg. LLF: 124.28302172245922
Iteration: 9, Func. Count: 87, Neg. LLF: 124.28210943585208
Iteration: 10, Func. Count: 96, Neg. LLF: 124.2818636599155
Iteration: 11, Func. Count: 105, Neg. LLF: 124.28124267804574
Iteration: 12, Func. Count: 114, Neg. LLF: 124.26022255022868
Iteration: 13, Func. Count: 123, Neg. LLF: 124.27715521411471
Iteration: 14, Func. Count: 134, Neg. LLF: 124.13457194984095
Iteration: 15, Func. Count: 143, Neg. LLF: 124.12635479908023
Iteration: 16, Func. Count: 152, Neg. LLF: 124.1250893833052
Iteration: 17, Func. Count: 161, Neg. LLF: 124.12497723103237
Iteration: 18, Func. Count: 170, Neg. LLF: 124.1249727290131
Iteration: 19, Func. Count: 178, Neg. LLF: 124.12497272897677
Optimization terminated successfully (Exit mode 0)
Current function value: 124.1249727290131
Iterations: 19
Function evaluations: 178
Gradient evaluations: 19
Iteration: 1, Func. Count: 11, Neg. LLF: 24225671.65599996
Iteration: 2, Func. Count: 23, Neg. LLF: 225.30068731459298
Iteration: 3, Func. Count: 34, Neg. LLF: 133.76553677741788
Iteration: 4, Func. Count: 45, Neg. LLF: 123.7272895693522
Iteration: 5, Func. Count: 55, Neg. LLF: 124.18886961507312
Iteration: 6, Func. Count: 66, Neg. LLF: 123.59779291350074
Iteration: 7, Func. Count: 76, Neg. LLF: 123.90062447262497
Iteration: 8, Func. Count: 87, Neg. LLF: 123.54285102001823
Iteration: 9, Func. Count: 97, Neg. LLF: 123.50368253384393
Iteration: 10, Func. Count: 107, Neg. LLF: 123.48072983755526
Iteration: 11, Func. Count: 117, Neg. LLF: 123.47943317225418
Iteration: 12, Func. Count: 127, Neg. LLF: 123.479101300111
Iteration: 13, Func. Count: 137, Neg. LLF: 123.47907544862099
Iteration: 14, Func. Count: 147, Neg. LLF: 123.47905579908816
Iteration: 15, Func. Count: 157, Neg. LLF: 123.47905449332612
Iteration: 16, Func. Count: 166, Neg. LLF: 123.47905449332235
Optimization terminated successfully (Exit mode 0)
Current function value: 123.47905449332612
Iterations: 16
Function evaluations: 166
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 163.47698394734033
Iteration: 2, Func. Count: 24, Neg. LLF: 142.64560342216387
Iteration: 3, Func. Count: 36, Neg. LLF: 1048.694996123849
Iteration: 4, Func. Count: 48, Neg. LLF: 123.2546167924522
Iteration: 5, Func. Count: 59, Neg. LLF: 123.6423628551429
Iteration: 6, Func. Count: 71, Neg. LLF: 124.149585056008
Iteration: 7, Func. Count: 83, Neg. LLF: 122.88117209905737
Iteration: 8, Func. Count: 94, Neg. LLF: 122.96365372819018
Iteration: 9, Func. Count: 106, Neg. LLF: 123.36123063284278
Iteration: 10, Func. Count: 119, Neg. LLF: 122.80237100819444
Iteration: 11, Func. Count: 130, Neg. LLF: 122.78986081439713
Iteration: 12, Func. Count: 141, Neg. LLF: 122.78327499179055
Iteration: 13, Func. Count: 152, Neg. LLF: 122.78282252924534
Iteration: 14, Func. Count: 163, Neg. LLF: 122.78276972734169
Iteration: 15, Func. Count: 174, Neg. LLF: 122.78276592527996
Iteration: 16, Func. Count: 184, Neg. LLF: 122.78276592532264
Optimization terminated successfully (Exit mode 0)
Current function value: 122.78276592527996
Iterations: 16
Function evaluations: 184
Gradient evaluations: 16
Iteration: 1, Func. Count: 13, Neg. LLF: 173.00460742176753
Iteration: 2, Func. Count: 26, Neg. LLF: 543.119633319178
Iteration: 3, Func. Count: 39, Neg. LLF: 664.5090681439225
Iteration: 4, Func. Count: 52, Neg. LLF: 124.4982940257543
Iteration: 5, Func. Count: 65, Neg. LLF: 123.83951859736003
Iteration: 6, Func. Count: 77, Neg. LLF: 124.20486786234828
Iteration: 7, Func. Count: 90, Neg. LLF: 124.15956932449272
Iteration: 8, Func. Count: 104, Neg. LLF: 123.22864519410706
Iteration: 9, Func. Count: 116, Neg. LLF: 123.2128531556726
Iteration: 10, Func. Count: 128, Neg. LLF: 123.1845684837456
Iteration: 11, Func. Count: 140, Neg. LLF: 123.183751071406
Iteration: 12, Func. Count: 152, Neg. LLF: 123.18320220486935
Iteration: 13, Func. Count: 164, Neg. LLF: 123.1831400289784
Iteration: 14, Func. Count: 176, Neg. LLF: 123.18305474957172
Iteration: 15, Func. Count: 188, Neg. LLF: 123.18251384254424
Iteration: 16, Func. Count: 200, Neg. LLF: 123.17913685813383
Iteration: 17, Func. Count: 212, Neg. LLF: 123.17814275982825
Iteration: 18, Func. Count: 224, Neg. LLF: 123.17646685526225
Iteration: 19, Func. Count: 236, Neg. LLF: 123.17566088508438
Iteration: 20, Func. Count: 248, Neg. LLF: 123.17490351156152
Iteration: 21, Func. Count: 260, Neg. LLF: 123.1748843558122
Iteration: 22, Func. Count: 272, Neg. LLF: 123.17488063644254
Iteration: 23, Func. Count: 284, Neg. LLF: 123.17488005885801
Optimization terminated successfully (Exit mode 0)
Current function value: 123.17488005885801
Iterations: 23
Function evaluations: 284
Gradient evaluations: 23
Iteration: 1, Func. Count: 10, Neg. LLF: 127.94418519727746
Iteration: 2, Func. Count: 21, Neg. LLF: 130.2606825897187
Iteration: 3, Func. Count: 31, Neg. LLF: 124.47435053141304
Iteration: 4, Func. Count: 40, Neg. LLF: 124.12776056438727
Iteration: 5, Func. Count: 49, Neg. LLF: 129.19918044341273
Iteration: 6, Func. Count: 59, Neg. LLF: 123.83922987375274
Iteration: 7, Func. Count: 68, Neg. LLF: 123.90847668395507
Iteration: 8, Func. Count: 78, Neg. LLF: 123.77660207380431
Iteration: 9, Func. Count: 87, Neg. LLF: 123.77338475236922
Iteration: 10, Func. Count: 96, Neg. LLF: 123.77262348524405
Iteration: 11, Func. Count: 105, Neg. LLF: 123.77260486126168
Iteration: 12, Func. Count: 114, Neg. LLF: 123.77260177733547
Iteration: 13, Func. Count: 123, Neg. LLF: 123.77260121964267
Optimization terminated successfully (Exit mode 0)
Current function value: 123.77260121964267
Iterations: 13
Function evaluations: 123
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 25125507.62910046
Iteration: 2, Func. Count: 23, Neg. LLF: 154.27840250959787
Iteration: 3, Func. Count: 35, Neg. LLF: 127.04989642431289
Iteration: 4, Func. Count: 46, Neg. LLF: 124.35931951414135
Iteration: 5, Func. Count: 56, Neg. LLF: 124.48349481190651
Iteration: 6, Func. Count: 67, Neg. LLF: 124.31442638239562
Iteration: 7, Func. Count: 77, Neg. LLF: 124.29755692254365
Iteration: 8, Func. Count: 87, Neg. LLF: 124.28582782117846
Iteration: 9, Func. Count: 97, Neg. LLF: 124.28303317327196
Iteration: 10, Func. Count: 107, Neg. LLF: 124.28279572183779
Iteration: 11, Func. Count: 118, Neg. LLF: 124.28188177885508
Iteration: 12, Func. Count: 128, Neg. LLF: 124.28171612429264
Iteration: 13, Func. Count: 138, Neg. LLF: 124.27442594623813
Iteration: 14, Func. Count: 148, Neg. LLF: 124.16774718204641
Iteration: 15, Func. Count: 158, Neg. LLF: 129.59975031006778
Iteration: 16, Func. Count: 174, Neg. LLF: 124.30749623603714
Iteration: 17, Func. Count: 185, Neg. LLF: 124.12508909746772
Iteration: 18, Func. Count: 195, Neg. LLF: 124.12498246406925
Iteration: 19, Func. Count: 205, Neg. LLF: 124.12497273037478
Iteration: 20, Func. Count: 214, Neg. LLF: 124.12497273046868
Optimization terminated successfully (Exit mode 0)
Current function value: 124.12497273037478
Iterations: 21
Function evaluations: 214
Gradient evaluations: 20
Iteration: 1, Func. Count: 12, Neg. LLF: 166.69243293133886
Iteration: 2, Func. Count: 24, Neg. LLF: 126.15125414607795
Iteration: 3, Func. Count: 37, Neg. LLF: 124.36512506518558
Iteration: 4, Func. Count: 49, Neg. LLF: 123.89551433830756
Iteration: 5, Func. Count: 60, Neg. LLF: 3949643.811015027
Iteration: 6, Func. Count: 73, Neg. LLF: 124.14911285011783
Iteration: 7, Func. Count: 85, Neg. LLF: 123.46067915562925
Iteration: 8, Func. Count: 96, Neg. LLF: 123.44253320518435
Iteration: 9, Func. Count: 107, Neg. LLF: 123.43817345231554
Iteration: 10, Func. Count: 118, Neg. LLF: 123.43689436048564
Iteration: 11, Func. Count: 129, Neg. LLF: 123.43686350753711
Iteration: 12, Func. Count: 140, Neg. LLF: 123.43685153962309
Iteration: 13, Func. Count: 150, Neg. LLF: 123.43685153972925
Optimization terminated successfully (Exit mode 0)
Current function value: 123.43685153962309
Iterations: 13
Function evaluations: 150
Gradient evaluations: 13
Iteration: 1, Func. Count: 13, Neg. LLF: 174.0347030271965
Iteration: 2, Func. Count: 26, Neg. LLF: 141.02804289313713
Iteration: 3, Func. Count: 39, Neg. LLF: 132.230095956958
Iteration: 4, Func. Count: 52, Neg. LLF: 123.64591229305722
Iteration: 5, Func. Count: 64, Neg. LLF: 123.56338196300034
Iteration: 6, Func. Count: 77, Neg. LLF: 144.11798972665102
Iteration: 7, Func. Count: 90, Neg. LLF: 123.27964287229699
Iteration: 8, Func. Count: 103, Neg. LLF: 122.88834201803826
Iteration: 9, Func. Count: 115, Neg. LLF: 122.79425969177406
Iteration: 10, Func. Count: 127, Neg. LLF: 122.7755797653631
Iteration: 11, Func. Count: 139, Neg. LLF: 122.77025882491014
Iteration: 12, Func. Count: 151, Neg. LLF: 122.76842855543428
Iteration: 13, Func. Count: 163, Neg. LLF: 122.76445437087752
Iteration: 14, Func. Count: 175, Neg. LLF: 122.76300082830386
Iteration: 15, Func. Count: 187, Neg. LLF: 122.76280298062105
Iteration: 16, Func. Count: 199, Neg. LLF: 122.76279295160666
Iteration: 17, Func. Count: 210, Neg. LLF: 122.76279295167379
Optimization terminated successfully (Exit mode 0)
Current function value: 122.76279295160666
Iterations: 17
Function evaluations: 210
Gradient evaluations: 17
Iteration: 1, Func. Count: 14, Neg. LLF: 189.61300636008488
Iteration: 2, Func. Count: 28, Neg. LLF: 462.2062136983522
Iteration: 3, Func. Count: 42, Neg. LLF: 5257.208594660962
Iteration: 4, Func. Count: 56, Neg. LLF: 134.29350792365645
Iteration: 5, Func. Count: 70, Neg. LLF: 123.53405470806234
Iteration: 6, Func. Count: 83, Neg. LLF: 123.93007015013133
Iteration: 7, Func. Count: 97, Neg. LLF: 123.54635140082077
Iteration: 8, Func. Count: 111, Neg. LLF: 123.41976400606192
Iteration: 9, Func. Count: 125, Neg. LLF: 123.16897326828267
Iteration: 10, Func. Count: 138, Neg. LLF: 123.12556143515641
Iteration: 11, Func. Count: 151, Neg. LLF: 123.03397240348679
Iteration: 12, Func. Count: 164, Neg. LLF: 122.9791755437803
Iteration: 13, Func. Count: 177, Neg. LLF: 122.90350297382344
Iteration: 14, Func. Count: 190, Neg. LLF: 122.89526757531296
Iteration: 15, Func. Count: 203, Neg. LLF: 122.89433396675548
Iteration: 16, Func. Count: 216, Neg. LLF: 122.89415653019954
Iteration: 17, Func. Count: 229, Neg. LLF: 122.89412587758369
Iteration: 18, Func. Count: 241, Neg. LLF: 122.89412587772303
Optimization terminated successfully (Exit mode 0)
Current function value: 122.89412587758369
Iterations: 18
Function evaluations: 241
Gradient evaluations: 18
Iteration: 1, Func. Count: 11, Neg. LLF: 128.06291060460956
Iteration: 2, Func. Count: 23, Neg. LLF: 128.99931506244653
Iteration: 3, Func. Count: 34, Neg. LLF: 124.43701320270488
Iteration: 4, Func. Count: 44, Neg. LLF: 125.44136388281184
Iteration: 5, Func. Count: 56, Neg. LLF: 131.7756068502619
Iteration: 6, Func. Count: 67, Neg. LLF: 123.97974225140675
Iteration: 7, Func. Count: 78, Neg. LLF: 124.7048608202424
Iteration: 8, Func. Count: 89, Neg. LLF: 123.77028047549031
Iteration: 9, Func. Count: 99, Neg. LLF: 123.76219623553514
Iteration: 10, Func. Count: 109, Neg. LLF: 123.75988793847591
Iteration: 11, Func. Count: 119, Neg. LLF: 123.75942014770484
Iteration: 12, Func. Count: 129, Neg. LLF: 123.75935301070324
Iteration: 13, Func. Count: 139, Neg. LLF: 123.75933955198225
Iteration: 14, Func. Count: 148, Neg. LLF: 123.75933955195813
Optimization terminated successfully (Exit mode 0)
Current function value: 123.75933955198225
Iterations: 14
Function evaluations: 148
Gradient evaluations: 14
Iteration: 1, Func. Count: 12, Neg. LLF: 25647614.83095227
Iteration: 2, Func. Count: 25, Neg. LLF: 180.56194830879352
Iteration: 3, Func. Count: 37, Neg. LLF: 127.36083242380852
Iteration: 4, Func. Count: 49, Neg. LLF: 124.38584162190716
Iteration: 5, Func. Count: 60, Neg. LLF: 125.29836982891246
Iteration: 6, Func. Count: 72, Neg. LLF: 124.56859491646776
Iteration: 7, Func. Count: 84, Neg. LLF: 124.29942725553337
Iteration: 8, Func. Count: 95, Neg. LLF: 124.2912928353952
Iteration: 9, Func. Count: 106, Neg. LLF: 124.28515843731505
Iteration: 10, Func. Count: 117, Neg. LLF: 124.28244411747899
Iteration: 11, Func. Count: 128, Neg. LLF: 124.28201733888714
Iteration: 12, Func. Count: 139, Neg. LLF: 124.28176307351627
Iteration: 13, Func. Count: 150, Neg. LLF: 124.27177120516329
Iteration: 14, Func. Count: 161, Neg. LLF: 124.1498870239459
Iteration: 15, Func. Count: 172, Neg. LLF: 127.5308683495037
Iteration: 16, Func. Count: 187, Neg. LLF: 124.15460481544366
Iteration: 17, Func. Count: 199, Neg. LLF: 20251593.88164142
Iteration: 18, Func. Count: 214, Neg. LLF: 124.25677364525829
Iteration: 19, Func. Count: 226, Neg. LLF: 124.12503406349657
Iteration: 20, Func. Count: 237, Neg. LLF: 124.12500185979103
Iteration: 21, Func. Count: 248, Neg. LLF: 124.12500659230469
Iteration: 22, Func. Count: 260, Neg. LLF: 124.12497280122054
Iteration: 23, Func. Count: 270, Neg. LLF: 124.12497280035092
Optimization terminated successfully (Exit mode 0)
Current function value: 124.12497280122054
Iterations: 24
Function evaluations: 270
Gradient evaluations: 23
Iteration: 1, Func. Count: 13, Neg. LLF: 165.30746622066027
Iteration: 2, Func. Count: 26, Neg. LLF: 182.40549730836366
Iteration: 3, Func. Count: 39, Neg. LLF: 127.2546633219627
Iteration: 4, Func. Count: 52, Neg. LLF: 124.03499320854077
Iteration: 5, Func. Count: 64, Neg. LLF: 124.53820083490426
Iteration: 6, Func. Count: 77, Neg. LLF: 124.26461757729896
Iteration: 7, Func. Count: 90, Neg. LLF: 123.80204643747706
Iteration: 8, Func. Count: 103, Neg. LLF: 123.52876508675355
Iteration: 9, Func. Count: 115, Neg. LLF: 123.45829088350168
Iteration: 10, Func. Count: 127, Neg. LLF: 123.45002356296054
Iteration: 11, Func. Count: 139, Neg. LLF: 123.43955094400012
Iteration: 12, Func. Count: 151, Neg. LLF: 123.43746035848605
Iteration: 13, Func. Count: 163, Neg. LLF: 123.4369251175164
Iteration: 14, Func. Count: 175, Neg. LLF: 123.4368591219202
Iteration: 15, Func. Count: 187, Neg. LLF: 123.43685139807447
Iteration: 16, Func. Count: 198, Neg. LLF: 123.43685139811762
Optimization terminated successfully (Exit mode 0)
Current function value: 123.43685139807447
Iterations: 16
Function evaluations: 198
Gradient evaluations: 16
Iteration: 1, Func. Count: 14, Neg. LLF: 171.1016877098017
Iteration: 2, Func. Count: 28, Neg. LLF: 137.31577603624353
Iteration: 3, Func. Count: 42, Neg. LLF: 124.1864275106877
Iteration: 4, Func. Count: 55, Neg. LLF: 123.18940157855572
Iteration: 5, Func. Count: 68, Neg. LLF: 132.59183270089622
Iteration: 6, Func. Count: 82, Neg. LLF: 124.73775839053631
Iteration: 7, Func. Count: 96, Neg. LLF: 127.59452883197626
Iteration: 8, Func. Count: 110, Neg. LLF: 123.29321615126268
Iteration: 9, Func. Count: 124, Neg. LLF: 124.92743593937136
Iteration: 10, Func. Count: 138, Neg. LLF: 122.92194302866471
Iteration: 11, Func. Count: 152, Neg. LLF: 122.90368135715559
Iteration: 12, Func. Count: 166, Neg. LLF: 122.8406907831657
Iteration: 13, Func. Count: 179, Neg. LLF: 122.82588900674493
Iteration: 14, Func. Count: 192, Neg. LLF: 122.76996305032483
Iteration: 15, Func. Count: 205, Neg. LLF: 122.76474632297364
Iteration: 16, Func. Count: 218, Neg. LLF: 122.7632619584666
Iteration: 17, Func. Count: 231, Neg. LLF: 122.76296599564628
Iteration: 18, Func. Count: 244, Neg. LLF: 122.76283306367229
Iteration: 19, Func. Count: 257, Neg. LLF: 122.76279713865654
Iteration: 20, Func. Count: 270, Neg. LLF: 122.76279307440507
Iteration: 21, Func. Count: 282, Neg. LLF: 122.76279307439145
Optimization terminated successfully (Exit mode 0)
Current function value: 122.76279307440507
Iterations: 21
Function evaluations: 282
Gradient evaluations: 21
Iteration: 1, Func. Count: 15, Neg. LLF: 176.0224783770494
Iteration: 2, Func. Count: 30, Neg. LLF: 148.18409307802585
Iteration: 3, Func. Count: 45, Neg. LLF: 127.44767468164676
Iteration: 4, Func. Count: 60, Neg. LLF: 146.5748216287304
Iteration: 5, Func. Count: 75, Neg. LLF: 164.7906455149743
Iteration: 6, Func. Count: 90, Neg. LLF: 149.0002912614009
Iteration: 7, Func. Count: 105, Neg. LLF: 123.37117256955327
Iteration: 8, Func. Count: 119, Neg. LLF: 123.33942803115524
Iteration: 9, Func. Count: 134, Neg. LLF: 123.2770583421715
Iteration: 10, Func. Count: 149, Neg. LLF: 123.20402160307125
Iteration: 11, Func. Count: 163, Neg. LLF: 123.1885506984172
Iteration: 12, Func. Count: 177, Neg. LLF: 123.29194001179665
Iteration: 13, Func. Count: 192, Neg. LLF: 123.25132295310412
Iteration: 14, Func. Count: 207, Neg. LLF: 123.22143939680988
Iteration: 15, Func. Count: 222, Neg. LLF: 123.06978453934434
Iteration: 16, Func. Count: 236, Neg. LLF: 123.60959779792469
Iteration: 17, Func. Count: 251, Neg. LLF: 122.91487365197088
Iteration: 18, Func. Count: 265, Neg. LLF: 122.8975080819702
Iteration: 19, Func. Count: 279, Neg. LLF: 122.89445784055617
Iteration: 20, Func. Count: 293, Neg. LLF: 122.89417018395277
Iteration: 21, Func. Count: 307, Neg. LLF: 122.89412636777773
Iteration: 22, Func. Count: 320, Neg. LLF: 122.89412636775067
Optimization terminated successfully (Exit mode 0)
Current function value: 122.89412636777773
Iterations: 22
Function evaluations: 320
Gradient evaluations: 22
Iteration: 1, Func. Count: 8, Neg. LLF: 127.99073251757333
Iteration: 2, Func. Count: 16, Neg. LLF: 132.7977972054683
Iteration: 3, Func. Count: 24, Neg. LLF: 125.46674759582524
Iteration: 4, Func. Count: 31, Neg. LLF: 126.49417531990237
Iteration: 5, Func. Count: 39, Neg. LLF: 125.16419250160703
Iteration: 6, Func. Count: 47, Neg. LLF: 125.0886227204081
Iteration: 7, Func. Count: 55, Neg. LLF: 125.01902429602418
Iteration: 8, Func. Count: 62, Neg. LLF: 125.01893487504398
Iteration: 9, Func. Count: 69, Neg. LLF: 125.01893413416956
Optimization terminated successfully (Exit mode 0)
Current function value: 125.01893413416956
Iterations: 9
Function evaluations: 69
Gradient evaluations: 9
Iteration: 1, Func. Count: 9, Neg. LLF: 20335040.72782596
Iteration: 2, Func. Count: 19, Neg. LLF: 137.1686791556705
Iteration: 3, Func. Count: 28, Neg. LLF: 127.86449289725081
Iteration: 4, Func. Count: 37, Neg. LLF: 124.43105246105304
Iteration: 5, Func. Count: 45, Neg. LLF: 124.27988780033472
Iteration: 6, Func. Count: 53, Neg. LLF: 124.12586741361464
Iteration: 7, Func. Count: 61, Neg. LLF: 124.12497829177947
Iteration: 8, Func. Count: 69, Neg. LLF: 124.12497276218774
Iteration: 9, Func. Count: 76, Neg. LLF: 124.124972762164
Optimization terminated successfully (Exit mode 0)
Current function value: 124.12497276218774
Iterations: 9
Function evaluations: 76
Gradient evaluations: 9
Iteration: 1, Func. Count: 10, Neg. LLF: 258.4091474111669
Iteration: 2, Func. Count: 20, Neg. LLF: 155.55169434514247
Iteration: 3, Func. Count: 30, Neg. LLF: 124.77375913194983
Iteration: 4, Func. Count: 39, Neg. LLF: 126.25249225745019
Iteration: 5, Func. Count: 49, Neg. LLF: 125.5893778150677
Iteration: 6, Func. Count: 59, Neg. LLF: 124.36773001709916
Iteration: 7, Func. Count: 68, Neg. LLF: 124.23266433143534
Iteration: 8, Func. Count: 77, Neg. LLF: 124.22292441160343
Iteration: 9, Func. Count: 87, Neg. LLF: 124.13336422674529
Iteration: 10, Func. Count: 96, Neg. LLF: 124.12525905300275
Iteration: 11, Func. Count: 105, Neg. LLF: 124.11699400080971
Iteration: 12, Func. Count: 114, Neg. LLF: 124.1129252347291
Iteration: 13, Func. Count: 123, Neg. LLF: 124.10781806742901
Iteration: 14, Func. Count: 132, Neg. LLF: 124.10459565155868
Iteration: 15, Func. Count: 141, Neg. LLF: 124.10284847925442
Iteration: 16, Func. Count: 150, Neg. LLF: 124.10276500647527
Iteration: 17, Func. Count: 159, Neg. LLF: 124.10276029295186
Iteration: 18, Func. Count: 167, Neg. LLF: 124.1027602930014
Optimization terminated successfully (Exit mode 0)
Current function value: 124.10276029295186
Iterations: 18
Function evaluations: 167
Gradient evaluations: 18
Iteration: 1, Func. Count: 11, Neg. LLF: 278.0427333554082
Iteration: 2, Func. Count: 22, Neg. LLF: 1516.774464318373
Iteration: 3, Func. Count: 33, Neg. LLF: 289.4792786229132
Iteration: 4, Func. Count: 44, Neg. LLF: 124.53149001494141
Iteration: 5, Func. Count: 54, Neg. LLF: 124.9985703910609
Iteration: 6, Func. Count: 65, Neg. LLF: 127.79280918425407
Iteration: 7, Func. Count: 76, Neg. LLF: 124.41357250528102
Iteration: 8, Func. Count: 87, Neg. LLF: 124.24231211311059
Iteration: 9, Func. Count: 97, Neg. LLF: 124.17151320852462
Iteration: 10, Func. Count: 107, Neg. LLF: 124.24721455387356
Iteration: 11, Func. Count: 118, Neg. LLF: 124.11205786528231
Iteration: 12, Func. Count: 128, Neg. LLF: 124.11190859036819
Iteration: 13, Func. Count: 138, Neg. LLF: 124.11152768310403
Iteration: 14, Func. Count: 148, Neg. LLF: 124.11152676408143
Optimization terminated successfully (Exit mode 0)
Current function value: 124.11152676408143
Iterations: 14
Function evaluations: 148
Gradient evaluations: 14
Iteration: 1, Func. Count: 12, Neg. LLF: 291.1591952717361
Iteration: 2, Func. Count: 24, Neg. LLF: 1244.5614810848087
Iteration: 3, Func. Count: 36, Neg. LLF: 206.32058074003373
Iteration: 4, Func. Count: 48, Neg. LLF: 124.19483922931047
Iteration: 5, Func. Count: 59, Neg. LLF: 125.43690720361698
Iteration: 6, Func. Count: 71, Neg. LLF: 124.04730576014717
Iteration: 7, Func. Count: 82, Neg. LLF: 123.9711881444833
Iteration: 8, Func. Count: 94, Neg. LLF: 123.82321304414384
Iteration: 9, Func. Count: 106, Neg. LLF: 123.67104520402616
Iteration: 10, Func. Count: 118, Neg. LLF: 123.63772213375053
Iteration: 11, Func. Count: 129, Neg. LLF: 123.6375713558329
Iteration: 12, Func. Count: 140, Neg. LLF: 123.63756441838504
Iteration: 13, Func. Count: 150, Neg. LLF: 123.63756441838335
Optimization terminated successfully (Exit mode 0)
Current function value: 123.63756441838504
Iterations: 13
Function evaluations: 150
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 128.2121808557086
Iteration: 2, Func. Count: 19, Neg. LLF: 128.44896500249365
Iteration: 3, Func. Count: 29, Neg. LLF: 125.01687283819474
Iteration: 4, Func. Count: 38, Neg. LLF: 123.90819780896717
Iteration: 5, Func. Count: 46, Neg. LLF: 123.89267656067764
Iteration: 6, Func. Count: 54, Neg. LLF: 123.88520529900299
Iteration: 7, Func. Count: 62, Neg. LLF: 123.88499581073872
Iteration: 8, Func. Count: 70, Neg. LLF: 123.88498746874349
Iteration: 9, Func. Count: 77, Neg. LLF: 123.88498746877005
Optimization terminated successfully (Exit mode 0)
Current function value: 123.88498746874349
Iterations: 9
Function evaluations: 77
Gradient evaluations: 9
Iteration: 1, Func. Count: 10, Neg. LLF: 23153445.70225256
Iteration: 2, Func. Count: 21, Neg. LLF: 125.78746321048861
Iteration: 3, Func. Count: 31, Neg. LLF: 126.21842368686875
Iteration: 4, Func. Count: 41, Neg. LLF: 124.32927288172472
Iteration: 5, Func. Count: 50, Neg. LLF: 124.28735191664235
Iteration: 6, Func. Count: 59, Neg. LLF: 124.28355351705106
Iteration: 7, Func. Count: 68, Neg. LLF: 124.28256787122008
Iteration: 8, Func. Count: 77, Neg. LLF: 124.28194102094331
Iteration: 9, Func. Count: 86, Neg. LLF: 124.2817957920376
Iteration: 10, Func. Count: 95, Neg. LLF: 124.28149031434614
Iteration: 11, Func. Count: 104, Neg. LLF: 124.21425838343994
Iteration: 12, Func. Count: 113, Neg. LLF: 124.76961234874368
Iteration: 13, Func. Count: 124, Neg. LLF: 124.13003800261464
Iteration: 14, Func. Count: 133, Neg. LLF: 20273088.0339389
Iteration: 15, Func. Count: 146, Neg. LLF: 124.2648699842415
Iteration: 16, Func. Count: 156, Neg. LLF: 124.12497273773232
Iteration: 17, Func. Count: 164, Neg. LLF: 124.12497273806163
Optimization terminated successfully (Exit mode 0)
Current function value: 124.12497273773232
Iterations: 18
Function evaluations: 164
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 216.31709472127469
Iteration: 2, Func. Count: 22, Neg. LLF: 138.0709735527738
Iteration: 3, Func. Count: 33, Neg. LLF: 124.97749681972104
Iteration: 4, Func. Count: 44, Neg. LLF: 124.13668877509947
Iteration: 5, Func. Count: 55, Neg. LLF: 123.60510646577134
Iteration: 6, Func. Count: 65, Neg. LLF: 124.27216267210606
Iteration: 7, Func. Count: 76, Neg. LLF: 123.58229610623367
Iteration: 8, Func. Count: 87, Neg. LLF: 123.48110814545821
Iteration: 9, Func. Count: 97, Neg. LLF: 123.47927787400967
Iteration: 10, Func. Count: 107, Neg. LLF: 123.47908816725004
Iteration: 11, Func. Count: 117, Neg. LLF: 123.47905513808942
Iteration: 12, Func. Count: 127, Neg. LLF: 123.47905441150411
Optimization terminated successfully (Exit mode 0)
Current function value: 123.47905441150411
Iterations: 12
Function evaluations: 127
Gradient evaluations: 12
Iteration: 1, Func. Count: 12, Neg. LLF: 226.03207875257797
Iteration: 2, Func. Count: 24, Neg. LLF: 3009.8929719449125
Iteration: 3, Func. Count: 36, Neg. LLF: 129.78175458968266
Iteration: 4, Func. Count: 48, Neg. LLF: 123.0489575015765
Iteration: 5, Func. Count: 59, Neg. LLF: 123.22697244560706
Iteration: 6, Func. Count: 71, Neg. LLF: 123.92945845879328
Iteration: 7, Func. Count: 83, Neg. LLF: 125.62098183238746
Iteration: 8, Func. Count: 95, Neg. LLF: 122.80221263837693
Iteration: 9, Func. Count: 106, Neg. LLF: 122.78727863274815
Iteration: 10, Func. Count: 117, Neg. LLF: 122.78412954505724
Iteration: 11, Func. Count: 128, Neg. LLF: 122.78289738109608
Iteration: 12, Func. Count: 139, Neg. LLF: 122.7827802827615
Iteration: 13, Func. Count: 150, Neg. LLF: 122.78276696830399
Iteration: 14, Func. Count: 161, Neg. LLF: 122.782765892808
Iteration: 15, Func. Count: 171, Neg. LLF: 122.78276589280433
Optimization terminated successfully (Exit mode 0)
Current function value: 122.782765892808
Iterations: 15
Function evaluations: 171
Gradient evaluations: 15
Iteration: 1, Func. Count: 13, Neg. LLF: 230.4484814708588
Iteration: 2, Func. Count: 26, Neg. LLF: 2689.9680690328723
Iteration: 3, Func. Count: 39, Neg. LLF: 134.1258749191305
Iteration: 4, Func. Count: 52, Neg. LLF: 130.48430925049513
Iteration: 5, Func. Count: 65, Neg. LLF: 124.60756422880608
Iteration: 6, Func. Count: 78, Neg. LLF: 123.67253225872734
Iteration: 7, Func. Count: 91, Neg. LLF: 123.33740622277288
Iteration: 8, Func. Count: 103, Neg. LLF: 123.23550142790367
Iteration: 9, Func. Count: 115, Neg. LLF: 123.36549152410016
Iteration: 10, Func. Count: 128, Neg. LLF: 123.18961825725611
Iteration: 11, Func. Count: 140, Neg. LLF: 123.18592982699869
Iteration: 12, Func. Count: 152, Neg. LLF: 123.18536114100047
Iteration: 13, Func. Count: 164, Neg. LLF: 123.1839341062183
Iteration: 14, Func. Count: 176, Neg. LLF: 123.18327678152642
Iteration: 15, Func. Count: 188, Neg. LLF: 123.17872085690968
Iteration: 16, Func. Count: 200, Neg. LLF: 123.17709610058341
Iteration: 17, Func. Count: 212, Neg. LLF: 123.17568196590354
Iteration: 18, Func. Count: 224, Neg. LLF: 123.17505285019105
Iteration: 19, Func. Count: 236, Neg. LLF: 123.17489178191835
Iteration: 20, Func. Count: 248, Neg. LLF: 123.17488186405885
Iteration: 21, Func. Count: 260, Neg. LLF: 123.17488006222258
Iteration: 22, Func. Count: 271, Neg. LLF: 123.17488006223226
Optimization terminated successfully (Exit mode 0)
Current function value: 123.17488006222258
Iterations: 22
Function evaluations: 271
Gradient evaluations: 22
Iteration: 1, Func. Count: 10, Neg. LLF: 127.10728155160318
Iteration: 2, Func. Count: 20, Neg. LLF: 126.91126335819622
Iteration: 3, Func. Count: 30, Neg. LLF: 125.65837169816662
Iteration: 4, Func. Count: 40, Neg. LLF: 125.0608270158553
Iteration: 5, Func. Count: 50, Neg. LLF: 123.92045788483512
Iteration: 6, Func. Count: 59, Neg. LLF: 123.89019560526005
Iteration: 7, Func. Count: 68, Neg. LLF: 123.88531856701388
Iteration: 8, Func. Count: 77, Neg. LLF: 123.88509592713105
Iteration: 9, Func. Count: 86, Neg. LLF: 123.88499738984774
Iteration: 10, Func. Count: 95, Neg. LLF: 123.88498715776674
Iteration: 11, Func. Count: 103, Neg. LLF: 123.88498708017542
Optimization terminated successfully (Exit mode 0)
Current function value: 123.88498715776674
Iterations: 11
Function evaluations: 103
Gradient evaluations: 11
Iteration: 1, Func. Count: 11, Neg. LLF: 23560036.784095477
Iteration: 2, Func. Count: 23, Neg. LLF: 136.23697162297177
Iteration: 3, Func. Count: 34, Neg. LLF: 124.83369178649663
Iteration: 4, Func. Count: 45, Neg. LLF: 124.35492560867391
Iteration: 5, Func. Count: 55, Neg. LLF: 124.35263616132013
Iteration: 6, Func. Count: 66, Neg. LLF: 124.29263815052221
Iteration: 7, Func. Count: 76, Neg. LLF: 124.28618776173393
Iteration: 8, Func. Count: 86, Neg. LLF: 124.28297987445512
Iteration: 9, Func. Count: 96, Neg. LLF: 124.28208383116673
Iteration: 10, Func. Count: 106, Neg. LLF: 124.28184657749931
Iteration: 11, Func. Count: 116, Neg. LLF: 124.28109503222976
Iteration: 12, Func. Count: 126, Neg. LLF: 124.23503239279869
Iteration: 13, Func. Count: 136, Neg. LLF: 124.24160809047409
Iteration: 14, Func. Count: 147, Neg. LLF: 124.14690063899555
Iteration: 15, Func. Count: 157, Neg. LLF: 124.12815557310454
Iteration: 16, Func. Count: 167, Neg. LLF: 124.12504947073758
Iteration: 17, Func. Count: 177, Neg. LLF: 124.12497282443537
Iteration: 18, Func. Count: 186, Neg. LLF: 124.12497282353968
Optimization terminated successfully (Exit mode 0)
Current function value: 124.12497282443537
Iterations: 18
Function evaluations: 186
Gradient evaluations: 18
Iteration: 1, Func. Count: 12, Neg. LLF: 24273628.237438507
Iteration: 2, Func. Count: 25, Neg. LLF: 226.66512640535936
Iteration: 3, Func. Count: 37, Neg. LLF: 133.80296637466668
Iteration: 4, Func. Count: 49, Neg. LLF: 123.72532985895106
Iteration: 5, Func. Count: 60, Neg. LLF: 124.1551964024008
Iteration: 6, Func. Count: 72, Neg. LLF: 123.59733520396918
Iteration: 7, Func. Count: 83, Neg. LLF: 123.89708865602871
Iteration: 8, Func. Count: 95, Neg. LLF: 123.54306616911202
Iteration: 9, Func. Count: 106, Neg. LLF: 123.50419492395626
Iteration: 10, Func. Count: 117, Neg. LLF: 123.4806611355942
Iteration: 11, Func. Count: 128, Neg. LLF: 123.47941520674792
Iteration: 12, Func. Count: 139, Neg. LLF: 123.47909028678208
Iteration: 13, Func. Count: 150, Neg. LLF: 123.47907058777625
Iteration: 14, Func. Count: 161, Neg. LLF: 123.47905568696852
Iteration: 15, Func. Count: 172, Neg. LLF: 123.47905449321927
Iteration: 16, Func. Count: 182, Neg. LLF: 123.47905449321826
Optimization terminated successfully (Exit mode 0)
Current function value: 123.47905449321927
Iterations: 16
Function evaluations: 182
Gradient evaluations: 16
Iteration: 1, Func. Count: 13, Neg. LLF: 163.29526119551824
Iteration: 2, Func. Count: 26, Neg. LLF: 140.29966061609278
Iteration: 3, Func. Count: 39, Neg. LLF: 590.1754855884105
Iteration: 4, Func. Count: 52, Neg. LLF: 123.27118360051075
Iteration: 5, Func. Count: 64, Neg. LLF: 127.17077115727434
Iteration: 6, Func. Count: 77, Neg. LLF: 123.6976871825245
Iteration: 7, Func. Count: 90, Neg. LLF: 123.55353045713314
Iteration: 8, Func. Count: 103, Neg. LLF: 122.85391007457335
Iteration: 9, Func. Count: 115, Neg. LLF: 123.23907012809242
Iteration: 10, Func. Count: 128, Neg. LLF: 122.80450350308297
Iteration: 11, Func. Count: 140, Neg. LLF: 122.79456840798059
Iteration: 12, Func. Count: 152, Neg. LLF: 122.78479306422739
Iteration: 13, Func. Count: 164, Neg. LLF: 122.78283406566509
Iteration: 14, Func. Count: 176, Neg. LLF: 122.78277008540307
Iteration: 15, Func. Count: 188, Neg. LLF: 122.78276590483375
Iteration: 16, Func. Count: 199, Neg. LLF: 122.78276590482048
Optimization terminated successfully (Exit mode 0)
Current function value: 122.78276590483375
Iterations: 16
Function evaluations: 199
Gradient evaluations: 16
Iteration: 1, Func. Count: 14, Neg. LLF: 172.12237598861486
Iteration: 2, Func. Count: 28, Neg. LLF: 385.36317098879744
Iteration: 3, Func. Count: 42, Neg. LLF: 731.9366851353856
Iteration: 4, Func. Count: 56, Neg. LLF: 124.55290678671322
Iteration: 5, Func. Count: 70, Neg. LLF: 123.86678099012317
Iteration: 6, Func. Count: 83, Neg. LLF: 124.54802791894659
Iteration: 7, Func. Count: 97, Neg. LLF: 124.06956212987414
Iteration: 8, Func. Count: 111, Neg. LLF: 123.25625278150201
Iteration: 9, Func. Count: 124, Neg. LLF: 123.35977614012089
Iteration: 10, Func. Count: 138, Neg. LLF: 123.18671406872011
Iteration: 11, Func. Count: 151, Neg. LLF: 123.18417120292123
Iteration: 12, Func. Count: 164, Neg. LLF: 123.18373796255467
Iteration: 13, Func. Count: 177, Neg. LLF: 123.18340591117469
Iteration: 14, Func. Count: 190, Neg. LLF: 123.18336040736483
Iteration: 15, Func. Count: 203, Neg. LLF: 123.18312481496079
Iteration: 16, Func. Count: 216, Neg. LLF: 123.17576690714398
Iteration: 17, Func. Count: 229, Neg. LLF: 123.17507294230515
Iteration: 18, Func. Count: 242, Neg. LLF: 123.17496800892874
Iteration: 19, Func. Count: 255, Neg. LLF: 123.1749117811821
Iteration: 20, Func. Count: 268, Neg. LLF: 123.1748803987172
Iteration: 21, Func. Count: 280, Neg. LLF: 123.17488039859994
Optimization terminated successfully (Exit mode 0)
Current function value: 123.1748803987172
Iterations: 21
Function evaluations: 280
Gradient evaluations: 21
Iteration: 1, Func. Count: 11, Neg. LLF: 126.8299021111558
Iteration: 2, Func. Count: 23, Neg. LLF: 128.94844412814473
Iteration: 3, Func. Count: 34, Neg. LLF: 124.8657429857031
Iteration: 4, Func. Count: 45, Neg. LLF: 124.47171796246485
Iteration: 5, Func. Count: 56, Neg. LLF: 125.8033304469373
Iteration: 6, Func. Count: 67, Neg. LLF: 125.12457498044282
Iteration: 7, Func. Count: 78, Neg. LLF: 124.79373430415816
Iteration: 8, Func. Count: 89, Neg. LLF: 123.79836034355807
Iteration: 9, Func. Count: 99, Neg. LLF: 123.79855390430546
Iteration: 10, Func. Count: 110, Neg. LLF: 123.77425785981364
Iteration: 11, Func. Count: 120, Neg. LLF: 123.77272353485418
Iteration: 12, Func. Count: 130, Neg. LLF: 123.77261741551999
Iteration: 13, Func. Count: 140, Neg. LLF: 123.77260154360484
Iteration: 14, Func. Count: 149, Neg. LLF: 123.77260154358662
Optimization terminated successfully (Exit mode 0)
Current function value: 123.77260154360484
Iterations: 14
Function evaluations: 149
Gradient evaluations: 14
Iteration: 1, Func. Count: 12, Neg. LLF: 25184132.98892615
Iteration: 2, Func. Count: 25, Neg. LLF: 156.4144597536431
Iteration: 3, Func. Count: 38, Neg. LLF: 127.26025783259013
Iteration: 4, Func. Count: 50, Neg. LLF: 124.35925215117246
Iteration: 5, Func. Count: 61, Neg. LLF: 124.46309964935116
Iteration: 6, Func. Count: 73, Neg. LLF: 124.31350621303457
Iteration: 7, Func. Count: 84, Neg. LLF: 124.29674752948286
Iteration: 8, Func. Count: 95, Neg. LLF: 124.28535168306756
Iteration: 9, Func. Count: 106, Neg. LLF: 124.28345596518503
Iteration: 10, Func. Count: 117, Neg. LLF: 124.28302583298701
Iteration: 11, Func. Count: 129, Neg. LLF: 124.28183805699214
Iteration: 12, Func. Count: 140, Neg. LLF: 124.28168582130122
Iteration: 13, Func. Count: 151, Neg. LLF: 124.27595785929832
Iteration: 14, Func. Count: 162, Neg. LLF: 124.16821166637972
Iteration: 15, Func. Count: 173, Neg. LLF: 708.4373606317206
Iteration: 16, Func. Count: 189, Neg. LLF: 20460797.144889526
Iteration: 17, Func. Count: 203, Neg. LLF: 134.17547686168126
Iteration: 18, Func. Count: 216, Neg. LLF: 124.16238783967856
Iteration: 19, Func. Count: 228, Neg. LLF: 124.12500158533598
Iteration: 20, Func. Count: 239, Neg. LLF: 124.12497532018719
Iteration: 21, Func. Count: 250, Neg. LLF: 124.12497272973002
Iteration: 22, Func. Count: 260, Neg. LLF: 124.12497272978179
Optimization terminated successfully (Exit mode 0)
Current function value: 124.12497272973002
Iterations: 23
Function evaluations: 260
Gradient evaluations: 22
Iteration: 1, Func. Count: 13, Neg. LLF: 166.7956998018416
Iteration: 2, Func. Count: 26, Neg. LLF: 125.89041697837001
Iteration: 3, Func. Count: 40, Neg. LLF: 123.98106009099038
Iteration: 4, Func. Count: 52, Neg. LLF: 124.2052257209181
Iteration: 5, Func. Count: 65, Neg. LLF: 164.47575611356856
Iteration: 6, Func. Count: 79, Neg. LLF: 123.57428677502263
Iteration: 7, Func. Count: 92, Neg. LLF: 123.4559525670672
Iteration: 8, Func. Count: 104, Neg. LLF: 123.44043450100283
Iteration: 9, Func. Count: 116, Neg. LLF: 123.43717245758808
Iteration: 10, Func. Count: 128, Neg. LLF: 123.43687145048357
Iteration: 11, Func. Count: 140, Neg. LLF: 123.43685254788629
Iteration: 12, Func. Count: 152, Neg. LLF: 123.43685131729653
Iteration: 13, Func. Count: 163, Neg. LLF: 123.43685131731038
Optimization terminated successfully (Exit mode 0)
Current function value: 123.43685131729653
Iterations: 13
Function evaluations: 163
Gradient evaluations: 13
Iteration: 1, Func. Count: 14, Neg. LLF: 174.03479400522866
Iteration: 2, Func. Count: 28, Neg. LLF: 140.1162646618668
Iteration: 3, Func. Count: 42, Neg. LLF: 131.34668135646507
Iteration: 4, Func. Count: 56, Neg. LLF: 123.64068181386124
Iteration: 5, Func. Count: 69, Neg. LLF: 123.63121520855312
Iteration: 6, Func. Count: 83, Neg. LLF: 139.87698334066582
Iteration: 7, Func. Count: 97, Neg. LLF: 123.23027698949892
Iteration: 8, Func. Count: 111, Neg. LLF: 122.88003130156814
Iteration: 9, Func. Count: 124, Neg. LLF: 122.79881869528202
Iteration: 10, Func. Count: 137, Neg. LLF: 122.92506030179842
Iteration: 11, Func. Count: 151, Neg. LLF: 122.7824124016012
Iteration: 12, Func. Count: 164, Neg. LLF: 122.77187267140454
Iteration: 13, Func. Count: 177, Neg. LLF: 122.767291450261
Iteration: 14, Func. Count: 190, Neg. LLF: 122.76294136122505
Iteration: 15, Func. Count: 203, Neg. LLF: 122.76280116902133
Iteration: 16, Func. Count: 216, Neg. LLF: 122.76279332692513
Iteration: 17, Func. Count: 228, Neg. LLF: 122.76279332705418
Optimization terminated successfully (Exit mode 0)
Current function value: 122.76279332692513
Iterations: 17
Function evaluations: 228
Gradient evaluations: 17
Iteration: 1, Func. Count: 15, Neg. LLF: 188.6240253259938
Iteration: 2, Func. Count: 30, Neg. LLF: 376.9561219630078
Iteration: 3, Func. Count: 45, Neg. LLF: 2522.2821988837895
Iteration: 4, Func. Count: 60, Neg. LLF: 134.24624065319748
Iteration: 5, Func. Count: 75, Neg. LLF: 123.54757257919734
Iteration: 6, Func. Count: 89, Neg. LLF: 123.92729263986676
Iteration: 7, Func. Count: 104, Neg. LLF: 123.53771092296068
Iteration: 8, Func. Count: 119, Neg. LLF: 123.36675458241167
Iteration: 9, Func. Count: 134, Neg. LLF: 123.17404922091107
Iteration: 10, Func. Count: 148, Neg. LLF: 123.13444201652229
Iteration: 11, Func. Count: 162, Neg. LLF: 123.02739092703862
Iteration: 12, Func. Count: 176, Neg. LLF: 122.97647678813487
Iteration: 13, Func. Count: 190, Neg. LLF: 122.92703259095238
Iteration: 14, Func. Count: 204, Neg. LLF: 122.89893348038828
Iteration: 15, Func. Count: 218, Neg. LLF: 122.89528911065325
Iteration: 16, Func. Count: 232, Neg. LLF: 122.89428170860808
Iteration: 17, Func. Count: 246, Neg. LLF: 122.89413840304978
Iteration: 18, Func. Count: 260, Neg. LLF: 122.89412576157643
Iteration: 19, Func. Count: 273, Neg. LLF: 122.89412576153518
Optimization terminated successfully (Exit mode 0)
Current function value: 122.89412576157643
Iterations: 19
Function evaluations: 273
Gradient evaluations: 19
Iteration: 1, Func. Count: 12, Neg. LLF: 126.48618501691298
Iteration: 2, Func. Count: 24, Neg. LLF: 127.96968487875384
Iteration: 3, Func. Count: 36, Neg. LLF: 124.84088104084213
Iteration: 4, Func. Count: 48, Neg. LLF: 124.41743162966745
Iteration: 5, Func. Count: 60, Neg. LLF: 130.5914160381817
Iteration: 6, Func. Count: 72, Neg. LLF: 125.7059870506046
Iteration: 7, Func. Count: 84, Neg. LLF: 124.77496643955975
Iteration: 8, Func. Count: 96, Neg. LLF: 123.89801307685435
Iteration: 9, Func. Count: 108, Neg. LLF: 123.77617548520375
Iteration: 10, Func. Count: 119, Neg. LLF: 123.7615708945837
Iteration: 11, Func. Count: 130, Neg. LLF: 123.76017832171765
Iteration: 12, Func. Count: 141, Neg. LLF: 123.75939737103438
Iteration: 13, Func. Count: 152, Neg. LLF: 123.75934436131132
Iteration: 14, Func. Count: 163, Neg. LLF: 123.7593397711643
Iteration: 15, Func. Count: 173, Neg. LLF: 123.75933977118098
Optimization terminated successfully (Exit mode 0)
Current function value: 123.7593397711643
Iterations: 15
Function evaluations: 173
Gradient evaluations: 15
Iteration: 1, Func. Count: 13, Neg. LLF: 25698663.150553342
Iteration: 2, Func. Count: 27, Neg. LLF: 181.70355371199298
Iteration: 3, Func. Count: 40, Neg. LLF: 127.20297362997088
Iteration: 4, Func. Count: 53, Neg. LLF: 124.38754070785488
Iteration: 5, Func. Count: 65, Neg. LLF: 125.30683971306522
Iteration: 6, Func. Count: 78, Neg. LLF: 124.59626345269369
Iteration: 7, Func. Count: 91, Neg. LLF: 124.29940172234396
Iteration: 8, Func. Count: 103, Neg. LLF: 124.29149354088652
Iteration: 9, Func. Count: 115, Neg. LLF: 124.28540344737574
Iteration: 10, Func. Count: 127, Neg. LLF: 124.28247606023477
Iteration: 11, Func. Count: 139, Neg. LLF: 124.28203116573042
Iteration: 12, Func. Count: 151, Neg. LLF: 124.28177445943206
Iteration: 13, Func. Count: 163, Neg. LLF: 124.27824080061673
Iteration: 14, Func. Count: 175, Neg. LLF: 124.17736953087358
Iteration: 15, Func. Count: 187, Neg. LLF: 124.13524182598614
Iteration: 16, Func. Count: 199, Neg. LLF: 124.12522400837696
Iteration: 17, Func. Count: 211, Neg. LLF: 128.46785047004983
Iteration: 18, Func. Count: 226, Neg. LLF: 125.22682358242554
Iteration: 19, Func. Count: 240, Neg. LLF: 124.12497272716378
Iteration: 20, Func. Count: 251, Neg. LLF: 124.12497272717395
Optimization terminated successfully (Exit mode 0)
Current function value: 124.12497272716378
Iterations: 21
Function evaluations: 251
Gradient evaluations: 20
Iteration: 1, Func. Count: 14, Neg. LLF: 165.44848323807432
Iteration: 2, Func. Count: 28, Neg. LLF: 192.15473690141457
Iteration: 3, Func. Count: 42, Neg. LLF: 126.62022484587267
Iteration: 4, Func. Count: 56, Neg. LLF: 124.4230281918363
Iteration: 5, Func. Count: 70, Neg. LLF: 124.16874301437879
Iteration: 6, Func. Count: 84, Neg. LLF: 123.49907907524658
Iteration: 7, Func. Count: 97, Neg. LLF: 135.71426749585794
Iteration: 8, Func. Count: 112, Neg. LLF: 123.45452872987984
Iteration: 9, Func. Count: 125, Neg. LLF: 123.44480769103781
Iteration: 10, Func. Count: 138, Neg. LLF: 123.43711926953567
Iteration: 11, Func. Count: 151, Neg. LLF: 123.43686615742442
Iteration: 12, Func. Count: 164, Neg. LLF: 123.43685230504603
Iteration: 13, Func. Count: 177, Neg. LLF: 123.43685130125553
Iteration: 14, Func. Count: 189, Neg. LLF: 123.43685130123619
Optimization terminated successfully (Exit mode 0)
Current function value: 123.43685130125553
Iterations: 14
Function evaluations: 189
Gradient evaluations: 14
Iteration: 1, Func. Count: 15, Neg. LLF: 171.23644023551077
Iteration: 2, Func. Count: 30, Neg. LLF: 137.5145791190011
Iteration: 3, Func. Count: 45, Neg. LLF: 124.31886830393336
Iteration: 4, Func. Count: 60, Neg. LLF: 133.18117430030026
Iteration: 5, Func. Count: 75, Neg. LLF: 1380.072852603922
Iteration: 6, Func. Count: 90, Neg. LLF: 128.24287303381058
Iteration: 7, Func. Count: 105, Neg. LLF: 123.40254122141796
Iteration: 8, Func. Count: 119, Neg. LLF: 123.22847876438152
Iteration: 9, Func. Count: 134, Neg. LLF: 123.4351326821221
Iteration: 10, Func. Count: 149, Neg. LLF: 122.96902332913436
Iteration: 11, Func. Count: 163, Neg. LLF: 122.88199061561205
Iteration: 12, Func. Count: 177, Neg. LLF: 122.86514013542235
Iteration: 13, Func. Count: 191, Neg. LLF: 122.80774475143882
Iteration: 14, Func. Count: 205, Neg. LLF: 122.79275569388913
Iteration: 15, Func. Count: 219, Neg. LLF: 122.76721357211339
Iteration: 16, Func. Count: 233, Neg. LLF: 122.76418887288003
Iteration: 17, Func. Count: 247, Neg. LLF: 122.76294534782501
Iteration: 18, Func. Count: 261, Neg. LLF: 122.76279715584688
Iteration: 19, Func. Count: 275, Neg. LLF: 122.7627967390755
Iteration: 20, Func. Count: 290, Neg. LLF: 122.76279293321323
Optimization terminated successfully (Exit mode 0)
Current function value: 122.76279293321323
Iterations: 20
Function evaluations: 290
Gradient evaluations: 20
Iteration: 1, Func. Count: 16, Neg. LLF: 176.04818222040748
Iteration: 2, Func. Count: 32, Neg. LLF: 148.4963316103595
Iteration: 3, Func. Count: 48, Neg. LLF: 127.23431401193069
Iteration: 4, Func. Count: 64, Neg. LLF: 152.02216476257271
Iteration: 5, Func. Count: 80, Neg. LLF: 187.4486650290602
Iteration: 6, Func. Count: 96, Neg. LLF: 159.36794740569505
Iteration: 7, Func. Count: 112, Neg. LLF: 123.3604369043172
Iteration: 8, Func. Count: 127, Neg. LLF: 123.34712576707967
Iteration: 9, Func. Count: 143, Neg. LLF: 123.28070685246303
Iteration: 10, Func. Count: 159, Neg. LLF: 123.21076555539109
Iteration: 11, Func. Count: 174, Neg. LLF: 123.19083592806957
Iteration: 12, Func. Count: 189, Neg. LLF: 123.23685178744996
Iteration: 13, Func. Count: 205, Neg. LLF: 123.1946398209784
Iteration: 14, Func. Count: 221, Neg. LLF: 123.11912943291253
Iteration: 15, Func. Count: 236, Neg. LLF: 123.332740462161
Iteration: 16, Func. Count: 252, Neg. LLF: 122.94949398561661
Iteration: 17, Func. Count: 267, Neg. LLF: 122.90333091946609
Iteration: 18, Func. Count: 282, Neg. LLF: 122.8948391209033
Iteration: 19, Func. Count: 297, Neg. LLF: 122.89425151775575
Iteration: 20, Func. Count: 312, Neg. LLF: 122.89414498201526
Iteration: 21, Func. Count: 327, Neg. LLF: 122.89412717703482
Iteration: 22, Func. Count: 342, Neg. LLF: 122.89412567662389
Iteration: 23, Func. Count: 356, Neg. LLF: 122.89412567658455
Optimization terminated successfully (Exit mode 0)
Current function value: 122.89412567662389
Iterations: 23
Function evaluations: 356
Gradient evaluations: 23
Iteration: 1, Func. Count: 5, Neg. LLF: 130.81313100973827
Iteration: 2, Func. Count: 10, Neg. LLF: 154.73153580293805
Iteration: 3, Func. Count: 15, Neg. LLF: 124.70654955377958
Iteration: 4, Func. Count: 19, Neg. LLF: 124.49228331440192
Iteration: 5, Func. Count: 23, Neg. LLF: 124.46482112502531
Iteration: 6, Func. Count: 27, Neg. LLF: 124.36864859644355
Iteration: 7, Func. Count: 31, Neg. LLF: 124.35826103069164
Iteration: 8, Func. Count: 35, Neg. LLF: 124.35711829468549
Iteration: 9, Func. Count: 39, Neg. LLF: 124.35711152496285
Iteration: 10, Func. Count: 42, Neg. LLF: 124.35711152497372
Optimization terminated successfully (Exit mode 0)
Current function value: 124.35711152496285
Iterations: 10
Function evaluations: 42
Gradient evaluations: 10
Iteration: 1, Func. Count: 5, Neg. LLF: 125.6481013407933
Iteration: 2, Func. Count: 10, Neg. LLF: 132.53929728918985
Iteration: 3, Func. Count: 15, Neg. LLF: 120.4351907049989
Iteration: 4, Func. Count: 19, Neg. LLF: 120.73438712698136
Iteration: 5, Func. Count: 24, Neg. LLF: 120.28773579266071
Iteration: 6, Func. Count: 28, Neg. LLF: 120.27010958641745
Iteration: 7, Func. Count: 32, Neg. LLF: 120.26411245512163
Iteration: 8, Func. Count: 36, Neg. LLF: 120.26230068004374
Iteration: 9, Func. Count: 40, Neg. LLF: 120.2621741165796
Iteration: 10, Func. Count: 44, Neg. LLF: 120.26217060416808
Iteration: 11, Func. Count: 47, Neg. LLF: 120.26217060414398
Optimization terminated successfully (Exit mode 0)
Current function value: 120.26217060416808
Iterations: 11
Function evaluations: 47
Gradient evaluations: 11
Iteration: 1, Func. Count: 6, Neg. LLF: 24864717.291506357
Iteration: 2, Func. Count: 13, Neg. LLF: 136.7355402393865
Iteration: 3, Func. Count: 20, Neg. LLF: 120.23456408499209
Iteration: 4, Func. Count: 26, Neg. LLF: 120.10072560825498
Iteration: 5, Func. Count: 31, Neg. LLF: 120.10019410586615
Iteration: 6, Func. Count: 36, Neg. LLF: 120.09833214134174
Iteration: 7, Func. Count: 41, Neg. LLF: 120.09501276305063
Iteration: 8, Func. Count: 46, Neg. LLF: 120.0812751683165
Iteration: 9, Func. Count: 51, Neg. LLF: 120.0350938060812
Iteration: 10, Func. Count: 56, Neg. LLF: 120.02333014433607
Iteration: 11, Func. Count: 61, Neg. LLF: 120.00468297094346
Iteration: 12, Func. Count: 66, Neg. LLF: 119.9935763388981
Iteration: 13, Func. Count: 71, Neg. LLF: 119.99138880392039
Iteration: 14, Func. Count: 76, Neg. LLF: 119.99110607610447
Iteration: 15, Func. Count: 81, Neg. LLF: 119.99110534317043
Optimization terminated successfully (Exit mode 0)
Current function value: 119.99110534317043
Iterations: 15
Function evaluations: 81
Gradient evaluations: 15
Iteration: 1, Func. Count: 7, Neg. LLF: 157.1063310171207
Iteration: 2, Func. Count: 15, Neg. LLF: 120.54170619362819
Iteration: 3, Func. Count: 22, Neg. LLF: 120.25805605586568
Iteration: 4, Func. Count: 29, Neg. LLF: 119.89054048575946
Iteration: 5, Func. Count: 35, Neg. LLF: 120.47724239118503
Iteration: 6, Func. Count: 42, Neg. LLF: 119.86408512348329
Iteration: 7, Func. Count: 48, Neg. LLF: 119.86406710319116
Iteration: 8, Func. Count: 55, Neg. LLF: 119.86249665043036
Iteration: 9, Func. Count: 61, Neg. LLF: 119.8569825961179
Iteration: 10, Func. Count: 67, Neg. LLF: 119.8480401797305
Iteration: 11, Func. Count: 73, Neg. LLF: 119.83342868123884
Iteration: 12, Func. Count: 79, Neg. LLF: 119.82422138278751
Iteration: 13, Func. Count: 85, Neg. LLF: 119.81780827010672
Iteration: 14, Func. Count: 91, Neg. LLF: 119.81744424467564
Iteration: 15, Func. Count: 97, Neg. LLF: 119.81744267531494
Iteration: 16, Func. Count: 102, Neg. LLF: 119.81744267542823
Optimization terminated successfully (Exit mode 0)
Current function value: 119.81744267531494
Iterations: 16
Function evaluations: 102
Gradient evaluations: 16
Iteration: 1, Func. Count: 8, Neg. LLF: 160.38177212338863
Iteration: 2, Func. Count: 17, Neg. LLF: 121.81177873210076
Iteration: 3, Func. Count: 25, Neg. LLF: 119.97135172523154
Iteration: 4, Func. Count: 32, Neg. LLF: 120.29592378124507
Iteration: 5, Func. Count: 40, Neg. LLF: 119.88529081921523
Iteration: 6, Func. Count: 48, Neg. LLF: 119.93263528120764
Iteration: 7, Func. Count: 56, Neg. LLF: 119.85092562896982
Iteration: 8, Func. Count: 63, Neg. LLF: 119.83105205104448
Iteration: 9, Func. Count: 70, Neg. LLF: 119.80671238878213
Iteration: 10, Func. Count: 77, Neg. LLF: 119.79005608096949
Iteration: 11, Func. Count: 84, Neg. LLF: 119.84325497635135
Iteration: 12, Func. Count: 92, Neg. LLF: 119.76576707110368
Iteration: 13, Func. Count: 99, Neg. LLF: 119.76419980816478
Iteration: 14, Func. Count: 106, Neg. LLF: 119.76415992454052
Iteration: 15, Func. Count: 113, Neg. LLF: 119.76415883838976
Iteration: 16, Func. Count: 119, Neg. LLF: 119.76415883831729
Optimization terminated successfully (Exit mode 0)
Current function value: 119.76415883838976
Iterations: 16
Function evaluations: 119
Gradient evaluations: 16
Iteration: 1, Func. Count: 9, Neg. LLF: 163.89187517809938
Iteration: 2, Func. Count: 19, Neg. LLF: 121.06940300135052
Iteration: 3, Func. Count: 28, Neg. LLF: 120.15554768456776
Iteration: 4, Func. Count: 37, Neg. LLF: 119.93601367293455
Iteration: 5, Func. Count: 45, Neg. LLF: 123.50400762507977
Iteration: 6, Func. Count: 54, Neg. LLF: 119.87504178217914
Iteration: 7, Func. Count: 62, Neg. LLF: 119.83616831781521
Iteration: 8, Func. Count: 70, Neg. LLF: 119.83071504303469
Iteration: 9, Func. Count: 78, Neg. LLF: 119.80880322664427
Iteration: 10, Func. Count: 86, Neg. LLF: 119.77408614999685
Iteration: 11, Func. Count: 94, Neg. LLF: 119.76862150484466
Iteration: 12, Func. Count: 102, Neg. LLF: 119.83682649412398
Iteration: 13, Func. Count: 111, Neg. LLF: 119.76621085003201
Iteration: 14, Func. Count: 119, Neg. LLF: 119.7641640220123
Iteration: 15, Func. Count: 127, Neg. LLF: 119.76415925940172
Iteration: 16, Func. Count: 134, Neg. LLF: 119.76415926431415
Optimization terminated successfully (Exit mode 0)
Current function value: 119.76415925940172
Iterations: 16
Function evaluations: 134
Gradient evaluations: 16
Iteration: 1, Func. Count: 6, Neg. LLF: 140.3208606611179
Iteration: 2, Func. Count: 13, Neg. LLF: 137.8887875303521
Iteration: 3, Func. Count: 20, Neg. LLF: 120.32837291940146
Iteration: 4, Func. Count: 25, Neg. LLF: 120.35849690537997
Iteration: 5, Func. Count: 31, Neg. LLF: 120.26242389062446
Iteration: 6, Func. Count: 36, Neg. LLF: 120.26217581620841
Iteration: 7, Func. Count: 41, Neg. LLF: 120.26217216436379
Iteration: 8, Func. Count: 46, Neg. LLF: 120.26217071174491
Iteration: 9, Func. Count: 50, Neg. LLF: 120.26217073835264
Optimization terminated successfully (Exit mode 0)
Current function value: 120.26217071174491
Iterations: 9
Function evaluations: 50
Gradient evaluations: 9
Iteration: 1, Func. Count: 7, Neg. LLF: 120.86907664889698
Iteration: 2, Func. Count: 15, Neg. LLF: 140.85833834644527
Iteration: 3, Func. Count: 23, Neg. LLF: 120.20556710890558
Iteration: 4, Func. Count: 30, Neg. LLF: 120.13822393054011
Iteration: 5, Func. Count: 36, Neg. LLF: 120.2830053399061
Iteration: 6, Func. Count: 43, Neg. LLF: 120.11719197136864
Iteration: 7, Func. Count: 49, Neg. LLF: 120.1044926196701
Iteration: 8, Func. Count: 55, Neg. LLF: 120.10295669194794
Iteration: 9, Func. Count: 61, Neg. LLF: 120.10276750563587
Iteration: 10, Func. Count: 67, Neg. LLF: 120.10262886078253
Iteration: 11, Func. Count: 73, Neg. LLF: 120.10255906347878
Iteration: 12, Func. Count: 79, Neg. LLF: 120.10250228108445
Iteration: 13, Func. Count: 85, Neg. LLF: 120.10103580537388
Iteration: 14, Func. Count: 91, Neg. LLF: 120.09940248793762
Iteration: 15, Func. Count: 97, Neg. LLF: 120.03775823019893
Iteration: 16, Func. Count: 103, Neg. LLF: 120.50843160007742
Iteration: 17, Func. Count: 110, Neg. LLF: 120.0001031060173
Iteration: 18, Func. Count: 116, Neg. LLF: 119.99428653087908
Iteration: 19, Func. Count: 122, Neg. LLF: 119.99149439078991
Iteration: 20, Func. Count: 128, Neg. LLF: 119.99110781878151
Iteration: 21, Func. Count: 134, Neg. LLF: 119.99110955501921
Iteration: 22, Func. Count: 141, Neg. LLF: 122.3483087440823
Optimization terminated successfully (Exit mode 0)
Current function value: 119.9911055416184
Iterations: 23
Function evaluations: 146
Gradient evaluations: 22
Iteration: 1, Func. Count: 8, Neg. LLF: 145.17190743527874
Iteration: 2, Func. Count: 17, Neg. LLF: 126.04311697254504
Iteration: 3, Func. Count: 26, Neg. LLF: 120.65282824847812
Iteration: 4, Func. Count: 34, Neg. LLF: 119.91477875989052
Iteration: 5, Func. Count: 41, Neg. LLF: 119.8771738474525
Iteration: 6, Func. Count: 48, Neg. LLF: 121.05974582063308
Iteration: 7, Func. Count: 57, Neg. LLF: 119.86790088004514
Iteration: 8, Func. Count: 64, Neg. LLF: 119.86678038615594
Iteration: 9, Func. Count: 71, Neg. LLF: 119.8648942534693
Iteration: 10, Func. Count: 78, Neg. LLF: 119.85875897590081
Iteration: 11, Func. Count: 85, Neg. LLF: 119.82056439380278
Iteration: 12, Func. Count: 92, Neg. LLF: 119.88951880257227
Iteration: 13, Func. Count: 100, Neg. LLF: 119.81855579045808
Iteration: 14, Func. Count: 107, Neg. LLF: 119.81786633123437
Iteration: 15, Func. Count: 114, Neg. LLF: 119.81752733026586
Iteration: 16, Func. Count: 121, Neg. LLF: 119.8174441039635
Iteration: 17, Func. Count: 128, Neg. LLF: 119.8174426588639
Iteration: 18, Func. Count: 134, Neg. LLF: 119.8174426589232
Optimization terminated successfully (Exit mode 0)
Current function value: 119.8174426588639
Iterations: 18
Function evaluations: 134
Gradient evaluations: 18
Iteration: 1, Func. Count: 9, Neg. LLF: 146.91206105714787
Iteration: 2, Func. Count: 19, Neg. LLF: 163.44382843748545
Iteration: 3, Func. Count: 29, Neg. LLF: 120.1453387090697
Iteration: 4, Func. Count: 37, Neg. LLF: 120.00567936500082
Iteration: 5, Func. Count: 45, Neg. LLF: 119.88252400856135
Iteration: 6, Func. Count: 53, Neg. LLF: 120.71040318259656
Iteration: 7, Func. Count: 62, Neg. LLF: 119.85043839937022
Iteration: 8, Func. Count: 70, Neg. LLF: 119.84146611385731
Iteration: 9, Func. Count: 78, Neg. LLF: 119.83571775313217
Iteration: 10, Func. Count: 86, Neg. LLF: 119.81625094818689
Iteration: 11, Func. Count: 94, Neg. LLF: 119.78935913751054
Iteration: 12, Func. Count: 102, Neg. LLF: 119.77186387535563
Iteration: 13, Func. Count: 110, Neg. LLF: 119.76681114546282
Iteration: 14, Func. Count: 118, Neg. LLF: 119.7652838751979
Iteration: 15, Func. Count: 126, Neg. LLF: 119.76420226790707
Iteration: 16, Func. Count: 134, Neg. LLF: 119.76416183481399
Iteration: 17, Func. Count: 142, Neg. LLF: 119.76415909939206
Iteration: 18, Func. Count: 149, Neg. LLF: 119.76415909950005
Optimization terminated successfully (Exit mode 0)
Current function value: 119.76415909939206
Iterations: 18
Function evaluations: 149
Gradient evaluations: 18
Iteration: 1, Func. Count: 10, Neg. LLF: 24510111.494900778
Iteration: 2, Func. Count: 21, Neg. LLF: 12651209.110869998
Iteration: 3, Func. Count: 32, Neg. LLF: 120.0026713822107
Iteration: 4, Func. Count: 41, Neg. LLF: 120.71578750197641
Iteration: 5, Func. Count: 51, Neg. LLF: 120.40541318989315
Iteration: 6, Func. Count: 61, Neg. LLF: 119.81377524139528
Iteration: 7, Func. Count: 70, Neg. LLF: 119.81679106825571
Iteration: 8, Func. Count: 80, Neg. LLF: 119.7659001495689
Iteration: 9, Func. Count: 89, Neg. LLF: 119.76426067766873
Iteration: 10, Func. Count: 98, Neg. LLF: 119.76416191320673
Iteration: 11, Func. Count: 107, Neg. LLF: 119.76415895003548
Iteration: 12, Func. Count: 115, Neg. LLF: 119.7641589545461
Optimization terminated successfully (Exit mode 0)
Current function value: 119.76415895003548
Iterations: 12
Function evaluations: 115
Gradient evaluations: 12
Iteration: 1, Func. Count: 7, Neg. LLF: 132.86390555130302
Iteration: 2, Func. Count: 15, Neg. LLF: 133.35913101024354
Iteration: 3, Func. Count: 23, Neg. LLF: 119.87855553315272
Iteration: 4, Func. Count: 29, Neg. LLF: 120.30930305973395
Iteration: 5, Func. Count: 36, Neg. LLF: 119.77263878519905
Iteration: 6, Func. Count: 42, Neg. LLF: 119.78040343578324
Iteration: 7, Func. Count: 49, Neg. LLF: 119.74973470578088
Iteration: 8, Func. Count: 55, Neg. LLF: 119.74750598697929
Iteration: 9, Func. Count: 61, Neg. LLF: 119.74663802225643
Iteration: 10, Func. Count: 67, Neg. LLF: 119.74663390233114
Iteration: 11, Func. Count: 72, Neg. LLF: 119.7466339023594
Optimization terminated successfully (Exit mode 0)
Current function value: 119.74663390233114
Iterations: 11
Function evaluations: 72
Gradient evaluations: 11
Iteration: 1, Func. Count: 8, Neg. LLF: 122.6470925273712
Iteration: 2, Func. Count: 17, Neg. LLF: 148.5888519408053
Iteration: 3, Func. Count: 26, Neg. LLF: 120.30479381207094
Iteration: 4, Func. Count: 34, Neg. LLF: 119.94903041052144
Iteration: 5, Func. Count: 41, Neg. LLF: 119.9147380269106
Iteration: 6, Func. Count: 48, Neg. LLF: 119.94605601310299
Iteration: 7, Func. Count: 56, Neg. LLF: 119.90457718763442
Iteration: 8, Func. Count: 63, Neg. LLF: 119.90455083950556
Iteration: 9, Func. Count: 70, Neg. LLF: 119.90454940491978
Iteration: 10, Func. Count: 77, Neg. LLF: 119.90454366195569
Iteration: 11, Func. Count: 84, Neg. LLF: 119.90453489863184
Iteration: 12, Func. Count: 91, Neg. LLF: 119.90452440148985
Iteration: 13, Func. Count: 98, Neg. LLF: 119.90451901117805
Iteration: 14, Func. Count: 105, Neg. LLF: 119.90451829547334
Optimization terminated successfully (Exit mode 0)
Current function value: 119.90451829547334
Iterations: 14
Function evaluations: 105
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 137.0053246283425
Iteration: 2, Func. Count: 18, Neg. LLF: 124.75343271781054
Iteration: 3, Func. Count: 27, Neg. LLF: 121.28931382576329
Iteration: 4, Func. Count: 36, Neg. LLF: 119.83001796688748
Iteration: 5, Func. Count: 45, Neg. LLF: 120.70594308251628
Iteration: 6, Func. Count: 54, Neg. LLF: 119.73878238690811
Iteration: 7, Func. Count: 63, Neg. LLF: 119.62080175607825
Iteration: 8, Func. Count: 71, Neg. LLF: 119.6167809181445
Iteration: 9, Func. Count: 79, Neg. LLF: 119.61384993413725
Iteration: 10, Func. Count: 87, Neg. LLF: 119.6101016803575
Iteration: 11, Func. Count: 95, Neg. LLF: 119.60376452300696
Iteration: 12, Func. Count: 103, Neg. LLF: 119.59910506686113
Iteration: 13, Func. Count: 111, Neg. LLF: 119.59841910357873
Iteration: 14, Func. Count: 119, Neg. LLF: 119.59835847568792
Iteration: 15, Func. Count: 127, Neg. LLF: 119.59835727354448
Iteration: 16, Func. Count: 134, Neg. LLF: 119.59835727354181
Optimization terminated successfully (Exit mode 0)
Current function value: 119.59835727354448
Iterations: 16
Function evaluations: 134
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 124.17453122281428
Iteration: 2, Func. Count: 21, Neg. LLF: 126.36782738465679
Iteration: 3, Func. Count: 31, Neg. LLF: 122.4295002146031
Iteration: 4, Func. Count: 41, Neg. LLF: 119.65020131292664
Iteration: 5, Func. Count: 50, Neg. LLF: 120.03918264318145
Iteration: 6, Func. Count: 60, Neg. LLF: 119.89747427009132
Iteration: 7, Func. Count: 70, Neg. LLF: 119.70568979100833
Iteration: 8, Func. Count: 80, Neg. LLF: 119.58137129371545
Iteration: 9, Func. Count: 89, Neg. LLF: 119.57796474740005
Iteration: 10, Func. Count: 98, Neg. LLF: 119.56517318933003
Iteration: 11, Func. Count: 107, Neg. LLF: 119.55847868931858
Iteration: 12, Func. Count: 116, Neg. LLF: 119.55539601900006
Iteration: 13, Func. Count: 125, Neg. LLF: 119.55516775121569
Iteration: 14, Func. Count: 134, Neg. LLF: 119.55516373629783
Iteration: 15, Func. Count: 143, Neg. LLF: 119.55516165206367
Iteration: 16, Func. Count: 151, Neg. LLF: 119.55516165208655
Optimization terminated successfully (Exit mode 0)
Current function value: 119.55516165206367
Iterations: 16
Function evaluations: 151
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 124.25041072659621
Iteration: 2, Func. Count: 23, Neg. LLF: 127.33505428571486
Iteration: 3, Func. Count: 34, Neg. LLF: 123.70075401904838
Iteration: 4, Func. Count: 45, Neg. LLF: 119.72159937252259
Iteration: 5, Func. Count: 55, Neg. LLF: 121.07656723539966
Iteration: 6, Func. Count: 66, Neg. LLF: 120.29883455259537
Iteration: 7, Func. Count: 78, Neg. LLF: 120.10363386789206
Iteration: 8, Func. Count: 89, Neg. LLF: 119.5512872708891
Iteration: 9, Func. Count: 99, Neg. LLF: 119.5497702582357
Iteration: 10, Func. Count: 109, Neg. LLF: 119.54962620533651
Iteration: 11, Func. Count: 119, Neg. LLF: 119.5495400579509
Iteration: 12, Func. Count: 129, Neg. LLF: 119.5494252763504
Iteration: 13, Func. Count: 139, Neg. LLF: 119.54912063525599
Iteration: 14, Func. Count: 149, Neg. LLF: 119.54861385419429
Iteration: 15, Func. Count: 159, Neg. LLF: 119.54805257714571
Iteration: 16, Func. Count: 169, Neg. LLF: 119.54773710814554
Iteration: 17, Func. Count: 179, Neg. LLF: 119.54766942230941
Iteration: 18, Func. Count: 189, Neg. LLF: 119.5476670967429
Iteration: 19, Func. Count: 198, Neg. LLF: 119.54766709678641
Optimization terminated successfully (Exit mode 0)
Current function value: 119.5476670967429
Iterations: 19
Function evaluations: 198
Gradient evaluations: 19
Iteration: 1, Func. Count: 8, Neg. LLF: 128.40315220626889
Iteration: 2, Func. Count: 17, Neg. LLF: 131.93064267025824
Iteration: 3, Func. Count: 26, Neg. LLF: 119.90114641647621
Iteration: 4, Func. Count: 33, Neg. LLF: 120.47713790915697
Iteration: 5, Func. Count: 41, Neg. LLF: 119.77727282773579
Iteration: 6, Func. Count: 48, Neg. LLF: 119.7702921871156
Iteration: 7, Func. Count: 55, Neg. LLF: 119.7790326106934
Iteration: 8, Func. Count: 63, Neg. LLF: 119.7478902432788
Iteration: 9, Func. Count: 70, Neg. LLF: 119.74667572918771
Iteration: 10, Func. Count: 77, Neg. LLF: 119.7466357256719
Iteration: 11, Func. Count: 84, Neg. LLF: 119.74663363351827
Iteration: 12, Func. Count: 90, Neg. LLF: 119.74663366454725
Optimization terminated successfully (Exit mode 0)
Current function value: 119.74663363351827
Iterations: 12
Function evaluations: 90
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 123.37872017646656
Iteration: 2, Func. Count: 19, Neg. LLF: 151.09827933634224
Iteration: 3, Func. Count: 29, Neg. LLF: 122.32441019819848
Iteration: 4, Func. Count: 38, Neg. LLF: 119.93167135584814
Iteration: 5, Func. Count: 46, Neg. LLF: 119.99544054063813
Iteration: 6, Func. Count: 55, Neg. LLF: 119.9185975335346
Iteration: 7, Func. Count: 64, Neg. LLF: 119.90458859291448
Iteration: 8, Func. Count: 72, Neg. LLF: 119.90458421777383
Iteration: 9, Func. Count: 80, Neg. LLF: 119.90457599923892
Iteration: 10, Func. Count: 88, Neg. LLF: 119.9045599059255
Iteration: 11, Func. Count: 96, Neg. LLF: 119.90453840196498
Iteration: 12, Func. Count: 104, Neg. LLF: 119.90452208458952
Iteration: 13, Func. Count: 112, Neg. LLF: 119.90451843217737
Iteration: 14, Func. Count: 119, Neg. LLF: 119.90451843214737
Optimization terminated successfully (Exit mode 0)
Current function value: 119.90451843217737
Iterations: 14
Function evaluations: 119
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 139.7216898403076
Iteration: 2, Func. Count: 20, Neg. LLF: 148.8596122875029
Iteration: 3, Func. Count: 31, Neg. LLF: 123.30693986256111
Iteration: 4, Func. Count: 41, Neg. LLF: 119.76504373083706
Iteration: 5, Func. Count: 50, Neg. LLF: 119.78507123293647
Iteration: 6, Func. Count: 60, Neg. LLF: 119.69745335294755
Iteration: 7, Func. Count: 70, Neg. LLF: 119.62352025700567
Iteration: 8, Func. Count: 79, Neg. LLF: 119.61695655638277
Iteration: 9, Func. Count: 88, Neg. LLF: 119.61483712000219
Iteration: 10, Func. Count: 97, Neg. LLF: 119.61169434952417
Iteration: 11, Func. Count: 106, Neg. LLF: 119.6068366339832
Iteration: 12, Func. Count: 115, Neg. LLF: 119.60050625462291
Iteration: 13, Func. Count: 124, Neg. LLF: 119.59895433387018
Iteration: 14, Func. Count: 133, Neg. LLF: 119.59840003787241
Iteration: 15, Func. Count: 142, Neg. LLF: 119.59836069777154
Iteration: 16, Func. Count: 151, Neg. LLF: 119.59835745927883
Iteration: 17, Func. Count: 159, Neg. LLF: 119.59835745928156
Optimization terminated successfully (Exit mode 0)
Current function value: 119.59835745927883
Iterations: 17
Function evaluations: 159
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 125.1471303575128
Iteration: 2, Func. Count: 23, Neg. LLF: 127.88243834794612
Iteration: 3, Func. Count: 34, Neg. LLF: 122.69119812319794
Iteration: 4, Func. Count: 45, Neg. LLF: 119.6544637134801
Iteration: 5, Func. Count: 55, Neg. LLF: 120.12516872688605
Iteration: 6, Func. Count: 66, Neg. LLF: 119.95988449581844
Iteration: 7, Func. Count: 77, Neg. LLF: 119.60837710791257
Iteration: 8, Func. Count: 88, Neg. LLF: 119.58213980502015
Iteration: 9, Func. Count: 98, Neg. LLF: 119.57887829608855
Iteration: 10, Func. Count: 108, Neg. LLF: 119.56238094441557
Iteration: 11, Func. Count: 118, Neg. LLF: 119.55691011645833
Iteration: 12, Func. Count: 128, Neg. LLF: 119.55525368691303
Iteration: 13, Func. Count: 138, Neg. LLF: 119.55517026321984
Iteration: 14, Func. Count: 148, Neg. LLF: 119.5551623686806
Iteration: 15, Func. Count: 158, Neg. LLF: 119.55516158703985
Optimization terminated successfully (Exit mode 0)
Current function value: 119.55516158703985
Iterations: 15
Function evaluations: 158
Gradient evaluations: 15
Iteration: 1, Func. Count: 12, Neg. LLF: 125.15703538562988
Iteration: 2, Func. Count: 25, Neg. LLF: 128.614354571002
Iteration: 3, Func. Count: 37, Neg. LLF: 125.24785618187624
Iteration: 4, Func. Count: 49, Neg. LLF: 119.700384420186
Iteration: 5, Func. Count: 60, Neg. LLF: 122.13644733543133
Iteration: 6, Func. Count: 73, Neg. LLF: 120.37761283981544
Iteration: 7, Func. Count: 86, Neg. LLF: 119.73862287897417
Iteration: 8, Func. Count: 98, Neg. LLF: 119.55017977328667
Iteration: 9, Func. Count: 109, Neg. LLF: 119.54961251607332
Iteration: 10, Func. Count: 120, Neg. LLF: 119.54955606488144
Iteration: 11, Func. Count: 131, Neg. LLF: 119.54936545882748
Iteration: 12, Func. Count: 142, Neg. LLF: 119.54915453621976
Iteration: 13, Func. Count: 153, Neg. LLF: 119.54860738965837
Iteration: 14, Func. Count: 164, Neg. LLF: 119.548044192492
Iteration: 15, Func. Count: 175, Neg. LLF: 119.54774263823639
Iteration: 16, Func. Count: 186, Neg. LLF: 119.5476715463447
Iteration: 17, Func. Count: 197, Neg. LLF: 119.54766714042316
Iteration: 18, Func. Count: 207, Neg. LLF: 119.54766714042609
Optimization terminated successfully (Exit mode 0)
Current function value: 119.54766714042316
Iterations: 18
Function evaluations: 207
Gradient evaluations: 18
Iteration: 1, Func. Count: 5, Neg. LLF: 128.3360669535671
Iteration: 2, Func. Count: 10, Neg. LLF: 125.23418954921455
Iteration: 3, Func. Count: 15, Neg. LLF: 120.34981927501198
Iteration: 4, Func. Count: 19, Neg. LLF: 120.37495786218379
Iteration: 5, Func. Count: 24, Neg. LLF: 120.3198801368186
Iteration: 6, Func. Count: 28, Neg. LLF: 120.31749651456235
Iteration: 7, Func. Count: 32, Neg. LLF: 120.31749184714822
Iteration: 8, Func. Count: 35, Neg. LLF: 120.31749189798686
Optimization terminated successfully (Exit mode 0)
Current function value: 120.31749184714822
Iterations: 8
Function evaluations: 35
Gradient evaluations: 8
Iteration: 1, Func. Count: 6, Neg. LLF: 24595222.71355263
Iteration: 2, Func. Count: 14, Neg. LLF: 120.27955307643543
Iteration: 3, Func. Count: 19, Neg. LLF: 120.1556619918369
Iteration: 4, Func. Count: 24, Neg. LLF: 120.13867723750802
Iteration: 5, Func. Count: 30, Neg. LLF: 119.99861941552687
Iteration: 6, Func. Count: 35, Neg. LLF: 119.99409615304347
Iteration: 7, Func. Count: 40, Neg. LLF: 119.99186680874482
Iteration: 8, Func. Count: 45, Neg. LLF: 119.9911156433275
Iteration: 9, Func. Count: 50, Neg. LLF: 119.99110548318411
Iteration: 10, Func. Count: 54, Neg. LLF: 119.99110548378938
Optimization terminated successfully (Exit mode 0)
Current function value: 119.99110548318411
Iterations: 10
Function evaluations: 54
Gradient evaluations: 10
Iteration: 1, Func. Count: 7, Neg. LLF: 24565445.676782437
Iteration: 2, Func. Count: 15, Neg. LLF: 120.21213265059404
Iteration: 3, Func. Count: 21, Neg. LLF: 120.00307504501734
Iteration: 4, Func. Count: 27, Neg. LLF: 120.13317188923627
Iteration: 5, Func. Count: 34, Neg. LLF: 119.99408573650314
Iteration: 6, Func. Count: 40, Neg. LLF: 119.9936149357597
Iteration: 7, Func. Count: 46, Neg. LLF: 119.99342541070925
Iteration: 8, Func. Count: 52, Neg. LLF: 119.98747508894499
Iteration: 9, Func. Count: 58, Neg. LLF: 119.98251559374167
Iteration: 10, Func. Count: 64, Neg. LLF: 726120.0438878073
Iteration: 11, Func. Count: 74, Neg. LLF: 119.99077685620827
Iteration: 12, Func. Count: 80, Neg. LLF: 119.98235095647888
Optimization terminated successfully (Exit mode 0)
Current function value: 119.98235095649872
Iterations: 13
Function evaluations: 80
Gradient evaluations: 12
Iteration: 1, Func. Count: 8, Neg. LLF: 24547225.14588247
Iteration: 2, Func. Count: 17, Neg. LLF: 120.17439047429325
Iteration: 3, Func. Count: 24, Neg. LLF: 120.03159269057913
Iteration: 4, Func. Count: 31, Neg. LLF: 120.23413259936872
Iteration: 5, Func. Count: 39, Neg. LLF: 120.00008017657133
Iteration: 6, Func. Count: 46, Neg. LLF: 119.99931526372602
Iteration: 7, Func. Count: 53, Neg. LLF: 119.99788352251115
Iteration: 8, Func. Count: 60, Neg. LLF: 119.99652680139796
Iteration: 9, Func. Count: 67, Neg. LLF: 119.99567935731251
Iteration: 10, Func. Count: 74, Neg. LLF: 119.9953523771525
Iteration: 11, Func. Count: 81, Neg. LLF: 119.99493651577407
Iteration: 12, Func. Count: 88, Neg. LLF: 119.99195392864503
Iteration: 13, Func. Count: 95, Neg. LLF: 119.99153151838541
Iteration: 14, Func. Count: 102, Neg. LLF: 119.98407540423617
Iteration: 15, Func. Count: 109, Neg. LLF: 119.98198687121958
Iteration: 16, Func. Count: 116, Neg. LLF: 119.97452359125953
Iteration: 17, Func. Count: 123, Neg. LLF: 119.97356661618072
Iteration: 18, Func. Count: 130, Neg. LLF: 119.9719954777826
Iteration: 19, Func. Count: 137, Neg. LLF: 119.97197809871233
Iteration: 20, Func. Count: 144, Neg. LLF: 119.97197741903061
Optimization terminated successfully (Exit mode 0)
Current function value: 119.97197741903061
Iterations: 20
Function evaluations: 144
Gradient evaluations: 20
Iteration: 1, Func. Count: 9, Neg. LLF: 24550576.778562296
Iteration: 2, Func. Count: 19, Neg. LLF: 120.18703292028702
Iteration: 3, Func. Count: 27, Neg. LLF: 120.03471534696862
Iteration: 4, Func. Count: 35, Neg. LLF: 120.12561475617011
Iteration: 5, Func. Count: 44, Neg. LLF: 120.00094907269948
Iteration: 6, Func. Count: 52, Neg. LLF: 120.00084434272054
Iteration: 7, Func. Count: 60, Neg. LLF: 120.00059207711286
Iteration: 8, Func. Count: 68, Neg. LLF: 120.0003002132625
Iteration: 9, Func. Count: 76, Neg. LLF: 120.00002694035464
Iteration: 10, Func. Count: 84, Neg. LLF: 119.99987449788371
Iteration: 11, Func. Count: 92, Neg. LLF: 119.99964943080477
Iteration: 12, Func. Count: 100, Neg. LLF: 119.99888664559538
Iteration: 13, Func. Count: 108, Neg. LLF: 119.99866838085303
Iteration: 14, Func. Count: 116, Neg. LLF: 119.99745347932765
Iteration: 15, Func. Count: 124, Neg. LLF: 119.993485718314
Iteration: 16, Func. Count: 132, Neg. LLF: 119.98240661582992
Iteration: 17, Func. Count: 140, Neg. LLF: 15922400.708811278
Iteration: 18, Func. Count: 152, Neg. LLF: 119.9823857063565
Optimization terminated successfully (Exit mode 0)
Current function value: 119.98235098615469
Iterations: 19
Function evaluations: 153
Gradient evaluations: 18
Iteration: 1, Func. Count: 6, Neg. LLF: 131.67856382622858
Iteration: 2, Func. Count: 12, Neg. LLF: 126.91443438895612
Iteration: 3, Func. Count: 18, Neg. LLF: 120.40859666525446
Iteration: 4, Func. Count: 23, Neg. LLF: 123.0158931184662
Iteration: 5, Func. Count: 29, Neg. LLF: 120.27703377032142
Iteration: 6, Func. Count: 34, Neg. LLF: 120.26634737245327
Iteration: 7, Func. Count: 39, Neg. LLF: 120.2626215938904
Iteration: 8, Func. Count: 44, Neg. LLF: 120.2622118358981
Iteration: 9, Func. Count: 49, Neg. LLF: 120.26217267695223
Iteration: 10, Func. Count: 54, Neg. LLF: 120.26217064345296
Iteration: 11, Func. Count: 58, Neg. LLF: 120.26217064348678
Optimization terminated successfully (Exit mode 0)
Current function value: 120.26217064345296
Iterations: 11
Function evaluations: 58
Gradient evaluations: 11
Iteration: 1, Func. Count: 7, Neg. LLF: 24680793.749085434
Iteration: 2, Func. Count: 15, Neg. LLF: 122.63353054083308
Iteration: 3, Func. Count: 23, Neg. LLF: 120.16074538133813
Iteration: 4, Func. Count: 29, Neg. LLF: 120.12038212679974
Iteration: 5, Func. Count: 35, Neg. LLF: 120.10382272332268
Iteration: 6, Func. Count: 41, Neg. LLF: 120.10208155293839
Iteration: 7, Func. Count: 47, Neg. LLF: 120.10147967108269
Iteration: 8, Func. Count: 53, Neg. LLF: 120.09844776089756
Iteration: 9, Func. Count: 59, Neg. LLF: 120.03639966653907
Iteration: 10, Func. Count: 65, Neg. LLF: 120.53809105798973
Iteration: 11, Func. Count: 72, Neg. LLF: 119.99618295148755
Iteration: 12, Func. Count: 78, Neg. LLF: 119.99341465281934
Iteration: 13, Func. Count: 84, Neg. LLF: 119.99131054087186
Iteration: 14, Func. Count: 90, Neg. LLF: 119.9911146782067
Iteration: 15, Func. Count: 96, Neg. LLF: 119.99110503034278
Iteration: 16, Func. Count: 102, Neg. LLF: 119.99110529768954
Optimization terminated successfully (Exit mode 0)
Current function value: 119.99110529768954
Iterations: 16
Function evaluations: 102
Gradient evaluations: 16
Iteration: 1, Func. Count: 8, Neg. LLF: 134.5803538805279
Iteration: 2, Func. Count: 17, Neg. LLF: 122.83731287373782
Iteration: 3, Func. Count: 25, Neg. LLF: 120.36224509636064
Iteration: 4, Func. Count: 33, Neg. LLF: 119.91706084255254
Iteration: 5, Func. Count: 40, Neg. LLF: 120.51576294850015
Iteration: 6, Func. Count: 48, Neg. LLF: 119.87377233484968
Iteration: 7, Func. Count: 55, Neg. LLF: 119.86515790231508
Iteration: 8, Func. Count: 62, Neg. LLF: 119.86429377709337
Iteration: 9, Func. Count: 69, Neg. LLF: 119.86259384189734
Iteration: 10, Func. Count: 76, Neg. LLF: 119.85850605714086
Iteration: 11, Func. Count: 83, Neg. LLF: 119.85439688596428
Iteration: 12, Func. Count: 90, Neg. LLF: 119.84698623222133
Iteration: 13, Func. Count: 97, Neg. LLF: 119.82289398039033
Iteration: 14, Func. Count: 104, Neg. LLF: 120.5539561504787
Iteration: 15, Func. Count: 112, Neg. LLF: 119.81803388883526
Iteration: 16, Func. Count: 119, Neg. LLF: 119.81744410505888
Iteration: 17, Func. Count: 126, Neg. LLF: 119.81744264485633
Iteration: 18, Func. Count: 132, Neg. LLF: 119.8174426449364
Optimization terminated successfully (Exit mode 0)
Current function value: 119.81744264485633
Iterations: 18
Function evaluations: 132
Gradient evaluations: 18
Iteration: 1, Func. Count: 9, Neg. LLF: 156.20799246937446
Iteration: 2, Func. Count: 19, Neg. LLF: 121.91625830901377
Iteration: 3, Func. Count: 28, Neg. LLF: 119.90280916277385
Iteration: 4, Func. Count: 36, Neg. LLF: 120.00707007267718
Iteration: 5, Func. Count: 45, Neg. LLF: 120.59202601857393
Iteration: 6, Func. Count: 55, Neg. LLF: 119.85932995183298
Iteration: 7, Func. Count: 63, Neg. LLF: 119.85356530777472
Iteration: 8, Func. Count: 71, Neg. LLF: 119.84690752119734
Iteration: 9, Func. Count: 79, Neg. LLF: 119.82761706289598
Iteration: 10, Func. Count: 87, Neg. LLF: 119.79405970974358
Iteration: 11, Func. Count: 95, Neg. LLF: 119.77723233071123
Iteration: 12, Func. Count: 103, Neg. LLF: 119.97021170115259
Iteration: 13, Func. Count: 112, Neg. LLF: 119.76494180159536
Iteration: 14, Func. Count: 120, Neg. LLF: 119.76416917118176
Iteration: 15, Func. Count: 128, Neg. LLF: 119.76415941045227
Iteration: 16, Func. Count: 135, Neg. LLF: 119.7641594098644
Optimization terminated successfully (Exit mode 0)
Current function value: 119.76415941045227
Iterations: 16
Function evaluations: 135
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 159.55513025764205
Iteration: 2, Func. Count: 21, Neg. LLF: 121.05368610612655
Iteration: 3, Func. Count: 31, Neg. LLF: 119.93977774299529
Iteration: 4, Func. Count: 40, Neg. LLF: 120.51777519594097
Iteration: 5, Func. Count: 50, Neg. LLF: 119.98642831052841
Iteration: 6, Func. Count: 60, Neg. LLF: 119.8514143037213
Iteration: 7, Func. Count: 69, Neg. LLF: 119.84185399789416
Iteration: 8, Func. Count: 78, Neg. LLF: 119.81009885889623
Iteration: 9, Func. Count: 87, Neg. LLF: 119.78972193176108
Iteration: 10, Func. Count: 96, Neg. LLF: 119.77381995136838
Iteration: 11, Func. Count: 105, Neg. LLF: 119.7647802903917
Iteration: 12, Func. Count: 114, Neg. LLF: 119.76416644976385
Iteration: 13, Func. Count: 123, Neg. LLF: 119.76415883637827
Iteration: 14, Func. Count: 131, Neg. LLF: 119.76415884122959
Optimization terminated successfully (Exit mode 0)
Current function value: 119.76415883637827
Iterations: 14
Function evaluations: 131
Gradient evaluations: 14
Iteration: 1, Func. Count: 7, Neg. LLF: 124.958974089773
Iteration: 2, Func. Count: 14, Neg. LLF: 123.72398543768216
Iteration: 3, Func. Count: 21, Neg. LLF: 120.83571562552314
Iteration: 4, Func. Count: 27, Neg. LLF: 121.96260771249895
Iteration: 5, Func. Count: 34, Neg. LLF: 120.29977641961635
Iteration: 6, Func. Count: 40, Neg. LLF: 120.27674976540041
Iteration: 7, Func. Count: 46, Neg. LLF: 120.26298668075695
Iteration: 8, Func. Count: 52, Neg. LLF: 120.262304948828
Iteration: 9, Func. Count: 58, Neg. LLF: 120.26217380790659
Iteration: 10, Func. Count: 64, Neg. LLF: 120.26217060469678
Iteration: 11, Func. Count: 69, Neg. LLF: 120.26217063130818
Optimization terminated successfully (Exit mode 0)
Current function value: 120.26217060469678
Iterations: 11
Function evaluations: 69
Gradient evaluations: 11
Iteration: 1, Func. Count: 8, Neg. LLF: 128.09953542458868
Iteration: 2, Func. Count: 17, Neg. LLF: 120.68384640978034
Iteration: 3, Func. Count: 25, Neg. LLF: 120.18277463300231
Iteration: 4, Func. Count: 32, Neg. LLF: 120.19335536918943
Iteration: 5, Func. Count: 40, Neg. LLF: 120.24512738308599
Iteration: 6, Func. Count: 48, Neg. LLF: 120.14181431916754
Iteration: 7, Func. Count: 56, Neg. LLF: 120.12655213968088
Iteration: 8, Func. Count: 63, Neg. LLF: 120.1190670041225
Iteration: 9, Func. Count: 70, Neg. LLF: 120.10694423493432
Iteration: 10, Func. Count: 77, Neg. LLF: 120.10345671888146
Iteration: 11, Func. Count: 84, Neg. LLF: 120.10296742796285
Iteration: 12, Func. Count: 91, Neg. LLF: 120.10265155759558
Iteration: 13, Func. Count: 98, Neg. LLF: 120.10260729335108
Iteration: 14, Func. Count: 105, Neg. LLF: 120.10253470929325
Iteration: 15, Func. Count: 112, Neg. LLF: 120.10232385587778
Iteration: 16, Func. Count: 119, Neg. LLF: 120.10078453765004
Iteration: 17, Func. Count: 126, Neg. LLF: 120.10028933315823
Iteration: 18, Func. Count: 133, Neg. LLF: 120.09679663069886
Iteration: 19, Func. Count: 140, Neg. LLF: 133.9478456009909
Iteration: 20, Func. Count: 149, Neg. LLF: 120.19955386717076
Iteration: 21, Func. Count: 157, Neg. LLF: 120.09229643462145
Iteration: 22, Func. Count: 164, Neg. LLF: 120.18284712390513
Iteration: 23, Func. Count: 172, Neg. LLF: 120.10368312595907
Iteration: 24, Func. Count: 180, Neg. LLF: 242.3976763395753
Iteration: 25, Func. Count: 190, Neg. LLF: 120.07665814094864
Iteration: 26, Func. Count: 197, Neg. LLF: 120.0653454860694
Iteration: 27, Func. Count: 204, Neg. LLF: 120.04518779766325
Iteration: 28, Func. Count: 211, Neg. LLF: 120.01848229838309
Iteration: 29, Func. Count: 218, Neg. LLF: 120.00206695829925
Iteration: 30, Func. Count: 225, Neg. LLF: 119.9917512902341
Iteration: 31, Func. Count: 232, Neg. LLF: 119.99113835154525
Iteration: 32, Func. Count: 239, Neg. LLF: 119.99110572689293
Iteration: 33, Func. Count: 245, Neg. LLF: 119.9911057285778
Optimization terminated successfully (Exit mode 0)
Current function value: 119.99110572689293
Iterations: 34
Function evaluations: 245
Gradient evaluations: 33
Iteration: 1, Func. Count: 9, Neg. LLF: 142.863720549884
Iteration: 2, Func. Count: 19, Neg. LLF: 125.54501302342041
Iteration: 3, Func. Count: 29, Neg. LLF: 120.25517457608672
Iteration: 4, Func. Count: 38, Neg. LLF: 119.95641037924516
Iteration: 5, Func. Count: 46, Neg. LLF: 122.86560051406886
Iteration: 6, Func. Count: 55, Neg. LLF: 119.8927316725546
Iteration: 7, Func. Count: 64, Neg. LLF: 119.86846539467383
Iteration: 8, Func. Count: 72, Neg. LLF: 119.86765808661667
Iteration: 9, Func. Count: 80, Neg. LLF: 119.86261174561325
Iteration: 10, Func. Count: 88, Neg. LLF: 119.84870261765349
Iteration: 11, Func. Count: 96, Neg. LLF: 119.83315733778049
Iteration: 12, Func. Count: 104, Neg. LLF: 119.82536938780689
Iteration: 13, Func. Count: 112, Neg. LLF: 119.82312025898963
Iteration: 14, Func. Count: 120, Neg. LLF: 119.81939742939046
Iteration: 15, Func. Count: 128, Neg. LLF: 119.81776251689196
Iteration: 16, Func. Count: 136, Neg. LLF: 119.81750114221684
Iteration: 17, Func. Count: 144, Neg. LLF: 119.81744273502359
Iteration: 18, Func. Count: 151, Neg. LLF: 119.81744273515692
Optimization terminated successfully (Exit mode 0)
Current function value: 119.81744273502359
Iterations: 18
Function evaluations: 151
Gradient evaluations: 18
Iteration: 1, Func. Count: 10, Neg. LLF: 144.4486045470236
Iteration: 2, Func. Count: 21, Neg. LLF: 135.92458796663814
Iteration: 3, Func. Count: 32, Neg. LLF: 120.10991697924266
Iteration: 4, Func. Count: 41, Neg. LLF: 120.05271065540016
Iteration: 5, Func. Count: 50, Neg. LLF: 119.9634751859179
Iteration: 6, Func. Count: 59, Neg. LLF: 119.88381452616099
Iteration: 7, Func. Count: 68, Neg. LLF: 119.89055070031871
Iteration: 8, Func. Count: 78, Neg. LLF: 119.84174952077296
Iteration: 9, Func. Count: 87, Neg. LLF: 119.83732682689016
Iteration: 10, Func. Count: 96, Neg. LLF: 119.81477537970765
Iteration: 11, Func. Count: 105, Neg. LLF: 119.78061624002449
Iteration: 12, Func. Count: 114, Neg. LLF: 119.77548219960475
Iteration: 13, Func. Count: 123, Neg. LLF: 119.81549620058692
Iteration: 14, Func. Count: 133, Neg. LLF: 119.76458385014269
Iteration: 15, Func. Count: 142, Neg. LLF: 119.76431627557885
Iteration: 16, Func. Count: 151, Neg. LLF: 119.76418553984637
Iteration: 17, Func. Count: 160, Neg. LLF: 119.76416003824102
Iteration: 18, Func. Count: 169, Neg. LLF: 119.76415884924417
Iteration: 19, Func. Count: 177, Neg. LLF: 119.76415884925704
Optimization terminated successfully (Exit mode 0)
Current function value: 119.76415884924417
Iterations: 19
Function evaluations: 177
Gradient evaluations: 19
Iteration: 1, Func. Count: 11, Neg. LLF: 24515757.939325985
Iteration: 2, Func. Count: 23, Neg. LLF: 650.8863233353121
Iteration: 3, Func. Count: 35, Neg. LLF: 119.9356025920783
Iteration: 4, Func. Count: 45, Neg. LLF: 119.95695185388452
Iteration: 5, Func. Count: 56, Neg. LLF: 120.1996657788415
Iteration: 6, Func. Count: 68, Neg. LLF: 119.7897519831715
Iteration: 7, Func. Count: 78, Neg. LLF: 119.76483862770672
Iteration: 8, Func. Count: 88, Neg. LLF: 119.76428828649884
Iteration: 9, Func. Count: 98, Neg. LLF: 119.76417455306743
Iteration: 10, Func. Count: 108, Neg. LLF: 119.76415953726223
Iteration: 11, Func. Count: 118, Neg. LLF: 119.76415886708568
Optimization terminated successfully (Exit mode 0)
Current function value: 119.76415886708568
Iterations: 11
Function evaluations: 118
Gradient evaluations: 11
Iteration: 1, Func. Count: 8, Neg. LLF: 122.84323917876186
Iteration: 2, Func. Count: 16, Neg. LLF: 121.53316312694886
Iteration: 3, Func. Count: 24, Neg. LLF: 120.73416817825174
Iteration: 4, Func. Count: 31, Neg. LLF: 121.4330949570703
Iteration: 5, Func. Count: 39, Neg. LLF: 119.80691431225728
Iteration: 6, Func. Count: 46, Neg. LLF: 120.59609622272836
Iteration: 7, Func. Count: 54, Neg. LLF: 119.88416329090877
Iteration: 8, Func. Count: 62, Neg. LLF: 119.7920619293505
Iteration: 9, Func. Count: 70, Neg. LLF: 119.74667668253208
Iteration: 10, Func. Count: 77, Neg. LLF: 119.74663390074905
Iteration: 11, Func. Count: 83, Neg. LLF: 119.7466339007312
Optimization terminated successfully (Exit mode 0)
Current function value: 119.74663390074905
Iterations: 11
Function evaluations: 83
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 122.85595110058057
Iteration: 2, Func. Count: 19, Neg. LLF: 124.31001503272755
Iteration: 3, Func. Count: 28, Neg. LLF: 120.02308218130116
Iteration: 4, Func. Count: 36, Neg. LLF: 120.00344363298646
Iteration: 5, Func. Count: 45, Neg. LLF: 122.09835393312335
Iteration: 6, Func. Count: 55, Neg. LLF: 119.8910610222587
Iteration: 7, Func. Count: 64, Neg. LLF: 119.88312644393059
Iteration: 8, Func. Count: 72, Neg. LLF: 119.86899432025571
Iteration: 9, Func. Count: 80, Neg. LLF: 119.81631287681998
Iteration: 10, Func. Count: 88, Neg. LLF: 119.79916660361103
Iteration: 11, Func. Count: 96, Neg. LLF: 119.76350129135083
Iteration: 12, Func. Count: 104, Neg. LLF: 119.75267393136617
Iteration: 13, Func. Count: 112, Neg. LLF: 119.74810669344156
Iteration: 14, Func. Count: 120, Neg. LLF: 119.74694993921389
Iteration: 15, Func. Count: 128, Neg. LLF: 119.7466561437483
Iteration: 16, Func. Count: 136, Neg. LLF: 119.74663443014491
Iteration: 17, Func. Count: 144, Neg. LLF: 119.74663364846447
Optimization terminated successfully (Exit mode 0)
Current function value: 119.74663364846447
Iterations: 17
Function evaluations: 144
Gradient evaluations: 17
Iteration: 1, Func. Count: 10, Neg. LLF: 134.52683859567983
Iteration: 2, Func. Count: 20, Neg. LLF: 131.29866573743828
Iteration: 3, Func. Count: 31, Neg. LLF: 124.62645060193343
Iteration: 4, Func. Count: 41, Neg. LLF: 119.84219585970072
Iteration: 5, Func. Count: 50, Neg. LLF: 119.71370174652196
Iteration: 6, Func. Count: 59, Neg. LLF: 120.18147440928321
Iteration: 7, Func. Count: 69, Neg. LLF: 119.65801791467241
Iteration: 8, Func. Count: 78, Neg. LLF: 119.6736115908897
Iteration: 9, Func. Count: 88, Neg. LLF: 119.61725066756063
Iteration: 10, Func. Count: 97, Neg. LLF: 119.61568437319083
Iteration: 11, Func. Count: 106, Neg. LLF: 119.61400656329934
Iteration: 12, Func. Count: 115, Neg. LLF: 119.60999528226851
Iteration: 13, Func. Count: 124, Neg. LLF: 119.6042298616387
Iteration: 14, Func. Count: 133, Neg. LLF: 119.59900623167046
Iteration: 15, Func. Count: 142, Neg. LLF: 119.59841889911912
Iteration: 16, Func. Count: 151, Neg. LLF: 119.59835754798563
Iteration: 17, Func. Count: 159, Neg. LLF: 119.5983575479659
Optimization terminated successfully (Exit mode 0)
Current function value: 119.59835754798563
Iterations: 17
Function evaluations: 159
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 123.9932257717106
Iteration: 2, Func. Count: 23, Neg. LLF: 126.00281905707324
Iteration: 3, Func. Count: 34, Neg. LLF: 123.92950663395845
Iteration: 4, Func. Count: 45, Neg. LLF: 119.64722140957407
Iteration: 5, Func. Count: 55, Neg. LLF: 120.0817740430051
Iteration: 6, Func. Count: 66, Neg. LLF: 119.90266499214351
Iteration: 7, Func. Count: 77, Neg. LLF: 119.68102750580546
Iteration: 8, Func. Count: 88, Neg. LLF: 119.58250040874168
Iteration: 9, Func. Count: 98, Neg. LLF: 119.57894373983385
Iteration: 10, Func. Count: 108, Neg. LLF: 119.56694927919362
Iteration: 11, Func. Count: 118, Neg. LLF: 119.55930235995153
Iteration: 12, Func. Count: 128, Neg. LLF: 119.55564196322103
Iteration: 13, Func. Count: 138, Neg. LLF: 119.55516891685996
Iteration: 14, Func. Count: 148, Neg. LLF: 119.55516218939081
Iteration: 15, Func. Count: 158, Neg. LLF: 119.55516164664303
Optimization terminated successfully (Exit mode 0)
Current function value: 119.55516164664303
Iterations: 15
Function evaluations: 158
Gradient evaluations: 15
Iteration: 1, Func. Count: 12, Neg. LLF: 124.04926260057066
Iteration: 2, Func. Count: 25, Neg. LLF: 126.93022066663947
Iteration: 3, Func. Count: 37, Neg. LLF: 125.87753129696361
Iteration: 4, Func. Count: 49, Neg. LLF: 119.7167906551658
Iteration: 5, Func. Count: 60, Neg. LLF: 121.44120443735288
Iteration: 6, Func. Count: 72, Neg. LLF: 120.29812549622048
Iteration: 7, Func. Count: 85, Neg. LLF: 120.10312251555254
Iteration: 8, Func. Count: 97, Neg. LLF: 119.55130586187093
Iteration: 9, Func. Count: 108, Neg. LLF: 119.54958593637348
Iteration: 10, Func. Count: 119, Neg. LLF: 119.54947557418261
Iteration: 11, Func. Count: 130, Neg. LLF: 119.54939269326361
Iteration: 12, Func. Count: 141, Neg. LLF: 119.54929425661437
Iteration: 13, Func. Count: 152, Neg. LLF: 119.54898985862104
Iteration: 14, Func. Count: 163, Neg. LLF: 119.54851913743455
Iteration: 15, Func. Count: 174, Neg. LLF: 119.54800599011081
Iteration: 16, Func. Count: 185, Neg. LLF: 119.54772260622939
Iteration: 17, Func. Count: 196, Neg. LLF: 119.54766859161616
Iteration: 18, Func. Count: 207, Neg. LLF: 119.54766700790589
Iteration: 19, Func. Count: 217, Neg. LLF: 119.54766700793994
Optimization terminated successfully (Exit mode 0)
Current function value: 119.54766700790589
Iterations: 19
Function evaluations: 217
Gradient evaluations: 19
Iteration: 1, Func. Count: 9, Neg. LLF: 123.45662889303642
Iteration: 2, Func. Count: 18, Neg. LLF: 127.06369769039117
Iteration: 3, Func. Count: 27, Neg. LLF: 120.75444150488073
Iteration: 4, Func. Count: 35, Neg. LLF: 121.0798608623764
Iteration: 5, Func. Count: 44, Neg. LLF: 120.50150960490082
Iteration: 6, Func. Count: 53, Neg. LLF: 119.83696342153614
Iteration: 7, Func. Count: 61, Neg. LLF: 121.1976819271185
Iteration: 8, Func. Count: 71, Neg. LLF: 120.07390086820776
Iteration: 9, Func. Count: 80, Neg. LLF: 119.75368024107468
Iteration: 10, Func. Count: 88, Neg. LLF: 119.74682641766677
Iteration: 11, Func. Count: 96, Neg. LLF: 119.74665684618654
Iteration: 12, Func. Count: 104, Neg. LLF: 119.74663432794136
Iteration: 13, Func. Count: 112, Neg. LLF: 119.74663359654666
Optimization terminated successfully (Exit mode 0)
Current function value: 119.74663359654666
Iterations: 13
Function evaluations: 112
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 122.63442896779478
Iteration: 2, Func. Count: 21, Neg. LLF: 144.71852052876577
Iteration: 3, Func. Count: 32, Neg. LLF: 122.03132719436122
Iteration: 4, Func. Count: 42, Neg. LLF: 119.93169830441065
Iteration: 5, Func. Count: 51, Neg. LLF: 120.35455668689552
Iteration: 6, Func. Count: 61, Neg. LLF: 119.91578688029682
Iteration: 7, Func. Count: 71, Neg. LLF: 119.90454405208283
Iteration: 8, Func. Count: 80, Neg. LLF: 119.90453332175058
Iteration: 9, Func. Count: 88, Neg. LLF: 119.90453332169344
Optimization terminated successfully (Exit mode 0)
Current function value: 119.90453332175058
Iterations: 9
Function evaluations: 88
Gradient evaluations: 9
Iteration: 1, Func. Count: 11, Neg. LLF: 137.24582753207784
Iteration: 2, Func. Count: 22, Neg. LLF: 144.5675227829985
Iteration: 3, Func. Count: 34, Neg. LLF: 123.85618296471334
Iteration: 4, Func. Count: 45, Neg. LLF: 119.8609277480226
Iteration: 5, Func. Count: 55, Neg. LLF: 120.32676437697366
Iteration: 6, Func. Count: 66, Neg. LLF: 120.33500496936263
Iteration: 7, Func. Count: 78, Neg. LLF: 119.65306851379042
Iteration: 8, Func. Count: 88, Neg. LLF: 119.62239085781427
Iteration: 9, Func. Count: 98, Neg. LLF: 119.61668805309925
Iteration: 10, Func. Count: 108, Neg. LLF: 119.61434966384638
Iteration: 11, Func. Count: 118, Neg. LLF: 119.61257944267976
Iteration: 12, Func. Count: 128, Neg. LLF: 119.60623738493749
Iteration: 13, Func. Count: 138, Neg. LLF: 119.59972363840409
Iteration: 14, Func. Count: 148, Neg. LLF: 119.59853977834398
Iteration: 15, Func. Count: 158, Neg. LLF: 119.59835856052389
Iteration: 16, Func. Count: 168, Neg. LLF: 119.59835753867198
Iteration: 17, Func. Count: 177, Neg. LLF: 119.59835753876473
Optimization terminated successfully (Exit mode 0)
Current function value: 119.59835753867198
Iterations: 17
Function evaluations: 177
Gradient evaluations: 17
Iteration: 1, Func. Count: 12, Neg. LLF: 124.92557667537129
Iteration: 2, Func. Count: 25, Neg. LLF: 127.37742783781877
Iteration: 3, Func. Count: 37, Neg. LLF: 124.42384395743612
Iteration: 4, Func. Count: 49, Neg. LLF: 119.64951208422883
Iteration: 5, Func. Count: 60, Neg. LLF: 120.24640821870932
Iteration: 6, Func. Count: 72, Neg. LLF: 119.94006244956874
Iteration: 7, Func. Count: 84, Neg. LLF: 119.6029478745087
Iteration: 8, Func. Count: 96, Neg. LLF: 119.5829919875725
Iteration: 9, Func. Count: 107, Neg. LLF: 119.57929107157054
Iteration: 10, Func. Count: 118, Neg. LLF: 119.56497637274016
Iteration: 11, Func. Count: 129, Neg. LLF: 119.55865788851047
Iteration: 12, Func. Count: 140, Neg. LLF: 119.55540614742894
Iteration: 13, Func. Count: 151, Neg. LLF: 119.55518462365433
Iteration: 14, Func. Count: 162, Neg. LLF: 119.55516876546797
Iteration: 15, Func. Count: 173, Neg. LLF: 119.55516164120685
Iteration: 16, Func. Count: 183, Neg. LLF: 119.55516164120687
Optimization terminated successfully (Exit mode 0)
Current function value: 119.55516164120685
Iterations: 16
Function evaluations: 183
Gradient evaluations: 16
Iteration: 1, Func. Count: 13, Neg. LLF: 124.90574644104898
Iteration: 2, Func. Count: 27, Neg. LLF: 128.07795585982166
Iteration: 3, Func. Count: 40, Neg. LLF: 127.88794580600401
Iteration: 4, Func. Count: 54, Neg. LLF: 119.70836208737357
Iteration: 5, Func. Count: 66, Neg. LLF: 120.98854029137465
Iteration: 6, Func. Count: 79, Neg. LLF: 120.28724183555286
Iteration: 7, Func. Count: 93, Neg. LLF: 119.7363993285841
Iteration: 8, Func. Count: 106, Neg. LLF: 119.55122279568307
Iteration: 9, Func. Count: 118, Neg. LLF: 119.54959295875315
Iteration: 10, Func. Count: 130, Neg. LLF: 119.54949943010942
Iteration: 11, Func. Count: 142, Neg. LLF: 119.54941204985376
Iteration: 12, Func. Count: 154, Neg. LLF: 119.54928953336331
Iteration: 13, Func. Count: 166, Neg. LLF: 119.54895434000267
Iteration: 14, Func. Count: 178, Neg. LLF: 119.54842526314252
Iteration: 15, Func. Count: 190, Neg. LLF: 119.5479200976032
Iteration: 16, Func. Count: 202, Neg. LLF: 119.54770137327533
Iteration: 17, Func. Count: 214, Neg. LLF: 119.54766831404416
Iteration: 18, Func. Count: 226, Neg. LLF: 119.5476669564619
Iteration: 19, Func. Count: 237, Neg. LLF: 119.54766695647503
Optimization terminated successfully (Exit mode 0)
Current function value: 119.5476669564619
Iterations: 19
Function evaluations: 237
Gradient evaluations: 19
Iteration: 1, Func. Count: 6, Neg. LLF: 130.4798892537447
Iteration: 2, Func. Count: 12, Neg. LLF: 131.52059841713177
Iteration: 3, Func. Count: 18, Neg. LLF: 120.35573671824153
Iteration: 4, Func. Count: 23, Neg. LLF: 120.32950988597374
Iteration: 5, Func. Count: 28, Neg. LLF: 120.31799177265567
Iteration: 6, Func. Count: 33, Neg. LLF: 120.31749584151055
Iteration: 7, Func. Count: 38, Neg. LLF: 120.31749184483424
Iteration: 8, Func. Count: 42, Neg. LLF: 120.31749195704694
Optimization terminated successfully (Exit mode 0)
Current function value: 120.31749184483424
Iterations: 8
Function evaluations: 42
Gradient evaluations: 8
Iteration: 1, Func. Count: 7, Neg. LLF: 24592593.14296445
Iteration: 2, Func. Count: 16, Neg. LLF: 120.27540292471474
Iteration: 3, Func. Count: 22, Neg. LLF: 120.1472481162416
Iteration: 4, Func. Count: 28, Neg. LLF: 120.39628882939864
Iteration: 5, Func. Count: 35, Neg. LLF: 120.00995614342287
Iteration: 6, Func. Count: 41, Neg. LLF: 119.99706586829832
Iteration: 7, Func. Count: 47, Neg. LLF: 119.9916081798225
Iteration: 8, Func. Count: 53, Neg. LLF: 119.99110537978312
Iteration: 9, Func. Count: 58, Neg. LLF: 119.9911053791885
Optimization terminated successfully (Exit mode 0)
Current function value: 119.99110537978312
Iterations: 9
Function evaluations: 58
Gradient evaluations: 9
Iteration: 1, Func. Count: 8, Neg. LLF: 24574311.901067797
Iteration: 2, Func. Count: 17, Neg. LLF: 120.2267849716643
Iteration: 3, Func. Count: 24, Neg. LLF: 120.0157485804033
Iteration: 4, Func. Count: 31, Neg. LLF: 120.41012565686195
Iteration: 5, Func. Count: 39, Neg. LLF: 119.99671773965335
Iteration: 6, Func. Count: 46, Neg. LLF: 119.99477521139178
Iteration: 7, Func. Count: 53, Neg. LLF: 119.99477272201763
Iteration: 8, Func. Count: 59, Neg. LLF: 119.99477272197373
Optimization terminated successfully (Exit mode 0)
Current function value: 119.99477272201763
Iterations: 8
Function evaluations: 59
Gradient evaluations: 8
Iteration: 1, Func. Count: 9, Neg. LLF: 24570107.301831763
Iteration: 2, Func. Count: 19, Neg. LLF: 120.22228144636885
Iteration: 3, Func. Count: 27, Neg. LLF: 120.03688992360917
Iteration: 4, Func. Count: 35, Neg. LLF: 120.41896401656227
Iteration: 5, Func. Count: 44, Neg. LLF: 119.99790389505735
Iteration: 6, Func. Count: 52, Neg. LLF: 119.9973516054777
Iteration: 7, Func. Count: 60, Neg. LLF: 119.99559397366309
Iteration: 8, Func. Count: 68, Neg. LLF: 119.9929888429208
Iteration: 9, Func. Count: 76, Neg. LLF: 119.99146318806754
Iteration: 10, Func. Count: 84, Neg. LLF: 119.98847866325646
Iteration: 11, Func. Count: 92, Neg. LLF: 119.98766810584422
Iteration: 12, Func. Count: 100, Neg. LLF: 119.98668101948958
Iteration: 13, Func. Count: 108, Neg. LLF: 119.97770281318587
Iteration: 14, Func. Count: 116, Neg. LLF: 119.9730674971663
Iteration: 15, Func. Count: 124, Neg. LLF: 20309863.949117936
Iteration: 16, Func. Count: 136, Neg. LLF: 119.97261618294165
Iteration: 17, Func. Count: 144, Neg. LLF: 119.97197692881308
Iteration: 18, Func. Count: 151, Neg. LLF: 119.97197692882621
Optimization terminated successfully (Exit mode 0)
Current function value: 119.97197692881308
Iterations: 19
Function evaluations: 151
Gradient evaluations: 18
Iteration: 1, Func. Count: 10, Neg. LLF: 24564906.179865655
Iteration: 2, Func. Count: 21, Neg. LLF: 120.2266200470938
Iteration: 3, Func. Count: 31, Neg. LLF: 120.05090707740912
Iteration: 4, Func. Count: 40, Neg. LLF: 120.07041812088487
Iteration: 5, Func. Count: 50, Neg. LLF: 120.00192280213216
Iteration: 6, Func. Count: 59, Neg. LLF: 120.00157278073209
Iteration: 7, Func. Count: 68, Neg. LLF: 120.00071731706782
Iteration: 8, Func. Count: 77, Neg. LLF: 120.00050291806843
Iteration: 9, Func. Count: 86, Neg. LLF: 120.00016230164861
Iteration: 10, Func. Count: 95, Neg. LLF: 120.00010445586932
Iteration: 11, Func. Count: 104, Neg. LLF: 120.00001035380674
Iteration: 12, Func. Count: 113, Neg. LLF: 119.999760136448
Iteration: 13, Func. Count: 122, Neg. LLF: 119.99836598991551
Iteration: 14, Func. Count: 131, Neg. LLF: 119.99784345586859
Iteration: 15, Func. Count: 140, Neg. LLF: 119.99474201397392
Iteration: 16, Func. Count: 149, Neg. LLF: 119.98955382349645
Iteration: 17, Func. Count: 158, Neg. LLF: 119.98917953173107
Iteration: 18, Func. Count: 167, Neg. LLF: 119.98751958500026
Iteration: 19, Func. Count: 176, Neg. LLF: 119.98626059530311
Iteration: 20, Func. Count: 185, Neg. LLF: 119.98312578373387
Iteration: 21, Func. Count: 194, Neg. LLF: 1326.5728731003965
Iteration: 22, Func. Count: 207, Neg. LLF: 119.97306086958744
Iteration: 23, Func. Count: 216, Neg. LLF: 119.97269533981436
Iteration: 24, Func. Count: 225, Neg. LLF: 119.97197786092752
Iteration: 25, Func. Count: 234, Neg. LLF: 119.97197681302502
Iteration: 26, Func. Count: 242, Neg. LLF: 119.97197681859193
Optimization terminated successfully (Exit mode 0)
Current function value: 119.97197681302502
Iterations: 27
Function evaluations: 242
Gradient evaluations: 26
Iteration: 1, Func. Count: 7, Neg. LLF: 126.93314350231886
Iteration: 2, Func. Count: 14, Neg. LLF: 128.85371165819737
Iteration: 3, Func. Count: 21, Neg. LLF: 120.32724486746321
Iteration: 4, Func. Count: 27, Neg. LLF: 120.72541631337997
Iteration: 5, Func. Count: 34, Neg. LLF: 120.26441483190746
Iteration: 6, Func. Count: 40, Neg. LLF: 120.26223325755356
Iteration: 7, Func. Count: 46, Neg. LLF: 120.2621748838488
Iteration: 8, Func. Count: 52, Neg. LLF: 120.26217097051705
Iteration: 9, Func. Count: 57, Neg. LLF: 120.26217097050247
Optimization terminated successfully (Exit mode 0)
Current function value: 120.26217097051705
Iterations: 9
Function evaluations: 57
Gradient evaluations: 9
Iteration: 1, Func. Count: 8, Neg. LLF: 24680412.05060142
Iteration: 2, Func. Count: 17, Neg. LLF: 123.47394397604799
Iteration: 3, Func. Count: 26, Neg. LLF: 120.15217882851772
Iteration: 4, Func. Count: 33, Neg. LLF: 120.11596734242882
Iteration: 5, Func. Count: 40, Neg. LLF: 120.10330483924082
Iteration: 6, Func. Count: 47, Neg. LLF: 120.1018341728624
Iteration: 7, Func. Count: 54, Neg. LLF: 120.10124719150193
Iteration: 8, Func. Count: 61, Neg. LLF: 120.09779218381266
Iteration: 9, Func. Count: 68, Neg. LLF: 120.03448462748841
Iteration: 10, Func. Count: 75, Neg. LLF: 120.52938866428342
Iteration: 11, Func. Count: 83, Neg. LLF: 119.99559734702937
Iteration: 12, Func. Count: 90, Neg. LLF: 119.99298325412647
Iteration: 13, Func. Count: 97, Neg. LLF: 119.99124986243767
Iteration: 14, Func. Count: 104, Neg. LLF: 119.9911954012253
Iteration: 15, Func. Count: 111, Neg. LLF: 119.99115645082577
Iteration: 16, Func. Count: 118, Neg. LLF: 119.9911070962766
Iteration: 17, Func. Count: 125, Neg. LLF: 119.99110533292743
Iteration: 18, Func. Count: 132, Neg. LLF: 120.13074223418684
Optimization terminated successfully (Exit mode 0)
Current function value: 119.99110533268119
Iterations: 19
Function evaluations: 137
Gradient evaluations: 18
Iteration: 1, Func. Count: 9, Neg. LLF: 135.1983968394128
Iteration: 2, Func. Count: 19, Neg. LLF: 121.79025625636947
Iteration: 3, Func. Count: 28, Neg. LLF: 120.3909120872138
Iteration: 4, Func. Count: 37, Neg. LLF: 119.92490018244682
Iteration: 5, Func. Count: 45, Neg. LLF: 120.40336362383489
Iteration: 6, Func. Count: 54, Neg. LLF: 119.87113502030499
Iteration: 7, Func. Count: 62, Neg. LLF: 119.86515553363157
Iteration: 8, Func. Count: 70, Neg. LLF: 119.86398973733354
Iteration: 9, Func. Count: 78, Neg. LLF: 119.86286368264348
Iteration: 10, Func. Count: 86, Neg. LLF: 119.85877864858764
Iteration: 11, Func. Count: 94, Neg. LLF: 119.85500427992675
Iteration: 12, Func. Count: 102, Neg. LLF: 119.8490192773363
Iteration: 13, Func. Count: 110, Neg. LLF: 119.82128786855779
Iteration: 14, Func. Count: 118, Neg. LLF: 119.8225050295387
Iteration: 15, Func. Count: 127, Neg. LLF: 119.82619116460495
Iteration: 16, Func. Count: 136, Neg. LLF: 119.81744477531966
Iteration: 17, Func. Count: 144, Neg. LLF: 119.81744265550125
Iteration: 18, Func. Count: 151, Neg. LLF: 119.81744265556539
Optimization terminated successfully (Exit mode 0)
Current function value: 119.81744265550125
Iterations: 18
Function evaluations: 151
Gradient evaluations: 18
Iteration: 1, Func. Count: 10, Neg. LLF: 155.80104136346884
Iteration: 2, Func. Count: 21, Neg. LLF: 121.36177537046463
Iteration: 3, Func. Count: 31, Neg. LLF: 119.89195458465556
Iteration: 4, Func. Count: 40, Neg. LLF: 120.2463598465655
Iteration: 5, Func. Count: 50, Neg. LLF: 120.06560831242558
Iteration: 6, Func. Count: 60, Neg. LLF: 119.87232937672226
Iteration: 7, Func. Count: 70, Neg. LLF: 119.85428262594442
Iteration: 8, Func. Count: 79, Neg. LLF: 119.8349349592919
Iteration: 9, Func. Count: 88, Neg. LLF: 119.81310718909178
Iteration: 10, Func. Count: 97, Neg. LLF: 119.79041548692653
Iteration: 11, Func. Count: 106, Neg. LLF: 120.62812738088779
Iteration: 12, Func. Count: 116, Neg. LLF: 119.76852087354514
Iteration: 13, Func. Count: 125, Neg. LLF: 119.76474739960307
Iteration: 14, Func. Count: 134, Neg. LLF: 119.76419478891285
Iteration: 15, Func. Count: 143, Neg. LLF: 119.76416223633606
Iteration: 16, Func. Count: 152, Neg. LLF: 119.7641593816496
Iteration: 17, Func. Count: 161, Neg. LLF: 119.76415882734631
Optimization terminated successfully (Exit mode 0)
Current function value: 119.76415882734631
Iterations: 17
Function evaluations: 161
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 159.0922582926465
Iteration: 2, Func. Count: 23, Neg. LLF: 120.78245928771574
Iteration: 3, Func. Count: 34, Neg. LLF: 119.98157288447564
Iteration: 4, Func. Count: 44, Neg. LLF: 120.17472919719397
Iteration: 5, Func. Count: 55, Neg. LLF: 119.95698075271935
Iteration: 6, Func. Count: 66, Neg. LLF: 119.85097452998873
Iteration: 7, Func. Count: 76, Neg. LLF: 119.84115309716488
Iteration: 8, Func. Count: 86, Neg. LLF: 119.7825364253251
Iteration: 9, Func. Count: 96, Neg. LLF: 119.77725331699605
Iteration: 10, Func. Count: 106, Neg. LLF: 119.76671877353871
Iteration: 11, Func. Count: 116, Neg. LLF: 119.76445845129095
Iteration: 12, Func. Count: 126, Neg. LLF: 119.76418846790568
Iteration: 13, Func. Count: 136, Neg. LLF: 119.7641594782703
Iteration: 14, Func. Count: 146, Neg. LLF: 119.76415887149086
Optimization terminated successfully (Exit mode 0)
Current function value: 119.76415887149086
Iterations: 14
Function evaluations: 146
Gradient evaluations: 14
Iteration: 1, Func. Count: 8, Neg. LLF: 137.48982272743575
Iteration: 2, Func. Count: 17, Neg. LLF: 130.4184546016667
Iteration: 3, Func. Count: 25, Neg. LLF: 120.43523478921807
Iteration: 4, Func. Count: 32, Neg. LLF: 120.53105807808451
Iteration: 5, Func. Count: 40, Neg. LLF: 120.2789980131413
Iteration: 6, Func. Count: 47, Neg. LLF: 120.2657492134331
Iteration: 7, Func. Count: 54, Neg. LLF: 120.2623168994585
Iteration: 8, Func. Count: 61, Neg. LLF: 120.26219513572111
Iteration: 9, Func. Count: 68, Neg. LLF: 120.26217053325551
Iteration: 10, Func. Count: 74, Neg. LLF: 120.26217050664509
Optimization terminated successfully (Exit mode 0)
Current function value: 120.26217053325551
Iterations: 10
Function evaluations: 74
Gradient evaluations: 10
Iteration: 1, Func. Count: 9, Neg. LLF: 127.70040536149645
Iteration: 2, Func. Count: 19, Neg. LLF: 120.44464947848435
Iteration: 3, Func. Count: 28, Neg. LLF: 120.1833311426616
Iteration: 4, Func. Count: 36, Neg. LLF: 120.19645044759793
Iteration: 5, Func. Count: 45, Neg. LLF: 120.26101785908627
Iteration: 6, Func. Count: 54, Neg. LLF: 120.1498003577583
Iteration: 7, Func. Count: 63, Neg. LLF: 120.12957817268422
Iteration: 8, Func. Count: 71, Neg. LLF: 120.11829972503948
Iteration: 9, Func. Count: 79, Neg. LLF: 120.10677333464425
Iteration: 10, Func. Count: 87, Neg. LLF: 120.10354065473048
Iteration: 11, Func. Count: 95, Neg. LLF: 120.10283560872863
Iteration: 12, Func. Count: 103, Neg. LLF: 120.10266443127247
Iteration: 13, Func. Count: 111, Neg. LLF: 120.10259513415848
Iteration: 14, Func. Count: 119, Neg. LLF: 120.10254054332894
Iteration: 15, Func. Count: 127, Neg. LLF: 120.10231225491323
Iteration: 16, Func. Count: 135, Neg. LLF: 120.10076917286308
Iteration: 17, Func. Count: 143, Neg. LLF: 120.10028591549008
Iteration: 18, Func. Count: 151, Neg. LLF: 120.09715974515885
Iteration: 19, Func. Count: 159, Neg. LLF: 121.2309192453748
Iteration: 20, Func. Count: 168, Neg. LLF: 16060317.7630975
Iteration: 21, Func. Count: 178, Neg. LLF: 126.00642982044336
Iteration: 22, Func. Count: 189, Neg. LLF: 120.09904407456551
Iteration: 23, Func. Count: 198, Neg. LLF: 120.09754190699687
Iteration: 24, Func. Count: 207, Neg. LLF: 120.26389025655921
Iteration: 25, Func. Count: 216, Neg. LLF: 119.99905823239658
Iteration: 26, Func. Count: 224, Neg. LLF: 120.04360810125797
Iteration: 27, Func. Count: 233, Neg. LLF: 119.99202724791579
Iteration: 28, Func. Count: 241, Neg. LLF: 119.99117675455317
Iteration: 29, Func. Count: 249, Neg. LLF: 119.99112928324334
Iteration: 30, Func. Count: 257, Neg. LLF: 119.99110532846147
Iteration: 31, Func. Count: 264, Neg. LLF: 119.99110532855578
Optimization terminated successfully (Exit mode 0)
Current function value: 119.99110532846147
Iterations: 32
Function evaluations: 264
Gradient evaluations: 31
Iteration: 1, Func. Count: 10, Neg. LLF: 140.591538948737
Iteration: 2, Func. Count: 21, Neg. LLF: 128.26889865254623
Iteration: 3, Func. Count: 32, Neg. LLF: 120.34014322130055
Iteration: 4, Func. Count: 42, Neg. LLF: 119.94180655800488
Iteration: 5, Func. Count: 51, Neg. LLF: 119.9505916741664
Iteration: 6, Func. Count: 61, Neg. LLF: 119.87417436959984
Iteration: 7, Func. Count: 71, Neg. LLF: 119.86820687990644
Iteration: 8, Func. Count: 80, Neg. LLF: 119.8663521382827
Iteration: 9, Func. Count: 89, Neg. LLF: 119.8618785056631
Iteration: 10, Func. Count: 98, Neg. LLF: 119.84825902097438
Iteration: 11, Func. Count: 107, Neg. LLF: 119.82450694892111
Iteration: 12, Func. Count: 116, Neg. LLF: 119.91581234922096
Iteration: 13, Func. Count: 126, Neg. LLF: 119.81793220733317
Iteration: 14, Func. Count: 135, Neg. LLF: 119.81760639344515
Iteration: 15, Func. Count: 144, Neg. LLF: 119.81755565936119
Iteration: 16, Func. Count: 153, Neg. LLF: 119.81746716406457
Iteration: 17, Func. Count: 162, Neg. LLF: 119.81744507780733
Iteration: 18, Func. Count: 171, Neg. LLF: 119.81744324364335
Iteration: 19, Func. Count: 179, Neg. LLF: 119.81744324341659
Optimization terminated successfully (Exit mode 0)
Current function value: 119.81744324364335
Iterations: 19
Function evaluations: 179
Gradient evaluations: 19
Iteration: 1, Func. Count: 11, Neg. LLF: 143.8766083872187
Iteration: 2, Func. Count: 23, Neg. LLF: 145.3734478210862
Iteration: 3, Func. Count: 35, Neg. LLF: 120.12352230761465
Iteration: 4, Func. Count: 45, Neg. LLF: 120.04094387506552
Iteration: 5, Func. Count: 55, Neg. LLF: 119.98646293326614
Iteration: 6, Func. Count: 65, Neg. LLF: 120.2752790863404
Iteration: 7, Func. Count: 77, Neg. LLF: 123.6448886947188
Iteration: 8, Func. Count: 88, Neg. LLF: 119.84007332347205
Iteration: 9, Func. Count: 98, Neg. LLF: 119.82684782112027
Iteration: 10, Func. Count: 108, Neg. LLF: 119.82335415881812
Iteration: 11, Func. Count: 118, Neg. LLF: 119.81282850953083
Iteration: 12, Func. Count: 128, Neg. LLF: 119.7871476757268
Iteration: 13, Func. Count: 138, Neg. LLF: 119.7774287130648
Iteration: 14, Func. Count: 148, Neg. LLF: 119.79978170524339
Iteration: 15, Func. Count: 159, Neg. LLF: 119.76692834793893
Iteration: 16, Func. Count: 169, Neg. LLF: 119.76479256869928
Iteration: 17, Func. Count: 179, Neg. LLF: 119.76422332032493
Iteration: 18, Func. Count: 189, Neg. LLF: 119.76416200817046
Iteration: 19, Func. Count: 199, Neg. LLF: 119.76415887892959
Iteration: 20, Func. Count: 208, Neg. LLF: 119.76415887891166
Optimization terminated successfully (Exit mode 0)
Current function value: 119.76415887892959
Iterations: 20
Function evaluations: 208
Gradient evaluations: 20
Iteration: 1, Func. Count: 12, Neg. LLF: 24522676.439122763
Iteration: 2, Func. Count: 25, Neg. LLF: 7663.959689603319
Iteration: 3, Func. Count: 38, Neg. LLF: 119.92878345326385
Iteration: 4, Func. Count: 49, Neg. LLF: 120.46568782937312
Iteration: 5, Func. Count: 61, Neg. LLF: 120.41707396749311
Iteration: 6, Func. Count: 73, Neg. LLF: 119.79222406449837
Iteration: 7, Func. Count: 84, Neg. LLF: 119.76572353388174
Iteration: 8, Func. Count: 95, Neg. LLF: 119.76422531417928
Iteration: 9, Func. Count: 106, Neg. LLF: 119.76416168391859
Iteration: 10, Func. Count: 117, Neg. LLF: 119.76415894518469
Iteration: 11, Func. Count: 127, Neg. LLF: 119.76415895013426
Optimization terminated successfully (Exit mode 0)
Current function value: 119.76415894518469
Iterations: 11
Function evaluations: 127
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 133.54618222588027
Iteration: 2, Func. Count: 19, Neg. LLF: 132.05427137473222
Iteration: 3, Func. Count: 28, Neg. LLF: 120.09368367454275
Iteration: 4, Func. Count: 36, Neg. LLF: 119.78053285280247
Iteration: 5, Func. Count: 44, Neg. LLF: 120.13435083714734
Iteration: 6, Func. Count: 53, Neg. LLF: 119.75384904675415
Iteration: 7, Func. Count: 61, Neg. LLF: 119.7493385133751
Iteration: 8, Func. Count: 69, Neg. LLF: 119.74684749658206
Iteration: 9, Func. Count: 77, Neg. LLF: 119.74667727947964
Iteration: 10, Func. Count: 85, Neg. LLF: 119.74663698125998
Iteration: 11, Func. Count: 93, Neg. LLF: 119.74663361962975
Iteration: 12, Func. Count: 100, Neg. LLF: 119.74663361962511
Optimization terminated successfully (Exit mode 0)
Current function value: 119.74663361962975
Iterations: 12
Function evaluations: 100
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 122.88610375838698
Iteration: 2, Func. Count: 21, Neg. LLF: 124.13945726173392
Iteration: 3, Func. Count: 31, Neg. LLF: 119.98757500429555
Iteration: 4, Func. Count: 40, Neg. LLF: 120.01723543927567
Iteration: 5, Func. Count: 50, Neg. LLF: 121.56134082338365
Iteration: 6, Func. Count: 61, Neg. LLF: 119.89118295416033
Iteration: 7, Func. Count: 71, Neg. LLF: 119.88347888988315
Iteration: 8, Func. Count: 80, Neg. LLF: 119.86900803412478
Iteration: 9, Func. Count: 89, Neg. LLF: 119.80214910392161
Iteration: 10, Func. Count: 98, Neg. LLF: 119.79073941135275
Iteration: 11, Func. Count: 107, Neg. LLF: 119.75555534769596
Iteration: 12, Func. Count: 116, Neg. LLF: 119.74753824824596
Iteration: 13, Func. Count: 125, Neg. LLF: 119.74685654132854
Iteration: 14, Func. Count: 134, Neg. LLF: 119.74669848436984
Iteration: 15, Func. Count: 143, Neg. LLF: 119.74663939423142
Iteration: 16, Func. Count: 152, Neg. LLF: 119.74663392696482
Iteration: 17, Func. Count: 160, Neg. LLF: 119.74663393350716
Optimization terminated successfully (Exit mode 0)
Current function value: 119.74663392696482
Iterations: 17
Function evaluations: 160
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 133.9994947546404
Iteration: 2, Func. Count: 22, Neg. LLF: 137.57662895957742
Iteration: 3, Func. Count: 34, Neg. LLF: 121.82022576045573
Iteration: 4, Func. Count: 45, Neg. LLF: 119.84307099670166
Iteration: 5, Func. Count: 55, Neg. LLF: 119.69637003414466
Iteration: 6, Func. Count: 65, Neg. LLF: 119.65470333335729
Iteration: 7, Func. Count: 75, Neg. LLF: 119.68858120561487
Iteration: 8, Func. Count: 86, Neg. LLF: 119.68560161433102
Iteration: 9, Func. Count: 97, Neg. LLF: 119.61659462453713
Iteration: 10, Func. Count: 107, Neg. LLF: 119.61507434928308
Iteration: 11, Func. Count: 117, Neg. LLF: 119.6126232200574
Iteration: 12, Func. Count: 127, Neg. LLF: 119.60695327524584
Iteration: 13, Func. Count: 137, Neg. LLF: 119.60082071162427
Iteration: 14, Func. Count: 147, Neg. LLF: 119.59841373205424
Iteration: 15, Func. Count: 157, Neg. LLF: 119.59836517035426
Iteration: 16, Func. Count: 167, Neg. LLF: 119.59835730093272
Iteration: 17, Func. Count: 176, Neg. LLF: 119.59835730094372
Optimization terminated successfully (Exit mode 0)
Current function value: 119.59835730093272
Iterations: 17
Function evaluations: 176
Gradient evaluations: 17
Iteration: 1, Func. Count: 12, Neg. LLF: 123.8149897038505
Iteration: 2, Func. Count: 25, Neg. LLF: 125.7575623192782
Iteration: 3, Func. Count: 37, Neg. LLF: 123.73264600434099
Iteration: 4, Func. Count: 49, Neg. LLF: 119.64834547601586
Iteration: 5, Func. Count: 60, Neg. LLF: 120.06178826816735
Iteration: 6, Func. Count: 72, Neg. LLF: 119.9037149750176
Iteration: 7, Func. Count: 84, Neg. LLF: 119.70060003781627
Iteration: 8, Func. Count: 96, Neg. LLF: 119.58219365630134
Iteration: 9, Func. Count: 107, Neg. LLF: 119.57868575360081
Iteration: 10, Func. Count: 118, Neg. LLF: 119.56719628384734
Iteration: 11, Func. Count: 129, Neg. LLF: 119.55933582488301
Iteration: 12, Func. Count: 140, Neg. LLF: 119.55562044674049
Iteration: 13, Func. Count: 151, Neg. LLF: 119.55516731854259
Iteration: 14, Func. Count: 162, Neg. LLF: 119.55516354579423
Iteration: 15, Func. Count: 173, Neg. LLF: 119.55516161491104
Iteration: 16, Func. Count: 183, Neg. LLF: 119.5551616149045
Optimization terminated successfully (Exit mode 0)
Current function value: 119.55516161491104
Iterations: 16
Function evaluations: 183
Gradient evaluations: 16
Iteration: 1, Func. Count: 13, Neg. LLF: 123.88729300737431
Iteration: 2, Func. Count: 27, Neg. LLF: 126.7196853253278
Iteration: 3, Func. Count: 40, Neg. LLF: 126.03690669622834
Iteration: 4, Func. Count: 53, Neg. LLF: 119.71869285439037
Iteration: 5, Func. Count: 65, Neg. LLF: 121.63235934401605
Iteration: 6, Func. Count: 78, Neg. LLF: 120.29914150153216
Iteration: 7, Func. Count: 92, Neg. LLF: 120.12514912855218
Iteration: 8, Func. Count: 105, Neg. LLF: 119.55142448411915
Iteration: 9, Func. Count: 117, Neg. LLF: 119.54963692696633
Iteration: 10, Func. Count: 129, Neg. LLF: 119.54950913465728
Iteration: 11, Func. Count: 141, Neg. LLF: 119.54942990584152
Iteration: 12, Func. Count: 153, Neg. LLF: 119.54933380544684
Iteration: 13, Func. Count: 165, Neg. LLF: 119.54903967539506
Iteration: 14, Func. Count: 177, Neg. LLF: 119.5485741666262
Iteration: 15, Func. Count: 189, Neg. LLF: 119.5480491487584
Iteration: 16, Func. Count: 201, Neg. LLF: 119.54773578581695
Iteration: 17, Func. Count: 213, Neg. LLF: 119.54766886496499
Iteration: 18, Func. Count: 225, Neg. LLF: 119.54766702930574
Iteration: 19, Func. Count: 236, Neg. LLF: 119.54766702934745
Optimization terminated successfully (Exit mode 0)
Current function value: 119.54766702930574
Iterations: 19
Function evaluations: 236
Gradient evaluations: 19
Iteration: 1, Func. Count: 10, Neg. LLF: 129.82440175810856
Iteration: 2, Func. Count: 21, Neg. LLF: 129.67708977850089
Iteration: 3, Func. Count: 32, Neg. LLF: 119.86772171854771
Iteration: 4, Func. Count: 41, Neg. LLF: 120.47675094775492
Iteration: 5, Func. Count: 51, Neg. LLF: 119.76137693904556
Iteration: 6, Func. Count: 60, Neg. LLF: 119.75005606313984
Iteration: 7, Func. Count: 69, Neg. LLF: 119.74703594914999
Iteration: 8, Func. Count: 78, Neg. LLF: 119.7468644057011
Iteration: 9, Func. Count: 87, Neg. LLF: 119.74663410562606
Iteration: 10, Func. Count: 96, Neg. LLF: 119.74663359432785
Optimization terminated successfully (Exit mode 0)
Current function value: 119.74663359432785
Iterations: 10
Function evaluations: 96
Gradient evaluations: 10
Iteration: 1, Func. Count: 11, Neg. LLF: 122.47405534943465
Iteration: 2, Func. Count: 23, Neg. LLF: 144.2105147232967
Iteration: 3, Func. Count: 35, Neg. LLF: 121.6977932244298
Iteration: 4, Func. Count: 46, Neg. LLF: 119.9316710752173
Iteration: 5, Func. Count: 56, Neg. LLF: 120.37786341036399
Iteration: 6, Func. Count: 67, Neg. LLF: 119.9163339012328
Iteration: 7, Func. Count: 78, Neg. LLF: 119.90454621170413
Iteration: 8, Func. Count: 88, Neg. LLF: 119.9045362289606
Iteration: 9, Func. Count: 97, Neg. LLF: 119.90453622890293
Optimization terminated successfully (Exit mode 0)
Current function value: 119.9045362289606
Iterations: 9
Function evaluations: 97
Gradient evaluations: 9
Iteration: 1, Func. Count: 12, Neg. LLF: 136.5965509917565
Iteration: 2, Func. Count: 24, Neg. LLF: 143.75379710090522
Iteration: 3, Func. Count: 37, Neg. LLF: 123.44146543610202
Iteration: 4, Func. Count: 49, Neg. LLF: 119.86319517924419
Iteration: 5, Func. Count: 60, Neg. LLF: 120.39385283670619
Iteration: 6, Func. Count: 72, Neg. LLF: 120.34528936459053
Iteration: 7, Func. Count: 85, Neg. LLF: 119.66732836320733
Iteration: 8, Func. Count: 96, Neg. LLF: 119.62237021519094
Iteration: 9, Func. Count: 107, Neg. LLF: 119.61664550866335
Iteration: 10, Func. Count: 118, Neg. LLF: 119.61446119296154
Iteration: 11, Func. Count: 129, Neg. LLF: 119.61253925460136
Iteration: 12, Func. Count: 140, Neg. LLF: 119.60708825647188
Iteration: 13, Func. Count: 151, Neg. LLF: 119.6003692358084
Iteration: 14, Func. Count: 162, Neg. LLF: 119.59869053730174
Iteration: 15, Func. Count: 173, Neg. LLF: 119.59836609278338
Iteration: 16, Func. Count: 184, Neg. LLF: 119.59835877716144
Iteration: 17, Func. Count: 195, Neg. LLF: 119.59835736452638
Iteration: 18, Func. Count: 205, Neg. LLF: 119.59835736456746
Optimization terminated successfully (Exit mode 0)
Current function value: 119.59835736452638
Iterations: 18
Function evaluations: 205
Gradient evaluations: 18
Iteration: 1, Func. Count: 13, Neg. LLF: 124.64355155383856
Iteration: 2, Func. Count: 27, Neg. LLF: 127.08893844979714
Iteration: 3, Func. Count: 40, Neg. LLF: 124.38668889774094
Iteration: 4, Func. Count: 53, Neg. LLF: 119.64976581912383
Iteration: 5, Func. Count: 65, Neg. LLF: 120.22211844537381
Iteration: 6, Func. Count: 78, Neg. LLF: 119.94360667247358
Iteration: 7, Func. Count: 91, Neg. LLF: 119.60148314981816
Iteration: 8, Func. Count: 104, Neg. LLF: 119.58248534894568
Iteration: 9, Func. Count: 116, Neg. LLF: 119.57896378340241
Iteration: 10, Func. Count: 128, Neg. LLF: 119.5632592945269
Iteration: 11, Func. Count: 140, Neg. LLF: 119.55778460441562
Iteration: 12, Func. Count: 152, Neg. LLF: 119.55522693781894
Iteration: 13, Func. Count: 164, Neg. LLF: 119.55517247168443
Iteration: 14, Func. Count: 176, Neg. LLF: 119.55516302356656
Iteration: 15, Func. Count: 188, Neg. LLF: 119.55516160969789
Iteration: 16, Func. Count: 199, Neg. LLF: 119.555161609711
Optimization terminated successfully (Exit mode 0)
Current function value: 119.55516160969789
Iterations: 16
Function evaluations: 199
Gradient evaluations: 16
Iteration: 1, Func. Count: 14, Neg. LLF: 124.65598006264601
Iteration: 2, Func. Count: 29, Neg. LLF: 127.83966328021704
Iteration: 3, Func. Count: 43, Neg. LLF: 128.11204962331158
Iteration: 4, Func. Count: 58, Neg. LLF: 119.71088296330137
Iteration: 5, Func. Count: 71, Neg. LLF: 121.29938630665546
Iteration: 6, Func. Count: 85, Neg. LLF: 120.28294388719242
Iteration: 7, Func. Count: 100, Neg. LLF: 119.75364608764322
Iteration: 8, Func. Count: 114, Neg. LLF: 119.55118637061193
Iteration: 9, Func. Count: 127, Neg. LLF: 119.5496327810162
Iteration: 10, Func. Count: 140, Neg. LLF: 119.54953951169344
Iteration: 11, Func. Count: 153, Neg. LLF: 119.5494549337306
Iteration: 12, Func. Count: 166, Neg. LLF: 119.54932026424991
Iteration: 13, Func. Count: 179, Neg. LLF: 119.54897910022196
Iteration: 14, Func. Count: 192, Neg. LLF: 119.54843358068928
Iteration: 15, Func. Count: 205, Neg. LLF: 119.54792574083777
Iteration: 16, Func. Count: 218, Neg. LLF: 119.54769906112816
Iteration: 17, Func. Count: 231, Neg. LLF: 119.54766804970184
Iteration: 18, Func. Count: 244, Neg. LLF: 119.5476669503833
Iteration: 19, Func. Count: 256, Neg. LLF: 119.54766695039703
Optimization terminated successfully (Exit mode 0)
Current function value: 119.5476669503833
Iterations: 19
Function evaluations: 256
Gradient evaluations: 19
Iteration: 1, Func. Count: 7, Neg. LLF: 126.81374155176542
Iteration: 2, Func. Count: 14, Neg. LLF: 129.81792928799211
Iteration: 3, Func. Count: 21, Neg. LLF: 120.25270880090837
Iteration: 4, Func. Count: 27, Neg. LLF: 120.14488350250251
Iteration: 5, Func. Count: 33, Neg. LLF: 120.23938942053772
Iteration: 6, Func. Count: 40, Neg. LLF: 120.15181885647681
Iteration: 7, Func. Count: 47, Neg. LLF: 120.10005228890915
Iteration: 8, Func. Count: 53, Neg. LLF: 120.10005081640779
Iteration: 9, Func. Count: 58, Neg. LLF: 120.10005081641488
Optimization terminated successfully (Exit mode 0)
Current function value: 120.10005081640779
Iterations: 9
Function evaluations: 58
Gradient evaluations: 9
Iteration: 1, Func. Count: 8, Neg. LLF: 24567199.576279216
Iteration: 2, Func. Count: 18, Neg. LLF: 120.24632098468344
Iteration: 3, Func. Count: 25, Neg. LLF: 120.13424613956968
Iteration: 4, Func. Count: 32, Neg. LLF: 120.52226604169546
Iteration: 5, Func. Count: 40, Neg. LLF: 119.99833233739848
Iteration: 6, Func. Count: 47, Neg. LLF: 119.99240813298407
Iteration: 7, Func. Count: 54, Neg. LLF: 119.9911323100101
Iteration: 8, Func. Count: 61, Neg. LLF: 119.99110534537404
Iteration: 9, Func. Count: 67, Neg. LLF: 119.99110534550945
Optimization terminated successfully (Exit mode 0)
Current function value: 119.99110534537404
Iterations: 9
Function evaluations: 67
Gradient evaluations: 9
Iteration: 1, Func. Count: 9, Neg. LLF: 24560690.038708005
Iteration: 2, Func. Count: 19, Neg. LLF: 120.2057208765222
Iteration: 3, Func. Count: 27, Neg. LLF: 120.01876931171124
Iteration: 4, Func. Count: 35, Neg. LLF: 120.5245409635669
Iteration: 5, Func. Count: 44, Neg. LLF: 119.99560643399279
Iteration: 6, Func. Count: 52, Neg. LLF: 119.9947075433624
Iteration: 7, Func. Count: 60, Neg. LLF: 119.99467588594275
Iteration: 8, Func. Count: 68, Neg. LLF: 119.99466723528168
Iteration: 9, Func. Count: 76, Neg. LLF: 119.99464034481402
Iteration: 10, Func. Count: 84, Neg. LLF: 119.9944879898578
Iteration: 11, Func. Count: 92, Neg. LLF: 119.9846778801379
Iteration: 12, Func. Count: 100, Neg. LLF: 24600931.18411431
Iteration: 13, Func. Count: 111, Neg. LLF: 120.03738478649048
Iteration: 14, Func. Count: 120, Neg. LLF: 119.98235123683446
Iteration: 15, Func. Count: 127, Neg. LLF: 119.98235123767013
Optimization terminated successfully (Exit mode 0)
Current function value: 119.98235123683446
Iterations: 16
Function evaluations: 127
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 24554042.892901022
Iteration: 2, Func. Count: 21, Neg. LLF: 120.18908704450965
Iteration: 3, Func. Count: 30, Neg. LLF: 120.03582721854103
Iteration: 4, Func. Count: 39, Neg. LLF: 120.44435092177945
Iteration: 5, Func. Count: 49, Neg. LLF: 119.99829769264517
Iteration: 6, Func. Count: 58, Neg. LLF: 119.99777654603822
Iteration: 7, Func. Count: 67, Neg. LLF: 119.9964149636104
Iteration: 8, Func. Count: 76, Neg. LLF: 119.99443224107725
Iteration: 9, Func. Count: 85, Neg. LLF: 119.99268914802418
Iteration: 10, Func. Count: 94, Neg. LLF: 119.99010409370166
Iteration: 11, Func. Count: 103, Neg. LLF: 119.98891580480559
Iteration: 12, Func. Count: 112, Neg. LLF: 119.98763502874
Iteration: 13, Func. Count: 121, Neg. LLF: 119.98072234172764
Iteration: 14, Func. Count: 130, Neg. LLF: 119.97218234597642
Iteration: 15, Func. Count: 139, Neg. LLF: 24521178.885894556
Iteration: 16, Func. Count: 152, Neg. LLF: 119.97226638573558
Iteration: 17, Func. Count: 162, Neg. LLF: 119.97197681258683
Iteration: 18, Func. Count: 170, Neg. LLF: 119.97197681258727
Optimization terminated successfully (Exit mode 0)
Current function value: 119.97197681258683
Iterations: 19
Function evaluations: 170
Gradient evaluations: 18
Iteration: 1, Func. Count: 11, Neg. LLF: 24550340.894811433
Iteration: 2, Func. Count: 23, Neg. LLF: 508.81162110480074
Iteration: 3, Func. Count: 35, Neg. LLF: 119.92581373248925
Iteration: 4, Func. Count: 45, Neg. LLF: 120.2753835785364
Iteration: 5, Func. Count: 56, Neg. LLF: 119.84698591499122
Iteration: 6, Func. Count: 67, Neg. LLF: 119.57684576908206
Iteration: 7, Func. Count: 77, Neg. LLF: 119.62141876799434
Iteration: 8, Func. Count: 88, Neg. LLF: 119.49266596670019
Iteration: 9, Func. Count: 98, Neg. LLF: 119.46992729438205
Iteration: 10, Func. Count: 108, Neg. LLF: 119.46964155112894
Iteration: 11, Func. Count: 118, Neg. LLF: 119.46961632629572
Iteration: 12, Func. Count: 127, Neg. LLF: 119.4696163262036
Optimization terminated successfully (Exit mode 0)
Current function value: 119.46961632629572
Iterations: 12
Function evaluations: 127
Gradient evaluations: 12
Iteration: 1, Func. Count: 8, Neg. LLF: 125.1106404565225
Iteration: 2, Func. Count: 16, Neg. LLF: 120.82467457036878
Iteration: 3, Func. Count: 23, Neg. LLF: 120.32198765506023
Iteration: 4, Func. Count: 30, Neg. LLF: 132.46498623349433
Iteration: 5, Func. Count: 38, Neg. LLF: 124.03438870119668
Iteration: 6, Func. Count: 47, Neg. LLF: 120.12459562447114
Iteration: 7, Func. Count: 54, Neg. LLF: 120.07153345100646
Iteration: 8, Func. Count: 61, Neg. LLF: 120.06938253278321
Iteration: 9, Func. Count: 68, Neg. LLF: 120.06934707988047
Iteration: 10, Func. Count: 75, Neg. LLF: 120.06934572625369
Iteration: 11, Func. Count: 81, Neg. LLF: 120.06934572626346
Optimization terminated successfully (Exit mode 0)
Current function value: 120.06934572625369
Iterations: 11
Function evaluations: 81
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 24728877.82420975
Iteration: 2, Func. Count: 19, Neg. LLF: 124.39980087161932
Iteration: 3, Func. Count: 29, Neg. LLF: 120.17406490113002
Iteration: 4, Func. Count: 37, Neg. LLF: 120.10768728557255
Iteration: 5, Func. Count: 45, Neg. LLF: 120.10263399103027
Iteration: 6, Func. Count: 53, Neg. LLF: 120.10156197255534
Iteration: 7, Func. Count: 61, Neg. LLF: 120.10088843935682
Iteration: 8, Func. Count: 69, Neg. LLF: 120.09240573038046
Iteration: 9, Func. Count: 77, Neg. LLF: 120.02026314415383
Iteration: 10, Func. Count: 85, Neg. LLF: 120.14622857463904
Iteration: 11, Func. Count: 94, Neg. LLF: 119.99264612813411
Iteration: 12, Func. Count: 102, Neg. LLF: 119.99194608684844
Iteration: 13, Func. Count: 110, Neg. LLF: 119.99186863780018
Iteration: 14, Func. Count: 118, Neg. LLF: 119.9912601121383
Iteration: 15, Func. Count: 126, Neg. LLF: 8994979.297122808
Optimization terminated successfully (Exit mode 0)
Current function value: 119.99125959719049
Iterations: 15
Function evaluations: 130
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 148.32075170771176
Iteration: 2, Func. Count: 21, Neg. LLF: 120.5156846461507
Iteration: 3, Func. Count: 31, Neg. LLF: 120.12177642901143
Iteration: 4, Func. Count: 41, Neg. LLF: 119.94225035626285
Iteration: 5, Func. Count: 50, Neg. LLF: 121.42665778414377
Iteration: 6, Func. Count: 61, Neg. LLF: 119.90472284720609
Iteration: 7, Func. Count: 70, Neg. LLF: 119.86684384986198
Iteration: 8, Func. Count: 79, Neg. LLF: 119.86457103830624
Iteration: 9, Func. Count: 88, Neg. LLF: 119.86353328256513
Iteration: 10, Func. Count: 97, Neg. LLF: 119.86122708695618
Iteration: 11, Func. Count: 106, Neg. LLF: 119.85882212868805
Iteration: 12, Func. Count: 115, Neg. LLF: 119.84899104038479
Iteration: 13, Func. Count: 124, Neg. LLF: 119.8299663573863
Iteration: 14, Func. Count: 133, Neg. LLF: 119.82216896068846
Iteration: 15, Func. Count: 142, Neg. LLF: 119.81833448729559
Iteration: 16, Func. Count: 151, Neg. LLF: 119.81773858637587
Iteration: 17, Func. Count: 160, Neg. LLF: 119.81746615629893
Iteration: 18, Func. Count: 169, Neg. LLF: 119.81744373148693
Iteration: 19, Func. Count: 178, Neg. LLF: 119.81744264790079
Iteration: 20, Func. Count: 186, Neg. LLF: 119.8174426479056
Optimization terminated successfully (Exit mode 0)
Current function value: 119.81744264790079
Iterations: 20
Function evaluations: 186
Gradient evaluations: 20
Iteration: 1, Func. Count: 11, Neg. LLF: 157.05416730819633
Iteration: 2, Func. Count: 23, Neg. LLF: 122.0302062472886
Iteration: 3, Func. Count: 34, Neg. LLF: 120.25443320676077
Iteration: 4, Func. Count: 45, Neg. LLF: 119.91609838844762
Iteration: 5, Func. Count: 55, Neg. LLF: 125.05071391892963
Iteration: 6, Func. Count: 66, Neg. LLF: 119.85398657168014
Iteration: 7, Func. Count: 76, Neg. LLF: 119.8652477540001
Iteration: 8, Func. Count: 87, Neg. LLF: 119.84516433802203
Iteration: 9, Func. Count: 97, Neg. LLF: 119.83384051425986
Iteration: 10, Func. Count: 107, Neg. LLF: 119.784107364819
Iteration: 11, Func. Count: 117, Neg. LLF: 119.77646108523736
Iteration: 12, Func. Count: 127, Neg. LLF: 119.77203754780189
Iteration: 13, Func. Count: 137, Neg. LLF: 119.76535955356044
Iteration: 14, Func. Count: 147, Neg. LLF: 119.76425316653236
Iteration: 15, Func. Count: 157, Neg. LLF: 119.76416366451377
Iteration: 16, Func. Count: 167, Neg. LLF: 119.76415988495172
Iteration: 17, Func. Count: 177, Neg. LLF: 119.76415882753365
Iteration: 18, Func. Count: 186, Neg. LLF: 119.764158827517
Optimization terminated successfully (Exit mode 0)
Current function value: 119.76415882753365
Iterations: 18
Function evaluations: 186
Gradient evaluations: 18
Iteration: 1, Func. Count: 12, Neg. LLF: 143.03712400558467
Iteration: 2, Func. Count: 25, Neg. LLF: 166.42678641241847
Iteration: 3, Func. Count: 38, Neg. LLF: 120.07569292158601
Iteration: 4, Func. Count: 49, Neg. LLF: 119.95392454277852
Iteration: 5, Func. Count: 60, Neg. LLF: 119.9086691217089
Iteration: 6, Func. Count: 71, Neg. LLF: 119.8122571768026
Iteration: 7, Func. Count: 82, Neg. LLF: 119.77436660324527
Iteration: 8, Func. Count: 93, Neg. LLF: 119.78684151865751
Iteration: 9, Func. Count: 105, Neg. LLF: 119.65288401202272
Iteration: 10, Func. Count: 116, Neg. LLF: 119.50700845987963
Iteration: 11, Func. Count: 127, Neg. LLF: 119.4839308849397
Iteration: 12, Func. Count: 138, Neg. LLF: 119.47596528055033
Iteration: 13, Func. Count: 149, Neg. LLF: 119.47381615901516
Iteration: 14, Func. Count: 160, Neg. LLF: 119.46965244595205
Iteration: 15, Func. Count: 171, Neg. LLF: 119.46964126375848
Iteration: 16, Func. Count: 182, Neg. LLF: 119.46961578667252
Iteration: 17, Func. Count: 192, Neg. LLF: 119.46961578680538
Optimization terminated successfully (Exit mode 0)
Current function value: 119.46961578667252
Iterations: 17
Function evaluations: 192
Gradient evaluations: 17
Iteration: 1, Func. Count: 9, Neg. LLF: 129.90282724316333
Iteration: 2, Func. Count: 18, Neg. LLF: 138.38312378540778
Iteration: 3, Func. Count: 27, Neg. LLF: 120.32806862891435
Iteration: 4, Func. Count: 35, Neg. LLF: 120.27552565769754
Iteration: 5, Func. Count: 44, Neg. LLF: 121.019738696645
Iteration: 6, Func. Count: 53, Neg. LLF: 120.2004904852321
Iteration: 7, Func. Count: 62, Neg. LLF: 120.06980135053396
Iteration: 8, Func. Count: 70, Neg. LLF: 120.06934767615209
Iteration: 9, Func. Count: 78, Neg. LLF: 120.06934564153526
Iteration: 10, Func. Count: 85, Neg. LLF: 120.06934565667504
Optimization terminated successfully (Exit mode 0)
Current function value: 120.06934564153526
Iterations: 10
Function evaluations: 85
Gradient evaluations: 10
Iteration: 1, Func. Count: 10, Neg. LLF: 126.66602013416528
Iteration: 2, Func. Count: 21, Neg. LLF: 120.43181515122632
Iteration: 3, Func. Count: 31, Neg. LLF: 120.18105890711881
Iteration: 4, Func. Count: 40, Neg. LLF: 120.18609751207194
Iteration: 5, Func. Count: 50, Neg. LLF: 120.17044642662705
Iteration: 6, Func. Count: 60, Neg. LLF: 120.14892492160801
Iteration: 7, Func. Count: 70, Neg. LLF: 120.12794977704208
Iteration: 8, Func. Count: 79, Neg. LLF: 120.10882965547229
Iteration: 9, Func. Count: 88, Neg. LLF: 120.10500711719475
Iteration: 10, Func. Count: 97, Neg. LLF: 120.10300946137957
Iteration: 11, Func. Count: 106, Neg. LLF: 120.10272605884973
Iteration: 12, Func. Count: 115, Neg. LLF: 120.10264791219645
Iteration: 13, Func. Count: 124, Neg. LLF: 120.10255319865736
Iteration: 14, Func. Count: 133, Neg. LLF: 120.1025034834281
Iteration: 15, Func. Count: 142, Neg. LLF: 120.10118808580725
Iteration: 16, Func. Count: 151, Neg. LLF: 120.10002184131166
Iteration: 17, Func. Count: 160, Neg. LLF: 120.05974936836705
Iteration: 18, Func. Count: 169, Neg. LLF: 223.63545538476228
Iteration: 19, Func. Count: 183, Neg. LLF: 160.84432637741583
Optimization terminated successfully (Exit mode 0)
Current function value: 120.0577713567741
Iterations: 19
Function evaluations: 190
Gradient evaluations: 19
Iteration: 1, Func. Count: 11, Neg. LLF: 143.43745539225068
Iteration: 2, Func. Count: 23, Neg. LLF: 126.30021927692306
Iteration: 3, Func. Count: 35, Neg. LLF: 120.2656249180327
Iteration: 4, Func. Count: 46, Neg. LLF: 119.94634858295322
Iteration: 5, Func. Count: 56, Neg. LLF: 119.96469124063466
Iteration: 6, Func. Count: 67, Neg. LLF: 119.87202206483464
Iteration: 7, Func. Count: 78, Neg. LLF: 119.8681518624183
Iteration: 8, Func. Count: 88, Neg. LLF: 119.86528703021176
Iteration: 9, Func. Count: 98, Neg. LLF: 119.86072972300624
Iteration: 10, Func. Count: 108, Neg. LLF: 119.83225535210539
Iteration: 11, Func. Count: 118, Neg. LLF: 119.88098767944672
Iteration: 12, Func. Count: 129, Neg. LLF: 119.81874077928542
Iteration: 13, Func. Count: 139, Neg. LLF: 119.8181135230291
Iteration: 14, Func. Count: 149, Neg. LLF: 119.81746244302641
Iteration: 15, Func. Count: 159, Neg. LLF: 119.81744263420546
Iteration: 16, Func. Count: 168, Neg. LLF: 119.81744263423963
Optimization terminated successfully (Exit mode 0)
Current function value: 119.81744263420546
Iterations: 16
Function evaluations: 168
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 144.88179250328977
Iteration: 2, Func. Count: 25, Neg. LLF: 138.69656004686487
Iteration: 3, Func. Count: 38, Neg. LLF: 120.11393863064252
Iteration: 4, Func. Count: 49, Neg. LLF: 120.07827266575302
Iteration: 5, Func. Count: 60, Neg. LLF: 120.00246553367222
Iteration: 6, Func. Count: 71, Neg. LLF: 120.14642746620228
Iteration: 7, Func. Count: 83, Neg. LLF: 119.86215090127187
Iteration: 8, Func. Count: 94, Neg. LLF: 119.85430404897306
Iteration: 9, Func. Count: 105, Neg. LLF: 119.84329101348031
Iteration: 10, Func. Count: 116, Neg. LLF: 119.83649175612094
Iteration: 11, Func. Count: 127, Neg. LLF: 119.83011104264551
Iteration: 12, Func. Count: 138, Neg. LLF: 119.80791013552083
Iteration: 13, Func. Count: 149, Neg. LLF: 119.79652932150941
Iteration: 14, Func. Count: 160, Neg. LLF: 119.76970752924515
Iteration: 15, Func. Count: 171, Neg. LLF: 119.76529510203244
Iteration: 16, Func. Count: 182, Neg. LLF: 119.76452453521016
Iteration: 17, Func. Count: 193, Neg. LLF: 119.76420139091336
Iteration: 18, Func. Count: 204, Neg. LLF: 119.76416054271668
Iteration: 19, Func. Count: 215, Neg. LLF: 119.7641589404839
Iteration: 20, Func. Count: 225, Neg. LLF: 119.76415894059225
Optimization terminated successfully (Exit mode 0)
Current function value: 119.7641589404839
Iterations: 20
Function evaluations: 225
Gradient evaluations: 20
Iteration: 1, Func. Count: 13, Neg. LLF: 24515583.370074518
Iteration: 2, Func. Count: 27, Neg. LLF: 5685.059144502594
Iteration: 3, Func. Count: 41, Neg. LLF: 119.9889439704751
Iteration: 4, Func. Count: 53, Neg. LLF: 120.01081179525784
Iteration: 5, Func. Count: 66, Neg. LLF: 121.84259909985043
Iteration: 6, Func. Count: 79, Neg. LLF: 119.94175576112616
Iteration: 7, Func. Count: 93, Neg. LLF: 119.88131613828497
Iteration: 8, Func. Count: 105, Neg. LLF: 119.87200444165688
Iteration: 9, Func. Count: 117, Neg. LLF: 119.85728647268813
Iteration: 10, Func. Count: 129, Neg. LLF: 119.90090294761502
Iteration: 11, Func. Count: 142, Neg. LLF: 119.85481806022031
Iteration: 12, Func. Count: 155, Neg. LLF: 119.83020460387142
Iteration: 13, Func. Count: 168, Neg. LLF: 119.61648068980166
Iteration: 14, Func. Count: 180, Neg. LLF: 119.6349141210479
Iteration: 15, Func. Count: 193, Neg. LLF: 119.5413899222223
Iteration: 16, Func. Count: 205, Neg. LLF: 119.47361931700196
Iteration: 17, Func. Count: 217, Neg. LLF: 119.47013951323832
Iteration: 18, Func. Count: 229, Neg. LLF: 119.46964375963225
Iteration: 19, Func. Count: 241, Neg. LLF: 119.46962125515479
Iteration: 20, Func. Count: 253, Neg. LLF: 119.46961618169657
Iteration: 21, Func. Count: 264, Neg. LLF: 119.46961618166738
Optimization terminated successfully (Exit mode 0)
Current function value: 119.46961618169657
Iterations: 21
Function evaluations: 264
Gradient evaluations: 21
Iteration: 1, Func. Count: 10, Neg. LLF: 131.79490272613816
Iteration: 2, Func. Count: 20, Neg. LLF: 131.7019686202986
Iteration: 3, Func. Count: 30, Neg. LLF: 120.26384722237802
Iteration: 4, Func. Count: 39, Neg. LLF: 121.14243156794353
Iteration: 5, Func. Count: 49, Neg. LLF: 120.5494976803169
Iteration: 6, Func. Count: 59, Neg. LLF: 120.47531314734971
Iteration: 7, Func. Count: 69, Neg. LLF: 119.82236421439002
Iteration: 8, Func. Count: 79, Neg. LLF: 119.75184931624939
Iteration: 9, Func. Count: 88, Neg. LLF: 119.74720252106371
Iteration: 10, Func. Count: 97, Neg. LLF: 119.74670381712657
Iteration: 11, Func. Count: 106, Neg. LLF: 119.74663852537321
Iteration: 12, Func. Count: 115, Neg. LLF: 119.74663383733285
Iteration: 13, Func. Count: 123, Neg. LLF: 119.74663383730912
Optimization terminated successfully (Exit mode 0)
Current function value: 119.74663383733285
Iterations: 13
Function evaluations: 123
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 122.85670609758309
Iteration: 2, Func. Count: 23, Neg. LLF: 124.2758501992248
Iteration: 3, Func. Count: 34, Neg. LLF: 119.96638976563183
Iteration: 4, Func. Count: 44, Neg. LLF: 120.02052503323608
Iteration: 5, Func. Count: 55, Neg. LLF: 121.35934766334198
Iteration: 6, Func. Count: 67, Neg. LLF: 119.88840392643
Iteration: 7, Func. Count: 78, Neg. LLF: 119.88346133586712
Iteration: 8, Func. Count: 88, Neg. LLF: 119.86797564776101
Iteration: 9, Func. Count: 98, Neg. LLF: 119.78538515458791
Iteration: 10, Func. Count: 108, Neg. LLF: 119.77440616948304
Iteration: 11, Func. Count: 118, Neg. LLF: 119.74820758675918
Iteration: 12, Func. Count: 128, Neg. LLF: 119.74674943283762
Iteration: 13, Func. Count: 138, Neg. LLF: 119.74666520966984
Iteration: 14, Func. Count: 148, Neg. LLF: 119.74664192434116
Iteration: 15, Func. Count: 158, Neg. LLF: 119.74663420685663
Iteration: 16, Func. Count: 167, Neg. LLF: 119.74663421340236
Optimization terminated successfully (Exit mode 0)
Current function value: 119.74663420685663
Iterations: 16
Function evaluations: 167
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 134.6088776969543
Iteration: 2, Func. Count: 24, Neg. LLF: 121.05542788985358
Iteration: 3, Func. Count: 36, Neg. LLF: 128.15927228309604
Iteration: 4, Func. Count: 49, Neg. LLF: 119.84392516493946
Iteration: 5, Func. Count: 61, Neg. LLF: 119.77564773736265
Iteration: 6, Func. Count: 73, Neg. LLF: 119.86298506495379
Iteration: 7, Func. Count: 86, Neg. LLF: 119.61958101732978
Iteration: 8, Func. Count: 97, Neg. LLF: 119.61673405078837
Iteration: 9, Func. Count: 108, Neg. LLF: 119.61348335564243
Iteration: 10, Func. Count: 119, Neg. LLF: 119.6087627340153
Iteration: 11, Func. Count: 130, Neg. LLF: 119.60111308176913
Iteration: 12, Func. Count: 141, Neg. LLF: 119.59875538535583
Iteration: 13, Func. Count: 152, Neg. LLF: 119.59836863867667
Iteration: 14, Func. Count: 163, Neg. LLF: 119.59835799236377
Iteration: 15, Func. Count: 174, Neg. LLF: 119.59835728748442
Optimization terminated successfully (Exit mode 0)
Current function value: 119.59835728748442
Iterations: 15
Function evaluations: 174
Gradient evaluations: 15
Iteration: 1, Func. Count: 13, Neg. LLF: 123.91282902613821
Iteration: 2, Func. Count: 27, Neg. LLF: 125.80936891637255
Iteration: 3, Func. Count: 40, Neg. LLF: 123.10545389602363
Iteration: 4, Func. Count: 53, Neg. LLF: 119.64892176026956
Iteration: 5, Func. Count: 65, Neg. LLF: 120.05468708061436
Iteration: 6, Func. Count: 78, Neg. LLF: 119.86726292146705
Iteration: 7, Func. Count: 91, Neg. LLF: 119.72634015185318
Iteration: 8, Func. Count: 104, Neg. LLF: 119.58234742762158
Iteration: 9, Func. Count: 116, Neg. LLF: 119.57875481629009
Iteration: 10, Func. Count: 128, Neg. LLF: 119.56737818229199
Iteration: 11, Func. Count: 140, Neg. LLF: 119.55942030511835
Iteration: 12, Func. Count: 152, Neg. LLF: 119.55565124661887
Iteration: 13, Func. Count: 164, Neg. LLF: 119.55516632089095
Iteration: 14, Func. Count: 176, Neg. LLF: 119.55516279409498
Iteration: 15, Func. Count: 188, Neg. LLF: 119.55516164176841
Iteration: 16, Func. Count: 199, Neg. LLF: 119.55516164174573
Optimization terminated successfully (Exit mode 0)
Current function value: 119.55516164176841
Iterations: 16
Function evaluations: 199
Gradient evaluations: 16
Iteration: 1, Func. Count: 14, Neg. LLF: 123.98992148864183
Iteration: 2, Func. Count: 29, Neg. LLF: 126.73811326135771
Iteration: 3, Func. Count: 43, Neg. LLF: 125.09188512349672
Iteration: 4, Func. Count: 57, Neg. LLF: 119.71645951687243
Iteration: 5, Func. Count: 70, Neg. LLF: 121.4355970699242
Iteration: 6, Func. Count: 84, Neg. LLF: 120.29569496346346
Iteration: 7, Func. Count: 99, Neg. LLF: 120.11746743286909
Iteration: 8, Func. Count: 113, Neg. LLF: 119.55122678259855
Iteration: 9, Func. Count: 126, Neg. LLF: 119.54963553741273
Iteration: 10, Func. Count: 139, Neg. LLF: 119.54950366294739
Iteration: 11, Func. Count: 152, Neg. LLF: 119.54942495256394
Iteration: 12, Func. Count: 165, Neg. LLF: 119.54932560454593
Iteration: 13, Func. Count: 178, Neg. LLF: 119.54903407044786
Iteration: 14, Func. Count: 191, Neg. LLF: 119.54856658653547
Iteration: 15, Func. Count: 204, Neg. LLF: 119.54804308046637
Iteration: 16, Func. Count: 217, Neg. LLF: 119.54773354114087
Iteration: 17, Func. Count: 230, Neg. LLF: 119.54766879231722
Iteration: 18, Func. Count: 243, Neg. LLF: 119.54766702666252
Iteration: 19, Func. Count: 255, Neg. LLF: 119.5476670267026
Optimization terminated successfully (Exit mode 0)
Current function value: 119.54766702666252
Iterations: 19
Function evaluations: 255
Gradient evaluations: 19
Iteration: 1, Func. Count: 11, Neg. LLF: 128.49011456552145
Iteration: 2, Func. Count: 22, Neg. LLF: 129.39711320867167
Iteration: 3, Func. Count: 33, Neg. LLF: 120.31558188980141
Iteration: 4, Func. Count: 43, Neg. LLF: 121.34114023617153
Iteration: 5, Func. Count: 54, Neg. LLF: 120.5458314740261
Iteration: 6, Func. Count: 65, Neg. LLF: 120.89214993059402
Iteration: 7, Func. Count: 76, Neg. LLF: 120.05454226271053
Iteration: 8, Func. Count: 87, Neg. LLF: 119.75594773703102
Iteration: 9, Func. Count: 97, Neg. LLF: 119.74708971145068
Iteration: 10, Func. Count: 107, Neg. LLF: 119.74668779022652
Iteration: 11, Func. Count: 117, Neg. LLF: 119.74663622318944
Iteration: 12, Func. Count: 127, Neg. LLF: 119.74663363428535
Iteration: 13, Func. Count: 136, Neg. LLF: 119.74663366530851
Optimization terminated successfully (Exit mode 0)
Current function value: 119.74663363428535
Iterations: 13
Function evaluations: 136
Gradient evaluations: 13
Iteration: 1, Func. Count: 12, Neg. LLF: 122.3809255908344
Iteration: 2, Func. Count: 25, Neg. LLF: 145.93577989802873
Iteration: 3, Func. Count: 38, Neg. LLF: 121.66517890840166
Iteration: 4, Func. Count: 50, Neg. LLF: 119.93137950869735
Iteration: 5, Func. Count: 61, Neg. LLF: 120.34076631123249
Iteration: 6, Func. Count: 73, Neg. LLF: 119.91510343179783
Iteration: 7, Func. Count: 85, Neg. LLF: 119.9045451675566
Iteration: 8, Func. Count: 96, Neg. LLF: 119.90453676403261
Iteration: 9, Func. Count: 106, Neg. LLF: 119.90453676398928
Optimization terminated successfully (Exit mode 0)
Current function value: 119.90453676403261
Iterations: 9
Function evaluations: 106
Gradient evaluations: 9
Iteration: 1, Func. Count: 13, Neg. LLF: 137.21739033516502
Iteration: 2, Func. Count: 26, Neg. LLF: 144.70090357057975
Iteration: 3, Func. Count: 40, Neg. LLF: 123.31797452736295
Iteration: 4, Func. Count: 53, Neg. LLF: 119.85547385481861
Iteration: 5, Func. Count: 65, Neg. LLF: 120.37282641736762
Iteration: 6, Func. Count: 78, Neg. LLF: 120.34267853579976
Iteration: 7, Func. Count: 92, Neg. LLF: 119.65352429890899
Iteration: 8, Func. Count: 104, Neg. LLF: 119.62276824093998
Iteration: 9, Func. Count: 116, Neg. LLF: 119.61680043674788
Iteration: 10, Func. Count: 128, Neg. LLF: 119.61448454318628
Iteration: 11, Func. Count: 140, Neg. LLF: 119.61265543140419
Iteration: 12, Func. Count: 152, Neg. LLF: 119.606497059975
Iteration: 13, Func. Count: 164, Neg. LLF: 119.59986594141373
Iteration: 14, Func. Count: 176, Neg. LLF: 119.59857056729061
Iteration: 15, Func. Count: 188, Neg. LLF: 119.598359854212
Iteration: 16, Func. Count: 200, Neg. LLF: 119.5983578253039
Iteration: 17, Func. Count: 212, Neg. LLF: 119.59835726855304
Optimization terminated successfully (Exit mode 0)
Current function value: 119.59835726855304
Iterations: 17
Function evaluations: 212
Gradient evaluations: 17
Iteration: 1, Func. Count: 14, Neg. LLF: 124.79210161761168
Iteration: 2, Func. Count: 29, Neg. LLF: 127.18608772253694
Iteration: 3, Func. Count: 43, Neg. LLF: 123.70854835686937
Iteration: 4, Func. Count: 57, Neg. LLF: 119.65060718718483
Iteration: 5, Func. Count: 70, Neg. LLF: 120.18083281443401
Iteration: 6, Func. Count: 84, Neg. LLF: 119.93057719704596
Iteration: 7, Func. Count: 98, Neg. LLF: 119.60468415899844
Iteration: 8, Func. Count: 112, Neg. LLF: 119.58286875724956
Iteration: 9, Func. Count: 125, Neg. LLF: 119.57936227595361
Iteration: 10, Func. Count: 138, Neg. LLF: 119.5635247615564
Iteration: 11, Func. Count: 151, Neg. LLF: 119.55789842877248
Iteration: 12, Func. Count: 164, Neg. LLF: 119.55522249959733
Iteration: 13, Func. Count: 177, Neg. LLF: 119.55516942974965
Iteration: 14, Func. Count: 190, Neg. LLF: 119.5551625504714
Iteration: 15, Func. Count: 203, Neg. LLF: 119.55516167201404
Optimization terminated successfully (Exit mode 0)
Current function value: 119.55516167201404
Iterations: 15
Function evaluations: 203
Gradient evaluations: 15
Iteration: 1, Func. Count: 15, Neg. LLF: 124.81000739929634
Iteration: 2, Func. Count: 31, Neg. LLF: 127.90225303537228
Iteration: 3, Func. Count: 46, Neg. LLF: 127.08532109144045
Iteration: 4, Func. Count: 61, Neg. LLF: 119.69749422286124
Iteration: 5, Func. Count: 75, Neg. LLF: 122.27722279264097
Iteration: 6, Func. Count: 91, Neg. LLF: 120.42728659263419
Iteration: 7, Func. Count: 107, Neg. LLF: 119.7220027260883
Iteration: 8, Func. Count: 122, Neg. LLF: 119.55012526438051
Iteration: 9, Func. Count: 136, Neg. LLF: 119.54952553362192
Iteration: 10, Func. Count: 150, Neg. LLF: 119.5494730908313
Iteration: 11, Func. Count: 164, Neg. LLF: 119.5493048132885
Iteration: 12, Func. Count: 178, Neg. LLF: 119.54911339155589
Iteration: 13, Func. Count: 192, Neg. LLF: 119.54861772301186
Iteration: 14, Func. Count: 206, Neg. LLF: 119.54807142616049
Iteration: 15, Func. Count: 220, Neg. LLF: 119.54775097021468
Iteration: 16, Func. Count: 234, Neg. LLF: 119.54767208168069
Iteration: 17, Func. Count: 248, Neg. LLF: 119.54766714668042
Iteration: 18, Func. Count: 261, Neg. LLF: 119.54766714668531
Optimization terminated successfully (Exit mode 0)
Current function value: 119.54766714668042
Iterations: 18
Function evaluations: 261
Gradient evaluations: 18
Iteration: 1, Func. Count: 8, Neg. LLF: 124.81527306439575
Iteration: 2, Func. Count: 16, Neg. LLF: 123.34394837751319
Iteration: 3, Func. Count: 24, Neg. LLF: 120.57736860702023
Iteration: 4, Func. Count: 31, Neg. LLF: 120.4456933336091
Iteration: 5, Func. Count: 38, Neg. LLF: 120.17215322549875
Iteration: 6, Func. Count: 45, Neg. LLF: 120.37329528038275
Iteration: 7, Func. Count: 53, Neg. LLF: 120.10168662563713
Iteration: 8, Func. Count: 60, Neg. LLF: 120.10007909076964
Iteration: 9, Func. Count: 67, Neg. LLF: 120.10005110122215
Iteration: 10, Func. Count: 73, Neg. LLF: 120.10005117295309
Optimization terminated successfully (Exit mode 0)
Current function value: 120.10005110122215
Iterations: 10
Function evaluations: 73
Gradient evaluations: 10
Iteration: 1, Func. Count: 9, Neg. LLF: 24557006.026484385
Iteration: 2, Func. Count: 20, Neg. LLF: 120.23319609893727
Iteration: 3, Func. Count: 28, Neg. LLF: 120.22352702920833
Iteration: 4, Func. Count: 37, Neg. LLF: 120.06080464337835
Iteration: 5, Func. Count: 45, Neg. LLF: 120.00406142282488
Iteration: 6, Func. Count: 53, Neg. LLF: 120.00232581774782
Iteration: 7, Func. Count: 62, Neg. LLF: 119.99110540062591
Iteration: 8, Func. Count: 69, Neg. LLF: 119.99110540062502
Optimization terminated successfully (Exit mode 0)
Current function value: 119.99110540062591
Iterations: 8
Function evaluations: 69
Gradient evaluations: 8
Iteration: 1, Func. Count: 10, Neg. LLF: 24547492.651447
Iteration: 2, Func. Count: 21, Neg. LLF: 120.18431151226976
Iteration: 3, Func. Count: 30, Neg. LLF: 120.01748348696843
Iteration: 4, Func. Count: 39, Neg. LLF: 120.49496812756541
Iteration: 5, Func. Count: 49, Neg. LLF: 119.99598399163885
Iteration: 6, Func. Count: 58, Neg. LLF: 119.99472420498068
Iteration: 7, Func. Count: 67, Neg. LLF: 119.99471521642424
Iteration: 8, Func. Count: 76, Neg. LLF: 119.9947099913665
Iteration: 9, Func. Count: 85, Neg. LLF: 119.99468465941948
Iteration: 10, Func. Count: 94, Neg. LLF: 119.99449763707979
Iteration: 11, Func. Count: 103, Neg. LLF: 119.98461723645109
Iteration: 12, Func. Count: 112, Neg. LLF: 24558916.169181947
Iteration: 13, Func. Count: 124, Neg. LLF: 120.0048137578498
Iteration: 14, Func. Count: 134, Neg. LLF: 119.98235104265915
Iteration: 15, Func. Count: 142, Neg. LLF: 119.98235104312731
Optimization terminated successfully (Exit mode 0)
Current function value: 119.98235104265915
Iterations: 16
Function evaluations: 142
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 24541907.3729971
Iteration: 2, Func. Count: 23, Neg. LLF: 120.16281827957287
Iteration: 3, Func. Count: 33, Neg. LLF: 120.03052749427249
Iteration: 4, Func. Count: 43, Neg. LLF: 120.37339860624465
Iteration: 5, Func. Count: 54, Neg. LLF: 119.99708706555668
Iteration: 6, Func. Count: 64, Neg. LLF: 119.99630880437428
Iteration: 7, Func. Count: 74, Neg. LLF: 119.9938823772841
Iteration: 8, Func. Count: 84, Neg. LLF: 119.99048576617191
Iteration: 9, Func. Count: 94, Neg. LLF: 119.9886372813657
Iteration: 10, Func. Count: 104, Neg. LLF: 119.9868039993022
Iteration: 11, Func. Count: 114, Neg. LLF: 119.98571322496528
Iteration: 12, Func. Count: 124, Neg. LLF: 119.97641730248857
Iteration: 13, Func. Count: 134, Neg. LLF: 119.97493806841588
Iteration: 14, Func. Count: 144, Neg. LLF: 119.97421645105712
Iteration: 15, Func. Count: 154, Neg. LLF: 119.97382558058867
Iteration: 16, Func. Count: 164, Neg. LLF: 119.97344382716057
Iteration: 17, Func. Count: 174, Neg. LLF: 119.97232964108778
Iteration: 18, Func. Count: 184, Neg. LLF: 119.97254119659812
Optimization terminated successfully (Exit mode 0)
Current function value: 119.97232889662808
Iterations: 18
Function evaluations: 185
Gradient evaluations: 18
Iteration: 1, Func. Count: 12, Neg. LLF: 24540336.227150563
Iteration: 2, Func. Count: 25, Neg. LLF: 664.4893550699983
Iteration: 3, Func. Count: 38, Neg. LLF: 119.90271130801177
Iteration: 4, Func. Count: 49, Neg. LLF: 120.237468527925
Iteration: 5, Func. Count: 61, Neg. LLF: 119.7029298010909
Iteration: 6, Func. Count: 72, Neg. LLF: 119.60125898465338
Iteration: 7, Func. Count: 83, Neg. LLF: 121.60631941487242
Iteration: 8, Func. Count: 95, Neg. LLF: 119.47675352137989
Iteration: 9, Func. Count: 106, Neg. LLF: 119.47015642081423
Iteration: 10, Func. Count: 117, Neg. LLF: 119.46966407048355
Iteration: 11, Func. Count: 128, Neg. LLF: 119.46961703240659
Iteration: 12, Func. Count: 139, Neg. LLF: 119.46961617500376
Optimization terminated successfully (Exit mode 0)
Current function value: 119.46961617500376
Iterations: 12
Function evaluations: 139
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 125.20886729714128
Iteration: 2, Func. Count: 18, Neg. LLF: 125.97672327381915
Iteration: 3, Func. Count: 27, Neg. LLF: 120.56481466336247
Iteration: 4, Func. Count: 35, Neg. LLF: 120.49351884144784
Iteration: 5, Func. Count: 44, Neg. LLF: 120.89400396527938
Iteration: 6, Func. Count: 54, Neg. LLF: 120.34275046508233
Iteration: 7, Func. Count: 63, Neg. LLF: 120.07003682886983
Iteration: 8, Func. Count: 71, Neg. LLF: 120.06936253845929
Iteration: 9, Func. Count: 79, Neg. LLF: 120.0693456357082
Iteration: 10, Func. Count: 86, Neg. LLF: 120.06934563571882
Optimization terminated successfully (Exit mode 0)
Current function value: 120.0693456357082
Iterations: 10
Function evaluations: 86
Gradient evaluations: 10
Iteration: 1, Func. Count: 10, Neg. LLF: 24753757.805125814
Iteration: 2, Func. Count: 21, Neg. LLF: 127.99420461553743
Iteration: 3, Func. Count: 32, Neg. LLF: 120.19005911014602
Iteration: 4, Func. Count: 41, Neg. LLF: 120.10512520782723
Iteration: 5, Func. Count: 50, Neg. LLF: 120.10210155841912
Iteration: 6, Func. Count: 59, Neg. LLF: 120.10134791021767
Iteration: 7, Func. Count: 68, Neg. LLF: 120.1004042592405
Iteration: 8, Func. Count: 77, Neg. LLF: 120.08825860173168
Iteration: 9, Func. Count: 86, Neg. LLF: 120.01693789357492
Iteration: 10, Func. Count: 95, Neg. LLF: 119.99709678974914
Iteration: 11, Func. Count: 104, Neg. LLF: 119.9967656684516
Iteration: 12, Func. Count: 114, Neg. LLF: 119.99327950657104
Iteration: 13, Func. Count: 123, Neg. LLF: 119.99232196648012
Iteration: 14, Func. Count: 132, Neg. LLF: 119.9922232393605
Iteration: 15, Func. Count: 141, Neg. LLF: 119.99203297754066
Iteration: 16, Func. Count: 150, Neg. LLF: 120.09078801318687
Iteration: 17, Func. Count: 162, Neg. LLF: 119.99111564828375
Iteration: 18, Func. Count: 171, Neg. LLF: 119.99110969948654
Iteration: 19, Func. Count: 180, Neg. LLF: 119.99110556109649
Iteration: 20, Func. Count: 188, Neg. LLF: 119.99110556235586
Optimization terminated successfully (Exit mode 0)
Current function value: 119.99110556109649
Iterations: 21
Function evaluations: 188
Gradient evaluations: 20
Iteration: 1, Func. Count: 11, Neg. LLF: 150.01771318443713
Iteration: 2, Func. Count: 23, Neg. LLF: 120.52716288810139
Iteration: 3, Func. Count: 34, Neg. LLF: 119.98194232036151
Iteration: 4, Func. Count: 44, Neg. LLF: 120.27470949467973
Iteration: 5, Func. Count: 55, Neg. LLF: 119.868201885495
Iteration: 6, Func. Count: 65, Neg. LLF: 119.87219530922982
Iteration: 7, Func. Count: 76, Neg. LLF: 119.8684400755151
Iteration: 8, Func. Count: 87, Neg. LLF: 119.86591299509614
Iteration: 9, Func. Count: 97, Neg. LLF: 119.86061583962267
Iteration: 10, Func. Count: 107, Neg. LLF: 119.85392447996446
Iteration: 11, Func. Count: 117, Neg. LLF: 119.84599382402706
Iteration: 12, Func. Count: 127, Neg. LLF: 119.82523744533343
Iteration: 13, Func. Count: 137, Neg. LLF: 119.9113600973522
Iteration: 14, Func. Count: 148, Neg. LLF: 119.81825453896374
Iteration: 15, Func. Count: 158, Neg. LLF: 119.81780834274383
Iteration: 16, Func. Count: 168, Neg. LLF: 119.81755698690591
Iteration: 17, Func. Count: 178, Neg. LLF: 119.81746840747752
Iteration: 18, Func. Count: 188, Neg. LLF: 119.8174437362407
Iteration: 19, Func. Count: 198, Neg. LLF: 119.81744270308924
Iteration: 20, Func. Count: 207, Neg. LLF: 119.81744270297771
Optimization terminated successfully (Exit mode 0)
Current function value: 119.81744270308924
Iterations: 20
Function evaluations: 207
Gradient evaluations: 20
Iteration: 1, Func. Count: 12, Neg. LLF: 157.41178578965742
Iteration: 2, Func. Count: 25, Neg. LLF: 123.05074387381782
Iteration: 3, Func. Count: 37, Neg. LLF: 120.30140838529874
Iteration: 4, Func. Count: 49, Neg. LLF: 119.91457738523575
Iteration: 5, Func. Count: 60, Neg. LLF: 122.35294814669355
Iteration: 6, Func. Count: 72, Neg. LLF: 119.85924539746965
Iteration: 7, Func. Count: 83, Neg. LLF: 119.90790732949331
Iteration: 8, Func. Count: 95, Neg. LLF: 119.84809280791387
Iteration: 9, Func. Count: 106, Neg. LLF: 119.84188515416798
Iteration: 10, Func. Count: 117, Neg. LLF: 119.80230818292796
Iteration: 11, Func. Count: 128, Neg. LLF: 119.77411120539472
Iteration: 12, Func. Count: 139, Neg. LLF: 119.7726998213847
Iteration: 13, Func. Count: 151, Neg. LLF: 119.7660614488874
Iteration: 14, Func. Count: 163, Neg. LLF: 119.76440843877103
Iteration: 15, Func. Count: 174, Neg. LLF: 119.76415955417468
Iteration: 16, Func. Count: 185, Neg. LLF: 119.76415883061787
Optimization terminated successfully (Exit mode 0)
Current function value: 119.76415883061787
Iterations: 16
Function evaluations: 185
Gradient evaluations: 16
Iteration: 1, Func. Count: 13, Neg. LLF: 140.2765241478517
Iteration: 2, Func. Count: 27, Neg. LLF: 173.81351576212552
Iteration: 3, Func. Count: 41, Neg. LLF: 120.08198778181206
Iteration: 4, Func. Count: 53, Neg. LLF: 119.95582760980808
Iteration: 5, Func. Count: 65, Neg. LLF: 120.33074754724747
Iteration: 6, Func. Count: 78, Neg. LLF: 119.83440561561986
Iteration: 7, Func. Count: 90, Neg. LLF: 119.87137468475424
Iteration: 8, Func. Count: 103, Neg. LLF: 119.74874807789261
Iteration: 9, Func. Count: 115, Neg. LLF: 119.69511029812305
Iteration: 10, Func. Count: 127, Neg. LLF: 119.47914546381745
Iteration: 11, Func. Count: 139, Neg. LLF: 119.47896610897422
Iteration: 12, Func. Count: 152, Neg. LLF: 119.47000577866805
Iteration: 13, Func. Count: 164, Neg. LLF: 119.46964290493273
Iteration: 14, Func. Count: 176, Neg. LLF: 119.46963049895153
Iteration: 15, Func. Count: 188, Neg. LLF: 119.46961652637461
Iteration: 16, Func. Count: 199, Neg. LLF: 119.4696165263753
Optimization terminated successfully (Exit mode 0)
Current function value: 119.46961652637461
Iterations: 16
Function evaluations: 199
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 125.1407589536052
Iteration: 2, Func. Count: 20, Neg. LLF: 126.0383385349574
Iteration: 3, Func. Count: 30, Neg. LLF: 120.2670421813384
Iteration: 4, Func. Count: 39, Neg. LLF: 120.29102154961379
Iteration: 5, Func. Count: 49, Neg. LLF: 120.19226896034377
Iteration: 6, Func. Count: 59, Neg. LLF: 120.25013560130124
Iteration: 7, Func. Count: 69, Neg. LLF: 120.06946734311299
Iteration: 8, Func. Count: 78, Neg. LLF: 120.06934679951252
Iteration: 9, Func. Count: 87, Neg. LLF: 120.0693456282417
Iteration: 10, Func. Count: 95, Neg. LLF: 120.06934561309623
Optimization terminated successfully (Exit mode 0)
Current function value: 120.0693456282417
Iterations: 10
Function evaluations: 95
Gradient evaluations: 10
Iteration: 1, Func. Count: 11, Neg. LLF: 125.18565441128561
Iteration: 2, Func. Count: 23, Neg. LLF: 121.00484761641
Iteration: 3, Func. Count: 34, Neg. LLF: 120.18734410212761
Iteration: 4, Func. Count: 44, Neg. LLF: 120.14960349163388
Iteration: 5, Func. Count: 54, Neg. LLF: 120.16397451206574
Iteration: 6, Func. Count: 65, Neg. LLF: 120.17621908990526
Iteration: 7, Func. Count: 76, Neg. LLF: 120.12902977714919
Iteration: 8, Func. Count: 86, Neg. LLF: 120.11655984070616
Iteration: 9, Func. Count: 96, Neg. LLF: 120.10860824587006
Iteration: 10, Func. Count: 106, Neg. LLF: 120.10479805690032
Iteration: 11, Func. Count: 116, Neg. LLF: 120.10300736554458
Iteration: 12, Func. Count: 126, Neg. LLF: 120.10310450048293
Iteration: 13, Func. Count: 137, Neg. LLF: 120.10261530361026
Iteration: 14, Func. Count: 147, Neg. LLF: 120.1025594553753
Iteration: 15, Func. Count: 157, Neg. LLF: 120.10247536065324
Iteration: 16, Func. Count: 167, Neg. LLF: 120.10087915144904
Iteration: 17, Func. Count: 177, Neg. LLF: 120.09963530213689
Iteration: 18, Func. Count: 187, Neg. LLF: 120.04207535146357
Iteration: 19, Func. Count: 197, Neg. LLF: 369.36458450509303
Iteration: 20, Func. Count: 212, Neg. LLF: 12960020188.101051
Iteration: 21, Func. Count: 226, Neg. LLF: 17955263.845991023
Iteration: 22, Func. Count: 240, Neg. LLF: 120.03488589726973
Iteration: 23, Func. Count: 251, Neg. LLF: 120.0204815998737
Iteration: 24, Func. Count: 262, Neg. LLF: 119.99233058813212
Iteration: 25, Func. Count: 272, Neg. LLF: 120.01069815904695
Iteration: 26, Func. Count: 283, Neg. LLF: 119.99111625672512
Iteration: 27, Func. Count: 293, Neg. LLF: 119.99110534330974
Iteration: 28, Func. Count: 302, Neg. LLF: 119.99110534330434
Optimization terminated successfully (Exit mode 0)
Current function value: 119.99110534330974
Iterations: 29
Function evaluations: 302
Gradient evaluations: 28
Iteration: 1, Func. Count: 12, Neg. LLF: 143.62666269930207
Iteration: 2, Func. Count: 25, Neg. LLF: 127.19867490090336
Iteration: 3, Func. Count: 38, Neg. LLF: 120.51118595342169
Iteration: 4, Func. Count: 50, Neg. LLF: 119.93022522041392
Iteration: 5, Func. Count: 61, Neg. LLF: 119.93979871822786
Iteration: 6, Func. Count: 73, Neg. LLF: 119.91136846991905
Iteration: 7, Func. Count: 85, Neg. LLF: 119.87126417866514
Iteration: 8, Func. Count: 96, Neg. LLF: 119.86870901439079
Iteration: 9, Func. Count: 107, Neg. LLF: 119.87029667738584
Iteration: 10, Func. Count: 119, Neg. LLF: 119.86710657290494
Iteration: 11, Func. Count: 130, Neg. LLF: 119.86480079721511
Iteration: 12, Func. Count: 141, Neg. LLF: 119.85853391853071
Iteration: 13, Func. Count: 152, Neg. LLF: 119.8535952174556
Iteration: 14, Func. Count: 163, Neg. LLF: 119.82929181224948
Iteration: 15, Func. Count: 174, Neg. LLF: 119.89907952491463
Iteration: 16, Func. Count: 186, Neg. LLF: 119.84916479460661
Iteration: 17, Func. Count: 198, Neg. LLF: 119.8178486659346
Iteration: 18, Func. Count: 209, Neg. LLF: 119.81745401709871
Iteration: 19, Func. Count: 220, Neg. LLF: 119.81744279428625
Iteration: 20, Func. Count: 230, Neg. LLF: 119.81744279405135
Optimization terminated successfully (Exit mode 0)
Current function value: 119.81744279428625
Iterations: 20
Function evaluations: 230
Gradient evaluations: 20
Iteration: 1, Func. Count: 13, Neg. LLF: 144.78861726391267
Iteration: 2, Func. Count: 27, Neg. LLF: 141.78968668326078
Iteration: 3, Func. Count: 41, Neg. LLF: 120.13478565092697
Iteration: 4, Func. Count: 53, Neg. LLF: 120.02962084647017
Iteration: 5, Func. Count: 65, Neg. LLF: 119.89985769200118
Iteration: 6, Func. Count: 77, Neg. LLF: 120.69871718763852
Iteration: 7, Func. Count: 91, Neg. LLF: 120.44785988510297
Iteration: 8, Func. Count: 104, Neg. LLF: 119.84560842957019
Iteration: 9, Func. Count: 116, Neg. LLF: 119.83992067499263
Iteration: 10, Func. Count: 128, Neg. LLF: 119.82849562646551
Iteration: 11, Func. Count: 140, Neg. LLF: 119.81557430146314
Iteration: 12, Func. Count: 152, Neg. LLF: 119.78810299997058
Iteration: 13, Func. Count: 164, Neg. LLF: 119.77544761337606
Iteration: 14, Func. Count: 176, Neg. LLF: 120.21668500504244
Iteration: 15, Func. Count: 189, Neg. LLF: 119.76436831557267
Iteration: 16, Func. Count: 201, Neg. LLF: 119.76417650314762
Iteration: 17, Func. Count: 213, Neg. LLF: 119.76415914764436
Iteration: 18, Func. Count: 224, Neg. LLF: 119.76415914738092
Optimization terminated successfully (Exit mode 0)
Current function value: 119.76415914764436
Iterations: 18
Function evaluations: 224
Gradient evaluations: 18
Iteration: 1, Func. Count: 14, Neg. LLF: 24511710.65172883
Iteration: 2, Func. Count: 29, Neg. LLF: 44360.93537810913
Iteration: 3, Func. Count: 44, Neg. LLF: 120.00011707861565
Iteration: 4, Func. Count: 57, Neg. LLF: 119.98390202303848
Iteration: 5, Func. Count: 71, Neg. LLF: 122.01061624823318
Iteration: 6, Func. Count: 85, Neg. LLF: 120.00430442612547
Iteration: 7, Func. Count: 100, Neg. LLF: 119.87668443474865
Iteration: 8, Func. Count: 113, Neg. LLF: 119.82606688193243
Iteration: 9, Func. Count: 126, Neg. LLF: 119.85370660202356
Iteration: 10, Func. Count: 140, Neg. LLF: 119.8056999709536
Iteration: 11, Func. Count: 154, Neg. LLF: 120.95473406543891
Iteration: 12, Func. Count: 168, Neg. LLF: 119.65604424038754
Iteration: 13, Func. Count: 181, Neg. LLF: 119.5839227969056
Iteration: 14, Func. Count: 194, Neg. LLF: 119.47651412048586
Iteration: 15, Func. Count: 207, Neg. LLF: 119.4705998733181
Iteration: 16, Func. Count: 220, Neg. LLF: 119.46968611639382
Iteration: 17, Func. Count: 233, Neg. LLF: 119.4696236307044
Iteration: 18, Func. Count: 246, Neg. LLF: 119.46961651774296
Iteration: 19, Func. Count: 258, Neg. LLF: 119.46961651794363
Optimization terminated successfully (Exit mode 0)
Current function value: 119.46961651774296
Iterations: 19
Function evaluations: 258
Gradient evaluations: 19
Iteration: 1, Func. Count: 11, Neg. LLF: 124.97126679013111
Iteration: 2, Func. Count: 22, Neg. LLF: 130.7321849540256
Iteration: 3, Func. Count: 33, Neg. LLF: 120.44709860072795
Iteration: 4, Func. Count: 43, Neg. LLF: 121.11256275581941
Iteration: 5, Func. Count: 54, Neg. LLF: 120.60745258301348
Iteration: 6, Func. Count: 65, Neg. LLF: 120.82111820307422
Iteration: 7, Func. Count: 76, Neg. LLF: 119.96717326207117
Iteration: 8, Func. Count: 87, Neg. LLF: 119.74887450498149
Iteration: 9, Func. Count: 97, Neg. LLF: 119.74684469399405
Iteration: 10, Func. Count: 107, Neg. LLF: 119.74664914580389
Iteration: 11, Func. Count: 117, Neg. LLF: 119.74663369133063
Iteration: 12, Func. Count: 126, Neg. LLF: 119.7466336913236
Optimization terminated successfully (Exit mode 0)
Current function value: 119.74663369133063
Iterations: 12
Function evaluations: 126
Gradient evaluations: 12
Iteration: 1, Func. Count: 12, Neg. LLF: 122.83522929614682
Iteration: 2, Func. Count: 25, Neg. LLF: 124.40919011017854
Iteration: 3, Func. Count: 37, Neg. LLF: 119.9818582971616
Iteration: 4, Func. Count: 48, Neg. LLF: 120.00543775594235
Iteration: 5, Func. Count: 60, Neg. LLF: 121.62166749378953
Iteration: 6, Func. Count: 73, Neg. LLF: 119.88877419972702
Iteration: 7, Func. Count: 85, Neg. LLF: 119.88354352375461
Iteration: 8, Func. Count: 96, Neg. LLF: 119.86849788463073
Iteration: 9, Func. Count: 107, Neg. LLF: 119.79647768584256
Iteration: 10, Func. Count: 118, Neg. LLF: 119.78666223114226
Iteration: 11, Func. Count: 129, Neg. LLF: 119.75527853265017
Iteration: 12, Func. Count: 140, Neg. LLF: 119.74685286800313
Iteration: 13, Func. Count: 151, Neg. LLF: 119.74663629763768
Iteration: 14, Func. Count: 162, Neg. LLF: 119.74663397465773
Iteration: 15, Func. Count: 172, Neg. LLF: 119.7466339811345
Optimization terminated successfully (Exit mode 0)
Current function value: 119.74663397465773
Iterations: 15
Function evaluations: 172
Gradient evaluations: 15
Iteration: 1, Func. Count: 13, Neg. LLF: 134.9874376001505
Iteration: 2, Func. Count: 26, Neg. LLF: 122.02020143118278
Iteration: 3, Func. Count: 39, Neg. LLF: 129.22849942566154
Iteration: 4, Func. Count: 53, Neg. LLF: 119.84593808554804
Iteration: 5, Func. Count: 66, Neg. LLF: 119.74660795456464
Iteration: 6, Func. Count: 79, Neg. LLF: 120.30381843351554
Iteration: 7, Func. Count: 93, Neg. LLF: 119.61978176849156
Iteration: 8, Func. Count: 105, Neg. LLF: 119.61821250075978
Iteration: 9, Func. Count: 117, Neg. LLF: 119.61418890705602
Iteration: 10, Func. Count: 129, Neg. LLF: 119.61037911486491
Iteration: 11, Func. Count: 141, Neg. LLF: 119.60475886733576
Iteration: 12, Func. Count: 153, Neg. LLF: 119.59891825104664
Iteration: 13, Func. Count: 165, Neg. LLF: 119.59844283066872
Iteration: 14, Func. Count: 177, Neg. LLF: 119.59836234369583
Iteration: 15, Func. Count: 189, Neg. LLF: 119.59835768311758
Iteration: 16, Func. Count: 200, Neg. LLF: 119.59835768302439
Optimization terminated successfully (Exit mode 0)
Current function value: 119.59835768311758
Iterations: 16
Function evaluations: 200
Gradient evaluations: 16
Iteration: 1, Func. Count: 14, Neg. LLF: 123.99864542875325
Iteration: 2, Func. Count: 29, Neg. LLF: 125.95765941152563
Iteration: 3, Func. Count: 43, Neg. LLF: 123.09193565226828
Iteration: 4, Func. Count: 57, Neg. LLF: 119.64834302850396
Iteration: 5, Func. Count: 70, Neg. LLF: 120.05116201149633
Iteration: 6, Func. Count: 84, Neg. LLF: 119.88735272080024
Iteration: 7, Func. Count: 98, Neg. LLF: 119.69426654273572
Iteration: 8, Func. Count: 112, Neg. LLF: 119.58237660810664
Iteration: 9, Func. Count: 125, Neg. LLF: 119.57885657699046
Iteration: 10, Func. Count: 138, Neg. LLF: 119.5662145083771
Iteration: 11, Func. Count: 151, Neg. LLF: 119.55892934313684
Iteration: 12, Func. Count: 164, Neg. LLF: 119.55546808781375
Iteration: 13, Func. Count: 177, Neg. LLF: 119.55516648198451
Iteration: 14, Func. Count: 190, Neg. LLF: 119.55516289823832
Iteration: 15, Func. Count: 203, Neg. LLF: 119.55516166388455
Iteration: 16, Func. Count: 215, Neg. LLF: 119.55516166393623
Optimization terminated successfully (Exit mode 0)
Current function value: 119.55516166388455
Iterations: 16
Function evaluations: 215
Gradient evaluations: 16
Iteration: 1, Func. Count: 15, Neg. LLF: 124.06997138806099
Iteration: 2, Func. Count: 31, Neg. LLF: 126.86305249614507
Iteration: 3, Func. Count: 46, Neg. LLF: 124.99262361380127
Iteration: 4, Func. Count: 61, Neg. LLF: 119.7153433153382
Iteration: 5, Func. Count: 75, Neg. LLF: 121.37782762442927
Iteration: 6, Func. Count: 90, Neg. LLF: 120.29488954175297
Iteration: 7, Func. Count: 106, Neg. LLF: 120.08886456274269
Iteration: 8, Func. Count: 121, Neg. LLF: 119.55119633979947
Iteration: 9, Func. Count: 135, Neg. LLF: 119.54962264951116
Iteration: 10, Func. Count: 149, Neg. LLF: 119.54950206065524
Iteration: 11, Func. Count: 163, Neg. LLF: 119.54942083669955
Iteration: 12, Func. Count: 177, Neg. LLF: 119.54931873109895
Iteration: 13, Func. Count: 191, Neg. LLF: 119.54901760639349
Iteration: 14, Func. Count: 205, Neg. LLF: 119.5485433539398
Iteration: 15, Func. Count: 219, Neg. LLF: 119.54802377924794
Iteration: 16, Func. Count: 233, Neg. LLF: 119.54772589605913
Iteration: 17, Func. Count: 247, Neg. LLF: 119.54766861939471
Iteration: 18, Func. Count: 261, Neg. LLF: 119.54766701785942
Iteration: 19, Func. Count: 274, Neg. LLF: 119.54766701789589
Optimization terminated successfully (Exit mode 0)
Current function value: 119.54766701785942
Iterations: 19
Function evaluations: 274
Gradient evaluations: 19
Iteration: 1, Func. Count: 12, Neg. LLF: 123.25244519000711
Iteration: 2, Func. Count: 24, Neg. LLF: 127.54028957596972
Iteration: 3, Func. Count: 36, Neg. LLF: 120.556573286754
Iteration: 4, Func. Count: 47, Neg. LLF: 121.72512556503766
Iteration: 5, Func. Count: 59, Neg. LLF: 120.92269018699619
Iteration: 6, Func. Count: 71, Neg. LLF: 120.42740414871349
Iteration: 7, Func. Count: 83, Neg. LLF: 119.83243526381116
Iteration: 8, Func. Count: 95, Neg. LLF: 119.76195539540548
Iteration: 9, Func. Count: 106, Neg. LLF: 119.75253680709866
Iteration: 10, Func. Count: 117, Neg. LLF: 119.75252200058235
Iteration: 11, Func. Count: 129, Neg. LLF: 119.74673645076064
Iteration: 12, Func. Count: 140, Neg. LLF: 119.74663946490685
Iteration: 13, Func. Count: 151, Neg. LLF: 119.74663402706382
Iteration: 14, Func. Count: 161, Neg. LLF: 119.74663405806585
Optimization terminated successfully (Exit mode 0)
Current function value: 119.74663402706382
Iterations: 14
Function evaluations: 161
Gradient evaluations: 14
Iteration: 1, Func. Count: 13, Neg. LLF: 122.60635025446548
Iteration: 2, Func. Count: 27, Neg. LLF: 146.39200050134883
Iteration: 3, Func. Count: 41, Neg. LLF: 121.93160637345314
Iteration: 4, Func. Count: 54, Neg. LLF: 119.93120408628295
Iteration: 5, Func. Count: 66, Neg. LLF: 120.26327413378195
Iteration: 6, Func. Count: 79, Neg. LLF: 119.91532422643954
Iteration: 7, Func. Count: 92, Neg. LLF: 119.90454913934981
Iteration: 8, Func. Count: 104, Neg. LLF: 119.90454117217601
Iteration: 9, Func. Count: 116, Neg. LLF: 119.90454023613634
Optimization terminated successfully (Exit mode 0)
Current function value: 119.90454023613634
Iterations: 9
Function evaluations: 116
Gradient evaluations: 9
Iteration: 1, Func. Count: 14, Neg. LLF: 137.5902526571368
Iteration: 2, Func. Count: 28, Neg. LLF: 145.0208211136452
Iteration: 3, Func. Count: 43, Neg. LLF: 123.45362478791382
Iteration: 4, Func. Count: 57, Neg. LLF: 119.85560497950213
Iteration: 5, Func. Count: 70, Neg. LLF: 120.38584717795557
Iteration: 6, Func. Count: 84, Neg. LLF: 120.340170597322
Iteration: 7, Func. Count: 99, Neg. LLF: 119.65010522318416
Iteration: 8, Func. Count: 112, Neg. LLF: 119.62365294442141
Iteration: 9, Func. Count: 125, Neg. LLF: 119.61699310305802
Iteration: 10, Func. Count: 138, Neg. LLF: 119.61460216189022
Iteration: 11, Func. Count: 151, Neg. LLF: 119.61282574703299
Iteration: 12, Func. Count: 164, Neg. LLF: 119.60659698889027
Iteration: 13, Func. Count: 177, Neg. LLF: 119.59991675295134
Iteration: 14, Func. Count: 190, Neg. LLF: 119.59858577071522
Iteration: 15, Func. Count: 203, Neg. LLF: 119.59836083031622
Iteration: 16, Func. Count: 216, Neg. LLF: 119.59835799180654
Iteration: 17, Func. Count: 229, Neg. LLF: 119.5983572726437
Optimization terminated successfully (Exit mode 0)
Current function value: 119.5983572726437
Iterations: 17
Function evaluations: 229
Gradient evaluations: 17
Iteration: 1, Func. Count: 15, Neg. LLF: 124.90849943094727
Iteration: 2, Func. Count: 31, Neg. LLF: 127.32669048878113
Iteration: 3, Func. Count: 46, Neg. LLF: 123.71305334978629
Iteration: 4, Func. Count: 61, Neg. LLF: 119.65112513950224
Iteration: 5, Func. Count: 75, Neg. LLF: 120.18941457758851
Iteration: 6, Func. Count: 90, Neg. LLF: 119.93513851590055
Iteration: 7, Func. Count: 105, Neg. LLF: 119.60180581651753
Iteration: 8, Func. Count: 120, Neg. LLF: 119.58292968820629
Iteration: 9, Func. Count: 134, Neg. LLF: 119.57940946184208
Iteration: 10, Func. Count: 148, Neg. LLF: 119.5629631178482
Iteration: 11, Func. Count: 162, Neg. LLF: 119.55753174927317
Iteration: 12, Func. Count: 176, Neg. LLF: 119.55521610295878
Iteration: 13, Func. Count: 190, Neg. LLF: 119.55516821118478
Iteration: 14, Func. Count: 204, Neg. LLF: 119.55516255935838
Iteration: 15, Func. Count: 218, Neg. LLF: 119.55516163742982
Optimization terminated successfully (Exit mode 0)
Current function value: 119.55516163742982
Iterations: 15
Function evaluations: 218
Gradient evaluations: 15
Iteration: 1, Func. Count: 16, Neg. LLF: 124.91690449008743
Iteration: 2, Func. Count: 33, Neg. LLF: 128.0124903833366
Iteration: 3, Func. Count: 49, Neg. LLF: 127.00258416839633
Iteration: 4, Func. Count: 65, Neg. LLF: 119.69657363380378
Iteration: 5, Func. Count: 80, Neg. LLF: 122.3179101255447
Iteration: 6, Func. Count: 97, Neg. LLF: 120.43883620501906
Iteration: 7, Func. Count: 114, Neg. LLF: 119.71038893725631
Iteration: 8, Func. Count: 130, Neg. LLF: 119.55010039915913
Iteration: 9, Func. Count: 145, Neg. LLF: 119.54951767975682
Iteration: 10, Func. Count: 160, Neg. LLF: 119.54946529870313
Iteration: 11, Func. Count: 175, Neg. LLF: 119.54929724346754
Iteration: 12, Func. Count: 190, Neg. LLF: 119.54910590297406
Iteration: 13, Func. Count: 205, Neg. LLF: 119.54861365551524
Iteration: 14, Func. Count: 220, Neg. LLF: 119.548068440967
Iteration: 15, Func. Count: 235, Neg. LLF: 119.5477513391513
Iteration: 16, Func. Count: 250, Neg. LLF: 119.5476720076298
Iteration: 17, Func. Count: 265, Neg. LLF: 119.54766714408697
Iteration: 18, Func. Count: 279, Neg. LLF: 119.54766714409145
Optimization terminated successfully (Exit mode 0)
Current function value: 119.54766714408697
Iterations: 18
Function evaluations: 279
Gradient evaluations: 18
Iteration: 1, Func. Count: 5, Neg. LLF: 125.6481013407933
Iteration: 2, Func. Count: 10, Neg. LLF: 132.53929728918985
Iteration: 3, Func. Count: 15, Neg. LLF: 120.4351907049989
Iteration: 4, Func. Count: 19, Neg. LLF: 120.73438712698136
Iteration: 5, Func. Count: 24, Neg. LLF: 120.28773579266071
Iteration: 6, Func. Count: 28, Neg. LLF: 120.27010958641745
Iteration: 7, Func. Count: 32, Neg. LLF: 120.26411245512163
Iteration: 8, Func. Count: 36, Neg. LLF: 120.26230068004374
Iteration: 9, Func. Count: 40, Neg. LLF: 120.2621741165796
Iteration: 10, Func. Count: 44, Neg. LLF: 120.26217060416808
Iteration: 11, Func. Count: 47, Neg. LLF: 120.26217060414398
Optimization terminated successfully (Exit mode 0)
Current function value: 120.26217060416808
Iterations: 11
Function evaluations: 47
Gradient evaluations: 11
Iteration: 1, Func. Count: 5, Neg. LLF: 127.4135449364065
Iteration: 2, Func. Count: 10, Neg. LLF: 146.9151053531874
Iteration: 3, Func. Count: 15, Neg. LLF: 122.76910274860211
Iteration: 4, Func. Count: 19, Neg. LLF: 122.66302668505026
Iteration: 5, Func. Count: 23, Neg. LLF: 122.56702425893702
Iteration: 6, Func. Count: 28, Neg. LLF: 122.45400999344386
Iteration: 7, Func. Count: 32, Neg. LLF: 122.44513427563372
Iteration: 8, Func. Count: 36, Neg. LLF: 122.44492758872738
Iteration: 9, Func. Count: 40, Neg. LLF: 122.44491754299459
Iteration: 10, Func. Count: 43, Neg. LLF: 122.44491754298252
Optimization terminated successfully (Exit mode 0)
Current function value: 122.44491754299459
Iterations: 10
Function evaluations: 43
Gradient evaluations: 10
Iteration: 1, Func. Count: 6, Neg. LLF: 172.53941879217655
Iteration: 2, Func. Count: 13, Neg. LLF: 123.10270736391085
Iteration: 3, Func. Count: 19, Neg. LLF: 122.26348266323718
Iteration: 4, Func. Count: 25, Neg. LLF: 121.86769188387561
Iteration: 5, Func. Count: 30, Neg. LLF: 121.84520407871047
Iteration: 6, Func. Count: 35, Neg. LLF: 121.84061405717007
Iteration: 7, Func. Count: 40, Neg. LLF: 121.83977492592436
Iteration: 8, Func. Count: 45, Neg. LLF: 121.8397492490483
Iteration: 9, Func. Count: 50, Neg. LLF: 121.8397487903053
Optimization terminated successfully (Exit mode 0)
Current function value: 121.8397487903053
Iterations: 9
Function evaluations: 50
Gradient evaluations: 9
Iteration: 1, Func. Count: 7, Neg. LLF: 178.75475609488467
Iteration: 2, Func. Count: 15, Neg. LLF: 126.45507195963188
Iteration: 3, Func. Count: 23, Neg. LLF: 122.18501590237254
Iteration: 4, Func. Count: 30, Neg. LLF: 121.88793058747413
Iteration: 5, Func. Count: 36, Neg. LLF: 121.88132884025096
Iteration: 6, Func. Count: 42, Neg. LLF: 121.94303097459229
Iteration: 7, Func. Count: 49, Neg. LLF: 121.92910534775493
Iteration: 8, Func. Count: 56, Neg. LLF: 121.87760702591677
Iteration: 9, Func. Count: 63, Neg. LLF: 121.87503036301864
Iteration: 10, Func. Count: 69, Neg. LLF: 121.87497420164769
Iteration: 11, Func. Count: 75, Neg. LLF: 121.87491399342365
Iteration: 12, Func. Count: 81, Neg. LLF: 121.87486300995796
Iteration: 13, Func. Count: 87, Neg. LLF: 121.87485777109711
Iteration: 14, Func. Count: 92, Neg. LLF: 121.87485777096671
Optimization terminated successfully (Exit mode 0)
Current function value: 121.87485777109711
Iterations: 14
Function evaluations: 92
Gradient evaluations: 14
Iteration: 1, Func. Count: 8, Neg. LLF: 181.55936889508308
Iteration: 2, Func. Count: 17, Neg. LLF: 132.39680475985278
Iteration: 3, Func. Count: 26, Neg. LLF: 122.17147706146982
Iteration: 4, Func. Count: 34, Neg. LLF: 121.89664162553564
Iteration: 5, Func. Count: 41, Neg. LLF: 121.89019817795713
Iteration: 6, Func. Count: 48, Neg. LLF: 121.88384134792473
Iteration: 7, Func. Count: 55, Neg. LLF: 121.88343974221586
Iteration: 8, Func. Count: 62, Neg. LLF: 121.88301885625171
Iteration: 9, Func. Count: 69, Neg. LLF: 121.88274115685775
Iteration: 10, Func. Count: 76, Neg. LLF: 121.87451891036353
Iteration: 11, Func. Count: 83, Neg. LLF: 121.84615630040001
Iteration: 12, Func. Count: 90, Neg. LLF: 121.84230275345205
Iteration: 13, Func. Count: 97, Neg. LLF: 121.84004298681086
Iteration: 14, Func. Count: 104, Neg. LLF: 121.83976996152984
Iteration: 15, Func. Count: 111, Neg. LLF: 121.83974939038129
Iteration: 16, Func. Count: 118, Neg. LLF: 121.83974848532843
Optimization terminated successfully (Exit mode 0)
Current function value: 121.83974848532843
Iterations: 16
Function evaluations: 118
Gradient evaluations: 16
Iteration: 1, Func. Count: 9, Neg. LLF: 202.71331300645502
Iteration: 2, Func. Count: 19, Neg. LLF: 122.03958367940231
Iteration: 3, Func. Count: 28, Neg. LLF: 121.88065488588435
Iteration: 4, Func. Count: 36, Neg. LLF: 121.99069385447649
Iteration: 5, Func. Count: 45, Neg. LLF: 121.88284265130895
Iteration: 6, Func. Count: 54, Neg. LLF: 121.87495900875736
Iteration: 7, Func. Count: 62, Neg. LLF: 121.87487395336352
Iteration: 8, Func. Count: 70, Neg. LLF: 121.87486125389373
Iteration: 9, Func. Count: 78, Neg. LLF: 121.87485781887263
Iteration: 10, Func. Count: 85, Neg. LLF: 121.87485782501001
Optimization terminated successfully (Exit mode 0)
Current function value: 121.87485781887263
Iterations: 10
Function evaluations: 85
Gradient evaluations: 10
Iteration: 1, Func. Count: 6, Neg. LLF: 136.64491556176677
Iteration: 2, Func. Count: 13, Neg. LLF: 144.12008406857228
Iteration: 3, Func. Count: 20, Neg. LLF: 122.69414936726463
Iteration: 4, Func. Count: 25, Neg. LLF: 122.52470736492187
Iteration: 5, Func. Count: 30, Neg. LLF: 122.84726685775976
Iteration: 6, Func. Count: 36, Neg. LLF: 122.44730697208614
Iteration: 7, Func. Count: 41, Neg. LLF: 122.43957426041081
Iteration: 8, Func. Count: 46, Neg. LLF: 122.43637845366271
Iteration: 9, Func. Count: 51, Neg. LLF: 122.43571735558109
Iteration: 10, Func. Count: 56, Neg. LLF: 122.43564488376282
Iteration: 11, Func. Count: 61, Neg. LLF: 122.4356402674869
Iteration: 12, Func. Count: 65, Neg. LLF: 122.43564026749885
Optimization terminated successfully (Exit mode 0)
Current function value: 122.4356402674869
Iterations: 12
Function evaluations: 65
Gradient evaluations: 12
Iteration: 1, Func. Count: 7, Neg. LLF: 178.70170129773274
Iteration: 2, Func. Count: 15, Neg. LLF: 122.1027172772432
Iteration: 3, Func. Count: 22, Neg. LLF: 121.86198947682225
Iteration: 4, Func. Count: 29, Neg. LLF: 121.87552932796166
Iteration: 5, Func. Count: 36, Neg. LLF: 121.83085329431528
Iteration: 6, Func. Count: 42, Neg. LLF: 121.82985218456281
Iteration: 7, Func. Count: 48, Neg. LLF: 121.82981090587295
Iteration: 8, Func. Count: 54, Neg. LLF: 121.82980969063586
Iteration: 9, Func. Count: 59, Neg. LLF: 121.82980969070614
Optimization terminated successfully (Exit mode 0)
Current function value: 121.82980969063586
Iterations: 9
Function evaluations: 59
Gradient evaluations: 9
Iteration: 1, Func. Count: 8, Neg. LLF: 182.82466065251367
Iteration: 2, Func. Count: 17, Neg. LLF: 122.78622980317641
Iteration: 3, Func. Count: 25, Neg. LLF: 121.9277913250367
Iteration: 4, Func. Count: 33, Neg. LLF: 121.95566188975532
Iteration: 5, Func. Count: 41, Neg. LLF: 121.84845026134228
Iteration: 6, Func. Count: 48, Neg. LLF: 121.83313111414103
Iteration: 7, Func. Count: 55, Neg. LLF: 121.83134128903403
Iteration: 8, Func. Count: 62, Neg. LLF: 121.8306040472851
Iteration: 9, Func. Count: 69, Neg. LLF: 121.82991623435599
Iteration: 10, Func. Count: 76, Neg. LLF: 121.82981189304799
Iteration: 11, Func. Count: 83, Neg. LLF: 121.82980999426559
Iteration: 12, Func. Count: 89, Neg. LLF: 121.82980999872676
Optimization terminated successfully (Exit mode 0)
Current function value: 121.82980999426559
Iterations: 12
Function evaluations: 89
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 184.04087987867274
Iteration: 2, Func. Count: 19, Neg. LLF: 122.85430098670969
Iteration: 3, Func. Count: 28, Neg. LLF: 121.90383466727236
Iteration: 4, Func. Count: 36, Neg. LLF: 122.04714504067275
Iteration: 5, Func. Count: 45, Neg. LLF: 121.89999178380528
Iteration: 6, Func. Count: 54, Neg. LLF: 121.87508724505884
Iteration: 7, Func. Count: 62, Neg. LLF: 121.83620116911437
Iteration: 8, Func. Count: 70, Neg. LLF: 121.83408979322482
Iteration: 9, Func. Count: 78, Neg. LLF: 121.83022692947144
Iteration: 10, Func. Count: 86, Neg. LLF: 121.82988658994176
Iteration: 11, Func. Count: 94, Neg. LLF: 121.82983819794394
Iteration: 12, Func. Count: 102, Neg. LLF: 121.82982387242016
Iteration: 13, Func. Count: 110, Neg. LLF: 121.82980973132865
Iteration: 14, Func. Count: 117, Neg. LLF: 121.82980973954278
Optimization terminated successfully (Exit mode 0)
Current function value: 121.82980973132865
Iterations: 14
Function evaluations: 117
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 183.32563609014113
Iteration: 2, Func. Count: 21, Neg. LLF: 122.5917117798594
Iteration: 3, Func. Count: 31, Neg. LLF: 122.13528576640998
Iteration: 4, Func. Count: 41, Neg. LLF: 122.11880640624535
Iteration: 5, Func. Count: 51, Neg. LLF: 121.88443486313243
Iteration: 6, Func. Count: 60, Neg. LLF: 121.87811882076932
Iteration: 7, Func. Count: 69, Neg. LLF: 121.8774132514508
Iteration: 8, Func. Count: 78, Neg. LLF: 121.87522983447512
Iteration: 9, Func. Count: 87, Neg. LLF: 121.8749044750423
Iteration: 10, Func. Count: 96, Neg. LLF: 121.87486754390662
Iteration: 11, Func. Count: 105, Neg. LLF: 121.87486292534325
Iteration: 12, Func. Count: 114, Neg. LLF: 121.87485760304466
Iteration: 13, Func. Count: 122, Neg. LLF: 121.87485760914242
Optimization terminated successfully (Exit mode 0)
Current function value: 121.87485760304466
Iterations: 13
Function evaluations: 122
Gradient evaluations: 13
Iteration: 1, Func. Count: 7, Neg. LLF: 130.77852019250122
Iteration: 2, Func. Count: 15, Neg. LLF: 137.77015280259536
Iteration: 3, Func. Count: 22, Neg. LLF: 124.9971574508471
Iteration: 4, Func. Count: 29, Neg. LLF: 122.1597293062746
Iteration: 5, Func. Count: 35, Neg. LLF: 122.18005709126287
Iteration: 6, Func. Count: 42, Neg. LLF: 122.00306064769745
Iteration: 7, Func. Count: 48, Neg. LLF: 121.97732946283377
Iteration: 8, Func. Count: 54, Neg. LLF: 121.9733213487465
Iteration: 9, Func. Count: 60, Neg. LLF: 121.97108545429667
Iteration: 10, Func. Count: 66, Neg. LLF: 121.97100409483461
Iteration: 11, Func. Count: 72, Neg. LLF: 121.97099913491316
Iteration: 12, Func. Count: 77, Neg. LLF: 121.97099913489889
Optimization terminated successfully (Exit mode 0)
Current function value: 121.97099913491316
Iterations: 12
Function evaluations: 77
Gradient evaluations: 12
Iteration: 1, Func. Count: 8, Neg. LLF: 182.55256287838168
Iteration: 2, Func. Count: 17, Neg. LLF: 122.81890445193436
Iteration: 3, Func. Count: 25, Neg. LLF: 122.00697857500693
Iteration: 4, Func. Count: 33, Neg. LLF: 121.90595882166932
Iteration: 5, Func. Count: 41, Neg. LLF: 121.82268690891016
Iteration: 6, Func. Count: 49, Neg. LLF: 121.82206039897603
Iteration: 7, Func. Count: 57, Neg. LLF: 121.81784890724295
Iteration: 8, Func. Count: 64, Neg. LLF: 121.81693230240298
Iteration: 9, Func. Count: 71, Neg. LLF: 121.81677650903006
Iteration: 10, Func. Count: 78, Neg. LLF: 121.81677283748449
Iteration: 11, Func. Count: 84, Neg. LLF: 121.81677283749889
Optimization terminated successfully (Exit mode 0)
Current function value: 121.81677283748449
Iterations: 11
Function evaluations: 84
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 185.94151664713274
Iteration: 2, Func. Count: 19, Neg. LLF: 124.838154173682
Iteration: 3, Func. Count: 29, Neg. LLF: 121.92507937802705
Iteration: 4, Func. Count: 38, Neg. LLF: 121.87044499127843
Iteration: 5, Func. Count: 47, Neg. LLF: 121.88669678429189
Iteration: 6, Func. Count: 56, Neg. LLF: 121.83024554523358
Iteration: 7, Func. Count: 64, Neg. LLF: 121.82419085125862
Iteration: 8, Func. Count: 72, Neg. LLF: 121.82237004594606
Iteration: 9, Func. Count: 80, Neg. LLF: 121.82058380997482
Iteration: 10, Func. Count: 88, Neg. LLF: 121.81813717292131
Iteration: 11, Func. Count: 96, Neg. LLF: 121.81699956827534
Iteration: 12, Func. Count: 104, Neg. LLF: 121.81678170374356
Iteration: 13, Func. Count: 112, Neg. LLF: 121.8167735458368
Iteration: 14, Func. Count: 120, Neg. LLF: 121.8167728539392
Optimization terminated successfully (Exit mode 0)
Current function value: 121.8167728539392
Iterations: 14
Function evaluations: 120
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 132.48240984276956
Iteration: 2, Func. Count: 20, Neg. LLF: 135.32953009673776
Iteration: 3, Func. Count: 31, Neg. LLF: 122.52058970328643
Iteration: 4, Func. Count: 41, Neg. LLF: 121.93024809840233
Iteration: 5, Func. Count: 51, Neg. LLF: 122.06323494323681
Iteration: 6, Func. Count: 61, Neg. LLF: 122.01658352220805
Iteration: 7, Func. Count: 71, Neg. LLF: 121.86183284618161
Iteration: 8, Func. Count: 80, Neg. LLF: 121.85590599668491
Iteration: 9, Func. Count: 89, Neg. LLF: 121.85051768673745
Iteration: 10, Func. Count: 98, Neg. LLF: 121.84071469086128
Iteration: 11, Func. Count: 107, Neg. LLF: 121.83023469636409
Iteration: 12, Func. Count: 116, Neg. LLF: 121.8221904092322
Iteration: 13, Func. Count: 125, Neg. LLF: 121.81806180340254
Iteration: 14, Func. Count: 134, Neg. LLF: 121.8170098454319
Iteration: 15, Func. Count: 143, Neg. LLF: 121.81680754428578
Iteration: 16, Func. Count: 152, Neg. LLF: 121.81677687000477
Iteration: 17, Func. Count: 161, Neg. LLF: 121.81677325815481
Iteration: 18, Func. Count: 170, Neg. LLF: 121.81677306002186
Optimization terminated successfully (Exit mode 0)
Current function value: 121.81677306002186
Iterations: 18
Function evaluations: 170
Gradient evaluations: 18
Iteration: 1, Func. Count: 11, Neg. LLF: 128.20561675076405
Iteration: 2, Func. Count: 22, Neg. LLF: 124.50234287202994
Iteration: 3, Func. Count: 34, Neg. LLF: 122.54907174961743
Iteration: 4, Func. Count: 45, Neg. LLF: 121.80491268163838
Iteration: 5, Func. Count: 55, Neg. LLF: 121.78592922323323
Iteration: 6, Func. Count: 65, Neg. LLF: 121.77346827871489
Iteration: 7, Func. Count: 75, Neg. LLF: 121.80117258616725
Iteration: 8, Func. Count: 86, Neg. LLF: 121.75949409264206
Iteration: 9, Func. Count: 96, Neg. LLF: 121.76205079460154
Iteration: 10, Func. Count: 107, Neg. LLF: 121.75853330003287
Iteration: 11, Func. Count: 117, Neg. LLF: 121.75849353972934
Iteration: 12, Func. Count: 127, Neg. LLF: 121.7584726200291
Iteration: 13, Func. Count: 137, Neg. LLF: 121.75845311881936
Iteration: 14, Func. Count: 147, Neg. LLF: 121.75844488808241
Iteration: 15, Func. Count: 157, Neg. LLF: 121.75844372501655
Iteration: 16, Func. Count: 166, Neg. LLF: 121.75844372502037
Optimization terminated successfully (Exit mode 0)
Current function value: 121.75844372501655
Iterations: 16
Function evaluations: 166
Gradient evaluations: 16
Iteration: 1, Func. Count: 8, Neg. LLF: 128.1645691982997
Iteration: 2, Func. Count: 16, Neg. LLF: 141.78551040244002
Iteration: 3, Func. Count: 24, Neg. LLF: 122.78549598106945
Iteration: 4, Func. Count: 32, Neg. LLF: 122.82480004782175
Iteration: 5, Func. Count: 40, Neg. LLF: 122.19338890051972
Iteration: 6, Func. Count: 47, Neg. LLF: 122.1562459553268
Iteration: 7, Func. Count: 55, Neg. LLF: 122.30463945434047
Iteration: 8, Func. Count: 63, Neg. LLF: 122.45876968939501
Iteration: 9, Func. Count: 71, Neg. LLF: 121.95891728665029
Iteration: 10, Func. Count: 78, Neg. LLF: 121.95784521775302
Iteration: 11, Func. Count: 85, Neg. LLF: 121.95749203768122
Iteration: 12, Func. Count: 92, Neg. LLF: 121.95745099487034
Iteration: 13, Func. Count: 99, Neg. LLF: 121.95744710710329
Iteration: 14, Func. Count: 105, Neg. LLF: 121.95744710710677
Optimization terminated successfully (Exit mode 0)
Current function value: 121.95744710710329
Iterations: 14
Function evaluations: 105
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 184.06909421462558
Iteration: 2, Func. Count: 19, Neg. LLF: 161.0457897331693
Iteration: 3, Func. Count: 29, Neg. LLF: 121.87700257726567
Iteration: 4, Func. Count: 37, Neg. LLF: 121.86891166677152
Iteration: 5, Func. Count: 46, Neg. LLF: 122.61372147377523
Iteration: 6, Func. Count: 55, Neg. LLF: 121.82914657362566
Iteration: 7, Func. Count: 64, Neg. LLF: 121.81841024905694
Iteration: 8, Func. Count: 72, Neg. LLF: 121.81799242664775
Iteration: 9, Func. Count: 80, Neg. LLF: 121.81753387001257
Iteration: 10, Func. Count: 88, Neg. LLF: 121.81702739073586
Iteration: 11, Func. Count: 96, Neg. LLF: 121.81681367336793
Iteration: 12, Func. Count: 104, Neg. LLF: 121.81677436078299
Iteration: 13, Func. Count: 112, Neg. LLF: 121.81677283516595
Iteration: 14, Func. Count: 119, Neg. LLF: 121.81677283514013
Optimization terminated successfully (Exit mode 0)
Current function value: 121.81677283516595
Iterations: 14
Function evaluations: 119
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 127.46490597193835
Iteration: 2, Func. Count: 20, Neg. LLF: 124.1045525642792
Iteration: 3, Func. Count: 31, Neg. LLF: 123.9194178041826
Iteration: 4, Func. Count: 41, Neg. LLF: 121.95044959841914
Iteration: 5, Func. Count: 51, Neg. LLF: 121.88356620402678
Iteration: 6, Func. Count: 60, Neg. LLF: 121.91481242840815
Iteration: 7, Func. Count: 70, Neg. LLF: 121.8696740202514
Iteration: 8, Func. Count: 79, Neg. LLF: 121.85683152665771
Iteration: 9, Func. Count: 88, Neg. LLF: 121.85083034401102
Iteration: 10, Func. Count: 97, Neg. LLF: 121.82940963970016
Iteration: 11, Func. Count: 106, Neg. LLF: 121.82365996701697
Iteration: 12, Func. Count: 115, Neg. LLF: 121.8183956488001
Iteration: 13, Func. Count: 124, Neg. LLF: 121.81906066938903
Iteration: 14, Func. Count: 134, Neg. LLF: 121.81694750523911
Iteration: 15, Func. Count: 143, Neg. LLF: 121.81682308407824
Iteration: 16, Func. Count: 152, Neg. LLF: 121.81678073286609
Iteration: 17, Func. Count: 161, Neg. LLF: 121.81677338862607
Iteration: 18, Func. Count: 170, Neg. LLF: 121.81677282196263
Optimization terminated successfully (Exit mode 0)
Current function value: 121.81677282196263
Iterations: 18
Function evaluations: 170
Gradient evaluations: 18
Iteration: 1, Func. Count: 11, Neg. LLF: 129.30367577931312
Iteration: 2, Func. Count: 22, Neg. LLF: 129.36438371098453
Iteration: 3, Func. Count: 34, Neg. LLF: 124.56767098035769
Iteration: 4, Func. Count: 45, Neg. LLF: 122.05567430006803
Iteration: 5, Func. Count: 56, Neg. LLF: 121.99571869834358
Iteration: 6, Func. Count: 67, Neg. LLF: 121.87046602072893
Iteration: 7, Func. Count: 77, Neg. LLF: 121.87261410043071
Iteration: 8, Func. Count: 88, Neg. LLF: 121.85820877512313
Iteration: 9, Func. Count: 98, Neg. LLF: 121.8548008604867
Iteration: 10, Func. Count: 108, Neg. LLF: 121.84349924426954
Iteration: 11, Func. Count: 118, Neg. LLF: 121.83039706627162
Iteration: 12, Func. Count: 128, Neg. LLF: 121.82041017069062
Iteration: 13, Func. Count: 138, Neg. LLF: 121.81727511468677
Iteration: 14, Func. Count: 148, Neg. LLF: 121.81689778652805
Iteration: 15, Func. Count: 158, Neg. LLF: 121.81686544442891
Iteration: 16, Func. Count: 169, Neg. LLF: 121.81677894065356
Iteration: 17, Func. Count: 179, Neg. LLF: 121.81677307200343
Iteration: 18, Func. Count: 188, Neg. LLF: 121.81677307575012
Optimization terminated successfully (Exit mode 0)
Current function value: 121.81677307200343
Iterations: 18
Function evaluations: 188
Gradient evaluations: 18
Iteration: 1, Func. Count: 12, Neg. LLF: 128.37027259827425
Iteration: 2, Func. Count: 24, Neg. LLF: 124.13510537498372
Iteration: 3, Func. Count: 37, Neg. LLF: 125.0784451079623
Iteration: 4, Func. Count: 49, Neg. LLF: 121.88794405784122
Iteration: 5, Func. Count: 61, Neg. LLF: 121.82117470019719
Iteration: 6, Func. Count: 72, Neg. LLF: 121.82719924467423
Iteration: 7, Func. Count: 84, Neg. LLF: 121.83628576246633
Iteration: 8, Func. Count: 96, Neg. LLF: 121.7963889017133
Iteration: 9, Func. Count: 108, Neg. LLF: 121.76007938496844
Iteration: 10, Func. Count: 119, Neg. LLF: 121.75953332709388
Iteration: 11, Func. Count: 130, Neg. LLF: 121.75893098627486
Iteration: 12, Func. Count: 141, Neg. LLF: 121.75864319323868
Iteration: 13, Func. Count: 152, Neg. LLF: 121.75846650474193
Iteration: 14, Func. Count: 163, Neg. LLF: 121.75844444303117
Iteration: 15, Func. Count: 174, Neg. LLF: 121.75844369331132
Optimization terminated successfully (Exit mode 0)
Current function value: 121.75844369331132
Iterations: 15
Function evaluations: 174
Gradient evaluations: 15
Iteration: 1, Func. Count: 5, Neg. LLF: 127.27590089553811
Iteration: 2, Func. Count: 10, Neg. LLF: 125.97199027904301
Iteration: 3, Func. Count: 15, Neg. LLF: 122.67529866983809
Iteration: 4, Func. Count: 19, Neg. LLF: 122.65699953335259
Iteration: 5, Func. Count: 23, Neg. LLF: 122.65686580701154
Iteration: 6, Func. Count: 27, Neg. LLF: 122.65684843706019
Iteration: 7, Func. Count: 31, Neg. LLF: 122.6568443939551
Iteration: 8, Func. Count: 34, Neg. LLF: 122.6568444121726
Optimization terminated successfully (Exit mode 0)
Current function value: 122.6568443939551
Iterations: 8
Function evaluations: 34
Gradient evaluations: 8
Iteration: 1, Func. Count: 6, Neg. LLF: 206.40669464844134
Iteration: 2, Func. Count: 13, Neg. LLF: 122.20691635658953
Iteration: 3, Func. Count: 19, Neg. LLF: 122.07399236210168
Iteration: 4, Func. Count: 24, Neg. LLF: 122.38764170133562
Iteration: 5, Func. Count: 30, Neg. LLF: 123.1535735765226
Iteration: 6, Func. Count: 36, Neg. LLF: 122.18184027655812
Iteration: 7, Func. Count: 42, Neg. LLF: 122.12548677833408
Iteration: 8, Func. Count: 48, Neg. LLF: 121.98668620780727
Iteration: 9, Func. Count: 54, Neg. LLF: 121.9776719396587
Iteration: 10, Func. Count: 60, Neg. LLF: 121.97720646664831
Iteration: 11, Func. Count: 65, Neg. LLF: 121.97720406069993
Iteration: 12, Func. Count: 69, Neg. LLF: 121.97720406071018
Optimization terminated successfully (Exit mode 0)
Current function value: 121.97720406069993
Iterations: 12
Function evaluations: 69
Gradient evaluations: 12
Iteration: 1, Func. Count: 7, Neg. LLF: 212.33082397519058
Iteration: 2, Func. Count: 15, Neg. LLF: 122.14953143443027
Iteration: 3, Func. Count: 22, Neg. LLF: 122.07599134793709
Iteration: 4, Func. Count: 28, Neg. LLF: 122.03681864707116
Iteration: 5, Func. Count: 34, Neg. LLF: 122.02101280367566
Iteration: 6, Func. Count: 40, Neg. LLF: 122.01635545064146
Iteration: 7, Func. Count: 46, Neg. LLF: 122.01474850092573
Iteration: 8, Func. Count: 52, Neg. LLF: 122.01187981587347
Iteration: 9, Func. Count: 58, Neg. LLF: 121.99188284040423
Iteration: 10, Func. Count: 64, Neg. LLF: 121.98500237159834
Iteration: 11, Func. Count: 70, Neg. LLF: 121.98212871432747
Iteration: 12, Func. Count: 76, Neg. LLF: 121.97792076527023
Iteration: 13, Func. Count: 82, Neg. LLF: 121.97725914558191
Iteration: 14, Func. Count: 88, Neg. LLF: 121.97720694458236
Iteration: 15, Func. Count: 94, Neg. LLF: 121.97720396202655
Iteration: 16, Func. Count: 99, Neg. LLF: 121.97720396332633
Optimization terminated successfully (Exit mode 0)
Current function value: 121.97720396202655
Iterations: 16
Function evaluations: 99
Gradient evaluations: 16
Iteration: 1, Func. Count: 8, Neg. LLF: 213.84355690270536
Iteration: 2, Func. Count: 17, Neg. LLF: 122.13646160809303
Iteration: 3, Func. Count: 24, Neg. LLF: 122.12823995923263
Iteration: 4, Func. Count: 32, Neg. LLF: 122.19495802850895
Iteration: 5, Func. Count: 40, Neg. LLF: 122.02583330002419
Iteration: 6, Func. Count: 47, Neg. LLF: 122.01001503663186
Iteration: 7, Func. Count: 54, Neg. LLF: 122.00351275479018
Iteration: 8, Func. Count: 61, Neg. LLF: 121.99691651348088
Iteration: 9, Func. Count: 68, Neg. LLF: 121.97975752818098
Iteration: 10, Func. Count: 75, Neg. LLF: 121.97756925117672
Iteration: 11, Func. Count: 82, Neg. LLF: 121.97722364112278
Iteration: 12, Func. Count: 89, Neg. LLF: 121.97720413200354
Iteration: 13, Func. Count: 95, Neg. LLF: 121.97720413475699
Optimization terminated successfully (Exit mode 0)
Current function value: 121.97720413200354
Iterations: 13
Function evaluations: 95
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 217.40153259924233
Iteration: 2, Func. Count: 19, Neg. LLF: 122.13129973183135
Iteration: 3, Func. Count: 27, Neg. LLF: 122.12712648595398
Iteration: 4, Func. Count: 36, Neg. LLF: 122.19063848896293
Iteration: 5, Func. Count: 45, Neg. LLF: 122.04336301967604
Iteration: 6, Func. Count: 53, Neg. LLF: 122.02986013891355
Iteration: 7, Func. Count: 61, Neg. LLF: 122.00848990177631
Iteration: 8, Func. Count: 69, Neg. LLF: 122.003879766105
Iteration: 9, Func. Count: 77, Neg. LLF: 121.97992561860498
Iteration: 10, Func. Count: 85, Neg. LLF: 121.97800990200112
Iteration: 11, Func. Count: 93, Neg. LLF: 121.97743622611495
Iteration: 12, Func. Count: 101, Neg. LLF: 121.97729544763291
Iteration: 13, Func. Count: 109, Neg. LLF: 121.97722323351407
Iteration: 14, Func. Count: 117, Neg. LLF: 121.97720393656373
Iteration: 15, Func. Count: 124, Neg. LLF: 121.97720394036706
Optimization terminated successfully (Exit mode 0)
Current function value: 121.97720393656373
Iterations: 15
Function evaluations: 124
Gradient evaluations: 15
Iteration: 1, Func. Count: 6, Neg. LLF: 127.52451433259678
Iteration: 2, Func. Count: 12, Neg. LLF: 125.18215880237743
Iteration: 3, Func. Count: 18, Neg. LLF: 122.87635227703773
Iteration: 4, Func. Count: 23, Neg. LLF: 123.73134154744072
Iteration: 5, Func. Count: 29, Neg. LLF: 122.4882006526399
Iteration: 6, Func. Count: 34, Neg. LLF: 122.45059704487079
Iteration: 7, Func. Count: 39, Neg. LLF: 122.4461332474743
Iteration: 8, Func. Count: 44, Neg. LLF: 122.44503723670633
Iteration: 9, Func. Count: 49, Neg. LLF: 122.44495135130039
Iteration: 10, Func. Count: 54, Neg. LLF: 122.44492895252398
Iteration: 11, Func. Count: 59, Neg. LLF: 122.44491882359759
Iteration: 12, Func. Count: 64, Neg. LLF: 122.4449175419436
Iteration: 13, Func. Count: 68, Neg. LLF: 122.44491754195687
Optimization terminated successfully (Exit mode 0)
Current function value: 122.4449175419436
Iterations: 13
Function evaluations: 68
Gradient evaluations: 13
Iteration: 1, Func. Count: 7, Neg. LLF: 187.2340380005245
Iteration: 2, Func. Count: 15, Neg. LLF: 123.13582677473889
Iteration: 3, Func. Count: 22, Neg. LLF: 121.87750089475098
Iteration: 4, Func. Count: 28, Neg. LLF: 121.92457529676466
Iteration: 5, Func. Count: 35, Neg. LLF: 121.84139572035956
Iteration: 6, Func. Count: 41, Neg. LLF: 121.83990280854334
Iteration: 7, Func. Count: 47, Neg. LLF: 121.83975223017855
Iteration: 8, Func. Count: 53, Neg. LLF: 121.83974938817005
Iteration: 9, Func. Count: 59, Neg. LLF: 121.83974853676555
Optimization terminated successfully (Exit mode 0)
Current function value: 121.83974853676555
Iterations: 9
Function evaluations: 59
Gradient evaluations: 9
Iteration: 1, Func. Count: 8, Neg. LLF: 172.74614363329346
Iteration: 2, Func. Count: 17, Neg. LLF: 126.12164230412603
Iteration: 3, Func. Count: 25, Neg. LLF: 122.19355921426572
Iteration: 4, Func. Count: 33, Neg. LLF: 121.88452914837676
Iteration: 5, Func. Count: 40, Neg. LLF: 121.87638193423497
Iteration: 6, Func. Count: 47, Neg. LLF: 121.87550921367261
Iteration: 7, Func. Count: 54, Neg. LLF: 121.8753108453511
Iteration: 8, Func. Count: 61, Neg. LLF: 121.87509501298635
Iteration: 9, Func. Count: 68, Neg. LLF: 121.87498839492858
Iteration: 10, Func. Count: 75, Neg. LLF: 121.87485878354283
Iteration: 11, Func. Count: 82, Neg. LLF: 121.87485756014576
Iteration: 12, Func. Count: 88, Neg. LLF: 121.87485756015309
Optimization terminated successfully (Exit mode 0)
Current function value: 121.87485756014576
Iterations: 12
Function evaluations: 88
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 192.28996938877683
Iteration: 2, Func. Count: 19, Neg. LLF: 122.18016348605431
Iteration: 3, Func. Count: 28, Neg. LLF: 121.96667854187018
Iteration: 4, Func. Count: 36, Neg. LLF: 121.89502051475588
Iteration: 5, Func. Count: 44, Neg. LLF: 121.88830093065907
Iteration: 6, Func. Count: 52, Neg. LLF: 121.88266941232939
Iteration: 7, Func. Count: 60, Neg. LLF: 121.88160297285417
Iteration: 8, Func. Count: 68, Neg. LLF: 121.93007746304392
Iteration: 9, Func. Count: 77, Neg. LLF: 121.93498326845128
Iteration: 10, Func. Count: 86, Neg. LLF: 121.92950783751189
Iteration: 11, Func. Count: 95, Neg. LLF: 121.8792504802692
Iteration: 12, Func. Count: 104, Neg. LLF: 121.87779901998367
Iteration: 13, Func. Count: 112, Neg. LLF: 121.87691558756744
Iteration: 14, Func. Count: 120, Neg. LLF: 121.87560068456155
Iteration: 15, Func. Count: 128, Neg. LLF: 121.87495209799931
Iteration: 16, Func. Count: 136, Neg. LLF: 121.87487108190527
Iteration: 17, Func. Count: 144, Neg. LLF: 121.87485804921707
Iteration: 18, Func. Count: 152, Neg. LLF: 121.87485749867722
Optimization terminated successfully (Exit mode 0)
Current function value: 121.87485749867722
Iterations: 18
Function evaluations: 152
Gradient evaluations: 18
Iteration: 1, Func. Count: 10, Neg. LLF: 194.2487773809193
Iteration: 2, Func. Count: 21, Neg. LLF: 121.93604492382651
Iteration: 3, Func. Count: 30, Neg. LLF: 121.92255981935635
Iteration: 4, Func. Count: 40, Neg. LLF: 122.07093907292885
Iteration: 5, Func. Count: 50, Neg. LLF: 121.87598290443181
Iteration: 6, Func. Count: 59, Neg. LLF: 121.87491988306515
Iteration: 7, Func. Count: 68, Neg. LLF: 121.87486762513463
Iteration: 8, Func. Count: 77, Neg. LLF: 121.87486000097623
Iteration: 9, Func. Count: 86, Neg. LLF: 121.87485799032406
Iteration: 10, Func. Count: 94, Neg. LLF: 121.87485799644149
Optimization terminated successfully (Exit mode 0)
Current function value: 121.87485799032406
Iterations: 10
Function evaluations: 94
Gradient evaluations: 10
Iteration: 1, Func. Count: 7, Neg. LLF: 127.41709088248142
Iteration: 2, Func. Count: 14, Neg. LLF: 127.70246374688925
Iteration: 3, Func. Count: 21, Neg. LLF: 122.81390655373225
Iteration: 4, Func. Count: 27, Neg. LLF: 122.565026992642
Iteration: 5, Func. Count: 33, Neg. LLF: 122.53287998653266
Iteration: 6, Func. Count: 40, Neg. LLF: 122.45852831459077
Iteration: 7, Func. Count: 47, Neg. LLF: 122.43613756103805
Iteration: 8, Func. Count: 53, Neg. LLF: 122.43574222002859
Iteration: 9, Func. Count: 59, Neg. LLF: 122.4356500625417
Iteration: 10, Func. Count: 65, Neg. LLF: 122.43564234094032
Iteration: 11, Func. Count: 71, Neg. LLF: 122.43564021520488
Iteration: 12, Func. Count: 76, Neg. LLF: 122.43564021519926
Optimization terminated successfully (Exit mode 0)
Current function value: 122.43564021520488
Iterations: 12
Function evaluations: 76
Gradient evaluations: 12
Iteration: 1, Func. Count: 8, Neg. LLF: 171.86761070462381
Iteration: 2, Func. Count: 17, Neg. LLF: 122.06584183684525
Iteration: 3, Func. Count: 25, Neg. LLF: 121.95599910260658
Iteration: 4, Func. Count: 33, Neg. LLF: 121.8900248803178
Iteration: 5, Func. Count: 41, Neg. LLF: 121.8533419188767
Iteration: 6, Func. Count: 48, Neg. LLF: 121.8357595020659
Iteration: 7, Func. Count: 55, Neg. LLF: 121.8324914362345
Iteration: 8, Func. Count: 62, Neg. LLF: 121.83009257540866
Iteration: 9, Func. Count: 69, Neg. LLF: 121.82982122947561
Iteration: 10, Func. Count: 76, Neg. LLF: 121.82981109831414
Iteration: 11, Func. Count: 83, Neg. LLF: 121.82980980324513
Iteration: 12, Func. Count: 89, Neg. LLF: 121.82980980334867
Optimization terminated successfully (Exit mode 0)
Current function value: 121.82980980324513
Iterations: 12
Function evaluations: 89
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 176.74486335529664
Iteration: 2, Func. Count: 19, Neg. LLF: 122.26541146338838
Iteration: 3, Func. Count: 28, Neg. LLF: 121.89702508317224
Iteration: 4, Func. Count: 36, Neg. LLF: 122.05044936770189
Iteration: 5, Func. Count: 45, Neg. LLF: 121.89286954038293
Iteration: 6, Func. Count: 53, Neg. LLF: 121.8827017349619
Iteration: 7, Func. Count: 61, Neg. LLF: 121.83784514368487
Iteration: 8, Func. Count: 69, Neg. LLF: 121.83456687196548
Iteration: 9, Func. Count: 77, Neg. LLF: 121.83259819872012
Iteration: 10, Func. Count: 85, Neg. LLF: 121.83177062393065
Iteration: 11, Func. Count: 93, Neg. LLF: 121.83009250490989
Iteration: 12, Func. Count: 101, Neg. LLF: 121.82981125691063
Iteration: 13, Func. Count: 109, Neg. LLF: 121.82980959218645
Iteration: 14, Func. Count: 116, Neg. LLF: 121.82980959647537
Optimization terminated successfully (Exit mode 0)
Current function value: 121.82980959218645
Iterations: 14
Function evaluations: 116
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 178.300730902921
Iteration: 2, Func. Count: 21, Neg. LLF: 122.3579328024053
Iteration: 3, Func. Count: 31, Neg. LLF: 121.89704546934847
Iteration: 4, Func. Count: 40, Neg. LLF: 122.24051279097195
Iteration: 5, Func. Count: 50, Neg. LLF: 121.89395204792085
Iteration: 6, Func. Count: 59, Neg. LLF: 121.88750344968311
Iteration: 7, Func. Count: 68, Neg. LLF: 121.88115699403308
Iteration: 8, Func. Count: 77, Neg. LLF: 121.86489449509853
Iteration: 9, Func. Count: 86, Neg. LLF: 121.85050766243269
Iteration: 10, Func. Count: 95, Neg. LLF: 121.87838532792843
Iteration: 11, Func. Count: 105, Neg. LLF: 121.83859041770657
Iteration: 12, Func. Count: 114, Neg. LLF: 121.83222686317221
Iteration: 13, Func. Count: 123, Neg. LLF: 121.82997759301098
Iteration: 14, Func. Count: 132, Neg. LLF: 121.82983800772985
Iteration: 15, Func. Count: 141, Neg. LLF: 121.82981060721733
Iteration: 16, Func. Count: 150, Neg. LLF: 121.82980961627494
Optimization terminated successfully (Exit mode 0)
Current function value: 121.82980961627494
Iterations: 16
Function evaluations: 150
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 178.06524939773684
Iteration: 2, Func. Count: 23, Neg. LLF: 122.27511283158134
Iteration: 3, Func. Count: 34, Neg. LLF: 122.06490448176817
Iteration: 4, Func. Count: 45, Neg. LLF: 122.1277778878609
Iteration: 5, Func. Count: 56, Neg. LLF: 121.87727067934085
Iteration: 6, Func. Count: 66, Neg. LLF: 121.87626915917808
Iteration: 7, Func. Count: 76, Neg. LLF: 121.87561709653669
Iteration: 8, Func. Count: 86, Neg. LLF: 121.87500667945686
Iteration: 9, Func. Count: 96, Neg. LLF: 121.87486291997814
Iteration: 10, Func. Count: 106, Neg. LLF: 121.87485809813504
Iteration: 11, Func. Count: 116, Neg. LLF: 121.87485747715706
Optimization terminated successfully (Exit mode 0)
Current function value: 121.87485747715706
Iterations: 11
Function evaluations: 116
Gradient evaluations: 11
Iteration: 1, Func. Count: 8, Neg. LLF: 124.96332033272459
Iteration: 2, Func. Count: 17, Neg. LLF: 125.3046558325987
Iteration: 3, Func. Count: 26, Neg. LLF: 122.15284073399476
Iteration: 4, Func. Count: 33, Neg. LLF: 122.76728323596917
Iteration: 5, Func. Count: 41, Neg. LLF: 122.4499531422015
Iteration: 6, Func. Count: 49, Neg. LLF: 121.97620515595743
Iteration: 7, Func. Count: 56, Neg. LLF: 121.9715933792074
Iteration: 8, Func. Count: 63, Neg. LLF: 121.97110486687157
Iteration: 9, Func. Count: 70, Neg. LLF: 121.9710002197197
Iteration: 10, Func. Count: 77, Neg. LLF: 121.97099897909641
Iteration: 11, Func. Count: 83, Neg. LLF: 121.97099897909212
Optimization terminated successfully (Exit mode 0)
Current function value: 121.97099897909641
Iterations: 11
Function evaluations: 83
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 175.4086571160584
Iteration: 2, Func. Count: 19, Neg. LLF: 122.1722118535906
Iteration: 3, Func. Count: 28, Neg. LLF: 121.92492306212124
Iteration: 4, Func. Count: 37, Neg. LLF: 121.87226398397404
Iteration: 5, Func. Count: 46, Neg. LLF: 121.99696767303126
Iteration: 6, Func. Count: 55, Neg. LLF: 121.82688085730095
Iteration: 7, Func. Count: 63, Neg. LLF: 121.82592588956047
Iteration: 8, Func. Count: 72, Neg. LLF: 121.81907082770982
Iteration: 9, Func. Count: 80, Neg. LLF: 121.8179637065139
Iteration: 10, Func. Count: 88, Neg. LLF: 121.81771427778514
Iteration: 11, Func. Count: 96, Neg. LLF: 121.81688164788142
Iteration: 12, Func. Count: 104, Neg. LLF: 121.81678873540922
Iteration: 13, Func. Count: 112, Neg. LLF: 121.81677283668394
Iteration: 14, Func. Count: 119, Neg. LLF: 121.81677283669235
Optimization terminated successfully (Exit mode 0)
Current function value: 121.81677283668394
Iterations: 14
Function evaluations: 119
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 129.0751187309381
Iteration: 2, Func. Count: 20, Neg. LLF: 137.70491606010833
Iteration: 3, Func. Count: 31, Neg. LLF: 122.02085846654356
Iteration: 4, Func. Count: 41, Neg. LLF: 121.96104901041534
Iteration: 5, Func. Count: 51, Neg. LLF: 121.88106587353127
Iteration: 6, Func. Count: 60, Neg. LLF: 121.87594837813239
Iteration: 7, Func. Count: 69, Neg. LLF: 121.99438733797321
Iteration: 8, Func. Count: 79, Neg. LLF: 121.86819001738282
Iteration: 9, Func. Count: 88, Neg. LLF: 121.8744089421348
Iteration: 10, Func. Count: 98, Neg. LLF: 121.8609779354041
Iteration: 11, Func. Count: 107, Neg. LLF: 121.85578594886351
Iteration: 12, Func. Count: 116, Neg. LLF: 121.85497037734117
Iteration: 13, Func. Count: 125, Neg. LLF: 121.85453274303353
Iteration: 14, Func. Count: 134, Neg. LLF: 121.85411487674294
Iteration: 15, Func. Count: 143, Neg. LLF: 121.84127380891483
Iteration: 16, Func. Count: 152, Neg. LLF: 121.82123474720132
Iteration: 17, Func. Count: 161, Neg. LLF: 121.85034943829359
Iteration: 18, Func. Count: 171, Neg. LLF: 121.81692049822522
Iteration: 19, Func. Count: 180, Neg. LLF: 121.81687310048673
Iteration: 20, Func. Count: 189, Neg. LLF: 121.81678634684744
Iteration: 21, Func. Count: 198, Neg. LLF: 121.81677554122317
Iteration: 22, Func. Count: 207, Neg. LLF: 121.81677287556523
Iteration: 23, Func. Count: 215, Neg. LLF: 121.81677287796066
Optimization terminated successfully (Exit mode 0)
Current function value: 121.81677287556523
Iterations: 23
Function evaluations: 215
Gradient evaluations: 23
Iteration: 1, Func. Count: 11, Neg. LLF: 129.80277963911914
Iteration: 2, Func. Count: 22, Neg. LLF: 141.18785575795633
Iteration: 3, Func. Count: 34, Neg. LLF: 122.29080143890604
Iteration: 4, Func. Count: 45, Neg. LLF: 121.97847421784091
Iteration: 5, Func. Count: 56, Neg. LLF: 121.89331128784183
Iteration: 6, Func. Count: 66, Neg. LLF: 122.06736984870774
Iteration: 7, Func. Count: 77, Neg. LLF: 121.88197450531347
Iteration: 8, Func. Count: 88, Neg. LLF: 121.86715563356356
Iteration: 9, Func. Count: 98, Neg. LLF: 121.84471144417671
Iteration: 10, Func. Count: 108, Neg. LLF: 121.83636576888108
Iteration: 11, Func. Count: 118, Neg. LLF: 121.88865159909746
Iteration: 12, Func. Count: 129, Neg. LLF: 121.83784781072853
Iteration: 13, Func. Count: 140, Neg. LLF: 121.81721362794057
Iteration: 14, Func. Count: 150, Neg. LLF: 121.81685448297154
Iteration: 15, Func. Count: 160, Neg. LLF: 121.81680291444836
Iteration: 16, Func. Count: 170, Neg. LLF: 121.81677555971535
Iteration: 17, Func. Count: 180, Neg. LLF: 121.8167728549352
Iteration: 18, Func. Count: 189, Neg. LLF: 121.8167728587841
Optimization terminated successfully (Exit mode 0)
Current function value: 121.8167728549352
Iterations: 18
Function evaluations: 189
Gradient evaluations: 18
Iteration: 1, Func. Count: 12, Neg. LLF: 127.42968507349528
Iteration: 2, Func. Count: 24, Neg. LLF: 123.7110756712014
Iteration: 3, Func. Count: 37, Neg. LLF: 122.33301123462624
Iteration: 4, Func. Count: 49, Neg. LLF: 121.80973420659099
Iteration: 5, Func. Count: 60, Neg. LLF: 121.81771451995216
Iteration: 6, Func. Count: 72, Neg. LLF: 121.81312243556071
Iteration: 7, Func. Count: 84, Neg. LLF: 121.77024912526443
Iteration: 8, Func. Count: 95, Neg. LLF: 121.78527328951365
Iteration: 9, Func. Count: 107, Neg. LLF: 121.76005033487644
Iteration: 10, Func. Count: 118, Neg. LLF: 121.75936909089884
Iteration: 11, Func. Count: 129, Neg. LLF: 121.75898337115802
Iteration: 12, Func. Count: 140, Neg. LLF: 121.75865877558208
Iteration: 13, Func. Count: 151, Neg. LLF: 121.75851460632371
Iteration: 14, Func. Count: 162, Neg. LLF: 121.75845295803971
Iteration: 15, Func. Count: 173, Neg. LLF: 121.7584442376946
Iteration: 16, Func. Count: 183, Neg. LLF: 121.75844423769084
Optimization terminated successfully (Exit mode 0)
Current function value: 121.7584442376946
Iterations: 16
Function evaluations: 183
Gradient evaluations: 16
Iteration: 1, Func. Count: 9, Neg. LLF: 124.25604374564442
Iteration: 2, Func. Count: 18, Neg. LLF: 125.72901204982418
Iteration: 3, Func. Count: 27, Neg. LLF: 123.63605249647408
Iteration: 4, Func. Count: 36, Neg. LLF: 122.97158525371147
Iteration: 5, Func. Count: 45, Neg. LLF: 122.21005103307473
Iteration: 6, Func. Count: 53, Neg. LLF: 125.9430495525389
Iteration: 7, Func. Count: 62, Neg. LLF: 122.208097315629
Iteration: 8, Func. Count: 71, Neg. LLF: 122.02413315619185
Iteration: 9, Func. Count: 79, Neg. LLF: 121.9655349965679
Iteration: 10, Func. Count: 87, Neg. LLF: 121.95944658261422
Iteration: 11, Func. Count: 95, Neg. LLF: 121.95753538231179
Iteration: 12, Func. Count: 103, Neg. LLF: 121.95745998987773
Iteration: 13, Func. Count: 111, Neg. LLF: 121.95744873097814
Iteration: 14, Func. Count: 119, Neg. LLF: 121.95744715581912
Iteration: 15, Func. Count: 126, Neg. LLF: 121.957447155808
Optimization terminated successfully (Exit mode 0)
Current function value: 121.95744715581912
Iterations: 15
Function evaluations: 126
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 177.10547921428417
Iteration: 2, Func. Count: 21, Neg. LLF: 140.89334362803754
Iteration: 3, Func. Count: 32, Neg. LLF: 121.91884205404237
Iteration: 4, Func. Count: 41, Neg. LLF: 121.8827364181184
Iteration: 5, Func. Count: 50, Neg. LLF: 123.68882449512238
Iteration: 6, Func. Count: 60, Neg. LLF: 121.83730672920892
Iteration: 7, Func. Count: 69, Neg. LLF: 121.83210212968896
Iteration: 8, Func. Count: 78, Neg. LLF: 121.82029145757598
Iteration: 9, Func. Count: 87, Neg. LLF: 121.81841825322503
Iteration: 10, Func. Count: 96, Neg. LLF: 121.81804438814852
Iteration: 11, Func. Count: 105, Neg. LLF: 121.81752053306455
Iteration: 12, Func. Count: 114, Neg. LLF: 121.81699911288645
Iteration: 13, Func. Count: 123, Neg. LLF: 121.81680308850899
Iteration: 14, Func. Count: 132, Neg. LLF: 121.81677333981885
Iteration: 15, Func. Count: 141, Neg. LLF: 121.81677282229485
Optimization terminated successfully (Exit mode 0)
Current function value: 121.81677282229485
Iterations: 15
Function evaluations: 141
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 127.29910726240871
Iteration: 2, Func. Count: 22, Neg. LLF: 124.22650009598533
Iteration: 3, Func. Count: 34, Neg. LLF: 124.66726267380392
Iteration: 4, Func. Count: 45, Neg. LLF: 121.95255095890843
Iteration: 5, Func. Count: 56, Neg. LLF: 121.88491856541634
Iteration: 6, Func. Count: 66, Neg. LLF: 122.03122441567345
Iteration: 7, Func. Count: 77, Neg. LLF: 121.87671043276391
Iteration: 8, Func. Count: 87, Neg. LLF: 121.8714640873844
Iteration: 9, Func. Count: 97, Neg. LLF: 121.86512633048355
Iteration: 10, Func. Count: 107, Neg. LLF: 121.85661099549621
Iteration: 11, Func. Count: 117, Neg. LLF: 121.85091731365647
Iteration: 12, Func. Count: 127, Neg. LLF: 121.84272459533453
Iteration: 13, Func. Count: 137, Neg. LLF: 121.8282875479188
Iteration: 14, Func. Count: 147, Neg. LLF: 121.82364635440942
Iteration: 15, Func. Count: 157, Neg. LLF: 121.81796506860495
Iteration: 16, Func. Count: 167, Neg. LLF: 121.81702955261757
Iteration: 17, Func. Count: 177, Neg. LLF: 121.81704047158435
Iteration: 18, Func. Count: 188, Neg. LLF: 121.81677641280496
Iteration: 19, Func. Count: 198, Neg. LLF: 121.81677574585987
Iteration: 20, Func. Count: 208, Neg. LLF: 121.81677304851395
Optimization terminated successfully (Exit mode 0)
Current function value: 121.8167730461198
Iterations: 20
Function evaluations: 208
Gradient evaluations: 20
Iteration: 1, Func. Count: 12, Neg. LLF: 128.44085775484305
Iteration: 2, Func. Count: 24, Neg. LLF: 127.03699935613126
Iteration: 3, Func. Count: 36, Neg. LLF: 124.61563008699909
Iteration: 4, Func. Count: 48, Neg. LLF: 121.95842162568144
Iteration: 5, Func. Count: 59, Neg. LLF: 121.90927042208914
Iteration: 6, Func. Count: 70, Neg. LLF: 122.44001095172084
Iteration: 7, Func. Count: 82, Neg. LLF: 121.875320708262
Iteration: 8, Func. Count: 93, Neg. LLF: 121.86690537843269
Iteration: 9, Func. Count: 104, Neg. LLF: 121.90876204962747
Iteration: 10, Func. Count: 116, Neg. LLF: 121.85656530435399
Iteration: 11, Func. Count: 127, Neg. LLF: 121.85182376407768
Iteration: 12, Func. Count: 138, Neg. LLF: 121.8389368596293
Iteration: 13, Func. Count: 149, Neg. LLF: 121.85106954610836
Iteration: 14, Func. Count: 161, Neg. LLF: 121.84133841226004
Iteration: 15, Func. Count: 173, Neg. LLF: 121.81707011784249
Iteration: 16, Func. Count: 184, Neg. LLF: 121.81687573271677
Iteration: 17, Func. Count: 195, Neg. LLF: 121.81679763354737
Iteration: 18, Func. Count: 206, Neg. LLF: 121.81678136849389
Iteration: 19, Func. Count: 217, Neg. LLF: 121.81677307151149
Iteration: 20, Func. Count: 227, Neg. LLF: 121.81677307543022
Optimization terminated successfully (Exit mode 0)
Current function value: 121.81677307151149
Iterations: 20
Function evaluations: 227
Gradient evaluations: 20
Iteration: 1, Func. Count: 13, Neg. LLF: 127.78613156818037
Iteration: 2, Func. Count: 26, Neg. LLF: 124.71736227298781
Iteration: 3, Func. Count: 39, Neg. LLF: 123.49975680586307
Iteration: 4, Func. Count: 53, Neg. LLF: 121.97879769479908
Iteration: 5, Func. Count: 66, Neg. LLF: 121.84156121771917
Iteration: 6, Func. Count: 78, Neg. LLF: 121.83066127292378
Iteration: 7, Func. Count: 91, Neg. LLF: 122.11261760282105
Iteration: 8, Func. Count: 104, Neg. LLF: 121.76499200783928
Iteration: 9, Func. Count: 116, Neg. LLF: 121.76205369679928
Iteration: 10, Func. Count: 128, Neg. LLF: 121.76077457256582
Iteration: 11, Func. Count: 140, Neg. LLF: 121.75996885477447
Iteration: 12, Func. Count: 152, Neg. LLF: 121.75880391684562
Iteration: 13, Func. Count: 164, Neg. LLF: 121.75857603986141
Iteration: 14, Func. Count: 176, Neg. LLF: 121.75844906333896
Iteration: 15, Func. Count: 188, Neg. LLF: 121.75844394952055
Iteration: 16, Func. Count: 199, Neg. LLF: 121.75844394945142
Optimization terminated successfully (Exit mode 0)
Current function value: 121.75844394952055
Iterations: 16
Function evaluations: 199
Gradient evaluations: 16
Iteration: 1, Func. Count: 6, Neg. LLF: 133.19749719307399
Iteration: 2, Func. Count: 12, Neg. LLF: 134.76589500981933
Iteration: 3, Func. Count: 18, Neg. LLF: 122.82748818414068
Iteration: 4, Func. Count: 23, Neg. LLF: 122.67522719705424
Iteration: 5, Func. Count: 28, Neg. LLF: 122.6570427708904
Iteration: 6, Func. Count: 33, Neg. LLF: 122.65689613619864
Iteration: 7, Func. Count: 38, Neg. LLF: 122.65684488391112
Iteration: 8, Func. Count: 42, Neg. LLF: 122.65684493284867
Optimization terminated successfully (Exit mode 0)
Current function value: 122.65684488391112
Iterations: 8
Function evaluations: 42
Gradient evaluations: 8
Iteration: 1, Func. Count: 7, Neg. LLF: 206.77457553008668
Iteration: 2, Func. Count: 15, Neg. LLF: 122.18849306163013
Iteration: 3, Func. Count: 22, Neg. LLF: 122.06934502770834
Iteration: 4, Func. Count: 28, Neg. LLF: 122.26211525995927
Iteration: 5, Func. Count: 35, Neg. LLF: 123.42765886077288
Iteration: 6, Func. Count: 42, Neg. LLF: 122.09787561628079
Iteration: 7, Func. Count: 49, Neg. LLF: 122.05343796984822
Iteration: 8, Func. Count: 56, Neg. LLF: 121.97891936908921
Iteration: 9, Func. Count: 63, Neg. LLF: 121.97721544675892
Iteration: 10, Func. Count: 69, Neg. LLF: 121.97720403965651
Iteration: 11, Func. Count: 74, Neg. LLF: 121.977204039718
Optimization terminated successfully (Exit mode 0)
Current function value: 121.97720403965651
Iterations: 11
Function evaluations: 74
Gradient evaluations: 11
Iteration: 1, Func. Count: 8, Neg. LLF: 211.38918056191923
Iteration: 2, Func. Count: 17, Neg. LLF: 122.14256779404931
Iteration: 3, Func. Count: 24, Neg. LLF: 122.06170734313716
Iteration: 4, Func. Count: 31, Neg. LLF: 122.18478619877563
Iteration: 5, Func. Count: 39, Neg. LLF: 122.01594716567617
Iteration: 6, Func. Count: 46, Neg. LLF: 122.00903795869648
Iteration: 7, Func. Count: 53, Neg. LLF: 122.00675087305716
Iteration: 8, Func. Count: 60, Neg. LLF: 121.99688080970456
Iteration: 9, Func. Count: 67, Neg. LLF: 121.98274520500185
Iteration: 10, Func. Count: 74, Neg. LLF: 121.97728844800605
Iteration: 11, Func. Count: 81, Neg. LLF: 121.9772176432107
Iteration: 12, Func. Count: 88, Neg. LLF: 121.97720899866002
Iteration: 13, Func. Count: 95, Neg. LLF: 121.97720391266375
Iteration: 14, Func. Count: 101, Neg. LLF: 121.97720391383612
Optimization terminated successfully (Exit mode 0)
Current function value: 121.97720391266375
Iterations: 14
Function evaluations: 101
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 213.22145504844633
Iteration: 2, Func. Count: 19, Neg. LLF: 122.14210363765025
Iteration: 3, Func. Count: 27, Neg. LLF: 122.1115174807263
Iteration: 4, Func. Count: 35, Neg. LLF: 122.36432243603332
Iteration: 5, Func. Count: 44, Neg. LLF: 122.02392722597524
Iteration: 6, Func. Count: 52, Neg. LLF: 122.01516016429589
Iteration: 7, Func. Count: 60, Neg. LLF: 122.00148163222401
Iteration: 8, Func. Count: 68, Neg. LLF: 121.99604593468253
Iteration: 9, Func. Count: 76, Neg. LLF: 121.99037660516538
Iteration: 10, Func. Count: 84, Neg. LLF: 121.97985855148659
Iteration: 11, Func. Count: 92, Neg. LLF: 121.9773900727812
Iteration: 12, Func. Count: 100, Neg. LLF: 121.97720552989938
Iteration: 13, Func. Count: 108, Neg. LLF: 121.97720394968353
Iteration: 14, Func. Count: 115, Neg. LLF: 121.9772039521972
Optimization terminated successfully (Exit mode 0)
Current function value: 121.97720394968353
Iterations: 14
Function evaluations: 115
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 216.15931095140235
Iteration: 2, Func. Count: 21, Neg. LLF: 122.12835333911205
Iteration: 3, Func. Count: 30, Neg. LLF: 122.13403008580256
Iteration: 4, Func. Count: 40, Neg. LLF: 122.2012266645206
Iteration: 5, Func. Count: 50, Neg. LLF: 122.03502580671604
Iteration: 6, Func. Count: 59, Neg. LLF: 122.01993727624425
Iteration: 7, Func. Count: 68, Neg. LLF: 121.99990718738118
Iteration: 8, Func. Count: 77, Neg. LLF: 121.99437791309889
Iteration: 9, Func. Count: 86, Neg. LLF: 121.98002130252057
Iteration: 10, Func. Count: 95, Neg. LLF: 121.97732499467327
Iteration: 11, Func. Count: 104, Neg. LLF: 121.9772566181103
Iteration: 12, Func. Count: 113, Neg. LLF: 121.97720495244639
Iteration: 13, Func. Count: 122, Neg. LLF: 121.97720393840834
Iteration: 14, Func. Count: 130, Neg. LLF: 121.97720394235849
Optimization terminated successfully (Exit mode 0)
Current function value: 121.97720393840834
Iterations: 14
Function evaluations: 130
Gradient evaluations: 14
Iteration: 1, Func. Count: 7, Neg. LLF: 129.1845591175618
Iteration: 2, Func. Count: 14, Neg. LLF: 129.11768379587286
Iteration: 3, Func. Count: 21, Neg. LLF: 122.865024084596
Iteration: 4, Func. Count: 27, Neg. LLF: 122.79212231934366
Iteration: 5, Func. Count: 34, Neg. LLF: 122.4594046512971
Iteration: 6, Func. Count: 40, Neg. LLF: 122.44520412363836
Iteration: 7, Func. Count: 46, Neg. LLF: 122.44499382570008
Iteration: 8, Func. Count: 52, Neg. LLF: 122.44492217608664
Iteration: 9, Func. Count: 58, Neg. LLF: 122.44491796839218
Iteration: 10, Func. Count: 63, Neg. LLF: 122.44491796836553
Optimization terminated successfully (Exit mode 0)
Current function value: 122.44491796839218
Iterations: 10
Function evaluations: 63
Gradient evaluations: 10
Iteration: 1, Func. Count: 8, Neg. LLF: 187.89561135298516
Iteration: 2, Func. Count: 17, Neg. LLF: 123.23116628835727
Iteration: 3, Func. Count: 25, Neg. LLF: 121.87728836458388
Iteration: 4, Func. Count: 32, Neg. LLF: 121.92009744945784
Iteration: 5, Func. Count: 40, Neg. LLF: 121.84093475268958
Iteration: 6, Func. Count: 47, Neg. LLF: 121.83983552538595
Iteration: 7, Func. Count: 54, Neg. LLF: 121.83975077543325
Iteration: 8, Func. Count: 61, Neg. LLF: 121.8397489977037
Iteration: 9, Func. Count: 68, Neg. LLF: 121.83974852108109
Optimization terminated successfully (Exit mode 0)
Current function value: 121.83974852108109
Iterations: 9
Function evaluations: 68
Gradient evaluations: 9
Iteration: 1, Func. Count: 9, Neg. LLF: 172.48310871199834
Iteration: 2, Func. Count: 19, Neg. LLF: 125.76973028684874
Iteration: 3, Func. Count: 28, Neg. LLF: 122.19600785868094
Iteration: 4, Func. Count: 37, Neg. LLF: 121.88780855833089
Iteration: 5, Func. Count: 45, Neg. LLF: 121.8804331622537
Iteration: 6, Func. Count: 53, Neg. LLF: 121.92962365477378
Iteration: 7, Func. Count: 62, Neg. LLF: 121.8809459724484
Iteration: 8, Func. Count: 71, Neg. LLF: 121.87493195267982
Iteration: 9, Func. Count: 79, Neg. LLF: 121.87490177209224
Iteration: 10, Func. Count: 87, Neg. LLF: 121.87488279355642
Iteration: 11, Func. Count: 95, Neg. LLF: 121.87486135594479
Iteration: 12, Func. Count: 103, Neg. LLF: 121.87485781957588
Iteration: 13, Func. Count: 110, Neg. LLF: 121.874857819536
Optimization terminated successfully (Exit mode 0)
Current function value: 121.87485781957588
Iterations: 13
Function evaluations: 110
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 192.17035807862396
Iteration: 2, Func. Count: 21, Neg. LLF: 122.24607452705641
Iteration: 3, Func. Count: 31, Neg. LLF: 121.99552169648109
Iteration: 4, Func. Count: 40, Neg. LLF: 121.89226059978682
Iteration: 5, Func. Count: 49, Neg. LLF: 121.88711163945787
Iteration: 6, Func. Count: 58, Neg. LLF: 121.88337684445979
Iteration: 7, Func. Count: 67, Neg. LLF: 121.88305121538559
Iteration: 8, Func. Count: 76, Neg. LLF: 121.88247387949642
Iteration: 9, Func. Count: 85, Neg. LLF: 121.92876909386364
Iteration: 10, Func. Count: 95, Neg. LLF: 121.92347764883915
Iteration: 11, Func. Count: 105, Neg. LLF: 121.8859542303388
Iteration: 12, Func. Count: 115, Neg. LLF: 121.87874530972279
Iteration: 13, Func. Count: 124, Neg. LLF: 121.87727146400329
Iteration: 14, Func. Count: 133, Neg. LLF: 121.8659094867042
Iteration: 15, Func. Count: 142, Neg. LLF: 121.84159823004984
Iteration: 16, Func. Count: 151, Neg. LLF: 121.84044029061447
Iteration: 17, Func. Count: 160, Neg. LLF: 121.83975713988546
Iteration: 18, Func. Count: 169, Neg. LLF: 121.83974905920482
Iteration: 19, Func. Count: 178, Neg. LLF: 121.83974847988998
Optimization terminated successfully (Exit mode 0)
Current function value: 121.83974847988998
Iterations: 19
Function evaluations: 178
Gradient evaluations: 19
Iteration: 1, Func. Count: 11, Neg. LLF: 193.73952139309597
Iteration: 2, Func. Count: 23, Neg. LLF: 121.94001042337874
Iteration: 3, Func. Count: 33, Neg. LLF: 121.93383507967972
Iteration: 4, Func. Count: 44, Neg. LLF: 122.40354198894059
Iteration: 5, Func. Count: 55, Neg. LLF: 121.8776346126614
Iteration: 6, Func. Count: 65, Neg. LLF: 121.88355721229144
Iteration: 7, Func. Count: 76, Neg. LLF: 121.87496624033963
Iteration: 8, Func. Count: 86, Neg. LLF: 121.8748724482574
Iteration: 9, Func. Count: 96, Neg. LLF: 121.87486079182864
Iteration: 10, Func. Count: 106, Neg. LLF: 121.87485806458525
Iteration: 11, Func. Count: 115, Neg. LLF: 121.87485807065983
Optimization terminated successfully (Exit mode 0)
Current function value: 121.87485806458525
Iterations: 11
Function evaluations: 115
Gradient evaluations: 11
Iteration: 1, Func. Count: 8, Neg. LLF: 134.27897679415318
Iteration: 2, Func. Count: 16, Neg. LLF: 125.52981967621736
Iteration: 3, Func. Count: 24, Neg. LLF: 122.8814772073394
Iteration: 4, Func. Count: 31, Neg. LLF: 122.638458626709
Iteration: 5, Func. Count: 39, Neg. LLF: 124.01550055157745
Iteration: 6, Func. Count: 48, Neg. LLF: 122.44234684744896
Iteration: 7, Func. Count: 55, Neg. LLF: 122.43694542471002
Iteration: 8, Func. Count: 62, Neg. LLF: 122.43582881049069
Iteration: 9, Func. Count: 69, Neg. LLF: 122.43564122817726
Iteration: 10, Func. Count: 76, Neg. LLF: 122.43564050514311
Optimization terminated successfully (Exit mode 0)
Current function value: 122.43564050514311
Iterations: 10
Function evaluations: 76
Gradient evaluations: 10
Iteration: 1, Func. Count: 9, Neg. LLF: 172.094312795961
Iteration: 2, Func. Count: 19, Neg. LLF: 122.11809466600089
Iteration: 3, Func. Count: 28, Neg. LLF: 121.92347365238132
Iteration: 4, Func. Count: 37, Neg. LLF: 121.87511108818944
Iteration: 5, Func. Count: 45, Neg. LLF: 121.86172199283496
Iteration: 6, Func. Count: 53, Neg. LLF: 121.83475640498875
Iteration: 7, Func. Count: 61, Neg. LLF: 121.83213235892791
Iteration: 8, Func. Count: 69, Neg. LLF: 121.83001614196895
Iteration: 9, Func. Count: 77, Neg. LLF: 121.82982739391353
Iteration: 10, Func. Count: 85, Neg. LLF: 121.82981687647533
Iteration: 11, Func. Count: 93, Neg. LLF: 121.82980955537995
Iteration: 12, Func. Count: 100, Neg. LLF: 121.82980955537535
Optimization terminated successfully (Exit mode 0)
Current function value: 121.82980955537995
Iterations: 12
Function evaluations: 100
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 176.34232333086683
Iteration: 2, Func. Count: 21, Neg. LLF: 122.30848994868019
Iteration: 3, Func. Count: 31, Neg. LLF: 121.90835365790447
Iteration: 4, Func. Count: 40, Neg. LLF: 122.29508296359708
Iteration: 5, Func. Count: 50, Neg. LLF: 121.89077650988742
Iteration: 6, Func. Count: 59, Neg. LLF: 121.85448275372637
Iteration: 7, Func. Count: 68, Neg. LLF: 121.85760340674301
Iteration: 8, Func. Count: 78, Neg. LLF: 121.83276772895627
Iteration: 9, Func. Count: 87, Neg. LLF: 121.83083461098857
Iteration: 10, Func. Count: 96, Neg. LLF: 121.82991855510089
Iteration: 11, Func. Count: 105, Neg. LLF: 121.82981239016216
Iteration: 12, Func. Count: 114, Neg. LLF: 121.8298096478342
Iteration: 13, Func. Count: 122, Neg. LLF: 121.82980965216728
Optimization terminated successfully (Exit mode 0)
Current function value: 121.8298096478342
Iterations: 13
Function evaluations: 122
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 177.89683127948462
Iteration: 2, Func. Count: 23, Neg. LLF: 122.40154632931386
Iteration: 3, Func. Count: 34, Neg. LLF: 121.90752591693203
Iteration: 4, Func. Count: 44, Neg. LLF: 122.11806463106859
Iteration: 5, Func. Count: 55, Neg. LLF: 121.90495376322171
Iteration: 6, Func. Count: 66, Neg. LLF: 121.88089177154646
Iteration: 7, Func. Count: 76, Neg. LLF: 121.84274077895722
Iteration: 8, Func. Count: 86, Neg. LLF: 121.83300839746249
Iteration: 9, Func. Count: 96, Neg. LLF: 121.8312452715437
Iteration: 10, Func. Count: 106, Neg. LLF: 121.83038032739418
Iteration: 11, Func. Count: 116, Neg. LLF: 121.82991787032907
Iteration: 12, Func. Count: 126, Neg. LLF: 121.82981806108543
Iteration: 13, Func. Count: 136, Neg. LLF: 121.82980975051339
Iteration: 14, Func. Count: 145, Neg. LLF: 121.82980975860482
Optimization terminated successfully (Exit mode 0)
Current function value: 121.82980975051339
Iterations: 14
Function evaluations: 145
Gradient evaluations: 14
Iteration: 1, Func. Count: 12, Neg. LLF: 177.4184188187307
Iteration: 2, Func. Count: 25, Neg. LLF: 122.28598929574984
Iteration: 3, Func. Count: 37, Neg. LLF: 122.05347025871602
Iteration: 4, Func. Count: 49, Neg. LLF: 122.12119391556281
Iteration: 5, Func. Count: 61, Neg. LLF: 121.88201578110457
Iteration: 6, Func. Count: 72, Neg. LLF: 121.87633347891759
Iteration: 7, Func. Count: 83, Neg. LLF: 121.87529125223529
Iteration: 8, Func. Count: 94, Neg. LLF: 121.87507580688788
Iteration: 9, Func. Count: 105, Neg. LLF: 121.87493891244473
Iteration: 10, Func. Count: 116, Neg. LLF: 121.874862145025
Iteration: 11, Func. Count: 127, Neg. LLF: 121.87485843130808
Iteration: 12, Func. Count: 138, Neg. LLF: 121.87485747724034
Optimization terminated successfully (Exit mode 0)
Current function value: 121.87485747724034
Iterations: 12
Function evaluations: 138
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 132.63250022813244
Iteration: 2, Func. Count: 19, Neg. LLF: 125.98486843981131
Iteration: 3, Func. Count: 28, Neg. LLF: 123.27857647640288
Iteration: 4, Func. Count: 37, Neg. LLF: 122.04735678951413
Iteration: 5, Func. Count: 45, Neg. LLF: 122.30355016463464
Iteration: 6, Func. Count: 54, Neg. LLF: 121.99117675886181
Iteration: 7, Func. Count: 62, Neg. LLF: 122.1246848953603
Iteration: 8, Func. Count: 71, Neg. LLF: 121.97120953386204
Iteration: 9, Func. Count: 79, Neg. LLF: 121.97100348688208
Iteration: 10, Func. Count: 87, Neg. LLF: 121.97099919837564
Iteration: 11, Func. Count: 94, Neg. LLF: 121.97099919839246
Optimization terminated successfully (Exit mode 0)
Current function value: 121.97099919837564
Iterations: 11
Function evaluations: 94
Gradient evaluations: 11
Iteration: 1, Func. Count: 10, Neg. LLF: 175.51481834802183
Iteration: 2, Func. Count: 21, Neg. LLF: 122.19843420876538
Iteration: 3, Func. Count: 31, Neg. LLF: 121.99760728930815
Iteration: 4, Func. Count: 41, Neg. LLF: 121.85469726632111
Iteration: 5, Func. Count: 50, Neg. LLF: 121.9057905882959
Iteration: 6, Func. Count: 60, Neg. LLF: 121.92809250855838
Iteration: 7, Func. Count: 70, Neg. LLF: 121.83891209954503
Iteration: 8, Func. Count: 80, Neg. LLF: 121.81811204543037
Iteration: 9, Func. Count: 89, Neg. LLF: 121.81769180694589
Iteration: 10, Func. Count: 98, Neg. LLF: 121.81703841912464
Iteration: 11, Func. Count: 107, Neg. LLF: 121.81681493805692
Iteration: 12, Func. Count: 116, Neg. LLF: 121.81677534199864
Iteration: 13, Func. Count: 125, Neg. LLF: 121.81677282275592
Iteration: 14, Func. Count: 133, Neg. LLF: 121.816772822757
Optimization terminated successfully (Exit mode 0)
Current function value: 121.81677282275592
Iterations: 14
Function evaluations: 133
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 179.24691196979776
Iteration: 2, Func. Count: 23, Neg. LLF: 123.49158364959104
Iteration: 3, Func. Count: 34, Neg. LLF: 121.93556606333237
Iteration: 4, Func. Count: 45, Neg. LLF: 121.8811743705295
Iteration: 5, Func. Count: 55, Neg. LLF: 121.951812219837
Iteration: 6, Func. Count: 66, Neg. LLF: 122.03861341499363
Iteration: 7, Func. Count: 77, Neg. LLF: 121.90461803778003
Iteration: 8, Func. Count: 88, Neg. LLF: 121.82661828372433
Iteration: 9, Func. Count: 98, Neg. LLF: 121.821934250265
Iteration: 10, Func. Count: 108, Neg. LLF: 121.8208912624576
Iteration: 11, Func. Count: 118, Neg. LLF: 121.81750256937647
Iteration: 12, Func. Count: 128, Neg. LLF: 121.8169060700215
Iteration: 13, Func. Count: 138, Neg. LLF: 121.81677827374865
Iteration: 14, Func. Count: 148, Neg. LLF: 121.81677313642683
Iteration: 15, Func. Count: 157, Neg. LLF: 121.81677313891853
Optimization terminated successfully (Exit mode 0)
Current function value: 121.81677313642683
Iterations: 15
Function evaluations: 157
Gradient evaluations: 15
Iteration: 1, Func. Count: 12, Neg. LLF: 129.30404934686604
Iteration: 2, Func. Count: 24, Neg. LLF: 143.39942056642914
Iteration: 3, Func. Count: 37, Neg. LLF: 122.30292945122511
Iteration: 4, Func. Count: 49, Neg. LLF: 121.92780729772616
Iteration: 5, Func. Count: 60, Neg. LLF: 121.8990077615665
Iteration: 6, Func. Count: 71, Neg. LLF: 122.01069205581231
Iteration: 7, Func. Count: 83, Neg. LLF: 121.94904514431174
Iteration: 8, Func. Count: 95, Neg. LLF: 121.85759667663663
Iteration: 9, Func. Count: 106, Neg. LLF: 121.8543604190928
Iteration: 10, Func. Count: 117, Neg. LLF: 121.84845228827652
Iteration: 11, Func. Count: 128, Neg. LLF: 121.837646300568
Iteration: 12, Func. Count: 139, Neg. LLF: 121.82888463475832
Iteration: 13, Func. Count: 150, Neg. LLF: 121.82116713065952
Iteration: 14, Func. Count: 161, Neg. LLF: 121.81695283670058
Iteration: 15, Func. Count: 172, Neg. LLF: 121.81680600118257
Iteration: 16, Func. Count: 183, Neg. LLF: 121.81678559227562
Iteration: 17, Func. Count: 194, Neg. LLF: 121.81677361879355
Iteration: 18, Func. Count: 205, Neg. LLF: 121.81677300115571
Optimization terminated successfully (Exit mode 0)
Current function value: 121.81677300115571
Iterations: 18
Function evaluations: 205
Gradient evaluations: 18
Iteration: 1, Func. Count: 13, Neg. LLF: 127.23866740932446
Iteration: 2, Func. Count: 26, Neg. LLF: 123.80395617550064
Iteration: 3, Func. Count: 40, Neg. LLF: 122.54663115829314
Iteration: 4, Func. Count: 53, Neg. LLF: 121.80006688862623
Iteration: 5, Func. Count: 65, Neg. LLF: 121.79308554709378
Iteration: 6, Func. Count: 77, Neg. LLF: 121.77420661612967
Iteration: 7, Func. Count: 89, Neg. LLF: 121.80667918239676
Iteration: 8, Func. Count: 102, Neg. LLF: 121.76184279588598
Iteration: 9, Func. Count: 114, Neg. LLF: 121.76927300982344
Iteration: 10, Func. Count: 127, Neg. LLF: 121.75858407470584
Iteration: 11, Func. Count: 139, Neg. LLF: 121.7585326863883
Iteration: 12, Func. Count: 151, Neg. LLF: 121.75849229728294
Iteration: 13, Func. Count: 163, Neg. LLF: 121.75846826617486
Iteration: 14, Func. Count: 175, Neg. LLF: 121.75844859083608
Iteration: 15, Func. Count: 187, Neg. LLF: 121.75844412767015
Iteration: 16, Func. Count: 198, Neg. LLF: 121.75844412767209
Optimization terminated successfully (Exit mode 0)
Current function value: 121.75844412767015
Iterations: 16
Function evaluations: 198
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 131.071551201986
Iteration: 2, Func. Count: 21, Neg. LLF: 124.84031919810687
Iteration: 3, Func. Count: 31, Neg. LLF: 123.55231760685275
Iteration: 4, Func. Count: 41, Neg. LLF: 123.48280365491809
Iteration: 5, Func. Count: 51, Neg. LLF: 122.0788892375923
Iteration: 6, Func. Count: 60, Neg. LLF: 123.08806269749861
Iteration: 7, Func. Count: 71, Neg. LLF: 122.05420462397353
Iteration: 8, Func. Count: 81, Neg. LLF: 121.97115450911028
Iteration: 9, Func. Count: 90, Neg. LLF: 121.95997415620957
Iteration: 10, Func. Count: 99, Neg. LLF: 121.95801882358934
Iteration: 11, Func. Count: 108, Neg. LLF: 121.95768353982716
Iteration: 12, Func. Count: 117, Neg. LLF: 121.95745057031134
Iteration: 13, Func. Count: 126, Neg. LLF: 121.95744725305441
Iteration: 14, Func. Count: 134, Neg. LLF: 121.95744725305028
Optimization terminated successfully (Exit mode 0)
Current function value: 121.95744725305441
Iterations: 14
Function evaluations: 134
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 177.13980764436795
Iteration: 2, Func. Count: 23, Neg. LLF: 141.7499338081621
Iteration: 3, Func. Count: 35, Neg. LLF: 121.90929976649669
Iteration: 4, Func. Count: 45, Neg. LLF: 121.88021537205297
Iteration: 5, Func. Count: 55, Neg. LLF: 123.3323457272117
Iteration: 6, Func. Count: 66, Neg. LLF: 121.83191882835801
Iteration: 7, Func. Count: 76, Neg. LLF: 121.84504564062652
Iteration: 8, Func. Count: 87, Neg. LLF: 121.81907450776977
Iteration: 9, Func. Count: 97, Neg. LLF: 121.81830243918948
Iteration: 10, Func. Count: 107, Neg. LLF: 121.81794130563593
Iteration: 11, Func. Count: 117, Neg. LLF: 121.81712672329952
Iteration: 12, Func. Count: 127, Neg. LLF: 121.81683066426278
Iteration: 13, Func. Count: 137, Neg. LLF: 121.81677452923857
Iteration: 14, Func. Count: 147, Neg. LLF: 121.81677282856405
Iteration: 15, Func. Count: 156, Neg. LLF: 121.8167728285459
Optimization terminated successfully (Exit mode 0)
Current function value: 121.81677282856405
Iterations: 15
Function evaluations: 156
Gradient evaluations: 15
Iteration: 1, Func. Count: 12, Neg. LLF: 126.83584484382726
Iteration: 2, Func. Count: 24, Neg. LLF: 123.75538357127598
Iteration: 3, Func. Count: 37, Neg. LLF: 125.47279790244227
Iteration: 4, Func. Count: 49, Neg. LLF: 121.95300227808414
Iteration: 5, Func. Count: 60, Neg. LLF: 121.89621152280353
Iteration: 6, Func. Count: 71, Neg. LLF: 122.7389427590581
Iteration: 7, Func. Count: 83, Neg. LLF: 121.87604641683546
Iteration: 8, Func. Count: 94, Neg. LLF: 121.86889469579076
Iteration: 9, Func. Count: 105, Neg. LLF: 121.85881736027638
Iteration: 10, Func. Count: 116, Neg. LLF: 121.84885455486742
Iteration: 11, Func. Count: 127, Neg. LLF: 121.8300730034692
Iteration: 12, Func. Count: 138, Neg. LLF: 121.82276897294963
Iteration: 13, Func. Count: 149, Neg. LLF: 121.8210396576549
Iteration: 14, Func. Count: 160, Neg. LLF: 121.81704260810285
Iteration: 15, Func. Count: 171, Neg. LLF: 121.81685199309969
Iteration: 16, Func. Count: 182, Neg. LLF: 121.81678903081799
Iteration: 17, Func. Count: 193, Neg. LLF: 121.81677440107188
Iteration: 18, Func. Count: 204, Neg. LLF: 121.81677345481583
Optimization terminated successfully (Exit mode 0)
Current function value: 121.81677345481583
Iterations: 18
Function evaluations: 204
Gradient evaluations: 18
Iteration: 1, Func. Count: 13, Neg. LLF: 128.18764331230068
Iteration: 2, Func. Count: 26, Neg. LLF: 126.18894096938992
Iteration: 3, Func. Count: 40, Neg. LLF: 124.67763558406931
Iteration: 4, Func. Count: 53, Neg. LLF: 121.96063657785959
Iteration: 5, Func. Count: 65, Neg. LLF: 121.89245917214609
Iteration: 6, Func. Count: 77, Neg. LLF: 122.26227624779035
Iteration: 7, Func. Count: 90, Neg. LLF: 121.8737746330404
Iteration: 8, Func. Count: 103, Neg. LLF: 121.8649256830209
Iteration: 9, Func. Count: 115, Neg. LLF: 121.85752159154073
Iteration: 10, Func. Count: 127, Neg. LLF: 121.85457277530169
Iteration: 11, Func. Count: 139, Neg. LLF: 121.83720373493851
Iteration: 12, Func. Count: 151, Neg. LLF: 121.85114235741766
Iteration: 13, Func. Count: 164, Neg. LLF: 121.82211778972977
Iteration: 14, Func. Count: 176, Neg. LLF: 121.81710773754749
Iteration: 15, Func. Count: 188, Neg. LLF: 121.8168906009147
Iteration: 16, Func. Count: 200, Neg. LLF: 121.81680695518412
Iteration: 17, Func. Count: 212, Neg. LLF: 121.81677458645956
Iteration: 18, Func. Count: 224, Neg. LLF: 121.81677431948081
Iteration: 19, Func. Count: 236, Neg. LLF: 121.8167729920709
Optimization terminated successfully (Exit mode 0)
Current function value: 121.81677298815636
Iterations: 19
Function evaluations: 236
Gradient evaluations: 19
Iteration: 1, Func. Count: 14, Neg. LLF: 127.63159877256413
Iteration: 2, Func. Count: 28, Neg. LLF: 125.51375824898642
Iteration: 3, Func. Count: 42, Neg. LLF: 123.47685833918706
Iteration: 4, Func. Count: 57, Neg. LLF: 121.98570793871156
Iteration: 5, Func. Count: 71, Neg. LLF: 121.84205372413278
Iteration: 6, Func. Count: 84, Neg. LLF: 121.82579601140938
Iteration: 7, Func. Count: 98, Neg. LLF: 121.99297474445461
Iteration: 8, Func. Count: 112, Neg. LLF: 121.76937455865868
Iteration: 9, Func. Count: 125, Neg. LLF: 121.76160707362018
Iteration: 10, Func. Count: 138, Neg. LLF: 121.76061006304072
Iteration: 11, Func. Count: 151, Neg. LLF: 121.75960077304659
Iteration: 12, Func. Count: 164, Neg. LLF: 121.75898276931245
Iteration: 13, Func. Count: 177, Neg. LLF: 121.75862110045658
Iteration: 14, Func. Count: 190, Neg. LLF: 121.7584597410919
Iteration: 15, Func. Count: 203, Neg. LLF: 121.75844430634258
Iteration: 16, Func. Count: 216, Neg. LLF: 121.75844370383813
Optimization terminated successfully (Exit mode 0)
Current function value: 121.75844370383813
Iterations: 16
Function evaluations: 216
Gradient evaluations: 16
Iteration: 1, Func. Count: 7, Neg. LLF: 127.76436785609326
Iteration: 2, Func. Count: 14, Neg. LLF: 140.4675850652238
Iteration: 3, Func. Count: 21, Neg. LLF: 122.58511161691726
Iteration: 4, Func. Count: 27, Neg. LLF: 122.72283878236941
Iteration: 5, Func. Count: 34, Neg. LLF: 122.42822636277864
Iteration: 6, Func. Count: 41, Neg. LLF: 122.25353501576966
Iteration: 7, Func. Count: 47, Neg. LLF: 122.25190413380747
Iteration: 8, Func. Count: 53, Neg. LLF: 122.25189881952227
Iteration: 9, Func. Count: 58, Neg. LLF: 122.25189881953547
Optimization terminated successfully (Exit mode 0)
Current function value: 122.25189881952227
Iterations: 9
Function evaluations: 58
Gradient evaluations: 9
Iteration: 1, Func. Count: 8, Neg. LLF: 208.3729925172524
Iteration: 2, Func. Count: 17, Neg. LLF: 144.0986372234948
Iteration: 3, Func. Count: 26, Neg. LLF: 122.09709920182904
Iteration: 4, Func. Count: 33, Neg. LLF: 122.07651347174107
Iteration: 5, Func. Count: 40, Neg. LLF: 122.01706677372646
Iteration: 6, Func. Count: 47, Neg. LLF: 125.92065014311673
Iteration: 7, Func. Count: 55, Neg. LLF: 122.65725714906795
Iteration: 8, Func. Count: 63, Neg. LLF: 121.98522888323717
Iteration: 9, Func. Count: 71, Neg. LLF: 121.97731979361765
Iteration: 10, Func. Count: 78, Neg. LLF: 121.9772070000538
Iteration: 11, Func. Count: 85, Neg. LLF: 121.9772041560433
Iteration: 12, Func. Count: 91, Neg. LLF: 121.97720415570839
Optimization terminated successfully (Exit mode 0)
Current function value: 121.9772041560433
Iterations: 12
Function evaluations: 91
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 213.21000275847365
Iteration: 2, Func. Count: 19, Neg. LLF: 1035.706271474368
Iteration: 3, Func. Count: 29, Neg. LLF: 122.05287200988765
Iteration: 4, Func. Count: 37, Neg. LLF: 121.98670885587366
Iteration: 5, Func. Count: 45, Neg. LLF: 121.95893981620935
Iteration: 6, Func. Count: 53, Neg. LLF: 121.92545426447741
Iteration: 7, Func. Count: 61, Neg. LLF: 121.91983850858522
Iteration: 8, Func. Count: 69, Neg. LLF: 121.91525375643671
Iteration: 9, Func. Count: 77, Neg. LLF: 121.91274413016306
Iteration: 10, Func. Count: 85, Neg. LLF: 121.91266967739838
Iteration: 11, Func. Count: 93, Neg. LLF: 121.91264205700747
Iteration: 12, Func. Count: 101, Neg. LLF: 121.91263644304188
Iteration: 13, Func. Count: 108, Neg. LLF: 121.9126364430387
Optimization terminated successfully (Exit mode 0)
Current function value: 121.91263644304188
Iterations: 13
Function evaluations: 108
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 214.56893953438478
Iteration: 2, Func. Count: 21, Neg. LLF: 130.7674200227582
Iteration: 3, Func. Count: 32, Neg. LLF: 122.08412127912739
Iteration: 4, Func. Count: 41, Neg. LLF: 122.20498604256166
Iteration: 5, Func. Count: 51, Neg. LLF: 122.01524250790963
Iteration: 6, Func. Count: 60, Neg. LLF: 122.01204456369308
Iteration: 7, Func. Count: 69, Neg. LLF: 122.01038468911933
Iteration: 8, Func. Count: 78, Neg. LLF: 122.00770070194388
Iteration: 9, Func. Count: 87, Neg. LLF: 121.99300366530714
Iteration: 10, Func. Count: 96, Neg. LLF: 121.98398015390133
Iteration: 11, Func. Count: 105, Neg. LLF: 121.97725682573612
Iteration: 12, Func. Count: 114, Neg. LLF: 121.97721531567319
Iteration: 13, Func. Count: 123, Neg. LLF: 121.9772039172461
Iteration: 14, Func. Count: 131, Neg. LLF: 121.97720391961698
Optimization terminated successfully (Exit mode 0)
Current function value: 121.9772039172461
Iterations: 14
Function evaluations: 131
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 217.98009308942196
Iteration: 2, Func. Count: 23, Neg. LLF: 73135.23865865075
Iteration: 3, Func. Count: 35, Neg. LLF: 121.8956704233485
Iteration: 4, Func. Count: 45, Neg. LLF: 121.80760080972226
Iteration: 5, Func. Count: 55, Neg. LLF: 122.65822464451108
Iteration: 6, Func. Count: 66, Neg. LLF: 121.75062897381493
Iteration: 7, Func. Count: 76, Neg. LLF: 121.70342070455531
Iteration: 8, Func. Count: 86, Neg. LLF: 121.69651063622726
Iteration: 9, Func. Count: 96, Neg. LLF: 121.69529614327263
Iteration: 10, Func. Count: 106, Neg. LLF: 121.69512023310192
Iteration: 11, Func. Count: 116, Neg. LLF: 121.69498260973417
Iteration: 12, Func. Count: 126, Neg. LLF: 121.69497310966274
Iteration: 13, Func. Count: 136, Neg. LLF: 121.69497088363745
Iteration: 14, Func. Count: 145, Neg. LLF: 121.6949708836501
Optimization terminated successfully (Exit mode 0)
Current function value: 121.69497088363745
Iterations: 14
Function evaluations: 145
Gradient evaluations: 14
Iteration: 1, Func. Count: 8, Neg. LLF: 125.26317647292731
Iteration: 2, Func. Count: 16, Neg. LLF: 123.87059041120237
Iteration: 3, Func. Count: 24, Neg. LLF: 122.26942747485815
Iteration: 4, Func. Count: 31, Neg. LLF: 122.53347601403335
Iteration: 5, Func. Count: 39, Neg. LLF: 122.25308141810577
Iteration: 6, Func. Count: 47, Neg. LLF: 122.13029127946662
Iteration: 7, Func. Count: 54, Neg. LLF: 122.12995518001327
Iteration: 8, Func. Count: 61, Neg. LLF: 122.12995282427607
Iteration: 9, Func. Count: 67, Neg. LLF: 122.12995282429888
Optimization terminated successfully (Exit mode 0)
Current function value: 122.12995282427607
Iterations: 9
Function evaluations: 67
Gradient evaluations: 9
Iteration: 1, Func. Count: 9, Neg. LLF: 189.69214191705498
Iteration: 2, Func. Count: 19, Neg. LLF: 123.4992625673275
Iteration: 3, Func. Count: 28, Neg. LLF: 121.88443709100365
Iteration: 4, Func. Count: 36, Neg. LLF: 121.89975751478073
Iteration: 5, Func. Count: 45, Neg. LLF: 121.84148792336497
Iteration: 6, Func. Count: 53, Neg. LLF: 121.8399995517094
Iteration: 7, Func. Count: 61, Neg. LLF: 121.83977101480568
Iteration: 8, Func. Count: 69, Neg. LLF: 121.83975464856964
Iteration: 9, Func. Count: 77, Neg. LLF: 121.83974851342633
Iteration: 10, Func. Count: 84, Neg. LLF: 121.83974851343532
Optimization terminated successfully (Exit mode 0)
Current function value: 121.83974851342633
Iterations: 10
Function evaluations: 84
Gradient evaluations: 10
Iteration: 1, Func. Count: 10, Neg. LLF: 173.8532698910139
Iteration: 2, Func. Count: 21, Neg. LLF: 130.57757327109113
Iteration: 3, Func. Count: 32, Neg. LLF: 122.16268310639612
Iteration: 4, Func. Count: 42, Neg. LLF: 121.98230698386698
Iteration: 5, Func. Count: 52, Neg. LLF: 121.7874081291763
Iteration: 6, Func. Count: 61, Neg. LLF: 121.77650348568498
Iteration: 7, Func. Count: 70, Neg. LLF: 121.77320903472041
Iteration: 8, Func. Count: 79, Neg. LLF: 121.76965912685003
Iteration: 9, Func. Count: 88, Neg. LLF: 121.76857103139592
Iteration: 10, Func. Count: 97, Neg. LLF: 121.76846021865595
Iteration: 11, Func. Count: 106, Neg. LLF: 121.76842393596006
Iteration: 12, Func. Count: 115, Neg. LLF: 121.76840380338842
Iteration: 13, Func. Count: 124, Neg. LLF: 121.76839637657399
Iteration: 14, Func. Count: 133, Neg. LLF: 121.76839523320835
Iteration: 15, Func. Count: 141, Neg. LLF: 121.76839523325883
Optimization terminated successfully (Exit mode 0)
Current function value: 121.76839523320835
Iterations: 15
Function evaluations: 141
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 193.49449634776676
Iteration: 2, Func. Count: 23, Neg. LLF: 122.27865639681215
Iteration: 3, Func. Count: 34, Neg. LLF: 121.99620399126671
Iteration: 4, Func. Count: 45, Neg. LLF: 121.88973252200479
Iteration: 5, Func. Count: 55, Neg. LLF: 121.94934314841673
Iteration: 6, Func. Count: 66, Neg. LLF: 121.91141669952185
Iteration: 7, Func. Count: 77, Neg. LLF: 121.88358445844713
Iteration: 8, Func. Count: 87, Neg. LLF: 121.88328788025528
Iteration: 9, Func. Count: 97, Neg. LLF: 121.88324710012024
Iteration: 10, Func. Count: 107, Neg. LLF: 121.88324631483137
Optimization terminated successfully (Exit mode 0)
Current function value: 121.88324631483137
Iterations: 10
Function evaluations: 107
Gradient evaluations: 10
Iteration: 1, Func. Count: 12, Neg. LLF: 195.34094696757822
Iteration: 2, Func. Count: 25, Neg. LLF: 199.8996708696854
Iteration: 3, Func. Count: 38, Neg. LLF: 122.13168129239303
Iteration: 4, Func. Count: 50, Neg. LLF: 121.91339800870055
Iteration: 5, Func. Count: 61, Neg. LLF: 121.88495431896425
Iteration: 6, Func. Count: 72, Neg. LLF: 121.84557413416492
Iteration: 7, Func. Count: 83, Neg. LLF: 121.79969046392738
Iteration: 8, Func. Count: 94, Neg. LLF: 121.77344873832206
Iteration: 9, Func. Count: 105, Neg. LLF: 121.77157589692958
Iteration: 10, Func. Count: 116, Neg. LLF: 121.76912797426257
Iteration: 11, Func. Count: 127, Neg. LLF: 121.76860037580272
Iteration: 12, Func. Count: 138, Neg. LLF: 121.76842604468129
Iteration: 13, Func. Count: 149, Neg. LLF: 121.76839977031588
Iteration: 14, Func. Count: 160, Neg. LLF: 121.76839541375548
Iteration: 15, Func. Count: 170, Neg. LLF: 121.76839542382668
Optimization terminated successfully (Exit mode 0)
Current function value: 121.76839541375548
Iterations: 15
Function evaluations: 170
Gradient evaluations: 15
Iteration: 1, Func. Count: 9, Neg. LLF: 127.93115530013523
Iteration: 2, Func. Count: 18, Neg. LLF: 138.30988930609482
Iteration: 3, Func. Count: 27, Neg. LLF: 122.55600664696404
Iteration: 4, Func. Count: 35, Neg. LLF: 122.67160471497412
Iteration: 5, Func. Count: 44, Neg. LLF: 123.62232164283662
Iteration: 6, Func. Count: 53, Neg. LLF: 122.12492376794219
Iteration: 7, Func. Count: 61, Neg. LLF: 122.70008894594237
Iteration: 8, Func. Count: 70, Neg. LLF: 122.10625670140381
Iteration: 9, Func. Count: 78, Neg. LLF: 122.10596347915151
Iteration: 10, Func. Count: 86, Neg. LLF: 122.10594761395308
Iteration: 11, Func. Count: 94, Neg. LLF: 122.1059441819762
Iteration: 12, Func. Count: 101, Neg. LLF: 122.10594418195859
Optimization terminated successfully (Exit mode 0)
Current function value: 122.1059441819762
Iterations: 12
Function evaluations: 101
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 173.4836813141527
Iteration: 2, Func. Count: 21, Neg. LLF: 122.12194806440704
Iteration: 3, Func. Count: 31, Neg. LLF: 121.8928956105203
Iteration: 4, Func. Count: 41, Neg. LLF: 121.86728554455293
Iteration: 5, Func. Count: 50, Neg. LLF: 121.85621649826199
Iteration: 6, Func. Count: 59, Neg. LLF: 121.8340081251012
Iteration: 7, Func. Count: 68, Neg. LLF: 121.83156818731817
Iteration: 8, Func. Count: 77, Neg. LLF: 121.82993603117659
Iteration: 9, Func. Count: 86, Neg. LLF: 121.8298161704011
Iteration: 10, Func. Count: 95, Neg. LLF: 121.82980968656511
Iteration: 11, Func. Count: 103, Neg. LLF: 121.82980968661421
Optimization terminated successfully (Exit mode 0)
Current function value: 121.82980968656511
Iterations: 11
Function evaluations: 103
Gradient evaluations: 11
Iteration: 1, Func. Count: 11, Neg. LLF: 177.63505433375647
Iteration: 2, Func. Count: 23, Neg. LLF: 130.09746440369724
Iteration: 3, Func. Count: 35, Neg. LLF: 122.08442118320887
Iteration: 4, Func. Count: 46, Neg. LLF: 121.89727048594285
Iteration: 5, Func. Count: 56, Neg. LLF: 121.89845896793027
Iteration: 6, Func. Count: 67, Neg. LLF: 121.94049118180307
Iteration: 7, Func. Count: 78, Neg. LLF: 121.87750003376631
Iteration: 8, Func. Count: 88, Neg. LLF: 121.81844807423174
Iteration: 9, Func. Count: 98, Neg. LLF: 122.11597965496729
Iteration: 10, Func. Count: 109, Neg. LLF: 121.78054648490891
Iteration: 11, Func. Count: 119, Neg. LLF: 121.77194722355644
Iteration: 12, Func. Count: 129, Neg. LLF: 121.76758083608868
Iteration: 13, Func. Count: 139, Neg. LLF: 121.76682555191131
Iteration: 14, Func. Count: 149, Neg. LLF: 121.76655636840496
Iteration: 15, Func. Count: 159, Neg. LLF: 121.76646870037987
Iteration: 16, Func. Count: 169, Neg. LLF: 121.76643759442567
Iteration: 17, Func. Count: 179, Neg. LLF: 121.76643444780417
Iteration: 18, Func. Count: 188, Neg. LLF: 121.76643444780963
Optimization terminated successfully (Exit mode 0)
Current function value: 121.76643444780417
Iterations: 18
Function evaluations: 188
Gradient evaluations: 18
Iteration: 1, Func. Count: 12, Neg. LLF: 178.93515846406459
Iteration: 2, Func. Count: 25, Neg. LLF: 122.48161581017837
Iteration: 3, Func. Count: 37, Neg. LLF: 121.89851981186212
Iteration: 4, Func. Count: 48, Neg. LLF: 121.98276758390229
Iteration: 5, Func. Count: 60, Neg. LLF: 121.90067101369922
Iteration: 6, Func. Count: 72, Neg. LLF: 122.00195347598628
Iteration: 7, Func. Count: 85, Neg. LLF: 121.88715013482603
Iteration: 8, Func. Count: 96, Neg. LLF: 121.87558319911294
Iteration: 9, Func. Count: 107, Neg. LLF: 121.86504425743591
Iteration: 10, Func. Count: 118, Neg. LLF: 121.84554961134837
Iteration: 11, Func. Count: 129, Neg. LLF: 121.83504883072241
Iteration: 12, Func. Count: 140, Neg. LLF: 121.83016278075087
Iteration: 13, Func. Count: 151, Neg. LLF: 121.82983261684855
Iteration: 14, Func. Count: 162, Neg. LLF: 121.8298098425752
Iteration: 15, Func. Count: 172, Neg. LLF: 121.82980985076888
Optimization terminated successfully (Exit mode 0)
Current function value: 121.8298098425752
Iterations: 15
Function evaluations: 172
Gradient evaluations: 15
Iteration: 1, Func. Count: 13, Neg. LLF: 178.58955001530646
Iteration: 2, Func. Count: 27, Neg. LLF: 161.20360389668608
Iteration: 3, Func. Count: 41, Neg. LLF: 123.73366271506042
Iteration: 4, Func. Count: 54, Neg. LLF: 121.87988648590968
Iteration: 5, Func. Count: 66, Neg. LLF: 122.03860938733278
Iteration: 6, Func. Count: 79, Neg. LLF: 121.78482624769202
Iteration: 7, Func. Count: 91, Neg. LLF: 121.82467010482489
Iteration: 8, Func. Count: 104, Neg. LLF: 121.76686999893981
Iteration: 9, Func. Count: 116, Neg. LLF: 121.76644385762275
Iteration: 10, Func. Count: 128, Neg. LLF: 121.76643669394451
Iteration: 11, Func. Count: 140, Neg. LLF: 121.76643549327842
Iteration: 12, Func. Count: 152, Neg. LLF: 121.76643478593449
Optimization terminated successfully (Exit mode 0)
Current function value: 121.76643478593449
Iterations: 12
Function evaluations: 152
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 128.70149729586942
Iteration: 2, Func. Count: 20, Neg. LLF: 129.77808583956798
Iteration: 3, Func. Count: 30, Neg. LLF: 122.11419014338782
Iteration: 4, Func. Count: 39, Neg. LLF: 122.51476374563254
Iteration: 5, Func. Count: 49, Neg. LLF: 123.32474326887345
Iteration: 6, Func. Count: 59, Neg. LLF: 122.11401186551974
Iteration: 7, Func. Count: 69, Neg. LLF: 121.97688757153466
Iteration: 8, Func. Count: 79, Neg. LLF: 121.96488642332241
Iteration: 9, Func. Count: 88, Neg. LLF: 121.96354770096443
Iteration: 10, Func. Count: 97, Neg. LLF: 121.9633487846005
Iteration: 11, Func. Count: 106, Neg. LLF: 121.9633315997044
Iteration: 12, Func. Count: 114, Neg. LLF: 121.96333159968479
Optimization terminated successfully (Exit mode 0)
Current function value: 121.9633315997044
Iterations: 12
Function evaluations: 114
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 176.7765726411199
Iteration: 2, Func. Count: 23, Neg. LLF: 122.38738012878542
Iteration: 3, Func. Count: 34, Neg. LLF: 122.02310421482775
Iteration: 4, Func. Count: 45, Neg. LLF: 121.8922496139273
Iteration: 5, Func. Count: 56, Neg. LLF: 121.82725520790815
Iteration: 6, Func. Count: 66, Neg. LLF: 121.83070482680321
Iteration: 7, Func. Count: 77, Neg. LLF: 121.82663603808598
Iteration: 8, Func. Count: 88, Neg. LLF: 121.81804362692586
Iteration: 9, Func. Count: 98, Neg. LLF: 121.81767161268004
Iteration: 10, Func. Count: 108, Neg. LLF: 121.81686441702172
Iteration: 11, Func. Count: 118, Neg. LLF: 121.81678248908717
Iteration: 12, Func. Count: 128, Neg. LLF: 121.81677284387996
Iteration: 13, Func. Count: 137, Neg. LLF: 121.81677284386474
Optimization terminated successfully (Exit mode 0)
Current function value: 121.81677284387996
Iterations: 13
Function evaluations: 137
Gradient evaluations: 13
Iteration: 1, Func. Count: 12, Neg. LLF: 129.869249755845
Iteration: 2, Func. Count: 24, Neg. LLF: 133.05660164900252
Iteration: 3, Func. Count: 37, Neg. LLF: 122.54582456905679
Iteration: 4, Func. Count: 49, Neg. LLF: 121.90323823630253
Iteration: 5, Func. Count: 60, Neg. LLF: 121.92357742076472
Iteration: 6, Func. Count: 72, Neg. LLF: 121.96075453776676
Iteration: 7, Func. Count: 84, Neg. LLF: 121.90360963161761
Iteration: 8, Func. Count: 96, Neg. LLF: 121.83369808730711
Iteration: 9, Func. Count: 107, Neg. LLF: 121.81131227826997
Iteration: 10, Func. Count: 118, Neg. LLF: 121.77972722449927
Iteration: 11, Func. Count: 129, Neg. LLF: 121.76733822238371
Iteration: 12, Func. Count: 140, Neg. LLF: 121.75494722005874
Iteration: 13, Func. Count: 151, Neg. LLF: 121.74478149116163
Iteration: 14, Func. Count: 162, Neg. LLF: 121.73220573952665
Iteration: 15, Func. Count: 173, Neg. LLF: 121.7279934180251
Iteration: 16, Func. Count: 184, Neg. LLF: 121.72754161703612
Iteration: 17, Func. Count: 195, Neg. LLF: 121.72739513442079
Iteration: 18, Func. Count: 206, Neg. LLF: 121.72737257514117
Iteration: 19, Func. Count: 217, Neg. LLF: 121.72735648410179
Iteration: 20, Func. Count: 227, Neg. LLF: 121.7273564841069
Optimization terminated successfully (Exit mode 0)
Current function value: 121.72735648410179
Iterations: 20
Function evaluations: 227
Gradient evaluations: 20
Iteration: 1, Func. Count: 13, Neg. LLF: 130.8309939403627
Iteration: 2, Func. Count: 26, Neg. LLF: 134.95045885357501
Iteration: 3, Func. Count: 40, Neg. LLF: 122.28774863219024
Iteration: 4, Func. Count: 53, Neg. LLF: 121.94100088260168
Iteration: 5, Func. Count: 65, Neg. LLF: 121.91884657255076
Iteration: 6, Func. Count: 77, Neg. LLF: 122.03226387013234
Iteration: 7, Func. Count: 90, Neg. LLF: 122.32929668604255
Iteration: 8, Func. Count: 103, Neg. LLF: 121.86123847510656
Iteration: 9, Func. Count: 115, Neg. LLF: 121.85500833522141
Iteration: 10, Func. Count: 127, Neg. LLF: 121.85629019215234
Iteration: 11, Func. Count: 140, Neg. LLF: 121.84457426820732
Iteration: 12, Func. Count: 152, Neg. LLF: 121.82829785378938
Iteration: 13, Func. Count: 164, Neg. LLF: 121.82062230452412
Iteration: 14, Func. Count: 176, Neg. LLF: 121.81682372780327
Iteration: 15, Func. Count: 188, Neg. LLF: 121.81680797044108
Iteration: 16, Func. Count: 200, Neg. LLF: 121.81677650997709
Iteration: 17, Func. Count: 212, Neg. LLF: 121.81677407852199
Iteration: 18, Func. Count: 224, Neg. LLF: 121.81677284750418
Iteration: 19, Func. Count: 235, Neg. LLF: 121.81677285136122
Optimization terminated successfully (Exit mode 0)
Current function value: 121.81677284750418
Iterations: 19
Function evaluations: 235
Gradient evaluations: 19
Iteration: 1, Func. Count: 14, Neg. LLF: 127.65276175008391
Iteration: 2, Func. Count: 28, Neg. LLF: 123.70433146185776
Iteration: 3, Func. Count: 43, Neg. LLF: 122.42018200964111
Iteration: 4, Func. Count: 57, Neg. LLF: 121.80303814109736
Iteration: 5, Func. Count: 70, Neg. LLF: 121.81314708511259
Iteration: 6, Func. Count: 84, Neg. LLF: 121.77396747108827
Iteration: 7, Func. Count: 97, Neg. LLF: 121.76741028826754
Iteration: 8, Func. Count: 110, Neg. LLF: 121.77479175501638
Iteration: 9, Func. Count: 124, Neg. LLF: 121.76047533697121
Iteration: 10, Func. Count: 137, Neg. LLF: 121.75891068985304
Iteration: 11, Func. Count: 150, Neg. LLF: 121.75875735893956
Iteration: 12, Func. Count: 163, Neg. LLF: 121.75855651451285
Iteration: 13, Func. Count: 176, Neg. LLF: 121.75848904911115
Iteration: 14, Func. Count: 189, Neg. LLF: 121.75844610322305
Iteration: 15, Func. Count: 202, Neg. LLF: 121.75844375208298
Iteration: 16, Func. Count: 214, Neg. LLF: 121.75844375207804
Optimization terminated successfully (Exit mode 0)
Current function value: 121.75844375208298
Iterations: 16
Function evaluations: 214
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 127.41542356203313
Iteration: 2, Func. Count: 22, Neg. LLF: 127.2154685536034
Iteration: 3, Func. Count: 33, Neg. LLF: 122.15593283073106
Iteration: 4, Func. Count: 43, Neg. LLF: 123.12096676008527
Iteration: 5, Func. Count: 54, Neg. LLF: 122.63826389113832
Iteration: 6, Func. Count: 65, Neg. LLF: 122.05524802411088
Iteration: 7, Func. Count: 76, Neg. LLF: 122.1124086871782
Iteration: 8, Func. Count: 87, Neg. LLF: 121.96095849069192
Iteration: 9, Func. Count: 98, Neg. LLF: 121.97635248078986
Iteration: 10, Func. Count: 109, Neg. LLF: 121.94747433897179
Iteration: 11, Func. Count: 119, Neg. LLF: 121.94706395960034
Iteration: 12, Func. Count: 129, Neg. LLF: 121.94705115365551
Iteration: 13, Func. Count: 138, Neg. LLF: 121.94705115366077
Optimization terminated successfully (Exit mode 0)
Current function value: 121.94705115365551
Iterations: 13
Function evaluations: 138
Gradient evaluations: 13
Iteration: 1, Func. Count: 12, Neg. LLF: 178.31137457283947
Iteration: 2, Func. Count: 25, Neg. LLF: 147.28824540979113
Iteration: 3, Func. Count: 38, Neg. LLF: 121.89186134417542
Iteration: 4, Func. Count: 49, Neg. LLF: 121.90144730986091
Iteration: 5, Func. Count: 61, Neg. LLF: 122.8297116480705
Iteration: 6, Func. Count: 73, Neg. LLF: 121.83037945993834
Iteration: 7, Func. Count: 84, Neg. LLF: 121.82237787291263
Iteration: 8, Func. Count: 95, Neg. LLF: 121.81895230506477
Iteration: 9, Func. Count: 106, Neg. LLF: 121.81808784577082
Iteration: 10, Func. Count: 117, Neg. LLF: 121.81779478081123
Iteration: 11, Func. Count: 128, Neg. LLF: 121.81705444500902
Iteration: 12, Func. Count: 139, Neg. LLF: 121.8168057647009
Iteration: 13, Func. Count: 150, Neg. LLF: 121.81677371380867
Iteration: 14, Func. Count: 161, Neg. LLF: 121.81677282369812
Optimization terminated successfully (Exit mode 0)
Current function value: 121.81677282369812
Iterations: 14
Function evaluations: 161
Gradient evaluations: 14
Iteration: 1, Func. Count: 13, Neg. LLF: 127.10764753641622
Iteration: 2, Func. Count: 26, Neg. LLF: 124.10186252778986
Iteration: 3, Func. Count: 40, Neg. LLF: 123.97084023679272
Iteration: 4, Func. Count: 53, Neg. LLF: 122.22572081124083
Iteration: 5, Func. Count: 66, Neg. LLF: 121.88098616007079
Iteration: 6, Func. Count: 78, Neg. LLF: 121.8900206969124
Iteration: 7, Func. Count: 91, Neg. LLF: 121.88643491692511
Iteration: 8, Func. Count: 104, Neg. LLF: 121.85758425001475
Iteration: 9, Func. Count: 116, Neg. LLF: 121.80691549413271
Iteration: 10, Func. Count: 128, Neg. LLF: 121.79780245534701
Iteration: 11, Func. Count: 140, Neg. LLF: 121.7820575899314
Iteration: 12, Func. Count: 152, Neg. LLF: 121.76749265558695
Iteration: 13, Func. Count: 164, Neg. LLF: 121.75271728794117
Iteration: 14, Func. Count: 176, Neg. LLF: 121.73717771997951
Iteration: 15, Func. Count: 188, Neg. LLF: 121.72965588056027
Iteration: 16, Func. Count: 200, Neg. LLF: 121.72852576065506
Iteration: 17, Func. Count: 212, Neg. LLF: 121.72745722303225
Iteration: 18, Func. Count: 224, Neg. LLF: 121.7273691055751
Iteration: 19, Func. Count: 236, Neg. LLF: 121.72735857086997
Iteration: 20, Func. Count: 248, Neg. LLF: 121.72735662941172
Iteration: 21, Func. Count: 259, Neg. LLF: 121.72735662950059
Optimization terminated successfully (Exit mode 0)
Current function value: 121.72735662941172
Iterations: 21
Function evaluations: 259
Gradient evaluations: 21
Iteration: 1, Func. Count: 14, Neg. LLF: 128.75340024512298
Iteration: 2, Func. Count: 28, Neg. LLF: 128.63026930491276
Iteration: 3, Func. Count: 43, Neg. LLF: 124.52858045583798
Iteration: 4, Func. Count: 57, Neg. LLF: 122.0064697608886
Iteration: 5, Func. Count: 71, Neg. LLF: 121.96823277188727
Iteration: 6, Func. Count: 85, Neg. LLF: 121.8758727064732
Iteration: 7, Func. Count: 98, Neg. LLF: 121.86330488119485
Iteration: 8, Func. Count: 111, Neg. LLF: 121.86960361941827
Iteration: 9, Func. Count: 125, Neg. LLF: 121.85623427007924
Iteration: 10, Func. Count: 138, Neg. LLF: 121.84805784794492
Iteration: 11, Func. Count: 151, Neg. LLF: 121.83623117993828
Iteration: 12, Func. Count: 164, Neg. LLF: 121.8228529599236
Iteration: 13, Func. Count: 177, Neg. LLF: 121.81800261235577
Iteration: 14, Func. Count: 190, Neg. LLF: 121.81752933293552
Iteration: 15, Func. Count: 203, Neg. LLF: 121.81680349559566
Iteration: 16, Func. Count: 216, Neg. LLF: 121.81678380639394
Iteration: 17, Func. Count: 229, Neg. LLF: 121.81677333765145
Iteration: 18, Func. Count: 242, Neg. LLF: 121.81677284198585
Optimization terminated successfully (Exit mode 0)
Current function value: 121.81677284198585
Iterations: 18
Function evaluations: 242
Gradient evaluations: 18
Iteration: 1, Func. Count: 15, Neg. LLF: 127.91415003384614
Iteration: 2, Func. Count: 30, Neg. LLF: 123.64064050689976
Iteration: 3, Func. Count: 46, Neg. LLF: 125.13968224800797
Iteration: 4, Func. Count: 61, Neg. LLF: 121.90271277852742
Iteration: 5, Func. Count: 75, Neg. LLF: 121.83080070397999
Iteration: 6, Func. Count: 89, Neg. LLF: 122.26144078680281
Iteration: 7, Func. Count: 104, Neg. LLF: 121.98653011497417
Iteration: 8, Func. Count: 119, Neg. LLF: 121.76559571449913
Iteration: 9, Func. Count: 133, Neg. LLF: 121.76084920894912
Iteration: 10, Func. Count: 147, Neg. LLF: 121.76019492181277
Iteration: 11, Func. Count: 161, Neg. LLF: 121.75915425565469
Iteration: 12, Func. Count: 175, Neg. LLF: 121.75876237597585
Iteration: 13, Func. Count: 189, Neg. LLF: 121.75847870754235
Iteration: 14, Func. Count: 203, Neg. LLF: 121.75844541492586
Iteration: 15, Func. Count: 217, Neg. LLF: 121.75844370864844
Iteration: 16, Func. Count: 230, Neg. LLF: 121.7584437086367
Optimization terminated successfully (Exit mode 0)
Current function value: 121.75844370864844
Iterations: 16
Function evaluations: 230
Gradient evaluations: 16
Iteration: 1, Func. Count: 8, Neg. LLF: 125.34610250828436
Iteration: 2, Func. Count: 16, Neg. LLF: 122.63254253706764
Iteration: 3, Func. Count: 23, Neg. LLF: 124.08925852616456
Iteration: 4, Func. Count: 31, Neg. LLF: 122.89648654112142
Iteration: 5, Func. Count: 39, Neg. LLF: 122.27650264944744
Iteration: 6, Func. Count: 47, Neg. LLF: 122.25233402326366
Iteration: 7, Func. Count: 54, Neg. LLF: 122.25190176722393
Iteration: 8, Func. Count: 61, Neg. LLF: 122.25189886084618
Iteration: 9, Func. Count: 67, Neg. LLF: 122.25189889347905
Optimization terminated successfully (Exit mode 0)
Current function value: 122.25189886084618
Iterations: 9
Function evaluations: 67
Gradient evaluations: 9
Iteration: 1, Func. Count: 9, Neg. LLF: 208.32271846979017
Iteration: 2, Func. Count: 19, Neg. LLF: 145.27774816778035
Iteration: 3, Func. Count: 29, Neg. LLF: 122.09657163801236
Iteration: 4, Func. Count: 37, Neg. LLF: 122.04369792569605
Iteration: 5, Func. Count: 45, Neg. LLF: 121.99159374977245
Iteration: 6, Func. Count: 53, Neg. LLF: 122.28563871266431
Iteration: 7, Func. Count: 62, Neg. LLF: 121.98309709162307
Iteration: 8, Func. Count: 71, Neg. LLF: 121.97922728231099
Iteration: 9, Func. Count: 80, Neg. LLF: 121.97720681090243
Iteration: 10, Func. Count: 88, Neg. LLF: 121.97720404086135
Iteration: 11, Func. Count: 95, Neg. LLF: 121.97720404083468
Optimization terminated successfully (Exit mode 0)
Current function value: 121.97720404086135
Iterations: 11
Function evaluations: 95
Gradient evaluations: 11
Iteration: 1, Func. Count: 10, Neg. LLF: 213.02002235144425
Iteration: 2, Func. Count: 21, Neg. LLF: 3593.1186965683537
Iteration: 3, Func. Count: 32, Neg. LLF: 122.05755480641535
Iteration: 4, Func. Count: 41, Neg. LLF: 121.99295987576888
Iteration: 5, Func. Count: 50, Neg. LLF: 121.96264449831949
Iteration: 6, Func. Count: 59, Neg. LLF: 121.92808284962004
Iteration: 7, Func. Count: 68, Neg. LLF: 121.92008875640666
Iteration: 8, Func. Count: 77, Neg. LLF: 121.91610177016346
Iteration: 9, Func. Count: 86, Neg. LLF: 121.9131102195446
Iteration: 10, Func. Count: 95, Neg. LLF: 121.91269990428485
Iteration: 11, Func. Count: 104, Neg. LLF: 121.91264614809312
Iteration: 12, Func. Count: 113, Neg. LLF: 121.91263762758047
Iteration: 13, Func. Count: 122, Neg. LLF: 121.91263634189096
Iteration: 14, Func. Count: 130, Neg. LLF: 121.91263634196056
Optimization terminated successfully (Exit mode 0)
Current function value: 121.91263634189096
Iterations: 14
Function evaluations: 130
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 214.8254485040964
Iteration: 2, Func. Count: 23, Neg. LLF: 134.3673027006141
Iteration: 3, Func. Count: 35, Neg. LLF: 122.08236746366828
Iteration: 4, Func. Count: 45, Neg. LLF: 122.26130376999986
Iteration: 5, Func. Count: 56, Neg. LLF: 122.01848849581287
Iteration: 6, Func. Count: 66, Neg. LLF: 122.03751802395908
Iteration: 7, Func. Count: 77, Neg. LLF: 122.00776152852391
Iteration: 8, Func. Count: 87, Neg. LLF: 122.00224248655788
Iteration: 9, Func. Count: 97, Neg. LLF: 121.99059264332476
Iteration: 10, Func. Count: 107, Neg. LLF: 121.98452909557005
Iteration: 11, Func. Count: 117, Neg. LLF: 121.98133481085931
Iteration: 12, Func. Count: 127, Neg. LLF: 121.97765861271068
Iteration: 13, Func. Count: 137, Neg. LLF: 121.97723364059381
Iteration: 14, Func. Count: 147, Neg. LLF: 121.97720761098043
Iteration: 15, Func. Count: 157, Neg. LLF: 121.97720392110124
Iteration: 16, Func. Count: 166, Neg. LLF: 121.97720392357532
Optimization terminated successfully (Exit mode 0)
Current function value: 121.97720392110124
Iterations: 16
Function evaluations: 166
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 218.15781275167845
Iteration: 2, Func. Count: 25, Neg. LLF: 1977.5648161892527
Iteration: 3, Func. Count: 38, Neg. LLF: 121.89754971611687
Iteration: 4, Func. Count: 49, Neg. LLF: 121.81954050474376
Iteration: 5, Func. Count: 60, Neg. LLF: 122.61242045604607
Iteration: 6, Func. Count: 72, Neg. LLF: 121.74213205637315
Iteration: 7, Func. Count: 83, Neg. LLF: 121.70258739809138
Iteration: 8, Func. Count: 94, Neg. LLF: 121.69560630667907
Iteration: 9, Func. Count: 105, Neg. LLF: 121.69513682569155
Iteration: 10, Func. Count: 116, Neg. LLF: 121.69502695226147
Iteration: 11, Func. Count: 127, Neg. LLF: 121.69498608380604
Iteration: 12, Func. Count: 138, Neg. LLF: 121.69497273453293
Iteration: 13, Func. Count: 149, Neg. LLF: 121.69497093773936
Iteration: 14, Func. Count: 159, Neg. LLF: 121.69497093776883
Optimization terminated successfully (Exit mode 0)
Current function value: 121.69497093773936
Iterations: 14
Function evaluations: 159
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 125.37227056488916
Iteration: 2, Func. Count: 18, Neg. LLF: 125.90800644664405
Iteration: 3, Func. Count: 27, Neg. LLF: 122.39602687079267
Iteration: 4, Func. Count: 35, Neg. LLF: 122.72602044880284
Iteration: 5, Func. Count: 44, Neg. LLF: 122.21270938257821
Iteration: 6, Func. Count: 53, Neg. LLF: 122.17226802622547
Iteration: 7, Func. Count: 62, Neg. LLF: 122.12997202774866
Iteration: 8, Func. Count: 70, Neg. LLF: 122.12995285958222
Iteration: 9, Func. Count: 77, Neg. LLF: 122.12995285955063
Optimization terminated successfully (Exit mode 0)
Current function value: 122.12995285958222
Iterations: 9
Function evaluations: 77
Gradient evaluations: 9
Iteration: 1, Func. Count: 10, Neg. LLF: 190.4014697571312
Iteration: 2, Func. Count: 21, Neg. LLF: 123.91996676415738
Iteration: 3, Func. Count: 31, Neg. LLF: 121.89240691598097
Iteration: 4, Func. Count: 40, Neg. LLF: 121.89556152589478
Iteration: 5, Func. Count: 50, Neg. LLF: 121.84269691690619
Iteration: 6, Func. Count: 59, Neg. LLF: 121.83994295177786
Iteration: 7, Func. Count: 68, Neg. LLF: 121.83979693705122
Iteration: 8, Func. Count: 77, Neg. LLF: 121.83975158115601
Iteration: 9, Func. Count: 86, Neg. LLF: 121.83974856097322
Iteration: 10, Func. Count: 94, Neg. LLF: 121.83974856096947
Optimization terminated successfully (Exit mode 0)
Current function value: 121.83974856097322
Iterations: 10
Function evaluations: 94
Gradient evaluations: 10
Iteration: 1, Func. Count: 11, Neg. LLF: 174.4532085940998
Iteration: 2, Func. Count: 23, Neg. LLF: 131.61767568629537
Iteration: 3, Func. Count: 35, Neg. LLF: 122.16208189114997
Iteration: 4, Func. Count: 46, Neg. LLF: 121.97561054017916
Iteration: 5, Func. Count: 57, Neg. LLF: 121.82780457192236
Iteration: 6, Func. Count: 67, Neg. LLF: 121.78460950510797
Iteration: 7, Func. Count: 77, Neg. LLF: 121.77821021774443
Iteration: 8, Func. Count: 87, Neg. LLF: 121.77196103930035
Iteration: 9, Func. Count: 97, Neg. LLF: 121.76909402445372
Iteration: 10, Func. Count: 107, Neg. LLF: 121.76855179029774
Iteration: 11, Func. Count: 117, Neg. LLF: 121.76849051439146
Iteration: 12, Func. Count: 127, Neg. LLF: 121.76840272710088
Iteration: 13, Func. Count: 137, Neg. LLF: 121.76839574664999
Iteration: 14, Func. Count: 147, Neg. LLF: 121.76839517682242
Optimization terminated successfully (Exit mode 0)
Current function value: 121.76839517682242
Iterations: 14
Function evaluations: 147
Gradient evaluations: 14
Iteration: 1, Func. Count: 12, Neg. LLF: 194.08005624873354
Iteration: 2, Func. Count: 25, Neg. LLF: 122.37697108703513
Iteration: 3, Func. Count: 37, Neg. LLF: 121.99306059592456
Iteration: 4, Func. Count: 49, Neg. LLF: 121.889804063317
Iteration: 5, Func. Count: 60, Neg. LLF: 121.88280626391999
Iteration: 6, Func. Count: 71, Neg. LLF: 121.88043544815233
Iteration: 7, Func. Count: 82, Neg. LLF: 121.86726076233258
Iteration: 8, Func. Count: 93, Neg. LLF: 121.85264002363193
Iteration: 9, Func. Count: 104, Neg. LLF: 121.84830740060217
Iteration: 10, Func. Count: 115, Neg. LLF: 121.83992297451648
Iteration: 11, Func. Count: 126, Neg. LLF: 121.83975823575157
Iteration: 12, Func. Count: 137, Neg. LLF: 121.83974855021467
Iteration: 13, Func. Count: 147, Neg. LLF: 121.83974855939003
Optimization terminated successfully (Exit mode 0)
Current function value: 121.83974855021467
Iterations: 13
Function evaluations: 147
Gradient evaluations: 13
Iteration: 1, Func. Count: 13, Neg. LLF: 195.75800842976017
Iteration: 2, Func. Count: 27, Neg. LLF: 218.89619630133248
Iteration: 3, Func. Count: 41, Neg. LLF: 122.2004982505717
Iteration: 4, Func. Count: 54, Neg. LLF: 121.90350657368947
Iteration: 5, Func. Count: 66, Neg. LLF: 121.87145002524761
Iteration: 6, Func. Count: 78, Neg. LLF: 121.84632799803512
Iteration: 7, Func. Count: 90, Neg. LLF: 121.79328732613328
Iteration: 8, Func. Count: 102, Neg. LLF: 121.77387062442645
Iteration: 9, Func. Count: 114, Neg. LLF: 121.77069949448921
Iteration: 10, Func. Count: 126, Neg. LLF: 121.76876392405153
Iteration: 11, Func. Count: 138, Neg. LLF: 121.76845600522863
Iteration: 12, Func. Count: 150, Neg. LLF: 121.76839958606121
Iteration: 13, Func. Count: 162, Neg. LLF: 121.76839602538774
Iteration: 14, Func. Count: 174, Neg. LLF: 121.7683952378655
Optimization terminated successfully (Exit mode 0)
Current function value: 121.7683952378655
Iterations: 14
Function evaluations: 174
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 124.98373783495043
Iteration: 2, Func. Count: 20, Neg. LLF: 124.534474841209
Iteration: 3, Func. Count: 30, Neg. LLF: 122.43104662875778
Iteration: 4, Func. Count: 39, Neg. LLF: 122.61723583616194
Iteration: 5, Func. Count: 49, Neg. LLF: 123.30674846423022
Iteration: 6, Func. Count: 59, Neg. LLF: 122.31677245900627
Iteration: 7, Func. Count: 69, Neg. LLF: 122.10650981576417
Iteration: 8, Func. Count: 78, Neg. LLF: 122.10596747275116
Iteration: 9, Func. Count: 87, Neg. LLF: 122.10594627551819
Iteration: 10, Func. Count: 96, Neg. LLF: 122.10594408453396
Iteration: 11, Func. Count: 104, Neg. LLF: 122.10594408452971
Optimization terminated successfully (Exit mode 0)
Current function value: 122.10594408453396
Iterations: 11
Function evaluations: 104
Gradient evaluations: 11
Iteration: 1, Func. Count: 11, Neg. LLF: 174.2179482080774
Iteration: 2, Func. Count: 23, Neg. LLF: 122.092734425546
Iteration: 3, Func. Count: 34, Neg. LLF: 121.87887218119255
Iteration: 4, Func. Count: 44, Neg. LLF: 121.87899200665487
Iteration: 5, Func. Count: 55, Neg. LLF: 121.86953004739753
Iteration: 6, Func. Count: 66, Neg. LLF: 121.83419363496981
Iteration: 7, Func. Count: 76, Neg. LLF: 121.83003097798453
Iteration: 8, Func. Count: 86, Neg. LLF: 121.82982150842722
Iteration: 9, Func. Count: 96, Neg. LLF: 121.82980974902821
Iteration: 10, Func. Count: 105, Neg. LLF: 121.82980974901042
Optimization terminated successfully (Exit mode 0)
Current function value: 121.82980974902821
Iterations: 10
Function evaluations: 105
Gradient evaluations: 10
Iteration: 1, Func. Count: 12, Neg. LLF: 178.12522013700124
Iteration: 2, Func. Count: 25, Neg. LLF: 131.19564450937077
Iteration: 3, Func. Count: 38, Neg. LLF: 122.14603585468342
Iteration: 4, Func. Count: 50, Neg. LLF: 121.89881609049874
Iteration: 5, Func. Count: 61, Neg. LLF: 121.9057098924471
Iteration: 6, Func. Count: 73, Neg. LLF: 121.94593151737762
Iteration: 7, Func. Count: 85, Neg. LLF: 121.88702840366993
Iteration: 8, Func. Count: 96, Neg. LLF: 121.8829556299294
Iteration: 9, Func. Count: 107, Neg. LLF: 121.8705122638552
Iteration: 10, Func. Count: 118, Neg. LLF: 122.19587905291384
Iteration: 11, Func. Count: 130, Neg. LLF: 121.84433203278398
Iteration: 12, Func. Count: 141, Neg. LLF: 121.78040784279648
Iteration: 13, Func. Count: 152, Neg. LLF: 121.77046682867267
Iteration: 14, Func. Count: 163, Neg. LLF: 121.76760139867
Iteration: 15, Func. Count: 174, Neg. LLF: 121.76661500963124
Iteration: 16, Func. Count: 185, Neg. LLF: 121.76656710487184
Iteration: 17, Func. Count: 196, Neg. LLF: 121.76646684563843
Iteration: 18, Func. Count: 207, Neg. LLF: 121.76644507636789
Iteration: 19, Func. Count: 218, Neg. LLF: 121.76643589037657
Iteration: 20, Func. Count: 229, Neg. LLF: 121.7664345624645
Iteration: 21, Func. Count: 239, Neg. LLF: 121.76643456241007
Optimization terminated successfully (Exit mode 0)
Current function value: 121.7664345624645
Iterations: 21
Function evaluations: 239
Gradient evaluations: 21
Iteration: 1, Func. Count: 13, Neg. LLF: 179.50002984004837
Iteration: 2, Func. Count: 27, Neg. LLF: 122.70912691652211
Iteration: 3, Func. Count: 40, Neg. LLF: 121.90913350026703
Iteration: 4, Func. Count: 52, Neg. LLF: 122.09495057306515
Iteration: 5, Func. Count: 65, Neg. LLF: 121.93890573044789
Iteration: 6, Func. Count: 78, Neg. LLF: 121.87868607795278
Iteration: 7, Func. Count: 90, Neg. LLF: 121.85810859393223
Iteration: 8, Func. Count: 102, Neg. LLF: 121.84687885793977
Iteration: 9, Func. Count: 114, Neg. LLF: 121.83659564322485
Iteration: 10, Func. Count: 126, Neg. LLF: 121.83031130967863
Iteration: 11, Func. Count: 138, Neg. LLF: 121.829831325949
Iteration: 12, Func. Count: 150, Neg. LLF: 121.82981024966054
Iteration: 13, Func. Count: 162, Neg. LLF: 121.82980957542541
Optimization terminated successfully (Exit mode 0)
Current function value: 121.82980957542541
Iterations: 13
Function evaluations: 162
Gradient evaluations: 13
Iteration: 1, Func. Count: 14, Neg. LLF: 179.0526725523329
Iteration: 2, Func. Count: 29, Neg. LLF: 163.21566494644654
Iteration: 3, Func. Count: 44, Neg. LLF: 123.9672230717332
Iteration: 4, Func. Count: 58, Neg. LLF: 121.88246757634204
Iteration: 5, Func. Count: 71, Neg. LLF: 122.03735254910079
Iteration: 6, Func. Count: 85, Neg. LLF: 121.7887550568897
Iteration: 7, Func. Count: 98, Neg. LLF: 121.79562836691929
Iteration: 8, Func. Count: 112, Neg. LLF: 121.76729771038056
Iteration: 9, Func. Count: 125, Neg. LLF: 121.7667235646289
Iteration: 10, Func. Count: 138, Neg. LLF: 121.76658087617845
Iteration: 11, Func. Count: 151, Neg. LLF: 121.76649289070147
Iteration: 12, Func. Count: 164, Neg. LLF: 121.76646005788187
Iteration: 13, Func. Count: 177, Neg. LLF: 121.76643833933821
Iteration: 14, Func. Count: 190, Neg. LLF: 121.76643467064574
Iteration: 15, Func. Count: 202, Neg. LLF: 121.76643468066605
Optimization terminated successfully (Exit mode 0)
Current function value: 121.76643467064574
Iterations: 15
Function evaluations: 202
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 124.89456451378254
Iteration: 2, Func. Count: 22, Neg. LLF: 125.79636116347952
Iteration: 3, Func. Count: 33, Neg. LLF: 122.4149295825924
Iteration: 4, Func. Count: 43, Neg. LLF: 122.15691987556487
Iteration: 5, Func. Count: 53, Neg. LLF: 122.38321797736207
Iteration: 6, Func. Count: 64, Neg. LLF: 123.49174320257283
Iteration: 7, Func. Count: 75, Neg. LLF: 122.03986473441267
Iteration: 8, Func. Count: 86, Neg. LLF: 122.02350473785849
Iteration: 9, Func. Count: 97, Neg. LLF: 121.96542482086068
Iteration: 10, Func. Count: 107, Neg. LLF: 121.96336169876902
Iteration: 11, Func. Count: 117, Neg. LLF: 121.9633342311053
Iteration: 12, Func. Count: 127, Neg. LLF: 121.96333144547472
Iteration: 13, Func. Count: 136, Neg. LLF: 121.96333144546588
Optimization terminated successfully (Exit mode 0)
Current function value: 121.96333144547472
Iterations: 13
Function evaluations: 136
Gradient evaluations: 13
Iteration: 1, Func. Count: 12, Neg. LLF: 177.49482220824564
Iteration: 2, Func. Count: 25, Neg. LLF: 122.62326459386979
Iteration: 3, Func. Count: 37, Neg. LLF: 122.0192225018936
Iteration: 4, Func. Count: 49, Neg. LLF: 121.89752789393779
Iteration: 5, Func. Count: 61, Neg. LLF: 121.82199519378133
Iteration: 6, Func. Count: 72, Neg. LLF: 121.82458106787374
Iteration: 7, Func. Count: 84, Neg. LLF: 121.82088295280415
Iteration: 8, Func. Count: 96, Neg. LLF: 121.81797488757284
Iteration: 9, Func. Count: 107, Neg. LLF: 121.81734596089564
Iteration: 10, Func. Count: 118, Neg. LLF: 121.81686523315862
Iteration: 11, Func. Count: 129, Neg. LLF: 121.81678099372824
Iteration: 12, Func. Count: 140, Neg. LLF: 121.8167728708166
Iteration: 13, Func. Count: 150, Neg. LLF: 121.81677287081602
Optimization terminated successfully (Exit mode 0)
Current function value: 121.8167728708166
Iterations: 13
Function evaluations: 150
Gradient evaluations: 13
Iteration: 1, Func. Count: 13, Neg. LLF: 129.9502091926509
Iteration: 2, Func. Count: 26, Neg. LLF: 134.27229736591147
Iteration: 3, Func. Count: 40, Neg. LLF: 122.68398566795359
Iteration: 4, Func. Count: 53, Neg. LLF: 121.90586665818896
Iteration: 5, Func. Count: 65, Neg. LLF: 121.91409378413032
Iteration: 6, Func. Count: 78, Neg. LLF: 121.94756804325284
Iteration: 7, Func. Count: 91, Neg. LLF: 121.88211971414962
Iteration: 8, Func. Count: 104, Neg. LLF: 121.8700701252745
Iteration: 9, Func. Count: 116, Neg. LLF: 121.81962241010348
Iteration: 10, Func. Count: 128, Neg. LLF: 121.81295153409886
Iteration: 11, Func. Count: 141, Neg. LLF: 121.76867496994026
Iteration: 12, Func. Count: 153, Neg. LLF: 121.75933886524203
Iteration: 13, Func. Count: 165, Neg. LLF: 121.7557736528124
Iteration: 14, Func. Count: 177, Neg. LLF: 121.75091536533255
Iteration: 15, Func. Count: 189, Neg. LLF: 121.73707860665972
Iteration: 16, Func. Count: 201, Neg. LLF: 121.7286934301306
Iteration: 17, Func. Count: 213, Neg. LLF: 121.72776653902292
Iteration: 18, Func. Count: 225, Neg. LLF: 121.72744351518409
Iteration: 19, Func. Count: 237, Neg. LLF: 121.72737617941382
Iteration: 20, Func. Count: 249, Neg. LLF: 121.727357897279
Iteration: 21, Func. Count: 261, Neg. LLF: 121.72735686663071
Iteration: 22, Func. Count: 273, Neg. LLF: 121.72735580808029
Iteration: 23, Func. Count: 285, Neg. LLF: 121.72735623692877
Iteration: 24, Func. Count: 307, Neg. LLF: 121.7274862817449
Iteration: 25, Func. Count: 322, Neg. LLF: 121.72735687780367
Iteration: 26, Func. Count: 336, Neg. LLF: 121.72735647682201
Optimization terminated successfully (Exit mode 0)
Current function value: 121.72735647682201
Iterations: 27
Function evaluations: 336
Gradient evaluations: 26
Iteration: 1, Func. Count: 14, Neg. LLF: 130.90713879040166
Iteration: 2, Func. Count: 28, Neg. LLF: 136.71734285739967
Iteration: 3, Func. Count: 43, Neg. LLF: 122.42129745318748
Iteration: 4, Func. Count: 57, Neg. LLF: 121.94053413012834
Iteration: 5, Func. Count: 70, Neg. LLF: 121.9058157955054
Iteration: 6, Func. Count: 83, Neg. LLF: 121.97821488437184
Iteration: 7, Func. Count: 97, Neg. LLF: 122.55158563044867
Iteration: 8, Func. Count: 111, Neg. LLF: 121.85915362747386
Iteration: 9, Func. Count: 124, Neg. LLF: 121.85644723600026
Iteration: 10, Func. Count: 137, Neg. LLF: 121.8531239542775
Iteration: 11, Func. Count: 150, Neg. LLF: 121.84643252000886
Iteration: 12, Func. Count: 163, Neg. LLF: 121.83517806318324
Iteration: 13, Func. Count: 176, Neg. LLF: 121.82811626059187
Iteration: 14, Func. Count: 189, Neg. LLF: 121.81970869403817
Iteration: 15, Func. Count: 202, Neg. LLF: 121.81719553112451
Iteration: 16, Func. Count: 215, Neg. LLF: 121.81684309240777
Iteration: 17, Func. Count: 228, Neg. LLF: 121.81678044633763
Iteration: 18, Func. Count: 241, Neg. LLF: 121.81677501375435
Iteration: 19, Func. Count: 254, Neg. LLF: 121.81677305778045
Iteration: 20, Func. Count: 266, Neg. LLF: 121.81677306155967
Optimization terminated successfully (Exit mode 0)
Current function value: 121.81677305778045
Iterations: 20
Function evaluations: 266
Gradient evaluations: 20
Iteration: 1, Func. Count: 15, Neg. LLF: 127.75317735200771
Iteration: 2, Func. Count: 30, Neg. LLF: 123.73860986659518
Iteration: 3, Func. Count: 46, Neg. LLF: 122.52503763999604
Iteration: 4, Func. Count: 61, Neg. LLF: 121.80506203269854
Iteration: 5, Func. Count: 75, Neg. LLF: 121.7994986784804
Iteration: 6, Func. Count: 90, Neg. LLF: 121.78048039052479
Iteration: 7, Func. Count: 104, Neg. LLF: 121.77563885906822
Iteration: 8, Func. Count: 119, Neg. LLF: 121.77989810632923
Iteration: 9, Func. Count: 134, Neg. LLF: 121.75904002303554
Iteration: 10, Func. Count: 148, Neg. LLF: 121.7587104638066
Iteration: 11, Func. Count: 162, Neg. LLF: 121.75861094989223
Iteration: 12, Func. Count: 176, Neg. LLF: 121.75852109944519
Iteration: 13, Func. Count: 190, Neg. LLF: 121.7584581692423
Iteration: 14, Func. Count: 204, Neg. LLF: 121.75844448365613
Iteration: 15, Func. Count: 218, Neg. LLF: 121.75844369203591
Optimization terminated successfully (Exit mode 0)
Current function value: 121.75844369203591
Iterations: 15
Function evaluations: 218
Gradient evaluations: 15
Iteration: 1, Func. Count: 12, Neg. LLF: 124.49607787234379
Iteration: 2, Func. Count: 24, Neg. LLF: 122.6534206783066
Iteration: 3, Func. Count: 35, Neg. LLF: 122.26813431574492
Iteration: 4, Func. Count: 46, Neg. LLF: 123.75254286873107
Iteration: 5, Func. Count: 58, Neg. LLF: 122.20744122135305
Iteration: 6, Func. Count: 70, Neg. LLF: 122.02726042894378
Iteration: 7, Func. Count: 81, Neg. LLF: 122.40631710282945
Iteration: 8, Func. Count: 93, Neg. LLF: 122.10495132271882
Iteration: 9, Func. Count: 105, Neg. LLF: 122.11015762491222
Iteration: 10, Func. Count: 117, Neg. LLF: 121.94769458056146
Iteration: 11, Func. Count: 128, Neg. LLF: 121.94715061028693
Iteration: 12, Func. Count: 139, Neg. LLF: 121.94706632657899
Iteration: 13, Func. Count: 150, Neg. LLF: 121.94705188064782
Iteration: 14, Func. Count: 161, Neg. LLF: 121.94705081727042
Iteration: 15, Func. Count: 171, Neg. LLF: 121.94705081727125
Optimization terminated successfully (Exit mode 0)
Current function value: 121.94705081727042
Iterations: 15
Function evaluations: 171
Gradient evaluations: 15
Iteration: 1, Func. Count: 13, Neg. LLF: 178.9364559351559
Iteration: 2, Func. Count: 27, Neg. LLF: 153.1164520511572
Iteration: 3, Func. Count: 41, Neg. LLF: 121.88559638320591
Iteration: 4, Func. Count: 53, Neg. LLF: 121.90338837550497
Iteration: 5, Func. Count: 66, Neg. LLF: 122.74677533215743
Iteration: 6, Func. Count: 79, Neg. LLF: 121.83051085819204
Iteration: 7, Func. Count: 92, Neg. LLF: 121.82089217258053
Iteration: 8, Func. Count: 104, Neg. LLF: 121.81833400798774
Iteration: 9, Func. Count: 116, Neg. LLF: 121.81803597821775
Iteration: 10, Func. Count: 128, Neg. LLF: 121.81716937432245
Iteration: 11, Func. Count: 140, Neg. LLF: 121.81685039632157
Iteration: 12, Func. Count: 152, Neg. LLF: 121.81677470297073
Iteration: 13, Func. Count: 164, Neg. LLF: 121.81677284538783
Iteration: 14, Func. Count: 175, Neg. LLF: 121.81677284535071
Optimization terminated successfully (Exit mode 0)
Current function value: 121.81677284538783
Iterations: 14
Function evaluations: 175
Gradient evaluations: 14
Iteration: 1, Func. Count: 14, Neg. LLF: 127.05601508660096
Iteration: 2, Func. Count: 28, Neg. LLF: 123.91455177143182
Iteration: 3, Func. Count: 43, Neg. LLF: 124.75726496129697
Iteration: 4, Func. Count: 57, Neg. LLF: 122.25888525942817
Iteration: 5, Func. Count: 71, Neg. LLF: 121.88008237865951
Iteration: 6, Func. Count: 84, Neg. LLF: 121.88722884425223
Iteration: 7, Func. Count: 98, Neg. LLF: 121.88158959760719
Iteration: 8, Func. Count: 112, Neg. LLF: 121.87425354837676
Iteration: 9, Func. Count: 125, Neg. LLF: 121.86177926357541
Iteration: 10, Func. Count: 138, Neg. LLF: 121.79623341651724
Iteration: 11, Func. Count: 151, Neg. LLF: 121.77332582490412
Iteration: 12, Func. Count: 164, Neg. LLF: 121.74445256711695
Iteration: 13, Func. Count: 177, Neg. LLF: 121.74127072871751
Iteration: 14, Func. Count: 190, Neg. LLF: 121.73935097875129
Iteration: 15, Func. Count: 203, Neg. LLF: 121.73779796037184
Iteration: 16, Func. Count: 216, Neg. LLF: 121.73438404516504
Iteration: 17, Func. Count: 229, Neg. LLF: 121.72941463499265
Iteration: 18, Func. Count: 242, Neg. LLF: 121.727643122671
Iteration: 19, Func. Count: 255, Neg. LLF: 121.72741170694354
Iteration: 20, Func. Count: 268, Neg. LLF: 121.72731872979769
Iteration: 21, Func. Count: 281, Neg. LLF: 121.72832127174529
Iteration: 22, Func. Count: 296, Neg. LLF: 121.74045866781483
Iteration: 23, Func. Count: 312, Neg. LLF: 121.72754867875733
Iteration: 24, Func. Count: 326, Neg. LLF: 121.72736821010325
Iteration: 25, Func. Count: 339, Neg. LLF: 121.72737367258968
Iteration: 26, Func. Count: 353, Neg. LLF: 121.7273638008539
Iteration: 27, Func. Count: 367, Neg. LLF: 121.7273582117992
Iteration: 28, Func. Count: 380, Neg. LLF: 121.72735646936646
Iteration: 29, Func. Count: 392, Neg. LLF: 121.72735646936621
Optimization terminated successfully (Exit mode 0)
Current function value: 121.72735646936646
Iterations: 30
Function evaluations: 392
Gradient evaluations: 29
Iteration: 1, Func. Count: 15, Neg. LLF: 128.81974523790234
Iteration: 2, Func. Count: 30, Neg. LLF: 128.3930704721094
Iteration: 3, Func. Count: 45, Neg. LLF: 124.55522960664129
Iteration: 4, Func. Count: 60, Neg. LLF: 122.00589887668323
Iteration: 5, Func. Count: 75, Neg. LLF: 122.00599749423296
Iteration: 6, Func. Count: 90, Neg. LLF: 121.95028411529162
Iteration: 7, Func. Count: 105, Neg. LLF: 121.86157730909132
Iteration: 8, Func. Count: 119, Neg. LLF: 121.85924440894644
Iteration: 9, Func. Count: 133, Neg. LLF: 121.85487224295392
Iteration: 10, Func. Count: 147, Neg. LLF: 121.84491840474377
Iteration: 11, Func. Count: 161, Neg. LLF: 121.83519503070447
Iteration: 12, Func. Count: 175, Neg. LLF: 121.82573283351233
Iteration: 13, Func. Count: 189, Neg. LLF: 121.81815234835955
Iteration: 14, Func. Count: 203, Neg. LLF: 121.81751562254054
Iteration: 15, Func. Count: 217, Neg. LLF: 121.81691540767825
Iteration: 16, Func. Count: 231, Neg. LLF: 121.81682991582684
Iteration: 17, Func. Count: 245, Neg. LLF: 121.81677495417799
Iteration: 18, Func. Count: 259, Neg. LLF: 121.81677317460995
Iteration: 19, Func. Count: 272, Neg. LLF: 121.816773178465
Optimization terminated successfully (Exit mode 0)
Current function value: 121.81677317460995
Iterations: 19
Function evaluations: 272
Gradient evaluations: 19
Iteration: 1, Func. Count: 16, Neg. LLF: 128.01221364499932
Iteration: 2, Func. Count: 32, Neg. LLF: 123.92679703445732
Iteration: 3, Func. Count: 48, Neg. LLF: 124.8111173219638
Iteration: 4, Func. Count: 64, Neg. LLF: 121.90488804116615
Iteration: 5, Func. Count: 79, Neg. LLF: 121.86812909390378
Iteration: 6, Func. Count: 94, Neg. LLF: 122.85971125151352
Iteration: 7, Func. Count: 110, Neg. LLF: 122.02840827933099
Iteration: 8, Func. Count: 126, Neg. LLF: 121.78251185326744
Iteration: 9, Func. Count: 142, Neg. LLF: 121.76129234951487
Iteration: 10, Func. Count: 157, Neg. LLF: 121.76009900184049
Iteration: 11, Func. Count: 172, Neg. LLF: 121.75960014185634
Iteration: 12, Func. Count: 187, Neg. LLF: 121.75890368145667
Iteration: 13, Func. Count: 202, Neg. LLF: 121.75857156198323
Iteration: 14, Func. Count: 217, Neg. LLF: 121.75845513880047
Iteration: 15, Func. Count: 232, Neg. LLF: 121.75844503151028
Iteration: 16, Func. Count: 247, Neg. LLF: 121.75844385392821
Iteration: 17, Func. Count: 261, Neg. LLF: 121.7584438539077
Optimization terminated successfully (Exit mode 0)
Current function value: 121.75844385392821
Iterations: 17
Function evaluations: 261
Gradient evaluations: 17
Iteration: 1, Func. Count: 5, Neg. LLF: 127.4135449364065
Iteration: 2, Func. Count: 10, Neg. LLF: 146.9151053531874
Iteration: 3, Func. Count: 15, Neg. LLF: 122.76910274860211
Iteration: 4, Func. Count: 19, Neg. LLF: 122.66302668505026
Iteration: 5, Func. Count: 23, Neg. LLF: 122.56702425893702
Iteration: 6, Func. Count: 28, Neg. LLF: 122.45400999344386
Iteration: 7, Func. Count: 32, Neg. LLF: 122.44513427563372
Iteration: 8, Func. Count: 36, Neg. LLF: 122.44492758872738
Iteration: 9, Func. Count: 40, Neg. LLF: 122.44491754299459
Iteration: 10, Func. Count: 43, Neg. LLF: 122.44491754298252
Optimization terminated successfully (Exit mode 0)
Current function value: 122.44491754299459
Iterations: 10
Function evaluations: 43
Gradient evaluations: 10
Iteration: 1, Func. Count: 5, Neg. LLF: 124.18345030515096
Iteration: 2, Func. Count: 10, Neg. LLF: 134.34241611475076
Iteration: 3, Func. Count: 15, Neg. LLF: 118.45594022724539
Iteration: 4, Func. Count: 19, Neg. LLF: 118.42103498400903
Iteration: 5, Func. Count: 23, Neg. LLF: 118.39753844715548
Iteration: 6, Func. Count: 27, Neg. LLF: 118.39690046527515
Iteration: 7, Func. Count: 31, Neg. LLF: 118.39690519263031
Iteration: 8, Func. Count: 36, Neg. LLF: 118.39679774842365
Iteration: 9, Func. Count: 40, Neg. LLF: 118.39679593765608
Iteration: 10, Func. Count: 43, Neg. LLF: 118.39679593765604
Optimization terminated successfully (Exit mode 0)
Current function value: 118.39679593765608
Iterations: 10
Function evaluations: 43
Gradient evaluations: 10
Iteration: 1, Func. Count: 6, Neg. LLF: 126.9471072372092
Iteration: 2, Func. Count: 13, Neg. LLF: 118.93239249801631
Iteration: 3, Func. Count: 20, Neg. LLF: 118.3841341569762
Iteration: 4, Func. Count: 26, Neg. LLF: 118.38404099962742
Iteration: 5, Func. Count: 31, Neg. LLF: 118.38403922228682
Iteration: 6, Func. Count: 35, Neg. LLF: 118.38403922225687
Optimization terminated successfully (Exit mode 0)
Current function value: 118.38403922228682
Iterations: 6
Function evaluations: 35
Gradient evaluations: 6
Iteration: 1, Func. Count: 7, Neg. LLF: 150.98732904336669
Iteration: 2, Func. Count: 15, Neg. LLF: 118.39179740620261
Iteration: 3, Func. Count: 21, Neg. LLF: 118.39198375280368
Iteration: 4, Func. Count: 28, Neg. LLF: 118.39164479588385
Iteration: 5, Func. Count: 34, Neg. LLF: 118.3913950189105
Iteration: 6, Func. Count: 40, Neg. LLF: 118.39216923788216
Iteration: 7, Func. Count: 47, Neg. LLF: 118.39076131253071
Iteration: 8, Func. Count: 54, Neg. LLF: 118.38973186278692
Iteration: 9, Func. Count: 60, Neg. LLF: 118.38965026701153
Iteration: 10, Func. Count: 66, Neg. LLF: 118.38961137603927
Iteration: 11, Func. Count: 72, Neg. LLF: 118.3895204399432
Iteration: 12, Func. Count: 78, Neg. LLF: 118.38936050173835
Iteration: 13, Func. Count: 84, Neg. LLF: 118.38843491077941
Iteration: 14, Func. Count: 90, Neg. LLF: 118.38845126245509
Iteration: 15, Func. Count: 97, Neg. LLF: 118.38751341142753
Iteration: 16, Func. Count: 104, Neg. LLF: 118.3849045611213
Iteration: 17, Func. Count: 110, Neg. LLF: 118.38422436632075
Iteration: 18, Func. Count: 116, Neg. LLF: 118.38403161155458
Iteration: 19, Func. Count: 122, Neg. LLF: 118.38403232668641
Iteration: 20, Func. Count: 128, Neg. LLF: 118.38403006125391
Optimization terminated successfully (Exit mode 0)
Current function value: 118.3840300608891
Iterations: 20
Function evaluations: 128
Gradient evaluations: 20
Iteration: 1, Func. Count: 8, Neg. LLF: 133.99678564746068
Iteration: 2, Func. Count: 17, Neg. LLF: 118.58188919744676
Iteration: 3, Func. Count: 26, Neg. LLF: 118.37752479800082
Iteration: 4, Func. Count: 33, Neg. LLF: 118.34669636857791
Iteration: 5, Func. Count: 40, Neg. LLF: 118.37566547581112
Iteration: 6, Func. Count: 48, Neg. LLF: 118.31896699133019
Iteration: 7, Func. Count: 55, Neg. LLF: 118.31536363685147
Iteration: 8, Func. Count: 62, Neg. LLF: 118.31357357645572
Iteration: 9, Func. Count: 69, Neg. LLF: 118.30902642948676
Iteration: 10, Func. Count: 76, Neg. LLF: 118.30321923950662
Iteration: 11, Func. Count: 83, Neg. LLF: 118.29751788331342
Iteration: 12, Func. Count: 90, Neg. LLF: 118.29507153580684
Iteration: 13, Func. Count: 97, Neg. LLF: 118.29415436890349
Iteration: 14, Func. Count: 104, Neg. LLF: 118.29406656204083
Iteration: 15, Func. Count: 111, Neg. LLF: 118.29406148580182
Iteration: 16, Func. Count: 117, Neg. LLF: 118.29406148576395
Optimization terminated successfully (Exit mode 0)
Current function value: 118.29406148580182
Iterations: 16
Function evaluations: 117
Gradient evaluations: 16
Iteration: 1, Func. Count: 9, Neg. LLF: 131.36399707830964
Iteration: 2, Func. Count: 19, Neg. LLF: 119.3456497138548
Iteration: 3, Func. Count: 29, Neg. LLF: 118.37699742943228
Iteration: 4, Func. Count: 37, Neg. LLF: 118.33827587528027
Iteration: 5, Func. Count: 45, Neg. LLF: 118.37226044287847
Iteration: 6, Func. Count: 54, Neg. LLF: 118.31817449502289
Iteration: 7, Func. Count: 62, Neg. LLF: 118.31535754146648
Iteration: 8, Func. Count: 70, Neg. LLF: 118.31303710520089
Iteration: 9, Func. Count: 78, Neg. LLF: 118.30810357200914
Iteration: 10, Func. Count: 86, Neg. LLF: 118.30043176955336
Iteration: 11, Func. Count: 94, Neg. LLF: 118.2956706723925
Iteration: 12, Func. Count: 102, Neg. LLF: 118.29452041657827
Iteration: 13, Func. Count: 110, Neg. LLF: 118.29411398238335
Iteration: 14, Func. Count: 118, Neg. LLF: 118.29406196147485
Iteration: 15, Func. Count: 126, Neg. LLF: 118.29406143227374
Optimization terminated successfully (Exit mode 0)
Current function value: 118.29406143227374
Iterations: 15
Function evaluations: 126
Gradient evaluations: 15
Iteration: 1, Func. Count: 6, Neg. LLF: 136.37160679165947
Iteration: 2, Func. Count: 13, Neg. LLF: 132.6825197419237
Iteration: 3, Func. Count: 19, Neg. LLF: 118.43577818973466
Iteration: 4, Func. Count: 24, Neg. LLF: 118.44092114618745
Iteration: 5, Func. Count: 30, Neg. LLF: 118.3716845596797
Iteration: 6, Func. Count: 35, Neg. LLF: 118.37061628322576
Iteration: 7, Func. Count: 40, Neg. LLF: 118.37034724614433
Iteration: 8, Func. Count: 45, Neg. LLF: 118.37029112457964
Iteration: 9, Func. Count: 50, Neg. LLF: 118.37028691159149
Iteration: 10, Func. Count: 54, Neg. LLF: 118.37028691157741
Optimization terminated successfully (Exit mode 0)
Current function value: 118.37028691159149
Iterations: 10
Function evaluations: 54
Gradient evaluations: 10
Iteration: 1, Func. Count: 7, Neg. LLF: 124.85809306325046
Iteration: 2, Func. Count: 15, Neg. LLF: 119.88773652439768
Iteration: 3, Func. Count: 22, Neg. LLF: 118.35353024539681
Iteration: 4, Func. Count: 28, Neg. LLF: 118.35481328574551
Iteration: 5, Func. Count: 35, Neg. LLF: 118.35345232174741
Iteration: 6, Func. Count: 42, Neg. LLF: 118.35290874910169
Iteration: 7, Func. Count: 48, Neg. LLF: 118.35249529395783
Iteration: 8, Func. Count: 54, Neg. LLF: 118.35226944155816
Iteration: 9, Func. Count: 60, Neg. LLF: 118.35221913453238
Iteration: 10, Func. Count: 66, Neg. LLF: 118.3522150245958
Iteration: 11, Func. Count: 71, Neg. LLF: 118.35221502468514
Optimization terminated successfully (Exit mode 0)
Current function value: 118.3522150245958
Iterations: 11
Function evaluations: 71
Gradient evaluations: 11
Iteration: 1, Func. Count: 8, Neg. LLF: 121.61776755775178
Iteration: 2, Func. Count: 17, Neg. LLF: 123.01191025946392
Iteration: 3, Func. Count: 25, Neg. LLF: 118.25940364835546
Iteration: 4, Func. Count: 32, Neg. LLF: 118.3253909810653
Iteration: 5, Func. Count: 40, Neg. LLF: 118.30155665205001
Iteration: 6, Func. Count: 48, Neg. LLF: 118.21222110742391
Iteration: 7, Func. Count: 55, Neg. LLF: 118.21180588828642
Iteration: 8, Func. Count: 62, Neg. LLF: 118.21172076063608
Iteration: 9, Func. Count: 69, Neg. LLF: 118.21139476042026
Iteration: 10, Func. Count: 76, Neg. LLF: 118.21127967375105
Iteration: 11, Func. Count: 83, Neg. LLF: 118.21125536893078
Iteration: 12, Func. Count: 90, Neg. LLF: 118.21125463648558
Optimization terminated successfully (Exit mode 0)
Current function value: 118.21125463648558
Iterations: 12
Function evaluations: 90
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 122.35996208605279
Iteration: 2, Func. Count: 19, Neg. LLF: 122.75857006059817
Iteration: 3, Func. Count: 28, Neg. LLF: 118.14756662848805
Iteration: 4, Func. Count: 36, Neg. LLF: 118.1178486465864
Iteration: 5, Func. Count: 44, Neg. LLF: 118.10619732552419
Iteration: 6, Func. Count: 52, Neg. LLF: 118.19721977187992
Iteration: 7, Func. Count: 61, Neg. LLF: 118.08055378098506
Iteration: 8, Func. Count: 69, Neg. LLF: 118.06741480896484
Iteration: 9, Func. Count: 77, Neg. LLF: 118.0640508071697
Iteration: 10, Func. Count: 85, Neg. LLF: 118.06054765748023
Iteration: 11, Func. Count: 93, Neg. LLF: 118.05951539621796
Iteration: 12, Func. Count: 101, Neg. LLF: 118.05936250821007
Iteration: 13, Func. Count: 109, Neg. LLF: 118.05936174396658
Optimization terminated successfully (Exit mode 0)
Current function value: 118.05936174396658
Iterations: 13
Function evaluations: 109
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 127.82948777313521
Iteration: 2, Func. Count: 21, Neg. LLF: 120.44041182329083
Iteration: 3, Func. Count: 31, Neg. LLF: 118.12699210706315
Iteration: 4, Func. Count: 40, Neg. LLF: 118.53081586023303
Iteration: 5, Func. Count: 50, Neg. LLF: 118.30161392918339
Iteration: 6, Func. Count: 60, Neg. LLF: 118.13828284784732
Iteration: 7, Func. Count: 70, Neg. LLF: 118.09425881708044
Iteration: 8, Func. Count: 79, Neg. LLF: 118.06681213501203
Iteration: 9, Func. Count: 88, Neg. LLF: 118.06200940150374
Iteration: 10, Func. Count: 97, Neg. LLF: 118.06024401700512
Iteration: 11, Func. Count: 106, Neg. LLF: 118.0597186112227
Iteration: 12, Func. Count: 115, Neg. LLF: 118.0594173172284
Iteration: 13, Func. Count: 124, Neg. LLF: 118.05936695740786
Iteration: 14, Func. Count: 133, Neg. LLF: 118.05936182963352
Iteration: 15, Func. Count: 141, Neg. LLF: 118.05936186865284
Optimization terminated successfully (Exit mode 0)
Current function value: 118.05936182963352
Iterations: 15
Function evaluations: 141
Gradient evaluations: 15
Iteration: 1, Func. Count: 7, Neg. LLF: 135.62920944372783
Iteration: 2, Func. Count: 15, Neg. LLF: 137.84563131152447
Iteration: 3, Func. Count: 22, Neg. LLF: 118.42253287383244
Iteration: 4, Func. Count: 28, Neg. LLF: 118.42598959103752
Iteration: 5, Func. Count: 35, Neg. LLF: 118.37067735797095
Iteration: 6, Func. Count: 41, Neg. LLF: 118.3703929570954
Iteration: 7, Func. Count: 47, Neg. LLF: 118.37030943552423
Iteration: 8, Func. Count: 53, Neg. LLF: 118.37028782150018
Iteration: 9, Func. Count: 59, Neg. LLF: 118.37028687158279
Optimization terminated successfully (Exit mode 0)
Current function value: 118.37028687158279
Iterations: 9
Function evaluations: 59
Gradient evaluations: 9
Iteration: 1, Func. Count: 8, Neg. LLF: 124.58364951757123
Iteration: 2, Func. Count: 17, Neg. LLF: 120.52650538379874
Iteration: 3, Func. Count: 25, Neg. LLF: 118.35871691093735
Iteration: 4, Func. Count: 32, Neg. LLF: 118.35500632357069
Iteration: 5, Func. Count: 39, Neg. LLF: 118.38672777597141
Iteration: 6, Func. Count: 47, Neg. LLF: 118.35392475658712
Iteration: 7, Func. Count: 55, Neg. LLF: 118.35259735919358
Iteration: 8, Func. Count: 62, Neg. LLF: 118.35233305368936
Iteration: 9, Func. Count: 69, Neg. LLF: 118.3522199375128
Iteration: 10, Func. Count: 76, Neg. LLF: 118.35221502408561
Iteration: 11, Func. Count: 82, Neg. LLF: 118.35221502417684
Optimization terminated successfully (Exit mode 0)
Current function value: 118.35221502408561
Iterations: 11
Function evaluations: 82
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 120.39694133867236
Iteration: 2, Func. Count: 19, Neg. LLF: 123.42840549494503
Iteration: 3, Func. Count: 28, Neg. LLF: 118.27718343713961
Iteration: 4, Func. Count: 37, Neg. LLF: 118.25691459029203
Iteration: 5, Func. Count: 46, Neg. LLF: 118.2154293980019
Iteration: 6, Func. Count: 55, Neg. LLF: 118.2123756915332
Iteration: 7, Func. Count: 63, Neg. LLF: 118.21214015609216
Iteration: 8, Func. Count: 71, Neg. LLF: 118.21136307780179
Iteration: 9, Func. Count: 79, Neg. LLF: 118.21126095856474
Iteration: 10, Func. Count: 87, Neg. LLF: 118.21125485125758
Iteration: 11, Func. Count: 94, Neg. LLF: 118.21125485131593
Optimization terminated successfully (Exit mode 0)
Current function value: 118.21125485125758
Iterations: 11
Function evaluations: 94
Gradient evaluations: 11
Iteration: 1, Func. Count: 10, Neg. LLF: 120.16330960572233
Iteration: 2, Func. Count: 21, Neg. LLF: 123.4935085062996
Iteration: 3, Func. Count: 31, Neg. LLF: 118.24522107247034
Iteration: 4, Func. Count: 40, Neg. LLF: 118.16882618619874
Iteration: 5, Func. Count: 49, Neg. LLF: 118.27482737140485
Iteration: 6, Func. Count: 59, Neg. LLF: 119.17186698053676
Iteration: 7, Func. Count: 69, Neg. LLF: 118.08226591745196
Iteration: 8, Func. Count: 78, Neg. LLF: 118.0719396931436
Iteration: 9, Func. Count: 87, Neg. LLF: 118.06309651633718
Iteration: 10, Func. Count: 96, Neg. LLF: 118.06002223780499
Iteration: 11, Func. Count: 105, Neg. LLF: 118.05940268226091
Iteration: 12, Func. Count: 114, Neg. LLF: 118.05936306465007
Iteration: 13, Func. Count: 123, Neg. LLF: 118.05936174841052
Iteration: 14, Func. Count: 131, Neg. LLF: 118.05936174843579
Optimization terminated successfully (Exit mode 0)
Current function value: 118.05936174841052
Iterations: 14
Function evaluations: 131
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 122.18707455733691
Iteration: 2, Func. Count: 23, Neg. LLF: 121.74709159824504
Iteration: 3, Func. Count: 34, Neg. LLF: 118.12929298010872
Iteration: 4, Func. Count: 44, Neg. LLF: 118.22654111335918
Iteration: 5, Func. Count: 55, Neg. LLF: 118.30211005037766
Iteration: 6, Func. Count: 66, Neg. LLF: 118.13636112995401
Iteration: 7, Func. Count: 77, Neg. LLF: 118.08891696293044
Iteration: 8, Func. Count: 87, Neg. LLF: 118.06809179807104
Iteration: 9, Func. Count: 97, Neg. LLF: 118.06225013963999
Iteration: 10, Func. Count: 107, Neg. LLF: 118.06057160990198
Iteration: 11, Func. Count: 117, Neg. LLF: 118.05960903010312
Iteration: 12, Func. Count: 127, Neg. LLF: 118.05939227591338
Iteration: 13, Func. Count: 137, Neg. LLF: 118.05936182931983
Iteration: 14, Func. Count: 146, Neg. LLF: 118.05936186832108
Optimization terminated successfully (Exit mode 0)
Current function value: 118.05936182931983
Iterations: 14
Function evaluations: 146
Gradient evaluations: 14
Iteration: 1, Func. Count: 8, Neg. LLF: 131.8198104453986
Iteration: 2, Func. Count: 17, Neg. LLF: 153.10850652943134
Iteration: 3, Func. Count: 25, Neg. LLF: 121.02627365689132
Iteration: 4, Func. Count: 33, Neg. LLF: 117.95534200042697
Iteration: 5, Func. Count: 40, Neg. LLF: 117.91343556005627
Iteration: 6, Func. Count: 47, Neg. LLF: 117.89907997437312
Iteration: 7, Func. Count: 54, Neg. LLF: 117.89286851075525
Iteration: 8, Func. Count: 61, Neg. LLF: 117.89139686621678
Iteration: 9, Func. Count: 68, Neg. LLF: 117.89122128854297
Iteration: 10, Func. Count: 75, Neg. LLF: 117.89121844166199
Iteration: 11, Func. Count: 82, Neg. LLF: 117.89121788422698
Optimization terminated successfully (Exit mode 0)
Current function value: 117.89121788422698
Iterations: 11
Function evaluations: 82
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 124.34882975350277
Iteration: 2, Func. Count: 19, Neg. LLF: 123.52332431528575
Iteration: 3, Func. Count: 28, Neg. LLF: 128.8361111427784
Iteration: 4, Func. Count: 38, Neg. LLF: 118.12835081416324
Iteration: 5, Func. Count: 47, Neg. LLF: 118.02422295660311
Iteration: 6, Func. Count: 55, Neg. LLF: 118.01838121257522
Iteration: 7, Func. Count: 63, Neg. LLF: 118.01262936800298
Iteration: 8, Func. Count: 71, Neg. LLF: 117.97833670487314
Iteration: 9, Func. Count: 79, Neg. LLF: 117.93720664121028
Iteration: 10, Func. Count: 87, Neg. LLF: 117.91376009543418
Iteration: 11, Func. Count: 95, Neg. LLF: 117.8980686845625
Iteration: 12, Func. Count: 103, Neg. LLF: 117.89179266526598
Iteration: 13, Func. Count: 111, Neg. LLF: 117.89125375079558
Iteration: 14, Func. Count: 119, Neg. LLF: 117.89122296922257
Iteration: 15, Func. Count: 127, Neg. LLF: 117.8912189864349
Iteration: 16, Func. Count: 135, Neg. LLF: 117.8912179326545
Iteration: 17, Func. Count: 142, Neg. LLF: 117.89121793693333
Optimization terminated successfully (Exit mode 0)
Current function value: 117.8912179326545
Iterations: 17
Function evaluations: 142
Gradient evaluations: 17
Iteration: 1, Func. Count: 10, Neg. LLF: 120.60954751065863
Iteration: 2, Func. Count: 21, Neg. LLF: 122.26983715571168
Iteration: 3, Func. Count: 31, Neg. LLF: 119.3920751757924
Iteration: 4, Func. Count: 41, Neg. LLF: 119.58460746515266
Iteration: 5, Func. Count: 51, Neg. LLF: 118.04396051895117
Iteration: 6, Func. Count: 60, Neg. LLF: 118.06911898935148
Iteration: 7, Func. Count: 70, Neg. LLF: 118.00626806318412
Iteration: 8, Func. Count: 79, Neg. LLF: 117.99990891543275
Iteration: 9, Func. Count: 88, Neg. LLF: 117.99005814260482
Iteration: 10, Func. Count: 97, Neg. LLF: 117.96856682538775
Iteration: 11, Func. Count: 106, Neg. LLF: 117.91114398755927
Iteration: 12, Func. Count: 115, Neg. LLF: 117.90076135380957
Iteration: 13, Func. Count: 124, Neg. LLF: 117.89197731027048
Iteration: 14, Func. Count: 133, Neg. LLF: 117.8913728368498
Iteration: 15, Func. Count: 142, Neg. LLF: 117.89124656283612
Iteration: 16, Func. Count: 151, Neg. LLF: 117.89122108248583
Iteration: 17, Func. Count: 160, Neg. LLF: 117.89121798107422
Iteration: 18, Func. Count: 168, Neg. LLF: 117.89121799668456
Optimization terminated successfully (Exit mode 0)
Current function value: 117.89121798107422
Iterations: 18
Function evaluations: 168
Gradient evaluations: 18
Iteration: 1, Func. Count: 11, Neg. LLF: 120.70556473127976
Iteration: 2, Func. Count: 23, Neg. LLF: 122.36327500209482
Iteration: 3, Func. Count: 34, Neg. LLF: 119.0582693645264
Iteration: 4, Func. Count: 45, Neg. LLF: 122.64298985520175
Iteration: 5, Func. Count: 56, Neg. LLF: 117.47434291254108
Iteration: 6, Func. Count: 66, Neg. LLF: 117.44397302209967
Iteration: 7, Func. Count: 76, Neg. LLF: 117.4250126503636
Iteration: 8, Func. Count: 86, Neg. LLF: 117.40390234495382
Iteration: 9, Func. Count: 96, Neg. LLF: 117.40054338454212
Iteration: 10, Func. Count: 106, Neg. LLF: 117.39501619477437
Iteration: 11, Func. Count: 116, Neg. LLF: 117.3922771001141
Iteration: 12, Func. Count: 126, Neg. LLF: 117.39098806503956
Iteration: 13, Func. Count: 136, Neg. LLF: 117.39089236642879
Iteration: 14, Func. Count: 146, Neg. LLF: 117.39089176878883
Optimization terminated successfully (Exit mode 0)
Current function value: 117.39089176878883
Iterations: 14
Function evaluations: 146
Gradient evaluations: 14
Iteration: 1, Func. Count: 12, Neg. LLF: 122.6184172330178
Iteration: 2, Func. Count: 25, Neg. LLF: 121.75155693847891
Iteration: 3, Func. Count: 37, Neg. LLF: 119.24145838299492
Iteration: 4, Func. Count: 49, Neg. LLF: 132.55685822881222
Iteration: 5, Func. Count: 62, Neg. LLF: 117.49795058442075
Iteration: 6, Func. Count: 73, Neg. LLF: 117.46453853802862
Iteration: 7, Func. Count: 84, Neg. LLF: 117.43451276248926
Iteration: 8, Func. Count: 95, Neg. LLF: 117.41310126267544
Iteration: 9, Func. Count: 106, Neg. LLF: 117.402134439596
Iteration: 10, Func. Count: 117, Neg. LLF: 117.3970359724084
Iteration: 11, Func. Count: 128, Neg. LLF: 117.39334759375056
Iteration: 12, Func. Count: 139, Neg. LLF: 117.39160429190981
Iteration: 13, Func. Count: 150, Neg. LLF: 117.39097389933804
Iteration: 14, Func. Count: 161, Neg. LLF: 117.3908976276037
Iteration: 15, Func. Count: 172, Neg. LLF: 117.39089229578626
Iteration: 16, Func. Count: 182, Neg. LLF: 117.3908923808403
Optimization terminated successfully (Exit mode 0)
Current function value: 117.39089229578626
Iterations: 16
Function evaluations: 182
Gradient evaluations: 16
Iteration: 1, Func. Count: 5, Neg. LLF: 125.66120363102226
Iteration: 2, Func. Count: 10, Neg. LLF: 122.30341208984007
Iteration: 3, Func. Count: 15, Neg. LLF: 118.45422441088161
Iteration: 4, Func. Count: 19, Neg. LLF: 118.57476480962129
Iteration: 5, Func. Count: 24, Neg. LLF: 118.39709299233621
Iteration: 6, Func. Count: 28, Neg. LLF: 118.3968930502507
Iteration: 7, Func. Count: 31, Neg. LLF: 118.3968930962359
Optimization terminated successfully (Exit mode 0)
Current function value: 118.3968930502507
Iterations: 7
Function evaluations: 31
Gradient evaluations: 7
Iteration: 1, Func. Count: 6, Neg. LLF: 158.5864569205544
Iteration: 2, Func. Count: 13, Neg. LLF: 118.40058178473745
Iteration: 3, Func. Count: 18, Neg. LLF: 118.39159301498353
Iteration: 4, Func. Count: 23, Neg. LLF: 118.39157612340728
Iteration: 5, Func. Count: 28, Neg. LLF: 118.39157187697026
Iteration: 6, Func. Count: 33, Neg. LLF: 118.39154434927929
Iteration: 7, Func. Count: 38, Neg. LLF: 118.3913920342794
Iteration: 8, Func. Count: 43, Neg. LLF: 118.3906932954862
Iteration: 9, Func. Count: 48, Neg. LLF: 118.39028617046588
Iteration: 10, Func. Count: 53, Neg. LLF: 118.39040073149711
Iteration: 11, Func. Count: 59, Neg. LLF: 118.39003172828875
Iteration: 12, Func. Count: 64, Neg. LLF: 118.38999442885338
Iteration: 13, Func. Count: 69, Neg. LLF: 118.38999082874294
Iteration: 14, Func. Count: 73, Neg. LLF: 118.38999082865206
Optimization terminated successfully (Exit mode 0)
Current function value: 118.38999082874294
Iterations: 14
Function evaluations: 73
Gradient evaluations: 14
Iteration: 1, Func. Count: 7, Neg. LLF: 150.54627616986943
Iteration: 2, Func. Count: 15, Neg. LLF: 118.39723277130449
Iteration: 3, Func. Count: 21, Neg. LLF: 118.39258598807115
Iteration: 4, Func. Count: 27, Neg. LLF: 118.39185087635246
Iteration: 5, Func. Count: 33, Neg. LLF: 118.39184835641844
Iteration: 6, Func. Count: 39, Neg. LLF: 118.39183177403837
Iteration: 7, Func. Count: 45, Neg. LLF: 118.39178541608375
Iteration: 8, Func. Count: 51, Neg. LLF: 118.39167749954692
Iteration: 9, Func. Count: 57, Neg. LLF: 118.39121011589151
Iteration: 10, Func. Count: 63, Neg. LLF: 118.391040179077
Iteration: 11, Func. Count: 69, Neg. LLF: 118.39089251106863
Iteration: 12, Func. Count: 75, Neg. LLF: 118.39088617157866
Iteration: 13, Func. Count: 81, Neg. LLF: 118.390853738049
Iteration: 14, Func. Count: 87, Neg. LLF: 118.39070082601187
Iteration: 15, Func. Count: 93, Neg. LLF: 118.3901730954613
Iteration: 16, Func. Count: 99, Neg. LLF: 118.38999893563985
Iteration: 17, Func. Count: 105, Neg. LLF: 118.38999294248879
Iteration: 18, Func. Count: 111, Neg. LLF: 118.38999191084064
Iteration: 19, Func. Count: 117, Neg. LLF: 118.3899907767328
Iteration: 20, Func. Count: 122, Neg. LLF: 118.38999077680687
Optimization terminated successfully (Exit mode 0)
Current function value: 118.3899907767328
Iterations: 20
Function evaluations: 122
Gradient evaluations: 20
Iteration: 1, Func. Count: 8, Neg. LLF: 145.72997150025745
Iteration: 2, Func. Count: 17, Neg. LLF: 118.39656091229695
Iteration: 3, Func. Count: 24, Neg. LLF: 118.39266560067314
Iteration: 4, Func. Count: 31, Neg. LLF: 118.39248100690683
Iteration: 5, Func. Count: 38, Neg. LLF: 118.39246831764069
Iteration: 6, Func. Count: 45, Neg. LLF: 118.39240104164648
Iteration: 7, Func. Count: 52, Neg. LLF: 118.39215069045412
Iteration: 8, Func. Count: 59, Neg. LLF: 118.39199851510442
Iteration: 9, Func. Count: 66, Neg. LLF: 118.39198382709733
Iteration: 10, Func. Count: 73, Neg. LLF: 118.39196913005912
Iteration: 11, Func. Count: 80, Neg. LLF: 118.39187879544488
Iteration: 12, Func. Count: 87, Neg. LLF: 118.39176913244295
Iteration: 13, Func. Count: 94, Neg. LLF: 118.39164945579007
Iteration: 14, Func. Count: 101, Neg. LLF: 118.39125495153203
Iteration: 15, Func. Count: 108, Neg. LLF: 118.39125070625444
Iteration: 16, Func. Count: 115, Neg. LLF: 118.39122926202762
Iteration: 17, Func. Count: 122, Neg. LLF: 118.3911240292909
Iteration: 18, Func. Count: 129, Neg. LLF: 118.39066197630568
Iteration: 19, Func. Count: 136, Neg. LLF: 118.39037701170969
Iteration: 20, Func. Count: 143, Neg. LLF: 118.3901673479074
Iteration: 21, Func. Count: 150, Neg. LLF: 118.39005200782118
Iteration: 22, Func. Count: 157, Neg. LLF: 118.38999390977528
Iteration: 23, Func. Count: 164, Neg. LLF: 118.38999077410537
Iteration: 24, Func. Count: 170, Neg. LLF: 118.38999077426655
Optimization terminated successfully (Exit mode 0)
Current function value: 118.38999077410537
Iterations: 24
Function evaluations: 170
Gradient evaluations: 24
Iteration: 1, Func. Count: 9, Neg. LLF: 141.95276513526252
Iteration: 2, Func. Count: 19, Neg. LLF: 118.39918113420988
Iteration: 3, Func. Count: 27, Neg. LLF: 118.39508498274502
Iteration: 4, Func. Count: 35, Neg. LLF: 118.39346741521867
Iteration: 5, Func. Count: 43, Neg. LLF: 118.39343102123722
Iteration: 6, Func. Count: 51, Neg. LLF: 118.39322737568634
Iteration: 7, Func. Count: 59, Neg. LLF: 118.39226990173658
Iteration: 8, Func. Count: 67, Neg. LLF: 118.39225673352469
Iteration: 9, Func. Count: 75, Neg. LLF: 118.39217837965552
Iteration: 10, Func. Count: 83, Neg. LLF: 118.392002456139
Iteration: 11, Func. Count: 91, Neg. LLF: 118.39188217537146
Iteration: 12, Func. Count: 99, Neg. LLF: 118.3918157766146
Iteration: 13, Func. Count: 107, Neg. LLF: 118.39181170582117
Iteration: 14, Func. Count: 115, Neg. LLF: 118.39179318686138
Iteration: 15, Func. Count: 123, Neg. LLF: 118.3917575984179
Iteration: 16, Func. Count: 131, Neg. LLF: 118.3916629395127
Iteration: 17, Func. Count: 139, Neg. LLF: 118.39109774137026
Iteration: 18, Func. Count: 147, Neg. LLF: 118.39102504303384
Iteration: 19, Func. Count: 155, Neg. LLF: 118.3909290935183
Iteration: 20, Func. Count: 163, Neg. LLF: 118.39092307852071
Iteration: 21, Func. Count: 171, Neg. LLF: 118.39087990674213
Iteration: 22, Func. Count: 179, Neg. LLF: 118.39066794630844
Iteration: 23, Func. Count: 187, Neg. LLF: 118.39044108992952
Iteration: 24, Func. Count: 195, Neg. LLF: 118.39010872345239
Iteration: 25, Func. Count: 203, Neg. LLF: 118.39002190999872
Iteration: 26, Func. Count: 211, Neg. LLF: 118.3899922195278
Iteration: 27, Func. Count: 219, Neg. LLF: 118.3899907925073
Iteration: 28, Func. Count: 226, Neg. LLF: 118.38999079273093
Optimization terminated successfully (Exit mode 0)
Current function value: 118.3899907925073
Iterations: 28
Function evaluations: 226
Gradient evaluations: 28
Iteration: 1, Func. Count: 6, Neg. LLF: 125.83565962384087
Iteration: 2, Func. Count: 12, Neg. LLF: 123.16769150831453
Iteration: 3, Func. Count: 18, Neg. LLF: 118.44628163874935
Iteration: 4, Func. Count: 23, Neg. LLF: 119.52348044182048
Iteration: 5, Func. Count: 29, Neg. LLF: 118.39806021450636
Iteration: 6, Func. Count: 34, Neg. LLF: 118.39714798083925
Iteration: 7, Func. Count: 39, Neg. LLF: 118.39684011714851
Iteration: 8, Func. Count: 44, Neg. LLF: 118.39679719093195
Iteration: 9, Func. Count: 49, Neg. LLF: 118.39679595283879
Iteration: 10, Func. Count: 53, Neg. LLF: 118.39679595284677
Optimization terminated successfully (Exit mode 0)
Current function value: 118.39679595283879
Iterations: 10
Function evaluations: 53
Gradient evaluations: 10
Iteration: 1, Func. Count: 7, Neg. LLF: 158.6081618675164
Iteration: 2, Func. Count: 15, Neg. LLF: 118.40302478807017
Iteration: 3, Func. Count: 21, Neg. LLF: 118.3927778336957
Iteration: 4, Func. Count: 27, Neg. LLF: 118.79686931982188
Iteration: 5, Func. Count: 35, Neg. LLF: 118.39003546801604
Iteration: 6, Func. Count: 41, Neg. LLF: 118.39001592814638
Iteration: 7, Func. Count: 47, Neg. LLF: 118.38988159472022
Iteration: 8, Func. Count: 53, Neg. LLF: 118.38904941450843
Iteration: 9, Func. Count: 59, Neg. LLF: 118.39677884648071
Iteration: 10, Func. Count: 66, Neg. LLF: 118.7544627516173
Iteration: 11, Func. Count: 73, Neg. LLF: 118.4122127077715
Iteration: 12, Func. Count: 80, Neg. LLF: 118.38842310861428
Iteration: 13, Func. Count: 87, Neg. LLF: 118.38507642975456
Iteration: 14, Func. Count: 93, Neg. LLF: 118.38427455306004
Iteration: 15, Func. Count: 99, Neg. LLF: 118.38405133579593
Iteration: 16, Func. Count: 105, Neg. LLF: 118.3840323656484
Iteration: 17, Func. Count: 111, Neg. LLF: 118.38402962053904
Iteration: 18, Func. Count: 116, Neg. LLF: 118.38402962054253
Optimization terminated successfully (Exit mode 0)
Current function value: 118.38402962053904
Iterations: 18
Function evaluations: 116
Gradient evaluations: 18
Iteration: 1, Func. Count: 8, Neg. LLF: 150.69766701212131
Iteration: 2, Func. Count: 17, Neg. LLF: 118.39643428674644
Iteration: 3, Func. Count: 24, Neg. LLF: 118.39379633956301
Iteration: 4, Func. Count: 31, Neg. LLF: 118.39182153327027
Iteration: 5, Func. Count: 38, Neg. LLF: 118.3918190920579
Iteration: 6, Func. Count: 45, Neg. LLF: 118.39181279963273
Iteration: 7, Func. Count: 52, Neg. LLF: 118.39179341667734
Iteration: 8, Func. Count: 59, Neg. LLF: 118.39819943752711
Iteration: 9, Func. Count: 67, Neg. LLF: 118.39725859028069
Iteration: 10, Func. Count: 75, Neg. LLF: 118.39169249627642
Iteration: 11, Func. Count: 82, Neg. LLF: 118.39160588936495
Iteration: 12, Func. Count: 89, Neg. LLF: 118.39131321328995
Iteration: 13, Func. Count: 96, Neg. LLF: 118.3898366558662
Iteration: 14, Func. Count: 103, Neg. LLF: 118.3883832836227
Iteration: 15, Func. Count: 110, Neg. LLF: 118.38624177909475
Iteration: 16, Func. Count: 117, Neg. LLF: 118.38442218712396
Iteration: 17, Func. Count: 124, Neg. LLF: 118.38414298705422
Iteration: 18, Func. Count: 131, Neg. LLF: 118.38412542965591
Iteration: 19, Func. Count: 138, Neg. LLF: 118.38405686244336
Iteration: 20, Func. Count: 145, Neg. LLF: 118.38402963075795
Iteration: 21, Func. Count: 151, Neg. LLF: 118.38402963113882
Optimization terminated successfully (Exit mode 0)
Current function value: 118.38402963075795
Iterations: 21
Function evaluations: 151
Gradient evaluations: 21
Iteration: 1, Func. Count: 9, Neg. LLF: 142.57634583119707
Iteration: 2, Func. Count: 19, Neg. LLF: 118.395345623007
Iteration: 3, Func. Count: 27, Neg. LLF: 118.39259482001508
Iteration: 4, Func. Count: 35, Neg. LLF: 118.39186483167082
Iteration: 5, Func. Count: 44, Neg. LLF: 118.32417206777487
Iteration: 6, Func. Count: 52, Neg. LLF: 118.31996341802466
Iteration: 7, Func. Count: 60, Neg. LLF: 118.31710688417321
Iteration: 8, Func. Count: 68, Neg. LLF: 118.31346101814236
Iteration: 9, Func. Count: 76, Neg. LLF: 118.30729592039643
Iteration: 10, Func. Count: 84, Neg. LLF: 118.30416343394693
Iteration: 11, Func. Count: 92, Neg. LLF: 118.29853736196537
Iteration: 12, Func. Count: 100, Neg. LLF: 118.29563674257615
Iteration: 13, Func. Count: 108, Neg. LLF: 118.29428185320431
Iteration: 14, Func. Count: 116, Neg. LLF: 118.29407368582763
Iteration: 15, Func. Count: 124, Neg. LLF: 118.2940614967276
Iteration: 16, Func. Count: 131, Neg. LLF: 118.29406149678246
Optimization terminated successfully (Exit mode 0)
Current function value: 118.2940614967276
Iterations: 16
Function evaluations: 131
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 136.4856038936228
Iteration: 2, Func. Count: 21, Neg. LLF: 118.41019322246802
Iteration: 3, Func. Count: 30, Neg. LLF: 118.38526342269991
Iteration: 4, Func. Count: 39, Neg. LLF: 118.58510705737903
Iteration: 5, Func. Count: 49, Neg. LLF: 118.34386527288588
Iteration: 6, Func. Count: 58, Neg. LLF: 118.33058205008189
Iteration: 7, Func. Count: 67, Neg. LLF: 118.31587013952964
Iteration: 8, Func. Count: 76, Neg. LLF: 118.31442282369017
Iteration: 9, Func. Count: 85, Neg. LLF: 118.30628753205671
Iteration: 10, Func. Count: 94, Neg. LLF: 118.29675128378149
Iteration: 11, Func. Count: 103, Neg. LLF: 118.29442131714094
Iteration: 12, Func. Count: 112, Neg. LLF: 118.2940772230894
Iteration: 13, Func. Count: 121, Neg. LLF: 118.2940648352545
Iteration: 14, Func. Count: 130, Neg. LLF: 118.29406190062598
Iteration: 15, Func. Count: 138, Neg. LLF: 118.29406190235113
Optimization terminated successfully (Exit mode 0)
Current function value: 118.29406190062598
Iterations: 15
Function evaluations: 138
Gradient evaluations: 15
Iteration: 1, Func. Count: 7, Neg. LLF: 122.64680257343493
Iteration: 2, Func. Count: 14, Neg. LLF: 120.82294968796202
Iteration: 3, Func. Count: 21, Neg. LLF: 118.52372546049814
Iteration: 4, Func. Count: 27, Neg. LLF: 118.68633974121731
Iteration: 5, Func. Count: 34, Neg. LLF: 118.74629672921547
Iteration: 6, Func. Count: 41, Neg. LLF: 118.45430010719959
Iteration: 7, Func. Count: 48, Neg. LLF: 118.37084101172945
Iteration: 8, Func. Count: 54, Neg. LLF: 118.37035026440229
Iteration: 9, Func. Count: 60, Neg. LLF: 118.37029715651627
Iteration: 10, Func. Count: 66, Neg. LLF: 118.37028698515776
Iteration: 11, Func. Count: 71, Neg. LLF: 118.37028698514489
Optimization terminated successfully (Exit mode 0)
Current function value: 118.37028698515776
Iterations: 11
Function evaluations: 71
Gradient evaluations: 11
Iteration: 1, Func. Count: 8, Neg. LLF: 128.397578012442
Iteration: 2, Func. Count: 17, Neg. LLF: 118.8138903896017
Iteration: 3, Func. Count: 25, Neg. LLF: 118.37527774132862
Iteration: 4, Func. Count: 32, Neg. LLF: 118.39134155256028
Iteration: 5, Func. Count: 40, Neg. LLF: 118.3734021173436
Iteration: 6, Func. Count: 47, Neg. LLF: 118.37237243848799
Iteration: 7, Func. Count: 54, Neg. LLF: 118.36657396547112
Iteration: 8, Func. Count: 61, Neg. LLF: 118.40747638189637
Iteration: 9, Func. Count: 69, Neg. LLF: 119.42110079082138
Iteration: 10, Func. Count: 77, Neg. LLF: 118.3534047961554
Iteration: 11, Func. Count: 84, Neg. LLF: 118.35234039972218
Iteration: 12, Func. Count: 91, Neg. LLF: 118.35225331871328
Iteration: 13, Func. Count: 98, Neg. LLF: 118.35221570873414
Iteration: 14, Func. Count: 105, Neg. LLF: 118.35221493256373
Optimization terminated successfully (Exit mode 0)
Current function value: 118.35221493256373
Iterations: 14
Function evaluations: 105
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 121.83573624865619
Iteration: 2, Func. Count: 19, Neg. LLF: 122.73872014978366
Iteration: 3, Func. Count: 28, Neg. LLF: 118.24194321869352
Iteration: 4, Func. Count: 36, Neg. LLF: 118.36763039296574
Iteration: 5, Func. Count: 45, Neg. LLF: 118.27194219164677
Iteration: 6, Func. Count: 54, Neg. LLF: 118.21181117394542
Iteration: 7, Func. Count: 62, Neg. LLF: 118.21161907346651
Iteration: 8, Func. Count: 70, Neg. LLF: 118.2115641981105
Iteration: 9, Func. Count: 78, Neg. LLF: 118.21136613087178
Iteration: 10, Func. Count: 86, Neg. LLF: 118.21125999911119
Iteration: 11, Func. Count: 94, Neg. LLF: 118.21125576443318
Iteration: 12, Func. Count: 102, Neg. LLF: 118.2112547067934
Iteration: 13, Func. Count: 109, Neg. LLF: 118.21125470676483
Optimization terminated successfully (Exit mode 0)
Current function value: 118.2112547067934
Iterations: 13
Function evaluations: 109
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 122.33401066399382
Iteration: 2, Func. Count: 21, Neg. LLF: 122.56384596029943
Iteration: 3, Func. Count: 31, Neg. LLF: 118.13659922330955
Iteration: 4, Func. Count: 40, Neg. LLF: 118.12361752178774
Iteration: 5, Func. Count: 49, Neg. LLF: 118.10449114265165
Iteration: 6, Func. Count: 58, Neg. LLF: 118.20725011409677
Iteration: 7, Func. Count: 68, Neg. LLF: 118.07582051649975
Iteration: 8, Func. Count: 77, Neg. LLF: 118.06724959750176
Iteration: 9, Func. Count: 86, Neg. LLF: 118.0601468713733
Iteration: 10, Func. Count: 95, Neg. LLF: 118.0594524037281
Iteration: 11, Func. Count: 104, Neg. LLF: 118.0593693942875
Iteration: 12, Func. Count: 113, Neg. LLF: 118.0593623698531
Iteration: 13, Func. Count: 121, Neg. LLF: 118.05936236989785
Optimization terminated successfully (Exit mode 0)
Current function value: 118.0593623698531
Iterations: 13
Function evaluations: 121
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 127.345346958922
Iteration: 2, Func. Count: 23, Neg. LLF: 120.9126595101437
Iteration: 3, Func. Count: 34, Neg. LLF: 118.13229605106574
Iteration: 4, Func. Count: 44, Neg. LLF: 118.24912173279697
Iteration: 5, Func. Count: 55, Neg. LLF: 118.19119626936626
Iteration: 6, Func. Count: 66, Neg. LLF: 118.24679460472709
Iteration: 7, Func. Count: 77, Neg. LLF: 118.09323037117426
Iteration: 8, Func. Count: 87, Neg. LLF: 118.06500754000999
Iteration: 9, Func. Count: 97, Neg. LLF: 118.06235736865084
Iteration: 10, Func. Count: 107, Neg. LLF: 118.06065262489678
Iteration: 11, Func. Count: 117, Neg. LLF: 118.05960351440511
Iteration: 12, Func. Count: 127, Neg. LLF: 118.05940858690535
Iteration: 13, Func. Count: 137, Neg. LLF: 118.0593652945679
Iteration: 14, Func. Count: 147, Neg. LLF: 118.05936182303364
Iteration: 15, Func. Count: 156, Neg. LLF: 118.05936186207799
Optimization terminated successfully (Exit mode 0)
Current function value: 118.05936182303364
Iterations: 15
Function evaluations: 156
Gradient evaluations: 15
Iteration: 1, Func. Count: 8, Neg. LLF: 121.91124584513378
Iteration: 2, Func. Count: 16, Neg. LLF: 123.15608340412889
Iteration: 3, Func. Count: 24, Neg. LLF: 118.96038683074102
Iteration: 4, Func. Count: 31, Neg. LLF: 118.42804935178182
Iteration: 5, Func. Count: 38, Neg. LLF: 118.4016111290434
Iteration: 6, Func. Count: 45, Neg. LLF: 118.37227099253941
Iteration: 7, Func. Count: 52, Neg. LLF: 118.3712493948285
Iteration: 8, Func. Count: 59, Neg. LLF: 118.3703024918766
Iteration: 9, Func. Count: 66, Neg. LLF: 118.37029009920677
Iteration: 10, Func. Count: 73, Neg. LLF: 118.3702868548516
Iteration: 11, Func. Count: 79, Neg. LLF: 118.37028689485152
Optimization terminated successfully (Exit mode 0)
Current function value: 118.3702868548516
Iterations: 11
Function evaluations: 79
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 127.89068102399857
Iteration: 2, Func. Count: 19, Neg. LLF: 118.91324581390998
Iteration: 3, Func. Count: 28, Neg. LLF: 118.37716903610796
Iteration: 4, Func. Count: 36, Neg. LLF: 118.37797611579599
Iteration: 5, Func. Count: 45, Neg. LLF: 118.37356112113905
Iteration: 6, Func. Count: 53, Neg. LLF: 118.372607414694
Iteration: 7, Func. Count: 61, Neg. LLF: 118.36851473763987
Iteration: 8, Func. Count: 69, Neg. LLF: 118.36136395813682
Iteration: 9, Func. Count: 77, Neg. LLF: 118.3564394163851
Iteration: 10, Func. Count: 85, Neg. LLF: 118.37221037949918
Iteration: 11, Func. Count: 94, Neg. LLF: 118.36406439343709
Iteration: 12, Func. Count: 103, Neg. LLF: 118.35272169187377
Iteration: 13, Func. Count: 112, Neg. LLF: 118.35223419933355
Iteration: 14, Func. Count: 120, Neg. LLF: 118.35221490795499
Iteration: 15, Func. Count: 127, Neg. LLF: 118.3522149079452
Optimization terminated successfully (Exit mode 0)
Current function value: 118.35221490795499
Iterations: 15
Function evaluations: 127
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 120.51237531458807
Iteration: 2, Func. Count: 21, Neg. LLF: 123.13595399956921
Iteration: 3, Func. Count: 31, Neg. LLF: 118.2571882666561
Iteration: 4, Func. Count: 40, Neg. LLF: 118.36946857586491
Iteration: 5, Func. Count: 50, Neg. LLF: 118.28230596233955
Iteration: 6, Func. Count: 60, Neg. LLF: 118.21231198066458
Iteration: 7, Func. Count: 69, Neg. LLF: 118.21195591006779
Iteration: 8, Func. Count: 78, Neg. LLF: 118.21183446546752
Iteration: 9, Func. Count: 87, Neg. LLF: 118.21143495041183
Iteration: 10, Func. Count: 96, Neg. LLF: 118.21125748153496
Iteration: 11, Func. Count: 105, Neg. LLF: 118.21125468186479
Iteration: 12, Func. Count: 113, Neg. LLF: 118.2112546818723
Optimization terminated successfully (Exit mode 0)
Current function value: 118.21125468186479
Iterations: 12
Function evaluations: 113
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 119.9401385192866
Iteration: 2, Func. Count: 23, Neg. LLF: 123.28690221702135
Iteration: 3, Func. Count: 34, Neg. LLF: 118.28399818093021
Iteration: 4, Func. Count: 44, Neg. LLF: 118.20284280832367
Iteration: 5, Func. Count: 54, Neg. LLF: 118.38130408074923
Iteration: 6, Func. Count: 65, Neg. LLF: 119.08752356753332
Iteration: 7, Func. Count: 76, Neg. LLF: 118.08648109064184
Iteration: 8, Func. Count: 86, Neg. LLF: 118.07596638219354
Iteration: 9, Func. Count: 96, Neg. LLF: 118.06737482758597
Iteration: 10, Func. Count: 106, Neg. LLF: 118.05962382438081
Iteration: 11, Func. Count: 116, Neg. LLF: 118.05937763605341
Iteration: 12, Func. Count: 126, Neg. LLF: 118.05936334211479
Iteration: 13, Func. Count: 136, Neg. LLF: 118.05936177020816
Iteration: 14, Func. Count: 145, Neg. LLF: 118.05936177019984
Optimization terminated successfully (Exit mode 0)
Current function value: 118.05936177020816
Iterations: 14
Function evaluations: 145
Gradient evaluations: 14
Iteration: 1, Func. Count: 12, Neg. LLF: 123.07031505374206
Iteration: 2, Func. Count: 25, Neg. LLF: 122.19218923384892
Iteration: 3, Func. Count: 37, Neg. LLF: 118.21994929728953
Iteration: 4, Func. Count: 48, Neg. LLF: 118.19356002204441
Iteration: 5, Func. Count: 59, Neg. LLF: 118.47064087741336
Iteration: 6, Func. Count: 71, Neg. LLF: 118.19804973612148
Iteration: 7, Func. Count: 83, Neg. LLF: 118.10885598987576
Iteration: 8, Func. Count: 94, Neg. LLF: 118.10112368363846
Iteration: 9, Func. Count: 105, Neg. LLF: 118.07993069612131
Iteration: 10, Func. Count: 116, Neg. LLF: 118.0725149609743
Iteration: 11, Func. Count: 127, Neg. LLF: 118.06045715786217
Iteration: 12, Func. Count: 138, Neg. LLF: 118.05955733610062
Iteration: 13, Func. Count: 149, Neg. LLF: 118.05944718658414
Iteration: 14, Func. Count: 160, Neg. LLF: 118.0593710895976
Iteration: 15, Func. Count: 171, Neg. LLF: 118.05936309567971
Iteration: 16, Func. Count: 182, Neg. LLF: 118.05936178706192
Iteration: 17, Func. Count: 192, Neg. LLF: 118.05936182608323
Optimization terminated successfully (Exit mode 0)
Current function value: 118.05936178706192
Iterations: 17
Function evaluations: 192
Gradient evaluations: 17
Iteration: 1, Func. Count: 9, Neg. LLF: 120.70971905321859
Iteration: 2, Func. Count: 18, Neg. LLF: 119.04594970498299
Iteration: 3, Func. Count: 26, Neg. LLF: 118.4010448649381
Iteration: 4, Func. Count: 34, Neg. LLF: 120.61820656059913
Iteration: 5, Func. Count: 43, Neg. LLF: 118.14779402643263
Iteration: 6, Func. Count: 51, Neg. LLF: 118.56523075942994
Iteration: 7, Func. Count: 60, Neg. LLF: 117.93943563490372
Iteration: 8, Func. Count: 68, Neg. LLF: 117.89557977292532
Iteration: 9, Func. Count: 76, Neg. LLF: 117.89161876570415
Iteration: 10, Func. Count: 84, Neg. LLF: 117.89133583895646
Iteration: 11, Func. Count: 92, Neg. LLF: 117.89121817749594
Iteration: 12, Func. Count: 99, Neg. LLF: 117.89121817749432
Optimization terminated successfully (Exit mode 0)
Current function value: 117.89121817749594
Iterations: 12
Function evaluations: 99
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 124.23213894090257
Iteration: 2, Func. Count: 21, Neg. LLF: 122.89047770735462
Iteration: 3, Func. Count: 31, Neg. LLF: 125.56088640907628
Iteration: 4, Func. Count: 42, Neg. LLF: 118.1277536020978
Iteration: 5, Func. Count: 51, Neg. LLF: 118.02418198060141
Iteration: 6, Func. Count: 60, Neg. LLF: 118.01667945066882
Iteration: 7, Func. Count: 69, Neg. LLF: 118.00915001826026
Iteration: 8, Func. Count: 78, Neg. LLF: 117.99546717588743
Iteration: 9, Func. Count: 87, Neg. LLF: 117.93859756190723
Iteration: 10, Func. Count: 96, Neg. LLF: 117.91587854552016
Iteration: 11, Func. Count: 105, Neg. LLF: 117.8961008370846
Iteration: 12, Func. Count: 114, Neg. LLF: 117.89184121097601
Iteration: 13, Func. Count: 123, Neg. LLF: 117.89128123164231
Iteration: 14, Func. Count: 132, Neg. LLF: 117.89122842341162
Iteration: 15, Func. Count: 141, Neg. LLF: 117.89121884939196
Iteration: 16, Func. Count: 150, Neg. LLF: 117.89121797290174
Optimization terminated successfully (Exit mode 0)
Current function value: 117.89121797290174
Iterations: 16
Function evaluations: 150
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 120.60542011382843
Iteration: 2, Func. Count: 23, Neg. LLF: 122.06043152700136
Iteration: 3, Func. Count: 34, Neg. LLF: 119.18825938778976
Iteration: 4, Func. Count: 45, Neg. LLF: 119.70996478617839
Iteration: 5, Func. Count: 56, Neg. LLF: 118.04301053236678
Iteration: 6, Func. Count: 66, Neg. LLF: 118.12502887659987
Iteration: 7, Func. Count: 77, Neg. LLF: 118.00446964577807
Iteration: 8, Func. Count: 87, Neg. LLF: 117.99850445339541
Iteration: 9, Func. Count: 97, Neg. LLF: 117.9881848673059
Iteration: 10, Func. Count: 107, Neg. LLF: 117.96510845851378
Iteration: 11, Func. Count: 117, Neg. LLF: 117.91183292239732
Iteration: 12, Func. Count: 127, Neg. LLF: 117.90194439132352
Iteration: 13, Func. Count: 137, Neg. LLF: 117.89224397775413
Iteration: 14, Func. Count: 147, Neg. LLF: 117.8914019128431
Iteration: 15, Func. Count: 157, Neg. LLF: 117.89124914436586
Iteration: 16, Func. Count: 167, Neg. LLF: 117.89122129623587
Iteration: 17, Func. Count: 177, Neg. LLF: 117.89121796570286
Iteration: 18, Func. Count: 186, Neg. LLF: 117.8912179813105
Optimization terminated successfully (Exit mode 0)
Current function value: 117.89121796570286
Iterations: 18
Function evaluations: 186
Gradient evaluations: 18
Iteration: 1, Func. Count: 12, Neg. LLF: 120.58760123831846
Iteration: 2, Func. Count: 25, Neg. LLF: 122.21968765430837
Iteration: 3, Func. Count: 37, Neg. LLF: 119.12313473359016
Iteration: 4, Func. Count: 49, Neg. LLF: 122.6132624713603
Iteration: 5, Func. Count: 61, Neg. LLF: 117.47532865977978
Iteration: 6, Func. Count: 72, Neg. LLF: 117.44884765682124
Iteration: 7, Func. Count: 83, Neg. LLF: 117.4320695243245
Iteration: 8, Func. Count: 94, Neg. LLF: 117.41007352202206
Iteration: 9, Func. Count: 105, Neg. LLF: 117.40588808321894
Iteration: 10, Func. Count: 116, Neg. LLF: 117.39667319094242
Iteration: 11, Func. Count: 127, Neg. LLF: 117.39238902501876
Iteration: 12, Func. Count: 138, Neg. LLF: 117.39097028170936
Iteration: 13, Func. Count: 149, Neg. LLF: 117.39089250585955
Iteration: 14, Func. Count: 160, Neg. LLF: 117.39089178281903
Optimization terminated successfully (Exit mode 0)
Current function value: 117.39089178281903
Iterations: 14
Function evaluations: 160
Gradient evaluations: 14
Iteration: 1, Func. Count: 13, Neg. LLF: 122.33521073757859
Iteration: 2, Func. Count: 27, Neg. LLF: 121.57014043000594
Iteration: 3, Func. Count: 40, Neg. LLF: 119.43263601543526
Iteration: 4, Func. Count: 53, Neg. LLF: 128.07800199144182
Iteration: 5, Func. Count: 66, Neg. LLF: 117.50406311192408
Iteration: 6, Func. Count: 78, Neg. LLF: 117.46691124382286
Iteration: 7, Func. Count: 90, Neg. LLF: 117.44572182901393
Iteration: 8, Func. Count: 102, Neg. LLF: 117.41386130079803
Iteration: 9, Func. Count: 114, Neg. LLF: 117.40562726340869
Iteration: 10, Func. Count: 126, Neg. LLF: 117.39856872284167
Iteration: 11, Func. Count: 138, Neg. LLF: 117.39437922193372
Iteration: 12, Func. Count: 150, Neg. LLF: 117.39141387705278
Iteration: 13, Func. Count: 162, Neg. LLF: 117.39091842622136
Iteration: 14, Func. Count: 174, Neg. LLF: 117.39089223015905
Iteration: 15, Func. Count: 185, Neg. LLF: 117.39089231518231
Optimization terminated successfully (Exit mode 0)
Current function value: 117.39089223015905
Iterations: 15
Function evaluations: 185
Gradient evaluations: 15
Iteration: 1, Func. Count: 6, Neg. LLF: 128.32119433297237
Iteration: 2, Func. Count: 12, Neg. LLF: 131.74327185276616
Iteration: 3, Func. Count: 18, Neg. LLF: 118.48783778425542
Iteration: 4, Func. Count: 23, Neg. LLF: 118.42651464941089
Iteration: 5, Func. Count: 28, Neg. LLF: 118.39770924276661
Iteration: 6, Func. Count: 33, Neg. LLF: 118.39690008355088
Iteration: 7, Func. Count: 38, Neg. LLF: 118.39689294063655
Iteration: 8, Func. Count: 42, Neg. LLF: 118.39689302858005
Optimization terminated successfully (Exit mode 0)
Current function value: 118.39689294063655
Iterations: 8
Function evaluations: 42
Gradient evaluations: 8
Iteration: 1, Func. Count: 7, Neg. LLF: 158.5805138995825
Iteration: 2, Func. Count: 15, Neg. LLF: 118.40001574359238
Iteration: 3, Func. Count: 21, Neg. LLF: 118.39157483732885
Iteration: 4, Func. Count: 27, Neg. LLF: 118.3915691913602
Iteration: 5, Func. Count: 33, Neg. LLF: 118.39156166746957
Iteration: 6, Func. Count: 39, Neg. LLF: 118.39153485309312
Iteration: 7, Func. Count: 45, Neg. LLF: 118.39147314109758
Iteration: 8, Func. Count: 51, Neg. LLF: 118.39131292865744
Iteration: 9, Func. Count: 57, Neg. LLF: 118.39097327247607
Iteration: 10, Func. Count: 63, Neg. LLF: 118.39049323736091
Iteration: 11, Func. Count: 69, Neg. LLF: 118.39017101030228
Iteration: 12, Func. Count: 75, Neg. LLF: 118.39010323718902
Iteration: 13, Func. Count: 81, Neg. LLF: 118.39002444358853
Iteration: 14, Func. Count: 87, Neg. LLF: 118.38999253550737
Iteration: 15, Func. Count: 93, Neg. LLF: 118.38999078369226
Iteration: 16, Func. Count: 98, Neg. LLF: 118.38999078368728
Optimization terminated successfully (Exit mode 0)
Current function value: 118.38999078369226
Iterations: 16
Function evaluations: 98
Gradient evaluations: 16
Iteration: 1, Func. Count: 8, Neg. LLF: 150.923619935056
Iteration: 2, Func. Count: 17, Neg. LLF: 118.39885623879502
Iteration: 3, Func. Count: 24, Neg. LLF: 118.39180785119937
Iteration: 4, Func. Count: 31, Neg. LLF: 118.39180546003404
Iteration: 5, Func. Count: 38, Neg. LLF: 118.39180126754623
Iteration: 6, Func. Count: 45, Neg. LLF: 118.39178838136581
Iteration: 7, Func. Count: 52, Neg. LLF: 118.39175611684148
Iteration: 8, Func. Count: 59, Neg. LLF: 118.39166936909898
Iteration: 9, Func. Count: 66, Neg. LLF: 118.39140686080532
Iteration: 10, Func. Count: 73, Neg. LLF: 118.39084055938191
Iteration: 11, Func. Count: 80, Neg. LLF: 118.39051371244598
Iteration: 12, Func. Count: 87, Neg. LLF: 118.390114491572
Iteration: 13, Func. Count: 94, Neg. LLF: 118.39010212941872
Iteration: 14, Func. Count: 102, Neg. LLF: 118.39003376123767
Iteration: 15, Func. Count: 109, Neg. LLF: 118.39003164665748
Iteration: 16, Func. Count: 116, Neg. LLF: 118.3900217980721
Iteration: 17, Func. Count: 123, Neg. LLF: 118.38999446188181
Iteration: 18, Func. Count: 130, Neg. LLF: 118.38999077748088
Iteration: 19, Func. Count: 136, Neg. LLF: 118.38999077755261
Optimization terminated successfully (Exit mode 0)
Current function value: 118.38999077748088
Iterations: 19
Function evaluations: 136
Gradient evaluations: 19
Iteration: 1, Func. Count: 9, Neg. LLF: 145.82726224044572
Iteration: 2, Func. Count: 19, Neg. LLF: 118.40057252673355
Iteration: 3, Func. Count: 27, Neg. LLF: 118.39255308316447
Iteration: 4, Func. Count: 35, Neg. LLF: 118.39253596010325
Iteration: 5, Func. Count: 43, Neg. LLF: 118.39247140818465
Iteration: 6, Func. Count: 51, Neg. LLF: 118.39234311043589
Iteration: 7, Func. Count: 59, Neg. LLF: 118.3920844608286
Iteration: 8, Func. Count: 67, Neg. LLF: 118.39190509899977
Iteration: 9, Func. Count: 75, Neg. LLF: 118.39180543243309
Iteration: 10, Func. Count: 83, Neg. LLF: 118.39180328485719
Iteration: 11, Func. Count: 91, Neg. LLF: 118.39179032316375
Iteration: 12, Func. Count: 99, Neg. LLF: 118.39172794749193
Iteration: 13, Func. Count: 107, Neg. LLF: 118.39144835313188
Iteration: 14, Func. Count: 115, Neg. LLF: 118.390641146384
Iteration: 15, Func. Count: 123, Neg. LLF: 118.39063482496493
Iteration: 16, Func. Count: 131, Neg. LLF: 118.39059876553752
Iteration: 17, Func. Count: 139, Neg. LLF: 118.39050032746833
Iteration: 18, Func. Count: 147, Neg. LLF: 118.39035320010142
Iteration: 19, Func. Count: 155, Neg. LLF: 118.39011328461089
Iteration: 20, Func. Count: 163, Neg. LLF: 118.38999838580233
Iteration: 21, Func. Count: 171, Neg. LLF: 118.38999109786958
Iteration: 22, Func. Count: 178, Neg. LLF: 118.38999109821373
Optimization terminated successfully (Exit mode 0)
Current function value: 118.38999109786958
Iterations: 22
Function evaluations: 178
Gradient evaluations: 22
Iteration: 1, Func. Count: 10, Neg. LLF: 142.5357992117167
Iteration: 2, Func. Count: 21, Neg. LLF: 118.40169802997683
Iteration: 3, Func. Count: 30, Neg. LLF: 118.39327159695853
Iteration: 4, Func. Count: 39, Neg. LLF: 118.39323270130396
Iteration: 5, Func. Count: 48, Neg. LLF: 118.39298724826382
Iteration: 6, Func. Count: 57, Neg. LLF: 118.39228352674445
Iteration: 7, Func. Count: 66, Neg. LLF: 118.39226985424276
Iteration: 8, Func. Count: 75, Neg. LLF: 118.39218967696573
Iteration: 9, Func. Count: 84, Neg. LLF: 118.39181696784702
Iteration: 10, Func. Count: 93, Neg. LLF: 118.39180256885993
Iteration: 11, Func. Count: 102, Neg. LLF: 118.39179587600326
Iteration: 12, Func. Count: 111, Neg. LLF: 118.39179305619933
Iteration: 13, Func. Count: 120, Neg. LLF: 118.39177466207565
Iteration: 14, Func. Count: 129, Neg. LLF: 118.39169877537765
Iteration: 15, Func. Count: 138, Neg. LLF: 118.39155327876435
Iteration: 16, Func. Count: 147, Neg. LLF: 118.3908150530381
Iteration: 17, Func. Count: 156, Neg. LLF: 118.39063381869632
Iteration: 18, Func. Count: 165, Neg. LLF: 118.39038888378201
Iteration: 19, Func. Count: 174, Neg. LLF: 118.39037857696762
Iteration: 20, Func. Count: 183, Neg. LLF: 118.39037073641062
Iteration: 21, Func. Count: 192, Neg. LLF: 118.39032332758731
Iteration: 22, Func. Count: 201, Neg. LLF: 118.39023935190139
Iteration: 23, Func. Count: 210, Neg. LLF: 118.39011266608549
Iteration: 24, Func. Count: 219, Neg. LLF: 118.39000075794638
Iteration: 25, Func. Count: 228, Neg. LLF: 118.38999146028867
Iteration: 26, Func. Count: 237, Neg. LLF: 118.3899907728735
Optimization terminated successfully (Exit mode 0)
Current function value: 118.3899907728735
Iterations: 26
Function evaluations: 237
Gradient evaluations: 26
Iteration: 1, Func. Count: 7, Neg. LLF: 125.69827943353255
Iteration: 2, Func. Count: 14, Neg. LLF: 123.6114250789719
Iteration: 3, Func. Count: 21, Neg. LLF: 118.66017445512021
Iteration: 4, Func. Count: 27, Neg. LLF: 118.42226362544811
Iteration: 5, Func. Count: 33, Neg. LLF: 118.40559818951607
Iteration: 6, Func. Count: 39, Neg. LLF: 118.39727881327748
Iteration: 7, Func. Count: 45, Neg. LLF: 118.39709907225583
Iteration: 8, Func. Count: 51, Neg. LLF: 118.39684474132262
Iteration: 9, Func. Count: 57, Neg. LLF: 118.39679627579565
Iteration: 10, Func. Count: 62, Neg. LLF: 118.39679627578515
Optimization terminated successfully (Exit mode 0)
Current function value: 118.39679627579565
Iterations: 10
Function evaluations: 62
Gradient evaluations: 10
Iteration: 1, Func. Count: 8, Neg. LLF: 155.58986068902846
Iteration: 2, Func. Count: 17, Neg. LLF: 118.40323739031619
Iteration: 3, Func. Count: 24, Neg. LLF: 118.3923799572736
Iteration: 4, Func. Count: 31, Neg. LLF: 118.804941837332
Iteration: 5, Func. Count: 40, Neg. LLF: 118.39001941671685
Iteration: 6, Func. Count: 47, Neg. LLF: 118.39000059885558
Iteration: 7, Func. Count: 54, Neg. LLF: 118.38987965517423
Iteration: 8, Func. Count: 61, Neg. LLF: 118.38917385404181
Iteration: 9, Func. Count: 68, Neg. LLF: 118.3844372714566
Iteration: 10, Func. Count: 75, Neg. LLF: 118.59296484745757
Iteration: 11, Func. Count: 83, Neg. LLF: 118.3840345621604
Iteration: 12, Func. Count: 90, Neg. LLF: 118.38403126826421
Iteration: 13, Func. Count: 97, Neg. LLF: 118.38402961053208
Iteration: 14, Func. Count: 103, Neg. LLF: 118.38402961052853
Optimization terminated successfully (Exit mode 0)
Current function value: 118.38402961053208
Iterations: 14
Function evaluations: 103
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 151.0816767338248
Iteration: 2, Func. Count: 19, Neg. LLF: 118.39860828302406
Iteration: 3, Func. Count: 27, Neg. LLF: 118.39259711904646
Iteration: 4, Func. Count: 35, Neg. LLF: 118.3999853900874
Iteration: 5, Func. Count: 44, Neg. LLF: 118.39269168703466
Iteration: 6, Func. Count: 53, Neg. LLF: 118.39174217167006
Iteration: 7, Func. Count: 61, Neg. LLF: 118.39158857460326
Iteration: 8, Func. Count: 69, Neg. LLF: 118.38979387070665
Iteration: 9, Func. Count: 77, Neg. LLF: 118.38955601022622
Iteration: 10, Func. Count: 85, Neg. LLF: 118.38951204606005
Iteration: 11, Func. Count: 93, Neg. LLF: 118.3893758219667
Iteration: 12, Func. Count: 101, Neg. LLF: 118.38931011408228
Iteration: 13, Func. Count: 109, Neg. LLF: 118.38919111338348
Iteration: 14, Func. Count: 117, Neg. LLF: 118.38900599488795
Iteration: 15, Func. Count: 125, Neg. LLF: 118.38797638454646
Iteration: 16, Func. Count: 133, Neg. LLF: 118.38690649590053
Iteration: 17, Func. Count: 141, Neg. LLF: 118.38544456969741
Iteration: 18, Func. Count: 149, Neg. LLF: 118.38406096233639
Iteration: 19, Func. Count: 157, Neg. LLF: 118.38405750588981
Iteration: 20, Func. Count: 166, Neg. LLF: 118.38404101668883
Iteration: 21, Func. Count: 174, Neg. LLF: 118.38402962583108
Optimization terminated successfully (Exit mode 0)
Current function value: 118.38402962548217
Iterations: 21
Function evaluations: 174
Gradient evaluations: 21
Iteration: 1, Func. Count: 10, Neg. LLF: 140.21715952928818
Iteration: 2, Func. Count: 21, Neg. LLF: 118.3923542317807
Iteration: 3, Func. Count: 30, Neg. LLF: 118.3634288499575
Iteration: 4, Func. Count: 39, Neg. LLF: 118.48464953630231
Iteration: 5, Func. Count: 49, Neg. LLF: 118.31790438120372
Iteration: 6, Func. Count: 58, Neg. LLF: 118.31625933994846
Iteration: 7, Func. Count: 67, Neg. LLF: 118.31292805919243
Iteration: 8, Func. Count: 76, Neg. LLF: 118.30276809907667
Iteration: 9, Func. Count: 85, Neg. LLF: 118.29585665992785
Iteration: 10, Func. Count: 94, Neg. LLF: 118.2943362891079
Iteration: 11, Func. Count: 103, Neg. LLF: 118.29406983718785
Iteration: 12, Func. Count: 112, Neg. LLF: 118.2940630832653
Iteration: 13, Func. Count: 121, Neg. LLF: 118.29406172899124
Iteration: 14, Func. Count: 129, Neg. LLF: 118.29406172898554
Optimization terminated successfully (Exit mode 0)
Current function value: 118.29406172899124
Iterations: 14
Function evaluations: 129
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 135.39202555953048
Iteration: 2, Func. Count: 23, Neg. LLF: 118.45773538994374
Iteration: 3, Func. Count: 34, Neg. LLF: 118.38213360132096
Iteration: 4, Func. Count: 44, Neg. LLF: 118.50117633149762
Iteration: 5, Func. Count: 55, Neg. LLF: 118.33746359798855
Iteration: 6, Func. Count: 65, Neg. LLF: 118.32061765804042
Iteration: 7, Func. Count: 75, Neg. LLF: 118.31654503466916
Iteration: 8, Func. Count: 85, Neg. LLF: 118.31453852574148
Iteration: 9, Func. Count: 95, Neg. LLF: 118.30641252823372
Iteration: 10, Func. Count: 105, Neg. LLF: 118.301806916626
Iteration: 11, Func. Count: 115, Neg. LLF: 118.2951104356788
Iteration: 12, Func. Count: 125, Neg. LLF: 118.29415979260115
Iteration: 13, Func. Count: 135, Neg. LLF: 118.2940673824073
Iteration: 14, Func. Count: 145, Neg. LLF: 118.29406177534547
Iteration: 15, Func. Count: 154, Neg. LLF: 118.2940617771125
Optimization terminated successfully (Exit mode 0)
Current function value: 118.29406177534547
Iterations: 15
Function evaluations: 154
Gradient evaluations: 15
Iteration: 1, Func. Count: 8, Neg. LLF: 126.73213442818619
Iteration: 2, Func. Count: 16, Neg. LLF: 127.88635003331342
Iteration: 3, Func. Count: 24, Neg. LLF: 119.17268700980252
Iteration: 4, Func. Count: 31, Neg. LLF: 118.54066954259427
Iteration: 5, Func. Count: 38, Neg. LLF: 119.41523712310762
Iteration: 6, Func. Count: 47, Neg. LLF: 118.44399812313658
Iteration: 7, Func. Count: 54, Neg. LLF: 118.38202308661364
Iteration: 8, Func. Count: 61, Neg. LLF: 118.37234208122662
Iteration: 9, Func. Count: 68, Neg. LLF: 118.37036483868003
Iteration: 10, Func. Count: 75, Neg. LLF: 118.37030051558618
Iteration: 11, Func. Count: 82, Neg. LLF: 118.37028734881135
Iteration: 12, Func. Count: 88, Neg. LLF: 118.37028734876499
Optimization terminated successfully (Exit mode 0)
Current function value: 118.37028734881135
Iterations: 12
Function evaluations: 88
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 128.48509723903078
Iteration: 2, Func. Count: 19, Neg. LLF: 118.71834851413806
Iteration: 3, Func. Count: 28, Neg. LLF: 118.37494579608682
Iteration: 4, Func. Count: 36, Neg. LLF: 118.4015611773627
Iteration: 5, Func. Count: 45, Neg. LLF: 118.37324637609889
Iteration: 6, Func. Count: 53, Neg. LLF: 118.37160591016153
Iteration: 7, Func. Count: 61, Neg. LLF: 118.36267453738864
Iteration: 8, Func. Count: 69, Neg. LLF: 118.35865914217673
Iteration: 9, Func. Count: 77, Neg. LLF: 118.3644326875149
Iteration: 10, Func. Count: 86, Neg. LLF: 118.35234764392538
Iteration: 11, Func. Count: 94, Neg. LLF: 118.35508612947018
Iteration: 12, Func. Count: 103, Neg. LLF: 118.35221617315156
Iteration: 13, Func. Count: 111, Neg. LLF: 118.35221509256542
Iteration: 14, Func. Count: 118, Neg. LLF: 118.35221509263314
Optimization terminated successfully (Exit mode 0)
Current function value: 118.35221509256542
Iterations: 14
Function evaluations: 118
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 122.13629422106972
Iteration: 2, Func. Count: 21, Neg. LLF: 122.63565552087252
Iteration: 3, Func. Count: 31, Neg. LLF: 118.23866061552141
Iteration: 4, Func. Count: 40, Neg. LLF: 118.32967558316692
Iteration: 5, Func. Count: 50, Neg. LLF: 118.27488935889524
Iteration: 6, Func. Count: 60, Neg. LLF: 118.2118035316434
Iteration: 7, Func. Count: 69, Neg. LLF: 118.21164654793101
Iteration: 8, Func. Count: 78, Neg. LLF: 118.211580447319
Iteration: 9, Func. Count: 87, Neg. LLF: 118.21135419858106
Iteration: 10, Func. Count: 96, Neg. LLF: 118.21128480747842
Iteration: 11, Func. Count: 105, Neg. LLF: 118.21125828899723
Iteration: 12, Func. Count: 114, Neg. LLF: 118.21125512191053
Iteration: 13, Func. Count: 122, Neg. LLF: 118.21125512183214
Optimization terminated successfully (Exit mode 0)
Current function value: 118.21125512191053
Iterations: 13
Function evaluations: 122
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 122.81499687894102
Iteration: 2, Func. Count: 23, Neg. LLF: 122.42975660969385
Iteration: 3, Func. Count: 34, Neg. LLF: 118.12687629042055
Iteration: 4, Func. Count: 44, Neg. LLF: 118.11781008335777
Iteration: 5, Func. Count: 54, Neg. LLF: 118.08993612494896
Iteration: 6, Func. Count: 64, Neg. LLF: 118.20899219082538
Iteration: 7, Func. Count: 75, Neg. LLF: 118.06911142251265
Iteration: 8, Func. Count: 85, Neg. LLF: 118.0620065970576
Iteration: 9, Func. Count: 95, Neg. LLF: 118.05966300367355
Iteration: 10, Func. Count: 105, Neg. LLF: 118.05938480881721
Iteration: 11, Func. Count: 115, Neg. LLF: 118.05936522206875
Iteration: 12, Func. Count: 125, Neg. LLF: 118.05936193040152
Iteration: 13, Func. Count: 134, Neg. LLF: 118.05936193039258
Optimization terminated successfully (Exit mode 0)
Current function value: 118.05936193040152
Iterations: 13
Function evaluations: 134
Gradient evaluations: 13
Iteration: 1, Func. Count: 12, Neg. LLF: 128.278570236549
Iteration: 2, Func. Count: 25, Neg. LLF: 119.8958943457243
Iteration: 3, Func. Count: 37, Neg. LLF: 118.12780670765069
Iteration: 4, Func. Count: 48, Neg. LLF: 118.656014019837
Iteration: 5, Func. Count: 60, Neg. LLF: 118.29722262394851
Iteration: 6, Func. Count: 72, Neg. LLF: 118.1210722082075
Iteration: 7, Func. Count: 84, Neg. LLF: 118.0938929128378
Iteration: 8, Func. Count: 95, Neg. LLF: 118.0678017101645
Iteration: 9, Func. Count: 106, Neg. LLF: 118.06162988392815
Iteration: 10, Func. Count: 117, Neg. LLF: 118.06031676260162
Iteration: 11, Func. Count: 128, Neg. LLF: 118.05962038708907
Iteration: 12, Func. Count: 139, Neg. LLF: 118.05941075649989
Iteration: 13, Func. Count: 150, Neg. LLF: 118.05936288621092
Iteration: 14, Func. Count: 161, Neg. LLF: 118.05936176225191
Iteration: 15, Func. Count: 171, Neg. LLF: 118.05936180125899
Optimization terminated successfully (Exit mode 0)
Current function value: 118.05936176225191
Iterations: 15
Function evaluations: 171
Gradient evaluations: 15
Iteration: 1, Func. Count: 9, Neg. LLF: 128.47136361295188
Iteration: 2, Func. Count: 18, Neg. LLF: 128.7533062406309
Iteration: 3, Func. Count: 27, Neg. LLF: 118.86020241232022
Iteration: 4, Func. Count: 35, Neg. LLF: 118.65458262108196
Iteration: 5, Func. Count: 43, Neg. LLF: 120.96180256944075
Iteration: 6, Func. Count: 53, Neg. LLF: 118.39970288310862
Iteration: 7, Func. Count: 61, Neg. LLF: 118.3721568256291
Iteration: 8, Func. Count: 69, Neg. LLF: 118.37070270093008
Iteration: 9, Func. Count: 77, Neg. LLF: 118.37029683720759
Iteration: 10, Func. Count: 85, Neg. LLF: 118.3702870048252
Iteration: 11, Func. Count: 92, Neg. LLF: 118.37028704481283
Optimization terminated successfully (Exit mode 0)
Current function value: 118.3702870048252
Iterations: 11
Function evaluations: 92
Gradient evaluations: 11
Iteration: 1, Func. Count: 10, Neg. LLF: 127.30548860883535
Iteration: 2, Func. Count: 21, Neg. LLF: 118.81037248481891
Iteration: 3, Func. Count: 31, Neg. LLF: 118.37680297805133
Iteration: 4, Func. Count: 40, Neg. LLF: 118.3836241415952
Iteration: 5, Func. Count: 50, Neg. LLF: 118.37333272608228
Iteration: 6, Func. Count: 59, Neg. LLF: 118.37248302695625
Iteration: 7, Func. Count: 68, Neg. LLF: 118.36636362116347
Iteration: 8, Func. Count: 77, Neg. LLF: 118.42079425320973
Iteration: 9, Func. Count: 87, Neg. LLF: 119.37777810887302
Iteration: 10, Func. Count: 97, Neg. LLF: 118.3796635343425
Iteration: 11, Func. Count: 107, Neg. LLF: 118.35229694422489
Iteration: 12, Func. Count: 116, Neg. LLF: 118.35225956333355
Iteration: 13, Func. Count: 125, Neg. LLF: 118.35222105878123
Iteration: 14, Func. Count: 134, Neg. LLF: 118.352215411485
Iteration: 15, Func. Count: 143, Neg. LLF: 118.3522149405227
Optimization terminated successfully (Exit mode 0)
Current function value: 118.3522149405227
Iterations: 15
Function evaluations: 143
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 120.72080190034609
Iteration: 2, Func. Count: 23, Neg. LLF: 123.03021026066578
Iteration: 3, Func. Count: 34, Neg. LLF: 118.25351123436091
Iteration: 4, Func. Count: 44, Neg. LLF: 118.35443450003999
Iteration: 5, Func. Count: 55, Neg. LLF: 118.28720090958923
Iteration: 6, Func. Count: 66, Neg. LLF: 118.21229766780661
Iteration: 7, Func. Count: 76, Neg. LLF: 118.21192444763624
Iteration: 8, Func. Count: 86, Neg. LLF: 118.21181291653076
Iteration: 9, Func. Count: 96, Neg. LLF: 118.2114337336106
Iteration: 10, Func. Count: 106, Neg. LLF: 118.21125957941558
Iteration: 11, Func. Count: 116, Neg. LLF: 118.21125511527268
Iteration: 12, Func. Count: 125, Neg. LLF: 118.21125511530879
Optimization terminated successfully (Exit mode 0)
Current function value: 118.21125511527268
Iterations: 12
Function evaluations: 125
Gradient evaluations: 12
Iteration: 1, Func. Count: 12, Neg. LLF: 120.08441067453293
Iteration: 2, Func. Count: 25, Neg. LLF: 123.15630392754233
Iteration: 3, Func. Count: 37, Neg. LLF: 118.25913454246599
Iteration: 4, Func. Count: 48, Neg. LLF: 118.17484885526355
Iteration: 5, Func. Count: 59, Neg. LLF: 118.36183289718007
Iteration: 6, Func. Count: 71, Neg. LLF: 119.02715552648016
Iteration: 7, Func. Count: 83, Neg. LLF: 118.08435357942857
Iteration: 8, Func. Count: 94, Neg. LLF: 118.07388544560281
Iteration: 9, Func. Count: 105, Neg. LLF: 118.06449461094908
Iteration: 10, Func. Count: 116, Neg. LLF: 118.05976211075885
Iteration: 11, Func. Count: 127, Neg. LLF: 118.0593967917998
Iteration: 12, Func. Count: 138, Neg. LLF: 118.05936297262262
Iteration: 13, Func. Count: 149, Neg. LLF: 118.05936175988809
Iteration: 14, Func. Count: 159, Neg. LLF: 118.05936175990796
Optimization terminated successfully (Exit mode 0)
Current function value: 118.05936175988809
Iterations: 14
Function evaluations: 159
Gradient evaluations: 14
Iteration: 1, Func. Count: 13, Neg. LLF: 123.16863230552408
Iteration: 2, Func. Count: 27, Neg. LLF: 121.42641647883704
Iteration: 3, Func. Count: 40, Neg. LLF: 118.14405484151197
Iteration: 4, Func. Count: 52, Neg. LLF: 118.1640576940171
Iteration: 5, Func. Count: 65, Neg. LLF: 118.19224867129765
Iteration: 6, Func. Count: 78, Neg. LLF: 118.74842895522802
Iteration: 7, Func. Count: 92, Neg. LLF: 118.09689324745342
Iteration: 8, Func. Count: 104, Neg. LLF: 118.06813966933495
Iteration: 9, Func. Count: 116, Neg. LLF: 118.06326721113624
Iteration: 10, Func. Count: 128, Neg. LLF: 118.06104722819751
Iteration: 11, Func. Count: 140, Neg. LLF: 118.05951330939705
Iteration: 12, Func. Count: 152, Neg. LLF: 118.05938668745901
Iteration: 13, Func. Count: 164, Neg. LLF: 118.05936247762321
Iteration: 14, Func. Count: 176, Neg. LLF: 118.0593617477166
Optimization terminated successfully (Exit mode 0)
Current function value: 118.0593617477166
Iterations: 14
Function evaluations: 176
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 129.10443649707253
Iteration: 2, Func. Count: 21, Neg. LLF: 122.26009984570152
Iteration: 3, Func. Count: 31, Neg. LLF: 119.08850045424941
Iteration: 4, Func. Count: 40, Neg. LLF: 118.19286013384033
Iteration: 5, Func. Count: 49, Neg. LLF: 117.99938650279283
Iteration: 6, Func. Count: 58, Neg. LLF: 117.89609658287866
Iteration: 7, Func. Count: 67, Neg. LLF: 117.89196295834913
Iteration: 8, Func. Count: 76, Neg. LLF: 117.89135362075362
Iteration: 9, Func. Count: 85, Neg. LLF: 117.89122887791035
Iteration: 10, Func. Count: 94, Neg. LLF: 117.89121794565573
Iteration: 11, Func. Count: 102, Neg. LLF: 117.89121794565227
Optimization terminated successfully (Exit mode 0)
Current function value: 117.89121794565573
Iterations: 11
Function evaluations: 102
Gradient evaluations: 11
Iteration: 1, Func. Count: 11, Neg. LLF: 124.23992373952929
Iteration: 2, Func. Count: 23, Neg. LLF: 122.88898375005988
Iteration: 3, Func. Count: 34, Neg. LLF: 126.65048472965414
Iteration: 4, Func. Count: 46, Neg. LLF: 118.1138255328576
Iteration: 5, Func. Count: 56, Neg. LLF: 118.0237277382307
Iteration: 6, Func. Count: 66, Neg. LLF: 118.01707735442469
Iteration: 7, Func. Count: 76, Neg. LLF: 118.0097641394617
Iteration: 8, Func. Count: 86, Neg. LLF: 117.99436431628196
Iteration: 9, Func. Count: 96, Neg. LLF: 117.93931647913453
Iteration: 10, Func. Count: 106, Neg. LLF: 117.91675283323815
Iteration: 11, Func. Count: 116, Neg. LLF: 117.89676632556207
Iteration: 12, Func. Count: 126, Neg. LLF: 117.8918001322959
Iteration: 13, Func. Count: 136, Neg. LLF: 117.89127055927793
Iteration: 14, Func. Count: 146, Neg. LLF: 117.89122644467126
Iteration: 15, Func. Count: 156, Neg. LLF: 117.89121877946346
Iteration: 16, Func. Count: 166, Neg. LLF: 117.89121797438827
Optimization terminated successfully (Exit mode 0)
Current function value: 117.89121797438827
Iterations: 16
Function evaluations: 166
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 120.67433667587377
Iteration: 2, Func. Count: 25, Neg. LLF: 121.93715183638113
Iteration: 3, Func. Count: 37, Neg. LLF: 119.58166801117572
Iteration: 4, Func. Count: 49, Neg. LLF: 119.40395680422132
Iteration: 5, Func. Count: 61, Neg. LLF: 118.04232075901706
Iteration: 6, Func. Count: 72, Neg. LLF: 118.10905071517695
Iteration: 7, Func. Count: 84, Neg. LLF: 118.00522225899236
Iteration: 8, Func. Count: 95, Neg. LLF: 117.99900134681552
Iteration: 9, Func. Count: 106, Neg. LLF: 117.98956650810474
Iteration: 10, Func. Count: 117, Neg. LLF: 117.96921164725659
Iteration: 11, Func. Count: 128, Neg. LLF: 117.91212786579796
Iteration: 12, Func. Count: 139, Neg. LLF: 117.90212778513506
Iteration: 13, Func. Count: 150, Neg. LLF: 117.89231874872863
Iteration: 14, Func. Count: 161, Neg. LLF: 117.89144902452388
Iteration: 15, Func. Count: 172, Neg. LLF: 117.89125708150749
Iteration: 16, Func. Count: 183, Neg. LLF: 117.89122252596796
Iteration: 17, Func. Count: 194, Neg. LLF: 117.89121801282022
Iteration: 18, Func. Count: 204, Neg. LLF: 117.89121802843025
Optimization terminated successfully (Exit mode 0)
Current function value: 117.89121801282022
Iterations: 18
Function evaluations: 204
Gradient evaluations: 18
Iteration: 1, Func. Count: 13, Neg. LLF: 120.74728857251668
Iteration: 2, Func. Count: 27, Neg. LLF: 122.09351183308493
Iteration: 3, Func. Count: 40, Neg. LLF: 119.1721854056741
Iteration: 4, Func. Count: 53, Neg. LLF: 123.2807421019584
Iteration: 5, Func. Count: 66, Neg. LLF: 117.47621068450675
Iteration: 6, Func. Count: 78, Neg. LLF: 117.44977279925904
Iteration: 7, Func. Count: 90, Neg. LLF: 117.43304907653935
Iteration: 8, Func. Count: 102, Neg. LLF: 117.4105711840976
Iteration: 9, Func. Count: 114, Neg. LLF: 117.40636031479048
Iteration: 10, Func. Count: 126, Neg. LLF: 117.3969721198234
Iteration: 11, Func. Count: 138, Neg. LLF: 117.39249857532033
Iteration: 12, Func. Count: 150, Neg. LLF: 117.39098118976361
Iteration: 13, Func. Count: 162, Neg. LLF: 117.3908924788329
Iteration: 14, Func. Count: 174, Neg. LLF: 117.39089178002003
Optimization terminated successfully (Exit mode 0)
Current function value: 117.39089178002003
Iterations: 14
Function evaluations: 174
Gradient evaluations: 14
Iteration: 1, Func. Count: 14, Neg. LLF: 122.83525376687786
Iteration: 2, Func. Count: 29, Neg. LLF: 121.40808307938967
Iteration: 3, Func. Count: 43, Neg. LLF: 119.45829688249907
Iteration: 4, Func. Count: 57, Neg. LLF: 127.79064862656057
Iteration: 5, Func. Count: 71, Neg. LLF: 117.50715290571422
Iteration: 6, Func. Count: 84, Neg. LLF: 117.46991369236721
Iteration: 7, Func. Count: 97, Neg. LLF: 117.44896644919243
Iteration: 8, Func. Count: 110, Neg. LLF: 117.41465276027421
Iteration: 9, Func. Count: 123, Neg. LLF: 117.40616174011384
Iteration: 10, Func. Count: 136, Neg. LLF: 117.3985650007625
Iteration: 11, Func. Count: 149, Neg. LLF: 117.39434038162294
Iteration: 12, Func. Count: 162, Neg. LLF: 117.39136457701537
Iteration: 13, Func. Count: 175, Neg. LLF: 117.39091224314147
Iteration: 14, Func. Count: 188, Neg. LLF: 117.39089210758773
Iteration: 15, Func. Count: 200, Neg. LLF: 117.39089219261716
Optimization terminated successfully (Exit mode 0)
Current function value: 117.39089210758773
Iterations: 15
Function evaluations: 200
Gradient evaluations: 15
Iteration: 1, Func. Count: 7, Neg. LLF: 125.53523277712534
Iteration: 2, Func. Count: 14, Neg. LLF: 133.35473418879067
Iteration: 3, Func. Count: 21, Neg. LLF: 118.63648170499779
Iteration: 4, Func. Count: 27, Neg. LLF: 118.40054019024086
Iteration: 5, Func. Count: 33, Neg. LLF: 118.39125646409212
Iteration: 6, Func. Count: 39, Neg. LLF: 118.38194534641785
Iteration: 7, Func. Count: 45, Neg. LLF: 118.38188663685426
Iteration: 8, Func. Count: 51, Neg. LLF: 118.38187868817796
Iteration: 9, Func. Count: 56, Neg. LLF: 118.38187868819134
Optimization terminated successfully (Exit mode 0)
Current function value: 118.38187868817796
Iterations: 9
Function evaluations: 56
Gradient evaluations: 9
Iteration: 1, Func. Count: 8, Neg. LLF: 138.34177665901603
Iteration: 2, Func. Count: 17, Neg. LLF: 118.39382369545969
Iteration: 3, Func. Count: 24, Neg. LLF: 118.39159264039061
Iteration: 4, Func. Count: 31, Neg. LLF: 118.39157048575782
Iteration: 5, Func. Count: 38, Neg. LLF: 118.39156640507454
Iteration: 6, Func. Count: 45, Neg. LLF: 118.39154122201884
Iteration: 7, Func. Count: 52, Neg. LLF: 118.39140944753674
Iteration: 8, Func. Count: 59, Neg. LLF: 118.39080949586041
Iteration: 9, Func. Count: 66, Neg. LLF: 118.39108288055519
Iteration: 10, Func. Count: 74, Neg. LLF: 118.39006663566691
Iteration: 11, Func. Count: 81, Neg. LLF: 118.39001193709345
Iteration: 12, Func. Count: 88, Neg. LLF: 118.38999673487395
Iteration: 13, Func. Count: 95, Neg. LLF: 118.3899908519999
Iteration: 14, Func. Count: 101, Neg. LLF: 118.38999085189174
Optimization terminated successfully (Exit mode 0)
Current function value: 118.3899908519999
Iterations: 14
Function evaluations: 101
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 125.91855711105055
Iteration: 2, Func. Count: 19, Neg. LLF: 118.48376780853877
Iteration: 3, Func. Count: 28, Neg. LLF: 118.38712186304068
Iteration: 4, Func. Count: 36, Neg. LLF: 118.38619352674081
Iteration: 5, Func. Count: 45, Neg. LLF: 118.35003525541097
Iteration: 6, Func. Count: 53, Neg. LLF: 118.3330436557592
Iteration: 7, Func. Count: 61, Neg. LLF: 118.32537801762754
Iteration: 8, Func. Count: 69, Neg. LLF: 118.32151776387356
Iteration: 9, Func. Count: 77, Neg. LLF: 118.3213211397411
Iteration: 10, Func. Count: 85, Neg. LLF: 118.3213053652419
Iteration: 11, Func. Count: 93, Neg. LLF: 118.32130153827346
Iteration: 12, Func. Count: 101, Neg. LLF: 118.32128864773043
Iteration: 13, Func. Count: 109, Neg. LLF: 118.32127508158686
Iteration: 14, Func. Count: 117, Neg. LLF: 118.32126429765859
Iteration: 15, Func. Count: 125, Neg. LLF: 118.32126174031343
Iteration: 16, Func. Count: 132, Neg. LLF: 118.32126174031059
Optimization terminated successfully (Exit mode 0)
Current function value: 118.32126174031343
Iterations: 16
Function evaluations: 132
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 146.01971273081827
Iteration: 2, Func. Count: 21, Neg. LLF: 118.39504232657139
Iteration: 3, Func. Count: 30, Neg. LLF: 118.39245252616028
Iteration: 4, Func. Count: 39, Neg. LLF: 118.39242097044892
Iteration: 5, Func. Count: 48, Neg. LLF: 118.39239078919405
Iteration: 6, Func. Count: 57, Neg. LLF: 118.39227508254837
Iteration: 7, Func. Count: 66, Neg. LLF: 118.3919616207366
Iteration: 8, Func. Count: 75, Neg. LLF: 118.39173756698337
Iteration: 9, Func. Count: 84, Neg. LLF: 118.39158158816295
Iteration: 10, Func. Count: 93, Neg. LLF: 118.39113081470076
Iteration: 11, Func. Count: 102, Neg. LLF: 118.38916152593431
Iteration: 12, Func. Count: 111, Neg. LLF: 118.3809494182881
Iteration: 13, Func. Count: 120, Neg. LLF: 118.3770180945712
Iteration: 14, Func. Count: 129, Neg. LLF: 118.36237533038368
Iteration: 15, Func. Count: 138, Neg. LLF: 118.35058744009977
Iteration: 16, Func. Count: 147, Neg. LLF: 118.3514649774216
Iteration: 17, Func. Count: 157, Neg. LLF: 118.33851105163068
Iteration: 18, Func. Count: 166, Neg. LLF: 121.88084202117703
Iteration: 19, Func. Count: 177, Neg. LLF: 123.93723630864592
Iteration: 20, Func. Count: 188, Neg. LLF: 118.33810080706105
Iteration: 21, Func. Count: 198, Neg. LLF: 118.32906749198824
Iteration: 22, Func. Count: 207, Neg. LLF: 118.32790934970316
Iteration: 23, Func. Count: 216, Neg. LLF: 118.32530849038191
Iteration: 24, Func. Count: 225, Neg. LLF: 118.32333669056578
Iteration: 25, Func. Count: 234, Neg. LLF: 118.32171000065706
Iteration: 26, Func. Count: 243, Neg. LLF: 118.32127640025912
Iteration: 27, Func. Count: 252, Neg. LLF: 118.32126262676212
Iteration: 28, Func. Count: 261, Neg. LLF: 118.32126156225046
Iteration: 29, Func. Count: 269, Neg. LLF: 118.32126157038716
Optimization terminated successfully (Exit mode 0)
Current function value: 118.32126156225046
Iterations: 30
Function evaluations: 269
Gradient evaluations: 29
Iteration: 1, Func. Count: 11, Neg. LLF: 129.22229423407148
Iteration: 2, Func. Count: 23, Neg. LLF: 118.41458993902961
Iteration: 3, Func. Count: 33, Neg. LLF: 118.37442901128905
Iteration: 4, Func. Count: 43, Neg. LLF: 118.57689113113172
Iteration: 5, Func. Count: 54, Neg. LLF: 118.329586634002
Iteration: 6, Func. Count: 64, Neg. LLF: 118.2809219292123
Iteration: 7, Func. Count: 74, Neg. LLF: 118.27948600214096
Iteration: 8, Func. Count: 84, Neg. LLF: 118.27227948681497
Iteration: 9, Func. Count: 94, Neg. LLF: 118.23876168930363
Iteration: 10, Func. Count: 104, Neg. LLF: 118.25395063292382
Iteration: 11, Func. Count: 115, Neg. LLF: 118.22079225999536
Iteration: 12, Func. Count: 126, Neg. LLF: 118.21159719457451
Iteration: 13, Func. Count: 136, Neg. LLF: 118.21312062826854
Iteration: 14, Func. Count: 147, Neg. LLF: 118.20617288765335
Iteration: 15, Func. Count: 157, Neg. LLF: 118.22875643011365
Iteration: 16, Func. Count: 168, Neg. LLF: 118.50738765293116
Iteration: 17, Func. Count: 179, Neg. LLF: 118.1893044883503
Iteration: 18, Func. Count: 189, Neg. LLF: 118.18266933794204
Iteration: 19, Func. Count: 199, Neg. LLF: 118.1777019994893
Iteration: 20, Func. Count: 209, Neg. LLF: 118.1760031326253
Iteration: 21, Func. Count: 219, Neg. LLF: 118.17522811657173
Iteration: 22, Func. Count: 229, Neg. LLF: 118.1751516751024
Iteration: 23, Func. Count: 239, Neg. LLF: 118.17515038903177
Iteration: 24, Func. Count: 248, Neg. LLF: 118.17515038305203
Optimization terminated successfully (Exit mode 0)
Current function value: 118.17515038903177
Iterations: 24
Function evaluations: 248
Gradient evaluations: 24
Iteration: 1, Func. Count: 8, Neg. LLF: 124.24460506853785
Iteration: 2, Func. Count: 16, Neg. LLF: 126.27185234928155
Iteration: 3, Func. Count: 24, Neg. LLF: 118.52277719949112
Iteration: 4, Func. Count: 31, Neg. LLF: 118.39710570150966
Iteration: 5, Func. Count: 38, Neg. LLF: 118.39673499738173
Iteration: 6, Func. Count: 46, Neg. LLF: 119.01105445891423
Iteration: 7, Func. Count: 55, Neg. LLF: 118.38028680771434
Iteration: 8, Func. Count: 62, Neg. LLF: 118.38026837002259
Iteration: 9, Func. Count: 69, Neg. LLF: 118.38026785573165
Optimization terminated successfully (Exit mode 0)
Current function value: 118.38026785573165
Iterations: 9
Function evaluations: 69
Gradient evaluations: 9
Iteration: 1, Func. Count: 9, Neg. LLF: 131.68232784794185
Iteration: 2, Func. Count: 19, Neg. LLF: 118.3957481729861
Iteration: 3, Func. Count: 27, Neg. LLF: 118.39253748829319
Iteration: 4, Func. Count: 35, Neg. LLF: 118.5500939848847
Iteration: 5, Func. Count: 44, Neg. LLF: 118.39002574110799
Iteration: 6, Func. Count: 52, Neg. LLF: 118.39000623676267
Iteration: 7, Func. Count: 60, Neg. LLF: 118.3898748116639
Iteration: 8, Func. Count: 68, Neg. LLF: 118.38904796539711
Iteration: 9, Func. Count: 76, Neg. LLF: 118.3852394556214
Iteration: 10, Func. Count: 84, Neg. LLF: 118.38589275415897
Iteration: 11, Func. Count: 93, Neg. LLF: 118.38414775346105
Iteration: 12, Func. Count: 101, Neg. LLF: 118.38403052527806
Iteration: 13, Func. Count: 109, Neg. LLF: 118.38402991037042
Optimization terminated successfully (Exit mode 0)
Current function value: 118.38402991037042
Iterations: 13
Function evaluations: 109
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 124.51201266890743
Iteration: 2, Func. Count: 21, Neg. LLF: 118.76377944549598
Iteration: 3, Func. Count: 31, Neg. LLF: 118.38789735549476
Iteration: 4, Func. Count: 40, Neg. LLF: 118.41701944973032
Iteration: 5, Func. Count: 50, Neg. LLF: 118.35678282183765
Iteration: 6, Func. Count: 59, Neg. LLF: 118.32476249184097
Iteration: 7, Func. Count: 68, Neg. LLF: 118.32153432667573
Iteration: 8, Func. Count: 77, Neg. LLF: 118.32134003738359
Iteration: 9, Func. Count: 86, Neg. LLF: 118.3213288413754
Iteration: 10, Func. Count: 95, Neg. LLF: 118.32132060564938
Iteration: 11, Func. Count: 104, Neg. LLF: 118.32130594313274
Iteration: 12, Func. Count: 113, Neg. LLF: 118.32128368988904
Iteration: 13, Func. Count: 122, Neg. LLF: 118.3212668677742
Iteration: 14, Func. Count: 131, Neg. LLF: 118.3212619323237
Iteration: 15, Func. Count: 139, Neg. LLF: 118.32126193240202
Optimization terminated successfully (Exit mode 0)
Current function value: 118.3212619323237
Iterations: 15
Function evaluations: 139
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 136.77863028142937
Iteration: 2, Func. Count: 23, Neg. LLF: 118.42439313832186
Iteration: 3, Func. Count: 34, Neg. LLF: 118.3832211507986
Iteration: 4, Func. Count: 44, Neg. LLF: 118.43668727060326
Iteration: 5, Func. Count: 55, Neg. LLF: 118.3511859962447
Iteration: 6, Func. Count: 65, Neg. LLF: 118.32444829243339
Iteration: 7, Func. Count: 75, Neg. LLF: 118.31639383553613
Iteration: 8, Func. Count: 85, Neg. LLF: 118.31468891191987
Iteration: 9, Func. Count: 95, Neg. LLF: 118.31168500220917
Iteration: 10, Func. Count: 105, Neg. LLF: 118.30038296908754
Iteration: 11, Func. Count: 115, Neg. LLF: 118.2954080986434
Iteration: 12, Func. Count: 125, Neg. LLF: 118.29431405921596
Iteration: 13, Func. Count: 135, Neg. LLF: 118.29409505517496
Iteration: 14, Func. Count: 145, Neg. LLF: 118.29406835920362
Iteration: 15, Func. Count: 155, Neg. LLF: 118.29406240625374
Iteration: 16, Func. Count: 165, Neg. LLF: 118.29406144847054
Optimization terminated successfully (Exit mode 0)
Current function value: 118.29406144847054
Iterations: 16
Function evaluations: 165
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 125.33470626451322
Iteration: 2, Func. Count: 25, Neg. LLF: 119.1088606237356
Iteration: 3, Func. Count: 37, Neg. LLF: 118.37512307686488
Iteration: 4, Func. Count: 48, Neg. LLF: 118.339700033552
Iteration: 5, Func. Count: 59, Neg. LLF: 118.29019325115858
Iteration: 6, Func. Count: 70, Neg. LLF: 118.64932761570947
Iteration: 7, Func. Count: 82, Neg. LLF: 118.27498875363678
Iteration: 8, Func. Count: 93, Neg. LLF: 118.27248563181193
Iteration: 9, Func. Count: 104, Neg. LLF: 118.26856263033956
Iteration: 10, Func. Count: 115, Neg. LLF: 118.26269604473609
Iteration: 11, Func. Count: 126, Neg. LLF: 118.24963504811284
Iteration: 12, Func. Count: 137, Neg. LLF: 118.23189121871789
Iteration: 13, Func. Count: 148, Neg. LLF: 118.22860027193806
Iteration: 14, Func. Count: 160, Neg. LLF: 118.20241658781079
Iteration: 15, Func. Count: 171, Neg. LLF: 118.2575287821372
Iteration: 16, Func. Count: 183, Neg. LLF: 118.18659520295154
Iteration: 17, Func. Count: 194, Neg. LLF: 118.1841865403252
Iteration: 18, Func. Count: 205, Neg. LLF: 118.1838750364648
Iteration: 19, Func. Count: 216, Neg. LLF: 118.18355481877163
Iteration: 20, Func. Count: 227, Neg. LLF: 118.18342314677591
Iteration: 21, Func. Count: 238, Neg. LLF: 118.18332818387442
Iteration: 22, Func. Count: 249, Neg. LLF: 118.18322493659579
Iteration: 23, Func. Count: 260, Neg. LLF: 118.17396613446904
Iteration: 24, Func. Count: 271, Neg. LLF: 121.58367122345425
Iteration: 25, Func. Count: 283, Neg. LLF: 118.18990281468147
Iteration: 26, Func. Count: 295, Neg. LLF: 118.17267544580673
Iteration: 27, Func. Count: 307, Neg. LLF: 118.16358578105051
Iteration: 28, Func. Count: 318, Neg. LLF: 118.1634469127378
Iteration: 29, Func. Count: 329, Neg. LLF: 118.16343920458486
Iteration: 30, Func. Count: 340, Neg. LLF: 118.16343861750073
Optimization terminated successfully (Exit mode 0)
Current function value: 118.16343861750073
Iterations: 30
Function evaluations: 340
Gradient evaluations: 30
Iteration: 1, Func. Count: 9, Neg. LLF: 127.35084968384423
Iteration: 2, Func. Count: 18, Neg. LLF: 136.03974017787763
Iteration: 3, Func. Count: 27, Neg. LLF: 118.52943801974855
Iteration: 4, Func. Count: 35, Neg. LLF: 118.52962944275352
Iteration: 5, Func. Count: 44, Neg. LLF: 118.42447008251386
Iteration: 6, Func. Count: 53, Neg. LLF: 118.42699359427196
Iteration: 7, Func. Count: 62, Neg. LLF: 118.35031671075704
Iteration: 8, Func. Count: 70, Neg. LLF: 118.34887532925497
Iteration: 9, Func. Count: 78, Neg. LLF: 118.34872993636793
Iteration: 10, Func. Count: 86, Neg. LLF: 118.34865824848319
Iteration: 11, Func. Count: 93, Neg. LLF: 118.34865824848661
Optimization terminated successfully (Exit mode 0)
Current function value: 118.34865824848319
Iterations: 11
Function evaluations: 93
Gradient evaluations: 11
Iteration: 1, Func. Count: 10, Neg. LLF: 126.39079078403472
Iteration: 2, Func. Count: 21, Neg. LLF: 118.90646760859437
Iteration: 3, Func. Count: 31, Neg. LLF: 118.37770753908825
Iteration: 4, Func. Count: 40, Neg. LLF: 118.3740577892975
Iteration: 5, Func. Count: 49, Neg. LLF: 118.37310355852786
Iteration: 6, Func. Count: 58, Neg. LLF: 118.37186041187572
Iteration: 7, Func. Count: 67, Neg. LLF: 118.36257314158789
Iteration: 8, Func. Count: 76, Neg. LLF: 118.37079176255128
Iteration: 9, Func. Count: 86, Neg. LLF: 118.35453707541619
Iteration: 10, Func. Count: 95, Neg. LLF: 118.35273574808352
Iteration: 11, Func. Count: 104, Neg. LLF: 118.35238049600612
Iteration: 12, Func. Count: 113, Neg. LLF: 118.35271532931219
Iteration: 13, Func. Count: 123, Neg. LLF: 118.35222271070086
Iteration: 14, Func. Count: 132, Neg. LLF: 118.35221491437254
Iteration: 15, Func. Count: 140, Neg. LLF: 118.35221491440312
Optimization terminated successfully (Exit mode 0)
Current function value: 118.35221491437254
Iterations: 15
Function evaluations: 140
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 120.1094284431266
Iteration: 2, Func. Count: 23, Neg. LLF: 122.64220650842864
Iteration: 3, Func. Count: 34, Neg. LLF: 118.25143494763302
Iteration: 4, Func. Count: 44, Neg. LLF: 118.16943759072295
Iteration: 5, Func. Count: 54, Neg. LLF: 120.26600662451618
Iteration: 6, Func. Count: 66, Neg. LLF: 118.14096458021386
Iteration: 7, Func. Count: 76, Neg. LLF: 118.22102353820068
Iteration: 8, Func. Count: 87, Neg. LLF: 118.13669107098957
Iteration: 9, Func. Count: 97, Neg. LLF: 118.13663336173609
Iteration: 10, Func. Count: 107, Neg. LLF: 118.13656736720378
Iteration: 11, Func. Count: 117, Neg. LLF: 118.13654966974747
Iteration: 12, Func. Count: 127, Neg. LLF: 118.13654437319376
Iteration: 13, Func. Count: 136, Neg. LLF: 118.1365443731697
Optimization terminated successfully (Exit mode 0)
Current function value: 118.13654437319376
Iterations: 13
Function evaluations: 136
Gradient evaluations: 13
Iteration: 1, Func. Count: 12, Neg. LLF: 122.61829060411648
Iteration: 2, Func. Count: 25, Neg. LLF: 122.5347164059913
Iteration: 3, Func. Count: 37, Neg. LLF: 118.1412303382331
Iteration: 4, Func. Count: 48, Neg. LLF: 118.12242197598125
Iteration: 5, Func. Count: 59, Neg. LLF: 118.10543535391649
Iteration: 6, Func. Count: 70, Neg. LLF: 118.10848534713975
Iteration: 7, Func. Count: 82, Neg. LLF: 118.18557276464449
Iteration: 8, Func. Count: 94, Neg. LLF: 118.06654117571114
Iteration: 9, Func. Count: 105, Neg. LLF: 118.05981063609069
Iteration: 10, Func. Count: 116, Neg. LLF: 118.05943801554555
Iteration: 11, Func. Count: 127, Neg. LLF: 118.05937199827872
Iteration: 12, Func. Count: 138, Neg. LLF: 118.0593619338116
Iteration: 13, Func. Count: 148, Neg. LLF: 118.05936193377454
Optimization terminated successfully (Exit mode 0)
Current function value: 118.0593619338116
Iterations: 13
Function evaluations: 148
Gradient evaluations: 13
Iteration: 1, Func. Count: 13, Neg. LLF: 122.54349040471234
Iteration: 2, Func. Count: 27, Neg. LLF: 120.19297844614525
Iteration: 3, Func. Count: 40, Neg. LLF: 118.16237584337878
Iteration: 4, Func. Count: 52, Neg. LLF: 118.1471757112085
Iteration: 5, Func. Count: 64, Neg. LLF: 118.2493235429761
Iteration: 6, Func. Count: 77, Neg. LLF: 118.11947124001695
Iteration: 7, Func. Count: 89, Neg. LLF: 119.0764181257282
Iteration: 8, Func. Count: 103, Neg. LLF: 118.0905762346806
Iteration: 9, Func. Count: 115, Neg. LLF: 118.07547426876057
Iteration: 10, Func. Count: 127, Neg. LLF: 118.0618708143494
Iteration: 11, Func. Count: 139, Neg. LLF: 118.05993984858685
Iteration: 12, Func. Count: 151, Neg. LLF: 118.0593946529092
Iteration: 13, Func. Count: 163, Neg. LLF: 118.05937445634014
Iteration: 14, Func. Count: 175, Neg. LLF: 118.05936460495533
Iteration: 15, Func. Count: 187, Neg. LLF: 118.05936194612444
Iteration: 16, Func. Count: 198, Neg. LLF: 118.05936198516275
Optimization terminated successfully (Exit mode 0)
Current function value: 118.05936194612444
Iterations: 16
Function evaluations: 198
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 127.06948043413006
Iteration: 2, Func. Count: 20, Neg. LLF: 134.07123352890895
Iteration: 3, Func. Count: 30, Neg. LLF: 118.55585825831473
Iteration: 4, Func. Count: 39, Neg. LLF: 118.60677062817447
Iteration: 5, Func. Count: 49, Neg. LLF: 118.67656504606074
Iteration: 6, Func. Count: 59, Neg. LLF: 118.10858467932702
Iteration: 7, Func. Count: 68, Neg. LLF: 118.07685294459917
Iteration: 8, Func. Count: 77, Neg. LLF: 118.07577732199026
Iteration: 9, Func. Count: 86, Neg. LLF: 118.075655546303
Iteration: 10, Func. Count: 95, Neg. LLF: 118.07532960138062
Iteration: 11, Func. Count: 104, Neg. LLF: 118.07531373247711
Iteration: 12, Func. Count: 113, Neg. LLF: 118.07531186716464
Iteration: 13, Func. Count: 121, Neg. LLF: 118.07531183147604
Optimization terminated successfully (Exit mode 0)
Current function value: 118.07531186716464
Iterations: 13
Function evaluations: 121
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 124.10278283081328
Iteration: 2, Func. Count: 23, Neg. LLF: 120.17236800429046
Iteration: 3, Func. Count: 34, Neg. LLF: 118.53571218300988
Iteration: 4, Func. Count: 45, Neg. LLF: 118.38446244420443
Iteration: 5, Func. Count: 55, Neg. LLF: 118.36531291445644
Iteration: 6, Func. Count: 65, Neg. LLF: 118.36655441290922
Iteration: 7, Func. Count: 76, Neg. LLF: 118.36905020794843
Iteration: 8, Func. Count: 87, Neg. LLF: 118.3620977862998
Iteration: 9, Func. Count: 97, Neg. LLF: 118.34944436316695
Iteration: 10, Func. Count: 107, Neg. LLF: 118.12657596939643
Iteration: 11, Func. Count: 117, Neg. LLF: 118.08901087467291
Iteration: 12, Func. Count: 127, Neg. LLF: 118.07906347000747
Iteration: 13, Func. Count: 137, Neg. LLF: 118.07631377165123
Iteration: 14, Func. Count: 147, Neg. LLF: 118.07543362704126
Iteration: 15, Func. Count: 157, Neg. LLF: 118.07536310185236
Iteration: 16, Func. Count: 167, Neg. LLF: 118.07533105039809
Iteration: 17, Func. Count: 177, Neg. LLF: 118.07531520318499
Iteration: 18, Func. Count: 187, Neg. LLF: 118.07531206675591
Iteration: 19, Func. Count: 196, Neg. LLF: 118.07531208411864
Optimization terminated successfully (Exit mode 0)
Current function value: 118.07531206675591
Iterations: 19
Function evaluations: 196
Gradient evaluations: 19
Iteration: 1, Func. Count: 12, Neg. LLF: 122.85117710917753
Iteration: 2, Func. Count: 25, Neg. LLF: 121.6231614985291
Iteration: 3, Func. Count: 37, Neg. LLF: 121.97075050480203
Iteration: 4, Func. Count: 49, Neg. LLF: 118.09122037093216
Iteration: 5, Func. Count: 60, Neg. LLF: 118.16711446801982
Iteration: 6, Func. Count: 72, Neg. LLF: 118.19240097407022
Iteration: 7, Func. Count: 84, Neg. LLF: 118.0249369857784
Iteration: 8, Func. Count: 95, Neg. LLF: 118.0236822880821
Iteration: 9, Func. Count: 106, Neg. LLF: 118.02236368877792
Iteration: 10, Func. Count: 117, Neg. LLF: 118.02180648756558
Iteration: 11, Func. Count: 128, Neg. LLF: 118.0217376311771
Iteration: 12, Func. Count: 139, Neg. LLF: 118.021734782988
Iteration: 13, Func. Count: 149, Neg. LLF: 118.02173478294954
Optimization terminated successfully (Exit mode 0)
Current function value: 118.021734782988
Iterations: 13
Function evaluations: 149
Gradient evaluations: 13
Iteration: 1, Func. Count: 13, Neg. LLF: 122.90550085475027
Iteration: 2, Func. Count: 27, Neg. LLF: 121.6230989102972
Iteration: 3, Func. Count: 40, Neg. LLF: 130.68124702987794
Iteration: 4, Func. Count: 54, Neg. LLF: 118.04740145628382
Iteration: 5, Func. Count: 66, Neg. LLF: 118.06550311471045
Iteration: 6, Func. Count: 79, Neg. LLF: 118.25018613217355
Iteration: 7, Func. Count: 92, Neg. LLF: 118.04822399548686
Iteration: 8, Func. Count: 105, Neg. LLF: 118.01627156073526
Iteration: 9, Func. Count: 117, Neg. LLF: 118.01571446178559
Iteration: 10, Func. Count: 129, Neg. LLF: 118.0156479756136
Iteration: 11, Func. Count: 141, Neg. LLF: 118.01545861160739
Iteration: 12, Func. Count: 153, Neg. LLF: 118.01538595484395
Iteration: 13, Func. Count: 165, Neg. LLF: 118.0153621589023
Iteration: 14, Func. Count: 177, Neg. LLF: 118.01536103548335
Iteration: 15, Func. Count: 188, Neg. LLF: 118.0153610354721
Optimization terminated successfully (Exit mode 0)
Current function value: 118.01536103548335
Iterations: 15
Function evaluations: 188
Gradient evaluations: 15
Iteration: 1, Func. Count: 14, Neg. LLF: 121.20031890580958
Iteration: 2, Func. Count: 29, Neg. LLF: 123.34061792979523
Iteration: 3, Func. Count: 43, Neg. LLF: 119.07426227317342
Iteration: 4, Func. Count: 57, Neg. LLF: 118.11314811184847
Iteration: 5, Func. Count: 70, Neg. LLF: 118.01584339490425
Iteration: 6, Func. Count: 83, Neg. LLF: 117.90780826936675
Iteration: 7, Func. Count: 96, Neg. LLF: 117.89451715242281
Iteration: 8, Func. Count: 109, Neg. LLF: 117.83772527010363
Iteration: 9, Func. Count: 122, Neg. LLF: 117.7478281661192
Iteration: 10, Func. Count: 135, Neg. LLF: 117.53639352708387
Iteration: 11, Func. Count: 148, Neg. LLF: 117.46190055489701
Iteration: 12, Func. Count: 162, Neg. LLF: 117.17039583972904
Iteration: 13, Func. Count: 175, Neg. LLF: 117.2751964701553
Iteration: 14, Func. Count: 189, Neg. LLF: 117.124615301088
Iteration: 15, Func. Count: 202, Neg. LLF: 117.12334579125947
Iteration: 16, Func. Count: 215, Neg. LLF: 117.12324356455494
Iteration: 17, Func. Count: 228, Neg. LLF: 117.12324196666762
Iteration: 18, Func. Count: 240, Neg. LLF: 117.12324194185621
Optimization terminated successfully (Exit mode 0)
Current function value: 117.12324196666762
Iterations: 18
Function evaluations: 240
Gradient evaluations: 18
Iteration: 1, Func. Count: 11, Neg. LLF: 125.29818930770638
Iteration: 2, Func. Count: 23, Neg. LLF: 127.42667749343282
Iteration: 3, Func. Count: 34, Neg. LLF: 118.86699173247845
Iteration: 4, Func. Count: 45, Neg. LLF: 118.26746421367194
Iteration: 5, Func. Count: 56, Neg. LLF: 118.32010905578406
Iteration: 6, Func. Count: 67, Neg. LLF: 117.70202112966373
Iteration: 7, Func. Count: 77, Neg. LLF: 117.6831258291493
Iteration: 8, Func. Count: 87, Neg. LLF: 117.68192796286563
Iteration: 9, Func. Count: 97, Neg. LLF: 117.68028200439848
Iteration: 10, Func. Count: 107, Neg. LLF: 117.68013969423812
Iteration: 11, Func. Count: 117, Neg. LLF: 117.68011606978827
Iteration: 12, Func. Count: 127, Neg. LLF: 117.68011543944428
Optimization terminated successfully (Exit mode 0)
Current function value: 117.68011543944428
Iterations: 12
Function evaluations: 127
Gradient evaluations: 12
Iteration: 1, Func. Count: 12, Neg. LLF: 123.22229544866583
Iteration: 2, Func. Count: 25, Neg. LLF: 121.60746770524386
Iteration: 3, Func. Count: 37, Neg. LLF: 123.04377271980447
Iteration: 4, Func. Count: 50, Neg. LLF: 118.2956769676277
Iteration: 5, Func. Count: 62, Neg. LLF: 118.03804401361745
Iteration: 6, Func. Count: 74, Neg. LLF: 117.81932742740676
Iteration: 7, Func. Count: 85, Neg. LLF: 117.76703249166573
Iteration: 8, Func. Count: 96, Neg. LLF: 117.68770913304499
Iteration: 9, Func. Count: 107, Neg. LLF: 117.68080551340779
Iteration: 10, Func. Count: 118, Neg. LLF: 117.68034824662422
Iteration: 11, Func. Count: 129, Neg. LLF: 117.680154763799
Iteration: 12, Func. Count: 140, Neg. LLF: 117.68012190066663
Iteration: 13, Func. Count: 151, Neg. LLF: 117.68011589986791
Iteration: 14, Func. Count: 161, Neg. LLF: 117.68011591104404
Optimization terminated successfully (Exit mode 0)
Current function value: 117.68011589986791
Iterations: 14
Function evaluations: 161
Gradient evaluations: 14
Iteration: 1, Func. Count: 13, Neg. LLF: 121.3571057322472
Iteration: 2, Func. Count: 27, Neg. LLF: 120.1663107508383
Iteration: 3, Func. Count: 40, Neg. LLF: 118.90476086882695
Iteration: 4, Func. Count: 53, Neg. LLF: 119.79419731103084
Iteration: 5, Func. Count: 66, Neg. LLF: 117.97255313786414
Iteration: 6, Func. Count: 79, Neg. LLF: 117.80557948892304
Iteration: 7, Func. Count: 91, Neg. LLF: 117.7179854875902
Iteration: 8, Func. Count: 103, Neg. LLF: 117.75704682513613
Iteration: 9, Func. Count: 116, Neg. LLF: 117.68155547038621
Iteration: 10, Func. Count: 128, Neg. LLF: 117.68032419280568
Iteration: 11, Func. Count: 140, Neg. LLF: 117.68016823771397
Iteration: 12, Func. Count: 152, Neg. LLF: 117.68011639373366
Iteration: 13, Func. Count: 164, Neg. LLF: 117.68011547244146
Optimization terminated successfully (Exit mode 0)
Current function value: 117.68011547244146
Iterations: 13
Function evaluations: 164
Gradient evaluations: 13
Iteration: 1, Func. Count: 14, Neg. LLF: 121.12112968615838
Iteration: 2, Func. Count: 29, Neg. LLF: 119.69788074863449
Iteration: 3, Func. Count: 43, Neg. LLF: 119.05737827021437
Iteration: 4, Func. Count: 57, Neg. LLF: 119.31550206256978
Iteration: 5, Func. Count: 71, Neg. LLF: 117.52058199764853
Iteration: 6, Func. Count: 84, Neg. LLF: 117.47815342247463
Iteration: 7, Func. Count: 97, Neg. LLF: 117.44882290175647
Iteration: 8, Func. Count: 110, Neg. LLF: 117.42086243021548
Iteration: 9, Func. Count: 123, Neg. LLF: 117.40262547733998
Iteration: 10, Func. Count: 136, Neg. LLF: 117.39228586965011
Iteration: 11, Func. Count: 149, Neg. LLF: 117.39099006790904
Iteration: 12, Func. Count: 162, Neg. LLF: 117.39091463427584
Iteration: 13, Func. Count: 175, Neg. LLF: 117.39089277402206
Iteration: 14, Func. Count: 188, Neg. LLF: 117.39089179186666
Optimization terminated successfully (Exit mode 0)
Current function value: 117.39089179186666
Iterations: 14
Function evaluations: 188
Gradient evaluations: 14
Iteration: 1, Func. Count: 15, Neg. LLF: 121.87939838051324
Iteration: 2, Func. Count: 31, Neg. LLF: 121.25807579289699
Iteration: 3, Func. Count: 46, Neg. LLF: 118.9243689226634
Iteration: 4, Func. Count: 61, Neg. LLF: 119.27035687137266
Iteration: 5, Func. Count: 76, Neg. LLF: 117.57544415187229
Iteration: 6, Func. Count: 90, Neg. LLF: 117.54558686733245
Iteration: 7, Func. Count: 104, Neg. LLF: 117.51756798960245
Iteration: 8, Func. Count: 118, Neg. LLF: 117.48825584624608
Iteration: 9, Func. Count: 132, Neg. LLF: 117.46267964815826
Iteration: 10, Func. Count: 146, Neg. LLF: 117.41935135811474
Iteration: 11, Func. Count: 160, Neg. LLF: 117.40193673246328
Iteration: 12, Func. Count: 174, Neg. LLF: 117.3915457155846
Iteration: 13, Func. Count: 188, Neg. LLF: 117.39094035444636
Iteration: 14, Func. Count: 202, Neg. LLF: 117.39089362629706
Iteration: 15, Func. Count: 216, Neg. LLF: 117.3908919385619
Iteration: 16, Func. Count: 229, Neg. LLF: 117.39089202369838
Optimization terminated successfully (Exit mode 0)
Current function value: 117.3908919385619
Iterations: 16
Function evaluations: 229
Gradient evaluations: 16
Iteration: 1, Func. Count: 8, Neg. LLF: 123.34359967806222
Iteration: 2, Func. Count: 16, Neg. LLF: 119.02361087897624
Iteration: 3, Func. Count: 23, Neg. LLF: 118.42621091810035
Iteration: 4, Func. Count: 30, Neg. LLF: 118.45155240019122
Iteration: 5, Func. Count: 38, Neg. LLF: 118.43804355673349
Iteration: 6, Func. Count: 46, Neg. LLF: 118.38228381883552
Iteration: 7, Func. Count: 53, Neg. LLF: 118.38188004242029
Iteration: 8, Func. Count: 60, Neg. LLF: 118.38187871025809
Iteration: 9, Func. Count: 66, Neg. LLF: 118.38187873979075
Optimization terminated successfully (Exit mode 0)
Current function value: 118.38187871025809
Iterations: 9
Function evaluations: 66
Gradient evaluations: 9
Iteration: 1, Func. Count: 9, Neg. LLF: 141.09493392388057
Iteration: 2, Func. Count: 19, Neg. LLF: 118.39267521951194
Iteration: 3, Func. Count: 27, Neg. LLF: 118.39163817408183
Iteration: 4, Func. Count: 35, Neg. LLF: 118.39156855460688
Iteration: 5, Func. Count: 43, Neg. LLF: 118.3915647481441
Iteration: 6, Func. Count: 51, Neg. LLF: 118.3915439808674
Iteration: 7, Func. Count: 59, Neg. LLF: 118.39144123055554
Iteration: 8, Func. Count: 67, Neg. LLF: 118.39096910939466
Iteration: 9, Func. Count: 75, Neg. LLF: 118.39019382375272
Iteration: 10, Func. Count: 83, Neg. LLF: 118.39051662633598
Iteration: 11, Func. Count: 92, Neg. LLF: 118.38999318619982
Iteration: 12, Func. Count: 100, Neg. LLF: 118.38999078809763
Iteration: 13, Func. Count: 107, Neg. LLF: 118.38999078814845
Optimization terminated successfully (Exit mode 0)
Current function value: 118.38999078809763
Iterations: 13
Function evaluations: 107
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 126.16141607349913
Iteration: 2, Func. Count: 21, Neg. LLF: 118.46710533525352
Iteration: 3, Func. Count: 31, Neg. LLF: 118.38873820755897
Iteration: 4, Func. Count: 40, Neg. LLF: 118.38287655914885
Iteration: 5, Func. Count: 49, Neg. LLF: 118.3621698946531
Iteration: 6, Func. Count: 58, Neg. LLF: 118.35564121922819
Iteration: 7, Func. Count: 67, Neg. LLF: 118.35051010569268
Iteration: 8, Func. Count: 76, Neg. LLF: 118.3294763019242
Iteration: 9, Func. Count: 85, Neg. LLF: 118.32170880330443
Iteration: 10, Func. Count: 94, Neg. LLF: 118.32129956983023
Iteration: 11, Func. Count: 103, Neg. LLF: 118.32126212919732
Iteration: 12, Func. Count: 111, Neg. LLF: 118.3212621292034
Optimization terminated successfully (Exit mode 0)
Current function value: 118.32126212919732
Iterations: 12
Function evaluations: 111
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 145.9483424864069
Iteration: 2, Func. Count: 23, Neg. LLF: 118.39333595219132
Iteration: 3, Func. Count: 33, Neg. LLF: 118.39257064291324
Iteration: 4, Func. Count: 43, Neg. LLF: 118.39253905694365
Iteration: 5, Func. Count: 53, Neg. LLF: 118.39250709182399
Iteration: 6, Func. Count: 63, Neg. LLF: 118.39238442497665
Iteration: 7, Func. Count: 73, Neg. LLF: 118.39216403395866
Iteration: 8, Func. Count: 83, Neg. LLF: 118.39190684325277
Iteration: 9, Func. Count: 93, Neg. LLF: 118.391778987104
Iteration: 10, Func. Count: 103, Neg. LLF: 118.39171471429756
Iteration: 11, Func. Count: 113, Neg. LLF: 118.39130996860496
Iteration: 12, Func. Count: 123, Neg. LLF: 118.39015173800469
Iteration: 13, Func. Count: 133, Neg. LLF: 118.37415940751583
Iteration: 14, Func. Count: 143, Neg. LLF: 118.36649427593547
Iteration: 15, Func. Count: 153, Neg. LLF: 118.3483344669806
Iteration: 16, Func. Count: 163, Neg. LLF: 118.34116952351191
Iteration: 17, Func. Count: 173, Neg. LLF: 118.339358652184
Iteration: 18, Func. Count: 183, Neg. LLF: 118.33711208057957
Iteration: 19, Func. Count: 193, Neg. LLF: 118.33547851311991
Iteration: 20, Func. Count: 203, Neg. LLF: 118.34087914947364
Iteration: 21, Func. Count: 214, Neg. LLF: 125.78302864200587
Iteration: 22, Func. Count: 227, Neg. LLF: 118.50183139723998
Iteration: 23, Func. Count: 239, Neg. LLF: 118.33242451747661
Iteration: 24, Func. Count: 249, Neg. LLF: 118.3240899642616
Iteration: 25, Func. Count: 259, Neg. LLF: 118.32155950047174
Iteration: 26, Func. Count: 269, Neg. LLF: 118.32127432635374
Iteration: 27, Func. Count: 279, Neg. LLF: 118.32126250668604
Iteration: 28, Func. Count: 289, Neg. LLF: 118.32126153061836
Optimization terminated successfully (Exit mode 0)
Current function value: 118.32126153061836
Iterations: 29
Function evaluations: 289
Gradient evaluations: 28
Iteration: 1, Func. Count: 12, Neg. LLF: 129.15767938155176
Iteration: 2, Func. Count: 25, Neg. LLF: 118.42246125626754
Iteration: 3, Func. Count: 36, Neg. LLF: 118.38931679096258
Iteration: 4, Func. Count: 47, Neg. LLF: 118.3581022503359
Iteration: 5, Func. Count: 58, Neg. LLF: 118.33189419627989
Iteration: 6, Func. Count: 69, Neg. LLF: 118.29567150689113
Iteration: 7, Func. Count: 80, Neg. LLF: 118.29075990985875
Iteration: 8, Func. Count: 91, Neg. LLF: 118.27254376105145
Iteration: 9, Func. Count: 102, Neg. LLF: 118.26180156142183
Iteration: 10, Func. Count: 113, Neg. LLF: 118.25917220148858
Iteration: 11, Func. Count: 124, Neg. LLF: 118.24313993605985
Iteration: 12, Func. Count: 135, Neg. LLF: 118.2737865951639
Iteration: 13, Func. Count: 147, Neg. LLF: 118.23360282880984
Iteration: 14, Func. Count: 159, Neg. LLF: 118.25271813526206
Iteration: 15, Func. Count: 171, Neg. LLF: 118.216077295437
Iteration: 16, Func. Count: 182, Neg. LLF: 118.21559713001906
Iteration: 17, Func. Count: 193, Neg. LLF: 118.21335888572017
Iteration: 18, Func. Count: 204, Neg. LLF: 118.21203952652871
Iteration: 19, Func. Count: 215, Neg. LLF: 118.20217068007024
Iteration: 20, Func. Count: 226, Neg. LLF: 118.19362020523724
Iteration: 21, Func. Count: 237, Neg. LLF: 118.17913323995985
Iteration: 22, Func. Count: 248, Neg. LLF: 118.1843182986048
Iteration: 23, Func. Count: 260, Neg. LLF: 118.17527802960169
Iteration: 24, Func. Count: 271, Neg. LLF: 118.17515650921558
Iteration: 25, Func. Count: 282, Neg. LLF: 118.17515073793463
Iteration: 26, Func. Count: 292, Neg. LLF: 118.17515073169947
Optimization terminated successfully (Exit mode 0)
Current function value: 118.17515073793463
Iterations: 26
Function evaluations: 292
Gradient evaluations: 26
Iteration: 1, Func. Count: 9, Neg. LLF: 122.80859129971718
Iteration: 2, Func. Count: 18, Neg. LLF: 118.91156982775428
Iteration: 3, Func. Count: 26, Neg. LLF: 118.75745753079477
Iteration: 4, Func. Count: 34, Neg. LLF: 118.46166430046215
Iteration: 5, Func. Count: 42, Neg. LLF: 119.39500054601065
Iteration: 6, Func. Count: 51, Neg. LLF: 118.38395598101789
Iteration: 7, Func. Count: 59, Neg. LLF: 118.52783812707429
Iteration: 8, Func. Count: 68, Neg. LLF: 118.38055259258941
Iteration: 9, Func. Count: 76, Neg. LLF: 118.38026856507958
Iteration: 10, Func. Count: 84, Neg. LLF: 118.38026789626326
Optimization terminated successfully (Exit mode 0)
Current function value: 118.38026789626326
Iterations: 10
Function evaluations: 84
Gradient evaluations: 10
Iteration: 1, Func. Count: 10, Neg. LLF: 132.08866904848708
Iteration: 2, Func. Count: 21, Neg. LLF: 118.39430377659572
Iteration: 3, Func. Count: 30, Neg. LLF: 118.39029583008514
Iteration: 4, Func. Count: 39, Neg. LLF: 118.42009202745017
Iteration: 5, Func. Count: 49, Neg. LLF: 118.39002132643151
Iteration: 6, Func. Count: 58, Neg. LLF: 118.39000033794247
Iteration: 7, Func. Count: 67, Neg. LLF: 118.3898620803964
Iteration: 8, Func. Count: 76, Neg. LLF: 118.38901681985546
Iteration: 9, Func. Count: 85, Neg. LLF: 118.38469592366326
Iteration: 10, Func. Count: 94, Neg. LLF: 118.38504026987076
Iteration: 11, Func. Count: 104, Neg. LLF: 118.38413048330847
Iteration: 12, Func. Count: 113, Neg. LLF: 118.38411897717174
Iteration: 13, Func. Count: 123, Neg. LLF: 118.38402959321495
Iteration: 14, Func. Count: 131, Neg. LLF: 118.38402959321247
Optimization terminated successfully (Exit mode 0)
Current function value: 118.38402959321495
Iterations: 14
Function evaluations: 131
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 124.66773417355299
Iteration: 2, Func. Count: 23, Neg. LLF: 118.73233677777174
Iteration: 3, Func. Count: 34, Neg. LLF: 118.38903858888162
Iteration: 4, Func. Count: 44, Neg. LLF: 118.48039856217918
Iteration: 5, Func. Count: 55, Neg. LLF: 118.37591721111927
Iteration: 6, Func. Count: 65, Neg. LLF: 118.33500696262688
Iteration: 7, Func. Count: 75, Neg. LLF: 118.42805085627835
Iteration: 8, Func. Count: 86, Neg. LLF: 118.32327535674894
Iteration: 9, Func. Count: 96, Neg. LLF: 118.32133129283548
Iteration: 10, Func. Count: 106, Neg. LLF: 118.321317046765
Iteration: 11, Func. Count: 116, Neg. LLF: 118.32131064337598
Iteration: 12, Func. Count: 126, Neg. LLF: 118.32130159188894
Iteration: 13, Func. Count: 136, Neg. LLF: 118.32128430362143
Iteration: 14, Func. Count: 146, Neg. LLF: 118.32126877762781
Iteration: 15, Func. Count: 156, Neg. LLF: 118.32126227127429
Iteration: 16, Func. Count: 166, Neg. LLF: 118.32126150277695
Optimization terminated successfully (Exit mode 0)
Current function value: 118.32126150277695
Iterations: 16
Function evaluations: 166
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 136.0646893780588
Iteration: 2, Func. Count: 25, Neg. LLF: 118.4343206881585
Iteration: 3, Func. Count: 37, Neg. LLF: 118.36255959016503
Iteration: 4, Func. Count: 48, Neg. LLF: 118.35559491121849
Iteration: 5, Func. Count: 59, Neg. LLF: 118.32732576872561
Iteration: 6, Func. Count: 70, Neg. LLF: 118.31399223191836
Iteration: 7, Func. Count: 81, Neg. LLF: 118.29319468837231
Iteration: 8, Func. Count: 92, Neg. LLF: 118.25081469822324
Iteration: 9, Func. Count: 103, Neg. LLF: 118.09374407016477
Iteration: 10, Func. Count: 114, Neg. LLF: 117.84761946174305
Iteration: 11, Func. Count: 125, Neg. LLF: 120.80949334475665
Iteration: 12, Func. Count: 137, Neg. LLF: 117.76388412808278
Iteration: 13, Func. Count: 148, Neg. LLF: 117.72827576821797
Iteration: 14, Func. Count: 159, Neg. LLF: 117.72470895636275
Iteration: 15, Func. Count: 170, Neg. LLF: 117.72433381317184
Iteration: 16, Func. Count: 181, Neg. LLF: 117.7243289152412
Iteration: 17, Func. Count: 192, Neg. LLF: 117.7243431055202
Optimization terminated successfully (Exit mode 0)
Current function value: 117.72432891122564
Iterations: 18
Function evaluations: 194
Gradient evaluations: 17
Iteration: 1, Func. Count: 13, Neg. LLF: 125.14600013346775
Iteration: 2, Func. Count: 27, Neg. LLF: 119.2843918339248
Iteration: 3, Func. Count: 40, Neg. LLF: 118.38007832502343
Iteration: 4, Func. Count: 52, Neg. LLF: 118.36689665367346
Iteration: 5, Func. Count: 64, Neg. LLF: 118.2964840613722
Iteration: 6, Func. Count: 76, Neg. LLF: 118.27613159958452
Iteration: 7, Func. Count: 88, Neg. LLF: 118.273303761775
Iteration: 8, Func. Count: 100, Neg. LLF: 118.28370318504433
Iteration: 9, Func. Count: 113, Neg. LLF: 118.27029936425268
Iteration: 10, Func. Count: 125, Neg. LLF: 118.25771232333622
Iteration: 11, Func. Count: 137, Neg. LLF: 118.21095283688128
Iteration: 12, Func. Count: 149, Neg. LLF: 118.22213404673182
Iteration: 13, Func. Count: 162, Neg. LLF: 118.18499587217826
Iteration: 14, Func. Count: 174, Neg. LLF: 118.19937561338728
Iteration: 15, Func. Count: 187, Neg. LLF: 118.18376064373248
Iteration: 16, Func. Count: 199, Neg. LLF: 118.18356491095305
Iteration: 17, Func. Count: 211, Neg. LLF: 118.18342206592885
Iteration: 18, Func. Count: 223, Neg. LLF: 118.18333827014085
Iteration: 19, Func. Count: 235, Neg. LLF: 118.18324171007397
Iteration: 20, Func. Count: 247, Neg. LLF: 118.17665648973109
Iteration: 21, Func. Count: 259, Neg. LLF: 121.53964760849036
Iteration: 22, Func. Count: 272, Neg. LLF: 118.19998532814498
Iteration: 23, Func. Count: 285, Neg. LLF: 118.16742974101076
Iteration: 24, Func. Count: 298, Neg. LLF: 118.16355218183932
Iteration: 25, Func. Count: 310, Neg. LLF: 118.16346428072836
Iteration: 26, Func. Count: 322, Neg. LLF: 118.1634387245933
Iteration: 27, Func. Count: 333, Neg. LLF: 118.1634387179469
Optimization terminated successfully (Exit mode 0)
Current function value: 118.1634387245933
Iterations: 27
Function evaluations: 333
Gradient evaluations: 27
Iteration: 1, Func. Count: 10, Neg. LLF: 124.46973578257666
Iteration: 2, Func. Count: 20, Neg. LLF: 131.94127414925956
Iteration: 3, Func. Count: 30, Neg. LLF: 118.83369990056833
Iteration: 4, Func. Count: 39, Neg. LLF: 118.51057976551978
Iteration: 5, Func. Count: 48, Neg. LLF: 118.97748208428263
Iteration: 6, Func. Count: 58, Neg. LLF: 121.66149615400123
Iteration: 7, Func. Count: 69, Neg. LLF: 118.3615573591103
Iteration: 8, Func. Count: 78, Neg. LLF: 118.34989564426503
Iteration: 9, Func. Count: 87, Neg. LLF: 118.34872009715794
Iteration: 10, Func. Count: 96, Neg. LLF: 118.34866245120841
Iteration: 11, Func. Count: 105, Neg. LLF: 118.34865791246462
Iteration: 12, Func. Count: 113, Neg. LLF: 118.34865791245052
Optimization terminated successfully (Exit mode 0)
Current function value: 118.34865791246462
Iterations: 12
Function evaluations: 113
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 125.85008664656212
Iteration: 2, Func. Count: 23, Neg. LLF: 118.94436243543096
Iteration: 3, Func. Count: 34, Neg. LLF: 118.3787497033423
Iteration: 4, Func. Count: 44, Neg. LLF: 118.37377886454829
Iteration: 5, Func. Count: 54, Neg. LLF: 118.37304466304322
Iteration: 6, Func. Count: 64, Neg. LLF: 118.36813699408523
Iteration: 7, Func. Count: 74, Neg. LLF: 118.36667925731858
Iteration: 8, Func. Count: 84, Neg. LLF: 118.3592799897486
Iteration: 9, Func. Count: 94, Neg. LLF: 118.35510097329721
Iteration: 10, Func. Count: 104, Neg. LLF: 118.37823230780455
Iteration: 11, Func. Count: 115, Neg. LLF: 118.36635053124765
Iteration: 12, Func. Count: 126, Neg. LLF: 118.35222378835856
Iteration: 13, Func. Count: 136, Neg. LLF: 118.35221728803766
Iteration: 14, Func. Count: 146, Neg. LLF: 118.35221492033676
Iteration: 15, Func. Count: 155, Neg. LLF: 118.35221492031994
Optimization terminated successfully (Exit mode 0)
Current function value: 118.35221492033676
Iterations: 15
Function evaluations: 155
Gradient evaluations: 15
Iteration: 1, Func. Count: 12, Neg. LLF: 120.14563709752531
Iteration: 2, Func. Count: 25, Neg. LLF: 122.68647268153524
Iteration: 3, Func. Count: 37, Neg. LLF: 118.25773408708949
Iteration: 4, Func. Count: 48, Neg. LLF: 118.17074312635508
Iteration: 5, Func. Count: 59, Neg. LLF: 120.74918901261205
Iteration: 6, Func. Count: 72, Neg. LLF: 118.15995412079054
Iteration: 7, Func. Count: 84, Neg. LLF: 118.24082670049644
Iteration: 8, Func. Count: 96, Neg. LLF: 118.13665236460555
Iteration: 9, Func. Count: 107, Neg. LLF: 118.13659940614231
Iteration: 10, Func. Count: 118, Neg. LLF: 118.13656563269542
Iteration: 11, Func. Count: 129, Neg. LLF: 118.13654662882306
Iteration: 12, Func. Count: 140, Neg. LLF: 118.13654434070943
Iteration: 13, Func. Count: 150, Neg. LLF: 118.13654434067008
Optimization terminated successfully (Exit mode 0)
Current function value: 118.13654434070943
Iterations: 13
Function evaluations: 150
Gradient evaluations: 13
Iteration: 1, Func. Count: 13, Neg. LLF: 122.5317935785121
Iteration: 2, Func. Count: 27, Neg. LLF: 122.58455188600664
Iteration: 3, Func. Count: 40, Neg. LLF: 118.13838234516624
Iteration: 4, Func. Count: 52, Neg. LLF: 118.11656188326933
Iteration: 5, Func. Count: 64, Neg. LLF: 118.09655124722264
Iteration: 6, Func. Count: 76, Neg. LLF: 118.16392530339665
Iteration: 7, Func. Count: 89, Neg. LLF: 118.07324356398809
Iteration: 8, Func. Count: 101, Neg. LLF: 118.06284802947681
Iteration: 9, Func. Count: 113, Neg. LLF: 118.05968378660876
Iteration: 10, Func. Count: 125, Neg. LLF: 118.05943387951622
Iteration: 11, Func. Count: 137, Neg. LLF: 118.0593640086568
Iteration: 12, Func. Count: 149, Neg. LLF: 118.05936176594857
Iteration: 13, Func. Count: 160, Neg. LLF: 118.05936176594872
Optimization terminated successfully (Exit mode 0)
Current function value: 118.05936176594857
Iterations: 13
Function evaluations: 160
Gradient evaluations: 13
Iteration: 1, Func. Count: 14, Neg. LLF: 122.42237339962423
Iteration: 2, Func. Count: 29, Neg. LLF: 120.32005448052684
Iteration: 3, Func. Count: 43, Neg. LLF: 118.15140561963794
Iteration: 4, Func. Count: 56, Neg. LLF: 118.14545759580209
Iteration: 5, Func. Count: 70, Neg. LLF: 118.22112099349779
Iteration: 6, Func. Count: 84, Neg. LLF: 118.24510934866791
Iteration: 7, Func. Count: 98, Neg. LLF: 118.09866589750469
Iteration: 8, Func. Count: 111, Neg. LLF: 118.07885431274649
Iteration: 9, Func. Count: 124, Neg. LLF: 118.06718073741666
Iteration: 10, Func. Count: 137, Neg. LLF: 118.06225366068365
Iteration: 11, Func. Count: 150, Neg. LLF: 118.05943237041716
Iteration: 12, Func. Count: 163, Neg. LLF: 118.05936392768315
Iteration: 13, Func. Count: 176, Neg. LLF: 118.05936186098009
Iteration: 14, Func. Count: 188, Neg. LLF: 118.05936190001567
Optimization terminated successfully (Exit mode 0)
Current function value: 118.05936186098009
Iterations: 14
Function evaluations: 188
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 124.29429434635348
Iteration: 2, Func. Count: 22, Neg. LLF: 130.2239182903281
Iteration: 3, Func. Count: 33, Neg. LLF: 118.85947150478276
Iteration: 4, Func. Count: 43, Neg. LLF: 118.58227874045575
Iteration: 5, Func. Count: 53, Neg. LLF: 119.31990576797914
Iteration: 6, Func. Count: 64, Neg. LLF: 118.30272141166965
Iteration: 7, Func. Count: 74, Neg. LLF: 118.11191885137748
Iteration: 8, Func. Count: 84, Neg. LLF: 118.09210551119997
Iteration: 9, Func. Count: 94, Neg. LLF: 118.07647465343689
Iteration: 10, Func. Count: 104, Neg. LLF: 118.0755092716574
Iteration: 11, Func. Count: 114, Neg. LLF: 118.07534000942584
Iteration: 12, Func. Count: 124, Neg. LLF: 118.07531188320654
Iteration: 13, Func. Count: 133, Neg. LLF: 118.0753118475214
Optimization terminated successfully (Exit mode 0)
Current function value: 118.07531188320654
Iterations: 13
Function evaluations: 133
Gradient evaluations: 13
Iteration: 1, Func. Count: 12, Neg. LLF: 123.697136755941
Iteration: 2, Func. Count: 25, Neg. LLF: 120.67625874619752
Iteration: 3, Func. Count: 37, Neg. LLF: 118.69677657223791
Iteration: 4, Func. Count: 49, Neg. LLF: 118.3928220076856
Iteration: 5, Func. Count: 61, Neg. LLF: 118.36401685286444
Iteration: 6, Func. Count: 72, Neg. LLF: 118.3730199234138
Iteration: 7, Func. Count: 84, Neg. LLF: 118.36271517081539
Iteration: 8, Func. Count: 95, Neg. LLF: 118.35574568895908
Iteration: 9, Func. Count: 106, Neg. LLF: 118.30294555204904
Iteration: 10, Func. Count: 117, Neg. LLF: 118.26726962423403
Iteration: 11, Func. Count: 128, Neg. LLF: 118.56042143975775
Iteration: 12, Func. Count: 140, Neg. LLF: 118.17358554881211
Iteration: 13, Func. Count: 151, Neg. LLF: 118.0852831517996
Iteration: 14, Func. Count: 162, Neg. LLF: 118.0763144719524
Iteration: 15, Func. Count: 173, Neg. LLF: 118.07590091756786
Iteration: 16, Func. Count: 184, Neg. LLF: 118.07533646321646
Iteration: 17, Func. Count: 195, Neg. LLF: 118.07531481609044
Iteration: 18, Func. Count: 206, Neg. LLF: 118.07531229202309
Iteration: 19, Func. Count: 216, Neg. LLF: 118.07531230939858
Optimization terminated successfully (Exit mode 0)
Current function value: 118.07531229202309
Iterations: 19
Function evaluations: 216
Gradient evaluations: 19
Iteration: 1, Func. Count: 13, Neg. LLF: 122.87525582334698
Iteration: 2, Func. Count: 27, Neg. LLF: 121.62495143263702
Iteration: 3, Func. Count: 40, Neg. LLF: 122.59480457770795
Iteration: 4, Func. Count: 53, Neg. LLF: 118.09171678513883
Iteration: 5, Func. Count: 65, Neg. LLF: 118.16869751298815
Iteration: 6, Func. Count: 78, Neg. LLF: 118.18645853721159
Iteration: 7, Func. Count: 91, Neg. LLF: 118.02492880225424
Iteration: 8, Func. Count: 103, Neg. LLF: 118.02363981766575
Iteration: 9, Func. Count: 115, Neg. LLF: 118.02245760676445
Iteration: 10, Func. Count: 127, Neg. LLF: 118.0218102192695
Iteration: 11, Func. Count: 139, Neg. LLF: 118.02173813298238
Iteration: 12, Func. Count: 151, Neg. LLF: 118.02173479691517
Iteration: 13, Func. Count: 162, Neg. LLF: 118.02173479687288
Optimization terminated successfully (Exit mode 0)
Current function value: 118.02173479691517
Iterations: 13
Function evaluations: 162
Gradient evaluations: 13
Iteration: 1, Func. Count: 14, Neg. LLF: 122.93423336734472
Iteration: 2, Func. Count: 29, Neg. LLF: 121.63357906530165
Iteration: 3, Func. Count: 43, Neg. LLF: 130.75856751937025
Iteration: 4, Func. Count: 58, Neg. LLF: 118.04724636419171
Iteration: 5, Func. Count: 71, Neg. LLF: 118.04373578824153
Iteration: 6, Func. Count: 85, Neg. LLF: 118.08934386965808
Iteration: 7, Func. Count: 99, Neg. LLF: 118.19284890950725
Iteration: 8, Func. Count: 113, Neg. LLF: 118.01621360907907
Iteration: 9, Func. Count: 126, Neg. LLF: 118.01573432261131
Iteration: 10, Func. Count: 139, Neg. LLF: 118.0156609146786
Iteration: 11, Func. Count: 152, Neg. LLF: 118.01548090954196
Iteration: 12, Func. Count: 165, Neg. LLF: 118.01539288280038
Iteration: 13, Func. Count: 178, Neg. LLF: 118.01536304327433
Iteration: 14, Func. Count: 191, Neg. LLF: 118.01536105229324
Iteration: 15, Func. Count: 203, Neg. LLF: 118.01536105227662
Optimization terminated successfully (Exit mode 0)
Current function value: 118.01536105229324
Iterations: 15
Function evaluations: 203
Gradient evaluations: 15
Iteration: 1, Func. Count: 15, Neg. LLF: 121.36503686832978
Iteration: 2, Func. Count: 31, Neg. LLF: 123.3304074343887
Iteration: 3, Func. Count: 46, Neg. LLF: 119.05253701999602
Iteration: 4, Func. Count: 61, Neg. LLF: 118.11522590449508
Iteration: 5, Func. Count: 75, Neg. LLF: 118.00460459023418
Iteration: 6, Func. Count: 89, Neg. LLF: 117.91558223809007
Iteration: 7, Func. Count: 103, Neg. LLF: 117.90498411653336
Iteration: 8, Func. Count: 117, Neg. LLF: 117.84597570037582
Iteration: 9, Func. Count: 131, Neg. LLF: 117.77118867033607
Iteration: 10, Func. Count: 145, Neg. LLF: 117.8372292505808
Iteration: 11, Func. Count: 160, Neg. LLF: 117.6030024934407
Iteration: 12, Func. Count: 175, Neg. LLF: 117.52260764595418
Iteration: 13, Func. Count: 190, Neg. LLF: 117.36190371285102
Iteration: 14, Func. Count: 204, Neg. LLF: 117.13840192479933
Iteration: 15, Func. Count: 218, Neg. LLF: 117.1247190932035
Iteration: 16, Func. Count: 232, Neg. LLF: 117.12335777763498
Iteration: 17, Func. Count: 246, Neg. LLF: 117.12324695718247
Iteration: 18, Func. Count: 260, Neg. LLF: 117.12324203200339
Iteration: 19, Func. Count: 273, Neg. LLF: 117.12324200710259
Optimization terminated successfully (Exit mode 0)
Current function value: 117.12324203200339
Iterations: 19
Function evaluations: 273
Gradient evaluations: 19
Iteration: 1, Func. Count: 12, Neg. LLF: 122.83067406879323
Iteration: 2, Func. Count: 24, Neg. LLF: 122.7518735580668
Iteration: 3, Func. Count: 37, Neg. LLF: 118.5060574389538
Iteration: 4, Func. Count: 48, Neg. LLF: 119.99469671543554
Iteration: 5, Func. Count: 60, Neg. LLF: 118.3210453115669
Iteration: 6, Func. Count: 72, Neg. LLF: 118.00446710937976
Iteration: 7, Func. Count: 84, Neg. LLF: 117.72828466775084
Iteration: 8, Func. Count: 96, Neg. LLF: 117.68104283060366
Iteration: 9, Func. Count: 107, Neg. LLF: 117.68020810150347
Iteration: 10, Func. Count: 118, Neg. LLF: 117.6801797093374
Iteration: 11, Func. Count: 130, Neg. LLF: 117.68011564262977
Iteration: 12, Func. Count: 140, Neg. LLF: 117.68011564260631
Optimization terminated successfully (Exit mode 0)
Current function value: 117.68011564262977
Iterations: 12
Function evaluations: 140
Gradient evaluations: 12
Iteration: 1, Func. Count: 13, Neg. LLF: 122.92517845234691
Iteration: 2, Func. Count: 27, Neg. LLF: 121.56882678928841
Iteration: 3, Func. Count: 40, Neg. LLF: 124.69412586531188
Iteration: 4, Func. Count: 54, Neg. LLF: 118.29542325358179
Iteration: 5, Func. Count: 67, Neg. LLF: 118.16244868591161
Iteration: 6, Func. Count: 80, Neg. LLF: 117.83347126309857
Iteration: 7, Func. Count: 92, Neg. LLF: 117.76727756333726
Iteration: 8, Func. Count: 104, Neg. LLF: 117.71029279138249
Iteration: 9, Func. Count: 116, Neg. LLF: 117.6822631557434
Iteration: 10, Func. Count: 128, Neg. LLF: 117.68076604950657
Iteration: 11, Func. Count: 140, Neg. LLF: 117.6801997038216
Iteration: 12, Func. Count: 152, Neg. LLF: 117.68013865034204
Iteration: 13, Func. Count: 164, Neg. LLF: 117.6801163087986
Iteration: 14, Func. Count: 176, Neg. LLF: 117.68011557748888
Optimization terminated successfully (Exit mode 0)
Current function value: 117.68011557748888
Iterations: 14
Function evaluations: 176
Gradient evaluations: 14
Iteration: 1, Func. Count: 14, Neg. LLF: 121.2589727252866
Iteration: 2, Func. Count: 29, Neg. LLF: 120.11585436335051
Iteration: 3, Func. Count: 43, Neg. LLF: 118.9881848778573
Iteration: 4, Func. Count: 57, Neg. LLF: 119.80004272902782
Iteration: 5, Func. Count: 71, Neg. LLF: 117.97097690823993
Iteration: 6, Func. Count: 85, Neg. LLF: 117.82302203191882
Iteration: 7, Func. Count: 98, Neg. LLF: 118.08648436722801
Iteration: 8, Func. Count: 112, Neg. LLF: 117.75004704844866
Iteration: 9, Func. Count: 125, Neg. LLF: 117.68152542772327
Iteration: 10, Func. Count: 138, Neg. LLF: 117.68041814569033
Iteration: 11, Func. Count: 151, Neg. LLF: 117.68016443132795
Iteration: 12, Func. Count: 164, Neg. LLF: 117.68011712130782
Iteration: 13, Func. Count: 177, Neg. LLF: 117.68011552441261
Iteration: 14, Func. Count: 189, Neg. LLF: 117.68011553608024
Optimization terminated successfully (Exit mode 0)
Current function value: 117.68011552441261
Iterations: 14
Function evaluations: 189
Gradient evaluations: 14
Iteration: 1, Func. Count: 15, Neg. LLF: 121.02233023788567
Iteration: 2, Func. Count: 31, Neg. LLF: 119.64773099168725
Iteration: 3, Func. Count: 46, Neg. LLF: 119.17632251495368
Iteration: 4, Func. Count: 61, Neg. LLF: 119.02137875197614
Iteration: 5, Func. Count: 76, Neg. LLF: 117.52417239074985
Iteration: 6, Func. Count: 90, Neg. LLF: 117.47967143245718
Iteration: 7, Func. Count: 104, Neg. LLF: 117.44515335521659
Iteration: 8, Func. Count: 118, Neg. LLF: 117.42029530062824
Iteration: 9, Func. Count: 132, Neg. LLF: 117.40081333952061
Iteration: 10, Func. Count: 146, Neg. LLF: 117.39207690285262
Iteration: 11, Func. Count: 160, Neg. LLF: 117.39090917836765
Iteration: 12, Func. Count: 174, Neg. LLF: 117.39089281434806
Iteration: 13, Func. Count: 188, Neg. LLF: 117.39089196054154
Optimization terminated successfully (Exit mode 0)
Current function value: 117.39089196054154
Iterations: 13
Function evaluations: 188
Gradient evaluations: 13
Iteration: 1, Func. Count: 16, Neg. LLF: 121.91050008067958
Iteration: 2, Func. Count: 33, Neg. LLF: 121.27009012126601
Iteration: 3, Func. Count: 49, Neg. LLF: 118.644965048249
Iteration: 4, Func. Count: 65, Neg. LLF: 119.21364133482163
Iteration: 5, Func. Count: 81, Neg. LLF: 117.59878599859556
Iteration: 6, Func. Count: 96, Neg. LLF: 117.72908189409593
Iteration: 7, Func. Count: 112, Neg. LLF: 117.5278911009171
Iteration: 8, Func. Count: 127, Neg. LLF: 117.5062245801731
Iteration: 9, Func. Count: 142, Neg. LLF: 117.45264176833189
Iteration: 10, Func. Count: 157, Neg. LLF: 117.42164686946849
Iteration: 11, Func. Count: 172, Neg. LLF: 117.40507585124828
Iteration: 12, Func. Count: 187, Neg. LLF: 117.39134737861335
Iteration: 13, Func. Count: 202, Neg. LLF: 117.39090720261545
Iteration: 14, Func. Count: 217, Neg. LLF: 117.39089527484863
Iteration: 15, Func. Count: 232, Neg. LLF: 117.39089203623875
Iteration: 16, Func. Count: 246, Neg. LLF: 117.39089212136636
Optimization terminated successfully (Exit mode 0)
Current function value: 117.39089203623875
Iterations: 16
Function evaluations: 246
Gradient evaluations: 16
Iteration: 1, Func. Count: 5, Neg. LLF: 124.18345030515096
Iteration: 2, Func. Count: 10, Neg. LLF: 134.34241611475076
Iteration: 3, Func. Count: 15, Neg. LLF: 118.45594022724539
Iteration: 4, Func. Count: 19, Neg. LLF: 118.42103498400903
Iteration: 5, Func. Count: 23, Neg. LLF: 118.39753844715548
Iteration: 6, Func. Count: 27, Neg. LLF: 118.39690046527515
Iteration: 7, Func. Count: 31, Neg. LLF: 118.39690519263031
Iteration: 8, Func. Count: 36, Neg. LLF: 118.39679774842365
Iteration: 9, Func. Count: 40, Neg. LLF: 118.39679593765608
Iteration: 10, Func. Count: 43, Neg. LLF: 118.39679593765604
Optimization terminated successfully (Exit mode 0)
Current function value: 118.39679593765608
Iterations: 10
Function evaluations: 43
Gradient evaluations: 10
Iteration: 1, Func. Count: 5, Neg. LLF: 153.27009049126687
Iteration: 2, Func. Count: 11, Neg. LLF: 174.25335358826524
Iteration: 3, Func. Count: 16, Neg. LLF: 124.90258693376126
Iteration: 4, Func. Count: 20, Neg. LLF: 124.88768131028519
Iteration: 5, Func. Count: 24, Neg. LLF: 124.87716059044749
Iteration: 6, Func. Count: 28, Neg. LLF: 124.87679517757873
Iteration: 7, Func. Count: 32, Neg. LLF: 124.87677389738931
Iteration: 8, Func. Count: 35, Neg. LLF: 124.87677389740583
Optimization terminated successfully (Exit mode 0)
Current function value: 124.87677389738931
Iterations: 8
Function evaluations: 35
Gradient evaluations: 8
Iteration: 1, Func. Count: 6, Neg. LLF: 129.76437566339476
Iteration: 2, Func. Count: 12, Neg. LLF: 126.06231992209187
Iteration: 3, Func. Count: 17, Neg. LLF: 126.78689907648159
Iteration: 4, Func. Count: 23, Neg. LLF: 124.98787168374209
Iteration: 5, Func. Count: 28, Neg. LLF: 124.94086661437544
Iteration: 6, Func. Count: 33, Neg. LLF: 124.88127564756226
Iteration: 7, Func. Count: 38, Neg. LLF: 124.87720617456188
Iteration: 8, Func. Count: 43, Neg. LLF: 124.87678804942684
Iteration: 9, Func. Count: 48, Neg. LLF: 124.8767747768282
Iteration: 10, Func. Count: 53, Neg. LLF: 124.87677332724184
Iteration: 11, Func. Count: 57, Neg. LLF: 124.87677343298914
Optimization terminated successfully (Exit mode 0)
Current function value: 124.87677332724184
Iterations: 11
Function evaluations: 57
Gradient evaluations: 11
Iteration: 1, Func. Count: 7, Neg. LLF: 128.8638808396833
Iteration: 2, Func. Count: 14, Neg. LLF: 126.30675636496474
Iteration: 3, Func. Count: 20, Neg. LLF: 127.01722463795343
Iteration: 4, Func. Count: 27, Neg. LLF: 129.3887035646953
Iteration: 5, Func. Count: 35, Neg. LLF: 129.18080970788802
Iteration: 6, Func. Count: 42, Neg. LLF: 124.89018000585769
Iteration: 7, Func. Count: 48, Neg. LLF: 124.87742469453141
Iteration: 8, Func. Count: 54, Neg. LLF: 124.87686676005825
Iteration: 9, Func. Count: 60, Neg. LLF: 124.87677340387214
Iteration: 10, Func. Count: 65, Neg. LLF: 124.87677346846911
Optimization terminated successfully (Exit mode 0)
Current function value: 124.87677340387214
Iterations: 10
Function evaluations: 65
Gradient evaluations: 10
Iteration: 1, Func. Count: 8, Neg. LLF: 128.9754635659511
Iteration: 2, Func. Count: 16, Neg. LLF: 126.643212649455
Iteration: 3, Func. Count: 23, Neg. LLF: 127.03745912104608
Iteration: 4, Func. Count: 31, Neg. LLF: 132.96507447189026
Iteration: 5, Func. Count: 40, Neg. LLF: 130.47936686106775
Iteration: 6, Func. Count: 48, Neg. LLF: 124.90019333668371
Iteration: 7, Func. Count: 55, Neg. LLF: 124.87851198924686
Iteration: 8, Func. Count: 62, Neg. LLF: 124.8769789404062
Iteration: 9, Func. Count: 69, Neg. LLF: 124.87677723935559
Iteration: 10, Func. Count: 76, Neg. LLF: 124.876773529569
Iteration: 11, Func. Count: 82, Neg. LLF: 124.87677370802696
Optimization terminated successfully (Exit mode 0)
Current function value: 124.876773529569
Iterations: 11
Function evaluations: 82
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 130.9141263751778
Iteration: 2, Func. Count: 18, Neg. LLF: 126.76980756272478
Iteration: 3, Func. Count: 27, Neg. LLF: 131.7567263480011
Iteration: 4, Func. Count: 36, Neg. LLF: 133.30399821883577
Iteration: 5, Func. Count: 45, Neg. LLF: 125.07071816649238
Iteration: 6, Func. Count: 53, Neg. LLF: 124.88510162241884
Iteration: 7, Func. Count: 61, Neg. LLF: 124.87819512442671
Iteration: 8, Func. Count: 70, Neg. LLF: 124.84586794563268
Iteration: 9, Func. Count: 78, Neg. LLF: 124.84520715069633
Iteration: 10, Func. Count: 86, Neg. LLF: 124.84519400697363
Iteration: 11, Func. Count: 94, Neg. LLF: 124.84519335657336
Optimization terminated successfully (Exit mode 0)
Current function value: 124.84519335657336
Iterations: 11
Function evaluations: 94
Gradient evaluations: 11
Iteration: 1, Func. Count: 6, Neg. LLF: 147.18724198793268
Iteration: 2, Func. Count: 12, Neg. LLF: 194.97027731295975
Iteration: 3, Func. Count: 18, Neg. LLF: 125.16556769314002
Iteration: 4, Func. Count: 23, Neg. LLF: 125.0567760371563
Iteration: 5, Func. Count: 28, Neg. LLF: 124.92725519659098
Iteration: 6, Func. Count: 33, Neg. LLF: 124.89179117158389
Iteration: 7, Func. Count: 38, Neg. LLF: 124.87841394189792
Iteration: 8, Func. Count: 43, Neg. LLF: 124.87679754262244
Iteration: 9, Func. Count: 48, Neg. LLF: 124.87677384986092
Iteration: 10, Func. Count: 53, Neg. LLF: 124.87677333399262
Optimization terminated successfully (Exit mode 0)
Current function value: 124.87677333399262
Iterations: 10
Function evaluations: 53
Gradient evaluations: 10
Iteration: 1, Func. Count: 7, Neg. LLF: 127.64991691380204
Iteration: 2, Func. Count: 14, Neg. LLF: 126.22878383623537
Iteration: 3, Func. Count: 20, Neg. LLF: 124.95505115042928
Iteration: 4, Func. Count: 26, Neg. LLF: 124.97494705529958
Iteration: 5, Func. Count: 33, Neg. LLF: 124.88174982392727
Iteration: 6, Func. Count: 39, Neg. LLF: 124.87706029850324
Iteration: 7, Func. Count: 45, Neg. LLF: 124.87677396384422
Iteration: 8, Func. Count: 51, Neg. LLF: 124.87677333525491
Optimization terminated successfully (Exit mode 0)
Current function value: 124.87677333525491
Iterations: 8
Function evaluations: 51
Gradient evaluations: 8
Iteration: 1, Func. Count: 8, Neg. LLF: 127.59987102868995
Iteration: 2, Func. Count: 16, Neg. LLF: 126.11796848873591
Iteration: 3, Func. Count: 23, Neg. LLF: 124.95096567531388
Iteration: 4, Func. Count: 30, Neg. LLF: 125.02200672903999
Iteration: 5, Func. Count: 38, Neg. LLF: 124.89467500821743
Iteration: 6, Func. Count: 45, Neg. LLF: 124.87783538279946
Iteration: 7, Func. Count: 52, Neg. LLF: 124.87680269844978
Iteration: 8, Func. Count: 59, Neg. LLF: 124.87677407347154
Iteration: 9, Func. Count: 66, Neg. LLF: 124.87677332731454
Optimization terminated successfully (Exit mode 0)
Current function value: 124.87677332731454
Iterations: 9
Function evaluations: 66
Gradient evaluations: 9
Iteration: 1, Func. Count: 9, Neg. LLF: 127.56007876454134
Iteration: 2, Func. Count: 19, Neg. LLF: 126.25538551560706
Iteration: 3, Func. Count: 27, Neg. LLF: 125.44078243559568
Iteration: 4, Func. Count: 35, Neg. LLF: 130.03865047969643
Iteration: 5, Func. Count: 44, Neg. LLF: 124.91024350269383
Iteration: 6, Func. Count: 52, Neg. LLF: 124.97810903481619
Iteration: 7, Func. Count: 61, Neg. LLF: 124.87704709980555
Iteration: 8, Func. Count: 69, Neg. LLF: 124.87677424192056
Iteration: 9, Func. Count: 77, Neg. LLF: 124.87677354189334
Optimization terminated successfully (Exit mode 0)
Current function value: 124.87677354189334
Iterations: 9
Function evaluations: 77
Gradient evaluations: 9
Iteration: 1, Func. Count: 10, Neg. LLF: 127.53691015148536
Iteration: 2, Func. Count: 20, Neg. LLF: 126.40165217097862
Iteration: 3, Func. Count: 29, Neg. LLF: 193.85522289755122
Iteration: 4, Func. Count: 40, Neg. LLF: 152.17152205948082
Iteration: 5, Func. Count: 50, Neg. LLF: 126.74072247014394
Iteration: 6, Func. Count: 61, Neg. LLF: 129.16513167640565
Iteration: 7, Func. Count: 71, Neg. LLF: 125.5135568782564
Iteration: 8, Func. Count: 81, Neg. LLF: 124.84961141745362
Iteration: 9, Func. Count: 90, Neg. LLF: 124.84525377660701
Iteration: 10, Func. Count: 99, Neg. LLF: 124.84521953165314
Iteration: 11, Func. Count: 108, Neg. LLF: 124.845213981874
Iteration: 12, Func. Count: 117, Neg. LLF: 124.84520389469601
Iteration: 13, Func. Count: 126, Neg. LLF: 124.84519624425694
Iteration: 14, Func. Count: 135, Neg. LLF: 124.84519360282773
Iteration: 15, Func. Count: 143, Neg. LLF: 124.84519360282974
Optimization terminated successfully (Exit mode 0)
Current function value: 124.84519360282773
Iterations: 15
Function evaluations: 143
Gradient evaluations: 15
Iteration: 1, Func. Count: 7, Neg. LLF: 136.73490499156946
Iteration: 2, Func. Count: 14, Neg. LLF: 293.5293217769263
Iteration: 3, Func. Count: 21, Neg. LLF: 125.23822454113498
Iteration: 4, Func. Count: 27, Neg. LLF: 125.16404162887194
Iteration: 5, Func. Count: 33, Neg. LLF: 124.96229349104968
Iteration: 6, Func. Count: 39, Neg. LLF: 124.90294342640247
Iteration: 7, Func. Count: 45, Neg. LLF: 124.87997092109545
Iteration: 8, Func. Count: 51, Neg. LLF: 124.87685031741609
Iteration: 9, Func. Count: 57, Neg. LLF: 124.87677351667081
Iteration: 10, Func. Count: 62, Neg. LLF: 124.87677361584585
Optimization terminated successfully (Exit mode 0)
Current function value: 124.87677351667081
Iterations: 10
Function evaluations: 62
Gradient evaluations: 10
Iteration: 1, Func. Count: 8, Neg. LLF: 127.71634650899449
Iteration: 2, Func. Count: 16, Neg. LLF: 126.41141694510638
Iteration: 3, Func. Count: 23, Neg. LLF: 125.08106528441728
Iteration: 4, Func. Count: 30, Neg. LLF: 125.10126658208576
Iteration: 5, Func. Count: 38, Neg. LLF: 124.87946365676005
Iteration: 6, Func. Count: 45, Neg. LLF: 124.87679596373493
Iteration: 7, Func. Count: 52, Neg. LLF: 124.87677335126897
Iteration: 8, Func. Count: 58, Neg. LLF: 124.87677345701367
Optimization terminated successfully (Exit mode 0)
Current function value: 124.87677335126897
Iterations: 8
Function evaluations: 58
Gradient evaluations: 8
Iteration: 1, Func. Count: 9, Neg. LLF: 127.66040996272405
Iteration: 2, Func. Count: 18, Neg. LLF: 126.25355025558846
Iteration: 3, Func. Count: 26, Neg. LLF: 125.07800213949315
Iteration: 4, Func. Count: 34, Neg. LLF: 129.19882094075916
Iteration: 5, Func. Count: 43, Neg. LLF: 124.93680691142484
Iteration: 6, Func. Count: 51, Neg. LLF: 124.87881309188158
Iteration: 7, Func. Count: 59, Neg. LLF: 124.87750637165786
Iteration: 8, Func. Count: 67, Neg. LLF: 124.87681669618978
Iteration: 9, Func. Count: 75, Neg. LLF: 124.87677392932166
Iteration: 10, Func. Count: 83, Neg. LLF: 124.87677333005531
Optimization terminated successfully (Exit mode 0)
Current function value: 124.87677333005531
Iterations: 10
Function evaluations: 83
Gradient evaluations: 10
Iteration: 1, Func. Count: 10, Neg. LLF: 127.62181184358417
Iteration: 2, Func. Count: 21, Neg. LLF: 126.27247892565445
Iteration: 3, Func. Count: 30, Neg. LLF: 125.48374180630674
Iteration: 4, Func. Count: 39, Neg. LLF: 129.24592007522367
Iteration: 5, Func. Count: 49, Neg. LLF: 124.944563230827
Iteration: 6, Func. Count: 58, Neg. LLF: 124.92268478635505
Iteration: 7, Func. Count: 67, Neg. LLF: 124.87828872836366
Iteration: 8, Func. Count: 76, Neg. LLF: 124.87705303685672
Iteration: 9, Func. Count: 85, Neg. LLF: 124.87679466086665
Iteration: 10, Func. Count: 94, Neg. LLF: 124.87677711979109
Iteration: 11, Func. Count: 103, Neg. LLF: 124.8767733325339
Iteration: 12, Func. Count: 111, Neg. LLF: 124.8767735110398
Optimization terminated successfully (Exit mode 0)
Current function value: 124.8767733325339
Iterations: 12
Function evaluations: 111
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 127.60177808044934
Iteration: 2, Func. Count: 22, Neg. LLF: 126.63841897632061
Iteration: 3, Func. Count: 32, Neg. LLF: 214.09979394888046
Iteration: 4, Func. Count: 45, Neg. LLF: 152.8418756059998
Iteration: 5, Func. Count: 56, Neg. LLF: 127.11370755412082
Iteration: 6, Func. Count: 69, Neg. LLF: 128.58230289818172
Iteration: 7, Func. Count: 80, Neg. LLF: 125.00310932133236
Iteration: 8, Func. Count: 91, Neg. LLF: 124.84569117583818
Iteration: 9, Func. Count: 101, Neg. LLF: 124.84525788242654
Iteration: 10, Func. Count: 111, Neg. LLF: 124.84523590809602
Iteration: 11, Func. Count: 121, Neg. LLF: 124.84522895992863
Iteration: 12, Func. Count: 131, Neg. LLF: 124.84520321416827
Iteration: 13, Func. Count: 141, Neg. LLF: 124.84519568480435
Iteration: 14, Func. Count: 151, Neg. LLF: 124.84519345486564
Iteration: 15, Func. Count: 160, Neg. LLF: 124.8451934547855
Optimization terminated successfully (Exit mode 0)
Current function value: 124.84519345486564
Iterations: 15
Function evaluations: 160
Gradient evaluations: 15
Iteration: 1, Func. Count: 8, Neg. LLF: 133.19898377178413
Iteration: 2, Func. Count: 16, Neg. LLF: 223.1126300809314
Iteration: 3, Func. Count: 24, Neg. LLF: 125.26312951192845
Iteration: 4, Func. Count: 31, Neg. LLF: 125.19255740831049
Iteration: 5, Func. Count: 38, Neg. LLF: 124.92653146418904
Iteration: 6, Func. Count: 45, Neg. LLF: 124.93833546592295
Iteration: 7, Func. Count: 53, Neg. LLF: 124.87725047481608
Iteration: 8, Func. Count: 60, Neg. LLF: 124.87677722319422
Iteration: 9, Func. Count: 67, Neg. LLF: 124.87677361766704
Iteration: 10, Func. Count: 73, Neg. LLF: 124.87677389147706
Optimization terminated successfully (Exit mode 0)
Current function value: 124.87677361766704
Iterations: 10
Function evaluations: 73
Gradient evaluations: 10
Iteration: 1, Func. Count: 9, Neg. LLF: 127.71558056409089
Iteration: 2, Func. Count: 18, Neg. LLF: 126.44140767172644
Iteration: 3, Func. Count: 26, Neg. LLF: 125.10273592635299
Iteration: 4, Func. Count: 34, Neg. LLF: 125.07394271083291
Iteration: 5, Func. Count: 43, Neg. LLF: 124.87875581194817
Iteration: 6, Func. Count: 51, Neg. LLF: 124.87680101314828
Iteration: 7, Func. Count: 59, Neg. LLF: 124.87677339399251
Iteration: 8, Func. Count: 66, Neg. LLF: 124.87677349974082
Optimization terminated successfully (Exit mode 0)
Current function value: 124.87677339399251
Iterations: 8
Function evaluations: 66
Gradient evaluations: 8
Iteration: 1, Func. Count: 10, Neg. LLF: 127.66540928252327
Iteration: 2, Func. Count: 20, Neg. LLF: 126.28660885288178
Iteration: 3, Func. Count: 29, Neg. LLF: 125.1117094259003
Iteration: 4, Func. Count: 38, Neg. LLF: 128.82097357199993
Iteration: 5, Func. Count: 48, Neg. LLF: 124.96173378645035
Iteration: 6, Func. Count: 57, Neg. LLF: 124.87808849990567
Iteration: 7, Func. Count: 66, Neg. LLF: 124.87703545945641
Iteration: 8, Func. Count: 75, Neg. LLF: 124.8768249236212
Iteration: 9, Func. Count: 84, Neg. LLF: 124.87677428566141
Iteration: 10, Func. Count: 93, Neg. LLF: 124.87677332800646
Optimization terminated successfully (Exit mode 0)
Current function value: 124.87677332800646
Iterations: 10
Function evaluations: 93
Gradient evaluations: 10
Iteration: 1, Func. Count: 11, Neg. LLF: 127.63239759382888
Iteration: 2, Func. Count: 23, Neg. LLF: 126.27569680435285
Iteration: 3, Func. Count: 33, Neg. LLF: 125.49918530541707
Iteration: 4, Func. Count: 43, Neg. LLF: 128.98815070373513
Iteration: 5, Func. Count: 54, Neg. LLF: 124.96785646564769
Iteration: 6, Func. Count: 64, Neg. LLF: 124.8907996687678
Iteration: 7, Func. Count: 74, Neg. LLF: 124.87812327996816
Iteration: 8, Func. Count: 84, Neg. LLF: 124.8768445692239
Iteration: 9, Func. Count: 94, Neg. LLF: 124.87679359581635
Iteration: 10, Func. Count: 104, Neg. LLF: 124.87677332889875
Iteration: 11, Func. Count: 113, Neg. LLF: 124.876773507405
Optimization terminated successfully (Exit mode 0)
Current function value: 124.87677332889875
Iterations: 11
Function evaluations: 113
Gradient evaluations: 11
Iteration: 1, Func. Count: 12, Neg. LLF: 127.61502063547486
Iteration: 2, Func. Count: 24, Neg. LLF: 126.71636231053286
Iteration: 3, Func. Count: 35, Neg. LLF: 218.6920885392808
Iteration: 4, Func. Count: 49, Neg. LLF: 150.95476566567885
Iteration: 5, Func. Count: 61, Neg. LLF: 127.18559599111907
Iteration: 6, Func. Count: 75, Neg. LLF: 128.5082544222353
Iteration: 7, Func. Count: 87, Neg. LLF: 124.93721489534464
Iteration: 8, Func. Count: 98, Neg. LLF: 124.85603811451521
Iteration: 9, Func. Count: 109, Neg. LLF: 124.84632242159763
Iteration: 10, Func. Count: 120, Neg. LLF: 124.84527992761407
Iteration: 11, Func. Count: 131, Neg. LLF: 124.84525327336655
Iteration: 12, Func. Count: 142, Neg. LLF: 124.84524194509633
Iteration: 13, Func. Count: 153, Neg. LLF: 124.84522034516249
Iteration: 14, Func. Count: 164, Neg. LLF: 124.84520330184158
Iteration: 15, Func. Count: 175, Neg. LLF: 124.8451946314015
Iteration: 16, Func. Count: 186, Neg. LLF: 124.8451933709836
Iteration: 17, Func. Count: 196, Neg. LLF: 124.84519337092082
Optimization terminated successfully (Exit mode 0)
Current function value: 124.8451933709836
Iterations: 17
Function evaluations: 196
Gradient evaluations: 17
Iteration: 1, Func. Count: 5, Neg. LLF: 130.59397692841242
Iteration: 2, Func. Count: 10, Neg. LLF: 136.41225925645477
Iteration: 3, Func. Count: 15, Neg. LLF: 123.96646460505958
Iteration: 4, Func. Count: 19, Neg. LLF: 123.95640713539972
Iteration: 5, Func. Count: 23, Neg. LLF: 123.95518049449053
Iteration: 6, Func. Count: 27, Neg. LLF: 123.95465317311522
Iteration: 7, Func. Count: 31, Neg. LLF: 123.95458543780822
Iteration: 8, Func. Count: 35, Neg. LLF: 123.95458345501248
Iteration: 9, Func. Count: 38, Neg. LLF: 123.95458345501687
Optimization terminated successfully (Exit mode 0)
Current function value: 123.95458345501248
Iterations: 9
Function evaluations: 38
Gradient evaluations: 9
Iteration: 1, Func. Count: 6, Neg. LLF: 125.805343035775
Iteration: 2, Func. Count: 12, Neg. LLF: 126.33736988870422
Iteration: 3, Func. Count: 18, Neg. LLF: 124.33795354648157
Iteration: 4, Func. Count: 24, Neg. LLF: 124.66450107011187
Iteration: 5, Func. Count: 30, Neg. LLF: 123.85791955688751
Iteration: 6, Func. Count: 35, Neg. LLF: 123.82466333032312
Iteration: 7, Func. Count: 40, Neg. LLF: 123.80593509597118
Iteration: 8, Func. Count: 45, Neg. LLF: 123.80583022593352
Iteration: 9, Func. Count: 51, Neg. LLF: 123.8053783574168
Iteration: 10, Func. Count: 56, Neg. LLF: 123.80537561900307
Iteration: 11, Func. Count: 60, Neg. LLF: 123.80537561898933
Optimization terminated successfully (Exit mode 0)
Current function value: 123.80537561900307
Iterations: 11
Function evaluations: 60
Gradient evaluations: 11
Iteration: 1, Func. Count: 7, Neg. LLF: 125.54274806404078
Iteration: 2, Func. Count: 13, Neg. LLF: 126.54644128540797
Iteration: 3, Func. Count: 20, Neg. LLF: 126.32379525813413
Iteration: 4, Func. Count: 27, Neg. LLF: 128.83419616523435
Iteration: 5, Func. Count: 35, Neg. LLF: 124.00527364844012
Iteration: 6, Func. Count: 42, Neg. LLF: 123.90351579513697
Iteration: 7, Func. Count: 48, Neg. LLF: 123.84038862509422
Iteration: 8, Func. Count: 54, Neg. LLF: 123.80903586153637
Iteration: 9, Func. Count: 60, Neg. LLF: 123.80801562502029
Iteration: 10, Func. Count: 67, Neg. LLF: 123.8053992266039
Iteration: 11, Func. Count: 73, Neg. LLF: 123.80537577583081
Iteration: 12, Func. Count: 78, Neg. LLF: 123.8053758364439
Optimization terminated successfully (Exit mode 0)
Current function value: 123.80537577583081
Iterations: 12
Function evaluations: 78
Gradient evaluations: 12
Iteration: 1, Func. Count: 8, Neg. LLF: 125.83121277353115
Iteration: 2, Func. Count: 15, Neg. LLF: 125.05290342270898
Iteration: 3, Func. Count: 22, Neg. LLF: 128.80432218051752
Iteration: 4, Func. Count: 30, Neg. LLF: 165.99213766526313
Iteration: 5, Func. Count: 38, Neg. LLF: 124.06158652349903
Iteration: 6, Func. Count: 45, Neg. LLF: 124.22397596809684
Iteration: 7, Func. Count: 53, Neg. LLF: 123.89815086205617
Iteration: 8, Func. Count: 60, Neg. LLF: 123.8730294338346
Iteration: 9, Func. Count: 67, Neg. LLF: 123.84531469962481
Iteration: 10, Func. Count: 74, Neg. LLF: 123.81649134308384
Iteration: 11, Func. Count: 81, Neg. LLF: 123.8083715005492
Iteration: 12, Func. Count: 88, Neg. LLF: 123.80551240814046
Iteration: 13, Func. Count: 95, Neg. LLF: 123.80537980842549
Iteration: 14, Func. Count: 102, Neg. LLF: 123.80537562321271
Iteration: 15, Func. Count: 108, Neg. LLF: 123.80537579842638
Optimization terminated successfully (Exit mode 0)
Current function value: 123.80537562321271
Iterations: 15
Function evaluations: 108
Gradient evaluations: 15
Iteration: 1, Func. Count: 9, Neg. LLF: 126.70315181385953
Iteration: 2, Func. Count: 18, Neg. LLF: 125.22519279083347
Iteration: 3, Func. Count: 27, Neg. LLF: 124.27625029149546
Iteration: 4, Func. Count: 35, Neg. LLF: 165.4026577674385
Iteration: 5, Func. Count: 45, Neg. LLF: 127.87719939699426
Iteration: 6, Func. Count: 54, Neg. LLF: 124.27856418444532
Iteration: 7, Func. Count: 63, Neg. LLF: 123.79799505909772
Iteration: 8, Func. Count: 71, Neg. LLF: 123.77149432487793
Iteration: 9, Func. Count: 79, Neg. LLF: 123.75614433141423
Iteration: 10, Func. Count: 87, Neg. LLF: 123.74355437964684
Iteration: 11, Func. Count: 95, Neg. LLF: 123.73977650666866
Iteration: 12, Func. Count: 103, Neg. LLF: 123.739699483542
Iteration: 13, Func. Count: 111, Neg. LLF: 123.7396984829998
Iteration: 14, Func. Count: 118, Neg. LLF: 123.73969848257059
Optimization terminated successfully (Exit mode 0)
Current function value: 123.7396984829998
Iterations: 14
Function evaluations: 118
Gradient evaluations: 14
Iteration: 1, Func. Count: 6, Neg. LLF: 133.50155501771235
Iteration: 2, Func. Count: 12, Neg. LLF: 127.70235361400489
Iteration: 3, Func. Count: 18, Neg. LLF: 123.86191265253355
Iteration: 4, Func. Count: 23, Neg. LLF: 123.85088742001886
Iteration: 5, Func. Count: 28, Neg. LLF: 123.85035637767494
Iteration: 6, Func. Count: 33, Neg. LLF: 123.8503409290976
Iteration: 7, Func. Count: 38, Neg. LLF: 123.85033903279475
Iteration: 8, Func. Count: 42, Neg. LLF: 123.85033903277937
Optimization terminated successfully (Exit mode 0)
Current function value: 123.85033903279475
Iterations: 8
Function evaluations: 42
Gradient evaluations: 8
Iteration: 1, Func. Count: 7, Neg. LLF: 127.50486243584068
Iteration: 2, Func. Count: 14, Neg. LLF: 125.49871724538667
Iteration: 3, Func. Count: 21, Neg. LLF: 124.2654566689144
Iteration: 4, Func. Count: 28, Neg. LLF: 123.90377448633814
Iteration: 5, Func. Count: 35, Neg. LLF: 123.88427171201883
Iteration: 6, Func. Count: 41, Neg. LLF: 123.87200167882355
Iteration: 7, Func. Count: 47, Neg. LLF: 123.86221223481805
Iteration: 8, Func. Count: 53, Neg. LLF: 123.8515834651646
Iteration: 9, Func. Count: 59, Neg. LLF: 123.85040851448633
Iteration: 10, Func. Count: 65, Neg. LLF: 123.85033927536558
Iteration: 11, Func. Count: 70, Neg. LLF: 123.85033931781076
Optimization terminated successfully (Exit mode 0)
Current function value: 123.85033927536558
Iterations: 11
Function evaluations: 70
Gradient evaluations: 11
Iteration: 1, Func. Count: 8, Neg. LLF: 127.07042084901389
Iteration: 2, Func. Count: 16, Neg. LLF: 124.95790072602281
Iteration: 3, Func. Count: 24, Neg. LLF: 124.16018002133268
Iteration: 4, Func. Count: 32, Neg. LLF: 123.90004349971527
Iteration: 5, Func. Count: 39, Neg. LLF: 123.98251964958665
Iteration: 6, Func. Count: 47, Neg. LLF: 126.64472759549554
Iteration: 7, Func. Count: 55, Neg. LLF: 123.86329273200869
Iteration: 8, Func. Count: 62, Neg. LLF: 123.87276619900379
Iteration: 9, Func. Count: 70, Neg. LLF: 123.85599411176305
Iteration: 10, Func. Count: 77, Neg. LLF: 123.85263176869309
Iteration: 11, Func. Count: 84, Neg. LLF: 123.84908209110414
Iteration: 12, Func. Count: 91, Neg. LLF: 123.84868508033043
Iteration: 13, Func. Count: 98, Neg. LLF: 123.84866222627423
Iteration: 14, Func. Count: 105, Neg. LLF: 123.84866165318688
Optimization terminated successfully (Exit mode 0)
Current function value: 123.84866165318688
Iterations: 14
Function evaluations: 105
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 127.33611581948293
Iteration: 2, Func. Count: 18, Neg. LLF: 124.37546869841478
Iteration: 3, Func. Count: 26, Neg. LLF: 124.49619590145127
Iteration: 4, Func. Count: 35, Neg. LLF: 130.12010487601037
Iteration: 5, Func. Count: 46, Neg. LLF: 123.86985476469567
Iteration: 6, Func. Count: 54, Neg. LLF: 123.86518487140034
Iteration: 7, Func. Count: 62, Neg. LLF: 123.85221625449394
Iteration: 8, Func. Count: 70, Neg. LLF: 123.84984573945727
Iteration: 9, Func. Count: 78, Neg. LLF: 123.84874138556376
Iteration: 10, Func. Count: 86, Neg. LLF: 123.84866169712713
Iteration: 11, Func. Count: 93, Neg. LLF: 123.8486618899183
Optimization terminated successfully (Exit mode 0)
Current function value: 123.84866169712713
Iterations: 11
Function evaluations: 93
Gradient evaluations: 11
Iteration: 1, Func. Count: 10, Neg. LLF: 129.03366701784944
Iteration: 2, Func. Count: 20, Neg. LLF: 124.01345756847198
Iteration: 3, Func. Count: 29, Neg. LLF: 124.90545759709791
Iteration: 4, Func. Count: 39, Neg. LLF: 132.68626676075215
Iteration: 5, Func. Count: 50, Neg. LLF: 124.86122577368415
Iteration: 6, Func. Count: 61, Neg. LLF: 123.82667805202475
Iteration: 7, Func. Count: 71, Neg. LLF: 123.93215388241109
Iteration: 8, Func. Count: 81, Neg. LLF: 123.80126532729325
Iteration: 9, Func. Count: 91, Neg. LLF: 123.79191043621798
Iteration: 10, Func. Count: 100, Neg. LLF: 123.79166282198092
Iteration: 11, Func. Count: 109, Neg. LLF: 123.79154849731998
Iteration: 12, Func. Count: 118, Neg. LLF: 123.79154731969977
Iteration: 13, Func. Count: 126, Neg. LLF: 123.79154731967326
Optimization terminated successfully (Exit mode 0)
Current function value: 123.79154731969977
Iterations: 13
Function evaluations: 126
Gradient evaluations: 13
Iteration: 1, Func. Count: 7, Neg. LLF: 132.76844174299404
Iteration: 2, Func. Count: 14, Neg. LLF: 127.81288866885832
Iteration: 3, Func. Count: 21, Neg. LLF: 124.05863132624836
Iteration: 4, Func. Count: 27, Neg. LLF: 123.86914211781134
Iteration: 5, Func. Count: 33, Neg. LLF: 123.85235059803968
Iteration: 6, Func. Count: 39, Neg. LLF: 123.85038441645186
Iteration: 7, Func. Count: 45, Neg. LLF: 123.85034618327433
Iteration: 8, Func. Count: 51, Neg. LLF: 123.85033993423846
Iteration: 9, Func. Count: 57, Neg. LLF: 123.8503389048782
Iteration: 10, Func. Count: 62, Neg. LLF: 123.85033906037182
Optimization terminated successfully (Exit mode 0)
Current function value: 123.8503389048782
Iterations: 10
Function evaluations: 62
Gradient evaluations: 10
Iteration: 1, Func. Count: 8, Neg. LLF: 126.79812286969575
Iteration: 2, Func. Count: 16, Neg. LLF: 125.96176855070493
Iteration: 3, Func. Count: 24, Neg. LLF: 124.04293038603647
Iteration: 4, Func. Count: 31, Neg. LLF: 123.96047675782164
Iteration: 5, Func. Count: 38, Neg. LLF: 129.87484328304274
Iteration: 6, Func. Count: 46, Neg. LLF: 123.8998017842183
Iteration: 7, Func. Count: 53, Neg. LLF: 123.91564109280549
Iteration: 8, Func. Count: 61, Neg. LLF: 123.89016929527077
Iteration: 9, Func. Count: 69, Neg. LLF: 123.8843479164231
Iteration: 10, Func. Count: 76, Neg. LLF: 123.88386580797142
Iteration: 11, Func. Count: 83, Neg. LLF: 123.8822871280329
Iteration: 12, Func. Count: 90, Neg. LLF: 123.87857309148603
Iteration: 13, Func. Count: 97, Neg. LLF: 123.85828233256021
Iteration: 14, Func. Count: 104, Neg. LLF: 123.8567600301999
Iteration: 15, Func. Count: 112, Neg. LLF: 123.82189173648837
Iteration: 16, Func. Count: 119, Neg. LLF: 123.79784253957563
Iteration: 17, Func. Count: 126, Neg. LLF: 123.79322908901841
Iteration: 18, Func. Count: 133, Neg. LLF: 123.79259395430164
Iteration: 19, Func. Count: 140, Neg. LLF: 123.7925750912546
Iteration: 20, Func. Count: 147, Neg. LLF: 123.79257450988355
Optimization terminated successfully (Exit mode 0)
Current function value: 123.79257450988355
Iterations: 20
Function evaluations: 147
Gradient evaluations: 20
Iteration: 1, Func. Count: 9, Neg. LLF: 126.97196188123031
Iteration: 2, Func. Count: 18, Neg. LLF: 125.44377073414559
Iteration: 3, Func. Count: 27, Neg. LLF: 123.96308977767612
Iteration: 4, Func. Count: 35, Neg. LLF: 124.03611185941342
Iteration: 5, Func. Count: 44, Neg. LLF: 132.56265054212946
Iteration: 6, Func. Count: 54, Neg. LLF: 124.44681160000233
Iteration: 7, Func. Count: 63, Neg. LLF: 123.85528439208765
Iteration: 8, Func. Count: 71, Neg. LLF: 123.85075423457303
Iteration: 9, Func. Count: 79, Neg. LLF: 123.84900464982027
Iteration: 10, Func. Count: 87, Neg. LLF: 123.84866751678993
Iteration: 11, Func. Count: 95, Neg. LLF: 123.84866172927234
Iteration: 12, Func. Count: 102, Neg. LLF: 123.8486617292195
Optimization terminated successfully (Exit mode 0)
Current function value: 123.84866172927234
Iterations: 12
Function evaluations: 102
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 127.67563369237355
Iteration: 2, Func. Count: 20, Neg. LLF: 125.27963307893158
Iteration: 3, Func. Count: 29, Neg. LLF: 124.17376478251609
Iteration: 4, Func. Count: 38, Neg. LLF: 130.788386521585
Iteration: 5, Func. Count: 50, Neg. LLF: 129.99738373195203
Iteration: 6, Func. Count: 60, Neg. LLF: 123.9553533328469
Iteration: 7, Func. Count: 69, Neg. LLF: 123.895720557553
Iteration: 8, Func. Count: 78, Neg. LLF: 123.86086663727703
Iteration: 9, Func. Count: 87, Neg. LLF: 123.85136034681881
Iteration: 10, Func. Count: 96, Neg. LLF: 123.84986260622821
Iteration: 11, Func. Count: 105, Neg. LLF: 123.84867898495543
Iteration: 12, Func. Count: 114, Neg. LLF: 123.84866190278157
Iteration: 13, Func. Count: 122, Neg. LLF: 123.84866209558713
Optimization terminated successfully (Exit mode 0)
Current function value: 123.84866190278157
Iterations: 13
Function evaluations: 122
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 129.14532811011583
Iteration: 2, Func. Count: 22, Neg. LLF: 124.97220530586495
Iteration: 3, Func. Count: 32, Neg. LLF: 124.26732324337162
Iteration: 4, Func. Count: 42, Neg. LLF: 145.73525088873524
Iteration: 5, Func. Count: 55, Neg. LLF: 132.38819125488607
Iteration: 6, Func. Count: 66, Neg. LLF: 129.22273181595128
Iteration: 7, Func. Count: 77, Neg. LLF: 129.18184319121653
Iteration: 8, Func. Count: 88, Neg. LLF: 123.81205530658335
Iteration: 9, Func. Count: 98, Neg. LLF: 123.91264872419512
Iteration: 10, Func. Count: 109, Neg. LLF: 123.79382838299836
Iteration: 11, Func. Count: 119, Neg. LLF: 123.79219964938007
Iteration: 12, Func. Count: 129, Neg. LLF: 123.79156926877985
Iteration: 13, Func. Count: 139, Neg. LLF: 123.79154847402596
Iteration: 14, Func. Count: 149, Neg. LLF: 123.79154767655042
Optimization terminated successfully (Exit mode 0)
Current function value: 123.79154767655042
Iterations: 14
Function evaluations: 149
Gradient evaluations: 14
Iteration: 1, Func. Count: 8, Neg. LLF: 130.88087279957944
Iteration: 2, Func. Count: 16, Neg. LLF: 132.10593989155697
Iteration: 3, Func. Count: 24, Neg. LLF: 124.89075613383376
Iteration: 4, Func. Count: 32, Neg. LLF: 123.93445108243152
Iteration: 5, Func. Count: 39, Neg. LLF: 394.0909646666429
Iteration: 6, Func. Count: 48, Neg. LLF: 123.85392333687189
Iteration: 7, Func. Count: 55, Neg. LLF: 123.84936065379775
Iteration: 8, Func. Count: 62, Neg. LLF: 123.84913827701041
Iteration: 9, Func. Count: 69, Neg. LLF: 123.84912267606896
Iteration: 10, Func. Count: 76, Neg. LLF: 123.84911864081181
Iteration: 11, Func. Count: 82, Neg. LLF: 123.84911864072602
Optimization terminated successfully (Exit mode 0)
Current function value: 123.84911864081181
Iterations: 11
Function evaluations: 82
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 128.71011558654706
Iteration: 2, Func. Count: 18, Neg. LLF: 124.45998504189207
Iteration: 3, Func. Count: 26, Neg. LLF: 125.45208144514207
Iteration: 4, Func. Count: 35, Neg. LLF: 127.77426395056825
Iteration: 5, Func. Count: 46, Neg. LLF: 144.1501157293271
Iteration: 6, Func. Count: 55, Neg. LLF: 133.10961147727846
Iteration: 7, Func. Count: 64, Neg. LLF: 124.165652277275
Iteration: 8, Func. Count: 73, Neg. LLF: 123.88062886624283
Iteration: 9, Func. Count: 81, Neg. LLF: 123.8775956728974
Iteration: 10, Func. Count: 89, Neg. LLF: 123.87398891489168
Iteration: 11, Func. Count: 97, Neg. LLF: 123.84196425269734
Iteration: 12, Func. Count: 105, Neg. LLF: 123.8199360080435
Iteration: 13, Func. Count: 113, Neg. LLF: 123.83295846441811
Iteration: 14, Func. Count: 122, Neg. LLF: 123.79275709664724
Iteration: 15, Func. Count: 130, Neg. LLF: 123.79257941357506
Iteration: 16, Func. Count: 138, Neg. LLF: 123.79257489455003
Iteration: 17, Func. Count: 145, Neg. LLF: 123.79257489370904
Optimization terminated successfully (Exit mode 0)
Current function value: 123.79257489455003
Iterations: 17
Function evaluations: 145
Gradient evaluations: 17
Iteration: 1, Func. Count: 10, Neg. LLF: 128.48418258568623
Iteration: 2, Func. Count: 20, Neg. LLF: 124.53894429510176
Iteration: 3, Func. Count: 29, Neg. LLF: 125.41678709135202
Iteration: 4, Func. Count: 39, Neg. LLF: 132.08182663447383
Iteration: 5, Func. Count: 51, Neg. LLF: 141.8966850591956
Iteration: 6, Func. Count: 61, Neg. LLF: 123.99712939706943
Iteration: 7, Func. Count: 71, Neg. LLF: 124.09009662242413
Iteration: 8, Func. Count: 81, Neg. LLF: 123.88245160662038
Iteration: 9, Func. Count: 90, Neg. LLF: 123.88559603145083
Iteration: 10, Func. Count: 100, Neg. LLF: 123.88042114125003
Iteration: 11, Func. Count: 109, Neg. LLF: 123.8791968567832
Iteration: 12, Func. Count: 118, Neg. LLF: 123.87846325344115
Iteration: 13, Func. Count: 128, Neg. LLF: 123.88844079911652
Iteration: 14, Func. Count: 138, Neg. LLF: 123.85880153455886
Iteration: 15, Func. Count: 147, Neg. LLF: 123.83156981349107
Iteration: 16, Func. Count: 156, Neg. LLF: 123.8143925126517
Iteration: 17, Func. Count: 165, Neg. LLF: 123.79383734985865
Iteration: 18, Func. Count: 174, Neg. LLF: 123.7927368971954
Iteration: 19, Func. Count: 183, Neg. LLF: 123.79257496854645
Iteration: 20, Func. Count: 192, Neg. LLF: 123.7925745460637
Optimization terminated successfully (Exit mode 0)
Current function value: 123.7925745460637
Iterations: 20
Function evaluations: 192
Gradient evaluations: 20
Iteration: 1, Func. Count: 11, Neg. LLF: 128.65505003059627
Iteration: 2, Func. Count: 22, Neg. LLF: 124.68391160386504
Iteration: 3, Func. Count: 32, Neg. LLF: 124.9436690260716
Iteration: 4, Func. Count: 43, Neg. LLF: 133.05983527625102
Iteration: 5, Func. Count: 56, Neg. LLF: 132.27848097717734
Iteration: 6, Func. Count: 67, Neg. LLF: 124.63120901852596
Iteration: 7, Func. Count: 78, Neg. LLF: 124.33883205566768
Iteration: 8, Func. Count: 89, Neg. LLF: 123.8748381596697
Iteration: 9, Func. Count: 99, Neg. LLF: 123.86639450924001
Iteration: 10, Func. Count: 109, Neg. LLF: 123.86003992630887
Iteration: 11, Func. Count: 119, Neg. LLF: 123.85394711156695
Iteration: 12, Func. Count: 129, Neg. LLF: 123.84965430093368
Iteration: 13, Func. Count: 139, Neg. LLF: 123.84879483093006
Iteration: 14, Func. Count: 149, Neg. LLF: 123.84867206307598
Iteration: 15, Func. Count: 159, Neg. LLF: 123.8486617535234
Iteration: 16, Func. Count: 168, Neg. LLF: 123.84866194631208
Optimization terminated successfully (Exit mode 0)
Current function value: 123.8486617535234
Iterations: 16
Function evaluations: 168
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 129.42834126969393
Iteration: 2, Func. Count: 24, Neg. LLF: 124.84352593685736
Iteration: 3, Func. Count: 35, Neg. LLF: 124.69956104672823
Iteration: 4, Func. Count: 47, Neg. LLF: 145.93621422478827
Iteration: 5, Func. Count: 60, Neg. LLF: 126.86889440706017
Iteration: 6, Func. Count: 73, Neg. LLF: 144.60955578836138
Iteration: 7, Func. Count: 85, Neg. LLF: 126.84250572034627
Iteration: 8, Func. Count: 97, Neg. LLF: 123.84879880916944
Iteration: 9, Func. Count: 108, Neg. LLF: 123.79983465828623
Iteration: 10, Func. Count: 119, Neg. LLF: 123.79501481046849
Iteration: 11, Func. Count: 130, Neg. LLF: 123.79249717309723
Iteration: 12, Func. Count: 141, Neg. LLF: 123.79160298240038
Iteration: 13, Func. Count: 152, Neg. LLF: 123.79142644169255
Iteration: 14, Func. Count: 163, Neg. LLF: 123.79140736478703
Iteration: 15, Func. Count: 174, Neg. LLF: 123.79139524728431
Iteration: 16, Func. Count: 185, Neg. LLF: 123.79139440645011
Optimization terminated successfully (Exit mode 0)
Current function value: 123.79139440645011
Iterations: 16
Function evaluations: 185
Gradient evaluations: 16
Iteration: 1, Func. Count: 9, Neg. LLF: 132.05655566140936
Iteration: 2, Func. Count: 18, Neg. LLF: 134.14483334535376
Iteration: 3, Func. Count: 27, Neg. LLF: 124.61730820224436
Iteration: 4, Func. Count: 36, Neg. LLF: 126.4188347141236
Iteration: 5, Func. Count: 47, Neg. LLF: 123.94919244370875
Iteration: 6, Func. Count: 55, Neg. LLF: 123.86451345122303
Iteration: 7, Func. Count: 63, Neg. LLF: 123.85291096309452
Iteration: 8, Func. Count: 71, Neg. LLF: 123.84939039638044
Iteration: 9, Func. Count: 79, Neg. LLF: 123.84916591256464
Iteration: 10, Func. Count: 87, Neg. LLF: 123.84911911498412
Iteration: 11, Func. Count: 94, Neg. LLF: 123.84911931599649
Optimization terminated successfully (Exit mode 0)
Current function value: 123.84911911498412
Iterations: 11
Function evaluations: 94
Gradient evaluations: 11
Iteration: 1, Func. Count: 10, Neg. LLF: 128.69692104461748
Iteration: 2, Func. Count: 20, Neg. LLF: 124.46832279662162
Iteration: 3, Func. Count: 29, Neg. LLF: 125.48997995818368
Iteration: 4, Func. Count: 39, Neg. LLF: 127.7102103047803
Iteration: 5, Func. Count: 51, Neg. LLF: 144.44095067507072
Iteration: 6, Func. Count: 61, Neg. LLF: 133.114793407226
Iteration: 7, Func. Count: 71, Neg. LLF: 124.12618247877631
Iteration: 8, Func. Count: 81, Neg. LLF: 123.88059042134635
Iteration: 9, Func. Count: 90, Neg. LLF: 123.87755216016696
Iteration: 10, Func. Count: 99, Neg. LLF: 123.87389401919569
Iteration: 11, Func. Count: 108, Neg. LLF: 123.83803855700978
Iteration: 12, Func. Count: 117, Neg. LLF: 123.84016212571471
Iteration: 13, Func. Count: 127, Neg. LLF: 123.79975686994644
Iteration: 14, Func. Count: 136, Neg. LLF: 123.79342293148626
Iteration: 15, Func. Count: 145, Neg. LLF: 123.79262844723922
Iteration: 16, Func. Count: 154, Neg. LLF: 123.79257515423845
Iteration: 17, Func. Count: 163, Neg. LLF: 123.79257450472758
Optimization terminated successfully (Exit mode 0)
Current function value: 123.79257450472758
Iterations: 17
Function evaluations: 163
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 128.4593546784128
Iteration: 2, Func. Count: 22, Neg. LLF: 124.54577327606725
Iteration: 3, Func. Count: 32, Neg. LLF: 125.45389873140398
Iteration: 4, Func. Count: 43, Neg. LLF: 132.06808223439438
Iteration: 5, Func. Count: 56, Neg. LLF: 142.41616573171132
Iteration: 6, Func. Count: 67, Neg. LLF: 124.08093488080878
Iteration: 7, Func. Count: 78, Neg. LLF: 124.27525520582645
Iteration: 8, Func. Count: 89, Neg. LLF: 123.88369037610356
Iteration: 9, Func. Count: 99, Neg. LLF: 123.88138386734762
Iteration: 10, Func. Count: 109, Neg. LLF: 123.88992025503147
Iteration: 11, Func. Count: 120, Neg. LLF: 123.87472188496189
Iteration: 12, Func. Count: 130, Neg. LLF: 123.8561826184758
Iteration: 13, Func. Count: 140, Neg. LLF: 123.85237454539653
Iteration: 14, Func. Count: 150, Neg. LLF: 123.8489083297788
Iteration: 15, Func. Count: 160, Neg. LLF: 123.848702190339
Iteration: 16, Func. Count: 170, Neg. LLF: 123.8486742188804
Iteration: 17, Func. Count: 180, Neg. LLF: 123.84866411091497
Iteration: 18, Func. Count: 190, Neg. LLF: 123.84866179551315
Iteration: 19, Func. Count: 199, Neg. LLF: 123.84866179558031
Optimization terminated successfully (Exit mode 0)
Current function value: 123.84866179551315
Iterations: 19
Function evaluations: 199
Gradient evaluations: 19
Iteration: 1, Func. Count: 12, Neg. LLF: 128.63331462418373
Iteration: 2, Func. Count: 24, Neg. LLF: 124.69739646088317
Iteration: 3, Func. Count: 35, Neg. LLF: 124.97743056492247
Iteration: 4, Func. Count: 47, Neg. LLF: 133.05072128548497
Iteration: 5, Func. Count: 61, Neg. LLF: 132.8847650990897
Iteration: 6, Func. Count: 73, Neg. LLF: 124.74087276583651
Iteration: 7, Func. Count: 85, Neg. LLF: 124.36533830647214
Iteration: 8, Func. Count: 97, Neg. LLF: 123.87698382851299
Iteration: 9, Func. Count: 108, Neg. LLF: 123.86714198368793
Iteration: 10, Func. Count: 119, Neg. LLF: 123.85678295073814
Iteration: 11, Func. Count: 130, Neg. LLF: 123.85242570050961
Iteration: 12, Func. Count: 141, Neg. LLF: 123.84978929272243
Iteration: 13, Func. Count: 152, Neg. LLF: 123.84881039649173
Iteration: 14, Func. Count: 163, Neg. LLF: 123.84866603140658
Iteration: 15, Func. Count: 174, Neg. LLF: 123.84866177620879
Iteration: 16, Func. Count: 184, Neg. LLF: 123.84866196899297
Optimization terminated successfully (Exit mode 0)
Current function value: 123.84866177620879
Iterations: 16
Function evaluations: 184
Gradient evaluations: 16
Iteration: 1, Func. Count: 13, Neg. LLF: 129.39823969904268
Iteration: 2, Func. Count: 26, Neg. LLF: 124.86027447518894
Iteration: 3, Func. Count: 38, Neg. LLF: 124.71334251042246
Iteration: 4, Func. Count: 51, Neg. LLF: 145.6069301078972
Iteration: 5, Func. Count: 66, Neg. LLF: 126.93716524541813
Iteration: 6, Func. Count: 81, Neg. LLF: 138.64225823028943
Iteration: 7, Func. Count: 94, Neg. LLF: 126.76234140962056
Iteration: 8, Func. Count: 107, Neg. LLF: 123.89558620674146
Iteration: 9, Func. Count: 120, Neg. LLF: 123.80394258923798
Iteration: 10, Func. Count: 132, Neg. LLF: 123.79726264133419
Iteration: 11, Func. Count: 144, Neg. LLF: 123.79524912145193
Iteration: 12, Func. Count: 156, Neg. LLF: 123.79363248026158
Iteration: 13, Func. Count: 168, Neg. LLF: 123.79197523059064
Iteration: 14, Func. Count: 180, Neg. LLF: 123.79143208964754
Iteration: 15, Func. Count: 192, Neg. LLF: 123.79139713909177
Iteration: 16, Func. Count: 204, Neg. LLF: 123.79139454636312
Iteration: 17, Func. Count: 215, Neg. LLF: 123.79139454654508
Optimization terminated successfully (Exit mode 0)
Current function value: 123.79139454636312
Iterations: 17
Function evaluations: 215
Gradient evaluations: 17
Iteration: 1, Func. Count: 6, Neg. LLF: 128.3179177721708
Iteration: 2, Func. Count: 12, Neg. LLF: 153.60361733079972
Iteration: 3, Func. Count: 18, Neg. LLF: 124.01701102933507
Iteration: 4, Func. Count: 23, Neg. LLF: 124.65980881484357
Iteration: 5, Func. Count: 29, Neg. LLF: 124.03036006890207
Iteration: 6, Func. Count: 35, Neg. LLF: 123.84854849174778
Iteration: 7, Func. Count: 40, Neg. LLF: 123.83229356692027
Iteration: 8, Func. Count: 45, Neg. LLF: 123.80712992411509
Iteration: 9, Func. Count: 50, Neg. LLF: 123.80423886552158
Iteration: 10, Func. Count: 55, Neg. LLF: 123.8040334718188
Iteration: 11, Func. Count: 60, Neg. LLF: 123.80403036867632
Iteration: 12, Func. Count: 64, Neg. LLF: 123.80403036869498
Optimization terminated successfully (Exit mode 0)
Current function value: 123.80403036867632
Iterations: 12
Function evaluations: 64
Gradient evaluations: 12
Iteration: 1, Func. Count: 7, Neg. LLF: 124.57134055176
Iteration: 2, Func. Count: 13, Neg. LLF: 128.2403929619338
Iteration: 3, Func. Count: 20, Neg. LLF: 124.00631844183108
Iteration: 4, Func. Count: 26, Neg. LLF: 8925.48021256241
Iteration: 5, Func. Count: 33, Neg. LLF: 123.82825391483178
Iteration: 6, Func. Count: 39, Neg. LLF: 123.81314545642087
Iteration: 7, Func. Count: 45, Neg. LLF: 123.83035585539527
Iteration: 8, Func. Count: 52, Neg. LLF: 123.7979749683446
Iteration: 9, Func. Count: 58, Neg. LLF: 123.79523946406017
Iteration: 10, Func. Count: 64, Neg. LLF: 123.79513907877033
Iteration: 11, Func. Count: 70, Neg. LLF: 123.79512033523382
Iteration: 12, Func. Count: 75, Neg. LLF: 123.79512033519741
Optimization terminated successfully (Exit mode 0)
Current function value: 123.79512033523382
Iterations: 12
Function evaluations: 75
Gradient evaluations: 12
Iteration: 1, Func. Count: 8, Neg. LLF: 124.36956133100031
Iteration: 2, Func. Count: 15, Neg. LLF: 124.56810099585186
Iteration: 3, Func. Count: 23, Neg. LLF: 124.2270268536798
Iteration: 4, Func. Count: 31, Neg. LLF: 231.8180724866978
Iteration: 5, Func. Count: 39, Neg. LLF: 123.83211396365836
Iteration: 6, Func. Count: 46, Neg. LLF: 124.45888376735249
Iteration: 7, Func. Count: 55, Neg. LLF: 123.84098703439062
Iteration: 8, Func. Count: 63, Neg. LLF: 123.80432421099019
Iteration: 9, Func. Count: 70, Neg. LLF: 123.79818015382934
Iteration: 10, Func. Count: 77, Neg. LLF: 123.79680182475447
Iteration: 11, Func. Count: 84, Neg. LLF: 123.79514533696197
Iteration: 12, Func. Count: 91, Neg. LLF: 123.79512051877738
Iteration: 13, Func. Count: 97, Neg. LLF: 123.7951205432264
Optimization terminated successfully (Exit mode 0)
Current function value: 123.79512051877738
Iterations: 13
Function evaluations: 97
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 124.37011823125759
Iteration: 2, Func. Count: 17, Neg. LLF: 124.44699276988786
Iteration: 3, Func. Count: 26, Neg. LLF: 124.1436563520398
Iteration: 4, Func. Count: 34, Neg. LLF: 253.19880655263302
Iteration: 5, Func. Count: 44, Neg. LLF: 125.58197652487446
Iteration: 6, Func. Count: 53, Neg. LLF: 123.86428410523206
Iteration: 7, Func. Count: 61, Neg. LLF: 123.824634959988
Iteration: 8, Func. Count: 69, Neg. LLF: 124.2750404767806
Iteration: 9, Func. Count: 79, Neg. LLF: 123.8056736186025
Iteration: 10, Func. Count: 87, Neg. LLF: 123.80284588282692
Iteration: 11, Func. Count: 95, Neg. LLF: 123.79882880258408
Iteration: 12, Func. Count: 103, Neg. LLF: 123.79653467071778
Iteration: 13, Func. Count: 111, Neg. LLF: 123.79520113413099
Iteration: 14, Func. Count: 119, Neg. LLF: 123.79512538035404
Iteration: 15, Func. Count: 127, Neg. LLF: 123.79512050452938
Iteration: 16, Func. Count: 134, Neg. LLF: 123.79512067948755
Optimization terminated successfully (Exit mode 0)
Current function value: 123.79512050452938
Iterations: 16
Function evaluations: 134
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 124.36915363993597
Iteration: 2, Func. Count: 19, Neg. LLF: 124.34630411860982
Iteration: 3, Func. Count: 29, Neg. LLF: 188.62086963049634
Iteration: 4, Func. Count: 40, Neg. LLF: 124.80737169297328
Iteration: 5, Func. Count: 50, Neg. LLF: 151.1244262456195
Iteration: 6, Func. Count: 60, Neg. LLF: 123.7596451201048
Iteration: 7, Func. Count: 69, Neg. LLF: 123.7332871228639
Iteration: 8, Func. Count: 78, Neg. LLF: 124.75382752601195
Iteration: 9, Func. Count: 89, Neg. LLF: 123.72048291562069
Iteration: 10, Func. Count: 98, Neg. LLF: 123.71475197754842
Iteration: 11, Func. Count: 107, Neg. LLF: 123.71098683456898
Iteration: 12, Func. Count: 116, Neg. LLF: 123.71080447549195
Iteration: 13, Func. Count: 125, Neg. LLF: 123.71079852496814
Iteration: 14, Func. Count: 133, Neg. LLF: 123.71079852386036
Optimization terminated successfully (Exit mode 0)
Current function value: 123.71079852496814
Iterations: 14
Function evaluations: 133
Gradient evaluations: 14
Iteration: 1, Func. Count: 7, Neg. LLF: 133.76543214030664
Iteration: 2, Func. Count: 14, Neg. LLF: 133.9118989503367
Iteration: 3, Func. Count: 21, Neg. LLF: 123.87994290742259
Iteration: 4, Func. Count: 28, Neg. LLF: 124.31536632320174
Iteration: 5, Func. Count: 35, Neg. LLF: 123.77395363724168
Iteration: 6, Func. Count: 42, Neg. LLF: 123.73349033957334
Iteration: 7, Func. Count: 48, Neg. LLF: 123.72827570559872
Iteration: 8, Func. Count: 54, Neg. LLF: 123.72776436297578
Iteration: 9, Func. Count: 60, Neg. LLF: 123.72762957841843
Iteration: 10, Func. Count: 65, Neg. LLF: 123.72762957840088
Optimization terminated successfully (Exit mode 0)
Current function value: 123.72762957841843
Iterations: 10
Function evaluations: 65
Gradient evaluations: 10
Iteration: 1, Func. Count: 8, Neg. LLF: 127.50261442294057
Iteration: 2, Func. Count: 16, Neg. LLF: 129.44592631031395
Iteration: 3, Func. Count: 24, Neg. LLF: 124.07414491034332
Iteration: 4, Func. Count: 31, Neg. LLF: 157.48826200731256
Iteration: 5, Func. Count: 39, Neg. LLF: 124.42757706560622
Iteration: 6, Func. Count: 47, Neg. LLF: 123.74829592548419
Iteration: 7, Func. Count: 54, Neg. LLF: 123.73725829532958
Iteration: 8, Func. Count: 61, Neg. LLF: 123.73181413325597
Iteration: 9, Func. Count: 68, Neg. LLF: 123.72776175793597
Iteration: 10, Func. Count: 75, Neg. LLF: 123.72763873507797
Iteration: 11, Func. Count: 82, Neg. LLF: 123.72763034701431
Iteration: 12, Func. Count: 89, Neg. LLF: 123.72762914516629
Iteration: 13, Func. Count: 95, Neg. LLF: 123.72762916741023
Optimization terminated successfully (Exit mode 0)
Current function value: 123.72762914516629
Iterations: 13
Function evaluations: 95
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 127.15343340226694
Iteration: 2, Func. Count: 18, Neg. LLF: 129.44794232166927
Iteration: 3, Func. Count: 27, Neg. LLF: 124.04305370015973
Iteration: 4, Func. Count: 35, Neg. LLF: 165.55047805360536
Iteration: 5, Func. Count: 44, Neg. LLF: 124.55382742316183
Iteration: 6, Func. Count: 53, Neg. LLF: 124.37703613710299
Iteration: 7, Func. Count: 63, Neg. LLF: 123.76774544699212
Iteration: 8, Func. Count: 72, Neg. LLF: 123.73494927443213
Iteration: 9, Func. Count: 80, Neg. LLF: 123.72384135141868
Iteration: 10, Func. Count: 88, Neg. LLF: 123.72225360056994
Iteration: 11, Func. Count: 96, Neg. LLF: 123.72202607534032
Iteration: 12, Func. Count: 104, Neg. LLF: 123.7220185498531
Iteration: 13, Func. Count: 111, Neg. LLF: 123.7220185498445
Optimization terminated successfully (Exit mode 0)
Current function value: 123.7220185498531
Iterations: 13
Function evaluations: 111
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 127.69856065523574
Iteration: 2, Func. Count: 20, Neg. LLF: 128.84170169895316
Iteration: 3, Func. Count: 30, Neg. LLF: 124.04123508282763
Iteration: 4, Func. Count: 39, Neg. LLF: 153.53708916602076
Iteration: 5, Func. Count: 49, Neg. LLF: 124.48342040543952
Iteration: 6, Func. Count: 59, Neg. LLF: 124.37266242832834
Iteration: 7, Func. Count: 70, Neg. LLF: 123.87505695080569
Iteration: 8, Func. Count: 80, Neg. LLF: 123.73847785804422
Iteration: 9, Func. Count: 89, Neg. LLF: 123.72702892133604
Iteration: 10, Func. Count: 98, Neg. LLF: 123.72281186055864
Iteration: 11, Func. Count: 107, Neg. LLF: 123.72205373831555
Iteration: 12, Func. Count: 116, Neg. LLF: 123.72201924967453
Iteration: 13, Func. Count: 125, Neg. LLF: 123.72201844809724
Optimization terminated successfully (Exit mode 0)
Current function value: 123.72201844809724
Iterations: 13
Function evaluations: 125
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 128.8576726465161
Iteration: 2, Func. Count: 22, Neg. LLF: 128.7131380373394
Iteration: 3, Func. Count: 33, Neg. LLF: 124.15465073464979
Iteration: 4, Func. Count: 43, Neg. LLF: 183.82009217071564
Iteration: 5, Func. Count: 55, Neg. LLF: 125.71510204884524
Iteration: 6, Func. Count: 67, Neg. LLF: 125.50856772647137
Iteration: 7, Func. Count: 78, Neg. LLF: 123.76762595477167
Iteration: 8, Func. Count: 88, Neg. LLF: 123.70710137734088
Iteration: 9, Func. Count: 98, Neg. LLF: 164.44681174373002
Iteration: 10, Func. Count: 110, Neg. LLF: 123.77639313726112
Iteration: 11, Func. Count: 121, Neg. LLF: 123.65553566872337
Iteration: 12, Func. Count: 131, Neg. LLF: 123.64886110373422
Iteration: 13, Func. Count: 141, Neg. LLF: 123.64746801158871
Iteration: 14, Func. Count: 151, Neg. LLF: 123.64736718766225
Iteration: 15, Func. Count: 161, Neg. LLF: 123.64733547660352
Iteration: 16, Func. Count: 171, Neg. LLF: 123.6473296104201
Iteration: 17, Func. Count: 180, Neg. LLF: 123.64732961030381
Optimization terminated successfully (Exit mode 0)
Current function value: 123.6473296104201
Iterations: 17
Function evaluations: 180
Gradient evaluations: 17
Iteration: 1, Func. Count: 8, Neg. LLF: 133.3804397416508
Iteration: 2, Func. Count: 16, Neg. LLF: 130.44016404997276
Iteration: 3, Func. Count: 24, Neg. LLF: 125.37311334652124
Iteration: 4, Func. Count: 33, Neg. LLF: 124.05060188836347
Iteration: 5, Func. Count: 41, Neg. LLF: 122.58221013955918
Iteration: 6, Func. Count: 48, Neg. LLF: 122.53765026681091
Iteration: 7, Func. Count: 55, Neg. LLF: 122.50412006089478
Iteration: 8, Func. Count: 62, Neg. LLF: 122.50113426635745
Iteration: 9, Func. Count: 69, Neg. LLF: 122.50046807103526
Iteration: 10, Func. Count: 76, Neg. LLF: 122.50041237403164
Iteration: 11, Func. Count: 83, Neg. LLF: 122.50038359857015
Iteration: 12, Func. Count: 90, Neg. LLF: 122.5003773178046
Iteration: 13, Func. Count: 97, Neg. LLF: 122.50037646685892
Optimization terminated successfully (Exit mode 0)
Current function value: 122.50037646685892
Iterations: 13
Function evaluations: 97
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 128.15820717927986
Iteration: 2, Func. Count: 18, Neg. LLF: 124.58240170222626
Iteration: 3, Func. Count: 26, Neg. LLF: 130.25430325390005
Iteration: 4, Func. Count: 35, Neg. LLF: 157.1539887558639
Iteration: 5, Func. Count: 44, Neg. LLF: 122.74456149067996
Iteration: 6, Func. Count: 52, Neg. LLF: 144.76378303871985
Iteration: 7, Func. Count: 61, Neg. LLF: 122.51734572021802
Iteration: 8, Func. Count: 69, Neg. LLF: 122.50240589507794
Iteration: 9, Func. Count: 77, Neg. LLF: 122.50096892849045
Iteration: 10, Func. Count: 85, Neg. LLF: 122.500481955594
Iteration: 11, Func. Count: 93, Neg. LLF: 122.5003875968829
Iteration: 12, Func. Count: 101, Neg. LLF: 122.50037750262086
Iteration: 13, Func. Count: 109, Neg. LLF: 122.50037673955204
Optimization terminated successfully (Exit mode 0)
Current function value: 122.50037673955204
Iterations: 13
Function evaluations: 109
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 128.1568162349213
Iteration: 2, Func. Count: 20, Neg. LLF: 124.58839138810986
Iteration: 3, Func. Count: 29, Neg. LLF: 131.3443616540437
Iteration: 4, Func. Count: 39, Neg. LLF: 158.32200752338295
Iteration: 5, Func. Count: 49, Neg. LLF: 122.74057772333528
Iteration: 6, Func. Count: 58, Neg. LLF: 205.51125919451704
Iteration: 7, Func. Count: 69, Neg. LLF: 156.84955451660704
Iteration: 8, Func. Count: 79, Neg. LLF: 122.47150649360795
Iteration: 9, Func. Count: 88, Neg. LLF: 122.44923952461382
Iteration: 10, Func. Count: 97, Neg. LLF: 122.44570641862177
Iteration: 11, Func. Count: 106, Neg. LLF: 122.4438228547958
Iteration: 12, Func. Count: 115, Neg. LLF: 122.4432866419114
Iteration: 13, Func. Count: 124, Neg. LLF: 122.44316036211013
Iteration: 14, Func. Count: 133, Neg. LLF: 122.4431594345646
Optimization terminated successfully (Exit mode 0)
Current function value: 122.4431594345646
Iterations: 14
Function evaluations: 133
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 128.83083689980955
Iteration: 2, Func. Count: 22, Neg. LLF: 124.67736865538575
Iteration: 3, Func. Count: 32, Neg. LLF: 131.45129606157374
Iteration: 4, Func. Count: 43, Neg. LLF: 158.9739775666649
Iteration: 5, Func. Count: 54, Neg. LLF: 122.7334076535247
Iteration: 6, Func. Count: 64, Neg. LLF: 179.159279549679
Iteration: 7, Func. Count: 76, Neg. LLF: 143.13785547169476
Iteration: 8, Func. Count: 87, Neg. LLF: 122.46808929926401
Iteration: 9, Func. Count: 97, Neg. LLF: 122.44853063874518
Iteration: 10, Func. Count: 107, Neg. LLF: 122.44501159525143
Iteration: 11, Func. Count: 117, Neg. LLF: 122.44357897884288
Iteration: 12, Func. Count: 127, Neg. LLF: 122.44319005234713
Iteration: 13, Func. Count: 137, Neg. LLF: 122.44315999601397
Iteration: 14, Func. Count: 147, Neg. LLF: 122.44315944983374
Optimization terminated successfully (Exit mode 0)
Current function value: 122.44315944983374
Iterations: 14
Function evaluations: 147
Gradient evaluations: 14
Iteration: 1, Func. Count: 12, Neg. LLF: 129.54701197420633
Iteration: 2, Func. Count: 24, Neg. LLF: 124.77102713406566
Iteration: 3, Func. Count: 35, Neg. LLF: 131.1714491686019
Iteration: 4, Func. Count: 47, Neg. LLF: 162.33333432850515
Iteration: 5, Func. Count: 59, Neg. LLF: 122.69695690996663
Iteration: 6, Func. Count: 70, Neg. LLF: 137.08280483438014
Iteration: 7, Func. Count: 83, Neg. LLF: 167.06894521306302
Iteration: 8, Func. Count: 95, Neg. LLF: 122.51687442322306
Iteration: 9, Func. Count: 106, Neg. LLF: 124.65549625162025
Iteration: 10, Func. Count: 118, Neg. LLF: 122.43091455931213
Iteration: 11, Func. Count: 129, Neg. LLF: 122.4447911495587
Iteration: 12, Func. Count: 141, Neg. LLF: 122.43029604548002
Iteration: 13, Func. Count: 153, Neg. LLF: 122.41684976185643
Iteration: 14, Func. Count: 164, Neg. LLF: 122.41661875751306
Iteration: 15, Func. Count: 175, Neg. LLF: 122.41651836763054
Iteration: 16, Func. Count: 186, Neg. LLF: 122.41651472567618
Iteration: 17, Func. Count: 197, Neg. LLF: 122.41651419841008
Optimization terminated successfully (Exit mode 0)
Current function value: 122.41651419841008
Iterations: 17
Function evaluations: 197
Gradient evaluations: 17
Iteration: 1, Func. Count: 9, Neg. LLF: 128.95109956108354
Iteration: 2, Func. Count: 18, Neg. LLF: 130.2371754953248
Iteration: 3, Func. Count: 27, Neg. LLF: 125.63206532601986
Iteration: 4, Func. Count: 37, Neg. LLF: 127.54765940560993
Iteration: 5, Func. Count: 46, Neg. LLF: 122.61930253527503
Iteration: 6, Func. Count: 54, Neg. LLF: 339.4271741606641
Iteration: 7, Func. Count: 63, Neg. LLF: 123.19243869912201
Iteration: 8, Func. Count: 72, Neg. LLF: 122.6033301166385
Iteration: 9, Func. Count: 81, Neg. LLF: 122.41568556486544
Iteration: 10, Func. Count: 89, Neg. LLF: 122.41200329451867
Iteration: 11, Func. Count: 97, Neg. LLF: 122.41110582992654
Iteration: 12, Func. Count: 105, Neg. LLF: 122.41103485762997
Iteration: 13, Func. Count: 113, Neg. LLF: 122.41101255790622
Iteration: 14, Func. Count: 121, Neg. LLF: 122.41099971094879
Iteration: 15, Func. Count: 129, Neg. LLF: 122.41099838753654
Iteration: 16, Func. Count: 136, Neg. LLF: 122.41099838744825
Optimization terminated successfully (Exit mode 0)
Current function value: 122.41099838753654
Iterations: 16
Function evaluations: 136
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 127.27978020235474
Iteration: 2, Func. Count: 20, Neg. LLF: 124.35962436848767
Iteration: 3, Func. Count: 29, Neg. LLF: 128.96968562224748
Iteration: 4, Func. Count: 39, Neg. LLF: 158.6006941194544
Iteration: 5, Func. Count: 49, Neg. LLF: 122.73046198584375
Iteration: 6, Func. Count: 58, Neg. LLF: 356.9336555472643
Iteration: 7, Func. Count: 69, Neg. LLF: 173.38206259267739
Iteration: 8, Func. Count: 79, Neg. LLF: 123.08507422855482
Iteration: 9, Func. Count: 89, Neg. LLF: 122.41739219379045
Iteration: 10, Func. Count: 98, Neg. LLF: 122.41240791168697
Iteration: 11, Func. Count: 107, Neg. LLF: 122.41133276244169
Iteration: 12, Func. Count: 116, Neg. LLF: 122.41112583664976
Iteration: 13, Func. Count: 125, Neg. LLF: 122.41100568806601
Iteration: 14, Func. Count: 134, Neg. LLF: 122.41099861321302
Iteration: 15, Func. Count: 142, Neg. LLF: 122.4109987278276
Optimization terminated successfully (Exit mode 0)
Current function value: 122.41099861321302
Iterations: 15
Function evaluations: 142
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 125.27598618067594
Iteration: 2, Func. Count: 21, Neg. LLF: 124.85959415647804
Iteration: 3, Func. Count: 32, Neg. LLF: 131.66549396566694
Iteration: 4, Func. Count: 45, Neg. LLF: 135.8611539701796
Iteration: 5, Func. Count: 56, Neg. LLF: 141.64368797160893
Iteration: 6, Func. Count: 67, Neg. LLF: 184.57547283383929
Iteration: 7, Func. Count: 78, Neg. LLF: 127.462576214514
Iteration: 8, Func. Count: 89, Neg. LLF: 122.77115973959572
Iteration: 9, Func. Count: 100, Neg. LLF: 122.52328100869138
Iteration: 10, Func. Count: 111, Neg. LLF: 122.5489276917661
Iteration: 11, Func. Count: 122, Neg. LLF: 122.41742909689674
Iteration: 12, Func. Count: 132, Neg. LLF: 122.41230449629053
Iteration: 13, Func. Count: 142, Neg. LLF: 122.41106625149071
Iteration: 14, Func. Count: 152, Neg. LLF: 122.41100928817977
Iteration: 15, Func. Count: 162, Neg. LLF: 122.41100052177622
Iteration: 16, Func. Count: 171, Neg. LLF: 122.41100056338557
Optimization terminated successfully (Exit mode 0)
Current function value: 122.41100052177622
Iterations: 16
Function evaluations: 171
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 125.89241456674414
Iteration: 2, Func. Count: 23, Neg. LLF: 124.62134000383243
Iteration: 3, Func. Count: 34, Neg. LLF: 131.84763365315263
Iteration: 4, Func. Count: 46, Neg. LLF: 141.67491883758674
Iteration: 5, Func. Count: 58, Neg. LLF: 142.21103310000638
Iteration: 6, Func. Count: 70, Neg. LLF: 124.85422702892565
Iteration: 7, Func. Count: 82, Neg. LLF: 14967432.405345941
Iteration: 8, Func. Count: 94, Neg. LLF: 122.71038453850453
Iteration: 9, Func. Count: 106, Neg. LLF: 122.83641309666284
Iteration: 10, Func. Count: 118, Neg. LLF: 122.63545879025168
Iteration: 11, Func. Count: 130, Neg. LLF: 122.42646072128656
Iteration: 12, Func. Count: 141, Neg. LLF: 122.4136784609851
Iteration: 13, Func. Count: 152, Neg. LLF: 122.41116508848661
Iteration: 14, Func. Count: 163, Neg. LLF: 122.41101998774627
Iteration: 15, Func. Count: 174, Neg. LLF: 122.41099853744993
Iteration: 16, Func. Count: 184, Neg. LLF: 122.41099875606486
Optimization terminated successfully (Exit mode 0)
Current function value: 122.41099853744993
Iterations: 16
Function evaluations: 184
Gradient evaluations: 16
Iteration: 1, Func. Count: 13, Neg. LLF: 127.68555375931405
Iteration: 2, Func. Count: 26, Neg. LLF: 124.66563354533699
Iteration: 3, Func. Count: 38, Neg. LLF: 126.85416899467427
Iteration: 4, Func. Count: 51, Neg. LLF: 190.86797000449582
Iteration: 5, Func. Count: 64, Neg. LLF: 122.758410857465
Iteration: 6, Func. Count: 76, Neg. LLF: 155.58036200643687
Iteration: 7, Func. Count: 90, Neg. LLF: 2948483.1129625463
Iteration: 8, Func. Count: 103, Neg. LLF: 122.52198425471717
Iteration: 9, Func. Count: 116, Neg. LLF: 166.3673845612466
Iteration: 10, Func. Count: 130, Neg. LLF: 122.40336107966532
Iteration: 11, Func. Count: 142, Neg. LLF: 122.38363540010695
Iteration: 12, Func. Count: 154, Neg. LLF: 122.3964808592329
Iteration: 13, Func. Count: 167, Neg. LLF: 122.38073332294715
Iteration: 14, Func. Count: 179, Neg. LLF: 122.3790385382864
Iteration: 15, Func. Count: 191, Neg. LLF: 122.3789902981373
Iteration: 16, Func. Count: 203, Neg. LLF: 122.37896813693635
Iteration: 17, Func. Count: 215, Neg. LLF: 122.3789668394611
Iteration: 18, Func. Count: 226, Neg. LLF: 122.37896683917094
Optimization terminated successfully (Exit mode 0)
Current function value: 122.3789668394611
Iterations: 18
Function evaluations: 226
Gradient evaluations: 18
Iteration: 1, Func. Count: 10, Neg. LLF: 128.29442470856404
Iteration: 2, Func. Count: 20, Neg. LLF: 130.08727131306154
Iteration: 3, Func. Count: 30, Neg. LLF: 125.42609204371166
Iteration: 4, Func. Count: 41, Neg. LLF: 128.54345044181193
Iteration: 5, Func. Count: 51, Neg. LLF: 122.62608392732889
Iteration: 6, Func. Count: 60, Neg. LLF: 274.81977781951366
Iteration: 7, Func. Count: 70, Neg. LLF: 124.05347618887474
Iteration: 8, Func. Count: 80, Neg. LLF: 122.65270642849023
Iteration: 9, Func. Count: 90, Neg. LLF: 122.41527690387694
Iteration: 10, Func. Count: 99, Neg. LLF: 122.41189027423391
Iteration: 11, Func. Count: 108, Neg. LLF: 122.41116018432368
Iteration: 12, Func. Count: 117, Neg. LLF: 122.41103735623312
Iteration: 13, Func. Count: 126, Neg. LLF: 122.41100872656136
Iteration: 14, Func. Count: 135, Neg. LLF: 122.41100253128575
Iteration: 15, Func. Count: 144, Neg. LLF: 122.41099868310296
Iteration: 16, Func. Count: 152, Neg. LLF: 122.41099891662735
Optimization terminated successfully (Exit mode 0)
Current function value: 122.41099868310296
Iterations: 16
Function evaluations: 152
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 127.26920190331775
Iteration: 2, Func. Count: 22, Neg. LLF: 124.35702667388098
Iteration: 3, Func. Count: 32, Neg. LLF: 129.05791785987998
Iteration: 4, Func. Count: 43, Neg. LLF: 156.47169547748067
Iteration: 5, Func. Count: 54, Neg. LLF: 122.72488576702558
Iteration: 6, Func. Count: 64, Neg. LLF: 363.0671583236407
Iteration: 7, Func. Count: 76, Neg. LLF: 170.43336108515183
Iteration: 8, Func. Count: 87, Neg. LLF: 123.26585146537073
Iteration: 9, Func. Count: 98, Neg. LLF: 122.41759537960442
Iteration: 10, Func. Count: 108, Neg. LLF: 122.41245236885226
Iteration: 11, Func. Count: 118, Neg. LLF: 122.41132671959525
Iteration: 12, Func. Count: 128, Neg. LLF: 122.41112601250322
Iteration: 13, Func. Count: 138, Neg. LLF: 122.41100732674606
Iteration: 14, Func. Count: 148, Neg. LLF: 122.41099891523045
Iteration: 15, Func. Count: 157, Neg. LLF: 122.41099902982323
Optimization terminated successfully (Exit mode 0)
Current function value: 122.41099891523045
Iterations: 15
Function evaluations: 157
Gradient evaluations: 15
Iteration: 1, Func. Count: 12, Neg. LLF: 125.40264472714172
Iteration: 2, Func. Count: 23, Neg. LLF: 124.06824874002919
Iteration: 3, Func. Count: 34, Neg. LLF: 138.3922779715132
Iteration: 4, Func. Count: 47, Neg. LLF: 136.5678231334155
Iteration: 5, Func. Count: 59, Neg. LLF: 141.2750613199781
Iteration: 6, Func. Count: 71, Neg. LLF: 147.959652057517
Iteration: 7, Func. Count: 83, Neg. LLF: 123.89940287918634
Iteration: 8, Func. Count: 95, Neg. LLF: 122.67504196865127
Iteration: 9, Func. Count: 107, Neg. LLF: 122.43133965838422
Iteration: 10, Func. Count: 119, Neg. LLF: 122.55761488486354
Iteration: 11, Func. Count: 131, Neg. LLF: 122.41234373655644
Iteration: 12, Func. Count: 142, Neg. LLF: 122.41184458634984
Iteration: 13, Func. Count: 153, Neg. LLF: 122.41106549121655
Iteration: 14, Func. Count: 164, Neg. LLF: 122.41102926830382
Iteration: 15, Func. Count: 175, Neg. LLF: 122.41101282849367
Iteration: 16, Func. Count: 186, Neg. LLF: 122.4109983566856
Iteration: 17, Func. Count: 196, Neg. LLF: 122.41099839822857
Optimization terminated successfully (Exit mode 0)
Current function value: 122.4109983566856
Iterations: 17
Function evaluations: 196
Gradient evaluations: 17
Iteration: 1, Func. Count: 13, Neg. LLF: 126.18661335003544
Iteration: 2, Func. Count: 25, Neg. LLF: 124.74851202214079
Iteration: 3, Func. Count: 37, Neg. LLF: 133.99399109593156
Iteration: 4, Func. Count: 50, Neg. LLF: 140.84454885512793
Iteration: 5, Func. Count: 63, Neg. LLF: 140.9502515536412
Iteration: 6, Func. Count: 76, Neg. LLF: 128.88273955961097
Iteration: 7, Func. Count: 89, Neg. LLF: 14588511.899076998
Iteration: 8, Func. Count: 102, Neg. LLF: 124.13311094698378
Iteration: 9, Func. Count: 115, Neg. LLF: 122.57619565040319
Iteration: 10, Func. Count: 128, Neg. LLF: 122.78460807775456
Iteration: 11, Func. Count: 141, Neg. LLF: 122.4393797733078
Iteration: 12, Func. Count: 153, Neg. LLF: 122.42187916973634
Iteration: 13, Func. Count: 165, Neg. LLF: 122.41124319548898
Iteration: 14, Func. Count: 177, Neg. LLF: 122.41101361103637
Iteration: 15, Func. Count: 189, Neg. LLF: 122.41100297185555
Iteration: 16, Func. Count: 201, Neg. LLF: 122.41099930967358
Iteration: 17, Func. Count: 213, Neg. LLF: 122.41099830806432
Iteration: 18, Func. Count: 224, Neg. LLF: 122.41099852667165
Optimization terminated successfully (Exit mode 0)
Current function value: 122.41099830806432
Iterations: 18
Function evaluations: 224
Gradient evaluations: 18
Iteration: 1, Func. Count: 14, Neg. LLF: 127.65601657306571
Iteration: 2, Func. Count: 28, Neg. LLF: 124.65578930225026
Iteration: 3, Func. Count: 41, Neg. LLF: 126.94398100070778
Iteration: 4, Func. Count: 55, Neg. LLF: 190.4049609633924
Iteration: 5, Func. Count: 69, Neg. LLF: 122.66256643014479
Iteration: 6, Func. Count: 82, Neg. LLF: 200.79135458272285
Iteration: 7, Func. Count: 98, Neg. LLF: 144.5464253754732
Iteration: 8, Func. Count: 113, Neg. LLF: 133.19164526574448
Iteration: 9, Func. Count: 127, Neg. LLF: 122.52106133491853
Iteration: 10, Func. Count: 141, Neg. LLF: 122.5687231070574
Iteration: 11, Func. Count: 155, Neg. LLF: 122.38987969430785
Iteration: 12, Func. Count: 168, Neg. LLF: 122.37993997127057
Iteration: 13, Func. Count: 181, Neg. LLF: 122.3791550776138
Iteration: 14, Func. Count: 194, Neg. LLF: 122.37901370475193
Iteration: 15, Func. Count: 207, Neg. LLF: 122.37897046322745
Iteration: 16, Func. Count: 220, Neg. LLF: 122.3789671586199
Iteration: 17, Func. Count: 232, Neg. LLF: 122.37896715835547
Optimization terminated successfully (Exit mode 0)
Current function value: 122.3789671586199
Iterations: 17
Function evaluations: 232
Gradient evaluations: 17
Iteration: 1, Func. Count: 7, Neg. LLF: 126.19756936501587
Iteration: 2, Func. Count: 13, Neg. LLF: 128.97782344036608
Iteration: 3, Func. Count: 20, Neg. LLF: 128.2670450612084
Iteration: 4, Func. Count: 27, Neg. LLF: 142.72640524374125
Iteration: 5, Func. Count: 34, Neg. LLF: 140.94082619906396
Iteration: 6, Func. Count: 41, Neg. LLF: 540.4708934498265
Iteration: 7, Func. Count: 48, Neg. LLF: 124.76336068031212
Iteration: 8, Func. Count: 55, Neg. LLF: 123.87428782398592
Iteration: 9, Func. Count: 62, Neg. LLF: 123.81067078220028
Iteration: 10, Func. Count: 68, Neg. LLF: 123.79861215115405
Iteration: 11, Func. Count: 74, Neg. LLF: 123.79739146292225
Iteration: 12, Func. Count: 80, Neg. LLF: 123.79721713332583
Iteration: 13, Func. Count: 86, Neg. LLF: 123.7971845496601
Iteration: 14, Func. Count: 92, Neg. LLF: 123.79718376866263
Optimization terminated successfully (Exit mode 0)
Current function value: 123.79718376866263
Iterations: 14
Function evaluations: 92
Gradient evaluations: 14
Iteration: 1, Func. Count: 8, Neg. LLF: 124.40283214665725
Iteration: 2, Func. Count: 15, Neg. LLF: 125.44891107237142
Iteration: 3, Func. Count: 23, Neg. LLF: 123.974268143054
Iteration: 4, Func. Count: 30, Neg. LLF: 234.0499860284239
Iteration: 5, Func. Count: 39, Neg. LLF: 123.98534721311125
Iteration: 6, Func. Count: 47, Neg. LLF: 123.8235126764724
Iteration: 7, Func. Count: 54, Neg. LLF: 123.88480442887096
Iteration: 8, Func. Count: 62, Neg. LLF: 123.82079001215558
Iteration: 9, Func. Count: 70, Neg. LLF: 123.79756382164067
Iteration: 10, Func. Count: 77, Neg. LLF: 123.79643219641584
Iteration: 11, Func. Count: 84, Neg. LLF: 123.79696338070683
Iteration: 12, Func. Count: 92, Neg. LLF: 123.79541334658207
Iteration: 13, Func. Count: 99, Neg. LLF: 123.79512111534324
Iteration: 14, Func. Count: 106, Neg. LLF: 123.79512014622664
Optimization terminated successfully (Exit mode 0)
Current function value: 123.79512014622664
Iterations: 14
Function evaluations: 106
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 124.4025952396051
Iteration: 2, Func. Count: 17, Neg. LLF: 125.22264528102232
Iteration: 3, Func. Count: 26, Neg. LLF: 123.98342039445359
Iteration: 4, Func. Count: 34, Neg. LLF: 230.28324240829085
Iteration: 5, Func. Count: 44, Neg. LLF: 125.12573711208796
Iteration: 6, Func. Count: 53, Neg. LLF: 123.87894391244598
Iteration: 7, Func. Count: 62, Neg. LLF: 123.81706520914014
Iteration: 8, Func. Count: 70, Neg. LLF: 123.92576558086736
Iteration: 9, Func. Count: 79, Neg. LLF: 123.79839896606248
Iteration: 10, Func. Count: 87, Neg. LLF: 123.7966557617912
Iteration: 11, Func. Count: 95, Neg. LLF: 123.7956367938178
Iteration: 12, Func. Count: 103, Neg. LLF: 123.79524000838134
Iteration: 13, Func. Count: 111, Neg. LLF: 123.79512309517001
Iteration: 14, Func. Count: 119, Neg. LLF: 123.79512020522209
Iteration: 15, Func. Count: 126, Neg. LLF: 123.79512022999381
Optimization terminated successfully (Exit mode 0)
Current function value: 123.79512020522209
Iterations: 15
Function evaluations: 126
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 124.40247824090572
Iteration: 2, Func. Count: 19, Neg. LLF: 125.08757447285728
Iteration: 3, Func. Count: 29, Neg. LLF: 123.99145824286758
Iteration: 4, Func. Count: 38, Neg. LLF: 312.1378043712956
Iteration: 5, Func. Count: 49, Neg. LLF: 129.8630486607981
Iteration: 6, Func. Count: 59, Neg. LLF: 123.85496093015612
Iteration: 7, Func. Count: 69, Neg. LLF: 123.8441577574641
Iteration: 8, Func. Count: 79, Neg. LLF: 123.7985094731969
Iteration: 9, Func. Count: 88, Neg. LLF: 123.80187149270097
Iteration: 10, Func. Count: 98, Neg. LLF: 123.79724935489041
Iteration: 11, Func. Count: 107, Neg. LLF: 123.79660768103227
Iteration: 12, Func. Count: 116, Neg. LLF: 123.79559399080303
Iteration: 13, Func. Count: 125, Neg. LLF: 123.79518118336298
Iteration: 14, Func. Count: 134, Neg. LLF: 123.79513430512029
Iteration: 15, Func. Count: 143, Neg. LLF: 123.79512225349349
Iteration: 16, Func. Count: 152, Neg. LLF: 123.79512024085156
Iteration: 17, Func. Count: 160, Neg. LLF: 123.79512041576828
Optimization terminated successfully (Exit mode 0)
Current function value: 123.79512024085156
Iterations: 17
Function evaluations: 160
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 124.40219786132312
Iteration: 2, Func. Count: 21, Neg. LLF: 125.0246489007489
Iteration: 3, Func. Count: 32, Neg. LLF: 167.36588030427342
Iteration: 4, Func. Count: 45, Neg. LLF: 125.0399553603833
Iteration: 5, Func. Count: 56, Neg. LLF: 245.31796232057533
Iteration: 6, Func. Count: 67, Neg. LLF: 123.84926722011978
Iteration: 7, Func. Count: 77, Neg. LLF: 124.64692551008831
Iteration: 8, Func. Count: 88, Neg. LLF: 123.93365209001702
Iteration: 9, Func. Count: 99, Neg. LLF: 123.71823695235696
Iteration: 10, Func. Count: 109, Neg. LLF: 123.7060082660178
Iteration: 11, Func. Count: 119, Neg. LLF: 123.70499700164066
Iteration: 12, Func. Count: 129, Neg. LLF: 123.70493871892438
Iteration: 13, Func. Count: 139, Neg. LLF: 123.70493530223348
Iteration: 14, Func. Count: 149, Neg. LLF: 123.70493445404266
Optimization terminated successfully (Exit mode 0)
Current function value: 123.70493445404266
Iterations: 14
Function evaluations: 149
Gradient evaluations: 14
Iteration: 1, Func. Count: 8, Neg. LLF: 130.44534631354168
Iteration: 2, Func. Count: 16, Neg. LLF: 131.3910085399194
Iteration: 3, Func. Count: 24, Neg. LLF: 124.21023538082414
Iteration: 4, Func. Count: 32, Neg. LLF: 123.88948976861414
Iteration: 5, Func. Count: 39, Neg. LLF: 203.88730179570976
Iteration: 6, Func. Count: 47, Neg. LLF: 123.76706041055861
Iteration: 7, Func. Count: 54, Neg. LLF: 141.73157800631407
Iteration: 8, Func. Count: 63, Neg. LLF: 123.73847905258684
Iteration: 9, Func. Count: 70, Neg. LLF: 123.72567113308524
Iteration: 10, Func. Count: 77, Neg. LLF: 123.72103747835874
Iteration: 11, Func. Count: 84, Neg. LLF: 123.72008872666582
Iteration: 12, Func. Count: 91, Neg. LLF: 123.72000640778944
Iteration: 13, Func. Count: 98, Neg. LLF: 123.71999953833013
Iteration: 14, Func. Count: 104, Neg. LLF: 123.71999953834282
Optimization terminated successfully (Exit mode 0)
Current function value: 123.71999953833013
Iterations: 14
Function evaluations: 104
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 126.51081234144104
Iteration: 2, Func. Count: 18, Neg. LLF: 128.13105317505506
Iteration: 3, Func. Count: 27, Neg. LLF: 124.00369739318724
Iteration: 4, Func. Count: 35, Neg. LLF: 134.3189830796249
Iteration: 5, Func. Count: 45, Neg. LLF: 128.27833128377074
Iteration: 6, Func. Count: 54, Neg. LLF: 124.80925985603018
Iteration: 7, Func. Count: 64, Neg. LLF: 133.74311952479295
Iteration: 8, Func. Count: 73, Neg. LLF: 123.73966382031492
Iteration: 9, Func. Count: 81, Neg. LLF: 123.73007372607064
Iteration: 10, Func. Count: 89, Neg. LLF: 123.72180047593972
Iteration: 11, Func. Count: 97, Neg. LLF: 123.7200419167681
Iteration: 12, Func. Count: 105, Neg. LLF: 123.7199996522303
Iteration: 13, Func. Count: 112, Neg. LLF: 123.71999968208607
Optimization terminated successfully (Exit mode 0)
Current function value: 123.7199996522303
Iterations: 13
Function evaluations: 112
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 126.74604020339704
Iteration: 2, Func. Count: 20, Neg. LLF: 128.3556448789033
Iteration: 3, Func. Count: 30, Neg. LLF: 123.9345574481017
Iteration: 4, Func. Count: 39, Neg. LLF: 142.25258032918467
Iteration: 5, Func. Count: 49, Neg. LLF: 127.7022836669345
Iteration: 6, Func. Count: 59, Neg. LLF: 125.04903166146217
Iteration: 7, Func. Count: 70, Neg. LLF: 123.75640545435215
Iteration: 8, Func. Count: 79, Neg. LLF: 123.73247039256492
Iteration: 9, Func. Count: 88, Neg. LLF: 123.72223265606954
Iteration: 10, Func. Count: 97, Neg. LLF: 123.72007818025203
Iteration: 11, Func. Count: 106, Neg. LLF: 123.72000159712081
Iteration: 12, Func. Count: 115, Neg. LLF: 123.7199993061129
Iteration: 13, Func. Count: 123, Neg. LLF: 123.71999931378278
Optimization terminated successfully (Exit mode 0)
Current function value: 123.7199993061129
Iterations: 13
Function evaluations: 123
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 126.87329100565054
Iteration: 2, Func. Count: 22, Neg. LLF: 128.06964288483374
Iteration: 3, Func. Count: 33, Neg. LLF: 123.91597632846728
Iteration: 4, Func. Count: 43, Neg. LLF: 140.7008672014786
Iteration: 5, Func. Count: 54, Neg. LLF: 125.1657563376378
Iteration: 6, Func. Count: 65, Neg. LLF: 125.08388333197996
Iteration: 7, Func. Count: 77, Neg. LLF: 123.74465264529809
Iteration: 8, Func. Count: 87, Neg. LLF: 123.72646197362354
Iteration: 9, Func. Count: 97, Neg. LLF: 123.7218267259046
Iteration: 10, Func. Count: 107, Neg. LLF: 123.72002994505954
Iteration: 11, Func. Count: 117, Neg. LLF: 123.71999965507177
Iteration: 12, Func. Count: 126, Neg. LLF: 123.71999985400939
Optimization terminated successfully (Exit mode 0)
Current function value: 123.71999965507177
Iterations: 12
Function evaluations: 126
Gradient evaluations: 12
Iteration: 1, Func. Count: 12, Neg. LLF: 127.56929863696222
Iteration: 2, Func. Count: 24, Neg. LLF: 127.53341241669122
Iteration: 3, Func. Count: 36, Neg. LLF: 123.97732472536518
Iteration: 4, Func. Count: 47, Neg. LLF: 142.17192711115734
Iteration: 5, Func. Count: 59, Neg. LLF: 129.73470748765135
Iteration: 6, Func. Count: 71, Neg. LLF: 125.21256731915895
Iteration: 7, Func. Count: 84, Neg. LLF: 124.00552773069751
Iteration: 8, Func. Count: 96, Neg. LLF: 124.01660852337378
Iteration: 9, Func. Count: 108, Neg. LLF: 123.67813775472756
Iteration: 10, Func. Count: 119, Neg. LLF: 123.6615906912883
Iteration: 11, Func. Count: 130, Neg. LLF: 123.64795229888173
Iteration: 12, Func. Count: 141, Neg. LLF: 123.64412262364378
Iteration: 13, Func. Count: 152, Neg. LLF: 123.64373953071474
Iteration: 14, Func. Count: 163, Neg. LLF: 123.64373187757347
Iteration: 15, Func. Count: 173, Neg. LLF: 123.64373187750442
Optimization terminated successfully (Exit mode 0)
Current function value: 123.64373187757347
Iterations: 15
Function evaluations: 173
Gradient evaluations: 15
Iteration: 1, Func. Count: 9, Neg. LLF: 128.8681509475739
Iteration: 2, Func. Count: 18, Neg. LLF: 129.87509182792067
Iteration: 3, Func. Count: 27, Neg. LLF: 126.17366960970973
Iteration: 4, Func. Count: 37, Neg. LLF: 126.36291989418413
Iteration: 5, Func. Count: 46, Neg. LLF: 122.60316106332048
Iteration: 6, Func. Count: 54, Neg. LLF: 151.71912604909068
Iteration: 7, Func. Count: 64, Neg. LLF: 123.06512908174636
Iteration: 8, Func. Count: 73, Neg. LLF: 122.65075074029438
Iteration: 9, Func. Count: 82, Neg. LLF: 122.45415616376093
Iteration: 10, Func. Count: 90, Neg. LLF: 122.4510313337203
Iteration: 11, Func. Count: 98, Neg. LLF: 122.45048858640116
Iteration: 12, Func. Count: 106, Neg. LLF: 122.4503933282557
Iteration: 13, Func. Count: 114, Neg. LLF: 122.45034118280357
Iteration: 14, Func. Count: 122, Neg. LLF: 122.45032725763951
Iteration: 15, Func. Count: 130, Neg. LLF: 122.45032560363609
Iteration: 16, Func. Count: 137, Neg. LLF: 122.4503255030971
Optimization terminated successfully (Exit mode 0)
Current function value: 122.45032560363609
Iterations: 16
Function evaluations: 137
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 124.93902835788505
Iteration: 2, Func. Count: 19, Neg. LLF: 125.95426820008548
Iteration: 3, Func. Count: 29, Neg. LLF: 124.6882957083321
Iteration: 4, Func. Count: 39, Neg. LLF: 135.4365790913137
Iteration: 5, Func. Count: 49, Neg. LLF: 150.63438236049498
Iteration: 6, Func. Count: 59, Neg. LLF: 273.6615390478255
Iteration: 7, Func. Count: 69, Neg. LLF: 123.42173009853418
Iteration: 8, Func. Count: 79, Neg. LLF: 122.54645955220649
Iteration: 9, Func. Count: 89, Neg. LLF: 122.82396209283537
Iteration: 10, Func. Count: 100, Neg. LLF: 122.47875228684107
Iteration: 11, Func. Count: 110, Neg. LLF: 122.4591036142429
Iteration: 12, Func. Count: 119, Neg. LLF: 122.4531033714494
Iteration: 13, Func. Count: 128, Neg. LLF: 122.4513270932224
Iteration: 14, Func. Count: 137, Neg. LLF: 122.45061317267701
Iteration: 15, Func. Count: 146, Neg. LLF: 122.45035277401432
Iteration: 16, Func. Count: 155, Neg. LLF: 122.45032717834603
Iteration: 17, Func. Count: 164, Neg. LLF: 122.45032556994943
Iteration: 18, Func. Count: 172, Neg. LLF: 122.4503256856255
Optimization terminated successfully (Exit mode 0)
Current function value: 122.45032556994943
Iterations: 18
Function evaluations: 172
Gradient evaluations: 18
Iteration: 1, Func. Count: 11, Neg. LLF: 125.25123146158526
Iteration: 2, Func. Count: 21, Neg. LLF: 125.13517302804374
Iteration: 3, Func. Count: 32, Neg. LLF: 131.56741512862425
Iteration: 4, Func. Count: 45, Neg. LLF: 135.5831231206998
Iteration: 5, Func. Count: 56, Neg. LLF: 141.5589718070404
Iteration: 6, Func. Count: 67, Neg. LLF: 201.85429984862287
Iteration: 7, Func. Count: 78, Neg. LLF: 126.9753365341442
Iteration: 8, Func. Count: 89, Neg. LLF: 122.69521674819322
Iteration: 9, Func. Count: 100, Neg. LLF: 122.50880889534183
Iteration: 10, Func. Count: 111, Neg. LLF: 122.47331281925976
Iteration: 11, Func. Count: 122, Neg. LLF: 122.44925935606412
Iteration: 12, Func. Count: 132, Neg. LLF: 122.44365362451884
Iteration: 13, Func. Count: 142, Neg. LLF: 122.44319332580925
Iteration: 14, Func. Count: 152, Neg. LLF: 122.44317229006306
Iteration: 15, Func. Count: 162, Neg. LLF: 122.44316882662598
Iteration: 16, Func. Count: 172, Neg. LLF: 122.44316089777863
Iteration: 17, Func. Count: 182, Neg. LLF: 122.44315959742582
Iteration: 18, Func. Count: 191, Neg. LLF: 122.44315959742858
Optimization terminated successfully (Exit mode 0)
Current function value: 122.44315959742582
Iterations: 18
Function evaluations: 191
Gradient evaluations: 18
Iteration: 1, Func. Count: 12, Neg. LLF: 125.85124902438486
Iteration: 2, Func. Count: 23, Neg. LLF: 124.44668939450388
Iteration: 3, Func. Count: 34, Neg. LLF: 136.3529207455467
Iteration: 4, Func. Count: 46, Neg. LLF: 139.24645712956857
Iteration: 5, Func. Count: 58, Neg. LLF: 134.83923199935163
Iteration: 6, Func. Count: 70, Neg. LLF: 776.5993134220055
Iteration: 7, Func. Count: 82, Neg. LLF: 24175.458596078104
Iteration: 8, Func. Count: 96, Neg. LLF: 126.10323659526485
Iteration: 9, Func. Count: 108, Neg. LLF: 122.61783568074301
Iteration: 10, Func. Count: 120, Neg. LLF: 122.47269887196747
Iteration: 11, Func. Count: 131, Neg. LLF: 122.4560621249033
Iteration: 12, Func. Count: 142, Neg. LLF: 122.4467272922059
Iteration: 13, Func. Count: 153, Neg. LLF: 122.44334184336067
Iteration: 14, Func. Count: 164, Neg. LLF: 122.44318266843243
Iteration: 15, Func. Count: 175, Neg. LLF: 122.4431648750837
Iteration: 16, Func. Count: 186, Neg. LLF: 122.44315965795253
Iteration: 17, Func. Count: 196, Neg. LLF: 122.44315988292227
Optimization terminated successfully (Exit mode 0)
Current function value: 122.44315965795253
Iterations: 17
Function evaluations: 196
Gradient evaluations: 17
Iteration: 1, Func. Count: 13, Neg. LLF: 127.54022256138155
Iteration: 2, Func. Count: 26, Neg. LLF: 124.75611244854257
Iteration: 3, Func. Count: 38, Neg. LLF: 130.7360348439045
Iteration: 4, Func. Count: 51, Neg. LLF: 134.8098027881451
Iteration: 5, Func. Count: 64, Neg. LLF: 124.39475917459073
Iteration: 6, Func. Count: 77, Neg. LLF: 186.17474854736318
Iteration: 7, Func. Count: 90, Neg. LLF: 122.62390566943841
Iteration: 8, Func. Count: 103, Neg. LLF: 143.05681638025814
Iteration: 9, Func. Count: 117, Neg. LLF: 127.96355140805711
Iteration: 10, Func. Count: 131, Neg. LLF: 122.45501392893613
Iteration: 11, Func. Count: 143, Neg. LLF: 122.47028904928025
Iteration: 12, Func. Count: 156, Neg. LLF: 122.42914013336411
Iteration: 13, Func. Count: 168, Neg. LLF: 122.41963623120914
Iteration: 14, Func. Count: 180, Neg. LLF: 122.41705937025966
Iteration: 15, Func. Count: 192, Neg. LLF: 122.416538257353
Iteration: 16, Func. Count: 204, Neg. LLF: 122.41651464215188
Iteration: 17, Func. Count: 215, Neg. LLF: 122.41651464225706
Optimization terminated successfully (Exit mode 0)
Current function value: 122.41651464215188
Iterations: 17
Function evaluations: 215
Gradient evaluations: 17
Iteration: 1, Func. Count: 10, Neg. LLF: 127.19555886987048
Iteration: 2, Func. Count: 20, Neg. LLF: 126.11325710670735
Iteration: 3, Func. Count: 30, Neg. LLF: 125.02921091014763
Iteration: 4, Func. Count: 40, Neg. LLF: 129.9666690047858
Iteration: 5, Func. Count: 50, Neg. LLF: 122.61263903032535
Iteration: 6, Func. Count: 59, Neg. LLF: 235.54613248149812
Iteration: 7, Func. Count: 69, Neg. LLF: 122.45726275929009
Iteration: 8, Func. Count: 78, Neg. LLF: 123.75321213702654
Iteration: 9, Func. Count: 88, Neg. LLF: 122.41600373594173
Iteration: 10, Func. Count: 97, Neg. LLF: 122.41264775194583
Iteration: 11, Func. Count: 106, Neg. LLF: 122.41104014148644
Iteration: 12, Func. Count: 115, Neg. LLF: 122.41101567275885
Iteration: 13, Func. Count: 124, Neg. LLF: 122.4109984097155
Iteration: 14, Func. Count: 132, Neg. LLF: 122.410998409769
Optimization terminated successfully (Exit mode 0)
Current function value: 122.4109984097155
Iterations: 14
Function evaluations: 132
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 125.02451530607183
Iteration: 2, Func. Count: 21, Neg. LLF: 125.89371969244964
Iteration: 3, Func. Count: 32, Neg. LLF: 127.12074284748476
Iteration: 4, Func. Count: 44, Neg. LLF: 135.35641999001038
Iteration: 5, Func. Count: 55, Neg. LLF: 138.71010511238336
Iteration: 6, Func. Count: 66, Neg. LLF: 464.94832567603754
Iteration: 7, Func. Count: 77, Neg. LLF: 125.52357406589951
Iteration: 8, Func. Count: 88, Neg. LLF: 122.73309928425385
Iteration: 9, Func. Count: 99, Neg. LLF: 122.51134215262039
Iteration: 10, Func. Count: 110, Neg. LLF: 126.41176535217764
Iteration: 11, Func. Count: 121, Neg. LLF: 122.42288662657042
Iteration: 12, Func. Count: 131, Neg. LLF: 122.41747757579022
Iteration: 13, Func. Count: 141, Neg. LLF: 122.41431372185785
Iteration: 14, Func. Count: 151, Neg. LLF: 122.41289368397395
Iteration: 15, Func. Count: 161, Neg. LLF: 122.4117206873528
Iteration: 16, Func. Count: 171, Neg. LLF: 122.41121687625923
Iteration: 17, Func. Count: 181, Neg. LLF: 122.41103272311355
Iteration: 18, Func. Count: 191, Neg. LLF: 122.41100087395634
Iteration: 19, Func. Count: 201, Neg. LLF: 122.41099833512146
Iteration: 20, Func. Count: 210, Neg. LLF: 122.41099844978827
Optimization terminated successfully (Exit mode 0)
Current function value: 122.41099833512146
Iterations: 20
Function evaluations: 210
Gradient evaluations: 20
Iteration: 1, Func. Count: 12, Neg. LLF: 125.3931249324169
Iteration: 2, Func. Count: 23, Neg. LLF: 124.0925683049175
Iteration: 3, Func. Count: 34, Neg. LLF: 136.9014520792425
Iteration: 4, Func. Count: 46, Neg. LLF: 136.16970749139568
Iteration: 5, Func. Count: 58, Neg. LLF: 142.3021898508635
Iteration: 6, Func. Count: 70, Neg. LLF: 177.96889437545138
Iteration: 7, Func. Count: 82, Neg. LLF: 123.90592943914565
Iteration: 8, Func. Count: 94, Neg. LLF: 122.5822108026653
Iteration: 9, Func. Count: 106, Neg. LLF: 122.69078040147355
Iteration: 10, Func. Count: 118, Neg. LLF: 122.44368111793662
Iteration: 11, Func. Count: 130, Neg. LLF: 122.4144911089886
Iteration: 12, Func. Count: 142, Neg. LLF: 122.41125696393338
Iteration: 13, Func. Count: 153, Neg. LLF: 122.41105619173167
Iteration: 14, Func. Count: 164, Neg. LLF: 122.4110295611995
Iteration: 15, Func. Count: 175, Neg. LLF: 122.41100085375272
Iteration: 16, Func. Count: 186, Neg. LLF: 122.41099842677463
Iteration: 17, Func. Count: 196, Neg. LLF: 122.41099846842867
Optimization terminated successfully (Exit mode 0)
Current function value: 122.41099842677463
Iterations: 17
Function evaluations: 196
Gradient evaluations: 17
Iteration: 1, Func. Count: 13, Neg. LLF: 126.18928887205406
Iteration: 2, Func. Count: 25, Neg. LLF: 124.7708755222321
Iteration: 3, Func. Count: 37, Neg. LLF: 134.02411145286624
Iteration: 4, Func. Count: 50, Neg. LLF: 140.87524586539706
Iteration: 5, Func. Count: 63, Neg. LLF: 139.85476322578404
Iteration: 6, Func. Count: 76, Neg. LLF: 160.42855715974844
Iteration: 7, Func. Count: 89, Neg. LLF: 13169620.448880209
Iteration: 8, Func. Count: 102, Neg. LLF: 123.86068723531453
Iteration: 9, Func. Count: 115, Neg. LLF: 122.57668858911033
Iteration: 10, Func. Count: 128, Neg. LLF: 122.77260182243984
Iteration: 11, Func. Count: 141, Neg. LLF: 122.44012608507776
Iteration: 12, Func. Count: 153, Neg. LLF: 122.42360335402643
Iteration: 13, Func. Count: 165, Neg. LLF: 122.41159642091914
Iteration: 14, Func. Count: 177, Neg. LLF: 122.41100928558546
Iteration: 15, Func. Count: 189, Neg. LLF: 122.4109989642462
Iteration: 16, Func. Count: 200, Neg. LLF: 122.41099918288477
Optimization terminated successfully (Exit mode 0)
Current function value: 122.4109989642462
Iterations: 16
Function evaluations: 200
Gradient evaluations: 16
Iteration: 1, Func. Count: 14, Neg. LLF: 127.60956525050676
Iteration: 2, Func. Count: 28, Neg. LLF: 124.74163540657405
Iteration: 3, Func. Count: 41, Neg. LLF: 130.6588088781002
Iteration: 4, Func. Count: 55, Neg. LLF: 134.62105837765955
Iteration: 5, Func. Count: 69, Neg. LLF: 158.37638558296675
Iteration: 6, Func. Count: 83, Neg. LLF: 1192.2826826208334
Iteration: 7, Func. Count: 97, Neg. LLF: 128.56520545645068
Iteration: 8, Func. Count: 111, Neg. LLF: 124.25374759164234
Iteration: 9, Func. Count: 125, Neg. LLF: 122.57861886723904
Iteration: 10, Func. Count: 139, Neg. LLF: 130.45281675012203
Iteration: 11, Func. Count: 154, Neg. LLF: 122.49142384088586
Iteration: 12, Func. Count: 168, Neg. LLF: 122.45672568035546
Iteration: 13, Func. Count: 182, Neg. LLF: 122.38931951150515
Iteration: 14, Func. Count: 195, Neg. LLF: 122.37967452646782
Iteration: 15, Func. Count: 208, Neg. LLF: 122.37898216610749
Iteration: 16, Func. Count: 221, Neg. LLF: 122.37896752084636
Iteration: 17, Func. Count: 234, Neg. LLF: 122.37896690386617
Optimization terminated successfully (Exit mode 0)
Current function value: 122.37896690386617
Iterations: 17
Function evaluations: 234
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 126.71187867641582
Iteration: 2, Func. Count: 22, Neg. LLF: 124.59994437042064
Iteration: 3, Func. Count: 32, Neg. LLF: 124.7802190954574
Iteration: 4, Func. Count: 43, Neg. LLF: 124.30636647554822
Iteration: 5, Func. Count: 54, Neg. LLF: 154.80431670999334
Iteration: 6, Func. Count: 65, Neg. LLF: 200.77230220783062
Iteration: 7, Func. Count: 76, Neg. LLF: 132.72544087533765
Iteration: 8, Func. Count: 87, Neg. LLF: 130.32433122649235
Iteration: 9, Func. Count: 98, Neg. LLF: 122.4579485477959
Iteration: 10, Func. Count: 108, Neg. LLF: 122.41978517201593
Iteration: 11, Func. Count: 118, Neg. LLF: 122.41651753525349
Iteration: 12, Func. Count: 128, Neg. LLF: 122.41237894098555
Iteration: 13, Func. Count: 138, Neg. LLF: 122.41107217856083
Iteration: 14, Func. Count: 148, Neg. LLF: 122.41100495905081
Iteration: 15, Func. Count: 158, Neg. LLF: 122.41099891645106
Iteration: 16, Func. Count: 167, Neg. LLF: 122.4109991499886
Optimization terminated successfully (Exit mode 0)
Current function value: 122.41099891645106
Iterations: 16
Function evaluations: 167
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 125.09193638167257
Iteration: 2, Func. Count: 23, Neg. LLF: 125.8699704482053
Iteration: 3, Func. Count: 35, Neg. LLF: 127.95982094163554
Iteration: 4, Func. Count: 48, Neg. LLF: 135.4572925961779
Iteration: 5, Func. Count: 60, Neg. LLF: 137.8472625723412
Iteration: 6, Func. Count: 72, Neg. LLF: 158.64029006047704
Iteration: 7, Func. Count: 84, Neg. LLF: 126.09907868674871
Iteration: 8, Func. Count: 96, Neg. LLF: 122.81053971234783
Iteration: 9, Func. Count: 108, Neg. LLF: 122.50985099909798
Iteration: 10, Func. Count: 120, Neg. LLF: 126.28022617883083
Iteration: 11, Func. Count: 132, Neg. LLF: 122.42238638389749
Iteration: 12, Func. Count: 143, Neg. LLF: 122.41667649626297
Iteration: 13, Func. Count: 154, Neg. LLF: 122.41361711819691
Iteration: 14, Func. Count: 165, Neg. LLF: 122.41263348728289
Iteration: 15, Func. Count: 176, Neg. LLF: 122.41177366467358
Iteration: 16, Func. Count: 187, Neg. LLF: 122.41134519316292
Iteration: 17, Func. Count: 198, Neg. LLF: 122.41106902394733
Iteration: 18, Func. Count: 209, Neg. LLF: 122.411005112315
Iteration: 19, Func. Count: 220, Neg. LLF: 122.41099850054495
Iteration: 20, Func. Count: 230, Neg. LLF: 122.41099861523251
Optimization terminated successfully (Exit mode 0)
Current function value: 122.41099850054495
Iterations: 20
Function evaluations: 230
Gradient evaluations: 20
Iteration: 1, Func. Count: 13, Neg. LLF: 125.54636402806733
Iteration: 2, Func. Count: 25, Neg. LLF: 123.73526251642808
Iteration: 3, Func. Count: 37, Neg. LLF: 133.41120229024656
Iteration: 4, Func. Count: 50, Neg. LLF: 152.40317951134824
Iteration: 5, Func. Count: 65, Neg. LLF: 148.65172816599795
Iteration: 6, Func. Count: 78, Neg. LLF: 157.37551323825005
Iteration: 7, Func. Count: 91, Neg. LLF: 124.43476659632584
Iteration: 8, Func. Count: 104, Neg. LLF: 129.0311290338398
Iteration: 9, Func. Count: 117, Neg. LLF: 122.50580718850186
Iteration: 10, Func. Count: 130, Neg. LLF: 122.41535057722888
Iteration: 11, Func. Count: 142, Neg. LLF: 122.41327672249187
Iteration: 12, Func. Count: 154, Neg. LLF: 122.41134705002133
Iteration: 13, Func. Count: 166, Neg. LLF: 122.41103275907548
Iteration: 14, Func. Count: 178, Neg. LLF: 122.41099962746817
Iteration: 15, Func. Count: 190, Neg. LLF: 122.41099840948446
Iteration: 16, Func. Count: 201, Neg. LLF: 122.4109984512326
Optimization terminated successfully (Exit mode 0)
Current function value: 122.41099840948446
Iterations: 16
Function evaluations: 201
Gradient evaluations: 16
Iteration: 1, Func. Count: 14, Neg. LLF: 126.59785218776624
Iteration: 2, Func. Count: 27, Neg. LLF: 124.88308923831222
Iteration: 3, Func. Count: 40, Neg. LLF: 134.23338490505415
Iteration: 4, Func. Count: 54, Neg. LLF: 140.7869873045685
Iteration: 5, Func. Count: 69, Neg. LLF: 146.1068043096582
Iteration: 6, Func. Count: 83, Neg. LLF: 134.7110301492038
Iteration: 7, Func. Count: 97, Neg. LLF: 187.48691108301412
Iteration: 8, Func. Count: 111, Neg. LLF: 123.45176699845562
Iteration: 9, Func. Count: 125, Neg. LLF: 122.95101257164524
Iteration: 10, Func. Count: 139, Neg. LLF: 122.588818403927
Iteration: 11, Func. Count: 153, Neg. LLF: 122.45111708492955
Iteration: 12, Func. Count: 166, Neg. LLF: 122.43227154045323
Iteration: 13, Func. Count: 179, Neg. LLF: 122.41464018066279
Iteration: 14, Func. Count: 192, Neg. LLF: 122.41398787481013
Iteration: 15, Func. Count: 206, Neg. LLF: 122.41117052681787
Iteration: 16, Func. Count: 219, Neg. LLF: 122.41103188536526
Iteration: 17, Func. Count: 232, Neg. LLF: 122.41100002559057
Iteration: 18, Func. Count: 245, Neg. LLF: 122.4109983208174
Iteration: 19, Func. Count: 257, Neg. LLF: 122.41099853941792
Optimization terminated successfully (Exit mode 0)
Current function value: 122.4109983208174
Iterations: 19
Function evaluations: 257
Gradient evaluations: 19
Iteration: 1, Func. Count: 15, Neg. LLF: 127.62601281788166
Iteration: 2, Func. Count: 30, Neg. LLF: 124.74045736367844
Iteration: 3, Func. Count: 44, Neg. LLF: 130.64213988253607
Iteration: 4, Func. Count: 59, Neg. LLF: 134.55782282751778
Iteration: 5, Func. Count: 74, Neg. LLF: 154.0418882793647
Iteration: 6, Func. Count: 89, Neg. LLF: 834.8347778540395
Iteration: 7, Func. Count: 104, Neg. LLF: 128.29646297510334
Iteration: 8, Func. Count: 119, Neg. LLF: 124.8659499689191
Iteration: 9, Func. Count: 134, Neg. LLF: 122.57166731458192
Iteration: 10, Func. Count: 149, Neg. LLF: 132.7935993014836
Iteration: 11, Func. Count: 165, Neg. LLF: 122.54016688577057
Iteration: 12, Func. Count: 180, Neg. LLF: 122.42891824850697
Iteration: 13, Func. Count: 195, Neg. LLF: 122.38863877737671
Iteration: 14, Func. Count: 209, Neg. LLF: 122.37962123395812
Iteration: 15, Func. Count: 223, Neg. LLF: 122.37900057785188
Iteration: 16, Func. Count: 237, Neg. LLF: 122.37897099452739
Iteration: 17, Func. Count: 251, Neg. LLF: 122.37896747989184
Iteration: 18, Func. Count: 265, Neg. LLF: 122.37896680003516
Optimization terminated successfully (Exit mode 0)
Current function value: 122.37896680003516
Iterations: 18
Function evaluations: 265
Gradient evaluations: 18
Iteration: 1, Func. Count: 8, Neg. LLF: 127.32680304262298
Iteration: 2, Func. Count: 16, Neg. LLF: 170.45188162839997
Iteration: 3, Func. Count: 24, Neg. LLF: 130.37441634474584
Iteration: 4, Func. Count: 32, Neg. LLF: 125.08710486684926
Iteration: 5, Func. Count: 40, Neg. LLF: 124.281847645266
Iteration: 6, Func. Count: 48, Neg. LLF: 124.37562458816153
Iteration: 7, Func. Count: 56, Neg. LLF: 123.83598289664148
Iteration: 8, Func. Count: 63, Neg. LLF: 125.08777325794705
Iteration: 9, Func. Count: 72, Neg. LLF: 123.81954843191103
Iteration: 10, Func. Count: 79, Neg. LLF: 123.80440905048302
Iteration: 11, Func. Count: 86, Neg. LLF: 123.7980963984175
Iteration: 12, Func. Count: 93, Neg. LLF: 123.79718831713681
Iteration: 13, Func. Count: 100, Neg. LLF: 123.7971838516375
Iteration: 14, Func. Count: 106, Neg. LLF: 123.79718408998038
Optimization terminated successfully (Exit mode 0)
Current function value: 123.7971838516375
Iterations: 14
Function evaluations: 106
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 124.40373135556132
Iteration: 2, Func. Count: 17, Neg. LLF: 125.31223854683265
Iteration: 3, Func. Count: 26, Neg. LLF: 123.9775914396341
Iteration: 4, Func. Count: 34, Neg. LLF: 237.3254166628798
Iteration: 5, Func. Count: 44, Neg. LLF: 123.99093239428166
Iteration: 6, Func. Count: 53, Neg. LLF: 123.82301166239354
Iteration: 7, Func. Count: 61, Neg. LLF: 123.90292960042324
Iteration: 8, Func. Count: 70, Neg. LLF: 123.81627859441572
Iteration: 9, Func. Count: 79, Neg. LLF: 123.79761846994003
Iteration: 10, Func. Count: 87, Neg. LLF: 123.796495488452
Iteration: 11, Func. Count: 95, Neg. LLF: 123.79688999788348
Iteration: 12, Func. Count: 104, Neg. LLF: 123.79540976353293
Iteration: 13, Func. Count: 112, Neg. LLF: 123.7951212707831
Iteration: 14, Func. Count: 120, Neg. LLF: 123.79512016137673
Iteration: 15, Func. Count: 127, Neg. LLF: 123.79512016137042
Optimization terminated successfully (Exit mode 0)
Current function value: 123.79512016137673
Iterations: 15
Function evaluations: 127
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 124.40937371490958
Iteration: 2, Func. Count: 19, Neg. LLF: 125.22362811904685
Iteration: 3, Func. Count: 29, Neg. LLF: 123.98172920784694
Iteration: 4, Func. Count: 38, Neg. LLF: 234.97812168153825
Iteration: 5, Func. Count: 49, Neg. LLF: 125.38916052280712
Iteration: 6, Func. Count: 59, Neg. LLF: 123.87664466620731
Iteration: 7, Func. Count: 69, Neg. LLF: 123.81606601530255
Iteration: 8, Func. Count: 78, Neg. LLF: 123.90003429461157
Iteration: 9, Func. Count: 88, Neg. LLF: 123.79817381383442
Iteration: 10, Func. Count: 97, Neg. LLF: 123.79654451953313
Iteration: 11, Func. Count: 106, Neg. LLF: 123.79614934869828
Iteration: 12, Func. Count: 115, Neg. LLF: 123.79524512651396
Iteration: 13, Func. Count: 124, Neg. LLF: 123.795142578534
Iteration: 14, Func. Count: 133, Neg. LLF: 123.79512060654797
Iteration: 15, Func. Count: 141, Neg. LLF: 123.79512063135513
Optimization terminated successfully (Exit mode 0)
Current function value: 123.79512060654797
Iterations: 15
Function evaluations: 141
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 124.41325223724043
Iteration: 2, Func. Count: 21, Neg. LLF: 125.16326296171783
Iteration: 3, Func. Count: 32, Neg. LLF: 123.99533128851948
Iteration: 4, Func. Count: 42, Neg. LLF: 330.4826328980386
Iteration: 5, Func. Count: 54, Neg. LLF: 131.8818929425583
Iteration: 6, Func. Count: 65, Neg. LLF: 123.83982427162493
Iteration: 7, Func. Count: 75, Neg. LLF: 123.85010505520553
Iteration: 8, Func. Count: 86, Neg. LLF: 123.83167655064878
Iteration: 9, Func. Count: 97, Neg. LLF: 123.79845050885085
Iteration: 10, Func. Count: 107, Neg. LLF: 123.81067848141694
Iteration: 11, Func. Count: 118, Neg. LLF: 123.79713911764088
Iteration: 12, Func. Count: 128, Neg. LLF: 123.79702466746495
Iteration: 13, Func. Count: 138, Neg. LLF: 123.79598760928758
Iteration: 14, Func. Count: 148, Neg. LLF: 123.79515154900606
Iteration: 15, Func. Count: 158, Neg. LLF: 123.79512084250159
Iteration: 16, Func. Count: 168, Neg. LLF: 123.79512014585409
Optimization terminated successfully (Exit mode 0)
Current function value: 123.79512014585409
Iterations: 16
Function evaluations: 168
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 124.41347601545498
Iteration: 2, Func. Count: 23, Neg. LLF: 125.11949794189306
Iteration: 3, Func. Count: 35, Neg. LLF: 165.66271284747097
Iteration: 4, Func. Count: 49, Neg. LLF: 125.46170399817711
Iteration: 5, Func. Count: 61, Neg. LLF: 246.60567463312236
Iteration: 6, Func. Count: 74, Neg. LLF: 124.1453594968259
Iteration: 7, Func. Count: 86, Neg. LLF: 123.76395578983767
Iteration: 8, Func. Count: 97, Neg. LLF: 146.0587159527668
Iteration: 9, Func. Count: 110, Neg. LLF: 123.72401251621055
Iteration: 10, Func. Count: 121, Neg. LLF: 123.7064866491748
Iteration: 11, Func. Count: 132, Neg. LLF: 123.70498264320427
Iteration: 12, Func. Count: 143, Neg. LLF: 123.70493848307193
Iteration: 13, Func. Count: 154, Neg. LLF: 123.70493470872603
Iteration: 14, Func. Count: 164, Neg. LLF: 123.70493470718048
Optimization terminated successfully (Exit mode 0)
Current function value: 123.70493470872603
Iterations: 14
Function evaluations: 164
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 129.51345264623743
Iteration: 2, Func. Count: 18, Neg. LLF: 138.00958548907735
Iteration: 3, Func. Count: 27, Neg. LLF: 123.90336489564385
Iteration: 4, Func. Count: 35, Neg. LLF: 125.08031570743739
Iteration: 5, Func. Count: 44, Neg. LLF: 124.24352240816464
Iteration: 6, Func. Count: 53, Neg. LLF: 126.16501996560957
Iteration: 7, Func. Count: 63, Neg. LLF: 124.64994967697552
Iteration: 8, Func. Count: 72, Neg. LLF: 123.73972453292171
Iteration: 9, Func. Count: 80, Neg. LLF: 123.72784440510817
Iteration: 10, Func. Count: 88, Neg. LLF: 123.72190793677468
Iteration: 11, Func. Count: 96, Neg. LLF: 123.72014506022353
Iteration: 12, Func. Count: 104, Neg. LLF: 123.72000380258707
Iteration: 13, Func. Count: 112, Neg. LLF: 123.71999984133052
Iteration: 14, Func. Count: 120, Neg. LLF: 123.71999928770586
Optimization terminated successfully (Exit mode 0)
Current function value: 123.71999928770586
Iterations: 14
Function evaluations: 120
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 127.74308510772545
Iteration: 2, Func. Count: 20, Neg. LLF: 129.24838031134172
Iteration: 3, Func. Count: 30, Neg. LLF: 125.89965974647502
Iteration: 4, Func. Count: 40, Neg. LLF: 124.39206631173752
Iteration: 5, Func. Count: 50, Neg. LLF: 124.58265973529933
Iteration: 6, Func. Count: 60, Neg. LLF: 123.73887670089134
Iteration: 7, Func. Count: 69, Neg. LLF: 124.44671619114487
Iteration: 8, Func. Count: 80, Neg. LLF: 123.72305329225229
Iteration: 9, Func. Count: 89, Neg. LLF: 123.72012048147177
Iteration: 10, Func. Count: 98, Neg. LLF: 123.72002024579491
Iteration: 11, Func. Count: 107, Neg. LLF: 123.71999967771549
Iteration: 12, Func. Count: 115, Neg. LLF: 123.71999970751466
Optimization terminated successfully (Exit mode 0)
Current function value: 123.71999967771549
Iterations: 12
Function evaluations: 115
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 127.55816640257912
Iteration: 2, Func. Count: 22, Neg. LLF: 128.8803575255308
Iteration: 3, Func. Count: 33, Neg. LLF: 126.16909983777133
Iteration: 4, Func. Count: 44, Neg. LLF: 124.27561595861441
Iteration: 5, Func. Count: 55, Neg. LLF: 125.3974335085914
Iteration: 6, Func. Count: 66, Neg. LLF: 123.75032843020841
Iteration: 7, Func. Count: 76, Neg. LLF: 125.68668904801022
Iteration: 8, Func. Count: 88, Neg. LLF: 123.87858367064128
Iteration: 9, Func. Count: 99, Neg. LLF: 123.7229002633344
Iteration: 10, Func. Count: 109, Neg. LLF: 123.72100462405872
Iteration: 11, Func. Count: 119, Neg. LLF: 123.72052907369218
Iteration: 12, Func. Count: 129, Neg. LLF: 123.72012007261213
Iteration: 13, Func. Count: 139, Neg. LLF: 123.720006118601
Iteration: 14, Func. Count: 149, Neg. LLF: 123.71999949558885
Iteration: 15, Func. Count: 158, Neg. LLF: 123.71999950303857
Optimization terminated successfully (Exit mode 0)
Current function value: 123.71999949558885
Iterations: 15
Function evaluations: 158
Gradient evaluations: 15
Iteration: 1, Func. Count: 12, Neg. LLF: 127.86799931701174
Iteration: 2, Func. Count: 24, Neg. LLF: 127.57041817864145
Iteration: 3, Func. Count: 36, Neg. LLF: 126.22399991934617
Iteration: 4, Func. Count: 48, Neg. LLF: 124.19405554727653
Iteration: 5, Func. Count: 59, Neg. LLF: 137.83999883666704
Iteration: 6, Func. Count: 71, Neg. LLF: 130.7881827068793
Iteration: 7, Func. Count: 83, Neg. LLF: 123.74699183933843
Iteration: 8, Func. Count: 94, Neg. LLF: 138.53159540009318
Iteration: 9, Func. Count: 108, Neg. LLF: 123.7269298780865
Iteration: 10, Func. Count: 119, Neg. LLF: 123.72362289532607
Iteration: 11, Func. Count: 130, Neg. LLF: 123.72177402430673
Iteration: 12, Func. Count: 141, Neg. LLF: 123.72027279619482
Iteration: 13, Func. Count: 152, Neg. LLF: 123.72002498222137
Iteration: 14, Func. Count: 163, Neg. LLF: 123.72000023692331
Iteration: 15, Func. Count: 174, Neg. LLF: 123.71999931207017
Optimization terminated successfully (Exit mode 0)
Current function value: 123.71999931207017
Iterations: 15
Function evaluations: 174
Gradient evaluations: 15
Iteration: 1, Func. Count: 13, Neg. LLF: 128.71890301520872
Iteration: 2, Func. Count: 26, Neg. LLF: 127.46305093446517
Iteration: 3, Func. Count: 39, Neg. LLF: 125.739342057945
Iteration: 4, Func. Count: 52, Neg. LLF: 124.43525782476353
Iteration: 5, Func. Count: 65, Neg. LLF: 136.1663712081675
Iteration: 6, Func. Count: 78, Neg. LLF: 123.80736402637379
Iteration: 7, Func. Count: 90, Neg. LLF: 134.87624537681802
Iteration: 8, Func. Count: 104, Neg. LLF: 123.85352122296938
Iteration: 9, Func. Count: 117, Neg. LLF: 135.08981890014056
Iteration: 10, Func. Count: 132, Neg. LLF: 123.65873798458378
Iteration: 11, Func. Count: 144, Neg. LLF: 123.6516205478211
Iteration: 12, Func. Count: 156, Neg. LLF: 123.64514144157172
Iteration: 13, Func. Count: 168, Neg. LLF: 123.6440812143659
Iteration: 14, Func. Count: 180, Neg. LLF: 123.64373701026926
Iteration: 15, Func. Count: 192, Neg. LLF: 123.64373186212084
Iteration: 16, Func. Count: 203, Neg. LLF: 123.64373186207325
Optimization terminated successfully (Exit mode 0)
Current function value: 123.64373186212084
Iterations: 16
Function evaluations: 203
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 128.6098824558005
Iteration: 2, Func. Count: 20, Neg. LLF: 130.45691176037226
Iteration: 3, Func. Count: 30, Neg. LLF: 125.31188366929604
Iteration: 4, Func. Count: 41, Neg. LLF: 128.44229864949403
Iteration: 5, Func. Count: 51, Neg. LLF: 122.58294421756531
Iteration: 6, Func. Count: 60, Neg. LLF: 142.62044007931715
Iteration: 7, Func. Count: 70, Neg. LLF: 122.86463108088881
Iteration: 8, Func. Count: 80, Neg. LLF: 123.22132091819124
Iteration: 9, Func. Count: 90, Neg. LLF: 122.45469750075932
Iteration: 10, Func. Count: 99, Neg. LLF: 122.45086656659727
Iteration: 11, Func. Count: 108, Neg. LLF: 122.45038297308739
Iteration: 12, Func. Count: 117, Neg. LLF: 122.45033203206079
Iteration: 13, Func. Count: 126, Neg. LLF: 122.45032793760609
Iteration: 14, Func. Count: 135, Neg. LLF: 122.45032617717331
Iteration: 15, Func. Count: 143, Neg. LLF: 122.45032607660772
Optimization terminated successfully (Exit mode 0)
Current function value: 122.45032617717331
Iterations: 15
Function evaluations: 143
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 124.89973662442033
Iteration: 2, Func. Count: 21, Neg. LLF: 125.96106491507246
Iteration: 3, Func. Count: 32, Neg. LLF: 124.10061255260027
Iteration: 4, Func. Count: 43, Neg. LLF: 136.09845296496795
Iteration: 5, Func. Count: 54, Neg. LLF: 139.79760017281848
Iteration: 6, Func. Count: 65, Neg. LLF: 285.33956331721873
Iteration: 7, Func. Count: 76, Neg. LLF: 123.12130853303175
Iteration: 8, Func. Count: 87, Neg. LLF: 122.52869632311142
Iteration: 9, Func. Count: 98, Neg. LLF: 148.45542989863736
Iteration: 10, Func. Count: 110, Neg. LLF: 122.4673159101665
Iteration: 11, Func. Count: 120, Neg. LLF: 122.45839989834138
Iteration: 12, Func. Count: 130, Neg. LLF: 122.45399591631002
Iteration: 13, Func. Count: 140, Neg. LLF: 122.45168476127546
Iteration: 14, Func. Count: 150, Neg. LLF: 122.45047131676495
Iteration: 15, Func. Count: 160, Neg. LLF: 122.45033727021516
Iteration: 16, Func. Count: 170, Neg. LLF: 122.45032608806072
Iteration: 17, Func. Count: 180, Neg. LLF: 122.45032554972602
Optimization terminated successfully (Exit mode 0)
Current function value: 122.45032554972602
Iterations: 17
Function evaluations: 180
Gradient evaluations: 17
Iteration: 1, Func. Count: 12, Neg. LLF: 125.22851469804974
Iteration: 2, Func. Count: 23, Neg. LLF: 125.23785330725363
Iteration: 3, Func. Count: 35, Neg. LLF: 131.52323056862608
Iteration: 4, Func. Count: 49, Neg. LLF: 135.55650729087975
Iteration: 5, Func. Count: 61, Neg. LLF: 141.7986248945381
Iteration: 6, Func. Count: 73, Neg. LLF: 216.4669991939905
Iteration: 7, Func. Count: 85, Neg. LLF: 126.76949509580832
Iteration: 8, Func. Count: 97, Neg. LLF: 122.68916951915384
Iteration: 9, Func. Count: 109, Neg. LLF: 122.48926819098838
Iteration: 10, Func. Count: 121, Neg. LLF: 122.4694453664947
Iteration: 11, Func. Count: 133, Neg. LLF: 122.44956554589339
Iteration: 12, Func. Count: 144, Neg. LLF: 122.44397377915061
Iteration: 13, Func. Count: 155, Neg. LLF: 122.44320106808435
Iteration: 14, Func. Count: 166, Neg. LLF: 122.4431772977529
Iteration: 15, Func. Count: 177, Neg. LLF: 122.44317266883952
Iteration: 16, Func. Count: 188, Neg. LLF: 122.4431599506786
Iteration: 17, Func. Count: 198, Neg. LLF: 122.44315995061905
Optimization terminated successfully (Exit mode 0)
Current function value: 122.4431599506786
Iterations: 17
Function evaluations: 198
Gradient evaluations: 17
Iteration: 1, Func. Count: 13, Neg. LLF: 125.90843750038593
Iteration: 2, Func. Count: 25, Neg. LLF: 124.63583209763806
Iteration: 3, Func. Count: 37, Neg. LLF: 132.54080469074452
Iteration: 4, Func. Count: 50, Neg. LLF: 141.00618536782088
Iteration: 5, Func. Count: 63, Neg. LLF: 134.3662315638922
Iteration: 6, Func. Count: 76, Neg. LLF: 787.8966952022714
Iteration: 7, Func. Count: 89, Neg. LLF: 15258.569548242456
Iteration: 8, Func. Count: 104, Neg. LLF: 421.1462437836663
Iteration: 9, Func. Count: 117, Neg. LLF: 122.5892983956615
Iteration: 10, Func. Count: 129, Neg. LLF: 122.4796225321939
Iteration: 11, Func. Count: 141, Neg. LLF: 122.46175369801928
Iteration: 12, Func. Count: 153, Neg. LLF: 122.44933990926258
Iteration: 13, Func. Count: 165, Neg. LLF: 122.44508306206589
Iteration: 14, Func. Count: 177, Neg. LLF: 122.44320606971492
Iteration: 15, Func. Count: 189, Neg. LLF: 122.44316058731998
Iteration: 16, Func. Count: 201, Neg. LLF: 122.44315946198333
Iteration: 17, Func. Count: 212, Neg. LLF: 122.44315968697927
Optimization terminated successfully (Exit mode 0)
Current function value: 122.44315946198333
Iterations: 17
Function evaluations: 212
Gradient evaluations: 17
Iteration: 1, Func. Count: 14, Neg. LLF: 127.5235171646256
Iteration: 2, Func. Count: 28, Neg. LLF: 124.75587185103365
Iteration: 3, Func. Count: 41, Neg. LLF: 130.59668277372484
Iteration: 4, Func. Count: 55, Neg. LLF: 134.75121662189486
Iteration: 5, Func. Count: 69, Neg. LLF: 124.41094700278151
Iteration: 6, Func. Count: 83, Neg. LLF: 157.2584814448406
Iteration: 7, Func. Count: 97, Neg. LLF: 123.79395788553117
Iteration: 8, Func. Count: 111, Neg. LLF: 138.8614230766232
Iteration: 9, Func. Count: 126, Neg. LLF: 122.48530347423934
Iteration: 10, Func. Count: 140, Neg. LLF: 130.36911036652194
Iteration: 11, Func. Count: 155, Neg. LLF: 122.44699531739349
Iteration: 12, Func. Count: 168, Neg. LLF: 122.42382253421894
Iteration: 13, Func. Count: 181, Neg. LLF: 122.41778150042597
Iteration: 14, Func. Count: 194, Neg. LLF: 122.41668606746548
Iteration: 15, Func. Count: 207, Neg. LLF: 122.4165214988831
Iteration: 16, Func. Count: 220, Neg. LLF: 122.41651682059593
Iteration: 17, Func. Count: 233, Neg. LLF: 122.4165142590742
Iteration: 18, Func. Count: 245, Neg. LLF: 122.4165142590613
Optimization terminated successfully (Exit mode 0)
Current function value: 122.4165142590742
Iterations: 18
Function evaluations: 245
Gradient evaluations: 18
Iteration: 1, Func. Count: 11, Neg. LLF: 127.04456570090424
Iteration: 2, Func. Count: 22, Neg. LLF: 125.8702457071396
Iteration: 3, Func. Count: 33, Neg. LLF: 124.971555491324
Iteration: 4, Func. Count: 44, Neg. LLF: 128.66861644960116
Iteration: 5, Func. Count: 55, Neg. LLF: 122.61813204260606
Iteration: 6, Func. Count: 65, Neg. LLF: 180.05263323299576
Iteration: 7, Func. Count: 76, Neg. LLF: 132.41613491762953
Iteration: 8, Func. Count: 88, Neg. LLF: 122.42905299786757
Iteration: 9, Func. Count: 98, Neg. LLF: 122.41407526120874
Iteration: 10, Func. Count: 108, Neg. LLF: 122.41147253958223
Iteration: 11, Func. Count: 118, Neg. LLF: 122.41101546685809
Iteration: 12, Func. Count: 128, Neg. LLF: 122.41099902506231
Iteration: 13, Func. Count: 138, Neg. LLF: 122.4109983374022
Optimization terminated successfully (Exit mode 0)
Current function value: 122.4109983374022
Iterations: 13
Function evaluations: 138
Gradient evaluations: 13
Iteration: 1, Func. Count: 12, Neg. LLF: 124.97713178088358
Iteration: 2, Func. Count: 23, Neg. LLF: 125.89974800225777
Iteration: 3, Func. Count: 35, Neg. LLF: 126.37684656332767
Iteration: 4, Func. Count: 48, Neg. LLF: 135.24523223316442
Iteration: 5, Func. Count: 60, Neg. LLF: 139.7070153545983
Iteration: 6, Func. Count: 72, Neg. LLF: 755.355191859583
Iteration: 7, Func. Count: 84, Neg. LLF: 125.34200697392573
Iteration: 8, Func. Count: 96, Neg. LLF: 122.71275574892779
Iteration: 9, Func. Count: 108, Neg. LLF: 122.51270130594992
Iteration: 10, Func. Count: 120, Neg. LLF: 132.19245335034927
Iteration: 11, Func. Count: 133, Neg. LLF: 122.42303337488455
Iteration: 12, Func. Count: 144, Neg. LLF: 122.41580889892418
Iteration: 13, Func. Count: 155, Neg. LLF: 122.41358207709405
Iteration: 14, Func. Count: 166, Neg. LLF: 122.41218035862273
Iteration: 15, Func. Count: 177, Neg. LLF: 122.41133356315501
Iteration: 16, Func. Count: 188, Neg. LLF: 122.41103900938688
Iteration: 17, Func. Count: 199, Neg. LLF: 122.41100103102534
Iteration: 18, Func. Count: 210, Neg. LLF: 122.41099832858436
Iteration: 19, Func. Count: 220, Neg. LLF: 122.41099844322738
Optimization terminated successfully (Exit mode 0)
Current function value: 122.41099832858436
Iterations: 19
Function evaluations: 220
Gradient evaluations: 19
Iteration: 1, Func. Count: 13, Neg. LLF: 125.36662898268654
Iteration: 2, Func. Count: 25, Neg. LLF: 124.15559006731266
Iteration: 3, Func. Count: 37, Neg. LLF: 137.30362834415027
Iteration: 4, Func. Count: 50, Neg. LLF: 136.02827017752375
Iteration: 5, Func. Count: 63, Neg. LLF: 141.63789138698863
Iteration: 6, Func. Count: 76, Neg. LLF: 364.77490062834636
Iteration: 7, Func. Count: 89, Neg. LLF: 124.08345731371051
Iteration: 8, Func. Count: 102, Neg. LLF: 122.59825072240096
Iteration: 9, Func. Count: 115, Neg. LLF: 122.42152804773389
Iteration: 10, Func. Count: 128, Neg. LLF: 123.44961804046983
Iteration: 11, Func. Count: 142, Neg. LLF: 122.41435295614872
Iteration: 12, Func. Count: 155, Neg. LLF: 122.41106914035622
Iteration: 13, Func. Count: 167, Neg. LLF: 122.41100289809303
Iteration: 14, Func. Count: 179, Neg. LLF: 122.41099902779793
Iteration: 15, Func. Count: 190, Neg. LLF: 122.41099906949881
Optimization terminated successfully (Exit mode 0)
Current function value: 122.41099902779793
Iterations: 15
Function evaluations: 190
Gradient evaluations: 15
Iteration: 1, Func. Count: 14, Neg. LLF: 126.27728439946361
Iteration: 2, Func. Count: 27, Neg. LLF: 124.802044177192
Iteration: 3, Func. Count: 40, Neg. LLF: 134.03259812567117
Iteration: 4, Func. Count: 54, Neg. LLF: 140.28233793724172
Iteration: 5, Func. Count: 68, Neg. LLF: 139.28535868312954
Iteration: 6, Func. Count: 82, Neg. LLF: 163.5875767870615
Iteration: 7, Func. Count: 96, Neg. LLF: 13058711.334940756
Iteration: 8, Func. Count: 110, Neg. LLF: 123.38397068125909
Iteration: 9, Func. Count: 124, Neg. LLF: 122.56663592653071
Iteration: 10, Func. Count: 138, Neg. LLF: 122.90617296248338
Iteration: 11, Func. Count: 152, Neg. LLF: 122.44277831565486
Iteration: 12, Func. Count: 165, Neg. LLF: 122.424333553617
Iteration: 13, Func. Count: 178, Neg. LLF: 122.4117746343789
Iteration: 14, Func. Count: 191, Neg. LLF: 122.41103024578412
Iteration: 15, Func. Count: 204, Neg. LLF: 122.41100778546648
Iteration: 16, Func. Count: 217, Neg. LLF: 122.41100102849737
Iteration: 17, Func. Count: 230, Neg. LLF: 122.41099830959583
Iteration: 18, Func. Count: 242, Neg. LLF: 122.41099852822393
Optimization terminated successfully (Exit mode 0)
Current function value: 122.41099830959583
Iterations: 18
Function evaluations: 242
Gradient evaluations: 18
Iteration: 1, Func. Count: 15, Neg. LLF: 127.59474971272016
Iteration: 2, Func. Count: 30, Neg. LLF: 124.74251526854954
Iteration: 3, Func. Count: 44, Neg. LLF: 130.51338510970905
Iteration: 4, Func. Count: 59, Neg. LLF: 134.53064961821408
Iteration: 5, Func. Count: 74, Neg. LLF: 156.76514370124508
Iteration: 6, Func. Count: 89, Neg. LLF: 899.1926426564456
Iteration: 7, Func. Count: 104, Neg. LLF: 127.20155682266812
Iteration: 8, Func. Count: 119, Neg. LLF: 124.021347366893
Iteration: 9, Func. Count: 134, Neg. LLF: 122.57442569917673
Iteration: 10, Func. Count: 149, Neg. LLF: 130.71326474659327
Iteration: 11, Func. Count: 165, Neg. LLF: 122.53190558765755
Iteration: 12, Func. Count: 180, Neg. LLF: 122.42604649841437
Iteration: 13, Func. Count: 195, Neg. LLF: 122.38878943982611
Iteration: 14, Func. Count: 209, Neg. LLF: 122.37947431603776
Iteration: 15, Func. Count: 223, Neg. LLF: 122.37898491208014
Iteration: 16, Func. Count: 237, Neg. LLF: 122.37896870028818
Iteration: 17, Func. Count: 251, Neg. LLF: 122.378967136372
Iteration: 18, Func. Count: 264, Neg. LLF: 122.37896713595879
Optimization terminated successfully (Exit mode 0)
Current function value: 122.378967136372
Iterations: 18
Function evaluations: 264
Gradient evaluations: 18
Iteration: 1, Func. Count: 12, Neg. LLF: 126.80305085588776
Iteration: 2, Func. Count: 24, Neg. LLF: 124.87864055219372
Iteration: 3, Func. Count: 35, Neg. LLF: 124.93702448592818
Iteration: 4, Func. Count: 47, Neg. LLF: 122.74689977566396
Iteration: 5, Func. Count: 58, Neg. LLF: 197.61528189699288
Iteration: 6, Func. Count: 70, Neg. LLF: 135.25242081689768
Iteration: 7, Func. Count: 82, Neg. LLF: 123.26122732005761
Iteration: 8, Func. Count: 94, Neg. LLF: 126.1560183492071
Iteration: 9, Func. Count: 106, Neg. LLF: 122.41542980744559
Iteration: 10, Func. Count: 117, Neg. LLF: 122.41107369243932
Iteration: 11, Func. Count: 128, Neg. LLF: 122.41100360060152
Iteration: 12, Func. Count: 139, Neg. LLF: 122.41099892045555
Iteration: 13, Func. Count: 150, Neg. LLF: 122.4109983166536
Optimization terminated successfully (Exit mode 0)
Current function value: 122.4109983166536
Iterations: 13
Function evaluations: 150
Gradient evaluations: 13
Iteration: 1, Func. Count: 13, Neg. LLF: 125.04115278812004
Iteration: 2, Func. Count: 25, Neg. LLF: 125.8759099093576
Iteration: 3, Func. Count: 38, Neg. LLF: 127.11565645605315
Iteration: 4, Func. Count: 52, Neg. LLF: 135.25366659195944
Iteration: 5, Func. Count: 65, Neg. LLF: 138.55433943921082
Iteration: 6, Func. Count: 78, Neg. LLF: 455.56367123954
Iteration: 7, Func. Count: 91, Neg. LLF: 125.85663429963132
Iteration: 8, Func. Count: 104, Neg. LLF: 122.7701277401145
Iteration: 9, Func. Count: 117, Neg. LLF: 122.51049694685115
Iteration: 10, Func. Count: 130, Neg. LLF: 128.2667176568782
Iteration: 11, Func. Count: 144, Neg. LLF: 122.42249046872547
Iteration: 12, Func. Count: 157, Neg. LLF: 122.41530837538174
Iteration: 13, Func. Count: 169, Neg. LLF: 122.41308124965234
Iteration: 14, Func. Count: 181, Neg. LLF: 122.41224658355043
Iteration: 15, Func. Count: 193, Neg. LLF: 122.41141572160736
Iteration: 16, Func. Count: 205, Neg. LLF: 122.41106012993016
Iteration: 17, Func. Count: 217, Neg. LLF: 122.41100231160598
Iteration: 18, Func. Count: 229, Neg. LLF: 122.41099836764751
Iteration: 19, Func. Count: 240, Neg. LLF: 122.41099848230488
Optimization terminated successfully (Exit mode 0)
Current function value: 122.41099836764751
Iterations: 19
Function evaluations: 240
Gradient evaluations: 19
Iteration: 1, Func. Count: 14, Neg. LLF: 125.51888679530062
Iteration: 2, Func. Count: 27, Neg. LLF: 123.75941752875248
Iteration: 3, Func. Count: 40, Neg. LLF: 133.5208547323478
Iteration: 4, Func. Count: 54, Neg. LLF: 148.51205724368225
Iteration: 5, Func. Count: 70, Neg. LLF: 150.87819817257088
Iteration: 6, Func. Count: 84, Neg. LLF: 166.47058790278479
Iteration: 7, Func. Count: 98, Neg. LLF: 125.37179836279037
Iteration: 8, Func. Count: 112, Neg. LLF: 133.6657583878818
Iteration: 9, Func. Count: 126, Neg. LLF: 122.49563328914594
Iteration: 10, Func. Count: 140, Neg. LLF: 122.41541389855166
Iteration: 11, Func. Count: 153, Neg. LLF: 122.41369502637572
Iteration: 12, Func. Count: 166, Neg. LLF: 122.41181785589423
Iteration: 13, Func. Count: 179, Neg. LLF: 122.41101261526939
Iteration: 14, Func. Count: 192, Neg. LLF: 122.41099911549604
Iteration: 15, Func. Count: 205, Neg. LLF: 122.4109983156376
Optimization terminated successfully (Exit mode 0)
Current function value: 122.4109983156376
Iterations: 15
Function evaluations: 205
Gradient evaluations: 15
Iteration: 1, Func. Count: 15, Neg. LLF: 126.72755710678993
Iteration: 2, Func. Count: 29, Neg. LLF: 124.91553185686885
Iteration: 3, Func. Count: 43, Neg. LLF: 134.25525328582296
Iteration: 4, Func. Count: 58, Neg. LLF: 140.82758168170605
Iteration: 5, Func. Count: 74, Neg. LLF: 146.12317573682054
Iteration: 6, Func. Count: 89, Neg. LLF: 149.14087927537994
Iteration: 7, Func. Count: 104, Neg. LLF: 185.18483988486778
Iteration: 8, Func. Count: 119, Neg. LLF: 123.43613070227165
Iteration: 9, Func. Count: 134, Neg. LLF: 122.9601986112843
Iteration: 10, Func. Count: 149, Neg. LLF: 122.59069250102542
Iteration: 11, Func. Count: 164, Neg. LLF: 122.45798501335936
Iteration: 12, Func. Count: 178, Neg. LLF: 122.43569981141708
Iteration: 13, Func. Count: 192, Neg. LLF: 122.41612915192759
Iteration: 14, Func. Count: 206, Neg. LLF: 122.41353898461134
Iteration: 15, Func. Count: 220, Neg. LLF: 122.4113625513045
Iteration: 16, Func. Count: 234, Neg. LLF: 122.41113169221806
Iteration: 17, Func. Count: 248, Neg. LLF: 122.41101228224512
Iteration: 18, Func. Count: 262, Neg. LLF: 122.41099853983886
Iteration: 19, Func. Count: 275, Neg. LLF: 122.41099875843126
Optimization terminated successfully (Exit mode 0)
Current function value: 122.41099853983886
Iterations: 19
Function evaluations: 275
Gradient evaluations: 19
Iteration: 1, Func. Count: 16, Neg. LLF: 127.61068673025515
Iteration: 2, Func. Count: 32, Neg. LLF: 124.7421947916154
Iteration: 3, Func. Count: 47, Neg. LLF: 130.49869613086986
Iteration: 4, Func. Count: 63, Neg. LLF: 134.46024886234068
Iteration: 5, Func. Count: 79, Neg. LLF: 131.85801916429836
Iteration: 6, Func. Count: 95, Neg. LLF: 2124.163405606524
Iteration: 7, Func. Count: 111, Neg. LLF: 124.57133143502757
Iteration: 8, Func. Count: 127, Neg. LLF: 122.6264418487557
Iteration: 9, Func. Count: 143, Neg. LLF: 140.01478991700066
Iteration: 10, Func. Count: 159, Neg. LLF: 122.45063369670518
Iteration: 11, Func. Count: 175, Neg. LLF: 122.69896127116124
Iteration: 12, Func. Count: 191, Neg. LLF: 122.39743020837987
Iteration: 13, Func. Count: 206, Neg. LLF: 122.38161502017356
Iteration: 14, Func. Count: 221, Neg. LLF: 122.37927088554427
Iteration: 15, Func. Count: 236, Neg. LLF: 122.37899229086328
Iteration: 16, Func. Count: 251, Neg. LLF: 122.37897124592503
Iteration: 17, Func. Count: 266, Neg. LLF: 122.37896716194389
Iteration: 18, Func. Count: 280, Neg. LLF: 122.37896716165535
Optimization terminated successfully (Exit mode 0)
Current function value: 122.37896716194389
Iterations: 18
Function evaluations: 280
Gradient evaluations: 18
Iteration: 1, Func. Count: 5, Neg. LLF: 130.59397692841242
Iteration: 2, Func. Count: 10, Neg. LLF: 136.41225925645477
Iteration: 3, Func. Count: 15, Neg. LLF: 123.96646460505958
Iteration: 4, Func. Count: 19, Neg. LLF: 123.95640713539972
Iteration: 5, Func. Count: 23, Neg. LLF: 123.95518049449053
Iteration: 6, Func. Count: 27, Neg. LLF: 123.95465317311522
Iteration: 7, Func. Count: 31, Neg. LLF: 123.95458543780822
Iteration: 8, Func. Count: 35, Neg. LLF: 123.95458345501248
Iteration: 9, Func. Count: 38, Neg. LLF: 123.95458345501687
Optimization terminated successfully (Exit mode 0)
Current function value: 123.95458345501248
Iterations: 9
Function evaluations: 38
Gradient evaluations: 9
Iteration: 1, Func. Count: 5, Neg. LLF: 147.72432592886514
Iteration: 2, Func. Count: 11, Neg. LLF: 135.90029519593125
Iteration: 3, Func. Count: 16, Neg. LLF: 130.9022845055902
Iteration: 4, Func. Count: 21, Neg. LLF: 130.39252692669652
Iteration: 5, Func. Count: 25, Neg. LLF: 130.38989526133832
Iteration: 6, Func. Count: 29, Neg. LLF: 130.3890630401459
Iteration: 7, Func. Count: 33, Neg. LLF: 130.3889535377604
Iteration: 8, Func. Count: 37, Neg. LLF: 130.38894779577313
Iteration: 9, Func. Count: 40, Neg. LLF: 130.3889477957873
Optimization terminated successfully (Exit mode 0)
Current function value: 130.38894779577313
Iterations: 9
Function evaluations: 40
Gradient evaluations: 9
Iteration: 1, Func. Count: 6, Neg. LLF: 134.31969542342105
Iteration: 2, Func. Count: 12, Neg. LLF: 133.11774525211942
Iteration: 3, Func. Count: 18, Neg. LLF: 133.77084564225385
Iteration: 4, Func. Count: 24, Neg. LLF: 131.44633194068427
Iteration: 5, Func. Count: 30, Neg. LLF: 130.74672108798754
Iteration: 6, Func. Count: 35, Neg. LLF: 130.3978652842282
Iteration: 7, Func. Count: 40, Neg. LLF: 130.39187061933438
Iteration: 8, Func. Count: 45, Neg. LLF: 130.38996631137746
Iteration: 9, Func. Count: 50, Neg. LLF: 130.38959425095095
Iteration: 10, Func. Count: 55, Neg. LLF: 130.3891925168364
Iteration: 11, Func. Count: 60, Neg. LLF: 130.3890039411214
Iteration: 12, Func. Count: 65, Neg. LLF: 130.38895173669155
Iteration: 13, Func. Count: 70, Neg. LLF: 130.38894775908813
Iteration: 14, Func. Count: 74, Neg. LLF: 130.38894784709058
Optimization terminated successfully (Exit mode 0)
Current function value: 130.38894775908813
Iterations: 14
Function evaluations: 74
Gradient evaluations: 14
Iteration: 1, Func. Count: 7, Neg. LLF: 135.3196964917171
Iteration: 2, Func. Count: 14, Neg. LLF: 132.45376576150696
Iteration: 3, Func. Count: 21, Neg. LLF: 134.3080213509265
Iteration: 4, Func. Count: 28, Neg. LLF: 130.3759320718807
Iteration: 5, Func. Count: 34, Neg. LLF: 130.50856081025526
Iteration: 6, Func. Count: 41, Neg. LLF: 130.29529019284777
Iteration: 7, Func. Count: 47, Neg. LLF: 130.27589698861132
Iteration: 8, Func. Count: 53, Neg. LLF: 130.27114279487728
Iteration: 9, Func. Count: 59, Neg. LLF: 130.26527359817055
Iteration: 10, Func. Count: 65, Neg. LLF: 130.26356973754892
Iteration: 11, Func. Count: 71, Neg. LLF: 130.26283490198884
Iteration: 12, Func. Count: 77, Neg. LLF: 130.26280288114773
Iteration: 13, Func. Count: 83, Neg. LLF: 130.26280153953655
Iteration: 14, Func. Count: 88, Neg. LLF: 130.2628015395448
Optimization terminated successfully (Exit mode 0)
Current function value: 130.26280153953655
Iterations: 14
Function evaluations: 88
Gradient evaluations: 14
Iteration: 1, Func. Count: 8, Neg. LLF: 134.19721358191097
Iteration: 2, Func. Count: 16, Neg. LLF: 132.81477003420426
Iteration: 3, Func. Count: 24, Neg. LLF: 134.49617473707949
Iteration: 4, Func. Count: 32, Neg. LLF: 130.9073636034897
Iteration: 5, Func. Count: 39, Neg. LLF: 130.39584825468503
Iteration: 6, Func. Count: 46, Neg. LLF: 130.3184721922587
Iteration: 7, Func. Count: 53, Neg. LLF: 130.28928450822565
Iteration: 8, Func. Count: 60, Neg. LLF: 130.26642600647781
Iteration: 9, Func. Count: 67, Neg. LLF: 130.26395900347705
Iteration: 10, Func. Count: 74, Neg. LLF: 130.2629605768141
Iteration: 11, Func. Count: 81, Neg. LLF: 130.26281111615032
Iteration: 12, Func. Count: 88, Neg. LLF: 130.26280180205129
Iteration: 13, Func. Count: 94, Neg. LLF: 130.26280192822384
Optimization terminated successfully (Exit mode 0)
Current function value: 130.26280180205129
Iterations: 13
Function evaluations: 94
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 134.89577313768865
Iteration: 2, Func. Count: 18, Neg. LLF: 132.9334100364011
Iteration: 3, Func. Count: 27, Neg. LLF: 135.34567925236806
Iteration: 4, Func. Count: 36, Neg. LLF: 130.59761230946654
Iteration: 5, Func. Count: 44, Neg. LLF: 130.35720028236662
Iteration: 6, Func. Count: 52, Neg. LLF: 130.30484056308217
Iteration: 7, Func. Count: 60, Neg. LLF: 130.28021092266613
Iteration: 8, Func. Count: 68, Neg. LLF: 130.263798068085
Iteration: 9, Func. Count: 76, Neg. LLF: 130.2628702651275
Iteration: 10, Func. Count: 84, Neg. LLF: 130.26280771329024
Iteration: 11, Func. Count: 92, Neg. LLF: 130.26280198253147
Iteration: 12, Func. Count: 99, Neg. LLF: 130.26280200597571
Optimization terminated successfully (Exit mode 0)
Current function value: 130.26280198253147
Iterations: 12
Function evaluations: 99
Gradient evaluations: 12
Iteration: 1, Func. Count: 6, Neg. LLF: 144.60200440751422
Iteration: 2, Func. Count: 12, Neg. LLF: 187.19313271369546
Iteration: 3, Func. Count: 18, Neg. LLF: 130.82590695602306
Iteration: 4, Func. Count: 23, Neg. LLF: 130.66308967263728
Iteration: 5, Func. Count: 28, Neg. LLF: 130.48824705965706
Iteration: 6, Func. Count: 33, Neg. LLF: 130.43533232919893
Iteration: 7, Func. Count: 38, Neg. LLF: 130.40221316862537
Iteration: 8, Func. Count: 43, Neg. LLF: 130.38922471601632
Iteration: 9, Func. Count: 48, Neg. LLF: 130.38894983107573
Iteration: 10, Func. Count: 53, Neg. LLF: 130.38894764703988
Iteration: 11, Func. Count: 57, Neg. LLF: 130.3889478224313
Optimization terminated successfully (Exit mode 0)
Current function value: 130.38894764703988
Iterations: 11
Function evaluations: 57
Gradient evaluations: 11
Iteration: 1, Func. Count: 7, Neg. LLF: 134.44595985878445
Iteration: 2, Func. Count: 15, Neg. LLF: 132.74587978370252
Iteration: 3, Func. Count: 22, Neg. LLF: 132.07759212040935
Iteration: 4, Func. Count: 29, Neg. LLF: 131.76563870144574
Iteration: 5, Func. Count: 36, Neg. LLF: 131.0595764196384
Iteration: 6, Func. Count: 42, Neg. LLF: 130.40436307838414
Iteration: 7, Func. Count: 48, Neg. LLF: 130.39008764843288
Iteration: 8, Func. Count: 54, Neg. LLF: 130.38896748377016
Iteration: 9, Func. Count: 60, Neg. LLF: 130.38895511422572
Iteration: 10, Func. Count: 66, Neg. LLF: 130.38895079221606
Iteration: 11, Func. Count: 72, Neg. LLF: 130.38894892533364
Iteration: 12, Func. Count: 78, Neg. LLF: 130.38894791364297
Iteration: 13, Func. Count: 83, Neg. LLF: 130.38894800163584
Optimization terminated successfully (Exit mode 0)
Current function value: 130.38894791364297
Iterations: 13
Function evaluations: 83
Gradient evaluations: 13
Iteration: 1, Func. Count: 8, Neg. LLF: 134.39520347838433
Iteration: 2, Func. Count: 16, Neg. LLF: 132.99068121679684
Iteration: 3, Func. Count: 24, Neg. LLF: 134.58097574463824
Iteration: 4, Func. Count: 32, Neg. LLF: 139.08043805604663
Iteration: 5, Func. Count: 40, Neg. LLF: 130.4371713799945
Iteration: 6, Func. Count: 47, Neg. LLF: 130.307021431305
Iteration: 7, Func. Count: 54, Neg. LLF: 130.2824254810796
Iteration: 8, Func. Count: 61, Neg. LLF: 130.26553769491835
Iteration: 9, Func. Count: 68, Neg. LLF: 130.26351543679144
Iteration: 10, Func. Count: 75, Neg. LLF: 130.26283931272505
Iteration: 11, Func. Count: 82, Neg. LLF: 130.26280290067743
Iteration: 12, Func. Count: 89, Neg. LLF: 130.2628015880564
Iteration: 13, Func. Count: 95, Neg. LLF: 130.2628015880812
Optimization terminated successfully (Exit mode 0)
Current function value: 130.2628015880564
Iterations: 13
Function evaluations: 95
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 134.3741786046603
Iteration: 2, Func. Count: 19, Neg. LLF: 132.78267614570396
Iteration: 3, Func. Count: 28, Neg. LLF: 146.33595683774624
Iteration: 4, Func. Count: 37, Neg. LLF: 130.8335295438546
Iteration: 5, Func. Count: 45, Neg. LLF: 130.41360966253455
Iteration: 6, Func. Count: 53, Neg. LLF: 130.3323979780877
Iteration: 7, Func. Count: 61, Neg. LLF: 130.2816585381367
Iteration: 8, Func. Count: 69, Neg. LLF: 130.26752661968783
Iteration: 9, Func. Count: 77, Neg. LLF: 130.26373907427737
Iteration: 10, Func. Count: 85, Neg. LLF: 130.2629216473646
Iteration: 11, Func. Count: 93, Neg. LLF: 130.26281621062094
Iteration: 12, Func. Count: 101, Neg. LLF: 130.26280210761132
Iteration: 13, Func. Count: 109, Neg. LLF: 130.26280153823254
Optimization terminated successfully (Exit mode 0)
Current function value: 130.26280153823254
Iterations: 13
Function evaluations: 109
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 134.37697003927886
Iteration: 2, Func. Count: 21, Neg. LLF: 132.85510479230527
Iteration: 3, Func. Count: 31, Neg. LLF: 160.34245458878206
Iteration: 4, Func. Count: 42, Neg. LLF: 130.48492674795125
Iteration: 5, Func. Count: 51, Neg. LLF: 130.3813705752307
Iteration: 6, Func. Count: 60, Neg. LLF: 130.2853628958682
Iteration: 7, Func. Count: 69, Neg. LLF: 130.2653771218801
Iteration: 8, Func. Count: 78, Neg. LLF: 130.26335285868427
Iteration: 9, Func. Count: 87, Neg. LLF: 130.26285194374864
Iteration: 10, Func. Count: 96, Neg. LLF: 130.2628044351071
Iteration: 11, Func. Count: 105, Neg. LLF: 130.26280190120647
Iteration: 12, Func. Count: 113, Neg. LLF: 130.26280192462966
Optimization terminated successfully (Exit mode 0)
Current function value: 130.26280190120647
Iterations: 12
Function evaluations: 113
Gradient evaluations: 12
Iteration: 1, Func. Count: 7, Neg. LLF: 137.73199754254676
Iteration: 2, Func. Count: 14, Neg. LLF: 154.81284372242018
Iteration: 3, Func. Count: 21, Neg. LLF: 131.25157898046342
Iteration: 4, Func. Count: 28, Neg. LLF: 131.68649275234185
Iteration: 5, Func. Count: 35, Neg. LLF: 130.54348477755423
Iteration: 6, Func. Count: 41, Neg. LLF: 130.40325114527542
Iteration: 7, Func. Count: 47, Neg. LLF: 130.28572182050414
Iteration: 8, Func. Count: 53, Neg. LLF: 130.26110175890727
Iteration: 9, Func. Count: 59, Neg. LLF: 130.25925931572075
Iteration: 10, Func. Count: 65, Neg. LLF: 130.25877711641186
Iteration: 11, Func. Count: 71, Neg. LLF: 130.258775650346
Iteration: 12, Func. Count: 76, Neg. LLF: 130.25877565035586
Optimization terminated successfully (Exit mode 0)
Current function value: 130.258775650346
Iterations: 12
Function evaluations: 76
Gradient evaluations: 12
Iteration: 1, Func. Count: 8, Neg. LLF: 134.45233544555188
Iteration: 2, Func. Count: 17, Neg. LLF: 132.73938501007368
Iteration: 3, Func. Count: 25, Neg. LLF: 132.34165741241762
Iteration: 4, Func. Count: 33, Neg. LLF: 131.69568350512955
Iteration: 5, Func. Count: 41, Neg. LLF: 130.5728283929862
Iteration: 6, Func. Count: 48, Neg. LLF: 130.3106724577519
Iteration: 7, Func. Count: 55, Neg. LLF: 130.2689994391433
Iteration: 8, Func. Count: 62, Neg. LLF: 130.2623434157065
Iteration: 9, Func. Count: 69, Neg. LLF: 130.26048251995238
Iteration: 10, Func. Count: 76, Neg. LLF: 130.25930187418504
Iteration: 11, Func. Count: 83, Neg. LLF: 130.2588611377854
Iteration: 12, Func. Count: 90, Neg. LLF: 130.2587819571148
Iteration: 13, Func. Count: 97, Neg. LLF: 130.2587758017206
Iteration: 14, Func. Count: 103, Neg. LLF: 130.25877590379594
Optimization terminated successfully (Exit mode 0)
Current function value: 130.2587758017206
Iterations: 14
Function evaluations: 103
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 134.40222955949093
Iteration: 2, Func. Count: 18, Neg. LLF: 132.9142415785595
Iteration: 3, Func. Count: 27, Neg. LLF: 134.79992995585297
Iteration: 4, Func. Count: 36, Neg. LLF: 141.6962781760458
Iteration: 5, Func. Count: 45, Neg. LLF: 130.66217236947995
Iteration: 6, Func. Count: 53, Neg. LLF: 130.3107385695737
Iteration: 7, Func. Count: 61, Neg. LLF: 130.2889816169357
Iteration: 8, Func. Count: 69, Neg. LLF: 130.26411183688543
Iteration: 9, Func. Count: 77, Neg. LLF: 130.30852749069234
Iteration: 10, Func. Count: 86, Neg. LLF: 130.25880291342318
Iteration: 11, Func. Count: 94, Neg. LLF: 130.256962092559
Iteration: 12, Func. Count: 102, Neg. LLF: 130.25651963326445
Iteration: 13, Func. Count: 110, Neg. LLF: 130.2564505871341
Iteration: 14, Func. Count: 118, Neg. LLF: 130.25644602279328
Iteration: 15, Func. Count: 125, Neg. LLF: 130.25644602277086
Optimization terminated successfully (Exit mode 0)
Current function value: 130.25644602279328
Iterations: 15
Function evaluations: 125
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 134.38213548014537
Iteration: 2, Func. Count: 21, Neg. LLF: 132.77806832386327
Iteration: 3, Func. Count: 31, Neg. LLF: 148.04992375378163
Iteration: 4, Func. Count: 41, Neg. LLF: 130.7430411741971
Iteration: 5, Func. Count: 50, Neg. LLF: 130.41111055059017
Iteration: 6, Func. Count: 59, Neg. LLF: 130.32647351350872
Iteration: 7, Func. Count: 68, Neg. LLF: 130.28023564873652
Iteration: 8, Func. Count: 77, Neg. LLF: 130.26806259900593
Iteration: 9, Func. Count: 86, Neg. LLF: 130.263819110616
Iteration: 10, Func. Count: 95, Neg. LLF: 130.2890075045645
Iteration: 11, Func. Count: 105, Neg. LLF: 130.2576412881242
Iteration: 12, Func. Count: 114, Neg. LLF: 130.25648754193304
Iteration: 13, Func. Count: 123, Neg. LLF: 130.25644856458166
Iteration: 14, Func. Count: 132, Neg. LLF: 130.25644598517957
Iteration: 15, Func. Count: 140, Neg. LLF: 130.25644610775657
Optimization terminated successfully (Exit mode 0)
Current function value: 130.25644598517957
Iterations: 15
Function evaluations: 140
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 134.38564803217955
Iteration: 2, Func. Count: 23, Neg. LLF: 132.85450868008326
Iteration: 3, Func. Count: 34, Neg. LLF: 163.75120270620064
Iteration: 4, Func. Count: 46, Neg. LLF: 130.47616598823706
Iteration: 5, Func. Count: 56, Neg. LLF: 130.37785744583365
Iteration: 6, Func. Count: 66, Neg. LLF: 130.2867642291095
Iteration: 7, Func. Count: 76, Neg. LLF: 130.26434404716284
Iteration: 8, Func. Count: 86, Neg. LLF: 130.29778088345256
Iteration: 9, Func. Count: 97, Neg. LLF: 130.26184793760163
Iteration: 10, Func. Count: 107, Neg. LLF: 130.2601105145964
Iteration: 11, Func. Count: 117, Neg. LLF: 130.25659468256728
Iteration: 12, Func. Count: 127, Neg. LLF: 130.2564610929433
Iteration: 13, Func. Count: 137, Neg. LLF: 130.25644838915207
Iteration: 14, Func. Count: 147, Neg. LLF: 130.25644608897505
Iteration: 15, Func. Count: 156, Neg. LLF: 130.2564460975175
Optimization terminated successfully (Exit mode 0)
Current function value: 130.25644608897505
Iterations: 15
Function evaluations: 156
Gradient evaluations: 15
Iteration: 1, Func. Count: 8, Neg. LLF: 136.14474807417002
Iteration: 2, Func. Count: 16, Neg. LLF: 142.36563232908892
Iteration: 3, Func. Count: 24, Neg. LLF: 132.12985196193225
Iteration: 4, Func. Count: 32, Neg. LLF: 130.76037298141097
Iteration: 5, Func. Count: 39, Neg. LLF: 130.7138743046709
Iteration: 6, Func. Count: 47, Neg. LLF: 130.49803559880053
Iteration: 7, Func. Count: 54, Neg. LLF: 130.38894350890672
Iteration: 8, Func. Count: 61, Neg. LLF: 130.28428802935528
Iteration: 9, Func. Count: 68, Neg. LLF: 130.26219197098177
Iteration: 10, Func. Count: 75, Neg. LLF: 130.25881946700747
Iteration: 11, Func. Count: 82, Neg. LLF: 130.2587780435518
Iteration: 12, Func. Count: 89, Neg. LLF: 130.2587756582752
Iteration: 13, Func. Count: 95, Neg. LLF: 130.2587758699159
Optimization terminated successfully (Exit mode 0)
Current function value: 130.2587756582752
Iterations: 13
Function evaluations: 95
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 134.4359116515862
Iteration: 2, Func. Count: 19, Neg. LLF: 132.72216194503514
Iteration: 3, Func. Count: 28, Neg. LLF: 133.2475852671282
Iteration: 4, Func. Count: 37, Neg. LLF: 131.82429083382607
Iteration: 5, Func. Count: 46, Neg. LLF: 130.5781866870645
Iteration: 6, Func. Count: 54, Neg. LLF: 130.3040814225306
Iteration: 7, Func. Count: 62, Neg. LLF: 130.26982303396034
Iteration: 8, Func. Count: 70, Neg. LLF: 130.26168554236645
Iteration: 9, Func. Count: 78, Neg. LLF: 130.25967132155426
Iteration: 10, Func. Count: 86, Neg. LLF: 130.2592371290696
Iteration: 11, Func. Count: 94, Neg. LLF: 130.2588734027652
Iteration: 12, Func. Count: 102, Neg. LLF: 130.2587836825047
Iteration: 13, Func. Count: 110, Neg. LLF: 130.25877583157754
Iteration: 14, Func. Count: 117, Neg. LLF: 130.2587759336485
Optimization terminated successfully (Exit mode 0)
Current function value: 130.25877583157754
Iterations: 14
Function evaluations: 117
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 134.38751787057737
Iteration: 2, Func. Count: 20, Neg. LLF: 132.88941396885994
Iteration: 3, Func. Count: 30, Neg. LLF: 134.84096972488143
Iteration: 4, Func. Count: 40, Neg. LLF: 141.67303414421286
Iteration: 5, Func. Count: 50, Neg. LLF: 130.7705851730485
Iteration: 6, Func. Count: 59, Neg. LLF: 130.31188855359682
Iteration: 7, Func. Count: 68, Neg. LLF: 130.28964871471837
Iteration: 8, Func. Count: 77, Neg. LLF: 130.26479116018785
Iteration: 9, Func. Count: 86, Neg. LLF: 130.3284585440541
Iteration: 10, Func. Count: 96, Neg. LLF: 130.25915117542905
Iteration: 11, Func. Count: 105, Neg. LLF: 130.2571678364169
Iteration: 12, Func. Count: 114, Neg. LLF: 130.2565466982487
Iteration: 13, Func. Count: 123, Neg. LLF: 130.2564572985873
Iteration: 14, Func. Count: 132, Neg. LLF: 130.25644608874575
Iteration: 15, Func. Count: 140, Neg. LLF: 130.25644608874782
Optimization terminated successfully (Exit mode 0)
Current function value: 130.25644608874575
Iterations: 15
Function evaluations: 140
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 134.3690963173831
Iteration: 2, Func. Count: 23, Neg. LLF: 132.76004579707794
Iteration: 3, Func. Count: 34, Neg. LLF: 148.84143345283672
Iteration: 4, Func. Count: 45, Neg. LLF: 130.7132875038712
Iteration: 5, Func. Count: 55, Neg. LLF: 130.40888927203662
Iteration: 6, Func. Count: 65, Neg. LLF: 130.32419207851189
Iteration: 7, Func. Count: 75, Neg. LLF: 130.28019957933694
Iteration: 8, Func. Count: 85, Neg. LLF: 130.2680721755929
Iteration: 9, Func. Count: 95, Neg. LLF: 130.26373180452583
Iteration: 10, Func. Count: 105, Neg. LLF: 130.293588213891
Iteration: 11, Func. Count: 116, Neg. LLF: 130.25756431610256
Iteration: 12, Func. Count: 126, Neg. LLF: 130.25648627102544
Iteration: 13, Func. Count: 136, Neg. LLF: 130.256448469729
Iteration: 14, Func. Count: 146, Neg. LLF: 130.25644599763532
Iteration: 15, Func. Count: 155, Neg. LLF: 130.256446120213
Optimization terminated successfully (Exit mode 0)
Current function value: 130.25644599763532
Iterations: 15
Function evaluations: 155
Gradient evaluations: 15
Iteration: 1, Func. Count: 12, Neg. LLF: 134.37458554437907
Iteration: 2, Func. Count: 25, Neg. LLF: 132.8417718911441
Iteration: 3, Func. Count: 37, Neg. LLF: 165.26663206019902
Iteration: 4, Func. Count: 50, Neg. LLF: 130.4736125252027
Iteration: 5, Func. Count: 61, Neg. LLF: 130.3757264592551
Iteration: 6, Func. Count: 72, Neg. LLF: 130.28910591583934
Iteration: 7, Func. Count: 83, Neg. LLF: 130.2645137978426
Iteration: 8, Func. Count: 94, Neg. LLF: 130.30524775105653
Iteration: 9, Func. Count: 106, Neg. LLF: 130.26181842039387
Iteration: 10, Func. Count: 117, Neg. LLF: 130.26028294470598
Iteration: 11, Func. Count: 128, Neg. LLF: 130.25654103152883
Iteration: 12, Func. Count: 139, Neg. LLF: 130.25644860444447
Iteration: 13, Func. Count: 150, Neg. LLF: 130.25644605620755
Iteration: 14, Func. Count: 160, Neg. LLF: 130.25644606482544
Optimization terminated successfully (Exit mode 0)
Current function value: 130.25644605620755
Iterations: 14
Function evaluations: 160
Gradient evaluations: 14
Iteration: 1, Func. Count: 5, Neg. LLF: 132.18347239975913
Iteration: 2, Func. Count: 10, Neg. LLF: 135.2740170367175
Iteration: 3, Func. Count: 15, Neg. LLF: 130.40473197428315
Iteration: 4, Func. Count: 19, Neg. LLF: 130.37886396469642
Iteration: 5, Func. Count: 23, Neg. LLF: 130.37529257015103
Iteration: 6, Func. Count: 27, Neg. LLF: 130.37499329463492
Iteration: 7, Func. Count: 31, Neg. LLF: 130.37496731057192
Iteration: 8, Func. Count: 34, Neg. LLF: 130.37496731056422
Optimization terminated successfully (Exit mode 0)
Current function value: 130.37496731057192
Iterations: 8
Function evaluations: 34
Gradient evaluations: 8
Iteration: 1, Func. Count: 6, Neg. LLF: 131.20562075400548
Iteration: 2, Func. Count: 12, Neg. LLF: 131.45006369611212
Iteration: 3, Func. Count: 18, Neg. LLF: 130.89154951745797
Iteration: 4, Func. Count: 24, Neg. LLF: 130.351701654997
Iteration: 5, Func. Count: 30, Neg. LLF: 130.30817245926772
Iteration: 6, Func. Count: 35, Neg. LLF: 130.27878606964182
Iteration: 7, Func. Count: 40, Neg. LLF: 130.17872749158005
Iteration: 8, Func. Count: 45, Neg. LLF: 130.10583931452456
Iteration: 9, Func. Count: 50, Neg. LLF: 130.0813964282587
Iteration: 10, Func. Count: 55, Neg. LLF: 130.07887827003745
Iteration: 11, Func. Count: 60, Neg. LLF: 130.0787931150151
Iteration: 12, Func. Count: 65, Neg. LLF: 130.07878792460562
Iteration: 13, Func. Count: 69, Neg. LLF: 130.07878791635446
Optimization terminated successfully (Exit mode 0)
Current function value: 130.07878792460562
Iterations: 13
Function evaluations: 69
Gradient evaluations: 13
Iteration: 1, Func. Count: 7, Neg. LLF: 131.37418484595253
Iteration: 2, Func. Count: 14, Neg. LLF: 131.11600633705146
Iteration: 3, Func. Count: 21, Neg. LLF: 131.02147799657925
Iteration: 4, Func. Count: 28, Neg. LLF: 131.67012423690772
Iteration: 5, Func. Count: 35, Neg. LLF: 130.09743926125427
Iteration: 6, Func. Count: 41, Neg. LLF: 130.0904032160152
Iteration: 7, Func. Count: 47, Neg. LLF: 130.08577661563695
Iteration: 8, Func. Count: 53, Neg. LLF: 130.0810987982968
Iteration: 9, Func. Count: 59, Neg. LLF: 130.0773977565824
Iteration: 10, Func. Count: 65, Neg. LLF: 130.0755056362406
Iteration: 11, Func. Count: 71, Neg. LLF: 130.07495931212918
Iteration: 12, Func. Count: 77, Neg. LLF: 130.07488220191274
Iteration: 13, Func. Count: 83, Neg. LLF: 130.0748796745526
Iteration: 14, Func. Count: 88, Neg. LLF: 130.07487967451718
Optimization terminated successfully (Exit mode 0)
Current function value: 130.0748796745526
Iterations: 14
Function evaluations: 88
Gradient evaluations: 14
Iteration: 1, Func. Count: 8, Neg. LLF: 131.4898479210196
Iteration: 2, Func. Count: 16, Neg. LLF: 130.9415793166127
Iteration: 3, Func. Count: 24, Neg. LLF: 135.49003450167504
Iteration: 4, Func. Count: 33, Neg. LLF: 131.58881666439393
Iteration: 5, Func. Count: 41, Neg. LLF: 130.1176743690143
Iteration: 6, Func. Count: 48, Neg. LLF: 130.1082905608934
Iteration: 7, Func. Count: 55, Neg. LLF: 130.09955052986302
Iteration: 8, Func. Count: 62, Neg. LLF: 130.08952813403909
Iteration: 9, Func. Count: 69, Neg. LLF: 130.08189005363568
Iteration: 10, Func. Count: 76, Neg. LLF: 130.07750796761124
Iteration: 11, Func. Count: 83, Neg. LLF: 130.07532833269443
Iteration: 12, Func. Count: 90, Neg. LLF: 130.0749012053417
Iteration: 13, Func. Count: 97, Neg. LLF: 130.07488074371332
Iteration: 14, Func. Count: 104, Neg. LLF: 130.0748796435022
Iteration: 15, Func. Count: 110, Neg. LLF: 130.0748798388873
Optimization terminated successfully (Exit mode 0)
Current function value: 130.0748796435022
Iterations: 15
Function evaluations: 110
Gradient evaluations: 15
Iteration: 1, Func. Count: 9, Neg. LLF: 131.9273983687197
Iteration: 2, Func. Count: 18, Neg. LLF: 130.69461389158926
Iteration: 3, Func. Count: 26, Neg. LLF: 146.66537436474567
Iteration: 4, Func. Count: 36, Neg. LLF: 142.5269235425072
Iteration: 5, Func. Count: 45, Neg. LLF: 130.1719554355575
Iteration: 6, Func. Count: 53, Neg. LLF: 130.14111019362588
Iteration: 7, Func. Count: 61, Neg. LLF: 130.10678426502395
Iteration: 8, Func. Count: 69, Neg. LLF: 130.0949072277532
Iteration: 9, Func. Count: 77, Neg. LLF: 130.08613242023
Iteration: 10, Func. Count: 85, Neg. LLF: 130.0790062000215
Iteration: 11, Func. Count: 93, Neg. LLF: 130.07525052079737
Iteration: 12, Func. Count: 101, Neg. LLF: 130.0748810398901
Iteration: 13, Func. Count: 109, Neg. LLF: 130.07487965888976
Iteration: 14, Func. Count: 116, Neg. LLF: 130.07487972539505
Optimization terminated successfully (Exit mode 0)
Current function value: 130.07487965888976
Iterations: 14
Function evaluations: 116
Gradient evaluations: 14
Iteration: 1, Func. Count: 6, Neg. LLF: 132.36595883552187
Iteration: 2, Func. Count: 12, Neg. LLF: 132.35624422371853
Iteration: 3, Func. Count: 18, Neg. LLF: 130.31023796476055
Iteration: 4, Func. Count: 23, Neg. LLF: 130.18381683650674
Iteration: 5, Func. Count: 28, Neg. LLF: 130.17882703640842
Iteration: 6, Func. Count: 33, Neg. LLF: 130.17958748819075
Iteration: 7, Func. Count: 39, Neg. LLF: 130.17811429852253
Iteration: 8, Func. Count: 43, Neg. LLF: 130.17811429853253
Optimization terminated successfully (Exit mode 0)
Current function value: 130.17811429852253
Iterations: 8
Function evaluations: 43
Gradient evaluations: 8
Iteration: 1, Func. Count: 7, Neg. LLF: 131.11498352416677
Iteration: 2, Func. Count: 14, Neg. LLF: 131.26998746571851
Iteration: 3, Func. Count: 21, Neg. LLF: 130.83103412683636
Iteration: 4, Func. Count: 28, Neg. LLF: 135.25235209137023
Iteration: 5, Func. Count: 35, Neg. LLF: 130.3419190923215
Iteration: 6, Func. Count: 41, Neg. LLF: 130.13784174468887
Iteration: 7, Func. Count: 47, Neg. LLF: 130.14332438822822
Iteration: 8, Func. Count: 54, Neg. LLF: 129.95886395774377
Iteration: 9, Func. Count: 60, Neg. LLF: 129.9264978701323
Iteration: 10, Func. Count: 66, Neg. LLF: 129.89915480516473
Iteration: 11, Func. Count: 72, Neg. LLF: 129.89258891195223
Iteration: 12, Func. Count: 78, Neg. LLF: 129.8923240453416
Iteration: 13, Func. Count: 84, Neg. LLF: 129.89232146524265
Iteration: 14, Func. Count: 89, Neg. LLF: 129.89232144756855
Optimization terminated successfully (Exit mode 0)
Current function value: 129.89232146524265
Iterations: 14
Function evaluations: 89
Gradient evaluations: 14
Iteration: 1, Func. Count: 8, Neg. LLF: 131.77615767415466
Iteration: 2, Func. Count: 16, Neg. LLF: 130.91133445429097
Iteration: 3, Func. Count: 24, Neg. LLF: 137.94439284545524
Iteration: 4, Func. Count: 32, Neg. LLF: 130.0499264650185
Iteration: 5, Func. Count: 39, Neg. LLF: 129.87490488733548
Iteration: 6, Func. Count: 46, Neg. LLF: 129.94131170377204
Iteration: 7, Func. Count: 54, Neg. LLF: 129.86611116160427
Iteration: 8, Func. Count: 61, Neg. LLF: 129.86594112453975
Iteration: 9, Func. Count: 68, Neg. LLF: 129.86592703387993
Iteration: 10, Func. Count: 75, Neg. LLF: 129.86590722095343
Iteration: 11, Func. Count: 82, Neg. LLF: 129.86590177535965
Iteration: 12, Func. Count: 89, Neg. LLF: 129.86590021254446
Iteration: 13, Func. Count: 95, Neg. LLF: 129.8659002125675
Optimization terminated successfully (Exit mode 0)
Current function value: 129.86590021254446
Iterations: 13
Function evaluations: 95
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 130.92783490520412
Iteration: 2, Func. Count: 18, Neg. LLF: 130.2377660500691
Iteration: 3, Func. Count: 26, Neg. LLF: 163.85346301693514
Iteration: 4, Func. Count: 36, Neg. LLF: 129.9983436481653
Iteration: 5, Func. Count: 44, Neg. LLF: 130.0684384244694
Iteration: 6, Func. Count: 53, Neg. LLF: 129.9437243660602
Iteration: 7, Func. Count: 62, Neg. LLF: 129.86879433871422
Iteration: 8, Func. Count: 70, Neg. LLF: 129.8660904369435
Iteration: 9, Func. Count: 78, Neg. LLF: 129.86594599510738
Iteration: 10, Func. Count: 86, Neg. LLF: 129.86591883757737
Iteration: 11, Func. Count: 94, Neg. LLF: 129.86591166899547
Iteration: 12, Func. Count: 102, Neg. LLF: 129.8659014334369
Iteration: 13, Func. Count: 110, Neg. LLF: 129.865900237673
Iteration: 14, Func. Count: 117, Neg. LLF: 129.86590041524502
Optimization terminated successfully (Exit mode 0)
Current function value: 129.865900237673
Iterations: 14
Function evaluations: 117
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 131.6800626494584
Iteration: 2, Func. Count: 20, Neg. LLF: 131.0056605402895
Iteration: 3, Func. Count: 30, Neg. LLF: 147.83803323450303
Iteration: 4, Func. Count: 40, Neg. LLF: 130.22190564704897
Iteration: 5, Func. Count: 49, Neg. LLF: 129.889690777579
Iteration: 6, Func. Count: 58, Neg. LLF: 130.570326310944
Iteration: 7, Func. Count: 68, Neg. LLF: 129.86831072983537
Iteration: 8, Func. Count: 77, Neg. LLF: 129.86620433378064
Iteration: 9, Func. Count: 86, Neg. LLF: 129.8660062804417
Iteration: 10, Func. Count: 95, Neg. LLF: 129.86594210433134
Iteration: 11, Func. Count: 104, Neg. LLF: 129.86592408631998
Iteration: 12, Func. Count: 113, Neg. LLF: 129.8659057394611
Iteration: 13, Func. Count: 122, Neg. LLF: 129.86590095735403
Iteration: 14, Func. Count: 131, Neg. LLF: 129.86590016327122
Optimization terminated successfully (Exit mode 0)
Current function value: 129.86590016327122
Iterations: 14
Function evaluations: 131
Gradient evaluations: 14
Iteration: 1, Func. Count: 7, Neg. LLF: 133.5672897586193
Iteration: 2, Func. Count: 14, Neg. LLF: 132.2382061541162
Iteration: 3, Func. Count: 21, Neg. LLF: 130.55260349002938
Iteration: 4, Func. Count: 27, Neg. LLF: 130.84598506484082
Iteration: 5, Func. Count: 34, Neg. LLF: 130.4811391048101
Iteration: 6, Func. Count: 41, Neg. LLF: 130.1933258824595
Iteration: 7, Func. Count: 48, Neg. LLF: 130.17833405622434
Iteration: 8, Func. Count: 54, Neg. LLF: 130.17815988009096
Iteration: 9, Func. Count: 60, Neg. LLF: 130.17812094316037
Iteration: 10, Func. Count: 66, Neg. LLF: 130.17811505440133
Iteration: 11, Func. Count: 72, Neg. LLF: 130.17811381461073
Iteration: 12, Func. Count: 77, Neg. LLF: 130.17811398551305
Optimization terminated successfully (Exit mode 0)
Current function value: 130.17811381461073
Iterations: 12
Function evaluations: 77
Gradient evaluations: 12
Iteration: 1, Func. Count: 8, Neg. LLF: 133.50587350971546
Iteration: 2, Func. Count: 17, Neg. LLF: 130.65166660488808
Iteration: 3, Func. Count: 24, Neg. LLF: 131.14534171723434
Iteration: 4, Func. Count: 32, Neg. LLF: 133.5333582484228
Iteration: 5, Func. Count: 40, Neg. LLF: 133.50035606136572
Iteration: 6, Func. Count: 48, Neg. LLF: 130.3046154439565
Iteration: 7, Func. Count: 55, Neg. LLF: 130.19874412811203
Iteration: 8, Func. Count: 62, Neg. LLF: 130.1264098083574
Iteration: 9, Func. Count: 69, Neg. LLF: 129.9394066643267
Iteration: 10, Func. Count: 76, Neg. LLF: 129.892570138179
Iteration: 11, Func. Count: 83, Neg. LLF: 129.8923391375297
Iteration: 12, Func. Count: 90, Neg. LLF: 129.8923245103675
Iteration: 13, Func. Count: 97, Neg. LLF: 129.89232155756847
Iteration: 14, Func. Count: 103, Neg. LLF: 129.8923215398489
Optimization terminated successfully (Exit mode 0)
Current function value: 129.89232155756847
Iterations: 14
Function evaluations: 103
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 134.61401356354307
Iteration: 2, Func. Count: 18, Neg. LLF: 131.06534465648522
Iteration: 3, Func. Count: 27, Neg. LLF: 131.18476050482496
Iteration: 4, Func. Count: 36, Neg. LLF: 139.65547905420527
Iteration: 5, Func. Count: 45, Neg. LLF: 130.73623950485612
Iteration: 6, Func. Count: 54, Neg. LLF: 129.96961156444036
Iteration: 7, Func. Count: 62, Neg. LLF: 129.8958195024248
Iteration: 8, Func. Count: 70, Neg. LLF: 129.87390645546265
Iteration: 9, Func. Count: 78, Neg. LLF: 129.86964990417817
Iteration: 10, Func. Count: 86, Neg. LLF: 129.86734370105057
Iteration: 11, Func. Count: 94, Neg. LLF: 129.86663191805263
Iteration: 12, Func. Count: 102, Neg. LLF: 129.86601579693604
Iteration: 13, Func. Count: 110, Neg. LLF: 129.86591273701652
Iteration: 14, Func. Count: 118, Neg. LLF: 129.86590043222662
Iteration: 15, Func. Count: 125, Neg. LLF: 129.86590043223802
Optimization terminated successfully (Exit mode 0)
Current function value: 129.86590043222662
Iterations: 15
Function evaluations: 125
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 134.52024620664272
Iteration: 2, Func. Count: 21, Neg. LLF: 132.2583042838629
Iteration: 3, Func. Count: 31, Neg. LLF: 131.09942583680905
Iteration: 4, Func. Count: 41, Neg. LLF: 130.99041552092282
Iteration: 5, Func. Count: 51, Neg. LLF: 131.73737313735015
Iteration: 6, Func. Count: 61, Neg. LLF: 129.8849394215393
Iteration: 7, Func. Count: 70, Neg. LLF: 129.8678962259642
Iteration: 8, Func. Count: 79, Neg. LLF: 129.86595359330755
Iteration: 9, Func. Count: 88, Neg. LLF: 129.86591606206864
Iteration: 10, Func. Count: 97, Neg. LLF: 129.86591025213892
Iteration: 11, Func. Count: 106, Neg. LLF: 129.86590367049595
Iteration: 12, Func. Count: 115, Neg. LLF: 129.86590100392564
Iteration: 13, Func. Count: 124, Neg. LLF: 129.86590021345125
Optimization terminated successfully (Exit mode 0)
Current function value: 129.86590021345125
Iterations: 13
Function evaluations: 124
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 134.74639184422568
Iteration: 2, Func. Count: 23, Neg. LLF: 132.5831563310098
Iteration: 3, Func. Count: 34, Neg. LLF: 130.23353103083093
Iteration: 4, Func. Count: 44, Neg. LLF: 130.86298629091308
Iteration: 5, Func. Count: 55, Neg. LLF: 130.60558231938742
Iteration: 6, Func. Count: 66, Neg. LLF: 129.93745286282157
Iteration: 7, Func. Count: 77, Neg. LLF: 129.8672675033614
Iteration: 8, Func. Count: 87, Neg. LLF: 129.86598266487778
Iteration: 9, Func. Count: 97, Neg. LLF: 129.86591729470993
Iteration: 10, Func. Count: 107, Neg. LLF: 129.86591163938016
Iteration: 11, Func. Count: 117, Neg. LLF: 129.8659033146219
Iteration: 12, Func. Count: 127, Neg. LLF: 129.8659006008811
Iteration: 13, Func. Count: 136, Neg. LLF: 129.86590065884144
Optimization terminated successfully (Exit mode 0)
Current function value: 129.8659006008811
Iterations: 13
Function evaluations: 136
Gradient evaluations: 13
Iteration: 1, Func. Count: 8, Neg. LLF: 133.2770477643924
Iteration: 2, Func. Count: 16, Neg. LLF: 133.57224304234123
Iteration: 3, Func. Count: 25, Neg. LLF: 132.98059178433041
Iteration: 4, Func. Count: 33, Neg. LLF: 130.3527511714705
Iteration: 5, Func. Count: 41, Neg. LLF: 133.12934658543662
Iteration: 6, Func. Count: 49, Neg. LLF: 129.81018737922747
Iteration: 7, Func. Count: 56, Neg. LLF: 129.78177306007078
Iteration: 8, Func. Count: 63, Neg. LLF: 129.77920950135854
Iteration: 9, Func. Count: 70, Neg. LLF: 129.77882055560153
Iteration: 10, Func. Count: 77, Neg. LLF: 129.77863640371268
Iteration: 11, Func. Count: 84, Neg. LLF: 129.7785225930669
Iteration: 12, Func. Count: 91, Neg. LLF: 129.7784980339328
Iteration: 13, Func. Count: 98, Neg. LLF: 129.7784944884649
Iteration: 14, Func. Count: 104, Neg. LLF: 129.77849448843511
Optimization terminated successfully (Exit mode 0)
Current function value: 129.7784944884649
Iterations: 14
Function evaluations: 104
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 133.62651530488753
Iteration: 2, Func. Count: 19, Neg. LLF: 130.64868258131114
Iteration: 3, Func. Count: 27, Neg. LLF: 130.479228750184
Iteration: 4, Func. Count: 36, Neg. LLF: 134.44604417474707
Iteration: 5, Func. Count: 45, Neg. LLF: 132.88393442684543
Iteration: 6, Func. Count: 54, Neg. LLF: 129.93997141994217
Iteration: 7, Func. Count: 63, Neg. LLF: 129.80281133615128
Iteration: 8, Func. Count: 71, Neg. LLF: 129.79186167696687
Iteration: 9, Func. Count: 79, Neg. LLF: 129.78282928971578
Iteration: 10, Func. Count: 87, Neg. LLF: 129.7799335888019
Iteration: 11, Func. Count: 95, Neg. LLF: 129.77915530948985
Iteration: 12, Func. Count: 103, Neg. LLF: 129.77855817750898
Iteration: 13, Func. Count: 111, Neg. LLF: 129.77851247763988
Iteration: 14, Func. Count: 119, Neg. LLF: 129.77849986016386
Iteration: 15, Func. Count: 127, Neg. LLF: 129.7784952037027
Iteration: 16, Func. Count: 135, Neg. LLF: 129.77849429929896
Optimization terminated successfully (Exit mode 0)
Current function value: 129.77849429929896
Iterations: 16
Function evaluations: 135
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 134.61637955477505
Iteration: 2, Func. Count: 20, Neg. LLF: 131.0586658029966
Iteration: 3, Func. Count: 30, Neg. LLF: 131.59900971283975
Iteration: 4, Func. Count: 40, Neg. LLF: 134.12771517380955
Iteration: 5, Func. Count: 50, Neg. LLF: 138.29294671231122
Iteration: 6, Func. Count: 60, Neg. LLF: 129.8331815033901
Iteration: 7, Func. Count: 69, Neg. LLF: 130.45890733739648
Iteration: 8, Func. Count: 79, Neg. LLF: 129.80046978257656
Iteration: 9, Func. Count: 88, Neg. LLF: 129.79134986778035
Iteration: 10, Func. Count: 97, Neg. LLF: 129.78698953602492
Iteration: 11, Func. Count: 106, Neg. LLF: 129.7823360465742
Iteration: 12, Func. Count: 115, Neg. LLF: 129.7792439649225
Iteration: 13, Func. Count: 124, Neg. LLF: 129.77808817660488
Iteration: 14, Func. Count: 133, Neg. LLF: 129.7779287313751
Iteration: 15, Func. Count: 142, Neg. LLF: 129.77791251257733
Iteration: 16, Func. Count: 151, Neg. LLF: 129.77791080115577
Iteration: 17, Func. Count: 159, Neg. LLF: 129.77791080116415
Optimization terminated successfully (Exit mode 0)
Current function value: 129.77791080115577
Iterations: 17
Function evaluations: 159
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 134.52027981142723
Iteration: 2, Func. Count: 23, Neg. LLF: 131.59986770167015
Iteration: 3, Func. Count: 34, Neg. LLF: 130.16258415476068
Iteration: 4, Func. Count: 44, Neg. LLF: 130.87519936132318
Iteration: 5, Func. Count: 55, Neg. LLF: 134.9319270699887
Iteration: 6, Func. Count: 67, Neg. LLF: 130.12631746962177
Iteration: 7, Func. Count: 78, Neg. LLF: 129.9340399910016
Iteration: 8, Func. Count: 89, Neg. LLF: 129.79570821153627
Iteration: 9, Func. Count: 100, Neg. LLF: 129.78487974638892
Iteration: 10, Func. Count: 110, Neg. LLF: 129.78279141865994
Iteration: 11, Func. Count: 120, Neg. LLF: 129.77997146421973
Iteration: 12, Func. Count: 130, Neg. LLF: 129.77839902063803
Iteration: 13, Func. Count: 140, Neg. LLF: 129.77793715819186
Iteration: 14, Func. Count: 150, Neg. LLF: 129.77791126551006
Iteration: 15, Func. Count: 159, Neg. LLF: 129.777911436557
Optimization terminated successfully (Exit mode 0)
Current function value: 129.77791126551006
Iterations: 15
Function evaluations: 159
Gradient evaluations: 15
Iteration: 1, Func. Count: 12, Neg. LLF: 134.7327027097324
Iteration: 2, Func. Count: 25, Neg. LLF: 133.4885563661565
Iteration: 3, Func. Count: 38, Neg. LLF: 131.6741997161054
Iteration: 4, Func. Count: 50, Neg. LLF: 135.75591414030603
Iteration: 5, Func. Count: 62, Neg. LLF: 130.31733767958795
Iteration: 6, Func. Count: 73, Neg. LLF: 129.82381935515355
Iteration: 7, Func. Count: 84, Neg. LLF: 133.53624532744863
Iteration: 8, Func. Count: 97, Neg. LLF: 129.7855402757621
Iteration: 9, Func. Count: 108, Neg. LLF: 129.78123252634794
Iteration: 10, Func. Count: 119, Neg. LLF: 129.7798333954504
Iteration: 11, Func. Count: 130, Neg. LLF: 129.7787190802824
Iteration: 12, Func. Count: 141, Neg. LLF: 129.77847791953553
Iteration: 13, Func. Count: 152, Neg. LLF: 129.77810097085822
Iteration: 14, Func. Count: 163, Neg. LLF: 129.77798832035745
Iteration: 15, Func. Count: 174, Neg. LLF: 129.77792179414467
Iteration: 16, Func. Count: 185, Neg. LLF: 129.77791177690068
Iteration: 17, Func. Count: 196, Neg. LLF: 129.77791076858736
Iteration: 18, Func. Count: 206, Neg. LLF: 129.77791076937723
Optimization terminated successfully (Exit mode 0)
Current function value: 129.77791076858736
Iterations: 18
Function evaluations: 206
Gradient evaluations: 18
Iteration: 1, Func. Count: 9, Neg. LLF: 132.86591140816105
Iteration: 2, Func. Count: 18, Neg. LLF: 132.08480387632858
Iteration: 3, Func. Count: 27, Neg. LLF: 131.55632544145243
Iteration: 4, Func. Count: 36, Neg. LLF: 129.83620451906484
Iteration: 5, Func. Count: 44, Neg. LLF: 130.80007853374102
Iteration: 6, Func. Count: 53, Neg. LLF: 129.90216793627818
Iteration: 7, Func. Count: 62, Neg. LLF: 129.77926043888021
Iteration: 8, Func. Count: 70, Neg. LLF: 129.77885971199603
Iteration: 9, Func. Count: 78, Neg. LLF: 129.77863437321676
Iteration: 10, Func. Count: 86, Neg. LLF: 129.77850728803142
Iteration: 11, Func. Count: 94, Neg. LLF: 129.77849529333236
Iteration: 12, Func. Count: 102, Neg. LLF: 129.7784942924496
Iteration: 13, Func. Count: 109, Neg. LLF: 129.77849448821863
Optimization terminated successfully (Exit mode 0)
Current function value: 129.7784942924496
Iterations: 13
Function evaluations: 109
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 133.66677013711126
Iteration: 2, Func. Count: 21, Neg. LLF: 130.64873023494232
Iteration: 3, Func. Count: 30, Neg. LLF: 130.4885995620139
Iteration: 4, Func. Count: 40, Neg. LLF: 134.4204715770705
Iteration: 5, Func. Count: 50, Neg. LLF: 132.87804491543426
Iteration: 6, Func. Count: 60, Neg. LLF: 129.94242244897524
Iteration: 7, Func. Count: 70, Neg. LLF: 129.80299971728974
Iteration: 8, Func. Count: 79, Neg. LLF: 129.79194435194066
Iteration: 9, Func. Count: 88, Neg. LLF: 129.7830760424086
Iteration: 10, Func. Count: 97, Neg. LLF: 129.78000132297305
Iteration: 11, Func. Count: 106, Neg. LLF: 129.77918421871476
Iteration: 12, Func. Count: 115, Neg. LLF: 129.7785591712113
Iteration: 13, Func. Count: 124, Neg. LLF: 129.77851141549382
Iteration: 14, Func. Count: 133, Neg. LLF: 129.77849970928256
Iteration: 15, Func. Count: 142, Neg. LLF: 129.77849519004448
Iteration: 16, Func. Count: 151, Neg. LLF: 129.77849430149817
Optimization terminated successfully (Exit mode 0)
Current function value: 129.77849430149817
Iterations: 16
Function evaluations: 151
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 134.60261782362232
Iteration: 2, Func. Count: 22, Neg. LLF: 131.06166925740516
Iteration: 3, Func. Count: 33, Neg. LLF: 131.67962254542914
Iteration: 4, Func. Count: 44, Neg. LLF: 134.06259509580033
Iteration: 5, Func. Count: 55, Neg. LLF: 138.11082638474548
Iteration: 6, Func. Count: 66, Neg. LLF: 129.83292049107865
Iteration: 7, Func. Count: 76, Neg. LLF: 130.45291838370022
Iteration: 8, Func. Count: 87, Neg. LLF: 129.7999422545914
Iteration: 9, Func. Count: 97, Neg. LLF: 129.79110266397643
Iteration: 10, Func. Count: 107, Neg. LLF: 129.78682317165928
Iteration: 11, Func. Count: 117, Neg. LLF: 129.78225227199385
Iteration: 12, Func. Count: 127, Neg. LLF: 129.7792255987766
Iteration: 13, Func. Count: 137, Neg. LLF: 129.77808390651532
Iteration: 14, Func. Count: 147, Neg. LLF: 129.7779279011254
Iteration: 15, Func. Count: 157, Neg. LLF: 129.77791242326467
Iteration: 16, Func. Count: 167, Neg. LLF: 129.77791079158692
Iteration: 17, Func. Count: 176, Neg. LLF: 129.7779107915921
Optimization terminated successfully (Exit mode 0)
Current function value: 129.77791079158692
Iterations: 17
Function evaluations: 176
Gradient evaluations: 17
Iteration: 1, Func. Count: 12, Neg. LLF: 134.5066062306869
Iteration: 2, Func. Count: 25, Neg. LLF: 131.58283610909243
Iteration: 3, Func. Count: 37, Neg. LLF: 130.05344653580843
Iteration: 4, Func. Count: 48, Neg. LLF: 130.9244190996027
Iteration: 5, Func. Count: 60, Neg. LLF: 134.21721094786028
Iteration: 6, Func. Count: 73, Neg. LLF: 130.10381817411206
Iteration: 7, Func. Count: 85, Neg. LLF: 129.9354096207851
Iteration: 8, Func. Count: 97, Neg. LLF: 129.78659115103576
Iteration: 9, Func. Count: 108, Neg. LLF: 129.78289226123943
Iteration: 10, Func. Count: 119, Neg. LLF: 129.7814577256515
Iteration: 11, Func. Count: 130, Neg. LLF: 129.77863782515666
Iteration: 12, Func. Count: 141, Neg. LLF: 129.7780802499019
Iteration: 13, Func. Count: 152, Neg. LLF: 129.77793742023255
Iteration: 14, Func. Count: 163, Neg. LLF: 129.7779157010482
Iteration: 15, Func. Count: 174, Neg. LLF: 129.77791085586333
Iteration: 16, Func. Count: 184, Neg. LLF: 129.7779110268869
Optimization terminated successfully (Exit mode 0)
Current function value: 129.77791085586333
Iterations: 16
Function evaluations: 184
Gradient evaluations: 16
Iteration: 1, Func. Count: 13, Neg. LLF: 134.71562260429806
Iteration: 2, Func. Count: 27, Neg. LLF: 133.82520114562172
Iteration: 3, Func. Count: 41, Neg. LLF: 131.66101464093094
Iteration: 4, Func. Count: 54, Neg. LLF: 135.765761001137
Iteration: 5, Func. Count: 67, Neg. LLF: 130.31940806136748
Iteration: 6, Func. Count: 79, Neg. LLF: 129.8217547393138
Iteration: 7, Func. Count: 91, Neg. LLF: 133.28362193407133
Iteration: 8, Func. Count: 105, Neg. LLF: 129.78525123453412
Iteration: 9, Func. Count: 117, Neg. LLF: 129.78110279663716
Iteration: 10, Func. Count: 129, Neg. LLF: 129.77973886145767
Iteration: 11, Func. Count: 141, Neg. LLF: 129.77870729234422
Iteration: 12, Func. Count: 153, Neg. LLF: 129.77846873597915
Iteration: 13, Func. Count: 165, Neg. LLF: 129.77809457906886
Iteration: 14, Func. Count: 177, Neg. LLF: 129.7779834861309
Iteration: 15, Func. Count: 189, Neg. LLF: 129.77792111440968
Iteration: 16, Func. Count: 201, Neg. LLF: 129.77791172961898
Iteration: 17, Func. Count: 213, Neg. LLF: 129.7779107695254
Optimization terminated successfully (Exit mode 0)
Current function value: 129.7779107695254
Iterations: 17
Function evaluations: 213
Gradient evaluations: 17
Iteration: 1, Func. Count: 6, Neg. LLF: 131.34281319251633
Iteration: 2, Func. Count: 11, Neg. LLF: 131.30174447900907
Iteration: 3, Func. Count: 17, Neg. LLF: 131.34001313409092
Iteration: 4, Func. Count: 23, Neg. LLF: 147.65537074076616
Iteration: 5, Func. Count: 29, Neg. LLF: 147.8378477095857
Iteration: 6, Func. Count: 35, Neg. LLF: 131.82173049576141
Iteration: 7, Func. Count: 41, Neg. LLF: 148.44295569513685
Iteration: 8, Func. Count: 47, Neg. LLF: 130.17460790467914
Iteration: 9, Func. Count: 52, Neg. LLF: 130.12900869322593
Iteration: 10, Func. Count: 57, Neg. LLF: 130.12109099062891
Iteration: 11, Func. Count: 62, Neg. LLF: 130.1124798083247
Iteration: 12, Func. Count: 67, Neg. LLF: 130.11139226113565
Iteration: 13, Func. Count: 72, Neg. LLF: 130.11111815815838
Iteration: 14, Func. Count: 77, Neg. LLF: 130.1110888697768
Iteration: 15, Func. Count: 82, Neg. LLF: 130.1110873675498
Iteration: 16, Func. Count: 86, Neg. LLF: 130.11108735925052
Optimization terminated successfully (Exit mode 0)
Current function value: 130.1110873675498
Iterations: 16
Function evaluations: 86
Gradient evaluations: 16
Iteration: 1, Func. Count: 7, Neg. LLF: 130.85015922237628
Iteration: 2, Func. Count: 13, Neg. LLF: 131.59906548548304
Iteration: 3, Func. Count: 20, Neg. LLF: 135.3165977712034
Iteration: 4, Func. Count: 27, Neg. LLF: 139.1886142529653
Iteration: 5, Func. Count: 34, Neg. LLF: 130.4396399048562
Iteration: 6, Func. Count: 41, Neg. LLF: 130.24920049015557
Iteration: 7, Func. Count: 47, Neg. LLF: 130.19701186753446
Iteration: 8, Func. Count: 53, Neg. LLF: 130.09553966031157
Iteration: 9, Func. Count: 59, Neg. LLF: 130.04749037346102
Iteration: 10, Func. Count: 65, Neg. LLF: 130.04051058296187
Iteration: 11, Func. Count: 71, Neg. LLF: 130.03938420688448
Iteration: 12, Func. Count: 77, Neg. LLF: 130.039276063994
Iteration: 13, Func. Count: 83, Neg. LLF: 130.03927176824038
Iteration: 14, Func. Count: 88, Neg. LLF: 130.03927175879485
Optimization terminated successfully (Exit mode 0)
Current function value: 130.03927176824038
Iterations: 14
Function evaluations: 88
Gradient evaluations: 14
Iteration: 1, Func. Count: 8, Neg. LLF: 130.9819917157495
Iteration: 2, Func. Count: 15, Neg. LLF: 133.92080157097885
Iteration: 3, Func. Count: 24, Neg. LLF: 145.20228799832896
Iteration: 4, Func. Count: 32, Neg. LLF: 138.72351380316613
Iteration: 5, Func. Count: 40, Neg. LLF: 130.20532746095435
Iteration: 6, Func. Count: 47, Neg. LLF: 130.1266484982059
Iteration: 7, Func. Count: 54, Neg. LLF: 130.11227587419432
Iteration: 8, Func. Count: 61, Neg. LLF: 130.09324146255386
Iteration: 9, Func. Count: 68, Neg. LLF: 130.08272479501056
Iteration: 10, Func. Count: 75, Neg. LLF: 130.0753549304537
Iteration: 11, Func. Count: 82, Neg. LLF: 130.07489637678813
Iteration: 12, Func. Count: 89, Neg. LLF: 130.07488336022314
Iteration: 13, Func. Count: 96, Neg. LLF: 130.0748805805643
Iteration: 14, Func. Count: 103, Neg. LLF: 130.0748796650219
Optimization terminated successfully (Exit mode 0)
Current function value: 130.0748796650219
Iterations: 14
Function evaluations: 103
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 130.996642545716
Iteration: 2, Func. Count: 17, Neg. LLF: 132.09123647195497
Iteration: 3, Func. Count: 26, Neg. LLF: 143.7045667698061
Iteration: 4, Func. Count: 35, Neg. LLF: 138.20516524676043
Iteration: 5, Func. Count: 44, Neg. LLF: 130.21544028481037
Iteration: 6, Func. Count: 52, Neg. LLF: 130.11160053503417
Iteration: 7, Func. Count: 60, Neg. LLF: 130.09946116316652
Iteration: 8, Func. Count: 68, Neg. LLF: 130.08856026218348
Iteration: 9, Func. Count: 76, Neg. LLF: 130.0818963816284
Iteration: 10, Func. Count: 84, Neg. LLF: 130.07562063970641
Iteration: 11, Func. Count: 92, Neg. LLF: 130.0749516896137
Iteration: 12, Func. Count: 100, Neg. LLF: 130.07487982134396
Iteration: 13, Func. Count: 107, Neg. LLF: 130.07488001669591
Optimization terminated successfully (Exit mode 0)
Current function value: 130.07487982134396
Iterations: 13
Function evaluations: 107
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 131.00499452062473
Iteration: 2, Func. Count: 19, Neg. LLF: 132.41205461315914
Iteration: 3, Func. Count: 29, Neg. LLF: 143.99152245646735
Iteration: 4, Func. Count: 39, Neg. LLF: 138.23020390457867
Iteration: 5, Func. Count: 49, Neg. LLF: 130.20174354637874
Iteration: 6, Func. Count: 58, Neg. LLF: 130.11129645674822
Iteration: 7, Func. Count: 67, Neg. LLF: 130.09729049332773
Iteration: 8, Func. Count: 76, Neg. LLF: 130.08869109017184
Iteration: 9, Func. Count: 85, Neg. LLF: 130.08229447259288
Iteration: 10, Func. Count: 94, Neg. LLF: 130.0758054557549
Iteration: 11, Func. Count: 103, Neg. LLF: 130.0749956178169
Iteration: 12, Func. Count: 112, Neg. LLF: 130.07487987789196
Iteration: 13, Func. Count: 120, Neg. LLF: 130.07487994425986
Optimization terminated successfully (Exit mode 0)
Current function value: 130.07487987789196
Iterations: 13
Function evaluations: 120
Gradient evaluations: 13
Iteration: 1, Func. Count: 7, Neg. LLF: 131.70040059470978
Iteration: 2, Func. Count: 14, Neg. LLF: 134.13268118008136
Iteration: 3, Func. Count: 21, Neg. LLF: 130.53316014455902
Iteration: 4, Func. Count: 28, Neg. LLF: 130.5005735640417
Iteration: 5, Func. Count: 35, Neg. LLF: 130.25217966645548
Iteration: 6, Func. Count: 41, Neg. LLF: 130.20613448792352
Iteration: 7, Func. Count: 47, Neg. LLF: 130.16263429371818
Iteration: 8, Func. Count: 53, Neg. LLF: 130.1009742520695
Iteration: 9, Func. Count: 59, Neg. LLF: 130.0968813345467
Iteration: 10, Func. Count: 65, Neg. LLF: 130.09666531061163
Iteration: 11, Func. Count: 71, Neg. LLF: 130.0966572615288
Iteration: 12, Func. Count: 77, Neg. LLF: 130.09665669141864
Optimization terminated successfully (Exit mode 0)
Current function value: 130.09665669141864
Iterations: 12
Function evaluations: 77
Gradient evaluations: 12
Iteration: 1, Func. Count: 8, Neg. LLF: 131.3105573011919
Iteration: 2, Func. Count: 16, Neg. LLF: 131.7761248715756
Iteration: 3, Func. Count: 24, Neg. LLF: 130.86168084337348
Iteration: 4, Func. Count: 32, Neg. LLF: 133.12858779636076
Iteration: 5, Func. Count: 40, Neg. LLF: 130.26165552965563
Iteration: 6, Func. Count: 47, Neg. LLF: 130.24607485901535
Iteration: 7, Func. Count: 54, Neg. LLF: 130.19043133747203
Iteration: 8, Func. Count: 61, Neg. LLF: 130.1477415940732
Iteration: 9, Func. Count: 68, Neg. LLF: 130.61230060659133
Iteration: 10, Func. Count: 76, Neg. LLF: 130.08728115670644
Iteration: 11, Func. Count: 83, Neg. LLF: 130.07826797546656
Iteration: 12, Func. Count: 90, Neg. LLF: 130.0542192209584
Iteration: 13, Func. Count: 97, Neg. LLF: 130.03799448951264
Iteration: 14, Func. Count: 104, Neg. LLF: 129.9199980192401
Iteration: 15, Func. Count: 111, Neg. LLF: 129.89769438773695
Iteration: 16, Func. Count: 118, Neg. LLF: 129.8924037672684
Iteration: 17, Func. Count: 125, Neg. LLF: 129.89232161946904
Iteration: 18, Func. Count: 131, Neg. LLF: 129.8923216017219
Optimization terminated successfully (Exit mode 0)
Current function value: 129.89232161946904
Iterations: 18
Function evaluations: 131
Gradient evaluations: 18
Iteration: 1, Func. Count: 9, Neg. LLF: 131.7650819769243
Iteration: 2, Func. Count: 18, Neg. LLF: 131.68359471997545
Iteration: 3, Func. Count: 27, Neg. LLF: 132.78285751554387
Iteration: 4, Func. Count: 36, Neg. LLF: 142.22652158966412
Iteration: 5, Func. Count: 45, Neg. LLF: 129.90386154950923
Iteration: 6, Func. Count: 53, Neg. LLF: 129.8863929431518
Iteration: 7, Func. Count: 61, Neg. LLF: 129.87041673437426
Iteration: 8, Func. Count: 69, Neg. LLF: 129.8676751948014
Iteration: 9, Func. Count: 77, Neg. LLF: 129.86686324754183
Iteration: 10, Func. Count: 85, Neg. LLF: 129.86655420310947
Iteration: 11, Func. Count: 93, Neg. LLF: 129.86599833845875
Iteration: 12, Func. Count: 101, Neg. LLF: 129.8659446601265
Iteration: 13, Func. Count: 109, Neg. LLF: 129.86590296606784
Iteration: 14, Func. Count: 117, Neg. LLF: 129.86590028786674
Iteration: 15, Func. Count: 124, Neg. LLF: 129.8659002878288
Optimization terminated successfully (Exit mode 0)
Current function value: 129.86590028786674
Iterations: 15
Function evaluations: 124
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 131.77104395470386
Iteration: 2, Func. Count: 20, Neg. LLF: 132.3910060197048
Iteration: 3, Func. Count: 30, Neg. LLF: 131.52483848459687
Iteration: 4, Func. Count: 40, Neg. LLF: 141.11334588373273
Iteration: 5, Func. Count: 50, Neg. LLF: 129.87552413445817
Iteration: 6, Func. Count: 59, Neg. LLF: 129.8754070403792
Iteration: 7, Func. Count: 69, Neg. LLF: 129.87128362112546
Iteration: 8, Func. Count: 79, Neg. LLF: 129.86824744209324
Iteration: 9, Func. Count: 88, Neg. LLF: 129.86608188705264
Iteration: 10, Func. Count: 97, Neg. LLF: 129.86595159647507
Iteration: 11, Func. Count: 106, Neg. LLF: 129.8659023843304
Iteration: 12, Func. Count: 115, Neg. LLF: 129.86590056319747
Iteration: 13, Func. Count: 123, Neg. LLF: 129.86590074071123
Optimization terminated successfully (Exit mode 0)
Current function value: 129.86590056319747
Iterations: 13
Function evaluations: 123
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 132.11621102679396
Iteration: 2, Func. Count: 22, Neg. LLF: 132.24744728251704
Iteration: 3, Func. Count: 33, Neg. LLF: 131.7354080091261
Iteration: 4, Func. Count: 44, Neg. LLF: 133.8442010922494
Iteration: 5, Func. Count: 55, Neg. LLF: 129.8798997354717
Iteration: 6, Func. Count: 65, Neg. LLF: 129.94891709017213
Iteration: 7, Func. Count: 76, Neg. LLF: 129.86935987484648
Iteration: 8, Func. Count: 86, Neg. LLF: 129.86746259336374
Iteration: 9, Func. Count: 96, Neg. LLF: 129.8665680551672
Iteration: 10, Func. Count: 106, Neg. LLF: 129.86608626944977
Iteration: 11, Func. Count: 116, Neg. LLF: 129.8659261694432
Iteration: 12, Func. Count: 126, Neg. LLF: 129.86590297271422
Iteration: 13, Func. Count: 136, Neg. LLF: 129.86590036846152
Iteration: 14, Func. Count: 145, Neg. LLF: 129.86590042639648
Optimization terminated successfully (Exit mode 0)
Current function value: 129.86590036846152
Iterations: 14
Function evaluations: 145
Gradient evaluations: 14
Iteration: 1, Func. Count: 8, Neg. LLF: 130.8468373476029
Iteration: 2, Func. Count: 15, Neg. LLF: 130.1805934480166
Iteration: 3, Func. Count: 23, Neg. LLF: 134.81203540982654
Iteration: 4, Func. Count: 31, Neg. LLF: 143.21852559607393
Iteration: 5, Func. Count: 39, Neg. LLF: 154.38135112762674
Iteration: 6, Func. Count: 47, Neg. LLF: 137.95177686565853
Iteration: 7, Func. Count: 55, Neg. LLF: 134.1686509592848
Iteration: 8, Func. Count: 63, Neg. LLF: 127.70385046896874
Iteration: 9, Func. Count: 71, Neg. LLF: 127.2635040441314
Iteration: 10, Func. Count: 78, Neg. LLF: 127.26080831590157
Iteration: 11, Func. Count: 85, Neg. LLF: 127.26049020187855
Iteration: 12, Func. Count: 92, Neg. LLF: 127.26038000054636
Iteration: 13, Func. Count: 99, Neg. LLF: 127.26037356276673
Iteration: 14, Func. Count: 106, Neg. LLF: 127.26036998774916
Iteration: 15, Func. Count: 112, Neg. LLF: 127.26036984739302
Optimization terminated successfully (Exit mode 0)
Current function value: 127.26036998774916
Iterations: 15
Function evaluations: 112
Gradient evaluations: 15
Iteration: 1, Func. Count: 9, Neg. LLF: 133.09682995938482
Iteration: 2, Func. Count: 18, Neg. LLF: 128.51860891860858
Iteration: 3, Func. Count: 26, Neg. LLF: 129.75860416770405
Iteration: 4, Func. Count: 35, Neg. LLF: 130.16260522620863
Iteration: 5, Func. Count: 44, Neg. LLF: 147.4113669963442
Iteration: 6, Func. Count: 53, Neg. LLF: 127.40433893705304
Iteration: 7, Func. Count: 61, Neg. LLF: 127.26347802156818
Iteration: 8, Func. Count: 69, Neg. LLF: 127.26109937899682
Iteration: 9, Func. Count: 77, Neg. LLF: 127.26050316206093
Iteration: 10, Func. Count: 85, Neg. LLF: 127.26037937868062
Iteration: 11, Func. Count: 93, Neg. LLF: 127.26037085429927
Iteration: 12, Func. Count: 101, Neg. LLF: 127.26036998695045
Optimization terminated successfully (Exit mode 0)
Current function value: 127.26036998695045
Iterations: 12
Function evaluations: 101
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 134.11149873629626
Iteration: 2, Func. Count: 20, Neg. LLF: 128.93756922866228
Iteration: 3, Func. Count: 29, Neg. LLF: 128.08913104195847
Iteration: 4, Func. Count: 38, Neg. LLF: 127.69086551631946
Iteration: 5, Func. Count: 47, Neg. LLF: 127.6534894635095
Iteration: 6, Func. Count: 57, Neg. LLF: 130.80089379121128
Iteration: 7, Func. Count: 67, Neg. LLF: 144.17767364471132
Iteration: 8, Func. Count: 77, Neg. LLF: 127.64308711478249
Iteration: 9, Func. Count: 87, Neg. LLF: 127.2360596248772
Iteration: 10, Func. Count: 96, Neg. LLF: 127.2340509354293
Iteration: 11, Func. Count: 105, Neg. LLF: 127.23376283169709
Iteration: 12, Func. Count: 114, Neg. LLF: 127.23375101638923
Iteration: 13, Func. Count: 123, Neg. LLF: 127.23374698689672
Iteration: 14, Func. Count: 131, Neg. LLF: 127.23374697055543
Optimization terminated successfully (Exit mode 0)
Current function value: 127.23374698689672
Iterations: 14
Function evaluations: 131
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 134.01178243706966
Iteration: 2, Func. Count: 22, Neg. LLF: 128.5486723455619
Iteration: 3, Func. Count: 32, Neg. LLF: 128.69330527134832
Iteration: 4, Func. Count: 43, Neg. LLF: 130.76437298349003
Iteration: 5, Func. Count: 54, Neg. LLF: 127.63203298791201
Iteration: 6, Func. Count: 64, Neg. LLF: 127.33622423264802
Iteration: 7, Func. Count: 74, Neg. LLF: 129.15133068250705
Iteration: 8, Func. Count: 86, Neg. LLF: 127.26706304238938
Iteration: 9, Func. Count: 96, Neg. LLF: 127.23549050950682
Iteration: 10, Func. Count: 106, Neg. LLF: 127.23405464008094
Iteration: 11, Func. Count: 116, Neg. LLF: 127.23376820271496
Iteration: 12, Func. Count: 126, Neg. LLF: 127.23374924046351
Iteration: 13, Func. Count: 136, Neg. LLF: 127.23374729056869
Iteration: 14, Func. Count: 145, Neg. LLF: 127.23374749714752
Optimization terminated successfully (Exit mode 0)
Current function value: 127.23374729056869
Iterations: 14
Function evaluations: 145
Gradient evaluations: 14
Iteration: 1, Func. Count: 12, Neg. LLF: 134.04377154374367
Iteration: 2, Func. Count: 24, Neg. LLF: 128.3798473488347
Iteration: 3, Func. Count: 35, Neg. LLF: 128.56428092320567
Iteration: 4, Func. Count: 47, Neg. LLF: 128.04134406125632
Iteration: 5, Func. Count: 59, Neg. LLF: 134.03723465829592
Iteration: 6, Func. Count: 71, Neg. LLF: 127.3735519371534
Iteration: 7, Func. Count: 82, Neg. LLF: 137.25020200850096
Iteration: 8, Func. Count: 95, Neg. LLF: 128.97724865306202
Iteration: 9, Func. Count: 107, Neg. LLF: 127.24331556105933
Iteration: 10, Func. Count: 118, Neg. LLF: 127.23487919153948
Iteration: 11, Func. Count: 129, Neg. LLF: 127.23387809111937
Iteration: 12, Func. Count: 140, Neg. LLF: 127.23376319960241
Iteration: 13, Func. Count: 151, Neg. LLF: 127.23374863226861
Iteration: 14, Func. Count: 162, Neg. LLF: 127.23374716747878
Iteration: 15, Func. Count: 172, Neg. LLF: 127.23374726478865
Optimization terminated successfully (Exit mode 0)
Current function value: 127.23374716747878
Iterations: 15
Function evaluations: 172
Gradient evaluations: 15
Iteration: 1, Func. Count: 9, Neg. LLF: 133.2371882173057
Iteration: 2, Func. Count: 18, Neg. LLF: 128.90971793340137
Iteration: 3, Func. Count: 26, Neg. LLF: 128.58227045358177
Iteration: 4, Func. Count: 34, Neg. LLF: 127.79780064209108
Iteration: 5, Func. Count: 42, Neg. LLF: 670.7910482342348
Iteration: 6, Func. Count: 53, Neg. LLF: 130.52509818439103
Iteration: 7, Func. Count: 63, Neg. LLF: 194.78042049136332
Iteration: 8, Func. Count: 72, Neg. LLF: 127.28863332562666
Iteration: 9, Func. Count: 80, Neg. LLF: 127.16581350629205
Iteration: 10, Func. Count: 88, Neg. LLF: 127.15727029984984
Iteration: 11, Func. Count: 96, Neg. LLF: 127.1558070981951
Iteration: 12, Func. Count: 104, Neg. LLF: 127.15538713618224
Iteration: 13, Func. Count: 112, Neg. LLF: 127.15529743061033
Iteration: 14, Func. Count: 120, Neg. LLF: 127.15529504605409
Iteration: 15, Func. Count: 128, Neg. LLF: 127.1552943374067
Optimization terminated successfully (Exit mode 0)
Current function value: 127.1552943374067
Iterations: 15
Function evaluations: 128
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 134.5275700193698
Iteration: 2, Func. Count: 20, Neg. LLF: 129.89816255179528
Iteration: 3, Func. Count: 29, Neg. LLF: 137.4006471607143
Iteration: 4, Func. Count: 39, Neg. LLF: 138.86787351286557
Iteration: 5, Func. Count: 49, Neg. LLF: 127.915160268711
Iteration: 6, Func. Count: 58, Neg. LLF: 133.5189259477061
Iteration: 7, Func. Count: 68, Neg. LLF: 163.24167265754778
Iteration: 8, Func. Count: 78, Neg. LLF: 127.45640104180501
Iteration: 9, Func. Count: 87, Neg. LLF: 127.17567981654118
Iteration: 10, Func. Count: 96, Neg. LLF: 127.16133575988114
Iteration: 11, Func. Count: 105, Neg. LLF: 127.15926693055187
Iteration: 12, Func. Count: 114, Neg. LLF: 127.1565607767958
Iteration: 13, Func. Count: 123, Neg. LLF: 127.15534581527518
Iteration: 14, Func. Count: 132, Neg. LLF: 127.15530145713387
Iteration: 15, Func. Count: 141, Neg. LLF: 127.15529442460839
Iteration: 16, Func. Count: 149, Neg. LLF: 127.15529457682192
Optimization terminated successfully (Exit mode 0)
Current function value: 127.15529442460839
Iterations: 16
Function evaluations: 149
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 134.27743330094168
Iteration: 2, Func. Count: 22, Neg. LLF: 130.29937110536633
Iteration: 3, Func. Count: 32, Neg. LLF: 137.5321349767814
Iteration: 4, Func. Count: 43, Neg. LLF: 143.19832816042168
Iteration: 5, Func. Count: 54, Neg. LLF: 127.8041213992599
Iteration: 6, Func. Count: 64, Neg. LLF: 149.5673448028101
Iteration: 7, Func. Count: 75, Neg. LLF: 134.5136923598176
Iteration: 8, Func. Count: 86, Neg. LLF: 127.99551238234626
Iteration: 9, Func. Count: 97, Neg. LLF: 127.24760709607334
Iteration: 10, Func. Count: 107, Neg. LLF: 127.16081264285519
Iteration: 11, Func. Count: 117, Neg. LLF: 127.15750810056356
Iteration: 12, Func. Count: 127, Neg. LLF: 127.15591190751464
Iteration: 13, Func. Count: 137, Neg. LLF: 127.15543123647264
Iteration: 14, Func. Count: 147, Neg. LLF: 127.15529529050822
Iteration: 15, Func. Count: 157, Neg. LLF: 127.15529409196478
Iteration: 16, Func. Count: 166, Neg. LLF: 127.155294149959
Optimization terminated successfully (Exit mode 0)
Current function value: 127.15529409196478
Iterations: 16
Function evaluations: 166
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 134.33805867276635
Iteration: 2, Func. Count: 25, Neg. LLF: 131.16774868221316
Iteration: 3, Func. Count: 36, Neg. LLF: 128.50937086492337
Iteration: 4, Func. Count: 47, Neg. LLF: 134.2572590241856
Iteration: 5, Func. Count: 59, Neg. LLF: 133.90223281829446
Iteration: 6, Func. Count: 71, Neg. LLF: 131.99848584542409
Iteration: 7, Func. Count: 83, Neg. LLF: 128.22093939267478
Iteration: 8, Func. Count: 95, Neg. LLF: 127.3750891121272
Iteration: 9, Func. Count: 107, Neg. LLF: 127.16589091646925
Iteration: 10, Func. Count: 118, Neg. LLF: 127.16369262522491
Iteration: 11, Func. Count: 129, Neg. LLF: 127.15803830664045
Iteration: 12, Func. Count: 140, Neg. LLF: 127.15727947490942
Iteration: 13, Func. Count: 151, Neg. LLF: 127.15555767371556
Iteration: 14, Func. Count: 162, Neg. LLF: 127.15535835362135
Iteration: 15, Func. Count: 173, Neg. LLF: 127.15530022720075
Iteration: 16, Func. Count: 184, Neg. LLF: 127.15529411021868
Iteration: 17, Func. Count: 194, Neg. LLF: 127.1552943137001
Optimization terminated successfully (Exit mode 0)
Current function value: 127.15529411021868
Iterations: 17
Function evaluations: 194
Gradient evaluations: 17
Iteration: 1, Func. Count: 13, Neg. LLF: 134.34176697103769
Iteration: 2, Func. Count: 27, Neg. LLF: 129.9975216371576
Iteration: 3, Func. Count: 39, Neg. LLF: 128.09424101934889
Iteration: 4, Func. Count: 51, Neg. LLF: 132.87760110066657
Iteration: 5, Func. Count: 66, Neg. LLF: 130.5211919143231
Iteration: 6, Func. Count: 79, Neg. LLF: 127.59018241933332
Iteration: 7, Func. Count: 91, Neg. LLF: 127.2536696747069
Iteration: 8, Func. Count: 103, Neg. LLF: 127.19179109574294
Iteration: 9, Func. Count: 115, Neg. LLF: 127.18878063106118
Iteration: 10, Func. Count: 128, Neg. LLF: 127.1627432626504
Iteration: 11, Func. Count: 141, Neg. LLF: 127.15534193143564
Iteration: 12, Func. Count: 153, Neg. LLF: 127.15529739960233
Iteration: 13, Func. Count: 165, Neg. LLF: 127.15529416725741
Iteration: 14, Func. Count: 176, Neg. LLF: 127.15529426023186
Optimization terminated successfully (Exit mode 0)
Current function value: 127.15529416725741
Iterations: 14
Function evaluations: 176
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 133.19920174757831
Iteration: 2, Func. Count: 20, Neg. LLF: 131.69554664759895
Iteration: 3, Func. Count: 30, Neg. LLF: 131.62694028956574
Iteration: 4, Func. Count: 40, Neg. LLF: 130.69833929118883
Iteration: 5, Func. Count: 50, Neg. LLF: 127.82612899295663
Iteration: 6, Func. Count: 59, Neg. LLF: 245.1357688402568
Iteration: 7, Func. Count: 69, Neg. LLF: 166.627750644312
Iteration: 8, Func. Count: 79, Neg. LLF: 127.22952729656018
Iteration: 9, Func. Count: 88, Neg. LLF: 127.16505481970744
Iteration: 10, Func. Count: 97, Neg. LLF: 127.15680294699553
Iteration: 11, Func. Count: 106, Neg. LLF: 127.15621891405371
Iteration: 12, Func. Count: 115, Neg. LLF: 127.15557170771754
Iteration: 13, Func. Count: 124, Neg. LLF: 127.15531313843034
Iteration: 14, Func. Count: 133, Neg. LLF: 127.15529486168491
Iteration: 15, Func. Count: 142, Neg. LLF: 127.15529410145798
Optimization terminated successfully (Exit mode 0)
Current function value: 127.15529410145798
Iterations: 15
Function evaluations: 142
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 134.33388690737047
Iteration: 2, Func. Count: 22, Neg. LLF: 129.09970678796438
Iteration: 3, Func. Count: 32, Neg. LLF: 132.91402683737454
Iteration: 4, Func. Count: 44, Neg. LLF: 138.09092892649514
Iteration: 5, Func. Count: 55, Neg. LLF: 127.97777760806007
Iteration: 6, Func. Count: 65, Neg. LLF: 127.49776037580216
Iteration: 7, Func. Count: 75, Neg. LLF: 127.57664741678282
Iteration: 8, Func. Count: 86, Neg. LLF: 134.3281071108169
Iteration: 9, Func. Count: 97, Neg. LLF: 127.1958999373831
Iteration: 10, Func. Count: 107, Neg. LLF: 127.3584133835583
Iteration: 11, Func. Count: 118, Neg. LLF: 127.16386846244555
Iteration: 12, Func. Count: 128, Neg. LLF: 127.15563928579793
Iteration: 13, Func. Count: 138, Neg. LLF: 127.15533895512269
Iteration: 14, Func. Count: 148, Neg. LLF: 127.1552990405174
Iteration: 15, Func. Count: 158, Neg. LLF: 127.15529425285499
Iteration: 16, Func. Count: 167, Neg. LLF: 127.15529440507154
Optimization terminated successfully (Exit mode 0)
Current function value: 127.15529425285499
Iterations: 16
Function evaluations: 167
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 134.3517716357186
Iteration: 2, Func. Count: 24, Neg. LLF: 131.24212121894135
Iteration: 3, Func. Count: 35, Neg. LLF: 133.22388118851205
Iteration: 4, Func. Count: 47, Neg. LLF: 144.53339558247623
Iteration: 5, Func. Count: 59, Neg. LLF: 138.24992835859234
Iteration: 6, Func. Count: 71, Neg. LLF: 1359360.1352564734
Iteration: 7, Func. Count: 83, Neg. LLF: 131.8139483408517
Iteration: 8, Func. Count: 95, Neg. LLF: 127.81490624651718
Iteration: 9, Func. Count: 107, Neg. LLF: 127.33866420841491
Iteration: 10, Func. Count: 119, Neg. LLF: 130.64362888849544
Iteration: 11, Func. Count: 131, Neg. LLF: 127.17375892675744
Iteration: 12, Func. Count: 142, Neg. LLF: 127.16586511781149
Iteration: 13, Func. Count: 153, Neg. LLF: 127.1570927668351
Iteration: 14, Func. Count: 164, Neg. LLF: 127.15536312247126
Iteration: 15, Func. Count: 175, Neg. LLF: 127.15529594474812
Iteration: 16, Func. Count: 186, Neg. LLF: 127.15529409936948
Iteration: 17, Func. Count: 196, Neg. LLF: 127.15529415737622
Optimization terminated successfully (Exit mode 0)
Current function value: 127.15529409936948
Iterations: 17
Function evaluations: 196
Gradient evaluations: 17
Iteration: 1, Func. Count: 13, Neg. LLF: 134.325032251703
Iteration: 2, Func. Count: 27, Neg. LLF: 131.1497678613168
Iteration: 3, Func. Count: 39, Neg. LLF: 128.51143467464914
Iteration: 4, Func. Count: 51, Neg. LLF: 133.96449768978445
Iteration: 5, Func. Count: 64, Neg. LLF: 133.7840759288298
Iteration: 6, Func. Count: 77, Neg. LLF: 128.7135172116279
Iteration: 7, Func. Count: 90, Neg. LLF: 127.6782645921313
Iteration: 8, Func. Count: 103, Neg. LLF: 127.22605819581567
Iteration: 9, Func. Count: 115, Neg. LLF: 127.17447792042273
Iteration: 10, Func. Count: 127, Neg. LLF: 127.16387539671393
Iteration: 11, Func. Count: 139, Neg. LLF: 127.15775878008618
Iteration: 12, Func. Count: 151, Neg. LLF: 127.15655687476813
Iteration: 13, Func. Count: 163, Neg. LLF: 127.15576290743054
Iteration: 14, Func. Count: 175, Neg. LLF: 127.15536625219823
Iteration: 15, Func. Count: 187, Neg. LLF: 127.15529908718452
Iteration: 16, Func. Count: 199, Neg. LLF: 127.15529449401848
Iteration: 17, Func. Count: 210, Neg. LLF: 127.15529469745731
Optimization terminated successfully (Exit mode 0)
Current function value: 127.15529449401848
Iterations: 17
Function evaluations: 210
Gradient evaluations: 17
Iteration: 1, Func. Count: 14, Neg. LLF: 134.3301463202478
Iteration: 2, Func. Count: 29, Neg. LLF: 129.99756666921218
Iteration: 3, Func. Count: 42, Neg. LLF: 128.09495971546608
Iteration: 4, Func. Count: 55, Neg. LLF: 132.82469775956832
Iteration: 5, Func. Count: 71, Neg. LLF: 130.53075334824015
Iteration: 6, Func. Count: 85, Neg. LLF: 127.59331248896933
Iteration: 7, Func. Count: 98, Neg. LLF: 127.25395006077721
Iteration: 8, Func. Count: 111, Neg. LLF: 127.19093104572977
Iteration: 9, Func. Count: 124, Neg. LLF: 127.18750966505871
Iteration: 10, Func. Count: 138, Neg. LLF: 127.1621367462253
Iteration: 11, Func. Count: 152, Neg. LLF: 127.15533800721342
Iteration: 12, Func. Count: 165, Neg. LLF: 127.15529689781373
Iteration: 13, Func. Count: 178, Neg. LLF: 127.15529415356988
Iteration: 14, Func. Count: 190, Neg. LLF: 127.15529424654294
Optimization terminated successfully (Exit mode 0)
Current function value: 127.15529415356988
Iterations: 14
Function evaluations: 190
Gradient evaluations: 14
Iteration: 1, Func. Count: 7, Neg. LLF: 131.6715431169468
Iteration: 2, Func. Count: 14, Neg. LLF: 135.8966591977863
Iteration: 3, Func. Count: 21, Neg. LLF: 131.35496705704912
Iteration: 4, Func. Count: 28, Neg. LLF: 131.78959253224775
Iteration: 5, Func. Count: 35, Neg. LLF: 130.0824732180807
Iteration: 6, Func. Count: 41, Neg. LLF: 130.07909673203596
Iteration: 7, Func. Count: 47, Neg. LLF: 130.07875163857216
Iteration: 8, Func. Count: 53, Neg. LLF: 130.07800876926117
Iteration: 9, Func. Count: 59, Neg. LLF: 130.07754187438664
Iteration: 10, Func. Count: 65, Neg. LLF: 130.07745455921244
Iteration: 11, Func. Count: 71, Neg. LLF: 130.0774497318067
Iteration: 12, Func. Count: 76, Neg. LLF: 130.0774497318275
Optimization terminated successfully (Exit mode 0)
Current function value: 130.0774497318067
Iterations: 12
Function evaluations: 76
Gradient evaluations: 12
Iteration: 1, Func. Count: 8, Neg. LLF: 130.93808639145348
Iteration: 2, Func. Count: 15, Neg. LLF: 133.76016232771195
Iteration: 3, Func. Count: 23, Neg. LLF: 146.58945340180944
Iteration: 4, Func. Count: 31, Neg. LLF: 147.53766027301066
Iteration: 5, Func. Count: 39, Neg. LLF: 130.10733516265893
Iteration: 6, Func. Count: 46, Neg. LLF: 130.09109959215488
Iteration: 7, Func. Count: 53, Neg. LLF: 130.07942347759172
Iteration: 8, Func. Count: 60, Neg. LLF: 130.077504062306
Iteration: 9, Func. Count: 67, Neg. LLF: 130.07745601473056
Iteration: 10, Func. Count: 74, Neg. LLF: 130.0774531870542
Iteration: 11, Func. Count: 81, Neg. LLF: 130.0774519367411
Iteration: 12, Func. Count: 88, Neg. LLF: 130.07744961783715
Iteration: 13, Func. Count: 94, Neg. LLF: 130.07744964523826
Optimization terminated successfully (Exit mode 0)
Current function value: 130.07744961783715
Iterations: 13
Function evaluations: 94
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 130.95117413165656
Iteration: 2, Func. Count: 17, Neg. LLF: 134.01886682485335
Iteration: 3, Func. Count: 27, Neg. LLF: 141.90643583556704
Iteration: 4, Func. Count: 36, Neg. LLF: 140.80534896649223
Iteration: 5, Func. Count: 45, Neg. LLF: 130.148459472006
Iteration: 6, Func. Count: 53, Neg. LLF: 130.09107948131103
Iteration: 7, Func. Count: 61, Neg. LLF: 130.1209894260585
Iteration: 8, Func. Count: 70, Neg. LLF: 130.07912195273434
Iteration: 9, Func. Count: 78, Neg. LLF: 130.07177363512693
Iteration: 10, Func. Count: 86, Neg. LLF: 130.06903686740412
Iteration: 11, Func. Count: 94, Neg. LLF: 130.0607452869922
Iteration: 12, Func. Count: 102, Neg. LLF: 130.05961621031577
Iteration: 13, Func. Count: 110, Neg. LLF: 130.05901560882324
Iteration: 14, Func. Count: 118, Neg. LLF: 130.05885250830997
Iteration: 15, Func. Count: 126, Neg. LLF: 130.05884911033326
Iteration: 16, Func. Count: 133, Neg. LLF: 130.05884911031532
Optimization terminated successfully (Exit mode 0)
Current function value: 130.05884911033326
Iterations: 16
Function evaluations: 133
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 130.95869375105624
Iteration: 2, Func. Count: 19, Neg. LLF: 132.19596300918505
Iteration: 3, Func. Count: 29, Neg. LLF: 140.23995221869606
Iteration: 4, Func. Count: 39, Neg. LLF: 139.73636412096326
Iteration: 5, Func. Count: 49, Neg. LLF: 130.28781495759316
Iteration: 6, Func. Count: 59, Neg. LLF: 130.10808957591505
Iteration: 7, Func. Count: 68, Neg. LLF: 130.07750918451063
Iteration: 8, Func. Count: 77, Neg. LLF: 130.0730076519965
Iteration: 9, Func. Count: 86, Neg. LLF: 130.06232824352674
Iteration: 10, Func. Count: 95, Neg. LLF: 130.06161155135604
Iteration: 11, Func. Count: 104, Neg. LLF: 130.05984448045598
Iteration: 12, Func. Count: 113, Neg. LLF: 130.05904500226134
Iteration: 13, Func. Count: 122, Neg. LLF: 130.05885953696622
Iteration: 14, Func. Count: 131, Neg. LLF: 130.05884912563275
Iteration: 15, Func. Count: 139, Neg. LLF: 130.05884931779204
Optimization terminated successfully (Exit mode 0)
Current function value: 130.05884912563275
Iterations: 15
Function evaluations: 139
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 130.96254342456268
Iteration: 2, Func. Count: 21, Neg. LLF: 132.48856903967524
Iteration: 3, Func. Count: 32, Neg. LLF: 140.27384693810907
Iteration: 4, Func. Count: 43, Neg. LLF: 140.12309624366378
Iteration: 5, Func. Count: 54, Neg. LLF: 130.28383251373782
Iteration: 6, Func. Count: 65, Neg. LLF: 130.1117488225251
Iteration: 7, Func. Count: 75, Neg. LLF: 130.08473652230418
Iteration: 8, Func. Count: 85, Neg. LLF: 130.08078272179858
Iteration: 9, Func. Count: 96, Neg. LLF: 130.06175479422373
Iteration: 10, Func. Count: 106, Neg. LLF: 130.06117121307116
Iteration: 11, Func. Count: 116, Neg. LLF: 130.05951834236114
Iteration: 12, Func. Count: 126, Neg. LLF: 130.05894992671637
Iteration: 13, Func. Count: 136, Neg. LLF: 130.0588606020774
Iteration: 14, Func. Count: 146, Neg. LLF: 130.05884911695657
Iteration: 15, Func. Count: 155, Neg. LLF: 130.05884915390283
Optimization terminated successfully (Exit mode 0)
Current function value: 130.05884911695657
Iterations: 15
Function evaluations: 155
Gradient evaluations: 15
Iteration: 1, Func. Count: 8, Neg. LLF: 132.4798071308881
Iteration: 2, Func. Count: 16, Neg. LLF: 131.69707047554925
Iteration: 3, Func. Count: 24, Neg. LLF: 132.1475182701544
Iteration: 4, Func. Count: 32, Neg. LLF: 130.257817599667
Iteration: 5, Func. Count: 40, Neg. LLF: 129.9520152998933
Iteration: 6, Func. Count: 47, Neg. LLF: 129.9455260246356
Iteration: 7, Func. Count: 54, Neg. LLF: 129.93910855407472
Iteration: 8, Func. Count: 61, Neg. LLF: 129.93365534180282
Iteration: 9, Func. Count: 68, Neg. LLF: 129.9335178817505
Iteration: 10, Func. Count: 75, Neg. LLF: 129.93337369785442
Iteration: 11, Func. Count: 82, Neg. LLF: 129.93337297509277
Optimization terminated successfully (Exit mode 0)
Current function value: 129.93337297509277
Iterations: 11
Function evaluations: 82
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 131.8941261112853
Iteration: 2, Func. Count: 18, Neg. LLF: 131.56798537113755
Iteration: 3, Func. Count: 27, Neg. LLF: 130.70246057635146
Iteration: 4, Func. Count: 36, Neg. LLF: 134.94278705373088
Iteration: 5, Func. Count: 45, Neg. LLF: 130.03552571342271
Iteration: 6, Func. Count: 53, Neg. LLF: 129.99859090971677
Iteration: 7, Func. Count: 61, Neg. LLF: 129.98733285011053
Iteration: 8, Func. Count: 69, Neg. LLF: 129.96720880258385
Iteration: 9, Func. Count: 77, Neg. LLF: 129.95312333745406
Iteration: 10, Func. Count: 85, Neg. LLF: 129.9374859793609
Iteration: 11, Func. Count: 93, Neg. LLF: 129.9337618901495
Iteration: 12, Func. Count: 101, Neg. LLF: 129.9333746752673
Iteration: 13, Func. Count: 109, Neg. LLF: 129.93337301132175
Iteration: 14, Func. Count: 116, Neg. LLF: 129.93337311442477
Optimization terminated successfully (Exit mode 0)
Current function value: 129.93337301132175
Iterations: 14
Function evaluations: 116
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 132.58499438179967
Iteration: 2, Func. Count: 20, Neg. LLF: 131.54572629949408
Iteration: 3, Func. Count: 30, Neg. LLF: 130.96909323283145
Iteration: 4, Func. Count: 40, Neg. LLF: 151.31323523353606
Iteration: 5, Func. Count: 51, Neg. LLF: 130.25474398913624
Iteration: 6, Func. Count: 61, Neg. LLF: 129.93588811976306
Iteration: 7, Func. Count: 70, Neg. LLF: 129.8916454077075
Iteration: 8, Func. Count: 79, Neg. LLF: 129.8698660594216
Iteration: 9, Func. Count: 88, Neg. LLF: 129.86741893676762
Iteration: 10, Func. Count: 97, Neg. LLF: 129.86673472913048
Iteration: 11, Func. Count: 106, Neg. LLF: 129.86627159045068
Iteration: 12, Func. Count: 115, Neg. LLF: 129.86601226808608
Iteration: 13, Func. Count: 124, Neg. LLF: 129.86590792447657
Iteration: 14, Func. Count: 133, Neg. LLF: 129.86590033617438
Iteration: 15, Func. Count: 141, Neg. LLF: 129.86590033621948
Optimization terminated successfully (Exit mode 0)
Current function value: 129.86590033617438
Iterations: 15
Function evaluations: 141
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 132.56237122730494
Iteration: 2, Func. Count: 22, Neg. LLF: 131.67956507603517
Iteration: 3, Func. Count: 33, Neg. LLF: 130.67725791863708
Iteration: 4, Func. Count: 44, Neg. LLF: 148.580670178406
Iteration: 5, Func. Count: 55, Neg. LLF: 130.6489023846061
Iteration: 6, Func. Count: 66, Neg. LLF: 129.94461164905226
Iteration: 7, Func. Count: 76, Neg. LLF: 129.888199439063
Iteration: 8, Func. Count: 86, Neg. LLF: 129.8713942111546
Iteration: 9, Func. Count: 96, Neg. LLF: 129.86731617658737
Iteration: 10, Func. Count: 106, Neg. LLF: 129.86673462381998
Iteration: 11, Func. Count: 116, Neg. LLF: 129.8663251557902
Iteration: 12, Func. Count: 126, Neg. LLF: 129.86595324262586
Iteration: 13, Func. Count: 136, Neg. LLF: 129.86590313339326
Iteration: 14, Func. Count: 146, Neg. LLF: 129.86590017343906
Iteration: 15, Func. Count: 155, Neg. LLF: 129.865900350969
Optimization terminated successfully (Exit mode 0)
Current function value: 129.86590017343906
Iterations: 15
Function evaluations: 155
Gradient evaluations: 15
Iteration: 1, Func. Count: 12, Neg. LLF: 132.9360041365837
Iteration: 2, Func. Count: 24, Neg. LLF: 131.52055189815974
Iteration: 3, Func. Count: 36, Neg. LLF: 130.63562970705695
Iteration: 4, Func. Count: 48, Neg. LLF: 147.27123173522568
Iteration: 5, Func. Count: 60, Neg. LLF: 131.57391909337048
Iteration: 6, Func. Count: 72, Neg. LLF: 130.0617079652489
Iteration: 7, Func. Count: 83, Neg. LLF: 129.93441046826405
Iteration: 8, Func. Count: 94, Neg. LLF: 130.05944105001268
Iteration: 9, Func. Count: 106, Neg. LLF: 129.87689223577678
Iteration: 10, Func. Count: 117, Neg. LLF: 129.8674394908677
Iteration: 11, Func. Count: 128, Neg. LLF: 129.86680475782867
Iteration: 12, Func. Count: 139, Neg. LLF: 129.86645439664187
Iteration: 13, Func. Count: 150, Neg. LLF: 129.86591721862334
Iteration: 14, Func. Count: 161, Neg. LLF: 129.865900962212
Iteration: 15, Func. Count: 172, Neg. LLF: 129.86590013945
Optimization terminated successfully (Exit mode 0)
Current function value: 129.86590013945
Iterations: 15
Function evaluations: 172
Gradient evaluations: 15
Iteration: 1, Func. Count: 9, Neg. LLF: 133.14840093454765
Iteration: 2, Func. Count: 18, Neg. LLF: 129.09999100729823
Iteration: 3, Func. Count: 26, Neg. LLF: 131.42858145954077
Iteration: 4, Func. Count: 35, Neg. LLF: 127.91413622377166
Iteration: 5, Func. Count: 43, Neg. LLF: 142.91940256642224
Iteration: 6, Func. Count: 52, Neg. LLF: 182.84778302123792
Iteration: 7, Func. Count: 61, Neg. LLF: 127.68558364228058
Iteration: 8, Func. Count: 70, Neg. LLF: 127.22860752996388
Iteration: 9, Func. Count: 78, Neg. LLF: 127.28004058492404
Iteration: 10, Func. Count: 87, Neg. LLF: 127.24890590679784
Iteration: 11, Func. Count: 96, Neg. LLF: 127.21342898965143
Iteration: 12, Func. Count: 104, Neg. LLF: 127.21326155197052
Iteration: 13, Func. Count: 112, Neg. LLF: 127.21326109221518
Optimization terminated successfully (Exit mode 0)
Current function value: 127.21326109221518
Iterations: 13
Function evaluations: 112
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 134.41050991508033
Iteration: 2, Func. Count: 21, Neg. LLF: 131.41089902229433
Iteration: 3, Func. Count: 30, Neg. LLF: 128.57987855876124
Iteration: 4, Func. Count: 39, Neg. LLF: 129.97867850092786
Iteration: 5, Func. Count: 49, Neg. LLF: 130.6602045952697
Iteration: 6, Func. Count: 59, Neg. LLF: 158.45418702920455
Iteration: 7, Func. Count: 70, Neg. LLF: 128.2235873282186
Iteration: 8, Func. Count: 80, Neg. LLF: 127.3446754366009
Iteration: 9, Func. Count: 89, Neg. LLF: 127.25112790078744
Iteration: 10, Func. Count: 98, Neg. LLF: 127.23164407742568
Iteration: 11, Func. Count: 107, Neg. LLF: 127.21758584569717
Iteration: 12, Func. Count: 116, Neg. LLF: 127.21550040833618
Iteration: 13, Func. Count: 125, Neg. LLF: 127.21358934564432
Iteration: 14, Func. Count: 134, Neg. LLF: 127.21330595710452
Iteration: 15, Func. Count: 143, Neg. LLF: 127.21326419988794
Iteration: 16, Func. Count: 152, Neg. LLF: 127.21326127043443
Iteration: 17, Func. Count: 160, Neg. LLF: 127.21326142229852
Optimization terminated successfully (Exit mode 0)
Current function value: 127.21326127043443
Iterations: 17
Function evaluations: 160
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 134.35464964241055
Iteration: 2, Func. Count: 22, Neg. LLF: 131.24447552362568
Iteration: 3, Func. Count: 32, Neg. LLF: 133.26223559682887
Iteration: 4, Func. Count: 43, Neg. LLF: 144.9387685320348
Iteration: 5, Func. Count: 54, Neg. LLF: 138.61050967092444
Iteration: 6, Func. Count: 65, Neg. LLF: 154.1048154382333
Iteration: 7, Func. Count: 76, Neg. LLF: 129.77169249165334
Iteration: 8, Func. Count: 87, Neg. LLF: 127.57873787215328
Iteration: 9, Func. Count: 98, Neg. LLF: 566.0416816955908
Iteration: 10, Func. Count: 110, Neg. LLF: 127.2530643057081
Iteration: 11, Func. Count: 120, Neg. LLF: 127.23463215173788
Iteration: 12, Func. Count: 130, Neg. LLF: 127.22420409526266
Iteration: 13, Func. Count: 140, Neg. LLF: 127.21333578148314
Iteration: 14, Func. Count: 150, Neg. LLF: 127.21326233114631
Iteration: 15, Func. Count: 160, Neg. LLF: 127.21326112509789
Iteration: 16, Func. Count: 169, Neg. LLF: 127.21326113530786
Optimization terminated successfully (Exit mode 0)
Current function value: 127.21326112509789
Iterations: 16
Function evaluations: 169
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 134.33111829913472
Iteration: 2, Func. Count: 25, Neg. LLF: 131.11011468370123
Iteration: 3, Func. Count: 36, Neg. LLF: 128.51487557798822
Iteration: 4, Func. Count: 47, Neg. LLF: 131.21293215922165
Iteration: 5, Func. Count: 59, Neg. LLF: 200.86437933898537
Iteration: 6, Func. Count: 72, Neg. LLF: 133.2378374006135
Iteration: 7, Func. Count: 84, Neg. LLF: 128.3648717920853
Iteration: 8, Func. Count: 96, Neg. LLF: 127.34144666152115
Iteration: 9, Func. Count: 107, Neg. LLF: 127.2642863447229
Iteration: 10, Func. Count: 118, Neg. LLF: 127.25765912865201
Iteration: 11, Func. Count: 130, Neg. LLF: 127.22165160135842
Iteration: 12, Func. Count: 141, Neg. LLF: 127.21588774034505
Iteration: 13, Func. Count: 152, Neg. LLF: 127.21438849219912
Iteration: 14, Func. Count: 163, Neg. LLF: 127.21361280199493
Iteration: 15, Func. Count: 174, Neg. LLF: 127.21327307364884
Iteration: 16, Func. Count: 185, Neg. LLF: 127.21326174611727
Iteration: 17, Func. Count: 196, Neg. LLF: 127.21326108446497
Optimization terminated successfully (Exit mode 0)
Current function value: 127.21326108446497
Iterations: 17
Function evaluations: 196
Gradient evaluations: 17
Iteration: 1, Func. Count: 13, Neg. LLF: 134.33416251931095
Iteration: 2, Func. Count: 27, Neg. LLF: 129.98374285354927
Iteration: 3, Func. Count: 39, Neg. LLF: 128.09061155775595
Iteration: 4, Func. Count: 51, Neg. LLF: 129.66915691127596
Iteration: 5, Func. Count: 64, Neg. LLF: 130.7810765406897
Iteration: 6, Func. Count: 78, Neg. LLF: 16067.290868599339
Iteration: 7, Func. Count: 91, Neg. LLF: 127.40981561083503
Iteration: 8, Func. Count: 103, Neg. LLF: 127.28451743307951
Iteration: 9, Func. Count: 115, Neg. LLF: 127.24052150937527
Iteration: 10, Func. Count: 127, Neg. LLF: 127.2207311238328
Iteration: 11, Func. Count: 139, Neg. LLF: 127.21481914794752
Iteration: 12, Func. Count: 151, Neg. LLF: 127.21341757831529
Iteration: 13, Func. Count: 163, Neg. LLF: 127.21328159172899
Iteration: 14, Func. Count: 175, Neg. LLF: 127.21326193535809
Iteration: 15, Func. Count: 187, Neg. LLF: 127.21326114995193
Optimization terminated successfully (Exit mode 0)
Current function value: 127.21326114995193
Iterations: 15
Function evaluations: 187
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 133.22362732114362
Iteration: 2, Func. Count: 20, Neg. LLF: 129.2548155641636
Iteration: 3, Func. Count: 29, Neg. LLF: 132.17748715115968
Iteration: 4, Func. Count: 39, Neg. LLF: 128.02393179792918
Iteration: 5, Func. Count: 48, Neg. LLF: 128.01980370111275
Iteration: 6, Func. Count: 58, Neg. LLF: 302.3397792708913
Iteration: 7, Func. Count: 68, Neg. LLF: 127.16893095613334
Iteration: 8, Func. Count: 77, Neg. LLF: 127.19088645882353
Iteration: 9, Func. Count: 87, Neg. LLF: 127.15685421652724
Iteration: 10, Func. Count: 96, Neg. LLF: 127.15538460156571
Iteration: 11, Func. Count: 105, Neg. LLF: 127.15530794355476
Iteration: 12, Func. Count: 114, Neg. LLF: 127.1552955038067
Iteration: 13, Func. Count: 123, Neg. LLF: 127.15529410281263
Iteration: 14, Func. Count: 131, Neg. LLF: 127.15529409457955
Optimization terminated successfully (Exit mode 0)
Current function value: 127.15529410281263
Iterations: 14
Function evaluations: 131
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 134.42414636261398
Iteration: 2, Func. Count: 23, Neg. LLF: 131.4103923692955
Iteration: 3, Func. Count: 33, Neg. LLF: 128.57835159098872
Iteration: 4, Func. Count: 43, Neg. LLF: 135.40544037607935
Iteration: 5, Func. Count: 55, Neg. LLF: 129.7502547286497
Iteration: 6, Func. Count: 66, Neg. LLF: 127.67990049771598
Iteration: 7, Func. Count: 76, Neg. LLF: 201.3438616918393
Iteration: 8, Func. Count: 88, Neg. LLF: 129.27262227793116
Iteration: 9, Func. Count: 99, Neg. LLF: 127.19303765703827
Iteration: 10, Func. Count: 109, Neg. LLF: 127.17446478295857
Iteration: 11, Func. Count: 119, Neg. LLF: 127.16418755764009
Iteration: 12, Func. Count: 129, Neg. LLF: 127.15739756913877
Iteration: 13, Func. Count: 139, Neg. LLF: 127.15556408636928
Iteration: 14, Func. Count: 149, Neg. LLF: 127.1553614899506
Iteration: 15, Func. Count: 159, Neg. LLF: 127.15532090257773
Iteration: 16, Func. Count: 169, Neg. LLF: 127.15531120952345
Iteration: 17, Func. Count: 179, Neg. LLF: 127.15530183343088
Iteration: 18, Func. Count: 189, Neg. LLF: 127.15529595814641
Iteration: 19, Func. Count: 199, Neg. LLF: 127.15529424501558
Iteration: 20, Func. Count: 208, Neg. LLF: 127.15529439723113
Optimization terminated successfully (Exit mode 0)
Current function value: 127.15529424501558
Iterations: 20
Function evaluations: 208
Gradient evaluations: 20
Iteration: 1, Func. Count: 12, Neg. LLF: 134.3662980150565
Iteration: 2, Func. Count: 24, Neg. LLF: 131.25801671611342
Iteration: 3, Func. Count: 35, Neg. LLF: 133.06677609184217
Iteration: 4, Func. Count: 47, Neg. LLF: 143.48257628387975
Iteration: 5, Func. Count: 59, Neg. LLF: 136.94714262303526
Iteration: 6, Func. Count: 71, Neg. LLF: 1390094.3927697926
Iteration: 7, Func. Count: 83, Neg. LLF: 132.01400369002567
Iteration: 8, Func. Count: 95, Neg. LLF: 127.92671556610362
Iteration: 9, Func. Count: 107, Neg. LLF: 127.33876993640754
Iteration: 10, Func. Count: 119, Neg. LLF: 132.5355929044229
Iteration: 11, Func. Count: 131, Neg. LLF: 127.17451855240257
Iteration: 12, Func. Count: 142, Neg. LLF: 127.16616298810733
Iteration: 13, Func. Count: 153, Neg. LLF: 127.15721764048406
Iteration: 14, Func. Count: 164, Neg. LLF: 127.15535564894789
Iteration: 15, Func. Count: 175, Neg. LLF: 127.15529585349431
Iteration: 16, Func. Count: 186, Neg. LLF: 127.15529409959765
Iteration: 17, Func. Count: 196, Neg. LLF: 127.155294157599
Optimization terminated successfully (Exit mode 0)
Current function value: 127.15529409959765
Iterations: 17
Function evaluations: 196
Gradient evaluations: 17
Iteration: 1, Func. Count: 13, Neg. LLF: 134.34304676567632
Iteration: 2, Func. Count: 27, Neg. LLF: 131.3350124751557
Iteration: 3, Func. Count: 39, Neg. LLF: 128.50348676768684
Iteration: 4, Func. Count: 51, Neg. LLF: 134.49737306882355
Iteration: 5, Func. Count: 64, Neg. LLF: 135.2289966527308
Iteration: 6, Func. Count: 77, Neg. LLF: 131.54712938976886
Iteration: 7, Func. Count: 90, Neg. LLF: 128.24345988889328
Iteration: 8, Func. Count: 103, Neg. LLF: 127.36400118683895
Iteration: 9, Func. Count: 116, Neg. LLF: 127.17747185302508
Iteration: 10, Func. Count: 128, Neg. LLF: 127.16455668806549
Iteration: 11, Func. Count: 140, Neg. LLF: 127.16004378519287
Iteration: 12, Func. Count: 152, Neg. LLF: 127.15657679354203
Iteration: 13, Func. Count: 164, Neg. LLF: 127.15553035322742
Iteration: 14, Func. Count: 176, Neg. LLF: 127.15533638562786
Iteration: 15, Func. Count: 188, Neg. LLF: 127.15529513097685
Iteration: 16, Func. Count: 200, Neg. LLF: 127.1552941081027
Iteration: 17, Func. Count: 211, Neg. LLF: 127.15529431161113
Optimization terminated successfully (Exit mode 0)
Current function value: 127.1552941081027
Iterations: 17
Function evaluations: 211
Gradient evaluations: 17
Iteration: 1, Func. Count: 14, Neg. LLF: 134.3465951785604
Iteration: 2, Func. Count: 29, Neg. LLF: 130.11933570777714
Iteration: 3, Func. Count: 42, Neg. LLF: 128.10854590414732
Iteration: 4, Func. Count: 55, Neg. LLF: 132.84871142815604
Iteration: 5, Func. Count: 71, Neg. LLF: 130.26600927037137
Iteration: 6, Func. Count: 85, Neg. LLF: 127.63995615191125
Iteration: 7, Func. Count: 98, Neg. LLF: 127.25750251425842
Iteration: 8, Func. Count: 111, Neg. LLF: 127.20773207617539
Iteration: 9, Func. Count: 124, Neg. LLF: 127.16933277915433
Iteration: 10, Func. Count: 137, Neg. LLF: 127.1612849218354
Iteration: 11, Func. Count: 150, Neg. LLF: 127.15750324738627
Iteration: 12, Func. Count: 163, Neg. LLF: 127.15670471399689
Iteration: 13, Func. Count: 176, Neg. LLF: 127.15532799233182
Iteration: 14, Func. Count: 189, Neg. LLF: 127.15529498029169
Iteration: 15, Func. Count: 202, Neg. LLF: 127.15529411551006
Optimization terminated successfully (Exit mode 0)
Current function value: 127.15529411551006
Iterations: 15
Function evaluations: 202
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 133.2260817783828
Iteration: 2, Func. Count: 22, Neg. LLF: 129.3529440012233
Iteration: 3, Func. Count: 32, Neg. LLF: 132.84825170228422
Iteration: 4, Func. Count: 43, Neg. LLF: 128.2243687899504
Iteration: 5, Func. Count: 53, Neg. LLF: 133.39467778858116
Iteration: 6, Func. Count: 64, Neg. LLF: 182.24617336173102
Iteration: 7, Func. Count: 75, Neg. LLF: 138.73778469504052
Iteration: 8, Func. Count: 86, Neg. LLF: 127.57546590665642
Iteration: 9, Func. Count: 97, Neg. LLF: 127.16812047891034
Iteration: 10, Func. Count: 107, Neg. LLF: 127.15705274764682
Iteration: 11, Func. Count: 117, Neg. LLF: 127.15531290114887
Iteration: 12, Func. Count: 127, Neg. LLF: 127.15529551024161
Iteration: 13, Func. Count: 137, Neg. LLF: 127.15529415673673
Iteration: 14, Func. Count: 146, Neg. LLF: 127.15529442604058
Optimization terminated successfully (Exit mode 0)
Current function value: 127.15529415673673
Iterations: 14
Function evaluations: 146
Gradient evaluations: 14
Iteration: 1, Func. Count: 12, Neg. LLF: 134.4098138482768
Iteration: 2, Func. Count: 25, Neg. LLF: 131.4086461935072
Iteration: 3, Func. Count: 36, Neg. LLF: 128.58242575878913
Iteration: 4, Func. Count: 47, Neg. LLF: 135.26881393612325
Iteration: 5, Func. Count: 60, Neg. LLF: 129.74259103882133
Iteration: 6, Func. Count: 72, Neg. LLF: 127.69901228758877
Iteration: 7, Func. Count: 83, Neg. LLF: 194.7362006790962
Iteration: 8, Func. Count: 96, Neg. LLF: 129.35598218638637
Iteration: 9, Func. Count: 108, Neg. LLF: 127.19304350498668
Iteration: 10, Func. Count: 119, Neg. LLF: 127.1746327975835
Iteration: 11, Func. Count: 130, Neg. LLF: 127.16420990867887
Iteration: 12, Func. Count: 141, Neg. LLF: 127.1575889831326
Iteration: 13, Func. Count: 152, Neg. LLF: 127.1555915461383
Iteration: 14, Func. Count: 163, Neg. LLF: 127.15537187191643
Iteration: 15, Func. Count: 174, Neg. LLF: 127.15532495098947
Iteration: 16, Func. Count: 185, Neg. LLF: 127.15531381583594
Iteration: 17, Func. Count: 196, Neg. LLF: 127.15530293516696
Iteration: 18, Func. Count: 207, Neg. LLF: 127.15529620731375
Iteration: 19, Func. Count: 218, Neg. LLF: 127.15529426313635
Iteration: 20, Func. Count: 228, Neg. LLF: 127.15529441535156
Optimization terminated successfully (Exit mode 0)
Current function value: 127.15529426313635
Iterations: 20
Function evaluations: 228
Gradient evaluations: 20
Iteration: 1, Func. Count: 13, Neg. LLF: 134.35386931581255
Iteration: 2, Func. Count: 26, Neg. LLF: 131.25481491402766
Iteration: 3, Func. Count: 38, Neg. LLF: 133.05934062484656
Iteration: 4, Func. Count: 51, Neg. LLF: 143.13425799213434
Iteration: 5, Func. Count: 64, Neg. LLF: 136.39407049564215
Iteration: 6, Func. Count: 77, Neg. LLF: 1401617.7708217602
Iteration: 7, Func. Count: 90, Neg. LLF: 132.4600368978771
Iteration: 8, Func. Count: 103, Neg. LLF: 127.98153023381543
Iteration: 9, Func. Count: 116, Neg. LLF: 127.34276293932685
Iteration: 10, Func. Count: 129, Neg. LLF: 133.53525371714596
Iteration: 11, Func. Count: 142, Neg. LLF: 127.1753324750254
Iteration: 12, Func. Count: 154, Neg. LLF: 127.16668134812791
Iteration: 13, Func. Count: 166, Neg. LLF: 127.15719341664811
Iteration: 14, Func. Count: 178, Neg. LLF: 127.15536600856898
Iteration: 15, Func. Count: 190, Neg. LLF: 127.15529647704699
Iteration: 16, Func. Count: 202, Neg. LLF: 127.15529411746027
Iteration: 17, Func. Count: 213, Neg. LLF: 127.15529417543198
Optimization terminated successfully (Exit mode 0)
Current function value: 127.15529411746027
Iterations: 17
Function evaluations: 213
Gradient evaluations: 17
Iteration: 1, Func. Count: 14, Neg. LLF: 134.3322452941378
Iteration: 2, Func. Count: 29, Neg. LLF: 131.32044955976812
Iteration: 3, Func. Count: 42, Neg. LLF: 128.5051654875049
Iteration: 4, Func. Count: 55, Neg. LLF: 134.15723298956533
Iteration: 5, Func. Count: 69, Neg. LLF: 135.0942261240733
Iteration: 6, Func. Count: 83, Neg. LLF: 131.6546342147853
Iteration: 7, Func. Count: 97, Neg. LLF: 128.20828759482606
Iteration: 8, Func. Count: 111, Neg. LLF: 127.36119783976443
Iteration: 9, Func. Count: 125, Neg. LLF: 127.1761741691161
Iteration: 10, Func. Count: 138, Neg. LLF: 127.16403704542107
Iteration: 11, Func. Count: 151, Neg. LLF: 127.15972137866297
Iteration: 12, Func. Count: 164, Neg. LLF: 127.15648455256772
Iteration: 13, Func. Count: 177, Neg. LLF: 127.15553184695845
Iteration: 14, Func. Count: 190, Neg. LLF: 127.15533701443796
Iteration: 15, Func. Count: 203, Neg. LLF: 127.15529518517351
Iteration: 16, Func. Count: 216, Neg. LLF: 127.15529410986225
Iteration: 17, Func. Count: 228, Neg. LLF: 127.15529431336972
Optimization terminated successfully (Exit mode 0)
Current function value: 127.15529410986225
Iterations: 17
Function evaluations: 228
Gradient evaluations: 17
Iteration: 1, Func. Count: 15, Neg. LLF: 134.33748814479404
Iteration: 2, Func. Count: 31, Neg. LLF: 130.12356258115597
Iteration: 3, Func. Count: 45, Neg. LLF: 128.10951120068106
Iteration: 4, Func. Count: 59, Neg. LLF: 132.7977626744803
Iteration: 5, Func. Count: 76, Neg. LLF: 130.27457447937684
Iteration: 6, Func. Count: 91, Neg. LLF: 127.64874796897395
Iteration: 7, Func. Count: 106, Neg. LLF: 127.18589214212344
Iteration: 8, Func. Count: 120, Neg. LLF: 127.16047516980723
Iteration: 9, Func. Count: 134, Neg. LLF: 127.15780694036019
Iteration: 10, Func. Count: 148, Neg. LLF: 127.15536145575301
Iteration: 11, Func. Count: 162, Neg. LLF: 127.15530848981702
Iteration: 12, Func. Count: 176, Neg. LLF: 127.15529493470339
Iteration: 13, Func. Count: 190, Neg. LLF: 127.15529410900938
Optimization terminated successfully (Exit mode 0)
Current function value: 127.15529410900938
Iterations: 13
Function evaluations: 190
Gradient evaluations: 13
Iteration: 1, Func. Count: 8, Neg. LLF: 132.02280964184115
Iteration: 2, Func. Count: 16, Neg. LLF: 137.29057538275987
Iteration: 3, Func. Count: 24, Neg. LLF: 131.25829651877135
Iteration: 4, Func. Count: 32, Neg. LLF: 131.96687876924813
Iteration: 5, Func. Count: 40, Neg. LLF: 130.0803698942616
Iteration: 6, Func. Count: 47, Neg. LLF: 130.07847812880118
Iteration: 7, Func. Count: 54, Neg. LLF: 130.07815901981095
Iteration: 8, Func. Count: 61, Neg. LLF: 130.07798129410395
Iteration: 9, Func. Count: 68, Neg. LLF: 130.07755550666
Iteration: 10, Func. Count: 75, Neg. LLF: 130.07746101902578
Iteration: 11, Func. Count: 82, Neg. LLF: 130.07744991451293
Iteration: 12, Func. Count: 88, Neg. LLF: 130.07745016293333
Optimization terminated successfully (Exit mode 0)
Current function value: 130.07744991451293
Iterations: 12
Function evaluations: 88
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 130.9435480803581
Iteration: 2, Func. Count: 17, Neg. LLF: 133.77923262614357
Iteration: 3, Func. Count: 26, Neg. LLF: 146.5462586053202
Iteration: 4, Func. Count: 35, Neg. LLF: 147.99567638151035
Iteration: 5, Func. Count: 44, Neg. LLF: 130.10684834744586
Iteration: 6, Func. Count: 52, Neg. LLF: 130.09072113850473
Iteration: 7, Func. Count: 60, Neg. LLF: 130.0795484829051
Iteration: 8, Func. Count: 68, Neg. LLF: 130.07751461794086
Iteration: 9, Func. Count: 76, Neg. LLF: 130.07745830436608
Iteration: 10, Func. Count: 84, Neg. LLF: 130.07745376279587
Iteration: 11, Func. Count: 92, Neg. LLF: 130.07745235906012
Iteration: 12, Func. Count: 100, Neg. LLF: 130.0774496530146
Iteration: 13, Func. Count: 107, Neg. LLF: 130.07744968042206
Optimization terminated successfully (Exit mode 0)
Current function value: 130.0774496530146
Iterations: 13
Function evaluations: 107
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 130.95040375588505
Iteration: 2, Func. Count: 19, Neg. LLF: 134.07765786557871
Iteration: 3, Func. Count: 30, Neg. LLF: 141.90949777220223
Iteration: 4, Func. Count: 40, Neg. LLF: 140.75920223947523
Iteration: 5, Func. Count: 50, Neg. LLF: 130.15090375688516
Iteration: 6, Func. Count: 59, Neg. LLF: 130.09165981351035
Iteration: 7, Func. Count: 68, Neg. LLF: 130.1216639211165
Iteration: 8, Func. Count: 78, Neg. LLF: 130.08012354362864
Iteration: 9, Func. Count: 87, Neg. LLF: 130.07204953134996
Iteration: 10, Func. Count: 96, Neg. LLF: 130.0693451267004
Iteration: 11, Func. Count: 105, Neg. LLF: 130.06071494226126
Iteration: 12, Func. Count: 114, Neg. LLF: 130.05958621360006
Iteration: 13, Func. Count: 123, Neg. LLF: 130.0590212868719
Iteration: 14, Func. Count: 132, Neg. LLF: 130.05885135421627
Iteration: 15, Func. Count: 141, Neg. LLF: 130.05884906712433
Iteration: 16, Func. Count: 149, Neg. LLF: 130.05884906712393
Optimization terminated successfully (Exit mode 0)
Current function value: 130.05884906712433
Iterations: 16
Function evaluations: 149
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 130.95429909727306
Iteration: 2, Func. Count: 21, Neg. LLF: 132.26702414331186
Iteration: 3, Func. Count: 32, Neg. LLF: 140.13518217011043
Iteration: 4, Func. Count: 43, Neg. LLF: 139.8877817296036
Iteration: 5, Func. Count: 54, Neg. LLF: 130.29552299102053
Iteration: 6, Func. Count: 65, Neg. LLF: 130.10933007068417
Iteration: 7, Func. Count: 75, Neg. LLF: 130.080507906887
Iteration: 8, Func. Count: 85, Neg. LLF: 130.07619162580295
Iteration: 9, Func. Count: 96, Neg. LLF: 130.0625018573578
Iteration: 10, Func. Count: 106, Neg. LLF: 130.06175986551673
Iteration: 11, Func. Count: 116, Neg. LLF: 130.05924877442234
Iteration: 12, Func. Count: 126, Neg. LLF: 130.0589081594571
Iteration: 13, Func. Count: 136, Neg. LLF: 130.0588523702194
Iteration: 14, Func. Count: 146, Neg. LLF: 130.05884905875772
Iteration: 15, Func. Count: 155, Neg. LLF: 130.05884925093176
Optimization terminated successfully (Exit mode 0)
Current function value: 130.05884905875772
Iterations: 15
Function evaluations: 155
Gradient evaluations: 15
Iteration: 1, Func. Count: 12, Neg. LLF: 130.95720512893897
Iteration: 2, Func. Count: 23, Neg. LLF: 132.54779924862063
Iteration: 3, Func. Count: 35, Neg. LLF: 140.17045286096763
Iteration: 4, Func. Count: 47, Neg. LLF: 140.3381682127304
Iteration: 5, Func. Count: 59, Neg. LLF: 130.2930827825086
Iteration: 6, Func. Count: 71, Neg. LLF: 130.11284730473946
Iteration: 7, Func. Count: 82, Neg. LLF: 130.08907565777068
Iteration: 8, Func. Count: 93, Neg. LLF: 130.0852659447141
Iteration: 9, Func. Count: 105, Neg. LLF: 130.06195651489574
Iteration: 10, Func. Count: 116, Neg. LLF: 130.06133149273364
Iteration: 11, Func. Count: 127, Neg. LLF: 130.05973053350604
Iteration: 12, Func. Count: 138, Neg. LLF: 130.05898830367278
Iteration: 13, Func. Count: 149, Neg. LLF: 130.05886789787456
Iteration: 14, Func. Count: 160, Neg. LLF: 130.058849214844
Iteration: 15, Func. Count: 170, Neg. LLF: 130.05884925179495
Optimization terminated successfully (Exit mode 0)
Current function value: 130.058849214844
Iterations: 15
Function evaluations: 170
Gradient evaluations: 15
Iteration: 1, Func. Count: 9, Neg. LLF: 132.58356899175965
Iteration: 2, Func. Count: 18, Neg. LLF: 132.0263671590084
Iteration: 3, Func. Count: 27, Neg. LLF: 135.37609835885044
Iteration: 4, Func. Count: 36, Neg. LLF: 130.35310336913216
Iteration: 5, Func. Count: 44, Neg. LLF: 130.01832448662384
Iteration: 6, Func. Count: 52, Neg. LLF: 129.96044905712355
Iteration: 7, Func. Count: 60, Neg. LLF: 129.93815407245674
Iteration: 8, Func. Count: 68, Neg. LLF: 129.936172086614
Iteration: 9, Func. Count: 76, Neg. LLF: 129.93404382656493
Iteration: 10, Func. Count: 84, Neg. LLF: 129.93351458068125
Iteration: 11, Func. Count: 92, Neg. LLF: 129.93337478203148
Iteration: 12, Func. Count: 100, Neg. LLF: 129.93337308427078
Iteration: 13, Func. Count: 107, Neg. LLF: 129.93337308426857
Optimization terminated successfully (Exit mode 0)
Current function value: 129.93337308427078
Iterations: 13
Function evaluations: 107
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 133.26531552086317
Iteration: 2, Func. Count: 20, Neg. LLF: 131.59779737293042
Iteration: 3, Func. Count: 30, Neg. LLF: 131.50843889362596
Iteration: 4, Func. Count: 40, Neg. LLF: 147.63188143478334
Iteration: 5, Func. Count: 50, Neg. LLF: 130.09266541173236
Iteration: 6, Func. Count: 59, Neg. LLF: 130.03133797130963
Iteration: 7, Func. Count: 68, Neg. LLF: 130.01325779452262
Iteration: 8, Func. Count: 77, Neg. LLF: 129.98670742575013
Iteration: 9, Func. Count: 86, Neg. LLF: 129.96947215663482
Iteration: 10, Func. Count: 95, Neg. LLF: 129.9653903086546
Iteration: 11, Func. Count: 104, Neg. LLF: 129.96418435623073
Iteration: 12, Func. Count: 113, Neg. LLF: 129.9634671262764
Iteration: 13, Func. Count: 122, Neg. LLF: 129.96342016368456
Iteration: 14, Func. Count: 131, Neg. LLF: 129.9634126918758
Iteration: 15, Func. Count: 139, Neg. LLF: 129.96341271440505
Optimization terminated successfully (Exit mode 0)
Current function value: 129.9634126918758
Iterations: 15
Function evaluations: 139
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 133.48639178881794
Iteration: 2, Func. Count: 22, Neg. LLF: 131.0167154067656
Iteration: 3, Func. Count: 33, Neg. LLF: 131.71010755266562
Iteration: 4, Func. Count: 44, Neg. LLF: 143.55921566030517
Iteration: 5, Func. Count: 55, Neg. LLF: 130.01188965821783
Iteration: 6, Func. Count: 65, Neg. LLF: 130.09802211339257
Iteration: 7, Func. Count: 76, Neg. LLF: 129.9213834438341
Iteration: 8, Func. Count: 86, Neg. LLF: 129.87729377137907
Iteration: 9, Func. Count: 96, Neg. LLF: 129.87373735102298
Iteration: 10, Func. Count: 106, Neg. LLF: 129.86972766483217
Iteration: 11, Func. Count: 116, Neg. LLF: 129.8663765180704
Iteration: 12, Func. Count: 126, Neg. LLF: 129.86598466951926
Iteration: 13, Func. Count: 136, Neg. LLF: 129.8659079389335
Iteration: 14, Func. Count: 146, Neg. LLF: 129.86590094579748
Iteration: 15, Func. Count: 156, Neg. LLF: 129.8659001554488
Optimization terminated successfully (Exit mode 0)
Current function value: 129.8659001554488
Iterations: 15
Function evaluations: 156
Gradient evaluations: 15
Iteration: 1, Func. Count: 12, Neg. LLF: 133.7738302573525
Iteration: 2, Func. Count: 24, Neg. LLF: 130.6662344257803
Iteration: 3, Func. Count: 35, Neg. LLF: 180.5103607148662
Iteration: 4, Func. Count: 48, Neg. LLF: 133.05264979265618
Iteration: 5, Func. Count: 60, Neg. LLF: 130.08241817528204
Iteration: 6, Func. Count: 71, Neg. LLF: 130.04130242956452
Iteration: 7, Func. Count: 83, Neg. LLF: 129.9039328023371
Iteration: 8, Func. Count: 94, Neg. LLF: 129.88069047759484
Iteration: 9, Func. Count: 105, Neg. LLF: 129.86972994769243
Iteration: 10, Func. Count: 116, Neg. LLF: 129.86833257068824
Iteration: 11, Func. Count: 127, Neg. LLF: 129.8670122105383
Iteration: 12, Func. Count: 138, Neg. LLF: 129.86613878559646
Iteration: 13, Func. Count: 149, Neg. LLF: 129.86592251578404
Iteration: 14, Func. Count: 160, Neg. LLF: 129.8659010191713
Iteration: 15, Func. Count: 171, Neg. LLF: 129.86590015427177
Optimization terminated successfully (Exit mode 0)
Current function value: 129.86590015427177
Iterations: 15
Function evaluations: 171
Gradient evaluations: 15
Iteration: 1, Func. Count: 13, Neg. LLF: 134.52970641951052
Iteration: 2, Func. Count: 26, Neg. LLF: 130.87409517266775
Iteration: 3, Func. Count: 38, Neg. LLF: 201.0432374124389
Iteration: 4, Func. Count: 52, Neg. LLF: 130.96943206490727
Iteration: 5, Func. Count: 65, Neg. LLF: 138.7956354661851
Iteration: 6, Func. Count: 79, Neg. LLF: 130.57500009793168
Iteration: 7, Func. Count: 92, Neg. LLF: 129.97394396172817
Iteration: 8, Func. Count: 104, Neg. LLF: 129.87133396235564
Iteration: 9, Func. Count: 116, Neg. LLF: 129.87394516619904
Iteration: 10, Func. Count: 129, Neg. LLF: 129.86646379621678
Iteration: 11, Func. Count: 141, Neg. LLF: 129.86606687188555
Iteration: 12, Func. Count: 153, Neg. LLF: 129.86598079339757
Iteration: 13, Func. Count: 165, Neg. LLF: 129.86593605334568
Iteration: 14, Func. Count: 177, Neg. LLF: 129.86591599810995
Iteration: 15, Func. Count: 189, Neg. LLF: 129.86590334542873
Iteration: 16, Func. Count: 201, Neg. LLF: 129.8659003965258
Iteration: 17, Func. Count: 212, Neg. LLF: 129.86590045445425
Optimization terminated successfully (Exit mode 0)
Current function value: 129.8659003965258
Iterations: 17
Function evaluations: 212
Gradient evaluations: 17
Iteration: 1, Func. Count: 10, Neg. LLF: 133.1282616060745
Iteration: 2, Func. Count: 20, Neg. LLF: 129.71599753344512
Iteration: 3, Func. Count: 29, Neg. LLF: 133.20555225744744
Iteration: 4, Func. Count: 39, Neg. LLF: 128.09731398328873
Iteration: 5, Func. Count: 48, Neg. LLF: 150.48153833475362
Iteration: 6, Func. Count: 58, Neg. LLF: 218.71270240909502
Iteration: 7, Func. Count: 68, Neg. LLF: 127.92848372747481
Iteration: 8, Func. Count: 78, Neg. LLF: 127.31415139694768
Iteration: 9, Func. Count: 88, Neg. LLF: 137.46348044657506
Iteration: 10, Func. Count: 99, Neg. LLF: 127.21397713416152
Iteration: 11, Func. Count: 108, Neg. LLF: 127.2133110133325
Iteration: 12, Func. Count: 117, Neg. LLF: 127.21326185827628
Iteration: 13, Func. Count: 126, Neg. LLF: 127.21326126525838
Optimization terminated successfully (Exit mode 0)
Current function value: 127.21326126525838
Iterations: 13
Function evaluations: 126
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 134.38131813359985
Iteration: 2, Func. Count: 23, Neg. LLF: 131.41175245530266
Iteration: 3, Func. Count: 33, Neg. LLF: 128.59310254090303
Iteration: 4, Func. Count: 43, Neg. LLF: 129.96980188142348
Iteration: 5, Func. Count: 54, Neg. LLF: 130.61011135382768
Iteration: 6, Func. Count: 65, Neg. LLF: 156.9960929488672
Iteration: 7, Func. Count: 77, Neg. LLF: 128.24334599421803
Iteration: 8, Func. Count: 88, Neg. LLF: 127.34460990602557
Iteration: 9, Func. Count: 98, Neg. LLF: 127.25060044895545
Iteration: 10, Func. Count: 108, Neg. LLF: 127.23112745516279
Iteration: 11, Func. Count: 118, Neg. LLF: 127.21739751080187
Iteration: 12, Func. Count: 128, Neg. LLF: 127.21539625271247
Iteration: 13, Func. Count: 138, Neg. LLF: 127.21360050477777
Iteration: 14, Func. Count: 148, Neg. LLF: 127.21331165282545
Iteration: 15, Func. Count: 158, Neg. LLF: 127.21326481063242
Iteration: 16, Func. Count: 168, Neg. LLF: 127.21326129036288
Iteration: 17, Func. Count: 177, Neg. LLF: 127.21326144222833
Optimization terminated successfully (Exit mode 0)
Current function value: 127.21326129036288
Iterations: 17
Function evaluations: 177
Gradient evaluations: 17
Iteration: 1, Func. Count: 12, Neg. LLF: 134.33011331674533
Iteration: 2, Func. Count: 24, Neg. LLF: 131.2394125558617
Iteration: 3, Func. Count: 35, Neg. LLF: 133.38738000301703
Iteration: 4, Func. Count: 47, Neg. LLF: 144.6248544501116
Iteration: 5, Func. Count: 59, Neg. LLF: 138.18961606618882
Iteration: 6, Func. Count: 71, Neg. LLF: 150.31296890425935
Iteration: 7, Func. Count: 83, Neg. LLF: 129.99486540872968
Iteration: 8, Func. Count: 95, Neg. LLF: 127.62016071173407
Iteration: 9, Func. Count: 107, Neg. LLF: 1460.6441628687237
Iteration: 10, Func. Count: 120, Neg. LLF: 127.25200063880628
Iteration: 11, Func. Count: 131, Neg. LLF: 127.23482946779691
Iteration: 12, Func. Count: 142, Neg. LLF: 127.22433369608574
Iteration: 13, Func. Count: 153, Neg. LLF: 127.21336039225207
Iteration: 14, Func. Count: 164, Neg. LLF: 127.21326737218803
Iteration: 15, Func. Count: 175, Neg. LLF: 127.21326132305377
Iteration: 16, Func. Count: 185, Neg. LLF: 127.21326133335465
Optimization terminated successfully (Exit mode 0)
Current function value: 127.21326132305377
Iterations: 16
Function evaluations: 185
Gradient evaluations: 16
Iteration: 1, Func. Count: 13, Neg. LLF: 134.30740419827566
Iteration: 2, Func. Count: 27, Neg. LLF: 131.15790655439937
Iteration: 3, Func. Count: 39, Neg. LLF: 128.52343835149887
Iteration: 4, Func. Count: 51, Neg. LLF: 131.31099082876193
Iteration: 5, Func. Count: 64, Neg. LLF: 215.65135636206833
Iteration: 6, Func. Count: 78, Neg. LLF: 133.36732822984192
Iteration: 7, Func. Count: 91, Neg. LLF: 128.32209961525714
Iteration: 8, Func. Count: 104, Neg. LLF: 127.33956259401816
Iteration: 9, Func. Count: 117, Neg. LLF: 127.22916152164302
Iteration: 10, Func. Count: 129, Neg. LLF: 127.21882721359013
Iteration: 11, Func. Count: 141, Neg. LLF: 127.21530319460791
Iteration: 12, Func. Count: 153, Neg. LLF: 127.21397390867143
Iteration: 13, Func. Count: 165, Neg. LLF: 127.21329720427016
Iteration: 14, Func. Count: 177, Neg. LLF: 127.21326232026647
Iteration: 15, Func. Count: 189, Neg. LLF: 127.21326111827236
Iteration: 16, Func. Count: 200, Neg. LLF: 127.21326131917779
Optimization terminated successfully (Exit mode 0)
Current function value: 127.21326111827236
Iterations: 16
Function evaluations: 200
Gradient evaluations: 16
Iteration: 1, Func. Count: 14, Neg. LLF: 134.31202802749144
Iteration: 2, Func. Count: 29, Neg. LLF: 130.0091573653467
Iteration: 3, Func. Count: 42, Neg. LLF: 128.10504652531168
Iteration: 4, Func. Count: 55, Neg. LLF: 129.61592120026847
Iteration: 5, Func. Count: 69, Neg. LLF: 130.5184776763704
Iteration: 6, Func. Count: 84, Neg. LLF: 29739.611397869903
Iteration: 7, Func. Count: 98, Neg. LLF: 127.40372071041462
Iteration: 8, Func. Count: 111, Neg. LLF: 127.2823868965082
Iteration: 9, Func. Count: 124, Neg. LLF: 127.23758392575766
Iteration: 10, Func. Count: 137, Neg. LLF: 127.22469027250007
Iteration: 11, Func. Count: 150, Neg. LLF: 127.21495684705778
Iteration: 12, Func. Count: 163, Neg. LLF: 127.2134616744602
Iteration: 13, Func. Count: 176, Neg. LLF: 127.21328213237942
Iteration: 14, Func. Count: 189, Neg. LLF: 127.21326280370604
Iteration: 15, Func. Count: 202, Neg. LLF: 127.21326124271233
Iteration: 16, Func. Count: 214, Neg. LLF: 127.2132613368601
Optimization terminated successfully (Exit mode 0)
Current function value: 127.21326124271233
Iterations: 16
Function evaluations: 214
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 132.90698460060048
Iteration: 2, Func. Count: 22, Neg. LLF: 129.24472052166425
Iteration: 3, Func. Count: 32, Neg. LLF: 128.45131500651203
Iteration: 4, Func. Count: 42, Neg. LLF: 134.8675571729599
Iteration: 5, Func. Count: 53, Neg. LLF: 891456.3858223801
Iteration: 6, Func. Count: 64, Neg. LLF: 259.75471549040645
Iteration: 7, Func. Count: 75, Neg. LLF: 127.33795366683174
Iteration: 8, Func. Count: 85, Neg. LLF: 127.21097206685626
Iteration: 9, Func. Count: 95, Neg. LLF: 127.20665460367462
Iteration: 10, Func. Count: 106, Neg. LLF: 127.15541290520089
Iteration: 11, Func. Count: 116, Neg. LLF: 127.15548554453808
Iteration: 12, Func. Count: 127, Neg. LLF: 127.15529465441273
Iteration: 13, Func. Count: 137, Neg. LLF: 127.15529408948515
Optimization terminated successfully (Exit mode 0)
Current function value: 127.15529408948515
Iterations: 13
Function evaluations: 137
Gradient evaluations: 13
Iteration: 1, Func. Count: 12, Neg. LLF: 134.39400331243212
Iteration: 2, Func. Count: 25, Neg. LLF: 131.41191730539094
Iteration: 3, Func. Count: 36, Neg. LLF: 128.59162664210987
Iteration: 4, Func. Count: 47, Neg. LLF: 135.10263479385995
Iteration: 5, Func. Count: 60, Neg. LLF: 129.74006065336613
Iteration: 6, Func. Count: 72, Neg. LLF: 127.69577401908019
Iteration: 7, Func. Count: 83, Neg. LLF: 206.37535658275266
Iteration: 8, Func. Count: 96, Neg. LLF: 129.2462579737988
Iteration: 9, Func. Count: 108, Neg. LLF: 127.19237307199828
Iteration: 10, Func. Count: 119, Neg. LLF: 127.1740175938259
Iteration: 11, Func. Count: 130, Neg. LLF: 127.1639259657099
Iteration: 12, Func. Count: 141, Neg. LLF: 127.15753369268359
Iteration: 13, Func. Count: 152, Neg. LLF: 127.155589703646
Iteration: 14, Func. Count: 163, Neg. LLF: 127.15537457863874
Iteration: 15, Func. Count: 174, Neg. LLF: 127.15532752148935
Iteration: 16, Func. Count: 185, Neg. LLF: 127.15531539872579
Iteration: 17, Func. Count: 196, Neg. LLF: 127.15530322622136
Iteration: 18, Func. Count: 207, Neg. LLF: 127.15529614785882
Iteration: 19, Func. Count: 218, Neg. LLF: 127.1552942443081
Iteration: 20, Func. Count: 228, Neg. LLF: 127.15529439652254
Optimization terminated successfully (Exit mode 0)
Current function value: 127.1552942443081
Iterations: 20
Function evaluations: 228
Gradient evaluations: 20
Iteration: 1, Func. Count: 13, Neg. LLF: 134.34196215008873
Iteration: 2, Func. Count: 26, Neg. LLF: 131.25392411141488
Iteration: 3, Func. Count: 38, Neg. LLF: 133.1923801385793
Iteration: 4, Func. Count: 51, Neg. LLF: 143.14620859377146
Iteration: 5, Func. Count: 64, Neg. LLF: 136.43343395194142
Iteration: 6, Func. Count: 77, Neg. LLF: 1402632.8694619024
Iteration: 7, Func. Count: 90, Neg. LLF: 132.70568415167278
Iteration: 8, Func. Count: 103, Neg. LLF: 128.01459856395044
Iteration: 9, Func. Count: 116, Neg. LLF: 127.34549352186336
Iteration: 10, Func. Count: 129, Neg. LLF: 133.34577969940702
Iteration: 11, Func. Count: 142, Neg. LLF: 127.17528379663433
Iteration: 12, Func. Count: 154, Neg. LLF: 127.16662826289888
Iteration: 13, Func. Count: 166, Neg. LLF: 127.15735225118202
Iteration: 14, Func. Count: 178, Neg. LLF: 127.15539117633584
Iteration: 15, Func. Count: 190, Neg. LLF: 127.1552973847659
Iteration: 16, Func. Count: 202, Neg. LLF: 127.15529412746942
Iteration: 17, Func. Count: 213, Neg. LLF: 127.15529418544547
Optimization terminated successfully (Exit mode 0)
Current function value: 127.15529412746942
Iterations: 17
Function evaluations: 213
Gradient evaluations: 17
Iteration: 1, Func. Count: 14, Neg. LLF: 134.32007104171333
Iteration: 2, Func. Count: 29, Neg. LLF: 131.39304514250856
Iteration: 3, Func. Count: 42, Neg. LLF: 128.51441952640704
Iteration: 4, Func. Count: 55, Neg. LLF: 134.20157680444555
Iteration: 5, Func. Count: 69, Neg. LLF: 135.75780161176417
Iteration: 6, Func. Count: 83, Neg. LLF: 131.59507700190989
Iteration: 7, Func. Count: 97, Neg. LLF: 128.32649300955566
Iteration: 8, Func. Count: 111, Neg. LLF: 127.30765548768898
Iteration: 9, Func. Count: 124, Neg. LLF: 127.30007355383309
Iteration: 10, Func. Count: 138, Neg. LLF: 127.3741715005913
Iteration: 11, Func. Count: 152, Neg. LLF: 127.16325556173881
Iteration: 12, Func. Count: 165, Neg. LLF: 127.15778920865745
Iteration: 13, Func. Count: 178, Neg. LLF: 127.1562197898783
Iteration: 14, Func. Count: 191, Neg. LLF: 127.15536723581748
Iteration: 15, Func. Count: 204, Neg. LLF: 127.15530213829356
Iteration: 16, Func. Count: 217, Neg. LLF: 127.15529440644283
Iteration: 17, Func. Count: 229, Neg. LLF: 127.15529460993807
Optimization terminated successfully (Exit mode 0)
Current function value: 127.15529440644283
Iterations: 17
Function evaluations: 229
Gradient evaluations: 17
Iteration: 1, Func. Count: 15, Neg. LLF: 134.325376799718
Iteration: 2, Func. Count: 31, Neg. LLF: 130.15010366095743
Iteration: 3, Func. Count: 45, Neg. LLF: 128.12435722303903
Iteration: 4, Func. Count: 59, Neg. LLF: 132.8460987534847
Iteration: 5, Func. Count: 76, Neg. LLF: 130.16923764078146
Iteration: 6, Func. Count: 91, Neg. LLF: 127.6708506855151
Iteration: 7, Func. Count: 106, Neg. LLF: 127.18074285621888
Iteration: 8, Func. Count: 120, Neg. LLF: 127.16140766633296
Iteration: 9, Func. Count: 134, Neg. LLF: 127.15868604194259
Iteration: 10, Func. Count: 148, Neg. LLF: 127.15536683708112
Iteration: 11, Func. Count: 162, Neg. LLF: 127.1553092354978
Iteration: 12, Func. Count: 176, Neg. LLF: 127.1552950743033
Iteration: 13, Func. Count: 190, Neg. LLF: 127.15529411958532
Optimization terminated successfully (Exit mode 0)
Current function value: 127.15529411958532
Iterations: 13
Function evaluations: 190
Gradient evaluations: 13
Iteration: 1, Func. Count: 12, Neg. LLF: 132.83885179761015
Iteration: 2, Func. Count: 24, Neg. LLF: 129.26494804831444
Iteration: 3, Func. Count: 35, Neg. LLF: 128.6201993045807
Iteration: 4, Func. Count: 46, Neg. LLF: 991.8442802821603
Iteration: 5, Func. Count: 58, Neg. LLF: 800213.3060696035
Iteration: 6, Func. Count: 70, Neg. LLF: 224.43791849457148
Iteration: 7, Func. Count: 82, Neg. LLF: 129.35216914504906
Iteration: 8, Func. Count: 94, Neg. LLF: 127.84378736879788
Iteration: 9, Func. Count: 106, Neg. LLF: 127.21142535956425
Iteration: 10, Func. Count: 118, Neg. LLF: 127.15838376434724
Iteration: 11, Func. Count: 129, Neg. LLF: 127.15705898371439
Iteration: 12, Func. Count: 140, Neg. LLF: 127.15530603316184
Iteration: 13, Func. Count: 151, Neg. LLF: 127.15529438690191
Iteration: 14, Func. Count: 161, Neg. LLF: 127.155294117581
Optimization terminated successfully (Exit mode 0)
Current function value: 127.15529438690191
Iterations: 14
Function evaluations: 161
Gradient evaluations: 14
Iteration: 1, Func. Count: 13, Neg. LLF: 134.37956700654763
Iteration: 2, Func. Count: 27, Neg. LLF: 131.4102479878343
Iteration: 3, Func. Count: 39, Neg. LLF: 128.59561705443193
Iteration: 4, Func. Count: 51, Neg. LLF: 134.97695261713937
Iteration: 5, Func. Count: 65, Neg. LLF: 129.73048832442828
Iteration: 6, Func. Count: 78, Neg. LLF: 127.70220020175552
Iteration: 7, Func. Count: 90, Neg. LLF: 302.91956583663085
Iteration: 8, Func. Count: 104, Neg. LLF: 129.30041103158976
Iteration: 9, Func. Count: 117, Neg. LLF: 127.19427079261058
Iteration: 10, Func. Count: 129, Neg. LLF: 127.17557765882391
Iteration: 11, Func. Count: 141, Neg. LLF: 127.16412470633605
Iteration: 12, Func. Count: 153, Neg. LLF: 127.1585497000147
Iteration: 13, Func. Count: 165, Neg. LLF: 127.15564332182835
Iteration: 14, Func. Count: 177, Neg. LLF: 127.15540853444537
Iteration: 15, Func. Count: 189, Neg. LLF: 127.15534858306737
Iteration: 16, Func. Count: 201, Neg. LLF: 127.15532787908745
Iteration: 17, Func. Count: 213, Neg. LLF: 127.15530796802148
Iteration: 18, Func. Count: 225, Neg. LLF: 127.15529708653074
Iteration: 19, Func. Count: 237, Neg. LLF: 127.1552943117468
Iteration: 20, Func. Count: 248, Neg. LLF: 127.1552944639591
Optimization terminated successfully (Exit mode 0)
Current function value: 127.1552943117468
Iterations: 20
Function evaluations: 248
Gradient evaluations: 20
Iteration: 1, Func. Count: 14, Neg. LLF: 134.32956265849293
Iteration: 2, Func. Count: 28, Neg. LLF: 131.25094816567233
Iteration: 3, Func. Count: 41, Neg. LLF: 133.18640140426965
Iteration: 4, Func. Count: 55, Neg. LLF: 142.80748357864968
Iteration: 5, Func. Count: 69, Neg. LLF: 135.88029936800297
Iteration: 6, Func. Count: 83, Neg. LLF: 1413838.0825795636
Iteration: 7, Func. Count: 97, Neg. LLF: 133.14290893317482
Iteration: 8, Func. Count: 111, Neg. LLF: 128.0540862228898
Iteration: 9, Func. Count: 125, Neg. LLF: 127.348813568111
Iteration: 10, Func. Count: 139, Neg. LLF: 134.37856875512017
Iteration: 11, Func. Count: 153, Neg. LLF: 127.17609123684424
Iteration: 12, Func. Count: 166, Neg. LLF: 127.16709012461973
Iteration: 13, Func. Count: 179, Neg. LLF: 127.15739241264046
Iteration: 14, Func. Count: 192, Neg. LLF: 127.15541147167853
Iteration: 15, Func. Count: 205, Neg. LLF: 127.15529781253542
Iteration: 16, Func. Count: 218, Neg. LLF: 127.15529413651109
Iteration: 17, Func. Count: 230, Neg. LLF: 127.15529419449523
Optimization terminated successfully (Exit mode 0)
Current function value: 127.15529413651109
Iterations: 17
Function evaluations: 230
Gradient evaluations: 17
Iteration: 1, Func. Count: 15, Neg. LLF: 134.3095147381291
Iteration: 2, Func. Count: 31, Neg. LLF: 131.37827384125129
Iteration: 3, Func. Count: 45, Neg. LLF: 128.51583096280024
Iteration: 4, Func. Count: 59, Neg. LLF: 133.89981254222923
Iteration: 5, Func. Count: 74, Neg. LLF: 135.63123504479356
Iteration: 6, Func. Count: 89, Neg. LLF: 131.7294432689437
Iteration: 7, Func. Count: 104, Neg. LLF: 128.2816383598042
Iteration: 8, Func. Count: 119, Neg. LLF: 127.30247830867734
Iteration: 9, Func. Count: 133, Neg. LLF: 127.2865315759307
Iteration: 10, Func. Count: 148, Neg. LLF: 127.35326903302271
Iteration: 11, Func. Count: 163, Neg. LLF: 127.16271910777674
Iteration: 12, Func. Count: 177, Neg. LLF: 127.15751341470492
Iteration: 13, Func. Count: 191, Neg. LLF: 127.15613931607126
Iteration: 14, Func. Count: 205, Neg. LLF: 127.15535757314974
Iteration: 15, Func. Count: 219, Neg. LLF: 127.1553006456785
Iteration: 16, Func. Count: 233, Neg. LLF: 127.15529430672782
Iteration: 17, Func. Count: 246, Neg. LLF: 127.1552945102236
Optimization terminated successfully (Exit mode 0)
Current function value: 127.15529430672782
Iterations: 17
Function evaluations: 246
Gradient evaluations: 17
Iteration: 1, Func. Count: 16, Neg. LLF: 134.31655164942416
Iteration: 2, Func. Count: 33, Neg. LLF: 130.15482040554858
Iteration: 3, Func. Count: 48, Neg. LLF: 128.1252056721477
Iteration: 4, Func. Count: 63, Neg. LLF: 132.79439381751934
Iteration: 5, Func. Count: 81, Neg. LLF: 130.17812410681955
Iteration: 6, Func. Count: 97, Neg. LLF: 127.68115455063453
Iteration: 7, Func. Count: 113, Neg. LLF: 127.18124711046825
Iteration: 8, Func. Count: 128, Neg. LLF: 127.16111696743664
Iteration: 9, Func. Count: 143, Neg. LLF: 127.1586480228313
Iteration: 10, Func. Count: 158, Neg. LLF: 127.15537043039765
Iteration: 11, Func. Count: 173, Neg. LLF: 127.15530977740633
Iteration: 12, Func. Count: 188, Neg. LLF: 127.15529499224276
Iteration: 13, Func. Count: 203, Neg. LLF: 127.15529411288954
Optimization terminated successfully (Exit mode 0)
Current function value: 127.15529411288954
Iterations: 13
Function evaluations: 203
Gradient evaluations: 13
Iteration: 1, Func. Count: 8, Neg. LLF: 130.8468373476029
Iteration: 2, Func. Count: 15, Neg. LLF: 130.1805934480166
Iteration: 3, Func. Count: 23, Neg. LLF: 134.81203540982654
Iteration: 4, Func. Count: 31, Neg. LLF: 143.21852559607393
Iteration: 5, Func. Count: 39, Neg. LLF: 154.38135112762674
Iteration: 6, Func. Count: 47, Neg. LLF: 137.95177686565853
Iteration: 7, Func. Count: 55, Neg. LLF: 134.1686509592848
Iteration: 8, Func. Count: 63, Neg. LLF: 127.70385046896874
Iteration: 9, Func. Count: 71, Neg. LLF: 127.2635040441314
Iteration: 10, Func. Count: 78, Neg. LLF: 127.26080831590157
Iteration: 11, Func. Count: 85, Neg. LLF: 127.26049020187855
Iteration: 12, Func. Count: 92, Neg. LLF: 127.26038000054636
Iteration: 13, Func. Count: 99, Neg. LLF: 127.26037356276673
Iteration: 14, Func. Count: 106, Neg. LLF: 127.26036998774916
Iteration: 15, Func. Count: 112, Neg. LLF: 127.26036984739302
Optimization terminated successfully (Exit mode 0)
Current function value: 127.26036998774916
Iterations: 15
Function evaluations: 112
Gradient evaluations: 15
Iteration: 1, Func. Count: 5, Neg. LLF: 152.2582011156474
Iteration: 2, Func. Count: 10, Neg. LLF: 150.081752432731
Iteration: 3, Func. Count: 15, Neg. LLF: 143.7048593245384
Iteration: 4, Func. Count: 19, Neg. LLF: 143.5713485893622
Iteration: 5, Func. Count: 23, Neg. LLF: 143.55188420339954
Iteration: 6, Func. Count: 27, Neg. LLF: 143.55185295056094
Iteration: 7, Func. Count: 31, Neg. LLF: 143.55184837103974
Iteration: 8, Func. Count: 35, Neg. LLF: 143.55184025437777
Iteration: 9, Func. Count: 38, Neg. LLF: 143.55184025562147
Optimization terminated successfully (Exit mode 0)
Current function value: 143.55184025437777
Iterations: 9
Function evaluations: 38
Gradient evaluations: 9
Iteration: 1, Func. Count: 6, Neg. LLF: 175.11235229606146
Iteration: 2, Func. Count: 13, Neg. LLF: 146.56713088811023
Iteration: 3, Func. Count: 18, Neg. LLF: 146.5693026300297
Iteration: 4, Func. Count: 24, Neg. LLF: 146.5629059990543
Iteration: 5, Func. Count: 29, Neg. LLF: 146.56236358278764
Iteration: 6, Func. Count: 34, Neg. LLF: 146.55967172065039
Iteration: 7, Func. Count: 39, Neg. LLF: 146.537989863944
Iteration: 8, Func. Count: 44, Neg. LLF: 145.20754062422824
Iteration: 9, Func. Count: 49, Neg. LLF: 165.2898204360939
Iteration: 10, Func. Count: 58, Neg. LLF: 144.92336873576357
Iteration: 11, Func. Count: 63, Neg. LLF: 144.91988720117183
Iteration: 12, Func. Count: 68, Neg. LLF: 144.91493142128886
Iteration: 13, Func. Count: 73, Neg. LLF: 144.92205236705414
Iteration: 14, Func. Count: 80, Neg. LLF: 144.91448914435983
Iteration: 15, Func. Count: 85, Neg. LLF: 144.91446851345532
Iteration: 16, Func. Count: 89, Neg. LLF: 144.91446891171114
Optimization terminated successfully (Exit mode 0)
Current function value: 144.91446851345532
Iterations: 17
Function evaluations: 89
Gradient evaluations: 16
Iteration: 1, Func. Count: 7, Neg. LLF: 158.793132322148
Iteration: 2, Func. Count: 14, Neg. LLF: 145.10648133613338
Iteration: 3, Func. Count: 20, Neg. LLF: 148.32862791740877
Iteration: 4, Func. Count: 27, Neg. LLF: 144.97291812492668
Iteration: 5, Func. Count: 34, Neg. LLF: 144.935963365018
Iteration: 6, Func. Count: 41, Neg. LLF: 144.93362363680004
Iteration: 7, Func. Count: 47, Neg. LLF: 144.9324971594441
Iteration: 8, Func. Count: 53, Neg. LLF: 144.92791654798992
Iteration: 9, Func. Count: 59, Neg. LLF: 144.914470610385
Iteration: 10, Func. Count: 65, Neg. LLF: 144.91447587470122
Iteration: 11, Func. Count: 71, Neg. LLF: 144.91446807439803
Optimization terminated successfully (Exit mode 0)
Current function value: 144.91446847108136
Iterations: 11
Function evaluations: 71
Gradient evaluations: 11
Iteration: 1, Func. Count: 8, Neg. LLF: 155.66864762054345
Iteration: 2, Func. Count: 16, Neg. LLF: 145.03802076635148
Iteration: 3, Func. Count: 23, Neg. LLF: 145.1752904410626
Iteration: 4, Func. Count: 31, Neg. LLF: 144.96126375110694
Iteration: 5, Func. Count: 38, Neg. LLF: 144.95497295819135
Iteration: 6, Func. Count: 45, Neg. LLF: 144.95115410211707
Iteration: 7, Func. Count: 52, Neg. LLF: 144.94754928125846
Iteration: 8, Func. Count: 59, Neg. LLF: 144.9468588288489
Iteration: 9, Func. Count: 66, Neg. LLF: 144.94679355213694
Iteration: 10, Func. Count: 72, Neg. LLF: 144.9467933847852
Optimization terminated successfully (Exit mode 0)
Current function value: 144.94679355213694
Iterations: 10
Function evaluations: 72
Gradient evaluations: 10
Iteration: 1, Func. Count: 9, Neg. LLF: 154.25219595311225
Iteration: 2, Func. Count: 18, Neg. LLF: 145.02307735339073
Iteration: 3, Func. Count: 26, Neg. LLF: 145.01620352745445
Iteration: 4, Func. Count: 35, Neg. LLF: 144.95744767373915
Iteration: 5, Func. Count: 44, Neg. LLF: 144.94674004270217
Iteration: 6, Func. Count: 53, Neg. LLF: 144.92733829286965
Iteration: 7, Func. Count: 61, Neg. LLF: 144.8511367858549
Iteration: 8, Func. Count: 69, Neg. LLF: 144.84727006570364
Iteration: 9, Func. Count: 77, Neg. LLF: 144.8384759985221
Iteration: 10, Func. Count: 85, Neg. LLF: 144.8382595145323
Iteration: 11, Func. Count: 93, Neg. LLF: 144.83826713552887
Optimization terminated successfully (Exit mode 0)
Current function value: 144.83825867582053
Iterations: 12
Function evaluations: 94
Gradient evaluations: 11
Iteration: 1, Func. Count: 6, Neg. LLF: 147.12146776235994
Iteration: 2, Func. Count: 11, Neg. LLF: 149.05782650609555
Iteration: 3, Func. Count: 17, Neg. LLF: 143.7052529649284
Iteration: 4, Func. Count: 22, Neg. LLF: 143.6069142354006
Iteration: 5, Func. Count: 27, Neg. LLF: 143.55684837254023
Iteration: 6, Func. Count: 32, Neg. LLF: 143.55190493177338
Iteration: 7, Func. Count: 37, Neg. LLF: 143.55184045635573
Iteration: 8, Func. Count: 41, Neg. LLF: 143.55184057809933
Optimization terminated successfully (Exit mode 0)
Current function value: 143.55184045635573
Iterations: 8
Function evaluations: 41
Gradient evaluations: 8
Iteration: 1, Func. Count: 7, Neg. LLF: 175.1267774741544
Iteration: 2, Func. Count: 15, Neg. LLF: 146.5638832465167
Iteration: 3, Func. Count: 21, Neg. LLF: 146.578799949317
Iteration: 4, Func. Count: 28, Neg. LLF: 146.56286022879297
Iteration: 5, Func. Count: 34, Neg. LLF: 146.5622460273375
Iteration: 6, Func. Count: 40, Neg. LLF: 146.55919101276055
Iteration: 7, Func. Count: 46, Neg. LLF: 146.52945346038007
Iteration: 8, Func. Count: 52, Neg. LLF: 145.21873736028442
Iteration: 9, Func. Count: 58, Neg. LLF: 162.88593108929103
Iteration: 10, Func. Count: 68, Neg. LLF: 144.92990787520887
Iteration: 11, Func. Count: 74, Neg. LLF: 144.91916551130345
Iteration: 12, Func. Count: 80, Neg. LLF: 144.9204360217769
Iteration: 13, Func. Count: 87, Neg. LLF: 144.91495246001102
Iteration: 14, Func. Count: 93, Neg. LLF: 144.9146685660838
Iteration: 15, Func. Count: 99, Neg. LLF: 144.91458513186285
Iteration: 16, Func. Count: 105, Neg. LLF: 145.23654035127785
Iteration: 17, Func. Count: 112, Neg. LLF: 144.91446882399637
Optimization terminated successfully (Exit mode 0)
Current function value: 144.91446842736624
Iterations: 18
Function evaluations: 112
Gradient evaluations: 17
Iteration: 1, Func. Count: 8, Neg. LLF: 158.80169515325235
Iteration: 2, Func. Count: 16, Neg. LLF: 145.09991957714567
Iteration: 3, Func. Count: 23, Neg. LLF: 148.31567719220843
Iteration: 4, Func. Count: 31, Neg. LLF: 144.97310297070564
Iteration: 5, Func. Count: 39, Neg. LLF: 144.93576051553393
Iteration: 6, Func. Count: 47, Neg. LLF: 144.93337718791682
Iteration: 7, Func. Count: 54, Neg. LLF: 144.93228367035525
Iteration: 8, Func. Count: 61, Neg. LLF: 144.92773038112648
Iteration: 9, Func. Count: 68, Neg. LLF: 144.91447147265254
Iteration: 10, Func. Count: 75, Neg. LLF: 144.91448985813207
Iteration: 11, Func. Count: 82, Neg. LLF: 144.9144684467734
Optimization terminated successfully (Exit mode 0)
Current function value: 144.91446884353223
Iterations: 11
Function evaluations: 82
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 155.50208274754803
Iteration: 2, Func. Count: 18, Neg. LLF: 145.03455504017532
Iteration: 3, Func. Count: 26, Neg. LLF: 145.14207169042191
Iteration: 4, Func. Count: 35, Neg. LLF: 144.96099115949255
Iteration: 5, Func. Count: 43, Neg. LLF: 144.95465129276565
Iteration: 6, Func. Count: 51, Neg. LLF: 144.95095232319477
Iteration: 7, Func. Count: 59, Neg. LLF: 144.94749732231094
Iteration: 8, Func. Count: 67, Neg. LLF: 144.94685301610662
Iteration: 9, Func. Count: 75, Neg. LLF: 144.94679355352417
Iteration: 10, Func. Count: 82, Neg. LLF: 144.9467933861709
Optimization terminated successfully (Exit mode 0)
Current function value: 144.94679355352417
Iterations: 10
Function evaluations: 82
Gradient evaluations: 10
Iteration: 1, Func. Count: 10, Neg. LLF: 154.0699913650041
Iteration: 2, Func. Count: 20, Neg. LLF: 145.02098661571648
Iteration: 3, Func. Count: 29, Neg. LLF: 145.00859515510953
Iteration: 4, Func. Count: 39, Neg. LLF: 144.9570411179905
Iteration: 5, Func. Count: 49, Neg. LLF: 144.94681727067712
Iteration: 6, Func. Count: 59, Neg. LLF: 144.92837504141863
Iteration: 7, Func. Count: 68, Neg. LLF: 144.85819208003124
Iteration: 8, Func. Count: 77, Neg. LLF: 144.8482110247233
Iteration: 9, Func. Count: 86, Neg. LLF: 144.84092330376848
Iteration: 10, Func. Count: 95, Neg. LLF: 144.83833167669061
Iteration: 11, Func. Count: 104, Neg. LLF: 144.8382587091333
Iteration: 12, Func. Count: 112, Neg. LLF: 144.8382588185575
Optimization terminated successfully (Exit mode 0)
Current function value: 144.8382587091333
Iterations: 13
Function evaluations: 112
Gradient evaluations: 12
Iteration: 1, Func. Count: 7, Neg. LLF: 144.44274355046304
Iteration: 2, Func. Count: 13, Neg. LLF: 148.67861610050704
Iteration: 3, Func. Count: 20, Neg. LLF: 143.693374870975
Iteration: 4, Func. Count: 26, Neg. LLF: 144.53326826429407
Iteration: 5, Func. Count: 33, Neg. LLF: 145.58941781368796
Iteration: 6, Func. Count: 40, Neg. LLF: 143.5311379733302
Iteration: 7, Func. Count: 46, Neg. LLF: 143.52044728317077
Iteration: 8, Func. Count: 52, Neg. LLF: 143.52035979371126
Iteration: 9, Func. Count: 58, Neg. LLF: 143.52035681081367
Iteration: 10, Func. Count: 63, Neg. LLF: 143.52035680801407
Optimization terminated successfully (Exit mode 0)
Current function value: 143.52035681081367
Iterations: 10
Function evaluations: 63
Gradient evaluations: 10
Iteration: 1, Func. Count: 8, Neg. LLF: 175.15587093902735
Iteration: 2, Func. Count: 17, Neg. LLF: 146.56311218560217
Iteration: 3, Func. Count: 24, Neg. LLF: 146.5651262896276
Iteration: 4, Func. Count: 32, Neg. LLF: 146.56291507427272
Iteration: 5, Func. Count: 39, Neg. LLF: 146.5619085455834
Iteration: 6, Func. Count: 46, Neg. LLF: 146.5588124052369
Iteration: 7, Func. Count: 53, Neg. LLF: 146.4957805495391
Iteration: 8, Func. Count: 60, Neg. LLF: 144.9346051746771
Iteration: 9, Func. Count: 67, Neg. LLF: 148.28294313791787
Iteration: 10, Func. Count: 75, Neg. LLF: 145.14503160725937
Iteration: 11, Func. Count: 83, Neg. LLF: 144.91447324797258
Iteration: 12, Func. Count: 90, Neg. LLF: 144.91446836291755
Iteration: 13, Func. Count: 96, Neg. LLF: 144.91446876009618
Optimization terminated successfully (Exit mode 0)
Current function value: 144.91446836291755
Iterations: 14
Function evaluations: 96
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 158.8041647699036
Iteration: 2, Func. Count: 18, Neg. LLF: 145.09336461957653
Iteration: 3, Func. Count: 26, Neg. LLF: 148.07896993449515
Iteration: 4, Func. Count: 35, Neg. LLF: 144.9687885429138
Iteration: 5, Func. Count: 43, Neg. LLF: 144.93620429065064
Iteration: 6, Func. Count: 51, Neg. LLF: 144.9340340320199
Iteration: 7, Func. Count: 59, Neg. LLF: 144.9335001843599
Iteration: 8, Func. Count: 67, Neg. LLF: 144.9332279585947
Iteration: 9, Func. Count: 75, Neg. LLF: 144.93164957705932
Iteration: 10, Func. Count: 83, Neg. LLF: 144.92435364275568
Iteration: 11, Func. Count: 91, Neg. LLF: 144.91451733639403
Iteration: 12, Func. Count: 99, Neg. LLF: 145.00293074688946
Iteration: 13, Func. Count: 109, Neg. LLF: 144.9145520848397
Iteration: 14, Func. Count: 117, Neg. LLF: 144.91446796542988
Optimization terminated successfully (Exit mode 0)
Current function value: 144.91446836195183
Iterations: 15
Function evaluations: 117
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 155.60331375462025
Iteration: 2, Func. Count: 20, Neg. LLF: 145.03294804081676
Iteration: 3, Func. Count: 29, Neg. LLF: 145.11477458481465
Iteration: 4, Func. Count: 39, Neg. LLF: 144.96109850842458
Iteration: 5, Func. Count: 48, Neg. LLF: 144.95460220408984
Iteration: 6, Func. Count: 57, Neg. LLF: 144.95095436454451
Iteration: 7, Func. Count: 66, Neg. LLF: 144.94748850684041
Iteration: 8, Func. Count: 75, Neg. LLF: 144.94685251530495
Iteration: 9, Func. Count: 84, Neg. LLF: 144.94679355108167
Iteration: 10, Func. Count: 92, Neg. LLF: 144.94679338367445
Optimization terminated successfully (Exit mode 0)
Current function value: 144.94679355108167
Iterations: 10
Function evaluations: 92
Gradient evaluations: 10
Iteration: 1, Func. Count: 11, Neg. LLF: 153.778522201973
Iteration: 2, Func. Count: 22, Neg. LLF: 145.01986409741608
Iteration: 3, Func. Count: 32, Neg. LLF: 145.0029049556127
Iteration: 4, Func. Count: 43, Neg. LLF: 144.95900157301622
Iteration: 5, Func. Count: 54, Neg. LLF: 144.94484902639277
Iteration: 6, Func. Count: 65, Neg. LLF: 144.92463648073766
Iteration: 7, Func. Count: 75, Neg. LLF: 144.8454477944827
Iteration: 8, Func. Count: 85, Neg. LLF: 144.78125950136388
Iteration: 9, Func. Count: 95, Neg. LLF: 144.58840743198843
Iteration: 10, Func. Count: 105, Neg. LLF: 144.0740959188889
Iteration: 11, Func. Count: 115, Neg. LLF: 32452517.479703695
Iteration: 12, Func. Count: 127, Neg. LLF: 144.21747560788296
Iteration: 13, Func. Count: 138, Neg. LLF: 143.756215690054
Iteration: 14, Func. Count: 149, Neg. LLF: 143.7209403511723
Iteration: 15, Func. Count: 160, Neg. LLF: 143.71399322745947
Iteration: 16, Func. Count: 170, Neg. LLF: 143.71399130809792
Iteration: 17, Func. Count: 179, Neg. LLF: 143.71399105329755
Optimization terminated successfully (Exit mode 0)
Current function value: 143.71399130809792
Iterations: 18
Function evaluations: 179
Gradient evaluations: 17
Iteration: 1, Func. Count: 8, Neg. LLF: 143.8515555406206
Iteration: 2, Func. Count: 15, Neg. LLF: 144.5029283003498
Iteration: 3, Func. Count: 23, Neg. LLF: 143.70102925190233
Iteration: 4, Func. Count: 30, Neg. LLF: 146.10445001775508
Iteration: 5, Func. Count: 38, Neg. LLF: 143.94977747132168
Iteration: 6, Func. Count: 46, Neg. LLF: 143.52054283069143
Iteration: 7, Func. Count: 53, Neg. LLF: 143.52036640840646
Iteration: 8, Func. Count: 60, Neg. LLF: 143.5203568138551
Iteration: 9, Func. Count: 66, Neg. LLF: 143.52035699975482
Optimization terminated successfully (Exit mode 0)
Current function value: 143.5203568138551
Iterations: 9
Function evaluations: 66
Gradient evaluations: 9
Iteration: 1, Func. Count: 9, Neg. LLF: 175.17791837747288
Iteration: 2, Func. Count: 19, Neg. LLF: 146.56323767356338
Iteration: 3, Func. Count: 27, Neg. LLF: 146.56498137843357
Iteration: 4, Func. Count: 36, Neg. LLF: 146.56294379862697
Iteration: 5, Func. Count: 44, Neg. LLF: 146.56231052742197
Iteration: 6, Func. Count: 52, Neg. LLF: 146.55914909706382
Iteration: 7, Func. Count: 60, Neg. LLF: 146.52696511429406
Iteration: 8, Func. Count: 68, Neg. LLF: 145.21656751216042
Iteration: 9, Func. Count: 76, Neg. LLF: 162.91721612196292
Iteration: 10, Func. Count: 89, Neg. LLF: 156.7016980056691
Iteration: 11, Func. Count: 99, Neg. LLF: 144.91621544343437
Iteration: 12, Func. Count: 107, Neg. LLF: 144.9151505368647
Iteration: 13, Func. Count: 115, Neg. LLF: 144.91446899215242
Iteration: 14, Func. Count: 123, Neg. LLF: 144.9144683615309
Optimization terminated successfully (Exit mode 0)
Current function value: 144.9144683615309
Iterations: 15
Function evaluations: 123
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 158.92818554895592
Iteration: 2, Func. Count: 20, Neg. LLF: 145.0874572864166
Iteration: 3, Func. Count: 29, Neg. LLF: 147.68319662049902
Iteration: 4, Func. Count: 39, Neg. LLF: 144.96591909434173
Iteration: 5, Func. Count: 48, Neg. LLF: 144.93587770326042
Iteration: 6, Func. Count: 57, Neg. LLF: 144.93400774945516
Iteration: 7, Func. Count: 66, Neg. LLF: 144.93349886937554
Iteration: 8, Func. Count: 75, Neg. LLF: 144.93321623526717
Iteration: 9, Func. Count: 84, Neg. LLF: 144.93166533951697
Iteration: 10, Func. Count: 93, Neg. LLF: 144.92493881842046
Iteration: 11, Func. Count: 102, Neg. LLF: 144.9144758968422
Iteration: 12, Func. Count: 111, Neg. LLF: 144.91752023727446
Optimization terminated successfully (Exit mode 0)
Current function value: 144.91447548338212
Iterations: 12
Function evaluations: 113
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 155.5186701059041
Iteration: 2, Func. Count: 22, Neg. LLF: 145.03148809207002
Iteration: 3, Func. Count: 32, Neg. LLF: 145.10398419079812
Iteration: 4, Func. Count: 43, Neg. LLF: 144.961247839501
Iteration: 5, Func. Count: 53, Neg. LLF: 144.95471971211595
Iteration: 6, Func. Count: 63, Neg. LLF: 144.95097284191417
Iteration: 7, Func. Count: 73, Neg. LLF: 144.94750226620195
Iteration: 8, Func. Count: 83, Neg. LLF: 144.9468534606899
Iteration: 9, Func. Count: 93, Neg. LLF: 144.94679354541495
Iteration: 10, Func. Count: 102, Neg. LLF: 144.94679337797635
Optimization terminated successfully (Exit mode 0)
Current function value: 144.94679354541495
Iterations: 10
Function evaluations: 102
Gradient evaluations: 10
Iteration: 1, Func. Count: 12, Neg. LLF: 153.80772345390866
Iteration: 2, Func. Count: 24, Neg. LLF: 145.0196611148889
Iteration: 3, Func. Count: 35, Neg. LLF: 145.0012980279466
Iteration: 4, Func. Count: 47, Neg. LLF: 144.9567035618194
Iteration: 5, Func. Count: 59, Neg. LLF: 144.94525480519584
Iteration: 6, Func. Count: 71, Neg. LLF: 144.92648737047998
Iteration: 7, Func. Count: 82, Neg. LLF: 144.84758303642485
Iteration: 8, Func. Count: 93, Neg. LLF: 144.79110691292993
Iteration: 9, Func. Count: 104, Neg. LLF: 144.53624818297146
Iteration: 10, Func. Count: 115, Neg. LLF: 32468044.47053081
Iteration: 11, Func. Count: 127, Neg. LLF: 143.7688980196081
Iteration: 12, Func. Count: 138, Neg. LLF: 144.06297157799344
Iteration: 13, Func. Count: 150, Neg. LLF: 143.75219940126976
Iteration: 14, Func. Count: 162, Neg. LLF: 143.71472719548356
Iteration: 15, Func. Count: 173, Neg. LLF: 143.71399239589567
Iteration: 16, Func. Count: 184, Neg. LLF: 143.71399122476487
Iteration: 17, Func. Count: 194, Neg. LLF: 143.71399096982105
Optimization terminated successfully (Exit mode 0)
Current function value: 143.71399122476487
Iterations: 18
Function evaluations: 194
Gradient evaluations: 17
Iteration: 1, Func. Count: 5, Neg. LLF: 147.5302787647896
Iteration: 2, Func. Count: 9, Neg. LLF: 147.88378296146672
Iteration: 3, Func. Count: 14, Neg. LLF: 145.9742197573207
Iteration: 4, Func. Count: 18, Neg. LLF: 145.89811636313908
Iteration: 5, Func. Count: 22, Neg. LLF: 145.89571163039662
Iteration: 6, Func. Count: 26, Neg. LLF: 145.8955933091247
Iteration: 7, Func. Count: 29, Neg. LLF: 145.89559333039233
Optimization terminated successfully (Exit mode 0)
Current function value: 145.8955933091247
Iterations: 7
Function evaluations: 29
Gradient evaluations: 7
Iteration: 1, Func. Count: 6, Neg. LLF: 163.3180764516125
Iteration: 2, Func. Count: 12, Neg. LLF: 145.4225970131077
Iteration: 3, Func. Count: 17, Neg. LLF: 495.12136978406255
Iteration: 4, Func. Count: 23, Neg. LLF: 144.92483886685923
Iteration: 5, Func. Count: 28, Neg. LLF: 144.9145682205332
Iteration: 6, Func. Count: 33, Neg. LLF: 144.91449617422222
Iteration: 7, Func. Count: 38, Neg. LLF: 144.91447480346847
Iteration: 8, Func. Count: 43, Neg. LLF: 144.9144683905022
Iteration: 9, Func. Count: 47, Neg. LLF: 144.91446878818581
Optimization terminated successfully (Exit mode 0)
Current function value: 144.9144683905022
Iterations: 9
Function evaluations: 47
Gradient evaluations: 9
Iteration: 1, Func. Count: 7, Neg. LLF: 159.17939623010284
Iteration: 2, Func. Count: 14, Neg. LLF: 145.20312917650043
Iteration: 3, Func. Count: 20, Neg. LLF: 149.77330995666316
Iteration: 4, Func. Count: 27, Neg. LLF: 144.96002985267336
Iteration: 5, Func. Count: 33, Neg. LLF: 144.9368951051844
Iteration: 6, Func. Count: 39, Neg. LLF: 144.9352621509088
Iteration: 7, Func. Count: 45, Neg. LLF: 144.93460032476216
Iteration: 8, Func. Count: 51, Neg. LLF: 144.93419698847086
Iteration: 9, Func. Count: 57, Neg. LLF: 144.93265075432114
Iteration: 10, Func. Count: 63, Neg. LLF: 144.930351949784
Iteration: 11, Func. Count: 69, Neg. LLF: 144.91975620531815
Iteration: 12, Func. Count: 75, Neg. LLF: 144.9145833166496
Iteration: 13, Func. Count: 81, Neg. LLF: 144.9144731338297
Iteration: 14, Func. Count: 87, Neg. LLF: 144.9146373347993
Optimization terminated successfully (Exit mode 0)
Current function value: 144.91447296741651
Iterations: 15
Function evaluations: 89
Gradient evaluations: 14
Iteration: 1, Func. Count: 8, Neg. LLF: 155.3683949089306
Iteration: 2, Func. Count: 16, Neg. LLF: 145.05407980436675
Iteration: 3, Func. Count: 23, Neg. LLF: 145.20412999261612
Iteration: 4, Func. Count: 31, Neg. LLF: 144.95661672631843
Iteration: 5, Func. Count: 38, Neg. LLF: 144.95298165807347
Iteration: 6, Func. Count: 45, Neg. LLF: 144.9468756062033
Iteration: 7, Func. Count: 52, Neg. LLF: 144.94684560915118
Iteration: 8, Func. Count: 59, Neg. LLF: 144.94679543363623
Iteration: 9, Func. Count: 66, Neg. LLF: 144.94679327816002
Iteration: 10, Func. Count: 72, Neg. LLF: 144.9467931104691
Optimization terminated successfully (Exit mode 0)
Current function value: 144.94679327816002
Iterations: 10
Function evaluations: 72
Gradient evaluations: 10
Iteration: 1, Func. Count: 9, Neg. LLF: 155.5133536448977
Iteration: 2, Func. Count: 18, Neg. LLF: 145.0289724375283
Iteration: 3, Func. Count: 26, Neg. LLF: 145.00176492998446
Iteration: 4, Func. Count: 34, Neg. LLF: 144.94157674105307
Iteration: 5, Func. Count: 42, Neg. LLF: 144.9403547643383
Iteration: 6, Func. Count: 51, Neg. LLF: 144.89973733022993
Iteration: 7, Func. Count: 59, Neg. LLF: 144.8383293446666
Iteration: 8, Func. Count: 67, Neg. LLF: 144.83826360519566
Iteration: 9, Func. Count: 75, Neg. LLF: 144.8382591499796
Iteration: 10, Func. Count: 82, Neg. LLF: 144.83825925923674
Optimization terminated successfully (Exit mode 0)
Current function value: 144.8382591499796
Iterations: 10
Function evaluations: 82
Gradient evaluations: 10
Iteration: 1, Func. Count: 6, Neg. LLF: 153.15507118022816
Iteration: 2, Func. Count: 12, Neg. LLF: 145.78828721008293
Iteration: 3, Func. Count: 18, Neg. LLF: 143.63323238099758
Iteration: 4, Func. Count: 23, Neg. LLF: 143.59106732691254
Iteration: 5, Func. Count: 28, Neg. LLF: 143.51117840108517
Iteration: 6, Func. Count: 33, Neg. LLF: 143.50694604735102
Iteration: 7, Func. Count: 38, Neg. LLF: 143.50474513595864
Iteration: 8, Func. Count: 43, Neg. LLF: 143.5035039245397
Iteration: 9, Func. Count: 48, Neg. LLF: 143.5019134078605
Iteration: 10, Func. Count: 53, Neg. LLF: 143.50183324321986
Iteration: 11, Func. Count: 58, Neg. LLF: 143.50182555979944
Iteration: 12, Func. Count: 62, Neg. LLF: 143.5018255561645
Optimization terminated successfully (Exit mode 0)
Current function value: 143.50182555979944
Iterations: 12
Function evaluations: 62
Gradient evaluations: 12
Iteration: 1, Func. Count: 7, Neg. LLF: 145.88041898060044
Iteration: 2, Func. Count: 14, Neg. LLF: 173.9732430759319
Iteration: 3, Func. Count: 22, Neg. LLF: 144.97931523154014
Iteration: 4, Func. Count: 28, Neg. LLF: 148.6130445710755
Iteration: 5, Func. Count: 35, Neg. LLF: 148.653165685373
Iteration: 6, Func. Count: 42, Neg. LLF: 145.78292923532817
Iteration: 7, Func. Count: 49, Neg. LLF: 144.7533293401223
Iteration: 8, Func. Count: 56, Neg. LLF: 144.52162256348365
Iteration: 9, Func. Count: 63, Neg. LLF: 144.34878386616734
Iteration: 10, Func. Count: 70, Neg. LLF: 142.9777492085822
Iteration: 11, Func. Count: 76, Neg. LLF: 144.51774334896643
Iteration: 12, Func. Count: 83, Neg. LLF: 142.54999418481265
Iteration: 13, Func. Count: 89, Neg. LLF: 142.53746311939253
Iteration: 14, Func. Count: 95, Neg. LLF: 142.52414488922045
Iteration: 15, Func. Count: 101, Neg. LLF: 142.52317282354346
Iteration: 16, Func. Count: 107, Neg. LLF: 142.52267538289982
Iteration: 17, Func. Count: 113, Neg. LLF: 142.52266603135638
Iteration: 18, Func. Count: 119, Neg. LLF: 142.52292222538122
Optimization terminated successfully (Exit mode 0)
Current function value: 142.52266600781218
Iterations: 19
Function evaluations: 121
Gradient evaluations: 18
Iteration: 1, Func. Count: 8, Neg. LLF: 145.5946292710602
Iteration: 2, Func. Count: 15, Neg. LLF: 145.45834875003536
Iteration: 3, Func. Count: 22, Neg. LLF: 168.16225540815768
Iteration: 4, Func. Count: 30, Neg. LLF: 148.03061114641926
Iteration: 5, Func. Count: 38, Neg. LLF: 166.1343554473674
Iteration: 6, Func. Count: 46, Neg. LLF: 144.8881902253882
Iteration: 7, Func. Count: 53, Neg. LLF: 144.79791825274015
Iteration: 8, Func. Count: 61, Neg. LLF: 143.92350502255547
Iteration: 9, Func. Count: 68, Neg. LLF: 143.1075784463063
Iteration: 10, Func. Count: 75, Neg. LLF: 144.36695820772343
Iteration: 11, Func. Count: 83, Neg. LLF: 144.66389935955448
Iteration: 12, Func. Count: 91, Neg. LLF: 144.25008195797398
Iteration: 13, Func. Count: 99, Neg. LLF: 144.27762546454963
Iteration: 14, Func. Count: 107, Neg. LLF: 142.6968007967184
Iteration: 15, Func. Count: 115, Neg. LLF: 142.53456592740494
Iteration: 16, Func. Count: 122, Neg. LLF: 142.5234130036776
Iteration: 17, Func. Count: 129, Neg. LLF: 142.52276870475336
Iteration: 18, Func. Count: 136, Neg. LLF: 142.5228096568461
Iteration: 19, Func. Count: 144, Neg. LLF: 142.52267057946656
Iteration: 20, Func. Count: 151, Neg. LLF: 142.52266892682064
Iteration: 21, Func. Count: 157, Neg. LLF: 142.522668611644
Optimization terminated successfully (Exit mode 0)
Current function value: 142.52266892682064
Iterations: 21
Function evaluations: 157
Gradient evaluations: 21
Iteration: 1, Func. Count: 9, Neg. LLF: 143.85027268673787
Iteration: 2, Func. Count: 17, Neg. LLF: 144.94301975215467
Iteration: 3, Func. Count: 26, Neg. LLF: 155.5960105052621
Iteration: 4, Func. Count: 35, Neg. LLF: 143.67828036298576
Iteration: 5, Func. Count: 44, Neg. LLF: 143.24609100440924
Iteration: 6, Func. Count: 52, Neg. LLF: 146.47523516671572
Iteration: 7, Func. Count: 61, Neg. LLF: 143.02417089754505
Iteration: 8, Func. Count: 69, Neg. LLF: 144.0851008983254
Iteration: 9, Func. Count: 79, Neg. LLF: 143.0034407780695
Iteration: 10, Func. Count: 87, Neg. LLF: 142.99444314166544
Iteration: 11, Func. Count: 95, Neg. LLF: 142.98024177354998
Iteration: 12, Func. Count: 103, Neg. LLF: 142.97689431104092
Iteration: 13, Func. Count: 111, Neg. LLF: 142.91225556567858
Iteration: 14, Func. Count: 119, Neg. LLF: 142.49587461614666
Iteration: 15, Func. Count: 127, Neg. LLF: 142.47322867412095
Iteration: 16, Func. Count: 135, Neg. LLF: 142.42376140339871
Iteration: 17, Func. Count: 143, Neg. LLF: 142.35108090531918
Iteration: 18, Func. Count: 151, Neg. LLF: 142.46841803583445
Iteration: 19, Func. Count: 160, Neg. LLF: 142.26265093199115
Iteration: 20, Func. Count: 168, Neg. LLF: 142.22641960093267
Iteration: 21, Func. Count: 176, Neg. LLF: 142.20750132300822
Iteration: 22, Func. Count: 184, Neg. LLF: 142.1880114080609
Iteration: 23, Func. Count: 192, Neg. LLF: 142.18174426923613
Iteration: 24, Func. Count: 200, Neg. LLF: 142.18114052835924
Iteration: 25, Func. Count: 208, Neg. LLF: 142.18113104470666
Iteration: 26, Func. Count: 216, Neg. LLF: 142.18110034326978
Iteration: 27, Func. Count: 234, Neg. LLF: 142.18115284356895
Iteration: 28, Func. Count: 243, Neg. LLF: 142.1811488653717
Iteration: 29, Func. Count: 252, Neg. LLF: 142.18115372026648
Optimization terminated successfully (Exit mode 0)
Current function value: 142.18114181741942
Iterations: 30
Function evaluations: 253
Gradient evaluations: 29
Iteration: 1, Func. Count: 10, Neg. LLF: 144.43571146588596
Iteration: 2, Func. Count: 19, Neg. LLF: 144.80728354962315
Iteration: 3, Func. Count: 29, Neg. LLF: 146.01243551460962
Iteration: 4, Func. Count: 39, Neg. LLF: 143.22475254302742
Iteration: 5, Func. Count: 48, Neg. LLF: 143.60642448608414
Iteration: 6, Func. Count: 58, Neg. LLF: 142.38692407729852
Iteration: 7, Func. Count: 67, Neg. LLF: 142.9521809964864
Iteration: 8, Func. Count: 77, Neg. LLF: 142.18691132614555
Iteration: 9, Func. Count: 86, Neg. LLF: 142.18163027832625
Iteration: 10, Func. Count: 95, Neg. LLF: 142.18173185561426
Iteration: 11, Func. Count: 105, Neg. LLF: 142.18114880156827
Iteration: 12, Func. Count: 113, Neg. LLF: 142.1811487244476
Optimization terminated successfully (Exit mode 0)
Current function value: 142.18114880156827
Iterations: 12
Function evaluations: 113
Gradient evaluations: 12
Iteration: 1, Func. Count: 7, Neg. LLF: 149.45293216153928
Iteration: 2, Func. Count: 14, Neg. LLF: 146.97044254745128
Iteration: 3, Func. Count: 21, Neg. LLF: 143.63663949732458
Iteration: 4, Func. Count: 27, Neg. LLF: 143.56510069510807
Iteration: 5, Func. Count: 33, Neg. LLF: 143.51379802055857
Iteration: 6, Func. Count: 39, Neg. LLF: 143.50920577486113
Iteration: 7, Func. Count: 45, Neg. LLF: 143.50640380714418
Iteration: 8, Func. Count: 51, Neg. LLF: 143.50185489174078
Iteration: 9, Func. Count: 57, Neg. LLF: 143.50182590644982
Iteration: 10, Func. Count: 62, Neg. LLF: 143.50182602732832
Optimization terminated successfully (Exit mode 0)
Current function value: 143.50182590644982
Iterations: 10
Function evaluations: 62
Gradient evaluations: 10
Iteration: 1, Func. Count: 8, Neg. LLF: 145.88179660426277
Iteration: 2, Func. Count: 16, Neg. LLF: 174.01738435799746
Iteration: 3, Func. Count: 25, Neg. LLF: 144.97748078237288
Iteration: 4, Func. Count: 32, Neg. LLF: 152.1610874473441
Iteration: 5, Func. Count: 40, Neg. LLF: 159.2439956047964
Iteration: 6, Func. Count: 48, Neg. LLF: 146.04787000390596
Iteration: 7, Func. Count: 56, Neg. LLF: 144.92406068138038
Iteration: 8, Func. Count: 64, Neg. LLF: 144.81840020753623
Iteration: 9, Func. Count: 72, Neg. LLF: 144.44524744964778
Iteration: 10, Func. Count: 80, Neg. LLF: 144.27649858179777
Iteration: 11, Func. Count: 88, Neg. LLF: 216.00117734188203
Iteration: 12, Func. Count: 96, Neg. LLF: 144.06614003856336
Iteration: 13, Func. Count: 104, Neg. LLF: 145.0512875619692
Iteration: 14, Func. Count: 112, Neg. LLF: 142.62365858083425
Iteration: 15, Func. Count: 119, Neg. LLF: 142.569448988338
Iteration: 16, Func. Count: 126, Neg. LLF: 142.53057132100503
Iteration: 17, Func. Count: 133, Neg. LLF: 142.52339526124422
Iteration: 18, Func. Count: 140, Neg. LLF: 142.5227596615083
Iteration: 19, Func. Count: 147, Neg. LLF: 142.52266552588233
Iteration: 20, Func. Count: 154, Neg. LLF: 142.52266886431755
Iteration: 21, Func. Count: 161, Neg. LLF: 142.52266789022815
Optimization terminated successfully (Exit mode 0)
Current function value: 142.52266886392883
Iterations: 21
Function evaluations: 171
Gradient evaluations: 21
Iteration: 1, Func. Count: 9, Neg. LLF: 145.60482029065705
Iteration: 2, Func. Count: 17, Neg. LLF: 145.46724686163003
Iteration: 3, Func. Count: 25, Neg. LLF: 184.52096510356907
Iteration: 4, Func. Count: 35, Neg. LLF: 149.2513291930279
Iteration: 5, Func. Count: 44, Neg. LLF: 158.16801173385088
Iteration: 6, Func. Count: 53, Neg. LLF: 144.78285324135155
Iteration: 7, Func. Count: 61, Neg. LLF: 144.8475116870167
Iteration: 8, Func. Count: 70, Neg. LLF: 143.8451075466979
Iteration: 9, Func. Count: 78, Neg. LLF: 142.89222236415435
Iteration: 10, Func. Count: 86, Neg. LLF: 144.46163284994893
Iteration: 11, Func. Count: 95, Neg. LLF: 144.70469320933407
Iteration: 12, Func. Count: 104, Neg. LLF: 144.26667091312805
Iteration: 13, Func. Count: 113, Neg. LLF: 142.72044523897824
Iteration: 14, Func. Count: 122, Neg. LLF: 142.52695624735082
Iteration: 15, Func. Count: 130, Neg. LLF: 142.52309903477658
Iteration: 16, Func. Count: 138, Neg. LLF: 142.52270998666503
Iteration: 17, Func. Count: 146, Neg. LLF: 142.52267875014954
Iteration: 18, Func. Count: 154, Neg. LLF: 142.5226690076435
Iteration: 19, Func. Count: 161, Neg. LLF: 142.5226686924938
Optimization terminated successfully (Exit mode 0)
Current function value: 142.5226690076435
Iterations: 19
Function evaluations: 161
Gradient evaluations: 19
Iteration: 1, Func. Count: 10, Neg. LLF: 143.8557742169701
Iteration: 2, Func. Count: 19, Neg. LLF: 144.7516925034107
Iteration: 3, Func. Count: 30, Neg. LLF: 206.92913819760838
Iteration: 4, Func. Count: 40, Neg. LLF: 156.4633575231431
Iteration: 5, Func. Count: 51, Neg. LLF: 143.67685425106765
Iteration: 6, Func. Count: 61, Neg. LLF: 143.95358155383803
Iteration: 7, Func. Count: 71, Neg. LLF: 143.248950087953
Iteration: 8, Func. Count: 80, Neg. LLF: 142.73433122055926
Iteration: 9, Func. Count: 89, Neg. LLF: 142.55040085518795
Iteration: 10, Func. Count: 98, Neg. LLF: 143.7801377645722
Iteration: 11, Func. Count: 108, Neg. LLF: 142.60127888357118
Iteration: 12, Func. Count: 118, Neg. LLF: 142.24059042404895
Iteration: 13, Func. Count: 127, Neg. LLF: 142.23912834464372
Iteration: 14, Func. Count: 136, Neg. LLF: 142.23683478375952
Iteration: 15, Func. Count: 145, Neg. LLF: 142.23670398760362
Iteration: 16, Func. Count: 154, Neg. LLF: 142.2366988036514
Iteration: 17, Func. Count: 163, Neg. LLF: 142.23669788103498
Optimization terminated successfully (Exit mode 0)
Current function value: 142.23669788103498
Iterations: 17
Function evaluations: 163
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 144.441456015483
Iteration: 2, Func. Count: 21, Neg. LLF: 144.68014785216735
Iteration: 3, Func. Count: 32, Neg. LLF: 146.60527543542227
Iteration: 4, Func. Count: 43, Neg. LLF: 143.20505153271608
Iteration: 5, Func. Count: 53, Neg. LLF: 165.72077205579453
Iteration: 6, Func. Count: 65, Neg. LLF: 177.1583099075123
Iteration: 7, Func. Count: 77, Neg. LLF: 142.61832577369836
Iteration: 8, Func. Count: 87, Neg. LLF: 144.52558207664092
Iteration: 9, Func. Count: 98, Neg. LLF: 144.2772080218363
Iteration: 10, Func. Count: 109, Neg. LLF: 144.1288768025355
Iteration: 11, Func. Count: 120, Neg. LLF: 142.43863349860587
Iteration: 12, Func. Count: 131, Neg. LLF: 142.21889094060396
Iteration: 13, Func. Count: 141, Neg. LLF: 142.21433583535082
Iteration: 14, Func. Count: 151, Neg. LLF: 142.20917585372695
Iteration: 15, Func. Count: 161, Neg. LLF: 142.20883524461027
Iteration: 16, Func. Count: 171, Neg. LLF: 142.20882061239948
Iteration: 17, Func. Count: 180, Neg. LLF: 142.20882052002028
Optimization terminated successfully (Exit mode 0)
Current function value: 142.20882061239948
Iterations: 17
Function evaluations: 180
Gradient evaluations: 17
Iteration: 1, Func. Count: 8, Neg. LLF: 147.2097674401173
Iteration: 2, Func. Count: 15, Neg. LLF: 146.70794005764432
Iteration: 3, Func. Count: 23, Neg. LLF: 144.98965624753916
Iteration: 4, Func. Count: 32, Neg. LLF: 143.83193073153754
Iteration: 5, Func. Count: 40, Neg. LLF: 143.55714720326796
Iteration: 6, Func. Count: 47, Neg. LLF: 143.49503444466882
Iteration: 7, Func. Count: 54, Neg. LLF: 143.45790308495938
Iteration: 8, Func. Count: 61, Neg. LLF: 143.45326963225943
Iteration: 9, Func. Count: 68, Neg. LLF: 143.4531421871343
Iteration: 10, Func. Count: 75, Neg. LLF: 143.45314161003904
Optimization terminated successfully (Exit mode 0)
Current function value: 143.45314161003904
Iterations: 10
Function evaluations: 75
Gradient evaluations: 10
Iteration: 1, Func. Count: 9, Neg. LLF: 145.88610749641902
Iteration: 2, Func. Count: 18, Neg. LLF: 173.9913137229783
Iteration: 3, Func. Count: 28, Neg. LLF: 144.97918643346983
Iteration: 4, Func. Count: 36, Neg. LLF: 152.5813043816267
Iteration: 5, Func. Count: 45, Neg. LLF: 152.27374119159387
Iteration: 6, Func. Count: 54, Neg. LLF: 146.76421742881098
Iteration: 7, Func. Count: 63, Neg. LLF: 144.93209619045592
Iteration: 8, Func. Count: 72, Neg. LLF: 144.35885773055267
Iteration: 9, Func. Count: 81, Neg. LLF: 144.0168431162258
Iteration: 10, Func. Count: 90, Neg. LLF: 143.53301495528854
Iteration: 11, Func. Count: 99, Neg. LLF: 142.69661777693565
Iteration: 12, Func. Count: 107, Neg. LLF: 142.57594968510023
Iteration: 13, Func. Count: 115, Neg. LLF: 142.52972822752403
Iteration: 14, Func. Count: 123, Neg. LLF: 142.5238481948546
Iteration: 15, Func. Count: 131, Neg. LLF: 142.52284449197285
Iteration: 16, Func. Count: 139, Neg. LLF: 142.52268270847273
Iteration: 17, Func. Count: 147, Neg. LLF: 142.52267369178162
Iteration: 18, Func. Count: 155, Neg. LLF: 142.52269867730624
Optimization terminated successfully (Exit mode 0)
Current function value: 142.52267340208607
Iterations: 19
Function evaluations: 156
Gradient evaluations: 18
Iteration: 1, Func. Count: 10, Neg. LLF: 145.62058675674646
Iteration: 2, Func. Count: 19, Neg. LLF: 145.57968161201566
Iteration: 3, Func. Count: 29, Neg. LLF: 147.38839636634899
Iteration: 4, Func. Count: 39, Neg. LLF: 158.07405666142316
Iteration: 5, Func. Count: 49, Neg. LLF: 156.20434021966804
Iteration: 6, Func. Count: 59, Neg. LLF: 151.90551477088087
Iteration: 7, Func. Count: 69, Neg. LLF: 151.18565284296247
Iteration: 8, Func. Count: 79, Neg. LLF: 152.77230237756527
Iteration: 9, Func. Count: 89, Neg. LLF: 146.2592205935234
Iteration: 10, Func. Count: 99, Neg. LLF: 144.2129033860384
Iteration: 11, Func. Count: 109, Neg. LLF: 143.6331200741342
Iteration: 12, Func. Count: 119, Neg. LLF: 148.7199403253035
Iteration: 13, Func. Count: 129, Neg. LLF: 143.55304533941788
Iteration: 14, Func. Count: 139, Neg. LLF: 143.07735010192943
Iteration: 15, Func. Count: 149, Neg. LLF: 142.59729778373315
Iteration: 16, Func. Count: 158, Neg. LLF: 142.52513285026023
Iteration: 17, Func. Count: 167, Neg. LLF: 142.52269080011237
Iteration: 18, Func. Count: 176, Neg. LLF: 142.52266962019996
Iteration: 19, Func. Count: 185, Neg. LLF: 142.52266904147456
Optimization terminated successfully (Exit mode 0)
Current function value: 142.52266904147456
Iterations: 19
Function evaluations: 185
Gradient evaluations: 19
Iteration: 1, Func. Count: 11, Neg. LLF: 143.85852461455096
Iteration: 2, Func. Count: 21, Neg. LLF: 144.76759209123847
Iteration: 3, Func. Count: 33, Neg. LLF: 217.97477695669542
Iteration: 4, Func. Count: 45, Neg. LLF: 156.68684980058634
Iteration: 5, Func. Count: 56, Neg. LLF: 144.12245071511165
Iteration: 6, Func. Count: 67, Neg. LLF: 143.33486961669263
Iteration: 7, Func. Count: 77, Neg. LLF: 143.02234106952682
Iteration: 8, Func. Count: 87, Neg. LLF: 143.02006957152
Iteration: 9, Func. Count: 98, Neg. LLF: 142.96769518782236
Iteration: 10, Func. Count: 108, Neg. LLF: 142.96020775990604
Iteration: 11, Func. Count: 118, Neg. LLF: 142.95711723923404
Iteration: 12, Func. Count: 128, Neg. LLF: 142.94749367787335
Iteration: 13, Func. Count: 138, Neg. LLF: 142.52498556739982
Iteration: 14, Func. Count: 148, Neg. LLF: 149.62143067999813
Iteration: 15, Func. Count: 160, Neg. LLF: 142.82840368469928
Iteration: 16, Func. Count: 171, Neg. LLF: 142.25671002095584
Iteration: 17, Func. Count: 181, Neg. LLF: 142.2378289136044
Iteration: 18, Func. Count: 191, Neg. LLF: 142.2319394171754
Iteration: 19, Func. Count: 201, Neg. LLF: 142.23090850983382
Iteration: 20, Func. Count: 221, Neg. LLF: 142.22709170484606
Iteration: 21, Func. Count: 241, Neg. LLF: 142.23434705496936
Iteration: 22, Func. Count: 252, Neg. LLF: 142.24128666760603
Iteration: 23, Func. Count: 263, Neg. LLF: 142.23692019692626
Iteration: 24, Func. Count: 274, Neg. LLF: 142.23673065316876
Iteration: 25, Func. Count: 285, Neg. LLF: 142.23756128724344
Iteration: 26, Func. Count: 296, Neg. LLF: 142.23669804128397
Iteration: 27, Func. Count: 305, Neg. LLF: 142.23669793869726
Optimization terminated successfully (Exit mode 0)
Current function value: 142.23669804128397
Iterations: 28
Function evaluations: 305
Gradient evaluations: 27
Iteration: 1, Func. Count: 12, Neg. LLF: 144.61758371869917
Iteration: 2, Func. Count: 23, Neg. LLF: 144.77281873936403
Iteration: 3, Func. Count: 35, Neg. LLF: 147.75931695948287
Iteration: 4, Func. Count: 47, Neg. LLF: 143.2357381742952
Iteration: 5, Func. Count: 58, Neg. LLF: 169.85596313932612
Iteration: 6, Func. Count: 71, Neg. LLF: 164.12862537412695
Iteration: 7, Func. Count: 83, Neg. LLF: 142.84197344247707
Iteration: 8, Func. Count: 94, Neg. LLF: 142.6404907389273
Iteration: 9, Func. Count: 105, Neg. LLF: 142.3287801053483
Iteration: 10, Func. Count: 116, Neg. LLF: 142.2430317932317
Iteration: 11, Func. Count: 127, Neg. LLF: 142.27739081817808
Iteration: 12, Func. Count: 139, Neg. LLF: 142.2413678795815
Iteration: 13, Func. Count: 151, Neg. LLF: 142.21911551471828
Iteration: 14, Func. Count: 162, Neg. LLF: 142.2092328055793
Iteration: 15, Func. Count: 173, Neg. LLF: 142.2088687520799
Iteration: 16, Func. Count: 184, Neg. LLF: 142.2088202455271
Iteration: 17, Func. Count: 194, Neg. LLF: 142.20882015336858
Optimization terminated successfully (Exit mode 0)
Current function value: 142.2088202455271
Iterations: 17
Function evaluations: 194
Gradient evaluations: 17
Iteration: 1, Func. Count: 9, Neg. LLF: 146.0663570294527
Iteration: 2, Func. Count: 17, Neg. LLF: 147.35163988521415
Iteration: 3, Func. Count: 26, Neg. LLF: 144.75632265522822
Iteration: 4, Func. Count: 36, Neg. LLF: 143.84069401201103
Iteration: 5, Func. Count: 45, Neg. LLF: 143.57752044294108
Iteration: 6, Func. Count: 53, Neg. LLF: 143.50702990482228
Iteration: 7, Func. Count: 61, Neg. LLF: 143.46177518438475
Iteration: 8, Func. Count: 69, Neg. LLF: 143.45341436475607
Iteration: 9, Func. Count: 77, Neg. LLF: 143.45315416075013
Iteration: 10, Func. Count: 85, Neg. LLF: 143.45314169752172
Iteration: 11, Func. Count: 92, Neg. LLF: 143.45314188830758
Optimization terminated successfully (Exit mode 0)
Current function value: 143.45314169752172
Iterations: 11
Function evaluations: 92
Gradient evaluations: 11
Iteration: 1, Func. Count: 10, Neg. LLF: 145.88844421926976
Iteration: 2, Func. Count: 20, Neg. LLF: 173.9386853664816
Iteration: 3, Func. Count: 31, Neg. LLF: 144.9811075569948
Iteration: 4, Func. Count: 40, Neg. LLF: 152.86266901065878
Iteration: 5, Func. Count: 50, Neg. LLF: 151.34600153151436
Iteration: 6, Func. Count: 60, Neg. LLF: 146.61968637951813
Iteration: 7, Func. Count: 70, Neg. LLF: 144.92726207683867
Iteration: 8, Func. Count: 80, Neg. LLF: 144.41461448771582
Iteration: 9, Func. Count: 90, Neg. LLF: 144.08191693234025
Iteration: 10, Func. Count: 100, Neg. LLF: 142.7956580360044
Iteration: 11, Func. Count: 109, Neg. LLF: 142.61416458370468
Iteration: 12, Func. Count: 118, Neg. LLF: 142.53910430877355
Iteration: 13, Func. Count: 127, Neg. LLF: 142.52786452547778
Iteration: 14, Func. Count: 136, Neg. LLF: 142.51832520467036
Iteration: 15, Func. Count: 145, Neg. LLF: 142.52846572036393
Iteration: 16, Func. Count: 155, Neg. LLF: 142.54338134338536
Iteration: 17, Func. Count: 166, Neg. LLF: 142.52330959265174
Iteration: 18, Func. Count: 176, Neg. LLF: 142.52266901553165
Iteration: 19, Func. Count: 184, Neg. LLF: 142.52266869105523
Optimization terminated successfully (Exit mode 0)
Current function value: 142.52266901553165
Iterations: 20
Function evaluations: 184
Gradient evaluations: 19
Iteration: 1, Func. Count: 11, Neg. LLF: 145.62452647075955
Iteration: 2, Func. Count: 21, Neg. LLF: 145.52871528538054
Iteration: 3, Func. Count: 31, Neg. LLF: 146.04180566953
Iteration: 4, Func. Count: 42, Neg. LLF: 174.71089312638415
Iteration: 5, Func. Count: 53, Neg. LLF: 149.92811499941877
Iteration: 6, Func. Count: 64, Neg. LLF: 155.00995491988874
Iteration: 7, Func. Count: 75, Neg. LLF: 157.95066312984594
Iteration: 8, Func. Count: 86, Neg. LLF: 148.2965781653941
Iteration: 9, Func. Count: 97, Neg. LLF: 147.11014168154617
Iteration: 10, Func. Count: 108, Neg. LLF: 145.67575087408756
Iteration: 11, Func. Count: 119, Neg. LLF: 144.51838975168408
Iteration: 12, Func. Count: 130, Neg. LLF: 144.09676906091076
Iteration: 13, Func. Count: 141, Neg. LLF: 200.21185528343233
Iteration: 14, Func. Count: 152, Neg. LLF: 143.87656286504415
Iteration: 15, Func. Count: 163, Neg. LLF: 145.06348655532295
Iteration: 16, Func. Count: 174, Neg. LLF: 142.5877148733411
Iteration: 17, Func. Count: 184, Neg. LLF: 144.49015573038082
Iteration: 18, Func. Count: 196, Neg. LLF: 142.5339369811685
Iteration: 19, Func. Count: 206, Neg. LLF: 142.52339204109327
Iteration: 20, Func. Count: 216, Neg. LLF: 142.52271039420208
Iteration: 21, Func. Count: 226, Neg. LLF: 142.52266978704225
Iteration: 22, Func. Count: 236, Neg. LLF: 142.52266902822973
Optimization terminated successfully (Exit mode 0)
Current function value: 142.52266902822973
Iterations: 22
Function evaluations: 236
Gradient evaluations: 22
Iteration: 1, Func. Count: 12, Neg. LLF: 143.86037188028268
Iteration: 2, Func. Count: 23, Neg. LLF: 144.77712386705534
Iteration: 3, Func. Count: 36, Neg. LLF: 222.97727747678002
Iteration: 4, Func. Count: 49, Neg. LLF: 156.979078669495
Iteration: 5, Func. Count: 61, Neg. LLF: 144.18334085283297
Iteration: 6, Func. Count: 73, Neg. LLF: 143.3508165692621
Iteration: 7, Func. Count: 84, Neg. LLF: 143.03286197350172
Iteration: 8, Func. Count: 95, Neg. LLF: 143.01512752145993
Iteration: 9, Func. Count: 106, Neg. LLF: 142.96954685002888
Iteration: 10, Func. Count: 117, Neg. LLF: 142.96128649568428
Iteration: 11, Func. Count: 128, Neg. LLF: 142.95693544845687
Iteration: 12, Func. Count: 139, Neg. LLF: 142.95413177246067
Iteration: 13, Func. Count: 150, Neg. LLF: 142.9269239229074
Iteration: 14, Func. Count: 161, Neg. LLF: 142.57737055837086
Iteration: 15, Func. Count: 172, Neg. LLF: 142.5674124110696
Iteration: 16, Func. Count: 183, Neg. LLF: 142.50920220832705
Iteration: 17, Func. Count: 194, Neg. LLF: 142.42643307986822
Iteration: 18, Func. Count: 205, Neg. LLF: 142.3625347528403
Iteration: 19, Func. Count: 216, Neg. LLF: 142.28568285412243
Iteration: 20, Func. Count: 227, Neg. LLF: 142.01664146527628
Iteration: 21, Func. Count: 238, Neg. LLF: 145.96573727221596
Iteration: 22, Func. Count: 250, Neg. LLF: 142.47978601583915
Iteration: 23, Func. Count: 262, Neg. LLF: 142.20428277667935
Iteration: 24, Func. Count: 273, Neg. LLF: 142.19907174095167
Iteration: 25, Func. Count: 284, Neg. LLF: 142.21876044036986
Iteration: 26, Func. Count: 296, Neg. LLF: 142.18121289337802
Iteration: 27, Func. Count: 307, Neg. LLF: 142.18114880953377
Iteration: 28, Func. Count: 317, Neg. LLF: 142.18114870175026
Optimization terminated successfully (Exit mode 0)
Current function value: 142.18114880953377
Iterations: 29
Function evaluations: 317
Gradient evaluations: 28
Iteration: 1, Func. Count: 13, Neg. LLF: 144.43577708274697
Iteration: 2, Func. Count: 25, Neg. LLF: 144.51364558896714
Iteration: 3, Func. Count: 38, Neg. LLF: 145.99959443226757
Iteration: 4, Func. Count: 51, Neg. LLF: 143.15274147543644
Iteration: 5, Func. Count: 63, Neg. LLF: 169.18360868621247
Iteration: 6, Func. Count: 77, Neg. LLF: 166.80773005514442
Iteration: 7, Func. Count: 91, Neg. LLF: 142.5268977694013
Iteration: 8, Func. Count: 103, Neg. LLF: 144.231707544673
Iteration: 9, Func. Count: 116, Neg. LLF: 144.3981965399485
Iteration: 10, Func. Count: 129, Neg. LLF: 143.2185270437852
Iteration: 11, Func. Count: 142, Neg. LLF: 142.2638609059117
Iteration: 12, Func. Count: 154, Neg. LLF: 142.21031691753032
Iteration: 13, Func. Count: 166, Neg. LLF: 142.20902911912682
Iteration: 14, Func. Count: 178, Neg. LLF: 142.20887294551778
Iteration: 15, Func. Count: 190, Neg. LLF: 142.2088202908917
Iteration: 16, Func. Count: 201, Neg. LLF: 142.20882019871192
Optimization terminated successfully (Exit mode 0)
Current function value: 142.2088202908917
Iterations: 16
Function evaluations: 201
Gradient evaluations: 16
Iteration: 1, Func. Count: 6, Neg. LLF: 146.96901114437009
Iteration: 2, Func. Count: 11, Neg. LLF: 151.37273819541576
Iteration: 3, Func. Count: 17, Neg. LLF: 146.041185082931
Iteration: 4, Func. Count: 22, Neg. LLF: 145.91876272411284
Iteration: 5, Func. Count: 27, Neg. LLF: 145.89818924331456
Iteration: 6, Func. Count: 32, Neg. LLF: 145.8956086734727
Iteration: 7, Func. Count: 37, Neg. LLF: 145.89559331696586
Iteration: 8, Func. Count: 41, Neg. LLF: 145.89559335767646
Optimization terminated successfully (Exit mode 0)
Current function value: 145.89559331696586
Iterations: 8
Function evaluations: 41
Gradient evaluations: 8
Iteration: 1, Func. Count: 7, Neg. LLF: 151.79956610370473
Iteration: 2, Func. Count: 15, Neg. LLF: 163.82913438305357
Iteration: 3, Func. Count: 22, Neg. LLF: 146.53938034652597
Iteration: 4, Func. Count: 29, Neg. LLF: 146.23474904126385
Iteration: 5, Func. Count: 35, Neg. LLF: 146.22929643761194
Iteration: 6, Func. Count: 41, Neg. LLF: 146.2136163479384
Iteration: 7, Func. Count: 47, Neg. LLF: 146.20432480260578
Iteration: 8, Func. Count: 53, Neg. LLF: 146.1946517523747
Iteration: 9, Func. Count: 59, Neg. LLF: 146.19293168011177
Iteration: 10, Func. Count: 65, Neg. LLF: 146.1929051665032
Iteration: 11, Func. Count: 71, Neg. LLF: 146.19290442168972
Optimization terminated successfully (Exit mode 0)
Current function value: 146.19290442168972
Iterations: 11
Function evaluations: 71
Gradient evaluations: 11
Iteration: 1, Func. Count: 8, Neg. LLF: 158.64080813836028
Iteration: 2, Func. Count: 16, Neg. LLF: 145.2131027958302
Iteration: 3, Func. Count: 23, Neg. LLF: 151.8281389961254
Iteration: 4, Func. Count: 31, Neg. LLF: 144.95475896519147
Iteration: 5, Func. Count: 38, Neg. LLF: 144.93636355802977
Iteration: 6, Func. Count: 45, Neg. LLF: 144.93504848921364
Iteration: 7, Func. Count: 52, Neg. LLF: 144.93475452397982
Iteration: 8, Func. Count: 59, Neg. LLF: 144.93423483595922
Iteration: 9, Func. Count: 66, Neg. LLF: 144.931569729419
Iteration: 10, Func. Count: 73, Neg. LLF: 144.9277058566292
Iteration: 11, Func. Count: 80, Neg. LLF: 144.91557519786133
Iteration: 12, Func. Count: 87, Neg. LLF: 144.9148118008654
Iteration: 13, Func. Count: 94, Neg. LLF: 144.91456755367534
Iteration: 14, Func. Count: 101, Neg. LLF: 144.9144700445442
Iteration: 15, Func. Count: 107, Neg. LLF: 144.91446964437125
Optimization terminated successfully (Exit mode 0)
Current function value: 144.9144700445442
Iterations: 15
Function evaluations: 107
Gradient evaluations: 15
Iteration: 1, Func. Count: 9, Neg. LLF: 155.91472911877668
Iteration: 2, Func. Count: 18, Neg. LLF: 145.05725995025
Iteration: 3, Func. Count: 26, Neg. LLF: 145.20080259710014
Iteration: 4, Func. Count: 35, Neg. LLF: 144.95598426098925
Iteration: 5, Func. Count: 43, Neg. LLF: 144.95252158853128
Iteration: 6, Func. Count: 51, Neg. LLF: 144.94700345196537
Iteration: 7, Func. Count: 59, Neg. LLF: 144.94679471754816
Iteration: 8, Func. Count: 67, Neg. LLF: 144.94679368430144
Iteration: 9, Func. Count: 74, Neg. LLF: 144.94679351605612
Optimization terminated successfully (Exit mode 0)
Current function value: 144.94679368430144
Iterations: 9
Function evaluations: 74
Gradient evaluations: 9
Iteration: 1, Func. Count: 10, Neg. LLF: 155.41536979359722
Iteration: 2, Func. Count: 20, Neg. LLF: 145.02658508585574
Iteration: 3, Func. Count: 29, Neg. LLF: 144.99850638759187
Iteration: 4, Func. Count: 38, Neg. LLF: 144.9366421931168
Iteration: 5, Func. Count: 47, Neg. LLF: 144.93515059889032
Iteration: 6, Func. Count: 57, Neg. LLF: 144.87152624366104
Iteration: 7, Func. Count: 66, Neg. LLF: 144.83835796487512
Iteration: 8, Func. Count: 75, Neg. LLF: 144.83923578093848
Iteration: 9, Func. Count: 85, Neg. LLF: 144.83826063477733
Optimization terminated successfully (Exit mode 0)
Current function value: 144.83825893225713
Iterations: 10
Function evaluations: 86
Gradient evaluations: 9
Iteration: 1, Func. Count: 7, Neg. LLF: 145.61208062635941
Iteration: 2, Func. Count: 13, Neg. LLF: 146.52360769964582
Iteration: 3, Func. Count: 20, Neg. LLF: 143.7684230130085
Iteration: 4, Func. Count: 27, Neg. LLF: 143.55399174394427
Iteration: 5, Func. Count: 33, Neg. LLF: 143.52301277708224
Iteration: 6, Func. Count: 39, Neg. LLF: 143.5049650324506
Iteration: 7, Func. Count: 45, Neg. LLF: 143.50191220925706
Iteration: 8, Func. Count: 51, Neg. LLF: 143.5018259137301
Iteration: 9, Func. Count: 56, Neg. LLF: 143.50182591009954
Optimization terminated successfully (Exit mode 0)
Current function value: 143.5018259137301
Iterations: 9
Function evaluations: 56
Gradient evaluations: 9
Iteration: 1, Func. Count: 8, Neg. LLF: 158.1251836978756
Iteration: 2, Func. Count: 16, Neg. LLF: 150.67604244743663
Iteration: 3, Func. Count: 24, Neg. LLF: 145.1864200203067
Iteration: 4, Func. Count: 31, Neg. LLF: 144.71821679980525
Iteration: 5, Func. Count: 38, Neg. LLF: 144.62485964096606
Iteration: 6, Func. Count: 46, Neg. LLF: 144.14654633745215
Iteration: 7, Func. Count: 53, Neg. LLF: 143.42012887636702
Iteration: 8, Func. Count: 60, Neg. LLF: 146.58088874760298
Iteration: 9, Func. Count: 68, Neg. LLF: 147.84718127792726
Iteration: 10, Func. Count: 76, Neg. LLF: 146.2923202697957
Iteration: 11, Func. Count: 84, Neg. LLF: 146.94537575935172
Iteration: 12, Func. Count: 92, Neg. LLF: 145.16532389666895
Iteration: 13, Func. Count: 100, Neg. LLF: 144.76944516950044
Iteration: 14, Func. Count: 108, Neg. LLF: 144.64609501312037
Iteration: 15, Func. Count: 116, Neg. LLF: 142.57681882126548
Iteration: 16, Func. Count: 123, Neg. LLF: 142.54916509010678
Iteration: 17, Func. Count: 130, Neg. LLF: 142.53014990751228
Iteration: 18, Func. Count: 137, Neg. LLF: 142.52284479744063
Iteration: 19, Func. Count: 144, Neg. LLF: 142.5226738776672
Iteration: 20, Func. Count: 151, Neg. LLF: 142.52266907452864
Iteration: 21, Func. Count: 157, Neg. LLF: 142.5226687501877
Optimization terminated successfully (Exit mode 0)
Current function value: 142.52266907452864
Iterations: 21
Function evaluations: 157
Gradient evaluations: 21
Iteration: 1, Func. Count: 9, Neg. LLF: 158.18830632382603
Iteration: 2, Func. Count: 18, Neg. LLF: 150.84469971955104
Iteration: 3, Func. Count: 27, Neg. LLF: 146.7137591776501
Iteration: 4, Func. Count: 36, Neg. LLF: 145.13705581802483
Iteration: 5, Func. Count: 44, Neg. LLF: 144.9580802196481
Iteration: 6, Func. Count: 52, Neg. LLF: 144.63237226014817
Iteration: 7, Func. Count: 60, Neg. LLF: 146.90822475845667
Iteration: 8, Func. Count: 69, Neg. LLF: 143.978899031354
Iteration: 9, Func. Count: 77, Neg. LLF: 143.19380300792494
Iteration: 10, Func. Count: 85, Neg. LLF: 145.32246877137015
Iteration: 11, Func. Count: 94, Neg. LLF: 144.94638080886003
Iteration: 12, Func. Count: 103, Neg. LLF: 144.60251833881833
Iteration: 13, Func. Count: 112, Neg. LLF: 142.89187066288932
Iteration: 14, Func. Count: 121, Neg. LLF: 143.86826112790916
Iteration: 15, Func. Count: 130, Neg. LLF: 142.54633780794722
Iteration: 16, Func. Count: 138, Neg. LLF: 142.52888191393419
Iteration: 17, Func. Count: 146, Neg. LLF: 142.52341389090364
Iteration: 18, Func. Count: 154, Neg. LLF: 142.52267707387892
Iteration: 19, Func. Count: 162, Neg. LLF: 142.52266906603685
Iteration: 20, Func. Count: 169, Neg. LLF: 142.52266875072044
Optimization terminated successfully (Exit mode 0)
Current function value: 142.52266906603685
Iterations: 20
Function evaluations: 169
Gradient evaluations: 20
Iteration: 1, Func. Count: 10, Neg. LLF: 148.83602640531925
Iteration: 2, Func. Count: 20, Neg. LLF: 155.8887359745976
Iteration: 3, Func. Count: 30, Neg. LLF: 144.2577607897503
Iteration: 4, Func. Count: 39, Neg. LLF: 144.33047131265434
Iteration: 5, Func. Count: 49, Neg. LLF: 143.91765763062276
Iteration: 6, Func. Count: 58, Neg. LLF: 143.31851573659102
Iteration: 7, Func. Count: 67, Neg. LLF: 143.83879268272798
Iteration: 8, Func. Count: 77, Neg. LLF: 142.98446064080483
Iteration: 9, Func. Count: 87, Neg. LLF: 142.9314112394167
Iteration: 10, Func. Count: 97, Neg. LLF: 142.92779628312664
Iteration: 11, Func. Count: 106, Neg. LLF: 142.9103866935397
Iteration: 12, Func. Count: 115, Neg. LLF: 142.7480068717086
Iteration: 13, Func. Count: 124, Neg. LLF: 142.34472545122551
Iteration: 14, Func. Count: 133, Neg. LLF: 142.81066920504352
Iteration: 15, Func. Count: 143, Neg. LLF: 142.24545746687568
Iteration: 16, Func. Count: 152, Neg. LLF: 141.96180660067262
Iteration: 17, Func. Count: 162, Neg. LLF: 142.63722156968362
Iteration: 18, Func. Count: 172, Neg. LLF: 142.64131666656286
Iteration: 19, Func. Count: 182, Neg. LLF: 142.59197679566373
Iteration: 20, Func. Count: 192, Neg. LLF: 142.24102888954775
Iteration: 21, Func. Count: 201, Neg. LLF: 142.2499573911594
Iteration: 22, Func. Count: 211, Neg. LLF: 142.23704509715483
Iteration: 23, Func. Count: 220, Neg. LLF: 142.2366995531788
Iteration: 24, Func. Count: 229, Neg. LLF: 142.2366979016834
Iteration: 25, Func. Count: 237, Neg. LLF: 142.23669779916065
Optimization terminated successfully (Exit mode 0)
Current function value: 142.2366979016834
Iterations: 26
Function evaluations: 237
Gradient evaluations: 25
Iteration: 1, Func. Count: 11, Neg. LLF: 145.7422161428368
Iteration: 2, Func. Count: 22, Neg. LLF: 144.55238775040678
Iteration: 3, Func. Count: 33, Neg. LLF: 142.9760699710868
Iteration: 4, Func. Count: 43, Neg. LLF: 143.06181124065753
Iteration: 5, Func. Count: 54, Neg. LLF: 143.8953974060926
Iteration: 6, Func. Count: 65, Neg. LLF: 142.31499612453445
Iteration: 7, Func. Count: 75, Neg. LLF: 143.9436168700709
Iteration: 8, Func. Count: 86, Neg. LLF: 142.31540737017266
Iteration: 9, Func. Count: 97, Neg. LLF: 142.1817694059909
Iteration: 10, Func. Count: 107, Neg. LLF: 142.18126234459945
Iteration: 11, Func. Count: 117, Neg. LLF: 142.18115457735956
Iteration: 12, Func. Count: 127, Neg. LLF: 142.18114905563988
Iteration: 13, Func. Count: 136, Neg. LLF: 142.18114897852604
Optimization terminated successfully (Exit mode 0)
Current function value: 142.18114905563988
Iterations: 13
Function evaluations: 136
Gradient evaluations: 13
Iteration: 1, Func. Count: 8, Neg. LLF: 144.65873841189116
Iteration: 2, Func. Count: 15, Neg. LLF: 145.00508205874758
Iteration: 3, Func. Count: 23, Neg. LLF: 144.01339966227528
Iteration: 4, Func. Count: 31, Neg. LLF: 143.53989407829647
Iteration: 5, Func. Count: 38, Neg. LLF: 143.36881474398763
Iteration: 6, Func. Count: 45, Neg. LLF: 143.26974352488645
Iteration: 7, Func. Count: 52, Neg. LLF: 143.14019267054798
Iteration: 8, Func. Count: 59, Neg. LLF: 143.0294752957124
Iteration: 9, Func. Count: 66, Neg. LLF: 142.9992253401493
Iteration: 10, Func. Count: 73, Neg. LLF: 142.9959445156591
Iteration: 11, Func. Count: 80, Neg. LLF: 142.99589261337042
Iteration: 12, Func. Count: 86, Neg. LLF: 142.99589250171297
Optimization terminated successfully (Exit mode 0)
Current function value: 142.99589261337042
Iterations: 12
Function evaluations: 86
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 154.74470942060773
Iteration: 2, Func. Count: 18, Neg. LLF: 147.27555736117824
Iteration: 3, Func. Count: 27, Neg. LLF: 143.7775102806619
Iteration: 4, Func. Count: 35, Neg. LLF: 143.3488395709506
Iteration: 5, Func. Count: 43, Neg. LLF: 143.2592629857549
Iteration: 6, Func. Count: 51, Neg. LLF: 143.05318587490257
Iteration: 7, Func. Count: 59, Neg. LLF: 142.97632621825264
Iteration: 8, Func. Count: 67, Neg. LLF: 142.7084376566253
Iteration: 9, Func. Count: 75, Neg. LLF: 142.49780049945824
Iteration: 10, Func. Count: 83, Neg. LLF: 145.84349499869563
Iteration: 11, Func. Count: 92, Neg. LLF: 145.60265597631906
Iteration: 12, Func. Count: 101, Neg. LLF: 142.17291881889915
Iteration: 13, Func. Count: 109, Neg. LLF: 145.29463408569345
Iteration: 14, Func. Count: 118, Neg. LLF: 146.58484734747884
Iteration: 15, Func. Count: 127, Neg. LLF: 144.8785885769004
Iteration: 16, Func. Count: 136, Neg. LLF: 142.11481168156357
Iteration: 17, Func. Count: 145, Neg. LLF: 142.01675638624883
Iteration: 18, Func. Count: 153, Neg. LLF: 142.01572097498178
Iteration: 19, Func. Count: 161, Neg. LLF: 142.01564365699235
Iteration: 20, Func. Count: 169, Neg. LLF: 142.01563905015192
Iteration: 21, Func. Count: 177, Neg. LLF: 142.0156402954931
Iteration: 22, Func. Count: 185, Neg. LLF: 142.01563942352658
Optimization terminated successfully (Exit mode 0)
Current function value: 142.0156402954587
Iterations: 22
Function evaluations: 195
Gradient evaluations: 22
Iteration: 1, Func. Count: 10, Neg. LLF: 154.865474675952
Iteration: 2, Func. Count: 20, Neg. LLF: 145.4831740783649
Iteration: 3, Func. Count: 30, Neg. LLF: 142.04747814619049
Iteration: 4, Func. Count: 39, Neg. LLF: 147.15080254449822
Iteration: 5, Func. Count: 49, Neg. LLF: 142.37279015196165
Iteration: 6, Func. Count: 59, Neg. LLF: 142.11108759489582
Iteration: 7, Func. Count: 69, Neg. LLF: 141.59044917436253
Iteration: 8, Func. Count: 78, Neg. LLF: 141.4993044500835
Iteration: 9, Func. Count: 87, Neg. LLF: 141.34691043650335
Iteration: 10, Func. Count: 96, Neg. LLF: 141.15582803442214
Iteration: 11, Func. Count: 105, Neg. LLF: 141.06087553403728
Iteration: 12, Func. Count: 115, Neg. LLF: 140.92213119888163
Iteration: 13, Func. Count: 124, Neg. LLF: 140.8786471511206
Iteration: 14, Func. Count: 133, Neg. LLF: 140.87314677177346
Iteration: 15, Func. Count: 142, Neg. LLF: 140.87249432895828
Iteration: 16, Func. Count: 151, Neg. LLF: 140.87247088307743
Iteration: 17, Func. Count: 160, Neg. LLF: 140.87247099866138
Iteration: 18, Func. Count: 169, Neg. LLF: 140.8724686125587
Optimization terminated successfully (Exit mode 0)
Current function value: 140.87246870581578
Iterations: 18
Function evaluations: 169
Gradient evaluations: 18
Iteration: 1, Func. Count: 11, Neg. LLF: 155.25762916999844
Iteration: 2, Func. Count: 22, Neg. LLF: 144.97079787132552
Iteration: 3, Func. Count: 33, Neg. LLF: 142.24623640110616
Iteration: 4, Func. Count: 43, Neg. LLF: 147.91899780180242
Iteration: 5, Func. Count: 54, Neg. LLF: 142.93493744661637
Iteration: 6, Func. Count: 65, Neg. LLF: 141.60462105453277
Iteration: 7, Func. Count: 75, Neg. LLF: 141.60485495706826
Iteration: 8, Func. Count: 86, Neg. LLF: 141.50003897171976
Iteration: 9, Func. Count: 96, Neg. LLF: 141.46200269717144
Iteration: 10, Func. Count: 106, Neg. LLF: 141.43902574823335
Iteration: 11, Func. Count: 116, Neg. LLF: 141.39743978118503
Iteration: 12, Func. Count: 126, Neg. LLF: 143.06475809929202
Iteration: 13, Func. Count: 137, Neg. LLF: 141.31212272367134
Iteration: 14, Func. Count: 147, Neg. LLF: 141.23818719527497
Iteration: 15, Func. Count: 157, Neg. LLF: 141.13996060907115
Iteration: 16, Func. Count: 167, Neg. LLF: 141.10887618282513
Iteration: 17, Func. Count: 177, Neg. LLF: 141.10537417901048
Iteration: 18, Func. Count: 187, Neg. LLF: 141.10470886112444
Iteration: 19, Func. Count: 197, Neg. LLF: 141.1046316783488
Iteration: 20, Func. Count: 207, Neg. LLF: 141.10462817137847
Iteration: 21, Func. Count: 216, Neg. LLF: 141.10462831180007
Optimization terminated successfully (Exit mode 0)
Current function value: 141.10462817137847
Iterations: 21
Function evaluations: 216
Gradient evaluations: 21
Iteration: 1, Func. Count: 12, Neg. LLF: 162.89334398282014
Iteration: 2, Func. Count: 24, Neg. LLF: 145.8813964757747
Iteration: 3, Func. Count: 36, Neg. LLF: 141.1355544552937
Iteration: 4, Func. Count: 47, Neg. LLF: 141.5014094085809
Iteration: 5, Func. Count: 59, Neg. LLF: 141.15066753925746
Iteration: 6, Func. Count: 71, Neg. LLF: 140.9857356315122
Iteration: 7, Func. Count: 82, Neg. LLF: 140.91600455413052
Iteration: 8, Func. Count: 93, Neg. LLF: 140.87684750180128
Iteration: 9, Func. Count: 104, Neg. LLF: 140.87272797024082
Iteration: 10, Func. Count: 115, Neg. LLF: 140.87249371276144
Iteration: 11, Func. Count: 126, Neg. LLF: 140.87247592205824
Iteration: 12, Func. Count: 137, Neg. LLF: 140.8724687170801
Iteration: 13, Func. Count: 147, Neg. LLF: 140.87246864667412
Optimization terminated successfully (Exit mode 0)
Current function value: 140.8724687170801
Iterations: 13
Function evaluations: 147
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 143.96200893140104
Iteration: 2, Func. Count: 17, Neg. LLF: 143.6759799501724
Iteration: 3, Func. Count: 25, Neg. LLF: 143.54478565952004
Iteration: 4, Func. Count: 33, Neg. LLF: 143.4100557852471
Iteration: 5, Func. Count: 41, Neg. LLF: 143.4352799638769
Iteration: 6, Func. Count: 50, Neg. LLF: 143.2399276993058
Iteration: 7, Func. Count: 58, Neg. LLF: 143.06990015384045
Iteration: 8, Func. Count: 66, Neg. LLF: 143.00250796787526
Iteration: 9, Func. Count: 74, Neg. LLF: 142.99599170104412
Iteration: 10, Func. Count: 82, Neg. LLF: 142.99589891708592
Iteration: 11, Func. Count: 90, Neg. LLF: 142.99589231022404
Iteration: 12, Func. Count: 97, Neg. LLF: 142.99589230198865
Optimization terminated successfully (Exit mode 0)
Current function value: 142.99589231022404
Iterations: 12
Function evaluations: 97
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 154.6644063236278
Iteration: 2, Func. Count: 20, Neg. LLF: 147.31315987179698
Iteration: 3, Func. Count: 30, Neg. LLF: 143.79223593191222
Iteration: 4, Func. Count: 39, Neg. LLF: 143.36436540913218
Iteration: 5, Func. Count: 48, Neg. LLF: 143.29753059503315
Iteration: 6, Func. Count: 57, Neg. LLF: 143.11721212995326
Iteration: 7, Func. Count: 66, Neg. LLF: 143.142103971494
Iteration: 8, Func. Count: 76, Neg. LLF: 143.00734336844266
Iteration: 9, Func. Count: 85, Neg. LLF: 142.78318289127108
Iteration: 10, Func. Count: 94, Neg. LLF: 142.6140757787843
Iteration: 11, Func. Count: 103, Neg. LLF: 146.04171738803748
Iteration: 12, Func. Count: 113, Neg. LLF: 145.95086761187892
Iteration: 13, Func. Count: 123, Neg. LLF: 144.46353101029956
Iteration: 14, Func. Count: 133, Neg. LLF: 142.24923874920773
Iteration: 15, Func. Count: 142, Neg. LLF: 145.6644882314431
Iteration: 16, Func. Count: 152, Neg. LLF: 144.97646865536274
Iteration: 17, Func. Count: 162, Neg. LLF: 145.15798667605966
Iteration: 18, Func. Count: 172, Neg. LLF: 144.73638060811066
Iteration: 19, Func. Count: 182, Neg. LLF: 142.5781426066596
Iteration: 20, Func. Count: 192, Neg. LLF: 142.04878711716185
Iteration: 21, Func. Count: 202, Neg. LLF: 142.01597234097164
Iteration: 22, Func. Count: 211, Neg. LLF: 142.0157111653024
Iteration: 23, Func. Count: 220, Neg. LLF: 142.01565060160286
Iteration: 24, Func. Count: 229, Neg. LLF: 142.01564095063964
Iteration: 25, Func. Count: 237, Neg. LLF: 142.01564075448113
Optimization terminated successfully (Exit mode 0)
Current function value: 142.01564095063964
Iterations: 26
Function evaluations: 237
Gradient evaluations: 25
Iteration: 1, Func. Count: 11, Neg. LLF: 154.78555921192233
Iteration: 2, Func. Count: 22, Neg. LLF: 145.4999825911406
Iteration: 3, Func. Count: 33, Neg. LLF: 142.05063531129738
Iteration: 4, Func. Count: 43, Neg. LLF: 147.07465593843983
Iteration: 5, Func. Count: 55, Neg. LLF: 142.3039447052596
Iteration: 6, Func. Count: 66, Neg. LLF: 142.04704704837673
Iteration: 7, Func. Count: 77, Neg. LLF: 141.6321734871033
Iteration: 8, Func. Count: 87, Neg. LLF: 141.45947566712428
Iteration: 9, Func. Count: 97, Neg. LLF: 141.31959687953812
Iteration: 10, Func. Count: 107, Neg. LLF: 141.0099911682229
Iteration: 11, Func. Count: 117, Neg. LLF: 141.12525414242555
Iteration: 12, Func. Count: 128, Neg. LLF: 140.8893325027005
Iteration: 13, Func. Count: 138, Neg. LLF: 140.8775824066475
Iteration: 14, Func. Count: 148, Neg. LLF: 140.8726661372845
Iteration: 15, Func. Count: 158, Neg. LLF: 140.87249005253736
Iteration: 16, Func. Count: 168, Neg. LLF: 140.8724748832717
Iteration: 17, Func. Count: 178, Neg. LLF: 140.87247128199144
Iteration: 18, Func. Count: 188, Neg. LLF: 140.87246854429907
Iteration: 19, Func. Count: 197, Neg. LLF: 140.87246845097616
Optimization terminated successfully (Exit mode 0)
Current function value: 140.87246854429907
Iterations: 19
Function evaluations: 197
Gradient evaluations: 19
Iteration: 1, Func. Count: 12, Neg. LLF: 149.9776433295097
Iteration: 2, Func. Count: 24, Neg. LLF: 147.24933939025254
Iteration: 3, Func. Count: 36, Neg. LLF: 143.23785398271357
Iteration: 4, Func. Count: 47, Neg. LLF: 148.67746710991923
Iteration: 5, Func. Count: 59, Neg. LLF: 142.7065102825855
Iteration: 6, Func. Count: 70, Neg. LLF: 150.1572388272208
Iteration: 7, Func. Count: 82, Neg. LLF: 142.62251628049145
Iteration: 8, Func. Count: 94, Neg. LLF: 143.0765007359774
Iteration: 9, Func. Count: 106, Neg. LLF: 143.5948464543933
Iteration: 10, Func. Count: 118, Neg. LLF: 141.16764761704408
Iteration: 11, Func. Count: 129, Neg. LLF: 141.13959823302497
Iteration: 12, Func. Count: 140, Neg. LLF: 141.1073054350655
Iteration: 13, Func. Count: 151, Neg. LLF: 141.10479549196313
Iteration: 14, Func. Count: 162, Neg. LLF: 141.10464408109564
Iteration: 15, Func. Count: 173, Neg. LLF: 141.10462816863284
Iteration: 16, Func. Count: 183, Neg. LLF: 141.1046283090323
Optimization terminated successfully (Exit mode 0)
Current function value: 141.10462816863284
Iterations: 16
Function evaluations: 183
Gradient evaluations: 16
Iteration: 1, Func. Count: 13, Neg. LLF: 162.63693651099763
Iteration: 2, Func. Count: 26, Neg. LLF: 145.93345183629276
Iteration: 3, Func. Count: 39, Neg. LLF: 141.14490658473431
Iteration: 4, Func. Count: 51, Neg. LLF: 141.50925966645642
Iteration: 5, Func. Count: 64, Neg. LLF: 141.12124534572553
Iteration: 6, Func. Count: 77, Neg. LLF: 140.9824093997493
Iteration: 7, Func. Count: 89, Neg. LLF: 140.90926592831573
Iteration: 8, Func. Count: 101, Neg. LLF: 140.87788076517896
Iteration: 9, Func. Count: 113, Neg. LLF: 140.8733075332416
Iteration: 10, Func. Count: 125, Neg. LLF: 140.87267875244692
Iteration: 11, Func. Count: 137, Neg. LLF: 140.87247695473187
Iteration: 12, Func. Count: 149, Neg. LLF: 140.87246891924443
Iteration: 13, Func. Count: 160, Neg. LLF: 140.87246884869535
Optimization terminated successfully (Exit mode 0)
Current function value: 140.87246891924443
Iterations: 13
Function evaluations: 160
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 144.36857622606365
Iteration: 2, Func. Count: 19, Neg. LLF: 144.37073227816967
Iteration: 3, Func. Count: 29, Neg. LLF: 143.47854779536596
Iteration: 4, Func. Count: 38, Neg. LLF: 143.33826163375107
Iteration: 5, Func. Count: 47, Neg. LLF: 143.25390496212324
Iteration: 6, Func. Count: 56, Neg. LLF: 143.2227796240328
Iteration: 7, Func. Count: 66, Neg. LLF: 143.00760494198062
Iteration: 8, Func. Count: 75, Neg. LLF: 142.99891022192782
Iteration: 9, Func. Count: 84, Neg. LLF: 142.99637628177004
Iteration: 10, Func. Count: 93, Neg. LLF: 142.9960981150763
Iteration: 11, Func. Count: 102, Neg. LLF: 142.9958926489475
Iteration: 12, Func. Count: 110, Neg. LLF: 142.99589286356596
Optimization terminated successfully (Exit mode 0)
Current function value: 142.9958926489475
Iterations: 12
Function evaluations: 110
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 154.64313861212904
Iteration: 2, Func. Count: 22, Neg. LLF: 147.3417746504574
Iteration: 3, Func. Count: 33, Neg. LLF: 143.8057064755653
Iteration: 4, Func. Count: 43, Neg. LLF: 143.3587495926329
Iteration: 5, Func. Count: 53, Neg. LLF: 143.27601210716546
Iteration: 6, Func. Count: 63, Neg. LLF: 143.09748331444274
Iteration: 7, Func. Count: 73, Neg. LLF: 143.05536380471662
Iteration: 8, Func. Count: 83, Neg. LLF: 142.92035071728083
Iteration: 9, Func. Count: 93, Neg. LLF: 142.76061971705198
Iteration: 10, Func. Count: 103, Neg. LLF: 142.50866547377933
Iteration: 11, Func. Count: 113, Neg. LLF: 145.28667359039744
Iteration: 12, Func. Count: 124, Neg. LLF: 144.67663630782195
Iteration: 13, Func. Count: 135, Neg. LLF: 145.76158616706059
Iteration: 14, Func. Count: 146, Neg. LLF: 259.8679799694054
Iteration: 15, Func. Count: 158, Neg. LLF: 142.1354551445567
Iteration: 16, Func. Count: 168, Neg. LLF: 145.2350662576143
Iteration: 17, Func. Count: 179, Neg. LLF: 144.24197383256356
Iteration: 18, Func. Count: 190, Neg. LLF: 142.15537096450828
Iteration: 19, Func. Count: 201, Neg. LLF: 142.01904945505007
Iteration: 20, Func. Count: 211, Neg. LLF: 142.01572116937743
Iteration: 21, Func. Count: 221, Neg. LLF: 142.01564175514088
Iteration: 22, Func. Count: 231, Neg. LLF: 142.01564060115783
Iteration: 23, Func. Count: 240, Neg. LLF: 142.01564040549854
Optimization terminated successfully (Exit mode 0)
Current function value: 142.01564060115783
Iterations: 24
Function evaluations: 240
Gradient evaluations: 23
Iteration: 1, Func. Count: 12, Neg. LLF: 154.7495752663879
Iteration: 2, Func. Count: 24, Neg. LLF: 145.5160097696181
Iteration: 3, Func. Count: 36, Neg. LLF: 142.0533612268424
Iteration: 4, Func. Count: 47, Neg. LLF: 147.0273100080514
Iteration: 5, Func. Count: 60, Neg. LLF: 142.32550634503352
Iteration: 6, Func. Count: 72, Neg. LLF: 142.00933141929556
Iteration: 7, Func. Count: 84, Neg. LLF: 141.62694791701668
Iteration: 8, Func. Count: 95, Neg. LLF: 141.45309567238414
Iteration: 9, Func. Count: 106, Neg. LLF: 141.31118280888825
Iteration: 10, Func. Count: 117, Neg. LLF: 141.15162801825517
Iteration: 11, Func. Count: 128, Neg. LLF: 141.17746494919393
Iteration: 12, Func. Count: 140, Neg. LLF: 140.90733036744444
Iteration: 13, Func. Count: 151, Neg. LLF: 140.8758320734411
Iteration: 14, Func. Count: 162, Neg. LLF: 140.87307217936734
Iteration: 15, Func. Count: 173, Neg. LLF: 140.87249091253824
Iteration: 16, Func. Count: 184, Neg. LLF: 140.8724709724927
Iteration: 17, Func. Count: 195, Neg. LLF: 140.87247246701938
Iteration: 18, Func. Count: 206, Neg. LLF: 140.87246859316696
Optimization terminated successfully (Exit mode 0)
Current function value: 140.87246868646534
Iterations: 18
Function evaluations: 206
Gradient evaluations: 18
Iteration: 1, Func. Count: 13, Neg. LLF: 149.96178361917535
Iteration: 2, Func. Count: 26, Neg. LLF: 147.26211747318055
Iteration: 3, Func. Count: 39, Neg. LLF: 143.23917906973722
Iteration: 4, Func. Count: 51, Neg. LLF: 148.74649689462063
Iteration: 5, Func. Count: 64, Neg. LLF: 142.70836781876145
Iteration: 6, Func. Count: 76, Neg. LLF: 149.32304424761125
Iteration: 7, Func. Count: 89, Neg. LLF: 142.3464252281987
Iteration: 8, Func. Count: 101, Neg. LLF: 141.43126453919692
Iteration: 9, Func. Count: 113, Neg. LLF: 141.26831394323688
Iteration: 10, Func. Count: 125, Neg. LLF: 141.12828942453436
Iteration: 11, Func. Count: 137, Neg. LLF: 141.11338098720643
Iteration: 12, Func. Count: 149, Neg. LLF: 141.1064675294359
Iteration: 13, Func. Count: 161, Neg. LLF: 141.1047639346157
Iteration: 14, Func. Count: 173, Neg. LLF: 141.10462921841423
Iteration: 15, Func. Count: 185, Neg. LLF: 141.10462828980192
Optimization terminated successfully (Exit mode 0)
Current function value: 141.10462828980192
Iterations: 15
Function evaluations: 185
Gradient evaluations: 15
Iteration: 1, Func. Count: 14, Neg. LLF: 162.45529823738457
Iteration: 2, Func. Count: 28, Neg. LLF: 146.02087401352486
Iteration: 3, Func. Count: 42, Neg. LLF: 141.15002923276944
Iteration: 4, Func. Count: 55, Neg. LLF: 141.5027587598047
Iteration: 5, Func. Count: 69, Neg. LLF: 141.10451419415753
Iteration: 6, Func. Count: 83, Neg. LLF: 140.98055926960362
Iteration: 7, Func. Count: 96, Neg. LLF: 140.9044337292419
Iteration: 8, Func. Count: 109, Neg. LLF: 140.8763912690349
Iteration: 9, Func. Count: 122, Neg. LLF: 140.87410725136232
Iteration: 10, Func. Count: 135, Neg. LLF: 140.87268542188477
Iteration: 11, Func. Count: 148, Neg. LLF: 140.87248510697543
Iteration: 12, Func. Count: 161, Neg. LLF: 140.87246888981014
Iteration: 13, Func. Count: 173, Neg. LLF: 140.87246881926558
Optimization terminated successfully (Exit mode 0)
Current function value: 140.87246888981014
Iterations: 13
Function evaluations: 173
Gradient evaluations: 13
Iteration: 1, Func. Count: 7, Neg. LLF: 145.02409174299487
Iteration: 2, Func. Count: 13, Neg. LLF: 147.24994525306715
Iteration: 3, Func. Count: 22, Neg. LLF: 145.30751867239405
Iteration: 4, Func. Count: 29, Neg. LLF: 145.08914646451342
Iteration: 5, Func. Count: 36, Neg. LLF: 144.82664372314056
Iteration: 6, Func. Count: 42, Neg. LLF: 144.77256809816078
Iteration: 7, Func. Count: 48, Neg. LLF: 144.76654730639197
Iteration: 8, Func. Count: 54, Neg. LLF: 144.766218804141
Iteration: 9, Func. Count: 60, Neg. LLF: 144.7661849553566
Iteration: 10, Func. Count: 65, Neg. LLF: 144.7661849500372
Optimization terminated successfully (Exit mode 0)
Current function value: 144.7661849553566
Iterations: 10
Function evaluations: 65
Gradient evaluations: 10
Iteration: 1, Func. Count: 8, Neg. LLF: 146.47049665314415
Iteration: 2, Func. Count: 16, Neg. LLF: 148.3447245835124
Iteration: 3, Func. Count: 24, Neg. LLF: 148.38587357249455
Iteration: 4, Func. Count: 33, Neg. LLF: 147.29766241919492
Iteration: 5, Func. Count: 42, Neg. LLF: 144.71029701980746
Iteration: 6, Func. Count: 49, Neg. LLF: 144.62254595895396
Iteration: 7, Func. Count: 56, Neg. LLF: 144.56245856407423
Iteration: 8, Func. Count: 63, Neg. LLF: 144.55180254256106
Iteration: 9, Func. Count: 70, Neg. LLF: 144.54897681926866
Iteration: 10, Func. Count: 77, Neg. LLF: 144.54806523719915
Iteration: 11, Func. Count: 84, Neg. LLF: 144.54581014623315
Iteration: 12, Func. Count: 91, Neg. LLF: 144.54553524167494
Iteration: 13, Func. Count: 98, Neg. LLF: 144.54551872744327
Iteration: 14, Func. Count: 104, Neg. LLF: 144.54551872744184
Optimization terminated successfully (Exit mode 0)
Current function value: 144.54551872744327
Iterations: 14
Function evaluations: 104
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 159.0126617094425
Iteration: 2, Func. Count: 18, Neg. LLF: 145.21706111612048
Iteration: 3, Func. Count: 26, Neg. LLF: 151.5749586070711
Iteration: 4, Func. Count: 35, Neg. LLF: 144.95861585473898
Iteration: 5, Func. Count: 43, Neg. LLF: 144.93665412534102
Iteration: 6, Func. Count: 51, Neg. LLF: 144.93497713919382
Iteration: 7, Func. Count: 59, Neg. LLF: 144.93466947130534
Iteration: 8, Func. Count: 67, Neg. LLF: 144.93409515921397
Iteration: 9, Func. Count: 75, Neg. LLF: 144.93087238155775
Iteration: 10, Func. Count: 83, Neg. LLF: 144.92331275883055
Iteration: 11, Func. Count: 91, Neg. LLF: 144.9150860486412
Iteration: 12, Func. Count: 99, Neg. LLF: 144.91529333358454
Optimization terminated successfully (Exit mode 0)
Current function value: 144.9150858305014
Iterations: 12
Function evaluations: 101
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 156.29025919060945
Iteration: 2, Func. Count: 20, Neg. LLF: 145.0598354134194
Iteration: 3, Func. Count: 29, Neg. LLF: 145.2016661705502
Iteration: 4, Func. Count: 39, Neg. LLF: 144.95672560998239
Iteration: 5, Func. Count: 48, Neg. LLF: 144.9534537155842
Iteration: 6, Func. Count: 57, Neg. LLF: 144.948482673838
Iteration: 7, Func. Count: 66, Neg. LLF: 144.94681198191813
Iteration: 8, Func. Count: 75, Neg. LLF: 144.94679335670384
Iteration: 9, Func. Count: 83, Neg. LLF: 144.94679318874105
Optimization terminated successfully (Exit mode 0)
Current function value: 144.94679335670384
Iterations: 9
Function evaluations: 83
Gradient evaluations: 9
Iteration: 1, Func. Count: 11, Neg. LLF: 155.33764426219187
Iteration: 2, Func. Count: 22, Neg. LLF: 145.02537915087214
Iteration: 3, Func. Count: 32, Neg. LLF: 144.99581110602924
Iteration: 4, Func. Count: 42, Neg. LLF: 144.93595460099579
Iteration: 5, Func. Count: 52, Neg. LLF: 144.9346060791479
Iteration: 6, Func. Count: 63, Neg. LLF: 144.84310949507773
Iteration: 7, Func. Count: 73, Neg. LLF: 144.79416840297603
Iteration: 8, Func. Count: 83, Neg. LLF: 144.61912656214375
Iteration: 9, Func. Count: 93, Neg. LLF: 144.58425784095613
Iteration: 10, Func. Count: 103, Neg. LLF: 144.57087729243045
Iteration: 11, Func. Count: 113, Neg. LLF: 144.5703094932767
Iteration: 12, Func. Count: 133, Neg. LLF: 144.5710478307392
Iteration: 13, Func. Count: 153, Neg. LLF: 144.5710856008484
Iteration: 14, Func. Count: 173, Neg. LLF: 144.57244149652357
Iteration: 15, Func. Count: 184, Neg. LLF: 144.5996391429051
Iteration: 16, Func. Count: 196, Neg. LLF: 144.57194905230173
Iteration: 17, Func. Count: 205, Neg. LLF: 144.5719488582947
Optimization terminated successfully (Exit mode 0)
Current function value: 144.57194905230173
Iterations: 18
Function evaluations: 205
Gradient evaluations: 17
Iteration: 1, Func. Count: 8, Neg. LLF: 151.71795332496004
Iteration: 2, Func. Count: 16, Neg. LLF: 144.3063997895261
Iteration: 3, Func. Count: 23, Neg. LLF: 143.6840637562708
Iteration: 4, Func. Count: 30, Neg. LLF: 143.6449148468784
Iteration: 5, Func. Count: 38, Neg. LLF: 143.5573101907952
Iteration: 6, Func. Count: 46, Neg. LLF: 143.48619915463854
Iteration: 7, Func. Count: 53, Neg. LLF: 143.54040395530217
Iteration: 8, Func. Count: 61, Neg. LLF: 143.3543115283352
Iteration: 9, Func. Count: 68, Neg. LLF: 143.3500495912891
Iteration: 10, Func. Count: 75, Neg. LLF: 143.34957231850686
Iteration: 11, Func. Count: 82, Neg. LLF: 143.34955967813193
Iteration: 12, Func. Count: 88, Neg. LLF: 143.3495596704066
Optimization terminated successfully (Exit mode 0)
Current function value: 143.34955967813193
Iterations: 12
Function evaluations: 88
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 147.71493512000805
Iteration: 2, Func. Count: 18, Neg. LLF: 147.83780145859674
Iteration: 3, Func. Count: 27, Neg. LLF: 150.9513068469006
Iteration: 4, Func. Count: 36, Neg. LLF: 144.83268069316622
Iteration: 5, Func. Count: 44, Neg. LLF: 145.46273457882702
Iteration: 6, Func. Count: 53, Neg. LLF: 144.73866673588608
Iteration: 7, Func. Count: 61, Neg. LLF: 144.676029000614
Iteration: 8, Func. Count: 69, Neg. LLF: 144.61632261288952
Iteration: 9, Func. Count: 77, Neg. LLF: 144.56051336391414
Iteration: 10, Func. Count: 85, Neg. LLF: 144.55243979829547
Iteration: 11, Func. Count: 93, Neg. LLF: 144.55008649660823
Iteration: 12, Func. Count: 101, Neg. LLF: 144.548571363575
Iteration: 13, Func. Count: 109, Neg. LLF: 144.54588089554645
Iteration: 14, Func. Count: 117, Neg. LLF: 144.54556172453675
Iteration: 15, Func. Count: 125, Neg. LLF: 144.5455227460593
Iteration: 16, Func. Count: 133, Neg. LLF: 144.54551863351608
Iteration: 17, Func. Count: 140, Neg. LLF: 144.5455186335678
Optimization terminated successfully (Exit mode 0)
Current function value: 144.54551863351608
Iterations: 17
Function evaluations: 140
Gradient evaluations: 17
Iteration: 1, Func. Count: 10, Neg. LLF: 151.9631143783788
Iteration: 2, Func. Count: 20, Neg. LLF: 149.89863451140084
Iteration: 3, Func. Count: 30, Neg. LLF: 145.5974551582751
Iteration: 4, Func. Count: 40, Neg. LLF: 155.88838225365333
Iteration: 5, Func. Count: 50, Neg. LLF: 145.0312308573567
Iteration: 6, Func. Count: 59, Neg. LLF: 152.35024258007263
Iteration: 7, Func. Count: 70, Neg. LLF: 144.3037519195559
Iteration: 8, Func. Count: 79, Neg. LLF: 143.61636242928336
Iteration: 9, Func. Count: 88, Neg. LLF: 151.44213906984155
Iteration: 10, Func. Count: 98, Neg. LLF: 144.62331211571185
Iteration: 11, Func. Count: 108, Neg. LLF: 146.4079114314302
Iteration: 12, Func. Count: 118, Neg. LLF: 145.26097156391768
Iteration: 13, Func. Count: 128, Neg. LLF: 142.98932323215615
Iteration: 14, Func. Count: 138, Neg. LLF: 142.71420201108745
Iteration: 15, Func. Count: 147, Neg. LLF: 142.6455303892467
Iteration: 16, Func. Count: 156, Neg. LLF: 142.5566608336014
Iteration: 17, Func. Count: 165, Neg. LLF: 142.52710826258323
Iteration: 18, Func. Count: 174, Neg. LLF: 142.51784235122142
Iteration: 19, Func. Count: 183, Neg. LLF: 142.5209296706113
Iteration: 20, Func. Count: 202, Neg. LLF: 142.52328532321317
Iteration: 21, Func. Count: 212, Neg. LLF: 142.5282622490864
Iteration: 22, Func. Count: 223, Neg. LLF: 142.5226708365616
Iteration: 23, Func. Count: 232, Neg. LLF: 142.5226692523826
Iteration: 24, Func. Count: 240, Neg. LLF: 142.52266893737075
Optimization terminated successfully (Exit mode 0)
Current function value: 142.5226692523826
Iterations: 25
Function evaluations: 240
Gradient evaluations: 24
Iteration: 1, Func. Count: 11, Neg. LLF: 149.651289234598
Iteration: 2, Func. Count: 22, Neg. LLF: 149.5896337180468
Iteration: 3, Func. Count: 33, Neg. LLF: 144.96063666225058
Iteration: 4, Func. Count: 43, Neg. LLF: 144.64815703377772
Iteration: 5, Func. Count: 53, Neg. LLF: 144.15869018300188
Iteration: 6, Func. Count: 63, Neg. LLF: 223.74288639089033
Iteration: 7, Func. Count: 76, Neg. LLF: 143.8758024283808
Iteration: 8, Func. Count: 86, Neg. LLF: 143.36549847518606
Iteration: 9, Func. Count: 96, Neg. LLF: 144.17306732201442
Iteration: 10, Func. Count: 107, Neg. LLF: 143.01882545582617
Iteration: 11, Func. Count: 117, Neg. LLF: 142.98481096363486
Iteration: 12, Func. Count: 127, Neg. LLF: 142.96956203812016
Iteration: 13, Func. Count: 137, Neg. LLF: 142.9626592202011
Iteration: 14, Func. Count: 147, Neg. LLF: 142.94758261846675
Iteration: 15, Func. Count: 157, Neg. LLF: 142.94421214967673
Iteration: 16, Func. Count: 167, Neg. LLF: 142.94156570540702
Iteration: 17, Func. Count: 177, Neg. LLF: 142.92715993865497
Iteration: 18, Func. Count: 187, Neg. LLF: 142.48223664116054
Iteration: 19, Func. Count: 197, Neg. LLF: 147.9762858819013
Iteration: 20, Func. Count: 208, Neg. LLF: 142.95135922827103
Iteration: 21, Func. Count: 219, Neg. LLF: 143.65348415052415
Iteration: 22, Func. Count: 230, Neg. LLF: 291260.4125982546
Iteration: 23, Func. Count: 241, Neg. LLF: 142.64354108929726
Iteration: 24, Func. Count: 252, Neg. LLF: 143.29722045611504
Iteration: 25, Func. Count: 263, Neg. LLF: 142.45141889651913
Iteration: 26, Func. Count: 274, Neg. LLF: 142.34683816848943
Iteration: 27, Func. Count: 285, Neg. LLF: 142.23700015959326
Iteration: 28, Func. Count: 295, Neg. LLF: 142.2367064006243
Iteration: 29, Func. Count: 305, Neg. LLF: 142.23670284616097
Iteration: 30, Func. Count: 315, Neg. LLF: 142.23669800680548
Iteration: 31, Func. Count: 324, Neg. LLF: 142.23669790431163
Optimization terminated successfully (Exit mode 0)
Current function value: 142.23669800680548
Iterations: 32
Function evaluations: 324
Gradient evaluations: 31
Iteration: 1, Func. Count: 12, Neg. LLF: 145.90060026544515
Iteration: 2, Func. Count: 24, Neg. LLF: 144.5753976210601
Iteration: 3, Func. Count: 36, Neg. LLF: 142.927777911245
Iteration: 4, Func. Count: 47, Neg. LLF: 143.14405022402875
Iteration: 5, Func. Count: 59, Neg. LLF: 143.96000915753044
Iteration: 6, Func. Count: 71, Neg. LLF: 142.35698944756814
Iteration: 7, Func. Count: 82, Neg. LLF: 142.18847413168115
Iteration: 8, Func. Count: 93, Neg. LLF: 142.18213887508628
Iteration: 9, Func. Count: 104, Neg. LLF: 142.18132683327883
Iteration: 10, Func. Count: 115, Neg. LLF: 142.1811765446606
Iteration: 11, Func. Count: 126, Neg. LLF: 142.18115048800573
Iteration: 12, Func. Count: 137, Neg. LLF: 142.1811487197453
Iteration: 13, Func. Count: 147, Neg. LLF: 142.18114864269322
Optimization terminated successfully (Exit mode 0)
Current function value: 142.1811487197453
Iterations: 13
Function evaluations: 147
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 146.88851317824205
Iteration: 2, Func. Count: 17, Neg. LLF: 147.3172486411764
Iteration: 3, Func. Count: 26, Neg. LLF: 143.83069299255243
Iteration: 4, Func. Count: 34, Neg. LLF: 143.60873197739747
Iteration: 5, Func. Count: 42, Neg. LLF: 143.45413680853034
Iteration: 6, Func. Count: 50, Neg. LLF: 143.36992172243626
Iteration: 7, Func. Count: 58, Neg. LLF: 143.70301229915987
Iteration: 8, Func. Count: 67, Neg. LLF: 143.2435396963228
Iteration: 9, Func. Count: 75, Neg. LLF: 143.1654851140919
Iteration: 10, Func. Count: 83, Neg. LLF: 143.00493773385233
Iteration: 11, Func. Count: 91, Neg. LLF: 143.0027500854603
Iteration: 12, Func. Count: 100, Neg. LLF: 142.99594199346134
Iteration: 13, Func. Count: 108, Neg. LLF: 142.99589581362426
Iteration: 14, Func. Count: 116, Neg. LLF: 142.99589230471696
Iteration: 15, Func. Count: 123, Neg. LLF: 142.9958921930585
Optimization terminated successfully (Exit mode 0)
Current function value: 142.99589230471696
Iterations: 15
Function evaluations: 123
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 148.9946143788021
Iteration: 2, Func. Count: 20, Neg. LLF: 149.40824468847075
Iteration: 3, Func. Count: 30, Neg. LLF: 144.26593850394016
Iteration: 4, Func. Count: 39, Neg. LLF: 143.45864116885426
Iteration: 5, Func. Count: 48, Neg. LLF: 145.40380029297995
Iteration: 6, Func. Count: 59, Neg. LLF: 143.28016399745326
Iteration: 7, Func. Count: 68, Neg. LLF: 143.10187421177312
Iteration: 8, Func. Count: 77, Neg. LLF: 142.91619896790434
Iteration: 9, Func. Count: 86, Neg. LLF: 142.6959624091137
Iteration: 10, Func. Count: 95, Neg. LLF: 142.2012882373162
Iteration: 11, Func. Count: 104, Neg. LLF: 145.51587161693416
Iteration: 12, Func. Count: 114, Neg. LLF: 142.54357058955728
Iteration: 13, Func. Count: 124, Neg. LLF: 142.04135044517778
Iteration: 14, Func. Count: 133, Neg. LLF: 142.02024433397435
Iteration: 15, Func. Count: 142, Neg. LLF: 142.01611111964542
Iteration: 16, Func. Count: 151, Neg. LLF: 142.01565980352348
Iteration: 17, Func. Count: 160, Neg. LLF: 142.01564062609089
Iteration: 18, Func. Count: 168, Neg. LLF: 142.0156404304773
Optimization terminated successfully (Exit mode 0)
Current function value: 142.01564062609089
Iterations: 18
Function evaluations: 168
Gradient evaluations: 18
Iteration: 1, Func. Count: 11, Neg. LLF: 153.75888455948848
Iteration: 2, Func. Count: 22, Neg. LLF: 145.5167019445866
Iteration: 3, Func. Count: 33, Neg. LLF: 142.11850819031207
Iteration: 4, Func. Count: 43, Neg. LLF: 145.30418343660625
Iteration: 5, Func. Count: 55, Neg. LLF: 143.12440987598666
Iteration: 6, Func. Count: 66, Neg. LLF: 141.8132743525869
Iteration: 7, Func. Count: 76, Neg. LLF: 141.6780603196861
Iteration: 8, Func. Count: 86, Neg. LLF: 141.4226095980543
Iteration: 9, Func. Count: 96, Neg. LLF: 141.32287243695197
Iteration: 10, Func. Count: 106, Neg. LLF: 141.13747755075042
Iteration: 11, Func. Count: 116, Neg. LLF: 144.55199735049177
Iteration: 12, Func. Count: 127, Neg. LLF: 144.11539196231027
Iteration: 13, Func. Count: 138, Neg. LLF: 143.68269535867077
Iteration: 14, Func. Count: 149, Neg. LLF: 141.52933028212266
Iteration: 15, Func. Count: 160, Neg. LLF: 140.91428448369254
Iteration: 16, Func. Count: 171, Neg. LLF: 140.87289108371456
Iteration: 17, Func. Count: 181, Neg. LLF: 140.87277400443583
Iteration: 18, Func. Count: 192, Neg. LLF: 140.87251315012801
Iteration: 19, Func. Count: 202, Neg. LLF: 140.8724691151155
Iteration: 20, Func. Count: 212, Neg. LLF: 140.87246865126028
Optimization terminated successfully (Exit mode 0)
Current function value: 140.87246865126028
Iterations: 20
Function evaluations: 212
Gradient evaluations: 20
Iteration: 1, Func. Count: 12, Neg. LLF: 149.82296934974713
Iteration: 2, Func. Count: 24, Neg. LLF: 147.07658074308134
Iteration: 3, Func. Count: 36, Neg. LLF: 143.25793679187677
Iteration: 4, Func. Count: 47, Neg. LLF: 151.26478508964294
Iteration: 5, Func. Count: 59, Neg. LLF: 142.75728601932562
Iteration: 6, Func. Count: 70, Neg. LLF: 148.31803591800139
Iteration: 7, Func. Count: 82, Neg. LLF: 142.4098131513617
Iteration: 8, Func. Count: 93, Neg. LLF: 141.86146444286766
Iteration: 9, Func. Count: 104, Neg. LLF: 148.81901264805865
Iteration: 10, Func. Count: 116, Neg. LLF: 141.31073810143707
Iteration: 11, Func. Count: 127, Neg. LLF: 141.15563287945304
Iteration: 12, Func. Count: 138, Neg. LLF: 141.11866546451688
Iteration: 13, Func. Count: 149, Neg. LLF: 141.10812080381803
Iteration: 14, Func. Count: 160, Neg. LLF: 141.10546924710846
Iteration: 15, Func. Count: 171, Neg. LLF: 141.10477781190392
Iteration: 16, Func. Count: 182, Neg. LLF: 141.10462902139244
Iteration: 17, Func. Count: 193, Neg. LLF: 141.10462819001324
Optimization terminated successfully (Exit mode 0)
Current function value: 141.10462819001324
Iterations: 17
Function evaluations: 193
Gradient evaluations: 17
Iteration: 1, Func. Count: 13, Neg. LLF: 162.67068884967065
Iteration: 2, Func. Count: 26, Neg. LLF: 145.88414528003244
Iteration: 3, Func. Count: 39, Neg. LLF: 141.15023890563072
Iteration: 4, Func. Count: 51, Neg. LLF: 141.52313605219396
Iteration: 5, Func. Count: 64, Neg. LLF: 141.13189738956842
Iteration: 6, Func. Count: 77, Neg. LLF: 140.9840990175762
Iteration: 7, Func. Count: 89, Neg. LLF: 140.91207991860506
Iteration: 8, Func. Count: 101, Neg. LLF: 140.87790590592633
Iteration: 9, Func. Count: 113, Neg. LLF: 140.87297199087155
Iteration: 10, Func. Count: 125, Neg. LLF: 140.87260275058978
Iteration: 11, Func. Count: 137, Neg. LLF: 140.87247520754343
Iteration: 12, Func. Count: 149, Neg. LLF: 140.87246887931047
Iteration: 13, Func. Count: 160, Neg. LLF: 140.8724688087969
Optimization terminated successfully (Exit mode 0)
Current function value: 140.87246887931047
Iterations: 13
Function evaluations: 160
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 143.77340708989206
Iteration: 2, Func. Count: 19, Neg. LLF: 146.09561795235047
Iteration: 3, Func. Count: 29, Neg. LLF: 143.24729016165682
Iteration: 4, Func. Count: 38, Neg. LLF: 142.94946100011063
Iteration: 5, Func. Count: 47, Neg. LLF: 142.63384084259968
Iteration: 6, Func. Count: 56, Neg. LLF: 142.63368153410084
Iteration: 7, Func. Count: 66, Neg. LLF: 142.60372364526256
Iteration: 8, Func. Count: 75, Neg. LLF: 142.51204151191482
Iteration: 9, Func. Count: 84, Neg. LLF: 142.50474059602487
Iteration: 10, Func. Count: 94, Neg. LLF: 145.3173608563412
Iteration: 11, Func. Count: 105, Neg. LLF: 142.45966585526983
Iteration: 12, Func. Count: 115, Neg. LLF: 142.42385362071832
Iteration: 13, Func. Count: 124, Neg. LLF: 142.41849137404228
Iteration: 14, Func. Count: 133, Neg. LLF: 142.41762845682013
Iteration: 15, Func. Count: 142, Neg. LLF: 142.41746046179557
Iteration: 16, Func. Count: 151, Neg. LLF: 142.41745632935562
Iteration: 17, Func. Count: 159, Neg. LLF: 142.41745635407145
Optimization terminated successfully (Exit mode 0)
Current function value: 142.41745632935562
Iterations: 17
Function evaluations: 159
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 146.1151952402584
Iteration: 2, Func. Count: 22, Neg. LLF: 143.5959587432139
Iteration: 3, Func. Count: 33, Neg. LLF: 143.5035374969359
Iteration: 4, Func. Count: 44, Neg. LLF: 144.08805282460798
Iteration: 5, Func. Count: 55, Neg. LLF: 143.62532831870263
Iteration: 6, Func. Count: 66, Neg. LLF: 142.1353102177217
Iteration: 7, Func. Count: 77, Neg. LLF: 141.96052221357573
Iteration: 8, Func. Count: 87, Neg. LLF: 141.77404882095033
Iteration: 9, Func. Count: 97, Neg. LLF: 141.76356639895613
Iteration: 10, Func. Count: 107, Neg. LLF: 141.75924158653186
Iteration: 11, Func. Count: 117, Neg. LLF: 141.75633457650687
Iteration: 12, Func. Count: 127, Neg. LLF: 141.75588577574902
Iteration: 13, Func. Count: 137, Neg. LLF: 141.75583097008695
Iteration: 14, Func. Count: 147, Neg. LLF: 141.75581319972906
Iteration: 15, Func. Count: 157, Neg. LLF: 141.7557990369491
Iteration: 16, Func. Count: 167, Neg. LLF: 141.7557959197104
Iteration: 17, Func. Count: 176, Neg. LLF: 141.75579588795296
Optimization terminated successfully (Exit mode 0)
Current function value: 141.7557959197104
Iterations: 17
Function evaluations: 176
Gradient evaluations: 17
Iteration: 1, Func. Count: 12, Neg. LLF: 146.09118641964395
Iteration: 2, Func. Count: 24, Neg. LLF: 143.36515030698084
Iteration: 3, Func. Count: 36, Neg. LLF: 143.5413382601938
Iteration: 4, Func. Count: 48, Neg. LLF: 142.34254079219497
Iteration: 5, Func. Count: 59, Neg. LLF: 142.50430187209622
Iteration: 6, Func. Count: 71, Neg. LLF: 141.91631548397555
Iteration: 7, Func. Count: 82, Neg. LLF: 141.78472894012333
Iteration: 8, Func. Count: 93, Neg. LLF: 141.80501082024787
Iteration: 9, Func. Count: 105, Neg. LLF: 141.76252934068725
Iteration: 10, Func. Count: 116, Neg. LLF: 141.75768789782043
Iteration: 11, Func. Count: 127, Neg. LLF: 141.75615469509944
Iteration: 12, Func. Count: 138, Neg. LLF: 141.75589107732893
Iteration: 13, Func. Count: 149, Neg. LLF: 141.75582623441238
Iteration: 14, Func. Count: 160, Neg. LLF: 141.7557998682592
Iteration: 15, Func. Count: 171, Neg. LLF: 141.75579585557026
Iteration: 16, Func. Count: 181, Neg. LLF: 141.75579589671094
Optimization terminated successfully (Exit mode 0)
Current function value: 141.75579585557026
Iterations: 16
Function evaluations: 181
Gradient evaluations: 16
Iteration: 1, Func. Count: 13, Neg. LLF: 145.2047349788109
Iteration: 2, Func. Count: 25, Neg. LLF: 145.17667788035496
Iteration: 3, Func. Count: 39, Neg. LLF: 184.95386255375658
Iteration: 4, Func. Count: 52, Neg. LLF: 144.22198895008472
Iteration: 5, Func. Count: 65, Neg. LLF: 142.8885813348563
Iteration: 6, Func. Count: 77, Neg. LLF: 142.7913027210618
Iteration: 7, Func. Count: 89, Neg. LLF: 142.70552579938962
Iteration: 8, Func. Count: 101, Neg. LLF: 142.45474624153098
Iteration: 9, Func. Count: 113, Neg. LLF: 142.20123913616692
Iteration: 10, Func. Count: 125, Neg. LLF: 141.98385058356408
Iteration: 11, Func. Count: 137, Neg. LLF: 144.11178577509313
Iteration: 12, Func. Count: 150, Neg. LLF: 141.8944374794187
Iteration: 13, Func. Count: 162, Neg. LLF: 141.77308868499728
Iteration: 14, Func. Count: 174, Neg. LLF: 141.7631138223969
Iteration: 15, Func. Count: 186, Neg. LLF: 141.75881436151136
Iteration: 16, Func. Count: 198, Neg. LLF: 141.7568843784637
Iteration: 17, Func. Count: 210, Neg. LLF: 141.75581389223876
Iteration: 18, Func. Count: 222, Neg. LLF: 141.7557959820123
Iteration: 19, Func. Count: 233, Neg. LLF: 141.75579613258034
Optimization terminated successfully (Exit mode 0)
Current function value: 141.7557959820123
Iterations: 19
Function evaluations: 233
Gradient evaluations: 19
Iteration: 1, Func. Count: 14, Neg. LLF: 149.91798076323576
Iteration: 2, Func. Count: 28, Neg. LLF: 145.00761870566564
Iteration: 3, Func. Count: 42, Neg. LLF: 142.313190972292
Iteration: 4, Func. Count: 55, Neg. LLF: 142.10243976833064
Iteration: 5, Func. Count: 68, Neg. LLF: 144.27644223861665
Iteration: 6, Func. Count: 82, Neg. LLF: 141.52176492204177
Iteration: 7, Func. Count: 95, Neg. LLF: 141.6356535582457
Iteration: 8, Func. Count: 109, Neg. LLF: 141.41167570285768
Iteration: 9, Func. Count: 122, Neg. LLF: 141.3972369187748
Iteration: 10, Func. Count: 135, Neg. LLF: 141.38967021070957
Iteration: 11, Func. Count: 148, Neg. LLF: 141.38933956635557
Iteration: 12, Func. Count: 161, Neg. LLF: 141.38929609797714
Iteration: 13, Func. Count: 174, Neg. LLF: 141.38929541405614
Optimization terminated successfully (Exit mode 0)
Current function value: 141.38929541405614
Iterations: 13
Function evaluations: 174
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 145.15583352008892
Iteration: 2, Func. Count: 21, Neg. LLF: 147.35782937461704
Iteration: 3, Func. Count: 32, Neg. LLF: 143.2632905951676
Iteration: 4, Func. Count: 42, Neg. LLF: 142.95042543159215
Iteration: 5, Func. Count: 52, Neg. LLF: 142.66901789185235
Iteration: 6, Func. Count: 62, Neg. LLF: 142.68751739869637
Iteration: 7, Func. Count: 73, Neg. LLF: 142.63682828744106
Iteration: 8, Func. Count: 84, Neg. LLF: 142.5035460963593
Iteration: 9, Func. Count: 94, Neg. LLF: 142.51176307135526
Iteration: 10, Func. Count: 105, Neg. LLF: 142.42956874404868
Iteration: 11, Func. Count: 115, Neg. LLF: 142.42208481947065
Iteration: 12, Func. Count: 125, Neg. LLF: 142.41759116533467
Iteration: 13, Func. Count: 135, Neg. LLF: 142.41746514977103
Iteration: 14, Func. Count: 145, Neg. LLF: 142.4174586593036
Iteration: 15, Func. Count: 155, Neg. LLF: 142.41745636845386
Iteration: 16, Func. Count: 164, Neg. LLF: 142.4174565628373
Optimization terminated successfully (Exit mode 0)
Current function value: 142.41745636845386
Iterations: 16
Function evaluations: 164
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 146.11315190165902
Iteration: 2, Func. Count: 24, Neg. LLF: 143.5854495804826
Iteration: 3, Func. Count: 36, Neg. LLF: 143.48259035951568
Iteration: 4, Func. Count: 48, Neg. LLF: 144.0526075642339
Iteration: 5, Func. Count: 60, Neg. LLF: 143.5038308984271
Iteration: 6, Func. Count: 72, Neg. LLF: 142.0612750224062
Iteration: 7, Func. Count: 83, Neg. LLF: 141.9005776284469
Iteration: 8, Func. Count: 94, Neg. LLF: 141.78767405938618
Iteration: 9, Func. Count: 105, Neg. LLF: 141.76395622236782
Iteration: 10, Func. Count: 116, Neg. LLF: 141.75894910783168
Iteration: 11, Func. Count: 127, Neg. LLF: 141.75693388653332
Iteration: 12, Func. Count: 138, Neg. LLF: 141.75592307851232
Iteration: 13, Func. Count: 149, Neg. LLF: 141.75582626549806
Iteration: 14, Func. Count: 160, Neg. LLF: 141.75581071737952
Iteration: 15, Func. Count: 171, Neg. LLF: 141.75580100174722
Iteration: 16, Func. Count: 182, Neg. LLF: 141.75579627034486
Iteration: 17, Func. Count: 193, Neg. LLF: 141.7557956700678
Optimization terminated successfully (Exit mode 0)
Current function value: 141.7557956700678
Iterations: 17
Function evaluations: 193
Gradient evaluations: 17
Iteration: 1, Func. Count: 13, Neg. LLF: 146.08470386064647
Iteration: 2, Func. Count: 26, Neg. LLF: 143.36874354038574
Iteration: 3, Func. Count: 39, Neg. LLF: 143.57137170560455
Iteration: 4, Func. Count: 52, Neg. LLF: 142.35955672527328
Iteration: 5, Func. Count: 64, Neg. LLF: 142.4929351673144
Iteration: 6, Func. Count: 77, Neg. LLF: 141.92720675011304
Iteration: 7, Func. Count: 89, Neg. LLF: 141.79701328304927
Iteration: 8, Func. Count: 101, Neg. LLF: 141.80972990397527
Iteration: 9, Func. Count: 114, Neg. LLF: 141.76287519024586
Iteration: 10, Func. Count: 126, Neg. LLF: 141.7581528627891
Iteration: 11, Func. Count: 138, Neg. LLF: 141.7561955762663
Iteration: 12, Func. Count: 150, Neg. LLF: 141.75589724879993
Iteration: 13, Func. Count: 162, Neg. LLF: 141.7558271740984
Iteration: 14, Func. Count: 174, Neg. LLF: 141.7558013941401
Iteration: 15, Func. Count: 186, Neg. LLF: 141.75579595999415
Iteration: 16, Func. Count: 197, Neg. LLF: 141.75579600111223
Optimization terminated successfully (Exit mode 0)
Current function value: 141.75579595999415
Iterations: 16
Function evaluations: 197
Gradient evaluations: 16
Iteration: 1, Func. Count: 14, Neg. LLF: 145.1946444649692
Iteration: 2, Func. Count: 27, Neg. LLF: 145.18135414854967
Iteration: 3, Func. Count: 42, Neg. LLF: 184.95199706897375
Iteration: 4, Func. Count: 56, Neg. LLF: 144.29627951991677
Iteration: 5, Func. Count: 70, Neg. LLF: 142.8898406068426
Iteration: 6, Func. Count: 83, Neg. LLF: 142.79069369442058
Iteration: 7, Func. Count: 96, Neg. LLF: 142.67079807051064
Iteration: 8, Func. Count: 109, Neg. LLF: 142.44721273994188
Iteration: 9, Func. Count: 122, Neg. LLF: 142.18550923937974
Iteration: 10, Func. Count: 135, Neg. LLF: 141.96355154837704
Iteration: 11, Func. Count: 148, Neg. LLF: 143.13787860630478
Iteration: 12, Func. Count: 162, Neg. LLF: 141.8329856418171
Iteration: 13, Func. Count: 175, Neg. LLF: 141.77086950348965
Iteration: 14, Func. Count: 188, Neg. LLF: 141.76300888123623
Iteration: 15, Func. Count: 201, Neg. LLF: 141.7586516773083
Iteration: 16, Func. Count: 214, Neg. LLF: 141.75623863286722
Iteration: 17, Func. Count: 227, Neg. LLF: 141.7558047804708
Iteration: 18, Func. Count: 240, Neg. LLF: 141.75579575008982
Iteration: 19, Func. Count: 252, Neg. LLF: 141.75579590067667
Optimization terminated successfully (Exit mode 0)
Current function value: 141.75579575008982
Iterations: 19
Function evaluations: 252
Gradient evaluations: 19
Iteration: 1, Func. Count: 15, Neg. LLF: 149.81689885720695
Iteration: 2, Func. Count: 30, Neg. LLF: 144.99689921388804
Iteration: 3, Func. Count: 45, Neg. LLF: 142.33574609870035
Iteration: 4, Func. Count: 59, Neg. LLF: 142.10250213477136
Iteration: 5, Func. Count: 73, Neg. LLF: 144.3053783006683
Iteration: 6, Func. Count: 88, Neg. LLF: 141.52411542394483
Iteration: 7, Func. Count: 102, Neg. LLF: 141.6508930208124
Iteration: 8, Func. Count: 117, Neg. LLF: 141.41298828699723
Iteration: 9, Func. Count: 131, Neg. LLF: 141.39776875205962
Iteration: 10, Func. Count: 145, Neg. LLF: 141.38965972928935
Iteration: 11, Func. Count: 159, Neg. LLF: 141.3893369333018
Iteration: 12, Func. Count: 173, Neg. LLF: 141.3892962177914
Iteration: 13, Func. Count: 187, Neg. LLF: 141.38929541778654
Optimization terminated successfully (Exit mode 0)
Current function value: 141.38929541778654
Iterations: 13
Function evaluations: 187
Gradient evaluations: 13
Iteration: 1, Func. Count: 8, Neg. LLF: 145.43228520736716
Iteration: 2, Func. Count: 16, Neg. LLF: 143.500754545217
Iteration: 3, Func. Count: 23, Neg. LLF: 143.78640109131766
Iteration: 4, Func. Count: 31, Neg. LLF: 144.0654333272771
Iteration: 5, Func. Count: 39, Neg. LLF: 143.81202898965714
Iteration: 6, Func. Count: 47, Neg. LLF: 143.55028399271495
Iteration: 7, Func. Count: 55, Neg. LLF: 142.610901953274
Iteration: 8, Func. Count: 62, Neg. LLF: 142.48282720174666
Iteration: 9, Func. Count: 69, Neg. LLF: 142.4713976321305
Iteration: 10, Func. Count: 76, Neg. LLF: 142.47106222873902
Iteration: 11, Func. Count: 83, Neg. LLF: 142.47102090018473
Iteration: 12, Func. Count: 90, Neg. LLF: 142.47101581500345
Iteration: 13, Func. Count: 96, Neg. LLF: 142.47101579742022
Optimization terminated successfully (Exit mode 0)
Current function value: 142.47101581500345
Iterations: 13
Function evaluations: 96
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 145.28184394686565
Iteration: 2, Func. Count: 18, Neg. LLF: 144.4190392550017
Iteration: 3, Func. Count: 27, Neg. LLF: 162.25962618899086
Iteration: 4, Func. Count: 36, Neg. LLF: 143.16884448920067
Iteration: 5, Func. Count: 44, Neg. LLF: 154.22470127847149
Iteration: 6, Func. Count: 54, Neg. LLF: 143.02597703403592
Iteration: 7, Func. Count: 62, Neg. LLF: 142.8871080504956
Iteration: 8, Func. Count: 70, Neg. LLF: 142.79850005944624
Iteration: 9, Func. Count: 78, Neg. LLF: 142.69909981159452
Iteration: 10, Func. Count: 86, Neg. LLF: 142.6070115453987
Iteration: 11, Func. Count: 94, Neg. LLF: 142.49067811131945
Iteration: 12, Func. Count: 102, Neg. LLF: 142.47303197072358
Iteration: 13, Func. Count: 110, Neg. LLF: 142.47159200086716
Iteration: 14, Func. Count: 118, Neg. LLF: 142.47123845945242
Iteration: 15, Func. Count: 126, Neg. LLF: 142.47102163025824
Iteration: 16, Func. Count: 134, Neg. LLF: 142.47101563977026
Iteration: 17, Func. Count: 141, Neg. LLF: 142.47101568198786
Optimization terminated successfully (Exit mode 0)
Current function value: 142.47101563977026
Iterations: 17
Function evaluations: 141
Gradient evaluations: 17
Iteration: 1, Func. Count: 10, Neg. LLF: 145.24513114501494
Iteration: 2, Func. Count: 20, Neg. LLF: 144.52123124084156
Iteration: 3, Func. Count: 30, Neg. LLF: 160.29110814521124
Iteration: 4, Func. Count: 40, Neg. LLF: 143.17168858911452
Iteration: 5, Func. Count: 49, Neg. LLF: 153.50029098838652
Iteration: 6, Func. Count: 59, Neg. LLF: 143.04239793735653
Iteration: 7, Func. Count: 69, Neg. LLF: 142.89078677085624
Iteration: 8, Func. Count: 78, Neg. LLF: 142.7818954411852
Iteration: 9, Func. Count: 87, Neg. LLF: 142.6956783512204
Iteration: 10, Func. Count: 96, Neg. LLF: 142.58151004503824
Iteration: 11, Func. Count: 105, Neg. LLF: 142.50895165581142
Iteration: 12, Func. Count: 114, Neg. LLF: 142.4733834079406
Iteration: 13, Func. Count: 123, Neg. LLF: 142.47158439040413
Iteration: 14, Func. Count: 132, Neg. LLF: 142.47120103403543
Iteration: 15, Func. Count: 141, Neg. LLF: 142.4710180293573
Iteration: 16, Func. Count: 150, Neg. LLF: 142.47101556531211
Iteration: 17, Func. Count: 158, Neg. LLF: 142.47101562656
Optimization terminated successfully (Exit mode 0)
Current function value: 142.47101556531211
Iterations: 17
Function evaluations: 158
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 145.2179521114867
Iteration: 2, Func. Count: 22, Neg. LLF: 144.45403868402616
Iteration: 3, Func. Count: 33, Neg. LLF: 154.7203027872308
Iteration: 4, Func. Count: 44, Neg. LLF: 143.20706180854228
Iteration: 5, Func. Count: 54, Neg. LLF: 149.73581835395942
Iteration: 6, Func. Count: 65, Neg. LLF: 145.76266741088503
Iteration: 7, Func. Count: 76, Neg. LLF: 142.9165300649882
Iteration: 8, Func. Count: 86, Neg. LLF: 142.82790318865017
Iteration: 9, Func. Count: 96, Neg. LLF: 142.71039891478986
Iteration: 10, Func. Count: 106, Neg. LLF: 142.61275442091508
Iteration: 11, Func. Count: 116, Neg. LLF: 142.53131885680253
Iteration: 12, Func. Count: 126, Neg. LLF: 142.4812924765036
Iteration: 13, Func. Count: 136, Neg. LLF: 142.47189347954043
Iteration: 14, Func. Count: 146, Neg. LLF: 142.47132659513787
Iteration: 15, Func. Count: 156, Neg. LLF: 142.47102540297246
Iteration: 16, Func. Count: 166, Neg. LLF: 142.4710157050692
Iteration: 17, Func. Count: 175, Neg. LLF: 142.471015734152
Optimization terminated successfully (Exit mode 0)
Current function value: 142.4710157050692
Iterations: 17
Function evaluations: 175
Gradient evaluations: 17
Iteration: 1, Func. Count: 12, Neg. LLF: 145.20812307861965
Iteration: 2, Func. Count: 24, Neg. LLF: 144.45562226268996
Iteration: 3, Func. Count: 36, Neg. LLF: 154.66506802739087
Iteration: 4, Func. Count: 48, Neg. LLF: 143.18038862107366
Iteration: 5, Func. Count: 59, Neg. LLF: 151.72327232803744
Iteration: 6, Func. Count: 71, Neg. LLF: 143.04769402462458
Iteration: 7, Func. Count: 82, Neg. LLF: 142.8995552077204
Iteration: 8, Func. Count: 93, Neg. LLF: 142.83368558851157
Iteration: 9, Func. Count: 104, Neg. LLF: 142.68387013747844
Iteration: 10, Func. Count: 115, Neg. LLF: 142.6182378042584
Iteration: 11, Func. Count: 126, Neg. LLF: 142.50235602030816
Iteration: 12, Func. Count: 137, Neg. LLF: 142.4737375075276
Iteration: 13, Func. Count: 148, Neg. LLF: 142.4713071095702
Iteration: 14, Func. Count: 159, Neg. LLF: 142.47115118183888
Iteration: 15, Func. Count: 170, Neg. LLF: 142.47102243629647
Iteration: 16, Func. Count: 181, Neg. LLF: 142.47101573043247
Iteration: 17, Func. Count: 191, Neg. LLF: 142.47101580528036
Optimization terminated successfully (Exit mode 0)
Current function value: 142.47101573043247
Iterations: 17
Function evaluations: 191
Gradient evaluations: 17
Iteration: 1, Func. Count: 9, Neg. LLF: 146.04081471220192
Iteration: 2, Func. Count: 18, Neg. LLF: 144.1308019569699
Iteration: 3, Func. Count: 27, Neg. LLF: 143.34361660352673
Iteration: 4, Func. Count: 36, Neg. LLF: 142.56358553889538
Iteration: 5, Func. Count: 44, Neg. LLF: 166.56915040964697
Iteration: 6, Func. Count: 53, Neg. LLF: 142.70490155322196
Iteration: 7, Func. Count: 62, Neg. LLF: 142.3492483023038
Iteration: 8, Func. Count: 70, Neg. LLF: 142.26140383931732
Iteration: 9, Func. Count: 78, Neg. LLF: 142.24146178264562
Iteration: 10, Func. Count: 86, Neg. LLF: 142.2300932687925
Iteration: 11, Func. Count: 94, Neg. LLF: 142.22960445260156
Iteration: 12, Func. Count: 102, Neg. LLF: 142.2294438184153
Iteration: 13, Func. Count: 110, Neg. LLF: 142.22944131159554
Iteration: 14, Func. Count: 117, Neg. LLF: 142.2294413059202
Optimization terminated successfully (Exit mode 0)
Current function value: 142.22944131159554
Iterations: 14
Function evaluations: 117
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 145.25283662181053
Iteration: 2, Func. Count: 20, Neg. LLF: 144.38572890907724
Iteration: 3, Func. Count: 30, Neg. LLF: 160.32525624010003
Iteration: 4, Func. Count: 40, Neg. LLF: 143.07272610662974
Iteration: 5, Func. Count: 49, Neg. LLF: 151.99654765940326
Iteration: 6, Func. Count: 59, Neg. LLF: 148.8237867027623
Iteration: 7, Func. Count: 69, Neg. LLF: 142.59890956759344
Iteration: 8, Func. Count: 78, Neg. LLF: 142.4931190821411
Iteration: 9, Func. Count: 87, Neg. LLF: 142.41623157240957
Iteration: 10, Func. Count: 96, Neg. LLF: 142.34796906243372
Iteration: 11, Func. Count: 105, Neg. LLF: 142.31714917184865
Iteration: 12, Func. Count: 114, Neg. LLF: 142.28347603207894
Iteration: 13, Func. Count: 123, Neg. LLF: 142.25250863239498
Iteration: 14, Func. Count: 132, Neg. LLF: 142.2341734058507
Iteration: 15, Func. Count: 141, Neg. LLF: 142.23143618832734
Iteration: 16, Func. Count: 150, Neg. LLF: 142.229723109793
Iteration: 17, Func. Count: 159, Neg. LLF: 142.22951221861032
Iteration: 18, Func. Count: 168, Neg. LLF: 142.229441143806
Iteration: 19, Func. Count: 176, Neg. LLF: 142.22944123400703
Optimization terminated successfully (Exit mode 0)
Current function value: 142.229441143806
Iterations: 19
Function evaluations: 176
Gradient evaluations: 19
Iteration: 1, Func. Count: 11, Neg. LLF: 145.22510676814858
Iteration: 2, Func. Count: 22, Neg. LLF: 144.48410349441966
Iteration: 3, Func. Count: 33, Neg. LLF: 160.6981374572315
Iteration: 4, Func. Count: 44, Neg. LLF: 143.2608900644496
Iteration: 5, Func. Count: 54, Neg. LLF: 148.43683422473865
Iteration: 6, Func. Count: 65, Neg. LLF: 144.6354047894317
Iteration: 7, Func. Count: 76, Neg. LLF: 143.42746600190978
Iteration: 8, Func. Count: 87, Neg. LLF: 142.58459526708046
Iteration: 9, Func. Count: 97, Neg. LLF: 142.4711894478381
Iteration: 10, Func. Count: 107, Neg. LLF: 142.41526698777312
Iteration: 11, Func. Count: 117, Neg. LLF: 142.32532476870995
Iteration: 12, Func. Count: 127, Neg. LLF: 142.30190794408367
Iteration: 13, Func. Count: 137, Neg. LLF: 142.26047519797407
Iteration: 14, Func. Count: 147, Neg. LLF: 142.23911399014665
Iteration: 15, Func. Count: 157, Neg. LLF: 142.23012472372116
Iteration: 16, Func. Count: 167, Neg. LLF: 142.2294999428145
Iteration: 17, Func. Count: 177, Neg. LLF: 142.22945226472478
Iteration: 18, Func. Count: 187, Neg. LLF: 142.2294428943368
Iteration: 19, Func. Count: 197, Neg. LLF: 142.22944107627308
Iteration: 20, Func. Count: 206, Neg. LLF: 142.229441125338
Optimization terminated successfully (Exit mode 0)
Current function value: 142.22944107627308
Iterations: 20
Function evaluations: 206
Gradient evaluations: 20
Iteration: 1, Func. Count: 12, Neg. LLF: 145.2058158245987
Iteration: 2, Func. Count: 24, Neg. LLF: 144.37016486742036
Iteration: 3, Func. Count: 36, Neg. LLF: 152.4195331376874
Iteration: 4, Func. Count: 48, Neg. LLF: 143.62949086298863
Iteration: 5, Func. Count: 60, Neg. LLF: 142.99998742346935
Iteration: 6, Func. Count: 71, Neg. LLF: 144.8220056837012
Iteration: 7, Func. Count: 84, Neg. LLF: 142.89847997469937
Iteration: 8, Func. Count: 96, Neg. LLF: 142.57320209204636
Iteration: 9, Func. Count: 107, Neg. LLF: 142.4760891183253
Iteration: 10, Func. Count: 118, Neg. LLF: 142.41227673850622
Iteration: 11, Func. Count: 129, Neg. LLF: 142.34287602908717
Iteration: 12, Func. Count: 140, Neg. LLF: 142.31388170395596
Iteration: 13, Func. Count: 151, Neg. LLF: 142.2504921066007
Iteration: 14, Func. Count: 162, Neg. LLF: 142.23541629140476
Iteration: 15, Func. Count: 173, Neg. LLF: 142.2308001944623
Iteration: 16, Func. Count: 184, Neg. LLF: 142.23004162685888
Iteration: 17, Func. Count: 195, Neg. LLF: 142.22954882988805
Iteration: 18, Func. Count: 206, Neg. LLF: 142.22945360195143
Iteration: 19, Func. Count: 217, Neg. LLF: 142.22944134105393
Iteration: 20, Func. Count: 227, Neg. LLF: 142.22944140927524
Optimization terminated successfully (Exit mode 0)
Current function value: 142.22944134105393
Iterations: 20
Function evaluations: 227
Gradient evaluations: 20
Iteration: 1, Func. Count: 13, Neg. LLF: 145.1981744157928
Iteration: 2, Func. Count: 26, Neg. LLF: 144.4190386380811
Iteration: 3, Func. Count: 39, Neg. LLF: 152.37825481639686
Iteration: 4, Func. Count: 52, Neg. LLF: 144.21948304071122
Iteration: 5, Func. Count: 65, Neg. LLF: 143.03378901473144
Iteration: 6, Func. Count: 77, Neg. LLF: 152.42181637922593
Iteration: 7, Func. Count: 91, Neg. LLF: 143.3127659681724
Iteration: 8, Func. Count: 104, Neg. LLF: 142.56826576120284
Iteration: 9, Func. Count: 116, Neg. LLF: 142.4771623223832
Iteration: 10, Func. Count: 128, Neg. LLF: 142.40447315927787
Iteration: 11, Func. Count: 140, Neg. LLF: 142.35636697932813
Iteration: 12, Func. Count: 152, Neg. LLF: 142.32009939437543
Iteration: 13, Func. Count: 164, Neg. LLF: 142.24665739273277
Iteration: 14, Func. Count: 176, Neg. LLF: 142.23284140788414
Iteration: 15, Func. Count: 188, Neg. LLF: 142.23130428607652
Iteration: 16, Func. Count: 200, Neg. LLF: 142.22994741982515
Iteration: 17, Func. Count: 212, Neg. LLF: 142.22951014170866
Iteration: 18, Func. Count: 224, Neg. LLF: 142.22944369751474
Iteration: 19, Func. Count: 236, Neg. LLF: 142.2294410264578
Iteration: 20, Func. Count: 247, Neg. LLF: 142.22944112134388
Optimization terminated successfully (Exit mode 0)
Current function value: 142.2294410264578
Iterations: 20
Function evaluations: 247
Gradient evaluations: 20
Iteration: 1, Func. Count: 10, Neg. LLF: 145.04976970447956
Iteration: 2, Func. Count: 20, Neg. LLF: 143.00409299595344
Iteration: 3, Func. Count: 29, Neg. LLF: 142.80741621752057
Iteration: 4, Func. Count: 39, Neg. LLF: 142.8154031617458
Iteration: 5, Func. Count: 49, Neg. LLF: 144.67384920557055
Iteration: 6, Func. Count: 59, Neg. LLF: 142.0996149592125
Iteration: 7, Func. Count: 68, Neg. LLF: 142.93381137643135
Iteration: 8, Func. Count: 78, Neg. LLF: 141.30575995785782
Iteration: 9, Func. Count: 87, Neg. LLF: 141.17024025585548
Iteration: 10, Func. Count: 96, Neg. LLF: 141.16213824430335
Iteration: 11, Func. Count: 105, Neg. LLF: 141.1608674105613
Iteration: 12, Func. Count: 114, Neg. LLF: 141.1607284367964
Iteration: 13, Func. Count: 123, Neg. LLF: 141.16072500727466
Iteration: 14, Func. Count: 131, Neg. LLF: 141.16072502059856
Optimization terminated successfully (Exit mode 0)
Current function value: 141.16072500727466
Iterations: 14
Function evaluations: 131
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 145.26795506168642
Iteration: 2, Func. Count: 22, Neg. LLF: 144.67114292270907
Iteration: 3, Func. Count: 33, Neg. LLF: 142.87701905263685
Iteration: 4, Func. Count: 43, Neg. LLF: 142.7470463149936
Iteration: 5, Func. Count: 53, Neg. LLF: 142.83977357379393
Iteration: 6, Func. Count: 64, Neg. LLF: 150.68865903821296
Iteration: 7, Func. Count: 77, Neg. LLF: 143.723456352551
Iteration: 8, Func. Count: 88, Neg. LLF: 142.3663114043788
Iteration: 9, Func. Count: 99, Neg. LLF: 141.58164500539593
Iteration: 10, Func. Count: 109, Neg. LLF: 141.45230083068878
Iteration: 11, Func. Count: 119, Neg. LLF: 141.31208253304567
Iteration: 12, Func. Count: 129, Neg. LLF: 141.17542268030775
Iteration: 13, Func. Count: 139, Neg. LLF: 141.16368498986432
Iteration: 14, Func. Count: 149, Neg. LLF: 141.16084899430834
Iteration: 15, Func. Count: 159, Neg. LLF: 141.16074066645493
Iteration: 16, Func. Count: 169, Neg. LLF: 141.16072494234956
Iteration: 17, Func. Count: 178, Neg. LLF: 141.16072497286174
Optimization terminated successfully (Exit mode 0)
Current function value: 141.16072494234956
Iterations: 17
Function evaluations: 178
Gradient evaluations: 17
Iteration: 1, Func. Count: 12, Neg. LLF: 145.23408741141014
Iteration: 2, Func. Count: 24, Neg. LLF: 144.91771579889127
Iteration: 3, Func. Count: 36, Neg. LLF: 142.90420219416242
Iteration: 4, Func. Count: 47, Neg. LLF: 142.6458444592504
Iteration: 5, Func. Count: 58, Neg. LLF: 142.72478153290692
Iteration: 6, Func. Count: 70, Neg. LLF: 150.90754351577084
Iteration: 7, Func. Count: 83, Neg. LLF: 142.03433739979414
Iteration: 8, Func. Count: 94, Neg. LLF: 143.95293943851456
Iteration: 9, Func. Count: 106, Neg. LLF: 142.55061827110245
Iteration: 10, Func. Count: 118, Neg. LLF: 141.5016311970458
Iteration: 11, Func. Count: 129, Neg. LLF: 141.3422487372564
Iteration: 12, Func. Count: 140, Neg. LLF: 141.18849623222096
Iteration: 13, Func. Count: 151, Neg. LLF: 141.1620931240705
Iteration: 14, Func. Count: 162, Neg. LLF: 141.16082049282852
Iteration: 15, Func. Count: 173, Neg. LLF: 141.16072801801016
Iteration: 16, Func. Count: 184, Neg. LLF: 141.16072469901448
Iteration: 17, Func. Count: 194, Neg. LLF: 141.16072469473738
Optimization terminated successfully (Exit mode 0)
Current function value: 141.16072469901448
Iterations: 17
Function evaluations: 194
Gradient evaluations: 17
Iteration: 1, Func. Count: 13, Neg. LLF: 145.2091962125843
Iteration: 2, Func. Count: 26, Neg. LLF: 144.37206028516874
Iteration: 3, Func. Count: 39, Neg. LLF: 142.84595097193016
Iteration: 4, Func. Count: 51, Neg. LLF: 142.57641231237568
Iteration: 5, Func. Count: 63, Neg. LLF: 144.93832017453585
Iteration: 6, Func. Count: 77, Neg. LLF: 142.39475884839015
Iteration: 7, Func. Count: 90, Neg. LLF: 141.66608397965368
Iteration: 8, Func. Count: 102, Neg. LLF: 141.8288777875781
Iteration: 9, Func. Count: 115, Neg. LLF: 141.54100574780736
Iteration: 10, Func. Count: 128, Neg. LLF: 141.28817193342488
Iteration: 11, Func. Count: 140, Neg. LLF: 141.17845159309405
Iteration: 12, Func. Count: 152, Neg. LLF: 141.1611166723395
Iteration: 13, Func. Count: 164, Neg. LLF: 141.16075014551672
Iteration: 14, Func. Count: 176, Neg. LLF: 141.1607256013847
Iteration: 15, Func. Count: 188, Neg. LLF: 141.16072468662168
Optimization terminated successfully (Exit mode 0)
Current function value: 141.16072468662168
Iterations: 15
Function evaluations: 188
Gradient evaluations: 15
Iteration: 1, Func. Count: 14, Neg. LLF: 145.20003528538535
Iteration: 2, Func. Count: 28, Neg. LLF: 144.347157079542
Iteration: 3, Func. Count: 42, Neg. LLF: 142.90214600358797
Iteration: 4, Func. Count: 55, Neg. LLF: 142.71349833794875
Iteration: 5, Func. Count: 68, Neg. LLF: 150.82584374482113
Iteration: 6, Func. Count: 83, Neg. LLF: 142.67822490977403
Iteration: 7, Func. Count: 97, Neg. LLF: 147.888003198247
Iteration: 8, Func. Count: 111, Neg. LLF: 141.75032243408967
Iteration: 9, Func. Count: 124, Neg. LLF: 141.45770919180123
Iteration: 10, Func. Count: 137, Neg. LLF: 141.3578225370726
Iteration: 11, Func. Count: 150, Neg. LLF: 141.22939427191184
Iteration: 12, Func. Count: 163, Neg. LLF: 141.16869318658433
Iteration: 13, Func. Count: 176, Neg. LLF: 141.16100052704138
Iteration: 14, Func. Count: 189, Neg. LLF: 141.16078181262031
Iteration: 15, Func. Count: 202, Neg. LLF: 141.16072884879722
Iteration: 16, Func. Count: 215, Neg. LLF: 141.16072488652614
Iteration: 17, Func. Count: 227, Neg. LLF: 141.16072493885164
Optimization terminated successfully (Exit mode 0)
Current function value: 141.16072488652614
Iterations: 17
Function evaluations: 227
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 144.97949659004038
Iteration: 2, Func. Count: 22, Neg. LLF: 142.71121402420852
Iteration: 3, Func. Count: 32, Neg. LLF: 142.50075234124728
Iteration: 4, Func. Count: 42, Neg. LLF: 142.55366428857843
Iteration: 5, Func. Count: 53, Neg. LLF: 142.4669337560789
Iteration: 6, Func. Count: 64, Neg. LLF: 142.1915391829654
Iteration: 7, Func. Count: 75, Neg. LLF: 143.1878210243582
Iteration: 8, Func. Count: 86, Neg. LLF: 152.65615788735627
Iteration: 9, Func. Count: 97, Neg. LLF: 141.18405708743754
Iteration: 10, Func. Count: 107, Neg. LLF: 141.20294069981483
Iteration: 11, Func. Count: 118, Neg. LLF: 141.1659243527919
Iteration: 12, Func. Count: 129, Neg. LLF: 141.16074868131196
Iteration: 13, Func. Count: 139, Neg. LLF: 141.16072492150843
Iteration: 14, Func. Count: 148, Neg. LLF: 141.16072492020916
Optimization terminated successfully (Exit mode 0)
Current function value: 141.16072492150843
Iterations: 14
Function evaluations: 148
Gradient evaluations: 14
Iteration: 1, Func. Count: 12, Neg. LLF: 144.2914640751937
Iteration: 2, Func. Count: 24, Neg. LLF: 144.55552339600234
Iteration: 3, Func. Count: 36, Neg. LLF: 145.31544846712546
Iteration: 4, Func. Count: 48, Neg. LLF: 143.3297674290265
Iteration: 5, Func. Count: 59, Neg. LLF: 143.3168851019363
Iteration: 6, Func. Count: 71, Neg. LLF: 142.99017497086925
Iteration: 7, Func. Count: 82, Neg. LLF: 142.74617011599037
Iteration: 8, Func. Count: 93, Neg. LLF: 142.63363954742994
Iteration: 9, Func. Count: 104, Neg. LLF: 142.52123769751196
Iteration: 10, Func. Count: 115, Neg. LLF: 142.36471877300207
Iteration: 11, Func. Count: 126, Neg. LLF: 142.43834782420623
Iteration: 12, Func. Count: 138, Neg. LLF: 142.244949737844
Iteration: 13, Func. Count: 149, Neg. LLF: 142.14371610881167
Iteration: 14, Func. Count: 160, Neg. LLF: 142.016848965658
Iteration: 15, Func. Count: 171, Neg. LLF: 141.90519281171885
Iteration: 16, Func. Count: 182, Neg. LLF: 141.8321154544449
Iteration: 17, Func. Count: 193, Neg. LLF: 141.76407571710814
Iteration: 18, Func. Count: 204, Neg. LLF: 141.75810869789814
Iteration: 19, Func. Count: 215, Neg. LLF: 141.75632942373863
Iteration: 20, Func. Count: 226, Neg. LLF: 141.75585630982954
Iteration: 21, Func. Count: 237, Neg. LLF: 141.75579594477483
Iteration: 22, Func. Count: 247, Neg. LLF: 141.7557959130831
Optimization terminated successfully (Exit mode 0)
Current function value: 141.75579594477483
Iterations: 22
Function evaluations: 247
Gradient evaluations: 22
Iteration: 1, Func. Count: 13, Neg. LLF: 145.2412658609793
Iteration: 2, Func. Count: 26, Neg. LLF: 144.97554660895221
Iteration: 3, Func. Count: 39, Neg. LLF: 142.88928706675802
Iteration: 4, Func. Count: 51, Neg. LLF: 142.61128677894334
Iteration: 5, Func. Count: 63, Neg. LLF: 142.70356485778655
Iteration: 6, Func. Count: 76, Neg. LLF: 149.74139634019778
Iteration: 7, Func. Count: 90, Neg. LLF: 141.9943720268895
Iteration: 8, Func. Count: 102, Neg. LLF: 144.7585174029307
Iteration: 9, Func. Count: 115, Neg. LLF: 141.61211701171933
Iteration: 10, Func. Count: 127, Neg. LLF: 141.42129443356478
Iteration: 11, Func. Count: 139, Neg. LLF: 141.3247101415047
Iteration: 12, Func. Count: 151, Neg. LLF: 141.19590526622704
Iteration: 13, Func. Count: 163, Neg. LLF: 141.1639944890872
Iteration: 14, Func. Count: 175, Neg. LLF: 141.1610848082466
Iteration: 15, Func. Count: 187, Neg. LLF: 141.16073695507941
Iteration: 16, Func. Count: 199, Neg. LLF: 141.16072581967907
Iteration: 17, Func. Count: 211, Neg. LLF: 141.16072466030016
Iteration: 18, Func. Count: 222, Neg. LLF: 141.1607246560554
Optimization terminated successfully (Exit mode 0)
Current function value: 141.16072466030016
Iterations: 18
Function evaluations: 222
Gradient evaluations: 18
Iteration: 1, Func. Count: 14, Neg. LLF: 145.21353868968544
Iteration: 2, Func. Count: 28, Neg. LLF: 144.3917493845593
Iteration: 3, Func. Count: 42, Neg. LLF: 142.84281082205163
Iteration: 4, Func. Count: 55, Neg. LLF: 142.60181766328978
Iteration: 5, Func. Count: 68, Neg. LLF: 144.7733776903245
Iteration: 6, Func. Count: 83, Neg. LLF: 142.38364204080494
Iteration: 7, Func. Count: 96, Neg. LLF: 141.8383924158466
Iteration: 8, Func. Count: 109, Neg. LLF: 141.6454782132419
Iteration: 9, Func. Count: 122, Neg. LLF: 143.0170721396396
Iteration: 10, Func. Count: 136, Neg. LLF: 141.32813523170432
Iteration: 11, Func. Count: 149, Neg. LLF: 141.2236501847632
Iteration: 12, Func. Count: 162, Neg. LLF: 141.17015051665953
Iteration: 13, Func. Count: 175, Neg. LLF: 141.16158985657884
Iteration: 14, Func. Count: 188, Neg. LLF: 141.16080280225748
Iteration: 15, Func. Count: 201, Neg. LLF: 141.1607299345034
Iteration: 16, Func. Count: 214, Neg. LLF: 141.16072488773102
Iteration: 17, Func. Count: 226, Neg. LLF: 141.16072495628367
Optimization terminated successfully (Exit mode 0)
Current function value: 141.16072488773102
Iterations: 17
Function evaluations: 226
Gradient evaluations: 17
Iteration: 1, Func. Count: 15, Neg. LLF: 145.20326434433636
Iteration: 2, Func. Count: 30, Neg. LLF: 144.36262012003942
Iteration: 3, Func. Count: 45, Neg. LLF: 142.90235173899538
Iteration: 4, Func. Count: 59, Neg. LLF: 142.76158666498677
Iteration: 5, Func. Count: 73, Neg. LLF: 146.1844857819292
Iteration: 6, Func. Count: 89, Neg. LLF: 142.5216891095591
Iteration: 7, Func. Count: 103, Neg. LLF: 143.2043155453863
Iteration: 8, Func. Count: 118, Neg. LLF: 142.60652891705496
Iteration: 9, Func. Count: 133, Neg. LLF: 141.6215998637383
Iteration: 10, Func. Count: 147, Neg. LLF: 142.48698917672112
Iteration: 11, Func. Count: 162, Neg. LLF: 141.39859183759992
Iteration: 12, Func. Count: 176, Neg. LLF: 141.27653160310857
Iteration: 13, Func. Count: 190, Neg. LLF: 141.20344218981165
Iteration: 14, Func. Count: 204, Neg. LLF: 141.16450626064864
Iteration: 15, Func. Count: 218, Neg. LLF: 141.16099723362845
Iteration: 16, Func. Count: 232, Neg. LLF: 141.16076965458862
Iteration: 17, Func. Count: 246, Neg. LLF: 141.16072903287775
Iteration: 18, Func. Count: 260, Neg. LLF: 141.16072476985704
Iteration: 19, Func. Count: 273, Neg. LLF: 141.16072482212752
Optimization terminated successfully (Exit mode 0)
Current function value: 141.16072476985704
Iterations: 19
Function evaluations: 273
Gradient evaluations: 19
Iteration: 1, Func. Count: 12, Neg. LLF: 144.03098810674362
Iteration: 2, Func. Count: 24, Neg. LLF: 147.03686000923642
Iteration: 3, Func. Count: 36, Neg. LLF: 156.96725329104714
Iteration: 4, Func. Count: 48, Neg. LLF: 141.8795423280465
Iteration: 5, Func. Count: 60, Neg. LLF: 140.01410891037577
Iteration: 6, Func. Count: 71, Neg. LLF: 140.36983226806902
Iteration: 7, Func. Count: 83, Neg. LLF: 141.00472010133774
Iteration: 8, Func. Count: 95, Neg. LLF: 139.1657301505164
Iteration: 9, Func. Count: 106, Neg. LLF: 138.91209104580142
Iteration: 10, Func. Count: 117, Neg. LLF: 138.48607104113847
Iteration: 11, Func. Count: 128, Neg. LLF: 142.34352369770434
Iteration: 12, Func. Count: 140, Neg. LLF: 138.16331760271368
Iteration: 13, Func. Count: 151, Neg. LLF: 138.0757916898195
Iteration: 14, Func. Count: 162, Neg. LLF: 138.05946449910604
Iteration: 15, Func. Count: 174, Neg. LLF: 138.0100742035513
Iteration: 16, Func. Count: 185, Neg. LLF: 137.99800034755327
Iteration: 17, Func. Count: 196, Neg. LLF: 137.98760695823282
Iteration: 18, Func. Count: 207, Neg. LLF: 137.98517459753336
Iteration: 19, Func. Count: 218, Neg. LLF: 137.9848905448934
Iteration: 20, Func. Count: 229, Neg. LLF: 137.98487800318486
Iteration: 21, Func. Count: 239, Neg. LLF: 137.9848778148472
Optimization terminated successfully (Exit mode 0)
Current function value: 137.98487800318486
Iterations: 21
Function evaluations: 239
Gradient evaluations: 21
Iteration: 1, Func. Count: 13, Neg. LLF: 142.91320537285551
Iteration: 2, Func. Count: 26, Neg. LLF: 144.60509860610057
Iteration: 3, Func. Count: 39, Neg. LLF: 151.44825591082537
Iteration: 4, Func. Count: 52, Neg. LLF: 140.63495111208712
Iteration: 5, Func. Count: 64, Neg. LLF: 139.7676732086247
Iteration: 6, Func. Count: 76, Neg. LLF: 140.27445238337302
Iteration: 7, Func. Count: 89, Neg. LLF: 139.42514509945408
Iteration: 8, Func. Count: 101, Neg. LLF: 138.76033943646647
Iteration: 9, Func. Count: 113, Neg. LLF: 142.03097676604244
Iteration: 10, Func. Count: 126, Neg. LLF: 255.78863589607712
Iteration: 11, Func. Count: 139, Neg. LLF: 138.34618119167038
Iteration: 12, Func. Count: 151, Neg. LLF: 138.19939581904404
Iteration: 13, Func. Count: 163, Neg. LLF: 138.09129582651562
Iteration: 14, Func. Count: 175, Neg. LLF: 138.002181449239
Iteration: 15, Func. Count: 187, Neg. LLF: 137.987782926773
Iteration: 16, Func. Count: 199, Neg. LLF: 137.9853713467783
Iteration: 17, Func. Count: 211, Neg. LLF: 137.98497580028913
Iteration: 18, Func. Count: 223, Neg. LLF: 137.98488948940295
Iteration: 19, Func. Count: 235, Neg. LLF: 137.98487851475483
Iteration: 20, Func. Count: 247, Neg. LLF: 137.9848778613747
Optimization terminated successfully (Exit mode 0)
Current function value: 137.9848778613747
Iterations: 20
Function evaluations: 247
Gradient evaluations: 20
Iteration: 1, Func. Count: 14, Neg. LLF: 142.94216425717838
Iteration: 2, Func. Count: 27, Neg. LLF: 146.71770132671242
Iteration: 3, Func. Count: 41, Neg. LLF: 173.86157994500357
Iteration: 4, Func. Count: 57, Neg. LLF: 165.23595353953732
Iteration: 5, Func. Count: 71, Neg. LLF: 140.2344097224805
Iteration: 6, Func. Count: 84, Neg. LLF: 139.82534435608457
Iteration: 7, Func. Count: 97, Neg. LLF: 139.49180716995966
Iteration: 8, Func. Count: 110, Neg. LLF: 139.31304371669248
Iteration: 9, Func. Count: 123, Neg. LLF: 139.0524866819453
Iteration: 10, Func. Count: 136, Neg. LLF: 138.56857370408142
Iteration: 11, Func. Count: 149, Neg. LLF: 148.64051054337673
Iteration: 12, Func. Count: 164, Neg. LLF: 154.78033533655616
Iteration: 13, Func. Count: 178, Neg. LLF: 138.17199894322937
Iteration: 14, Func. Count: 191, Neg. LLF: 138.06601836833056
Iteration: 15, Func. Count: 204, Neg. LLF: 138.02642419498378
Iteration: 16, Func. Count: 217, Neg. LLF: 137.99260567343646
Iteration: 17, Func. Count: 230, Neg. LLF: 137.98575079350383
Iteration: 18, Func. Count: 243, Neg. LLF: 137.98502568959748
Iteration: 19, Func. Count: 256, Neg. LLF: 137.98488283594907
Iteration: 20, Func. Count: 269, Neg. LLF: 137.98487917214592
Iteration: 21, Func. Count: 282, Neg. LLF: 137.98487780426345
Iteration: 22, Func. Count: 294, Neg. LLF: 137.98487780351707
Optimization terminated successfully (Exit mode 0)
Current function value: 137.98487780426345
Iterations: 22
Function evaluations: 294
Gradient evaluations: 22
Iteration: 1, Func. Count: 15, Neg. LLF: 142.6557864472804
Iteration: 2, Func. Count: 29, Neg. LLF: 145.5767193793047
Iteration: 3, Func. Count: 44, Neg. LLF: 168.88381167896355
Iteration: 4, Func. Count: 61, Neg. LLF: 161.0087152798509
Iteration: 5, Func. Count: 76, Neg. LLF: 141.36571763360172
Iteration: 6, Func. Count: 91, Neg. LLF: 139.8311627896687
Iteration: 7, Func. Count: 105, Neg. LLF: 142.62948380441506
Iteration: 8, Func. Count: 120, Neg. LLF: 142.7259927891656
Iteration: 9, Func. Count: 136, Neg. LLF: 139.10080977985396
Iteration: 10, Func. Count: 150, Neg. LLF: 138.76498254622325
Iteration: 11, Func. Count: 164, Neg. LLF: 138.3530808354645
Iteration: 12, Func. Count: 178, Neg. LLF: 188.94883088623808
Iteration: 13, Func. Count: 193, Neg. LLF: 138.21294326136007
Iteration: 14, Func. Count: 207, Neg. LLF: 138.0532376163468
Iteration: 15, Func. Count: 221, Neg. LLF: 138.01334016467922
Iteration: 16, Func. Count: 235, Neg. LLF: 137.98727239087745
Iteration: 17, Func. Count: 249, Neg. LLF: 137.9850166651648
Iteration: 18, Func. Count: 263, Neg. LLF: 137.9848990560931
Iteration: 19, Func. Count: 277, Neg. LLF: 137.9848797873467
Iteration: 20, Func. Count: 291, Neg. LLF: 137.98487793969602
Iteration: 21, Func. Count: 304, Neg. LLF: 137.98487814282794
Optimization terminated successfully (Exit mode 0)
Current function value: 137.98487793969602
Iterations: 21
Function evaluations: 304
Gradient evaluations: 21
Iteration: 1, Func. Count: 16, Neg. LLF: 142.63794424806818
Iteration: 2, Func. Count: 31, Neg. LLF: 145.22106882988066
Iteration: 3, Func. Count: 47, Neg. LLF: 151.76543662143408
Iteration: 4, Func. Count: 63, Neg. LLF: 150.16681834375603
Iteration: 5, Func. Count: 79, Neg. LLF: 140.10297962742618
Iteration: 6, Func. Count: 94, Neg. LLF: 140.3249411034172
Iteration: 7, Func. Count: 110, Neg. LLF: 141.67686443925842
Iteration: 8, Func. Count: 126, Neg. LLF: 139.6243489663055
Iteration: 9, Func. Count: 142, Neg. LLF: 139.0046456083582
Iteration: 10, Func. Count: 157, Neg. LLF: 138.60385521621657
Iteration: 11, Func. Count: 172, Neg. LLF: 138.49776646717893
Iteration: 12, Func. Count: 187, Neg. LLF: 138.26513554185064
Iteration: 13, Func. Count: 202, Neg. LLF: 138.42031052085107
Iteration: 14, Func. Count: 218, Neg. LLF: 138.04561905353304
Iteration: 15, Func. Count: 233, Neg. LLF: 137.98991445562223
Iteration: 16, Func. Count: 248, Neg. LLF: 137.98570943287478
Iteration: 17, Func. Count: 263, Neg. LLF: 137.98491157371794
Iteration: 18, Func. Count: 278, Neg. LLF: 137.98487974341978
Iteration: 19, Func. Count: 293, Neg. LLF: 137.98487795309634
Iteration: 20, Func. Count: 307, Neg. LLF: 137.98487806120116
Optimization terminated successfully (Exit mode 0)
Current function value: 137.98487795309634
Iterations: 20
Function evaluations: 307
Gradient evaluations: 20
Iteration: 1, Func. Count: 5, Neg. LLF: 152.2582011156474
Iteration: 2, Func. Count: 10, Neg. LLF: 150.081752432731
Iteration: 3, Func. Count: 15, Neg. LLF: 143.7048593245384
Iteration: 4, Func. Count: 19, Neg. LLF: 143.5713485893622
Iteration: 5, Func. Count: 23, Neg. LLF: 143.55188420339954
Iteration: 6, Func. Count: 27, Neg. LLF: 143.55185295056094
Iteration: 7, Func. Count: 31, Neg. LLF: 143.55184837103974
Iteration: 8, Func. Count: 35, Neg. LLF: 143.55184025437777
Iteration: 9, Func. Count: 38, Neg. LLF: 143.55184025562147
Optimization terminated successfully (Exit mode 0)
Current function value: 143.55184025437777
Iterations: 9
Function evaluations: 38
Gradient evaluations: 9
Iteration: 1, Func. Count: 5, Neg. LLF: 152.95046210668812
Iteration: 2, Func. Count: 9, Neg. LLF: 151.83104391121964
Iteration: 3, Func. Count: 14, Neg. LLF: 148.9035410772356
Iteration: 4, Func. Count: 18, Neg. LLF: 148.86996043215711
Iteration: 5, Func. Count: 22, Neg. LLF: 148.83767447713828
Iteration: 6, Func. Count: 26, Neg. LLF: 148.83345879094944
Iteration: 7, Func. Count: 30, Neg. LLF: 148.8331524240163
Iteration: 8, Func. Count: 33, Neg. LLF: 148.83315243164608
Optimization terminated successfully (Exit mode 0)
Current function value: 148.8331524240163
Iterations: 8
Function evaluations: 33
Gradient evaluations: 8
Iteration: 1, Func. Count: 6, Neg. LLF: 163.16186613793946
Iteration: 2, Func. Count: 13, Neg. LLF: 150.7837735729395
Iteration: 3, Func. Count: 18, Neg. LLF: 149.7527362279798
Iteration: 4, Func. Count: 23, Neg. LLF: 234.73201626167722
Iteration: 5, Func. Count: 29, Neg. LLF: 149.55917216165815
Iteration: 6, Func. Count: 34, Neg. LLF: 149.55702265865764
Iteration: 7, Func. Count: 39, Neg. LLF: 149.55696988602915
Iteration: 8, Func. Count: 44, Neg. LLF: 149.55695981253095
Iteration: 9, Func. Count: 48, Neg. LLF: 149.55696014689673
Optimization terminated successfully (Exit mode 0)
Current function value: 149.55695981253095
Iterations: 9
Function evaluations: 48
Gradient evaluations: 9
Iteration: 1, Func. Count: 7, Neg. LLF: 159.671106564886
Iteration: 2, Func. Count: 14, Neg. LLF: 150.04030452873383
Iteration: 3, Func. Count: 20, Neg. LLF: 149.78238734577388
Iteration: 4, Func. Count: 26, Neg. LLF: 149.60343702202698
Iteration: 5, Func. Count: 32, Neg. LLF: 149.56072912538426
Iteration: 6, Func. Count: 38, Neg. LLF: 149.56049468253954
Iteration: 7, Func. Count: 44, Neg. LLF: 149.56013066786275
Iteration: 8, Func. Count: 50, Neg. LLF: 149.56009453130363
Iteration: 9, Func. Count: 56, Neg. LLF: 149.55998910379884
Iteration: 10, Func. Count: 62, Neg. LLF: 149.5592938674701
Iteration: 11, Func. Count: 68, Neg. LLF: 149.5940839816192
Iteration: 12, Func. Count: 75, Neg. LLF: 149.59347215179736
Iteration: 13, Func. Count: 82, Neg. LLF: 149.5932584609623
Iteration: 14, Func. Count: 89, Neg. LLF: 149.5909593433968
Iteration: 15, Func. Count: 96, Neg. LLF: 164.32779417559368
Iteration: 16, Func. Count: 105, Neg. LLF: 149.5570072748374
Iteration: 17, Func. Count: 112, Neg. LLF: 149.556161951108
Iteration: 18, Func. Count: 118, Neg. LLF: 149.5577423414704
Iteration: 19, Func. Count: 125, Neg. LLF: 149.59070952818658
Iteration: 20, Func. Count: 132, Neg. LLF: 149.59053738926139
Iteration: 21, Func. Count: 139, Neg. LLF: 149.56373193814773
Iteration: 22, Func. Count: 146, Neg. LLF: 149.55464289096213
Iteration: 23, Func. Count: 153, Neg. LLF: 149.55401504887953
Iteration: 24, Func. Count: 159, Neg. LLF: 149.55401288641096
Iteration: 25, Func. Count: 165, Neg. LLF: 149.55401190295066
Optimization terminated successfully (Exit mode 0)
Current function value: 149.55401190295066
Iterations: 26
Function evaluations: 165
Gradient evaluations: 25
Iteration: 1, Func. Count: 8, Neg. LLF: 157.47446900879655
Iteration: 2, Func. Count: 16, Neg. LLF: 149.73329520077834
Iteration: 3, Func. Count: 23, Neg. LLF: 149.72873523886122
Iteration: 4, Func. Count: 31, Neg. LLF: 149.55647052671617
Iteration: 5, Func. Count: 39, Neg. LLF: 149.5456802782035
Iteration: 6, Func. Count: 46, Neg. LLF: 149.5454381665125
Iteration: 7, Func. Count: 53, Neg. LLF: 149.54527608132128
Iteration: 8, Func. Count: 60, Neg. LLF: 149.5451985569045
Iteration: 9, Func. Count: 67, Neg. LLF: 149.54518337663845
Iteration: 10, Func. Count: 74, Neg. LLF: 149.54518188410117
Iteration: 11, Func. Count: 80, Neg. LLF: 149.5451817678695
Optimization terminated successfully (Exit mode 0)
Current function value: 149.54518188410117
Iterations: 11
Function evaluations: 80
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 156.9835030997501
Iteration: 2, Func. Count: 18, Neg. LLF: 149.61355361113667
Iteration: 3, Func. Count: 26, Neg. LLF: 149.59527133964664
Iteration: 4, Func. Count: 35, Neg. LLF: 149.54242806925447
Iteration: 5, Func. Count: 43, Neg. LLF: 149.54222157195622
Iteration: 6, Func. Count: 51, Neg. LLF: 149.54220766337227
Iteration: 7, Func. Count: 59, Neg. LLF: 149.54220415154091
Iteration: 8, Func. Count: 67, Neg. LLF: 149.5421608201276
Iteration: 9, Func. Count: 75, Neg. LLF: 149.5392475223007
Iteration: 10, Func. Count: 83, Neg. LLF: 149.62595050657788
Iteration: 11, Func. Count: 92, Neg. LLF: 149.538602757051
Iteration: 12, Func. Count: 101, Neg. LLF: 149.53815862828642
Iteration: 13, Func. Count: 109, Neg. LLF: 149.5381579300726
Optimization terminated successfully (Exit mode 0)
Current function value: 149.5381579300726
Iterations: 13
Function evaluations: 109
Gradient evaluations: 13
Iteration: 1, Func. Count: 6, Neg. LLF: 150.54805167404723
Iteration: 2, Func. Count: 11, Neg. LLF: 152.55563683478246
Iteration: 3, Func. Count: 17, Neg. LLF: 148.91589165336805
Iteration: 4, Func. Count: 22, Neg. LLF: 148.87422181537454
Iteration: 5, Func. Count: 27, Neg. LLF: 148.83949677838
Iteration: 6, Func. Count: 32, Neg. LLF: 148.8335858623736
Iteration: 7, Func. Count: 37, Neg. LLF: 148.83315247058988
Iteration: 8, Func. Count: 41, Neg. LLF: 148.8331525674324
Optimization terminated successfully (Exit mode 0)
Current function value: 148.83315247058988
Iterations: 8
Function evaluations: 41
Gradient evaluations: 8
Iteration: 1, Func. Count: 7, Neg. LLF: 163.15396552281447
Iteration: 2, Func. Count: 15, Neg. LLF: 150.7926267399107
Iteration: 3, Func. Count: 21, Neg. LLF: 150.25816861308917
Iteration: 4, Func. Count: 27, Neg. LLF: 150.16695353051622
Iteration: 5, Func. Count: 33, Neg. LLF: 149.57494228740066
Iteration: 6, Func. Count: 39, Neg. LLF: 149.55794999799224
Iteration: 7, Func. Count: 45, Neg. LLF: 149.55696085278703
Iteration: 8, Func. Count: 51, Neg. LLF: 149.55695971440238
Iteration: 9, Func. Count: 56, Neg. LLF: 149.55696004885675
Optimization terminated successfully (Exit mode 0)
Current function value: 149.55695971440238
Iterations: 9
Function evaluations: 56
Gradient evaluations: 9
Iteration: 1, Func. Count: 8, Neg. LLF: 159.72604773514652
Iteration: 2, Func. Count: 16, Neg. LLF: 150.0357620241887
Iteration: 3, Func. Count: 23, Neg. LLF: 149.80148968636578
Iteration: 4, Func. Count: 30, Neg. LLF: 149.62693982635113
Iteration: 5, Func. Count: 37, Neg. LLF: 149.5617705369901
Iteration: 6, Func. Count: 44, Neg. LLF: 149.56158747692177
Iteration: 7, Func. Count: 52, Neg. LLF: 149.56009308766045
Iteration: 8, Func. Count: 59, Neg. LLF: 149.56005645945285
Iteration: 9, Func. Count: 66, Neg. LLF: 149.55981612059193
Iteration: 10, Func. Count: 73, Neg. LLF: 149.55814268173452
Iteration: 11, Func. Count: 80, Neg. LLF: 149.59060484382735
Iteration: 12, Func. Count: 88, Neg. LLF: 149.59058207601544
Iteration: 13, Func. Count: 96, Neg. LLF: 149.59842190424382
Iteration: 14, Func. Count: 104, Neg. LLF: 149.5544339271312
Iteration: 15, Func. Count: 111, Neg. LLF: 149.59089925928686
Iteration: 16, Func. Count: 119, Neg. LLF: 149.5667017981512
Iteration: 17, Func. Count: 127, Neg. LLF: 149.55475286473705
Iteration: 18, Func. Count: 135, Neg. LLF: 149.5540243609243
Iteration: 19, Func. Count: 142, Neg. LLF: 149.55401232442043
Iteration: 20, Func. Count: 148, Neg. LLF: 149.55401214957007
Optimization terminated successfully (Exit mode 0)
Current function value: 149.55401232442043
Iterations: 20
Function evaluations: 148
Gradient evaluations: 20
Iteration: 1, Func. Count: 9, Neg. LLF: 157.81575337500587
Iteration: 2, Func. Count: 18, Neg. LLF: 149.72064050154097
Iteration: 3, Func. Count: 26, Neg. LLF: 149.7922886881967
Iteration: 4, Func. Count: 35, Neg. LLF: 149.55571244753648
Iteration: 5, Func. Count: 44, Neg. LLF: 149.5458186590537
Iteration: 6, Func. Count: 52, Neg. LLF: 149.54557943697802
Iteration: 7, Func. Count: 60, Neg. LLF: 149.5453339904885
Iteration: 8, Func. Count: 68, Neg. LLF: 149.54522235928258
Iteration: 9, Func. Count: 76, Neg. LLF: 149.5451861542812
Iteration: 10, Func. Count: 84, Neg. LLF: 149.54518189446577
Iteration: 11, Func. Count: 91, Neg. LLF: 149.5451817782622
Optimization terminated successfully (Exit mode 0)
Current function value: 149.54518189446577
Iterations: 11
Function evaluations: 91
Gradient evaluations: 11
Iteration: 1, Func. Count: 10, Neg. LLF: 156.0480370033342
Iteration: 2, Func. Count: 20, Neg. LLF: 149.61613900838907
Iteration: 3, Func. Count: 29, Neg. LLF: 149.61373589602067
Iteration: 4, Func. Count: 39, Neg. LLF: 149.54289510238877
Iteration: 5, Func. Count: 48, Neg. LLF: 149.54215286152314
Iteration: 6, Func. Count: 57, Neg. LLF: 149.54213556367029
Iteration: 7, Func. Count: 66, Neg. LLF: 149.54211827356573
Iteration: 8, Func. Count: 75, Neg. LLF: 149.54209083150857
Iteration: 9, Func. Count: 84, Neg. LLF: 149.5420477676178
Iteration: 10, Func. Count: 93, Neg. LLF: 149.5420173236128
Iteration: 11, Func. Count: 102, Neg. LLF: 149.54199165267562
Iteration: 12, Func. Count: 111, Neg. LLF: 149.54199103979343
Optimization terminated successfully (Exit mode 0)
Current function value: 149.54199103979343
Iterations: 12
Function evaluations: 111
Gradient evaluations: 12
Iteration: 1, Func. Count: 7, Neg. LLF: 158.1772424311114
Iteration: 2, Func. Count: 14, Neg. LLF: 155.5801211240207
Iteration: 3, Func. Count: 21, Neg. LLF: 150.66133833634674
Iteration: 4, Func. Count: 27, Neg. LLF: 150.0108533384627
Iteration: 5, Func. Count: 33, Neg. LLF: 149.03407555891323
Iteration: 6, Func. Count: 39, Neg. LLF: 148.98915787189685
Iteration: 7, Func. Count: 45, Neg. LLF: 148.90394078954506
Iteration: 8, Func. Count: 51, Neg. LLF: 148.8496605034832
Iteration: 9, Func. Count: 57, Neg. LLF: 148.7993061401574
Iteration: 10, Func. Count: 63, Neg. LLF: 148.79281632087196
Iteration: 11, Func. Count: 69, Neg. LLF: 148.79256677822934
Iteration: 12, Func. Count: 75, Neg. LLF: 148.79256562977304
Iteration: 13, Func. Count: 80, Neg. LLF: 148.7925656208162
Optimization terminated successfully (Exit mode 0)
Current function value: 148.79256562977304
Iterations: 13
Function evaluations: 80
Gradient evaluations: 13
Iteration: 1, Func. Count: 8, Neg. LLF: 163.19138529093954
Iteration: 2, Func. Count: 17, Neg. LLF: 150.7991159872907
Iteration: 3, Func. Count: 24, Neg. LLF: 151.00664974180094
Iteration: 4, Func. Count: 32, Neg. LLF: 150.45311354636277
Iteration: 5, Func. Count: 39, Neg. LLF: 150.12945657610658
Iteration: 6, Func. Count: 46, Neg. LLF: 367.5385969989722
Iteration: 7, Func. Count: 55, Neg. LLF: 149.60870556054795
Iteration: 8, Func. Count: 62, Neg. LLF: 149.56837443241736
Iteration: 9, Func. Count: 69, Neg. LLF: 149.55801546265283
Iteration: 10, Func. Count: 76, Neg. LLF: 149.55696832560324
Iteration: 11, Func. Count: 83, Neg. LLF: 149.5569598057045
Iteration: 12, Func. Count: 89, Neg. LLF: 149.55696013952303
Optimization terminated successfully (Exit mode 0)
Current function value: 149.5569598057045
Iterations: 12
Function evaluations: 89
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 159.76571081873607
Iteration: 2, Func. Count: 18, Neg. LLF: 150.0386649326673
Iteration: 3, Func. Count: 26, Neg. LLF: 149.80518028190954
Iteration: 4, Func. Count: 34, Neg. LLF: 149.62540660189006
Iteration: 5, Func. Count: 42, Neg. LLF: 149.5614118518432
Iteration: 6, Func. Count: 50, Neg. LLF: 149.56129535878003
Iteration: 7, Func. Count: 59, Neg. LLF: 149.56003096652765
Iteration: 8, Func. Count: 67, Neg. LLF: 149.5599916906322
Iteration: 9, Func. Count: 75, Neg. LLF: 149.55977514063937
Iteration: 10, Func. Count: 83, Neg. LLF: 149.55839800551013
Iteration: 11, Func. Count: 91, Neg. LLF: 149.59049559432094
Iteration: 12, Func. Count: 100, Neg. LLF: 149.59049654813083
Iteration: 13, Func. Count: 109, Neg. LLF: 149.5972487635318
Iteration: 14, Func. Count: 118, Neg. LLF: 149.57507540649164
Iteration: 15, Func. Count: 127, Neg. LLF: 149.5564872348287
Iteration: 16, Func. Count: 135, Neg. LLF: 149.5556653306602
Iteration: 17, Func. Count: 143, Neg. LLF: 149.5636754768707
Iteration: 18, Func. Count: 152, Neg. LLF: 149.59151606829397
Iteration: 19, Func. Count: 161, Neg. LLF: 149.59103496109157
Iteration: 20, Func. Count: 170, Neg. LLF: 149.59077729852814
Iteration: 21, Func. Count: 179, Neg. LLF: 149.55578545501749
Iteration: 22, Func. Count: 188, Neg. LLF: 149.55409901180323
Iteration: 23, Func. Count: 196, Neg. LLF: 149.55401927848587
Iteration: 24, Func. Count: 204, Neg. LLF: 149.5540123528311
Iteration: 25, Func. Count: 211, Neg. LLF: 149.55401217857403
Optimization terminated successfully (Exit mode 0)
Current function value: 149.5540123528311
Iterations: 26
Function evaluations: 211
Gradient evaluations: 25
Iteration: 1, Func. Count: 10, Neg. LLF: 157.20160261910874
Iteration: 2, Func. Count: 20, Neg. LLF: 149.73803996550203
Iteration: 3, Func. Count: 29, Neg. LLF: 149.85246576282202
Iteration: 4, Func. Count: 39, Neg. LLF: 149.5555989342718
Iteration: 5, Func. Count: 49, Neg. LLF: 149.5462035132322
Iteration: 6, Func. Count: 58, Neg. LLF: 149.54587763486063
Iteration: 7, Func. Count: 67, Neg. LLF: 149.54556815842506
Iteration: 8, Func. Count: 76, Neg. LLF: 149.54535399635134
Iteration: 9, Func. Count: 85, Neg. LLF: 149.54521955547833
Iteration: 10, Func. Count: 94, Neg. LLF: 149.545185300751
Iteration: 11, Func. Count: 103, Neg. LLF: 149.54518178612122
Iteration: 12, Func. Count: 111, Neg. LLF: 149.54518166987714
Optimization terminated successfully (Exit mode 0)
Current function value: 149.54518178612122
Iterations: 12
Function evaluations: 111
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 155.6783025336389
Iteration: 2, Func. Count: 22, Neg. LLF: 149.61771754129532
Iteration: 3, Func. Count: 32, Neg. LLF: 149.60854333239396
Iteration: 4, Func. Count: 43, Neg. LLF: 149.54318687779872
Iteration: 5, Func. Count: 53, Neg. LLF: 149.54221941276194
Iteration: 6, Func. Count: 63, Neg. LLF: 149.54219032881102
Iteration: 7, Func. Count: 73, Neg. LLF: 149.54218185162918
Iteration: 8, Func. Count: 83, Neg. LLF: 149.54216443206366
Iteration: 9, Func. Count: 93, Neg. LLF: 149.5421427602298
Iteration: 10, Func. Count: 103, Neg. LLF: 149.54209078290745
Iteration: 11, Func. Count: 113, Neg. LLF: 149.54204637197162
Iteration: 12, Func. Count: 123, Neg. LLF: 149.54201033990313
Iteration: 13, Func. Count: 133, Neg. LLF: 149.54199178904105
Iteration: 14, Func. Count: 143, Neg. LLF: 149.54199097565814
Optimization terminated successfully (Exit mode 0)
Current function value: 149.54199097565814
Iterations: 14
Function evaluations: 143
Gradient evaluations: 14
Iteration: 1, Func. Count: 8, Neg. LLF: 156.2109777935265
Iteration: 2, Func. Count: 16, Neg. LLF: 155.36720575006785
Iteration: 3, Func. Count: 24, Neg. LLF: 150.74424255772996
Iteration: 4, Func. Count: 31, Neg. LLF: 150.14696524541566
Iteration: 5, Func. Count: 38, Neg. LLF: 149.04803056331667
Iteration: 6, Func. Count: 45, Neg. LLF: 149.0177488431928
Iteration: 7, Func. Count: 52, Neg. LLF: 148.9094780305203
Iteration: 8, Func. Count: 59, Neg. LLF: 148.85303160972865
Iteration: 9, Func. Count: 66, Neg. LLF: 148.80158037658524
Iteration: 10, Func. Count: 73, Neg. LLF: 148.79290621202566
Iteration: 11, Func. Count: 80, Neg. LLF: 148.79256752436063
Iteration: 12, Func. Count: 87, Neg. LLF: 148.79256563551266
Iteration: 13, Func. Count: 93, Neg. LLF: 148.79256579019557
Optimization terminated successfully (Exit mode 0)
Current function value: 148.79256563551266
Iterations: 13
Function evaluations: 93
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 163.3533560620656
Iteration: 2, Func. Count: 19, Neg. LLF: 150.79428701202744
Iteration: 3, Func. Count: 27, Neg. LLF: 150.17384942241063
Iteration: 4, Func. Count: 35, Neg. LLF: 150.01677739894802
Iteration: 5, Func. Count: 43, Neg. LLF: 149.67498103241883
Iteration: 6, Func. Count: 51, Neg. LLF: 149.55775212530267
Iteration: 7, Func. Count: 59, Neg. LLF: 149.55695996387405
Iteration: 8, Func. Count: 67, Neg. LLF: 149.5571276221181
Optimization terminated successfully (Exit mode 0)
Current function value: 149.55695986822732
Iterations: 9
Function evaluations: 69
Gradient evaluations: 8
Iteration: 1, Func. Count: 10, Neg. LLF: 159.6906650296633
Iteration: 2, Func. Count: 20, Neg. LLF: 150.07981028923055
Iteration: 3, Func. Count: 29, Neg. LLF: 149.7927430645241
Iteration: 4, Func. Count: 38, Neg. LLF: 149.56126151207323
Iteration: 5, Func. Count: 47, Neg. LLF: 149.56131776762322
Iteration: 6, Func. Count: 57, Neg. LLF: 149.5602033069481
Iteration: 7, Func. Count: 66, Neg. LLF: 149.55990852224363
Iteration: 8, Func. Count: 75, Neg. LLF: 149.5576902542091
Iteration: 9, Func. Count: 84, Neg. LLF: 149.59048237941465
Iteration: 10, Func. Count: 94, Neg. LLF: 149.5894074085434
Iteration: 11, Func. Count: 104, Neg. LLF: 149.55929414421504
Iteration: 12, Func. Count: 114, Neg. LLF: 149.5563462351481
Iteration: 13, Func. Count: 123, Neg. LLF: 149.5549020955084
Iteration: 14, Func. Count: 132, Neg. LLF: 149.59050840452943
Iteration: 15, Func. Count: 142, Neg. LLF: 149.59051148203852
Iteration: 16, Func. Count: 152, Neg. LLF: 149.5591882317308
Iteration: 17, Func. Count: 162, Neg. LLF: 149.55435387074192
Iteration: 18, Func. Count: 172, Neg. LLF: 149.55401396925043
Iteration: 19, Func. Count: 181, Neg. LLF: 149.55401207786335
Iteration: 20, Func. Count: 189, Neg. LLF: 149.55401190325782
Optimization terminated successfully (Exit mode 0)
Current function value: 149.55401207786335
Iterations: 21
Function evaluations: 189
Gradient evaluations: 20
Iteration: 1, Func. Count: 11, Neg. LLF: 157.27290143935886
Iteration: 2, Func. Count: 22, Neg. LLF: 149.73015408060178
Iteration: 3, Func. Count: 32, Neg. LLF: 149.88527131195934
Iteration: 4, Func. Count: 43, Neg. LLF: 149.5548625781041
Iteration: 5, Func. Count: 54, Neg. LLF: 149.5471191834567
Iteration: 6, Func. Count: 64, Neg. LLF: 149.54607438942125
Iteration: 7, Func. Count: 74, Neg. LLF: 149.54572493041064
Iteration: 8, Func. Count: 84, Neg. LLF: 149.54552734365393
Iteration: 9, Func. Count: 94, Neg. LLF: 149.54528844027496
Iteration: 10, Func. Count: 104, Neg. LLF: 149.54521344238154
Iteration: 11, Func. Count: 114, Neg. LLF: 149.54518250880304
Iteration: 12, Func. Count: 124, Neg. LLF: 149.54518167407159
Optimization terminated successfully (Exit mode 0)
Current function value: 149.54518167407159
Iterations: 12
Function evaluations: 124
Gradient evaluations: 12
Iteration: 1, Func. Count: 12, Neg. LLF: 155.85357405792007
Iteration: 2, Func. Count: 24, Neg. LLF: 149.61235028788073
Iteration: 3, Func. Count: 35, Neg. LLF: 149.59729423467752
Iteration: 4, Func. Count: 47, Neg. LLF: 149.54269571325665
Iteration: 5, Func. Count: 58, Neg. LLF: 149.54220160855616
Iteration: 6, Func. Count: 69, Neg. LLF: 149.54218694510558
Iteration: 7, Func. Count: 80, Neg. LLF: 149.54218046734414
Iteration: 8, Func. Count: 91, Neg. LLF: 149.542134452618
Iteration: 9, Func. Count: 102, Neg. LLF: 149.54210885586966
Iteration: 10, Func. Count: 114, Neg. LLF: 149.541995264176
Iteration: 11, Func. Count: 125, Neg. LLF: 149.5419913508712
Iteration: 12, Func. Count: 135, Neg. LLF: 149.5419912601883
Optimization terminated successfully (Exit mode 0)
Current function value: 149.5419913508712
Iterations: 12
Function evaluations: 135
Gradient evaluations: 12
Iteration: 1, Func. Count: 5, Neg. LLF: 152.67313061010725
Iteration: 2, Func. Count: 9, Neg. LLF: 152.89165309746187
Iteration: 3, Func. Count: 14, Neg. LLF: 151.45038792421587
Iteration: 4, Func. Count: 18, Neg. LLF: 151.43672917821362
Iteration: 5, Func. Count: 22, Neg. LLF: 151.43446066981704
Iteration: 6, Func. Count: 26, Neg. LLF: 151.43419669379384
Iteration: 7, Func. Count: 30, Neg. LLF: 151.43419483905598
Iteration: 8, Func. Count: 33, Neg. LLF: 151.4341948513792
Optimization terminated successfully (Exit mode 0)
Current function value: 151.43419483905598
Iterations: 8
Function evaluations: 33
Gradient evaluations: 8
Iteration: 1, Func. Count: 6, Neg. LLF: 162.35482098271675
Iteration: 2, Func. Count: 12, Neg. LLF: 152.58797181784215
Iteration: 3, Func. Count: 18, Neg. LLF: 153.21996933156282
Iteration: 4, Func. Count: 25, Neg. LLF: 150.30971363481396
Iteration: 5, Func. Count: 30, Neg. LLF: 150.2649371901898
Iteration: 6, Func. Count: 35, Neg. LLF: 150.26284512342818
Iteration: 7, Func. Count: 40, Neg. LLF: 150.26175193649388
Iteration: 8, Func. Count: 45, Neg. LLF: 150.26173934240686
Iteration: 9, Func. Count: 49, Neg. LLF: 150.2617393336184
Optimization terminated successfully (Exit mode 0)
Current function value: 150.26173934240686
Iterations: 9
Function evaluations: 49
Gradient evaluations: 9
Iteration: 1, Func. Count: 7, Neg. LLF: 155.12035776320084
Iteration: 2, Func. Count: 14, Neg. LLF: 151.8849930880397
Iteration: 3, Func. Count: 21, Neg. LLF: 149.76179570690005
Iteration: 4, Func. Count: 27, Neg. LLF: 171.80125054235114
Iteration: 5, Func. Count: 34, Neg. LLF: 149.56980382188752
Iteration: 6, Func. Count: 40, Neg. LLF: 149.5615391833866
Iteration: 7, Func. Count: 46, Neg. LLF: 149.5612239583239
Iteration: 8, Func. Count: 52, Neg. LLF: 149.56121913660337
Iteration: 9, Func. Count: 57, Neg. LLF: 149.56121887944747
Optimization terminated successfully (Exit mode 0)
Current function value: 149.56121913660337
Iterations: 9
Function evaluations: 57
Gradient evaluations: 9
Iteration: 1, Func. Count: 8, Neg. LLF: 157.653861945757
Iteration: 2, Func. Count: 16, Neg. LLF: 149.78136734233632
Iteration: 3, Func. Count: 23, Neg. LLF: 149.60311572631187
Iteration: 4, Func. Count: 30, Neg. LLF: 149.56745884409924
Iteration: 5, Func. Count: 37, Neg. LLF: 149.59715010588255
Iteration: 6, Func. Count: 46, Neg. LLF: 149.53315874900804
Iteration: 7, Func. Count: 53, Neg. LLF: 149.52745285529116
Iteration: 8, Func. Count: 60, Neg. LLF: 149.528492749638
Iteration: 9, Func. Count: 68, Neg. LLF: 149.5252568906833
Iteration: 10, Func. Count: 75, Neg. LLF: 149.52520869448537
Iteration: 11, Func. Count: 82, Neg. LLF: 149.5252069513639
Iteration: 12, Func. Count: 88, Neg. LLF: 149.52520683851478
Optimization terminated successfully (Exit mode 0)
Current function value: 149.5252069513639
Iterations: 12
Function evaluations: 88
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 158.33930676295958
Iteration: 2, Func. Count: 18, Neg. LLF: 149.63393681217167
Iteration: 3, Func. Count: 26, Neg. LLF: 149.56368864943414
Iteration: 4, Func. Count: 34, Neg. LLF: 149.54798859805757
Iteration: 5, Func. Count: 42, Neg. LLF: 149.54081979734548
Iteration: 6, Func. Count: 50, Neg. LLF: 149.53976708200014
Iteration: 7, Func. Count: 58, Neg. LLF: 149.54038033300026
Iteration: 8, Func. Count: 67, Neg. LLF: 149.53858868207448
Iteration: 9, Func. Count: 75, Neg. LLF: 149.53819433309292
Iteration: 10, Func. Count: 83, Neg. LLF: 149.53816051308652
Iteration: 11, Func. Count: 91, Neg. LLF: 149.53815792452875
Iteration: 12, Func. Count: 98, Neg. LLF: 149.53815783949517
Optimization terminated successfully (Exit mode 0)
Current function value: 149.53815792452875
Iterations: 12
Function evaluations: 98
Gradient evaluations: 12
Iteration: 1, Func. Count: 6, Neg. LLF: 156.26806678595904
Iteration: 2, Func. Count: 12, Neg. LLF: 150.04771581974836
Iteration: 3, Func. Count: 18, Neg. LLF: 148.87313535006214
Iteration: 4, Func. Count: 23, Neg. LLF: 148.83402769372415
Iteration: 5, Func. Count: 28, Neg. LLF: 148.8337387449843
Iteration: 6, Func. Count: 33, Neg. LLF: 148.8334962060251
Iteration: 7, Func. Count: 38, Neg. LLF: 148.83327403593535
Iteration: 8, Func. Count: 43, Neg. LLF: 148.8331682705697
Iteration: 9, Func. Count: 48, Neg. LLF: 148.83315284398955
Iteration: 10, Func. Count: 53, Neg. LLF: 148.83315213365884
Optimization terminated successfully (Exit mode 0)
Current function value: 148.83315213365884
Iterations: 10
Function evaluations: 53
Gradient evaluations: 10
Iteration: 1, Func. Count: 7, Neg. LLF: 151.50056373276576
Iteration: 2, Func. Count: 14, Neg. LLF: 148.5309517524819
Iteration: 3, Func. Count: 21, Neg. LLF: 210.92359733214943
Iteration: 4, Func. Count: 29, Neg. LLF: 147.1514535449713
Iteration: 5, Func. Count: 35, Neg. LLF: 147.86731525801827
Iteration: 6, Func. Count: 42, Neg. LLF: 147.94058738819805
Iteration: 7, Func. Count: 49, Neg. LLF: 146.61312540915998
Iteration: 8, Func. Count: 56, Neg. LLF: 146.52843392182263
Iteration: 9, Func. Count: 62, Neg. LLF: 146.52779989973868
Iteration: 10, Func. Count: 68, Neg. LLF: 146.52760688670358
Iteration: 11, Func. Count: 74, Neg. LLF: 146.52747564394357
Iteration: 12, Func. Count: 79, Neg. LLF: 146.52747535699282
Optimization terminated successfully (Exit mode 0)
Current function value: 146.52747564394357
Iterations: 12
Function evaluations: 79
Gradient evaluations: 12
Iteration: 1, Func. Count: 8, Neg. LLF: 151.5510395833221
Iteration: 2, Func. Count: 16, Neg. LLF: 155.831815233676
Iteration: 3, Func. Count: 24, Neg. LLF: 164.80502996926904
Iteration: 4, Func. Count: 32, Neg. LLF: 147.7092556652402
Iteration: 5, Func. Count: 39, Neg. LLF: 147.1898949080003
Iteration: 6, Func. Count: 46, Neg. LLF: 147.58606143332716
Iteration: 7, Func. Count: 54, Neg. LLF: 152.21261005339466
Iteration: 8, Func. Count: 62, Neg. LLF: 146.6143396148334
Iteration: 9, Func. Count: 69, Neg. LLF: 146.53432953423763
Iteration: 10, Func. Count: 76, Neg. LLF: 146.52846851531922
Iteration: 11, Func. Count: 83, Neg. LLF: 146.52754438280897
Iteration: 12, Func. Count: 90, Neg. LLF: 146.52748479546003
Iteration: 13, Func. Count: 97, Neg. LLF: 146.527475910842
Iteration: 14, Func. Count: 103, Neg. LLF: 146.52747565456482
Optimization terminated successfully (Exit mode 0)
Current function value: 146.527475910842
Iterations: 14
Function evaluations: 103
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 147.01732895722353
Iteration: 2, Func. Count: 17, Neg. LLF: 147.14758507405287
Iteration: 3, Func. Count: 26, Neg. LLF: 146.69502664594995
Iteration: 4, Func. Count: 34, Neg. LLF: 153.87680282387643
Iteration: 5, Func. Count: 43, Neg. LLF: 151.02751431065684
Iteration: 6, Func. Count: 52, Neg. LLF: 150.87834626269088
Iteration: 7, Func. Count: 61, Neg. LLF: 150.04270744511282
Iteration: 8, Func. Count: 70, Neg. LLF: 147.07053573958035
Iteration: 9, Func. Count: 79, Neg. LLF: 145.3249060723313
Iteration: 10, Func. Count: 87, Neg. LLF: 145.29404495626716
Iteration: 11, Func. Count: 95, Neg. LLF: 145.28776578882162
Iteration: 12, Func. Count: 103, Neg. LLF: 145.2815127145675
Iteration: 13, Func. Count: 111, Neg. LLF: 145.2815011863908
Iteration: 14, Func. Count: 119, Neg. LLF: 145.28149424569116
Iteration: 15, Func. Count: 127, Neg. LLF: 145.28149302957945
Optimization terminated successfully (Exit mode 0)
Current function value: 145.28149424452104
Iterations: 15
Function evaluations: 137
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 150.06323329910146
Iteration: 2, Func. Count: 20, Neg. LLF: 147.2984541675106
Iteration: 3, Func. Count: 29, Neg. LLF: 145.49299815101023
Iteration: 4, Func. Count: 38, Neg. LLF: 146.63315373052592
Iteration: 5, Func. Count: 48, Neg. LLF: 145.30730801657953
Iteration: 6, Func. Count: 57, Neg. LLF: 145.28812530246256
Iteration: 7, Func. Count: 66, Neg. LLF: 145.28157736214067
Iteration: 8, Func. Count: 75, Neg. LLF: 145.281497282131
Iteration: 9, Func. Count: 84, Neg. LLF: 145.28149659880722
Optimization terminated successfully (Exit mode 0)
Current function value: 145.28149659880722
Iterations: 9
Function evaluations: 84
Gradient evaluations: 9
Iteration: 1, Func. Count: 7, Neg. LLF: 153.86439501122624
Iteration: 2, Func. Count: 14, Neg. LLF: 150.3055818281242
Iteration: 3, Func. Count: 21, Neg. LLF: 148.86580121288227
Iteration: 4, Func. Count: 27, Neg. LLF: 148.8361367256297
Iteration: 5, Func. Count: 33, Neg. LLF: 148.83544654595784
Iteration: 6, Func. Count: 39, Neg. LLF: 148.83334387547285
Iteration: 7, Func. Count: 45, Neg. LLF: 148.83315634371283
Iteration: 8, Func. Count: 51, Neg. LLF: 148.8331522646384
Iteration: 9, Func. Count: 56, Neg. LLF: 148.83315236147837
Optimization terminated successfully (Exit mode 0)
Current function value: 148.8331522646384
Iterations: 9
Function evaluations: 56
Gradient evaluations: 9
Iteration: 1, Func. Count: 8, Neg. LLF: 151.49304349185485
Iteration: 2, Func. Count: 16, Neg. LLF: 166.10045732978452
Iteration: 3, Func. Count: 24, Neg. LLF: 154.1350716288827
Iteration: 4, Func. Count: 32, Neg. LLF: 147.02579641757683
Iteration: 5, Func. Count: 39, Neg. LLF: 148.35335028168626
Iteration: 6, Func. Count: 47, Neg. LLF: 147.76341875512998
Iteration: 7, Func. Count: 55, Neg. LLF: 146.4314168650626
Iteration: 8, Func. Count: 63, Neg. LLF: 146.2145970637843
Iteration: 9, Func. Count: 71, Neg. LLF: 146.1974144676747
Iteration: 10, Func. Count: 78, Neg. LLF: 146.19711729183004
Iteration: 11, Func. Count: 85, Neg. LLF: 146.1971086692705
Iteration: 12, Func. Count: 92, Neg. LLF: 146.19710812898512
Optimization terminated successfully (Exit mode 0)
Current function value: 146.19710812898512
Iterations: 12
Function evaluations: 92
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 151.50500605281493
Iteration: 2, Func. Count: 18, Neg. LLF: 157.51529766077525
Iteration: 3, Func. Count: 27, Neg. LLF: 164.10130262234745
Iteration: 4, Func. Count: 36, Neg. LLF: 147.17005213429005
Iteration: 5, Func. Count: 44, Neg. LLF: 146.84230985965715
Iteration: 6, Func. Count: 52, Neg. LLF: 147.3559193733314
Iteration: 7, Func. Count: 61, Neg. LLF: 147.81981378144533
Iteration: 8, Func. Count: 70, Neg. LLF: 146.19800368096716
Iteration: 9, Func. Count: 78, Neg. LLF: 146.1976562968178
Iteration: 10, Func. Count: 86, Neg. LLF: 146.19711363941084
Iteration: 11, Func. Count: 94, Neg. LLF: 146.19710850671785
Iteration: 12, Func. Count: 101, Neg. LLF: 146.1971082847447
Optimization terminated successfully (Exit mode 0)
Current function value: 146.19710850671785
Iterations: 12
Function evaluations: 101
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 148.653935070997
Iteration: 2, Func. Count: 19, Neg. LLF: 147.03605992490833
Iteration: 3, Func. Count: 28, Neg. LLF: 173.77218456735304
Iteration: 4, Func. Count: 40, Neg. LLF: 146.4655317954448
Iteration: 5, Func. Count: 49, Neg. LLF: 191.10469698247914
Iteration: 6, Func. Count: 60, Neg. LLF: 145.52661017469575
Iteration: 7, Func. Count: 69, Neg. LLF: 146.28747378172548
Iteration: 8, Func. Count: 79, Neg. LLF: 145.30147434187373
Iteration: 9, Func. Count: 88, Neg. LLF: 145.2631763872172
Iteration: 10, Func. Count: 97, Neg. LLF: 145.25754428965274
Iteration: 11, Func. Count: 106, Neg. LLF: 145.25711469090956
Iteration: 12, Func. Count: 115, Neg. LLF: 145.2570090785767
Iteration: 13, Func. Count: 123, Neg. LLF: 145.25700893934388
Optimization terminated successfully (Exit mode 0)
Current function value: 145.2570090785767
Iterations: 13
Function evaluations: 123
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 149.9147058815234
Iteration: 2, Func. Count: 21, Neg. LLF: 147.54396675913105
Iteration: 3, Func. Count: 31, Neg. LLF: 148.55156305714513
Iteration: 4, Func. Count: 42, Neg. LLF: 147.98235119146494
Iteration: 5, Func. Count: 53, Neg. LLF: 145.7464402576801
Iteration: 6, Func. Count: 63, Neg. LLF: 162.466380454573
Iteration: 7, Func. Count: 74, Neg. LLF: 148.20614599507664
Iteration: 8, Func. Count: 85, Neg. LLF: 145.30131680350917
Iteration: 9, Func. Count: 95, Neg. LLF: 145.26698657656848
Iteration: 10, Func. Count: 105, Neg. LLF: 145.25761892470857
Iteration: 11, Func. Count: 115, Neg. LLF: 145.25702387731087
Iteration: 12, Func. Count: 125, Neg. LLF: 145.25701056168984
Iteration: 13, Func. Count: 135, Neg. LLF: 145.2570090353874
Iteration: 14, Func. Count: 144, Neg. LLF: 145.2570089704277
Optimization terminated successfully (Exit mode 0)
Current function value: 145.2570090353874
Iterations: 14
Function evaluations: 144
Gradient evaluations: 14
Iteration: 1, Func. Count: 8, Neg. LLF: 163.88573941462477
Iteration: 2, Func. Count: 17, Neg. LLF: 149.42555206462646
Iteration: 3, Func. Count: 24, Neg. LLF: 149.62769054529713
Iteration: 4, Func. Count: 32, Neg. LLF: 148.85416344908475
Iteration: 5, Func. Count: 39, Neg. LLF: 148.83917187570324
Iteration: 6, Func. Count: 46, Neg. LLF: 148.82337703451782
Iteration: 7, Func. Count: 53, Neg. LLF: 148.80145185668422
Iteration: 8, Func. Count: 60, Neg. LLF: 148.79328162575248
Iteration: 9, Func. Count: 67, Neg. LLF: 148.7925680513132
Iteration: 10, Func. Count: 74, Neg. LLF: 148.79256563410857
Iteration: 11, Func. Count: 80, Neg. LLF: 148.79256562514848
Optimization terminated successfully (Exit mode 0)
Current function value: 148.79256563410857
Iterations: 11
Function evaluations: 80
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 151.50172306898267
Iteration: 2, Func. Count: 18, Neg. LLF: 158.33349594731453
Iteration: 3, Func. Count: 27, Neg. LLF: 160.0309377551478
Iteration: 4, Func. Count: 36, Neg. LLF: 146.49785609832415
Iteration: 5, Func. Count: 44, Neg. LLF: 149.94462706311236
Iteration: 6, Func. Count: 53, Neg. LLF: 159.4805436015877
Iteration: 7, Func. Count: 63, Neg. LLF: 147.0231660987129
Iteration: 8, Func. Count: 72, Neg. LLF: 145.9505711924712
Iteration: 9, Func. Count: 81, Neg. LLF: 145.837650710541
Iteration: 10, Func. Count: 89, Neg. LLF: 145.833879387729
Iteration: 11, Func. Count: 97, Neg. LLF: 145.83372495380866
Iteration: 12, Func. Count: 105, Neg. LLF: 145.83372162822792
Iteration: 13, Func. Count: 112, Neg. LLF: 145.83372137663102
Optimization terminated successfully (Exit mode 0)
Current function value: 145.83372162822792
Iterations: 13
Function evaluations: 112
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 151.44508765167
Iteration: 2, Func. Count: 20, Neg. LLF: 153.9752806799223
Iteration: 3, Func. Count: 30, Neg. LLF: 158.47903027112307
Iteration: 4, Func. Count: 41, Neg. LLF: 159.8202225424449
Iteration: 5, Func. Count: 51, Neg. LLF: 149.2031521321786
Iteration: 6, Func. Count: 61, Neg. LLF: 147.54273239686236
Iteration: 7, Func. Count: 71, Neg. LLF: 146.99357188043737
Iteration: 8, Func. Count: 81, Neg. LLF: 145.94882574176302
Iteration: 9, Func. Count: 90, Neg. LLF: 145.91369377519314
Iteration: 10, Func. Count: 99, Neg. LLF: 145.84048696563192
Iteration: 11, Func. Count: 108, Neg. LLF: 145.83524993267233
Iteration: 12, Func. Count: 117, Neg. LLF: 145.83376233613836
Iteration: 13, Func. Count: 126, Neg. LLF: 145.83372193020597
Iteration: 14, Func. Count: 134, Neg. LLF: 145.83372171572086
Optimization terminated successfully (Exit mode 0)
Current function value: 145.83372193020597
Iterations: 14
Function evaluations: 134
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 163.83660454529374
Iteration: 2, Func. Count: 22, Neg. LLF: 146.2687218803019
Iteration: 3, Func. Count: 32, Neg. LLF: 149.16999580854116
Iteration: 4, Func. Count: 43, Neg. LLF: 151.0420437421473
Iteration: 5, Func. Count: 54, Neg. LLF: 147.13481530962915
Iteration: 6, Func. Count: 65, Neg. LLF: 147.08660540515308
Iteration: 7, Func. Count: 76, Neg. LLF: 147.65959072276448
Iteration: 8, Func. Count: 87, Neg. LLF: 145.7169718293116
Iteration: 9, Func. Count: 98, Neg. LLF: 146.09551618227357
Iteration: 10, Func. Count: 109, Neg. LLF: 144.21828680789986
Iteration: 11, Func. Count: 119, Neg. LLF: 144.17791695214018
Iteration: 12, Func. Count: 129, Neg. LLF: 144.38795961665863
Iteration: 13, Func. Count: 140, Neg. LLF: 144.2253806945202
Iteration: 14, Func. Count: 151, Neg. LLF: 144.16633415073073
Iteration: 15, Func. Count: 161, Neg. LLF: 144.16614949485574
Iteration: 16, Func. Count: 171, Neg. LLF: 144.16591410635138
Iteration: 17, Func. Count: 180, Neg. LLF: 144.16591403163005
Optimization terminated successfully (Exit mode 0)
Current function value: 144.16591410635138
Iterations: 17
Function evaluations: 180
Gradient evaluations: 17
Iteration: 1, Func. Count: 12, Neg. LLF: 148.96546476648112
Iteration: 2, Func. Count: 23, Neg. LLF: 145.60257881201304
Iteration: 3, Func. Count: 34, Neg. LLF: 175.09969167443475
Iteration: 4, Func. Count: 48, Neg. LLF: 211.9687370206307
Iteration: 5, Func. Count: 60, Neg. LLF: 144.6708604582974
Iteration: 6, Func. Count: 71, Neg. LLF: 150.096747742782
Iteration: 7, Func. Count: 83, Neg. LLF: 152.0861377896062
Iteration: 8, Func. Count: 95, Neg. LLF: 146.43849673104106
Iteration: 9, Func. Count: 107, Neg. LLF: 144.2097374555028
Iteration: 10, Func. Count: 118, Neg. LLF: 144.25851363589265
Iteration: 11, Func. Count: 130, Neg. LLF: 144.46478609644268
Iteration: 12, Func. Count: 142, Neg. LLF: 144.1717085750577
Iteration: 13, Func. Count: 153, Neg. LLF: 144.16810647323754
Iteration: 14, Func. Count: 164, Neg. LLF: 144.16668461823718
Iteration: 15, Func. Count: 175, Neg. LLF: 144.165959518184
Iteration: 16, Func. Count: 186, Neg. LLF: 144.1659145332814
Iteration: 17, Func. Count: 197, Neg. LLF: 144.1659139621244
Optimization terminated successfully (Exit mode 0)
Current function value: 144.1659139621244
Iterations: 17
Function evaluations: 197
Gradient evaluations: 17
Iteration: 1, Func. Count: 9, Neg. LLF: 161.69704266409963
Iteration: 2, Func. Count: 19, Neg. LLF: 149.71597490171695
Iteration: 3, Func. Count: 27, Neg. LLF: 149.64900102869305
Iteration: 4, Func. Count: 36, Neg. LLF: 148.8708774075517
Iteration: 5, Func. Count: 44, Neg. LLF: 148.84993343324103
Iteration: 6, Func. Count: 52, Neg. LLF: 148.83094066392033
Iteration: 7, Func. Count: 60, Neg. LLF: 148.8057543924775
Iteration: 8, Func. Count: 68, Neg. LLF: 148.79492143821457
Iteration: 9, Func. Count: 76, Neg. LLF: 148.79256823103347
Iteration: 10, Func. Count: 84, Neg. LLF: 148.79256565751916
Iteration: 11, Func. Count: 91, Neg. LLF: 148.79256581220122
Optimization terminated successfully (Exit mode 0)
Current function value: 148.79256565751916
Iterations: 11
Function evaluations: 91
Gradient evaluations: 11
Iteration: 1, Func. Count: 10, Neg. LLF: 151.50097908435677
Iteration: 2, Func. Count: 20, Neg. LLF: 158.4078034184415
Iteration: 3, Func. Count: 30, Neg. LLF: 159.97086005128634
Iteration: 4, Func. Count: 40, Neg. LLF: 146.4940378866923
Iteration: 5, Func. Count: 49, Neg. LLF: 149.95174179400513
Iteration: 6, Func. Count: 59, Neg. LLF: 158.81753020676646
Iteration: 7, Func. Count: 70, Neg. LLF: 147.02126890958536
Iteration: 8, Func. Count: 80, Neg. LLF: 145.94860888022768
Iteration: 9, Func. Count: 90, Neg. LLF: 145.8379113342164
Iteration: 10, Func. Count: 99, Neg. LLF: 145.8338728608594
Iteration: 11, Func. Count: 108, Neg. LLF: 145.83372484469461
Iteration: 12, Func. Count: 117, Neg. LLF: 145.8337216154366
Iteration: 13, Func. Count: 125, Neg. LLF: 145.83372136385285
Optimization terminated successfully (Exit mode 0)
Current function value: 145.8337216154366
Iterations: 13
Function evaluations: 125
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 151.55321480079584
Iteration: 2, Func. Count: 22, Neg. LLF: 154.17295601181914
Iteration: 3, Func. Count: 33, Neg. LLF: 159.31921836053
Iteration: 4, Func. Count: 45, Neg. LLF: 160.0597145998281
Iteration: 5, Func. Count: 56, Neg. LLF: 150.25367289481315
Iteration: 6, Func. Count: 67, Neg. LLF: 146.70233445359327
Iteration: 7, Func. Count: 77, Neg. LLF: 146.35786755700576
Iteration: 8, Func. Count: 87, Neg. LLF: 153.54153147939255
Iteration: 9, Func. Count: 98, Neg. LLF: 145.90895441475317
Iteration: 10, Func. Count: 108, Neg. LLF: 145.8547115908456
Iteration: 11, Func. Count: 118, Neg. LLF: 145.83854535124257
Iteration: 12, Func. Count: 128, Neg. LLF: 145.83436510152544
Iteration: 13, Func. Count: 138, Neg. LLF: 145.8338014685359
Iteration: 14, Func. Count: 148, Neg. LLF: 145.83372973884067
Iteration: 15, Func. Count: 158, Neg. LLF: 145.83372160626115
Iteration: 16, Func. Count: 167, Neg. LLF: 145.83372139176527
Optimization terminated successfully (Exit mode 0)
Current function value: 145.83372160626115
Iterations: 16
Function evaluations: 167
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 163.81320495957226
Iteration: 2, Func. Count: 25, Neg. LLF: 146.14833032320294
Iteration: 3, Func. Count: 36, Neg. LLF: 145.81160585764695
Iteration: 4, Func. Count: 47, Neg. LLF: 163.34279107694795
Iteration: 5, Func. Count: 60, Neg. LLF: 165.01655646128185
Iteration: 6, Func. Count: 73, Neg. LLF: 145.66538519638104
Iteration: 7, Func. Count: 85, Neg. LLF: 144.9033561479998
Iteration: 8, Func. Count: 96, Neg. LLF: 144.27744553745785
Iteration: 9, Func. Count: 107, Neg. LLF: 144.19002617616005
Iteration: 10, Func. Count: 118, Neg. LLF: 144.16989692674815
Iteration: 11, Func. Count: 129, Neg. LLF: 144.16655498654427
Iteration: 12, Func. Count: 140, Neg. LLF: 144.1661388153934
Iteration: 13, Func. Count: 151, Neg. LLF: 144.19122510337291
Iteration: 14, Func. Count: 164, Neg. LLF: 144.16601567378504
Iteration: 15, Func. Count: 175, Neg. LLF: 144.1659145253577
Iteration: 16, Func. Count: 185, Neg. LLF: 144.1659144507625
Optimization terminated successfully (Exit mode 0)
Current function value: 144.1659145253577
Iterations: 16
Function evaluations: 185
Gradient evaluations: 16
Iteration: 1, Func. Count: 13, Neg. LLF: 149.22415674956693
Iteration: 2, Func. Count: 25, Neg. LLF: 145.72067678802696
Iteration: 3, Func. Count: 37, Neg. LLF: 175.7900301495037
Iteration: 4, Func. Count: 52, Neg. LLF: 212.08141040470767
Iteration: 5, Func. Count: 65, Neg. LLF: 144.72175566122658
Iteration: 6, Func. Count: 77, Neg. LLF: 150.89565071831683
Iteration: 7, Func. Count: 90, Neg. LLF: 151.93834528773237
Iteration: 8, Func. Count: 103, Neg. LLF: 146.74621853100274
Iteration: 9, Func. Count: 116, Neg. LLF: 144.21867015335425
Iteration: 10, Func. Count: 128, Neg. LLF: 144.21500359958748
Iteration: 11, Func. Count: 141, Neg. LLF: 144.2379154571884
Iteration: 12, Func. Count: 154, Neg. LLF: 144.175399360039
Iteration: 13, Func. Count: 166, Neg. LLF: 144.16906109889868
Iteration: 14, Func. Count: 178, Neg. LLF: 144.16663963085486
Iteration: 15, Func. Count: 190, Neg. LLF: 144.1659432369328
Iteration: 16, Func. Count: 202, Neg. LLF: 144.1659140192115
Iteration: 17, Func. Count: 213, Neg. LLF: 144.16591405067564
Optimization terminated successfully (Exit mode 0)
Current function value: 144.1659140192115
Iterations: 17
Function evaluations: 213
Gradient evaluations: 17
Iteration: 1, Func. Count: 6, Neg. LLF: 153.19526961470228
Iteration: 2, Func. Count: 11, Neg. LLF: 151.54973154007803
Iteration: 3, Func. Count: 16, Neg. LLF: 151.5162189971934
Iteration: 4, Func. Count: 21, Neg. LLF: 151.46832343168973
Iteration: 5, Func. Count: 26, Neg. LLF: 151.44941602509965
Iteration: 6, Func. Count: 31, Neg. LLF: 151.43530518465505
Iteration: 7, Func. Count: 36, Neg. LLF: 151.43423412407597
Iteration: 8, Func. Count: 41, Neg. LLF: 151.43419484880238
Iteration: 9, Func. Count: 45, Neg. LLF: 151.4341948907616
Optimization terminated successfully (Exit mode 0)
Current function value: 151.43419484880238
Iterations: 9
Function evaluations: 45
Gradient evaluations: 9
Iteration: 1, Func. Count: 7, Neg. LLF: 158.157797762507
Iteration: 2, Func. Count: 14, Neg. LLF: 154.7851286794873
Iteration: 3, Func. Count: 21, Neg. LLF: 149.36803048651305
Iteration: 4, Func. Count: 28, Neg. LLF: 150.098210022511
Iteration: 5, Func. Count: 35, Neg. LLF: 148.79905793288833
Iteration: 6, Func. Count: 41, Neg. LLF: 148.7582380946447
Iteration: 7, Func. Count: 47, Neg. LLF: 148.74474710472543
Iteration: 8, Func. Count: 53, Neg. LLF: 148.74185728838856
Iteration: 9, Func. Count: 59, Neg. LLF: 148.74161462883984
Iteration: 10, Func. Count: 65, Neg. LLF: 148.74161394131355
Optimization terminated successfully (Exit mode 0)
Current function value: 148.74161394131355
Iterations: 10
Function evaluations: 65
Gradient evaluations: 10
Iteration: 1, Func. Count: 8, Neg. LLF: 161.2912435437356
Iteration: 2, Func. Count: 16, Neg. LLF: 151.82494515723843
Iteration: 3, Func. Count: 24, Neg. LLF: 148.15904916862158
Iteration: 4, Func. Count: 31, Neg. LLF: 151.5281966462621
Iteration: 5, Func. Count: 39, Neg. LLF: 165.39889981597204
Iteration: 6, Func. Count: 48, Neg. LLF: 147.86449835794923
Iteration: 7, Func. Count: 55, Neg. LLF: 147.82564594596568
Iteration: 8, Func. Count: 62, Neg. LLF: 147.8155451419546
Iteration: 9, Func. Count: 69, Neg. LLF: 147.80997675067462
Iteration: 10, Func. Count: 76, Neg. LLF: 147.8092676178369
Iteration: 11, Func. Count: 83, Neg. LLF: 147.80904645217979
Iteration: 12, Func. Count: 90, Neg. LLF: 147.80903172362963
Iteration: 13, Func. Count: 97, Neg. LLF: 147.8090288341186
Iteration: 14, Func. Count: 103, Neg. LLF: 147.8090288174586
Optimization terminated successfully (Exit mode 0)
Current function value: 147.8090288341186
Iterations: 14
Function evaluations: 103
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 158.46360809773006
Iteration: 2, Func. Count: 18, Neg. LLF: 149.77822618908692
Iteration: 3, Func. Count: 26, Neg. LLF: 149.6112322067509
Iteration: 4, Func. Count: 34, Neg. LLF: 149.5678648898065
Iteration: 5, Func. Count: 42, Neg. LLF: 149.62251378291825
Iteration: 6, Func. Count: 52, Neg. LLF: 149.53246044570406
Iteration: 7, Func. Count: 60, Neg. LLF: 149.5269359411833
Iteration: 8, Func. Count: 68, Neg. LLF: 149.52695794871298
Iteration: 9, Func. Count: 77, Neg. LLF: 149.52522645955918
Iteration: 10, Func. Count: 85, Neg. LLF: 149.52520728870545
Iteration: 11, Func. Count: 92, Neg. LLF: 149.52520717636943
Optimization terminated successfully (Exit mode 0)
Current function value: 149.52520728870545
Iterations: 11
Function evaluations: 92
Gradient evaluations: 11
Iteration: 1, Func. Count: 10, Neg. LLF: 157.18210606933306
Iteration: 2, Func. Count: 20, Neg. LLF: 149.63235172030213
Iteration: 3, Func. Count: 29, Neg. LLF: 149.60197666904347
Iteration: 4, Func. Count: 38, Neg. LLF: 149.546227548105
Iteration: 5, Func. Count: 47, Neg. LLF: 149.5430755589439
Iteration: 6, Func. Count: 56, Neg. LLF: 150.41006853904878
Iteration: 7, Func. Count: 67, Neg. LLF: 149.535974124158
Iteration: 8, Func. Count: 76, Neg. LLF: 149.5331460280534
Iteration: 9, Func. Count: 85, Neg. LLF: 149.53311603225416
Iteration: 10, Func. Count: 95, Neg. LLF: 149.53085233334022
Iteration: 11, Func. Count: 104, Neg. LLF: 149.53084893413373
Iteration: 12, Func. Count: 113, Neg. LLF: 149.5308482649807
Optimization terminated successfully (Exit mode 0)
Current function value: 149.5308482649807
Iterations: 12
Function evaluations: 113
Gradient evaluations: 12
Iteration: 1, Func. Count: 7, Neg. LLF: 150.24223405096396
Iteration: 2, Func. Count: 13, Neg. LLF: 150.5157176065837
Iteration: 3, Func. Count: 20, Neg. LLF: 148.85246716768017
Iteration: 4, Func. Count: 26, Neg. LLF: 148.8433894919191
Iteration: 5, Func. Count: 32, Neg. LLF: 148.8347742537137
Iteration: 6, Func. Count: 38, Neg. LLF: 148.83328344961274
Iteration: 7, Func. Count: 44, Neg. LLF: 148.83315255207555
Iteration: 8, Func. Count: 49, Neg. LLF: 148.8331525597177
Optimization terminated successfully (Exit mode 0)
Current function value: 148.83315255207555
Iterations: 8
Function evaluations: 49
Gradient evaluations: 8
Iteration: 1, Func. Count: 8, Neg. LLF: 165.793326311146
Iteration: 2, Func. Count: 16, Neg. LLF: 150.89897885279052
Iteration: 3, Func. Count: 24, Neg. LLF: 148.64257471347386
Iteration: 4, Func. Count: 32, Neg. LLF: 150.06994863961515
Iteration: 5, Func. Count: 40, Neg. LLF: 147.18828296794163
Iteration: 6, Func. Count: 48, Neg. LLF: 147.14256590386415
Iteration: 7, Func. Count: 56, Neg. LLF: 146.0278229841599
Iteration: 8, Func. Count: 63, Neg. LLF: 145.99061785983037
Iteration: 9, Func. Count: 70, Neg. LLF: 145.98487358336197
Iteration: 10, Func. Count: 77, Neg. LLF: 145.9847055094982
Iteration: 11, Func. Count: 84, Neg. LLF: 145.98468286599845
Iteration: 12, Func. Count: 91, Neg. LLF: 145.98466906873008
Iteration: 13, Func. Count: 98, Neg. LLF: 145.98466814778521
Optimization terminated successfully (Exit mode 0)
Current function value: 145.98466814778521
Iterations: 13
Function evaluations: 98
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 166.081400793217
Iteration: 2, Func. Count: 18, Neg. LLF: 150.34258025883906
Iteration: 3, Func. Count: 27, Neg. LLF: 147.74060527508573
Iteration: 4, Func. Count: 35, Neg. LLF: 147.34390512411048
Iteration: 5, Func. Count: 44, Neg. LLF: 146.67815670031874
Iteration: 6, Func. Count: 53, Neg. LLF: 146.1410981766201
Iteration: 7, Func. Count: 61, Neg. LLF: 146.1652740560816
Iteration: 8, Func. Count: 70, Neg. LLF: 145.988809101675
Iteration: 9, Func. Count: 78, Neg. LLF: 145.9849610370963
Iteration: 10, Func. Count: 86, Neg. LLF: 145.98469109563712
Iteration: 11, Func. Count: 94, Neg. LLF: 145.98466816004543
Iteration: 12, Func. Count: 101, Neg. LLF: 145.98466797338682
Optimization terminated successfully (Exit mode 0)
Current function value: 145.98466816004543
Iterations: 12
Function evaluations: 101
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 151.23069735408828
Iteration: 2, Func. Count: 20, Neg. LLF: 147.3175955611844
Iteration: 3, Func. Count: 29, Neg. LLF: 159.193468982662
Iteration: 4, Func. Count: 39, Neg. LLF: 226.4397709658165
Iteration: 5, Func. Count: 50, Neg. LLF: 147.8636333840414
Iteration: 6, Func. Count: 60, Neg. LLF: 145.75742097641927
Iteration: 7, Func. Count: 69, Neg. LLF: 145.58032207339767
Iteration: 8, Func. Count: 78, Neg. LLF: 145.45272980769641
Iteration: 9, Func. Count: 87, Neg. LLF: 145.3344587853921
Iteration: 10, Func. Count: 96, Neg. LLF: 145.26586745077907
Iteration: 11, Func. Count: 105, Neg. LLF: 145.252491968688
Iteration: 12, Func. Count: 114, Neg. LLF: 145.2522589195335
Iteration: 13, Func. Count: 123, Neg. LLF: 145.25225793377163
Optimization terminated successfully (Exit mode 0)
Current function value: 145.25225793377163
Iterations: 13
Function evaluations: 123
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 151.66485019235986
Iteration: 2, Func. Count: 22, Neg. LLF: 165.57800860186035
Iteration: 3, Func. Count: 33, Neg. LLF: 156.8220715644999
Iteration: 4, Func. Count: 44, Neg. LLF: 145.55150268518716
Iteration: 5, Func. Count: 54, Neg. LLF: 146.0509232817549
Iteration: 6, Func. Count: 65, Neg. LLF: 145.31418366238367
Iteration: 7, Func. Count: 75, Neg. LLF: 145.27717694065015
Iteration: 8, Func. Count: 85, Neg. LLF: 145.2612583926586
Iteration: 9, Func. Count: 95, Neg. LLF: 145.25388355987363
Iteration: 10, Func. Count: 105, Neg. LLF: 145.25255496262596
Iteration: 11, Func. Count: 115, Neg. LLF: 145.25227014282277
Iteration: 12, Func. Count: 125, Neg. LLF: 145.25226061688102
Iteration: 13, Func. Count: 135, Neg. LLF: 145.25225804968736
Iteration: 14, Func. Count: 144, Neg. LLF: 145.25225798434778
Optimization terminated successfully (Exit mode 0)
Current function value: 145.25225804968736
Iterations: 14
Function evaluations: 144
Gradient evaluations: 14
Iteration: 1, Func. Count: 8, Neg. LLF: 149.15607267051416
Iteration: 2, Func. Count: 15, Neg. LLF: 149.28300423134513
Iteration: 3, Func. Count: 23, Neg. LLF: 148.67323389702577
Iteration: 4, Func. Count: 30, Neg. LLF: 148.49002611590086
Iteration: 5, Func. Count: 37, Neg. LLF: 148.72746803474269
Iteration: 6, Func. Count: 45, Neg. LLF: 148.46499622554344
Iteration: 7, Func. Count: 53, Neg. LLF: 148.39572442605828
Iteration: 8, Func. Count: 60, Neg. LLF: 148.39518833555823
Iteration: 9, Func. Count: 67, Neg. LLF: 148.39518436628978
Iteration: 10, Func. Count: 73, Neg. LLF: 148.39518442052406
Optimization terminated successfully (Exit mode 0)
Current function value: 148.39518436628978
Iterations: 10
Function evaluations: 73
Gradient evaluations: 10
Iteration: 1, Func. Count: 9, Neg. LLF: 161.87089119743985
Iteration: 2, Func. Count: 18, Neg. LLF: 148.94611078942788
Iteration: 3, Func. Count: 27, Neg. LLF: 145.13035388705032
Iteration: 4, Func. Count: 35, Neg. LLF: 147.6415262762345
Iteration: 5, Func. Count: 44, Neg. LLF: 147.45643209554464
Iteration: 6, Func. Count: 53, Neg. LLF: 146.624776150404
Iteration: 7, Func. Count: 62, Neg. LLF: 144.59524321988283
Iteration: 8, Func. Count: 71, Neg. LLF: 144.47516476709723
Iteration: 9, Func. Count: 79, Neg. LLF: 144.47381651730805
Iteration: 10, Func. Count: 87, Neg. LLF: 144.47326270173642
Iteration: 11, Func. Count: 95, Neg. LLF: 144.4721936471525
Iteration: 12, Func. Count: 103, Neg. LLF: 144.4719702581996
Iteration: 13, Func. Count: 111, Neg. LLF: 144.47195775792156
Iteration: 14, Func. Count: 118, Neg. LLF: 144.47195764687356
Optimization terminated successfully (Exit mode 0)
Current function value: 144.47195775792156
Iterations: 14
Function evaluations: 118
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 155.32035100623884
Iteration: 2, Func. Count: 20, Neg. LLF: 145.66783856439213
Iteration: 3, Func. Count: 29, Neg. LLF: 145.05380196504424
Iteration: 4, Func. Count: 38, Neg. LLF: 150.76551777750734
Iteration: 5, Func. Count: 48, Neg. LLF: 154.59437838679196
Iteration: 6, Func. Count: 58, Neg. LLF: 163.67662608194877
Iteration: 7, Func. Count: 68, Neg. LLF: 144.83197468904933
Iteration: 8, Func. Count: 78, Neg. LLF: 145.38699360669824
Iteration: 9, Func. Count: 88, Neg. LLF: 144.5540393890509
Iteration: 10, Func. Count: 98, Neg. LLF: 143.53192877598553
Iteration: 11, Func. Count: 108, Neg. LLF: 143.12451850697883
Iteration: 12, Func. Count: 117, Neg. LLF: 143.0987138830062
Iteration: 13, Func. Count: 126, Neg. LLF: 143.0748512733979
Iteration: 14, Func. Count: 135, Neg. LLF: 143.07427763117906
Iteration: 15, Func. Count: 144, Neg. LLF: 143.0742030062431
Iteration: 16, Func. Count: 153, Neg. LLF: 143.07419883883193
Iteration: 17, Func. Count: 162, Neg. LLF: 143.07419822080456
Optimization terminated successfully (Exit mode 0)
Current function value: 143.07419822080456
Iterations: 17
Function evaluations: 162
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 155.37707834423594
Iteration: 2, Func. Count: 22, Neg. LLF: 145.64294703144134
Iteration: 3, Func. Count: 32, Neg. LLF: 144.95690687335923
Iteration: 4, Func. Count: 42, Neg. LLF: 153.32928857046807
Iteration: 5, Func. Count: 53, Neg. LLF: 160.6170149761013
Iteration: 6, Func. Count: 65, Neg. LLF: 232.27171727053795
Iteration: 7, Func. Count: 76, Neg. LLF: 143.81200785413515
Iteration: 8, Func. Count: 86, Neg. LLF: 164.1402030603839
Iteration: 9, Func. Count: 98, Neg. LLF: 144.2850537036489
Iteration: 10, Func. Count: 109, Neg. LLF: 143.11938618562942
Iteration: 11, Func. Count: 119, Neg. LLF: 143.08055441896937
Iteration: 12, Func. Count: 129, Neg. LLF: 143.0887490451265
Iteration: 13, Func. Count: 140, Neg. LLF: 143.07427489235627
Iteration: 14, Func. Count: 150, Neg. LLF: 143.07420301857107
Iteration: 15, Func. Count: 160, Neg. LLF: 143.07419824152058
Iteration: 16, Func. Count: 169, Neg. LLF: 143.07419827927623
Optimization terminated successfully (Exit mode 0)
Current function value: 143.07419824152058
Iterations: 16
Function evaluations: 169
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 164.78226874017864
Iteration: 2, Func. Count: 24, Neg. LLF: 155.51436128119167
Iteration: 3, Func. Count: 36, Neg. LLF: 145.57646665018885
Iteration: 4, Func. Count: 47, Neg. LLF: 144.13243711841164
Iteration: 5, Func. Count: 58, Neg. LLF: 287.13403029994316
Iteration: 6, Func. Count: 70, Neg. LLF: 175.25488168741091
Iteration: 7, Func. Count: 83, Neg. LLF: 143.37110502282206
Iteration: 8, Func. Count: 94, Neg. LLF: 145.39853886440378
Iteration: 9, Func. Count: 107, Neg. LLF: 146.4087061333812
Iteration: 10, Func. Count: 119, Neg. LLF: 143.08125785798168
Iteration: 11, Func. Count: 130, Neg. LLF: 143.07562066191295
Iteration: 12, Func. Count: 141, Neg. LLF: 143.07425294102637
Iteration: 13, Func. Count: 152, Neg. LLF: 143.07421677656353
Iteration: 14, Func. Count: 163, Neg. LLF: 143.07420784204453
Iteration: 15, Func. Count: 174, Neg. LLF: 143.07420079636174
Iteration: 16, Func. Count: 185, Neg. LLF: 143.07419886977954
Iteration: 17, Func. Count: 195, Neg. LLF: 143.07419885208367
Optimization terminated successfully (Exit mode 0)
Current function value: 143.07419886977954
Iterations: 17
Function evaluations: 195
Gradient evaluations: 17
Iteration: 1, Func. Count: 9, Neg. LLF: 154.9092195936564
Iteration: 2, Func. Count: 18, Neg. LLF: 151.83986577336736
Iteration: 3, Func. Count: 26, Neg. LLF: 148.9146136416399
Iteration: 4, Func. Count: 34, Neg. LLF: 165.28412353944506
Iteration: 5, Func. Count: 46, Neg. LLF: 148.50105310185106
Iteration: 6, Func. Count: 54, Neg. LLF: 149.70240404298045
Iteration: 7, Func. Count: 63, Neg. LLF: 149.11618121580628
Iteration: 8, Func. Count: 72, Neg. LLF: 148.41446721093388
Iteration: 9, Func. Count: 81, Neg. LLF: 148.30840972232465
Iteration: 10, Func. Count: 89, Neg. LLF: 148.30559704740477
Iteration: 11, Func. Count: 97, Neg. LLF: 148.30387643709196
Iteration: 12, Func. Count: 105, Neg. LLF: 148.29927282236864
Iteration: 13, Func. Count: 113, Neg. LLF: 148.2994238897845
Iteration: 14, Func. Count: 122, Neg. LLF: 148.2990619909097
Iteration: 15, Func. Count: 130, Neg. LLF: 148.2990445918963
Iteration: 16, Func. Count: 138, Neg. LLF: 148.2990435373525
Iteration: 17, Func. Count: 145, Neg. LLF: 148.29904353735338
Optimization terminated successfully (Exit mode 0)
Current function value: 148.2990435373525
Iterations: 17
Function evaluations: 145
Gradient evaluations: 17
Iteration: 1, Func. Count: 10, Neg. LLF: 161.89361881760374
Iteration: 2, Func. Count: 20, Neg. LLF: 153.91250266144957
Iteration: 3, Func. Count: 31, Neg. LLF: 148.46574485922167
Iteration: 4, Func. Count: 41, Neg. LLF: 145.67593645192224
Iteration: 5, Func. Count: 51, Neg. LLF: 144.61064752377473
Iteration: 6, Func. Count: 60, Neg. LLF: 146.49209311885755
Iteration: 7, Func. Count: 71, Neg. LLF: 150.85255045239703
Iteration: 8, Func. Count: 81, Neg. LLF: 143.90436677577136
Iteration: 9, Func. Count: 90, Neg. LLF: 143.89734227560618
Iteration: 10, Func. Count: 99, Neg. LLF: 143.8880565059364
Iteration: 11, Func. Count: 108, Neg. LLF: 143.88661897838838
Iteration: 12, Func. Count: 117, Neg. LLF: 143.8857220278863
Iteration: 13, Func. Count: 126, Neg. LLF: 143.88565601993415
Iteration: 14, Func. Count: 135, Neg. LLF: 143.88564852302997
Iteration: 15, Func. Count: 144, Neg. LLF: 143.8856454731498
Iteration: 16, Func. Count: 153, Neg. LLF: 143.88564372932427
Iteration: 17, Func. Count: 161, Neg. LLF: 143.88564362190834
Optimization terminated successfully (Exit mode 0)
Current function value: 143.88564372932427
Iterations: 17
Function evaluations: 161
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 155.31287212131087
Iteration: 2, Func. Count: 22, Neg. LLF: 151.1323750958847
Iteration: 3, Func. Count: 33, Neg. LLF: 147.41579086939836
Iteration: 4, Func. Count: 44, Neg. LLF: 144.5676096785346
Iteration: 5, Func. Count: 54, Neg. LLF: 146.26803315964875
Iteration: 6, Func. Count: 66, Neg. LLF: 154.5157905974722
Iteration: 7, Func. Count: 77, Neg. LLF: 154.74880050123616
Iteration: 8, Func. Count: 88, Neg. LLF: 144.67520306222374
Iteration: 9, Func. Count: 99, Neg. LLF: 147.32316185967423
Iteration: 10, Func. Count: 110, Neg. LLF: 142.99152560955582
Iteration: 11, Func. Count: 120, Neg. LLF: 142.74965800997742
Iteration: 12, Func. Count: 130, Neg. LLF: 142.81000267757295
Iteration: 13, Func. Count: 141, Neg. LLF: 142.89170623950528
Iteration: 14, Func. Count: 152, Neg. LLF: 142.6622429185771
Iteration: 15, Func. Count: 162, Neg. LLF: 142.65784648521122
Iteration: 16, Func. Count: 172, Neg. LLF: 142.65701733564143
Iteration: 17, Func. Count: 182, Neg. LLF: 142.65681459203262
Iteration: 18, Func. Count: 192, Neg. LLF: 142.6567956062887
Iteration: 19, Func. Count: 202, Neg. LLF: 142.6567881964163
Iteration: 20, Func. Count: 211, Neg. LLF: 142.65678813285302
Optimization terminated successfully (Exit mode 0)
Current function value: 142.6567881964163
Iterations: 20
Function evaluations: 211
Gradient evaluations: 20
Iteration: 1, Func. Count: 12, Neg. LLF: 151.05627697615108
Iteration: 2, Func. Count: 24, Neg. LLF: 147.83858954468485
Iteration: 3, Func. Count: 36, Neg. LLF: 146.0536104309176
Iteration: 4, Func. Count: 47, Neg. LLF: 146.51961623075132
Iteration: 5, Func. Count: 59, Neg. LLF: 157.69166761094294
Iteration: 6, Func. Count: 72, Neg. LLF: 155.6761611252029
Iteration: 7, Func. Count: 84, Neg. LLF: 144.48423055564223
Iteration: 8, Func. Count: 98, Neg. LLF: 150.71305026325675
Iteration: 9, Func. Count: 110, Neg. LLF: 150.2057883000185
Iteration: 10, Func. Count: 122, Neg. LLF: 147.25150235400537
Iteration: 11, Func. Count: 134, Neg. LLF: 143.76355919768878
Iteration: 12, Func. Count: 146, Neg. LLF: 142.8454286811722
Iteration: 13, Func. Count: 157, Neg. LLF: 142.7475889450818
Iteration: 14, Func. Count: 168, Neg. LLF: 142.73005788191057
Iteration: 15, Func. Count: 179, Neg. LLF: 142.69833592809724
Iteration: 16, Func. Count: 190, Neg. LLF: 142.7287957020162
Iteration: 17, Func. Count: 202, Neg. LLF: 142.6799642782358
Iteration: 18, Func. Count: 213, Neg. LLF: 142.66450355401432
Iteration: 19, Func. Count: 224, Neg. LLF: 142.65775240793775
Iteration: 20, Func. Count: 235, Neg. LLF: 142.6568130801136
Iteration: 21, Func. Count: 246, Neg. LLF: 142.6567885107423
Iteration: 22, Func. Count: 257, Neg. LLF: 142.65678801295923
Optimization terminated successfully (Exit mode 0)
Current function value: 142.65678801295923
Iterations: 22
Function evaluations: 257
Gradient evaluations: 22
Iteration: 1, Func. Count: 13, Neg. LLF: 164.87475398130087
Iteration: 2, Func. Count: 26, Neg. LLF: 152.3330502319295
Iteration: 3, Func. Count: 39, Neg. LLF: 143.9322444001723
Iteration: 4, Func. Count: 51, Neg. LLF: 143.50660701421785
Iteration: 5, Func. Count: 63, Neg. LLF: 152.25283589637473
Iteration: 6, Func. Count: 78, Neg. LLF: 156.3518705954143
Iteration: 7, Func. Count: 92, Neg. LLF: 146.40609795601063
Iteration: 8, Func. Count: 105, Neg. LLF: 143.31003032954467
Iteration: 9, Func. Count: 118, Neg. LLF: 142.77111689525134
Iteration: 10, Func. Count: 130, Neg. LLF: 142.93888537068733
Iteration: 11, Func. Count: 143, Neg. LLF: 142.7082480542226
Iteration: 12, Func. Count: 156, Neg. LLF: 142.65964731336234
Iteration: 13, Func. Count: 168, Neg. LLF: 142.65746869819424
Iteration: 14, Func. Count: 180, Neg. LLF: 142.65697319756603
Iteration: 15, Func. Count: 192, Neg. LLF: 142.65679912389876
Iteration: 16, Func. Count: 204, Neg. LLF: 142.656789617265
Iteration: 17, Func. Count: 216, Neg. LLF: 142.65678803945508
Iteration: 18, Func. Count: 227, Neg. LLF: 142.656788051061
Optimization terminated successfully (Exit mode 0)
Current function value: 142.65678803945508
Iterations: 18
Function evaluations: 227
Gradient evaluations: 18
Iteration: 1, Func. Count: 10, Neg. LLF: 153.57485114849845
Iteration: 2, Func. Count: 20, Neg. LLF: 152.4265070228224
Iteration: 3, Func. Count: 30, Neg. LLF: 148.81057343653566
Iteration: 4, Func. Count: 39, Neg. LLF: 150.4275095353107
Iteration: 5, Func. Count: 50, Neg. LLF: 148.75621156231645
Iteration: 6, Func. Count: 60, Neg. LLF: 150.24069816388138
Iteration: 7, Func. Count: 70, Neg. LLF: 148.34006552220623
Iteration: 8, Func. Count: 79, Neg. LLF: 148.3477265674013
Iteration: 9, Func. Count: 89, Neg. LLF: 148.3026965114572
Iteration: 10, Func. Count: 98, Neg. LLF: 148.30120965319145
Iteration: 11, Func. Count: 107, Neg. LLF: 148.3006558343541
Iteration: 12, Func. Count: 116, Neg. LLF: 148.29990764473234
Iteration: 13, Func. Count: 125, Neg. LLF: 148.2993572865873
Iteration: 14, Func. Count: 134, Neg. LLF: 148.30084149362133
Iteration: 15, Func. Count: 144, Neg. LLF: 148.29905701026922
Iteration: 16, Func. Count: 153, Neg. LLF: 148.29904379745568
Iteration: 17, Func. Count: 161, Neg. LLF: 148.29904391513847
Optimization terminated successfully (Exit mode 0)
Current function value: 148.29904379745568
Iterations: 17
Function evaluations: 161
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 161.89987378953234
Iteration: 2, Func. Count: 22, Neg. LLF: 153.95782195798705
Iteration: 3, Func. Count: 34, Neg. LLF: 148.45332310333657
Iteration: 4, Func. Count: 45, Neg. LLF: 145.6718228076548
Iteration: 5, Func. Count: 56, Neg. LLF: 144.61408461570198
Iteration: 6, Func. Count: 66, Neg. LLF: 146.4922827974061
Iteration: 7, Func. Count: 78, Neg. LLF: 150.8129631930722
Iteration: 8, Func. Count: 89, Neg. LLF: 143.904621231369
Iteration: 9, Func. Count: 99, Neg. LLF: 143.89777702665344
Iteration: 10, Func. Count: 109, Neg. LLF: 143.88808789851635
Iteration: 11, Func. Count: 119, Neg. LLF: 143.8866435967877
Iteration: 12, Func. Count: 129, Neg. LLF: 143.88572309711887
Iteration: 13, Func. Count: 139, Neg. LLF: 143.88565624887642
Iteration: 14, Func. Count: 149, Neg. LLF: 143.88564857719822
Iteration: 15, Func. Count: 159, Neg. LLF: 143.8856455308623
Iteration: 16, Func. Count: 169, Neg. LLF: 143.8856437254478
Iteration: 17, Func. Count: 178, Neg. LLF: 143.88564361803094
Optimization terminated successfully (Exit mode 0)
Current function value: 143.8856437254478
Iterations: 17
Function evaluations: 178
Gradient evaluations: 17
Iteration: 1, Func. Count: 12, Neg. LLF: 155.2703137543168
Iteration: 2, Func. Count: 24, Neg. LLF: 151.08090424145715
Iteration: 3, Func. Count: 36, Neg. LLF: 147.481006841818
Iteration: 4, Func. Count: 48, Neg. LLF: 144.58457526918528
Iteration: 5, Func. Count: 59, Neg. LLF: 146.34162795907156
Iteration: 6, Func. Count: 72, Neg. LLF: 155.98962062745088
Iteration: 7, Func. Count: 84, Neg. LLF: 163.88982059480028
Iteration: 8, Func. Count: 96, Neg. LLF: 144.27761479531716
Iteration: 9, Func. Count: 108, Neg. LLF: 147.12292144666006
Iteration: 10, Func. Count: 120, Neg. LLF: 144.2718424360003
Iteration: 11, Func. Count: 132, Neg. LLF: 164.67009948392797
Iteration: 12, Func. Count: 144, Neg. LLF: 144.2113532793722
Iteration: 13, Func. Count: 156, Neg. LLF: 143.69658744639983
Iteration: 14, Func. Count: 168, Neg. LLF: 142.43135377802994
Iteration: 15, Func. Count: 179, Neg. LLF: 143.34655689750647
Iteration: 16, Func. Count: 191, Neg. LLF: 142.41696553003
Iteration: 17, Func. Count: 203, Neg. LLF: 142.40627417559034
Iteration: 18, Func. Count: 214, Neg. LLF: 142.40586197687
Iteration: 19, Func. Count: 225, Neg. LLF: 142.40572768133487
Iteration: 20, Func. Count: 236, Neg. LLF: 142.40572500300289
Iteration: 21, Func. Count: 246, Neg. LLF: 142.4057249232798
Optimization terminated successfully (Exit mode 0)
Current function value: 142.40572500300289
Iterations: 21
Function evaluations: 246
Gradient evaluations: 21
Iteration: 1, Func. Count: 13, Neg. LLF: 151.01611832501652
Iteration: 2, Func. Count: 26, Neg. LLF: 148.1124993468156
Iteration: 3, Func. Count: 39, Neg. LLF: 145.99157606702292
Iteration: 4, Func. Count: 51, Neg. LLF: 145.8382739852146
Iteration: 5, Func. Count: 64, Neg. LLF: 156.67938873768034
Iteration: 6, Func. Count: 78, Neg. LLF: 154.148223362191
Iteration: 7, Func. Count: 91, Neg. LLF: 144.7949312923696
Iteration: 8, Func. Count: 105, Neg. LLF: 147.1996100324375
Iteration: 9, Func. Count: 118, Neg. LLF: 146.7143752971246
Iteration: 10, Func. Count: 131, Neg. LLF: 157.3759189976199
Iteration: 11, Func. Count: 144, Neg. LLF: 143.58132666382957
Iteration: 12, Func. Count: 157, Neg. LLF: 143.13749381711344
Iteration: 13, Func. Count: 170, Neg. LLF: 142.98131104615885
Iteration: 14, Func. Count: 183, Neg. LLF: 142.54608921835728
Iteration: 15, Func. Count: 195, Neg. LLF: 142.90962177096065
Iteration: 16, Func. Count: 208, Neg. LLF: 143.67440091629726
Iteration: 17, Func. Count: 221, Neg. LLF: 142.43168505763538
Iteration: 18, Func. Count: 233, Neg. LLF: 142.43099584293086
Iteration: 19, Func. Count: 246, Neg. LLF: 142.41125397732668
Iteration: 20, Func. Count: 259, Neg. LLF: 142.405821787187
Iteration: 21, Func. Count: 271, Neg. LLF: 142.4057657802581
Iteration: 22, Func. Count: 283, Neg. LLF: 142.40572514484012
Iteration: 23, Func. Count: 294, Neg. LLF: 142.40572519618664
Optimization terminated successfully (Exit mode 0)
Current function value: 142.40572514484012
Iterations: 23
Function evaluations: 294
Gradient evaluations: 23
Iteration: 1, Func. Count: 14, Neg. LLF: 164.54531906228084
Iteration: 2, Func. Count: 28, Neg. LLF: 152.16094633717154
Iteration: 3, Func. Count: 42, Neg. LLF: 143.9405524383517
Iteration: 4, Func. Count: 55, Neg. LLF: 143.59286346590366
Iteration: 5, Func. Count: 68, Neg. LLF: 149.43645699370316
Iteration: 6, Func. Count: 84, Neg. LLF: 157.8669572072598
Iteration: 7, Func. Count: 100, Neg. LLF: 157.15092342486273
Iteration: 8, Func. Count: 114, Neg. LLF: 147.96924061733685
Iteration: 9, Func. Count: 128, Neg. LLF: 142.82571929102
Iteration: 10, Func. Count: 142, Neg. LLF: 142.63157851488484
Iteration: 11, Func. Count: 156, Neg. LLF: 142.5439500648308
Iteration: 12, Func. Count: 170, Neg. LLF: 142.9314618946433
Iteration: 13, Func. Count: 184, Neg. LLF: 142.41854996800083
Iteration: 14, Func. Count: 198, Neg. LLF: 142.40605343221844
Iteration: 15, Func. Count: 211, Neg. LLF: 142.4057981699514
Iteration: 16, Func. Count: 224, Neg. LLF: 142.40572918999982
Iteration: 17, Func. Count: 237, Neg. LLF: 142.4057252638502
Iteration: 18, Func. Count: 249, Neg. LLF: 142.4057252993754
Optimization terminated successfully (Exit mode 0)
Current function value: 142.4057252638502
Iterations: 18
Function evaluations: 249
Gradient evaluations: 18
Iteration: 1, Func. Count: 7, Neg. LLF: 147.30747959230075
Iteration: 2, Func. Count: 13, Neg. LLF: 149.31224924830528
Iteration: 3, Func. Count: 20, Neg. LLF: 146.84608921864094
Iteration: 4, Func. Count: 26, Neg. LLF: 181.19105584746686
Iteration: 5, Func. Count: 33, Neg. LLF: 157.37711614170826
Iteration: 6, Func. Count: 40, Neg. LLF: 146.50687844367135
Iteration: 7, Func. Count: 47, Neg. LLF: 145.70394198261647
Iteration: 8, Func. Count: 53, Neg. LLF: 145.6969320078716
Iteration: 9, Func. Count: 59, Neg. LLF: 145.6965361348112
Iteration: 10, Func. Count: 65, Neg. LLF: 145.6964061618709
Iteration: 11, Func. Count: 71, Neg. LLF: 145.69640546318828
Optimization terminated successfully (Exit mode 0)
Current function value: 145.69640546318828
Iterations: 11
Function evaluations: 71
Gradient evaluations: 11
Iteration: 1, Func. Count: 8, Neg. LLF: 151.64469252476607
Iteration: 2, Func. Count: 16, Neg. LLF: 149.52817477053944
Iteration: 3, Func. Count: 24, Neg. LLF: 145.9575201312
Iteration: 4, Func. Count: 31, Neg. LLF: 152.6145449692959
Iteration: 5, Func. Count: 40, Neg. LLF: 149.60419372422547
Iteration: 6, Func. Count: 48, Neg. LLF: 145.72417774576638
Iteration: 7, Func. Count: 56, Neg. LLF: 145.5506012080141
Iteration: 8, Func. Count: 63, Neg. LLF: 145.54070973278786
Iteration: 9, Func. Count: 70, Neg. LLF: 145.5405258927026
Iteration: 10, Func. Count: 77, Neg. LLF: 145.54052490008962
Optimization terminated successfully (Exit mode 0)
Current function value: 145.54052490008962
Iterations: 10
Function evaluations: 77
Gradient evaluations: 10
Iteration: 1, Func. Count: 9, Neg. LLF: 145.9672204839192
Iteration: 2, Func. Count: 17, Neg. LLF: 146.23037127981607
Iteration: 3, Func. Count: 26, Neg. LLF: 172.44825601477564
Iteration: 4, Func. Count: 35, Neg. LLF: 145.97523691339686
Iteration: 5, Func. Count: 44, Neg. LLF: 145.60700033689463
Iteration: 6, Func. Count: 52, Neg. LLF: 145.57423125398918
Iteration: 7, Func. Count: 60, Neg. LLF: 145.55681188526103
Iteration: 8, Func. Count: 68, Neg. LLF: 145.54964367352287
Iteration: 9, Func. Count: 76, Neg. LLF: 145.54101286798834
Iteration: 10, Func. Count: 84, Neg. LLF: 145.54053772414622
Iteration: 11, Func. Count: 92, Neg. LLF: 145.54052484117042
Iteration: 12, Func. Count: 99, Neg. LLF: 145.54052500023514
Optimization terminated successfully (Exit mode 0)
Current function value: 145.54052484117042
Iterations: 12
Function evaluations: 99
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 145.9631956645124
Iteration: 2, Func. Count: 19, Neg. LLF: 146.36723731740824
Iteration: 3, Func. Count: 30, Neg. LLF: 176.48915332686713
Iteration: 4, Func. Count: 40, Neg. LLF: 145.70266055852693
Iteration: 5, Func. Count: 50, Neg. LLF: 145.64527057163284
Iteration: 6, Func. Count: 60, Neg. LLF: 145.58354576814602
Iteration: 7, Func. Count: 69, Neg. LLF: 145.54435364960673
Iteration: 8, Func. Count: 78, Neg. LLF: 145.54164465318786
Iteration: 9, Func. Count: 87, Neg. LLF: 145.5408362042993
Iteration: 10, Func. Count: 96, Neg. LLF: 145.5405278528596
Iteration: 11, Func. Count: 105, Neg. LLF: 145.54052474115707
Iteration: 12, Func. Count: 113, Neg. LLF: 145.54052479167729
Optimization terminated successfully (Exit mode 0)
Current function value: 145.54052474115707
Iterations: 12
Function evaluations: 113
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 145.9849994611366
Iteration: 2, Func. Count: 21, Neg. LLF: 146.10065029112272
Iteration: 3, Func. Count: 32, Neg. LLF: 179.29047397359525
Iteration: 4, Func. Count: 44, Neg. LLF: 145.822207589746
Iteration: 5, Func. Count: 55, Neg. LLF: 145.6109793441558
Iteration: 6, Func. Count: 65, Neg. LLF: 145.58312607503981
Iteration: 7, Func. Count: 75, Neg. LLF: 145.5597144921942
Iteration: 8, Func. Count: 85, Neg. LLF: 145.55034152026676
Iteration: 9, Func. Count: 95, Neg. LLF: 145.5407930627379
Iteration: 10, Func. Count: 105, Neg. LLF: 145.54053201045255
Iteration: 11, Func. Count: 115, Neg. LLF: 145.5405254408449
Iteration: 12, Func. Count: 125, Neg. LLF: 145.5405247367421
Optimization terminated successfully (Exit mode 0)
Current function value: 145.5405247367421
Iterations: 12
Function evaluations: 125
Gradient evaluations: 12
Iteration: 1, Func. Count: 8, Neg. LLF: 150.80531440929386
Iteration: 2, Func. Count: 15, Neg. LLF: 151.06450249092063
Iteration: 3, Func. Count: 23, Neg. LLF: 152.28335885016736
Iteration: 4, Func. Count: 34, Neg. LLF: 146.7041505782201
Iteration: 5, Func. Count: 41, Neg. LLF: 145.97307021595452
Iteration: 6, Func. Count: 48, Neg. LLF: 146.62638122465034
Iteration: 7, Func. Count: 56, Neg. LLF: 145.70787548917718
Iteration: 8, Func. Count: 63, Neg. LLF: 145.696739198086
Iteration: 9, Func. Count: 70, Neg. LLF: 145.69641037147406
Iteration: 10, Func. Count: 77, Neg. LLF: 145.6964056334227
Iteration: 11, Func. Count: 83, Neg. LLF: 145.6964056098928
Optimization terminated successfully (Exit mode 0)
Current function value: 145.6964056334227
Iterations: 11
Function evaluations: 83
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 154.5417854575386
Iteration: 2, Func. Count: 18, Neg. LLF: 148.91664307029924
Iteration: 3, Func. Count: 27, Neg. LLF: 146.83041794982185
Iteration: 4, Func. Count: 36, Neg. LLF: 146.32684175943348
Iteration: 5, Func. Count: 44, Neg. LLF: 148.95410634743254
Iteration: 6, Func. Count: 53, Neg. LLF: 146.10607789180932
Iteration: 7, Func. Count: 61, Neg. LLF: 146.09644560557035
Iteration: 8, Func. Count: 69, Neg. LLF: 146.0859579609369
Iteration: 9, Func. Count: 77, Neg. LLF: 146.65364003680875
Iteration: 10, Func. Count: 86, Neg. LLF: 146.85468604040824
Iteration: 11, Func. Count: 95, Neg. LLF: 146.12285546166615
Iteration: 12, Func. Count: 104, Neg. LLF: 146.01064319577804
Iteration: 13, Func. Count: 112, Neg. LLF: 145.92416180456217
Iteration: 14, Func. Count: 120, Neg. LLF: 145.6911303070687
Iteration: 15, Func. Count: 128, Neg. LLF: 145.56701079556476
Iteration: 16, Func. Count: 136, Neg. LLF: 145.54403128447467
Iteration: 17, Func. Count: 144, Neg. LLF: 145.5418838763183
Iteration: 18, Func. Count: 152, Neg. LLF: 145.54079354848054
Iteration: 19, Func. Count: 160, Neg. LLF: 145.54054444013337
Iteration: 20, Func. Count: 168, Neg. LLF: 145.54052531840557
Iteration: 21, Func. Count: 176, Neg. LLF: 145.5405247400101
Optimization terminated successfully (Exit mode 0)
Current function value: 145.5405247400101
Iterations: 21
Function evaluations: 176
Gradient evaluations: 21
Iteration: 1, Func. Count: 10, Neg. LLF: 145.96652771105084
Iteration: 2, Func. Count: 19, Neg. LLF: 146.23946303338474
Iteration: 3, Func. Count: 29, Neg. LLF: 172.52398753907423
Iteration: 4, Func. Count: 39, Neg. LLF: 145.93918741026508
Iteration: 5, Func. Count: 49, Neg. LLF: 145.6090601841871
Iteration: 6, Func. Count: 58, Neg. LLF: 145.575528949373
Iteration: 7, Func. Count: 67, Neg. LLF: 145.55715805326557
Iteration: 8, Func. Count: 76, Neg. LLF: 145.55002337512445
Iteration: 9, Func. Count: 85, Neg. LLF: 145.540927544779
Iteration: 10, Func. Count: 94, Neg. LLF: 145.5405316179464
Iteration: 11, Func. Count: 103, Neg. LLF: 145.5405247748131
Iteration: 12, Func. Count: 111, Neg. LLF: 145.54052493386644
Optimization terminated successfully (Exit mode 0)
Current function value: 145.5405247748131
Iterations: 12
Function evaluations: 111
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 148.17707191106993
Iteration: 2, Func. Count: 21, Neg. LLF: 147.56257105371782
Iteration: 3, Func. Count: 32, Neg. LLF: 176.3034472858861
Iteration: 4, Func. Count: 43, Neg. LLF: 147.76265549644214
Iteration: 5, Func. Count: 54, Neg. LLF: 145.78268213773092
Iteration: 6, Func. Count: 64, Neg. LLF: 145.6653502602562
Iteration: 7, Func. Count: 74, Neg. LLF: 145.5935477459103
Iteration: 8, Func. Count: 84, Neg. LLF: 145.56237382253673
Iteration: 9, Func. Count: 94, Neg. LLF: 145.54902620079721
Iteration: 10, Func. Count: 104, Neg. LLF: 145.54640451001586
Iteration: 11, Func. Count: 114, Neg. LLF: 145.54377609676737
Iteration: 12, Func. Count: 124, Neg. LLF: 145.5406040119692
Iteration: 13, Func. Count: 134, Neg. LLF: 145.54052919293213
Iteration: 14, Func. Count: 144, Neg. LLF: 145.54052473813493
Iteration: 15, Func. Count: 153, Neg. LLF: 145.54052478865393
Optimization terminated successfully (Exit mode 0)
Current function value: 145.54052473813493
Iterations: 15
Function evaluations: 153
Gradient evaluations: 15
Iteration: 1, Func. Count: 12, Neg. LLF: 145.99305344743485
Iteration: 2, Func. Count: 23, Neg. LLF: 146.11554884344358
Iteration: 3, Func. Count: 35, Neg. LLF: 180.45201760889972
Iteration: 4, Func. Count: 48, Neg. LLF: 145.8018999111813
Iteration: 5, Func. Count: 60, Neg. LLF: 145.61037306629518
Iteration: 6, Func. Count: 71, Neg. LLF: 145.5842750515758
Iteration: 7, Func. Count: 82, Neg. LLF: 145.56076279408578
Iteration: 8, Func. Count: 93, Neg. LLF: 145.5506887643044
Iteration: 9, Func. Count: 104, Neg. LLF: 145.54078526459048
Iteration: 10, Func. Count: 115, Neg. LLF: 145.54052977711174
Iteration: 11, Func. Count: 126, Neg. LLF: 145.54052515160217
Iteration: 12, Func. Count: 136, Neg. LLF: 145.54052534976717
Optimization terminated successfully (Exit mode 0)
Current function value: 145.54052515160217
Iterations: 12
Function evaluations: 136
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 147.3470012100048
Iteration: 2, Func. Count: 17, Neg. LLF: 149.35431419293448
Iteration: 3, Func. Count: 26, Neg. LLF: 147.0809029088188
Iteration: 4, Func. Count: 35, Neg. LLF: 193.86839884733564
Iteration: 5, Func. Count: 44, Neg. LLF: 162.34705599131794
Iteration: 6, Func. Count: 53, Neg. LLF: 147.18411973771273
Iteration: 7, Func. Count: 62, Neg. LLF: 145.7280924353242
Iteration: 8, Func. Count: 70, Neg. LLF: 145.68695240757725
Iteration: 9, Func. Count: 78, Neg. LLF: 145.68601470781212
Iteration: 10, Func. Count: 86, Neg. LLF: 145.6850170275226
Iteration: 11, Func. Count: 94, Neg. LLF: 145.6848511813706
Iteration: 12, Func. Count: 102, Neg. LLF: 145.68484893425915
Iteration: 13, Func. Count: 109, Neg. LLF: 145.684848912712
Optimization terminated successfully (Exit mode 0)
Current function value: 145.68484893425915
Iterations: 13
Function evaluations: 109
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 163.60693912351587
Iteration: 2, Func. Count: 20, Neg. LLF: 154.33597486729923
Iteration: 3, Func. Count: 30, Neg. LLF: 144.33294590545503
Iteration: 4, Func. Count: 39, Neg. LLF: 145.02041974803703
Iteration: 5, Func. Count: 49, Neg. LLF: 146.2897661800743
Iteration: 6, Func. Count: 59, Neg. LLF: 144.09300722415773
Iteration: 7, Func. Count: 69, Neg. LLF: 145.44585783186042
Iteration: 8, Func. Count: 79, Neg. LLF: 143.83804666576404
Iteration: 9, Func. Count: 88, Neg. LLF: 143.82161051479292
Iteration: 10, Func. Count: 97, Neg. LLF: 143.81706404118748
Iteration: 11, Func. Count: 106, Neg. LLF: 143.81689570613662
Iteration: 12, Func. Count: 115, Neg. LLF: 143.81689268138695
Iteration: 13, Func. Count: 123, Neg. LLF: 143.81689258167083
Optimization terminated successfully (Exit mode 0)
Current function value: 143.81689268138695
Iterations: 13
Function evaluations: 123
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 146.49137381004766
Iteration: 2, Func. Count: 21, Neg. LLF: 147.72801299780556
Iteration: 3, Func. Count: 33, Neg. LLF: 168.56150260693022
Iteration: 4, Func. Count: 44, Neg. LLF: 146.9021167273405
Iteration: 5, Func. Count: 55, Neg. LLF: 145.33893047152932
Iteration: 6, Func. Count: 66, Neg. LLF: 146.6359673720258
Iteration: 7, Func. Count: 77, Neg. LLF: 145.3704413214417
Iteration: 8, Func. Count: 88, Neg. LLF: 167.23263256735444
Iteration: 9, Func. Count: 99, Neg. LLF: 151.27718739512085
Iteration: 10, Func. Count: 110, Neg. LLF: 153.70723416350165
Iteration: 11, Func. Count: 121, Neg. LLF: 144.36651002237474
Iteration: 12, Func. Count: 132, Neg. LLF: 143.10265145813332
Iteration: 13, Func. Count: 142, Neg. LLF: 142.84599737254442
Iteration: 14, Func. Count: 152, Neg. LLF: 142.85514062651214
Iteration: 15, Func. Count: 163, Neg. LLF: 142.83851743932
Iteration: 16, Func. Count: 174, Neg. LLF: 142.84149783413426
Iteration: 17, Func. Count: 185, Neg. LLF: 142.82567654958336
Iteration: 18, Func. Count: 195, Neg. LLF: 142.82567163555655
Iteration: 19, Func. Count: 204, Neg. LLF: 142.825671569562
Optimization terminated successfully (Exit mode 0)
Current function value: 142.82567163555655
Iterations: 19
Function evaluations: 204
Gradient evaluations: 19
Iteration: 1, Func. Count: 12, Neg. LLF: 148.0627352749651
Iteration: 2, Func. Count: 23, Neg. LLF: 148.39540945563874
Iteration: 3, Func. Count: 36, Neg. LLF: 168.59967144123382
Iteration: 4, Func. Count: 48, Neg. LLF: 148.76719640121442
Iteration: 5, Func. Count: 60, Neg. LLF: 144.99259265828067
Iteration: 6, Func. Count: 71, Neg. LLF: 154.0142022087044
Iteration: 7, Func. Count: 83, Neg. LLF: 145.14518691099602
Iteration: 8, Func. Count: 96, Neg. LLF: 144.17033550413456
Iteration: 9, Func. Count: 108, Neg. LLF: 143.34598041407668
Iteration: 10, Func. Count: 119, Neg. LLF: 148.6087240836407
Iteration: 11, Func. Count: 131, Neg. LLF: 144.3124854577312
Iteration: 12, Func. Count: 143, Neg. LLF: 143.37539438944418
Iteration: 13, Func. Count: 155, Neg. LLF: 142.87681723509684
Iteration: 14, Func. Count: 166, Neg. LLF: 142.86151872690385
Iteration: 15, Func. Count: 177, Neg. LLF: 142.8448129692898
Iteration: 16, Func. Count: 188, Neg. LLF: 142.8289963342522
Iteration: 17, Func. Count: 199, Neg. LLF: 142.82649380787612
Iteration: 18, Func. Count: 210, Neg. LLF: 142.82572183983794
Iteration: 19, Func. Count: 221, Neg. LLF: 142.8256729108911
Iteration: 20, Func. Count: 232, Neg. LLF: 142.82567110214367
Iteration: 21, Func. Count: 242, Neg. LLF: 142.8256711264014
Optimization terminated successfully (Exit mode 0)
Current function value: 142.82567110214367
Iterations: 21
Function evaluations: 242
Gradient evaluations: 21
Iteration: 1, Func. Count: 13, Neg. LLF: 146.4960098264978
Iteration: 2, Func. Count: 25, Neg. LLF: 147.35552790610924
Iteration: 3, Func. Count: 39, Neg. LLF: 168.84729749407146
Iteration: 4, Func. Count: 52, Neg. LLF: 146.57074983167942
Iteration: 5, Func. Count: 65, Neg. LLF: 145.32609835233634
Iteration: 6, Func. Count: 78, Neg. LLF: 145.55443463450553
Iteration: 7, Func. Count: 91, Neg. LLF: 161.86955979304187
Iteration: 8, Func. Count: 104, Neg. LLF: 150.13666933700696
Iteration: 9, Func. Count: 117, Neg. LLF: 150.86704095936608
Iteration: 10, Func. Count: 130, Neg. LLF: 155.3880785928209
Iteration: 11, Func. Count: 143, Neg. LLF: 144.13961688195636
Iteration: 12, Func. Count: 156, Neg. LLF: 143.88447170496443
Iteration: 13, Func. Count: 169, Neg. LLF: 142.88583865447075
Iteration: 14, Func. Count: 181, Neg. LLF: 143.2129342907205
Iteration: 15, Func. Count: 194, Neg. LLF: 142.8876344515574
Iteration: 16, Func. Count: 207, Neg. LLF: 142.82661080328634
Iteration: 17, Func. Count: 219, Neg. LLF: 142.82600955313876
Iteration: 18, Func. Count: 231, Neg. LLF: 142.82572195190588
Iteration: 19, Func. Count: 243, Neg. LLF: 142.82567298584527
Iteration: 20, Func. Count: 255, Neg. LLF: 142.8256711425612
Iteration: 21, Func. Count: 266, Neg. LLF: 142.82567113739765
Optimization terminated successfully (Exit mode 0)
Current function value: 142.8256711425612
Iterations: 21
Function evaluations: 266
Gradient evaluations: 21
Iteration: 1, Func. Count: 10, Neg. LLF: 147.1490624461085
Iteration: 2, Func. Count: 19, Neg. LLF: 149.3934649107894
Iteration: 3, Func. Count: 30, Neg. LLF: 155.22062781682237
Iteration: 4, Func. Count: 40, Neg. LLF: 148.49995749807647
Iteration: 5, Func. Count: 50, Neg. LLF: 146.16269950890862
Iteration: 6, Func. Count: 59, Neg. LLF: 145.83729742360734
Iteration: 7, Func. Count: 68, Neg. LLF: 145.55770299083585
Iteration: 8, Func. Count: 77, Neg. LLF: 145.09646143338668
Iteration: 9, Func. Count: 86, Neg. LLF: 150.9437723721628
Iteration: 10, Func. Count: 96, Neg. LLF: 148.8645262558986
Iteration: 11, Func. Count: 106, Neg. LLF: 144.86341139209574
Iteration: 12, Func. Count: 115, Neg. LLF: 144.81103880479827
Iteration: 13, Func. Count: 124, Neg. LLF: 144.82675261042817
Iteration: 14, Func. Count: 134, Neg. LLF: 144.80482511796612
Iteration: 15, Func. Count: 143, Neg. LLF: 144.80432243325126
Iteration: 16, Func. Count: 152, Neg. LLF: 144.80425581063233
Iteration: 17, Func. Count: 161, Neg. LLF: 144.80425310134783
Iteration: 18, Func. Count: 169, Neg. LLF: 144.80425312528214
Optimization terminated successfully (Exit mode 0)
Current function value: 144.80425310134783
Iterations: 18
Function evaluations: 169
Gradient evaluations: 18
Iteration: 1, Func. Count: 11, Neg. LLF: 160.90689819901425
Iteration: 2, Func. Count: 22, Neg. LLF: 165.5843602123614
Iteration: 3, Func. Count: 33, Neg. LLF: 151.1445762810885
Iteration: 4, Func. Count: 44, Neg. LLF: 144.07274972062476
Iteration: 5, Func. Count: 54, Neg. LLF: 148.43880967997117
Iteration: 6, Func. Count: 66, Neg. LLF: 143.74934632005386
Iteration: 7, Func. Count: 76, Neg. LLF: 143.6756008942716
Iteration: 8, Func. Count: 86, Neg. LLF: 143.62252722372193
Iteration: 9, Func. Count: 96, Neg. LLF: 143.60706505814608
Iteration: 10, Func. Count: 106, Neg. LLF: 143.60056263238465
Iteration: 11, Func. Count: 116, Neg. LLF: 143.59475327628252
Iteration: 12, Func. Count: 126, Neg. LLF: 143.59320999059622
Iteration: 13, Func. Count: 136, Neg. LLF: 143.59297471968637
Iteration: 14, Func. Count: 146, Neg. LLF: 143.5929481665777
Iteration: 15, Func. Count: 156, Neg. LLF: 143.59294319786838
Iteration: 16, Func. Count: 165, Neg. LLF: 143.59294312746042
Optimization terminated successfully (Exit mode 0)
Current function value: 143.59294319786838
Iterations: 16
Function evaluations: 165
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 148.8490739911501
Iteration: 2, Func. Count: 24, Neg. LLF: 148.43654016791925
Iteration: 3, Func. Count: 36, Neg. LLF: 148.6290260466946
Iteration: 4, Func. Count: 49, Neg. LLF: 147.570572364658
Iteration: 5, Func. Count: 61, Neg. LLF: 146.4830560812757
Iteration: 6, Func. Count: 73, Neg. LLF: 145.81564834942156
Iteration: 7, Func. Count: 85, Neg. LLF: 143.88986428427174
Iteration: 8, Func. Count: 96, Neg. LLF: 143.691828289469
Iteration: 9, Func. Count: 107, Neg. LLF: 143.60374295754318
Iteration: 10, Func. Count: 118, Neg. LLF: 143.60050174511667
Iteration: 11, Func. Count: 129, Neg. LLF: 143.59753784783143
Iteration: 12, Func. Count: 140, Neg. LLF: 143.5951231575817
Iteration: 13, Func. Count: 151, Neg. LLF: 143.5930901877709
Iteration: 14, Func. Count: 162, Neg. LLF: 143.5929489039248
Iteration: 15, Func. Count: 173, Neg. LLF: 143.59294264665286
Iteration: 16, Func. Count: 183, Neg. LLF: 143.59294262012787
Optimization terminated successfully (Exit mode 0)
Current function value: 143.59294264665286
Iterations: 16
Function evaluations: 183
Gradient evaluations: 16
Iteration: 1, Func. Count: 13, Neg. LLF: 148.80261614749574
Iteration: 2, Func. Count: 26, Neg. LLF: 145.85783570242273
Iteration: 3, Func. Count: 39, Neg. LLF: 185.89585248567514
Iteration: 4, Func. Count: 54, Neg. LLF: 165.86829639131145
Iteration: 5, Func. Count: 67, Neg. LLF: 144.24667510473486
Iteration: 6, Func. Count: 79, Neg. LLF: 144.3716370881443
Iteration: 7, Func. Count: 92, Neg. LLF: 144.50210542252532
Iteration: 8, Func. Count: 105, Neg. LLF: 143.76635807249878
Iteration: 9, Func. Count: 117, Neg. LLF: 143.65070538334925
Iteration: 10, Func. Count: 129, Neg. LLF: 143.7599787641233
Iteration: 11, Func. Count: 142, Neg. LLF: 143.60130008859892
Iteration: 12, Func. Count: 154, Neg. LLF: 143.59590260623543
Iteration: 13, Func. Count: 166, Neg. LLF: 143.59395836950418
Iteration: 14, Func. Count: 178, Neg. LLF: 143.5929474799781
Iteration: 15, Func. Count: 190, Neg. LLF: 143.59294271414072
Iteration: 16, Func. Count: 201, Neg. LLF: 143.59294270642883
Optimization terminated successfully (Exit mode 0)
Current function value: 143.59294271414072
Iterations: 16
Function evaluations: 201
Gradient evaluations: 16
Iteration: 1, Func. Count: 14, Neg. LLF: 148.74336060206537
Iteration: 2, Func. Count: 27, Neg. LLF: 145.87459229902234
Iteration: 3, Func. Count: 41, Neg. LLF: 192.1959430032313
Iteration: 4, Func. Count: 58, Neg. LLF: 171.33258731465332
Iteration: 5, Func. Count: 72, Neg. LLF: 174.07275095859092
Iteration: 6, Func. Count: 86, Neg. LLF: 144.21577872405035
Iteration: 7, Func. Count: 99, Neg. LLF: 143.974616505542
Iteration: 8, Func. Count: 112, Neg. LLF: 144.983198024171
Iteration: 9, Func. Count: 126, Neg. LLF: 143.67356867667172
Iteration: 10, Func. Count: 139, Neg. LLF: 143.61807605643628
Iteration: 11, Func. Count: 152, Neg. LLF: 143.61286902223168
Iteration: 12, Func. Count: 165, Neg. LLF: 143.60979404818792
Iteration: 13, Func. Count: 178, Neg. LLF: 143.60665810255185
Iteration: 14, Func. Count: 191, Neg. LLF: 143.59850545716452
Iteration: 15, Func. Count: 204, Neg. LLF: 143.59489798388466
Iteration: 16, Func. Count: 217, Neg. LLF: 143.59334054890732
Iteration: 17, Func. Count: 230, Neg. LLF: 143.59295138603466
Iteration: 18, Func. Count: 243, Neg. LLF: 143.5929443679238
Iteration: 19, Func. Count: 256, Neg. LLF: 143.5929430263263
Iteration: 20, Func. Count: 268, Neg. LLF: 143.5929431366124
Optimization terminated successfully (Exit mode 0)
Current function value: 143.5929430263263
Iterations: 20
Function evaluations: 268
Gradient evaluations: 20
Iteration: 1, Func. Count: 11, Neg. LLF: 146.818009323167
Iteration: 2, Func. Count: 21, Neg. LLF: 149.26178151580507
Iteration: 3, Func. Count: 34, Neg. LLF: 149.06091238664976
Iteration: 4, Func. Count: 45, Neg. LLF: 146.38560240525456
Iteration: 5, Func. Count: 55, Neg. LLF: 146.86566515008582
Iteration: 6, Func. Count: 66, Neg. LLF: 145.4904001047665
Iteration: 7, Func. Count: 76, Neg. LLF: 145.39022988181293
Iteration: 8, Func. Count: 86, Neg. LLF: 144.99572860240374
Iteration: 9, Func. Count: 96, Neg. LLF: 147.139022754562
Iteration: 10, Func. Count: 109, Neg. LLF: 144.8596234372702
Iteration: 11, Func. Count: 119, Neg. LLF: 144.82669577495338
Iteration: 12, Func. Count: 129, Neg. LLF: 144.8065782835956
Iteration: 13, Func. Count: 139, Neg. LLF: 144.8044587143812
Iteration: 14, Func. Count: 149, Neg. LLF: 144.80425477909498
Iteration: 15, Func. Count: 159, Neg. LLF: 144.80425310858973
Iteration: 16, Func. Count: 168, Neg. LLF: 144.8042533186986
Optimization terminated successfully (Exit mode 0)
Current function value: 144.80425310858973
Iterations: 16
Function evaluations: 168
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 160.905709386138
Iteration: 2, Func. Count: 24, Neg. LLF: 165.86794611873714
Iteration: 3, Func. Count: 36, Neg. LLF: 151.14870590930926
Iteration: 4, Func. Count: 48, Neg. LLF: 144.07372349999267
Iteration: 5, Func. Count: 59, Neg. LLF: 148.33872350480402
Iteration: 6, Func. Count: 72, Neg. LLF: 143.7499212152489
Iteration: 7, Func. Count: 83, Neg. LLF: 143.67881962280524
Iteration: 8, Func. Count: 94, Neg. LLF: 143.62370290921257
Iteration: 9, Func. Count: 105, Neg. LLF: 143.60761923132137
Iteration: 10, Func. Count: 116, Neg. LLF: 143.60090632680289
Iteration: 11, Func. Count: 127, Neg. LLF: 143.59498356321072
Iteration: 12, Func. Count: 138, Neg. LLF: 143.59324027925655
Iteration: 13, Func. Count: 149, Neg. LLF: 143.59297811051067
Iteration: 14, Func. Count: 160, Neg. LLF: 143.59294865182528
Iteration: 15, Func. Count: 171, Neg. LLF: 143.59294329160713
Iteration: 16, Func. Count: 182, Neg. LLF: 143.59294265162112
Optimization terminated successfully (Exit mode 0)
Current function value: 143.59294265162112
Iterations: 16
Function evaluations: 182
Gradient evaluations: 16
Iteration: 1, Func. Count: 13, Neg. LLF: 148.85103974917638
Iteration: 2, Func. Count: 26, Neg. LLF: 148.4360491797993
Iteration: 3, Func. Count: 39, Neg. LLF: 149.3805481531296
Iteration: 4, Func. Count: 53, Neg. LLF: 148.0459492558627
Iteration: 5, Func. Count: 66, Neg. LLF: 145.54464781437184
Iteration: 6, Func. Count: 79, Neg. LLF: 146.08592021179467
Iteration: 7, Func. Count: 92, Neg. LLF: 143.90061858546392
Iteration: 8, Func. Count: 104, Neg. LLF: 143.68664420280317
Iteration: 9, Func. Count: 116, Neg. LLF: 143.61018707645056
Iteration: 10, Func. Count: 128, Neg. LLF: 143.6032832419323
Iteration: 11, Func. Count: 140, Neg. LLF: 143.60025445217522
Iteration: 12, Func. Count: 152, Neg. LLF: 143.59775492904143
Iteration: 13, Func. Count: 164, Neg. LLF: 143.5938739470073
Iteration: 14, Func. Count: 176, Neg. LLF: 143.5930234152262
Iteration: 15, Func. Count: 188, Neg. LLF: 143.59294826321647
Iteration: 16, Func. Count: 200, Neg. LLF: 143.59294265650493
Iteration: 17, Func. Count: 211, Neg. LLF: 143.5929426299424
Optimization terminated successfully (Exit mode 0)
Current function value: 143.59294265650493
Iterations: 17
Function evaluations: 211
Gradient evaluations: 17
Iteration: 1, Func. Count: 14, Neg. LLF: 148.80316973928282
Iteration: 2, Func. Count: 28, Neg. LLF: 145.84869978455234
Iteration: 3, Func. Count: 42, Neg. LLF: 186.05497317287814
Iteration: 4, Func. Count: 58, Neg. LLF: 165.86452627814154
Iteration: 5, Func. Count: 72, Neg. LLF: 144.24256563803215
Iteration: 6, Func. Count: 85, Neg. LLF: 144.4121986390577
Iteration: 7, Func. Count: 99, Neg. LLF: 144.92104140800888
Iteration: 8, Func. Count: 113, Neg. LLF: 143.8693061241332
Iteration: 9, Func. Count: 127, Neg. LLF: 143.66023402197695
Iteration: 10, Func. Count: 140, Neg. LLF: 143.64106568711696
Iteration: 11, Func. Count: 153, Neg. LLF: 143.60707917873123
Iteration: 12, Func. Count: 166, Neg. LLF: 143.59629597510406
Iteration: 13, Func. Count: 179, Neg. LLF: 143.59385621206138
Iteration: 14, Func. Count: 192, Neg. LLF: 143.59315626367632
Iteration: 15, Func. Count: 205, Neg. LLF: 143.5929561731457
Iteration: 16, Func. Count: 218, Neg. LLF: 143.59294293497584
Iteration: 17, Func. Count: 230, Neg. LLF: 143.59294292725903
Optimization terminated successfully (Exit mode 0)
Current function value: 143.59294293497584
Iterations: 17
Function evaluations: 230
Gradient evaluations: 17
Iteration: 1, Func. Count: 15, Neg. LLF: 148.74077556278857
Iteration: 2, Func. Count: 29, Neg. LLF: 145.89230270533972
Iteration: 3, Func. Count: 44, Neg. LLF: 192.0620987257067
Iteration: 4, Func. Count: 62, Neg. LLF: 173.14559872387179
Iteration: 5, Func. Count: 77, Neg. LLF: 172.0220222903214
Iteration: 6, Func. Count: 92, Neg. LLF: 144.24043805155003
Iteration: 7, Func. Count: 106, Neg. LLF: 144.00825248011841
Iteration: 8, Func. Count: 120, Neg. LLF: 144.134121967621
Iteration: 9, Func. Count: 135, Neg. LLF: 143.63300228292843
Iteration: 10, Func. Count: 149, Neg. LLF: 143.6134740121892
Iteration: 11, Func. Count: 163, Neg. LLF: 143.61159973598856
Iteration: 12, Func. Count: 177, Neg. LLF: 143.60619863432214
Iteration: 13, Func. Count: 191, Neg. LLF: 143.60027501520855
Iteration: 14, Func. Count: 205, Neg. LLF: 143.59503456091917
Iteration: 15, Func. Count: 219, Neg. LLF: 143.59333808249212
Iteration: 16, Func. Count: 233, Neg. LLF: 143.59298524644117
Iteration: 17, Func. Count: 247, Neg. LLF: 143.59295053616407
Iteration: 18, Func. Count: 261, Neg. LLF: 143.59294377514507
Iteration: 19, Func. Count: 275, Neg. LLF: 143.59294269942077
Iteration: 20, Func. Count: 288, Neg. LLF: 143.59294280970948
Optimization terminated successfully (Exit mode 0)
Current function value: 143.59294269942077
Iterations: 20
Function evaluations: 288
Gradient evaluations: 20
Iteration: 1, Func. Count: 8, Neg. LLF: 146.15902915221537
Iteration: 2, Func. Count: 15, Neg. LLF: 146.34490081388864
Iteration: 3, Func. Count: 24, Neg. LLF: 156.87952313067527
Iteration: 4, Func. Count: 34, Neg. LLF: 158.40171569169433
Iteration: 5, Func. Count: 42, Neg. LLF: 146.02876933065005
Iteration: 6, Func. Count: 50, Neg. LLF: 145.0593921928557
Iteration: 7, Func. Count: 57, Neg. LLF: 144.86078499921268
Iteration: 8, Func. Count: 64, Neg. LLF: 144.66484563448716
Iteration: 9, Func. Count: 71, Neg. LLF: 144.62870208299742
Iteration: 10, Func. Count: 78, Neg. LLF: 144.61008295914553
Iteration: 11, Func. Count: 85, Neg. LLF: 144.60665831573564
Iteration: 12, Func. Count: 92, Neg. LLF: 144.60561118118164
Iteration: 13, Func. Count: 99, Neg. LLF: 144.60505543355958
Iteration: 14, Func. Count: 106, Neg. LLF: 144.60461328113573
Iteration: 15, Func. Count: 113, Neg. LLF: 144.60449037154353
Iteration: 16, Func. Count: 120, Neg. LLF: 144.6044733495384
Iteration: 17, Func. Count: 127, Neg. LLF: 144.60447017300484
Iteration: 18, Func. Count: 133, Neg. LLF: 144.60447017300274
Optimization terminated successfully (Exit mode 0)
Current function value: 144.60447017300484
Iterations: 18
Function evaluations: 133
Gradient evaluations: 18
Iteration: 1, Func. Count: 9, Neg. LLF: 146.37924188154847
Iteration: 2, Func. Count: 17, Neg. LLF: 145.36791565426913
Iteration: 3, Func. Count: 25, Neg. LLF: 158.83058142703982
Iteration: 4, Func. Count: 35, Neg. LLF: 146.61975568612533
Iteration: 5, Func. Count: 44, Neg. LLF: 144.72112022465325
Iteration: 6, Func. Count: 52, Neg. LLF: 149.95791937925566
Iteration: 7, Func. Count: 61, Neg. LLF: 144.6737508401478
Iteration: 8, Func. Count: 69, Neg. LLF: 144.64071434539358
Iteration: 9, Func. Count: 77, Neg. LLF: 144.62601303307721
Iteration: 10, Func. Count: 85, Neg. LLF: 144.61860704790277
Iteration: 11, Func. Count: 93, Neg. LLF: 144.61365885997517
Iteration: 12, Func. Count: 101, Neg. LLF: 144.60990598711044
Iteration: 13, Func. Count: 109, Neg. LLF: 144.6059416975838
Iteration: 14, Func. Count: 117, Neg. LLF: 144.6056746354008
Iteration: 15, Func. Count: 125, Neg. LLF: 144.605417803519
Iteration: 16, Func. Count: 133, Neg. LLF: 144.60497071147745
Iteration: 17, Func. Count: 141, Neg. LLF: 144.60462720636698
Iteration: 18, Func. Count: 149, Neg. LLF: 144.60448983293662
Iteration: 19, Func. Count: 157, Neg. LLF: 144.60447023028922
Iteration: 20, Func. Count: 164, Neg. LLF: 144.60447036703184
Optimization terminated successfully (Exit mode 0)
Current function value: 144.60447023028922
Iterations: 20
Function evaluations: 164
Gradient evaluations: 20
Iteration: 1, Func. Count: 10, Neg. LLF: 146.3317279936064
Iteration: 2, Func. Count: 19, Neg. LLF: 145.19123136381586
Iteration: 3, Func. Count: 28, Neg. LLF: 160.14988006484305
Iteration: 4, Func. Count: 40, Neg. LLF: 157.94772096004127
Iteration: 5, Func. Count: 50, Neg. LLF: 144.70084711596235
Iteration: 6, Func. Count: 60, Neg. LLF: 144.63039791310703
Iteration: 7, Func. Count: 69, Neg. LLF: 144.62151000771607
Iteration: 8, Func. Count: 78, Neg. LLF: 144.6126715801455
Iteration: 9, Func. Count: 87, Neg. LLF: 144.61037383538965
Iteration: 10, Func. Count: 96, Neg. LLF: 144.60609461349287
Iteration: 11, Func. Count: 105, Neg. LLF: 144.60474049444232
Iteration: 12, Func. Count: 114, Neg. LLF: 144.6044889649212
Iteration: 13, Func. Count: 123, Neg. LLF: 144.60447196892466
Iteration: 14, Func. Count: 132, Neg. LLF: 144.60447124592466
Optimization terminated successfully (Exit mode 0)
Current function value: 144.60447124592466
Iterations: 14
Function evaluations: 132
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 146.27093877866454
Iteration: 2, Func. Count: 21, Neg. LLF: 145.16564926592267
Iteration: 3, Func. Count: 32, Neg. LLF: 157.6496377023344
Iteration: 4, Func. Count: 45, Neg. LLF: 159.97361495427853
Iteration: 5, Func. Count: 56, Neg. LLF: 144.70637789662533
Iteration: 6, Func. Count: 67, Neg. LLF: 144.61971027543032
Iteration: 7, Func. Count: 77, Neg. LLF: 144.6156022317014
Iteration: 8, Func. Count: 87, Neg. LLF: 144.60599472151387
Iteration: 9, Func. Count: 97, Neg. LLF: 144.60501488255375
Iteration: 10, Func. Count: 107, Neg. LLF: 144.60473992098198
Iteration: 11, Func. Count: 117, Neg. LLF: 144.6045475974407
Iteration: 12, Func. Count: 127, Neg. LLF: 144.60448186209234
Iteration: 13, Func. Count: 137, Neg. LLF: 144.6044712306312
Iteration: 14, Func. Count: 146, Neg. LLF: 144.60447138769587
Optimization terminated successfully (Exit mode 0)
Current function value: 144.6044712306312
Iterations: 14
Function evaluations: 146
Gradient evaluations: 14
Iteration: 1, Func. Count: 12, Neg. LLF: 146.23681836700197
Iteration: 2, Func. Count: 23, Neg. LLF: 145.14969388956894
Iteration: 3, Func. Count: 35, Neg. LLF: 157.53419802288153
Iteration: 4, Func. Count: 49, Neg. LLF: 159.58378208544505
Iteration: 5, Func. Count: 61, Neg. LLF: 144.66104586556781
Iteration: 6, Func. Count: 73, Neg. LLF: 144.6175786504278
Iteration: 7, Func. Count: 84, Neg. LLF: 144.6135329893944
Iteration: 8, Func. Count: 95, Neg. LLF: 144.606976423367
Iteration: 9, Func. Count: 106, Neg. LLF: 144.60564046471
Iteration: 10, Func. Count: 117, Neg. LLF: 144.60522409793924
Iteration: 11, Func. Count: 128, Neg. LLF: 144.6045019062148
Iteration: 12, Func. Count: 139, Neg. LLF: 144.60448208258018
Iteration: 13, Func. Count: 150, Neg. LLF: 144.60447983285022
Iteration: 14, Func. Count: 161, Neg. LLF: 144.60447809137932
Iteration: 15, Func. Count: 172, Neg. LLF: 144.60447390833556
Iteration: 16, Func. Count: 183, Neg. LLF: 144.60447117824515
Iteration: 17, Func. Count: 194, Neg. LLF: 144.60447021610125
Optimization terminated successfully (Exit mode 0)
Current function value: 144.60447021610125
Iterations: 17
Function evaluations: 194
Gradient evaluations: 17
Iteration: 1, Func. Count: 9, Neg. LLF: 146.6176650698009
Iteration: 2, Func. Count: 17, Neg. LLF: 147.25621271275412
Iteration: 3, Func. Count: 26, Neg. LLF: 147.41896789456985
Iteration: 4, Func. Count: 36, Neg. LLF: 162.11471943239633
Iteration: 5, Func. Count: 45, Neg. LLF: 151.0565876280754
Iteration: 6, Func. Count: 54, Neg. LLF: 145.02242928325938
Iteration: 7, Func. Count: 62, Neg. LLF: 144.86948695490946
Iteration: 8, Func. Count: 70, Neg. LLF: 144.72777264421347
Iteration: 9, Func. Count: 78, Neg. LLF: 144.47493599599446
Iteration: 10, Func. Count: 86, Neg. LLF: 144.1730191506926
Iteration: 11, Func. Count: 94, Neg. LLF: 144.13246487532595
Iteration: 12, Func. Count: 102, Neg. LLF: 144.1118540999958
Iteration: 13, Func. Count: 110, Neg. LLF: 144.10629192624398
Iteration: 14, Func. Count: 118, Neg. LLF: 144.10557555290276
Iteration: 15, Func. Count: 126, Neg. LLF: 144.10547189386105
Iteration: 16, Func. Count: 134, Neg. LLF: 144.10544409160894
Iteration: 17, Func. Count: 141, Neg. LLF: 144.105444076914
Optimization terminated successfully (Exit mode 0)
Current function value: 144.10544409160894
Iterations: 17
Function evaluations: 141
Gradient evaluations: 17
Iteration: 1, Func. Count: 10, Neg. LLF: 146.36750363944412
Iteration: 2, Func. Count: 19, Neg. LLF: 145.34748120002712
Iteration: 3, Func. Count: 28, Neg. LLF: 158.79043070860587
Iteration: 4, Func. Count: 39, Neg. LLF: 147.55830220355432
Iteration: 5, Func. Count: 49, Neg. LLF: 144.6695505656675
Iteration: 6, Func. Count: 59, Neg. LLF: 144.37026722401825
Iteration: 7, Func. Count: 68, Neg. LLF: 145.10918875240205
Iteration: 8, Func. Count: 78, Neg. LLF: 144.28498842132416
Iteration: 9, Func. Count: 88, Neg. LLF: 144.15887708083628
Iteration: 10, Func. Count: 97, Neg. LLF: 144.12411937476242
Iteration: 11, Func. Count: 106, Neg. LLF: 144.1120447162407
Iteration: 12, Func. Count: 115, Neg. LLF: 144.10762862481744
Iteration: 13, Func. Count: 124, Neg. LLF: 144.10622979145302
Iteration: 14, Func. Count: 133, Neg. LLF: 144.10556740074193
Iteration: 15, Func. Count: 142, Neg. LLF: 144.1054513800133
Iteration: 16, Func. Count: 151, Neg. LLF: 144.10544405171845
Iteration: 17, Func. Count: 159, Neg. LLF: 144.10544411238803
Optimization terminated successfully (Exit mode 0)
Current function value: 144.10544405171845
Iterations: 17
Function evaluations: 159
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 146.31987296939073
Iteration: 2, Func. Count: 21, Neg. LLF: 145.18409634429204
Iteration: 3, Func. Count: 31, Neg. LLF: 159.99265449046464
Iteration: 4, Func. Count: 44, Neg. LLF: 158.08578166531774
Iteration: 5, Func. Count: 55, Neg. LLF: 144.5168421083887
Iteration: 6, Func. Count: 65, Neg. LLF: 144.42233376263783
Iteration: 7, Func. Count: 75, Neg. LLF: 144.30032348141984
Iteration: 8, Func. Count: 85, Neg. LLF: 144.23179940081383
Iteration: 9, Func. Count: 95, Neg. LLF: 144.21820456687553
Iteration: 10, Func. Count: 106, Neg. LLF: 144.16578474860216
Iteration: 11, Func. Count: 116, Neg. LLF: 144.11404116902028
Iteration: 12, Func. Count: 126, Neg. LLF: 144.10802297750374
Iteration: 13, Func. Count: 136, Neg. LLF: 144.10643389992694
Iteration: 14, Func. Count: 146, Neg. LLF: 144.10579940491388
Iteration: 15, Func. Count: 156, Neg. LLF: 144.10546270899678
Iteration: 16, Func. Count: 166, Neg. LLF: 144.10544454848252
Iteration: 17, Func. Count: 176, Neg. LLF: 144.1054440027869
Optimization terminated successfully (Exit mode 0)
Current function value: 144.1054440027869
Iterations: 17
Function evaluations: 176
Gradient evaluations: 17
Iteration: 1, Func. Count: 12, Neg. LLF: 146.25968960679387
Iteration: 2, Func. Count: 23, Neg. LLF: 145.1604674479269
Iteration: 3, Func. Count: 35, Neg. LLF: 157.46658050593624
Iteration: 4, Func. Count: 49, Neg. LLF: 160.0817032817562
Iteration: 5, Func. Count: 61, Neg. LLF: 144.37836446887712
Iteration: 6, Func. Count: 72, Neg. LLF: 144.5069788910198
Iteration: 7, Func. Count: 84, Neg. LLF: 144.25056626502348
Iteration: 8, Func. Count: 95, Neg. LLF: 144.2017624456268
Iteration: 9, Func. Count: 106, Neg. LLF: 144.1348138215095
Iteration: 10, Func. Count: 117, Neg. LLF: 144.12303033625568
Iteration: 11, Func. Count: 128, Neg. LLF: 144.10674910591672
Iteration: 12, Func. Count: 139, Neg. LLF: 144.10549385647764
Iteration: 13, Func. Count: 150, Neg. LLF: 144.10544731866364
Iteration: 14, Func. Count: 161, Neg. LLF: 144.10544520492914
Iteration: 15, Func. Count: 171, Neg. LLF: 144.1054453065241
Optimization terminated successfully (Exit mode 0)
Current function value: 144.10544520492914
Iterations: 15
Function evaluations: 171
Gradient evaluations: 15
Iteration: 1, Func. Count: 13, Neg. LLF: 146.22334328985775
Iteration: 2, Func. Count: 25, Neg. LLF: 145.14537357391137
Iteration: 3, Func. Count: 38, Neg. LLF: 157.1506259241982
Iteration: 4, Func. Count: 53, Neg. LLF: 159.59324017923691
Iteration: 5, Func. Count: 66, Neg. LLF: 144.39866333566232
Iteration: 6, Func. Count: 78, Neg. LLF: 144.52771842195912
Iteration: 7, Func. Count: 91, Neg. LLF: 144.26505329766044
Iteration: 8, Func. Count: 103, Neg. LLF: 144.19871515849312
Iteration: 9, Func. Count: 115, Neg. LLF: 144.14528317828524
Iteration: 10, Func. Count: 127, Neg. LLF: 144.12528156329552
Iteration: 11, Func. Count: 139, Neg. LLF: 144.11265091690728
Iteration: 12, Func. Count: 151, Neg. LLF: 144.10553966559692
Iteration: 13, Func. Count: 163, Neg. LLF: 144.10544875038718
Iteration: 14, Func. Count: 175, Neg. LLF: 144.10544606770225
Iteration: 15, Func. Count: 187, Neg. LLF: 144.10544495464688
Iteration: 16, Func. Count: 199, Neg. LLF: 144.10544399378887
Optimization terminated successfully (Exit mode 0)
Current function value: 144.10544399378887
Iterations: 16
Function evaluations: 199
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 146.14789666862382
Iteration: 2, Func. Count: 19, Neg. LLF: 146.32486071233393
Iteration: 3, Func. Count: 30, Neg. LLF: 161.0737733845058
Iteration: 4, Func. Count: 43, Neg. LLF: 156.520110981528
Iteration: 5, Func. Count: 53, Neg. LLF: 145.59052587139277
Iteration: 6, Func. Count: 63, Neg. LLF: 144.79307413412846
Iteration: 7, Func. Count: 72, Neg. LLF: 144.69202316939624
Iteration: 8, Func. Count: 82, Neg. LLF: 149.71865269703463
Iteration: 9, Func. Count: 92, Neg. LLF: 153.132787437982
Iteration: 10, Func. Count: 102, Neg. LLF: 147.75765976245336
Iteration: 11, Func. Count: 112, Neg. LLF: 143.10953804743573
Iteration: 12, Func. Count: 121, Neg. LLF: 142.93386187441214
Iteration: 13, Func. Count: 130, Neg. LLF: 144.84378413515714
Iteration: 14, Func. Count: 141, Neg. LLF: 143.30630071347645
Iteration: 15, Func. Count: 151, Neg. LLF: 142.8928443603937
Iteration: 16, Func. Count: 160, Neg. LLF: 142.88888195486982
Iteration: 17, Func. Count: 169, Neg. LLF: 142.88828135494106
Iteration: 18, Func. Count: 178, Neg. LLF: 142.8881867983632
Iteration: 19, Func. Count: 187, Neg. LLF: 142.8881843544545
Iteration: 20, Func. Count: 195, Neg. LLF: 142.88818438417636
Optimization terminated successfully (Exit mode 0)
Current function value: 142.8881843544545
Iterations: 20
Function evaluations: 195
Gradient evaluations: 20
Iteration: 1, Func. Count: 11, Neg. LLF: 144.9868348138524
Iteration: 2, Func. Count: 21, Neg. LLF: 145.12117865497638
Iteration: 3, Func. Count: 33, Neg. LLF: 189.81142620457285
Iteration: 4, Func. Count: 47, Neg. LLF: 149.98880467583905
Iteration: 5, Func. Count: 58, Neg. LLF: 143.90203906472115
Iteration: 6, Func. Count: 69, Neg. LLF: 143.38897272718242
Iteration: 7, Func. Count: 79, Neg. LLF: 144.9392870618107
Iteration: 8, Func. Count: 90, Neg. LLF: 146.79181762353312
Iteration: 9, Func. Count: 101, Neg. LLF: 148.56834776878503
Iteration: 10, Func. Count: 113, Neg. LLF: 152.72168588740087
Iteration: 11, Func. Count: 124, Neg. LLF: 142.91917196228303
Iteration: 12, Func. Count: 134, Neg. LLF: 142.894462802283
Iteration: 13, Func. Count: 144, Neg. LLF: 142.8929439558681
Iteration: 14, Func. Count: 154, Neg. LLF: 142.88971603212778
Iteration: 15, Func. Count: 164, Neg. LLF: 142.88885180997127
Iteration: 16, Func. Count: 174, Neg. LLF: 142.88861980177805
Iteration: 17, Func. Count: 184, Neg. LLF: 142.88819597945783
Iteration: 18, Func. Count: 194, Neg. LLF: 142.8881853698821
Iteration: 19, Func. Count: 204, Neg. LLF: 142.8881841580683
Iteration: 20, Func. Count: 213, Neg. LLF: 142.88818423926259
Optimization terminated successfully (Exit mode 0)
Current function value: 142.8881841580683
Iterations: 20
Function evaluations: 213
Gradient evaluations: 20
Iteration: 1, Func. Count: 12, Neg. LLF: 144.88134907134733
Iteration: 2, Func. Count: 23, Neg. LLF: 145.11703957286633
Iteration: 3, Func. Count: 36, Neg. LLF: 182.04877234984338
Iteration: 4, Func. Count: 51, Neg. LLF: 147.52904282952971
Iteration: 5, Func. Count: 63, Neg. LLF: 143.6340363889377
Iteration: 6, Func. Count: 75, Neg. LLF: 143.38307932787703
Iteration: 7, Func. Count: 86, Neg. LLF: 144.20828533094686
Iteration: 8, Func. Count: 98, Neg. LLF: 147.22779335840534
Iteration: 9, Func. Count: 111, Neg. LLF: 150.10182180734387
Iteration: 10, Func. Count: 123, Neg. LLF: 142.93087499038563
Iteration: 11, Func. Count: 134, Neg. LLF: 142.90878923789325
Iteration: 12, Func. Count: 145, Neg. LLF: 142.8943085125932
Iteration: 13, Func. Count: 156, Neg. LLF: 142.88849481772138
Iteration: 14, Func. Count: 167, Neg. LLF: 142.88833168995419
Iteration: 15, Func. Count: 178, Neg. LLF: 142.88825915667985
Iteration: 16, Func. Count: 189, Neg. LLF: 142.88818726271697
Iteration: 17, Func. Count: 200, Neg. LLF: 142.88818456798037
Iteration: 18, Func. Count: 210, Neg. LLF: 142.8881845157683
Optimization terminated successfully (Exit mode 0)
Current function value: 142.88818456798037
Iterations: 18
Function evaluations: 210
Gradient evaluations: 18
Iteration: 1, Func. Count: 13, Neg. LLF: 146.26491560555422
Iteration: 2, Func. Count: 25, Neg. LLF: 144.2913451149219
Iteration: 3, Func. Count: 37, Neg. LLF: 159.71008632352235
Iteration: 4, Func. Count: 53, Neg. LLF: 152.03294072010777
Iteration: 5, Func. Count: 66, Neg. LLF: 143.6090198021555
Iteration: 6, Func. Count: 78, Neg. LLF: 145.06963687925156
Iteration: 7, Func. Count: 91, Neg. LLF: 143.65618828692072
Iteration: 8, Func. Count: 104, Neg. LLF: 143.21613936012926
Iteration: 9, Func. Count: 116, Neg. LLF: 143.0332698679507
Iteration: 10, Func. Count: 128, Neg. LLF: 144.21393661432046
Iteration: 11, Func. Count: 141, Neg. LLF: 149.62721461707054
Iteration: 12, Func. Count: 154, Neg. LLF: 143.04598804963635
Iteration: 13, Func. Count: 167, Neg. LLF: 145.35917794810646
Iteration: 14, Func. Count: 180, Neg. LLF: 142.88955672444177
Iteration: 15, Func. Count: 192, Neg. LLF: 142.88856864693182
Iteration: 16, Func. Count: 204, Neg. LLF: 142.8883488877935
Iteration: 17, Func. Count: 216, Neg. LLF: 142.88821951699882
Iteration: 18, Func. Count: 228, Neg. LLF: 142.88818984069292
Iteration: 19, Func. Count: 240, Neg. LLF: 142.88818483802825
Iteration: 20, Func. Count: 251, Neg. LLF: 142.8881849106891
Optimization terminated successfully (Exit mode 0)
Current function value: 142.88818483802825
Iterations: 20
Function evaluations: 251
Gradient evaluations: 20
Iteration: 1, Func. Count: 14, Neg. LLF: 146.23120286295983
Iteration: 2, Func. Count: 27, Neg. LLF: 144.70100159567866
Iteration: 3, Func. Count: 40, Neg. LLF: 164.0116903661081
Iteration: 4, Func. Count: 57, Neg. LLF: 149.78041948082597
Iteration: 5, Func. Count: 71, Neg. LLF: 143.78978329016047
Iteration: 6, Func. Count: 84, Neg. LLF: 144.66878518254632
Iteration: 7, Func. Count: 98, Neg. LLF: 144.85405715802483
Iteration: 8, Func. Count: 112, Neg. LLF: 144.90248503116655
Iteration: 9, Func. Count: 126, Neg. LLF: 143.5260032735823
Iteration: 10, Func. Count: 140, Neg. LLF: 143.10481801918363
Iteration: 11, Func. Count: 153, Neg. LLF: 145.20025040397556
Iteration: 12, Func. Count: 168, Neg. LLF: 164.4367781078595
Iteration: 13, Func. Count: 182, Neg. LLF: 142.91279538906986
Iteration: 14, Func. Count: 195, Neg. LLF: 144.47096048236884
Iteration: 15, Func. Count: 209, Neg. LLF: 142.8947997445618
Iteration: 16, Func. Count: 222, Neg. LLF: 142.88882600707666
Iteration: 17, Func. Count: 235, Neg. LLF: 142.88838245487318
Iteration: 18, Func. Count: 248, Neg. LLF: 142.88819208356614
Iteration: 19, Func. Count: 261, Neg. LLF: 142.88818484079204
Iteration: 20, Func. Count: 274, Neg. LLF: 142.88818415895702
Optimization terminated successfully (Exit mode 0)
Current function value: 142.88818415895702
Iterations: 20
Function evaluations: 274
Gradient evaluations: 20
Iteration: 1, Func. Count: 11, Neg. LLF: 146.0867541209587
Iteration: 2, Func. Count: 21, Neg. LLF: 146.29496825614711
Iteration: 3, Func. Count: 34, Neg. LLF: 161.4029561739715
Iteration: 4, Func. Count: 48, Neg. LLF: 154.9781365822468
Iteration: 5, Func. Count: 59, Neg. LLF: 145.541258494016
Iteration: 6, Func. Count: 70, Neg. LLF: 145.37016370091703
Iteration: 7, Func. Count: 81, Neg. LLF: 144.86153831562643
Iteration: 8, Func. Count: 91, Neg. LLF: 144.1159876521197
Iteration: 9, Func. Count: 101, Neg. LLF: 158.70372238823018
Iteration: 10, Func. Count: 112, Neg. LLF: 150.21401416660945
Iteration: 11, Func. Count: 123, Neg. LLF: 151.41252817608222
Iteration: 12, Func. Count: 134, Neg. LLF: 150.89486438046367
Iteration: 13, Func. Count: 145, Neg. LLF: 143.12366196609977
Iteration: 14, Func. Count: 156, Neg. LLF: 143.03654716632013
Iteration: 15, Func. Count: 167, Neg. LLF: 142.81796085946192
Iteration: 16, Func. Count: 178, Neg. LLF: 142.69785431070713
Iteration: 17, Func. Count: 188, Neg. LLF: 142.69590952646564
Iteration: 18, Func. Count: 198, Neg. LLF: 142.6943722047266
Iteration: 19, Func. Count: 208, Neg. LLF: 142.69431336491044
Iteration: 20, Func. Count: 218, Neg. LLF: 142.69429192588805
Iteration: 21, Func. Count: 228, Neg. LLF: 142.69428775061928
Iteration: 22, Func. Count: 237, Neg. LLF: 142.69428772113488
Optimization terminated successfully (Exit mode 0)
Current function value: 142.69428775061928
Iterations: 22
Function evaluations: 237
Gradient evaluations: 22
Iteration: 1, Func. Count: 12, Neg. LLF: 148.01358968262
Iteration: 2, Func. Count: 24, Neg. LLF: 147.20267615029542
Iteration: 3, Func. Count: 36, Neg. LLF: 194.25402360192018
Iteration: 4, Func. Count: 50, Neg. LLF: 146.0079740621337
Iteration: 5, Func. Count: 62, Neg. LLF: 145.65579571672313
Iteration: 6, Func. Count: 74, Neg. LLF: 143.8247366254286
Iteration: 7, Func. Count: 85, Neg. LLF: 143.8311626185983
Iteration: 8, Func. Count: 97, Neg. LLF: 143.63598298108045
Iteration: 9, Func. Count: 108, Neg. LLF: 143.62259365215218
Iteration: 10, Func. Count: 119, Neg. LLF: 143.61538920319225
Iteration: 11, Func. Count: 130, Neg. LLF: 143.60038211001222
Iteration: 12, Func. Count: 141, Neg. LLF: 143.59404927583694
Iteration: 13, Func. Count: 152, Neg. LLF: 143.5930147900807
Iteration: 14, Func. Count: 163, Neg. LLF: 143.59294992789796
Iteration: 15, Func. Count: 174, Neg. LLF: 143.59294277073346
Iteration: 16, Func. Count: 184, Neg. LLF: 143.59294270030054
Optimization terminated successfully (Exit mode 0)
Current function value: 143.59294277073346
Iterations: 16
Function evaluations: 184
Gradient evaluations: 16
Iteration: 1, Func. Count: 13, Neg. LLF: 145.02285759766252
Iteration: 2, Func. Count: 25, Neg. LLF: 144.73696325635467
Iteration: 3, Func. Count: 39, Neg. LLF: 184.08911490429136
Iteration: 4, Func. Count: 55, Neg. LLF: 148.13016935994827
Iteration: 5, Func. Count: 68, Neg. LLF: 143.45055992620394
Iteration: 6, Func. Count: 80, Neg. LLF: 143.18540054372204
Iteration: 7, Func. Count: 92, Neg. LLF: 144.23611239938606
Iteration: 8, Func. Count: 105, Neg. LLF: 146.00311092541412
Iteration: 9, Func. Count: 118, Neg. LLF: 160.74887560390854
Iteration: 10, Func. Count: 131, Neg. LLF: 143.35340711543626
Iteration: 11, Func. Count: 144, Neg. LLF: 143.70352740009469
Iteration: 12, Func. Count: 157, Neg. LLF: 142.6985934630836
Iteration: 13, Func. Count: 169, Neg. LLF: 142.69872081864418
Iteration: 14, Func. Count: 182, Neg. LLF: 142.6953665754184
Iteration: 15, Func. Count: 194, Neg. LLF: 142.69460125273548
Iteration: 16, Func. Count: 206, Neg. LLF: 142.69454295714013
Iteration: 17, Func. Count: 218, Neg. LLF: 142.6943765170689
Iteration: 18, Func. Count: 230, Neg. LLF: 142.69430016912037
Iteration: 19, Func. Count: 242, Neg. LLF: 142.69428831525946
Iteration: 20, Func. Count: 254, Neg. LLF: 142.69428774005343
Optimization terminated successfully (Exit mode 0)
Current function value: 142.69428774005343
Iterations: 20
Function evaluations: 254
Gradient evaluations: 20
Iteration: 1, Func. Count: 14, Neg. LLF: 146.27086230426485
Iteration: 2, Func. Count: 27, Neg. LLF: 144.26007638362
Iteration: 3, Func. Count: 40, Neg. LLF: 169.66328441682265
Iteration: 4, Func. Count: 57, Neg. LLF: 152.65243577154052
Iteration: 5, Func. Count: 71, Neg. LLF: 143.76650131752746
Iteration: 6, Func. Count: 85, Neg. LLF: 143.3268754882449
Iteration: 7, Func. Count: 98, Neg. LLF: 143.09912965733128
Iteration: 8, Func. Count: 111, Neg. LLF: 142.90323483265243
Iteration: 9, Func. Count: 124, Neg. LLF: 144.72296288202185
Iteration: 10, Func. Count: 138, Neg. LLF: 147.08695175893106
Iteration: 11, Func. Count: 153, Neg. LLF: 147.3837321196041
Iteration: 12, Func. Count: 167, Neg. LLF: 142.6989184271834
Iteration: 13, Func. Count: 180, Neg. LLF: 142.69492459223633
Iteration: 14, Func. Count: 193, Neg. LLF: 142.6946759381378
Iteration: 15, Func. Count: 206, Neg. LLF: 142.69431693393418
Iteration: 16, Func. Count: 219, Neg. LLF: 142.69429190057704
Iteration: 17, Func. Count: 232, Neg. LLF: 142.69428824963472
Iteration: 18, Func. Count: 245, Neg. LLF: 142.69428774328833
Optimization terminated successfully (Exit mode 0)
Current function value: 142.69428774328833
Iterations: 18
Function evaluations: 245
Gradient evaluations: 18
Iteration: 1, Func. Count: 15, Neg. LLF: 146.23479957033783
Iteration: 2, Func. Count: 29, Neg. LLF: 145.60844579690726
Iteration: 3, Func. Count: 44, Neg. LLF: 173.51503067526457
Iteration: 4, Func. Count: 62, Neg. LLF: 155.43439839446017
Iteration: 5, Func. Count: 77, Neg. LLF: 146.30228575333828
Iteration: 6, Func. Count: 92, Neg. LLF: 143.67528353689644
Iteration: 7, Func. Count: 106, Neg. LLF: 143.19114272452398
Iteration: 8, Func. Count: 120, Neg. LLF: 142.9160338602121
Iteration: 9, Func. Count: 134, Neg. LLF: 177.94951041838644
Iteration: 10, Func. Count: 150, Neg. LLF: 143.47271168584584
Iteration: 11, Func. Count: 166, Neg. LLF: 142.75124572603136
Iteration: 12, Func. Count: 180, Neg. LLF: 142.71129178143315
Iteration: 13, Func. Count: 194, Neg. LLF: 142.6989596390086
Iteration: 14, Func. Count: 208, Neg. LLF: 142.69523909854388
Iteration: 15, Func. Count: 222, Neg. LLF: 142.69458969694296
Iteration: 16, Func. Count: 236, Neg. LLF: 142.69438325980545
Iteration: 17, Func. Count: 250, Neg. LLF: 142.69429337773892
Iteration: 18, Func. Count: 264, Neg. LLF: 142.6942882164741
Iteration: 19, Func. Count: 277, Neg. LLF: 142.69428819666325
Optimization terminated successfully (Exit mode 0)
Current function value: 142.6942882164741
Iterations: 19
Function evaluations: 277
Gradient evaluations: 19
Iteration: 1, Func. Count: 12, Neg. LLF: 145.56431696153464
Iteration: 2, Func. Count: 23, Neg. LLF: 150.26828786743468
Iteration: 3, Func. Count: 35, Neg. LLF: 158.26325832051455
Iteration: 4, Func. Count: 49, Neg. LLF: 143.31761559583444
Iteration: 5, Func. Count: 61, Neg. LLF: 146.3364710255988
Iteration: 6, Func. Count: 73, Neg. LLF: 141.46831009888172
Iteration: 7, Func. Count: 84, Neg. LLF: 140.88660452122326
Iteration: 8, Func. Count: 95, Neg. LLF: 145.69994173796738
Iteration: 9, Func. Count: 107, Neg. LLF: 154.7478693410818
Iteration: 10, Func. Count: 119, Neg. LLF: 143.963061575849
Iteration: 11, Func. Count: 131, Neg. LLF: 139.88375120013922
Iteration: 12, Func. Count: 143, Neg. LLF: 139.65172784515548
Iteration: 13, Func. Count: 154, Neg. LLF: 139.6173018188421
Iteration: 14, Func. Count: 165, Neg. LLF: 139.6000881514015
Iteration: 15, Func. Count: 176, Neg. LLF: 139.59419974324348
Iteration: 16, Func. Count: 187, Neg. LLF: 139.5926069131472
Iteration: 17, Func. Count: 198, Neg. LLF: 139.5925799808343
Iteration: 18, Func. Count: 208, Neg. LLF: 139.59257974454812
Optimization terminated successfully (Exit mode 0)
Current function value: 139.5925799808343
Iterations: 18
Function evaluations: 208
Gradient evaluations: 18
Iteration: 1, Func. Count: 13, Neg. LLF: 150.44199181695396
Iteration: 2, Func. Count: 26, Neg. LLF: 143.65829752043706
Iteration: 3, Func. Count: 38, Neg. LLF: 157.5313878730447
Iteration: 4, Func. Count: 53, Neg. LLF: 175.60001464949553
Iteration: 5, Func. Count: 66, Neg. LLF: 141.55854186341372
Iteration: 6, Func. Count: 78, Neg. LLF: 141.61746187951624
Iteration: 7, Func. Count: 91, Neg. LLF: 143.93446196578378
Iteration: 8, Func. Count: 104, Neg. LLF: 140.16860568660465
Iteration: 9, Func. Count: 116, Neg. LLF: 139.81905676124637
Iteration: 10, Func. Count: 128, Neg. LLF: 139.72381508528966
Iteration: 11, Func. Count: 140, Neg. LLF: 139.6515725076855
Iteration: 12, Func. Count: 152, Neg. LLF: 139.60927976669245
Iteration: 13, Func. Count: 164, Neg. LLF: 139.59898702770465
Iteration: 14, Func. Count: 176, Neg. LLF: 139.5965983639264
Iteration: 15, Func. Count: 188, Neg. LLF: 139.59310028802497
Iteration: 16, Func. Count: 200, Neg. LLF: 139.59265170377986
Iteration: 17, Func. Count: 212, Neg. LLF: 139.59258988515188
Iteration: 18, Func. Count: 224, Neg. LLF: 139.59258028404471
Iteration: 19, Func. Count: 235, Neg. LLF: 139.59258038859144
Optimization terminated successfully (Exit mode 0)
Current function value: 139.59258028404471
Iterations: 19
Function evaluations: 235
Gradient evaluations: 19
Iteration: 1, Func. Count: 14, Neg. LLF: 144.58267811513306
Iteration: 2, Func. Count: 27, Neg. LLF: 141.54209353269206
Iteration: 3, Func. Count: 41, Neg. LLF: 197.8431960075173
Iteration: 4, Func. Count: 57, Neg. LLF: 274.2131495066772
Iteration: 5, Func. Count: 71, Neg. LLF: 140.44892308378857
Iteration: 6, Func. Count: 84, Neg. LLF: 140.40143224232335
Iteration: 7, Func. Count: 97, Neg. LLF: 140.69134397350723
Iteration: 8, Func. Count: 111, Neg. LLF: 141.5587931059431
Iteration: 9, Func. Count: 126, Neg. LLF: 140.03541420744696
Iteration: 10, Func. Count: 139, Neg. LLF: 140.2275707457038
Iteration: 11, Func. Count: 153, Neg. LLF: 139.80615550659718
Iteration: 12, Func. Count: 166, Neg. LLF: 139.77942543417797
Iteration: 13, Func. Count: 179, Neg. LLF: 139.71397903238298
Iteration: 14, Func. Count: 192, Neg. LLF: 139.64002906516885
Iteration: 15, Func. Count: 205, Neg. LLF: 139.60416306397525
Iteration: 16, Func. Count: 218, Neg. LLF: 139.59752111556293
Iteration: 17, Func. Count: 231, Neg. LLF: 139.5966084586058
Iteration: 18, Func. Count: 244, Neg. LLF: 139.5941610353908
Iteration: 19, Func. Count: 257, Neg. LLF: 139.59308589399208
Iteration: 20, Func. Count: 270, Neg. LLF: 139.59264522216003
Iteration: 21, Func. Count: 283, Neg. LLF: 139.59258173721318
Iteration: 22, Func. Count: 296, Neg. LLF: 139.59257977841096
Iteration: 23, Func. Count: 308, Neg. LLF: 139.59257984753185
Optimization terminated successfully (Exit mode 0)
Current function value: 139.59257977841096
Iterations: 23
Function evaluations: 308
Gradient evaluations: 23
Iteration: 1, Func. Count: 15, Neg. LLF: 146.46926743189567
Iteration: 2, Func. Count: 29, Neg. LLF: 142.4001564004789
Iteration: 3, Func. Count: 43, Neg. LLF: 194.2875890827965
Iteration: 4, Func. Count: 60, Neg. LLF: 247.28219499379128
Iteration: 5, Func. Count: 75, Neg. LLF: 140.60082676753152
Iteration: 6, Func. Count: 89, Neg. LLF: 140.687936819291
Iteration: 7, Func. Count: 104, Neg. LLF: 140.0317734102303
Iteration: 8, Func. Count: 118, Neg. LLF: 140.07512272602648
Iteration: 9, Func. Count: 133, Neg. LLF: 139.71112665010207
Iteration: 10, Func. Count: 147, Neg. LLF: 139.67603611286486
Iteration: 11, Func. Count: 161, Neg. LLF: 139.70290872904206
Iteration: 12, Func. Count: 176, Neg. LLF: 139.62826226328437
Iteration: 13, Func. Count: 190, Neg. LLF: 139.61554689146303
Iteration: 14, Func. Count: 204, Neg. LLF: 139.61201088564778
Iteration: 15, Func. Count: 218, Neg. LLF: 139.60876700396818
Iteration: 16, Func. Count: 232, Neg. LLF: 139.6034063319898
Iteration: 17, Func. Count: 246, Neg. LLF: 139.59891690526268
Iteration: 18, Func. Count: 260, Neg. LLF: 139.5947666188025
Iteration: 19, Func. Count: 274, Neg. LLF: 139.59284155802166
Iteration: 20, Func. Count: 288, Neg. LLF: 139.59259240437913
Iteration: 21, Func. Count: 302, Neg. LLF: 139.5925805929191
Iteration: 22, Func. Count: 316, Neg. LLF: 139.5925798022704
Optimization terminated successfully (Exit mode 0)
Current function value: 139.5925798022704
Iterations: 22
Function evaluations: 316
Gradient evaluations: 22
Iteration: 1, Func. Count: 16, Neg. LLF: 146.10691496348372
Iteration: 2, Func. Count: 31, Neg. LLF: 142.137817746808
Iteration: 3, Func. Count: 47, Neg. LLF: 194.95236911375602
Iteration: 4, Func. Count: 65, Neg. LLF: 265.1175412180628
Iteration: 5, Func. Count: 82, Neg. LLF: 140.51787451473209
Iteration: 6, Func. Count: 97, Neg. LLF: 140.71454636848222
Iteration: 7, Func. Count: 113, Neg. LLF: 140.55590317553708
Iteration: 8, Func. Count: 129, Neg. LLF: 140.09048316025886
Iteration: 9, Func. Count: 144, Neg. LLF: 139.8700432694147
Iteration: 10, Func. Count: 159, Neg. LLF: 139.79053211449747
Iteration: 11, Func. Count: 174, Neg. LLF: 139.75399918163706
Iteration: 12, Func. Count: 189, Neg. LLF: 139.7135017533992
Iteration: 13, Func. Count: 204, Neg. LLF: 139.67481079984088
Iteration: 14, Func. Count: 219, Neg. LLF: 139.64573592692827
Iteration: 15, Func. Count: 234, Neg. LLF: 139.63524120184596
Iteration: 16, Func. Count: 249, Neg. LLF: 139.62750743414614
Iteration: 17, Func. Count: 264, Neg. LLF: 139.6095063766867
Iteration: 18, Func. Count: 279, Neg. LLF: 139.59620977139193
Iteration: 19, Func. Count: 294, Neg. LLF: 139.59285746414355
Iteration: 20, Func. Count: 309, Neg. LLF: 139.59261192893803
Iteration: 21, Func. Count: 324, Neg. LLF: 139.59258009483685
Iteration: 22, Func. Count: 338, Neg. LLF: 139.59258024088197
Optimization terminated successfully (Exit mode 0)
Current function value: 139.59258009483685
Iterations: 22
Function evaluations: 338
Gradient evaluations: 22
Iteration: 1, Func. Count: 12, Neg. LLF: 145.56431696153464
Iteration: 2, Func. Count: 23, Neg. LLF: 150.26828786743468
Iteration: 3, Func. Count: 35, Neg. LLF: 158.26325832051455
Iteration: 4, Func. Count: 49, Neg. LLF: 143.31761559583444
Iteration: 5, Func. Count: 61, Neg. LLF: 146.3364710255988
Iteration: 6, Func. Count: 73, Neg. LLF: 141.46831009888172
Iteration: 7, Func. Count: 84, Neg. LLF: 140.88660452122326
Iteration: 8, Func. Count: 95, Neg. LLF: 145.69994173796738
Iteration: 9, Func. Count: 107, Neg. LLF: 154.7478693410818
Iteration: 10, Func. Count: 119, Neg. LLF: 143.963061575849
Iteration: 11, Func. Count: 131, Neg. LLF: 139.88375120013922
Iteration: 12, Func. Count: 143, Neg. LLF: 139.65172784515548
Iteration: 13, Func. Count: 154, Neg. LLF: 139.6173018188421
Iteration: 14, Func. Count: 165, Neg. LLF: 139.6000881514015
Iteration: 15, Func. Count: 176, Neg. LLF: 139.59419974324348
Iteration: 16, Func. Count: 187, Neg. LLF: 139.5926069131472
Iteration: 17, Func. Count: 198, Neg. LLF: 139.5925799808343
Iteration: 18, Func. Count: 208, Neg. LLF: 139.59257974454812
Optimization terminated successfully (Exit mode 0)
Current function value: 139.5925799808343
Iterations: 18
Function evaluations: 208
Gradient evaluations: 18
Iteration: 1, Func. Count: 5, Neg. LLF: 153.96129798711783
Iteration: 2, Func. Count: 10, Neg. LLF: 155.38111647680572
Iteration: 3, Func. Count: 15, Neg. LLF: 146.18846999419355
Iteration: 4, Func. Count: 19, Neg. LLF: 146.08249946014163
Iteration: 5, Func. Count: 23, Neg. LLF: 146.0667173433203
Iteration: 6, Func. Count: 27, Neg. LLF: 146.065348596602
Iteration: 7, Func. Count: 31, Neg. LLF: 146.0650712309524
Iteration: 8, Func. Count: 35, Neg. LLF: 146.06469380978984
Iteration: 9, Func. Count: 39, Neg. LLF: 146.064555277951
Iteration: 10, Func. Count: 43, Neg. LLF: 146.06453263280292
Iteration: 11, Func. Count: 47, Neg. LLF: 146.06453168521065
Optimization terminated successfully (Exit mode 0)
Current function value: 146.06453168521065
Iterations: 11
Function evaluations: 47
Gradient evaluations: 11
Iteration: 1, Func. Count: 6, Neg. LLF: 170.08299540981105
Iteration: 2, Func. Count: 14, Neg. LLF: 157.3794690145611
Iteration: 3, Func. Count: 20, Neg. LLF: 145.0868098323058
Iteration: 4, Func. Count: 25, Neg. LLF: 143.80796306855922
Iteration: 5, Func. Count: 30, Neg. LLF: 143.74532910052224
Iteration: 6, Func. Count: 35, Neg. LLF: 143.68997807935412
Iteration: 7, Func. Count: 40, Neg. LLF: 143.6860437116665
Iteration: 8, Func. Count: 45, Neg. LLF: 143.682785062216
Iteration: 9, Func. Count: 50, Neg. LLF: 143.68272114106534
Iteration: 10, Func. Count: 55, Neg. LLF: 143.68272036543297
Optimization terminated successfully (Exit mode 0)
Current function value: 143.68272036543297
Iterations: 10
Function evaluations: 55
Gradient evaluations: 10
Iteration: 1, Func. Count: 7, Neg. LLF: 157.69098522614482
Iteration: 2, Func. Count: 14, Neg. LLF: 143.8040251037707
Iteration: 3, Func. Count: 20, Neg. LLF: 144.4042478221676
Iteration: 4, Func. Count: 27, Neg. LLF: 143.74753544418758
Iteration: 5, Func. Count: 33, Neg. LLF: 143.7472414085174
Iteration: 6, Func. Count: 39, Neg. LLF: 143.74711072767286
Iteration: 7, Func. Count: 45, Neg. LLF: 143.7465929202451
Iteration: 8, Func. Count: 51, Neg. LLF: 143.675403603998
Iteration: 9, Func. Count: 57, Neg. LLF: 143.67375634840607
Iteration: 10, Func. Count: 63, Neg. LLF: 143.67320825611733
Iteration: 11, Func. Count: 69, Neg. LLF: 143.67320482165513
Iteration: 12, Func. Count: 74, Neg. LLF: 143.67320502995753
Optimization terminated successfully (Exit mode 0)
Current function value: 143.67320482165513
Iterations: 12
Function evaluations: 74
Gradient evaluations: 12
Iteration: 1, Func. Count: 8, Neg. LLF: 158.2894746981887
Iteration: 2, Func. Count: 16, Neg. LLF: 143.8550110800248
Iteration: 3, Func. Count: 23, Neg. LLF: 144.07170395671358
Iteration: 4, Func. Count: 31, Neg. LLF: 143.8019167249509
Iteration: 5, Func. Count: 38, Neg. LLF: 143.80138843386175
Iteration: 6, Func. Count: 45, Neg. LLF: 143.80135373141542
Iteration: 7, Func. Count: 52, Neg. LLF: 143.80135280118913
Optimization terminated successfully (Exit mode 0)
Current function value: 143.80135280118913
Iterations: 7
Function evaluations: 52
Gradient evaluations: 7
Iteration: 1, Func. Count: 9, Neg. LLF: 164.3065335735051
Iteration: 2, Func. Count: 18, Neg. LLF: 143.9378013892984
Iteration: 3, Func. Count: 26, Neg. LLF: 143.95141302474764
Iteration: 4, Func. Count: 35, Neg. LLF: 143.88306052513332
Iteration: 5, Func. Count: 43, Neg. LLF: 143.866994940958
Iteration: 6, Func. Count: 51, Neg. LLF: 143.8024446659287
Iteration: 7, Func. Count: 59, Neg. LLF: 143.8007323387923
Iteration: 8, Func. Count: 67, Neg. LLF: 143.79792243717847
Iteration: 9, Func. Count: 75, Neg. LLF: 143.77791179352764
Iteration: 10, Func. Count: 83, Neg. LLF: 143.75418362812997
Iteration: 11, Func. Count: 91, Neg. LLF: 143.75079954479676
Iteration: 12, Func. Count: 99, Neg. LLF: 143.7454444952147
Iteration: 13, Func. Count: 107, Neg. LLF: 143.73888533356524
Iteration: 14, Func. Count: 118, Neg. LLF: 143.74660393859642
Iteration: 15, Func. Count: 126, Neg. LLF: 143.7452866807864
Iteration: 16, Func. Count: 134, Neg. LLF: 143.740543231588
Iteration: 17, Func. Count: 143, Neg. LLF: 143.74228474722906
Iteration: 18, Func. Count: 151, Neg. LLF: 143.70638992099563
Iteration: 19, Func. Count: 159, Neg. LLF: 144.39970257484427
Iteration: 20, Func. Count: 169, Neg. LLF: 143.75724743362673
Iteration: 21, Func. Count: 178, Neg. LLF: 143.71120312913874
Iteration: 22, Func. Count: 188, Neg. LLF: 143.68272036299985
Iteration: 23, Func. Count: 195, Neg. LLF: 143.68271999108387
Optimization terminated successfully (Exit mode 0)
Current function value: 143.68272036299985
Iterations: 24
Function evaluations: 195
Gradient evaluations: 23
Iteration: 1, Func. Count: 6, Neg. LLF: 150.47387310342822
Iteration: 2, Func. Count: 12, Neg. LLF: 152.8971330697799
Iteration: 3, Func. Count: 18, Neg. LLF: 146.1628632396934
Iteration: 4, Func. Count: 23, Neg. LLF: 146.20768733326568
Iteration: 5, Func. Count: 29, Neg. LLF: 146.0653046708524
Iteration: 6, Func. Count: 34, Neg. LLF: 146.06464371772856
Iteration: 7, Func. Count: 39, Neg. LLF: 146.06460198987793
Iteration: 8, Func. Count: 44, Neg. LLF: 146.06456045339849
Iteration: 9, Func. Count: 49, Neg. LLF: 146.06453906748834
Iteration: 10, Func. Count: 54, Neg. LLF: 146.06453220216903
Iteration: 11, Func. Count: 58, Neg. LLF: 146.06453226388777
Optimization terminated successfully (Exit mode 0)
Current function value: 146.06453220216903
Iterations: 11
Function evaluations: 58
Gradient evaluations: 11
Iteration: 1, Func. Count: 7, Neg. LLF: 182.8688123841044
Iteration: 2, Func. Count: 16, Neg. LLF: 157.61432135556723
Iteration: 3, Func. Count: 23, Neg. LLF: 145.05974166390442
Iteration: 4, Func. Count: 29, Neg. LLF: 143.72647744777453
Iteration: 5, Func. Count: 35, Neg. LLF: 143.76655865461703
Iteration: 6, Func. Count: 42, Neg. LLF: 143.68390188555102
Iteration: 7, Func. Count: 49, Neg. LLF: 143.68272099556737
Iteration: 8, Func. Count: 55, Neg. LLF: 143.68272036449196
Optimization terminated successfully (Exit mode 0)
Current function value: 143.68272036449196
Iterations: 8
Function evaluations: 55
Gradient evaluations: 8
Iteration: 1, Func. Count: 8, Neg. LLF: 157.76479394703904
Iteration: 2, Func. Count: 16, Neg. LLF: 143.80387879912962
Iteration: 3, Func. Count: 23, Neg. LLF: 144.37974476678218
Iteration: 4, Func. Count: 31, Neg. LLF: 143.74754115528617
Iteration: 5, Func. Count: 38, Neg. LLF: 143.7471951919681
Iteration: 6, Func. Count: 45, Neg. LLF: 143.74701129110827
Iteration: 7, Func. Count: 52, Neg. LLF: 143.74496238114992
Iteration: 8, Func. Count: 59, Neg. LLF: 143.67609240484063
Iteration: 9, Func. Count: 66, Neg. LLF: 143.67490086930707
Iteration: 10, Func. Count: 73, Neg. LLF: 143.67322889928485
Iteration: 11, Func. Count: 80, Neg. LLF: 143.6732047228579
Iteration: 12, Func. Count: 86, Neg. LLF: 143.67320493084952
Optimization terminated successfully (Exit mode 0)
Current function value: 143.6732047228579
Iterations: 13
Function evaluations: 86
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 159.02612666242075
Iteration: 2, Func. Count: 18, Neg. LLF: 143.8546356907798
Iteration: 3, Func. Count: 26, Neg. LLF: 144.1069258071616
Iteration: 4, Func. Count: 35, Neg. LLF: 143.8019769256743
Iteration: 5, Func. Count: 43, Neg. LLF: 143.80142614540065
Iteration: 6, Func. Count: 51, Neg. LLF: 143.8013556452911
Iteration: 7, Func. Count: 59, Neg. LLF: 143.8013525961082
Iteration: 8, Func. Count: 67, Neg. LLF: 143.80135220282244
Optimization terminated successfully (Exit mode 0)
Current function value: 143.80135220282244
Iterations: 8
Function evaluations: 67
Gradient evaluations: 8
Iteration: 1, Func. Count: 10, Neg. LLF: 164.99868582303458
Iteration: 2, Func. Count: 20, Neg. LLF: 143.92836818736404
Iteration: 3, Func. Count: 29, Neg. LLF: 147.75439523207936
Iteration: 4, Func. Count: 39, Neg. LLF: 143.85245063999736
Iteration: 5, Func. Count: 48, Neg. LLF: 143.8904779416076
Iteration: 6, Func. Count: 58, Neg. LLF: 143.73470647920652
Iteration: 7, Func. Count: 67, Neg. LLF: 143.70537640758087
Iteration: 8, Func. Count: 76, Neg. LLF: 143.70459406503966
Iteration: 9, Func. Count: 85, Neg. LLF: 143.70456859532877
Iteration: 10, Func. Count: 94, Neg. LLF: 143.70456665085018
Iteration: 11, Func. Count: 102, Neg. LLF: 143.704566551757
Optimization terminated successfully (Exit mode 0)
Current function value: 143.70456665085018
Iterations: 11
Function evaluations: 102
Gradient evaluations: 11
Iteration: 1, Func. Count: 7, Neg. LLF: 160.13544816809184
Iteration: 2, Func. Count: 15, Neg. LLF: 145.96662026146805
Iteration: 3, Func. Count: 21, Neg. LLF: 146.53155553159866
Iteration: 4, Func. Count: 28, Neg. LLF: 145.8614780430852
Iteration: 5, Func. Count: 34, Neg. LLF: 145.75607547798813
Iteration: 6, Func. Count: 40, Neg. LLF: 145.74375720661325
Iteration: 7, Func. Count: 46, Neg. LLF: 145.7419960470124
Iteration: 8, Func. Count: 52, Neg. LLF: 145.74166022948648
Iteration: 9, Func. Count: 58, Neg. LLF: 145.7415602313513
Iteration: 10, Func. Count: 64, Neg. LLF: 145.74147252483894
Iteration: 11, Func. Count: 70, Neg. LLF: 145.74146824884622
Iteration: 12, Func. Count: 75, Neg. LLF: 145.74146824887032
Optimization terminated successfully (Exit mode 0)
Current function value: 145.74146824884622
Iterations: 12
Function evaluations: 75
Gradient evaluations: 12
Iteration: 1, Func. Count: 8, Neg. LLF: 181.66023514842394
Iteration: 2, Func. Count: 18, Neg. LLF: 157.75154815054356
Iteration: 3, Func. Count: 26, Neg. LLF: 145.07557245036
Iteration: 4, Func. Count: 33, Neg. LLF: 143.7320895882585
Iteration: 5, Func. Count: 40, Neg. LLF: 143.77469847157712
Iteration: 6, Func. Count: 48, Neg. LLF: 143.68422867992692
Iteration: 7, Func. Count: 56, Neg. LLF: 143.68272111198627
Iteration: 8, Func. Count: 63, Neg. LLF: 143.68272036449326
Optimization terminated successfully (Exit mode 0)
Current function value: 143.68272036449326
Iterations: 8
Function evaluations: 63
Gradient evaluations: 8
Iteration: 1, Func. Count: 9, Neg. LLF: 157.801235332647
Iteration: 2, Func. Count: 18, Neg. LLF: 143.80511254527312
Iteration: 3, Func. Count: 26, Neg. LLF: 144.36633146495834
Iteration: 4, Func. Count: 35, Neg. LLF: 143.74771839792984
Iteration: 5, Func. Count: 43, Neg. LLF: 143.7472828615329
Iteration: 6, Func. Count: 51, Neg. LLF: 143.74714811290605
Iteration: 7, Func. Count: 59, Neg. LLF: 143.74693626117062
Iteration: 8, Func. Count: 67, Neg. LLF: 143.71288598467905
Iteration: 9, Func. Count: 75, Neg. LLF: 143.67333725211492
Iteration: 10, Func. Count: 83, Neg. LLF: 143.67855985734272
Iteration: 11, Func. Count: 92, Neg. LLF: 143.673672502706
Iteration: 12, Func. Count: 100, Neg. LLF: 143.67320495654852
Optimization terminated successfully (Exit mode 0)
Current function value: 143.67320474877286
Iterations: 13
Function evaluations: 100
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 178.79165775701125
Iteration: 2, Func. Count: 22, Neg. LLF: 152.63938064807473
Iteration: 3, Func. Count: 32, Neg. LLF: 143.9168636806231
Iteration: 4, Func. Count: 41, Neg. LLF: 144.51965440203955
Iteration: 5, Func. Count: 51, Neg. LLF: 143.8452640532504
Iteration: 6, Func. Count: 61, Neg. LLF: 143.79399191683416
Iteration: 7, Func. Count: 70, Neg. LLF: 143.79293104971367
Iteration: 8, Func. Count: 79, Neg. LLF: 143.79286682977553
Iteration: 9, Func. Count: 88, Neg. LLF: 143.79285878458273
Iteration: 10, Func. Count: 96, Neg. LLF: 143.7928586499135
Optimization terminated successfully (Exit mode 0)
Current function value: 143.79285878458273
Iterations: 10
Function evaluations: 96
Gradient evaluations: 10
Iteration: 1, Func. Count: 11, Neg. LLF: 174.0905432371721
Iteration: 2, Func. Count: 25, Neg. LLF: 152.0833329328431
Iteration: 3, Func. Count: 36, Neg. LLF: 144.07293448165072
Iteration: 4, Func. Count: 46, Neg. LLF: 144.00226250484093
Iteration: 5, Func. Count: 57, Neg. LLF: 143.74553396711104
Iteration: 6, Func. Count: 67, Neg. LLF: 143.71934905683378
Iteration: 7, Func. Count: 77, Neg. LLF: 143.70454997623852
Iteration: 8, Func. Count: 87, Neg. LLF: 143.7013904693891
Iteration: 9, Func. Count: 97, Neg. LLF: 143.70006700233648
Iteration: 10, Func. Count: 107, Neg. LLF: 143.6988354150568
Iteration: 11, Func. Count: 117, Neg. LLF: 143.69876215151007
Iteration: 12, Func. Count: 127, Neg. LLF: 143.6987553297069
Iteration: 13, Func. Count: 136, Neg. LLF: 143.69875523544027
Optimization terminated successfully (Exit mode 0)
Current function value: 143.6987553297069
Iterations: 13
Function evaluations: 136
Gradient evaluations: 13
Iteration: 1, Func. Count: 8, Neg. LLF: 157.7184396550577
Iteration: 2, Func. Count: 17, Neg. LLF: 146.0788544978855
Iteration: 3, Func. Count: 24, Neg. LLF: 147.1595201352345
Iteration: 4, Func. Count: 32, Neg. LLF: 145.90619015641684
Iteration: 5, Func. Count: 39, Neg. LLF: 145.77271405309068
Iteration: 6, Func. Count: 46, Neg. LLF: 145.74670912253433
Iteration: 7, Func. Count: 53, Neg. LLF: 145.74208328812674
Iteration: 8, Func. Count: 60, Neg. LLF: 145.74161054854125
Iteration: 9, Func. Count: 67, Neg. LLF: 145.74155578804525
Iteration: 10, Func. Count: 74, Neg. LLF: 145.74146872958752
Iteration: 11, Func. Count: 81, Neg. LLF: 145.74146812088694
Optimization terminated successfully (Exit mode 0)
Current function value: 145.74146812088694
Iterations: 11
Function evaluations: 81
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 180.76992982229473
Iteration: 2, Func. Count: 20, Neg. LLF: 158.217828183619
Iteration: 3, Func. Count: 29, Neg. LLF: 145.05034550152897
Iteration: 4, Func. Count: 37, Neg. LLF: 143.76406461018775
Iteration: 5, Func. Count: 45, Neg. LLF: 143.81034879535176
Iteration: 6, Func. Count: 54, Neg. LLF: 143.68770243356403
Iteration: 7, Func. Count: 63, Neg. LLF: 143.68272058041248
Iteration: 8, Func. Count: 70, Neg. LLF: 143.68272096569547
Optimization terminated successfully (Exit mode 0)
Current function value: 143.68272058041248
Iterations: 8
Function evaluations: 70
Gradient evaluations: 8
Iteration: 1, Func. Count: 10, Neg. LLF: 157.72068247223942
Iteration: 2, Func. Count: 20, Neg. LLF: 143.79923647195483
Iteration: 3, Func. Count: 29, Neg. LLF: 144.21762158231385
Iteration: 4, Func. Count: 39, Neg. LLF: 143.7470575796188
Iteration: 5, Func. Count: 48, Neg. LLF: 143.74604412545628
Iteration: 6, Func. Count: 57, Neg. LLF: 143.68342717260623
Iteration: 7, Func. Count: 66, Neg. LLF: 143.6770169885735
Iteration: 8, Func. Count: 75, Neg. LLF: 143.67320585026485
Iteration: 9, Func. Count: 84, Neg. LLF: 143.6733429928346
Optimization terminated successfully (Exit mode 0)
Current function value: 143.67320486873732
Iterations: 10
Function evaluations: 85
Gradient evaluations: 9
Iteration: 1, Func. Count: 11, Neg. LLF: 178.19898294341337
Iteration: 2, Func. Count: 25, Neg. LLF: 150.95755998750445
Iteration: 3, Func. Count: 36, Neg. LLF: 143.92699859091638
Iteration: 4, Func. Count: 46, Neg. LLF: 144.2090762119638
Iteration: 5, Func. Count: 57, Neg. LLF: 143.95258855755677
Iteration: 6, Func. Count: 68, Neg. LLF: 143.79337646683496
Iteration: 7, Func. Count: 78, Neg. LLF: 143.79288589023372
Iteration: 8, Func. Count: 88, Neg. LLF: 143.79285921855836
Iteration: 9, Func. Count: 98, Neg. LLF: 143.7928585460307
Optimization terminated successfully (Exit mode 0)
Current function value: 143.7928585460307
Iterations: 9
Function evaluations: 98
Gradient evaluations: 9
Iteration: 1, Func. Count: 12, Neg. LLF: 173.50019904504754
Iteration: 2, Func. Count: 27, Neg. LLF: 152.18505300042324
Iteration: 3, Func. Count: 39, Neg. LLF: 144.08264027577502
Iteration: 4, Func. Count: 50, Neg. LLF: 144.00583641649047
Iteration: 5, Func. Count: 62, Neg. LLF: 143.7445048285963
Iteration: 6, Func. Count: 73, Neg. LLF: 143.71871031733573
Iteration: 7, Func. Count: 84, Neg. LLF: 143.70457600467347
Iteration: 8, Func. Count: 95, Neg. LLF: 143.70143890505923
Iteration: 9, Func. Count: 106, Neg. LLF: 143.70006309438003
Iteration: 10, Func. Count: 117, Neg. LLF: 143.69880814971287
Iteration: 11, Func. Count: 128, Neg. LLF: 143.6987578762888
Iteration: 12, Func. Count: 139, Neg. LLF: 143.69875533013462
Iteration: 13, Func. Count: 149, Neg. LLF: 143.6987552358656
Optimization terminated successfully (Exit mode 0)
Current function value: 143.69875533013462
Iterations: 13
Function evaluations: 149
Gradient evaluations: 13
Iteration: 1, Func. Count: 5, Neg. LLF: 151.2994940557508
Iteration: 2, Func. Count: 10, Neg. LLF: 150.3571052470713
Iteration: 3, Func. Count: 15, Neg. LLF: 148.26232125126015
Iteration: 4, Func. Count: 19, Neg. LLF: 148.24209521571703
Iteration: 5, Func. Count: 23, Neg. LLF: 148.24196544707712
Iteration: 6, Func. Count: 27, Neg. LLF: 148.24193720568098
Iteration: 7, Func. Count: 31, Neg. LLF: 148.24186593640061
Iteration: 8, Func. Count: 35, Neg. LLF: 148.24186391592505
Iteration: 9, Func. Count: 38, Neg. LLF: 148.24186391715327
Optimization terminated successfully (Exit mode 0)
Current function value: 148.24186391592505
Iterations: 9
Function evaluations: 38
Gradient evaluations: 9
Iteration: 1, Func. Count: 6, Neg. LLF: 160.34323550992008
Iteration: 2, Func. Count: 12, Neg. LLF: 145.57616207983398
Iteration: 3, Func. Count: 18, Neg. LLF: 145.01151514158514
Iteration: 4, Func. Count: 23, Neg. LLF: 568.2880593785002
Iteration: 5, Func. Count: 31, Neg. LLF: 144.0905115878779
Iteration: 6, Func. Count: 36, Neg. LLF: 144.0683175911439
Iteration: 7, Func. Count: 42, Neg. LLF: 143.69050777900807
Iteration: 8, Func. Count: 47, Neg. LLF: 143.68399930408552
Iteration: 9, Func. Count: 52, Neg. LLF: 143.68272334894485
Iteration: 10, Func. Count: 57, Neg. LLF: 143.68272039007837
Iteration: 11, Func. Count: 61, Neg. LLF: 143.68272077454552
Optimization terminated successfully (Exit mode 0)
Current function value: 143.68272039007837
Iterations: 11
Function evaluations: 61
Gradient evaluations: 11
Iteration: 1, Func. Count: 7, Neg. LLF: 147.53049195475646
Iteration: 2, Func. Count: 16, Neg. LLF: 145.3491385623481
Iteration: 3, Func. Count: 22, Neg. LLF: 145.251042821096
Iteration: 4, Func. Count: 29, Neg. LLF: 144.52643427809025
Iteration: 5, Func. Count: 36, Neg. LLF: 143.76021950681
Iteration: 6, Func. Count: 42, Neg. LLF: 143.76595416557728
Iteration: 7, Func. Count: 49, Neg. LLF: 143.74127329432199
Iteration: 8, Func. Count: 55, Neg. LLF: 143.7393559933767
Iteration: 9, Func. Count: 61, Neg. LLF: 143.73635015515725
Iteration: 10, Func. Count: 67, Neg. LLF: 143.7168774498971
Iteration: 11, Func. Count: 73, Neg. LLF: 143.69918196025102
Iteration: 12, Func. Count: 79, Neg. LLF: 143.69240666139717
Iteration: 13, Func. Count: 85, Neg. LLF: 143.68275246511783
Iteration: 14, Func. Count: 91, Neg. LLF: 143.68272038571106
Iteration: 15, Func. Count: 96, Neg. LLF: 143.6827200031032
Optimization terminated successfully (Exit mode 0)
Current function value: 143.68272038571106
Iterations: 15
Function evaluations: 96
Gradient evaluations: 15
Iteration: 1, Func. Count: 8, Neg. LLF: 157.17283122918954
Iteration: 2, Func. Count: 16, Neg. LLF: 143.63330720628937
Iteration: 3, Func. Count: 23, Neg. LLF: 143.43453137029522
Iteration: 4, Func. Count: 30, Neg. LLF: 144.11227841713765
Iteration: 5, Func. Count: 38, Neg. LLF: 143.77517247677193
Iteration: 6, Func. Count: 46, Neg. LLF: 143.27122121945195
Iteration: 7, Func. Count: 53, Neg. LLF: 143.19485656719434
Iteration: 8, Func. Count: 60, Neg. LLF: 143.1758546929679
Iteration: 9, Func. Count: 67, Neg. LLF: 143.17388941843615
Iteration: 10, Func. Count: 74, Neg. LLF: 143.1738319279555
Iteration: 11, Func. Count: 80, Neg. LLF: 143.1738318307914
Optimization terminated successfully (Exit mode 0)
Current function value: 143.1738319279555
Iterations: 11
Function evaluations: 80
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 163.40858991277338
Iteration: 2, Func. Count: 18, Neg. LLF: 143.9334261580414
Iteration: 3, Func. Count: 26, Neg. LLF: 143.92372812522396
Iteration: 4, Func. Count: 35, Neg. LLF: 143.87543595347472
Iteration: 5, Func. Count: 43, Neg. LLF: 143.85622667679635
Iteration: 6, Func. Count: 51, Neg. LLF: 143.79489013943441
Iteration: 7, Func. Count: 59, Neg. LLF: 143.79207653766545
Iteration: 8, Func. Count: 67, Neg. LLF: 143.78599750445076
Iteration: 9, Func. Count: 75, Neg. LLF: 143.76249723818722
Iteration: 10, Func. Count: 83, Neg. LLF: 143.7534901260871
Iteration: 11, Func. Count: 91, Neg. LLF: 143.7462522585055
Iteration: 12, Func. Count: 99, Neg. LLF: 143.74616036610468
Iteration: 13, Func. Count: 107, Neg. LLF: 143.7432439874333
Iteration: 14, Func. Count: 115, Neg. LLF: 143.74055003995807
Iteration: 15, Func. Count: 123, Neg. LLF: 143.73056570518713
Iteration: 16, Func. Count: 131, Neg. LLF: 143.6897471881559
Iteration: 17, Func. Count: 139, Neg. LLF: 155.41658038803251
Iteration: 18, Func. Count: 157, Neg. LLF: 143.7597478610692
Iteration: 19, Func. Count: 175, Neg. LLF: 143.6911478908497
Iteration: 20, Func. Count: 193, Neg. LLF: 6020.3416531071425
Iteration: 21, Func. Count: 205, Neg. LLF: 143.68272847858435
Iteration: 22, Func. Count: 212, Neg. LLF: 143.68272810580712
Optimization terminated successfully (Exit mode 0)
Current function value: 143.68272847858435
Iterations: 22
Function evaluations: 212
Gradient evaluations: 22
Iteration: 1, Func. Count: 6, Neg. LLF: 157.33443310667326
Iteration: 2, Func. Count: 12, Neg. LLF: 148.6851066827922
Iteration: 3, Func. Count: 18, Neg. LLF: 146.1895380004288
Iteration: 4, Func. Count: 23, Neg. LLF: 146.30554044975364
Iteration: 5, Func. Count: 29, Neg. LLF: 146.0936404881094
Iteration: 6, Func. Count: 34, Neg. LLF: 146.07973208102095
Iteration: 7, Func. Count: 39, Neg. LLF: 146.0722027064658
Iteration: 8, Func. Count: 44, Neg. LLF: 146.066051875807
Iteration: 9, Func. Count: 49, Neg. LLF: 146.06462697612292
Iteration: 10, Func. Count: 54, Neg. LLF: 146.06453519808727
Iteration: 11, Func. Count: 59, Neg. LLF: 146.0645317360942
Iteration: 12, Func. Count: 63, Neg. LLF: 146.06453173609387
Optimization terminated successfully (Exit mode 0)
Current function value: 146.0645317360942
Iterations: 12
Function evaluations: 63
Gradient evaluations: 12
Iteration: 1, Func. Count: 7, Neg. LLF: 150.0462836904826
Iteration: 2, Func. Count: 14, Neg. LLF: 152.01631401500717
Iteration: 3, Func. Count: 22, Neg. LLF: 154.39577353979303
Iteration: 4, Func. Count: 29, Neg. LLF: 148.64533768766648
Iteration: 5, Func. Count: 36, Neg. LLF: 145.59526045100472
Iteration: 6, Func. Count: 43, Neg. LLF: 145.08336738452127
Iteration: 7, Func. Count: 50, Neg. LLF: 143.65897583071813
Iteration: 8, Func. Count: 56, Neg. LLF: 143.51634724138742
Iteration: 9, Func. Count: 62, Neg. LLF: 143.4879215824083
Iteration: 10, Func. Count: 68, Neg. LLF: 143.4617528972753
Iteration: 11, Func. Count: 74, Neg. LLF: 143.45362621207417
Iteration: 12, Func. Count: 80, Neg. LLF: 143.44988386712183
Iteration: 13, Func. Count: 86, Neg. LLF: 143.44914655556266
Iteration: 14, Func. Count: 92, Neg. LLF: 143.44909918706543
Iteration: 15, Func. Count: 97, Neg. LLF: 143.44909886833406
Optimization terminated successfully (Exit mode 0)
Current function value: 143.44909918706543
Iterations: 15
Function evaluations: 97
Gradient evaluations: 15
Iteration: 1, Func. Count: 8, Neg. LLF: 149.07013196165946
Iteration: 2, Func. Count: 17, Neg. LLF: 154.3549377416184
Iteration: 3, Func. Count: 27, Neg. LLF: 147.342606275993
Iteration: 4, Func. Count: 35, Neg. LLF: 144.0970855197629
Iteration: 5, Func. Count: 42, Neg. LLF: 143.83770609613964
Iteration: 6, Func. Count: 49, Neg. LLF: 143.70172965249486
Iteration: 7, Func. Count: 56, Neg. LLF: 143.8912307877622
Iteration: 8, Func. Count: 64, Neg. LLF: 143.48421376823856
Iteration: 9, Func. Count: 71, Neg. LLF: 143.45020223180245
Iteration: 10, Func. Count: 78, Neg. LLF: 143.449306647603
Iteration: 11, Func. Count: 85, Neg. LLF: 143.44918561683758
Iteration: 12, Func. Count: 92, Neg. LLF: 143.44910457414687
Iteration: 13, Func. Count: 99, Neg. LLF: 143.44909901989138
Iteration: 14, Func. Count: 105, Neg. LLF: 143.44909871118733
Optimization terminated successfully (Exit mode 0)
Current function value: 143.44909901989138
Iterations: 14
Function evaluations: 105
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 148.51319652117382
Iteration: 2, Func. Count: 18, Neg. LLF: 152.2376945335716
Iteration: 3, Func. Count: 28, Neg. LLF: 146.48808536580822
Iteration: 4, Func. Count: 37, Neg. LLF: 141.87603072172274
Iteration: 5, Func. Count: 45, Neg. LLF: 145.77041912509836
Iteration: 6, Func. Count: 54, Neg. LLF: 141.52334174928902
Iteration: 7, Func. Count: 62, Neg. LLF: 141.31964938527224
Iteration: 8, Func. Count: 70, Neg. LLF: 141.28077613020076
Iteration: 9, Func. Count: 78, Neg. LLF: 141.2580277944196
Iteration: 10, Func. Count: 86, Neg. LLF: 141.2560507154482
Iteration: 11, Func. Count: 94, Neg. LLF: 141.25601990376668
Iteration: 12, Func. Count: 102, Neg. LLF: 141.25601915352254
Optimization terminated successfully (Exit mode 0)
Current function value: 141.25601915352254
Iterations: 12
Function evaluations: 102
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 163.73802045993926
Iteration: 2, Func. Count: 20, Neg. LLF: 146.67862506714383
Iteration: 3, Func. Count: 30, Neg. LLF: 141.6159455119505
Iteration: 4, Func. Count: 39, Neg. LLF: 142.82928142057582
Iteration: 5, Func. Count: 49, Neg. LLF: 144.59696508831968
Iteration: 6, Func. Count: 59, Neg. LLF: 141.2637105002625
Iteration: 7, Func. Count: 68, Neg. LLF: 141.25473542661086
Iteration: 8, Func. Count: 77, Neg. LLF: 141.25382497736402
Iteration: 9, Func. Count: 86, Neg. LLF: 141.25269394904942
Iteration: 10, Func. Count: 95, Neg. LLF: 141.25251993165827
Iteration: 11, Func. Count: 104, Neg. LLF: 141.25250862668827
Iteration: 12, Func. Count: 112, Neg. LLF: 141.25250850567537
Optimization terminated successfully (Exit mode 0)
Current function value: 141.25250862668827
Iterations: 12
Function evaluations: 112
Gradient evaluations: 12
Iteration: 1, Func. Count: 7, Neg. LLF: 154.93604446738874
Iteration: 2, Func. Count: 14, Neg. LLF: 149.72560113365748
Iteration: 3, Func. Count: 21, Neg. LLF: 146.18970932180545
Iteration: 4, Func. Count: 27, Neg. LLF: 146.25538607896544
Iteration: 5, Func. Count: 34, Neg. LLF: 146.08716781310247
Iteration: 6, Func. Count: 40, Neg. LLF: 146.0791024661743
Iteration: 7, Func. Count: 46, Neg. LLF: 146.07124539868002
Iteration: 8, Func. Count: 52, Neg. LLF: 146.06509781767895
Iteration: 9, Func. Count: 58, Neg. LLF: 146.06456726363905
Iteration: 10, Func. Count: 64, Neg. LLF: 146.0645323584494
Iteration: 11, Func. Count: 70, Neg. LLF: 146.06453167534718
Optimization terminated successfully (Exit mode 0)
Current function value: 146.06453167534718
Iterations: 11
Function evaluations: 70
Gradient evaluations: 11
Iteration: 1, Func. Count: 8, Neg. LLF: 149.99381580315838
Iteration: 2, Func. Count: 16, Neg. LLF: 151.9797167141655
Iteration: 3, Func. Count: 25, Neg. LLF: 145.86735149237984
Iteration: 4, Func. Count: 33, Neg. LLF: 149.38775799630116
Iteration: 5, Func. Count: 41, Neg. LLF: 145.06621030486374
Iteration: 6, Func. Count: 49, Neg. LLF: 144.5289002842517
Iteration: 7, Func. Count: 57, Neg. LLF: 143.33929819306042
Iteration: 8, Func. Count: 64, Neg. LLF: 143.31104652893146
Iteration: 9, Func. Count: 71, Neg. LLF: 143.3049784186288
Iteration: 10, Func. Count: 78, Neg. LLF: 143.30132708042575
Iteration: 11, Func. Count: 85, Neg. LLF: 143.29982201455934
Iteration: 12, Func. Count: 92, Neg. LLF: 143.2996433367343
Iteration: 13, Func. Count: 99, Neg. LLF: 143.2996384367134
Iteration: 14, Func. Count: 105, Neg. LLF: 143.29963822195802
Optimization terminated successfully (Exit mode 0)
Current function value: 143.2996384367134
Iterations: 14
Function evaluations: 105
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 149.05878870954194
Iteration: 2, Func. Count: 19, Neg. LLF: 164.86255963666648
Iteration: 3, Func. Count: 29, Neg. LLF: 144.4006308293884
Iteration: 4, Func. Count: 37, Neg. LLF: 145.15726065347522
Iteration: 5, Func. Count: 46, Neg. LLF: 159.2151220113716
Iteration: 6, Func. Count: 55, Neg. LLF: 143.39085991471245
Iteration: 7, Func. Count: 63, Neg. LLF: 143.33025436742184
Iteration: 8, Func. Count: 71, Neg. LLF: 143.30448241670322
Iteration: 9, Func. Count: 79, Neg. LLF: 143.3004814153504
Iteration: 10, Func. Count: 87, Neg. LLF: 143.29975239283604
Iteration: 11, Func. Count: 95, Neg. LLF: 143.29964172754427
Iteration: 12, Func. Count: 103, Neg. LLF: 143.2996384604088
Iteration: 13, Func. Count: 110, Neg. LLF: 143.2996382678833
Optimization terminated successfully (Exit mode 0)
Current function value: 143.2996384604088
Iterations: 13
Function evaluations: 110
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 148.16111858311066
Iteration: 2, Func. Count: 20, Neg. LLF: 166.70270183827827
Iteration: 3, Func. Count: 31, Neg. LLF: 142.9013047681919
Iteration: 4, Func. Count: 40, Neg. LLF: 141.95100694518828
Iteration: 5, Func. Count: 49, Neg. LLF: 154.8202474523487
Iteration: 6, Func. Count: 60, Neg. LLF: 143.76769246782538
Iteration: 7, Func. Count: 70, Neg. LLF: 141.38108343017032
Iteration: 8, Func. Count: 79, Neg. LLF: 141.2594525552228
Iteration: 9, Func. Count: 88, Neg. LLF: 141.24542424740494
Iteration: 10, Func. Count: 97, Neg. LLF: 141.2192544756933
Iteration: 11, Func. Count: 106, Neg. LLF: 141.21705003044013
Iteration: 12, Func. Count: 115, Neg. LLF: 141.2164240297721
Iteration: 13, Func. Count: 124, Neg. LLF: 141.2164097053988
Iteration: 14, Func. Count: 133, Neg. LLF: 141.21640296016508
Iteration: 15, Func. Count: 141, Neg. LLF: 141.21640284730265
Optimization terminated successfully (Exit mode 0)
Current function value: 141.21640296016508
Iterations: 15
Function evaluations: 141
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 164.2336049624946
Iteration: 2, Func. Count: 22, Neg. LLF: 146.5705548661095
Iteration: 3, Func. Count: 33, Neg. LLF: 141.62566521147744
Iteration: 4, Func. Count: 43, Neg. LLF: 142.05885748599692
Iteration: 5, Func. Count: 54, Neg. LLF: 152.72001631107497
Iteration: 6, Func. Count: 66, Neg. LLF: 141.45306225040014
Iteration: 7, Func. Count: 76, Neg. LLF: 142.19868970758426
Iteration: 8, Func. Count: 87, Neg. LLF: 141.62146100633709
Iteration: 9, Func. Count: 98, Neg. LLF: 141.29047144636237
Iteration: 10, Func. Count: 108, Neg. LLF: 141.2621150921126
Iteration: 11, Func. Count: 118, Neg. LLF: 141.2227430594701
Iteration: 12, Func. Count: 128, Neg. LLF: 141.21656738495878
Iteration: 13, Func. Count: 138, Neg. LLF: 141.21640423439544
Iteration: 14, Func. Count: 148, Neg. LLF: 141.21640242330048
Iteration: 15, Func. Count: 157, Neg. LLF: 141.21640231634453
Optimization terminated successfully (Exit mode 0)
Current function value: 141.21640242330048
Iterations: 15
Function evaluations: 157
Gradient evaluations: 15
Iteration: 1, Func. Count: 8, Neg. LLF: 166.89815275656792
Iteration: 2, Func. Count: 17, Neg. LLF: 147.05600682987313
Iteration: 3, Func. Count: 24, Neg. LLF: 149.32043112318433
Iteration: 4, Func. Count: 32, Neg. LLF: 145.79207572582152
Iteration: 5, Func. Count: 40, Neg. LLF: 146.98637202607625
Iteration: 6, Func. Count: 48, Neg. LLF: 145.7466052053468
Iteration: 7, Func. Count: 55, Neg. LLF: 145.74148644657475
Iteration: 8, Func. Count: 62, Neg. LLF: 145.73050994489745
Iteration: 9, Func. Count: 69, Neg. LLF: 145.7288784537761
Iteration: 10, Func. Count: 76, Neg. LLF: 145.72847093192425
Iteration: 11, Func. Count: 83, Neg. LLF: 145.7284651783404
Iteration: 12, Func. Count: 89, Neg. LLF: 145.72846517829913
Optimization terminated successfully (Exit mode 0)
Current function value: 145.7284651783404
Iterations: 12
Function evaluations: 89
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 149.840476599469
Iteration: 2, Func. Count: 18, Neg. LLF: 151.4514482638044
Iteration: 3, Func. Count: 27, Neg. LLF: 150.95289260283477
Iteration: 4, Func. Count: 36, Neg. LLF: 155.92057650728097
Iteration: 5, Func. Count: 45, Neg. LLF: 155.22959258083034
Iteration: 6, Func. Count: 54, Neg. LLF: 144.89581100852644
Iteration: 7, Func. Count: 63, Neg. LLF: 144.43588661815824
Iteration: 8, Func. Count: 72, Neg. LLF: 143.12247509418557
Iteration: 9, Func. Count: 80, Neg. LLF: 143.10301472137272
Iteration: 10, Func. Count: 88, Neg. LLF: 143.09514214155627
Iteration: 11, Func. Count: 96, Neg. LLF: 143.0834212659967
Iteration: 12, Func. Count: 104, Neg. LLF: 143.08270397579534
Iteration: 13, Func. Count: 112, Neg. LLF: 143.0825073899398
Iteration: 14, Func. Count: 120, Neg. LLF: 143.08247789918013
Iteration: 15, Func. Count: 127, Neg. LLF: 143.08247771225982
Optimization terminated successfully (Exit mode 0)
Current function value: 143.08247789918013
Iterations: 15
Function evaluations: 127
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 149.00823312596532
Iteration: 2, Func. Count: 21, Neg. LLF: 155.55973369821444
Iteration: 3, Func. Count: 33, Neg. LLF: 153.47952999452264
Iteration: 4, Func. Count: 43, Neg. LLF: 148.65921317510018
Iteration: 5, Func. Count: 53, Neg. LLF: 144.30706193090813
Iteration: 6, Func. Count: 62, Neg. LLF: 143.83585365202163
Iteration: 7, Func. Count: 71, Neg. LLF: 153.37213426277816
Iteration: 8, Func. Count: 82, Neg. LLF: 143.7505633984315
Iteration: 9, Func. Count: 92, Neg. LLF: 143.4192697201722
Iteration: 10, Func. Count: 102, Neg. LLF: 143.09084677852468
Iteration: 11, Func. Count: 111, Neg. LLF: 143.08393048695044
Iteration: 12, Func. Count: 120, Neg. LLF: 143.08310774677932
Iteration: 13, Func. Count: 129, Neg. LLF: 143.0827600528466
Iteration: 14, Func. Count: 138, Neg. LLF: 143.08252461894807
Iteration: 15, Func. Count: 147, Neg. LLF: 143.08248046774585
Iteration: 16, Func. Count: 156, Neg. LLF: 143.08247780502788
Iteration: 17, Func. Count: 164, Neg. LLF: 143.0824776409126
Optimization terminated successfully (Exit mode 0)
Current function value: 143.08247780502788
Iterations: 17
Function evaluations: 164
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 173.79239385784595
Iteration: 2, Func. Count: 23, Neg. LLF: 145.51377202405965
Iteration: 3, Func. Count: 34, Neg. LLF: 144.42476800955268
Iteration: 4, Func. Count: 45, Neg. LLF: 200.7020906278098
Iteration: 5, Func. Count: 57, Neg. LLF: 145.3454527427807
Iteration: 6, Func. Count: 68, Neg. LLF: 150.39573828593774
Iteration: 7, Func. Count: 79, Neg. LLF: 140.52354930315363
Iteration: 8, Func. Count: 89, Neg. LLF: 140.62758193323918
Iteration: 9, Func. Count: 100, Neg. LLF: 140.26085550478837
Iteration: 10, Func. Count: 110, Neg. LLF: 140.24184856029166
Iteration: 11, Func. Count: 120, Neg. LLF: 140.2382042265689
Iteration: 12, Func. Count: 130, Neg. LLF: 140.23785249516806
Iteration: 13, Func. Count: 140, Neg. LLF: 140.23762327800557
Iteration: 14, Func. Count: 150, Neg. LLF: 140.2375574481788
Iteration: 15, Func. Count: 160, Neg. LLF: 140.23754190610438
Iteration: 16, Func. Count: 170, Neg. LLF: 140.23754115079566
Optimization terminated successfully (Exit mode 0)
Current function value: 140.23754115079566
Iterations: 16
Function evaluations: 170
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 175.21364435633123
Iteration: 2, Func. Count: 27, Neg. LLF: 144.2668202633489
Iteration: 3, Func. Count: 40, Neg. LLF: 140.72096442383952
Iteration: 4, Func. Count: 51, Neg. LLF: 140.45765577368007
Iteration: 5, Func. Count: 62, Neg. LLF: 147.56558361476849
Iteration: 6, Func. Count: 75, Neg. LLF: 140.55909678652094
Iteration: 7, Func. Count: 87, Neg. LLF: 140.2890470757575
Iteration: 8, Func. Count: 98, Neg. LLF: 140.29751709767356
Iteration: 9, Func. Count: 110, Neg. LLF: 140.25878429326113
Iteration: 10, Func. Count: 121, Neg. LLF: 140.24261812272982
Iteration: 11, Func. Count: 132, Neg. LLF: 140.23775417833113
Iteration: 12, Func. Count: 143, Neg. LLF: 140.2375940387541
Iteration: 13, Func. Count: 154, Neg. LLF: 140.23757447418356
Iteration: 14, Func. Count: 165, Neg. LLF: 140.2375511841215
Iteration: 15, Func. Count: 176, Neg. LLF: 140.23754219130856
Iteration: 16, Func. Count: 187, Neg. LLF: 140.23754118021554
Iteration: 17, Func. Count: 197, Neg. LLF: 140.2375411795151
Optimization terminated successfully (Exit mode 0)
Current function value: 140.23754118021554
Iterations: 17
Function evaluations: 197
Gradient evaluations: 17
Iteration: 1, Func. Count: 9, Neg. LLF: 164.76010220776777
Iteration: 2, Func. Count: 19, Neg. LLF: 146.69910511921464
Iteration: 3, Func. Count: 27, Neg. LLF: 149.45371574191597
Iteration: 4, Func. Count: 36, Neg. LLF: 145.76341306657432
Iteration: 5, Func. Count: 44, Neg. LLF: 146.3773333286419
Iteration: 6, Func. Count: 54, Neg. LLF: 145.74923466635985
Iteration: 7, Func. Count: 62, Neg. LLF: 145.74375209178942
Iteration: 8, Func. Count: 70, Neg. LLF: 145.73497545979865
Iteration: 9, Func. Count: 78, Neg. LLF: 145.72953440620213
Iteration: 10, Func. Count: 86, Neg. LLF: 145.72862301715298
Iteration: 11, Func. Count: 94, Neg. LLF: 145.72846789133388
Iteration: 12, Func. Count: 102, Neg. LLF: 145.72846501289195
Iteration: 13, Func. Count: 109, Neg. LLF: 145.72846508933057
Optimization terminated successfully (Exit mode 0)
Current function value: 145.72846501289195
Iterations: 13
Function evaluations: 109
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 149.82897977452836
Iteration: 2, Func. Count: 20, Neg. LLF: 151.49689293016988
Iteration: 3, Func. Count: 31, Neg. LLF: 153.04082601913703
Iteration: 4, Func. Count: 41, Neg. LLF: 154.44375514843193
Iteration: 5, Func. Count: 51, Neg. LLF: 171.36058856614173
Iteration: 6, Func. Count: 61, Neg. LLF: 144.35137909042288
Iteration: 7, Func. Count: 71, Neg. LLF: 143.17166416495974
Iteration: 8, Func. Count: 80, Neg. LLF: 143.11395538712748
Iteration: 9, Func. Count: 89, Neg. LLF: 143.10092663910845
Iteration: 10, Func. Count: 98, Neg. LLF: 143.08378902108294
Iteration: 11, Func. Count: 107, Neg. LLF: 143.08271544125859
Iteration: 12, Func. Count: 116, Neg. LLF: 143.08248211618462
Iteration: 13, Func. Count: 125, Neg. LLF: 143.08247852694805
Iteration: 14, Func. Count: 134, Neg. LLF: 143.08247774818528
Optimization terminated successfully (Exit mode 0)
Current function value: 143.08247774818528
Iterations: 14
Function evaluations: 134
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 149.12225740235442
Iteration: 2, Func. Count: 23, Neg. LLF: 156.36719887015406
Iteration: 3, Func. Count: 36, Neg. LLF: 153.95018173184118
Iteration: 4, Func. Count: 47, Neg. LLF: 148.64150315877308
Iteration: 5, Func. Count: 58, Neg. LLF: 144.28763196131095
Iteration: 6, Func. Count: 68, Neg. LLF: 143.75048325514396
Iteration: 7, Func. Count: 78, Neg. LLF: 146.73346441452728
Iteration: 8, Func. Count: 90, Neg. LLF: 143.8737894756257
Iteration: 9, Func. Count: 101, Neg. LLF: 143.27779232242645
Iteration: 10, Func. Count: 111, Neg. LLF: 143.09159706616163
Iteration: 11, Func. Count: 121, Neg. LLF: 143.08340097670182
Iteration: 12, Func. Count: 131, Neg. LLF: 143.08258706387454
Iteration: 13, Func. Count: 141, Neg. LLF: 143.08251017647905
Iteration: 14, Func. Count: 151, Neg. LLF: 143.0824919041573
Iteration: 15, Func. Count: 161, Neg. LLF: 143.08247795142822
Iteration: 16, Func. Count: 170, Neg. LLF: 143.08247778723097
Optimization terminated successfully (Exit mode 0)
Current function value: 143.08247795142822
Iterations: 16
Function evaluations: 170
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 173.43550283757656
Iteration: 2, Func. Count: 25, Neg. LLF: 145.7293998946048
Iteration: 3, Func. Count: 37, Neg. LLF: 143.7778469277962
Iteration: 4, Func. Count: 49, Neg. LLF: 210.86339152001102
Iteration: 5, Func. Count: 62, Neg. LLF: 140.75148177307622
Iteration: 6, Func. Count: 73, Neg. LLF: 1934.3140228662844
Iteration: 7, Func. Count: 87, Neg. LLF: 141.77964220683236
Iteration: 8, Func. Count: 99, Neg. LLF: 140.50626276581008
Iteration: 9, Func. Count: 111, Neg. LLF: 140.75442039594165
Iteration: 10, Func. Count: 123, Neg. LLF: 140.265967008695
Iteration: 11, Func. Count: 134, Neg. LLF: 140.24693043272757
Iteration: 12, Func. Count: 145, Neg. LLF: 140.23907017293752
Iteration: 13, Func. Count: 156, Neg. LLF: 140.23844706733036
Iteration: 14, Func. Count: 167, Neg. LLF: 140.23758545351006
Iteration: 15, Func. Count: 178, Neg. LLF: 140.23754525433733
Iteration: 16, Func. Count: 189, Neg. LLF: 140.23754116516957
Iteration: 17, Func. Count: 199, Neg. LLF: 140.2375411145364
Optimization terminated successfully (Exit mode 0)
Current function value: 140.23754116516957
Iterations: 17
Function evaluations: 199
Gradient evaluations: 17
Iteration: 1, Func. Count: 13, Neg. LLF: 174.70087838498372
Iteration: 2, Func. Count: 29, Neg. LLF: 144.30018030980727
Iteration: 3, Func. Count: 43, Neg. LLF: 140.7193147134533
Iteration: 4, Func. Count: 55, Neg. LLF: 140.47387998536757
Iteration: 5, Func. Count: 67, Neg. LLF: 147.3298251280806
Iteration: 6, Func. Count: 81, Neg. LLF: 140.7665162004952
Iteration: 7, Func. Count: 94, Neg. LLF: 140.30749240276268
Iteration: 8, Func. Count: 106, Neg. LLF: 140.3161490267886
Iteration: 9, Func. Count: 119, Neg. LLF: 140.26850500830602
Iteration: 10, Func. Count: 131, Neg. LLF: 140.24590483215
Iteration: 11, Func. Count: 143, Neg. LLF: 140.2381139963723
Iteration: 12, Func. Count: 155, Neg. LLF: 140.23767204087173
Iteration: 13, Func. Count: 167, Neg. LLF: 140.2376113637531
Iteration: 14, Func. Count: 179, Neg. LLF: 140.23756764239988
Iteration: 15, Func. Count: 191, Neg. LLF: 140.23755734555687
Iteration: 16, Func. Count: 203, Neg. LLF: 140.2375420254848
Iteration: 17, Func. Count: 215, Neg. LLF: 140.2375411952287
Optimization terminated successfully (Exit mode 0)
Current function value: 140.2375411952287
Iterations: 17
Function evaluations: 215
Gradient evaluations: 17
Iteration: 1, Func. Count: 6, Neg. LLF: 148.51560779600845
Iteration: 2, Func. Count: 11, Neg. LLF: 151.90004534655625
Iteration: 3, Func. Count: 17, Neg. LLF: 148.26761232323918
Iteration: 4, Func. Count: 22, Neg. LLF: 148.25297162294206
Iteration: 5, Func. Count: 27, Neg. LLF: 148.25078408569098
Iteration: 6, Func. Count: 32, Neg. LLF: 148.24556702482093
Iteration: 7, Func. Count: 37, Neg. LLF: 148.24274367053007
Iteration: 8, Func. Count: 42, Neg. LLF: 148.2419175881569
Iteration: 9, Func. Count: 47, Neg. LLF: 148.24186400268513
Iteration: 10, Func. Count: 51, Neg. LLF: 148.24186403797128
Optimization terminated successfully (Exit mode 0)
Current function value: 148.24186400268513
Iterations: 10
Function evaluations: 51
Gradient evaluations: 10
Iteration: 1, Func. Count: 7, Neg. LLF: 164.80973729748814
Iteration: 2, Func. Count: 14, Neg. LLF: 151.07362259412258
Iteration: 3, Func. Count: 21, Neg. LLF: 164.35952620090185
Iteration: 4, Func. Count: 29, Neg. LLF: 145.00209561762944
Iteration: 5, Func. Count: 35, Neg. LLF: 145.02466017982545
Iteration: 6, Func. Count: 42, Neg. LLF: 144.9654790725589
Iteration: 7, Func. Count: 48, Neg. LLF: 144.96027482567152
Iteration: 8, Func. Count: 54, Neg. LLF: 144.95901889354337
Iteration: 9, Func. Count: 60, Neg. LLF: 144.958994489276
Iteration: 10, Func. Count: 66, Neg. LLF: 144.95899225121158
Iteration: 11, Func. Count: 71, Neg. LLF: 144.95899225120633
Optimization terminated successfully (Exit mode 0)
Current function value: 144.95899225121158
Iterations: 11
Function evaluations: 71
Gradient evaluations: 11
Iteration: 1, Func. Count: 8, Neg. LLF: 145.6830112531618
Iteration: 2, Func. Count: 16, Neg. LLF: 161.61878737762427
Iteration: 3, Func. Count: 24, Neg. LLF: 144.36363465009984
Iteration: 4, Func. Count: 31, Neg. LLF: 145.46472354140926
Iteration: 5, Func. Count: 40, Neg. LLF: 145.7381759414369
Iteration: 6, Func. Count: 48, Neg. LLF: 144.11914978001386
Iteration: 7, Func. Count: 56, Neg. LLF: 144.26567422513895
Iteration: 8, Func. Count: 64, Neg. LLF: 144.11214434654087
Iteration: 9, Func. Count: 71, Neg. LLF: 144.11107068483184
Iteration: 10, Func. Count: 78, Neg. LLF: 144.1099400153782
Iteration: 11, Func. Count: 85, Neg. LLF: 144.1096922667553
Iteration: 12, Func. Count: 92, Neg. LLF: 144.1095932876833
Iteration: 13, Func. Count: 99, Neg. LLF: 144.10956913721932
Iteration: 14, Func. Count: 106, Neg. LLF: 144.10956751934842
Iteration: 15, Func. Count: 112, Neg. LLF: 144.1095675193859
Optimization terminated successfully (Exit mode 0)
Current function value: 144.10956751934842
Iterations: 15
Function evaluations: 112
Gradient evaluations: 15
Iteration: 1, Func. Count: 9, Neg. LLF: 158.91164210186054
Iteration: 2, Func. Count: 18, Neg. LLF: 143.96256055057808
Iteration: 3, Func. Count: 26, Neg. LLF: 143.82280015885254
Iteration: 4, Func. Count: 34, Neg. LLF: 143.81228757959815
Iteration: 5, Func. Count: 42, Neg. LLF: 143.80148839485705
Iteration: 6, Func. Count: 50, Neg. LLF: 143.80138735982834
Iteration: 7, Func. Count: 58, Neg. LLF: 143.80135299297004
Iteration: 8, Func. Count: 66, Neg. LLF: 143.80135217081522
Optimization terminated successfully (Exit mode 0)
Current function value: 143.80135217081522
Iterations: 8
Function evaluations: 66
Gradient evaluations: 8
Iteration: 1, Func. Count: 10, Neg. LLF: 164.26624072143056
Iteration: 2, Func. Count: 20, Neg. LLF: 150.04536878567575
Iteration: 3, Func. Count: 30, Neg. LLF: 144.13119655085822
Iteration: 4, Func. Count: 39, Neg. LLF: 143.7355412781231
Iteration: 5, Func. Count: 48, Neg. LLF: 143.710267762924
Iteration: 6, Func. Count: 57, Neg. LLF: 143.70281958432713
Iteration: 7, Func. Count: 67, Neg. LLF: 143.6772847873073
Iteration: 8, Func. Count: 76, Neg. LLF: 143.6761659010665
Iteration: 9, Func. Count: 85, Neg. LLF: 143.67575434987378
Iteration: 10, Func. Count: 94, Neg. LLF: 143.67572138697216
Iteration: 11, Func. Count: 103, Neg. LLF: 143.67571938155777
Iteration: 12, Func. Count: 111, Neg. LLF: 143.67571927976056
Optimization terminated successfully (Exit mode 0)
Current function value: 143.67571938155777
Iterations: 12
Function evaluations: 111
Gradient evaluations: 12
Iteration: 1, Func. Count: 7, Neg. LLF: 149.16739338894558
Iteration: 2, Func. Count: 13, Neg. LLF: 148.5145573125999
Iteration: 3, Func. Count: 20, Neg. LLF: 146.1840758808945
Iteration: 4, Func. Count: 27, Neg. LLF: 146.21888828975895
Iteration: 5, Func. Count: 34, Neg. LLF: 146.07202374397772
Iteration: 6, Func. Count: 40, Neg. LLF: 146.0696562849658
Iteration: 7, Func. Count: 46, Neg. LLF: 146.06491153872784
Iteration: 8, Func. Count: 52, Neg. LLF: 146.06455961008996
Iteration: 9, Func. Count: 58, Neg. LLF: 146.06453197836282
Iteration: 10, Func. Count: 63, Neg. LLF: 146.06453197836845
Optimization terminated successfully (Exit mode 0)
Current function value: 146.06453197836282
Iterations: 10
Function evaluations: 63
Gradient evaluations: 10
Iteration: 1, Func. Count: 8, Neg. LLF: 170.72720975613794
Iteration: 2, Func. Count: 16, Neg. LLF: 147.67221874420238
Iteration: 3, Func. Count: 24, Neg. LLF: 143.8622381759677
Iteration: 4, Func. Count: 31, Neg. LLF: 153.85878905596
Iteration: 5, Func. Count: 39, Neg. LLF: 147.79974771217076
Iteration: 6, Func. Count: 47, Neg. LLF: 147.2297491292675
Iteration: 7, Func. Count: 55, Neg. LLF: 143.77230706461634
Iteration: 8, Func. Count: 63, Neg. LLF: 143.19435430268751
Iteration: 9, Func. Count: 70, Neg. LLF: 143.16537436106483
Iteration: 10, Func. Count: 77, Neg. LLF: 143.16043795457873
Iteration: 11, Func. Count: 84, Neg. LLF: 143.15730786355923
Iteration: 12, Func. Count: 91, Neg. LLF: 143.1566927382362
Iteration: 13, Func. Count: 98, Neg. LLF: 143.15657952995784
Iteration: 14, Func. Count: 105, Neg. LLF: 143.15657523656964
Iteration: 15, Func. Count: 112, Neg. LLF: 143.156574401021
Optimization terminated successfully (Exit mode 0)
Current function value: 143.156574401021
Iterations: 15
Function evaluations: 112
Gradient evaluations: 15
Iteration: 1, Func. Count: 9, Neg. LLF: 163.2326145566493
Iteration: 2, Func. Count: 18, Neg. LLF: 152.0173412942039
Iteration: 3, Func. Count: 27, Neg. LLF: 143.6312988267024
Iteration: 4, Func. Count: 35, Neg. LLF: 145.37154023282048
Iteration: 5, Func. Count: 44, Neg. LLF: 143.2472901199194
Iteration: 6, Func. Count: 52, Neg. LLF: 143.35315395073962
Iteration: 7, Func. Count: 61, Neg. LLF: 143.16116946434127
Iteration: 8, Func. Count: 69, Neg. LLF: 143.15679642008047
Iteration: 9, Func. Count: 77, Neg. LLF: 143.15659320074414
Iteration: 10, Func. Count: 85, Neg. LLF: 143.15657706270827
Iteration: 11, Func. Count: 93, Neg. LLF: 143.15657475961933
Iteration: 12, Func. Count: 100, Neg. LLF: 143.15657461987115
Optimization terminated successfully (Exit mode 0)
Current function value: 143.15657475961933
Iterations: 12
Function evaluations: 100
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 148.7256243046794
Iteration: 2, Func. Count: 20, Neg. LLF: 152.9200668028938
Iteration: 3, Func. Count: 31, Neg. LLF: 145.41486489129832
Iteration: 4, Func. Count: 41, Neg. LLF: 142.03274748694852
Iteration: 5, Func. Count: 50, Neg. LLF: 149.59037317390676
Iteration: 6, Func. Count: 60, Neg. LLF: 143.20395399305045
Iteration: 7, Func. Count: 70, Neg. LLF: 141.37007440741564
Iteration: 8, Func. Count: 79, Neg. LLF: 141.30909782512646
Iteration: 9, Func. Count: 88, Neg. LLF: 141.37603177022203
Iteration: 10, Func. Count: 98, Neg. LLF: 141.24274044024722
Iteration: 11, Func. Count: 107, Neg. LLF: 141.23916875518591
Iteration: 12, Func. Count: 116, Neg. LLF: 141.23914971465803
Iteration: 13, Func. Count: 125, Neg. LLF: 141.23914829574449
Iteration: 14, Func. Count: 133, Neg. LLF: 141.2391481790212
Optimization terminated successfully (Exit mode 0)
Current function value: 141.23914829574449
Iterations: 14
Function evaluations: 133
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 163.65636053159875
Iteration: 2, Func. Count: 22, Neg. LLF: 147.49240351911678
Iteration: 3, Func. Count: 33, Neg. LLF: 148.34389898315123
Iteration: 4, Func. Count: 44, Neg. LLF: 143.47209978204754
Iteration: 5, Func. Count: 54, Neg. LLF: 143.70478101193603
Iteration: 6, Func. Count: 66, Neg. LLF: 158.46456619621677
Iteration: 7, Func. Count: 77, Neg. LLF: 141.41582359669684
Iteration: 8, Func. Count: 87, Neg. LLF: 142.95023780676888
Iteration: 9, Func. Count: 98, Neg. LLF: 141.42313725726152
Iteration: 10, Func. Count: 109, Neg. LLF: 141.24996331683846
Iteration: 11, Func. Count: 119, Neg. LLF: 141.24273581897688
Iteration: 12, Func. Count: 129, Neg. LLF: 141.24126691813382
Iteration: 13, Func. Count: 139, Neg. LLF: 141.23933732137593
Iteration: 14, Func. Count: 149, Neg. LLF: 141.2391559460668
Iteration: 15, Func. Count: 159, Neg. LLF: 141.2391482513229
Iteration: 16, Func. Count: 168, Neg. LLF: 141.23914813832118
Optimization terminated successfully (Exit mode 0)
Current function value: 141.2391482513229
Iterations: 16
Function evaluations: 168
Gradient evaluations: 16
Iteration: 1, Func. Count: 8, Neg. LLF: 146.84895471268027
Iteration: 2, Func. Count: 15, Neg. LLF: 150.05453435210964
Iteration: 3, Func. Count: 23, Neg. LLF: 146.10667590485806
Iteration: 4, Func. Count: 30, Neg. LLF: 146.1715310470423
Iteration: 5, Func. Count: 38, Neg. LLF: 146.0709921477454
Iteration: 6, Func. Count: 45, Neg. LLF: 146.06761100949902
Iteration: 7, Func. Count: 52, Neg. LLF: 146.0661769862863
Iteration: 8, Func. Count: 59, Neg. LLF: 146.06550173135727
Iteration: 9, Func. Count: 66, Neg. LLF: 146.06462999954294
Iteration: 10, Func. Count: 73, Neg. LLF: 146.06453847194604
Iteration: 11, Func. Count: 80, Neg. LLF: 146.06453173350152
Iteration: 12, Func. Count: 86, Neg. LLF: 146.0645316717989
Optimization terminated successfully (Exit mode 0)
Current function value: 146.06453173350152
Iterations: 12
Function evaluations: 86
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 166.62374526013065
Iteration: 2, Func. Count: 18, Neg. LLF: 154.57452198596917
Iteration: 3, Func. Count: 28, Neg. LLF: 155.53133114807176
Iteration: 4, Func. Count: 37, Neg. LLF: 143.2125129802422
Iteration: 5, Func. Count: 45, Neg. LLF: 142.85016372552673
Iteration: 6, Func. Count: 53, Neg. LLF: 142.7447107537415
Iteration: 7, Func. Count: 61, Neg. LLF: 142.70598982231283
Iteration: 8, Func. Count: 69, Neg. LLF: 142.69508273201072
Iteration: 9, Func. Count: 77, Neg. LLF: 142.68751821064347
Iteration: 10, Func. Count: 85, Neg. LLF: 142.68595959575896
Iteration: 11, Func. Count: 93, Neg. LLF: 142.6858167103176
Iteration: 12, Func. Count: 101, Neg. LLF: 142.68580216762612
Iteration: 13, Func. Count: 109, Neg. LLF: 142.68580153661102
Optimization terminated successfully (Exit mode 0)
Current function value: 142.68580153661102
Iterations: 13
Function evaluations: 109
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 164.10420921604634
Iteration: 2, Func. Count: 20, Neg. LLF: 152.72083278315168
Iteration: 3, Func. Count: 30, Neg. LLF: 144.14546332077066
Iteration: 4, Func. Count: 40, Neg. LLF: 143.09161513599082
Iteration: 5, Func. Count: 49, Neg. LLF: 159.45297842074203
Iteration: 6, Func. Count: 59, Neg. LLF: 152.48575404006863
Iteration: 7, Func. Count: 70, Neg. LLF: 142.0654962930595
Iteration: 8, Func. Count: 80, Neg. LLF: 141.75792190558946
Iteration: 9, Func. Count: 90, Neg. LLF: 142.16513020772626
Iteration: 10, Func. Count: 100, Neg. LLF: 141.3024150404042
Iteration: 11, Func. Count: 109, Neg. LLF: 141.28642458011538
Iteration: 12, Func. Count: 118, Neg. LLF: 141.2788155800817
Iteration: 13, Func. Count: 127, Neg. LLF: 141.2776367366312
Iteration: 14, Func. Count: 136, Neg. LLF: 141.27726278885703
Iteration: 15, Func. Count: 145, Neg. LLF: 141.2770538636208
Iteration: 16, Func. Count: 154, Neg. LLF: 141.2770303917555
Iteration: 17, Func. Count: 163, Neg. LLF: 141.27702940227667
Optimization terminated successfully (Exit mode 0)
Current function value: 141.27702940227667
Iterations: 17
Function evaluations: 163
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 160.43135206652346
Iteration: 2, Func. Count: 22, Neg. LLF: 152.52424205215408
Iteration: 3, Func. Count: 34, Neg. LLF: 148.02716006025867
Iteration: 4, Func. Count: 45, Neg. LLF: 141.86958463436937
Iteration: 5, Func. Count: 55, Neg. LLF: 143.73656186358943
Iteration: 6, Func. Count: 66, Neg. LLF: 142.65791165712892
Iteration: 7, Func. Count: 77, Neg. LLF: 144.6426761569861
Iteration: 8, Func. Count: 88, Neg. LLF: 142.14046118206466
Iteration: 9, Func. Count: 99, Neg. LLF: 141.3832252514041
Iteration: 10, Func. Count: 110, Neg. LLF: 141.3002810772247
Iteration: 11, Func. Count: 120, Neg. LLF: 141.28841362622367
Iteration: 12, Func. Count: 130, Neg. LLF: 141.2802118305731
Iteration: 13, Func. Count: 140, Neg. LLF: 141.27768447966017
Iteration: 14, Func. Count: 150, Neg. LLF: 141.27725763217086
Iteration: 15, Func. Count: 160, Neg. LLF: 141.27710226853299
Iteration: 16, Func. Count: 170, Neg. LLF: 141.27703853898132
Iteration: 17, Func. Count: 180, Neg. LLF: 141.2770295918294
Iteration: 18, Func. Count: 189, Neg. LLF: 141.2770295744469
Optimization terminated successfully (Exit mode 0)
Current function value: 141.2770295918294
Iterations: 18
Function evaluations: 189
Gradient evaluations: 18
Iteration: 1, Func. Count: 12, Neg. LLF: 156.62120350113008
Iteration: 2, Func. Count: 24, Neg. LLF: 166.07079909646757
Iteration: 3, Func. Count: 36, Neg. LLF: 158.63895612879548
Iteration: 4, Func. Count: 48, Neg. LLF: 142.24158552595472
Iteration: 5, Func. Count: 59, Neg. LLF: 143.46427708508776
Iteration: 6, Func. Count: 73, Neg. LLF: 178.1246304401394
Iteration: 7, Func. Count: 85, Neg. LLF: 144.9898746102381
Iteration: 8, Func. Count: 97, Neg. LLF: 141.34330108932957
Iteration: 9, Func. Count: 108, Neg. LLF: 141.29950737578412
Iteration: 10, Func. Count: 119, Neg. LLF: 141.28640671300474
Iteration: 11, Func. Count: 130, Neg. LLF: 141.27874342040815
Iteration: 12, Func. Count: 141, Neg. LLF: 141.27716523854667
Iteration: 13, Func. Count: 152, Neg. LLF: 141.27703438878586
Iteration: 14, Func. Count: 163, Neg. LLF: 141.27702961933332
Iteration: 15, Func. Count: 173, Neg. LLF: 141.27702961354657
Optimization terminated successfully (Exit mode 0)
Current function value: 141.27702961933332
Iterations: 15
Function evaluations: 173
Gradient evaluations: 15
Iteration: 1, Func. Count: 9, Neg. LLF: 155.25391768071842
Iteration: 2, Func. Count: 19, Neg. LLF: 146.88073139119913
Iteration: 3, Func. Count: 27, Neg. LLF: 147.62550107288396
Iteration: 4, Func. Count: 36, Neg. LLF: 145.7919774149371
Iteration: 5, Func. Count: 44, Neg. LLF: 145.78560195393928
Iteration: 6, Func. Count: 53, Neg. LLF: 145.8548568387634
Iteration: 7, Func. Count: 62, Neg. LLF: 145.74423393250012
Iteration: 8, Func. Count: 70, Neg. LLF: 145.74167266989645
Iteration: 9, Func. Count: 79, Neg. LLF: 145.7295718034499
Iteration: 10, Func. Count: 87, Neg. LLF: 145.72847855884015
Iteration: 11, Func. Count: 95, Neg. LLF: 145.7284649670043
Iteration: 12, Func. Count: 102, Neg. LLF: 145.72846496700197
Optimization terminated successfully (Exit mode 0)
Current function value: 145.7284649670043
Iterations: 12
Function evaluations: 102
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 166.58508778120392
Iteration: 2, Func. Count: 20, Neg. LLF: 151.44228694704276
Iteration: 3, Func. Count: 31, Neg. LLF: 143.99121484882087
Iteration: 4, Func. Count: 41, Neg. LLF: 143.28552701318154
Iteration: 5, Func. Count: 51, Neg. LLF: 148.6975383327719
Iteration: 6, Func. Count: 61, Neg. LLF: 142.71459787634936
Iteration: 7, Func. Count: 71, Neg. LLF: 142.25748501390962
Iteration: 8, Func. Count: 80, Neg. LLF: 143.3182431920348
Iteration: 9, Func. Count: 91, Neg. LLF: 142.24622341478315
Iteration: 10, Func. Count: 100, Neg. LLF: 142.2458697005335
Iteration: 11, Func. Count: 109, Neg. LLF: 142.24586164894046
Iteration: 12, Func. Count: 118, Neg. LLF: 142.24585728050488
Iteration: 13, Func. Count: 127, Neg. LLF: 142.24585486285477
Iteration: 14, Func. Count: 135, Neg. LLF: 142.245854820169
Optimization terminated successfully (Exit mode 0)
Current function value: 142.24585486285477
Iterations: 14
Function evaluations: 135
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 163.99549349120065
Iteration: 2, Func. Count: 22, Neg. LLF: 149.35429830825672
Iteration: 3, Func. Count: 33, Neg. LLF: 147.92369326403912
Iteration: 4, Func. Count: 46, Neg. LLF: 141.61904908236724
Iteration: 5, Func. Count: 56, Neg. LLF: 146.45012989110785
Iteration: 6, Func. Count: 67, Neg. LLF: 145.51017418791662
Iteration: 7, Func. Count: 78, Neg. LLF: 141.1093204541145
Iteration: 8, Func. Count: 89, Neg. LLF: 141.28405928639654
Iteration: 9, Func. Count: 100, Neg. LLF: 141.0933528603543
Iteration: 10, Func. Count: 111, Neg. LLF: 141.03118036100372
Iteration: 11, Func. Count: 121, Neg. LLF: 141.0308846423146
Iteration: 12, Func. Count: 131, Neg. LLF: 141.03066458309547
Iteration: 13, Func. Count: 141, Neg. LLF: 141.03041132505197
Iteration: 14, Func. Count: 151, Neg. LLF: 141.03039365180567
Iteration: 15, Func. Count: 161, Neg. LLF: 141.03039282747685
Optimization terminated successfully (Exit mode 0)
Current function value: 141.03039282747685
Iterations: 15
Function evaluations: 161
Gradient evaluations: 15
Iteration: 1, Func. Count: 12, Neg. LLF: 167.37361594477557
Iteration: 2, Func. Count: 24, Neg. LLF: 154.71829905504777
Iteration: 3, Func. Count: 36, Neg. LLF: 166.30892488936496
Iteration: 4, Func. Count: 49, Neg. LLF: 161.71704987177398
Iteration: 5, Func. Count: 61, Neg. LLF: 147.55583018079264
Iteration: 6, Func. Count: 73, Neg. LLF: 142.32469565012778
Iteration: 7, Func. Count: 84, Neg. LLF: 142.92462810997966
Iteration: 8, Func. Count: 96, Neg. LLF: 141.53062400768644
Iteration: 9, Func. Count: 107, Neg. LLF: 146.71232149848424
Iteration: 10, Func. Count: 120, Neg. LLF: 141.30194493703473
Iteration: 11, Func. Count: 132, Neg. LLF: 143.8521695303942
Iteration: 12, Func. Count: 144, Neg. LLF: 141.0988777791592
Iteration: 13, Func. Count: 155, Neg. LLF: 141.00257846045164
Iteration: 14, Func. Count: 166, Neg. LLF: 141.60864885870612
Iteration: 15, Func. Count: 179, Neg. LLF: 140.94805999936912
Iteration: 16, Func. Count: 190, Neg. LLF: 140.93873672561142
Iteration: 17, Func. Count: 201, Neg. LLF: 140.9307669682967
Iteration: 18, Func. Count: 212, Neg. LLF: 140.9302968198226
Iteration: 19, Func. Count: 223, Neg. LLF: 140.93025981453766
Iteration: 20, Func. Count: 234, Neg. LLF: 140.9302589653439
Optimization terminated successfully (Exit mode 0)
Current function value: 140.9302589653439
Iterations: 20
Function evaluations: 234
Gradient evaluations: 20
Iteration: 1, Func. Count: 13, Neg. LLF: 175.39925806598092
Iteration: 2, Func. Count: 29, Neg. LLF: 147.97364638389715
Iteration: 3, Func. Count: 43, Neg. LLF: 152.46082075025961
Iteration: 4, Func. Count: 56, Neg. LLF: 143.39611813040764
Iteration: 5, Func. Count: 68, Neg. LLF: 149.26786715585249
Iteration: 6, Func. Count: 82, Neg. LLF: 156.3614833182516
Iteration: 7, Func. Count: 96, Neg. LLF: 143.2278229411019
Iteration: 8, Func. Count: 109, Neg. LLF: 143.80256410025885
Iteration: 9, Func. Count: 122, Neg. LLF: 143.51818602576492
Iteration: 10, Func. Count: 135, Neg. LLF: 141.09667214747668
Iteration: 11, Func. Count: 148, Neg. LLF: 141.29546814962188
Iteration: 12, Func. Count: 161, Neg. LLF: 140.95696595481033
Iteration: 13, Func. Count: 173, Neg. LLF: 141.18137610748292
Iteration: 14, Func. Count: 186, Neg. LLF: 140.9317960175623
Iteration: 15, Func. Count: 198, Neg. LLF: 140.9309977024314
Iteration: 16, Func. Count: 210, Neg. LLF: 140.93065725000164
Iteration: 17, Func. Count: 222, Neg. LLF: 140.9303853974909
Iteration: 18, Func. Count: 234, Neg. LLF: 140.93033936112468
Iteration: 19, Func. Count: 246, Neg. LLF: 140.93030564481543
Iteration: 20, Func. Count: 258, Neg. LLF: 140.93027382917305
Iteration: 21, Func. Count: 270, Neg. LLF: 140.9302609270737
Iteration: 22, Func. Count: 282, Neg. LLF: 140.93025901371527
Iteration: 23, Func. Count: 293, Neg. LLF: 140.93025907074522
Optimization terminated successfully (Exit mode 0)
Current function value: 140.93025901371527
Iterations: 23
Function evaluations: 293
Gradient evaluations: 23
Iteration: 1, Func. Count: 10, Neg. LLF: 154.07880861177898
Iteration: 2, Func. Count: 21, Neg. LLF: 147.22073308492142
Iteration: 3, Func. Count: 30, Neg. LLF: 147.40145026264304
Iteration: 4, Func. Count: 40, Neg. LLF: 145.8049421527475
Iteration: 5, Func. Count: 49, Neg. LLF: 145.762513714327
Iteration: 6, Func. Count: 58, Neg. LLF: 146.01204543467995
Iteration: 7, Func. Count: 69, Neg. LLF: 145.74552579509577
Iteration: 8, Func. Count: 78, Neg. LLF: 145.7317205013345
Iteration: 9, Func. Count: 87, Neg. LLF: 145.7286978157619
Iteration: 10, Func. Count: 96, Neg. LLF: 145.7284718066692
Iteration: 11, Func. Count: 105, Neg. LLF: 145.7284649165993
Iteration: 12, Func. Count: 113, Neg. LLF: 145.72846499301966
Optimization terminated successfully (Exit mode 0)
Current function value: 145.7284649165993
Iterations: 12
Function evaluations: 113
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 166.48559032460813
Iteration: 2, Func. Count: 22, Neg. LLF: 151.4171167035946
Iteration: 3, Func. Count: 34, Neg. LLF: 143.90296370605864
Iteration: 4, Func. Count: 45, Neg. LLF: 143.308342742052
Iteration: 5, Func. Count: 56, Neg. LLF: 149.62153723965005
Iteration: 6, Func. Count: 67, Neg. LLF: 142.70645470534166
Iteration: 7, Func. Count: 78, Neg. LLF: 142.27218487521392
Iteration: 8, Func. Count: 88, Neg. LLF: 142.5271354368418
Iteration: 9, Func. Count: 99, Neg. LLF: 142.24610050438764
Iteration: 10, Func. Count: 109, Neg. LLF: 142.24586891488582
Iteration: 11, Func. Count: 119, Neg. LLF: 142.24586153584343
Iteration: 12, Func. Count: 129, Neg. LLF: 142.24585671013065
Iteration: 13, Func. Count: 139, Neg. LLF: 142.24585486210762
Iteration: 14, Func. Count: 148, Neg. LLF: 142.24585481934568
Optimization terminated successfully (Exit mode 0)
Current function value: 142.24585486210762
Iterations: 14
Function evaluations: 148
Gradient evaluations: 14
Iteration: 1, Func. Count: 12, Neg. LLF: 163.53919226247044
Iteration: 2, Func. Count: 24, Neg. LLF: 149.1535876491805
Iteration: 3, Func. Count: 36, Neg. LLF: 149.22792114202565
Iteration: 4, Func. Count: 50, Neg. LLF: 141.6389507306131
Iteration: 5, Func. Count: 61, Neg. LLF: 144.37914107291869
Iteration: 6, Func. Count: 73, Neg. LLF: 146.2814943572544
Iteration: 7, Func. Count: 86, Neg. LLF: 141.64435912206136
Iteration: 8, Func. Count: 98, Neg. LLF: 143.86785311863557
Iteration: 9, Func. Count: 110, Neg. LLF: 141.68507518165305
Iteration: 10, Func. Count: 122, Neg. LLF: 140.94493659682558
Iteration: 11, Func. Count: 134, Neg. LLF: 143.05411361771624
Iteration: 12, Func. Count: 146, Neg. LLF: 140.63378218331061
Iteration: 13, Func. Count: 158, Neg. LLF: 140.57613618116827
Iteration: 14, Func. Count: 169, Neg. LLF: 140.57268587199073
Iteration: 15, Func. Count: 180, Neg. LLF: 140.57153077056532
Iteration: 16, Func. Count: 191, Neg. LLF: 140.57122128183272
Iteration: 17, Func. Count: 202, Neg. LLF: 140.57121161172105
Iteration: 18, Func. Count: 212, Neg. LLF: 140.5712115652119
Optimization terminated successfully (Exit mode 0)
Current function value: 140.57121161172105
Iterations: 18
Function evaluations: 212
Gradient evaluations: 18
Iteration: 1, Func. Count: 13, Neg. LLF: 173.33212402017938
Iteration: 2, Func. Count: 28, Neg. LLF: 151.51688686046666
Iteration: 3, Func. Count: 42, Neg. LLF: 173.1894410173952
Iteration: 4, Func. Count: 55, Neg. LLF: 158.31702850427303
Iteration: 5, Func. Count: 68, Neg. LLF: 143.45196867873855
Iteration: 6, Func. Count: 81, Neg. LLF: 150.27528774472876
Iteration: 7, Func. Count: 94, Neg. LLF: 149.40009779784177
Iteration: 8, Func. Count: 107, Neg. LLF: 141.79048785014874
Iteration: 9, Func. Count: 120, Neg. LLF: 142.31487967287032
Iteration: 10, Func. Count: 133, Neg. LLF: 145.99396109871444
Iteration: 11, Func. Count: 146, Neg. LLF: 141.23850889485678
Iteration: 12, Func. Count: 159, Neg. LLF: 141.3952425263785
Iteration: 13, Func. Count: 172, Neg. LLF: 140.79512370760736
Iteration: 14, Func. Count: 184, Neg. LLF: 140.73793489962503
Iteration: 15, Func. Count: 196, Neg. LLF: 140.69659109000685
Iteration: 16, Func. Count: 208, Neg. LLF: 140.6317536655371
Iteration: 17, Func. Count: 220, Neg. LLF: 140.59483470800052
Iteration: 18, Func. Count: 232, Neg. LLF: 140.57597056850125
Iteration: 19, Func. Count: 244, Neg. LLF: 140.57187306559422
Iteration: 20, Func. Count: 256, Neg. LLF: 140.57122661239924
Iteration: 21, Func. Count: 268, Neg. LLF: 140.57121261590567
Iteration: 22, Func. Count: 280, Neg. LLF: 140.57121140482633
Iteration: 23, Func. Count: 291, Neg. LLF: 140.571211394846
Optimization terminated successfully (Exit mode 0)
Current function value: 140.57121140482633
Iterations: 23
Function evaluations: 291
Gradient evaluations: 23
Iteration: 1, Func. Count: 14, Neg. LLF: 174.90671330646094
Iteration: 2, Func. Count: 31, Neg. LLF: 148.28291019746598
Iteration: 3, Func. Count: 46, Neg. LLF: 156.77197048353293
Iteration: 4, Func. Count: 60, Neg. LLF: 157.1499320964377
Iteration: 5, Func. Count: 74, Neg. LLF: 142.96431298171893
Iteration: 6, Func. Count: 87, Neg. LLF: 143.15054916948137
Iteration: 7, Func. Count: 101, Neg. LLF: 147.9831211324927
Iteration: 8, Func. Count: 116, Neg. LLF: 142.21864672153205
Iteration: 9, Func. Count: 130, Neg. LLF: 140.97308966741718
Iteration: 10, Func. Count: 143, Neg. LLF: 141.2601819674156
Iteration: 11, Func. Count: 157, Neg. LLF: 141.13218595230887
Iteration: 12, Func. Count: 171, Neg. LLF: 141.01100360343264
Iteration: 13, Func. Count: 185, Neg. LLF: 141.0234058206843
Iteration: 14, Func. Count: 199, Neg. LLF: 140.6563145675587
Iteration: 15, Func. Count: 212, Neg. LLF: 140.6010500770221
Iteration: 16, Func. Count: 225, Neg. LLF: 140.57573712945754
Iteration: 17, Func. Count: 238, Neg. LLF: 140.57446150971418
Iteration: 18, Func. Count: 252, Neg. LLF: 140.57130865884568
Iteration: 19, Func. Count: 265, Neg. LLF: 140.57121780272874
Iteration: 20, Func. Count: 278, Neg. LLF: 140.57121151708805
Iteration: 21, Func. Count: 290, Neg. LLF: 140.57121157129504
Optimization terminated successfully (Exit mode 0)
Current function value: 140.57121151708805
Iterations: 21
Function evaluations: 290
Gradient evaluations: 21
Iteration: 1, Func. Count: 7, Neg. LLF: 145.40685696506154
Iteration: 2, Func. Count: 13, Neg. LLF: 151.34330334710123
Iteration: 3, Func. Count: 20, Neg. LLF: 146.0822689422007
Iteration: 4, Func. Count: 28, Neg. LLF: 155.90290362658757
Iteration: 5, Func. Count: 35, Neg. LLF: 144.22639448728717
Iteration: 6, Func. Count: 41, Neg. LLF: 143.9816435528156
Iteration: 7, Func. Count: 47, Neg. LLF: 143.71818426496793
Iteration: 8, Func. Count: 53, Neg. LLF: 143.7118624644742
Iteration: 9, Func. Count: 59, Neg. LLF: 143.70500245151038
Iteration: 10, Func. Count: 65, Neg. LLF: 143.70363517141197
Iteration: 11, Func. Count: 71, Neg. LLF: 143.7034304344736
Iteration: 12, Func. Count: 77, Neg. LLF: 143.70342355626423
Iteration: 13, Func. Count: 82, Neg. LLF: 143.70342353516347
Optimization terminated successfully (Exit mode 0)
Current function value: 143.70342355626423
Iterations: 13
Function evaluations: 82
Gradient evaluations: 13
Iteration: 1, Func. Count: 8, Neg. LLF: 152.63286058405424
Iteration: 2, Func. Count: 16, Neg. LLF: 144.7726559497305
Iteration: 3, Func. Count: 24, Neg. LLF: 145.2111608935642
Iteration: 4, Func. Count: 32, Neg. LLF: 147.49151965620774
Iteration: 5, Func. Count: 41, Neg. LLF: 142.92582055824653
Iteration: 6, Func. Count: 48, Neg. LLF: 143.5638453665112
Iteration: 7, Func. Count: 56, Neg. LLF: 143.1882252361857
Iteration: 8, Func. Count: 64, Neg. LLF: 142.7374995746526
Iteration: 9, Func. Count: 71, Neg. LLF: 142.6802884935164
Iteration: 10, Func. Count: 78, Neg. LLF: 142.6607925117661
Iteration: 11, Func. Count: 85, Neg. LLF: 142.65550965960827
Iteration: 12, Func. Count: 92, Neg. LLF: 142.65498736105806
Iteration: 13, Func. Count: 99, Neg. LLF: 142.6549359800013
Iteration: 14, Func. Count: 105, Neg. LLF: 142.65493597787653
Optimization terminated successfully (Exit mode 0)
Current function value: 142.6549359800013
Iterations: 14
Function evaluations: 105
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 159.71254681621278
Iteration: 2, Func. Count: 18, Neg. LLF: 151.8797538896431
Iteration: 3, Func. Count: 27, Neg. LLF: 144.20355107711748
Iteration: 4, Func. Count: 35, Neg. LLF: 143.22435062524363
Iteration: 5, Func. Count: 43, Neg. LLF: 145.25712480027966
Iteration: 6, Func. Count: 52, Neg. LLF: 144.60024765369002
Iteration: 7, Func. Count: 61, Neg. LLF: 142.8415001785189
Iteration: 8, Func. Count: 69, Neg. LLF: 142.78440605090736
Iteration: 9, Func. Count: 77, Neg. LLF: 142.74402085661077
Iteration: 10, Func. Count: 85, Neg. LLF: 142.72797519759496
Iteration: 11, Func. Count: 93, Neg. LLF: 142.71419537425186
Iteration: 12, Func. Count: 101, Neg. LLF: 142.70368271514863
Iteration: 13, Func. Count: 109, Neg. LLF: 142.66804753053907
Iteration: 14, Func. Count: 117, Neg. LLF: 142.65569782675323
Iteration: 15, Func. Count: 125, Neg. LLF: 142.6550916129647
Iteration: 16, Func. Count: 133, Neg. LLF: 142.65494082140947
Iteration: 17, Func. Count: 141, Neg. LLF: 142.65493600330183
Iteration: 18, Func. Count: 148, Neg. LLF: 142.65493611668649
Optimization terminated successfully (Exit mode 0)
Current function value: 142.65493600330183
Iterations: 18
Function evaluations: 148
Gradient evaluations: 18
Iteration: 1, Func. Count: 10, Neg. LLF: 145.31378713885854
Iteration: 2, Func. Count: 20, Neg. LLF: 149.9016599239684
Iteration: 3, Func. Count: 31, Neg. LLF: 147.11621564361326
Iteration: 4, Func. Count: 41, Neg. LLF: 143.96024560757218
Iteration: 5, Func. Count: 50, Neg. LLF: 144.10135070212334
Iteration: 6, Func. Count: 60, Neg. LLF: 145.04315090542286
Iteration: 7, Func. Count: 71, Neg. LLF: 143.1598985142604
Iteration: 8, Func. Count: 81, Neg. LLF: 142.71455540246833
Iteration: 9, Func. Count: 90, Neg. LLF: 142.70067200136475
Iteration: 10, Func. Count: 99, Neg. LLF: 142.68199669011244
Iteration: 11, Func. Count: 108, Neg. LLF: 142.66240485525944
Iteration: 12, Func. Count: 117, Neg. LLF: 142.65573008102632
Iteration: 13, Func. Count: 126, Neg. LLF: 142.6549722743132
Iteration: 14, Func. Count: 135, Neg. LLF: 142.65493888582762
Iteration: 15, Func. Count: 144, Neg. LLF: 142.65493618203203
Iteration: 16, Func. Count: 152, Neg. LLF: 142.65493627180018
Optimization terminated successfully (Exit mode 0)
Current function value: 142.65493618203203
Iterations: 16
Function evaluations: 152
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 145.0450267134754
Iteration: 2, Func. Count: 22, Neg. LLF: 151.51101450766444
Iteration: 3, Func. Count: 35, Neg. LLF: 173.92607837902034
Iteration: 4, Func. Count: 46, Neg. LLF: 143.08246735987981
Iteration: 5, Func. Count: 56, Neg. LLF: 142.83807993290367
Iteration: 6, Func. Count: 66, Neg. LLF: 153.75894704396913
Iteration: 7, Func. Count: 78, Neg. LLF: 142.70676899443566
Iteration: 8, Func. Count: 88, Neg. LLF: 142.70073469549797
Iteration: 9, Func. Count: 98, Neg. LLF: 142.6771610306755
Iteration: 10, Func. Count: 108, Neg. LLF: 142.65977753889806
Iteration: 11, Func. Count: 118, Neg. LLF: 142.6552270068768
Iteration: 12, Func. Count: 128, Neg. LLF: 142.6549365938548
Iteration: 13, Func. Count: 137, Neg. LLF: 142.65493671361054
Optimization terminated successfully (Exit mode 0)
Current function value: 142.6549365938548
Iterations: 13
Function evaluations: 137
Gradient evaluations: 13
Iteration: 1, Func. Count: 8, Neg. LLF: 151.54765628925097
Iteration: 2, Func. Count: 16, Neg. LLF: 151.11466289154433
Iteration: 3, Func. Count: 24, Neg. LLF: 144.44212970069287
Iteration: 4, Func. Count: 31, Neg. LLF: 144.21504415714674
Iteration: 5, Func. Count: 38, Neg. LLF: 144.59069350426248
Iteration: 6, Func. Count: 46, Neg. LLF: 143.86683395379123
Iteration: 7, Func. Count: 53, Neg. LLF: 143.7985124003108
Iteration: 8, Func. Count: 60, Neg. LLF: 143.72985411082593
Iteration: 9, Func. Count: 67, Neg. LLF: 143.70876633370045
Iteration: 10, Func. Count: 74, Neg. LLF: 143.70350474830346
Iteration: 11, Func. Count: 81, Neg. LLF: 143.70342408788872
Iteration: 12, Func. Count: 88, Neg. LLF: 143.7034234357701
Optimization terminated successfully (Exit mode 0)
Current function value: 143.7034234357701
Iterations: 12
Function evaluations: 88
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 153.5168812807115
Iteration: 2, Func. Count: 18, Neg. LLF: 148.9152176678568
Iteration: 3, Func. Count: 27, Neg. LLF: 144.36709765985802
Iteration: 4, Func. Count: 36, Neg. LLF: 143.48751709368037
Iteration: 5, Func. Count: 45, Neg. LLF: 143.2555970993596
Iteration: 6, Func. Count: 54, Neg. LLF: 145.0919168427868
Iteration: 7, Func. Count: 63, Neg. LLF: 142.94803167822417
Iteration: 8, Func. Count: 71, Neg. LLF: 142.9326999405805
Iteration: 9, Func. Count: 79, Neg. LLF: 142.92406192684322
Iteration: 10, Func. Count: 87, Neg. LLF: 144.14405266742475
Iteration: 11, Func. Count: 96, Neg. LLF: 145.1357491968181
Iteration: 12, Func. Count: 105, Neg. LLF: 145.16596470399077
Iteration: 13, Func. Count: 114, Neg. LLF: 145.14115621025343
Iteration: 14, Func. Count: 123, Neg. LLF: 145.06072865109527
Iteration: 15, Func. Count: 132, Neg. LLF: 143.79528636819106
Iteration: 16, Func. Count: 141, Neg. LLF: 144.8723545134522
Iteration: 17, Func. Count: 150, Neg. LLF: 143.09192704121742
Iteration: 18, Func. Count: 159, Neg. LLF: 142.77861303514865
Iteration: 19, Func. Count: 167, Neg. LLF: 142.76378350039727
Iteration: 20, Func. Count: 175, Neg. LLF: 142.74713514184032
Iteration: 21, Func. Count: 183, Neg. LLF: 142.7385658983029
Iteration: 22, Func. Count: 191, Neg. LLF: 142.7381315841911
Iteration: 23, Func. Count: 199, Neg. LLF: 142.73811912051292
Iteration: 24, Func. Count: 206, Neg. LLF: 142.7381190109688
Optimization terminated successfully (Exit mode 0)
Current function value: 142.73811912051292
Iterations: 24
Function evaluations: 206
Gradient evaluations: 24
Iteration: 1, Func. Count: 10, Neg. LLF: 162.43431525738777
Iteration: 2, Func. Count: 20, Neg. LLF: 154.4164756372433
Iteration: 3, Func. Count: 30, Neg. LLF: 146.4377873480599
Iteration: 4, Func. Count: 40, Neg. LLF: 143.22302815081335
Iteration: 5, Func. Count: 49, Neg. LLF: 151.55280258239335
Iteration: 6, Func. Count: 59, Neg. LLF: 143.83940209441155
Iteration: 7, Func. Count: 69, Neg. LLF: 142.82446159590168
Iteration: 8, Func. Count: 78, Neg. LLF: 142.75947457005313
Iteration: 9, Func. Count: 87, Neg. LLF: 142.74806653399236
Iteration: 10, Func. Count: 96, Neg. LLF: 142.74144504140722
Iteration: 11, Func. Count: 105, Neg. LLF: 142.73907210545903
Iteration: 12, Func. Count: 114, Neg. LLF: 142.738405275537
Iteration: 13, Func. Count: 123, Neg. LLF: 142.73814938357955
Iteration: 14, Func. Count: 132, Neg. LLF: 142.73811990114902
Iteration: 15, Func. Count: 141, Neg. LLF: 142.73811888285832
Iteration: 16, Func. Count: 149, Neg. LLF: 142.7381188019704
Optimization terminated successfully (Exit mode 0)
Current function value: 142.73811888285832
Iterations: 16
Function evaluations: 149
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 148.52639422133205
Iteration: 2, Func. Count: 22, Neg. LLF: 155.61548309443933
Iteration: 3, Func. Count: 34, Neg. LLF: 145.9407123182806
Iteration: 4, Func. Count: 45, Neg. LLF: 142.82311171650412
Iteration: 5, Func. Count: 55, Neg. LLF: 142.407000429712
Iteration: 6, Func. Count: 66, Neg. LLF: 150.23230078666128
Iteration: 7, Func. Count: 78, Neg. LLF: 143.15305497750379
Iteration: 8, Func. Count: 89, Neg. LLF: 140.79073632598698
Iteration: 9, Func. Count: 99, Neg. LLF: 140.72370750710783
Iteration: 10, Func. Count: 109, Neg. LLF: 140.78264266638502
Iteration: 11, Func. Count: 120, Neg. LLF: 140.6808373952405
Iteration: 12, Func. Count: 130, Neg. LLF: 140.67746328337128
Iteration: 13, Func. Count: 140, Neg. LLF: 140.67708645341344
Iteration: 14, Func. Count: 150, Neg. LLF: 140.67701931277938
Iteration: 15, Func. Count: 160, Neg. LLF: 140.67697399268496
Iteration: 16, Func. Count: 170, Neg. LLF: 140.6769732172193
Optimization terminated successfully (Exit mode 0)
Current function value: 140.6769732172193
Iterations: 16
Function evaluations: 170
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 145.505009809891
Iteration: 2, Func. Count: 24, Neg. LLF: 151.27927672643594
Iteration: 3, Func. Count: 38, Neg. LLF: 174.13945208543845
Iteration: 4, Func. Count: 50, Neg. LLF: 143.29803757673864
Iteration: 5, Func. Count: 61, Neg. LLF: 143.0512795899174
Iteration: 6, Func. Count: 72, Neg. LLF: 145.69964803994375
Iteration: 7, Func. Count: 85, Neg. LLF: 142.71540836654106
Iteration: 8, Func. Count: 96, Neg. LLF: 142.70668216127027
Iteration: 9, Func. Count: 107, Neg. LLF: 142.69890194456292
Iteration: 10, Func. Count: 118, Neg. LLF: 142.6904483780522
Iteration: 11, Func. Count: 129, Neg. LLF: 142.6724366414171
Iteration: 12, Func. Count: 140, Neg. LLF: 142.6589131737848
Iteration: 13, Func. Count: 151, Neg. LLF: 142.65525602804715
Iteration: 14, Func. Count: 162, Neg. LLF: 142.65493787515632
Iteration: 15, Func. Count: 173, Neg. LLF: 142.65493603048694
Iteration: 16, Func. Count: 183, Neg. LLF: 142.654936150378
Optimization terminated successfully (Exit mode 0)
Current function value: 142.65493603048694
Iterations: 16
Function evaluations: 183
Gradient evaluations: 16
Iteration: 1, Func. Count: 9, Neg. LLF: 145.89022836795561
Iteration: 2, Func. Count: 17, Neg. LLF: 151.23326030402004
Iteration: 3, Func. Count: 26, Neg. LLF: 147.6438609931385
Iteration: 4, Func. Count: 37, Neg. LLF: 145.39192472451396
Iteration: 5, Func. Count: 46, Neg. LLF: 144.0754029224793
Iteration: 6, Func. Count: 54, Neg. LLF: 144.13757381768565
Iteration: 7, Func. Count: 63, Neg. LLF: 143.58875417737167
Iteration: 8, Func. Count: 71, Neg. LLF: 143.57445564001713
Iteration: 9, Func. Count: 79, Neg. LLF: 143.5737422887348
Iteration: 10, Func. Count: 87, Neg. LLF: 143.57373889716902
Iteration: 11, Func. Count: 94, Neg. LLF: 143.57373888634592
Optimization terminated successfully (Exit mode 0)
Current function value: 143.57373889716902
Iterations: 11
Function evaluations: 94
Gradient evaluations: 11
Iteration: 1, Func. Count: 10, Neg. LLF: 160.40331398657736
Iteration: 2, Func. Count: 20, Neg. LLF: 149.2637476750668
Iteration: 3, Func. Count: 30, Neg. LLF: 143.19072527189778
Iteration: 4, Func. Count: 40, Neg. LLF: 143.6113519595914
Iteration: 5, Func. Count: 50, Neg. LLF: 147.77474901465152
Iteration: 6, Func. Count: 60, Neg. LLF: 142.9446429585892
Iteration: 7, Func. Count: 70, Neg. LLF: 142.4503734360462
Iteration: 8, Func. Count: 80, Neg. LLF: 142.148744388773
Iteration: 9, Func. Count: 89, Neg. LLF: 142.1449670979346
Iteration: 10, Func. Count: 98, Neg. LLF: 142.1438146221192
Iteration: 11, Func. Count: 107, Neg. LLF: 142.14320778097175
Iteration: 12, Func. Count: 116, Neg. LLF: 142.14305153817634
Iteration: 13, Func. Count: 125, Neg. LLF: 142.14303597574906
Iteration: 14, Func. Count: 134, Neg. LLF: 142.1430351531373
Optimization terminated successfully (Exit mode 0)
Current function value: 142.1430351531373
Iterations: 14
Function evaluations: 134
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 153.29020326992352
Iteration: 2, Func. Count: 22, Neg. LLF: 151.5911302621994
Iteration: 3, Func. Count: 34, Neg. LLF: 145.6105380551256
Iteration: 4, Func. Count: 45, Neg. LLF: 142.83455677699314
Iteration: 5, Func. Count: 56, Neg. LLF: 144.9640513408451
Iteration: 6, Func. Count: 67, Neg. LLF: 141.77650013036413
Iteration: 7, Func. Count: 77, Neg. LLF: 142.3674120965557
Iteration: 8, Func. Count: 88, Neg. LLF: 148.51047824118353
Iteration: 9, Func. Count: 101, Neg. LLF: 144.54057308725135
Iteration: 10, Func. Count: 113, Neg. LLF: 141.50405509940006
Iteration: 11, Func. Count: 124, Neg. LLF: 141.50331726932004
Iteration: 12, Func. Count: 135, Neg. LLF: 141.3478855434308
Iteration: 13, Func. Count: 146, Neg. LLF: 141.254258567322
Iteration: 14, Func. Count: 156, Neg. LLF: 141.24879576208326
Iteration: 15, Func. Count: 166, Neg. LLF: 141.24791553919005
Iteration: 16, Func. Count: 176, Neg. LLF: 141.24774358220589
Iteration: 17, Func. Count: 186, Neg. LLF: 141.24771784032956
Iteration: 18, Func. Count: 196, Neg. LLF: 141.24770103302495
Iteration: 19, Func. Count: 206, Neg. LLF: 141.24769355332887
Iteration: 20, Func. Count: 216, Neg. LLF: 141.2476924428471
Iteration: 21, Func. Count: 225, Neg. LLF: 141.24769239903935
Optimization terminated successfully (Exit mode 0)
Current function value: 141.2476924428471
Iterations: 21
Function evaluations: 225
Gradient evaluations: 21
Iteration: 1, Func. Count: 12, Neg. LLF: 147.64526751882295
Iteration: 2, Func. Count: 24, Neg. LLF: 154.71855927150344
Iteration: 3, Func. Count: 37, Neg. LLF: 151.15614106633925
Iteration: 4, Func. Count: 49, Neg. LLF: 151.70934518246736
Iteration: 5, Func. Count: 61, Neg. LLF: 145.26232910268308
Iteration: 6, Func. Count: 73, Neg. LLF: 146.70054305645544
Iteration: 7, Func. Count: 85, Neg. LLF: 146.16000050098032
Iteration: 8, Func. Count: 97, Neg. LLF: 147.06790587065092
Iteration: 9, Func. Count: 109, Neg. LLF: 145.38323120685163
Iteration: 10, Func. Count: 121, Neg. LLF: 142.9223845050984
Iteration: 11, Func. Count: 133, Neg. LLF: 142.22594365932846
Iteration: 12, Func. Count: 144, Neg. LLF: 142.0872841785275
Iteration: 13, Func. Count: 155, Neg. LLF: 142.6319467425757
Iteration: 14, Func. Count: 167, Neg. LLF: 142.30756482343338
Iteration: 15, Func. Count: 180, Neg. LLF: 142.49262828221754
Iteration: 16, Func. Count: 192, Neg. LLF: 141.7028396328662
Iteration: 17, Func. Count: 203, Neg. LLF: 141.4908716560066
Iteration: 18, Func. Count: 214, Neg. LLF: 141.37725786606595
Iteration: 19, Func. Count: 225, Neg. LLF: 143.11808970374193
Iteration: 20, Func. Count: 237, Neg. LLF: 141.29126210312057
Iteration: 21, Func. Count: 248, Neg. LLF: 141.29005046196548
Iteration: 22, Func. Count: 260, Neg. LLF: 141.2622786524376
Iteration: 23, Func. Count: 272, Neg. LLF: 141.24938263523663
Iteration: 24, Func. Count: 283, Neg. LLF: 141.2478750407223
Iteration: 25, Func. Count: 294, Neg. LLF: 141.24776918191924
Iteration: 26, Func. Count: 305, Neg. LLF: 141.24774449312923
Iteration: 27, Func. Count: 316, Neg. LLF: 141.24772055972204
Iteration: 28, Func. Count: 327, Neg. LLF: 141.2477116179147
Iteration: 29, Func. Count: 338, Neg. LLF: 141.24770244626154
Iteration: 30, Func. Count: 349, Neg. LLF: 141.24769508544827
Iteration: 31, Func. Count: 360, Neg. LLF: 141.24769266004864
Iteration: 32, Func. Count: 370, Neg. LLF: 141.24769265749524
Optimization terminated successfully (Exit mode 0)
Current function value: 141.24769266004864
Iterations: 32
Function evaluations: 370
Gradient evaluations: 32
Iteration: 1, Func. Count: 13, Neg. LLF: 145.44619593475332
Iteration: 2, Func. Count: 26, Neg. LLF: 155.7304369914091
Iteration: 3, Func. Count: 42, Neg. LLF: 173.8654284862719
Iteration: 4, Func. Count: 55, Neg. LLF: 145.98242591488426
Iteration: 5, Func. Count: 68, Neg. LLF: 142.88759565688378
Iteration: 6, Func. Count: 80, Neg. LLF: 142.82072923716018
Iteration: 7, Func. Count: 92, Neg. LLF: 142.84900551009522
Iteration: 8, Func. Count: 105, Neg. LLF: 142.7485675652441
Iteration: 9, Func. Count: 117, Neg. LLF: 142.56982238748185
Iteration: 10, Func. Count: 129, Neg. LLF: 143.99228159572456
Iteration: 11, Func. Count: 142, Neg. LLF: 143.99698252819567
Iteration: 12, Func. Count: 155, Neg. LLF: 144.39740647802435
Iteration: 13, Func. Count: 168, Neg. LLF: 146.8309270885555
Iteration: 14, Func. Count: 181, Neg. LLF: 144.03757192534954
Iteration: 15, Func. Count: 194, Neg. LLF: 143.9978031572079
Iteration: 16, Func. Count: 207, Neg. LLF: 143.63800838387763
Iteration: 17, Func. Count: 220, Neg. LLF: 142.17583123501285
Iteration: 18, Func. Count: 232, Neg. LLF: 142.15532880142032
Iteration: 19, Func. Count: 244, Neg. LLF: 142.14524752022825
Iteration: 20, Func. Count: 256, Neg. LLF: 142.14370033402798
Iteration: 21, Func. Count: 268, Neg. LLF: 142.14304330585497
Iteration: 22, Func. Count: 280, Neg. LLF: 142.14303563440308
Iteration: 23, Func. Count: 292, Neg. LLF: 142.14303506409513
Optimization terminated successfully (Exit mode 0)
Current function value: 142.14303506409513
Iterations: 23
Function evaluations: 292
Gradient evaluations: 23
Iteration: 1, Func. Count: 10, Neg. LLF: 145.88470718133541
Iteration: 2, Func. Count: 19, Neg. LLF: 147.57451125331698
Iteration: 3, Func. Count: 29, Neg. LLF: 149.9853858504122
Iteration: 4, Func. Count: 41, Neg. LLF: 148.09576586130828
Iteration: 5, Func. Count: 51, Neg. LLF: 148.0166168575908
Iteration: 6, Func. Count: 61, Neg. LLF: 143.96232301020336
Iteration: 7, Func. Count: 70, Neg. LLF: 143.361238331356
Iteration: 8, Func. Count: 79, Neg. LLF: 143.18454430758302
Iteration: 9, Func. Count: 88, Neg. LLF: 143.75646065077103
Iteration: 10, Func. Count: 99, Neg. LLF: 143.1705416992505
Iteration: 11, Func. Count: 108, Neg. LLF: 143.15610594590083
Iteration: 12, Func. Count: 117, Neg. LLF: 143.1555084762672
Iteration: 13, Func. Count: 126, Neg. LLF: 143.15523975692224
Iteration: 14, Func. Count: 135, Neg. LLF: 143.1552352695124
Iteration: 15, Func. Count: 143, Neg. LLF: 143.15523526951722
Optimization terminated successfully (Exit mode 0)
Current function value: 143.1552352695124
Iterations: 15
Function evaluations: 143
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 159.28518502940233
Iteration: 2, Func. Count: 22, Neg. LLF: 149.99378972064852
Iteration: 3, Func. Count: 33, Neg. LLF: 153.71211535021075
Iteration: 4, Func. Count: 44, Neg. LLF: 142.72318136766617
Iteration: 5, Func. Count: 55, Neg. LLF: 146.1306158654719
Iteration: 6, Func. Count: 68, Neg. LLF: 147.1369743450542
Iteration: 7, Func. Count: 79, Neg. LLF: 141.39879871113905
Iteration: 8, Func. Count: 89, Neg. LLF: 141.11026859613185
Iteration: 9, Func. Count: 99, Neg. LLF: 141.07352966401862
Iteration: 10, Func. Count: 109, Neg. LLF: 141.06717505917763
Iteration: 11, Func. Count: 119, Neg. LLF: 141.0650108109642
Iteration: 12, Func. Count: 129, Neg. LLF: 141.06492425763443
Iteration: 13, Func. Count: 139, Neg. LLF: 141.0649216336192
Iteration: 14, Func. Count: 148, Neg. LLF: 141.0649216336316
Optimization terminated successfully (Exit mode 0)
Current function value: 141.0649216336192
Iterations: 14
Function evaluations: 148
Gradient evaluations: 14
Iteration: 1, Func. Count: 12, Neg. LLF: 156.79900346384835
Iteration: 2, Func. Count: 24, Neg. LLF: 146.12896148038527
Iteration: 3, Func. Count: 36, Neg. LLF: 157.17188283378542
Iteration: 4, Func. Count: 50, Neg. LLF: 153.1987769067249
Iteration: 5, Func. Count: 62, Neg. LLF: 147.7988440202915
Iteration: 6, Func. Count: 74, Neg. LLF: 142.38963083419662
Iteration: 7, Func. Count: 85, Neg. LLF: 142.0146764417032
Iteration: 8, Func. Count: 96, Neg. LLF: 141.77406829864753
Iteration: 9, Func. Count: 107, Neg. LLF: 141.31132007952252
Iteration: 10, Func. Count: 118, Neg. LLF: 141.19229555363185
Iteration: 11, Func. Count: 129, Neg. LLF: 141.11172496950496
Iteration: 12, Func. Count: 140, Neg. LLF: 141.08185626557002
Iteration: 13, Func. Count: 151, Neg. LLF: 141.0717956834603
Iteration: 14, Func. Count: 162, Neg. LLF: 141.06805854049327
Iteration: 15, Func. Count: 173, Neg. LLF: 141.06706190623916
Iteration: 16, Func. Count: 184, Neg. LLF: 141.06584505370998
Iteration: 17, Func. Count: 195, Neg. LLF: 141.065165352782
Iteration: 18, Func. Count: 206, Neg. LLF: 141.06494016566015
Iteration: 19, Func. Count: 217, Neg. LLF: 141.0649211521622
Iteration: 20, Func. Count: 228, Neg. LLF: 141.0649205511145
Optimization terminated successfully (Exit mode 0)
Current function value: 141.0649205511145
Iterations: 20
Function evaluations: 228
Gradient evaluations: 20
Iteration: 1, Func. Count: 13, Neg. LLF: 151.25380459655915
Iteration: 2, Func. Count: 26, Neg. LLF: 148.11582942200397
Iteration: 3, Func. Count: 41, Neg. LLF: 153.79936593376254
Iteration: 4, Func. Count: 56, Neg. LLF: 146.52295550260266
Iteration: 5, Func. Count: 69, Neg. LLF: 145.45816299705268
Iteration: 6, Func. Count: 82, Neg. LLF: 142.75694760724082
Iteration: 7, Func. Count: 94, Neg. LLF: 142.0846116933251
Iteration: 8, Func. Count: 106, Neg. LLF: 141.69488907389734
Iteration: 9, Func. Count: 118, Neg. LLF: 141.3138826468986
Iteration: 10, Func. Count: 130, Neg. LLF: 141.145366169873
Iteration: 11, Func. Count: 142, Neg. LLF: 141.07624558485045
Iteration: 12, Func. Count: 154, Neg. LLF: 141.06915769182658
Iteration: 13, Func. Count: 166, Neg. LLF: 141.0658403647863
Iteration: 14, Func. Count: 178, Neg. LLF: 141.06557156939454
Iteration: 15, Func. Count: 190, Neg. LLF: 141.06503687672804
Iteration: 16, Func. Count: 202, Neg. LLF: 141.0649583021879
Iteration: 17, Func. Count: 214, Neg. LLF: 141.0649260663185
Iteration: 18, Func. Count: 226, Neg. LLF: 141.06492136709187
Iteration: 19, Func. Count: 238, Neg. LLF: 141.06492072791477
Optimization terminated successfully (Exit mode 0)
Current function value: 141.06492072791477
Iterations: 19
Function evaluations: 238
Gradient evaluations: 19
Iteration: 1, Func. Count: 14, Neg. LLF: 150.31352396187793
Iteration: 2, Func. Count: 31, Neg. LLF: 149.28165319112853
Iteration: 3, Func. Count: 46, Neg. LLF: 150.50457105386286
Iteration: 4, Func. Count: 60, Neg. LLF: 145.39417681273858
Iteration: 5, Func. Count: 74, Neg. LLF: 143.87333419496213
Iteration: 6, Func. Count: 88, Neg. LLF: 142.2929281585213
Iteration: 7, Func. Count: 102, Neg. LLF: 141.40755588728845
Iteration: 8, Func. Count: 115, Neg. LLF: 141.7493565181087
Iteration: 9, Func. Count: 129, Neg. LLF: 141.19166498953663
Iteration: 10, Func. Count: 142, Neg. LLF: 141.12651290836322
Iteration: 11, Func. Count: 155, Neg. LLF: 141.10342872625537
Iteration: 12, Func. Count: 168, Neg. LLF: 141.09176988304978
Iteration: 13, Func. Count: 181, Neg. LLF: 141.07503616286238
Iteration: 14, Func. Count: 194, Neg. LLF: 141.06857962924767
Iteration: 15, Func. Count: 207, Neg. LLF: 141.066081937402
Iteration: 16, Func. Count: 220, Neg. LLF: 141.06533710916614
Iteration: 17, Func. Count: 233, Neg. LLF: 141.06497831215992
Iteration: 18, Func. Count: 246, Neg. LLF: 141.064924038584
Iteration: 19, Func. Count: 259, Neg. LLF: 141.064920605994
Iteration: 20, Func. Count: 271, Neg. LLF: 141.06492074453934
Optimization terminated successfully (Exit mode 0)
Current function value: 141.064920605994
Iterations: 20
Function evaluations: 271
Gradient evaluations: 20
Iteration: 1, Func. Count: 11, Neg. LLF: 145.23446939408166
Iteration: 2, Func. Count: 21, Neg. LLF: 147.99504416864156
Iteration: 3, Func. Count: 32, Neg. LLF: 148.62953710925868
Iteration: 4, Func. Count: 43, Neg. LLF: 147.90609496920467
Iteration: 5, Func. Count: 54, Neg. LLF: 145.37939631636635
Iteration: 6, Func. Count: 65, Neg. LLF: 143.51934478838086
Iteration: 7, Func. Count: 75, Neg. LLF: 143.29776955852398
Iteration: 8, Func. Count: 85, Neg. LLF: 143.2125407589832
Iteration: 9, Func. Count: 95, Neg. LLF: 148.36117940158536
Iteration: 10, Func. Count: 106, Neg. LLF: 143.1787134724854
Iteration: 11, Func. Count: 117, Neg. LLF: 143.15631189543913
Iteration: 12, Func. Count: 127, Neg. LLF: 143.15528250721513
Iteration: 13, Func. Count: 137, Neg. LLF: 143.15526546529642
Iteration: 14, Func. Count: 147, Neg. LLF: 143.15523762231126
Iteration: 15, Func. Count: 157, Neg. LLF: 143.1552354822602
Iteration: 16, Func. Count: 166, Neg. LLF: 143.15523560684488
Optimization terminated successfully (Exit mode 0)
Current function value: 143.1552354822602
Iterations: 16
Function evaluations: 166
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 159.29771314007107
Iteration: 2, Func. Count: 24, Neg. LLF: 150.17249912936128
Iteration: 3, Func. Count: 36, Neg. LLF: 153.50047649828264
Iteration: 4, Func. Count: 48, Neg. LLF: 142.71078817610817
Iteration: 5, Func. Count: 60, Neg. LLF: 145.93427381100747
Iteration: 6, Func. Count: 74, Neg. LLF: 146.91860052209816
Iteration: 7, Func. Count: 86, Neg. LLF: 141.40131603273863
Iteration: 8, Func. Count: 97, Neg. LLF: 141.1153317714179
Iteration: 9, Func. Count: 108, Neg. LLF: 141.0721199214751
Iteration: 10, Func. Count: 119, Neg. LLF: 141.06680121846054
Iteration: 11, Func. Count: 130, Neg. LLF: 141.06500879627808
Iteration: 12, Func. Count: 141, Neg. LLF: 141.06492306083018
Iteration: 13, Func. Count: 152, Neg. LLF: 141.0649206245695
Iteration: 14, Func. Count: 162, Neg. LLF: 141.06492062460308
Optimization terminated successfully (Exit mode 0)
Current function value: 141.0649206245695
Iterations: 14
Function evaluations: 162
Gradient evaluations: 14
Iteration: 1, Func. Count: 13, Neg. LLF: 156.491883165192
Iteration: 2, Func. Count: 26, Neg. LLF: 146.0919436445359
Iteration: 3, Func. Count: 39, Neg. LLF: 157.42815643608176
Iteration: 4, Func. Count: 54, Neg. LLF: 155.79808852423682
Iteration: 5, Func. Count: 67, Neg. LLF: 148.8056585448093
Iteration: 6, Func. Count: 80, Neg. LLF: 142.3317517439076
Iteration: 7, Func. Count: 92, Neg. LLF: 142.25946539404384
Iteration: 8, Func. Count: 105, Neg. LLF: 141.62345460344022
Iteration: 9, Func. Count: 117, Neg. LLF: 141.29092933439102
Iteration: 10, Func. Count: 129, Neg. LLF: 141.1859626992424
Iteration: 11, Func. Count: 141, Neg. LLF: 141.16458026155811
Iteration: 12, Func. Count: 153, Neg. LLF: 141.10775859048826
Iteration: 13, Func. Count: 165, Neg. LLF: 141.07424293142378
Iteration: 14, Func. Count: 177, Neg. LLF: 141.06633144190403
Iteration: 15, Func. Count: 189, Neg. LLF: 141.06553574130223
Iteration: 16, Func. Count: 201, Neg. LLF: 141.06532897207552
Iteration: 17, Func. Count: 213, Neg. LLF: 141.0651879121721
Iteration: 18, Func. Count: 225, Neg. LLF: 141.06508236182898
Iteration: 19, Func. Count: 237, Neg. LLF: 141.0649734825181
Iteration: 20, Func. Count: 249, Neg. LLF: 141.06492843513328
Iteration: 21, Func. Count: 261, Neg. LLF: 141.06492124967954
Iteration: 22, Func. Count: 273, Neg. LLF: 141.06492054643766
Optimization terminated successfully (Exit mode 0)
Current function value: 141.06492054643766
Iterations: 22
Function evaluations: 273
Gradient evaluations: 22
Iteration: 1, Func. Count: 14, Neg. LLF: 147.62421221940565
Iteration: 2, Func. Count: 28, Neg. LLF: 156.293483394646
Iteration: 3, Func. Count: 43, Neg. LLF: 147.38974525036383
Iteration: 4, Func. Count: 57, Neg. LLF: 147.04881125969177
Iteration: 5, Func. Count: 71, Neg. LLF: 142.40647406569323
Iteration: 6, Func. Count: 84, Neg. LLF: 142.40596554548256
Iteration: 7, Func. Count: 98, Neg. LLF: 154.0645306470814
Iteration: 8, Func. Count: 112, Neg. LLF: 141.29863054972088
Iteration: 9, Func. Count: 125, Neg. LLF: 141.11330792236606
Iteration: 10, Func. Count: 138, Neg. LLF: 141.0858987676909
Iteration: 11, Func. Count: 151, Neg. LLF: 141.06796753318093
Iteration: 12, Func. Count: 164, Neg. LLF: 141.0656496591501
Iteration: 13, Func. Count: 177, Neg. LLF: 141.0650514918218
Iteration: 14, Func. Count: 190, Neg. LLF: 141.0649332703154
Iteration: 15, Func. Count: 203, Neg. LLF: 141.0649210978403
Iteration: 16, Func. Count: 215, Neg. LLF: 141.06492118932954
Optimization terminated successfully (Exit mode 0)
Current function value: 141.0649210978403
Iterations: 16
Function evaluations: 215
Gradient evaluations: 16
Iteration: 1, Func. Count: 15, Neg. LLF: 152.7649450519763
Iteration: 2, Func. Count: 33, Neg. LLF: 149.5949832479009
Iteration: 3, Func. Count: 49, Neg. LLF: 154.55432896058886
Iteration: 4, Func. Count: 64, Neg. LLF: 151.6165088815983
Iteration: 5, Func. Count: 79, Neg. LLF: 142.76900499419918
Iteration: 6, Func. Count: 93, Neg. LLF: 142.69799145885733
Iteration: 7, Func. Count: 108, Neg. LLF: 146.20197891901324
Iteration: 8, Func. Count: 124, Neg. LLF: 141.32069304101447
Iteration: 9, Func. Count: 138, Neg. LLF: 141.71063950563155
Iteration: 10, Func. Count: 153, Neg. LLF: 141.15067058405975
Iteration: 11, Func. Count: 167, Neg. LLF: 141.0955772235855
Iteration: 12, Func. Count: 181, Neg. LLF: 141.08615580119283
Iteration: 13, Func. Count: 195, Neg. LLF: 141.0724702587223
Iteration: 14, Func. Count: 209, Neg. LLF: 141.06986585690404
Iteration: 15, Func. Count: 223, Neg. LLF: 141.06712546986316
Iteration: 16, Func. Count: 237, Neg. LLF: 141.06541753479448
Iteration: 17, Func. Count: 251, Neg. LLF: 141.06496475808626
Iteration: 18, Func. Count: 265, Neg. LLF: 141.06492245961607
Iteration: 19, Func. Count: 279, Neg. LLF: 141.06492089286363
Iteration: 20, Func. Count: 292, Neg. LLF: 141.0649210313693
Optimization terminated successfully (Exit mode 0)
Current function value: 141.06492089286363
Iterations: 20
Function evaluations: 292
Gradient evaluations: 20
Iteration: 1, Func. Count: 8, Neg. LLF: 142.92153749865392
Iteration: 2, Func. Count: 16, Neg. LLF: 143.5256763759088
Iteration: 3, Func. Count: 26, Neg. LLF: 144.06807634731751
Iteration: 4, Func. Count: 35, Neg. LLF: 144.51366520269477
Iteration: 5, Func. Count: 43, Neg. LLF: 141.32727578955033
Iteration: 6, Func. Count: 50, Neg. LLF: 166.6386292252249
Iteration: 7, Func. Count: 59, Neg. LLF: 141.2368041015661
Iteration: 8, Func. Count: 66, Neg. LLF: 141.17494588281698
Iteration: 9, Func. Count: 73, Neg. LLF: 141.1547469092544
Iteration: 10, Func. Count: 80, Neg. LLF: 141.1457011542997
Iteration: 11, Func. Count: 87, Neg. LLF: 141.14467826648453
Iteration: 12, Func. Count: 94, Neg. LLF: 141.14451604004265
Iteration: 13, Func. Count: 101, Neg. LLF: 141.1445092825211
Iteration: 14, Func. Count: 107, Neg. LLF: 141.1445092825577
Optimization terminated successfully (Exit mode 0)
Current function value: 141.1445092825211
Iterations: 14
Function evaluations: 107
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 149.9758773145848
Iteration: 2, Func. Count: 18, Neg. LLF: 144.35505479115042
Iteration: 3, Func. Count: 27, Neg. LLF: 145.56170022955052
Iteration: 4, Func. Count: 36, Neg. LLF: 184.66982175474575
Iteration: 5, Func. Count: 45, Neg. LLF: 142.12214582925031
Iteration: 6, Func. Count: 53, Neg. LLF: 143.04198014114044
Iteration: 7, Func. Count: 62, Neg. LLF: 142.70067183259073
Iteration: 8, Func. Count: 73, Neg. LLF: 152.88405138470696
Iteration: 9, Func. Count: 82, Neg. LLF: 141.58404478770524
Iteration: 10, Func. Count: 91, Neg. LLF: 141.9589332741597
Iteration: 11, Func. Count: 100, Neg. LLF: 141.2060187303041
Iteration: 12, Func. Count: 108, Neg. LLF: 141.1832376734728
Iteration: 13, Func. Count: 116, Neg. LLF: 141.16044142679192
Iteration: 14, Func. Count: 124, Neg. LLF: 141.1491426909728
Iteration: 15, Func. Count: 132, Neg. LLF: 141.14661961356694
Iteration: 16, Func. Count: 140, Neg. LLF: 141.14585340906544
Iteration: 17, Func. Count: 148, Neg. LLF: 141.1451249739795
Iteration: 18, Func. Count: 156, Neg. LLF: 141.1447357942133
Iteration: 19, Func. Count: 164, Neg. LLF: 141.14453418533856
Iteration: 20, Func. Count: 172, Neg. LLF: 141.14451011077466
Iteration: 21, Func. Count: 180, Neg. LLF: 141.14450907384725
Iteration: 22, Func. Count: 187, Neg. LLF: 141.144509127407
Optimization terminated successfully (Exit mode 0)
Current function value: 141.14450907384725
Iterations: 22
Function evaluations: 187
Gradient evaluations: 22
Iteration: 1, Func. Count: 10, Neg. LLF: 143.58124589766888
Iteration: 2, Func. Count: 20, Neg. LLF: 142.5252853896597
Iteration: 3, Func. Count: 30, Neg. LLF: 165.26468053407328
Iteration: 4, Func. Count: 41, Neg. LLF: 176.89850822431978
Iteration: 5, Func. Count: 51, Neg. LLF: 143.14211864072377
Iteration: 6, Func. Count: 61, Neg. LLF: 141.34842581063916
Iteration: 7, Func. Count: 70, Neg. LLF: 142.3314316152369
Iteration: 8, Func. Count: 80, Neg. LLF: 141.6636475228138
Iteration: 9, Func. Count: 90, Neg. LLF: 141.91757313438455
Iteration: 10, Func. Count: 100, Neg. LLF: 141.79647129743412
Iteration: 11, Func. Count: 110, Neg. LLF: 141.1587432820695
Iteration: 12, Func. Count: 119, Neg. LLF: 141.14986212106868
Iteration: 13, Func. Count: 128, Neg. LLF: 141.1452239122391
Iteration: 14, Func. Count: 137, Neg. LLF: 141.14453487194916
Iteration: 15, Func. Count: 146, Neg. LLF: 141.1445104188508
Iteration: 16, Func. Count: 155, Neg. LLF: 141.1445090102923
Iteration: 17, Func. Count: 163, Neg. LLF: 141.14450902493815
Optimization terminated successfully (Exit mode 0)
Current function value: 141.1445090102923
Iterations: 17
Function evaluations: 163
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 143.47936815794606
Iteration: 2, Func. Count: 21, Neg. LLF: 142.20133730581514
Iteration: 3, Func. Count: 32, Neg. LLF: 166.4315519855957
Iteration: 4, Func. Count: 44, Neg. LLF: 150.51112159117022
Iteration: 5, Func. Count: 56, Neg. LLF: 156.9981832607194
Iteration: 6, Func. Count: 67, Neg. LLF: 141.4474762380488
Iteration: 7, Func. Count: 77, Neg. LLF: 142.054966432577
Iteration: 8, Func. Count: 88, Neg. LLF: 141.709684543179
Iteration: 9, Func. Count: 99, Neg. LLF: 141.17392545022508
Iteration: 10, Func. Count: 109, Neg. LLF: 141.18341175614054
Iteration: 11, Func. Count: 120, Neg. LLF: 141.15417739297243
Iteration: 12, Func. Count: 130, Neg. LLF: 141.14479407482202
Iteration: 13, Func. Count: 140, Neg. LLF: 141.14454347552558
Iteration: 14, Func. Count: 150, Neg. LLF: 141.14452261089627
Iteration: 15, Func. Count: 160, Neg. LLF: 141.14451392596567
Iteration: 16, Func. Count: 170, Neg. LLF: 141.14450911273144
Iteration: 17, Func. Count: 179, Neg. LLF: 141.14450919218365
Optimization terminated successfully (Exit mode 0)
Current function value: 141.14450911273144
Iterations: 17
Function evaluations: 179
Gradient evaluations: 17
Iteration: 1, Func. Count: 12, Neg. LLF: 143.42809218004953
Iteration: 2, Func. Count: 23, Neg. LLF: 142.18731907960145
Iteration: 3, Func. Count: 35, Neg. LLF: 165.92132955043704
Iteration: 4, Func. Count: 48, Neg. LLF: 151.19215774923802
Iteration: 5, Func. Count: 61, Neg. LLF: 156.8889895730314
Iteration: 6, Func. Count: 73, Neg. LLF: 141.43253329478352
Iteration: 7, Func. Count: 84, Neg. LLF: 142.03048112727447
Iteration: 8, Func. Count: 96, Neg. LLF: 141.20766208142066
Iteration: 9, Func. Count: 107, Neg. LLF: 141.30621001570321
Iteration: 10, Func. Count: 119, Neg. LLF: 141.16543465894793
Iteration: 11, Func. Count: 130, Neg. LLF: 141.15931740857366
Iteration: 12, Func. Count: 141, Neg. LLF: 141.14686590040677
Iteration: 13, Func. Count: 152, Neg. LLF: 141.14460934776162
Iteration: 14, Func. Count: 163, Neg. LLF: 141.14451053590025
Iteration: 15, Func. Count: 174, Neg. LLF: 141.14450973059627
Optimization terminated successfully (Exit mode 0)
Current function value: 141.14450973059627
Iterations: 15
Function evaluations: 174
Gradient evaluations: 15
Iteration: 1, Func. Count: 9, Neg. LLF: 143.4661693996001
Iteration: 2, Func. Count: 18, Neg. LLF: 144.63357158323413
Iteration: 3, Func. Count: 28, Neg. LLF: 144.625689409401
Iteration: 4, Func. Count: 38, Neg. LLF: 144.38835868000825
Iteration: 5, Func. Count: 47, Neg. LLF: 141.33699813117175
Iteration: 6, Func. Count: 55, Neg. LLF: 176.97354434494008
Iteration: 7, Func. Count: 64, Neg. LLF: 143.0848178712949
Iteration: 8, Func. Count: 73, Neg. LLF: 140.97869932585527
Iteration: 9, Func. Count: 81, Neg. LLF: 141.12501415658053
Iteration: 10, Func. Count: 90, Neg. LLF: 140.67403519646254
Iteration: 11, Func. Count: 98, Neg. LLF: 140.6411081820848
Iteration: 12, Func. Count: 106, Neg. LLF: 140.59013254095228
Iteration: 13, Func. Count: 114, Neg. LLF: 140.58331802056827
Iteration: 14, Func. Count: 122, Neg. LLF: 140.58241942645276
Iteration: 15, Func. Count: 130, Neg. LLF: 140.58230951417906
Iteration: 16, Func. Count: 138, Neg. LLF: 140.5822921243668
Iteration: 17, Func. Count: 146, Neg. LLF: 140.58228729422692
Iteration: 18, Func. Count: 153, Neg. LLF: 140.5822873036814
Optimization terminated successfully (Exit mode 0)
Current function value: 140.58228729422692
Iterations: 18
Function evaluations: 153
Gradient evaluations: 18
Iteration: 1, Func. Count: 10, Neg. LLF: 152.56587435693564
Iteration: 2, Func. Count: 20, Neg. LLF: 148.1764098919221
Iteration: 3, Func. Count: 30, Neg. LLF: 142.9372453715953
Iteration: 4, Func. Count: 40, Neg. LLF: 150.64303516865937
Iteration: 5, Func. Count: 50, Neg. LLF: 142.06311523870968
Iteration: 6, Func. Count: 60, Neg. LLF: 148.26633240015724
Iteration: 7, Func. Count: 70, Neg. LLF: 141.99328392165805
Iteration: 8, Func. Count: 80, Neg. LLF: 140.7383487875761
Iteration: 9, Func. Count: 89, Neg. LLF: 140.643777777634
Iteration: 10, Func. Count: 98, Neg. LLF: 140.6630138203092
Iteration: 11, Func. Count: 108, Neg. LLF: 140.59856583691135
Iteration: 12, Func. Count: 117, Neg. LLF: 140.5841074748271
Iteration: 13, Func. Count: 126, Neg. LLF: 140.5825282173556
Iteration: 14, Func. Count: 135, Neg. LLF: 140.5823080470126
Iteration: 15, Func. Count: 144, Neg. LLF: 140.58228982302543
Iteration: 16, Func. Count: 153, Neg. LLF: 140.58228719425242
Iteration: 17, Func. Count: 161, Neg. LLF: 140.5822872556891
Optimization terminated successfully (Exit mode 0)
Current function value: 140.58228719425242
Iterations: 17
Function evaluations: 161
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 143.56288788393525
Iteration: 2, Func. Count: 22, Neg. LLF: 142.54172187920744
Iteration: 3, Func. Count: 33, Neg. LLF: 165.99491833584227
Iteration: 4, Func. Count: 45, Neg. LLF: 173.761260339325
Iteration: 5, Func. Count: 56, Neg. LLF: 144.39185342126248
Iteration: 6, Func. Count: 67, Neg. LLF: 141.98397309065456
Iteration: 7, Func. Count: 78, Neg. LLF: 141.7156870092555
Iteration: 8, Func. Count: 89, Neg. LLF: 141.55360810078477
Iteration: 9, Func. Count: 100, Neg. LLF: 140.76630664918406
Iteration: 10, Func. Count: 110, Neg. LLF: 141.03176313582412
Iteration: 11, Func. Count: 122, Neg. LLF: 141.7359555313213
Iteration: 12, Func. Count: 134, Neg. LLF: 140.69367080276768
Iteration: 13, Func. Count: 144, Neg. LLF: 140.62056116253473
Iteration: 14, Func. Count: 154, Neg. LLF: 140.5955514062503
Iteration: 15, Func. Count: 164, Neg. LLF: 140.5825647249572
Iteration: 16, Func. Count: 174, Neg. LLF: 140.58230531819703
Iteration: 17, Func. Count: 184, Neg. LLF: 140.58229078552495
Iteration: 18, Func. Count: 194, Neg. LLF: 140.58228732078652
Iteration: 19, Func. Count: 203, Neg. LLF: 140.58228734921803
Optimization terminated successfully (Exit mode 0)
Current function value: 140.58228732078652
Iterations: 19
Function evaluations: 203
Gradient evaluations: 19
Iteration: 1, Func. Count: 12, Neg. LLF: 143.46066462012172
Iteration: 2, Func. Count: 23, Neg. LLF: 142.19258862661187
Iteration: 3, Func. Count: 35, Neg. LLF: 166.12624227889845
Iteration: 4, Func. Count: 49, Neg. LLF: 164.02953110636744
Iteration: 5, Func. Count: 61, Neg. LLF: 153.49499987728086
Iteration: 6, Func. Count: 74, Neg. LLF: 156.59356483619644
Iteration: 7, Func. Count: 86, Neg. LLF: 140.90056693959332
Iteration: 8, Func. Count: 97, Neg. LLF: 176.4819613622801
Iteration: 9, Func. Count: 109, Neg. LLF: 140.77713933145927
Iteration: 10, Func. Count: 120, Neg. LLF: 140.69343140004477
Iteration: 11, Func. Count: 131, Neg. LLF: 140.65966422948208
Iteration: 12, Func. Count: 142, Neg. LLF: 140.61605678594918
Iteration: 13, Func. Count: 153, Neg. LLF: 140.59472768639563
Iteration: 14, Func. Count: 164, Neg. LLF: 140.58452045752628
Iteration: 15, Func. Count: 175, Neg. LLF: 140.582562561849
Iteration: 16, Func. Count: 186, Neg. LLF: 140.58235688807594
Iteration: 17, Func. Count: 197, Neg. LLF: 140.58231081250727
Iteration: 18, Func. Count: 208, Neg. LLF: 140.58229322308856
Iteration: 19, Func. Count: 219, Neg. LLF: 140.58228717924865
Iteration: 20, Func. Count: 229, Neg. LLF: 140.5822872201819
Optimization terminated successfully (Exit mode 0)
Current function value: 140.58228717924865
Iterations: 20
Function evaluations: 229
Gradient evaluations: 20
Iteration: 1, Func. Count: 13, Neg. LLF: 143.4048042647345
Iteration: 2, Func. Count: 25, Neg. LLF: 142.17759935394707
Iteration: 3, Func. Count: 38, Neg. LLF: 165.29085550005294
Iteration: 4, Func. Count: 53, Neg. LLF: 163.96157680304665
Iteration: 5, Func. Count: 66, Neg. LLF: 153.9562993802613
Iteration: 6, Func. Count: 79, Neg. LLF: 142.62871000129036
Iteration: 7, Func. Count: 92, Neg. LLF: 158.47756747992585
Iteration: 8, Func. Count: 105, Neg. LLF: 141.93094232355818
Iteration: 9, Func. Count: 118, Neg. LLF: 140.80804831127227
Iteration: 10, Func. Count: 130, Neg. LLF: 140.7723833009229
Iteration: 11, Func. Count: 142, Neg. LLF: 140.70764136116028
Iteration: 12, Func. Count: 154, Neg. LLF: 140.62844905865435
Iteration: 13, Func. Count: 166, Neg. LLF: 140.59737173824772
Iteration: 14, Func. Count: 178, Neg. LLF: 140.58515360362225
Iteration: 15, Func. Count: 190, Neg. LLF: 140.58256466779557
Iteration: 16, Func. Count: 202, Neg. LLF: 140.58230663455993
Iteration: 17, Func. Count: 214, Neg. LLF: 140.58229433540058
Iteration: 18, Func. Count: 226, Neg. LLF: 140.58228964265265
Iteration: 19, Func. Count: 238, Neg. LLF: 140.58228678939486
Iteration: 20, Func. Count: 249, Neg. LLF: 140.58228693162567
Optimization terminated successfully (Exit mode 0)
Current function value: 140.58228678939486
Iterations: 20
Function evaluations: 249
Gradient evaluations: 20
Iteration: 1, Func. Count: 10, Neg. LLF: 142.90908673064567
Iteration: 2, Func. Count: 20, Neg. LLF: 143.47162850590442
Iteration: 3, Func. Count: 32, Neg. LLF: 144.3827839941554
Iteration: 4, Func. Count: 44, Neg. LLF: 141.94693305703754
Iteration: 5, Func. Count: 54, Neg. LLF: 141.2758601850332
Iteration: 6, Func. Count: 63, Neg. LLF: 141.18105949611655
Iteration: 7, Func. Count: 72, Neg. LLF: 148.3147371846828
Iteration: 8, Func. Count: 83, Neg. LLF: 141.1055996941837
Iteration: 9, Func. Count: 93, Neg. LLF: 140.64920212432014
Iteration: 10, Func. Count: 102, Neg. LLF: 140.2531906974125
Iteration: 11, Func. Count: 111, Neg. LLF: 140.6682929783224
Iteration: 12, Func. Count: 121, Neg. LLF: 140.11516397972315
Iteration: 13, Func. Count: 130, Neg. LLF: 140.09131189818874
Iteration: 14, Func. Count: 139, Neg. LLF: 140.04828790807935
Iteration: 15, Func. Count: 148, Neg. LLF: 140.03754976339027
Iteration: 16, Func. Count: 157, Neg. LLF: 140.03630253882872
Iteration: 17, Func. Count: 166, Neg. LLF: 140.03615138744905
Iteration: 18, Func. Count: 175, Neg. LLF: 140.03615078625825
Optimization terminated successfully (Exit mode 0)
Current function value: 140.03615078625825
Iterations: 18
Function evaluations: 175
Gradient evaluations: 18
Iteration: 1, Func. Count: 11, Neg. LLF: 161.9442969863925
Iteration: 2, Func. Count: 22, Neg. LLF: 144.80931496422508
Iteration: 3, Func. Count: 33, Neg. LLF: 145.24305256839887
Iteration: 4, Func. Count: 45, Neg. LLF: 146.9368240795557
Iteration: 5, Func. Count: 58, Neg. LLF: 142.10987456304773
Iteration: 6, Func. Count: 69, Neg. LLF: 141.6726763979506
Iteration: 7, Func. Count: 80, Neg. LLF: 140.20916461286996
Iteration: 8, Func. Count: 90, Neg. LLF: 141.80214721758924
Iteration: 9, Func. Count: 102, Neg. LLF: 148.31927332788663
Iteration: 10, Func. Count: 113, Neg. LLF: 140.04574219082824
Iteration: 11, Func. Count: 123, Neg. LLF: 140.04031841575633
Iteration: 12, Func. Count: 133, Neg. LLF: 140.03704459190186
Iteration: 13, Func. Count: 143, Neg. LLF: 140.03637413692678
Iteration: 14, Func. Count: 153, Neg. LLF: 140.03617578037748
Iteration: 15, Func. Count: 163, Neg. LLF: 140.03615388518543
Iteration: 16, Func. Count: 173, Neg. LLF: 140.03615129706276
Iteration: 17, Func. Count: 182, Neg. LLF: 140.0361513805338
Optimization terminated successfully (Exit mode 0)
Current function value: 140.03615129706276
Iterations: 17
Function evaluations: 182
Gradient evaluations: 17
Iteration: 1, Func. Count: 12, Neg. LLF: 143.58168115915117
Iteration: 2, Func. Count: 24, Neg. LLF: 143.28017818609146
Iteration: 3, Func. Count: 36, Neg. LLF: 147.70866985166543
Iteration: 4, Func. Count: 49, Neg. LLF: 144.67466233545917
Iteration: 5, Func. Count: 61, Neg. LLF: 145.50234120837678
Iteration: 6, Func. Count: 73, Neg. LLF: 142.00175001658266
Iteration: 7, Func. Count: 85, Neg. LLF: 140.95831390538908
Iteration: 8, Func. Count: 96, Neg. LLF: 142.53783392319775
Iteration: 9, Func. Count: 108, Neg. LLF: 141.08257985175015
Iteration: 10, Func. Count: 120, Neg. LLF: 140.4758119459485
Iteration: 11, Func. Count: 132, Neg. LLF: 141.71206838675818
Iteration: 12, Func. Count: 144, Neg. LLF: 152.44128867645466
Iteration: 13, Func. Count: 156, Neg. LLF: 141.60867371038452
Iteration: 14, Func. Count: 168, Neg. LLF: 142.17745062650854
Iteration: 15, Func. Count: 180, Neg. LLF: 140.1286559294943
Iteration: 16, Func. Count: 191, Neg. LLF: 140.0853478596006
Iteration: 17, Func. Count: 202, Neg. LLF: 140.06579827739714
Iteration: 18, Func. Count: 213, Neg. LLF: 140.0399971173144
Iteration: 19, Func. Count: 224, Neg. LLF: 140.03664018195167
Iteration: 20, Func. Count: 235, Neg. LLF: 140.03617200468832
Iteration: 21, Func. Count: 246, Neg. LLF: 140.03613558070555
Iteration: 22, Func. Count: 257, Neg. LLF: 140.03613219812124
Iteration: 23, Func. Count: 268, Neg. LLF: 140.03613180967326
Optimization terminated successfully (Exit mode 0)
Current function value: 140.03613180967326
Iterations: 23
Function evaluations: 268
Gradient evaluations: 23
Iteration: 1, Func. Count: 13, Neg. LLF: 143.47233204975703
Iteration: 2, Func. Count: 25, Neg. LLF: 142.19297753229682
Iteration: 3, Func. Count: 38, Neg. LLF: 174.96988711447557
Iteration: 4, Func. Count: 54, Neg. LLF: 169.44635514556913
Iteration: 5, Func. Count: 67, Neg. LLF: 156.05834999660993
Iteration: 6, Func. Count: 80, Neg. LLF: 151.51880885033805
Iteration: 7, Func. Count: 95, Neg. LLF: 141.52283625652572
Iteration: 8, Func. Count: 108, Neg. LLF: 171.5707385187861
Iteration: 9, Func. Count: 121, Neg. LLF: 140.71132683913237
Iteration: 10, Func. Count: 133, Neg. LLF: 140.60691901422229
Iteration: 11, Func. Count: 145, Neg. LLF: 140.45895450008098
Iteration: 12, Func. Count: 157, Neg. LLF: 140.22560354095697
Iteration: 13, Func. Count: 169, Neg. LLF: 140.05700400020632
Iteration: 14, Func. Count: 181, Neg. LLF: 140.06112875011323
Iteration: 15, Func. Count: 194, Neg. LLF: 140.04138468203072
Iteration: 16, Func. Count: 207, Neg. LLF: 140.03638755259064
Iteration: 17, Func. Count: 219, Neg. LLF: 140.0361864469033
Iteration: 18, Func. Count: 231, Neg. LLF: 140.03613816960788
Iteration: 19, Func. Count: 243, Neg. LLF: 140.03613180874498
Iteration: 20, Func. Count: 254, Neg. LLF: 140.03613180614943
Optimization terminated successfully (Exit mode 0)
Current function value: 140.03613180874498
Iterations: 20
Function evaluations: 254
Gradient evaluations: 20
Iteration: 1, Func. Count: 14, Neg. LLF: 143.42248841856747
Iteration: 2, Func. Count: 27, Neg. LLF: 142.17984852577757
Iteration: 3, Func. Count: 41, Neg. LLF: 174.61383292191016
Iteration: 4, Func. Count: 58, Neg. LLF: 170.34476113911688
Iteration: 5, Func. Count: 72, Neg. LLF: 156.12390240717534
Iteration: 6, Func. Count: 86, Neg. LLF: 150.33140197030875
Iteration: 7, Func. Count: 102, Neg. LLF: 141.7505151687884
Iteration: 8, Func. Count: 116, Neg. LLF: 171.35439536506507
Iteration: 9, Func. Count: 130, Neg. LLF: 140.71618756707625
Iteration: 10, Func. Count: 143, Neg. LLF: 140.5952775650994
Iteration: 11, Func. Count: 156, Neg. LLF: 140.41380835392144
Iteration: 12, Func. Count: 169, Neg. LLF: 140.24352516938535
Iteration: 13, Func. Count: 182, Neg. LLF: 140.06617635291113
Iteration: 14, Func. Count: 195, Neg. LLF: 140.26174326528826
Iteration: 15, Func. Count: 209, Neg. LLF: 140.05103271109508
Iteration: 16, Func. Count: 223, Neg. LLF: 140.0363206921136
Iteration: 17, Func. Count: 236, Neg. LLF: 140.03619792145648
Iteration: 18, Func. Count: 249, Neg. LLF: 140.03613309757486
Iteration: 19, Func. Count: 262, Neg. LLF: 140.03613225345734
Optimization terminated successfully (Exit mode 0)
Current function value: 140.03613225345734
Iterations: 19
Function evaluations: 262
Gradient evaluations: 19
Iteration: 1, Func. Count: 11, Neg. LLF: 142.84884355498005
Iteration: 2, Func. Count: 21, Neg. LLF: 142.60232962292093
Iteration: 3, Func. Count: 33, Neg. LLF: 160.2136901180877
Iteration: 4, Func. Count: 47, Neg. LLF: 151.3256367935803
Iteration: 5, Func. Count: 58, Neg. LLF: 152.8331280678167
Iteration: 6, Func. Count: 69, Neg. LLF: 145.20374319982258
Iteration: 7, Func. Count: 80, Neg. LLF: 141.36783929823838
Iteration: 8, Func. Count: 91, Neg. LLF: 140.94725276595173
Iteration: 9, Func. Count: 101, Neg. LLF: 141.0079111380543
Iteration: 10, Func. Count: 112, Neg. LLF: 146.2994677757257
Iteration: 11, Func. Count: 124, Neg. LLF: 142.08426787336143
Iteration: 12, Func. Count: 135, Neg. LLF: 140.0761015796776
Iteration: 13, Func. Count: 145, Neg. LLF: 139.96088637032196
Iteration: 14, Func. Count: 155, Neg. LLF: 139.5868712422063
Iteration: 15, Func. Count: 165, Neg. LLF: 139.5349611401518
Iteration: 16, Func. Count: 175, Neg. LLF: 139.53320050224858
Iteration: 17, Func. Count: 185, Neg. LLF: 139.5328547302552
Iteration: 18, Func. Count: 195, Neg. LLF: 139.53246309029274
Iteration: 19, Func. Count: 205, Neg. LLF: 139.5324476205955
Iteration: 20, Func. Count: 215, Neg. LLF: 139.53244367665758
Iteration: 21, Func. Count: 225, Neg. LLF: 139.5324431042533
Optimization terminated successfully (Exit mode 0)
Current function value: 139.5324431042533
Iterations: 21
Function evaluations: 225
Gradient evaluations: 21
Iteration: 1, Func. Count: 12, Neg. LLF: 159.34215060891688
Iteration: 2, Func. Count: 24, Neg. LLF: 149.9507243607861
Iteration: 3, Func. Count: 36, Neg. LLF: 145.92874565685088
Iteration: 4, Func. Count: 48, Neg. LLF: 144.285819846569
Iteration: 5, Func. Count: 61, Neg. LLF: 144.1191817989699
Iteration: 6, Func. Count: 73, Neg. LLF: 142.46998646739715
Iteration: 7, Func. Count: 85, Neg. LLF: 141.2930188791778
Iteration: 8, Func. Count: 96, Neg. LLF: 141.1034075962705
Iteration: 9, Func. Count: 107, Neg. LLF: 141.0697634031274
Iteration: 10, Func. Count: 118, Neg. LLF: 141.06573889167709
Iteration: 11, Func. Count: 129, Neg. LLF: 141.06501779769764
Iteration: 12, Func. Count: 140, Neg. LLF: 141.06492613609964
Iteration: 13, Func. Count: 151, Neg. LLF: 141.06492174358098
Iteration: 14, Func. Count: 161, Neg. LLF: 141.06492174356313
Optimization terminated successfully (Exit mode 0)
Current function value: 141.06492174358098
Iterations: 14
Function evaluations: 161
Gradient evaluations: 14
Iteration: 1, Func. Count: 13, Neg. LLF: 143.59089725081742
Iteration: 2, Func. Count: 26, Neg. LLF: 142.1841338443026
Iteration: 3, Func. Count: 39, Neg. LLF: 158.05966353505292
Iteration: 4, Func. Count: 53, Neg. LLF: 163.4269035133661
Iteration: 5, Func. Count: 66, Neg. LLF: 181.2040553471435
Iteration: 6, Func. Count: 79, Neg. LLF: 145.5336443781223
Iteration: 7, Func. Count: 92, Neg. LLF: 140.25808957390663
Iteration: 8, Func. Count: 104, Neg. LLF: 142.97087585400402
Iteration: 9, Func. Count: 118, Neg. LLF: 139.98617238382843
Iteration: 10, Func. Count: 130, Neg. LLF: 141.46683363843366
Iteration: 11, Func. Count: 143, Neg. LLF: 140.2315903796372
Iteration: 12, Func. Count: 156, Neg. LLF: 139.61041722363265
Iteration: 13, Func. Count: 168, Neg. LLF: 139.5467104316447
Iteration: 14, Func. Count: 180, Neg. LLF: 139.5389377697504
Iteration: 15, Func. Count: 192, Neg. LLF: 139.5331745146389
Iteration: 16, Func. Count: 204, Neg. LLF: 139.53248331785178
Iteration: 17, Func. Count: 216, Neg. LLF: 139.53244503883047
Iteration: 18, Func. Count: 228, Neg. LLF: 139.5324436451848
Iteration: 19, Func. Count: 240, Neg. LLF: 139.53244308132457
Optimization terminated successfully (Exit mode 0)
Current function value: 139.53244308132457
Iterations: 19
Function evaluations: 240
Gradient evaluations: 19
Iteration: 1, Func. Count: 14, Neg. LLF: 143.48415743390845
Iteration: 2, Func. Count: 27, Neg. LLF: 142.6228441505839
Iteration: 3, Func. Count: 42, Neg. LLF: 176.2717947772244
Iteration: 4, Func. Count: 59, Neg. LLF: 173.28646252977794
Iteration: 5, Func. Count: 73, Neg. LLF: 156.3662159706799
Iteration: 6, Func. Count: 87, Neg. LLF: 158.38008221879824
Iteration: 7, Func. Count: 101, Neg. LLF: 140.84867854853258
Iteration: 8, Func. Count: 115, Neg. LLF: 193.3492378507641
Iteration: 9, Func. Count: 129, Neg. LLF: 140.04119317526988
Iteration: 10, Func. Count: 142, Neg. LLF: 142.05700342353748
Iteration: 11, Func. Count: 156, Neg. LLF: 141.85737701686668
Iteration: 12, Func. Count: 170, Neg. LLF: 139.64624320505487
Iteration: 13, Func. Count: 183, Neg. LLF: 139.5618301046491
Iteration: 14, Func. Count: 196, Neg. LLF: 139.5451600905876
Iteration: 15, Func. Count: 209, Neg. LLF: 139.53503330887483
Iteration: 16, Func. Count: 222, Neg. LLF: 139.53414346838662
Iteration: 17, Func. Count: 235, Neg. LLF: 139.53368773248408
Iteration: 18, Func. Count: 248, Neg. LLF: 139.53304358285507
Iteration: 19, Func. Count: 261, Neg. LLF: 139.53261591375798
Iteration: 20, Func. Count: 274, Neg. LLF: 139.53246648756442
Iteration: 21, Func. Count: 287, Neg. LLF: 139.5324441558587
Iteration: 22, Func. Count: 300, Neg. LLF: 139.5324431015978
Iteration: 23, Func. Count: 312, Neg. LLF: 139.53244308241733
Optimization terminated successfully (Exit mode 0)
Current function value: 139.5324431015978
Iterations: 23
Function evaluations: 312
Gradient evaluations: 23
Iteration: 1, Func. Count: 15, Neg. LLF: 143.42791985887655
Iteration: 2, Func. Count: 29, Neg. LLF: 142.59025133964425
Iteration: 3, Func. Count: 45, Neg. LLF: 175.21156298808032
Iteration: 4, Func. Count: 63, Neg. LLF: 172.1208622026512
Iteration: 5, Func. Count: 78, Neg. LLF: 156.73284673550785
Iteration: 6, Func. Count: 93, Neg. LLF: 158.69336760911864
Iteration: 7, Func. Count: 108, Neg. LLF: 140.86220398507396
Iteration: 8, Func. Count: 123, Neg. LLF: 189.234894063388
Iteration: 9, Func. Count: 138, Neg. LLF: 140.0648685783207
Iteration: 10, Func. Count: 152, Neg. LLF: 141.6064287311536
Iteration: 11, Func. Count: 167, Neg. LLF: 141.8365327446747
Iteration: 12, Func. Count: 182, Neg. LLF: 139.6690261541358
Iteration: 13, Func. Count: 196, Neg. LLF: 139.56638143949914
Iteration: 14, Func. Count: 210, Neg. LLF: 139.54770128877377
Iteration: 15, Func. Count: 224, Neg. LLF: 139.53464143523902
Iteration: 16, Func. Count: 238, Neg. LLF: 139.53372834445034
Iteration: 17, Func. Count: 252, Neg. LLF: 139.53332721357907
Iteration: 18, Func. Count: 266, Neg. LLF: 139.53294347651484
Iteration: 19, Func. Count: 280, Neg. LLF: 139.53257461996333
Iteration: 20, Func. Count: 294, Neg. LLF: 139.53246337606618
Iteration: 21, Func. Count: 308, Neg. LLF: 139.53244416380937
Iteration: 22, Func. Count: 322, Neg. LLF: 139.5324431189567
Iteration: 23, Func. Count: 335, Neg. LLF: 139.53244319519806
Optimization terminated successfully (Exit mode 0)
Current function value: 139.5324431189567
Iterations: 23
Function evaluations: 335
Gradient evaluations: 23
Iteration: 1, Func. Count: 12, Neg. LLF: 140.9105026103458
Iteration: 2, Func. Count: 23, Neg. LLF: 143.29424786443442
Iteration: 3, Func. Count: 37, Neg. LLF: 173.2211850025607
Iteration: 4, Func. Count: 49, Neg. LLF: 142.50947871789253
Iteration: 5, Func. Count: 61, Neg. LLF: 143.98916784896122
Iteration: 6, Func. Count: 73, Neg. LLF: 140.7893389677112
Iteration: 7, Func. Count: 85, Neg. LLF: 138.71460152567312
Iteration: 8, Func. Count: 96, Neg. LLF: 138.51801758604046
Iteration: 9, Func. Count: 107, Neg. LLF: 138.32783754754794
Iteration: 10, Func. Count: 118, Neg. LLF: 137.9576005817792
Iteration: 11, Func. Count: 129, Neg. LLF: 138.979876373339
Iteration: 12, Func. Count: 141, Neg. LLF: 148.50085431260734
Iteration: 13, Func. Count: 154, Neg. LLF: 10273.296926212755
Iteration: 14, Func. Count: 166, Neg. LLF: 137.88162213807257
Iteration: 15, Func. Count: 178, Neg. LLF: 137.33108829730057
Iteration: 16, Func. Count: 190, Neg. LLF: 136.9063063021594
Iteration: 17, Func. Count: 201, Neg. LLF: 136.8570030024216
Iteration: 18, Func. Count: 212, Neg. LLF: 136.85017209602748
Iteration: 19, Func. Count: 223, Neg. LLF: 136.8473033865393
Iteration: 20, Func. Count: 234, Neg. LLF: 136.84709926671567
Iteration: 21, Func. Count: 245, Neg. LLF: 136.84707036477312
Iteration: 22, Func. Count: 256, Neg. LLF: 136.84706806701337
Iteration: 23, Func. Count: 266, Neg. LLF: 136.847067914302
Optimization terminated successfully (Exit mode 0)
Current function value: 136.84706806701337
Iterations: 23
Function evaluations: 266
Gradient evaluations: 23
Iteration: 1, Func. Count: 13, Neg. LLF: 168.6509393158749
Iteration: 2, Func. Count: 26, Neg. LLF: 146.10204051380762
Iteration: 3, Func. Count: 39, Neg. LLF: 163.2879564831967
Iteration: 4, Func. Count: 52, Neg. LLF: 140.19228085790985
Iteration: 5, Func. Count: 64, Neg. LLF: 140.92884302703743
Iteration: 6, Func. Count: 78, Neg. LLF: 199.75640398742038
Iteration: 7, Func. Count: 91, Neg. LLF: 149.31751966493928
Iteration: 8, Func. Count: 104, Neg. LLF: 137.2804086698391
Iteration: 9, Func. Count: 116, Neg. LLF: 152.2450445083102
Iteration: 10, Func. Count: 130, Neg. LLF: 138.1388634556714
Iteration: 11, Func. Count: 143, Neg. LLF: 136.91427603254613
Iteration: 12, Func. Count: 155, Neg. LLF: 136.86597149751094
Iteration: 13, Func. Count: 167, Neg. LLF: 136.8525468448357
Iteration: 14, Func. Count: 179, Neg. LLF: 136.85020341118113
Iteration: 15, Func. Count: 191, Neg. LLF: 136.84719811380745
Iteration: 16, Func. Count: 203, Neg. LLF: 136.84708446039284
Iteration: 17, Func. Count: 215, Neg. LLF: 136.84706874857918
Iteration: 18, Func. Count: 226, Neg. LLF: 136.8470688645752
Optimization terminated successfully (Exit mode 0)
Current function value: 136.84706874857918
Iterations: 18
Function evaluations: 226
Gradient evaluations: 18
Iteration: 1, Func. Count: 14, Neg. LLF: 146.0403717328288
Iteration: 2, Func. Count: 28, Neg. LLF: 139.94748065998198
Iteration: 3, Func. Count: 41, Neg. LLF: 143.16046073666868
Iteration: 4, Func. Count: 56, Neg. LLF: 148.96882160641655
Iteration: 5, Func. Count: 70, Neg. LLF: 160.90846206716625
Iteration: 6, Func. Count: 84, Neg. LLF: 146.31132694913893
Iteration: 7, Func. Count: 98, Neg. LLF: 152.86649632714207
Iteration: 8, Func. Count: 112, Neg. LLF: 146.91939489338012
Iteration: 9, Func. Count: 126, Neg. LLF: 137.84784796323743
Iteration: 10, Func. Count: 139, Neg. LLF: 137.54007035387002
Iteration: 11, Func. Count: 152, Neg. LLF: 137.33277988370497
Iteration: 12, Func. Count: 165, Neg. LLF: 137.0656113525962
Iteration: 13, Func. Count: 178, Neg. LLF: 147.13150615395355
Iteration: 14, Func. Count: 194, Neg. LLF: 137.16714869525225
Iteration: 15, Func. Count: 208, Neg. LLF: 136.8552209775019
Iteration: 16, Func. Count: 221, Neg. LLF: 136.8501042744906
Iteration: 17, Func. Count: 234, Neg. LLF: 136.84853164408213
Iteration: 18, Func. Count: 247, Neg. LLF: 136.8477525734218
Iteration: 19, Func. Count: 260, Neg. LLF: 136.84715997106986
Iteration: 20, Func. Count: 273, Neg. LLF: 136.847067799634
Iteration: 21, Func. Count: 285, Neg. LLF: 136.84706811473012
Optimization terminated successfully (Exit mode 0)
Current function value: 136.847067799634
Iterations: 21
Function evaluations: 285
Gradient evaluations: 21
Iteration: 1, Func. Count: 15, Neg. LLF: 142.10785381205028
Iteration: 2, Func. Count: 29, Neg. LLF: 142.06549851110066
Iteration: 3, Func. Count: 44, Neg. LLF: 165.063407465853
Iteration: 4, Func. Count: 61, Neg. LLF: 176.48846721812376
Iteration: 5, Func. Count: 76, Neg. LLF: 138.96339349574208
Iteration: 6, Func. Count: 90, Neg. LLF: 155.8544098380233
Iteration: 7, Func. Count: 105, Neg. LLF: 140.75530974258933
Iteration: 8, Func. Count: 120, Neg. LLF: 138.24192249614305
Iteration: 9, Func. Count: 134, Neg. LLF: 138.35980781154998
Iteration: 10, Func. Count: 149, Neg. LLF: 137.78861986477193
Iteration: 11, Func. Count: 163, Neg. LLF: 137.5373886178653
Iteration: 12, Func. Count: 177, Neg. LLF: 156.76577035342152
Iteration: 13, Func. Count: 192, Neg. LLF: 143.23846685606853
Iteration: 14, Func. Count: 207, Neg. LLF: 146.77862782167557
Iteration: 15, Func. Count: 222, Neg. LLF: 138.11947259896166
Iteration: 16, Func. Count: 237, Neg. LLF: 137.0689406542784
Iteration: 17, Func. Count: 252, Neg. LLF: 136.89892300661384
Iteration: 18, Func. Count: 266, Neg. LLF: 136.85643558098937
Iteration: 19, Func. Count: 280, Neg. LLF: 136.8428874503019
Iteration: 20, Func. Count: 294, Neg. LLF: 136.8389615430901
Iteration: 21, Func. Count: 308, Neg. LLF: 136.83700323621417
Iteration: 22, Func. Count: 322, Neg. LLF: 136.8367123371352
Iteration: 23, Func. Count: 336, Neg. LLF: 136.83666459021438
Iteration: 24, Func. Count: 350, Neg. LLF: 136.83666174504904
Iteration: 25, Func. Count: 364, Neg. LLF: 136.83666136576073
Optimization terminated successfully (Exit mode 0)
Current function value: 136.83666136576073
Iterations: 25
Function evaluations: 364
Gradient evaluations: 25
Iteration: 1, Func. Count: 16, Neg. LLF: 140.26403186792936
Iteration: 2, Func. Count: 31, Neg. LLF: 142.82104712728832
Iteration: 3, Func. Count: 49, Neg. LLF: 202.10172856073297
Iteration: 4, Func. Count: 65, Neg. LLF: 146.72713565585994
Iteration: 5, Func. Count: 81, Neg. LLF: 145.4412903130358
Iteration: 6, Func. Count: 97, Neg. LLF: 139.68258542895663
Iteration: 7, Func. Count: 113, Neg. LLF: 139.54236419167685
Iteration: 8, Func. Count: 129, Neg. LLF: 138.29914912314015
Iteration: 9, Func. Count: 144, Neg. LLF: 139.21904801232918
Iteration: 10, Func. Count: 160, Neg. LLF: 138.36898347438756
Iteration: 11, Func. Count: 176, Neg. LLF: 137.80398832934782
Iteration: 12, Func. Count: 191, Neg. LLF: 139.2886587890912
Iteration: 13, Func. Count: 207, Neg. LLF: 137.3632360542582
Iteration: 14, Func. Count: 222, Neg. LLF: 137.19522630797277
Iteration: 15, Func. Count: 237, Neg. LLF: 137.18274777116656
Iteration: 16, Func. Count: 253, Neg. LLF: 137.12767430574164
Iteration: 17, Func. Count: 269, Neg. LLF: 136.92718536258786
Iteration: 18, Func. Count: 284, Neg. LLF: 136.92536361688994
Iteration: 19, Func. Count: 300, Neg. LLF: 136.9000380092504
Iteration: 20, Func. Count: 316, Neg. LLF: 136.8402731586831
Iteration: 21, Func. Count: 331, Neg. LLF: 136.83675221730186
Iteration: 22, Func. Count: 346, Neg. LLF: 136.8366825969237
Iteration: 23, Func. Count: 361, Neg. LLF: 136.83666127543518
Iteration: 24, Func. Count: 375, Neg. LLF: 136.83666136381325
Optimization terminated successfully (Exit mode 0)
Current function value: 136.83666127543518
Iterations: 24
Function evaluations: 375
Gradient evaluations: 24
Iteration: 1, Func. Count: 12, Neg. LLF: 140.9105026103458
Iteration: 2, Func. Count: 23, Neg. LLF: 143.29424786443442
Iteration: 3, Func. Count: 37, Neg. LLF: 173.2211850025607
Iteration: 4, Func. Count: 49, Neg. LLF: 142.50947871789253
Iteration: 5, Func. Count: 61, Neg. LLF: 143.98916784896122
Iteration: 6, Func. Count: 73, Neg. LLF: 140.7893389677112
Iteration: 7, Func. Count: 85, Neg. LLF: 138.71460152567312
Iteration: 8, Func. Count: 96, Neg. LLF: 138.51801758604046
Iteration: 9, Func. Count: 107, Neg. LLF: 138.32783754754794
Iteration: 10, Func. Count: 118, Neg. LLF: 137.9576005817792
Iteration: 11, Func. Count: 129, Neg. LLF: 138.979876373339
Iteration: 12, Func. Count: 141, Neg. LLF: 148.50085431260734
Iteration: 13, Func. Count: 154, Neg. LLF: 10273.296926212755
Iteration: 14, Func. Count: 166, Neg. LLF: 137.88162213807257
Iteration: 15, Func. Count: 178, Neg. LLF: 137.33108829730057
Iteration: 16, Func. Count: 190, Neg. LLF: 136.9063063021594
Iteration: 17, Func. Count: 201, Neg. LLF: 136.8570030024216
Iteration: 18, Func. Count: 212, Neg. LLF: 136.85017209602748
Iteration: 19, Func. Count: 223, Neg. LLF: 136.8473033865393
Iteration: 20, Func. Count: 234, Neg. LLF: 136.84709926671567
Iteration: 21, Func. Count: 245, Neg. LLF: 136.84707036477312
Iteration: 22, Func. Count: 256, Neg. LLF: 136.84706806701337
Iteration: 23, Func. Count: 266, Neg. LLF: 136.847067914302
Optimization terminated successfully (Exit mode 0)
Current function value: 136.84706806701337
Iterations: 23
Function evaluations: 266
Gradient evaluations: 23
Iteration: 1, Func. Count: 5, Neg. LLF: 155.31960543122966
Iteration: 2, Func. Count: 10, Neg. LLF: 159.39859433408435
Iteration: 3, Func. Count: 15, Neg. LLF: 144.63682077955448
Iteration: 4, Func. Count: 19, Neg. LLF: 144.5356851510784
Iteration: 5, Func. Count: 23, Neg. LLF: 144.50787625068276
Iteration: 6, Func. Count: 27, Neg. LLF: 144.50506814075857
Iteration: 7, Func. Count: 31, Neg. LLF: 144.50497781540273
Iteration: 8, Func. Count: 35, Neg. LLF: 144.50497620822563
Iteration: 9, Func. Count: 38, Neg. LLF: 144.50497620822927
Optimization terminated successfully (Exit mode 0)
Current function value: 144.50497620822563
Iterations: 9
Function evaluations: 38
Gradient evaluations: 9
Iteration: 1, Func. Count: 6, Neg. LLF: 152.02605301850767
Iteration: 2, Func. Count: 15, Neg. LLF: 148.6673182677502
Iteration: 3, Func. Count: 21, Neg. LLF: 146.0828527233232
Iteration: 4, Func. Count: 26, Neg. LLF: 145.64697545668832
Iteration: 5, Func. Count: 31, Neg. LLF: 145.49324190479334
Iteration: 6, Func. Count: 36, Neg. LLF: 145.46187933057362
Iteration: 7, Func. Count: 41, Neg. LLF: 145.460090042921
Iteration: 8, Func. Count: 46, Neg. LLF: 145.4600837120868
Iteration: 9, Func. Count: 50, Neg. LLF: 145.4600837888187
Optimization terminated successfully (Exit mode 0)
Current function value: 145.4600837120868
Iterations: 9
Function evaluations: 50
Gradient evaluations: 9
Iteration: 1, Func. Count: 7, Neg. LLF: 159.67827428078814
Iteration: 2, Func. Count: 14, Neg. LLF: 145.59439057993225
Iteration: 3, Func. Count: 20, Neg. LLF: 146.6758500558806
Iteration: 4, Func. Count: 27, Neg. LLF: 145.51689819786634
Iteration: 5, Func. Count: 33, Neg. LLF: 145.50432856941978
Iteration: 6, Func. Count: 39, Neg. LLF: 145.50044509068098
Iteration: 7, Func. Count: 45, Neg. LLF: 145.47394095311017
Iteration: 8, Func. Count: 51, Neg. LLF: 145.4608002709247
Iteration: 9, Func. Count: 57, Neg. LLF: 145.46025302143906
Iteration: 10, Func. Count: 63, Neg. LLF: 145.4601098282884
Iteration: 11, Func. Count: 69, Neg. LLF: 145.50159173979716
Iteration: 12, Func. Count: 76, Neg. LLF: 145.4600836687537
Optimization terminated successfully (Exit mode 0)
Current function value: 145.46008374338774
Iterations: 13
Function evaluations: 76
Gradient evaluations: 12
Iteration: 1, Func. Count: 8, Neg. LLF: 161.60183416688616
Iteration: 2, Func. Count: 16, Neg. LLF: 145.5935513019407
Iteration: 3, Func. Count: 23, Neg. LLF: 145.83686217764898
Iteration: 4, Func. Count: 31, Neg. LLF: 145.55276807808212
Iteration: 5, Func. Count: 38, Neg. LLF: 145.54007756537067
Iteration: 6, Func. Count: 45, Neg. LLF: 145.51902677684436
Iteration: 7, Func. Count: 52, Neg. LLF: 145.5101352750136
Iteration: 8, Func. Count: 59, Neg. LLF: 145.50718877686063
Iteration: 9, Func. Count: 66, Neg. LLF: 145.49870113136967
Iteration: 10, Func. Count: 73, Neg. LLF: 145.46053562834823
Iteration: 11, Func. Count: 80, Neg. LLF: 145.4601614149994
Iteration: 12, Func. Count: 87, Neg. LLF: 145.46022541199804
Iteration: 13, Func. Count: 95, Neg. LLF: 145.48090785197752
Iteration: 14, Func. Count: 104, Neg. LLF: 145.46013285145068
Iteration: 15, Func. Count: 112, Neg. LLF: 145.46008363107967
Iteration: 16, Func. Count: 118, Neg. LLF: 145.46008355911147
Optimization terminated successfully (Exit mode 0)
Current function value: 145.46008363107967
Iterations: 17
Function evaluations: 118
Gradient evaluations: 16
Iteration: 1, Func. Count: 9, Neg. LLF: 164.04015620537717
Iteration: 2, Func. Count: 18, Neg. LLF: 145.6236795065216
Iteration: 3, Func. Count: 26, Neg. LLF: 145.75373707387732
Iteration: 4, Func. Count: 35, Neg. LLF: 145.59499462776736
Iteration: 5, Func. Count: 43, Neg. LLF: 145.59081283768705
Iteration: 6, Func. Count: 51, Neg. LLF: 145.56465373890643
Iteration: 7, Func. Count: 59, Neg. LLF: 145.50268124591636
Iteration: 8, Func. Count: 67, Neg. LLF: 145.48531357093165
Iteration: 9, Func. Count: 75, Neg. LLF: 145.46458018770616
Iteration: 10, Func. Count: 83, Neg. LLF: 145.46102889884722
Iteration: 11, Func. Count: 91, Neg. LLF: 145.4601307300463
Iteration: 12, Func. Count: 99, Neg. LLF: 145.4600906491956
Iteration: 13, Func. Count: 107, Neg. LLF: 145.4600838921609
Iteration: 14, Func. Count: 114, Neg. LLF: 145.46008382450566
Optimization terminated successfully (Exit mode 0)
Current function value: 145.4600838921609
Iterations: 14
Function evaluations: 114
Gradient evaluations: 14
Iteration: 1, Func. Count: 6, Neg. LLF: 151.19584685759872
Iteration: 2, Func. Count: 12, Neg. LLF: 162.01890466283965
Iteration: 3, Func. Count: 18, Neg. LLF: 144.63481547224873
Iteration: 4, Func. Count: 23, Neg. LLF: 144.66053631515268
Iteration: 5, Func. Count: 29, Neg. LLF: 144.52568995992905
Iteration: 6, Func. Count: 34, Neg. LLF: 144.5059664484924
Iteration: 7, Func. Count: 39, Neg. LLF: 144.50519200129776
Iteration: 8, Func. Count: 44, Neg. LLF: 144.5050621657608
Iteration: 9, Func. Count: 49, Neg. LLF: 144.50501699840424
Iteration: 10, Func. Count: 54, Neg. LLF: 144.50498026924777
Iteration: 11, Func. Count: 59, Neg. LLF: 144.50497561580758
Iteration: 12, Func. Count: 63, Neg. LLF: 144.50497566846872
Optimization terminated successfully (Exit mode 0)
Current function value: 144.50497561580758
Iterations: 12
Function evaluations: 63
Gradient evaluations: 12
Iteration: 1, Func. Count: 7, Neg. LLF: 154.38398079805663
Iteration: 2, Func. Count: 17, Neg. LLF: 149.0583784803354
Iteration: 3, Func. Count: 24, Neg. LLF: 146.10897779098215
Iteration: 4, Func. Count: 30, Neg. LLF: 145.82957610416804
Iteration: 5, Func. Count: 36, Neg. LLF: 145.58859559341252
Iteration: 6, Func. Count: 42, Neg. LLF: 145.4657462399069
Iteration: 7, Func. Count: 48, Neg. LLF: 145.46018614857198
Iteration: 8, Func. Count: 54, Neg. LLF: 145.46008415376576
Iteration: 9, Func. Count: 60, Neg. LLF: 145.46008363100705
Optimization terminated successfully (Exit mode 0)
Current function value: 145.46008363100705
Iterations: 9
Function evaluations: 60
Gradient evaluations: 9
Iteration: 1, Func. Count: 8, Neg. LLF: 159.86008598436834
Iteration: 2, Func. Count: 16, Neg. LLF: 145.59179806038114
Iteration: 3, Func. Count: 23, Neg. LLF: 146.74914953355776
Iteration: 4, Func. Count: 31, Neg. LLF: 145.51669565327367
Iteration: 5, Func. Count: 38, Neg. LLF: 145.50428198203522
Iteration: 6, Func. Count: 45, Neg. LLF: 145.50041867032758
Iteration: 7, Func. Count: 52, Neg. LLF: 145.4779265156051
Iteration: 8, Func. Count: 59, Neg. LLF: 145.46095673535672
Iteration: 9, Func. Count: 66, Neg. LLF: 145.8329401288265
Iteration: 10, Func. Count: 75, Neg. LLF: 145.46326769713409
Iteration: 11, Func. Count: 82, Neg. LLF: 145.46008405195923
Optimization terminated successfully (Exit mode 0)
Current function value: 145.4600841264406
Iterations: 12
Function evaluations: 82
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 162.26226352587304
Iteration: 2, Func. Count: 18, Neg. LLF: 145.5959734653579
Iteration: 3, Func. Count: 26, Neg. LLF: 145.88033379765685
Iteration: 4, Func. Count: 35, Neg. LLF: 145.5543229919314
Iteration: 5, Func. Count: 43, Neg. LLF: 145.54080534951123
Iteration: 6, Func. Count: 51, Neg. LLF: 145.51467709620852
Iteration: 7, Func. Count: 59, Neg. LLF: 145.50777443694219
Iteration: 8, Func. Count: 67, Neg. LLF: 145.50530251020416
Iteration: 9, Func. Count: 75, Neg. LLF: 145.4932891470121
Iteration: 10, Func. Count: 83, Neg. LLF: 145.4606553327261
Iteration: 11, Func. Count: 91, Neg. LLF: 145.46041139571082
Iteration: 12, Func. Count: 99, Neg. LLF: 145.46040229815605
Iteration: 13, Func. Count: 108, Neg. LLF: 145.46009023746177
Iteration: 14, Func. Count: 116, Neg. LLF: 145.47102184151112
Iteration: 15, Func. Count: 125, Neg. LLF: 145.46008355945293
Optimization terminated successfully (Exit mode 0)
Current function value: 145.46008363140533
Iterations: 16
Function evaluations: 125
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 164.84544820436923
Iteration: 2, Func. Count: 20, Neg. LLF: 145.61259016578023
Iteration: 3, Func. Count: 29, Neg. LLF: 145.6450302392623
Iteration: 4, Func. Count: 39, Neg. LLF: 145.59669887959512
Iteration: 5, Func. Count: 48, Neg. LLF: 145.5924578877953
Iteration: 6, Func. Count: 57, Neg. LLF: 145.56330764336985
Iteration: 7, Func. Count: 66, Neg. LLF: 145.53203140538972
Iteration: 8, Func. Count: 75, Neg. LLF: 145.53056703795954
Iteration: 9, Func. Count: 84, Neg. LLF: 145.52467348743724
Iteration: 10, Func. Count: 93, Neg. LLF: 145.47228192860152
Iteration: 11, Func. Count: 102, Neg. LLF: 145.47006688649992
Iteration: 12, Func. Count: 111, Neg. LLF: 145.65619041604413
Optimization terminated successfully (Exit mode 0)
Current function value: 145.47006688649967
Iterations: 12
Function evaluations: 121
Gradient evaluations: 12
Iteration: 1, Func. Count: 7, Neg. LLF: 162.03436508334767
Iteration: 2, Func. Count: 15, Neg. LLF: 146.23007650718694
Iteration: 3, Func. Count: 21, Neg. LLF: 152.71075676787228
Iteration: 4, Func. Count: 28, Neg. LLF: 144.4519281299551
Iteration: 5, Func. Count: 34, Neg. LLF: 144.19505177600507
Iteration: 6, Func. Count: 40, Neg. LLF: 144.18847085271972
Iteration: 7, Func. Count: 46, Neg. LLF: 144.18560690051495
Iteration: 8, Func. Count: 52, Neg. LLF: 144.18503284303335
Iteration: 9, Func. Count: 58, Neg. LLF: 144.18495520424517
Iteration: 10, Func. Count: 64, Neg. LLF: 144.1849516716637
Iteration: 11, Func. Count: 69, Neg. LLF: 144.18495167168135
Optimization terminated successfully (Exit mode 0)
Current function value: 144.1849516716637
Iterations: 11
Function evaluations: 69
Gradient evaluations: 11
Iteration: 1, Func. Count: 8, Neg. LLF: 164.84656032998473
Iteration: 2, Func. Count: 19, Neg. LLF: 149.55814403740985
Iteration: 3, Func. Count: 27, Neg. LLF: 146.14549595668683
Iteration: 4, Func. Count: 34, Neg. LLF: 146.20111977238935
Iteration: 5, Func. Count: 42, Neg. LLF: 146.3000546527833
Iteration: 6, Func. Count: 50, Neg. LLF: 145.91131156745297
Iteration: 7, Func. Count: 58, Neg. LLF: 145.52807805181544
Iteration: 8, Func. Count: 65, Neg. LLF: 145.49496326937097
Iteration: 9, Func. Count: 72, Neg. LLF: 145.46188237182562
Iteration: 10, Func. Count: 79, Neg. LLF: 145.46010485691642
Iteration: 11, Func. Count: 86, Neg. LLF: 145.46008381671913
Iteration: 12, Func. Count: 92, Neg. LLF: 145.46008389245983
Optimization terminated successfully (Exit mode 0)
Current function value: 145.46008381671913
Iterations: 12
Function evaluations: 92
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 159.82562347732403
Iteration: 2, Func. Count: 18, Neg. LLF: 145.59096921027293
Iteration: 3, Func. Count: 26, Neg. LLF: 146.81211402466462
Iteration: 4, Func. Count: 35, Neg. LLF: 145.51632662052063
Iteration: 5, Func. Count: 43, Neg. LLF: 145.50404829875072
Iteration: 6, Func. Count: 51, Neg. LLF: 145.49993983915445
Iteration: 7, Func. Count: 59, Neg. LLF: 145.48266531447973
Iteration: 8, Func. Count: 67, Neg. LLF: 145.46212193180517
Iteration: 9, Func. Count: 75, Neg. LLF: 145.4606776659769
Iteration: 10, Func. Count: 83, Neg. LLF: 145.46051197844196
Iteration: 11, Func. Count: 91, Neg. LLF: 145.4605619697563
Iteration: 12, Func. Count: 100, Neg. LLF: 145.47301464288205
Iteration: 13, Func. Count: 110, Neg. LLF: 145.46008364010535
Iteration: 14, Func. Count: 117, Neg. LLF: 145.46008356538786
Optimization terminated successfully (Exit mode 0)
Current function value: 145.46008364010535
Iterations: 15
Function evaluations: 117
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 160.6047621804779
Iteration: 2, Func. Count: 20, Neg. LLF: 145.5903239516265
Iteration: 3, Func. Count: 29, Neg. LLF: 145.75350090799782
Iteration: 4, Func. Count: 39, Neg. LLF: 145.5550301531824
Iteration: 5, Func. Count: 48, Neg. LLF: 145.5396076731519
Iteration: 6, Func. Count: 57, Neg. LLF: 145.5158425299888
Iteration: 7, Func. Count: 66, Neg. LLF: 145.51005141255655
Iteration: 8, Func. Count: 75, Neg. LLF: 145.50559169732577
Iteration: 9, Func. Count: 84, Neg. LLF: 145.5000806704211
Iteration: 10, Func. Count: 93, Neg. LLF: 145.46277987534273
Iteration: 11, Func. Count: 102, Neg. LLF: 145.46080924550117
Iteration: 12, Func. Count: 111, Neg. LLF: 145.46023488204327
Iteration: 13, Func. Count: 120, Neg. LLF: 145.46210848191268
Iteration: 14, Func. Count: 130, Neg. LLF: 145.4603956172961
Iteration: 15, Func. Count: 140, Neg. LLF: 145.50133804221056
Iteration: 16, Func. Count: 151, Neg. LLF: 145.46008372351497
Iteration: 17, Func. Count: 159, Neg. LLF: 145.4600836515701
Optimization terminated successfully (Exit mode 0)
Current function value: 145.46008372351497
Iterations: 18
Function evaluations: 159
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 168.11365803831495
Iteration: 2, Func. Count: 24, Neg. LLF: 152.88323483272353
Iteration: 3, Func. Count: 35, Neg. LLF: 145.85825001768626
Iteration: 4, Func. Count: 45, Neg. LLF: 148.39101313083688
Iteration: 5, Func. Count: 56, Neg. LLF: 145.55895837676084
Iteration: 6, Func. Count: 66, Neg. LLF: 145.35423369494532
Iteration: 7, Func. Count: 76, Neg. LLF: 182.02473591676429
Iteration: 8, Func. Count: 87, Neg. LLF: 157.03080575280123
Iteration: 9, Func. Count: 98, Neg. LLF: 144.3921282996262
Iteration: 10, Func. Count: 108, Neg. LLF: 178.63264438678874
Iteration: 11, Func. Count: 119, Neg. LLF: 144.0644164790177
Iteration: 12, Func. Count: 129, Neg. LLF: 143.9665687865177
Iteration: 13, Func. Count: 139, Neg. LLF: 143.89654034358617
Iteration: 14, Func. Count: 149, Neg. LLF: 143.76356279980942
Iteration: 15, Func. Count: 159, Neg. LLF: 143.6954043442683
Iteration: 16, Func. Count: 169, Neg. LLF: 143.67055906491782
Iteration: 17, Func. Count: 179, Neg. LLF: 143.6625451695876
Iteration: 18, Func. Count: 189, Neg. LLF: 143.6579069611664
Iteration: 19, Func. Count: 199, Neg. LLF: 143.65584118378345
Iteration: 20, Func. Count: 209, Neg. LLF: 143.6552625025781
Iteration: 21, Func. Count: 219, Neg. LLF: 143.65514898193595
Iteration: 22, Func. Count: 229, Neg. LLF: 143.89980566818198
Iteration: 23, Func. Count: 242, Neg. LLF: 144.06236409130665
Iteration: 24, Func. Count: 255, Neg. LLF: 143.66331092851908
Optimization terminated successfully (Exit mode 0)
Current function value: 143.65514186725628
Iterations: 25
Function evaluations: 257
Gradient evaluations: 24
Iteration: 1, Func. Count: 8, Neg. LLF: 160.01795023543102
Iteration: 2, Func. Count: 17, Neg. LLF: 146.6181810243081
Iteration: 3, Func. Count: 24, Neg. LLF: 153.28682635816065
Iteration: 4, Func. Count: 32, Neg. LLF: 144.49812326586346
Iteration: 5, Func. Count: 39, Neg. LLF: 144.1972193340172
Iteration: 6, Func. Count: 46, Neg. LLF: 144.18879544761901
Iteration: 7, Func. Count: 53, Neg. LLF: 144.18660270790429
Iteration: 8, Func. Count: 60, Neg. LLF: 144.18521997302042
Iteration: 9, Func. Count: 67, Neg. LLF: 144.1849735545492
Iteration: 10, Func. Count: 74, Neg. LLF: 144.18495170367612
Iteration: 11, Func. Count: 80, Neg. LLF: 144.18495177907278
Optimization terminated successfully (Exit mode 0)
Current function value: 144.18495170367612
Iterations: 11
Function evaluations: 80
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 164.3296262595484
Iteration: 2, Func. Count: 21, Neg. LLF: 149.5599191788185
Iteration: 3, Func. Count: 30, Neg. LLF: 146.16065399548094
Iteration: 4, Func. Count: 38, Neg. LLF: 146.09200741022877
Iteration: 5, Func. Count: 46, Neg. LLF: 146.35119663720107
Iteration: 6, Func. Count: 55, Neg. LLF: 145.5203373991986
Iteration: 7, Func. Count: 63, Neg. LLF: 145.59397387130682
Iteration: 8, Func. Count: 72, Neg. LLF: 145.46838058119124
Iteration: 9, Func. Count: 80, Neg. LLF: 145.4601524498095
Iteration: 10, Func. Count: 88, Neg. LLF: 145.46008374530987
Iteration: 11, Func. Count: 95, Neg. LLF: 145.46008382220887
Optimization terminated successfully (Exit mode 0)
Current function value: 145.46008374530987
Iterations: 11
Function evaluations: 95
Gradient evaluations: 11
Iteration: 1, Func. Count: 10, Neg. LLF: 159.81430574480376
Iteration: 2, Func. Count: 20, Neg. LLF: 145.58194700781448
Iteration: 3, Func. Count: 29, Neg. LLF: 148.03783784321286
Iteration: 4, Func. Count: 39, Neg. LLF: 145.51295473924466
Iteration: 5, Func. Count: 48, Neg. LLF: 145.5051978762345
Iteration: 6, Func. Count: 57, Neg. LLF: 145.50092325003146
Iteration: 7, Func. Count: 66, Neg. LLF: 145.4951831637875
Iteration: 8, Func. Count: 75, Neg. LLF: 145.46296618585603
Iteration: 9, Func. Count: 84, Neg. LLF: 145.46188017424535
Iteration: 10, Func. Count: 93, Neg. LLF: 145.4601060407802
Iteration: 11, Func. Count: 102, Neg. LLF: 145.4616291704428
Iteration: 12, Func. Count: 113, Neg. LLF: 145.4605603105806
Iteration: 13, Func. Count: 122, Neg. LLF: 145.46008356015295
Optimization terminated successfully (Exit mode 0)
Current function value: 145.46008363485672
Iterations: 14
Function evaluations: 122
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 151.09737929084935
Iteration: 2, Func. Count: 24, Neg. LLF: 147.75630900409527
Iteration: 3, Func. Count: 35, Neg. LLF: 145.58135047635963
Iteration: 4, Func. Count: 45, Neg. LLF: 145.5935216035825
Iteration: 5, Func. Count: 56, Neg. LLF: 145.5600220656047
Iteration: 6, Func. Count: 66, Neg. LLF: 145.5473958215902
Iteration: 7, Func. Count: 76, Neg. LLF: 145.52357451160705
Iteration: 8, Func. Count: 86, Neg. LLF: 145.51475575718683
Iteration: 9, Func. Count: 96, Neg. LLF: 145.5125641966932
Iteration: 10, Func. Count: 106, Neg. LLF: 145.50931995736414
Iteration: 11, Func. Count: 116, Neg. LLF: 145.49858423021692
Iteration: 12, Func. Count: 126, Neg. LLF: 145.46147967065886
Iteration: 13, Func. Count: 136, Neg. LLF: 10981.217796067971
Iteration: 14, Func. Count: 150, Neg. LLF: 145.46009007664725
Iteration: 15, Func. Count: 160, Neg. LLF: 145.4600979441234
Iteration: 16, Func. Count: 170, Neg. LLF: 145.46008396228893
Optimization terminated successfully (Exit mode 0)
Current function value: 145.460084035662
Iterations: 17
Function evaluations: 170
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 180.75571984023713
Iteration: 2, Func. Count: 27, Neg. LLF: 151.40194912267913
Iteration: 3, Func. Count: 39, Neg. LLF: 145.72650505503822
Iteration: 4, Func. Count: 50, Neg. LLF: 145.65184892209476
Iteration: 5, Func. Count: 61, Neg. LLF: 145.5737225211696
Iteration: 6, Func. Count: 72, Neg. LLF: 145.535493597121
Iteration: 7, Func. Count: 83, Neg. LLF: 145.5242088357362
Iteration: 8, Func. Count: 94, Neg. LLF: 145.52291572916795
Iteration: 9, Func. Count: 105, Neg. LLF: 145.52285747927553
Iteration: 10, Func. Count: 116, Neg. LLF: 145.5228260170398
Iteration: 11, Func. Count: 127, Neg. LLF: 145.52282207225525
Iteration: 12, Func. Count: 137, Neg. LLF: 145.52282205761017
Optimization terminated successfully (Exit mode 0)
Current function value: 145.52282207225525
Iterations: 12
Function evaluations: 137
Gradient evaluations: 12
Iteration: 1, Func. Count: 5, Neg. LLF: 152.9813024048456
Iteration: 2, Func. Count: 10, Neg. LLF: 149.6898837243135
Iteration: 3, Func. Count: 15, Neg. LLF: 147.13746999455157
Iteration: 4, Func. Count: 19, Neg. LLF: 147.11760027659628
Iteration: 5, Func. Count: 23, Neg. LLF: 147.11532504105915
Iteration: 6, Func. Count: 27, Neg. LLF: 147.1152165641044
Iteration: 7, Func. Count: 31, Neg. LLF: 147.11491534280617
Iteration: 8, Func. Count: 35, Neg. LLF: 147.11487130103012
Iteration: 9, Func. Count: 38, Neg. LLF: 147.1148713023125
Optimization terminated successfully (Exit mode 0)
Current function value: 147.11487130103012
Iterations: 9
Function evaluations: 38
Gradient evaluations: 9
Iteration: 1, Func. Count: 6, Neg. LLF: 149.81405951749662
Iteration: 2, Func. Count: 15, Neg. LLF: 146.8397014371066
Iteration: 3, Func. Count: 21, Neg. LLF: 146.08113381715148
Iteration: 4, Func. Count: 26, Neg. LLF: 146.48793504829652
Iteration: 5, Func. Count: 32, Neg. LLF: 146.69151145817042
Iteration: 6, Func. Count: 38, Neg. LLF: 145.56174230237434
Iteration: 7, Func. Count: 43, Neg. LLF: 145.46737255262042
Iteration: 8, Func. Count: 48, Neg. LLF: 145.46375317297947
Iteration: 9, Func. Count: 53, Neg. LLF: 145.46008996331753
Iteration: 10, Func. Count: 58, Neg. LLF: 145.4600837225994
Iteration: 11, Func. Count: 62, Neg. LLF: 145.46008379820685
Optimization terminated successfully (Exit mode 0)
Current function value: 145.4600837225994
Iterations: 11
Function evaluations: 62
Gradient evaluations: 11
Iteration: 1, Func. Count: 7, Neg. LLF: 160.37733644551793
Iteration: 2, Func. Count: 14, Neg. LLF: 145.62861568781676
Iteration: 3, Func. Count: 20, Neg. LLF: 145.74492562379146
Iteration: 4, Func. Count: 27, Neg. LLF: 145.5099747185708
Iteration: 5, Func. Count: 33, Neg. LLF: 145.50654187038057
Iteration: 6, Func. Count: 39, Neg. LLF: 145.49954910746018
Iteration: 7, Func. Count: 45, Neg. LLF: 145.46165232355628
Iteration: 8, Func. Count: 51, Neg. LLF: 145.4602710161732
Iteration: 9, Func. Count: 57, Neg. LLF: 145.46008548009547
Iteration: 10, Func. Count: 62, Neg. LLF: 145.4600854058914
Optimization terminated successfully (Exit mode 0)
Current function value: 145.46008548009547
Iterations: 10
Function evaluations: 62
Gradient evaluations: 10
Iteration: 1, Func. Count: 8, Neg. LLF: 160.54788697139827
Iteration: 2, Func. Count: 16, Neg. LLF: 145.59574126748936
Iteration: 3, Func. Count: 23, Neg. LLF: 145.78302246558366
Iteration: 4, Func. Count: 31, Neg. LLF: 145.55448945807612
Iteration: 5, Func. Count: 38, Neg. LLF: 145.54331888589195
Iteration: 6, Func. Count: 45, Neg. LLF: 145.52118503333455
Iteration: 7, Func. Count: 52, Neg. LLF: 145.50931148577683
Iteration: 8, Func. Count: 59, Neg. LLF: 145.50673318017334
Iteration: 9, Func. Count: 66, Neg. LLF: 145.5008813417209
Iteration: 10, Func. Count: 73, Neg. LLF: 145.4911691283874
Iteration: 11, Func. Count: 80, Neg. LLF: 145.46840318699424
Iteration: 12, Func. Count: 87, Neg. LLF: 145.46144245287914
Iteration: 13, Func. Count: 94, Neg. LLF: 147.01937374748812
Iteration: 14, Func. Count: 103, Neg. LLF: 145.46249385599228
Iteration: 15, Func. Count: 110, Neg. LLF: 145.46008369668806
Optimization terminated successfully (Exit mode 0)
Current function value: 145.46008376783985
Iterations: 16
Function evaluations: 110
Gradient evaluations: 15
Iteration: 1, Func. Count: 9, Neg. LLF: 164.16132908583702
Iteration: 2, Func. Count: 18, Neg. LLF: 145.63030291275462
Iteration: 3, Func. Count: 26, Neg. LLF: 145.83530140224835
Iteration: 4, Func. Count: 35, Neg. LLF: 145.5939197300505
Iteration: 5, Func. Count: 43, Neg. LLF: 145.587282678884
Iteration: 6, Func. Count: 51, Neg. LLF: 145.57419267388016
Iteration: 7, Func. Count: 59, Neg. LLF: 145.5044257278009
Iteration: 8, Func. Count: 67, Neg. LLF: 145.5760332969052
Iteration: 9, Func. Count: 76, Neg. LLF: 145.48053528021896
Iteration: 10, Func. Count: 84, Neg. LLF: 145.4704126522714
Iteration: 11, Func. Count: 92, Neg. LLF: 145.46355597090903
Iteration: 12, Func. Count: 100, Neg. LLF: 145.46156705816816
Iteration: 13, Func. Count: 108, Neg. LLF: 145.46008804596065
Iteration: 14, Func. Count: 116, Neg. LLF: 145.46008513209458
Iteration: 15, Func. Count: 124, Neg. LLF: 145.46008386094127
Iteration: 16, Func. Count: 131, Neg. LLF: 145.46008379274735
Optimization terminated successfully (Exit mode 0)
Current function value: 145.46008386094127
Iterations: 17
Function evaluations: 131
Gradient evaluations: 16
Iteration: 1, Func. Count: 6, Neg. LLF: 159.75542289667627
Iteration: 2, Func. Count: 12, Neg. LLF: 147.85123669981593
Iteration: 3, Func. Count: 18, Neg. LLF: 144.57913145159412
Iteration: 4, Func. Count: 23, Neg. LLF: 144.6567228056206
Iteration: 5, Func. Count: 29, Neg. LLF: 144.51078850044468
Iteration: 6, Func. Count: 34, Neg. LLF: 144.50798983215435
Iteration: 7, Func. Count: 39, Neg. LLF: 144.50685403465877
Iteration: 8, Func. Count: 44, Neg. LLF: 144.50522293413303
Iteration: 9, Func. Count: 49, Neg. LLF: 144.50501069681593
Iteration: 10, Func. Count: 54, Neg. LLF: 144.50497569884735
Iteration: 11, Func. Count: 58, Neg. LLF: 144.50497569885866
Optimization terminated successfully (Exit mode 0)
Current function value: 144.50497569884735
Iterations: 11
Function evaluations: 58
Gradient evaluations: 11
Iteration: 1, Func. Count: 7, Neg. LLF: 162.38908846851933
Iteration: 2, Func. Count: 14, Neg. LLF: 146.9201441776169
Iteration: 3, Func. Count: 21, Neg. LLF: 145.796288675601
Iteration: 4, Func. Count: 27, Neg. LLF: 145.87784449211313
Iteration: 5, Func. Count: 34, Neg. LLF: 178.09134573335737
Iteration: 6, Func. Count: 43, Neg. LLF: 145.65866536889678
Iteration: 7, Func. Count: 49, Neg. LLF: 145.57117891639894
Iteration: 8, Func. Count: 55, Neg. LLF: 145.469583355699
Iteration: 9, Func. Count: 61, Neg. LLF: 145.46023815054835
Iteration: 10, Func. Count: 67, Neg. LLF: 145.46008392490313
Iteration: 11, Func. Count: 72, Neg. LLF: 145.4600840023223
Optimization terminated successfully (Exit mode 0)
Current function value: 145.46008392490313
Iterations: 11
Function evaluations: 72
Gradient evaluations: 11
Iteration: 1, Func. Count: 8, Neg. LLF: 160.00678933777428
Iteration: 2, Func. Count: 16, Neg. LLF: 145.75969976721444
Iteration: 3, Func. Count: 23, Neg. LLF: 145.60368797705013
Iteration: 4, Func. Count: 30, Neg. LLF: 146.261903297254
Iteration: 5, Func. Count: 39, Neg. LLF: 145.52565193770005
Iteration: 6, Func. Count: 46, Neg. LLF: 145.5215713261898
Iteration: 7, Func. Count: 53, Neg. LLF: 145.5202365085798
Iteration: 8, Func. Count: 60, Neg. LLF: 145.51769546447574
Iteration: 9, Func. Count: 67, Neg. LLF: 145.5117746666489
Iteration: 10, Func. Count: 74, Neg. LLF: 145.5058656758949
Iteration: 11, Func. Count: 81, Neg. LLF: 145.4941762968033
Iteration: 12, Func. Count: 88, Neg. LLF: 145.4616838799081
Iteration: 13, Func. Count: 95, Neg. LLF: 145.46064227343993
Iteration: 14, Func. Count: 102, Neg. LLF: 145.4601021221262
Iteration: 15, Func. Count: 109, Neg. LLF: 145.46008688332617
Iteration: 16, Func. Count: 116, Neg. LLF: 145.46009038779007
Optimization terminated successfully (Exit mode 0)
Current function value: 145.46008643026272
Iterations: 17
Function evaluations: 117
Gradient evaluations: 16
Iteration: 1, Func. Count: 9, Neg. LLF: 160.65559475515164
Iteration: 2, Func. Count: 18, Neg. LLF: 145.38324270985808
Iteration: 3, Func. Count: 26, Neg. LLF: 145.12161593622497
Iteration: 4, Func. Count: 34, Neg. LLF: 144.36226707517847
Iteration: 5, Func. Count: 42, Neg. LLF: 145.4900635048957
Iteration: 6, Func. Count: 51, Neg. LLF: 147.08458098918538
Iteration: 7, Func. Count: 61, Neg. LLF: 144.93088469190292
Iteration: 8, Func. Count: 70, Neg. LLF: 143.7694977335707
Iteration: 9, Func. Count: 78, Neg. LLF: 143.66441319105147
Iteration: 10, Func. Count: 86, Neg. LLF: 143.64407095630276
Iteration: 11, Func. Count: 94, Neg. LLF: 143.63259974746782
Iteration: 12, Func. Count: 102, Neg. LLF: 143.6323716964843
Iteration: 13, Func. Count: 110, Neg. LLF: 143.6323678241508
Iteration: 14, Func. Count: 117, Neg. LLF: 143.63236775011808
Optimization terminated successfully (Exit mode 0)
Current function value: 143.6323678241508
Iterations: 14
Function evaluations: 117
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 163.55408255570555
Iteration: 2, Func. Count: 20, Neg. LLF: 145.6685270581237
Iteration: 3, Func. Count: 29, Neg. LLF: 145.94887703113002
Iteration: 4, Func. Count: 39, Neg. LLF: 145.58262067125142
Iteration: 5, Func. Count: 48, Neg. LLF: 145.57060332264751
Iteration: 6, Func. Count: 57, Neg. LLF: 145.5521436358181
Iteration: 7, Func. Count: 66, Neg. LLF: 145.4725183849299
Iteration: 8, Func. Count: 75, Neg. LLF: 145.4610975700405
Iteration: 9, Func. Count: 84, Neg. LLF: 145.46008617810722
Iteration: 10, Func. Count: 93, Neg. LLF: 145.46008227446396
Iteration: 11, Func. Count: 102, Neg. LLF: 145.4600819485245
Optimization terminated successfully (Exit mode 0)
Current function value: 145.46008227436639
Iterations: 11
Function evaluations: 112
Gradient evaluations: 11
Iteration: 1, Func. Count: 7, Neg. LLF: 157.59688106742354
Iteration: 2, Func. Count: 14, Neg. LLF: 149.65320629030455
Iteration: 3, Func. Count: 21, Neg. LLF: 144.602951316575
Iteration: 4, Func. Count: 27, Neg. LLF: 144.61036457935046
Iteration: 5, Func. Count: 34, Neg. LLF: 144.51089118232193
Iteration: 6, Func. Count: 40, Neg. LLF: 144.50930485745369
Iteration: 7, Func. Count: 46, Neg. LLF: 144.50745895133176
Iteration: 8, Func. Count: 52, Neg. LLF: 144.505144337008
Iteration: 9, Func. Count: 58, Neg. LLF: 144.5049867607368
Iteration: 10, Func. Count: 64, Neg. LLF: 144.50497551122
Iteration: 11, Func. Count: 69, Neg. LLF: 144.50497556387813
Optimization terminated successfully (Exit mode 0)
Current function value: 144.50497551122
Iterations: 11
Function evaluations: 69
Gradient evaluations: 11
Iteration: 1, Func. Count: 8, Neg. LLF: 162.45633207018955
Iteration: 2, Func. Count: 16, Neg. LLF: 147.25039465521112
Iteration: 3, Func. Count: 24, Neg. LLF: 145.82487594944516
Iteration: 4, Func. Count: 31, Neg. LLF: 145.7720915391283
Iteration: 5, Func. Count: 38, Neg. LLF: 174.90526852029282
Iteration: 6, Func. Count: 47, Neg. LLF: 145.480985208575
Iteration: 7, Func. Count: 54, Neg. LLF: 145.46107981651141
Iteration: 8, Func. Count: 61, Neg. LLF: 145.46009679862885
Iteration: 9, Func. Count: 68, Neg. LLF: 145.46008427139293
Iteration: 10, Func. Count: 75, Neg. LLF: 145.46008363389973
Optimization terminated successfully (Exit mode 0)
Current function value: 145.46008363389973
Iterations: 10
Function evaluations: 75
Gradient evaluations: 10
Iteration: 1, Func. Count: 9, Neg. LLF: 160.0962316433368
Iteration: 2, Func. Count: 18, Neg. LLF: 145.7563167330497
Iteration: 3, Func. Count: 26, Neg. LLF: 145.60444731962423
Iteration: 4, Func. Count: 34, Neg. LLF: 146.01807049713761
Iteration: 5, Func. Count: 44, Neg. LLF: 145.52825568029738
Iteration: 6, Func. Count: 52, Neg. LLF: 145.52075688570315
Iteration: 7, Func. Count: 60, Neg. LLF: 145.5196700689721
Iteration: 8, Func. Count: 68, Neg. LLF: 145.5181291215468
Iteration: 9, Func. Count: 76, Neg. LLF: 145.5152230785254
Iteration: 10, Func. Count: 84, Neg. LLF: 145.5115017028274
Iteration: 11, Func. Count: 92, Neg. LLF: 145.50407247678083
Iteration: 12, Func. Count: 100, Neg. LLF: 145.48951263389392
Iteration: 13, Func. Count: 108, Neg. LLF: 145.46035790676922
Iteration: 14, Func. Count: 116, Neg. LLF: 145.460201570658
Iteration: 15, Func. Count: 124, Neg. LLF: 145.4600819596801
Iteration: 16, Func. Count: 132, Neg. LLF: 145.4616958009052
Optimization terminated successfully (Exit mode 0)
Current function value: 145.46008104987806
Iterations: 17
Function evaluations: 134
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 161.0295132234906
Iteration: 2, Func. Count: 20, Neg. LLF: 145.39090348754007
Iteration: 3, Func. Count: 29, Neg. LLF: 145.26492885000178
Iteration: 4, Func. Count: 39, Neg. LLF: 144.21530801957192
Iteration: 5, Func. Count: 48, Neg. LLF: 143.88595823678904
Iteration: 6, Func. Count: 57, Neg. LLF: 172.8361556791749
Iteration: 7, Func. Count: 68, Neg. LLF: 147.2248079761724
Iteration: 8, Func. Count: 78, Neg. LLF: 143.6405566141028
Iteration: 9, Func. Count: 87, Neg. LLF: 143.52817608982306
Iteration: 10, Func. Count: 96, Neg. LLF: 143.50120022679246
Iteration: 11, Func. Count: 105, Neg. LLF: 143.46415292482445
Iteration: 12, Func. Count: 114, Neg. LLF: 143.4523512606202
Iteration: 13, Func. Count: 123, Neg. LLF: 143.445330636095
Iteration: 14, Func. Count: 132, Neg. LLF: 143.44492875819552
Iteration: 15, Func. Count: 141, Neg. LLF: 143.44491638603495
Iteration: 16, Func. Count: 150, Neg. LLF: 143.44491329214765
Iteration: 17, Func. Count: 159, Neg. LLF: 143.44491221233542
Optimization terminated successfully (Exit mode 0)
Current function value: 143.4449132913493
Iterations: 17
Function evaluations: 169
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 161.60636551987983
Iteration: 2, Func. Count: 22, Neg. LLF: 146.85520882876227
Iteration: 3, Func. Count: 33, Neg. LLF: 146.51148080916113
Iteration: 4, Func. Count: 43, Neg. LLF: 146.18948654749238
Iteration: 5, Func. Count: 53, Neg. LLF: 145.85822164496267
Iteration: 6, Func. Count: 63, Neg. LLF: 145.7809749094066
Iteration: 7, Func. Count: 73, Neg. LLF: 145.7069867173483
Iteration: 8, Func. Count: 83, Neg. LLF: 145.59860792876754
Iteration: 9, Func. Count: 93, Neg. LLF: 145.5918110127177
Iteration: 10, Func. Count: 104, Neg. LLF: 145.51744259691444
Iteration: 11, Func. Count: 114, Neg. LLF: 145.50350985614276
Iteration: 12, Func. Count: 124, Neg. LLF: 145.4605868429407
Iteration: 13, Func. Count: 134, Neg. LLF: 145.45692361842748
Iteration: 14, Func. Count: 144, Neg. LLF: 145.45655571760716
Iteration: 15, Func. Count: 154, Neg. LLF: 145.45651808579922
Iteration: 16, Func. Count: 164, Neg. LLF: 145.45651707472018
Iteration: 17, Func. Count: 173, Neg. LLF: 145.45651705386882
Optimization terminated successfully (Exit mode 0)
Current function value: 145.45651707472018
Iterations: 17
Function evaluations: 173
Gradient evaluations: 17
Iteration: 1, Func. Count: 8, Neg. LLF: 171.42645951808476
Iteration: 2, Func. Count: 17, Neg. LLF: 147.28655658337226
Iteration: 3, Func. Count: 25, Neg. LLF: 149.1467566489153
Iteration: 4, Func. Count: 33, Neg. LLF: 144.3193928856714
Iteration: 5, Func. Count: 40, Neg. LLF: 144.7412776253238
Iteration: 6, Func. Count: 48, Neg. LLF: 144.20882137030733
Iteration: 7, Func. Count: 55, Neg. LLF: 144.18202606334526
Iteration: 8, Func. Count: 62, Neg. LLF: 144.17449101047723
Iteration: 9, Func. Count: 69, Neg. LLF: 144.172741644946
Iteration: 10, Func. Count: 76, Neg. LLF: 144.17165942234118
Iteration: 11, Func. Count: 83, Neg. LLF: 144.17079179155297
Iteration: 12, Func. Count: 90, Neg. LLF: 144.17067447919774
Iteration: 13, Func. Count: 97, Neg. LLF: 144.17066666221262
Iteration: 14, Func. Count: 103, Neg. LLF: 144.17066666187202
Optimization terminated successfully (Exit mode 0)
Current function value: 144.17066666221262
Iterations: 14
Function evaluations: 103
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 162.52518037311637
Iteration: 2, Func. Count: 18, Neg. LLF: 147.49797396173426
Iteration: 3, Func. Count: 27, Neg. LLF: 145.85118143552384
Iteration: 4, Func. Count: 35, Neg. LLF: 145.81472555022344
Iteration: 5, Func. Count: 43, Neg. LLF: 145.52816067418755
Iteration: 6, Func. Count: 51, Neg. LLF: 145.48359139717437
Iteration: 7, Func. Count: 59, Neg. LLF: 145.46065584257875
Iteration: 8, Func. Count: 67, Neg. LLF: 145.46008934436605
Iteration: 9, Func. Count: 75, Neg. LLF: 145.4600885675227
Optimization terminated successfully (Exit mode 0)
Current function value: 145.4600885675227
Iterations: 9
Function evaluations: 75
Gradient evaluations: 9
Iteration: 1, Func. Count: 10, Neg. LLF: 160.10032513547617
Iteration: 2, Func. Count: 20, Neg. LLF: 145.75975854264613
Iteration: 3, Func. Count: 29, Neg. LLF: 145.604780451649
Iteration: 4, Func. Count: 38, Neg. LLF: 146.32080356523775
Iteration: 5, Func. Count: 49, Neg. LLF: 145.5278304831258
Iteration: 6, Func. Count: 58, Neg. LLF: 145.52235702973127
Iteration: 7, Func. Count: 67, Neg. LLF: 145.52078491701877
Iteration: 8, Func. Count: 76, Neg. LLF: 145.5188158941491
Iteration: 9, Func. Count: 85, Neg. LLF: 145.5139606668899
Iteration: 10, Func. Count: 94, Neg. LLF: 145.50893777990186
Iteration: 11, Func. Count: 103, Neg. LLF: 145.49987475352395
Iteration: 12, Func. Count: 112, Neg. LLF: 145.4684806342212
Iteration: 13, Func. Count: 121, Neg. LLF: 145.46802362348305
Iteration: 14, Func. Count: 131, Neg. LLF: 145.46376867566252
Iteration: 15, Func. Count: 140, Neg. LLF: 145.46010541101305
Iteration: 16, Func. Count: 149, Neg. LLF: 145.46008714654033
Iteration: 17, Func. Count: 158, Neg. LLF: 145.46008303892782
Iteration: 18, Func. Count: 166, Neg. LLF: 145.4600829638858
Optimization terminated successfully (Exit mode 0)
Current function value: 145.46008303892782
Iterations: 18
Function evaluations: 166
Gradient evaluations: 18
Iteration: 1, Func. Count: 11, Neg. LLF: 159.7393455130221
Iteration: 2, Func. Count: 22, Neg. LLF: 145.20419921129812
Iteration: 3, Func. Count: 32, Neg. LLF: 145.99365107798823
Iteration: 4, Func. Count: 43, Neg. LLF: 146.1047833843721
Iteration: 5, Func. Count: 54, Neg. LLF: 189.07727537992452
Iteration: 6, Func. Count: 66, Neg. LLF: 143.83088052700595
Iteration: 7, Func. Count: 76, Neg. LLF: 143.27133264323604
Iteration: 8, Func. Count: 86, Neg. LLF: 5220381.438412908
Iteration: 9, Func. Count: 99, Neg. LLF: 148.47834554896343
Iteration: 10, Func. Count: 110, Neg. LLF: 142.92459096955008
Iteration: 11, Func. Count: 121, Neg. LLF: 142.59596107540472
Iteration: 12, Func. Count: 131, Neg. LLF: 142.56881985868839
Iteration: 13, Func. Count: 141, Neg. LLF: 142.5455059619253
Iteration: 14, Func. Count: 151, Neg. LLF: 142.51281196681592
Iteration: 15, Func. Count: 161, Neg. LLF: 142.46890284911942
Iteration: 16, Func. Count: 171, Neg. LLF: 142.4131483412907
Iteration: 17, Func. Count: 181, Neg. LLF: 142.3857333751345
Iteration: 18, Func. Count: 191, Neg. LLF: 142.3852554509031
Iteration: 19, Func. Count: 201, Neg. LLF: 142.38492327125434
Iteration: 20, Func. Count: 211, Neg. LLF: 142.38485964135066
Iteration: 21, Func. Count: 221, Neg. LLF: 142.38483484462196
Iteration: 22, Func. Count: 231, Neg. LLF: 142.42738141029497
Optimization terminated successfully (Exit mode 0)
Current function value: 142.38483404668364
Iterations: 23
Function evaluations: 233
Gradient evaluations: 22
Iteration: 1, Func. Count: 12, Neg. LLF: 168.3084454856007
Iteration: 2, Func. Count: 26, Neg. LLF: 153.75834445539257
Iteration: 3, Func. Count: 38, Neg. LLF: 145.96851916486688
Iteration: 4, Func. Count: 49, Neg. LLF: 158.64205242314043
Iteration: 5, Func. Count: 62, Neg. LLF: 145.53196668367667
Iteration: 6, Func. Count: 73, Neg. LLF: 145.09135094099315
Iteration: 7, Func. Count: 84, Neg. LLF: 170.2898440059091
Iteration: 8, Func. Count: 96, Neg. LLF: 161.85068297797824
Iteration: 9, Func. Count: 108, Neg. LLF: 145.23453593569968
Iteration: 10, Func. Count: 120, Neg. LLF: 144.4239126974366
Iteration: 11, Func. Count: 131, Neg. LLF: 144.00604057106136
Iteration: 12, Func. Count: 142, Neg. LLF: 143.85918719649192
Iteration: 13, Func. Count: 153, Neg. LLF: 143.82661273722653
Iteration: 14, Func. Count: 164, Neg. LLF: 143.77946899787432
Iteration: 15, Func. Count: 175, Neg. LLF: 143.70014560941377
Iteration: 16, Func. Count: 186, Neg. LLF: 143.67010840060874
Iteration: 17, Func. Count: 197, Neg. LLF: 143.6574120209372
Iteration: 18, Func. Count: 208, Neg. LLF: 143.65534000925206
Iteration: 19, Func. Count: 219, Neg. LLF: 143.65517563509846
Iteration: 20, Func. Count: 230, Neg. LLF: 143.65516504429633
Iteration: 21, Func. Count: 241, Neg. LLF: 143.65513726008294
Iteration: 22, Func. Count: 252, Neg. LLF: 143.68831538742046
Optimization terminated successfully (Exit mode 0)
Current function value: 143.65513712200226
Iterations: 23
Function evaluations: 255
Gradient evaluations: 22
Iteration: 1, Func. Count: 9, Neg. LLF: 169.93855659620453
Iteration: 2, Func. Count: 19, Neg. LLF: 148.27318460457306
Iteration: 3, Func. Count: 28, Neg. LLF: 149.8049513395941
Iteration: 4, Func. Count: 37, Neg. LLF: 144.35301004610935
Iteration: 5, Func. Count: 45, Neg. LLF: 144.7522024121515
Iteration: 6, Func. Count: 54, Neg. LLF: 144.21816693593104
Iteration: 7, Func. Count: 62, Neg. LLF: 144.18441708495328
Iteration: 8, Func. Count: 70, Neg. LLF: 144.17395474191187
Iteration: 9, Func. Count: 78, Neg. LLF: 144.17258794050062
Iteration: 10, Func. Count: 86, Neg. LLF: 144.17151817207753
Iteration: 11, Func. Count: 94, Neg. LLF: 144.17079079564195
Iteration: 12, Func. Count: 102, Neg. LLF: 144.17067513934765
Iteration: 13, Func. Count: 110, Neg. LLF: 144.17066667738317
Iteration: 14, Func. Count: 117, Neg. LLF: 144.17066676317657
Optimization terminated successfully (Exit mode 0)
Current function value: 144.17066667738317
Iterations: 14
Function evaluations: 117
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 162.70336971113906
Iteration: 2, Func. Count: 20, Neg. LLF: 147.34649442122324
Iteration: 3, Func. Count: 30, Neg. LLF: 145.9837603098619
Iteration: 4, Func. Count: 39, Neg. LLF: 146.24060400297654
Iteration: 5, Func. Count: 49, Neg. LLF: 146.49222961740392
Iteration: 6, Func. Count: 59, Neg. LLF: 146.4912780999373
Iteration: 7, Func. Count: 69, Neg. LLF: 146.4706061872518
Iteration: 8, Func. Count: 79, Neg. LLF: 146.035413119178
Iteration: 9, Func. Count: 89, Neg. LLF: 146.3162777996511
Iteration: 10, Func. Count: 99, Neg. LLF: 145.9281579118354
Iteration: 11, Func. Count: 109, Neg. LLF: 145.6812077921197
Iteration: 12, Func. Count: 118, Neg. LLF: 145.5982820946488
Iteration: 13, Func. Count: 127, Neg. LLF: 145.4945179675613
Iteration: 14, Func. Count: 136, Neg. LLF: 145.4600843194254
Iteration: 15, Func. Count: 145, Neg. LLF: 145.46008363246617
Optimization terminated successfully (Exit mode 0)
Current function value: 145.46008363246617
Iterations: 15
Function evaluations: 145
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 160.09338097652164
Iteration: 2, Func. Count: 22, Neg. LLF: 145.7521343655
Iteration: 3, Func. Count: 32, Neg. LLF: 145.60770489196634
Iteration: 4, Func. Count: 42, Neg. LLF: 146.10342681998875
Iteration: 5, Func. Count: 54, Neg. LLF: 145.53889323160692
Iteration: 6, Func. Count: 64, Neg. LLF: 145.52184839501234
Iteration: 7, Func. Count: 74, Neg. LLF: 145.5204585555465
Iteration: 8, Func. Count: 84, Neg. LLF: 145.5186204479029
Iteration: 9, Func. Count: 94, Neg. LLF: 145.51702150753607
Iteration: 10, Func. Count: 104, Neg. LLF: 145.51358418078271
Iteration: 11, Func. Count: 114, Neg. LLF: 145.50810831856194
Iteration: 12, Func. Count: 124, Neg. LLF: 145.49766965695682
Iteration: 13, Func. Count: 134, Neg. LLF: 145.46496942386904
Iteration: 14, Func. Count: 144, Neg. LLF: 145.46333562636977
Iteration: 15, Func. Count: 154, Neg. LLF: 145.46014173969883
Iteration: 16, Func. Count: 164, Neg. LLF: 145.46008801698505
Iteration: 17, Func. Count: 174, Neg. LLF: 145.4600834792733
Iteration: 18, Func. Count: 184, Neg. LLF: 145.46009995688826
Optimization terminated successfully (Exit mode 0)
Current function value: 145.46008347043482
Iterations: 19
Function evaluations: 186
Gradient evaluations: 18
Iteration: 1, Func. Count: 12, Neg. LLF: 159.76814638224494
Iteration: 2, Func. Count: 24, Neg. LLF: 145.19680772657523
Iteration: 3, Func. Count: 35, Neg. LLF: 146.68365659579896
Iteration: 4, Func. Count: 47, Neg. LLF: 146.540703959009
Iteration: 5, Func. Count: 59, Neg. LLF: 185.5245742863217
Iteration: 6, Func. Count: 72, Neg. LLF: 143.6624653880904
Iteration: 7, Func. Count: 83, Neg. LLF: 143.3217962315545
Iteration: 8, Func. Count: 94, Neg. LLF: 163.75173759847877
Iteration: 9, Func. Count: 109, Neg. LLF: 151.3814959791509
Iteration: 10, Func. Count: 121, Neg. LLF: 143.17126271058982
Iteration: 11, Func. Count: 133, Neg. LLF: 142.77283795722798
Iteration: 12, Func. Count: 145, Neg. LLF: 142.58610406040958
Iteration: 13, Func. Count: 156, Neg. LLF: 142.55159683062413
Iteration: 14, Func. Count: 167, Neg. LLF: 142.53943298918531
Iteration: 15, Func. Count: 178, Neg. LLF: 142.47159918260263
Iteration: 16, Func. Count: 189, Neg. LLF: 142.40945325926683
Iteration: 17, Func. Count: 200, Neg. LLF: 142.38791966571424
Iteration: 18, Func. Count: 211, Neg. LLF: 142.3859127553156
Iteration: 19, Func. Count: 222, Neg. LLF: 142.3849423182409
Iteration: 20, Func. Count: 233, Neg. LLF: 147.55571896704217
Iteration: 21, Func. Count: 247, Neg. LLF: 142.83885061905715
Iteration: 22, Func. Count: 260, Neg. LLF: 142.39506338926137
Iteration: 23, Func. Count: 273, Neg. LLF: 142.38497168533456
Iteration: 24, Func. Count: 285, Neg. LLF: 142.384820427426
Iteration: 25, Func. Count: 295, Neg. LLF: 142.3848204096501
Optimization terminated successfully (Exit mode 0)
Current function value: 142.384820427426
Iterations: 26
Function evaluations: 295
Gradient evaluations: 25
Iteration: 1, Func. Count: 13, Neg. LLF: 167.7147217508411
Iteration: 2, Func. Count: 28, Neg. LLF: 155.2904298338538
Iteration: 3, Func. Count: 41, Neg. LLF: 146.14926454467124
Iteration: 4, Func. Count: 53, Neg. LLF: 160.89594052859937
Iteration: 5, Func. Count: 67, Neg. LLF: 157.62163598898536
Iteration: 6, Func. Count: 80, Neg. LLF: 144.2303861618613
Iteration: 7, Func. Count: 92, Neg. LLF: 143.77716994944763
Iteration: 8, Func. Count: 104, Neg. LLF: 151.13356842863817
Iteration: 9, Func. Count: 119, Neg. LLF: 148.04934990714648
Iteration: 10, Func. Count: 132, Neg. LLF: 142.73173301895258
Iteration: 11, Func. Count: 144, Neg. LLF: 142.48540235540503
Iteration: 12, Func. Count: 156, Neg. LLF: 142.42406234718035
Iteration: 13, Func. Count: 168, Neg. LLF: 142.40251364029396
Iteration: 14, Func. Count: 180, Neg. LLF: 142.39538637655156
Iteration: 15, Func. Count: 192, Neg. LLF: 142.39083984395342
Iteration: 16, Func. Count: 204, Neg. LLF: 142.3856114099706
Iteration: 17, Func. Count: 216, Neg. LLF: 142.3849352025298
Iteration: 18, Func. Count: 228, Neg. LLF: 142.38482546222943
Iteration: 19, Func. Count: 240, Neg. LLF: 142.38482103850194
Iteration: 20, Func. Count: 252, Neg. LLF: 142.38481999101992
Iteration: 21, Func. Count: 263, Neg. LLF: 142.38482005020504
Optimization terminated successfully (Exit mode 0)
Current function value: 142.38481999101992
Iterations: 21
Function evaluations: 263
Gradient evaluations: 21
Iteration: 1, Func. Count: 6, Neg. LLF: 147.4733519191507
Iteration: 2, Func. Count: 11, Neg. LLF: 150.1003807871079
Iteration: 3, Func. Count: 17, Neg. LLF: 147.15422378646545
Iteration: 4, Func. Count: 22, Neg. LLF: 147.13276892961954
Iteration: 5, Func. Count: 27, Neg. LLF: 147.12536942011238
Iteration: 6, Func. Count: 32, Neg. LLF: 147.1149514086602
Iteration: 7, Func. Count: 37, Neg. LLF: 147.11487144929038
Iteration: 8, Func. Count: 41, Neg. LLF: 147.1148714858338
Optimization terminated successfully (Exit mode 0)
Current function value: 147.11487144929038
Iterations: 8
Function evaluations: 41
Gradient evaluations: 8
Iteration: 1, Func. Count: 7, Neg. LLF: 179.52633158128583
Iteration: 2, Func. Count: 16, Neg. LLF: 147.11171829605314
Iteration: 3, Func. Count: 23, Neg. LLF: 146.2348266993236
Iteration: 4, Func. Count: 29, Neg. LLF: 145.98316192116505
Iteration: 5, Func. Count: 35, Neg. LLF: 145.75965773584028
Iteration: 6, Func. Count: 41, Neg. LLF: 145.538469074583
Iteration: 7, Func. Count: 47, Neg. LLF: 145.96878201051763
Iteration: 8, Func. Count: 54, Neg. LLF: 145.46377366373764
Iteration: 9, Func. Count: 60, Neg. LLF: 145.4600901686621
Iteration: 10, Func. Count: 66, Neg. LLF: 145.46008596115865
Iteration: 11, Func. Count: 72, Neg. LLF: 145.4600836310199
Iteration: 12, Func. Count: 77, Neg. LLF: 145.46008370721904
Optimization terminated successfully (Exit mode 0)
Current function value: 145.4600836310199
Iterations: 12
Function evaluations: 77
Gradient evaluations: 12
Iteration: 1, Func. Count: 8, Neg. LLF: 160.0529559859501
Iteration: 2, Func. Count: 16, Neg. LLF: 145.62682099132445
Iteration: 3, Func. Count: 23, Neg. LLF: 145.79537687756167
Iteration: 4, Func. Count: 31, Neg. LLF: 145.50848823184344
Iteration: 5, Func. Count: 38, Neg. LLF: 145.50408459934116
Iteration: 6, Func. Count: 45, Neg. LLF: 145.48792262774583
Iteration: 7, Func. Count: 52, Neg. LLF: 145.4611688430849
Iteration: 8, Func. Count: 59, Neg. LLF: 145.46055872911273
Iteration: 9, Func. Count: 66, Neg. LLF: 145.8392259439862
Iteration: 10, Func. Count: 75, Neg. LLF: 145.4602556585305
Iteration: 11, Func. Count: 83, Neg. LLF: 145.46008363361477
Iteration: 12, Func. Count: 89, Neg. LLF: 145.46008355893704
Optimization terminated successfully (Exit mode 0)
Current function value: 145.46008363361477
Iterations: 13
Function evaluations: 89
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 162.35724864806997
Iteration: 2, Func. Count: 18, Neg. LLF: 145.60491739513927
Iteration: 3, Func. Count: 26, Neg. LLF: 145.89582266617654
Iteration: 4, Func. Count: 35, Neg. LLF: 145.5549657687936
Iteration: 5, Func. Count: 43, Neg. LLF: 145.5454482942243
Iteration: 6, Func. Count: 51, Neg. LLF: 145.51957630775695
Iteration: 7, Func. Count: 59, Neg. LLF: 145.50303215385247
Iteration: 8, Func. Count: 67, Neg. LLF: 145.50084480586668
Iteration: 9, Func. Count: 75, Neg. LLF: 145.49151652365535
Iteration: 10, Func. Count: 83, Neg. LLF: 145.47094134457006
Iteration: 11, Func. Count: 91, Neg. LLF: 145.4687640119219
Iteration: 12, Func. Count: 99, Neg. LLF: 145.46944054056735
Iteration: 13, Func. Count: 108, Neg. LLF: 145.46850420925168
Iteration: 14, Func. Count: 117, Neg. LLF: 145.46282639971471
Iteration: 15, Func. Count: 125, Neg. LLF: 147.77095738397583
Iteration: 16, Func. Count: 135, Neg. LLF: 145.4606162813235
Iteration: 17, Func. Count: 144, Neg. LLF: 145.46008363231778
Iteration: 18, Func. Count: 151, Neg. LLF: 145.46008356042864
Optimization terminated successfully (Exit mode 0)
Current function value: 145.46008363231778
Iterations: 19
Function evaluations: 151
Gradient evaluations: 18
Iteration: 1, Func. Count: 10, Neg. LLF: 164.48891797925495
Iteration: 2, Func. Count: 20, Neg. LLF: 145.61990999951993
Iteration: 3, Func. Count: 29, Neg. LLF: 145.65388786605757
Iteration: 4, Func. Count: 39, Neg. LLF: 145.59648969961654
Iteration: 5, Func. Count: 48, Neg. LLF: 145.59166337106586
Iteration: 6, Func. Count: 57, Neg. LLF: 145.55627892265008
Iteration: 7, Func. Count: 66, Neg. LLF: 145.51734429643975
Iteration: 8, Func. Count: 75, Neg. LLF: 145.52106398770516
Iteration: 9, Func. Count: 85, Neg. LLF: 145.50019120211186
Iteration: 10, Func. Count: 94, Neg. LLF: 145.46328535905693
Iteration: 11, Func. Count: 103, Neg. LLF: 145.55799392578845
Iteration: 12, Func. Count: 113, Neg. LLF: 145.63386477580562
Iteration: 13, Func. Count: 123, Neg. LLF: 145.46008363427464
Iteration: 14, Func. Count: 131, Neg. LLF: 145.4600835659971
Optimization terminated successfully (Exit mode 0)
Current function value: 145.46008363427464
Iterations: 15
Function evaluations: 131
Gradient evaluations: 14
Iteration: 1, Func. Count: 7, Neg. LLF: 153.14326317021363
Iteration: 2, Func. Count: 14, Neg. LLF: 150.63654147902946
Iteration: 3, Func. Count: 21, Neg. LLF: 144.59232765012771
Iteration: 4, Func. Count: 27, Neg. LLF: 144.61832655869236
Iteration: 5, Func. Count: 34, Neg. LLF: 144.5099459980524
Iteration: 6, Func. Count: 40, Neg. LLF: 144.50804973360152
Iteration: 7, Func. Count: 46, Neg. LLF: 144.50670321050563
Iteration: 8, Func. Count: 52, Neg. LLF: 144.5050183435587
Iteration: 9, Func. Count: 58, Neg. LLF: 144.50497801036377
Iteration: 10, Func. Count: 64, Neg. LLF: 144.50497532525753
Iteration: 11, Func. Count: 69, Neg. LLF: 144.50497532525608
Optimization terminated successfully (Exit mode 0)
Current function value: 144.50497532525753
Iterations: 11
Function evaluations: 69
Gradient evaluations: 11
Iteration: 1, Func. Count: 8, Neg. LLF: 162.34113409808728
Iteration: 2, Func. Count: 16, Neg. LLF: 147.2394258938561
Iteration: 3, Func. Count: 24, Neg. LLF: 145.9585627107838
Iteration: 4, Func. Count: 31, Neg. LLF: 146.305403695671
Iteration: 5, Func. Count: 39, Neg. LLF: 145.8743640190513
Iteration: 6, Func. Count: 46, Neg. LLF: 145.86893360719085
Iteration: 7, Func. Count: 54, Neg. LLF: 145.7060260036437
Iteration: 8, Func. Count: 61, Neg. LLF: 145.76973128237995
Iteration: 9, Func. Count: 69, Neg. LLF: 145.6563028963092
Iteration: 10, Func. Count: 76, Neg. LLF: 145.64877358311614
Iteration: 11, Func. Count: 83, Neg. LLF: 145.6461885215756
Iteration: 12, Func. Count: 90, Neg. LLF: 145.64598229552544
Iteration: 13, Func. Count: 97, Neg. LLF: 145.64596135098896
Iteration: 14, Func. Count: 104, Neg. LLF: 145.64595902983731
Iteration: 15, Func. Count: 110, Neg. LLF: 145.6459589838872
Optimization terminated successfully (Exit mode 0)
Current function value: 145.64595902983731
Iterations: 15
Function evaluations: 110
Gradient evaluations: 15
Iteration: 1, Func. Count: 9, Neg. LLF: 159.5586512316526
Iteration: 2, Func. Count: 18, Neg. LLF: 145.75373429730482
Iteration: 3, Func. Count: 26, Neg. LLF: 145.6065660120677
Iteration: 4, Func. Count: 34, Neg. LLF: 146.2218418326847
Iteration: 5, Func. Count: 44, Neg. LLF: 145.53078796561843
Iteration: 6, Func. Count: 52, Neg. LLF: 145.52138680774124
Iteration: 7, Func. Count: 60, Neg. LLF: 145.52033201862037
Iteration: 8, Func. Count: 68, Neg. LLF: 145.51861447349404
Iteration: 9, Func. Count: 76, Neg. LLF: 145.51613486333198
Iteration: 10, Func. Count: 84, Neg. LLF: 145.5125971847882
Iteration: 11, Func. Count: 92, Neg. LLF: 145.50604427751014
Iteration: 12, Func. Count: 100, Neg. LLF: 145.49411037315076
Iteration: 13, Func. Count: 108, Neg. LLF: 145.46205797083448
Iteration: 14, Func. Count: 116, Neg. LLF: 145.4604329845431
Iteration: 15, Func. Count: 124, Neg. LLF: 145.46008887428104
Iteration: 16, Func. Count: 132, Neg. LLF: 145.4600844316023
Iteration: 17, Func. Count: 140, Neg. LLF: 145.46026473682613
Optimization terminated successfully (Exit mode 0)
Current function value: 145.46008427120876
Iterations: 18
Function evaluations: 142
Gradient evaluations: 17
Iteration: 1, Func. Count: 10, Neg. LLF: 161.25382202443808
Iteration: 2, Func. Count: 20, Neg. LLF: 145.43188381213244
Iteration: 3, Func. Count: 29, Neg. LLF: 144.8540852318245
Iteration: 4, Func. Count: 38, Neg. LLF: 145.0087001434368
Iteration: 5, Func. Count: 48, Neg. LLF: 144.01713516636394
Iteration: 6, Func. Count: 57, Neg. LLF: 149.40952769270336
Iteration: 7, Func. Count: 68, Neg. LLF: 144.68368226608717
Iteration: 8, Func. Count: 78, Neg. LLF: 143.73749404870958
Iteration: 9, Func. Count: 87, Neg. LLF: 143.6799581702991
Iteration: 10, Func. Count: 96, Neg. LLF: 143.61201149567194
Iteration: 11, Func. Count: 105, Neg. LLF: 143.55892123007519
Iteration: 12, Func. Count: 114, Neg. LLF: 143.54289552614262
Iteration: 13, Func. Count: 123, Neg. LLF: 143.54098654599028
Iteration: 14, Func. Count: 132, Neg. LLF: 143.54093447879893
Iteration: 15, Func. Count: 141, Neg. LLF: 143.5409146465602
Iteration: 16, Func. Count: 150, Neg. LLF: 143.54087827986555
Iteration: 17, Func. Count: 169, Neg. LLF: 143.71590643540193
Iteration: 18, Func. Count: 181, Neg. LLF: 143.543325801881
Iteration: 19, Func. Count: 193, Neg. LLF: 143.54094636184428
Iteration: 20, Func. Count: 203, Neg. LLF: 143.54091822850114
Iteration: 21, Func. Count: 211, Neg. LLF: 143.54091815074594
Optimization terminated successfully (Exit mode 0)
Current function value: 143.54091822850114
Iterations: 22
Function evaluations: 211
Gradient evaluations: 21
Iteration: 1, Func. Count: 11, Neg. LLF: 163.617349719338
Iteration: 2, Func. Count: 22, Neg. LLF: 145.65447009823325
Iteration: 3, Func. Count: 32, Neg. LLF: 146.11646300479566
Iteration: 4, Func. Count: 43, Neg. LLF: 145.58960864069337
Iteration: 5, Func. Count: 53, Neg. LLF: 145.58004515438515
Iteration: 6, Func. Count: 63, Neg. LLF: 145.55020583403882
Iteration: 7, Func. Count: 73, Neg. LLF: 145.47836651311962
Iteration: 8, Func. Count: 83, Neg. LLF: 145.4879565409697
Iteration: 9, Func. Count: 94, Neg. LLF: 145.46120650384103
Iteration: 10, Func. Count: 105, Neg. LLF: 145.46075489791056
Iteration: 11, Func. Count: 116, Neg. LLF: 145.46067413073146
Iteration: 12, Func. Count: 126, Neg. LLF: 145.46035719267365
Iteration: 13, Func. Count: 136, Neg. LLF: 152.66457714966785
Iteration: 14, Func. Count: 150, Neg. LLF: 145.6034450798143
Optimization terminated successfully (Exit mode 0)
Current function value: 145.46030423392583
Iterations: 14
Function evaluations: 160
Gradient evaluations: 14
Iteration: 1, Func. Count: 8, Neg. LLF: 148.8722866456825
Iteration: 2, Func. Count: 15, Neg. LLF: 149.9686699278174
Iteration: 3, Func. Count: 23, Neg. LLF: 144.5326528402882
Iteration: 4, Func. Count: 30, Neg. LLF: 144.51059465383145
Iteration: 5, Func. Count: 37, Neg. LLF: 144.50692184719145
Iteration: 6, Func. Count: 44, Neg. LLF: 144.50596755708764
Iteration: 7, Func. Count: 51, Neg. LLF: 144.50528859520875
Iteration: 8, Func. Count: 58, Neg. LLF: 144.5050088566464
Iteration: 9, Func. Count: 65, Neg. LLF: 144.50497645809398
Iteration: 10, Func. Count: 72, Neg. LLF: 144.5049753280372
Iteration: 11, Func. Count: 78, Neg. LLF: 144.50497527539312
Optimization terminated successfully (Exit mode 0)
Current function value: 144.5049753280372
Iterations: 11
Function evaluations: 78
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 149.06448738132298
Iteration: 2, Func. Count: 18, Neg. LLF: 146.47471394439378
Iteration: 3, Func. Count: 27, Neg. LLF: 158.26138563203722
Iteration: 4, Func. Count: 37, Neg. LLF: 144.8865663929832
Iteration: 5, Func. Count: 45, Neg. LLF: 144.6295130706258
Iteration: 6, Func. Count: 53, Neg. LLF: 144.8781398474506
Iteration: 7, Func. Count: 63, Neg. LLF: 144.7010546523445
Iteration: 8, Func. Count: 72, Neg. LLF: 144.5984945814229
Iteration: 9, Func. Count: 80, Neg. LLF: 144.59773496897463
Iteration: 10, Func. Count: 88, Neg. LLF: 144.5973499516535
Iteration: 11, Func. Count: 96, Neg. LLF: 144.59730292398044
Iteration: 12, Func. Count: 103, Neg. LLF: 144.59730290053386
Optimization terminated successfully (Exit mode 0)
Current function value: 144.59730292398044
Iterations: 12
Function evaluations: 103
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 146.32450975109757
Iteration: 2, Func. Count: 20, Neg. LLF: 145.801450065146
Iteration: 3, Func. Count: 31, Neg. LLF: 150.16951514051695
Iteration: 4, Func. Count: 41, Neg. LLF: 144.11837753932488
Iteration: 5, Func. Count: 50, Neg. LLF: 149.29859150230578
Iteration: 6, Func. Count: 60, Neg. LLF: 159.9518952693228
Iteration: 7, Func. Count: 70, Neg. LLF: 144.05833694576282
Iteration: 8, Func. Count: 80, Neg. LLF: 152.85887000106186
Iteration: 9, Func. Count: 90, Neg. LLF: 144.13038048278628
Iteration: 10, Func. Count: 100, Neg. LLF: 143.84021620334894
Iteration: 11, Func. Count: 110, Neg. LLF: 143.4285999321749
Iteration: 12, Func. Count: 120, Neg. LLF: 143.14704743161926
Iteration: 13, Func. Count: 129, Neg. LLF: 143.13511964497994
Iteration: 14, Func. Count: 138, Neg. LLF: 143.13361603253804
Iteration: 15, Func. Count: 147, Neg. LLF: 143.13360645058646
Iteration: 16, Func. Count: 156, Neg. LLF: 143.13360353181235
Iteration: 17, Func. Count: 165, Neg. LLF: 143.1336026982034
Optimization terminated successfully (Exit mode 0)
Current function value: 143.1336026982034
Iterations: 17
Function evaluations: 165
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 162.09119734832666
Iteration: 2, Func. Count: 22, Neg. LLF: 145.47730444367198
Iteration: 3, Func. Count: 32, Neg. LLF: 144.96808148589037
Iteration: 4, Func. Count: 42, Neg. LLF: 171.74805030828492
Iteration: 5, Func. Count: 54, Neg. LLF: 145.07997942646412
Iteration: 6, Func. Count: 65, Neg. LLF: 160.50265840993458
Iteration: 7, Func. Count: 76, Neg. LLF: 145.0662405571111
Iteration: 8, Func. Count: 87, Neg. LLF: 146.322717878099
Iteration: 9, Func. Count: 99, Neg. LLF: 144.79046293579356
Iteration: 10, Func. Count: 110, Neg. LLF: 143.94565282921712
Iteration: 11, Func. Count: 120, Neg. LLF: 143.53609852067487
Iteration: 12, Func. Count: 130, Neg. LLF: 146.45551842103328
Iteration: 13, Func. Count: 141, Neg. LLF: 143.63595014678626
Iteration: 14, Func. Count: 152, Neg. LLF: 144.35430973022258
Iteration: 15, Func. Count: 163, Neg. LLF: 143.64714056553078
Iteration: 16, Func. Count: 174, Neg. LLF: 143.44806606087516
Iteration: 17, Func. Count: 184, Neg. LLF: 143.44516907463614
Iteration: 18, Func. Count: 194, Neg. LLF: 143.44492113291327
Iteration: 19, Func. Count: 204, Neg. LLF: 143.44491382009855
Iteration: 20, Func. Count: 213, Neg. LLF: 143.44491374610095
Optimization terminated successfully (Exit mode 0)
Current function value: 143.44491382009855
Iterations: 21
Function evaluations: 213
Gradient evaluations: 20
Iteration: 1, Func. Count: 12, Neg. LLF: 164.4730655935442
Iteration: 2, Func. Count: 24, Neg. LLF: 145.63794014685396
Iteration: 3, Func. Count: 35, Neg. LLF: 145.87694953107524
Iteration: 4, Func. Count: 47, Neg. LLF: 145.59502314159147
Iteration: 5, Func. Count: 58, Neg. LLF: 145.5862156205109
Iteration: 6, Func. Count: 69, Neg. LLF: 145.56666125009946
Iteration: 7, Func. Count: 80, Neg. LLF: 145.48137026007967
Iteration: 8, Func. Count: 91, Neg. LLF: 145.47620881776402
Iteration: 9, Func. Count: 102, Neg. LLF: 145.46831502331415
Iteration: 10, Func. Count: 113, Neg. LLF: 145.4610051712172
Iteration: 11, Func. Count: 124, Neg. LLF: 158.26274023872824
Iteration: 12, Func. Count: 139, Neg. LLF: 156.6395778644555
Iteration: 13, Func. Count: 160, Neg. LLF: 145.5895343288524
Iteration: 14, Func. Count: 173, Neg. LLF: 145.46010199179918
Iteration: 15, Func. Count: 184, Neg. LLF: 145.46008368831664
Iteration: 16, Func. Count: 194, Neg. LLF: 145.46008361974742
Optimization terminated successfully (Exit mode 0)
Current function value: 145.46008368831664
Iterations: 17
Function evaluations: 194
Gradient evaluations: 16
Iteration: 1, Func. Count: 9, Neg. LLF: 160.71635017486724
Iteration: 2, Func. Count: 19, Neg. LLF: 145.24112123670605
Iteration: 3, Func. Count: 27, Neg. LLF: 150.34853723577774
Iteration: 4, Func. Count: 36, Neg. LLF: 144.29804536022857
Iteration: 5, Func. Count: 44, Neg. LLF: 144.20986886426434
Iteration: 6, Func. Count: 52, Neg. LLF: 148.36050132551657
Iteration: 7, Func. Count: 62, Neg. LLF: 144.18508289289073
Iteration: 8, Func. Count: 70, Neg. LLF: 144.1739014821658
Iteration: 9, Func. Count: 78, Neg. LLF: 144.17080281546
Iteration: 10, Func. Count: 86, Neg. LLF: 144.17066975588688
Iteration: 11, Func. Count: 94, Neg. LLF: 144.1706666209299
Iteration: 12, Func. Count: 101, Neg. LLF: 144.17066662059554
Optimization terminated successfully (Exit mode 0)
Current function value: 144.1706666209299
Iterations: 12
Function evaluations: 101
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 148.93976647262562
Iteration: 2, Func. Count: 20, Neg. LLF: 146.47115042371436
Iteration: 3, Func. Count: 30, Neg. LLF: 159.40240776519488
Iteration: 4, Func. Count: 40, Neg. LLF: 145.54855312530515
Iteration: 5, Func. Count: 50, Neg. LLF: 147.5611759093352
Iteration: 6, Func. Count: 60, Neg. LLF: 144.36764694981002
Iteration: 7, Func. Count: 69, Neg. LLF: 144.45507274662074
Iteration: 8, Func. Count: 79, Neg. LLF: 145.65046128382238
Iteration: 9, Func. Count: 89, Neg. LLF: 144.26215156378436
Iteration: 10, Func. Count: 98, Neg. LLF: 144.279524369744
Iteration: 11, Func. Count: 108, Neg. LLF: 144.26101531972986
Iteration: 12, Func. Count: 118, Neg. LLF: 144.25923519494197
Iteration: 13, Func. Count: 127, Neg. LLF: 144.2591938474005
Iteration: 14, Func. Count: 135, Neg. LLF: 144.25919382258743
Optimization terminated successfully (Exit mode 0)
Current function value: 144.2591938474005
Iterations: 14
Function evaluations: 135
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 146.27899657663465
Iteration: 2, Func. Count: 22, Neg. LLF: 145.61489065932201
Iteration: 3, Func. Count: 34, Neg. LLF: 150.33923411438894
Iteration: 4, Func. Count: 45, Neg. LLF: 143.49777518853793
Iteration: 5, Func. Count: 55, Neg. LLF: 143.9783390616232
Iteration: 6, Func. Count: 68, Neg. LLF: 158.7334126492055
Iteration: 7, Func. Count: 80, Neg. LLF: 143.86655135986362
Iteration: 8, Func. Count: 91, Neg. LLF: 170.5171252254401
Iteration: 9, Func. Count: 102, Neg. LLF: 149.75065777967765
Iteration: 10, Func. Count: 113, Neg. LLF: 142.96561843219828
Iteration: 11, Func. Count: 123, Neg. LLF: 142.95520166039103
Iteration: 12, Func. Count: 133, Neg. LLF: 142.95156243431774
Iteration: 13, Func. Count: 143, Neg. LLF: 142.94933132329726
Iteration: 14, Func. Count: 153, Neg. LLF: 142.94919859508397
Iteration: 15, Func. Count: 163, Neg. LLF: 142.94906963846336
Iteration: 16, Func. Count: 173, Neg. LLF: 142.9490687553962
Optimization terminated successfully (Exit mode 0)
Current function value: 142.9490687553962
Iterations: 16
Function evaluations: 173
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 161.43463677696957
Iteration: 2, Func. Count: 24, Neg. LLF: 145.37028458768987
Iteration: 3, Func. Count: 35, Neg. LLF: 146.1260309707434
Iteration: 4, Func. Count: 47, Neg. LLF: 154.3243753306871
Iteration: 5, Func. Count: 59, Neg. LLF: 144.4365885365184
Iteration: 6, Func. Count: 70, Neg. LLF: 204.33178379487265
Iteration: 7, Func. Count: 83, Neg. LLF: 149.25623070600793
Iteration: 8, Func. Count: 95, Neg. LLF: 150.43784103613604
Iteration: 9, Func. Count: 107, Neg. LLF: 171.81294749531165
Iteration: 10, Func. Count: 120, Neg. LLF: 147.37918040106854
Iteration: 11, Func. Count: 132, Neg. LLF: 143.9917801975071
Iteration: 12, Func. Count: 144, Neg. LLF: 143.4197767465039
Iteration: 13, Func. Count: 156, Neg. LLF: 142.69041527699403
Iteration: 14, Func. Count: 167, Neg. LLF: 142.6422524909873
Iteration: 15, Func. Count: 178, Neg. LLF: 142.5863988710012
Iteration: 16, Func. Count: 189, Neg. LLF: 142.55373827612584
Iteration: 17, Func. Count: 200, Neg. LLF: 142.53746373579276
Iteration: 18, Func. Count: 211, Neg. LLF: 142.51373375852535
Iteration: 19, Func. Count: 222, Neg. LLF: 142.4529657104125
Iteration: 20, Func. Count: 233, Neg. LLF: 142.4047102075087
Iteration: 21, Func. Count: 244, Neg. LLF: 142.38833707597405
Iteration: 22, Func. Count: 255, Neg. LLF: 142.38589898003113
Iteration: 23, Func. Count: 266, Neg. LLF: 142.38546783515528
Iteration: 24, Func. Count: 277, Neg. LLF: 142.38499727855196
Iteration: 25, Func. Count: 288, Neg. LLF: 142.3848748283951
Iteration: 26, Func. Count: 299, Neg. LLF: 142.3848462685304
Iteration: 27, Func. Count: 310, Neg. LLF: 142.4390477950963
Optimization terminated successfully (Exit mode 0)
Current function value: 142.3848458506713
Iterations: 28
Function evaluations: 313
Gradient evaluations: 27
Iteration: 1, Func. Count: 13, Neg. LLF: 168.1454730527329
Iteration: 2, Func. Count: 28, Neg. LLF: 153.37624128822821
Iteration: 3, Func. Count: 41, Neg. LLF: 145.85989745718354
Iteration: 4, Func. Count: 53, Neg. LLF: 147.14668250170422
Iteration: 5, Func. Count: 66, Neg. LLF: 145.54719642589407
Iteration: 6, Func. Count: 78, Neg. LLF: 145.3457895089465
Iteration: 7, Func. Count: 90, Neg. LLF: 174.6265749830427
Iteration: 8, Func. Count: 103, Neg. LLF: 146.3659550569062
Iteration: 9, Func. Count: 116, Neg. LLF: 147.3369224116128
Iteration: 10, Func. Count: 129, Neg. LLF: 144.0175788791081
Iteration: 11, Func. Count: 141, Neg. LLF: 143.89496944604463
Iteration: 12, Func. Count: 153, Neg. LLF: 143.85061469481315
Iteration: 13, Func. Count: 165, Neg. LLF: 143.76159823247406
Iteration: 14, Func. Count: 177, Neg. LLF: 143.7045830333669
Iteration: 15, Func. Count: 189, Neg. LLF: 143.65934241314991
Iteration: 16, Func. Count: 201, Neg. LLF: 143.65562468350396
Iteration: 17, Func. Count: 213, Neg. LLF: 143.65514049460236
Iteration: 18, Func. Count: 225, Neg. LLF: 144.097072455481
Iteration: 19, Func. Count: 240, Neg. LLF: 143.68339286858662
Optimization terminated successfully (Exit mode 0)
Current function value: 143.65513747934
Iterations: 20
Function evaluations: 243
Gradient evaluations: 19
Iteration: 1, Func. Count: 10, Neg. LLF: 159.4002512165745
Iteration: 2, Func. Count: 21, Neg. LLF: 145.0600999837874
Iteration: 3, Func. Count: 30, Neg. LLF: 149.85112649511933
Iteration: 4, Func. Count: 40, Neg. LLF: 144.3074656246187
Iteration: 5, Func. Count: 49, Neg. LLF: 145.4728778455298
Iteration: 6, Func. Count: 59, Neg. LLF: 144.54812359453896
Iteration: 7, Func. Count: 69, Neg. LLF: 144.18781830058126
Iteration: 8, Func. Count: 78, Neg. LLF: 144.17580683595557
Iteration: 9, Func. Count: 87, Neg. LLF: 144.1719507081923
Iteration: 10, Func. Count: 96, Neg. LLF: 144.17067442705672
Iteration: 11, Func. Count: 105, Neg. LLF: 144.1706668746458
Iteration: 12, Func. Count: 113, Neg. LLF: 144.170666960479
Optimization terminated successfully (Exit mode 0)
Current function value: 144.1706668746458
Iterations: 12
Function evaluations: 113
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 148.79329383658708
Iteration: 2, Func. Count: 22, Neg. LLF: 146.4968531897084
Iteration: 3, Func. Count: 33, Neg. LLF: 155.25399820627325
Iteration: 4, Func. Count: 44, Neg. LLF: 145.71476837099402
Iteration: 5, Func. Count: 55, Neg. LLF: 146.41034092435822
Iteration: 6, Func. Count: 66, Neg. LLF: 144.98088172407523
Iteration: 7, Func. Count: 77, Neg. LLF: 144.8362392234256
Iteration: 8, Func. Count: 88, Neg. LLF: 144.2725856420367
Iteration: 9, Func. Count: 98, Neg. LLF: 146.8194517117873
Iteration: 10, Func. Count: 110, Neg. LLF: 144.26464808661558
Iteration: 11, Func. Count: 121, Neg. LLF: 144.25965664347567
Iteration: 12, Func. Count: 132, Neg. LLF: 144.25927598182827
Iteration: 13, Func. Count: 142, Neg. LLF: 144.25921968528027
Iteration: 14, Func. Count: 152, Neg. LLF: 144.2591969632953
Iteration: 15, Func. Count: 162, Neg. LLF: 144.25919393951702
Iteration: 16, Func. Count: 171, Neg. LLF: 144.25919391466135
Optimization terminated successfully (Exit mode 0)
Current function value: 144.25919393951702
Iterations: 16
Function evaluations: 171
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 146.26199455739018
Iteration: 2, Func. Count: 24, Neg. LLF: 146.12766469228185
Iteration: 3, Func. Count: 37, Neg. LLF: 150.01822368339754
Iteration: 4, Func. Count: 49, Neg. LLF: 143.48649932645336
Iteration: 5, Func. Count: 60, Neg. LLF: 144.07305273342212
Iteration: 6, Func. Count: 74, Neg. LLF: 156.85992249276288
Iteration: 7, Func. Count: 87, Neg. LLF: 144.00460054422695
Iteration: 8, Func. Count: 99, Neg. LLF: 152.73556329238718
Iteration: 9, Func. Count: 111, Neg. LLF: 144.57012576426763
Iteration: 10, Func. Count: 123, Neg. LLF: 145.61844512935357
Iteration: 11, Func. Count: 135, Neg. LLF: 143.30119240687333
Iteration: 12, Func. Count: 147, Neg. LLF: 143.1286250147669
Iteration: 13, Func. Count: 159, Neg. LLF: 143.46686480800713
Iteration: 14, Func. Count: 171, Neg. LLF: 142.8059465607796
Iteration: 15, Func. Count: 182, Neg. LLF: 142.80556240905742
Iteration: 16, Func. Count: 193, Neg. LLF: 142.80552708629457
Iteration: 17, Func. Count: 204, Neg. LLF: 142.8055202707706
Iteration: 18, Func. Count: 215, Neg. LLF: 142.80551782661024
Iteration: 19, Func. Count: 226, Neg. LLF: 142.8055170074643
Optimization terminated successfully (Exit mode 0)
Current function value: 142.8055170074643
Iterations: 19
Function evaluations: 226
Gradient evaluations: 19
Iteration: 1, Func. Count: 13, Neg. LLF: 161.44114509857343
Iteration: 2, Func. Count: 26, Neg. LLF: 145.34258360781195
Iteration: 3, Func. Count: 38, Neg. LLF: 145.43389126022538
Iteration: 4, Func. Count: 51, Neg. LLF: 150.09834224932032
Iteration: 5, Func. Count: 64, Neg. LLF: 144.0319367481599
Iteration: 6, Func. Count: 76, Neg. LLF: 213.0115787374757
Iteration: 7, Func. Count: 90, Neg. LLF: 149.79717191278343
Iteration: 8, Func. Count: 103, Neg. LLF: 152.17262864826662
Iteration: 9, Func. Count: 117, Neg. LLF: 143.5124166870631
Iteration: 10, Func. Count: 130, Neg. LLF: 148.84617689808596
Iteration: 11, Func. Count: 143, Neg. LLF: 143.04260644946234
Iteration: 12, Func. Count: 156, Neg. LLF: 142.64834458720816
Iteration: 13, Func. Count: 168, Neg. LLF: 142.61015952227484
Iteration: 14, Func. Count: 180, Neg. LLF: 142.56274732615898
Iteration: 15, Func. Count: 192, Neg. LLF: 142.54294190046585
Iteration: 16, Func. Count: 204, Neg. LLF: 142.5284881947807
Iteration: 17, Func. Count: 216, Neg. LLF: 142.49961462938208
Iteration: 18, Func. Count: 228, Neg. LLF: 142.45254310887026
Iteration: 19, Func. Count: 240, Neg. LLF: 142.40524122444563
Iteration: 20, Func. Count: 252, Neg. LLF: 142.3861016470326
Iteration: 21, Func. Count: 264, Neg. LLF: 142.38493847920753
Iteration: 22, Func. Count: 276, Neg. LLF: 142.38486385532158
Iteration: 23, Func. Count: 288, Neg. LLF: 142.38484997615825
Iteration: 24, Func. Count: 300, Neg. LLF: 142.38483332868176
Iteration: 25, Func. Count: 312, Neg. LLF: 142.38482043790253
Iteration: 26, Func. Count: 324, Neg. LLF: 142.38482007468548
Optimization terminated successfully (Exit mode 0)
Current function value: 142.38482007468548
Iterations: 26
Function evaluations: 324
Gradient evaluations: 26
Iteration: 1, Func. Count: 14, Neg. LLF: 167.578099175071
Iteration: 2, Func. Count: 30, Neg. LLF: 154.93667611002016
Iteration: 3, Func. Count: 44, Neg. LLF: 145.92055782194205
Iteration: 4, Func. Count: 57, Neg. LLF: 172.2736830581852
Iteration: 5, Func. Count: 72, Neg. LLF: 145.44901643344357
Iteration: 6, Func. Count: 85, Neg. LLF: 145.53676341565102
Iteration: 7, Func. Count: 99, Neg. LLF: 144.9473484367462
Iteration: 8, Func. Count: 112, Neg. LLF: 162.9563358855925
Iteration: 9, Func. Count: 127, Neg. LLF: 154.24420229918215
Iteration: 10, Func. Count: 141, Neg. LLF: 144.5887724423085
Iteration: 11, Func. Count: 154, Neg. LLF: 144.2197633676339
Iteration: 12, Func. Count: 167, Neg. LLF: 143.9296881807405
Iteration: 13, Func. Count: 180, Neg. LLF: 143.77894675085616
Iteration: 14, Func. Count: 193, Neg. LLF: 143.75518265510763
Iteration: 15, Func. Count: 206, Neg. LLF: 143.71629288595804
Iteration: 16, Func. Count: 219, Neg. LLF: 143.6746837448215
Iteration: 17, Func. Count: 232, Neg. LLF: 143.6590469253741
Iteration: 18, Func. Count: 245, Neg. LLF: 143.65589292272952
Iteration: 19, Func. Count: 258, Neg. LLF: 143.655163561453
Iteration: 20, Func. Count: 271, Neg. LLF: 143.65514299557702
Iteration: 21, Func. Count: 284, Neg. LLF: 143.6551377951219
Iteration: 22, Func. Count: 297, Neg. LLF: 143.65513716388875
Optimization terminated successfully (Exit mode 0)
Current function value: 143.65513716388875
Iterations: 22
Function evaluations: 297
Gradient evaluations: 22
Iteration: 1, Func. Count: 7, Neg. LLF: 149.58364994385215
Iteration: 2, Func. Count: 14, Neg. LLF: 156.36369144055885
Iteration: 3, Func. Count: 21, Neg. LLF: 146.06175616863695
Iteration: 4, Func. Count: 27, Neg. LLF: 145.81595047409792
Iteration: 5, Func. Count: 33, Neg. LLF: 145.80424637647394
Iteration: 6, Func. Count: 40, Neg. LLF: 145.64675761646384
Iteration: 7, Func. Count: 46, Neg. LLF: 145.64030095156986
Iteration: 8, Func. Count: 52, Neg. LLF: 145.63709240241184
Iteration: 9, Func. Count: 58, Neg. LLF: 145.63592008899334
Iteration: 10, Func. Count: 64, Neg. LLF: 145.63576816204306
Iteration: 11, Func. Count: 70, Neg. LLF: 145.63576608806605
Iteration: 12, Func. Count: 75, Neg. LLF: 145.63576607797523
Optimization terminated successfully (Exit mode 0)
Current function value: 145.63576608806605
Iterations: 12
Function evaluations: 75
Gradient evaluations: 12
Iteration: 1, Func. Count: 8, Neg. LLF: 149.10406699989855
Iteration: 2, Func. Count: 16, Neg. LLF: 149.54811235766903
Iteration: 3, Func. Count: 24, Neg. LLF: 152.05204332219446
Iteration: 4, Func. Count: 33, Neg. LLF: 148.76880830660045
Iteration: 5, Func. Count: 41, Neg. LLF: 144.50104710338582
Iteration: 6, Func. Count: 48, Neg. LLF: 144.48527912201828
Iteration: 7, Func. Count: 55, Neg. LLF: 144.454732019992
Iteration: 8, Func. Count: 62, Neg. LLF: 144.44894201906612
Iteration: 9, Func. Count: 69, Neg. LLF: 144.44655302727494
Iteration: 10, Func. Count: 76, Neg. LLF: 144.44434734701022
Iteration: 11, Func. Count: 83, Neg. LLF: 144.44370244795567
Iteration: 12, Func. Count: 90, Neg. LLF: 144.44368382559037
Iteration: 13, Func. Count: 96, Neg. LLF: 144.44368382558332
Optimization terminated successfully (Exit mode 0)
Current function value: 144.44368382559037
Iterations: 13
Function evaluations: 96
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 149.32490505705974
Iteration: 2, Func. Count: 18, Neg. LLF: 145.91189789466395
Iteration: 3, Func. Count: 27, Neg. LLF: 155.4919794262238
Iteration: 4, Func. Count: 36, Neg. LLF: 145.06684097808107
Iteration: 5, Func. Count: 44, Neg. LLF: 190.25839348827927
Iteration: 6, Func. Count: 53, Neg. LLF: 144.77432113584075
Iteration: 7, Func. Count: 61, Neg. LLF: 144.50649970003852
Iteration: 8, Func. Count: 69, Neg. LLF: 144.47316630244512
Iteration: 9, Func. Count: 77, Neg. LLF: 144.46140574128012
Iteration: 10, Func. Count: 85, Neg. LLF: 144.4494190454012
Iteration: 11, Func. Count: 93, Neg. LLF: 144.44581332951438
Iteration: 12, Func. Count: 101, Neg. LLF: 144.44394054378662
Iteration: 13, Func. Count: 109, Neg. LLF: 144.4437174664248
Iteration: 14, Func. Count: 117, Neg. LLF: 144.44369095207844
Iteration: 15, Func. Count: 125, Neg. LLF: 144.44368651369257
Iteration: 16, Func. Count: 133, Neg. LLF: 144.44368347215837
Iteration: 17, Func. Count: 140, Neg. LLF: 144.44368356266773
Optimization terminated successfully (Exit mode 0)
Current function value: 144.44368347215837
Iterations: 17
Function evaluations: 140
Gradient evaluations: 17
Iteration: 1, Func. Count: 10, Neg. LLF: 161.26374151602462
Iteration: 2, Func. Count: 20, Neg. LLF: 145.60138417628443
Iteration: 3, Func. Count: 29, Neg. LLF: 145.84272082935732
Iteration: 4, Func. Count: 39, Neg. LLF: 145.556238961568
Iteration: 5, Func. Count: 48, Neg. LLF: 145.54438299104586
Iteration: 6, Func. Count: 57, Neg. LLF: 145.51563354092653
Iteration: 7, Func. Count: 66, Neg. LLF: 145.5046400513226
Iteration: 8, Func. Count: 75, Neg. LLF: 145.50278805368922
Iteration: 9, Func. Count: 84, Neg. LLF: 145.49193417204907
Iteration: 10, Func. Count: 93, Neg. LLF: 145.4602976806063
Iteration: 11, Func. Count: 102, Neg. LLF: 145.47036574865987
Iteration: 12, Func. Count: 112, Neg. LLF: 145.46632965190975
Iteration: 13, Func. Count: 122, Neg. LLF: 145.4600836329288
Iteration: 14, Func. Count: 130, Neg. LLF: 145.46008356087958
Optimization terminated successfully (Exit mode 0)
Current function value: 145.4600836329288
Iterations: 15
Function evaluations: 130
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 164.22482281410709
Iteration: 2, Func. Count: 22, Neg. LLF: 145.61602670194557
Iteration: 3, Func. Count: 32, Neg. LLF: 145.78423495581373
Iteration: 4, Func. Count: 43, Neg. LLF: 145.5676861418949
Iteration: 5, Func. Count: 53, Neg. LLF: 145.56816489953943
Iteration: 6, Func. Count: 64, Neg. LLF: 145.5629967606035
Iteration: 7, Func. Count: 74, Neg. LLF: 145.56023805375102
Iteration: 8, Func. Count: 84, Neg. LLF: 145.55948780887746
Iteration: 9, Func. Count: 94, Neg. LLF: 145.559203225606
Iteration: 10, Func. Count: 104, Neg. LLF: 145.5591831613692
Iteration: 11, Func. Count: 113, Neg. LLF: 145.55918313895188
Optimization terminated successfully (Exit mode 0)
Current function value: 145.5591831613692
Iterations: 11
Function evaluations: 113
Gradient evaluations: 11
Iteration: 1, Func. Count: 8, Neg. LLF: 156.8756439160705
Iteration: 2, Func. Count: 16, Neg. LLF: 144.5724888136909
Iteration: 3, Func. Count: 23, Neg. LLF: 144.6448316340144
Iteration: 4, Func. Count: 31, Neg. LLF: 146.3880873298615
Iteration: 5, Func. Count: 39, Neg. LLF: 144.4624867984104
Iteration: 6, Func. Count: 46, Neg. LLF: 144.44655671967902
Iteration: 7, Func. Count: 53, Neg. LLF: 144.44297349924895
Iteration: 8, Func. Count: 60, Neg. LLF: 144.9766692473008
Iteration: 9, Func. Count: 69, Neg. LLF: 144.4366866205295
Iteration: 10, Func. Count: 76, Neg. LLF: 144.43616767847897
Iteration: 11, Func. Count: 83, Neg. LLF: 144.4360978817779
Iteration: 12, Func. Count: 89, Neg. LLF: 144.43609788177298
Optimization terminated successfully (Exit mode 0)
Current function value: 144.4360978817779
Iterations: 12
Function evaluations: 89
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 149.28371711299363
Iteration: 2, Func. Count: 18, Neg. LLF: 149.44322596151608
Iteration: 3, Func. Count: 27, Neg. LLF: 148.70398359921495
Iteration: 4, Func. Count: 36, Neg. LLF: 151.2324329208022
Iteration: 5, Func. Count: 46, Neg. LLF: 144.50182647128264
Iteration: 6, Func. Count: 54, Neg. LLF: 145.884113936362
Iteration: 7, Func. Count: 63, Neg. LLF: 144.60233303262982
Iteration: 8, Func. Count: 72, Neg. LLF: 144.44288766770308
Iteration: 9, Func. Count: 80, Neg. LLF: 144.43769369038293
Iteration: 10, Func. Count: 88, Neg. LLF: 144.4356275083051
Iteration: 11, Func. Count: 96, Neg. LLF: 144.4336104401079
Iteration: 12, Func. Count: 104, Neg. LLF: 144.43321378902263
Iteration: 13, Func. Count: 112, Neg. LLF: 144.4331710762518
Iteration: 14, Func. Count: 120, Neg. LLF: 144.43317001169618
Iteration: 15, Func. Count: 127, Neg. LLF: 144.43317001170234
Optimization terminated successfully (Exit mode 0)
Current function value: 144.43317001169618
Iterations: 15
Function evaluations: 127
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 149.5557285350124
Iteration: 2, Func. Count: 20, Neg. LLF: 145.8750030541369
Iteration: 3, Func. Count: 29, Neg. LLF: 157.25030186917976
Iteration: 4, Func. Count: 40, Neg. LLF: 152.05252887327913
Iteration: 5, Func. Count: 50, Neg. LLF: 174.34787968060547
Iteration: 6, Func. Count: 60, Neg. LLF: 145.03858266831622
Iteration: 7, Func. Count: 71, Neg. LLF: 144.5276144644863
Iteration: 8, Func. Count: 80, Neg. LLF: 144.4765755328452
Iteration: 9, Func. Count: 89, Neg. LLF: 144.46020775238787
Iteration: 10, Func. Count: 98, Neg. LLF: 144.44276583928146
Iteration: 11, Func. Count: 107, Neg. LLF: 144.43802937930607
Iteration: 12, Func. Count: 116, Neg. LLF: 144.43521191279947
Iteration: 13, Func. Count: 125, Neg. LLF: 144.43331022363202
Iteration: 14, Func. Count: 134, Neg. LLF: 144.43317763826224
Iteration: 15, Func. Count: 143, Neg. LLF: 144.43317014514312
Iteration: 16, Func. Count: 151, Neg. LLF: 144.43317023832128
Optimization terminated successfully (Exit mode 0)
Current function value: 144.43317014514312
Iterations: 16
Function evaluations: 151
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 149.26272668783312
Iteration: 2, Func. Count: 22, Neg. LLF: 145.49036574466663
Iteration: 3, Func. Count: 32, Neg. LLF: 154.93487287220955
Iteration: 4, Func. Count: 43, Neg. LLF: 160.4799801322459
Iteration: 5, Func. Count: 56, Neg. LLF: 163.40369101453976
Iteration: 6, Func. Count: 67, Neg. LLF: 144.70250849708324
Iteration: 7, Func. Count: 78, Neg. LLF: 144.73103027198127
Iteration: 8, Func. Count: 89, Neg. LLF: 144.483156180036
Iteration: 9, Func. Count: 99, Neg. LLF: 144.468832544894
Iteration: 10, Func. Count: 109, Neg. LLF: 144.44686489039123
Iteration: 11, Func. Count: 119, Neg. LLF: 144.43966670713516
Iteration: 12, Func. Count: 129, Neg. LLF: 144.4360530429882
Iteration: 13, Func. Count: 139, Neg. LLF: 144.43329389654582
Iteration: 14, Func. Count: 149, Neg. LLF: 144.43317682285465
Iteration: 15, Func. Count: 159, Neg. LLF: 144.43317010698567
Iteration: 16, Func. Count: 168, Neg. LLF: 144.43317016399857
Optimization terminated successfully (Exit mode 0)
Current function value: 144.43317010698567
Iterations: 16
Function evaluations: 168
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 149.5050364220691
Iteration: 2, Func. Count: 24, Neg. LLF: 146.36854652343953
Iteration: 3, Func. Count: 36, Neg. LLF: 153.27057654895802
Iteration: 4, Func. Count: 49, Neg. LLF: 146.7330555520487
Iteration: 5, Func. Count: 61, Neg. LLF: 199.94743540351456
Iteration: 6, Func. Count: 74, Neg. LLF: 144.862200558935
Iteration: 7, Func. Count: 85, Neg. LLF: 144.827800898159
Iteration: 8, Func. Count: 97, Neg. LLF: 144.48834247234316
Iteration: 9, Func. Count: 108, Neg. LLF: 144.6229710158525
Iteration: 10, Func. Count: 120, Neg. LLF: 144.45301749740977
Iteration: 11, Func. Count: 131, Neg. LLF: 144.44335430034826
Iteration: 12, Func. Count: 142, Neg. LLF: 144.43793701545843
Iteration: 13, Func. Count: 153, Neg. LLF: 144.43330678380065
Iteration: 14, Func. Count: 164, Neg. LLF: 144.43321375628506
Iteration: 15, Func. Count: 175, Neg. LLF: 144.43319693860948
Iteration: 16, Func. Count: 186, Neg. LLF: 144.43318079226597
Iteration: 17, Func. Count: 197, Neg. LLF: 144.43317092056392
Iteration: 18, Func. Count: 208, Neg. LLF: 144.43317002523025
Optimization terminated successfully (Exit mode 0)
Current function value: 144.43317002523025
Iterations: 18
Function evaluations: 208
Gradient evaluations: 18
Iteration: 1, Func. Count: 9, Neg. LLF: 154.05669136486424
Iteration: 2, Func. Count: 18, Neg. LLF: 148.61312191161272
Iteration: 3, Func. Count: 27, Neg. LLF: 144.52605986471306
Iteration: 4, Func. Count: 35, Neg. LLF: 144.9772841301681
Iteration: 5, Func. Count: 44, Neg. LLF: 144.4684999704435
Iteration: 6, Func. Count: 52, Neg. LLF: 144.45154490490017
Iteration: 7, Func. Count: 60, Neg. LLF: 144.4421816313594
Iteration: 8, Func. Count: 68, Neg. LLF: 144.47428142819908
Iteration: 9, Func. Count: 77, Neg. LLF: 144.4482071364065
Iteration: 10, Func. Count: 86, Neg. LLF: 144.43645758915576
Iteration: 11, Func. Count: 94, Neg. LLF: 144.43630265366846
Iteration: 12, Func. Count: 102, Neg. LLF: 144.4361200084171
Iteration: 13, Func. Count: 110, Neg. LLF: 144.43609923406967
Iteration: 14, Func. Count: 118, Neg. LLF: 144.4360977473588
Iteration: 15, Func. Count: 125, Neg. LLF: 144.43609781408378
Optimization terminated successfully (Exit mode 0)
Current function value: 144.4360977473588
Iterations: 15
Function evaluations: 125
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 149.08961228061622
Iteration: 2, Func. Count: 20, Neg. LLF: 149.46517231063663
Iteration: 3, Func. Count: 30, Neg. LLF: 155.9733382473389
Iteration: 4, Func. Count: 41, Neg. LLF: 147.67554688565534
Iteration: 5, Func. Count: 51, Neg. LLF: 144.40751337624206
Iteration: 6, Func. Count: 60, Neg. LLF: 145.25128048430403
Iteration: 7, Func. Count: 70, Neg. LLF: 144.937569338443
Iteration: 8, Func. Count: 80, Neg. LLF: 144.37425241748323
Iteration: 9, Func. Count: 89, Neg. LLF: 144.36904240422976
Iteration: 10, Func. Count: 98, Neg. LLF: 144.36653046072138
Iteration: 11, Func. Count: 107, Neg. LLF: 144.36514662655634
Iteration: 12, Func. Count: 116, Neg. LLF: 144.3650217819269
Iteration: 13, Func. Count: 125, Neg. LLF: 144.36501900900498
Iteration: 14, Func. Count: 133, Neg. LLF: 144.36501900900936
Optimization terminated successfully (Exit mode 0)
Current function value: 144.36501900900498
Iterations: 14
Function evaluations: 133
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 152.2097395416163
Iteration: 2, Func. Count: 22, Neg. LLF: 160.69206628880227
Iteration: 3, Func. Count: 33, Neg. LLF: 150.90903047604922
Iteration: 4, Func. Count: 44, Neg. LLF: 145.55859672469217
Iteration: 5, Func. Count: 55, Neg. LLF: 144.92707829300608
Iteration: 6, Func. Count: 66, Neg. LLF: 146.11469088533778
Iteration: 7, Func. Count: 78, Neg. LLF: 144.46649707082318
Iteration: 8, Func. Count: 89, Neg. LLF: 144.1712994397539
Iteration: 9, Func. Count: 100, Neg. LLF: 143.30850654509157
Iteration: 10, Func. Count: 110, Neg. LLF: 143.164196395018
Iteration: 11, Func. Count: 120, Neg. LLF: 143.936306752094
Iteration: 12, Func. Count: 131, Neg. LLF: 143.12425318745338
Iteration: 13, Func. Count: 141, Neg. LLF: 143.11541513052074
Iteration: 14, Func. Count: 151, Neg. LLF: 143.1044899071759
Iteration: 15, Func. Count: 161, Neg. LLF: 143.10274295317907
Iteration: 16, Func. Count: 171, Neg. LLF: 143.10219222968232
Iteration: 17, Func. Count: 181, Neg. LLF: 143.10215206033885
Iteration: 18, Func. Count: 191, Neg. LLF: 143.10214427611106
Iteration: 19, Func. Count: 201, Neg. LLF: 143.10214318283602
Iteration: 20, Func. Count: 210, Neg. LLF: 143.10214315845522
Optimization terminated successfully (Exit mode 0)
Current function value: 143.10214318283602
Iterations: 20
Function evaluations: 210
Gradient evaluations: 20
Iteration: 1, Func. Count: 12, Neg. LLF: 149.11285562431536
Iteration: 2, Func. Count: 24, Neg. LLF: 145.48911995167575
Iteration: 3, Func. Count: 35, Neg. LLF: 157.20239611289523
Iteration: 4, Func. Count: 48, Neg. LLF: 155.97633934402666
Iteration: 5, Func. Count: 60, Neg. LLF: 171.29024002597853
Iteration: 6, Func. Count: 72, Neg. LLF: 144.76425387337454
Iteration: 7, Func. Count: 85, Neg. LLF: 146.59009849697426
Iteration: 8, Func. Count: 97, Neg. LLF: 144.38109979623678
Iteration: 9, Func. Count: 108, Neg. LLF: 144.37302634351443
Iteration: 10, Func. Count: 119, Neg. LLF: 144.36839592352072
Iteration: 11, Func. Count: 130, Neg. LLF: 144.3661560683928
Iteration: 12, Func. Count: 141, Neg. LLF: 144.36506724051407
Iteration: 13, Func. Count: 152, Neg. LLF: 144.36502044941616
Iteration: 14, Func. Count: 163, Neg. LLF: 144.36501904051286
Iteration: 15, Func. Count: 173, Neg. LLF: 144.365019105587
Optimization terminated successfully (Exit mode 0)
Current function value: 144.36501904051286
Iterations: 15
Function evaluations: 173
Gradient evaluations: 15
Iteration: 1, Func. Count: 13, Neg. LLF: 149.33760776654415
Iteration: 2, Func. Count: 26, Neg. LLF: 147.2964629949408
Iteration: 3, Func. Count: 41, Neg. LLF: 154.97266000724906
Iteration: 4, Func. Count: 54, Neg. LLF: 148.26871552320944
Iteration: 5, Func. Count: 67, Neg. LLF: 146.1738372726729
Iteration: 6, Func. Count: 80, Neg. LLF: 145.6086438096373
Iteration: 7, Func. Count: 94, Neg. LLF: 145.5185249354513
Iteration: 8, Func. Count: 107, Neg. LLF: 144.40380487192544
Iteration: 9, Func. Count: 119, Neg. LLF: 144.38383755306586
Iteration: 10, Func. Count: 131, Neg. LLF: 144.37514766500013
Iteration: 11, Func. Count: 143, Neg. LLF: 144.36607372124712
Iteration: 12, Func. Count: 155, Neg. LLF: 144.36515157998167
Iteration: 13, Func. Count: 167, Neg. LLF: 144.36507274814122
Iteration: 14, Func. Count: 179, Neg. LLF: 144.3650456774868
Iteration: 15, Func. Count: 191, Neg. LLF: 144.36502409624495
Iteration: 16, Func. Count: 203, Neg. LLF: 144.36501959647904
Iteration: 17, Func. Count: 215, Neg. LLF: 144.36501901551162
Optimization terminated successfully (Exit mode 0)
Current function value: 144.36501901551162
Iterations: 17
Function evaluations: 215
Gradient evaluations: 17
Iteration: 1, Func. Count: 10, Neg. LLF: 146.2000879004029
Iteration: 2, Func. Count: 19, Neg. LLF: 146.67537790693473
Iteration: 3, Func. Count: 29, Neg. LLF: 144.52608279597217
Iteration: 4, Func. Count: 38, Neg. LLF: 144.25605034810303
Iteration: 5, Func. Count: 47, Neg. LLF: 144.2089655041549
Iteration: 6, Func. Count: 56, Neg. LLF: 144.4886821714747
Iteration: 7, Func. Count: 67, Neg. LLF: 144.18785228881492
Iteration: 8, Func. Count: 76, Neg. LLF: 144.17898803714078
Iteration: 9, Func. Count: 85, Neg. LLF: 144.17148289418594
Iteration: 10, Func. Count: 94, Neg. LLF: 144.17090984895844
Iteration: 11, Func. Count: 103, Neg. LLF: 144.17066684668401
Iteration: 12, Func. Count: 111, Neg. LLF: 144.17066684627818
Optimization terminated successfully (Exit mode 0)
Current function value: 144.17066684668401
Iterations: 12
Function evaluations: 111
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 157.17478887404422
Iteration: 2, Func. Count: 22, Neg. LLF: 149.7599185219448
Iteration: 3, Func. Count: 33, Neg. LLF: 156.24155135374411
Iteration: 4, Func. Count: 46, Neg. LLF: 148.2734351372439
Iteration: 5, Func. Count: 57, Neg. LLF: 146.88620749146196
Iteration: 6, Func. Count: 68, Neg. LLF: 142.70251033234135
Iteration: 7, Func. Count: 78, Neg. LLF: 143.41419797555523
Iteration: 8, Func. Count: 90, Neg. LLF: 145.84679448349206
Iteration: 9, Func. Count: 101, Neg. LLF: 142.55298518073522
Iteration: 10, Func. Count: 111, Neg. LLF: 142.5445550534331
Iteration: 11, Func. Count: 121, Neg. LLF: 142.54105457216684
Iteration: 12, Func. Count: 131, Neg. LLF: 142.54071027416956
Iteration: 13, Func. Count: 141, Neg. LLF: 142.54061184580468
Iteration: 14, Func. Count: 151, Neg. LLF: 142.5406094742397
Iteration: 15, Func. Count: 160, Neg. LLF: 142.54060947423164
Optimization terminated successfully (Exit mode 0)
Current function value: 142.5406094742397
Iterations: 15
Function evaluations: 160
Gradient evaluations: 15
Iteration: 1, Func. Count: 12, Neg. LLF: 157.38739132250734
Iteration: 2, Func. Count: 24, Neg. LLF: 150.81535922797406
Iteration: 3, Func. Count: 36, Neg. LLF: 152.4930339065523
Iteration: 4, Func. Count: 49, Neg. LLF: 150.21610337490574
Iteration: 5, Func. Count: 61, Neg. LLF: 143.9910017027955
Iteration: 6, Func. Count: 72, Neg. LLF: 143.049693436532
Iteration: 7, Func. Count: 83, Neg. LLF: 146.95542263628496
Iteration: 8, Func. Count: 95, Neg. LLF: 142.75556835586693
Iteration: 9, Func. Count: 106, Neg. LLF: 142.55362432249507
Iteration: 10, Func. Count: 117, Neg. LLF: 142.54486506938167
Iteration: 11, Func. Count: 128, Neg. LLF: 142.5419632485412
Iteration: 12, Func. Count: 139, Neg. LLF: 142.54074912042114
Iteration: 13, Func. Count: 150, Neg. LLF: 142.54063911339705
Iteration: 14, Func. Count: 161, Neg. LLF: 142.540614575607
Iteration: 15, Func. Count: 172, Neg. LLF: 142.5406105764255
Iteration: 16, Func. Count: 183, Neg. LLF: 142.54060974647544
Optimization terminated successfully (Exit mode 0)
Current function value: 142.54060974647544
Iterations: 16
Function evaluations: 183
Gradient evaluations: 16
Iteration: 1, Func. Count: 13, Neg. LLF: 149.219897705719
Iteration: 2, Func. Count: 26, Neg. LLF: 144.43245412674872
Iteration: 3, Func. Count: 38, Neg. LLF: 150.2008184783228
Iteration: 4, Func. Count: 52, Neg. LLF: 157.90437413284437
Iteration: 5, Func. Count: 65, Neg. LLF: 146.19147702837773
Iteration: 6, Func. Count: 78, Neg. LLF: 143.3774184223425
Iteration: 7, Func. Count: 90, Neg. LLF: 142.67016363619473
Iteration: 8, Func. Count: 102, Neg. LLF: 145.02275152343375
Iteration: 9, Func. Count: 116, Neg. LLF: 142.59825663749882
Iteration: 10, Func. Count: 128, Neg. LLF: 142.55680507226762
Iteration: 11, Func. Count: 140, Neg. LLF: 142.54594567690935
Iteration: 12, Func. Count: 152, Neg. LLF: 142.5432320565021
Iteration: 13, Func. Count: 164, Neg. LLF: 142.54140376481192
Iteration: 14, Func. Count: 176, Neg. LLF: 142.54085985115336
Iteration: 15, Func. Count: 188, Neg. LLF: 142.54067654543772
Iteration: 16, Func. Count: 200, Neg. LLF: 142.54061570678596
Iteration: 17, Func. Count: 212, Neg. LLF: 142.54060950665868
Iteration: 18, Func. Count: 223, Neg. LLF: 142.5406095948789
Optimization terminated successfully (Exit mode 0)
Current function value: 142.54060950665868
Iterations: 18
Function evaluations: 223
Gradient evaluations: 18
Iteration: 1, Func. Count: 14, Neg. LLF: 168.14636152886945
Iteration: 2, Func. Count: 30, Neg. LLF: 146.9335917682081
Iteration: 3, Func. Count: 44, Neg. LLF: 147.08559214138728
Iteration: 4, Func. Count: 58, Neg. LLF: 162.16930754837162
Iteration: 5, Func. Count: 72, Neg. LLF: 151.29068369005142
Iteration: 6, Func. Count: 86, Neg. LLF: 149.23165711475454
Iteration: 7, Func. Count: 100, Neg. LLF: 142.7259226512735
Iteration: 8, Func. Count: 113, Neg. LLF: 146.2928182949809
Iteration: 9, Func. Count: 128, Neg. LLF: 142.6439344549104
Iteration: 10, Func. Count: 141, Neg. LLF: 142.55915382870472
Iteration: 11, Func. Count: 154, Neg. LLF: 142.54728908829003
Iteration: 12, Func. Count: 167, Neg. LLF: 142.54178841154223
Iteration: 13, Func. Count: 180, Neg. LLF: 142.54086619025801
Iteration: 14, Func. Count: 193, Neg. LLF: 142.54066608261633
Iteration: 15, Func. Count: 206, Neg. LLF: 142.54061648379735
Iteration: 16, Func. Count: 219, Neg. LLF: 142.54061192484227
Iteration: 17, Func. Count: 232, Neg. LLF: 142.54060992807968
Iteration: 18, Func. Count: 244, Neg. LLF: 142.54061007668855
Optimization terminated successfully (Exit mode 0)
Current function value: 142.54060992807968
Iterations: 18
Function evaluations: 244
Gradient evaluations: 18
Iteration: 1, Func. Count: 11, Neg. LLF: 145.77683166280886
Iteration: 2, Func. Count: 21, Neg. LLF: 148.45883775226272
Iteration: 3, Func. Count: 33, Neg. LLF: 146.78294023179126
Iteration: 4, Func. Count: 44, Neg. LLF: 144.35097716854926
Iteration: 5, Func. Count: 54, Neg. LLF: 144.60616664280425
Iteration: 6, Func. Count: 65, Neg. LLF: 144.25482568047434
Iteration: 7, Func. Count: 75, Neg. LLF: 144.23125701246036
Iteration: 8, Func. Count: 85, Neg. LLF: 144.21011486207283
Iteration: 9, Func. Count: 95, Neg. LLF: 144.1735839741515
Iteration: 10, Func. Count: 105, Neg. LLF: 144.17091514377339
Iteration: 11, Func. Count: 115, Neg. LLF: 144.1706727780128
Iteration: 12, Func. Count: 125, Neg. LLF: 144.17066659012542
Iteration: 13, Func. Count: 134, Neg. LLF: 144.17066667592655
Optimization terminated successfully (Exit mode 0)
Current function value: 144.17066659012542
Iterations: 13
Function evaluations: 134
Gradient evaluations: 13
Iteration: 1, Func. Count: 12, Neg. LLF: 157.11267747820114
Iteration: 2, Func. Count: 24, Neg. LLF: 149.68508977515987
Iteration: 3, Func. Count: 36, Neg. LLF: 156.6321268871379
Iteration: 4, Func. Count: 50, Neg. LLF: 148.30386324799753
Iteration: 5, Func. Count: 62, Neg. LLF: 146.64885734496116
Iteration: 6, Func. Count: 74, Neg. LLF: 142.69200943208045
Iteration: 7, Func. Count: 85, Neg. LLF: 143.40677011085666
Iteration: 8, Func. Count: 98, Neg. LLF: 144.52023899152155
Iteration: 9, Func. Count: 110, Neg. LLF: 142.5526478906018
Iteration: 10, Func. Count: 121, Neg. LLF: 142.54437603126883
Iteration: 11, Func. Count: 132, Neg. LLF: 142.5410573334413
Iteration: 12, Func. Count: 143, Neg. LLF: 142.54071181639804
Iteration: 13, Func. Count: 154, Neg. LLF: 142.5406118115804
Iteration: 14, Func. Count: 165, Neg. LLF: 142.5406094821741
Iteration: 15, Func. Count: 175, Neg. LLF: 142.5406094821776
Optimization terminated successfully (Exit mode 0)
Current function value: 142.5406094821741
Iterations: 15
Function evaluations: 175
Gradient evaluations: 15
Iteration: 1, Func. Count: 13, Neg. LLF: 157.2898463332796
Iteration: 2, Func. Count: 26, Neg. LLF: 150.69631673002485
Iteration: 3, Func. Count: 39, Neg. LLF: 153.43132884239498
Iteration: 4, Func. Count: 53, Neg. LLF: 150.85496777928583
Iteration: 5, Func. Count: 66, Neg. LLF: 144.00335518099916
Iteration: 6, Func. Count: 78, Neg. LLF: 143.06562425851874
Iteration: 7, Func. Count: 90, Neg. LLF: 153.5962701143035
Iteration: 8, Func. Count: 103, Neg. LLF: 142.7254278975682
Iteration: 9, Func. Count: 115, Neg. LLF: 142.55621592920724
Iteration: 10, Func. Count: 127, Neg. LLF: 142.54396208261116
Iteration: 11, Func. Count: 139, Neg. LLF: 142.54151297214105
Iteration: 12, Func. Count: 151, Neg. LLF: 142.54072984912912
Iteration: 13, Func. Count: 163, Neg. LLF: 142.54123848426275
Iteration: 14, Func. Count: 176, Neg. LLF: 142.54090886956064
Iteration: 15, Func. Count: 189, Neg. LLF: 142.5406101325266
Iteration: 16, Func. Count: 201, Neg. LLF: 142.54060941504105
Optimization terminated successfully (Exit mode 0)
Current function value: 142.54060941504105
Iterations: 16
Function evaluations: 201
Gradient evaluations: 16
Iteration: 1, Func. Count: 14, Neg. LLF: 149.32190441848758
Iteration: 2, Func. Count: 28, Neg. LLF: 144.4336595325079
Iteration: 3, Func. Count: 41, Neg. LLF: 150.56314910840464
Iteration: 4, Func. Count: 56, Neg. LLF: 157.92742667736823
Iteration: 5, Func. Count: 70, Neg. LLF: 146.22651702552594
Iteration: 6, Func. Count: 84, Neg. LLF: 143.52627821388185
Iteration: 7, Func. Count: 97, Neg. LLF: 142.701140351388
Iteration: 8, Func. Count: 110, Neg. LLF: 145.3739844265648
Iteration: 9, Func. Count: 124, Neg. LLF: 142.61978555261436
Iteration: 10, Func. Count: 137, Neg. LLF: 142.56177771768387
Iteration: 11, Func. Count: 150, Neg. LLF: 142.54827631435504
Iteration: 12, Func. Count: 163, Neg. LLF: 142.5445696816498
Iteration: 13, Func. Count: 176, Neg. LLF: 142.54143176498914
Iteration: 14, Func. Count: 189, Neg. LLF: 142.5408836409762
Iteration: 15, Func. Count: 202, Neg. LLF: 142.5406825405032
Iteration: 16, Func. Count: 215, Neg. LLF: 142.540615408704
Iteration: 17, Func. Count: 228, Neg. LLF: 142.540609436932
Iteration: 18, Func. Count: 240, Neg. LLF: 142.5406095251193
Optimization terminated successfully (Exit mode 0)
Current function value: 142.540609436932
Iterations: 18
Function evaluations: 240
Gradient evaluations: 18
Iteration: 1, Func. Count: 15, Neg. LLF: 167.61802189166954
Iteration: 2, Func. Count: 32, Neg. LLF: 145.79247135397299
Iteration: 3, Func. Count: 46, Neg. LLF: 144.66911024348016
Iteration: 4, Func. Count: 60, Neg. LLF: 154.38636830810938
Iteration: 5, Func. Count: 75, Neg. LLF: 157.75811538538497
Iteration: 6, Func. Count: 90, Neg. LLF: 145.32480950340536
Iteration: 7, Func. Count: 105, Neg. LLF: 144.5878792749196
Iteration: 8, Func. Count: 120, Neg. LLF: 142.58949369392232
Iteration: 9, Func. Count: 134, Neg. LLF: 142.63462368556083
Iteration: 10, Func. Count: 149, Neg. LLF: 142.59983704149218
Iteration: 11, Func. Count: 164, Neg. LLF: 142.54770281562446
Iteration: 12, Func. Count: 178, Neg. LLF: 142.54096586395647
Iteration: 13, Func. Count: 192, Neg. LLF: 142.54068555054764
Iteration: 14, Func. Count: 206, Neg. LLF: 142.54064314820837
Iteration: 15, Func. Count: 220, Neg. LLF: 142.5406167634852
Iteration: 16, Func. Count: 234, Neg. LLF: 142.54060959697168
Iteration: 17, Func. Count: 247, Neg. LLF: 142.54060974565405
Optimization terminated successfully (Exit mode 0)
Current function value: 142.54060959697168
Iterations: 17
Function evaluations: 247
Gradient evaluations: 17
Iteration: 1, Func. Count: 8, Neg. LLF: 144.1410526087148
Iteration: 2, Func. Count: 16, Neg. LLF: 144.89924930423447
Iteration: 3, Func. Count: 26, Neg. LLF: 145.18145677167718
Iteration: 4, Func. Count: 36, Neg. LLF: 142.62773126682663
Iteration: 5, Func. Count: 44, Neg. LLF: 142.41626275474593
Iteration: 6, Func. Count: 51, Neg. LLF: 176.93788541469416
Iteration: 7, Func. Count: 60, Neg. LLF: 142.25009155197864
Iteration: 8, Func. Count: 67, Neg. LLF: 142.22921988406188
Iteration: 9, Func. Count: 74, Neg. LLF: 142.22680802909696
Iteration: 10, Func. Count: 81, Neg. LLF: 142.22675532595855
Iteration: 11, Func. Count: 88, Neg. LLF: 142.22675324249622
Iteration: 12, Func. Count: 94, Neg. LLF: 142.22675324250025
Optimization terminated successfully (Exit mode 0)
Current function value: 142.22675324249622
Iterations: 12
Function evaluations: 94
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 145.20651463642477
Iteration: 2, Func. Count: 18, Neg. LLF: 145.05843567266217
Iteration: 3, Func. Count: 27, Neg. LLF: 163.58917822889487
Iteration: 4, Func. Count: 37, Neg. LLF: 175.59118270946038
Iteration: 5, Func. Count: 46, Neg. LLF: 143.1535468149681
Iteration: 6, Func. Count: 55, Neg. LLF: 144.79652420089437
Iteration: 7, Func. Count: 64, Neg. LLF: 145.18222641941495
Iteration: 8, Func. Count: 73, Neg. LLF: 142.68938663250466
Iteration: 9, Func. Count: 82, Neg. LLF: 142.35623830300088
Iteration: 10, Func. Count: 90, Neg. LLF: 142.27862674572992
Iteration: 11, Func. Count: 98, Neg. LLF: 142.2508926276474
Iteration: 12, Func. Count: 106, Neg. LLF: 142.22932423264442
Iteration: 13, Func. Count: 114, Neg. LLF: 142.2270252091458
Iteration: 14, Func. Count: 122, Neg. LLF: 142.2267732507721
Iteration: 15, Func. Count: 130, Neg. LLF: 142.22675312501394
Iteration: 16, Func. Count: 137, Neg. LLF: 142.22675317662498
Optimization terminated successfully (Exit mode 0)
Current function value: 142.22675312501394
Iterations: 16
Function evaluations: 137
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 145.17047518620356
Iteration: 2, Func. Count: 20, Neg. LLF: 144.30813044828108
Iteration: 3, Func. Count: 30, Neg. LLF: 174.95077175842346
Iteration: 4, Func. Count: 41, Neg. LLF: 177.98379024331652
Iteration: 5, Func. Count: 51, Neg. LLF: 147.83133213408598
Iteration: 6, Func. Count: 62, Neg. LLF: 149.60031009317797
Iteration: 7, Func. Count: 72, Neg. LLF: 142.45021299491765
Iteration: 8, Func. Count: 81, Neg. LLF: 142.35951326383997
Iteration: 9, Func. Count: 90, Neg. LLF: 142.32990754960352
Iteration: 10, Func. Count: 100, Neg. LLF: 142.25789531895737
Iteration: 11, Func. Count: 109, Neg. LLF: 142.2293996723996
Iteration: 12, Func. Count: 118, Neg. LLF: 142.2271764853893
Iteration: 13, Func. Count: 127, Neg. LLF: 142.22676380993494
Iteration: 14, Func. Count: 136, Neg. LLF: 142.22675304813654
Iteration: 15, Func. Count: 144, Neg. LLF: 142.226753072828
Optimization terminated successfully (Exit mode 0)
Current function value: 142.22675304813654
Iterations: 15
Function evaluations: 144
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 145.11957351429913
Iteration: 2, Func. Count: 22, Neg. LLF: 144.3608749889468
Iteration: 3, Func. Count: 33, Neg. LLF: 161.96095155661934
Iteration: 4, Func. Count: 45, Neg. LLF: 177.00888642078033
Iteration: 5, Func. Count: 56, Neg. LLF: 155.16821798666692
Iteration: 6, Func. Count: 68, Neg. LLF: 150.60803974161055
Iteration: 7, Func. Count: 79, Neg. LLF: 142.4522740822107
Iteration: 8, Func. Count: 89, Neg. LLF: 143.27683446904507
Iteration: 9, Func. Count: 100, Neg. LLF: 142.32474989327875
Iteration: 10, Func. Count: 110, Neg. LLF: 142.27040837255896
Iteration: 11, Func. Count: 120, Neg. LLF: 142.23824357994903
Iteration: 12, Func. Count: 130, Neg. LLF: 142.228997903457
Iteration: 13, Func. Count: 140, Neg. LLF: 142.22685393784266
Iteration: 14, Func. Count: 150, Neg. LLF: 142.22675961557485
Iteration: 15, Func. Count: 160, Neg. LLF: 142.22675291522572
Iteration: 16, Func. Count: 169, Neg. LLF: 142.22675297303383
Optimization terminated successfully (Exit mode 0)
Current function value: 142.22675291522572
Iterations: 16
Function evaluations: 169
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 145.0604963591923
Iteration: 2, Func. Count: 24, Neg. LLF: 144.27726811457876
Iteration: 3, Func. Count: 36, Neg. LLF: 168.5632405649589
Iteration: 4, Func. Count: 49, Neg. LLF: 176.30958824491933
Iteration: 5, Func. Count: 61, Neg. LLF: 149.8996404072631
Iteration: 6, Func. Count: 74, Neg. LLF: 148.35022862884952
Iteration: 7, Func. Count: 86, Neg. LLF: 142.4621568615507
Iteration: 8, Func. Count: 97, Neg. LLF: 143.32727876123306
Iteration: 9, Func. Count: 109, Neg. LLF: 142.3000251722085
Iteration: 10, Func. Count: 120, Neg. LLF: 142.25473709210732
Iteration: 11, Func. Count: 131, Neg. LLF: 142.23189238040726
Iteration: 12, Func. Count: 142, Neg. LLF: 142.22722250600637
Iteration: 13, Func. Count: 153, Neg. LLF: 142.22675470675034
Iteration: 14, Func. Count: 164, Neg. LLF: 142.22675280529646
Iteration: 15, Func. Count: 174, Neg. LLF: 142.22675290267318
Optimization terminated successfully (Exit mode 0)
Current function value: 142.22675280529646
Iterations: 15
Function evaluations: 174
Gradient evaluations: 15
Iteration: 1, Func. Count: 9, Neg. LLF: 146.06580145205635
Iteration: 2, Func. Count: 18, Neg. LLF: 149.37624256209955
Iteration: 3, Func. Count: 27, Neg. LLF: 144.80857885718925
Iteration: 4, Func. Count: 38, Neg. LLF: 142.9973171443977
Iteration: 5, Func. Count: 47, Neg. LLF: 181.36987361665297
Iteration: 6, Func. Count: 57, Neg. LLF: 142.39556112572083
Iteration: 7, Func. Count: 65, Neg. LLF: 144.58307863650376
Iteration: 8, Func. Count: 74, Neg. LLF: 143.26407580026205
Iteration: 9, Func. Count: 84, Neg. LLF: 142.26577096082937
Iteration: 10, Func. Count: 92, Neg. LLF: 142.23872556238675
Iteration: 11, Func. Count: 100, Neg. LLF: 142.22988223359897
Iteration: 12, Func. Count: 108, Neg. LLF: 142.22531369646404
Iteration: 13, Func. Count: 116, Neg. LLF: 142.22504392104995
Iteration: 14, Func. Count: 124, Neg. LLF: 142.22501846485497
Iteration: 15, Func. Count: 132, Neg. LLF: 142.225013928949
Iteration: 16, Func. Count: 139, Neg. LLF: 142.2250139289865
Optimization terminated successfully (Exit mode 0)
Current function value: 142.225013928949
Iterations: 16
Function evaluations: 139
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 145.18429687388527
Iteration: 2, Func. Count: 20, Neg. LLF: 145.091202534285
Iteration: 3, Func. Count: 30, Neg. LLF: 163.71830029110825
Iteration: 4, Func. Count: 41, Neg. LLF: 175.3859739818275
Iteration: 5, Func. Count: 51, Neg. LLF: 143.74198463560575
Iteration: 6, Func. Count: 61, Neg. LLF: 143.1974374848608
Iteration: 7, Func. Count: 71, Neg. LLF: 143.3550671338613
Iteration: 8, Func. Count: 81, Neg. LLF: 142.44876954273855
Iteration: 9, Func. Count: 90, Neg. LLF: 147.91736155628456
Iteration: 10, Func. Count: 101, Neg. LLF: 157.31956749539842
Iteration: 11, Func. Count: 111, Neg. LLF: 142.2958279163714
Iteration: 12, Func. Count: 120, Neg. LLF: 142.26225182090062
Iteration: 13, Func. Count: 129, Neg. LLF: 142.24483525823524
Iteration: 14, Func. Count: 138, Neg. LLF: 142.2268887439349
Iteration: 15, Func. Count: 147, Neg. LLF: 142.2255588755591
Iteration: 16, Func. Count: 156, Neg. LLF: 142.22514015388037
Iteration: 17, Func. Count: 165, Neg. LLF: 142.2250367303816
Iteration: 18, Func. Count: 174, Neg. LLF: 142.22501529795167
Iteration: 19, Func. Count: 183, Neg. LLF: 142.22501379537707
Iteration: 20, Func. Count: 191, Neg. LLF: 142.22501384539692
Optimization terminated successfully (Exit mode 0)
Current function value: 142.22501379537707
Iterations: 20
Function evaluations: 191
Gradient evaluations: 20
Iteration: 1, Func. Count: 11, Neg. LLF: 145.15261787003624
Iteration: 2, Func. Count: 22, Neg. LLF: 144.3166632837073
Iteration: 3, Func. Count: 33, Neg. LLF: 174.3211701008339
Iteration: 4, Func. Count: 45, Neg. LLF: 177.85498679182834
Iteration: 5, Func. Count: 56, Neg. LLF: 148.23134225829068
Iteration: 6, Func. Count: 68, Neg. LLF: 147.49984658193748
Iteration: 7, Func. Count: 79, Neg. LLF: 142.42962238634234
Iteration: 8, Func. Count: 89, Neg. LLF: 143.26447117852328
Iteration: 9, Func. Count: 100, Neg. LLF: 142.69947239777738
Iteration: 10, Func. Count: 111, Neg. LLF: 142.3013208882139
Iteration: 11, Func. Count: 121, Neg. LLF: 142.3152673903822
Iteration: 12, Func. Count: 132, Neg. LLF: 142.24629135568708
Iteration: 13, Func. Count: 142, Neg. LLF: 142.22559441843364
Iteration: 14, Func. Count: 152, Neg. LLF: 142.22503423843264
Iteration: 15, Func. Count: 162, Neg. LLF: 142.22501488325076
Iteration: 16, Func. Count: 172, Neg. LLF: 142.22501376254246
Iteration: 17, Func. Count: 181, Neg. LLF: 142.2250137862525
Optimization terminated successfully (Exit mode 0)
Current function value: 142.22501376254246
Iterations: 17
Function evaluations: 181
Gradient evaluations: 17
Iteration: 1, Func. Count: 12, Neg. LLF: 145.10772177368543
Iteration: 2, Func. Count: 24, Neg. LLF: 144.35765124014569
Iteration: 3, Func. Count: 36, Neg. LLF: 159.65646566719914
Iteration: 4, Func. Count: 49, Neg. LLF: 176.78017767614406
Iteration: 5, Func. Count: 61, Neg. LLF: 152.93483747390246
Iteration: 6, Func. Count: 74, Neg. LLF: 149.36564574944134
Iteration: 7, Func. Count: 86, Neg. LLF: 142.39161097282067
Iteration: 8, Func. Count: 97, Neg. LLF: 142.34974615574865
Iteration: 9, Func. Count: 108, Neg. LLF: 142.36962155326935
Iteration: 10, Func. Count: 120, Neg. LLF: 142.3079919887684
Iteration: 11, Func. Count: 132, Neg. LLF: 142.25686395743946
Iteration: 12, Func. Count: 143, Neg. LLF: 142.23298264325663
Iteration: 13, Func. Count: 154, Neg. LLF: 142.22514004530098
Iteration: 14, Func. Count: 165, Neg. LLF: 142.22501563712137
Iteration: 15, Func. Count: 176, Neg. LLF: 142.22501380493273
Iteration: 16, Func. Count: 186, Neg. LLF: 142.2250138638776
Optimization terminated successfully (Exit mode 0)
Current function value: 142.22501380493273
Iterations: 16
Function evaluations: 186
Gradient evaluations: 16
Iteration: 1, Func. Count: 13, Neg. LLF: 144.01850662290147
Iteration: 2, Func. Count: 25, Neg. LLF: 143.93950279945312
Iteration: 3, Func. Count: 38, Neg. LLF: 146.7685531721047
Iteration: 4, Func. Count: 53, Neg. LLF: 149.93518696444852
Iteration: 5, Func. Count: 66, Neg. LLF: 155.71785836015638
Iteration: 6, Func. Count: 79, Neg. LLF: 144.01314977922655
Iteration: 7, Func. Count: 92, Neg. LLF: 143.21697933777028
Iteration: 8, Func. Count: 105, Neg. LLF: 143.9022123830288
Iteration: 9, Func. Count: 118, Neg. LLF: 142.29090413274608
Iteration: 10, Func. Count: 130, Neg. LLF: 142.33065486261287
Iteration: 11, Func. Count: 143, Neg. LLF: 142.28755718652556
Iteration: 12, Func. Count: 156, Neg. LLF: 142.2339717341965
Iteration: 13, Func. Count: 168, Neg. LLF: 142.22568465578306
Iteration: 14, Func. Count: 180, Neg. LLF: 142.22513062398994
Iteration: 15, Func. Count: 192, Neg. LLF: 142.22502081914308
Iteration: 16, Func. Count: 204, Neg. LLF: 142.22501443043825
Iteration: 17, Func. Count: 216, Neg. LLF: 142.22501377010127
Optimization terminated successfully (Exit mode 0)
Current function value: 142.22501377010127
Iterations: 17
Function evaluations: 216
Gradient evaluations: 17
Iteration: 1, Func. Count: 10, Neg. LLF: 144.37408651807056
Iteration: 2, Func. Count: 20, Neg. LLF: 144.57084168905288
Iteration: 3, Func. Count: 32, Neg. LLF: 144.8802996231931
Iteration: 4, Func. Count: 44, Neg. LLF: 144.9291450967772
Iteration: 5, Func. Count: 54, Neg. LLF: 142.21064842914583
Iteration: 6, Func. Count: 63, Neg. LLF: 5877.92853710814
Iteration: 7, Func. Count: 73, Neg. LLF: 142.08024727075113
Iteration: 8, Func. Count: 82, Neg. LLF: 142.04774753927282
Iteration: 9, Func. Count: 91, Neg. LLF: 142.02410189664744
Iteration: 10, Func. Count: 100, Neg. LLF: 142.01991503413362
Iteration: 11, Func. Count: 109, Neg. LLF: 142.0191239035396
Iteration: 12, Func. Count: 118, Neg. LLF: 142.01898888733857
Iteration: 13, Func. Count: 127, Neg. LLF: 142.01898113220963
Iteration: 14, Func. Count: 135, Neg. LLF: 142.0189811321714
Optimization terminated successfully (Exit mode 0)
Current function value: 142.01898113220963
Iterations: 14
Function evaluations: 135
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 145.1913929503501
Iteration: 2, Func. Count: 22, Neg. LLF: 145.10540129526333
Iteration: 3, Func. Count: 33, Neg. LLF: 166.64404520946727
Iteration: 4, Func. Count: 45, Neg. LLF: 174.82442641902
Iteration: 5, Func. Count: 56, Neg. LLF: 143.2908633970601
Iteration: 6, Func. Count: 67, Neg. LLF: 145.1041452509406
Iteration: 7, Func. Count: 78, Neg. LLF: 144.03080704629514
Iteration: 8, Func. Count: 89, Neg. LLF: 143.23539419913214
Iteration: 9, Func. Count: 100, Neg. LLF: 142.1810400550696
Iteration: 10, Func. Count: 110, Neg. LLF: 142.15649538015572
Iteration: 11, Func. Count: 121, Neg. LLF: 142.1056182061474
Iteration: 12, Func. Count: 132, Neg. LLF: 142.0523279106193
Iteration: 13, Func. Count: 142, Neg. LLF: 142.03125475467274
Iteration: 14, Func. Count: 152, Neg. LLF: 142.0201597409968
Iteration: 15, Func. Count: 162, Neg. LLF: 142.01908765949173
Iteration: 16, Func. Count: 172, Neg. LLF: 142.01899375064323
Iteration: 17, Func. Count: 182, Neg. LLF: 142.01898131751906
Iteration: 18, Func. Count: 191, Neg. LLF: 142.01898137482686
Optimization terminated successfully (Exit mode 0)
Current function value: 142.01898131751906
Iterations: 18
Function evaluations: 191
Gradient evaluations: 18
Iteration: 1, Func. Count: 12, Neg. LLF: 145.15628289018093
Iteration: 2, Func. Count: 24, Neg. LLF: 144.32979811432085
Iteration: 3, Func. Count: 36, Neg. LLF: 168.59137477984268
Iteration: 4, Func. Count: 49, Neg. LLF: 177.23827892390136
Iteration: 5, Func. Count: 61, Neg. LLF: 151.49675726287188
Iteration: 6, Func. Count: 74, Neg. LLF: 150.31273162028785
Iteration: 7, Func. Count: 86, Neg. LLF: 142.26312821669038
Iteration: 8, Func. Count: 97, Neg. LLF: 143.1048973357298
Iteration: 9, Func. Count: 109, Neg. LLF: 142.37409565841673
Iteration: 10, Func. Count: 121, Neg. LLF: 142.09783438692074
Iteration: 11, Func. Count: 132, Neg. LLF: 142.06217375902085
Iteration: 12, Func. Count: 143, Neg. LLF: 142.03518981473474
Iteration: 13, Func. Count: 154, Neg. LLF: 142.02115892788004
Iteration: 14, Func. Count: 165, Neg. LLF: 142.01925325822305
Iteration: 15, Func. Count: 176, Neg. LLF: 142.01899261786718
Iteration: 16, Func. Count: 187, Neg. LLF: 142.01898235853974
Iteration: 17, Func. Count: 198, Neg. LLF: 142.01898099950668
Iteration: 18, Func. Count: 208, Neg. LLF: 142.0189810416789
Optimization terminated successfully (Exit mode 0)
Current function value: 142.01898099950668
Iterations: 18
Function evaluations: 208
Gradient evaluations: 18
Iteration: 1, Func. Count: 13, Neg. LLF: 145.10653428414523
Iteration: 2, Func. Count: 26, Neg. LLF: 144.37528992084157
Iteration: 3, Func. Count: 39, Neg. LLF: 167.81850520242006
Iteration: 4, Func. Count: 53, Neg. LLF: 176.38373452167932
Iteration: 5, Func. Count: 66, Neg. LLF: 154.77231732761274
Iteration: 6, Func. Count: 80, Neg. LLF: 150.26459119017161
Iteration: 7, Func. Count: 93, Neg. LLF: 142.21952653384594
Iteration: 8, Func. Count: 105, Neg. LLF: 142.19840286809705
Iteration: 9, Func. Count: 117, Neg. LLF: 142.2613796024224
Iteration: 10, Func. Count: 130, Neg. LLF: 142.1366976557921
Iteration: 11, Func. Count: 143, Neg. LLF: 142.05925479790494
Iteration: 12, Func. Count: 155, Neg. LLF: 142.02152287400182
Iteration: 13, Func. Count: 167, Neg. LLF: 142.01977992780073
Iteration: 14, Func. Count: 179, Neg. LLF: 142.01903382144047
Iteration: 15, Func. Count: 191, Neg. LLF: 142.01898763965409
Iteration: 16, Func. Count: 203, Neg. LLF: 142.01898119954538
Iteration: 17, Func. Count: 214, Neg. LLF: 142.0189812696261
Optimization terminated successfully (Exit mode 0)
Current function value: 142.01898119954538
Iterations: 17
Function evaluations: 214
Gradient evaluations: 17
Iteration: 1, Func. Count: 14, Neg. LLF: 144.01100317480447
Iteration: 2, Func. Count: 27, Neg. LLF: 143.60084759738885
Iteration: 3, Func. Count: 41, Neg. LLF: 147.49633579787445
Iteration: 4, Func. Count: 57, Neg. LLF: 151.734956637301
Iteration: 5, Func. Count: 71, Neg. LLF: 149.39054561493649
Iteration: 6, Func. Count: 85, Neg. LLF: 143.71910217082862
Iteration: 7, Func. Count: 99, Neg. LLF: 143.25762279349868
Iteration: 8, Func. Count: 113, Neg. LLF: 142.18891842229502
Iteration: 9, Func. Count: 127, Neg. LLF: 142.07763548028444
Iteration: 10, Func. Count: 141, Neg. LLF: 142.02510866602114
Iteration: 11, Func. Count: 154, Neg. LLF: 142.0224837914349
Iteration: 12, Func. Count: 167, Neg. LLF: 142.02031288616317
Iteration: 13, Func. Count: 180, Neg. LLF: 142.0192549903128
Iteration: 14, Func. Count: 193, Neg. LLF: 142.01899686277633
Iteration: 15, Func. Count: 206, Neg. LLF: 142.01898141744144
Iteration: 16, Func. Count: 219, Neg. LLF: 142.01898099251179
Optimization terminated successfully (Exit mode 0)
Current function value: 142.01898099251179
Iterations: 16
Function evaluations: 219
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 144.15957670385902
Iteration: 2, Func. Count: 22, Neg. LLF: 144.2779799414464
Iteration: 3, Func. Count: 35, Neg. LLF: 142.5878517677471
Iteration: 4, Func. Count: 46, Neg. LLF: 2623.6644293041286
Iteration: 5, Func. Count: 58, Neg. LLF: 141.91684397850872
Iteration: 6, Func. Count: 68, Neg. LLF: 3304.440468047749
Iteration: 7, Func. Count: 80, Neg. LLF: 141.92812090534667
Iteration: 8, Func. Count: 91, Neg. LLF: 141.94521763907622
Iteration: 9, Func. Count: 102, Neg. LLF: 141.85623728153354
Iteration: 10, Func. Count: 112, Neg. LLF: 141.84788647740575
Iteration: 11, Func. Count: 122, Neg. LLF: 141.8419408867917
Iteration: 12, Func. Count: 132, Neg. LLF: 141.84151494394968
Iteration: 13, Func. Count: 142, Neg. LLF: 141.84149380065273
Iteration: 14, Func. Count: 152, Neg. LLF: 141.84149287952062
Optimization terminated successfully (Exit mode 0)
Current function value: 141.84149287952062
Iterations: 14
Function evaluations: 152
Gradient evaluations: 14
Iteration: 1, Func. Count: 12, Neg. LLF: 146.99713760972728
Iteration: 2, Func. Count: 24, Neg. LLF: 146.3541713729076
Iteration: 3, Func. Count: 36, Neg. LLF: 178.16697133948844
Iteration: 4, Func. Count: 50, Neg. LLF: 157.82922250274865
Iteration: 5, Func. Count: 62, Neg. LLF: 145.39257252701557
Iteration: 6, Func. Count: 74, Neg. LLF: 142.99404038082082
Iteration: 7, Func. Count: 85, Neg. LLF: 142.55098558363193
Iteration: 8, Func. Count: 96, Neg. LLF: 145.21095127554648
Iteration: 9, Func. Count: 109, Neg. LLF: 144.30064842030885
Iteration: 10, Func. Count: 122, Neg. LLF: 142.02970174961376
Iteration: 11, Func. Count: 133, Neg. LLF: 141.9380109589197
Iteration: 12, Func. Count: 144, Neg. LLF: 141.9167655310199
Iteration: 13, Func. Count: 156, Neg. LLF: 141.85728344886905
Iteration: 14, Func. Count: 167, Neg. LLF: 141.85066305133003
Iteration: 15, Func. Count: 178, Neg. LLF: 141.8424982188601
Iteration: 16, Func. Count: 189, Neg. LLF: 141.84157415527264
Iteration: 17, Func. Count: 200, Neg. LLF: 141.84150479484617
Iteration: 18, Func. Count: 211, Neg. LLF: 141.84149396178137
Iteration: 19, Func. Count: 222, Neg. LLF: 141.8414929374848
Iteration: 20, Func. Count: 232, Neg. LLF: 141.84149300363535
Optimization terminated successfully (Exit mode 0)
Current function value: 141.8414929374848
Iterations: 20
Function evaluations: 232
Gradient evaluations: 20
Iteration: 1, Func. Count: 13, Neg. LLF: 145.16176190233543
Iteration: 2, Func. Count: 26, Neg. LLF: 144.20615021546706
Iteration: 3, Func. Count: 39, Neg. LLF: 156.17685553518015
Iteration: 4, Func. Count: 54, Neg. LLF: 174.9941003179592
Iteration: 5, Func. Count: 67, Neg. LLF: 151.774328577634
Iteration: 6, Func. Count: 81, Neg. LLF: 149.62109792319055
Iteration: 7, Func. Count: 94, Neg. LLF: 142.2266559624582
Iteration: 8, Func. Count: 106, Neg. LLF: 142.5751048508695
Iteration: 9, Func. Count: 119, Neg. LLF: 142.48991959976306
Iteration: 10, Func. Count: 132, Neg. LLF: 141.94883832371517
Iteration: 11, Func. Count: 144, Neg. LLF: 141.89910463634973
Iteration: 12, Func. Count: 156, Neg. LLF: 141.86399381097596
Iteration: 13, Func. Count: 168, Neg. LLF: 141.84722074789917
Iteration: 14, Func. Count: 180, Neg. LLF: 141.8416421166759
Iteration: 15, Func. Count: 192, Neg. LLF: 141.84150421542122
Iteration: 16, Func. Count: 204, Neg. LLF: 141.84149447739495
Iteration: 17, Func. Count: 216, Neg. LLF: 141.84149292990313
Iteration: 18, Func. Count: 227, Neg. LLF: 141.84149298051912
Optimization terminated successfully (Exit mode 0)
Current function value: 141.84149292990313
Iterations: 18
Function evaluations: 227
Gradient evaluations: 18
Iteration: 1, Func. Count: 14, Neg. LLF: 145.1113871568627
Iteration: 2, Func. Count: 28, Neg. LLF: 144.38463662525808
Iteration: 3, Func. Count: 43, Neg. LLF: 149.5388292430785
Iteration: 4, Func. Count: 59, Neg. LLF: 168.91964588781116
Iteration: 5, Func. Count: 73, Neg. LLF: 142.42448014809327
Iteration: 6, Func. Count: 86, Neg. LLF: 157.87487747621373
Iteration: 7, Func. Count: 101, Neg. LLF: 151.81383546588071
Iteration: 8, Func. Count: 115, Neg. LLF: 142.39772309671676
Iteration: 9, Func. Count: 129, Neg. LLF: 142.00436051807392
Iteration: 10, Func. Count: 142, Neg. LLF: 141.97006352517596
Iteration: 11, Func. Count: 155, Neg. LLF: 141.90657231568022
Iteration: 12, Func. Count: 168, Neg. LLF: 141.85508386184767
Iteration: 13, Func. Count: 181, Neg. LLF: 141.84360043313055
Iteration: 14, Func. Count: 194, Neg. LLF: 141.84195892585996
Iteration: 15, Func. Count: 207, Neg. LLF: 141.84154358174814
Iteration: 16, Func. Count: 220, Neg. LLF: 141.84149349826637
Iteration: 17, Func. Count: 233, Neg. LLF: 141.84149287775108
Optimization terminated successfully (Exit mode 0)
Current function value: 141.84149287775108
Iterations: 17
Function evaluations: 233
Gradient evaluations: 17
Iteration: 1, Func. Count: 15, Neg. LLF: 144.0085700569825
Iteration: 2, Func. Count: 29, Neg. LLF: 143.64161873289618
Iteration: 3, Func. Count: 44, Neg. LLF: 158.75096568344702
Iteration: 4, Func. Count: 61, Neg. LLF: 152.10558450867555
Iteration: 5, Func. Count: 76, Neg. LLF: 158.4587912114571
Iteration: 6, Func. Count: 91, Neg. LLF: 153.19459444755552
Iteration: 7, Func. Count: 106, Neg. LLF: 152.37954436375168
Iteration: 8, Func. Count: 121, Neg. LLF: 144.01558029760417
Iteration: 9, Func. Count: 136, Neg. LLF: 141.95209936194146
Iteration: 10, Func. Count: 150, Neg. LLF: 141.91725968168012
Iteration: 11, Func. Count: 164, Neg. LLF: 141.93488957086157
Iteration: 12, Func. Count: 179, Neg. LLF: 141.89444573802817
Iteration: 13, Func. Count: 194, Neg. LLF: 141.91156268515454
Iteration: 14, Func. Count: 209, Neg. LLF: 141.84581864950616
Iteration: 15, Func. Count: 223, Neg. LLF: 141.8433209480673
Iteration: 16, Func. Count: 237, Neg. LLF: 141.84163698544467
Iteration: 17, Func. Count: 251, Neg. LLF: 141.84151867346225
Iteration: 18, Func. Count: 265, Neg. LLF: 141.84149682281347
Iteration: 19, Func. Count: 279, Neg. LLF: 141.84149321145
Iteration: 20, Func. Count: 292, Neg. LLF: 141.8414933385295
Optimization terminated successfully (Exit mode 0)
Current function value: 141.84149321145
Iterations: 20
Function evaluations: 292
Gradient evaluations: 20
Iteration: 1, Func. Count: 12, Neg. LLF: 141.29077277423275
Iteration: 2, Func. Count: 23, Neg. LLF: 146.33145566784847
Iteration: 3, Func. Count: 37, Neg. LLF: 144.59248507108742
Iteration: 4, Func. Count: 49, Neg. LLF: 143.04513076825137
Iteration: 5, Func. Count: 61, Neg. LLF: 144.99563299145225
Iteration: 6, Func. Count: 73, Neg. LLF: 143.93891286342947
Iteration: 7, Func. Count: 85, Neg. LLF: 147.83361429519127
Iteration: 8, Func. Count: 97, Neg. LLF: 139.38070346166464
Iteration: 9, Func. Count: 108, Neg. LLF: 147.3053915581833
Iteration: 10, Func. Count: 121, Neg. LLF: 141.06017810094355
Iteration: 11, Func. Count: 134, Neg. LLF: 139.51304793523522
Iteration: 12, Func. Count: 146, Neg. LLF: 139.1810375451976
Iteration: 13, Func. Count: 157, Neg. LLF: 139.1789317079054
Iteration: 14, Func. Count: 169, Neg. LLF: 139.17095868636963
Iteration: 15, Func. Count: 181, Neg. LLF: 139.16568669723657
Iteration: 16, Func. Count: 192, Neg. LLF: 139.16551922265003
Iteration: 17, Func. Count: 203, Neg. LLF: 139.1655174872652
Iteration: 18, Func. Count: 213, Neg. LLF: 139.1655173199699
Optimization terminated successfully (Exit mode 0)
Current function value: 139.1655174872652
Iterations: 18
Function evaluations: 213
Gradient evaluations: 18
Iteration: 1, Func. Count: 13, Neg. LLF: 152.11242783274136
Iteration: 2, Func. Count: 26, Neg. LLF: 143.6444538813454
Iteration: 3, Func. Count: 39, Neg. LLF: 152.386616413996
Iteration: 4, Func. Count: 54, Neg. LLF: 141.1874127436368
Iteration: 5, Func. Count: 67, Neg. LLF: 154.66805632071757
Iteration: 6, Func. Count: 80, Neg. LLF: 139.56028682738324
Iteration: 7, Func. Count: 92, Neg. LLF: 139.12738738941405
Iteration: 8, Func. Count: 104, Neg. LLF: 140.82876332718712
Iteration: 9, Func. Count: 118, Neg. LLF: 139.08998196785905
Iteration: 10, Func. Count: 130, Neg. LLF: 139.1743854568709
Iteration: 11, Func. Count: 143, Neg. LLF: 139.09803290767687
Iteration: 12, Func. Count: 156, Neg. LLF: 139.0207567884062
Iteration: 13, Func. Count: 168, Neg. LLF: 139.01635432299292
Iteration: 14, Func. Count: 180, Neg. LLF: 139.01579306527438
Iteration: 15, Func. Count: 192, Neg. LLF: 139.0155380813639
Iteration: 16, Func. Count: 204, Neg. LLF: 139.01553409971172
Iteration: 17, Func. Count: 216, Neg. LLF: 139.01553248431674
Iteration: 18, Func. Count: 227, Neg. LLF: 139.01553248423298
Optimization terminated successfully (Exit mode 0)
Current function value: 139.01553248431674
Iterations: 18
Function evaluations: 227
Gradient evaluations: 18
Iteration: 1, Func. Count: 14, Neg. LLF: 150.1657266694277
Iteration: 2, Func. Count: 28, Neg. LLF: 142.3602767301808
Iteration: 3, Func. Count: 42, Neg. LLF: 146.22672558747078
Iteration: 4, Func. Count: 58, Neg. LLF: 141.759868924285
Iteration: 5, Func. Count: 72, Neg. LLF: 145.9747643319932
Iteration: 6, Func. Count: 86, Neg. LLF: 144.82658563519635
Iteration: 7, Func. Count: 100, Neg. LLF: 146.65414237779547
Iteration: 8, Func. Count: 114, Neg. LLF: 139.62237744943207
Iteration: 9, Func. Count: 127, Neg. LLF: 139.27683371752474
Iteration: 10, Func. Count: 140, Neg. LLF: 139.31141024238386
Iteration: 11, Func. Count: 154, Neg. LLF: 139.44055163272324
Iteration: 12, Func. Count: 168, Neg. LLF: 139.13981372047704
Iteration: 13, Func. Count: 182, Neg. LLF: 139.02662765268562
Iteration: 14, Func. Count: 195, Neg. LLF: 139.02244762350543
Iteration: 15, Func. Count: 208, Neg. LLF: 139.01692663147423
Iteration: 16, Func. Count: 221, Neg. LLF: 139.01623219928146
Iteration: 17, Func. Count: 234, Neg. LLF: 139.01580155997462
Iteration: 18, Func. Count: 247, Neg. LLF: 139.01556501714768
Iteration: 19, Func. Count: 260, Neg. LLF: 139.01553323672138
Iteration: 20, Func. Count: 273, Neg. LLF: 139.01553234377636
Optimization terminated successfully (Exit mode 0)
Current function value: 139.01553234377636
Iterations: 20
Function evaluations: 273
Gradient evaluations: 20
Iteration: 1, Func. Count: 15, Neg. LLF: 141.9337319205189
Iteration: 2, Func. Count: 29, Neg. LLF: 146.04762537762753
Iteration: 3, Func. Count: 45, Neg. LLF: 158.9460098017628
Iteration: 4, Func. Count: 61, Neg. LLF: 183.60599315824732
Iteration: 5, Func. Count: 76, Neg. LLF: 151.2647241526072
Iteration: 6, Func. Count: 91, Neg. LLF: 139.71395965061333
Iteration: 7, Func. Count: 105, Neg. LLF: 140.62900357098877
Iteration: 8, Func. Count: 120, Neg. LLF: 140.39247372852003
Iteration: 9, Func. Count: 135, Neg. LLF: 139.8174247832321
Iteration: 10, Func. Count: 150, Neg. LLF: 139.2900533811989
Iteration: 11, Func. Count: 165, Neg. LLF: 139.1956615588754
Iteration: 12, Func. Count: 180, Neg. LLF: 139.00612594199922
Iteration: 13, Func. Count: 194, Neg. LLF: 139.00266542830613
Iteration: 14, Func. Count: 208, Neg. LLF: 139.00175622018764
Iteration: 15, Func. Count: 222, Neg. LLF: 139.0005777602728
Iteration: 16, Func. Count: 236, Neg. LLF: 139.0003936294733
Iteration: 17, Func. Count: 250, Neg. LLF: 139.00032899717738
Iteration: 18, Func. Count: 264, Neg. LLF: 139.00032461079118
Iteration: 19, Func. Count: 277, Neg. LLF: 139.00032461086596
Optimization terminated successfully (Exit mode 0)
Current function value: 139.00032461079118
Iterations: 19
Function evaluations: 277
Gradient evaluations: 19
Iteration: 1, Func. Count: 16, Neg. LLF: 140.98621855413597
Iteration: 2, Func. Count: 31, Neg. LLF: 142.9476056390367
Iteration: 3, Func. Count: 49, Neg. LLF: 145.6079910533283
Iteration: 4, Func. Count: 65, Neg. LLF: 143.28965454804313
Iteration: 5, Func. Count: 81, Neg. LLF: 144.22800591008937
Iteration: 6, Func. Count: 97, Neg. LLF: 147.49083940385017
Iteration: 7, Func. Count: 113, Neg. LLF: 143.09595978271983
Iteration: 8, Func. Count: 129, Neg. LLF: 149.77022706793653
Iteration: 9, Func. Count: 145, Neg. LLF: 142.92022171243838
Iteration: 10, Func. Count: 161, Neg. LLF: 155.93556244107202
Iteration: 11, Func. Count: 177, Neg. LLF: 145.37334806061753
Iteration: 12, Func. Count: 193, Neg. LLF: 139.9815257380724
Iteration: 13, Func. Count: 209, Neg. LLF: 139.0588754240943
Iteration: 14, Func. Count: 224, Neg. LLF: 139.1746060548732
Iteration: 15, Func. Count: 240, Neg. LLF: 139.0193189061912
Iteration: 16, Func. Count: 256, Neg. LLF: 139.0020622800929
Iteration: 17, Func. Count: 271, Neg. LLF: 139.0006373446197
Iteration: 18, Func. Count: 286, Neg. LLF: 139.0004071797287
Iteration: 19, Func. Count: 301, Neg. LLF: 139.00032654107247
Iteration: 20, Func. Count: 316, Neg. LLF: 139.00032435332514
Iteration: 21, Func. Count: 330, Neg. LLF: 139.00032444984626
Optimization terminated successfully (Exit mode 0)
Current function value: 139.00032435332514
Iterations: 21
Function evaluations: 330
Gradient evaluations: 21
Iteration: 1, Func. Count: 5, Neg. LLF: 155.31960543122966
Iteration: 2, Func. Count: 10, Neg. LLF: 159.39859433408435
Iteration: 3, Func. Count: 15, Neg. LLF: 144.63682077955448
Iteration: 4, Func. Count: 19, Neg. LLF: 144.5356851510784
Iteration: 5, Func. Count: 23, Neg. LLF: 144.50787625068276
Iteration: 6, Func. Count: 27, Neg. LLF: 144.50506814075857
Iteration: 7, Func. Count: 31, Neg. LLF: 144.50497781540273
Iteration: 8, Func. Count: 35, Neg. LLF: 144.50497620822563
Iteration: 9, Func. Count: 38, Neg. LLF: 144.50497620822927
Optimization terminated successfully (Exit mode 0)
Current function value: 144.50497620822563
Iterations: 9
Function evaluations: 38
Gradient evaluations: 9
Iteration: 1, Func. Count: 5, Neg. LLF: 154.62496832809367
Iteration: 2, Func. Count: 10, Neg. LLF: 160.03716464425875
Iteration: 3, Func. Count: 15, Neg. LLF: 144.92110419651556
Iteration: 4, Func. Count: 19, Neg. LLF: 144.8169569108693
Iteration: 5, Func. Count: 23, Neg. LLF: 144.77816700390233
Iteration: 6, Func. Count: 27, Neg. LLF: 144.7746752480709
Iteration: 7, Func. Count: 31, Neg. LLF: 144.7745909749809
Iteration: 8, Func. Count: 35, Neg. LLF: 144.77458867002673
Iteration: 9, Func. Count: 39, Neg. LLF: 144.77458749641949
Iteration: 10, Func. Count: 43, Neg. LLF: 144.77458658215537
Optimization terminated successfully (Exit mode 0)
Current function value: 144.77458658215537
Iterations: 10
Function evaluations: 43
Gradient evaluations: 10
Iteration: 1, Func. Count: 6, Neg. LLF: 179.1700509705175
Iteration: 2, Func. Count: 13, Neg. LLF: 149.66326815051795
Iteration: 3, Func. Count: 19, Neg. LLF: 150.08630713243645
Iteration: 4, Func. Count: 26, Neg. LLF: 147.88361982594836
Iteration: 5, Func. Count: 31, Neg. LLF: 147.88331777468704
Iteration: 6, Func. Count: 36, Neg. LLF: 147.88276949884198
Iteration: 7, Func. Count: 41, Neg. LLF: 147.88100564779046
Iteration: 8, Func. Count: 46, Neg. LLF: 147.87780224512926
Iteration: 9, Func. Count: 51, Neg. LLF: 147.86701396682562
Iteration: 10, Func. Count: 56, Neg. LLF: 147.38018151534433
Iteration: 11, Func. Count: 61, Neg. LLF: 147.69116407976097
Iteration: 12, Func. Count: 68, Neg. LLF: 147.18378407745666
Iteration: 13, Func. Count: 73, Neg. LLF: 146.10460382866614
Iteration: 14, Func. Count: 78, Neg. LLF: 145.87584964308763
Iteration: 15, Func. Count: 84, Neg. LLF: 144.99193595963746
Iteration: 16, Func. Count: 89, Neg. LLF: 144.93790638004646
Iteration: 17, Func. Count: 94, Neg. LLF: 144.9061761558424
Iteration: 18, Func. Count: 99, Neg. LLF: 144.80774779544052
Iteration: 19, Func. Count: 104, Neg. LLF: 144.77810858808616
Iteration: 20, Func. Count: 109, Neg. LLF: 144.77470510517452
Iteration: 21, Func. Count: 114, Neg. LLF: 144.7745868245528
Iteration: 22, Func. Count: 118, Neg. LLF: 144.77458690043596
Optimization terminated successfully (Exit mode 0)
Current function value: 144.7745868245528
Iterations: 22
Function evaluations: 118
Gradient evaluations: 22
Iteration: 1, Func. Count: 7, Neg. LLF: 145.170635164975
Iteration: 2, Func. Count: 13, Neg. LLF: 150.33653078009735
Iteration: 3, Func. Count: 21, Neg. LLF: 152.57447149155067
Iteration: 4, Func. Count: 28, Neg. LLF: 144.60083183156723
Iteration: 5, Func. Count: 34, Neg. LLF: 144.4921713208955
Iteration: 6, Func. Count: 40, Neg. LLF: 144.47034946701817
Iteration: 7, Func. Count: 46, Neg. LLF: 144.40801015690798
Iteration: 8, Func. Count: 52, Neg. LLF: 144.40249399464562
Iteration: 9, Func. Count: 58, Neg. LLF: 144.40185515372838
Iteration: 10, Func. Count: 64, Neg. LLF: 144.40185167540474
Iteration: 11, Func. Count: 69, Neg. LLF: 144.40185167447154
Optimization terminated successfully (Exit mode 0)
Current function value: 144.40185167540474
Iterations: 11
Function evaluations: 69
Gradient evaluations: 11
Iteration: 1, Func. Count: 8, Neg. LLF: 144.81329149184737
Iteration: 2, Func. Count: 15, Neg. LLF: 146.28295331709893
Iteration: 3, Func. Count: 23, Neg. LLF: 189.65795770423725
Iteration: 4, Func. Count: 32, Neg. LLF: 144.51201223788797
Iteration: 5, Func. Count: 39, Neg. LLF: 144.4801076880208
Iteration: 6, Func. Count: 46, Neg. LLF: 144.44938046660246
Iteration: 7, Func. Count: 53, Neg. LLF: 144.40450305661483
Iteration: 8, Func. Count: 60, Neg. LLF: 144.4020829846105
Iteration: 9, Func. Count: 67, Neg. LLF: 144.40185940400488
Iteration: 10, Func. Count: 74, Neg. LLF: 144.4018516135737
Iteration: 11, Func. Count: 80, Neg. LLF: 144.40185172464908
Optimization terminated successfully (Exit mode 0)
Current function value: 144.4018516135737
Iterations: 11
Function evaluations: 80
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 151.78484264885347
Iteration: 2, Func. Count: 18, Neg. LLF: 149.00829823399982
Iteration: 3, Func. Count: 27, Neg. LLF: 147.39735836468628
Iteration: 4, Func. Count: 36, Neg. LLF: 148.22616189345808
Iteration: 5, Func. Count: 45, Neg. LLF: 145.24733079568986
Iteration: 6, Func. Count: 53, Neg. LLF: 145.28802049019754
Iteration: 7, Func. Count: 62, Neg. LLF: 153.83754747353234
Iteration: 8, Func. Count: 72, Neg. LLF: 144.5744666496639
Iteration: 9, Func. Count: 80, Neg. LLF: 144.54248813181286
Iteration: 10, Func. Count: 89, Neg. LLF: 144.4161266176965
Iteration: 11, Func. Count: 97, Neg. LLF: 144.40710367793727
Iteration: 12, Func. Count: 105, Neg. LLF: 144.40290538431003
Iteration: 13, Func. Count: 113, Neg. LLF: 144.401855406405
Iteration: 14, Func. Count: 121, Neg. LLF: 144.40185161921508
Iteration: 15, Func. Count: 128, Neg. LLF: 144.4018517029853
Optimization terminated successfully (Exit mode 0)
Current function value: 144.40185161921508
Iterations: 15
Function evaluations: 128
Gradient evaluations: 15
Iteration: 1, Func. Count: 6, Neg. LLF: 151.04196593729415
Iteration: 2, Func. Count: 12, Neg. LLF: 162.2812194308242
Iteration: 3, Func. Count: 18, Neg. LLF: 144.92873057301708
Iteration: 4, Func. Count: 23, Neg. LLF: 144.88010000434224
Iteration: 5, Func. Count: 28, Neg. LLF: 144.791259130254
Iteration: 6, Func. Count: 33, Neg. LLF: 144.7767968545077
Iteration: 7, Func. Count: 38, Neg. LLF: 144.77543391435344
Iteration: 8, Func. Count: 43, Neg. LLF: 144.77499176031247
Iteration: 9, Func. Count: 48, Neg. LLF: 144.77474821059945
Iteration: 10, Func. Count: 53, Neg. LLF: 144.77461214856663
Iteration: 11, Func. Count: 58, Neg. LLF: 144.77458798634504
Iteration: 12, Func. Count: 63, Neg. LLF: 144.77458635547154
Iteration: 13, Func. Count: 67, Neg. LLF: 144.77458639586695
Optimization terminated successfully (Exit mode 0)
Current function value: 144.77458635547154
Iterations: 13
Function evaluations: 67
Gradient evaluations: 13
Iteration: 1, Func. Count: 7, Neg. LLF: 150.26715573212417
Iteration: 2, Func. Count: 17, Neg. LLF: 160.9599579645016
Iteration: 3, Func. Count: 25, Neg. LLF: 147.96789857241532
Iteration: 4, Func. Count: 32, Neg. LLF: 147.88754152140484
Iteration: 5, Func. Count: 38, Neg. LLF: 147.88466408871497
Iteration: 6, Func. Count: 44, Neg. LLF: 147.88377093356553
Iteration: 7, Func. Count: 50, Neg. LLF: 147.88315912041574
Iteration: 8, Func. Count: 56, Neg. LLF: 147.8826745963937
Iteration: 9, Func. Count: 62, Neg. LLF: 147.88091224806527
Iteration: 10, Func. Count: 68, Neg. LLF: 147.8734862880166
Iteration: 11, Func. Count: 74, Neg. LLF: 147.04899891600513
Iteration: 12, Func. Count: 80, Neg. LLF: 146.75379155921058
Iteration: 13, Func. Count: 86, Neg. LLF: 240.74290915254187
Iteration: 14, Func. Count: 94, Neg. LLF: 146.50124840627763
Iteration: 15, Func. Count: 100, Neg. LLF: 146.06919998056247
Iteration: 16, Func. Count: 106, Neg. LLF: 145.17583522272307
Iteration: 17, Func. Count: 112, Neg. LLF: 144.77892516848158
Iteration: 18, Func. Count: 118, Neg. LLF: 144.77626721999047
Iteration: 19, Func. Count: 124, Neg. LLF: 144.7759987304084
Iteration: 20, Func. Count: 130, Neg. LLF: 144.77505033691455
Iteration: 21, Func. Count: 136, Neg. LLF: 144.77470994123047
Iteration: 22, Func. Count: 142, Neg. LLF: 144.7745929134496
Iteration: 23, Func. Count: 148, Neg. LLF: 144.7745865472378
Iteration: 24, Func. Count: 153, Neg. LLF: 144.77458662314783
Optimization terminated successfully (Exit mode 0)
Current function value: 144.7745865472378
Iterations: 24
Function evaluations: 153
Gradient evaluations: 24
Iteration: 1, Func. Count: 8, Neg. LLF: 148.0589568133289
Iteration: 2, Func. Count: 16, Neg. LLF: 148.30924432572053
Iteration: 3, Func. Count: 24, Neg. LLF: 146.67995117552923
Iteration: 4, Func. Count: 32, Neg. LLF: 146.02194372885384
Iteration: 5, Func. Count: 40, Neg. LLF: 145.95606425138192
Iteration: 6, Func. Count: 48, Neg. LLF: 144.47914891689538
Iteration: 7, Func. Count: 55, Neg. LLF: 144.40886621898332
Iteration: 8, Func. Count: 62, Neg. LLF: 144.40232802886044
Iteration: 9, Func. Count: 69, Neg. LLF: 144.4018678354618
Iteration: 10, Func. Count: 76, Neg. LLF: 144.40185202129817
Iteration: 11, Func. Count: 82, Neg. LLF: 144.40185202023554
Optimization terminated successfully (Exit mode 0)
Current function value: 144.40185202129817
Iterations: 11
Function evaluations: 82
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 144.6030119274365
Iteration: 2, Func. Count: 17, Neg. LLF: 145.36090985472535
Iteration: 3, Func. Count: 26, Neg. LLF: 144.5345810999587
Iteration: 4, Func. Count: 35, Neg. LLF: 145.6475772087684
Iteration: 5, Func. Count: 44, Neg. LLF: 144.4399119185316
Iteration: 6, Func. Count: 52, Neg. LLF: 144.4068851577751
Iteration: 7, Func. Count: 60, Neg. LLF: 144.40197761493428
Iteration: 8, Func. Count: 68, Neg. LLF: 144.40185212044477
Iteration: 9, Func. Count: 76, Neg. LLF: 144.40185161258276
Optimization terminated successfully (Exit mode 0)
Current function value: 144.40185161258276
Iterations: 9
Function evaluations: 76
Gradient evaluations: 9
Iteration: 1, Func. Count: 10, Neg. LLF: 147.5547633443868
Iteration: 2, Func. Count: 19, Neg. LLF: 146.5388304119818
Iteration: 3, Func. Count: 28, Neg. LLF: 171.7742635715117
Iteration: 4, Func. Count: 40, Neg. LLF: 146.01202886178572
Iteration: 5, Func. Count: 50, Neg. LLF: 144.98058317125802
Iteration: 6, Func. Count: 59, Neg. LLF: 145.55581425352096
Iteration: 7, Func. Count: 69, Neg. LLF: 144.42994483714978
Iteration: 8, Func. Count: 78, Neg. LLF: 144.41298328106927
Iteration: 9, Func. Count: 87, Neg. LLF: 144.4064808928689
Iteration: 10, Func. Count: 96, Neg. LLF: 144.40358165733738
Iteration: 11, Func. Count: 105, Neg. LLF: 144.40279873834277
Iteration: 12, Func. Count: 114, Neg. LLF: 144.40228013800402
Iteration: 13, Func. Count: 123, Neg. LLF: 144.4019542069779
Iteration: 14, Func. Count: 132, Neg. LLF: 144.401858709973
Iteration: 15, Func. Count: 141, Neg. LLF: 144.4018517774252
Iteration: 16, Func. Count: 149, Neg. LLF: 144.4018518610928
Optimization terminated successfully (Exit mode 0)
Current function value: 144.4018517774252
Iterations: 16
Function evaluations: 149
Gradient evaluations: 16
Iteration: 1, Func. Count: 7, Neg. LLF: 162.40392794596158
Iteration: 2, Func. Count: 15, Neg. LLF: 146.87877269619054
Iteration: 3, Func. Count: 21, Neg. LLF: 152.59147362639115
Iteration: 4, Func. Count: 28, Neg. LLF: 144.77628459785973
Iteration: 5, Func. Count: 34, Neg. LLF: 144.46523661833066
Iteration: 6, Func. Count: 40, Neg. LLF: 144.38728932665495
Iteration: 7, Func. Count: 46, Neg. LLF: 144.378520493729
Iteration: 8, Func. Count: 52, Neg. LLF: 144.37634361771933
Iteration: 9, Func. Count: 58, Neg. LLF: 144.37608433448258
Iteration: 10, Func. Count: 64, Neg. LLF: 144.37608286693094
Iteration: 11, Func. Count: 69, Neg. LLF: 144.37608286627125
Optimization terminated successfully (Exit mode 0)
Current function value: 144.37608286693094
Iterations: 11
Function evaluations: 69
Gradient evaluations: 11
Iteration: 1, Func. Count: 8, Neg. LLF: 154.0153241213652
Iteration: 2, Func. Count: 17, Neg. LLF: 153.30886767630378
Iteration: 3, Func. Count: 25, Neg. LLF: 146.38520036941497
Iteration: 4, Func. Count: 32, Neg. LLF: 146.13165433555076
Iteration: 5, Func. Count: 39, Neg. LLF: 152.45251556829328
Iteration: 6, Func. Count: 47, Neg. LLF: 144.93118204907879
Iteration: 7, Func. Count: 54, Neg. LLF: 144.55104516837855
Iteration: 8, Func. Count: 61, Neg. LLF: 144.3929901762562
Iteration: 9, Func. Count: 68, Neg. LLF: 144.38055578000532
Iteration: 10, Func. Count: 75, Neg. LLF: 144.37856259750714
Iteration: 11, Func. Count: 82, Neg. LLF: 144.37720636625238
Iteration: 12, Func. Count: 89, Neg. LLF: 144.3761529062948
Iteration: 13, Func. Count: 96, Neg. LLF: 144.37609189111515
Iteration: 14, Func. Count: 103, Neg. LLF: 144.37608497859924
Iteration: 15, Func. Count: 110, Neg. LLF: 144.3760833777822
Iteration: 16, Func. Count: 116, Neg. LLF: 144.37608352827098
Optimization terminated successfully (Exit mode 0)
Current function value: 144.3760833777822
Iterations: 16
Function evaluations: 116
Gradient evaluations: 16
Iteration: 1, Func. Count: 9, Neg. LLF: 151.03698550709433
Iteration: 2, Func. Count: 20, Neg. LLF: 152.52664068968613
Iteration: 3, Func. Count: 29, Neg. LLF: 147.0116011286449
Iteration: 4, Func. Count: 37, Neg. LLF: 146.85715147737872
Iteration: 5, Func. Count: 46, Neg. LLF: 145.59394687007136
Iteration: 6, Func. Count: 54, Neg. LLF: 161.30325338572575
Iteration: 7, Func. Count: 63, Neg. LLF: 144.78168045119054
Iteration: 8, Func. Count: 71, Neg. LLF: 144.55826038918167
Iteration: 9, Func. Count: 79, Neg. LLF: 144.405894342496
Iteration: 10, Func. Count: 87, Neg. LLF: 144.37773666544916
Iteration: 11, Func. Count: 95, Neg. LLF: 144.37666465180286
Iteration: 12, Func. Count: 103, Neg. LLF: 144.37636728719536
Iteration: 13, Func. Count: 111, Neg. LLF: 144.37608796157815
Iteration: 14, Func. Count: 119, Neg. LLF: 144.37608492110706
Iteration: 15, Func. Count: 127, Neg. LLF: 144.37608289266913
Iteration: 16, Func. Count: 134, Neg. LLF: 144.37608289713265
Optimization terminated successfully (Exit mode 0)
Current function value: 144.37608289266913
Iterations: 16
Function evaluations: 134
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 155.92247341562057
Iteration: 2, Func. Count: 22, Neg. LLF: 152.43645824130147
Iteration: 3, Func. Count: 32, Neg. LLF: 147.20808211758853
Iteration: 4, Func. Count: 41, Neg. LLF: 146.6853257110771
Iteration: 5, Func. Count: 50, Neg. LLF: 155.70439959854497
Iteration: 6, Func. Count: 61, Neg. LLF: 145.29681767840376
Iteration: 7, Func. Count: 70, Neg. LLF: 144.7957629239174
Iteration: 8, Func. Count: 79, Neg. LLF: 144.5806429953903
Iteration: 9, Func. Count: 88, Neg. LLF: 144.42247873135835
Iteration: 10, Func. Count: 97, Neg. LLF: 144.38932028197883
Iteration: 11, Func. Count: 106, Neg. LLF: 144.38553550393442
Iteration: 12, Func. Count: 115, Neg. LLF: 144.37822279373484
Iteration: 13, Func. Count: 124, Neg. LLF: 144.37657242204574
Iteration: 14, Func. Count: 133, Neg. LLF: 144.3763316426463
Iteration: 15, Func. Count: 142, Neg. LLF: 144.37617081782315
Iteration: 16, Func. Count: 151, Neg. LLF: 144.37609542405747
Iteration: 17, Func. Count: 160, Neg. LLF: 144.37608352269737
Iteration: 18, Func. Count: 169, Neg. LLF: 144.37608285615931
Optimization terminated successfully (Exit mode 0)
Current function value: 144.37608285615931
Iterations: 18
Function evaluations: 169
Gradient evaluations: 18
Iteration: 1, Func. Count: 11, Neg. LLF: 155.95117447250007
Iteration: 2, Func. Count: 24, Neg. LLF: 152.2810541661059
Iteration: 3, Func. Count: 35, Neg. LLF: 147.2149375705213
Iteration: 4, Func. Count: 45, Neg. LLF: 148.67329390656022
Iteration: 5, Func. Count: 56, Neg. LLF: 146.8838730867104
Iteration: 6, Func. Count: 70, Neg. LLF: 163.50441142213296
Iteration: 7, Func. Count: 81, Neg. LLF: 146.37782435280826
Iteration: 8, Func. Count: 91, Neg. LLF: 146.20955726773641
Iteration: 9, Func. Count: 101, Neg. LLF: 146.07251120703742
Iteration: 10, Func. Count: 111, Neg. LLF: 145.78154119714034
Iteration: 11, Func. Count: 121, Neg. LLF: 145.510633137409
Iteration: 12, Func. Count: 131, Neg. LLF: 145.46807670106614
Iteration: 13, Func. Count: 141, Neg. LLF: 145.38164197228164
Iteration: 14, Func. Count: 151, Neg. LLF: 145.3200992668078
Iteration: 15, Func. Count: 161, Neg. LLF: 145.3012577419284
Iteration: 16, Func. Count: 171, Neg. LLF: 145.2949782578173
Iteration: 17, Func. Count: 181, Neg. LLF: 145.29397465587232
Iteration: 18, Func. Count: 191, Neg. LLF: 145.29382975079835
Iteration: 19, Func. Count: 201, Neg. LLF: 145.2937972674176
Iteration: 20, Func. Count: 210, Neg. LLF: 145.293797267401
Optimization terminated successfully (Exit mode 0)
Current function value: 145.2937972674176
Iterations: 20
Function evaluations: 210
Gradient evaluations: 20
Iteration: 1, Func. Count: 8, Neg. LLF: 160.64524746991356
Iteration: 2, Func. Count: 17, Neg. LLF: 147.4864616698869
Iteration: 3, Func. Count: 24, Neg. LLF: 153.22962136562634
Iteration: 4, Func. Count: 32, Neg. LLF: 144.8298319651442
Iteration: 5, Func. Count: 39, Neg. LLF: 144.46924223712895
Iteration: 6, Func. Count: 46, Neg. LLF: 144.38672239301354
Iteration: 7, Func. Count: 53, Neg. LLF: 144.37879281657865
Iteration: 8, Func. Count: 60, Neg. LLF: 144.37654932281694
Iteration: 9, Func. Count: 67, Neg. LLF: 144.37609281906757
Iteration: 10, Func. Count: 74, Neg. LLF: 144.3760828480629
Iteration: 11, Func. Count: 80, Neg. LLF: 144.37608290579115
Optimization terminated successfully (Exit mode 0)
Current function value: 144.3760828480629
Iterations: 11
Function evaluations: 80
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 150.20177499523788
Iteration: 2, Func. Count: 21, Neg. LLF: 162.93784260652998
Iteration: 3, Func. Count: 31, Neg. LLF: 147.93210806205576
Iteration: 4, Func. Count: 39, Neg. LLF: 148.98811035105902
Iteration: 5, Func. Count: 48, Neg. LLF: 149.68911211133945
Iteration: 6, Func. Count: 57, Neg. LLF: 147.87470067427853
Iteration: 7, Func. Count: 65, Neg. LLF: 147.87373502754141
Iteration: 8, Func. Count: 73, Neg. LLF: 147.8716631310637
Iteration: 9, Func. Count: 81, Neg. LLF: 147.86642927531005
Iteration: 10, Func. Count: 89, Neg. LLF: 147.85364790012082
Iteration: 11, Func. Count: 97, Neg. LLF: 147.69544039908894
Iteration: 12, Func. Count: 105, Neg. LLF: 147.47773870464854
Iteration: 13, Func. Count: 113, Neg. LLF: 147.3235486172054
Iteration: 14, Func. Count: 121, Neg. LLF: 147.0804136689438
Iteration: 15, Func. Count: 129, Neg. LLF: 146.29416065141817
Iteration: 16, Func. Count: 137, Neg. LLF: 159.68278694472727
Iteration: 17, Func. Count: 146, Neg. LLF: 146.14672309506554
Iteration: 18, Func. Count: 155, Neg. LLF: 145.0912140815314
Iteration: 19, Func. Count: 163, Neg. LLF: 144.97099862855873
Iteration: 20, Func. Count: 171, Neg. LLF: 144.6326674311148
Iteration: 21, Func. Count: 179, Neg. LLF: 144.46066588628275
Iteration: 22, Func. Count: 187, Neg. LLF: 144.3926013931579
Iteration: 23, Func. Count: 195, Neg. LLF: 144.3794846214781
Iteration: 24, Func. Count: 203, Neg. LLF: 144.37747289890007
Iteration: 25, Func. Count: 211, Neg. LLF: 144.37609128618823
Iteration: 26, Func. Count: 219, Neg. LLF: 144.37608289061026
Iteration: 27, Func. Count: 226, Neg. LLF: 144.37608304117933
Optimization terminated successfully (Exit mode 0)
Current function value: 144.37608289061026
Iterations: 27
Function evaluations: 226
Gradient evaluations: 27
Iteration: 1, Func. Count: 10, Neg. LLF: 149.3026733840181
Iteration: 2, Func. Count: 23, Neg. LLF: 149.2183254476261
Iteration: 3, Func. Count: 33, Neg. LLF: 147.28013297954385
Iteration: 4, Func. Count: 42, Neg. LLF: 151.02038028110994
Iteration: 5, Func. Count: 53, Neg. LLF: 146.277874755147
Iteration: 6, Func. Count: 62, Neg. LLF: 157.95555495890142
Iteration: 7, Func. Count: 73, Neg. LLF: 144.94292737023042
Iteration: 8, Func. Count: 82, Neg. LLF: 144.86706821409354
Iteration: 9, Func. Count: 92, Neg. LLF: 144.5880099539857
Iteration: 10, Func. Count: 101, Neg. LLF: 144.46524301832633
Iteration: 11, Func. Count: 110, Neg. LLF: 144.3875264199879
Iteration: 12, Func. Count: 119, Neg. LLF: 144.38362918997123
Iteration: 13, Func. Count: 128, Neg. LLF: 144.37640673981613
Iteration: 14, Func. Count: 137, Neg. LLF: 144.37623338627714
Iteration: 15, Func. Count: 146, Neg. LLF: 144.37608348165955
Iteration: 16, Func. Count: 155, Neg. LLF: 144.37608284912938
Optimization terminated successfully (Exit mode 0)
Current function value: 144.37608284912938
Iterations: 16
Function evaluations: 155
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 155.62753224302412
Iteration: 2, Func. Count: 24, Neg. LLF: 152.37246463557435
Iteration: 3, Func. Count: 35, Neg. LLF: 147.1749848088078
Iteration: 4, Func. Count: 45, Neg. LLF: 145.9962256191057
Iteration: 5, Func. Count: 55, Neg. LLF: 149.76786178523304
Iteration: 6, Func. Count: 67, Neg. LLF: 145.21360338414502
Iteration: 7, Func. Count: 77, Neg. LLF: 144.80021714697975
Iteration: 8, Func. Count: 87, Neg. LLF: 144.50704910743752
Iteration: 9, Func. Count: 97, Neg. LLF: 144.40797141192618
Iteration: 10, Func. Count: 107, Neg. LLF: 144.38266474719288
Iteration: 11, Func. Count: 117, Neg. LLF: 144.38085149928747
Iteration: 12, Func. Count: 127, Neg. LLF: 144.37624688500637
Iteration: 13, Func. Count: 137, Neg. LLF: 144.37608420139983
Iteration: 14, Func. Count: 147, Neg. LLF: 144.37608343757114
Optimization terminated successfully (Exit mode 0)
Current function value: 144.37608343757114
Iterations: 14
Function evaluations: 147
Gradient evaluations: 14
Iteration: 1, Func. Count: 12, Neg. LLF: 155.5888992876221
Iteration: 2, Func. Count: 26, Neg. LLF: 152.15524117744835
Iteration: 3, Func. Count: 38, Neg. LLF: 149.2798383574948
Iteration: 4, Func. Count: 51, Neg. LLF: 147.52988915493603
Iteration: 5, Func. Count: 62, Neg. LLF: 147.35351771655894
Iteration: 6, Func. Count: 73, Neg. LLF: 152.96054047530987
Iteration: 7, Func. Count: 85, Neg. LLF: 146.33141403074586
Iteration: 8, Func. Count: 96, Neg. LLF: 146.63526528679537
Iteration: 9, Func. Count: 108, Neg. LLF: 146.10601652929026
Iteration: 10, Func. Count: 119, Neg. LLF: 145.96421735356452
Iteration: 11, Func. Count: 130, Neg. LLF: 145.74324008540958
Iteration: 12, Func. Count: 141, Neg. LLF: 145.55204605774702
Iteration: 13, Func. Count: 152, Neg. LLF: 145.38162562944567
Iteration: 14, Func. Count: 163, Neg. LLF: 145.3268375820358
Iteration: 15, Func. Count: 174, Neg. LLF: 145.31488833036957
Iteration: 16, Func. Count: 185, Neg. LLF: 145.3038812912256
Iteration: 17, Func. Count: 196, Neg. LLF: 145.29750935728623
Iteration: 18, Func. Count: 207, Neg. LLF: 145.29419248663348
Iteration: 19, Func. Count: 218, Neg. LLF: 145.2938263938111
Iteration: 20, Func. Count: 229, Neg. LLF: 145.29379717035377
Iteration: 21, Func. Count: 239, Neg. LLF: 145.29379717036102
Optimization terminated successfully (Exit mode 0)
Current function value: 145.29379717035377
Iterations: 21
Function evaluations: 239
Gradient evaluations: 21
Iteration: 1, Func. Count: 5, Neg. LLF: 153.14027499076343
Iteration: 2, Func. Count: 10, Neg. LLF: 149.9898532868787
Iteration: 3, Func. Count: 15, Neg. LLF: 147.72375860334895
Iteration: 4, Func. Count: 19, Neg. LLF: 147.71453658823407
Iteration: 5, Func. Count: 23, Neg. LLF: 147.71360463288948
Iteration: 6, Func. Count: 27, Neg. LLF: 147.71341645415356
Iteration: 7, Func. Count: 31, Neg. LLF: 147.71306888593705
Iteration: 8, Func. Count: 35, Neg. LLF: 147.71289884734733
Iteration: 9, Func. Count: 39, Neg. LLF: 147.71284970877394
Iteration: 10, Func. Count: 43, Neg. LLF: 147.712846213911
Iteration: 11, Func. Count: 46, Neg. LLF: 147.71284621391737
Optimization terminated successfully (Exit mode 0)
Current function value: 147.712846213911
Iterations: 11
Function evaluations: 46
Gradient evaluations: 11
Iteration: 1, Func. Count: 6, Neg. LLF: 149.37291783320651
Iteration: 2, Func. Count: 14, Neg. LLF: 172.85758142904422
Iteration: 3, Func. Count: 21, Neg. LLF: 153.89234830896248
Iteration: 4, Func. Count: 27, Neg. LLF: 148.04526527610255
Iteration: 5, Func. Count: 32, Neg. LLF: 148.0268531241321
Iteration: 6, Func. Count: 37, Neg. LLF: 147.99126131613653
Iteration: 7, Func. Count: 42, Neg. LLF: 147.97245696293638
Iteration: 8, Func. Count: 47, Neg. LLF: 147.963560751725
Iteration: 9, Func. Count: 52, Neg. LLF: 147.96261118760077
Iteration: 10, Func. Count: 57, Neg. LLF: 147.9626072588074
Iteration: 11, Func. Count: 62, Neg. LLF: 147.96260669724956
Optimization terminated successfully (Exit mode 0)
Current function value: 147.96260669724956
Iterations: 11
Function evaluations: 62
Gradient evaluations: 11
Iteration: 1, Func. Count: 7, Neg. LLF: 172.68425269422536
Iteration: 2, Func. Count: 15, Neg. LLF: 157.72238596704082
Iteration: 3, Func. Count: 22, Neg. LLF: 152.99756736545282
Iteration: 4, Func. Count: 30, Neg. LLF: 147.9943021447757
Iteration: 5, Func. Count: 37, Neg. LLF: 147.9862568814561
Iteration: 6, Func. Count: 43, Neg. LLF: 147.9856189020156
Iteration: 7, Func. Count: 49, Neg. LLF: 147.98547644883627
Iteration: 8, Func. Count: 55, Neg. LLF: 147.98470686113313
Iteration: 9, Func. Count: 61, Neg. LLF: 147.98381557181278
Iteration: 10, Func. Count: 67, Neg. LLF: 147.98356160601617
Iteration: 11, Func. Count: 73, Neg. LLF: 147.9835170214314
Iteration: 12, Func. Count: 78, Neg. LLF: 147.98351702141278
Optimization terminated successfully (Exit mode 0)
Current function value: 147.9835170214314
Iterations: 12
Function evaluations: 78
Gradient evaluations: 12
Iteration: 1, Func. Count: 8, Neg. LLF: 160.9238180539906
Iteration: 2, Func. Count: 16, Neg. LLF: 147.77576142630377
Iteration: 3, Func. Count: 24, Neg. LLF: 147.0519080538437
Iteration: 4, Func. Count: 31, Neg. LLF: 147.27211025807387
Iteration: 5, Func. Count: 39, Neg. LLF: 153.7712226737134
Iteration: 6, Func. Count: 47, Neg. LLF: 146.74242472520982
Iteration: 7, Func. Count: 54, Neg. LLF: 146.6583104124172
Iteration: 8, Func. Count: 61, Neg. LLF: 146.6524430539331
Iteration: 9, Func. Count: 68, Neg. LLF: 146.65006938302406
Iteration: 10, Func. Count: 75, Neg. LLF: 146.64865804335847
Iteration: 11, Func. Count: 82, Neg. LLF: 146.64722122181533
Iteration: 12, Func. Count: 89, Neg. LLF: 146.64708481164797
Iteration: 13, Func. Count: 97, Neg. LLF: 146.64538982995595
Iteration: 14, Func. Count: 104, Neg. LLF: 146.6453687186643
Iteration: 15, Func. Count: 110, Neg. LLF: 146.6453687186548
Optimization terminated successfully (Exit mode 0)
Current function value: 146.6453687186643
Iterations: 15
Function evaluations: 110
Gradient evaluations: 15
Iteration: 1, Func. Count: 9, Neg. LLF: 163.15344101777106
Iteration: 2, Func. Count: 18, Neg. LLF: 148.15724988141932
Iteration: 3, Func. Count: 26, Neg. LLF: 148.11424707343235
Iteration: 4, Func. Count: 34, Neg. LLF: 148.07905365435892
Iteration: 5, Func. Count: 42, Neg. LLF: 148.0476927926386
Iteration: 6, Func. Count: 50, Neg. LLF: 147.99922833033628
Iteration: 7, Func. Count: 58, Neg. LLF: 147.97403276515635
Iteration: 8, Func. Count: 66, Neg. LLF: 147.9674030088602
Iteration: 9, Func. Count: 74, Neg. LLF: 147.96015636524243
Iteration: 10, Func. Count: 82, Neg. LLF: 147.958920723433
Iteration: 11, Func. Count: 90, Neg. LLF: 147.95630679069598
Iteration: 12, Func. Count: 98, Neg. LLF: 147.9557869355584
Iteration: 13, Func. Count: 106, Neg. LLF: 147.95569289579757
Iteration: 14, Func. Count: 114, Neg. LLF: 147.96651778628393
Optimization terminated successfully (Exit mode 0)
Current function value: 147.95569284223336
Iterations: 15
Function evaluations: 117
Gradient evaluations: 14
Iteration: 1, Func. Count: 6, Neg. LLF: 160.114335076211
Iteration: 2, Func. Count: 12, Neg. LLF: 147.8881081995666
Iteration: 3, Func. Count: 18, Neg. LLF: 144.8439885242131
Iteration: 4, Func. Count: 23, Neg. LLF: 144.8931162601154
Iteration: 5, Func. Count: 29, Neg. LLF: 144.775395920583
Iteration: 6, Func. Count: 34, Neg. LLF: 144.77470724944237
Iteration: 7, Func. Count: 39, Neg. LLF: 144.77461649129629
Iteration: 8, Func. Count: 44, Neg. LLF: 144.7746060537052
Iteration: 9, Func. Count: 49, Neg. LLF: 144.77458811365614
Iteration: 10, Func. Count: 54, Neg. LLF: 144.77458647549685
Iteration: 11, Func. Count: 58, Neg. LLF: 144.77458647550307
Optimization terminated successfully (Exit mode 0)
Current function value: 144.77458647549685
Iterations: 11
Function evaluations: 58
Gradient evaluations: 11
Iteration: 1, Func. Count: 7, Neg. LLF: 179.05736655485464
Iteration: 2, Func. Count: 15, Neg. LLF: 150.04599889302716
Iteration: 3, Func. Count: 22, Neg. LLF: 148.34247635056323
Iteration: 4, Func. Count: 30, Neg. LLF: 147.88367418605205
Iteration: 5, Func. Count: 36, Neg. LLF: 147.88342416332284
Iteration: 6, Func. Count: 42, Neg. LLF: 147.88237286969684
Iteration: 7, Func. Count: 48, Neg. LLF: 147.8803825035082
Iteration: 8, Func. Count: 54, Neg. LLF: 147.87435037010314
Iteration: 9, Func. Count: 60, Neg. LLF: 147.58810737204365
Iteration: 10, Func. Count: 66, Neg. LLF: 146.93143049371415
Iteration: 11, Func. Count: 72, Neg. LLF: 154.70255013409474
Iteration: 12, Func. Count: 79, Neg. LLF: 146.33061587244205
Iteration: 13, Func. Count: 85, Neg. LLF: 145.93813476661953
Iteration: 14, Func. Count: 91, Neg. LLF: 145.5488722910544
Iteration: 15, Func. Count: 97, Neg. LLF: 145.35174439343203
Iteration: 16, Func. Count: 103, Neg. LLF: 145.26182377281154
Iteration: 17, Func. Count: 109, Neg. LLF: 144.94432952371463
Iteration: 18, Func. Count: 115, Neg. LLF: 144.81780987704266
Iteration: 19, Func. Count: 121, Neg. LLF: 144.77847059709978
Iteration: 20, Func. Count: 127, Neg. LLF: 144.77480847209085
Iteration: 21, Func. Count: 133, Neg. LLF: 144.77459788415928
Iteration: 22, Func. Count: 139, Neg. LLF: 144.77458684668983
Iteration: 23, Func. Count: 144, Neg. LLF: 144.77458692267862
Optimization terminated successfully (Exit mode 0)
Current function value: 144.77458684668983
Iterations: 23
Function evaluations: 144
Gradient evaluations: 23
Iteration: 1, Func. Count: 8, Neg. LLF: 145.17791444330413
Iteration: 2, Func. Count: 15, Neg. LLF: 150.75704759796255
Iteration: 3, Func. Count: 24, Neg. LLF: 158.96938247324758
Iteration: 4, Func. Count: 32, Neg. LLF: 144.60805491930248
Iteration: 5, Func. Count: 39, Neg. LLF: 144.49520740813057
Iteration: 6, Func. Count: 46, Neg. LLF: 144.47247806319598
Iteration: 7, Func. Count: 53, Neg. LLF: 144.41139644456362
Iteration: 8, Func. Count: 60, Neg. LLF: 144.40352657766093
Iteration: 9, Func. Count: 67, Neg. LLF: 144.57780099247114
Iteration: 10, Func. Count: 75, Neg. LLF: 144.3997693802907
Iteration: 11, Func. Count: 82, Neg. LLF: 144.3997511926027
Iteration: 12, Func. Count: 88, Neg. LLF: 144.39975119118864
Optimization terminated successfully (Exit mode 0)
Current function value: 144.3997511926027
Iterations: 12
Function evaluations: 88
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 148.69153017120266
Iteration: 2, Func. Count: 18, Neg. LLF: 147.5768336798362
Iteration: 3, Func. Count: 27, Neg. LLF: 145.02786414056354
Iteration: 4, Func. Count: 35, Neg. LLF: 154.61905011559068
Iteration: 5, Func. Count: 44, Neg. LLF: 144.57028003686776
Iteration: 6, Func. Count: 52, Neg. LLF: 144.45598945139832
Iteration: 7, Func. Count: 60, Neg. LLF: 144.43248718003056
Iteration: 8, Func. Count: 68, Neg. LLF: 144.41517098970584
Iteration: 9, Func. Count: 76, Neg. LLF: 144.40573173086312
Iteration: 10, Func. Count: 84, Neg. LLF: 144.42913924580398
Iteration: 11, Func. Count: 93, Neg. LLF: 144.40004895445082
Iteration: 12, Func. Count: 101, Neg. LLF: 144.3997760135814
Iteration: 13, Func. Count: 109, Neg. LLF: 144.39975270635998
Iteration: 14, Func. Count: 117, Neg. LLF: 144.3997509671111
Iteration: 15, Func. Count: 124, Neg. LLF: 144.39975108584738
Optimization terminated successfully (Exit mode 0)
Current function value: 144.3997509671111
Iterations: 15
Function evaluations: 124
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 151.97189600694185
Iteration: 2, Func. Count: 20, Neg. LLF: 149.49885551746652
Iteration: 3, Func. Count: 30, Neg. LLF: 147.2764026352746
Iteration: 4, Func. Count: 40, Neg. LLF: 145.96846395437225
Iteration: 5, Func. Count: 49, Neg. LLF: 150.06523393714983
Iteration: 6, Func. Count: 60, Neg. LLF: 149.7624968058702
Iteration: 7, Func. Count: 70, Neg. LLF: 145.6730992876989
Iteration: 8, Func. Count: 80, Neg. LLF: 148.28085704905644
Iteration: 9, Func. Count: 90, Neg. LLF: 144.64543131236576
Iteration: 10, Func. Count: 99, Neg. LLF: 144.54241746659116
Iteration: 11, Func. Count: 108, Neg. LLF: 144.6231196226752
Iteration: 12, Func. Count: 118, Neg. LLF: 144.55696689957014
Iteration: 13, Func. Count: 128, Neg. LLF: 144.4040945558033
Iteration: 14, Func. Count: 137, Neg. LLF: 144.40087911131653
Iteration: 15, Func. Count: 146, Neg. LLF: 144.40030166936452
Iteration: 16, Func. Count: 155, Neg. LLF: 144.3999568037176
Iteration: 17, Func. Count: 164, Neg. LLF: 144.39975347892099
Iteration: 18, Func. Count: 173, Neg. LLF: 144.3997509900091
Iteration: 19, Func. Count: 181, Neg. LLF: 144.39975108251036
Optimization terminated successfully (Exit mode 0)
Current function value: 144.3997509900091
Iterations: 19
Function evaluations: 181
Gradient evaluations: 19
Iteration: 1, Func. Count: 7, Neg. LLF: 158.13721566973413
Iteration: 2, Func. Count: 14, Neg. LLF: 149.50222053259685
Iteration: 3, Func. Count: 21, Neg. LLF: 144.86996965553035
Iteration: 4, Func. Count: 27, Neg. LLF: 144.82807020689006
Iteration: 5, Func. Count: 33, Neg. LLF: 144.7763632618896
Iteration: 6, Func. Count: 39, Neg. LLF: 144.77487396566337
Iteration: 7, Func. Count: 45, Neg. LLF: 144.7747593840812
Iteration: 8, Func. Count: 51, Neg. LLF: 144.77464978775672
Iteration: 9, Func. Count: 57, Neg. LLF: 144.77459485358395
Iteration: 10, Func. Count: 63, Neg. LLF: 144.77458674167838
Iteration: 11, Func. Count: 68, Neg. LLF: 144.77458678205758
Optimization terminated successfully (Exit mode 0)
Current function value: 144.77458674167838
Iterations: 11
Function evaluations: 68
Gradient evaluations: 11
Iteration: 1, Func. Count: 8, Neg. LLF: 150.51658130386542
Iteration: 2, Func. Count: 18, Neg. LLF: 152.07178785031732
Iteration: 3, Func. Count: 27, Neg. LLF: 161.46047430916872
Iteration: 4, Func. Count: 36, Neg. LLF: 147.88537350853795
Iteration: 5, Func. Count: 43, Neg. LLF: 147.884480597234
Iteration: 6, Func. Count: 50, Neg. LLF: 147.88398053287654
Iteration: 7, Func. Count: 57, Neg. LLF: 147.88324068538452
Iteration: 8, Func. Count: 64, Neg. LLF: 147.8821019070141
Iteration: 9, Func. Count: 71, Neg. LLF: 147.8805730355543
Iteration: 10, Func. Count: 78, Neg. LLF: 147.8773230210265
Iteration: 11, Func. Count: 85, Neg. LLF: 147.66783486415557
Iteration: 12, Func. Count: 92, Neg. LLF: 146.98033950116073
Iteration: 13, Func. Count: 99, Neg. LLF: 146.25375379045627
Iteration: 14, Func. Count: 106, Neg. LLF: 145.81151137889498
Iteration: 15, Func. Count: 113, Neg. LLF: 145.48181346507207
Iteration: 16, Func. Count: 120, Neg. LLF: 145.85046244223486
Iteration: 17, Func. Count: 129, Neg. LLF: 145.4286811726227
Iteration: 18, Func. Count: 136, Neg. LLF: 145.40937586841457
Iteration: 19, Func. Count: 143, Neg. LLF: 145.28155703201267
Iteration: 20, Func. Count: 150, Neg. LLF: 145.0748975607103
Iteration: 21, Func. Count: 157, Neg. LLF: 144.9898891406579
Iteration: 22, Func. Count: 164, Neg. LLF: 144.89254280122776
Iteration: 23, Func. Count: 171, Neg. LLF: 144.86392584258257
Iteration: 24, Func. Count: 178, Neg. LLF: 144.85776438850914
Iteration: 25, Func. Count: 185, Neg. LLF: 144.8274558934728
Iteration: 26, Func. Count: 192, Neg. LLF: 144.7996879157819
Iteration: 27, Func. Count: 199, Neg. LLF: 144.78105619427902
Iteration: 28, Func. Count: 206, Neg. LLF: 144.77521874959575
Iteration: 29, Func. Count: 213, Neg. LLF: 144.77460319788452
Iteration: 30, Func. Count: 220, Neg. LLF: 144.77458730131275
Iteration: 31, Func. Count: 227, Neg. LLF: 144.7745863943993
Optimization terminated successfully (Exit mode 0)
Current function value: 144.7745863943993
Iterations: 31
Function evaluations: 227
Gradient evaluations: 31
Iteration: 1, Func. Count: 9, Neg. LLF: 147.93162867054414
Iteration: 2, Func. Count: 18, Neg. LLF: 147.5249769988547
Iteration: 3, Func. Count: 27, Neg. LLF: 147.03186905265648
Iteration: 4, Func. Count: 36, Neg. LLF: 146.6685049364605
Iteration: 5, Func. Count: 45, Neg. LLF: 144.96238607261103
Iteration: 6, Func. Count: 53, Neg. LLF: 144.8290188067646
Iteration: 7, Func. Count: 61, Neg. LLF: 144.9525176070175
Iteration: 8, Func. Count: 70, Neg. LLF: 144.47286686715728
Iteration: 9, Func. Count: 78, Neg. LLF: 144.50600761730368
Iteration: 10, Func. Count: 87, Neg. LLF: 144.40262144504584
Iteration: 11, Func. Count: 95, Neg. LLF: 144.4002001655549
Iteration: 12, Func. Count: 103, Neg. LLF: 144.3997757371348
Iteration: 13, Func. Count: 111, Neg. LLF: 144.39975182250683
Iteration: 14, Func. Count: 119, Neg. LLF: 144.39975096555975
Optimization terminated successfully (Exit mode 0)
Current function value: 144.39975096555975
Iterations: 14
Function evaluations: 119
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 160.96463355898314
Iteration: 2, Func. Count: 20, Neg. LLF: 147.75038163326386
Iteration: 3, Func. Count: 30, Neg. LLF: 148.13502760174816
Iteration: 4, Func. Count: 40, Neg. LLF: 147.82120579298783
Iteration: 5, Func. Count: 50, Neg. LLF: 147.03313969224743
Iteration: 6, Func. Count: 60, Neg. LLF: 152.37250406607868
Iteration: 7, Func. Count: 70, Neg. LLF: 146.36150966662439
Iteration: 8, Func. Count: 80, Neg. LLF: 145.72841867945633
Iteration: 9, Func. Count: 89, Neg. LLF: 145.80395745635468
Iteration: 10, Func. Count: 99, Neg. LLF: 145.25121973928563
Iteration: 11, Func. Count: 108, Neg. LLF: 144.644969940158
Iteration: 12, Func. Count: 117, Neg. LLF: 144.439927134663
Iteration: 13, Func. Count: 126, Neg. LLF: 144.407284262873
Iteration: 14, Func. Count: 135, Neg. LLF: 144.4020887440573
Iteration: 15, Func. Count: 144, Neg. LLF: 144.4002414071075
Iteration: 16, Func. Count: 153, Neg. LLF: 144.39984372151255
Iteration: 17, Func. Count: 162, Neg. LLF: 144.3997607064788
Iteration: 18, Func. Count: 171, Neg. LLF: 144.39975132209804
Iteration: 19, Func. Count: 179, Neg. LLF: 144.3997514409017
Optimization terminated successfully (Exit mode 0)
Current function value: 144.39975132209804
Iterations: 19
Function evaluations: 179
Gradient evaluations: 19
Iteration: 1, Func. Count: 11, Neg. LLF: 147.04602479396894
Iteration: 2, Func. Count: 21, Neg. LLF: 148.29804164232365
Iteration: 3, Func. Count: 32, Neg. LLF: 145.6882762482105
Iteration: 4, Func. Count: 42, Neg. LLF: 147.28923008601544
Iteration: 5, Func. Count: 54, Neg. LLF: 147.45251533878724
Iteration: 6, Func. Count: 66, Neg. LLF: 144.89657732040126
Iteration: 7, Func. Count: 76, Neg. LLF: 152.43252093995747
Iteration: 8, Func. Count: 87, Neg. LLF: 144.4085817255267
Iteration: 9, Func. Count: 97, Neg. LLF: 144.44964187759751
Iteration: 10, Func. Count: 108, Neg. LLF: 144.41678484499943
Iteration: 11, Func. Count: 119, Neg. LLF: 144.40080464441277
Iteration: 12, Func. Count: 129, Neg. LLF: 144.40031858945576
Iteration: 13, Func. Count: 139, Neg. LLF: 144.39989702267397
Iteration: 14, Func. Count: 149, Neg. LLF: 144.3997629491697
Iteration: 15, Func. Count: 159, Neg. LLF: 144.39975135891788
Iteration: 16, Func. Count: 168, Neg. LLF: 144.39975145126516
Optimization terminated successfully (Exit mode 0)
Current function value: 144.39975135891788
Iterations: 16
Function evaluations: 168
Gradient evaluations: 16
Iteration: 1, Func. Count: 8, Neg. LLF: 167.92336692490528
Iteration: 2, Func. Count: 17, Neg. LLF: 147.93023327116597
Iteration: 3, Func. Count: 25, Neg. LLF: 149.0050686311147
Iteration: 4, Func. Count: 33, Neg. LLF: 144.61399010872753
Iteration: 5, Func. Count: 40, Neg. LLF: 145.05942917286072
Iteration: 6, Func. Count: 48, Neg. LLF: 144.4342253366446
Iteration: 7, Func. Count: 55, Neg. LLF: 144.3852002752995
Iteration: 8, Func. Count: 62, Neg. LLF: 144.37934489160293
Iteration: 9, Func. Count: 69, Neg. LLF: 144.374227650698
Iteration: 10, Func. Count: 76, Neg. LLF: 144.36948381803813
Iteration: 11, Func. Count: 83, Neg. LLF: 144.36857270662335
Iteration: 12, Func. Count: 90, Neg. LLF: 144.36848607839278
Iteration: 13, Func. Count: 97, Neg. LLF: 144.36848052821853
Iteration: 14, Func. Count: 103, Neg. LLF: 144.36848052719617
Optimization terminated successfully (Exit mode 0)
Current function value: 144.36848052821853
Iterations: 14
Function evaluations: 103
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 148.42283293202476
Iteration: 2, Func. Count: 21, Neg. LLF: 159.40696656097316
Iteration: 3, Func. Count: 31, Neg. LLF: 147.93724814259758
Iteration: 4, Func. Count: 40, Neg. LLF: 147.9463783288554
Iteration: 5, Func. Count: 49, Neg. LLF: 147.95760309734385
Iteration: 6, Func. Count: 58, Neg. LLF: 147.87557046380968
Iteration: 7, Func. Count: 66, Neg. LLF: 147.87453804971057
Iteration: 8, Func. Count: 74, Neg. LLF: 147.87274815461626
Iteration: 9, Func. Count: 82, Neg. LLF: 147.86870063254062
Iteration: 10, Func. Count: 90, Neg. LLF: 147.8549386377905
Iteration: 11, Func. Count: 98, Neg. LLF: 147.11065967220628
Iteration: 12, Func. Count: 106, Neg. LLF: 146.920634751681
Iteration: 13, Func. Count: 114, Neg. LLF: 184.63666057377608
Iteration: 14, Func. Count: 123, Neg. LLF: 146.53068288522826
Iteration: 15, Func. Count: 131, Neg. LLF: 146.03686014302002
Iteration: 16, Func. Count: 139, Neg. LLF: 145.60168256424225
Iteration: 17, Func. Count: 147, Neg. LLF: 145.00994691095588
Iteration: 18, Func. Count: 155, Neg. LLF: 144.39037578935432
Iteration: 19, Func. Count: 163, Neg. LLF: 144.37870734021294
Iteration: 20, Func. Count: 171, Neg. LLF: 144.36965253005826
Iteration: 21, Func. Count: 179, Neg. LLF: 144.36926522072093
Iteration: 22, Func. Count: 187, Neg. LLF: 144.36900558272566
Iteration: 23, Func. Count: 195, Neg. LLF: 144.3687283213606
Iteration: 24, Func. Count: 203, Neg. LLF: 144.3685719551521
Iteration: 25, Func. Count: 211, Neg. LLF: 144.3685135935206
Iteration: 26, Func. Count: 219, Neg. LLF: 144.36849278133684
Iteration: 27, Func. Count: 227, Neg. LLF: 144.3684825826894
Iteration: 28, Func. Count: 235, Neg. LLF: 144.36848032147083
Iteration: 29, Func. Count: 242, Neg. LLF: 144.3684804767115
Optimization terminated successfully (Exit mode 0)
Current function value: 144.36848032147083
Iterations: 29
Function evaluations: 242
Gradient evaluations: 29
Iteration: 1, Func. Count: 10, Neg. LLF: 151.73077178519316
Iteration: 2, Func. Count: 22, Neg. LLF: 152.61354071468546
Iteration: 3, Func. Count: 32, Neg. LLF: 147.0686460669668
Iteration: 4, Func. Count: 41, Neg. LLF: 146.75581270812205
Iteration: 5, Func. Count: 50, Neg. LLF: 145.6110111743471
Iteration: 6, Func. Count: 59, Neg. LLF: 145.1687294266028
Iteration: 7, Func. Count: 68, Neg. LLF: 144.81179784449887
Iteration: 8, Func. Count: 77, Neg. LLF: 144.53761011444598
Iteration: 9, Func. Count: 86, Neg. LLF: 144.41812454776036
Iteration: 10, Func. Count: 95, Neg. LLF: 144.38749143679155
Iteration: 11, Func. Count: 104, Neg. LLF: 144.3825082707615
Iteration: 12, Func. Count: 113, Neg. LLF: 144.37736595117752
Iteration: 13, Func. Count: 122, Neg. LLF: 144.3685577692334
Iteration: 14, Func. Count: 131, Neg. LLF: 144.3684811155316
Iteration: 15, Func. Count: 140, Neg. LLF: 144.36848018222676
Optimization terminated successfully (Exit mode 0)
Current function value: 144.36848018222676
Iterations: 15
Function evaluations: 140
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 156.11893041092677
Iteration: 2, Func. Count: 24, Neg. LLF: 152.47836349328853
Iteration: 3, Func. Count: 35, Neg. LLF: 147.76755450195498
Iteration: 4, Func. Count: 46, Neg. LLF: 147.3780944098983
Iteration: 5, Func. Count: 56, Neg. LLF: 146.91789949865307
Iteration: 6, Func. Count: 66, Neg. LLF: 148.09264074849662
Iteration: 7, Func. Count: 78, Neg. LLF: 158.1383106966393
Iteration: 8, Func. Count: 90, Neg. LLF: 145.17090551103695
Iteration: 9, Func. Count: 100, Neg. LLF: 144.75402693220727
Iteration: 10, Func. Count: 110, Neg. LLF: 144.74716080314752
Iteration: 11, Func. Count: 121, Neg. LLF: 144.47284448215052
Iteration: 12, Func. Count: 131, Neg. LLF: 144.39759737337252
Iteration: 13, Func. Count: 141, Neg. LLF: 144.37602099644764
Iteration: 14, Func. Count: 151, Neg. LLF: 144.37315513997243
Iteration: 15, Func. Count: 161, Neg. LLF: 144.37024130731464
Iteration: 16, Func. Count: 171, Neg. LLF: 144.3691062258814
Iteration: 17, Func. Count: 181, Neg. LLF: 144.36886279859678
Iteration: 18, Func. Count: 191, Neg. LLF: 144.3685512970624
Iteration: 19, Func. Count: 201, Neg. LLF: 144.368488588162
Iteration: 20, Func. Count: 211, Neg. LLF: 144.3684803974889
Iteration: 21, Func. Count: 220, Neg. LLF: 144.3684805191466
Optimization terminated successfully (Exit mode 0)
Current function value: 144.3684803974889
Iterations: 21
Function evaluations: 220
Gradient evaluations: 21
Iteration: 1, Func. Count: 12, Neg. LLF: 156.1658040425988
Iteration: 2, Func. Count: 26, Neg. LLF: 152.3297064829296
Iteration: 3, Func. Count: 38, Neg. LLF: 147.40090418179116
Iteration: 4, Func. Count: 49, Neg. LLF: 149.98788873691802
Iteration: 5, Func. Count: 61, Neg. LLF: 146.79882078310047
Iteration: 6, Func. Count: 77, Neg. LLF: 195.85977852762153
Iteration: 7, Func. Count: 89, Neg. LLF: 146.4158195460089
Iteration: 8, Func. Count: 100, Neg. LLF: 146.16407852727076
Iteration: 9, Func. Count: 111, Neg. LLF: 146.00742743998853
Iteration: 10, Func. Count: 122, Neg. LLF: 145.7484569177232
Iteration: 11, Func. Count: 133, Neg. LLF: 145.54490689664786
Iteration: 12, Func. Count: 144, Neg. LLF: 145.5030365657022
Iteration: 13, Func. Count: 155, Neg. LLF: 145.32563184086297
Iteration: 14, Func. Count: 166, Neg. LLF: 145.305442670715
Iteration: 15, Func. Count: 177, Neg. LLF: 145.29753979480768
Iteration: 16, Func. Count: 188, Neg. LLF: 145.2947636452754
Iteration: 17, Func. Count: 199, Neg. LLF: 145.2939136585133
Iteration: 18, Func. Count: 210, Neg. LLF: 145.2938010878816
Iteration: 19, Func. Count: 221, Neg. LLF: 145.29379731418658
Iteration: 20, Func. Count: 231, Neg. LLF: 145.29379731413087
Optimization terminated successfully (Exit mode 0)
Current function value: 145.29379731418658
Iterations: 20
Function evaluations: 231
Gradient evaluations: 20
Iteration: 1, Func. Count: 9, Neg. LLF: 168.66940101932536
Iteration: 2, Func. Count: 19, Neg. LLF: 149.08793990037148
Iteration: 3, Func. Count: 28, Neg. LLF: 149.69431112915134
Iteration: 4, Func. Count: 37, Neg. LLF: 144.66072183424745
Iteration: 5, Func. Count: 45, Neg. LLF: 145.0811464403344
Iteration: 6, Func. Count: 54, Neg. LLF: 144.43081153152465
Iteration: 7, Func. Count: 62, Neg. LLF: 144.38136174565892
Iteration: 8, Func. Count: 70, Neg. LLF: 144.37630675606468
Iteration: 9, Func. Count: 78, Neg. LLF: 144.37205927201094
Iteration: 10, Func. Count: 86, Neg. LLF: 144.3689003425676
Iteration: 11, Func. Count: 94, Neg. LLF: 144.3686613356038
Iteration: 12, Func. Count: 102, Neg. LLF: 144.36848235007008
Iteration: 13, Func. Count: 110, Neg. LLF: 144.36848014413977
Iteration: 14, Func. Count: 117, Neg. LLF: 144.36848021083688
Optimization terminated successfully (Exit mode 0)
Current function value: 144.36848014413977
Iterations: 14
Function evaluations: 117
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 148.69380631640496
Iteration: 2, Func. Count: 23, Neg. LLF: 162.0835137807411
Iteration: 3, Func. Count: 34, Neg. LLF: 147.93143929888453
Iteration: 4, Func. Count: 43, Neg. LLF: 148.7455684556182
Iteration: 5, Func. Count: 53, Neg. LLF: 149.68757329963947
Iteration: 6, Func. Count: 63, Neg. LLF: 147.87501676865415
Iteration: 7, Func. Count: 72, Neg. LLF: 147.87283680664117
Iteration: 8, Func. Count: 81, Neg. LLF: 147.86956819477123
Iteration: 9, Func. Count: 90, Neg. LLF: 147.85973460775014
Iteration: 10, Func. Count: 99, Neg. LLF: 147.6492598584965
Iteration: 11, Func. Count: 108, Neg. LLF: 147.02174193792462
Iteration: 12, Func. Count: 117, Neg. LLF: 146.9400126115493
Iteration: 13, Func. Count: 126, Neg. LLF: 146.8463346719212
Iteration: 14, Func. Count: 135, Neg. LLF: 146.99976442298367
Iteration: 15, Func. Count: 145, Neg. LLF: 146.12658657702218
Iteration: 16, Func. Count: 154, Neg. LLF: 145.3440452538076
Iteration: 17, Func. Count: 163, Neg. LLF: 145.26612048819393
Iteration: 18, Func. Count: 172, Neg. LLF: 145.23202172446267
Iteration: 19, Func. Count: 181, Neg. LLF: 145.14964939209793
Iteration: 20, Func. Count: 190, Neg. LLF: 144.98736402265823
Iteration: 21, Func. Count: 199, Neg. LLF: 144.90554613329547
Iteration: 22, Func. Count: 208, Neg. LLF: 144.7829079905859
Iteration: 23, Func. Count: 217, Neg. LLF: 144.6405478486821
Iteration: 24, Func. Count: 226, Neg. LLF: 144.56091150725644
Iteration: 25, Func. Count: 235, Neg. LLF: 144.50235084479655
Iteration: 26, Func. Count: 244, Neg. LLF: 144.45921168133196
Iteration: 27, Func. Count: 253, Neg. LLF: 144.40053118767577
Iteration: 28, Func. Count: 262, Neg. LLF: 144.37729902264118
Iteration: 29, Func. Count: 271, Neg. LLF: 144.3693335374498
Iteration: 30, Func. Count: 280, Neg. LLF: 144.36850781358993
Iteration: 31, Func. Count: 289, Neg. LLF: 144.36848123462596
Iteration: 32, Func. Count: 298, Neg. LLF: 144.36848018686612
Iteration: 33, Func. Count: 306, Neg. LLF: 144.36848034211116
Optimization terminated successfully (Exit mode 0)
Current function value: 144.36848018686612
Iterations: 33
Function evaluations: 306
Gradient evaluations: 33
Iteration: 1, Func. Count: 11, Neg. LLF: 150.20688707754377
Iteration: 2, Func. Count: 24, Neg. LLF: 148.8413568432177
Iteration: 3, Func. Count: 35, Neg. LLF: 146.9593913552321
Iteration: 4, Func. Count: 45, Neg. LLF: 149.83170890687626
Iteration: 5, Func. Count: 56, Neg. LLF: 146.65588953447798
Iteration: 6, Func. Count: 66, Neg. LLF: 146.48937786557102
Iteration: 7, Func. Count: 76, Neg. LLF: 145.75814957166338
Iteration: 8, Func. Count: 86, Neg. LLF: 145.25651182241006
Iteration: 9, Func. Count: 96, Neg. LLF: 145.06072980716658
Iteration: 10, Func. Count: 106, Neg. LLF: 144.89447541177609
Iteration: 11, Func. Count: 116, Neg. LLF: 144.75221035726182
Iteration: 12, Func. Count: 126, Neg. LLF: 144.61295163450438
Iteration: 13, Func. Count: 136, Neg. LLF: 144.49649529515293
Iteration: 14, Func. Count: 146, Neg. LLF: 144.37701632429167
Iteration: 15, Func. Count: 156, Neg. LLF: 144.40647994522683
Iteration: 16, Func. Count: 167, Neg. LLF: 144.3687591580743
Iteration: 17, Func. Count: 177, Neg. LLF: 144.36848678318785
Iteration: 18, Func. Count: 187, Neg. LLF: 144.36848053749713
Iteration: 19, Func. Count: 196, Neg. LLF: 144.36848054284494
Optimization terminated successfully (Exit mode 0)
Current function value: 144.36848053749713
Iterations: 19
Function evaluations: 196
Gradient evaluations: 19
Iteration: 1, Func. Count: 12, Neg. LLF: 156.6590833513426
Iteration: 2, Func. Count: 26, Neg. LLF: 152.60353791521118
Iteration: 3, Func. Count: 38, Neg. LLF: 149.6205349269727
Iteration: 4, Func. Count: 50, Neg. LLF: 147.12318279689083
Iteration: 5, Func. Count: 61, Neg. LLF: 146.72954846027363
Iteration: 6, Func. Count: 72, Neg. LLF: 153.84096855798927
Iteration: 7, Func. Count: 85, Neg. LLF: 146.6581568522757
Iteration: 8, Func. Count: 97, Neg. LLF: 144.89926797100506
Iteration: 9, Func. Count: 108, Neg. LLF: 144.48247365210676
Iteration: 10, Func. Count: 119, Neg. LLF: 144.42944274207565
Iteration: 11, Func. Count: 130, Neg. LLF: 144.40340692545524
Iteration: 12, Func. Count: 141, Neg. LLF: 144.3897823539727
Iteration: 13, Func. Count: 152, Neg. LLF: 144.37701439437865
Iteration: 14, Func. Count: 163, Neg. LLF: 144.37536266043637
Iteration: 15, Func. Count: 174, Neg. LLF: 144.37245487770875
Iteration: 16, Func. Count: 185, Neg. LLF: 144.3704006646857
Iteration: 17, Func. Count: 196, Neg. LLF: 144.3686431873622
Iteration: 18, Func. Count: 207, Neg. LLF: 144.36856222201502
Iteration: 19, Func. Count: 218, Neg. LLF: 144.36850891832137
Iteration: 20, Func. Count: 229, Neg. LLF: 144.36849389085566
Iteration: 21, Func. Count: 240, Neg. LLF: 144.36848228983132
Iteration: 22, Func. Count: 251, Neg. LLF: 144.36848030566765
Iteration: 23, Func. Count: 261, Neg. LLF: 144.36848042729906
Optimization terminated successfully (Exit mode 0)
Current function value: 144.36848030566765
Iterations: 23
Function evaluations: 261
Gradient evaluations: 23
Iteration: 1, Func. Count: 13, Neg. LLF: 155.80364330656897
Iteration: 2, Func. Count: 28, Neg. LLF: 152.17986156012594
Iteration: 3, Func. Count: 41, Neg. LLF: 148.4629476036129
Iteration: 4, Func. Count: 55, Neg. LLF: 149.17470344589833
Iteration: 5, Func. Count: 68, Neg. LLF: 146.73732304319677
Iteration: 6, Func. Count: 80, Neg. LLF: 147.74538874999
Iteration: 7, Func. Count: 94, Neg. LLF: 146.44633983319596
Iteration: 8, Func. Count: 106, Neg. LLF: 146.23074496571112
Iteration: 9, Func. Count: 118, Neg. LLF: 146.12441549107504
Iteration: 10, Func. Count: 130, Neg. LLF: 145.9366149564542
Iteration: 11, Func. Count: 142, Neg. LLF: 145.7901643650183
Iteration: 12, Func. Count: 154, Neg. LLF: 145.55145138354493
Iteration: 13, Func. Count: 166, Neg. LLF: 145.46687927655321
Iteration: 14, Func. Count: 178, Neg. LLF: 145.4206012633486
Iteration: 15, Func. Count: 190, Neg. LLF: 145.37313319682985
Iteration: 16, Func. Count: 202, Neg. LLF: 145.31967525990805
Iteration: 17, Func. Count: 214, Neg. LLF: 145.30063051404449
Iteration: 18, Func. Count: 226, Neg. LLF: 145.29488385694748
Iteration: 19, Func. Count: 238, Neg. LLF: 145.2939643126239
Iteration: 20, Func. Count: 250, Neg. LLF: 145.29380354153585
Iteration: 21, Func. Count: 262, Neg. LLF: 145.293798462944
Iteration: 22, Func. Count: 274, Neg. LLF: 145.30721715971669
Optimization terminated successfully (Exit mode 0)
Current function value: 145.29379836821352
Iterations: 23
Function evaluations: 277
Gradient evaluations: 22
Iteration: 1, Func. Count: 6, Neg. LLF: 148.35488151835287
Iteration: 2, Func. Count: 11, Neg. LLF: 151.03128054761606
Iteration: 3, Func. Count: 17, Neg. LLF: 147.74858526035405
Iteration: 4, Func. Count: 22, Neg. LLF: 147.73796107773757
Iteration: 5, Func. Count: 27, Neg. LLF: 147.72720313274877
Iteration: 6, Func. Count: 32, Neg. LLF: 147.71415001989988
Iteration: 7, Func. Count: 37, Neg. LLF: 147.71296462133455
Iteration: 8, Func. Count: 42, Neg. LLF: 147.71284628314024
Iteration: 9, Func. Count: 46, Neg. LLF: 147.71284630520964
Optimization terminated successfully (Exit mode 0)
Current function value: 147.71284628314024
Iterations: 9
Function evaluations: 46
Gradient evaluations: 9
Iteration: 1, Func. Count: 7, Neg. LLF: 177.09155337630463
Iteration: 2, Func. Count: 14, Neg. LLF: 151.5132095552139
Iteration: 3, Func. Count: 22, Neg. LLF: 148.8314015254551
Iteration: 4, Func. Count: 29, Neg. LLF: 147.82145061650183
Iteration: 5, Func. Count: 35, Neg. LLF: 147.971529237363
Iteration: 6, Func. Count: 43, Neg. LLF: 147.80746629107315
Iteration: 7, Func. Count: 49, Neg. LLF: 147.78571407840437
Iteration: 8, Func. Count: 55, Neg. LLF: 147.7667334875634
Iteration: 9, Func. Count: 61, Neg. LLF: 147.75746675393802
Iteration: 10, Func. Count: 67, Neg. LLF: 147.75659479525706
Iteration: 11, Func. Count: 73, Neg. LLF: 147.7565702036164
Iteration: 12, Func. Count: 78, Neg. LLF: 147.75657020358003
Optimization terminated successfully (Exit mode 0)
Current function value: 147.7565702036164
Iterations: 12
Function evaluations: 78
Gradient evaluations: 12
Iteration: 1, Func. Count: 8, Neg. LLF: 152.5433697289848
Iteration: 2, Func. Count: 17, Neg. LLF: 153.72905391591024
Iteration: 3, Func. Count: 26, Neg. LLF: 148.82223053129007
Iteration: 4, Func. Count: 34, Neg. LLF: 147.97290085420786
Iteration: 5, Func. Count: 42, Neg. LLF: 147.91770886165642
Iteration: 6, Func. Count: 49, Neg. LLF: 147.9208890539471
Iteration: 7, Func. Count: 57, Neg. LLF: 147.7623361463067
Iteration: 8, Func. Count: 64, Neg. LLF: 147.9513454107084
Iteration: 9, Func. Count: 72, Neg. LLF: 147.68420997863132
Iteration: 10, Func. Count: 79, Neg. LLF: 147.67458955820217
Iteration: 11, Func. Count: 86, Neg. LLF: 147.67335955648508
Iteration: 12, Func. Count: 93, Neg. LLF: 147.67271887648815
Iteration: 13, Func. Count: 100, Neg. LLF: 147.6725297760668
Iteration: 14, Func. Count: 107, Neg. LLF: 147.67200044527533
Iteration: 15, Func. Count: 114, Neg. LLF: 147.67172171009477
Iteration: 16, Func. Count: 121, Neg. LLF: 147.6715635477154
Iteration: 17, Func. Count: 128, Neg. LLF: 147.67151940954045
Iteration: 18, Func. Count: 135, Neg. LLF: 147.6715102626642
Iteration: 19, Func. Count: 142, Neg. LLF: 147.67150939740085
Optimization terminated successfully (Exit mode 0)
Current function value: 147.67150939740085
Iterations: 19
Function evaluations: 142
Gradient evaluations: 19
Iteration: 1, Func. Count: 9, Neg. LLF: 150.4164539120556
Iteration: 2, Func. Count: 18, Neg. LLF: 147.2972466505704
Iteration: 3, Func. Count: 26, Neg. LLF: 151.13626537645948
Iteration: 4, Func. Count: 35, Neg. LLF: 168.61994699346099
Iteration: 5, Func. Count: 44, Neg. LLF: 157.41195462619896
Iteration: 6, Func. Count: 54, Neg. LLF: 146.78653209575918
Iteration: 7, Func. Count: 63, Neg. LLF: 146.66841522285878
Iteration: 8, Func. Count: 71, Neg. LLF: 146.64829004566081
Iteration: 9, Func. Count: 79, Neg. LLF: 146.63945769270904
Iteration: 10, Func. Count: 87, Neg. LLF: 146.63692868862984
Iteration: 11, Func. Count: 95, Neg. LLF: 146.63227104914856
Iteration: 12, Func. Count: 103, Neg. LLF: 146.63007065971544
Iteration: 13, Func. Count: 111, Neg. LLF: 146.62979452341588
Iteration: 14, Func. Count: 119, Neg. LLF: 146.62977182735273
Iteration: 15, Func. Count: 126, Neg. LLF: 146.62977182736938
Optimization terminated successfully (Exit mode 0)
Current function value: 146.62977182735273
Iterations: 15
Function evaluations: 126
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 163.43537062585685
Iteration: 2, Func. Count: 22, Neg. LLF: 154.1000516987798
Iteration: 3, Func. Count: 32, Neg. LLF: 148.09048601339208
Iteration: 4, Func. Count: 41, Neg. LLF: 147.98481533621947
Iteration: 5, Func. Count: 50, Neg. LLF: 147.91598018988716
Iteration: 6, Func. Count: 59, Neg. LLF: 147.9091623050447
Iteration: 7, Func. Count: 68, Neg. LLF: 147.90743278237719
Iteration: 8, Func. Count: 77, Neg. LLF: 147.9064152781211
Iteration: 9, Func. Count: 86, Neg. LLF: 147.90328584806085
Iteration: 10, Func. Count: 95, Neg. LLF: 147.89461736413426
Iteration: 11, Func. Count: 104, Neg. LLF: 147.88606566612464
Iteration: 12, Func. Count: 113, Neg. LLF: 147.88151804493137
Iteration: 13, Func. Count: 122, Neg. LLF: 147.88070574845574
Iteration: 14, Func. Count: 131, Neg. LLF: 147.88070051237324
Iteration: 15, Func. Count: 139, Neg. LLF: 147.8807005124657
Optimization terminated successfully (Exit mode 0)
Current function value: 147.88070051237324
Iterations: 15
Function evaluations: 139
Gradient evaluations: 15
Iteration: 1, Func. Count: 7, Neg. LLF: 154.46199635751472
Iteration: 2, Func. Count: 14, Neg. LLF: 150.36757376443924
Iteration: 3, Func. Count: 21, Neg. LLF: 144.86300942095295
Iteration: 4, Func. Count: 27, Neg. LLF: 144.82874991852918
Iteration: 5, Func. Count: 33, Neg. LLF: 144.777966042492
Iteration: 6, Func. Count: 39, Neg. LLF: 144.7759067359473
Iteration: 7, Func. Count: 45, Neg. LLF: 144.77480107491343
Iteration: 8, Func. Count: 51, Neg. LLF: 144.7747296029076
Iteration: 9, Func. Count: 57, Neg. LLF: 144.77459300044995
Iteration: 10, Func. Count: 63, Neg. LLF: 144.774586579234
Iteration: 11, Func. Count: 68, Neg. LLF: 144.7745865792321
Optimization terminated successfully (Exit mode 0)
Current function value: 144.774586579234
Iterations: 11
Function evaluations: 68
Gradient evaluations: 11
Iteration: 1, Func. Count: 8, Neg. LLF: 150.01057367423297
Iteration: 2, Func. Count: 17, Neg. LLF: 175.9394076938145
Iteration: 3, Func. Count: 26, Neg. LLF: 149.3927726543829
Iteration: 4, Func. Count: 34, Neg. LLF: 147.8289232146833
Iteration: 5, Func. Count: 41, Neg. LLF: 147.8816031634553
Iteration: 6, Func. Count: 49, Neg. LLF: 147.83512868869198
Iteration: 7, Func. Count: 57, Neg. LLF: 147.80165159858785
Iteration: 8, Func. Count: 64, Neg. LLF: 147.77327994734125
Iteration: 9, Func. Count: 71, Neg. LLF: 147.7587661077108
Iteration: 10, Func. Count: 78, Neg. LLF: 147.75564064476322
Iteration: 11, Func. Count: 85, Neg. LLF: 147.75544881692
Iteration: 12, Func. Count: 92, Neg. LLF: 147.75541202574945
Iteration: 13, Func. Count: 99, Neg. LLF: 147.755409916302
Iteration: 14, Func. Count: 105, Neg. LLF: 147.7554099162936
Optimization terminated successfully (Exit mode 0)
Current function value: 147.755409916302
Iterations: 14
Function evaluations: 105
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 145.02227796633508
Iteration: 2, Func. Count: 17, Neg. LLF: 148.76470585112054
Iteration: 3, Func. Count: 27, Neg. LLF: 157.51675410572332
Iteration: 4, Func. Count: 36, Neg. LLF: 144.57749731250044
Iteration: 5, Func. Count: 44, Neg. LLF: 144.48999654765993
Iteration: 6, Func. Count: 52, Neg. LLF: 144.46796982675605
Iteration: 7, Func. Count: 60, Neg. LLF: 144.40699979263613
Iteration: 8, Func. Count: 68, Neg. LLF: 144.59683985360599
Iteration: 9, Func. Count: 77, Neg. LLF: 144.40087159926617
Iteration: 10, Func. Count: 85, Neg. LLF: 144.39976914732833
Iteration: 11, Func. Count: 93, Neg. LLF: 144.3997513610676
Iteration: 12, Func. Count: 100, Neg. LLF: 144.3997513597472
Optimization terminated successfully (Exit mode 0)
Current function value: 144.3997513610676
Iterations: 12
Function evaluations: 100
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 148.1789431562
Iteration: 2, Func. Count: 20, Neg. LLF: 147.67122181381146
Iteration: 3, Func. Count: 30, Neg. LLF: 145.08479890840954
Iteration: 4, Func. Count: 39, Neg. LLF: 161.93725193945494
Iteration: 5, Func. Count: 49, Neg. LLF: 144.5560936605265
Iteration: 6, Func. Count: 58, Neg. LLF: 144.4432365115572
Iteration: 7, Func. Count: 67, Neg. LLF: 144.4277769931243
Iteration: 8, Func. Count: 76, Neg. LLF: 144.41200559837017
Iteration: 9, Func. Count: 85, Neg. LLF: 144.40507929611167
Iteration: 10, Func. Count: 94, Neg. LLF: 144.41280218177107
Iteration: 11, Func. Count: 104, Neg. LLF: 144.4006853824071
Iteration: 12, Func. Count: 114, Neg. LLF: 144.39978839317018
Iteration: 13, Func. Count: 123, Neg. LLF: 144.3997510702261
Iteration: 14, Func. Count: 131, Neg. LLF: 144.39975118897073
Optimization terminated successfully (Exit mode 0)
Current function value: 144.3997510702261
Iterations: 14
Function evaluations: 131
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 153.31312356809195
Iteration: 2, Func. Count: 22, Neg. LLF: 149.7021902857386
Iteration: 3, Func. Count: 33, Neg. LLF: 148.04070785281678
Iteration: 4, Func. Count: 44, Neg. LLF: 146.25326523815028
Iteration: 5, Func. Count: 54, Neg. LLF: 147.79948347025797
Iteration: 6, Func. Count: 66, Neg. LLF: 147.74187455012472
Iteration: 7, Func. Count: 77, Neg. LLF: 145.36286218170775
Iteration: 8, Func. Count: 87, Neg. LLF: 145.83860058546503
Iteration: 9, Func. Count: 98, Neg. LLF: 144.86321040675915
Iteration: 10, Func. Count: 108, Neg. LLF: 144.71226641478935
Iteration: 11, Func. Count: 118, Neg. LLF: 144.6930566880619
Iteration: 12, Func. Count: 129, Neg. LLF: 144.4728547824216
Iteration: 13, Func. Count: 139, Neg. LLF: 144.42747972134217
Iteration: 14, Func. Count: 149, Neg. LLF: 144.40436271508108
Iteration: 15, Func. Count: 159, Neg. LLF: 144.40063453775082
Iteration: 16, Func. Count: 169, Neg. LLF: 144.39988435248847
Iteration: 17, Func. Count: 179, Neg. LLF: 144.3997596516482
Iteration: 18, Func. Count: 189, Neg. LLF: 144.39975100148988
Iteration: 19, Func. Count: 198, Neg. LLF: 144.39975109402934
Optimization terminated successfully (Exit mode 0)
Current function value: 144.39975100148988
Iterations: 19
Function evaluations: 198
Gradient evaluations: 19
Iteration: 1, Func. Count: 8, Neg. LLF: 150.57688203586645
Iteration: 2, Func. Count: 16, Neg. LLF: 154.3106331118554
Iteration: 3, Func. Count: 24, Neg. LLF: 144.86189815953423
Iteration: 4, Func. Count: 31, Neg. LLF: 144.8318660029175
Iteration: 5, Func. Count: 38, Neg. LLF: 144.77637537926688
Iteration: 6, Func. Count: 45, Neg. LLF: 144.7754181651425
Iteration: 7, Func. Count: 52, Neg. LLF: 144.77502714770677
Iteration: 8, Func. Count: 59, Neg. LLF: 144.77468325472077
Iteration: 9, Func. Count: 66, Neg. LLF: 144.7745953899061
Iteration: 10, Func. Count: 73, Neg. LLF: 144.77458659115425
Iteration: 11, Func. Count: 79, Neg. LLF: 144.77458663155235
Optimization terminated successfully (Exit mode 0)
Current function value: 144.77458659115425
Iterations: 11
Function evaluations: 79
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 154.85222595155943
Iteration: 2, Func. Count: 19, Neg. LLF: 160.12009780645408
Iteration: 3, Func. Count: 28, Neg. LLF: 148.31503731078874
Iteration: 4, Func. Count: 37, Neg. LLF: 147.3882048371969
Iteration: 5, Func. Count: 46, Neg. LLF: 146.97859716565685
Iteration: 6, Func. Count: 54, Neg. LLF: 146.4899741692216
Iteration: 7, Func. Count: 62, Neg. LLF: 146.3759834910524
Iteration: 8, Func. Count: 70, Neg. LLF: 146.2191298890311
Iteration: 9, Func. Count: 79, Neg. LLF: 146.86396279722965
Iteration: 10, Func. Count: 88, Neg. LLF: 146.12062242629432
Iteration: 11, Func. Count: 96, Neg. LLF: 146.09404590472
Iteration: 12, Func. Count: 104, Neg. LLF: 146.07883762772772
Iteration: 13, Func. Count: 112, Neg. LLF: 146.07651847289713
Iteration: 14, Func. Count: 120, Neg. LLF: 146.07650121161367
Iteration: 15, Func. Count: 129, Neg. LLF: 146.07642327666204
Iteration: 16, Func. Count: 136, Neg. LLF: 146.0764232453584
Optimization terminated successfully (Exit mode 0)
Current function value: 146.07642327666204
Iterations: 16
Function evaluations: 136
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 146.002042818574
Iteration: 2, Func. Count: 19, Neg. LLF: 147.25749518443664
Iteration: 3, Func. Count: 29, Neg. LLF: 149.32274347322414
Iteration: 4, Func. Count: 39, Neg. LLF: 158.648832221218
Iteration: 5, Func. Count: 49, Neg. LLF: 147.5148964833732
Iteration: 6, Func. Count: 59, Neg. LLF: 147.09847103450912
Iteration: 7, Func. Count: 69, Neg. LLF: 147.02664522259005
Iteration: 8, Func. Count: 79, Neg. LLF: 149.5423646818334
Iteration: 9, Func. Count: 89, Neg. LLF: 147.4396548179581
Iteration: 10, Func. Count: 99, Neg. LLF: 145.00264318482016
Iteration: 11, Func. Count: 109, Neg. LLF: 145.63939086881447
Iteration: 12, Func. Count: 119, Neg. LLF: 144.9506857003443
Iteration: 13, Func. Count: 129, Neg. LLF: 144.842326169562
Iteration: 14, Func. Count: 138, Neg. LLF: 144.85271601362302
Iteration: 15, Func. Count: 148, Neg. LLF: 144.84658896151666
Iteration: 16, Func. Count: 158, Neg. LLF: 144.8254414793509
Iteration: 17, Func. Count: 167, Neg. LLF: 144.82539759932573
Iteration: 18, Func. Count: 176, Neg. LLF: 144.82539600742976
Iteration: 19, Func. Count: 184, Neg. LLF: 144.8253959926093
Optimization terminated successfully (Exit mode 0)
Current function value: 144.82539600742976
Iterations: 19
Function evaluations: 184
Gradient evaluations: 19
Iteration: 1, Func. Count: 11, Neg. LLF: 145.24493182432786
Iteration: 2, Func. Count: 21, Neg. LLF: 144.86261013564166
Iteration: 3, Func. Count: 31, Neg. LLF: 144.5876048229969
Iteration: 4, Func. Count: 41, Neg. LLF: 144.52973005192828
Iteration: 5, Func. Count: 51, Neg. LLF: 144.55452378801016
Iteration: 6, Func. Count: 62, Neg. LLF: 144.55615980857453
Iteration: 7, Func. Count: 73, Neg. LLF: 144.66717947336352
Iteration: 8, Func. Count: 84, Neg. LLF: 144.40725840167832
Iteration: 9, Func. Count: 94, Neg. LLF: 144.4004695363592
Iteration: 10, Func. Count: 104, Neg. LLF: 144.39980265565026
Iteration: 11, Func. Count: 114, Neg. LLF: 144.39975119532875
Iteration: 12, Func. Count: 123, Neg. LLF: 144.3997513139766
Optimization terminated successfully (Exit mode 0)
Current function value: 144.39975119532875
Iterations: 12
Function evaluations: 123
Gradient evaluations: 12
Iteration: 1, Func. Count: 12, Neg. LLF: 147.10306280682087
Iteration: 2, Func. Count: 23, Neg. LLF: 152.95873925606998
Iteration: 3, Func. Count: 35, Neg. LLF: 145.58492002097748
Iteration: 4, Func. Count: 46, Neg. LLF: 145.09852981499253
Iteration: 5, Func. Count: 57, Neg. LLF: 147.7546537915809
Iteration: 6, Func. Count: 70, Neg. LLF: 144.60059079545061
Iteration: 7, Func. Count: 81, Neg. LLF: 148.026930469599
Iteration: 8, Func. Count: 93, Neg. LLF: 144.44481684289255
Iteration: 9, Func. Count: 104, Neg. LLF: 144.42783337684475
Iteration: 10, Func. Count: 115, Neg. LLF: 144.40714245678146
Iteration: 11, Func. Count: 126, Neg. LLF: 144.4014010299699
Iteration: 12, Func. Count: 137, Neg. LLF: 144.39996503414534
Iteration: 13, Func. Count: 148, Neg. LLF: 144.39976016880064
Iteration: 14, Func. Count: 159, Neg. LLF: 144.39975128997997
Iteration: 15, Func. Count: 169, Neg. LLF: 144.39975138271268
Optimization terminated successfully (Exit mode 0)
Current function value: 144.39975128997997
Iterations: 15
Function evaluations: 169
Gradient evaluations: 15
Iteration: 1, Func. Count: 9, Neg. LLF: 157.63600371834244
Iteration: 2, Func. Count: 19, Neg. LLF: 146.36324677612623
Iteration: 3, Func. Count: 27, Neg. LLF: 150.30168600125975
Iteration: 4, Func. Count: 36, Neg. LLF: 144.60941931861112
Iteration: 5, Func. Count: 44, Neg. LLF: 144.436150377288
Iteration: 6, Func. Count: 52, Neg. LLF: 145.1647736163732
Iteration: 7, Func. Count: 62, Neg. LLF: 144.37860832672567
Iteration: 8, Func. Count: 70, Neg. LLF: 144.36946051189116
Iteration: 9, Func. Count: 78, Neg. LLF: 144.36849862573678
Iteration: 10, Func. Count: 86, Neg. LLF: 144.36848035673964
Iteration: 11, Func. Count: 93, Neg. LLF: 144.36848035567905
Optimization terminated successfully (Exit mode 0)
Current function value: 144.36848035673964
Iterations: 11
Function evaluations: 93
Gradient evaluations: 11
Iteration: 1, Func. Count: 10, Neg. LLF: 148.82295860366523
Iteration: 2, Func. Count: 20, Neg. LLF: 150.70332362935903
Iteration: 3, Func. Count: 30, Neg. LLF: 150.9198361258436
Iteration: 4, Func. Count: 41, Neg. LLF: 148.7164315698102
Iteration: 5, Func. Count: 51, Neg. LLF: 149.42651260503047
Iteration: 6, Func. Count: 61, Neg. LLF: 151.8865934379849
Iteration: 7, Func. Count: 71, Neg. LLF: 150.0021547280397
Iteration: 8, Func. Count: 81, Neg. LLF: 155.4528964656772
Iteration: 9, Func. Count: 91, Neg. LLF: 149.65235748438238
Iteration: 10, Func. Count: 101, Neg. LLF: 146.39819603905016
Iteration: 11, Func. Count: 111, Neg. LLF: 145.7888569140709
Iteration: 12, Func. Count: 120, Neg. LLF: 145.7701304379483
Iteration: 13, Func. Count: 129, Neg. LLF: 145.8171330177145
Iteration: 14, Func. Count: 139, Neg. LLF: 145.71826293911244
Iteration: 15, Func. Count: 148, Neg. LLF: 145.7130885777713
Iteration: 16, Func. Count: 157, Neg. LLF: 145.7127501017332
Iteration: 17, Func. Count: 166, Neg. LLF: 145.71256426637456
Iteration: 18, Func. Count: 175, Neg. LLF: 145.71254722543782
Iteration: 19, Func. Count: 184, Neg. LLF: 145.71254624450052
Optimization terminated successfully (Exit mode 0)
Current function value: 145.71254624450052
Iterations: 19
Function evaluations: 184
Gradient evaluations: 19
Iteration: 1, Func. Count: 11, Neg. LLF: 152.83529425501206
Iteration: 2, Func. Count: 24, Neg. LLF: 153.00211156866695
Iteration: 3, Func. Count: 35, Neg. LLF: 147.56180865131418
Iteration: 4, Func. Count: 45, Neg. LLF: 146.58338680665958
Iteration: 5, Func. Count: 55, Neg. LLF: 154.52103617448947
Iteration: 6, Func. Count: 68, Neg. LLF: 147.51809933809344
Iteration: 7, Func. Count: 80, Neg. LLF: 146.21176477222292
Iteration: 8, Func. Count: 90, Neg. LLF: 145.91356154271668
Iteration: 9, Func. Count: 100, Neg. LLF: 147.82016500097436
Iteration: 10, Func. Count: 111, Neg. LLF: 145.3157615303666
Iteration: 11, Func. Count: 121, Neg. LLF: 144.78025054638584
Iteration: 12, Func. Count: 131, Neg. LLF: 150.07055667697819
Iteration: 13, Func. Count: 143, Neg. LLF: 167.26100966110928
Iteration: 14, Func. Count: 154, Neg. LLF: 144.61239575068504
Iteration: 15, Func. Count: 164, Neg. LLF: 144.82766531766427
Iteration: 16, Func. Count: 175, Neg. LLF: 144.57431483950643
Iteration: 17, Func. Count: 185, Neg. LLF: 144.55453918336028
Iteration: 18, Func. Count: 195, Neg. LLF: 144.5528582825919
Iteration: 19, Func. Count: 205, Neg. LLF: 144.55239847527233
Iteration: 20, Func. Count: 215, Neg. LLF: 144.5523545001825
Iteration: 21, Func. Count: 225, Neg. LLF: 144.55234396541474
Iteration: 22, Func. Count: 234, Neg. LLF: 144.55234394408643
Optimization terminated successfully (Exit mode 0)
Current function value: 144.55234396541474
Iterations: 22
Function evaluations: 234
Gradient evaluations: 22
Iteration: 1, Func. Count: 12, Neg. LLF: 156.0294698286707
Iteration: 2, Func. Count: 26, Neg. LLF: 152.44202507178642
Iteration: 3, Func. Count: 38, Neg. LLF: 147.5737021650147
Iteration: 4, Func. Count: 49, Neg. LLF: 147.16158324786994
Iteration: 5, Func. Count: 60, Neg. LLF: 146.2626515063762
Iteration: 6, Func. Count: 71, Neg. LLF: 146.28035539999894
Iteration: 7, Func. Count: 83, Neg. LLF: 146.74523315542595
Iteration: 8, Func. Count: 95, Neg. LLF: 145.10896067699966
Iteration: 9, Func. Count: 106, Neg. LLF: 144.563000555985
Iteration: 10, Func. Count: 117, Neg. LLF: 144.49588307588277
Iteration: 11, Func. Count: 128, Neg. LLF: 144.41602856210642
Iteration: 12, Func. Count: 139, Neg. LLF: 144.3984872525046
Iteration: 13, Func. Count: 150, Neg. LLF: 144.39680503494293
Iteration: 14, Func. Count: 162, Neg. LLF: 144.3766395442813
Iteration: 15, Func. Count: 173, Neg. LLF: 144.37354564839512
Iteration: 16, Func. Count: 184, Neg. LLF: 144.36947182450484
Iteration: 17, Func. Count: 195, Neg. LLF: 144.36891423366356
Iteration: 18, Func. Count: 206, Neg. LLF: 144.36871232432586
Iteration: 19, Func. Count: 217, Neg. LLF: 144.3685845152701
Iteration: 20, Func. Count: 228, Neg. LLF: 144.3684966041439
Iteration: 21, Func. Count: 239, Neg. LLF: 144.36848107082014
Iteration: 22, Func. Count: 250, Neg. LLF: 144.3684801800613
Optimization terminated successfully (Exit mode 0)
Current function value: 144.3684801800613
Iterations: 22
Function evaluations: 250
Gradient evaluations: 22
Iteration: 1, Func. Count: 13, Neg. LLF: 156.05666113102873
Iteration: 2, Func. Count: 28, Neg. LLF: 152.29165444664417
Iteration: 3, Func. Count: 41, Neg. LLF: 147.30842633544088
Iteration: 4, Func. Count: 53, Neg. LLF: 148.4414939811405
Iteration: 5, Func. Count: 66, Neg. LLF: 149.2047655752568
Iteration: 6, Func. Count: 83, Neg. LLF: 167.33681898294677
Iteration: 7, Func. Count: 96, Neg. LLF: 146.39076829707727
Iteration: 8, Func. Count: 108, Neg. LLF: 146.17567422971317
Iteration: 9, Func. Count: 120, Neg. LLF: 146.04173327684077
Iteration: 10, Func. Count: 132, Neg. LLF: 145.71870171982727
Iteration: 11, Func. Count: 144, Neg. LLF: 145.55231660450053
Iteration: 12, Func. Count: 156, Neg. LLF: 145.49825844510158
Iteration: 13, Func. Count: 168, Neg. LLF: 145.4198217585267
Iteration: 14, Func. Count: 180, Neg. LLF: 145.36812139289918
Iteration: 15, Func. Count: 192, Neg. LLF: 145.30662748101173
Iteration: 16, Func. Count: 204, Neg. LLF: 145.29526264797602
Iteration: 17, Func. Count: 216, Neg. LLF: 145.29401043966618
Iteration: 18, Func. Count: 228, Neg. LLF: 145.29385681214717
Iteration: 19, Func. Count: 240, Neg. LLF: 145.29379852965695
Iteration: 20, Func. Count: 252, Neg. LLF: 145.29379717141742
Iteration: 21, Func. Count: 263, Neg. LLF: 145.29379717141128
Optimization terminated successfully (Exit mode 0)
Current function value: 145.29379717141742
Iterations: 21
Function evaluations: 263
Gradient evaluations: 21
Iteration: 1, Func. Count: 10, Neg. LLF: 156.33074212124345
Iteration: 2, Func. Count: 21, Neg. LLF: 146.52334579943326
Iteration: 3, Func. Count: 30, Neg. LLF: 150.5978935783099
Iteration: 4, Func. Count: 40, Neg. LLF: 144.62733204964871
Iteration: 5, Func. Count: 49, Neg. LLF: 144.43154925880253
Iteration: 6, Func. Count: 58, Neg. LLF: 146.2346045390634
Iteration: 7, Func. Count: 69, Neg. LLF: 144.37640446746303
Iteration: 8, Func. Count: 78, Neg. LLF: 144.36886968365104
Iteration: 9, Func. Count: 87, Neg. LLF: 144.3684923851656
Iteration: 10, Func. Count: 96, Neg. LLF: 144.36848019459242
Iteration: 11, Func. Count: 104, Neg. LLF: 144.36848026127453
Optimization terminated successfully (Exit mode 0)
Current function value: 144.36848019459242
Iterations: 11
Function evaluations: 104
Gradient evaluations: 11
Iteration: 1, Func. Count: 11, Neg. LLF: 168.8121384040121
Iteration: 2, Func. Count: 24, Neg. LLF: 157.8312592126237
Iteration: 3, Func. Count: 35, Neg. LLF: 147.4275930036903
Iteration: 4, Func. Count: 46, Neg. LLF: 148.2549916343276
Iteration: 5, Func. Count: 58, Neg. LLF: 148.58286258800243
Iteration: 6, Func. Count: 69, Neg. LLF: 146.8945522730721
Iteration: 7, Func. Count: 79, Neg. LLF: 146.84442062359875
Iteration: 8, Func. Count: 90, Neg. LLF: 154.00792190192752
Iteration: 9, Func. Count: 101, Neg. LLF: 145.8513289509713
Iteration: 10, Func. Count: 111, Neg. LLF: 146.04273731775504
Iteration: 11, Func. Count: 122, Neg. LLF: 145.752871735639
Iteration: 12, Func. Count: 133, Neg. LLF: 145.71642895544747
Iteration: 13, Func. Count: 143, Neg. LLF: 145.71342848236068
Iteration: 14, Func. Count: 153, Neg. LLF: 145.71259968941584
Iteration: 15, Func. Count: 163, Neg. LLF: 145.7125471304435
Iteration: 16, Func. Count: 173, Neg. LLF: 145.71254621602517
Optimization terminated successfully (Exit mode 0)
Current function value: 145.71254621602517
Iterations: 16
Function evaluations: 173
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 161.76234068671417
Iteration: 2, Func. Count: 24, Neg. LLF: 145.5919991752042
Iteration: 3, Func. Count: 35, Neg. LLF: 147.05412464313588
Iteration: 4, Func. Count: 47, Neg. LLF: 174.5196570376721
Iteration: 5, Func. Count: 60, Neg. LLF: 153.68650046352147
Iteration: 6, Func. Count: 73, Neg. LLF: 145.6953817184067
Iteration: 7, Func. Count: 85, Neg. LLF: 149.4790012117495
Iteration: 8, Func. Count: 97, Neg. LLF: 144.99729541832914
Iteration: 9, Func. Count: 109, Neg. LLF: 144.84944989110195
Iteration: 10, Func. Count: 121, Neg. LLF: 145.0695877330661
Iteration: 11, Func. Count: 133, Neg. LLF: 144.83552325448312
Iteration: 12, Func. Count: 145, Neg. LLF: 144.67664431157021
Iteration: 13, Func. Count: 157, Neg. LLF: 144.51752629090166
Iteration: 14, Func. Count: 168, Neg. LLF: 144.50807863564654
Iteration: 15, Func. Count: 179, Neg. LLF: 144.5561925404951
Iteration: 16, Func. Count: 192, Neg. LLF: 144.87418513704662
Iteration: 17, Func. Count: 204, Neg. LLF: 144.5057402068675
Iteration: 18, Func. Count: 215, Neg. LLF: 144.50573484140176
Iteration: 19, Func. Count: 226, Neg. LLF: 144.5057341798225
Optimization terminated successfully (Exit mode 0)
Current function value: 144.5057341798225
Iterations: 19
Function evaluations: 226
Gradient evaluations: 19
Iteration: 1, Func. Count: 13, Neg. LLF: 155.75066673284584
Iteration: 2, Func. Count: 28, Neg. LLF: 152.37417380739697
Iteration: 3, Func. Count: 41, Neg. LLF: 147.0890482535527
Iteration: 4, Func. Count: 53, Neg. LLF: 145.8870023290294
Iteration: 5, Func. Count: 65, Neg. LLF: 145.42521504686962
Iteration: 6, Func. Count: 77, Neg. LLF: 145.40739989402283
Iteration: 7, Func. Count: 90, Neg. LLF: 144.65385478729368
Iteration: 8, Func. Count: 102, Neg. LLF: 144.83344224164222
Iteration: 9, Func. Count: 115, Neg. LLF: 144.5001109990589
Iteration: 10, Func. Count: 127, Neg. LLF: 144.38573254760044
Iteration: 11, Func. Count: 139, Neg. LLF: 144.37657741009642
Iteration: 12, Func. Count: 151, Neg. LLF: 144.37400902271722
Iteration: 13, Func. Count: 163, Neg. LLF: 144.37045143154182
Iteration: 14, Func. Count: 175, Neg. LLF: 144.36897393044305
Iteration: 15, Func. Count: 187, Neg. LLF: 144.36859311006467
Iteration: 16, Func. Count: 199, Neg. LLF: 144.3684915476083
Iteration: 17, Func. Count: 211, Neg. LLF: 144.3684810995719
Iteration: 18, Func. Count: 223, Neg. LLF: 144.36848016685434
Optimization terminated successfully (Exit mode 0)
Current function value: 144.36848016685434
Iterations: 18
Function evaluations: 223
Gradient evaluations: 18
Iteration: 1, Func. Count: 14, Neg. LLF: 155.7084845630272
Iteration: 2, Func. Count: 30, Neg. LLF: 152.15965084414415
Iteration: 3, Func. Count: 44, Neg. LLF: 147.47490504442013
Iteration: 4, Func. Count: 57, Neg. LLF: 148.29459996459164
Iteration: 5, Func. Count: 72, Neg. LLF: 148.2920781952237
Iteration: 6, Func. Count: 86, Neg. LLF: 146.58018581448925
Iteration: 7, Func. Count: 99, Neg. LLF: 146.15714914155367
Iteration: 8, Func. Count: 112, Neg. LLF: 144.98540950962555
Iteration: 9, Func. Count: 125, Neg. LLF: 144.87326895015502
Iteration: 10, Func. Count: 138, Neg. LLF: 144.3954071111564
Iteration: 11, Func. Count: 151, Neg. LLF: 144.38174557134542
Iteration: 12, Func. Count: 164, Neg. LLF: 144.37063702131792
Iteration: 13, Func. Count: 177, Neg. LLF: 144.36988315432035
Iteration: 14, Func. Count: 190, Neg. LLF: 144.3693707808002
Iteration: 15, Func. Count: 203, Neg. LLF: 144.3686362892045
Iteration: 16, Func. Count: 216, Neg. LLF: 144.36849216484902
Iteration: 17, Func. Count: 229, Neg. LLF: 144.36848033710697
Iteration: 18, Func. Count: 241, Neg. LLF: 144.3684804065444
Optimization terminated successfully (Exit mode 0)
Current function value: 144.36848033710697
Iterations: 18
Function evaluations: 241
Gradient evaluations: 18
Iteration: 1, Func. Count: 7, Neg. LLF: 152.07267840820364
Iteration: 2, Func. Count: 14, Neg. LLF: 156.75120438461687
Iteration: 3, Func. Count: 21, Neg. LLF: 147.18773119532776
Iteration: 4, Func. Count: 27, Neg. LLF: 147.567640916788
Iteration: 5, Func. Count: 34, Neg. LLF: 148.33752293394193
Iteration: 6, Func. Count: 41, Neg. LLF: 147.00179516964548
Iteration: 7, Func. Count: 47, Neg. LLF: 146.88084269727423
Iteration: 8, Func. Count: 53, Neg. LLF: 146.86217197045534
Iteration: 9, Func. Count: 59, Neg. LLF: 146.83055513316359
Iteration: 10, Func. Count: 65, Neg. LLF: 146.82302637826865
Iteration: 11, Func. Count: 71, Neg. LLF: 146.82152374583998
Iteration: 12, Func. Count: 77, Neg. LLF: 146.8215003370364
Iteration: 13, Func. Count: 83, Neg. LLF: 146.8214993809791
Optimization terminated successfully (Exit mode 0)
Current function value: 146.8214993809791
Iterations: 13
Function evaluations: 83
Gradient evaluations: 13
Iteration: 1, Func. Count: 8, Neg. LLF: 150.547152318746
Iteration: 2, Func. Count: 16, Neg. LLF: 150.33544298097553
Iteration: 3, Func. Count: 24, Neg. LLF: 155.60955122552522
Iteration: 4, Func. Count: 32, Neg. LLF: 151.83636605915152
Iteration: 5, Func. Count: 41, Neg. LLF: 145.61359839280536
Iteration: 6, Func. Count: 48, Neg. LLF: 146.5858308867838
Iteration: 7, Func. Count: 56, Neg. LLF: 145.63872216826869
Iteration: 8, Func. Count: 64, Neg. LLF: 145.52991395177443
Iteration: 9, Func. Count: 71, Neg. LLF: 145.52500967354524
Iteration: 10, Func. Count: 78, Neg. LLF: 145.5219232288349
Iteration: 11, Func. Count: 85, Neg. LLF: 145.5199199775333
Iteration: 12, Func. Count: 92, Neg. LLF: 145.5195310190175
Iteration: 13, Func. Count: 99, Neg. LLF: 145.51951755206417
Iteration: 14, Func. Count: 105, Neg. LLF: 145.51951755208782
Optimization terminated successfully (Exit mode 0)
Current function value: 145.51951755206417
Iterations: 14
Function evaluations: 105
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 150.58869625949407
Iteration: 2, Func. Count: 18, Neg. LLF: 146.44331602354546
Iteration: 3, Func. Count: 26, Neg. LLF: 152.76831627686985
Iteration: 4, Func. Count: 35, Neg. LLF: 145.9743386561873
Iteration: 5, Func. Count: 43, Neg. LLF: 194.8991704422187
Iteration: 6, Func. Count: 53, Neg. LLF: 147.52171006467046
Iteration: 7, Func. Count: 63, Neg. LLF: 146.36236546582654
Iteration: 8, Func. Count: 72, Neg. LLF: 145.59744047829227
Iteration: 9, Func. Count: 80, Neg. LLF: 146.08735032784625
Iteration: 10, Func. Count: 89, Neg. LLF: 145.5499765174996
Iteration: 11, Func. Count: 97, Neg. LLF: 145.5266322653962
Iteration: 12, Func. Count: 105, Neg. LLF: 145.52348044075893
Iteration: 13, Func. Count: 113, Neg. LLF: 145.52055135318605
Iteration: 14, Func. Count: 121, Neg. LLF: 145.5196172240736
Iteration: 15, Func. Count: 129, Neg. LLF: 145.51951977353042
Iteration: 16, Func. Count: 137, Neg. LLF: 145.51951754731382
Iteration: 17, Func. Count: 144, Neg. LLF: 145.51951766512036
Optimization terminated successfully (Exit mode 0)
Current function value: 145.51951754731382
Iterations: 17
Function evaluations: 144
Gradient evaluations: 17
Iteration: 1, Func. Count: 10, Neg. LLF: 149.0697705975591
Iteration: 2, Func. Count: 21, Neg. LLF: 148.53620149358562
Iteration: 3, Func. Count: 31, Neg. LLF: 173.40320160926183
Iteration: 4, Func. Count: 42, Neg. LLF: 146.59846433104445
Iteration: 5, Func. Count: 51, Neg. LLF: 157.57155033724456
Iteration: 6, Func. Count: 61, Neg. LLF: 146.40347173875602
Iteration: 7, Func. Count: 70, Neg. LLF: 146.24491149992022
Iteration: 8, Func. Count: 79, Neg. LLF: 145.97393269804112
Iteration: 9, Func. Count: 88, Neg. LLF: 145.6961411851612
Iteration: 10, Func. Count: 97, Neg. LLF: 145.61347164941532
Iteration: 11, Func. Count: 106, Neg. LLF: 145.71438564344498
Iteration: 12, Func. Count: 116, Neg. LLF: 153.61343272856865
Iteration: 13, Func. Count: 126, Neg. LLF: 145.52666364102828
Iteration: 14, Func. Count: 135, Neg. LLF: 145.5216089571365
Iteration: 15, Func. Count: 144, Neg. LLF: 145.52167514062776
Iteration: 16, Func. Count: 154, Neg. LLF: 145.5205840241014
Iteration: 17, Func. Count: 164, Neg. LLF: 145.519563204116
Iteration: 18, Func. Count: 173, Neg. LLF: 145.51952062402665
Iteration: 19, Func. Count: 182, Neg. LLF: 145.51951745768997
Iteration: 20, Func. Count: 190, Neg. LLF: 145.51951757130894
Optimization terminated successfully (Exit mode 0)
Current function value: 145.51951745768997
Iterations: 20
Function evaluations: 190
Gradient evaluations: 20
Iteration: 1, Func. Count: 11, Neg. LLF: 149.17368109608273
Iteration: 2, Func. Count: 22, Neg. LLF: 146.81333059164714
Iteration: 3, Func. Count: 32, Neg. LLF: 172.20636875116887
Iteration: 4, Func. Count: 44, Neg. LLF: 152.5950366011201
Iteration: 5, Func. Count: 55, Neg. LLF: 153.31244938650127
Iteration: 6, Func. Count: 66, Neg. LLF: 146.33174613063284
Iteration: 7, Func. Count: 76, Neg. LLF: 146.19938915823008
Iteration: 8, Func. Count: 86, Neg. LLF: 145.72683691229824
Iteration: 9, Func. Count: 96, Neg. LLF: 145.55542234996648
Iteration: 10, Func. Count: 106, Neg. LLF: 146.78228488285683
Iteration: 11, Func. Count: 118, Neg. LLF: 153.3919524991144
Iteration: 12, Func. Count: 129, Neg. LLF: 145.52046500518537
Iteration: 13, Func. Count: 139, Neg. LLF: 145.51977884734373
Iteration: 14, Func. Count: 149, Neg. LLF: 145.51952824822254
Iteration: 15, Func. Count: 159, Neg. LLF: 145.51951783405585
Iteration: 16, Func. Count: 168, Neg. LLF: 145.51951795901587
Optimization terminated successfully (Exit mode 0)
Current function value: 145.51951783405585
Iterations: 16
Function evaluations: 168
Gradient evaluations: 16
Iteration: 1, Func. Count: 8, Neg. LLF: 152.69810252422252
Iteration: 2, Func. Count: 16, Neg. LLF: 144.84327566111236
Iteration: 3, Func. Count: 23, Neg. LLF: 144.82669753962517
Iteration: 4, Func. Count: 31, Neg. LLF: 155.11059143122316
Iteration: 5, Func. Count: 39, Neg. LLF: 144.69823408636017
Iteration: 6, Func. Count: 46, Neg. LLF: 144.66437383906674
Iteration: 7, Func. Count: 53, Neg. LLF: 144.62579691238548
Iteration: 8, Func. Count: 60, Neg. LLF: 144.60929549632513
Iteration: 9, Func. Count: 67, Neg. LLF: 144.7836464431457
Iteration: 10, Func. Count: 76, Neg. LLF: 144.60241124274583
Iteration: 11, Func. Count: 83, Neg. LLF: 144.59987570273975
Iteration: 12, Func. Count: 90, Neg. LLF: 144.59944637936852
Iteration: 13, Func. Count: 96, Neg. LLF: 144.59944637904914
Optimization terminated successfully (Exit mode 0)
Current function value: 144.59944637936852
Iterations: 13
Function evaluations: 96
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 150.78255445269085
Iteration: 2, Func. Count: 18, Neg. LLF: 149.7747172678611
Iteration: 3, Func. Count: 27, Neg. LLF: 152.5487963927832
Iteration: 4, Func. Count: 36, Neg. LLF: 145.83577972063432
Iteration: 5, Func. Count: 45, Neg. LLF: 149.124167166736
Iteration: 6, Func. Count: 54, Neg. LLF: 145.56081428002503
Iteration: 7, Func. Count: 62, Neg. LLF: 145.58068778221366
Iteration: 8, Func. Count: 71, Neg. LLF: 145.7370299790166
Iteration: 9, Func. Count: 80, Neg. LLF: 145.48458401764367
Iteration: 10, Func. Count: 89, Neg. LLF: 145.4696996416714
Iteration: 11, Func. Count: 97, Neg. LLF: 145.4635898196809
Iteration: 12, Func. Count: 105, Neg. LLF: 145.4623616740297
Iteration: 13, Func. Count: 113, Neg. LLF: 145.46220367344836
Iteration: 14, Func. Count: 121, Neg. LLF: 145.46220042779754
Iteration: 15, Func. Count: 128, Neg. LLF: 145.46220042783082
Optimization terminated successfully (Exit mode 0)
Current function value: 145.46220042779754
Iterations: 15
Function evaluations: 128
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 152.29281279398316
Iteration: 2, Func. Count: 20, Neg. LLF: 149.0012770022684
Iteration: 3, Func. Count: 30, Neg. LLF: 151.02861468756552
Iteration: 4, Func. Count: 40, Neg. LLF: 146.70131292206034
Iteration: 5, Func. Count: 49, Neg. LLF: 146.2860623552097
Iteration: 6, Func. Count: 58, Neg. LLF: 144.6410765220231
Iteration: 7, Func. Count: 67, Neg. LLF: 144.5805149383525
Iteration: 8, Func. Count: 76, Neg. LLF: 145.32942803479438
Iteration: 9, Func. Count: 86, Neg. LLF: 144.40589165107457
Iteration: 10, Func. Count: 95, Neg. LLF: 144.47042234077574
Iteration: 11, Func. Count: 105, Neg. LLF: 144.4013690805065
Iteration: 12, Func. Count: 114, Neg. LLF: 144.39999763104237
Iteration: 13, Func. Count: 123, Neg. LLF: 144.39977192431195
Iteration: 14, Func. Count: 132, Neg. LLF: 144.3997553713789
Iteration: 15, Func. Count: 141, Neg. LLF: 144.39975382153375
Iteration: 16, Func. Count: 150, Neg. LLF: 144.39975216297256
Iteration: 17, Func. Count: 159, Neg. LLF: 144.39975117667422
Optimization terminated successfully (Exit mode 0)
Current function value: 144.39975117667422
Iterations: 17
Function evaluations: 159
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 152.5633772413524
Iteration: 2, Func. Count: 22, Neg. LLF: 148.2921026144475
Iteration: 3, Func. Count: 33, Neg. LLF: 162.52770434153828
Iteration: 4, Func. Count: 44, Neg. LLF: 146.99795793093247
Iteration: 5, Func. Count: 54, Neg. LLF: 147.7644664815323
Iteration: 6, Func. Count: 66, Neg. LLF: 148.08392766381684
Iteration: 7, Func. Count: 77, Neg. LLF: 146.41934890525857
Iteration: 8, Func. Count: 88, Neg. LLF: 148.27013092260233
Iteration: 9, Func. Count: 99, Neg. LLF: 145.92469821878632
Iteration: 10, Func. Count: 109, Neg. LLF: 146.46768041190938
Iteration: 11, Func. Count: 120, Neg. LLF: 145.69226029318654
Iteration: 12, Func. Count: 131, Neg. LLF: 145.47659976525742
Iteration: 13, Func. Count: 141, Neg. LLF: 145.46638043127157
Iteration: 14, Func. Count: 151, Neg. LLF: 145.4625109065089
Iteration: 15, Func. Count: 161, Neg. LLF: 145.46229065528394
Iteration: 16, Func. Count: 171, Neg. LLF: 145.46223497659142
Iteration: 17, Func. Count: 181, Neg. LLF: 145.46220457974172
Iteration: 18, Func. Count: 191, Neg. LLF: 145.46220095131326
Iteration: 19, Func. Count: 201, Neg. LLF: 145.462200385105
Optimization terminated successfully (Exit mode 0)
Current function value: 145.462200385105
Iterations: 19
Function evaluations: 201
Gradient evaluations: 19
Iteration: 1, Func. Count: 12, Neg. LLF: 152.83648585787626
Iteration: 2, Func. Count: 24, Neg. LLF: 149.5816121520529
Iteration: 3, Func. Count: 36, Neg. LLF: 154.21311925478653
Iteration: 4, Func. Count: 48, Neg. LLF: 146.80091642345508
Iteration: 5, Func. Count: 59, Neg. LLF: 147.8878366411492
Iteration: 6, Func. Count: 71, Neg. LLF: 146.83705552017216
Iteration: 7, Func. Count: 83, Neg. LLF: 146.55707437035142
Iteration: 8, Func. Count: 95, Neg. LLF: 146.5477939398862
Iteration: 9, Func. Count: 107, Neg. LLF: 146.06615691267436
Iteration: 10, Func. Count: 118, Neg. LLF: 145.75395622635088
Iteration: 11, Func. Count: 129, Neg. LLF: 145.59500720719785
Iteration: 12, Func. Count: 140, Neg. LLF: 145.52462298158287
Iteration: 13, Func. Count: 151, Neg. LLF: 145.51535445384647
Iteration: 14, Func. Count: 162, Neg. LLF: 145.47753237530725
Iteration: 15, Func. Count: 173, Neg. LLF: 145.46792911304345
Iteration: 16, Func. Count: 184, Neg. LLF: 145.46334499181887
Iteration: 17, Func. Count: 195, Neg. LLF: 145.46245890997434
Iteration: 18, Func. Count: 206, Neg. LLF: 145.46221117327806
Iteration: 19, Func. Count: 217, Neg. LLF: 145.4622006954734
Iteration: 20, Func. Count: 227, Neg. LLF: 145.46220082052986
Optimization terminated successfully (Exit mode 0)
Current function value: 145.4622006954734
Iterations: 20
Function evaluations: 227
Gradient evaluations: 20
Iteration: 1, Func. Count: 9, Neg. LLF: 151.68729184647316
Iteration: 2, Func. Count: 18, Neg. LLF: 145.382529741957
Iteration: 3, Func. Count: 26, Neg. LLF: 145.36791983249196
Iteration: 4, Func. Count: 35, Neg. LLF: 146.90941414489464
Iteration: 5, Func. Count: 45, Neg. LLF: 144.7447382039923
Iteration: 6, Func. Count: 53, Neg. LLF: 144.63266400517597
Iteration: 7, Func. Count: 61, Neg. LLF: 144.61780862933492
Iteration: 8, Func. Count: 69, Neg. LLF: 144.94190819884324
Iteration: 9, Func. Count: 79, Neg. LLF: 144.60021847553548
Iteration: 10, Func. Count: 87, Neg. LLF: 144.59947116590607
Iteration: 11, Func. Count: 95, Neg. LLF: 144.59944630174311
Iteration: 12, Func. Count: 102, Neg. LLF: 144.5994463664145
Optimization terminated successfully (Exit mode 0)
Current function value: 144.59944630174311
Iterations: 12
Function evaluations: 102
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 150.5902556180671
Iteration: 2, Func. Count: 20, Neg. LLF: 149.29557674428662
Iteration: 3, Func. Count: 30, Neg. LLF: 150.15627325026668
Iteration: 4, Func. Count: 40, Neg. LLF: 146.04136301708843
Iteration: 5, Func. Count: 50, Neg. LLF: 149.78780808026778
Iteration: 6, Func. Count: 60, Neg. LLF: 145.47951056439794
Iteration: 7, Func. Count: 69, Neg. LLF: 145.73375773552397
Iteration: 8, Func. Count: 79, Neg. LLF: 145.43903082151206
Iteration: 9, Func. Count: 89, Neg. LLF: 145.41584506922214
Iteration: 10, Func. Count: 99, Neg. LLF: 145.39134621027085
Iteration: 11, Func. Count: 108, Neg. LLF: 145.39045133968256
Iteration: 12, Func. Count: 117, Neg. LLF: 145.3899187380944
Iteration: 13, Func. Count: 126, Neg. LLF: 145.38972907089527
Iteration: 14, Func. Count: 135, Neg. LLF: 145.3897223472837
Iteration: 15, Func. Count: 143, Neg. LLF: 145.38972234731716
Optimization terminated successfully (Exit mode 0)
Current function value: 145.3897223472837
Iterations: 15
Function evaluations: 143
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 154.09303389955855
Iteration: 2, Func. Count: 22, Neg. LLF: 167.10279137178242
Iteration: 3, Func. Count: 33, Neg. LLF: 147.3684930079826
Iteration: 4, Func. Count: 44, Neg. LLF: 146.78112718837588
Iteration: 5, Func. Count: 55, Neg. LLF: 145.10130752539354
Iteration: 6, Func. Count: 65, Neg. LLF: 163.1422170548697
Iteration: 7, Func. Count: 77, Neg. LLF: 144.77948493771368
Iteration: 8, Func. Count: 87, Neg. LLF: 145.2354554091221
Iteration: 9, Func. Count: 98, Neg. LLF: 148.4266804550887
Iteration: 10, Func. Count: 109, Neg. LLF: 144.69810330356634
Iteration: 11, Func. Count: 119, Neg. LLF: 144.67786179174317
Iteration: 12, Func. Count: 129, Neg. LLF: 144.66823890909725
Iteration: 13, Func. Count: 139, Neg. LLF: 144.66808022471167
Iteration: 14, Func. Count: 149, Neg. LLF: 144.6680756657467
Iteration: 15, Func. Count: 158, Neg. LLF: 144.6680756401627
Optimization terminated successfully (Exit mode 0)
Current function value: 144.6680756657467
Iterations: 15
Function evaluations: 158
Gradient evaluations: 15
Iteration: 1, Func. Count: 12, Neg. LLF: 149.17544250383034
Iteration: 2, Func. Count: 25, Neg. LLF: 148.53594550912356
Iteration: 3, Func. Count: 37, Neg. LLF: 173.13928903226466
Iteration: 4, Func. Count: 50, Neg. LLF: 146.598654549889
Iteration: 5, Func. Count: 61, Neg. LLF: 160.09550680788712
Iteration: 6, Func. Count: 73, Neg. LLF: 146.36623112654965
Iteration: 7, Func. Count: 84, Neg. LLF: 147.97294086039562
Iteration: 8, Func. Count: 96, Neg. LLF: 146.095765362745
Iteration: 9, Func. Count: 107, Neg. LLF: 145.6631903384968
Iteration: 10, Func. Count: 118, Neg. LLF: 145.61307694066653
Iteration: 11, Func. Count: 129, Neg. LLF: 145.54592661198237
Iteration: 12, Func. Count: 140, Neg. LLF: 145.47002047356082
Iteration: 13, Func. Count: 151, Neg. LLF: 145.4031884084979
Iteration: 14, Func. Count: 162, Neg. LLF: 145.39320048144683
Iteration: 15, Func. Count: 173, Neg. LLF: 145.39110985559742
Iteration: 16, Func. Count: 184, Neg. LLF: 145.39078327984842
Iteration: 17, Func. Count: 196, Neg. LLF: 145.38979223280586
Iteration: 18, Func. Count: 207, Neg. LLF: 145.3897467874921
Iteration: 19, Func. Count: 218, Neg. LLF: 145.38972266458265
Iteration: 20, Func. Count: 229, Neg. LLF: 145.38972205611486
Optimization terminated successfully (Exit mode 0)
Current function value: 145.38972205611486
Iterations: 20
Function evaluations: 229
Gradient evaluations: 20
Iteration: 1, Func. Count: 13, Neg. LLF: 149.27195546587728
Iteration: 2, Func. Count: 26, Neg. LLF: 146.6293542197739
Iteration: 3, Func. Count: 38, Neg. LLF: 189.07878619758674
Iteration: 4, Func. Count: 53, Neg. LLF: 148.24672850237323
Iteration: 5, Func. Count: 66, Neg. LLF: 154.68837593804682
Iteration: 6, Func. Count: 79, Neg. LLF: 146.21253955407408
Iteration: 7, Func. Count: 91, Neg. LLF: 152.5163940746781
Iteration: 8, Func. Count: 104, Neg. LLF: 145.79307928662925
Iteration: 9, Func. Count: 116, Neg. LLF: 145.63732258139615
Iteration: 10, Func. Count: 128, Neg. LLF: 145.5065476561862
Iteration: 11, Func. Count: 140, Neg. LLF: 145.436591489555
Iteration: 12, Func. Count: 152, Neg. LLF: 145.40904106402306
Iteration: 13, Func. Count: 164, Neg. LLF: 145.3967592172531
Iteration: 14, Func. Count: 176, Neg. LLF: 145.39015839646987
Iteration: 15, Func. Count: 188, Neg. LLF: 145.3897593207701
Iteration: 16, Func. Count: 200, Neg. LLF: 145.38972590528326
Iteration: 17, Func. Count: 212, Neg. LLF: 145.3897220793365
Iteration: 18, Func. Count: 223, Neg. LLF: 145.38972220736704
Optimization terminated successfully (Exit mode 0)
Current function value: 145.3897220793365
Iterations: 18
Function evaluations: 223
Gradient evaluations: 18
Iteration: 1, Func. Count: 10, Neg. LLF: 146.03452097004796
Iteration: 2, Func. Count: 19, Neg. LLF: 147.5645891063599
Iteration: 3, Func. Count: 30, Neg. LLF: 170.24178628252213
Iteration: 4, Func. Count: 40, Neg. LLF: 144.58785932049653
Iteration: 5, Func. Count: 49, Neg. LLF: 144.496815027119
Iteration: 6, Func. Count: 58, Neg. LLF: 144.432293416136
Iteration: 7, Func. Count: 67, Neg. LLF: 144.39698368585496
Iteration: 8, Func. Count: 76, Neg. LLF: 144.38402348373933
Iteration: 9, Func. Count: 85, Neg. LLF: 144.45362048977722
Iteration: 10, Func. Count: 95, Neg. LLF: 144.37174925342842
Iteration: 11, Func. Count: 104, Neg. LLF: 144.3686039511855
Iteration: 12, Func. Count: 113, Neg. LLF: 144.36848188407185
Iteration: 13, Func. Count: 122, Neg. LLF: 144.36848013802094
Iteration: 14, Func. Count: 130, Neg. LLF: 144.3684801369549
Optimization terminated successfully (Exit mode 0)
Current function value: 144.36848013802094
Iterations: 14
Function evaluations: 130
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 159.25586434597307
Iteration: 2, Func. Count: 22, Neg. LLF: 152.30612618829628
Iteration: 3, Func. Count: 33, Neg. LLF: 163.885336897829
Iteration: 4, Func. Count: 46, Neg. LLF: 145.46809001547996
Iteration: 5, Func. Count: 57, Neg. LLF: 146.40868192293726
Iteration: 6, Func. Count: 68, Neg. LLF: 146.46019019942014
Iteration: 7, Func. Count: 79, Neg. LLF: 143.27222003296967
Iteration: 8, Func. Count: 89, Neg. LLF: 143.32914941391945
Iteration: 9, Func. Count: 100, Neg. LLF: 143.14975561400198
Iteration: 10, Func. Count: 110, Neg. LLF: 143.1276315851097
Iteration: 11, Func. Count: 120, Neg. LLF: 143.1228087332045
Iteration: 12, Func. Count: 130, Neg. LLF: 143.12252724172063
Iteration: 13, Func. Count: 140, Neg. LLF: 143.1225104503928
Iteration: 14, Func. Count: 150, Neg. LLF: 143.1225085455166
Iteration: 15, Func. Count: 159, Neg. LLF: 143.12250854551561
Optimization terminated successfully (Exit mode 0)
Current function value: 143.1225085455166
Iterations: 15
Function evaluations: 159
Gradient evaluations: 15
Iteration: 1, Func. Count: 12, Neg. LLF: 159.2277385027881
Iteration: 2, Func. Count: 24, Neg. LLF: 153.0038872846314
Iteration: 3, Func. Count: 36, Neg. LLF: 156.58171039401114
Iteration: 4, Func. Count: 49, Neg. LLF: 145.03994651366654
Iteration: 5, Func. Count: 60, Neg. LLF: 144.21848176493717
Iteration: 6, Func. Count: 71, Neg. LLF: 152.98418026128303
Iteration: 7, Func. Count: 83, Neg. LLF: 143.31037516154242
Iteration: 8, Func. Count: 94, Neg. LLF: 163.68823189823104
Iteration: 9, Func. Count: 107, Neg. LLF: 143.30508744228163
Iteration: 10, Func. Count: 119, Neg. LLF: 143.13911625474327
Iteration: 11, Func. Count: 130, Neg. LLF: 143.12653091368497
Iteration: 12, Func. Count: 141, Neg. LLF: 143.12350386749395
Iteration: 13, Func. Count: 152, Neg. LLF: 143.12266129684718
Iteration: 14, Func. Count: 163, Neg. LLF: 143.1225417366598
Iteration: 15, Func. Count: 174, Neg. LLF: 143.12251492350657
Iteration: 16, Func. Count: 185, Neg. LLF: 143.1225085302708
Iteration: 17, Func. Count: 195, Neg. LLF: 143.12250865440836
Optimization terminated successfully (Exit mode 0)
Current function value: 143.1225085302708
Iterations: 17
Function evaluations: 195
Gradient evaluations: 17
Iteration: 1, Func. Count: 13, Neg. LLF: 151.18281158401496
Iteration: 2, Func. Count: 28, Neg. LLF: 147.58860933433778
Iteration: 3, Func. Count: 41, Neg. LLF: 145.6834534249523
Iteration: 4, Func. Count: 53, Neg. LLF: 149.99029007664893
Iteration: 5, Func. Count: 66, Neg. LLF: 146.83463171844014
Iteration: 6, Func. Count: 79, Neg. LLF: 147.12294002392238
Iteration: 7, Func. Count: 92, Neg. LLF: 145.42734379943627
Iteration: 8, Func. Count: 105, Neg. LLF: 145.99079692385806
Iteration: 9, Func. Count: 118, Neg. LLF: 144.1879959930335
Iteration: 10, Func. Count: 130, Neg. LLF: 143.40826585447206
Iteration: 11, Func. Count: 142, Neg. LLF: 143.2448190064117
Iteration: 12, Func. Count: 154, Neg. LLF: 143.18688280115012
Iteration: 13, Func. Count: 166, Neg. LLF: 143.15505355897284
Iteration: 14, Func. Count: 178, Neg. LLF: 143.14722749702014
Iteration: 15, Func. Count: 190, Neg. LLF: 143.12504418185864
Iteration: 16, Func. Count: 202, Neg. LLF: 143.12307982349682
Iteration: 17, Func. Count: 214, Neg. LLF: 143.1225675576057
Iteration: 18, Func. Count: 226, Neg. LLF: 143.12251317511186
Iteration: 19, Func. Count: 238, Neg. LLF: 143.1225088437075
Iteration: 20, Func. Count: 249, Neg. LLF: 143.12250900128555
Optimization terminated successfully (Exit mode 0)
Current function value: 143.1225088437075
Iterations: 20
Function evaluations: 249
Gradient evaluations: 20
Iteration: 1, Func. Count: 14, Neg. LLF: 156.02381604707216
Iteration: 2, Func. Count: 30, Neg. LLF: 152.29330360272309
Iteration: 3, Func. Count: 44, Neg. LLF: 148.49529182369918
Iteration: 4, Func. Count: 58, Neg. LLF: 147.15257332251235
Iteration: 5, Func. Count: 71, Neg. LLF: 145.93800206051876
Iteration: 6, Func. Count: 84, Neg. LLF: 150.1375050556178
Iteration: 7, Func. Count: 99, Neg. LLF: 155.96078639259184
Iteration: 8, Func. Count: 113, Neg. LLF: 144.9791303404882
Iteration: 9, Func. Count: 126, Neg. LLF: 144.57710808914683
Iteration: 10, Func. Count: 139, Neg. LLF: 144.20810053723756
Iteration: 11, Func. Count: 152, Neg. LLF: 235.11733127135713
Iteration: 12, Func. Count: 166, Neg. LLF: 193.97154949969837
Iteration: 13, Func. Count: 180, Neg. LLF: 151.70449601177484
Iteration: 14, Func. Count: 194, Neg. LLF: 144.53653707300577
Iteration: 15, Func. Count: 208, Neg. LLF: 143.20327613249742
Iteration: 16, Func. Count: 221, Neg. LLF: 143.1327164768539
Iteration: 17, Func. Count: 234, Neg. LLF: 143.12376430219706
Iteration: 18, Func. Count: 247, Neg. LLF: 143.1230327226794
Iteration: 19, Func. Count: 260, Neg. LLF: 143.12251890904713
Iteration: 20, Func. Count: 273, Neg. LLF: 143.1225089756743
Iteration: 21, Func. Count: 285, Neg. LLF: 143.12250917096978
Optimization terminated successfully (Exit mode 0)
Current function value: 143.1225089756743
Iterations: 21
Function evaluations: 285
Gradient evaluations: 21
Iteration: 1, Func. Count: 11, Neg. LLF: 145.72697790928166
Iteration: 2, Func. Count: 21, Neg. LLF: 147.24743679439757
Iteration: 3, Func. Count: 33, Neg. LLF: 164.11307434113147
Iteration: 4, Func. Count: 44, Neg. LLF: 144.5793332175938
Iteration: 5, Func. Count: 54, Neg. LLF: 144.52594358486044
Iteration: 6, Func. Count: 64, Neg. LLF: 144.42493560772763
Iteration: 7, Func. Count: 74, Neg. LLF: 144.39251322252355
Iteration: 8, Func. Count: 84, Neg. LLF: 144.528773133035
Iteration: 9, Func. Count: 95, Neg. LLF: 144.5669668512771
Iteration: 10, Func. Count: 106, Neg. LLF: 144.3690561935115
Iteration: 11, Func. Count: 116, Neg. LLF: 144.3685085125665
Iteration: 12, Func. Count: 126, Neg. LLF: 144.36848016415775
Iteration: 13, Func. Count: 135, Neg. LLF: 144.3684802308394
Optimization terminated successfully (Exit mode 0)
Current function value: 144.36848016415775
Iterations: 13
Function evaluations: 135
Gradient evaluations: 13
Iteration: 1, Func. Count: 12, Neg. LLF: 159.1967384590418
Iteration: 2, Func. Count: 24, Neg. LLF: 152.21948903745925
Iteration: 3, Func. Count: 36, Neg. LLF: 164.35335680837002
Iteration: 4, Func. Count: 50, Neg. LLF: 145.45604762219503
Iteration: 5, Func. Count: 62, Neg. LLF: 146.75747266908002
Iteration: 6, Func. Count: 74, Neg. LLF: 146.55538270284686
Iteration: 7, Func. Count: 86, Neg. LLF: 143.2767162033696
Iteration: 8, Func. Count: 97, Neg. LLF: 143.33298009858967
Iteration: 9, Func. Count: 109, Neg. LLF: 143.14825931263977
Iteration: 10, Func. Count: 120, Neg. LLF: 143.12699240154257
Iteration: 11, Func. Count: 131, Neg. LLF: 143.12263483550328
Iteration: 12, Func. Count: 142, Neg. LLF: 143.122509512358
Iteration: 13, Func. Count: 153, Neg. LLF: 143.12250856838915
Optimization terminated successfully (Exit mode 0)
Current function value: 143.12250856838915
Iterations: 13
Function evaluations: 153
Gradient evaluations: 13
Iteration: 1, Func. Count: 13, Neg. LLF: 159.13614005689212
Iteration: 2, Func. Count: 26, Neg. LLF: 152.86968063124596
Iteration: 3, Func. Count: 39, Neg. LLF: 157.5611594176132
Iteration: 4, Func. Count: 53, Neg. LLF: 145.39414901220633
Iteration: 5, Func. Count: 65, Neg. LLF: 144.47358106425082
Iteration: 6, Func. Count: 77, Neg. LLF: 152.0087114315625
Iteration: 7, Func. Count: 90, Neg. LLF: 143.43446098774518
Iteration: 8, Func. Count: 102, Neg. LLF: 143.96882231984097
Iteration: 9, Func. Count: 116, Neg. LLF: 143.89802014465587
Iteration: 10, Func. Count: 129, Neg. LLF: 143.15880541838814
Iteration: 11, Func. Count: 141, Neg. LLF: 143.13295651346667
Iteration: 12, Func. Count: 153, Neg. LLF: 143.12466790804484
Iteration: 13, Func. Count: 165, Neg. LLF: 143.12264374597407
Iteration: 14, Func. Count: 177, Neg. LLF: 143.12254000825442
Iteration: 15, Func. Count: 189, Neg. LLF: 143.1225102995397
Iteration: 16, Func. Count: 201, Neg. LLF: 143.1225086315061
Iteration: 17, Func. Count: 212, Neg. LLF: 143.12250875567224
Optimization terminated successfully (Exit mode 0)
Current function value: 143.1225086315061
Iterations: 17
Function evaluations: 212
Gradient evaluations: 17
Iteration: 1, Func. Count: 14, Neg. LLF: 156.10242809700634
Iteration: 2, Func. Count: 30, Neg. LLF: 146.87713280198793
Iteration: 3, Func. Count: 43, Neg. LLF: 146.53978421029134
Iteration: 4, Func. Count: 58, Neg. LLF: 168.04934618180582
Iteration: 5, Func. Count: 72, Neg. LLF: 146.3086840646673
Iteration: 6, Func. Count: 86, Neg. LLF: 144.8385224515951
Iteration: 7, Func. Count: 99, Neg. LLF: 146.52652301497332
Iteration: 8, Func. Count: 113, Neg. LLF: 144.03711670102498
Iteration: 9, Func. Count: 126, Neg. LLF: 144.62486115407157
Iteration: 10, Func. Count: 140, Neg. LLF: 143.25002996269833
Iteration: 11, Func. Count: 153, Neg. LLF: 143.3258430044699
Iteration: 12, Func. Count: 167, Neg. LLF: 143.13425727726113
Iteration: 13, Func. Count: 180, Neg. LLF: 143.12425365327167
Iteration: 14, Func. Count: 193, Neg. LLF: 143.1226437268212
Iteration: 15, Func. Count: 206, Neg. LLF: 143.12252999135973
Iteration: 16, Func. Count: 219, Neg. LLF: 143.12251169088708
Iteration: 17, Func. Count: 232, Neg. LLF: 143.12250853144738
Iteration: 18, Func. Count: 244, Neg. LLF: 143.12250868901882
Optimization terminated successfully (Exit mode 0)
Current function value: 143.12250853144738
Iterations: 18
Function evaluations: 244
Gradient evaluations: 18
Iteration: 1, Func. Count: 15, Neg. LLF: 156.1676375695973
Iteration: 2, Func. Count: 32, Neg. LLF: 149.18183420236372
Iteration: 3, Func. Count: 47, Neg. LLF: 148.14645516954363
Iteration: 4, Func. Count: 62, Neg. LLF: 147.72375853473952
Iteration: 5, Func. Count: 77, Neg. LLF: 146.40640776405792
Iteration: 6, Func. Count: 91, Neg. LLF: 156.8222103347412
Iteration: 7, Func. Count: 107, Neg. LLF: 145.23299432606643
Iteration: 8, Func. Count: 121, Neg. LLF: 145.09833466555534
Iteration: 9, Func. Count: 136, Neg. LLF: 144.90565473094597
Iteration: 10, Func. Count: 150, Neg. LLF: 143.9994230629544
Iteration: 11, Func. Count: 164, Neg. LLF: 143.36646050527645
Iteration: 12, Func. Count: 178, Neg. LLF: 143.45625369318992
Iteration: 13, Func. Count: 193, Neg. LLF: 143.30347936420569
Iteration: 14, Func. Count: 208, Neg. LLF: 143.194705859844
Iteration: 15, Func. Count: 222, Neg. LLF: 143.1763471809681
Iteration: 16, Func. Count: 236, Neg. LLF: 143.13719947228094
Iteration: 17, Func. Count: 250, Neg. LLF: 143.12459331635353
Iteration: 18, Func. Count: 264, Neg. LLF: 143.1225629491081
Iteration: 19, Func. Count: 278, Neg. LLF: 143.1225123916851
Iteration: 20, Func. Count: 292, Neg. LLF: 143.12250874647498
Iteration: 21, Func. Count: 305, Neg. LLF: 143.12250894182657
Optimization terminated successfully (Exit mode 0)
Current function value: 143.12250874647498
Iterations: 21
Function evaluations: 305
Gradient evaluations: 21
Iteration: 1, Func. Count: 8, Neg. LLF: 145.06622942509404
Iteration: 2, Func. Count: 16, Neg. LLF: 145.6614552423069
Iteration: 3, Func. Count: 26, Neg. LLF: 146.10943035782176
Iteration: 4, Func. Count: 36, Neg. LLF: 143.92146609616668
Iteration: 5, Func. Count: 44, Neg. LLF: 143.26117531310075
Iteration: 6, Func. Count: 51, Neg. LLF: 1776.5315342556141
Iteration: 7, Func. Count: 60, Neg. LLF: 142.92525154461583
Iteration: 8, Func. Count: 67, Neg. LLF: 142.5639752119252
Iteration: 9, Func. Count: 74, Neg. LLF: 142.46327983325784
Iteration: 10, Func. Count: 81, Neg. LLF: 142.43232061203446
Iteration: 11, Func. Count: 88, Neg. LLF: 142.40848014613974
Iteration: 12, Func. Count: 95, Neg. LLF: 142.40722513405433
Iteration: 13, Func. Count: 102, Neg. LLF: 142.40638880486426
Iteration: 14, Func. Count: 109, Neg. LLF: 142.4063804010413
Iteration: 15, Func. Count: 116, Neg. LLF: 142.40637916621813
Iteration: 16, Func. Count: 122, Neg. LLF: 142.40637916244245
Optimization terminated successfully (Exit mode 0)
Current function value: 142.40637916621813
Iterations: 16
Function evaluations: 122
Gradient evaluations: 16
Iteration: 1, Func. Count: 9, Neg. LLF: 145.30442759632456
Iteration: 2, Func. Count: 17, Neg. LLF: 143.09950079555017
Iteration: 3, Func. Count: 25, Neg. LLF: 149.22847475839293
Iteration: 4, Func. Count: 37, Neg. LLF: 159.32362821407
Iteration: 5, Func. Count: 46, Neg. LLF: 143.43240735694766
Iteration: 6, Func. Count: 55, Neg. LLF: 142.60949907872148
Iteration: 7, Func. Count: 63, Neg. LLF: 161.01127159115504
Iteration: 8, Func. Count: 72, Neg. LLF: 142.5481061607831
Iteration: 9, Func. Count: 80, Neg. LLF: 142.4533515269166
Iteration: 10, Func. Count: 88, Neg. LLF: 142.42307886514985
Iteration: 11, Func. Count: 96, Neg. LLF: 142.41464173252965
Iteration: 12, Func. Count: 104, Neg. LLF: 142.41133186493312
Iteration: 13, Func. Count: 112, Neg. LLF: 142.40686091027112
Iteration: 14, Func. Count: 120, Neg. LLF: 142.4064311977923
Iteration: 15, Func. Count: 128, Neg. LLF: 142.40637953686374
Iteration: 16, Func. Count: 136, Neg. LLF: 142.40637887133695
Optimization terminated successfully (Exit mode 0)
Current function value: 142.40637887133695
Iterations: 16
Function evaluations: 136
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 145.272249657943
Iteration: 2, Func. Count: 19, Neg. LLF: 144.00311663888743
Iteration: 3, Func. Count: 29, Neg. LLF: 155.24328228141653
Iteration: 4, Func. Count: 40, Neg. LLF: 148.04567463788618
Iteration: 5, Func. Count: 53, Neg. LLF: 165.14632717606224
Iteration: 6, Func. Count: 63, Neg. LLF: 142.64519146580474
Iteration: 7, Func. Count: 73, Neg. LLF: 144.64137900648785
Iteration: 8, Func. Count: 83, Neg. LLF: 142.47606847815592
Iteration: 9, Func. Count: 92, Neg. LLF: 142.45867538343228
Iteration: 10, Func. Count: 101, Neg. LLF: 142.43170598396216
Iteration: 11, Func. Count: 110, Neg. LLF: 142.42231413228805
Iteration: 12, Func. Count: 119, Neg. LLF: 142.4106971689154
Iteration: 13, Func. Count: 128, Neg. LLF: 142.4069364656053
Iteration: 14, Func. Count: 137, Neg. LLF: 142.40641666654855
Iteration: 15, Func. Count: 146, Neg. LLF: 142.4063799587574
Iteration: 16, Func. Count: 155, Neg. LLF: 142.40637890460647
Iteration: 17, Func. Count: 163, Neg. LLF: 142.40637903810156
Optimization terminated successfully (Exit mode 0)
Current function value: 142.40637890460647
Iterations: 17
Function evaluations: 163
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 144.76487698330644
Iteration: 2, Func. Count: 21, Neg. LLF: 144.58397663875215
Iteration: 3, Func. Count: 32, Neg. LLF: 148.1648654448702
Iteration: 4, Func. Count: 45, Neg. LLF: 148.75049339124826
Iteration: 5, Func. Count: 58, Neg. LLF: 152.62456539978217
Iteration: 6, Func. Count: 69, Neg. LLF: 145.38147973329458
Iteration: 7, Func. Count: 80, Neg. LLF: 145.0662238297147
Iteration: 8, Func. Count: 91, Neg. LLF: 143.8793439778397
Iteration: 9, Func. Count: 102, Neg. LLF: 142.7174777619107
Iteration: 10, Func. Count: 112, Neg. LLF: 142.5979400345777
Iteration: 11, Func. Count: 122, Neg. LLF: 142.4535080289154
Iteration: 12, Func. Count: 132, Neg. LLF: 142.41423635762987
Iteration: 13, Func. Count: 142, Neg. LLF: 142.40818137573672
Iteration: 14, Func. Count: 152, Neg. LLF: 142.40661992242477
Iteration: 15, Func. Count: 162, Neg. LLF: 142.40638979660525
Iteration: 16, Func. Count: 172, Neg. LLF: 142.40637926739234
Iteration: 17, Func. Count: 181, Neg. LLF: 142.40637942890146
Optimization terminated successfully (Exit mode 0)
Current function value: 142.40637926739234
Iterations: 17
Function evaluations: 181
Gradient evaluations: 17
Iteration: 1, Func. Count: 12, Neg. LLF: 144.77091965322703
Iteration: 2, Func. Count: 23, Neg. LLF: 144.54874479980015
Iteration: 3, Func. Count: 35, Neg. LLF: 148.21335081587836
Iteration: 4, Func. Count: 49, Neg. LLF: 148.7303139150288
Iteration: 5, Func. Count: 63, Neg. LLF: 152.47531864984754
Iteration: 6, Func. Count: 75, Neg. LLF: 144.678768328817
Iteration: 7, Func. Count: 87, Neg. LLF: 143.31676664258345
Iteration: 8, Func. Count: 99, Neg. LLF: 142.9270106151682
Iteration: 9, Func. Count: 111, Neg. LLF: 142.6660411912277
Iteration: 10, Func. Count: 122, Neg. LLF: 142.51626311707702
Iteration: 11, Func. Count: 133, Neg. LLF: 142.41906025689843
Iteration: 12, Func. Count: 144, Neg. LLF: 142.40813763273675
Iteration: 13, Func. Count: 155, Neg. LLF: 142.4067332443635
Iteration: 14, Func. Count: 166, Neg. LLF: 142.4063883498183
Iteration: 15, Func. Count: 177, Neg. LLF: 142.40637928868122
Iteration: 16, Func. Count: 187, Neg. LLF: 142.406379466179
Optimization terminated successfully (Exit mode 0)
Current function value: 142.40637928868122
Iterations: 16
Function evaluations: 187
Gradient evaluations: 16
Iteration: 1, Func. Count: 9, Neg. LLF: 147.60516652913142
Iteration: 2, Func. Count: 18, Neg. LLF: 151.48409302853582
Iteration: 3, Func. Count: 27, Neg. LLF: 145.57097000640567
Iteration: 4, Func. Count: 37, Neg. LLF: 144.079814121907
Iteration: 5, Func. Count: 46, Neg. LLF: 160.73849337081484
Iteration: 6, Func. Count: 56, Neg. LLF: 143.11842960272122
Iteration: 7, Func. Count: 64, Neg. LLF: 146.31877345419386
Iteration: 8, Func. Count: 73, Neg. LLF: 144.91810292321836
Iteration: 9, Func. Count: 83, Neg. LLF: 142.7239191898262
Iteration: 10, Func. Count: 91, Neg. LLF: 142.59391402196042
Iteration: 11, Func. Count: 99, Neg. LLF: 142.50651493783818
Iteration: 12, Func. Count: 107, Neg. LLF: 142.4316163782143
Iteration: 13, Func. Count: 115, Neg. LLF: 142.39759623557072
Iteration: 14, Func. Count: 123, Neg. LLF: 142.3946445012677
Iteration: 15, Func. Count: 131, Neg. LLF: 142.39334690897417
Iteration: 16, Func. Count: 139, Neg. LLF: 142.3933035129831
Iteration: 17, Func. Count: 147, Neg. LLF: 142.39329844471126
Iteration: 18, Func. Count: 154, Neg. LLF: 142.39329844328017
Optimization terminated successfully (Exit mode 0)
Current function value: 142.39329844471126
Iterations: 18
Function evaluations: 154
Gradient evaluations: 18
Iteration: 1, Func. Count: 10, Neg. LLF: 145.30599485991516
Iteration: 2, Func. Count: 19, Neg. LLF: 143.89769868643052
Iteration: 3, Func. Count: 29, Neg. LLF: 154.6607123712633
Iteration: 4, Func. Count: 40, Neg. LLF: 147.69225741619965
Iteration: 5, Func. Count: 54, Neg. LLF: 162.9292389480093
Iteration: 6, Func. Count: 64, Neg. LLF: 142.59938627090725
Iteration: 7, Func. Count: 74, Neg. LLF: 142.7170558525955
Iteration: 8, Func. Count: 84, Neg. LLF: 142.45777234208887
Iteration: 9, Func. Count: 93, Neg. LLF: 142.42741313087834
Iteration: 10, Func. Count: 102, Neg. LLF: 142.4111469980597
Iteration: 11, Func. Count: 111, Neg. LLF: 142.40550273078685
Iteration: 12, Func. Count: 120, Neg. LLF: 142.40013080673293
Iteration: 13, Func. Count: 129, Neg. LLF: 142.3953571416946
Iteration: 14, Func. Count: 138, Neg. LLF: 142.39355697070158
Iteration: 15, Func. Count: 147, Neg. LLF: 142.39332507034987
Iteration: 16, Func. Count: 156, Neg. LLF: 142.39329862848143
Iteration: 17, Func. Count: 164, Neg. LLF: 142.39329868909547
Optimization terminated successfully (Exit mode 0)
Current function value: 142.39329862848143
Iterations: 17
Function evaluations: 164
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 145.2765804927391
Iteration: 2, Func. Count: 21, Neg. LLF: 143.9940313770874
Iteration: 3, Func. Count: 32, Neg. LLF: 154.16794585452806
Iteration: 4, Func. Count: 44, Neg. LLF: 146.71830016733284
Iteration: 5, Func. Count: 59, Neg. LLF: 162.1323734095282
Iteration: 6, Func. Count: 70, Neg. LLF: 142.6719954884683
Iteration: 7, Func. Count: 81, Neg. LLF: 143.2489645498984
Iteration: 8, Func. Count: 92, Neg. LLF: 142.47800042916325
Iteration: 9, Func. Count: 102, Neg. LLF: 142.433739856118
Iteration: 10, Func. Count: 112, Neg. LLF: 142.41760550141785
Iteration: 11, Func. Count: 122, Neg. LLF: 142.41148513187042
Iteration: 12, Func. Count: 132, Neg. LLF: 142.404282772988
Iteration: 13, Func. Count: 142, Neg. LLF: 142.39614560961408
Iteration: 14, Func. Count: 152, Neg. LLF: 142.39378149899056
Iteration: 15, Func. Count: 162, Neg. LLF: 142.39332413459442
Iteration: 16, Func. Count: 172, Neg. LLF: 142.39329886864724
Iteration: 17, Func. Count: 181, Neg. LLF: 142.39329900313462
Optimization terminated successfully (Exit mode 0)
Current function value: 142.39329886864724
Iterations: 17
Function evaluations: 181
Gradient evaluations: 17
Iteration: 1, Func. Count: 12, Neg. LLF: 145.56068910419611
Iteration: 2, Func. Count: 24, Neg. LLF: 144.94898497240038
Iteration: 3, Func. Count: 36, Neg. LLF: 148.78990617035717
Iteration: 4, Func. Count: 49, Neg. LLF: 144.59621776450322
Iteration: 5, Func. Count: 61, Neg. LLF: 184.61437392275192
Iteration: 6, Func. Count: 73, Neg. LLF: 143.04863239429739
Iteration: 7, Func. Count: 84, Neg. LLF: 143.93481829888626
Iteration: 8, Func. Count: 96, Neg. LLF: 160.27950650603105
Iteration: 9, Func. Count: 109, Neg. LLF: 142.78840861303277
Iteration: 10, Func. Count: 120, Neg. LLF: 142.6183469602295
Iteration: 11, Func. Count: 131, Neg. LLF: 142.4757173644141
Iteration: 12, Func. Count: 142, Neg. LLF: 142.42844662674594
Iteration: 13, Func. Count: 153, Neg. LLF: 142.39700155946156
Iteration: 14, Func. Count: 164, Neg. LLF: 142.39421205916028
Iteration: 15, Func. Count: 175, Neg. LLF: 142.39332592002106
Iteration: 16, Func. Count: 186, Neg. LLF: 142.39330016107866
Iteration: 17, Func. Count: 197, Neg. LLF: 142.3932984432758
Iteration: 18, Func. Count: 207, Neg. LLF: 142.39329860997518
Optimization terminated successfully (Exit mode 0)
Current function value: 142.3932984432758
Iterations: 18
Function evaluations: 207
Gradient evaluations: 18
Iteration: 1, Func. Count: 13, Neg. LLF: 145.6492693853223
Iteration: 2, Func. Count: 26, Neg. LLF: 144.9799131120852
Iteration: 3, Func. Count: 39, Neg. LLF: 149.3153813612609
Iteration: 4, Func. Count: 53, Neg. LLF: 144.71246295597473
Iteration: 5, Func. Count: 66, Neg. LLF: 178.34923002038371
Iteration: 6, Func. Count: 79, Neg. LLF: 143.1213043137353
Iteration: 7, Func. Count: 91, Neg. LLF: 143.69307631844086
Iteration: 8, Func. Count: 105, Neg. LLF: 150.05944356121657
Iteration: 9, Func. Count: 119, Neg. LLF: 142.9868623938671
Iteration: 10, Func. Count: 132, Neg. LLF: 142.6681241879032
Iteration: 11, Func. Count: 144, Neg. LLF: 142.54447493440242
Iteration: 12, Func. Count: 156, Neg. LLF: 142.46079430244296
Iteration: 13, Func. Count: 168, Neg. LLF: 142.42180371962425
Iteration: 14, Func. Count: 180, Neg. LLF: 142.39356457750145
Iteration: 15, Func. Count: 192, Neg. LLF: 142.39334065251467
Iteration: 16, Func. Count: 204, Neg. LLF: 142.39329863914634
Iteration: 17, Func. Count: 215, Neg. LLF: 142.39329882031055
Optimization terminated successfully (Exit mode 0)
Current function value: 142.39329863914634
Iterations: 17
Function evaluations: 215
Gradient evaluations: 17
Iteration: 1, Func. Count: 10, Neg. LLF: 145.96735846443082
Iteration: 2, Func. Count: 20, Neg. LLF: 146.2655111239054
Iteration: 3, Func. Count: 31, Neg. LLF: 145.9896254992105
Iteration: 4, Func. Count: 41, Neg. LLF: 143.7381516647127
Iteration: 5, Func. Count: 51, Neg. LLF: 732.759450912743
Iteration: 6, Func. Count: 61, Neg. LLF: 142.62588286187236
Iteration: 7, Func. Count: 70, Neg. LLF: 163.66706992006124
Iteration: 8, Func. Count: 80, Neg. LLF: 153.49373291954313
Iteration: 9, Func. Count: 91, Neg. LLF: 142.34610313204055
Iteration: 10, Func. Count: 100, Neg. LLF: 142.29141541748007
Iteration: 11, Func. Count: 109, Neg. LLF: 142.16151140406055
Iteration: 12, Func. Count: 118, Neg. LLF: 142.12621335360112
Iteration: 13, Func. Count: 127, Neg. LLF: 142.11320288093432
Iteration: 14, Func. Count: 136, Neg. LLF: 142.11224571431532
Iteration: 15, Func. Count: 145, Neg. LLF: 142.11190038343867
Iteration: 16, Func. Count: 154, Neg. LLF: 142.11187193777585
Iteration: 17, Func. Count: 163, Neg. LLF: 142.11186936262493
Iteration: 18, Func. Count: 171, Neg. LLF: 142.11186936084223
Optimization terminated successfully (Exit mode 0)
Current function value: 142.11186936262493
Iterations: 18
Function evaluations: 171
Gradient evaluations: 18
Iteration: 1, Func. Count: 11, Neg. LLF: 145.2940946267314
Iteration: 2, Func. Count: 21, Neg. LLF: 143.5810866859299
Iteration: 3, Func. Count: 32, Neg. LLF: 157.80794603869356
Iteration: 4, Func. Count: 44, Neg. LLF: 150.49479627377863
Iteration: 5, Func. Count: 58, Neg. LLF: 166.05540462514242
Iteration: 6, Func. Count: 69, Neg. LLF: 142.26584103949145
Iteration: 7, Func. Count: 79, Neg. LLF: 142.69808855883167
Iteration: 8, Func. Count: 90, Neg. LLF: 142.16534055282114
Iteration: 9, Func. Count: 100, Neg. LLF: 142.15275128464145
Iteration: 10, Func. Count: 110, Neg. LLF: 142.12632097181248
Iteration: 11, Func. Count: 120, Neg. LLF: 142.11274265940253
Iteration: 12, Func. Count: 130, Neg. LLF: 142.11203749952736
Iteration: 13, Func. Count: 140, Neg. LLF: 142.1119630356337
Iteration: 14, Func. Count: 150, Neg. LLF: 142.11190560700652
Iteration: 15, Func. Count: 160, Neg. LLF: 142.1118751575974
Iteration: 16, Func. Count: 170, Neg. LLF: 142.11186968141206
Iteration: 17, Func. Count: 179, Neg. LLF: 142.11186976026
Optimization terminated successfully (Exit mode 0)
Current function value: 142.11186968141206
Iterations: 17
Function evaluations: 179
Gradient evaluations: 17
Iteration: 1, Func. Count: 12, Neg. LLF: 145.26615790552592
Iteration: 2, Func. Count: 23, Neg. LLF: 143.6294999541408
Iteration: 3, Func. Count: 35, Neg. LLF: 157.75544621733178
Iteration: 4, Func. Count: 48, Neg. LLF: 149.88706610161748
Iteration: 5, Func. Count: 63, Neg. LLF: 165.91036523960753
Iteration: 6, Func. Count: 75, Neg. LLF: 142.29305937167976
Iteration: 7, Func. Count: 86, Neg. LLF: 142.7143601456149
Iteration: 8, Func. Count: 98, Neg. LLF: 142.1846611020683
Iteration: 9, Func. Count: 109, Neg. LLF: 142.16537450632808
Iteration: 10, Func. Count: 120, Neg. LLF: 142.1379615256779
Iteration: 11, Func. Count: 131, Neg. LLF: 142.11431280116796
Iteration: 12, Func. Count: 142, Neg. LLF: 142.11293669811005
Iteration: 13, Func. Count: 153, Neg. LLF: 142.11247926307252
Iteration: 14, Func. Count: 164, Neg. LLF: 142.11187459742953
Iteration: 15, Func. Count: 175, Neg. LLF: 142.1118695885121
Iteration: 16, Func. Count: 185, Neg. LLF: 142.11186975527406
Optimization terminated successfully (Exit mode 0)
Current function value: 142.1118695885121
Iterations: 16
Function evaluations: 185
Gradient evaluations: 16
Iteration: 1, Func. Count: 13, Neg. LLF: 144.7730829225197
Iteration: 2, Func. Count: 25, Neg. LLF: 144.17271757877108
Iteration: 3, Func. Count: 38, Neg. LLF: 148.1101606459821
Iteration: 4, Func. Count: 53, Neg. LLF: 144.98204590660416
Iteration: 5, Func. Count: 70, Neg. LLF: 152.17212292068274
Iteration: 6, Func. Count: 83, Neg. LLF: 143.79443756905155
Iteration: 7, Func. Count: 96, Neg. LLF: 143.18405509240785
Iteration: 8, Func. Count: 109, Neg. LLF: 142.46194818956525
Iteration: 9, Func. Count: 121, Neg. LLF: 142.26113302833704
Iteration: 10, Func. Count: 133, Neg. LLF: 142.1915124559242
Iteration: 11, Func. Count: 145, Neg. LLF: 142.14145484206514
Iteration: 12, Func. Count: 157, Neg. LLF: 142.1125483072239
Iteration: 13, Func. Count: 169, Neg. LLF: 142.1119160740499
Iteration: 14, Func. Count: 181, Neg. LLF: 142.11188114560017
Iteration: 15, Func. Count: 193, Neg. LLF: 142.11187016344778
Iteration: 16, Func. Count: 205, Neg. LLF: 142.11186940570687
Optimization terminated successfully (Exit mode 0)
Current function value: 142.11186940570687
Iterations: 16
Function evaluations: 205
Gradient evaluations: 16
Iteration: 1, Func. Count: 14, Neg. LLF: 144.77868082031952
Iteration: 2, Func. Count: 27, Neg. LLF: 144.16866616597042
Iteration: 3, Func. Count: 41, Neg. LLF: 148.13768802702984
Iteration: 4, Func. Count: 57, Neg. LLF: 144.94595346414445
Iteration: 5, Func. Count: 75, Neg. LLF: 152.10839491490813
Iteration: 6, Func. Count: 89, Neg. LLF: 144.2303300174629
Iteration: 7, Func. Count: 103, Neg. LLF: 143.90222945203791
Iteration: 8, Func. Count: 117, Neg. LLF: 142.51656155567898
Iteration: 9, Func. Count: 130, Neg. LLF: 142.2750141608658
Iteration: 10, Func. Count: 143, Neg. LLF: 142.1969600378135
Iteration: 11, Func. Count: 156, Neg. LLF: 142.12387677981616
Iteration: 12, Func. Count: 169, Neg. LLF: 142.1136162002908
Iteration: 13, Func. Count: 182, Neg. LLF: 142.1121818153035
Iteration: 14, Func. Count: 195, Neg. LLF: 142.11193341873073
Iteration: 15, Func. Count: 208, Neg. LLF: 142.11188158140308
Iteration: 16, Func. Count: 221, Neg. LLF: 142.11186960569503
Iteration: 17, Func. Count: 233, Neg. LLF: 142.11186987011052
Optimization terminated successfully (Exit mode 0)
Current function value: 142.11186960569503
Iterations: 17
Function evaluations: 233
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 145.20604677091495
Iteration: 2, Func. Count: 22, Neg. LLF: 144.80485212592168
Iteration: 3, Func. Count: 35, Neg. LLF: 143.63420979684582
Iteration: 4, Func. Count: 46, Neg. LLF: 166.08759873217693
Iteration: 5, Func. Count: 58, Neg. LLF: 142.66411125293905
Iteration: 6, Func. Count: 68, Neg. LLF: 635.9590892964942
Iteration: 7, Func. Count: 79, Neg. LLF: 142.70231755045603
Iteration: 8, Func. Count: 90, Neg. LLF: 142.42145069071984
Iteration: 9, Func. Count: 100, Neg. LLF: 142.3531546783857
Iteration: 10, Func. Count: 110, Neg. LLF: 142.64113089341473
Iteration: 11, Func. Count: 121, Neg. LLF: 142.16573062618647
Iteration: 12, Func. Count: 131, Neg. LLF: 142.0933448130015
Iteration: 13, Func. Count: 141, Neg. LLF: 142.09094503955245
Iteration: 14, Func. Count: 151, Neg. LLF: 142.09070562285143
Iteration: 15, Func. Count: 161, Neg. LLF: 142.09060178391204
Iteration: 16, Func. Count: 170, Neg. LLF: 142.09060178828932
Optimization terminated successfully (Exit mode 0)
Current function value: 142.09060178391204
Iterations: 16
Function evaluations: 170
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 147.61720224033346
Iteration: 2, Func. Count: 24, Neg. LLF: 147.66510466659872
Iteration: 3, Func. Count: 36, Neg. LLF: 182.11718905876592
Iteration: 4, Func. Count: 50, Neg. LLF: 143.9046708210662
Iteration: 5, Func. Count: 62, Neg. LLF: 143.333377039564
Iteration: 6, Func. Count: 73, Neg. LLF: 146.80746532825316
Iteration: 7, Func. Count: 85, Neg. LLF: 159.6304902886726
Iteration: 8, Func. Count: 98, Neg. LLF: 142.5252421991928
Iteration: 9, Func. Count: 110, Neg. LLF: 142.5574360328527
Iteration: 10, Func. Count: 122, Neg. LLF: 142.30147542056085
Iteration: 11, Func. Count: 134, Neg. LLF: 142.14975899799686
Iteration: 12, Func. Count: 145, Neg. LLF: 142.13622816100553
Iteration: 13, Func. Count: 156, Neg. LLF: 142.11063494403848
Iteration: 14, Func. Count: 167, Neg. LLF: 142.10060375401193
Iteration: 15, Func. Count: 178, Neg. LLF: 142.0926381752635
Iteration: 16, Func. Count: 189, Neg. LLF: 142.09120054831652
Iteration: 17, Func. Count: 200, Neg. LLF: 142.09064121063986
Iteration: 18, Func. Count: 211, Neg. LLF: 142.09060620426078
Iteration: 19, Func. Count: 222, Neg. LLF: 142.09060167583544
Iteration: 20, Func. Count: 232, Neg. LLF: 142.09060175064607
Optimization terminated successfully (Exit mode 0)
Current function value: 142.09060167583544
Iterations: 20
Function evaluations: 232
Gradient evaluations: 20
Iteration: 1, Func. Count: 13, Neg. LLF: 145.26455295998807
Iteration: 2, Func. Count: 25, Neg. LLF: 143.6366353348145
Iteration: 3, Func. Count: 38, Neg. LLF: 180.53557366872917
Iteration: 4, Func. Count: 53, Neg. LLF: 149.67908527176962
Iteration: 5, Func. Count: 70, Neg. LLF: 148.87634203453894
Iteration: 6, Func. Count: 84, Neg. LLF: 165.39311669855923
Iteration: 7, Func. Count: 97, Neg. LLF: 142.28170116195932
Iteration: 8, Func. Count: 110, Neg. LLF: 142.24519618586646
Iteration: 9, Func. Count: 122, Neg. LLF: 142.1817330415396
Iteration: 10, Func. Count: 134, Neg. LLF: 142.1584034317848
Iteration: 11, Func. Count: 146, Neg. LLF: 142.1109758326365
Iteration: 12, Func. Count: 158, Neg. LLF: 142.1020896323842
Iteration: 13, Func. Count: 170, Neg. LLF: 142.09425808058543
Iteration: 14, Func. Count: 182, Neg. LLF: 142.0918042678584
Iteration: 15, Func. Count: 194, Neg. LLF: 142.09090544786127
Iteration: 16, Func. Count: 206, Neg. LLF: 142.09065898099487
Iteration: 17, Func. Count: 218, Neg. LLF: 142.09061558097906
Iteration: 18, Func. Count: 230, Neg. LLF: 142.0906047589321
Iteration: 19, Func. Count: 242, Neg. LLF: 142.090601681807
Iteration: 20, Func. Count: 253, Neg. LLF: 142.09060184288876
Optimization terminated successfully (Exit mode 0)
Current function value: 142.090601681807
Iterations: 20
Function evaluations: 253
Gradient evaluations: 20
Iteration: 1, Func. Count: 14, Neg. LLF: 144.7669013786769
Iteration: 2, Func. Count: 27, Neg. LLF: 144.1648851585391
Iteration: 3, Func. Count: 41, Neg. LLF: 158.99147513026986
Iteration: 4, Func. Count: 57, Neg. LLF: 144.9781566110827
Iteration: 5, Func. Count: 75, Neg. LLF: 152.9197679282733
Iteration: 6, Func. Count: 89, Neg. LLF: 143.35439818812253
Iteration: 7, Func. Count: 103, Neg. LLF: 142.8023542203566
Iteration: 8, Func. Count: 117, Neg. LLF: 157.36896181919735
Iteration: 9, Func. Count: 131, Neg. LLF: 142.37570853512162
Iteration: 10, Func. Count: 144, Neg. LLF: 142.3118093224108
Iteration: 11, Func. Count: 157, Neg. LLF: 144.61902809783817
Iteration: 12, Func. Count: 171, Neg. LLF: 142.23039912904636
Iteration: 13, Func. Count: 184, Neg. LLF: 142.1040932913776
Iteration: 14, Func. Count: 197, Neg. LLF: 142.0929025240655
Iteration: 15, Func. Count: 210, Neg. LLF: 142.09081356000533
Iteration: 16, Func. Count: 223, Neg. LLF: 142.09063362069702
Iteration: 17, Func. Count: 236, Neg. LLF: 142.09060345249105
Iteration: 18, Func. Count: 249, Neg. LLF: 142.09060149987377
Iteration: 19, Func. Count: 261, Neg. LLF: 142.09060169369693
Optimization terminated successfully (Exit mode 0)
Current function value: 142.09060149987377
Iterations: 19
Function evaluations: 261
Gradient evaluations: 19
Iteration: 1, Func. Count: 15, Neg. LLF: 144.78432607089582
Iteration: 2, Func. Count: 29, Neg. LLF: 144.21444098994812
Iteration: 3, Func. Count: 44, Neg. LLF: 158.24026997870357
Iteration: 4, Func. Count: 61, Neg. LLF: 145.21945358319925
Iteration: 5, Func. Count: 80, Neg. LLF: 153.04794009765402
Iteration: 6, Func. Count: 95, Neg. LLF: 152.3743156250765
Iteration: 7, Func. Count: 110, Neg. LLF: 170.47883339302535
Iteration: 8, Func. Count: 125, Neg. LLF: 142.66727698459343
Iteration: 9, Func. Count: 139, Neg. LLF: 142.4735564164265
Iteration: 10, Func. Count: 153, Neg. LLF: 142.3321071754119
Iteration: 11, Func. Count: 167, Neg. LLF: 144.17895268624946
Iteration: 12, Func. Count: 182, Neg. LLF: 142.27079916416187
Iteration: 13, Func. Count: 196, Neg. LLF: 142.20382349236877
Iteration: 14, Func. Count: 210, Neg. LLF: 142.09726916372475
Iteration: 15, Func. Count: 224, Neg. LLF: 142.0912275054978
Iteration: 16, Func. Count: 238, Neg. LLF: 142.09070086260652
Iteration: 17, Func. Count: 252, Neg. LLF: 142.09060640498075
Iteration: 18, Func. Count: 266, Neg. LLF: 142.09060247150884
Iteration: 19, Func. Count: 280, Neg. LLF: 142.09060135164938
Iteration: 20, Func. Count: 293, Neg. LLF: 142.09060162067038
Optimization terminated successfully (Exit mode 0)
Current function value: 142.09060135164938
Iterations: 20
Function evaluations: 293
Gradient evaluations: 20
Iteration: 1, Func. Count: 12, Neg. LLF: 142.37974203908382
Iteration: 2, Func. Count: 23, Neg. LLF: 145.35473369407063
Iteration: 3, Func. Count: 36, Neg. LLF: 151.65618587272579
Iteration: 4, Func. Count: 48, Neg. LLF: 143.47732092491086
Iteration: 5, Func. Count: 60, Neg. LLF: 145.24258713978566
Iteration: 6, Func. Count: 72, Neg. LLF: 141.94819263419507
Iteration: 7, Func. Count: 84, Neg. LLF: 140.41598402428815
Iteration: 8, Func. Count: 96, Neg. LLF: 140.7155998601144
Iteration: 9, Func. Count: 108, Neg. LLF: 142.92479483612598
Iteration: 10, Func. Count: 120, Neg. LLF: 139.77407320503391
Iteration: 11, Func. Count: 131, Neg. LLF: 146.050531837514
Iteration: 12, Func. Count: 144, Neg. LLF: 143.0037379529139
Iteration: 13, Func. Count: 158, Neg. LLF: 139.6805879983648
Iteration: 14, Func. Count: 169, Neg. LLF: 139.66413213520454
Iteration: 15, Func. Count: 180, Neg. LLF: 139.65756137648006
Iteration: 16, Func. Count: 191, Neg. LLF: 139.65716273466668
Iteration: 17, Func. Count: 202, Neg. LLF: 139.6571522557564
Iteration: 18, Func. Count: 212, Neg. LLF: 139.65715241324997
Optimization terminated successfully (Exit mode 0)
Current function value: 139.6571522557564
Iterations: 18
Function evaluations: 212
Gradient evaluations: 18
Iteration: 1, Func. Count: 13, Neg. LLF: 152.56671323132278
Iteration: 2, Func. Count: 26, Neg. LLF: 144.15905867402356
Iteration: 3, Func. Count: 39, Neg. LLF: 162.45914527502086
Iteration: 4, Func. Count: 54, Neg. LLF: 140.6831499314817
Iteration: 5, Func. Count: 66, Neg. LLF: 142.61094995543522
Iteration: 6, Func. Count: 79, Neg. LLF: 193.02370873507306
Iteration: 7, Func. Count: 92, Neg. LLF: 139.68371674045594
Iteration: 8, Func. Count: 104, Neg. LLF: 139.6774923235934
Iteration: 9, Func. Count: 117, Neg. LLF: 142.03059689371779
Iteration: 10, Func. Count: 131, Neg. LLF: 139.41033050726807
Iteration: 11, Func. Count: 143, Neg. LLF: 139.387567881478
Iteration: 12, Func. Count: 155, Neg. LLF: 139.358367813043
Iteration: 13, Func. Count: 167, Neg. LLF: 139.35261502553513
Iteration: 14, Func. Count: 179, Neg. LLF: 139.35032513731352
Iteration: 15, Func. Count: 191, Neg. LLF: 139.35030995863818
Iteration: 16, Func. Count: 203, Neg. LLF: 139.35030912989612
Optimization terminated successfully (Exit mode 0)
Current function value: 139.35030912989612
Iterations: 16
Function evaluations: 203
Gradient evaluations: 16
Iteration: 1, Func. Count: 14, Neg. LLF: 151.60209712715343
Iteration: 2, Func. Count: 28, Neg. LLF: 142.86832138325119
Iteration: 3, Func. Count: 42, Neg. LLF: 148.69216328635258
Iteration: 4, Func. Count: 58, Neg. LLF: 141.6711903323062
Iteration: 5, Func. Count: 72, Neg. LLF: 148.69919825840404
Iteration: 6, Func. Count: 86, Neg. LLF: 147.41442354862008
Iteration: 7, Func. Count: 100, Neg. LLF: 140.65942476531887
Iteration: 8, Func. Count: 114, Neg. LLF: 139.71704601604006
Iteration: 9, Func. Count: 127, Neg. LLF: 139.51437778250863
Iteration: 10, Func. Count: 140, Neg. LLF: 141.80214968990492
Iteration: 11, Func. Count: 155, Neg. LLF: 139.73868647807993
Iteration: 12, Func. Count: 169, Neg. LLF: 139.38975252593139
Iteration: 13, Func. Count: 182, Neg. LLF: 139.36145435632355
Iteration: 14, Func. Count: 195, Neg. LLF: 139.35204322201486
Iteration: 15, Func. Count: 208, Neg. LLF: 139.35056223767506
Iteration: 16, Func. Count: 221, Neg. LLF: 139.35031869620695
Iteration: 17, Func. Count: 234, Neg. LLF: 139.35030909842578
Iteration: 18, Func. Count: 246, Neg. LLF: 139.3503092589152
Optimization terminated successfully (Exit mode 0)
Current function value: 139.35030909842578
Iterations: 18
Function evaluations: 246
Gradient evaluations: 18
Iteration: 1, Func. Count: 15, Neg. LLF: 141.73261395471823
Iteration: 2, Func. Count: 29, Neg. LLF: 143.08892333511915
Iteration: 3, Func. Count: 46, Neg. LLF: 147.12570728118862
Iteration: 4, Func. Count: 61, Neg. LLF: 144.02257823400444
Iteration: 5, Func. Count: 76, Neg. LLF: 144.9310184098206
Iteration: 6, Func. Count: 91, Neg. LLF: 144.2236867996638
Iteration: 7, Func. Count: 106, Neg. LLF: 142.5913565179664
Iteration: 8, Func. Count: 121, Neg. LLF: 144.64274434342053
Iteration: 9, Func. Count: 136, Neg. LLF: 140.83528308712437
Iteration: 10, Func. Count: 151, Neg. LLF: 148.88430649778348
Iteration: 11, Func. Count: 166, Neg. LLF: 140.59205388914845
Iteration: 12, Func. Count: 181, Neg. LLF: 139.68295127251668
Iteration: 13, Func. Count: 196, Neg. LLF: 139.3728021609286
Iteration: 14, Func. Count: 210, Neg. LLF: 148.24518736817208
Iteration: 15, Func. Count: 226, Neg. LLF: 139.35460533004894
Iteration: 16, Func. Count: 240, Neg. LLF: 139.35065389050033
Iteration: 17, Func. Count: 254, Neg. LLF: 139.35047771230398
Iteration: 18, Func. Count: 268, Neg. LLF: 139.350313764758
Iteration: 19, Func. Count: 282, Neg. LLF: 139.35030982533584
Iteration: 20, Func. Count: 296, Neg. LLF: 139.35030887831687
Optimization terminated successfully (Exit mode 0)
Current function value: 139.35030887831687
Iterations: 20
Function evaluations: 296
Gradient evaluations: 20
Iteration: 1, Func. Count: 16, Neg. LLF: 141.74565750468562
Iteration: 2, Func. Count: 31, Neg. LLF: 143.34598887515986
Iteration: 3, Func. Count: 49, Neg. LLF: 147.07662897890157
Iteration: 4, Func. Count: 65, Neg. LLF: 143.9836798718101
Iteration: 5, Func. Count: 81, Neg. LLF: 145.16863442582397
Iteration: 6, Func. Count: 97, Neg. LLF: 144.05500850883666
Iteration: 7, Func. Count: 113, Neg. LLF: 154.20791364343395
Iteration: 8, Func. Count: 129, Neg. LLF: 144.0334539691339
Iteration: 9, Func. Count: 145, Neg. LLF: 141.1303286644154
Iteration: 10, Func. Count: 161, Neg. LLF: 145.23164849575483
Iteration: 11, Func. Count: 177, Neg. LLF: 139.47342070371835
Iteration: 12, Func. Count: 192, Neg. LLF: 148.35528017168986
Iteration: 13, Func. Count: 209, Neg. LLF: 139.3737477073036
Iteration: 14, Func. Count: 224, Neg. LLF: 140.19585710367596
Iteration: 15, Func. Count: 241, Neg. LLF: 139.35431548123015
Iteration: 16, Func. Count: 256, Neg. LLF: 139.35149448691956
Iteration: 17, Func. Count: 271, Neg. LLF: 139.3503991321073
Iteration: 18, Func. Count: 286, Neg. LLF: 139.35031198902493
Iteration: 19, Func. Count: 301, Neg. LLF: 139.35030912190203
Iteration: 20, Func. Count: 315, Neg. LLF: 139.35030926042697
Optimization terminated successfully (Exit mode 0)
Current function value: 139.35030912190203
Iterations: 20
Function evaluations: 315
Gradient evaluations: 20
Iteration: 1, Func. Count: 5, Neg. LLF: 154.62496832809367
Iteration: 2, Func. Count: 10, Neg. LLF: 160.03716464425875
Iteration: 3, Func. Count: 15, Neg. LLF: 144.92110419651556
Iteration: 4, Func. Count: 19, Neg. LLF: 144.8169569108693
Iteration: 5, Func. Count: 23, Neg. LLF: 144.77816700390233
Iteration: 6, Func. Count: 27, Neg. LLF: 144.7746752480709
Iteration: 7, Func. Count: 31, Neg. LLF: 144.7745909749809
Iteration: 8, Func. Count: 35, Neg. LLF: 144.77458867002673
Iteration: 9, Func. Count: 39, Neg. LLF: 144.77458749641949
Iteration: 10, Func. Count: 43, Neg. LLF: 144.77458658215537
Optimization terminated successfully (Exit mode 0)
Current function value: 144.77458658215537
Iterations: 10
Function evaluations: 43
Gradient evaluations: 10
Iteration: 1, Func. Count: 5, Neg. LLF: 155.73111765225156
Iteration: 2, Func. Count: 10, Neg. LLF: 161.852600974293
Iteration: 3, Func. Count: 15, Neg. LLF: 144.99055891592792
Iteration: 4, Func. Count: 19, Neg. LLF: 144.89671337088208
Iteration: 5, Func. Count: 23, Neg. LLF: 144.85615751398254
Iteration: 6, Func. Count: 27, Neg. LLF: 144.85140684355358
Iteration: 7, Func. Count: 31, Neg. LLF: 144.85121111494996
Iteration: 8, Func. Count: 35, Neg. LLF: 144.85119253598782
Iteration: 9, Func. Count: 39, Neg. LLF: 144.85117613080405
Iteration: 10, Func. Count: 43, Neg. LLF: 144.8511688731268
Iteration: 11, Func. Count: 47, Neg. LLF: 144.85116722703046
Iteration: 12, Func. Count: 50, Neg. LLF: 144.8511672270332
Optimization terminated successfully (Exit mode 0)
Current function value: 144.85116722703046
Iterations: 12
Function evaluations: 50
Gradient evaluations: 12
Iteration: 1, Func. Count: 6, Neg. LLF: 147.28330828755625
Iteration: 2, Func. Count: 11, Neg. LLF: 145.01208268761954
Iteration: 3, Func. Count: 16, Neg. LLF: 170.28968967756487
Iteration: 4, Func. Count: 23, Neg. LLF: 144.90401920329307
Iteration: 5, Func. Count: 28, Neg. LLF: 144.87692524465038
Iteration: 6, Func. Count: 33, Neg. LLF: 144.86433265731526
Iteration: 7, Func. Count: 38, Neg. LLF: 144.8538444098713
Iteration: 8, Func. Count: 43, Neg. LLF: 144.85134927895976
Iteration: 9, Func. Count: 48, Neg. LLF: 144.85117275166513
Iteration: 10, Func. Count: 53, Neg. LLF: 144.85116724950439
Iteration: 11, Func. Count: 57, Neg. LLF: 144.8511673119663
Optimization terminated successfully (Exit mode 0)
Current function value: 144.85116724950439
Iterations: 11
Function evaluations: 57
Gradient evaluations: 11
Iteration: 1, Func. Count: 7, Neg. LLF: 145.63912337662615
Iteration: 2, Func. Count: 13, Neg. LLF: 148.6529581735353
Iteration: 3, Func. Count: 21, Neg. LLF: 174.44129652262464
Iteration: 4, Func. Count: 28, Neg. LLF: 144.56290980314253
Iteration: 5, Func. Count: 34, Neg. LLF: 144.5420274907918
Iteration: 6, Func. Count: 40, Neg. LLF: 144.5325096788409
Iteration: 7, Func. Count: 46, Neg. LLF: 144.52167288512754
Iteration: 8, Func. Count: 52, Neg. LLF: 144.5184422711165
Iteration: 9, Func. Count: 58, Neg. LLF: 144.51783106300857
Iteration: 10, Func. Count: 64, Neg. LLF: 144.51781997218387
Iteration: 11, Func. Count: 69, Neg. LLF: 144.51781997221934
Optimization terminated successfully (Exit mode 0)
Current function value: 144.51781997218387
Iterations: 11
Function evaluations: 69
Gradient evaluations: 11
Iteration: 1, Func. Count: 8, Neg. LLF: 145.53998684263564
Iteration: 2, Func. Count: 15, Neg. LLF: 148.3984520257517
Iteration: 3, Func. Count: 24, Neg. LLF: 171.73477179554234
Iteration: 4, Func. Count: 32, Neg. LLF: 144.5626002992475
Iteration: 5, Func. Count: 39, Neg. LLF: 144.53979312002818
Iteration: 6, Func. Count: 46, Neg. LLF: 144.53108712111182
Iteration: 7, Func. Count: 53, Neg. LLF: 144.5197920512761
Iteration: 8, Func. Count: 60, Neg. LLF: 144.51802969617378
Iteration: 9, Func. Count: 67, Neg. LLF: 144.5178203824866
Iteration: 10, Func. Count: 73, Neg. LLF: 144.51782043776507
Optimization terminated successfully (Exit mode 0)
Current function value: 144.5178203824866
Iterations: 10
Function evaluations: 73
Gradient evaluations: 10
Iteration: 1, Func. Count: 9, Neg. LLF: 145.4841309300651
Iteration: 2, Func. Count: 17, Neg. LLF: 145.01441830098105
Iteration: 3, Func. Count: 25, Neg. LLF: 192.20380772913728
Iteration: 4, Func. Count: 36, Neg. LLF: 144.83442246118094
Iteration: 5, Func. Count: 45, Neg. LLF: 145.42804660864485
Iteration: 6, Func. Count: 54, Neg. LLF: 144.54797784926285
Iteration: 7, Func. Count: 62, Neg. LLF: 144.53573926796878
Iteration: 8, Func. Count: 70, Neg. LLF: 144.52362522874512
Iteration: 9, Func. Count: 78, Neg. LLF: 144.52028326971705
Iteration: 10, Func. Count: 86, Neg. LLF: 144.51789879066132
Iteration: 11, Func. Count: 94, Neg. LLF: 144.51782280670753
Iteration: 12, Func. Count: 102, Neg. LLF: 144.5178199489081
Iteration: 13, Func. Count: 109, Neg. LLF: 144.51782001150806
Optimization terminated successfully (Exit mode 0)
Current function value: 144.5178199489081
Iterations: 13
Function evaluations: 109
Gradient evaluations: 13
Iteration: 1, Func. Count: 6, Neg. LLF: 151.74661243199867
Iteration: 2, Func. Count: 12, Neg. LLF: 164.90759184186408
Iteration: 3, Func. Count: 18, Neg. LLF: 144.99412999259457
Iteration: 4, Func. Count: 23, Neg. LLF: 144.94372541986584
Iteration: 5, Func. Count: 28, Neg. LLF: 144.8745166981035
Iteration: 6, Func. Count: 33, Neg. LLF: 144.85349075280067
Iteration: 7, Func. Count: 38, Neg. LLF: 144.8518381144133
Iteration: 8, Func. Count: 43, Neg. LLF: 144.85141431407547
Iteration: 9, Func. Count: 48, Neg. LLF: 144.85129278481025
Iteration: 10, Func. Count: 53, Neg. LLF: 144.85118786212797
Iteration: 11, Func. Count: 58, Neg. LLF: 144.85116878087226
Iteration: 12, Func. Count: 63, Neg. LLF: 144.85116714837892
Iteration: 13, Func. Count: 67, Neg. LLF: 144.85116718482752
Optimization terminated successfully (Exit mode 0)
Current function value: 144.85116714837892
Iterations: 13
Function evaluations: 67
Gradient evaluations: 13
Iteration: 1, Func. Count: 7, Neg. LLF: 168.7388435741103
Iteration: 2, Func. Count: 15, Neg. LLF: 148.35689521399988
Iteration: 3, Func. Count: 22, Neg. LLF: 147.60118306957406
Iteration: 4, Func. Count: 28, Neg. LLF: 149.01815298556758
Iteration: 5, Func. Count: 35, Neg. LLF: 151.5491568538319
Iteration: 6, Func. Count: 42, Neg. LLF: 146.1859400902677
Iteration: 7, Func. Count: 48, Neg. LLF: 145.48352387375294
Iteration: 8, Func. Count: 54, Neg. LLF: 146.38994089540182
Iteration: 9, Func. Count: 61, Neg. LLF: 144.93836392499674
Iteration: 10, Func. Count: 67, Neg. LLF: 144.91493181494158
Iteration: 11, Func. Count: 73, Neg. LLF: 144.90288531364033
Iteration: 12, Func. Count: 79, Neg. LLF: 144.8957849344158
Iteration: 13, Func. Count: 85, Neg. LLF: 144.87957496559616
Iteration: 14, Func. Count: 91, Neg. LLF: 144.86259242488126
Iteration: 15, Func. Count: 97, Neg. LLF: 144.85254853111564
Iteration: 16, Func. Count: 103, Neg. LLF: 144.85129523681536
Iteration: 17, Func. Count: 109, Neg. LLF: 144.85117940038091
Iteration: 18, Func. Count: 115, Neg. LLF: 144.85116716733796
Iteration: 19, Func. Count: 120, Neg. LLF: 144.85116722973805
Optimization terminated successfully (Exit mode 0)
Current function value: 144.85116716733796
Iterations: 19
Function evaluations: 120
Gradient evaluations: 19
Iteration: 1, Func. Count: 8, Neg. LLF: 144.9071040249311
Iteration: 2, Func. Count: 15, Neg. LLF: 147.24148918874172
Iteration: 3, Func. Count: 24, Neg. LLF: 155.7353335332623
Iteration: 4, Func. Count: 32, Neg. LLF: 144.55885632324302
Iteration: 5, Func. Count: 39, Neg. LLF: 144.54527671002697
Iteration: 6, Func. Count: 46, Neg. LLF: 144.5310977467626
Iteration: 7, Func. Count: 53, Neg. LLF: 144.52066619129536
Iteration: 8, Func. Count: 60, Neg. LLF: 144.51844351695857
Iteration: 9, Func. Count: 67, Neg. LLF: 144.51782636118594
Iteration: 10, Func. Count: 74, Neg. LLF: 144.51781987751474
Iteration: 11, Func. Count: 80, Neg. LLF: 144.51781987750329
Optimization terminated successfully (Exit mode 0)
Current function value: 144.51781987751474
Iterations: 11
Function evaluations: 80
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 144.90549380864903
Iteration: 2, Func. Count: 17, Neg. LLF: 146.9050538670469
Iteration: 3, Func. Count: 27, Neg. LLF: 155.72862755539003
Iteration: 4, Func. Count: 36, Neg. LLF: 144.5643762477469
Iteration: 5, Func. Count: 44, Neg. LLF: 144.54395710190394
Iteration: 6, Func. Count: 52, Neg. LLF: 144.53030574039485
Iteration: 7, Func. Count: 60, Neg. LLF: 144.51944883478276
Iteration: 8, Func. Count: 68, Neg. LLF: 144.5182148609165
Iteration: 9, Func. Count: 76, Neg. LLF: 144.517821521371
Iteration: 10, Func. Count: 84, Neg. LLF: 144.51781986939332
Iteration: 11, Func. Count: 91, Neg. LLF: 144.51781992471538
Optimization terminated successfully (Exit mode 0)
Current function value: 144.51781986939332
Iterations: 11
Function evaluations: 91
Gradient evaluations: 11
Iteration: 1, Func. Count: 10, Neg. LLF: 145.25286713586965
Iteration: 2, Func. Count: 19, Neg. LLF: 145.64358885941004
Iteration: 3, Func. Count: 29, Neg. LLF: 155.6597696065934
Iteration: 4, Func. Count: 39, Neg. LLF: 144.5502937081328
Iteration: 5, Func. Count: 48, Neg. LLF: 144.579282494905
Iteration: 6, Func. Count: 58, Neg. LLF: 144.53701163348356
Iteration: 7, Func. Count: 67, Neg. LLF: 144.51848516030634
Iteration: 8, Func. Count: 76, Neg. LLF: 144.51785292361305
Iteration: 9, Func. Count: 85, Neg. LLF: 144.51781989211773
Iteration: 10, Func. Count: 93, Neg. LLF: 144.517819954637
Optimization terminated successfully (Exit mode 0)
Current function value: 144.51781989211773
Iterations: 10
Function evaluations: 93
Gradient evaluations: 10
Iteration: 1, Func. Count: 7, Neg. LLF: 155.4250158185197
Iteration: 2, Func. Count: 15, Neg. LLF: 145.14223722246416
Iteration: 3, Func. Count: 21, Neg. LLF: 149.9498680759852
Iteration: 4, Func. Count: 28, Neg. LLF: 144.69605188028967
Iteration: 5, Func. Count: 34, Neg. LLF: 144.60087908635785
Iteration: 6, Func. Count: 40, Neg. LLF: 144.53747990716187
Iteration: 7, Func. Count: 46, Neg. LLF: 144.52642573686293
Iteration: 8, Func. Count: 52, Neg. LLF: 144.52257227538303
Iteration: 9, Func. Count: 58, Neg. LLF: 144.52245678126516
Iteration: 10, Func. Count: 64, Neg. LLF: 144.52245261229928
Iteration: 11, Func. Count: 70, Neg. LLF: 144.52244869278886
Iteration: 12, Func. Count: 75, Neg. LLF: 144.52244869275427
Optimization terminated successfully (Exit mode 0)
Current function value: 144.52244869278886
Iterations: 12
Function evaluations: 75
Gradient evaluations: 12
Iteration: 1, Func. Count: 8, Neg. LLF: 148.36859851986247
Iteration: 2, Func. Count: 19, Neg. LLF: 147.6547820275039
Iteration: 3, Func. Count: 26, Neg. LLF: 147.5742135473594
Iteration: 4, Func. Count: 34, Neg. LLF: 149.4270993307037
Iteration: 5, Func. Count: 43, Neg. LLF: 145.8553036728936
Iteration: 6, Func. Count: 50, Neg. LLF: 144.6491923215682
Iteration: 7, Func. Count: 57, Neg. LLF: 144.60357516243215
Iteration: 8, Func. Count: 64, Neg. LLF: 144.55581385298498
Iteration: 9, Func. Count: 71, Neg. LLF: 144.54374729545668
Iteration: 10, Func. Count: 78, Neg. LLF: 144.53186875025278
Iteration: 11, Func. Count: 85, Neg. LLF: 144.52496104088902
Iteration: 12, Func. Count: 92, Neg. LLF: 144.52263911610353
Iteration: 13, Func. Count: 99, Neg. LLF: 144.52247850021504
Iteration: 14, Func. Count: 106, Neg. LLF: 144.5224651005934
Iteration: 15, Func. Count: 113, Neg. LLF: 144.52245014432697
Iteration: 16, Func. Count: 120, Neg. LLF: 144.52244820559707
Iteration: 17, Func. Count: 126, Neg. LLF: 144.52244833323485
Optimization terminated successfully (Exit mode 0)
Current function value: 144.52244820559707
Iterations: 17
Function evaluations: 126
Gradient evaluations: 17
Iteration: 1, Func. Count: 9, Neg. LLF: 146.7022945070594
Iteration: 2, Func. Count: 17, Neg. LLF: 146.29303695318953
Iteration: 3, Func. Count: 25, Neg. LLF: 153.3782617590976
Iteration: 4, Func. Count: 36, Neg. LLF: 147.61708589294707
Iteration: 5, Func. Count: 45, Neg. LLF: 144.55587862211203
Iteration: 6, Func. Count: 53, Neg. LLF: 144.65741577143254
Iteration: 7, Func. Count: 62, Neg. LLF: 144.53350934850548
Iteration: 8, Func. Count: 70, Neg. LLF: 144.52408192259438
Iteration: 9, Func. Count: 78, Neg. LLF: 144.52314134044784
Iteration: 10, Func. Count: 86, Neg. LLF: 144.52228828767664
Iteration: 11, Func. Count: 94, Neg. LLF: 144.52200035010154
Iteration: 12, Func. Count: 102, Neg. LLF: 144.52190876026904
Iteration: 13, Func. Count: 110, Neg. LLF: 144.52169151918176
Iteration: 14, Func. Count: 118, Neg. LLF: 144.52121951443365
Iteration: 15, Func. Count: 126, Neg. LLF: 144.52009771584062
Iteration: 16, Func. Count: 134, Neg. LLF: 144.5184943950745
Iteration: 17, Func. Count: 142, Neg. LLF: 144.5178461247482
Iteration: 18, Func. Count: 150, Neg. LLF: 144.51782165145934
Iteration: 19, Func. Count: 158, Neg. LLF: 144.51781988874944
Iteration: 20, Func. Count: 165, Neg. LLF: 144.51781988875368
Optimization terminated successfully (Exit mode 0)
Current function value: 144.51781988874944
Iterations: 20
Function evaluations: 165
Gradient evaluations: 20
Iteration: 1, Func. Count: 10, Neg. LLF: 148.25148321920435
Iteration: 2, Func. Count: 20, Neg. LLF: 151.31718012692446
Iteration: 3, Func. Count: 30, Neg. LLF: 149.23866169197953
Iteration: 4, Func. Count: 40, Neg. LLF: 145.25165493307745
Iteration: 5, Func. Count: 49, Neg. LLF: 145.25630845928217
Iteration: 6, Func. Count: 59, Neg. LLF: 144.59154053595364
Iteration: 7, Func. Count: 68, Neg. LLF: 144.81677429334172
Iteration: 8, Func. Count: 78, Neg. LLF: 144.5280274498683
Iteration: 9, Func. Count: 87, Neg. LLF: 144.52521729850767
Iteration: 10, Func. Count: 96, Neg. LLF: 144.52135535255
Iteration: 11, Func. Count: 105, Neg. LLF: 144.52079936341713
Iteration: 12, Func. Count: 114, Neg. LLF: 144.52051227646214
Iteration: 13, Func. Count: 123, Neg. LLF: 144.52031300768977
Iteration: 14, Func. Count: 132, Neg. LLF: 144.5201409480378
Iteration: 15, Func. Count: 141, Neg. LLF: 144.51964081984264
Iteration: 16, Func. Count: 150, Neg. LLF: 144.51882003204145
Iteration: 17, Func. Count: 159, Neg. LLF: 144.51819823615935
Iteration: 18, Func. Count: 168, Neg. LLF: 144.51784160504874
Iteration: 19, Func. Count: 177, Neg. LLF: 144.51782259027053
Iteration: 20, Func. Count: 186, Neg. LLF: 144.51781992209123
Iteration: 21, Func. Count: 194, Neg. LLF: 144.51781997738692
Optimization terminated successfully (Exit mode 0)
Current function value: 144.51781992209123
Iterations: 21
Function evaluations: 194
Gradient evaluations: 21
Iteration: 1, Func. Count: 11, Neg. LLF: 155.36876649263135
Iteration: 2, Func. Count: 23, Neg. LLF: 153.1647244655489
Iteration: 3, Func. Count: 34, Neg. LLF: 155.43228595594894
Iteration: 4, Func. Count: 45, Neg. LLF: 147.08146144751876
Iteration: 5, Func. Count: 55, Neg. LLF: 145.48472738499507
Iteration: 6, Func. Count: 65, Neg. LLF: 146.06703382760293
Iteration: 7, Func. Count: 76, Neg. LLF: 144.68433329291065
Iteration: 8, Func. Count: 86, Neg. LLF: 144.60351464500775
Iteration: 9, Func. Count: 96, Neg. LLF: 144.53367606337767
Iteration: 10, Func. Count: 106, Neg. LLF: 144.520733048028
Iteration: 11, Func. Count: 116, Neg. LLF: 144.51846144577547
Iteration: 12, Func. Count: 126, Neg. LLF: 144.5182404440005
Iteration: 13, Func. Count: 136, Neg. LLF: 144.51811008101436
Iteration: 14, Func. Count: 146, Neg. LLF: 144.5179929135397
Iteration: 15, Func. Count: 156, Neg. LLF: 144.5179756822713
Iteration: 16, Func. Count: 166, Neg. LLF: 144.51791501641216
Iteration: 17, Func. Count: 176, Neg. LLF: 144.51784081323157
Iteration: 18, Func. Count: 186, Neg. LLF: 144.51782722441897
Iteration: 19, Func. Count: 196, Neg. LLF: 144.5178201397109
Iteration: 20, Func. Count: 205, Neg. LLF: 144.5178202023034
Optimization terminated successfully (Exit mode 0)
Current function value: 144.5178201397109
Iterations: 20
Function evaluations: 205
Gradient evaluations: 20
Iteration: 1, Func. Count: 8, Neg. LLF: 152.53033008568508
Iteration: 2, Func. Count: 16, Neg. LLF: 146.03155869103352
Iteration: 3, Func. Count: 23, Neg. LLF: 148.33173010790588
Iteration: 4, Func. Count: 31, Neg. LLF: 146.47333136573738
Iteration: 5, Func. Count: 40, Neg. LLF: 144.6460592107802
Iteration: 6, Func. Count: 47, Neg. LLF: 144.54805498723957
Iteration: 7, Func. Count: 54, Neg. LLF: 144.52832793760052
Iteration: 8, Func. Count: 61, Neg. LLF: 144.52274698707657
Iteration: 9, Func. Count: 68, Neg. LLF: 144.52262508987792
Iteration: 10, Func. Count: 75, Neg. LLF: 144.52253330979482
Iteration: 11, Func. Count: 82, Neg. LLF: 144.5224594339722
Iteration: 12, Func. Count: 89, Neg. LLF: 144.522449045974
Iteration: 13, Func. Count: 96, Neg. LLF: 144.522448045312
Iteration: 14, Func. Count: 102, Neg. LLF: 144.5224480784491
Optimization terminated successfully (Exit mode 0)
Current function value: 144.522448045312
Iterations: 14
Function evaluations: 102
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 148.76743766016048
Iteration: 2, Func. Count: 18, Neg. LLF: 148.565069067793
Iteration: 3, Func. Count: 27, Neg. LLF: 150.74716795379666
Iteration: 4, Func. Count: 36, Neg. LLF: 145.5363866044265
Iteration: 5, Func. Count: 44, Neg. LLF: 146.87084573248967
Iteration: 6, Func. Count: 53, Neg. LLF: 152.21702628721377
Iteration: 7, Func. Count: 62, Neg. LLF: 144.52539030153181
Iteration: 8, Func. Count: 70, Neg. LLF: 144.52265234128572
Iteration: 9, Func. Count: 78, Neg. LLF: 144.5224712057516
Iteration: 10, Func. Count: 86, Neg. LLF: 144.52245102530384
Iteration: 11, Func. Count: 94, Neg. LLF: 144.52244804838722
Iteration: 12, Func. Count: 101, Neg. LLF: 144.52244817601058
Optimization terminated successfully (Exit mode 0)
Current function value: 144.52244804838722
Iterations: 12
Function evaluations: 101
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 147.36340248498328
Iteration: 2, Func. Count: 19, Neg. LLF: 144.87041498632098
Iteration: 3, Func. Count: 28, Neg. LLF: 145.8973805116807
Iteration: 4, Func. Count: 38, Neg. LLF: 144.92820543595917
Iteration: 5, Func. Count: 48, Neg. LLF: 144.56275253097323
Iteration: 6, Func. Count: 58, Neg. LLF: 144.52537715743384
Iteration: 7, Func. Count: 67, Neg. LLF: 144.5235323334489
Iteration: 8, Func. Count: 76, Neg. LLF: 144.52304003530008
Iteration: 9, Func. Count: 85, Neg. LLF: 144.5238939741005
Iteration: 10, Func. Count: 95, Neg. LLF: 144.52207184641034
Iteration: 11, Func. Count: 104, Neg. LLF: 144.5217128961647
Iteration: 12, Func. Count: 113, Neg. LLF: 144.52033640044075
Iteration: 13, Func. Count: 122, Neg. LLF: 144.5186385565122
Iteration: 14, Func. Count: 131, Neg. LLF: 144.51797871382684
Iteration: 15, Func. Count: 140, Neg. LLF: 144.51782575790804
Iteration: 16, Func. Count: 149, Neg. LLF: 144.51782033806495
Iteration: 17, Func. Count: 157, Neg. LLF: 144.51782033819305
Optimization terminated successfully (Exit mode 0)
Current function value: 144.51782033806495
Iterations: 17
Function evaluations: 157
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 147.32140917693053
Iteration: 2, Func. Count: 21, Neg. LLF: 146.82061912283092
Iteration: 3, Func. Count: 31, Neg. LLF: 144.9229053555392
Iteration: 4, Func. Count: 41, Neg. LLF: 145.59792005075718
Iteration: 5, Func. Count: 53, Neg. LLF: 144.5557152810088
Iteration: 6, Func. Count: 64, Neg. LLF: 144.5262017368956
Iteration: 7, Func. Count: 74, Neg. LLF: 144.52384340541772
Iteration: 8, Func. Count: 84, Neg. LLF: 144.523221236761
Iteration: 9, Func. Count: 94, Neg. LLF: 144.52547338406433
Iteration: 10, Func. Count: 105, Neg. LLF: 144.5219055379147
Iteration: 11, Func. Count: 115, Neg. LLF: 144.52066851808877
Iteration: 12, Func. Count: 125, Neg. LLF: 144.5178872884337
Iteration: 13, Func. Count: 135, Neg. LLF: 144.51782399685422
Iteration: 14, Func. Count: 145, Neg. LLF: 144.51781986770487
Iteration: 15, Func. Count: 154, Neg. LLF: 144.51781992302034
Optimization terminated successfully (Exit mode 0)
Current function value: 144.51781986770487
Iterations: 15
Function evaluations: 154
Gradient evaluations: 15
Iteration: 1, Func. Count: 12, Neg. LLF: 155.44233810695508
Iteration: 2, Func. Count: 26, Neg. LLF: 152.71290022348325
Iteration: 3, Func. Count: 38, Neg. LLF: 145.8483200646146
Iteration: 4, Func. Count: 49, Neg. LLF: 145.79728537049527
Iteration: 5, Func. Count: 60, Neg. LLF: 147.13222864590722
Iteration: 6, Func. Count: 72, Neg. LLF: 149.990801377547
Iteration: 7, Func. Count: 85, Neg. LLF: 144.67995722671304
Iteration: 8, Func. Count: 96, Neg. LLF: 144.58187173856157
Iteration: 9, Func. Count: 107, Neg. LLF: 144.53292853269068
Iteration: 10, Func. Count: 118, Neg. LLF: 144.52361137833253
Iteration: 11, Func. Count: 129, Neg. LLF: 144.52049969786438
Iteration: 12, Func. Count: 140, Neg. LLF: 144.51951932833916
Iteration: 13, Func. Count: 151, Neg. LLF: 144.5194552824445
Iteration: 14, Func. Count: 162, Neg. LLF: 144.51937690861683
Iteration: 15, Func. Count: 173, Neg. LLF: 144.51918507442204
Iteration: 16, Func. Count: 184, Neg. LLF: 144.5187523340714
Iteration: 17, Func. Count: 195, Neg. LLF: 144.51815579490813
Iteration: 18, Func. Count: 206, Neg. LLF: 144.5178846519707
Iteration: 19, Func. Count: 217, Neg. LLF: 144.5178260345939
Iteration: 20, Func. Count: 228, Neg. LLF: 144.51782024619632
Iteration: 21, Func. Count: 238, Neg. LLF: 144.51782030864675
Optimization terminated successfully (Exit mode 0)
Current function value: 144.51782024619632
Iterations: 21
Function evaluations: 238
Gradient evaluations: 21
Iteration: 1, Func. Count: 5, Neg. LLF: 154.72763437713184
Iteration: 2, Func. Count: 10, Neg. LLF: 149.76025377997254
Iteration: 3, Func. Count: 15, Neg. LLF: 147.37371967440262
Iteration: 4, Func. Count: 19, Neg. LLF: 147.3532113955643
Iteration: 5, Func. Count: 23, Neg. LLF: 147.35152887348488
Iteration: 6, Func. Count: 27, Neg. LLF: 147.35060988459273
Iteration: 7, Func. Count: 31, Neg. LLF: 147.34983401365827
Iteration: 8, Func. Count: 35, Neg. LLF: 147.3492552566596
Iteration: 9, Func. Count: 39, Neg. LLF: 147.34909058246944
Iteration: 10, Func. Count: 43, Neg. LLF: 147.34907307655908
Iteration: 11, Func. Count: 46, Neg. LLF: 147.34907307657335
Optimization terminated successfully (Exit mode 0)
Current function value: 147.34907307655908
Iterations: 11
Function evaluations: 46
Gradient evaluations: 11
Iteration: 1, Func. Count: 6, Neg. LLF: 149.4201346139798
Iteration: 2, Func. Count: 14, Neg. LLF: 165.10244387982934
Iteration: 3, Func. Count: 21, Neg. LLF: 190.3509114573641
Iteration: 4, Func. Count: 28, Neg. LLF: 148.32397911892065
Iteration: 5, Func. Count: 33, Neg. LLF: 148.3032379569206
Iteration: 6, Func. Count: 38, Neg. LLF: 148.28665618686048
Iteration: 7, Func. Count: 43, Neg. LLF: 148.2812133019693
Iteration: 8, Func. Count: 48, Neg. LLF: 148.2803511197942
Iteration: 9, Func. Count: 53, Neg. LLF: 148.2801704376107
Iteration: 10, Func. Count: 58, Neg. LLF: 148.2801689051689
Iteration: 11, Func. Count: 62, Neg. LLF: 148.28016890513345
Optimization terminated successfully (Exit mode 0)
Current function value: 148.2801689051689
Iterations: 11
Function evaluations: 62
Gradient evaluations: 11
Iteration: 1, Func. Count: 7, Neg. LLF: 170.56450551940245
Iteration: 2, Func. Count: 14, Neg. LLF: 181.46100798045916
Iteration: 3, Func. Count: 21, Neg. LLF: 153.29651081550833
Iteration: 4, Func. Count: 28, Neg. LLF: 148.48800304700939
Iteration: 5, Func. Count: 35, Neg. LLF: 148.26028769404277
Iteration: 6, Func. Count: 42, Neg. LLF: 148.14460717842408
Iteration: 7, Func. Count: 48, Neg. LLF: 148.1088687717534
Iteration: 8, Func. Count: 54, Neg. LLF: 147.89665003843348
Iteration: 9, Func. Count: 60, Neg. LLF: 149.166873450607
Iteration: 10, Func. Count: 67, Neg. LLF: 148.4442541527864
Iteration: 11, Func. Count: 74, Neg. LLF: 147.76034917404488
Iteration: 12, Func. Count: 81, Neg. LLF: 147.1604584166757
Iteration: 13, Func. Count: 87, Neg. LLF: 147.09207933979434
Iteration: 14, Func. Count: 93, Neg. LLF: 147.08058843891996
Iteration: 15, Func. Count: 99, Neg. LLF: 147.0748356489351
Iteration: 16, Func. Count: 105, Neg. LLF: 147.0710464263625
Iteration: 17, Func. Count: 111, Neg. LLF: 147.06859976760904
Iteration: 18, Func. Count: 117, Neg. LLF: 147.06823142300675
Iteration: 19, Func. Count: 123, Neg. LLF: 147.06821269802975
Iteration: 20, Func. Count: 129, Neg. LLF: 147.06821215715746
Optimization terminated successfully (Exit mode 0)
Current function value: 147.06821215715746
Iterations: 20
Function evaluations: 129
Gradient evaluations: 20
Iteration: 1, Func. Count: 8, Neg. LLF: 162.409763230728
Iteration: 2, Func. Count: 16, Neg. LLF: 152.76954634203972
Iteration: 3, Func. Count: 24, Neg. LLF: 147.3526879914852
Iteration: 4, Func. Count: 32, Neg. LLF: 146.63229856445042
Iteration: 5, Func. Count: 39, Neg. LLF: 146.9606364008244
Iteration: 6, Func. Count: 47, Neg. LLF: 158.2902071806464
Iteration: 7, Func. Count: 55, Neg. LLF: 146.53679921438606
Iteration: 8, Func. Count: 62, Neg. LLF: 146.5301420229567
Iteration: 9, Func. Count: 69, Neg. LLF: 146.52885809948586
Iteration: 10, Func. Count: 76, Neg. LLF: 146.52755269308426
Iteration: 11, Func. Count: 83, Neg. LLF: 146.52587762787252
Iteration: 12, Func. Count: 90, Neg. LLF: 146.52528026235115
Iteration: 13, Func. Count: 97, Neg. LLF: 146.52518522942478
Iteration: 14, Func. Count: 104, Neg. LLF: 146.52518263887166
Iteration: 15, Func. Count: 110, Neg. LLF: 146.52518263886594
Optimization terminated successfully (Exit mode 0)
Current function value: 146.52518263887166
Iterations: 15
Function evaluations: 110
Gradient evaluations: 15
Iteration: 1, Func. Count: 9, Neg. LLF: 172.43044093548608
Iteration: 2, Func. Count: 18, Neg. LLF: 151.86380415379105
Iteration: 3, Func. Count: 27, Neg. LLF: 149.2811340378068
Iteration: 4, Func. Count: 36, Neg. LLF: 147.85277576593782
Iteration: 5, Func. Count: 44, Neg. LLF: 147.81127096165878
Iteration: 6, Func. Count: 53, Neg. LLF: 148.18287871135786
Iteration: 7, Func. Count: 63, Neg. LLF: 147.08461289145703
Iteration: 8, Func. Count: 71, Neg. LLF: 146.92766103265373
Iteration: 9, Func. Count: 79, Neg. LLF: 146.83978722126085
Iteration: 10, Func. Count: 87, Neg. LLF: 146.7928732260412
Iteration: 11, Func. Count: 95, Neg. LLF: 146.66306514122462
Iteration: 12, Func. Count: 103, Neg. LLF: 146.6146881743225
Iteration: 13, Func. Count: 111, Neg. LLF: 146.55909829522744
Iteration: 14, Func. Count: 119, Neg. LLF: 146.52736405475625
Iteration: 15, Func. Count: 127, Neg. LLF: 146.52548692249013
Iteration: 16, Func. Count: 135, Neg. LLF: 146.52519478765043
Iteration: 17, Func. Count: 143, Neg. LLF: 146.5251827465049
Iteration: 18, Func. Count: 150, Neg. LLF: 146.52518279900437
Optimization terminated successfully (Exit mode 0)
Current function value: 146.5251827465049
Iterations: 18
Function evaluations: 150
Gradient evaluations: 18
Iteration: 1, Func. Count: 6, Neg. LLF: 163.47943270821509
Iteration: 2, Func. Count: 12, Neg. LLF: 148.07245647290182
Iteration: 3, Func. Count: 18, Neg. LLF: 144.93310829574054
Iteration: 4, Func. Count: 23, Neg. LLF: 144.96756717321546
Iteration: 5, Func. Count: 29, Neg. LLF: 144.8401666314345
Iteration: 6, Func. Count: 34, Neg. LLF: 144.83911013482336
Iteration: 7, Func. Count: 39, Neg. LLF: 144.8387166928736
Iteration: 8, Func. Count: 44, Neg. LLF: 144.83817497866977
Iteration: 9, Func. Count: 49, Neg. LLF: 144.8380031466627
Iteration: 10, Func. Count: 54, Neg. LLF: 144.83796915066418
Iteration: 11, Func. Count: 59, Neg. LLF: 144.8379677471515
Iteration: 12, Func. Count: 63, Neg. LLF: 144.83796774715336
Optimization terminated successfully (Exit mode 0)
Current function value: 144.8379677471515
Iterations: 12
Function evaluations: 63
Gradient evaluations: 12
Iteration: 1, Func. Count: 7, Neg. LLF: 147.51956323073605
Iteration: 2, Func. Count: 13, Neg. LLF: 144.9822139945632
Iteration: 3, Func. Count: 19, Neg. LLF: 172.37351009699321
Iteration: 4, Func. Count: 27, Neg. LLF: 144.8571856885946
Iteration: 5, Func. Count: 33, Neg. LLF: 144.8499466120506
Iteration: 6, Func. Count: 39, Neg. LLF: 144.84534384292846
Iteration: 7, Func. Count: 45, Neg. LLF: 144.83942089144054
Iteration: 8, Func. Count: 51, Neg. LLF: 144.83844530113197
Iteration: 9, Func. Count: 57, Neg. LLF: 144.8379711126322
Iteration: 10, Func. Count: 63, Neg. LLF: 144.83796775144194
Iteration: 11, Func. Count: 68, Neg. LLF: 144.83796781633336
Optimization terminated successfully (Exit mode 0)
Current function value: 144.83796775144194
Iterations: 11
Function evaluations: 68
Gradient evaluations: 11
Iteration: 1, Func. Count: 8, Neg. LLF: 145.8306295152568
Iteration: 2, Func. Count: 15, Neg. LLF: 149.0807699177599
Iteration: 3, Func. Count: 24, Neg. LLF: 174.0016830174566
Iteration: 4, Func. Count: 32, Neg. LLF: 144.57749465360726
Iteration: 5, Func. Count: 39, Neg. LLF: 144.81859768011097
Iteration: 6, Func. Count: 47, Neg. LLF: 144.96671514664783
Iteration: 7, Func. Count: 55, Neg. LLF: 144.5169212040534
Iteration: 8, Func. Count: 62, Neg. LLF: 144.49942922508964
Iteration: 9, Func. Count: 69, Neg. LLF: 144.48674141565363
Iteration: 10, Func. Count: 76, Neg. LLF: 144.47578724730784
Iteration: 11, Func. Count: 83, Neg. LLF: 144.47514660419395
Iteration: 12, Func. Count: 90, Neg. LLF: 144.47513182360444
Iteration: 13, Func. Count: 96, Neg. LLF: 144.47513182315618
Optimization terminated successfully (Exit mode 0)
Current function value: 144.47513182360444
Iterations: 13
Function evaluations: 96
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 146.51212724696495
Iteration: 2, Func. Count: 17, Neg. LLF: 150.46974185207358
Iteration: 3, Func. Count: 27, Neg. LLF: 179.92759043625955
Iteration: 4, Func. Count: 36, Neg. LLF: 144.59239668607412
Iteration: 5, Func. Count: 44, Neg. LLF: 145.2773170528128
Iteration: 6, Func. Count: 53, Neg. LLF: 145.35999168507735
Iteration: 7, Func. Count: 62, Neg. LLF: 144.52200900111623
Iteration: 8, Func. Count: 70, Neg. LLF: 144.50683651173952
Iteration: 9, Func. Count: 78, Neg. LLF: 144.49379828643967
Iteration: 10, Func. Count: 86, Neg. LLF: 144.4759211286321
Iteration: 11, Func. Count: 94, Neg. LLF: 144.47515210896304
Iteration: 12, Func. Count: 102, Neg. LLF: 144.47513183922234
Iteration: 13, Func. Count: 109, Neg. LLF: 144.47513191354963
Optimization terminated successfully (Exit mode 0)
Current function value: 144.47513183922234
Iterations: 13
Function evaluations: 109
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 145.69682987020155
Iteration: 2, Func. Count: 19, Neg. LLF: 145.02397532437058
Iteration: 3, Func. Count: 28, Neg. LLF: 186.64911606446447
Iteration: 4, Func. Count: 41, Neg. LLF: 145.24221807841926
Iteration: 5, Func. Count: 51, Neg. LLF: 145.67864248523506
Iteration: 6, Func. Count: 61, Neg. LLF: 144.58466961355484
Iteration: 7, Func. Count: 70, Neg. LLF: 144.54770628683357
Iteration: 8, Func. Count: 79, Neg. LLF: 144.5284963245974
Iteration: 9, Func. Count: 88, Neg. LLF: 144.4895222670061
Iteration: 10, Func. Count: 97, Neg. LLF: 144.4818776992859
Iteration: 11, Func. Count: 106, Neg. LLF: 144.47537443171936
Iteration: 12, Func. Count: 115, Neg. LLF: 144.4751406472065
Iteration: 13, Func. Count: 124, Neg. LLF: 144.47513180249
Iteration: 14, Func. Count: 132, Neg. LLF: 144.47513188636992
Optimization terminated successfully (Exit mode 0)
Current function value: 144.47513180249
Iterations: 14
Function evaluations: 132
Gradient evaluations: 14
Iteration: 1, Func. Count: 7, Neg. LLF: 161.3441091238277
Iteration: 2, Func. Count: 14, Neg. LLF: 149.98624266094643
Iteration: 3, Func. Count: 21, Neg. LLF: 144.96443080577927
Iteration: 4, Func. Count: 27, Neg. LLF: 144.92628323437978
Iteration: 5, Func. Count: 34, Neg. LLF: 144.84118336859342
Iteration: 6, Func. Count: 40, Neg. LLF: 144.840263969828
Iteration: 7, Func. Count: 46, Neg. LLF: 144.83899006420813
Iteration: 8, Func. Count: 52, Neg. LLF: 144.8380413024724
Iteration: 9, Func. Count: 58, Neg. LLF: 144.83797134319144
Iteration: 10, Func. Count: 64, Neg. LLF: 144.83796780175197
Iteration: 11, Func. Count: 69, Neg. LLF: 144.8379678386588
Optimization terminated successfully (Exit mode 0)
Current function value: 144.83796780175197
Iterations: 11
Function evaluations: 69
Gradient evaluations: 11
Iteration: 1, Func. Count: 8, Neg. LLF: 148.45614555271945
Iteration: 2, Func. Count: 16, Neg. LLF: 153.46863472948888
Iteration: 3, Func. Count: 24, Neg. LLF: 146.44821419586876
Iteration: 4, Func. Count: 31, Neg. LLF: 146.91276442859734
Iteration: 5, Func. Count: 39, Neg. LLF: 146.08417913569878
Iteration: 6, Func. Count: 47, Neg. LLF: 144.99693944327237
Iteration: 7, Func. Count: 54, Neg. LLF: 144.89073007204183
Iteration: 8, Func. Count: 61, Neg. LLF: 144.89876963599212
Iteration: 9, Func. Count: 69, Neg. LLF: 144.83884334238618
Iteration: 10, Func. Count: 76, Neg. LLF: 144.83805646352354
Iteration: 11, Func. Count: 83, Neg. LLF: 144.8379804124404
Iteration: 12, Func. Count: 90, Neg. LLF: 144.8379677844397
Iteration: 13, Func. Count: 96, Neg. LLF: 144.83796784930425
Optimization terminated successfully (Exit mode 0)
Current function value: 144.8379677844397
Iterations: 13
Function evaluations: 96
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 144.92949889131575
Iteration: 2, Func. Count: 17, Neg. LLF: 147.4650505605176
Iteration: 3, Func. Count: 27, Neg. LLF: 160.13850207845914
Iteration: 4, Func. Count: 37, Neg. LLF: 144.72913487507853
Iteration: 5, Func. Count: 46, Neg. LLF: 144.54742499058852
Iteration: 6, Func. Count: 54, Neg. LLF: 144.51409773761898
Iteration: 7, Func. Count: 62, Neg. LLF: 144.5187449830745
Iteration: 8, Func. Count: 71, Neg. LLF: 144.48368977090422
Iteration: 9, Func. Count: 79, Neg. LLF: 144.47564923754368
Iteration: 10, Func. Count: 87, Neg. LLF: 144.47513762400635
Iteration: 11, Func. Count: 95, Neg. LLF: 144.47513195247663
Iteration: 12, Func. Count: 102, Neg. LLF: 144.4751319520403
Optimization terminated successfully (Exit mode 0)
Current function value: 144.47513195247663
Iterations: 12
Function evaluations: 102
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 149.11369645011342
Iteration: 2, Func. Count: 20, Neg. LLF: 153.98342695499935
Iteration: 3, Func. Count: 30, Neg. LLF: 147.1164058746317
Iteration: 4, Func. Count: 40, Neg. LLF: 145.45325823391158
Iteration: 5, Func. Count: 49, Neg. LLF: 146.3855355172396
Iteration: 6, Func. Count: 59, Neg. LLF: 145.48860373836507
Iteration: 7, Func. Count: 69, Neg. LLF: 145.65549029028537
Iteration: 8, Func. Count: 79, Neg. LLF: 144.62343239782857
Iteration: 9, Func. Count: 88, Neg. LLF: 144.57444674574415
Iteration: 10, Func. Count: 97, Neg. LLF: 144.487322333391
Iteration: 11, Func. Count: 106, Neg. LLF: 144.4764718653228
Iteration: 12, Func. Count: 115, Neg. LLF: 144.47548713881497
Iteration: 13, Func. Count: 124, Neg. LLF: 144.47520845516132
Iteration: 14, Func. Count: 133, Neg. LLF: 144.47514833445408
Iteration: 15, Func. Count: 142, Neg. LLF: 144.47513419186174
Iteration: 16, Func. Count: 151, Neg. LLF: 144.47513190531518
Iteration: 17, Func. Count: 159, Neg. LLF: 144.47513197968368
Optimization terminated successfully (Exit mode 0)
Current function value: 144.47513190531518
Iterations: 17
Function evaluations: 159
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 145.60660566947834
Iteration: 2, Func. Count: 21, Neg. LLF: 144.59121929082252
Iteration: 3, Func. Count: 31, Neg. LLF: 153.37800350738001
Iteration: 4, Func. Count: 43, Neg. LLF: 145.00597108772018
Iteration: 5, Func. Count: 54, Neg. LLF: 144.6554730218427
Iteration: 6, Func. Count: 65, Neg. LLF: 144.51709642081997
Iteration: 7, Func. Count: 75, Neg. LLF: 144.47717976060517
Iteration: 8, Func. Count: 85, Neg. LLF: 144.4752467388817
Iteration: 9, Func. Count: 95, Neg. LLF: 144.47515820448479
Iteration: 10, Func. Count: 105, Neg. LLF: 144.47513803750286
Iteration: 11, Func. Count: 115, Neg. LLF: 144.4751322287094
Iteration: 12, Func. Count: 124, Neg. LLF: 144.47513231251838
Optimization terminated successfully (Exit mode 0)
Current function value: 144.4751322287094
Iterations: 12
Function evaluations: 124
Gradient evaluations: 12
Iteration: 1, Func. Count: 8, Neg. LLF: 161.1318855402531
Iteration: 2, Func. Count: 17, Neg. LLF: 146.45717523946607
Iteration: 3, Func. Count: 24, Neg. LLF: 147.22777624976442
Iteration: 4, Func. Count: 32, Neg. LLF: 145.02937295323937
Iteration: 5, Func. Count: 41, Neg. LLF: 145.04831920324136
Iteration: 6, Func. Count: 49, Neg. LLF: 144.55446133553235
Iteration: 7, Func. Count: 56, Neg. LLF: 144.51014539533003
Iteration: 8, Func. Count: 63, Neg. LLF: 144.48278667111006
Iteration: 9, Func. Count: 70, Neg. LLF: 144.46010567752774
Iteration: 10, Func. Count: 77, Neg. LLF: 144.4585736632438
Iteration: 11, Func. Count: 84, Neg. LLF: 144.45855153886689
Iteration: 12, Func. Count: 91, Neg. LLF: 144.45855007401934
Iteration: 13, Func. Count: 97, Neg. LLF: 144.45855007353904
Optimization terminated successfully (Exit mode 0)
Current function value: 144.45855007401934
Iterations: 13
Function evaluations: 97
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 176.59641650805304
Iteration: 2, Func. Count: 19, Neg. LLF: 148.94359647109778
Iteration: 3, Func. Count: 28, Neg. LLF: 181.82385512409095
Iteration: 4, Func. Count: 38, Neg. LLF: 148.00990930032256
Iteration: 5, Func. Count: 46, Neg. LLF: 147.99624889197835
Iteration: 6, Func. Count: 54, Neg. LLF: 147.9431461940822
Iteration: 7, Func. Count: 62, Neg. LLF: 146.36208318114117
Iteration: 8, Func. Count: 70, Neg. LLF: 145.86902682542333
Iteration: 9, Func. Count: 78, Neg. LLF: 145.3124782831509
Iteration: 10, Func. Count: 86, Neg. LLF: 146.08480985779372
Iteration: 11, Func. Count: 96, Neg. LLF: 145.22731276783514
Iteration: 12, Func. Count: 104, Neg. LLF: 145.12949224970762
Iteration: 13, Func. Count: 112, Neg. LLF: 144.80922154948223
Iteration: 14, Func. Count: 120, Neg. LLF: 144.6692695998311
Iteration: 15, Func. Count: 128, Neg. LLF: 144.58587994523134
Iteration: 16, Func. Count: 136, Neg. LLF: 144.539337140362
Iteration: 17, Func. Count: 144, Neg. LLF: 144.51024074905646
Iteration: 18, Func. Count: 152, Neg. LLF: 144.46141609185338
Iteration: 19, Func. Count: 160, Neg. LLF: 144.45973897529055
Iteration: 20, Func. Count: 168, Neg. LLF: 144.45901985534823
Iteration: 21, Func. Count: 176, Neg. LLF: 144.45878774488978
Iteration: 22, Func. Count: 184, Neg. LLF: 144.45859378592502
Iteration: 23, Func. Count: 192, Neg. LLF: 144.45855482406955
Iteration: 24, Func. Count: 200, Neg. LLF: 144.4585507507962
Iteration: 25, Func. Count: 207, Neg. LLF: 144.45855089381894
Optimization terminated successfully (Exit mode 0)
Current function value: 144.4585507507962
Iterations: 25
Function evaluations: 207
Gradient evaluations: 25
Iteration: 1, Func. Count: 10, Neg. LLF: 149.18370833024062
Iteration: 2, Func. Count: 22, Neg. LLF: 146.77639277333765
Iteration: 3, Func. Count: 31, Neg. LLF: 146.42221724878343
Iteration: 4, Func. Count: 40, Neg. LLF: 146.65659498729173
Iteration: 5, Func. Count: 50, Neg. LLF: 145.01741648534022
Iteration: 6, Func. Count: 59, Neg. LLF: 144.826104921298
Iteration: 7, Func. Count: 68, Neg. LLF: 144.97187170714093
Iteration: 8, Func. Count: 78, Neg. LLF: 144.97350754228643
Iteration: 9, Func. Count: 88, Neg. LLF: 144.7335928040919
Iteration: 10, Func. Count: 98, Neg. LLF: 144.4984327400626
Iteration: 11, Func. Count: 107, Neg. LLF: 144.4783581277155
Iteration: 12, Func. Count: 116, Neg. LLF: 144.47706607198072
Iteration: 13, Func. Count: 126, Neg. LLF: 144.46994719529198
Iteration: 14, Func. Count: 135, Neg. LLF: 144.46676089037564
Iteration: 15, Func. Count: 144, Neg. LLF: 144.46629020921273
Iteration: 16, Func. Count: 153, Neg. LLF: 144.46324423446217
Iteration: 17, Func. Count: 162, Neg. LLF: 144.460929335643
Iteration: 18, Func. Count: 171, Neg. LLF: 144.45870286138546
Iteration: 19, Func. Count: 180, Neg. LLF: 144.45857347721122
Iteration: 20, Func. Count: 189, Neg. LLF: 144.4585502248972
Iteration: 21, Func. Count: 197, Neg. LLF: 144.45855022809286
Optimization terminated successfully (Exit mode 0)
Current function value: 144.4585502248972
Iterations: 21
Function evaluations: 197
Gradient evaluations: 21
Iteration: 1, Func. Count: 11, Neg. LLF: 147.76542715390576
Iteration: 2, Func. Count: 21, Neg. LLF: 151.43882691014292
Iteration: 3, Func. Count: 32, Neg. LLF: 147.03427682048695
Iteration: 4, Func. Count: 42, Neg. LLF: 146.34889066093206
Iteration: 5, Func. Count: 53, Neg. LLF: 146.04483621752203
Iteration: 6, Func. Count: 65, Neg. LLF: 144.63789382098304
Iteration: 7, Func. Count: 75, Neg. LLF: 144.53273795412582
Iteration: 8, Func. Count: 85, Neg. LLF: 144.61118670038857
Iteration: 9, Func. Count: 96, Neg. LLF: 144.48439323700634
Iteration: 10, Func. Count: 106, Neg. LLF: 144.46830015491426
Iteration: 11, Func. Count: 116, Neg. LLF: 144.45906371918878
Iteration: 12, Func. Count: 126, Neg. LLF: 144.45890078119385
Iteration: 13, Func. Count: 136, Neg. LLF: 144.45874304584677
Iteration: 14, Func. Count: 146, Neg. LLF: 144.45859217206058
Iteration: 15, Func. Count: 156, Neg. LLF: 144.45855405091447
Iteration: 16, Func. Count: 166, Neg. LLF: 144.45855014369155
Iteration: 17, Func. Count: 175, Neg. LLF: 144.45855021902432
Optimization terminated successfully (Exit mode 0)
Current function value: 144.45855014369155
Iterations: 17
Function evaluations: 175
Gradient evaluations: 17
Iteration: 1, Func. Count: 12, Neg. LLF: 155.9484561456318
Iteration: 2, Func. Count: 25, Neg. LLF: 153.17372514722933
Iteration: 3, Func. Count: 37, Neg. LLF: 156.360164744766
Iteration: 4, Func. Count: 49, Neg. LLF: 147.0149277291389
Iteration: 5, Func. Count: 60, Neg. LLF: 145.63886855811492
Iteration: 6, Func. Count: 71, Neg. LLF: 146.20981878817005
Iteration: 7, Func. Count: 83, Neg. LLF: 144.71584810702694
Iteration: 8, Func. Count: 94, Neg. LLF: 144.94801427482827
Iteration: 9, Func. Count: 106, Neg. LLF: 144.85760749205747
Iteration: 10, Func. Count: 118, Neg. LLF: 144.5728445579228
Iteration: 11, Func. Count: 129, Neg. LLF: 144.4936087539836
Iteration: 12, Func. Count: 140, Neg. LLF: 144.47459568527262
Iteration: 13, Func. Count: 151, Neg. LLF: 144.4728851691311
Iteration: 14, Func. Count: 162, Neg. LLF: 144.47158528866302
Iteration: 15, Func. Count: 173, Neg. LLF: 144.46915936416204
Iteration: 16, Func. Count: 184, Neg. LLF: 144.46811190690636
Iteration: 17, Func. Count: 195, Neg. LLF: 144.4651529309089
Iteration: 18, Func. Count: 206, Neg. LLF: 144.46306811550028
Iteration: 19, Func. Count: 217, Neg. LLF: 144.45941832493173
Iteration: 20, Func. Count: 228, Neg. LLF: 144.45875664754874
Iteration: 21, Func. Count: 239, Neg. LLF: 144.4585515274776
Iteration: 22, Func. Count: 250, Neg. LLF: 144.4585500817582
Iteration: 23, Func. Count: 260, Neg. LLF: 144.45855013343248
Optimization terminated successfully (Exit mode 0)
Current function value: 144.4585500817582
Iterations: 23
Function evaluations: 260
Gradient evaluations: 23
Iteration: 1, Func. Count: 9, Neg. LLF: 160.89999916617037
Iteration: 2, Func. Count: 19, Neg. LLF: 147.44191660902922
Iteration: 3, Func. Count: 28, Neg. LLF: 149.61453739271326
Iteration: 4, Func. Count: 37, Neg. LLF: 144.66242270915936
Iteration: 5, Func. Count: 45, Neg. LLF: 145.2009974781871
Iteration: 6, Func. Count: 54, Neg. LLF: 144.5320040742352
Iteration: 7, Func. Count: 62, Neg. LLF: 144.54876106612926
Iteration: 8, Func. Count: 71, Neg. LLF: 144.4690051987477
Iteration: 9, Func. Count: 79, Neg. LLF: 144.4638315725524
Iteration: 10, Func. Count: 87, Neg. LLF: 144.46112708779572
Iteration: 11, Func. Count: 95, Neg. LLF: 144.45930933935693
Iteration: 12, Func. Count: 103, Neg. LLF: 144.45859095817758
Iteration: 13, Func. Count: 111, Neg. LLF: 144.45855183316323
Iteration: 14, Func. Count: 119, Neg. LLF: 144.45855005989864
Iteration: 15, Func. Count: 126, Neg. LLF: 144.4585501074904
Optimization terminated successfully (Exit mode 0)
Current function value: 144.45855005989864
Iterations: 15
Function evaluations: 126
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 148.66251210691345
Iteration: 2, Func. Count: 24, Neg. LLF: 159.60534947228655
Iteration: 3, Func. Count: 35, Neg. LLF: 148.56395225508732
Iteration: 4, Func. Count: 45, Neg. LLF: 148.00290909890106
Iteration: 5, Func. Count: 54, Neg. LLF: 147.9936826770163
Iteration: 6, Func. Count: 63, Neg. LLF: 147.96721395316095
Iteration: 7, Func. Count: 72, Neg. LLF: 147.6660297368222
Iteration: 8, Func. Count: 81, Neg. LLF: 145.59628177735812
Iteration: 9, Func. Count: 90, Neg. LLF: 145.47191943425096
Iteration: 10, Func. Count: 99, Neg. LLF: 145.38831117783465
Iteration: 11, Func. Count: 108, Neg. LLF: 145.31989631397596
Iteration: 12, Func. Count: 117, Neg. LLF: 144.9849369789013
Iteration: 13, Func. Count: 126, Neg. LLF: 144.92371744764037
Iteration: 14, Func. Count: 136, Neg. LLF: 144.49870853760905
Iteration: 15, Func. Count: 145, Neg. LLF: 144.48784736114982
Iteration: 16, Func. Count: 154, Neg. LLF: 144.47808728802454
Iteration: 17, Func. Count: 163, Neg. LLF: 144.47180623745692
Iteration: 18, Func. Count: 172, Neg. LLF: 144.462111308728
Iteration: 19, Func. Count: 181, Neg. LLF: 144.4597127246598
Iteration: 20, Func. Count: 190, Neg. LLF: 144.45869778409747
Iteration: 21, Func. Count: 199, Neg. LLF: 144.45856535460143
Iteration: 22, Func. Count: 208, Neg. LLF: 144.458550319423
Iteration: 23, Func. Count: 216, Neg. LLF: 144.45855046244017
Optimization terminated successfully (Exit mode 0)
Current function value: 144.458550319423
Iterations: 23
Function evaluations: 216
Gradient evaluations: 23
Iteration: 1, Func. Count: 11, Neg. LLF: 148.12466910219248
Iteration: 2, Func. Count: 25, Neg. LLF: 147.49883198359888
Iteration: 3, Func. Count: 35, Neg. LLF: 147.12585104520764
Iteration: 4, Func. Count: 45, Neg. LLF: 149.68303023407609
Iteration: 5, Func. Count: 56, Neg. LLF: 145.20048549666006
Iteration: 6, Func. Count: 66, Neg. LLF: 144.90152809046185
Iteration: 7, Func. Count: 76, Neg. LLF: 145.09993665074845
Iteration: 8, Func. Count: 87, Neg. LLF: 146.00779538623107
Iteration: 9, Func. Count: 98, Neg. LLF: 144.81186500337301
Iteration: 10, Func. Count: 109, Neg. LLF: 144.46444105708687
Iteration: 11, Func. Count: 119, Neg. LLF: 144.459949706594
Iteration: 12, Func. Count: 129, Neg. LLF: 144.45910564312544
Iteration: 13, Func. Count: 139, Neg. LLF: 144.45886068119572
Iteration: 14, Func. Count: 149, Neg. LLF: 144.45874268141156
Iteration: 15, Func. Count: 159, Neg. LLF: 144.4586026534967
Iteration: 16, Func. Count: 169, Neg. LLF: 144.45855814347357
Iteration: 17, Func. Count: 179, Neg. LLF: 144.45855038302608
Iteration: 18, Func. Count: 188, Neg. LLF: 144.45855038630583
Optimization terminated successfully (Exit mode 0)
Current function value: 144.45855038302608
Iterations: 18
Function evaluations: 188
Gradient evaluations: 18
Iteration: 1, Func. Count: 12, Neg. LLF: 157.5243236447021
Iteration: 2, Func. Count: 26, Neg. LLF: 146.33829863530573
Iteration: 3, Func. Count: 37, Neg. LLF: 145.82632000305114
Iteration: 4, Func. Count: 48, Neg. LLF: 149.94734562285433
Iteration: 5, Func. Count: 61, Neg. LLF: 145.2746417784164
Iteration: 6, Func. Count: 72, Neg. LLF: 145.06872332913113
Iteration: 7, Func. Count: 83, Neg. LLF: 150.69485163557368
Iteration: 8, Func. Count: 95, Neg. LLF: 144.76412017867642
Iteration: 9, Func. Count: 106, Neg. LLF: 144.5995994690565
Iteration: 10, Func. Count: 117, Neg. LLF: 144.54237346497257
Iteration: 11, Func. Count: 128, Neg. LLF: 144.48908221934317
Iteration: 12, Func. Count: 139, Neg. LLF: 144.4756938828185
Iteration: 13, Func. Count: 150, Neg. LLF: 144.46629662665353
Iteration: 14, Func. Count: 161, Neg. LLF: 144.4599420711923
Iteration: 15, Func. Count: 172, Neg. LLF: 144.45910807508304
Iteration: 16, Func. Count: 183, Neg. LLF: 144.4587132280642
Iteration: 17, Func. Count: 194, Neg. LLF: 144.45863327753437
Iteration: 18, Func. Count: 205, Neg. LLF: 144.45855461912032
Iteration: 19, Func. Count: 216, Neg. LLF: 144.45855026081253
Iteration: 20, Func. Count: 226, Neg. LLF: 144.4585503361737
Optimization terminated successfully (Exit mode 0)
Current function value: 144.45855026081253
Iterations: 20
Function evaluations: 226
Gradient evaluations: 20
Iteration: 1, Func. Count: 13, Neg. LLF: 156.2342379903958
Iteration: 2, Func. Count: 28, Neg. LLF: 152.6532064354961
Iteration: 3, Func. Count: 41, Neg. LLF: 146.71193372775505
Iteration: 4, Func. Count: 53, Neg. LLF: 145.41889817517188
Iteration: 5, Func. Count: 65, Neg. LLF: 168.92787750243113
Iteration: 6, Func. Count: 80, Neg. LLF: 145.1718744379524
Iteration: 7, Func. Count: 92, Neg. LLF: 145.77263686105195
Iteration: 8, Func. Count: 105, Neg. LLF: 144.6350755912604
Iteration: 9, Func. Count: 117, Neg. LLF: 144.5396660380112
Iteration: 10, Func. Count: 129, Neg. LLF: 144.48064514862259
Iteration: 11, Func. Count: 141, Neg. LLF: 144.46601062828427
Iteration: 12, Func. Count: 153, Neg. LLF: 144.45880711210478
Iteration: 13, Func. Count: 165, Neg. LLF: 144.45863355273664
Iteration: 14, Func. Count: 177, Neg. LLF: 144.45859571546825
Iteration: 15, Func. Count: 189, Neg. LLF: 144.45857620105022
Iteration: 16, Func. Count: 201, Neg. LLF: 144.45856258067036
Iteration: 17, Func. Count: 213, Neg. LLF: 144.4585551421988
Iteration: 18, Func. Count: 225, Neg. LLF: 144.4585509347282
Iteration: 19, Func. Count: 237, Neg. LLF: 144.45855012036677
Optimization terminated successfully (Exit mode 0)
Current function value: 144.45855012036677
Iterations: 19
Function evaluations: 237
Gradient evaluations: 19
Iteration: 1, Func. Count: 6, Neg. LLF: 148.77900478063478
Iteration: 2, Func. Count: 11, Neg. LLF: 152.1691969336011
Iteration: 3, Func. Count: 17, Neg. LLF: 147.4048603468316
Iteration: 4, Func. Count: 22, Neg. LLF: 147.39101829570538
Iteration: 5, Func. Count: 27, Neg. LLF: 147.35004772398133
Iteration: 6, Func. Count: 32, Neg. LLF: 147.34910976369366
Iteration: 7, Func. Count: 37, Neg. LLF: 147.34907279900978
Iteration: 8, Func. Count: 41, Neg. LLF: 147.34907282698543
Optimization terminated successfully (Exit mode 0)
Current function value: 147.34907279900978
Iterations: 8
Function evaluations: 41
Gradient evaluations: 8
Iteration: 1, Func. Count: 7, Neg. LLF: 171.34410519544713
Iteration: 2, Func. Count: 15, Neg. LLF: 168.37935478480543
Iteration: 3, Func. Count: 23, Neg. LLF: 149.43131222124666
Iteration: 4, Func. Count: 30, Neg. LLF: 148.29082308220603
Iteration: 5, Func. Count: 37, Neg. LLF: 148.47523693123037
Iteration: 6, Func. Count: 44, Neg. LLF: 148.26437519713488
Iteration: 7, Func. Count: 50, Neg. LLF: 148.25181183283829
Iteration: 8, Func. Count: 56, Neg. LLF: 148.24436288793913
Iteration: 9, Func. Count: 62, Neg. LLF: 148.2427374510227
Iteration: 10, Func. Count: 68, Neg. LLF: 148.24243084970706
Iteration: 11, Func. Count: 74, Neg. LLF: 148.24242852745397
Iteration: 12, Func. Count: 79, Neg. LLF: 148.24242852750095
Optimization terminated successfully (Exit mode 0)
Current function value: 148.24242852745397
Iterations: 12
Function evaluations: 79
Gradient evaluations: 12
Iteration: 1, Func. Count: 8, Neg. LLF: 171.20251604519186
Iteration: 2, Func. Count: 17, Neg. LLF: 154.6179571074072
Iteration: 3, Func. Count: 25, Neg. LLF: 157.74405238932357
Iteration: 4, Func. Count: 33, Neg. LLF: 148.2298715608573
Iteration: 5, Func. Count: 40, Neg. LLF: 148.21488022161293
Iteration: 6, Func. Count: 47, Neg. LLF: 148.18463780961116
Iteration: 7, Func. Count: 54, Neg. LLF: 148.1561429481725
Iteration: 8, Func. Count: 61, Neg. LLF: 148.125240809677
Iteration: 9, Func. Count: 68, Neg. LLF: 147.96227855451335
Iteration: 10, Func. Count: 75, Neg. LLF: 148.8415545016962
Iteration: 11, Func. Count: 83, Neg. LLF: 148.52017304092627
Iteration: 12, Func. Count: 91, Neg. LLF: 148.04323217843353
Iteration: 13, Func. Count: 99, Neg. LLF: 147.20821942781862
Iteration: 14, Func. Count: 106, Neg. LLF: 147.14765591110992
Iteration: 15, Func. Count: 113, Neg. LLF: 147.09397380341852
Iteration: 16, Func. Count: 120, Neg. LLF: 147.07406679708657
Iteration: 17, Func. Count: 127, Neg. LLF: 147.0723950915569
Iteration: 18, Func. Count: 134, Neg. LLF: 147.0684316250215
Iteration: 19, Func. Count: 141, Neg. LLF: 147.0682130104571
Iteration: 20, Func. Count: 148, Neg. LLF: 147.0682121545802
Optimization terminated successfully (Exit mode 0)
Current function value: 147.0682121545802
Iterations: 20
Function evaluations: 148
Gradient evaluations: 20
Iteration: 1, Func. Count: 9, Neg. LLF: 148.14028365665104
Iteration: 2, Func. Count: 17, Neg. LLF: 148.7463539737902
Iteration: 3, Func. Count: 26, Neg. LLF: 175.3110065224039
Iteration: 4, Func. Count: 36, Neg. LLF: 151.25198068252783
Iteration: 5, Func. Count: 45, Neg. LLF: 147.0884802818903
Iteration: 6, Func. Count: 53, Neg. LLF: 147.023682139311
Iteration: 7, Func. Count: 61, Neg. LLF: 147.07978188950335
Iteration: 8, Func. Count: 70, Neg. LLF: 146.88288904360084
Iteration: 9, Func. Count: 78, Neg. LLF: 146.69287088432924
Iteration: 10, Func. Count: 86, Neg. LLF: 146.73816952272816
Iteration: 11, Func. Count: 95, Neg. LLF: 146.58735615327822
Iteration: 12, Func. Count: 103, Neg. LLF: 146.81657971826795
Iteration: 13, Func. Count: 112, Neg. LLF: 146.53740126495933
Iteration: 14, Func. Count: 120, Neg. LLF: 146.52611883350355
Iteration: 15, Func. Count: 128, Neg. LLF: 146.52447798923356
Iteration: 16, Func. Count: 136, Neg. LLF: 146.52422599507796
Iteration: 17, Func. Count: 144, Neg. LLF: 146.52422348717724
Iteration: 18, Func. Count: 151, Neg. LLF: 146.52422348715274
Optimization terminated successfully (Exit mode 0)
Current function value: 146.52422348717724
Iterations: 18
Function evaluations: 151
Gradient evaluations: 18
Iteration: 1, Func. Count: 10, Neg. LLF: 148.39406324659112
Iteration: 2, Func. Count: 19, Neg. LLF: 147.55183684497962
Iteration: 3, Func. Count: 28, Neg. LLF: 178.57362574955323
Iteration: 4, Func. Count: 39, Neg. LLF: 155.03694822321745
Iteration: 5, Func. Count: 49, Neg. LLF: 147.53993090062335
Iteration: 6, Func. Count: 59, Neg. LLF: 147.0814891087629
Iteration: 7, Func. Count: 68, Neg. LLF: 146.9721957860441
Iteration: 8, Func. Count: 77, Neg. LLF: 146.83806859751957
Iteration: 9, Func. Count: 86, Neg. LLF: 146.6288512055159
Iteration: 10, Func. Count: 95, Neg. LLF: 146.550445380991
Iteration: 11, Func. Count: 104, Neg. LLF: 146.52699944496553
Iteration: 12, Func. Count: 113, Neg. LLF: 152.26639407680614
Iteration: 13, Func. Count: 124, Neg. LLF: 146.52542724150808
Iteration: 14, Func. Count: 133, Neg. LLF: 146.5245327380621
Iteration: 15, Func. Count: 142, Neg. LLF: 146.52425235014474
Iteration: 16, Func. Count: 151, Neg. LLF: 146.52422375585536
Iteration: 17, Func. Count: 159, Neg. LLF: 146.5242238128135
Optimization terminated successfully (Exit mode 0)
Current function value: 146.52422375585536
Iterations: 17
Function evaluations: 159
Gradient evaluations: 17
Iteration: 1, Func. Count: 7, Neg. LLF: 157.68476162029455
Iteration: 2, Func. Count: 14, Neg. LLF: 150.41998161270416
Iteration: 3, Func. Count: 21, Neg. LLF: 144.959458701149
Iteration: 4, Func. Count: 27, Neg. LLF: 145.0003665448366
Iteration: 5, Func. Count: 34, Neg. LLF: 144.8403530223
Iteration: 6, Func. Count: 40, Neg. LLF: 144.8396407370566
Iteration: 7, Func. Count: 46, Neg. LLF: 144.83876730170792
Iteration: 8, Func. Count: 52, Neg. LLF: 144.83805663968036
Iteration: 9, Func. Count: 58, Neg. LLF: 144.83797394039823
Iteration: 10, Func. Count: 64, Neg. LLF: 144.83796786729428
Iteration: 11, Func. Count: 69, Neg. LLF: 144.83796786730085
Optimization terminated successfully (Exit mode 0)
Current function value: 144.83796786729428
Iterations: 11
Function evaluations: 69
Gradient evaluations: 11
Iteration: 1, Func. Count: 8, Neg. LLF: 147.9327813054843
Iteration: 2, Func. Count: 16, Neg. LLF: 147.08007799163707
Iteration: 3, Func. Count: 24, Neg. LLF: 147.50935949235327
Iteration: 4, Func. Count: 32, Neg. LLF: 144.994970789235
Iteration: 5, Func. Count: 39, Neg. LLF: 144.95641446278316
Iteration: 6, Func. Count: 46, Neg. LLF: 144.88620495309098
Iteration: 7, Func. Count: 53, Neg. LLF: 144.86614983807098
Iteration: 8, Func. Count: 60, Neg. LLF: 144.84284817037866
Iteration: 9, Func. Count: 67, Neg. LLF: 144.83867902255355
Iteration: 10, Func. Count: 74, Neg. LLF: 144.83797721528785
Iteration: 11, Func. Count: 81, Neg. LLF: 144.83796791576464
Iteration: 12, Func. Count: 87, Neg. LLF: 144.83796798058995
Optimization terminated successfully (Exit mode 0)
Current function value: 144.83796791576464
Iterations: 12
Function evaluations: 87
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 145.75154063192076
Iteration: 2, Func. Count: 17, Neg. LLF: 149.13108523797956
Iteration: 3, Func. Count: 27, Neg. LLF: 172.76792492677038
Iteration: 4, Func. Count: 36, Neg. LLF: 144.57882170318894
Iteration: 5, Func. Count: 44, Neg. LLF: 144.73044176779445
Iteration: 6, Func. Count: 53, Neg. LLF: 144.93675374793753
Iteration: 7, Func. Count: 62, Neg. LLF: 144.5161664815877
Iteration: 8, Func. Count: 70, Neg. LLF: 144.49816674594308
Iteration: 9, Func. Count: 78, Neg. LLF: 144.48556260815616
Iteration: 10, Func. Count: 86, Neg. LLF: 144.47563956085818
Iteration: 11, Func. Count: 94, Neg. LLF: 144.47513982927038
Iteration: 12, Func. Count: 102, Neg. LLF: 144.47513181815168
Iteration: 13, Func. Count: 109, Neg. LLF: 144.47513181771166
Optimization terminated successfully (Exit mode 0)
Current function value: 144.47513181815168
Iterations: 13
Function evaluations: 109
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 145.6575362292181
Iteration: 2, Func. Count: 19, Neg. LLF: 148.86706363423946
Iteration: 3, Func. Count: 30, Neg. LLF: 172.3016802883697
Iteration: 4, Func. Count: 40, Neg. LLF: 144.58074261221114
Iteration: 5, Func. Count: 49, Neg. LLF: 144.714020895725
Iteration: 6, Func. Count: 59, Neg. LLF: 144.95528791892048
Iteration: 7, Func. Count: 69, Neg. LLF: 144.51632149707777
Iteration: 8, Func. Count: 78, Neg. LLF: 144.49733422292059
Iteration: 9, Func. Count: 87, Neg. LLF: 144.48479065711822
Iteration: 10, Func. Count: 96, Neg. LLF: 144.475531445927
Iteration: 11, Func. Count: 105, Neg. LLF: 144.47513649167811
Iteration: 12, Func. Count: 114, Neg. LLF: 144.47513181656433
Iteration: 13, Func. Count: 122, Neg. LLF: 144.47513189090654
Optimization terminated successfully (Exit mode 0)
Current function value: 144.47513181656433
Iterations: 13
Function evaluations: 122
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 146.17353271183265
Iteration: 2, Func. Count: 21, Neg. LLF: 144.92423480568124
Iteration: 3, Func. Count: 31, Neg. LLF: 304.8970515161114
Iteration: 4, Func. Count: 44, Neg. LLF: 144.66902834840934
Iteration: 5, Func. Count: 54, Neg. LLF: 144.96811047497437
Iteration: 6, Func. Count: 66, Neg. LLF: 144.5568988231508
Iteration: 7, Func. Count: 76, Neg. LLF: 144.515744321235
Iteration: 8, Func. Count: 86, Neg. LLF: 144.50443146204714
Iteration: 9, Func. Count: 96, Neg. LLF: 144.49054559563078
Iteration: 10, Func. Count: 106, Neg. LLF: 144.47984635139755
Iteration: 11, Func. Count: 116, Neg. LLF: 144.4756898514752
Iteration: 12, Func. Count: 126, Neg. LLF: 144.47515847162472
Iteration: 13, Func. Count: 136, Neg. LLF: 144.4751322004152
Iteration: 14, Func. Count: 145, Neg. LLF: 144.47513228431373
Optimization terminated successfully (Exit mode 0)
Current function value: 144.4751322004152
Iterations: 14
Function evaluations: 145
Gradient evaluations: 14
Iteration: 1, Func. Count: 8, Neg. LLF: 153.4074573394052
Iteration: 2, Func. Count: 16, Neg. LLF: 154.04750297425034
Iteration: 3, Func. Count: 24, Neg. LLF: 144.97098755638058
Iteration: 4, Func. Count: 31, Neg. LLF: 144.91293853431247
Iteration: 5, Func. Count: 38, Neg. LLF: 144.8479743412286
Iteration: 6, Func. Count: 45, Neg. LLF: 144.8421856648098
Iteration: 7, Func. Count: 52, Neg. LLF: 144.84029283540818
Iteration: 8, Func. Count: 59, Neg. LLF: 144.83952514963084
Iteration: 9, Func. Count: 66, Neg. LLF: 144.8381255832582
Iteration: 10, Func. Count: 73, Neg. LLF: 144.83797353956845
Iteration: 11, Func. Count: 80, Neg. LLF: 144.83796777958517
Iteration: 12, Func. Count: 86, Neg. LLF: 144.83796781648763
Optimization terminated successfully (Exit mode 0)
Current function value: 144.83796777958517
Iterations: 12
Function evaluations: 86
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 148.43392853679322
Iteration: 2, Func. Count: 18, Neg. LLF: 153.64251554884734
Iteration: 3, Func. Count: 27, Neg. LLF: 146.5203273493833
Iteration: 4, Func. Count: 35, Neg. LLF: 146.9960517597568
Iteration: 5, Func. Count: 44, Neg. LLF: 146.26312241275713
Iteration: 6, Func. Count: 53, Neg. LLF: 145.0755743537774
Iteration: 7, Func. Count: 61, Neg. LLF: 144.90679039846583
Iteration: 8, Func. Count: 69, Neg. LLF: 144.8907304273903
Iteration: 9, Func. Count: 78, Neg. LLF: 144.83889606711125
Iteration: 10, Func. Count: 86, Neg. LLF: 144.83808052000796
Iteration: 11, Func. Count: 94, Neg. LLF: 144.83799417426508
Iteration: 12, Func. Count: 102, Neg. LLF: 144.8379677251457
Iteration: 13, Func. Count: 109, Neg. LLF: 144.837967790031
Optimization terminated successfully (Exit mode 0)
Current function value: 144.8379677251457
Iterations: 13
Function evaluations: 109
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 144.9153550131683
Iteration: 2, Func. Count: 19, Neg. LLF: 147.39014890194514
Iteration: 3, Func. Count: 30, Neg. LLF: 159.64572607977186
Iteration: 4, Func. Count: 41, Neg. LLF: 144.74857141352044
Iteration: 5, Func. Count: 51, Neg. LLF: 144.54631438466308
Iteration: 6, Func. Count: 60, Neg. LLF: 144.5098605009861
Iteration: 7, Func. Count: 69, Neg. LLF: 144.48926897705473
Iteration: 8, Func. Count: 78, Neg. LLF: 144.47803421473813
Iteration: 9, Func. Count: 87, Neg. LLF: 144.4771749490485
Iteration: 10, Func. Count: 96, Neg. LLF: 144.4752277921964
Iteration: 11, Func. Count: 105, Neg. LLF: 144.47513251027834
Iteration: 12, Func. Count: 114, Neg. LLF: 144.475131798291
Optimization terminated successfully (Exit mode 0)
Current function value: 144.475131798291
Iterations: 12
Function evaluations: 114
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 144.9147409095851
Iteration: 2, Func. Count: 21, Neg. LLF: 147.06296871320188
Iteration: 3, Func. Count: 33, Neg. LLF: 159.9797232540274
Iteration: 4, Func. Count: 45, Neg. LLF: 144.81618587424882
Iteration: 5, Func. Count: 56, Neg. LLF: 144.55131241771312
Iteration: 6, Func. Count: 66, Neg. LLF: 144.51305575714252
Iteration: 7, Func. Count: 76, Neg. LLF: 144.48805069035686
Iteration: 8, Func. Count: 86, Neg. LLF: 144.4829968613176
Iteration: 9, Func. Count: 96, Neg. LLF: 144.4755711070096
Iteration: 10, Func. Count: 106, Neg. LLF: 144.4751424937873
Iteration: 11, Func. Count: 116, Neg. LLF: 144.47513190157866
Iteration: 12, Func. Count: 125, Neg. LLF: 144.4751319759101
Optimization terminated successfully (Exit mode 0)
Current function value: 144.47513190157866
Iterations: 12
Function evaluations: 125
Gradient evaluations: 12
Iteration: 1, Func. Count: 12, Neg. LLF: 145.72933885181874
Iteration: 2, Func. Count: 23, Neg. LLF: 144.92035584402007
Iteration: 3, Func. Count: 34, Neg. LLF: 158.8629739702943
Iteration: 4, Func. Count: 46, Neg. LLF: 144.88006035869756
Iteration: 5, Func. Count: 58, Neg. LLF: 148.90694715748134
Iteration: 6, Func. Count: 71, Neg. LLF: 144.52330791459894
Iteration: 7, Func. Count: 82, Neg. LLF: 144.50554598079867
Iteration: 8, Func. Count: 93, Neg. LLF: 144.4923452124685
Iteration: 9, Func. Count: 104, Neg. LLF: 144.48334424744448
Iteration: 10, Func. Count: 115, Neg. LLF: 144.4783003400959
Iteration: 11, Func. Count: 126, Neg. LLF: 144.47565767172853
Iteration: 12, Func. Count: 137, Neg. LLF: 144.47515369070373
Iteration: 13, Func. Count: 148, Neg. LLF: 144.4751333782975
Iteration: 14, Func. Count: 159, Neg. LLF: 144.47513184995432
Iteration: 15, Func. Count: 169, Neg. LLF: 144.4751319338279
Optimization terminated successfully (Exit mode 0)
Current function value: 144.47513184995432
Iterations: 15
Function evaluations: 169
Gradient evaluations: 15
Iteration: 1, Func. Count: 9, Neg. LLF: 153.87985415239459
Iteration: 2, Func. Count: 18, Neg. LLF: 145.0416018916464
Iteration: 3, Func. Count: 26, Neg. LLF: 145.26019313004932
Iteration: 4, Func. Count: 35, Neg. LLF: 150.73640957075685
Iteration: 5, Func. Count: 44, Neg. LLF: 144.5976890920165
Iteration: 6, Func. Count: 52, Neg. LLF: 145.15904991433595
Iteration: 7, Func. Count: 61, Neg. LLF: 144.4989332718201
Iteration: 8, Func. Count: 69, Neg. LLF: 144.46360330124583
Iteration: 9, Func. Count: 77, Neg. LLF: 144.4605310935074
Iteration: 10, Func. Count: 85, Neg. LLF: 144.45857834638625
Iteration: 11, Func. Count: 93, Neg. LLF: 144.45855083282885
Iteration: 12, Func. Count: 101, Neg. LLF: 144.45855006810052
Optimization terminated successfully (Exit mode 0)
Current function value: 144.45855006810052
Iterations: 12
Function evaluations: 101
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 173.94850139897386
Iteration: 2, Func. Count: 21, Neg. LLF: 149.64954914905596
Iteration: 3, Func. Count: 31, Neg. LLF: 148.68885267270312
Iteration: 4, Func. Count: 41, Neg. LLF: 149.03070203956102
Iteration: 5, Func. Count: 51, Neg. LLF: 149.18097218392205
Iteration: 6, Func. Count: 61, Neg. LLF: 147.90640334035515
Iteration: 7, Func. Count: 70, Neg. LLF: 148.18708428964234
Iteration: 8, Func. Count: 80, Neg. LLF: 147.83542913678912
Iteration: 9, Func. Count: 89, Neg. LLF: 147.74748054791883
Iteration: 10, Func. Count: 98, Neg. LLF: 147.67954191922743
Iteration: 11, Func. Count: 107, Neg. LLF: 147.67692804637997
Iteration: 12, Func. Count: 117, Neg. LLF: 147.66214661167464
Iteration: 13, Func. Count: 126, Neg. LLF: 147.6616873754386
Iteration: 14, Func. Count: 135, Neg. LLF: 147.661683235645
Iteration: 15, Func. Count: 144, Neg. LLF: 147.66168283249885
Optimization terminated successfully (Exit mode 0)
Current function value: 147.66168283249885
Iterations: 15
Function evaluations: 144
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 149.17384881143533
Iteration: 2, Func. Count: 24, Neg. LLF: 146.96409882684796
Iteration: 3, Func. Count: 34, Neg. LLF: 146.46383212670148
Iteration: 4, Func. Count: 44, Neg. LLF: 146.5875661423441
Iteration: 5, Func. Count: 55, Neg. LLF: 145.05576820983637
Iteration: 6, Func. Count: 65, Neg. LLF: 144.8941259563164
Iteration: 7, Func. Count: 76, Neg. LLF: 146.12380570056493
Iteration: 8, Func. Count: 88, Neg. LLF: 144.73141135420232
Iteration: 9, Func. Count: 99, Neg. LLF: 144.5131592992908
Iteration: 10, Func. Count: 109, Neg. LLF: 144.48852919027564
Iteration: 11, Func. Count: 119, Neg. LLF: 144.47925748733346
Iteration: 12, Func. Count: 129, Neg. LLF: 144.47074431907308
Iteration: 13, Func. Count: 139, Neg. LLF: 144.4652042995502
Iteration: 14, Func. Count: 149, Neg. LLF: 144.46485523543015
Iteration: 15, Func. Count: 159, Neg. LLF: 144.46284891509885
Iteration: 16, Func. Count: 169, Neg. LLF: 144.45969967049604
Iteration: 17, Func. Count: 179, Neg. LLF: 144.45873140635848
Iteration: 18, Func. Count: 189, Neg. LLF: 144.45857247273156
Iteration: 19, Func. Count: 199, Neg. LLF: 144.4585525533732
Iteration: 20, Func. Count: 209, Neg. LLF: 144.45855009673397
Iteration: 21, Func. Count: 218, Neg. LLF: 144.4585500999067
Optimization terminated successfully (Exit mode 0)
Current function value: 144.45855009673397
Iterations: 21
Function evaluations: 218
Gradient evaluations: 21
Iteration: 1, Func. Count: 12, Neg. LLF: 147.75673813842235
Iteration: 2, Func. Count: 23, Neg. LLF: 150.5454982718197
Iteration: 3, Func. Count: 35, Neg. LLF: 147.5909168008978
Iteration: 4, Func. Count: 47, Neg. LLF: 145.38004086346282
Iteration: 5, Func. Count: 58, Neg. LLF: 145.703022515095
Iteration: 6, Func. Count: 70, Neg. LLF: 145.85757175697998
Iteration: 7, Func. Count: 82, Neg. LLF: 144.5551927565326
Iteration: 8, Func. Count: 93, Neg. LLF: 144.5521754170042
Iteration: 9, Func. Count: 105, Neg. LLF: 144.46511058789403
Iteration: 10, Func. Count: 116, Neg. LLF: 144.46315350582088
Iteration: 11, Func. Count: 127, Neg. LLF: 144.46115572529416
Iteration: 12, Func. Count: 138, Neg. LLF: 144.4593077110199
Iteration: 13, Func. Count: 149, Neg. LLF: 144.45864523831284
Iteration: 14, Func. Count: 160, Neg. LLF: 144.45855363150915
Iteration: 15, Func. Count: 171, Neg. LLF: 144.45855007018557
Iteration: 16, Func. Count: 181, Neg. LLF: 144.45855014552131
Optimization terminated successfully (Exit mode 0)
Current function value: 144.45855007018557
Iterations: 16
Function evaluations: 181
Gradient evaluations: 16
Iteration: 1, Func. Count: 13, Neg. LLF: 155.84273112275324
Iteration: 2, Func. Count: 27, Neg. LLF: 153.08142533645827
Iteration: 3, Func. Count: 40, Neg. LLF: 155.977216248787
Iteration: 4, Func. Count: 53, Neg. LLF: 147.05959542885762
Iteration: 5, Func. Count: 65, Neg. LLF: 145.4436060361103
Iteration: 6, Func. Count: 77, Neg. LLF: 145.94851896441355
Iteration: 7, Func. Count: 90, Neg. LLF: 144.7393626562831
Iteration: 8, Func. Count: 102, Neg. LLF: 144.6402682597508
Iteration: 9, Func. Count: 114, Neg. LLF: 144.55975119619643
Iteration: 10, Func. Count: 126, Neg. LLF: 144.509991982284
Iteration: 11, Func. Count: 138, Neg. LLF: 144.4828633673192
Iteration: 12, Func. Count: 150, Neg. LLF: 144.47524722429554
Iteration: 13, Func. Count: 162, Neg. LLF: 144.47151488568883
Iteration: 14, Func. Count: 174, Neg. LLF: 144.46896711753035
Iteration: 15, Func. Count: 186, Neg. LLF: 144.46841483442518
Iteration: 16, Func. Count: 198, Neg. LLF: 144.46694165388203
Iteration: 17, Func. Count: 210, Neg. LLF: 144.46283537598788
Iteration: 18, Func. Count: 222, Neg. LLF: 144.4608441836297
Iteration: 19, Func. Count: 234, Neg. LLF: 144.4588661697182
Iteration: 20, Func. Count: 246, Neg. LLF: 144.4585826295386
Iteration: 21, Func. Count: 258, Neg. LLF: 144.45855077087938
Iteration: 22, Func. Count: 270, Neg. LLF: 144.45855006362947
Optimization terminated successfully (Exit mode 0)
Current function value: 144.45855006362947
Iterations: 22
Function evaluations: 270
Gradient evaluations: 22
Iteration: 1, Func. Count: 10, Neg. LLF: 153.0131178342886
Iteration: 2, Func. Count: 20, Neg. LLF: 145.2160273796608
Iteration: 3, Func. Count: 29, Neg. LLF: 144.93384693481875
Iteration: 4, Func. Count: 38, Neg. LLF: 145.34808931821104
Iteration: 5, Func. Count: 48, Neg. LLF: 144.6099551573325
Iteration: 6, Func. Count: 57, Neg. LLF: 144.7397901740139
Iteration: 7, Func. Count: 67, Neg. LLF: 145.5599193371257
Iteration: 8, Func. Count: 78, Neg. LLF: 144.53109482924245
Iteration: 9, Func. Count: 87, Neg. LLF: 144.47687224508527
Iteration: 10, Func. Count: 96, Neg. LLF: 144.46161490022467
Iteration: 11, Func. Count: 105, Neg. LLF: 144.45869716450193
Iteration: 12, Func. Count: 114, Neg. LLF: 144.45855427156516
Iteration: 13, Func. Count: 123, Neg. LLF: 144.4585500753856
Iteration: 14, Func. Count: 131, Neg. LLF: 144.45855012297758
Optimization terminated successfully (Exit mode 0)
Current function value: 144.4585500753856
Iterations: 14
Function evaluations: 131
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 150.58099148506545
Iteration: 2, Func. Count: 24, Neg. LLF: 149.51741710322872
Iteration: 3, Func. Count: 35, Neg. LLF: 169.43110577893935
Iteration: 4, Func. Count: 47, Neg. LLF: 148.57231183826985
Iteration: 5, Func. Count: 58, Neg. LLF: 148.09274939100735
Iteration: 6, Func. Count: 69, Neg. LLF: 147.91503737479283
Iteration: 7, Func. Count: 79, Neg. LLF: 147.8773145603772
Iteration: 8, Func. Count: 89, Neg. LLF: 147.79227145431227
Iteration: 9, Func. Count: 99, Neg. LLF: 147.8949841183427
Iteration: 10, Func. Count: 110, Neg. LLF: 147.68999133240442
Iteration: 11, Func. Count: 120, Neg. LLF: 147.66342395360493
Iteration: 12, Func. Count: 130, Neg. LLF: 147.6618425627549
Iteration: 13, Func. Count: 140, Neg. LLF: 147.66176110168925
Iteration: 14, Func. Count: 150, Neg. LLF: 147.6616836275661
Iteration: 15, Func. Count: 160, Neg. LLF: 147.66168395684863
Optimization terminated successfully (Exit mode 0)
Current function value: 147.66168275371572
Iterations: 15
Function evaluations: 161
Gradient evaluations: 15
Iteration: 1, Func. Count: 12, Neg. LLF: 148.10359902728933
Iteration: 2, Func. Count: 27, Neg. LLF: 147.760846180401
Iteration: 3, Func. Count: 38, Neg. LLF: 147.12068974540333
Iteration: 4, Func. Count: 49, Neg. LLF: 149.96831202762135
Iteration: 5, Func. Count: 61, Neg. LLF: 145.2712489879237
Iteration: 6, Func. Count: 72, Neg. LLF: 145.2098192050517
Iteration: 7, Func. Count: 83, Neg. LLF: 145.16726028638658
Iteration: 8, Func. Count: 95, Neg. LLF: 144.9998247079435
Iteration: 9, Func. Count: 107, Neg. LLF: 144.5193449893767
Iteration: 10, Func. Count: 118, Neg. LLF: 144.4693692017881
Iteration: 11, Func. Count: 129, Neg. LLF: 144.46246394154753
Iteration: 12, Func. Count: 140, Neg. LLF: 144.4593068912501
Iteration: 13, Func. Count: 151, Neg. LLF: 144.45883084756994
Iteration: 14, Func. Count: 162, Neg. LLF: 144.45865618436045
Iteration: 15, Func. Count: 173, Neg. LLF: 144.45861455924103
Iteration: 16, Func. Count: 184, Neg. LLF: 144.45858786655467
Iteration: 17, Func. Count: 195, Neg. LLF: 144.45855967858301
Iteration: 18, Func. Count: 206, Neg. LLF: 144.4585511487937
Iteration: 19, Func. Count: 217, Neg. LLF: 144.45855008797423
Iteration: 20, Func. Count: 227, Neg. LLF: 144.45855009113805
Optimization terminated successfully (Exit mode 0)
Current function value: 144.45855008797423
Iterations: 20
Function evaluations: 227
Gradient evaluations: 20
Iteration: 1, Func. Count: 13, Neg. LLF: 147.5098825238206
Iteration: 2, Func. Count: 25, Neg. LLF: 146.8348747547444
Iteration: 3, Func. Count: 37, Neg. LLF: 144.9319906632053
Iteration: 4, Func. Count: 49, Neg. LLF: 145.55630514908358
Iteration: 5, Func. Count: 62, Neg. LLF: 144.67612051965943
Iteration: 6, Func. Count: 75, Neg. LLF: 145.16525900477473
Iteration: 7, Func. Count: 88, Neg. LLF: 145.0501947386475
Iteration: 8, Func. Count: 101, Neg. LLF: 144.47195369609096
Iteration: 9, Func. Count: 113, Neg. LLF: 144.4680915942743
Iteration: 10, Func. Count: 125, Neg. LLF: 144.45932605732506
Iteration: 11, Func. Count: 137, Neg. LLF: 144.4586061696124
Iteration: 12, Func. Count: 149, Neg. LLF: 144.45855405010283
Iteration: 13, Func. Count: 161, Neg. LLF: 144.45855011469035
Iteration: 14, Func. Count: 172, Neg. LLF: 144.45855019005515
Optimization terminated successfully (Exit mode 0)
Current function value: 144.45855011469035
Iterations: 14
Function evaluations: 172
Gradient evaluations: 14
Iteration: 1, Func. Count: 14, Neg. LLF: 156.44914832112596
Iteration: 2, Func. Count: 30, Neg. LLF: 149.1100557160216
Iteration: 3, Func. Count: 44, Neg. LLF: 145.4109330263192
Iteration: 4, Func. Count: 57, Neg. LLF: 146.9801895439554
Iteration: 5, Func. Count: 72, Neg. LLF: 146.75657899396117
Iteration: 6, Func. Count: 86, Neg. LLF: 144.95500205886106
Iteration: 7, Func. Count: 99, Neg. LLF: 144.72479876284643
Iteration: 8, Func. Count: 112, Neg. LLF: 144.79084553003815
Iteration: 9, Func. Count: 126, Neg. LLF: 144.87586314484034
Iteration: 10, Func. Count: 140, Neg. LLF: 144.61594782738817
Iteration: 11, Func. Count: 154, Neg. LLF: 144.48081180999245
Iteration: 12, Func. Count: 167, Neg. LLF: 144.46950307661785
Iteration: 13, Func. Count: 180, Neg. LLF: 144.46686127199536
Iteration: 14, Func. Count: 193, Neg. LLF: 144.4611273719574
Iteration: 15, Func. Count: 206, Neg. LLF: 144.4602485045984
Iteration: 16, Func. Count: 219, Neg. LLF: 144.45952250647449
Iteration: 17, Func. Count: 232, Neg. LLF: 144.45892963968694
Iteration: 18, Func. Count: 245, Neg. LLF: 144.45866990967338
Iteration: 19, Func. Count: 258, Neg. LLF: 144.4585580641261
Iteration: 20, Func. Count: 271, Neg. LLF: 144.45855033466532
Iteration: 21, Func. Count: 283, Neg. LLF: 144.45855038630185
Optimization terminated successfully (Exit mode 0)
Current function value: 144.45855033466532
Iterations: 21
Function evaluations: 283
Gradient evaluations: 21
Iteration: 1, Func. Count: 7, Neg. LLF: 155.3619921936323
Iteration: 2, Func. Count: 14, Neg. LLF: 151.6054388626793
Iteration: 3, Func. Count: 21, Neg. LLF: 147.7144099862308
Iteration: 4, Func. Count: 27, Neg. LLF: 147.7323519141715
Iteration: 5, Func. Count: 34, Neg. LLF: 147.9194606397762
Iteration: 6, Func. Count: 41, Neg. LLF: 147.30472933973306
Iteration: 7, Func. Count: 47, Neg. LLF: 147.18975761675375
Iteration: 8, Func. Count: 53, Neg. LLF: 147.17061647783635
Iteration: 9, Func. Count: 59, Neg. LLF: 147.1527304896814
Iteration: 10, Func. Count: 65, Neg. LLF: 147.1402471276524
Iteration: 11, Func. Count: 71, Neg. LLF: 147.14000430334286
Iteration: 12, Func. Count: 77, Neg. LLF: 147.14000196751894
Iteration: 13, Func. Count: 82, Neg. LLF: 147.14000196353945
Optimization terminated successfully (Exit mode 0)
Current function value: 147.14000196751894
Iterations: 13
Function evaluations: 82
Gradient evaluations: 13
Iteration: 1, Func. Count: 8, Neg. LLF: 155.20488410167826
Iteration: 2, Func. Count: 16, Neg. LLF: 155.2811151138796
Iteration: 3, Func. Count: 25, Neg. LLF: 160.93119640165048
Iteration: 4, Func. Count: 33, Neg. LLF: 147.01468425377334
Iteration: 5, Func. Count: 41, Neg. LLF: 174.53842670270282
Iteration: 6, Func. Count: 50, Neg. LLF: 146.88848730685876
Iteration: 7, Func. Count: 58, Neg. LLF: 146.93120101615068
Iteration: 8, Func. Count: 66, Neg. LLF: 146.85762978237048
Iteration: 9, Func. Count: 73, Neg. LLF: 146.8434244446096
Iteration: 10, Func. Count: 80, Neg. LLF: 146.8391163522173
Iteration: 11, Func. Count: 87, Neg. LLF: 146.83594027954962
Iteration: 12, Func. Count: 94, Neg. LLF: 146.83577260777906
Iteration: 13, Func. Count: 101, Neg. LLF: 146.8357368206046
Iteration: 14, Func. Count: 107, Neg. LLF: 146.83573682062092
Optimization terminated successfully (Exit mode 0)
Current function value: 146.8357368206046
Iterations: 14
Function evaluations: 107
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 155.20533150756026
Iteration: 2, Func. Count: 18, Neg. LLF: 147.92522119313776
Iteration: 3, Func. Count: 27, Neg. LLF: 147.05080251861125
Iteration: 4, Func. Count: 35, Neg. LLF: 171.89276342389545
Iteration: 5, Func. Count: 45, Neg. LLF: 147.03930478273705
Iteration: 6, Func. Count: 54, Neg. LLF: 147.63545179091568
Iteration: 7, Func. Count: 63, Neg. LLF: 147.61171878035947
Iteration: 8, Func. Count: 72, Neg. LLF: 146.87090843214565
Iteration: 9, Func. Count: 80, Neg. LLF: 146.8573054806362
Iteration: 10, Func. Count: 88, Neg. LLF: 146.8487105322257
Iteration: 11, Func. Count: 96, Neg. LLF: 146.83910643606492
Iteration: 12, Func. Count: 104, Neg. LLF: 146.83641329185178
Iteration: 13, Func. Count: 112, Neg. LLF: 146.83576571594386
Iteration: 14, Func. Count: 120, Neg. LLF: 146.83573864416678
Iteration: 15, Func. Count: 128, Neg. LLF: 146.8357366327645
Iteration: 16, Func. Count: 135, Neg. LLF: 146.8357367009579
Optimization terminated successfully (Exit mode 0)
Current function value: 146.8357366327645
Iterations: 16
Function evaluations: 135
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 151.50653112092203
Iteration: 2, Func. Count: 21, Neg. LLF: 151.04207829574577
Iteration: 3, Func. Count: 31, Neg. LLF: 147.68051087572414
Iteration: 4, Func. Count: 40, Neg. LLF: 149.71816524735237
Iteration: 5, Func. Count: 51, Neg. LLF: 147.63129619940696
Iteration: 6, Func. Count: 61, Neg. LLF: 147.49499624970687
Iteration: 7, Func. Count: 71, Neg. LLF: 147.38233337908
Iteration: 8, Func. Count: 80, Neg. LLF: 147.26702358978122
Iteration: 9, Func. Count: 89, Neg. LLF: 147.00923086099579
Iteration: 10, Func. Count: 98, Neg. LLF: 146.87414331732018
Iteration: 11, Func. Count: 107, Neg. LLF: 146.83902151146663
Iteration: 12, Func. Count: 116, Neg. LLF: 146.8374860485139
Iteration: 13, Func. Count: 125, Neg. LLF: 146.83581545975218
Iteration: 14, Func. Count: 134, Neg. LLF: 146.8357480347833
Iteration: 15, Func. Count: 143, Neg. LLF: 146.8357367920372
Iteration: 16, Func. Count: 151, Neg. LLF: 146.83573685929852
Optimization terminated successfully (Exit mode 0)
Current function value: 146.8357367920372
Iterations: 16
Function evaluations: 151
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 151.6260972650087
Iteration: 2, Func. Count: 23, Neg. LLF: 151.23882789709617
Iteration: 3, Func. Count: 34, Neg. LLF: 148.05418021569204
Iteration: 4, Func. Count: 45, Neg. LLF: 147.9465334320346
Iteration: 5, Func. Count: 56, Neg. LLF: 147.92906100034344
Iteration: 6, Func. Count: 67, Neg. LLF: 147.55238485116797
Iteration: 7, Func. Count: 77, Neg. LLF: 153.10813608538308
Iteration: 8, Func. Count: 89, Neg. LLF: 147.38432579974972
Iteration: 9, Func. Count: 99, Neg. LLF: 147.34782773017187
Iteration: 10, Func. Count: 109, Neg. LLF: 147.2787346832505
Iteration: 11, Func. Count: 119, Neg. LLF: 147.03152800563782
Iteration: 12, Func. Count: 129, Neg. LLF: 148.25505868005703
Iteration: 13, Func. Count: 140, Neg. LLF: 146.89504130943033
Iteration: 14, Func. Count: 150, Neg. LLF: 146.84480632515115
Iteration: 15, Func. Count: 160, Neg. LLF: 146.83729571574713
Iteration: 16, Func. Count: 170, Neg. LLF: 146.83595075296302
Iteration: 17, Func. Count: 180, Neg. LLF: 146.8357386442606
Iteration: 18, Func. Count: 190, Neg. LLF: 146.83573669967444
Iteration: 19, Func. Count: 199, Neg. LLF: 146.83573681612546
Optimization terminated successfully (Exit mode 0)
Current function value: 146.83573669967444
Iterations: 19
Function evaluations: 199
Gradient evaluations: 19
Iteration: 1, Func. Count: 8, Neg. LLF: 154.01360715339027
Iteration: 2, Func. Count: 16, Neg. LLF: 147.6629412652015
Iteration: 3, Func. Count: 24, Neg. LLF: 144.9379724359213
Iteration: 4, Func. Count: 31, Neg. LLF: 145.19504483153574
Iteration: 5, Func. Count: 39, Neg. LLF: 145.85678969377193
Iteration: 6, Func. Count: 48, Neg. LLF: 144.7918494052036
Iteration: 7, Func. Count: 55, Neg. LLF: 144.78865171024086
Iteration: 8, Func. Count: 62, Neg. LLF: 144.79061750777237
Iteration: 9, Func. Count: 70, Neg. LLF: 144.78638890522075
Iteration: 10, Func. Count: 77, Neg. LLF: 144.78488184295745
Iteration: 11, Func. Count: 84, Neg. LLF: 144.78414414524926
Iteration: 12, Func. Count: 91, Neg. LLF: 144.78388630799142
Iteration: 13, Func. Count: 98, Neg. LLF: 144.7838651144058
Iteration: 14, Func. Count: 105, Neg. LLF: 144.7838644750586
Optimization terminated successfully (Exit mode 0)
Current function value: 144.7838644750586
Iterations: 14
Function evaluations: 105
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 155.49308361172004
Iteration: 2, Func. Count: 18, Neg. LLF: 151.2376621613645
Iteration: 3, Func. Count: 28, Neg. LLF: 147.6775585961952
Iteration: 4, Func. Count: 37, Neg. LLF: 148.15788858171132
Iteration: 5, Func. Count: 46, Neg. LLF: 146.75336509704823
Iteration: 6, Func. Count: 54, Neg. LLF: 146.72027311462637
Iteration: 7, Func. Count: 62, Neg. LLF: 146.71411883580475
Iteration: 8, Func. Count: 70, Neg. LLF: 146.70237621422172
Iteration: 9, Func. Count: 78, Neg. LLF: 146.69731880335158
Iteration: 10, Func. Count: 86, Neg. LLF: 146.69576682264307
Iteration: 11, Func. Count: 94, Neg. LLF: 146.69561253753815
Iteration: 12, Func. Count: 102, Neg. LLF: 146.69559380276644
Iteration: 13, Func. Count: 110, Neg. LLF: 146.69559080001883
Iteration: 14, Func. Count: 117, Neg. LLF: 146.6955908000197
Optimization terminated successfully (Exit mode 0)
Current function value: 146.69559080001883
Iterations: 14
Function evaluations: 117
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 147.20416243058966
Iteration: 2, Func. Count: 19, Neg. LLF: 145.01810159452322
Iteration: 3, Func. Count: 28, Neg. LLF: 165.94877188254085
Iteration: 4, Func. Count: 39, Neg. LLF: 145.34093483867514
Iteration: 5, Func. Count: 49, Neg. LLF: 144.6830426474532
Iteration: 6, Func. Count: 59, Neg. LLF: 144.5229673571272
Iteration: 7, Func. Count: 68, Neg. LLF: 144.5049844145831
Iteration: 8, Func. Count: 77, Neg. LLF: 144.48887694520585
Iteration: 9, Func. Count: 86, Neg. LLF: 144.47693050627478
Iteration: 10, Func. Count: 95, Neg. LLF: 144.47524906771682
Iteration: 11, Func. Count: 104, Neg. LLF: 144.47514147367778
Iteration: 12, Func. Count: 113, Neg. LLF: 144.4751325913868
Iteration: 13, Func. Count: 122, Neg. LLF: 144.47513180255118
Optimization terminated successfully (Exit mode 0)
Current function value: 144.47513180255118
Iterations: 13
Function evaluations: 122
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 147.71356044824654
Iteration: 2, Func. Count: 22, Neg. LLF: 146.90000056703866
Iteration: 3, Func. Count: 32, Neg. LLF: 145.64640794618953
Iteration: 4, Func. Count: 42, Neg. LLF: 145.19783740048015
Iteration: 5, Func. Count: 52, Neg. LLF: 144.61062216826252
Iteration: 6, Func. Count: 62, Neg. LLF: 145.3173838547605
Iteration: 7, Func. Count: 74, Neg. LLF: 145.5273505735464
Iteration: 8, Func. Count: 86, Neg. LLF: 144.50579071212337
Iteration: 9, Func. Count: 96, Neg. LLF: 144.4989477765286
Iteration: 10, Func. Count: 106, Neg. LLF: 144.48195262003003
Iteration: 11, Func. Count: 116, Neg. LLF: 144.4765512883472
Iteration: 12, Func. Count: 126, Neg. LLF: 144.47518113732835
Iteration: 13, Func. Count: 136, Neg. LLF: 144.47513266351575
Iteration: 14, Func. Count: 146, Neg. LLF: 144.47513189851904
Optimization terminated successfully (Exit mode 0)
Current function value: 144.47513189851904
Iterations: 14
Function evaluations: 146
Gradient evaluations: 14
Iteration: 1, Func. Count: 12, Neg. LLF: 149.93275775712155
Iteration: 2, Func. Count: 24, Neg. LLF: 146.20087710642815
Iteration: 3, Func. Count: 35, Neg. LLF: 146.8359250194323
Iteration: 4, Func. Count: 48, Neg. LLF: 149.93773399425885
Iteration: 5, Func. Count: 60, Neg. LLF: 144.7684874344431
Iteration: 6, Func. Count: 71, Neg. LLF: 144.9769411287038
Iteration: 7, Func. Count: 83, Neg. LLF: 144.5309545952671
Iteration: 8, Func. Count: 94, Neg. LLF: 145.16466375388623
Iteration: 9, Func. Count: 106, Neg. LLF: 144.524594990945
Iteration: 10, Func. Count: 118, Neg. LLF: 144.49969715667856
Iteration: 11, Func. Count: 129, Neg. LLF: 144.48757498622336
Iteration: 12, Func. Count: 140, Neg. LLF: 144.47537658267981
Iteration: 13, Func. Count: 151, Neg. LLF: 144.47515823945113
Iteration: 14, Func. Count: 162, Neg. LLF: 144.47513310964231
Iteration: 15, Func. Count: 173, Neg. LLF: 144.47513180104045
Iteration: 16, Func. Count: 183, Neg. LLF: 144.47513188492303
Optimization terminated successfully (Exit mode 0)
Current function value: 144.47513180104045
Iterations: 16
Function evaluations: 183
Gradient evaluations: 16
Iteration: 1, Func. Count: 9, Neg. LLF: 149.83925599745248
Iteration: 2, Func. Count: 18, Neg. LLF: 149.61026348721285
Iteration: 3, Func. Count: 27, Neg. LLF: 144.93168025383838
Iteration: 4, Func. Count: 35, Neg. LLF: 144.96271445012616
Iteration: 5, Func. Count: 44, Neg. LLF: 145.40209295038724
Iteration: 6, Func. Count: 54, Neg. LLF: 144.80318729649323
Iteration: 7, Func. Count: 62, Neg. LLF: 144.7919447048982
Iteration: 8, Func. Count: 70, Neg. LLF: 144.786461249251
Iteration: 9, Func. Count: 78, Neg. LLF: 144.78592379809547
Iteration: 10, Func. Count: 86, Neg. LLF: 144.78439510827718
Iteration: 11, Func. Count: 94, Neg. LLF: 144.78393020294718
Iteration: 12, Func. Count: 102, Neg. LLF: 144.78386635794686
Iteration: 13, Func. Count: 110, Neg. LLF: 144.78386449183935
Iteration: 14, Func. Count: 117, Neg. LLF: 144.78386454466516
Optimization terminated successfully (Exit mode 0)
Current function value: 144.78386449183935
Iterations: 14
Function evaluations: 117
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 155.27232329930683
Iteration: 2, Func. Count: 20, Neg. LLF: 150.80273372058812
Iteration: 3, Func. Count: 31, Neg. LLF: 147.6884860379066
Iteration: 4, Func. Count: 41, Neg. LLF: 150.28941290693223
Iteration: 5, Func. Count: 51, Neg. LLF: 146.74008307398114
Iteration: 6, Func. Count: 60, Neg. LLF: 146.8410656016765
Iteration: 7, Func. Count: 70, Neg. LLF: 146.829074084134
Iteration: 8, Func. Count: 81, Neg. LLF: 146.71479962815377
Iteration: 9, Func. Count: 90, Neg. LLF: 146.70730746237393
Iteration: 10, Func. Count: 99, Neg. LLF: 146.7004978222595
Iteration: 11, Func. Count: 108, Neg. LLF: 146.69317659309206
Iteration: 12, Func. Count: 117, Neg. LLF: 146.69212131075275
Iteration: 13, Func. Count: 126, Neg. LLF: 146.69152558793695
Iteration: 14, Func. Count: 135, Neg. LLF: 146.69151332050652
Iteration: 15, Func. Count: 144, Neg. LLF: 146.69151016216614
Iteration: 16, Func. Count: 152, Neg. LLF: 146.69151016215
Optimization terminated successfully (Exit mode 0)
Current function value: 146.69151016216614
Iterations: 16
Function evaluations: 152
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 151.29785651020092
Iteration: 2, Func. Count: 22, Neg. LLF: 149.8492711544197
Iteration: 3, Func. Count: 33, Neg. LLF: 148.8009547586081
Iteration: 4, Func. Count: 44, Neg. LLF: 147.0702158219394
Iteration: 5, Func. Count: 54, Neg. LLF: 146.92706669775887
Iteration: 6, Func. Count: 64, Neg. LLF: 147.5614146939824
Iteration: 7, Func. Count: 75, Neg. LLF: 146.74466483765687
Iteration: 8, Func. Count: 85, Neg. LLF: 146.7958433979642
Iteration: 9, Func. Count: 96, Neg. LLF: 146.78911831894155
Iteration: 10, Func. Count: 107, Neg. LLF: 146.90568101313116
Iteration: 11, Func. Count: 118, Neg. LLF: 146.77794248648425
Iteration: 12, Func. Count: 129, Neg. LLF: 146.7026310373242
Iteration: 13, Func. Count: 139, Neg. LLF: 146.69537931192573
Iteration: 14, Func. Count: 149, Neg. LLF: 146.691983489153
Iteration: 15, Func. Count: 159, Neg. LLF: 146.69160905380465
Iteration: 16, Func. Count: 169, Neg. LLF: 146.69151237282952
Iteration: 17, Func. Count: 179, Neg. LLF: 146.69151027826467
Iteration: 18, Func. Count: 188, Neg. LLF: 146.69151035217857
Optimization terminated successfully (Exit mode 0)
Current function value: 146.69151027826467
Iterations: 18
Function evaluations: 188
Gradient evaluations: 18
Iteration: 1, Func. Count: 12, Neg. LLF: 151.6279542853062
Iteration: 2, Func. Count: 25, Neg. LLF: 146.51852389879954
Iteration: 3, Func. Count: 36, Neg. LLF: 146.14128664535733
Iteration: 4, Func. Count: 47, Neg. LLF: 146.92929867530583
Iteration: 5, Func. Count: 59, Neg. LLF: 144.78923384881338
Iteration: 6, Func. Count: 70, Neg. LLF: 145.21211478047766
Iteration: 7, Func. Count: 82, Neg. LLF: 145.05375178251305
Iteration: 8, Func. Count: 94, Neg. LLF: 144.50814559754616
Iteration: 9, Func. Count: 105, Neg. LLF: 144.47865583705084
Iteration: 10, Func. Count: 116, Neg. LLF: 144.47637832666072
Iteration: 11, Func. Count: 127, Neg. LLF: 144.47610109928698
Iteration: 12, Func. Count: 138, Neg. LLF: 144.4752155104121
Iteration: 13, Func. Count: 149, Neg. LLF: 144.4751366090053
Iteration: 14, Func. Count: 160, Neg. LLF: 144.4751318689037
Iteration: 15, Func. Count: 170, Neg. LLF: 144.4751319432715
Optimization terminated successfully (Exit mode 0)
Current function value: 144.4751318689037
Iterations: 15
Function evaluations: 170
Gradient evaluations: 15
Iteration: 1, Func. Count: 13, Neg. LLF: 151.96481563105985
Iteration: 2, Func. Count: 27, Neg. LLF: 151.53496537093267
Iteration: 3, Func. Count: 40, Neg. LLF: 147.90925891117334
Iteration: 4, Func. Count: 53, Neg. LLF: 146.86539557516323
Iteration: 5, Func. Count: 65, Neg. LLF: 146.09382414218354
Iteration: 6, Func. Count: 77, Neg. LLF: 149.07150426373912
Iteration: 7, Func. Count: 91, Neg. LLF: 145.94342975836526
Iteration: 8, Func. Count: 104, Neg. LLF: 144.77578120628297
Iteration: 9, Func. Count: 116, Neg. LLF: 144.5920819664997
Iteration: 10, Func. Count: 128, Neg. LLF: 144.54421155206978
Iteration: 11, Func. Count: 140, Neg. LLF: 144.5125397113733
Iteration: 12, Func. Count: 152, Neg. LLF: 144.47605260338088
Iteration: 13, Func. Count: 164, Neg. LLF: 144.47531826197377
Iteration: 14, Func. Count: 176, Neg. LLF: 144.4752734571833
Iteration: 15, Func. Count: 188, Neg. LLF: 144.47516088081966
Iteration: 16, Func. Count: 200, Neg. LLF: 144.47513532272978
Iteration: 17, Func. Count: 212, Neg. LLF: 144.47513188877994
Iteration: 18, Func. Count: 223, Neg. LLF: 144.4751319726817
Optimization terminated successfully (Exit mode 0)
Current function value: 144.47513188877994
Iterations: 18
Function evaluations: 223
Gradient evaluations: 18
Iteration: 1, Func. Count: 10, Neg. LLF: 147.4814906360996
Iteration: 2, Func. Count: 19, Neg. LLF: 147.00334264507504
Iteration: 3, Func. Count: 29, Neg. LLF: 148.9279063219574
Iteration: 4, Func. Count: 39, Neg. LLF: 144.77054930099743
Iteration: 5, Func. Count: 48, Neg. LLF: 145.08763641572085
Iteration: 6, Func. Count: 58, Neg. LLF: 145.88069148321148
Iteration: 7, Func. Count: 68, Neg. LLF: 144.5457377245945
Iteration: 8, Func. Count: 77, Neg. LLF: 144.5144755584728
Iteration: 9, Func. Count: 86, Neg. LLF: 144.479513027656
Iteration: 10, Func. Count: 95, Neg. LLF: 144.45987533716684
Iteration: 11, Func. Count: 104, Neg. LLF: 144.4585818524962
Iteration: 12, Func. Count: 113, Neg. LLF: 144.4585502281501
Iteration: 13, Func. Count: 121, Neg. LLF: 144.4585502276327
Optimization terminated successfully (Exit mode 0)
Current function value: 144.4585502281501
Iterations: 13
Function evaluations: 121
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 152.35320139508826
Iteration: 2, Func. Count: 22, Neg. LLF: 163.85192759206032
Iteration: 3, Func. Count: 33, Neg. LLF: 151.15289050710447
Iteration: 4, Func. Count: 44, Neg. LLF: 152.3182513619892
Iteration: 5, Func. Count: 56, Neg. LLF: 147.67135480970327
Iteration: 6, Func. Count: 67, Neg. LLF: 145.66616379717968
Iteration: 7, Func. Count: 78, Neg. LLF: 145.4705731533372
Iteration: 8, Func. Count: 89, Neg. LLF: 145.21759668681568
Iteration: 9, Func. Count: 99, Neg. LLF: 145.21561454441343
Iteration: 10, Func. Count: 110, Neg. LLF: 145.15895011962883
Iteration: 11, Func. Count: 121, Neg. LLF: 145.08313484883857
Iteration: 12, Func. Count: 131, Neg. LLF: 145.0662488132766
Iteration: 13, Func. Count: 141, Neg. LLF: 145.05898881784722
Iteration: 14, Func. Count: 151, Neg. LLF: 145.05467314213
Iteration: 15, Func. Count: 161, Neg. LLF: 145.05430893225926
Iteration: 16, Func. Count: 171, Neg. LLF: 145.05427668314326
Iteration: 17, Func. Count: 181, Neg. LLF: 145.05426895794528
Iteration: 18, Func. Count: 191, Neg. LLF: 145.05426828346006
Optimization terminated successfully (Exit mode 0)
Current function value: 145.05426828346006
Iterations: 18
Function evaluations: 191
Gradient evaluations: 18
Iteration: 1, Func. Count: 12, Neg. LLF: 149.80400566325594
Iteration: 2, Func. Count: 26, Neg. LLF: 147.78525005413093
Iteration: 3, Func. Count: 37, Neg. LLF: 150.23287371116348
Iteration: 4, Func. Count: 49, Neg. LLF: 150.08701301666795
Iteration: 5, Func. Count: 61, Neg. LLF: 147.06565267276
Iteration: 6, Func. Count: 73, Neg. LLF: 145.5070926166117
Iteration: 7, Func. Count: 84, Neg. LLF: 145.4263527537934
Iteration: 8, Func. Count: 96, Neg. LLF: 145.6876132825901
Iteration: 9, Func. Count: 108, Neg. LLF: 144.86448979457134
Iteration: 10, Func. Count: 120, Neg. LLF: 144.52278929315958
Iteration: 11, Func. Count: 131, Neg. LLF: 144.49429018520985
Iteration: 12, Func. Count: 142, Neg. LLF: 144.4860884433172
Iteration: 13, Func. Count: 153, Neg. LLF: 144.47783322444027
Iteration: 14, Func. Count: 164, Neg. LLF: 144.47295910546592
Iteration: 15, Func. Count: 175, Neg. LLF: 144.47232759986824
Iteration: 16, Func. Count: 186, Neg. LLF: 144.47176578913218
Iteration: 17, Func. Count: 197, Neg. LLF: 144.4701825551781
Iteration: 18, Func. Count: 208, Neg. LLF: 144.46758580631342
Iteration: 19, Func. Count: 219, Neg. LLF: 144.46410021559538
Iteration: 20, Func. Count: 230, Neg. LLF: 144.45980857009167
Iteration: 21, Func. Count: 241, Neg. LLF: 144.45873851640698
Iteration: 22, Func. Count: 252, Neg. LLF: 144.4585753451816
Iteration: 23, Func. Count: 263, Neg. LLF: 144.4585511771681
Iteration: 24, Func. Count: 274, Neg. LLF: 144.4585500739171
Iteration: 25, Func. Count: 284, Neg. LLF: 144.45855007707146
Optimization terminated successfully (Exit mode 0)
Current function value: 144.4585500739171
Iterations: 25
Function evaluations: 284
Gradient evaluations: 25
Iteration: 1, Func. Count: 13, Neg. LLF: 149.30041992155256
Iteration: 2, Func. Count: 27, Neg. LLF: 146.709510424216
Iteration: 3, Func. Count: 39, Neg. LLF: 147.52493614469537
Iteration: 4, Func. Count: 52, Neg. LLF: 147.59180183952859
Iteration: 5, Func. Count: 65, Neg. LLF: 145.14546333011108
Iteration: 6, Func. Count: 77, Neg. LLF: 145.22610680505258
Iteration: 7, Func. Count: 90, Neg. LLF: 145.85011836633984
Iteration: 8, Func. Count: 103, Neg. LLF: 144.57895096334502
Iteration: 9, Func. Count: 115, Neg. LLF: 144.4803639368464
Iteration: 10, Func. Count: 127, Neg. LLF: 144.46471403630852
Iteration: 11, Func. Count: 139, Neg. LLF: 144.45963876927556
Iteration: 12, Func. Count: 151, Neg. LLF: 144.45857552720224
Iteration: 13, Func. Count: 163, Neg. LLF: 144.45855134153535
Iteration: 14, Func. Count: 175, Neg. LLF: 144.45855010372728
Iteration: 15, Func. Count: 186, Neg. LLF: 144.45855017910895
Optimization terminated successfully (Exit mode 0)
Current function value: 144.45855010372728
Iterations: 15
Function evaluations: 186
Gradient evaluations: 15
Iteration: 1, Func. Count: 14, Neg. LLF: 154.99683379182835
Iteration: 2, Func. Count: 29, Neg. LLF: 153.09965670118999
Iteration: 3, Func. Count: 43, Neg. LLF: 155.05206206114985
Iteration: 4, Func. Count: 57, Neg. LLF: 147.09905014024872
Iteration: 5, Func. Count: 70, Neg. LLF: 145.52506794563186
Iteration: 6, Func. Count: 83, Neg. LLF: 145.89507968611616
Iteration: 7, Func. Count: 97, Neg. LLF: 144.8309444933689
Iteration: 8, Func. Count: 110, Neg. LLF: 144.66696558405928
Iteration: 9, Func. Count: 123, Neg. LLF: 144.55847662673207
Iteration: 10, Func. Count: 136, Neg. LLF: 144.5077534482414
Iteration: 11, Func. Count: 149, Neg. LLF: 144.47908937493492
Iteration: 12, Func. Count: 162, Neg. LLF: 144.47468032532853
Iteration: 13, Func. Count: 175, Neg. LLF: 144.47157502449772
Iteration: 14, Func. Count: 188, Neg. LLF: 144.4685912565919
Iteration: 15, Func. Count: 201, Neg. LLF: 144.4680648853649
Iteration: 16, Func. Count: 214, Neg. LLF: 144.46478653162626
Iteration: 17, Func. Count: 227, Neg. LLF: 144.46262443397276
Iteration: 18, Func. Count: 240, Neg. LLF: 144.4587530942193
Iteration: 19, Func. Count: 253, Neg. LLF: 144.45855063430403
Iteration: 20, Func. Count: 266, Neg. LLF: 144.45855006554004
Optimization terminated successfully (Exit mode 0)
Current function value: 144.45855006554004
Iterations: 20
Function evaluations: 266
Gradient evaluations: 20
Iteration: 1, Func. Count: 11, Neg. LLF: 146.88066716989445
Iteration: 2, Func. Count: 21, Neg. LLF: 147.07090088417462
Iteration: 3, Func. Count: 32, Neg. LLF: 147.9339732500442
Iteration: 4, Func. Count: 43, Neg. LLF: 144.758082362614
Iteration: 5, Func. Count: 53, Neg. LLF: 145.06419224859928
Iteration: 6, Func. Count: 64, Neg. LLF: 145.44381627846974
Iteration: 7, Func. Count: 75, Neg. LLF: 144.53906708482486
Iteration: 8, Func. Count: 85, Neg. LLF: 144.50475144749305
Iteration: 9, Func. Count: 95, Neg. LLF: 144.4734606827194
Iteration: 10, Func. Count: 105, Neg. LLF: 144.45944742328317
Iteration: 11, Func. Count: 115, Neg. LLF: 144.45856746962713
Iteration: 12, Func. Count: 125, Neg. LLF: 144.4585500963513
Iteration: 13, Func. Count: 134, Neg. LLF: 144.45855014393194
Optimization terminated successfully (Exit mode 0)
Current function value: 144.4585500963513
Iterations: 13
Function evaluations: 134
Gradient evaluations: 13
Iteration: 1, Func. Count: 12, Neg. LLF: 152.80883250784075
Iteration: 2, Func. Count: 24, Neg. LLF: 163.975734725324
Iteration: 3, Func. Count: 36, Neg. LLF: 150.7026287264676
Iteration: 4, Func. Count: 48, Neg. LLF: 147.83831885997523
Iteration: 5, Func. Count: 60, Neg. LLF: 157.16079973125576
Iteration: 6, Func. Count: 72, Neg. LLF: 145.5487101477582
Iteration: 7, Func. Count: 83, Neg. LLF: 145.49891348042132
Iteration: 8, Func. Count: 95, Neg. LLF: 146.68398429208975
Iteration: 9, Func. Count: 108, Neg. LLF: 145.36193827237585
Iteration: 10, Func. Count: 120, Neg. LLF: 145.18555745045407
Iteration: 11, Func. Count: 131, Neg. LLF: 145.09607945911262
Iteration: 12, Func. Count: 142, Neg. LLF: 145.07538597296198
Iteration: 13, Func. Count: 153, Neg. LLF: 145.06696582494175
Iteration: 14, Func. Count: 164, Neg. LLF: 145.05954070302192
Iteration: 15, Func. Count: 175, Neg. LLF: 145.05553043098212
Iteration: 16, Func. Count: 186, Neg. LLF: 145.05449383279932
Iteration: 17, Func. Count: 197, Neg. LLF: 145.05429448410496
Iteration: 18, Func. Count: 208, Neg. LLF: 145.0542707665322
Iteration: 19, Func. Count: 219, Neg. LLF: 145.05426822316895
Iteration: 20, Func. Count: 229, Neg. LLF: 145.054268223177
Optimization terminated successfully (Exit mode 0)
Current function value: 145.05426822316895
Iterations: 20
Function evaluations: 229
Gradient evaluations: 20
Iteration: 1, Func. Count: 13, Neg. LLF: 150.38705275508298
Iteration: 2, Func. Count: 26, Neg. LLF: 147.61834811485542
Iteration: 3, Func. Count: 39, Neg. LLF: 146.72517414818861
Iteration: 4, Func. Count: 52, Neg. LLF: 147.09262491094773
Iteration: 5, Func. Count: 65, Neg. LLF: 146.46788876796978
Iteration: 6, Func. Count: 78, Neg. LLF: 147.0254953861629
Iteration: 7, Func. Count: 91, Neg. LLF: 146.21633645553138
Iteration: 8, Func. Count: 104, Neg. LLF: 150.76601180165986
Iteration: 9, Func. Count: 117, Neg. LLF: 145.94496720932122
Iteration: 10, Func. Count: 130, Neg. LLF: 145.59747045594415
Iteration: 11, Func. Count: 143, Neg. LLF: 145.22175180880583
Iteration: 12, Func. Count: 156, Neg. LLF: 145.70350237691187
Iteration: 13, Func. Count: 169, Neg. LLF: 145.18913430718578
Iteration: 14, Func. Count: 182, Neg. LLF: 145.1150310249387
Iteration: 15, Func. Count: 195, Neg. LLF: 145.06053844680667
Iteration: 16, Func. Count: 207, Neg. LLF: 145.05499227043182
Iteration: 17, Func. Count: 219, Neg. LLF: 145.0543174438086
Iteration: 18, Func. Count: 231, Neg. LLF: 145.05427383263319
Iteration: 19, Func. Count: 243, Neg. LLF: 145.05426831163106
Iteration: 20, Func. Count: 254, Neg. LLF: 145.0542684017638
Optimization terminated successfully (Exit mode 0)
Current function value: 145.05426831163106
Iterations: 20
Function evaluations: 254
Gradient evaluations: 20
Iteration: 1, Func. Count: 14, Neg. LLF: 154.21561060376817
Iteration: 2, Func. Count: 30, Neg. LLF: 146.4906245808475
Iteration: 3, Func. Count: 43, Neg. LLF: 145.68754344143318
Iteration: 4, Func. Count: 56, Neg. LLF: 152.95691890205242
Iteration: 5, Func. Count: 71, Neg. LLF: 144.9189168057059
Iteration: 6, Func. Count: 84, Neg. LLF: 144.59000402614762
Iteration: 7, Func. Count: 97, Neg. LLF: 145.24051430490627
Iteration: 8, Func. Count: 111, Neg. LLF: 144.84404107478593
Iteration: 9, Func. Count: 125, Neg. LLF: 144.4879662068089
Iteration: 10, Func. Count: 138, Neg. LLF: 144.46579184623397
Iteration: 11, Func. Count: 151, Neg. LLF: 144.46326909723666
Iteration: 12, Func. Count: 164, Neg. LLF: 144.4598502064147
Iteration: 13, Func. Count: 177, Neg. LLF: 144.45868298701862
Iteration: 14, Func. Count: 190, Neg. LLF: 144.45856104001678
Iteration: 15, Func. Count: 203, Neg. LLF: 144.45855118737575
Iteration: 16, Func. Count: 216, Neg. LLF: 144.4585501913873
Optimization terminated successfully (Exit mode 0)
Current function value: 144.4585501913873
Iterations: 16
Function evaluations: 216
Gradient evaluations: 16
Iteration: 1, Func. Count: 15, Neg. LLF: 156.7965894631608
Iteration: 2, Func. Count: 32, Neg. LLF: 150.19533572482612
Iteration: 3, Func. Count: 47, Neg. LLF: 146.10249468559778
Iteration: 4, Func. Count: 61, Neg. LLF: 146.64070701404458
Iteration: 5, Func. Count: 76, Neg. LLF: 145.4858513011981
Iteration: 6, Func. Count: 90, Neg. LLF: 145.15516026928896
Iteration: 7, Func. Count: 104, Neg. LLF: 144.83832357791155
Iteration: 8, Func. Count: 118, Neg. LLF: 144.8321049324999
Iteration: 9, Func. Count: 133, Neg. LLF: 144.73533188625248
Iteration: 10, Func. Count: 148, Neg. LLF: 144.5532539139423
Iteration: 11, Func. Count: 162, Neg. LLF: 144.51507980344044
Iteration: 12, Func. Count: 176, Neg. LLF: 144.75238335302757
Iteration: 13, Func. Count: 191, Neg. LLF: 144.4688005372707
Iteration: 14, Func. Count: 205, Neg. LLF: 144.4634961210712
Iteration: 15, Func. Count: 219, Neg. LLF: 144.4624478426576
Iteration: 16, Func. Count: 233, Neg. LLF: 144.46112704225513
Iteration: 17, Func. Count: 247, Neg. LLF: 144.45926793217316
Iteration: 18, Func. Count: 261, Neg. LLF: 144.4590266814877
Iteration: 19, Func. Count: 275, Neg. LLF: 144.45878131493808
Iteration: 20, Func. Count: 289, Neg. LLF: 144.4586583397339
Iteration: 21, Func. Count: 303, Neg. LLF: 144.45856531362233
Iteration: 22, Func. Count: 317, Neg. LLF: 144.45855162499393
Iteration: 23, Func. Count: 331, Neg. LLF: 144.45855015253753
Iteration: 24, Func. Count: 344, Neg. LLF: 144.45855020408484
Optimization terminated successfully (Exit mode 0)
Current function value: 144.45855015253753
Iterations: 24
Function evaluations: 344
Gradient evaluations: 24
Iteration: 1, Func. Count: 8, Neg. LLF: 146.29489064049918
Iteration: 2, Func. Count: 16, Neg. LLF: 146.92355167998218
Iteration: 3, Func. Count: 25, Neg. LLF: 148.80939402871576
Iteration: 4, Func. Count: 35, Neg. LLF: 150.6397042566221
Iteration: 5, Func. Count: 43, Neg. LLF: 144.1886015063002
Iteration: 6, Func. Count: 50, Neg. LLF: 145.60544828249377
Iteration: 7, Func. Count: 58, Neg. LLF: 145.33592453461372
Iteration: 8, Func. Count: 67, Neg. LLF: 143.86404220271075
Iteration: 9, Func. Count: 74, Neg. LLF: 143.7699138068818
Iteration: 10, Func. Count: 81, Neg. LLF: 143.75784724250488
Iteration: 11, Func. Count: 88, Neg. LLF: 143.75610138420225
Iteration: 12, Func. Count: 95, Neg. LLF: 143.75578597386192
Iteration: 13, Func. Count: 102, Neg. LLF: 143.75568298105568
Iteration: 14, Func. Count: 109, Neg. LLF: 143.75562390965285
Iteration: 15, Func. Count: 116, Neg. LLF: 143.75561768689113
Iteration: 16, Func. Count: 122, Neg. LLF: 143.7556176869238
Optimization terminated successfully (Exit mode 0)
Current function value: 143.75561768689113
Iterations: 16
Function evaluations: 122
Gradient evaluations: 16
Iteration: 1, Func. Count: 9, Neg. LLF: 146.91782444666848
Iteration: 2, Func. Count: 18, Neg. LLF: 146.92640651512974
Iteration: 3, Func. Count: 27, Neg. LLF: 155.47550642313527
Iteration: 4, Func. Count: 37, Neg. LLF: 156.35578436106314
Iteration: 5, Func. Count: 46, Neg. LLF: 146.7380324349272
Iteration: 6, Func. Count: 55, Neg. LLF: 145.53349157683667
Iteration: 7, Func. Count: 64, Neg. LLF: 144.9863434547378
Iteration: 8, Func. Count: 73, Neg. LLF: 143.86558255018682
Iteration: 9, Func. Count: 81, Neg. LLF: 143.81679850764758
Iteration: 10, Func. Count: 89, Neg. LLF: 143.79179458545886
Iteration: 11, Func. Count: 97, Neg. LLF: 143.7778703077564
Iteration: 12, Func. Count: 105, Neg. LLF: 143.76992005961569
Iteration: 13, Func. Count: 113, Neg. LLF: 143.75866466804388
Iteration: 14, Func. Count: 121, Neg. LLF: 143.75593991029024
Iteration: 15, Func. Count: 129, Neg. LLF: 143.75565517458733
Iteration: 16, Func. Count: 137, Neg. LLF: 143.75562042433057
Iteration: 17, Func. Count: 145, Neg. LLF: 143.75561740185194
Iteration: 18, Func. Count: 152, Neg. LLF: 143.75561744185808
Optimization terminated successfully (Exit mode 0)
Current function value: 143.75561740185194
Iterations: 18
Function evaluations: 152
Gradient evaluations: 18
Iteration: 1, Func. Count: 10, Neg. LLF: 146.8742530588251
Iteration: 2, Func. Count: 20, Neg. LLF: 145.97457089945303
Iteration: 3, Func. Count: 30, Neg. LLF: 163.90906990522
Iteration: 4, Func. Count: 41, Neg. LLF: 148.66479262815395
Iteration: 5, Func. Count: 53, Neg. LLF: 174.92024050644753
Iteration: 6, Func. Count: 63, Neg. LLF: 144.08121067933286
Iteration: 7, Func. Count: 72, Neg. LLF: 143.87963308909818
Iteration: 8, Func. Count: 81, Neg. LLF: 143.96268565184516
Iteration: 9, Func. Count: 91, Neg. LLF: 143.78563447740976
Iteration: 10, Func. Count: 100, Neg. LLF: 143.77737764153048
Iteration: 11, Func. Count: 109, Neg. LLF: 143.7660063426147
Iteration: 12, Func. Count: 118, Neg. LLF: 143.75865784622246
Iteration: 13, Func. Count: 127, Neg. LLF: 143.7557457569345
Iteration: 14, Func. Count: 136, Neg. LLF: 143.7556223856738
Iteration: 15, Func. Count: 145, Neg. LLF: 143.75561751309795
Iteration: 16, Func. Count: 153, Neg. LLF: 143.75561756078525
Optimization terminated successfully (Exit mode 0)
Current function value: 143.75561751309795
Iterations: 16
Function evaluations: 153
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 145.85454962591757
Iteration: 2, Func. Count: 21, Neg. LLF: 145.61314866140634
Iteration: 3, Func. Count: 32, Neg. LLF: 149.2356367882735
Iteration: 4, Func. Count: 45, Neg. LLF: 148.6300864271598
Iteration: 5, Func. Count: 59, Neg. LLF: 152.99611263718595
Iteration: 6, Func. Count: 70, Neg. LLF: 144.33688475443032
Iteration: 7, Func. Count: 80, Neg. LLF: 145.4756841105783
Iteration: 8, Func. Count: 91, Neg. LLF: 144.2183384867075
Iteration: 9, Func. Count: 102, Neg. LLF: 143.85834723631808
Iteration: 10, Func. Count: 112, Neg. LLF: 143.8188374666784
Iteration: 11, Func. Count: 122, Neg. LLF: 143.77403492910716
Iteration: 12, Func. Count: 132, Neg. LLF: 143.75889834769652
Iteration: 13, Func. Count: 142, Neg. LLF: 143.75569555072647
Iteration: 14, Func. Count: 152, Neg. LLF: 143.75562565095694
Iteration: 15, Func. Count: 162, Neg. LLF: 143.75561925636595
Iteration: 16, Func. Count: 172, Neg. LLF: 143.75561747783775
Iteration: 17, Func. Count: 181, Neg. LLF: 143.7556175409168
Optimization terminated successfully (Exit mode 0)
Current function value: 143.75561747783775
Iterations: 17
Function evaluations: 181
Gradient evaluations: 17
Iteration: 1, Func. Count: 12, Neg. LLF: 145.86733795859152
Iteration: 2, Func. Count: 23, Neg. LLF: 145.57560863197065
Iteration: 3, Func. Count: 35, Neg. LLF: 149.23281191121734
Iteration: 4, Func. Count: 49, Neg. LLF: 148.60810289409426
Iteration: 5, Func. Count: 64, Neg. LLF: 153.13028164591873
Iteration: 6, Func. Count: 76, Neg. LLF: 144.2220983943496
Iteration: 7, Func. Count: 87, Neg. LLF: 144.70521865104132
Iteration: 8, Func. Count: 99, Neg. LLF: 145.03929147386705
Iteration: 9, Func. Count: 111, Neg. LLF: 143.86316182606944
Iteration: 10, Func. Count: 122, Neg. LLF: 143.8199842242504
Iteration: 11, Func. Count: 133, Neg. LLF: 143.77789571901926
Iteration: 12, Func. Count: 144, Neg. LLF: 143.75723016340766
Iteration: 13, Func. Count: 155, Neg. LLF: 143.7557584538794
Iteration: 14, Func. Count: 166, Neg. LLF: 143.75563123281606
Iteration: 15, Func. Count: 177, Neg. LLF: 143.75561880783778
Iteration: 16, Func. Count: 188, Neg. LLF: 143.75561744423695
Iteration: 17, Func. Count: 198, Neg. LLF: 143.75561762288123
Optimization terminated successfully (Exit mode 0)
Current function value: 143.75561744423695
Iterations: 17
Function evaluations: 198
Gradient evaluations: 17
Iteration: 1, Func. Count: 9, Neg. LLF: 149.85454369546213
Iteration: 2, Func. Count: 18, Neg. LLF: 156.9181119760813
Iteration: 3, Func. Count: 27, Neg. LLF: 146.42818613979034
Iteration: 4, Func. Count: 37, Neg. LLF: 145.85053348361444
Iteration: 5, Func. Count: 46, Neg. LLF: 145.69380167925064
Iteration: 6, Func. Count: 55, Neg. LLF: 144.18997702398988
Iteration: 7, Func. Count: 64, Neg. LLF: 151.07643506721604
Iteration: 8, Func. Count: 73, Neg. LLF: 144.83319226938798
Iteration: 9, Func. Count: 82, Neg. LLF: 144.0143042863908
Iteration: 10, Func. Count: 91, Neg. LLF: 153.19034421347436
Iteration: 11, Func. Count: 100, Neg. LLF: 143.70616440916595
Iteration: 12, Func. Count: 108, Neg. LLF: 143.66071744869515
Iteration: 13, Func. Count: 116, Neg. LLF: 143.62351197477795
Iteration: 14, Func. Count: 124, Neg. LLF: 143.61708518317042
Iteration: 15, Func. Count: 132, Neg. LLF: 143.6169527862677
Iteration: 16, Func. Count: 140, Neg. LLF: 143.6168875767882
Iteration: 17, Func. Count: 147, Neg. LLF: 143.61688757677433
Optimization terminated successfully (Exit mode 0)
Current function value: 143.6168875767882
Iterations: 17
Function evaluations: 147
Gradient evaluations: 17
Iteration: 1, Func. Count: 10, Neg. LLF: 146.960195152842
Iteration: 2, Func. Count: 20, Neg. LLF: 146.9532590697627
Iteration: 3, Func. Count: 30, Neg. LLF: 151.0404249428518
Iteration: 4, Func. Count: 41, Neg. LLF: 165.50376727784052
Iteration: 5, Func. Count: 51, Neg. LLF: 145.53545304556124
Iteration: 6, Func. Count: 61, Neg. LLF: 145.33176773424054
Iteration: 7, Func. Count: 71, Neg. LLF: 145.3112669970115
Iteration: 8, Func. Count: 81, Neg. LLF: 143.88547308330132
Iteration: 9, Func. Count: 91, Neg. LLF: 144.20634274388192
Iteration: 10, Func. Count: 101, Neg. LLF: 143.61827705060455
Iteration: 11, Func. Count: 110, Neg. LLF: 143.6171826268207
Iteration: 12, Func. Count: 119, Neg. LLF: 143.61757341821632
Iteration: 13, Func. Count: 129, Neg. LLF: 143.6170116750774
Iteration: 14, Func. Count: 138, Neg. LLF: 143.6169814254264
Iteration: 15, Func. Count: 147, Neg. LLF: 143.61692292094676
Iteration: 16, Func. Count: 156, Neg. LLF: 143.61689394069683
Iteration: 17, Func. Count: 165, Neg. LLF: 143.6168878168469
Iteration: 18, Func. Count: 173, Neg. LLF: 143.61688786802864
Optimization terminated successfully (Exit mode 0)
Current function value: 143.6168878168469
Iterations: 18
Function evaluations: 173
Gradient evaluations: 18
Iteration: 1, Func. Count: 11, Neg. LLF: 147.17924451137793
Iteration: 2, Func. Count: 22, Neg. LLF: 147.0415072719837
Iteration: 3, Func. Count: 33, Neg. LLF: 145.24364038462582
Iteration: 4, Func. Count: 44, Neg. LLF: 156.73419517483183
Iteration: 5, Func. Count: 55, Neg. LLF: 150.01062913398272
Iteration: 6, Func. Count: 66, Neg. LLF: 145.83284869568914
Iteration: 7, Func. Count: 77, Neg. LLF: 144.058157272778
Iteration: 8, Func. Count: 87, Neg. LLF: 147.36301603265002
Iteration: 9, Func. Count: 98, Neg. LLF: 144.5933074004106
Iteration: 10, Func. Count: 109, Neg. LLF: 143.78168022584526
Iteration: 11, Func. Count: 119, Neg. LLF: 143.723190530353
Iteration: 12, Func. Count: 129, Neg. LLF: 144.0337364963814
Iteration: 13, Func. Count: 140, Neg. LLF: 143.63292044622375
Iteration: 14, Func. Count: 150, Neg. LLF: 143.62061973897065
Iteration: 15, Func. Count: 160, Neg. LLF: 143.6172972223094
Iteration: 16, Func. Count: 170, Neg. LLF: 143.61693221661653
Iteration: 17, Func. Count: 180, Neg. LLF: 143.61689227069334
Iteration: 18, Func. Count: 190, Neg. LLF: 143.6168877448608
Iteration: 19, Func. Count: 199, Neg. LLF: 143.61688783452107
Optimization terminated successfully (Exit mode 0)
Current function value: 143.6168877448608
Iterations: 19
Function evaluations: 199
Gradient evaluations: 19
Iteration: 1, Func. Count: 12, Neg. LLF: 147.22874311493297
Iteration: 2, Func. Count: 24, Neg. LLF: 146.7514289889417
Iteration: 3, Func. Count: 36, Neg. LLF: 145.26930930097473
Iteration: 4, Func. Count: 48, Neg. LLF: 148.62780962105285
Iteration: 5, Func. Count: 60, Neg. LLF: 159.71638799255933
Iteration: 6, Func. Count: 73, Neg. LLF: 144.13173307876067
Iteration: 7, Func. Count: 85, Neg. LLF: 150.24828246527562
Iteration: 8, Func. Count: 98, Neg. LLF: 143.9356640581121
Iteration: 9, Func. Count: 109, Neg. LLF: 148.27753226560574
Iteration: 10, Func. Count: 121, Neg. LLF: 143.66003631055824
Iteration: 11, Func. Count: 132, Neg. LLF: 143.62280959441634
Iteration: 12, Func. Count: 143, Neg. LLF: 143.618062458766
Iteration: 13, Func. Count: 154, Neg. LLF: 143.61700138317485
Iteration: 14, Func. Count: 165, Neg. LLF: 143.61692080902625
Iteration: 15, Func. Count: 176, Neg. LLF: 143.61688911031825
Iteration: 16, Func. Count: 187, Neg. LLF: 143.61688807662432
Iteration: 17, Func. Count: 198, Neg. LLF: 143.61688748301725
Optimization terminated successfully (Exit mode 0)
Current function value: 143.61688748301725
Iterations: 17
Function evaluations: 198
Gradient evaluations: 17
Iteration: 1, Func. Count: 13, Neg. LLF: 147.33697061829275
Iteration: 2, Func. Count: 26, Neg. LLF: 146.6430671818019
Iteration: 3, Func. Count: 39, Neg. LLF: 145.94456083484747
Iteration: 4, Func. Count: 52, Neg. LLF: 145.9622503501628
Iteration: 5, Func. Count: 65, Neg. LLF: 151.0092742394188
Iteration: 6, Func. Count: 79, Neg. LLF: 145.08530520530135
Iteration: 7, Func. Count: 92, Neg. LLF: 144.59459702571502
Iteration: 8, Func. Count: 105, Neg. LLF: 144.18012836217085
Iteration: 9, Func. Count: 118, Neg. LLF: 146.70376575221866
Iteration: 10, Func. Count: 131, Neg. LLF: 143.8592707308553
Iteration: 11, Func. Count: 143, Neg. LLF: 143.72170087854417
Iteration: 12, Func. Count: 155, Neg. LLF: 143.69441386205787
Iteration: 13, Func. Count: 167, Neg. LLF: 143.63135404382524
Iteration: 14, Func. Count: 179, Neg. LLF: 143.62183968137933
Iteration: 15, Func. Count: 191, Neg. LLF: 143.617971913977
Iteration: 16, Func. Count: 203, Neg. LLF: 143.61694365455196
Iteration: 17, Func. Count: 215, Neg. LLF: 143.61689679055203
Iteration: 18, Func. Count: 227, Neg. LLF: 143.6168884800631
Iteration: 19, Func. Count: 239, Neg. LLF: 143.6168875000538
Optimization terminated successfully (Exit mode 0)
Current function value: 143.6168875000538
Iterations: 19
Function evaluations: 239
Gradient evaluations: 19
Iteration: 1, Func. Count: 10, Neg. LLF: 147.75593767243183
Iteration: 2, Func. Count: 20, Neg. LLF: 150.17486858086815
Iteration: 3, Func. Count: 30, Neg. LLF: 145.2435802533962
Iteration: 4, Func. Count: 40, Neg. LLF: 147.80116007563757
Iteration: 5, Func. Count: 50, Neg. LLF: 144.36303256231503
Iteration: 6, Func. Count: 60, Neg. LLF: 144.79535168935467
Iteration: 7, Func. Count: 70, Neg. LLF: 146.95482579977153
Iteration: 8, Func. Count: 81, Neg. LLF: 144.2598311402488
Iteration: 9, Func. Count: 91, Neg. LLF: 144.7615362096801
Iteration: 10, Func. Count: 101, Neg. LLF: 143.41708488602964
Iteration: 11, Func. Count: 110, Neg. LLF: 143.36732424000758
Iteration: 12, Func. Count: 119, Neg. LLF: 143.30889974331348
Iteration: 13, Func. Count: 128, Neg. LLF: 143.2921995242172
Iteration: 14, Func. Count: 137, Neg. LLF: 143.28999579531344
Iteration: 15, Func. Count: 146, Neg. LLF: 143.28982565596328
Iteration: 16, Func. Count: 155, Neg. LLF: 143.28980285018937
Iteration: 17, Func. Count: 164, Neg. LLF: 143.2898008561902
Iteration: 18, Func. Count: 172, Neg. LLF: 143.28980085636587
Optimization terminated successfully (Exit mode 0)
Current function value: 143.2898008561902
Iterations: 18
Function evaluations: 172
Gradient evaluations: 18
Iteration: 1, Func. Count: 11, Neg. LLF: 146.9117536042637
Iteration: 2, Func. Count: 22, Neg. LLF: 146.93148004833162
Iteration: 3, Func. Count: 33, Neg. LLF: 160.36742950986118
Iteration: 4, Func. Count: 46, Neg. LLF: 157.49568860970348
Iteration: 5, Func. Count: 57, Neg. LLF: 145.43957008206314
Iteration: 6, Func. Count: 68, Neg. LLF: 144.39863242467945
Iteration: 7, Func. Count: 79, Neg. LLF: 145.10034593067624
Iteration: 8, Func. Count: 90, Neg. LLF: 144.10800638714392
Iteration: 9, Func. Count: 101, Neg. LLF: 143.63505428204434
Iteration: 10, Func. Count: 112, Neg. LLF: 143.43419089840572
Iteration: 11, Func. Count: 123, Neg. LLF: 143.29474390443153
Iteration: 12, Func. Count: 133, Neg. LLF: 143.2917216337225
Iteration: 13, Func. Count: 143, Neg. LLF: 143.29119328878707
Iteration: 14, Func. Count: 153, Neg. LLF: 143.29067119171486
Iteration: 15, Func. Count: 163, Neg. LLF: 143.2901956596541
Iteration: 16, Func. Count: 173, Neg. LLF: 143.28988276989645
Iteration: 17, Func. Count: 183, Neg. LLF: 143.28980833358835
Iteration: 18, Func. Count: 193, Neg. LLF: 143.28980077909335
Iteration: 19, Func. Count: 202, Neg. LLF: 143.28980084843914
Optimization terminated successfully (Exit mode 0)
Current function value: 143.28980077909335
Iterations: 19
Function evaluations: 202
Gradient evaluations: 19
Iteration: 1, Func. Count: 12, Neg. LLF: 146.88059020806463
Iteration: 2, Func. Count: 24, Neg. LLF: 144.66272814099136
Iteration: 3, Func. Count: 36, Neg. LLF: 146.28277087198668
Iteration: 4, Func. Count: 51, Neg. LLF: 169.57933053375515
Iteration: 5, Func. Count: 63, Neg. LLF: 146.8429544003174
Iteration: 6, Func. Count: 75, Neg. LLF: 144.75956414694147
Iteration: 7, Func. Count: 87, Neg. LLF: 144.41532037552162
Iteration: 8, Func. Count: 99, Neg. LLF: 144.62293080395344
Iteration: 9, Func. Count: 111, Neg. LLF: 143.48557454417417
Iteration: 10, Func. Count: 122, Neg. LLF: 143.2985042345608
Iteration: 11, Func. Count: 133, Neg. LLF: 143.2944364729819
Iteration: 12, Func. Count: 144, Neg. LLF: 143.2931727098685
Iteration: 13, Func. Count: 155, Neg. LLF: 143.29215614524293
Iteration: 14, Func. Count: 166, Neg. LLF: 143.29072485778602
Iteration: 15, Func. Count: 177, Neg. LLF: 143.28999163375804
Iteration: 16, Func. Count: 188, Neg. LLF: 143.28981553020586
Iteration: 17, Func. Count: 199, Neg. LLF: 143.2898006499755
Iteration: 18, Func. Count: 209, Neg. LLF: 143.2898007652945
Optimization terminated successfully (Exit mode 0)
Current function value: 143.2898006499755
Iterations: 18
Function evaluations: 209
Gradient evaluations: 18
Iteration: 1, Func. Count: 13, Neg. LLF: 145.87607802724682
Iteration: 2, Func. Count: 25, Neg. LLF: 145.26058859439757
Iteration: 3, Func. Count: 38, Neg. LLF: 147.22102734453676
Iteration: 4, Func. Count: 54, Neg. LLF: 151.4271772179207
Iteration: 5, Func. Count: 67, Neg. LLF: 153.84371599163646
Iteration: 6, Func. Count: 80, Neg. LLF: 145.35554310780503
Iteration: 7, Func. Count: 93, Neg. LLF: 144.63478872638797
Iteration: 8, Func. Count: 106, Neg. LLF: 144.21619630148834
Iteration: 9, Func. Count: 119, Neg. LLF: 143.7009647800499
Iteration: 10, Func. Count: 131, Neg. LLF: 147.37376394463055
Iteration: 11, Func. Count: 144, Neg. LLF: 143.41376866465825
Iteration: 12, Func. Count: 156, Neg. LLF: 143.41626582872738
Iteration: 13, Func. Count: 169, Neg. LLF: 143.3178289689319
Iteration: 14, Func. Count: 181, Neg. LLF: 143.2952072823234
Iteration: 15, Func. Count: 193, Neg. LLF: 143.2913735428187
Iteration: 16, Func. Count: 205, Neg. LLF: 143.29009649059284
Iteration: 17, Func. Count: 217, Neg. LLF: 143.28987728196083
Iteration: 18, Func. Count: 229, Neg. LLF: 143.28980816127415
Iteration: 19, Func. Count: 241, Neg. LLF: 143.28980071712795
Iteration: 20, Func. Count: 252, Neg. LLF: 143.28980080666474
Optimization terminated successfully (Exit mode 0)
Current function value: 143.28980071712795
Iterations: 20
Function evaluations: 252
Gradient evaluations: 20
Iteration: 1, Func. Count: 14, Neg. LLF: 145.88786833525714
Iteration: 2, Func. Count: 27, Neg. LLF: 145.3100785604845
Iteration: 3, Func. Count: 41, Neg. LLF: 146.52902068863708
Iteration: 4, Func. Count: 58, Neg. LLF: 150.24746204490032
Iteration: 5, Func. Count: 72, Neg. LLF: 154.68415768886604
Iteration: 6, Func. Count: 86, Neg. LLF: 144.41980885617508
Iteration: 7, Func. Count: 100, Neg. LLF: 146.58197597906238
Iteration: 8, Func. Count: 114, Neg. LLF: 143.85252637362439
Iteration: 9, Func. Count: 128, Neg. LLF: 144.34288003098715
Iteration: 10, Func. Count: 142, Neg. LLF: 144.6427467017449
Iteration: 11, Func. Count: 156, Neg. LLF: 143.42938789513153
Iteration: 12, Func. Count: 169, Neg. LLF: 143.34532789535146
Iteration: 13, Func. Count: 182, Neg. LLF: 143.314852203781
Iteration: 14, Func. Count: 195, Neg. LLF: 143.29461100128466
Iteration: 15, Func. Count: 208, Neg. LLF: 143.29107567016075
Iteration: 16, Func. Count: 221, Neg. LLF: 143.28984640140936
Iteration: 17, Func. Count: 234, Neg. LLF: 143.28980363831613
Iteration: 18, Func. Count: 247, Neg. LLF: 143.289800481343
Iteration: 19, Func. Count: 259, Neg. LLF: 143.28980075271886
Optimization terminated successfully (Exit mode 0)
Current function value: 143.289800481343
Iterations: 19
Function evaluations: 259
Gradient evaluations: 19
Iteration: 1, Func. Count: 11, Neg. LLF: 146.68447843391394
Iteration: 2, Func. Count: 22, Neg. LLF: 145.68432306031147
Iteration: 3, Func. Count: 34, Neg. LLF: 146.74987470195686
Iteration: 4, Func. Count: 45, Neg. LLF: 143.81450649003716
Iteration: 5, Func. Count: 55, Neg. LLF: 145.9714093244374
Iteration: 6, Func. Count: 66, Neg. LLF: 146.99398870977464
Iteration: 7, Func. Count: 77, Neg. LLF: 144.11186709058464
Iteration: 8, Func. Count: 88, Neg. LLF: 144.44355233305578
Iteration: 9, Func. Count: 99, Neg. LLF: 178.52214239583722
Iteration: 10, Func. Count: 110, Neg. LLF: 143.25729154595646
Iteration: 11, Func. Count: 121, Neg. LLF: 143.1789575962632
Iteration: 12, Func. Count: 131, Neg. LLF: 143.14038400711024
Iteration: 13, Func. Count: 141, Neg. LLF: 143.12118050877748
Iteration: 14, Func. Count: 151, Neg. LLF: 143.1158453333744
Iteration: 15, Func. Count: 161, Neg. LLF: 143.11412153917496
Iteration: 16, Func. Count: 171, Neg. LLF: 143.11403911713097
Iteration: 17, Func. Count: 180, Neg. LLF: 143.11403911711
Optimization terminated successfully (Exit mode 0)
Current function value: 143.11403911713097
Iterations: 17
Function evaluations: 180
Gradient evaluations: 17
Iteration: 1, Func. Count: 12, Neg. LLF: 148.29387831576588
Iteration: 2, Func. Count: 24, Neg. LLF: 146.68902966682205
Iteration: 3, Func. Count: 36, Neg. LLF: 174.5371103296093
Iteration: 4, Func. Count: 50, Neg. LLF: 145.30371475518365
Iteration: 5, Func. Count: 62, Neg. LLF: 143.86967016520396
Iteration: 6, Func. Count: 73, Neg. LLF: 147.42624460740763
Iteration: 7, Func. Count: 85, Neg. LLF: 143.95050721057564
Iteration: 8, Func. Count: 97, Neg. LLF: 143.46992210856519
Iteration: 9, Func. Count: 109, Neg. LLF: 143.31351494335868
Iteration: 10, Func. Count: 121, Neg. LLF: 143.79773717599483
Iteration: 11, Func. Count: 133, Neg. LLF: 143.1353664423136
Iteration: 12, Func. Count: 144, Neg. LLF: 143.12664464795662
Iteration: 13, Func. Count: 155, Neg. LLF: 143.120869267782
Iteration: 14, Func. Count: 166, Neg. LLF: 143.11573277423633
Iteration: 15, Func. Count: 177, Neg. LLF: 143.11455969400345
Iteration: 16, Func. Count: 188, Neg. LLF: 143.1140962993232
Iteration: 17, Func. Count: 199, Neg. LLF: 143.1140443287929
Iteration: 18, Func. Count: 210, Neg. LLF: 143.1140389723589
Iteration: 19, Func. Count: 220, Neg. LLF: 143.11403902616286
Optimization terminated successfully (Exit mode 0)
Current function value: 143.1140389723589
Iterations: 19
Function evaluations: 220
Gradient evaluations: 19
Iteration: 1, Func. Count: 13, Neg. LLF: 146.86608593105396
Iteration: 2, Func. Count: 26, Neg. LLF: 145.4009899681055
Iteration: 3, Func. Count: 39, Neg. LLF: 171.3569259022871
Iteration: 4, Func. Count: 54, Neg. LLF: 149.64313540752585
Iteration: 5, Func. Count: 69, Neg. LLF: 169.91432274766916
Iteration: 6, Func. Count: 82, Neg. LLF: 145.8737006837286
Iteration: 7, Func. Count: 95, Neg. LLF: 143.40470848248378
Iteration: 8, Func. Count: 107, Neg. LLF: 145.4474000786383
Iteration: 9, Func. Count: 120, Neg. LLF: 143.4828812448564
Iteration: 10, Func. Count: 133, Neg. LLF: 143.1358229313579
Iteration: 11, Func. Count: 145, Neg. LLF: 143.13160895893137
Iteration: 12, Func. Count: 158, Neg. LLF: 143.12012458211083
Iteration: 13, Func. Count: 170, Neg. LLF: 143.11752718054296
Iteration: 14, Func. Count: 182, Neg. LLF: 143.11445175083486
Iteration: 15, Func. Count: 194, Neg. LLF: 143.11412051331843
Iteration: 16, Func. Count: 206, Neg. LLF: 143.11405299001777
Iteration: 17, Func. Count: 218, Neg. LLF: 143.1140440697426
Iteration: 18, Func. Count: 230, Neg. LLF: 143.11403972778632
Iteration: 19, Func. Count: 242, Neg. LLF: 143.1140387827232
Optimization terminated successfully (Exit mode 0)
Current function value: 143.1140387827232
Iterations: 19
Function evaluations: 242
Gradient evaluations: 19
Iteration: 1, Func. Count: 14, Neg. LLF: 145.88086636561223
Iteration: 2, Func. Count: 27, Neg. LLF: 145.27142110611192
Iteration: 3, Func. Count: 41, Neg. LLF: 155.75100501146645
Iteration: 4, Func. Count: 57, Neg. LLF: 149.97281562274947
Iteration: 5, Func. Count: 75, Neg. LLF: 158.29210253960372
Iteration: 6, Func. Count: 89, Neg. LLF: 152.73845911580636
Iteration: 7, Func. Count: 103, Neg. LLF: 145.15097503333448
Iteration: 8, Func. Count: 117, Neg. LLF: 145.51976498538352
Iteration: 9, Func. Count: 131, Neg. LLF: 143.57505126769956
Iteration: 10, Func. Count: 144, Neg. LLF: 143.3433605390735
Iteration: 11, Func. Count: 157, Neg. LLF: 143.21142659533214
Iteration: 12, Func. Count: 170, Neg. LLF: 143.16862799449447
Iteration: 13, Func. Count: 183, Neg. LLF: 143.13949396556563
Iteration: 14, Func. Count: 196, Neg. LLF: 143.11987812039675
Iteration: 15, Func. Count: 209, Neg. LLF: 143.1141350869198
Iteration: 16, Func. Count: 222, Neg. LLF: 143.1140635138709
Iteration: 17, Func. Count: 235, Neg. LLF: 143.11403898448242
Iteration: 18, Func. Count: 247, Neg. LLF: 143.11403904107098
Optimization terminated successfully (Exit mode 0)
Current function value: 143.11403898448242
Iterations: 18
Function evaluations: 247
Gradient evaluations: 18
Iteration: 1, Func. Count: 15, Neg. LLF: 145.9398767094184
Iteration: 2, Func. Count: 29, Neg. LLF: 145.42085643610935
Iteration: 3, Func. Count: 44, Neg. LLF: 155.48236623228271
Iteration: 4, Func. Count: 61, Neg. LLF: 154.0923750618163
Iteration: 5, Func. Count: 80, Neg. LLF: 161.4319531675338
Iteration: 6, Func. Count: 95, Neg. LLF: 152.66002687387027
Iteration: 7, Func. Count: 110, Neg. LLF: 145.02708869206995
Iteration: 8, Func. Count: 125, Neg. LLF: 146.33585380608676
Iteration: 9, Func. Count: 140, Neg. LLF: 143.57251312198903
Iteration: 10, Func. Count: 154, Neg. LLF: 143.3448504537469
Iteration: 11, Func. Count: 168, Neg. LLF: 143.20648403458168
Iteration: 12, Func. Count: 182, Neg. LLF: 143.1628586107882
Iteration: 13, Func. Count: 196, Neg. LLF: 143.13669827623573
Iteration: 14, Func. Count: 210, Neg. LLF: 143.11644454912832
Iteration: 15, Func. Count: 224, Neg. LLF: 143.11454458009536
Iteration: 16, Func. Count: 238, Neg. LLF: 143.1141068935095
Iteration: 17, Func. Count: 252, Neg. LLF: 143.11404377854825
Iteration: 18, Func. Count: 266, Neg. LLF: 143.11403903526295
Iteration: 19, Func. Count: 279, Neg. LLF: 143.1140392361605
Optimization terminated successfully (Exit mode 0)
Current function value: 143.11403903526295
Iterations: 19
Function evaluations: 279
Gradient evaluations: 19
Iteration: 1, Func. Count: 12, Neg. LLF: 144.22880962510564
Iteration: 2, Func. Count: 23, Neg. LLF: 149.38404047601355
Iteration: 3, Func. Count: 35, Neg. LLF: 146.06673224056345
Iteration: 4, Func. Count: 47, Neg. LLF: 146.13026380036322
Iteration: 5, Func. Count: 59, Neg. LLF: 142.04086136019376
Iteration: 6, Func. Count: 70, Neg. LLF: 150.32191423717842
Iteration: 7, Func. Count: 84, Neg. LLF: 150.39298481739996
Iteration: 8, Func. Count: 97, Neg. LLF: 142.4588901844966
Iteration: 9, Func. Count: 109, Neg. LLF: 141.46084762029292
Iteration: 10, Func. Count: 121, Neg. LLF: 141.25958935723725
Iteration: 11, Func. Count: 133, Neg. LLF: 141.14752850107578
Iteration: 12, Func. Count: 144, Neg. LLF: 141.1216278528118
Iteration: 13, Func. Count: 155, Neg. LLF: 141.11464355326416
Iteration: 14, Func. Count: 166, Neg. LLF: 141.11274771269703
Iteration: 15, Func. Count: 177, Neg. LLF: 141.112247224695
Iteration: 16, Func. Count: 188, Neg. LLF: 141.1121763817343
Iteration: 17, Func. Count: 199, Neg. LLF: 141.11214729758208
Iteration: 18, Func. Count: 210, Neg. LLF: 141.11214205688003
Iteration: 19, Func. Count: 220, Neg. LLF: 141.11214192322342
Optimization terminated successfully (Exit mode 0)
Current function value: 141.11214205688003
Iterations: 19
Function evaluations: 220
Gradient evaluations: 19
Iteration: 1, Func. Count: 13, Neg. LLF: 155.97091416310954
Iteration: 2, Func. Count: 26, Neg. LLF: 146.15643528428103
Iteration: 3, Func. Count: 39, Neg. LLF: 151.95207338896427
Iteration: 4, Func. Count: 54, Neg. LLF: 142.58393040222228
Iteration: 5, Func. Count: 67, Neg. LLF: 147.40144094448846
Iteration: 6, Func. Count: 81, Neg. LLF: 154.21637595793044
Iteration: 7, Func. Count: 94, Neg. LLF: 143.3253435460625
Iteration: 8, Func. Count: 107, Neg. LLF: 141.4826315885455
Iteration: 9, Func. Count: 120, Neg. LLF: 140.8949823252874
Iteration: 10, Func. Count: 132, Neg. LLF: 141.04673303351967
Iteration: 11, Func. Count: 145, Neg. LLF: 140.8834524400129
Iteration: 12, Func. Count: 158, Neg. LLF: 140.82240877533297
Iteration: 13, Func. Count: 170, Neg. LLF: 140.81345324042513
Iteration: 14, Func. Count: 182, Neg. LLF: 140.8109175242454
Iteration: 15, Func. Count: 194, Neg. LLF: 140.80951556019048
Iteration: 16, Func. Count: 206, Neg. LLF: 140.8091673613809
Iteration: 17, Func. Count: 218, Neg. LLF: 140.80909663219907
Iteration: 18, Func. Count: 230, Neg. LLF: 140.80909355053575
Iteration: 19, Func. Count: 241, Neg. LLF: 140.80909355057565
Optimization terminated successfully (Exit mode 0)
Current function value: 140.80909355053575
Iterations: 19
Function evaluations: 241
Gradient evaluations: 19
Iteration: 1, Func. Count: 14, Neg. LLF: 146.25281865115306
Iteration: 2, Func. Count: 28, Neg. LLF: 149.42572657990928
Iteration: 3, Func. Count: 42, Neg. LLF: 152.56213699492673
Iteration: 4, Func. Count: 56, Neg. LLF: 147.48188016321413
Iteration: 5, Func. Count: 70, Neg. LLF: 152.82674382911316
Iteration: 6, Func. Count: 84, Neg. LLF: 150.48592730138367
Iteration: 7, Func. Count: 98, Neg. LLF: 141.45231279138426
Iteration: 8, Func. Count: 111, Neg. LLF: 141.67578288857766
Iteration: 9, Func. Count: 125, Neg. LLF: 145.3859948405013
Iteration: 10, Func. Count: 140, Neg. LLF: 144.75258449603163
Iteration: 11, Func. Count: 154, Neg. LLF: 141.2217853235802
Iteration: 12, Func. Count: 168, Neg. LLF: 140.87628653413023
Iteration: 13, Func. Count: 181, Neg. LLF: 140.83287150753534
Iteration: 14, Func. Count: 194, Neg. LLF: 140.82373489700728
Iteration: 15, Func. Count: 207, Neg. LLF: 140.81097725640694
Iteration: 16, Func. Count: 220, Neg. LLF: 140.80958064058908
Iteration: 17, Func. Count: 233, Neg. LLF: 140.8092858546262
Iteration: 18, Func. Count: 246, Neg. LLF: 140.80913243512236
Iteration: 19, Func. Count: 259, Neg. LLF: 140.80910195715606
Iteration: 20, Func. Count: 272, Neg. LLF: 140.8090958324967
Iteration: 21, Func. Count: 285, Neg. LLF: 140.8090941189208
Iteration: 22, Func. Count: 298, Neg. LLF: 140.80909350096542
Optimization terminated successfully (Exit mode 0)
Current function value: 140.80909350096542
Iterations: 22
Function evaluations: 298
Gradient evaluations: 22
Iteration: 1, Func. Count: 15, Neg. LLF: 143.22945181748
Iteration: 2, Func. Count: 29, Neg. LLF: 144.640227465263
Iteration: 3, Func. Count: 47, Neg. LLF: 149.20894145523653
Iteration: 4, Func. Count: 64, Neg. LLF: 157.76005395649747
Iteration: 5, Func. Count: 80, Neg. LLF: 147.94253947451952
Iteration: 6, Func. Count: 95, Neg. LLF: 145.3890816235547
Iteration: 7, Func. Count: 110, Neg. LLF: 146.6366905321529
Iteration: 8, Func. Count: 125, Neg. LLF: 148.2554602700292
Iteration: 9, Func. Count: 140, Neg. LLF: 145.43468569570896
Iteration: 10, Func. Count: 155, Neg. LLF: 142.77743327331243
Iteration: 11, Func. Count: 170, Neg. LLF: 145.15261512087073
Iteration: 12, Func. Count: 185, Neg. LLF: 141.12541480124077
Iteration: 13, Func. Count: 200, Neg. LLF: 141.03091435985903
Iteration: 14, Func. Count: 215, Neg. LLF: 140.8927576295329
Iteration: 15, Func. Count: 229, Neg. LLF: 140.8156560298373
Iteration: 16, Func. Count: 243, Neg. LLF: 140.81113885630805
Iteration: 17, Func. Count: 257, Neg. LLF: 140.8092390666285
Iteration: 18, Func. Count: 271, Neg. LLF: 140.80912848948563
Iteration: 19, Func. Count: 285, Neg. LLF: 140.80909389792058
Iteration: 20, Func. Count: 299, Neg. LLF: 140.8090934897328
Optimization terminated successfully (Exit mode 0)
Current function value: 140.8090934897328
Iterations: 20
Function evaluations: 299
Gradient evaluations: 20
Iteration: 1, Func. Count: 16, Neg. LLF: 143.250500289564
Iteration: 2, Func. Count: 31, Neg. LLF: 144.47663182836502
Iteration: 3, Func. Count: 50, Neg. LLF: 149.37962514799995
Iteration: 4, Func. Count: 68, Neg. LLF: 156.89677517005046
Iteration: 5, Func. Count: 85, Neg. LLF: 147.6192617849598
Iteration: 6, Func. Count: 101, Neg. LLF: 146.58277075569464
Iteration: 7, Func. Count: 117, Neg. LLF: 146.7571871286693
Iteration: 8, Func. Count: 133, Neg. LLF: 147.95706545320164
Iteration: 9, Func. Count: 149, Neg. LLF: 145.63116424939398
Iteration: 10, Func. Count: 165, Neg. LLF: 142.90986832542868
Iteration: 11, Func. Count: 181, Neg. LLF: 144.9412492608546
Iteration: 12, Func. Count: 197, Neg. LLF: 141.0500398487634
Iteration: 13, Func. Count: 212, Neg. LLF: 141.2219889776902
Iteration: 14, Func. Count: 228, Neg. LLF: 141.0385896897235
Iteration: 15, Func. Count: 244, Neg. LLF: 140.86803489802202
Iteration: 16, Func. Count: 259, Neg. LLF: 140.81286143715218
Iteration: 17, Func. Count: 274, Neg. LLF: 140.80977056642115
Iteration: 18, Func. Count: 289, Neg. LLF: 140.80910654653192
Iteration: 19, Func. Count: 304, Neg. LLF: 140.80909440849385
Iteration: 20, Func. Count: 319, Neg. LLF: 140.80909353061583
Optimization terminated successfully (Exit mode 0)
Current function value: 140.80909353061583
Iterations: 20
Function evaluations: 319
Gradient evaluations: 20
Iteration: 1, Func. Count: 5, Neg. LLF: 155.73111765225156
Iteration: 2, Func. Count: 10, Neg. LLF: 161.852600974293
Iteration: 3, Func. Count: 15, Neg. LLF: 144.99055891592792
Iteration: 4, Func. Count: 19, Neg. LLF: 144.89671337088208
Iteration: 5, Func. Count: 23, Neg. LLF: 144.85615751398254
Iteration: 6, Func. Count: 27, Neg. LLF: 144.85140684355358
Iteration: 7, Func. Count: 31, Neg. LLF: 144.85121111494996
Iteration: 8, Func. Count: 35, Neg. LLF: 144.85119253598782
Iteration: 9, Func. Count: 39, Neg. LLF: 144.85117613080405
Iteration: 10, Func. Count: 43, Neg. LLF: 144.8511688731268
Iteration: 11, Func. Count: 47, Neg. LLF: 144.85116722703046
Iteration: 12, Func. Count: 50, Neg. LLF: 144.8511672270332
Optimization terminated successfully (Exit mode 0)
Current function value: 144.85116722703046
Iterations: 12
Function evaluations: 50
Gradient evaluations: 12
Iteration: 1, Func. Count: 5, Neg. LLF: 153.67582149594404
Iteration: 2, Func. Count: 10, Neg. LLF: 157.22862205151623
Iteration: 3, Func. Count: 15, Neg. LLF: 146.72145512674322
Iteration: 4, Func. Count: 19, Neg. LLF: 146.38136880483478
Iteration: 5, Func. Count: 23, Neg. LLF: 146.37909307540164
Iteration: 6, Func. Count: 27, Neg. LLF: 146.37335394778708
Iteration: 7, Func. Count: 31, Neg. LLF: 146.37325998762182
Iteration: 8, Func. Count: 34, Neg. LLF: 146.37325999351143
Optimization terminated successfully (Exit mode 0)
Current function value: 146.37325998762182
Iterations: 8
Function evaluations: 34
Gradient evaluations: 8
Iteration: 1, Func. Count: 6, Neg. LLF: 157.1466472359243
Iteration: 2, Func. Count: 12, Neg. LLF: 153.6090893274261
Iteration: 3, Func. Count: 18, Neg. LLF: 151.54267219651211
Iteration: 4, Func. Count: 24, Neg. LLF: 150.96835673579184
Iteration: 5, Func. Count: 30, Neg. LLF: 148.95100621933403
Iteration: 6, Func. Count: 35, Neg. LLF: 148.3765648513628
Iteration: 7, Func. Count: 40, Neg. LLF: 147.1567962858417
Iteration: 8, Func. Count: 45, Neg. LLF: 146.92707027343621
Iteration: 9, Func. Count: 50, Neg. LLF: 146.63620751410625
Iteration: 10, Func. Count: 55, Neg. LLF: 146.41133806498723
Iteration: 11, Func. Count: 60, Neg. LLF: 146.38229065579802
Iteration: 12, Func. Count: 65, Neg. LLF: 146.37343450489374
Iteration: 13, Func. Count: 70, Neg. LLF: 146.3732683395834
Iteration: 14, Func. Count: 75, Neg. LLF: 146.3732599797038
Iteration: 15, Func. Count: 79, Neg. LLF: 146.37326006621979
Optimization terminated successfully (Exit mode 0)
Current function value: 146.3732599797038
Iterations: 15
Function evaluations: 79
Gradient evaluations: 15
Iteration: 1, Func. Count: 7, Neg. LLF: 149.03680512616066
Iteration: 2, Func. Count: 13, Neg. LLF: 149.25947045107694
Iteration: 3, Func. Count: 20, Neg. LLF: 146.8405957572766
Iteration: 4, Func. Count: 26, Neg. LLF: 146.25599154351679
Iteration: 5, Func. Count: 32, Neg. LLF: 146.23080145389102
Iteration: 6, Func. Count: 38, Neg. LLF: 146.19687345427218
Iteration: 7, Func. Count: 44, Neg. LLF: 146.17634374104898
Iteration: 8, Func. Count: 50, Neg. LLF: 146.129486822757
Iteration: 9, Func. Count: 56, Neg. LLF: 146.1287441921265
Iteration: 10, Func. Count: 62, Neg. LLF: 146.12860368600866
Iteration: 11, Func. Count: 68, Neg. LLF: 146.12860239337508
Iteration: 12, Func. Count: 73, Neg. LLF: 146.12860237550046
Optimization terminated successfully (Exit mode 0)
Current function value: 146.12860239337508
Iterations: 12
Function evaluations: 73
Gradient evaluations: 12
Iteration: 1, Func. Count: 8, Neg. LLF: 149.39524021044957
Iteration: 2, Func. Count: 15, Neg. LLF: 149.78026166077694
Iteration: 3, Func. Count: 23, Neg. LLF: 146.5976913886287
Iteration: 4, Func. Count: 30, Neg. LLF: 146.86212354185128
Iteration: 5, Func. Count: 38, Neg. LLF: 146.23353349493215
Iteration: 6, Func. Count: 45, Neg. LLF: 146.20264550785015
Iteration: 7, Func. Count: 52, Neg. LLF: 146.1791423106852
Iteration: 8, Func. Count: 59, Neg. LLF: 146.1340261908831
Iteration: 9, Func. Count: 66, Neg. LLF: 146.12922204913156
Iteration: 10, Func. Count: 73, Neg. LLF: 146.12863816382702
Iteration: 11, Func. Count: 80, Neg. LLF: 146.12860264084793
Iteration: 12, Func. Count: 86, Neg. LLF: 146.12860270440024
Optimization terminated successfully (Exit mode 0)
Current function value: 146.12860264084793
Iterations: 12
Function evaluations: 86
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 152.0364256655542
Iteration: 2, Func. Count: 18, Neg. LLF: 150.33056051000764
Iteration: 3, Func. Count: 27, Neg. LLF: 148.0732013820738
Iteration: 4, Func. Count: 35, Neg. LLF: 170.10819118950747
Iteration: 5, Func. Count: 44, Neg. LLF: 147.88754311459525
Iteration: 6, Func. Count: 53, Neg. LLF: 146.59164702586583
Iteration: 7, Func. Count: 61, Neg. LLF: 149.32799277144076
Iteration: 8, Func. Count: 70, Neg. LLF: 146.14434963789924
Iteration: 9, Func. Count: 78, Neg. LLF: 146.17346545950014
Iteration: 10, Func. Count: 87, Neg. LLF: 146.1331675430856
Iteration: 11, Func. Count: 95, Neg. LLF: 146.13113115311893
Iteration: 12, Func. Count: 103, Neg. LLF: 146.1294002804207
Iteration: 13, Func. Count: 111, Neg. LLF: 146.12852330291662
Iteration: 14, Func. Count: 119, Neg. LLF: 146.12846472245627
Iteration: 15, Func. Count: 127, Neg. LLF: 146.12845826629567
Iteration: 16, Func. Count: 134, Neg. LLF: 146.12845824853818
Optimization terminated successfully (Exit mode 0)
Current function value: 146.12845826629567
Iterations: 16
Function evaluations: 134
Gradient evaluations: 16
Iteration: 1, Func. Count: 6, Neg. LLF: 149.48717579313194
Iteration: 2, Func. Count: 11, Neg. LLF: 153.99087911883268
Iteration: 3, Func. Count: 17, Neg. LLF: 146.5409626336193
Iteration: 4, Func. Count: 22, Neg. LLF: 146.41511246480673
Iteration: 5, Func. Count: 27, Neg. LLF: 146.37865436054162
Iteration: 6, Func. Count: 32, Neg. LLF: 146.37326441239532
Iteration: 7, Func. Count: 37, Neg. LLF: 146.37325975192218
Iteration: 8, Func. Count: 41, Neg. LLF: 146.37325979542018
Optimization terminated successfully (Exit mode 0)
Current function value: 146.37325975192218
Iterations: 8
Function evaluations: 41
Gradient evaluations: 8
Iteration: 1, Func. Count: 7, Neg. LLF: 153.1496868174264
Iteration: 2, Func. Count: 16, Neg. LLF: 166.0143098363237
Iteration: 3, Func. Count: 24, Neg. LLF: 150.2729528372565
Iteration: 4, Func. Count: 30, Neg. LLF: 150.2393682071441
Iteration: 5, Func. Count: 36, Neg. LLF: 150.2369574792257
Iteration: 6, Func. Count: 42, Neg. LLF: 150.23351986315305
Iteration: 7, Func. Count: 48, Neg. LLF: 150.22957614064018
Iteration: 8, Func. Count: 54, Neg. LLF: 150.2196262051752
Iteration: 9, Func. Count: 60, Neg. LLF: 150.11366954850683
Iteration: 10, Func. Count: 66, Neg. LLF: 148.952874992329
Iteration: 11, Func. Count: 72, Neg. LLF: 148.89204725532713
Iteration: 12, Func. Count: 78, Neg. LLF: 148.6078715455765
Iteration: 13, Func. Count: 84, Neg. LLF: 147.54983373040946
Iteration: 14, Func. Count: 90, Neg. LLF: 146.39210659292513
Iteration: 15, Func. Count: 96, Neg. LLF: 146.38306369391478
Iteration: 16, Func. Count: 102, Neg. LLF: 146.3736836909841
Iteration: 17, Func. Count: 108, Neg. LLF: 146.3735297880574
Iteration: 18, Func. Count: 114, Neg. LLF: 146.37326231543597
Iteration: 19, Func. Count: 120, Neg. LLF: 146.37329445472736
Iteration: 20, Func. Count: 126, Neg. LLF: 146.3732606547335
Optimization terminated successfully (Exit mode 0)
Current function value: 146.373260568358
Iterations: 21
Function evaluations: 126
Gradient evaluations: 20
Iteration: 1, Func. Count: 8, Neg. LLF: 147.06932268552254
Iteration: 2, Func. Count: 15, Neg. LLF: 147.0906980557986
Iteration: 3, Func. Count: 23, Neg. LLF: 149.8492963926458
Iteration: 4, Func. Count: 32, Neg. LLF: 146.2564957439358
Iteration: 5, Func. Count: 39, Neg. LLF: 146.22615110531038
Iteration: 6, Func. Count: 46, Neg. LLF: 146.15670825423382
Iteration: 7, Func. Count: 53, Neg. LLF: 146.13548569142043
Iteration: 8, Func. Count: 60, Neg. LLF: 146.1286720751869
Iteration: 9, Func. Count: 67, Neg. LLF: 146.12860318044244
Iteration: 10, Func. Count: 74, Neg. LLF: 146.12860235718725
Optimization terminated successfully (Exit mode 0)
Current function value: 146.12860235718725
Iterations: 10
Function evaluations: 74
Gradient evaluations: 10
Iteration: 1, Func. Count: 9, Neg. LLF: 147.33978662600796
Iteration: 2, Func. Count: 17, Neg. LLF: 147.25455548567416
Iteration: 3, Func. Count: 26, Neg. LLF: 147.31538028259035
Iteration: 4, Func. Count: 35, Neg. LLF: 146.25708302449
Iteration: 5, Func. Count: 43, Neg. LLF: 146.22844720674684
Iteration: 6, Func. Count: 51, Neg. LLF: 146.188002038325
Iteration: 7, Func. Count: 59, Neg. LLF: 146.13505471627036
Iteration: 8, Func. Count: 67, Neg. LLF: 146.129228337367
Iteration: 9, Func. Count: 75, Neg. LLF: 146.12860670129126
Iteration: 10, Func. Count: 83, Neg. LLF: 146.12860241223518
Iteration: 11, Func. Count: 90, Neg. LLF: 146.12860247590837
Optimization terminated successfully (Exit mode 0)
Current function value: 146.12860241223518
Iterations: 11
Function evaluations: 90
Gradient evaluations: 11
Iteration: 1, Func. Count: 10, Neg. LLF: 150.59250176066726
Iteration: 2, Func. Count: 20, Neg. LLF: 148.83647364084462
Iteration: 3, Func. Count: 29, Neg. LLF: 201.4972395095595
Iteration: 4, Func. Count: 40, Neg. LLF: 164.36201691754565
Iteration: 5, Func. Count: 51, Neg. LLF: 146.44345357190844
Iteration: 6, Func. Count: 60, Neg. LLF: 147.04727785272388
Iteration: 7, Func. Count: 70, Neg. LLF: 146.32962445491606
Iteration: 8, Func. Count: 80, Neg. LLF: 146.18475530013066
Iteration: 9, Func. Count: 89, Neg. LLF: 146.17199178392733
Iteration: 10, Func. Count: 98, Neg. LLF: 146.15288513890118
Iteration: 11, Func. Count: 107, Neg. LLF: 146.13078687739753
Iteration: 12, Func. Count: 116, Neg. LLF: 146.12865618027936
Iteration: 13, Func. Count: 125, Neg. LLF: 146.1284604558812
Iteration: 14, Func. Count: 134, Neg. LLF: 146.12845835141658
Iteration: 15, Func. Count: 142, Neg. LLF: 146.1284583338138
Optimization terminated successfully (Exit mode 0)
Current function value: 146.12845835141658
Iterations: 15
Function evaluations: 142
Gradient evaluations: 15
Iteration: 1, Func. Count: 7, Neg. LLF: 161.27850721213227
Iteration: 2, Func. Count: 15, Neg. LLF: 146.83206299040432
Iteration: 3, Func. Count: 21, Neg. LLF: 149.1869512638179
Iteration: 4, Func. Count: 28, Neg. LLF: 146.49661381434896
Iteration: 5, Func. Count: 34, Neg. LLF: 146.09850589528372
Iteration: 6, Func. Count: 40, Neg. LLF: 146.0957008976003
Iteration: 7, Func. Count: 46, Neg. LLF: 146.09461401629684
Iteration: 8, Func. Count: 52, Neg. LLF: 146.09460978160658
Iteration: 9, Func. Count: 57, Neg. LLF: 146.09460977221022
Optimization terminated successfully (Exit mode 0)
Current function value: 146.09460978160658
Iterations: 9
Function evaluations: 57
Gradient evaluations: 9
Iteration: 1, Func. Count: 8, Neg. LLF: 156.54783320974894
Iteration: 2, Func. Count: 18, Neg. LLF: 155.272652884017
Iteration: 3, Func. Count: 27, Neg. LLF: 150.1070000874187
Iteration: 4, Func. Count: 34, Neg. LLF: 149.10812215708987
Iteration: 5, Func. Count: 41, Neg. LLF: 147.8345883897118
Iteration: 6, Func. Count: 48, Neg. LLF: 152.12736897978377
Iteration: 7, Func. Count: 57, Neg. LLF: 147.00127662303964
Iteration: 8, Func. Count: 64, Neg. LLF: 146.5925748632451
Iteration: 9, Func. Count: 71, Neg. LLF: 146.09866833696267
Iteration: 10, Func. Count: 78, Neg. LLF: 146.09657826739058
Iteration: 11, Func. Count: 85, Neg. LLF: 146.09495724409894
Iteration: 12, Func. Count: 92, Neg. LLF: 146.0948318250715
Iteration: 13, Func. Count: 99, Neg. LLF: 146.09472062817366
Iteration: 14, Func. Count: 106, Neg. LLF: 146.0946453624479
Iteration: 15, Func. Count: 113, Neg. LLF: 146.0946132282197
Iteration: 16, Func. Count: 120, Neg. LLF: 146.09460981271084
Iteration: 17, Func. Count: 126, Neg. LLF: 146.09460995445863
Optimization terminated successfully (Exit mode 0)
Current function value: 146.09460981271084
Iterations: 17
Function evaluations: 126
Gradient evaluations: 17
Iteration: 1, Func. Count: 9, Neg. LLF: 155.23898432608036
Iteration: 2, Func. Count: 20, Neg. LLF: 154.87360575162307
Iteration: 3, Func. Count: 29, Neg. LLF: 149.42299534277504
Iteration: 4, Func. Count: 37, Neg. LLF: 147.96940473764147
Iteration: 5, Func. Count: 45, Neg. LLF: 147.20424007538466
Iteration: 6, Func. Count: 53, Neg. LLF: 149.8354829229107
Iteration: 7, Func. Count: 62, Neg. LLF: 146.2667877653593
Iteration: 8, Func. Count: 70, Neg. LLF: 146.1049072480309
Iteration: 9, Func. Count: 78, Neg. LLF: 146.10260416788873
Iteration: 10, Func. Count: 86, Neg. LLF: 146.09562908262043
Iteration: 11, Func. Count: 94, Neg. LLF: 146.09471937004173
Iteration: 12, Func. Count: 102, Neg. LLF: 146.0946263612792
Iteration: 13, Func. Count: 110, Neg. LLF: 146.09460970241196
Iteration: 14, Func. Count: 117, Neg. LLF: 146.09460969217292
Optimization terminated successfully (Exit mode 0)
Current function value: 146.09460970241196
Iterations: 14
Function evaluations: 117
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 157.38163266897973
Iteration: 2, Func. Count: 22, Neg. LLF: 154.79989333078854
Iteration: 3, Func. Count: 32, Neg. LLF: 150.04183003888087
Iteration: 4, Func. Count: 41, Neg. LLF: 149.68036719148938
Iteration: 5, Func. Count: 50, Neg. LLF: 148.07869823340667
Iteration: 6, Func. Count: 59, Neg. LLF: 148.74468863928763
Iteration: 7, Func. Count: 69, Neg. LLF: 147.16275309914496
Iteration: 8, Func. Count: 78, Neg. LLF: 148.44011490432962
Iteration: 9, Func. Count: 88, Neg. LLF: 146.43026982469766
Iteration: 10, Func. Count: 97, Neg. LLF: 146.30901334068156
Iteration: 11, Func. Count: 106, Neg. LLF: 146.25705024047963
Iteration: 12, Func. Count: 115, Neg. LLF: 146.16552811912206
Iteration: 13, Func. Count: 124, Neg. LLF: 146.11643963535235
Iteration: 14, Func. Count: 133, Neg. LLF: 146.1006278690926
Iteration: 15, Func. Count: 142, Neg. LLF: 146.09529861052212
Iteration: 16, Func. Count: 151, Neg. LLF: 146.09463782893906
Iteration: 17, Func. Count: 160, Neg. LLF: 146.09460986563897
Iteration: 18, Func. Count: 168, Neg. LLF: 146.09460992598835
Optimization terminated successfully (Exit mode 0)
Current function value: 146.09460986563897
Iterations: 18
Function evaluations: 168
Gradient evaluations: 18
Iteration: 1, Func. Count: 11, Neg. LLF: 155.3650846403796
Iteration: 2, Func. Count: 22, Neg. LLF: 157.26860508483585
Iteration: 3, Func. Count: 33, Neg. LLF: 150.08431589657354
Iteration: 4, Func. Count: 44, Neg. LLF: 149.45042086777832
Iteration: 5, Func. Count: 54, Neg. LLF: 156.9267689398508
Iteration: 6, Func. Count: 66, Neg. LLF: 149.15504023631914
Iteration: 7, Func. Count: 76, Neg. LLF: 152.04645975914866
Iteration: 8, Func. Count: 87, Neg. LLF: 150.87924389229534
Iteration: 9, Func. Count: 98, Neg. LLF: 148.94202456142895
Iteration: 10, Func. Count: 108, Neg. LLF: 148.89901672330743
Iteration: 11, Func. Count: 118, Neg. LLF: 148.87253501375244
Iteration: 12, Func. Count: 128, Neg. LLF: 148.84955705746157
Iteration: 13, Func. Count: 138, Neg. LLF: 148.8304041337135
Iteration: 14, Func. Count: 148, Neg. LLF: 148.8193270110938
Iteration: 15, Func. Count: 158, Neg. LLF: 148.80316361564547
Iteration: 16, Func. Count: 168, Neg. LLF: 148.79586438344785
Iteration: 17, Func. Count: 178, Neg. LLF: 148.79499537935055
Iteration: 18, Func. Count: 188, Neg. LLF: 148.79497137831106
Iteration: 19, Func. Count: 198, Neg. LLF: 148.7949704253857
Optimization terminated successfully (Exit mode 0)
Current function value: 148.7949704253857
Iterations: 19
Function evaluations: 198
Gradient evaluations: 19
Iteration: 1, Func. Count: 8, Neg. LLF: 159.90880896173374
Iteration: 2, Func. Count: 17, Neg. LLF: 146.73187079674332
Iteration: 3, Func. Count: 24, Neg. LLF: 147.26094471518212
Iteration: 4, Func. Count: 32, Neg. LLF: 146.49994471840253
Iteration: 5, Func. Count: 39, Neg. LLF: 146.0951709154442
Iteration: 6, Func. Count: 46, Neg. LLF: 146.09476082808814
Iteration: 7, Func. Count: 53, Neg. LLF: 146.09461060334476
Iteration: 8, Func. Count: 60, Neg. LLF: 146.09460980113465
Optimization terminated successfully (Exit mode 0)
Current function value: 146.09460980113465
Iterations: 8
Function evaluations: 60
Gradient evaluations: 8
Iteration: 1, Func. Count: 9, Neg. LLF: 152.99421895851538
Iteration: 2, Func. Count: 20, Neg. LLF: 153.46099006668626
Iteration: 3, Func. Count: 29, Neg. LLF: 150.0606502052127
Iteration: 4, Func. Count: 37, Neg. LLF: 150.07637904526902
Iteration: 5, Func. Count: 46, Neg. LLF: 149.84972501716678
Iteration: 6, Func. Count: 54, Neg. LLF: 147.19924610626626
Iteration: 7, Func. Count: 62, Neg. LLF: 146.69656446010592
Iteration: 8, Func. Count: 70, Neg. LLF: 146.4202867167653
Iteration: 9, Func. Count: 78, Neg. LLF: 146.2315066020726
Iteration: 10, Func. Count: 86, Neg. LLF: 146.17835694122266
Iteration: 11, Func. Count: 94, Neg. LLF: 146.1350006544432
Iteration: 12, Func. Count: 102, Neg. LLF: 146.1197727644683
Iteration: 13, Func. Count: 110, Neg. LLF: 146.09979898069022
Iteration: 14, Func. Count: 118, Neg. LLF: 146.0954768931302
Iteration: 15, Func. Count: 126, Neg. LLF: 146.09461881379548
Iteration: 16, Func. Count: 134, Neg. LLF: 146.09460973473688
Iteration: 17, Func. Count: 141, Neg. LLF: 146.09460987652113
Optimization terminated successfully (Exit mode 0)
Current function value: 146.09460973473688
Iterations: 17
Function evaluations: 141
Gradient evaluations: 17
Iteration: 1, Func. Count: 10, Neg. LLF: 153.55945127782596
Iteration: 2, Func. Count: 22, Neg. LLF: 152.520897571837
Iteration: 3, Func. Count: 32, Neg. LLF: 149.55645140088637
Iteration: 4, Func. Count: 41, Neg. LLF: 149.16182404400828
Iteration: 5, Func. Count: 50, Neg. LLF: 147.72107740071291
Iteration: 6, Func. Count: 59, Neg. LLF: 146.6033344977154
Iteration: 7, Func. Count: 68, Neg. LLF: 146.7297872672898
Iteration: 8, Func. Count: 78, Neg. LLF: 146.36375670128498
Iteration: 9, Func. Count: 87, Neg. LLF: 146.21791311350702
Iteration: 10, Func. Count: 96, Neg. LLF: 146.18689557177026
Iteration: 11, Func. Count: 105, Neg. LLF: 146.14546214896316
Iteration: 12, Func. Count: 114, Neg. LLF: 146.1137958972103
Iteration: 13, Func. Count: 123, Neg. LLF: 146.09653638657363
Iteration: 14, Func. Count: 132, Neg. LLF: 146.094651930197
Iteration: 15, Func. Count: 141, Neg. LLF: 146.09461040101064
Iteration: 16, Func. Count: 150, Neg. LLF: 146.09460975694086
Optimization terminated successfully (Exit mode 0)
Current function value: 146.09460975694086
Iterations: 16
Function evaluations: 150
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 157.10915099899825
Iteration: 2, Func. Count: 24, Neg. LLF: 154.7465149383046
Iteration: 3, Func. Count: 35, Neg. LLF: 149.859535416948
Iteration: 4, Func. Count: 45, Neg. LLF: 148.2972681082482
Iteration: 5, Func. Count: 55, Neg. LLF: 147.70294375597206
Iteration: 6, Func. Count: 65, Neg. LLF: 148.36812140989923
Iteration: 7, Func. Count: 76, Neg. LLF: 146.72951353412103
Iteration: 8, Func. Count: 86, Neg. LLF: 146.50455037018565
Iteration: 9, Func. Count: 96, Neg. LLF: 146.1289953768407
Iteration: 10, Func. Count: 106, Neg. LLF: 146.11107369936525
Iteration: 11, Func. Count: 116, Neg. LLF: 146.1008503519588
Iteration: 12, Func. Count: 126, Neg. LLF: 146.09886942531435
Iteration: 13, Func. Count: 136, Neg. LLF: 146.09559535291234
Iteration: 14, Func. Count: 146, Neg. LLF: 146.09482740686664
Iteration: 15, Func. Count: 156, Neg. LLF: 146.09461400574432
Iteration: 16, Func. Count: 166, Neg. LLF: 146.0946097274255
Iteration: 17, Func. Count: 175, Neg. LLF: 146.09460978773006
Optimization terminated successfully (Exit mode 0)
Current function value: 146.0946097274255
Iterations: 17
Function evaluations: 175
Gradient evaluations: 17
Iteration: 1, Func. Count: 12, Neg. LLF: 157.06675937836883
Iteration: 2, Func. Count: 26, Neg. LLF: 154.50196875509837
Iteration: 3, Func. Count: 38, Neg. LLF: 152.26740470386315
Iteration: 4, Func. Count: 51, Neg. LLF: 149.8506741469957
Iteration: 5, Func. Count: 62, Neg. LLF: 149.6615362145332
Iteration: 6, Func. Count: 73, Neg. LLF: 149.30601782053574
Iteration: 7, Func. Count: 84, Neg. LLF: 149.10524785721688
Iteration: 8, Func. Count: 95, Neg. LLF: 149.45879801737027
Iteration: 9, Func. Count: 107, Neg. LLF: 148.9962065986643
Iteration: 10, Func. Count: 118, Neg. LLF: 148.95901875687218
Iteration: 11, Func. Count: 129, Neg. LLF: 148.91226057030522
Iteration: 12, Func. Count: 140, Neg. LLF: 148.88304200547032
Iteration: 13, Func. Count: 151, Neg. LLF: 148.84725258481362
Iteration: 14, Func. Count: 162, Neg. LLF: 148.8300520354887
Iteration: 15, Func. Count: 173, Neg. LLF: 148.80600414221527
Iteration: 16, Func. Count: 184, Neg. LLF: 148.7973515978752
Iteration: 17, Func. Count: 195, Neg. LLF: 148.79548264569746
Iteration: 18, Func. Count: 206, Neg. LLF: 148.79499964908442
Iteration: 19, Func. Count: 217, Neg. LLF: 148.7949731395362
Iteration: 20, Func. Count: 228, Neg. LLF: 148.79497034796503
Iteration: 21, Func. Count: 238, Neg. LLF: 148.79497034794392
Optimization terminated successfully (Exit mode 0)
Current function value: 148.79497034796503
Iterations: 21
Function evaluations: 238
Gradient evaluations: 21
Iteration: 1, Func. Count: 5, Neg. LLF: 153.76040025489084
Iteration: 2, Func. Count: 10, Neg. LLF: 151.25793804687186
Iteration: 3, Func. Count: 15, Neg. LLF: 149.41899936105878
Iteration: 4, Func. Count: 19, Neg. LLF: 149.387969851055
Iteration: 5, Func. Count: 23, Neg. LLF: 149.37869646081998
Iteration: 6, Func. Count: 27, Neg. LLF: 149.3586888895026
Iteration: 7, Func. Count: 31, Neg. LLF: 149.34993451874584
Iteration: 8, Func. Count: 35, Neg. LLF: 149.34795996763722
Iteration: 9, Func. Count: 39, Neg. LLF: 149.34787618762914
Iteration: 10, Func. Count: 42, Neg. LLF: 149.34787620391634
Optimization terminated successfully (Exit mode 0)
Current function value: 149.34787618762914
Iterations: 10
Function evaluations: 42
Gradient evaluations: 10
Iteration: 1, Func. Count: 6, Neg. LLF: 180.60495340855417
Iteration: 2, Func. Count: 13, Neg. LLF: 152.02960409946715
Iteration: 3, Func. Count: 19, Neg. LLF: 155.01215624144928
Iteration: 4, Func. Count: 26, Neg. LLF: 150.5421560079616
Iteration: 5, Func. Count: 31, Neg. LLF: 150.541669657624
Iteration: 6, Func. Count: 36, Neg. LLF: 150.53886850780728
Iteration: 7, Func. Count: 41, Neg. LLF: 150.5344338248565
Iteration: 8, Func. Count: 46, Neg. LLF: 150.53399485451237
Iteration: 9, Func. Count: 51, Neg. LLF: 150.53393685316246
Iteration: 10, Func. Count: 56, Neg. LLF: 150.53393410355852
Iteration: 11, Func. Count: 60, Neg. LLF: 150.53393410355278
Optimization terminated successfully (Exit mode 0)
Current function value: 150.53393410355852
Iterations: 11
Function evaluations: 60
Gradient evaluations: 11
Iteration: 1, Func. Count: 7, Neg. LLF: 176.19525874773018
Iteration: 2, Func. Count: 15, Neg. LLF: 152.5035414947915
Iteration: 3, Func. Count: 22, Neg. LLF: 153.78787000824357
Iteration: 4, Func. Count: 30, Neg. LLF: 150.57213286131395
Iteration: 5, Func. Count: 37, Neg. LLF: 150.5471711008497
Iteration: 6, Func. Count: 43, Neg. LLF: 150.54585665478396
Iteration: 7, Func. Count: 49, Neg. LLF: 150.5443966083555
Iteration: 8, Func. Count: 55, Neg. LLF: 150.54353802035592
Iteration: 9, Func. Count: 61, Neg. LLF: 150.54300917649337
Iteration: 10, Func. Count: 67, Neg. LLF: 150.5399039186183
Iteration: 11, Func. Count: 73, Neg. LLF: 150.5354532649922
Iteration: 12, Func. Count: 79, Neg. LLF: 150.53433406876437
Iteration: 13, Func. Count: 85, Neg. LLF: 150.5339365610965
Iteration: 14, Func. Count: 91, Neg. LLF: 150.53393433150964
Iteration: 15, Func. Count: 96, Neg. LLF: 150.53393433438254
Optimization terminated successfully (Exit mode 0)
Current function value: 150.53393433150964
Iterations: 15
Function evaluations: 96
Gradient evaluations: 15
Iteration: 1, Func. Count: 8, Neg. LLF: 151.46893554346178
Iteration: 2, Func. Count: 17, Neg. LLF: 150.88908082243373
Iteration: 3, Func. Count: 25, Neg. LLF: 174.57128483805644
Iteration: 4, Func. Count: 33, Neg. LLF: 150.02629214956139
Iteration: 5, Func. Count: 40, Neg. LLF: 153.89499477693164
Iteration: 6, Func. Count: 48, Neg. LLF: 149.78629489810484
Iteration: 7, Func. Count: 55, Neg. LLF: 149.5397444427207
Iteration: 8, Func. Count: 62, Neg. LLF: 149.32858187363104
Iteration: 9, Func. Count: 69, Neg. LLF: 149.2220895391663
Iteration: 10, Func. Count: 76, Neg. LLF: 149.21101307054016
Iteration: 11, Func. Count: 83, Neg. LLF: 149.2100071454359
Iteration: 12, Func. Count: 91, Neg. LLF: 149.2031484708433
Iteration: 13, Func. Count: 98, Neg. LLF: 149.181586294419
Iteration: 14, Func. Count: 105, Neg. LLF: 149.1710775683431
Iteration: 15, Func. Count: 112, Neg. LLF: 149.16877340818175
Iteration: 16, Func. Count: 119, Neg. LLF: 149.16847917656486
Iteration: 17, Func. Count: 125, Neg. LLF: 149.16847916328982
Optimization terminated successfully (Exit mode 0)
Current function value: 149.16847917656486
Iterations: 17
Function evaluations: 125
Gradient evaluations: 17
Iteration: 1, Func. Count: 9, Neg. LLF: 152.6171509827382
Iteration: 2, Func. Count: 19, Neg. LLF: 151.21771690842456
Iteration: 3, Func. Count: 28, Neg. LLF: 150.91039952684613
Iteration: 4, Func. Count: 37, Neg. LLF: 150.55034956400382
Iteration: 5, Func. Count: 45, Neg. LLF: 150.65833752705586
Iteration: 6, Func. Count: 54, Neg. LLF: 150.46943263616689
Iteration: 7, Func. Count: 62, Neg. LLF: 150.42113392115428
Iteration: 8, Func. Count: 70, Neg. LLF: 150.20211312047888
Iteration: 9, Func. Count: 78, Neg. LLF: 149.90751203447337
Iteration: 10, Func. Count: 86, Neg. LLF: 149.39269212097153
Iteration: 11, Func. Count: 94, Neg. LLF: 150.27361046717928
Iteration: 12, Func. Count: 103, Neg. LLF: 149.16799984517505
Iteration: 13, Func. Count: 111, Neg. LLF: 149.28477024512412
Iteration: 14, Func. Count: 120, Neg. LLF: 149.14544331602318
Iteration: 15, Func. Count: 128, Neg. LLF: 149.1440141217808
Iteration: 16, Func. Count: 136, Neg. LLF: 149.14152575095886
Iteration: 17, Func. Count: 144, Neg. LLF: 149.13990341663515
Iteration: 18, Func. Count: 152, Neg. LLF: 149.1383837825913
Iteration: 19, Func. Count: 160, Neg. LLF: 149.13692701699418
Iteration: 20, Func. Count: 168, Neg. LLF: 149.13563927685
Iteration: 21, Func. Count: 176, Neg. LLF: 149.1346518425908
Iteration: 22, Func. Count: 184, Neg. LLF: 149.13264365611207
Iteration: 23, Func. Count: 192, Neg. LLF: 149.131401192488
Iteration: 24, Func. Count: 200, Neg. LLF: 149.13109500081168
Iteration: 25, Func. Count: 208, Neg. LLF: 149.13107185475195
Iteration: 26, Func. Count: 216, Neg. LLF: 149.13107396589552
Iteration: 27, Func. Count: 224, Neg. LLF: 149.13109094338836
Iteration: 28, Func. Count: 234, Neg. LLF: 149.13107970959362
Iteration: 29, Func. Count: 243, Neg. LLF: 149.1310796523233
Iteration: 30, Func. Count: 250, Neg. LLF: 149.13107963042148
Optimization terminated successfully (Exit mode 0)
Current function value: 149.1310796523233
Iterations: 31
Function evaluations: 250
Gradient evaluations: 30
Iteration: 1, Func. Count: 6, Neg. LLF: 161.39295718206137
Iteration: 2, Func. Count: 12, Neg. LLF: 148.79984273928554
Iteration: 3, Func. Count: 18, Neg. LLF: 146.555354330575
Iteration: 4, Func. Count: 23, Neg. LLF: 146.50858614567017
Iteration: 5, Func. Count: 28, Neg. LLF: 146.3734064804998
Iteration: 6, Func. Count: 33, Neg. LLF: 146.36592273400078
Iteration: 7, Func. Count: 38, Neg. LLF: 146.3587593874508
Iteration: 8, Func. Count: 43, Neg. LLF: 146.34694235058902
Iteration: 9, Func. Count: 48, Neg. LLF: 146.34390008765266
Iteration: 10, Func. Count: 53, Neg. LLF: 146.34365241247266
Iteration: 11, Func. Count: 58, Neg. LLF: 146.34362714415204
Iteration: 12, Func. Count: 62, Neg. LLF: 146.34362713723445
Optimization terminated successfully (Exit mode 0)
Current function value: 146.34362714415204
Iterations: 12
Function evaluations: 62
Gradient evaluations: 12
Iteration: 1, Func. Count: 7, Neg. LLF: 157.43896350370417
Iteration: 2, Func. Count: 14, Neg. LLF: 154.4090779238837
Iteration: 3, Func. Count: 21, Neg. LLF: 150.96608772123525
Iteration: 4, Func. Count: 28, Neg. LLF: 150.52973391686342
Iteration: 5, Func. Count: 35, Neg. LLF: 148.726364354624
Iteration: 6, Func. Count: 41, Neg. LLF: 147.82356764597787
Iteration: 7, Func. Count: 47, Neg. LLF: 146.80457752282592
Iteration: 8, Func. Count: 53, Neg. LLF: 146.6619885534657
Iteration: 9, Func. Count: 59, Neg. LLF: 146.5312912204464
Iteration: 10, Func. Count: 65, Neg. LLF: 146.51230917059863
Iteration: 11, Func. Count: 72, Neg. LLF: 146.3937652633643
Iteration: 12, Func. Count: 78, Neg. LLF: 146.35683233091967
Iteration: 13, Func. Count: 84, Neg. LLF: 146.34388411112764
Iteration: 14, Func. Count: 90, Neg. LLF: 146.3436281374979
Iteration: 15, Func. Count: 96, Neg. LLF: 146.3436267935811
Iteration: 16, Func. Count: 101, Neg. LLF: 146.34362688496577
Optimization terminated successfully (Exit mode 0)
Current function value: 146.3436267935811
Iterations: 16
Function evaluations: 101
Gradient evaluations: 16
Iteration: 1, Func. Count: 8, Neg. LLF: 149.707549711899
Iteration: 2, Func. Count: 15, Neg. LLF: 148.73891080806854
Iteration: 3, Func. Count: 22, Neg. LLF: 159.28423599441226
Iteration: 4, Func. Count: 30, Neg. LLF: 146.60875865789615
Iteration: 5, Func. Count: 37, Neg. LLF: 147.12141419544358
Iteration: 6, Func. Count: 45, Neg. LLF: 146.21116486373475
Iteration: 7, Func. Count: 52, Neg. LLF: 146.23200768607512
Iteration: 8, Func. Count: 60, Neg. LLF: 146.17727979215059
Iteration: 9, Func. Count: 67, Neg. LLF: 146.14162466564744
Iteration: 10, Func. Count: 74, Neg. LLF: 146.1033318672489
Iteration: 11, Func. Count: 81, Neg. LLF: 146.08290199930573
Iteration: 12, Func. Count: 88, Neg. LLF: 146.08161850497783
Iteration: 13, Func. Count: 95, Neg. LLF: 146.08131975237586
Iteration: 14, Func. Count: 102, Neg. LLF: 146.08131289710605
Iteration: 15, Func. Count: 108, Neg. LLF: 146.0813128755216
Optimization terminated successfully (Exit mode 0)
Current function value: 146.08131289710605
Iterations: 15
Function evaluations: 108
Gradient evaluations: 15
Iteration: 1, Func. Count: 9, Neg. LLF: 149.65017929090757
Iteration: 2, Func. Count: 17, Neg. LLF: 149.08324042980095
Iteration: 3, Func. Count: 25, Neg. LLF: 156.7111097124097
Iteration: 4, Func. Count: 34, Neg. LLF: 146.34665751432846
Iteration: 5, Func. Count: 42, Neg. LLF: 146.35512057167426
Iteration: 6, Func. Count: 51, Neg. LLF: 146.63811582894127
Iteration: 7, Func. Count: 60, Neg. LLF: 146.22268499281296
Iteration: 8, Func. Count: 68, Neg. LLF: 146.17668700624324
Iteration: 9, Func. Count: 76, Neg. LLF: 146.1439646378753
Iteration: 10, Func. Count: 84, Neg. LLF: 146.08791110622062
Iteration: 11, Func. Count: 92, Neg. LLF: 146.08233535201134
Iteration: 12, Func. Count: 100, Neg. LLF: 146.08131789921507
Iteration: 13, Func. Count: 108, Neg. LLF: 146.08131278728638
Iteration: 14, Func. Count: 115, Neg. LLF: 146.08131286978306
Optimization terminated successfully (Exit mode 0)
Current function value: 146.08131278728638
Iterations: 14
Function evaluations: 115
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 152.11621663534154
Iteration: 2, Func. Count: 20, Neg. LLF: 150.69991189669
Iteration: 3, Func. Count: 30, Neg. LLF: 148.18659627490658
Iteration: 4, Func. Count: 39, Neg. LLF: 153.18593338398873
Iteration: 5, Func. Count: 49, Neg. LLF: 151.99166204286658
Iteration: 6, Func. Count: 60, Neg. LLF: 146.4510932735532
Iteration: 7, Func. Count: 69, Neg. LLF: 146.1747969509049
Iteration: 8, Func. Count: 78, Neg. LLF: 146.16637711417644
Iteration: 9, Func. Count: 87, Neg. LLF: 146.15047791093073
Iteration: 10, Func. Count: 97, Neg. LLF: 146.09205629308454
Iteration: 11, Func. Count: 106, Neg. LLF: 146.0856191110334
Iteration: 12, Func. Count: 115, Neg. LLF: 146.0821856927037
Iteration: 13, Func. Count: 124, Neg. LLF: 146.08138018276617
Iteration: 14, Func. Count: 133, Neg. LLF: 146.08131291543054
Iteration: 15, Func. Count: 141, Neg. LLF: 146.08131289392742
Optimization terminated successfully (Exit mode 0)
Current function value: 146.08131291543054
Iterations: 15
Function evaluations: 141
Gradient evaluations: 15
Iteration: 1, Func. Count: 7, Neg. LLF: 158.06976352602194
Iteration: 2, Func. Count: 14, Neg. LLF: 150.09739879603498
Iteration: 3, Func. Count: 21, Neg. LLF: 146.59964907935327
Iteration: 4, Func. Count: 27, Neg. LLF: 146.49792541664686
Iteration: 5, Func. Count: 33, Neg. LLF: 146.37100508649817
Iteration: 6, Func. Count: 39, Neg. LLF: 146.36417566539606
Iteration: 7, Func. Count: 45, Neg. LLF: 146.35761552073137
Iteration: 8, Func. Count: 51, Neg. LLF: 146.3462619133957
Iteration: 9, Func. Count: 57, Neg. LLF: 146.3437956770636
Iteration: 10, Func. Count: 63, Neg. LLF: 146.34364460845848
Iteration: 11, Func. Count: 69, Neg. LLF: 146.34362684487525
Iteration: 12, Func. Count: 74, Neg. LLF: 146.3436268905103
Optimization terminated successfully (Exit mode 0)
Current function value: 146.34362684487525
Iterations: 12
Function evaluations: 74
Gradient evaluations: 12
Iteration: 1, Func. Count: 8, Neg. LLF: 153.79779662211905
Iteration: 2, Func. Count: 18, Neg. LLF: 155.21121728297953
Iteration: 3, Func. Count: 27, Neg. LLF: 152.32262691923572
Iteration: 4, Func. Count: 35, Neg. LLF: 150.2389966372848
Iteration: 5, Func. Count: 42, Neg. LLF: 150.23667295540298
Iteration: 6, Func. Count: 49, Neg. LLF: 150.23316936214712
Iteration: 7, Func. Count: 56, Neg. LLF: 150.22874618206947
Iteration: 8, Func. Count: 63, Neg. LLF: 150.21895254337312
Iteration: 9, Func. Count: 70, Neg. LLF: 150.08226651961056
Iteration: 10, Func. Count: 77, Neg. LLF: 148.995050591799
Iteration: 11, Func. Count: 84, Neg. LLF: 148.96311555404657
Iteration: 12, Func. Count: 91, Neg. LLF: 148.82178692979838
Iteration: 13, Func. Count: 98, Neg. LLF: 148.4011623416665
Iteration: 14, Func. Count: 105, Neg. LLF: 148.1875036267966
Iteration: 15, Func. Count: 112, Neg. LLF: 148.0575070942199
Iteration: 16, Func. Count: 119, Neg. LLF: 147.92727413659887
Iteration: 17, Func. Count: 126, Neg. LLF: 147.73460200391176
Iteration: 18, Func. Count: 133, Neg. LLF: 147.46952446357164
Iteration: 19, Func. Count: 140, Neg. LLF: 146.77852658728227
Iteration: 20, Func. Count: 147, Neg. LLF: 147.73931481001836
Iteration: 21, Func. Count: 155, Neg. LLF: 146.40349492251536
Iteration: 22, Func. Count: 162, Neg. LLF: 146.35308776892643
Iteration: 23, Func. Count: 169, Neg. LLF: 146.71926568020598
Iteration: 24, Func. Count: 177, Neg. LLF: 146.35089400653638
Iteration: 25, Func. Count: 184, Neg. LLF: 146.3596439121073
Iteration: 26, Func. Count: 192, Neg. LLF: 146.34759323046174
Iteration: 27, Func. Count: 199, Neg. LLF: 146.3437666130739
Iteration: 28, Func. Count: 206, Neg. LLF: 146.34363363475043
Iteration: 29, Func. Count: 213, Neg. LLF: 146.3436267948187
Iteration: 30, Func. Count: 219, Neg. LLF: 146.34362688620496
Optimization terminated successfully (Exit mode 0)
Current function value: 146.3436267948187
Iterations: 31
Function evaluations: 219
Gradient evaluations: 30
Iteration: 1, Func. Count: 9, Neg. LLF: 149.12314643519593
Iteration: 2, Func. Count: 17, Neg. LLF: 148.6848436541084
Iteration: 3, Func. Count: 25, Neg. LLF: 147.15776170275612
Iteration: 4, Func. Count: 33, Neg. LLF: 146.43172199897452
Iteration: 5, Func. Count: 41, Neg. LLF: 146.35951730005962
Iteration: 6, Func. Count: 49, Neg. LLF: 146.277694933149
Iteration: 7, Func. Count: 57, Neg. LLF: 146.55615125217884
Iteration: 8, Func. Count: 66, Neg. LLF: 146.23217118985983
Iteration: 9, Func. Count: 74, Neg. LLF: 146.1313954718666
Iteration: 10, Func. Count: 82, Neg. LLF: 146.0933329907445
Iteration: 11, Func. Count: 90, Neg. LLF: 146.0817753867955
Iteration: 12, Func. Count: 98, Neg. LLF: 146.08131527704037
Iteration: 13, Func. Count: 106, Neg. LLF: 146.08131262923877
Iteration: 14, Func. Count: 114, Neg. LLF: 146.0813107591368
Optimization terminated successfully (Exit mode 0)
Current function value: 146.08131262708616
Iterations: 14
Function evaluations: 124
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 149.47151060164296
Iteration: 2, Func. Count: 19, Neg. LLF: 148.73873790182293
Iteration: 3, Func. Count: 28, Neg. LLF: 146.3526516252324
Iteration: 4, Func. Count: 37, Neg. LLF: 146.60512957033333
Iteration: 5, Func. Count: 47, Neg. LLF: 146.30759919332644
Iteration: 6, Func. Count: 56, Neg. LLF: 146.24860741317215
Iteration: 7, Func. Count: 65, Neg. LLF: 146.17724474144185
Iteration: 8, Func. Count: 74, Neg. LLF: 146.115147259087
Iteration: 9, Func. Count: 83, Neg. LLF: 146.08305060201513
Iteration: 10, Func. Count: 92, Neg. LLF: 146.0814180420402
Iteration: 11, Func. Count: 101, Neg. LLF: 146.08132299664638
Iteration: 12, Func. Count: 110, Neg. LLF: 146.0813127713588
Iteration: 13, Func. Count: 118, Neg. LLF: 146.08131285385832
Optimization terminated successfully (Exit mode 0)
Current function value: 146.0813127713588
Iterations: 14
Function evaluations: 118
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 149.5631574814228
Iteration: 2, Func. Count: 21, Neg. LLF: 156.90516000785158
Iteration: 3, Func. Count: 33, Neg. LLF: 149.64309550303665
Iteration: 4, Func. Count: 44, Neg. LLF: 148.7955811122583
Iteration: 5, Func. Count: 54, Neg. LLF: 147.31063043556378
Iteration: 6, Func. Count: 64, Neg. LLF: 146.74019796695333
Iteration: 7, Func. Count: 74, Neg. LLF: 149.48869196725403
Iteration: 8, Func. Count: 86, Neg. LLF: 146.4296269396821
Iteration: 9, Func. Count: 96, Neg. LLF: 146.91316162326117
Iteration: 10, Func. Count: 107, Neg. LLF: 146.12565949808084
Iteration: 11, Func. Count: 117, Neg. LLF: 146.136793770249
Iteration: 12, Func. Count: 128, Neg. LLF: 146.0940462988413
Iteration: 13, Func. Count: 138, Neg. LLF: 146.0891608251538
Iteration: 14, Func. Count: 148, Neg. LLF: 146.085617582566
Iteration: 15, Func. Count: 158, Neg. LLF: 146.08179866189707
Iteration: 16, Func. Count: 168, Neg. LLF: 146.08129999547563
Iteration: 17, Func. Count: 178, Neg. LLF: 146.08130813553188
Iteration: 18, Func. Count: 188, Neg. LLF: 146.08134213649274
Iteration: 19, Func. Count: 199, Neg. LLF: 146.08131526214763
Iteration: 20, Func. Count: 209, Neg. LLF: 146.08131292795238
Iteration: 21, Func. Count: 218, Neg. LLF: 146.08131290642143
Optimization terminated successfully (Exit mode 0)
Current function value: 146.08131292795238
Iterations: 22
Function evaluations: 218
Gradient evaluations: 21
Iteration: 1, Func. Count: 8, Neg. LLF: 163.24827811473833
Iteration: 2, Func. Count: 17, Neg. LLF: 148.74404282313748
Iteration: 3, Func. Count: 24, Neg. LLF: 148.788284334148
Iteration: 4, Func. Count: 32, Neg. LLF: 146.3768111936461
Iteration: 5, Func. Count: 39, Neg. LLF: 146.37185344586248
Iteration: 6, Func. Count: 47, Neg. LLF: 146.20235163990125
Iteration: 7, Func. Count: 54, Neg. LLF: 146.63193580796198
Iteration: 8, Func. Count: 62, Neg. LLF: 146.057072478801
Iteration: 9, Func. Count: 69, Neg. LLF: 146.0368123371882
Iteration: 10, Func. Count: 76, Neg. LLF: 146.03597117240844
Iteration: 11, Func. Count: 83, Neg. LLF: 146.03596228351574
Iteration: 12, Func. Count: 89, Neg. LLF: 146.03596227224347
Optimization terminated successfully (Exit mode 0)
Current function value: 146.03596228351574
Iterations: 12
Function evaluations: 89
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 156.95209951127464
Iteration: 2, Func. Count: 20, Neg. LLF: 155.2123276763458
Iteration: 3, Func. Count: 30, Neg. LLF: 150.47905099037132
Iteration: 4, Func. Count: 39, Neg. LLF: 150.42466638134778
Iteration: 5, Func. Count: 48, Neg. LLF: 150.11796228985295
Iteration: 6, Func. Count: 56, Neg. LLF: 150.09967137600304
Iteration: 7, Func. Count: 64, Neg. LLF: 149.98430092361576
Iteration: 8, Func. Count: 72, Neg. LLF: 148.27130423063008
Iteration: 9, Func. Count: 80, Neg. LLF: 161.8717969564426
Iteration: 10, Func. Count: 90, Neg. LLF: 147.33952713454866
Iteration: 11, Func. Count: 98, Neg. LLF: 146.7991157186382
Iteration: 12, Func. Count: 106, Neg. LLF: 146.4770504703192
Iteration: 13, Func. Count: 114, Neg. LLF: 146.2868453760932
Iteration: 14, Func. Count: 122, Neg. LLF: 146.169027836493
Iteration: 15, Func. Count: 130, Neg. LLF: 146.13689052598062
Iteration: 16, Func. Count: 138, Neg. LLF: 146.0733027525551
Iteration: 17, Func. Count: 146, Neg. LLF: 146.06079681242656
Iteration: 18, Func. Count: 154, Neg. LLF: 146.0458463269208
Iteration: 19, Func. Count: 162, Neg. LLF: 146.03891906897096
Iteration: 20, Func. Count: 170, Neg. LLF: 146.03635867829794
Iteration: 21, Func. Count: 178, Neg. LLF: 146.03597792146198
Iteration: 22, Func. Count: 186, Neg. LLF: 146.0359623422385
Iteration: 23, Func. Count: 193, Neg. LLF: 146.03596249961595
Optimization terminated successfully (Exit mode 0)
Current function value: 146.0359623422385
Iterations: 23
Function evaluations: 193
Gradient evaluations: 23
Iteration: 1, Func. Count: 10, Neg. LLF: 155.88610447961173
Iteration: 2, Func. Count: 22, Neg. LLF: 154.92333509593647
Iteration: 3, Func. Count: 32, Neg. LLF: 149.475930589006
Iteration: 4, Func. Count: 41, Neg. LLF: 148.02842600184715
Iteration: 5, Func. Count: 50, Neg. LLF: 147.10324482610088
Iteration: 6, Func. Count: 59, Neg. LLF: 149.803062622323
Iteration: 7, Func. Count: 69, Neg. LLF: 148.1771309929099
Iteration: 8, Func. Count: 79, Neg. LLF: 146.14334550264286
Iteration: 9, Func. Count: 88, Neg. LLF: 146.07007141018835
Iteration: 10, Func. Count: 97, Neg. LLF: 146.06004206726175
Iteration: 11, Func. Count: 106, Neg. LLF: 146.05171329090336
Iteration: 12, Func. Count: 115, Neg. LLF: 146.04709548489978
Iteration: 13, Func. Count: 124, Neg. LLF: 146.03610474656097
Iteration: 14, Func. Count: 133, Neg. LLF: 146.03597269623725
Iteration: 15, Func. Count: 142, Neg. LLF: 146.035962243003
Iteration: 16, Func. Count: 150, Neg. LLF: 146.03596223286434
Optimization terminated successfully (Exit mode 0)
Current function value: 146.035962243003
Iterations: 16
Function evaluations: 150
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 157.56989464307316
Iteration: 2, Func. Count: 24, Neg. LLF: 154.82522746857754
Iteration: 3, Func. Count: 35, Neg. LLF: 150.19492918560877
Iteration: 4, Func. Count: 46, Neg. LLF: 150.0614185612615
Iteration: 5, Func. Count: 58, Neg. LLF: 150.05287657973076
Iteration: 6, Func. Count: 68, Neg. LLF: 150.20289047593593
Iteration: 7, Func. Count: 79, Neg. LLF: 150.02759790213406
Iteration: 8, Func. Count: 89, Neg. LLF: 150.2806308891849
Iteration: 9, Func. Count: 101, Neg. LLF: 150.02051504219997
Iteration: 10, Func. Count: 112, Neg. LLF: 149.90449255120137
Iteration: 11, Func. Count: 122, Neg. LLF: 149.82807013076052
Iteration: 12, Func. Count: 132, Neg. LLF: 149.74982157164575
Iteration: 13, Func. Count: 142, Neg. LLF: 149.70145496708122
Iteration: 14, Func. Count: 152, Neg. LLF: 149.66494891748988
Iteration: 15, Func. Count: 162, Neg. LLF: 149.656336051651
Iteration: 16, Func. Count: 172, Neg. LLF: 149.64350746600235
Iteration: 17, Func. Count: 182, Neg. LLF: 149.60926356856865
Iteration: 18, Func. Count: 192, Neg. LLF: 149.51286193729786
Iteration: 19, Func. Count: 202, Neg. LLF: 149.36575771356777
Iteration: 20, Func. Count: 212, Neg. LLF: 149.2210220777594
Iteration: 21, Func. Count: 222, Neg. LLF: 149.08444426271285
Iteration: 22, Func. Count: 232, Neg. LLF: 149.04251436624975
Iteration: 23, Func. Count: 242, Neg. LLF: 149.02594925722798
Iteration: 24, Func. Count: 252, Neg. LLF: 149.0186527556316
Iteration: 25, Func. Count: 262, Neg. LLF: 149.01779073449615
Iteration: 26, Func. Count: 272, Neg. LLF: 149.01774561080782
Iteration: 27, Func. Count: 282, Neg. LLF: 149.01771907787406
Iteration: 28, Func. Count: 291, Neg. LLF: 149.01771907796518
Optimization terminated successfully (Exit mode 0)
Current function value: 149.01771907787406
Iterations: 28
Function evaluations: 291
Gradient evaluations: 28
Iteration: 1, Func. Count: 12, Neg. LLF: 155.84903524806174
Iteration: 2, Func. Count: 24, Neg. LLF: 153.90055471003572
Iteration: 3, Func. Count: 36, Neg. LLF: 152.2296584420028
Iteration: 4, Func. Count: 48, Neg. LLF: 149.43321491670957
Iteration: 5, Func. Count: 59, Neg. LLF: 150.23974440415049
Iteration: 6, Func. Count: 71, Neg. LLF: 149.20684715239435
Iteration: 7, Func. Count: 82, Neg. LLF: 153.43955021214435
Iteration: 8, Func. Count: 94, Neg. LLF: 149.2661412756569
Iteration: 9, Func. Count: 106, Neg. LLF: 148.93604818407775
Iteration: 10, Func. Count: 117, Neg. LLF: 148.8882315192599
Iteration: 11, Func. Count: 128, Neg. LLF: 148.8684892374911
Iteration: 12, Func. Count: 139, Neg. LLF: 148.8420978474033
Iteration: 13, Func. Count: 150, Neg. LLF: 148.82954837331212
Iteration: 14, Func. Count: 161, Neg. LLF: 148.81235963840686
Iteration: 15, Func. Count: 172, Neg. LLF: 148.7984065926299
Iteration: 16, Func. Count: 183, Neg. LLF: 148.79510063603865
Iteration: 17, Func. Count: 194, Neg. LLF: 148.7949747133356
Iteration: 18, Func. Count: 205, Neg. LLF: 148.7949705486994
Iteration: 19, Func. Count: 215, Neg. LLF: 148.79497054865718
Optimization terminated successfully (Exit mode 0)
Current function value: 148.7949705486994
Iterations: 19
Function evaluations: 215
Gradient evaluations: 19
Iteration: 1, Func. Count: 9, Neg. LLF: 162.9138060797819
Iteration: 2, Func. Count: 19, Neg. LLF: 149.4271526426736
Iteration: 3, Func. Count: 27, Neg. LLF: 148.95703090672654
Iteration: 4, Func. Count: 36, Neg. LLF: 146.40320915079542
Iteration: 5, Func. Count: 44, Neg. LLF: 146.36638005963425
Iteration: 6, Func. Count: 52, Neg. LLF: 146.22523499190245
Iteration: 7, Func. Count: 60, Neg. LLF: 146.1935070284963
Iteration: 8, Func. Count: 68, Neg. LLF: 146.18018846984504
Iteration: 9, Func. Count: 77, Neg. LLF: 146.0365064914639
Iteration: 10, Func. Count: 85, Neg. LLF: 146.03598398447264
Iteration: 11, Func. Count: 93, Neg. LLF: 146.03596227560055
Iteration: 12, Func. Count: 100, Neg. LLF: 146.03596232120466
Optimization terminated successfully (Exit mode 0)
Current function value: 146.03596227560055
Iterations: 12
Function evaluations: 100
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 154.75790264805923
Iteration: 2, Func. Count: 22, Neg. LLF: 154.96969123412944
Iteration: 3, Func. Count: 33, Neg. LLF: 149.96081305520562
Iteration: 4, Func. Count: 42, Neg. LLF: 148.90915128171966
Iteration: 5, Func. Count: 51, Neg. LLF: 148.391070830363
Iteration: 6, Func. Count: 60, Neg. LLF: 146.49956271622304
Iteration: 7, Func. Count: 69, Neg. LLF: 146.35242520423077
Iteration: 8, Func. Count: 78, Neg. LLF: 146.15224153663462
Iteration: 9, Func. Count: 87, Neg. LLF: 147.18971664293463
Iteration: 10, Func. Count: 98, Neg. LLF: 146.1119739551264
Iteration: 11, Func. Count: 107, Neg. LLF: 146.07891818778185
Iteration: 12, Func. Count: 116, Neg. LLF: 146.06934541200872
Iteration: 13, Func. Count: 125, Neg. LLF: 146.0393356478804
Iteration: 14, Func. Count: 134, Neg. LLF: 146.0360426951528
Iteration: 15, Func. Count: 143, Neg. LLF: 146.0359635537733
Iteration: 16, Func. Count: 152, Neg. LLF: 146.03596225078076
Iteration: 17, Func. Count: 160, Neg. LLF: 146.03596240813314
Optimization terminated successfully (Exit mode 0)
Current function value: 146.03596225078076
Iterations: 17
Function evaluations: 160
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 154.40976482389686
Iteration: 2, Func. Count: 24, Neg. LLF: 153.23257135248053
Iteration: 3, Func. Count: 35, Neg. LLF: 149.4605870541197
Iteration: 4, Func. Count: 45, Neg. LLF: 148.37137760600194
Iteration: 5, Func. Count: 55, Neg. LLF: 146.9689146589099
Iteration: 6, Func. Count: 65, Neg. LLF: 149.71029939097227
Iteration: 7, Func. Count: 76, Neg. LLF: 146.90026430381465
Iteration: 8, Func. Count: 87, Neg. LLF: 146.18486536844154
Iteration: 9, Func. Count: 97, Neg. LLF: 146.11015869234538
Iteration: 10, Func. Count: 107, Neg. LLF: 146.08910229950718
Iteration: 11, Func. Count: 117, Neg. LLF: 146.0787791066749
Iteration: 12, Func. Count: 127, Neg. LLF: 146.04831665667837
Iteration: 13, Func. Count: 137, Neg. LLF: 146.03985454748675
Iteration: 14, Func. Count: 147, Neg. LLF: 146.03604134282742
Iteration: 15, Func. Count: 157, Neg. LLF: 146.0359634907558
Iteration: 16, Func. Count: 167, Neg. LLF: 146.0359622479136
Iteration: 17, Func. Count: 176, Neg. LLF: 146.03596223778356
Optimization terminated successfully (Exit mode 0)
Current function value: 146.0359622479136
Iterations: 17
Function evaluations: 176
Gradient evaluations: 17
Iteration: 1, Func. Count: 12, Neg. LLF: 157.30421729861425
Iteration: 2, Func. Count: 26, Neg. LLF: 154.759003663773
Iteration: 3, Func. Count: 38, Neg. LLF: 149.78027659263984
Iteration: 4, Func. Count: 49, Neg. LLF: 149.22312131182704
Iteration: 5, Func. Count: 60, Neg. LLF: 151.9879213501101
Iteration: 6, Func. Count: 73, Neg. LLF: 147.16200248293663
Iteration: 7, Func. Count: 84, Neg. LLF: 146.93345013818754
Iteration: 8, Func. Count: 95, Neg. LLF: 147.24648271362196
Iteration: 9, Func. Count: 107, Neg. LLF: 146.1453214673772
Iteration: 10, Func. Count: 118, Neg. LLF: 146.1205633707775
Iteration: 11, Func. Count: 129, Neg. LLF: 146.07637392522642
Iteration: 12, Func. Count: 140, Neg. LLF: 146.0647661033505
Iteration: 13, Func. Count: 151, Neg. LLF: 146.05612403901557
Iteration: 14, Func. Count: 162, Neg. LLF: 146.03720633890947
Iteration: 15, Func. Count: 173, Neg. LLF: 146.03598528426878
Iteration: 16, Func. Count: 184, Neg. LLF: 146.03596273174782
Iteration: 17, Func. Count: 195, Neg. LLF: 146.03596223926195
Optimization terminated successfully (Exit mode 0)
Current function value: 146.03596223926195
Iterations: 17
Function evaluations: 195
Gradient evaluations: 17
Iteration: 1, Func. Count: 13, Neg. LLF: 157.27632570540072
Iteration: 2, Func. Count: 28, Neg. LLF: 154.52121857858356
Iteration: 3, Func. Count: 41, Neg. LLF: 151.03472171422746
Iteration: 4, Func. Count: 55, Neg. LLF: 149.9962775399213
Iteration: 5, Func. Count: 67, Neg. LLF: 149.57297561994847
Iteration: 6, Func. Count: 79, Neg. LLF: 149.4984123014552
Iteration: 7, Func. Count: 92, Neg. LLF: 149.10978050844005
Iteration: 8, Func. Count: 104, Neg. LLF: 149.0417461144048
Iteration: 9, Func. Count: 116, Neg. LLF: 149.3950915217345
Iteration: 10, Func. Count: 130, Neg. LLF: 149.15269223885824
Iteration: 11, Func. Count: 143, Neg. LLF: 148.93681424667372
Iteration: 12, Func. Count: 155, Neg. LLF: 148.88697108576332
Iteration: 13, Func. Count: 167, Neg. LLF: 148.8543273304556
Iteration: 14, Func. Count: 179, Neg. LLF: 148.81667616454519
Iteration: 15, Func. Count: 191, Neg. LLF: 148.81020358524015
Iteration: 16, Func. Count: 203, Neg. LLF: 148.79867945488496
Iteration: 17, Func. Count: 215, Neg. LLF: 148.7958244518675
Iteration: 18, Func. Count: 227, Neg. LLF: 148.79498481382515
Iteration: 19, Func. Count: 239, Neg. LLF: 148.79497479552344
Iteration: 20, Func. Count: 251, Neg. LLF: 148.79497082693536
Iteration: 21, Func. Count: 262, Neg. LLF: 148.79497082691154
Optimization terminated successfully (Exit mode 0)
Current function value: 148.79497082693536
Iterations: 21
Function evaluations: 262
Gradient evaluations: 21
Iteration: 1, Func. Count: 6, Neg. LLF: 149.5692458119142
Iteration: 2, Func. Count: 11, Neg. LLF: 150.54835923580725
Iteration: 3, Func. Count: 17, Neg. LLF: 149.46971948752002
Iteration: 4, Func. Count: 22, Neg. LLF: 149.36578329456466
Iteration: 5, Func. Count: 27, Neg. LLF: 149.3496054993878
Iteration: 6, Func. Count: 32, Neg. LLF: 149.3478933614931
Iteration: 7, Func. Count: 37, Neg. LLF: 149.34787590179826
Iteration: 8, Func. Count: 41, Neg. LLF: 149.34787596902706
Optimization terminated successfully (Exit mode 0)
Current function value: 149.34787590179826
Iterations: 8
Function evaluations: 41
Gradient evaluations: 8
Iteration: 1, Func. Count: 7, Neg. LLF: 158.92877462041744
Iteration: 2, Func. Count: 15, Neg. LLF: 164.15668696516389
Iteration: 3, Func. Count: 23, Neg. LLF: 150.79218798644217
Iteration: 4, Func. Count: 30, Neg. LLF: 150.42634046564382
Iteration: 5, Func. Count: 36, Neg. LLF: 150.4264917595311
Iteration: 6, Func. Count: 43, Neg. LLF: 150.42584181458258
Iteration: 7, Func. Count: 49, Neg. LLF: 150.42516749772008
Iteration: 8, Func. Count: 55, Neg. LLF: 150.42372149494764
Iteration: 9, Func. Count: 61, Neg. LLF: 150.42328212282098
Iteration: 10, Func. Count: 67, Neg. LLF: 150.42320012327733
Iteration: 11, Func. Count: 73, Neg. LLF: 150.42319890867017
Iteration: 12, Func. Count: 78, Neg. LLF: 150.4231989086753
Optimization terminated successfully (Exit mode 0)
Current function value: 150.42319890867017
Iterations: 12
Function evaluations: 78
Gradient evaluations: 12
Iteration: 1, Func. Count: 8, Neg. LLF: 152.95467841678635
Iteration: 2, Func. Count: 17, Neg. LLF: 157.7761075332462
Iteration: 3, Func. Count: 26, Neg. LLF: 151.21768851889354
Iteration: 4, Func. Count: 34, Neg. LLF: 150.59136052197306
Iteration: 5, Func. Count: 42, Neg. LLF: 150.44848719075148
Iteration: 6, Func. Count: 49, Neg. LLF: 150.4311640060037
Iteration: 7, Func. Count: 56, Neg. LLF: 150.4285635078169
Iteration: 8, Func. Count: 63, Neg. LLF: 150.42789112524233
Iteration: 9, Func. Count: 70, Neg. LLF: 150.4274056930913
Iteration: 10, Func. Count: 77, Neg. LLF: 150.42594538004158
Iteration: 11, Func. Count: 84, Neg. LLF: 150.42437492177476
Iteration: 12, Func. Count: 91, Neg. LLF: 150.42343612983626
Iteration: 13, Func. Count: 98, Neg. LLF: 150.4232132277946
Iteration: 14, Func. Count: 105, Neg. LLF: 150.42319892346862
Iteration: 15, Func. Count: 111, Neg. LLF: 150.42319893479225
Optimization terminated successfully (Exit mode 0)
Current function value: 150.42319892346862
Iterations: 15
Function evaluations: 111
Gradient evaluations: 15
Iteration: 1, Func. Count: 9, Neg. LLF: 152.71142656674806
Iteration: 2, Func. Count: 19, Neg. LLF: 151.1876837898041
Iteration: 3, Func. Count: 28, Neg. LLF: 159.89236319451499
Iteration: 4, Func. Count: 37, Neg. LLF: 150.4091348060728
Iteration: 5, Func. Count: 45, Neg. LLF: 151.80258152962205
Iteration: 6, Func. Count: 54, Neg. LLF: 150.1623310850677
Iteration: 7, Func. Count: 62, Neg. LLF: 150.23735305273712
Iteration: 8, Func. Count: 71, Neg. LLF: 149.86786164500407
Iteration: 9, Func. Count: 79, Neg. LLF: 149.66089390170242
Iteration: 10, Func. Count: 87, Neg. LLF: 149.21873097440533
Iteration: 11, Func. Count: 95, Neg. LLF: 150.00002076168033
Iteration: 12, Func. Count: 104, Neg. LLF: 149.19922355235528
Iteration: 13, Func. Count: 112, Neg. LLF: 149.1944832034357
Iteration: 14, Func. Count: 120, Neg. LLF: 149.19127444462129
Iteration: 15, Func. Count: 128, Neg. LLF: 149.18076826680766
Iteration: 16, Func. Count: 136, Neg. LLF: 149.17251912149283
Iteration: 17, Func. Count: 144, Neg. LLF: 149.16912160593077
Iteration: 18, Func. Count: 152, Neg. LLF: 149.16849059453898
Iteration: 19, Func. Count: 160, Neg. LLF: 149.16847869839881
Iteration: 20, Func. Count: 167, Neg. LLF: 149.16847868521586
Optimization terminated successfully (Exit mode 0)
Current function value: 149.16847869839881
Iterations: 20
Function evaluations: 167
Gradient evaluations: 20
Iteration: 1, Func. Count: 10, Neg. LLF: 182.4281334312965
Iteration: 2, Func. Count: 21, Neg. LLF: 150.9453133192153
Iteration: 3, Func. Count: 31, Neg. LLF: 151.11299392090652
Iteration: 4, Func. Count: 41, Neg. LLF: 150.6709040153552
Iteration: 5, Func. Count: 51, Neg. LLF: 150.57998376118778
Iteration: 6, Func. Count: 60, Neg. LLF: 150.59302135283866
Iteration: 7, Func. Count: 70, Neg. LLF: 150.54260798646283
Iteration: 8, Func. Count: 79, Neg. LLF: 150.5020209438146
Iteration: 9, Func. Count: 88, Neg. LLF: 150.491114583551
Iteration: 10, Func. Count: 97, Neg. LLF: 150.48567368430582
Iteration: 11, Func. Count: 106, Neg. LLF: 150.4828792687292
Iteration: 12, Func. Count: 115, Neg. LLF: 150.4773311083012
Iteration: 13, Func. Count: 124, Neg. LLF: 150.46999895789003
Iteration: 14, Func. Count: 133, Neg. LLF: 150.461389840665
Iteration: 15, Func. Count: 142, Neg. LLF: 150.45516242217118
Iteration: 16, Func. Count: 151, Neg. LLF: 150.44723737268632
Iteration: 17, Func. Count: 160, Neg. LLF: 150.44167550844958
Iteration: 18, Func. Count: 169, Neg. LLF: 150.4414606209479
Iteration: 19, Func. Count: 178, Neg. LLF: 150.44144915029577
Iteration: 20, Func. Count: 186, Neg. LLF: 150.44144917981018
Optimization terminated successfully (Exit mode 0)
Current function value: 150.44144915029577
Iterations: 20
Function evaluations: 186
Gradient evaluations: 20
Iteration: 1, Func. Count: 7, Neg. LLF: 154.4633830056221
Iteration: 2, Func. Count: 14, Neg. LLF: 150.61924916336108
Iteration: 3, Func. Count: 21, Neg. LLF: 146.58032337426908
Iteration: 4, Func. Count: 27, Neg. LLF: 146.508212118089
Iteration: 5, Func. Count: 33, Neg. LLF: 146.38001503331554
Iteration: 6, Func. Count: 39, Neg. LLF: 146.37125958182398
Iteration: 7, Func. Count: 45, Neg. LLF: 146.36083673795082
Iteration: 8, Func. Count: 51, Neg. LLF: 146.35389877602418
Iteration: 9, Func. Count: 57, Neg. LLF: 146.34387717611946
Iteration: 10, Func. Count: 63, Neg. LLF: 146.34366794413557
Iteration: 11, Func. Count: 69, Neg. LLF: 146.3436269419873
Iteration: 12, Func. Count: 74, Neg. LLF: 146.34362693507876
Optimization terminated successfully (Exit mode 0)
Current function value: 146.3436269419873
Iterations: 12
Function evaluations: 74
Gradient evaluations: 12
Iteration: 1, Func. Count: 8, Neg. LLF: 159.0644250574165
Iteration: 2, Func. Count: 17, Neg. LLF: 154.42782621121077
Iteration: 3, Func. Count: 25, Neg. LLF: 150.24056539141426
Iteration: 4, Func. Count: 32, Neg. LLF: 150.29915386141397
Iteration: 5, Func. Count: 40, Neg. LLF: 150.23412845769604
Iteration: 6, Func. Count: 47, Neg. LLF: 150.22919811771777
Iteration: 7, Func. Count: 54, Neg. LLF: 150.21419161469768
Iteration: 8, Func. Count: 61, Neg. LLF: 150.1338944818931
Iteration: 9, Func. Count: 68, Neg. LLF: 149.21952893964476
Iteration: 10, Func. Count: 75, Neg. LLF: 149.1232555776137
Iteration: 11, Func. Count: 82, Neg. LLF: 148.53470052447634
Iteration: 12, Func. Count: 89, Neg. LLF: 147.4928103538658
Iteration: 13, Func. Count: 96, Neg. LLF: 147.016911892524
Iteration: 14, Func. Count: 103, Neg. LLF: 146.88977556693874
Iteration: 15, Func. Count: 110, Neg. LLF: 146.44123812454083
Iteration: 16, Func. Count: 117, Neg. LLF: 146.37904947671836
Iteration: 17, Func. Count: 124, Neg. LLF: 146.36063550576398
Iteration: 18, Func. Count: 131, Neg. LLF: 146.35056806429407
Iteration: 19, Func. Count: 138, Neg. LLF: 146.3477154552243
Iteration: 20, Func. Count: 145, Neg. LLF: 146.3460104704051
Iteration: 21, Func. Count: 152, Neg. LLF: 146.34370867785375
Iteration: 22, Func. Count: 159, Neg. LLF: 146.34363251424278
Iteration: 23, Func. Count: 166, Neg. LLF: 146.34362681861793
Iteration: 24, Func. Count: 172, Neg. LLF: 146.3436269099972
Optimization terminated successfully (Exit mode 0)
Current function value: 146.34362681861793
Iterations: 24
Function evaluations: 172
Gradient evaluations: 24
Iteration: 1, Func. Count: 9, Neg. LLF: 150.3807474308143
Iteration: 2, Func. Count: 18, Neg. LLF: 150.29312504624494
Iteration: 3, Func. Count: 27, Neg. LLF: 147.1102783322977
Iteration: 4, Func. Count: 35, Neg. LLF: 159.7486408561527
Iteration: 5, Func. Count: 44, Neg. LLF: 148.3149583351256
Iteration: 6, Func. Count: 54, Neg. LLF: 146.89832553208475
Iteration: 7, Func. Count: 63, Neg. LLF: 146.15527739248554
Iteration: 8, Func. Count: 71, Neg. LLF: 146.13576042692162
Iteration: 9, Func. Count: 79, Neg. LLF: 146.112353103343
Iteration: 10, Func. Count: 87, Neg. LLF: 146.08870950861012
Iteration: 11, Func. Count: 95, Neg. LLF: 146.08222392145774
Iteration: 12, Func. Count: 103, Neg. LLF: 146.08131855453524
Iteration: 13, Func. Count: 111, Neg. LLF: 146.08131275458604
Iteration: 14, Func. Count: 118, Neg. LLF: 146.0813127330089
Optimization terminated successfully (Exit mode 0)
Current function value: 146.08131275458604
Iterations: 14
Function evaluations: 118
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 150.41828016024547
Iteration: 2, Func. Count: 20, Neg. LLF: 149.77826511178068
Iteration: 3, Func. Count: 30, Neg. LLF: 146.83361088010537
Iteration: 4, Func. Count: 39, Neg. LLF: 178.54403200299424
Iteration: 5, Func. Count: 49, Neg. LLF: 147.21356676994114
Iteration: 6, Func. Count: 60, Neg. LLF: 147.17650832718297
Iteration: 7, Func. Count: 70, Neg. LLF: 146.16705270240217
Iteration: 8, Func. Count: 79, Neg. LLF: 146.1433577403619
Iteration: 9, Func. Count: 88, Neg. LLF: 146.11783714931414
Iteration: 10, Func. Count: 97, Neg. LLF: 146.09236992361986
Iteration: 11, Func. Count: 106, Neg. LLF: 146.0827785695721
Iteration: 12, Func. Count: 115, Neg. LLF: 146.08132788280327
Iteration: 13, Func. Count: 124, Neg. LLF: 146.0813128363555
Iteration: 14, Func. Count: 132, Neg. LLF: 146.08131291883697
Optimization terminated successfully (Exit mode 0)
Current function value: 146.0813128363555
Iterations: 14
Function evaluations: 132
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 153.15965607255345
Iteration: 2, Func. Count: 22, Neg. LLF: 150.717467353942
Iteration: 3, Func. Count: 33, Neg. LLF: 149.06656930220973
Iteration: 4, Func. Count: 44, Neg. LLF: 148.2288283604994
Iteration: 5, Func. Count: 55, Neg. LLF: 146.9909580090953
Iteration: 6, Func. Count: 65, Neg. LLF: 146.69993721633304
Iteration: 7, Func. Count: 75, Neg. LLF: 150.6545396224674
Iteration: 8, Func. Count: 87, Neg. LLF: 146.79830595725502
Iteration: 9, Func. Count: 98, Neg. LLF: 146.46946021589503
Iteration: 10, Func. Count: 109, Neg. LLF: 146.29365945032617
Iteration: 11, Func. Count: 120, Neg. LLF: 146.11832708607932
Iteration: 12, Func. Count: 130, Neg. LLF: 146.09188382997357
Iteration: 13, Func. Count: 140, Neg. LLF: 146.08478421699732
Iteration: 14, Func. Count: 150, Neg. LLF: 146.08307032459751
Iteration: 15, Func. Count: 160, Neg. LLF: 146.08211789943363
Iteration: 16, Func. Count: 170, Neg. LLF: 146.08138973181977
Iteration: 17, Func. Count: 180, Neg. LLF: 146.08132344071254
Iteration: 18, Func. Count: 190, Neg. LLF: 146.0813127657989
Iteration: 19, Func. Count: 199, Neg. LLF: 146.08131274435158
Optimization terminated successfully (Exit mode 0)
Current function value: 146.0813127657989
Iterations: 19
Function evaluations: 199
Gradient evaluations: 19
Iteration: 1, Func. Count: 8, Neg. LLF: 150.09022868876593
Iteration: 2, Func. Count: 15, Neg. LLF: 151.33140517432705
Iteration: 3, Func. Count: 23, Neg. LLF: 146.48304827287419
Iteration: 4, Func. Count: 30, Neg. LLF: 146.41335419367067
Iteration: 5, Func. Count: 37, Neg. LLF: 146.50644170500652
Iteration: 6, Func. Count: 45, Neg. LLF: 146.34437397007454
Iteration: 7, Func. Count: 52, Neg. LLF: 146.34363811904478
Iteration: 8, Func. Count: 59, Neg. LLF: 146.34362692726003
Iteration: 9, Func. Count: 65, Neg. LLF: 146.34362697290362
Optimization terminated successfully (Exit mode 0)
Current function value: 146.34362692726003
Iterations: 9
Function evaluations: 65
Gradient evaluations: 9
Iteration: 1, Func. Count: 9, Neg. LLF: 154.64323672112755
Iteration: 2, Func. Count: 19, Neg. LLF: 156.2881911495563
Iteration: 3, Func. Count: 29, Neg. LLF: 150.40618200377514
Iteration: 4, Func. Count: 38, Neg. LLF: 150.23885484354764
Iteration: 5, Func. Count: 46, Neg. LLF: 150.23681093390033
Iteration: 6, Func. Count: 54, Neg. LLF: 150.23407633997766
Iteration: 7, Func. Count: 62, Neg. LLF: 150.22763422796407
Iteration: 8, Func. Count: 70, Neg. LLF: 150.2154548317515
Iteration: 9, Func. Count: 78, Neg. LLF: 150.05926219673825
Iteration: 10, Func. Count: 86, Neg. LLF: 149.05013898588956
Iteration: 11, Func. Count: 94, Neg. LLF: 149.00398648435237
Iteration: 12, Func. Count: 102, Neg. LLF: 148.80891354686025
Iteration: 13, Func. Count: 110, Neg. LLF: 148.4681866457491
Iteration: 14, Func. Count: 118, Neg. LLF: 148.30210195544964
Iteration: 15, Func. Count: 126, Neg. LLF: 148.1011124996227
Iteration: 16, Func. Count: 134, Neg. LLF: 147.87721928808494
Iteration: 17, Func. Count: 142, Neg. LLF: 147.5008609198072
Iteration: 18, Func. Count: 150, Neg. LLF: 147.15023708821428
Iteration: 19, Func. Count: 158, Neg. LLF: 146.44104821256565
Iteration: 20, Func. Count: 166, Neg. LLF: 146.39477310654277
Iteration: 21, Func. Count: 174, Neg. LLF: 146.3551913073569
Iteration: 22, Func. Count: 182, Neg. LLF: 146.63604199830522
Iteration: 23, Func. Count: 191, Neg. LLF: 146.3493220080963
Iteration: 24, Func. Count: 199, Neg. LLF: 146.35352546921968
Iteration: 25, Func. Count: 208, Neg. LLF: 146.34662901170998
Iteration: 26, Func. Count: 216, Neg. LLF: 146.34401886324284
Iteration: 27, Func. Count: 224, Neg. LLF: 146.34365277964392
Iteration: 28, Func. Count: 232, Neg. LLF: 146.3436269690789
Iteration: 29, Func. Count: 239, Neg. LLF: 146.34362706041543
Optimization terminated successfully (Exit mode 0)
Current function value: 146.3436269690789
Iterations: 30
Function evaluations: 239
Gradient evaluations: 29
Iteration: 1, Func. Count: 10, Neg. LLF: 149.28669106848528
Iteration: 2, Func. Count: 19, Neg. LLF: 148.71691490905565
Iteration: 3, Func. Count: 28, Neg. LLF: 147.5046810127773
Iteration: 4, Func. Count: 37, Neg. LLF: 146.34967788647134
Iteration: 5, Func. Count: 46, Neg. LLF: 146.32814533742274
Iteration: 6, Func. Count: 55, Neg. LLF: 146.2302610414754
Iteration: 7, Func. Count: 64, Neg. LLF: 154.9340922360329
Iteration: 8, Func. Count: 75, Neg. LLF: 146.1275506538209
Iteration: 9, Func. Count: 84, Neg. LLF: 146.112187145932
Iteration: 10, Func. Count: 93, Neg. LLF: 146.09562704183338
Iteration: 11, Func. Count: 102, Neg. LLF: 146.08380315401547
Iteration: 12, Func. Count: 111, Neg. LLF: 146.0812607606689
Iteration: 13, Func. Count: 120, Neg. LLF: 146.0812216499088
Iteration: 14, Func. Count: 129, Neg. LLF: 146.0811029128283
Iteration: 15, Func. Count: 148, Neg. LLF: 146.09852821577527
Iteration: 16, Func. Count: 159, Neg. LLF: 146.08136705294825
Iteration: 17, Func. Count: 169, Neg. LLF: 146.0813141128296
Iteration: 18, Func. Count: 179, Neg. LLF: 146.0813127430061
Iteration: 19, Func. Count: 187, Neg. LLF: 146.08131272146002
Optimization terminated successfully (Exit mode 0)
Current function value: 146.0813127430061
Iterations: 20
Function evaluations: 187
Gradient evaluations: 19
Iteration: 1, Func. Count: 11, Neg. LLF: 149.7596454529471
Iteration: 2, Func. Count: 21, Neg. LLF: 148.52586878981734
Iteration: 3, Func. Count: 31, Neg. LLF: 146.46531750539955
Iteration: 4, Func. Count: 41, Neg. LLF: 152.73057656519947
Iteration: 5, Func. Count: 53, Neg. LLF: 146.29783927416636
Iteration: 6, Func. Count: 63, Neg. LLF: 147.1378802702317
Iteration: 7, Func. Count: 75, Neg. LLF: 146.23385129647437
Iteration: 8, Func. Count: 85, Neg. LLF: 146.20122177995967
Iteration: 9, Func. Count: 95, Neg. LLF: 146.09644661620925
Iteration: 10, Func. Count: 105, Neg. LLF: 146.0833097741396
Iteration: 11, Func. Count: 115, Neg. LLF: 146.0813650344413
Iteration: 12, Func. Count: 125, Neg. LLF: 146.08131795050878
Iteration: 13, Func. Count: 135, Neg. LLF: 146.0813127913722
Iteration: 14, Func. Count: 144, Neg. LLF: 146.08131287388622
Optimization terminated successfully (Exit mode 0)
Current function value: 146.0813127913722
Iterations: 14
Function evaluations: 144
Gradient evaluations: 14
Iteration: 1, Func. Count: 12, Neg. LLF: 149.8305213538269
Iteration: 2, Func. Count: 23, Neg. LLF: 150.10998543611362
Iteration: 3, Func. Count: 35, Neg. LLF: 149.6984479164275
Iteration: 4, Func. Count: 47, Neg. LLF: 147.22494615373978
Iteration: 5, Func. Count: 58, Neg. LLF: 146.59675533792793
Iteration: 6, Func. Count: 69, Neg. LLF: 146.375399604853
Iteration: 7, Func. Count: 80, Neg. LLF: 148.9705427416553
Iteration: 8, Func. Count: 93, Neg. LLF: 147.02537410513528
Iteration: 9, Func. Count: 105, Neg. LLF: 146.18783533775814
Iteration: 10, Func. Count: 116, Neg. LLF: 146.15381394184922
Iteration: 11, Func. Count: 127, Neg. LLF: 146.123677346876
Iteration: 12, Func. Count: 138, Neg. LLF: 146.08547219782926
Iteration: 13, Func. Count: 149, Neg. LLF: 146.08155335010886
Iteration: 14, Func. Count: 160, Neg. LLF: 146.08134654771789
Iteration: 15, Func. Count: 171, Neg. LLF: 146.08131395295462
Iteration: 16, Func. Count: 182, Neg. LLF: 146.083052324908
Optimization terminated successfully (Exit mode 0)
Current function value: 146.08131383245075
Iterations: 17
Function evaluations: 184
Gradient evaluations: 16
Iteration: 1, Func. Count: 9, Neg. LLF: 162.18451883304763
Iteration: 2, Func. Count: 19, Neg. LLF: 146.85498930420528
Iteration: 3, Func. Count: 27, Neg. LLF: 150.08519291176228
Iteration: 4, Func. Count: 36, Neg. LLF: 146.42370980514085
Iteration: 5, Func. Count: 44, Neg. LLF: 146.15130556094596
Iteration: 6, Func. Count: 52, Neg. LLF: 146.17941005499654
Iteration: 7, Func. Count: 61, Neg. LLF: 146.0411255166534
Iteration: 8, Func. Count: 69, Neg. LLF: 146.03614397369893
Iteration: 9, Func. Count: 77, Neg. LLF: 146.03601658946567
Iteration: 10, Func. Count: 85, Neg. LLF: 146.03596327659793
Iteration: 11, Func. Count: 93, Neg. LLF: 146.03596225876228
Iteration: 12, Func. Count: 100, Neg. LLF: 146.03596224747182
Optimization terminated successfully (Exit mode 0)
Current function value: 146.03596225876228
Iterations: 12
Function evaluations: 100
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 156.68304939558217
Iteration: 2, Func. Count: 22, Neg. LLF: 155.21043657525254
Iteration: 3, Func. Count: 33, Neg. LLF: 150.4462006297266
Iteration: 4, Func. Count: 43, Neg. LLF: 150.52307128711493
Iteration: 5, Func. Count: 53, Neg. LLF: 150.126924031946
Iteration: 6, Func. Count: 62, Neg. LLF: 150.11674200705298
Iteration: 7, Func. Count: 71, Neg. LLF: 150.06820035993735
Iteration: 8, Func. Count: 80, Neg. LLF: 147.96776586126384
Iteration: 9, Func. Count: 89, Neg. LLF: 147.32434184849552
Iteration: 10, Func. Count: 98, Neg. LLF: 146.90362564004943
Iteration: 11, Func. Count: 107, Neg. LLF: 146.49395826788515
Iteration: 12, Func. Count: 116, Neg. LLF: 146.23895710962137
Iteration: 13, Func. Count: 125, Neg. LLF: 146.19961538185322
Iteration: 14, Func. Count: 134, Neg. LLF: 146.12776292674266
Iteration: 15, Func. Count: 143, Neg. LLF: 146.09412514687182
Iteration: 16, Func. Count: 152, Neg. LLF: 146.03912604755547
Iteration: 17, Func. Count: 161, Neg. LLF: 146.03612745149653
Iteration: 18, Func. Count: 170, Neg. LLF: 146.03603101977862
Iteration: 19, Func. Count: 179, Neg. LLF: 146.03859582203827
Iteration: 20, Func. Count: 190, Neg. LLF: 146.03598174323668
Iteration: 21, Func. Count: 199, Neg. LLF: 146.03596352521708
Iteration: 22, Func. Count: 208, Neg. LLF: 146.03598353873807
Optimization terminated successfully (Exit mode 0)
Current function value: 146.03596289913423
Iterations: 23
Function evaluations: 209
Gradient evaluations: 22
Iteration: 1, Func. Count: 11, Neg. LLF: 156.00683848682908
Iteration: 2, Func. Count: 24, Neg. LLF: 154.87518929214053
Iteration: 3, Func. Count: 35, Neg. LLF: 149.5465113657738
Iteration: 4, Func. Count: 45, Neg. LLF: 148.53984943430646
Iteration: 5, Func. Count: 55, Neg. LLF: 147.26694234445
Iteration: 6, Func. Count: 65, Neg. LLF: 147.55540323374626
Iteration: 7, Func. Count: 76, Neg. LLF: 146.19670756152823
Iteration: 8, Func. Count: 86, Neg. LLF: 146.13163122216872
Iteration: 9, Func. Count: 96, Neg. LLF: 146.1091694502274
Iteration: 10, Func. Count: 106, Neg. LLF: 146.0905269817324
Iteration: 11, Func. Count: 116, Neg. LLF: 146.04474165854646
Iteration: 12, Func. Count: 126, Neg. LLF: 146.03803292173313
Iteration: 13, Func. Count: 136, Neg. LLF: 146.03616254361089
Iteration: 14, Func. Count: 146, Neg. LLF: 146.0359661833853
Iteration: 15, Func. Count: 156, Neg. LLF: 146.03596235900477
Iteration: 16, Func. Count: 165, Neg. LLF: 146.03596234892598
Optimization terminated successfully (Exit mode 0)
Current function value: 146.03596235900477
Iterations: 16
Function evaluations: 165
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 157.47650549984616
Iteration: 2, Func. Count: 26, Neg. LLF: 154.79115685026508
Iteration: 3, Func. Count: 38, Neg. LLF: 150.14295317560624
Iteration: 4, Func. Count: 50, Neg. LLF: 150.10032035632972
Iteration: 5, Func. Count: 63, Neg. LLF: 150.0580503687209
Iteration: 6, Func. Count: 75, Neg. LLF: 150.14131250877602
Iteration: 7, Func. Count: 87, Neg. LLF: 150.00510030889964
Iteration: 8, Func. Count: 98, Neg. LLF: 149.95137073883157
Iteration: 9, Func. Count: 109, Neg. LLF: 149.92878260927898
Iteration: 10, Func. Count: 120, Neg. LLF: 149.85811251782917
Iteration: 11, Func. Count: 131, Neg. LLF: 149.81163812571705
Iteration: 12, Func. Count: 142, Neg. LLF: 149.7765147377729
Iteration: 13, Func. Count: 153, Neg. LLF: 149.75437235127026
Iteration: 14, Func. Count: 164, Neg. LLF: 149.69494079264663
Iteration: 15, Func. Count: 175, Neg. LLF: 149.51269002211103
Iteration: 16, Func. Count: 186, Neg. LLF: 149.44765595485686
Iteration: 17, Func. Count: 197, Neg. LLF: 149.392751837974
Iteration: 18, Func. Count: 208, Neg. LLF: 149.2691645979036
Iteration: 19, Func. Count: 219, Neg. LLF: 149.08512820010634
Iteration: 20, Func. Count: 230, Neg. LLF: 149.02066256397757
Iteration: 21, Func. Count: 241, Neg. LLF: 149.0188136804027
Iteration: 22, Func. Count: 252, Neg. LLF: 149.0177773897345
Iteration: 23, Func. Count: 263, Neg. LLF: 149.01773353816338
Iteration: 24, Func. Count: 274, Neg. LLF: 149.01771951752534
Iteration: 25, Func. Count: 285, Neg. LLF: 149.01771884297057
Optimization terminated successfully (Exit mode 0)
Current function value: 149.01771884297057
Iterations: 25
Function evaluations: 285
Gradient evaluations: 25
Iteration: 1, Func. Count: 13, Neg. LLF: 155.73293946437462
Iteration: 2, Func. Count: 26, Neg. LLF: 150.86436652878646
Iteration: 3, Func. Count: 39, Neg. LLF: 151.87818490967146
Iteration: 4, Func. Count: 52, Neg. LLF: 149.46883016189304
Iteration: 5, Func. Count: 64, Neg. LLF: 161.4017035368097
Iteration: 6, Func. Count: 78, Neg. LLF: 149.20345108739153
Iteration: 7, Func. Count: 90, Neg. LLF: 153.53022477155037
Iteration: 8, Func. Count: 104, Neg. LLF: 149.04665398656937
Iteration: 9, Func. Count: 116, Neg. LLF: 148.94636667681655
Iteration: 10, Func. Count: 128, Neg. LLF: 148.91366147440158
Iteration: 11, Func. Count: 140, Neg. LLF: 148.8846177660983
Iteration: 12, Func. Count: 152, Neg. LLF: 148.86928267829566
Iteration: 13, Func. Count: 164, Neg. LLF: 148.82464390084408
Iteration: 14, Func. Count: 176, Neg. LLF: 148.81459182051498
Iteration: 15, Func. Count: 188, Neg. LLF: 148.79587786360014
Iteration: 16, Func. Count: 200, Neg. LLF: 148.79502988826832
Iteration: 17, Func. Count: 212, Neg. LLF: 148.79497084861714
Iteration: 18, Func. Count: 223, Neg. LLF: 148.79497084868095
Optimization terminated successfully (Exit mode 0)
Current function value: 148.79497084861714
Iterations: 18
Function evaluations: 223
Gradient evaluations: 18
Iteration: 1, Func. Count: 10, Neg. LLF: 156.85832176271313
Iteration: 2, Func. Count: 21, Neg. LLF: 147.19346006070947
Iteration: 3, Func. Count: 30, Neg. LLF: 150.88577665283827
Iteration: 4, Func. Count: 40, Neg. LLF: 146.41545643554088
Iteration: 5, Func. Count: 49, Neg. LLF: 146.15354678026085
Iteration: 6, Func. Count: 58, Neg. LLF: 146.27818619384732
Iteration: 7, Func. Count: 68, Neg. LLF: 146.03833263232383
Iteration: 8, Func. Count: 77, Neg. LLF: 146.03598948400705
Iteration: 9, Func. Count: 86, Neg. LLF: 146.0359681786314
Iteration: 10, Func. Count: 95, Neg. LLF: 146.03596225987732
Iteration: 11, Func. Count: 103, Neg. LLF: 146.03596230549252
Optimization terminated successfully (Exit mode 0)
Current function value: 146.03596225987732
Iterations: 11
Function evaluations: 103
Gradient evaluations: 11
Iteration: 1, Func. Count: 11, Neg. LLF: 154.40717398809656
Iteration: 2, Func. Count: 24, Neg. LLF: 154.92710393571815
Iteration: 3, Func. Count: 36, Neg. LLF: 150.04679140597148
Iteration: 4, Func. Count: 46, Neg. LLF: 149.3723056685459
Iteration: 5, Func. Count: 56, Neg. LLF: 148.50746540238907
Iteration: 6, Func. Count: 66, Neg. LLF: 146.61980691874993
Iteration: 7, Func. Count: 76, Neg. LLF: 146.5166818967593
Iteration: 8, Func. Count: 86, Neg. LLF: 146.30413789729548
Iteration: 9, Func. Count: 96, Neg. LLF: 146.211690085794
Iteration: 10, Func. Count: 106, Neg. LLF: 146.0808761795167
Iteration: 11, Func. Count: 116, Neg. LLF: 146.0550750823664
Iteration: 12, Func. Count: 126, Neg. LLF: 146.0464284864855
Iteration: 13, Func. Count: 136, Neg. LLF: 146.04338859139315
Iteration: 14, Func. Count: 146, Neg. LLF: 146.03990370877293
Iteration: 15, Func. Count: 156, Neg. LLF: 146.03660095120813
Iteration: 16, Func. Count: 166, Neg. LLF: 146.03601676128062
Iteration: 17, Func. Count: 176, Neg. LLF: 146.03596258528015
Iteration: 18, Func. Count: 185, Neg. LLF: 146.0359627425863
Optimization terminated successfully (Exit mode 0)
Current function value: 146.03596258528015
Iterations: 18
Function evaluations: 185
Gradient evaluations: 18
Iteration: 1, Func. Count: 12, Neg. LLF: 154.5319736611018
Iteration: 2, Func. Count: 26, Neg. LLF: 153.45874437495078
Iteration: 3, Func. Count: 38, Neg. LLF: 149.52431004609568
Iteration: 4, Func. Count: 49, Neg. LLF: 148.920259275246
Iteration: 5, Func. Count: 60, Neg. LLF: 147.08489426160114
Iteration: 6, Func. Count: 71, Neg. LLF: 148.90179200953213
Iteration: 7, Func. Count: 83, Neg. LLF: 146.74182995334667
Iteration: 8, Func. Count: 94, Neg. LLF: 146.2182924061798
Iteration: 9, Func. Count: 105, Neg. LLF: 146.1553764099541
Iteration: 10, Func. Count: 116, Neg. LLF: 146.15027189125803
Iteration: 11, Func. Count: 128, Neg. LLF: 146.10997476830917
Iteration: 12, Func. Count: 139, Neg. LLF: 146.05906720038215
Iteration: 13, Func. Count: 150, Neg. LLF: 146.03960198397274
Iteration: 14, Func. Count: 161, Neg. LLF: 146.03605500011415
Iteration: 15, Func. Count: 172, Neg. LLF: 146.03596335220587
Iteration: 16, Func. Count: 183, Neg. LLF: 146.03596227105805
Iteration: 17, Func. Count: 193, Neg. LLF: 146.03596226092
Optimization terminated successfully (Exit mode 0)
Current function value: 146.03596227105805
Iterations: 17
Function evaluations: 193
Gradient evaluations: 17
Iteration: 1, Func. Count: 13, Neg. LLF: 157.21980096504151
Iteration: 2, Func. Count: 28, Neg. LLF: 154.73694127932137
Iteration: 3, Func. Count: 41, Neg. LLF: 149.79244009118074
Iteration: 4, Func. Count: 53, Neg. LLF: 148.8965716939322
Iteration: 5, Func. Count: 65, Neg. LLF: 147.54229993215242
Iteration: 6, Func. Count: 77, Neg. LLF: 150.96325788898469
Iteration: 7, Func. Count: 91, Neg. LLF: 146.78882936334688
Iteration: 8, Func. Count: 103, Neg. LLF: 146.18054221388525
Iteration: 9, Func. Count: 115, Neg. LLF: 146.0997865911967
Iteration: 10, Func. Count: 127, Neg. LLF: 146.07775695909748
Iteration: 11, Func. Count: 139, Neg. LLF: 146.0624099604019
Iteration: 12, Func. Count: 151, Neg. LLF: 146.0523936364256
Iteration: 13, Func. Count: 163, Neg. LLF: 146.0465397914024
Iteration: 14, Func. Count: 175, Neg. LLF: 146.03607387129426
Iteration: 15, Func. Count: 187, Neg. LLF: 146.0359652217502
Iteration: 16, Func. Count: 199, Neg. LLF: 146.03596242270646
Iteration: 17, Func. Count: 210, Neg. LLF: 146.03596250615706
Optimization terminated successfully (Exit mode 0)
Current function value: 146.03596242270646
Iterations: 17
Function evaluations: 210
Gradient evaluations: 17
Iteration: 1, Func. Count: 14, Neg. LLF: 157.1736333971344
Iteration: 2, Func. Count: 30, Neg. LLF: 154.49925919278013
Iteration: 3, Func. Count: 44, Neg. LLF: 149.9290866628491
Iteration: 4, Func. Count: 57, Neg. LLF: 149.8371745778653
Iteration: 5, Func. Count: 70, Neg. LLF: 148.82971236227263
Iteration: 6, Func. Count: 83, Neg. LLF: 147.92605353854452
Iteration: 7, Func. Count: 96, Neg. LLF: 147.30685915974473
Iteration: 8, Func. Count: 109, Neg. LLF: 146.5583059320472
Iteration: 9, Func. Count: 122, Neg. LLF: 147.3369404362612
Iteration: 10, Func. Count: 137, Neg. LLF: 147.07030083205598
Iteration: 11, Func. Count: 151, Neg. LLF: 146.1731771586217
Iteration: 12, Func. Count: 164, Neg. LLF: 146.09120687997302
Iteration: 13, Func. Count: 177, Neg. LLF: 146.07421657850546
Iteration: 14, Func. Count: 190, Neg. LLF: 146.04989894214444
Iteration: 15, Func. Count: 203, Neg. LLF: 146.0373851523725
Iteration: 16, Func. Count: 216, Neg. LLF: 146.03495409592372
Iteration: 17, Func. Count: 229, Neg. LLF: 146.034921705437
Iteration: 18, Func. Count: 241, Neg. LLF: 146.0349216832312
Optimization terminated successfully (Exit mode 0)
Current function value: 146.034921705437
Iterations: 18
Function evaluations: 241
Gradient evaluations: 18
Iteration: 1, Func. Count: 7, Neg. LLF: 155.55235507359276
Iteration: 2, Func. Count: 14, Neg. LLF: 155.93556863597814
Iteration: 3, Func. Count: 21, Neg. LLF: 151.4067914758142
Iteration: 4, Func. Count: 27, Neg. LLF: 151.3104310970614
Iteration: 5, Func. Count: 34, Neg. LLF: 151.0813143342154
Iteration: 6, Func. Count: 44, Neg. LLF: 151.02686581430885
Iteration: 7, Func. Count: 50, Neg. LLF: 150.90766295517597
Iteration: 8, Func. Count: 56, Neg. LLF: 150.90284829545814
Iteration: 9, Func. Count: 64, Neg. LLF: 150.44171293692855
Iteration: 10, Func. Count: 70, Neg. LLF: 150.43083892432608
Iteration: 11, Func. Count: 76, Neg. LLF: 150.42827040550557
Iteration: 12, Func. Count: 82, Neg. LLF: 150.42657678456123
Iteration: 13, Func. Count: 88, Neg. LLF: 150.42597322274867
Iteration: 14, Func. Count: 94, Neg. LLF: 150.4258252022493
Iteration: 15, Func. Count: 100, Neg. LLF: 150.4258102470253
Iteration: 16, Func. Count: 106, Neg. LLF: 150.42580935867883
Optimization terminated successfully (Exit mode 0)
Current function value: 150.42580935867883
Iterations: 16
Function evaluations: 106
Gradient evaluations: 16
Iteration: 1, Func. Count: 8, Neg. LLF: 157.94250181724288
Iteration: 2, Func. Count: 16, Neg. LLF: 155.19558585424272
Iteration: 3, Func. Count: 24, Neg. LLF: 152.41741655472617
Iteration: 4, Func. Count: 32, Neg. LLF: 149.5377433488566
Iteration: 5, Func. Count: 39, Neg. LLF: 160.35789897895032
Iteration: 6, Func. Count: 48, Neg. LLF: 149.59422977299909
Iteration: 7, Func. Count: 56, Neg. LLF: 149.47215634015993
Iteration: 8, Func. Count: 63, Neg. LLF: 149.46969191665124
Iteration: 9, Func. Count: 70, Neg. LLF: 149.46698932845294
Iteration: 10, Func. Count: 77, Neg. LLF: 149.46320776688782
Iteration: 11, Func. Count: 84, Neg. LLF: 149.46081842304125
Iteration: 12, Func. Count: 91, Neg. LLF: 149.45996966743715
Iteration: 13, Func. Count: 98, Neg. LLF: 149.45987765326964
Iteration: 14, Func. Count: 105, Neg. LLF: 149.45987629032942
Iteration: 15, Func. Count: 111, Neg. LLF: 149.45987629036088
Optimization terminated successfully (Exit mode 0)
Current function value: 149.45987629032942
Iterations: 15
Function evaluations: 111
Gradient evaluations: 15
Iteration: 1, Func. Count: 9, Neg. LLF: 153.96089630549415
Iteration: 2, Func. Count: 19, Neg. LLF: 150.42980998317088
Iteration: 3, Func. Count: 28, Neg. LLF: 150.1605722767304
Iteration: 4, Func. Count: 37, Neg. LLF: 149.89348835030657
Iteration: 5, Func. Count: 45, Neg. LLF: 158.6332432065924
Iteration: 6, Func. Count: 55, Neg. LLF: 149.87683633739115
Iteration: 7, Func. Count: 64, Neg. LLF: 149.80708616320447
Iteration: 8, Func. Count: 72, Neg. LLF: 149.7557923400723
Iteration: 9, Func. Count: 80, Neg. LLF: 149.65875699511795
Iteration: 10, Func. Count: 88, Neg. LLF: 149.5707699837692
Iteration: 11, Func. Count: 96, Neg. LLF: 149.47688667286877
Iteration: 12, Func. Count: 104, Neg. LLF: 149.46035307830985
Iteration: 13, Func. Count: 112, Neg. LLF: 149.45993656665965
Iteration: 14, Func. Count: 120, Neg. LLF: 149.45987881196552
Iteration: 15, Func. Count: 128, Neg. LLF: 149.4598764206746
Iteration: 16, Func. Count: 135, Neg. LLF: 149.4598764711943
Optimization terminated successfully (Exit mode 0)
Current function value: 149.4598764206746
Iterations: 16
Function evaluations: 135
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 153.85204013999729
Iteration: 2, Func. Count: 21, Neg. LLF: 153.65617612977678
Iteration: 3, Func. Count: 31, Neg. LLF: 150.0143983792776
Iteration: 4, Func. Count: 40, Neg. LLF: 150.37255862015652
Iteration: 5, Func. Count: 50, Neg. LLF: 152.66736052325774
Iteration: 6, Func. Count: 60, Neg. LLF: 149.83443918516025
Iteration: 7, Func. Count: 69, Neg. LLF: 149.81203858255623
Iteration: 8, Func. Count: 78, Neg. LLF: 149.7908184403758
Iteration: 9, Func. Count: 87, Neg. LLF: 149.7369104692927
Iteration: 10, Func. Count: 96, Neg. LLF: 149.6055283932966
Iteration: 11, Func. Count: 105, Neg. LLF: 149.52342944646298
Iteration: 12, Func. Count: 114, Neg. LLF: 149.4610095874089
Iteration: 13, Func. Count: 123, Neg. LLF: 149.46006445815055
Iteration: 14, Func. Count: 132, Neg. LLF: 149.45993190772833
Iteration: 15, Func. Count: 141, Neg. LLF: 149.4598764880229
Iteration: 16, Func. Count: 149, Neg. LLF: 149.45987656367524
Optimization terminated successfully (Exit mode 0)
Current function value: 149.4598764880229
Iterations: 16
Function evaluations: 149
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 153.91378715343302
Iteration: 2, Func. Count: 23, Neg. LLF: 153.8603272410228
Iteration: 3, Func. Count: 34, Neg. LLF: 150.99273220605633
Iteration: 4, Func. Count: 45, Neg. LLF: 149.87750767557174
Iteration: 5, Func. Count: 55, Neg. LLF: 150.7873100979418
Iteration: 6, Func. Count: 66, Neg. LLF: 149.83691854495595
Iteration: 7, Func. Count: 76, Neg. LLF: 149.81609173055205
Iteration: 8, Func. Count: 86, Neg. LLF: 149.7847637078113
Iteration: 9, Func. Count: 96, Neg. LLF: 149.72547636042736
Iteration: 10, Func. Count: 106, Neg. LLF: 149.63846718226398
Iteration: 11, Func. Count: 116, Neg. LLF: 149.574379937088
Iteration: 12, Func. Count: 126, Neg. LLF: 149.5147100414529
Iteration: 13, Func. Count: 136, Neg. LLF: 149.47353021569685
Iteration: 14, Func. Count: 146, Neg. LLF: 149.46156666191067
Iteration: 15, Func. Count: 156, Neg. LLF: 149.4600591344788
Iteration: 16, Func. Count: 166, Neg. LLF: 149.45987686584698
Iteration: 17, Func. Count: 176, Neg. LLF: 149.4598762852602
Optimization terminated successfully (Exit mode 0)
Current function value: 149.4598762852602
Iterations: 17
Function evaluations: 176
Gradient evaluations: 17
Iteration: 1, Func. Count: 8, Neg. LLF: 151.3837431473725
Iteration: 2, Func. Count: 16, Neg. LLF: 148.62328722103635
Iteration: 3, Func. Count: 24, Neg. LLF: 146.48378821876182
Iteration: 4, Func. Count: 31, Neg. LLF: 146.38970015520542
Iteration: 5, Func. Count: 38, Neg. LLF: 146.36830982849574
Iteration: 6, Func. Count: 45, Neg. LLF: 146.35744796547678
Iteration: 7, Func. Count: 52, Neg. LLF: 146.3442416149255
Iteration: 8, Func. Count: 59, Neg. LLF: 146.34366142251488
Iteration: 9, Func. Count: 66, Neg. LLF: 146.34362698921245
Iteration: 10, Func. Count: 72, Neg. LLF: 146.3436269823055
Optimization terminated successfully (Exit mode 0)
Current function value: 146.34362698921245
Iterations: 10
Function evaluations: 72
Gradient evaluations: 10
Iteration: 1, Func. Count: 9, Neg. LLF: 158.9215698225671
Iteration: 2, Func. Count: 18, Neg. LLF: 160.33330945483678
Iteration: 3, Func. Count: 28, Neg. LLF: 150.41534584335338
Iteration: 4, Func. Count: 37, Neg. LLF: 149.5381891918837
Iteration: 5, Func. Count: 46, Neg. LLF: 149.49744384185536
Iteration: 6, Func. Count: 55, Neg. LLF: 149.38343490996496
Iteration: 7, Func. Count: 63, Neg. LLF: 149.3818028402813
Iteration: 8, Func. Count: 71, Neg. LLF: 149.3758208506738
Iteration: 9, Func. Count: 79, Neg. LLF: 149.37348849693996
Iteration: 10, Func. Count: 87, Neg. LLF: 149.37245082541017
Iteration: 11, Func. Count: 95, Neg. LLF: 149.37226888167976
Iteration: 12, Func. Count: 103, Neg. LLF: 149.37226460029495
Iteration: 13, Func. Count: 110, Neg. LLF: 149.372264600294
Optimization terminated successfully (Exit mode 0)
Current function value: 149.37226460029495
Iterations: 13
Function evaluations: 110
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 149.92046167806546
Iteration: 2, Func. Count: 20, Neg. LLF: 150.9923288159022
Iteration: 3, Func. Count: 30, Neg. LLF: 147.47219660084355
Iteration: 4, Func. Count: 39, Neg. LLF: 146.38407236228102
Iteration: 5, Func. Count: 48, Neg. LLF: 146.52242281198096
Iteration: 6, Func. Count: 58, Neg. LLF: 146.25312212035422
Iteration: 7, Func. Count: 67, Neg. LLF: 146.18677077915316
Iteration: 8, Func. Count: 76, Neg. LLF: 146.18436667263177
Iteration: 9, Func. Count: 86, Neg. LLF: 146.14441163516494
Iteration: 10, Func. Count: 95, Neg. LLF: 146.08700256942296
Iteration: 11, Func. Count: 104, Neg. LLF: 146.08198074166393
Iteration: 12, Func. Count: 113, Neg. LLF: 146.08131706361652
Iteration: 13, Func. Count: 122, Neg. LLF: 146.0813127830283
Iteration: 14, Func. Count: 130, Neg. LLF: 146.08131276151417
Optimization terminated successfully (Exit mode 0)
Current function value: 146.0813127830283
Iterations: 14
Function evaluations: 130
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 151.16054042969083
Iteration: 2, Func. Count: 23, Neg. LLF: 148.06610148550988
Iteration: 3, Func. Count: 33, Neg. LLF: 147.2468181778165
Iteration: 4, Func. Count: 43, Neg. LLF: 146.88106397693392
Iteration: 5, Func. Count: 53, Neg. LLF: 163.97472751504552
Iteration: 6, Func. Count: 65, Neg. LLF: 146.27279091094488
Iteration: 7, Func. Count: 75, Neg. LLF: 146.23856424846332
Iteration: 8, Func. Count: 85, Neg. LLF: 146.2041758218015
Iteration: 9, Func. Count: 95, Neg. LLF: 146.16744512947346
Iteration: 10, Func. Count: 105, Neg. LLF: 146.11640544988742
Iteration: 11, Func. Count: 115, Neg. LLF: 146.0850947232802
Iteration: 12, Func. Count: 125, Neg. LLF: 146.0816413374745
Iteration: 13, Func. Count: 135, Neg. LLF: 146.08131530060894
Iteration: 14, Func. Count: 145, Neg. LLF: 146.08131284116783
Iteration: 15, Func. Count: 154, Neg. LLF: 146.08131292370265
Optimization terminated successfully (Exit mode 0)
Current function value: 146.08131284116783
Iterations: 15
Function evaluations: 154
Gradient evaluations: 15
Iteration: 1, Func. Count: 12, Neg. LLF: 152.18832816634531
Iteration: 2, Func. Count: 25, Neg. LLF: 148.70267542212832
Iteration: 3, Func. Count: 36, Neg. LLF: 148.7673246874918
Iteration: 4, Func. Count: 48, Neg. LLF: 155.93252058172834
Iteration: 5, Func. Count: 60, Neg. LLF: 147.1885400830373
Iteration: 6, Func. Count: 71, Neg. LLF: 146.4165987843903
Iteration: 7, Func. Count: 82, Neg. LLF: 146.6025355796958
Iteration: 8, Func. Count: 95, Neg. LLF: 146.50403137606
Iteration: 9, Func. Count: 107, Neg. LLF: 146.20409979389382
Iteration: 10, Func. Count: 118, Neg. LLF: 146.17145422008522
Iteration: 11, Func. Count: 129, Neg. LLF: 146.12627638726647
Iteration: 12, Func. Count: 140, Neg. LLF: 146.09866444807585
Iteration: 13, Func. Count: 151, Neg. LLF: 146.0824916425729
Iteration: 14, Func. Count: 162, Neg. LLF: 146.08135849821485
Iteration: 15, Func. Count: 173, Neg. LLF: 146.08131298826876
Iteration: 16, Func. Count: 183, Neg. LLF: 146.08131296693006
Optimization terminated successfully (Exit mode 0)
Current function value: 146.08131298826876
Iterations: 16
Function evaluations: 183
Gradient evaluations: 16
Iteration: 1, Func. Count: 9, Neg. LLF: 147.9412278284555
Iteration: 2, Func. Count: 17, Neg. LLF: 150.15426990135302
Iteration: 3, Func. Count: 26, Neg. LLF: 146.46451748942866
Iteration: 4, Func. Count: 34, Neg. LLF: 146.4118534967048
Iteration: 5, Func. Count: 42, Neg. LLF: 146.35730655187888
Iteration: 6, Func. Count: 50, Neg. LLF: 146.34996171963792
Iteration: 7, Func. Count: 58, Neg. LLF: 146.3438615738253
Iteration: 8, Func. Count: 66, Neg. LLF: 146.34364382811054
Iteration: 9, Func. Count: 74, Neg. LLF: 146.3436268091748
Iteration: 10, Func. Count: 81, Neg. LLF: 146.34362685481486
Optimization terminated successfully (Exit mode 0)
Current function value: 146.3436268091748
Iterations: 10
Function evaluations: 81
Gradient evaluations: 10
Iteration: 1, Func. Count: 10, Neg. LLF: 157.92275123505797
Iteration: 2, Func. Count: 20, Neg. LLF: 155.51476225770116
Iteration: 3, Func. Count: 30, Neg. LLF: 151.82898899102128
Iteration: 4, Func. Count: 40, Neg. LLF: 149.54346091330305
Iteration: 5, Func. Count: 49, Neg. LLF: 175.8244288895978
Iteration: 6, Func. Count: 60, Neg. LLF: 149.49513957191454
Iteration: 7, Func. Count: 70, Neg. LLF: 149.42300932275262
Iteration: 8, Func. Count: 80, Neg. LLF: 149.4058277017824
Iteration: 9, Func. Count: 90, Neg. LLF: 149.36186805143402
Iteration: 10, Func. Count: 99, Neg. LLF: 149.35996461126655
Iteration: 11, Func. Count: 108, Neg. LLF: 149.35849470646386
Iteration: 12, Func. Count: 117, Neg. LLF: 149.3568159713153
Iteration: 13, Func. Count: 126, Neg. LLF: 149.3548787324415
Iteration: 14, Func. Count: 135, Neg. LLF: 149.3542065042979
Iteration: 15, Func. Count: 144, Neg. LLF: 149.3540869866211
Iteration: 16, Func. Count: 153, Neg. LLF: 149.35408038776987
Iteration: 17, Func. Count: 162, Neg. LLF: 149.3540792144419
Iteration: 18, Func. Count: 170, Neg. LLF: 149.35407921446227
Optimization terminated successfully (Exit mode 0)
Current function value: 149.3540792144419
Iterations: 18
Function evaluations: 170
Gradient evaluations: 18
Iteration: 1, Func. Count: 11, Neg. LLF: 153.8855224363447
Iteration: 2, Func. Count: 23, Neg. LLF: 153.84040667673023
Iteration: 3, Func. Count: 34, Neg. LLF: 150.06774323853608
Iteration: 4, Func. Count: 44, Neg. LLF: 150.19588059264353
Iteration: 5, Func. Count: 55, Neg. LLF: 153.2912006723053
Iteration: 6, Func. Count: 66, Neg. LLF: 149.77953367436035
Iteration: 7, Func. Count: 77, Neg. LLF: 149.7051026758425
Iteration: 8, Func. Count: 87, Neg. LLF: 149.67039434955274
Iteration: 9, Func. Count: 97, Neg. LLF: 149.64420527276852
Iteration: 10, Func. Count: 107, Neg. LLF: 149.5034318469082
Iteration: 11, Func. Count: 117, Neg. LLF: 149.41079481556548
Iteration: 12, Func. Count: 127, Neg. LLF: 149.36723469525464
Iteration: 13, Func. Count: 137, Neg. LLF: 149.3578280146333
Iteration: 14, Func. Count: 147, Neg. LLF: 149.354507066501
Iteration: 15, Func. Count: 157, Neg. LLF: 149.35413039099888
Iteration: 16, Func. Count: 167, Neg. LLF: 149.35408103863037
Iteration: 17, Func. Count: 177, Neg. LLF: 149.35407938706265
Iteration: 18, Func. Count: 187, Neg. LLF: 149.3540789592907
Optimization terminated successfully (Exit mode 0)
Current function value: 149.3540789592907
Iterations: 18
Function evaluations: 187
Gradient evaluations: 18
Iteration: 1, Func. Count: 12, Neg. LLF: 153.87052899239396
Iteration: 2, Func. Count: 25, Neg. LLF: 153.67222786588246
Iteration: 3, Func. Count: 37, Neg. LLF: 150.04801437230344
Iteration: 4, Func. Count: 48, Neg. LLF: 150.34804264610096
Iteration: 5, Func. Count: 60, Neg. LLF: 152.10130187496148
Iteration: 6, Func. Count: 73, Neg. LLF: 149.95766102610892
Iteration: 7, Func. Count: 85, Neg. LLF: 149.72845542330194
Iteration: 8, Func. Count: 96, Neg. LLF: 149.69613780515206
Iteration: 9, Func. Count: 107, Neg. LLF: 149.67075973709493
Iteration: 10, Func. Count: 118, Neg. LLF: 149.63232139102126
Iteration: 11, Func. Count: 129, Neg. LLF: 149.51497751776452
Iteration: 12, Func. Count: 140, Neg. LLF: 149.40451335174978
Iteration: 13, Func. Count: 151, Neg. LLF: 149.3668386824734
Iteration: 14, Func. Count: 162, Neg. LLF: 149.3569827288849
Iteration: 15, Func. Count: 173, Neg. LLF: 149.35457710947313
Iteration: 16, Func. Count: 184, Neg. LLF: 149.35418356756438
Iteration: 17, Func. Count: 195, Neg. LLF: 149.3540811433794
Iteration: 18, Func. Count: 206, Neg. LLF: 149.3540789876235
Iteration: 19, Func. Count: 216, Neg. LLF: 149.35407906273738
Optimization terminated successfully (Exit mode 0)
Current function value: 149.3540789876235
Iterations: 19
Function evaluations: 216
Gradient evaluations: 19
Iteration: 1, Func. Count: 13, Neg. LLF: 153.75003756553363
Iteration: 2, Func. Count: 28, Neg. LLF: 154.21940367499323
Iteration: 3, Func. Count: 41, Neg. LLF: 150.46926804299227
Iteration: 4, Func. Count: 54, Neg. LLF: 149.80878410636547
Iteration: 5, Func. Count: 66, Neg. LLF: 150.06826071425587
Iteration: 6, Func. Count: 79, Neg. LLF: 149.7671045607957
Iteration: 7, Func. Count: 91, Neg. LLF: 150.35458224379852
Iteration: 8, Func. Count: 104, Neg. LLF: 149.70125319952797
Iteration: 9, Func. Count: 116, Neg. LLF: 149.6663963009474
Iteration: 10, Func. Count: 128, Neg. LLF: 149.61291831476552
Iteration: 11, Func. Count: 140, Neg. LLF: 149.5275477643321
Iteration: 12, Func. Count: 152, Neg. LLF: 149.44489861521023
Iteration: 13, Func. Count: 164, Neg. LLF: 149.36084179814043
Iteration: 14, Func. Count: 176, Neg. LLF: 149.35571832256352
Iteration: 15, Func. Count: 188, Neg. LLF: 149.35421583980897
Iteration: 16, Func. Count: 200, Neg. LLF: 149.3541157829925
Iteration: 17, Func. Count: 212, Neg. LLF: 149.35407928492333
Iteration: 18, Func. Count: 223, Neg. LLF: 149.35407943284028
Optimization terminated successfully (Exit mode 0)
Current function value: 149.35407928492333
Iterations: 18
Function evaluations: 223
Gradient evaluations: 18
Iteration: 1, Func. Count: 10, Neg. LLF: 146.8988316833691
Iteration: 2, Func. Count: 19, Neg. LLF: 149.10517234132078
Iteration: 3, Func. Count: 29, Neg. LLF: 146.45543006215854
Iteration: 4, Func. Count: 39, Neg. LLF: 146.16013582760343
Iteration: 5, Func. Count: 48, Neg. LLF: 147.67736101240422
Iteration: 6, Func. Count: 58, Neg. LLF: 146.0644478309671
Iteration: 7, Func. Count: 68, Neg. LLF: 146.03603774010176
Iteration: 8, Func. Count: 77, Neg. LLF: 146.0359643500615
Iteration: 9, Func. Count: 86, Neg. LLF: 146.03596235386632
Iteration: 10, Func. Count: 94, Neg. LLF: 146.0359623425516
Optimization terminated successfully (Exit mode 0)
Current function value: 146.03596235386632
Iterations: 10
Function evaluations: 94
Gradient evaluations: 10
Iteration: 1, Func. Count: 11, Neg. LLF: 150.88313655483952
Iteration: 2, Func. Count: 22, Neg. LLF: 164.88112470154536
Iteration: 3, Func. Count: 33, Neg. LLF: 151.67910429350192
Iteration: 4, Func. Count: 44, Neg. LLF: 150.27035579183055
Iteration: 5, Func. Count: 56, Neg. LLF: 149.97289603501068
Iteration: 6, Func. Count: 67, Neg. LLF: 148.87380146756894
Iteration: 7, Func. Count: 78, Neg. LLF: 148.76458721081525
Iteration: 8, Func. Count: 89, Neg. LLF: 148.65681724167763
Iteration: 9, Func. Count: 99, Neg. LLF: 148.6091759674052
Iteration: 10, Func. Count: 109, Neg. LLF: 148.59038532880584
Iteration: 11, Func. Count: 119, Neg. LLF: 148.59191569225197
Iteration: 12, Func. Count: 130, Neg. LLF: 148.58215578591532
Iteration: 13, Func. Count: 141, Neg. LLF: 148.57663752870224
Iteration: 14, Func. Count: 151, Neg. LLF: 148.57661683411538
Iteration: 15, Func. Count: 161, Neg. LLF: 148.57661596422165
Optimization terminated successfully (Exit mode 0)
Current function value: 148.57661596422165
Iterations: 15
Function evaluations: 161
Gradient evaluations: 15
Iteration: 1, Func. Count: 12, Neg. LLF: 156.41023846375703
Iteration: 2, Func. Count: 26, Neg. LLF: 154.8887767389457
Iteration: 3, Func. Count: 38, Neg. LLF: 149.63858182651765
Iteration: 4, Func. Count: 49, Neg. LLF: 148.48163672174076
Iteration: 5, Func. Count: 60, Neg. LLF: 147.35376373609208
Iteration: 6, Func. Count: 71, Neg. LLF: 147.46192239075472
Iteration: 7, Func. Count: 83, Neg. LLF: 150.89059803686823
Iteration: 8, Func. Count: 95, Neg. LLF: 146.40516628599207
Iteration: 9, Func. Count: 106, Neg. LLF: 146.1640216439345
Iteration: 10, Func. Count: 117, Neg. LLF: 146.11233079731508
Iteration: 11, Func. Count: 128, Neg. LLF: 146.08226604655871
Iteration: 12, Func. Count: 139, Neg. LLF: 146.0702456979101
Iteration: 13, Func. Count: 150, Neg. LLF: 146.05453843102816
Iteration: 14, Func. Count: 161, Neg. LLF: 146.0446620082554
Iteration: 15, Func. Count: 172, Neg. LLF: 146.03627588436382
Iteration: 16, Func. Count: 183, Neg. LLF: 146.03597492573445
Iteration: 17, Func. Count: 194, Neg. LLF: 146.03596235040027
Iteration: 18, Func. Count: 204, Neg. LLF: 146.03596234020785
Optimization terminated successfully (Exit mode 0)
Current function value: 146.03596235040027
Iterations: 18
Function evaluations: 204
Gradient evaluations: 18
Iteration: 1, Func. Count: 13, Neg. LLF: 157.4330574512687
Iteration: 2, Func. Count: 28, Neg. LLF: 154.79743680984342
Iteration: 3, Func. Count: 41, Neg. LLF: 150.1150171616487
Iteration: 4, Func. Count: 54, Neg. LLF: 150.11002909296784
Iteration: 5, Func. Count: 68, Neg. LLF: 150.04943491218222
Iteration: 6, Func. Count: 80, Neg. LLF: 150.13411258498851
Iteration: 7, Func. Count: 93, Neg. LLF: 149.9910425893616
Iteration: 8, Func. Count: 105, Neg. LLF: 149.667584698366
Iteration: 9, Func. Count: 117, Neg. LLF: 150.59737451004696
Iteration: 10, Func. Count: 130, Neg. LLF: 149.55867281740103
Iteration: 11, Func. Count: 142, Neg. LLF: 149.50060870797577
Iteration: 12, Func. Count: 154, Neg. LLF: 149.4334433675803
Iteration: 13, Func. Count: 166, Neg. LLF: 149.17338424103573
Iteration: 14, Func. Count: 178, Neg. LLF: 148.98406370120856
Iteration: 15, Func. Count: 190, Neg. LLF: 148.8412460189511
Iteration: 16, Func. Count: 202, Neg. LLF: 148.6585371064236
Iteration: 17, Func. Count: 214, Neg. LLF: 148.60789615877863
Iteration: 18, Func. Count: 226, Neg. LLF: 148.59093255628292
Iteration: 19, Func. Count: 238, Neg. LLF: 148.58396795508102
Iteration: 20, Func. Count: 250, Neg. LLF: 148.57832379111377
Iteration: 21, Func. Count: 262, Neg. LLF: 148.576769733915
Iteration: 22, Func. Count: 274, Neg. LLF: 148.57664417525157
Iteration: 23, Func. Count: 286, Neg. LLF: 148.57662037971787
Iteration: 24, Func. Count: 298, Neg. LLF: 148.57661585075866
Iteration: 25, Func. Count: 309, Neg. LLF: 148.5766159462427
Optimization terminated successfully (Exit mode 0)
Current function value: 148.57661585075866
Iterations: 25
Function evaluations: 309
Gradient evaluations: 25
Iteration: 1, Func. Count: 14, Neg. LLF: 157.46234463247464
Iteration: 2, Func. Count: 30, Neg. LLF: 154.61693983484304
Iteration: 3, Func. Count: 44, Neg. LLF: 149.6678780496465
Iteration: 4, Func. Count: 57, Neg. LLF: 149.62979343985467
Iteration: 5, Func. Count: 70, Neg. LLF: 150.07293352939197
Iteration: 6, Func. Count: 87, Neg. LLF: 150.58498817628347
Iteration: 7, Func. Count: 101, Neg. LLF: 149.2186365899988
Iteration: 8, Func. Count: 114, Neg. LLF: 149.0895061515013
Iteration: 9, Func. Count: 127, Neg. LLF: 149.01926673916677
Iteration: 10, Func. Count: 140, Neg. LLF: 148.98159441278506
Iteration: 11, Func. Count: 153, Neg. LLF: 148.93778632964515
Iteration: 12, Func. Count: 166, Neg. LLF: 148.9009627787691
Iteration: 13, Func. Count: 179, Neg. LLF: 148.86579969086264
Iteration: 14, Func. Count: 192, Neg. LLF: 148.84129266081382
Iteration: 15, Func. Count: 205, Neg. LLF: 148.8178199907838
Iteration: 16, Func. Count: 218, Neg. LLF: 148.79694171563983
Iteration: 17, Func. Count: 231, Neg. LLF: 148.79521115347777
Iteration: 18, Func. Count: 244, Neg. LLF: 148.79500718062164
Iteration: 19, Func. Count: 257, Neg. LLF: 148.79497587827947
Iteration: 20, Func. Count: 270, Neg. LLF: 148.79497134483606
Iteration: 21, Func. Count: 283, Neg. LLF: 148.79785600493034
Optimization terminated successfully (Exit mode 0)
Current function value: 148.79497131336407
Iterations: 22
Function evaluations: 285
Gradient evaluations: 21
Iteration: 1, Func. Count: 11, Neg. LLF: 146.62798709196005
Iteration: 2, Func. Count: 21, Neg. LLF: 149.26104200751283
Iteration: 3, Func. Count: 33, Neg. LLF: 150.75578627470767
Iteration: 4, Func. Count: 44, Neg. LLF: 146.32020029677867
Iteration: 5, Func. Count: 54, Neg. LLF: 146.35748603722845
Iteration: 6, Func. Count: 65, Neg. LLF: 146.13217895908653
Iteration: 7, Func. Count: 75, Neg. LLF: 146.04660436915034
Iteration: 8, Func. Count: 85, Neg. LLF: 146.03619556309556
Iteration: 9, Func. Count: 95, Neg. LLF: 146.03596314819285
Iteration: 10, Func. Count: 105, Neg. LLF: 146.03596224738033
Optimization terminated successfully (Exit mode 0)
Current function value: 146.03596224738033
Iterations: 10
Function evaluations: 105
Gradient evaluations: 10
Iteration: 1, Func. Count: 12, Neg. LLF: 154.61787019543095
Iteration: 2, Func. Count: 24, Neg. LLF: 165.69479211632327
Iteration: 3, Func. Count: 36, Neg. LLF: 154.52080987838747
Iteration: 4, Func. Count: 48, Neg. LLF: 153.91104387339522
Iteration: 5, Func. Count: 61, Neg. LLF: 150.09348328942338
Iteration: 6, Func. Count: 73, Neg. LLF: 148.7723710950542
Iteration: 7, Func. Count: 84, Neg. LLF: 148.70685978427943
Iteration: 8, Func. Count: 95, Neg. LLF: 149.1255191712412
Iteration: 9, Func. Count: 108, Neg. LLF: 148.68808380582692
Iteration: 10, Func. Count: 119, Neg. LLF: 148.64982373727983
Iteration: 11, Func. Count: 130, Neg. LLF: 148.61204714228248
Iteration: 12, Func. Count: 141, Neg. LLF: 148.58385664113334
Iteration: 13, Func. Count: 152, Neg. LLF: 148.57732257298042
Iteration: 14, Func. Count: 163, Neg. LLF: 148.57663866049475
Iteration: 15, Func. Count: 174, Neg. LLF: 148.57661816062785
Iteration: 16, Func. Count: 185, Neg. LLF: 148.57661590496258
Iteration: 17, Func. Count: 195, Neg. LLF: 148.57661590490278
Optimization terminated successfully (Exit mode 0)
Current function value: 148.57661590496258
Iterations: 17
Function evaluations: 195
Gradient evaluations: 17
Iteration: 1, Func. Count: 13, Neg. LLF: 154.16962523849736
Iteration: 2, Func. Count: 28, Neg. LLF: 153.08962564185342
Iteration: 3, Func. Count: 41, Neg. LLF: 150.15453673467172
Iteration: 4, Func. Count: 53, Neg. LLF: 149.8469177450235
Iteration: 5, Func. Count: 65, Neg. LLF: 151.99017617666743
Iteration: 6, Func. Count: 78, Neg. LLF: 149.59287300196337
Iteration: 7, Func. Count: 90, Neg. LLF: 148.57063533696558
Iteration: 8, Func. Count: 102, Neg. LLF: 146.8643350734593
Iteration: 9, Func. Count: 114, Neg. LLF: 146.51246348513138
Iteration: 10, Func. Count: 126, Neg. LLF: 146.84783543596103
Iteration: 11, Func. Count: 139, Neg. LLF: 146.23866256321426
Iteration: 12, Func. Count: 151, Neg. LLF: 146.2013945861497
Iteration: 13, Func. Count: 163, Neg. LLF: 146.11594713556235
Iteration: 14, Func. Count: 175, Neg. LLF: 146.08137629134245
Iteration: 15, Func. Count: 187, Neg. LLF: 146.04940045139537
Iteration: 16, Func. Count: 199, Neg. LLF: 146.04199699084796
Iteration: 17, Func. Count: 211, Neg. LLF: 146.03886070376316
Iteration: 18, Func. Count: 223, Neg. LLF: 146.0373781031295
Iteration: 19, Func. Count: 235, Neg. LLF: 146.03611122413434
Iteration: 20, Func. Count: 247, Neg. LLF: 146.03597392562244
Iteration: 21, Func. Count: 259, Neg. LLF: 146.03596236154343
Iteration: 22, Func. Count: 270, Neg. LLF: 146.0359623513446
Optimization terminated successfully (Exit mode 0)
Current function value: 146.03596236154343
Iterations: 22
Function evaluations: 270
Gradient evaluations: 22
Iteration: 1, Func. Count: 14, Neg. LLF: 157.1780779884075
Iteration: 2, Func. Count: 30, Neg. LLF: 154.7456479162198
Iteration: 3, Func. Count: 44, Neg. LLF: 149.7768235167529
Iteration: 4, Func. Count: 57, Neg. LLF: 148.68211699395312
Iteration: 5, Func. Count: 70, Neg. LLF: 147.4755965729359
Iteration: 6, Func. Count: 83, Neg. LLF: 147.28088660793688
Iteration: 7, Func. Count: 96, Neg. LLF: 146.61912450152937
Iteration: 8, Func. Count: 109, Neg. LLF: 146.37063792553823
Iteration: 9, Func. Count: 122, Neg. LLF: 146.13404130489758
Iteration: 10, Func. Count: 135, Neg. LLF: 146.06476707931776
Iteration: 11, Func. Count: 148, Neg. LLF: 146.0528266565432
Iteration: 12, Func. Count: 161, Neg. LLF: 146.04865331341207
Iteration: 13, Func. Count: 174, Neg. LLF: 146.04095598268788
Iteration: 14, Func. Count: 187, Neg. LLF: 146.0364267992978
Iteration: 15, Func. Count: 200, Neg. LLF: 146.0359967321002
Iteration: 16, Func. Count: 213, Neg. LLF: 146.0359622940643
Iteration: 17, Func. Count: 225, Neg. LLF: 146.03596237746186
Optimization terminated successfully (Exit mode 0)
Current function value: 146.0359622940643
Iterations: 17
Function evaluations: 225
Gradient evaluations: 17
Iteration: 1, Func. Count: 15, Neg. LLF: 157.1468744430182
Iteration: 2, Func. Count: 32, Neg. LLF: 154.50112225151017
Iteration: 3, Func. Count: 47, Neg. LLF: 149.9103845972481
Iteration: 4, Func. Count: 61, Neg. LLF: 149.16524030241106
Iteration: 5, Func. Count: 75, Neg. LLF: 148.2208953574684
Iteration: 6, Func. Count: 89, Neg. LLF: 150.4694236049593
Iteration: 7, Func. Count: 106, Neg. LLF: 147.57193627712792
Iteration: 8, Func. Count: 120, Neg. LLF: 147.2819055157789
Iteration: 9, Func. Count: 134, Neg. LLF: 147.1287966706575
Iteration: 10, Func. Count: 148, Neg. LLF: 147.06591625677166
Iteration: 11, Func. Count: 162, Neg. LLF: 146.74520486776453
Iteration: 12, Func. Count: 176, Neg. LLF: 147.38481607202507
Iteration: 13, Func. Count: 191, Neg. LLF: 146.36680127727203
Iteration: 14, Func. Count: 205, Neg. LLF: 146.2519103889965
Iteration: 15, Func. Count: 219, Neg. LLF: 146.0819792204822
Iteration: 16, Func. Count: 233, Neg. LLF: 146.06270180031535
Iteration: 17, Func. Count: 247, Neg. LLF: 146.05293695119693
Iteration: 18, Func. Count: 261, Neg. LLF: 146.0362492438589
Iteration: 19, Func. Count: 275, Neg. LLF: 146.0351443732166
Iteration: 20, Func. Count: 289, Neg. LLF: 146.03492361375407
Iteration: 21, Func. Count: 303, Neg. LLF: 146.03492170189887
Iteration: 22, Func. Count: 316, Neg. LLF: 146.03492167914683
Optimization terminated successfully (Exit mode 0)
Current function value: 146.03492170189887
Iterations: 22
Function evaluations: 316
Gradient evaluations: 22
Iteration: 1, Func. Count: 8, Neg. LLF: 148.6196870149302
Iteration: 2, Func. Count: 16, Neg. LLF: 150.06489602527216
Iteration: 3, Func. Count: 26, Neg. LLF: 151.58399463304926
Iteration: 4, Func. Count: 35, Neg. LLF: 148.87298734988187
Iteration: 5, Func. Count: 43, Neg. LLF: 147.37839376088698
Iteration: 6, Func. Count: 51, Neg. LLF: 147.18483955910477
Iteration: 7, Func. Count: 58, Neg. LLF: 147.64395128686468
Iteration: 8, Func. Count: 66, Neg. LLF: 147.17014438996208
Iteration: 9, Func. Count: 73, Neg. LLF: 147.16460992706942
Iteration: 10, Func. Count: 80, Neg. LLF: 147.1634783529697
Iteration: 11, Func. Count: 87, Neg. LLF: 147.1613663075918
Iteration: 12, Func. Count: 94, Neg. LLF: 147.16127312911266
Iteration: 13, Func. Count: 101, Neg. LLF: 147.16127028167006
Iteration: 14, Func. Count: 107, Neg. LLF: 147.16127028167443
Optimization terminated successfully (Exit mode 0)
Current function value: 147.16127028167006
Iterations: 14
Function evaluations: 107
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 149.53068755481561
Iteration: 2, Func. Count: 18, Neg. LLF: 151.4655513870848
Iteration: 3, Func. Count: 28, Neg. LLF: 149.86028223418145
Iteration: 4, Func. Count: 37, Neg. LLF: 149.92848185297788
Iteration: 5, Func. Count: 47, Neg. LLF: 147.18856050754698
Iteration: 6, Func. Count: 56, Neg. LLF: 147.16612117402866
Iteration: 7, Func. Count: 65, Neg. LLF: 148.45720576672403
Iteration: 8, Func. Count: 75, Neg. LLF: 147.15685407001575
Iteration: 9, Func. Count: 83, Neg. LLF: 147.1533997419218
Iteration: 10, Func. Count: 91, Neg. LLF: 147.14887992063802
Iteration: 11, Func. Count: 99, Neg. LLF: 147.14327166481974
Iteration: 12, Func. Count: 107, Neg. LLF: 147.14104892599377
Iteration: 13, Func. Count: 115, Neg. LLF: 147.14091298480082
Iteration: 14, Func. Count: 123, Neg. LLF: 147.14091124378155
Iteration: 15, Func. Count: 130, Neg. LLF: 147.1409112437763
Optimization terminated successfully (Exit mode 0)
Current function value: 147.14091124378155
Iterations: 15
Function evaluations: 130
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 148.4569253310137
Iteration: 2, Func. Count: 19, Neg. LLF: 148.9220512386791
Iteration: 3, Func. Count: 30, Neg. LLF: 152.85385127303113
Iteration: 4, Func. Count: 42, Neg. LLF: 161.20504097288992
Iteration: 5, Func. Count: 52, Neg. LLF: 151.7268813262959
Iteration: 6, Func. Count: 62, Neg. LLF: 156.53853781889475
Iteration: 7, Func. Count: 72, Neg. LLF: 147.37038205871536
Iteration: 8, Func. Count: 82, Neg. LLF: 147.1716805709913
Iteration: 9, Func. Count: 92, Neg. LLF: 147.04553173435957
Iteration: 10, Func. Count: 101, Neg. LLF: 147.02342331867746
Iteration: 11, Func. Count: 110, Neg. LLF: 148.04444473866394
Iteration: 12, Func. Count: 121, Neg. LLF: 146.99819414963298
Iteration: 13, Func. Count: 130, Neg. LLF: 146.95190288762828
Iteration: 14, Func. Count: 139, Neg. LLF: 146.94521142358747
Iteration: 15, Func. Count: 148, Neg. LLF: 146.94307586377306
Iteration: 16, Func. Count: 157, Neg. LLF: 146.9430429969384
Iteration: 17, Func. Count: 166, Neg. LLF: 146.94304103133888
Iteration: 18, Func. Count: 174, Neg. LLF: 146.94304103137088
Optimization terminated successfully (Exit mode 0)
Current function value: 146.94304103133888
Iterations: 18
Function evaluations: 174
Gradient evaluations: 18
Iteration: 1, Func. Count: 11, Neg. LLF: 148.48790820356015
Iteration: 2, Func. Count: 21, Neg. LLF: 148.76533900157162
Iteration: 3, Func. Count: 33, Neg. LLF: 152.84395479650914
Iteration: 4, Func. Count: 46, Neg. LLF: 161.8775313064922
Iteration: 5, Func. Count: 57, Neg. LLF: 151.69930668485637
Iteration: 6, Func. Count: 68, Neg. LLF: 156.7334516067704
Iteration: 7, Func. Count: 79, Neg. LLF: 147.3862685251276
Iteration: 8, Func. Count: 90, Neg. LLF: 147.2485061048792
Iteration: 9, Func. Count: 101, Neg. LLF: 147.04557573911038
Iteration: 10, Func. Count: 111, Neg. LLF: 147.02485361596413
Iteration: 11, Func. Count: 121, Neg. LLF: 148.0528902477496
Iteration: 12, Func. Count: 133, Neg. LLF: 146.99453431279272
Iteration: 13, Func. Count: 143, Neg. LLF: 146.9529045420431
Iteration: 14, Func. Count: 153, Neg. LLF: 146.9454623113429
Iteration: 15, Func. Count: 163, Neg. LLF: 146.94310225346203
Iteration: 16, Func. Count: 173, Neg. LLF: 146.94304276813713
Iteration: 17, Func. Count: 183, Neg. LLF: 146.94304106890317
Iteration: 18, Func. Count: 192, Neg. LLF: 146.94304116060735
Optimization terminated successfully (Exit mode 0)
Current function value: 146.94304106890317
Iterations: 18
Function evaluations: 192
Gradient evaluations: 18
Iteration: 1, Func. Count: 12, Neg. LLF: 148.4906308705206
Iteration: 2, Func. Count: 23, Neg. LLF: 148.6712075132757
Iteration: 3, Func. Count: 35, Neg. LLF: 152.93066798951338
Iteration: 4, Func. Count: 49, Neg. LLF: 160.13519235702404
Iteration: 5, Func. Count: 61, Neg. LLF: 151.81133400089465
Iteration: 6, Func. Count: 73, Neg. LLF: 156.53548729772749
Iteration: 7, Func. Count: 85, Neg. LLF: 147.43826326840582
Iteration: 8, Func. Count: 97, Neg. LLF: 147.3266807388053
Iteration: 9, Func. Count: 109, Neg. LLF: 147.09282543686365
Iteration: 10, Func. Count: 121, Neg. LLF: 147.02149141458372
Iteration: 11, Func. Count: 132, Neg. LLF: 148.8495551832436
Iteration: 12, Func. Count: 145, Neg. LLF: 146.99261557025213
Iteration: 13, Func. Count: 156, Neg. LLF: 146.9538202128635
Iteration: 14, Func. Count: 167, Neg. LLF: 146.9443059879402
Iteration: 15, Func. Count: 178, Neg. LLF: 146.94308836579023
Iteration: 16, Func. Count: 189, Neg. LLF: 146.94304333365125
Iteration: 17, Func. Count: 200, Neg. LLF: 146.94304101265533
Iteration: 18, Func. Count: 210, Neg. LLF: 146.94304116066863
Optimization terminated successfully (Exit mode 0)
Current function value: 146.94304101265533
Iterations: 18
Function evaluations: 210
Gradient evaluations: 18
Iteration: 1, Func. Count: 9, Neg. LLF: 151.81804356369648
Iteration: 2, Func. Count: 18, Neg. LLF: 157.91899899792597
Iteration: 3, Func. Count: 27, Neg. LLF: 147.61062715175825
Iteration: 4, Func. Count: 36, Neg. LLF: 147.57852621479648
Iteration: 5, Func. Count: 45, Neg. LLF: 168.26787143780348
Iteration: 6, Func. Count: 55, Neg. LLF: 147.17240979415305
Iteration: 7, Func. Count: 63, Neg. LLF: 147.5376663593885
Iteration: 8, Func. Count: 72, Neg. LLF: 147.18612060044825
Iteration: 9, Func. Count: 81, Neg. LLF: 147.15104712244454
Iteration: 10, Func. Count: 89, Neg. LLF: 147.15013580514588
Iteration: 11, Func. Count: 97, Neg. LLF: 147.14927845065526
Iteration: 12, Func. Count: 105, Neg. LLF: 147.14888733992157
Iteration: 13, Func. Count: 113, Neg. LLF: 147.1488361483462
Iteration: 14, Func. Count: 121, Neg. LLF: 147.14883399980087
Iteration: 15, Func. Count: 128, Neg. LLF: 147.14883399976014
Optimization terminated successfully (Exit mode 0)
Current function value: 147.14883399980087
Iterations: 15
Function evaluations: 128
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 149.57472974670077
Iteration: 2, Func. Count: 20, Neg. LLF: 151.42419431074492
Iteration: 3, Func. Count: 31, Neg. LLF: 149.79700915185404
Iteration: 4, Func. Count: 41, Neg. LLF: 148.3792269303025
Iteration: 5, Func. Count: 52, Neg. LLF: 147.16048864593688
Iteration: 6, Func. Count: 61, Neg. LLF: 147.134572705883
Iteration: 7, Func. Count: 70, Neg. LLF: 147.47947019917063
Iteration: 8, Func. Count: 80, Neg. LLF: 147.12005775362346
Iteration: 9, Func. Count: 89, Neg. LLF: 147.1188983114273
Iteration: 10, Func. Count: 98, Neg. LLF: 147.1183781910375
Iteration: 11, Func. Count: 107, Neg. LLF: 147.11822210497903
Iteration: 12, Func. Count: 116, Neg. LLF: 147.11818923709137
Iteration: 13, Func. Count: 125, Neg. LLF: 147.11808453499023
Iteration: 14, Func. Count: 134, Neg. LLF: 147.1180224257675
Iteration: 15, Func. Count: 143, Neg. LLF: 147.11797483952407
Iteration: 16, Func. Count: 152, Neg. LLF: 147.11796745036787
Iteration: 17, Func. Count: 161, Neg. LLF: 147.11796680508002
Optimization terminated successfully (Exit mode 0)
Current function value: 147.11796680508002
Iterations: 17
Function evaluations: 161
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 148.5013342981987
Iteration: 2, Func. Count: 21, Neg. LLF: 148.9137356508757
Iteration: 3, Func. Count: 33, Neg. LLF: 153.02817720645146
Iteration: 4, Func. Count: 46, Neg. LLF: 160.66501359627057
Iteration: 5, Func. Count: 57, Neg. LLF: 152.81559441084366
Iteration: 6, Func. Count: 68, Neg. LLF: 159.02038840929555
Iteration: 7, Func. Count: 79, Neg. LLF: 147.7861137291511
Iteration: 8, Func. Count: 90, Neg. LLF: 147.4574288503016
Iteration: 9, Func. Count: 101, Neg. LLF: 147.156065458362
Iteration: 10, Func. Count: 112, Neg. LLF: 147.02951408402478
Iteration: 11, Func. Count: 123, Neg. LLF: 146.9882237376779
Iteration: 12, Func. Count: 133, Neg. LLF: 146.9353335985534
Iteration: 13, Func. Count: 143, Neg. LLF: 146.91648620665168
Iteration: 14, Func. Count: 153, Neg. LLF: 146.9108096796322
Iteration: 15, Func. Count: 163, Neg. LLF: 146.91038930401848
Iteration: 16, Func. Count: 173, Neg. LLF: 146.91037063902985
Iteration: 17, Func. Count: 182, Neg. LLF: 146.910370639086
Optimization terminated successfully (Exit mode 0)
Current function value: 146.91037063902985
Iterations: 17
Function evaluations: 182
Gradient evaluations: 17
Iteration: 1, Func. Count: 12, Neg. LLF: 148.5334649967455
Iteration: 2, Func. Count: 23, Neg. LLF: 148.76276031574352
Iteration: 3, Func. Count: 36, Neg. LLF: 153.00950900226619
Iteration: 4, Func. Count: 50, Neg. LLF: 161.1245134005298
Iteration: 5, Func. Count: 62, Neg. LLF: 152.8392878617592
Iteration: 6, Func. Count: 74, Neg. LLF: 158.5885029729716
Iteration: 7, Func. Count: 86, Neg. LLF: 148.02399912477455
Iteration: 8, Func. Count: 98, Neg. LLF: 147.53293792213407
Iteration: 9, Func. Count: 110, Neg. LLF: 147.14835451703192
Iteration: 10, Func. Count: 122, Neg. LLF: 147.03158617362251
Iteration: 11, Func. Count: 134, Neg. LLF: 146.9889643844746
Iteration: 12, Func. Count: 145, Neg. LLF: 146.9293649561029
Iteration: 13, Func. Count: 156, Neg. LLF: 146.91515621054444
Iteration: 14, Func. Count: 167, Neg. LLF: 146.91060438937373
Iteration: 15, Func. Count: 178, Neg. LLF: 146.91038235865503
Iteration: 16, Func. Count: 189, Neg. LLF: 146.91037045803796
Iteration: 17, Func. Count: 199, Neg. LLF: 146.9103705515023
Optimization terminated successfully (Exit mode 0)
Current function value: 146.91037045803796
Iterations: 17
Function evaluations: 199
Gradient evaluations: 17
Iteration: 1, Func. Count: 13, Neg. LLF: 149.92783571305026
Iteration: 2, Func. Count: 26, Neg. LLF: 147.9554876100852
Iteration: 3, Func. Count: 39, Neg. LLF: 150.61537807347955
Iteration: 4, Func. Count: 53, Neg. LLF: 148.39591840144436
Iteration: 5, Func. Count: 66, Neg. LLF: 163.15206824953452
Iteration: 6, Func. Count: 79, Neg. LLF: 147.53777181639785
Iteration: 7, Func. Count: 92, Neg. LLF: 147.3699540359783
Iteration: 8, Func. Count: 105, Neg. LLF: 147.40358509883927
Iteration: 9, Func. Count: 119, Neg. LLF: 147.294019409519
Iteration: 10, Func. Count: 132, Neg. LLF: 146.98314633908078
Iteration: 11, Func. Count: 144, Neg. LLF: 146.96439993668898
Iteration: 12, Func. Count: 156, Neg. LLF: 146.9331843838761
Iteration: 13, Func. Count: 168, Neg. LLF: 146.9122826816506
Iteration: 14, Func. Count: 180, Neg. LLF: 146.91043506479198
Iteration: 15, Func. Count: 192, Neg. LLF: 146.91037279388516
Iteration: 16, Func. Count: 204, Neg. LLF: 146.9103701855748
Iteration: 17, Func. Count: 215, Neg. LLF: 146.91037033338677
Optimization terminated successfully (Exit mode 0)
Current function value: 146.9103701855748
Iterations: 17
Function evaluations: 215
Gradient evaluations: 17
Iteration: 1, Func. Count: 10, Neg. LLF: 149.62500444005016
Iteration: 2, Func. Count: 20, Neg. LLF: 151.32585459123976
Iteration: 3, Func. Count: 31, Neg. LLF: 148.22024894443854
Iteration: 4, Func. Count: 41, Neg. LLF: 147.43820426638874
Iteration: 5, Func. Count: 51, Neg. LLF: 147.33394342898086
Iteration: 6, Func. Count: 61, Neg. LLF: 147.74156728552265
Iteration: 7, Func. Count: 71, Neg. LLF: 146.91163437621032
Iteration: 8, Func. Count: 80, Neg. LLF: 147.47971663576237
Iteration: 9, Func. Count: 90, Neg. LLF: 147.02696944801647
Iteration: 10, Func. Count: 100, Neg. LLF: 146.88566373636277
Iteration: 11, Func. Count: 109, Neg. LLF: 146.8833894495612
Iteration: 12, Func. Count: 118, Neg. LLF: 146.88225311370797
Iteration: 13, Func. Count: 127, Neg. LLF: 146.88069988342187
Iteration: 14, Func. Count: 136, Neg. LLF: 146.8804336614487
Iteration: 15, Func. Count: 145, Neg. LLF: 146.88038379404387
Iteration: 16, Func. Count: 154, Neg. LLF: 146.88038204677736
Iteration: 17, Func. Count: 162, Neg. LLF: 146.88038204681783
Optimization terminated successfully (Exit mode 0)
Current function value: 146.88038204677736
Iterations: 17
Function evaluations: 162
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 149.50503925880133
Iteration: 2, Func. Count: 22, Neg. LLF: 149.53047794023473
Iteration: 3, Func. Count: 34, Neg. LLF: 149.64467216599422
Iteration: 4, Func. Count: 45, Neg. LLF: 147.2851335790447
Iteration: 5, Func. Count: 56, Neg. LLF: 147.7331462680384
Iteration: 6, Func. Count: 67, Neg. LLF: 146.84757411248665
Iteration: 7, Func. Count: 77, Neg. LLF: 147.59284699636407
Iteration: 8, Func. Count: 89, Neg. LLF: 146.84595957304535
Iteration: 9, Func. Count: 100, Neg. LLF: 146.84157201447937
Iteration: 10, Func. Count: 111, Neg. LLF: 146.83905883713192
Iteration: 11, Func. Count: 121, Neg. LLF: 146.83550805688253
Iteration: 12, Func. Count: 131, Neg. LLF: 146.8295249814718
Iteration: 13, Func. Count: 141, Neg. LLF: 146.82928066803115
Iteration: 14, Func. Count: 151, Neg. LLF: 146.8292741469923
Iteration: 15, Func. Count: 160, Neg. LLF: 146.82927414700677
Optimization terminated successfully (Exit mode 0)
Current function value: 146.8292741469923
Iterations: 15
Function evaluations: 160
Gradient evaluations: 15
Iteration: 1, Func. Count: 12, Neg. LLF: 148.46943132994474
Iteration: 2, Func. Count: 23, Neg. LLF: 148.13838305555765
Iteration: 3, Func. Count: 36, Neg. LLF: 152.67132450856226
Iteration: 4, Func. Count: 50, Neg. LLF: 161.75084440286068
Iteration: 5, Func. Count: 62, Neg. LLF: 155.58867038593863
Iteration: 6, Func. Count: 74, Neg. LLF: 153.43482702477846
Iteration: 7, Func. Count: 86, Neg. LLF: 151.64582853768076
Iteration: 8, Func. Count: 98, Neg. LLF: 149.68751011063839
Iteration: 9, Func. Count: 110, Neg. LLF: 146.86506501120132
Iteration: 10, Func. Count: 121, Neg. LLF: 146.86668458063383
Iteration: 11, Func. Count: 133, Neg. LLF: 146.8287349698216
Iteration: 12, Func. Count: 145, Neg. LLF: 146.78253300030084
Iteration: 13, Func. Count: 156, Neg. LLF: 146.75478313989026
Iteration: 14, Func. Count: 167, Neg. LLF: 146.74209926146833
Iteration: 15, Func. Count: 178, Neg. LLF: 146.72967607038717
Iteration: 16, Func. Count: 189, Neg. LLF: 146.72101775662654
Iteration: 17, Func. Count: 200, Neg. LLF: 146.72005106190738
Iteration: 18, Func. Count: 211, Neg. LLF: 146.7199292962649
Iteration: 19, Func. Count: 222, Neg. LLF: 146.71992628970565
Iteration: 20, Func. Count: 232, Neg. LLF: 146.71992628973766
Optimization terminated successfully (Exit mode 0)
Current function value: 146.71992628970565
Iterations: 20
Function evaluations: 232
Gradient evaluations: 20
Iteration: 1, Func. Count: 13, Neg. LLF: 148.50488829809387
Iteration: 2, Func. Count: 25, Neg. LLF: 148.1257617603574
Iteration: 3, Func. Count: 38, Neg. LLF: 153.24455324384132
Iteration: 4, Func. Count: 53, Neg. LLF: 165.8691983566563
Iteration: 5, Func. Count: 66, Neg. LLF: 155.49707786369007
Iteration: 6, Func. Count: 79, Neg. LLF: 152.85133947091273
Iteration: 7, Func. Count: 92, Neg. LLF: 150.75250772153106
Iteration: 8, Func. Count: 105, Neg. LLF: 152.64808970812038
Iteration: 9, Func. Count: 118, Neg. LLF: 146.98895856263883
Iteration: 10, Func. Count: 131, Neg. LLF: 146.9418782917848
Iteration: 11, Func. Count: 144, Neg. LLF: 146.78054290791022
Iteration: 12, Func. Count: 156, Neg. LLF: 146.75835104240255
Iteration: 13, Func. Count: 168, Neg. LLF: 146.7516447891702
Iteration: 14, Func. Count: 180, Neg. LLF: 146.7378216168023
Iteration: 15, Func. Count: 192, Neg. LLF: 146.72236842633984
Iteration: 16, Func. Count: 204, Neg. LLF: 146.72007656566277
Iteration: 17, Func. Count: 216, Neg. LLF: 146.71992672833434
Iteration: 18, Func. Count: 228, Neg. LLF: 146.71992604034844
Optimization terminated successfully (Exit mode 0)
Current function value: 146.71992604034844
Iterations: 18
Function evaluations: 228
Gradient evaluations: 18
Iteration: 1, Func. Count: 14, Neg. LLF: 148.50676549377712
Iteration: 2, Func. Count: 27, Neg. LLF: 148.1326063996254
Iteration: 3, Func. Count: 41, Neg. LLF: 153.09715675372988
Iteration: 4, Func. Count: 57, Neg. LLF: 165.8509801033621
Iteration: 5, Func. Count: 71, Neg. LLF: 155.48090020369835
Iteration: 6, Func. Count: 85, Neg. LLF: 152.9425405843763
Iteration: 7, Func. Count: 99, Neg. LLF: 150.01238030545042
Iteration: 8, Func. Count: 113, Neg. LLF: 157.05164354242189
Iteration: 9, Func. Count: 127, Neg. LLF: 146.99094400807746
Iteration: 10, Func. Count: 141, Neg. LLF: 146.87842338337143
Iteration: 11, Func. Count: 155, Neg. LLF: 146.77538872694754
Iteration: 12, Func. Count: 168, Neg. LLF: 146.75721974428618
Iteration: 13, Func. Count: 181, Neg. LLF: 146.7503175456181
Iteration: 14, Func. Count: 194, Neg. LLF: 146.73215186888586
Iteration: 15, Func. Count: 207, Neg. LLF: 146.7214550177866
Iteration: 16, Func. Count: 220, Neg. LLF: 146.7199654573177
Iteration: 17, Func. Count: 233, Neg. LLF: 146.71992656951818
Iteration: 18, Func. Count: 246, Neg. LLF: 146.71992602411675
Optimization terminated successfully (Exit mode 0)
Current function value: 146.71992602411675
Iterations: 18
Function evaluations: 246
Gradient evaluations: 18
Iteration: 1, Func. Count: 11, Neg. LLF: 148.78301133683595
Iteration: 2, Func. Count: 22, Neg. LLF: 147.4678796883477
Iteration: 3, Func. Count: 34, Neg. LLF: 147.95845033980956
Iteration: 4, Func. Count: 45, Neg. LLF: 149.9878981291299
Iteration: 5, Func. Count: 58, Neg. LLF: 146.40869927135645
Iteration: 6, Func. Count: 68, Neg. LLF: 147.8664248153933
Iteration: 7, Func. Count: 79, Neg. LLF: 146.37067154389294
Iteration: 8, Func. Count: 89, Neg. LLF: 146.35437714455054
Iteration: 9, Func. Count: 99, Neg. LLF: 146.33954972250422
Iteration: 10, Func. Count: 109, Neg. LLF: 146.32984313043028
Iteration: 11, Func. Count: 119, Neg. LLF: 146.32596553707364
Iteration: 12, Func. Count: 129, Neg. LLF: 146.32460526457797
Iteration: 13, Func. Count: 139, Neg. LLF: 146.32451615013636
Iteration: 14, Func. Count: 149, Neg. LLF: 146.32451489360693
Iteration: 15, Func. Count: 158, Neg. LLF: 146.3245148936125
Optimization terminated successfully (Exit mode 0)
Current function value: 146.32451489360693
Iterations: 15
Function evaluations: 158
Gradient evaluations: 15
Iteration: 1, Func. Count: 12, Neg. LLF: 149.4811386218662
Iteration: 2, Func. Count: 24, Neg. LLF: 148.4156446615871
Iteration: 3, Func. Count: 36, Neg. LLF: 152.219641883632
Iteration: 4, Func. Count: 50, Neg. LLF: 171.6997947355459
Iteration: 5, Func. Count: 62, Neg. LLF: 154.6414733753486
Iteration: 6, Func. Count: 74, Neg. LLF: 147.45130832961178
Iteration: 7, Func. Count: 86, Neg. LLF: 146.3714241331784
Iteration: 8, Func. Count: 97, Neg. LLF: 148.25022855251018
Iteration: 9, Func. Count: 110, Neg. LLF: 146.35409087245435
Iteration: 10, Func. Count: 121, Neg. LLF: 146.34940546756079
Iteration: 11, Func. Count: 132, Neg. LLF: 146.346797406033
Iteration: 12, Func. Count: 143, Neg. LLF: 146.33825386321422
Iteration: 13, Func. Count: 154, Neg. LLF: 146.328944869215
Iteration: 14, Func. Count: 165, Neg. LLF: 146.32121257407553
Iteration: 15, Func. Count: 176, Neg. LLF: 146.31916449601823
Iteration: 16, Func. Count: 187, Neg. LLF: 146.31906389556625
Iteration: 17, Func. Count: 198, Neg. LLF: 146.3190534263533
Iteration: 18, Func. Count: 209, Neg. LLF: 146.3190519710753
Iteration: 19, Func. Count: 219, Neg. LLF: 146.31905197109367
Optimization terminated successfully (Exit mode 0)
Current function value: 146.3190519710753
Iterations: 19
Function evaluations: 219
Gradient evaluations: 19
Iteration: 1, Func. Count: 13, Neg. LLF: 148.45699972829166
Iteration: 2, Func. Count: 25, Neg. LLF: 148.1329096758812
Iteration: 3, Func. Count: 39, Neg. LLF: 155.7974206787288
Iteration: 4, Func. Count: 54, Neg. LLF: 157.414864197618
Iteration: 5, Func. Count: 67, Neg. LLF: 154.89958808441548
Iteration: 6, Func. Count: 80, Neg. LLF: 151.75794304137438
Iteration: 7, Func. Count: 93, Neg. LLF: 155.83116555193226
Iteration: 8, Func. Count: 106, Neg. LLF: 146.67048637885955
Iteration: 9, Func. Count: 119, Neg. LLF: 146.4361968075485
Iteration: 10, Func. Count: 132, Neg. LLF: 146.32925423820708
Iteration: 11, Func. Count: 144, Neg. LLF: 147.34471653143973
Iteration: 12, Func. Count: 157, Neg. LLF: 146.2674509695296
Iteration: 13, Func. Count: 169, Neg. LLF: 146.2374210143927
Iteration: 14, Func. Count: 181, Neg. LLF: 146.2278488400635
Iteration: 15, Func. Count: 193, Neg. LLF: 146.21995617368682
Iteration: 16, Func. Count: 205, Neg. LLF: 146.21766657802095
Iteration: 17, Func. Count: 217, Neg. LLF: 146.21643339385702
Iteration: 18, Func. Count: 229, Neg. LLF: 146.2162644812611
Iteration: 19, Func. Count: 241, Neg. LLF: 146.216253274426
Iteration: 20, Func. Count: 252, Neg. LLF: 146.21625327437366
Optimization terminated successfully (Exit mode 0)
Current function value: 146.216253274426
Iterations: 20
Function evaluations: 252
Gradient evaluations: 20
Iteration: 1, Func. Count: 14, Neg. LLF: 148.48811421112288
Iteration: 2, Func. Count: 27, Neg. LLF: 147.72263745334746
Iteration: 3, Func. Count: 41, Neg. LLF: 162.7687266976483
Iteration: 4, Func. Count: 55, Neg. LLF: 155.11688111462934
Iteration: 5, Func. Count: 69, Neg. LLF: 147.07599577255255
Iteration: 6, Func. Count: 83, Neg. LLF: 150.80341696386057
Iteration: 7, Func. Count: 97, Neg. LLF: 146.70916505665377
Iteration: 8, Func. Count: 111, Neg. LLF: 146.4269629037143
Iteration: 9, Func. Count: 125, Neg. LLF: 146.49612861894448
Iteration: 10, Func. Count: 139, Neg. LLF: 146.26935161827342
Iteration: 11, Func. Count: 152, Neg. LLF: 147.323082967618
Iteration: 12, Func. Count: 167, Neg. LLF: 146.24887151484688
Iteration: 13, Func. Count: 180, Neg. LLF: 146.23591631034478
Iteration: 14, Func. Count: 193, Neg. LLF: 146.22254512020547
Iteration: 15, Func. Count: 206, Neg. LLF: 146.21662711782278
Iteration: 16, Func. Count: 219, Neg. LLF: 146.21630029754976
Iteration: 17, Func. Count: 232, Neg. LLF: 146.2162535311759
Iteration: 18, Func. Count: 245, Neg. LLF: 146.21625293183504
Optimization terminated successfully (Exit mode 0)
Current function value: 146.21625293183504
Iterations: 18
Function evaluations: 245
Gradient evaluations: 18
Iteration: 1, Func. Count: 15, Neg. LLF: 148.5003349292514
Iteration: 2, Func. Count: 29, Neg. LLF: 147.38804661312378
Iteration: 3, Func. Count: 43, Neg. LLF: 159.47228028691703
Iteration: 4, Func. Count: 60, Neg. LLF: 164.2159070563972
Iteration: 5, Func. Count: 75, Neg. LLF: 153.98402855179955
Iteration: 6, Func. Count: 90, Neg. LLF: 148.22120801653995
Iteration: 7, Func. Count: 105, Neg. LLF: 151.19565137949292
Iteration: 8, Func. Count: 120, Neg. LLF: 147.85076432090284
Iteration: 9, Func. Count: 135, Neg. LLF: 146.44310735263608
Iteration: 10, Func. Count: 149, Neg. LLF: 146.38995847548637
Iteration: 11, Func. Count: 163, Neg. LLF: 147.20655451838715
Iteration: 12, Func. Count: 178, Neg. LLF: 146.60287930855625
Iteration: 13, Func. Count: 193, Neg. LLF: 146.27452683695137
Iteration: 14, Func. Count: 208, Neg. LLF: 146.24869098054236
Iteration: 15, Func. Count: 222, Neg. LLF: 146.2387190654437
Iteration: 16, Func. Count: 236, Neg. LLF: 146.2273135053012
Iteration: 17, Func. Count: 250, Neg. LLF: 146.21857456776735
Iteration: 18, Func. Count: 264, Neg. LLF: 146.21669395423424
Iteration: 19, Func. Count: 278, Neg. LLF: 146.21629068839093
Iteration: 20, Func. Count: 292, Neg. LLF: 146.2162532938748
Iteration: 21, Func. Count: 305, Neg. LLF: 146.21625345756448
Optimization terminated successfully (Exit mode 0)
Current function value: 146.2162532938748
Iterations: 21
Function evaluations: 305
Gradient evaluations: 21
Iteration: 1, Func. Count: 12, Neg. LLF: 145.79803454801979
Iteration: 2, Func. Count: 23, Neg. LLF: 147.35954722352736
Iteration: 3, Func. Count: 36, Neg. LLF: 155.18451069288804
Iteration: 4, Func. Count: 48, Neg. LLF: 147.27996506993162
Iteration: 5, Func. Count: 60, Neg. LLF: 146.12868978287074
Iteration: 6, Func. Count: 72, Neg. LLF: 144.3388799684346
Iteration: 7, Func. Count: 83, Neg. LLF: 144.16430944816554
Iteration: 8, Func. Count: 94, Neg. LLF: 146.2376624236988
Iteration: 9, Func. Count: 108, Neg. LLF: 144.09581523876216
Iteration: 10, Func. Count: 119, Neg. LLF: 143.9764196643676
Iteration: 11, Func. Count: 130, Neg. LLF: 144.419395493015
Iteration: 12, Func. Count: 142, Neg. LLF: 144.1312632001159
Iteration: 13, Func. Count: 154, Neg. LLF: 143.89572520374014
Iteration: 14, Func. Count: 165, Neg. LLF: 143.87492561223544
Iteration: 15, Func. Count: 176, Neg. LLF: 143.85400267901912
Iteration: 16, Func. Count: 187, Neg. LLF: 143.84968709862108
Iteration: 17, Func. Count: 198, Neg. LLF: 143.8492194638488
Iteration: 18, Func. Count: 209, Neg. LLF: 143.8491711250345
Iteration: 19, Func. Count: 220, Neg. LLF: 143.84916887985807
Iteration: 20, Func. Count: 230, Neg. LLF: 143.84916874129482
Optimization terminated successfully (Exit mode 0)
Current function value: 143.84916887985807
Iterations: 20
Function evaluations: 230
Gradient evaluations: 20
Iteration: 1, Func. Count: 13, Neg. LLF: 158.110534361202
Iteration: 2, Func. Count: 26, Neg. LLF: 148.20880371324262
Iteration: 3, Func. Count: 39, Neg. LLF: 148.23382157462146
Iteration: 4, Func. Count: 54, Neg. LLF: 144.78272657275238
Iteration: 5, Func. Count: 66, Neg. LLF: 160.20721722546457
Iteration: 6, Func. Count: 80, Neg. LLF: 154.96590529951075
Iteration: 7, Func. Count: 93, Neg. LLF: 145.0983246271802
Iteration: 8, Func. Count: 106, Neg. LLF: 144.01623708369831
Iteration: 9, Func. Count: 118, Neg. LLF: 143.90892238455655
Iteration: 10, Func. Count: 130, Neg. LLF: 144.38710382172442
Iteration: 11, Func. Count: 144, Neg. LLF: 143.85002562801046
Iteration: 12, Func. Count: 156, Neg. LLF: 143.8153553227086
Iteration: 13, Func. Count: 168, Neg. LLF: 143.80249766391614
Iteration: 14, Func. Count: 180, Neg. LLF: 143.79334118901724
Iteration: 15, Func. Count: 192, Neg. LLF: 143.7907438280663
Iteration: 16, Func. Count: 204, Neg. LLF: 143.78900596726774
Iteration: 17, Func. Count: 216, Neg. LLF: 143.7884190201687
Iteration: 18, Func. Count: 228, Neg. LLF: 143.78796895452857
Iteration: 19, Func. Count: 240, Neg. LLF: 143.78776411027278
Iteration: 20, Func. Count: 252, Neg. LLF: 143.78773457603288
Iteration: 21, Func. Count: 264, Neg. LLF: 143.78773312941019
Iteration: 22, Func. Count: 275, Neg. LLF: 143.78773312942226
Optimization terminated successfully (Exit mode 0)
Current function value: 143.78773312941019
Iterations: 22
Function evaluations: 275
Gradient evaluations: 22
Iteration: 1, Func. Count: 14, Neg. LLF: 145.29418463236416
Iteration: 2, Func. Count: 27, Neg. LLF: 147.02995822024693
Iteration: 3, Func. Count: 43, Neg. LLF: 158.8876003012479
Iteration: 4, Func. Count: 57, Neg. LLF: 147.45135700017065
Iteration: 5, Func. Count: 71, Neg. LLF: 147.38456912237095
Iteration: 6, Func. Count: 85, Neg. LLF: 148.34580581441466
Iteration: 7, Func. Count: 99, Neg. LLF: 147.71068303514997
Iteration: 8, Func. Count: 113, Neg. LLF: 144.52328298584513
Iteration: 9, Func. Count: 127, Neg. LLF: 147.16207728651258
Iteration: 10, Func. Count: 141, Neg. LLF: 143.99865042173425
Iteration: 11, Func. Count: 155, Neg. LLF: 143.89112056653232
Iteration: 12, Func. Count: 168, Neg. LLF: 162.899288178026
Iteration: 13, Func. Count: 182, Neg. LLF: 178.44063488224765
Iteration: 14, Func. Count: 197, Neg. LLF: 147.43906351321922
Iteration: 15, Func. Count: 211, Neg. LLF: 143.96386581220537
Iteration: 16, Func. Count: 225, Neg. LLF: 143.5261796514583
Iteration: 17, Func. Count: 238, Neg. LLF: 143.50267585889915
Iteration: 18, Func. Count: 251, Neg. LLF: 143.49971533779913
Iteration: 19, Func. Count: 264, Neg. LLF: 143.49951302104193
Iteration: 20, Func. Count: 277, Neg. LLF: 143.49950092406647
Iteration: 21, Func. Count: 290, Neg. LLF: 143.49949950309284
Iteration: 22, Func. Count: 302, Neg. LLF: 143.4994995030919
Optimization terminated successfully (Exit mode 0)
Current function value: 143.49949950309284
Iterations: 22
Function evaluations: 302
Gradient evaluations: 22
Iteration: 1, Func. Count: 15, Neg. LLF: 145.33391642800774
Iteration: 2, Func. Count: 29, Neg. LLF: 146.61210635304886
Iteration: 3, Func. Count: 45, Neg. LLF: 157.08664668667683
Iteration: 4, Func. Count: 60, Neg. LLF: 147.42872886944068
Iteration: 5, Func. Count: 75, Neg. LLF: 147.95277782742767
Iteration: 6, Func. Count: 90, Neg. LLF: 148.5305955841271
Iteration: 7, Func. Count: 105, Neg. LLF: 148.0368316166063
Iteration: 8, Func. Count: 120, Neg. LLF: 144.44490806036902
Iteration: 9, Func. Count: 135, Neg. LLF: 147.5737858786953
Iteration: 10, Func. Count: 150, Neg. LLF: 144.35692803725044
Iteration: 11, Func. Count: 165, Neg. LLF: 143.93767198766628
Iteration: 12, Func. Count: 180, Neg. LLF: 144.18213772323364
Iteration: 13, Func. Count: 195, Neg. LLF: 145.8912366181903
Iteration: 14, Func. Count: 210, Neg. LLF: 160.98693639976088
Iteration: 15, Func. Count: 225, Neg. LLF: 144.29495570744723
Iteration: 16, Func. Count: 240, Neg. LLF: 143.5956354377838
Iteration: 17, Func. Count: 254, Neg. LLF: 143.54297519793613
Iteration: 18, Func. Count: 268, Neg. LLF: 143.50544880616434
Iteration: 19, Func. Count: 282, Neg. LLF: 143.4996472223606
Iteration: 20, Func. Count: 296, Neg. LLF: 143.4995203414951
Iteration: 21, Func. Count: 310, Neg. LLF: 143.49950094201375
Iteration: 22, Func. Count: 324, Neg. LLF: 143.49949962416767
Iteration: 23, Func. Count: 337, Neg. LLF: 143.4994997097387
Optimization terminated successfully (Exit mode 0)
Current function value: 143.49949962416767
Iterations: 23
Function evaluations: 337
Gradient evaluations: 23
Iteration: 1, Func. Count: 16, Neg. LLF: 145.34296314642165
Iteration: 2, Func. Count: 31, Neg. LLF: 146.7526657503423
Iteration: 3, Func. Count: 48, Neg. LLF: 157.05685525878573
Iteration: 4, Func. Count: 64, Neg. LLF: 147.4161675779122
Iteration: 5, Func. Count: 80, Neg. LLF: 147.9655310554191
Iteration: 6, Func. Count: 96, Neg. LLF: 146.4291644988178
Iteration: 7, Func. Count: 112, Neg. LLF: 144.26491947663408
Iteration: 8, Func. Count: 128, Neg. LLF: 144.42363120394353
Iteration: 9, Func. Count: 144, Neg. LLF: 144.83020830041778
Iteration: 10, Func. Count: 160, Neg. LLF: 143.9284975851457
Iteration: 11, Func. Count: 175, Neg. LLF: 150.0832929433931
Iteration: 12, Func. Count: 191, Neg. LLF: 161.36390936579065
Iteration: 13, Func. Count: 207, Neg. LLF: 159.81295850193342
Iteration: 14, Func. Count: 223, Neg. LLF: 145.60882472143484
Iteration: 15, Func. Count: 239, Neg. LLF: 143.76689280539014
Iteration: 16, Func. Count: 255, Neg. LLF: 143.50914558837204
Iteration: 17, Func. Count: 270, Neg. LLF: 143.50078503264243
Iteration: 18, Func. Count: 285, Neg. LLF: 143.4995645571186
Iteration: 19, Func. Count: 300, Neg. LLF: 143.49951836068354
Iteration: 20, Func. Count: 315, Neg. LLF: 143.49950197204205
Iteration: 21, Func. Count: 330, Neg. LLF: 143.49949968871044
Iteration: 22, Func. Count: 344, Neg. LLF: 143.49949985765028
Optimization terminated successfully (Exit mode 0)
Current function value: 143.49949968871044
Iterations: 22
Function evaluations: 344
Gradient evaluations: 22
Iteration: 1, Func. Count: 5, Neg. LLF: 153.67582149594404
Iteration: 2, Func. Count: 10, Neg. LLF: 157.22862205151623
Iteration: 3, Func. Count: 15, Neg. LLF: 146.72145512674322
Iteration: 4, Func. Count: 19, Neg. LLF: 146.38136880483478
Iteration: 5, Func. Count: 23, Neg. LLF: 146.37909307540164
Iteration: 6, Func. Count: 27, Neg. LLF: 146.37335394778708
Iteration: 7, Func. Count: 31, Neg. LLF: 146.37325998762182
Iteration: 8, Func. Count: 34, Neg. LLF: 146.37325999351143
Optimization terminated successfully (Exit mode 0)
Current function value: 146.37325998762182
Iterations: 8
Function evaluations: 34
Gradient evaluations: 8
Iteration: 1, Func. Count: 5, Neg. LLF: 154.69554530658002
Iteration: 2, Func. Count: 10, Neg. LLF: 154.0782183394573
Iteration: 3, Func. Count: 15, Neg. LLF: 146.3561120448598
Iteration: 4, Func. Count: 19, Neg. LLF: 146.13257211224962
Iteration: 5, Func. Count: 23, Neg. LLF: 146.10830977310113
Iteration: 6, Func. Count: 27, Neg. LLF: 146.1060640092478
Iteration: 7, Func. Count: 31, Neg. LLF: 146.1023376413326
Iteration: 8, Func. Count: 35, Neg. LLF: 146.1023254258473
Iteration: 9, Func. Count: 38, Neg. LLF: 146.1023254289226
Optimization terminated successfully (Exit mode 0)
Current function value: 146.1023254258473
Iterations: 9
Function evaluations: 38
Gradient evaluations: 9
Iteration: 1, Func. Count: 6, Neg. LLF: 152.55949147339788
Iteration: 2, Func. Count: 13, Neg. LLF: 150.21970945742794
Iteration: 3, Func. Count: 19, Neg. LLF: 151.42236720220376
Iteration: 4, Func. Count: 26, Neg. LLF: 149.12685479150392
Iteration: 5, Func. Count: 31, Neg. LLF: 149.12684633466858
Iteration: 6, Func. Count: 35, Neg. LLF: 149.12684633465722
Optimization terminated successfully (Exit mode 0)
Current function value: 149.12684633466858
Iterations: 6
Function evaluations: 35
Gradient evaluations: 6
Iteration: 1, Func. Count: 7, Neg. LLF: 152.953049515499
Iteration: 2, Func. Count: 15, Neg. LLF: 150.41851385258755
Iteration: 3, Func. Count: 23, Neg. LLF: 149.67549047361067
Iteration: 4, Func. Count: 30, Neg. LLF: 149.0727905664154
Iteration: 5, Func. Count: 37, Neg. LLF: 149.05238712901112
Iteration: 6, Func. Count: 43, Neg. LLF: 149.04936134861958
Iteration: 7, Func. Count: 49, Neg. LLF: 149.0124477468839
Iteration: 8, Func. Count: 55, Neg. LLF: 148.43505704975686
Iteration: 9, Func. Count: 61, Neg. LLF: 147.63508094580706
Iteration: 10, Func. Count: 67, Neg. LLF: 147.3852514931094
Iteration: 11, Func. Count: 73, Neg. LLF: 146.86777338964833
Iteration: 12, Func. Count: 79, Neg. LLF: 146.62027222602694
Iteration: 13, Func. Count: 85, Neg. LLF: 146.35531441451212
Iteration: 14, Func. Count: 91, Neg. LLF: 146.2716983694858
Iteration: 15, Func. Count: 97, Neg. LLF: 146.17032615634437
Iteration: 16, Func. Count: 103, Neg. LLF: 146.14884791842937
Iteration: 17, Func. Count: 110, Neg. LLF: 146.0590098219146
Iteration: 18, Func. Count: 117, Neg. LLF: 146.0429207931851
Iteration: 19, Func. Count: 123, Neg. LLF: 146.0429180985558
Iteration: 20, Func. Count: 128, Neg. LLF: 146.04291808935088
Optimization terminated successfully (Exit mode 0)
Current function value: 146.0429180985558
Iterations: 20
Function evaluations: 128
Gradient evaluations: 20
Iteration: 1, Func. Count: 8, Neg. LLF: 548.496155997544
Iteration: 2, Func. Count: 17, Neg. LLF: 148.61665138429146
Iteration: 3, Func. Count: 24, Neg. LLF: 148.19994110196953
Iteration: 4, Func. Count: 31, Neg. LLF: 148.09772253460477
Iteration: 5, Func. Count: 38, Neg. LLF: 148.0963609590777
Iteration: 6, Func. Count: 45, Neg. LLF: 148.0922109785944
Iteration: 7, Func. Count: 52, Neg. LLF: 148.09210250989975
Iteration: 8, Func. Count: 60, Neg. LLF: 148.09154174360785
Iteration: 9, Func. Count: 67, Neg. LLF: 148.09153799072155
Iteration: 10, Func. Count: 73, Neg. LLF: 148.0915379906796
Optimization terminated successfully (Exit mode 0)
Current function value: 148.09153799072155
Iterations: 10
Function evaluations: 73
Gradient evaluations: 10
Iteration: 1, Func. Count: 9, Neg. LLF: 583.4507538453314
Iteration: 2, Func. Count: 19, Neg. LLF: 148.42566491406055
Iteration: 3, Func. Count: 27, Neg. LLF: 148.1172712011562
Iteration: 4, Func. Count: 35, Neg. LLF: 148.12084295983652
Iteration: 5, Func. Count: 44, Neg. LLF: 148.1080471312575
Iteration: 6, Func. Count: 52, Neg. LLF: 148.0954528898617
Iteration: 7, Func. Count: 60, Neg. LLF: 148.09273280867293
Iteration: 8, Func. Count: 68, Neg. LLF: 148.09004882287263
Iteration: 9, Func. Count: 76, Neg. LLF: 148.0899991834603
Iteration: 10, Func. Count: 84, Neg. LLF: 148.11922533685723
Optimization terminated successfully (Exit mode 0)
Current function value: 148.0899991809667
Iterations: 11
Function evaluations: 88
Gradient evaluations: 10
Iteration: 1, Func. Count: 6, Neg. LLF: 149.81211583724996
Iteration: 2, Func. Count: 11, Neg. LLF: 152.69715384485943
Iteration: 3, Func. Count: 17, Neg. LLF: 146.32225479156526
Iteration: 4, Func. Count: 22, Neg. LLF: 146.13995892096295
Iteration: 5, Func. Count: 27, Neg. LLF: 146.10624557398577
Iteration: 6, Func. Count: 32, Neg. LLF: 146.10238232872032
Iteration: 7, Func. Count: 37, Neg. LLF: 146.10232740527266
Iteration: 8, Func. Count: 42, Neg. LLF: 146.10232541920544
Iteration: 9, Func. Count: 46, Neg. LLF: 146.1023255015581
Optimization terminated successfully (Exit mode 0)
Current function value: 146.10232541920544
Iterations: 9
Function evaluations: 46
Gradient evaluations: 9
Iteration: 1, Func. Count: 7, Neg. LLF: 151.46287673334044
Iteration: 2, Func. Count: 15, Neg. LLF: 149.68625631711262
Iteration: 3, Func. Count: 22, Neg. LLF: 149.2861461115443
Iteration: 4, Func. Count: 30, Neg. LLF: 149.13042181279738
Iteration: 5, Func. Count: 37, Neg. LLF: 149.14032095569738
Iteration: 6, Func. Count: 44, Neg. LLF: 149.1195022137847
Iteration: 7, Func. Count: 50, Neg. LLF: 149.11949916056943
Iteration: 8, Func. Count: 56, Neg. LLF: 149.1194814365416
Iteration: 9, Func. Count: 62, Neg. LLF: 149.11939391464347
Iteration: 10, Func. Count: 68, Neg. LLF: 149.11900641907937
Iteration: 11, Func. Count: 74, Neg. LLF: 149.11853869601146
Iteration: 12, Func. Count: 80, Neg. LLF: 149.11842806957213
Iteration: 13, Func. Count: 86, Neg. LLF: 149.11841413821816
Iteration: 14, Func. Count: 91, Neg. LLF: 149.1184141382107
Optimization terminated successfully (Exit mode 0)
Current function value: 149.11841413821816
Iterations: 14
Function evaluations: 91
Gradient evaluations: 14
Iteration: 1, Func. Count: 8, Neg. LLF: 157.39697180885378
Iteration: 2, Func. Count: 17, Neg. LLF: 150.18169127167505
Iteration: 3, Func. Count: 26, Neg. LLF: 149.1805630060461
Iteration: 4, Func. Count: 34, Neg. LLF: 149.06194954749492
Iteration: 5, Func. Count: 41, Neg. LLF: 149.10028576890326
Iteration: 6, Func. Count: 49, Neg. LLF: 149.05517479691957
Iteration: 7, Func. Count: 56, Neg. LLF: 149.04865419034155
Iteration: 8, Func. Count: 63, Neg. LLF: 149.02096826102562
Iteration: 9, Func. Count: 70, Neg. LLF: 148.44160916140652
Iteration: 10, Func. Count: 77, Neg. LLF: 147.58738683462147
Iteration: 11, Func. Count: 84, Neg. LLF: 147.32251037267827
Iteration: 12, Func. Count: 91, Neg. LLF: 147.15356139243013
Iteration: 13, Func. Count: 98, Neg. LLF: 146.69328698848895
Iteration: 14, Func. Count: 105, Neg. LLF: 146.49186688499535
Iteration: 15, Func. Count: 112, Neg. LLF: 146.31385677461168
Iteration: 16, Func. Count: 119, Neg. LLF: 146.2552673108225
Iteration: 17, Func. Count: 126, Neg. LLF: 146.36659465456594
Iteration: 18, Func. Count: 134, Neg. LLF: 146.12077004464808
Iteration: 19, Func. Count: 142, Neg. LLF: 146.04431729749933
Iteration: 20, Func. Count: 149, Neg. LLF: 146.04292001537053
Iteration: 21, Func. Count: 156, Neg. LLF: 146.04291811246262
Iteration: 22, Func. Count: 162, Neg. LLF: 146.04291810327274
Optimization terminated successfully (Exit mode 0)
Current function value: 146.04291811246262
Iterations: 22
Function evaluations: 162
Gradient evaluations: 22
Iteration: 1, Func. Count: 9, Neg. LLF: 546.7381340427486
Iteration: 2, Func. Count: 19, Neg. LLF: 148.63265188726123
Iteration: 3, Func. Count: 27, Neg. LLF: 148.16330044827222
Iteration: 4, Func. Count: 35, Neg. LLF: 148.10884290903095
Iteration: 5, Func. Count: 43, Neg. LLF: 148.10351072085754
Iteration: 6, Func. Count: 52, Neg. LLF: 148.09160717101935
Iteration: 7, Func. Count: 60, Neg. LLF: 148.09153981961947
Iteration: 8, Func. Count: 68, Neg. LLF: 148.09153818052943
Iteration: 9, Func. Count: 75, Neg. LLF: 148.09153818054855
Optimization terminated successfully (Exit mode 0)
Current function value: 148.09153818052943
Iterations: 9
Function evaluations: 75
Gradient evaluations: 9
Iteration: 1, Func. Count: 10, Neg. LLF: 589.4025840382141
Iteration: 2, Func. Count: 21, Neg. LLF: 148.386238308728
Iteration: 3, Func. Count: 30, Neg. LLF: 148.07029597255425
Iteration: 4, Func. Count: 39, Neg. LLF: 147.91745529678053
Iteration: 5, Func. Count: 48, Neg. LLF: 147.9261901888535
Iteration: 6, Func. Count: 58, Neg. LLF: 147.8685784481633
Iteration: 7, Func. Count: 67, Neg. LLF: 147.8585929673546
Iteration: 8, Func. Count: 76, Neg. LLF: 147.8665179944524
Iteration: 9, Func. Count: 86, Neg. LLF: 147.84235957434052
Iteration: 10, Func. Count: 95, Neg. LLF: 147.8407641743965
Iteration: 11, Func. Count: 104, Neg. LLF: 6117620.710206836
Iteration: 12, Func. Count: 116, Neg. LLF: 148.13084032764326
Iteration: 13, Func. Count: 127, Neg. LLF: 147.8496736585346
Iteration: 14, Func. Count: 138, Neg. LLF: 147.84060834422192
Iteration: 15, Func. Count: 147, Neg. LLF: 147.84060203583226
Iteration: 16, Func. Count: 156, Neg. LLF: 147.8406000454885
Iteration: 17, Func. Count: 165, Neg. LLF: 147.84059926029158
Optimization terminated successfully (Exit mode 0)
Current function value: 147.84059926029158
Iterations: 18
Function evaluations: 165
Gradient evaluations: 17
Iteration: 1, Func. Count: 7, Neg. LLF: 163.22012194688153
Iteration: 2, Func. Count: 15, Neg. LLF: 146.95359080679674
Iteration: 3, Func. Count: 21, Neg. LLF: 149.76093909856536
Iteration: 4, Func. Count: 28, Neg. LLF: 146.42520272014218
Iteration: 5, Func. Count: 34, Neg. LLF: 146.2250811289144
Iteration: 6, Func. Count: 40, Neg. LLF: 146.08071732018524
Iteration: 7, Func. Count: 46, Neg. LLF: 146.05462308853419
Iteration: 8, Func. Count: 52, Neg. LLF: 146.05260149616757
Iteration: 9, Func. Count: 58, Neg. LLF: 146.0525768041103
Iteration: 10, Func. Count: 64, Neg. LLF: 146.05257199908476
Iteration: 11, Func. Count: 69, Neg. LLF: 146.05257199474508
Optimization terminated successfully (Exit mode 0)
Current function value: 146.05257199908476
Iterations: 11
Function evaluations: 69
Gradient evaluations: 11
Iteration: 1, Func. Count: 8, Neg. LLF: 158.21411831690958
Iteration: 2, Func. Count: 18, Neg. LLF: 154.17089673308084
Iteration: 3, Func. Count: 27, Neg. LLF: 149.10828000874525
Iteration: 4, Func. Count: 35, Neg. LLF: 149.08632928996562
Iteration: 5, Func. Count: 43, Neg. LLF: 149.02924796943736
Iteration: 6, Func. Count: 51, Neg. LLF: 149.0478770445203
Iteration: 7, Func. Count: 59, Neg. LLF: 149.02352266300596
Iteration: 8, Func. Count: 66, Neg. LLF: 149.02295531699232
Iteration: 9, Func. Count: 73, Neg. LLF: 149.02106765940724
Iteration: 10, Func. Count: 80, Neg. LLF: 149.0159473317004
Iteration: 11, Func. Count: 87, Neg. LLF: 148.9874519433897
Iteration: 12, Func. Count: 94, Neg. LLF: 148.83837852279186
Iteration: 13, Func. Count: 101, Neg. LLF: 148.7906675486894
Iteration: 14, Func. Count: 108, Neg. LLF: 148.76977548350234
Iteration: 15, Func. Count: 115, Neg. LLF: 148.76720220748956
Iteration: 16, Func. Count: 122, Neg. LLF: 148.76615957722575
Iteration: 17, Func. Count: 129, Neg. LLF: 148.76568908982387
Iteration: 18, Func. Count: 136, Neg. LLF: 148.76558800571482
Iteration: 19, Func. Count: 143, Neg. LLF: 148.76551118061371
Iteration: 20, Func. Count: 150, Neg. LLF: 148.76550406048258
Iteration: 21, Func. Count: 157, Neg. LLF: 148.76549052215088
Iteration: 22, Func. Count: 164, Neg. LLF: 148.7654895217528
Iteration: 23, Func. Count: 170, Neg. LLF: 148.76548953820435
Optimization terminated successfully (Exit mode 0)
Current function value: 148.7654895217528
Iterations: 23
Function evaluations: 170
Gradient evaluations: 23
Iteration: 1, Func. Count: 9, Neg. LLF: 158.1809777156915
Iteration: 2, Func. Count: 20, Neg. LLF: 154.01805565233016
Iteration: 3, Func. Count: 30, Neg. LLF: 149.0692645805356
Iteration: 4, Func. Count: 39, Neg. LLF: 149.13617266374706
Iteration: 5, Func. Count: 48, Neg. LLF: 149.00787797756806
Iteration: 6, Func. Count: 57, Neg. LLF: 149.01968099810605
Iteration: 7, Func. Count: 66, Neg. LLF: 148.99168106487554
Iteration: 8, Func. Count: 74, Neg. LLF: 148.99027886533574
Iteration: 9, Func. Count: 82, Neg. LLF: 148.98808135492882
Iteration: 10, Func. Count: 90, Neg. LLF: 148.97388052847376
Iteration: 11, Func. Count: 98, Neg. LLF: 148.91657272976045
Iteration: 12, Func. Count: 106, Neg. LLF: 148.8104061456542
Iteration: 13, Func. Count: 114, Neg. LLF: 148.7813955035395
Iteration: 14, Func. Count: 122, Neg. LLF: 148.76851881334605
Iteration: 15, Func. Count: 130, Neg. LLF: 148.76597354751488
Iteration: 16, Func. Count: 138, Neg. LLF: 148.76551245727686
Iteration: 17, Func. Count: 146, Neg. LLF: 148.7654955129172
Iteration: 18, Func. Count: 154, Neg. LLF: 148.7654919141298
Iteration: 19, Func. Count: 162, Neg. LLF: 148.7654894493608
Iteration: 20, Func. Count: 169, Neg. LLF: 148.76548946475182
Optimization terminated successfully (Exit mode 0)
Current function value: 148.7654894493608
Iterations: 20
Function evaluations: 169
Gradient evaluations: 20
Iteration: 1, Func. Count: 10, Neg. LLF: 158.10154329755431
Iteration: 2, Func. Count: 22, Neg. LLF: 153.91841890445792
Iteration: 3, Func. Count: 32, Neg. LLF: 148.75122558177853
Iteration: 4, Func. Count: 41, Neg. LLF: 148.8027954511015
Iteration: 5, Func. Count: 51, Neg. LLF: 148.6852670910357
Iteration: 6, Func. Count: 60, Neg. LLF: 148.67822170156222
Iteration: 7, Func. Count: 69, Neg. LLF: 148.67596366550833
Iteration: 8, Func. Count: 78, Neg. LLF: 148.6641695191058
Iteration: 9, Func. Count: 87, Neg. LLF: 148.63780334413954
Iteration: 10, Func. Count: 96, Neg. LLF: 149.0982129525677
Iteration: 11, Func. Count: 106, Neg. LLF: 148.64846073210342
Iteration: 12, Func. Count: 116, Neg. LLF: 148.58332327514015
Iteration: 13, Func. Count: 125, Neg. LLF: 148.56582013394853
Iteration: 14, Func. Count: 134, Neg. LLF: 148.5627480665372
Iteration: 15, Func. Count: 143, Neg. LLF: 148.56236650349095
Iteration: 16, Func. Count: 152, Neg. LLF: 148.56235515653051
Iteration: 17, Func. Count: 161, Neg. LLF: 148.56235302635187
Iteration: 18, Func. Count: 169, Neg. LLF: 148.56235302638706
Optimization terminated successfully (Exit mode 0)
Current function value: 148.56235302635187
Iterations: 18
Function evaluations: 169
Gradient evaluations: 18
Iteration: 1, Func. Count: 11, Neg. LLF: 158.1070942560327
Iteration: 2, Func. Count: 24, Neg. LLF: 153.8466652329975
Iteration: 3, Func. Count: 35, Neg. LLF: 148.66058858881567
Iteration: 4, Func. Count: 45, Neg. LLF: 149.5522580094904
Iteration: 5, Func. Count: 56, Neg. LLF: 149.1003999806775
Iteration: 6, Func. Count: 67, Neg. LLF: 148.5826554861608
Iteration: 7, Func. Count: 78, Neg. LLF: 148.4392480875762
Iteration: 8, Func. Count: 88, Neg. LLF: 148.36286189455768
Iteration: 9, Func. Count: 98, Neg. LLF: 148.32284790854476
Iteration: 10, Func. Count: 108, Neg. LLF: 148.29926837591557
Iteration: 11, Func. Count: 118, Neg. LLF: 148.27974179732013
Iteration: 12, Func. Count: 128, Neg. LLF: 148.26515672972366
Iteration: 13, Func. Count: 138, Neg. LLF: 148.25615020316607
Iteration: 14, Func. Count: 148, Neg. LLF: 148.25306202312012
Iteration: 15, Func. Count: 158, Neg. LLF: 148.2490630339215
Iteration: 16, Func. Count: 168, Neg. LLF: 148.24242334464867
Iteration: 17, Func. Count: 178, Neg. LLF: 148.23621075467756
Iteration: 18, Func. Count: 188, Neg. LLF: 148.2324449993291
Iteration: 19, Func. Count: 198, Neg. LLF: 148.25180573547075
Iteration: 20, Func. Count: 209, Neg. LLF: 148.23099968716116
Iteration: 21, Func. Count: 219, Neg. LLF: 148.23093870571304
Iteration: 22, Func. Count: 228, Neg. LLF: 148.2309387056864
Optimization terminated successfully (Exit mode 0)
Current function value: 148.23093870571304
Iterations: 22
Function evaluations: 228
Gradient evaluations: 22
Iteration: 1, Func. Count: 8, Neg. LLF: 160.97746906572382
Iteration: 2, Func. Count: 17, Neg. LLF: 146.8546083873753
Iteration: 3, Func. Count: 24, Neg. LLF: 147.46993457716727
Iteration: 4, Func. Count: 32, Neg. LLF: 146.4295821066219
Iteration: 5, Func. Count: 39, Neg. LLF: 146.15790007976278
Iteration: 6, Func. Count: 46, Neg. LLF: 146.08089063213924
Iteration: 7, Func. Count: 53, Neg. LLF: 146.05461959957574
Iteration: 8, Func. Count: 60, Neg. LLF: 146.05270070112326
Iteration: 9, Func. Count: 67, Neg. LLF: 146.05259340055025
Iteration: 10, Func. Count: 74, Neg. LLF: 146.0525719738783
Iteration: 11, Func. Count: 80, Neg. LLF: 146.05257208942686
Optimization terminated successfully (Exit mode 0)
Current function value: 146.0525719738783
Iterations: 11
Function evaluations: 80
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 157.97350046106837
Iteration: 2, Func. Count: 20, Neg. LLF: 154.14714990124088
Iteration: 3, Func. Count: 30, Neg. LLF: 149.07947735304415
Iteration: 4, Func. Count: 38, Neg. LLF: 149.3022597219024
Iteration: 5, Func. Count: 47, Neg. LLF: 151.0146485336406
Iteration: 6, Func. Count: 56, Neg. LLF: 149.03804663122054
Iteration: 7, Func. Count: 65, Neg. LLF: 149.03439964005733
Iteration: 8, Func. Count: 74, Neg. LLF: 149.0234060221301
Iteration: 9, Func. Count: 82, Neg. LLF: 149.02314755876012
Iteration: 10, Func. Count: 90, Neg. LLF: 149.02253905823508
Iteration: 11, Func. Count: 98, Neg. LLF: 149.0211225590275
Iteration: 12, Func. Count: 106, Neg. LLF: 149.0168724626618
Iteration: 13, Func. Count: 114, Neg. LLF: 148.9988767063496
Iteration: 14, Func. Count: 122, Neg. LLF: 148.83008955947992
Iteration: 15, Func. Count: 130, Neg. LLF: 148.80679727775978
Iteration: 16, Func. Count: 138, Neg. LLF: 148.77990893305514
Iteration: 17, Func. Count: 146, Neg. LLF: 148.77500738075653
Iteration: 18, Func. Count: 154, Neg. LLF: 148.77070298359186
Iteration: 19, Func. Count: 162, Neg. LLF: 148.76877657719362
Iteration: 20, Func. Count: 170, Neg. LLF: 148.76650249360532
Iteration: 21, Func. Count: 178, Neg. LLF: 148.7659695833778
Iteration: 22, Func. Count: 186, Neg. LLF: 148.76566075856556
Iteration: 23, Func. Count: 194, Neg. LLF: 148.76553845422694
Iteration: 24, Func. Count: 202, Neg. LLF: 148.76549735118266
Iteration: 25, Func. Count: 210, Neg. LLF: 148.76549006654415
Iteration: 26, Func. Count: 218, Neg. LLF: 148.7654894491227
Optimization terminated successfully (Exit mode 0)
Current function value: 148.7654894491227
Iterations: 26
Function evaluations: 218
Gradient evaluations: 26
Iteration: 1, Func. Count: 10, Neg. LLF: 157.89234543247912
Iteration: 2, Func. Count: 22, Neg. LLF: 153.99739971187546
Iteration: 3, Func. Count: 33, Neg. LLF: 149.0354091775527
Iteration: 4, Func. Count: 42, Neg. LLF: 149.46930109906518
Iteration: 5, Func. Count: 52, Neg. LLF: 150.94625121762257
Iteration: 6, Func. Count: 63, Neg. LLF: 149.02241417227754
Iteration: 7, Func. Count: 73, Neg. LLF: 149.04324069911945
Iteration: 8, Func. Count: 83, Neg. LLF: 148.99039937584712
Iteration: 9, Func. Count: 92, Neg. LLF: 148.98951491695215
Iteration: 10, Func. Count: 101, Neg. LLF: 148.9878377395081
Iteration: 11, Func. Count: 110, Neg. LLF: 148.98295047338027
Iteration: 12, Func. Count: 119, Neg. LLF: 148.97238865558595
Iteration: 13, Func. Count: 128, Neg. LLF: 148.94906213024453
Iteration: 14, Func. Count: 137, Neg. LLF: 148.85367701590167
Iteration: 15, Func. Count: 146, Neg. LLF: 148.79600476345618
Iteration: 16, Func. Count: 155, Neg. LLF: 148.7748804897924
Iteration: 17, Func. Count: 164, Neg. LLF: 148.76849286153362
Iteration: 18, Func. Count: 173, Neg. LLF: 148.76670018254157
Iteration: 19, Func. Count: 182, Neg. LLF: 148.76574642176723
Iteration: 20, Func. Count: 191, Neg. LLF: 148.76552803246852
Iteration: 21, Func. Count: 200, Neg. LLF: 148.7655081434738
Iteration: 22, Func. Count: 209, Neg. LLF: 148.7654901673734
Iteration: 23, Func. Count: 218, Neg. LLF: 148.76548945195958
Optimization terminated successfully (Exit mode 0)
Current function value: 148.76548945195958
Iterations: 23
Function evaluations: 218
Gradient evaluations: 23
Iteration: 1, Func. Count: 11, Neg. LLF: 157.85936756842477
Iteration: 2, Func. Count: 24, Neg. LLF: 153.8928282485895
Iteration: 3, Func. Count: 35, Neg. LLF: 148.70888641647588
Iteration: 4, Func. Count: 45, Neg. LLF: 149.46611737557078
Iteration: 5, Func. Count: 56, Neg. LLF: 148.71000675798925
Iteration: 6, Func. Count: 67, Neg. LLF: 148.67962057343394
Iteration: 7, Func. Count: 77, Neg. LLF: 148.67613650311785
Iteration: 8, Func. Count: 87, Neg. LLF: 148.67156933336076
Iteration: 9, Func. Count: 97, Neg. LLF: 148.6639896759076
Iteration: 10, Func. Count: 107, Neg. LLF: 148.6779023952427
Iteration: 11, Func. Count: 118, Neg. LLF: 148.60338991766608
Iteration: 12, Func. Count: 128, Neg. LLF: 148.57006766920892
Iteration: 13, Func. Count: 138, Neg. LLF: 148.5647197057807
Iteration: 14, Func. Count: 148, Neg. LLF: 148.56265584946755
Iteration: 15, Func. Count: 158, Neg. LLF: 148.56238413242295
Iteration: 16, Func. Count: 168, Neg. LLF: 148.56235314224833
Iteration: 17, Func. Count: 177, Neg. LLF: 148.56235314218753
Optimization terminated successfully (Exit mode 0)
Current function value: 148.56235314224833
Iterations: 17
Function evaluations: 177
Gradient evaluations: 17
Iteration: 1, Func. Count: 12, Neg. LLF: 157.8317785819593
Iteration: 2, Func. Count: 26, Neg. LLF: 153.79333497065346
Iteration: 3, Func. Count: 38, Neg. LLF: 149.69282038782032
Iteration: 4, Func. Count: 50, Neg. LLF: 149.30734445356052
Iteration: 5, Func. Count: 62, Neg. LLF: 148.68120075103073
Iteration: 6, Func. Count: 73, Neg. LLF: 148.5441301688637
Iteration: 7, Func. Count: 84, Neg. LLF: 148.4229604255616
Iteration: 8, Func. Count: 95, Neg. LLF: 148.47872538888492
Iteration: 9, Func. Count: 107, Neg. LLF: 148.37028204397797
Iteration: 10, Func. Count: 118, Neg. LLF: 148.32681644547932
Iteration: 11, Func. Count: 129, Neg. LLF: 148.2657404186783
Iteration: 12, Func. Count: 140, Neg. LLF: 148.26043385714308
Iteration: 13, Func. Count: 151, Neg. LLF: 148.2576082047888
Iteration: 14, Func. Count: 162, Neg. LLF: 148.2473596572755
Iteration: 15, Func. Count: 173, Neg. LLF: 148.24197814553284
Iteration: 16, Func. Count: 184, Neg. LLF: 148.23593272134366
Iteration: 17, Func. Count: 195, Neg. LLF: 148.247424579582
Iteration: 18, Func. Count: 207, Neg. LLF: 148.26657798774855
Iteration: 19, Func. Count: 219, Neg. LLF: 148.2309477155873
Iteration: 20, Func. Count: 230, Neg. LLF: 148.23093836930278
Iteration: 21, Func. Count: 240, Neg. LLF: 148.23093836933236
Optimization terminated successfully (Exit mode 0)
Current function value: 148.23093836930278
Iterations: 21
Function evaluations: 240
Gradient evaluations: 21
Iteration: 1, Func. Count: 5, Neg. LLF: 155.10697386360923
Iteration: 2, Func. Count: 10, Neg. LLF: 149.514722207496
Iteration: 3, Func. Count: 15, Neg. LLF: 148.8804249255502
Iteration: 4, Func. Count: 19, Neg. LLF: 148.7803050291048
Iteration: 5, Func. Count: 23, Neg. LLF: 148.77007840229422
Iteration: 6, Func. Count: 27, Neg. LLF: 148.7400053576054
Iteration: 7, Func. Count: 31, Neg. LLF: 148.7308966790185
Iteration: 8, Func. Count: 35, Neg. LLF: 148.72908281381282
Iteration: 9, Func. Count: 39, Neg. LLF: 148.72904609030277
Iteration: 10, Func. Count: 42, Neg. LLF: 148.72904610620566
Optimization terminated successfully (Exit mode 0)
Current function value: 148.72904609030277
Iterations: 10
Function evaluations: 42
Gradient evaluations: 10
Iteration: 1, Func. Count: 6, Neg. LLF: 353.03720093664646
Iteration: 2, Func. Count: 14, Neg. LLF: 149.17938314379452
Iteration: 3, Func. Count: 19, Neg. LLF: 149.5011104434598
Iteration: 4, Func. Count: 25, Neg. LLF: 149.10969476870457
Iteration: 5, Func. Count: 30, Neg. LLF: 148.18324073411992
Iteration: 6, Func. Count: 35, Neg. LLF: 148.82946873332372
Iteration: 7, Func. Count: 41, Neg. LLF: 148.0699063275744
Iteration: 8, Func. Count: 46, Neg. LLF: 148.06888058594362
Iteration: 9, Func. Count: 51, Neg. LLF: 148.06887916825795
Iteration: 10, Func. Count: 55, Neg. LLF: 148.0688791683704
Optimization terminated successfully (Exit mode 0)
Current function value: 148.06887916825795
Iterations: 10
Function evaluations: 55
Gradient evaluations: 10
Iteration: 1, Func. Count: 7, Neg. LLF: 433.2451434117499
Iteration: 2, Func. Count: 15, Neg. LLF: 148.9541008844372
Iteration: 3, Func. Count: 21, Neg. LLF: 148.36899148290277
Iteration: 4, Func. Count: 27, Neg. LLF: 148.03197498749978
Iteration: 5, Func. Count: 33, Neg. LLF: 148.07855438899344
Iteration: 6, Func. Count: 40, Neg. LLF: 147.99833129316386
Iteration: 7, Func. Count: 46, Neg. LLF: 147.9979231942893
Iteration: 8, Func. Count: 52, Neg. LLF: 6810204.781732763
Iteration: 9, Func. Count: 61, Neg. LLF: 147.99789340680243
Optimization terminated successfully (Exit mode 0)
Current function value: 147.9978934067778
Iterations: 10
Function evaluations: 61
Gradient evaluations: 9
Iteration: 1, Func. Count: 8, Neg. LLF: 500.50121721671246
Iteration: 2, Func. Count: 17, Neg. LLF: 148.6518737409053
Iteration: 3, Func. Count: 24, Neg. LLF: 148.32928817295615
Iteration: 4, Func. Count: 31, Neg. LLF: 148.14822148170455
Iteration: 5, Func. Count: 38, Neg. LLF: 148.13203906105412
Iteration: 6, Func. Count: 46, Neg. LLF: 148.0927326197492
Iteration: 7, Func. Count: 53, Neg. LLF: 148.09166265333803
Iteration: 8, Func. Count: 60, Neg. LLF: 148.09160356365706
Iteration: 9, Func. Count: 67, Neg. LLF: 148.09154370381012
Iteration: 10, Func. Count: 74, Neg. LLF: 148.0915380885922
Iteration: 11, Func. Count: 80, Neg. LLF: 148.09153808845676
Optimization terminated successfully (Exit mode 0)
Current function value: 148.0915380885922
Iterations: 11
Function evaluations: 80
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 533.1475120446792
Iteration: 2, Func. Count: 19, Neg. LLF: 148.49910245677233
Iteration: 3, Func. Count: 27, Neg. LLF: 148.13841127682582
Iteration: 4, Func. Count: 35, Neg. LLF: 148.10442713762637
Iteration: 5, Func. Count: 43, Neg. LLF: 148.09241814605144
Iteration: 6, Func. Count: 51, Neg. LLF: 148.0900987089896
Iteration: 7, Func. Count: 59, Neg. LLF: 148.08999923801838
Iteration: 8, Func. Count: 67, Neg. LLF: 148.08999836087537
Optimization terminated successfully (Exit mode 0)
Current function value: 148.08999836087537
Iterations: 8
Function evaluations: 67
Gradient evaluations: 8
Iteration: 1, Func. Count: 6, Neg. LLF: 165.68851173164373
Iteration: 2, Func. Count: 12, Neg. LLF: 147.4463894962196
Iteration: 3, Func. Count: 18, Neg. LLF: 146.21089576123236
Iteration: 4, Func. Count: 23, Neg. LLF: 146.28014214983625
Iteration: 5, Func. Count: 29, Neg. LLF: 146.11280848569155
Iteration: 6, Func. Count: 34, Neg. LLF: 146.10105395481892
Iteration: 7, Func. Count: 39, Neg. LLF: 146.0943028163116
Iteration: 8, Func. Count: 44, Neg. LLF: 146.08332490646404
Iteration: 9, Func. Count: 49, Neg. LLF: 146.08283727029567
Iteration: 10, Func. Count: 54, Neg. LLF: 146.08281061630473
Iteration: 11, Func. Count: 58, Neg. LLF: 146.08281061257412
Optimization terminated successfully (Exit mode 0)
Current function value: 146.08281061630473
Iterations: 11
Function evaluations: 58
Gradient evaluations: 11
Iteration: 1, Func. Count: 7, Neg. LLF: 189.13397912358528
Iteration: 2, Func. Count: 15, Neg. LLF: 149.72459134815406
Iteration: 3, Func. Count: 22, Neg. LLF: 149.8629222613999
Iteration: 4, Func. Count: 30, Neg. LLF: 149.12684818598615
Iteration: 5, Func. Count: 36, Neg. LLF: 149.1268441557413
Iteration: 6, Func. Count: 42, Neg. LLF: 149.12684313745598
Iteration: 7, Func. Count: 48, Neg. LLF: 149.1268367525769
Iteration: 8, Func. Count: 54, Neg. LLF: 149.12680186905945
Iteration: 9, Func. Count: 60, Neg. LLF: 149.12663654626238
Iteration: 10, Func. Count: 66, Neg. LLF: 149.12645034851627
Iteration: 11, Func. Count: 72, Neg. LLF: 149.1263449392991
Iteration: 12, Func. Count: 78, Neg. LLF: 149.12629544474973
Iteration: 13, Func. Count: 84, Neg. LLF: 149.12629378634793
Iteration: 14, Func. Count: 89, Neg. LLF: 149.1262937863471
Optimization terminated successfully (Exit mode 0)
Current function value: 149.12629378634793
Iterations: 14
Function evaluations: 89
Gradient evaluations: 14
Iteration: 1, Func. Count: 8, Neg. LLF: 158.15345572478293
Iteration: 2, Func. Count: 17, Neg. LLF: 148.92983459622334
Iteration: 3, Func. Count: 24, Neg. LLF: 152.76651131377528
Iteration: 4, Func. Count: 32, Neg. LLF: 148.6231226866482
Iteration: 5, Func. Count: 39, Neg. LLF: 149.5687361929453
Iteration: 6, Func. Count: 47, Neg. LLF: 146.55592283035372
Iteration: 7, Func. Count: 54, Neg. LLF: 146.67279847390773
Iteration: 8, Func. Count: 62, Neg. LLF: 146.32519232980104
Iteration: 9, Func. Count: 70, Neg. LLF: 146.06202300118747
Iteration: 10, Func. Count: 77, Neg. LLF: 146.04974062619576
Iteration: 11, Func. Count: 84, Neg. LLF: 146.0238255746051
Iteration: 12, Func. Count: 91, Neg. LLF: 146.0185850985239
Iteration: 13, Func. Count: 98, Neg. LLF: 146.0164516393392
Iteration: 14, Func. Count: 105, Neg. LLF: 146.0152289185139
Iteration: 15, Func. Count: 112, Neg. LLF: 146.0118016367643
Iteration: 16, Func. Count: 119, Neg. LLF: 146.01129272743452
Iteration: 17, Func. Count: 126, Neg. LLF: 146.01129122781742
Iteration: 18, Func. Count: 132, Neg. LLF: 146.01129121632954
Optimization terminated successfully (Exit mode 0)
Current function value: 146.01129122781742
Iterations: 18
Function evaluations: 132
Gradient evaluations: 18
Iteration: 1, Func. Count: 9, Neg. LLF: 163.47691432947508
Iteration: 2, Func. Count: 19, Neg. LLF: 149.16879964500544
Iteration: 3, Func. Count: 28, Neg. LLF: 148.9162981858954
Iteration: 4, Func. Count: 36, Neg. LLF: 147.87676936823343
Iteration: 5, Func. Count: 44, Neg. LLF: 147.08574023194276
Iteration: 6, Func. Count: 52, Neg. LLF: 149.20339863677157
Iteration: 7, Func. Count: 61, Neg. LLF: 146.69911121896783
Iteration: 8, Func. Count: 69, Neg. LLF: 146.6024473897286
Iteration: 9, Func. Count: 77, Neg. LLF: 146.50054985105518
Iteration: 10, Func. Count: 85, Neg. LLF: 146.16115957141525
Iteration: 11, Func. Count: 93, Neg. LLF: 146.0885687177953
Iteration: 12, Func. Count: 101, Neg. LLF: 146.03724412737355
Iteration: 13, Func. Count: 109, Neg. LLF: 146.02308620579902
Iteration: 14, Func. Count: 117, Neg. LLF: 146.0205863043564
Iteration: 15, Func. Count: 125, Neg. LLF: 146.01809774305784
Iteration: 16, Func. Count: 133, Neg. LLF: 146.01156967658986
Iteration: 17, Func. Count: 141, Neg. LLF: 146.0113129968227
Iteration: 18, Func. Count: 149, Neg. LLF: 146.01129124992113
Iteration: 19, Func. Count: 156, Neg. LLF: 146.01129148664361
Optimization terminated successfully (Exit mode 0)
Current function value: 146.01129124992113
Iterations: 19
Function evaluations: 156
Gradient evaluations: 19
Iteration: 1, Func. Count: 10, Neg. LLF: 149.41541560540512
Iteration: 2, Func. Count: 20, Neg. LLF: 149.7970038767149
Iteration: 3, Func. Count: 30, Neg. LLF: 149.32162582528125
Iteration: 4, Func. Count: 40, Neg. LLF: 149.19341816669882
Iteration: 5, Func. Count: 49, Neg. LLF: 149.19241773189364
Iteration: 6, Func. Count: 59, Neg. LLF: 149.17210657633464
Iteration: 7, Func. Count: 68, Neg. LLF: 149.16758409835532
Iteration: 8, Func. Count: 77, Neg. LLF: 149.15944733273486
Iteration: 9, Func. Count: 86, Neg. LLF: 149.1387992172491
Iteration: 10, Func. Count: 95, Neg. LLF: 149.13794723078018
Iteration: 11, Func. Count: 104, Neg. LLF: 149.13767639168205
Iteration: 12, Func. Count: 113, Neg. LLF: 149.1369778368731
Iteration: 13, Func. Count: 122, Neg. LLF: 149.13580167883137
Iteration: 14, Func. Count: 131, Neg. LLF: 149.13317370812598
Iteration: 15, Func. Count: 140, Neg. LLF: 149.1298523400056
Iteration: 16, Func. Count: 149, Neg. LLF: 149.12559837478327
Iteration: 17, Func. Count: 158, Neg. LLF: 149.26076617101955
Iteration: 18, Func. Count: 168, Neg. LLF: 149.26554059994038
Iteration: 19, Func. Count: 178, Neg. LLF: 149.28317988319864
Iteration: 20, Func. Count: 188, Neg. LLF: 149.10529442887238
Iteration: 21, Func. Count: 197, Neg. LLF: 149.0949780526001
Iteration: 22, Func. Count: 206, Neg. LLF: 149.08790448232395
Iteration: 23, Func. Count: 215, Neg. LLF: 149.0845396923858
Iteration: 24, Func. Count: 224, Neg. LLF: 149.08343512858815
Iteration: 25, Func. Count: 233, Neg. LLF: 149.0824776888621
Iteration: 26, Func. Count: 242, Neg. LLF: 149.08210232613726
Iteration: 27, Func. Count: 251, Neg. LLF: 149.08198561601017
Iteration: 28, Func. Count: 260, Neg. LLF: 149.08195902654828
Iteration: 29, Func. Count: 269, Neg. LLF: 149.08191088506092
Iteration: 30, Func. Count: 278, Neg. LLF: 149.08183410594023
Iteration: 31, Func. Count: 287, Neg. LLF: 149.08173121047852
Iteration: 32, Func. Count: 296, Neg. LLF: 149.0816129844032
Iteration: 33, Func. Count: 305, Neg. LLF: 149.08117651950508
Iteration: 34, Func. Count: 314, Neg. LLF: 148.89306472330233
Iteration: 35, Func. Count: 323, Neg. LLF: 149.11501487475394
Iteration: 36, Func. Count: 333, Neg. LLF: 147.7987004884768
Iteration: 37, Func. Count: 342, Neg. LLF: 147.5840750719319
Iteration: 38, Func. Count: 351, Neg. LLF: 146.47903157781047
Iteration: 39, Func. Count: 360, Neg. LLF: 120146.55507747161
Iteration: 40, Func. Count: 370, Neg. LLF: 222.42646819492293
Iteration: 41, Func. Count: 380, Neg. LLF: 146.78196929366544
Iteration: 42, Func. Count: 390, Neg. LLF: 146.20546941119244
Iteration: 43, Func. Count: 400, Neg. LLF: 146.02224290762598
Iteration: 44, Func. Count: 409, Neg. LLF: 146.01947619354635
Iteration: 45, Func. Count: 419, Neg. LLF: 146.0668737469513
Iteration: 46, Func. Count: 429, Neg. LLF: 146.0114312396113
Iteration: 47, Func. Count: 439, Neg. LLF: 146.01053423724335
Iteration: 48, Func. Count: 448, Neg. LLF: 146.01052809447197
Iteration: 49, Func. Count: 456, Neg. LLF: 146.01052808317613
Optimization terminated successfully (Exit mode 0)
Current function value: 146.01052809447197
Iterations: 50
Function evaluations: 456
Gradient evaluations: 49
Iteration: 1, Func. Count: 7, Neg. LLF: 161.6493124862076
Iteration: 2, Func. Count: 14, Neg. LLF: 148.36963666617174
Iteration: 3, Func. Count: 21, Neg. LLF: 146.2400197893604
Iteration: 4, Func. Count: 27, Neg. LLF: 146.34502993824378
Iteration: 5, Func. Count: 34, Neg. LLF: 146.1141147072389
Iteration: 6, Func. Count: 40, Neg. LLF: 146.10114196044975
Iteration: 7, Func. Count: 46, Neg. LLF: 146.09540103710947
Iteration: 8, Func. Count: 52, Neg. LLF: 146.0830255464275
Iteration: 9, Func. Count: 58, Neg. LLF: 146.08281423156453
Iteration: 10, Func. Count: 64, Neg. LLF: 146.0828106142146
Iteration: 11, Func. Count: 69, Neg. LLF: 146.08281069691157
Optimization terminated successfully (Exit mode 0)
Current function value: 146.0828106142146
Iterations: 11
Function evaluations: 69
Gradient evaluations: 11
Iteration: 1, Func. Count: 8, Neg. LLF: 172.7599690209199
Iteration: 2, Func. Count: 18, Neg. LLF: 159.43408534833796
Iteration: 3, Func. Count: 27, Neg. LLF: 149.21273853358915
Iteration: 4, Func. Count: 35, Neg. LLF: 149.14713057610086
Iteration: 5, Func. Count: 42, Neg. LLF: 149.16319677526818
Iteration: 6, Func. Count: 50, Neg. LLF: 149.14160128312764
Iteration: 7, Func. Count: 57, Neg. LLF: 149.14016963923117
Iteration: 8, Func. Count: 64, Neg. LLF: 149.1395496116542
Iteration: 9, Func. Count: 71, Neg. LLF: 149.13803890370093
Iteration: 10, Func. Count: 78, Neg. LLF: 149.1361321196246
Iteration: 11, Func. Count: 85, Neg. LLF: 149.1262835228846
Iteration: 12, Func. Count: 92, Neg. LLF: 149.12010616457337
Iteration: 13, Func. Count: 99, Neg. LLF: 149.1186448928279
Iteration: 14, Func. Count: 106, Neg. LLF: 149.1184306268998
Iteration: 15, Func. Count: 113, Neg. LLF: 149.1184151419768
Iteration: 16, Func. Count: 120, Neg. LLF: 149.11841425938488
Optimization terminated successfully (Exit mode 0)
Current function value: 149.11841425938488
Iterations: 16
Function evaluations: 120
Gradient evaluations: 16
Iteration: 1, Func. Count: 9, Neg. LLF: 175.05006072902916
Iteration: 2, Func. Count: 19, Neg. LLF: 149.56670548924993
Iteration: 3, Func. Count: 28, Neg. LLF: 153.99659200720734
Iteration: 4, Func. Count: 38, Neg. LLF: 149.06513609434973
Iteration: 5, Func. Count: 46, Neg. LLF: 149.1155547027654
Iteration: 6, Func. Count: 55, Neg. LLF: 149.05529444030822
Iteration: 7, Func. Count: 63, Neg. LLF: 149.04882459326973
Iteration: 8, Func. Count: 71, Neg. LLF: 149.0197949118131
Iteration: 9, Func. Count: 79, Neg. LLF: 148.50083739807542
Iteration: 10, Func. Count: 87, Neg. LLF: 147.63942142491115
Iteration: 11, Func. Count: 95, Neg. LLF: 147.2974422293214
Iteration: 12, Func. Count: 103, Neg. LLF: 146.84649327893678
Iteration: 13, Func. Count: 111, Neg. LLF: 146.66036996204696
Iteration: 14, Func. Count: 119, Neg. LLF: 146.5119012105201
Iteration: 15, Func. Count: 127, Neg. LLF: 146.36717786180296
Iteration: 16, Func. Count: 135, Neg. LLF: 146.2719602351685
Iteration: 17, Func. Count: 143, Neg. LLF: 147.3546354927177
Iteration: 18, Func. Count: 152, Neg. LLF: 468.1602990395776
Iteration: 19, Func. Count: 161, Neg. LLF: 146.02815717864573
Iteration: 20, Func. Count: 169, Neg. LLF: 146.01161738151026
Iteration: 21, Func. Count: 177, Neg. LLF: 146.01129795786375
Iteration: 22, Func. Count: 185, Neg. LLF: 146.01129389964697
Iteration: 23, Func. Count: 193, Neg. LLF: 146.01129127789454
Iteration: 24, Func. Count: 200, Neg. LLF: 146.01129126641652
Optimization terminated successfully (Exit mode 0)
Current function value: 146.01129127789454
Iterations: 24
Function evaluations: 200
Gradient evaluations: 24
Iteration: 1, Func. Count: 10, Neg. LLF: 181.30500864757826
Iteration: 2, Func. Count: 21, Neg. LLF: 149.527285188173
Iteration: 3, Func. Count: 31, Neg. LLF: 150.03198439852196
Iteration: 4, Func. Count: 41, Neg. LLF: 149.0607797718164
Iteration: 5, Func. Count: 50, Neg. LLF: 149.06321922658725
Iteration: 6, Func. Count: 60, Neg. LLF: 149.05245220758647
Iteration: 7, Func. Count: 69, Neg. LLF: 149.04410179315477
Iteration: 8, Func. Count: 78, Neg. LLF: 148.92718306002385
Iteration: 9, Func. Count: 87, Neg. LLF: 147.67263936661874
Iteration: 10, Func. Count: 96, Neg. LLF: 147.48843337006673
Iteration: 11, Func. Count: 105, Neg. LLF: 147.11066883712346
Iteration: 12, Func. Count: 114, Neg. LLF: 146.87201232301004
Iteration: 13, Func. Count: 123, Neg. LLF: 146.65973875038043
Iteration: 14, Func. Count: 132, Neg. LLF: 146.43167554423385
Iteration: 15, Func. Count: 141, Neg. LLF: 146.32660746290395
Iteration: 16, Func. Count: 150, Neg. LLF: 146.56393147083534
Iteration: 17, Func. Count: 160, Neg. LLF: 150.29932317839211
Iteration: 18, Func. Count: 170, Neg. LLF: 146.0831905259704
Iteration: 19, Func. Count: 179, Neg. LLF: 146.0179243529883
Iteration: 20, Func. Count: 188, Neg. LLF: 146.01467263227178
Iteration: 21, Func. Count: 197, Neg. LLF: 146.0114014781015
Iteration: 22, Func. Count: 206, Neg. LLF: 146.01131126314058
Iteration: 23, Func. Count: 215, Neg. LLF: 146.01129137952356
Iteration: 24, Func. Count: 223, Neg. LLF: 146.01129161622848
Optimization terminated successfully (Exit mode 0)
Current function value: 146.01129137952356
Iterations: 24
Function evaluations: 223
Gradient evaluations: 24
Iteration: 1, Func. Count: 11, Neg. LLF: 178.45321092578794
Iteration: 2, Func. Count: 23, Neg. LLF: 149.53583481021266
Iteration: 3, Func. Count: 34, Neg. LLF: 150.30699611696377
Iteration: 4, Func. Count: 45, Neg. LLF: 149.10723151067629
Iteration: 5, Func. Count: 55, Neg. LLF: 149.08195221517036
Iteration: 6, Func. Count: 65, Neg. LLF: 148.87250002857382
Iteration: 7, Func. Count: 75, Neg. LLF: 148.85861337615896
Iteration: 8, Func. Count: 85, Neg. LLF: 148.85438878069493
Iteration: 9, Func. Count: 95, Neg. LLF: 148.8521726615214
Iteration: 10, Func. Count: 105, Neg. LLF: 148.8494361039757
Iteration: 11, Func. Count: 115, Neg. LLF: 148.84866594348023
Iteration: 12, Func. Count: 125, Neg. LLF: 148.84759266005707
Iteration: 13, Func. Count: 135, Neg. LLF: 148.845281220553
Iteration: 14, Func. Count: 145, Neg. LLF: 148.8394717115933
Iteration: 15, Func. Count: 155, Neg. LLF: 148.8231310645635
Iteration: 16, Func. Count: 165, Neg. LLF: 148.27906671657226
Iteration: 17, Func. Count: 175, Neg. LLF: 158.22351435350487
Iteration: 18, Func. Count: 186, Neg. LLF: 149.89706754418037
Iteration: 19, Func. Count: 197, Neg. LLF: 148.13520644179448
Iteration: 20, Func. Count: 208, Neg. LLF: 25864763.503516156
Iteration: 21, Func. Count: 220, Neg. LLF: 161.39725867619683
Iteration: 22, Func. Count: 231, Neg. LLF: 148.3137773934041
Iteration: 23, Func. Count: 242, Neg. LLF: 148.2290908950288
Iteration: 24, Func. Count: 253, Neg. LLF: 147.8722168581998
Iteration: 25, Func. Count: 263, Neg. LLF: 147.84091552551672
Iteration: 26, Func. Count: 273, Neg. LLF: 147.84061397653292
Iteration: 27, Func. Count: 283, Neg. LLF: 147.84059957775622
Iteration: 28, Func. Count: 292, Neg. LLF: 147.8405995775739
Optimization terminated successfully (Exit mode 0)
Current function value: 147.84059957775622
Iterations: 29
Function evaluations: 292
Gradient evaluations: 28
Iteration: 1, Func. Count: 8, Neg. LLF: 164.29374907825508
Iteration: 2, Func. Count: 17, Neg. LLF: 149.10644524102113
Iteration: 3, Func. Count: 24, Neg. LLF: 148.2856335478288
Iteration: 4, Func. Count: 32, Neg. LLF: 146.4325709379772
Iteration: 5, Func. Count: 39, Neg. LLF: 146.32459673298646
Iteration: 6, Func. Count: 46, Neg. LLF: 146.17894271157132
Iteration: 7, Func. Count: 53, Neg. LLF: 146.12277094415927
Iteration: 8, Func. Count: 60, Neg. LLF: 146.17778932088456
Iteration: 9, Func. Count: 68, Neg. LLF: 146.02989171309258
Iteration: 10, Func. Count: 75, Neg. LLF: 146.0142977491476
Iteration: 11, Func. Count: 82, Neg. LLF: 146.0137186182892
Iteration: 12, Func. Count: 89, Neg. LLF: 146.0137102924004
Iteration: 13, Func. Count: 95, Neg. LLF: 146.01371028675263
Optimization terminated successfully (Exit mode 0)
Current function value: 146.0137102924004
Iterations: 13
Function evaluations: 95
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 157.8137368890569
Iteration: 2, Func. Count: 20, Neg. LLF: 152.16082011661382
Iteration: 3, Func. Count: 30, Neg. LLF: 149.22160770291887
Iteration: 4, Func. Count: 39, Neg. LLF: 149.0768951643252
Iteration: 5, Func. Count: 48, Neg. LLF: 149.1293005279662
Iteration: 6, Func. Count: 57, Neg. LLF: 149.03071154700524
Iteration: 7, Func. Count: 65, Neg. LLF: 149.08336571177549
Iteration: 8, Func. Count: 74, Neg. LLF: 149.02502939564678
Iteration: 9, Func. Count: 82, Neg. LLF: 149.02367178142464
Iteration: 10, Func. Count: 90, Neg. LLF: 149.0232400083064
Iteration: 11, Func. Count: 98, Neg. LLF: 149.0228816815211
Iteration: 12, Func. Count: 106, Neg. LLF: 149.02231031065733
Iteration: 13, Func. Count: 114, Neg. LLF: 149.01930689279584
Iteration: 14, Func. Count: 122, Neg. LLF: 149.01166358912843
Iteration: 15, Func. Count: 130, Neg. LLF: 148.97236490039035
Iteration: 16, Func. Count: 138, Neg. LLF: 148.8071293484542
Iteration: 17, Func. Count: 146, Neg. LLF: 148.78406366067242
Iteration: 18, Func. Count: 154, Neg. LLF: 148.77122390025244
Iteration: 19, Func. Count: 162, Neg. LLF: 148.7667001678648
Iteration: 20, Func. Count: 170, Neg. LLF: 148.76606982994096
Iteration: 21, Func. Count: 178, Neg. LLF: 148.76584613998827
Iteration: 22, Func. Count: 186, Neg. LLF: 148.7656472241466
Iteration: 23, Func. Count: 194, Neg. LLF: 148.76555931704988
Iteration: 24, Func. Count: 202, Neg. LLF: 148.7655178084082
Iteration: 25, Func. Count: 210, Neg. LLF: 148.76549801891014
Iteration: 26, Func. Count: 218, Neg. LLF: 148.76549048626973
Iteration: 27, Func. Count: 226, Neg. LLF: 148.76548946306258
Iteration: 28, Func. Count: 233, Neg. LLF: 148.76548947947927
Optimization terminated successfully (Exit mode 0)
Current function value: 148.76548946306258
Iterations: 28
Function evaluations: 233
Gradient evaluations: 28
Iteration: 1, Func. Count: 10, Neg. LLF: 158.42032863682033
Iteration: 2, Func. Count: 22, Neg. LLF: 154.0486589692899
Iteration: 3, Func. Count: 33, Neg. LLF: 149.1603885097134
Iteration: 4, Func. Count: 43, Neg. LLF: 149.02949407783515
Iteration: 5, Func. Count: 53, Neg. LLF: 149.2606502152963
Iteration: 6, Func. Count: 63, Neg. LLF: 149.0039558175358
Iteration: 7, Func. Count: 73, Neg. LLF: 149.04323334497985
Iteration: 8, Func. Count: 83, Neg. LLF: 148.99084092257647
Iteration: 9, Func. Count: 92, Neg. LLF: 148.9900914786394
Iteration: 10, Func. Count: 101, Neg. LLF: 148.98664297539835
Iteration: 11, Func. Count: 110, Neg. LLF: 148.977875470816
Iteration: 12, Func. Count: 119, Neg. LLF: 148.9591943921758
Iteration: 13, Func. Count: 128, Neg. LLF: 148.88895158150848
Iteration: 14, Func. Count: 137, Neg. LLF: 148.80128751622917
Iteration: 15, Func. Count: 146, Neg. LLF: 148.78111917485188
Iteration: 16, Func. Count: 155, Neg. LLF: 148.77080273247793
Iteration: 17, Func. Count: 164, Neg. LLF: 148.76708359023874
Iteration: 18, Func. Count: 173, Neg. LLF: 148.76603298662073
Iteration: 19, Func. Count: 182, Neg. LLF: 148.76557450875092
Iteration: 20, Func. Count: 191, Neg. LLF: 148.76552133454746
Iteration: 21, Func. Count: 200, Neg. LLF: 148.76549293499048
Iteration: 22, Func. Count: 209, Neg. LLF: 148.7654898181055
Iteration: 23, Func. Count: 217, Neg. LLF: 148.76548983352504
Optimization terminated successfully (Exit mode 0)
Current function value: 148.7654898181055
Iterations: 23
Function evaluations: 217
Gradient evaluations: 23
Iteration: 1, Func. Count: 11, Neg. LLF: 158.30775363845854
Iteration: 2, Func. Count: 24, Neg. LLF: 153.928814407256
Iteration: 3, Func. Count: 35, Neg. LLF: 148.82365950959013
Iteration: 4, Func. Count: 45, Neg. LLF: 148.837178815548
Iteration: 5, Func. Count: 56, Neg. LLF: 148.4137247977573
Iteration: 6, Func. Count: 66, Neg. LLF: 147.96715992553996
Iteration: 7, Func. Count: 76, Neg. LLF: 163.45276508177182
Iteration: 8, Func. Count: 88, Neg. LLF: 147.723921103739
Iteration: 9, Func. Count: 98, Neg. LLF: 147.4645730301614
Iteration: 10, Func. Count: 108, Neg. LLF: 147.23288643261458
Iteration: 11, Func. Count: 118, Neg. LLF: 147.1570155155508
Iteration: 12, Func. Count: 128, Neg. LLF: 146.97416706375614
Iteration: 13, Func. Count: 138, Neg. LLF: 146.89443774490832
Iteration: 14, Func. Count: 148, Neg. LLF: 146.86158570814217
Iteration: 15, Func. Count: 158, Neg. LLF: 146.85432032520535
Iteration: 16, Func. Count: 168, Neg. LLF: 146.85343791842675
Iteration: 17, Func. Count: 178, Neg. LLF: 146.85336025102265
Iteration: 18, Func. Count: 188, Neg. LLF: 146.85335706133864
Iteration: 19, Func. Count: 197, Neg. LLF: 146.85335706133847
Optimization terminated successfully (Exit mode 0)
Current function value: 146.85335706133864
Iterations: 19
Function evaluations: 197
Gradient evaluations: 19
Iteration: 1, Func. Count: 12, Neg. LLF: 158.32591763060753
Iteration: 2, Func. Count: 26, Neg. LLF: 153.86452327920318
Iteration: 3, Func. Count: 38, Neg. LLF: 148.89913266657462
Iteration: 4, Func. Count: 49, Neg. LLF: 148.82393254046897
Iteration: 5, Func. Count: 60, Neg. LLF: 150.40280460703084
Iteration: 6, Func. Count: 72, Neg. LLF: 148.7666605856047
Iteration: 7, Func. Count: 84, Neg. LLF: 148.71959498091383
Iteration: 8, Func. Count: 96, Neg. LLF: 148.3664841042822
Iteration: 9, Func. Count: 107, Neg. LLF: 148.2992239299588
Iteration: 10, Func. Count: 118, Neg. LLF: 148.26712365704472
Iteration: 11, Func. Count: 129, Neg. LLF: 148.26118025993216
Iteration: 12, Func. Count: 140, Neg. LLF: 148.2561101464629
Iteration: 13, Func. Count: 151, Neg. LLF: 148.25113160979222
Iteration: 14, Func. Count: 162, Neg. LLF: 148.24684979276077
Iteration: 15, Func. Count: 173, Neg. LLF: 148.24145177491397
Iteration: 16, Func. Count: 184, Neg. LLF: 148.26703661281854
Iteration: 17, Func. Count: 196, Neg. LLF: 148.24131590807932
Iteration: 18, Func. Count: 208, Neg. LLF: 148.23311128454014
Iteration: 19, Func. Count: 219, Neg. LLF: 148.23117737242802
Iteration: 20, Func. Count: 230, Neg. LLF: 148.23098483642846
Iteration: 21, Func. Count: 241, Neg. LLF: 148.23093838850488
Iteration: 22, Func. Count: 251, Neg. LLF: 148.23093838852844
Optimization terminated successfully (Exit mode 0)
Current function value: 148.23093838850488
Iterations: 22
Function evaluations: 251
Gradient evaluations: 22
Iteration: 1, Func. Count: 9, Neg. LLF: 162.4450140937597
Iteration: 2, Func. Count: 19, Neg. LLF: 149.81810646907087
Iteration: 3, Func. Count: 27, Neg. LLF: 148.3995404347966
Iteration: 4, Func. Count: 35, Neg. LLF: 146.55490262114472
Iteration: 5, Func. Count: 43, Neg. LLF: 146.33661979227793
Iteration: 6, Func. Count: 51, Neg. LLF: 146.22993606875534
Iteration: 7, Func. Count: 59, Neg. LLF: 146.15691520236106
Iteration: 8, Func. Count: 67, Neg. LLF: 146.13394087280165
Iteration: 9, Func. Count: 75, Neg. LLF: 148.0765023049967
Iteration: 10, Func. Count: 84, Neg. LLF: 146.0209476192372
Iteration: 11, Func. Count: 92, Neg. LLF: 146.01395591581806
Iteration: 12, Func. Count: 100, Neg. LLF: 146.0137114032354
Iteration: 13, Func. Count: 108, Neg. LLF: 146.01370999032875
Iteration: 14, Func. Count: 115, Neg. LLF: 146.01371012051106
Optimization terminated successfully (Exit mode 0)
Current function value: 146.01370999032875
Iterations: 14
Function evaluations: 115
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 158.2177861846271
Iteration: 2, Func. Count: 22, Neg. LLF: 150.03542063103026
Iteration: 3, Func. Count: 32, Neg. LLF: 149.29150905568568
Iteration: 4, Func. Count: 42, Neg. LLF: 149.07177928368068
Iteration: 5, Func. Count: 51, Neg. LLF: 150.11140079316843
Iteration: 6, Func. Count: 62, Neg. LLF: 149.05121487846614
Iteration: 7, Func. Count: 72, Neg. LLF: 149.036871484662
Iteration: 8, Func. Count: 82, Neg. LLF: 149.1343224951046
Iteration: 9, Func. Count: 92, Neg. LLF: 149.0233914206603
Iteration: 10, Func. Count: 101, Neg. LLF: 149.02317633481672
Iteration: 11, Func. Count: 110, Neg. LLF: 149.02218230211795
Iteration: 12, Func. Count: 119, Neg. LLF: 149.01944952336754
Iteration: 13, Func. Count: 128, Neg. LLF: 149.01149439100445
Iteration: 14, Func. Count: 137, Neg. LLF: 148.9620876673959
Iteration: 15, Func. Count: 146, Neg. LLF: 148.85366538331192
Iteration: 16, Func. Count: 155, Neg. LLF: 148.9680051033414
Iteration: 17, Func. Count: 165, Neg. LLF: 148.79089606825218
Iteration: 18, Func. Count: 174, Neg. LLF: 148.7724969560855
Iteration: 19, Func. Count: 183, Neg. LLF: 148.7681372122527
Iteration: 20, Func. Count: 192, Neg. LLF: 148.7669364710299
Iteration: 21, Func. Count: 201, Neg. LLF: 148.76651346771874
Iteration: 22, Func. Count: 210, Neg. LLF: 148.76605312015363
Iteration: 23, Func. Count: 219, Neg. LLF: 148.7657130559672
Iteration: 24, Func. Count: 228, Neg. LLF: 148.76555246018253
Iteration: 25, Func. Count: 237, Neg. LLF: 148.76550772405088
Iteration: 26, Func. Count: 246, Neg. LLF: 148.76549367026166
Iteration: 27, Func. Count: 255, Neg. LLF: 148.76548974260996
Iteration: 28, Func. Count: 263, Neg. LLF: 148.76548975906402
Optimization terminated successfully (Exit mode 0)
Current function value: 148.76548974260996
Iterations: 28
Function evaluations: 263
Gradient evaluations: 28
Iteration: 1, Func. Count: 11, Neg. LLF: 158.13227020536496
Iteration: 2, Func. Count: 24, Neg. LLF: 154.00280978070256
Iteration: 3, Func. Count: 36, Neg. LLF: 149.0730606900652
Iteration: 4, Func. Count: 46, Neg. LLF: 149.80173946897818
Iteration: 5, Func. Count: 57, Neg. LLF: 161.06038882455064
Iteration: 6, Func. Count: 68, Neg. LLF: 149.0294065154752
Iteration: 7, Func. Count: 79, Neg. LLF: 149.0027815259193
Iteration: 8, Func. Count: 89, Neg. LLF: 149.00073336992796
Iteration: 9, Func. Count: 100, Neg. LLF: 148.99004830773717
Iteration: 10, Func. Count: 110, Neg. LLF: 148.98903034671358
Iteration: 11, Func. Count: 120, Neg. LLF: 148.98738798752436
Iteration: 12, Func. Count: 130, Neg. LLF: 148.98440244924163
Iteration: 13, Func. Count: 140, Neg. LLF: 148.97404795443862
Iteration: 14, Func. Count: 150, Neg. LLF: 148.94039533365552
Iteration: 15, Func. Count: 160, Neg. LLF: 148.7694438392282
Iteration: 16, Func. Count: 170, Neg. LLF: 148.76682576653693
Iteration: 17, Func. Count: 180, Neg. LLF: 148.76597253238495
Iteration: 18, Func. Count: 190, Neg. LLF: 148.76559946806802
Iteration: 19, Func. Count: 200, Neg. LLF: 148.7655299490913
Iteration: 20, Func. Count: 210, Neg. LLF: 148.7655045023821
Iteration: 21, Func. Count: 220, Neg. LLF: 148.765499798934
Iteration: 22, Func. Count: 230, Neg. LLF: 148.7654932450609
Iteration: 23, Func. Count: 240, Neg. LLF: 148.7654902966011
Iteration: 24, Func. Count: 250, Neg. LLF: 148.76548946695704
Optimization terminated successfully (Exit mode 0)
Current function value: 148.76548946695704
Iterations: 24
Function evaluations: 250
Gradient evaluations: 24
Iteration: 1, Func. Count: 12, Neg. LLF: 158.0705025572866
Iteration: 2, Func. Count: 26, Neg. LLF: 153.88614776156987
Iteration: 3, Func. Count: 38, Neg. LLF: 148.76024415234002
Iteration: 4, Func. Count: 49, Neg. LLF: 149.13577898780218
Iteration: 5, Func. Count: 61, Neg. LLF: 148.4224411118236
Iteration: 6, Func. Count: 72, Neg. LLF: 148.0122034698484
Iteration: 7, Func. Count: 83, Neg. LLF: 159.78478909780512
Iteration: 8, Func. Count: 95, Neg. LLF: 147.74674809142917
Iteration: 9, Func. Count: 106, Neg. LLF: 147.61338363723152
Iteration: 10, Func. Count: 117, Neg. LLF: 147.38571280383732
Iteration: 11, Func. Count: 128, Neg. LLF: 147.15190647736608
Iteration: 12, Func. Count: 139, Neg. LLF: 147.0328753408072
Iteration: 13, Func. Count: 150, Neg. LLF: 146.90917401613828
Iteration: 14, Func. Count: 161, Neg. LLF: 146.87062798885827
Iteration: 15, Func. Count: 172, Neg. LLF: 146.85487675074967
Iteration: 16, Func. Count: 183, Neg. LLF: 146.85395183877674
Iteration: 17, Func. Count: 194, Neg. LLF: 146.85338754977803
Iteration: 18, Func. Count: 205, Neg. LLF: 146.85335930472746
Iteration: 19, Func. Count: 216, Neg. LLF: 146.85335716334978
Iteration: 20, Func. Count: 226, Neg. LLF: 146.85335716333563
Optimization terminated successfully (Exit mode 0)
Current function value: 146.85335716334978
Iterations: 20
Function evaluations: 226
Gradient evaluations: 20
Iteration: 1, Func. Count: 13, Neg. LLF: 158.05086732364936
Iteration: 2, Func. Count: 28, Neg. LLF: 153.789952515983
Iteration: 3, Func. Count: 41, Neg. LLF: 148.82856660134027
Iteration: 4, Func. Count: 53, Neg. LLF: 149.17903895222935
Iteration: 5, Func. Count: 66, Neg. LLF: 148.3821548249077
Iteration: 6, Func. Count: 78, Neg. LLF: 147.94603928661675
Iteration: 7, Func. Count: 90, Neg. LLF: 163.54611223533686
Iteration: 8, Func. Count: 104, Neg. LLF: 147.73506627770135
Iteration: 9, Func. Count: 116, Neg. LLF: 147.56045394103032
Iteration: 10, Func. Count: 128, Neg. LLF: 147.32072867485894
Iteration: 11, Func. Count: 140, Neg. LLF: 147.18709236714344
Iteration: 12, Func. Count: 152, Neg. LLF: 146.98262351834092
Iteration: 13, Func. Count: 164, Neg. LLF: 146.9053416040931
Iteration: 14, Func. Count: 176, Neg. LLF: 146.86490357008412
Iteration: 15, Func. Count: 188, Neg. LLF: 146.85555034990446
Iteration: 16, Func. Count: 200, Neg. LLF: 146.8535294133068
Iteration: 17, Func. Count: 212, Neg. LLF: 146.85339396176755
Iteration: 18, Func. Count: 224, Neg. LLF: 146.8533572215867
Iteration: 19, Func. Count: 235, Neg. LLF: 146.85335726112055
Optimization terminated successfully (Exit mode 0)
Current function value: 146.8533572215867
Iterations: 19
Function evaluations: 235
Gradient evaluations: 19
Iteration: 1, Func. Count: 6, Neg. LLF: 148.91952190407875
Iteration: 2, Func. Count: 11, Neg. LLF: 148.90568069182697
Iteration: 3, Func. Count: 16, Neg. LLF: 148.7788098063359
Iteration: 4, Func. Count: 21, Neg. LLF: 148.73569054125807
Iteration: 5, Func. Count: 26, Neg. LLF: 148.72923156945203
Iteration: 6, Func. Count: 31, Neg. LLF: 148.72904672108947
Iteration: 7, Func. Count: 36, Neg. LLF: 148.72904605263113
Optimization terminated successfully (Exit mode 0)
Current function value: 148.72904605263113
Iterations: 7
Function evaluations: 36
Gradient evaluations: 7
Iteration: 1, Func. Count: 7, Neg. LLF: 179.87720023517193
Iteration: 2, Func. Count: 15, Neg. LLF: 152.1834167530927
Iteration: 3, Func. Count: 23, Neg. LLF: 149.1216011176216
Iteration: 4, Func. Count: 29, Neg. LLF: 149.04931352702536
Iteration: 5, Func. Count: 35, Neg. LLF: 149.04743246745528
Iteration: 6, Func. Count: 41, Neg. LLF: 149.04710190319872
Iteration: 7, Func. Count: 47, Neg. LLF: 149.04520610554326
Iteration: 8, Func. Count: 53, Neg. LLF: 149.0428990931421
Iteration: 9, Func. Count: 59, Neg. LLF: 149.0421564334686
Iteration: 10, Func. Count: 65, Neg. LLF: 149.04194565558848
Iteration: 11, Func. Count: 71, Neg. LLF: 149.04194139824634
Iteration: 12, Func. Count: 76, Neg. LLF: 149.04194139824577
Optimization terminated successfully (Exit mode 0)
Current function value: 149.04194139824634
Iterations: 12
Function evaluations: 76
Gradient evaluations: 12
Iteration: 1, Func. Count: 8, Neg. LLF: 436.2983173935053
Iteration: 2, Func. Count: 17, Neg. LLF: 148.94275155533424
Iteration: 3, Func. Count: 24, Neg. LLF: 148.25437612801107
Iteration: 4, Func. Count: 31, Neg. LLF: 148.26474851554494
Iteration: 5, Func. Count: 39, Neg. LLF: 148.07637853814487
Iteration: 6, Func. Count: 46, Neg. LLF: 147.90899281364145
Iteration: 7, Func. Count: 53, Neg. LLF: 147.89284076411096
Iteration: 8, Func. Count: 60, Neg. LLF: 25678533.38414079
Iteration: 9, Func. Count: 69, Neg. LLF: 148.25475777678636
Iteration: 10, Func. Count: 77, Neg. LLF: 149.6618708311638
Iteration: 11, Func. Count: 86, Neg. LLF: 147.83190648190532
Iteration: 12, Func. Count: 94, Neg. LLF: 147.82646175596108
Iteration: 13, Func. Count: 101, Neg. LLF: 147.8264610784457
Optimization terminated successfully (Exit mode 0)
Current function value: 147.8264610784457
Iterations: 14
Function evaluations: 101
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 498.59423817324074
Iteration: 2, Func. Count: 19, Neg. LLF: 148.68639277767014
Iteration: 3, Func. Count: 27, Neg. LLF: 148.17031097523903
Iteration: 4, Func. Count: 35, Neg. LLF: 148.09418517986063
Iteration: 5, Func. Count: 43, Neg. LLF: 148.09988841950457
Iteration: 6, Func. Count: 52, Neg. LLF: 148.09155174487438
Iteration: 7, Func. Count: 60, Neg. LLF: 148.09153806455646
Iteration: 8, Func. Count: 67, Neg. LLF: 148.0915380643841
Optimization terminated successfully (Exit mode 0)
Current function value: 148.09153806455646
Iterations: 8
Function evaluations: 67
Gradient evaluations: 8
Iteration: 1, Func. Count: 10, Neg. LLF: 539.0955217606369
Iteration: 2, Func. Count: 21, Neg. LLF: 148.45416254920121
Iteration: 3, Func. Count: 30, Neg. LLF: 148.1506240124896
Iteration: 4, Func. Count: 39, Neg. LLF: 148.1170318019609
Iteration: 5, Func. Count: 48, Neg. LLF: 148.10778457985623
Iteration: 6, Func. Count: 57, Neg. LLF: 147.99951039715143
Iteration: 7, Func. Count: 66, Neg. LLF: 147.6922557687546
Iteration: 8, Func. Count: 75, Neg. LLF: 747.3463521075794
Iteration: 9, Func. Count: 87, Neg. LLF: 6211.12795132502
Iteration: 10, Func. Count: 99, Neg. LLF: 147.65291938972925
Iteration: 11, Func. Count: 110, Neg. LLF: 147.63790193652088
Iteration: 12, Func. Count: 119, Neg. LLF: 147.63789825981576
Iteration: 13, Func. Count: 127, Neg. LLF: 147.63789825982772
Optimization terminated successfully (Exit mode 0)
Current function value: 147.63789825981576
Iterations: 14
Function evaluations: 127
Gradient evaluations: 13
Iteration: 1, Func. Count: 7, Neg. LLF: 155.07061068824132
Iteration: 2, Func. Count: 14, Neg. LLF: 149.92689048882917
Iteration: 3, Func. Count: 21, Neg. LLF: 146.28035283124157
Iteration: 4, Func. Count: 27, Neg. LLF: 146.3259965701251
Iteration: 5, Func. Count: 34, Neg. LLF: 146.11030581272058
Iteration: 6, Func. Count: 40, Neg. LLF: 146.10038905839951
Iteration: 7, Func. Count: 46, Neg. LLF: 146.09474065380434
Iteration: 8, Func. Count: 52, Neg. LLF: 146.08284216273765
Iteration: 9, Func. Count: 58, Neg. LLF: 146.08281207016935
Iteration: 10, Func. Count: 64, Neg. LLF: 146.08281062648038
Iteration: 11, Func. Count: 69, Neg. LLF: 146.0828106227501
Optimization terminated successfully (Exit mode 0)
Current function value: 146.08281062648038
Iterations: 11
Function evaluations: 69
Gradient evaluations: 11
Iteration: 1, Func. Count: 8, Neg. LLF: 163.19741689937982
Iteration: 2, Func. Count: 18, Neg. LLF: 153.16098631312997
Iteration: 3, Func. Count: 27, Neg. LLF: 149.084035981278
Iteration: 4, Func. Count: 34, Neg. LLF: 149.04962226059496
Iteration: 5, Func. Count: 41, Neg. LLF: 149.047625927709
Iteration: 6, Func. Count: 48, Neg. LLF: 149.0473032746325
Iteration: 7, Func. Count: 55, Neg. LLF: 149.04561237892025
Iteration: 8, Func. Count: 62, Neg. LLF: 149.04316614931702
Iteration: 9, Func. Count: 69, Neg. LLF: 149.04229290879718
Iteration: 10, Func. Count: 76, Neg. LLF: 149.04196510693032
Iteration: 11, Func. Count: 83, Neg. LLF: 149.0419416075141
Iteration: 12, Func. Count: 89, Neg. LLF: 149.04194160748142
Optimization terminated successfully (Exit mode 0)
Current function value: 149.0419416075141
Iterations: 12
Function evaluations: 89
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 154.99996381221138
Iteration: 2, Func. Count: 19, Neg. LLF: 149.2345073378893
Iteration: 3, Func. Count: 28, Neg. LLF: 150.21118221704793
Iteration: 4, Func. Count: 37, Neg. LLF: 149.09281945130235
Iteration: 5, Func. Count: 46, Neg. LLF: 148.9872217504399
Iteration: 6, Func. Count: 54, Neg. LLF: 148.9934130889987
Iteration: 7, Func. Count: 63, Neg. LLF: 148.9549866763056
Iteration: 8, Func. Count: 71, Neg. LLF: 148.95128215222095
Iteration: 9, Func. Count: 79, Neg. LLF: 148.94487145849385
Iteration: 10, Func. Count: 87, Neg. LLF: 148.94108467632316
Iteration: 11, Func. Count: 95, Neg. LLF: 148.93209059510917
Iteration: 12, Func. Count: 103, Neg. LLF: 148.9154544977669
Iteration: 13, Func. Count: 111, Neg. LLF: 148.8161376758505
Iteration: 14, Func. Count: 119, Neg. LLF: 148.99364644401857
Iteration: 15, Func. Count: 128, Neg. LLF: 148.72287843763414
Iteration: 16, Func. Count: 136, Neg. LLF: 148.74642771086715
Iteration: 17, Func. Count: 145, Neg. LLF: 148.7179241785967
Iteration: 18, Func. Count: 153, Neg. LLF: 148.71670234234242
Iteration: 19, Func. Count: 161, Neg. LLF: 148.71669552576049
Iteration: 20, Func. Count: 169, Neg. LLF: 148.71669152067912
Iteration: 21, Func. Count: 177, Neg. LLF: 148.7166722600199
Iteration: 22, Func. Count: 185, Neg. LLF: 148.71665977230916
Iteration: 23, Func. Count: 193, Neg. LLF: 148.71665866157517
Iteration: 24, Func. Count: 200, Neg. LLF: 148.71665866152696
Optimization terminated successfully (Exit mode 0)
Current function value: 148.71665866157517
Iterations: 24
Function evaluations: 200
Gradient evaluations: 24
Iteration: 1, Func. Count: 10, Neg. LLF: 169.00666487129013
Iteration: 2, Func. Count: 21, Neg. LLF: 149.65888768941002
Iteration: 3, Func. Count: 31, Neg. LLF: 149.16630022343838
Iteration: 4, Func. Count: 41, Neg. LLF: 149.10202881067534
Iteration: 5, Func. Count: 51, Neg. LLF: 149.1828462292845
Iteration: 6, Func. Count: 61, Neg. LLF: 148.95810683015634
Iteration: 7, Func. Count: 70, Neg. LLF: 149.01294627725295
Iteration: 8, Func. Count: 80, Neg. LLF: 148.94690176872786
Iteration: 9, Func. Count: 89, Neg. LLF: 148.94205089541464
Iteration: 10, Func. Count: 98, Neg. LLF: 148.9379444923348
Iteration: 11, Func. Count: 107, Neg. LLF: 148.9193092757309
Iteration: 12, Func. Count: 116, Neg. LLF: 148.89575577161975
Iteration: 13, Func. Count: 125, Neg. LLF: 148.85582979342803
Iteration: 14, Func. Count: 134, Neg. LLF: 148.79727640408677
Iteration: 15, Func. Count: 143, Neg. LLF: 148.91902460004596
Iteration: 16, Func. Count: 153, Neg. LLF: 148.76970409571717
Iteration: 17, Func. Count: 162, Neg. LLF: 148.76117910181588
Iteration: 18, Func. Count: 171, Neg. LLF: 148.7537154402905
Iteration: 19, Func. Count: 180, Neg. LLF: 148.73831247491646
Iteration: 20, Func. Count: 189, Neg. LLF: 148.71874917726706
Iteration: 21, Func. Count: 198, Neg. LLF: 148.71678366830022
Iteration: 22, Func. Count: 207, Neg. LLF: 148.716676691992
Iteration: 23, Func. Count: 216, Neg. LLF: 148.71665908228374
Iteration: 24, Func. Count: 224, Neg. LLF: 148.7166591978979
Optimization terminated successfully (Exit mode 0)
Current function value: 148.71665908228374
Iterations: 24
Function evaluations: 224
Gradient evaluations: 24
Iteration: 1, Func. Count: 11, Neg. LLF: 169.91644393204308
Iteration: 2, Func. Count: 24, Neg. LLF: 149.24749431827686
Iteration: 3, Func. Count: 34, Neg. LLF: 149.26480207572172
Iteration: 4, Func. Count: 45, Neg. LLF: 149.39708393595328
Iteration: 5, Func. Count: 56, Neg. LLF: 148.96105617238786
Iteration: 6, Func. Count: 66, Neg. LLF: 148.84723306687195
Iteration: 7, Func. Count: 76, Neg. LLF: 148.82157920900636
Iteration: 8, Func. Count: 86, Neg. LLF: 148.77183910508515
Iteration: 9, Func. Count: 96, Neg. LLF: 148.7604019176977
Iteration: 10, Func. Count: 106, Neg. LLF: 148.75231051661947
Iteration: 11, Func. Count: 116, Neg. LLF: 148.74952725548158
Iteration: 12, Func. Count: 126, Neg. LLF: 148.74670185753817
Iteration: 13, Func. Count: 136, Neg. LLF: 148.74041301419598
Iteration: 14, Func. Count: 146, Neg. LLF: 148.7311749443427
Iteration: 15, Func. Count: 156, Neg. LLF: 148.7224264819928
Iteration: 16, Func. Count: 166, Neg. LLF: 148.7179057365122
Iteration: 17, Func. Count: 176, Neg. LLF: 148.7167649298495
Iteration: 18, Func. Count: 186, Neg. LLF: 148.71666759296232
Iteration: 19, Func. Count: 196, Neg. LLF: 148.71665893785206
Iteration: 20, Func. Count: 205, Neg. LLF: 148.7166589859462
Optimization terminated successfully (Exit mode 0)
Current function value: 148.71665893785206
Iterations: 20
Function evaluations: 205
Gradient evaluations: 20
Iteration: 1, Func. Count: 8, Neg. LLF: 149.70945908037086
Iteration: 2, Func. Count: 15, Neg. LLF: 150.63657690733083
Iteration: 3, Func. Count: 23, Neg. LLF: 146.24882383443418
Iteration: 4, Func. Count: 30, Neg. LLF: 146.11864978091614
Iteration: 5, Func. Count: 37, Neg. LLF: 146.10915623302935
Iteration: 6, Func. Count: 44, Neg. LLF: 146.13663944772054
Iteration: 7, Func. Count: 52, Neg. LLF: 146.0837356976059
Iteration: 8, Func. Count: 59, Neg. LLF: 146.08281652524832
Iteration: 9, Func. Count: 66, Neg. LLF: 146.08281092678132
Iteration: 10, Func. Count: 72, Neg. LLF: 146.08281084408458
Optimization terminated successfully (Exit mode 0)
Current function value: 146.08281092678132
Iterations: 10
Function evaluations: 72
Gradient evaluations: 10
Iteration: 1, Func. Count: 9, Neg. LLF: 172.77537459779532
Iteration: 2, Func. Count: 20, Neg. LLF: 149.78910911863318
Iteration: 3, Func. Count: 29, Neg. LLF: 166.06734098127234
Iteration: 4, Func. Count: 39, Neg. LLF: 148.84891491365065
Iteration: 5, Func. Count: 47, Neg. LLF: 148.87946005833157
Iteration: 6, Func. Count: 56, Neg. LLF: 148.81006061372605
Iteration: 7, Func. Count: 65, Neg. LLF: 148.71886401392962
Iteration: 8, Func. Count: 73, Neg. LLF: 150.20734838270204
Iteration: 9, Func. Count: 82, Neg. LLF: 148.84497027917263
Iteration: 10, Func. Count: 91, Neg. LLF: 148.2636099250783
Iteration: 11, Func. Count: 99, Neg. LLF: 148.20682597737803
Iteration: 12, Func. Count: 107, Neg. LLF: 148.20576977963236
Iteration: 13, Func. Count: 116, Neg. LLF: 148.1968384307637
Iteration: 14, Func. Count: 124, Neg. LLF: 148.19682125148697
Iteration: 15, Func. Count: 131, Neg. LLF: 148.19682124387967
Optimization terminated successfully (Exit mode 0)
Current function value: 148.19682125148697
Iterations: 15
Function evaluations: 131
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 159.79538313372154
Iteration: 2, Func. Count: 21, Neg. LLF: 150.96139411567717
Iteration: 3, Func. Count: 31, Neg. LLF: 151.71478375214264
Iteration: 4, Func. Count: 41, Neg. LLF: 147.97300347505825
Iteration: 5, Func. Count: 50, Neg. LLF: 148.4931402543358
Iteration: 6, Func. Count: 61, Neg. LLF: 147.91664942275287
Iteration: 7, Func. Count: 71, Neg. LLF: 147.7661768213523
Iteration: 8, Func. Count: 80, Neg. LLF: 147.48661069579074
Iteration: 9, Func. Count: 89, Neg. LLF: 146.41525157671919
Iteration: 10, Func. Count: 98, Neg. LLF: 146.21816397766628
Iteration: 11, Func. Count: 107, Neg. LLF: 145.85690806376468
Iteration: 12, Func. Count: 116, Neg. LLF: 146.95996337421124
Iteration: 13, Func. Count: 126, Neg. LLF: 146.24191325819683
Iteration: 14, Func. Count: 136, Neg. LLF: 147.06546762121377
Iteration: 15, Func. Count: 146, Neg. LLF: 145.7511061414706
Iteration: 16, Func. Count: 156, Neg. LLF: 146.90493032217245
Iteration: 17, Func. Count: 166, Neg. LLF: 145.65500150682462
Iteration: 18, Func. Count: 176, Neg. LLF: 145.6375202962086
Iteration: 19, Func. Count: 186, Neg. LLF: 145.62127433532902
Iteration: 20, Func. Count: 195, Neg. LLF: 145.6183919085634
Iteration: 21, Func. Count: 204, Neg. LLF: 145.61832863857066
Iteration: 22, Func. Count: 213, Neg. LLF: 145.61832599702103
Iteration: 23, Func. Count: 221, Neg. LLF: 145.6183259425507
Optimization terminated successfully (Exit mode 0)
Current function value: 145.61832599702103
Iterations: 23
Function evaluations: 221
Gradient evaluations: 23
Iteration: 1, Func. Count: 11, Neg. LLF: 150.62779637920457
Iteration: 2, Func. Count: 25, Neg. LLF: 149.23898009981716
Iteration: 3, Func. Count: 36, Neg. LLF: 149.52413353434488
Iteration: 4, Func. Count: 47, Neg. LLF: 149.1019005963639
Iteration: 5, Func. Count: 57, Neg. LLF: 149.04955476382085
Iteration: 6, Func. Count: 67, Neg. LLF: 148.45298607951383
Iteration: 7, Func. Count: 77, Neg. LLF: 148.7956623322135
Iteration: 8, Func. Count: 88, Neg. LLF: 149.85556375885517
Iteration: 9, Func. Count: 99, Neg. LLF: 147.8381725651981
Iteration: 10, Func. Count: 109, Neg. LLF: 147.46395525503635
Iteration: 11, Func. Count: 119, Neg. LLF: 147.18326699888462
Iteration: 12, Func. Count: 129, Neg. LLF: 147.0101168605082
Iteration: 13, Func. Count: 139, Neg. LLF: 160.1581756835385
Iteration: 14, Func. Count: 151, Neg. LLF: 151.5490801087858
Iteration: 15, Func. Count: 162, Neg. LLF: 147.3187134725419
Iteration: 16, Func. Count: 173, Neg. LLF: 146.39993256083545
Iteration: 17, Func. Count: 184, Neg. LLF: 145.7260337143011
Iteration: 18, Func. Count: 194, Neg. LLF: 145.8034650104142
Iteration: 19, Func. Count: 205, Neg. LLF: 145.59415655765173
Iteration: 20, Func. Count: 215, Neg. LLF: 145.57778928046122
Iteration: 21, Func. Count: 225, Neg. LLF: 145.57111145704016
Iteration: 22, Func. Count: 235, Neg. LLF: 145.5698812254038
Iteration: 23, Func. Count: 245, Neg. LLF: 145.56931796945068
Iteration: 24, Func. Count: 255, Neg. LLF: 145.56927985936844
Iteration: 25, Func. Count: 265, Neg. LLF: 145.56927438440746
Iteration: 26, Func. Count: 274, Neg. LLF: 145.56927431687163
Optimization terminated successfully (Exit mode 0)
Current function value: 145.56927438440746
Iterations: 26
Function evaluations: 274
Gradient evaluations: 26
Iteration: 1, Func. Count: 12, Neg. LLF: 176.78727502254785
Iteration: 2, Func. Count: 25, Neg. LLF: 149.46100609518857
Iteration: 3, Func. Count: 37, Neg. LLF: 149.61953706174225
Iteration: 4, Func. Count: 49, Neg. LLF: 149.06588954229505
Iteration: 5, Func. Count: 60, Neg. LLF: 149.075754905249
Iteration: 6, Func. Count: 72, Neg. LLF: 148.9572715454319
Iteration: 7, Func. Count: 83, Neg. LLF: 148.87225419165983
Iteration: 8, Func. Count: 94, Neg. LLF: 148.8568918531748
Iteration: 9, Func. Count: 105, Neg. LLF: 148.85164983325583
Iteration: 10, Func. Count: 116, Neg. LLF: 148.85098238832552
Iteration: 11, Func. Count: 127, Neg. LLF: 148.84999985521117
Iteration: 12, Func. Count: 138, Neg. LLF: 148.84761046649854
Iteration: 13, Func. Count: 149, Neg. LLF: 148.84335881871826
Iteration: 14, Func. Count: 160, Neg. LLF: 148.83585645896588
Iteration: 15, Func. Count: 171, Neg. LLF: 148.78382944189067
Iteration: 16, Func. Count: 182, Neg. LLF: 147.99244500601134
Iteration: 17, Func. Count: 193, Neg. LLF: 173.23961079915077
Iteration: 18, Func. Count: 207, Neg. LLF: 155.9297371327498
Iteration: 19, Func. Count: 221, Neg. LLF: 148.23370752238156
Iteration: 20, Func. Count: 233, Neg. LLF: 336.6064205195432
Iteration: 21, Func. Count: 247, Neg. LLF: 2482611.008402656
Iteration: 22, Func. Count: 260, Neg. LLF: 151.2076895104662
Iteration: 23, Func. Count: 272, Neg. LLF: 147.61924522033246
Iteration: 24, Func. Count: 283, Neg. LLF: 147.48769614543048
Iteration: 25, Func. Count: 294, Neg. LLF: 147.43849661210191
Iteration: 26, Func. Count: 305, Neg. LLF: 147.43218898402037
Iteration: 27, Func. Count: 316, Neg. LLF: 147.43099843345124
Iteration: 28, Func. Count: 327, Neg. LLF: 147.43095713788958
Iteration: 29, Func. Count: 337, Neg. LLF: 147.43095713795267
Optimization terminated successfully (Exit mode 0)
Current function value: 147.43095713788958
Iterations: 30
Function evaluations: 337
Gradient evaluations: 29
Iteration: 1, Func. Count: 9, Neg. LLF: 163.2910994588747
Iteration: 2, Func. Count: 19, Neg. LLF: 146.90741233165429
Iteration: 3, Func. Count: 27, Neg. LLF: 149.60933810091393
Iteration: 4, Func. Count: 36, Neg. LLF: 146.41060177266098
Iteration: 5, Func. Count: 44, Neg. LLF: 146.21915803154096
Iteration: 6, Func. Count: 52, Neg. LLF: 146.04690722027905
Iteration: 7, Func. Count: 60, Neg. LLF: 146.02263115226899
Iteration: 8, Func. Count: 68, Neg. LLF: 146.09947763953542
Iteration: 9, Func. Count: 77, Neg. LLF: 146.013835676362
Iteration: 10, Func. Count: 85, Neg. LLF: 146.01371264009686
Iteration: 11, Func. Count: 93, Neg. LLF: 146.01371001182798
Iteration: 12, Func. Count: 100, Neg. LLF: 146.01371000615174
Optimization terminated successfully (Exit mode 0)
Current function value: 146.01371001182798
Iterations: 12
Function evaluations: 100
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 157.10149962351034
Iteration: 2, Func. Count: 22, Neg. LLF: 151.8945410185375
Iteration: 3, Func. Count: 33, Neg. LLF: 149.15990917026505
Iteration: 4, Func. Count: 43, Neg. LLF: 149.08963084431525
Iteration: 5, Func. Count: 53, Neg. LLF: 149.036400870429
Iteration: 6, Func. Count: 63, Neg. LLF: 149.02752536071765
Iteration: 7, Func. Count: 72, Neg. LLF: 149.15914143869026
Iteration: 8, Func. Count: 82, Neg. LLF: 149.02383338537584
Iteration: 9, Func. Count: 91, Neg. LLF: 149.0234126513082
Iteration: 10, Func. Count: 100, Neg. LLF: 149.02311534078424
Iteration: 11, Func. Count: 109, Neg. LLF: 149.02226455226202
Iteration: 12, Func. Count: 118, Neg. LLF: 149.01973115322932
Iteration: 13, Func. Count: 127, Neg. LLF: 149.01230690664593
Iteration: 14, Func. Count: 136, Neg. LLF: 148.97498105802248
Iteration: 15, Func. Count: 145, Neg. LLF: 148.86371995424736
Iteration: 16, Func. Count: 154, Neg. LLF: 148.89047800705617
Iteration: 17, Func. Count: 164, Neg. LLF: 148.77597509457772
Iteration: 18, Func. Count: 173, Neg. LLF: 148.76799036626997
Iteration: 19, Func. Count: 182, Neg. LLF: 148.76587447324923
Iteration: 20, Func. Count: 191, Neg. LLF: 148.7655652144658
Iteration: 21, Func. Count: 200, Neg. LLF: 148.76552562627117
Iteration: 22, Func. Count: 209, Neg. LLF: 148.7654919372388
Iteration: 23, Func. Count: 218, Neg. LLF: 148.76548962864817
Iteration: 24, Func. Count: 226, Neg. LLF: 148.76548964506583
Optimization terminated successfully (Exit mode 0)
Current function value: 148.76548962864817
Iterations: 24
Function evaluations: 226
Gradient evaluations: 24
Iteration: 1, Func. Count: 11, Neg. LLF: 158.27177833941926
Iteration: 2, Func. Count: 24, Neg. LLF: 154.17044202297535
Iteration: 3, Func. Count: 35, Neg. LLF: 148.19518567726874
Iteration: 4, Func. Count: 45, Neg. LLF: 147.91061914768144
Iteration: 5, Func. Count: 55, Neg. LLF: 147.69114266518378
Iteration: 6, Func. Count: 65, Neg. LLF: 148.32189899355555
Iteration: 7, Func. Count: 77, Neg. LLF: 150.22422069656207
Iteration: 8, Func. Count: 88, Neg. LLF: 147.51130352746407
Iteration: 9, Func. Count: 99, Neg. LLF: 158.30833126277108
Iteration: 10, Func. Count: 110, Neg. LLF: 146.8624330099967
Iteration: 11, Func. Count: 120, Neg. LLF: 146.19566088391943
Iteration: 12, Func. Count: 130, Neg. LLF: 145.8605311211081
Iteration: 13, Func. Count: 140, Neg. LLF: 146.1184502106736
Iteration: 14, Func. Count: 151, Neg. LLF: 145.7044260904481
Iteration: 15, Func. Count: 161, Neg. LLF: 146.20666761179538
Iteration: 16, Func. Count: 172, Neg. LLF: 146.20068927488865
Iteration: 17, Func. Count: 184, Neg. LLF: 145.78915200688664
Iteration: 18, Func. Count: 195, Neg. LLF: 145.69529284024065
Iteration: 19, Func. Count: 206, Neg. LLF: 145.5935291591792
Iteration: 20, Func. Count: 216, Neg. LLF: 145.5928594515677
Iteration: 21, Func. Count: 226, Neg. LLF: 145.59272909901816
Iteration: 22, Func. Count: 236, Neg. LLF: 145.59270947072326
Iteration: 23, Func. Count: 246, Neg. LLF: 145.5926996928314
Iteration: 24, Func. Count: 255, Neg. LLF: 145.5926996437264
Optimization terminated successfully (Exit mode 0)
Current function value: 145.5926996928314
Iterations: 24
Function evaluations: 255
Gradient evaluations: 24
Iteration: 1, Func. Count: 12, Neg. LLF: 158.19528766537184
Iteration: 2, Func. Count: 26, Neg. LLF: 153.90741699250125
Iteration: 3, Func. Count: 38, Neg. LLF: 148.78856382534877
Iteration: 4, Func. Count: 49, Neg. LLF: 148.8535532145885
Iteration: 5, Func. Count: 61, Neg. LLF: 148.410776676359
Iteration: 6, Func. Count: 72, Neg. LLF: 148.011850607577
Iteration: 7, Func. Count: 83, Neg. LLF: 160.34377243231464
Iteration: 8, Func. Count: 95, Neg. LLF: 147.69539614617722
Iteration: 9, Func. Count: 106, Neg. LLF: 147.50860788494666
Iteration: 10, Func. Count: 117, Neg. LLF: 147.2861299999321
Iteration: 11, Func. Count: 128, Neg. LLF: 147.1854187669785
Iteration: 12, Func. Count: 139, Neg. LLF: 147.01523132901966
Iteration: 13, Func. Count: 150, Neg. LLF: 146.93581634944468
Iteration: 14, Func. Count: 161, Neg. LLF: 146.87348957854272
Iteration: 15, Func. Count: 172, Neg. LLF: 146.85590578930396
Iteration: 16, Func. Count: 183, Neg. LLF: 146.85342150859978
Iteration: 17, Func. Count: 194, Neg. LLF: 146.85336586285376
Iteration: 18, Func. Count: 205, Neg. LLF: 146.85335991510192
Iteration: 19, Func. Count: 216, Neg. LLF: 146.85335701797365
Iteration: 20, Func. Count: 226, Neg. LLF: 146.85335701797754
Optimization terminated successfully (Exit mode 0)
Current function value: 146.85335701797365
Iterations: 20
Function evaluations: 226
Gradient evaluations: 20
Iteration: 1, Func. Count: 13, Neg. LLF: 158.1955037931859
Iteration: 2, Func. Count: 28, Neg. LLF: 153.84132118138615
Iteration: 3, Func. Count: 41, Neg. LLF: 148.6981183444753
Iteration: 4, Func. Count: 53, Neg. LLF: 148.7181764979771
Iteration: 5, Func. Count: 66, Neg. LLF: 148.66379500695857
Iteration: 6, Func. Count: 79, Neg. LLF: 149.91252847581782
Iteration: 7, Func. Count: 93, Neg. LLF: 148.40078000010178
Iteration: 8, Func. Count: 105, Neg. LLF: 148.35677347468695
Iteration: 9, Func. Count: 117, Neg. LLF: 148.32344396273814
Iteration: 10, Func. Count: 129, Neg. LLF: 148.2999350775147
Iteration: 11, Func. Count: 141, Neg. LLF: 148.27859483240644
Iteration: 12, Func. Count: 153, Neg. LLF: 148.26067288663577
Iteration: 13, Func. Count: 165, Neg. LLF: 148.25233937874373
Iteration: 14, Func. Count: 177, Neg. LLF: 148.24987933887365
Iteration: 15, Func. Count: 189, Neg. LLF: 148.2452203411067
Iteration: 16, Func. Count: 201, Neg. LLF: 148.24105332123557
Iteration: 17, Func. Count: 213, Neg. LLF: 148.23699445445067
Iteration: 18, Func. Count: 225, Neg. LLF: 148.2359907878217
Iteration: 19, Func. Count: 238, Neg. LLF: 148.2312526825904
Iteration: 20, Func. Count: 250, Neg. LLF: 148.23094161874303
Iteration: 21, Func. Count: 262, Neg. LLF: 148.23093940152657
Iteration: 22, Func. Count: 274, Neg. LLF: 148.23093835196525
Iteration: 23, Func. Count: 285, Neg. LLF: 148.23093835199978
Optimization terminated successfully (Exit mode 0)
Current function value: 148.23093835196525
Iterations: 23
Function evaluations: 285
Gradient evaluations: 23
Iteration: 1, Func. Count: 10, Neg. LLF: 161.09934729511897
Iteration: 2, Func. Count: 21, Neg. LLF: 146.8102362318512
Iteration: 3, Func. Count: 30, Neg. LLF: 147.35861240449913
Iteration: 4, Func. Count: 40, Neg. LLF: 146.41096052120474
Iteration: 5, Func. Count: 49, Neg. LLF: 146.15043367598184
Iteration: 6, Func. Count: 58, Neg. LLF: 146.07516046787984
Iteration: 7, Func. Count: 67, Neg. LLF: 146.19379424366622
Iteration: 8, Func. Count: 77, Neg. LLF: 146.0374412527755
Iteration: 9, Func. Count: 87, Neg. LLF: 146.0137143557345
Iteration: 10, Func. Count: 96, Neg. LLF: 146.01370997122953
Iteration: 11, Func. Count: 104, Neg. LLF: 146.0137101014235
Optimization terminated successfully (Exit mode 0)
Current function value: 146.01370997122953
Iterations: 11
Function evaluations: 104
Gradient evaluations: 11
Iteration: 1, Func. Count: 11, Neg. LLF: 158.08857529660673
Iteration: 2, Func. Count: 24, Neg. LLF: 149.83756003408635
Iteration: 3, Func. Count: 35, Neg. LLF: 149.18929707578022
Iteration: 4, Func. Count: 46, Neg. LLF: 149.08104109190805
Iteration: 5, Func. Count: 57, Neg. LLF: 149.79058612889588
Iteration: 6, Func. Count: 69, Neg. LLF: 149.02983551901136
Iteration: 7, Func. Count: 79, Neg. LLF: 149.0659981103472
Iteration: 8, Func. Count: 90, Neg. LLF: 149.02425681077403
Iteration: 9, Func. Count: 100, Neg. LLF: 149.02348192702644
Iteration: 10, Func. Count: 110, Neg. LLF: 149.02324227205335
Iteration: 11, Func. Count: 120, Neg. LLF: 149.02254134066993
Iteration: 12, Func. Count: 130, Neg. LLF: 149.0211009882613
Iteration: 13, Func. Count: 140, Neg. LLF: 149.01552698905903
Iteration: 14, Func. Count: 150, Neg. LLF: 148.99414767050013
Iteration: 15, Func. Count: 160, Neg. LLF: 148.80543225027304
Iteration: 16, Func. Count: 170, Neg. LLF: 148.78389952009016
Iteration: 17, Func. Count: 180, Neg. LLF: 148.76842498787175
Iteration: 18, Func. Count: 190, Neg. LLF: 148.76658894667642
Iteration: 19, Func. Count: 200, Neg. LLF: 148.7660079664837
Iteration: 20, Func. Count: 210, Neg. LLF: 148.7657635010803
Iteration: 21, Func. Count: 220, Neg. LLF: 148.76561128716125
Iteration: 22, Func. Count: 230, Neg. LLF: 148.7655403321322
Iteration: 23, Func. Count: 240, Neg. LLF: 148.76550338692022
Iteration: 24, Func. Count: 250, Neg. LLF: 148.76549125179562
Iteration: 25, Func. Count: 260, Neg. LLF: 148.76548952476472
Iteration: 26, Func. Count: 269, Neg. LLF: 148.76548954117692
Optimization terminated successfully (Exit mode 0)
Current function value: 148.76548952476472
Iterations: 26
Function evaluations: 269
Gradient evaluations: 26
Iteration: 1, Func. Count: 12, Neg. LLF: 157.99936594445907
Iteration: 2, Func. Count: 26, Neg. LLF: 153.92043278392325
Iteration: 3, Func. Count: 38, Neg. LLF: 147.92680798168786
Iteration: 4, Func. Count: 49, Neg. LLF: 147.8698442408404
Iteration: 5, Func. Count: 60, Neg. LLF: 147.7808763288893
Iteration: 6, Func. Count: 71, Neg. LLF: 164.48761615493856
Iteration: 7, Func. Count: 83, Neg. LLF: 147.35657582626695
Iteration: 8, Func. Count: 94, Neg. LLF: 151.77541054271882
Iteration: 9, Func. Count: 106, Neg. LLF: 190.59755625389354
Iteration: 10, Func. Count: 118, Neg. LLF: 153.29332114541103
Iteration: 11, Func. Count: 130, Neg. LLF: 146.2998903834325
Iteration: 12, Func. Count: 141, Neg. LLF: 146.22191961305654
Iteration: 13, Func. Count: 153, Neg. LLF: 146.53521807104372
Iteration: 14, Func. Count: 165, Neg. LLF: 153.3781555755986
Iteration: 15, Func. Count: 178, Neg. LLF: 146.2349331596728
Iteration: 16, Func. Count: 190, Neg. LLF: 145.60099714258317
Iteration: 17, Func. Count: 201, Neg. LLF: 145.43340329576603
Iteration: 18, Func. Count: 212, Neg. LLF: 145.41093802027996
Iteration: 19, Func. Count: 223, Neg. LLF: 145.40896392405116
Iteration: 20, Func. Count: 234, Neg. LLF: 145.40882649718378
Iteration: 21, Func. Count: 245, Neg. LLF: 145.4087835342042
Iteration: 22, Func. Count: 256, Neg. LLF: 145.40877883330208
Iteration: 23, Func. Count: 266, Neg. LLF: 145.40877877982592
Optimization terminated successfully (Exit mode 0)
Current function value: 145.40877883330208
Iterations: 23
Function evaluations: 266
Gradient evaluations: 23
Iteration: 1, Func. Count: 13, Neg. LLF: 157.96888867915874
Iteration: 2, Func. Count: 28, Neg. LLF: 153.87713242605423
Iteration: 3, Func. Count: 41, Neg. LLF: 148.7385255972844
Iteration: 4, Func. Count: 53, Neg. LLF: 149.15731093577156
Iteration: 5, Func. Count: 66, Neg. LLF: 148.48356999139924
Iteration: 6, Func. Count: 78, Neg. LLF: 148.11455746751525
Iteration: 7, Func. Count: 90, Neg. LLF: 159.49758486828173
Iteration: 8, Func. Count: 104, Neg. LLF: 147.79640183105923
Iteration: 9, Func. Count: 116, Neg. LLF: 147.70172657701417
Iteration: 10, Func. Count: 128, Neg. LLF: 147.56231953957345
Iteration: 11, Func. Count: 140, Neg. LLF: 147.26097847864355
Iteration: 12, Func. Count: 152, Neg. LLF: 147.14738849629072
Iteration: 13, Func. Count: 164, Neg. LLF: 146.929863330449
Iteration: 14, Func. Count: 176, Neg. LLF: 146.88751182057595
Iteration: 15, Func. Count: 188, Neg. LLF: 146.85811265179672
Iteration: 16, Func. Count: 200, Neg. LLF: 146.85402289377595
Iteration: 17, Func. Count: 212, Neg. LLF: 146.85339727788056
Iteration: 18, Func. Count: 224, Neg. LLF: 146.85335784499142
Iteration: 19, Func. Count: 236, Neg. LLF: 146.8533570619886
Optimization terminated successfully (Exit mode 0)
Current function value: 146.8533570619886
Iterations: 19
Function evaluations: 236
Gradient evaluations: 19
Iteration: 1, Func. Count: 14, Neg. LLF: 157.93377230878212
Iteration: 2, Func. Count: 30, Neg. LLF: 153.78182092807117
Iteration: 3, Func. Count: 44, Neg. LLF: 148.7214143398991
Iteration: 4, Func. Count: 57, Neg. LLF: 149.1988649060257
Iteration: 5, Func. Count: 71, Neg. LLF: 148.40960272462908
Iteration: 6, Func. Count: 84, Neg. LLF: 148.02752397335968
Iteration: 7, Func. Count: 97, Neg. LLF: 159.19899845054502
Iteration: 8, Func. Count: 112, Neg. LLF: 147.7471039638659
Iteration: 9, Func. Count: 125, Neg. LLF: 147.63426959378847
Iteration: 10, Func. Count: 138, Neg. LLF: 147.50661096043243
Iteration: 11, Func. Count: 151, Neg. LLF: 147.23494065813648
Iteration: 12, Func. Count: 164, Neg. LLF: 147.074487199474
Iteration: 13, Func. Count: 177, Neg. LLF: 146.95594436863976
Iteration: 14, Func. Count: 190, Neg. LLF: 146.88793797948753
Iteration: 15, Func. Count: 203, Neg. LLF: 146.86708203461822
Iteration: 16, Func. Count: 216, Neg. LLF: 146.85554288036477
Iteration: 17, Func. Count: 229, Neg. LLF: 146.85345439003245
Iteration: 18, Func. Count: 242, Neg. LLF: 146.8533589690287
Iteration: 19, Func. Count: 255, Neg. LLF: 146.85335708263574
Iteration: 20, Func. Count: 267, Neg. LLF: 146.85335712214138
Optimization terminated successfully (Exit mode 0)
Current function value: 146.85335708263574
Iterations: 20
Function evaluations: 267
Gradient evaluations: 20
Iteration: 1, Func. Count: 7, Neg. LLF: 153.7545407971166
Iteration: 2, Func. Count: 14, Neg. LLF: 157.73375182083242
Iteration: 3, Func. Count: 21, Neg. LLF: 150.01778792616255
Iteration: 4, Func. Count: 27, Neg. LLF: 149.42886663578858
Iteration: 5, Func. Count: 33, Neg. LLF: 149.90206244357938
Iteration: 6, Func. Count: 41, Neg. LLF: 149.04960517759415
Iteration: 7, Func. Count: 47, Neg. LLF: 149.01289583331075
Iteration: 8, Func. Count: 53, Neg. LLF: 148.99356392851652
Iteration: 9, Func. Count: 59, Neg. LLF: 148.98553485397753
Iteration: 10, Func. Count: 65, Neg. LLF: 148.9830058896894
Iteration: 11, Func. Count: 71, Neg. LLF: 148.98245431287006
Iteration: 12, Func. Count: 77, Neg. LLF: 148.98242615813868
Iteration: 13, Func. Count: 83, Neg. LLF: 148.98241638111537
Iteration: 14, Func. Count: 88, Neg. LLF: 148.98241638110656
Optimization terminated successfully (Exit mode 0)
Current function value: 148.98241638111537
Iterations: 14
Function evaluations: 88
Gradient evaluations: 14
Iteration: 1, Func. Count: 8, Neg. LLF: 155.03020208762078
Iteration: 2, Func. Count: 16, Neg. LLF: 156.79661287940917
Iteration: 3, Func. Count: 25, Neg. LLF: 170.28639875608332
Iteration: 4, Func. Count: 33, Neg. LLF: 148.15286428923346
Iteration: 5, Func. Count: 40, Neg. LLF: 151.62154615736125
Iteration: 6, Func. Count: 49, Neg. LLF: 148.1678687462763
Iteration: 7, Func. Count: 57, Neg. LLF: 148.10239580412662
Iteration: 8, Func. Count: 64, Neg. LLF: 148.10052165967727
Iteration: 9, Func. Count: 71, Neg. LLF: 148.0940686989781
Iteration: 10, Func. Count: 78, Neg. LLF: 148.08865022267412
Iteration: 11, Func. Count: 85, Neg. LLF: 148.08626263645908
Iteration: 12, Func. Count: 92, Neg. LLF: 148.08585790343596
Iteration: 13, Func. Count: 99, Neg. LLF: 148.0858475062064
Iteration: 14, Func. Count: 105, Neg. LLF: 148.0858475061978
Optimization terminated successfully (Exit mode 0)
Current function value: 148.0858475062064
Iterations: 14
Function evaluations: 105
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 151.89038800893562
Iteration: 2, Func. Count: 20, Neg. LLF: 152.29785739299595
Iteration: 3, Func. Count: 29, Neg. LLF: 148.49729603624363
Iteration: 4, Func. Count: 37, Neg. LLF: 148.53105599602176
Iteration: 5, Func. Count: 46, Neg. LLF: 148.4643110992122
Iteration: 6, Func. Count: 55, Neg. LLF: 148.4212397575178
Iteration: 7, Func. Count: 63, Neg. LLF: 148.35750522164207
Iteration: 8, Func. Count: 71, Neg. LLF: 148.30906665468038
Iteration: 9, Func. Count: 79, Neg. LLF: 148.25267507503122
Iteration: 10, Func. Count: 87, Neg. LLF: 148.19480638573776
Iteration: 11, Func. Count: 95, Neg. LLF: 148.1059787901809
Iteration: 12, Func. Count: 103, Neg. LLF: 148.08839626396704
Iteration: 13, Func. Count: 111, Neg. LLF: 148.08611565401185
Iteration: 14, Func. Count: 119, Neg. LLF: 148.08586595474017
Iteration: 15, Func. Count: 127, Neg. LLF: 148.08584787388747
Iteration: 16, Func. Count: 134, Neg. LLF: 148.0858479139763
Optimization terminated successfully (Exit mode 0)
Current function value: 148.08584787388747
Iterations: 16
Function evaluations: 134
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 151.81992185132518
Iteration: 2, Func. Count: 22, Neg. LLF: 152.17489148835836
Iteration: 3, Func. Count: 32, Neg. LLF: 148.4733548525421
Iteration: 4, Func. Count: 41, Neg. LLF: 148.5188388490869
Iteration: 5, Func. Count: 51, Neg. LLF: 148.44873951974483
Iteration: 6, Func. Count: 60, Neg. LLF: 148.42392175406988
Iteration: 7, Func. Count: 69, Neg. LLF: 148.3974960551974
Iteration: 8, Func. Count: 78, Neg. LLF: 148.35128745896773
Iteration: 9, Func. Count: 87, Neg. LLF: 148.2453139348727
Iteration: 10, Func. Count: 96, Neg. LLF: 148.190427038929
Iteration: 11, Func. Count: 105, Neg. LLF: 148.10246706312645
Iteration: 12, Func. Count: 114, Neg. LLF: 148.08744569549282
Iteration: 13, Func. Count: 123, Neg. LLF: 148.08597830775267
Iteration: 14, Func. Count: 132, Neg. LLF: 148.08584924711676
Iteration: 15, Func. Count: 141, Neg. LLF: 148.08584759270948
Iteration: 16, Func. Count: 149, Neg. LLF: 148.0858476451456
Optimization terminated successfully (Exit mode 0)
Current function value: 148.08584759270948
Iterations: 16
Function evaluations: 149
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 151.85260183092478
Iteration: 2, Func. Count: 24, Neg. LLF: 152.27495695143676
Iteration: 3, Func. Count: 35, Neg. LLF: 148.50835394593832
Iteration: 4, Func. Count: 45, Neg. LLF: 148.50488859022911
Iteration: 5, Func. Count: 56, Neg. LLF: 148.45905921045647
Iteration: 6, Func. Count: 66, Neg. LLF: 148.42492762153145
Iteration: 7, Func. Count: 76, Neg. LLF: 148.41560039450206
Iteration: 8, Func. Count: 86, Neg. LLF: 148.41041606722075
Iteration: 9, Func. Count: 96, Neg. LLF: 148.4044618261927
Iteration: 10, Func. Count: 106, Neg. LLF: 148.39608289444286
Iteration: 11, Func. Count: 116, Neg. LLF: 148.38593325551275
Iteration: 12, Func. Count: 126, Neg. LLF: 148.34480817521816
Iteration: 13, Func. Count: 136, Neg. LLF: 148.31088732850915
Iteration: 14, Func. Count: 146, Neg. LLF: 148.22423768328883
Iteration: 15, Func. Count: 156, Neg. LLF: 148.19407093143465
Iteration: 16, Func. Count: 166, Neg. LLF: 148.15093611778377
Iteration: 17, Func. Count: 176, Neg. LLF: 148.13136005994676
Iteration: 18, Func. Count: 186, Neg. LLF: 148.09158479897474
Iteration: 19, Func. Count: 196, Neg. LLF: 148.087674900215
Iteration: 20, Func. Count: 206, Neg. LLF: 148.08594930435325
Iteration: 21, Func. Count: 216, Neg. LLF: 148.085859383237
Iteration: 22, Func. Count: 226, Neg. LLF: 148.08585370942495
Iteration: 23, Func. Count: 236, Neg. LLF: 148.0858474972149
Iteration: 24, Func. Count: 245, Neg. LLF: 148.0858476221583
Optimization terminated successfully (Exit mode 0)
Current function value: 148.0858474972149
Iterations: 24
Function evaluations: 245
Gradient evaluations: 24
Iteration: 1, Func. Count: 8, Neg. LLF: 154.80299811689406
Iteration: 2, Func. Count: 16, Neg. LLF: 146.63724530528353
Iteration: 3, Func. Count: 23, Neg. LLF: 148.69475784828393
Iteration: 4, Func. Count: 31, Neg. LLF: 146.2237729146194
Iteration: 5, Func. Count: 38, Neg. LLF: 146.16239577530368
Iteration: 6, Func. Count: 45, Neg. LLF: 146.2433612332781
Iteration: 7, Func. Count: 53, Neg. LLF: 146.1052505027969
Iteration: 8, Func. Count: 60, Neg. LLF: 146.0859118613114
Iteration: 9, Func. Count: 67, Neg. LLF: 146.08320033365368
Iteration: 10, Func. Count: 74, Neg. LLF: 146.0828216750775
Iteration: 11, Func. Count: 81, Neg. LLF: 146.08281064614633
Iteration: 12, Func. Count: 87, Neg. LLF: 146.0828106424145
Optimization terminated successfully (Exit mode 0)
Current function value: 146.08281064614633
Iterations: 12
Function evaluations: 87
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 155.2813869003627
Iteration: 2, Func. Count: 18, Neg. LLF: 156.7607973717119
Iteration: 3, Func. Count: 28, Neg. LLF: 167.49511695513178
Iteration: 4, Func. Count: 37, Neg. LLF: 148.14497924749742
Iteration: 5, Func. Count: 45, Neg. LLF: 150.53387453537633
Iteration: 6, Func. Count: 54, Neg. LLF: 148.11916760523056
Iteration: 7, Func. Count: 62, Neg. LLF: 148.12096463870637
Iteration: 8, Func. Count: 71, Neg. LLF: 148.10053559344556
Iteration: 9, Func. Count: 79, Neg. LLF: 148.14450284319116
Iteration: 10, Func. Count: 89, Neg. LLF: 148.0962858276993
Iteration: 11, Func. Count: 97, Neg. LLF: 148.09038973251558
Iteration: 12, Func. Count: 105, Neg. LLF: 148.08640565904483
Iteration: 13, Func. Count: 113, Neg. LLF: 148.0858746633211
Iteration: 14, Func. Count: 121, Neg. LLF: 148.08584753429741
Iteration: 15, Func. Count: 128, Neg. LLF: 148.0858475342665
Optimization terminated successfully (Exit mode 0)
Current function value: 148.08584753429741
Iterations: 15
Function evaluations: 128
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 152.07938128072453
Iteration: 2, Func. Count: 22, Neg. LLF: 152.35921214058635
Iteration: 3, Func. Count: 32, Neg. LLF: 148.53060324890973
Iteration: 4, Func. Count: 41, Neg. LLF: 148.4996438421042
Iteration: 5, Func. Count: 50, Neg. LLF: 148.4662725759053
Iteration: 6, Func. Count: 59, Neg. LLF: 148.4653504521375
Iteration: 7, Func. Count: 69, Neg. LLF: 148.41358729136275
Iteration: 8, Func. Count: 78, Neg. LLF: 148.40349123197186
Iteration: 9, Func. Count: 87, Neg. LLF: 148.3585214435739
Iteration: 10, Func. Count: 96, Neg. LLF: 148.21869732728928
Iteration: 11, Func. Count: 105, Neg. LLF: 148.15912865243146
Iteration: 12, Func. Count: 114, Neg. LLF: 148.11759024318667
Iteration: 13, Func. Count: 123, Neg. LLF: 148.08957564823515
Iteration: 14, Func. Count: 132, Neg. LLF: 148.08591738966396
Iteration: 15, Func. Count: 141, Neg. LLF: 148.08585049783827
Iteration: 16, Func. Count: 150, Neg. LLF: 148.08584818365466
Iteration: 17, Func. Count: 159, Neg. LLF: 148.0858475157163
Optimization terminated successfully (Exit mode 0)
Current function value: 148.0858475157163
Iterations: 17
Function evaluations: 159
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 151.98426127955864
Iteration: 2, Func. Count: 24, Neg. LLF: 152.2105750618124
Iteration: 3, Func. Count: 35, Neg. LLF: 148.47802382912153
Iteration: 4, Func. Count: 45, Neg. LLF: 148.55162641944156
Iteration: 5, Func. Count: 56, Neg. LLF: 148.44811720667315
Iteration: 6, Func. Count: 66, Neg. LLF: 148.42229893009392
Iteration: 7, Func. Count: 76, Neg. LLF: 148.385530502357
Iteration: 8, Func. Count: 86, Neg. LLF: 148.36914866127523
Iteration: 9, Func. Count: 96, Neg. LLF: 148.30088788836616
Iteration: 10, Func. Count: 106, Neg. LLF: 148.13877647419542
Iteration: 11, Func. Count: 116, Neg. LLF: 148.10428707257273
Iteration: 12, Func. Count: 126, Neg. LLF: 148.08946129533916
Iteration: 13, Func. Count: 136, Neg. LLF: 148.0863302604652
Iteration: 14, Func. Count: 146, Neg. LLF: 148.085884063074
Iteration: 15, Func. Count: 156, Neg. LLF: 148.08584756076968
Iteration: 16, Func. Count: 165, Neg. LLF: 148.0858476131494
Optimization terminated successfully (Exit mode 0)
Current function value: 148.08584756076968
Iterations: 16
Function evaluations: 165
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 152.0249763179574
Iteration: 2, Func. Count: 26, Neg. LLF: 152.3445123276146
Iteration: 3, Func. Count: 38, Neg. LLF: 148.55272080796044
Iteration: 4, Func. Count: 49, Neg. LLF: 148.4842193651976
Iteration: 5, Func. Count: 60, Neg. LLF: 148.42952019846626
Iteration: 6, Func. Count: 71, Neg. LLF: 148.4240795537851
Iteration: 7, Func. Count: 82, Neg. LLF: 148.4146458904122
Iteration: 8, Func. Count: 93, Neg. LLF: 148.4095738646363
Iteration: 9, Func. Count: 104, Neg. LLF: 148.40419727258768
Iteration: 10, Func. Count: 115, Neg. LLF: 148.3894808047827
Iteration: 11, Func. Count: 126, Neg. LLF: 148.3618927220163
Iteration: 12, Func. Count: 137, Neg. LLF: 148.80020825213583
Iteration: 13, Func. Count: 149, Neg. LLF: 148.24490327625378
Iteration: 14, Func. Count: 160, Neg. LLF: 148.14489695315157
Iteration: 15, Func. Count: 171, Neg. LLF: 148.10216083588975
Iteration: 16, Func. Count: 182, Neg. LLF: 148.09248876066718
Iteration: 17, Func. Count: 193, Neg. LLF: 148.0881101109452
Iteration: 18, Func. Count: 204, Neg. LLF: 148.08632262070563
Iteration: 19, Func. Count: 215, Neg. LLF: 148.0858946059971
Iteration: 20, Func. Count: 226, Neg. LLF: 148.08584853046614
Iteration: 21, Func. Count: 237, Neg. LLF: 148.08584749819
Iteration: 22, Func. Count: 247, Neg. LLF: 148.08584762313254
Optimization terminated successfully (Exit mode 0)
Current function value: 148.08584749819
Iterations: 23
Function evaluations: 247
Gradient evaluations: 22
Iteration: 1, Func. Count: 9, Neg. LLF: 153.9862978554019
Iteration: 2, Func. Count: 18, Neg. LLF: 154.54649257289057
Iteration: 3, Func. Count: 27, Neg. LLF: 149.82099845477603
Iteration: 4, Func. Count: 35, Neg. LLF: 147.38865839007244
Iteration: 5, Func. Count: 43, Neg. LLF: 147.10247743913877
Iteration: 6, Func. Count: 51, Neg. LLF: 45552168.823997825
Iteration: 7, Func. Count: 61, Neg. LLF: 146.387949313759
Iteration: 8, Func. Count: 69, Neg. LLF: 146.10131458626194
Iteration: 9, Func. Count: 77, Neg. LLF: 146.1234908797894
Iteration: 10, Func. Count: 86, Neg. LLF: 146.08295163130794
Iteration: 11, Func. Count: 94, Neg. LLF: 146.08282489876692
Iteration: 12, Func. Count: 102, Neg. LLF: 146.08281638076338
Iteration: 13, Func. Count: 110, Neg. LLF: 146.08281083016314
Iteration: 14, Func. Count: 117, Neg. LLF: 146.0828109128565
Optimization terminated successfully (Exit mode 0)
Current function value: 146.08281083016314
Iterations: 14
Function evaluations: 117
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 155.11368635817007
Iteration: 2, Func. Count: 20, Neg. LLF: 156.71828842193986
Iteration: 3, Func. Count: 31, Neg. LLF: 167.6713840244041
Iteration: 4, Func. Count: 41, Neg. LLF: 148.14610450284042
Iteration: 5, Func. Count: 50, Neg. LLF: 152.72432834766343
Iteration: 6, Func. Count: 60, Neg. LLF: 148.0835181380731
Iteration: 7, Func. Count: 69, Neg. LLF: 148.16518150013897
Iteration: 8, Func. Count: 79, Neg. LLF: 148.079988143132
Iteration: 9, Func. Count: 88, Neg. LLF: 148.0781477577915
Iteration: 10, Func. Count: 97, Neg. LLF: 148.07308233571464
Iteration: 11, Func. Count: 106, Neg. LLF: 148.07019544631092
Iteration: 12, Func. Count: 115, Neg. LLF: 148.0690950250349
Iteration: 13, Func. Count: 124, Neg. LLF: 148.06899390183264
Iteration: 14, Func. Count: 133, Neg. LLF: 148.06899294687076
Optimization terminated successfully (Exit mode 0)
Current function value: 148.06899294687076
Iterations: 14
Function evaluations: 133
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 151.9934072892701
Iteration: 2, Func. Count: 24, Neg. LLF: 152.2997576382289
Iteration: 3, Func. Count: 35, Neg. LLF: 148.51491137699435
Iteration: 4, Func. Count: 45, Neg. LLF: 148.48632453102312
Iteration: 5, Func. Count: 56, Neg. LLF: 148.55054830364557
Iteration: 6, Func. Count: 67, Neg. LLF: 148.39701965785036
Iteration: 7, Func. Count: 77, Neg. LLF: 148.3703403434695
Iteration: 8, Func. Count: 87, Neg. LLF: 148.31424892078294
Iteration: 9, Func. Count: 97, Neg. LLF: 148.26424289883605
Iteration: 10, Func. Count: 107, Neg. LLF: 148.21750118848394
Iteration: 11, Func. Count: 117, Neg. LLF: 148.15212706588653
Iteration: 12, Func. Count: 127, Neg. LLF: 148.0806352136238
Iteration: 13, Func. Count: 137, Neg. LLF: 148.06996144524783
Iteration: 14, Func. Count: 147, Neg. LLF: 148.0690281656705
Iteration: 15, Func. Count: 157, Neg. LLF: 148.06899326702285
Iteration: 16, Func. Count: 166, Neg. LLF: 148.06899330852292
Optimization terminated successfully (Exit mode 0)
Current function value: 148.06899326702285
Iterations: 16
Function evaluations: 166
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 151.9228049084201
Iteration: 2, Func. Count: 26, Neg. LLF: 152.17659950003838
Iteration: 3, Func. Count: 38, Neg. LLF: 148.4750872104658
Iteration: 4, Func. Count: 49, Neg. LLF: 148.53175382216637
Iteration: 5, Func. Count: 61, Neg. LLF: 148.42214668932067
Iteration: 6, Func. Count: 72, Neg. LLF: 148.39038333882354
Iteration: 7, Func. Count: 83, Neg. LLF: 148.36355438308473
Iteration: 8, Func. Count: 94, Neg. LLF: 148.32384679923993
Iteration: 9, Func. Count: 105, Neg. LLF: 148.25593371022288
Iteration: 10, Func. Count: 116, Neg. LLF: 148.19439599278095
Iteration: 11, Func. Count: 127, Neg. LLF: 148.11330575478976
Iteration: 12, Func. Count: 138, Neg. LLF: 148.0745104839791
Iteration: 13, Func. Count: 149, Neg. LLF: 148.06972743857185
Iteration: 14, Func. Count: 160, Neg. LLF: 148.06929965740264
Iteration: 15, Func. Count: 171, Neg. LLF: 148.06899677570354
Iteration: 16, Func. Count: 182, Neg. LLF: 148.0689931516883
Iteration: 17, Func. Count: 192, Neg. LLF: 148.06899320222385
Optimization terminated successfully (Exit mode 0)
Current function value: 148.0689931516883
Iterations: 17
Function evaluations: 192
Gradient evaluations: 17
Iteration: 1, Func. Count: 13, Neg. LLF: 151.9461965219416
Iteration: 2, Func. Count: 28, Neg. LLF: 152.30249493990192
Iteration: 3, Func. Count: 41, Neg. LLF: 148.53333842328976
Iteration: 4, Func. Count: 53, Neg. LLF: 148.59388071131235
Iteration: 5, Func. Count: 66, Neg. LLF: 148.61551347680737
Iteration: 6, Func. Count: 79, Neg. LLF: 148.40512287338208
Iteration: 7, Func. Count: 91, Neg. LLF: 148.39807697962777
Iteration: 8, Func. Count: 103, Neg. LLF: 148.3886913182969
Iteration: 9, Func. Count: 115, Neg. LLF: 148.38181346551568
Iteration: 10, Func. Count: 127, Neg. LLF: 148.3645254104484
Iteration: 11, Func. Count: 139, Neg. LLF: 148.29427267899473
Iteration: 12, Func. Count: 151, Neg. LLF: 148.22643988769198
Iteration: 13, Func. Count: 163, Neg. LLF: 148.14289834344532
Iteration: 14, Func. Count: 175, Neg. LLF: 148.08247256606168
Iteration: 15, Func. Count: 187, Neg. LLF: 148.06974302989698
Iteration: 16, Func. Count: 199, Neg. LLF: 148.06900336370828
Iteration: 17, Func. Count: 211, Neg. LLF: 148.0689932792163
Iteration: 18, Func. Count: 222, Neg. LLF: 148.0689934031271
Optimization terminated successfully (Exit mode 0)
Current function value: 148.0689932792163
Iterations: 18
Function evaluations: 222
Gradient evaluations: 18
Iteration: 1, Func. Count: 10, Neg. LLF: 150.9087850513259
Iteration: 2, Func. Count: 19, Neg. LLF: 146.42116218990057
Iteration: 3, Func. Count: 28, Neg. LLF: 146.3447747010937
Iteration: 4, Func. Count: 37, Neg. LLF: 3158435.418025007
Iteration: 5, Func. Count: 47, Neg. LLF: 146.36681438247422
Iteration: 6, Func. Count: 57, Neg. LLF: 146.91701717096743
Iteration: 7, Func. Count: 67, Neg. LLF: 146.02311283807674
Iteration: 8, Func. Count: 76, Neg. LLF: 146.01426954493664
Iteration: 9, Func. Count: 85, Neg. LLF: 146.01374476036287
Iteration: 10, Func. Count: 94, Neg. LLF: 146.01371021680603
Iteration: 11, Func. Count: 102, Neg. LLF: 146.0137102110638
Optimization terminated successfully (Exit mode 0)
Current function value: 146.01371021680603
Iterations: 11
Function evaluations: 102
Gradient evaluations: 11
Iteration: 1, Func. Count: 11, Neg. LLF: 160.47550331931288
Iteration: 2, Func. Count: 22, Neg. LLF: 155.5542939177518
Iteration: 3, Func. Count: 34, Neg. LLF: 151.72365701137042
Iteration: 4, Func. Count: 46, Neg. LLF: 147.67899351220612
Iteration: 5, Func. Count: 56, Neg. LLF: 146.90295420223404
Iteration: 6, Func. Count: 66, Neg. LLF: 147.79048641508942
Iteration: 7, Func. Count: 77, Neg. LLF: 146.6876344215365
Iteration: 8, Func. Count: 87, Neg. LLF: 146.6023199666216
Iteration: 9, Func. Count: 97, Neg. LLF: 146.49442641018538
Iteration: 10, Func. Count: 107, Neg. LLF: 146.32156231466305
Iteration: 11, Func. Count: 117, Neg. LLF: 146.29559076523088
Iteration: 12, Func. Count: 127, Neg. LLF: 146.29469900358757
Iteration: 13, Func. Count: 137, Neg. LLF: 146.29400821753256
Iteration: 14, Func. Count: 147, Neg. LLF: 146.29392172013783
Iteration: 15, Func. Count: 157, Neg. LLF: 146.2938864785026
Iteration: 16, Func. Count: 166, Neg. LLF: 146.2938864784403
Optimization terminated successfully (Exit mode 0)
Current function value: 146.2938864785026
Iterations: 16
Function evaluations: 166
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 153.79155795301216
Iteration: 2, Func. Count: 26, Neg. LLF: 151.69100029170696
Iteration: 3, Func. Count: 38, Neg. LLF: 150.83935001718336
Iteration: 4, Func. Count: 50, Neg. LLF: 147.80526595594245
Iteration: 5, Func. Count: 61, Neg. LLF: 173.63451549018401
Iteration: 6, Func. Count: 73, Neg. LLF: 147.59311956312916
Iteration: 7, Func. Count: 84, Neg. LLF: 147.4878175742649
Iteration: 8, Func. Count: 95, Neg. LLF: 147.3664887864377
Iteration: 9, Func. Count: 106, Neg. LLF: 146.93758979363815
Iteration: 10, Func. Count: 117, Neg. LLF: 146.5260540128212
Iteration: 11, Func. Count: 128, Neg. LLF: 146.4367929868122
Iteration: 12, Func. Count: 139, Neg. LLF: 146.39717017618497
Iteration: 13, Func. Count: 151, Neg. LLF: 146.35241697706954
Iteration: 14, Func. Count: 163, Neg. LLF: 146.29703593775093
Iteration: 15, Func. Count: 174, Neg. LLF: 146.29402642686856
Iteration: 16, Func. Count: 185, Neg. LLF: 146.29389486492286
Iteration: 17, Func. Count: 196, Neg. LLF: 146.29388640730883
Iteration: 18, Func. Count: 206, Neg. LLF: 146.29388645422347
Optimization terminated successfully (Exit mode 0)
Current function value: 146.29388640730883
Iterations: 18
Function evaluations: 206
Gradient evaluations: 18
Iteration: 1, Func. Count: 13, Neg. LLF: 158.15754202062877
Iteration: 2, Func. Count: 28, Neg. LLF: 150.4534299908137
Iteration: 3, Func. Count: 41, Neg. LLF: 149.18677338111254
Iteration: 4, Func. Count: 54, Neg. LLF: 149.35233358641472
Iteration: 5, Func. Count: 67, Neg. LLF: 147.96660111442972
Iteration: 6, Func. Count: 79, Neg. LLF: 150.33758505231074
Iteration: 7, Func. Count: 92, Neg. LLF: 147.89751502758634
Iteration: 8, Func. Count: 105, Neg. LLF: 147.88341840657455
Iteration: 9, Func. Count: 118, Neg. LLF: 149.40666518548286
Iteration: 10, Func. Count: 131, Neg. LLF: 147.2347399712796
Iteration: 11, Func. Count: 143, Neg. LLF: 147.03012498958074
Iteration: 12, Func. Count: 155, Neg. LLF: 148.13965610349047
Iteration: 13, Func. Count: 168, Neg. LLF: 148.15345533583402
Iteration: 14, Func. Count: 181, Neg. LLF: 146.48035564258055
Iteration: 15, Func. Count: 193, Neg. LLF: 146.34641296314715
Iteration: 16, Func. Count: 205, Neg. LLF: 146.30954451822134
Iteration: 17, Func. Count: 217, Neg. LLF: 146.29648736974525
Iteration: 18, Func. Count: 229, Neg. LLF: 146.296553017473
Iteration: 19, Func. Count: 242, Neg. LLF: 146.2940519753028
Iteration: 20, Func. Count: 254, Neg. LLF: 146.29389543345786
Iteration: 21, Func. Count: 266, Neg. LLF: 146.2938876681751
Iteration: 22, Func. Count: 278, Neg. LLF: 146.29388624174612
Iteration: 23, Func. Count: 289, Neg. LLF: 146.29388631997588
Optimization terminated successfully (Exit mode 0)
Current function value: 146.29388624174612
Iterations: 23
Function evaluations: 289
Gradient evaluations: 23
Iteration: 1, Func. Count: 14, Neg. LLF: 158.1739831738666
Iteration: 2, Func. Count: 30, Neg. LLF: 153.84699227373542
Iteration: 3, Func. Count: 44, Neg. LLF: 148.73244033524412
Iteration: 4, Func. Count: 57, Neg. LLF: 148.69617822652887
Iteration: 5, Func. Count: 70, Neg. LLF: 150.4412819526355
Iteration: 6, Func. Count: 85, Neg. LLF: 151.9618106746137
Iteration: 7, Func. Count: 99, Neg. LLF: 148.41586901049112
Iteration: 8, Func. Count: 112, Neg. LLF: 148.35394293664643
Iteration: 9, Func. Count: 125, Neg. LLF: 148.31286404256085
Iteration: 10, Func. Count: 138, Neg. LLF: 148.2847909034214
Iteration: 11, Func. Count: 151, Neg. LLF: 148.2638180294554
Iteration: 12, Func. Count: 164, Neg. LLF: 148.25567998233782
Iteration: 13, Func. Count: 177, Neg. LLF: 148.251742277849
Iteration: 14, Func. Count: 190, Neg. LLF: 148.2489399897182
Iteration: 15, Func. Count: 203, Neg. LLF: 148.24332654736372
Iteration: 16, Func. Count: 216, Neg. LLF: 148.2374632966113
Iteration: 17, Func. Count: 229, Neg. LLF: 148.2352017560405
Iteration: 18, Func. Count: 242, Neg. LLF: 148.23608484981597
Iteration: 19, Func. Count: 256, Neg. LLF: 148.23107680962767
Iteration: 20, Func. Count: 269, Neg. LLF: 148.23094806714752
Iteration: 21, Func. Count: 282, Neg. LLF: 148.23093862496614
Iteration: 22, Func. Count: 294, Neg. LLF: 148.2309386248993
Optimization terminated successfully (Exit mode 0)
Current function value: 148.23093862496614
Iterations: 22
Function evaluations: 294
Gradient evaluations: 22
Iteration: 1, Func. Count: 11, Neg. LLF: 155.56188665199883
Iteration: 2, Func. Count: 22, Neg. LLF: 150.968983897739
Iteration: 3, Func. Count: 32, Neg. LLF: 147.9061925954526
Iteration: 4, Func. Count: 42, Neg. LLF: 146.54574740658188
Iteration: 5, Func. Count: 52, Neg. LLF: 146.38428300961772
Iteration: 6, Func. Count: 62, Neg. LLF: 146.29654468689924
Iteration: 7, Func. Count: 72, Neg. LLF: 146.34565307785115
Iteration: 8, Func. Count: 83, Neg. LLF: 146.4042022990969
Iteration: 9, Func. Count: 94, Neg. LLF: 146.2988600214145
Iteration: 10, Func. Count: 105, Neg. LLF: 146.01484689056932
Iteration: 11, Func. Count: 115, Neg. LLF: 146.01374020609916
Iteration: 12, Func. Count: 125, Neg. LLF: 146.01371045582823
Iteration: 13, Func. Count: 135, Neg. LLF: 146.01370993350415
Optimization terminated successfully (Exit mode 0)
Current function value: 146.01370993350415
Iterations: 13
Function evaluations: 135
Gradient evaluations: 13
Iteration: 1, Func. Count: 12, Neg. LLF: 160.38895025147437
Iteration: 2, Func. Count: 24, Neg. LLF: 155.4548881069872
Iteration: 3, Func. Count: 37, Neg. LLF: 151.50567479668
Iteration: 4, Func. Count: 50, Neg. LLF: 147.9146239952161
Iteration: 5, Func. Count: 61, Neg. LLF: 146.85507809774558
Iteration: 6, Func. Count: 72, Neg. LLF: 147.4660365453009
Iteration: 7, Func. Count: 84, Neg. LLF: 146.66442913649382
Iteration: 8, Func. Count: 95, Neg. LLF: 146.60042170913562
Iteration: 9, Func. Count: 106, Neg. LLF: 146.39994526390336
Iteration: 10, Func. Count: 117, Neg. LLF: 146.32579756170267
Iteration: 11, Func. Count: 128, Neg. LLF: 146.30339003670485
Iteration: 12, Func. Count: 139, Neg. LLF: 146.29928362108947
Iteration: 13, Func. Count: 150, Neg. LLF: 146.2948640082243
Iteration: 14, Func. Count: 161, Neg. LLF: 146.29418755455882
Iteration: 15, Func. Count: 172, Neg. LLF: 146.29389294868454
Iteration: 16, Func. Count: 183, Neg. LLF: 146.29388659183604
Iteration: 17, Func. Count: 193, Neg. LLF: 146.2938865919237
Optimization terminated successfully (Exit mode 0)
Current function value: 146.29388659183604
Iterations: 17
Function evaluations: 193
Gradient evaluations: 17
Iteration: 1, Func. Count: 13, Neg. LLF: 154.99092116160128
Iteration: 2, Func. Count: 28, Neg. LLF: 149.8229139606261
Iteration: 3, Func. Count: 41, Neg. LLF: 151.12934579416424
Iteration: 4, Func. Count: 54, Neg. LLF: 150.8128591057236
Iteration: 5, Func. Count: 68, Neg. LLF: 149.8046056988685
Iteration: 6, Func. Count: 81, Neg. LLF: 147.5343103086686
Iteration: 7, Func. Count: 93, Neg. LLF: 147.44748649559898
Iteration: 8, Func. Count: 105, Neg. LLF: 147.02455179892894
Iteration: 9, Func. Count: 117, Neg. LLF: 146.7415068983025
Iteration: 10, Func. Count: 129, Neg. LLF: 146.42103974519443
Iteration: 11, Func. Count: 141, Neg. LLF: 146.37709260616057
Iteration: 12, Func. Count: 153, Neg. LLF: 146.31071044937605
Iteration: 13, Func. Count: 165, Neg. LLF: 146.2992144012321
Iteration: 14, Func. Count: 177, Neg. LLF: 146.29524456951836
Iteration: 15, Func. Count: 189, Neg. LLF: 146.29392734512714
Iteration: 16, Func. Count: 201, Neg. LLF: 146.29388914718345
Iteration: 17, Func. Count: 213, Neg. LLF: 146.29388636552977
Iteration: 18, Func. Count: 224, Neg. LLF: 146.29388641249332
Optimization terminated successfully (Exit mode 0)
Current function value: 146.29388636552977
Iterations: 18
Function evaluations: 224
Gradient evaluations: 18
Iteration: 1, Func. Count: 14, Neg. LLF: 158.0931735172725
Iteration: 2, Func. Count: 30, Neg. LLF: 150.1571288334157
Iteration: 3, Func. Count: 44, Neg. LLF: 148.58411511275895
Iteration: 4, Func. Count: 58, Neg. LLF: 151.2360802015179
Iteration: 5, Func. Count: 72, Neg. LLF: 148.14275398329755
Iteration: 6, Func. Count: 86, Neg. LLF: 149.87823214516365
Iteration: 7, Func. Count: 100, Neg. LLF: 147.68559264982187
Iteration: 8, Func. Count: 113, Neg. LLF: 147.8227721337103
Iteration: 9, Func. Count: 127, Neg. LLF: 147.3962782901032
Iteration: 10, Func. Count: 140, Neg. LLF: 147.11198131257726
Iteration: 11, Func. Count: 153, Neg. LLF: 146.7473709182165
Iteration: 12, Func. Count: 166, Neg. LLF: 148.00056132094556
Iteration: 13, Func. Count: 180, Neg. LLF: 147.59239568876288
Iteration: 14, Func. Count: 194, Neg. LLF: 146.31796351502297
Iteration: 15, Func. Count: 207, Neg. LLF: 146.30443679776448
Iteration: 16, Func. Count: 220, Neg. LLF: 146.29591775436666
Iteration: 17, Func. Count: 233, Neg. LLF: 146.29513274433316
Iteration: 18, Func. Count: 246, Neg. LLF: 146.29391575494395
Iteration: 19, Func. Count: 259, Neg. LLF: 146.2938885899945
Iteration: 20, Func. Count: 272, Neg. LLF: 146.2938864126857
Iteration: 21, Func. Count: 284, Neg. LLF: 146.29388649101526
Optimization terminated successfully (Exit mode 0)
Current function value: 146.2938864126857
Iterations: 21
Function evaluations: 284
Gradient evaluations: 21
Iteration: 1, Func. Count: 15, Neg. LLF: 158.11532267985035
Iteration: 2, Func. Count: 32, Neg. LLF: 153.7783145321399
Iteration: 3, Func. Count: 47, Neg. LLF: 148.87005426765862
Iteration: 4, Func. Count: 61, Neg. LLF: 149.2364409287244
Iteration: 5, Func. Count: 76, Neg. LLF: 148.46660459469499
Iteration: 6, Func. Count: 90, Neg. LLF: 148.00669354174045
Iteration: 7, Func. Count: 104, Neg. LLF: 166.66300853272637
Iteration: 8, Func. Count: 120, Neg. LLF: 147.70243635370667
Iteration: 9, Func. Count: 134, Neg. LLF: 147.48694160659304
Iteration: 10, Func. Count: 148, Neg. LLF: 147.27341362375066
Iteration: 11, Func. Count: 162, Neg. LLF: 147.18968486379305
Iteration: 12, Func. Count: 176, Neg. LLF: 146.99901493974141
Iteration: 13, Func. Count: 190, Neg. LLF: 146.89270614741852
Iteration: 14, Func. Count: 204, Neg. LLF: 146.85751434764185
Iteration: 15, Func. Count: 218, Neg. LLF: 146.85400129193917
Iteration: 16, Func. Count: 232, Neg. LLF: 146.85336665109824
Iteration: 17, Func. Count: 246, Neg. LLF: 146.85336079578443
Iteration: 18, Func. Count: 260, Neg. LLF: 146.85335702357264
Iteration: 19, Func. Count: 273, Neg. LLF: 146.85335706309743
Optimization terminated successfully (Exit mode 0)
Current function value: 146.85335702357264
Iterations: 19
Function evaluations: 273
Gradient evaluations: 19
Iteration: 1, Func. Count: 8, Neg. LLF: 147.39314467665423
Iteration: 2, Func. Count: 16, Neg. LLF: 146.67897110588345
Iteration: 3, Func. Count: 24, Neg. LLF: 146.17375743899254
Iteration: 4, Func. Count: 32, Neg. LLF: 147.46959472692575
Iteration: 5, Func. Count: 41, Neg. LLF: 149.32453648678222
Iteration: 6, Func. Count: 49, Neg. LLF: 145.87334724321408
Iteration: 7, Func. Count: 56, Neg. LLF: 145.86388478813248
Iteration: 8, Func. Count: 63, Neg. LLF: 145.862332740647
Iteration: 9, Func. Count: 70, Neg. LLF: 145.86219439320328
Iteration: 10, Func. Count: 77, Neg. LLF: 145.86210816820977
Iteration: 11, Func. Count: 84, Neg. LLF: 145.86194148089226
Iteration: 12, Func. Count: 91, Neg. LLF: 145.86193908374435
Iteration: 13, Func. Count: 97, Neg. LLF: 145.86193908373693
Optimization terminated successfully (Exit mode 0)
Current function value: 145.86193908374435
Iterations: 13
Function evaluations: 97
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 148.08242730955448
Iteration: 2, Func. Count: 18, Neg. LLF: 150.91513238041586
Iteration: 3, Func. Count: 29, Neg. LLF: 148.9025007152733
Iteration: 4, Func. Count: 38, Neg. LLF: 154.7370828192577
Iteration: 5, Func. Count: 48, Neg. LLF: 146.47523004354514
Iteration: 6, Func. Count: 57, Neg. LLF: 146.31249766324183
Iteration: 7, Func. Count: 66, Neg. LLF: 146.1212156460325
Iteration: 8, Func. Count: 74, Neg. LLF: 146.11263320841627
Iteration: 9, Func. Count: 82, Neg. LLF: 146.08214454037372
Iteration: 10, Func. Count: 90, Neg. LLF: 145.97294397252557
Iteration: 11, Func. Count: 98, Neg. LLF: 145.86759318168706
Iteration: 12, Func. Count: 106, Neg. LLF: 145.86567602605177
Iteration: 13, Func. Count: 114, Neg. LLF: 145.86319182622583
Iteration: 14, Func. Count: 122, Neg. LLF: 145.86259029671533
Iteration: 15, Func. Count: 130, Neg. LLF: 145.861984562811
Iteration: 16, Func. Count: 138, Neg. LLF: 145.8619464982379
Iteration: 17, Func. Count: 146, Neg. LLF: 145.8619394768471
Iteration: 18, Func. Count: 153, Neg. LLF: 145.86193950457846
Optimization terminated successfully (Exit mode 0)
Current function value: 145.8619394768471
Iterations: 18
Function evaluations: 153
Gradient evaluations: 18
Iteration: 1, Func. Count: 10, Neg. LLF: 147.18815712712274
Iteration: 2, Func. Count: 19, Neg. LLF: 148.03526692345582
Iteration: 3, Func. Count: 30, Neg. LLF: 153.1440470251442
Iteration: 4, Func. Count: 42, Neg. LLF: 163.68059284071026
Iteration: 5, Func. Count: 52, Neg. LLF: 150.2580223220557
Iteration: 6, Func. Count: 62, Neg. LLF: 154.8589435619087
Iteration: 7, Func. Count: 72, Neg. LLF: 146.02905419250777
Iteration: 8, Func. Count: 82, Neg. LLF: 145.48868419547213
Iteration: 9, Func. Count: 91, Neg. LLF: 145.55259067403554
Iteration: 10, Func. Count: 101, Neg. LLF: 145.451046459784
Iteration: 11, Func. Count: 110, Neg. LLF: 145.41994996544526
Iteration: 12, Func. Count: 119, Neg. LLF: 145.3670055429575
Iteration: 13, Func. Count: 128, Neg. LLF: 145.3179948733818
Iteration: 14, Func. Count: 137, Neg. LLF: 145.31142283540694
Iteration: 15, Func. Count: 146, Neg. LLF: 145.31063532868285
Iteration: 16, Func. Count: 155, Neg. LLF: 145.31058108360742
Iteration: 17, Func. Count: 164, Neg. LLF: 145.31058001506693
Iteration: 18, Func. Count: 172, Neg. LLF: 145.310580015066
Optimization terminated successfully (Exit mode 0)
Current function value: 145.31058001506693
Iterations: 18
Function evaluations: 172
Gradient evaluations: 18
Iteration: 1, Func. Count: 11, Neg. LLF: 147.21689987264548
Iteration: 2, Func. Count: 21, Neg. LLF: 148.15705764771664
Iteration: 3, Func. Count: 33, Neg. LLF: 159.2800641218117
Iteration: 4, Func. Count: 44, Neg. LLF: 176.4970863889435
Iteration: 5, Func. Count: 56, Neg. LLF: 157.25365991053624
Iteration: 6, Func. Count: 67, Neg. LLF: 155.4702570974238
Iteration: 7, Func. Count: 78, Neg. LLF: 147.1298912449041
Iteration: 8, Func. Count: 89, Neg. LLF: 145.66751698344152
Iteration: 9, Func. Count: 100, Neg. LLF: 146.27069600129252
Iteration: 10, Func. Count: 111, Neg. LLF: 145.4840873985335
Iteration: 11, Func. Count: 121, Neg. LLF: 145.64842358654968
Iteration: 12, Func. Count: 132, Neg. LLF: 145.43020523086562
Iteration: 13, Func. Count: 142, Neg. LLF: 145.3631736376474
Iteration: 14, Func. Count: 152, Neg. LLF: 145.32230948023968
Iteration: 15, Func. Count: 162, Neg. LLF: 145.31331038310026
Iteration: 16, Func. Count: 172, Neg. LLF: 145.3111621944461
Iteration: 17, Func. Count: 182, Neg. LLF: 145.31062696071965
Iteration: 18, Func. Count: 192, Neg. LLF: 145.31058428589085
Iteration: 19, Func. Count: 202, Neg. LLF: 145.31058006257535
Iteration: 20, Func. Count: 211, Neg. LLF: 145.31058011015537
Optimization terminated successfully (Exit mode 0)
Current function value: 145.31058006257535
Iterations: 20
Function evaluations: 211
Gradient evaluations: 20
Iteration: 1, Func. Count: 12, Neg. LLF: 147.22270023968082
Iteration: 2, Func. Count: 23, Neg. LLF: 147.98052935250547
Iteration: 3, Func. Count: 36, Neg. LLF: 154.88591130063926
Iteration: 4, Func. Count: 48, Neg. LLF: 162.99199635291765
Iteration: 5, Func. Count: 60, Neg. LLF: 154.2369257179235
Iteration: 6, Func. Count: 72, Neg. LLF: 146.48561737402483
Iteration: 7, Func. Count: 84, Neg. LLF: 147.20569155725997
Iteration: 8, Func. Count: 96, Neg. LLF: 153.26507281080683
Iteration: 9, Func. Count: 108, Neg. LLF: 145.65977545477176
Iteration: 10, Func. Count: 120, Neg. LLF: 145.4473434660845
Iteration: 11, Func. Count: 131, Neg. LLF: 145.39974340166114
Iteration: 12, Func. Count: 142, Neg. LLF: 145.33576861058566
Iteration: 13, Func. Count: 153, Neg. LLF: 145.31758821329825
Iteration: 14, Func. Count: 164, Neg. LLF: 145.31100617282078
Iteration: 15, Func. Count: 175, Neg. LLF: 145.3106061997436
Iteration: 16, Func. Count: 186, Neg. LLF: 145.31058215866037
Iteration: 17, Func. Count: 197, Neg. LLF: 145.31058004293763
Iteration: 18, Func. Count: 207, Neg. LLF: 145.31058012686032
Optimization terminated successfully (Exit mode 0)
Current function value: 145.31058004293763
Iterations: 18
Function evaluations: 207
Gradient evaluations: 18
Iteration: 1, Func. Count: 9, Neg. LLF: 150.68233860221247
Iteration: 2, Func. Count: 18, Neg. LLF: 157.30411247673268
Iteration: 3, Func. Count: 27, Neg. LLF: 146.1711454250406
Iteration: 4, Func. Count: 35, Neg. LLF: 146.53245045673322
Iteration: 5, Func. Count: 44, Neg. LLF: 162.61810055668238
Iteration: 6, Func. Count: 54, Neg. LLF: 147.52854920820678
Iteration: 7, Func. Count: 66, Neg. LLF: 146.77796376587497
Iteration: 8, Func. Count: 75, Neg. LLF: 145.8717828593717
Iteration: 9, Func. Count: 83, Neg. LLF: 145.8640527813735
Iteration: 10, Func. Count: 91, Neg. LLF: 145.86284230520562
Iteration: 11, Func. Count: 99, Neg. LLF: 145.86257880971684
Iteration: 12, Func. Count: 107, Neg. LLF: 145.86227584100357
Iteration: 13, Func. Count: 115, Neg. LLF: 145.86207254566628
Iteration: 14, Func. Count: 123, Neg. LLF: 145.8619636841654
Iteration: 15, Func. Count: 131, Neg. LLF: 145.86194104787901
Iteration: 16, Func. Count: 139, Neg. LLF: 145.8619390645553
Iteration: 17, Func. Count: 146, Neg. LLF: 145.86193907583154
Optimization terminated successfully (Exit mode 0)
Current function value: 145.8619390645553
Iterations: 17
Function evaluations: 146
Gradient evaluations: 17
Iteration: 1, Func. Count: 10, Neg. LLF: 148.14962293256744
Iteration: 2, Func. Count: 20, Neg. LLF: 150.80827607278363
Iteration: 3, Func. Count: 32, Neg. LLF: 148.61872739261847
Iteration: 4, Func. Count: 42, Neg. LLF: 154.67049617545214
Iteration: 5, Func. Count: 52, Neg. LLF: 146.2664868355613
Iteration: 6, Func. Count: 62, Neg. LLF: 147.1324310421625
Iteration: 7, Func. Count: 72, Neg. LLF: 146.14174736598846
Iteration: 8, Func. Count: 82, Neg. LLF: 146.13054962203157
Iteration: 9, Func. Count: 92, Neg. LLF: 146.10936486208516
Iteration: 10, Func. Count: 101, Neg. LLF: 146.09901328944053
Iteration: 11, Func. Count: 110, Neg. LLF: 146.08008271327216
Iteration: 12, Func. Count: 119, Neg. LLF: 145.91447190543374
Iteration: 13, Func. Count: 128, Neg. LLF: 145.8651230287234
Iteration: 14, Func. Count: 137, Neg. LLF: 145.86277890344286
Iteration: 15, Func. Count: 146, Neg. LLF: 145.8619827871865
Iteration: 16, Func. Count: 155, Neg. LLF: 145.8619476647472
Iteration: 17, Func. Count: 164, Neg. LLF: 145.86193916550434
Iteration: 18, Func. Count: 172, Neg. LLF: 145.86193919319965
Optimization terminated successfully (Exit mode 0)
Current function value: 145.86193916550434
Iterations: 18
Function evaluations: 172
Gradient evaluations: 18
Iteration: 1, Func. Count: 11, Neg. LLF: 147.22737915925038
Iteration: 2, Func. Count: 22, Neg. LLF: 146.1455992163654
Iteration: 3, Func. Count: 32, Neg. LLF: 209.67078003658648
Iteration: 4, Func. Count: 44, Neg. LLF: 149.8359289186038
Iteration: 5, Func. Count: 55, Neg. LLF: 163.5607823775818
Iteration: 6, Func. Count: 66, Neg. LLF: 152.7335809636247
Iteration: 7, Func. Count: 77, Neg. LLF: 156.40523533810028
Iteration: 8, Func. Count: 88, Neg. LLF: 145.453035154263
Iteration: 9, Func. Count: 98, Neg. LLF: 146.11439603356126
Iteration: 10, Func. Count: 109, Neg. LLF: 145.41597678778237
Iteration: 11, Func. Count: 119, Neg. LLF: 145.38836560232596
Iteration: 12, Func. Count: 129, Neg. LLF: 145.34849181533542
Iteration: 13, Func. Count: 139, Neg. LLF: 145.32659259241058
Iteration: 14, Func. Count: 149, Neg. LLF: 146.19712700830726
Iteration: 15, Func. Count: 161, Neg. LLF: 145.3117096638398
Iteration: 16, Func. Count: 171, Neg. LLF: 145.3103432734924
Iteration: 17, Func. Count: 181, Neg. LLF: 145.3103107706545
Iteration: 18, Func. Count: 191, Neg. LLF: 145.31030979948468
Optimization terminated successfully (Exit mode 0)
Current function value: 145.31030979948468
Iterations: 18
Function evaluations: 191
Gradient evaluations: 18
Iteration: 1, Func. Count: 12, Neg. LLF: 147.25663608676277
Iteration: 2, Func. Count: 23, Neg. LLF: 148.15911216892863
Iteration: 3, Func. Count: 36, Neg. LLF: 160.39397588925257
Iteration: 4, Func. Count: 48, Neg. LLF: 176.4279283753637
Iteration: 5, Func. Count: 61, Neg. LLF: 157.18060709010703
Iteration: 6, Func. Count: 73, Neg. LLF: 155.2641052907837
Iteration: 7, Func. Count: 85, Neg. LLF: 153.8847709968623
Iteration: 8, Func. Count: 97, Neg. LLF: 145.91672630732813
Iteration: 9, Func. Count: 109, Neg. LLF: 145.68766777967488
Iteration: 10, Func. Count: 121, Neg. LLF: 145.5822531969145
Iteration: 11, Func. Count: 133, Neg. LLF: 145.45346955517394
Iteration: 12, Func. Count: 144, Neg. LLF: 145.40772898152392
Iteration: 13, Func. Count: 155, Neg. LLF: 145.50149521658773
Iteration: 14, Func. Count: 168, Neg. LLF: 147.4778898468725
Iteration: 15, Func. Count: 180, Neg. LLF: 145.31379593372208
Iteration: 16, Func. Count: 191, Neg. LLF: 145.31131382746784
Iteration: 17, Func. Count: 202, Neg. LLF: 145.31049459885554
Iteration: 18, Func. Count: 213, Neg. LLF: 145.31031172421362
Iteration: 19, Func. Count: 224, Neg. LLF: 145.31030976468156
Iteration: 20, Func. Count: 234, Neg. LLF: 145.31030981249526
Optimization terminated successfully (Exit mode 0)
Current function value: 145.31030976468156
Iterations: 20
Function evaluations: 234
Gradient evaluations: 20
Iteration: 1, Func. Count: 13, Neg. LLF: 147.26711279578348
Iteration: 2, Func. Count: 25, Neg. LLF: 147.87637306219833
Iteration: 3, Func. Count: 39, Neg. LLF: 152.6474297963172
Iteration: 4, Func. Count: 54, Neg. LLF: 166.54468519614034
Iteration: 5, Func. Count: 67, Neg. LLF: 151.73753272376442
Iteration: 6, Func. Count: 80, Neg. LLF: 154.0934367982491
Iteration: 7, Func. Count: 93, Neg. LLF: 146.47179753063426
Iteration: 8, Func. Count: 106, Neg. LLF: 145.52931460917722
Iteration: 9, Func. Count: 118, Neg. LLF: 145.5752705127941
Iteration: 10, Func. Count: 131, Neg. LLF: 145.51359031085764
Iteration: 11, Func. Count: 144, Neg. LLF: 145.47875392827305
Iteration: 12, Func. Count: 157, Neg. LLF: 145.42455285307898
Iteration: 13, Func. Count: 169, Neg. LLF: 145.32300508837278
Iteration: 14, Func. Count: 181, Neg. LLF: 145.58989433915386
Iteration: 15, Func. Count: 195, Neg. LLF: 145.32758508843574
Iteration: 16, Func. Count: 208, Neg. LLF: 145.31055038267942
Iteration: 17, Func. Count: 220, Neg. LLF: 145.31033295918493
Iteration: 18, Func. Count: 232, Neg. LLF: 145.31031035179123
Iteration: 19, Func. Count: 244, Neg. LLF: 145.3103096137369
Optimization terminated successfully (Exit mode 0)
Current function value: 145.3103096137369
Iterations: 19
Function evaluations: 244
Gradient evaluations: 19
Iteration: 1, Func. Count: 10, Neg. LLF: 147.4455998338321
Iteration: 2, Func. Count: 20, Neg. LLF: 148.5153284292335
Iteration: 3, Func. Count: 32, Neg. LLF: 149.979225029649
Iteration: 4, Func. Count: 42, Neg. LLF: 148.12412714519445
Iteration: 5, Func. Count: 53, Neg. LLF: 145.74983818122217
Iteration: 6, Func. Count: 62, Neg. LLF: 145.72687036425103
Iteration: 7, Func. Count: 71, Neg. LLF: 145.7181441483797
Iteration: 8, Func. Count: 80, Neg. LLF: 145.71794657842793
Iteration: 9, Func. Count: 89, Neg. LLF: 145.7179425039714
Iteration: 10, Func. Count: 98, Neg. LLF: 145.71793919591886
Iteration: 11, Func. Count: 107, Neg. LLF: 145.71793601654062
Iteration: 12, Func. Count: 116, Neg. LLF: 145.71793511533568
Optimization terminated successfully (Exit mode 0)
Current function value: 145.71793511533568
Iterations: 12
Function evaluations: 116
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 148.0858428611901
Iteration: 2, Func. Count: 22, Neg. LLF: 150.8090707337186
Iteration: 3, Func. Count: 35, Neg. LLF: 148.1289652788605
Iteration: 4, Func. Count: 46, Neg. LLF: 158.79570496228263
Iteration: 5, Func. Count: 57, Neg. LLF: 146.82844507612947
Iteration: 6, Func. Count: 68, Neg. LLF: 146.3439733285234
Iteration: 7, Func. Count: 79, Neg. LLF: 145.9798716261668
Iteration: 8, Func. Count: 89, Neg. LLF: 145.95440777368776
Iteration: 9, Func. Count: 99, Neg. LLF: 145.947271231197
Iteration: 10, Func. Count: 109, Neg. LLF: 145.90631542862008
Iteration: 11, Func. Count: 119, Neg. LLF: 145.82012958123767
Iteration: 12, Func. Count: 129, Neg. LLF: 145.7295232008426
Iteration: 13, Func. Count: 139, Neg. LLF: 145.72233756876219
Iteration: 14, Func. Count: 149, Neg. LLF: 145.71838284924783
Iteration: 15, Func. Count: 159, Neg. LLF: 145.717989512701
Iteration: 16, Func. Count: 169, Neg. LLF: 145.71793734742172
Iteration: 17, Func. Count: 179, Neg. LLF: 145.71793510435634
Iteration: 18, Func. Count: 188, Neg. LLF: 145.71793512808375
Optimization terminated successfully (Exit mode 0)
Current function value: 145.71793510435634
Iterations: 18
Function evaluations: 188
Gradient evaluations: 18
Iteration: 1, Func. Count: 12, Neg. LLF: 147.1994533369611
Iteration: 2, Func. Count: 23, Neg. LLF: 147.48990228813904
Iteration: 3, Func. Count: 36, Neg. LLF: 151.64359203800154
Iteration: 4, Func. Count: 50, Neg. LLF: 156.54393054502697
Iteration: 5, Func. Count: 62, Neg. LLF: 157.99527624011986
Iteration: 6, Func. Count: 74, Neg. LLF: 153.25292361397166
Iteration: 7, Func. Count: 86, Neg. LLF: 147.64992484979896
Iteration: 8, Func. Count: 98, Neg. LLF: 145.657696907063
Iteration: 9, Func. Count: 110, Neg. LLF: 145.5614466552972
Iteration: 10, Func. Count: 122, Neg. LLF: 145.38869211141844
Iteration: 11, Func. Count: 133, Neg. LLF: 145.35321942461312
Iteration: 12, Func. Count: 144, Neg. LLF: 146.00042344545412
Iteration: 13, Func. Count: 157, Neg. LLF: 146.20173731665864
Iteration: 14, Func. Count: 169, Neg. LLF: 145.2729808626687
Iteration: 15, Func. Count: 180, Neg. LLF: 145.27268024753516
Iteration: 16, Func. Count: 191, Neg. LLF: 145.27261201806638
Iteration: 17, Func. Count: 202, Neg. LLF: 145.27260247047124
Iteration: 18, Func. Count: 213, Neg. LLF: 145.27260156246928
Optimization terminated successfully (Exit mode 0)
Current function value: 145.27260156246928
Iterations: 18
Function evaluations: 213
Gradient evaluations: 18
Iteration: 1, Func. Count: 13, Neg. LLF: 147.2314711997427
Iteration: 2, Func. Count: 25, Neg. LLF: 147.4389116041617
Iteration: 3, Func. Count: 39, Neg. LLF: 151.6489355882108
Iteration: 4, Func. Count: 54, Neg. LLF: 157.90568762907435
Iteration: 5, Func. Count: 67, Neg. LLF: 156.2719187968435
Iteration: 6, Func. Count: 80, Neg. LLF: 152.83997045424624
Iteration: 7, Func. Count: 93, Neg. LLF: 147.56515425888918
Iteration: 8, Func. Count: 106, Neg. LLF: 145.6445845569728
Iteration: 9, Func. Count: 119, Neg. LLF: 145.53531639338502
Iteration: 10, Func. Count: 132, Neg. LLF: 145.38660636000063
Iteration: 11, Func. Count: 144, Neg. LLF: 145.34394340631746
Iteration: 12, Func. Count: 156, Neg. LLF: 146.02536264065824
Iteration: 13, Func. Count: 170, Neg. LLF: 145.8185602864252
Iteration: 14, Func. Count: 183, Neg. LLF: 145.2729082813916
Iteration: 15, Func. Count: 195, Neg. LLF: 145.27270662126554
Iteration: 16, Func. Count: 207, Neg. LLF: 145.27260960833962
Iteration: 17, Func. Count: 219, Neg. LLF: 145.27260333114964
Iteration: 18, Func. Count: 231, Neg. LLF: 145.2726015517125
Iteration: 19, Func. Count: 242, Neg. LLF: 145.27260160192557
Optimization terminated successfully (Exit mode 0)
Current function value: 145.2726015517125
Iterations: 19
Function evaluations: 242
Gradient evaluations: 19
Iteration: 1, Func. Count: 14, Neg. LLF: 147.236071076897
Iteration: 2, Func. Count: 27, Neg. LLF: 147.4240126396348
Iteration: 3, Func. Count: 42, Neg. LLF: 151.63224290807426
Iteration: 4, Func. Count: 58, Neg. LLF: 158.98813758039591
Iteration: 5, Func. Count: 72, Neg. LLF: 150.51700188037088
Iteration: 6, Func. Count: 86, Neg. LLF: 157.05638127994146
Iteration: 7, Func. Count: 100, Neg. LLF: 146.25693077120678
Iteration: 8, Func. Count: 114, Neg. LLF: 145.64554985594484
Iteration: 9, Func. Count: 128, Neg. LLF: 146.39613900563853
Iteration: 10, Func. Count: 142, Neg. LLF: 145.40073097691285
Iteration: 11, Func. Count: 155, Neg. LLF: 145.36653640411583
Iteration: 12, Func. Count: 168, Neg. LLF: 145.5178591785973
Iteration: 13, Func. Count: 182, Neg. LLF: 151.20852484762594
Iteration: 14, Func. Count: 196, Neg. LLF: 145.27812334347146
Iteration: 15, Func. Count: 209, Neg. LLF: 145.2733495519094
Iteration: 16, Func. Count: 222, Neg. LLF: 145.27263442567195
Iteration: 17, Func. Count: 235, Neg. LLF: 145.27260243818102
Iteration: 18, Func. Count: 248, Neg. LLF: 145.27260152861817
Optimization terminated successfully (Exit mode 0)
Current function value: 145.27260152861817
Iterations: 18
Function evaluations: 248
Gradient evaluations: 18
Iteration: 1, Func. Count: 11, Neg. LLF: 147.58694493101314
Iteration: 2, Func. Count: 22, Neg. LLF: 147.29248616936457
Iteration: 3, Func. Count: 35, Neg. LLF: 147.101859881918
Iteration: 4, Func. Count: 46, Neg. LLF: 145.6139087553899
Iteration: 5, Func. Count: 56, Neg. LLF: 151.99274492909777
Iteration: 6, Func. Count: 67, Neg. LLF: 146.0819631337168
Iteration: 7, Func. Count: 78, Neg. LLF: 145.36733258233915
Iteration: 8, Func. Count: 88, Neg. LLF: 145.3615328057182
Iteration: 9, Func. Count: 98, Neg. LLF: 145.36003852147502
Iteration: 10, Func. Count: 108, Neg. LLF: 145.35972730436427
Iteration: 11, Func. Count: 118, Neg. LLF: 145.35947697152446
Iteration: 12, Func. Count: 128, Neg. LLF: 145.35938421942316
Iteration: 13, Func. Count: 138, Neg. LLF: 145.35935281444438
Iteration: 14, Func. Count: 148, Neg. LLF: 145.35934071287318
Iteration: 15, Func. Count: 158, Neg. LLF: 145.3593344944096
Iteration: 16, Func. Count: 168, Neg. LLF: 145.35933351535877
Optimization terminated successfully (Exit mode 0)
Current function value: 145.35933351535877
Iterations: 16
Function evaluations: 168
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 152.3442270832753
Iteration: 2, Func. Count: 24, Neg. LLF: 153.31722100748223
Iteration: 3, Func. Count: 38, Neg. LLF: 167.28245539012428
Iteration: 4, Func. Count: 50, Neg. LLF: 154.9119081797709
Iteration: 5, Func. Count: 62, Neg. LLF: 149.68108360290898
Iteration: 6, Func. Count: 74, Neg. LLF: 146.7054348773537
Iteration: 7, Func. Count: 85, Neg. LLF: 146.2433140321957
Iteration: 8, Func. Count: 96, Neg. LLF: 146.03004342377687
Iteration: 9, Func. Count: 107, Neg. LLF: 145.7967889141128
Iteration: 10, Func. Count: 118, Neg. LLF: 145.7690796095558
Iteration: 11, Func. Count: 129, Neg. LLF: 145.71520072721208
Iteration: 12, Func. Count: 140, Neg. LLF: 145.68596117165373
Iteration: 13, Func. Count: 151, Neg. LLF: 145.65926966795737
Iteration: 14, Func. Count: 162, Neg. LLF: 145.51699186032076
Iteration: 15, Func. Count: 173, Neg. LLF: 145.38764786633485
Iteration: 16, Func. Count: 184, Neg. LLF: 145.3667098270112
Iteration: 17, Func. Count: 195, Neg. LLF: 145.3617599966963
Iteration: 18, Func. Count: 206, Neg. LLF: 145.36018729661234
Iteration: 19, Func. Count: 217, Neg. LLF: 145.35969340048274
Iteration: 20, Func. Count: 228, Neg. LLF: 145.35936793769034
Iteration: 21, Func. Count: 239, Neg. LLF: 145.35933798982552
Iteration: 22, Func. Count: 250, Neg. LLF: 145.3593346655582
Iteration: 23, Func. Count: 261, Neg. LLF: 145.35933370875907
Optimization terminated successfully (Exit mode 0)
Current function value: 145.35933370875907
Iterations: 23
Function evaluations: 261
Gradient evaluations: 23
Iteration: 1, Func. Count: 13, Neg. LLF: 147.18947537180463
Iteration: 2, Func. Count: 25, Neg. LLF: 146.78762587256293
Iteration: 3, Func. Count: 38, Neg. LLF: 164.09198774275688
Iteration: 4, Func. Count: 52, Neg. LLF: 156.45956044421138
Iteration: 5, Func. Count: 65, Neg. LLF: 151.39196356839514
Iteration: 6, Func. Count: 78, Neg. LLF: 157.8117498297808
Iteration: 7, Func. Count: 91, Neg. LLF: 145.99702932397042
Iteration: 8, Func. Count: 104, Neg. LLF: 145.72580308370522
Iteration: 9, Func. Count: 117, Neg. LLF: 145.18861702361738
Iteration: 10, Func. Count: 130, Neg. LLF: 145.11352786079476
Iteration: 11, Func. Count: 142, Neg. LLF: 145.08993847396195
Iteration: 12, Func. Count: 154, Neg. LLF: 145.04029434140912
Iteration: 13, Func. Count: 166, Neg. LLF: 145.02844332489687
Iteration: 14, Func. Count: 178, Neg. LLF: 145.02125398160823
Iteration: 15, Func. Count: 190, Neg. LLF: 145.02046622005292
Iteration: 16, Func. Count: 202, Neg. LLF: 145.0203866184426
Iteration: 17, Func. Count: 214, Neg. LLF: 145.02038305334105
Iteration: 18, Func. Count: 226, Neg. LLF: 145.02038253155814
Optimization terminated successfully (Exit mode 0)
Current function value: 145.02038253155814
Iterations: 18
Function evaluations: 226
Gradient evaluations: 18
Iteration: 1, Func. Count: 14, Neg. LLF: 147.21760861833258
Iteration: 2, Func. Count: 27, Neg. LLF: 146.8530136906973
Iteration: 3, Func. Count: 42, Neg. LLF: 166.37431234158163
Iteration: 4, Func. Count: 58, Neg. LLF: 157.76461655436646
Iteration: 5, Func. Count: 72, Neg. LLF: 151.34494141633687
Iteration: 6, Func. Count: 86, Neg. LLF: 154.81606845551286
Iteration: 7, Func. Count: 100, Neg. LLF: 146.17379050507657
Iteration: 8, Func. Count: 114, Neg. LLF: 145.64270493366365
Iteration: 9, Func. Count: 128, Neg. LLF: 145.22488230134363
Iteration: 10, Func. Count: 142, Neg. LLF: 145.30000117444996
Iteration: 11, Func. Count: 156, Neg. LLF: 145.11051088073813
Iteration: 12, Func. Count: 169, Neg. LLF: 145.06214014729434
Iteration: 13, Func. Count: 182, Neg. LLF: 145.0307437933301
Iteration: 14, Func. Count: 195, Neg. LLF: 145.02228691852855
Iteration: 15, Func. Count: 208, Neg. LLF: 145.02045735877238
Iteration: 16, Func. Count: 221, Neg. LLF: 145.02038717494946
Iteration: 17, Func. Count: 234, Neg. LLF: 145.02038313271572
Iteration: 18, Func. Count: 247, Neg. LLF: 145.02038253475357
Optimization terminated successfully (Exit mode 0)
Current function value: 145.02038253475357
Iterations: 18
Function evaluations: 247
Gradient evaluations: 18
Iteration: 1, Func. Count: 15, Neg. LLF: 147.2264502338542
Iteration: 2, Func. Count: 29, Neg. LLF: 146.86789411381756
Iteration: 3, Func. Count: 45, Neg. LLF: 166.20954507135937
Iteration: 4, Func. Count: 62, Neg. LLF: 157.79190448429733
Iteration: 5, Func. Count: 77, Neg. LLF: 151.30539911683903
Iteration: 6, Func. Count: 92, Neg. LLF: 154.50932608905836
Iteration: 7, Func. Count: 107, Neg. LLF: 146.18324456445998
Iteration: 8, Func. Count: 122, Neg. LLF: 145.37452433106924
Iteration: 9, Func. Count: 137, Neg. LLF: 145.13904932061092
Iteration: 10, Func. Count: 151, Neg. LLF: 145.15925779172366
Iteration: 11, Func. Count: 166, Neg. LLF: 145.10543460815583
Iteration: 12, Func. Count: 180, Neg. LLF: 145.07185827301402
Iteration: 13, Func. Count: 194, Neg. LLF: 145.02284982929748
Iteration: 14, Func. Count: 208, Neg. LLF: 145.02057107911506
Iteration: 15, Func. Count: 222, Neg. LLF: 145.02041110532682
Iteration: 16, Func. Count: 236, Neg. LLF: 145.0203828263606
Iteration: 17, Func. Count: 249, Neg. LLF: 145.0203829203397
Optimization terminated successfully (Exit mode 0)
Current function value: 145.0203828263606
Iterations: 17
Function evaluations: 249
Gradient evaluations: 17
Iteration: 1, Func. Count: 12, Neg. LLF: 144.2747064077751
Iteration: 2, Func. Count: 23, Neg. LLF: 146.48964511918618
Iteration: 3, Func. Count: 35, Neg. LLF: 145.47709904427805
Iteration: 4, Func. Count: 47, Neg. LLF: 145.724181323113
Iteration: 5, Func. Count: 59, Neg. LLF: 148.38738694611015
Iteration: 6, Func. Count: 71, Neg. LLF: 142.78219493577717
Iteration: 7, Func. Count: 83, Neg. LLF: 146.7401570263352
Iteration: 8, Func. Count: 95, Neg. LLF: 142.2799804576765
Iteration: 9, Func. Count: 106, Neg. LLF: 142.87941214737225
Iteration: 10, Func. Count: 118, Neg. LLF: 142.24974355799904
Iteration: 11, Func. Count: 129, Neg. LLF: 142.23133645430784
Iteration: 12, Func. Count: 140, Neg. LLF: 142.22282335292522
Iteration: 13, Func. Count: 151, Neg. LLF: 142.21475372891902
Iteration: 14, Func. Count: 162, Neg. LLF: 142.20364740357445
Iteration: 15, Func. Count: 173, Neg. LLF: 142.2029587816441
Iteration: 16, Func. Count: 184, Neg. LLF: 142.2029312619218
Iteration: 17, Func. Count: 194, Neg. LLF: 142.20293107278735
Optimization terminated successfully (Exit mode 0)
Current function value: 142.2029312619218
Iterations: 17
Function evaluations: 194
Gradient evaluations: 17
Iteration: 1, Func. Count: 13, Neg. LLF: 155.14986635906268
Iteration: 2, Func. Count: 26, Neg. LLF: 147.1496366092093
Iteration: 3, Func. Count: 39, Neg. LLF: 150.02400814077035
Iteration: 4, Func. Count: 54, Neg. LLF: 142.98509702793996
Iteration: 5, Func. Count: 66, Neg. LLF: 172.66146800623852
Iteration: 6, Func. Count: 80, Neg. LLF: 142.43604851010346
Iteration: 7, Func. Count: 92, Neg. LLF: 142.43714440597807
Iteration: 8, Func. Count: 105, Neg. LLF: 142.4181624172883
Iteration: 9, Func. Count: 118, Neg. LLF: 142.19726635669312
Iteration: 10, Func. Count: 130, Neg. LLF: 142.43168747051584
Iteration: 11, Func. Count: 143, Neg. LLF: 142.18270110360083
Iteration: 12, Func. Count: 155, Neg. LLF: 142.1555413285295
Iteration: 13, Func. Count: 167, Neg. LLF: 142.15119388446425
Iteration: 14, Func. Count: 179, Neg. LLF: 142.14599956787728
Iteration: 15, Func. Count: 191, Neg. LLF: 142.1446563298312
Iteration: 16, Func. Count: 203, Neg. LLF: 142.14462068439852
Iteration: 17, Func. Count: 215, Neg. LLF: 142.14461177438366
Iteration: 18, Func. Count: 227, Neg. LLF: 142.14460420530534
Iteration: 19, Func. Count: 238, Neg. LLF: 142.14460420533322
Optimization terminated successfully (Exit mode 0)
Current function value: 142.14460420530534
Iterations: 19
Function evaluations: 238
Gradient evaluations: 19
Iteration: 1, Func. Count: 14, Neg. LLF: 148.8894776838896
Iteration: 2, Func. Count: 28, Neg. LLF: 147.97947352216565
Iteration: 3, Func. Count: 42, Neg. LLF: 204.63604402052317
Iteration: 4, Func. Count: 57, Neg. LLF: 143.35028475626225
Iteration: 5, Func. Count: 70, Neg. LLF: 151.1242132590176
Iteration: 6, Func. Count: 86, Neg. LLF: 143.8204782365245
Iteration: 7, Func. Count: 100, Neg. LLF: 143.89598285129182
Iteration: 8, Func. Count: 114, Neg. LLF: 144.93658088260074
Iteration: 9, Func. Count: 128, Neg. LLF: 142.2512891341568
Iteration: 10, Func. Count: 141, Neg. LLF: 147.73918563067687
Iteration: 11, Func. Count: 155, Neg. LLF: 146.5910629094269
Iteration: 12, Func. Count: 170, Neg. LLF: 142.38016768988248
Iteration: 13, Func. Count: 184, Neg. LLF: 141.61245138774
Iteration: 14, Func. Count: 197, Neg. LLF: 141.53995662984687
Iteration: 15, Func. Count: 210, Neg. LLF: 141.38680108117228
Iteration: 16, Func. Count: 223, Neg. LLF: 141.2991480502883
Iteration: 17, Func. Count: 236, Neg. LLF: 141.48044036668492
Iteration: 18, Func. Count: 250, Neg. LLF: 141.20311799717695
Iteration: 19, Func. Count: 263, Neg. LLF: 141.19966887627078
Iteration: 20, Func. Count: 276, Neg. LLF: 141.19925480325674
Iteration: 21, Func. Count: 289, Neg. LLF: 141.199065496916
Iteration: 22, Func. Count: 302, Neg. LLF: 141.19902060376782
Iteration: 23, Func. Count: 315, Neg. LLF: 141.19901815631
Iteration: 24, Func. Count: 327, Neg. LLF: 141.19901814823947
Optimization terminated successfully (Exit mode 0)
Current function value: 141.19901815631
Iterations: 24
Function evaluations: 327
Gradient evaluations: 24
Iteration: 1, Func. Count: 15, Neg. LLF: 144.7544988738836
Iteration: 2, Func. Count: 29, Neg. LLF: 145.80603549994365
Iteration: 3, Func. Count: 44, Neg. LLF: 146.82876293200047
Iteration: 4, Func. Count: 59, Neg. LLF: 153.17846805102974
Iteration: 5, Func. Count: 74, Neg. LLF: 147.02904281750847
Iteration: 6, Func. Count: 89, Neg. LLF: 183.71593562588654
Iteration: 7, Func. Count: 104, Neg. LLF: 149.49000313766126
Iteration: 8, Func. Count: 119, Neg. LLF: 150.35860546802522
Iteration: 9, Func. Count: 134, Neg. LLF: 142.18362356994635
Iteration: 10, Func. Count: 149, Neg. LLF: 142.22285033212142
Iteration: 11, Func. Count: 164, Neg. LLF: 142.13583812928593
Iteration: 12, Func. Count: 179, Neg. LLF: 143.9710177502051
Iteration: 13, Func. Count: 194, Neg. LLF: 142.34764020844483
Iteration: 14, Func. Count: 209, Neg. LLF: 141.34366213352135
Iteration: 15, Func. Count: 223, Neg. LLF: 141.36708447143099
Iteration: 16, Func. Count: 238, Neg. LLF: 141.30842577425653
Iteration: 17, Func. Count: 253, Neg. LLF: 141.24943567993364
Iteration: 18, Func. Count: 268, Neg. LLF: 141.2078485582742
Iteration: 19, Func. Count: 282, Neg. LLF: 141.2009067024661
Iteration: 20, Func. Count: 296, Neg. LLF: 141.19899910764016
Iteration: 21, Func. Count: 310, Neg. LLF: 141.1987531112321
Iteration: 22, Func. Count: 324, Neg. LLF: 141.1986733663642
Iteration: 23, Func. Count: 338, Neg. LLF: 141.19866171766938
Iteration: 24, Func. Count: 351, Neg. LLF: 141.1986617112854
Optimization terminated successfully (Exit mode 0)
Current function value: 141.19866171766938
Iterations: 24
Function evaluations: 351
Gradient evaluations: 24
Iteration: 1, Func. Count: 16, Neg. LLF: 143.94944992113
Iteration: 2, Func. Count: 31, Neg. LLF: 147.0585607871087
Iteration: 3, Func. Count: 47, Neg. LLF: 146.04738183810258
Iteration: 4, Func. Count: 63, Neg. LLF: 146.3220556381852
Iteration: 5, Func. Count: 79, Neg. LLF: 146.55688497082923
Iteration: 6, Func. Count: 95, Neg. LLF: 176.44685304708696
Iteration: 7, Func. Count: 111, Neg. LLF: 145.95161335758402
Iteration: 8, Func. Count: 127, Neg. LLF: 142.39044309641693
Iteration: 9, Func. Count: 143, Neg. LLF: 146.17867720270434
Iteration: 10, Func. Count: 159, Neg. LLF: 142.07767976630765
Iteration: 11, Func. Count: 174, Neg. LLF: 155.63972333537362
Iteration: 12, Func. Count: 190, Neg. LLF: 142.09641901687374
Iteration: 13, Func. Count: 206, Neg. LLF: 145.0067956153797
Iteration: 14, Func. Count: 222, Neg. LLF: 142.62668205557165
Iteration: 15, Func. Count: 238, Neg. LLF: 141.84045727706717
Iteration: 16, Func. Count: 254, Neg. LLF: 142.00031697171494
Iteration: 17, Func. Count: 270, Neg. LLF: 141.6240874252414
Iteration: 18, Func. Count: 286, Neg. LLF: 141.2676105761144
Iteration: 19, Func. Count: 301, Neg. LLF: 141.25498641248214
Iteration: 20, Func. Count: 316, Neg. LLF: 141.22666933230474
Iteration: 21, Func. Count: 331, Neg. LLF: 141.21225464426325
Iteration: 22, Func. Count: 346, Neg. LLF: 141.20176571265165
Iteration: 23, Func. Count: 361, Neg. LLF: 141.19964208551443
Iteration: 24, Func. Count: 376, Neg. LLF: 141.19873694304812
Iteration: 25, Func. Count: 391, Neg. LLF: 141.19866370998542
Iteration: 26, Func. Count: 406, Neg. LLF: 141.19866176729266
Iteration: 27, Func. Count: 420, Neg. LLF: 141.19866184255878
Optimization terminated successfully (Exit mode 0)
Current function value: 141.19866176729266
Iterations: 27
Function evaluations: 420
Gradient evaluations: 27
Iteration: 1, Func. Count: 5, Neg. LLF: 154.69554530658002
Iteration: 2, Func. Count: 10, Neg. LLF: 154.0782183394573
Iteration: 3, Func. Count: 15, Neg. LLF: 146.3561120448598
Iteration: 4, Func. Count: 19, Neg. LLF: 146.13257211224962
Iteration: 5, Func. Count: 23, Neg. LLF: 146.10830977310113
Iteration: 6, Func. Count: 27, Neg. LLF: 146.1060640092478
Iteration: 7, Func. Count: 31, Neg. LLF: 146.1023376413326
Iteration: 8, Func. Count: 35, Neg. LLF: 146.1023254258473
Iteration: 9, Func. Count: 38, Neg. LLF: 146.1023254289226
Optimization terminated successfully (Exit mode 0)
Current function value: 146.1023254258473
Iterations: 9
Function evaluations: 38
Gradient evaluations: 9
Iteration: 1, Func. Count: 5, Neg. LLF: 154.52257560406377
Iteration: 2, Func. Count: 10, Neg. LLF: 153.86234172948977
Iteration: 3, Func. Count: 15, Neg. LLF: 148.941167371606
Iteration: 4, Func. Count: 19, Neg. LLF: 148.85228902360518
Iteration: 5, Func. Count: 23, Neg. LLF: 148.84059132874518
Iteration: 6, Func. Count: 27, Neg. LLF: 148.83949971511768
Iteration: 7, Func. Count: 31, Neg. LLF: 148.83947066846306
Iteration: 8, Func. Count: 35, Neg. LLF: 148.83945965165987
Iteration: 9, Func. Count: 39, Neg. LLF: 148.8394407337351
Iteration: 10, Func. Count: 43, Neg. LLF: 148.83943550736737
Iteration: 11, Func. Count: 47, Neg. LLF: 148.8394346997528
Optimization terminated successfully (Exit mode 0)
Current function value: 148.8394346997528
Iterations: 11
Function evaluations: 47
Gradient evaluations: 11
Iteration: 1, Func. Count: 6, Neg. LLF: 20788605.731130537
Iteration: 2, Func. Count: 13, Neg. LLF: 157.10936978745806
Iteration: 3, Func. Count: 19, Neg. LLF: 151.50162017790518
Iteration: 4, Func. Count: 25, Neg. LLF: 149.68319191787887
Iteration: 5, Func. Count: 31, Neg. LLF: 148.83143148117287
Iteration: 6, Func. Count: 37, Neg. LLF: 152.00753779189742
Iteration: 7, Func. Count: 43, Neg. LLF: 145.98754377230597
Iteration: 8, Func. Count: 48, Neg. LLF: 146.02775379753206
Iteration: 9, Func. Count: 54, Neg. LLF: 146.01473575666492
Iteration: 10, Func. Count: 60, Neg. LLF: 145.906892095539
Iteration: 11, Func. Count: 64, Neg. LLF: 145.90689209572
Optimization terminated successfully (Exit mode 0)
Current function value: 145.906892095539
Iterations: 11
Function evaluations: 64
Gradient evaluations: 11
Iteration: 1, Func. Count: 7, Neg. LLF: 20786228.96060593
Iteration: 2, Func. Count: 15, Neg. LLF: 150.04231144952138
Iteration: 3, Func. Count: 22, Neg. LLF: 147.56591421529725
Iteration: 4, Func. Count: 29, Neg. LLF: 146.25800905062144
Iteration: 5, Func. Count: 35, Neg. LLF: 146.14867032732838
Iteration: 6, Func. Count: 41, Neg. LLF: 146.61470605888496
Iteration: 7, Func. Count: 48, Neg. LLF: 145.9733126397198
Iteration: 8, Func. Count: 55, Neg. LLF: 145.9538814504292
Iteration: 9, Func. Count: 61, Neg. LLF: 145.95149342579515
Iteration: 10, Func. Count: 67, Neg. LLF: 145.9475752969876
Iteration: 11, Func. Count: 73, Neg. LLF: 145.94386803632526
Iteration: 12, Func. Count: 79, Neg. LLF: 145.93717607554024
Iteration: 13, Func. Count: 85, Neg. LLF: 145.90697638252152
Iteration: 14, Func. Count: 91, Neg. LLF: 145.90704692107926
Iteration: 15, Func. Count: 98, Neg. LLF: 145.90689236547573
Optimization terminated successfully (Exit mode 0)
Current function value: 145.90689236547573
Iterations: 15
Function evaluations: 98
Gradient evaluations: 15
Iteration: 1, Func. Count: 8, Neg. LLF: 20784860.508908737
Iteration: 2, Func. Count: 17, Neg. LLF: 147.70153777545323
Iteration: 3, Func. Count: 25, Neg. LLF: 145.7356516104393
Iteration: 4, Func. Count: 32, Neg. LLF: 145.8082580579902
Iteration: 5, Func. Count: 40, Neg. LLF: 145.69236794565413
Iteration: 6, Func. Count: 47, Neg. LLF: 145.69088610609901
Iteration: 7, Func. Count: 54, Neg. LLF: 145.69079999085596
Iteration: 8, Func. Count: 60, Neg. LLF: 145.6907999913146
Optimization terminated successfully (Exit mode 0)
Current function value: 145.69079999085596
Iterations: 8
Function evaluations: 60
Gradient evaluations: 8
Iteration: 1, Func. Count: 9, Neg. LLF: 184.8638534905015
Iteration: 2, Func. Count: 19, Neg. LLF: 148.41672262880599
Iteration: 3, Func. Count: 27, Neg. LLF: 147.54851070464449
Iteration: 4, Func. Count: 35, Neg. LLF: 146.2638418444912
Iteration: 5, Func. Count: 43, Neg. LLF: 149.9692944512159
Iteration: 6, Func. Count: 52, Neg. LLF: 146.01537712168422
Iteration: 7, Func. Count: 60, Neg. LLF: 145.98670086209233
Iteration: 8, Func. Count: 68, Neg. LLF: 145.98599007061517
Iteration: 9, Func. Count: 77, Neg. LLF: 145.9803478639299
Iteration: 10, Func. Count: 85, Neg. LLF: 145.9759293065425
Iteration: 11, Func. Count: 93, Neg. LLF: 145.9558329557008
Iteration: 12, Func. Count: 101, Neg. LLF: 145.95155319020057
Iteration: 13, Func. Count: 109, Neg. LLF: 145.94700947176918
Iteration: 14, Func. Count: 117, Neg. LLF: 145.9457391082371
Iteration: 15, Func. Count: 125, Neg. LLF: 145.94368509062872
Iteration: 16, Func. Count: 133, Neg. LLF: 145.9379757457094
Iteration: 17, Func. Count: 141, Neg. LLF: 145.90806862542917
Iteration: 18, Func. Count: 149, Neg. LLF: 145.90714460785696
Iteration: 19, Func. Count: 157, Neg. LLF: 145.90718000191225
Iteration: 20, Func. Count: 166, Neg. LLF: 145.90805717293193
Iteration: 21, Func. Count: 175, Neg. LLF: 145.906911021012
Iteration: 22, Func. Count: 183, Neg. LLF: 19839678.96451731
Iteration: 23, Func. Count: 195, Neg. LLF: 145.90689163914158
Optimization terminated successfully (Exit mode 0)
Current function value: 145.90689162891076
Iterations: 24
Function evaluations: 195
Gradient evaluations: 23
Iteration: 1, Func. Count: 6, Neg. LLF: 151.24217892315068
Iteration: 2, Func. Count: 11, Neg. LLF: 153.27337168347765
Iteration: 3, Func. Count: 17, Neg. LLF: 148.8812354440226
Iteration: 4, Func. Count: 22, Neg. LLF: 148.85200710509397
Iteration: 5, Func. Count: 27, Neg. LLF: 148.84740581620662
Iteration: 6, Func. Count: 32, Neg. LLF: 148.84170880221296
Iteration: 7, Func. Count: 37, Neg. LLF: 148.8400697767006
Iteration: 8, Func. Count: 42, Neg. LLF: 148.83944725889484
Iteration: 9, Func. Count: 47, Neg. LLF: 148.8394347740411
Iteration: 10, Func. Count: 51, Neg. LLF: 148.8394348312448
Optimization terminated successfully (Exit mode 0)
Current function value: 148.8394347740411
Iterations: 10
Function evaluations: 51
Gradient evaluations: 10
Iteration: 1, Func. Count: 7, Neg. LLF: 20786012.619907834
Iteration: 2, Func. Count: 15, Neg. LLF: 161.8420494284137
Iteration: 3, Func. Count: 22, Neg. LLF: 153.91393742001407
Iteration: 4, Func. Count: 29, Neg. LLF: 152.41696544636665
Iteration: 5, Func. Count: 36, Neg. LLF: 151.9417139078196
Iteration: 6, Func. Count: 43, Neg. LLF: 151.79761992235694
Iteration: 7, Func. Count: 50, Neg. LLF: 147.10216300838556
Iteration: 8, Func. Count: 56, Neg. LLF: 148.5117276441078
Iteration: 9, Func. Count: 63, Neg. LLF: 146.7130853411807
Iteration: 10, Func. Count: 69, Neg. LLF: 146.66616981739767
Iteration: 11, Func. Count: 75, Neg. LLF: 151.48942665559616
Iteration: 12, Func. Count: 83, Neg. LLF: 146.51478507354506
Iteration: 13, Func. Count: 89, Neg. LLF: 145.9758881093718
Iteration: 14, Func. Count: 95, Neg. LLF: 145.91489744066632
Iteration: 15, Func. Count: 101, Neg. LLF: 145.90763223732688
Iteration: 16, Func. Count: 107, Neg. LLF: 145.9068940378975
Iteration: 17, Func. Count: 113, Neg. LLF: 145.90689155591357
Iteration: 18, Func. Count: 118, Neg. LLF: 145.90689155558127
Optimization terminated successfully (Exit mode 0)
Current function value: 145.90689155591357
Iterations: 18
Function evaluations: 118
Gradient evaluations: 18
Iteration: 1, Func. Count: 8, Neg. LLF: 20784758.595813185
Iteration: 2, Func. Count: 17, Neg. LLF: 149.95360340123608
Iteration: 3, Func. Count: 25, Neg. LLF: 147.66292243310542
Iteration: 4, Func. Count: 33, Neg. LLF: 146.30400135255735
Iteration: 5, Func. Count: 40, Neg. LLF: 147.48511415108774
Iteration: 6, Func. Count: 48, Neg. LLF: 146.55913379477175
Iteration: 7, Func. Count: 56, Neg. LLF: 146.02993070596318
Iteration: 8, Func. Count: 63, Neg. LLF: 145.97616182061054
Iteration: 9, Func. Count: 70, Neg. LLF: 145.9639450012316
Iteration: 10, Func. Count: 77, Neg. LLF: 145.95401696583377
Iteration: 11, Func. Count: 84, Neg. LLF: 145.94654437802947
Iteration: 12, Func. Count: 91, Neg. LLF: 145.94130405010242
Iteration: 13, Func. Count: 98, Neg. LLF: 145.93196757613794
Iteration: 14, Func. Count: 105, Neg. LLF: 145.90730542187092
Iteration: 15, Func. Count: 112, Neg. LLF: 145.90710420776384
Iteration: 16, Func. Count: 119, Neg. LLF: 145.90689783717994
Iteration: 17, Func. Count: 126, Neg. LLF: 145.9068920786783
Iteration: 18, Func. Count: 133, Neg. LLF: 145.90689159126768
Optimization terminated successfully (Exit mode 0)
Current function value: 145.90689159126768
Iterations: 18
Function evaluations: 133
Gradient evaluations: 18
Iteration: 1, Func. Count: 9, Neg. LLF: 20784445.2554203
Iteration: 2, Func. Count: 19, Neg. LLF: 147.50984242474294
Iteration: 3, Func. Count: 28, Neg. LLF: 145.72596641189918
Iteration: 4, Func. Count: 36, Neg. LLF: 146.78627776708254
Iteration: 5, Func. Count: 45, Neg. LLF: 145.60255689889172
Iteration: 6, Func. Count: 53, Neg. LLF: 145.56208693439987
Iteration: 7, Func. Count: 61, Neg. LLF: 145.54873901362092
Iteration: 8, Func. Count: 69, Neg. LLF: 145.5304260836068
Iteration: 9, Func. Count: 77, Neg. LLF: 145.52126234449736
Iteration: 10, Func. Count: 85, Neg. LLF: 145.5209931955945
Iteration: 11, Func. Count: 93, Neg. LLF: 20793751.51938619
Iteration: 12, Func. Count: 105, Neg. LLF: 145.69699902396897
Iteration: 13, Func. Count: 116, Neg. LLF: 145.52125751910572
Iteration: 14, Func. Count: 124, Neg. LLF: 145.52076679185598
Optimization terminated successfully (Exit mode 0)
Current function value: 145.52076679184017
Iterations: 15
Function evaluations: 124
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 184.94685023994754
Iteration: 2, Func. Count: 21, Neg. LLF: 209.6156487059439
Iteration: 3, Func. Count: 32, Neg. LLF: 147.89013967237355
Iteration: 4, Func. Count: 41, Neg. LLF: 146.54942996397074
Iteration: 5, Func. Count: 50, Neg. LLF: 146.70255047945852
Iteration: 6, Func. Count: 60, Neg. LLF: 146.23280455651727
Iteration: 7, Func. Count: 69, Neg. LLF: 146.27253918620775
Iteration: 8, Func. Count: 79, Neg. LLF: 146.22959719260427
Iteration: 9, Func. Count: 89, Neg. LLF: 146.110359279375
Iteration: 10, Func. Count: 98, Neg. LLF: 146.10537764206768
Iteration: 11, Func. Count: 107, Neg. LLF: 146.10188179620062
Iteration: 12, Func. Count: 116, Neg. LLF: 146.09790287982383
Iteration: 13, Func. Count: 125, Neg. LLF: 146.09548584537902
Iteration: 14, Func. Count: 134, Neg. LLF: 146.09529919640096
Iteration: 15, Func. Count: 143, Neg. LLF: 146.09529096817153
Iteration: 16, Func. Count: 151, Neg. LLF: 146.09529096839552
Optimization terminated successfully (Exit mode 0)
Current function value: 146.09529096817153
Iterations: 16
Function evaluations: 151
Gradient evaluations: 16
Iteration: 1, Func. Count: 7, Neg. LLF: 160.96296760171944
Iteration: 2, Func. Count: 15, Neg. LLF: 149.54947965682058
Iteration: 3, Func. Count: 21, Neg. LLF: 151.23566592577572
Iteration: 4, Func. Count: 28, Neg. LLF: 148.8997261912557
Iteration: 5, Func. Count: 34, Neg. LLF: 148.84245136509068
Iteration: 6, Func. Count: 40, Neg. LLF: 148.69504799638472
Iteration: 7, Func. Count: 46, Neg. LLF: 148.6376926550841
Iteration: 8, Func. Count: 52, Neg. LLF: 148.58150216930758
Iteration: 9, Func. Count: 58, Neg. LLF: 148.57902009797462
Iteration: 10, Func. Count: 64, Neg. LLF: 148.57871504839864
Iteration: 11, Func. Count: 70, Neg. LLF: 148.57867108321167
Iteration: 12, Func. Count: 75, Neg. LLF: 148.57867107948994
Optimization terminated successfully (Exit mode 0)
Current function value: 148.57867108321167
Iterations: 12
Function evaluations: 75
Gradient evaluations: 12
Iteration: 1, Func. Count: 8, Neg. LLF: 20784632.144911326
Iteration: 2, Func. Count: 17, Neg. LLF: 519.962036021871
Iteration: 3, Func. Count: 26, Neg. LLF: 154.83681557733058
Iteration: 4, Func. Count: 34, Neg. LLF: 151.6788485244295
Iteration: 5, Func. Count: 42, Neg. LLF: 150.4338151132618
Iteration: 6, Func. Count: 50, Neg. LLF: 149.9591341076696
Iteration: 7, Func. Count: 58, Neg. LLF: 149.28970705631784
Iteration: 8, Func. Count: 66, Neg. LLF: 146.4053573879148
Iteration: 9, Func. Count: 73, Neg. LLF: 147.5308293983192
Iteration: 10, Func. Count: 81, Neg. LLF: 145.92784832432352
Iteration: 11, Func. Count: 89, Neg. LLF: 145.90697440526034
Iteration: 12, Func. Count: 96, Neg. LLF: 145.9068919003812
Iteration: 13, Func. Count: 102, Neg. LLF: 145.906891900726
Optimization terminated successfully (Exit mode 0)
Current function value: 145.9068919003812
Iterations: 13
Function evaluations: 102
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 20784373.362268467
Iteration: 2, Func. Count: 19, Neg. LLF: 149.93629388394106
Iteration: 3, Func. Count: 28, Neg. LLF: 147.65889263961128
Iteration: 4, Func. Count: 37, Neg. LLF: 146.3052129608093
Iteration: 5, Func. Count: 45, Neg. LLF: 147.37474754226207
Iteration: 6, Func. Count: 54, Neg. LLF: 146.42576102997677
Iteration: 7, Func. Count: 63, Neg. LLF: 146.02376849241384
Iteration: 8, Func. Count: 71, Neg. LLF: 145.97628500339684
Iteration: 9, Func. Count: 79, Neg. LLF: 145.96278664316688
Iteration: 10, Func. Count: 87, Neg. LLF: 145.95668734188604
Iteration: 11, Func. Count: 95, Neg. LLF: 145.94684139709875
Iteration: 12, Func. Count: 103, Neg. LLF: 145.9422447013167
Iteration: 13, Func. Count: 111, Neg. LLF: 145.93384981415684
Iteration: 14, Func. Count: 119, Neg. LLF: 145.90689255558874
Iteration: 15, Func. Count: 127, Neg. LLF: 145.9068941409686
Iteration: 16, Func. Count: 136, Neg. LLF: 145.92402545901922
Optimization terminated successfully (Exit mode 0)
Current function value: 145.9068915418621
Iterations: 17
Function evaluations: 141
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 20784205.836439446
Iteration: 2, Func. Count: 20, Neg. LLF: 13538003.062714238
Iteration: 3, Func. Count: 32, Neg. LLF: 149.8434640398328
Iteration: 4, Func. Count: 42, Neg. LLF: 145.6200672531694
Iteration: 5, Func. Count: 51, Neg. LLF: 145.87468411311696
Iteration: 6, Func. Count: 61, Neg. LLF: 145.6802853335581
Iteration: 7, Func. Count: 71, Neg. LLF: 145.3593737841922
Iteration: 8, Func. Count: 80, Neg. LLF: 145.296980730584
Iteration: 9, Func. Count: 89, Neg. LLF: 145.28534982114968
Iteration: 10, Func. Count: 98, Neg. LLF: 145.2795591054411
Iteration: 11, Func. Count: 107, Neg. LLF: 145.27882048130914
Iteration: 12, Func. Count: 116, Neg. LLF: 145.27877528007747
Iteration: 13, Func. Count: 125, Neg. LLF: 145.2873274561896
Optimization terminated successfully (Exit mode 0)
Current function value: 145.2787752213245
Iterations: 14
Function evaluations: 128
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 184.73461462217853
Iteration: 2, Func. Count: 22, Neg. LLF: 184.87397188388385
Iteration: 3, Func. Count: 34, Neg. LLF: 147.870938269856
Iteration: 4, Func. Count: 44, Neg. LLF: 154.42947548569197
Iteration: 5, Func. Count: 55, Neg. LLF: 147.07050005756656
Iteration: 6, Func. Count: 65, Neg. LLF: 147.71561970282147
Iteration: 7, Func. Count: 76, Neg. LLF: 146.50613039792324
Iteration: 8, Func. Count: 86, Neg. LLF: 146.2405884861911
Iteration: 9, Func. Count: 96, Neg. LLF: 146.15813216069586
Iteration: 10, Func. Count: 106, Neg. LLF: 146.01367727143463
Iteration: 11, Func. Count: 116, Neg. LLF: 145.90660621960063
Iteration: 12, Func. Count: 126, Neg. LLF: 145.57910096402657
Iteration: 13, Func. Count: 136, Neg. LLF: 146.72120572527086
Iteration: 14, Func. Count: 150, Neg. LLF: 145.31715552276427
Iteration: 15, Func. Count: 160, Neg. LLF: 145.28575046008135
Iteration: 16, Func. Count: 170, Neg. LLF: 145.27952993012056
Iteration: 17, Func. Count: 180, Neg. LLF: 20785461.599433273
Iteration: 18, Func. Count: 193, Neg. LLF: 146.5207429305112
Iteration: 19, Func. Count: 206, Neg. LLF: 145.56251376820617
Iteration: 20, Func. Count: 219, Neg. LLF: 145.27884642081082
Iteration: 21, Func. Count: 229, Neg. LLF: 145.27885623551654
Iteration: 22, Func. Count: 240, Neg. LLF: 145.27877759387033
Iteration: 23, Func. Count: 250, Neg. LLF: 145.27877511210994
Iteration: 24, Func. Count: 259, Neg. LLF: 145.27877541499785
Optimization terminated successfully (Exit mode 0)
Current function value: 145.27877511210994
Iterations: 25
Function evaluations: 259
Gradient evaluations: 24
Iteration: 1, Func. Count: 8, Neg. LLF: 158.8112303044592
Iteration: 2, Func. Count: 17, Neg. LLF: 149.94701160055195
Iteration: 3, Func. Count: 24, Neg. LLF: 151.50099472590787
Iteration: 4, Func. Count: 32, Neg. LLF: 148.96427704264536
Iteration: 5, Func. Count: 39, Neg. LLF: 148.84337227906488
Iteration: 6, Func. Count: 46, Neg. LLF: 148.70445461153435
Iteration: 7, Func. Count: 53, Neg. LLF: 148.63420782176698
Iteration: 8, Func. Count: 60, Neg. LLF: 148.5822643330222
Iteration: 9, Func. Count: 67, Neg. LLF: 148.57897619583406
Iteration: 10, Func. Count: 74, Neg. LLF: 148.5786977878202
Iteration: 11, Func. Count: 81, Neg. LLF: 148.57867233092497
Iteration: 12, Func. Count: 88, Neg. LLF: 148.5786709914004
Iteration: 13, Func. Count: 94, Neg. LLF: 148.57867109325235
Optimization terminated successfully (Exit mode 0)
Current function value: 148.5786709914004
Iterations: 13
Function evaluations: 94
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 20784078.44495896
Iteration: 2, Func. Count: 19, Neg. LLF: 64194.5250835284
Iteration: 3, Func. Count: 30, Neg. LLF: 157.19195309450646
Iteration: 4, Func. Count: 39, Neg. LLF: 151.85680363120633
Iteration: 5, Func. Count: 48, Neg. LLF: 150.1719151322546
Iteration: 6, Func. Count: 57, Neg. LLF: 149.46738051312815
Iteration: 7, Func. Count: 66, Neg. LLF: 148.3555210066701
Iteration: 8, Func. Count: 75, Neg. LLF: 146.03423440979398
Iteration: 9, Func. Count: 83, Neg. LLF: 146.00275806971507
Iteration: 10, Func. Count: 92, Neg. LLF: 146.31098344891424
Iteration: 11, Func. Count: 101, Neg. LLF: 145.90689172608043
Iteration: 12, Func. Count: 108, Neg. LLF: 145.9068917256373
Optimization terminated successfully (Exit mode 0)
Current function value: 145.90689172608043
Iterations: 12
Function evaluations: 108
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 20784085.039619595
Iteration: 2, Func. Count: 21, Neg. LLF: 149.92667811303394
Iteration: 3, Func. Count: 31, Neg. LLF: 147.6908918700544
Iteration: 4, Func. Count: 41, Neg. LLF: 146.2968704905258
Iteration: 5, Func. Count: 50, Neg. LLF: 147.5539794022413
Iteration: 6, Func. Count: 60, Neg. LLF: 146.19529118452562
Iteration: 7, Func. Count: 69, Neg. LLF: 146.0225537960936
Iteration: 8, Func. Count: 78, Neg. LLF: 145.99686955921558
Iteration: 9, Func. Count: 87, Neg. LLF: 145.96432193291818
Iteration: 10, Func. Count: 96, Neg. LLF: 145.9552378311006
Iteration: 11, Func. Count: 105, Neg. LLF: 145.9479835228692
Iteration: 12, Func. Count: 114, Neg. LLF: 145.94354321867
Iteration: 13, Func. Count: 123, Neg. LLF: 145.93625751076993
Iteration: 14, Func. Count: 132, Neg. LLF: 145.9069744535554
Iteration: 15, Func. Count: 141, Neg. LLF: 145.90692613481286
Iteration: 16, Func. Count: 150, Neg. LLF: 145.90689406725303
Iteration: 17, Func. Count: 159, Neg. LLF: 145.90689185332573
Iteration: 18, Func. Count: 167, Neg. LLF: 145.90689185496592
Optimization terminated successfully (Exit mode 0)
Current function value: 145.90689185332573
Iterations: 18
Function evaluations: 167
Gradient evaluations: 18
Iteration: 1, Func. Count: 11, Neg. LLF: 20784087.13783877
Iteration: 2, Func. Count: 23, Neg. LLF: 13532725.769709336
Iteration: 3, Func. Count: 36, Neg. LLF: 146.34646016220606
Iteration: 4, Func. Count: 46, Neg. LLF: 146.206262326732
Iteration: 5, Func. Count: 56, Neg. LLF: 173.08809719849324
Iteration: 6, Func. Count: 70, Neg. LLF: 145.81091031879117
Iteration: 7, Func. Count: 81, Neg. LLF: 145.31890071005714
Iteration: 8, Func. Count: 91, Neg. LLF: 145.28398204096416
Iteration: 9, Func. Count: 101, Neg. LLF: 145.28060832161705
Iteration: 10, Func. Count: 111, Neg. LLF: 145.2790264212661
Iteration: 11, Func. Count: 121, Neg. LLF: 145.27882146167428
Iteration: 12, Func. Count: 131, Neg. LLF: 145.2787751523009
Iteration: 13, Func. Count: 140, Neg. LLF: 145.27877515219313
Optimization terminated successfully (Exit mode 0)
Current function value: 145.2787751523009
Iterations: 13
Function evaluations: 140
Gradient evaluations: 13
Iteration: 1, Func. Count: 12, Neg. LLF: 172.51151782382303
Iteration: 2, Func. Count: 26, Neg. LLF: 173.98782412391762
Iteration: 3, Func. Count: 38, Neg. LLF: 155.7978421265885
Iteration: 4, Func. Count: 51, Neg. LLF: 147.72385270545826
Iteration: 5, Func. Count: 62, Neg. LLF: 147.29135067061114
Iteration: 6, Func. Count: 73, Neg. LLF: 146.22458759184227
Iteration: 7, Func. Count: 84, Neg. LLF: 146.69333981176945
Iteration: 8, Func. Count: 96, Neg. LLF: 439.42988382576993
Iteration: 9, Func. Count: 109, Neg. LLF: 145.47768695305692
Iteration: 10, Func. Count: 120, Neg. LLF: 145.28829423219136
Iteration: 11, Func. Count: 131, Neg. LLF: 145.28149489926838
Iteration: 12, Func. Count: 142, Neg. LLF: 145.27892861126932
Iteration: 13, Func. Count: 153, Neg. LLF: 145.27883997955556
Iteration: 14, Func. Count: 164, Neg. LLF: 145.27879113918644
Iteration: 15, Func. Count: 175, Neg. LLF: 145.27877819532586
Iteration: 16, Func. Count: 186, Neg. LLF: 145.2787761675696
Iteration: 17, Func. Count: 197, Neg. LLF: 145.27877587564723
Optimization terminated successfully (Exit mode 0)
Current function value: 145.27877587564723
Iterations: 17
Function evaluations: 197
Gradient evaluations: 17
Iteration: 1, Func. Count: 5, Neg. LLF: 154.9536245825933
Iteration: 2, Func. Count: 10, Neg. LLF: 151.9634490722739
Iteration: 3, Func. Count: 15, Neg. LLF: 151.4689286074851
Iteration: 4, Func. Count: 19, Neg. LLF: 151.428439960315
Iteration: 5, Func. Count: 23, Neg. LLF: 151.42502814624686
Iteration: 6, Func. Count: 27, Neg. LLF: 151.41538151570447
Iteration: 7, Func. Count: 31, Neg. LLF: 151.40812719487013
Iteration: 8, Func. Count: 35, Neg. LLF: 151.39623906688186
Iteration: 9, Func. Count: 39, Neg. LLF: 151.38741870495616
Iteration: 10, Func. Count: 43, Neg. LLF: 151.35575850958648
Iteration: 11, Func. Count: 47, Neg. LLF: 150.8774150123822
Iteration: 12, Func. Count: 51, Neg. LLF: 151.23272170080773
Iteration: 13, Func. Count: 58, Neg. LLF: 149.89322208219681
Iteration: 14, Func. Count: 62, Neg. LLF: 149.87267845180185
Iteration: 15, Func. Count: 66, Neg. LLF: 149.86518460459874
Iteration: 16, Func. Count: 70, Neg. LLF: 149.8647702467953
Iteration: 17, Func. Count: 74, Neg. LLF: 149.86472587743816
Iteration: 18, Func. Count: 77, Neg. LLF: 149.86472595630903
Optimization terminated successfully (Exit mode 0)
Current function value: 149.86472587743816
Iterations: 18
Function evaluations: 77
Gradient evaluations: 18
Iteration: 1, Func. Count: 6, Neg. LLF: 20804788.564840224
Iteration: 2, Func. Count: 13, Neg. LLF: 156.78133386689865
Iteration: 3, Func. Count: 19, Neg. LLF: 151.4606272238673
Iteration: 4, Func. Count: 25, Neg. LLF: 149.78542352509814
Iteration: 5, Func. Count: 31, Neg. LLF: 149.07551080720125
Iteration: 6, Func. Count: 37, Neg. LLF: 146.71962712388762
Iteration: 7, Func. Count: 42, Neg. LLF: 148.12438329604464
Iteration: 8, Func. Count: 48, Neg. LLF: 146.07461128829874
Iteration: 9, Func. Count: 53, Neg. LLF: 145.91319454172304
Iteration: 10, Func. Count: 58, Neg. LLF: 145.90713325400202
Iteration: 11, Func. Count: 63, Neg. LLF: 145.90698199637285
Iteration: 12, Func. Count: 68, Neg. LLF: 145.90689857668156
Iteration: 13, Func. Count: 73, Neg. LLF: 145.90689154015655
Iteration: 14, Func. Count: 78, Neg. LLF: 149.95554414288299
Optimization terminated successfully (Exit mode 0)
Current function value: 145.90689153424788
Iterations: 15
Function evaluations: 83
Gradient evaluations: 14
Iteration: 1, Func. Count: 7, Neg. LLF: 20804511.69310626
Iteration: 2, Func. Count: 15, Neg. LLF: 150.26245755538787
Iteration: 3, Func. Count: 22, Neg. LLF: 147.87843006792454
Iteration: 4, Func. Count: 29, Neg. LLF: 146.41615452371164
Iteration: 5, Func. Count: 35, Neg. LLF: 146.11898848417678
Iteration: 6, Func. Count: 41, Neg. LLF: 148.77587829227005
Iteration: 7, Func. Count: 48, Neg. LLF: 145.961359852712
Iteration: 8, Func. Count: 54, Neg. LLF: 145.95805018771915
Iteration: 9, Func. Count: 60, Neg. LLF: 145.94959985906576
Iteration: 10, Func. Count: 66, Neg. LLF: 145.94392885753572
Iteration: 11, Func. Count: 72, Neg. LLF: 145.93907695273245
Iteration: 12, Func. Count: 78, Neg. LLF: 145.90899362193935
Iteration: 13, Func. Count: 84, Neg. LLF: 145.90691237279742
Iteration: 14, Func. Count: 90, Neg. LLF: 145.9068990251145
Iteration: 15, Func. Count: 96, Neg. LLF: 145.90689179493089
Iteration: 16, Func. Count: 101, Neg. LLF: 145.90689179787498
Optimization terminated successfully (Exit mode 0)
Current function value: 145.90689179493089
Iterations: 16
Function evaluations: 101
Gradient evaluations: 16
Iteration: 1, Func. Count: 8, Neg. LLF: 20799419.065561045
Iteration: 2, Func. Count: 17, Neg. LLF: 147.77180173544502
Iteration: 3, Func. Count: 25, Neg. LLF: 145.79554663046198
Iteration: 4, Func. Count: 32, Neg. LLF: 146.15081044844462
Iteration: 5, Func. Count: 40, Neg. LLF: 145.69104905694445
Iteration: 6, Func. Count: 47, Neg. LLF: 145.69088949209518
Iteration: 7, Func. Count: 54, Neg. LLF: 145.69080039287292
Iteration: 8, Func. Count: 60, Neg. LLF: 145.69080039371946
Optimization terminated successfully (Exit mode 0)
Current function value: 145.69080039287292
Iterations: 8
Function evaluations: 60
Gradient evaluations: 8
Iteration: 1, Func. Count: 9, Neg. LLF: 20799974.519891884
Iteration: 2, Func. Count: 18, Neg. LLF: 146.65626590075252
Iteration: 3, Func. Count: 26, Neg. LLF: 152.1479828307219
Iteration: 4, Func. Count: 35, Neg. LLF: 146.13309706656509
Iteration: 5, Func. Count: 43, Neg. LLF: 145.99095224995534
Iteration: 6, Func. Count: 51, Neg. LLF: 145.98161443485765
Iteration: 7, Func. Count: 59, Neg. LLF: 145.95311839142636
Iteration: 8, Func. Count: 67, Neg. LLF: 145.8494989195321
Iteration: 9, Func. Count: 75, Neg. LLF: 145.69804871921443
Iteration: 10, Func. Count: 83, Neg. LLF: 145.69522149760036
Iteration: 11, Func. Count: 91, Neg. LLF: 145.69083710728773
Iteration: 12, Func. Count: 99, Neg. LLF: 145.69080115507762
Iteration: 13, Func. Count: 107, Neg. LLF: 145.69079990111314
Iteration: 14, Func. Count: 114, Neg. LLF: 145.69079996525716
Optimization terminated successfully (Exit mode 0)
Current function value: 145.69079990111314
Iterations: 14
Function evaluations: 114
Gradient evaluations: 14
Iteration: 1, Func. Count: 6, Neg. LLF: 162.8840554274919
Iteration: 2, Func. Count: 12, Neg. LLF: 149.77599772198272
Iteration: 3, Func. Count: 18, Neg. LLF: 148.88873190581253
Iteration: 4, Func. Count: 23, Neg. LLF: 148.97204671775128
Iteration: 5, Func. Count: 29, Neg. LLF: 148.84291691939393
Iteration: 6, Func. Count: 34, Neg. LLF: 148.8407432360021
Iteration: 7, Func. Count: 39, Neg. LLF: 148.84044025868047
Iteration: 8, Func. Count: 44, Neg. LLF: 148.8396262272653
Iteration: 9, Func. Count: 49, Neg. LLF: 148.83946371205502
Iteration: 10, Func. Count: 54, Neg. LLF: 148.8394351545344
Iteration: 11, Func. Count: 58, Neg. LLF: 148.8394351545212
Optimization terminated successfully (Exit mode 0)
Current function value: 148.8394351545344
Iterations: 11
Function evaluations: 58
Gradient evaluations: 11
Iteration: 1, Func. Count: 7, Neg. LLF: 5228.071936304084
Iteration: 2, Func. Count: 15, Neg. LLF: 158.6531217713879
Iteration: 3, Func. Count: 22, Neg. LLF: 152.23121567870473
Iteration: 4, Func. Count: 29, Neg. LLF: 150.4506584517605
Iteration: 5, Func. Count: 36, Neg. LLF: 149.6883483881706
Iteration: 6, Func. Count: 43, Neg. LLF: 146.20613558813284
Iteration: 7, Func. Count: 49, Neg. LLF: 20816117.191841796
Iteration: 8, Func. Count: 57, Neg. LLF: 145.91174060115242
Iteration: 9, Func. Count: 63, Neg. LLF: 145.91471949290934
Iteration: 10, Func. Count: 70, Neg. LLF: 145.90709832539858
Iteration: 11, Func. Count: 76, Neg. LLF: 145.90689154613116
Iteration: 12, Func. Count: 81, Neg. LLF: 145.9068915465093
Optimization terminated successfully (Exit mode 0)
Current function value: 145.90689154613116
Iterations: 13
Function evaluations: 81
Gradient evaluations: 12
Iteration: 1, Func. Count: 8, Neg. LLF: 20788183.799498003
Iteration: 2, Func. Count: 17, Neg. LLF: 150.68829329655586
Iteration: 3, Func. Count: 25, Neg. LLF: 148.41472680157113
Iteration: 4, Func. Count: 33, Neg. LLF: 146.79875745669966
Iteration: 5, Func. Count: 40, Neg. LLF: 147.53453373337427
Iteration: 6, Func. Count: 48, Neg. LLF: 147.66127247333466
Iteration: 7, Func. Count: 57, Neg. LLF: 147.59962906177827
Iteration: 8, Func. Count: 65, Neg. LLF: 145.9842933367692
Iteration: 9, Func. Count: 72, Neg. LLF: 145.96546782053517
Iteration: 10, Func. Count: 79, Neg. LLF: 145.9625790559097
Iteration: 11, Func. Count: 86, Neg. LLF: 145.9584997417587
Iteration: 12, Func. Count: 93, Neg. LLF: 145.95477682799608
Iteration: 13, Func. Count: 100, Neg. LLF: 145.9481724060253
Iteration: 14, Func. Count: 107, Neg. LLF: 145.9417825335164
Iteration: 15, Func. Count: 114, Neg. LLF: 145.93386124002313
Iteration: 16, Func. Count: 121, Neg. LLF: 145.90808349584307
Iteration: 17, Func. Count: 128, Neg. LLF: 145.9074259428783
Iteration: 18, Func. Count: 135, Neg. LLF: 145.90694986231742
Iteration: 19, Func. Count: 142, Neg. LLF: 145.90693450133455
Iteration: 20, Func. Count: 149, Neg. LLF: 145.9068957748896
Iteration: 21, Func. Count: 156, Neg. LLF: 145.90698563009758
Optimization terminated successfully (Exit mode 0)
Current function value: 145.90689571650088
Iterations: 21
Function evaluations: 158
Gradient evaluations: 21
Iteration: 1, Func. Count: 9, Neg. LLF: 20785493.24768773
Iteration: 2, Func. Count: 19, Neg. LLF: 148.16696891856319
Iteration: 3, Func. Count: 28, Neg. LLF: 145.9102400625026
Iteration: 4, Func. Count: 36, Neg. LLF: 146.16673015740844
Iteration: 5, Func. Count: 45, Neg. LLF: 145.7053787974922
Iteration: 6, Func. Count: 53, Neg. LLF: 145.69562945110692
Iteration: 7, Func. Count: 61, Neg. LLF: 145.69082738862252
Iteration: 8, Func. Count: 69, Neg. LLF: 145.69082598365478
Iteration: 9, Func. Count: 77, Neg. LLF: 145.69079939173787
Iteration: 10, Func. Count: 85, Neg. LLF: 145.6982988234147
Optimization terminated successfully (Exit mode 0)
Current function value: 145.69079876801018
Iterations: 10
Function evaluations: 95
Gradient evaluations: 10
Iteration: 1, Func. Count: 10, Neg. LLF: 184.43833953446514
Iteration: 2, Func. Count: 21, Neg. LLF: 148.48164671828923
Iteration: 3, Func. Count: 30, Neg. LLF: 147.75220955932483
Iteration: 4, Func. Count: 39, Neg. LLF: 146.5794099563892
Iteration: 5, Func. Count: 48, Neg. LLF: 150.18925898443922
Iteration: 6, Func. Count: 58, Neg. LLF: 146.1717900176395
Iteration: 7, Func. Count: 67, Neg. LLF: 147.39834051921974
Iteration: 8, Func. Count: 77, Neg. LLF: 146.26163533352988
Iteration: 9, Func. Count: 87, Neg. LLF: 146.02019888622263
Iteration: 10, Func. Count: 97, Neg. LLF: 145.96591703451557
Iteration: 11, Func. Count: 106, Neg. LLF: 145.95809410782232
Iteration: 12, Func. Count: 115, Neg. LLF: 145.94436855728802
Iteration: 13, Func. Count: 124, Neg. LLF: 145.93989296785094
Iteration: 14, Func. Count: 133, Neg. LLF: 145.9395437834234
Iteration: 15, Func. Count: 142, Neg. LLF: 145.93801352326804
Iteration: 16, Func. Count: 151, Neg. LLF: 145.93430729736286
Iteration: 17, Func. Count: 160, Neg. LLF: 145.92034404330045
Iteration: 18, Func. Count: 169, Neg. LLF: 145.91130051412262
Iteration: 19, Func. Count: 178, Neg. LLF: 145.90718998607915
Iteration: 20, Func. Count: 187, Neg. LLF: 145.90689534618227
Iteration: 21, Func. Count: 196, Neg. LLF: 151.60159949753267
Iteration: 22, Func. Count: 209, Neg. LLF: 145.90689685198254
Iteration: 23, Func. Count: 219, Neg. LLF: 145.906891539059
Optimization terminated successfully (Exit mode 0)
Current function value: 145.906891539059
Iterations: 24
Function evaluations: 219
Gradient evaluations: 23
Iteration: 1, Func. Count: 7, Neg. LLF: 159.9931765508246
Iteration: 2, Func. Count: 14, Neg. LLF: 150.28588034340143
Iteration: 3, Func. Count: 21, Neg. LLF: 148.89963767075423
Iteration: 4, Func. Count: 27, Neg. LLF: 148.99396412997118
Iteration: 5, Func. Count: 34, Neg. LLF: 148.84356720187782
Iteration: 6, Func. Count: 40, Neg. LLF: 148.8408706521585
Iteration: 7, Func. Count: 46, Neg. LLF: 148.8405363663082
Iteration: 8, Func. Count: 52, Neg. LLF: 148.83965368336533
Iteration: 9, Func. Count: 58, Neg. LLF: 148.839473865274
Iteration: 10, Func. Count: 64, Neg. LLF: 148.83943526478055
Iteration: 11, Func. Count: 70, Neg. LLF: 148.83943468249507
Optimization terminated successfully (Exit mode 0)
Current function value: 148.83943468249507
Iterations: 11
Function evaluations: 70
Gradient evaluations: 11
Iteration: 1, Func. Count: 8, Neg. LLF: 5535.428664557416
Iteration: 2, Func. Count: 17, Neg. LLF: 158.5117155857449
Iteration: 3, Func. Count: 25, Neg. LLF: 152.14394679900312
Iteration: 4, Func. Count: 33, Neg. LLF: 150.34399744116877
Iteration: 5, Func. Count: 41, Neg. LLF: 149.5953449449704
Iteration: 6, Func. Count: 49, Neg. LLF: 150.96539297797753
Iteration: 7, Func. Count: 57, Neg. LLF: 146.0075633521809
Iteration: 8, Func. Count: 64, Neg. LLF: 151.54855690918245
Iteration: 9, Func. Count: 73, Neg. LLF: 146.42285950540722
Iteration: 10, Func. Count: 81, Neg. LLF: 145.90688514999127
Iteration: 11, Func. Count: 88, Neg. LLF: 145.90689379820458
Iteration: 12, Func. Count: 95, Neg. LLF: 145.9170778269021
Optimization terminated successfully (Exit mode 0)
Current function value: 145.90689379798138
Iterations: 13
Function evaluations: 99
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 20786143.93877551
Iteration: 2, Func. Count: 19, Neg. LLF: 150.60309398480285
Iteration: 3, Func. Count: 28, Neg. LLF: 148.6178630641251
Iteration: 4, Func. Count: 37, Neg. LLF: 146.99438962635514
Iteration: 5, Func. Count: 46, Neg. LLF: 146.22694203628959
Iteration: 6, Func. Count: 54, Neg. LLF: 146.31495459213355
Iteration: 7, Func. Count: 63, Neg. LLF: 146.26525673871765
Iteration: 8, Func. Count: 72, Neg. LLF: 145.98118138769112
Iteration: 9, Func. Count: 80, Neg. LLF: 145.97092731940393
Iteration: 10, Func. Count: 88, Neg. LLF: 145.96147451006914
Iteration: 11, Func. Count: 96, Neg. LLF: 145.95259004302778
Iteration: 12, Func. Count: 104, Neg. LLF: 145.94551625276029
Iteration: 13, Func. Count: 112, Neg. LLF: 145.94032051347907
Iteration: 14, Func. Count: 120, Neg. LLF: 145.9274320460732
Iteration: 15, Func. Count: 128, Neg. LLF: 145.90689738296595
Iteration: 16, Func. Count: 136, Neg. LLF: 7529802.741185238
Iteration: 17, Func. Count: 149, Neg. LLF: 145.90690851741445
Iteration: 18, Func. Count: 157, Neg. LLF: 145.90689157364196
Optimization terminated successfully (Exit mode 0)
Current function value: 145.90689157206486
Iterations: 19
Function evaluations: 157
Gradient evaluations: 18
Iteration: 1, Func. Count: 10, Neg. LLF: 20784971.17337411
Iteration: 2, Func. Count: 21, Neg. LLF: 147.99432109878293
Iteration: 3, Func. Count: 31, Neg. LLF: 145.79235538089307
Iteration: 4, Func. Count: 40, Neg. LLF: 148.24248603252653
Iteration: 5, Func. Count: 50, Neg. LLF: 145.55495232374932
Iteration: 6, Func. Count: 59, Neg. LLF: 145.58549522789
Iteration: 7, Func. Count: 69, Neg. LLF: 145.52541475586594
Iteration: 8, Func. Count: 78, Neg. LLF: 145.52064040533782
Iteration: 9, Func. Count: 87, Neg. LLF: 162.8529186255324
Iteration: 10, Func. Count: 99, Neg. LLF: 695.0726878763907
Iteration: 11, Func. Count: 112, Neg. LLF: 145.52087442174778
Iteration: 12, Func. Count: 122, Neg. LLF: 145.5207674994588
Iteration: 13, Func. Count: 131, Neg. LLF: 145.52076677645894
Optimization terminated successfully (Exit mode 0)
Current function value: 145.52076677645894
Iterations: 14
Function evaluations: 131
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 184.51511186319593
Iteration: 2, Func. Count: 23, Neg. LLF: 202.8202547777071
Iteration: 3, Func. Count: 35, Neg. LLF: 148.1236963024948
Iteration: 4, Func. Count: 45, Neg. LLF: 147.15786607233457
Iteration: 5, Func. Count: 55, Neg. LLF: 146.71639786972136
Iteration: 6, Func. Count: 65, Neg. LLF: 146.32551238631248
Iteration: 7, Func. Count: 75, Neg. LLF: 147.64518982687468
Iteration: 8, Func. Count: 86, Neg. LLF: 146.1091794090996
Iteration: 9, Func. Count: 96, Neg. LLF: 146.06043622306544
Iteration: 10, Func. Count: 106, Neg. LLF: 146.06292468409126
Iteration: 11, Func. Count: 117, Neg. LLF: 146.0105242348323
Iteration: 12, Func. Count: 127, Neg. LLF: 145.97668358086696
Iteration: 13, Func. Count: 137, Neg. LLF: 145.9317749343105
Iteration: 14, Func. Count: 147, Neg. LLF: 145.9317467599842
Iteration: 15, Func. Count: 157, Neg. LLF: 145.93140927634218
Iteration: 16, Func. Count: 167, Neg. LLF: 145.93011443131954
Iteration: 17, Func. Count: 177, Neg. LLF: 145.92843279827918
Iteration: 18, Func. Count: 187, Neg. LLF: 145.9207877807317
Iteration: 19, Func. Count: 197, Neg. LLF: 145.9073725111515
Iteration: 20, Func. Count: 207, Neg. LLF: 18366824.15431296
Iteration: 21, Func. Count: 222, Neg. LLF: 145.90766802481116
Iteration: 22, Func. Count: 233, Neg. LLF: 145.9068915344144
Iteration: 23, Func. Count: 242, Neg. LLF: 145.9068915446396
Optimization terminated successfully (Exit mode 0)
Current function value: 145.9068915344144
Iterations: 24
Function evaluations: 242
Gradient evaluations: 23
Iteration: 1, Func. Count: 8, Neg. LLF: 172.17836479807417
Iteration: 2, Func. Count: 17, Neg. LLF: 151.69675532025343
Iteration: 3, Func. Count: 24, Neg. LLF: 150.5686215312709
Iteration: 4, Func. Count: 32, Neg. LLF: 148.7783263215218
Iteration: 5, Func. Count: 39, Neg. LLF: 148.69295119495774
Iteration: 6, Func. Count: 46, Neg. LLF: 148.65513453117498
Iteration: 7, Func. Count: 53, Neg. LLF: 148.62906799650244
Iteration: 8, Func. Count: 60, Neg. LLF: 148.58486492046833
Iteration: 9, Func. Count: 67, Neg. LLF: 148.5771402962955
Iteration: 10, Func. Count: 74, Neg. LLF: 148.72221196350714
Iteration: 11, Func. Count: 82, Neg. LLF: 148.57342693551536
Iteration: 12, Func. Count: 89, Neg. LLF: 148.5734191812602
Iteration: 13, Func. Count: 95, Neg. LLF: 148.5734191769072
Optimization terminated successfully (Exit mode 0)
Current function value: 148.5734191812602
Iterations: 13
Function evaluations: 95
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 5898.186908814868
Iteration: 2, Func. Count: 19, Neg. LLF: 158.39152234857514
Iteration: 3, Func. Count: 28, Neg. LLF: 152.08309852186088
Iteration: 4, Func. Count: 37, Neg. LLF: 150.28336063221866
Iteration: 5, Func. Count: 46, Neg. LLF: 149.45182472485288
Iteration: 6, Func. Count: 55, Neg. LLF: 160.46011363563264
Iteration: 7, Func. Count: 64, Neg. LLF: 146.25970687826057
Iteration: 8, Func. Count: 72, Neg. LLF: 146.188709175436
Iteration: 9, Func. Count: 81, Neg. LLF: 145.9085767478872
Iteration: 10, Func. Count: 90, Neg. LLF: 145.90692694640722
Iteration: 11, Func. Count: 98, Neg. LLF: 145.90689159165007
Iteration: 12, Func. Count: 105, Neg. LLF: 145.90689159169793
Optimization terminated successfully (Exit mode 0)
Current function value: 145.90689159165007
Iterations: 13
Function evaluations: 105
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 20785457.59005442
Iteration: 2, Func. Count: 21, Neg. LLF: 150.5761392116731
Iteration: 3, Func. Count: 31, Neg. LLF: 148.61249665380456
Iteration: 4, Func. Count: 41, Neg. LLF: 147.00395359053607
Iteration: 5, Func. Count: 51, Neg. LLF: 148.68466688153723
Iteration: 6, Func. Count: 61, Neg. LLF: 146.81946241185875
Iteration: 7, Func. Count: 71, Neg. LLF: 145.96861454011213
Iteration: 8, Func. Count: 80, Neg. LLF: 145.96073207255725
Iteration: 9, Func. Count: 89, Neg. LLF: 145.9485548500879
Iteration: 10, Func. Count: 98, Neg. LLF: 145.94510549828425
Iteration: 11, Func. Count: 107, Neg. LLF: 145.94278949386063
Iteration: 12, Func. Count: 116, Neg. LLF: 145.93465385998252
Iteration: 13, Func. Count: 125, Neg. LLF: 145.90719822377514
Iteration: 14, Func. Count: 134, Neg. LLF: 145.90696253557738
Iteration: 15, Func. Count: 143, Neg. LLF: 145.90689226577902
Iteration: 16, Func. Count: 152, Neg. LLF: 145.90689168620654
Optimization terminated successfully (Exit mode 0)
Current function value: 145.90689168620654
Iterations: 16
Function evaluations: 152
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 20784563.153023116
Iteration: 2, Func. Count: 23, Neg. LLF: 304.3186242845631
Iteration: 3, Func. Count: 35, Neg. LLF: 146.49721903268417
Iteration: 4, Func. Count: 45, Neg. LLF: 147.36062225327197
Iteration: 5, Func. Count: 57, Neg. LLF: 152.3491323759039
Iteration: 6, Func. Count: 71, Neg. LLF: 145.99472170331893
Iteration: 7, Func. Count: 82, Neg. LLF: 145.4055509893275
Iteration: 8, Func. Count: 92, Neg. LLF: 145.30981898697078
Iteration: 9, Func. Count: 102, Neg. LLF: 145.29074245463394
Iteration: 10, Func. Count: 112, Neg. LLF: 145.28159552642788
Iteration: 11, Func. Count: 122, Neg. LLF: 145.28076552893958
Iteration: 12, Func. Count: 132, Neg. LLF: 145.2796916474139
Iteration: 13, Func. Count: 142, Neg. LLF: 145.27938098147078
Iteration: 14, Func. Count: 152, Neg. LLF: 145.27917844686542
Iteration: 15, Func. Count: 162, Neg. LLF: 145.2790495040924
Iteration: 16, Func. Count: 172, Neg. LLF: 146.08192242862563
Optimization terminated successfully (Exit mode 0)
Current function value: 145.27904940463813
Iterations: 17
Function evaluations: 176
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 184.20594008832387
Iteration: 2, Func. Count: 24, Neg. LLF: 181.5855299500486
Iteration: 3, Func. Count: 37, Neg. LLF: 147.91008152454546
Iteration: 4, Func. Count: 48, Neg. LLF: 150.92901431255345
Iteration: 5, Func. Count: 61, Neg. LLF: 147.9686658515835
Iteration: 6, Func. Count: 73, Neg. LLF: 146.35693891386023
Iteration: 7, Func. Count: 84, Neg. LLF: 147.1603553274387
Iteration: 8, Func. Count: 96, Neg. LLF: 146.03050661245433
Iteration: 9, Func. Count: 107, Neg. LLF: 146.14678106751774
Iteration: 10, Func. Count: 119, Neg. LLF: 145.84029285051096
Iteration: 11, Func. Count: 130, Neg. LLF: 145.8252022734265
Iteration: 12, Func. Count: 141, Neg. LLF: 145.82040349893052
Iteration: 13, Func. Count: 152, Neg. LLF: 145.81675306874865
Iteration: 14, Func. Count: 163, Neg. LLF: 145.8167229279638
Iteration: 15, Func. Count: 174, Neg. LLF: 145.81672168761662
Iteration: 16, Func. Count: 184, Neg. LLF: 145.8167216875706
Optimization terminated successfully (Exit mode 0)
Current function value: 145.81672168761662
Iterations: 16
Function evaluations: 184
Gradient evaluations: 16
Iteration: 1, Func. Count: 9, Neg. LLF: 170.09350584285002
Iteration: 2, Func. Count: 19, Neg. LLF: 152.1761250097819
Iteration: 3, Func. Count: 28, Neg. LLF: 150.91364149691537
Iteration: 4, Func. Count: 37, Neg. LLF: 148.77631088371334
Iteration: 5, Func. Count: 45, Neg. LLF: 148.95085976544829
Iteration: 6, Func. Count: 54, Neg. LLF: 148.6445109277484
Iteration: 7, Func. Count: 62, Neg. LLF: 148.61925637894078
Iteration: 8, Func. Count: 70, Neg. LLF: 148.60783541569356
Iteration: 9, Func. Count: 78, Neg. LLF: 148.59023314752034
Iteration: 10, Func. Count: 86, Neg. LLF: 148.57997570818412
Iteration: 11, Func. Count: 94, Neg. LLF: 148.576642116287
Iteration: 12, Func. Count: 102, Neg. LLF: 148.5734893040092
Iteration: 13, Func. Count: 110, Neg. LLF: 148.5734189099874
Iteration: 14, Func. Count: 117, Neg. LLF: 148.57341901734776
Optimization terminated successfully (Exit mode 0)
Current function value: 148.5734189099874
Iterations: 14
Function evaluations: 117
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 5760.556379778605
Iteration: 2, Func. Count: 21, Neg. LLF: 158.20978153180292
Iteration: 3, Func. Count: 31, Neg. LLF: 152.02805958690155
Iteration: 4, Func. Count: 41, Neg. LLF: 150.2352871535464
Iteration: 5, Func. Count: 51, Neg. LLF: 149.5162286947721
Iteration: 6, Func. Count: 61, Neg. LLF: 160.42570908058008
Iteration: 7, Func. Count: 71, Neg. LLF: 146.28094323140215
Iteration: 8, Func. Count: 80, Neg. LLF: 146.18382447289133
Iteration: 9, Func. Count: 90, Neg. LLF: 145.91005221214698
Iteration: 10, Func. Count: 100, Neg. LLF: 145.90689689168806
Iteration: 11, Func. Count: 109, Neg. LLF: 145.90689156528765
Iteration: 12, Func. Count: 117, Neg. LLF: 145.90689156530686
Optimization terminated successfully (Exit mode 0)
Current function value: 145.90689156528765
Iterations: 13
Function evaluations: 117
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 20784436.908369254
Iteration: 2, Func. Count: 23, Neg. LLF: 150.54673809519622
Iteration: 3, Func. Count: 34, Neg. LLF: 148.70127292216893
Iteration: 4, Func. Count: 45, Neg. LLF: 147.03631493107517
Iteration: 5, Func. Count: 56, Neg. LLF: 148.68511165397265
Iteration: 6, Func. Count: 67, Neg. LLF: 146.57695561754724
Iteration: 7, Func. Count: 78, Neg. LLF: 145.95927715002043
Iteration: 8, Func. Count: 88, Neg. LLF: 146.02863767498627
Iteration: 9, Func. Count: 99, Neg. LLF: 145.94585025271283
Iteration: 10, Func. Count: 109, Neg. LLF: 145.94153202693917
Iteration: 11, Func. Count: 119, Neg. LLF: 145.93070380756518
Iteration: 12, Func. Count: 129, Neg. LLF: 145.9069506789255
Iteration: 13, Func. Count: 139, Neg. LLF: 145.90692385263327
Iteration: 14, Func. Count: 149, Neg. LLF: 145.9068923036542
Iteration: 15, Func. Count: 158, Neg. LLF: 145.90689230805353
Optimization terminated successfully (Exit mode 0)
Current function value: 145.9068923036542
Iterations: 15
Function evaluations: 158
Gradient evaluations: 15
Iteration: 1, Func. Count: 12, Neg. LLF: 20784149.63971641
Iteration: 2, Func. Count: 25, Neg. LLF: 2856.757711722649
Iteration: 3, Func. Count: 39, Neg. LLF: 146.68068338716034
Iteration: 4, Func. Count: 50, Neg. LLF: 145.83224837231091
Iteration: 5, Func. Count: 61, Neg. LLF: 160.90467343563503
Iteration: 6, Func. Count: 78, Neg. LLF: 145.40784828694396
Iteration: 7, Func. Count: 89, Neg. LLF: 145.3706262572765
Iteration: 8, Func. Count: 100, Neg. LLF: 145.34875771811193
Iteration: 9, Func. Count: 111, Neg. LLF: 145.34782934172736
Iteration: 10, Func. Count: 122, Neg. LLF: 145.34754729511255
Iteration: 11, Func. Count: 133, Neg. LLF: 146.85384872307168
Optimization terminated successfully (Exit mode 0)
Current function value: 145.34754702797193
Iterations: 12
Function evaluations: 137
Gradient evaluations: 11
Iteration: 1, Func. Count: 13, Neg. LLF: 172.40048441372105
Iteration: 2, Func. Count: 28, Neg. LLF: 173.5244698563443
Iteration: 3, Func. Count: 41, Neg. LLF: 154.6037530292862
Iteration: 4, Func. Count: 55, Neg. LLF: 147.5375926931517
Iteration: 5, Func. Count: 67, Neg. LLF: 147.66431795149137
Iteration: 6, Func. Count: 80, Neg. LLF: 146.8260600023826
Iteration: 7, Func. Count: 92, Neg. LLF: 146.5287076299318
Iteration: 8, Func. Count: 104, Neg. LLF: 523.5496562870845
Iteration: 9, Func. Count: 117, Neg. LLF: 146.0818361935752
Iteration: 10, Func. Count: 130, Neg. LLF: 145.67111159663318
Iteration: 11, Func. Count: 142, Neg. LLF: 145.40038243989432
Iteration: 12, Func. Count: 154, Neg. LLF: 145.3818662842122
Iteration: 13, Func. Count: 167, Neg. LLF: 145.28684980349493
Iteration: 14, Func. Count: 179, Neg. LLF: 145.2792000899086
Iteration: 15, Func. Count: 191, Neg. LLF: 151.60192633499764
Iteration: 16, Func. Count: 206, Neg. LLF: 1321.7763855979413
Iteration: 17, Func. Count: 221, Neg. LLF: 145.77611633963724
Iteration: 18, Func. Count: 235, Neg. LLF: 145.2787894810038
Iteration: 19, Func. Count: 247, Neg. LLF: 145.27877709498856
Iteration: 20, Func. Count: 259, Neg. LLF: 145.27877523727054
Iteration: 21, Func. Count: 270, Neg. LLF: 145.27877553985243
Optimization terminated successfully (Exit mode 0)
Current function value: 145.27877523727054
Iterations: 22
Function evaluations: 270
Gradient evaluations: 21
Iteration: 1, Func. Count: 6, Neg. LLF: 151.51251963678956
Iteration: 2, Func. Count: 11, Neg. LLF: 154.23739104370352
Iteration: 3, Func. Count: 17, Neg. LLF: 151.40425663515686
Iteration: 4, Func. Count: 22, Neg. LLF: 151.4031088502613
Iteration: 5, Func. Count: 27, Neg. LLF: 151.4015356129593
Iteration: 6, Func. Count: 32, Neg. LLF: 151.39721290821186
Iteration: 7, Func. Count: 37, Neg. LLF: 151.3907310682254
Iteration: 8, Func. Count: 42, Neg. LLF: 151.35192420931511
Iteration: 9, Func. Count: 47, Neg. LLF: 150.51565910150987
Iteration: 10, Func. Count: 52, Neg. LLF: 150.03013269432955
Iteration: 11, Func. Count: 57, Neg. LLF: 149.8866541664011
Iteration: 12, Func. Count: 62, Neg. LLF: 149.87453383233483
Iteration: 13, Func. Count: 67, Neg. LLF: 149.8681653007943
Iteration: 14, Func. Count: 72, Neg. LLF: 149.86513575857546
Iteration: 15, Func. Count: 77, Neg. LLF: 149.8647441098111
Iteration: 16, Func. Count: 82, Neg. LLF: 149.86472596431975
Iteration: 17, Func. Count: 86, Neg. LLF: 149.86472596854156
Optimization terminated successfully (Exit mode 0)
Current function value: 149.86472596431975
Iterations: 17
Function evaluations: 86
Gradient evaluations: 17
Iteration: 1, Func. Count: 7, Neg. LLF: 20796435.95760679
Iteration: 2, Func. Count: 15, Neg. LLF: 739.6872888124752
Iteration: 3, Func. Count: 24, Neg. LLF: 158.43212471775252
Iteration: 4, Func. Count: 31, Neg. LLF: 152.95081761305767
Iteration: 5, Func. Count: 38, Neg. LLF: 151.37664065287245
Iteration: 6, Func. Count: 45, Neg. LLF: 150.8244299445078
Iteration: 7, Func. Count: 52, Neg. LLF: 150.62041438454068
Iteration: 8, Func. Count: 59, Neg. LLF: 147.2670167356833
Iteration: 9, Func. Count: 65, Neg. LLF: 151.31726823642893
Iteration: 10, Func. Count: 72, Neg. LLF: 165.25439114949424
Iteration: 11, Func. Count: 80, Neg. LLF: 146.3805855092064
Iteration: 12, Func. Count: 86, Neg. LLF: 146.0484546726821
Iteration: 13, Func. Count: 92, Neg. LLF: 145.917987597943
Iteration: 14, Func. Count: 98, Neg. LLF: 145.90905226832763
Iteration: 15, Func. Count: 104, Neg. LLF: 145.90689262741031
Iteration: 16, Func. Count: 110, Neg. LLF: 145.90689152992732
Iteration: 17, Func. Count: 115, Neg. LLF: 145.90689152991612
Optimization terminated successfully (Exit mode 0)
Current function value: 145.90689152992732
Iterations: 17
Function evaluations: 115
Gradient evaluations: 17
Iteration: 1, Func. Count: 8, Neg. LLF: 20796334.606854703
Iteration: 2, Func. Count: 17, Neg. LLF: 150.15428886007874
Iteration: 3, Func. Count: 25, Neg. LLF: 148.09668306541053
Iteration: 4, Func. Count: 33, Neg. LLF: 147.46594204227117
Iteration: 5, Func. Count: 41, Neg. LLF: 146.20685784882585
Iteration: 6, Func. Count: 48, Neg. LLF: 152.67695478202242
Iteration: 7, Func. Count: 57, Neg. LLF: 146.26277450855648
Iteration: 8, Func. Count: 65, Neg. LLF: 146.08825460654387
Iteration: 9, Func. Count: 72, Neg. LLF: 146.08475479041982
Iteration: 10, Func. Count: 79, Neg. LLF: 146.08416130728972
Iteration: 11, Func. Count: 86, Neg. LLF: 146.08414225275516
Iteration: 12, Func. Count: 93, Neg. LLF: 146.08414100465353
Iteration: 13, Func. Count: 99, Neg. LLF: 146.0841410046007
Optimization terminated successfully (Exit mode 0)
Current function value: 146.08414100465353
Iterations: 13
Function evaluations: 99
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 20795688.993292242
Iteration: 2, Func. Count: 19, Neg. LLF: 147.7533986114025
Iteration: 3, Func. Count: 28, Neg. LLF: 145.7724051953769
Iteration: 4, Func. Count: 36, Neg. LLF: 146.07104002015433
Iteration: 5, Func. Count: 45, Neg. LLF: 145.63270153466695
Iteration: 6, Func. Count: 53, Neg. LLF: 145.5661301244697
Iteration: 7, Func. Count: 61, Neg. LLF: 145.5595314596094
Iteration: 8, Func. Count: 69, Neg. LLF: 145.5428490526212
Iteration: 9, Func. Count: 77, Neg. LLF: 145.53999017480794
Iteration: 10, Func. Count: 85, Neg. LLF: 20795630.05538989
Iteration: 11, Func. Count: 96, Neg. LLF: 145.69755991505582
Iteration: 12, Func. Count: 106, Neg. LLF: 145.53902338592337
Iteration: 13, Func. Count: 115, Neg. LLF: 145.53895707524669
Iteration: 14, Func. Count: 123, Neg. LLF: 145.53895646319305
Optimization terminated successfully (Exit mode 0)
Current function value: 145.53895646319305
Iterations: 15
Function evaluations: 123
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 20795201.995350305
Iteration: 2, Func. Count: 20, Neg. LLF: 146.8611788482929
Iteration: 3, Func. Count: 29, Neg. LLF: 149.67143921131284
Iteration: 4, Func. Count: 40, Neg. LLF: 151.7105857343168
Iteration: 5, Func. Count: 51, Neg. LLF: 147.30673098279559
Iteration: 6, Func. Count: 61, Neg. LLF: 146.1601673493962
Iteration: 7, Func. Count: 71, Neg. LLF: 146.03797556231783
Iteration: 8, Func. Count: 80, Neg. LLF: 146.03366734854063
Iteration: 9, Func. Count: 89, Neg. LLF: 146.0321894689651
Iteration: 10, Func. Count: 98, Neg. LLF: 146.03193833793125
Iteration: 11, Func. Count: 107, Neg. LLF: 146.0318528852046
Iteration: 12, Func. Count: 115, Neg. LLF: 146.03185288501666
Optimization terminated successfully (Exit mode 0)
Current function value: 146.0318528852046
Iterations: 12
Function evaluations: 115
Gradient evaluations: 12
Iteration: 1, Func. Count: 7, Neg. LLF: 154.64536325790073
Iteration: 2, Func. Count: 14, Neg. LLF: 151.1744538553323
Iteration: 3, Func. Count: 21, Neg. LLF: 148.90835323132106
Iteration: 4, Func. Count: 27, Neg. LLF: 148.95159946385508
Iteration: 5, Func. Count: 34, Neg. LLF: 148.84181882067816
Iteration: 6, Func. Count: 40, Neg. LLF: 148.83988609732447
Iteration: 7, Func. Count: 46, Neg. LLF: 148.83976109658892
Iteration: 8, Func. Count: 52, Neg. LLF: 148.8396056098918
Iteration: 9, Func. Count: 58, Neg. LLF: 148.8394746346501
Iteration: 10, Func. Count: 64, Neg. LLF: 148.83943798316133
Iteration: 11, Func. Count: 70, Neg. LLF: 148.83943476296884
Iteration: 12, Func. Count: 75, Neg. LLF: 148.83943476296403
Optimization terminated successfully (Exit mode 0)
Current function value: 148.83943476296884
Iterations: 12
Function evaluations: 75
Gradient evaluations: 12
Iteration: 1, Func. Count: 8, Neg. LLF: 6432.160374015343
Iteration: 2, Func. Count: 17, Neg. LLF: 158.46839290105376
Iteration: 3, Func. Count: 25, Neg. LLF: 152.10269910729477
Iteration: 4, Func. Count: 33, Neg. LLF: 150.31526581916978
Iteration: 5, Func. Count: 41, Neg. LLF: 149.54975046799677
Iteration: 6, Func. Count: 49, Neg. LLF: 147.08789593125962
Iteration: 7, Func. Count: 56, Neg. LLF: 146.06864572964622
Iteration: 8, Func. Count: 63, Neg. LLF: 146.00896299056956
Iteration: 9, Func. Count: 70, Neg. LLF: 145.91148389953528
Iteration: 10, Func. Count: 77, Neg. LLF: 158.50590439893224
Iteration: 11, Func. Count: 86, Neg. LLF: 146.02512331562951
Iteration: 12, Func. Count: 94, Neg. LLF: 145.9068952169276
Iteration: 13, Func. Count: 101, Neg. LLF: 145.90689206785288
Iteration: 14, Func. Count: 108, Neg. LLF: 145.9068915426122
Optimization terminated successfully (Exit mode 0)
Current function value: 145.9068915426122
Iterations: 15
Function evaluations: 108
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 20785227.705794048
Iteration: 2, Func. Count: 19, Neg. LLF: 150.61059122849622
Iteration: 3, Func. Count: 28, Neg. LLF: 148.76287022618496
Iteration: 4, Func. Count: 37, Neg. LLF: 147.13367971025605
Iteration: 5, Func. Count: 46, Neg. LLF: 147.0529481721445
Iteration: 6, Func. Count: 55, Neg. LLF: 147.41217795040183
Iteration: 7, Func. Count: 64, Neg. LLF: 145.99463120853056
Iteration: 8, Func. Count: 72, Neg. LLF: 146.17012132868376
Iteration: 9, Func. Count: 81, Neg. LLF: 145.97295657805756
Iteration: 10, Func. Count: 89, Neg. LLF: 145.9540563582806
Iteration: 11, Func. Count: 97, Neg. LLF: 145.9478560448828
Iteration: 12, Func. Count: 105, Neg. LLF: 145.94214339857217
Iteration: 13, Func. Count: 113, Neg. LLF: 145.93467294079505
Iteration: 14, Func. Count: 121, Neg. LLF: 145.90690862309398
Iteration: 15, Func. Count: 129, Neg. LLF: 145.9069424351087
Iteration: 16, Func. Count: 138, Neg. LLF: 145.90695198518523
Optimization terminated successfully (Exit mode 0)
Current function value: 145.9068922958749
Iterations: 16
Function evaluations: 140
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 20784600.028589897
Iteration: 2, Func. Count: 21, Neg. LLF: 148.1921508087566
Iteration: 3, Func. Count: 31, Neg. LLF: 146.017399318182
Iteration: 4, Func. Count: 40, Neg. LLF: 145.83109518831557
Iteration: 5, Func. Count: 49, Neg. LLF: 145.80892160761744
Iteration: 6, Func. Count: 59, Neg. LLF: 151.00767263918272
Iteration: 7, Func. Count: 70, Neg. LLF: 145.60480590999924
Iteration: 8, Func. Count: 79, Neg. LLF: 145.5699910644494
Iteration: 9, Func. Count: 88, Neg. LLF: 145.5577911049186
Iteration: 10, Func. Count: 97, Neg. LLF: 20787243.936882164
Iteration: 11, Func. Count: 109, Neg. LLF: 145.6967477863376
Iteration: 12, Func. Count: 120, Neg. LLF: 169.53520665221453
Iteration: 13, Func. Count: 132, Neg. LLF: 145.5389565311051
Iteration: 14, Func. Count: 140, Neg. LLF: 145.5389565310643
Optimization terminated successfully (Exit mode 0)
Current function value: 145.5389565311051
Iterations: 15
Function evaluations: 140
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 184.52397295761003
Iteration: 2, Func. Count: 23, Neg. LLF: 176.21243790537537
Iteration: 3, Func. Count: 35, Neg. LLF: 148.0846070197727
Iteration: 4, Func. Count: 45, Neg. LLF: 147.01678571808833
Iteration: 5, Func. Count: 55, Neg. LLF: 146.3708835334959
Iteration: 6, Func. Count: 65, Neg. LLF: 164.71321634750578
Iteration: 7, Func. Count: 77, Neg. LLF: 146.5114364934188
Iteration: 8, Func. Count: 88, Neg. LLF: 146.193599762867
Iteration: 9, Func. Count: 99, Neg. LLF: 146.06432773374468
Iteration: 10, Func. Count: 110, Neg. LLF: 146.0332409469923
Iteration: 11, Func. Count: 120, Neg. LLF: 146.03188854392948
Iteration: 12, Func. Count: 130, Neg. LLF: 146.03185957566689
Iteration: 13, Func. Count: 140, Neg. LLF: 146.03185396703958
Iteration: 14, Func. Count: 150, Neg. LLF: 146.03185249547224
Iteration: 15, Func. Count: 159, Neg. LLF: 146.03185249546425
Optimization terminated successfully (Exit mode 0)
Current function value: 146.03185249547224
Iterations: 15
Function evaluations: 159
Gradient evaluations: 15
Iteration: 1, Func. Count: 8, Neg. LLF: 150.80895664054842
Iteration: 2, Func. Count: 15, Neg. LLF: 152.06226607808082
Iteration: 3, Func. Count: 23, Neg. LLF: 148.85174715834785
Iteration: 4, Func. Count: 30, Neg. LLF: 148.8445337515683
Iteration: 5, Func. Count: 37, Neg. LLF: 148.8430270673662
Iteration: 6, Func. Count: 44, Neg. LLF: 148.8402938603981
Iteration: 7, Func. Count: 51, Neg. LLF: 148.83961273213214
Iteration: 8, Func. Count: 58, Neg. LLF: 148.83943839748883
Iteration: 9, Func. Count: 65, Neg. LLF: 148.83943469956034
Iteration: 10, Func. Count: 71, Neg. LLF: 148.83943464235577
Optimization terminated successfully (Exit mode 0)
Current function value: 148.83943469956034
Iterations: 10
Function evaluations: 71
Gradient evaluations: 10
Iteration: 1, Func. Count: 9, Neg. LLF: 6828.437084079636
Iteration: 2, Func. Count: 19, Neg. LLF: 151.29896914954963
Iteration: 3, Func. Count: 28, Neg. LLF: 153.8864473237158
Iteration: 4, Func. Count: 37, Neg. LLF: 147.3917477870842
Iteration: 5, Func. Count: 45, Neg. LLF: 152.5070984324126
Iteration: 6, Func. Count: 54, Neg. LLF: 147.76341928563602
Iteration: 7, Func. Count: 63, Neg. LLF: 148.12671106287223
Iteration: 8, Func. Count: 72, Neg. LLF: 146.1320555630646
Iteration: 9, Func. Count: 80, Neg. LLF: 146.0268673883594
Iteration: 10, Func. Count: 88, Neg. LLF: 145.9143550706739
Iteration: 11, Func. Count: 96, Neg. LLF: 145.90830597205732
Iteration: 12, Func. Count: 104, Neg. LLF: 145.90695411861628
Iteration: 13, Func. Count: 112, Neg. LLF: 145.9068919676462
Iteration: 14, Func. Count: 119, Neg. LLF: 145.9068919655961
Optimization terminated successfully (Exit mode 0)
Current function value: 145.9068919676462
Iterations: 14
Function evaluations: 119
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 20784263.84759312
Iteration: 2, Func. Count: 21, Neg. LLF: 147.50500622479663
Iteration: 3, Func. Count: 30, Neg. LLF: 148.02924794447543
Iteration: 4, Func. Count: 42, Neg. LLF: 204.68343036849205
Iteration: 5, Func. Count: 53, Neg. LLF: 149.97891826888448
Iteration: 6, Func. Count: 63, Neg. LLF: 145.6241873793623
Iteration: 7, Func. Count: 73, Neg. LLF: 145.80982298915887
Iteration: 8, Func. Count: 83, Neg. LLF: 145.18002959120784
Iteration: 9, Func. Count: 92, Neg. LLF: 145.18026908087
Iteration: 10, Func. Count: 102, Neg. LLF: 145.15808193953822
Iteration: 11, Func. Count: 111, Neg. LLF: 145.15648181625676
Iteration: 12, Func. Count: 120, Neg. LLF: 145.15616325379582
Iteration: 13, Func. Count: 129, Neg. LLF: 145.15614852028574
Iteration: 14, Func. Count: 137, Neg. LLF: 145.15614850973319
Optimization terminated successfully (Exit mode 0)
Current function value: 145.15614852028574
Iterations: 14
Function evaluations: 137
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 20784251.327318322
Iteration: 2, Func. Count: 23, Neg. LLF: 148.01125793857108
Iteration: 3, Func. Count: 34, Neg. LLF: 145.8125229374343
Iteration: 4, Func. Count: 44, Neg. LLF: 145.97088177451766
Iteration: 5, Func. Count: 55, Neg. LLF: 145.6517119512043
Iteration: 6, Func. Count: 66, Neg. LLF: 145.58234349748682
Iteration: 7, Func. Count: 76, Neg. LLF: 145.59030894387124
Iteration: 8, Func. Count: 87, Neg. LLF: 145.52074568069304
Iteration: 9, Func. Count: 97, Neg. LLF: 151.83809594132296
Iteration: 10, Func. Count: 110, Neg. LLF: 145.6936175960612
Iteration: 11, Func. Count: 123, Neg. LLF: 145.52077556297763
Iteration: 12, Func. Count: 134, Neg. LLF: 145.52076687058883
Iteration: 13, Func. Count: 143, Neg. LLF: 145.52076687041117
Optimization terminated successfully (Exit mode 0)
Current function value: 145.52076687058883
Iterations: 14
Function evaluations: 143
Gradient evaluations: 13
Iteration: 1, Func. Count: 12, Neg. LLF: 184.5808928585651
Iteration: 2, Func. Count: 25, Neg. LLF: 199.37980404236683
Iteration: 3, Func. Count: 38, Neg. LLF: 148.06320096980116
Iteration: 4, Func. Count: 49, Neg. LLF: 147.12194495701794
Iteration: 5, Func. Count: 60, Neg. LLF: 147.03280857806823
Iteration: 6, Func. Count: 72, Neg. LLF: 146.09463330137154
Iteration: 7, Func. Count: 83, Neg. LLF: 158.51878978488745
Iteration: 8, Func. Count: 95, Neg. LLF: 147.62290348163012
Iteration: 9, Func. Count: 108, Neg. LLF: 145.8303516519058
Iteration: 10, Func. Count: 119, Neg. LLF: 145.7932723260955
Iteration: 11, Func. Count: 130, Neg. LLF: 145.79660856143627
Iteration: 12, Func. Count: 142, Neg. LLF: 145.78900381168614
Iteration: 13, Func. Count: 153, Neg. LLF: 145.78859620022206
Iteration: 14, Func. Count: 164, Neg. LLF: 145.78834179575946
Iteration: 15, Func. Count: 175, Neg. LLF: 145.78829351362572
Iteration: 16, Func. Count: 186, Neg. LLF: 145.78829001063428
Iteration: 17, Func. Count: 196, Neg. LLF: 145.78829001060964
Optimization terminated successfully (Exit mode 0)
Current function value: 145.78829001063428
Iterations: 17
Function evaluations: 196
Gradient evaluations: 17
Iteration: 1, Func. Count: 9, Neg. LLF: 160.9774885933033
Iteration: 2, Func. Count: 19, Neg. LLF: 149.53811050575246
Iteration: 3, Func. Count: 27, Neg. LLF: 151.1820884535191
Iteration: 4, Func. Count: 36, Neg. LLF: 148.888210859316
Iteration: 5, Func. Count: 44, Neg. LLF: 148.84161081345513
Iteration: 6, Func. Count: 52, Neg. LLF: 148.69540190253164
Iteration: 7, Func. Count: 60, Neg. LLF: 148.63991762623198
Iteration: 8, Func. Count: 68, Neg. LLF: 148.57971590194387
Iteration: 9, Func. Count: 76, Neg. LLF: 148.58078275889352
Iteration: 10, Func. Count: 85, Neg. LLF: 148.5737580095607
Iteration: 11, Func. Count: 93, Neg. LLF: 148.57343141923062
Iteration: 12, Func. Count: 101, Neg. LLF: 148.5734189363702
Iteration: 13, Func. Count: 108, Neg. LLF: 148.57341893203866
Optimization terminated successfully (Exit mode 0)
Current function value: 148.5734189363702
Iterations: 13
Function evaluations: 108
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 7357.812502344177
Iteration: 2, Func. Count: 21, Neg. LLF: 151.30370398580115
Iteration: 3, Func. Count: 31, Neg. LLF: 153.75633570423852
Iteration: 4, Func. Count: 41, Neg. LLF: 147.72899714065935
Iteration: 5, Func. Count: 51, Neg. LLF: 156.4061404994832
Iteration: 6, Func. Count: 61, Neg. LLF: 147.14597451536758
Iteration: 7, Func. Count: 70, Neg. LLF: 147.32278705542888
Iteration: 8, Func. Count: 80, Neg. LLF: 147.70378262610745
Iteration: 9, Func. Count: 90, Neg. LLF: 146.8213271461771
Iteration: 10, Func. Count: 99, Neg. LLF: 145.91843337669715
Iteration: 11, Func. Count: 108, Neg. LLF: 146.94387527752195
Iteration: 12, Func. Count: 119, Neg. LLF: 145.90824565911194
Iteration: 13, Func. Count: 128, Neg. LLF: 145.90692809677373
Iteration: 14, Func. Count: 137, Neg. LLF: 145.90691103429523
Iteration: 15, Func. Count: 146, Neg. LLF: 148.2940455008923
Optimization terminated successfully (Exit mode 0)
Current function value: 145.90691102974054
Iterations: 16
Function evaluations: 151
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 20784109.855032124
Iteration: 2, Func. Count: 23, Neg. LLF: 147.4772612954975
Iteration: 3, Func. Count: 33, Neg. LLF: 148.01146001240866
Iteration: 4, Func. Count: 46, Neg. LLF: 215.20853168844425
Iteration: 5, Func. Count: 58, Neg. LLF: 148.62429558944146
Iteration: 6, Func. Count: 69, Neg. LLF: 145.85547965234005
Iteration: 7, Func. Count: 80, Neg. LLF: 145.3676835684124
Iteration: 8, Func. Count: 91, Neg. LLF: 145.36973350026867
Iteration: 9, Func. Count: 102, Neg. LLF: 145.08566538962987
Iteration: 10, Func. Count: 112, Neg. LLF: 145.11437084559796
Iteration: 11, Func. Count: 123, Neg. LLF: 145.07488932081247
Iteration: 12, Func. Count: 134, Neg. LLF: 145.07688625301014
Iteration: 13, Func. Count: 145, Neg. LLF: 145.06923635739403
Iteration: 14, Func. Count: 155, Neg. LLF: 145.06852618770571
Iteration: 15, Func. Count: 165, Neg. LLF: 145.06850499559144
Iteration: 16, Func. Count: 175, Neg. LLF: 145.06850384509946
Iteration: 17, Func. Count: 184, Neg. LLF: 145.0685038310687
Optimization terminated successfully (Exit mode 0)
Current function value: 145.06850384509946
Iterations: 17
Function evaluations: 184
Gradient evaluations: 17
Iteration: 1, Func. Count: 12, Neg. LLF: 20784111.443473164
Iteration: 2, Func. Count: 25, Neg. LLF: 2406.3307175008576
Iteration: 3, Func. Count: 39, Neg. LLF: 146.59624739835618
Iteration: 4, Func. Count: 50, Neg. LLF: 145.95760675834688
Iteration: 5, Func. Count: 61, Neg. LLF: 167.89911536199574
Iteration: 6, Func. Count: 78, Neg. LLF: 145.46042973735473
Iteration: 7, Func. Count: 89, Neg. LLF: 145.38599198395704
Iteration: 8, Func. Count: 100, Neg. LLF: 145.36570623182683
Iteration: 9, Func. Count: 111, Neg. LLF: 145.3518737924933
Iteration: 10, Func. Count: 122, Neg. LLF: 145.34815197617166
Iteration: 11, Func. Count: 133, Neg. LLF: 145.34759999553398
Iteration: 12, Func. Count: 144, Neg. LLF: 145.34756229755064
Iteration: 13, Func. Count: 155, Neg. LLF: 145.34754501174817
Iteration: 14, Func. Count: 166, Neg. LLF: 145.34754697216525
Iteration: 15, Func. Count: 177, Neg. LLF: 145.47454961872597
Optimization terminated successfully (Exit mode 0)
Current function value: 145.34754696671513
Iterations: 16
Function evaluations: 181
Gradient evaluations: 15
Iteration: 1, Func. Count: 13, Neg. LLF: 184.2427169654689
Iteration: 2, Func. Count: 26, Neg. LLF: 181.19944968246986
Iteration: 3, Func. Count: 40, Neg. LLF: 147.98807778169484
Iteration: 4, Func. Count: 52, Neg. LLF: 154.03229733904243
Iteration: 5, Func. Count: 65, Neg. LLF: 147.33951846044835
Iteration: 6, Func. Count: 77, Neg. LLF: 149.57372799751994
Iteration: 7, Func. Count: 90, Neg. LLF: 147.436568245434
Iteration: 8, Func. Count: 103, Neg. LLF: 147.1270286772089
Iteration: 9, Func. Count: 116, Neg. LLF: 148.29728479691602
Iteration: 10, Func. Count: 129, Neg. LLF: 147.18964660354305
Iteration: 11, Func. Count: 142, Neg. LLF: 145.9058308343247
Iteration: 12, Func. Count: 154, Neg. LLF: 145.94939818705356
Iteration: 13, Func. Count: 167, Neg. LLF: 145.81935043969932
Iteration: 14, Func. Count: 179, Neg. LLF: 145.81958722737744
Iteration: 15, Func. Count: 192, Neg. LLF: 145.8168729312675
Iteration: 16, Func. Count: 204, Neg. LLF: 145.8167227668209
Iteration: 17, Func. Count: 216, Neg. LLF: 145.81672176309354
Iteration: 18, Func. Count: 227, Neg. LLF: 145.81672176310752
Optimization terminated successfully (Exit mode 0)
Current function value: 145.81672176309354
Iterations: 18
Function evaluations: 227
Gradient evaluations: 18
Iteration: 1, Func. Count: 10, Neg. LLF: 158.8746795854893
Iteration: 2, Func. Count: 21, Neg. LLF: 149.96414247911616
Iteration: 3, Func. Count: 30, Neg. LLF: 151.3883405262162
Iteration: 4, Func. Count: 40, Neg. LLF: 148.95205945334686
Iteration: 5, Func. Count: 49, Neg. LLF: 148.84271815850465
Iteration: 6, Func. Count: 58, Neg. LLF: 148.70640227921032
Iteration: 7, Func. Count: 67, Neg. LLF: 148.63847862445377
Iteration: 8, Func. Count: 76, Neg. LLF: 148.57640862748664
Iteration: 9, Func. Count: 85, Neg. LLF: 148.5747994087204
Iteration: 10, Func. Count: 94, Neg. LLF: 148.57533195627892
Iteration: 11, Func. Count: 104, Neg. LLF: 148.57344335676967
Iteration: 12, Func. Count: 113, Neg. LLF: 148.57341990303962
Iteration: 13, Func. Count: 122, Neg. LLF: 148.57341872764485
Iteration: 14, Func. Count: 130, Neg. LLF: 148.57341883501877
Optimization terminated successfully (Exit mode 0)
Current function value: 148.57341872764485
Iterations: 14
Function evaluations: 130
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 7131.5070126103055
Iteration: 2, Func. Count: 23, Neg. LLF: 151.1808922258887
Iteration: 3, Func. Count: 34, Neg. LLF: 153.46532575723342
Iteration: 4, Func. Count: 45, Neg. LLF: 147.7582052943229
Iteration: 5, Func. Count: 56, Neg. LLF: 156.2801671149333
Iteration: 6, Func. Count: 67, Neg. LLF: 147.15965737643606
Iteration: 7, Func. Count: 77, Neg. LLF: 147.39985401788311
Iteration: 8, Func. Count: 88, Neg. LLF: 147.9678473375417
Iteration: 9, Func. Count: 99, Neg. LLF: 146.83329488792205
Iteration: 10, Func. Count: 109, Neg. LLF: 146.8190905327657
Iteration: 11, Func. Count: 120, Neg. LLF: 146.14358074447298
Iteration: 12, Func. Count: 130, Neg. LLF: 145.92053927637045
Iteration: 13, Func. Count: 140, Neg. LLF: 145.9073983551636
Iteration: 14, Func. Count: 150, Neg. LLF: 145.90695421597198
Iteration: 15, Func. Count: 160, Neg. LLF: 151.6019662740249
Iteration: 16, Func. Count: 173, Neg. LLF: 145.90762370074657
Iteration: 17, Func. Count: 184, Neg. LLF: 145.90689157920463
Iteration: 18, Func. Count: 193, Neg. LLF: 145.90689157920542
Optimization terminated successfully (Exit mode 0)
Current function value: 145.90689157920463
Iterations: 19
Function evaluations: 193
Gradient evaluations: 18
Iteration: 1, Func. Count: 12, Neg. LLF: 20784228.65249552
Iteration: 2, Func. Count: 25, Neg. LLF: 147.3372638894275
Iteration: 3, Func. Count: 36, Neg. LLF: 147.89030176609964
Iteration: 4, Func. Count: 50, Neg. LLF: 2702697.4560014647
Iteration: 5, Func. Count: 64, Neg. LLF: 147.12274513820958
Iteration: 6, Func. Count: 76, Neg. LLF: 149.02359731485745
Iteration: 7, Func. Count: 88, Neg. LLF: 145.18942699529177
Iteration: 8, Func. Count: 100, Neg. LLF: 145.29945603765964
Iteration: 9, Func. Count: 112, Neg. LLF: 145.05639213877112
Iteration: 10, Func. Count: 124, Neg. LLF: 145.00637103165556
Iteration: 11, Func. Count: 135, Neg. LLF: 144.99072559889214
Iteration: 12, Func. Count: 146, Neg. LLF: 144.9892974964449
Iteration: 13, Func. Count: 157, Neg. LLF: 144.99217757767428
Iteration: 14, Func. Count: 169, Neg. LLF: 144.98918217306056
Iteration: 15, Func. Count: 181, Neg. LLF: 144.9890629018209
Iteration: 16, Func. Count: 192, Neg. LLF: 144.98906164056672
Iteration: 17, Func. Count: 202, Neg. LLF: 144.98906162302018
Optimization terminated successfully (Exit mode 0)
Current function value: 144.98906164056672
Iterations: 17
Function evaluations: 202
Gradient evaluations: 17
Iteration: 1, Func. Count: 13, Neg. LLF: 20784131.79240729
Iteration: 2, Func. Count: 27, Neg. LLF: 2127259.711113335
Iteration: 3, Func. Count: 42, Neg. LLF: 147.10249482485278
Iteration: 4, Func. Count: 54, Neg. LLF: 146.79229607718844
Iteration: 5, Func. Count: 67, Neg. LLF: 148.26782825442248
Iteration: 6, Func. Count: 82, Neg. LLF: 145.8543447834825
Iteration: 7, Func. Count: 95, Neg. LLF: 145.49478350284522
Iteration: 8, Func. Count: 107, Neg. LLF: 145.78163516938525
Iteration: 9, Func. Count: 120, Neg. LLF: 145.37597821582588
Iteration: 10, Func. Count: 132, Neg. LLF: 145.28096604531342
Iteration: 11, Func. Count: 144, Neg. LLF: 145.27893522065864
Iteration: 12, Func. Count: 156, Neg. LLF: 145.2787761209465
Iteration: 13, Func. Count: 168, Neg. LLF: 145.27877515442816
Optimization terminated successfully (Exit mode 0)
Current function value: 145.27877515442816
Iterations: 13
Function evaluations: 168
Gradient evaluations: 13
Iteration: 1, Func. Count: 14, Neg. LLF: 172.37123223009462
Iteration: 2, Func. Count: 30, Neg. LLF: 173.64891476460014
Iteration: 3, Func. Count: 44, Neg. LLF: 148.6142475084861
Iteration: 4, Func. Count: 57, Neg. LLF: 147.93822533792567
Iteration: 5, Func. Count: 70, Neg. LLF: 150.49736150030137
Iteration: 6, Func. Count: 85, Neg. LLF: 147.5390913420675
Iteration: 7, Func. Count: 98, Neg. LLF: 154.6456584317112
Iteration: 8, Func. Count: 112, Neg. LLF: 155.42668197930803
Iteration: 9, Func. Count: 126, Neg. LLF: 151.19326828437158
Iteration: 10, Func. Count: 140, Neg. LLF: 149.1509009280986
Iteration: 11, Func. Count: 154, Neg. LLF: 147.7646178180431
Iteration: 12, Func. Count: 168, Neg. LLF: 147.0782221962355
Iteration: 13, Func. Count: 182, Neg. LLF: 146.76358427310285
Iteration: 14, Func. Count: 196, Neg. LLF: 146.1820055813952
Iteration: 15, Func. Count: 210, Neg. LLF: 145.84792388374828
Iteration: 16, Func. Count: 223, Neg. LLF: 145.8275814759298
Iteration: 17, Func. Count: 236, Neg. LLF: 145.84490282432924
Iteration: 18, Func. Count: 250, Neg. LLF: 145.8211580700829
Iteration: 19, Func. Count: 263, Neg. LLF: 145.8194629369847
Iteration: 20, Func. Count: 276, Neg. LLF: 145.8173154545512
Iteration: 21, Func. Count: 289, Neg. LLF: 145.8169444068666
Iteration: 22, Func. Count: 302, Neg. LLF: 145.81680866158828
Iteration: 23, Func. Count: 315, Neg. LLF: 145.8167490853401
Iteration: 24, Func. Count: 328, Neg. LLF: 145.81672258777962
Iteration: 25, Func. Count: 341, Neg. LLF: 145.8167219110889
Optimization terminated successfully (Exit mode 0)
Current function value: 145.8167219110889
Iterations: 25
Function evaluations: 341
Gradient evaluations: 25
Iteration: 1, Func. Count: 7, Neg. LLF: 152.47608846440312
Iteration: 2, Func. Count: 14, Neg. LLF: 158.1243213123849
Iteration: 3, Func. Count: 21, Neg. LLF: 149.93990867064326
Iteration: 4, Func. Count: 27, Neg. LLF: 149.912116047912
Iteration: 5, Func. Count: 34, Neg. LLF: 149.7364169240984
Iteration: 6, Func. Count: 40, Neg. LLF: 149.61634110983326
Iteration: 7, Func. Count: 46, Neg. LLF: 149.6928088960634
Iteration: 8, Func. Count: 53, Neg. LLF: 149.59284483254905
Iteration: 9, Func. Count: 59, Neg. LLF: 149.58708311037927
Iteration: 10, Func. Count: 65, Neg. LLF: 149.5862110233509
Iteration: 11, Func. Count: 71, Neg. LLF: 149.58608345984675
Iteration: 12, Func. Count: 77, Neg. LLF: 149.58607054261807
Iteration: 13, Func. Count: 82, Neg. LLF: 149.58607054260924
Optimization terminated successfully (Exit mode 0)
Current function value: 149.58607054261807
Iterations: 13
Function evaluations: 82
Gradient evaluations: 13
Iteration: 1, Func. Count: 8, Neg. LLF: 703.2002578047407
Iteration: 2, Func. Count: 17, Neg. LLF: 176.99809473690706
Iteration: 3, Func. Count: 25, Neg. LLF: 149.11534663033817
Iteration: 4, Func. Count: 33, Neg. LLF: 147.87688585069438
Iteration: 5, Func. Count: 40, Neg. LLF: 148.7283278725887
Iteration: 6, Func. Count: 49, Neg. LLF: 148.5798661537067
Iteration: 7, Func. Count: 57, Neg. LLF: 147.84345840374064
Iteration: 8, Func. Count: 64, Neg. LLF: 147.84085090427547
Iteration: 9, Func. Count: 71, Neg. LLF: 147.84021021940046
Iteration: 10, Func. Count: 78, Neg. LLF: 147.8401348820129
Iteration: 11, Func. Count: 85, Neg. LLF: 147.84013364737027
Iteration: 12, Func. Count: 92, Neg. LLF: 147.84013180525176
Iteration: 13, Func. Count: 99, Neg. LLF: 147.8401301291117
Iteration: 14, Func. Count: 106, Neg. LLF: 147.8401291924095
Optimization terminated successfully (Exit mode 0)
Current function value: 147.8401291924095
Iterations: 14
Function evaluations: 106
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 1140.7141328267812
Iteration: 2, Func. Count: 19, Neg. LLF: 153.2876157166755
Iteration: 3, Func. Count: 28, Neg. LLF: 149.45353937126083
Iteration: 4, Func. Count: 37, Neg. LLF: 147.53319335456786
Iteration: 5, Func. Count: 46, Neg. LLF: 146.62161095456077
Iteration: 6, Func. Count: 54, Neg. LLF: 149.87849394232225
Iteration: 7, Func. Count: 65, Neg. LLF: 463.2839414544753
Iteration: 8, Func. Count: 74, Neg. LLF: 146.03163065146381
Iteration: 9, Func. Count: 82, Neg. LLF: 146.01644996992306
Iteration: 10, Func. Count: 90, Neg. LLF: 145.99213599874503
Iteration: 11, Func. Count: 98, Neg. LLF: 145.96910165410918
Iteration: 12, Func. Count: 106, Neg. LLF: 145.95641894249832
Iteration: 13, Func. Count: 114, Neg. LLF: 145.94817888543412
Iteration: 14, Func. Count: 122, Neg. LLF: 145.94287785461952
Iteration: 15, Func. Count: 130, Neg. LLF: 145.93599206059017
Iteration: 16, Func. Count: 138, Neg. LLF: 145.90689196870767
Iteration: 17, Func. Count: 146, Neg. LLF: 145.90689191463446
Optimization terminated successfully (Exit mode 0)
Current function value: 145.90689167542178
Iterations: 17
Function evaluations: 147
Gradient evaluations: 17
Iteration: 1, Func. Count: 10, Neg. LLF: 1595.69513599945
Iteration: 2, Func. Count: 21, Neg. LLF: 148.82677702532413
Iteration: 3, Func. Count: 31, Neg. LLF: 146.3566978941265
Iteration: 4, Func. Count: 40, Neg. LLF: 146.01687661642927
Iteration: 5, Func. Count: 49, Neg. LLF: 170.27075908308794
Iteration: 6, Func. Count: 60, Neg. LLF: 146.10903815413627
Iteration: 7, Func. Count: 70, Neg. LLF: 145.8569885590724
Iteration: 8, Func. Count: 80, Neg. LLF: 145.55952351366972
Iteration: 9, Func. Count: 90, Neg. LLF: 145.10158555913708
Iteration: 10, Func. Count: 99, Neg. LLF: 145.0916091977979
Iteration: 11, Func. Count: 108, Neg. LLF: 145.0910191639382
Iteration: 12, Func. Count: 117, Neg. LLF: 145.0909844961909
Iteration: 13, Func. Count: 126, Neg. LLF: 145.0909788684911
Iteration: 14, Func. Count: 135, Neg. LLF: 145.09097588098714
Iteration: 15, Func. Count: 144, Neg. LLF: 145.38603801383266
Optimization terminated successfully (Exit mode 0)
Current function value: 145.0909758676581
Iterations: 16
Function evaluations: 148
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 626.8061328158209
Iteration: 2, Func. Count: 22, Neg. LLF: 147.12402685297815
Iteration: 3, Func. Count: 32, Neg. LLF: 153.87424260839256
Iteration: 4, Func. Count: 44, Neg. LLF: 146.18135390062616
Iteration: 5, Func. Count: 54, Neg. LLF: 146.08074224863472
Iteration: 6, Func. Count: 64, Neg. LLF: 157.20034924389557
Iteration: 7, Func. Count: 75, Neg. LLF: 145.74063743209632
Iteration: 8, Func. Count: 85, Neg. LLF: 145.3802129853007
Iteration: 9, Func. Count: 95, Neg. LLF: 145.24659024761837
Iteration: 10, Func. Count: 105, Neg. LLF: 145.2041455492952
Iteration: 11, Func. Count: 115, Neg. LLF: 145.11737769281513
Iteration: 12, Func. Count: 125, Neg. LLF: 145.0974410675998
Iteration: 13, Func. Count: 135, Neg. LLF: 145.09134319476087
Iteration: 14, Func. Count: 145, Neg. LLF: 145.09099565065947
Iteration: 15, Func. Count: 155, Neg. LLF: 145.09097576296892
Iteration: 16, Func. Count: 164, Neg. LLF: 145.09097615528083
Optimization terminated successfully (Exit mode 0)
Current function value: 145.09097576296892
Iterations: 16
Function evaluations: 164
Gradient evaluations: 16
Iteration: 1, Func. Count: 8, Neg. LLF: 160.3738966964297
Iteration: 2, Func. Count: 16, Neg. LLF: 152.87893147559896
Iteration: 3, Func. Count: 24, Neg. LLF: 150.00201870509994
Iteration: 4, Func. Count: 31, Neg. LLF: 149.9361246365215
Iteration: 5, Func. Count: 38, Neg. LLF: 149.86403764881806
Iteration: 6, Func. Count: 45, Neg. LLF: 149.8388447294208
Iteration: 7, Func. Count: 52, Neg. LLF: 149.81280198145205
Iteration: 8, Func. Count: 59, Neg. LLF: 149.78490198651124
Iteration: 9, Func. Count: 66, Neg. LLF: 149.72214840661846
Iteration: 10, Func. Count: 73, Neg. LLF: 149.64982533232802
Iteration: 11, Func. Count: 80, Neg. LLF: 149.6798419554387
Iteration: 12, Func. Count: 88, Neg. LLF: 149.59940909329325
Iteration: 13, Func. Count: 95, Neg. LLF: 149.59217134806102
Iteration: 14, Func. Count: 102, Neg. LLF: 149.58751406783378
Iteration: 15, Func. Count: 109, Neg. LLF: 149.58623823859492
Iteration: 16, Func. Count: 116, Neg. LLF: 149.58607941997278
Iteration: 17, Func. Count: 123, Neg. LLF: 149.58607133227483
Iteration: 18, Func. Count: 130, Neg. LLF: 149.58607058834534
Optimization terminated successfully (Exit mode 0)
Current function value: 149.58607058834534
Iterations: 18
Function evaluations: 130
Gradient evaluations: 18
Iteration: 1, Func. Count: 9, Neg. LLF: 612.2048687669161
Iteration: 2, Func. Count: 19, Neg. LLF: 165.40655955661995
Iteration: 3, Func. Count: 28, Neg. LLF: 152.64660663475232
Iteration: 4, Func. Count: 37, Neg. LLF: 147.86642709206504
Iteration: 5, Func. Count: 45, Neg. LLF: 147.88394559594366
Iteration: 6, Func. Count: 54, Neg. LLF: 148.11329649803574
Iteration: 7, Func. Count: 63, Neg. LLF: 147.84481893179614
Iteration: 8, Func. Count: 71, Neg. LLF: 147.8412142491304
Iteration: 9, Func. Count: 79, Neg. LLF: 147.84081911197873
Iteration: 10, Func. Count: 87, Neg. LLF: 147.8406817227993
Iteration: 11, Func. Count: 95, Neg. LLF: 147.84034611512502
Iteration: 12, Func. Count: 103, Neg. LLF: 147.84017878310996
Iteration: 13, Func. Count: 111, Neg. LLF: 147.84013195265564
Iteration: 14, Func. Count: 119, Neg. LLF: 147.84012908202172
Iteration: 15, Func. Count: 126, Neg. LLF: 147.84012908199378
Optimization terminated successfully (Exit mode 0)
Current function value: 147.84012908202172
Iterations: 15
Function evaluations: 126
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 944.0100154131825
Iteration: 2, Func. Count: 21, Neg. LLF: 153.60825098675113
Iteration: 3, Func. Count: 31, Neg. LLF: 150.03707284401918
Iteration: 4, Func. Count: 41, Neg. LLF: 148.0767240336672
Iteration: 5, Func. Count: 51, Neg. LLF: 146.2274197931775
Iteration: 6, Func. Count: 60, Neg. LLF: 157.88014236845163
Iteration: 7, Func. Count: 71, Neg. LLF: 146.0687744061957
Iteration: 8, Func. Count: 80, Neg. LLF: 145.99916943271467
Iteration: 9, Func. Count: 89, Neg. LLF: 145.97979030408683
Iteration: 10, Func. Count: 98, Neg. LLF: 145.962926562446
Iteration: 11, Func. Count: 107, Neg. LLF: 145.95218417211433
Iteration: 12, Func. Count: 116, Neg. LLF: 145.94625211956875
Iteration: 13, Func. Count: 125, Neg. LLF: 145.94065378621318
Iteration: 14, Func. Count: 134, Neg. LLF: 145.92942142795306
Iteration: 15, Func. Count: 143, Neg. LLF: 145.90697025182934
Iteration: 16, Func. Count: 152, Neg. LLF: 20789885.83059035
Iteration: 17, Func. Count: 165, Neg. LLF: 145.90718340041377
Iteration: 18, Func. Count: 175, Neg. LLF: 145.90689161065194
Iteration: 19, Func. Count: 183, Neg. LLF: 145.90689161314333
Optimization terminated successfully (Exit mode 0)
Current function value: 145.90689161065194
Iterations: 20
Function evaluations: 183
Gradient evaluations: 19
Iteration: 1, Func. Count: 11, Neg. LLF: 1275.5282921605851
Iteration: 2, Func. Count: 23, Neg. LLF: 149.404035558755
Iteration: 3, Func. Count: 34, Neg. LLF: 147.12380496541823
Iteration: 4, Func. Count: 44, Neg. LLF: 145.5422751352062
Iteration: 5, Func. Count: 54, Neg. LLF: 146.32818174722723
Iteration: 6, Func. Count: 65, Neg. LLF: 150.7602106883276
Iteration: 7, Func. Count: 76, Neg. LLF: 145.40232450754925
Iteration: 8, Func. Count: 86, Neg. LLF: 145.39701464604883
Iteration: 9, Func. Count: 96, Neg. LLF: 145.3950163077263
Iteration: 10, Func. Count: 106, Neg. LLF: 145.39439033552398
Iteration: 11, Func. Count: 116, Neg. LLF: 145.394332078707
Iteration: 12, Func. Count: 126, Neg. LLF: 145.39433496500345
Optimization terminated successfully (Exit mode 0)
Current function value: 145.39433183866782
Iterations: 12
Function evaluations: 127
Gradient evaluations: 12
Iteration: 1, Func. Count: 12, Neg. LLF: 1383.1365262133738
Iteration: 2, Func. Count: 24, Neg. LLF: 146.67797923283862
Iteration: 3, Func. Count: 35, Neg. LLF: 150.77406250180292
Iteration: 4, Func. Count: 47, Neg. LLF: 146.1922285861726
Iteration: 5, Func. Count: 58, Neg. LLF: 146.45307756920425
Iteration: 6, Func. Count: 70, Neg. LLF: 146.11798888747836
Iteration: 7, Func. Count: 82, Neg. LLF: 146.03784800115622
Iteration: 8, Func. Count: 93, Neg. LLF: 146.03270831118274
Iteration: 9, Func. Count: 104, Neg. LLF: 146.03187009088882
Iteration: 10, Func. Count: 115, Neg. LLF: 146.0318581840756
Iteration: 11, Func. Count: 126, Neg. LLF: 146.03185271018972
Iteration: 12, Func. Count: 136, Neg. LLF: 146.03185271016528
Optimization terminated successfully (Exit mode 0)
Current function value: 146.03185271018972
Iterations: 12
Function evaluations: 136
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 152.6309303267639
Iteration: 2, Func. Count: 18, Neg. LLF: 158.00560883599377
Iteration: 3, Func. Count: 27, Neg. LLF: 149.94174476418885
Iteration: 4, Func. Count: 35, Neg. LLF: 149.82921359715738
Iteration: 5, Func. Count: 43, Neg. LLF: 149.74054822726214
Iteration: 6, Func. Count: 51, Neg. LLF: 150.23029269312104
Iteration: 7, Func. Count: 60, Neg. LLF: 149.5870032808481
Iteration: 8, Func. Count: 68, Neg. LLF: 149.6211833270044
Iteration: 9, Func. Count: 77, Neg. LLF: 149.55449520942466
Iteration: 10, Func. Count: 85, Neg. LLF: 149.55259889099193
Iteration: 11, Func. Count: 93, Neg. LLF: 149.5514846702494
Iteration: 12, Func. Count: 101, Neg. LLF: 149.55142449832476
Iteration: 13, Func. Count: 108, Neg. LLF: 149.55142449830944
Optimization terminated successfully (Exit mode 0)
Current function value: 149.55142449832476
Iterations: 13
Function evaluations: 108
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 613.643646454123
Iteration: 2, Func. Count: 21, Neg. LLF: 152.68798091064377
Iteration: 3, Func. Count: 31, Neg. LLF: 148.4511125201958
Iteration: 4, Func. Count: 41, Neg. LLF: 148.34391460226044
Iteration: 5, Func. Count: 51, Neg. LLF: 147.00840598276415
Iteration: 6, Func. Count: 60, Neg. LLF: 147.02056796352412
Iteration: 7, Func. Count: 70, Neg. LLF: 146.90731107421115
Iteration: 8, Func. Count: 79, Neg. LLF: 146.88240259896605
Iteration: 9, Func. Count: 88, Neg. LLF: 146.04235376316427
Iteration: 10, Func. Count: 97, Neg. LLF: 146.21618025711817
Iteration: 11, Func. Count: 107, Neg. LLF: 145.91117054877716
Iteration: 12, Func. Count: 116, Neg. LLF: 145.9073219028507
Iteration: 13, Func. Count: 125, Neg. LLF: 145.9069128569803
Iteration: 14, Func. Count: 134, Neg. LLF: 145.90689162529307
Iteration: 15, Func. Count: 142, Neg. LLF: 145.90689162523344
Optimization terminated successfully (Exit mode 0)
Current function value: 145.90689162529307
Iterations: 15
Function evaluations: 142
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 943.4200845158714
Iteration: 2, Func. Count: 23, Neg. LLF: 147.9572108215423
Iteration: 3, Func. Count: 34, Neg. LLF: 146.42914583153245
Iteration: 4, Func. Count: 44, Neg. LLF: 280.34109098802327
Iteration: 5, Func. Count: 55, Neg. LLF: 154.4012556882292
Iteration: 6, Func. Count: 66, Neg. LLF: 153.3081630441956
Iteration: 7, Func. Count: 77, Neg. LLF: 147.16769541017888
Iteration: 8, Func. Count: 88, Neg. LLF: 145.44129576422864
Iteration: 9, Func. Count: 98, Neg. LLF: 145.39344924757287
Iteration: 10, Func. Count: 109, Neg. LLF: 146.41860168578077
Iteration: 11, Func. Count: 121, Neg. LLF: 147.3327078757645
Iteration: 12, Func. Count: 132, Neg. LLF: 145.17203695930698
Iteration: 13, Func. Count: 142, Neg. LLF: 145.16074588818057
Iteration: 14, Func. Count: 152, Neg. LLF: 145.15778424564985
Iteration: 15, Func. Count: 162, Neg. LLF: 145.15646391208827
Iteration: 16, Func. Count: 172, Neg. LLF: 145.15618888506071
Iteration: 17, Func. Count: 182, Neg. LLF: 145.15614870466163
Iteration: 18, Func. Count: 191, Neg. LLF: 145.1561486938878
Optimization terminated successfully (Exit mode 0)
Current function value: 145.15614870466163
Iterations: 18
Function evaluations: 191
Gradient evaluations: 18
Iteration: 1, Func. Count: 12, Neg. LLF: 1274.5829398371584
Iteration: 2, Func. Count: 25, Neg. LLF: 149.2939054437898
Iteration: 3, Func. Count: 37, Neg. LLF: 147.0573336814588
Iteration: 4, Func. Count: 48, Neg. LLF: 145.62239531163738
Iteration: 5, Func. Count: 59, Neg. LLF: 151.55386661685432
Iteration: 6, Func. Count: 71, Neg. LLF: 155.7770584066782
Iteration: 7, Func. Count: 84, Neg. LLF: 146.52067845303128
Iteration: 8, Func. Count: 96, Neg. LLF: 145.24599988576216
Iteration: 9, Func. Count: 107, Neg. LLF: 145.28682815991442
Iteration: 10, Func. Count: 119, Neg. LLF: 145.11097027430353
Iteration: 11, Func. Count: 130, Neg. LLF: 145.09844976278083
Iteration: 12, Func. Count: 141, Neg. LLF: 145.0944176561715
Iteration: 13, Func. Count: 152, Neg. LLF: 145.092042501858
Iteration: 14, Func. Count: 163, Neg. LLF: 145.09099286759678
Iteration: 15, Func. Count: 174, Neg. LLF: 145.09098567078348
Iteration: 16, Func. Count: 185, Neg. LLF: 145.0909788792276
Iteration: 17, Func. Count: 196, Neg. LLF: 145.09097574195687
Iteration: 18, Func. Count: 206, Neg. LLF: 145.09097574195837
Optimization terminated successfully (Exit mode 0)
Current function value: 145.09097574195687
Iterations: 18
Function evaluations: 206
Gradient evaluations: 18
Iteration: 1, Func. Count: 13, Neg. LLF: 183.3515352194022
Iteration: 2, Func. Count: 27, Neg. LLF: 159.00921784698266
Iteration: 3, Func. Count: 40, Neg. LLF: 147.77364297373438
Iteration: 4, Func. Count: 52, Neg. LLF: 148.28222915278613
Iteration: 5, Func. Count: 65, Neg. LLF: 146.81444727140646
Iteration: 6, Func. Count: 77, Neg. LLF: 149.36735421998384
Iteration: 7, Func. Count: 90, Neg. LLF: 310.9745979210595
Iteration: 8, Func. Count: 103, Neg. LLF: 146.2573291442911
Iteration: 9, Func. Count: 115, Neg. LLF: 146.15544487581764
Iteration: 10, Func. Count: 127, Neg. LLF: 146.0760268555389
Iteration: 11, Func. Count: 139, Neg. LLF: 145.9689701356862
Iteration: 12, Func. Count: 151, Neg. LLF: 145.90666887190275
Iteration: 13, Func. Count: 163, Neg. LLF: 145.84235519327143
Iteration: 14, Func. Count: 176, Neg. LLF: 145.2577483778379
Iteration: 15, Func. Count: 188, Neg. LLF: 145.69799114981606
Iteration: 16, Func. Count: 201, Neg. LLF: 145.21854552261982
Iteration: 17, Func. Count: 214, Neg. LLF: 151.60882942073994
Iteration: 18, Func. Count: 229, Neg. LLF: 1398589.7632992426
Iteration: 19, Func. Count: 244, Neg. LLF: 145.97576156569164
Iteration: 20, Func. Count: 257, Neg. LLF: 145.12345599669806
Iteration: 21, Func. Count: 270, Neg. LLF: 145.0909757813274
Iteration: 22, Func. Count: 281, Neg. LLF: 145.090976174079
Optimization terminated successfully (Exit mode 0)
Current function value: 145.0909757813274
Iterations: 23
Function evaluations: 281
Gradient evaluations: 22
Iteration: 1, Func. Count: 10, Neg. LLF: 154.16531118024182
Iteration: 2, Func. Count: 20, Neg. LLF: 152.84876159644622
Iteration: 3, Func. Count: 30, Neg. LLF: 149.64554564504485
Iteration: 4, Func. Count: 39, Neg. LLF: 151.93027638517762
Iteration: 5, Func. Count: 49, Neg. LLF: 159.7230849411887
Iteration: 6, Func. Count: 59, Neg. LLF: 149.42669957862606
Iteration: 7, Func. Count: 68, Neg. LLF: 149.41602562013847
Iteration: 8, Func. Count: 77, Neg. LLF: 149.41496993201707
Iteration: 9, Func. Count: 86, Neg. LLF: 149.41469984527498
Iteration: 10, Func. Count: 95, Neg. LLF: 149.41465307770568
Iteration: 11, Func. Count: 104, Neg. LLF: 149.41465139918742
Iteration: 12, Func. Count: 112, Neg. LLF: 149.41465139917761
Optimization terminated successfully (Exit mode 0)
Current function value: 149.41465139918742
Iterations: 12
Function evaluations: 112
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 343.41037328753913
Iteration: 2, Func. Count: 22, Neg. LLF: 149.1588082410933
Iteration: 3, Func. Count: 33, Neg. LLF: 197.96520741058717
Iteration: 4, Func. Count: 44, Neg. LLF: 149.43155671643308
Iteration: 5, Func. Count: 55, Neg. LLF: 145.69879486399677
Iteration: 6, Func. Count: 65, Neg. LLF: 146.9923940811847
Iteration: 7, Func. Count: 77, Neg. LLF: 146.10241457085073
Iteration: 8, Func. Count: 88, Neg. LLF: 145.6706495235736
Iteration: 9, Func. Count: 98, Neg. LLF: 145.66726334382406
Iteration: 10, Func. Count: 108, Neg. LLF: 145.66587925066096
Iteration: 11, Func. Count: 118, Neg. LLF: 145.6657277937338
Iteration: 12, Func. Count: 128, Neg. LLF: 145.6657254269131
Iteration: 13, Func. Count: 137, Neg. LLF: 145.6657254268741
Optimization terminated successfully (Exit mode 0)
Current function value: 145.6657254269131
Iterations: 13
Function evaluations: 137
Gradient evaluations: 13
Iteration: 1, Func. Count: 12, Neg. LLF: 951.0016333717288
Iteration: 2, Func. Count: 25, Neg. LLF: 151.8093418003944
Iteration: 3, Func. Count: 37, Neg. LLF: 149.772169269675
Iteration: 4, Func. Count: 49, Neg. LLF: 147.69101542944458
Iteration: 5, Func. Count: 61, Neg. LLF: 147.03268604990117
Iteration: 6, Func. Count: 72, Neg. LLF: 146.96421118119565
Iteration: 7, Func. Count: 84, Neg. LLF: 147.84714908261532
Iteration: 8, Func. Count: 96, Neg. LLF: 146.36915942635983
Iteration: 9, Func. Count: 107, Neg. LLF: 146.17489960290285
Iteration: 10, Func. Count: 118, Neg. LLF: 145.85334782118025
Iteration: 11, Func. Count: 129, Neg. LLF: 146.04754430870457
Iteration: 12, Func. Count: 141, Neg. LLF: 145.73622323209318
Iteration: 13, Func. Count: 152, Neg. LLF: 145.68574633607787
Iteration: 14, Func. Count: 163, Neg. LLF: 145.67581235902648
Iteration: 15, Func. Count: 174, Neg. LLF: 145.66742238067343
Iteration: 16, Func. Count: 185, Neg. LLF: 145.66611535733392
Iteration: 17, Func. Count: 196, Neg. LLF: 145.66573418971052
Iteration: 18, Func. Count: 207, Neg. LLF: 145.6657256059831
Iteration: 19, Func. Count: 217, Neg. LLF: 145.66572565097718
Optimization terminated successfully (Exit mode 0)
Current function value: 145.6657256059831
Iterations: 19
Function evaluations: 217
Gradient evaluations: 19
Iteration: 1, Func. Count: 13, Neg. LLF: 1292.4016418152235
Iteration: 2, Func. Count: 27, Neg. LLF: 148.31645122398044
Iteration: 3, Func. Count: 40, Neg. LLF: 145.57255203496803
Iteration: 4, Func. Count: 52, Neg. LLF: 205.54690396923826
Iteration: 5, Func. Count: 66, Neg. LLF: 151.69515219590372
Iteration: 6, Func. Count: 80, Neg. LLF: 148.8919684598828
Iteration: 7, Func. Count: 93, Neg. LLF: 145.7032369958591
Iteration: 8, Func. Count: 106, Neg. LLF: 144.67344125033284
Iteration: 9, Func. Count: 118, Neg. LLF: 144.6632600933245
Iteration: 10, Func. Count: 130, Neg. LLF: 144.65577126033944
Iteration: 11, Func. Count: 142, Neg. LLF: 144.65332585715268
Iteration: 12, Func. Count: 154, Neg. LLF: 144.6531182356428
Iteration: 13, Func. Count: 166, Neg. LLF: 144.65311441131672
Iteration: 14, Func. Count: 177, Neg. LLF: 144.653114409353
Optimization terminated successfully (Exit mode 0)
Current function value: 144.65311441131672
Iterations: 14
Function evaluations: 177
Gradient evaluations: 14
Iteration: 1, Func. Count: 14, Neg. LLF: 183.39529994294998
Iteration: 2, Func. Count: 29, Neg. LLF: 180.30558464295854
Iteration: 3, Func. Count: 44, Neg. LLF: 148.135560439612
Iteration: 4, Func. Count: 57, Neg. LLF: 146.87309740856665
Iteration: 5, Func. Count: 70, Neg. LLF: 146.92731066196984
Iteration: 6, Func. Count: 84, Neg. LLF: 146.09232101579386
Iteration: 7, Func. Count: 98, Neg. LLF: 156.1067921755294
Iteration: 8, Func. Count: 113, Neg. LLF: 145.00131924165848
Iteration: 9, Func. Count: 126, Neg. LLF: 145.76103480634265
Iteration: 10, Func. Count: 140, Neg. LLF: 144.8619057223107
Iteration: 11, Func. Count: 153, Neg. LLF: 144.75669125053187
Iteration: 12, Func. Count: 166, Neg. LLF: 144.6781579602686
Iteration: 13, Func. Count: 179, Neg. LLF: 144.67379434194092
Iteration: 14, Func. Count: 192, Neg. LLF: 144.67331300508746
Iteration: 15, Func. Count: 205, Neg. LLF: 144.66473206020413
Iteration: 16, Func. Count: 218, Neg. LLF: 144.65743079598602
Iteration: 17, Func. Count: 231, Neg. LLF: 156.9942065011496
Iteration: 18, Func. Count: 247, Neg. LLF: 144.70184676573896
Iteration: 19, Func. Count: 261, Neg. LLF: 144.89096780956277
Iteration: 20, Func. Count: 276, Neg. LLF: 144.65389898248787
Iteration: 21, Func. Count: 289, Neg. LLF: 144.6539206374564
Iteration: 22, Func. Count: 303, Neg. LLF: 144.66913114808952
Iteration: 23, Func. Count: 317, Neg. LLF: 144.65311423739954
Optimization terminated successfully (Exit mode 0)
Current function value: 144.65311423739954
Iterations: 24
Function evaluations: 317
Gradient evaluations: 23
Iteration: 1, Func. Count: 11, Neg. LLF: 154.32873408988843
Iteration: 2, Func. Count: 22, Neg. LLF: 153.54564102178608
Iteration: 3, Func. Count: 33, Neg. LLF: 149.64830216215913
Iteration: 4, Func. Count: 43, Neg. LLF: 151.16538662258554
Iteration: 5, Func. Count: 54, Neg. LLF: 149.4198914458159
Iteration: 6, Func. Count: 64, Neg. LLF: 149.4162126728388
Iteration: 7, Func. Count: 74, Neg. LLF: 149.4155732049172
Iteration: 8, Func. Count: 84, Neg. LLF: 149.4150119139663
Iteration: 9, Func. Count: 94, Neg. LLF: 149.4148568945721
Iteration: 10, Func. Count: 104, Neg. LLF: 149.4147698268031
Iteration: 11, Func. Count: 114, Neg. LLF: 149.41466642209545
Iteration: 12, Func. Count: 124, Neg. LLF: 149.41465902841307
Iteration: 13, Func. Count: 134, Neg. LLF: 149.41469301446097
Iteration: 14, Func. Count: 145, Neg. LLF: 149.41464948466353
Iteration: 15, Func. Count: 154, Neg. LLF: 149.4146496373076
Optimization terminated successfully (Exit mode 0)
Current function value: 149.41464948466353
Iterations: 15
Function evaluations: 154
Gradient evaluations: 15
Iteration: 1, Func. Count: 12, Neg. LLF: 344.22342064226484
Iteration: 2, Func. Count: 24, Neg. LLF: 149.32453010170659
Iteration: 3, Func. Count: 36, Neg. LLF: 193.36523670972136
Iteration: 4, Func. Count: 48, Neg. LLF: 149.61153670049615
Iteration: 5, Func. Count: 60, Neg. LLF: 145.69814877109084
Iteration: 6, Func. Count: 71, Neg. LLF: 146.92515536419216
Iteration: 7, Func. Count: 84, Neg. LLF: 145.73448180993176
Iteration: 8, Func. Count: 96, Neg. LLF: 145.9213403654298
Iteration: 9, Func. Count: 108, Neg. LLF: 145.6669871505249
Iteration: 10, Func. Count: 119, Neg. LLF: 145.66574824562383
Iteration: 11, Func. Count: 130, Neg. LLF: 145.66572599394866
Iteration: 12, Func. Count: 141, Neg. LLF: 145.66572540062032
Optimization terminated successfully (Exit mode 0)
Current function value: 145.66572540062032
Iterations: 12
Function evaluations: 141
Gradient evaluations: 12
Iteration: 1, Func. Count: 13, Neg. LLF: 952.8409020848922
Iteration: 2, Func. Count: 27, Neg. LLF: 151.77822777875468
Iteration: 3, Func. Count: 40, Neg. LLF: 149.7696840856833
Iteration: 4, Func. Count: 53, Neg. LLF: 147.70138617061988
Iteration: 5, Func. Count: 66, Neg. LLF: 147.0240336234521
Iteration: 6, Func. Count: 78, Neg. LLF: 146.8773914675761
Iteration: 7, Func. Count: 90, Neg. LLF: 153.0718457289127
Iteration: 8, Func. Count: 103, Neg. LLF: 146.22668467257182
Iteration: 9, Func. Count: 115, Neg. LLF: 159.83033996278795
Iteration: 10, Func. Count: 129, Neg. LLF: 146.07153973042043
Iteration: 11, Func. Count: 141, Neg. LLF: 145.91385734290947
Iteration: 12, Func. Count: 153, Neg. LLF: 151.811271262821
Iteration: 13, Func. Count: 166, Neg. LLF: 145.85940364938747
Iteration: 14, Func. Count: 179, Neg. LLF: 145.726701831991
Iteration: 15, Func. Count: 191, Neg. LLF: 145.71479920843947
Iteration: 16, Func. Count: 203, Neg. LLF: 145.70489621797282
Iteration: 17, Func. Count: 215, Neg. LLF: 145.67503046230502
Iteration: 18, Func. Count: 227, Neg. LLF: 145.66799904351578
Iteration: 19, Func. Count: 239, Neg. LLF: 145.66684185740402
Iteration: 20, Func. Count: 251, Neg. LLF: 145.66624953321258
Iteration: 21, Func. Count: 263, Neg. LLF: 145.6658583955527
Iteration: 22, Func. Count: 275, Neg. LLF: 145.66574142625063
Iteration: 23, Func. Count: 287, Neg. LLF: 145.6657260422688
Iteration: 24, Func. Count: 299, Neg. LLF: 145.66572540309164
Optimization terminated successfully (Exit mode 0)
Current function value: 145.66572540309164
Iterations: 24
Function evaluations: 299
Gradient evaluations: 24
Iteration: 1, Func. Count: 14, Neg. LLF: 1289.0169904172046
Iteration: 2, Func. Count: 29, Neg. LLF: 148.3630892414443
Iteration: 3, Func. Count: 43, Neg. LLF: 145.6286389478931
Iteration: 4, Func. Count: 56, Neg. LLF: 205.24805147488237
Iteration: 5, Func. Count: 71, Neg. LLF: 152.66675784649036
Iteration: 6, Func. Count: 86, Neg. LLF: 148.93893396051064
Iteration: 7, Func. Count: 100, Neg. LLF: 146.14662760104113
Iteration: 8, Func. Count: 114, Neg. LLF: 144.67545217168487
Iteration: 9, Func. Count: 127, Neg. LLF: 144.66339791650216
Iteration: 10, Func. Count: 140, Neg. LLF: 144.65648331565146
Iteration: 11, Func. Count: 153, Neg. LLF: 144.6535609285601
Iteration: 12, Func. Count: 166, Neg. LLF: 144.6531235603283
Iteration: 13, Func. Count: 179, Neg. LLF: 144.65311458783265
Iteration: 14, Func. Count: 191, Neg. LLF: 144.65311458578157
Optimization terminated successfully (Exit mode 0)
Current function value: 144.65311458783265
Iterations: 14
Function evaluations: 191
Gradient evaluations: 14
Iteration: 1, Func. Count: 15, Neg. LLF: 183.355064839748
Iteration: 2, Func. Count: 31, Neg. LLF: 180.1721188222656
Iteration: 3, Func. Count: 47, Neg. LLF: 148.0882161331184
Iteration: 4, Func. Count: 61, Neg. LLF: 146.97553733680175
Iteration: 5, Func. Count: 75, Neg. LLF: 146.54832589373726
Iteration: 6, Func. Count: 89, Neg. LLF: 145.81147889925984
Iteration: 7, Func. Count: 103, Neg. LLF: 146.17360115522206
Iteration: 8, Func. Count: 118, Neg. LLF: 145.2753616671512
Iteration: 9, Func. Count: 132, Neg. LLF: 147.87508013179198
Iteration: 10, Func. Count: 148, Neg. LLF: 146.54470067003638
Iteration: 11, Func. Count: 163, Neg. LLF: 144.93004458486743
Iteration: 12, Func. Count: 177, Neg. LLF: 144.72917569952114
Iteration: 13, Func. Count: 191, Neg. LLF: 144.70090835171158
Iteration: 14, Func. Count: 205, Neg. LLF: 144.66000301181583
Iteration: 15, Func. Count: 219, Neg. LLF: 144.6554913544586
Iteration: 16, Func. Count: 233, Neg. LLF: 144.6544436433667
Iteration: 17, Func. Count: 247, Neg. LLF: 144.65385922679198
Iteration: 18, Func. Count: 261, Neg. LLF: 144.65334570768957
Iteration: 19, Func. Count: 275, Neg. LLF: 144.7345081100347
Iteration: 20, Func. Count: 292, Neg. LLF: 144.6533517431023
Iteration: 21, Func. Count: 307, Neg. LLF: 144.65312087429885
Iteration: 22, Func. Count: 321, Neg. LLF: 144.65504135909342
Iteration: 23, Func. Count: 337, Neg. LLF: 144.65312593710902
Optimization terminated successfully (Exit mode 0)
Current function value: 144.6531146923788
Iterations: 24
Function evaluations: 338
Gradient evaluations: 23
Iteration: 1, Func. Count: 8, Neg. LLF: 147.14412281515044
Iteration: 2, Func. Count: 15, Neg. LLF: 148.61053610568527
Iteration: 3, Func. Count: 23, Neg. LLF: 148.11734869307148
Iteration: 4, Func. Count: 31, Neg. LLF: 148.330884264324
Iteration: 5, Func. Count: 39, Neg. LLF: 163.3476430902608
Iteration: 6, Func. Count: 47, Neg. LLF: 146.1050732742143
Iteration: 7, Func. Count: 54, Neg. LLF: 146.98732148654253
Iteration: 8, Func. Count: 63, Neg. LLF: 148.6824546771674
Iteration: 9, Func. Count: 73, Neg. LLF: 145.69501016886605
Iteration: 10, Func. Count: 81, Neg. LLF: 145.58183871268506
Iteration: 11, Func. Count: 88, Neg. LLF: 145.5425828615166
Iteration: 12, Func. Count: 95, Neg. LLF: 145.53049880151084
Iteration: 13, Func. Count: 102, Neg. LLF: 145.52061158651608
Iteration: 14, Func. Count: 109, Neg. LLF: 145.52038076189655
Iteration: 15, Func. Count: 116, Neg. LLF: 145.5203505229877
Iteration: 16, Func. Count: 123, Neg. LLF: 145.5203465044654
Iteration: 17, Func. Count: 130, Neg. LLF: 145.52034451644082
Iteration: 18, Func. Count: 136, Neg. LLF: 145.52034451643516
Optimization terminated successfully (Exit mode 0)
Current function value: 145.52034451644082
Iterations: 18
Function evaluations: 136
Gradient evaluations: 18
Iteration: 1, Func. Count: 9, Neg. LLF: 428.82917740383664
Iteration: 2, Func. Count: 19, Neg. LLF: 162.66252314362575
Iteration: 3, Func. Count: 28, Neg. LLF: 160.0598967617898
Iteration: 4, Func. Count: 37, Neg. LLF: 146.006074245126
Iteration: 5, Func. Count: 46, Neg. LLF: 153.29386755106626
Iteration: 6, Func. Count: 56, Neg. LLF: 150.0511417658103
Iteration: 7, Func. Count: 65, Neg. LLF: 145.36643067338707
Iteration: 8, Func. Count: 73, Neg. LLF: 148.7907967033912
Iteration: 9, Func. Count: 82, Neg. LLF: 145.274853030862
Iteration: 10, Func. Count: 90, Neg. LLF: 145.37870766101582
Iteration: 11, Func. Count: 99, Neg. LLF: 145.2679759646114
Iteration: 12, Func. Count: 107, Neg. LLF: 145.26782025372162
Iteration: 13, Func. Count: 115, Neg. LLF: 145.26768279124315
Iteration: 14, Func. Count: 123, Neg. LLF: 145.26734237687936
Iteration: 15, Func. Count: 131, Neg. LLF: 145.2670885593545
Iteration: 16, Func. Count: 139, Neg. LLF: 145.26698405089513
Iteration: 17, Func. Count: 147, Neg. LLF: 145.2669718983195
Iteration: 18, Func. Count: 155, Neg. LLF: 145.26697135703216
Optimization terminated successfully (Exit mode 0)
Current function value: 145.26697135703216
Iterations: 18
Function evaluations: 155
Gradient evaluations: 18
Iteration: 1, Func. Count: 10, Neg. LLF: 526.7748976679219
Iteration: 2, Func. Count: 21, Neg. LLF: 180.80028384750037
Iteration: 3, Func. Count: 31, Neg. LLF: 503.22114771883344
Iteration: 4, Func. Count: 41, Neg. LLF: 177.33643918433742
Iteration: 5, Func. Count: 51, Neg. LLF: 158.8515301745144
Iteration: 6, Func. Count: 61, Neg. LLF: 145.95820788142586
Iteration: 7, Func. Count: 71, Neg. LLF: 150.11421807495682
Iteration: 8, Func. Count: 81, Neg. LLF: 145.04178169393776
Iteration: 9, Func. Count: 90, Neg. LLF: 145.162711005555
Iteration: 10, Func. Count: 100, Neg. LLF: 146.77768217234959
Iteration: 11, Func. Count: 111, Neg. LLF: 144.86733612841647
Iteration: 12, Func. Count: 120, Neg. LLF: 144.85824555042763
Iteration: 13, Func. Count: 129, Neg. LLF: 144.85219138593462
Iteration: 14, Func. Count: 138, Neg. LLF: 144.84413871845
Iteration: 15, Func. Count: 147, Neg. LLF: 144.83071131222144
Iteration: 16, Func. Count: 156, Neg. LLF: 144.80138716485047
Iteration: 17, Func. Count: 165, Neg. LLF: 144.76338708418254
Iteration: 18, Func. Count: 174, Neg. LLF: 144.7461038918135
Iteration: 19, Func. Count: 183, Neg. LLF: 144.74086217132165
Iteration: 20, Func. Count: 192, Neg. LLF: 144.74023631751155
Iteration: 21, Func. Count: 201, Neg. LLF: 144.74022687008608
Iteration: 22, Func. Count: 209, Neg. LLF: 144.7402268700672
Optimization terminated successfully (Exit mode 0)
Current function value: 144.74022687008608
Iterations: 22
Function evaluations: 209
Gradient evaluations: 22
Iteration: 1, Func. Count: 11, Neg. LLF: 615.8147778221053
Iteration: 2, Func. Count: 23, Neg. LLF: 160.8968750504099
Iteration: 3, Func. Count: 34, Neg. LLF: 164.98658955309904
Iteration: 4, Func. Count: 45, Neg. LLF: 153.91152800256927
Iteration: 5, Func. Count: 56, Neg. LLF: 147.78561213352012
Iteration: 6, Func. Count: 67, Neg. LLF: 148.40766157418142
Iteration: 7, Func. Count: 78, Neg. LLF: 146.75968950298298
Iteration: 8, Func. Count: 89, Neg. LLF: 146.68241950069225
Iteration: 9, Func. Count: 100, Neg. LLF: 145.01055143784953
Iteration: 10, Func. Count: 110, Neg. LLF: 144.76025691357717
Iteration: 11, Func. Count: 120, Neg. LLF: 144.72779812678613
Iteration: 12, Func. Count: 130, Neg. LLF: 144.7182644386943
Iteration: 13, Func. Count: 140, Neg. LLF: 144.7163893054676
Iteration: 14, Func. Count: 150, Neg. LLF: 144.71572820444993
Iteration: 15, Func. Count: 160, Neg. LLF: 144.71325159483337
Iteration: 16, Func. Count: 170, Neg. LLF: 144.71239627261988
Iteration: 17, Func. Count: 180, Neg. LLF: 144.71213213660465
Iteration: 18, Func. Count: 190, Neg. LLF: 144.71206234666207
Iteration: 19, Func. Count: 200, Neg. LLF: 144.7120589107318
Iteration: 20, Func. Count: 209, Neg. LLF: 144.71205891072051
Optimization terminated successfully (Exit mode 0)
Current function value: 144.7120589107318
Iterations: 20
Function evaluations: 209
Gradient evaluations: 20
Iteration: 1, Func. Count: 12, Neg. LLF: 669.3447778189586
Iteration: 2, Func. Count: 24, Neg. LLF: 1449.6138617744132
Iteration: 3, Func. Count: 36, Neg. LLF: 168.95102658787258
Iteration: 4, Func. Count: 48, Neg. LLF: 149.54374391325743
Iteration: 5, Func. Count: 60, Neg. LLF: 148.0132754881888
Iteration: 6, Func. Count: 72, Neg. LLF: 155.57241923542122
Iteration: 7, Func. Count: 85, Neg. LLF: 145.0929083336169
Iteration: 8, Func. Count: 96, Neg. LLF: 145.34277740312297
Iteration: 9, Func. Count: 108, Neg. LLF: 154.7329961672385
Iteration: 10, Func. Count: 121, Neg. LLF: 144.7897338480935
Iteration: 11, Func. Count: 133, Neg. LLF: 144.73012632555574
Iteration: 12, Func. Count: 144, Neg. LLF: 144.72620067705472
Iteration: 13, Func. Count: 155, Neg. LLF: 144.72544635017664
Iteration: 14, Func. Count: 166, Neg. LLF: 144.72480626280785
Iteration: 15, Func. Count: 177, Neg. LLF: 144.72334337535503
Iteration: 16, Func. Count: 188, Neg. LLF: 144.7206156235641
Iteration: 17, Func. Count: 199, Neg. LLF: 144.71662361773411
Iteration: 18, Func. Count: 210, Neg. LLF: 144.71337923115317
Iteration: 19, Func. Count: 221, Neg. LLF: 144.71219274960666
Iteration: 20, Func. Count: 232, Neg. LLF: 144.7120653198966
Iteration: 21, Func. Count: 243, Neg. LLF: 144.71205937406648
Iteration: 22, Func. Count: 253, Neg. LLF: 144.71205947063444
Optimization terminated successfully (Exit mode 0)
Current function value: 144.71205937406648
Iterations: 22
Function evaluations: 253
Gradient evaluations: 22
Iteration: 1, Func. Count: 9, Neg. LLF: 149.77538338491993
Iteration: 2, Func. Count: 18, Neg. LLF: 155.12512841789913
Iteration: 3, Func. Count: 27, Neg. LLF: 145.9075711088133
Iteration: 4, Func. Count: 35, Neg. LLF: 146.27421306922977
Iteration: 5, Func. Count: 44, Neg. LLF: 461.548082369887
Iteration: 6, Func. Count: 54, Neg. LLF: 146.4166181031449
Iteration: 7, Func. Count: 63, Neg. LLF: 145.58056944600486
Iteration: 8, Func. Count: 71, Neg. LLF: 145.56441562427693
Iteration: 9, Func. Count: 79, Neg. LLF: 145.52534259439335
Iteration: 10, Func. Count: 87, Neg. LLF: 145.5214624928111
Iteration: 11, Func. Count: 95, Neg. LLF: 145.52042397941653
Iteration: 12, Func. Count: 103, Neg. LLF: 145.5203508559912
Iteration: 13, Func. Count: 111, Neg. LLF: 145.52034462402602
Iteration: 14, Func. Count: 118, Neg. LLF: 145.5203446911173
Optimization terminated successfully (Exit mode 0)
Current function value: 145.52034462402602
Iterations: 14
Function evaluations: 118
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 405.0073206211729
Iteration: 2, Func. Count: 21, Neg. LLF: 159.45896393024472
Iteration: 3, Func. Count: 31, Neg. LLF: 159.39263071888746
Iteration: 4, Func. Count: 41, Neg. LLF: 145.7545279290825
Iteration: 5, Func. Count: 50, Neg. LLF: 147.86290558840338
Iteration: 6, Func. Count: 61, Neg. LLF: 150.27914168120247
Iteration: 7, Func. Count: 72, Neg. LLF: 145.65968636208126
Iteration: 8, Func. Count: 82, Neg. LLF: 152.1965876508191
Iteration: 9, Func. Count: 93, Neg. LLF: 145.30307074795903
Iteration: 10, Func. Count: 102, Neg. LLF: 145.28010581381278
Iteration: 11, Func. Count: 111, Neg. LLF: 145.27428907472338
Iteration: 12, Func. Count: 120, Neg. LLF: 145.27086023786688
Iteration: 13, Func. Count: 129, Neg. LLF: 145.2696062317683
Iteration: 14, Func. Count: 138, Neg. LLF: 145.26875993594868
Iteration: 15, Func. Count: 147, Neg. LLF: 145.26800300741928
Iteration: 16, Func. Count: 156, Neg. LLF: 145.26726960520554
Iteration: 17, Func. Count: 165, Neg. LLF: 145.26701320873983
Iteration: 18, Func. Count: 174, Neg. LLF: 145.2669736697177
Iteration: 19, Func. Count: 183, Neg. LLF: 145.26697140111116
Iteration: 20, Func. Count: 191, Neg. LLF: 145.2669714011459
Optimization terminated successfully (Exit mode 0)
Current function value: 145.26697140111116
Iterations: 20
Function evaluations: 191
Gradient evaluations: 20
Iteration: 1, Func. Count: 11, Neg. LLF: 494.4030504816739
Iteration: 2, Func. Count: 23, Neg. LLF: 176.1179736178892
Iteration: 3, Func. Count: 34, Neg. LLF: 214.91568948034254
Iteration: 4, Func. Count: 45, Neg. LLF: 178.10748525710193
Iteration: 5, Func. Count: 56, Neg. LLF: 158.9888116693978
Iteration: 6, Func. Count: 67, Neg. LLF: 145.76450313629977
Iteration: 7, Func. Count: 78, Neg. LLF: 146.71948969037615
Iteration: 8, Func. Count: 89, Neg. LLF: 145.6447360415392
Iteration: 9, Func. Count: 100, Neg. LLF: 145.21486046618548
Iteration: 10, Func. Count: 111, Neg. LLF: 144.91905554183077
Iteration: 11, Func. Count: 121, Neg. LLF: 144.90591736194605
Iteration: 12, Func. Count: 131, Neg. LLF: 144.90760925067212
Iteration: 13, Func. Count: 142, Neg. LLF: 144.88859795638982
Iteration: 14, Func. Count: 152, Neg. LLF: 144.88614323455033
Iteration: 15, Func. Count: 162, Neg. LLF: 144.87445492822346
Iteration: 16, Func. Count: 172, Neg. LLF: 144.8519153358141
Iteration: 17, Func. Count: 182, Neg. LLF: 144.82476136319264
Iteration: 18, Func. Count: 192, Neg. LLF: 144.77243528368587
Iteration: 19, Func. Count: 202, Neg. LLF: 144.75045420938415
Iteration: 20, Func. Count: 212, Neg. LLF: 144.74173468727477
Iteration: 21, Func. Count: 222, Neg. LLF: 144.7402446469134
Iteration: 22, Func. Count: 232, Neg. LLF: 144.74022696290976
Iteration: 23, Func. Count: 241, Neg. LLF: 144.740226962815
Optimization terminated successfully (Exit mode 0)
Current function value: 144.74022696290976
Iterations: 23
Function evaluations: 241
Gradient evaluations: 23
Iteration: 1, Func. Count: 12, Neg. LLF: 576.3385326792989
Iteration: 2, Func. Count: 25, Neg. LLF: 160.209796774414
Iteration: 3, Func. Count: 37, Neg. LLF: 162.70477222381737
Iteration: 4, Func. Count: 49, Neg. LLF: 154.76168725397642
Iteration: 5, Func. Count: 61, Neg. LLF: 148.80996101748033
Iteration: 6, Func. Count: 73, Neg. LLF: 148.09342258197356
Iteration: 7, Func. Count: 85, Neg. LLF: 145.98485042479237
Iteration: 8, Func. Count: 97, Neg. LLF: 145.5030580754324
Iteration: 9, Func. Count: 109, Neg. LLF: 145.182775838942
Iteration: 10, Func. Count: 121, Neg. LLF: 144.73672224050384
Iteration: 11, Func. Count: 132, Neg. LLF: 144.72427688976597
Iteration: 12, Func. Count: 143, Neg. LLF: 144.72215653749535
Iteration: 13, Func. Count: 154, Neg. LLF: 144.71999357210532
Iteration: 14, Func. Count: 165, Neg. LLF: 144.71558290234142
Iteration: 15, Func. Count: 176, Neg. LLF: 144.71316965868542
Iteration: 16, Func. Count: 187, Neg. LLF: 144.71226921587842
Iteration: 17, Func. Count: 198, Neg. LLF: 144.71208220451297
Iteration: 18, Func. Count: 209, Neg. LLF: 144.71206091675077
Iteration: 19, Func. Count: 220, Neg. LLF: 144.71205896041164
Iteration: 20, Func. Count: 230, Neg. LLF: 144.71205896040925
Optimization terminated successfully (Exit mode 0)
Current function value: 144.71205896041164
Iterations: 20
Function evaluations: 230
Gradient evaluations: 20
Iteration: 1, Func. Count: 13, Neg. LLF: 147.30611899405517
Iteration: 2, Func. Count: 25, Neg. LLF: 147.3051524576036
Iteration: 3, Func. Count: 38, Neg. LLF: 170.98950217533462
Iteration: 4, Func. Count: 51, Neg. LLF: 170.69787413998404
Iteration: 5, Func. Count: 64, Neg. LLF: 167.44204422857828
Iteration: 6, Func. Count: 77, Neg. LLF: 145.14407915298702
Iteration: 7, Func. Count: 89, Neg. LLF: 145.94500979762293
Iteration: 8, Func. Count: 103, Neg. LLF: 148.1746506247374
Iteration: 9, Func. Count: 117, Neg. LLF: 146.41816795148029
Iteration: 10, Func. Count: 130, Neg. LLF: 144.81047484190643
Iteration: 11, Func. Count: 143, Neg. LLF: 144.7965898671899
Iteration: 12, Func. Count: 156, Neg. LLF: 144.74347857523802
Iteration: 13, Func. Count: 168, Neg. LLF: 144.73767568559418
Iteration: 14, Func. Count: 180, Neg. LLF: 144.73492431137188
Iteration: 15, Func. Count: 192, Neg. LLF: 144.72181526496286
Iteration: 16, Func. Count: 204, Neg. LLF: 144.71231854966786
Iteration: 17, Func. Count: 216, Neg. LLF: 144.71210359970766
Iteration: 18, Func. Count: 228, Neg. LLF: 144.7120714314256
Iteration: 19, Func. Count: 240, Neg. LLF: 144.7120597164504
Iteration: 20, Func. Count: 252, Neg. LLF: 144.71205899593127
Optimization terminated successfully (Exit mode 0)
Current function value: 144.71205899593127
Iterations: 20
Function evaluations: 252
Gradient evaluations: 20
Iteration: 1, Func. Count: 10, Neg. LLF: 147.19214220107926
Iteration: 2, Func. Count: 19, Neg. LLF: 147.84492666582565
Iteration: 3, Func. Count: 30, Neg. LLF: 152.99815927224103
Iteration: 4, Func. Count: 42, Neg. LLF: 176.4622497593014
Iteration: 5, Func. Count: 52, Neg. LLF: 146.4912077614489
Iteration: 6, Func. Count: 62, Neg. LLF: 145.62963528718393
Iteration: 7, Func. Count: 71, Neg. LLF: 145.71400422736173
Iteration: 8, Func. Count: 81, Neg. LLF: 145.50144605391895
Iteration: 9, Func. Count: 90, Neg. LLF: 145.4319977635766
Iteration: 10, Func. Count: 99, Neg. LLF: 145.3801926709233
Iteration: 11, Func. Count: 108, Neg. LLF: 145.3793439143438
Iteration: 12, Func. Count: 117, Neg. LLF: 145.3792681381048
Iteration: 13, Func. Count: 126, Neg. LLF: 145.3792645095582
Iteration: 14, Func. Count: 134, Neg. LLF: 145.37926450954615
Optimization terminated successfully (Exit mode 0)
Current function value: 145.3792645095582
Iterations: 14
Function evaluations: 134
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 219.76577831343852
Iteration: 2, Func. Count: 22, Neg. LLF: 153.55077283621318
Iteration: 3, Func. Count: 33, Neg. LLF: 146.26308887881171
Iteration: 4, Func. Count: 43, Neg. LLF: 153.5910563463491
Iteration: 5, Func. Count: 55, Neg. LLF: 147.57315653912707
Iteration: 6, Func. Count: 66, Neg. LLF: 147.7676033219699
Iteration: 7, Func. Count: 77, Neg. LLF: 148.90648602338496
Iteration: 8, Func. Count: 88, Neg. LLF: 145.21945192636804
Iteration: 9, Func. Count: 98, Neg. LLF: 145.17585200120803
Iteration: 10, Func. Count: 108, Neg. LLF: 145.13081535359834
Iteration: 11, Func. Count: 118, Neg. LLF: 145.1162957354603
Iteration: 12, Func. Count: 128, Neg. LLF: 145.10594615762255
Iteration: 13, Func. Count: 138, Neg. LLF: 145.1027132673422
Iteration: 14, Func. Count: 148, Neg. LLF: 145.10242384757257
Iteration: 15, Func. Count: 158, Neg. LLF: 145.10218926417832
Iteration: 16, Func. Count: 168, Neg. LLF: 145.10203156239416
Iteration: 17, Func. Count: 178, Neg. LLF: 145.10197669043652
Iteration: 18, Func. Count: 188, Neg. LLF: 145.10195706712437
Iteration: 19, Func. Count: 198, Neg. LLF: 145.10194451347868
Iteration: 20, Func. Count: 208, Neg. LLF: 145.10193670565346
Iteration: 21, Func. Count: 218, Neg. LLF: 145.1019349752715
Iteration: 22, Func. Count: 227, Neg. LLF: 145.10193497524557
Optimization terminated successfully (Exit mode 0)
Current function value: 145.1019349752715
Iterations: 22
Function evaluations: 227
Gradient evaluations: 22
Iteration: 1, Func. Count: 12, Neg. LLF: 494.16783676964167
Iteration: 2, Func. Count: 25, Neg. LLF: 155.75206860321342
Iteration: 3, Func. Count: 37, Neg. LLF: 149.09196577476266
Iteration: 4, Func. Count: 49, Neg. LLF: 147.63572453867152
Iteration: 5, Func. Count: 61, Neg. LLF: 151.81232360641073
Iteration: 6, Func. Count: 73, Neg. LLF: 145.4613159161247
Iteration: 7, Func. Count: 84, Neg. LLF: 147.1432227107323
Iteration: 8, Func. Count: 96, Neg. LLF: 145.0519388082218
Iteration: 9, Func. Count: 107, Neg. LLF: 147.10147345160755
Iteration: 10, Func. Count: 120, Neg. LLF: 145.2111595197199
Iteration: 11, Func. Count: 132, Neg. LLF: 144.7597080455841
Iteration: 12, Func. Count: 143, Neg. LLF: 144.72843429680947
Iteration: 13, Func. Count: 154, Neg. LLF: 144.72345469236927
Iteration: 14, Func. Count: 165, Neg. LLF: 144.72218363700563
Iteration: 15, Func. Count: 176, Neg. LLF: 144.7200075451718
Iteration: 16, Func. Count: 187, Neg. LLF: 144.719007644857
Iteration: 17, Func. Count: 198, Neg. LLF: 144.71694022165352
Iteration: 18, Func. Count: 209, Neg. LLF: 144.7160131589052
Iteration: 19, Func. Count: 220, Neg. LLF: 144.71573388370908
Iteration: 20, Func. Count: 231, Neg. LLF: 144.71571555715002
Iteration: 21, Func. Count: 242, Neg. LLF: 144.7157144774697
Iteration: 22, Func. Count: 252, Neg. LLF: 144.71571447748005
Optimization terminated successfully (Exit mode 0)
Current function value: 144.7157144774697
Iterations: 22
Function evaluations: 252
Gradient evaluations: 22
Iteration: 1, Func. Count: 13, Neg. LLF: 576.3011301246096
Iteration: 2, Func. Count: 27, Neg. LLF: 160.05158820102687
Iteration: 3, Func. Count: 40, Neg. LLF: 165.00159983728892
Iteration: 4, Func. Count: 53, Neg. LLF: 155.48521171645103
Iteration: 5, Func. Count: 66, Neg. LLF: 149.0783950952836
Iteration: 6, Func. Count: 79, Neg. LLF: 147.99391908667224
Iteration: 7, Func. Count: 92, Neg. LLF: 146.78709216926976
Iteration: 8, Func. Count: 105, Neg. LLF: 145.7634360814403
Iteration: 9, Func. Count: 118, Neg. LLF: 144.92466945064822
Iteration: 10, Func. Count: 130, Neg. LLF: 144.95418656476204
Iteration: 11, Func. Count: 143, Neg. LLF: 146.58312720569805
Iteration: 12, Func. Count: 156, Neg. LLF: 148.37094302697815
Iteration: 13, Func. Count: 169, Neg. LLF: 144.7190145407502
Iteration: 14, Func. Count: 181, Neg. LLF: 144.71637661289165
Iteration: 15, Func. Count: 193, Neg. LLF: 144.71320765179811
Iteration: 16, Func. Count: 205, Neg. LLF: 144.70729463042446
Iteration: 17, Func. Count: 217, Neg. LLF: 144.70341988618767
Iteration: 18, Func. Count: 229, Neg. LLF: 144.70161222115044
Iteration: 19, Func. Count: 241, Neg. LLF: 144.70116265738207
Iteration: 20, Func. Count: 253, Neg. LLF: 144.70109035114876
Iteration: 21, Func. Count: 265, Neg. LLF: 144.70108531289122
Iteration: 22, Func. Count: 276, Neg. LLF: 144.70108531292874
Optimization terminated successfully (Exit mode 0)
Current function value: 144.70108531289122
Iterations: 22
Function evaluations: 276
Gradient evaluations: 22
Iteration: 1, Func. Count: 14, Neg. LLF: 147.2514442945198
Iteration: 2, Func. Count: 27, Neg. LLF: 146.43414590657622
Iteration: 3, Func. Count: 41, Neg. LLF: 155.9287371231399
Iteration: 4, Func. Count: 58, Neg. LLF: 171.89649624145505
Iteration: 5, Func. Count: 73, Neg. LLF: 171.92761934082924
Iteration: 6, Func. Count: 87, Neg. LLF: 146.32551423863913
Iteration: 7, Func. Count: 101, Neg. LLF: 144.9617494054992
Iteration: 8, Func. Count: 115, Neg. LLF: 144.82149642754402
Iteration: 9, Func. Count: 129, Neg. LLF: 145.37152302132796
Iteration: 10, Func. Count: 144, Neg. LLF: 144.76305160895964
Iteration: 11, Func. Count: 158, Neg. LLF: 144.7959710895248
Iteration: 12, Func. Count: 172, Neg. LLF: 144.72298823872
Iteration: 13, Func. Count: 185, Neg. LLF: 144.7177924609264
Iteration: 14, Func. Count: 198, Neg. LLF: 144.71502538581854
Iteration: 15, Func. Count: 211, Neg. LLF: 144.712479513448
Iteration: 16, Func. Count: 224, Neg. LLF: 144.70825474671486
Iteration: 17, Func. Count: 237, Neg. LLF: 144.7039550835052
Iteration: 18, Func. Count: 250, Neg. LLF: 144.70176386448122
Iteration: 19, Func. Count: 263, Neg. LLF: 144.70113601674979
Iteration: 20, Func. Count: 276, Neg. LLF: 144.70108543615507
Iteration: 21, Func. Count: 288, Neg. LLF: 144.70108553568733
Optimization terminated successfully (Exit mode 0)
Current function value: 144.70108543615507
Iterations: 21
Function evaluations: 288
Gradient evaluations: 21
Iteration: 1, Func. Count: 11, Neg. LLF: 147.41639892737072
Iteration: 2, Func. Count: 21, Neg. LLF: 146.7658594510723
Iteration: 3, Func. Count: 32, Neg. LLF: 166.04492500300216
Iteration: 4, Func. Count: 43, Neg. LLF: 157.0922785502647
Iteration: 5, Func. Count: 54, Neg. LLF: 162.9180496021811
Iteration: 6, Func. Count: 65, Neg. LLF: 145.57174658671235
Iteration: 7, Func. Count: 75, Neg. LLF: 145.18729760204218
Iteration: 8, Func. Count: 85, Neg. LLF: 145.031784206352
Iteration: 9, Func. Count: 95, Neg. LLF: 145.03493385296187
Iteration: 10, Func. Count: 106, Neg. LLF: 144.97113006836702
Iteration: 11, Func. Count: 116, Neg. LLF: 144.96141439978283
Iteration: 12, Func. Count: 126, Neg. LLF: 144.95616362389134
Iteration: 13, Func. Count: 136, Neg. LLF: 144.95581440327106
Iteration: 14, Func. Count: 146, Neg. LLF: 144.95580313705565
Iteration: 15, Func. Count: 156, Neg. LLF: 144.95580068906494
Iteration: 16, Func. Count: 165, Neg. LLF: 144.95580068906958
Optimization terminated successfully (Exit mode 0)
Current function value: 144.95580068906494
Iterations: 16
Function evaluations: 165
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 188.51059538568077
Iteration: 2, Func. Count: 24, Neg. LLF: 160.43690554749742
Iteration: 3, Func. Count: 36, Neg. LLF: 147.20967988076563
Iteration: 4, Func. Count: 48, Neg. LLF: 147.4810130119553
Iteration: 5, Func. Count: 61, Neg. LLF: 148.95302074417253
Iteration: 6, Func. Count: 73, Neg. LLF: 145.8919817586199
Iteration: 7, Func. Count: 84, Neg. LLF: 147.52371343928502
Iteration: 8, Func. Count: 97, Neg. LLF: 146.73231137678658
Iteration: 9, Func. Count: 109, Neg. LLF: 145.83874962094657
Iteration: 10, Func. Count: 121, Neg. LLF: 145.92964907240136
Iteration: 11, Func. Count: 133, Neg. LLF: 145.6634590044605
Iteration: 12, Func. Count: 144, Neg. LLF: 145.66136900172017
Iteration: 13, Func. Count: 155, Neg. LLF: 145.66035598944418
Iteration: 14, Func. Count: 166, Neg. LLF: 145.65895043298426
Iteration: 15, Func. Count: 177, Neg. LLF: 145.65887489488782
Iteration: 16, Func. Count: 188, Neg. LLF: 145.65886416566593
Iteration: 17, Func. Count: 198, Neg. LLF: 145.6588641655612
Optimization terminated successfully (Exit mode 0)
Current function value: 145.65886416566593
Iterations: 17
Function evaluations: 198
Gradient evaluations: 17
Iteration: 1, Func. Count: 13, Neg. LLF: 495.78641542562843
Iteration: 2, Func. Count: 27, Neg. LLF: 155.02843939224192
Iteration: 3, Func. Count: 40, Neg. LLF: 154.60057949459227
Iteration: 4, Func. Count: 53, Neg. LLF: 148.12296653488715
Iteration: 5, Func. Count: 66, Neg. LLF: 146.7117505161583
Iteration: 6, Func. Count: 79, Neg. LLF: 145.3411142633104
Iteration: 7, Func. Count: 91, Neg. LLF: 145.7310522987514
Iteration: 8, Func. Count: 104, Neg. LLF: 146.56615980092946
Iteration: 9, Func. Count: 118, Neg. LLF: 144.6116138993195
Iteration: 10, Func. Count: 130, Neg. LLF: 145.50513301763147
Iteration: 11, Func. Count: 143, Neg. LLF: 144.6869413942712
Iteration: 12, Func. Count: 156, Neg. LLF: 144.5153453468634
Iteration: 13, Func. Count: 168, Neg. LLF: 144.4942366587431
Iteration: 14, Func. Count: 180, Neg. LLF: 144.49259033102763
Iteration: 15, Func. Count: 192, Neg. LLF: 144.48948319887572
Iteration: 16, Func. Count: 204, Neg. LLF: 144.48571650486625
Iteration: 17, Func. Count: 216, Neg. LLF: 144.48124699681563
Iteration: 18, Func. Count: 228, Neg. LLF: 144.47995251889662
Iteration: 19, Func. Count: 240, Neg. LLF: 144.47964322631134
Iteration: 20, Func. Count: 252, Neg. LLF: 144.47956162221723
Iteration: 21, Func. Count: 264, Neg. LLF: 144.47952981077472
Iteration: 22, Func. Count: 276, Neg. LLF: 144.4795229219662
Iteration: 23, Func. Count: 288, Neg. LLF: 144.47952225549292
Optimization terminated successfully (Exit mode 0)
Current function value: 144.47952225549292
Iterations: 23
Function evaluations: 288
Gradient evaluations: 23
Iteration: 1, Func. Count: 14, Neg. LLF: 578.6067847646667
Iteration: 2, Func. Count: 29, Neg. LLF: 156.4720622345984
Iteration: 3, Func. Count: 43, Neg. LLF: 154.92903706268996
Iteration: 4, Func. Count: 57, Neg. LLF: 151.47776940307725
Iteration: 5, Func. Count: 71, Neg. LLF: 152.0354672226499
Iteration: 6, Func. Count: 85, Neg. LLF: 150.08362155978926
Iteration: 7, Func. Count: 99, Neg. LLF: 147.07016604814834
Iteration: 8, Func. Count: 113, Neg. LLF: 146.32788187248943
Iteration: 9, Func. Count: 127, Neg. LLF: 144.90086238308396
Iteration: 10, Func. Count: 140, Neg. LLF: 144.60187987584615
Iteration: 11, Func. Count: 153, Neg. LLF: 146.099849274183
Iteration: 12, Func. Count: 168, Neg. LLF: 144.73484466022543
Iteration: 13, Func. Count: 182, Neg. LLF: 144.5477708328233
Iteration: 14, Func. Count: 195, Neg. LLF: 144.53243369365381
Iteration: 15, Func. Count: 208, Neg. LLF: 144.52423533115405
Iteration: 16, Func. Count: 221, Neg. LLF: 144.51581637727278
Iteration: 17, Func. Count: 234, Neg. LLF: 144.4991337798719
Iteration: 18, Func. Count: 247, Neg. LLF: 144.4850501854735
Iteration: 19, Func. Count: 260, Neg. LLF: 144.48008698665242
Iteration: 20, Func. Count: 273, Neg. LLF: 144.47881345589053
Iteration: 21, Func. Count: 286, Neg. LLF: 144.47869443995455
Iteration: 22, Func. Count: 299, Neg. LLF: 144.47866011535214
Iteration: 23, Func. Count: 312, Neg. LLF: 144.47865237073847
Iteration: 24, Func. Count: 325, Neg. LLF: 144.47865140908
Optimization terminated successfully (Exit mode 0)
Current function value: 144.47865140908
Iterations: 24
Function evaluations: 325
Gradient evaluations: 24
Iteration: 1, Func. Count: 15, Neg. LLF: 147.23688080743912
Iteration: 2, Func. Count: 29, Neg. LLF: 145.7914856738096
Iteration: 3, Func. Count: 43, Neg. LLF: 162.06602169227796
Iteration: 4, Func. Count: 60, Neg. LLF: 154.71059728077367
Iteration: 5, Func. Count: 75, Neg. LLF: 168.90240334471704
Iteration: 6, Func. Count: 90, Neg. LLF: 145.72385777379966
Iteration: 7, Func. Count: 105, Neg. LLF: 145.51326799982584
Iteration: 8, Func. Count: 120, Neg. LLF: 145.2790564728271
Iteration: 9, Func. Count: 135, Neg. LLF: 145.21712651799467
Iteration: 10, Func. Count: 150, Neg. LLF: 145.07898921110635
Iteration: 11, Func. Count: 165, Neg. LLF: 145.55749554642617
Iteration: 12, Func. Count: 180, Neg. LLF: 144.508560339891
Iteration: 13, Func. Count: 194, Neg. LLF: 144.4872316685207
Iteration: 14, Func. Count: 208, Neg. LLF: 144.4902610456062
Iteration: 15, Func. Count: 223, Neg. LLF: 144.48061377080137
Iteration: 16, Func. Count: 237, Neg. LLF: 144.4793547047967
Iteration: 17, Func. Count: 251, Neg. LLF: 144.47928641558315
Iteration: 18, Func. Count: 265, Neg. LLF: 144.47920188817307
Iteration: 19, Func. Count: 279, Neg. LLF: 144.47906574074779
Iteration: 20, Func. Count: 293, Neg. LLF: 144.47886500211126
Iteration: 21, Func. Count: 307, Neg. LLF: 144.47870466439124
Iteration: 22, Func. Count: 321, Neg. LLF: 144.47865655378754
Iteration: 23, Func. Count: 335, Neg. LLF: 144.47865154944677
Iteration: 24, Func. Count: 348, Neg. LLF: 144.47865166109762
Optimization terminated successfully (Exit mode 0)
Current function value: 144.47865154944677
Iterations: 24
Function evaluations: 348
Gradient evaluations: 24
Iteration: 1, Func. Count: 12, Neg. LLF: 143.62319030896182
Iteration: 2, Func. Count: 23, Neg. LLF: 145.16616318827462
Iteration: 3, Func. Count: 37, Neg. LLF: 149.877853417066
Iteration: 4, Func. Count: 49, Neg. LLF: 145.22965714407357
Iteration: 5, Func. Count: 61, Neg. LLF: 146.01909122029727
Iteration: 6, Func. Count: 73, Neg. LLF: 142.94370840876223
Iteration: 7, Func. Count: 85, Neg. LLF: 141.69219920896677
Iteration: 8, Func. Count: 96, Neg. LLF: 239.86319338593867
Iteration: 9, Func. Count: 109, Neg. LLF: 141.45961220392041
Iteration: 10, Func. Count: 120, Neg. LLF: 141.28201572022883
Iteration: 11, Func. Count: 131, Neg. LLF: 141.17067741794685
Iteration: 12, Func. Count: 142, Neg. LLF: 141.11294348084107
Iteration: 13, Func. Count: 153, Neg. LLF: 141.10714142243023
Iteration: 14, Func. Count: 164, Neg. LLF: 141.10681294522743
Iteration: 15, Func. Count: 175, Neg. LLF: 141.10678078637798
Iteration: 16, Func. Count: 186, Neg. LLF: 141.10677282875324
Iteration: 17, Func. Count: 197, Neg. LLF: 141.10677184617023
Optimization terminated successfully (Exit mode 0)
Current function value: 141.10677184617023
Iterations: 17
Function evaluations: 197
Gradient evaluations: 17
Iteration: 1, Func. Count: 13, Neg. LLF: 203.40943353267102
Iteration: 2, Func. Count: 26, Neg. LLF: 172.62075620251196
Iteration: 3, Func. Count: 39, Neg. LLF: 141.96542231621552
Iteration: 4, Func. Count: 51, Neg. LLF: 156.9669750816019
Iteration: 5, Func. Count: 64, Neg. LLF: 143.65425472402336
Iteration: 6, Func. Count: 77, Neg. LLF: 148.53367687233785
Iteration: 7, Func. Count: 91, Neg. LLF: 141.0484319904464
Iteration: 8, Func. Count: 103, Neg. LLF: 141.4202620781358
Iteration: 9, Func. Count: 116, Neg. LLF: 140.97235367358635
Iteration: 10, Func. Count: 128, Neg. LLF: 140.9545386764721
Iteration: 11, Func. Count: 140, Neg. LLF: 140.95274636071085
Iteration: 12, Func. Count: 152, Neg. LLF: 140.95264019466487
Iteration: 13, Func. Count: 164, Neg. LLF: 140.95262393072773
Iteration: 14, Func. Count: 176, Neg. LLF: 140.95261783123325
Iteration: 15, Func. Count: 187, Neg. LLF: 140.95261783119108
Optimization terminated successfully (Exit mode 0)
Current function value: 140.95261783123325
Iterations: 15
Function evaluations: 187
Gradient evaluations: 15
Iteration: 1, Func. Count: 14, Neg. LLF: 229.87873796656172
Iteration: 2, Func. Count: 28, Neg. LLF: 144.8731326661102
Iteration: 3, Func. Count: 42, Neg. LLF: 159.01358598155613
Iteration: 4, Func. Count: 56, Neg. LLF: 171.02609183604594
Iteration: 5, Func. Count: 70, Neg. LLF: 143.0006925471451
Iteration: 6, Func. Count: 84, Neg. LLF: 143.46011002300935
Iteration: 7, Func. Count: 98, Neg. LLF: 141.65009323497284
Iteration: 8, Func. Count: 112, Neg. LLF: 140.18446095737087
Iteration: 9, Func. Count: 125, Neg. LLF: 140.03552690538808
Iteration: 10, Func. Count: 138, Neg. LLF: 140.0154173433083
Iteration: 11, Func. Count: 151, Neg. LLF: 140.00694175586156
Iteration: 12, Func. Count: 164, Neg. LLF: 140.0061362646601
Iteration: 13, Func. Count: 177, Neg. LLF: 140.00566257826276
Iteration: 14, Func. Count: 190, Neg. LLF: 140.00559914831052
Iteration: 15, Func. Count: 203, Neg. LLF: 140.00558735230103
Iteration: 16, Func. Count: 216, Neg. LLF: 140.00558559292364
Iteration: 17, Func. Count: 228, Neg. LLF: 140.0055855930617
Optimization terminated successfully (Exit mode 0)
Current function value: 140.00558559292364
Iterations: 17
Function evaluations: 228
Gradient evaluations: 17
Iteration: 1, Func. Count: 15, Neg. LLF: 252.08020003941036
Iteration: 2, Func. Count: 30, Neg. LLF: 144.60306593914484
Iteration: 3, Func. Count: 44, Neg. LLF: 149.84768012625227
Iteration: 4, Func. Count: 60, Neg. LLF: 270.5544121769134
Iteration: 5, Func. Count: 76, Neg. LLF: 144.45311125461055
Iteration: 6, Func. Count: 91, Neg. LLF: 141.09116390417364
Iteration: 7, Func. Count: 106, Neg. LLF: 140.67249319449098
Iteration: 8, Func. Count: 120, Neg. LLF: 171.80393477794598
Iteration: 9, Func. Count: 135, Neg. LLF: 140.06205204807193
Iteration: 10, Func. Count: 149, Neg. LLF: 140.0909338418023
Iteration: 11, Func. Count: 164, Neg. LLF: 140.0405489079771
Iteration: 12, Func. Count: 178, Neg. LLF: 140.02214885887835
Iteration: 13, Func. Count: 192, Neg. LLF: 140.0177405908203
Iteration: 14, Func. Count: 206, Neg. LLF: 140.01796293483793
Iteration: 15, Func. Count: 221, Neg. LLF: 139.99341219224047
Iteration: 16, Func. Count: 235, Neg. LLF: 139.99096074221984
Iteration: 17, Func. Count: 249, Neg. LLF: 139.99057795990885
Iteration: 18, Func. Count: 263, Neg. LLF: 139.99052373567716
Iteration: 19, Func. Count: 277, Neg. LLF: 139.9905155520341
Iteration: 20, Func. Count: 291, Neg. LLF: 139.99051479250588
Optimization terminated successfully (Exit mode 0)
Current function value: 139.99051479250588
Iterations: 20
Function evaluations: 291
Gradient evaluations: 20
Iteration: 1, Func. Count: 16, Neg. LLF: 150.43462185613674
Iteration: 2, Func. Count: 32, Neg. LLF: 141.65909162200947
Iteration: 3, Func. Count: 47, Neg. LLF: 190.1099975027963
Iteration: 4, Func. Count: 65, Neg. LLF: 154.20536303955495
Iteration: 5, Func. Count: 83, Neg. LLF: 143.36304558824315
Iteration: 6, Func. Count: 100, Neg. LLF: 145.00329409115324
Iteration: 7, Func. Count: 116, Neg. LLF: 142.5721303368965
Iteration: 8, Func. Count: 132, Neg. LLF: 141.24069505614375
Iteration: 9, Func. Count: 148, Neg. LLF: 151.039020319318
Iteration: 10, Func. Count: 164, Neg. LLF: 141.01257398410328
Iteration: 11, Func. Count: 180, Neg. LLF: 141.9968903377797
Iteration: 12, Func. Count: 196, Neg. LLF: 140.59420417701733
Iteration: 13, Func. Count: 212, Neg. LLF: 140.10405209946725
Iteration: 14, Func. Count: 227, Neg. LLF: 140.02474660168704
Iteration: 15, Func. Count: 242, Neg. LLF: 140.00012865556602
Iteration: 16, Func. Count: 257, Neg. LLF: 139.99437072889717
Iteration: 17, Func. Count: 272, Neg. LLF: 139.99189064046783
Iteration: 18, Func. Count: 287, Neg. LLF: 139.99064837958682
Iteration: 19, Func. Count: 302, Neg. LLF: 139.9905216767811
Iteration: 20, Func. Count: 317, Neg. LLF: 139.9905147879135
Iteration: 21, Func. Count: 331, Neg. LLF: 139.9905149767186
Optimization terminated successfully (Exit mode 0)
Current function value: 139.9905147879135
Iterations: 21
Function evaluations: 331
Gradient evaluations: 21
Iteration: 1, Func. Count: 6, Neg. LLF: 20804788.564840224
Iteration: 2, Func. Count: 13, Neg. LLF: 156.78133386689865
Iteration: 3, Func. Count: 19, Neg. LLF: 151.4606272238673
Iteration: 4, Func. Count: 25, Neg. LLF: 149.78542352509814
Iteration: 5, Func. Count: 31, Neg. LLF: 149.07551080720125
Iteration: 6, Func. Count: 37, Neg. LLF: 146.71962712388762
Iteration: 7, Func. Count: 42, Neg. LLF: 148.12438329604464
Iteration: 8, Func. Count: 48, Neg. LLF: 146.07461128829874
Iteration: 9, Func. Count: 53, Neg. LLF: 145.91319454172304
Iteration: 10, Func. Count: 58, Neg. LLF: 145.90713325400202
Iteration: 11, Func. Count: 63, Neg. LLF: 145.90698199637285
Iteration: 12, Func. Count: 68, Neg. LLF: 145.90689857668156
Iteration: 13, Func. Count: 73, Neg. LLF: 145.90689154015655
Iteration: 14, Func. Count: 78, Neg. LLF: 149.95554414288299
Optimization terminated successfully (Exit mode 0)
Current function value: 145.90689153424788
Iterations: 15
Function evaluations: 83
Gradient evaluations: 14
Iteration: 1, Func. Count: 5, Neg. LLF: 154.5946249847287
Iteration: 2, Func. Count: 10, Neg. LLF: 152.90223506443834
Iteration: 3, Func. Count: 15, Neg. LLF: 144.42876262043774
Iteration: 4, Func. Count: 19, Neg. LLF: 144.02514663694836
Iteration: 5, Func. Count: 23, Neg. LLF: 144.00300745264116
Iteration: 6, Func. Count: 27, Neg. LLF: 143.96278625877466
Iteration: 7, Func. Count: 31, Neg. LLF: 143.96087994172782
Iteration: 8, Func. Count: 35, Neg. LLF: 143.96083291423514
Iteration: 9, Func. Count: 38, Neg. LLF: 143.96083292092177
Optimization terminated successfully (Exit mode 0)
Current function value: 143.96083291423514
Iterations: 9
Function evaluations: 38
Gradient evaluations: 9
Iteration: 1, Func. Count: 6, Neg. LLF: 18973674.70918964
Iteration: 2, Func. Count: 13, Neg. LLF: 229.08738231985998
Iteration: 3, Func. Count: 21, Neg. LLF: 312.769549558847
Iteration: 4, Func. Count: 27, Neg. LLF: 204.87699960798
Iteration: 5, Func. Count: 33, Neg. LLF: 155.59980259969583
Iteration: 6, Func. Count: 39, Neg. LLF: 146.62599385875342
Iteration: 7, Func. Count: 45, Neg. LLF: 142.98888803133676
Iteration: 8, Func. Count: 51, Neg. LLF: 142.5266425197186
Iteration: 9, Func. Count: 57, Neg. LLF: 142.26972133012924
Iteration: 10, Func. Count: 62, Neg. LLF: 142.26603819034958
Iteration: 11, Func. Count: 67, Neg. LLF: 142.26235104249923
Iteration: 12, Func. Count: 72, Neg. LLF: 142.2622980857213
Iteration: 13, Func. Count: 77, Neg. LLF: 142.26229692093625
Iteration: 14, Func. Count: 81, Neg. LLF: 142.26229692096032
Optimization terminated successfully (Exit mode 0)
Current function value: 142.26229692093625
Iterations: 14
Function evaluations: 81
Gradient evaluations: 14
Iteration: 1, Func. Count: 7, Neg. LLF: 18969655.47632643
Iteration: 2, Func. Count: 14, Neg. LLF: 159.28380546429457
Iteration: 3, Func. Count: 21, Neg. LLF: 145.01621034506454
Iteration: 4, Func. Count: 28, Neg. LLF: 142.21684166671957
Iteration: 5, Func. Count: 34, Neg. LLF: 142.26270066817966
Iteration: 6, Func. Count: 41, Neg. LLF: 142.15360767704507
Iteration: 7, Func. Count: 47, Neg. LLF: 142.15350092397537
Iteration: 8, Func. Count: 53, Neg. LLF: 142.1534919796263
Iteration: 9, Func. Count: 58, Neg. LLF: 142.1534919798571
Optimization terminated successfully (Exit mode 0)
Current function value: 142.1534919796263
Iterations: 9
Function evaluations: 58
Gradient evaluations: 9
Iteration: 1, Func. Count: 8, Neg. LLF: 190.73635420843317
Iteration: 2, Func. Count: 16, Neg. LLF: 152.85281351129066
Iteration: 3, Func. Count: 24, Neg. LLF: 156.31033508721984
Iteration: 4, Func. Count: 32, Neg. LLF: 173.60721179607822
Iteration: 5, Func. Count: 40, Neg. LLF: 148.44860006997965
Iteration: 6, Func. Count: 48, Neg. LLF: 149.04631705547683
Iteration: 7, Func. Count: 56, Neg. LLF: 151.34162546968062
Iteration: 8, Func. Count: 64, Neg. LLF: 144.73700504136752
Iteration: 9, Func. Count: 72, Neg. LLF: 143.70160399674836
Iteration: 10, Func. Count: 80, Neg. LLF: 142.22737881686194
Iteration: 11, Func. Count: 87, Neg. LLF: 142.1729253430127
Iteration: 12, Func. Count: 94, Neg. LLF: 142.1905116432174
Iteration: 13, Func. Count: 102, Neg. LLF: 142.15373142628107
Iteration: 14, Func. Count: 109, Neg. LLF: 142.15350964161314
Iteration: 15, Func. Count: 116, Neg. LLF: 142.1534964448265
Iteration: 16, Func. Count: 123, Neg. LLF: 142.15349195870832
Iteration: 17, Func. Count: 129, Neg. LLF: 142.15349198544726
Optimization terminated successfully (Exit mode 0)
Current function value: 142.15349195870832
Iterations: 17
Function evaluations: 129
Gradient evaluations: 17
Iteration: 1, Func. Count: 9, Neg. LLF: 193.47943221632818
Iteration: 2, Func. Count: 18, Neg. LLF: 178.5841741132697
Iteration: 3, Func. Count: 27, Neg. LLF: 184.69003350217412
Iteration: 4, Func. Count: 36, Neg. LLF: 164.28214898054054
Iteration: 5, Func. Count: 45, Neg. LLF: 155.5101319325846
Iteration: 6, Func. Count: 54, Neg. LLF: 144.08052808767943
Iteration: 7, Func. Count: 63, Neg. LLF: 142.20327380162766
Iteration: 8, Func. Count: 71, Neg. LLF: 142.3481545414459
Iteration: 9, Func. Count: 80, Neg. LLF: 142.14912376405184
Iteration: 10, Func. Count: 88, Neg. LLF: 142.12392640985007
Iteration: 11, Func. Count: 96, Neg. LLF: 142.12357579115414
Iteration: 12, Func. Count: 104, Neg. LLF: 142.1235646129337
Iteration: 13, Func. Count: 111, Neg. LLF: 142.1235646127172
Optimization terminated successfully (Exit mode 0)
Current function value: 142.1235646129337
Iterations: 13
Function evaluations: 111
Gradient evaluations: 13
Iteration: 1, Func. Count: 6, Neg. LLF: 148.5262003589502
Iteration: 2, Func. Count: 11, Neg. LLF: 151.6909679919956
Iteration: 3, Func. Count: 17, Neg. LLF: 144.5001607370285
Iteration: 4, Func. Count: 22, Neg. LLF: 144.01948109890537
Iteration: 5, Func. Count: 27, Neg. LLF: 143.96993711442067
Iteration: 6, Func. Count: 32, Neg. LLF: 143.9609886591174
Iteration: 7, Func. Count: 37, Neg. LLF: 143.960834159666
Iteration: 8, Func. Count: 42, Neg. LLF: 143.96083287074404
Iteration: 9, Func. Count: 46, Neg. LLF: 143.96083293855932
Optimization terminated successfully (Exit mode 0)
Current function value: 143.96083287074404
Iterations: 9
Function evaluations: 46
Gradient evaluations: 9
Iteration: 1, Func. Count: 7, Neg. LLF: 18971257.350900825
Iteration: 2, Func. Count: 15, Neg. LLF: 14498962.919958934
Iteration: 3, Func. Count: 24, Neg. LLF: 269.3538330891022
Iteration: 4, Func. Count: 31, Neg. LLF: 191.12092158196808
Iteration: 5, Func. Count: 38, Neg. LLF: 152.81121605560878
Iteration: 6, Func. Count: 45, Neg. LLF: 149.45318443761752
Iteration: 7, Func. Count: 52, Neg. LLF: 143.30171293178685
Iteration: 8, Func. Count: 59, Neg. LLF: 142.3262469338746
Iteration: 9, Func. Count: 65, Neg. LLF: 142.28446268997817
Iteration: 10, Func. Count: 71, Neg. LLF: 142.27082294515233
Iteration: 11, Func. Count: 77, Neg. LLF: 142.26263032010684
Iteration: 12, Func. Count: 83, Neg. LLF: 142.26237211027254
Iteration: 13, Func. Count: 89, Neg. LLF: 142.2622970794008
Iteration: 14, Func. Count: 94, Neg. LLF: 142.26229707863834
Optimization terminated successfully (Exit mode 0)
Current function value: 142.2622970794008
Iterations: 14
Function evaluations: 94
Gradient evaluations: 14
Iteration: 1, Func. Count: 8, Neg. LLF: 18969513.09763399
Iteration: 2, Func. Count: 16, Neg. LLF: 174.80772687711277
Iteration: 3, Func. Count: 25, Neg. LLF: 147.74718760612808
Iteration: 4, Func. Count: 33, Neg. LLF: 142.24101609901177
Iteration: 5, Func. Count: 40, Neg. LLF: 142.7742569614282
Iteration: 6, Func. Count: 48, Neg. LLF: 142.16014972366207
Iteration: 7, Func. Count: 55, Neg. LLF: 142.153638153822
Iteration: 8, Func. Count: 62, Neg. LLF: 142.1535004356794
Iteration: 9, Func. Count: 69, Neg. LLF: 142.15349199114814
Iteration: 10, Func. Count: 75, Neg. LLF: 142.15349199101158
Optimization terminated successfully (Exit mode 0)
Current function value: 142.15349199114814
Iterations: 10
Function evaluations: 75
Gradient evaluations: 10
Iteration: 1, Func. Count: 9, Neg. LLF: 190.55317122843357
Iteration: 2, Func. Count: 18, Neg. LLF: 148.71373299404826
Iteration: 3, Func. Count: 27, Neg. LLF: 156.71379480179652
Iteration: 4, Func. Count: 36, Neg. LLF: 159.8482699900277
Iteration: 5, Func. Count: 45, Neg. LLF: 142.81773942556492
Iteration: 6, Func. Count: 53, Neg. LLF: 155.19569478877855
Iteration: 7, Func. Count: 63, Neg. LLF: 145.85972471183067
Iteration: 8, Func. Count: 72, Neg. LLF: 142.1944850129422
Iteration: 9, Func. Count: 80, Neg. LLF: 142.1666052016298
Iteration: 10, Func. Count: 88, Neg. LLF: 142.1587305417002
Iteration: 11, Func. Count: 96, Neg. LLF: 142.15429712674705
Iteration: 12, Func. Count: 104, Neg. LLF: 142.1537677735121
Iteration: 13, Func. Count: 112, Neg. LLF: 142.15352006266778
Iteration: 14, Func. Count: 120, Neg. LLF: 142.15349420225593
Iteration: 15, Func. Count: 128, Neg. LLF: 142.1534936842628
Optimization terminated successfully (Exit mode 0)
Current function value: 142.1534936842628
Iterations: 15
Function evaluations: 128
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 192.15248337700675
Iteration: 2, Func. Count: 20, Neg. LLF: 247.67218081284355
Iteration: 3, Func. Count: 30, Neg. LLF: 429.56530503931305
Iteration: 4, Func. Count: 40, Neg. LLF: 178.15574049121423
Iteration: 5, Func. Count: 50, Neg. LLF: 148.06215382213168
Iteration: 6, Func. Count: 60, Neg. LLF: 142.36148903196943
Iteration: 7, Func. Count: 69, Neg. LLF: 142.2681839859543
Iteration: 8, Func. Count: 79, Neg. LLF: 142.1947933889106
Iteration: 9, Func. Count: 90, Neg. LLF: 142.09257617504355
Iteration: 10, Func. Count: 99, Neg. LLF: 142.0913057591839
Iteration: 11, Func. Count: 108, Neg. LLF: 142.09006302559726
Iteration: 12, Func. Count: 117, Neg. LLF: 142.0900420832189
Iteration: 13, Func. Count: 126, Neg. LLF: 142.0900409059064
Iteration: 14, Func. Count: 134, Neg. LLF: 142.09004090589147
Optimization terminated successfully (Exit mode 0)
Current function value: 142.0900409059064
Iterations: 14
Function evaluations: 134
Gradient evaluations: 14
Iteration: 1, Func. Count: 7, Neg. LLF: 154.94814297849288
Iteration: 2, Func. Count: 15, Neg. LLF: 145.15279633875272
Iteration: 3, Func. Count: 21, Neg. LLF: 146.07662726115336
Iteration: 4, Func. Count: 28, Neg. LLF: 144.59912221187668
Iteration: 5, Func. Count: 34, Neg. LLF: 143.96788049770427
Iteration: 6, Func. Count: 40, Neg. LLF: 143.9646691983098
Iteration: 7, Func. Count: 46, Neg. LLF: 143.9608476547712
Iteration: 8, Func. Count: 52, Neg. LLF: 143.9608335255166
Iteration: 9, Func. Count: 58, Neg. LLF: 143.96083289234528
Optimization terminated successfully (Exit mode 0)
Current function value: 143.96083289234528
Iterations: 9
Function evaluations: 58
Gradient evaluations: 9
Iteration: 1, Func. Count: 8, Neg. LLF: 18970052.67856145
Iteration: 2, Func. Count: 16, Neg. LLF: 12150595.286465423
Iteration: 3, Func. Count: 26, Neg. LLF: 155.7997501011202
Iteration: 4, Func. Count: 34, Neg. LLF: 144.30949676466764
Iteration: 5, Func. Count: 42, Neg. LLF: 144.35075780566274
Iteration: 6, Func. Count: 50, Neg. LLF: 144.45842950174224
Iteration: 7, Func. Count: 58, Neg. LLF: 142.44913989311974
Iteration: 8, Func. Count: 65, Neg. LLF: 142.3426343569251
Iteration: 9, Func. Count: 72, Neg. LLF: 142.62588922159833
Iteration: 10, Func. Count: 80, Neg. LLF: 142.2760355300874
Iteration: 11, Func. Count: 87, Neg. LLF: 142.2624771540555
Iteration: 12, Func. Count: 94, Neg. LLF: 142.26230343527718
Iteration: 13, Func. Count: 101, Neg. LLF: 142.26229696788516
Iteration: 14, Func. Count: 107, Neg. LLF: 142.26229696773504
Optimization terminated successfully (Exit mode 0)
Current function value: 142.26229696788516
Iterations: 14
Function evaluations: 107
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 18969688.619681936
Iteration: 2, Func. Count: 18, Neg. LLF: 12242933.680597506
Iteration: 3, Func. Count: 29, Neg. LLF: 145.6044728810623
Iteration: 4, Func. Count: 38, Neg. LLF: 143.38659854308287
Iteration: 5, Func. Count: 47, Neg. LLF: 143.84990599837388
Iteration: 6, Func. Count: 56, Neg. LLF: 142.16295336826335
Iteration: 7, Func. Count: 64, Neg. LLF: 142.15609725741493
Iteration: 8, Func. Count: 72, Neg. LLF: 142.15492299314943
Iteration: 9, Func. Count: 80, Neg. LLF: 142.15418204247516
Iteration: 10, Func. Count: 88, Neg. LLF: 142.15356566349294
Iteration: 11, Func. Count: 96, Neg. LLF: 142.153497007853
Iteration: 12, Func. Count: 104, Neg. LLF: 142.15349193779335
Iteration: 13, Func. Count: 111, Neg. LLF: 142.15349193784434
Optimization terminated successfully (Exit mode 0)
Current function value: 142.15349193779335
Iterations: 13
Function evaluations: 111
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 190.9347776345322
Iteration: 2, Func. Count: 20, Neg. LLF: 9174441.99938312
Iteration: 3, Func. Count: 31, Neg. LLF: 156.99188974875264
Iteration: 4, Func. Count: 41, Neg. LLF: 148.21554893867503
Iteration: 5, Func. Count: 51, Neg. LLF: 148.37072914753583
Iteration: 6, Func. Count: 61, Neg. LLF: 142.94794894992836
Iteration: 7, Func. Count: 70, Neg. LLF: 151.5202529931707
Iteration: 8, Func. Count: 80, Neg. LLF: 150.77244254990623
Iteration: 9, Func. Count: 90, Neg. LLF: 142.5871094316446
Iteration: 10, Func. Count: 99, Neg. LLF: 142.51463549181966
Iteration: 11, Func. Count: 108, Neg. LLF: 142.49773664003203
Iteration: 12, Func. Count: 117, Neg. LLF: 142.48404354892497
Iteration: 13, Func. Count: 126, Neg. LLF: 142.44423518450608
Iteration: 14, Func. Count: 135, Neg. LLF: 142.41596585270736
Iteration: 15, Func. Count: 144, Neg. LLF: 142.3632458806838
Iteration: 16, Func. Count: 153, Neg. LLF: 142.30320450702072
Iteration: 17, Func. Count: 162, Neg. LLF: 142.31037972200315
Iteration: 18, Func. Count: 172, Neg. LLF: 142.30606674649837
Iteration: 19, Func. Count: 182, Neg. LLF: 142.29815383787357
Iteration: 20, Func. Count: 191, Neg. LLF: 142.29785935537404
Iteration: 21, Func. Count: 200, Neg. LLF: 142.2947761314096
Iteration: 22, Func. Count: 209, Neg. LLF: 142.28640299833137
Iteration: 23, Func. Count: 218, Neg. LLF: 142.52149057884336
Iteration: 24, Func. Count: 228, Neg. LLF: 142.26524373870828
Iteration: 25, Func. Count: 237, Neg. LLF: 1983.5341540504737
Iteration: 26, Func. Count: 250, Neg. LLF: 142.2916923154657
Iteration: 27, Func. Count: 260, Neg. LLF: 142.26230628927402
Iteration: 28, Func. Count: 269, Neg. LLF: 142.26229692079139
Iteration: 29, Func. Count: 277, Neg. LLF: 142.2622969302823
Optimization terminated successfully (Exit mode 0)
Current function value: 142.26229692079139
Iterations: 30
Function evaluations: 277
Gradient evaluations: 29
Iteration: 1, Func. Count: 11, Neg. LLF: 192.35821375033063
Iteration: 2, Func. Count: 22, Neg. LLF: 9261323.613987017
Iteration: 3, Func. Count: 34, Neg. LLF: 200.98802414155975
Iteration: 4, Func. Count: 45, Neg. LLF: 178.57476069243128
Iteration: 5, Func. Count: 56, Neg. LLF: 161.9677352163086
Iteration: 6, Func. Count: 67, Neg. LLF: 151.47983516189421
Iteration: 7, Func. Count: 78, Neg. LLF: 142.68014837251823
Iteration: 8, Func. Count: 88, Neg. LLF: 143.9033729384762
Iteration: 9, Func. Count: 99, Neg. LLF: 142.89347914817245
Iteration: 10, Func. Count: 112, Neg. LLF: 142.11892414361412
Iteration: 11, Func. Count: 122, Neg. LLF: 142.13630003874147
Iteration: 12, Func. Count: 133, Neg. LLF: 142.09482240769367
Iteration: 13, Func. Count: 143, Neg. LLF: 142.09164727127387
Iteration: 14, Func. Count: 153, Neg. LLF: 142.09086467080172
Iteration: 15, Func. Count: 163, Neg. LLF: 142.09007666161196
Iteration: 16, Func. Count: 173, Neg. LLF: 142.0900450255664
Iteration: 17, Func. Count: 183, Neg. LLF: 142.09004148718142
Iteration: 18, Func. Count: 192, Neg. LLF: 142.09004148716562
Optimization terminated successfully (Exit mode 0)
Current function value: 142.09004148718142
Iterations: 18
Function evaluations: 192
Gradient evaluations: 18
Iteration: 1, Func. Count: 8, Neg. LLF: 150.06176235520815
Iteration: 2, Func. Count: 16, Neg. LLF: 150.16968516289916
Iteration: 3, Func. Count: 25, Neg. LLF: 159.60825206480268
Iteration: 4, Func. Count: 33, Neg. LLF: 147.45447699409976
Iteration: 5, Func. Count: 42, Neg. LLF: 145.92627985241396
Iteration: 6, Func. Count: 50, Neg. LLF: 145.92543558259288
Iteration: 7, Func. Count: 58, Neg. LLF: 145.44649061093548
Iteration: 8, Func. Count: 66, Neg. LLF: 145.8608568126281
Iteration: 9, Func. Count: 74, Neg. LLF: 145.39014249551866
Iteration: 10, Func. Count: 81, Neg. LLF: 145.3883583424949
Iteration: 11, Func. Count: 88, Neg. LLF: 145.38405158611434
Iteration: 12, Func. Count: 95, Neg. LLF: 145.3832149022811
Iteration: 13, Func. Count: 102, Neg. LLF: 145.3830827001748
Iteration: 14, Func. Count: 109, Neg. LLF: 145.3830807401311
Iteration: 15, Func. Count: 115, Neg. LLF: 145.38308074015742
Optimization terminated successfully (Exit mode 0)
Current function value: 145.3830807401311
Iterations: 15
Function evaluations: 115
Gradient evaluations: 15
Iteration: 1, Func. Count: 9, Neg. LLF: 18969495.708050873
Iteration: 2, Func. Count: 18, Neg. LLF: 12106619.91153636
Iteration: 3, Func. Count: 29, Neg. LLF: 155.90459810190583
Iteration: 4, Func. Count: 38, Neg. LLF: 144.54470242685838
Iteration: 5, Func. Count: 47, Neg. LLF: 143.8895701621697
Iteration: 6, Func. Count: 56, Neg. LLF: 144.21190617575346
Iteration: 7, Func. Count: 65, Neg. LLF: 142.36589921210316
Iteration: 8, Func. Count: 73, Neg. LLF: 142.3201286247705
Iteration: 9, Func. Count: 81, Neg. LLF: 142.43571180012944
Iteration: 10, Func. Count: 90, Neg. LLF: 142.26787641514434
Iteration: 11, Func. Count: 98, Neg. LLF: 142.2623236626787
Iteration: 12, Func. Count: 106, Neg. LLF: 142.26229702203977
Iteration: 13, Func. Count: 113, Neg. LLF: 142.26229702187487
Optimization terminated successfully (Exit mode 0)
Current function value: 142.26229702203977
Iterations: 13
Function evaluations: 113
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 187.80763025110022
Iteration: 2, Func. Count: 20, Neg. LLF: 172.5857318302525
Iteration: 3, Func. Count: 30, Neg. LLF: 144.32298194496786
Iteration: 4, Func. Count: 39, Neg. LLF: 144.76447932814182
Iteration: 5, Func. Count: 49, Neg. LLF: 146.71095927041605
Iteration: 6, Func. Count: 59, Neg. LLF: 142.96367972373517
Iteration: 7, Func. Count: 68, Neg. LLF: 150.0872488018748
Iteration: 8, Func. Count: 78, Neg. LLF: 147.83865203607573
Iteration: 9, Func. Count: 89, Neg. LLF: 142.40240453976762
Iteration: 10, Func. Count: 99, Neg. LLF: 142.15448223090124
Iteration: 11, Func. Count: 108, Neg. LLF: 142.15369717510808
Iteration: 12, Func. Count: 117, Neg. LLF: 142.15355028663316
Iteration: 13, Func. Count: 126, Neg. LLF: 142.1535107905245
Iteration: 14, Func. Count: 135, Neg. LLF: 142.1534929204756
Iteration: 15, Func. Count: 144, Neg. LLF: 142.15349192685647
Optimization terminated successfully (Exit mode 0)
Current function value: 142.15349192685647
Iterations: 15
Function evaluations: 144
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 190.76777846888265
Iteration: 2, Func. Count: 22, Neg. LLF: 12185028.604189849
Iteration: 3, Func. Count: 34, Neg. LLF: 149.57149207100508
Iteration: 4, Func. Count: 45, Neg. LLF: 145.40067355070428
Iteration: 5, Func. Count: 56, Neg. LLF: 142.8474199897561
Iteration: 6, Func. Count: 66, Neg. LLF: 147.02471083280824
Iteration: 7, Func. Count: 77, Neg. LLF: 145.57718916452782
Iteration: 8, Func. Count: 89, Neg. LLF: 142.1135666737536
Iteration: 9, Func. Count: 99, Neg. LLF: 142.32038103770202
Iteration: 10, Func. Count: 110, Neg. LLF: 141.78722834594564
Iteration: 11, Func. Count: 120, Neg. LLF: 141.73177991450171
Iteration: 12, Func. Count: 130, Neg. LLF: 141.724939068753
Iteration: 13, Func. Count: 140, Neg. LLF: 141.72290741243367
Iteration: 14, Func. Count: 150, Neg. LLF: 141.72268530790117
Iteration: 15, Func. Count: 160, Neg. LLF: 141.72267943970542
Iteration: 16, Func. Count: 170, Neg. LLF: 141.72267805902544
Iteration: 17, Func. Count: 179, Neg. LLF: 141.7226780590274
Optimization terminated successfully (Exit mode 0)
Current function value: 141.72267805902544
Iterations: 17
Function evaluations: 179
Gradient evaluations: 17
Iteration: 1, Func. Count: 12, Neg. LLF: 192.12345314167885
Iteration: 2, Func. Count: 24, Neg. LLF: 12339867.268687721
Iteration: 3, Func. Count: 37, Neg. LLF: 185.01745713936424
Iteration: 4, Func. Count: 49, Neg. LLF: 163.97203057785234
Iteration: 5, Func. Count: 61, Neg. LLF: 160.1459763635514
Iteration: 6, Func. Count: 73, Neg. LLF: 146.21804272504338
Iteration: 7, Func. Count: 85, Neg. LLF: 143.2031297890681
Iteration: 8, Func. Count: 97, Neg. LLF: 142.17915567729654
Iteration: 9, Func. Count: 108, Neg. LLF: 142.1465976852059
Iteration: 10, Func. Count: 119, Neg. LLF: 142.1738072745582
Iteration: 11, Func. Count: 131, Neg. LLF: 142.09620230440603
Iteration: 12, Func. Count: 142, Neg. LLF: 142.092458087728
Iteration: 13, Func. Count: 153, Neg. LLF: 142.0904205605978
Iteration: 14, Func. Count: 164, Neg. LLF: 142.0900639716683
Iteration: 15, Func. Count: 175, Neg. LLF: 142.0900455782624
Iteration: 16, Func. Count: 186, Neg. LLF: 142.09004104568956
Iteration: 17, Func. Count: 196, Neg. LLF: 142.09004104584454
Optimization terminated successfully (Exit mode 0)
Current function value: 142.09004104568956
Iterations: 17
Function evaluations: 196
Gradient evaluations: 17
Iteration: 1, Func. Count: 5, Neg. LLF: 155.88517181686635
Iteration: 2, Func. Count: 10, Neg. LLF: 147.32159275067832
Iteration: 3, Func. Count: 14, Neg. LLF: 146.85909487528755
Iteration: 4, Func. Count: 18, Neg. LLF: 146.71381937980826
Iteration: 5, Func. Count: 22, Neg. LLF: 146.66658052363996
Iteration: 6, Func. Count: 26, Neg. LLF: 146.50950216656955
Iteration: 7, Func. Count: 30, Neg. LLF: 146.49193498459485
Iteration: 8, Func. Count: 34, Neg. LLF: 146.4904958053603
Iteration: 9, Func. Count: 38, Neg. LLF: 146.4904946294256
Iteration: 10, Func. Count: 41, Neg. LLF: 146.49049465860602
Optimization terminated successfully (Exit mode 0)
Current function value: 146.4904946294256
Iterations: 10
Function evaluations: 41
Gradient evaluations: 10
Iteration: 1, Func. Count: 6, Neg. LLF: 19154368.548353955
Iteration: 2, Func. Count: 13, Neg. LLF: 343.9037110861663
Iteration: 3, Func. Count: 19, Neg. LLF: 214.08385284407356
Iteration: 4, Func. Count: 25, Neg. LLF: 157.01828810756277
Iteration: 5, Func. Count: 31, Neg. LLF: 148.9535453452654
Iteration: 6, Func. Count: 37, Neg. LLF: 143.13834716450003
Iteration: 7, Func. Count: 42, Neg. LLF: 147.1319282515183
Iteration: 8, Func. Count: 48, Neg. LLF: 150.7054120346983
Iteration: 9, Func. Count: 56, Neg. LLF: 142.29944042583566
Iteration: 10, Func. Count: 61, Neg. LLF: 142.27384481415208
Iteration: 11, Func. Count: 66, Neg. LLF: 142.26648889690526
Iteration: 12, Func. Count: 71, Neg. LLF: 142.26275622552438
Iteration: 13, Func. Count: 76, Neg. LLF: 142.26232408118156
Iteration: 14, Func. Count: 81, Neg. LLF: 142.2622969356031
Iteration: 15, Func. Count: 85, Neg. LLF: 142.26229693548962
Optimization terminated successfully (Exit mode 0)
Current function value: 142.2622969356031
Iterations: 15
Function evaluations: 85
Gradient evaluations: 15
Iteration: 1, Func. Count: 7, Neg. LLF: 19093710.174477514
Iteration: 2, Func. Count: 14, Neg. LLF: 172.33603971229556
Iteration: 3, Func. Count: 21, Neg. LLF: 144.3959893483633
Iteration: 4, Func. Count: 28, Neg. LLF: 142.27723705104526
Iteration: 5, Func. Count: 34, Neg. LLF: 142.20169034167571
Iteration: 6, Func. Count: 40, Neg. LLF: 142.2062892353176
Iteration: 7, Func. Count: 47, Neg. LLF: 142.15445464837043
Iteration: 8, Func. Count: 53, Neg. LLF: 142.15359488964023
Iteration: 9, Func. Count: 59, Neg. LLF: 142.1534959462156
Iteration: 10, Func. Count: 65, Neg. LLF: 142.1534919187239
Iteration: 11, Func. Count: 70, Neg. LLF: 142.15349191890328
Optimization terminated successfully (Exit mode 0)
Current function value: 142.1534919187239
Iterations: 11
Function evaluations: 70
Gradient evaluations: 11
Iteration: 1, Func. Count: 8, Neg. LLF: 1883.9845454100275
Iteration: 2, Func. Count: 16, Neg. LLF: 178.79530329141622
Iteration: 3, Func. Count: 24, Neg. LLF: 143.9824807540051
Iteration: 4, Func. Count: 31, Neg. LLF: 142.49939840845127
Iteration: 5, Func. Count: 38, Neg. LLF: 142.98478594639698
Iteration: 6, Func. Count: 46, Neg. LLF: 143.08875517624557
Iteration: 7, Func. Count: 54, Neg. LLF: 142.16128059384516
Iteration: 8, Func. Count: 61, Neg. LLF: 142.15355855263329
Iteration: 9, Func. Count: 68, Neg. LLF: 142.1534965956633
Iteration: 10, Func. Count: 75, Neg. LLF: 142.15349301138713
Iteration: 11, Func. Count: 82, Neg. LLF: 142.1534918902084
Iteration: 12, Func. Count: 88, Neg. LLF: 142.15349191717252
Optimization terminated successfully (Exit mode 0)
Current function value: 142.1534918902084
Iterations: 12
Function evaluations: 88
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 193.1083388687248
Iteration: 2, Func. Count: 18, Neg. LLF: 223.43737492355416
Iteration: 3, Func. Count: 27, Neg. LLF: 172.55098110814714
Iteration: 4, Func. Count: 36, Neg. LLF: 157.0694726595421
Iteration: 5, Func. Count: 45, Neg. LLF: 150.46449993505072
Iteration: 6, Func. Count: 54, Neg. LLF: 145.14354380137988
Iteration: 7, Func. Count: 63, Neg. LLF: 142.3792487810793
Iteration: 8, Func. Count: 71, Neg. LLF: 142.9675386180286
Iteration: 9, Func. Count: 80, Neg. LLF: 142.1504997739177
Iteration: 10, Func. Count: 88, Neg. LLF: 142.12881580605293
Iteration: 11, Func. Count: 96, Neg. LLF: 142.12374707325725
Iteration: 12, Func. Count: 104, Neg. LLF: 142.1235651806705
Iteration: 13, Func. Count: 112, Neg. LLF: 142.12356421964367
Optimization terminated successfully (Exit mode 0)
Current function value: 142.12356421964367
Iterations: 13
Function evaluations: 112
Gradient evaluations: 13
Iteration: 1, Func. Count: 6, Neg. LLF: 168.93513283151378
Iteration: 2, Func. Count: 12, Neg. LLF: 145.37387856005623
Iteration: 3, Func. Count: 17, Neg. LLF: 144.13120409827903
Iteration: 4, Func. Count: 22, Neg. LLF: 144.07319055501586
Iteration: 5, Func. Count: 27, Neg. LLF: 144.32920044208188
Iteration: 6, Func. Count: 33, Neg. LLF: 144.42216813923872
Iteration: 7, Func. Count: 39, Neg. LLF: 143.8243111318169
Iteration: 8, Func. Count: 44, Neg. LLF: 143.82418213712344
Iteration: 9, Func. Count: 49, Neg. LLF: 143.82417162141516
Iteration: 10, Func. Count: 53, Neg. LLF: 143.82417161233812
Optimization terminated successfully (Exit mode 0)
Current function value: 143.82417162141516
Iterations: 10
Function evaluations: 53
Gradient evaluations: 10
Iteration: 1, Func. Count: 7, Neg. LLF: 18987110.99192531
Iteration: 2, Func. Count: 15, Neg. LLF: 282.49259087298043
Iteration: 3, Func. Count: 22, Neg. LLF: 189.4203709621955
Iteration: 4, Func. Count: 29, Neg. LLF: 150.23293245831505
Iteration: 5, Func. Count: 36, Neg. LLF: 148.24505756596452
Iteration: 6, Func. Count: 43, Neg. LLF: 142.69470184951285
Iteration: 7, Func. Count: 49, Neg. LLF: 150.50776734782968
Iteration: 8, Func. Count: 57, Neg. LLF: 146.5096653538773
Iteration: 9, Func. Count: 64, Neg. LLF: 142.29733207151943
Iteration: 10, Func. Count: 70, Neg. LLF: 142.27392977352253
Iteration: 11, Func. Count: 76, Neg. LLF: 142.2648983581764
Iteration: 12, Func. Count: 82, Neg. LLF: 142.2623797913129
Iteration: 13, Func. Count: 88, Neg. LLF: 142.26229749060272
Iteration: 14, Func. Count: 94, Neg. LLF: 142.2622969319665
Optimization terminated successfully (Exit mode 0)
Current function value: 142.2622969319665
Iterations: 14
Function evaluations: 94
Gradient evaluations: 14
Iteration: 1, Func. Count: 8, Neg. LLF: 19047568.860553633
Iteration: 2, Func. Count: 16, Neg. LLF: 166.7128621276068
Iteration: 3, Func. Count: 24, Neg. LLF: 144.66478299119944
Iteration: 4, Func. Count: 32, Neg. LLF: 142.3296162992601
Iteration: 5, Func. Count: 39, Neg. LLF: 142.17469294633662
Iteration: 6, Func. Count: 46, Neg. LLF: 142.24842936045738
Iteration: 7, Func. Count: 54, Neg. LLF: 142.15435940374297
Iteration: 8, Func. Count: 61, Neg. LLF: 142.15361244510225
Iteration: 9, Func. Count: 68, Neg. LLF: 142.15349334741572
Iteration: 10, Func. Count: 75, Neg. LLF: 142.15349190965165
Iteration: 11, Func. Count: 81, Neg. LLF: 142.1534919098181
Optimization terminated successfully (Exit mode 0)
Current function value: 142.15349190965165
Iterations: 11
Function evaluations: 81
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 1449.5307475052282
Iteration: 2, Func. Count: 18, Neg. LLF: 181.49555966339125
Iteration: 3, Func. Count: 27, Neg. LLF: 143.96210487557542
Iteration: 4, Func. Count: 35, Neg. LLF: 142.50577156795939
Iteration: 5, Func. Count: 43, Neg. LLF: 142.6436685660856
Iteration: 6, Func. Count: 52, Neg. LLF: 143.58511248262317
Iteration: 7, Func. Count: 61, Neg. LLF: 142.15782824708782
Iteration: 8, Func. Count: 69, Neg. LLF: 142.15360812143803
Iteration: 9, Func. Count: 77, Neg. LLF: 142.15349464924327
Iteration: 10, Func. Count: 85, Neg. LLF: 142.15349190859826
Iteration: 11, Func. Count: 92, Neg. LLF: 142.15349193557356
Optimization terminated successfully (Exit mode 0)
Current function value: 142.15349190859826
Iterations: 11
Function evaluations: 92
Gradient evaluations: 11
Iteration: 1, Func. Count: 10, Neg. LLF: 192.8537066404534
Iteration: 2, Func. Count: 20, Neg. LLF: 237.44909690593113
Iteration: 3, Func. Count: 30, Neg. LLF: 176.07636770620883
Iteration: 4, Func. Count: 40, Neg. LLF: 158.31159933422882
Iteration: 5, Func. Count: 50, Neg. LLF: 151.3258252765497
Iteration: 6, Func. Count: 60, Neg. LLF: 145.33622387133192
Iteration: 7, Func. Count: 70, Neg. LLF: 142.22963823883475
Iteration: 8, Func. Count: 79, Neg. LLF: 143.05687504930376
Iteration: 9, Func. Count: 89, Neg. LLF: 142.13448671883634
Iteration: 10, Func. Count: 98, Neg. LLF: 142.12400805808213
Iteration: 11, Func. Count: 107, Neg. LLF: 142.12357815527102
Iteration: 12, Func. Count: 116, Neg. LLF: 142.1235643420185
Iteration: 13, Func. Count: 124, Neg. LLF: 142.12356434179136
Optimization terminated successfully (Exit mode 0)
Current function value: 142.1235643420185
Iterations: 13
Function evaluations: 124
Gradient evaluations: 13
Iteration: 1, Func. Count: 7, Neg. LLF: 163.94087169164092
Iteration: 2, Func. Count: 14, Neg. LLF: 146.25197875362062
Iteration: 3, Func. Count: 21, Neg. LLF: 144.2413051846134
Iteration: 4, Func. Count: 27, Neg. LLF: 144.27929957538768
Iteration: 5, Func. Count: 34, Neg. LLF: 144.02673548377734
Iteration: 6, Func. Count: 40, Neg. LLF: 143.91846280852272
Iteration: 7, Func. Count: 46, Neg. LLF: 143.84211817800076
Iteration: 8, Func. Count: 52, Neg. LLF: 143.82504860639995
Iteration: 9, Func. Count: 58, Neg. LLF: 143.82419074266264
Iteration: 10, Func. Count: 64, Neg. LLF: 143.82417159272475
Iteration: 11, Func. Count: 69, Neg. LLF: 143.82417165761424
Optimization terminated successfully (Exit mode 0)
Current function value: 143.82417159272475
Iterations: 11
Function evaluations: 69
Gradient evaluations: 11
Iteration: 1, Func. Count: 8, Neg. LLF: 18981837.74764726
Iteration: 2, Func. Count: 17, Neg. LLF: 279.5079015952661
Iteration: 3, Func. Count: 25, Neg. LLF: 188.49691881975974
Iteration: 4, Func. Count: 33, Neg. LLF: 150.08442911462748
Iteration: 5, Func. Count: 41, Neg. LLF: 148.34025531630732
Iteration: 6, Func. Count: 49, Neg. LLF: 142.70263074701688
Iteration: 7, Func. Count: 56, Neg. LLF: 151.05896325625747
Iteration: 8, Func. Count: 65, Neg. LLF: 150.9633651755166
Iteration: 9, Func. Count: 74, Neg. LLF: 142.30629471234005
Iteration: 10, Func. Count: 81, Neg. LLF: 142.27524305585936
Iteration: 11, Func. Count: 88, Neg. LLF: 142.26550041903803
Iteration: 12, Func. Count: 95, Neg. LLF: 142.26238586447417
Iteration: 13, Func. Count: 102, Neg. LLF: 142.2622981430307
Iteration: 14, Func. Count: 109, Neg. LLF: 142.26229697792044
Iteration: 15, Func. Count: 115, Neg. LLF: 142.2622969783175
Optimization terminated successfully (Exit mode 0)
Current function value: 142.26229697792044
Iterations: 15
Function evaluations: 115
Gradient evaluations: 15
Iteration: 1, Func. Count: 9, Neg. LLF: 19037883.572150934
Iteration: 2, Func. Count: 18, Neg. LLF: 156.7713971403989
Iteration: 3, Func. Count: 27, Neg. LLF: 144.67097937734204
Iteration: 4, Func. Count: 36, Neg. LLF: 142.33182528556736
Iteration: 5, Func. Count: 44, Neg. LLF: 142.1873969065412
Iteration: 6, Func. Count: 52, Neg. LLF: 142.29206857973756
Iteration: 7, Func. Count: 61, Neg. LLF: 142.15530758500057
Iteration: 8, Func. Count: 69, Neg. LLF: 142.15362338632843
Iteration: 9, Func. Count: 77, Neg. LLF: 142.1535106732967
Iteration: 10, Func. Count: 85, Neg. LLF: 142.15349238980116
Iteration: 11, Func. Count: 92, Neg. LLF: 142.15349239039884
Optimization terminated successfully (Exit mode 0)
Current function value: 142.15349238980116
Iterations: 11
Function evaluations: 92
Gradient evaluations: 11
Iteration: 1, Func. Count: 10, Neg. LLF: 1444.223992486945
Iteration: 2, Func. Count: 20, Neg. LLF: 179.8588908482895
Iteration: 3, Func. Count: 30, Neg. LLF: 143.9693641514195
Iteration: 4, Func. Count: 39, Neg. LLF: 142.50255090770193
Iteration: 5, Func. Count: 48, Neg. LLF: 142.5763055990995
Iteration: 6, Func. Count: 58, Neg. LLF: 143.66518757385094
Iteration: 7, Func. Count: 68, Neg. LLF: 142.15652832907244
Iteration: 8, Func. Count: 77, Neg. LLF: 142.1535417930629
Iteration: 9, Func. Count: 86, Neg. LLF: 142.15349224346903
Iteration: 10, Func. Count: 94, Neg. LLF: 142.15349227046167
Optimization terminated successfully (Exit mode 0)
Current function value: 142.15349224346903
Iterations: 10
Function evaluations: 94
Gradient evaluations: 10
Iteration: 1, Func. Count: 11, Neg. LLF: 192.88015482860445
Iteration: 2, Func. Count: 22, Neg. LLF: 3291121.7511353795
Iteration: 3, Func. Count: 34, Neg. LLF: 195.21859246389337
Iteration: 4, Func. Count: 45, Neg. LLF: 150.84368832677913
Iteration: 5, Func. Count: 56, Neg. LLF: 157.51632112773132
Iteration: 6, Func. Count: 67, Neg. LLF: 142.74972136378202
Iteration: 7, Func. Count: 77, Neg. LLF: 143.18904202734592
Iteration: 8, Func. Count: 88, Neg. LLF: 142.59687355583014
Iteration: 9, Func. Count: 99, Neg. LLF: 142.10660015760132
Iteration: 10, Func. Count: 109, Neg. LLF: 142.09607669502583
Iteration: 11, Func. Count: 119, Neg. LLF: 142.09158052164335
Iteration: 12, Func. Count: 129, Neg. LLF: 142.09061711896837
Iteration: 13, Func. Count: 139, Neg. LLF: 142.09007575597164
Iteration: 14, Func. Count: 149, Neg. LLF: 142.0900468887259
Iteration: 15, Func. Count: 159, Neg. LLF: 142.09006717169063
Iteration: 16, Func. Count: 169, Neg. LLF: 142.09004117473953
Optimization terminated successfully (Exit mode 0)
Current function value: 142.09004117484216
Iterations: 16
Function evaluations: 169
Gradient evaluations: 16
Iteration: 1, Func. Count: 8, Neg. LLF: 160.4234418127848
Iteration: 2, Func. Count: 16, Neg. LLF: 144.94947846530434
Iteration: 3, Func. Count: 23, Neg. LLF: 144.16448562748153
Iteration: 4, Func. Count: 30, Neg. LLF: 144.39821734210045
Iteration: 5, Func. Count: 39, Neg. LLF: 144.0560322155617
Iteration: 6, Func. Count: 46, Neg. LLF: 143.92908263961087
Iteration: 7, Func. Count: 53, Neg. LLF: 143.84102095263617
Iteration: 8, Func. Count: 60, Neg. LLF: 143.82513398781404
Iteration: 9, Func. Count: 67, Neg. LLF: 143.82425662745985
Iteration: 10, Func. Count: 74, Neg. LLF: 143.82418613095803
Iteration: 11, Func. Count: 81, Neg. LLF: 143.8241716486174
Iteration: 12, Func. Count: 87, Neg. LLF: 143.82417167129836
Optimization terminated successfully (Exit mode 0)
Current function value: 143.8241716486174
Iterations: 12
Function evaluations: 87
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 18978530.55757878
Iteration: 2, Func. Count: 19, Neg. LLF: 12245587.356215201
Iteration: 3, Func. Count: 30, Neg. LLF: 291.04263744035256
Iteration: 4, Func. Count: 39, Neg. LLF: 195.0055078757521
Iteration: 5, Func. Count: 48, Neg. LLF: 154.17112207873254
Iteration: 6, Func. Count: 57, Neg. LLF: 150.66435683742355
Iteration: 7, Func. Count: 66, Neg. LLF: 143.44803596868698
Iteration: 8, Func. Count: 75, Neg. LLF: 142.34103807828225
Iteration: 9, Func. Count: 83, Neg. LLF: 142.28395448996525
Iteration: 10, Func. Count: 91, Neg. LLF: 142.26851842106151
Iteration: 11, Func. Count: 99, Neg. LLF: 142.26686681410033
Iteration: 12, Func. Count: 108, Neg. LLF: 142.26255521636787
Iteration: 13, Func. Count: 116, Neg. LLF: 142.26229720990347
Iteration: 14, Func. Count: 123, Neg. LLF: 142.2622972093755
Optimization terminated successfully (Exit mode 0)
Current function value: 142.26229720990347
Iterations: 14
Function evaluations: 123
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 19034087.99854622
Iteration: 2, Func. Count: 20, Neg. LLF: 155.95569041742326
Iteration: 3, Func. Count: 30, Neg. LLF: 144.63792971872473
Iteration: 4, Func. Count: 40, Neg. LLF: 142.3251750782828
Iteration: 5, Func. Count: 49, Neg. LLF: 142.18418009520727
Iteration: 6, Func. Count: 58, Neg. LLF: 142.27416234790186
Iteration: 7, Func. Count: 68, Neg. LLF: 142.15475826381444
Iteration: 8, Func. Count: 77, Neg. LLF: 142.153635604566
Iteration: 9, Func. Count: 86, Neg. LLF: 142.1535011616131
Iteration: 10, Func. Count: 95, Neg. LLF: 142.15349216613785
Iteration: 11, Func. Count: 103, Neg. LLF: 142.15349216658078
Optimization terminated successfully (Exit mode 0)
Current function value: 142.15349216613785
Iterations: 11
Function evaluations: 103
Gradient evaluations: 11
Iteration: 1, Func. Count: 11, Neg. LLF: 1465.6904256861355
Iteration: 2, Func. Count: 22, Neg. LLF: 177.41115489906454
Iteration: 3, Func. Count: 33, Neg. LLF: 143.9600673309096
Iteration: 4, Func. Count: 43, Neg. LLF: 142.53500650581745
Iteration: 5, Func. Count: 53, Neg. LLF: 142.42672371161004
Iteration: 6, Func. Count: 63, Neg. LLF: 151.77455302178774
Iteration: 7, Func. Count: 75, Neg. LLF: 142.577903534457
Iteration: 8, Func. Count: 86, Neg. LLF: 142.15564670057148
Iteration: 9, Func. Count: 96, Neg. LLF: 142.1539179164455
Iteration: 10, Func. Count: 106, Neg. LLF: 142.1535958168164
Iteration: 11, Func. Count: 116, Neg. LLF: 142.15349195917247
Iteration: 12, Func. Count: 125, Neg. LLF: 142.15349198590087
Optimization terminated successfully (Exit mode 0)
Current function value: 142.15349195917247
Iterations: 12
Function evaluations: 125
Gradient evaluations: 12
Iteration: 1, Func. Count: 12, Neg. LLF: 191.63586960458585
Iteration: 2, Func. Count: 24, Neg. LLF: 9170110.113728374
Iteration: 3, Func. Count: 37, Neg. LLF: 218.5220053311068
Iteration: 4, Func. Count: 49, Neg. LLF: 185.93104657881435
Iteration: 5, Func. Count: 61, Neg. LLF: 163.91301931972717
Iteration: 6, Func. Count: 73, Neg. LLF: 153.37292999813934
Iteration: 7, Func. Count: 85, Neg. LLF: 142.93286770938062
Iteration: 8, Func. Count: 96, Neg. LLF: 144.06481132112881
Iteration: 9, Func. Count: 108, Neg. LLF: 143.47909900045772
Iteration: 10, Func. Count: 122, Neg. LLF: 142.15935282793743
Iteration: 11, Func. Count: 133, Neg. LLF: 142.13992739152343
Iteration: 12, Func. Count: 144, Neg. LLF: 142.100129501261
Iteration: 13, Func. Count: 155, Neg. LLF: 142.09227245379597
Iteration: 14, Func. Count: 166, Neg. LLF: 142.09019291432782
Iteration: 15, Func. Count: 177, Neg. LLF: 142.09011354224478
Iteration: 16, Func. Count: 188, Neg. LLF: 142.0900726400935
Iteration: 17, Func. Count: 199, Neg. LLF: 142.09004602700477
Iteration: 18, Func. Count: 210, Neg. LLF: 142.09004259896963
Iteration: 19, Func. Count: 221, Neg. LLF: 142.09004103535722
Iteration: 20, Func. Count: 231, Neg. LLF: 142.09004103532362
Optimization terminated successfully (Exit mode 0)
Current function value: 142.09004103535722
Iterations: 20
Function evaluations: 231
Gradient evaluations: 20
Iteration: 1, Func. Count: 9, Neg. LLF: 161.56301392341646
Iteration: 2, Func. Count: 18, Neg. LLF: 155.7899055372665
Iteration: 3, Func. Count: 27, Neg. LLF: 148.22601432366176
Iteration: 4, Func. Count: 38, Neg. LLF: 145.6090880998638
Iteration: 5, Func. Count: 46, Neg. LLF: 147.0195488044466
Iteration: 6, Func. Count: 56, Neg. LLF: 146.37506962143672
Iteration: 7, Func. Count: 68, Neg. LLF: 146.77274031432293
Iteration: 8, Func. Count: 77, Neg. LLF: 145.41741270729443
Iteration: 9, Func. Count: 85, Neg. LLF: 145.40142402888867
Iteration: 10, Func. Count: 93, Neg. LLF: 145.38924011839458
Iteration: 11, Func. Count: 101, Neg. LLF: 145.38400995183548
Iteration: 12, Func. Count: 109, Neg. LLF: 145.38318041831369
Iteration: 13, Func. Count: 117, Neg. LLF: 145.38309049626585
Iteration: 14, Func. Count: 125, Neg. LLF: 145.38308108769613
Iteration: 15, Func. Count: 133, Neg. LLF: 145.3830801241387
Optimization terminated successfully (Exit mode 0)
Current function value: 145.3830801241387
Iterations: 15
Function evaluations: 133
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 19074452.437019147
Iteration: 2, Func. Count: 21, Neg. LLF: 359.9491582570437
Iteration: 3, Func. Count: 31, Neg. LLF: 218.27592522655434
Iteration: 4, Func. Count: 41, Neg. LLF: 158.09137818451546
Iteration: 5, Func. Count: 51, Neg. LLF: 150.15845503315418
Iteration: 6, Func. Count: 61, Neg. LLF: 143.28145539863652
Iteration: 7, Func. Count: 70, Neg. LLF: 148.09411653479236
Iteration: 8, Func. Count: 80, Neg. LLF: 150.8982921842005
Iteration: 9, Func. Count: 92, Neg. LLF: 142.2978021026378
Iteration: 10, Func. Count: 101, Neg. LLF: 142.2677782312202
Iteration: 11, Func. Count: 110, Neg. LLF: 142.2649493249947
Iteration: 12, Func. Count: 119, Neg. LLF: 142.26233891913276
Iteration: 13, Func. Count: 128, Neg. LLF: 142.26229833456284
Iteration: 14, Func. Count: 137, Neg. LLF: 142.26229694401857
Iteration: 15, Func. Count: 145, Neg. LLF: 142.26229694406427
Optimization terminated successfully (Exit mode 0)
Current function value: 142.26229694401857
Iterations: 15
Function evaluations: 145
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 19028045.33141272
Iteration: 2, Func. Count: 22, Neg. LLF: 153.57728942343707
Iteration: 3, Func. Count: 33, Neg. LLF: 144.6547209364953
Iteration: 4, Func. Count: 44, Neg. LLF: 142.32440317693943
Iteration: 5, Func. Count: 54, Neg. LLF: 142.19419352345264
Iteration: 6, Func. Count: 64, Neg. LLF: 142.28964254636324
Iteration: 7, Func. Count: 75, Neg. LLF: 142.15527868964222
Iteration: 8, Func. Count: 85, Neg. LLF: 142.15363123988993
Iteration: 9, Func. Count: 95, Neg. LLF: 142.1535126824331
Iteration: 10, Func. Count: 105, Neg. LLF: 142.153492667895
Iteration: 11, Func. Count: 115, Neg. LLF: 142.15349200829374
Optimization terminated successfully (Exit mode 0)
Current function value: 142.15349200829374
Iterations: 11
Function evaluations: 115
Gradient evaluations: 11
Iteration: 1, Func. Count: 12, Neg. LLF: 1469.6341380392537
Iteration: 2, Func. Count: 24, Neg. LLF: 178.42781636905642
Iteration: 3, Func. Count: 36, Neg. LLF: 143.95022509765164
Iteration: 4, Func. Count: 47, Neg. LLF: 142.48373377801343
Iteration: 5, Func. Count: 58, Neg. LLF: 146.0406335886917
Iteration: 6, Func. Count: 70, Neg. LLF: 143.41777722616348
Iteration: 7, Func. Count: 82, Neg. LLF: 142.19806720185167
Iteration: 8, Func. Count: 93, Neg. LLF: 142.1690310890566
Iteration: 9, Func. Count: 104, Neg. LLF: 142.1677747244912
Iteration: 10, Func. Count: 116, Neg. LLF: 142.15351734118138
Iteration: 11, Func. Count: 127, Neg. LLF: 142.15349237318225
Iteration: 12, Func. Count: 137, Neg. LLF: 142.1534924005411
Optimization terminated successfully (Exit mode 0)
Current function value: 142.15349237318225
Iterations: 12
Function evaluations: 137
Gradient evaluations: 12
Iteration: 1, Func. Count: 13, Neg. LLF: 191.39306595507267
Iteration: 2, Func. Count: 26, Neg. LLF: 9348911.491874654
Iteration: 3, Func. Count: 40, Neg. LLF: 199.79544929830024
Iteration: 4, Func. Count: 53, Neg. LLF: 168.02167654680525
Iteration: 5, Func. Count: 66, Neg. LLF: 162.4673624080823
Iteration: 6, Func. Count: 79, Neg. LLF: 152.73785537892095
Iteration: 7, Func. Count: 92, Neg. LLF: 146.78606621964985
Iteration: 8, Func. Count: 105, Neg. LLF: 142.23086722293726
Iteration: 9, Func. Count: 117, Neg. LLF: 145.32688451242117
Iteration: 10, Func. Count: 130, Neg. LLF: 142.192016361023
Iteration: 11, Func. Count: 143, Neg. LLF: 142.10154652067038
Iteration: 12, Func. Count: 155, Neg. LLF: 142.09085367847754
Iteration: 13, Func. Count: 167, Neg. LLF: 142.09005580063362
Iteration: 14, Func. Count: 179, Neg. LLF: 142.09004258941997
Iteration: 15, Func. Count: 191, Neg. LLF: 142.09004111704212
Iteration: 16, Func. Count: 202, Neg. LLF: 142.0900411169704
Optimization terminated successfully (Exit mode 0)
Current function value: 142.09004111704212
Iterations: 16
Function evaluations: 202
Gradient evaluations: 16
Iteration: 1, Func. Count: 6, Neg. LLF: 147.05242788966433
Iteration: 2, Func. Count: 11, Neg. LLF: 147.8231007708019
Iteration: 3, Func. Count: 17, Neg. LLF: 146.8773202261974
Iteration: 4, Func. Count: 22, Neg. LLF: 146.5395204058006
Iteration: 5, Func. Count: 27, Neg. LLF: 146.51601993676277
Iteration: 6, Func. Count: 32, Neg. LLF: 146.49125439113658
Iteration: 7, Func. Count: 37, Neg. LLF: 146.4905046951624
Iteration: 8, Func. Count: 42, Neg. LLF: 146.4904945126634
Iteration: 9, Func. Count: 46, Neg. LLF: 146.49049461038322
Optimization terminated successfully (Exit mode 0)
Current function value: 146.4904945126634
Iterations: 9
Function evaluations: 46
Gradient evaluations: 9
Iteration: 1, Func. Count: 7, Neg. LLF: 19049966.648819555
Iteration: 2, Func. Count: 15, Neg. LLF: 310.3589344801503
Iteration: 3, Func. Count: 22, Neg. LLF: 206.7824309545374
Iteration: 4, Func. Count: 29, Neg. LLF: 155.0250810080124
Iteration: 5, Func. Count: 36, Neg. LLF: 149.28247155681657
Iteration: 6, Func. Count: 43, Neg. LLF: 142.982154294413
Iteration: 7, Func. Count: 49, Neg. LLF: 146.72982235343667
Iteration: 8, Func. Count: 56, Neg. LLF: 150.59877937391707
Iteration: 9, Func. Count: 65, Neg. LLF: 142.28075448552744
Iteration: 10, Func. Count: 71, Neg. LLF: 142.27018197451864
Iteration: 11, Func. Count: 77, Neg. LLF: 142.26383620287632
Iteration: 12, Func. Count: 83, Neg. LLF: 142.26251343894833
Iteration: 13, Func. Count: 89, Neg. LLF: 142.2622976128625
Iteration: 14, Func. Count: 95, Neg. LLF: 142.26229692351268
Optimization terminated successfully (Exit mode 0)
Current function value: 142.26229692351268
Iterations: 14
Function evaluations: 95
Gradient evaluations: 14
Iteration: 1, Func. Count: 8, Neg. LLF: 19015498.61733034
Iteration: 2, Func. Count: 16, Neg. LLF: 149.218315878975
Iteration: 3, Func. Count: 24, Neg. LLF: 144.68440055310973
Iteration: 4, Func. Count: 32, Neg. LLF: 142.26787774263207
Iteration: 5, Func. Count: 39, Neg. LLF: 142.34461382422054
Iteration: 6, Func. Count: 47, Neg. LLF: 142.1590242705828
Iteration: 7, Func. Count: 54, Neg. LLF: 142.15359360239685
Iteration: 8, Func. Count: 61, Neg. LLF: 142.15350097514644
Iteration: 9, Func. Count: 68, Neg. LLF: 142.15349314139252
Iteration: 10, Func. Count: 75, Neg. LLF: 142.15349189232967
Iteration: 11, Func. Count: 81, Neg. LLF: 142.15349189232697
Optimization terminated successfully (Exit mode 0)
Current function value: 142.15349189232967
Iterations: 11
Function evaluations: 81
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 1861.6741930072835
Iteration: 2, Func. Count: 18, Neg. LLF: 145.48488804648167
Iteration: 3, Func. Count: 27, Neg. LLF: 144.81865929846097
Iteration: 4, Func. Count: 36, Neg. LLF: 142.4702722013013
Iteration: 5, Func. Count: 44, Neg. LLF: 142.39597174482518
Iteration: 6, Func. Count: 52, Neg. LLF: 142.1904174227434
Iteration: 7, Func. Count: 60, Neg. LLF: 142.34223880287198
Iteration: 8, Func. Count: 69, Neg. LLF: 142.15457588870154
Iteration: 9, Func. Count: 77, Neg. LLF: 142.15350348086417
Iteration: 10, Func. Count: 85, Neg. LLF: 142.15349269752227
Iteration: 11, Func. Count: 93, Neg. LLF: 142.1534918900349
Optimization terminated successfully (Exit mode 0)
Current function value: 142.1534918900349
Iterations: 11
Function evaluations: 93
Gradient evaluations: 11
Iteration: 1, Func. Count: 10, Neg. LLF: 190.69014546892177
Iteration: 2, Func. Count: 20, Neg. LLF: 339.7482092229546
Iteration: 3, Func. Count: 30, Neg. LLF: 143.48056881575235
Iteration: 4, Func. Count: 39, Neg. LLF: 148.55260954744512
Iteration: 5, Func. Count: 50, Neg. LLF: 154.96010410078685
Iteration: 6, Func. Count: 62, Neg. LLF: 142.19667388031382
Iteration: 7, Func. Count: 71, Neg. LLF: 143.69897333221132
Iteration: 8, Func. Count: 81, Neg. LLF: 142.00312049160632
Iteration: 9, Func. Count: 90, Neg. LLF: 141.97952136377813
Iteration: 10, Func. Count: 99, Neg. LLF: 141.96748097005624
Iteration: 11, Func. Count: 108, Neg. LLF: 141.96676358680605
Iteration: 12, Func. Count: 117, Neg. LLF: 141.9663451125182
Iteration: 13, Func. Count: 126, Neg. LLF: 141.96622313695397
Iteration: 14, Func. Count: 135, Neg. LLF: 141.96621773182966
Iteration: 15, Func. Count: 143, Neg. LLF: 141.96621773175693
Optimization terminated successfully (Exit mode 0)
Current function value: 141.96621773182966
Iterations: 15
Function evaluations: 143
Gradient evaluations: 15
Iteration: 1, Func. Count: 7, Neg. LLF: 155.9378663075879
Iteration: 2, Func. Count: 14, Neg. LLF: 147.9129322872475
Iteration: 3, Func. Count: 21, Neg. LLF: 144.5564935107075
Iteration: 4, Func. Count: 27, Neg. LLF: 144.05055437395433
Iteration: 5, Func. Count: 33, Neg. LLF: 144.0483719891662
Iteration: 6, Func. Count: 40, Neg. LLF: 143.9329288989166
Iteration: 7, Func. Count: 46, Neg. LLF: 143.84299125157693
Iteration: 8, Func. Count: 52, Neg. LLF: 143.82731257459423
Iteration: 9, Func. Count: 58, Neg. LLF: 143.82439962240647
Iteration: 10, Func. Count: 64, Neg. LLF: 143.82418236737286
Iteration: 11, Func. Count: 70, Neg. LLF: 143.8241715964972
Iteration: 12, Func. Count: 75, Neg. LLF: 143.82417158742052
Optimization terminated successfully (Exit mode 0)
Current function value: 143.8241715964972
Iterations: 12
Function evaluations: 75
Gradient evaluations: 12
Iteration: 1, Func. Count: 8, Neg. LLF: 19018480.100447077
Iteration: 2, Func. Count: 17, Neg. LLF: 330.12819185480134
Iteration: 3, Func. Count: 25, Neg. LLF: 211.8593607781852
Iteration: 4, Func. Count: 33, Neg. LLF: 156.37197811106265
Iteration: 5, Func. Count: 41, Neg. LLF: 150.71367569562892
Iteration: 6, Func. Count: 49, Neg. LLF: 143.18018896004133
Iteration: 7, Func. Count: 56, Neg. LLF: 147.93605813387046
Iteration: 8, Func. Count: 64, Neg. LLF: 151.36520895218766
Iteration: 9, Func. Count: 74, Neg. LLF: 142.28863678355629
Iteration: 10, Func. Count: 81, Neg. LLF: 142.2686900490201
Iteration: 11, Func. Count: 88, Neg. LLF: 142.2650485355361
Iteration: 12, Func. Count: 95, Neg. LLF: 142.26248991678108
Iteration: 13, Func. Count: 102, Neg. LLF: 142.26230899561327
Iteration: 14, Func. Count: 109, Neg. LLF: 142.26229693386765
Iteration: 15, Func. Count: 115, Neg. LLF: 142.26229693387754
Optimization terminated successfully (Exit mode 0)
Current function value: 142.26229693386765
Iterations: 15
Function evaluations: 115
Gradient evaluations: 15
Iteration: 1, Func. Count: 9, Neg. LLF: 18990423.274864182
Iteration: 2, Func. Count: 18, Neg. LLF: 144.35250878255093
Iteration: 3, Func. Count: 27, Neg. LLF: 144.60012700416905
Iteration: 4, Func. Count: 36, Neg. LLF: 142.3323229747971
Iteration: 5, Func. Count: 44, Neg. LLF: 142.35516306522806
Iteration: 6, Func. Count: 53, Neg. LLF: 142.1580074060819
Iteration: 7, Func. Count: 61, Neg. LLF: 142.15414260450532
Iteration: 8, Func. Count: 69, Neg. LLF: 142.1535049831544
Iteration: 9, Func. Count: 77, Neg. LLF: 142.15349209160266
Iteration: 10, Func. Count: 84, Neg. LLF: 142.15349209180914
Optimization terminated successfully (Exit mode 0)
Current function value: 142.15349209160266
Iterations: 10
Function evaluations: 84
Gradient evaluations: 10
Iteration: 1, Func. Count: 10, Neg. LLF: 1438.119247312696
Iteration: 2, Func. Count: 20, Neg. LLF: 144.16392420855084
Iteration: 3, Func. Count: 29, Neg. LLF: 146.10765400785942
Iteration: 4, Func. Count: 40, Neg. LLF: 144.40644316341928
Iteration: 5, Func. Count: 50, Neg. LLF: 145.21655783457658
Iteration: 6, Func. Count: 60, Neg. LLF: 142.2928645763522
Iteration: 7, Func. Count: 69, Neg. LLF: 142.16762858968517
Iteration: 8, Func. Count: 78, Neg. LLF: 142.15498241506972
Iteration: 9, Func. Count: 87, Neg. LLF: 142.15358997661957
Iteration: 10, Func. Count: 96, Neg. LLF: 142.15349546766188
Iteration: 11, Func. Count: 105, Neg. LLF: 142.15349218024951
Iteration: 12, Func. Count: 113, Neg. LLF: 142.1534922074992
Optimization terminated successfully (Exit mode 0)
Current function value: 142.15349218024951
Iterations: 12
Function evaluations: 113
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 192.84148295289074
Iteration: 2, Func. Count: 22, Neg. LLF: 232.10942879585636
Iteration: 3, Func. Count: 33, Neg. LLF: 181.17052327672604
Iteration: 4, Func. Count: 45, Neg. LLF: 158.235574608805
Iteration: 5, Func. Count: 56, Neg. LLF: 156.73581842231007
Iteration: 6, Func. Count: 67, Neg. LLF: 149.20402779411617
Iteration: 7, Func. Count: 78, Neg. LLF: 142.22547932710037
Iteration: 8, Func. Count: 88, Neg. LLF: 144.3337277800145
Iteration: 9, Func. Count: 99, Neg. LLF: 142.29343489434095
Iteration: 10, Func. Count: 110, Neg. LLF: 141.9671648383442
Iteration: 11, Func. Count: 120, Neg. LLF: 141.96631081951023
Iteration: 12, Func. Count: 130, Neg. LLF: 141.96622010815193
Iteration: 13, Func. Count: 140, Neg. LLF: 141.9662176631344
Iteration: 14, Func. Count: 149, Neg. LLF: 141.96621766311742
Optimization terminated successfully (Exit mode 0)
Current function value: 141.9662176631344
Iterations: 14
Function evaluations: 149
Gradient evaluations: 14
Iteration: 1, Func. Count: 8, Neg. LLF: 149.20546895132577
Iteration: 2, Func. Count: 15, Neg. LLF: 150.01742398419708
Iteration: 3, Func. Count: 23, Neg. LLF: 144.43759951317313
Iteration: 4, Func. Count: 30, Neg. LLF: 144.01450244204293
Iteration: 5, Func. Count: 37, Neg. LLF: 143.8342036724509
Iteration: 6, Func. Count: 44, Neg. LLF: 143.82489182471804
Iteration: 7, Func. Count: 51, Neg. LLF: 143.8242841940983
Iteration: 8, Func. Count: 58, Neg. LLF: 143.8242264620376
Iteration: 9, Func. Count: 65, Neg. LLF: 143.82417164498239
Iteration: 10, Func. Count: 71, Neg. LLF: 143.82417158009542
Optimization terminated successfully (Exit mode 0)
Current function value: 143.82417164498239
Iterations: 10
Function evaluations: 71
Gradient evaluations: 10
Iteration: 1, Func. Count: 9, Neg. LLF: 19009353.308755916
Iteration: 2, Func. Count: 19, Neg. LLF: 326.16715346402054
Iteration: 3, Func. Count: 28, Neg. LLF: 210.7622608345552
Iteration: 4, Func. Count: 37, Neg. LLF: 156.12276021775665
Iteration: 5, Func. Count: 46, Neg. LLF: 150.8956909737789
Iteration: 6, Func. Count: 55, Neg. LLF: 143.16768986319937
Iteration: 7, Func. Count: 63, Neg. LLF: 147.90920225759277
Iteration: 8, Func. Count: 72, Neg. LLF: 151.36222743253649
Iteration: 9, Func. Count: 83, Neg. LLF: 142.28849244041743
Iteration: 10, Func. Count: 91, Neg. LLF: 142.26857056938934
Iteration: 11, Func. Count: 99, Neg. LLF: 142.26500421090435
Iteration: 12, Func. Count: 107, Neg. LLF: 142.26248244824296
Iteration: 13, Func. Count: 115, Neg. LLF: 142.26230844414522
Iteration: 14, Func. Count: 123, Neg. LLF: 142.26229693078872
Iteration: 15, Func. Count: 130, Neg. LLF: 142.2622969307937
Optimization terminated successfully (Exit mode 0)
Current function value: 142.26229693078872
Iterations: 15
Function evaluations: 130
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 18984852.634331647
Iteration: 2, Func. Count: 20, Neg. LLF: 143.8996394242993
Iteration: 3, Func. Count: 29, Neg. LLF: 145.5660354530417
Iteration: 4, Func. Count: 40, Neg. LLF: 143.76019373522078
Iteration: 5, Func. Count: 50, Neg. LLF: 142.1659213400225
Iteration: 6, Func. Count: 59, Neg. LLF: 142.21331601857597
Iteration: 7, Func. Count: 69, Neg. LLF: 142.23393856349276
Iteration: 8, Func. Count: 79, Neg. LLF: 142.15360644708275
Iteration: 9, Func. Count: 88, Neg. LLF: 142.15347770343203
Iteration: 10, Func. Count: 97, Neg. LLF: 142.15423257578814
Iteration: 11, Func. Count: 107, Neg. LLF: 142.15341208626475
Iteration: 12, Func. Count: 115, Neg. LLF: 142.15341208642838
Optimization terminated successfully (Exit mode 0)
Current function value: 142.15341208626475
Iterations: 12
Function evaluations: 115
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 1430.4724295670605
Iteration: 2, Func. Count: 22, Neg. LLF: 143.93258644111114
Iteration: 3, Func. Count: 32, Neg. LLF: 145.44776833133787
Iteration: 4, Func. Count: 44, Neg. LLF: 143.42729950709133
Iteration: 5, Func. Count: 55, Neg. LLF: 142.6499541686283
Iteration: 6, Func. Count: 66, Neg. LLF: 142.16255727118173
Iteration: 7, Func. Count: 76, Neg. LLF: 142.15691120821677
Iteration: 8, Func. Count: 86, Neg. LLF: 142.1550931755161
Iteration: 9, Func. Count: 96, Neg. LLF: 142.15350301153165
Iteration: 10, Func. Count: 106, Neg. LLF: 142.15444352153702
Iteration: 11, Func. Count: 117, Neg. LLF: 142.15341245439254
Iteration: 12, Func. Count: 126, Neg. LLF: 142.1534124827297
Optimization terminated successfully (Exit mode 0)
Current function value: 142.15341245439254
Iterations: 12
Function evaluations: 126
Gradient evaluations: 12
Iteration: 1, Func. Count: 12, Neg. LLF: 192.8451861960651
Iteration: 2, Func. Count: 24, Neg. LLF: 4093529.0837805727
Iteration: 3, Func. Count: 37, Neg. LLF: 200.15652396367685
Iteration: 4, Func. Count: 49, Neg. LLF: 166.1289810492201
Iteration: 5, Func. Count: 61, Neg. LLF: 162.23844600532323
Iteration: 6, Func. Count: 73, Neg. LLF: 154.74086586824097
Iteration: 7, Func. Count: 85, Neg. LLF: 142.5088330357081
Iteration: 8, Func. Count: 96, Neg. LLF: 142.75938988168565
Iteration: 9, Func. Count: 108, Neg. LLF: 156.0244799144186
Iteration: 10, Func. Count: 122, Neg. LLF: 142.58151734891345
Iteration: 11, Func. Count: 134, Neg. LLF: 142.06000607581512
Iteration: 12, Func. Count: 146, Neg. LLF: 141.8859193294415
Iteration: 13, Func. Count: 158, Neg. LLF: 141.84667521019057
Iteration: 14, Func. Count: 169, Neg. LLF: 141.84485789851524
Iteration: 15, Func. Count: 180, Neg. LLF: 141.8444746080706
Iteration: 16, Func. Count: 191, Neg. LLF: 141.84440954075845
Iteration: 17, Func. Count: 202, Neg. LLF: 141.8443932107341
Iteration: 18, Func. Count: 213, Neg. LLF: 141.84438778410154
Iteration: 19, Func. Count: 224, Neg. LLF: 141.8443844899806
Iteration: 20, Func. Count: 234, Neg. LLF: 141.84438448991648
Optimization terminated successfully (Exit mode 0)
Current function value: 141.8443844899806
Iterations: 20
Function evaluations: 234
Gradient evaluations: 20
Iteration: 1, Func. Count: 9, Neg. LLF: 154.77883769993244
Iteration: 2, Func. Count: 19, Neg. LLF: 145.32123864948883
Iteration: 3, Func. Count: 27, Neg. LLF: 146.78699640725546
Iteration: 4, Func. Count: 36, Neg. LLF: 144.6204409085746
Iteration: 5, Func. Count: 44, Neg. LLF: 143.90964403500823
Iteration: 6, Func. Count: 52, Neg. LLF: 143.85726782038418
Iteration: 7, Func. Count: 60, Neg. LLF: 143.8355904958316
Iteration: 8, Func. Count: 68, Neg. LLF: 143.8269233012159
Iteration: 9, Func. Count: 76, Neg. LLF: 143.82444328892782
Iteration: 10, Func. Count: 84, Neg. LLF: 143.82417719481327
Iteration: 11, Func. Count: 92, Neg. LLF: 143.8241716694087
Iteration: 12, Func. Count: 99, Neg. LLF: 143.82417169206977
Optimization terminated successfully (Exit mode 0)
Current function value: 143.8241716694087
Iterations: 12
Function evaluations: 99
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 19004950.869399603
Iteration: 2, Func. Count: 21, Neg. LLF: 325.8495264691512
Iteration: 3, Func. Count: 31, Neg. LLF: 210.390200442827
Iteration: 4, Func. Count: 41, Neg. LLF: 155.98713802651625
Iteration: 5, Func. Count: 51, Neg. LLF: 150.93448675088794
Iteration: 6, Func. Count: 61, Neg. LLF: 143.14170154387503
Iteration: 7, Func. Count: 70, Neg. LLF: 147.73896593057984
Iteration: 8, Func. Count: 80, Neg. LLF: 150.3147591606057
Iteration: 9, Func. Count: 92, Neg. LLF: 142.29088167404586
Iteration: 10, Func. Count: 101, Neg. LLF: 142.26756027602053
Iteration: 11, Func. Count: 110, Neg. LLF: 142.26475534044303
Iteration: 12, Func. Count: 119, Neg. LLF: 142.26233294913368
Iteration: 13, Func. Count: 128, Neg. LLF: 142.26229776432024
Iteration: 14, Func. Count: 137, Neg. LLF: 142.26229692563965
Optimization terminated successfully (Exit mode 0)
Current function value: 142.26229692563965
Iterations: 14
Function evaluations: 137
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 18983312.056836404
Iteration: 2, Func. Count: 22, Neg. LLF: 143.86236129647315
Iteration: 3, Func. Count: 32, Neg. LLF: 145.42643602572198
Iteration: 4, Func. Count: 44, Neg. LLF: 143.775914761309
Iteration: 5, Func. Count: 55, Neg. LLF: 142.1654592886189
Iteration: 6, Func. Count: 65, Neg. LLF: 142.16753575831734
Iteration: 7, Func. Count: 76, Neg. LLF: 142.795722270331
Iteration: 8, Func. Count: 88, Neg. LLF: 142.1541948803387
Iteration: 9, Func. Count: 98, Neg. LLF: 142.15341295260092
Iteration: 10, Func. Count: 108, Neg. LLF: 142.15341205167357
Optimization terminated successfully (Exit mode 0)
Current function value: 142.15341205167357
Iterations: 10
Function evaluations: 108
Gradient evaluations: 10
Iteration: 1, Func. Count: 12, Neg. LLF: 190.13051281145425
Iteration: 2, Func. Count: 24, Neg. LLF: 9482189.222633168
Iteration: 3, Func. Count: 37, Neg. LLF: 170.74083922397014
Iteration: 4, Func. Count: 49, Neg. LLF: 150.59736219899497
Iteration: 5, Func. Count: 61, Neg. LLF: 153.06841924598518
Iteration: 6, Func. Count: 73, Neg. LLF: 145.83232515379171
Iteration: 7, Func. Count: 85, Neg. LLF: 142.90847079565657
Iteration: 8, Func. Count: 96, Neg. LLF: 150.43155144310535
Iteration: 9, Func. Count: 108, Neg. LLF: 151.51503001437538
Iteration: 10, Func. Count: 121, Neg. LLF: 142.60329595034605
Iteration: 11, Func. Count: 133, Neg. LLF: 142.52323814943338
Iteration: 12, Func. Count: 144, Neg. LLF: 142.50963831720165
Iteration: 13, Func. Count: 155, Neg. LLF: 142.4924235896949
Iteration: 14, Func. Count: 166, Neg. LLF: 142.48027497031066
Iteration: 15, Func. Count: 177, Neg. LLF: 142.45352414099725
Iteration: 16, Func. Count: 188, Neg. LLF: 142.42459142758102
Iteration: 17, Func. Count: 199, Neg. LLF: 142.39386776757314
Iteration: 18, Func. Count: 210, Neg. LLF: 142.35128860187677
Iteration: 19, Func. Count: 221, Neg. LLF: 142.29963541671646
Iteration: 20, Func. Count: 232, Neg. LLF: 142.3030160795022
Iteration: 21, Func. Count: 244, Neg. LLF: 2139.192861794445
Iteration: 22, Func. Count: 259, Neg. LLF: 142.28789264944598
Iteration: 23, Func. Count: 270, Neg. LLF: 142.26866060844281
Iteration: 24, Func. Count: 281, Neg. LLF: 142.26350169693708
Iteration: 25, Func. Count: 292, Neg. LLF: 142.26344965253568
Iteration: 26, Func. Count: 304, Neg. LLF: 142.26231136433637
Iteration: 27, Func. Count: 315, Neg. LLF: 142.26229691275228
Iteration: 28, Func. Count: 325, Neg. LLF: 142.2622969220347
Optimization terminated successfully (Exit mode 0)
Current function value: 142.26229691275228
Iterations: 29
Function evaluations: 325
Gradient evaluations: 28
Iteration: 1, Func. Count: 13, Neg. LLF: 191.5881194761737
Iteration: 2, Func. Count: 26, Neg. LLF: 9001090.05358869
Iteration: 3, Func. Count: 40, Neg. LLF: 215.78420960821612
Iteration: 4, Func. Count: 53, Neg. LLF: 185.85903426036134
Iteration: 5, Func. Count: 66, Neg. LLF: 162.4210857818688
Iteration: 6, Func. Count: 79, Neg. LLF: 152.50445173224466
Iteration: 7, Func. Count: 92, Neg. LLF: 143.144974713026
Iteration: 8, Func. Count: 104, Neg. LLF: 142.61064199464795
Iteration: 9, Func. Count: 116, Neg. LLF: 154.2275091779282
Iteration: 10, Func. Count: 132, Neg. LLF: 143.78482830846855
Iteration: 11, Func. Count: 145, Neg. LLF: 142.87956142404886
Iteration: 12, Func. Count: 158, Neg. LLF: 142.06508780873648
Iteration: 13, Func. Count: 171, Neg. LLF: 142.04118001667436
Iteration: 14, Func. Count: 184, Neg. LLF: 141.86984987408562
Iteration: 15, Func. Count: 196, Neg. LLF: 141.8533423594717
Iteration: 16, Func. Count: 208, Neg. LLF: 141.85098085974627
Iteration: 17, Func. Count: 220, Neg. LLF: 141.85066746105136
Iteration: 18, Func. Count: 232, Neg. LLF: 141.85058721410422
Iteration: 19, Func. Count: 244, Neg. LLF: 141.8505646922632
Iteration: 20, Func. Count: 256, Neg. LLF: 141.85056381098823
Optimization terminated successfully (Exit mode 0)
Current function value: 141.85056381098823
Iterations: 20
Function evaluations: 256
Gradient evaluations: 20
Iteration: 1, Func. Count: 10, Neg. LLF: 150.18030379919065
Iteration: 2, Func. Count: 20, Neg. LLF: 151.43847135813607
Iteration: 3, Func. Count: 31, Neg. LLF: 149.5969528274562
Iteration: 4, Func. Count: 41, Neg. LLF: 146.75143829160282
Iteration: 5, Func. Count: 52, Neg. LLF: 145.9790734201589
Iteration: 6, Func. Count: 62, Neg. LLF: 145.45726610816362
Iteration: 7, Func. Count: 71, Neg. LLF: 145.55635938006347
Iteration: 8, Func. Count: 81, Neg. LLF: 147.5367295296807
Iteration: 9, Func. Count: 92, Neg. LLF: 145.39032125268028
Iteration: 10, Func. Count: 101, Neg. LLF: 145.3855840636057
Iteration: 11, Func. Count: 110, Neg. LLF: 145.38379794914388
Iteration: 12, Func. Count: 119, Neg. LLF: 145.38312328215784
Iteration: 13, Func. Count: 128, Neg. LLF: 145.38308860716856
Iteration: 14, Func. Count: 137, Neg. LLF: 145.3830801599821
Iteration: 15, Func. Count: 145, Neg. LLF: 145.38308015998928
Optimization terminated successfully (Exit mode 0)
Current function value: 145.3830801599821
Iterations: 15
Function evaluations: 145
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 19001445.750812884
Iteration: 2, Func. Count: 23, Neg. LLF: 324.81360866585305
Iteration: 3, Func. Count: 34, Neg. LLF: 209.80989697543512
Iteration: 4, Func. Count: 45, Neg. LLF: 155.95180296018668
Iteration: 5, Func. Count: 56, Neg. LLF: 151.03704234049567
Iteration: 6, Func. Count: 67, Neg. LLF: 143.12952079527915
Iteration: 7, Func. Count: 77, Neg. LLF: 147.6858601377137
Iteration: 8, Func. Count: 88, Neg. LLF: 150.46551133164934
Iteration: 9, Func. Count: 101, Neg. LLF: 142.29077542440055
Iteration: 10, Func. Count: 111, Neg. LLF: 142.26760579202346
Iteration: 11, Func. Count: 121, Neg. LLF: 142.2647527764567
Iteration: 12, Func. Count: 131, Neg. LLF: 142.26233324848909
Iteration: 13, Func. Count: 141, Neg. LLF: 142.2622975979571
Iteration: 14, Func. Count: 151, Neg. LLF: 142.26229692263203
Optimization terminated successfully (Exit mode 0)
Current function value: 142.26229692263203
Iterations: 14
Function evaluations: 151
Gradient evaluations: 14
Iteration: 1, Func. Count: 12, Neg. LLF: 18980669.6149328
Iteration: 2, Func. Count: 24, Neg. LLF: 143.7294199185986
Iteration: 3, Func. Count: 35, Neg. LLF: 145.01910136247437
Iteration: 4, Func. Count: 48, Neg. LLF: 143.77940138271973
Iteration: 5, Func. Count: 60, Neg. LLF: 142.16032499459905
Iteration: 6, Func. Count: 71, Neg. LLF: 142.3860483065767
Iteration: 7, Func. Count: 83, Neg. LLF: 142.4085337781827
Iteration: 8, Func. Count: 95, Neg. LLF: 142.15413910050952
Iteration: 9, Func. Count: 106, Neg. LLF: 142.1534205384621
Iteration: 10, Func. Count: 117, Neg. LLF: 142.15341233355363
Iteration: 11, Func. Count: 127, Neg. LLF: 142.15341233385743
Optimization terminated successfully (Exit mode 0)
Current function value: 142.15341233355363
Iterations: 11
Function evaluations: 127
Gradient evaluations: 11
Iteration: 1, Func. Count: 13, Neg. LLF: 189.97940966694722
Iteration: 2, Func. Count: 26, Neg. LLF: 9123647.596725458
Iteration: 3, Func. Count: 40, Neg. LLF: 154.04100405504582
Iteration: 4, Func. Count: 53, Neg. LLF: 147.09640220301904
Iteration: 5, Func. Count: 66, Neg. LLF: 146.3704817838791
Iteration: 6, Func. Count: 79, Neg. LLF: 142.8425077340405
Iteration: 7, Func. Count: 91, Neg. LLF: 146.13705567029132
Iteration: 8, Func. Count: 104, Neg. LLF: 156.28164367105884
Iteration: 9, Func. Count: 118, Neg. LLF: 141.60934993474388
Iteration: 10, Func. Count: 130, Neg. LLF: 141.24691174607935
Iteration: 11, Func. Count: 142, Neg. LLF: 141.0885342622409
Iteration: 12, Func. Count: 154, Neg. LLF: 141.0885839532537
Iteration: 13, Func. Count: 167, Neg. LLF: 19065887.997733776
Iteration: 14, Func. Count: 182, Neg. LLF: 143.1545508275413
Iteration: 15, Func. Count: 196, Neg. LLF: 143.48143389035718
Iteration: 16, Func. Count: 210, Neg. LLF: 141.0744002327259
Iteration: 17, Func. Count: 222, Neg. LLF: 141.07420536862128
Iteration: 18, Func. Count: 234, Neg. LLF: 141.07420448995543
Optimization terminated successfully (Exit mode 0)
Current function value: 141.07420448995543
Iterations: 19
Function evaluations: 234
Gradient evaluations: 18
Iteration: 1, Func. Count: 14, Neg. LLF: 191.36631322685972
Iteration: 2, Func. Count: 28, Neg. LLF: 9174743.309614722
Iteration: 3, Func. Count: 43, Neg. LLF: 197.62529185042894
Iteration: 4, Func. Count: 57, Neg. LLF: 177.50112369622698
Iteration: 5, Func. Count: 71, Neg. LLF: 161.48798383911958
Iteration: 6, Func. Count: 85, Neg. LLF: 151.39503089630898
Iteration: 7, Func. Count: 99, Neg. LLF: 142.79552819451717
Iteration: 8, Func. Count: 112, Neg. LLF: 142.40673654393308
Iteration: 9, Func. Count: 125, Neg. LLF: 153.47662472653
Iteration: 10, Func. Count: 142, Neg. LLF: 143.89327116120282
Iteration: 11, Func. Count: 156, Neg. LLF: 142.76978614810125
Iteration: 12, Func. Count: 170, Neg. LLF: 141.88671818008646
Iteration: 13, Func. Count: 183, Neg. LLF: 141.9038558075151
Iteration: 14, Func. Count: 197, Neg. LLF: 141.85534343274517
Iteration: 15, Func. Count: 210, Neg. LLF: 141.85074034362145
Iteration: 16, Func. Count: 223, Neg. LLF: 141.85059980321807
Iteration: 17, Func. Count: 236, Neg. LLF: 141.8505652775432
Iteration: 18, Func. Count: 249, Neg. LLF: 141.8505641237395
Iteration: 19, Func. Count: 261, Neg. LLF: 141.85056412354263
Optimization terminated successfully (Exit mode 0)
Current function value: 141.8505641237395
Iterations: 19
Function evaluations: 261
Gradient evaluations: 19
Iteration: 1, Func. Count: 7, Neg. LLF: 151.98658257817863
Iteration: 2, Func. Count: 14, Neg. LLF: 155.20088783438032
Iteration: 3, Func. Count: 21, Neg. LLF: 148.33311739826303
Iteration: 4, Func. Count: 27, Neg. LLF: 148.66052713424114
Iteration: 5, Func. Count: 34, Neg. LLF: 148.02650108466025
Iteration: 6, Func. Count: 40, Neg. LLF: 148.16758972435778
Iteration: 7, Func. Count: 47, Neg. LLF: 148.12226375296632
Iteration: 8, Func. Count: 54, Neg. LLF: 148.06365947779727
Iteration: 9, Func. Count: 61, Neg. LLF: 147.81341752212177
Iteration: 10, Func. Count: 68, Neg. LLF: 147.8149450705776
Iteration: 11, Func. Count: 75, Neg. LLF: 147.79403803583855
Iteration: 12, Func. Count: 81, Neg. LLF: 147.79392915341487
Iteration: 13, Func. Count: 87, Neg. LLF: 147.79362556085752
Iteration: 14, Func. Count: 93, Neg. LLF: 147.79361766372435
Iteration: 15, Func. Count: 98, Neg. LLF: 147.79361766372384
Optimization terminated successfully (Exit mode 0)
Current function value: 147.79361766372435
Iterations: 15
Function evaluations: 98
Gradient evaluations: 15
Iteration: 1, Func. Count: 8, Neg. LLF: 19018561.661070127
Iteration: 2, Func. Count: 17, Neg. LLF: 312.9577084805893
Iteration: 3, Func. Count: 25, Neg. LLF: 206.3957961483108
Iteration: 4, Func. Count: 33, Neg. LLF: 154.5674264328028
Iteration: 5, Func. Count: 41, Neg. LLF: 149.31117013254644
Iteration: 6, Func. Count: 49, Neg. LLF: 142.963612041899
Iteration: 7, Func. Count: 56, Neg. LLF: 146.27206978444542
Iteration: 8, Func. Count: 64, Neg. LLF: 150.62024762270312
Iteration: 9, Func. Count: 74, Neg. LLF: 142.28764540920523
Iteration: 10, Func. Count: 81, Neg. LLF: 142.26664295358367
Iteration: 11, Func. Count: 88, Neg. LLF: 142.26419526843407
Iteration: 12, Func. Count: 95, Neg. LLF: 142.26233229806866
Iteration: 13, Func. Count: 102, Neg. LLF: 142.262297536419
Iteration: 14, Func. Count: 109, Neg. LLF: 142.2622969211346
Optimization terminated successfully (Exit mode 0)
Current function value: 142.2622969211346
Iterations: 14
Function evaluations: 109
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 1584.4380968398098
Iteration: 2, Func. Count: 18, Neg. LLF: 143.47634958998586
Iteration: 3, Func. Count: 26, Neg. LLF: 144.89060443748724
Iteration: 4, Func. Count: 35, Neg. LLF: 142.568615844573
Iteration: 5, Func. Count: 43, Neg. LLF: 142.17536168796067
Iteration: 6, Func. Count: 51, Neg. LLF: 142.16025633785753
Iteration: 7, Func. Count: 59, Neg. LLF: 142.15544526925316
Iteration: 8, Func. Count: 67, Neg. LLF: 142.1600006282828
Iteration: 9, Func. Count: 76, Neg. LLF: 142.15349347078504
Iteration: 10, Func. Count: 84, Neg. LLF: 142.1534918907362
Iteration: 11, Func. Count: 91, Neg. LLF: 142.15349189075846
Optimization terminated successfully (Exit mode 0)
Current function value: 142.1534918907362
Iterations: 11
Function evaluations: 91
Gradient evaluations: 11
Iteration: 1, Func. Count: 10, Neg. LLF: 2723.6326867131024
Iteration: 2, Func. Count: 20, Neg. LLF: 144.34385680492923
Iteration: 3, Func. Count: 30, Neg. LLF: 144.67449508452867
Iteration: 4, Func. Count: 40, Neg. LLF: 144.6432006259284
Iteration: 5, Func. Count: 50, Neg. LLF: 142.2202143925491
Iteration: 6, Func. Count: 59, Neg. LLF: 142.7061000041521
Iteration: 7, Func. Count: 69, Neg. LLF: 141.32266722644712
Iteration: 8, Func. Count: 78, Neg. LLF: 141.15804166847937
Iteration: 9, Func. Count: 87, Neg. LLF: 141.10896047789078
Iteration: 10, Func. Count: 96, Neg. LLF: 141.07093665277338
Iteration: 11, Func. Count: 105, Neg. LLF: 141.07016707227143
Iteration: 12, Func. Count: 114, Neg. LLF: 141.07001419759288
Iteration: 13, Func. Count: 123, Neg. LLF: 141.06998308000937
Iteration: 14, Func. Count: 132, Neg. LLF: 141.06998132556797
Iteration: 15, Func. Count: 140, Neg. LLF: 141.06998132551956
Optimization terminated successfully (Exit mode 0)
Current function value: 141.06998132556797
Iterations: 15
Function evaluations: 140
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 190.84621902015982
Iteration: 2, Func. Count: 22, Neg. LLF: 9369.255789281242
Iteration: 3, Func. Count: 34, Neg. LLF: 223.30285765892629
Iteration: 4, Func. Count: 45, Neg. LLF: 147.64568105302018
Iteration: 5, Func. Count: 56, Neg. LLF: 164.62207983124404
Iteration: 6, Func. Count: 67, Neg. LLF: 147.7169271290368
Iteration: 7, Func. Count: 78, Neg. LLF: 142.59690991846017
Iteration: 8, Func. Count: 88, Neg. LLF: 145.05902114695326
Iteration: 9, Func. Count: 99, Neg. LLF: 142.70497725830484
Iteration: 10, Func. Count: 110, Neg. LLF: 142.47929178453944
Iteration: 11, Func. Count: 121, Neg. LLF: 141.9933942168707
Iteration: 12, Func. Count: 131, Neg. LLF: 141.9727364821998
Iteration: 13, Func. Count: 141, Neg. LLF: 141.96743084366454
Iteration: 14, Func. Count: 151, Neg. LLF: 141.9666041714318
Iteration: 15, Func. Count: 161, Neg. LLF: 141.96638542271893
Iteration: 16, Func. Count: 171, Neg. LLF: 141.96624944236638
Iteration: 17, Func. Count: 181, Neg. LLF: 141.96621983702755
Iteration: 18, Func. Count: 191, Neg. LLF: 141.96621770082854
Iteration: 19, Func. Count: 200, Neg. LLF: 141.96621770088882
Optimization terminated successfully (Exit mode 0)
Current function value: 141.96621770082854
Iterations: 19
Function evaluations: 200
Gradient evaluations: 19
Iteration: 1, Func. Count: 8, Neg. LLF: 153.4325041491184
Iteration: 2, Func. Count: 16, Neg. LLF: 144.84322394185133
Iteration: 3, Func. Count: 23, Neg. LLF: 146.983227412585
Iteration: 4, Func. Count: 31, Neg. LLF: 144.3154298161748
Iteration: 5, Func. Count: 38, Neg. LLF: 144.23547025661276
Iteration: 6, Func. Count: 46, Neg. LLF: 143.8823728702437
Iteration: 7, Func. Count: 53, Neg. LLF: 143.8274910237805
Iteration: 8, Func. Count: 60, Neg. LLF: 143.82540277145299
Iteration: 9, Func. Count: 67, Neg. LLF: 143.82419047524368
Iteration: 10, Func. Count: 74, Neg. LLF: 143.82417253146727
Iteration: 11, Func. Count: 81, Neg. LLF: 143.82417152335466
Iteration: 12, Func. Count: 87, Neg. LLF: 143.82417151427586
Optimization terminated successfully (Exit mode 0)
Current function value: 143.82417152335466
Iterations: 12
Function evaluations: 87
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 18996260.602915034
Iteration: 2, Func. Count: 19, Neg. LLF: 334.0622315062353
Iteration: 3, Func. Count: 28, Neg. LLF: 211.30671305357276
Iteration: 4, Func. Count: 37, Neg. LLF: 155.68510947455943
Iteration: 5, Func. Count: 46, Neg. LLF: 150.6450772904948
Iteration: 6, Func. Count: 55, Neg. LLF: 143.07340772539624
Iteration: 7, Func. Count: 63, Neg. LLF: 146.73321956967715
Iteration: 8, Func. Count: 72, Neg. LLF: 150.17058088909891
Iteration: 9, Func. Count: 83, Neg. LLF: 142.28864168229583
Iteration: 10, Func. Count: 91, Neg. LLF: 142.2667905151103
Iteration: 11, Func. Count: 99, Neg. LLF: 142.26437663187642
Iteration: 12, Func. Count: 107, Neg. LLF: 142.26231632347717
Iteration: 13, Func. Count: 115, Neg. LLF: 142.26229717968243
Iteration: 14, Func. Count: 122, Neg. LLF: 142.26229717947336
Optimization terminated successfully (Exit mode 0)
Current function value: 142.26229717968243
Iterations: 14
Function evaluations: 122
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 1220.7425263433906
Iteration: 2, Func. Count: 20, Neg. LLF: 143.37786206975503
Iteration: 3, Func. Count: 29, Neg. LLF: 145.62340806351722
Iteration: 4, Func. Count: 39, Neg. LLF: 142.91883379492103
Iteration: 5, Func. Count: 49, Neg. LLF: 142.32545208223868
Iteration: 6, Func. Count: 58, Neg. LLF: 142.1753439509844
Iteration: 7, Func. Count: 67, Neg. LLF: 142.21196289656027
Iteration: 8, Func. Count: 77, Neg. LLF: 142.15357972271244
Iteration: 9, Func. Count: 86, Neg. LLF: 142.15349225989706
Iteration: 10, Func. Count: 94, Neg. LLF: 142.15349226025276
Optimization terminated successfully (Exit mode 0)
Current function value: 142.15349225989706
Iterations: 10
Function evaluations: 94
Gradient evaluations: 10
Iteration: 1, Func. Count: 11, Neg. LLF: 1884.522271925357
Iteration: 2, Func. Count: 22, Neg. LLF: 143.80386647606989
Iteration: 3, Func. Count: 32, Neg. LLF: 155.12760496644748
Iteration: 4, Func. Count: 44, Neg. LLF: 146.48414688674578
Iteration: 5, Func. Count: 55, Neg. LLF: 141.9042834127485
Iteration: 6, Func. Count: 65, Neg. LLF: 143.28358035240373
Iteration: 7, Func. Count: 77, Neg. LLF: 141.74154709314402
Iteration: 8, Func. Count: 88, Neg. LLF: 141.2097873907519
Iteration: 9, Func. Count: 98, Neg. LLF: 141.11571480807368
Iteration: 10, Func. Count: 108, Neg. LLF: 141.07917230503574
Iteration: 11, Func. Count: 118, Neg. LLF: 141.0710743028932
Iteration: 12, Func. Count: 128, Neg. LLF: 141.07002508036155
Iteration: 13, Func. Count: 138, Neg. LLF: 141.06998199489118
Iteration: 14, Func. Count: 148, Neg. LLF: 141.0699811019795
Optimization terminated successfully (Exit mode 0)
Current function value: 141.0699811019795
Iterations: 14
Function evaluations: 148
Gradient evaluations: 14
Iteration: 1, Func. Count: 12, Neg. LLF: 190.52865189806286
Iteration: 2, Func. Count: 24, Neg. LLF: 281.5667085657006
Iteration: 3, Func. Count: 37, Neg. LLF: 155.325829921747
Iteration: 4, Func. Count: 49, Neg. LLF: 196.05301461646744
Iteration: 5, Func. Count: 61, Neg. LLF: 174.29265529406737
Iteration: 6, Func. Count: 73, Neg. LLF: 155.26320340802533
Iteration: 7, Func. Count: 85, Neg. LLF: 148.42767622488466
Iteration: 8, Func. Count: 97, Neg. LLF: 146.09611231441096
Iteration: 9, Func. Count: 109, Neg. LLF: 142.43128343865595
Iteration: 10, Func. Count: 120, Neg. LLF: 142.22827704743918
Iteration: 11, Func. Count: 131, Neg. LLF: 151.0241915830347
Iteration: 12, Func. Count: 145, Neg. LLF: 143.95911380487843
Iteration: 13, Func. Count: 157, Neg. LLF: 142.00212782205446
Iteration: 14, Func. Count: 168, Neg. LLF: 141.97235391303204
Iteration: 15, Func. Count: 179, Neg. LLF: 141.96734735353098
Iteration: 16, Func. Count: 190, Neg. LLF: 141.9662357583463
Iteration: 17, Func. Count: 201, Neg. LLF: 141.966217904073
Iteration: 18, Func. Count: 211, Neg. LLF: 141.96621790411538
Optimization terminated successfully (Exit mode 0)
Current function value: 141.966217904073
Iterations: 18
Function evaluations: 211
Gradient evaluations: 18
Iteration: 1, Func. Count: 9, Neg. LLF: 152.22725019858893
Iteration: 2, Func. Count: 18, Neg. LLF: 153.62430431983373
Iteration: 3, Func. Count: 27, Neg. LLF: 148.29348157749925
Iteration: 4, Func. Count: 35, Neg. LLF: 148.20273773896446
Iteration: 5, Func. Count: 43, Neg. LLF: 148.08491739121192
Iteration: 6, Func. Count: 51, Neg. LLF: 148.06065586847555
Iteration: 7, Func. Count: 59, Neg. LLF: 147.9856281232295
Iteration: 8, Func. Count: 67, Neg. LLF: 147.82940195139784
Iteration: 9, Func. Count: 75, Neg. LLF: 148.050522318297
Iteration: 10, Func. Count: 84, Neg. LLF: 149.71487991687954
Iteration: 11, Func. Count: 93, Neg. LLF: 151.94831064996228
Iteration: 12, Func. Count: 104, Neg. LLF: 147.85023758358022
Iteration: 13, Func. Count: 113, Neg. LLF: 147.74783994247895
Iteration: 14, Func. Count: 121, Neg. LLF: 147.7475666957115
Iteration: 15, Func. Count: 129, Neg. LLF: 147.7474112940778
Iteration: 16, Func. Count: 137, Neg. LLF: 147.74739259401068
Iteration: 17, Func. Count: 145, Neg. LLF: 147.747391138639
Iteration: 18, Func. Count: 152, Neg. LLF: 147.74739113852667
Optimization terminated successfully (Exit mode 0)
Current function value: 147.747391138639
Iterations: 18
Function evaluations: 152
Gradient evaluations: 18
Iteration: 1, Func. Count: 10, Neg. LLF: 18989581.98819363
Iteration: 2, Func. Count: 21, Neg. LLF: 330.19212997019366
Iteration: 3, Func. Count: 31, Neg. LLF: 210.0777231450906
Iteration: 4, Func. Count: 41, Neg. LLF: 155.4993949201312
Iteration: 5, Func. Count: 51, Neg. LLF: 150.89978269043476
Iteration: 6, Func. Count: 61, Neg. LLF: 143.0765191274862
Iteration: 7, Func. Count: 70, Neg. LLF: 146.6972697323245
Iteration: 8, Func. Count: 80, Neg. LLF: 150.13479143070776
Iteration: 9, Func. Count: 92, Neg. LLF: 142.28787743305242
Iteration: 10, Func. Count: 101, Neg. LLF: 142.2667312338973
Iteration: 11, Func. Count: 110, Neg. LLF: 142.26435217695789
Iteration: 12, Func. Count: 119, Neg. LLF: 142.26231287290136
Iteration: 13, Func. Count: 128, Neg. LLF: 142.26229712959153
Iteration: 14, Func. Count: 136, Neg. LLF: 142.2622971293911
Optimization terminated successfully (Exit mode 0)
Current function value: 142.26229712959153
Iterations: 14
Function evaluations: 136
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 1215.7986118924473
Iteration: 2, Func. Count: 22, Neg. LLF: 143.2933645212922
Iteration: 3, Func. Count: 32, Neg. LLF: 145.88637952301028
Iteration: 4, Func. Count: 43, Neg. LLF: 143.0215462914763
Iteration: 5, Func. Count: 54, Neg. LLF: 142.33732974700482
Iteration: 6, Func. Count: 65, Neg. LLF: 142.19168766230018
Iteration: 7, Func. Count: 75, Neg. LLF: 142.18844867488548
Iteration: 8, Func. Count: 86, Neg. LLF: 143.2624505916141
Iteration: 9, Func. Count: 98, Neg. LLF: 142.17241689837792
Iteration: 10, Func. Count: 109, Neg. LLF: 142.1534475061802
Iteration: 11, Func. Count: 119, Neg. LLF: 142.15341237292733
Iteration: 12, Func. Count: 128, Neg. LLF: 142.15341237245323
Optimization terminated successfully (Exit mode 0)
Current function value: 142.15341237292733
Iterations: 12
Function evaluations: 128
Gradient evaluations: 12
Iteration: 1, Func. Count: 12, Neg. LLF: 1873.521879967035
Iteration: 2, Func. Count: 24, Neg. LLF: 143.7391761222031
Iteration: 3, Func. Count: 35, Neg. LLF: 153.26423601125967
Iteration: 4, Func. Count: 48, Neg. LLF: 145.25157680597178
Iteration: 5, Func. Count: 60, Neg. LLF: 141.9365533302495
Iteration: 6, Func. Count: 71, Neg. LLF: 142.9197148604328
Iteration: 7, Func. Count: 84, Neg. LLF: 141.62903471444434
Iteration: 8, Func. Count: 96, Neg. LLF: 141.08520158227384
Iteration: 9, Func. Count: 107, Neg. LLF: 141.07350492472136
Iteration: 10, Func. Count: 118, Neg. LLF: 141.0664067975988
Iteration: 11, Func. Count: 129, Neg. LLF: 141.06219040406836
Iteration: 12, Func. Count: 140, Neg. LLF: 141.05904271035016
Iteration: 13, Func. Count: 151, Neg. LLF: 141.0569114871041
Iteration: 14, Func. Count: 162, Neg. LLF: 141.0554314181329
Iteration: 15, Func. Count: 173, Neg. LLF: 141.05486369855115
Iteration: 16, Func. Count: 184, Neg. LLF: 141.05475664475267
Iteration: 17, Func. Count: 195, Neg. LLF: 141.05475386514627
Iteration: 18, Func. Count: 205, Neg. LLF: 141.0547538652455
Optimization terminated successfully (Exit mode 0)
Current function value: 141.05475386514627
Iterations: 18
Function evaluations: 205
Gradient evaluations: 18
Iteration: 1, Func. Count: 13, Neg. LLF: 190.47877776846533
Iteration: 2, Func. Count: 26, Neg. LLF: 246.60024100101336
Iteration: 3, Func. Count: 40, Neg. LLF: 153.71116309313115
Iteration: 4, Func. Count: 53, Neg. LLF: 196.27349767928428
Iteration: 5, Func. Count: 66, Neg. LLF: 168.42782047125402
Iteration: 6, Func. Count: 79, Neg. LLF: 153.44405330059706
Iteration: 7, Func. Count: 92, Neg. LLF: 148.83254604157037
Iteration: 8, Func. Count: 105, Neg. LLF: 143.39176491368332
Iteration: 9, Func. Count: 118, Neg. LLF: 142.5267071999191
Iteration: 10, Func. Count: 130, Neg. LLF: 155.900942452936
Iteration: 11, Func. Count: 144, Neg. LLF: 143.74623066955377
Iteration: 12, Func. Count: 157, Neg. LLF: 141.8723873251489
Iteration: 13, Func. Count: 169, Neg. LLF: 141.86634908747885
Iteration: 14, Func. Count: 181, Neg. LLF: 141.87266313454452
Iteration: 15, Func. Count: 194, Neg. LLF: 141.85006656807246
Iteration: 16, Func. Count: 206, Neg. LLF: 141.8486674678728
Iteration: 17, Func. Count: 218, Neg. LLF: 141.8473567063163
Iteration: 18, Func. Count: 230, Neg. LLF: 141.8481171038992
Iteration: 19, Func. Count: 243, Neg. LLF: 141.84547554632684
Iteration: 20, Func. Count: 255, Neg. LLF: 141.84465450646144
Iteration: 21, Func. Count: 267, Neg. LLF: 141.84440085893775
Iteration: 22, Func. Count: 279, Neg. LLF: 141.84438750830972
Iteration: 23, Func. Count: 291, Neg. LLF: 141.84438420355696
Iteration: 24, Func. Count: 302, Neg. LLF: 141.8443842036059
Optimization terminated successfully (Exit mode 0)
Current function value: 141.84438420355696
Iterations: 24
Function evaluations: 302
Gradient evaluations: 24
Iteration: 1, Func. Count: 10, Neg. LLF: 147.61490872235422
Iteration: 2, Func. Count: 19, Neg. LLF: 146.94850204673529
Iteration: 3, Func. Count: 28, Neg. LLF: 144.46485208640362
Iteration: 4, Func. Count: 37, Neg. LLF: 144.33512292747793
Iteration: 5, Func. Count: 46, Neg. LLF: 144.37185154442363
Iteration: 6, Func. Count: 56, Neg. LLF: 145.1420933556597
Iteration: 7, Func. Count: 66, Neg. LLF: 143.86393498719767
Iteration: 8, Func. Count: 75, Neg. LLF: 143.82994834964714
Iteration: 9, Func. Count: 84, Neg. LLF: 143.82424080996333
Iteration: 10, Func. Count: 93, Neg. LLF: 143.8241732626439
Iteration: 11, Func. Count: 102, Neg. LLF: 143.82417156790422
Iteration: 12, Func. Count: 110, Neg. LLF: 143.82417154523304
Optimization terminated successfully (Exit mode 0)
Current function value: 143.82417156790422
Iterations: 12
Function evaluations: 110
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 18986177.559161138
Iteration: 2, Func. Count: 23, Neg. LLF: 188.5207758857293
Iteration: 3, Func. Count: 34, Neg. LLF: 148.03661289479393
Iteration: 4, Func. Count: 45, Neg. LLF: 150.60556679906537
Iteration: 5, Func. Count: 56, Neg. LLF: 144.75518931918558
Iteration: 6, Func. Count: 67, Neg. LLF: 143.30844921520477
Iteration: 7, Func. Count: 78, Neg. LLF: 142.6699058318782
Iteration: 8, Func. Count: 88, Neg. LLF: 153.12488734504376
Iteration: 9, Func. Count: 100, Neg. LLF: 143.36094460131852
Iteration: 10, Func. Count: 111, Neg. LLF: 142.33026650572086
Iteration: 11, Func. Count: 121, Neg. LLF: 142.9716741667224
Iteration: 12, Func. Count: 132, Neg. LLF: 142.2632090262404
Iteration: 13, Func. Count: 142, Neg. LLF: 142.26232017177807
Iteration: 14, Func. Count: 152, Neg. LLF: 142.26229803783013
Iteration: 15, Func. Count: 162, Neg. LLF: 142.26229711353113
Optimization terminated successfully (Exit mode 0)
Current function value: 142.26229711353113
Iterations: 15
Function evaluations: 162
Gradient evaluations: 15
Iteration: 1, Func. Count: 12, Neg. LLF: 1230.4471433734443
Iteration: 2, Func. Count: 24, Neg. LLF: 158.43910217103468
Iteration: 3, Func. Count: 36, Neg. LLF: 146.36048111208265
Iteration: 4, Func. Count: 48, Neg. LLF: 147.35446450330747
Iteration: 5, Func. Count: 60, Neg. LLF: 142.54108504366968
Iteration: 6, Func. Count: 71, Neg. LLF: 142.35792236531103
Iteration: 7, Func. Count: 82, Neg. LLF: 142.6621106558584
Iteration: 8, Func. Count: 94, Neg. LLF: 142.265155762635
Iteration: 9, Func. Count: 105, Neg. LLF: 142.15917609921038
Iteration: 10, Func. Count: 116, Neg. LLF: 142.1562842420722
Iteration: 11, Func. Count: 127, Neg. LLF: 142.15390196306745
Iteration: 12, Func. Count: 138, Neg. LLF: 142.15359852789277
Iteration: 13, Func. Count: 149, Neg. LLF: 142.15344379880216
Iteration: 14, Func. Count: 160, Neg. LLF: 142.15352979731077
Iteration: 15, Func. Count: 172, Neg. LLF: 142.15342717958518
Optimization terminated successfully (Exit mode 0)
Current function value: 142.15342717958518
Iterations: 15
Function evaluations: 172
Gradient evaluations: 15
Iteration: 1, Func. Count: 13, Neg. LLF: 1906.5372167736812
Iteration: 2, Func. Count: 26, Neg. LLF: 147.17443224736886
Iteration: 3, Func. Count: 39, Neg. LLF: 145.7094079172701
Iteration: 4, Func. Count: 52, Neg. LLF: 140.83217662533622
Iteration: 5, Func. Count: 64, Neg. LLF: 144.33207177077983
Iteration: 6, Func. Count: 77, Neg. LLF: 141.3854149235135
Iteration: 7, Func. Count: 90, Neg. LLF: 148.01710961913025
Iteration: 8, Func. Count: 103, Neg. LLF: 139.77195460926015
Iteration: 9, Func. Count: 115, Neg. LLF: 139.76318950856518
Iteration: 10, Func. Count: 127, Neg. LLF: 139.76167826008725
Iteration: 11, Func. Count: 139, Neg. LLF: 139.76163248064432
Iteration: 12, Func. Count: 151, Neg. LLF: 139.76163041239178
Iteration: 13, Func. Count: 162, Neg. LLF: 139.76163038500576
Optimization terminated successfully (Exit mode 0)
Current function value: 139.76163041239178
Iterations: 13
Function evaluations: 162
Gradient evaluations: 13
Iteration: 1, Func. Count: 14, Neg. LLF: 190.49010540144482
Iteration: 2, Func. Count: 28, Neg. LLF: 8735907.816005196
Iteration: 3, Func. Count: 43, Neg. LLF: 154.07492925186796
Iteration: 4, Func. Count: 57, Neg. LLF: 187.36669755854743
Iteration: 5, Func. Count: 71, Neg. LLF: 163.34514207292997
Iteration: 6, Func. Count: 85, Neg. LLF: 154.12037135279195
Iteration: 7, Func. Count: 99, Neg. LLF: 145.33237552000753
Iteration: 8, Func. Count: 113, Neg. LLF: 142.2562482996315
Iteration: 9, Func. Count: 126, Neg. LLF: 147.52142640052642
Iteration: 10, Func. Count: 140, Neg. LLF: 142.45517900911665
Iteration: 11, Func. Count: 154, Neg. LLF: 157.90166254333602
Iteration: 12, Func. Count: 169, Neg. LLF: 141.8553740750494
Iteration: 13, Func. Count: 182, Neg. LLF: 141.79547350747217
Iteration: 14, Func. Count: 195, Neg. LLF: 141.73748076527198
Iteration: 15, Func. Count: 208, Neg. LLF: 141.71856012208355
Iteration: 16, Func. Count: 221, Neg. LLF: 141.69702333809232
Iteration: 17, Func. Count: 234, Neg. LLF: 141.68643022899727
Iteration: 18, Func. Count: 247, Neg. LLF: 141.68375508411685
Iteration: 19, Func. Count: 260, Neg. LLF: 141.6834725689298
Iteration: 20, Func. Count: 273, Neg. LLF: 141.68346414267177
Iteration: 21, Func. Count: 286, Neg. LLF: 141.6834635207166
Optimization terminated successfully (Exit mode 0)
Current function value: 141.6834635207166
Iterations: 21
Function evaluations: 286
Gradient evaluations: 21
Iteration: 1, Func. Count: 11, Neg. LLF: 148.28740424642518
Iteration: 2, Func. Count: 21, Neg. LLF: 148.2906241372544
Iteration: 3, Func. Count: 33, Neg. LLF: 169.31207260180565
Iteration: 4, Func. Count: 45, Neg. LLF: 160.5954853679134
Iteration: 5, Func. Count: 56, Neg. LLF: 151.052621171115
Iteration: 6, Func. Count: 67, Neg. LLF: 151.82058970260735
Iteration: 7, Func. Count: 78, Neg. LLF: 145.72371157227678
Iteration: 8, Func. Count: 88, Neg. LLF: 145.7162498142774
Iteration: 9, Func. Count: 99, Neg. LLF: 145.4792064950967
Iteration: 10, Func. Count: 109, Neg. LLF: 145.40569185640868
Iteration: 11, Func. Count: 119, Neg. LLF: 145.39251079466237
Iteration: 12, Func. Count: 129, Neg. LLF: 145.38585524807698
Iteration: 13, Func. Count: 139, Neg. LLF: 145.38428734035776
Iteration: 14, Func. Count: 149, Neg. LLF: 145.3838075739199
Iteration: 15, Func. Count: 159, Neg. LLF: 145.38350234259693
Iteration: 16, Func. Count: 169, Neg. LLF: 145.3831126406869
Iteration: 17, Func. Count: 179, Neg. LLF: 145.3830809200259
Iteration: 18, Func. Count: 189, Neg. LLF: 145.38307989544438
Iteration: 19, Func. Count: 198, Neg. LLF: 145.38307989544222
Optimization terminated successfully (Exit mode 0)
Current function value: 145.38307989544438
Iterations: 19
Function evaluations: 198
Gradient evaluations: 19
Iteration: 1, Func. Count: 12, Neg. LLF: 18983693.483831134
Iteration: 2, Func. Count: 25, Neg. LLF: 187.02681616919375
Iteration: 3, Func. Count: 37, Neg. LLF: 147.90724417774558
Iteration: 4, Func. Count: 49, Neg. LLF: 151.2654372462886
Iteration: 5, Func. Count: 61, Neg. LLF: 145.1575012144588
Iteration: 6, Func. Count: 73, Neg. LLF: 143.3675147250947
Iteration: 7, Func. Count: 85, Neg. LLF: 142.7272609437514
Iteration: 8, Func. Count: 96, Neg. LLF: 152.21556579975015
Iteration: 9, Func. Count: 108, Neg. LLF: 142.8887475722353
Iteration: 10, Func. Count: 120, Neg. LLF: 142.71800311547017
Iteration: 11, Func. Count: 132, Neg. LLF: 142.28946072619533
Iteration: 12, Func. Count: 143, Neg. LLF: 142.2641486507033
Iteration: 13, Func. Count: 154, Neg. LLF: 142.26235692764135
Iteration: 14, Func. Count: 165, Neg. LLF: 142.26229821391138
Iteration: 15, Func. Count: 176, Neg. LLF: 142.26229698321345
Iteration: 16, Func. Count: 186, Neg. LLF: 142.26229698347424
Optimization terminated successfully (Exit mode 0)
Current function value: 142.26229698321345
Iterations: 16
Function evaluations: 186
Gradient evaluations: 16
Iteration: 1, Func. Count: 13, Neg. LLF: 1239.4228073350687
Iteration: 2, Func. Count: 26, Neg. LLF: 157.95744499700365
Iteration: 3, Func. Count: 39, Neg. LLF: 172.8129590116497
Iteration: 4, Func. Count: 52, Neg. LLF: 142.69740239025884
Iteration: 5, Func. Count: 64, Neg. LLF: 142.90615460448097
Iteration: 6, Func. Count: 77, Neg. LLF: 142.32639275837207
Iteration: 7, Func. Count: 89, Neg. LLF: 142.36098072454666
Iteration: 8, Func. Count: 102, Neg. LLF: 142.28779661602158
Iteration: 9, Func. Count: 114, Neg. LLF: 142.1538214075331
Iteration: 10, Func. Count: 126, Neg. LLF: 142.1534813453487
Iteration: 11, Func. Count: 138, Neg. LLF: 142.15341801174566
Iteration: 12, Func. Count: 150, Neg. LLF: 142.153412198639
Iteration: 13, Func. Count: 162, Neg. LLF: 142.2246987828188
Optimization terminated successfully (Exit mode 0)
Current function value: 142.15341218555835
Iterations: 14
Function evaluations: 166
Gradient evaluations: 13
Iteration: 1, Func. Count: 14, Neg. LLF: 1912.7247077782356
Iteration: 2, Func. Count: 28, Neg. LLF: 147.08477903979812
Iteration: 3, Func. Count: 42, Neg. LLF: 145.8287537043576
Iteration: 4, Func. Count: 56, Neg. LLF: 140.8582917384723
Iteration: 5, Func. Count: 69, Neg. LLF: 143.66432232976513
Iteration: 6, Func. Count: 83, Neg. LLF: 141.40341888624494
Iteration: 7, Func. Count: 97, Neg. LLF: 146.97810363879694
Iteration: 8, Func. Count: 111, Neg. LLF: 139.77298456670022
Iteration: 9, Func. Count: 124, Neg. LLF: 139.76352979746537
Iteration: 10, Func. Count: 137, Neg. LLF: 139.76168502491566
Iteration: 11, Func. Count: 150, Neg. LLF: 139.76163139301374
Iteration: 12, Func. Count: 163, Neg. LLF: 139.76163005849787
Iteration: 13, Func. Count: 175, Neg. LLF: 139.7616300311065
Optimization terminated successfully (Exit mode 0)
Current function value: 139.76163005849787
Iterations: 13
Function evaluations: 175
Gradient evaluations: 13
Iteration: 1, Func. Count: 15, Neg. LLF: 190.42460466005883
Iteration: 2, Func. Count: 30, Neg. LLF: 8653523.258542571
Iteration: 3, Func. Count: 46, Neg. LLF: 156.11556153512893
Iteration: 4, Func. Count: 61, Neg. LLF: 186.26774497054404
Iteration: 5, Func. Count: 76, Neg. LLF: 163.55860062264094
Iteration: 6, Func. Count: 91, Neg. LLF: 154.69450580008558
Iteration: 7, Func. Count: 106, Neg. LLF: 146.18428798499554
Iteration: 8, Func. Count: 121, Neg. LLF: 142.3304936619045
Iteration: 9, Func. Count: 135, Neg. LLF: 145.9581462147216
Iteration: 10, Func. Count: 150, Neg. LLF: 142.74103022044866
Iteration: 11, Func. Count: 165, Neg. LLF: 161.95391830023192
Iteration: 12, Func. Count: 181, Neg. LLF: 141.8079881393112
Iteration: 13, Func. Count: 195, Neg. LLF: 141.74031765970923
Iteration: 14, Func. Count: 209, Neg. LLF: 141.7870588556144
Iteration: 15, Func. Count: 224, Neg. LLF: 141.71342079660138
Iteration: 16, Func. Count: 238, Neg. LLF: 141.69392208506932
Iteration: 17, Func. Count: 252, Neg. LLF: 141.68743552331597
Iteration: 18, Func. Count: 266, Neg. LLF: 141.6836790985408
Iteration: 19, Func. Count: 280, Neg. LLF: 141.68349029933177
Iteration: 20, Func. Count: 294, Neg. LLF: 141.6834636388058
Iteration: 21, Func. Count: 308, Neg. LLF: 141.95188477780283
Optimization terminated successfully (Exit mode 0)
Current function value: 141.68346359966432
Iterations: 22
Function evaluations: 312
Gradient evaluations: 21
Iteration: 1, Func. Count: 8, Neg. LLF: 147.06185903904438
Iteration: 2, Func. Count: 15, Neg. LLF: 147.67449884626214
Iteration: 3, Func. Count: 23, Neg. LLF: 152.5857692173706
Iteration: 4, Func. Count: 33, Neg. LLF: 169.71495578792636
Iteration: 5, Func. Count: 41, Neg. LLF: 145.92339643168543
Iteration: 6, Func. Count: 48, Neg. LLF: 145.35812502387395
Iteration: 7, Func. Count: 55, Neg. LLF: 145.71365623804007
Iteration: 8, Func. Count: 63, Neg. LLF: 145.22222581203772
Iteration: 9, Func. Count: 70, Neg. LLF: 145.18078369655777
Iteration: 10, Func. Count: 77, Neg. LLF: 145.15030417973335
Iteration: 11, Func. Count: 84, Neg. LLF: 145.13207591352705
Iteration: 12, Func. Count: 91, Neg. LLF: 145.13081588554925
Iteration: 13, Func. Count: 98, Neg. LLF: 145.13080696063867
Iteration: 14, Func. Count: 104, Neg. LLF: 145.13080696063938
Optimization terminated successfully (Exit mode 0)
Current function value: 145.13080696063867
Iterations: 14
Function evaluations: 104
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 1131.2117853221105
Iteration: 2, Func. Count: 19, Neg. LLF: 162.56253775942685
Iteration: 3, Func. Count: 28, Neg. LLF: 163.13041359943162
Iteration: 4, Func. Count: 37, Neg. LLF: 144.0265287515921
Iteration: 5, Func. Count: 46, Neg. LLF: 158.88396389011538
Iteration: 6, Func. Count: 56, Neg. LLF: 143.70890525711638
Iteration: 7, Func. Count: 65, Neg. LLF: 143.68189170318257
Iteration: 8, Func. Count: 74, Neg. LLF: 144.32262826871744
Iteration: 9, Func. Count: 83, Neg. LLF: 143.59083967799896
Iteration: 10, Func. Count: 91, Neg. LLF: 143.58679631114148
Iteration: 11, Func. Count: 100, Neg. LLF: 143.57139188540282
Iteration: 12, Func. Count: 108, Neg. LLF: 143.5708654314118
Iteration: 13, Func. Count: 116, Neg. LLF: 143.57081738175947
Iteration: 14, Func. Count: 124, Neg. LLF: 143.5708019379997
Iteration: 15, Func. Count: 131, Neg. LLF: 143.57080193801755
Optimization terminated successfully (Exit mode 0)
Current function value: 143.5708019379997
Iterations: 15
Function evaluations: 131
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 2153.6726860456956
Iteration: 2, Func. Count: 20, Neg. LLF: 163.41390530525126
Iteration: 3, Func. Count: 30, Neg. LLF: 143.65239808523677
Iteration: 4, Func. Count: 39, Neg. LLF: 144.22954734233946
Iteration: 5, Func. Count: 51, Neg. LLF: 143.10412412188617
Iteration: 6, Func. Count: 60, Neg. LLF: 143.02037522936106
Iteration: 7, Func. Count: 70, Neg. LLF: 142.4964859253951
Iteration: 8, Func. Count: 79, Neg. LLF: 142.98034017091422
Iteration: 9, Func. Count: 89, Neg. LLF: 142.19550849286432
Iteration: 10, Func. Count: 98, Neg. LLF: 142.17346900183983
Iteration: 11, Func. Count: 107, Neg. LLF: 142.16302510602725
Iteration: 12, Func. Count: 116, Neg. LLF: 142.15396174133517
Iteration: 13, Func. Count: 125, Neg. LLF: 142.1535119386038
Iteration: 14, Func. Count: 134, Neg. LLF: 142.1534919397613
Iteration: 15, Func. Count: 142, Neg. LLF: 142.1534919397598
Optimization terminated successfully (Exit mode 0)
Current function value: 142.1534919397613
Iterations: 15
Function evaluations: 142
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 442.14226616281576
Iteration: 2, Func. Count: 22, Neg. LLF: 143.42759537832086
Iteration: 3, Func. Count: 32, Neg. LLF: 148.33793413779932
Iteration: 4, Func. Count: 43, Neg. LLF: 143.40595878660574
Iteration: 5, Func. Count: 54, Neg. LLF: 146.3209686076414
Iteration: 6, Func. Count: 65, Neg. LLF: 144.09815075130774
Iteration: 7, Func. Count: 76, Neg. LLF: 143.0812894406078
Iteration: 8, Func. Count: 87, Neg. LLF: 142.21097522594116
Iteration: 9, Func. Count: 97, Neg. LLF: 142.17655544549288
Iteration: 10, Func. Count: 107, Neg. LLF: 142.18982539279747
Iteration: 11, Func. Count: 118, Neg. LLF: 142.15356735314776
Iteration: 12, Func. Count: 128, Neg. LLF: 142.15349269340493
Iteration: 13, Func. Count: 138, Neg. LLF: 142.15349189267744
Optimization terminated successfully (Exit mode 0)
Current function value: 142.15349189267744
Iterations: 13
Function evaluations: 138
Gradient evaluations: 13
Iteration: 1, Func. Count: 12, Neg. LLF: 187.7995575567161
Iteration: 2, Func. Count: 24, Neg. LLF: 187.68270415400173
Iteration: 3, Func. Count: 36, Neg. LLF: 143.41431481870285
Iteration: 4, Func. Count: 47, Neg. LLF: 151.7622934433878
Iteration: 5, Func. Count: 59, Neg. LLF: 152.1372755131236
Iteration: 6, Func. Count: 73, Neg. LLF: 146.6921905702684
Iteration: 7, Func. Count: 86, Neg. LLF: 142.08871886509098
Iteration: 8, Func. Count: 97, Neg. LLF: 141.98578808724088
Iteration: 9, Func. Count: 108, Neg. LLF: 141.97027818912125
Iteration: 10, Func. Count: 119, Neg. LLF: 141.96690592775764
Iteration: 11, Func. Count: 130, Neg. LLF: 141.966446402744
Iteration: 12, Func. Count: 141, Neg. LLF: 141.9663234429648
Iteration: 13, Func. Count: 152, Neg. LLF: 141.96623852308738
Iteration: 14, Func. Count: 163, Neg. LLF: 141.96621964766783
Iteration: 15, Func. Count: 174, Neg. LLF: 141.96621777191407
Iteration: 16, Func. Count: 184, Neg. LLF: 141.96621777189165
Optimization terminated successfully (Exit mode 0)
Current function value: 141.96621777191407
Iterations: 16
Function evaluations: 184
Gradient evaluations: 16
Iteration: 1, Func. Count: 9, Neg. LLF: 152.22603194597116
Iteration: 2, Func. Count: 18, Neg. LLF: 154.57270267283275
Iteration: 3, Func. Count: 27, Neg. LLF: 145.4902570248784
Iteration: 4, Func. Count: 35, Neg. LLF: 145.35551335570403
Iteration: 5, Func. Count: 43, Neg. LLF: 149.12398822759903
Iteration: 6, Func. Count: 54, Neg. LLF: 145.20890652366666
Iteration: 7, Func. Count: 62, Neg. LLF: 145.42516874455907
Iteration: 8, Func. Count: 71, Neg. LLF: 145.1364205592007
Iteration: 9, Func. Count: 79, Neg. LLF: 145.13187468899108
Iteration: 10, Func. Count: 87, Neg. LLF: 145.13115601334022
Iteration: 11, Func. Count: 95, Neg. LLF: 145.1308575723691
Iteration: 12, Func. Count: 103, Neg. LLF: 145.1308111859186
Iteration: 13, Func. Count: 111, Neg. LLF: 145.1308069757925
Iteration: 14, Func. Count: 118, Neg. LLF: 145.13080701173416
Optimization terminated successfully (Exit mode 0)
Current function value: 145.1308069757925
Iterations: 14
Function evaluations: 118
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 913.1503886825634
Iteration: 2, Func. Count: 21, Neg. LLF: 171.07253196280763
Iteration: 3, Func. Count: 31, Neg. LLF: 157.8652152239859
Iteration: 4, Func. Count: 41, Neg. LLF: 143.96366485193954
Iteration: 5, Func. Count: 51, Neg. LLF: 163.2282091893337
Iteration: 6, Func. Count: 61, Neg. LLF: 143.6776484304648
Iteration: 7, Func. Count: 70, Neg. LLF: 146.16320716386912
Iteration: 8, Func. Count: 80, Neg. LLF: 143.6001074292078
Iteration: 9, Func. Count: 89, Neg. LLF: 143.6015048919533
Iteration: 10, Func. Count: 99, Neg. LLF: 143.56856263984992
Iteration: 11, Func. Count: 108, Neg. LLF: 143.55728601962667
Iteration: 12, Func. Count: 117, Neg. LLF: 143.55512103585906
Iteration: 13, Func. Count: 126, Neg. LLF: 143.55437836844968
Iteration: 14, Func. Count: 135, Neg. LLF: 143.55436285829518
Iteration: 15, Func. Count: 144, Neg. LLF: 143.55436227834102
Optimization terminated successfully (Exit mode 0)
Current function value: 143.55436227834102
Iterations: 15
Function evaluations: 144
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 1538.557920363642
Iteration: 2, Func. Count: 22, Neg. LLF: 176.30201500554054
Iteration: 3, Func. Count: 33, Neg. LLF: 143.7407229678582
Iteration: 4, Func. Count: 43, Neg. LLF: 143.7088283185617
Iteration: 5, Func. Count: 54, Neg. LLF: 147.60404279609403
Iteration: 6, Func. Count: 65, Neg. LLF: 248.5311272808869
Iteration: 7, Func. Count: 76, Neg. LLF: 144.25058202370099
Iteration: 8, Func. Count: 87, Neg. LLF: 150.86069773766914
Iteration: 9, Func. Count: 98, Neg. LLF: 143.08291129095457
Iteration: 10, Func. Count: 109, Neg. LLF: 142.43795793509346
Iteration: 11, Func. Count: 119, Neg. LLF: 144.25592978516693
Iteration: 12, Func. Count: 130, Neg. LLF: 142.44879319138906
Iteration: 13, Func. Count: 141, Neg. LLF: 142.17328167666517
Iteration: 14, Func. Count: 151, Neg. LLF: 142.1543305204403
Iteration: 15, Func. Count: 161, Neg. LLF: 142.15350578989415
Iteration: 16, Func. Count: 171, Neg. LLF: 142.15349220632714
Iteration: 17, Func. Count: 180, Neg. LLF: 142.15349220666138
Optimization terminated successfully (Exit mode 0)
Current function value: 142.15349220632714
Iterations: 17
Function evaluations: 180
Gradient evaluations: 17
Iteration: 1, Func. Count: 12, Neg. LLF: 425.4507302102455
Iteration: 2, Func. Count: 24, Neg. LLF: 143.47099101498384
Iteration: 3, Func. Count: 35, Neg. LLF: 148.57303142274324
Iteration: 4, Func. Count: 47, Neg. LLF: 145.3355298244318
Iteration: 5, Func. Count: 59, Neg. LLF: 146.0915492210516
Iteration: 6, Func. Count: 71, Neg. LLF: 145.04137329882803
Iteration: 7, Func. Count: 83, Neg. LLF: 143.83246526909127
Iteration: 8, Func. Count: 95, Neg. LLF: 142.50900705236427
Iteration: 9, Func. Count: 107, Neg. LLF: 142.1711159201925
Iteration: 10, Func. Count: 118, Neg. LLF: 142.1544340668969
Iteration: 11, Func. Count: 129, Neg. LLF: 142.15353924395427
Iteration: 12, Func. Count: 140, Neg. LLF: 142.15349220719645
Iteration: 13, Func. Count: 150, Neg. LLF: 142.1534922344517
Optimization terminated successfully (Exit mode 0)
Current function value: 142.15349220719645
Iterations: 13
Function evaluations: 150
Gradient evaluations: 13
Iteration: 1, Func. Count: 13, Neg. LLF: 187.54332299658012
Iteration: 2, Func. Count: 26, Neg. LLF: 190.4938390065737
Iteration: 3, Func. Count: 39, Neg. LLF: 143.40425022206648
Iteration: 4, Func. Count: 51, Neg. LLF: 152.82373629493117
Iteration: 5, Func. Count: 64, Neg. LLF: 153.3858367643012
Iteration: 6, Func. Count: 79, Neg. LLF: 147.61652756284576
Iteration: 7, Func. Count: 92, Neg. LLF: 142.0947677419829
Iteration: 8, Func. Count: 104, Neg. LLF: 141.9717679943521
Iteration: 9, Func. Count: 116, Neg. LLF: 141.96742074325223
Iteration: 10, Func. Count: 128, Neg. LLF: 141.9668365220969
Iteration: 11, Func. Count: 140, Neg. LLF: 141.96651607420702
Iteration: 12, Func. Count: 152, Neg. LLF: 141.96630050614093
Iteration: 13, Func. Count: 164, Neg. LLF: 141.96621875776117
Iteration: 14, Func. Count: 176, Neg. LLF: 141.9662176691898
Iteration: 15, Func. Count: 187, Neg. LLF: 141.96621766925222
Optimization terminated successfully (Exit mode 0)
Current function value: 141.9662176691898
Iterations: 15
Function evaluations: 187
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 147.1693465591439
Iteration: 2, Func. Count: 19, Neg. LLF: 147.6100508980194
Iteration: 3, Func. Count: 30, Neg. LLF: 161.42144375556722
Iteration: 4, Func. Count: 41, Neg. LLF: 165.89126554479347
Iteration: 5, Func. Count: 51, Neg. LLF: 152.04557839427048
Iteration: 6, Func. Count: 61, Neg. LLF: 145.51273849002092
Iteration: 7, Func. Count: 70, Neg. LLF: 145.72473154205522
Iteration: 8, Func. Count: 80, Neg. LLF: 145.49186549754265
Iteration: 9, Func. Count: 90, Neg. LLF: 145.07185622715124
Iteration: 10, Func. Count: 99, Neg. LLF: 145.08985674396132
Iteration: 11, Func. Count: 109, Neg. LLF: 144.97204429083942
Iteration: 12, Func. Count: 118, Neg. LLF: 144.96182477655148
Iteration: 13, Func. Count: 127, Neg. LLF: 144.95784339311757
Iteration: 14, Func. Count: 136, Neg. LLF: 144.95758508453278
Iteration: 15, Func. Count: 145, Neg. LLF: 144.95757204442296
Iteration: 16, Func. Count: 154, Neg. LLF: 144.95757151462814
Optimization terminated successfully (Exit mode 0)
Current function value: 144.95757151462814
Iterations: 16
Function evaluations: 154
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 915.019758179965
Iteration: 2, Func. Count: 23, Neg. LLF: 168.90147976047254
Iteration: 3, Func. Count: 34, Neg. LLF: 159.08243902416137
Iteration: 4, Func. Count: 45, Neg. LLF: 154.71603371715668
Iteration: 5, Func. Count: 56, Neg. LLF: 144.47868572789548
Iteration: 6, Func. Count: 67, Neg. LLF: 143.63751744894978
Iteration: 7, Func. Count: 77, Neg. LLF: 143.75643792522814
Iteration: 8, Func. Count: 88, Neg. LLF: 144.83893569638778
Iteration: 9, Func. Count: 99, Neg. LLF: 143.53335855066257
Iteration: 10, Func. Count: 109, Neg. LLF: 143.54956375909737
Iteration: 11, Func. Count: 120, Neg. LLF: 143.514733893323
Iteration: 12, Func. Count: 130, Neg. LLF: 143.49889776192103
Iteration: 13, Func. Count: 140, Neg. LLF: 143.49524869412454
Iteration: 14, Func. Count: 150, Neg. LLF: 143.49513511894526
Iteration: 15, Func. Count: 160, Neg. LLF: 143.4951311863252
Iteration: 16, Func. Count: 170, Neg. LLF: 143.49513045418365
Optimization terminated successfully (Exit mode 0)
Current function value: 143.49513045418365
Iterations: 16
Function evaluations: 170
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 1530.0568546969503
Iteration: 2, Func. Count: 24, Neg. LLF: 176.10513714588546
Iteration: 3, Func. Count: 36, Neg. LLF: 143.7655595155034
Iteration: 4, Func. Count: 47, Neg. LLF: 143.74775835119962
Iteration: 5, Func. Count: 59, Neg. LLF: 147.42298623948668
Iteration: 6, Func. Count: 71, Neg. LLF: 206.40984118697926
Iteration: 7, Func. Count: 83, Neg. LLF: 146.85415794904245
Iteration: 8, Func. Count: 95, Neg. LLF: 160.24811458304126
Iteration: 9, Func. Count: 108, Neg. LLF: 146.0647399309901
Iteration: 10, Func. Count: 120, Neg. LLF: 144.72214585389116
Iteration: 11, Func. Count: 132, Neg. LLF: 143.77574330150793
Iteration: 12, Func. Count: 144, Neg. LLF: 142.70903582988961
Iteration: 13, Func. Count: 156, Neg. LLF: 143.12231972935615
Iteration: 14, Func. Count: 168, Neg. LLF: 142.34002177953343
Iteration: 15, Func. Count: 179, Neg. LLF: 142.1829189063697
Iteration: 16, Func. Count: 190, Neg. LLF: 142.15962193258682
Iteration: 17, Func. Count: 201, Neg. LLF: 142.27295449763892
Iteration: 18, Func. Count: 213, Neg. LLF: 142.1796758373985
Iteration: 19, Func. Count: 225, Neg. LLF: 142.15341258814297
Iteration: 20, Func. Count: 236, Neg. LLF: 142.1534120342317
Optimization terminated successfully (Exit mode 0)
Current function value: 142.1534120342317
Iterations: 20
Function evaluations: 236
Gradient evaluations: 20
Iteration: 1, Func. Count: 13, Neg. LLF: 424.91773549200644
Iteration: 2, Func. Count: 26, Neg. LLF: 143.47604287909894
Iteration: 3, Func. Count: 38, Neg. LLF: 148.38304962689764
Iteration: 4, Func. Count: 51, Neg. LLF: 144.80670090597542
Iteration: 5, Func. Count: 64, Neg. LLF: 152.20116691441163
Iteration: 6, Func. Count: 77, Neg. LLF: 145.74340375196684
Iteration: 7, Func. Count: 90, Neg. LLF: 145.4464791071224
Iteration: 8, Func. Count: 103, Neg. LLF: 143.56994122585274
Iteration: 9, Func. Count: 116, Neg. LLF: 142.40539843498496
Iteration: 10, Func. Count: 128, Neg. LLF: 142.2032683330539
Iteration: 11, Func. Count: 140, Neg. LLF: 142.1658322336556
Iteration: 12, Func. Count: 152, Neg. LLF: 142.1539602056155
Iteration: 13, Func. Count: 164, Neg. LLF: 142.16093144929232
Iteration: 14, Func. Count: 177, Neg. LLF: 142.154068816727
Iteration: 15, Func. Count: 190, Neg. LLF: 142.15341228143708
Iteration: 16, Func. Count: 201, Neg. LLF: 142.153412309763
Optimization terminated successfully (Exit mode 0)
Current function value: 142.15341228143708
Iterations: 16
Function evaluations: 201
Gradient evaluations: 16
Iteration: 1, Func. Count: 14, Neg. LLF: 187.4732442874168
Iteration: 2, Func. Count: 28, Neg. LLF: 182.52861481504385
Iteration: 3, Func. Count: 42, Neg. LLF: 143.46003126665602
Iteration: 4, Func. Count: 55, Neg. LLF: 173.44188657267375
Iteration: 5, Func. Count: 69, Neg. LLF: 164.33534904718672
Iteration: 6, Func. Count: 85, Neg. LLF: 148.07790372313218
Iteration: 7, Func. Count: 100, Neg. LLF: 142.2530553664841
Iteration: 8, Func. Count: 113, Neg. LLF: 143.17355204189698
Iteration: 9, Func. Count: 127, Neg. LLF: 142.59450126033462
Iteration: 10, Func. Count: 141, Neg. LLF: 141.9104294653564
Iteration: 11, Func. Count: 154, Neg. LLF: 142.10280074768718
Iteration: 12, Func. Count: 168, Neg. LLF: 141.90173684427387
Iteration: 13, Func. Count: 182, Neg. LLF: 141.8538863563944
Iteration: 14, Func. Count: 195, Neg. LLF: 141.85581993728965
Iteration: 15, Func. Count: 209, Neg. LLF: 141.85163720285644
Iteration: 16, Func. Count: 222, Neg. LLF: 141.8507416462125
Iteration: 17, Func. Count: 235, Neg. LLF: 141.8506203777286
Iteration: 18, Func. Count: 248, Neg. LLF: 141.85056481185774
Iteration: 19, Func. Count: 261, Neg. LLF: 141.85056380038017
Iteration: 20, Func. Count: 273, Neg. LLF: 141.85056380039728
Optimization terminated successfully (Exit mode 0)
Current function value: 141.85056380038017
Iterations: 20
Function evaluations: 273
Gradient evaluations: 20
Iteration: 1, Func. Count: 11, Neg. LLF: 147.472899424035
Iteration: 2, Func. Count: 21, Neg. LLF: 147.62464434946094
Iteration: 3, Func. Count: 33, Neg. LLF: 169.37061561670765
Iteration: 4, Func. Count: 45, Neg. LLF: 192.77336644378764
Iteration: 5, Func. Count: 56, Neg. LLF: 151.08633860855562
Iteration: 6, Func. Count: 67, Neg. LLF: 145.5921543681758
Iteration: 7, Func. Count: 77, Neg. LLF: 145.43938922182593
Iteration: 8, Func. Count: 88, Neg. LLF: 144.9867053569847
Iteration: 9, Func. Count: 98, Neg. LLF: 144.90213627772707
Iteration: 10, Func. Count: 108, Neg. LLF: 144.82321071042253
Iteration: 11, Func. Count: 118, Neg. LLF: 144.80284996190318
Iteration: 12, Func. Count: 128, Neg. LLF: 144.78493962659985
Iteration: 13, Func. Count: 138, Neg. LLF: 144.78307911247043
Iteration: 14, Func. Count: 148, Neg. LLF: 144.7821407255374
Iteration: 15, Func. Count: 158, Neg. LLF: 144.78202697777263
Iteration: 16, Func. Count: 168, Neg. LLF: 144.78199821979396
Iteration: 17, Func. Count: 177, Neg. LLF: 144.78199821971705
Optimization terminated successfully (Exit mode 0)
Current function value: 144.78199821979396
Iterations: 17
Function evaluations: 177
Gradient evaluations: 17
Iteration: 1, Func. Count: 12, Neg. LLF: 925.1262029228874
Iteration: 2, Func. Count: 25, Neg. LLF: 155.65442224865944
Iteration: 3, Func. Count: 37, Neg. LLF: 144.0178302215285
Iteration: 4, Func. Count: 48, Neg. LLF: 163.33829085144845
Iteration: 5, Func. Count: 60, Neg. LLF: 159.70299774746331
Iteration: 6, Func. Count: 73, Neg. LLF: 144.54831144520267
Iteration: 7, Func. Count: 85, Neg. LLF: 143.96339149203354
Iteration: 8, Func. Count: 97, Neg. LLF: 143.8869647669289
Iteration: 9, Func. Count: 109, Neg. LLF: 143.44687302296225
Iteration: 10, Func. Count: 120, Neg. LLF: 143.43119966774412
Iteration: 11, Func. Count: 131, Neg. LLF: 143.42805833364105
Iteration: 12, Func. Count: 142, Neg. LLF: 143.42769666710925
Iteration: 13, Func. Count: 153, Neg. LLF: 143.42768402885469
Iteration: 14, Func. Count: 163, Neg. LLF: 143.42768402891534
Optimization terminated successfully (Exit mode 0)
Current function value: 143.42768402885469
Iterations: 14
Function evaluations: 163
Gradient evaluations: 14
Iteration: 1, Func. Count: 13, Neg. LLF: 1551.467932729791
Iteration: 2, Func. Count: 26, Neg. LLF: 152.94063219392058
Iteration: 3, Func. Count: 39, Neg. LLF: 144.25259580354202
Iteration: 4, Func. Count: 52, Neg. LLF: 142.68671428746032
Iteration: 5, Func. Count: 64, Neg. LLF: 153.4177323159414
Iteration: 6, Func. Count: 77, Neg. LLF: 142.71781786241334
Iteration: 7, Func. Count: 90, Neg. LLF: 142.28164187489628
Iteration: 8, Func. Count: 102, Neg. LLF: 142.17896594311117
Iteration: 9, Func. Count: 114, Neg. LLF: 142.1925365921433
Iteration: 10, Func. Count: 127, Neg. LLF: 142.15953009656488
Iteration: 11, Func. Count: 139, Neg. LLF: 142.15445445452153
Iteration: 12, Func. Count: 151, Neg. LLF: 142.15512549483984
Iteration: 13, Func. Count: 164, Neg. LLF: 142.1535513535619
Iteration: 14, Func. Count: 176, Neg. LLF: 142.1534143616563
Iteration: 15, Func. Count: 188, Neg. LLF: 142.15341232516002
Iteration: 16, Func. Count: 199, Neg. LLF: 142.15341232516667
Optimization terminated successfully (Exit mode 0)
Current function value: 142.15341232516002
Iterations: 17
Function evaluations: 199
Gradient evaluations: 16
Iteration: 1, Func. Count: 14, Neg. LLF: 425.9723347887043
Iteration: 2, Func. Count: 28, Neg. LLF: 154.58578904825143
Iteration: 3, Func. Count: 42, Neg. LLF: 144.220136308813
Iteration: 4, Func. Count: 55, Neg. LLF: 146.10001741034895
Iteration: 5, Func. Count: 69, Neg. LLF: 155.84730260838586
Iteration: 6, Func. Count: 83, Neg. LLF: 142.4031135533544
Iteration: 7, Func. Count: 96, Neg. LLF: 142.9179008778873
Iteration: 8, Func. Count: 110, Neg. LLF: 146.15249877096323
Iteration: 9, Func. Count: 124, Neg. LLF: 140.90155423267663
Iteration: 10, Func. Count: 137, Neg. LLF: 140.23629188899307
Iteration: 11, Func. Count: 150, Neg. LLF: 140.00788264199545
Iteration: 12, Func. Count: 163, Neg. LLF: 140.20207302384455
Iteration: 13, Func. Count: 177, Neg. LLF: 139.8026890198261
Iteration: 14, Func. Count: 191, Neg. LLF: 139.76184699992925
Iteration: 15, Func. Count: 204, Neg. LLF: 139.7617216291066
Iteration: 16, Func. Count: 217, Neg. LLF: 139.76163105121037
Iteration: 17, Func. Count: 230, Neg. LLF: 139.76162991172427
Iteration: 18, Func. Count: 242, Neg. LLF: 139.76162988437315
Optimization terminated successfully (Exit mode 0)
Current function value: 139.76162991172427
Iterations: 18
Function evaluations: 242
Gradient evaluations: 18
Iteration: 1, Func. Count: 15, Neg. LLF: 187.46921618353028
Iteration: 2, Func. Count: 30, Neg. LLF: 186.900346682029
Iteration: 3, Func. Count: 46, Neg. LLF: 143.85150072929002
Iteration: 4, Func. Count: 60, Neg. LLF: 176.55658791446785
Iteration: 5, Func. Count: 75, Neg. LLF: 12602418.13470835
Iteration: 6, Func. Count: 91, Neg. LLF: 146.708049969732
Iteration: 7, Func. Count: 107, Neg. LLF: 142.42375433377873
Iteration: 8, Func. Count: 121, Neg. LLF: 141.96169442425395
Iteration: 9, Func. Count: 135, Neg. LLF: 142.31386411043593
Iteration: 10, Func. Count: 150, Neg. LLF: 142.24684919806066
Iteration: 11, Func. Count: 165, Neg. LLF: 141.7287024998875
Iteration: 12, Func. Count: 179, Neg. LLF: 141.6949595692601
Iteration: 13, Func. Count: 193, Neg. LLF: 141.68566110952037
Iteration: 14, Func. Count: 207, Neg. LLF: 141.68391053543954
Iteration: 15, Func. Count: 221, Neg. LLF: 141.68347621782272
Iteration: 16, Func. Count: 235, Neg. LLF: 141.68346580418776
Iteration: 17, Func. Count: 249, Neg. LLF: 141.68346354962992
Iteration: 18, Func. Count: 263, Neg. LLF: 141.70604125462555
Optimization terminated successfully (Exit mode 0)
Current function value: 141.6834635484513
Iterations: 19
Function evaluations: 267
Gradient evaluations: 18
Iteration: 1, Func. Count: 12, Neg. LLF: 147.3267869806214
Iteration: 2, Func. Count: 23, Neg. LLF: 147.52864741936733
Iteration: 3, Func. Count: 36, Neg. LLF: 171.16708271546165
Iteration: 4, Func. Count: 49, Neg. LLF: 190.96236263188936
Iteration: 5, Func. Count: 61, Neg. LLF: 146.96024144037372
Iteration: 6, Func. Count: 73, Neg. LLF: 146.93261357033023
Iteration: 7, Func. Count: 85, Neg. LLF: 146.61547224106283
Iteration: 8, Func. Count: 97, Neg. LLF: 146.57651720777187
Iteration: 9, Func. Count: 109, Neg. LLF: 144.5917723860426
Iteration: 10, Func. Count: 120, Neg. LLF: 144.28736313519562
Iteration: 11, Func. Count: 131, Neg. LLF: 143.8674986188318
Iteration: 12, Func. Count: 142, Neg. LLF: 143.81287845678085
Iteration: 13, Func. Count: 153, Neg. LLF: 143.7457628125035
Iteration: 14, Func. Count: 164, Neg. LLF: 143.71979869892704
Iteration: 15, Func. Count: 175, Neg. LLF: 143.7046818364948
Iteration: 16, Func. Count: 186, Neg. LLF: 143.69754612716275
Iteration: 17, Func. Count: 197, Neg. LLF: 143.70043908482384
Iteration: 18, Func. Count: 209, Neg. LLF: 143.7210362676971
Iteration: 19, Func. Count: 221, Neg. LLF: 143.694864341002
Iteration: 20, Func. Count: 232, Neg. LLF: 143.69484342569612
Iteration: 21, Func. Count: 243, Neg. LLF: 143.69483713420274
Iteration: 22, Func. Count: 254, Neg. LLF: 143.69483561759566
Iteration: 23, Func. Count: 264, Neg. LLF: 143.69483573667554
Optimization terminated successfully (Exit mode 0)
Current function value: 143.69483561759566
Iterations: 23
Function evaluations: 264
Gradient evaluations: 23
Iteration: 1, Func. Count: 13, Neg. LLF: 933.7576885040027
Iteration: 2, Func. Count: 27, Neg. LLF: 173.2670989650695
Iteration: 3, Func. Count: 40, Neg. LLF: 163.26593462174012
Iteration: 4, Func. Count: 53, Neg. LLF: 142.2955279741596
Iteration: 5, Func. Count: 65, Neg. LLF: 141.96784515607206
Iteration: 6, Func. Count: 78, Neg. LLF: 145.82860222550156
Iteration: 7, Func. Count: 92, Neg. LLF: 153.9158633916292
Iteration: 8, Func. Count: 106, Neg. LLF: 140.91768434502
Iteration: 9, Func. Count: 118, Neg. LLF: 140.63616341862067
Iteration: 10, Func. Count: 130, Neg. LLF: 140.58668214589025
Iteration: 11, Func. Count: 142, Neg. LLF: 140.5799409182812
Iteration: 12, Func. Count: 154, Neg. LLF: 140.57935532691903
Iteration: 13, Func. Count: 166, Neg. LLF: 140.57934111229926
Iteration: 14, Func. Count: 178, Neg. LLF: 140.57933751196427
Iteration: 15, Func. Count: 190, Neg. LLF: 140.57933607080136
Iteration: 16, Func. Count: 201, Neg. LLF: 140.57933601476873
Optimization terminated successfully (Exit mode 0)
Current function value: 140.57933607080136
Iterations: 16
Function evaluations: 201
Gradient evaluations: 16
Iteration: 1, Func. Count: 14, Neg. LLF: 1563.286676863118
Iteration: 2, Func. Count: 28, Neg. LLF: 169.49995798785628
Iteration: 3, Func. Count: 42, Neg. LLF: 156.83848429057076
Iteration: 4, Func. Count: 56, Neg. LLF: 146.2026527457901
Iteration: 5, Func. Count: 70, Neg. LLF: 146.0145873871911
Iteration: 6, Func. Count: 84, Neg. LLF: 145.7874183203548
Iteration: 7, Func. Count: 98, Neg. LLF: 142.79921415045354
Iteration: 8, Func. Count: 112, Neg. LLF: 145.40917502838954
Iteration: 9, Func. Count: 126, Neg. LLF: 140.72332457896695
Iteration: 10, Func. Count: 139, Neg. LLF: 140.62129988992993
Iteration: 11, Func. Count: 152, Neg. LLF: 140.58166193268426
Iteration: 12, Func. Count: 165, Neg. LLF: 140.57946234170433
Iteration: 13, Func. Count: 179, Neg. LLF: 140.5730569332866
Iteration: 14, Func. Count: 192, Neg. LLF: 140.57299605682945
Iteration: 15, Func. Count: 205, Neg. LLF: 140.57299412423157
Iteration: 16, Func. Count: 218, Neg. LLF: 140.57299357728496
Optimization terminated successfully (Exit mode 0)
Current function value: 140.57299357728496
Iterations: 16
Function evaluations: 218
Gradient evaluations: 16
Iteration: 1, Func. Count: 15, Neg. LLF: 426.3285228648584
Iteration: 2, Func. Count: 30, Neg. LLF: 173.59463437569696
Iteration: 3, Func. Count: 45, Neg. LLF: 148.94693634899275
Iteration: 4, Func. Count: 60, Neg. LLF: 144.1084022051262
Iteration: 5, Func. Count: 75, Neg. LLF: 141.04160797542644
Iteration: 6, Func. Count: 89, Neg. LLF: 142.4520208860491
Iteration: 7, Func. Count: 104, Neg. LLF: 140.764190066942
Iteration: 8, Func. Count: 118, Neg. LLF: 142.33730444243497
Iteration: 9, Func. Count: 134, Neg. LLF: 141.37372253564513
Iteration: 10, Func. Count: 149, Neg. LLF: 140.61506990615314
Iteration: 11, Func. Count: 163, Neg. LLF: 140.57949710239868
Iteration: 12, Func. Count: 177, Neg. LLF: 140.57368265592913
Iteration: 13, Func. Count: 191, Neg. LLF: 140.5731175397281
Iteration: 14, Func. Count: 205, Neg. LLF: 140.57300164381056
Iteration: 15, Func. Count: 219, Neg. LLF: 140.5729942559312
Iteration: 16, Func. Count: 232, Neg. LLF: 140.5729942711559
Optimization terminated successfully (Exit mode 0)
Current function value: 140.5729942559312
Iterations: 16
Function evaluations: 232
Gradient evaluations: 16
Iteration: 1, Func. Count: 16, Neg. LLF: 187.42862673661338
Iteration: 2, Func. Count: 32, Neg. LLF: 214.63537611001286
Iteration: 3, Func. Count: 48, Neg. LLF: 160.1062668615401
Iteration: 4, Func. Count: 64, Neg. LLF: 149.67524502135532
Iteration: 5, Func. Count: 80, Neg. LLF: 185.94750742496527
Iteration: 6, Func. Count: 96, Neg. LLF: 283.12602290571556
Iteration: 7, Func. Count: 112, Neg. LLF: 148.3058412817036
Iteration: 8, Func. Count: 128, Neg. LLF: 158.99692450897706
Iteration: 9, Func. Count: 144, Neg. LLF: 142.85886782314375
Iteration: 10, Func. Count: 160, Neg. LLF: 141.0876192067154
Iteration: 11, Func. Count: 175, Neg. LLF: 140.74403148979798
Iteration: 12, Func. Count: 190, Neg. LLF: 140.59860436329816
Iteration: 13, Func. Count: 205, Neg. LLF: 140.6142342974361
Iteration: 14, Func. Count: 221, Neg. LLF: 140.57381655977207
Iteration: 15, Func. Count: 236, Neg. LLF: 140.57307414271773
Iteration: 16, Func. Count: 251, Neg. LLF: 140.57300148696643
Iteration: 17, Func. Count: 266, Neg. LLF: 140.57299358532822
Iteration: 18, Func. Count: 280, Neg. LLF: 140.57299371205553
Optimization terminated successfully (Exit mode 0)
Current function value: 140.57299358532822
Iterations: 18
Function evaluations: 280
Gradient evaluations: 18
Iteration: 1, Func. Count: 6, Neg. LLF: 18973674.70918964
Iteration: 2, Func. Count: 13, Neg. LLF: 229.08738231985998
Iteration: 3, Func. Count: 21, Neg. LLF: 312.769549558847
Iteration: 4, Func. Count: 27, Neg. LLF: 204.87699960798
Iteration: 5, Func. Count: 33, Neg. LLF: 155.59980259969583
Iteration: 6, Func. Count: 39, Neg. LLF: 146.62599385875342
Iteration: 7, Func. Count: 45, Neg. LLF: 142.98888803133676
Iteration: 8, Func. Count: 51, Neg. LLF: 142.5266425197186
Iteration: 9, Func. Count: 57, Neg. LLF: 142.26972133012924
Iteration: 10, Func. Count: 62, Neg. LLF: 142.26603819034958
Iteration: 11, Func. Count: 67, Neg. LLF: 142.26235104249923
Iteration: 12, Func. Count: 72, Neg. LLF: 142.2622980857213
Iteration: 13, Func. Count: 77, Neg. LLF: 142.26229692093625
Iteration: 14, Func. Count: 81, Neg. LLF: 142.26229692096032
Optimization terminated successfully (Exit mode 0)
Current function value: 142.26229692093625
Iterations: 14
Function evaluations: 81
Gradient evaluations: 14
Iteration: 1, Func. Count: 5, Neg. LLF: 146.29530142165365
Iteration: 2, Func. Count: 10, Neg. LLF: 154.94404922689753
Iteration: 3, Func. Count: 15, Neg. LLF: 132.8019785917591
Iteration: 4, Func. Count: 19, Neg. LLF: 132.7820165714741
Iteration: 5, Func. Count: 23, Neg. LLF: 132.78087130813344
Iteration: 6, Func. Count: 27, Neg. LLF: 132.78047127864443
Iteration: 7, Func. Count: 31, Neg. LLF: 132.78010743644128
Iteration: 8, Func. Count: 35, Neg. LLF: 132.7800124908619
Iteration: 9, Func. Count: 39, Neg. LLF: 132.78000043429384
Iteration: 10, Func. Count: 42, Neg. LLF: 132.7800004342856
Optimization terminated successfully (Exit mode 0)
Current function value: 132.78000043429384
Iterations: 10
Function evaluations: 42
Gradient evaluations: 10
Iteration: 1, Func. Count: 6, Neg. LLF: 186.07091713894695
Iteration: 2, Func. Count: 12, Neg. LLF: 141.6703427161132
Iteration: 3, Func. Count: 19, Neg. LLF: 134.48832408019183
Iteration: 4, Func. Count: 25, Neg. LLF: 133.20272714569413
Iteration: 5, Func. Count: 30, Neg. LLF: 133.06473007353736
Iteration: 6, Func. Count: 35, Neg. LLF: 133.52649192133453
Iteration: 7, Func. Count: 41, Neg. LLF: 133.89716964456045
Iteration: 8, Func. Count: 47, Neg. LLF: 132.85424724665424
Iteration: 9, Func. Count: 53, Neg. LLF: 131.80431685036268
Iteration: 10, Func. Count: 58, Neg. LLF: 157.63898667952708
Iteration: 11, Func. Count: 66, Neg. LLF: 131.67492545442275
Iteration: 12, Func. Count: 71, Neg. LLF: 131.6641472514799
Iteration: 13, Func. Count: 76, Neg. LLF: 131.66168018403107
Iteration: 14, Func. Count: 81, Neg. LLF: 131.6616779030726
Iteration: 15, Func. Count: 85, Neg. LLF: 131.66167790315572
Optimization terminated successfully (Exit mode 0)
Current function value: 131.6616779030726
Iterations: 15
Function evaluations: 85
Gradient evaluations: 15
Iteration: 1, Func. Count: 7, Neg. LLF: 180.86271515627104
Iteration: 2, Func. Count: 14, Neg. LLF: 136.2983407300437
Iteration: 3, Func. Count: 21, Neg. LLF: 132.19940786156383
Iteration: 4, Func. Count: 27, Neg. LLF: 132.62398029382078
Iteration: 5, Func. Count: 34, Neg. LLF: 132.17848381230976
Iteration: 6, Func. Count: 40, Neg. LLF: 132.17216311184816
Iteration: 7, Func. Count: 46, Neg. LLF: 132.17163105835164
Iteration: 8, Func. Count: 52, Neg. LLF: 132.1698939296377
Iteration: 9, Func. Count: 58, Neg. LLF: 132.16956997178144
Iteration: 10, Func. Count: 64, Neg. LLF: 132.16953493573916
Iteration: 11, Func. Count: 69, Neg. LLF: 132.16953493568482
Optimization terminated successfully (Exit mode 0)
Current function value: 132.16953493573916
Iterations: 11
Function evaluations: 69
Gradient evaluations: 11
Iteration: 1, Func. Count: 8, Neg. LLF: 146.22084976678673
Iteration: 2, Func. Count: 16, Neg. LLF: 140.92314769365657
Iteration: 3, Func. Count: 24, Neg. LLF: 133.53566709316848
Iteration: 4, Func. Count: 32, Neg. LLF: 132.42696105949528
Iteration: 5, Func. Count: 39, Neg. LLF: 132.3846153565752
Iteration: 6, Func. Count: 46, Neg. LLF: 132.20424549472511
Iteration: 7, Func. Count: 53, Neg. LLF: 132.32468190484448
Iteration: 8, Func. Count: 61, Neg. LLF: 132.1827856473791
Iteration: 9, Func. Count: 69, Neg. LLF: 132.1696217051158
Iteration: 10, Func. Count: 76, Neg. LLF: 132.16954544501783
Iteration: 11, Func. Count: 83, Neg. LLF: 132.16953504353617
Iteration: 12, Func. Count: 89, Neg. LLF: 132.16953507947102
Optimization terminated successfully (Exit mode 0)
Current function value: 132.16953504353617
Iterations: 12
Function evaluations: 89
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 146.71162169375555
Iteration: 2, Func. Count: 18, Neg. LLF: 149.446187546644
Iteration: 3, Func. Count: 27, Neg. LLF: 135.32247233229825
Iteration: 4, Func. Count: 36, Neg. LLF: 132.09547931580516
Iteration: 5, Func. Count: 44, Neg. LLF: 131.96400894789946
Iteration: 6, Func. Count: 52, Neg. LLF: 131.88172063495395
Iteration: 7, Func. Count: 60, Neg. LLF: 131.78628138997024
Iteration: 8, Func. Count: 68, Neg. LLF: 131.76112951337007
Iteration: 9, Func. Count: 76, Neg. LLF: 131.72876996313968
Iteration: 10, Func. Count: 84, Neg. LLF: 131.71405466276144
Iteration: 11, Func. Count: 92, Neg. LLF: 131.69445626954806
Iteration: 12, Func. Count: 100, Neg. LLF: 133.4301850600777
Iteration: 13, Func. Count: 109, Neg. LLF: 133.2631600482057
Iteration: 14, Func. Count: 118, Neg. LLF: 133.19292469693306
Iteration: 15, Func. Count: 127, Neg. LLF: 133.03352492828222
Iteration: 16, Func. Count: 136, Neg. LLF: 141.5959999095941
Iteration: 17, Func. Count: 146, Neg. LLF: 131.8560445583223
Iteration: 18, Func. Count: 155, Neg. LLF: 131.93125646042841
Iteration: 19, Func. Count: 164, Neg. LLF: 133.67030240185065
Iteration: 20, Func. Count: 173, Neg. LLF: 131.24954673109997
Iteration: 21, Func. Count: 182, Neg. LLF: 131.68574210221752
Iteration: 22, Func. Count: 191, Neg. LLF: 130.5643542960825
Iteration: 23, Func. Count: 199, Neg. LLF: 130.46906001193997
Iteration: 24, Func. Count: 207, Neg. LLF: 130.46372534252674
Iteration: 25, Func. Count: 215, Neg. LLF: 130.4634327486375
Iteration: 26, Func. Count: 223, Neg. LLF: 130.46341028684418
Iteration: 27, Func. Count: 231, Neg. LLF: 130.4670215315923
Optimization terminated successfully (Exit mode 0)
Current function value: 130.46341020411043
Iterations: 28
Function evaluations: 233
Gradient evaluations: 27
Iteration: 1, Func. Count: 6, Neg. LLF: 142.35563714994197
Iteration: 2, Func. Count: 12, Neg. LLF: 188.54124589850863
Iteration: 3, Func. Count: 18, Neg. LLF: 132.8122244312772
Iteration: 4, Func. Count: 23, Neg. LLF: 132.79501765341485
Iteration: 5, Func. Count: 28, Neg. LLF: 132.78523476319833
Iteration: 6, Func. Count: 33, Neg. LLF: 132.78418759005808
Iteration: 7, Func. Count: 38, Neg. LLF: 132.78054734363832
Iteration: 8, Func. Count: 43, Neg. LLF: 132.78000798463353
Iteration: 9, Func. Count: 48, Neg. LLF: 132.78000047056145
Iteration: 10, Func. Count: 52, Neg. LLF: 132.78000051701835
Optimization terminated successfully (Exit mode 0)
Current function value: 132.78000047056145
Iterations: 10
Function evaluations: 52
Gradient evaluations: 10
Iteration: 1, Func. Count: 7, Neg. LLF: 19884325.19501978
Iteration: 2, Func. Count: 15, Neg. LLF: 132.99441597450303
Iteration: 3, Func. Count: 22, Neg. LLF: 132.4161020924291
Iteration: 4, Func. Count: 28, Neg. LLF: 134.30763742706137
Iteration: 5, Func. Count: 35, Neg. LLF: 134.18934677418926
Iteration: 6, Func. Count: 42, Neg. LLF: 133.7091188969243
Iteration: 7, Func. Count: 49, Neg. LLF: 133.01373189304263
Iteration: 8, Func. Count: 56, Neg. LLF: 132.58645430773817
Iteration: 9, Func. Count: 63, Neg. LLF: 132.27458100684288
Iteration: 10, Func. Count: 70, Neg. LLF: 132.01014707347383
Iteration: 11, Func. Count: 76, Neg. LLF: 131.87525177007012
Iteration: 12, Func. Count: 82, Neg. LLF: 131.6620845329859
Iteration: 13, Func. Count: 88, Neg. LLF: 131.6616797089364
Iteration: 14, Func. Count: 94, Neg. LLF: 131.66167794162146
Iteration: 15, Func. Count: 99, Neg. LLF: 131.66167794152452
Optimization terminated successfully (Exit mode 0)
Current function value: 131.66167794162146
Iterations: 15
Function evaluations: 99
Gradient evaluations: 15
Iteration: 1, Func. Count: 8, Neg. LLF: 188.50329037065708
Iteration: 2, Func. Count: 16, Neg. LLF: 223.29155384535565
Iteration: 3, Func. Count: 25, Neg. LLF: 132.74047969779403
Iteration: 4, Func. Count: 32, Neg. LLF: 132.28818663031225
Iteration: 5, Func. Count: 39, Neg. LLF: 132.17882387991904
Iteration: 6, Func. Count: 46, Neg. LLF: 132.1707994385465
Iteration: 7, Func. Count: 53, Neg. LLF: 132.1700184541179
Iteration: 8, Func. Count: 60, Neg. LLF: 132.16962852427736
Iteration: 9, Func. Count: 67, Neg. LLF: 132.16954563970546
Iteration: 10, Func. Count: 74, Neg. LLF: 132.16953511080325
Iteration: 11, Func. Count: 80, Neg. LLF: 132.16953511070528
Optimization terminated successfully (Exit mode 0)
Current function value: 132.16953511080325
Iterations: 11
Function evaluations: 80
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 205.46655524342046
Iteration: 2, Func. Count: 18, Neg. LLF: 7069322.755371091
Iteration: 3, Func. Count: 27, Neg. LLF: 132.80644911176154
Iteration: 4, Func. Count: 35, Neg. LLF: 132.27004342371288
Iteration: 5, Func. Count: 43, Neg. LLF: 132.1913179879753
Iteration: 6, Func. Count: 51, Neg. LLF: 132.1722702926379
Iteration: 7, Func. Count: 59, Neg. LLF: 132.17001358654028
Iteration: 8, Func. Count: 67, Neg. LLF: 132.1695717510559
Iteration: 9, Func. Count: 75, Neg. LLF: 132.1695394977315
Iteration: 10, Func. Count: 83, Neg. LLF: 132.1695348166307
Iteration: 11, Func. Count: 90, Neg. LLF: 132.16953485260774
Optimization terminated successfully (Exit mode 0)
Current function value: 132.1695348166307
Iterations: 11
Function evaluations: 90
Gradient evaluations: 11
Iteration: 1, Func. Count: 10, Neg. LLF: 207.0048013225075
Iteration: 2, Func. Count: 20, Neg. LLF: 6973957.060978354
Iteration: 3, Func. Count: 30, Neg. LLF: 133.02235819889336
Iteration: 4, Func. Count: 40, Neg. LLF: 131.82783554521495
Iteration: 5, Func. Count: 49, Neg. LLF: 130.8910994758566
Iteration: 6, Func. Count: 58, Neg. LLF: 130.68699388488005
Iteration: 7, Func. Count: 67, Neg. LLF: 135.7995952632483
Iteration: 8, Func. Count: 79, Neg. LLF: 130.745846646858
Iteration: 9, Func. Count: 89, Neg. LLF: 130.46572678430212
Iteration: 10, Func. Count: 98, Neg. LLF: 130.46348931151465
Iteration: 11, Func. Count: 107, Neg. LLF: 130.4634055459705
Iteration: 12, Func. Count: 116, Neg. LLF: 130.46337891043953
Iteration: 13, Func. Count: 125, Neg. LLF: 130.46337396850691
Iteration: 14, Func. Count: 133, Neg. LLF: 130.46337396843458
Optimization terminated successfully (Exit mode 0)
Current function value: 130.46337396850691
Iterations: 14
Function evaluations: 133
Gradient evaluations: 14
Iteration: 1, Func. Count: 7, Neg. LLF: 139.1183353408432
Iteration: 2, Func. Count: 15, Neg. LLF: 158.86968017665586
Iteration: 3, Func. Count: 22, Neg. LLF: 134.43280290397385
Iteration: 4, Func. Count: 29, Neg. LLF: 132.66759786091532
Iteration: 5, Func. Count: 35, Neg. LLF: 132.62199638492174
Iteration: 6, Func. Count: 41, Neg. LLF: 132.61253593986604
Iteration: 7, Func. Count: 47, Neg. LLF: 132.60789493369202
Iteration: 8, Func. Count: 53, Neg. LLF: 132.58977704057367
Iteration: 9, Func. Count: 59, Neg. LLF: 132.58333374734232
Iteration: 10, Func. Count: 65, Neg. LLF: 132.56923411134068
Iteration: 11, Func. Count: 71, Neg. LLF: 132.5477384505172
Iteration: 12, Func. Count: 77, Neg. LLF: 132.7341959104699
Iteration: 13, Func. Count: 84, Neg. LLF: 132.5574198896198
Iteration: 14, Func. Count: 91, Neg. LLF: 132.52707122895708
Iteration: 15, Func. Count: 97, Neg. LLF: 132.52701429115635
Iteration: 16, Func. Count: 103, Neg. LLF: 132.5270124331523
Iteration: 17, Func. Count: 109, Neg. LLF: 132.52701082608823
Iteration: 18, Func. Count: 114, Neg. LLF: 132.52701082608547
Optimization terminated successfully (Exit mode 0)
Current function value: 132.52701082608823
Iterations: 18
Function evaluations: 114
Gradient evaluations: 18
Iteration: 1, Func. Count: 8, Neg. LLF: 178.17798562051934
Iteration: 2, Func. Count: 16, Neg. LLF: 153.0557196183259
Iteration: 3, Func. Count: 24, Neg. LLF: 132.56803074335562
Iteration: 4, Func. Count: 31, Neg. LLF: 132.683457150735
Iteration: 5, Func. Count: 39, Neg. LLF: 132.44929464923965
Iteration: 6, Func. Count: 46, Neg. LLF: 132.4427237545908
Iteration: 7, Func. Count: 53, Neg. LLF: 132.4363564335996
Iteration: 8, Func. Count: 60, Neg. LLF: 132.43373749647958
Iteration: 9, Func. Count: 67, Neg. LLF: 132.4335014707098
Iteration: 10, Func. Count: 74, Neg. LLF: 132.4334916465986
Iteration: 11, Func. Count: 80, Neg. LLF: 132.43349164660546
Optimization terminated successfully (Exit mode 0)
Current function value: 132.4334916465986
Iterations: 11
Function evaluations: 80
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 181.05063472967421
Iteration: 2, Func. Count: 18, Neg. LLF: 157.91434497746712
Iteration: 3, Func. Count: 27, Neg. LLF: 132.36562010983099
Iteration: 4, Func. Count: 35, Neg. LLF: 132.5191461500642
Iteration: 5, Func. Count: 44, Neg. LLF: 141.6487997421682
Iteration: 6, Func. Count: 53, Neg. LLF: 131.9298406535292
Iteration: 7, Func. Count: 61, Neg. LLF: 131.92803161978875
Iteration: 8, Func. Count: 69, Neg. LLF: 131.9273301039562
Iteration: 9, Func. Count: 77, Neg. LLF: 131.92692409123265
Iteration: 10, Func. Count: 85, Neg. LLF: 131.92688518259155
Iteration: 11, Func. Count: 93, Neg. LLF: 131.92686934517604
Iteration: 12, Func. Count: 101, Neg. LLF: 131.92686465344136
Iteration: 13, Func. Count: 109, Neg. LLF: 131.92686366019825
Optimization terminated successfully (Exit mode 0)
Current function value: 131.92686366019825
Iterations: 13
Function evaluations: 109
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 136.50515533599946
Iteration: 2, Func. Count: 21, Neg. LLF: 135.51510385142538
Iteration: 3, Func. Count: 31, Neg. LLF: 139.77574198164817
Iteration: 4, Func. Count: 41, Neg. LLF: 132.35273581772924
Iteration: 5, Func. Count: 50, Neg. LLF: 133.0506083527333
Iteration: 6, Func. Count: 61, Neg. LLF: 136.59275106089606
Iteration: 7, Func. Count: 72, Neg. LLF: 132.30412335226995
Iteration: 8, Func. Count: 82, Neg. LLF: 131.9838224735407
Iteration: 9, Func. Count: 91, Neg. LLF: 131.9480606180352
Iteration: 10, Func. Count: 100, Neg. LLF: 131.94071752350206
Iteration: 11, Func. Count: 109, Neg. LLF: 131.93279358537882
Iteration: 12, Func. Count: 118, Neg. LLF: 131.9280694014458
Iteration: 13, Func. Count: 127, Neg. LLF: 131.92694458718623
Iteration: 14, Func. Count: 136, Neg. LLF: 131.92687207662036
Iteration: 15, Func. Count: 145, Neg. LLF: 131.92686499629767
Iteration: 16, Func. Count: 154, Neg. LLF: 131.92686404589037
Optimization terminated successfully (Exit mode 0)
Current function value: 131.92686404589037
Iterations: 16
Function evaluations: 154
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 135.52653646206656
Iteration: 2, Func. Count: 23, Neg. LLF: 135.65975643185396
Iteration: 3, Func. Count: 34, Neg. LLF: 138.31589802671908
Iteration: 4, Func. Count: 45, Neg. LLF: 132.56094505887722
Iteration: 5, Func. Count: 55, Neg. LLF: 133.3810866869694
Iteration: 6, Func. Count: 67, Neg. LLF: 138.6799153069537
Iteration: 7, Func. Count: 78, Neg. LLF: 132.03117094806524
Iteration: 8, Func. Count: 88, Neg. LLF: 133.075591886887
Iteration: 9, Func. Count: 100, Neg. LLF: 132.4319642519244
Iteration: 10, Func. Count: 111, Neg. LLF: 131.95465220594798
Iteration: 11, Func. Count: 121, Neg. LLF: 131.9436045601237
Iteration: 12, Func. Count: 131, Neg. LLF: 131.9318951791255
Iteration: 13, Func. Count: 141, Neg. LLF: 131.9285470623509
Iteration: 14, Func. Count: 151, Neg. LLF: 131.92705955457004
Iteration: 15, Func. Count: 161, Neg. LLF: 131.92688553693299
Iteration: 16, Func. Count: 171, Neg. LLF: 131.926865291429
Iteration: 17, Func. Count: 181, Neg. LLF: 131.92686407018633
Iteration: 18, Func. Count: 190, Neg. LLF: 131.9268641022126
Optimization terminated successfully (Exit mode 0)
Current function value: 131.92686407018633
Iterations: 18
Function evaluations: 190
Gradient evaluations: 18
Iteration: 1, Func. Count: 8, Neg. LLF: 138.63845265999592
Iteration: 2, Func. Count: 17, Neg. LLF: 164.21435577211662
Iteration: 3, Func. Count: 25, Neg. LLF: 134.62833283947018
Iteration: 4, Func. Count: 33, Neg. LLF: 132.65975377815235
Iteration: 5, Func. Count: 40, Neg. LLF: 132.61708536770968
Iteration: 6, Func. Count: 47, Neg. LLF: 132.60725491922648
Iteration: 7, Func. Count: 54, Neg. LLF: 132.60429076445493
Iteration: 8, Func. Count: 61, Neg. LLF: 132.59413750235368
Iteration: 9, Func. Count: 68, Neg. LLF: 132.58488736860815
Iteration: 10, Func. Count: 75, Neg. LLF: 132.99213457531255
Iteration: 11, Func. Count: 83, Neg. LLF: 132.93119004946442
Iteration: 12, Func. Count: 91, Neg. LLF: 132.88309063232427
Iteration: 13, Func. Count: 99, Neg. LLF: 132.8397885037001
Iteration: 14, Func. Count: 107, Neg. LLF: 132.65678102418715
Iteration: 15, Func. Count: 115, Neg. LLF: 132.54255268732632
Iteration: 16, Func. Count: 122, Neg. LLF: 132.53999947735568
Iteration: 17, Func. Count: 129, Neg. LLF: 132.53095286894626
Iteration: 18, Func. Count: 136, Neg. LLF: 132.5277793572677
Iteration: 19, Func. Count: 143, Neg. LLF: 132.52706275941603
Iteration: 20, Func. Count: 150, Neg. LLF: 132.5270113614527
Iteration: 21, Func. Count: 157, Neg. LLF: 132.52701081906568
Optimization terminated successfully (Exit mode 0)
Current function value: 132.52701081906568
Iterations: 21
Function evaluations: 157
Gradient evaluations: 21
Iteration: 1, Func. Count: 9, Neg. LLF: 180.57613179490434
Iteration: 2, Func. Count: 18, Neg. LLF: 159.31901779659026
Iteration: 3, Func. Count: 27, Neg. LLF: 132.62087068494196
Iteration: 4, Func. Count: 35, Neg. LLF: 132.55038361185697
Iteration: 5, Func. Count: 43, Neg. LLF: 132.45620786000103
Iteration: 6, Func. Count: 51, Neg. LLF: 132.4421302216842
Iteration: 7, Func. Count: 59, Neg. LLF: 132.4381367513074
Iteration: 8, Func. Count: 67, Neg. LLF: 132.4336652524185
Iteration: 9, Func. Count: 75, Neg. LLF: 132.43349669027387
Iteration: 10, Func. Count: 83, Neg. LLF: 132.43349162857868
Iteration: 11, Func. Count: 90, Neg. LLF: 132.43349162858325
Optimization terminated successfully (Exit mode 0)
Current function value: 132.43349162857868
Iterations: 11
Function evaluations: 90
Gradient evaluations: 11
Iteration: 1, Func. Count: 10, Neg. LLF: 136.47943318971573
Iteration: 2, Func. Count: 21, Neg. LLF: 135.53532410195933
Iteration: 3, Func. Count: 31, Neg. LLF: 137.02082660030413
Iteration: 4, Func. Count: 41, Neg. LLF: 132.6039028908049
Iteration: 5, Func. Count: 51, Neg. LLF: 132.80740790057368
Iteration: 6, Func. Count: 61, Neg. LLF: 132.2853063007863
Iteration: 7, Func. Count: 71, Neg. LLF: 131.96954035523035
Iteration: 8, Func. Count: 80, Neg. LLF: 131.9638534567899
Iteration: 9, Func. Count: 90, Neg. LLF: 131.94283065400137
Iteration: 10, Func. Count: 99, Neg. LLF: 131.92882785175564
Iteration: 11, Func. Count: 108, Neg. LLF: 131.92712442409902
Iteration: 12, Func. Count: 117, Neg. LLF: 131.92687018503284
Iteration: 13, Func. Count: 126, Neg. LLF: 131.92686394441014
Iteration: 14, Func. Count: 134, Neg. LLF: 131.92686394431905
Optimization terminated successfully (Exit mode 0)
Current function value: 131.92686394441014
Iterations: 14
Function evaluations: 134
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 135.48525152823774
Iteration: 2, Func. Count: 22, Neg. LLF: 136.7648827491946
Iteration: 3, Func. Count: 33, Neg. LLF: 139.83127784203663
Iteration: 4, Func. Count: 44, Neg. LLF: 132.36054879401982
Iteration: 5, Func. Count: 54, Neg. LLF: 133.3249884488957
Iteration: 6, Func. Count: 66, Neg. LLF: 135.21492731052174
Iteration: 7, Func. Count: 78, Neg. LLF: 133.02075802998297
Iteration: 8, Func. Count: 90, Neg. LLF: 132.0365362090029
Iteration: 9, Func. Count: 101, Neg. LLF: 131.95597127559884
Iteration: 10, Func. Count: 111, Neg. LLF: 131.9423215554543
Iteration: 11, Func. Count: 121, Neg. LLF: 131.93633381574696
Iteration: 12, Func. Count: 131, Neg. LLF: 131.92728007137802
Iteration: 13, Func. Count: 141, Neg. LLF: 131.92689006429518
Iteration: 14, Func. Count: 151, Neg. LLF: 131.9268679250745
Iteration: 15, Func. Count: 161, Neg. LLF: 131.92686459282845
Iteration: 16, Func. Count: 171, Neg. LLF: 131.92686371322404
Optimization terminated successfully (Exit mode 0)
Current function value: 131.92686371322404
Iterations: 16
Function evaluations: 171
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 134.30889257726454
Iteration: 2, Func. Count: 24, Neg. LLF: 134.70995915168874
Iteration: 3, Func. Count: 37, Neg. LLF: 133.01043291628122
Iteration: 4, Func. Count: 49, Neg. LLF: 132.41731611080402
Iteration: 5, Func. Count: 60, Neg. LLF: 132.14038414542944
Iteration: 6, Func. Count: 71, Neg. LLF: 132.58052474570607
Iteration: 7, Func. Count: 83, Neg. LLF: 131.99384532323688
Iteration: 8, Func. Count: 94, Neg. LLF: 132.02665903652942
Iteration: 9, Func. Count: 106, Neg. LLF: 131.94109939856455
Iteration: 10, Func. Count: 117, Neg. LLF: 131.9354054821055
Iteration: 11, Func. Count: 128, Neg. LLF: 131.9314521076656
Iteration: 12, Func. Count: 139, Neg. LLF: 131.92823645539957
Iteration: 13, Func. Count: 150, Neg. LLF: 131.92700582827513
Iteration: 14, Func. Count: 161, Neg. LLF: 131.92686627596817
Iteration: 15, Func. Count: 172, Neg. LLF: 131.9268636476983
Iteration: 16, Func. Count: 182, Neg. LLF: 131.9268636797653
Optimization terminated successfully (Exit mode 0)
Current function value: 131.9268636476983
Iterations: 16
Function evaluations: 182
Gradient evaluations: 16
Iteration: 1, Func. Count: 5, Neg. LLF: 152.15982735987046
Iteration: 2, Func. Count: 10, Neg. LLF: 138.16996310170566
Iteration: 3, Func. Count: 15, Neg. LLF: 132.943695511301
Iteration: 4, Func. Count: 19, Neg. LLF: 132.9431972347995
Iteration: 5, Func. Count: 23, Neg. LLF: 132.9431949685537
Iteration: 6, Func. Count: 27, Neg. LLF: 132.9431942265805
Optimization terminated successfully (Exit mode 0)
Current function value: 132.9431942265805
Iterations: 6
Function evaluations: 27
Gradient evaluations: 6
Iteration: 1, Func. Count: 6, Neg. LLF: 19952248.023880582
Iteration: 2, Func. Count: 13, Neg. LLF: 133.96213629398738
Iteration: 3, Func. Count: 19, Neg. LLF: 132.43660806045926
Iteration: 4, Func. Count: 24, Neg. LLF: 131.69713022247453
Iteration: 5, Func. Count: 29, Neg. LLF: 131.6735017791375
Iteration: 6, Func. Count: 34, Neg. LLF: 131.66174965602534
Iteration: 7, Func. Count: 39, Neg. LLF: 131.66169391709906
Iteration: 8, Func. Count: 44, Neg. LLF: 131.6616824962512
Iteration: 9, Func. Count: 49, Neg. LLF: 131.66613383452886
Optimization terminated successfully (Exit mode 0)
Current function value: 131.66168249488166
Iterations: 10
Function evaluations: 53
Gradient evaluations: 9
Iteration: 1, Func. Count: 7, Neg. LLF: 189.48260098618184
Iteration: 2, Func. Count: 14, Neg. LLF: 189.83963398383645
Iteration: 3, Func. Count: 22, Neg. LLF: 133.1633527212406
Iteration: 4, Func. Count: 28, Neg. LLF: 132.7696135877989
Iteration: 5, Func. Count: 34, Neg. LLF: 132.23535270711142
Iteration: 6, Func. Count: 40, Neg. LLF: 132.20313550764365
Iteration: 7, Func. Count: 46, Neg. LLF: 132.17987254334764
Iteration: 8, Func. Count: 52, Neg. LLF: 132.1775525785968
Iteration: 9, Func. Count: 58, Neg. LLF: 132.1752044710222
Iteration: 10, Func. Count: 64, Neg. LLF: 132.17497948890366
Iteration: 11, Func. Count: 70, Neg. LLF: 132.1749632246599
Iteration: 12, Func. Count: 75, Neg. LLF: 132.174963224657
Optimization terminated successfully (Exit mode 0)
Current function value: 132.1749632246599
Iterations: 12
Function evaluations: 75
Gradient evaluations: 12
Iteration: 1, Func. Count: 8, Neg. LLF: 189.8603916309797
Iteration: 2, Func. Count: 16, Neg. LLF: 203.67804838946392
Iteration: 3, Func. Count: 25, Neg. LLF: 133.18670904505547
Iteration: 4, Func. Count: 33, Neg. LLF: 132.45443087221526
Iteration: 5, Func. Count: 40, Neg. LLF: 132.24221124611765
Iteration: 6, Func. Count: 47, Neg. LLF: 132.21357042913002
Iteration: 7, Func. Count: 54, Neg. LLF: 132.19946568485557
Iteration: 8, Func. Count: 61, Neg. LLF: 132.18274323042706
Iteration: 9, Func. Count: 68, Neg. LLF: 132.17705079604661
Iteration: 10, Func. Count: 75, Neg. LLF: 132.1753159378091
Iteration: 11, Func. Count: 82, Neg. LLF: 132.17501943872165
Iteration: 12, Func. Count: 89, Neg. LLF: 132.17496529132578
Iteration: 13, Func. Count: 96, Neg. LLF: 132.17496319429685
Iteration: 14, Func. Count: 102, Neg. LLF: 132.17496327990983
Optimization terminated successfully (Exit mode 0)
Current function value: 132.17496319429685
Iterations: 14
Function evaluations: 102
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 196.32496390593298
Iteration: 2, Func. Count: 18, Neg. LLF: 184.78704220045782
Iteration: 3, Func. Count: 28, Neg. LLF: 133.70591269511343
Iteration: 4, Func. Count: 37, Neg. LLF: 131.19653860045395
Iteration: 5, Func. Count: 45, Neg. LLF: 129.91990912445624
Iteration: 6, Func. Count: 53, Neg. LLF: 129.9207411615567
Iteration: 7, Func. Count: 62, Neg. LLF: 160.29859863429786
Iteration: 8, Func. Count: 72, Neg. LLF: 129.86360671979602
Iteration: 9, Func. Count: 81, Neg. LLF: 129.81619015718897
Iteration: 10, Func. Count: 89, Neg. LLF: 129.798805529937
Iteration: 11, Func. Count: 97, Neg. LLF: 129.7983879641998
Iteration: 12, Func. Count: 105, Neg. LLF: 129.79825978663956
Iteration: 13, Func. Count: 113, Neg. LLF: 129.79813535378602
Iteration: 14, Func. Count: 121, Neg. LLF: 129.79812949874935
Iteration: 15, Func. Count: 128, Neg. LLF: 129.79812949889444
Optimization terminated successfully (Exit mode 0)
Current function value: 129.79812949874935
Iterations: 15
Function evaluations: 128
Gradient evaluations: 15
Iteration: 1, Func. Count: 6, Neg. LLF: 161.20592416070883
Iteration: 2, Func. Count: 12, Neg. LLF: 134.03056799160072
Iteration: 3, Func. Count: 18, Neg. LLF: 132.66026931865102
Iteration: 4, Func. Count: 24, Neg. LLF: 132.41405133953035
Iteration: 5, Func. Count: 29, Neg. LLF: 132.41001132360475
Iteration: 6, Func. Count: 34, Neg. LLF: 132.40942814113285
Iteration: 7, Func. Count: 39, Neg. LLF: 132.40914701307963
Iteration: 8, Func. Count: 44, Neg. LLF: 132.40909928217636
Iteration: 9, Func. Count: 49, Neg. LLF: 132.4090900732401
Iteration: 10, Func. Count: 54, Neg. LLF: 132.40908941618414
Optimization terminated successfully (Exit mode 0)
Current function value: 132.40908941618414
Iterations: 10
Function evaluations: 54
Gradient evaluations: 10
Iteration: 1, Func. Count: 7, Neg. LLF: 184.1934661187625
Iteration: 2, Func. Count: 14, Neg. LLF: 139.97984661632728
Iteration: 3, Func. Count: 22, Neg. LLF: 135.43213237646387
Iteration: 4, Func. Count: 29, Neg. LLF: 133.22726782622763
Iteration: 5, Func. Count: 35, Neg. LLF: 133.12182897797206
Iteration: 6, Func. Count: 41, Neg. LLF: 134.6074137090414
Iteration: 7, Func. Count: 48, Neg. LLF: 143.33840142728764
Iteration: 8, Func. Count: 55, Neg. LLF: 139.66738267357763
Iteration: 9, Func. Count: 62, Neg. LLF: 134.01968047593698
Iteration: 10, Func. Count: 69, Neg. LLF: 132.81171278093473
Iteration: 11, Func. Count: 75, Neg. LLF: 133.53552272961952
Iteration: 12, Func. Count: 82, Neg. LLF: 132.36186637008961
Iteration: 13, Func. Count: 89, Neg. LLF: 131.73475043282988
Iteration: 14, Func. Count: 95, Neg. LLF: 131.69126757901935
Iteration: 15, Func. Count: 101, Neg. LLF: 131.66307946989915
Iteration: 16, Func. Count: 107, Neg. LLF: 131.66167862645747
Iteration: 17, Func. Count: 113, Neg. LLF: 131.6616778880871
Optimization terminated successfully (Exit mode 0)
Current function value: 131.6616778880871
Iterations: 17
Function evaluations: 113
Gradient evaluations: 17
Iteration: 1, Func. Count: 8, Neg. LLF: 180.03787735313773
Iteration: 2, Func. Count: 16, Neg. LLF: 138.6591506456855
Iteration: 3, Func. Count: 24, Neg. LLF: 132.56406821066352
Iteration: 4, Func. Count: 31, Neg. LLF: 132.27997596563662
Iteration: 5, Func. Count: 38, Neg. LLF: 136.6996446219327
Iteration: 6, Func. Count: 46, Neg. LLF: 132.03784542867692
Iteration: 7, Func. Count: 53, Neg. LLF: 131.97103767313016
Iteration: 8, Func. Count: 60, Neg. LLF: 131.96301912016648
Iteration: 9, Func. Count: 67, Neg. LLF: 131.96049803692077
Iteration: 10, Func. Count: 74, Neg. LLF: 131.95994720300777
Iteration: 11, Func. Count: 81, Neg. LLF: 131.95980276522178
Iteration: 12, Func. Count: 88, Neg. LLF: 131.95976908208237
Iteration: 13, Func. Count: 95, Neg. LLF: 131.95976727091877
Iteration: 14, Func. Count: 101, Neg. LLF: 131.95976727092471
Optimization terminated successfully (Exit mode 0)
Current function value: 131.95976727091877
Iterations: 14
Function evaluations: 101
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 144.4846269185162
Iteration: 2, Func. Count: 18, Neg. LLF: 173.63801970857568
Iteration: 3, Func. Count: 28, Neg. LLF: 133.7866315187753
Iteration: 4, Func. Count: 37, Neg. LLF: 132.4066088375493
Iteration: 5, Func. Count: 45, Neg. LLF: 132.90088147116478
Iteration: 6, Func. Count: 54, Neg. LLF: 132.34243056461307
Iteration: 7, Func. Count: 62, Neg. LLF: 132.32377571296547
Iteration: 8, Func. Count: 70, Neg. LLF: 132.31063789705956
Iteration: 9, Func. Count: 78, Neg. LLF: 132.28927412565474
Iteration: 10, Func. Count: 86, Neg. LLF: 132.08533928289293
Iteration: 11, Func. Count: 94, Neg. LLF: 133.3584000369232
Iteration: 12, Func. Count: 103, Neg. LLF: 131.98336228136714
Iteration: 13, Func. Count: 111, Neg. LLF: 131.96739443955846
Iteration: 14, Func. Count: 119, Neg. LLF: 131.96055487512555
Iteration: 15, Func. Count: 127, Neg. LLF: 131.95977355645223
Iteration: 16, Func. Count: 135, Neg. LLF: 131.9597672835334
Iteration: 17, Func. Count: 142, Neg. LLF: 131.95976735239753
Optimization terminated successfully (Exit mode 0)
Current function value: 131.9597672835334
Iterations: 17
Function evaluations: 142
Gradient evaluations: 17
Iteration: 1, Func. Count: 10, Neg. LLF: 185.4960377983462
Iteration: 2, Func. Count: 20, Neg. LLF: 333.2211658482827
Iteration: 3, Func. Count: 31, Neg. LLF: 132.1492128594886
Iteration: 4, Func. Count: 40, Neg. LLF: 131.13754761270923
Iteration: 5, Func. Count: 49, Neg. LLF: 138.950856896267
Iteration: 6, Func. Count: 59, Neg. LLF: 140.58668945035473
Iteration: 7, Func. Count: 69, Neg. LLF: 130.25581219741807
Iteration: 8, Func. Count: 78, Neg. LLF: 156.4773224778651
Iteration: 9, Func. Count: 89, Neg. LLF: 134.4871877740935
Iteration: 10, Func. Count: 99, Neg. LLF: 129.90614652489657
Iteration: 11, Func. Count: 108, Neg. LLF: 129.85073475923605
Iteration: 12, Func. Count: 117, Neg. LLF: 129.82069293652904
Iteration: 13, Func. Count: 126, Neg. LLF: 129.80470453322022
Iteration: 14, Func. Count: 135, Neg. LLF: 129.79913908391012
Iteration: 15, Func. Count: 144, Neg. LLF: 129.79763597681267
Iteration: 16, Func. Count: 153, Neg. LLF: 129.79675715861023
Iteration: 17, Func. Count: 162, Neg. LLF: 129.79638399416072
Iteration: 18, Func. Count: 171, Neg. LLF: 129.7963224704522
Iteration: 19, Func. Count: 180, Neg. LLF: 129.79631634889844
Iteration: 20, Func. Count: 188, Neg. LLF: 129.79631634887068
Optimization terminated successfully (Exit mode 0)
Current function value: 129.79631634889844
Iterations: 20
Function evaluations: 188
Gradient evaluations: 20
Iteration: 1, Func. Count: 7, Neg. LLF: 160.0964004588335
Iteration: 2, Func. Count: 14, Neg. LLF: 136.09785877636125
Iteration: 3, Func. Count: 21, Neg. LLF: 132.44070926484517
Iteration: 4, Func. Count: 27, Neg. LLF: 132.56609142139706
Iteration: 5, Func. Count: 34, Neg. LLF: 132.41725656595418
Iteration: 6, Func. Count: 41, Neg. LLF: 132.41018682781646
Iteration: 7, Func. Count: 47, Neg. LLF: 132.40911864765434
Iteration: 8, Func. Count: 53, Neg. LLF: 132.40909211941482
Iteration: 9, Func. Count: 59, Neg. LLF: 132.4090896161725
Iteration: 10, Func. Count: 64, Neg. LLF: 132.4090896461653
Optimization terminated successfully (Exit mode 0)
Current function value: 132.4090896161725
Iterations: 10
Function evaluations: 64
Gradient evaluations: 10
Iteration: 1, Func. Count: 8, Neg. LLF: 19892856.25363056
Iteration: 2, Func. Count: 17, Neg. LLF: 132.95403651380056
Iteration: 3, Func. Count: 25, Neg. LLF: 132.47485420986143
Iteration: 4, Func. Count: 32, Neg. LLF: 131.75976490929727
Iteration: 5, Func. Count: 39, Neg. LLF: 131.6874948369942
Iteration: 6, Func. Count: 46, Neg. LLF: 131.66890830516786
Iteration: 7, Func. Count: 53, Neg. LLF: 131.6617523039723
Iteration: 8, Func. Count: 60, Neg. LLF: 131.66170531253917
Iteration: 9, Func. Count: 67, Neg. LLF: 31963.227199365505
Optimization terminated successfully (Exit mode 0)
Current function value: 131.661704664372
Iterations: 10
Function evaluations: 72
Gradient evaluations: 9
Iteration: 1, Func. Count: 9, Neg. LLF: 192.36546689002878
Iteration: 2, Func. Count: 18, Neg. LLF: 5574606.613879681
Iteration: 3, Func. Count: 27, Neg. LLF: 132.48458244193225
Iteration: 4, Func. Count: 35, Neg. LLF: 132.8786715434335
Iteration: 5, Func. Count: 44, Neg. LLF: 134.05362982447895
Iteration: 6, Func. Count: 54, Neg. LLF: 132.00115284050125
Iteration: 7, Func. Count: 62, Neg. LLF: 131.97018368608295
Iteration: 8, Func. Count: 70, Neg. LLF: 131.96246518875293
Iteration: 9, Func. Count: 78, Neg. LLF: 131.95988236800068
Iteration: 10, Func. Count: 86, Neg. LLF: 131.9597774428467
Iteration: 11, Func. Count: 94, Neg. LLF: 131.95976859488272
Iteration: 12, Func. Count: 102, Neg. LLF: 131.95976730641945
Iteration: 13, Func. Count: 109, Neg. LLF: 131.95976730646137
Optimization terminated successfully (Exit mode 0)
Current function value: 131.95976730641945
Iterations: 13
Function evaluations: 109
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 188.64280616743537
Iteration: 2, Func. Count: 20, Neg. LLF: 5626629.981134638
Iteration: 3, Func. Count: 31, Neg. LLF: 133.34140698753112
Iteration: 4, Func. Count: 41, Neg. LLF: 132.19265604251024
Iteration: 5, Func. Count: 50, Neg. LLF: 135.10794782752544
Iteration: 6, Func. Count: 60, Neg. LLF: 132.05360338974268
Iteration: 7, Func. Count: 69, Neg. LLF: 131.987781758144
Iteration: 8, Func. Count: 78, Neg. LLF: 131.9699568763647
Iteration: 9, Func. Count: 87, Neg. LLF: 131.96021762807783
Iteration: 10, Func. Count: 96, Neg. LLF: 131.95978430651175
Iteration: 11, Func. Count: 105, Neg. LLF: 131.9597681396646
Iteration: 12, Func. Count: 114, Neg. LLF: 131.95976740839865
Optimization terminated successfully (Exit mode 0)
Current function value: 131.95976740839865
Iterations: 12
Function evaluations: 114
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 195.65021664395465
Iteration: 2, Func. Count: 22, Neg. LLF: 182.4068290362818
Iteration: 3, Func. Count: 34, Neg. LLF: 137.13952230690697
Iteration: 4, Func. Count: 45, Neg. LLF: 131.8115996153859
Iteration: 5, Func. Count: 55, Neg. LLF: 132.9771399321542
Iteration: 6, Func. Count: 66, Neg. LLF: 131.0980157341977
Iteration: 7, Func. Count: 77, Neg. LLF: 130.15827957306826
Iteration: 8, Func. Count: 87, Neg. LLF: 132.86457042616706
Iteration: 9, Func. Count: 99, Neg. LLF: 130.4957892317681
Iteration: 10, Func. Count: 110, Neg. LLF: 129.84365183278405
Iteration: 11, Func. Count: 120, Neg. LLF: 129.8276101156731
Iteration: 12, Func. Count: 130, Neg. LLF: 129.81289550631948
Iteration: 13, Func. Count: 140, Neg. LLF: 129.80177463509085
Iteration: 14, Func. Count: 150, Neg. LLF: 129.79702008479555
Iteration: 15, Func. Count: 160, Neg. LLF: 129.79638030882936
Iteration: 16, Func. Count: 170, Neg. LLF: 129.79632135712146
Iteration: 17, Func. Count: 180, Neg. LLF: 129.79631617471648
Iteration: 18, Func. Count: 189, Neg. LLF: 129.7963161746911
Optimization terminated successfully (Exit mode 0)
Current function value: 129.79631617471648
Iterations: 18
Function evaluations: 189
Gradient evaluations: 18
Iteration: 1, Func. Count: 8, Neg. LLF: 151.07169166864009
Iteration: 2, Func. Count: 17, Neg. LLF: 136.0942749297069
Iteration: 3, Func. Count: 25, Neg. LLF: 133.256052291539
Iteration: 4, Func. Count: 33, Neg. LLF: 132.2420291946685
Iteration: 5, Func. Count: 40, Neg. LLF: 132.59668466404386
Iteration: 6, Func. Count: 48, Neg. LLF: 132.20244141970878
Iteration: 7, Func. Count: 56, Neg. LLF: 132.1420054047243
Iteration: 8, Func. Count: 63, Neg. LLF: 132.13639712254732
Iteration: 9, Func. Count: 70, Neg. LLF: 132.13354177706017
Iteration: 10, Func. Count: 77, Neg. LLF: 132.13237325803922
Iteration: 11, Func. Count: 84, Neg. LLF: 132.13213134682198
Iteration: 12, Func. Count: 91, Neg. LLF: 132.1320794512642
Iteration: 13, Func. Count: 98, Neg. LLF: 132.13207765766956
Iteration: 14, Func. Count: 104, Neg. LLF: 132.1320776576875
Optimization terminated successfully (Exit mode 0)
Current function value: 132.13207765766956
Iterations: 14
Function evaluations: 104
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 176.36391725752324
Iteration: 2, Func. Count: 18, Neg. LLF: 151.83462535002818
Iteration: 3, Func. Count: 27, Neg. LLF: 132.55506669940064
Iteration: 4, Func. Count: 35, Neg. LLF: 132.74394858489532
Iteration: 5, Func. Count: 44, Neg. LLF: 132.45152274703707
Iteration: 6, Func. Count: 52, Neg. LLF: 132.44374457361462
Iteration: 7, Func. Count: 60, Neg. LLF: 132.43813822785708
Iteration: 8, Func. Count: 68, Neg. LLF: 132.4339597406301
Iteration: 9, Func. Count: 76, Neg. LLF: 132.43352196362724
Iteration: 10, Func. Count: 84, Neg. LLF: 132.4334917129926
Iteration: 11, Func. Count: 91, Neg. LLF: 132.4334917130102
Optimization terminated successfully (Exit mode 0)
Current function value: 132.4334917129926
Iterations: 11
Function evaluations: 91
Gradient evaluations: 11
Iteration: 1, Func. Count: 10, Neg. LLF: 179.557586580528
Iteration: 2, Func. Count: 20, Neg. LLF: 157.74924168363887
Iteration: 3, Func. Count: 30, Neg. LLF: 132.2359964772456
Iteration: 4, Func. Count: 39, Neg. LLF: 132.18315614471268
Iteration: 5, Func. Count: 49, Neg. LLF: 132.8773854981257
Iteration: 6, Func. Count: 60, Neg. LLF: 134.66849311719764
Iteration: 7, Func. Count: 70, Neg. LLF: 131.76037870228964
Iteration: 8, Func. Count: 79, Neg. LLF: 131.7349522332779
Iteration: 9, Func. Count: 88, Neg. LLF: 131.7278420528209
Iteration: 10, Func. Count: 97, Neg. LLF: 131.72665107523122
Iteration: 11, Func. Count: 106, Neg. LLF: 131.7264682725127
Iteration: 12, Func. Count: 115, Neg. LLF: 131.7263977775975
Iteration: 13, Func. Count: 124, Neg. LLF: 131.72638683671596
Iteration: 14, Func. Count: 133, Neg. LLF: 131.72638326466662
Iteration: 15, Func. Count: 141, Neg. LLF: 131.7263832646629
Optimization terminated successfully (Exit mode 0)
Current function value: 131.72638326466662
Iterations: 15
Function evaluations: 141
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 137.67641658237073
Iteration: 2, Func. Count: 23, Neg. LLF: 135.28575303706458
Iteration: 3, Func. Count: 34, Neg. LLF: 139.69486962825587
Iteration: 4, Func. Count: 45, Neg. LLF: 132.47003377762948
Iteration: 5, Func. Count: 55, Neg. LLF: 132.79218836325998
Iteration: 6, Func. Count: 67, Neg. LLF: 140.48165701708024
Iteration: 7, Func. Count: 78, Neg. LLF: 132.05268354774336
Iteration: 8, Func. Count: 88, Neg. LLF: 132.0469822062517
Iteration: 9, Func. Count: 99, Neg. LLF: 131.8652529400286
Iteration: 10, Func. Count: 109, Neg. LLF: 131.80541134109396
Iteration: 11, Func. Count: 119, Neg. LLF: 131.7695294543097
Iteration: 12, Func. Count: 129, Neg. LLF: 131.74788229770945
Iteration: 13, Func. Count: 139, Neg. LLF: 131.73707627313127
Iteration: 14, Func. Count: 149, Neg. LLF: 131.73316521177242
Iteration: 15, Func. Count: 159, Neg. LLF: 131.726453082722
Iteration: 16, Func. Count: 169, Neg. LLF: 131.72640694731334
Iteration: 17, Func. Count: 179, Neg. LLF: 131.72638924253033
Iteration: 18, Func. Count: 189, Neg. LLF: 131.72638396733305
Iteration: 19, Func. Count: 199, Neg. LLF: 131.7263831716827
Optimization terminated successfully (Exit mode 0)
Current function value: 131.7263831716827
Iterations: 19
Function evaluations: 199
Gradient evaluations: 19
Iteration: 1, Func. Count: 12, Neg. LLF: 152.47569972889022
Iteration: 2, Func. Count: 25, Neg. LLF: 202.1355135564101
Iteration: 3, Func. Count: 37, Neg. LLF: 132.12349260280268
Iteration: 4, Func. Count: 48, Neg. LLF: 131.36514373581454
Iteration: 5, Func. Count: 59, Neg. LLF: 137.08231362088162
Iteration: 6, Func. Count: 71, Neg. LLF: 130.1971068794151
Iteration: 7, Func. Count: 82, Neg. LLF: 133.32037888560342
Iteration: 8, Func. Count: 94, Neg. LLF: 130.69903254255823
Iteration: 9, Func. Count: 106, Neg. LLF: 130.28928335011128
Iteration: 10, Func. Count: 118, Neg. LLF: 130.04669597084091
Iteration: 11, Func. Count: 130, Neg. LLF: 129.8747028014703
Iteration: 12, Func. Count: 142, Neg. LLF: 129.80149691109068
Iteration: 13, Func. Count: 153, Neg. LLF: 129.7996982737961
Iteration: 14, Func. Count: 164, Neg. LLF: 129.79771121884832
Iteration: 15, Func. Count: 175, Neg. LLF: 129.79651219007704
Iteration: 16, Func. Count: 186, Neg. LLF: 129.79632484864854
Iteration: 17, Func. Count: 197, Neg. LLF: 129.79631630867297
Iteration: 18, Func. Count: 207, Neg. LLF: 129.7963163086638
Optimization terminated successfully (Exit mode 0)
Current function value: 129.79631630867297
Iterations: 18
Function evaluations: 207
Gradient evaluations: 18
Iteration: 1, Func. Count: 9, Neg. LLF: 150.14317665316753
Iteration: 2, Func. Count: 19, Neg. LLF: 133.77888164465188
Iteration: 3, Func. Count: 28, Neg. LLF: 133.85074117412904
Iteration: 4, Func. Count: 37, Neg. LLF: 132.81830208644962
Iteration: 5, Func. Count: 46, Neg. LLF: 132.1910308711006
Iteration: 6, Func. Count: 54, Neg. LLF: 132.15555057374968
Iteration: 7, Func. Count: 62, Neg. LLF: 132.1409986302678
Iteration: 8, Func. Count: 70, Neg. LLF: 132.13637481340808
Iteration: 9, Func. Count: 78, Neg. LLF: 132.13342921620844
Iteration: 10, Func. Count: 86, Neg. LLF: 132.13226760240366
Iteration: 11, Func. Count: 94, Neg. LLF: 132.13208701983024
Iteration: 12, Func. Count: 102, Neg. LLF: 132.13207785879777
Iteration: 13, Func. Count: 109, Neg. LLF: 132.1320779440947
Optimization terminated successfully (Exit mode 0)
Current function value: 132.13207785879777
Iterations: 13
Function evaluations: 109
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 178.77160664104252
Iteration: 2, Func. Count: 20, Neg. LLF: 157.77628338469214
Iteration: 3, Func. Count: 30, Neg. LLF: 132.58718727915155
Iteration: 4, Func. Count: 39, Neg. LLF: 132.614314921567
Iteration: 5, Func. Count: 49, Neg. LLF: 132.45734552396294
Iteration: 6, Func. Count: 58, Neg. LLF: 132.44289416373715
Iteration: 7, Func. Count: 67, Neg. LLF: 132.43851091818482
Iteration: 8, Func. Count: 76, Neg. LLF: 132.43371564945994
Iteration: 9, Func. Count: 85, Neg. LLF: 132.43349918539474
Iteration: 10, Func. Count: 94, Neg. LLF: 132.43349162691604
Iteration: 11, Func. Count: 102, Neg. LLF: 132.43349162690063
Optimization terminated successfully (Exit mode 0)
Current function value: 132.43349162691604
Iterations: 11
Function evaluations: 102
Gradient evaluations: 11
Iteration: 1, Func. Count: 11, Neg. LLF: 183.9511938181405
Iteration: 2, Func. Count: 22, Neg. LLF: 1597698.590492667
Iteration: 3, Func. Count: 33, Neg. LLF: 137.290116431445
Iteration: 4, Func. Count: 44, Neg. LLF: 132.0665201911058
Iteration: 5, Func. Count: 54, Neg. LLF: 132.42137991609212
Iteration: 6, Func. Count: 65, Neg. LLF: 132.44881125356113
Iteration: 7, Func. Count: 76, Neg. LLF: 131.86349367774105
Iteration: 8, Func. Count: 86, Neg. LLF: 131.74286332588946
Iteration: 9, Func. Count: 96, Neg. LLF: 131.73267918762866
Iteration: 10, Func. Count: 106, Neg. LLF: 131.72677137821086
Iteration: 11, Func. Count: 116, Neg. LLF: 131.7264045898671
Iteration: 12, Func. Count: 126, Neg. LLF: 131.72638852000944
Iteration: 13, Func. Count: 136, Neg. LLF: 131.72638497752206
Iteration: 14, Func. Count: 146, Neg. LLF: 131.72638364295574
Iteration: 15, Func. Count: 155, Neg. LLF: 131.72638364297688
Optimization terminated successfully (Exit mode 0)
Current function value: 131.72638364295574
Iterations: 15
Function evaluations: 155
Gradient evaluations: 15
Iteration: 1, Func. Count: 12, Neg. LLF: 137.03223611178763
Iteration: 2, Func. Count: 25, Neg. LLF: 135.49899943248803
Iteration: 3, Func. Count: 37, Neg. LLF: 136.92579311232183
Iteration: 4, Func. Count: 49, Neg. LLF: 132.16489723573042
Iteration: 5, Func. Count: 60, Neg. LLF: 132.8125465961742
Iteration: 6, Func. Count: 73, Neg. LLF: 133.3838428322985
Iteration: 7, Func. Count: 86, Neg. LLF: 133.3134545236754
Iteration: 8, Func. Count: 98, Neg. LLF: 131.8506545917186
Iteration: 9, Func. Count: 109, Neg. LLF: 131.777364970326
Iteration: 10, Func. Count: 120, Neg. LLF: 131.74100115093015
Iteration: 11, Func. Count: 131, Neg. LLF: 131.72846138509283
Iteration: 12, Func. Count: 142, Neg. LLF: 131.72753198310522
Iteration: 13, Func. Count: 153, Neg. LLF: 131.72658681857726
Iteration: 14, Func. Count: 164, Neg. LLF: 131.72644556712672
Iteration: 15, Func. Count: 175, Neg. LLF: 131.72638563685837
Iteration: 16, Func. Count: 186, Neg. LLF: 131.7263832268567
Iteration: 17, Func. Count: 196, Neg. LLF: 131.7263832663015
Optimization terminated successfully (Exit mode 0)
Current function value: 131.7263832268567
Iterations: 17
Function evaluations: 196
Gradient evaluations: 17
Iteration: 1, Func. Count: 13, Neg. LLF: 152.54482254910565
Iteration: 2, Func. Count: 27, Neg. LLF: 207.4032033858246
Iteration: 3, Func. Count: 40, Neg. LLF: 132.1112208641405
Iteration: 4, Func. Count: 52, Neg. LLF: 131.25866421306978
Iteration: 5, Func. Count: 64, Neg. LLF: 136.85589974949772
Iteration: 6, Func. Count: 77, Neg. LLF: 130.21908068527145
Iteration: 7, Func. Count: 89, Neg. LLF: 133.54333925439332
Iteration: 8, Func. Count: 102, Neg. LLF: 130.44030435463253
Iteration: 9, Func. Count: 115, Neg. LLF: 131.86747739912053
Iteration: 10, Func. Count: 128, Neg. LLF: 129.96823096061152
Iteration: 11, Func. Count: 141, Neg. LLF: 130.0365505905114
Iteration: 12, Func. Count: 154, Neg. LLF: 129.80336914370943
Iteration: 13, Func. Count: 166, Neg. LLF: 129.8010605635961
Iteration: 14, Func. Count: 178, Neg. LLF: 129.79771533196865
Iteration: 15, Func. Count: 190, Neg. LLF: 129.7965011675167
Iteration: 16, Func. Count: 202, Neg. LLF: 129.79633444585357
Iteration: 17, Func. Count: 214, Neg. LLF: 129.79631667840857
Iteration: 18, Func. Count: 225, Neg. LLF: 129.79631667849094
Optimization terminated successfully (Exit mode 0)
Current function value: 129.79631667840857
Iterations: 18
Function evaluations: 225
Gradient evaluations: 18
Iteration: 1, Func. Count: 6, Neg. LLF: 139.10596840039395
Iteration: 2, Func. Count: 12, Neg. LLF: 151.31940879743314
Iteration: 3, Func. Count: 18, Neg. LLF: 132.94721700069107
Iteration: 4, Func. Count: 23, Neg. LLF: 132.94400362789344
Iteration: 5, Func. Count: 28, Neg. LLF: 132.9432440687774
Iteration: 6, Func. Count: 33, Neg. LLF: 132.94321912736277
Iteration: 7, Func. Count: 38, Neg. LLF: 132.943198295587
Iteration: 8, Func. Count: 43, Neg. LLF: 132.94319529472023
Iteration: 9, Func. Count: 48, Neg. LLF: 132.94319405028423
Iteration: 10, Func. Count: 52, Neg. LLF: 132.94319418198018
Optimization terminated successfully (Exit mode 0)
Current function value: 132.94319405028423
Iterations: 10
Function evaluations: 52
Gradient evaluations: 10
Iteration: 1, Func. Count: 7, Neg. LLF: 19925987.56698573
Iteration: 2, Func. Count: 15, Neg. LLF: 133.55785235449693
Iteration: 3, Func. Count: 22, Neg. LLF: 132.4324276015717
Iteration: 4, Func. Count: 28, Neg. LLF: 131.69352367078932
Iteration: 5, Func. Count: 34, Neg. LLF: 131.66889282440223
Iteration: 6, Func. Count: 40, Neg. LLF: 131.6632961467137
Iteration: 7, Func. Count: 46, Neg. LLF: 131.6616805828024
Iteration: 8, Func. Count: 52, Neg. LLF: 131.66167786352403
Iteration: 9, Func. Count: 57, Neg. LLF: 131.66167786362118
Optimization terminated successfully (Exit mode 0)
Current function value: 131.66167786352403
Iterations: 9
Function evaluations: 57
Gradient evaluations: 9
Iteration: 1, Func. Count: 8, Neg. LLF: 199.3793102315823
Iteration: 2, Func. Count: 16, Neg. LLF: 3179.547050101392
Iteration: 3, Func. Count: 24, Neg. LLF: 138.91975158119496
Iteration: 4, Func. Count: 32, Neg. LLF: 132.3843806025593
Iteration: 5, Func. Count: 39, Neg. LLF: 132.3630854529054
Iteration: 6, Func. Count: 46, Neg. LLF: 132.33939582287155
Iteration: 7, Func. Count: 53, Neg. LLF: 132.28614948251328
Iteration: 8, Func. Count: 60, Neg. LLF: 132.7391876302586
Iteration: 9, Func. Count: 68, Neg. LLF: 132.20056858522386
Iteration: 10, Func. Count: 75, Neg. LLF: 132.17933297814488
Iteration: 11, Func. Count: 82, Neg. LLF: 132.1755482870029
Iteration: 12, Func. Count: 89, Neg. LLF: 132.1753286760273
Iteration: 13, Func. Count: 96, Neg. LLF: 132.1751053501621
Iteration: 14, Func. Count: 103, Neg. LLF: 132.17498676739814
Iteration: 15, Func. Count: 110, Neg. LLF: 132.17496451756367
Iteration: 16, Func. Count: 117, Neg. LLF: 132.1749631982829
Iteration: 17, Func. Count: 123, Neg. LLF: 132.17496319823485
Optimization terminated successfully (Exit mode 0)
Current function value: 132.1749631982829
Iterations: 17
Function evaluations: 123
Gradient evaluations: 17
Iteration: 1, Func. Count: 9, Neg. LLF: 203.45856091896945
Iteration: 2, Func. Count: 18, Neg. LLF: 1066.0617952824175
Iteration: 3, Func. Count: 28, Neg. LLF: 140.62933716059072
Iteration: 4, Func. Count: 37, Neg. LLF: 132.62707077760743
Iteration: 5, Func. Count: 45, Neg. LLF: 132.77769791979608
Iteration: 6, Func. Count: 54, Neg. LLF: 135.05547822029794
Iteration: 7, Func. Count: 63, Neg. LLF: 134.3698091381108
Iteration: 8, Func. Count: 72, Neg. LLF: 133.81910472850888
Iteration: 9, Func. Count: 81, Neg. LLF: 133.37075622209665
Iteration: 10, Func. Count: 90, Neg. LLF: 132.47646219367797
Iteration: 11, Func. Count: 99, Neg. LLF: 132.2348666912692
Iteration: 12, Func. Count: 107, Neg. LLF: 132.14273181358175
Iteration: 13, Func. Count: 115, Neg. LLF: 131.98402779134773
Iteration: 14, Func. Count: 123, Neg. LLF: 131.72114238571874
Iteration: 15, Func. Count: 131, Neg. LLF: 131.71501340324573
Iteration: 16, Func. Count: 139, Neg. LLF: 131.71246331349394
Iteration: 17, Func. Count: 147, Neg. LLF: 131.7076572974777
Iteration: 18, Func. Count: 155, Neg. LLF: 131.70082402160102
Iteration: 19, Func. Count: 163, Neg. LLF: 131.69372671787255
Iteration: 20, Func. Count: 171, Neg. LLF: 131.69047448405087
Iteration: 21, Func. Count: 179, Neg. LLF: 131.6861844242383
Iteration: 22, Func. Count: 187, Neg. LLF: 131.6645326702379
Iteration: 23, Func. Count: 195, Neg. LLF: 131.66272022668724
Iteration: 24, Func. Count: 203, Neg. LLF: 131.6636862201299
Iteration: 25, Func. Count: 212, Neg. LLF: 131.6617284775997
Iteration: 26, Func. Count: 220, Neg. LLF: 131.66168621693973
Iteration: 27, Func. Count: 228, Neg. LLF: 12838890.909469089
Iteration: 28, Func. Count: 240, Neg. LLF: 131.66167785938282
Optimization terminated successfully (Exit mode 0)
Current function value: 131.661677856613
Iterations: 29
Function evaluations: 240
Gradient evaluations: 28
Iteration: 1, Func. Count: 10, Neg. LLF: 205.23819632535213
Iteration: 2, Func. Count: 20, Neg. LLF: 11506.64055099032
Iteration: 3, Func. Count: 30, Neg. LLF: 132.8077506654989
Iteration: 4, Func. Count: 39, Neg. LLF: 145.38994982799144
Iteration: 5, Func. Count: 51, Neg. LLF: 255.01248854635492
Iteration: 6, Func. Count: 61, Neg. LLF: 130.33345648938067
Iteration: 7, Func. Count: 70, Neg. LLF: 130.1485196560936
Iteration: 8, Func. Count: 79, Neg. LLF: 129.94334924108634
Iteration: 9, Func. Count: 88, Neg. LLF: 129.88512124273825
Iteration: 10, Func. Count: 97, Neg. LLF: 129.83416466567132
Iteration: 11, Func. Count: 106, Neg. LLF: 129.8106863728195
Iteration: 12, Func. Count: 115, Neg. LLF: 129.80090809419875
Iteration: 13, Func. Count: 124, Neg. LLF: 129.79895171547912
Iteration: 14, Func. Count: 133, Neg. LLF: 129.79814630397414
Iteration: 15, Func. Count: 142, Neg. LLF: 129.79813081755213
Iteration: 16, Func. Count: 150, Neg. LLF: 129.79813081737552
Optimization terminated successfully (Exit mode 0)
Current function value: 129.79813081755213
Iterations: 16
Function evaluations: 150
Gradient evaluations: 16
Iteration: 1, Func. Count: 7, Neg. LLF: 152.91738820813626
Iteration: 2, Func. Count: 14, Neg. LLF: 135.08880204677484
Iteration: 3, Func. Count: 21, Neg. LLF: 132.50813774207637
Iteration: 4, Func. Count: 27, Neg. LLF: 132.49132806808916
Iteration: 5, Func. Count: 34, Neg. LLF: 132.41181615763014
Iteration: 6, Func. Count: 40, Neg. LLF: 132.40998698501804
Iteration: 7, Func. Count: 46, Neg. LLF: 132.4092133193058
Iteration: 8, Func. Count: 52, Neg. LLF: 132.40912756270856
Iteration: 9, Func. Count: 58, Neg. LLF: 132.4090910978157
Iteration: 10, Func. Count: 64, Neg. LLF: 132.40908935778756
Iteration: 11, Func. Count: 69, Neg. LLF: 132.40908935778305
Optimization terminated successfully (Exit mode 0)
Current function value: 132.40908935778756
Iterations: 11
Function evaluations: 69
Gradient evaluations: 11
Iteration: 1, Func. Count: 8, Neg. LLF: 183.74026623337406
Iteration: 2, Func. Count: 16, Neg. LLF: 138.84181491652737
Iteration: 3, Func. Count: 25, Neg. LLF: 135.46623231153336
Iteration: 4, Func. Count: 33, Neg. LLF: 133.22789573791144
Iteration: 5, Func. Count: 40, Neg. LLF: 133.11557723337035
Iteration: 6, Func. Count: 47, Neg. LLF: 191.11402529240922
Iteration: 7, Func. Count: 55, Neg. LLF: 162.60146813199566
Iteration: 8, Func. Count: 63, Neg. LLF: 148.27426489255217
Iteration: 9, Func. Count: 71, Neg. LLF: 134.21796067759092
Iteration: 10, Func. Count: 79, Neg. LLF: 133.3088817634112
Iteration: 11, Func. Count: 87, Neg. LLF: 132.69239884786919
Iteration: 12, Func. Count: 94, Neg. LLF: 131.75827992386291
Iteration: 13, Func. Count: 101, Neg. LLF: 131.66730997617705
Iteration: 14, Func. Count: 108, Neg. LLF: 131.66196017521165
Iteration: 15, Func. Count: 115, Neg. LLF: 131.6616783533017
Iteration: 16, Func. Count: 121, Neg. LLF: 131.66167835525374
Optimization terminated successfully (Exit mode 0)
Current function value: 131.6616783533017
Iterations: 16
Function evaluations: 121
Gradient evaluations: 16
Iteration: 1, Func. Count: 9, Neg. LLF: 179.39415437206816
Iteration: 2, Func. Count: 18, Neg. LLF: 137.5043885224389
Iteration: 3, Func. Count: 27, Neg. LLF: 132.26707815823826
Iteration: 4, Func. Count: 35, Neg. LLF: 132.85211616213218
Iteration: 5, Func. Count: 44, Neg. LLF: 134.00550470861518
Iteration: 6, Func. Count: 54, Neg. LLF: 132.08383573448685
Iteration: 7, Func. Count: 62, Neg. LLF: 132.05903734660814
Iteration: 8, Func. Count: 70, Neg. LLF: 132.02084775075465
Iteration: 9, Func. Count: 78, Neg. LLF: 132.00876505315662
Iteration: 10, Func. Count: 86, Neg. LLF: 131.96755348690456
Iteration: 11, Func. Count: 94, Neg. LLF: 131.960614031243
Iteration: 12, Func. Count: 102, Neg. LLF: 131.9598913264657
Iteration: 13, Func. Count: 110, Neg. LLF: 131.95978389516537
Iteration: 14, Func. Count: 118, Neg. LLF: 131.95976799660946
Iteration: 15, Func. Count: 125, Neg. LLF: 131.9597679965558
Optimization terminated successfully (Exit mode 0)
Current function value: 131.95976799660946
Iterations: 15
Function evaluations: 125
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 146.3090159137112
Iteration: 2, Func. Count: 20, Neg. LLF: 143.91036784206372
Iteration: 3, Func. Count: 30, Neg. LLF: 134.17617950352255
Iteration: 4, Func. Count: 40, Neg. LLF: 132.7942638567065
Iteration: 5, Func. Count: 49, Neg. LLF: 132.40211399437004
Iteration: 6, Func. Count: 58, Neg. LLF: 132.2272860339272
Iteration: 7, Func. Count: 67, Neg. LLF: 132.256681387468
Iteration: 8, Func. Count: 77, Neg. LLF: 132.04918274434422
Iteration: 9, Func. Count: 86, Neg. LLF: 132.09355372709587
Iteration: 10, Func. Count: 96, Neg. LLF: 131.96517803581872
Iteration: 11, Func. Count: 105, Neg. LLF: 131.96047814459533
Iteration: 12, Func. Count: 114, Neg. LLF: 131.9599421580126
Iteration: 13, Func. Count: 123, Neg. LLF: 131.95977332346368
Iteration: 14, Func. Count: 132, Neg. LLF: 131.9597696162872
Iteration: 15, Func. Count: 141, Neg. LLF: 131.95976725410836
Iteration: 16, Func. Count: 149, Neg. LLF: 131.95976732293968
Optimization terminated successfully (Exit mode 0)
Current function value: 131.95976725410836
Iterations: 16
Function evaluations: 149
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 146.84881881833869
Iteration: 2, Func. Count: 22, Neg. LLF: 189.13569245761724
Iteration: 3, Func. Count: 33, Neg. LLF: 133.29623504872558
Iteration: 4, Func. Count: 44, Neg. LLF: 131.46715697265367
Iteration: 5, Func. Count: 54, Neg. LLF: 146.75748302685975
Iteration: 6, Func. Count: 65, Neg. LLF: 130.98116325118605
Iteration: 7, Func. Count: 75, Neg. LLF: 130.54870147266183
Iteration: 8, Func. Count: 85, Neg. LLF: 221.26992181189243
Iteration: 9, Func. Count: 96, Neg. LLF: 135.16657087841278
Iteration: 10, Func. Count: 107, Neg. LLF: 131.14882872585687
Iteration: 11, Func. Count: 118, Neg. LLF: 130.2081895979633
Iteration: 12, Func. Count: 129, Neg. LLF: 130.02250599473354
Iteration: 13, Func. Count: 139, Neg. LLF: 129.86353346977947
Iteration: 14, Func. Count: 149, Neg. LLF: 129.85162623969183
Iteration: 15, Func. Count: 160, Neg. LLF: 129.79781221699122
Iteration: 16, Func. Count: 170, Neg. LLF: 129.79647250651746
Iteration: 17, Func. Count: 180, Neg. LLF: 129.79639096132087
Iteration: 18, Func. Count: 190, Neg. LLF: 129.79633592475355
Iteration: 19, Func. Count: 200, Neg. LLF: 129.79631620810872
Iteration: 20, Func. Count: 209, Neg. LLF: 129.79631620811705
Optimization terminated successfully (Exit mode 0)
Current function value: 129.79631620810872
Iterations: 20
Function evaluations: 209
Gradient evaluations: 20
Iteration: 1, Func. Count: 8, Neg. LLF: 147.81647926778479
Iteration: 2, Func. Count: 16, Neg. LLF: 139.83774957840072
Iteration: 3, Func. Count: 24, Neg. LLF: 132.70360188327572
Iteration: 4, Func. Count: 31, Neg. LLF: 132.50030052055112
Iteration: 5, Func. Count: 38, Neg. LLF: 132.432497471208
Iteration: 6, Func. Count: 45, Neg. LLF: 132.41184673721668
Iteration: 7, Func. Count: 52, Neg. LLF: 132.4094992433624
Iteration: 8, Func. Count: 59, Neg. LLF: 132.4091614180071
Iteration: 9, Func. Count: 66, Neg. LLF: 132.40912343739947
Iteration: 10, Func. Count: 73, Neg. LLF: 132.40908977604377
Iteration: 11, Func. Count: 79, Neg. LLF: 132.4090898059959
Optimization terminated successfully (Exit mode 0)
Current function value: 132.40908977604377
Iterations: 11
Function evaluations: 79
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 19885566.917259898
Iteration: 2, Func. Count: 19, Neg. LLF: 132.80734565454938
Iteration: 3, Func. Count: 28, Neg. LLF: 132.4656677412614
Iteration: 4, Func. Count: 36, Neg. LLF: 132.79335766873388
Iteration: 5, Func. Count: 45, Neg. LLF: 133.31471630020812
Iteration: 6, Func. Count: 54, Neg. LLF: 133.11828666338755
Iteration: 7, Func. Count: 63, Neg. LLF: 132.5202405364117
Iteration: 8, Func. Count: 72, Neg. LLF: 132.47078550922595
Iteration: 9, Func. Count: 81, Neg. LLF: 132.1474747986003
Iteration: 10, Func. Count: 90, Neg. LLF: 132.02851171954882
Iteration: 11, Func. Count: 98, Neg. LLF: 131.88025268390112
Iteration: 12, Func. Count: 106, Neg. LLF: 131.68524581950737
Iteration: 13, Func. Count: 114, Neg. LLF: 131.66211242140855
Iteration: 14, Func. Count: 122, Neg. LLF: 131.66171578000174
Iteration: 15, Func. Count: 130, Neg. LLF: 131.66168404803616
Iteration: 16, Func. Count: 138, Neg. LLF: 131.66167782650717
Iteration: 17, Func. Count: 145, Neg. LLF: 131.6616778260873
Optimization terminated successfully (Exit mode 0)
Current function value: 131.66167782650717
Iterations: 17
Function evaluations: 145
Gradient evaluations: 17
Iteration: 1, Func. Count: 10, Neg. LLF: 192.49555584196153
Iteration: 2, Func. Count: 20, Neg. LLF: 6908672.161760739
Iteration: 3, Func. Count: 30, Neg. LLF: 132.87467171494
Iteration: 4, Func. Count: 39, Neg. LLF: 132.51632458829036
Iteration: 5, Func. Count: 48, Neg. LLF: 132.98042535801642
Iteration: 6, Func. Count: 58, Neg. LLF: 132.06177406873604
Iteration: 7, Func. Count: 67, Neg. LLF: 131.97383522945344
Iteration: 8, Func. Count: 76, Neg. LLF: 131.9632964629253
Iteration: 9, Func. Count: 85, Neg. LLF: 131.9607109602087
Iteration: 10, Func. Count: 94, Neg. LLF: 131.9599657735529
Iteration: 11, Func. Count: 103, Neg. LLF: 131.9597685920872
Iteration: 12, Func. Count: 112, Neg. LLF: 131.95976724870349
Iteration: 13, Func. Count: 120, Neg. LLF: 131.95976724868274
Optimization terminated successfully (Exit mode 0)
Current function value: 131.95976724870349
Iterations: 13
Function evaluations: 120
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 201.5289159839808
Iteration: 2, Func. Count: 22, Neg. LLF: 6794260.473947756
Iteration: 3, Func. Count: 33, Neg. LLF: 132.78282814035148
Iteration: 4, Func. Count: 43, Neg. LLF: 132.58877534213272
Iteration: 5, Func. Count: 53, Neg. LLF: 135.02868281143807
Iteration: 6, Func. Count: 64, Neg. LLF: 132.0244796373509
Iteration: 7, Func. Count: 74, Neg. LLF: 131.97665151446003
Iteration: 8, Func. Count: 84, Neg. LLF: 131.96298569738914
Iteration: 9, Func. Count: 94, Neg. LLF: 131.96066809526732
Iteration: 10, Func. Count: 104, Neg. LLF: 131.95985309176527
Iteration: 11, Func. Count: 114, Neg. LLF: 131.95977735276554
Iteration: 12, Func. Count: 124, Neg. LLF: 131.9597672691046
Iteration: 13, Func. Count: 133, Neg. LLF: 131.9597673379722
Optimization terminated successfully (Exit mode 0)
Current function value: 131.9597672691046
Iterations: 13
Function evaluations: 133
Gradient evaluations: 13
Iteration: 1, Func. Count: 12, Neg. LLF: 203.1445049113723
Iteration: 2, Func. Count: 24, Neg. LLF: 7059134.647371042
Iteration: 3, Func. Count: 36, Neg. LLF: 192.6322681932079
Iteration: 4, Func. Count: 48, Neg. LLF: 135.9850508749967
Iteration: 5, Func. Count: 60, Neg. LLF: 133.99426088539823
Iteration: 6, Func. Count: 72, Neg. LLF: 134.09824240114085
Iteration: 7, Func. Count: 84, Neg. LLF: 140.06071132510408
Iteration: 8, Func. Count: 96, Neg. LLF: 133.0614518866805
Iteration: 9, Func. Count: 108, Neg. LLF: 132.62653209880943
Iteration: 10, Func. Count: 120, Neg. LLF: 132.00383485426997
Iteration: 11, Func. Count: 132, Neg. LLF: 131.2246840113912
Iteration: 12, Func. Count: 143, Neg. LLF: 131.0012504300044
Iteration: 13, Func. Count: 154, Neg. LLF: 133.23482465931818
Iteration: 14, Func. Count: 167, Neg. LLF: 130.6210192292626
Iteration: 15, Func. Count: 178, Neg. LLF: 130.28674528438304
Iteration: 16, Func. Count: 189, Neg. LLF: 130.01775781057924
Iteration: 17, Func. Count: 200, Neg. LLF: 129.98868330772447
Iteration: 18, Func. Count: 211, Neg. LLF: 129.92181622820334
Iteration: 19, Func. Count: 222, Neg. LLF: 129.8841591130909
Iteration: 20, Func. Count: 233, Neg. LLF: 129.85999123775392
Iteration: 21, Func. Count: 244, Neg. LLF: 129.8555861386006
Iteration: 22, Func. Count: 255, Neg. LLF: 129.8514327618711
Iteration: 23, Func. Count: 266, Neg. LLF: 129.8497913851245
Iteration: 24, Func. Count: 277, Neg. LLF: 129.8486479620174
Iteration: 25, Func. Count: 288, Neg. LLF: 129.8484246378549
Iteration: 26, Func. Count: 299, Neg. LLF: 129.84837634427117
Iteration: 27, Func. Count: 310, Neg. LLF: 129.84837333601848
Iteration: 28, Func. Count: 320, Neg. LLF: 129.84837333606748
Optimization terminated successfully (Exit mode 0)
Current function value: 129.84837333601848
Iterations: 28
Function evaluations: 320
Gradient evaluations: 28
Iteration: 1, Func. Count: 9, Neg. LLF: 143.77853948468982
Iteration: 2, Func. Count: 19, Neg. LLF: 139.13797215832741
Iteration: 3, Func. Count: 28, Neg. LLF: 136.23738124963188
Iteration: 4, Func. Count: 37, Neg. LLF: 132.99016680292775
Iteration: 5, Func. Count: 45, Neg. LLF: 132.56257193135482
Iteration: 6, Func. Count: 54, Neg. LLF: 133.24877723091015
Iteration: 7, Func. Count: 63, Neg. LLF: 132.20507494751442
Iteration: 8, Func. Count: 71, Neg. LLF: 132.26733177495947
Iteration: 9, Func. Count: 80, Neg. LLF: 132.14526370475585
Iteration: 10, Func. Count: 88, Neg. LLF: 132.1395722985406
Iteration: 11, Func. Count: 96, Neg. LLF: 132.13566277268134
Iteration: 12, Func. Count: 104, Neg. LLF: 132.13387677637039
Iteration: 13, Func. Count: 112, Neg. LLF: 132.13270433877625
Iteration: 14, Func. Count: 120, Neg. LLF: 132.13231468579642
Iteration: 15, Func. Count: 128, Neg. LLF: 132.13216907278945
Iteration: 16, Func. Count: 136, Neg. LLF: 132.13211301224638
Iteration: 17, Func. Count: 144, Neg. LLF: 132.13208437001649
Iteration: 18, Func. Count: 152, Neg. LLF: 132.1320781696653
Iteration: 19, Func. Count: 159, Neg. LLF: 132.13207816963043
Optimization terminated successfully (Exit mode 0)
Current function value: 132.1320781696653
Iterations: 19
Function evaluations: 159
Gradient evaluations: 19
Iteration: 1, Func. Count: 10, Neg. LLF: 176.0316231589719
Iteration: 2, Func. Count: 20, Neg. LLF: 151.0012395209582
Iteration: 3, Func. Count: 30, Neg. LLF: 132.54512738730196
Iteration: 4, Func. Count: 39, Neg. LLF: 132.77249884696573
Iteration: 5, Func. Count: 49, Neg. LLF: 132.4483817262843
Iteration: 6, Func. Count: 58, Neg. LLF: 132.44316787866265
Iteration: 7, Func. Count: 67, Neg. LLF: 132.4354493728693
Iteration: 8, Func. Count: 76, Neg. LLF: 132.43369316276588
Iteration: 9, Func. Count: 85, Neg. LLF: 132.43349434057478
Iteration: 10, Func. Count: 94, Neg. LLF: 132.43349163102226
Iteration: 11, Func. Count: 102, Neg. LLF: 132.43349163103034
Optimization terminated successfully (Exit mode 0)
Current function value: 132.43349163102226
Iterations: 11
Function evaluations: 102
Gradient evaluations: 11
Iteration: 1, Func. Count: 11, Neg. LLF: 179.09105803684074
Iteration: 2, Func. Count: 22, Neg. LLF: 155.93180224408658
Iteration: 3, Func. Count: 33, Neg. LLF: 132.2152921849723
Iteration: 4, Func. Count: 43, Neg. LLF: 132.2850867871156
Iteration: 5, Func. Count: 54, Neg. LLF: 132.38251962362196
Iteration: 6, Func. Count: 65, Neg. LLF: 132.8790014721661
Iteration: 7, Func. Count: 76, Neg. LLF: 131.75726170315556
Iteration: 8, Func. Count: 86, Neg. LLF: 131.73541742101122
Iteration: 9, Func. Count: 96, Neg. LLF: 131.72772081599686
Iteration: 10, Func. Count: 106, Neg. LLF: 131.7267577486988
Iteration: 11, Func. Count: 116, Neg. LLF: 131.7264848716446
Iteration: 12, Func. Count: 126, Neg. LLF: 131.72639633186276
Iteration: 13, Func. Count: 136, Neg. LLF: 131.72638704033827
Iteration: 14, Func. Count: 146, Neg. LLF: 131.72638312769644
Iteration: 15, Func. Count: 155, Neg. LLF: 131.72638312769652
Optimization terminated successfully (Exit mode 0)
Current function value: 131.72638312769644
Iterations: 15
Function evaluations: 155
Gradient evaluations: 15
Iteration: 1, Func. Count: 12, Neg. LLF: 136.58004261019565
Iteration: 2, Func. Count: 25, Neg. LLF: 135.39160150994675
Iteration: 3, Func. Count: 37, Neg. LLF: 142.4770605450536
Iteration: 4, Func. Count: 49, Neg. LLF: 132.33762584930358
Iteration: 5, Func. Count: 60, Neg. LLF: 133.26506085315998
Iteration: 6, Func. Count: 73, Neg. LLF: 135.66251499438457
Iteration: 7, Func. Count: 86, Neg. LLF: 132.64122234983643
Iteration: 8, Func. Count: 98, Neg. LLF: 131.88983686634586
Iteration: 9, Func. Count: 109, Neg. LLF: 131.84739363289287
Iteration: 10, Func. Count: 120, Neg. LLF: 131.78123723114246
Iteration: 11, Func. Count: 131, Neg. LLF: 131.7477988964383
Iteration: 12, Func. Count: 142, Neg. LLF: 131.72992058757202
Iteration: 13, Func. Count: 153, Neg. LLF: 131.72725835976595
Iteration: 14, Func. Count: 164, Neg. LLF: 131.72639479413917
Iteration: 15, Func. Count: 175, Neg. LLF: 131.72638348735396
Iteration: 16, Func. Count: 185, Neg. LLF: 131.72638352677592
Optimization terminated successfully (Exit mode 0)
Current function value: 131.72638348735396
Iterations: 16
Function evaluations: 185
Gradient evaluations: 16
Iteration: 1, Func. Count: 13, Neg. LLF: 135.75005466877766
Iteration: 2, Func. Count: 28, Neg. LLF: 135.6147321479765
Iteration: 3, Func. Count: 41, Neg. LLF: 149.8993758839539
Iteration: 4, Func. Count: 55, Neg. LLF: 132.45707942601996
Iteration: 5, Func. Count: 67, Neg. LLF: 132.58649100539986
Iteration: 6, Func. Count: 80, Neg. LLF: 133.5820693750445
Iteration: 7, Func. Count: 93, Neg. LLF: 132.26208375584102
Iteration: 8, Func. Count: 106, Neg. LLF: 131.90556076134547
Iteration: 9, Func. Count: 118, Neg. LLF: 131.83395407080582
Iteration: 10, Func. Count: 130, Neg. LLF: 131.78120701658875
Iteration: 11, Func. Count: 142, Neg. LLF: 131.74348421209072
Iteration: 12, Func. Count: 154, Neg. LLF: 131.72921086457234
Iteration: 13, Func. Count: 166, Neg. LLF: 131.72672092136338
Iteration: 14, Func. Count: 178, Neg. LLF: 131.72639960448137
Iteration: 15, Func. Count: 190, Neg. LLF: 131.7263832430486
Iteration: 16, Func. Count: 201, Neg. LLF: 131.72638327691604
Optimization terminated successfully (Exit mode 0)
Current function value: 131.7263832430486
Iterations: 16
Function evaluations: 201
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 143.1017877516362
Iteration: 2, Func. Count: 21, Neg. LLF: 136.31465510061577
Iteration: 3, Func. Count: 31, Neg. LLF: 133.9985520738131
Iteration: 4, Func. Count: 41, Neg. LLF: 132.80104475560714
Iteration: 5, Func. Count: 50, Neg. LLF: 132.47489913343458
Iteration: 6, Func. Count: 59, Neg. LLF: 135.08608323282422
Iteration: 7, Func. Count: 70, Neg. LLF: 132.1647415654237
Iteration: 8, Func. Count: 79, Neg. LLF: 132.13794447505572
Iteration: 9, Func. Count: 88, Neg. LLF: 132.13554059172552
Iteration: 10, Func. Count: 97, Neg. LLF: 132.13339839973588
Iteration: 11, Func. Count: 106, Neg. LLF: 132.13257452466294
Iteration: 12, Func. Count: 115, Neg. LLF: 132.1323508506484
Iteration: 13, Func. Count: 124, Neg. LLF: 132.1321469225117
Iteration: 14, Func. Count: 133, Neg. LLF: 132.13209251535443
Iteration: 15, Func. Count: 142, Neg. LLF: 132.1320808457602
Iteration: 16, Func. Count: 151, Neg. LLF: 132.13207834190592
Iteration: 17, Func. Count: 160, Neg. LLF: 132.13207767210483
Optimization terminated successfully (Exit mode 0)
Current function value: 132.13207767210483
Iterations: 17
Function evaluations: 160
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 178.3757026038043
Iteration: 2, Func. Count: 22, Neg. LLF: 156.2374272535219
Iteration: 3, Func. Count: 33, Neg. LLF: 132.58288944827135
Iteration: 4, Func. Count: 43, Neg. LLF: 132.63506959208823
Iteration: 5, Func. Count: 54, Neg. LLF: 132.45226009562953
Iteration: 6, Func. Count: 64, Neg. LLF: 132.44242963520998
Iteration: 7, Func. Count: 74, Neg. LLF: 132.43775930997208
Iteration: 8, Func. Count: 84, Neg. LLF: 132.43373590896542
Iteration: 9, Func. Count: 94, Neg. LLF: 132.43350376018932
Iteration: 10, Func. Count: 104, Neg. LLF: 132.43349165291423
Iteration: 11, Func. Count: 113, Neg. LLF: 132.43349165289348
Optimization terminated successfully (Exit mode 0)
Current function value: 132.43349165291423
Iterations: 11
Function evaluations: 113
Gradient evaluations: 11
Iteration: 1, Func. Count: 12, Neg. LLF: 136.5358808085471
Iteration: 2, Func. Count: 25, Neg. LLF: 135.39762568313165
Iteration: 3, Func. Count: 37, Neg. LLF: 138.03199898133042
Iteration: 4, Func. Count: 49, Neg. LLF: 132.45644875357846
Iteration: 5, Func. Count: 60, Neg. LLF: 132.8819095537516
Iteration: 6, Func. Count: 72, Neg. LLF: 135.69948441081783
Iteration: 7, Func. Count: 85, Neg. LLF: 132.33446231755923
Iteration: 8, Func. Count: 97, Neg. LLF: 131.8882968614529
Iteration: 9, Func. Count: 108, Neg. LLF: 131.84137082525586
Iteration: 10, Func. Count: 119, Neg. LLF: 131.80332929966474
Iteration: 11, Func. Count: 130, Neg. LLF: 131.76780427469083
Iteration: 12, Func. Count: 141, Neg. LLF: 131.74296136631008
Iteration: 13, Func. Count: 152, Neg. LLF: 131.72852854147496
Iteration: 14, Func. Count: 163, Neg. LLF: 131.7267763899983
Iteration: 15, Func. Count: 174, Neg. LLF: 131.7264316511691
Iteration: 16, Func. Count: 185, Neg. LLF: 131.72638516799788
Iteration: 17, Func. Count: 196, Neg. LLF: 131.72638304073146
Iteration: 18, Func. Count: 206, Neg. LLF: 131.72638304073337
Optimization terminated successfully (Exit mode 0)
Current function value: 131.72638304073146
Iterations: 18
Function evaluations: 206
Gradient evaluations: 18
Iteration: 1, Func. Count: 13, Neg. LLF: 135.76340324418172
Iteration: 2, Func. Count: 26, Neg. LLF: 135.66892526694454
Iteration: 3, Func. Count: 39, Neg. LLF: 147.8650151217638
Iteration: 4, Func. Count: 52, Neg. LLF: 132.8357037122845
Iteration: 5, Func. Count: 65, Neg. LLF: 132.9386457573099
Iteration: 6, Func. Count: 79, Neg. LLF: 134.07042303353472
Iteration: 7, Func. Count: 93, Neg. LLF: 131.99611206148225
Iteration: 8, Func. Count: 105, Neg. LLF: 131.88701172490914
Iteration: 9, Func. Count: 117, Neg. LLF: 131.85711944838675
Iteration: 10, Func. Count: 129, Neg. LLF: 131.8174737626354
Iteration: 11, Func. Count: 141, Neg. LLF: 131.75343823675553
Iteration: 12, Func. Count: 153, Neg. LLF: 131.75449413548537
Iteration: 13, Func. Count: 166, Neg. LLF: 131.72700618054483
Iteration: 14, Func. Count: 178, Neg. LLF: 131.72644549179387
Iteration: 15, Func. Count: 190, Neg. LLF: 131.7263923624584
Iteration: 16, Func. Count: 202, Neg. LLF: 131.72638370949147
Iteration: 17, Func. Count: 214, Neg. LLF: 131.72638308545396
Optimization terminated successfully (Exit mode 0)
Current function value: 131.72638308545396
Iterations: 17
Function evaluations: 214
Gradient evaluations: 17
Iteration: 1, Func. Count: 14, Neg. LLF: 134.17045221510122
Iteration: 2, Func. Count: 28, Neg. LLF: 142.98630225152854
Iteration: 3, Func. Count: 42, Neg. LLF: 139.4918767417013
Iteration: 4, Func. Count: 57, Neg. LLF: 134.42210560518666
Iteration: 5, Func. Count: 71, Neg. LLF: 132.05504251493386
Iteration: 6, Func. Count: 84, Neg. LLF: 132.18917048790007
Iteration: 7, Func. Count: 98, Neg. LLF: 132.63098407694926
Iteration: 8, Func. Count: 112, Neg. LLF: 131.97524117000432
Iteration: 9, Func. Count: 126, Neg. LLF: 131.8522247128872
Iteration: 10, Func. Count: 139, Neg. LLF: 131.8026565843866
Iteration: 11, Func. Count: 152, Neg. LLF: 131.75772247862426
Iteration: 12, Func. Count: 165, Neg. LLF: 131.73680704211785
Iteration: 13, Func. Count: 178, Neg. LLF: 131.72842000061985
Iteration: 14, Func. Count: 191, Neg. LLF: 131.72658256517948
Iteration: 15, Func. Count: 204, Neg. LLF: 131.72642309852233
Iteration: 16, Func. Count: 217, Neg. LLF: 131.72638624034278
Iteration: 17, Func. Count: 230, Neg. LLF: 131.72638311415403
Iteration: 18, Func. Count: 242, Neg. LLF: 131.72638314802012
Optimization terminated successfully (Exit mode 0)
Current function value: 131.72638311415403
Iterations: 18
Function evaluations: 242
Gradient evaluations: 18
Iteration: 1, Func. Count: 7, Neg. LLF: 138.57492368606898
Iteration: 2, Func. Count: 14, Neg. LLF: 147.6298386799845
Iteration: 3, Func. Count: 21, Neg. LLF: 133.20693074789278
Iteration: 4, Func. Count: 27, Neg. LLF: 132.98503410522198
Iteration: 5, Func. Count: 33, Neg. LLF: 132.95374750716073
Iteration: 6, Func. Count: 39, Neg. LLF: 132.94380744145144
Iteration: 7, Func. Count: 45, Neg. LLF: 132.9432405534465
Iteration: 8, Func. Count: 51, Neg. LLF: 132.94321180350133
Iteration: 9, Func. Count: 57, Neg. LLF: 132.9431941007073
Iteration: 10, Func. Count: 62, Neg. LLF: 132.94319414441344
Optimization terminated successfully (Exit mode 0)
Current function value: 132.9431941007073
Iterations: 10
Function evaluations: 62
Gradient evaluations: 10
Iteration: 1, Func. Count: 8, Neg. LLF: 19918439.32082365
Iteration: 2, Func. Count: 17, Neg. LLF: 133.4431678555077
Iteration: 3, Func. Count: 25, Neg. LLF: 132.43725805811275
Iteration: 4, Func. Count: 32, Neg. LLF: 131.67240887564975
Iteration: 5, Func. Count: 39, Neg. LLF: 131.66373017994104
Iteration: 6, Func. Count: 46, Neg. LLF: 131.66188752797015
Iteration: 7, Func. Count: 53, Neg. LLF: 131.66167825662296
Iteration: 8, Func. Count: 59, Neg. LLF: 131.6616782561489
Optimization terminated successfully (Exit mode 0)
Current function value: 131.66167825662296
Iterations: 8
Function evaluations: 59
Gradient evaluations: 8
Iteration: 1, Func. Count: 9, Neg. LLF: 190.7335386218677
Iteration: 2, Func. Count: 18, Neg. LLF: 163453.28030809012
Iteration: 3, Func. Count: 27, Neg. LLF: 135.28861256235297
Iteration: 4, Func. Count: 37, Neg. LLF: 133.13800874582398
Iteration: 5, Func. Count: 46, Neg. LLF: 133.7914539459692
Iteration: 6, Func. Count: 55, Neg. LLF: 132.26251589396963
Iteration: 7, Func. Count: 63, Neg. LLF: 132.20993487078943
Iteration: 8, Func. Count: 71, Neg. LLF: 132.16172015323932
Iteration: 9, Func. Count: 79, Neg. LLF: 132.15839295470408
Iteration: 10, Func. Count: 87, Neg. LLF: 132.15493631030964
Iteration: 11, Func. Count: 95, Neg. LLF: 132.15298478067922
Iteration: 12, Func. Count: 103, Neg. LLF: 132.15251285510482
Iteration: 13, Func. Count: 111, Neg. LLF: 132.15247908529767
Iteration: 14, Func. Count: 119, Neg. LLF: 132.15246010556675
Iteration: 15, Func. Count: 127, Neg. LLF: 132.15243384406577
Iteration: 16, Func. Count: 135, Neg. LLF: 132.15242337073275
Iteration: 17, Func. Count: 143, Neg. LLF: 132.15242142514774
Iteration: 18, Func. Count: 150, Neg. LLF: 132.15242142509538
Optimization terminated successfully (Exit mode 0)
Current function value: 132.15242142514774
Iterations: 18
Function evaluations: 150
Gradient evaluations: 18
Iteration: 1, Func. Count: 10, Neg. LLF: 203.94897611407404
Iteration: 2, Func. Count: 20, Neg. LLF: 33138.93683510773
Iteration: 3, Func. Count: 30, Neg. LLF: 142.96410804624963
Iteration: 4, Func. Count: 41, Neg. LLF: 132.34998615207198
Iteration: 5, Func. Count: 50, Neg. LLF: 132.30231009673847
Iteration: 6, Func. Count: 59, Neg. LLF: 132.26217549921978
Iteration: 7, Func. Count: 68, Neg. LLF: 132.17672639313116
Iteration: 8, Func. Count: 77, Neg. LLF: 132.15536423923135
Iteration: 9, Func. Count: 86, Neg. LLF: 132.15334488020585
Iteration: 10, Func. Count: 95, Neg. LLF: 132.15267769944953
Iteration: 11, Func. Count: 104, Neg. LLF: 132.1524931742865
Iteration: 12, Func. Count: 113, Neg. LLF: 132.15242661570002
Iteration: 13, Func. Count: 122, Neg. LLF: 132.15242227209325
Iteration: 14, Func. Count: 130, Neg. LLF: 132.1524223426796
Optimization terminated successfully (Exit mode 0)
Current function value: 132.15242227209325
Iterations: 14
Function evaluations: 130
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 205.41157684372024
Iteration: 2, Func. Count: 22, Neg. LLF: 57092.64908984257
Iteration: 3, Func. Count: 33, Neg. LLF: 132.6082906931034
Iteration: 4, Func. Count: 43, Neg. LLF: 143.2699535143
Iteration: 5, Func. Count: 56, Neg. LLF: 226.65229710022646
Iteration: 6, Func. Count: 67, Neg. LLF: 130.3293778270564
Iteration: 7, Func. Count: 77, Neg. LLF: 130.14892891372008
Iteration: 8, Func. Count: 87, Neg. LLF: 129.94273393632542
Iteration: 9, Func. Count: 97, Neg. LLF: 129.8841078246875
Iteration: 10, Func. Count: 107, Neg. LLF: 129.83220869571142
Iteration: 11, Func. Count: 117, Neg. LLF: 129.81034255662092
Iteration: 12, Func. Count: 127, Neg. LLF: 129.80164804770942
Iteration: 13, Func. Count: 137, Neg. LLF: 129.79829635080398
Iteration: 14, Func. Count: 147, Neg. LLF: 129.79813675584455
Iteration: 15, Func. Count: 157, Neg. LLF: 129.7981305620223
Iteration: 16, Func. Count: 166, Neg. LLF: 129.79813056183863
Optimization terminated successfully (Exit mode 0)
Current function value: 129.7981305620223
Iterations: 16
Function evaluations: 166
Gradient evaluations: 16
Iteration: 1, Func. Count: 8, Neg. LLF: 143.0145977751558
Iteration: 2, Func. Count: 16, Neg. LLF: 137.63880629609716
Iteration: 3, Func. Count: 24, Neg. LLF: 132.41941566285885
Iteration: 4, Func. Count: 31, Neg. LLF: 132.41472353721085
Iteration: 5, Func. Count: 38, Neg. LLF: 132.41076008904508
Iteration: 6, Func. Count: 45, Neg. LLF: 132.40946238921433
Iteration: 7, Func. Count: 52, Neg. LLF: 132.40914035534922
Iteration: 8, Func. Count: 59, Neg. LLF: 132.4090935571374
Iteration: 9, Func. Count: 66, Neg. LLF: 132.40908955272855
Iteration: 10, Func. Count: 72, Neg. LLF: 132.4090895527418
Optimization terminated successfully (Exit mode 0)
Current function value: 132.40908955272855
Iterations: 10
Function evaluations: 72
Gradient evaluations: 10
Iteration: 1, Func. Count: 9, Neg. LLF: 184.20527036957787
Iteration: 2, Func. Count: 18, Neg. LLF: 203.68241544594292
Iteration: 3, Func. Count: 27, Neg. LLF: 134.4468365697338
Iteration: 4, Func. Count: 36, Neg. LLF: 133.60643524606894
Iteration: 5, Func. Count: 45, Neg. LLF: 132.79172980688446
Iteration: 6, Func. Count: 53, Neg. LLF: 138.66417497483283
Iteration: 7, Func. Count: 62, Neg. LLF: 132.72953059175518
Iteration: 8, Func. Count: 70, Neg. LLF: 132.70613160940354
Iteration: 9, Func. Count: 78, Neg. LLF: 132.69332007959656
Iteration: 10, Func. Count: 86, Neg. LLF: 132.58773359364375
Iteration: 11, Func. Count: 94, Neg. LLF: 132.28727558607156
Iteration: 12, Func. Count: 102, Neg. LLF: 133.17758958704457
Iteration: 13, Func. Count: 111, Neg. LLF: 132.994182659818
Iteration: 14, Func. Count: 120, Neg. LLF: 132.78430784731424
Iteration: 15, Func. Count: 129, Neg. LLF: 132.52596819859934
Iteration: 16, Func. Count: 138, Neg. LLF: 132.11872461730061
Iteration: 17, Func. Count: 147, Neg. LLF: 132.04131666740983
Iteration: 18, Func. Count: 155, Neg. LLF: 131.81757924275746
Iteration: 19, Func. Count: 163, Neg. LLF: 131.66744509130993
Iteration: 20, Func. Count: 171, Neg. LLF: 131.6668413395807
Iteration: 21, Func. Count: 180, Neg. LLF: 131.66167813094788
Iteration: 22, Func. Count: 187, Neg. LLF: 131.6616781322296
Optimization terminated successfully (Exit mode 0)
Current function value: 131.66167813094788
Iterations: 22
Function evaluations: 187
Gradient evaluations: 22
Iteration: 1, Func. Count: 10, Neg. LLF: 179.56652382765176
Iteration: 2, Func. Count: 20, Neg. LLF: 137.23601100866614
Iteration: 3, Func. Count: 30, Neg. LLF: 132.78748829726746
Iteration: 4, Func. Count: 39, Neg. LLF: 132.36290413058938
Iteration: 5, Func. Count: 48, Neg. LLF: 148.28501603114805
Iteration: 6, Func. Count: 58, Neg. LLF: 132.25032751425067
Iteration: 7, Func. Count: 68, Neg. LLF: 132.11905182843566
Iteration: 8, Func. Count: 78, Neg. LLF: 131.99131635361488
Iteration: 9, Func. Count: 87, Neg. LLF: 131.97579243286057
Iteration: 10, Func. Count: 96, Neg. LLF: 131.96400230720715
Iteration: 11, Func. Count: 105, Neg. LLF: 131.96179615376093
Iteration: 12, Func. Count: 114, Neg. LLF: 131.9602000198876
Iteration: 13, Func. Count: 123, Neg. LLF: 131.9597946537021
Iteration: 14, Func. Count: 132, Neg. LLF: 131.95976811193515
Iteration: 15, Func. Count: 141, Neg. LLF: 131.95976724769378
Optimization terminated successfully (Exit mode 0)
Current function value: 131.95976724769378
Iterations: 15
Function evaluations: 141
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 146.27008736789247
Iteration: 2, Func. Count: 22, Neg. LLF: 142.86541965830676
Iteration: 3, Func. Count: 33, Neg. LLF: 133.68790279196466
Iteration: 4, Func. Count: 44, Neg. LLF: 132.66933841773726
Iteration: 5, Func. Count: 54, Neg. LLF: 132.4567826163103
Iteration: 6, Func. Count: 64, Neg. LLF: 132.25703351207363
Iteration: 7, Func. Count: 74, Neg. LLF: 132.18818083182973
Iteration: 8, Func. Count: 84, Neg. LLF: 132.09196718742237
Iteration: 9, Func. Count: 94, Neg. LLF: 134.7862450166158
Iteration: 10, Func. Count: 105, Neg. LLF: 132.28277526020238
Iteration: 11, Func. Count: 116, Neg. LLF: 131.96567655621624
Iteration: 12, Func. Count: 126, Neg. LLF: 131.9603950274606
Iteration: 13, Func. Count: 136, Neg. LLF: 131.9598840842678
Iteration: 14, Func. Count: 146, Neg. LLF: 131.95977583794715
Iteration: 15, Func. Count: 156, Neg. LLF: 131.95976736346822
Iteration: 16, Func. Count: 165, Neg. LLF: 131.95976743234743
Optimization terminated successfully (Exit mode 0)
Current function value: 131.95976736346822
Iterations: 16
Function evaluations: 165
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 146.77761382832446
Iteration: 2, Func. Count: 24, Neg. LLF: 189.00485135772075
Iteration: 3, Func. Count: 36, Neg. LLF: 133.16543758901838
Iteration: 4, Func. Count: 48, Neg. LLF: 131.91999807437946
Iteration: 5, Func. Count: 59, Neg. LLF: 143.29997804877522
Iteration: 6, Func. Count: 71, Neg. LLF: 130.89468777588746
Iteration: 7, Func. Count: 82, Neg. LLF: 130.4248016149734
Iteration: 8, Func. Count: 93, Neg. LLF: 130.18325207081466
Iteration: 9, Func. Count: 104, Neg. LLF: 129.99181866275433
Iteration: 10, Func. Count: 115, Neg. LLF: 130.72070347701268
Iteration: 11, Func. Count: 127, Neg. LLF: 129.95023525997487
Iteration: 12, Func. Count: 139, Neg. LLF: 129.95778822617433
Iteration: 13, Func. Count: 151, Neg. LLF: 129.81145872477703
Iteration: 14, Func. Count: 162, Neg. LLF: 129.7979600460702
Iteration: 15, Func. Count: 173, Neg. LLF: 129.7963948295334
Iteration: 16, Func. Count: 184, Neg. LLF: 129.79631822730843
Iteration: 17, Func. Count: 195, Neg. LLF: 129.79631618662265
Iteration: 18, Func. Count: 205, Neg. LLF: 129.79631618662663
Optimization terminated successfully (Exit mode 0)
Current function value: 129.79631618662265
Iterations: 18
Function evaluations: 205
Gradient evaluations: 18
Iteration: 1, Func. Count: 9, Neg. LLF: 140.99030437553753
Iteration: 2, Func. Count: 18, Neg. LLF: 136.68658474137433
Iteration: 3, Func. Count: 27, Neg. LLF: 132.5977487259104
Iteration: 4, Func. Count: 35, Neg. LLF: 132.43015061549306
Iteration: 5, Func. Count: 43, Neg. LLF: 132.41170559242852
Iteration: 6, Func. Count: 51, Neg. LLF: 132.4100873756147
Iteration: 7, Func. Count: 59, Neg. LLF: 132.40926926483704
Iteration: 8, Func. Count: 67, Neg. LLF: 132.40915850978388
Iteration: 9, Func. Count: 75, Neg. LLF: 132.4090910007005
Iteration: 10, Func. Count: 83, Neg. LLF: 132.40908954807105
Iteration: 11, Func. Count: 90, Neg. LLF: 132.40908957805993
Optimization terminated successfully (Exit mode 0)
Current function value: 132.40908954807105
Iterations: 11
Function evaluations: 90
Gradient evaluations: 11
Iteration: 1, Func. Count: 10, Neg. LLF: 19884421.91110209
Iteration: 2, Func. Count: 21, Neg. LLF: 132.7780682718576
Iteration: 3, Func. Count: 31, Neg. LLF: 132.46774117477332
Iteration: 4, Func. Count: 40, Neg. LLF: 132.92691523167784
Iteration: 5, Func. Count: 50, Neg. LLF: 133.15015212235147
Iteration: 6, Func. Count: 60, Neg. LLF: 132.66136838133093
Iteration: 7, Func. Count: 70, Neg. LLF: 132.3729657269414
Iteration: 8, Func. Count: 80, Neg. LLF: 132.08834497433992
Iteration: 9, Func. Count: 90, Neg. LLF: 131.9214307256785
Iteration: 10, Func. Count: 99, Neg. LLF: 131.8750773700983
Iteration: 11, Func. Count: 108, Neg. LLF: 131.7309216096175
Iteration: 12, Func. Count: 117, Neg. LLF: 131.66175414163163
Iteration: 13, Func. Count: 126, Neg. LLF: 131.6616781516407
Iteration: 14, Func. Count: 134, Neg. LLF: 131.66167815046407
Optimization terminated successfully (Exit mode 0)
Current function value: 131.6616781516407
Iterations: 14
Function evaluations: 134
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 192.97811499058378
Iteration: 2, Func. Count: 22, Neg. LLF: 6833498.036292158
Iteration: 3, Func. Count: 33, Neg. LLF: 133.27245057858383
Iteration: 4, Func. Count: 44, Neg. LLF: 132.27256672502241
Iteration: 5, Func. Count: 54, Neg. LLF: 132.40216889570056
Iteration: 6, Func. Count: 65, Neg. LLF: 132.0839667021162
Iteration: 7, Func. Count: 75, Neg. LLF: 131.99256360749243
Iteration: 8, Func. Count: 85, Neg. LLF: 131.9635085091804
Iteration: 9, Func. Count: 95, Neg. LLF: 131.96041384472676
Iteration: 10, Func. Count: 105, Neg. LLF: 131.95981563711504
Iteration: 11, Func. Count: 115, Neg. LLF: 131.9597874345978
Iteration: 12, Func. Count: 125, Neg. LLF: 131.95977062770677
Iteration: 13, Func. Count: 135, Neg. LLF: 131.95976738698894
Iteration: 14, Func. Count: 144, Neg. LLF: 131.9597673869113
Optimization terminated successfully (Exit mode 0)
Current function value: 131.95976738698894
Iterations: 14
Function evaluations: 144
Gradient evaluations: 14
Iteration: 1, Func. Count: 12, Neg. LLF: 201.9837558334639
Iteration: 2, Func. Count: 24, Neg. LLF: 6848450.220969451
Iteration: 3, Func. Count: 36, Neg. LLF: 132.7753145396396
Iteration: 4, Func. Count: 47, Neg. LLF: 132.65352710964183
Iteration: 5, Func. Count: 59, Neg. LLF: 134.78827319471603
Iteration: 6, Func. Count: 71, Neg. LLF: 131.99629728908573
Iteration: 7, Func. Count: 82, Neg. LLF: 131.96899442015027
Iteration: 8, Func. Count: 93, Neg. LLF: 131.96125555094176
Iteration: 9, Func. Count: 104, Neg. LLF: 131.9599536708125
Iteration: 10, Func. Count: 115, Neg. LLF: 131.95978533434277
Iteration: 11, Func. Count: 126, Neg. LLF: 131.9597688437759
Iteration: 12, Func. Count: 137, Neg. LLF: 131.95976727125432
Iteration: 13, Func. Count: 147, Neg. LLF: 131.9597673401165
Optimization terminated successfully (Exit mode 0)
Current function value: 131.95976727125432
Iterations: 13
Function evaluations: 147
Gradient evaluations: 13
Iteration: 1, Func. Count: 13, Neg. LLF: 203.30273551218343
Iteration: 2, Func. Count: 26, Neg. LLF: 7111280.572497975
Iteration: 3, Func. Count: 39, Neg. LLF: 192.8963491640799
Iteration: 4, Func. Count: 52, Neg. LLF: 135.97886228502895
Iteration: 5, Func. Count: 65, Neg. LLF: 133.95898172297314
Iteration: 6, Func. Count: 78, Neg. LLF: 133.7554861404261
Iteration: 7, Func. Count: 91, Neg. LLF: 138.95797824723564
Iteration: 8, Func. Count: 104, Neg. LLF: 132.83607769876429
Iteration: 9, Func. Count: 117, Neg. LLF: 132.45095284438025
Iteration: 10, Func. Count: 130, Neg. LLF: 131.86869626798506
Iteration: 11, Func. Count: 143, Neg. LLF: 131.2359840685918
Iteration: 12, Func. Count: 155, Neg. LLF: 130.85693809969794
Iteration: 13, Func. Count: 167, Neg. LLF: 131.01717506262392
Iteration: 14, Func. Count: 180, Neg. LLF: 130.43480637524348
Iteration: 15, Func. Count: 192, Neg. LLF: 130.1239845951719
Iteration: 16, Func. Count: 204, Neg. LLF: 130.01950233313352
Iteration: 17, Func. Count: 216, Neg. LLF: 130.21778875692422
Iteration: 18, Func. Count: 229, Neg. LLF: 129.9030902397358
Iteration: 19, Func. Count: 241, Neg. LLF: 129.87298061405903
Iteration: 20, Func. Count: 253, Neg. LLF: 129.86064183150458
Iteration: 21, Func. Count: 265, Neg. LLF: 129.85448324442322
Iteration: 22, Func. Count: 277, Neg. LLF: 129.8512497035263
Iteration: 23, Func. Count: 289, Neg. LLF: 129.84899712943883
Iteration: 24, Func. Count: 301, Neg. LLF: 129.84847132772856
Iteration: 25, Func. Count: 313, Neg. LLF: 129.8483803363101
Iteration: 26, Func. Count: 325, Neg. LLF: 129.8483735985669
Iteration: 27, Func. Count: 336, Neg. LLF: 129.84837359871761
Optimization terminated successfully (Exit mode 0)
Current function value: 129.8483735985669
Iterations: 27
Function evaluations: 336
Gradient evaluations: 27
Iteration: 1, Func. Count: 10, Neg. LLF: 140.44962195475526
Iteration: 2, Func. Count: 21, Neg. LLF: 135.1479425525863
Iteration: 3, Func. Count: 31, Neg. LLF: 133.44664946102014
Iteration: 4, Func. Count: 40, Neg. LLF: 132.47327676159605
Iteration: 5, Func. Count: 49, Neg. LLF: 132.42869370971206
Iteration: 6, Func. Count: 58, Neg. LLF: 132.2863953158186
Iteration: 7, Func. Count: 67, Neg. LLF: 132.21441231345744
Iteration: 8, Func. Count: 76, Neg. LLF: 132.171201017181
Iteration: 9, Func. Count: 85, Neg. LLF: 132.14154739770885
Iteration: 10, Func. Count: 94, Neg. LLF: 132.13331413613267
Iteration: 11, Func. Count: 103, Neg. LLF: 132.13224123261193
Iteration: 12, Func. Count: 112, Neg. LLF: 132.1321002009953
Iteration: 13, Func. Count: 121, Neg. LLF: 132.1320816792776
Iteration: 14, Func. Count: 130, Neg. LLF: 132.13207762376805
Iteration: 15, Func. Count: 138, Neg. LLF: 132.13207762377078
Optimization terminated successfully (Exit mode 0)
Current function value: 132.13207762376805
Iterations: 15
Function evaluations: 138
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 176.31961787170184
Iteration: 2, Func. Count: 22, Neg. LLF: 150.78603392735883
Iteration: 3, Func. Count: 33, Neg. LLF: 132.5445704506263
Iteration: 4, Func. Count: 43, Neg. LLF: 132.76266210358244
Iteration: 5, Func. Count: 54, Neg. LLF: 132.44782812644175
Iteration: 6, Func. Count: 64, Neg. LLF: 132.4428009959602
Iteration: 7, Func. Count: 74, Neg. LLF: 132.43503531080268
Iteration: 8, Func. Count: 84, Neg. LLF: 132.43363387665124
Iteration: 9, Func. Count: 94, Neg. LLF: 132.4334928050004
Iteration: 10, Func. Count: 104, Neg. LLF: 132.43349163155622
Iteration: 11, Func. Count: 113, Neg. LLF: 132.43349163155773
Optimization terminated successfully (Exit mode 0)
Current function value: 132.43349163155622
Iterations: 11
Function evaluations: 113
Gradient evaluations: 11
Iteration: 1, Func. Count: 12, Neg. LLF: 179.31706958569455
Iteration: 2, Func. Count: 24, Neg. LLF: 155.38711972528657
Iteration: 3, Func. Count: 36, Neg. LLF: 132.15836784935095
Iteration: 4, Func. Count: 47, Neg. LLF: 132.2227795431586
Iteration: 5, Func. Count: 59, Neg. LLF: 132.86162508977287
Iteration: 6, Func. Count: 71, Neg. LLF: 132.02053153283705
Iteration: 7, Func. Count: 83, Neg. LLF: 131.7885004121591
Iteration: 8, Func. Count: 95, Neg. LLF: 131.7338089844473
Iteration: 9, Func. Count: 106, Neg. LLF: 131.72720924105838
Iteration: 10, Func. Count: 117, Neg. LLF: 131.72674182792107
Iteration: 11, Func. Count: 128, Neg. LLF: 131.72643418756425
Iteration: 12, Func. Count: 139, Neg. LLF: 131.72638585609408
Iteration: 13, Func. Count: 150, Neg. LLF: 131.72638338201565
Iteration: 14, Func. Count: 160, Neg. LLF: 131.72638338196893
Optimization terminated successfully (Exit mode 0)
Current function value: 131.72638338201565
Iterations: 14
Function evaluations: 160
Gradient evaluations: 14
Iteration: 1, Func. Count: 13, Neg. LLF: 136.55684478153043
Iteration: 2, Func. Count: 27, Neg. LLF: 135.39686198324773
Iteration: 3, Func. Count: 40, Neg. LLF: 142.50988881342968
Iteration: 4, Func. Count: 53, Neg. LLF: 132.3724268884171
Iteration: 5, Func. Count: 65, Neg. LLF: 133.16703193348096
Iteration: 6, Func. Count: 79, Neg. LLF: 136.09162696343114
Iteration: 7, Func. Count: 93, Neg. LLF: 132.78510774718163
Iteration: 8, Func. Count: 106, Neg. LLF: 131.89158233211313
Iteration: 9, Func. Count: 118, Neg. LLF: 131.84676130502555
Iteration: 10, Func. Count: 130, Neg. LLF: 131.7863002938643
Iteration: 11, Func. Count: 142, Neg. LLF: 131.75169207112498
Iteration: 12, Func. Count: 154, Neg. LLF: 131.73150933351087
Iteration: 13, Func. Count: 166, Neg. LLF: 131.72708929356105
Iteration: 14, Func. Count: 178, Neg. LLF: 131.7264088353191
Iteration: 15, Func. Count: 190, Neg. LLF: 131.72638774865004
Iteration: 16, Func. Count: 202, Neg. LLF: 131.72638447234172
Iteration: 17, Func. Count: 214, Neg. LLF: 131.72638314611115
Iteration: 18, Func. Count: 225, Neg. LLF: 131.72638318551705
Optimization terminated successfully (Exit mode 0)
Current function value: 131.72638314611115
Iterations: 18
Function evaluations: 225
Gradient evaluations: 18
Iteration: 1, Func. Count: 14, Neg. LLF: 135.67103291751377
Iteration: 2, Func. Count: 30, Neg. LLF: 135.62156312018996
Iteration: 3, Func. Count: 44, Neg. LLF: 151.01900231351902
Iteration: 4, Func. Count: 59, Neg. LLF: 132.47917363283824
Iteration: 5, Func. Count: 72, Neg. LLF: 132.5591093363062
Iteration: 6, Func. Count: 86, Neg. LLF: 133.49154529299705
Iteration: 7, Func. Count: 100, Neg. LLF: 132.25402350734305
Iteration: 8, Func. Count: 114, Neg. LLF: 131.90702028061804
Iteration: 9, Func. Count: 127, Neg. LLF: 131.8389073686536
Iteration: 10, Func. Count: 140, Neg. LLF: 131.78452221728173
Iteration: 11, Func. Count: 153, Neg. LLF: 131.7467831928586
Iteration: 12, Func. Count: 166, Neg. LLF: 131.73135954243358
Iteration: 13, Func. Count: 179, Neg. LLF: 131.7268979123501
Iteration: 14, Func. Count: 192, Neg. LLF: 131.72643217147166
Iteration: 15, Func. Count: 205, Neg. LLF: 131.7263833899671
Iteration: 16, Func. Count: 217, Neg. LLF: 131.7263834238139
Optimization terminated successfully (Exit mode 0)
Current function value: 131.7263833899671
Iterations: 16
Function evaluations: 217
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 140.13094207208454
Iteration: 2, Func. Count: 23, Neg. LLF: 134.09866552058824
Iteration: 3, Func. Count: 34, Neg. LLF: 132.96334876362093
Iteration: 4, Func. Count: 44, Neg. LLF: 132.93845399683116
Iteration: 5, Func. Count: 55, Neg. LLF: 132.89531144605542
Iteration: 6, Func. Count: 66, Neg. LLF: 132.23174720082488
Iteration: 7, Func. Count: 76, Neg. LLF: 132.14697364166184
Iteration: 8, Func. Count: 86, Neg. LLF: 132.1375641329812
Iteration: 9, Func. Count: 96, Neg. LLF: 132.13297355880897
Iteration: 10, Func. Count: 106, Neg. LLF: 132.13209455735677
Iteration: 11, Func. Count: 116, Neg. LLF: 132.13207945221046
Iteration: 12, Func. Count: 126, Neg. LLF: 132.13207772402285
Iteration: 13, Func. Count: 135, Neg. LLF: 132.13207780932305
Optimization terminated successfully (Exit mode 0)
Current function value: 132.13207772402285
Iterations: 13
Function evaluations: 135
Gradient evaluations: 13
Iteration: 1, Func. Count: 12, Neg. LLF: 178.6408959377786
Iteration: 2, Func. Count: 24, Neg. LLF: 155.83349550898353
Iteration: 3, Func. Count: 36, Neg. LLF: 132.58526052390368
Iteration: 4, Func. Count: 47, Neg. LLF: 132.62245422557228
Iteration: 5, Func. Count: 59, Neg. LLF: 132.45194933963597
Iteration: 6, Func. Count: 70, Neg. LLF: 132.44199729361924
Iteration: 7, Func. Count: 81, Neg. LLF: 132.4376088134919
Iteration: 8, Func. Count: 92, Neg. LLF: 132.43368988906752
Iteration: 9, Func. Count: 103, Neg. LLF: 132.4335007568585
Iteration: 10, Func. Count: 114, Neg. LLF: 132.43349166227912
Iteration: 11, Func. Count: 124, Neg. LLF: 132.43349166225255
Optimization terminated successfully (Exit mode 0)
Current function value: 132.43349166227912
Iterations: 11
Function evaluations: 124
Gradient evaluations: 11
Iteration: 1, Func. Count: 13, Neg. LLF: 136.51901852596077
Iteration: 2, Func. Count: 27, Neg. LLF: 135.40737632474026
Iteration: 3, Func. Count: 40, Neg. LLF: 137.8764060860896
Iteration: 4, Func. Count: 53, Neg. LLF: 132.4812060963601
Iteration: 5, Func. Count: 65, Neg. LLF: 132.8935518378687
Iteration: 6, Func. Count: 78, Neg. LLF: 135.85446469909942
Iteration: 7, Func. Count: 92, Neg. LLF: 132.24982219600517
Iteration: 8, Func. Count: 105, Neg. LLF: 131.8823736208157
Iteration: 9, Func. Count: 117, Neg. LLF: 131.8378308713251
Iteration: 10, Func. Count: 129, Neg. LLF: 131.80051138487426
Iteration: 11, Func. Count: 141, Neg. LLF: 131.7647266331806
Iteration: 12, Func. Count: 153, Neg. LLF: 131.74051306723953
Iteration: 13, Func. Count: 165, Neg. LLF: 131.7279245431831
Iteration: 14, Func. Count: 177, Neg. LLF: 131.72663832177415
Iteration: 15, Func. Count: 189, Neg. LLF: 131.7264202586359
Iteration: 16, Func. Count: 201, Neg. LLF: 131.7263844426112
Iteration: 17, Func. Count: 213, Neg. LLF: 131.72638304064287
Iteration: 18, Func. Count: 224, Neg. LLF: 131.72638304064466
Optimization terminated successfully (Exit mode 0)
Current function value: 131.72638304064287
Iterations: 18
Function evaluations: 224
Gradient evaluations: 18
Iteration: 1, Func. Count: 14, Neg. LLF: 135.60982717769295
Iteration: 2, Func. Count: 28, Neg. LLF: 136.00445749847728
Iteration: 3, Func. Count: 42, Neg. LLF: 145.5477050284825
Iteration: 4, Func. Count: 56, Neg. LLF: 132.56453350135698
Iteration: 5, Func. Count: 69, Neg. LLF: 132.9822184343203
Iteration: 6, Func. Count: 84, Neg. LLF: 134.45436094394574
Iteration: 7, Func. Count: 99, Neg. LLF: 134.05415488404844
Iteration: 8, Func. Count: 113, Neg. LLF: 131.95365264481765
Iteration: 9, Func. Count: 126, Neg. LLF: 131.87522476838913
Iteration: 10, Func. Count: 139, Neg. LLF: 131.8296899301466
Iteration: 11, Func. Count: 152, Neg. LLF: 131.7906647053664
Iteration: 12, Func. Count: 165, Neg. LLF: 131.74555583439513
Iteration: 13, Func. Count: 178, Neg. LLF: 131.72801967816142
Iteration: 14, Func. Count: 191, Neg. LLF: 131.72648514839918
Iteration: 15, Func. Count: 204, Neg. LLF: 131.72639364307733
Iteration: 16, Func. Count: 217, Neg. LLF: 131.7263854614404
Iteration: 17, Func. Count: 230, Neg. LLF: 131.7263831561482
Iteration: 18, Func. Count: 242, Neg. LLF: 131.7263831956294
Optimization terminated successfully (Exit mode 0)
Current function value: 131.7263831561482
Iterations: 18
Function evaluations: 242
Gradient evaluations: 18
Iteration: 1, Func. Count: 15, Neg. LLF: 134.13418395490606
Iteration: 2, Func. Count: 30, Neg. LLF: 136.22822014189765
Iteration: 3, Func. Count: 45, Neg. LLF: 134.6579745628425
Iteration: 4, Func. Count: 60, Neg. LLF: 134.7233921959597
Iteration: 5, Func. Count: 75, Neg. LLF: 132.10723412075131
Iteration: 6, Func. Count: 89, Neg. LLF: 132.75164941982905
Iteration: 7, Func. Count: 105, Neg. LLF: 134.55463959194486
Iteration: 8, Func. Count: 120, Neg. LLF: 131.95769920181002
Iteration: 9, Func. Count: 135, Neg. LLF: 131.85337929195393
Iteration: 10, Func. Count: 149, Neg. LLF: 131.8154666759126
Iteration: 11, Func. Count: 163, Neg. LLF: 131.78025648944
Iteration: 12, Func. Count: 177, Neg. LLF: 131.738005674288
Iteration: 13, Func. Count: 191, Neg. LLF: 131.72810609943193
Iteration: 14, Func. Count: 205, Neg. LLF: 131.72659275871627
Iteration: 15, Func. Count: 219, Neg. LLF: 131.72642661387985
Iteration: 16, Func. Count: 233, Neg. LLF: 131.72638971444619
Iteration: 17, Func. Count: 247, Neg. LLF: 131.72638437278914
Iteration: 18, Func. Count: 261, Neg. LLF: 131.72638314568889
Iteration: 19, Func. Count: 274, Neg. LLF: 131.7263831796058
Optimization terminated successfully (Exit mode 0)
Current function value: 131.72638314568889
Iterations: 19
Function evaluations: 274
Gradient evaluations: 19
Iteration: 1, Func. Count: 8, Neg. LLF: 133.7892385554842
Iteration: 2, Func. Count: 15, Neg. LLF: 136.50562627558458
Iteration: 3, Func. Count: 23, Neg. LLF: 133.14614834195646
Iteration: 4, Func. Count: 30, Neg. LLF: 133.04220085977113
Iteration: 5, Func. Count: 37, Neg. LLF: 132.9594194793338
Iteration: 6, Func. Count: 44, Neg. LLF: 132.94772417203697
Iteration: 7, Func. Count: 51, Neg. LLF: 132.94336571885628
Iteration: 8, Func. Count: 58, Neg. LLF: 132.94320502050783
Iteration: 9, Func. Count: 65, Neg. LLF: 132.94319405398323
Iteration: 10, Func. Count: 71, Neg. LLF: 132.94319411969124
Optimization terminated successfully (Exit mode 0)
Current function value: 132.94319405398323
Iterations: 10
Function evaluations: 71
Gradient evaluations: 10
Iteration: 1, Func. Count: 9, Neg. LLF: 19912558.29794899
Iteration: 2, Func. Count: 19, Neg. LLF: 2111.468209987132
Iteration: 3, Func. Count: 28, Neg. LLF: 1316.5360587726477
Iteration: 4, Func. Count: 37, Neg. LLF: 132.26516833848603
Iteration: 5, Func. Count: 46, Neg. LLF: 132.08007094519908
Iteration: 6, Func. Count: 54, Neg. LLF: 132.07701052136275
Iteration: 7, Func. Count: 62, Neg. LLF: 132.07103383340302
Iteration: 8, Func. Count: 70, Neg. LLF: 132.063849983879
Iteration: 9, Func. Count: 78, Neg. LLF: 132.0568800554541
Iteration: 10, Func. Count: 86, Neg. LLF: 132.056216801522
Iteration: 11, Func. Count: 94, Neg. LLF: 132.05617549935087
Iteration: 12, Func. Count: 101, Neg. LLF: 132.0561754991553
Optimization terminated successfully (Exit mode 0)
Current function value: 132.05617549935087
Iterations: 12
Function evaluations: 101
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 191.7249079006732
Iteration: 2, Func. Count: 20, Neg. LLF: 476.1440169770483
Iteration: 3, Func. Count: 30, Neg. LLF: 135.52613213319373
Iteration: 4, Func. Count: 41, Neg. LLF: 132.6731863190949
Iteration: 5, Func. Count: 50, Neg. LLF: 134.303748732511
Iteration: 6, Func. Count: 60, Neg. LLF: 132.4211234487259
Iteration: 7, Func. Count: 69, Neg. LLF: 132.30945846463635
Iteration: 8, Func. Count: 78, Neg. LLF: 132.220096137776
Iteration: 9, Func. Count: 87, Neg. LLF: 132.18917952670222
Iteration: 10, Func. Count: 96, Neg. LLF: 132.1605782954936
Iteration: 11, Func. Count: 105, Neg. LLF: 132.1541962082184
Iteration: 12, Func. Count: 114, Neg. LLF: 132.15260634837256
Iteration: 13, Func. Count: 123, Neg. LLF: 132.1524936643981
Iteration: 14, Func. Count: 132, Neg. LLF: 132.15247399624812
Iteration: 15, Func. Count: 141, Neg. LLF: 132.15244224569068
Iteration: 16, Func. Count: 150, Neg. LLF: 132.15242733996908
Iteration: 17, Func. Count: 159, Neg. LLF: 132.15242172244487
Iteration: 18, Func. Count: 167, Neg. LLF: 132.1524217224214
Optimization terminated successfully (Exit mode 0)
Current function value: 132.15242172244487
Iterations: 18
Function evaluations: 167
Gradient evaluations: 18
Iteration: 1, Func. Count: 11, Neg. LLF: 204.0760754595075
Iteration: 2, Func. Count: 22, Neg. LLF: 663472.6959645872
Iteration: 3, Func. Count: 33, Neg. LLF: 142.3368423694665
Iteration: 4, Func. Count: 45, Neg. LLF: 132.3638846871848
Iteration: 5, Func. Count: 55, Neg. LLF: 132.32220538215077
Iteration: 6, Func. Count: 65, Neg. LLF: 132.2775153733417
Iteration: 7, Func. Count: 75, Neg. LLF: 132.1850496980551
Iteration: 8, Func. Count: 85, Neg. LLF: 132.15949998684218
Iteration: 9, Func. Count: 95, Neg. LLF: 132.15429731915995
Iteration: 10, Func. Count: 105, Neg. LLF: 132.15308149560857
Iteration: 11, Func. Count: 115, Neg. LLF: 132.15260120224957
Iteration: 12, Func. Count: 125, Neg. LLF: 132.15245649489117
Iteration: 13, Func. Count: 135, Neg. LLF: 132.15243518169987
Iteration: 14, Func. Count: 145, Neg. LLF: 132.15242984784942
Iteration: 15, Func. Count: 155, Neg. LLF: 132.15242500958033
Iteration: 16, Func. Count: 165, Neg. LLF: 132.152422066685
Iteration: 17, Func. Count: 175, Neg. LLF: 132.1524213884211
Optimization terminated successfully (Exit mode 0)
Current function value: 132.1524213884211
Iterations: 17
Function evaluations: 175
Gradient evaluations: 17
Iteration: 1, Func. Count: 12, Neg. LLF: 205.47285978354776
Iteration: 2, Func. Count: 24, Neg. LLF: 30054.971180612712
Iteration: 3, Func. Count: 36, Neg. LLF: 132.35551546956782
Iteration: 4, Func. Count: 47, Neg. LLF: 140.44278315299866
Iteration: 5, Func. Count: 61, Neg. LLF: 206.4988247908064
Iteration: 6, Func. Count: 73, Neg. LLF: 130.31301343995324
Iteration: 7, Func. Count: 84, Neg. LLF: 130.15228091054124
Iteration: 8, Func. Count: 95, Neg. LLF: 129.94151539589012
Iteration: 9, Func. Count: 106, Neg. LLF: 129.88222731182117
Iteration: 10, Func. Count: 117, Neg. LLF: 129.82952839209713
Iteration: 11, Func. Count: 128, Neg. LLF: 129.80894336768137
Iteration: 12, Func. Count: 139, Neg. LLF: 129.80288640318383
Iteration: 13, Func. Count: 150, Neg. LLF: 129.79866730196687
Iteration: 14, Func. Count: 161, Neg. LLF: 129.79816786761336
Iteration: 15, Func. Count: 172, Neg. LLF: 129.7981372234237
Iteration: 16, Func. Count: 183, Neg. LLF: 129.79813319475278
Iteration: 17, Func. Count: 194, Neg. LLF: 129.79812940458893
Iteration: 18, Func. Count: 204, Neg. LLF: 129.7981294045149
Optimization terminated successfully (Exit mode 0)
Current function value: 129.79812940458893
Iterations: 18
Function evaluations: 204
Gradient evaluations: 18
Iteration: 1, Func. Count: 9, Neg. LLF: 137.31366271419844
Iteration: 2, Func. Count: 18, Neg. LLF: 139.02678890497162
Iteration: 3, Func. Count: 27, Neg. LLF: 132.43417942759103
Iteration: 4, Func. Count: 35, Neg. LLF: 132.4300355935839
Iteration: 5, Func. Count: 44, Neg. LLF: 132.41134194319963
Iteration: 6, Func. Count: 52, Neg. LLF: 132.40963656638127
Iteration: 7, Func. Count: 60, Neg. LLF: 132.40913029564706
Iteration: 8, Func. Count: 68, Neg. LLF: 132.40909617786758
Iteration: 9, Func. Count: 76, Neg. LLF: 132.40908958126954
Iteration: 10, Func. Count: 83, Neg. LLF: 132.4090895812576
Optimization terminated successfully (Exit mode 0)
Current function value: 132.40908958126954
Iterations: 10
Function evaluations: 83
Gradient evaluations: 10
Iteration: 1, Func. Count: 10, Neg. LLF: 167.62359048280723
Iteration: 2, Func. Count: 20, Neg. LLF: 500.676238794827
Iteration: 3, Func. Count: 30, Neg. LLF: 132.23681691516768
Iteration: 4, Func. Count: 39, Neg. LLF: 134.4778314903115
Iteration: 5, Func. Count: 49, Neg. LLF: 133.43389977255077
Iteration: 6, Func. Count: 59, Neg. LLF: 132.14484347593316
Iteration: 7, Func. Count: 69, Neg. LLF: 132.05867056836988
Iteration: 8, Func. Count: 78, Neg. LLF: 132.05626598902643
Iteration: 9, Func. Count: 87, Neg. LLF: 132.05617569460117
Iteration: 10, Func. Count: 96, Neg. LLF: 132.05617503937088
Optimization terminated successfully (Exit mode 0)
Current function value: 132.05617503937088
Iterations: 10
Function evaluations: 96
Gradient evaluations: 10
Iteration: 1, Func. Count: 11, Neg. LLF: 179.71227155566012
Iteration: 2, Func. Count: 22, Neg. LLF: 174.80139906453905
Iteration: 3, Func. Count: 33, Neg. LLF: 133.37086905707292
Iteration: 4, Func. Count: 44, Neg. LLF: 132.38252542425565
Iteration: 5, Func. Count: 54, Neg. LLF: 132.32180839207123
Iteration: 6, Func. Count: 64, Neg. LLF: 132.4903388684886
Iteration: 7, Func. Count: 75, Neg. LLF: 132.2674232127047
Iteration: 8, Func. Count: 85, Neg. LLF: 132.1628891609678
Iteration: 9, Func. Count: 95, Neg. LLF: 132.1202732813934
Iteration: 10, Func. Count: 105, Neg. LLF: 132.09219085618787
Iteration: 11, Func. Count: 115, Neg. LLF: 132.05081289585775
Iteration: 12, Func. Count: 125, Neg. LLF: 132.1726678203439
Iteration: 13, Func. Count: 136, Neg. LLF: 131.96545034366972
Iteration: 14, Func. Count: 146, Neg. LLF: 131.9602803895592
Iteration: 15, Func. Count: 156, Neg. LLF: 131.95983806953765
Iteration: 16, Func. Count: 166, Neg. LLF: 131.95978578587625
Iteration: 17, Func. Count: 176, Neg. LLF: 131.95976965547456
Iteration: 18, Func. Count: 186, Neg. LLF: 131.95976875391796
Optimization terminated successfully (Exit mode 0)
Current function value: 131.95976875391796
Iterations: 18
Function evaluations: 186
Gradient evaluations: 18
Iteration: 1, Func. Count: 12, Neg. LLF: 146.20682821443688
Iteration: 2, Func. Count: 24, Neg. LLF: 143.88089837945373
Iteration: 3, Func. Count: 37, Neg. LLF: 133.75338789877256
Iteration: 4, Func. Count: 49, Neg. LLF: 132.3714405150036
Iteration: 5, Func. Count: 60, Neg. LLF: 133.36980225800195
Iteration: 6, Func. Count: 72, Neg. LLF: 132.31579378713488
Iteration: 7, Func. Count: 83, Neg. LLF: 132.2811230758995
Iteration: 8, Func. Count: 94, Neg. LLF: 132.2354559746717
Iteration: 9, Func. Count: 105, Neg. LLF: 132.47481444770744
Iteration: 10, Func. Count: 117, Neg. LLF: 132.31797775423604
Iteration: 11, Func. Count: 129, Neg. LLF: 132.02708413203885
Iteration: 12, Func. Count: 140, Neg. LLF: 132.09365451245895
Iteration: 13, Func. Count: 152, Neg. LLF: 131.9615942433695
Iteration: 14, Func. Count: 163, Neg. LLF: 131.96021372832269
Iteration: 15, Func. Count: 174, Neg. LLF: 131.95978659070053
Iteration: 16, Func. Count: 185, Neg. LLF: 131.95976976049067
Iteration: 17, Func. Count: 196, Neg. LLF: 131.95976728256886
Iteration: 18, Func. Count: 206, Neg. LLF: 131.95976735144367
Optimization terminated successfully (Exit mode 0)
Current function value: 131.95976728256886
Iterations: 18
Function evaluations: 206
Gradient evaluations: 18
Iteration: 1, Func. Count: 13, Neg. LLF: 146.70158283971446
Iteration: 2, Func. Count: 26, Neg. LLF: 185.69333052243076
Iteration: 3, Func. Count: 39, Neg. LLF: 133.17345079907247
Iteration: 4, Func. Count: 52, Neg. LLF: 131.93045764495955
Iteration: 5, Func. Count: 64, Neg. LLF: 140.68734114031022
Iteration: 6, Func. Count: 77, Neg. LLF: 130.86093835238105
Iteration: 7, Func. Count: 89, Neg. LLF: 130.9786328388799
Iteration: 8, Func. Count: 102, Neg. LLF: 130.8085268698274
Iteration: 9, Func. Count: 115, Neg. LLF: 133.17206286729018
Iteration: 10, Func. Count: 128, Neg. LLF: 132.23160565311323
Iteration: 11, Func. Count: 141, Neg. LLF: 129.83646920752554
Iteration: 12, Func. Count: 153, Neg. LLF: 129.81349409982613
Iteration: 13, Func. Count: 165, Neg. LLF: 129.8017125420997
Iteration: 14, Func. Count: 177, Neg. LLF: 129.7972560527371
Iteration: 15, Func. Count: 189, Neg. LLF: 129.7963577440597
Iteration: 16, Func. Count: 201, Neg. LLF: 129.79631728968675
Iteration: 17, Func. Count: 213, Neg. LLF: 129.7963161493237
Iteration: 18, Func. Count: 224, Neg. LLF: 129.7963161493237
Optimization terminated successfully (Exit mode 0)
Current function value: 129.7963161493237
Iterations: 18
Function evaluations: 224
Gradient evaluations: 18
Iteration: 1, Func. Count: 10, Neg. LLF: 135.11307646634452
Iteration: 2, Func. Count: 20, Neg. LLF: 141.5807326056117
Iteration: 3, Func. Count: 30, Neg. LLF: 132.45824699372093
Iteration: 4, Func. Count: 39, Neg. LLF: 132.47292686414622
Iteration: 5, Func. Count: 49, Neg. LLF: 132.4107174544669
Iteration: 6, Func. Count: 58, Neg. LLF: 132.4092229117798
Iteration: 7, Func. Count: 67, Neg. LLF: 132.40912504779627
Iteration: 8, Func. Count: 76, Neg. LLF: 132.40909165641582
Iteration: 9, Func. Count: 85, Neg. LLF: 132.40909018725742
Iteration: 10, Func. Count: 94, Neg. LLF: 132.4090893371763
Optimization terminated successfully (Exit mode 0)
Current function value: 132.4090893371763
Iterations: 10
Function evaluations: 94
Gradient evaluations: 10
Iteration: 1, Func. Count: 11, Neg. LLF: 19884124.62449601
Iteration: 2, Func. Count: 23, Neg. LLF: 361.58775335331774
Iteration: 3, Func. Count: 34, Neg. LLF: 269.05779785710416
Iteration: 4, Func. Count: 45, Neg. LLF: 132.1605433515808
Iteration: 5, Func. Count: 55, Neg. LLF: 132.08242953812044
Iteration: 6, Func. Count: 65, Neg. LLF: 132.07789289627246
Iteration: 7, Func. Count: 75, Neg. LLF: 132.0681364309756
Iteration: 8, Func. Count: 85, Neg. LLF: 132.0658005130827
Iteration: 9, Func. Count: 95, Neg. LLF: 132.05869666247364
Iteration: 10, Func. Count: 105, Neg. LLF: 132.05660746077584
Iteration: 11, Func. Count: 115, Neg. LLF: 132.05618696348535
Iteration: 12, Func. Count: 125, Neg. LLF: 132.05617509406392
Iteration: 13, Func. Count: 134, Neg. LLF: 132.05617509403848
Optimization terminated successfully (Exit mode 0)
Current function value: 132.05617509406392
Iterations: 13
Function evaluations: 134
Gradient evaluations: 13
Iteration: 1, Func. Count: 12, Neg. LLF: 190.5136439321707
Iteration: 2, Func. Count: 24, Neg. LLF: 4970607.617872096
Iteration: 3, Func. Count: 36, Neg. LLF: 134.04827453785992
Iteration: 4, Func. Count: 48, Neg. LLF: 132.36376767945558
Iteration: 5, Func. Count: 59, Neg. LLF: 132.30102532574972
Iteration: 6, Func. Count: 70, Neg. LLF: 162.00385453727608
Iteration: 7, Func. Count: 82, Neg. LLF: 135.60354967875588
Iteration: 8, Func. Count: 94, Neg. LLF: 132.00450672623882
Iteration: 9, Func. Count: 105, Neg. LLF: 131.9748082146158
Iteration: 10, Func. Count: 116, Neg. LLF: 131.96115373789016
Iteration: 11, Func. Count: 127, Neg. LLF: 131.96004107392886
Iteration: 12, Func. Count: 138, Neg. LLF: 131.9597823653473
Iteration: 13, Func. Count: 149, Neg. LLF: 131.95976858655553
Iteration: 14, Func. Count: 160, Neg. LLF: 131.95976739085916
Iteration: 15, Func. Count: 170, Neg. LLF: 131.9597673909505
Optimization terminated successfully (Exit mode 0)
Current function value: 131.95976739085916
Iterations: 15
Function evaluations: 170
Gradient evaluations: 15
Iteration: 1, Func. Count: 13, Neg. LLF: 202.1059095307121
Iteration: 2, Func. Count: 26, Neg. LLF: 7056973.459395413
Iteration: 3, Func. Count: 39, Neg. LLF: 132.74920332069962
Iteration: 4, Func. Count: 51, Neg. LLF: 132.65839791622494
Iteration: 5, Func. Count: 64, Neg. LLF: 134.50961361434858
Iteration: 6, Func. Count: 77, Neg. LLF: 131.99635896145017
Iteration: 7, Func. Count: 89, Neg. LLF: 131.9690351990831
Iteration: 8, Func. Count: 101, Neg. LLF: 131.961331891058
Iteration: 9, Func. Count: 113, Neg. LLF: 131.9599529031946
Iteration: 10, Func. Count: 125, Neg. LLF: 131.95979197313065
Iteration: 11, Func. Count: 137, Neg. LLF: 131.95976856788658
Iteration: 12, Func. Count: 149, Neg. LLF: 131.95976725882596
Iteration: 13, Func. Count: 160, Neg. LLF: 131.95976732767946
Optimization terminated successfully (Exit mode 0)
Current function value: 131.95976725882596
Iterations: 13
Function evaluations: 160
Gradient evaluations: 13
Iteration: 1, Func. Count: 14, Neg. LLF: 203.3640279121493
Iteration: 2, Func. Count: 28, Neg. LLF: 7039029.112811524
Iteration: 3, Func. Count: 42, Neg. LLF: 183.6478936380454
Iteration: 4, Func. Count: 56, Neg. LLF: 136.0978461836842
Iteration: 5, Func. Count: 70, Neg. LLF: 133.99291505876647
Iteration: 6, Func. Count: 84, Neg. LLF: 133.33657448914076
Iteration: 7, Func. Count: 98, Neg. LLF: 137.62518666649873
Iteration: 8, Func. Count: 112, Neg. LLF: 132.47672365121423
Iteration: 9, Func. Count: 126, Neg. LLF: 132.54398944971723
Iteration: 10, Func. Count: 140, Neg. LLF: 131.88167320755946
Iteration: 11, Func. Count: 154, Neg. LLF: 131.11515829075856
Iteration: 12, Func. Count: 167, Neg. LLF: 130.97581910052054
Iteration: 13, Func. Count: 181, Neg. LLF: 130.5504426742848
Iteration: 14, Func. Count: 194, Neg. LLF: 130.24999516123506
Iteration: 15, Func. Count: 207, Neg. LLF: 130.15109854786886
Iteration: 16, Func. Count: 220, Neg. LLF: 129.98444020389408
Iteration: 17, Func. Count: 233, Neg. LLF: 129.89364424994253
Iteration: 18, Func. Count: 246, Neg. LLF: 129.85436977113906
Iteration: 19, Func. Count: 259, Neg. LLF: 129.82432367860065
Iteration: 20, Func. Count: 272, Neg. LLF: 129.80978045728875
Iteration: 21, Func. Count: 285, Neg. LLF: 129.79808106990512
Iteration: 22, Func. Count: 298, Neg. LLF: 129.7967305368571
Iteration: 23, Func. Count: 311, Neg. LLF: 129.79649125511264
Iteration: 24, Func. Count: 324, Neg. LLF: 129.7964161032098
Iteration: 25, Func. Count: 337, Neg. LLF: 129.79635203643926
Iteration: 26, Func. Count: 350, Neg. LLF: 129.79632680667038
Iteration: 27, Func. Count: 363, Neg. LLF: 129.79631757152708
Iteration: 28, Func. Count: 376, Neg. LLF: 129.79631625355668
Iteration: 29, Func. Count: 388, Neg. LLF: 129.7963162536384
Optimization terminated successfully (Exit mode 0)
Current function value: 129.79631625355668
Iterations: 29
Function evaluations: 388
Gradient evaluations: 29
Iteration: 1, Func. Count: 11, Neg. LLF: 137.31795470937874
Iteration: 2, Func. Count: 23, Neg. LLF: 135.55189131123757
Iteration: 3, Func. Count: 34, Neg. LLF: 133.3015560152329
Iteration: 4, Func. Count: 44, Neg. LLF: 132.58641650895285
Iteration: 5, Func. Count: 54, Neg. LLF: 132.5868714799168
Iteration: 6, Func. Count: 65, Neg. LLF: 132.37997596021873
Iteration: 7, Func. Count: 75, Neg. LLF: 132.2811755065376
Iteration: 8, Func. Count: 85, Neg. LLF: 132.2151815709395
Iteration: 9, Func. Count: 95, Neg. LLF: 132.18912991519915
Iteration: 10, Func. Count: 105, Neg. LLF: 132.14268606963532
Iteration: 11, Func. Count: 115, Neg. LLF: 132.13372781322482
Iteration: 12, Func. Count: 125, Neg. LLF: 132.13244337094582
Iteration: 13, Func. Count: 135, Neg. LLF: 132.13211642371124
Iteration: 14, Func. Count: 145, Neg. LLF: 132.1320795806166
Iteration: 15, Func. Count: 155, Neg. LLF: 132.13207769241427
Iteration: 16, Func. Count: 164, Neg. LLF: 132.13207769241052
Optimization terminated successfully (Exit mode 0)
Current function value: 132.13207769241427
Iterations: 16
Function evaluations: 164
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 176.7767440209418
Iteration: 2, Func. Count: 24, Neg. LLF: 151.92382022129922
Iteration: 3, Func. Count: 36, Neg. LLF: 135.8830097582943
Iteration: 4, Func. Count: 48, Neg. LLF: 132.9653233952449
Iteration: 5, Func. Count: 60, Neg. LLF: 132.15790723431678
Iteration: 6, Func. Count: 71, Neg. LLF: 132.1416642685991
Iteration: 7, Func. Count: 83, Neg. LLF: 132.03353118095762
Iteration: 8, Func. Count: 94, Neg. LLF: 132.01894861448048
Iteration: 9, Func. Count: 105, Neg. LLF: 132.01710835430558
Iteration: 10, Func. Count: 116, Neg. LLF: 132.01701535910283
Iteration: 11, Func. Count: 127, Neg. LLF: 132.01696038029283
Iteration: 12, Func. Count: 138, Neg. LLF: 132.01695698406095
Iteration: 13, Func. Count: 148, Neg. LLF: 132.016956984096
Optimization terminated successfully (Exit mode 0)
Current function value: 132.01695698406095
Iterations: 13
Function evaluations: 148
Gradient evaluations: 13
Iteration: 1, Func. Count: 13, Neg. LLF: 179.5434453219806
Iteration: 2, Func. Count: 26, Neg. LLF: 155.27816116922082
Iteration: 3, Func. Count: 39, Neg. LLF: 132.17590799419514
Iteration: 4, Func. Count: 51, Neg. LLF: 132.2649855613501
Iteration: 5, Func. Count: 64, Neg. LLF: 132.9710306018408
Iteration: 6, Func. Count: 77, Neg. LLF: 132.0275688789425
Iteration: 7, Func. Count: 90, Neg. LLF: 131.77106604009296
Iteration: 8, Func. Count: 102, Neg. LLF: 131.73623981305064
Iteration: 9, Func. Count: 114, Neg. LLF: 131.72969558151846
Iteration: 10, Func. Count: 126, Neg. LLF: 131.72683349874626
Iteration: 11, Func. Count: 138, Neg. LLF: 131.7265725645019
Iteration: 12, Func. Count: 150, Neg. LLF: 131.72640102308415
Iteration: 13, Func. Count: 162, Neg. LLF: 131.72638399095126
Iteration: 14, Func. Count: 174, Neg. LLF: 131.72638314741315
Optimization terminated successfully (Exit mode 0)
Current function value: 131.72638314741315
Iterations: 14
Function evaluations: 174
Gradient evaluations: 14
Iteration: 1, Func. Count: 14, Neg. LLF: 136.52266072768978
Iteration: 2, Func. Count: 29, Neg. LLF: 135.4098458403719
Iteration: 3, Func. Count: 43, Neg. LLF: 142.29621245315454
Iteration: 4, Func. Count: 57, Neg. LLF: 132.37823979537188
Iteration: 5, Func. Count: 70, Neg. LLF: 133.17725403136217
Iteration: 6, Func. Count: 85, Neg. LLF: 136.18539346909566
Iteration: 7, Func. Count: 100, Neg. LLF: 132.77877002881542
Iteration: 8, Func. Count: 114, Neg. LLF: 131.89229585761697
Iteration: 9, Func. Count: 127, Neg. LLF: 131.84691912426678
Iteration: 10, Func. Count: 140, Neg. LLF: 131.7868152180509
Iteration: 11, Func. Count: 153, Neg. LLF: 131.75220605759344
Iteration: 12, Func. Count: 166, Neg. LLF: 131.73183159515295
Iteration: 13, Func. Count: 179, Neg. LLF: 131.72708767660376
Iteration: 14, Func. Count: 192, Neg. LLF: 131.7264106971385
Iteration: 15, Func. Count: 205, Neg. LLF: 131.7263882984049
Iteration: 16, Func. Count: 218, Neg. LLF: 131.72638462342127
Iteration: 17, Func. Count: 231, Neg. LLF: 131.72638314859643
Iteration: 18, Func. Count: 243, Neg. LLF: 131.726383188002
Optimization terminated successfully (Exit mode 0)
Current function value: 131.72638314859643
Iterations: 18
Function evaluations: 243
Gradient evaluations: 18
Iteration: 1, Func. Count: 15, Neg. LLF: 135.540241127552
Iteration: 2, Func. Count: 31, Neg. LLF: 135.5273804791912
Iteration: 3, Func. Count: 46, Neg. LLF: 161.03664678873372
Iteration: 4, Func. Count: 62, Neg. LLF: 134.65050148807725
Iteration: 5, Func. Count: 77, Neg. LLF: 132.56903864410953
Iteration: 6, Func. Count: 92, Neg. LLF: 131.9341019965771
Iteration: 7, Func. Count: 106, Neg. LLF: 132.02982341457627
Iteration: 8, Func. Count: 121, Neg. LLF: 132.01718298928714
Iteration: 9, Func. Count: 136, Neg. LLF: 145.43663117598257
Iteration: 10, Func. Count: 151, Neg. LLF: 131.79364066208288
Iteration: 11, Func. Count: 165, Neg. LLF: 131.76136534483848
Iteration: 12, Func. Count: 179, Neg. LLF: 131.73467004057792
Iteration: 13, Func. Count: 193, Neg. LLF: 131.72779617765912
Iteration: 14, Func. Count: 207, Neg. LLF: 131.72650481660085
Iteration: 15, Func. Count: 221, Neg. LLF: 131.72639965752174
Iteration: 16, Func. Count: 235, Neg. LLF: 131.72638344975613
Iteration: 17, Func. Count: 248, Neg. LLF: 131.7263834836987
Optimization terminated successfully (Exit mode 0)
Current function value: 131.72638344975613
Iterations: 17
Function evaluations: 248
Gradient evaluations: 17
Iteration: 1, Func. Count: 12, Neg. LLF: 135.98031346505763
Iteration: 2, Func. Count: 24, Neg. LLF: 136.35968860342223
Iteration: 3, Func. Count: 36, Neg. LLF: 132.8582231594613
Iteration: 4, Func. Count: 47, Neg. LLF: 132.95146726553634
Iteration: 5, Func. Count: 59, Neg. LLF: 133.51771309996988
Iteration: 6, Func. Count: 71, Neg. LLF: 132.2735404860011
Iteration: 7, Func. Count: 82, Neg. LLF: 132.21617594308813
Iteration: 8, Func. Count: 93, Neg. LLF: 132.15124175557736
Iteration: 9, Func. Count: 104, Neg. LLF: 132.13748474272018
Iteration: 10, Func. Count: 115, Neg. LLF: 132.13341642494422
Iteration: 11, Func. Count: 126, Neg. LLF: 132.13249975479644
Iteration: 12, Func. Count: 137, Neg. LLF: 132.13214676394796
Iteration: 13, Func. Count: 148, Neg. LLF: 132.13208735120386
Iteration: 14, Func. Count: 159, Neg. LLF: 132.13207821787475
Iteration: 15, Func. Count: 170, Neg. LLF: 132.13207763543346
Optimization terminated successfully (Exit mode 0)
Current function value: 132.13207763543346
Iterations: 15
Function evaluations: 170
Gradient evaluations: 15
Iteration: 1, Func. Count: 13, Neg. LLF: 159.7491773121626
Iteration: 2, Func. Count: 26, Neg. LLF: 148.18573988019773
Iteration: 3, Func. Count: 39, Neg. LLF: 134.1577784747927
Iteration: 4, Func. Count: 52, Neg. LLF: 131.58569351846532
Iteration: 5, Func. Count: 64, Neg. LLF: 242.92232549668927
Iteration: 6, Func. Count: 77, Neg. LLF: 131.36567342938665
Iteration: 7, Func. Count: 89, Neg. LLF: 131.24023544315176
Iteration: 8, Func. Count: 101, Neg. LLF: 131.1770139225537
Iteration: 9, Func. Count: 113, Neg. LLF: 131.142907605302
Iteration: 10, Func. Count: 125, Neg. LLF: 131.14013421992186
Iteration: 11, Func. Count: 137, Neg. LLF: 131.1392326808916
Iteration: 12, Func. Count: 149, Neg. LLF: 131.13882698084674
Iteration: 13, Func. Count: 161, Neg. LLF: 131.13878013543987
Iteration: 14, Func. Count: 173, Neg. LLF: 131.13877955093614
Optimization terminated successfully (Exit mode 0)
Current function value: 131.13877955093614
Iterations: 14
Function evaluations: 173
Gradient evaluations: 14
Iteration: 1, Func. Count: 14, Neg. LLF: 136.49488229033804
Iteration: 2, Func. Count: 29, Neg. LLF: 135.4264086916271
Iteration: 3, Func. Count: 43, Neg. LLF: 136.79763802610282
Iteration: 4, Func. Count: 57, Neg. LLF: 132.69067230649787
Iteration: 5, Func. Count: 71, Neg. LLF: 132.98197330280846
Iteration: 6, Func. Count: 85, Neg. LLF: 132.11089510653542
Iteration: 7, Func. Count: 98, Neg. LLF: 133.2204692661447
Iteration: 8, Func. Count: 113, Neg. LLF: 131.86480028426217
Iteration: 9, Func. Count: 126, Neg. LLF: 131.85606299393342
Iteration: 10, Func. Count: 140, Neg. LLF: 131.8028562293281
Iteration: 11, Func. Count: 153, Neg. LLF: 131.74670819493454
Iteration: 12, Func. Count: 166, Neg. LLF: 131.73398878434327
Iteration: 13, Func. Count: 179, Neg. LLF: 131.7272535386384
Iteration: 14, Func. Count: 192, Neg. LLF: 131.72662456495706
Iteration: 15, Func. Count: 205, Neg. LLF: 131.72638402346192
Iteration: 16, Func. Count: 218, Neg. LLF: 131.72638310713512
Optimization terminated successfully (Exit mode 0)
Current function value: 131.72638310713512
Iterations: 16
Function evaluations: 218
Gradient evaluations: 16
Iteration: 1, Func. Count: 15, Neg. LLF: 135.50477157061195
Iteration: 2, Func. Count: 30, Neg. LLF: 136.36421782672346
Iteration: 3, Func. Count: 45, Neg. LLF: 143.69895757463357
Iteration: 4, Func. Count: 60, Neg. LLF: 132.42828478260031
Iteration: 5, Func. Count: 74, Neg. LLF: 133.0594386707103
Iteration: 6, Func. Count: 90, Neg. LLF: 135.3115851958167
Iteration: 7, Func. Count: 106, Neg. LLF: 134.26418735899017
Iteration: 8, Func. Count: 121, Neg. LLF: 131.94709922411818
Iteration: 9, Func. Count: 135, Neg. LLF: 131.87772422508317
Iteration: 10, Func. Count: 149, Neg. LLF: 131.8239116943892
Iteration: 11, Func. Count: 163, Neg. LLF: 131.78141111519108
Iteration: 12, Func. Count: 177, Neg. LLF: 131.74612381010584
Iteration: 13, Func. Count: 191, Neg. LLF: 131.7287582484383
Iteration: 14, Func. Count: 205, Neg. LLF: 131.72655526420482
Iteration: 15, Func. Count: 219, Neg. LLF: 131.72639058749886
Iteration: 16, Func. Count: 233, Neg. LLF: 131.72638420191853
Iteration: 17, Func. Count: 247, Neg. LLF: 131.72638328084537
Optimization terminated successfully (Exit mode 0)
Current function value: 131.72638328084537
Iterations: 17
Function evaluations: 247
Gradient evaluations: 17
Iteration: 1, Func. Count: 16, Neg. LLF: 134.13943172537697
Iteration: 2, Func. Count: 32, Neg. LLF: 134.24323482175419
Iteration: 3, Func. Count: 49, Neg. LLF: 136.87268385563135
Iteration: 4, Func. Count: 65, Neg. LLF: 134.5720761210442
Iteration: 5, Func. Count: 81, Neg. LLF: 132.0565330984558
Iteration: 6, Func. Count: 96, Neg. LLF: 132.1829500302611
Iteration: 7, Func. Count: 112, Neg. LLF: 134.35435116808284
Iteration: 8, Func. Count: 128, Neg. LLF: 131.85603079016894
Iteration: 9, Func. Count: 143, Neg. LLF: 131.9250200016635
Iteration: 10, Func. Count: 159, Neg. LLF: 131.76177603247916
Iteration: 11, Func. Count: 174, Neg. LLF: 131.73311029870754
Iteration: 12, Func. Count: 189, Neg. LLF: 131.7270799524672
Iteration: 13, Func. Count: 204, Neg. LLF: 131.7266461048756
Iteration: 14, Func. Count: 219, Neg. LLF: 131.72639565721101
Iteration: 15, Func. Count: 234, Neg. LLF: 131.72638413365556
Iteration: 16, Func. Count: 249, Neg. LLF: 131.72638318589753
Optimization terminated successfully (Exit mode 0)
Current function value: 131.72638318589753
Iterations: 16
Function evaluations: 249
Gradient evaluations: 16
Iteration: 1, Func. Count: 6, Neg. LLF: 186.07091713894695
Iteration: 2, Func. Count: 12, Neg. LLF: 141.6703427161132
Iteration: 3, Func. Count: 19, Neg. LLF: 134.48832408019183
Iteration: 4, Func. Count: 25, Neg. LLF: 133.20272714569413
Iteration: 5, Func. Count: 30, Neg. LLF: 133.06473007353736
Iteration: 6, Func. Count: 35, Neg. LLF: 133.52649192133453
Iteration: 7, Func. Count: 41, Neg. LLF: 133.89716964456045
Iteration: 8, Func. Count: 47, Neg. LLF: 132.85424724665424
Iteration: 9, Func. Count: 53, Neg. LLF: 131.80431685036268
Iteration: 10, Func. Count: 58, Neg. LLF: 157.63898667952708
Iteration: 11, Func. Count: 66, Neg. LLF: 131.67492545442275
Iteration: 12, Func. Count: 71, Neg. LLF: 131.6641472514799
Iteration: 13, Func. Count: 76, Neg. LLF: 131.66168018403107
Iteration: 14, Func. Count: 81, Neg. LLF: 131.6616779030726
Iteration: 15, Func. Count: 85, Neg. LLF: 131.66167790315572
Optimization terminated successfully (Exit mode 0)
Current function value: 131.6616779030726
Iterations: 15
Function evaluations: 85
Gradient evaluations: 15
Iteration: 1, Func. Count: 5, Neg. LLF: 144.09354080398523
Iteration: 2, Func. Count: 10, Neg. LLF: 138.11636992959754
Iteration: 3, Func. Count: 15, Neg. LLF: 123.71525543301856
Iteration: 4, Func. Count: 19, Neg. LLF: 124.94312641534462
Iteration: 5, Func. Count: 26, Neg. LLF: 123.56991321257979
Iteration: 6, Func. Count: 30, Neg. LLF: 123.56600777767044
Iteration: 7, Func. Count: 34, Neg. LLF: 123.56596987323464
Iteration: 8, Func. Count: 38, Neg. LLF: 123.56595530071264
Iteration: 9, Func. Count: 42, Neg. LLF: 123.56595129232515
Iteration: 10, Func. Count: 46, Neg. LLF: 123.56595058950623
Optimization terminated successfully (Exit mode 0)
Current function value: 123.56595058950623
Iterations: 10
Function evaluations: 46
Gradient evaluations: 10
Iteration: 1, Func. Count: 6, Neg. LLF: 123.88380574465806
Iteration: 2, Func. Count: 12, Neg. LLF: 123.58436043817387
Iteration: 3, Func. Count: 17, Neg. LLF: 123.58628785518808
Iteration: 4, Func. Count: 23, Neg. LLF: 123.57523471156436
Iteration: 5, Func. Count: 29, Neg. LLF: 123.5739561490356
Iteration: 6, Func. Count: 34, Neg. LLF: 123.57394807917474
Iteration: 7, Func. Count: 39, Neg. LLF: 123.57392788424524
Iteration: 8, Func. Count: 44, Neg. LLF: 123.5738721867852
Iteration: 9, Func. Count: 49, Neg. LLF: 123.57372859002086
Iteration: 10, Func. Count: 54, Neg. LLF: 123.57336088427992
Iteration: 11, Func. Count: 59, Neg. LLF: 123.57280546446863
Iteration: 12, Func. Count: 64, Neg. LLF: 123.57214062657742
Iteration: 13, Func. Count: 69, Neg. LLF: 123.57126226953264
Iteration: 14, Func. Count: 74, Neg. LLF: 123.57123422674543
Iteration: 15, Func. Count: 78, Neg. LLF: 123.57123422663538
Optimization terminated successfully (Exit mode 0)
Current function value: 123.57123422674543
Iterations: 15
Function evaluations: 78
Gradient evaluations: 15
Iteration: 1, Func. Count: 7, Neg. LLF: 125.91651579337764
Iteration: 2, Func. Count: 15, Neg. LLF: 123.59807275517774
Iteration: 3, Func. Count: 21, Neg. LLF: 123.58046338633429
Iteration: 4, Func. Count: 27, Neg. LLF: 123.57573383593815
Iteration: 5, Func. Count: 33, Neg. LLF: 123.57568107030649
Iteration: 6, Func. Count: 39, Neg. LLF: 123.57551539621508
Iteration: 7, Func. Count: 45, Neg. LLF: 123.57519469714421
Iteration: 8, Func. Count: 51, Neg. LLF: 123.5742913772275
Iteration: 9, Func. Count: 57, Neg. LLF: 123.57409119435772
Iteration: 10, Func. Count: 63, Neg. LLF: 123.57399429448797
Iteration: 11, Func. Count: 69, Neg. LLF: 123.57399218767074
Iteration: 12, Func. Count: 75, Neg. LLF: 123.57398141280383
Iteration: 13, Func. Count: 81, Neg. LLF: 123.57392727421386
Iteration: 14, Func. Count: 87, Neg. LLF: 123.57364953618722
Iteration: 15, Func. Count: 93, Neg. LLF: 123.57226710585245
Iteration: 16, Func. Count: 99, Neg. LLF: 123.5715200039849
Iteration: 17, Func. Count: 105, Neg. LLF: 123.57124004764623
Iteration: 18, Func. Count: 111, Neg. LLF: 123.57123824957851
Iteration: 19, Func. Count: 117, Neg. LLF: 123.57123400963124
Iteration: 20, Func. Count: 122, Neg. LLF: 123.57123400990447
Optimization terminated successfully (Exit mode 0)
Current function value: 123.57123400963124
Iterations: 20
Function evaluations: 122
Gradient evaluations: 20
Iteration: 1, Func. Count: 8, Neg. LLF: 128.09623500062654
Iteration: 2, Func. Count: 17, Neg. LLF: 123.5930100679434
Iteration: 3, Func. Count: 24, Neg. LLF: 123.5777064735231
Iteration: 4, Func. Count: 31, Neg. LLF: 123.5758052554178
Iteration: 5, Func. Count: 38, Neg. LLF: 123.57578152199595
Iteration: 6, Func. Count: 45, Neg. LLF: 123.57562272466275
Iteration: 7, Func. Count: 52, Neg. LLF: 123.57507746489185
Iteration: 8, Func. Count: 59, Neg. LLF: 123.57499116399521
Iteration: 9, Func. Count: 66, Neg. LLF: 123.57491577172473
Iteration: 10, Func. Count: 73, Neg. LLF: 123.57486960399731
Iteration: 11, Func. Count: 80, Neg. LLF: 123.57456595291241
Iteration: 12, Func. Count: 87, Neg. LLF: 123.57418257439768
Iteration: 13, Func. Count: 94, Neg. LLF: 123.5739733183529
Iteration: 14, Func. Count: 101, Neg. LLF: 123.57389093499161
Iteration: 15, Func. Count: 108, Neg. LLF: 123.5738879359567
Iteration: 16, Func. Count: 115, Neg. LLF: 123.57388475126636
Iteration: 17, Func. Count: 122, Neg. LLF: 123.57386737721696
Iteration: 18, Func. Count: 129, Neg. LLF: 123.57377696897504
Iteration: 19, Func. Count: 136, Neg. LLF: 123.57334303058325
Iteration: 20, Func. Count: 143, Neg. LLF: 123.57182081542874
Iteration: 21, Func. Count: 150, Neg. LLF: 123.5714549753328
Iteration: 22, Func. Count: 157, Neg. LLF: 123.57124450804604
Iteration: 23, Func. Count: 164, Neg. LLF: 123.57124219984094
Iteration: 24, Func. Count: 171, Neg. LLF: 123.57123360599303
Iteration: 25, Func. Count: 177, Neg. LLF: 123.57123360652275
Optimization terminated successfully (Exit mode 0)
Current function value: 123.57123360599303
Iterations: 25
Function evaluations: 177
Gradient evaluations: 25
Iteration: 1, Func. Count: 9, Neg. LLF: 124.1927731111581
Iteration: 2, Func. Count: 19, Neg. LLF: 123.7533327666254
Iteration: 3, Func. Count: 28, Neg. LLF: 123.58710197946863
Iteration: 4, Func. Count: 37, Neg. LLF: 123.46806481064394
Iteration: 5, Func. Count: 45, Neg. LLF: 123.42334940605969
Iteration: 6, Func. Count: 53, Neg. LLF: 123.20824968136888
Iteration: 7, Func. Count: 61, Neg. LLF: 122.86772646101448
Iteration: 8, Func. Count: 69, Neg. LLF: 122.76541736863308
Iteration: 9, Func. Count: 77, Neg. LLF: 122.67524879057213
Iteration: 10, Func. Count: 85, Neg. LLF: 122.65467534974768
Iteration: 11, Func. Count: 93, Neg. LLF: 122.63961297114672
Iteration: 12, Func. Count: 101, Neg. LLF: 122.59692684257952
Iteration: 13, Func. Count: 109, Neg. LLF: 123.43378972371166
Iteration: 14, Func. Count: 118, Neg. LLF: 123.28920549851927
Iteration: 15, Func. Count: 127, Neg. LLF: 122.69579881112296
Iteration: 16, Func. Count: 136, Neg. LLF: 122.42673805226819
Iteration: 17, Func. Count: 145, Neg. LLF: 122.2226778373728
Iteration: 18, Func. Count: 153, Neg. LLF: 122.26308232749659
Iteration: 19, Func. Count: 162, Neg. LLF: 122.13925836312862
Iteration: 20, Func. Count: 171, Neg. LLF: 121.97505596390762
Iteration: 21, Func. Count: 179, Neg. LLF: 121.97502360476702
Iteration: 22, Func. Count: 186, Neg. LLF: 121.97502360462326
Optimization terminated successfully (Exit mode 0)
Current function value: 121.97502360476702
Iterations: 22
Function evaluations: 186
Gradient evaluations: 22
Iteration: 1, Func. Count: 6, Neg. LLF: 130.74747609069598
Iteration: 2, Func. Count: 12, Neg. LLF: 133.77642240963957
Iteration: 3, Func. Count: 18, Neg. LLF: 124.46425361884283
Iteration: 4, Func. Count: 23, Neg. LLF: 123.62722140205172
Iteration: 5, Func. Count: 28, Neg. LLF: 123.8513688654952
Iteration: 6, Func. Count: 35, Neg. LLF: 123.56785942548217
Iteration: 7, Func. Count: 40, Neg. LLF: 123.5659674033236
Iteration: 8, Func. Count: 45, Neg. LLF: 123.56595097626436
Iteration: 9, Func. Count: 49, Neg. LLF: 123.56595115132063
Optimization terminated successfully (Exit mode 0)
Current function value: 123.56595097626436
Iterations: 9
Function evaluations: 49
Gradient evaluations: 9
Iteration: 1, Func. Count: 7, Neg. LLF: 129.12491263676662
Iteration: 2, Func. Count: 15, Neg. LLF: 123.5739947728109
Iteration: 3, Func. Count: 21, Neg. LLF: 123.57430452359829
Iteration: 4, Func. Count: 28, Neg. LLF: 123.57398162130042
Iteration: 5, Func. Count: 34, Neg. LLF: 123.57397435642737
Iteration: 6, Func. Count: 40, Neg. LLF: 123.57397131581767
Iteration: 7, Func. Count: 46, Neg. LLF: 123.57395723999481
Iteration: 8, Func. Count: 52, Neg. LLF: 123.5739246995921
Iteration: 9, Func. Count: 58, Neg. LLF: 123.5738334573359
Iteration: 10, Func. Count: 64, Neg. LLF: 123.57358605319199
Iteration: 11, Func. Count: 70, Neg. LLF: 123.57300633342102
Iteration: 12, Func. Count: 76, Neg. LLF: 123.57262402241095
Iteration: 13, Func. Count: 82, Neg. LLF: 123.57223850398418
Iteration: 14, Func. Count: 88, Neg. LLF: 123.57137375965209
Iteration: 15, Func. Count: 94, Neg. LLF: 123.57123656911568
Iteration: 16, Func. Count: 100, Neg. LLF: 123.57123347568776
Iteration: 17, Func. Count: 105, Neg. LLF: 123.57123347571599
Optimization terminated successfully (Exit mode 0)
Current function value: 123.57123347568776
Iterations: 17
Function evaluations: 105
Gradient evaluations: 17
Iteration: 1, Func. Count: 8, Neg. LLF: 155.86919981009146
Iteration: 2, Func. Count: 17, Neg. LLF: 123.57584891674092
Iteration: 3, Func. Count: 24, Neg. LLF: 123.57753486742689
Iteration: 4, Func. Count: 32, Neg. LLF: 123.57538864383744
Iteration: 5, Func. Count: 39, Neg. LLF: 123.57536490450477
Iteration: 6, Func. Count: 46, Neg. LLF: 123.57524081054733
Iteration: 7, Func. Count: 53, Neg. LLF: 123.57467056536784
Iteration: 8, Func. Count: 60, Neg. LLF: 123.57396860991388
Iteration: 9, Func. Count: 67, Neg. LLF: 123.57396593981076
Iteration: 10, Func. Count: 74, Neg. LLF: 123.57395505217805
Iteration: 11, Func. Count: 81, Neg. LLF: 123.57393485118608
Iteration: 12, Func. Count: 88, Neg. LLF: 123.57386917632823
Iteration: 13, Func. Count: 95, Neg. LLF: 123.57368642224668
Iteration: 14, Func. Count: 102, Neg. LLF: 123.57307467642391
Iteration: 15, Func. Count: 109, Neg. LLF: 123.57292152040591
Iteration: 16, Func. Count: 116, Neg. LLF: 123.57245851921998
Iteration: 17, Func. Count: 123, Neg. LLF: 123.57214190463682
Iteration: 18, Func. Count: 130, Neg. LLF: 123.57149082841177
Iteration: 19, Func. Count: 137, Neg. LLF: 123.5712734401664
Iteration: 20, Func. Count: 144, Neg. LLF: 123.57123410834583
Iteration: 21, Func. Count: 150, Neg. LLF: 123.57123410855286
Optimization terminated successfully (Exit mode 0)
Current function value: 123.57123410834583
Iterations: 21
Function evaluations: 150
Gradient evaluations: 21
Iteration: 1, Func. Count: 9, Neg. LLF: 150.74451525507646
Iteration: 2, Func. Count: 19, Neg. LLF: 123.57719200207558
Iteration: 3, Func. Count: 27, Neg. LLF: 123.58024033923274
Iteration: 4, Func. Count: 36, Neg. LLF: 123.5760692224069
Iteration: 5, Func. Count: 44, Neg. LLF: 123.57598786502705
Iteration: 6, Func. Count: 52, Neg. LLF: 123.5755682063639
Iteration: 7, Func. Count: 60, Neg. LLF: 123.57511804574747
Iteration: 8, Func. Count: 68, Neg. LLF: 123.57510441881858
Iteration: 9, Func. Count: 76, Neg. LLF: 123.57502669900063
Iteration: 10, Func. Count: 84, Neg. LLF: 123.5746046326893
Iteration: 11, Func. Count: 92, Neg. LLF: 123.57390792610177
Iteration: 12, Func. Count: 100, Neg. LLF: 123.57388520638742
Iteration: 13, Func. Count: 108, Neg. LLF: 123.57387883800563
Iteration: 14, Func. Count: 116, Neg. LLF: 123.57387535944274
Iteration: 15, Func. Count: 124, Neg. LLF: 123.5738667438191
Iteration: 16, Func. Count: 132, Neg. LLF: 123.57384323703411
Iteration: 17, Func. Count: 140, Neg. LLF: 123.57378828262601
Iteration: 18, Func. Count: 148, Neg. LLF: 123.5735822483797
Iteration: 19, Func. Count: 156, Neg. LLF: 123.57298147801922
Iteration: 20, Func. Count: 164, Neg. LLF: 123.57273726177743
Iteration: 21, Func. Count: 172, Neg. LLF: 123.57237204458761
Iteration: 22, Func. Count: 180, Neg. LLF: 123.57192775320173
Iteration: 23, Func. Count: 188, Neg. LLF: 123.57149438457121
Iteration: 24, Func. Count: 196, Neg. LLF: 123.57126345066307
Iteration: 25, Func. Count: 204, Neg. LLF: 123.57123375948952
Iteration: 26, Func. Count: 211, Neg. LLF: 123.57123375989998
Optimization terminated successfully (Exit mode 0)
Current function value: 123.57123375948952
Iterations: 26
Function evaluations: 211
Gradient evaluations: 26
Iteration: 1, Func. Count: 10, Neg. LLF: 146.47695857673318
Iteration: 2, Func. Count: 21, Neg. LLF: 123.5794907106408
Iteration: 3, Func. Count: 30, Neg. LLF: 123.58337015796045
Iteration: 4, Func. Count: 40, Neg. LLF: 123.54666930827493
Iteration: 5, Func. Count: 49, Neg. LLF: 123.33964691761685
Iteration: 6, Func. Count: 58, Neg. LLF: 123.2130881631499
Iteration: 7, Func. Count: 67, Neg. LLF: 122.90251789997238
Iteration: 8, Func. Count: 76, Neg. LLF: 122.81146125578555
Iteration: 9, Func. Count: 85, Neg. LLF: 122.7526861208796
Iteration: 10, Func. Count: 94, Neg. LLF: 122.7389153376248
Iteration: 11, Func. Count: 103, Neg. LLF: 122.6575950912647
Iteration: 12, Func. Count: 112, Neg. LLF: 122.0483737619023
Iteration: 13, Func. Count: 121, Neg. LLF: 122.71458515069024
Iteration: 14, Func. Count: 131, Neg. LLF: 121.97643882295534
Iteration: 15, Func. Count: 140, Neg. LLF: 121.97578220435064
Iteration: 16, Func. Count: 149, Neg. LLF: 121.9750553760248
Iteration: 17, Func. Count: 158, Neg. LLF: 121.97504565870561
Iteration: 18, Func. Count: 167, Neg. LLF: 122.08660792673382
Optimization terminated successfully (Exit mode 0)
Current function value: 121.97504558268116
Iterations: 19
Function evaluations: 170
Gradient evaluations: 18
Iteration: 1, Func. Count: 7, Neg. LLF: 130.75555936442632
Iteration: 2, Func. Count: 14, Neg. LLF: 136.00849684072122
Iteration: 3, Func. Count: 21, Neg. LLF: 124.45475412394114
Iteration: 4, Func. Count: 27, Neg. LLF: 123.61529889901523
Iteration: 5, Func. Count: 33, Neg. LLF: 123.9798080471834
Iteration: 6, Func. Count: 41, Neg. LLF: 123.5703935110127
Iteration: 7, Func. Count: 47, Neg. LLF: 123.56616503713508
Iteration: 8, Func. Count: 53, Neg. LLF: 123.56599586874727
Iteration: 9, Func. Count: 59, Neg. LLF: 123.56595058117983
Iteration: 10, Func. Count: 64, Neg. LLF: 123.56595067778846
Optimization terminated successfully (Exit mode 0)
Current function value: 123.56595058117983
Iterations: 10
Function evaluations: 64
Gradient evaluations: 10
Iteration: 1, Func. Count: 8, Neg. LLF: 128.8075798013933
Iteration: 2, Func. Count: 17, Neg. LLF: 123.57400711253545
Iteration: 3, Func. Count: 24, Neg. LLF: 123.57444604536025
Iteration: 4, Func. Count: 32, Neg. LLF: 123.57399101539934
Iteration: 5, Func. Count: 39, Neg. LLF: 123.57398308430747
Iteration: 6, Func. Count: 46, Neg. LLF: 123.57395602469282
Iteration: 7, Func. Count: 53, Neg. LLF: 123.57393306060402
Iteration: 8, Func. Count: 60, Neg. LLF: 123.57387130668232
Iteration: 9, Func. Count: 67, Neg. LLF: 123.57370157727719
Iteration: 10, Func. Count: 74, Neg. LLF: 123.57326584550627
Iteration: 11, Func. Count: 81, Neg. LLF: 123.57277092198842
Iteration: 12, Func. Count: 88, Neg. LLF: 123.57246805302562
Iteration: 13, Func. Count: 95, Neg. LLF: 123.5714444946913
Iteration: 14, Func. Count: 102, Neg. LLF: 123.57123800297371
Iteration: 15, Func. Count: 109, Neg. LLF: 123.57123348612824
Iteration: 16, Func. Count: 115, Neg. LLF: 123.57123348616214
Optimization terminated successfully (Exit mode 0)
Current function value: 123.57123348612824
Iterations: 16
Function evaluations: 115
Gradient evaluations: 16
Iteration: 1, Func. Count: 9, Neg. LLF: 155.6909952555966
Iteration: 2, Func. Count: 19, Neg. LLF: 123.57587977755844
Iteration: 3, Func. Count: 27, Neg. LLF: 123.57980594881343
Iteration: 4, Func. Count: 36, Neg. LLF: 123.57546010035698
Iteration: 5, Func. Count: 44, Neg. LLF: 123.57543060434573
Iteration: 6, Func. Count: 52, Neg. LLF: 123.57524518119016
Iteration: 7, Func. Count: 60, Neg. LLF: 123.57447864151968
Iteration: 8, Func. Count: 68, Neg. LLF: 123.57412014858467
Iteration: 9, Func. Count: 76, Neg. LLF: 123.57398022592368
Iteration: 10, Func. Count: 84, Neg. LLF: 123.57393511567282
Iteration: 11, Func. Count: 92, Neg. LLF: 123.57393292099421
Iteration: 12, Func. Count: 100, Neg. LLF: 123.57392052226437
Iteration: 13, Func. Count: 108, Neg. LLF: 123.57385740320235
Iteration: 14, Func. Count: 116, Neg. LLF: 123.5735342313376
Iteration: 15, Func. Count: 124, Neg. LLF: 123.57199090149572
Iteration: 16, Func. Count: 132, Neg. LLF: 123.57152475644085
Iteration: 17, Func. Count: 140, Neg. LLF: 123.5712415303665
Iteration: 18, Func. Count: 148, Neg. LLF: 123.57123885207088
Iteration: 19, Func. Count: 156, Neg. LLF: 123.57123349106973
Iteration: 20, Func. Count: 163, Neg. LLF: 123.57123349135038
Optimization terminated successfully (Exit mode 0)
Current function value: 123.57123349106973
Iterations: 20
Function evaluations: 163
Gradient evaluations: 20
Iteration: 1, Func. Count: 10, Neg. LLF: 150.74234054115533
Iteration: 2, Func. Count: 21, Neg. LLF: 123.57645829382905
Iteration: 3, Func. Count: 30, Neg. LLF: 123.58066476308052
Iteration: 4, Func. Count: 40, Neg. LLF: 123.5759766606723
Iteration: 5, Func. Count: 49, Neg. LLF: 123.5759266663688
Iteration: 6, Func. Count: 58, Neg. LLF: 123.57561041870915
Iteration: 7, Func. Count: 67, Neg. LLF: 123.5751610936781
Iteration: 8, Func. Count: 76, Neg. LLF: 123.57505723855635
Iteration: 9, Func. Count: 85, Neg. LLF: 123.57498206886741
Iteration: 10, Func. Count: 94, Neg. LLF: 123.5749574376021
Iteration: 11, Func. Count: 103, Neg. LLF: 123.57479333568904
Iteration: 12, Func. Count: 112, Neg. LLF: 123.57404910928811
Iteration: 13, Func. Count: 121, Neg. LLF: 123.57394723660231
Iteration: 14, Func. Count: 130, Neg. LLF: 123.57389556151256
Iteration: 15, Func. Count: 139, Neg. LLF: 123.57389161943657
Iteration: 16, Func. Count: 148, Neg. LLF: 123.57388858468482
Iteration: 17, Func. Count: 157, Neg. LLF: 123.57386828683462
Iteration: 18, Func. Count: 166, Neg. LLF: 123.573747146875
Iteration: 19, Func. Count: 175, Neg. LLF: 123.5728867617145
Iteration: 20, Func. Count: 184, Neg. LLF: 123.57139646870269
Iteration: 21, Func. Count: 193, Neg. LLF: 123.57131884756326
Iteration: 22, Func. Count: 202, Neg. LLF: 123.57126255248488
Iteration: 23, Func. Count: 211, Neg. LLF: 123.5712352118959
Iteration: 24, Func. Count: 220, Neg. LLF: 123.57123343054084
Iteration: 25, Func. Count: 228, Neg. LLF: 123.57123343101925
Optimization terminated successfully (Exit mode 0)
Current function value: 123.57123343054084
Iterations: 25
Function evaluations: 228
Gradient evaluations: 25
Iteration: 1, Func. Count: 11, Neg. LLF: 147.21108622641933
Iteration: 2, Func. Count: 23, Neg. LLF: 123.57696499694083
Iteration: 3, Func. Count: 33, Neg. LLF: 123.5804774010746
Iteration: 4, Func. Count: 44, Neg. LLF: 123.57660460863431
Iteration: 5, Func. Count: 54, Neg. LLF: 123.57591773885282
Iteration: 6, Func. Count: 64, Neg. LLF: 123.57505737744955
Iteration: 7, Func. Count: 74, Neg. LLF: 123.57471633646736
Iteration: 8, Func. Count: 84, Neg. LLF: 123.57439452613856
Iteration: 9, Func. Count: 94, Neg. LLF: 123.57428633233289
Iteration: 10, Func. Count: 104, Neg. LLF: 123.57362517726959
Iteration: 11, Func. Count: 114, Neg. LLF: 123.57314746950296
Iteration: 12, Func. Count: 124, Neg. LLF: 123.57294168607972
Iteration: 13, Func. Count: 134, Neg. LLF: 123.57290104625513
Iteration: 14, Func. Count: 144, Neg. LLF: 123.57287466445528
Iteration: 15, Func. Count: 154, Neg. LLF: 123.57285888124602
Iteration: 16, Func. Count: 164, Neg. LLF: 123.57285547156518
Iteration: 17, Func. Count: 174, Neg. LLF: 123.57285359395087
Iteration: 18, Func. Count: 184, Neg. LLF: 123.57285034988745
Iteration: 19, Func. Count: 194, Neg. LLF: 123.57284095187994
Iteration: 20, Func. Count: 204, Neg. LLF: 123.57281796150646
Iteration: 21, Func. Count: 214, Neg. LLF: 123.57275993447416
Iteration: 22, Func. Count: 224, Neg. LLF: 123.57263726310885
Iteration: 23, Func. Count: 234, Neg. LLF: 123.57239955057666
Iteration: 24, Func. Count: 244, Neg. LLF: 123.57155346661965
Iteration: 25, Func. Count: 254, Neg. LLF: 123.5714230895918
Iteration: 26, Func. Count: 264, Neg. LLF: 123.57136737201276
Iteration: 27, Func. Count: 274, Neg. LLF: 123.57124375272207
Iteration: 28, Func. Count: 284, Neg. LLF: 123.57123392834953
Iteration: 29, Func. Count: 293, Neg. LLF: 123.57123392858944
Optimization terminated successfully (Exit mode 0)
Current function value: 123.57123392834953
Iterations: 29
Function evaluations: 293
Gradient evaluations: 29
Iteration: 1, Func. Count: 8, Neg. LLF: 132.86438398321934
Iteration: 2, Func. Count: 16, Neg. LLF: 140.9944220802562
Iteration: 3, Func. Count: 24, Neg. LLF: 124.70529483866767
Iteration: 4, Func. Count: 31, Neg. LLF: 123.6475031813049
Iteration: 5, Func. Count: 38, Neg. LLF: 124.20121904678359
Iteration: 6, Func. Count: 47, Neg. LLF: 123.58102849726457
Iteration: 7, Func. Count: 54, Neg. LLF: 123.56802385955277
Iteration: 8, Func. Count: 61, Neg. LLF: 123.56633118587109
Iteration: 9, Func. Count: 68, Neg. LLF: 123.56595199311333
Iteration: 10, Func. Count: 75, Neg. LLF: 123.565950580158
Iteration: 11, Func. Count: 81, Neg. LLF: 123.56595070808423
Optimization terminated successfully (Exit mode 0)
Current function value: 123.565950580158
Iterations: 11
Function evaluations: 81
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 127.01687394098659
Iteration: 2, Func. Count: 19, Neg. LLF: 123.5747151703685
Iteration: 3, Func. Count: 27, Neg. LLF: 123.57593851096951
Iteration: 4, Func. Count: 36, Neg. LLF: 123.57429074489188
Iteration: 5, Func. Count: 44, Neg. LLF: 123.57400856379367
Iteration: 6, Func. Count: 52, Neg. LLF: 123.57393899915888
Iteration: 7, Func. Count: 60, Neg. LLF: 123.57393690918992
Iteration: 8, Func. Count: 68, Neg. LLF: 123.57392526736767
Iteration: 9, Func. Count: 76, Neg. LLF: 123.5738654415746
Iteration: 10, Func. Count: 84, Neg. LLF: 123.57355882207688
Iteration: 11, Func. Count: 92, Neg. LLF: 123.57208372989729
Iteration: 12, Func. Count: 100, Neg. LLF: 123.5714321053598
Iteration: 13, Func. Count: 108, Neg. LLF: 123.57123610699503
Iteration: 14, Func. Count: 116, Neg. LLF: 123.57123376584475
Iteration: 15, Func. Count: 123, Neg. LLF: 123.57123376591548
Optimization terminated successfully (Exit mode 0)
Current function value: 123.57123376584475
Iterations: 15
Function evaluations: 123
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 155.99582639694495
Iteration: 2, Func. Count: 21, Neg. LLF: 123.57598841922668
Iteration: 3, Func. Count: 30, Neg. LLF: 123.57597171099567
Iteration: 4, Func. Count: 40, Neg. LLF: 123.57541616667503
Iteration: 5, Func. Count: 49, Neg. LLF: 123.57532175764149
Iteration: 6, Func. Count: 58, Neg. LLF: 123.57530643293272
Iteration: 7, Func. Count: 67, Neg. LLF: 123.5752131000055
Iteration: 8, Func. Count: 76, Neg. LLF: 123.57473080518533
Iteration: 9, Func. Count: 85, Neg. LLF: 123.57384546108642
Iteration: 10, Func. Count: 94, Neg. LLF: 123.57383496158853
Iteration: 11, Func. Count: 103, Neg. LLF: 123.57382992362159
Iteration: 12, Func. Count: 112, Neg. LLF: 123.57382579845616
Iteration: 13, Func. Count: 121, Neg. LLF: 123.57380674382289
Iteration: 14, Func. Count: 130, Neg. LLF: 123.57376316870078
Iteration: 15, Func. Count: 139, Neg. LLF: 123.5736344177187
Iteration: 16, Func. Count: 148, Neg. LLF: 123.573269964273
Iteration: 17, Func. Count: 157, Neg. LLF: 123.57273297317008
Iteration: 18, Func. Count: 166, Neg. LLF: 123.57238619517858
Iteration: 19, Func. Count: 175, Neg. LLF: 123.57158496031826
Iteration: 20, Func. Count: 184, Neg. LLF: 123.5713588999712
Iteration: 21, Func. Count: 193, Neg. LLF: 123.57124095234383
Iteration: 22, Func. Count: 202, Neg. LLF: 123.57123387827552
Iteration: 23, Func. Count: 210, Neg. LLF: 123.5712338786219
Optimization terminated successfully (Exit mode 0)
Current function value: 123.57123387827552
Iterations: 23
Function evaluations: 210
Gradient evaluations: 23
Iteration: 1, Func. Count: 11, Neg. LLF: 151.3295940130341
Iteration: 2, Func. Count: 23, Neg. LLF: 123.57601188902129
Iteration: 3, Func. Count: 33, Neg. LLF: 123.57729421497676
Iteration: 4, Func. Count: 44, Neg. LLF: 123.57567825560274
Iteration: 5, Func. Count: 54, Neg. LLF: 123.57561695675898
Iteration: 6, Func. Count: 64, Neg. LLF: 123.5755635643165
Iteration: 7, Func. Count: 74, Neg. LLF: 123.57535753202451
Iteration: 8, Func. Count: 84, Neg. LLF: 123.57514825373727
Iteration: 9, Func. Count: 94, Neg. LLF: 123.5750209753597
Iteration: 10, Func. Count: 104, Neg. LLF: 123.57493369258533
Iteration: 11, Func. Count: 114, Neg. LLF: 123.57491359504994
Iteration: 12, Func. Count: 124, Neg. LLF: 123.5747831110476
Iteration: 13, Func. Count: 134, Neg. LLF: 123.57391831124757
Iteration: 14, Func. Count: 144, Neg. LLF: 123.57378723584631
Iteration: 15, Func. Count: 154, Neg. LLF: 123.57376528388296
Iteration: 16, Func. Count: 164, Neg. LLF: 123.57376297211988
Iteration: 17, Func. Count: 174, Neg. LLF: 123.57374816241614
Iteration: 18, Func. Count: 184, Neg. LLF: 123.57366395264069
Iteration: 19, Func. Count: 194, Neg. LLF: 123.57320296304314
Iteration: 20, Func. Count: 204, Neg. LLF: 123.57163633752164
Iteration: 21, Func. Count: 214, Neg. LLF: 123.57147913090196
Iteration: 22, Func. Count: 224, Neg. LLF: 123.57133260362568
Iteration: 23, Func. Count: 234, Neg. LLF: 123.57124509257939
Iteration: 24, Func. Count: 244, Neg. LLF: 123.57123383875931
Iteration: 25, Func. Count: 253, Neg. LLF: 123.57123383922898
Optimization terminated successfully (Exit mode 0)
Current function value: 123.57123383875931
Iterations: 25
Function evaluations: 253
Gradient evaluations: 25
Iteration: 1, Func. Count: 12, Neg. LLF: 148.05960073834186
Iteration: 2, Func. Count: 25, Neg. LLF: 123.57609667380646
Iteration: 3, Func. Count: 36, Neg. LLF: 123.5772470293423
Iteration: 4, Func. Count: 48, Neg. LLF: 123.5758986228542
Iteration: 5, Func. Count: 59, Neg. LLF: 123.57531129118799
Iteration: 6, Func. Count: 70, Neg. LLF: 123.57453308372594
Iteration: 7, Func. Count: 81, Neg. LLF: 123.57448837858163
Iteration: 8, Func. Count: 92, Neg. LLF: 123.57424359715866
Iteration: 9, Func. Count: 103, Neg. LLF: 123.57309098240806
Iteration: 10, Func. Count: 114, Neg. LLF: 123.57297577011362
Iteration: 11, Func. Count: 125, Neg. LLF: 123.57280993657609
Iteration: 12, Func. Count: 136, Neg. LLF: 123.57278696639422
Iteration: 13, Func. Count: 147, Neg. LLF: 123.57276048648048
Iteration: 14, Func. Count: 158, Neg. LLF: 123.57275899936879
Iteration: 15, Func. Count: 169, Neg. LLF: 123.57275761590999
Iteration: 16, Func. Count: 180, Neg. LLF: 123.57275536333381
Iteration: 17, Func. Count: 191, Neg. LLF: 123.57274872503595
Iteration: 18, Func. Count: 202, Neg. LLF: 123.5727316977391
Iteration: 19, Func. Count: 213, Neg. LLF: 123.57268902830475
Iteration: 20, Func. Count: 224, Neg. LLF: 123.57259102369154
Iteration: 21, Func. Count: 235, Neg. LLF: 123.57237799354333
Iteration: 22, Func. Count: 246, Neg. LLF: 123.57160669321881
Iteration: 23, Func. Count: 257, Neg. LLF: 123.57149467467697
Iteration: 24, Func. Count: 268, Neg. LLF: 123.57140986207133
Iteration: 25, Func. Count: 279, Neg. LLF: 123.57127347868843
Iteration: 26, Func. Count: 290, Neg. LLF: 123.57123594831677
Iteration: 27, Func. Count: 301, Neg. LLF: 123.5712336059051
Iteration: 28, Func. Count: 311, Neg. LLF: 123.57123360616346
Optimization terminated successfully (Exit mode 0)
Current function value: 123.5712336059051
Iterations: 28
Function evaluations: 311
Gradient evaluations: 28
Iteration: 1, Func. Count: 5, Neg. LLF: 141.83354442127762
Iteration: 2, Func. Count: 10, Neg. LLF: 132.50514793546827
Iteration: 3, Func. Count: 15, Neg. LLF: 123.87841349856956
Iteration: 4, Func. Count: 19, Neg. LLF: 124.04540799742698
Iteration: 5, Func. Count: 25, Neg. LLF: 123.46036216464783
Iteration: 6, Func. Count: 29, Neg. LLF: 123.43941829961052
Iteration: 7, Func. Count: 33, Neg. LLF: 123.42935023790987
Iteration: 8, Func. Count: 37, Neg. LLF: 123.42653714664688
Iteration: 9, Func. Count: 41, Neg. LLF: 123.42599501450565
Iteration: 10, Func. Count: 45, Neg. LLF: 123.42598211609771
Iteration: 11, Func. Count: 49, Neg. LLF: 123.42597714710662
Iteration: 12, Func. Count: 53, Neg. LLF: 123.42597654714096
Optimization terminated successfully (Exit mode 0)
Current function value: 123.42597654714096
Iterations: 12
Function evaluations: 53
Gradient evaluations: 12
Iteration: 1, Func. Count: 6, Neg. LLF: 124.22298422259482
Iteration: 2, Func. Count: 12, Neg. LLF: 123.59939906724618
Iteration: 3, Func. Count: 17, Neg. LLF: 123.57919027868208
Iteration: 4, Func. Count: 22, Neg. LLF: 123.57526238446752
Iteration: 5, Func. Count: 27, Neg. LLF: 123.57396968279421
Iteration: 6, Func. Count: 32, Neg. LLF: 123.57393678886483
Iteration: 7, Func. Count: 37, Neg. LLF: 123.57393428192046
Iteration: 8, Func. Count: 42, Neg. LLF: 123.57391720255674
Iteration: 9, Func. Count: 47, Neg. LLF: 123.57383369966298
Iteration: 10, Func. Count: 52, Neg. LLF: 123.57368431181557
Iteration: 11, Func. Count: 57, Neg. LLF: 123.57324550361511
Iteration: 12, Func. Count: 62, Neg. LLF: 123.57264475089268
Iteration: 13, Func. Count: 67, Neg. LLF: 123.57205272360125
Iteration: 14, Func. Count: 72, Neg. LLF: 123.57091719384321
Iteration: 15, Func. Count: 77, Neg. LLF: 123.56990025573921
Iteration: 16, Func. Count: 82, Neg. LLF: 123.56909187068024
Iteration: 17, Func. Count: 87, Neg. LLF: 123.56540566696407
Iteration: 18, Func. Count: 92, Neg. LLF: 123.56044819811582
Iteration: 19, Func. Count: 97, Neg. LLF: 123.55619471262867
Iteration: 20, Func. Count: 102, Neg. LLF: 123.53738092753102
Iteration: 21, Func. Count: 107, Neg. LLF: 123.50944993304769
Iteration: 22, Func. Count: 112, Neg. LLF: 123.46504996475743
Iteration: 23, Func. Count: 117, Neg. LLF: 123.43485791978729
Iteration: 24, Func. Count: 122, Neg. LLF: 123.42666235132299
Iteration: 25, Func. Count: 127, Neg. LLF: 123.42662975081689
Iteration: 26, Func. Count: 133, Neg. LLF: 123.42606043022431
Iteration: 27, Func. Count: 138, Neg. LLF: 123.4263944315181
Iteration: 28, Func. Count: 144, Neg. LLF: 123.42602032759578
Iteration: 29, Func. Count: 149, Neg. LLF: 123.4262529891213
Iteration: 30, Func. Count: 155, Neg. LLF: 123.42597735713352
Iteration: 31, Func. Count: 160, Neg. LLF: 123.42597652650274
Optimization terminated successfully (Exit mode 0)
Current function value: 123.42597652650274
Iterations: 32
Function evaluations: 160
Gradient evaluations: 31
Iteration: 1, Func. Count: 7, Neg. LLF: 128.93692595363416
Iteration: 2, Func. Count: 15, Neg. LLF: 123.61829415831728
Iteration: 3, Func. Count: 22, Neg. LLF: 123.58023681712002
Iteration: 4, Func. Count: 28, Neg. LLF: 123.55230712136866
Iteration: 5, Func. Count: 34, Neg. LLF: 123.54535082034371
Iteration: 6, Func. Count: 40, Neg. LLF: 123.53939184106514
Iteration: 7, Func. Count: 46, Neg. LLF: 123.53741744524845
Iteration: 8, Func. Count: 52, Neg. LLF: 123.53719306227048
Iteration: 9, Func. Count: 58, Neg. LLF: 123.53716299001368
Iteration: 10, Func. Count: 64, Neg. LLF: 123.53712708838303
Iteration: 11, Func. Count: 70, Neg. LLF: 123.53705464341073
Iteration: 12, Func. Count: 76, Neg. LLF: 123.5367833561587
Iteration: 13, Func. Count: 82, Neg. LLF: 123.53575629212425
Iteration: 14, Func. Count: 88, Neg. LLF: 123.53417009921027
Iteration: 15, Func. Count: 94, Neg. LLF: 123.59500588348781
Iteration: 16, Func. Count: 101, Neg. LLF: 123.5723906252422
Iteration: 17, Func. Count: 108, Neg. LLF: 123.52556955632983
Iteration: 18, Func. Count: 114, Neg. LLF: 123.47197889263893
Iteration: 19, Func. Count: 120, Neg. LLF: 123.67055353767284
Iteration: 20, Func. Count: 128, Neg. LLF: 6443276.448438512
Iteration: 21, Func. Count: 137, Neg. LLF: 134.1856911170039
Iteration: 22, Func. Count: 145, Neg. LLF: 123.39024176350469
Iteration: 23, Func. Count: 151, Neg. LLF: 123.3769117712605
Iteration: 24, Func. Count: 157, Neg. LLF: 123.37506456472747
Iteration: 25, Func. Count: 163, Neg. LLF: 123.37486227767475
Iteration: 26, Func. Count: 169, Neg. LLF: 123.3748428851518
Iteration: 27, Func. Count: 174, Neg. LLF: 123.37484288524696
Optimization terminated successfully (Exit mode 0)
Current function value: 123.3748428851518
Iterations: 28
Function evaluations: 174
Gradient evaluations: 27
Iteration: 1, Func. Count: 8, Neg. LLF: 132.15842698485756
Iteration: 2, Func. Count: 17, Neg. LLF: 123.6164726041902
Iteration: 3, Func. Count: 25, Neg. LLF: 123.57799513686484
Iteration: 4, Func. Count: 33, Neg. LLF: 123.54940876698709
Iteration: 5, Func. Count: 40, Neg. LLF: 123.54506565768595
Iteration: 6, Func. Count: 47, Neg. LLF: 123.53722028743238
Iteration: 7, Func. Count: 54, Neg. LLF: 123.53602122940217
Iteration: 8, Func. Count: 61, Neg. LLF: 123.5359738375661
Iteration: 9, Func. Count: 68, Neg. LLF: 123.53595173097243
Iteration: 10, Func. Count: 75, Neg. LLF: 123.53587859189473
Iteration: 11, Func. Count: 82, Neg. LLF: 123.53574222789321
Iteration: 12, Func. Count: 89, Neg. LLF: 123.53536852344169
Iteration: 13, Func. Count: 96, Neg. LLF: 123.53298249375017
Iteration: 14, Func. Count: 103, Neg. LLF: 123.52781332242247
Iteration: 15, Func. Count: 110, Neg. LLF: 123.48417874151613
Iteration: 16, Func. Count: 117, Neg. LLF: 123.44130582160975
Iteration: 17, Func. Count: 124, Neg. LLF: 123.43534026967627
Iteration: 18, Func. Count: 131, Neg. LLF: 123.4269163404264
Iteration: 19, Func. Count: 138, Neg. LLF: 123.42621026139923
Iteration: 20, Func. Count: 145, Neg. LLF: 123.42606739957228
Iteration: 21, Func. Count: 152, Neg. LLF: 123.42601609017491
Iteration: 22, Func. Count: 159, Neg. LLF: 123.42598075468767
Iteration: 23, Func. Count: 166, Neg. LLF: 123.42762602071245
Optimization terminated successfully (Exit mode 0)
Current function value: 123.42597990315488
Iterations: 24
Function evaluations: 168
Gradient evaluations: 23
Iteration: 1, Func. Count: 9, Neg. LLF: 141.1105295058646
Iteration: 2, Func. Count: 19, Neg. LLF: 124.71508760962988
Iteration: 3, Func. Count: 28, Neg. LLF: 122.88004358994544
Iteration: 4, Func. Count: 36, Neg. LLF: 121.42084818222234
Iteration: 5, Func. Count: 44, Neg. LLF: 121.08736851011537
Iteration: 6, Func. Count: 52, Neg. LLF: 120.78871261961142
Iteration: 7, Func. Count: 60, Neg. LLF: 120.63008370294051
Iteration: 8, Func. Count: 68, Neg. LLF: 124.75646158667662
Iteration: 9, Func. Count: 77, Neg. LLF: 120.52995014032567
Iteration: 10, Func. Count: 85, Neg. LLF: 120.4801423208777
Iteration: 11, Func. Count: 93, Neg. LLF: 120.44469873566179
Iteration: 12, Func. Count: 101, Neg. LLF: 120.41469621396696
Iteration: 13, Func. Count: 109, Neg. LLF: 120.40250650877049
Iteration: 14, Func. Count: 117, Neg. LLF: 120.40105918870157
Iteration: 15, Func. Count: 125, Neg. LLF: 120.40103336434962
Iteration: 16, Func. Count: 133, Neg. LLF: 120.40103041655014
Iteration: 17, Func. Count: 141, Neg. LLF: 120.41228009328425
Optimization terminated successfully (Exit mode 0)
Current function value: 120.40103040266706
Iterations: 18
Function evaluations: 144
Gradient evaluations: 17
Iteration: 1, Func. Count: 6, Neg. LLF: 150.94619560714142
Iteration: 2, Func. Count: 12, Neg. LLF: 128.05307916768044
Iteration: 3, Func. Count: 18, Neg. LLF: 123.53088805937696
Iteration: 4, Func. Count: 23, Neg. LLF: 124.10767956338952
Iteration: 5, Func. Count: 31, Neg. LLF: 123.60868985780004
Iteration: 6, Func. Count: 37, Neg. LLF: 123.2472976113972
Iteration: 7, Func. Count: 42, Neg. LLF: 123.2301950841167
Iteration: 8, Func. Count: 47, Neg. LLF: 123.22800484668736
Iteration: 9, Func. Count: 52, Neg. LLF: 123.22774197430961
Iteration: 10, Func. Count: 57, Neg. LLF: 123.22773414748735
Iteration: 11, Func. Count: 62, Neg. LLF: 123.22773162163163
Iteration: 12, Func. Count: 66, Neg. LLF: 123.22773162164118
Optimization terminated successfully (Exit mode 0)
Current function value: 123.22773162163163
Iterations: 12
Function evaluations: 66
Gradient evaluations: 12
Iteration: 1, Func. Count: 7, Neg. LLF: 127.52683773571118
Iteration: 2, Func. Count: 15, Neg. LLF: 128.13747173636992
Iteration: 3, Func. Count: 23, Neg. LLF: 123.60176588104014
Iteration: 4, Func. Count: 29, Neg. LLF: 123.55821132181671
Iteration: 5, Func. Count: 35, Neg. LLF: 123.55438115053248
Iteration: 6, Func. Count: 41, Neg. LLF: 123.55268322549765
Iteration: 7, Func. Count: 47, Neg. LLF: 123.5356416099956
Iteration: 8, Func. Count: 53, Neg. LLF: 123.32736556469901
Iteration: 9, Func. Count: 59, Neg. LLF: 123.27505967894024
Iteration: 10, Func. Count: 65, Neg. LLF: 123.25997840492924
Iteration: 11, Func. Count: 71, Neg. LLF: 123.24769035092129
Iteration: 12, Func. Count: 77, Neg. LLF: 123.2388354070239
Iteration: 13, Func. Count: 83, Neg. LLF: 123.23435558025642
Iteration: 14, Func. Count: 89, Neg. LLF: 123.23169225943325
Iteration: 15, Func. Count: 95, Neg. LLF: 123.22943112372725
Iteration: 16, Func. Count: 101, Neg. LLF: 123.22818599557928
Iteration: 17, Func. Count: 107, Neg. LLF: 123.22782636609584
Iteration: 18, Func. Count: 113, Neg. LLF: 123.22775010084489
Iteration: 19, Func. Count: 119, Neg. LLF: 123.22773534124528
Iteration: 20, Func. Count: 125, Neg. LLF: 123.2277320690462
Iteration: 21, Func. Count: 130, Neg. LLF: 123.22773208704378
Optimization terminated successfully (Exit mode 0)
Current function value: 123.2277320690462
Iterations: 21
Function evaluations: 130
Gradient evaluations: 21
Iteration: 1, Func. Count: 8, Neg. LLF: 126.25641921746441
Iteration: 2, Func. Count: 17, Neg. LLF: 129.51916839715713
Iteration: 3, Func. Count: 25, Neg. LLF: 123.66718915506817
Iteration: 4, Func. Count: 33, Neg. LLF: 123.58998774129172
Iteration: 5, Func. Count: 41, Neg. LLF: 123.4593743914352
Iteration: 6, Func. Count: 48, Neg. LLF: 123.45439320589095
Iteration: 7, Func. Count: 55, Neg. LLF: 123.45393124094842
Iteration: 8, Func. Count: 62, Neg. LLF: 123.45318138858632
Iteration: 9, Func. Count: 69, Neg. LLF: 123.44815239084751
Iteration: 10, Func. Count: 76, Neg. LLF: 123.52410045475773
Iteration: 11, Func. Count: 84, Neg. LLF: 123.40430598568234
Iteration: 12, Func. Count: 91, Neg. LLF: 123.93404952685033
Iteration: 13, Func. Count: 99, Neg. LLF: 123.06618764758164
Iteration: 14, Func. Count: 106, Neg. LLF: 122.89992059730785
Iteration: 15, Func. Count: 113, Neg. LLF: 122.7726066252909
Iteration: 16, Func. Count: 120, Neg. LLF: 122.55430679745095
Iteration: 17, Func. Count: 127, Neg. LLF: 122.48464533705815
Iteration: 18, Func. Count: 134, Neg. LLF: 122.37146349422511
Iteration: 19, Func. Count: 141, Neg. LLF: 122.36289320184957
Iteration: 20, Func. Count: 148, Neg. LLF: 122.36198806121631
Iteration: 21, Func. Count: 155, Neg. LLF: 122.36188625040727
Iteration: 22, Func. Count: 162, Neg. LLF: 122.36186892509586
Iteration: 23, Func. Count: 169, Neg. LLF: 122.36186597075684
Iteration: 24, Func. Count: 175, Neg. LLF: 122.36186587417609
Optimization terminated successfully (Exit mode 0)
Current function value: 122.36186597075684
Iterations: 24
Function evaluations: 175
Gradient evaluations: 24
Iteration: 1, Func. Count: 9, Neg. LLF: 125.61073954413033
Iteration: 2, Func. Count: 19, Neg. LLF: 130.79091158085234
Iteration: 3, Func. Count: 28, Neg. LLF: 123.76829645641175
Iteration: 4, Func. Count: 37, Neg. LLF: 123.22962483833442
Iteration: 5, Func. Count: 45, Neg. LLF: 123.28109006679051
Iteration: 6, Func. Count: 54, Neg. LLF: 123.07456481165976
Iteration: 7, Func. Count: 62, Neg. LLF: 122.40726543354272
Iteration: 8, Func. Count: 70, Neg. LLF: 122.28118421163757
Iteration: 9, Func. Count: 78, Neg. LLF: 122.02254505185891
Iteration: 10, Func. Count: 86, Neg. LLF: 122.03759624670286
Iteration: 11, Func. Count: 95, Neg. LLF: 121.88093408527716
Iteration: 12, Func. Count: 103, Neg. LLF: 121.87800442566599
Iteration: 13, Func. Count: 111, Neg. LLF: 121.87790458739094
Iteration: 14, Func. Count: 119, Neg. LLF: 121.87790404866111
Optimization terminated successfully (Exit mode 0)
Current function value: 121.87790404866111
Iterations: 14
Function evaluations: 119
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 125.71636724555293
Iteration: 2, Func. Count: 21, Neg. LLF: 131.6915550547869
Iteration: 3, Func. Count: 31, Neg. LLF: 122.62718844526393
Iteration: 4, Func. Count: 40, Neg. LLF: 122.65390496997641
Iteration: 5, Func. Count: 50, Neg. LLF: 124.97496189609608
Iteration: 6, Func. Count: 60, Neg. LLF: 141.20136786676107
Iteration: 7, Func. Count: 70, Neg. LLF: 145.10099391048405
Iteration: 8, Func. Count: 80, Neg. LLF: 122.69918042645305
Iteration: 9, Func. Count: 90, Neg. LLF: 121.0962403232247
Iteration: 10, Func. Count: 99, Neg. LLF: 120.5115487517443
Iteration: 11, Func. Count: 108, Neg. LLF: 120.36949320887932
Iteration: 12, Func. Count: 117, Neg. LLF: 120.25548292072507
Iteration: 13, Func. Count: 126, Neg. LLF: 120.19930640539303
Iteration: 14, Func. Count: 135, Neg. LLF: 120.18193414740934
Iteration: 15, Func. Count: 144, Neg. LLF: 120.17910314351987
Iteration: 16, Func. Count: 153, Neg. LLF: 120.17878348164568
Iteration: 17, Func. Count: 162, Neg. LLF: 120.1787215286859
Iteration: 18, Func. Count: 171, Neg. LLF: 120.17872000776492
Iteration: 19, Func. Count: 180, Neg. LLF: 120.17871920250424
Optimization terminated successfully (Exit mode 0)
Current function value: 120.17871920250424
Iterations: 19
Function evaluations: 180
Gradient evaluations: 19
Iteration: 1, Func. Count: 7, Neg. LLF: 141.71539712621924
Iteration: 2, Func. Count: 14, Neg. LLF: 132.43750823423517
Iteration: 3, Func. Count: 21, Neg. LLF: 123.48336099022741
Iteration: 4, Func. Count: 27, Neg. LLF: 124.05489168221098
Iteration: 5, Func. Count: 36, Neg. LLF: 124.13455782313993
Iteration: 6, Func. Count: 44, Neg. LLF: 123.24225966572138
Iteration: 7, Func. Count: 50, Neg. LLF: 123.22935545504036
Iteration: 8, Func. Count: 56, Neg. LLF: 123.22804730017187
Iteration: 9, Func. Count: 62, Neg. LLF: 123.22776782635857
Iteration: 10, Func. Count: 68, Neg. LLF: 123.22773772915875
Iteration: 11, Func. Count: 74, Neg. LLF: 123.22773183930641
Iteration: 12, Func. Count: 79, Neg. LLF: 123.22773202875996
Optimization terminated successfully (Exit mode 0)
Current function value: 123.22773183930641
Iterations: 12
Function evaluations: 79
Gradient evaluations: 12
Iteration: 1, Func. Count: 8, Neg. LLF: 131.501954866544
Iteration: 2, Func. Count: 17, Neg. LLF: 127.71131284191348
Iteration: 3, Func. Count: 26, Neg. LLF: 123.58650647404255
Iteration: 4, Func. Count: 33, Neg. LLF: 123.55616842693253
Iteration: 5, Func. Count: 40, Neg. LLF: 123.55439115972754
Iteration: 6, Func. Count: 47, Neg. LLF: 123.55123554586348
Iteration: 7, Func. Count: 54, Neg. LLF: 123.5146305743772
Iteration: 8, Func. Count: 61, Neg. LLF: 123.41949605350796
Iteration: 9, Func. Count: 68, Neg. LLF: 123.37203155061846
Iteration: 10, Func. Count: 75, Neg. LLF: 123.26466650883476
Iteration: 11, Func. Count: 82, Neg. LLF: 123.34751787065173
Iteration: 12, Func. Count: 90, Neg. LLF: 123.23216121805206
Iteration: 13, Func. Count: 97, Neg. LLF: 123.22790312579025
Iteration: 14, Func. Count: 104, Neg. LLF: 123.22781785061845
Iteration: 15, Func. Count: 111, Neg. LLF: 123.22775856790197
Iteration: 16, Func. Count: 118, Neg. LLF: 123.22773701030059
Iteration: 17, Func. Count: 125, Neg. LLF: 123.22773213101435
Iteration: 18, Func. Count: 131, Neg. LLF: 123.22773214899745
Optimization terminated successfully (Exit mode 0)
Current function value: 123.22773213101435
Iterations: 18
Function evaluations: 131
Gradient evaluations: 18
Iteration: 1, Func. Count: 9, Neg. LLF: 126.35343826892594
Iteration: 2, Func. Count: 19, Neg. LLF: 129.26732513818814
Iteration: 3, Func. Count: 28, Neg. LLF: 123.66255011478783
Iteration: 4, Func. Count: 37, Neg. LLF: 123.58229852926014
Iteration: 5, Func. Count: 46, Neg. LLF: 123.47097281892792
Iteration: 6, Func. Count: 54, Neg. LLF: 123.45514319904787
Iteration: 7, Func. Count: 62, Neg. LLF: 123.45403147632119
Iteration: 8, Func. Count: 70, Neg. LLF: 123.45364044390936
Iteration: 9, Func. Count: 78, Neg. LLF: 123.45020641865979
Iteration: 10, Func. Count: 86, Neg. LLF: 123.39436654650295
Iteration: 11, Func. Count: 94, Neg. LLF: 123.21434245541863
Iteration: 12, Func. Count: 102, Neg. LLF: 1102.1479845429658
Iteration: 13, Func. Count: 112, Neg. LLF: 122.91602242946345
Iteration: 14, Func. Count: 120, Neg. LLF: 122.54393153975711
Iteration: 15, Func. Count: 128, Neg. LLF: 122.40968664720054
Iteration: 16, Func. Count: 136, Neg. LLF: 122.37651188070875
Iteration: 17, Func. Count: 144, Neg. LLF: 122.36637254077463
Iteration: 18, Func. Count: 152, Neg. LLF: 122.36324569765355
Iteration: 19, Func. Count: 160, Neg. LLF: 122.36188036148481
Iteration: 20, Func. Count: 168, Neg. LLF: 122.36187104793328
Iteration: 21, Func. Count: 176, Neg. LLF: 122.36186719266033
Iteration: 22, Func. Count: 184, Neg. LLF: 122.36186453788952
Iteration: 23, Func. Count: 192, Neg. LLF: 122.36186406197133
Optimization terminated successfully (Exit mode 0)
Current function value: 122.36186453740508
Iterations: 23
Function evaluations: 202
Gradient evaluations: 23
Iteration: 1, Func. Count: 10, Neg. LLF: 125.73219734174977
Iteration: 2, Func. Count: 21, Neg. LLF: 130.52139114213242
Iteration: 3, Func. Count: 31, Neg. LLF: 123.82316300787392
Iteration: 4, Func. Count: 41, Neg. LLF: 123.20410679565836
Iteration: 5, Func. Count: 50, Neg. LLF: 123.35389512661379
Iteration: 6, Func. Count: 60, Neg. LLF: 123.08431488227372
Iteration: 7, Func. Count: 69, Neg. LLF: 121.93426448602955
Iteration: 8, Func. Count: 78, Neg. LLF: 121.89090374541927
Iteration: 9, Func. Count: 87, Neg. LLF: 122.13609477762951
Iteration: 10, Func. Count: 97, Neg. LLF: 121.8780649607093
Iteration: 11, Func. Count: 106, Neg. LLF: 121.87791086350379
Iteration: 12, Func. Count: 115, Neg. LLF: 121.87790459087104
Iteration: 13, Func. Count: 124, Neg. LLF: 121.87790402693814
Optimization terminated successfully (Exit mode 0)
Current function value: 121.87790402693814
Iterations: 13
Function evaluations: 124
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 126.35343974281237
Iteration: 2, Func. Count: 22, Neg. LLF: 133.62521103559726
Iteration: 3, Func. Count: 33, Neg. LLF: 123.77169814345723
Iteration: 4, Func. Count: 44, Neg. LLF: 137.12002397245388
Iteration: 5, Func. Count: 55, Neg. LLF: 122.11541693079059
Iteration: 6, Func. Count: 65, Neg. LLF: 123.29452087248647
Iteration: 7, Func. Count: 76, Neg. LLF: 124.53608874779492
Iteration: 8, Func. Count: 88, Neg. LLF: 121.84701145148853
Iteration: 9, Func. Count: 99, Neg. LLF: 120.53034522110782
Iteration: 10, Func. Count: 109, Neg. LLF: 120.53713133192103
Iteration: 11, Func. Count: 120, Neg. LLF: 120.33403407563495
Iteration: 12, Func. Count: 130, Neg. LLF: 120.23363678375625
Iteration: 13, Func. Count: 140, Neg. LLF: 120.20660752533135
Iteration: 14, Func. Count: 150, Neg. LLF: 120.18889283644558
Iteration: 15, Func. Count: 160, Neg. LLF: 120.18101516673252
Iteration: 16, Func. Count: 170, Neg. LLF: 120.17903296595152
Iteration: 17, Func. Count: 180, Neg. LLF: 120.17873047444874
Iteration: 18, Func. Count: 190, Neg. LLF: 120.17871917759227
Iteration: 19, Func. Count: 199, Neg. LLF: 120.17871916060923
Optimization terminated successfully (Exit mode 0)
Current function value: 120.17871917759227
Iterations: 19
Function evaluations: 199
Gradient evaluations: 19
Iteration: 1, Func. Count: 8, Neg. LLF: 141.97978975378652
Iteration: 2, Func. Count: 16, Neg. LLF: 132.26411119507793
Iteration: 3, Func. Count: 24, Neg. LLF: 123.47758035016605
Iteration: 4, Func. Count: 31, Neg. LLF: 124.05501951160048
Iteration: 5, Func. Count: 41, Neg. LLF: 124.09057765472429
Iteration: 6, Func. Count: 50, Neg. LLF: 123.24233241498234
Iteration: 7, Func. Count: 57, Neg. LLF: 123.22945920886372
Iteration: 8, Func. Count: 64, Neg. LLF: 123.22806304151152
Iteration: 9, Func. Count: 71, Neg. LLF: 123.22776836930568
Iteration: 10, Func. Count: 78, Neg. LLF: 123.22773725455092
Iteration: 11, Func. Count: 85, Neg. LLF: 123.22773185955009
Iteration: 12, Func. Count: 91, Neg. LLF: 123.22773196194483
Optimization terminated successfully (Exit mode 0)
Current function value: 123.22773185955009
Iterations: 12
Function evaluations: 91
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 131.6202137937834
Iteration: 2, Func. Count: 19, Neg. LLF: 127.54746056760784
Iteration: 3, Func. Count: 29, Neg. LLF: 123.58618447092752
Iteration: 4, Func. Count: 37, Neg. LLF: 123.55611766398077
Iteration: 5, Func. Count: 45, Neg. LLF: 123.55477699214143
Iteration: 6, Func. Count: 53, Neg. LLF: 123.54960211405479
Iteration: 7, Func. Count: 61, Neg. LLF: 123.47803539913706
Iteration: 8, Func. Count: 69, Neg. LLF: 123.43559907273627
Iteration: 9, Func. Count: 77, Neg. LLF: 123.30106057471762
Iteration: 10, Func. Count: 85, Neg. LLF: 123.23992712189718
Iteration: 11, Func. Count: 93, Neg. LLF: 123.23332594192857
Iteration: 12, Func. Count: 101, Neg. LLF: 123.23087550646646
Iteration: 13, Func. Count: 109, Neg. LLF: 123.22815002920427
Iteration: 14, Func. Count: 117, Neg. LLF: 123.22783228116411
Iteration: 15, Func. Count: 125, Neg. LLF: 123.22773883918582
Iteration: 16, Func. Count: 133, Neg. LLF: 123.22773523055203
Iteration: 17, Func. Count: 141, Neg. LLF: 123.22773238485526
Iteration: 18, Func. Count: 149, Neg. LLF: 123.22773166302014
Optimization terminated successfully (Exit mode 0)
Current function value: 123.22773166302014
Iterations: 18
Function evaluations: 149
Gradient evaluations: 18
Iteration: 1, Func. Count: 10, Neg. LLF: 126.33906803675096
Iteration: 2, Func. Count: 21, Neg. LLF: 129.3285322708207
Iteration: 3, Func. Count: 31, Neg. LLF: 123.65802477594598
Iteration: 4, Func. Count: 41, Neg. LLF: 123.58674631844511
Iteration: 5, Func. Count: 51, Neg. LLF: 123.46701762206644
Iteration: 6, Func. Count: 60, Neg. LLF: 123.45466289017274
Iteration: 7, Func. Count: 69, Neg. LLF: 123.45386544684926
Iteration: 8, Func. Count: 78, Neg. LLF: 123.45339054938253
Iteration: 9, Func. Count: 87, Neg. LLF: 123.44870852087953
Iteration: 10, Func. Count: 96, Neg. LLF: 123.48148980329333
Iteration: 11, Func. Count: 106, Neg. LLF: 123.19368254451209
Iteration: 12, Func. Count: 115, Neg. LLF: 123.1101900447078
Iteration: 13, Func. Count: 124, Neg. LLF: 122.48301071370207
Iteration: 14, Func. Count: 133, Neg. LLF: 122.38413733135084
Iteration: 15, Func. Count: 142, Neg. LLF: 122.38571204929369
Iteration: 16, Func. Count: 152, Neg. LLF: 122.36625948598265
Iteration: 17, Func. Count: 161, Neg. LLF: 122.36424147602283
Iteration: 18, Func. Count: 170, Neg. LLF: 122.36192839131904
Iteration: 19, Func. Count: 179, Neg. LLF: 122.36184437290392
Iteration: 20, Func. Count: 188, Neg. LLF: 122.36191353163004
Iteration: 21, Func. Count: 198, Neg. LLF: 122.36324621707972
Iteration: 22, Func. Count: 209, Neg. LLF: 122.36189378313364
Iteration: 23, Func. Count: 219, Neg. LLF: 122.3618673690696
Iteration: 24, Func. Count: 229, Neg. LLF: 122.36186541381704
Iteration: 25, Func. Count: 237, Neg. LLF: 122.36186531677433
Optimization terminated successfully (Exit mode 0)
Current function value: 122.36186541381704
Iterations: 26
Function evaluations: 237
Gradient evaluations: 25
Iteration: 1, Func. Count: 11, Neg. LLF: 125.68169060668737
Iteration: 2, Func. Count: 23, Neg. LLF: 130.58033039273283
Iteration: 3, Func. Count: 34, Neg. LLF: 123.81685686903192
Iteration: 4, Func. Count: 45, Neg. LLF: 123.2070333639414
Iteration: 5, Func. Count: 55, Neg. LLF: 123.35613010238612
Iteration: 6, Func. Count: 66, Neg. LLF: 123.07404176673793
Iteration: 7, Func. Count: 76, Neg. LLF: 122.00476046338186
Iteration: 8, Func. Count: 86, Neg. LLF: 122.05930206939775
Iteration: 9, Func. Count: 97, Neg. LLF: 121.89902982477349
Iteration: 10, Func. Count: 107, Neg. LLF: 121.87902816663201
Iteration: 11, Func. Count: 117, Neg. LLF: 121.87798080496631
Iteration: 12, Func. Count: 127, Neg. LLF: 121.87790429518351
Iteration: 13, Func. Count: 136, Neg. LLF: 121.8779042223312
Optimization terminated successfully (Exit mode 0)
Current function value: 121.87790429518351
Iterations: 13
Function evaluations: 136
Gradient evaluations: 13
Iteration: 1, Func. Count: 12, Neg. LLF: 126.35745636944152
Iteration: 2, Func. Count: 24, Neg. LLF: 133.57341486336466
Iteration: 3, Func. Count: 36, Neg. LLF: 123.76085297035618
Iteration: 4, Func. Count: 48, Neg. LLF: 138.9454224767148
Iteration: 5, Func. Count: 60, Neg. LLF: 121.90641881459779
Iteration: 6, Func. Count: 71, Neg. LLF: 126.73884994822356
Iteration: 7, Func. Count: 83, Neg. LLF: 125.30434319910144
Iteration: 8, Func. Count: 96, Neg. LLF: 121.68935180055199
Iteration: 9, Func. Count: 108, Neg. LLF: 120.43482757231432
Iteration: 10, Func. Count: 119, Neg. LLF: 120.50138594260407
Iteration: 11, Func. Count: 131, Neg. LLF: 120.28898744683535
Iteration: 12, Func. Count: 142, Neg. LLF: 120.2240831127535
Iteration: 13, Func. Count: 153, Neg. LLF: 120.19500238628402
Iteration: 14, Func. Count: 164, Neg. LLF: 120.18304543808246
Iteration: 15, Func. Count: 175, Neg. LLF: 120.17882204709852
Iteration: 16, Func. Count: 186, Neg. LLF: 120.17872613826228
Iteration: 17, Func. Count: 197, Neg. LLF: 120.17871914511744
Iteration: 18, Func. Count: 207, Neg. LLF: 120.17871912817242
Optimization terminated successfully (Exit mode 0)
Current function value: 120.17871914511744
Iterations: 18
Function evaluations: 207
Gradient evaluations: 18
Iteration: 1, Func. Count: 9, Neg. LLF: 142.16883731663162
Iteration: 2, Func. Count: 18, Neg. LLF: 132.21505050455477
Iteration: 3, Func. Count: 27, Neg. LLF: 123.47779310690746
Iteration: 4, Func. Count: 35, Neg. LLF: 124.05193245309223
Iteration: 5, Func. Count: 46, Neg. LLF: 124.10550385480137
Iteration: 6, Func. Count: 56, Neg. LLF: 123.24269076880744
Iteration: 7, Func. Count: 64, Neg. LLF: 123.22950247400031
Iteration: 8, Func. Count: 72, Neg. LLF: 123.2280750537881
Iteration: 9, Func. Count: 80, Neg. LLF: 123.22776838177705
Iteration: 10, Func. Count: 88, Neg. LLF: 123.22773716908162
Iteration: 11, Func. Count: 96, Neg. LLF: 123.22773183369962
Iteration: 12, Func. Count: 103, Neg. LLF: 123.22773198148377
Optimization terminated successfully (Exit mode 0)
Current function value: 123.22773183369962
Iterations: 12
Function evaluations: 103
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 131.3546061464935
Iteration: 2, Func. Count: 21, Neg. LLF: 127.76432881499645
Iteration: 3, Func. Count: 32, Neg. LLF: 123.59131730717824
Iteration: 4, Func. Count: 41, Neg. LLF: 123.55634364996943
Iteration: 5, Func. Count: 50, Neg. LLF: 123.55521957770746
Iteration: 6, Func. Count: 59, Neg. LLF: 123.5475783582456
Iteration: 7, Func. Count: 68, Neg. LLF: 123.4988393593369
Iteration: 8, Func. Count: 77, Neg. LLF: 123.43688371382513
Iteration: 9, Func. Count: 86, Neg. LLF: 123.45420843541447
Iteration: 10, Func. Count: 96, Neg. LLF: 123.37883531861198
Iteration: 11, Func. Count: 106, Neg. LLF: 123.24054187594335
Iteration: 12, Func. Count: 115, Neg. LLF: 123.23034198575438
Iteration: 13, Func. Count: 124, Neg. LLF: 123.22833553340521
Iteration: 14, Func. Count: 133, Neg. LLF: 123.22782471485357
Iteration: 15, Func. Count: 142, Neg. LLF: 123.22776043149125
Iteration: 16, Func. Count: 151, Neg. LLF: 123.22774316995736
Iteration: 17, Func. Count: 160, Neg. LLF: 123.22773375449212
Iteration: 18, Func. Count: 169, Neg. LLF: 123.22773173861471
Iteration: 19, Func. Count: 177, Neg. LLF: 123.22773175664972
Optimization terminated successfully (Exit mode 0)
Current function value: 123.22773173861471
Iterations: 19
Function evaluations: 177
Gradient evaluations: 19
Iteration: 1, Func. Count: 11, Neg. LLF: 126.3258636400763
Iteration: 2, Func. Count: 23, Neg. LLF: 129.34442114168604
Iteration: 3, Func. Count: 34, Neg. LLF: 123.66450054752026
Iteration: 4, Func. Count: 45, Neg. LLF: 123.57474736859017
Iteration: 5, Func. Count: 56, Neg. LLF: 123.46811481250431
Iteration: 6, Func. Count: 66, Neg. LLF: 123.45474713657897
Iteration: 7, Func. Count: 76, Neg. LLF: 123.4538527733206
Iteration: 8, Func. Count: 86, Neg. LLF: 123.45340051394993
Iteration: 9, Func. Count: 96, Neg. LLF: 123.4489983715647
Iteration: 10, Func. Count: 106, Neg. LLF: 123.3060600898793
Iteration: 11, Func. Count: 116, Neg. LLF: 123.31204275986018
Iteration: 12, Func. Count: 127, Neg. LLF: 122.86452701910441
Iteration: 13, Func. Count: 137, Neg. LLF: 127.26615949034455
Iteration: 14, Func. Count: 148, Neg. LLF: 122.47686333258795
Iteration: 15, Func. Count: 158, Neg. LLF: 122.39757792789572
Iteration: 16, Func. Count: 168, Neg. LLF: 122.39828061573671
Iteration: 17, Func. Count: 179, Neg. LLF: 122.36309318790487
Iteration: 18, Func. Count: 189, Neg. LLF: 122.36215393253451
Iteration: 19, Func. Count: 199, Neg. LLF: 122.36186915427979
Iteration: 20, Func. Count: 209, Neg. LLF: 122.36186891056076
Optimization terminated successfully (Exit mode 0)
Current function value: 122.36186891056076
Iterations: 20
Function evaluations: 209
Gradient evaluations: 20
Iteration: 1, Func. Count: 12, Neg. LLF: 125.79802152914068
Iteration: 2, Func. Count: 25, Neg. LLF: 130.5135006093156
Iteration: 3, Func. Count: 37, Neg. LLF: 123.80710514978404
Iteration: 4, Func. Count: 49, Neg. LLF: 123.21416420841827
Iteration: 5, Func. Count: 60, Neg. LLF: 123.33899634193236
Iteration: 6, Func. Count: 72, Neg. LLF: 123.07920089108063
Iteration: 7, Func. Count: 83, Neg. LLF: 122.09129992303004
Iteration: 8, Func. Count: 94, Neg. LLF: 121.9922599642327
Iteration: 9, Func. Count: 105, Neg. LLF: 121.92859372895582
Iteration: 10, Func. Count: 116, Neg. LLF: 121.883148075021
Iteration: 11, Func. Count: 127, Neg. LLF: 121.87845614842657
Iteration: 12, Func. Count: 138, Neg. LLF: 121.87790816483164
Iteration: 13, Func. Count: 149, Neg. LLF: 121.8779044975596
Iteration: 14, Func. Count: 159, Neg. LLF: 121.87790442496558
Optimization terminated successfully (Exit mode 0)
Current function value: 121.8779044975596
Iterations: 14
Function evaluations: 159
Gradient evaluations: 14
Iteration: 1, Func. Count: 13, Neg. LLF: 126.35602025319034
Iteration: 2, Func. Count: 26, Neg. LLF: 133.52342083349532
Iteration: 3, Func. Count: 39, Neg. LLF: 123.48629324288999
Iteration: 4, Func. Count: 52, Neg. LLF: 153.94893528262205
Iteration: 5, Func. Count: 65, Neg. LLF: 121.82306362252815
Iteration: 6, Func. Count: 77, Neg. LLF: 131.94993707293656
Iteration: 7, Func. Count: 90, Neg. LLF: 120.60370932445628
Iteration: 8, Func. Count: 102, Neg. LLF: 121.02977048573676
Iteration: 9, Func. Count: 115, Neg. LLF: 120.57374259438022
Iteration: 10, Func. Count: 128, Neg. LLF: 120.30897165756198
Iteration: 11, Func. Count: 140, Neg. LLF: 120.30150274838255
Iteration: 12, Func. Count: 153, Neg. LLF: 120.21488097813065
Iteration: 13, Func. Count: 165, Neg. LLF: 120.19078160315487
Iteration: 14, Func. Count: 177, Neg. LLF: 120.18121131721045
Iteration: 15, Func. Count: 189, Neg. LLF: 120.17872391301773
Iteration: 16, Func. Count: 201, Neg. LLF: 120.17871947654855
Iteration: 17, Func. Count: 212, Neg. LLF: 120.17871945967242
Optimization terminated successfully (Exit mode 0)
Current function value: 120.17871947654855
Iterations: 17
Function evaluations: 212
Gradient evaluations: 17
Iteration: 1, Func. Count: 6, Neg. LLF: 126.73542682023057
Iteration: 2, Func. Count: 12, Neg. LLF: 125.84935006768367
Iteration: 3, Func. Count: 18, Neg. LLF: 123.69457285849757
Iteration: 4, Func. Count: 23, Neg. LLF: 123.79208894251936
Iteration: 5, Func. Count: 29, Neg. LLF: 123.47203448895513
Iteration: 6, Func. Count: 34, Neg. LLF: 123.42975250412385
Iteration: 7, Func. Count: 39, Neg. LLF: 123.42600281168454
Iteration: 8, Func. Count: 44, Neg. LLF: 123.42598187993084
Iteration: 9, Func. Count: 49, Neg. LLF: 123.42597697733034
Iteration: 10, Func. Count: 53, Neg. LLF: 123.4259772232246
Optimization terminated successfully (Exit mode 0)
Current function value: 123.42597697733034
Iterations: 10
Function evaluations: 53
Gradient evaluations: 10
Iteration: 1, Func. Count: 7, Neg. LLF: 158.02457954615875
Iteration: 2, Func. Count: 15, Neg. LLF: 123.57462514083022
Iteration: 3, Func. Count: 21, Neg. LLF: 123.57495847237054
Iteration: 4, Func. Count: 28, Neg. LLF: 123.57409276446336
Iteration: 5, Func. Count: 34, Neg. LLF: 123.57392111606364
Iteration: 6, Func. Count: 40, Neg. LLF: 123.5739043389031
Iteration: 7, Func. Count: 46, Neg. LLF: 123.5738968834801
Iteration: 8, Func. Count: 52, Neg. LLF: 123.57385687633628
Iteration: 9, Func. Count: 58, Neg. LLF: 123.57377148834745
Iteration: 10, Func. Count: 64, Neg. LLF: 123.57354814030043
Iteration: 11, Func. Count: 70, Neg. LLF: 123.57300986830606
Iteration: 12, Func. Count: 76, Neg. LLF: 123.57251203316723
Iteration: 13, Func. Count: 82, Neg. LLF: 123.57212412110532
Iteration: 14, Func. Count: 88, Neg. LLF: 123.57112984567146
Iteration: 15, Func. Count: 94, Neg. LLF: 123.56930819877287
Iteration: 16, Func. Count: 100, Neg. LLF: 123.56774638164866
Iteration: 17, Func. Count: 106, Neg. LLF: 123.56410558063747
Iteration: 18, Func. Count: 112, Neg. LLF: 123.72156428699115
Iteration: 19, Func. Count: 119, Neg. LLF: 123.56213743707451
Iteration: 20, Func. Count: 125, Neg. LLF: 124.3898195706442
Iteration: 21, Func. Count: 133, Neg. LLF: 126.17930125323188
Iteration: 22, Func. Count: 142, Neg. LLF: 123.51268951073257
Iteration: 23, Func. Count: 148, Neg. LLF: 123.51372814747808
Iteration: 24, Func. Count: 155, Neg. LLF: 123.49171388113804
Iteration: 25, Func. Count: 162, Neg. LLF: 123.4270495896819
Iteration: 26, Func. Count: 168, Neg. LLF: 123.42644597392345
Iteration: 27, Func. Count: 174, Neg. LLF: 123.42606571715537
Iteration: 28, Func. Count: 180, Neg. LLF: 123.4260277490263
Iteration: 29, Func. Count: 186, Neg. LLF: 123.42597799783627
Iteration: 30, Func. Count: 192, Neg. LLF: 123.42597659370936
Iteration: 31, Func. Count: 197, Neg. LLF: 123.42597661165253
Optimization terminated successfully (Exit mode 0)
Current function value: 123.42597659370936
Iterations: 32
Function evaluations: 197
Gradient evaluations: 31
Iteration: 1, Func. Count: 8, Neg. LLF: 155.6046095139527
Iteration: 2, Func. Count: 17, Neg. LLF: 123.57758172579308
Iteration: 3, Func. Count: 24, Neg. LLF: 123.58485765283191
Iteration: 4, Func. Count: 32, Neg. LLF: 123.54980300720297
Iteration: 5, Func. Count: 39, Neg. LLF: 123.54179122407588
Iteration: 6, Func. Count: 46, Neg. LLF: 123.53828869553482
Iteration: 7, Func. Count: 53, Neg. LLF: 123.53725987787773
Iteration: 8, Func. Count: 60, Neg. LLF: 123.5370846588723
Iteration: 9, Func. Count: 67, Neg. LLF: 123.53706080772173
Iteration: 10, Func. Count: 74, Neg. LLF: 123.53698651180358
Iteration: 11, Func. Count: 81, Neg. LLF: 123.5367593142758
Iteration: 12, Func. Count: 88, Neg. LLF: 123.53512647012417
Iteration: 13, Func. Count: 95, Neg. LLF: 124.15091572015479
Iteration: 14, Func. Count: 103, Neg. LLF: 124.0673401272061
Iteration: 15, Func. Count: 111, Neg. LLF: 123.97631177859004
Iteration: 16, Func. Count: 119, Neg. LLF: 123.67848688045353
Iteration: 17, Func. Count: 127, Neg. LLF: 123.54661948794805
Iteration: 18, Func. Count: 135, Neg. LLF: 123.50920645429727
Iteration: 19, Func. Count: 142, Neg. LLF: 123.50443415302998
Iteration: 20, Func. Count: 149, Neg. LLF: 123.48811079610759
Iteration: 21, Func. Count: 156, Neg. LLF: 123.43407181649083
Iteration: 22, Func. Count: 163, Neg. LLF: 123.40860116699956
Iteration: 23, Func. Count: 170, Neg. LLF: 123.39419844570452
Iteration: 24, Func. Count: 177, Neg. LLF: 123.68921792029671
Iteration: 25, Func. Count: 185, Neg. LLF: 25822452.770604245
Iteration: 26, Func. Count: 195, Neg. LLF: 23815.474134628454
Iteration: 27, Func. Count: 204, Neg. LLF: 123.41389510425215
Iteration: 28, Func. Count: 212, Neg. LLF: 123.37499957791479
Iteration: 29, Func. Count: 219, Neg. LLF: 123.37484304886645
Iteration: 30, Func. Count: 225, Neg. LLF: 123.37484304929006
Optimization terminated successfully (Exit mode 0)
Current function value: 123.37484304886645
Iterations: 31
Function evaluations: 225
Gradient evaluations: 30
Iteration: 1, Func. Count: 9, Neg. LLF: 150.0104112129299
Iteration: 2, Func. Count: 19, Neg. LLF: 123.57976250499702
Iteration: 3, Func. Count: 27, Neg. LLF: 123.6733558694779
Iteration: 4, Func. Count: 36, Neg. LLF: 123.74963051808098
Iteration: 5, Func. Count: 45, Neg. LLF: 123.5707043828318
Iteration: 6, Func. Count: 53, Neg. LLF: 123.54243120208551
Iteration: 7, Func. Count: 61, Neg. LLF: 123.53696100597024
Iteration: 8, Func. Count: 69, Neg. LLF: 123.53606075750152
Iteration: 9, Func. Count: 77, Neg. LLF: 123.53601765136436
Iteration: 10, Func. Count: 85, Neg. LLF: 123.5359684996081
Iteration: 11, Func. Count: 93, Neg. LLF: 123.53591734681913
Iteration: 12, Func. Count: 101, Neg. LLF: 123.53584630928385
Iteration: 13, Func. Count: 109, Neg. LLF: 123.53573824978676
Iteration: 14, Func. Count: 117, Neg. LLF: 123.53548241804259
Iteration: 15, Func. Count: 125, Neg. LLF: 123.53442301807921
Iteration: 16, Func. Count: 133, Neg. LLF: 123.52664227991941
Iteration: 17, Func. Count: 141, Neg. LLF: 123.51022651998684
Iteration: 18, Func. Count: 149, Neg. LLF: 123.4551265409447
Iteration: 19, Func. Count: 157, Neg. LLF: 123.44463346307289
Iteration: 20, Func. Count: 165, Neg. LLF: 123.43283790540683
Iteration: 21, Func. Count: 173, Neg. LLF: 123.42975103342637
Iteration: 22, Func. Count: 181, Neg. LLF: 123.4273820824589
Iteration: 23, Func. Count: 189, Neg. LLF: 123.42637019594196
Iteration: 24, Func. Count: 197, Neg. LLF: 123.42605211040815
Iteration: 25, Func. Count: 205, Neg. LLF: 123.42598258164078
Iteration: 26, Func. Count: 213, Neg. LLF: 123.42597821132513
Iteration: 27, Func. Count: 221, Neg. LLF: 123.42597782282105
Optimization terminated successfully (Exit mode 0)
Current function value: 123.42597782282105
Iterations: 27
Function evaluations: 221
Gradient evaluations: 27
Iteration: 1, Func. Count: 10, Neg. LLF: 126.13614759910583
Iteration: 2, Func. Count: 22, Neg. LLF: 126.90796300346565
Iteration: 3, Func. Count: 33, Neg. LLF: 122.64913967745727
Iteration: 4, Func. Count: 42, Neg. LLF: 122.48218261100533
Iteration: 5, Func. Count: 51, Neg. LLF: 121.71656804458236
Iteration: 6, Func. Count: 60, Neg. LLF: 123.16879793406514
Iteration: 7, Func. Count: 70, Neg. LLF: 121.72343522320813
Iteration: 8, Func. Count: 80, Neg. LLF: 120.85783338157135
Iteration: 9, Func. Count: 90, Neg. LLF: 120.93580849932427
Iteration: 10, Func. Count: 100, Neg. LLF: 120.71282042457595
Iteration: 11, Func. Count: 110, Neg. LLF: 120.50386902297541
Iteration: 12, Func. Count: 119, Neg. LLF: 120.4635406934578
Iteration: 13, Func. Count: 128, Neg. LLF: 120.43760020257972
Iteration: 14, Func. Count: 137, Neg. LLF: 120.41216059734514
Iteration: 15, Func. Count: 146, Neg. LLF: 120.40358249780337
Iteration: 16, Func. Count: 155, Neg. LLF: 120.40105470145056
Iteration: 17, Func. Count: 164, Neg. LLF: 120.40103191326244
Iteration: 18, Func. Count: 173, Neg. LLF: 120.40103036344823
Iteration: 19, Func. Count: 181, Neg. LLF: 120.40103036345936
Optimization terminated successfully (Exit mode 0)
Current function value: 120.40103036344823
Iterations: 19
Function evaluations: 181
Gradient evaluations: 19
Iteration: 1, Func. Count: 7, Neg. LLF: 132.42538323511556
Iteration: 2, Func. Count: 14, Neg. LLF: 137.7197739682587
Iteration: 3, Func. Count: 21, Neg. LLF: 123.48991543963005
Iteration: 4, Func. Count: 27, Neg. LLF: 124.12829718535467
Iteration: 5, Func. Count: 36, Neg. LLF: 123.25679308301052
Iteration: 6, Func. Count: 42, Neg. LLF: 123.25579156311653
Iteration: 7, Func. Count: 49, Neg. LLF: 123.2298277767811
Iteration: 8, Func. Count: 55, Neg. LLF: 123.22798590924606
Iteration: 9, Func. Count: 61, Neg. LLF: 123.22775345845669
Iteration: 10, Func. Count: 67, Neg. LLF: 123.22773434881346
Iteration: 11, Func. Count: 73, Neg. LLF: 123.22773158777613
Iteration: 12, Func. Count: 78, Neg. LLF: 123.22773158777507
Optimization terminated successfully (Exit mode 0)
Current function value: 123.22773158777613
Iterations: 12
Function evaluations: 78
Gradient evaluations: 12
Iteration: 1, Func. Count: 8, Neg. LLF: 130.0676595246716
Iteration: 2, Func. Count: 17, Neg. LLF: 128.04627954400573
Iteration: 3, Func. Count: 26, Neg. LLF: 123.58840044093776
Iteration: 4, Func. Count: 33, Neg. LLF: 123.55601165387004
Iteration: 5, Func. Count: 40, Neg. LLF: 123.5543638467591
Iteration: 6, Func. Count: 47, Neg. LLF: 123.55108493950645
Iteration: 7, Func. Count: 54, Neg. LLF: 123.51021485497056
Iteration: 8, Func. Count: 61, Neg. LLF: 123.39950386209738
Iteration: 9, Func. Count: 68, Neg. LLF: 123.3631105762899
Iteration: 10, Func. Count: 75, Neg. LLF: 123.2753305015064
Iteration: 11, Func. Count: 82, Neg. LLF: 123.6714690501618
Iteration: 12, Func. Count: 90, Neg. LLF: 123.25824088476062
Iteration: 13, Func. Count: 97, Neg. LLF: 123.24918924803238
Iteration: 14, Func. Count: 104, Neg. LLF: 123.23427335435156
Iteration: 15, Func. Count: 111, Neg. LLF: 123.23017709824022
Iteration: 16, Func. Count: 118, Neg. LLF: 123.22890570757575
Iteration: 17, Func. Count: 125, Neg. LLF: 123.22818457173864
Iteration: 18, Func. Count: 132, Neg. LLF: 123.22782009257168
Iteration: 19, Func. Count: 139, Neg. LLF: 123.22774177307865
Iteration: 20, Func. Count: 146, Neg. LLF: 123.227731986447
Iteration: 21, Func. Count: 152, Neg. LLF: 123.22773200450904
Optimization terminated successfully (Exit mode 0)
Current function value: 123.227731986447
Iterations: 21
Function evaluations: 152
Gradient evaluations: 21
Iteration: 1, Func. Count: 9, Neg. LLF: 126.39876171204101
Iteration: 2, Func. Count: 19, Neg. LLF: 129.3020151843796
Iteration: 3, Func. Count: 28, Neg. LLF: 123.6789309475973
Iteration: 4, Func. Count: 37, Neg. LLF: 123.58220701328821
Iteration: 5, Func. Count: 46, Neg. LLF: 123.47331786046243
Iteration: 6, Func. Count: 54, Neg. LLF: 123.45510977468493
Iteration: 7, Func. Count: 62, Neg. LLF: 123.45377458341368
Iteration: 8, Func. Count: 70, Neg. LLF: 123.45333784658546
Iteration: 9, Func. Count: 78, Neg. LLF: 123.44944781777
Iteration: 10, Func. Count: 86, Neg. LLF: 123.36761150925987
Iteration: 11, Func. Count: 94, Neg. LLF: 123.36445165366092
Iteration: 12, Func. Count: 103, Neg. LLF: 123.22179884888173
Iteration: 13, Func. Count: 111, Neg. LLF: 123.24660679260082
Iteration: 14, Func. Count: 120, Neg. LLF: 122.96810583481786
Iteration: 15, Func. Count: 128, Neg. LLF: 122.9506668220823
Iteration: 16, Func. Count: 136, Neg. LLF: 122.86897517019383
Iteration: 17, Func. Count: 144, Neg. LLF: 122.75894724936855
Iteration: 18, Func. Count: 152, Neg. LLF: 122.58139485569872
Iteration: 19, Func. Count: 160, Neg. LLF: 122.45751787951816
Iteration: 20, Func. Count: 168, Neg. LLF: 122.37476801092383
Iteration: 21, Func. Count: 176, Neg. LLF: 122.3673250723297
Iteration: 22, Func. Count: 184, Neg. LLF: 122.36459481603265
Iteration: 23, Func. Count: 192, Neg. LLF: 122.3622306839567
Iteration: 24, Func. Count: 200, Neg. LLF: 122.36188114572863
Iteration: 25, Func. Count: 208, Neg. LLF: 122.36186558240327
Iteration: 26, Func. Count: 215, Neg. LLF: 122.36186548524773
Optimization terminated successfully (Exit mode 0)
Current function value: 122.36186558240327
Iterations: 26
Function evaluations: 215
Gradient evaluations: 26
Iteration: 1, Func. Count: 10, Neg. LLF: 125.83699669849156
Iteration: 2, Func. Count: 21, Neg. LLF: 130.52827347023492
Iteration: 3, Func. Count: 31, Neg. LLF: 123.90371450808735
Iteration: 4, Func. Count: 41, Neg. LLF: 123.20311573760081
Iteration: 5, Func. Count: 50, Neg. LLF: 123.34469800745507
Iteration: 6, Func. Count: 60, Neg. LLF: 123.08241051540797
Iteration: 7, Func. Count: 69, Neg. LLF: 121.92981793230489
Iteration: 8, Func. Count: 78, Neg. LLF: 121.91508635429403
Iteration: 9, Func. Count: 87, Neg. LLF: 122.08984039365491
Iteration: 10, Func. Count: 97, Neg. LLF: 121.87951238986824
Iteration: 11, Func. Count: 106, Neg. LLF: 121.87793682981413
Iteration: 12, Func. Count: 115, Neg. LLF: 121.87790631061962
Iteration: 13, Func. Count: 124, Neg. LLF: 121.87790423072539
Iteration: 14, Func. Count: 132, Neg. LLF: 121.87790415800751
Optimization terminated successfully (Exit mode 0)
Current function value: 121.87790423072539
Iterations: 14
Function evaluations: 132
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 126.63477999175628
Iteration: 2, Func. Count: 23, Neg. LLF: 131.61793661122738
Iteration: 3, Func. Count: 34, Neg. LLF: 122.1035058035468
Iteration: 4, Func. Count: 44, Neg. LLF: 145.63608384490828
Iteration: 5, Func. Count: 55, Neg. LLF: 137.72637041159385
Iteration: 6, Func. Count: 66, Neg. LLF: 121.72154071532862
Iteration: 7, Func. Count: 77, Neg. LLF: 120.54884858344832
Iteration: 8, Func. Count: 87, Neg. LLF: 120.57040966161681
Iteration: 9, Func. Count: 98, Neg. LLF: 136.28219252407436
Iteration: 10, Func. Count: 109, Neg. LLF: 120.54122648447341
Iteration: 11, Func. Count: 120, Neg. LLF: 120.20428940548257
Iteration: 12, Func. Count: 130, Neg. LLF: 120.18385397719956
Iteration: 13, Func. Count: 140, Neg. LLF: 120.17946661605227
Iteration: 14, Func. Count: 150, Neg. LLF: 120.17873904878397
Iteration: 15, Func. Count: 160, Neg. LLF: 120.17871923903498
Iteration: 16, Func. Count: 169, Neg. LLF: 120.17871922201729
Optimization terminated successfully (Exit mode 0)
Current function value: 120.17871923903498
Iterations: 16
Function evaluations: 169
Gradient evaluations: 16
Iteration: 1, Func. Count: 8, Neg. LLF: 126.7279669839248
Iteration: 2, Func. Count: 16, Neg. LLF: 125.14777109949081
Iteration: 3, Func. Count: 24, Neg. LLF: 123.51540647255023
Iteration: 4, Func. Count: 31, Neg. LLF: 128.91061380367057
Iteration: 5, Func. Count: 39, Neg. LLF: 123.30356699558214
Iteration: 6, Func. Count: 47, Neg. LLF: 123.24723056038147
Iteration: 7, Func. Count: 54, Neg. LLF: 123.23200054337501
Iteration: 8, Func. Count: 61, Neg. LLF: 123.22882714559199
Iteration: 9, Func. Count: 68, Neg. LLF: 123.22780162367742
Iteration: 10, Func. Count: 75, Neg. LLF: 123.22773300828656
Iteration: 11, Func. Count: 82, Neg. LLF: 123.22773158997099
Iteration: 12, Func. Count: 88, Neg. LLF: 123.22773177939585
Optimization terminated successfully (Exit mode 0)
Current function value: 123.22773158997099
Iterations: 12
Function evaluations: 88
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 130.84472544506534
Iteration: 2, Func. Count: 19, Neg. LLF: 127.9243814021519
Iteration: 3, Func. Count: 29, Neg. LLF: 123.57427961522727
Iteration: 4, Func. Count: 37, Neg. LLF: 123.55660064844527
Iteration: 5, Func. Count: 45, Neg. LLF: 123.5543652445207
Iteration: 6, Func. Count: 53, Neg. LLF: 123.55275300748943
Iteration: 7, Func. Count: 61, Neg. LLF: 123.5410587843973
Iteration: 8, Func. Count: 69, Neg. LLF: 123.25670374895282
Iteration: 9, Func. Count: 77, Neg. LLF: 123.24646901357346
Iteration: 10, Func. Count: 85, Neg. LLF: 123.23639152314564
Iteration: 11, Func. Count: 93, Neg. LLF: 123.23408031334866
Iteration: 12, Func. Count: 101, Neg. LLF: 123.23270949191797
Iteration: 13, Func. Count: 109, Neg. LLF: 123.23138436792254
Iteration: 14, Func. Count: 117, Neg. LLF: 123.22993879626165
Iteration: 15, Func. Count: 125, Neg. LLF: 123.22879010988113
Iteration: 16, Func. Count: 133, Neg. LLF: 123.22812120938164
Iteration: 17, Func. Count: 141, Neg. LLF: 123.22781608588717
Iteration: 18, Func. Count: 149, Neg. LLF: 123.22773893036472
Iteration: 19, Func. Count: 157, Neg. LLF: 123.22773218612751
Iteration: 20, Func. Count: 164, Neg. LLF: 123.22773220412482
Optimization terminated successfully (Exit mode 0)
Current function value: 123.22773218612751
Iterations: 20
Function evaluations: 164
Gradient evaluations: 20
Iteration: 1, Func. Count: 10, Neg. LLF: 126.53308141487022
Iteration: 2, Func. Count: 21, Neg. LLF: 129.064805251378
Iteration: 3, Func. Count: 31, Neg. LLF: 123.67214761928474
Iteration: 4, Func. Count: 41, Neg. LLF: 123.5761282780046
Iteration: 5, Func. Count: 51, Neg. LLF: 123.49768001438454
Iteration: 6, Func. Count: 60, Neg. LLF: 123.45843916937564
Iteration: 7, Func. Count: 69, Neg. LLF: 123.45409612408487
Iteration: 8, Func. Count: 78, Neg. LLF: 123.4535065522107
Iteration: 9, Func. Count: 87, Neg. LLF: 123.45274038382134
Iteration: 10, Func. Count: 96, Neg. LLF: 123.4474347273184
Iteration: 11, Func. Count: 105, Neg. LLF: 123.64861390935634
Iteration: 12, Func. Count: 115, Neg. LLF: 125.35352250613482
Iteration: 13, Func. Count: 125, Neg. LLF: 124.91039246845695
Iteration: 14, Func. Count: 135, Neg. LLF: 124.3166786877769
Iteration: 15, Func. Count: 145, Neg. LLF: 124.15916193306117
Iteration: 16, Func. Count: 155, Neg. LLF: 123.88596334311846
Iteration: 17, Func. Count: 165, Neg. LLF: 123.67065948577918
Iteration: 18, Func. Count: 175, Neg. LLF: 123.50312973510775
Iteration: 19, Func. Count: 185, Neg. LLF: 123.3143837250297
Iteration: 20, Func. Count: 194, Neg. LLF: 129.15673225614864
Iteration: 21, Func. Count: 205, Neg. LLF: 123.20054551512136
Iteration: 22, Func. Count: 214, Neg. LLF: 123.1223012619701
Iteration: 23, Func. Count: 223, Neg. LLF: 122.9157407747129
Iteration: 24, Func. Count: 232, Neg. LLF: 122.77534950711181
Iteration: 25, Func. Count: 241, Neg. LLF: 122.50538925600809
Iteration: 26, Func. Count: 250, Neg. LLF: 122.39454425169318
Iteration: 27, Func. Count: 259, Neg. LLF: 122.37049465645785
Iteration: 28, Func. Count: 268, Neg. LLF: 122.36250911429003
Iteration: 29, Func. Count: 277, Neg. LLF: 122.36195627419572
Iteration: 30, Func. Count: 286, Neg. LLF: 122.36190398552584
Iteration: 31, Func. Count: 295, Neg. LLF: 122.36186335496954
Iteration: 32, Func. Count: 304, Neg. LLF: 122.36186982557588
Iteration: 33, Func. Count: 314, Neg. LLF: 122.36645095378591
Optimization terminated successfully (Exit mode 0)
Current function value: 122.36186368006712
Iterations: 34
Function evaluations: 316
Gradient evaluations: 33
Iteration: 1, Func. Count: 11, Neg. LLF: 126.03999863680623
Iteration: 2, Func. Count: 23, Neg. LLF: 130.25979899096836
Iteration: 3, Func. Count: 34, Neg. LLF: 123.93763934819944
Iteration: 4, Func. Count: 45, Neg. LLF: 123.18504909745377
Iteration: 5, Func. Count: 55, Neg. LLF: 123.37115073702243
Iteration: 6, Func. Count: 66, Neg. LLF: 123.08340172994355
Iteration: 7, Func. Count: 76, Neg. LLF: 122.01411487044595
Iteration: 8, Func. Count: 86, Neg. LLF: 122.77936572250454
Iteration: 9, Func. Count: 97, Neg. LLF: 121.91574529008878
Iteration: 10, Func. Count: 107, Neg. LLF: 121.87826202755984
Iteration: 11, Func. Count: 117, Neg. LLF: 121.87790789604911
Iteration: 12, Func. Count: 127, Neg. LLF: 121.8779040090624
Iteration: 13, Func. Count: 136, Neg. LLF: 121.87790393646297
Optimization terminated successfully (Exit mode 0)
Current function value: 121.8779040090624
Iterations: 13
Function evaluations: 136
Gradient evaluations: 13
Iteration: 1, Func. Count: 12, Neg. LLF: 126.42765785591357
Iteration: 2, Func. Count: 25, Neg. LLF: 131.23228717790727
Iteration: 3, Func. Count: 37, Neg. LLF: 123.506787068101
Iteration: 4, Func. Count: 51, Neg. LLF: 135.51603551667893
Iteration: 5, Func. Count: 64, Neg. LLF: 122.1537640496849
Iteration: 6, Func. Count: 75, Neg. LLF: 121.47361480397483
Iteration: 7, Func. Count: 86, Neg. LLF: 120.90799621240649
Iteration: 8, Func. Count: 97, Neg. LLF: 121.4744586039269
Iteration: 9, Func. Count: 109, Neg. LLF: 121.06932779223159
Iteration: 10, Func. Count: 121, Neg. LLF: 120.18628109687546
Iteration: 11, Func. Count: 132, Neg. LLF: 120.12339702812271
Iteration: 12, Func. Count: 143, Neg. LLF: 120.10325415078712
Iteration: 13, Func. Count: 154, Neg. LLF: 120.0861224359819
Iteration: 14, Func. Count: 165, Neg. LLF: 120.08952603029266
Iteration: 15, Func. Count: 177, Neg. LLF: 120.0631856701997
Iteration: 16, Func. Count: 188, Neg. LLF: 120.06221202003385
Iteration: 17, Func. Count: 199, Neg. LLF: 120.06220577368244
Iteration: 18, Func. Count: 209, Neg. LLF: 120.0622057272167
Optimization terminated successfully (Exit mode 0)
Current function value: 120.06220577368244
Iterations: 18
Function evaluations: 209
Gradient evaluations: 18
Iteration: 1, Func. Count: 9, Neg. LLF: 126.69047232367417
Iteration: 2, Func. Count: 18, Neg. LLF: 123.46101813903645
Iteration: 3, Func. Count: 26, Neg. LLF: 123.27989913468309
Iteration: 4, Func. Count: 34, Neg. LLF: 123.95535458913885
Iteration: 5, Func. Count: 43, Neg. LLF: 124.61056485236661
Iteration: 6, Func. Count: 53, Neg. LLF: 123.23536757850482
Iteration: 7, Func. Count: 61, Neg. LLF: 123.22954717373332
Iteration: 8, Func. Count: 69, Neg. LLF: 123.22793920093766
Iteration: 9, Func. Count: 77, Neg. LLF: 123.22774430440488
Iteration: 10, Func. Count: 85, Neg. LLF: 123.22773161752352
Iteration: 11, Func. Count: 92, Neg. LLF: 123.22773171991473
Optimization terminated successfully (Exit mode 0)
Current function value: 123.22773161752352
Iterations: 11
Function evaluations: 92
Gradient evaluations: 11
Iteration: 1, Func. Count: 10, Neg. LLF: 130.97375189412537
Iteration: 2, Func. Count: 21, Neg. LLF: 127.72676327606506
Iteration: 3, Func. Count: 32, Neg. LLF: 123.57367533362546
Iteration: 4, Func. Count: 41, Neg. LLF: 123.55692183187489
Iteration: 5, Func. Count: 50, Neg. LLF: 123.5547450167963
Iteration: 6, Func. Count: 59, Neg. LLF: 123.55327880795171
Iteration: 7, Func. Count: 68, Neg. LLF: 123.54326274945419
Iteration: 8, Func. Count: 77, Neg. LLF: 123.25874108406295
Iteration: 9, Func. Count: 86, Neg. LLF: 123.245586839258
Iteration: 10, Func. Count: 95, Neg. LLF: 123.2373800336941
Iteration: 11, Func. Count: 104, Neg. LLF: 123.23385209655333
Iteration: 12, Func. Count: 113, Neg. LLF: 123.23241805936624
Iteration: 13, Func. Count: 122, Neg. LLF: 123.23124727198258
Iteration: 14, Func. Count: 131, Neg. LLF: 123.22996001404935
Iteration: 15, Func. Count: 140, Neg. LLF: 123.22888559166014
Iteration: 16, Func. Count: 149, Neg. LLF: 123.22820456473528
Iteration: 17, Func. Count: 158, Neg. LLF: 123.2278590222481
Iteration: 18, Func. Count: 167, Neg. LLF: 123.22774643988429
Iteration: 19, Func. Count: 176, Neg. LLF: 123.22773224645128
Iteration: 20, Func. Count: 185, Neg. LLF: 123.22773161956567
Optimization terminated successfully (Exit mode 0)
Current function value: 123.22773161956567
Iterations: 20
Function evaluations: 185
Gradient evaluations: 20
Iteration: 1, Func. Count: 11, Neg. LLF: 126.51609281452055
Iteration: 2, Func. Count: 23, Neg. LLF: 129.11546316849842
Iteration: 3, Func. Count: 34, Neg. LLF: 123.66675924742545
Iteration: 4, Func. Count: 45, Neg. LLF: 123.58139502981072
Iteration: 5, Func. Count: 56, Neg. LLF: 123.4916340203652
Iteration: 6, Func. Count: 66, Neg. LLF: 123.45700526866457
Iteration: 7, Func. Count: 76, Neg. LLF: 123.45381085762851
Iteration: 8, Func. Count: 86, Neg. LLF: 123.45331063351425
Iteration: 9, Func. Count: 96, Neg. LLF: 123.45184243855444
Iteration: 10, Func. Count: 106, Neg. LLF: 123.44523604909273
Iteration: 11, Func. Count: 116, Neg. LLF: 123.48618390287169
Iteration: 12, Func. Count: 127, Neg. LLF: 124.79258605325893
Iteration: 13, Func. Count: 138, Neg. LLF: 124.46190505401044
Iteration: 14, Func. Count: 149, Neg. LLF: 124.1873450050985
Iteration: 15, Func. Count: 160, Neg. LLF: 123.95703875452696
Iteration: 16, Func. Count: 171, Neg. LLF: 123.75960479467655
Iteration: 17, Func. Count: 182, Neg. LLF: 123.5981003401293
Iteration: 18, Func. Count: 193, Neg. LLF: 123.40496989102688
Iteration: 19, Func. Count: 204, Neg. LLF: 123.28581141157383
Iteration: 20, Func. Count: 214, Neg. LLF: 123.13307223143602
Iteration: 21, Func. Count: 224, Neg. LLF: 122.7826090028158
Iteration: 22, Func. Count: 234, Neg. LLF: 122.38260286228817
Iteration: 23, Func. Count: 244, Neg. LLF: 122.3731056226949
Iteration: 24, Func. Count: 254, Neg. LLF: 122.36861700240728
Iteration: 25, Func. Count: 264, Neg. LLF: 122.36419831038425
Iteration: 26, Func. Count: 274, Neg. LLF: 122.36267609895678
Iteration: 27, Func. Count: 284, Neg. LLF: 122.36204834301195
Iteration: 28, Func. Count: 294, Neg. LLF: 122.36189755151425
Iteration: 29, Func. Count: 304, Neg. LLF: 122.36186935214761
Iteration: 30, Func. Count: 314, Neg. LLF: 122.36186881020483
Optimization terminated successfully (Exit mode 0)
Current function value: 122.36186881020483
Iterations: 30
Function evaluations: 314
Gradient evaluations: 30
Iteration: 1, Func. Count: 12, Neg. LLF: 125.96183650243721
Iteration: 2, Func. Count: 25, Neg. LLF: 130.31211589027507
Iteration: 3, Func. Count: 37, Neg. LLF: 123.94667037422964
Iteration: 4, Func. Count: 49, Neg. LLF: 123.18569858288431
Iteration: 5, Func. Count: 60, Neg. LLF: 123.38281123210227
Iteration: 6, Func. Count: 72, Neg. LLF: 123.07684742840542
Iteration: 7, Func. Count: 83, Neg. LLF: 121.98432141846455
Iteration: 8, Func. Count: 94, Neg. LLF: 122.96727163552993
Iteration: 9, Func. Count: 106, Neg. LLF: 121.891413017047
Iteration: 10, Func. Count: 117, Neg. LLF: 121.87794080650895
Iteration: 11, Func. Count: 128, Neg. LLF: 121.87790487878813
Iteration: 12, Func. Count: 139, Neg. LLF: 121.87790404330728
Optimization terminated successfully (Exit mode 0)
Current function value: 121.87790404330728
Iterations: 12
Function evaluations: 139
Gradient evaluations: 12
Iteration: 1, Func. Count: 13, Neg. LLF: 126.23748202284523
Iteration: 2, Func. Count: 27, Neg. LLF: 131.18566000534463
Iteration: 3, Func. Count: 40, Neg. LLF: 125.83274791842172
Iteration: 4, Func. Count: 54, Neg. LLF: 132.70132483177474
Iteration: 5, Func. Count: 68, Neg. LLF: 122.33678270218957
Iteration: 6, Func. Count: 80, Neg. LLF: 121.43363126071495
Iteration: 7, Func. Count: 92, Neg. LLF: 120.91341672600562
Iteration: 8, Func. Count: 104, Neg. LLF: 120.47768445637908
Iteration: 9, Func. Count: 116, Neg. LLF: 120.27111018128471
Iteration: 10, Func. Count: 128, Neg. LLF: 129.3452775528757
Iteration: 11, Func. Count: 142, Neg. LLF: 120.16430497361608
Iteration: 12, Func. Count: 154, Neg. LLF: 120.14340722366899
Iteration: 13, Func. Count: 166, Neg. LLF: 120.12611765298558
Iteration: 14, Func. Count: 178, Neg. LLF: 120.09994350531703
Iteration: 15, Func. Count: 190, Neg. LLF: 120.0672292289194
Iteration: 16, Func. Count: 202, Neg. LLF: 120.06357865964881
Iteration: 17, Func. Count: 214, Neg. LLF: 120.06227499789553
Iteration: 18, Func. Count: 226, Neg. LLF: 120.06222535685906
Iteration: 19, Func. Count: 238, Neg. LLF: 120.06220559564417
Iteration: 20, Func. Count: 249, Neg. LLF: 120.06220554928065
Optimization terminated successfully (Exit mode 0)
Current function value: 120.06220559564417
Iterations: 20
Function evaluations: 249
Gradient evaluations: 20
Iteration: 1, Func. Count: 10, Neg. LLF: 126.72133877128047
Iteration: 2, Func. Count: 20, Neg. LLF: 125.01069184753808
Iteration: 3, Func. Count: 30, Neg. LLF: 123.52121288298775
Iteration: 4, Func. Count: 39, Neg. LLF: 132.03870972217106
Iteration: 5, Func. Count: 49, Neg. LLF: 123.33631794824886
Iteration: 6, Func. Count: 59, Neg. LLF: 123.23288696669972
Iteration: 7, Func. Count: 68, Neg. LLF: 123.22954046400415
Iteration: 8, Func. Count: 77, Neg. LLF: 123.22806788460129
Iteration: 9, Func. Count: 86, Neg. LLF: 123.22775168885917
Iteration: 10, Func. Count: 95, Neg. LLF: 123.2277325847369
Iteration: 11, Func. Count: 104, Neg. LLF: 123.22773171053005
Optimization terminated successfully (Exit mode 0)
Current function value: 123.22773171053005
Iterations: 11
Function evaluations: 104
Gradient evaluations: 11
Iteration: 1, Func. Count: 11, Neg. LLF: 130.91784815151826
Iteration: 2, Func. Count: 23, Neg. LLF: 127.86370877891348
Iteration: 3, Func. Count: 35, Neg. LLF: 123.5771641499267
Iteration: 4, Func. Count: 45, Neg. LLF: 123.55676557661096
Iteration: 5, Func. Count: 55, Neg. LLF: 123.55515007150977
Iteration: 6, Func. Count: 65, Neg. LLF: 123.55356187771498
Iteration: 7, Func. Count: 75, Neg. LLF: 123.54090699948969
Iteration: 8, Func. Count: 85, Neg. LLF: 123.2713478963463
Iteration: 9, Func. Count: 95, Neg. LLF: 123.24907598308877
Iteration: 10, Func. Count: 105, Neg. LLF: 123.24262400596594
Iteration: 11, Func. Count: 115, Neg. LLF: 123.23616651679822
Iteration: 12, Func. Count: 125, Neg. LLF: 123.23392462317135
Iteration: 13, Func. Count: 135, Neg. LLF: 123.23267141200186
Iteration: 14, Func. Count: 145, Neg. LLF: 123.23099453838607
Iteration: 15, Func. Count: 155, Neg. LLF: 123.22909979279281
Iteration: 16, Func. Count: 165, Neg. LLF: 123.22805431913883
Iteration: 17, Func. Count: 175, Neg. LLF: 123.227813086671
Iteration: 18, Func. Count: 185, Neg. LLF: 123.22775023984423
Iteration: 19, Func. Count: 195, Neg. LLF: 123.22773437776605
Iteration: 20, Func. Count: 205, Neg. LLF: 123.22773193657507
Iteration: 21, Func. Count: 214, Neg. LLF: 123.2277319545889
Optimization terminated successfully (Exit mode 0)
Current function value: 123.22773193657507
Iterations: 21
Function evaluations: 214
Gradient evaluations: 21
Iteration: 1, Func. Count: 12, Neg. LLF: 126.51543056631235
Iteration: 2, Func. Count: 25, Neg. LLF: 129.12346627917054
Iteration: 3, Func. Count: 37, Neg. LLF: 123.67298317456074
Iteration: 4, Func. Count: 49, Neg. LLF: 123.57130019619808
Iteration: 5, Func. Count: 61, Neg. LLF: 123.49322422194943
Iteration: 6, Func. Count: 72, Neg. LLF: 123.45740177944653
Iteration: 7, Func. Count: 83, Neg. LLF: 123.45383125419787
Iteration: 8, Func. Count: 94, Neg. LLF: 123.45329100103302
Iteration: 9, Func. Count: 105, Neg. LLF: 123.4521361563802
Iteration: 10, Func. Count: 116, Neg. LLF: 123.44572008151607
Iteration: 11, Func. Count: 127, Neg. LLF: 123.53847815907625
Iteration: 12, Func. Count: 139, Neg. LLF: 125.12785035096076
Iteration: 13, Func. Count: 151, Neg. LLF: 124.76265259731014
Iteration: 14, Func. Count: 163, Neg. LLF: 124.39890530299958
Iteration: 15, Func. Count: 175, Neg. LLF: 124.10103090181214
Iteration: 16, Func. Count: 187, Neg. LLF: 123.84726022185856
Iteration: 17, Func. Count: 199, Neg. LLF: 123.64535890847453
Iteration: 18, Func. Count: 211, Neg. LLF: 123.46556333255575
Iteration: 19, Func. Count: 223, Neg. LLF: 123.24824718830698
Iteration: 20, Func. Count: 234, Neg. LLF: 125.0942602371473
Iteration: 21, Func. Count: 246, Neg. LLF: 123.19519932775594
Iteration: 22, Func. Count: 257, Neg. LLF: 123.06224881330442
Iteration: 23, Func. Count: 268, Neg. LLF: 122.65177539706352
Iteration: 24, Func. Count: 279, Neg. LLF: 122.50755682847264
Iteration: 25, Func. Count: 290, Neg. LLF: 122.45850483738722
Iteration: 26, Func. Count: 301, Neg. LLF: 122.43787673412034
Iteration: 27, Func. Count: 312, Neg. LLF: 122.42434116507093
Iteration: 28, Func. Count: 323, Neg. LLF: 122.44529615891734
Iteration: 29, Func. Count: 335, Neg. LLF: 122.53097576193291
Iteration: 30, Func. Count: 347, Neg. LLF: 122.37158551656779
Iteration: 31, Func. Count: 358, Neg. LLF: 122.36754402664997
Iteration: 32, Func. Count: 369, Neg. LLF: 122.36269374420445
Iteration: 33, Func. Count: 380, Neg. LLF: 122.36212587240865
Iteration: 34, Func. Count: 391, Neg. LLF: 122.36193890240779
Iteration: 35, Func. Count: 402, Neg. LLF: 122.36187286092816
Iteration: 36, Func. Count: 413, Neg. LLF: 122.36184053532396
Iteration: 37, Func. Count: 424, Neg. LLF: 122.36185858661491
Iteration: 38, Func. Count: 445, Neg. LLF: 122.36185733111387
Iteration: 39, Func. Count: 466, Neg. LLF: 122.36185186347184
Iteration: 40, Func. Count: 487, Neg. LLF: 122.36239490623356
Iteration: 41, Func. Count: 500, Neg. LLF: 122.36186642441194
Iteration: 42, Func. Count: 512, Neg. LLF: 122.36186646259927
Iteration: 43, Func. Count: 524, Neg. LLF: 122.36186551251974
Iteration: 44, Func. Count: 536, Neg. LLF: 122.36186541755916
Iteration: 45, Func. Count: 548, Neg. LLF: 122.3618654523139
Iteration: 46, Func. Count: 562, Neg. LLF: 122.36186541406919
Iteration: 47, Func. Count: 575, Neg. LLF: 122.36186541488784
Iteration: 48, Func. Count: 588, Neg. LLF: 122.36186541558287
Iteration: 49, Func. Count: 599, Neg. LLF: 122.36185787034374
Optimization terminated successfully (Exit mode 0)
Current function value: 122.36185796738465
Iterations: 53
Function evaluations: 599
Gradient evaluations: 49
Iteration: 1, Func. Count: 13, Neg. LLF: 126.04501367633097
Iteration: 2, Func. Count: 27, Neg. LLF: 130.25143658147297
Iteration: 3, Func. Count: 40, Neg. LLF: 123.93737543107287
Iteration: 4, Func. Count: 53, Neg. LLF: 123.18995951859816
Iteration: 5, Func. Count: 65, Neg. LLF: 123.38678883827602
Iteration: 6, Func. Count: 78, Neg. LLF: 123.08295120010779
Iteration: 7, Func. Count: 90, Neg. LLF: 121.97588831330471
Iteration: 8, Func. Count: 102, Neg. LLF: 122.93676335981951
Iteration: 9, Func. Count: 115, Neg. LLF: 121.889244295591
Iteration: 10, Func. Count: 127, Neg. LLF: 121.87796890705714
Iteration: 11, Func. Count: 139, Neg. LLF: 121.87790669445033
Iteration: 12, Func. Count: 151, Neg. LLF: 121.87790489936253
Iteration: 13, Func. Count: 163, Neg. LLF: 121.87790371115996
Iteration: 14, Func. Count: 174, Neg. LLF: 121.87790363863198
Optimization terminated successfully (Exit mode 0)
Current function value: 121.87790371115996
Iterations: 14
Function evaluations: 174
Gradient evaluations: 14
Iteration: 1, Func. Count: 14, Neg. LLF: 126.10088934421837
Iteration: 2, Func. Count: 29, Neg. LLF: 131.15608080645092
Iteration: 3, Func. Count: 43, Neg. LLF: 130.05482679979372
Iteration: 4, Func. Count: 58, Neg. LLF: 130.18463032851116
Iteration: 5, Func. Count: 72, Neg. LLF: 122.38770314617332
Iteration: 6, Func. Count: 85, Neg. LLF: 121.44644569925137
Iteration: 7, Func. Count: 98, Neg. LLF: 120.92682362446199
Iteration: 8, Func. Count: 111, Neg. LLF: 121.20410920167842
Iteration: 9, Func. Count: 125, Neg. LLF: 120.44863448033661
Iteration: 10, Func. Count: 139, Neg. LLF: 120.72909605360269
Iteration: 11, Func. Count: 153, Neg. LLF: 121.96770058610416
Iteration: 12, Func. Count: 168, Neg. LLF: 120.14849340225187
Iteration: 13, Func. Count: 181, Neg. LLF: 120.11097965883408
Iteration: 14, Func. Count: 194, Neg. LLF: 120.09454201820623
Iteration: 15, Func. Count: 207, Neg. LLF: 120.07688595224356
Iteration: 16, Func. Count: 220, Neg. LLF: 120.06668618145157
Iteration: 17, Func. Count: 233, Neg. LLF: 120.06274327515649
Iteration: 18, Func. Count: 246, Neg. LLF: 120.06223805743068
Iteration: 19, Func. Count: 259, Neg. LLF: 120.06220610936461
Iteration: 20, Func. Count: 272, Neg. LLF: 120.06220564951454
Optimization terminated successfully (Exit mode 0)
Current function value: 120.06220564951454
Iterations: 20
Function evaluations: 272
Gradient evaluations: 20
Iteration: 1, Func. Count: 7, Neg. LLF: 127.06878138546874
Iteration: 2, Func. Count: 14, Neg. LLF: 134.36610397076848
Iteration: 3, Func. Count: 21, Neg. LLF: 123.95436370369146
Iteration: 4, Func. Count: 27, Neg. LLF: 123.59940878732046
Iteration: 5, Func. Count: 33, Neg. LLF: 123.70186624742425
Iteration: 6, Func. Count: 40, Neg. LLF: 123.45968260434103
Iteration: 7, Func. Count: 46, Neg. LLF: 123.43072202295191
Iteration: 8, Func. Count: 52, Neg. LLF: 123.4265460550286
Iteration: 9, Func. Count: 58, Neg. LLF: 123.42600122630098
Iteration: 10, Func. Count: 64, Neg. LLF: 123.42598100808056
Iteration: 11, Func. Count: 70, Neg. LLF: 123.42597686720657
Iteration: 12, Func. Count: 75, Neg. LLF: 123.42597703976577
Optimization terminated successfully (Exit mode 0)
Current function value: 123.42597686720657
Iterations: 12
Function evaluations: 75
Gradient evaluations: 12
Iteration: 1, Func. Count: 8, Neg. LLF: 163.7752944978195
Iteration: 2, Func. Count: 17, Neg. LLF: 123.5742671176574
Iteration: 3, Func. Count: 24, Neg. LLF: 123.57734500941224
Iteration: 4, Func. Count: 32, Neg. LLF: 123.57400224331266
Iteration: 5, Func. Count: 39, Neg. LLF: 123.57398159975753
Iteration: 6, Func. Count: 46, Neg. LLF: 123.57397981863355
Iteration: 7, Func. Count: 53, Neg. LLF: 123.57396877190283
Iteration: 8, Func. Count: 60, Neg. LLF: 123.57391177520677
Iteration: 9, Func. Count: 67, Neg. LLF: 123.57361842501949
Iteration: 10, Func. Count: 74, Neg. LLF: 123.5721832713206
Iteration: 11, Func. Count: 81, Neg. LLF: 123.57060793895481
Iteration: 12, Func. Count: 88, Neg. LLF: 123.56929291022392
Iteration: 13, Func. Count: 95, Neg. LLF: 123.56526771029158
Iteration: 14, Func. Count: 102, Neg. LLF: 123.5618268913055
Iteration: 15, Func. Count: 109, Neg. LLF: 123.5509019210457
Iteration: 16, Func. Count: 116, Neg. LLF: 123.53014988250409
Iteration: 17, Func. Count: 123, Neg. LLF: 123.4910839719519
Iteration: 18, Func. Count: 130, Neg. LLF: 123.4482266549226
Iteration: 19, Func. Count: 137, Neg. LLF: 123.43449908455844
Iteration: 20, Func. Count: 144, Neg. LLF: 123.62333278642988
Iteration: 21, Func. Count: 152, Neg. LLF: 123.45609393147107
Iteration: 22, Func. Count: 160, Neg. LLF: 123.42636415542248
Iteration: 23, Func. Count: 167, Neg. LLF: 123.42598575383272
Iteration: 24, Func. Count: 174, Neg. LLF: 123.425976553593
Iteration: 25, Func. Count: 180, Neg. LLF: 123.42597657149753
Optimization terminated successfully (Exit mode 0)
Current function value: 123.425976553593
Iterations: 26
Function evaluations: 180
Gradient evaluations: 25
Iteration: 1, Func. Count: 9, Neg. LLF: 155.54832033530423
Iteration: 2, Func. Count: 19, Neg. LLF: 123.57695804088488
Iteration: 3, Func. Count: 27, Neg. LLF: 123.58613054101572
Iteration: 4, Func. Count: 36, Neg. LLF: 123.5583981033741
Iteration: 5, Func. Count: 44, Neg. LLF: 123.54210621323382
Iteration: 6, Func. Count: 52, Neg. LLF: 123.53965152966403
Iteration: 7, Func. Count: 60, Neg. LLF: 123.5371418762266
Iteration: 8, Func. Count: 68, Neg. LLF: 123.53690516455947
Iteration: 9, Func. Count: 76, Neg. LLF: 123.53685457192024
Iteration: 10, Func. Count: 84, Neg. LLF: 123.53678200595905
Iteration: 11, Func. Count: 92, Neg. LLF: 123.53665475905423
Iteration: 12, Func. Count: 100, Neg. LLF: 123.53624727939264
Iteration: 13, Func. Count: 108, Neg. LLF: 123.53379682967709
Iteration: 14, Func. Count: 116, Neg. LLF: 123.98777911042299
Iteration: 15, Func. Count: 125, Neg. LLF: 123.53137963802641
Iteration: 16, Func. Count: 133, Neg. LLF: 123.52496323208075
Iteration: 17, Func. Count: 141, Neg. LLF: 123.4989900301075
Iteration: 18, Func. Count: 149, Neg. LLF: 123.49309370798427
Iteration: 19, Func. Count: 157, Neg. LLF: 123.49551617347444
Iteration: 20, Func. Count: 166, Neg. LLF: 123.49092278131232
Iteration: 21, Func. Count: 174, Neg. LLF: 123.49058392536561
Iteration: 22, Func. Count: 182, Neg. LLF: 123.4905415247218
Iteration: 23, Func. Count: 190, Neg. LLF: 123.49049448678073
Iteration: 24, Func. Count: 198, Neg. LLF: 123.49049001299794
Iteration: 25, Func. Count: 205, Neg. LLF: 123.49049001302018
Optimization terminated successfully (Exit mode 0)
Current function value: 123.49049001299794
Iterations: 25
Function evaluations: 205
Gradient evaluations: 25
Iteration: 1, Func. Count: 10, Neg. LLF: 135.78322425037706
Iteration: 2, Func. Count: 21, Neg. LLF: 123.58304277696163
Iteration: 3, Func. Count: 30, Neg. LLF: 123.58945275696291
Iteration: 4, Func. Count: 40, Neg. LLF: 123.64721719850073
Iteration: 5, Func. Count: 50, Neg. LLF: 123.54071274286501
Iteration: 6, Func. Count: 59, Neg. LLF: 123.53664786330445
Iteration: 7, Func. Count: 68, Neg. LLF: 123.53606796537903
Iteration: 8, Func. Count: 77, Neg. LLF: 123.53603784083849
Iteration: 9, Func. Count: 86, Neg. LLF: 123.53600823403663
Iteration: 10, Func. Count: 95, Neg. LLF: 123.53590972040409
Iteration: 11, Func. Count: 104, Neg. LLF: 123.53577243297542
Iteration: 12, Func. Count: 113, Neg. LLF: 123.53546382392396
Iteration: 13, Func. Count: 122, Neg. LLF: 123.53451542889215
Iteration: 14, Func. Count: 131, Neg. LLF: 123.53006505375231
Iteration: 15, Func. Count: 140, Neg. LLF: 123.52579586276256
Iteration: 16, Func. Count: 149, Neg. LLF: 123.48003136666871
Iteration: 17, Func. Count: 158, Neg. LLF: 123.43934612474357
Iteration: 18, Func. Count: 167, Neg. LLF: 123.43055562623518
Iteration: 19, Func. Count: 176, Neg. LLF: 123.42947132374842
Iteration: 20, Func. Count: 185, Neg. LLF: 123.42851103567284
Iteration: 21, Func. Count: 194, Neg. LLF: 123.42602178441628
Iteration: 22, Func. Count: 203, Neg. LLF: 123.4745419712941
Iteration: 23, Func. Count: 214, Neg. LLF: 123.42608868740442
Iteration: 24, Func. Count: 224, Neg. LLF: 123.42598206503328
Iteration: 25, Func. Count: 233, Neg. LLF: 123.42597652658613
Iteration: 26, Func. Count: 241, Neg. LLF: 123.42597654157989
Optimization terminated successfully (Exit mode 0)
Current function value: 123.42597652658613
Iterations: 27
Function evaluations: 241
Gradient evaluations: 26
Iteration: 1, Func. Count: 11, Neg. LLF: 126.19705727227682
Iteration: 2, Func. Count: 24, Neg. LLF: 126.93868434030163
Iteration: 3, Func. Count: 36, Neg. LLF: 122.68794079661083
Iteration: 4, Func. Count: 46, Neg. LLF: 122.42775268767461
Iteration: 5, Func. Count: 56, Neg. LLF: 121.7402749243934
Iteration: 6, Func. Count: 66, Neg. LLF: 123.01793368687596
Iteration: 7, Func. Count: 77, Neg. LLF: 121.62419322943838
Iteration: 8, Func. Count: 88, Neg. LLF: 120.9991602791355
Iteration: 9, Func. Count: 99, Neg. LLF: 121.22809747896174
Iteration: 10, Func. Count: 110, Neg. LLF: 120.50130925652861
Iteration: 11, Func. Count: 120, Neg. LLF: 120.4817480816787
Iteration: 12, Func. Count: 130, Neg. LLF: 120.46227444114332
Iteration: 13, Func. Count: 140, Neg. LLF: 120.41317125268527
Iteration: 14, Func. Count: 150, Neg. LLF: 120.40221765808485
Iteration: 15, Func. Count: 160, Neg. LLF: 120.40106531026159
Iteration: 16, Func. Count: 170, Neg. LLF: 120.4010417491047
Iteration: 17, Func. Count: 180, Neg. LLF: 120.40103037922547
Iteration: 18, Func. Count: 189, Neg. LLF: 120.40103037921278
Optimization terminated successfully (Exit mode 0)
Current function value: 120.40103037922547
Iterations: 18
Function evaluations: 189
Gradient evaluations: 18
Iteration: 1, Func. Count: 8, Neg. LLF: 131.01381995373072
Iteration: 2, Func. Count: 16, Neg. LLF: 139.92191515575078
Iteration: 3, Func. Count: 24, Neg. LLF: 123.66044415611672
Iteration: 4, Func. Count: 31, Neg. LLF: 124.06214886338053
Iteration: 5, Func. Count: 41, Neg. LLF: 123.29538354275847
Iteration: 6, Func. Count: 48, Neg. LLF: 123.25258410940232
Iteration: 7, Func. Count: 55, Neg. LLF: 123.23264889990166
Iteration: 8, Func. Count: 62, Neg. LLF: 123.22804222938719
Iteration: 9, Func. Count: 69, Neg. LLF: 123.22777343608941
Iteration: 10, Func. Count: 76, Neg. LLF: 123.22773197840718
Iteration: 11, Func. Count: 82, Neg. LLF: 123.22773197841784
Optimization terminated successfully (Exit mode 0)
Current function value: 123.22773197840718
Iterations: 11
Function evaluations: 82
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 129.88022477012595
Iteration: 2, Func. Count: 19, Neg. LLF: 128.1248485238232
Iteration: 3, Func. Count: 29, Neg. LLF: 123.58760468569756
Iteration: 4, Func. Count: 37, Neg. LLF: 123.55626572879295
Iteration: 5, Func. Count: 45, Neg. LLF: 123.55504087683528
Iteration: 6, Func. Count: 53, Neg. LLF: 123.55025697344371
Iteration: 7, Func. Count: 61, Neg. LLF: 123.47718721155975
Iteration: 8, Func. Count: 69, Neg. LLF: 123.40475483446573
Iteration: 9, Func. Count: 77, Neg. LLF: 123.9027125412509
Iteration: 10, Func. Count: 86, Neg. LLF: 136.6760554798666
Iteration: 11, Func. Count: 97, Neg. LLF: 123.2298489876641
Iteration: 12, Func. Count: 105, Neg. LLF: 123.22844479598618
Iteration: 13, Func. Count: 113, Neg. LLF: 123.22779787641772
Iteration: 14, Func. Count: 121, Neg. LLF: 123.22775864626247
Iteration: 15, Func. Count: 129, Neg. LLF: 123.22773954824567
Iteration: 16, Func. Count: 137, Neg. LLF: 123.22773452396255
Iteration: 17, Func. Count: 145, Neg. LLF: 123.2277318070283
Iteration: 18, Func. Count: 152, Neg. LLF: 123.22773182507957
Optimization terminated successfully (Exit mode 0)
Current function value: 123.2277318070283
Iterations: 18
Function evaluations: 152
Gradient evaluations: 18
Iteration: 1, Func. Count: 10, Neg. LLF: 126.39592871713025
Iteration: 2, Func. Count: 21, Neg. LLF: 129.38757102245654
Iteration: 3, Func. Count: 31, Neg. LLF: 123.6830708984463
Iteration: 4, Func. Count: 41, Neg. LLF: 123.58419921906355
Iteration: 5, Func. Count: 51, Neg. LLF: 123.46940128777946
Iteration: 6, Func. Count: 60, Neg. LLF: 123.45451586767949
Iteration: 7, Func. Count: 69, Neg. LLF: 123.45347718019296
Iteration: 8, Func. Count: 78, Neg. LLF: 123.4529196983755
Iteration: 9, Func. Count: 87, Neg. LLF: 123.44742965106404
Iteration: 10, Func. Count: 96, Neg. LLF: 123.48964002204505
Iteration: 11, Func. Count: 106, Neg. LLF: 123.22971305506935
Iteration: 12, Func. Count: 115, Neg. LLF: 123.23678966977963
Iteration: 13, Func. Count: 125, Neg. LLF: 122.46298808110313
Iteration: 14, Func. Count: 134, Neg. LLF: 122.42402999580683
Iteration: 15, Func. Count: 143, Neg. LLF: 122.36251387622315
Iteration: 16, Func. Count: 152, Neg. LLF: 122.36206515400293
Iteration: 17, Func. Count: 161, Neg. LLF: 122.36191668134313
Iteration: 18, Func. Count: 170, Neg. LLF: 122.36186576507204
Iteration: 19, Func. Count: 179, Neg. LLF: 122.36197157825697
Optimization terminated successfully (Exit mode 0)
Current function value: 122.36186574106823
Iterations: 20
Function evaluations: 181
Gradient evaluations: 19
Iteration: 1, Func. Count: 11, Neg. LLF: 125.74433481756665
Iteration: 2, Func. Count: 23, Neg. LLF: 130.64751389455654
Iteration: 3, Func. Count: 34, Neg. LLF: 123.93855422640983
Iteration: 4, Func. Count: 45, Neg. LLF: 123.19842619217121
Iteration: 5, Func. Count: 55, Neg. LLF: 123.33711367107583
Iteration: 6, Func. Count: 66, Neg. LLF: 123.06380720134901
Iteration: 7, Func. Count: 76, Neg. LLF: 122.07130367158736
Iteration: 8, Func. Count: 86, Neg. LLF: 123.1197598753576
Iteration: 9, Func. Count: 97, Neg. LLF: 121.91276448933135
Iteration: 10, Func. Count: 107, Neg. LLF: 121.8836561414237
Iteration: 11, Func. Count: 117, Neg. LLF: 121.87877170444699
Iteration: 12, Func. Count: 127, Neg. LLF: 121.87793893351508
Iteration: 13, Func. Count: 137, Neg. LLF: 121.87790821317344
Iteration: 14, Func. Count: 147, Neg. LLF: 121.87790338153867
Iteration: 15, Func. Count: 157, Neg. LLF: 121.87791270636194
Optimization terminated successfully (Exit mode 0)
Current function value: 121.87790342126024
Iterations: 16
Function evaluations: 158
Gradient evaluations: 15
Iteration: 1, Func. Count: 12, Neg. LLF: 126.07718039769534
Iteration: 2, Func. Count: 25, Neg. LLF: 131.5894891469504
Iteration: 3, Func. Count: 37, Neg. LLF: 124.36588516639681
Iteration: 4, Func. Count: 49, Neg. LLF: 141.48145609399796
Iteration: 5, Func. Count: 62, Neg. LLF: 122.3880348597591
Iteration: 6, Func. Count: 73, Neg. LLF: 121.58207921651646
Iteration: 7, Func. Count: 84, Neg. LLF: 123.633201266773
Iteration: 8, Func. Count: 96, Neg. LLF: 122.23502045250079
Iteration: 9, Func. Count: 108, Neg. LLF: 122.74689618842245
Iteration: 10, Func. Count: 120, Neg. LLF: 121.45867338323333
Iteration: 11, Func. Count: 132, Neg. LLF: 120.3367081531418
Iteration: 12, Func. Count: 143, Neg. LLF: 120.31305095181166
Iteration: 13, Func. Count: 154, Neg. LLF: 120.30701289207666
Iteration: 14, Func. Count: 166, Neg. LLF: 120.22553772612335
Iteration: 15, Func. Count: 177, Neg. LLF: 120.18855414369176
Iteration: 16, Func. Count: 188, Neg. LLF: 120.18105114835144
Iteration: 17, Func. Count: 199, Neg. LLF: 120.17888199879674
Iteration: 18, Func. Count: 210, Neg. LLF: 120.17871992612588
Iteration: 19, Func. Count: 221, Neg. LLF: 120.17871912571985
Optimization terminated successfully (Exit mode 0)
Current function value: 120.17871912571985
Iterations: 19
Function evaluations: 221
Gradient evaluations: 19
Iteration: 1, Func. Count: 9, Neg. LLF: 126.95391597873362
Iteration: 2, Func. Count: 18, Neg. LLF: 134.17966660706165
Iteration: 3, Func. Count: 27, Neg. LLF: 123.59157555515627
Iteration: 4, Func. Count: 35, Neg. LLF: 123.88906540650547
Iteration: 5, Func. Count: 45, Neg. LLF: 123.31872387687044
Iteration: 6, Func. Count: 53, Neg. LLF: 123.25310490177262
Iteration: 7, Func. Count: 61, Neg. LLF: 123.23833817779227
Iteration: 8, Func. Count: 69, Neg. LLF: 123.22839298449698
Iteration: 9, Func. Count: 77, Neg. LLF: 123.22775191821623
Iteration: 10, Func. Count: 85, Neg. LLF: 123.22773193686348
Iteration: 11, Func. Count: 92, Neg. LLF: 123.2277321262866
Optimization terminated successfully (Exit mode 0)
Current function value: 123.22773193686348
Iterations: 11
Function evaluations: 92
Gradient evaluations: 11
Iteration: 1, Func. Count: 10, Neg. LLF: 130.6578106769755
Iteration: 2, Func. Count: 21, Neg. LLF: 128.0008077815546
Iteration: 3, Func. Count: 32, Neg. LLF: 123.57345252977251
Iteration: 4, Func. Count: 41, Neg. LLF: 123.55708739004598
Iteration: 5, Func. Count: 50, Neg. LLF: 123.55507724406523
Iteration: 6, Func. Count: 59, Neg. LLF: 123.5536955356967
Iteration: 7, Func. Count: 68, Neg. LLF: 123.54432402142179
Iteration: 8, Func. Count: 77, Neg. LLF: 123.25956374042383
Iteration: 9, Func. Count: 86, Neg. LLF: 123.24566174414102
Iteration: 10, Func. Count: 95, Neg. LLF: 123.23746743863585
Iteration: 11, Func. Count: 104, Neg. LLF: 123.23379091757089
Iteration: 12, Func. Count: 113, Neg. LLF: 123.232323878972
Iteration: 13, Func. Count: 122, Neg. LLF: 123.23114916275442
Iteration: 14, Func. Count: 131, Neg. LLF: 123.2299016678103
Iteration: 15, Func. Count: 140, Neg. LLF: 123.22887169923992
Iteration: 16, Func. Count: 149, Neg. LLF: 123.22821027522426
Iteration: 17, Func. Count: 158, Neg. LLF: 123.22786304550293
Iteration: 18, Func. Count: 167, Neg. LLF: 123.22774715499551
Iteration: 19, Func. Count: 176, Neg. LLF: 123.22773228790133
Iteration: 20, Func. Count: 185, Neg. LLF: 123.22773181378449
Optimization terminated successfully (Exit mode 0)
Current function value: 123.22773181378449
Iterations: 20
Function evaluations: 185
Gradient evaluations: 20
Iteration: 1, Func. Count: 11, Neg. LLF: 126.53213266256246
Iteration: 2, Func. Count: 23, Neg. LLF: 129.14021325720935
Iteration: 3, Func. Count: 34, Neg. LLF: 123.67623646755403
Iteration: 4, Func. Count: 45, Neg. LLF: 123.5784254656028
Iteration: 5, Func. Count: 56, Neg. LLF: 123.49155903961999
Iteration: 6, Func. Count: 66, Neg. LLF: 123.45694825416545
Iteration: 7, Func. Count: 76, Neg. LLF: 123.45367286355184
Iteration: 8, Func. Count: 86, Neg. LLF: 123.45315620771828
Iteration: 9, Func. Count: 96, Neg. LLF: 123.45133347990041
Iteration: 10, Func. Count: 106, Neg. LLF: 123.4442525355361
Iteration: 11, Func. Count: 116, Neg. LLF: 123.45247516298038
Iteration: 12, Func. Count: 127, Neg. LLF: 124.42720651294854
Iteration: 13, Func. Count: 138, Neg. LLF: 124.16437259075697
Iteration: 14, Func. Count: 149, Neg. LLF: 124.05873838561408
Iteration: 15, Func. Count: 160, Neg. LLF: 123.96413660392341
Iteration: 16, Func. Count: 171, Neg. LLF: 123.82967017687851
Iteration: 17, Func. Count: 182, Neg. LLF: 123.70764694790502
Iteration: 18, Func. Count: 193, Neg. LLF: 123.51538381493164
Iteration: 19, Func. Count: 204, Neg. LLF: 123.27350700531062
Iteration: 20, Func. Count: 214, Neg. LLF: 126.37365898006261
Iteration: 21, Func. Count: 226, Neg. LLF: 123.1098849143038
Iteration: 22, Func. Count: 236, Neg. LLF: 122.81261922443834
Iteration: 23, Func. Count: 246, Neg. LLF: 122.54888293439012
Iteration: 24, Func. Count: 256, Neg. LLF: 122.40503365113055
Iteration: 25, Func. Count: 266, Neg. LLF: 122.39290081629818
Iteration: 26, Func. Count: 276, Neg. LLF: 122.38494763218107
Iteration: 27, Func. Count: 286, Neg. LLF: 122.3803580115221
Iteration: 28, Func. Count: 296, Neg. LLF: 122.37582358219393
Iteration: 29, Func. Count: 306, Neg. LLF: 122.37025644381039
Iteration: 30, Func. Count: 316, Neg. LLF: 122.36444001551814
Iteration: 31, Func. Count: 326, Neg. LLF: 122.362343862527
Iteration: 32, Func. Count: 336, Neg. LLF: 122.3618762794884
Iteration: 33, Func. Count: 346, Neg. LLF: 122.36185933170887
Iteration: 34, Func. Count: 356, Neg. LLF: 122.36187360466933
Optimization terminated successfully (Exit mode 0)
Current function value: 122.36185960617514
Iterations: 35
Function evaluations: 358
Gradient evaluations: 34
Iteration: 1, Func. Count: 12, Neg. LLF: 125.95475070034402
Iteration: 2, Func. Count: 25, Neg. LLF: 130.36345794194992
Iteration: 3, Func. Count: 37, Neg. LLF: 123.98265574692624
Iteration: 4, Func. Count: 49, Neg. LLF: 123.18015581447689
Iteration: 5, Func. Count: 60, Neg. LLF: 123.35610788955267
Iteration: 6, Func. Count: 72, Neg. LLF: 123.06658348786934
Iteration: 7, Func. Count: 83, Neg. LLF: 122.00443026014213
Iteration: 8, Func. Count: 94, Neg. LLF: 122.94433212001877
Iteration: 9, Func. Count: 106, Neg. LLF: 121.9103382980243
Iteration: 10, Func. Count: 118, Neg. LLF: 121.87802612877907
Iteration: 11, Func. Count: 129, Neg. LLF: 121.87790748590994
Iteration: 12, Func. Count: 140, Neg. LLF: 121.87790411931891
Iteration: 13, Func. Count: 150, Neg. LLF: 121.87790404669208
Optimization terminated successfully (Exit mode 0)
Current function value: 121.87790411931891
Iterations: 13
Function evaluations: 150
Gradient evaluations: 13
Iteration: 1, Func. Count: 13, Neg. LLF: 126.13754357114996
Iteration: 2, Func. Count: 27, Neg. LLF: 131.17344735646785
Iteration: 3, Func. Count: 40, Neg. LLF: 122.64654569205331
Iteration: 4, Func. Count: 52, Neg. LLF: 129.69163298084027
Iteration: 5, Func. Count: 65, Neg. LLF: 122.48489606489366
Iteration: 6, Func. Count: 78, Neg. LLF: 129.8502668348656
Iteration: 7, Func. Count: 91, Neg. LLF: 124.71459382933068
Iteration: 8, Func. Count: 104, Neg. LLF: 120.29744028273291
Iteration: 9, Func. Count: 116, Neg. LLF: 120.19206801289255
Iteration: 10, Func. Count: 128, Neg. LLF: 120.18372263932362
Iteration: 11, Func. Count: 141, Neg. LLF: 120.09730581838083
Iteration: 12, Func. Count: 153, Neg. LLF: 120.07272360001271
Iteration: 13, Func. Count: 165, Neg. LLF: 120.06268324701794
Iteration: 14, Func. Count: 177, Neg. LLF: 120.06224431362517
Iteration: 15, Func. Count: 189, Neg. LLF: 120.06220632079922
Iteration: 16, Func. Count: 201, Neg. LLF: 120.06220578689543
Optimization terminated successfully (Exit mode 0)
Current function value: 120.06220578689543
Iterations: 16
Function evaluations: 201
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 126.98370607412849
Iteration: 2, Func. Count: 20, Neg. LLF: 134.5803429512882
Iteration: 3, Func. Count: 30, Neg. LLF: 123.59184207396872
Iteration: 4, Func. Count: 39, Neg. LLF: 123.88853853140539
Iteration: 5, Func. Count: 50, Neg. LLF: 123.31969874682068
Iteration: 6, Func. Count: 59, Neg. LLF: 123.25413313254
Iteration: 7, Func. Count: 68, Neg. LLF: 123.23854970743622
Iteration: 8, Func. Count: 77, Neg. LLF: 123.22847092918381
Iteration: 9, Func. Count: 86, Neg. LLF: 123.22775436770442
Iteration: 10, Func. Count: 95, Neg. LLF: 123.22773196260322
Iteration: 11, Func. Count: 103, Neg. LLF: 123.22773206499488
Optimization terminated successfully (Exit mode 0)
Current function value: 123.22773196260322
Iterations: 11
Function evaluations: 103
Gradient evaluations: 11
Iteration: 1, Func. Count: 11, Neg. LLF: 130.7862099204729
Iteration: 2, Func. Count: 23, Neg. LLF: 127.87160424738559
Iteration: 3, Func. Count: 35, Neg. LLF: 123.5728212844194
Iteration: 4, Func. Count: 45, Neg. LLF: 123.55752879170892
Iteration: 5, Func. Count: 55, Neg. LLF: 123.5554135311334
Iteration: 6, Func. Count: 65, Neg. LLF: 123.55416097274923
Iteration: 7, Func. Count: 75, Neg. LLF: 123.54564304686933
Iteration: 8, Func. Count: 85, Neg. LLF: 123.26423532126287
Iteration: 9, Func. Count: 95, Neg. LLF: 123.24607927687696
Iteration: 10, Func. Count: 105, Neg. LLF: 123.23809854504161
Iteration: 11, Func. Count: 115, Neg. LLF: 123.23387080857026
Iteration: 12, Func. Count: 125, Neg. LLF: 123.23226193712733
Iteration: 13, Func. Count: 135, Neg. LLF: 123.23098205117388
Iteration: 14, Func. Count: 145, Neg. LLF: 123.22975324061177
Iteration: 15, Func. Count: 155, Neg. LLF: 123.2287832707026
Iteration: 16, Func. Count: 165, Neg. LLF: 123.22818615929022
Iteration: 17, Func. Count: 175, Neg. LLF: 123.22786542633747
Iteration: 18, Func. Count: 185, Neg. LLF: 123.22774852250956
Iteration: 19, Func. Count: 195, Neg. LLF: 123.2277324937125
Iteration: 20, Func. Count: 205, Neg. LLF: 123.22773168328497
Optimization terminated successfully (Exit mode 0)
Current function value: 123.22773168328497
Iterations: 20
Function evaluations: 205
Gradient evaluations: 20
Iteration: 1, Func. Count: 12, Neg. LLF: 126.51784120308739
Iteration: 2, Func. Count: 25, Neg. LLF: 129.18864252041138
Iteration: 3, Func. Count: 37, Neg. LLF: 123.6706643357328
Iteration: 4, Func. Count: 49, Neg. LLF: 123.58360204276296
Iteration: 5, Func. Count: 61, Neg. LLF: 123.48595385224671
Iteration: 6, Func. Count: 72, Neg. LLF: 123.45584807864404
Iteration: 7, Func. Count: 83, Neg. LLF: 123.45344401542432
Iteration: 8, Func. Count: 94, Neg. LLF: 123.45294599434536
Iteration: 9, Func. Count: 105, Neg. LLF: 123.44905226482302
Iteration: 10, Func. Count: 116, Neg. LLF: 123.85522219758904
Iteration: 11, Func. Count: 128, Neg. LLF: 125.17982644123101
Iteration: 12, Func. Count: 140, Neg. LLF: 124.86460940734509
Iteration: 13, Func. Count: 152, Neg. LLF: 124.37807153822125
Iteration: 14, Func. Count: 164, Neg. LLF: 123.47820168855408
Iteration: 15, Func. Count: 176, Neg. LLF: 123.42928349937954
Iteration: 16, Func. Count: 188, Neg. LLF: 123.39233562676294
Iteration: 17, Func. Count: 199, Neg. LLF: 123.2923310607638
Iteration: 18, Func. Count: 210, Neg. LLF: 123.18940961733128
Iteration: 19, Func. Count: 221, Neg. LLF: 123.13105978502954
Iteration: 20, Func. Count: 233, Neg. LLF: 124.47306745397078
Iteration: 21, Func. Count: 246, Neg. LLF: 122.70856551138526
Iteration: 22, Func. Count: 257, Neg. LLF: 129.05294783200003
Iteration: 23, Func. Count: 270, Neg. LLF: 122.56248466853746
Iteration: 24, Func. Count: 281, Neg. LLF: 122.48431654324705
Iteration: 25, Func. Count: 292, Neg. LLF: 122.36261253191975
Iteration: 26, Func. Count: 303, Neg. LLF: 122.2425114624374
Iteration: 27, Func. Count: 314, Neg. LLF: 131.15168198262717
Iteration: 28, Func. Count: 327, Neg. LLF: 131.23745307689708
Iteration: 29, Func. Count: 348, Neg. LLF: 129.07349938449667
Iteration: 30, Func. Count: 369, Neg. LLF: 281.72325479073584
Iteration: 31, Func. Count: 382, Neg. LLF: 124.47098224140903
Iteration: 32, Func. Count: 394, Neg. LLF: 122.96999914327469
Iteration: 33, Func. Count: 406, Neg. LLF: 122.20686679197613
Iteration: 34, Func. Count: 417, Neg. LLF: 122.20684363562606
Iteration: 35, Func. Count: 427, Neg. LLF: 122.20684349597819
Optimization terminated successfully (Exit mode 0)
Current function value: 122.20684363562606
Iterations: 36
Function evaluations: 427
Gradient evaluations: 35
Iteration: 1, Func. Count: 13, Neg. LLF: 125.87627358968018
Iteration: 2, Func. Count: 27, Neg. LLF: 130.41534506448681
Iteration: 3, Func. Count: 40, Neg. LLF: 123.98959467983684
Iteration: 4, Func. Count: 53, Neg. LLF: 123.18052025668035
Iteration: 5, Func. Count: 65, Neg. LLF: 123.37166864552475
Iteration: 6, Func. Count: 78, Neg. LLF: 122.80439677571857
Iteration: 7, Func. Count: 90, Neg. LLF: 121.84180673356371
Iteration: 8, Func. Count: 102, Neg. LLF: 143.3122990786762
Iteration: 9, Func. Count: 115, Neg. LLF: 119.97657732973104
Iteration: 10, Func. Count: 127, Neg. LLF: 125.47657254860421
Iteration: 11, Func. Count: 141, Neg. LLF: 121.05374105185898
Iteration: 12, Func. Count: 154, Neg. LLF: 119.72122223337668
Iteration: 13, Func. Count: 167, Neg. LLF: 119.50609160926899
Iteration: 14, Func. Count: 179, Neg. LLF: 119.50563263202814
Iteration: 15, Func. Count: 191, Neg. LLF: 119.50547062649463
Iteration: 16, Func. Count: 203, Neg. LLF: 119.50543598771085
Iteration: 17, Func. Count: 215, Neg. LLF: 119.5054309966838
Iteration: 18, Func. Count: 226, Neg. LLF: 119.50543086772528
Optimization terminated successfully (Exit mode 0)
Current function value: 119.5054309966838
Iterations: 18
Function evaluations: 226
Gradient evaluations: 18
Iteration: 1, Func. Count: 14, Neg. LLF: 126.0108190622362
Iteration: 2, Func. Count: 29, Neg. LLF: 131.12727225393283
Iteration: 3, Func. Count: 43, Neg. LLF: 123.05771711062032
Iteration: 4, Func. Count: 56, Neg. LLF: 123.80576961415315
Iteration: 5, Func. Count: 70, Neg. LLF: 169.45803049876986
Iteration: 6, Func. Count: 84, Neg. LLF: 121.40565321102517
Iteration: 7, Func. Count: 97, Neg. LLF: 126.02279500466433
Iteration: 8, Func. Count: 112, Neg. LLF: 125.5516536047397
Iteration: 9, Func. Count: 127, Neg. LLF: 120.2844149492078
Iteration: 10, Func. Count: 140, Neg. LLF: 120.57582104312155
Iteration: 11, Func. Count: 154, Neg. LLF: 120.1236493975582
Iteration: 12, Func. Count: 167, Neg. LLF: 120.0893003552819
Iteration: 13, Func. Count: 180, Neg. LLF: 120.10778797001619
Iteration: 14, Func. Count: 194, Neg. LLF: 120.06601697636059
Iteration: 15, Func. Count: 207, Neg. LLF: 120.06227348455054
Iteration: 16, Func. Count: 220, Neg. LLF: 120.06222926409181
Iteration: 17, Func. Count: 233, Neg. LLF: 120.0622130809389
Iteration: 18, Func. Count: 246, Neg. LLF: 120.06220718893277
Iteration: 19, Func. Count: 259, Neg. LLF: 120.06220563412688
Iteration: 20, Func. Count: 271, Neg. LLF: 120.0622055877745
Optimization terminated successfully (Exit mode 0)
Current function value: 120.06220563412688
Iterations: 20
Function evaluations: 271
Gradient evaluations: 20
Iteration: 1, Func. Count: 11, Neg. LLF: 126.94737081724388
Iteration: 2, Func. Count: 22, Neg. LLF: 134.20718475075236
Iteration: 3, Func. Count: 33, Neg. LLF: 123.59244864182482
Iteration: 4, Func. Count: 43, Neg. LLF: 123.88623429941569
Iteration: 5, Func. Count: 55, Neg. LLF: 123.31811443915251
Iteration: 6, Func. Count: 65, Neg. LLF: 123.25321478022819
Iteration: 7, Func. Count: 75, Neg. LLF: 123.238862568872
Iteration: 8, Func. Count: 85, Neg. LLF: 123.22844008377342
Iteration: 9, Func. Count: 95, Neg. LLF: 123.22775504506804
Iteration: 10, Func. Count: 105, Neg. LLF: 123.22773194867423
Iteration: 11, Func. Count: 114, Neg. LLF: 123.22773209645966
Optimization terminated successfully (Exit mode 0)
Current function value: 123.22773194867423
Iterations: 11
Function evaluations: 114
Gradient evaluations: 11
Iteration: 1, Func. Count: 12, Neg. LLF: 130.73143528849712
Iteration: 2, Func. Count: 25, Neg. LLF: 128.01452035385762
Iteration: 3, Func. Count: 38, Neg. LLF: 123.57616722310729
Iteration: 4, Func. Count: 49, Neg. LLF: 123.55743162184541
Iteration: 5, Func. Count: 60, Neg. LLF: 123.55579249017202
Iteration: 6, Func. Count: 71, Neg. LLF: 123.55447340323508
Iteration: 7, Func. Count: 82, Neg. LLF: 123.54335705470133
Iteration: 8, Func. Count: 93, Neg. LLF: 123.28793922219977
Iteration: 9, Func. Count: 104, Neg. LLF: 123.2537398185916
Iteration: 10, Func. Count: 115, Neg. LLF: 123.24564571022763
Iteration: 11, Func. Count: 126, Neg. LLF: 123.23878117520836
Iteration: 12, Func. Count: 137, Neg. LLF: 123.23465393929503
Iteration: 13, Func. Count: 148, Neg. LLF: 123.23276643298021
Iteration: 14, Func. Count: 159, Neg. LLF: 123.2309939779473
Iteration: 15, Func. Count: 170, Neg. LLF: 123.22911437306846
Iteration: 16, Func. Count: 181, Neg. LLF: 123.22810006933172
Iteration: 17, Func. Count: 192, Neg. LLF: 123.22782828558694
Iteration: 18, Func. Count: 203, Neg. LLF: 123.22775064813449
Iteration: 19, Func. Count: 214, Neg. LLF: 123.2277340753568
Iteration: 20, Func. Count: 225, Neg. LLF: 123.22773179586201
Iteration: 21, Func. Count: 235, Neg. LLF: 123.22773181388062
Optimization terminated successfully (Exit mode 0)
Current function value: 123.22773179586201
Iterations: 21
Function evaluations: 235
Gradient evaluations: 21
Iteration: 1, Func. Count: 13, Neg. LLF: 126.51644460773088
Iteration: 2, Func. Count: 27, Neg. LLF: 129.19547804768726
Iteration: 3, Func. Count: 40, Neg. LLF: 123.67679276705488
Iteration: 4, Func. Count: 53, Neg. LLF: 123.57362783871355
Iteration: 5, Func. Count: 66, Neg. LLF: 123.4874467896408
Iteration: 6, Func. Count: 78, Neg. LLF: 123.45614286262672
Iteration: 7, Func. Count: 90, Neg. LLF: 123.45343592646759
Iteration: 8, Func. Count: 102, Neg. LLF: 123.45292133568212
Iteration: 9, Func. Count: 114, Neg. LLF: 123.4495011912174
Iteration: 10, Func. Count: 126, Neg. LLF: 123.44850669164163
Iteration: 11, Func. Count: 139, Neg. LLF: 123.46546807211065
Iteration: 12, Func. Count: 152, Neg. LLF: 124.32979192508462
Iteration: 13, Func. Count: 165, Neg. LLF: 124.09423673371128
Iteration: 14, Func. Count: 178, Neg. LLF: 123.93804868693175
Iteration: 15, Func. Count: 191, Neg. LLF: 123.80760365243525
Iteration: 16, Func. Count: 204, Neg. LLF: 123.69543029695797
Iteration: 17, Func. Count: 217, Neg. LLF: 123.55995770453212
Iteration: 18, Func. Count: 230, Neg. LLF: 123.33866341652516
Iteration: 19, Func. Count: 242, Neg. LLF: 129.61509823667927
Iteration: 20, Func. Count: 256, Neg. LLF: 123.11844555676693
Iteration: 21, Func. Count: 268, Neg. LLF: 122.63915674778376
Iteration: 22, Func. Count: 280, Neg. LLF: 122.43266312865595
Iteration: 23, Func. Count: 292, Neg. LLF: 122.31539461963072
Iteration: 24, Func. Count: 304, Neg. LLF: 122.20829469575884
Iteration: 25, Func. Count: 316, Neg. LLF: 122.20705723684014
Iteration: 26, Func. Count: 328, Neg. LLF: 122.2068604420155
Iteration: 27, Func. Count: 340, Neg. LLF: 122.20684484266013
Iteration: 28, Func. Count: 352, Neg. LLF: 122.20684343608438
Optimization terminated successfully (Exit mode 0)
Current function value: 122.20684402000576
Iterations: 28
Function evaluations: 353
Gradient evaluations: 28
Iteration: 1, Func. Count: 14, Neg. LLF: 125.97340328753774
Iteration: 2, Func. Count: 29, Neg. LLF: 130.34801923230353
Iteration: 3, Func. Count: 43, Neg. LLF: 123.97643002006312
Iteration: 4, Func. Count: 57, Neg. LLF: 123.18518935147235
Iteration: 5, Func. Count: 70, Neg. LLF: 123.37412670963705
Iteration: 6, Func. Count: 84, Neg. LLF: 122.78624699864042
Iteration: 7, Func. Count: 97, Neg. LLF: 121.89858834605211
Iteration: 8, Func. Count: 110, Neg. LLF: 136.6895613438677
Iteration: 9, Func. Count: 124, Neg. LLF: 119.79246937399769
Iteration: 10, Func. Count: 137, Neg. LLF: 121.56862791433929
Iteration: 11, Func. Count: 151, Neg. LLF: 119.95101965549891
Iteration: 12, Func. Count: 165, Neg. LLF: 119.78921397256937
Iteration: 13, Func. Count: 179, Neg. LLF: 119.50655139093037
Iteration: 14, Func. Count: 192, Neg. LLF: 119.50576901770991
Iteration: 15, Func. Count: 205, Neg. LLF: 119.50545913158382
Iteration: 16, Func. Count: 218, Neg. LLF: 119.50543240404723
Iteration: 17, Func. Count: 230, Neg. LLF: 119.5054322752586
Optimization terminated successfully (Exit mode 0)
Current function value: 119.50543240404723
Iterations: 17
Function evaluations: 230
Gradient evaluations: 17
Iteration: 1, Func. Count: 15, Neg. LLF: 126.00631456556435
Iteration: 2, Func. Count: 31, Neg. LLF: 131.0705585067984
Iteration: 3, Func. Count: 46, Neg. LLF: 123.79855848608065
Iteration: 4, Func. Count: 63, Neg. LLF: 130.09846836541217
Iteration: 5, Func. Count: 78, Neg. LLF: 122.19984923464212
Iteration: 6, Func. Count: 92, Neg. LLF: 122.01780971442885
Iteration: 7, Func. Count: 107, Neg. LLF: 120.84396100601109
Iteration: 8, Func. Count: 121, Neg. LLF: 123.21299987318274
Iteration: 9, Func. Count: 136, Neg. LLF: 122.0005792594568
Iteration: 10, Func. Count: 151, Neg. LLF: 120.15428832211582
Iteration: 11, Func. Count: 165, Neg. LLF: 120.12103072205512
Iteration: 12, Func. Count: 179, Neg. LLF: 120.0837935066641
Iteration: 13, Func. Count: 193, Neg. LLF: 120.0752052105955
Iteration: 14, Func. Count: 207, Neg. LLF: 120.06768502730891
Iteration: 15, Func. Count: 221, Neg. LLF: 120.06281462344218
Iteration: 16, Func. Count: 235, Neg. LLF: 120.06228366162797
Iteration: 17, Func. Count: 249, Neg. LLF: 120.06220895790922
Iteration: 18, Func. Count: 263, Neg. LLF: 120.06220558897282
Iteration: 19, Func. Count: 276, Neg. LLF: 120.06220554258523
Optimization terminated successfully (Exit mode 0)
Current function value: 120.06220558897282
Iterations: 19
Function evaluations: 276
Gradient evaluations: 19
Iteration: 1, Func. Count: 8, Neg. LLF: 127.58519591914416
Iteration: 2, Func. Count: 16, Neg. LLF: 138.12324852085078
Iteration: 3, Func. Count: 24, Neg. LLF: 124.0325287747315
Iteration: 4, Func. Count: 31, Neg. LLF: 123.5279847432138
Iteration: 5, Func. Count: 38, Neg. LLF: 123.59991718367229
Iteration: 6, Func. Count: 46, Neg. LLF: 123.44634881836606
Iteration: 7, Func. Count: 54, Neg. LLF: 123.44728428722937
Iteration: 8, Func. Count: 62, Neg. LLF: 123.42622920320642
Iteration: 9, Func. Count: 69, Neg. LLF: 123.42597679106935
Iteration: 10, Func. Count: 75, Neg. LLF: 123.42597699071509
Optimization terminated successfully (Exit mode 0)
Current function value: 123.42597679106935
Iterations: 10
Function evaluations: 75
Gradient evaluations: 10
Iteration: 1, Func. Count: 9, Neg. LLF: 137.6930490348404
Iteration: 2, Func. Count: 18, Neg. LLF: 151.9310998157929
Iteration: 3, Func. Count: 27, Neg. LLF: 131.94290307347373
Iteration: 4, Func. Count: 36, Neg. LLF: 122.78591993752055
Iteration: 5, Func. Count: 44, Neg. LLF: 122.82424046474542
Iteration: 6, Func. Count: 53, Neg. LLF: 122.57540692809356
Iteration: 7, Func. Count: 61, Neg. LLF: 122.50840068323419
Iteration: 8, Func. Count: 69, Neg. LLF: 122.515299185245
Iteration: 9, Func. Count: 78, Neg. LLF: 122.49568017622191
Iteration: 10, Func. Count: 86, Neg. LLF: 122.49501492630668
Iteration: 11, Func. Count: 94, Neg. LLF: 122.49493633992715
Iteration: 12, Func. Count: 101, Neg. LLF: 122.49493633743916
Optimization terminated successfully (Exit mode 0)
Current function value: 122.49493633992715
Iterations: 12
Function evaluations: 101
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 147.50558819304365
Iteration: 2, Func. Count: 21, Neg. LLF: 123.57829756345143
Iteration: 3, Func. Count: 30, Neg. LLF: 123.57712655108006
Iteration: 4, Func. Count: 39, Neg. LLF: 123.5769839795243
Iteration: 5, Func. Count: 48, Neg. LLF: 123.57697183362383
Iteration: 6, Func. Count: 57, Neg. LLF: 123.57691109161921
Iteration: 7, Func. Count: 66, Neg. LLF: 123.57661652364723
Iteration: 8, Func. Count: 75, Neg. LLF: 123.57405667813676
Iteration: 9, Func. Count: 84, Neg. LLF: 123.57336801245381
Iteration: 10, Func. Count: 93, Neg. LLF: 123.56938499062444
Iteration: 11, Func. Count: 102, Neg. LLF: 123.55255619356424
Iteration: 12, Func. Count: 111, Neg. LLF: 123.53640689149161
Iteration: 13, Func. Count: 120, Neg. LLF: 123.53085891526631
Iteration: 14, Func. Count: 129, Neg. LLF: 123.51124244660593
Iteration: 15, Func. Count: 138, Neg. LLF: 135.0359452380792
Iteration: 16, Func. Count: 148, Neg. LLF: 141.23448439667578
Iteration: 17, Func. Count: 159, Neg. LLF: 123.4660657643224
Iteration: 18, Func. Count: 169, Neg. LLF: 123.6271575499377
Iteration: 19, Func. Count: 179, Neg. LLF: 123.42542750802411
Iteration: 20, Func. Count: 189, Neg. LLF: 122.8434260115687
Iteration: 21, Func. Count: 199, Neg. LLF: 122.5941515010798
Iteration: 22, Func. Count: 208, Neg. LLF: 122.55625822707188
Iteration: 23, Func. Count: 217, Neg. LLF: 122.56028680030899
Iteration: 24, Func. Count: 227, Neg. LLF: 122.49882119948441
Iteration: 25, Func. Count: 236, Neg. LLF: 122.4955529962367
Iteration: 26, Func. Count: 245, Neg. LLF: 122.49498895400998
Iteration: 27, Func. Count: 254, Neg. LLF: 122.49493780775141
Iteration: 28, Func. Count: 263, Neg. LLF: 122.49493631756026
Iteration: 29, Func. Count: 271, Neg. LLF: 122.49493637991537
Optimization terminated successfully (Exit mode 0)
Current function value: 122.49493631756026
Iterations: 30
Function evaluations: 271
Gradient evaluations: 29
Iteration: 1, Func. Count: 11, Neg. LLF: 132.36624902302634
Iteration: 2, Func. Count: 23, Neg. LLF: 123.58387203658981
Iteration: 3, Func. Count: 33, Neg. LLF: 123.55474819931878
Iteration: 4, Func. Count: 43, Neg. LLF: 123.85833711930347
Iteration: 5, Func. Count: 54, Neg. LLF: 123.53954058951325
Iteration: 6, Func. Count: 64, Neg. LLF: 123.53643728087658
Iteration: 7, Func. Count: 74, Neg. LLF: 123.53613455211575
Iteration: 8, Func. Count: 84, Neg. LLF: 123.53599656529214
Iteration: 9, Func. Count: 94, Neg. LLF: 123.53597329083709
Iteration: 10, Func. Count: 104, Neg. LLF: 123.53592912993713
Iteration: 11, Func. Count: 114, Neg. LLF: 123.53581994104266
Iteration: 12, Func. Count: 124, Neg. LLF: 123.53551182056705
Iteration: 13, Func. Count: 134, Neg. LLF: 123.53415629330003
Iteration: 14, Func. Count: 144, Neg. LLF: 123.5154892963087
Iteration: 15, Func. Count: 154, Neg. LLF: 123.4724137446378
Iteration: 16, Func. Count: 164, Neg. LLF: 123.45248611286719
Iteration: 17, Func. Count: 174, Neg. LLF: 123.43381521625004
Iteration: 18, Func. Count: 184, Neg. LLF: 123.42988532416864
Iteration: 19, Func. Count: 194, Neg. LLF: 123.4277110293772
Iteration: 20, Func. Count: 204, Neg. LLF: 123.4265411877867
Iteration: 21, Func. Count: 214, Neg. LLF: 123.42614101969774
Iteration: 22, Func. Count: 224, Neg. LLF: 123.42601328362865
Iteration: 23, Func. Count: 234, Neg. LLF: 123.42597703898116
Iteration: 24, Func. Count: 244, Neg. LLF: 123.42694434917776
Optimization terminated successfully (Exit mode 0)
Current function value: 123.42597656786089
Iterations: 25
Function evaluations: 246
Gradient evaluations: 24
Iteration: 1, Func. Count: 12, Neg. LLF: 126.22961576225092
Iteration: 2, Func. Count: 26, Neg. LLF: 126.94906009783772
Iteration: 3, Func. Count: 39, Neg. LLF: 122.71726670704922
Iteration: 4, Func. Count: 50, Neg. LLF: 122.40615804637439
Iteration: 5, Func. Count: 61, Neg. LLF: 121.76177447162675
Iteration: 6, Func. Count: 72, Neg. LLF: 122.44738273568716
Iteration: 7, Func. Count: 84, Neg. LLF: 121.37329561074074
Iteration: 8, Func. Count: 96, Neg. LLF: 121.11725015208292
Iteration: 9, Func. Count: 108, Neg. LLF: 122.86950554968483
Iteration: 10, Func. Count: 120, Neg. LLF: 120.49050770460656
Iteration: 11, Func. Count: 131, Neg. LLF: 120.46915089751197
Iteration: 12, Func. Count: 142, Neg. LLF: 120.43372693149216
Iteration: 13, Func. Count: 153, Neg. LLF: 120.40432802871916
Iteration: 14, Func. Count: 164, Neg. LLF: 120.40122748213054
Iteration: 15, Func. Count: 175, Neg. LLF: 120.40106783243127
Iteration: 16, Func. Count: 186, Neg. LLF: 120.40103076411715
Iteration: 17, Func. Count: 196, Neg. LLF: 120.40103076411737
Optimization terminated successfully (Exit mode 0)
Current function value: 120.40103076411715
Iterations: 17
Function evaluations: 196
Gradient evaluations: 17
Iteration: 1, Func. Count: 9, Neg. LLF: 131.13157420612745
Iteration: 2, Func. Count: 18, Neg. LLF: 140.3356545297326
Iteration: 3, Func. Count: 27, Neg. LLF: 123.69444593449029
Iteration: 4, Func. Count: 35, Neg. LLF: 124.04082474736916
Iteration: 5, Func. Count: 46, Neg. LLF: 123.29990099479686
Iteration: 6, Func. Count: 54, Neg. LLF: 123.2556925046861
Iteration: 7, Func. Count: 62, Neg. LLF: 123.2320067189783
Iteration: 8, Func. Count: 70, Neg. LLF: 123.22807264307781
Iteration: 9, Func. Count: 78, Neg. LLF: 123.22776852546367
Iteration: 10, Func. Count: 86, Neg. LLF: 123.22773232276188
Iteration: 11, Func. Count: 94, Neg. LLF: 123.22773159266787
Optimization terminated successfully (Exit mode 0)
Current function value: 123.22773159266787
Iterations: 11
Function evaluations: 94
Gradient evaluations: 11
Iteration: 1, Func. Count: 10, Neg. LLF: 128.60813592831352
Iteration: 2, Func. Count: 21, Neg. LLF: 128.31408332607688
Iteration: 3, Func. Count: 32, Neg. LLF: 123.67433761229924
Iteration: 4, Func. Count: 41, Neg. LLF: 123.57347762119154
Iteration: 5, Func. Count: 50, Neg. LLF: 124.93930846572766
Iteration: 6, Func. Count: 60, Neg. LLF: 123.55740590384227
Iteration: 7, Func. Count: 69, Neg. LLF: 123.55567220206697
Iteration: 8, Func. Count: 78, Neg. LLF: 123.55233919439159
Iteration: 9, Func. Count: 87, Neg. LLF: 124.24042455583968
Iteration: 10, Func. Count: 97, Neg. LLF: 123.59046714307948
Iteration: 11, Func. Count: 107, Neg. LLF: 123.4965178219967
Iteration: 12, Func. Count: 116, Neg. LLF: 123.38491333037835
Iteration: 13, Func. Count: 125, Neg. LLF: 123.11467352940448
Iteration: 14, Func. Count: 134, Neg. LLF: 122.48302071510264
Iteration: 15, Func. Count: 143, Neg. LLF: 122.5095868276713
Iteration: 16, Func. Count: 153, Neg. LLF: 122.29215018494898
Iteration: 17, Func. Count: 163, Neg. LLF: 122.27123902868686
Iteration: 18, Func. Count: 172, Neg. LLF: 122.27052828012029
Iteration: 19, Func. Count: 181, Neg. LLF: 122.27051683510618
Iteration: 20, Func. Count: 189, Neg. LLF: 122.27051681190962
Optimization terminated successfully (Exit mode 0)
Current function value: 122.27051683510618
Iterations: 20
Function evaluations: 189
Gradient evaluations: 20
Iteration: 1, Func. Count: 11, Neg. LLF: 126.38330856047443
Iteration: 2, Func. Count: 23, Neg. LLF: 129.44324341521647
Iteration: 3, Func. Count: 34, Neg. LLF: 123.68482957608019
Iteration: 4, Func. Count: 45, Neg. LLF: 123.5758393455979
Iteration: 5, Func. Count: 56, Neg. LLF: 123.46700366838135
Iteration: 6, Func. Count: 66, Neg. LLF: 123.45424199074121
Iteration: 7, Func. Count: 76, Neg. LLF: 123.4533113755911
Iteration: 8, Func. Count: 86, Neg. LLF: 123.45266817886568
Iteration: 9, Func. Count: 96, Neg. LLF: 123.4459794015475
Iteration: 10, Func. Count: 106, Neg. LLF: 123.33247456545939
Iteration: 11, Func. Count: 116, Neg. LLF: 123.36793210561841
Iteration: 12, Func. Count: 127, Neg. LLF: 123.08415198489698
Iteration: 13, Func. Count: 137, Neg. LLF: 122.60571028275318
Iteration: 14, Func. Count: 147, Neg. LLF: 122.47095537378394
Iteration: 15, Func. Count: 157, Neg. LLF: 122.39675874892158
Iteration: 16, Func. Count: 167, Neg. LLF: 122.36774416696844
Iteration: 17, Func. Count: 177, Neg. LLF: 122.36276605904114
Iteration: 18, Func. Count: 187, Neg. LLF: 122.36188877879208
Iteration: 19, Func. Count: 197, Neg. LLF: 122.36186570497041
Iteration: 20, Func. Count: 206, Neg. LLF: 122.36186560801332
Optimization terminated successfully (Exit mode 0)
Current function value: 122.36186570497041
Iterations: 20
Function evaluations: 206
Gradient evaluations: 20
Iteration: 1, Func. Count: 12, Neg. LLF: 125.8806325259341
Iteration: 2, Func. Count: 25, Neg. LLF: 130.59496546543187
Iteration: 3, Func. Count: 37, Neg. LLF: 123.91182360220616
Iteration: 4, Func. Count: 49, Neg. LLF: 123.2141102519409
Iteration: 5, Func. Count: 60, Neg. LLF: 123.32067412176703
Iteration: 6, Func. Count: 72, Neg. LLF: 123.06734817963626
Iteration: 7, Func. Count: 83, Neg. LLF: 122.11350596334653
Iteration: 8, Func. Count: 94, Neg. LLF: 121.93509656916223
Iteration: 9, Func. Count: 105, Neg. LLF: 122.03161420779017
Iteration: 10, Func. Count: 117, Neg. LLF: 121.8832952599235
Iteration: 11, Func. Count: 128, Neg. LLF: 121.87878281373308
Iteration: 12, Func. Count: 139, Neg. LLF: 121.87797402866538
Iteration: 13, Func. Count: 150, Neg. LLF: 121.87790508407512
Iteration: 14, Func. Count: 161, Neg. LLF: 121.87790440382204
Optimization terminated successfully (Exit mode 0)
Current function value: 121.87790440382204
Iterations: 14
Function evaluations: 161
Gradient evaluations: 14
Iteration: 1, Func. Count: 13, Neg. LLF: 125.92916172018576
Iteration: 2, Func. Count: 27, Neg. LLF: 131.54924078873645
Iteration: 3, Func. Count: 40, Neg. LLF: 124.61983726787706
Iteration: 4, Func. Count: 53, Neg. LLF: 140.49913094138935
Iteration: 5, Func. Count: 67, Neg. LLF: 122.3875214419348
Iteration: 6, Func. Count: 79, Neg. LLF: 121.52431620603892
Iteration: 7, Func. Count: 91, Neg. LLF: 123.27415325359021
Iteration: 8, Func. Count: 104, Neg. LLF: 121.94820717984854
Iteration: 9, Func. Count: 117, Neg. LLF: 123.96578300897191
Iteration: 10, Func. Count: 130, Neg. LLF: 121.63277176863512
Iteration: 11, Func. Count: 143, Neg. LLF: 120.343889957077
Iteration: 12, Func. Count: 155, Neg. LLF: 120.3256047365828
Iteration: 13, Func. Count: 167, Neg. LLF: 120.28232453432624
Iteration: 14, Func. Count: 179, Neg. LLF: 120.22617589955597
Iteration: 15, Func. Count: 191, Neg. LLF: 120.19335803663837
Iteration: 16, Func. Count: 203, Neg. LLF: 120.18021281399895
Iteration: 17, Func. Count: 215, Neg. LLF: 120.17876385741246
Iteration: 18, Func. Count: 227, Neg. LLF: 120.17872517925373
Iteration: 19, Func. Count: 239, Neg. LLF: 120.17871923558421
Iteration: 20, Func. Count: 250, Neg. LLF: 120.17871921857828
Optimization terminated successfully (Exit mode 0)
Current function value: 120.17871923558421
Iterations: 20
Function evaluations: 250
Gradient evaluations: 20
Iteration: 1, Func. Count: 10, Neg. LLF: 127.39898450416948
Iteration: 2, Func. Count: 20, Neg. LLF: 136.88039484552914
Iteration: 3, Func. Count: 30, Neg. LLF: 123.6193172271212
Iteration: 4, Func. Count: 39, Neg. LLF: 123.92935006717659
Iteration: 5, Func. Count: 50, Neg. LLF: 123.3686835252709
Iteration: 6, Func. Count: 59, Neg. LLF: 123.3164881996542
Iteration: 7, Func. Count: 68, Neg. LLF: 123.24577247245023
Iteration: 8, Func. Count: 77, Neg. LLF: 123.23127907438516
Iteration: 9, Func. Count: 86, Neg. LLF: 123.22790965376261
Iteration: 10, Func. Count: 95, Neg. LLF: 123.2277324992841
Iteration: 11, Func. Count: 104, Neg. LLF: 123.22773158526466
Optimization terminated successfully (Exit mode 0)
Current function value: 123.22773158526466
Iterations: 11
Function evaluations: 104
Gradient evaluations: 11
Iteration: 1, Func. Count: 11, Neg. LLF: 128.81935856736658
Iteration: 2, Func. Count: 23, Neg. LLF: 128.17405473304325
Iteration: 3, Func. Count: 35, Neg. LLF: 123.7077581589633
Iteration: 4, Func. Count: 45, Neg. LLF: 123.59714892110989
Iteration: 5, Func. Count: 55, Neg. LLF: 124.3357163167423
Iteration: 6, Func. Count: 66, Neg. LLF: 123.55629005887538
Iteration: 7, Func. Count: 76, Neg. LLF: 123.60737900849713
Iteration: 8, Func. Count: 87, Neg. LLF: 123.55190723114609
Iteration: 9, Func. Count: 97, Neg. LLF: 123.54486496132712
Iteration: 10, Func. Count: 107, Neg. LLF: 123.38834486306435
Iteration: 11, Func. Count: 117, Neg. LLF: 122.45007265327462
Iteration: 12, Func. Count: 127, Neg. LLF: 122.3730089150627
Iteration: 13, Func. Count: 137, Neg. LLF: 122.44372747422548
Iteration: 14, Func. Count: 148, Neg. LLF: 122.31197502225486
Iteration: 15, Func. Count: 159, Neg. LLF: 122.27203965849786
Iteration: 16, Func. Count: 169, Neg. LLF: 122.27053293712753
Iteration: 17, Func. Count: 179, Neg. LLF: 122.27051755029419
Iteration: 18, Func. Count: 189, Neg. LLF: 122.27051670328831
Optimization terminated successfully (Exit mode 0)
Current function value: 122.27051670328831
Iterations: 18
Function evaluations: 189
Gradient evaluations: 18
Iteration: 1, Func. Count: 12, Neg. LLF: 126.53356996487348
Iteration: 2, Func. Count: 25, Neg. LLF: 129.1907368586256
Iteration: 3, Func. Count: 37, Neg. LLF: 123.67703163874472
Iteration: 4, Func. Count: 49, Neg. LLF: 123.57141517407172
Iteration: 5, Func. Count: 61, Neg. LLF: 123.4874458256122
Iteration: 6, Func. Count: 72, Neg. LLF: 123.45631099079371
Iteration: 7, Func. Count: 83, Neg. LLF: 123.45348363172803
Iteration: 8, Func. Count: 94, Neg. LLF: 123.45296700369833
Iteration: 9, Func. Count: 105, Neg. LLF: 123.45011054211355
Iteration: 10, Func. Count: 116, Neg. LLF: 123.44475366221853
Iteration: 11, Func. Count: 127, Neg. LLF: 123.42567297100446
Iteration: 12, Func. Count: 138, Neg. LLF: 122.70903098437718
Iteration: 13, Func. Count: 149, Neg. LLF: 123.22155030252583
Iteration: 14, Func. Count: 162, Neg. LLF: 122.55380959556072
Iteration: 15, Func. Count: 173, Neg. LLF: 122.37176832741824
Iteration: 16, Func. Count: 184, Neg. LLF: 122.36321161469215
Iteration: 17, Func. Count: 195, Neg. LLF: 122.36198066843075
Iteration: 18, Func. Count: 206, Neg. LLF: 122.3618823012471
Iteration: 19, Func. Count: 217, Neg. LLF: 122.36186690772774
Iteration: 20, Func. Count: 228, Neg. LLF: 122.3618661090861
Optimization terminated successfully (Exit mode 0)
Current function value: 122.3618661090861
Iterations: 20
Function evaluations: 228
Gradient evaluations: 20
Iteration: 1, Func. Count: 13, Neg. LLF: 126.02131533450185
Iteration: 2, Func. Count: 27, Neg. LLF: 130.32584964555244
Iteration: 3, Func. Count: 40, Neg. LLF: 123.97059809031083
Iteration: 4, Func. Count: 53, Neg. LLF: 123.19092083232249
Iteration: 5, Func. Count: 65, Neg. LLF: 123.3764306130233
Iteration: 6, Func. Count: 78, Neg. LLF: 123.07499186577289
Iteration: 7, Func. Count: 90, Neg. LLF: 122.13237788044513
Iteration: 8, Func. Count: 102, Neg. LLF: 122.92072315736858
Iteration: 9, Func. Count: 115, Neg. LLF: 121.88583215074918
Iteration: 10, Func. Count: 127, Neg. LLF: 121.87863427158884
Iteration: 11, Func. Count: 139, Neg. LLF: 121.8779517763485
Iteration: 12, Func. Count: 151, Neg. LLF: 121.87790602395445
Iteration: 13, Func. Count: 163, Neg. LLF: 121.87790359066162
Iteration: 14, Func. Count: 174, Neg. LLF: 121.87790351816923
Optimization terminated successfully (Exit mode 0)
Current function value: 121.87790359066162
Iterations: 15
Function evaluations: 174
Gradient evaluations: 14
Iteration: 1, Func. Count: 14, Neg. LLF: 126.01122042708738
Iteration: 2, Func. Count: 29, Neg. LLF: 131.13563228841838
Iteration: 3, Func. Count: 43, Neg. LLF: 123.03339734308445
Iteration: 4, Func. Count: 56, Neg. LLF: 122.4443460378854
Iteration: 5, Func. Count: 69, Neg. LLF: 803.9716861802739
Iteration: 6, Func. Count: 83, Neg. LLF: 121.75409408597591
Iteration: 7, Func. Count: 97, Neg. LLF: 125.31311872278077
Iteration: 8, Func. Count: 112, Neg. LLF: 120.24455387609208
Iteration: 9, Func. Count: 125, Neg. LLF: 120.1892593019233
Iteration: 10, Func. Count: 138, Neg. LLF: 120.15038502888598
Iteration: 11, Func. Count: 151, Neg. LLF: 120.09451358544963
Iteration: 12, Func. Count: 164, Neg. LLF: 120.08956827294766
Iteration: 13, Func. Count: 178, Neg. LLF: 120.06333116999578
Iteration: 14, Func. Count: 191, Neg. LLF: 120.06275958868223
Iteration: 15, Func. Count: 204, Neg. LLF: 120.06222376010378
Iteration: 16, Func. Count: 217, Neg. LLF: 120.06220907439199
Iteration: 17, Func. Count: 230, Neg. LLF: 120.06220550826822
Iteration: 18, Func. Count: 242, Neg. LLF: 120.06220546187852
Optimization terminated successfully (Exit mode 0)
Current function value: 120.06220550826822
Iterations: 18
Function evaluations: 242
Gradient evaluations: 18
Iteration: 1, Func. Count: 11, Neg. LLF: 126.96900641807139
Iteration: 2, Func. Count: 22, Neg. LLF: 135.74500782700773
Iteration: 3, Func. Count: 33, Neg. LLF: 123.62688146856168
Iteration: 4, Func. Count: 43, Neg. LLF: 123.90670049213897
Iteration: 5, Func. Count: 55, Neg. LLF: 123.35635257439534
Iteration: 6, Func. Count: 65, Neg. LLF: 123.27436003892376
Iteration: 7, Func. Count: 75, Neg. LLF: 123.23597213622506
Iteration: 8, Func. Count: 85, Neg. LLF: 123.22853926483288
Iteration: 9, Func. Count: 95, Neg. LLF: 123.22776953966813
Iteration: 10, Func. Count: 105, Neg. LLF: 123.22773246136607
Iteration: 11, Func. Count: 115, Neg. LLF: 123.22773158694416
Optimization terminated successfully (Exit mode 0)
Current function value: 123.22773158694416
Iterations: 11
Function evaluations: 115
Gradient evaluations: 11
Iteration: 1, Func. Count: 12, Neg. LLF: 128.40060352570234
Iteration: 2, Func. Count: 25, Neg. LLF: 128.23268937540553
Iteration: 3, Func. Count: 38, Neg. LLF: 123.77780835486955
Iteration: 4, Func. Count: 50, Neg. LLF: 123.59245466821261
Iteration: 5, Func. Count: 61, Neg. LLF: 123.58967022754297
Iteration: 6, Func. Count: 73, Neg. LLF: 123.54836283255503
Iteration: 7, Func. Count: 84, Neg. LLF: 123.53362653740702
Iteration: 8, Func. Count: 95, Neg. LLF: 123.51107247777252
Iteration: 9, Func. Count: 106, Neg. LLF: 123.39770232839422
Iteration: 10, Func. Count: 117, Neg. LLF: 122.49280210063718
Iteration: 11, Func. Count: 128, Neg. LLF: 123.49503310956776
Iteration: 12, Func. Count: 140, Neg. LLF: 122.34867053267436
Iteration: 13, Func. Count: 152, Neg. LLF: 122.27685445093373
Iteration: 14, Func. Count: 163, Neg. LLF: 122.27431346847153
Iteration: 15, Func. Count: 174, Neg. LLF: 122.27137480821527
Iteration: 16, Func. Count: 185, Neg. LLF: 122.27058059486644
Iteration: 17, Func. Count: 196, Neg. LLF: 122.27051953332318
Iteration: 18, Func. Count: 207, Neg. LLF: 122.2705167184126
Iteration: 19, Func. Count: 217, Neg. LLF: 122.27051669530789
Optimization terminated successfully (Exit mode 0)
Current function value: 122.2705167184126
Iterations: 19
Function evaluations: 217
Gradient evaluations: 19
Iteration: 1, Func. Count: 13, Neg. LLF: 126.51570488504795
Iteration: 2, Func. Count: 27, Neg. LLF: 129.23875747700376
Iteration: 3, Func. Count: 40, Neg. LLF: 123.67146674420508
Iteration: 4, Func. Count: 53, Neg. LLF: 123.57619328354508
Iteration: 5, Func. Count: 66, Neg. LLF: 123.48212543555267
Iteration: 6, Func. Count: 78, Neg. LLF: 123.45534929975034
Iteration: 7, Func. Count: 90, Neg. LLF: 123.45326256711753
Iteration: 8, Func. Count: 102, Neg. LLF: 123.45274212890409
Iteration: 9, Func. Count: 114, Neg. LLF: 123.44832185611516
Iteration: 10, Func. Count: 126, Neg. LLF: 123.37010753448632
Iteration: 11, Func. Count: 138, Neg. LLF: 123.47649846041904
Iteration: 12, Func. Count: 151, Neg. LLF: 123.06794234651758
Iteration: 13, Func. Count: 163, Neg. LLF: 131.27951932948844
Iteration: 14, Func. Count: 176, Neg. LLF: 122.72742752873287
Iteration: 15, Func. Count: 189, Neg. LLF: 122.53921931989221
Iteration: 16, Func. Count: 201, Neg. LLF: 122.50748116145684
Iteration: 17, Func. Count: 213, Neg. LLF: 122.48161689458811
Iteration: 18, Func. Count: 225, Neg. LLF: 122.36606964936199
Iteration: 19, Func. Count: 237, Neg. LLF: 122.32506346069226
Iteration: 20, Func. Count: 249, Neg. LLF: 122.30713507776271
Iteration: 21, Func. Count: 261, Neg. LLF: 122.30872436244593
Iteration: 22, Func. Count: 274, Neg. LLF: 122.30408367699617
Iteration: 23, Func. Count: 286, Neg. LLF: 122.30126263807932
Iteration: 24, Func. Count: 298, Neg. LLF: 122.27042983014469
Iteration: 25, Func. Count: 310, Neg. LLF: 122.22061868940649
Iteration: 26, Func. Count: 322, Neg. LLF: 137.11311021735466
Iteration: 27, Func. Count: 336, Neg. LLF: 123.67990440960749
Iteration: 28, Func. Count: 349, Neg. LLF: 122.6483980572438
Iteration: 29, Func. Count: 363, Neg. LLF: 122.20684839817103
Iteration: 30, Func. Count: 375, Neg. LLF: 122.20684361408242
Iteration: 31, Func. Count: 386, Neg. LLF: 122.20684347455814
Optimization terminated successfully (Exit mode 0)
Current function value: 122.20684361408242
Iterations: 32
Function evaluations: 386
Gradient evaluations: 31
Iteration: 1, Func. Count: 14, Neg. LLF: 125.98786155909954
Iteration: 2, Func. Count: 29, Neg. LLF: 130.36581785350285
Iteration: 3, Func. Count: 43, Neg. LLF: 123.97143312779043
Iteration: 4, Func. Count: 57, Neg. LLF: 123.19364801357608
Iteration: 5, Func. Count: 70, Neg. LLF: 123.38260461588447
Iteration: 6, Func. Count: 84, Neg. LLF: 122.59145952643458
Iteration: 7, Func. Count: 97, Neg. LLF: 122.2239205958573
Iteration: 8, Func. Count: 110, Neg. LLF: 123.7895353340374
Iteration: 9, Func. Count: 124, Neg. LLF: 128.1555810712155
Iteration: 10, Func. Count: 138, Neg. LLF: 121.90008832182653
Iteration: 11, Func. Count: 152, Neg. LLF: 128.62633126739215
Iteration: 12, Func. Count: 166, Neg. LLF: 121.23399104812641
Iteration: 13, Func. Count: 179, Neg. LLF: 121.1442527784592
Iteration: 14, Func. Count: 192, Neg. LLF: 121.2215246235397
Iteration: 15, Func. Count: 206, Neg. LLF: 120.99503245295243
Iteration: 16, Func. Count: 219, Neg. LLF: 120.92671152326261
Iteration: 17, Func. Count: 232, Neg. LLF: 120.38737466564837
Iteration: 18, Func. Count: 245, Neg. LLF: 119.53415507228776
Iteration: 19, Func. Count: 258, Neg. LLF: 119.51243097264145
Iteration: 20, Func. Count: 271, Neg. LLF: 119.50938652211883
Iteration: 21, Func. Count: 284, Neg. LLF: 119.50707511992323
Iteration: 22, Func. Count: 297, Neg. LLF: 119.50569755786613
Iteration: 23, Func. Count: 310, Neg. LLF: 119.50541216744338
Iteration: 24, Func. Count: 323, Neg. LLF: 119.69681282676757
Iteration: 25, Func. Count: 339, Neg. LLF: 119.50715789170732
Iteration: 26, Func. Count: 354, Neg. LLF: 119.50569929115674
Iteration: 27, Func. Count: 369, Neg. LLF: 119.50543225202897
Iteration: 28, Func. Count: 383, Neg. LLF: 119.50543099203382
Iteration: 29, Func. Count: 395, Neg. LLF: 119.50543086324872
Optimization terminated successfully (Exit mode 0)
Current function value: 119.50543099203382
Iterations: 30
Function evaluations: 395
Gradient evaluations: 29
Iteration: 1, Func. Count: 15, Neg. LLF: 126.00086959335708
Iteration: 2, Func. Count: 31, Neg. LLF: 131.06399705088822
Iteration: 3, Func. Count: 46, Neg. LLF: 123.49450806220963
Iteration: 4, Func. Count: 62, Neg. LLF: 125.41140414149875
Iteration: 5, Func. Count: 77, Neg. LLF: 121.80887198956803
Iteration: 6, Func. Count: 91, Neg. LLF: 120.89068331435936
Iteration: 7, Func. Count: 105, Neg. LLF: 140.922704784349
Iteration: 8, Func. Count: 120, Neg. LLF: 120.92277692499283
Iteration: 9, Func. Count: 135, Neg. LLF: 120.40674109302206
Iteration: 10, Func. Count: 150, Neg. LLF: 120.0818702040326
Iteration: 11, Func. Count: 164, Neg. LLF: 120.06491295956687
Iteration: 12, Func. Count: 178, Neg. LLF: 120.06241345777921
Iteration: 13, Func. Count: 192, Neg. LLF: 120.06223102238154
Iteration: 14, Func. Count: 206, Neg. LLF: 120.06220796776128
Iteration: 15, Func. Count: 220, Neg. LLF: 120.06220608518969
Iteration: 16, Func. Count: 233, Neg. LLF: 120.06220603880746
Optimization terminated successfully (Exit mode 0)
Current function value: 120.06220608518969
Iterations: 16
Function evaluations: 233
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 127.42048347968112
Iteration: 2, Func. Count: 24, Neg. LLF: 136.96925936061683
Iteration: 3, Func. Count: 36, Neg. LLF: 123.62247995402792
Iteration: 4, Func. Count: 47, Neg. LLF: 123.93388072507325
Iteration: 5, Func. Count: 60, Neg. LLF: 123.37289641433333
Iteration: 6, Func. Count: 71, Neg. LLF: 123.34095950630726
Iteration: 7, Func. Count: 82, Neg. LLF: 123.25065785972279
Iteration: 8, Func. Count: 93, Neg. LLF: 123.23297010564752
Iteration: 9, Func. Count: 104, Neg. LLF: 123.22798869116612
Iteration: 10, Func. Count: 115, Neg. LLF: 123.22773338222548
Iteration: 11, Func. Count: 126, Neg. LLF: 123.22773158844134
Iteration: 12, Func. Count: 136, Neg. LLF: 123.22773144066866
Optimization terminated successfully (Exit mode 0)
Current function value: 123.22773158844134
Iterations: 12
Function evaluations: 136
Gradient evaluations: 12
Iteration: 1, Func. Count: 13, Neg. LLF: 125.22605403042455
Iteration: 2, Func. Count: 27, Neg. LLF: 132.56517182967863
Iteration: 3, Func. Count: 40, Neg. LLF: 123.22879718351898
Iteration: 4, Func. Count: 52, Neg. LLF: 125.15926847114461
Iteration: 5, Func. Count: 65, Neg. LLF: 122.76107975278167
Iteration: 6, Func. Count: 77, Neg. LLF: 124.06290929871139
Iteration: 7, Func. Count: 90, Neg. LLF: 1027.437507840304
Iteration: 8, Func. Count: 103, Neg. LLF: 130.35497173528356
Iteration: 9, Func. Count: 116, Neg. LLF: 124.72879198283522
Iteration: 10, Func. Count: 129, Neg. LLF: 124.13795652708485
Iteration: 11, Func. Count: 142, Neg. LLF: 123.54270120937882
Iteration: 12, Func. Count: 155, Neg. LLF: 121.8980500552344
Iteration: 13, Func. Count: 167, Neg. LLF: 121.72998911644127
Iteration: 14, Func. Count: 179, Neg. LLF: 121.65978625926795
Iteration: 15, Func. Count: 191, Neg. LLF: 121.57167982236021
Iteration: 16, Func. Count: 203, Neg. LLF: 121.53892564000917
Iteration: 17, Func. Count: 215, Neg. LLF: 121.52201642126334
Iteration: 18, Func. Count: 227, Neg. LLF: 121.51884526618912
Iteration: 19, Func. Count: 239, Neg. LLF: 121.51771120597276
Iteration: 20, Func. Count: 251, Neg. LLF: 121.51708749507502
Iteration: 21, Func. Count: 263, Neg. LLF: 121.51706995894479
Iteration: 22, Func. Count: 275, Neg. LLF: 121.51706114020976
Iteration: 23, Func. Count: 286, Neg. LLF: 121.51706101058359
Optimization terminated successfully (Exit mode 0)
Current function value: 121.51706114020976
Iterations: 23
Function evaluations: 286
Gradient evaluations: 23
Iteration: 1, Func. Count: 14, Neg. LLF: 127.31298398409054
Iteration: 2, Func. Count: 29, Neg. LLF: 127.44824785997108
Iteration: 3, Func. Count: 43, Neg. LLF: 124.71256526517983
Iteration: 4, Func. Count: 57, Neg. LLF: 122.80866307176915
Iteration: 5, Func. Count: 70, Neg. LLF: 122.55001357141091
Iteration: 6, Func. Count: 83, Neg. LLF: 153.80998679325458
Iteration: 7, Func. Count: 99, Neg. LLF: 124.54834665871489
Iteration: 8, Func. Count: 114, Neg. LLF: 122.67100924522566
Iteration: 9, Func. Count: 128, Neg. LLF: 121.91144665096992
Iteration: 10, Func. Count: 141, Neg. LLF: 122.03135802537889
Iteration: 11, Func. Count: 155, Neg. LLF: 121.8757315159866
Iteration: 12, Func. Count: 169, Neg. LLF: 121.55158402029886
Iteration: 13, Func. Count: 182, Neg. LLF: 121.56922058417072
Iteration: 14, Func. Count: 196, Neg. LLF: 121.45985869146432
Iteration: 15, Func. Count: 210, Neg. LLF: 121.43232555598868
Iteration: 16, Func. Count: 224, Neg. LLF: 121.4288625857206
Iteration: 17, Func. Count: 237, Neg. LLF: 121.42879618964393
Iteration: 18, Func. Count: 250, Neg. LLF: 121.42878395451318
Iteration: 19, Func. Count: 263, Neg. LLF: 121.4287737421299
Iteration: 20, Func. Count: 275, Neg. LLF: 121.42877369096368
Optimization terminated successfully (Exit mode 0)
Current function value: 121.4287737421299
Iterations: 20
Function evaluations: 275
Gradient evaluations: 20
Iteration: 1, Func. Count: 15, Neg. LLF: 126.09806792943569
Iteration: 2, Func. Count: 31, Neg. LLF: 130.29811125294322
Iteration: 3, Func. Count: 46, Neg. LLF: 123.95963280153221
Iteration: 4, Func. Count: 61, Neg. LLF: 123.20004784249419
Iteration: 5, Func. Count: 75, Neg. LLF: 123.1616185083598
Iteration: 6, Func. Count: 90, Neg. LLF: 122.96032548964358
Iteration: 7, Func. Count: 105, Neg. LLF: 124.67353598196708
Iteration: 8, Func. Count: 120, Neg. LLF: 122.9614607329313
Iteration: 9, Func. Count: 135, Neg. LLF: 122.19342701138343
Iteration: 10, Func. Count: 150, Neg. LLF: 123.30995459460783
Iteration: 11, Func. Count: 165, Neg. LLF: 121.87620794861112
Iteration: 12, Func. Count: 180, Neg. LLF: 121.50596418199656
Iteration: 13, Func. Count: 194, Neg. LLF: 121.97893880375561
Iteration: 14, Func. Count: 209, Neg. LLF: 121.44375618973793
Iteration: 15, Func. Count: 223, Neg. LLF: 121.43306259642179
Iteration: 16, Func. Count: 237, Neg. LLF: 121.42963107567908
Iteration: 17, Func. Count: 251, Neg. LLF: 121.42886048735717
Iteration: 18, Func. Count: 265, Neg. LLF: 121.42877655793562
Iteration: 19, Func. Count: 279, Neg. LLF: 121.4287748710804
Iteration: 20, Func. Count: 293, Neg. LLF: 121.42877364362381
Iteration: 21, Func. Count: 306, Neg. LLF: 121.42877360704401
Optimization terminated successfully (Exit mode 0)
Current function value: 121.42877364362381
Iterations: 21
Function evaluations: 306
Gradient evaluations: 21
Iteration: 1, Func. Count: 16, Neg. LLF: 126.06030781169825
Iteration: 2, Func. Count: 33, Neg. LLF: 130.99111200895413
Iteration: 3, Func. Count: 49, Neg. LLF: 123.87365150459125
Iteration: 4, Func. Count: 66, Neg. LLF: 125.50950649624413
Iteration: 5, Func. Count: 82, Neg. LLF: 122.02578677663774
Iteration: 6, Func. Count: 97, Neg. LLF: 121.58035131309599
Iteration: 7, Func. Count: 112, Neg. LLF: 124.3318554861913
Iteration: 8, Func. Count: 128, Neg. LLF: 140.94196101230966
Iteration: 9, Func. Count: 144, Neg. LLF: 126.82887896038962
Iteration: 10, Func. Count: 160, Neg. LLF: 120.14164310292719
Iteration: 11, Func. Count: 175, Neg. LLF: 120.09364401401689
Iteration: 12, Func. Count: 190, Neg. LLF: 120.07076558361788
Iteration: 13, Func. Count: 205, Neg. LLF: 120.06434184743644
Iteration: 14, Func. Count: 220, Neg. LLF: 120.06311092592705
Iteration: 15, Func. Count: 235, Neg. LLF: 120.06240150419289
Iteration: 16, Func. Count: 250, Neg. LLF: 120.06221250648012
Iteration: 17, Func. Count: 265, Neg. LLF: 120.06220569836178
Iteration: 18, Func. Count: 279, Neg. LLF: 120.06220565213398
Optimization terminated successfully (Exit mode 0)
Current function value: 120.06220569836178
Iterations: 18
Function evaluations: 279
Gradient evaluations: 18
Iteration: 1, Func. Count: 5, Neg. LLF: 141.83354442127762
Iteration: 2, Func. Count: 10, Neg. LLF: 132.50514793546827
Iteration: 3, Func. Count: 15, Neg. LLF: 123.87841349856956
Iteration: 4, Func. Count: 19, Neg. LLF: 124.04540799742698
Iteration: 5, Func. Count: 25, Neg. LLF: 123.46036216464783
Iteration: 6, Func. Count: 29, Neg. LLF: 123.43941829961052
Iteration: 7, Func. Count: 33, Neg. LLF: 123.42935023790987
Iteration: 8, Func. Count: 37, Neg. LLF: 123.42653714664688
Iteration: 9, Func. Count: 41, Neg. LLF: 123.42599501450565
Iteration: 10, Func. Count: 45, Neg. LLF: 123.42598211609771
Iteration: 11, Func. Count: 49, Neg. LLF: 123.42597714710662
Iteration: 12, Func. Count: 53, Neg. LLF: 123.42597654714096
Optimization terminated successfully (Exit mode 0)
Current function value: 123.42597654714096
Iterations: 12
Function evaluations: 53
Gradient evaluations: 12
Iteration: 1, Func. Count: 5, Neg. LLF: 138.45573200759497
Iteration: 2, Func. Count: 10, Neg. LLF: 139.682753168853
Iteration: 3, Func. Count: 15, Neg. LLF: 125.88965175425957
Iteration: 4, Func. Count: 19, Neg. LLF: 126.83472667197226
Iteration: 5, Func. Count: 25, Neg. LLF: 125.82722580418968
Iteration: 6, Func. Count: 29, Neg. LLF: 125.81628042849451
Iteration: 7, Func. Count: 33, Neg. LLF: 125.8092464420423
Iteration: 8, Func. Count: 37, Neg. LLF: 125.8091900966549
Iteration: 9, Func. Count: 40, Neg. LLF: 125.80919010233124
Optimization terminated successfully (Exit mode 0)
Current function value: 125.8091900966549
Iterations: 9
Function evaluations: 40
Gradient evaluations: 9
Iteration: 1, Func. Count: 6, Neg. LLF: 165.26329630917922
Iteration: 2, Func. Count: 13, Neg. LLF: 125.7797988305495
Iteration: 3, Func. Count: 18, Neg. LLF: 125.78082334520445
Iteration: 4, Func. Count: 24, Neg. LLF: 125.77830543718744
Iteration: 5, Func. Count: 29, Neg. LLF: 125.77644715814962
Iteration: 6, Func. Count: 34, Neg. LLF: 125.77065751633488
Iteration: 7, Func. Count: 39, Neg. LLF: 125.76678535906284
Iteration: 8, Func. Count: 44, Neg. LLF: 125.71941184213914
Iteration: 9, Func. Count: 49, Neg. LLF: 129.42415400075768
Iteration: 10, Func. Count: 55, Neg. LLF: 126.5701249000646
Iteration: 11, Func. Count: 61, Neg. LLF: 125.84461346504706
Iteration: 12, Func. Count: 67, Neg. LLF: 125.68928275529619
Iteration: 13, Func. Count: 73, Neg. LLF: 125.68356856332346
Iteration: 14, Func. Count: 78, Neg. LLF: 125.68355724678597
Iteration: 15, Func. Count: 82, Neg. LLF: 125.6835572471337
Optimization terminated successfully (Exit mode 0)
Current function value: 125.68355724678597
Iterations: 15
Function evaluations: 82
Gradient evaluations: 15
Iteration: 1, Func. Count: 7, Neg. LLF: 156.69354443209187
Iteration: 2, Func. Count: 15, Neg. LLF: 125.7696783511056
Iteration: 3, Func. Count: 21, Neg. LLF: 125.77492611906851
Iteration: 4, Func. Count: 28, Neg. LLF: 125.75887112509042
Iteration: 5, Func. Count: 34, Neg. LLF: 125.7565632036386
Iteration: 6, Func. Count: 40, Neg. LLF: 125.75445868364176
Iteration: 7, Func. Count: 46, Neg. LLF: 125.74672206447566
Iteration: 8, Func. Count: 52, Neg. LLF: 125.73682531452117
Iteration: 9, Func. Count: 58, Neg. LLF: 125.72154646703763
Iteration: 10, Func. Count: 64, Neg. LLF: 125.70343797621989
Iteration: 11, Func. Count: 70, Neg. LLF: 125.7028769108025
Iteration: 12, Func. Count: 77, Neg. LLF: 125.69446384038243
Iteration: 13, Func. Count: 84, Neg. LLF: 125.69296783194697
Iteration: 14, Func. Count: 90, Neg. LLF: 125.69296630891704
Iteration: 15, Func. Count: 95, Neg. LLF: 125.69296630893878
Optimization terminated successfully (Exit mode 0)
Current function value: 125.69296630891704
Iterations: 15
Function evaluations: 95
Gradient evaluations: 15
Iteration: 1, Func. Count: 8, Neg. LLF: 151.90635664213227
Iteration: 2, Func. Count: 17, Neg. LLF: 125.76010789052484
Iteration: 3, Func. Count: 24, Neg. LLF: 125.75059403012631
Iteration: 4, Func. Count: 31, Neg. LLF: 125.74702535522783
Iteration: 5, Func. Count: 38, Neg. LLF: 125.74464819827953
Iteration: 6, Func. Count: 45, Neg. LLF: 125.73639051340048
Iteration: 7, Func. Count: 52, Neg. LLF: 125.73237571347299
Iteration: 8, Func. Count: 59, Neg. LLF: 125.72494875535462
Iteration: 9, Func. Count: 66, Neg. LLF: 125.72243526702371
Iteration: 10, Func. Count: 73, Neg. LLF: 125.71413331215699
Iteration: 11, Func. Count: 80, Neg. LLF: 125.70563334106247
Iteration: 12, Func. Count: 87, Neg. LLF: 125.70413451203167
Iteration: 13, Func. Count: 94, Neg. LLF: 125.7019961886599
Iteration: 14, Func. Count: 101, Neg. LLF: 125.7019272395955
Iteration: 15, Func. Count: 108, Neg. LLF: 125.70191580549918
Iteration: 16, Func. Count: 115, Neg. LLF: 125.70191164887186
Iteration: 17, Func. Count: 121, Neg. LLF: 125.70191164890413
Optimization terminated successfully (Exit mode 0)
Current function value: 125.70191164887186
Iterations: 17
Function evaluations: 121
Gradient evaluations: 17
Iteration: 1, Func. Count: 9, Neg. LLF: 146.39163932258018
Iteration: 2, Func. Count: 19, Neg. LLF: 125.76976147408301
Iteration: 3, Func. Count: 27, Neg. LLF: 125.78445441764558
Iteration: 4, Func. Count: 36, Neg. LLF: 125.51815826711452
Iteration: 5, Func. Count: 44, Neg. LLF: 125.26718324829616
Iteration: 6, Func. Count: 52, Neg. LLF: 124.86353940683439
Iteration: 7, Func. Count: 60, Neg. LLF: 124.79357554647576
Iteration: 8, Func. Count: 68, Neg. LLF: 124.75491999383036
Iteration: 9, Func. Count: 76, Neg. LLF: 124.68677650719681
Iteration: 10, Func. Count: 84, Neg. LLF: 124.71989238100574
Iteration: 11, Func. Count: 93, Neg. LLF: 124.55435042347202
Iteration: 12, Func. Count: 101, Neg. LLF: 124.47916696265057
Iteration: 13, Func. Count: 109, Neg. LLF: 125.7592006376066
Iteration: 14, Func. Count: 118, Neg. LLF: 124.40756110481483
Iteration: 15, Func. Count: 126, Neg. LLF: 124.36887426855078
Iteration: 16, Func. Count: 134, Neg. LLF: 124.36852172767544
Iteration: 17, Func. Count: 142, Neg. LLF: 124.36852006449192
Iteration: 18, Func. Count: 150, Neg. LLF: 124.36851730015776
Iteration: 19, Func. Count: 157, Neg. LLF: 124.36851730015879
Optimization terminated successfully (Exit mode 0)
Current function value: 124.36851730015776
Iterations: 19
Function evaluations: 157
Gradient evaluations: 19
Iteration: 1, Func. Count: 6, Neg. LLF: 130.61530120881386
Iteration: 2, Func. Count: 12, Neg. LLF: 127.98938576468846
Iteration: 3, Func. Count: 18, Neg. LLF: 127.22012594082759
Iteration: 4, Func. Count: 23, Neg. LLF: 126.43861029327675
Iteration: 5, Func. Count: 28, Neg. LLF: 145.523901911982
Iteration: 6, Func. Count: 34, Neg. LLF: 126.40909723036317
Iteration: 7, Func. Count: 40, Neg. LLF: 126.02945147795731
Iteration: 8, Func. Count: 46, Neg. LLF: 125.821585046967
Iteration: 9, Func. Count: 51, Neg. LLF: 126.38280675912958
Iteration: 10, Func. Count: 57, Neg. LLF: 125.80930305844083
Iteration: 11, Func. Count: 62, Neg. LLF: 125.80919010056307
Iteration: 12, Func. Count: 66, Neg. LLF: 125.80919031917549
Optimization terminated successfully (Exit mode 0)
Current function value: 125.80919010056307
Iterations: 12
Function evaluations: 66
Gradient evaluations: 12
Iteration: 1, Func. Count: 7, Neg. LLF: 165.37842631910704
Iteration: 2, Func. Count: 15, Neg. LLF: 125.778496777447
Iteration: 3, Func. Count: 21, Neg. LLF: 125.7783845422658
Iteration: 4, Func. Count: 27, Neg. LLF: 125.77907832166149
Iteration: 5, Func. Count: 34, Neg. LLF: 125.77778780057635
Iteration: 6, Func. Count: 40, Neg. LLF: 125.77717882953125
Iteration: 7, Func. Count: 46, Neg. LLF: 125.7732285744778
Iteration: 8, Func. Count: 52, Neg. LLF: 125.75873270619861
Iteration: 9, Func. Count: 58, Neg. LLF: 125.85115010730189
Iteration: 10, Func. Count: 65, Neg. LLF: 125.82098043082904
Iteration: 11, Func. Count: 72, Neg. LLF: 126.21832708873872
Iteration: 12, Func. Count: 79, Neg. LLF: 125.83595212504899
Iteration: 13, Func. Count: 86, Neg. LLF: 126.08811679383503
Iteration: 14, Func. Count: 93, Neg. LLF: 125.68382555361596
Iteration: 15, Func. Count: 99, Neg. LLF: 125.68358233640308
Iteration: 16, Func. Count: 105, Neg. LLF: 125.68357163323365
Iteration: 17, Func. Count: 111, Neg. LLF: 125.68355699746395
Iteration: 18, Func. Count: 117, Neg. LLF: 125.68947682014165
Optimization terminated successfully (Exit mode 0)
Current function value: 125.68355699636855
Iterations: 19
Function evaluations: 120
Gradient evaluations: 18
Iteration: 1, Func. Count: 8, Neg. LLF: 157.2116775288967
Iteration: 2, Func. Count: 17, Neg. LLF: 125.76693531291367
Iteration: 3, Func. Count: 24, Neg. LLF: 125.76814898216135
Iteration: 4, Func. Count: 32, Neg. LLF: 125.76063802676255
Iteration: 5, Func. Count: 39, Neg. LLF: 125.75492110478706
Iteration: 6, Func. Count: 46, Neg. LLF: 125.75349194644039
Iteration: 7, Func. Count: 53, Neg. LLF: 125.74700135855913
Iteration: 8, Func. Count: 60, Neg. LLF: 125.7370008148259
Iteration: 9, Func. Count: 67, Neg. LLF: 125.74731040063361
Iteration: 10, Func. Count: 75, Neg. LLF: 125.72056626090668
Iteration: 11, Func. Count: 82, Neg. LLF: 125.70043408893382
Iteration: 12, Func. Count: 89, Neg. LLF: 125.69669226109065
Iteration: 13, Func. Count: 96, Neg. LLF: 125.69326903266007
Iteration: 14, Func. Count: 103, Neg. LLF: 125.69297654625444
Iteration: 15, Func. Count: 110, Neg. LLF: 125.69296637776236
Iteration: 16, Func. Count: 116, Neg. LLF: 125.6929663778424
Optimization terminated successfully (Exit mode 0)
Current function value: 125.69296637776236
Iterations: 16
Function evaluations: 116
Gradient evaluations: 16
Iteration: 1, Func. Count: 9, Neg. LLF: 151.59075028214932
Iteration: 2, Func. Count: 19, Neg. LLF: 125.75485848190336
Iteration: 3, Func. Count: 27, Neg. LLF: 125.75294654425389
Iteration: 4, Func. Count: 36, Neg. LLF: 125.74299069326653
Iteration: 5, Func. Count: 44, Neg. LLF: 125.73905300490584
Iteration: 6, Func. Count: 52, Neg. LLF: 125.7357387593022
Iteration: 7, Func. Count: 60, Neg. LLF: 125.73160126763042
Iteration: 8, Func. Count: 68, Neg. LLF: 125.71145500661726
Iteration: 9, Func. Count: 76, Neg. LLF: 125.70737537857893
Iteration: 10, Func. Count: 84, Neg. LLF: 125.70223721785638
Iteration: 11, Func. Count: 92, Neg. LLF: 125.70191980553072
Iteration: 12, Func. Count: 100, Neg. LLF: 125.7019149664787
Iteration: 13, Func. Count: 108, Neg. LLF: 125.70191176589461
Iteration: 14, Func. Count: 115, Neg. LLF: 125.7019117659826
Optimization terminated successfully (Exit mode 0)
Current function value: 125.70191176589461
Iterations: 14
Function evaluations: 115
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 146.84946057759524
Iteration: 2, Func. Count: 21, Neg. LLF: 125.74665501806669
Iteration: 3, Func. Count: 30, Neg. LLF: 125.75915437755528
Iteration: 4, Func. Count: 40, Neg. LLF: 125.72894022678045
Iteration: 5, Func. Count: 49, Neg. LLF: 125.53621712393505
Iteration: 6, Func. Count: 58, Neg. LLF: 125.39942465887465
Iteration: 7, Func. Count: 67, Neg. LLF: 124.9762848158776
Iteration: 8, Func. Count: 76, Neg. LLF: 124.85341286666757
Iteration: 9, Func. Count: 85, Neg. LLF: 124.78076444095646
Iteration: 10, Func. Count: 94, Neg. LLF: 124.74390188823824
Iteration: 11, Func. Count: 103, Neg. LLF: 124.6369265113948
Iteration: 12, Func. Count: 112, Neg. LLF: 124.73397711656347
Iteration: 13, Func. Count: 122, Neg. LLF: 125.17984171057142
Iteration: 14, Func. Count: 132, Neg. LLF: 124.59557953017989
Iteration: 15, Func. Count: 142, Neg. LLF: 132.33594135623346
Iteration: 16, Func. Count: 153, Neg. LLF: 124.47105316150397
Iteration: 17, Func. Count: 162, Neg. LLF: 124.43055810199024
Iteration: 18, Func. Count: 171, Neg. LLF: 124.37897542449754
Iteration: 19, Func. Count: 180, Neg. LLF: 124.37377706471291
Iteration: 20, Func. Count: 189, Neg. LLF: 125.7079031949149
Iteration: 21, Func. Count: 200, Neg. LLF: 124.42597514996113
Iteration: 22, Func. Count: 210, Neg. LLF: 124.55038401816938
Iteration: 23, Func. Count: 221, Neg. LLF: 124.38088228118077
Iteration: 24, Func. Count: 231, Neg. LLF: 124.36961712297536
Iteration: 25, Func. Count: 240, Neg. LLF: 124.36852379742443
Iteration: 26, Func. Count: 249, Neg. LLF: 124.36851747002488
Iteration: 27, Func. Count: 257, Neg. LLF: 124.36851746993396
Optimization terminated successfully (Exit mode 0)
Current function value: 124.36851747002488
Iterations: 28
Function evaluations: 257
Gradient evaluations: 27
Iteration: 1, Func. Count: 7, Neg. LLF: 130.54141468711683
Iteration: 2, Func. Count: 14, Neg. LLF: 127.8104962279578
Iteration: 3, Func. Count: 20, Neg. LLF: 126.8372389036092
Iteration: 4, Func. Count: 26, Neg. LLF: 126.61366812617607
Iteration: 5, Func. Count: 32, Neg. LLF: 125.99719946705027
Iteration: 6, Func. Count: 38, Neg. LLF: 16275550.029077873
Iteration: 7, Func. Count: 47, Neg. LLF: 125.82292332951052
Iteration: 8, Func. Count: 53, Neg. LLF: 125.81116275336761
Iteration: 9, Func. Count: 59, Neg. LLF: 125.8094103066335
Iteration: 10, Func. Count: 65, Neg. LLF: 125.809191896124
Iteration: 11, Func. Count: 71, Neg. LLF: 125.80918973909726
Iteration: 12, Func. Count: 76, Neg. LLF: 125.8091898919621
Optimization terminated successfully (Exit mode 0)
Current function value: 125.80918973909726
Iterations: 12
Function evaluations: 76
Gradient evaluations: 12
Iteration: 1, Func. Count: 8, Neg. LLF: 165.3629596644947
Iteration: 2, Func. Count: 17, Neg. LLF: 125.77845301649243
Iteration: 3, Func. Count: 24, Neg. LLF: 125.77947771248107
Iteration: 4, Func. Count: 32, Neg. LLF: 125.77819839503502
Iteration: 5, Func. Count: 39, Neg. LLF: 125.7773983619388
Iteration: 6, Func. Count: 46, Neg. LLF: 125.77532225849245
Iteration: 7, Func. Count: 53, Neg. LLF: 125.7737252359866
Iteration: 8, Func. Count: 60, Neg. LLF: 125.76147071000216
Iteration: 9, Func. Count: 67, Neg. LLF: 125.85337305464647
Iteration: 10, Func. Count: 75, Neg. LLF: 126.42285738836249
Iteration: 11, Func. Count: 83, Neg. LLF: 125.94872793405432
Iteration: 12, Func. Count: 91, Neg. LLF: 151.936561865589
Iteration: 13, Func. Count: 100, Neg. LLF: 125.71632229186474
Iteration: 14, Func. Count: 108, Neg. LLF: 125.70023485422655
Iteration: 15, Func. Count: 115, Neg. LLF: 125.87266350121
Iteration: 16, Func. Count: 123, Neg. LLF: 125.70770482612481
Iteration: 17, Func. Count: 131, Neg. LLF: 125.68397224554609
Iteration: 18, Func. Count: 138, Neg. LLF: 125.68356198942784
Iteration: 19, Func. Count: 145, Neg. LLF: 125.68355707177517
Iteration: 20, Func. Count: 151, Neg. LLF: 125.68355707177662
Optimization terminated successfully (Exit mode 0)
Current function value: 125.68355707177517
Iterations: 21
Function evaluations: 151
Gradient evaluations: 20
Iteration: 1, Func. Count: 9, Neg. LLF: 157.00837959185546
Iteration: 2, Func. Count: 19, Neg. LLF: 125.76613304730475
Iteration: 3, Func. Count: 27, Neg. LLF: 125.77273851342412
Iteration: 4, Func. Count: 36, Neg. LLF: 125.76040234512362
Iteration: 5, Func. Count: 44, Neg. LLF: 125.75491923130838
Iteration: 6, Func. Count: 52, Neg. LLF: 125.753431442933
Iteration: 7, Func. Count: 60, Neg. LLF: 125.74544963946408
Iteration: 8, Func. Count: 68, Neg. LLF: 125.73905095520132
Iteration: 9, Func. Count: 76, Neg. LLF: 125.72549726516796
Iteration: 10, Func. Count: 84, Neg. LLF: 125.71271296084561
Iteration: 11, Func. Count: 92, Neg. LLF: 125.8066480476614
Iteration: 12, Func. Count: 101, Neg. LLF: 125.69391690336589
Iteration: 13, Func. Count: 109, Neg. LLF: 125.69312045038552
Iteration: 14, Func. Count: 117, Neg. LLF: 125.6929679345205
Iteration: 15, Func. Count: 125, Neg. LLF: 125.69296634462415
Iteration: 16, Func. Count: 132, Neg. LLF: 125.69296634471844
Optimization terminated successfully (Exit mode 0)
Current function value: 125.69296634462415
Iterations: 16
Function evaluations: 132
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 151.58993195013613
Iteration: 2, Func. Count: 21, Neg. LLF: 125.75366613801233
Iteration: 3, Func. Count: 30, Neg. LLF: 125.7541721756329
Iteration: 4, Func. Count: 40, Neg. LLF: 125.74539896098541
Iteration: 5, Func. Count: 49, Neg. LLF: 125.74023599174349
Iteration: 6, Func. Count: 58, Neg. LLF: 125.73230182812527
Iteration: 7, Func. Count: 67, Neg. LLF: 125.72925991838068
Iteration: 8, Func. Count: 76, Neg. LLF: 125.71432109699829
Iteration: 9, Func. Count: 85, Neg. LLF: 125.7089164292186
Iteration: 10, Func. Count: 94, Neg. LLF: 125.70316276535306
Iteration: 11, Func. Count: 103, Neg. LLF: 125.70210542990006
Iteration: 12, Func. Count: 112, Neg. LLF: 125.70205526175043
Iteration: 13, Func. Count: 122, Neg. LLF: 125.70191382011141
Iteration: 14, Func. Count: 131, Neg. LLF: 125.70191157729123
Iteration: 15, Func. Count: 139, Neg. LLF: 125.70191157728304
Optimization terminated successfully (Exit mode 0)
Current function value: 125.70191157729123
Iterations: 15
Function evaluations: 139
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 147.52998500540104
Iteration: 2, Func. Count: 23, Neg. LLF: 125.74231080262183
Iteration: 3, Func. Count: 33, Neg. LLF: 125.74396980598532
Iteration: 4, Func. Count: 44, Neg. LLF: 125.73388698543307
Iteration: 5, Func. Count: 54, Neg. LLF: 125.7266249332493
Iteration: 6, Func. Count: 64, Neg. LLF: 125.6974018419067
Iteration: 7, Func. Count: 74, Neg. LLF: 125.67249477287913
Iteration: 8, Func. Count: 84, Neg. LLF: 125.50580604774842
Iteration: 9, Func. Count: 94, Neg. LLF: 148.441279099243
Iteration: 10, Func. Count: 106, Neg. LLF: 162.04114487944014
Iteration: 11, Func. Count: 118, Neg. LLF: 129.4362729237584
Iteration: 12, Func. Count: 129, Neg. LLF: 124.72867138825603
Iteration: 13, Func. Count: 139, Neg. LLF: 125.01960439234395
Iteration: 14, Func. Count: 150, Neg. LLF: 124.57607672860895
Iteration: 15, Func. Count: 160, Neg. LLF: 124.621350639457
Iteration: 16, Func. Count: 171, Neg. LLF: 129.5347787324374
Iteration: 17, Func. Count: 183, Neg. LLF: 124.39338999864695
Iteration: 18, Func. Count: 193, Neg. LLF: 124.36893611820018
Iteration: 19, Func. Count: 203, Neg. LLF: 124.36854574894306
Iteration: 20, Func. Count: 213, Neg. LLF: 124.36851734958125
Iteration: 21, Func. Count: 222, Neg. LLF: 124.3685173495367
Optimization terminated successfully (Exit mode 0)
Current function value: 124.36851734958125
Iterations: 22
Function evaluations: 222
Gradient evaluations: 21
Iteration: 1, Func. Count: 8, Neg. LLF: 130.49588945962358
Iteration: 2, Func. Count: 16, Neg. LLF: 127.73819800091769
Iteration: 3, Func. Count: 23, Neg. LLF: 127.19603516029274
Iteration: 4, Func. Count: 30, Neg. LLF: 126.75639082711
Iteration: 5, Func. Count: 37, Neg. LLF: 30528234.90217271
Iteration: 6, Func. Count: 45, Neg. LLF: 126.1680326290334
Iteration: 7, Func. Count: 53, Neg. LLF: 125.81097622859987
Iteration: 8, Func. Count: 60, Neg. LLF: 125.8109440392896
Iteration: 9, Func. Count: 68, Neg. LLF: 125.80920406141483
Iteration: 10, Func. Count: 75, Neg. LLF: 125.80918971982244
Iteration: 11, Func. Count: 81, Neg. LLF: 125.80918991037927
Optimization terminated successfully (Exit mode 0)
Current function value: 125.80918971982244
Iterations: 11
Function evaluations: 81
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 165.3187070365315
Iteration: 2, Func. Count: 19, Neg. LLF: 125.7783683882279
Iteration: 3, Func. Count: 27, Neg. LLF: 125.77899654796597
Iteration: 4, Func. Count: 36, Neg. LLF: 125.77806663268915
Iteration: 5, Func. Count: 44, Neg. LLF: 125.7769164123635
Iteration: 6, Func. Count: 52, Neg. LLF: 125.77027658961933
Iteration: 7, Func. Count: 60, Neg. LLF: 125.75165599697738
Iteration: 8, Func. Count: 68, Neg. LLF: 125.75363905488072
Iteration: 9, Func. Count: 77, Neg. LLF: 126.05345824423904
Iteration: 10, Func. Count: 86, Neg. LLF: 126.69285161632078
Iteration: 11, Func. Count: 95, Neg. LLF: 126.50360092853589
Iteration: 12, Func. Count: 104, Neg. LLF: 125.75244959661232
Iteration: 13, Func. Count: 113, Neg. LLF: 125.68678623217522
Iteration: 14, Func. Count: 122, Neg. LLF: 125.6841399142285
Iteration: 15, Func. Count: 130, Neg. LLF: 125.68358105142906
Iteration: 16, Func. Count: 138, Neg. LLF: 125.68355712789297
Iteration: 17, Func. Count: 146, Neg. LLF: 125.96695681935869
Optimization terminated successfully (Exit mode 0)
Current function value: 125.68355707315114
Iterations: 18
Function evaluations: 149
Gradient evaluations: 17
Iteration: 1, Func. Count: 10, Neg. LLF: 157.3407499660988
Iteration: 2, Func. Count: 21, Neg. LLF: 125.76705057731027
Iteration: 3, Func. Count: 30, Neg. LLF: 125.76458946045913
Iteration: 4, Func. Count: 39, Neg. LLF: 125.75930750207813
Iteration: 5, Func. Count: 48, Neg. LLF: 125.75312187480007
Iteration: 6, Func. Count: 57, Neg. LLF: 125.75196542169822
Iteration: 7, Func. Count: 66, Neg. LLF: 125.74457433290304
Iteration: 8, Func. Count: 75, Neg. LLF: 125.72792219355446
Iteration: 9, Func. Count: 84, Neg. LLF: 125.7349634919506
Iteration: 10, Func. Count: 94, Neg. LLF: 125.7026670382147
Iteration: 11, Func. Count: 103, Neg. LLF: 125.69523942645351
Iteration: 12, Func. Count: 112, Neg. LLF: 125.69336674683981
Iteration: 13, Func. Count: 121, Neg. LLF: 125.69315289018058
Iteration: 14, Func. Count: 130, Neg. LLF: 125.69296893092992
Iteration: 15, Func. Count: 139, Neg. LLF: 125.69296639115517
Iteration: 16, Func. Count: 147, Neg. LLF: 125.69296639128909
Optimization terminated successfully (Exit mode 0)
Current function value: 125.69296639115517
Iterations: 16
Function evaluations: 147
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 152.2006157374789
Iteration: 2, Func. Count: 23, Neg. LLF: 125.75491088992814
Iteration: 3, Func. Count: 33, Neg. LLF: 125.74730193759913
Iteration: 4, Func. Count: 43, Neg. LLF: 125.74430697745728
Iteration: 5, Func. Count: 53, Neg. LLF: 125.73767469289477
Iteration: 6, Func. Count: 63, Neg. LLF: 125.73409436587016
Iteration: 7, Func. Count: 73, Neg. LLF: 125.73003411290276
Iteration: 8, Func. Count: 83, Neg. LLF: 125.7244307226474
Iteration: 9, Func. Count: 93, Neg. LLF: 125.72066333285235
Iteration: 10, Func. Count: 103, Neg. LLF: 125.7096727330591
Iteration: 11, Func. Count: 113, Neg. LLF: 125.70414804145302
Iteration: 12, Func. Count: 123, Neg. LLF: 125.70197549265858
Iteration: 13, Func. Count: 133, Neg. LLF: 125.70191213465891
Iteration: 14, Func. Count: 143, Neg. LLF: 125.70191221935546
Optimization terminated successfully (Exit mode 0)
Current function value: 125.70191162524664
Iterations: 14
Function evaluations: 144
Gradient evaluations: 14
Iteration: 1, Func. Count: 12, Neg. LLF: 148.34575007422856
Iteration: 2, Func. Count: 25, Neg. LLF: 125.74211131208523
Iteration: 3, Func. Count: 36, Neg. LLF: 125.7352064994562
Iteration: 4, Func. Count: 47, Neg. LLF: 125.73116054660028
Iteration: 5, Func. Count: 58, Neg. LLF: 125.72002364414568
Iteration: 6, Func. Count: 69, Neg. LLF: 125.67291268181793
Iteration: 7, Func. Count: 80, Neg. LLF: 125.63795818295397
Iteration: 8, Func. Count: 91, Neg. LLF: 125.42725040766501
Iteration: 9, Func. Count: 102, Neg. LLF: 126.55545188916267
Iteration: 10, Func. Count: 114, Neg. LLF: 130.0373828335451
Iteration: 11, Func. Count: 126, Neg. LLF: 125.07780730979823
Iteration: 12, Func. Count: 137, Neg. LLF: 127.55421216386779
Iteration: 13, Func. Count: 149, Neg. LLF: 270.0346348577476
Iteration: 14, Func. Count: 162, Neg. LLF: 126.50342482639898
Iteration: 15, Func. Count: 174, Neg. LLF: 8985.39940890523
Iteration: 16, Func. Count: 187, Neg. LLF: 124.56193335156804
Iteration: 17, Func. Count: 198, Neg. LLF: 125.20006657748193
Iteration: 18, Func. Count: 210, Neg. LLF: 124.59237265026397
Iteration: 19, Func. Count: 222, Neg. LLF: 124.38644846495197
Iteration: 20, Func. Count: 233, Neg. LLF: 124.37107190295673
Iteration: 21, Func. Count: 244, Neg. LLF: 124.36881508497865
Iteration: 22, Func. Count: 255, Neg. LLF: 124.36852019093101
Iteration: 23, Func. Count: 266, Neg. LLF: 124.3685173066689
Iteration: 24, Func. Count: 276, Neg. LLF: 124.36851730670406
Optimization terminated successfully (Exit mode 0)
Current function value: 124.3685173066689
Iterations: 25
Function evaluations: 276
Gradient evaluations: 24
Iteration: 1, Func. Count: 5, Neg. LLF: 132.30681763559807
Iteration: 2, Func. Count: 10, Neg. LLF: 136.4438334174501
Iteration: 3, Func. Count: 15, Neg. LLF: 125.30455775621728
Iteration: 4, Func. Count: 19, Neg. LLF: 125.29955290705638
Iteration: 5, Func. Count: 23, Neg. LLF: 125.29807389524711
Iteration: 6, Func. Count: 27, Neg. LLF: 125.29803767429767
Iteration: 7, Func. Count: 31, Neg. LLF: 125.29803623152296
Iteration: 8, Func. Count: 34, Neg. LLF: 125.29803623153272
Optimization terminated successfully (Exit mode 0)
Current function value: 125.29803623152296
Iterations: 8
Function evaluations: 34
Gradient evaluations: 8
Iteration: 1, Func. Count: 6, Neg. LLF: 165.26236724963428
Iteration: 2, Func. Count: 13, Neg. LLF: 125.78143218933829
Iteration: 3, Func. Count: 18, Neg. LLF: 125.77963102258917
Iteration: 4, Func. Count: 23, Neg. LLF: 125.77850576022446
Iteration: 5, Func. Count: 28, Neg. LLF: 125.77821465967322
Iteration: 6, Func. Count: 33, Neg. LLF: 125.77620284800606
Iteration: 7, Func. Count: 38, Neg. LLF: 125.75961822957804
Iteration: 8, Func. Count: 43, Neg. LLF: 126.03865872454011
Iteration: 9, Func. Count: 49, Neg. LLF: 125.97154235430823
Iteration: 10, Func. Count: 55, Neg. LLF: 125.95826440099921
Iteration: 11, Func. Count: 61, Neg. LLF: 125.96719530466545
Iteration: 12, Func. Count: 67, Neg. LLF: 149.40958343402605
Iteration: 13, Func. Count: 74, Neg. LLF: 125.84773629999647
Iteration: 14, Func. Count: 80, Neg. LLF: 125.71190458515775
Iteration: 15, Func. Count: 85, Neg. LLF: 125.69587394436397
Iteration: 16, Func. Count: 90, Neg. LLF: 125.80414158047134
Iteration: 17, Func. Count: 96, Neg. LLF: 125.69171292738432
Iteration: 18, Func. Count: 102, Neg. LLF: 125.68358383201662
Iteration: 19, Func. Count: 107, Neg. LLF: 125.68355788337172
Iteration: 20, Func. Count: 112, Neg. LLF: 125.68355729613157
Optimization terminated successfully (Exit mode 0)
Current function value: 125.68355729613157
Iterations: 21
Function evaluations: 112
Gradient evaluations: 20
Iteration: 1, Func. Count: 7, Neg. LLF: 156.48363434710603
Iteration: 2, Func. Count: 15, Neg. LLF: 125.77245642010337
Iteration: 3, Func. Count: 21, Neg. LLF: 125.77638515148543
Iteration: 4, Func. Count: 28, Neg. LLF: 125.75834244964413
Iteration: 5, Func. Count: 34, Neg. LLF: 125.7568928219255
Iteration: 6, Func. Count: 40, Neg. LLF: 125.75387433295765
Iteration: 7, Func. Count: 46, Neg. LLF: 125.74671615803379
Iteration: 8, Func. Count: 52, Neg. LLF: 125.73972802685033
Iteration: 9, Func. Count: 58, Neg. LLF: 125.72816949750545
Iteration: 10, Func. Count: 64, Neg. LLF: 125.71684747101946
Iteration: 11, Func. Count: 70, Neg. LLF: 125.70918250134402
Iteration: 12, Func. Count: 76, Neg. LLF: 125.69587441084754
Iteration: 13, Func. Count: 82, Neg. LLF: 125.69354469607809
Iteration: 14, Func. Count: 88, Neg. LLF: 125.69299658607054
Iteration: 15, Func. Count: 94, Neg. LLF: 125.69296758571181
Iteration: 16, Func. Count: 100, Neg. LLF: 125.69296645094906
Iteration: 17, Func. Count: 105, Neg. LLF: 125.69296645076373
Optimization terminated successfully (Exit mode 0)
Current function value: 125.69296645094906
Iterations: 17
Function evaluations: 105
Gradient evaluations: 17
Iteration: 1, Func. Count: 8, Neg. LLF: 151.45579952875926
Iteration: 2, Func. Count: 17, Neg. LLF: 125.76274102285275
Iteration: 3, Func. Count: 24, Neg. LLF: 125.7548932640313
Iteration: 4, Func. Count: 31, Neg. LLF: 125.7476925755631
Iteration: 5, Func. Count: 38, Neg. LLF: 125.74609352788099
Iteration: 6, Func. Count: 45, Neg. LLF: 125.73516358819417
Iteration: 7, Func. Count: 52, Neg. LLF: 125.72856055775524
Iteration: 8, Func. Count: 59, Neg. LLF: 125.72236944603864
Iteration: 9, Func. Count: 66, Neg. LLF: 125.7164371627197
Iteration: 10, Func. Count: 73, Neg. LLF: 125.70927779940486
Iteration: 11, Func. Count: 80, Neg. LLF: 125.7042695172717
Iteration: 12, Func. Count: 87, Neg. LLF: 125.70409188507261
Iteration: 13, Func. Count: 95, Neg. LLF: 125.70193394485358
Iteration: 14, Func. Count: 102, Neg. LLF: 125.70191226892197
Iteration: 15, Func. Count: 108, Neg. LLF: 125.70191226882378
Optimization terminated successfully (Exit mode 0)
Current function value: 125.70191226892197
Iterations: 15
Function evaluations: 108
Gradient evaluations: 15
Iteration: 1, Func. Count: 9, Neg. LLF: 138.92747391248494
Iteration: 2, Func. Count: 19, Neg. LLF: 125.8092545740835
Iteration: 3, Func. Count: 28, Neg. LLF: 125.3785708422892
Iteration: 4, Func. Count: 36, Neg. LLF: 125.29108722949812
Iteration: 5, Func. Count: 44, Neg. LLF: 124.58314468031918
Iteration: 6, Func. Count: 52, Neg. LLF: 123.06701130635993
Iteration: 7, Func. Count: 60, Neg. LLF: 121.41873770372975
Iteration: 8, Func. Count: 68, Neg. LLF: 121.19683872219447
Iteration: 9, Func. Count: 76, Neg. LLF: 121.07222805627134
Iteration: 10, Func. Count: 84, Neg. LLF: 120.91944700387666
Iteration: 11, Func. Count: 92, Neg. LLF: 120.90943962375854
Iteration: 12, Func. Count: 100, Neg. LLF: 120.90885030733843
Iteration: 13, Func. Count: 108, Neg. LLF: 120.90853400469146
Iteration: 14, Func. Count: 116, Neg. LLF: 120.90873499557426
Iteration: 15, Func. Count: 133, Neg. LLF: 120.90965281720264
Iteration: 16, Func. Count: 143, Neg. LLF: 120.9088432919961
Iteration: 17, Func. Count: 153, Neg. LLF: 120.90875171915191
Iteration: 18, Func. Count: 162, Neg. LLF: 120.90875171851708
Iteration: 19, Func. Count: 169, Neg. LLF: 120.9087516130656
Optimization terminated successfully (Exit mode 0)
Current function value: 120.90875171851708
Iterations: 20
Function evaluations: 169
Gradient evaluations: 19
Iteration: 1, Func. Count: 6, Neg. LLF: 137.69015379346956
Iteration: 2, Func. Count: 12, Neg. LLF: 132.1364578481567
Iteration: 3, Func. Count: 18, Neg. LLF: 125.29442547935317
Iteration: 4, Func. Count: 23, Neg. LLF: 125.3715359642327
Iteration: 5, Func. Count: 31, Neg. LLF: 124.79253351040785
Iteration: 6, Func. Count: 36, Neg. LLF: 124.74094816073614
Iteration: 7, Func. Count: 41, Neg. LLF: 124.71364693116567
Iteration: 8, Func. Count: 46, Neg. LLF: 124.71219310481038
Iteration: 9, Func. Count: 51, Neg. LLF: 124.71193579484778
Iteration: 10, Func. Count: 56, Neg. LLF: 124.71191975364415
Iteration: 11, Func. Count: 61, Neg. LLF: 124.71191714477693
Iteration: 12, Func. Count: 65, Neg. LLF: 124.7119171447127
Optimization terminated successfully (Exit mode 0)
Current function value: 124.71191714477693
Iterations: 12
Function evaluations: 65
Gradient evaluations: 12
Iteration: 1, Func. Count: 7, Neg. LLF: 128.57130497995772
Iteration: 2, Func. Count: 15, Neg. LLF: 128.75623471077026
Iteration: 3, Func. Count: 22, Neg. LLF: 125.4585343823398
Iteration: 4, Func. Count: 28, Neg. LLF: 124.90763590093758
Iteration: 5, Func. Count: 34, Neg. LLF: 124.83581695065205
Iteration: 6, Func. Count: 40, Neg. LLF: 124.7779586744172
Iteration: 7, Func. Count: 46, Neg. LLF: 124.73368284143938
Iteration: 8, Func. Count: 52, Neg. LLF: 124.71331124679214
Iteration: 9, Func. Count: 58, Neg. LLF: 124.71216052037568
Iteration: 10, Func. Count: 64, Neg. LLF: 124.7120450362679
Iteration: 11, Func. Count: 70, Neg. LLF: 124.71197138092354
Iteration: 12, Func. Count: 76, Neg. LLF: 124.71193262939505
Iteration: 13, Func. Count: 82, Neg. LLF: 124.71191804159942
Iteration: 14, Func. Count: 88, Neg. LLF: 124.71191668363566
Iteration: 15, Func. Count: 93, Neg. LLF: 124.71191672025626
Optimization terminated successfully (Exit mode 0)
Current function value: 124.71191668363566
Iterations: 15
Function evaluations: 93
Gradient evaluations: 15
Iteration: 1, Func. Count: 8, Neg. LLF: 127.96913500469779
Iteration: 2, Func. Count: 17, Neg. LLF: 129.97110544921156
Iteration: 3, Func. Count: 25, Neg. LLF: 125.42834045445129
Iteration: 4, Func. Count: 33, Neg. LLF: 125.61946967279164
Iteration: 5, Func. Count: 41, Neg. LLF: 125.28652481560331
Iteration: 6, Func. Count: 48, Neg. LLF: 125.235512705479
Iteration: 7, Func. Count: 55, Neg. LLF: 124.97244502474304
Iteration: 8, Func. Count: 62, Neg. LLF: 124.91726521246495
Iteration: 9, Func. Count: 69, Neg. LLF: 124.78288987702537
Iteration: 10, Func. Count: 76, Neg. LLF: 124.82778145393117
Iteration: 11, Func. Count: 84, Neg. LLF: 124.72722129631994
Iteration: 12, Func. Count: 91, Neg. LLF: 124.72156530168215
Iteration: 13, Func. Count: 98, Neg. LLF: 124.7160203089707
Iteration: 14, Func. Count: 105, Neg. LLF: 124.7127274241278
Iteration: 15, Func. Count: 112, Neg. LLF: 124.71198531682039
Iteration: 16, Func. Count: 119, Neg. LLF: 124.7119194185773
Iteration: 17, Func. Count: 126, Neg. LLF: 124.71191670236851
Iteration: 18, Func. Count: 132, Neg. LLF: 124.71191674469962
Optimization terminated successfully (Exit mode 0)
Current function value: 124.71191670236851
Iterations: 18
Function evaluations: 132
Gradient evaluations: 18
Iteration: 1, Func. Count: 9, Neg. LLF: 127.27263131541395
Iteration: 2, Func. Count: 19, Neg. LLF: 131.19687881082174
Iteration: 3, Func. Count: 28, Neg. LLF: 124.96932575830242
Iteration: 4, Func. Count: 36, Neg. LLF: 124.81203397840706
Iteration: 5, Func. Count: 44, Neg. LLF: 126.01964327540793
Iteration: 6, Func. Count: 53, Neg. LLF: 124.42447427034732
Iteration: 7, Func. Count: 61, Neg. LLF: 123.7735510343337
Iteration: 8, Func. Count: 69, Neg. LLF: 123.77616614675846
Iteration: 9, Func. Count: 78, Neg. LLF: 123.73514043227145
Iteration: 10, Func. Count: 86, Neg. LLF: 123.73191847008115
Iteration: 11, Func. Count: 94, Neg. LLF: 123.73187601353699
Iteration: 12, Func. Count: 102, Neg. LLF: 123.73187302001007
Iteration: 13, Func. Count: 109, Neg. LLF: 123.73187296387206
Optimization terminated successfully (Exit mode 0)
Current function value: 123.73187302001007
Iterations: 13
Function evaluations: 109
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 128.0956681247016
Iteration: 2, Func. Count: 20, Neg. LLF: 131.61714170681006
Iteration: 3, Func. Count: 30, Neg. LLF: 136.10286853789475
Iteration: 4, Func. Count: 40, Neg. LLF: 123.82801457021402
Iteration: 5, Func. Count: 49, Neg. LLF: 131.09303446587222
Iteration: 6, Func. Count: 59, Neg. LLF: 123.17323702837197
Iteration: 7, Func. Count: 69, Neg. LLF: 120.9963178517512
Iteration: 8, Func. Count: 78, Neg. LLF: 120.91643210715793
Iteration: 9, Func. Count: 87, Neg. LLF: 120.88072841020256
Iteration: 10, Func. Count: 96, Neg. LLF: 120.8958872492969
Iteration: 11, Func. Count: 106, Neg. LLF: 120.87216407471553
Iteration: 12, Func. Count: 115, Neg. LLF: 120.8736681569865
Iteration: 13, Func. Count: 134, Neg. LLF: 120.86753814123554
Iteration: 14, Func. Count: 145, Neg. LLF: 120.86959829403375
Iteration: 15, Func. Count: 156, Neg. LLF: 121.10470984067565
Iteration: 16, Func. Count: 167, Neg. LLF: 120.90553642646593
Iteration: 17, Func. Count: 178, Neg. LLF: 120.87730082688833
Iteration: 18, Func. Count: 188, Neg. LLF: 120.87765009555139
Iteration: 19, Func. Count: 198, Neg. LLF: 120.8770786772725
Iteration: 20, Func. Count: 206, Neg. LLF: 120.87707856033036
Optimization terminated successfully (Exit mode 0)
Current function value: 120.8770786772725
Iterations: 21
Function evaluations: 206
Gradient evaluations: 20
Iteration: 1, Func. Count: 7, Neg. LLF: 132.32576890960732
Iteration: 2, Func. Count: 14, Neg. LLF: 136.44183297969224
Iteration: 3, Func. Count: 21, Neg. LLF: 125.18359478164307
Iteration: 4, Func. Count: 27, Neg. LLF: 125.31295099432974
Iteration: 5, Func. Count: 36, Neg. LLF: 124.77707507412106
Iteration: 6, Func. Count: 42, Neg. LLF: 124.72888573598308
Iteration: 7, Func. Count: 48, Neg. LLF: 124.71544161763211
Iteration: 8, Func. Count: 54, Neg. LLF: 124.71260797696462
Iteration: 9, Func. Count: 60, Neg. LLF: 124.71194584130748
Iteration: 10, Func. Count: 66, Neg. LLF: 124.71191946148421
Iteration: 11, Func. Count: 72, Neg. LLF: 124.71191727386456
Iteration: 12, Func. Count: 77, Neg. LLF: 124.71191751936473
Optimization terminated successfully (Exit mode 0)
Current function value: 124.71191727386456
Iterations: 12
Function evaluations: 77
Gradient evaluations: 12
Iteration: 1, Func. Count: 8, Neg. LLF: 128.64334310869313
Iteration: 2, Func. Count: 17, Neg. LLF: 128.62229526362805
Iteration: 3, Func. Count: 25, Neg. LLF: 125.46143554421215
Iteration: 4, Func. Count: 32, Neg. LLF: 124.93582033079305
Iteration: 5, Func. Count: 39, Neg. LLF: 124.85384929357751
Iteration: 6, Func. Count: 46, Neg. LLF: 124.81233861095895
Iteration: 7, Func. Count: 53, Neg. LLF: 124.79318093210584
Iteration: 8, Func. Count: 60, Neg. LLF: 124.72536191521839
Iteration: 9, Func. Count: 67, Neg. LLF: 124.71662031427806
Iteration: 10, Func. Count: 74, Neg. LLF: 124.71512304289594
Iteration: 11, Func. Count: 81, Neg. LLF: 124.7123374933624
Iteration: 12, Func. Count: 88, Neg. LLF: 124.7119531909412
Iteration: 13, Func. Count: 95, Neg. LLF: 124.71191711475385
Iteration: 14, Func. Count: 101, Neg. LLF: 124.7119171513507
Optimization terminated successfully (Exit mode 0)
Current function value: 124.71191711475385
Iterations: 14
Function evaluations: 101
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 128.02242170836107
Iteration: 2, Func. Count: 19, Neg. LLF: 129.76191155506112
Iteration: 3, Func. Count: 28, Neg. LLF: 125.40771691963914
Iteration: 4, Func. Count: 37, Neg. LLF: 125.61969916814783
Iteration: 5, Func. Count: 46, Neg. LLF: 125.2886181630854
Iteration: 6, Func. Count: 54, Neg. LLF: 125.27359097874309
Iteration: 7, Func. Count: 62, Neg. LLF: 125.00329875791792
Iteration: 8, Func. Count: 70, Neg. LLF: 124.73917542420523
Iteration: 9, Func. Count: 78, Neg. LLF: 124.72838477069834
Iteration: 10, Func. Count: 86, Neg. LLF: 124.7151441280648
Iteration: 11, Func. Count: 94, Neg. LLF: 124.71301957707163
Iteration: 12, Func. Count: 102, Neg. LLF: 124.71203151927945
Iteration: 13, Func. Count: 110, Neg. LLF: 124.71194720913799
Iteration: 14, Func. Count: 118, Neg. LLF: 124.7119246017619
Iteration: 15, Func. Count: 126, Neg. LLF: 124.71191870833245
Iteration: 16, Func. Count: 134, Neg. LLF: 124.71191693382463
Iteration: 17, Func. Count: 141, Neg. LLF: 124.71191697611093
Optimization terminated successfully (Exit mode 0)
Current function value: 124.71191693382463
Iterations: 17
Function evaluations: 141
Gradient evaluations: 17
Iteration: 1, Func. Count: 10, Neg. LLF: 127.37255735874807
Iteration: 2, Func. Count: 21, Neg. LLF: 130.99581914111897
Iteration: 3, Func. Count: 31, Neg. LLF: 125.07022146496665
Iteration: 4, Func. Count: 40, Neg. LLF: 124.81200359172855
Iteration: 5, Func. Count: 49, Neg. LLF: 125.29594671167203
Iteration: 6, Func. Count: 59, Neg. LLF: 124.56656831734202
Iteration: 7, Func. Count: 68, Neg. LLF: 123.76669284588134
Iteration: 8, Func. Count: 77, Neg. LLF: 124.07944272227225
Iteration: 9, Func. Count: 87, Neg. LLF: 123.73361219768685
Iteration: 10, Func. Count: 96, Neg. LLF: 123.73196186170269
Iteration: 11, Func. Count: 105, Neg. LLF: 123.73187686683289
Iteration: 12, Func. Count: 114, Neg. LLF: 123.7318732780811
Iteration: 13, Func. Count: 122, Neg. LLF: 123.73187322186723
Optimization terminated successfully (Exit mode 0)
Current function value: 123.7318732780811
Iterations: 13
Function evaluations: 122
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 128.06349890676995
Iteration: 2, Func. Count: 22, Neg. LLF: 131.3314808936635
Iteration: 3, Func. Count: 33, Neg. LLF: 139.7818302985661
Iteration: 4, Func. Count: 45, Neg. LLF: 124.02338380654693
Iteration: 5, Func. Count: 55, Neg. LLF: 126.81108827819392
Iteration: 6, Func. Count: 66, Neg. LLF: 122.61155236331807
Iteration: 7, Func. Count: 76, Neg. LLF: 123.00697090570915
Iteration: 8, Func. Count: 87, Neg. LLF: 121.82188622343202
Iteration: 9, Func. Count: 97, Neg. LLF: 121.14572766245114
Iteration: 10, Func. Count: 107, Neg. LLF: 121.05420390706371
Iteration: 11, Func. Count: 117, Neg. LLF: 120.93364476683902
Iteration: 12, Func. Count: 127, Neg. LLF: 120.91824255875316
Iteration: 13, Func. Count: 137, Neg. LLF: 120.90202042745995
Iteration: 14, Func. Count: 147, Neg. LLF: 120.88741051931586
Iteration: 15, Func. Count: 157, Neg. LLF: 120.87735119216835
Iteration: 16, Func. Count: 167, Neg. LLF: 120.87709370265732
Iteration: 17, Func. Count: 177, Neg. LLF: 120.8770788795303
Iteration: 18, Func. Count: 186, Neg. LLF: 120.87707876284101
Optimization terminated successfully (Exit mode 0)
Current function value: 120.8770788795303
Iterations: 18
Function evaluations: 186
Gradient evaluations: 18
Iteration: 1, Func. Count: 8, Neg. LLF: 132.28530519879772
Iteration: 2, Func. Count: 16, Neg. LLF: 136.39294199168017
Iteration: 3, Func. Count: 24, Neg. LLF: 125.1891505634329
Iteration: 4, Func. Count: 31, Neg. LLF: 125.31219040502792
Iteration: 5, Func. Count: 41, Neg. LLF: 124.77752896401952
Iteration: 6, Func. Count: 48, Neg. LLF: 124.72900445747003
Iteration: 7, Func. Count: 55, Neg. LLF: 124.71548540305092
Iteration: 8, Func. Count: 62, Neg. LLF: 124.71261290678136
Iteration: 9, Func. Count: 69, Neg. LLF: 124.71194603859509
Iteration: 10, Func. Count: 76, Neg. LLF: 124.71191930284469
Iteration: 11, Func. Count: 83, Neg. LLF: 124.71191721305026
Iteration: 12, Func. Count: 89, Neg. LLF: 124.71191738775065
Optimization terminated successfully (Exit mode 0)
Current function value: 124.71191721305026
Iterations: 12
Function evaluations: 89
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 128.6467822781723
Iteration: 2, Func. Count: 19, Neg. LLF: 128.63145126979575
Iteration: 3, Func. Count: 28, Neg. LLF: 125.46489078178209
Iteration: 4, Func. Count: 36, Neg. LLF: 125.09636856842133
Iteration: 5, Func. Count: 44, Neg. LLF: 124.84728452664726
Iteration: 6, Func. Count: 52, Neg. LLF: 124.77592476028298
Iteration: 7, Func. Count: 60, Neg. LLF: 124.71645822504577
Iteration: 8, Func. Count: 68, Neg. LLF: 124.71302190462231
Iteration: 9, Func. Count: 76, Neg. LLF: 124.71257259762676
Iteration: 10, Func. Count: 84, Neg. LLF: 124.71209936349258
Iteration: 11, Func. Count: 92, Neg. LLF: 124.7119644284151
Iteration: 12, Func. Count: 100, Neg. LLF: 124.71191940009835
Iteration: 13, Func. Count: 108, Neg. LLF: 124.71191672022616
Iteration: 14, Func. Count: 115, Neg. LLF: 124.71191675686856
Optimization terminated successfully (Exit mode 0)
Current function value: 124.71191672022616
Iterations: 14
Function evaluations: 115
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 128.0264380942875
Iteration: 2, Func. Count: 21, Neg. LLF: 129.79711608485735
Iteration: 3, Func. Count: 31, Neg. LLF: 125.40459497223223
Iteration: 4, Func. Count: 41, Neg. LLF: 125.59635109628245
Iteration: 5, Func. Count: 51, Neg. LLF: 125.28878849078788
Iteration: 6, Func. Count: 60, Neg. LLF: 125.27453763616288
Iteration: 7, Func. Count: 69, Neg. LLF: 124.96070129798672
Iteration: 8, Func. Count: 78, Neg. LLF: 124.73226721935316
Iteration: 9, Func. Count: 87, Neg. LLF: 124.72378774553303
Iteration: 10, Func. Count: 96, Neg. LLF: 124.7148857381605
Iteration: 11, Func. Count: 105, Neg. LLF: 124.71302451623501
Iteration: 12, Func. Count: 114, Neg. LLF: 124.71205585536356
Iteration: 13, Func. Count: 123, Neg. LLF: 124.71193549250837
Iteration: 14, Func. Count: 132, Neg. LLF: 124.71191930986794
Iteration: 15, Func. Count: 141, Neg. LLF: 124.71191735890449
Iteration: 16, Func. Count: 149, Neg. LLF: 124.71191740123321
Optimization terminated successfully (Exit mode 0)
Current function value: 124.71191735890449
Iterations: 16
Function evaluations: 149
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 127.29944900210302
Iteration: 2, Func. Count: 23, Neg. LLF: 131.06841403678237
Iteration: 3, Func. Count: 34, Neg. LLF: 124.94814084641801
Iteration: 4, Func. Count: 44, Neg. LLF: 124.82284465215014
Iteration: 5, Func. Count: 54, Neg. LLF: 126.45754000282564
Iteration: 6, Func. Count: 65, Neg. LLF: 124.44858615846722
Iteration: 7, Func. Count: 75, Neg. LLF: 123.77461915800133
Iteration: 8, Func. Count: 85, Neg. LLF: 123.73424264231546
Iteration: 9, Func. Count: 95, Neg. LLF: 123.73232608619281
Iteration: 10, Func. Count: 105, Neg. LLF: 123.73190163139213
Iteration: 11, Func. Count: 115, Neg. LLF: 123.73187218248613
Iteration: 12, Func. Count: 124, Neg. LLF: 123.73187212631473
Optimization terminated successfully (Exit mode 0)
Current function value: 123.73187218248613
Iterations: 13
Function evaluations: 124
Gradient evaluations: 12
Iteration: 1, Func. Count: 12, Neg. LLF: 127.84807826501364
Iteration: 2, Func. Count: 24, Neg. LLF: 131.15151546582317
Iteration: 3, Func. Count: 36, Neg. LLF: 143.24154717710493
Iteration: 4, Func. Count: 49, Neg. LLF: 123.90902195051834
Iteration: 5, Func. Count: 60, Neg. LLF: 129.38621636860373
Iteration: 6, Func. Count: 72, Neg. LLF: 122.2515808046892
Iteration: 7, Func. Count: 83, Neg. LLF: 121.03510948383527
Iteration: 8, Func. Count: 94, Neg. LLF: 120.97109158848244
Iteration: 9, Func. Count: 105, Neg. LLF: 120.96484133373416
Iteration: 10, Func. Count: 116, Neg. LLF: 120.93320925299162
Iteration: 11, Func. Count: 127, Neg. LLF: 120.91216389825881
Iteration: 12, Func. Count: 138, Neg. LLF: 120.88300651917899
Iteration: 13, Func. Count: 149, Neg. LLF: 120.87743222031973
Iteration: 14, Func. Count: 160, Neg. LLF: 120.87712014809732
Iteration: 15, Func. Count: 171, Neg. LLF: 120.8770812422237
Iteration: 16, Func. Count: 182, Neg. LLF: 120.87707853226134
Iteration: 17, Func. Count: 192, Neg. LLF: 120.87707841543931
Optimization terminated successfully (Exit mode 0)
Current function value: 120.87707853226134
Iterations: 17
Function evaluations: 192
Gradient evaluations: 17
Iteration: 1, Func. Count: 9, Neg. LLF: 132.1627731273393
Iteration: 2, Func. Count: 18, Neg. LLF: 136.4434383322649
Iteration: 3, Func. Count: 27, Neg. LLF: 125.18667943204886
Iteration: 4, Func. Count: 35, Neg. LLF: 125.31230991870181
Iteration: 5, Func. Count: 46, Neg. LLF: 124.77638296165951
Iteration: 6, Func. Count: 54, Neg. LLF: 124.72883956407476
Iteration: 7, Func. Count: 62, Neg. LLF: 124.71539018196681
Iteration: 8, Func. Count: 70, Neg. LLF: 124.71259183356185
Iteration: 9, Func. Count: 78, Neg. LLF: 124.71194478339012
Iteration: 10, Func. Count: 86, Neg. LLF: 124.71191923360743
Iteration: 11, Func. Count: 94, Neg. LLF: 124.71191720076868
Iteration: 12, Func. Count: 101, Neg. LLF: 124.71191743056525
Optimization terminated successfully (Exit mode 0)
Current function value: 124.71191720076868
Iterations: 12
Function evaluations: 101
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 128.61280922720167
Iteration: 2, Func. Count: 21, Neg. LLF: 128.68115356447154
Iteration: 3, Func. Count: 31, Neg. LLF: 125.46695624609386
Iteration: 4, Func. Count: 40, Neg. LLF: 124.98807075341952
Iteration: 5, Func. Count: 49, Neg. LLF: 124.8562570423372
Iteration: 6, Func. Count: 58, Neg. LLF: 124.80222884504398
Iteration: 7, Func. Count: 67, Neg. LLF: 124.73981852880257
Iteration: 8, Func. Count: 76, Neg. LLF: 124.71449571083619
Iteration: 9, Func. Count: 85, Neg. LLF: 124.71216918693504
Iteration: 10, Func. Count: 94, Neg. LLF: 124.71192862137354
Iteration: 11, Func. Count: 103, Neg. LLF: 124.71191751975601
Iteration: 12, Func. Count: 111, Neg. LLF: 124.71191755641999
Optimization terminated successfully (Exit mode 0)
Current function value: 124.71191751975601
Iterations: 12
Function evaluations: 111
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 128.01140490602174
Iteration: 2, Func. Count: 23, Neg. LLF: 129.78418961856264
Iteration: 3, Func. Count: 34, Neg. LLF: 125.4022808460854
Iteration: 4, Func. Count: 44, Neg. LLF: 125.45186986669724
Iteration: 5, Func. Count: 55, Neg. LLF: 125.75121688527751
Iteration: 6, Func. Count: 66, Neg. LLF: 125.28113486937605
Iteration: 7, Func. Count: 76, Neg. LLF: 125.24812166196975
Iteration: 8, Func. Count: 86, Neg. LLF: 124.93170298829031
Iteration: 9, Func. Count: 96, Neg. LLF: 124.83858384497958
Iteration: 10, Func. Count: 106, Neg. LLF: 124.7202315835174
Iteration: 11, Func. Count: 116, Neg. LLF: 124.71579678035528
Iteration: 12, Func. Count: 126, Neg. LLF: 124.71429382102107
Iteration: 13, Func. Count: 136, Neg. LLF: 124.7119492741602
Iteration: 14, Func. Count: 146, Neg. LLF: 124.71192330280304
Iteration: 15, Func. Count: 156, Neg. LLF: 124.7119177298236
Iteration: 16, Func. Count: 166, Neg. LLF: 124.71191696380077
Optimization terminated successfully (Exit mode 0)
Current function value: 124.71191696380077
Iterations: 16
Function evaluations: 166
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 127.43016437620962
Iteration: 2, Func. Count: 25, Neg. LLF: 130.94297056497942
Iteration: 3, Func. Count: 37, Neg. LLF: 124.86830589718119
Iteration: 4, Func. Count: 48, Neg. LLF: 124.89942911479399
Iteration: 5, Func. Count: 60, Neg. LLF: 124.56948621433635
Iteration: 6, Func. Count: 71, Neg. LLF: 123.97450595297332
Iteration: 7, Func. Count: 82, Neg. LLF: 129.28227488655367
Iteration: 8, Func. Count: 94, Neg. LLF: 123.73524179227518
Iteration: 9, Func. Count: 105, Neg. LLF: 123.73204018621348
Iteration: 10, Func. Count: 116, Neg. LLF: 123.73188950789391
Iteration: 11, Func. Count: 127, Neg. LLF: 123.73187664862192
Iteration: 12, Func. Count: 138, Neg. LLF: 123.73187305573748
Iteration: 13, Func. Count: 148, Neg. LLF: 123.73187299960986
Optimization terminated successfully (Exit mode 0)
Current function value: 123.73187305573748
Iterations: 13
Function evaluations: 148
Gradient evaluations: 13
Iteration: 1, Func. Count: 13, Neg. LLF: 127.80878632471412
Iteration: 2, Func. Count: 26, Neg. LLF: 131.03526893584194
Iteration: 3, Func. Count: 39, Neg. LLF: 145.84347179955108
Iteration: 4, Func. Count: 53, Neg. LLF: 123.87950082619658
Iteration: 5, Func. Count: 65, Neg. LLF: 128.9935767167623
Iteration: 6, Func. Count: 78, Neg. LLF: 124.22375439567388
Iteration: 7, Func. Count: 91, Neg. LLF: 122.11876142310835
Iteration: 8, Func. Count: 103, Neg. LLF: 121.3127513777893
Iteration: 9, Func. Count: 115, Neg. LLF: 121.19903064254882
Iteration: 10, Func. Count: 127, Neg. LLF: 121.00351174369695
Iteration: 11, Func. Count: 139, Neg. LLF: 120.97507425351102
Iteration: 12, Func. Count: 151, Neg. LLF: 120.94880605501206
Iteration: 13, Func. Count: 163, Neg. LLF: 120.89753711625451
Iteration: 14, Func. Count: 175, Neg. LLF: 120.8809540587642
Iteration: 15, Func. Count: 187, Neg. LLF: 120.87735274194195
Iteration: 16, Func. Count: 199, Neg. LLF: 120.8770931364912
Iteration: 17, Func. Count: 211, Neg. LLF: 120.87707881183513
Iteration: 18, Func. Count: 222, Neg. LLF: 120.87707869503087
Optimization terminated successfully (Exit mode 0)
Current function value: 120.87707881183513
Iterations: 18
Function evaluations: 222
Gradient evaluations: 18
Iteration: 1, Func. Count: 6, Neg. LLF: 127.92505062724189
Iteration: 2, Func. Count: 12, Neg. LLF: 136.06040505276007
Iteration: 3, Func. Count: 18, Neg. LLF: 125.40065050043138
Iteration: 4, Func. Count: 23, Neg. LLF: 125.35837944336247
Iteration: 5, Func. Count: 28, Neg. LLF: 125.30403765517607
Iteration: 6, Func. Count: 33, Neg. LLF: 125.29907209427428
Iteration: 7, Func. Count: 38, Neg. LLF: 125.29830017559276
Iteration: 8, Func. Count: 43, Neg. LLF: 125.29810528046123
Iteration: 9, Func. Count: 48, Neg. LLF: 125.29804354566646
Iteration: 10, Func. Count: 53, Neg. LLF: 125.2980361491317
Iteration: 11, Func. Count: 57, Neg. LLF: 125.29803643325175
Optimization terminated successfully (Exit mode 0)
Current function value: 125.2980361491317
Iterations: 11
Function evaluations: 57
Gradient evaluations: 11
Iteration: 1, Func. Count: 7, Neg. LLF: 165.50697341663565
Iteration: 2, Func. Count: 15, Neg. LLF: 125.77882143510723
Iteration: 3, Func. Count: 21, Neg. LLF: 125.78152270618544
Iteration: 4, Func. Count: 28, Neg. LLF: 125.77854027303816
Iteration: 5, Func. Count: 34, Neg. LLF: 125.7781377679081
Iteration: 6, Func. Count: 40, Neg. LLF: 125.77686607450244
Iteration: 7, Func. Count: 46, Neg. LLF: 125.77536264132041
Iteration: 8, Func. Count: 52, Neg. LLF: 125.77144608122464
Iteration: 9, Func. Count: 58, Neg. LLF: 125.7548251947833
Iteration: 10, Func. Count: 64, Neg. LLF: 126.13147881609295
Iteration: 11, Func. Count: 71, Neg. LLF: 127.08078373021114
Iteration: 12, Func. Count: 78, Neg. LLF: 127.0421922967121
Iteration: 13, Func. Count: 85, Neg. LLF: 126.49908623907446
Iteration: 14, Func. Count: 92, Neg. LLF: 125.71757762396177
Iteration: 15, Func. Count: 99, Neg. LLF: 139.80167802913823
Iteration: 16, Func. Count: 107, Neg. LLF: 125.75666600472316
Iteration: 17, Func. Count: 114, Neg. LLF: 125.68537051122783
Iteration: 18, Func. Count: 120, Neg. LLF: 125.68392730170392
Iteration: 19, Func. Count: 126, Neg. LLF: 125.68358349137733
Iteration: 20, Func. Count: 132, Neg. LLF: 125.68358646965845
Iteration: 21, Func. Count: 139, Neg. LLF: 125.68355699555354
Iteration: 22, Func. Count: 144, Neg. LLF: 125.68355699554724
Optimization terminated successfully (Exit mode 0)
Current function value: 125.68355699555354
Iterations: 23
Function evaluations: 144
Gradient evaluations: 22
Iteration: 1, Func. Count: 8, Neg. LLF: 156.97938554295538
Iteration: 2, Func. Count: 17, Neg. LLF: 125.76691123086107
Iteration: 3, Func. Count: 24, Neg. LLF: 125.77642223214802
Iteration: 4, Func. Count: 32, Neg. LLF: 125.76022976234381
Iteration: 5, Func. Count: 39, Neg. LLF: 125.7558035949956
Iteration: 6, Func. Count: 46, Neg. LLF: 125.75416155400609
Iteration: 7, Func. Count: 53, Neg. LLF: 125.74479778493001
Iteration: 8, Func. Count: 60, Neg. LLF: 125.73774759744424
Iteration: 9, Func. Count: 67, Neg. LLF: 125.7231734869414
Iteration: 10, Func. Count: 74, Neg. LLF: 125.70851388123748
Iteration: 11, Func. Count: 81, Neg. LLF: 125.7014962146442
Iteration: 12, Func. Count: 88, Neg. LLF: 125.70032260218996
Iteration: 13, Func. Count: 96, Neg. LLF: 125.69475908890044
Iteration: 14, Func. Count: 104, Neg. LLF: 125.69297316708939
Iteration: 15, Func. Count: 111, Neg. LLF: 125.69296630745994
Iteration: 16, Func. Count: 117, Neg. LLF: 125.69296630747104
Optimization terminated successfully (Exit mode 0)
Current function value: 125.69296630745994
Iterations: 16
Function evaluations: 117
Gradient evaluations: 16
Iteration: 1, Func. Count: 9, Neg. LLF: 151.30391858006496
Iteration: 2, Func. Count: 19, Neg. LLF: 125.75539975177071
Iteration: 3, Func. Count: 27, Neg. LLF: 125.75553711089343
Iteration: 4, Func. Count: 36, Neg. LLF: 125.74344461366432
Iteration: 5, Func. Count: 44, Neg. LLF: 125.73847814285682
Iteration: 6, Func. Count: 52, Neg. LLF: 125.73584527520369
Iteration: 7, Func. Count: 60, Neg. LLF: 125.72862112888484
Iteration: 8, Func. Count: 68, Neg. LLF: 125.715220126856
Iteration: 9, Func. Count: 76, Neg. LLF: 125.70549691087743
Iteration: 10, Func. Count: 84, Neg. LLF: 125.7026155745319
Iteration: 11, Func. Count: 92, Neg. LLF: 125.70217441745712
Iteration: 12, Func. Count: 100, Neg. LLF: 125.70191803386435
Iteration: 13, Func. Count: 108, Neg. LLF: 125.70191361595894
Iteration: 14, Func. Count: 116, Neg. LLF: 125.70191191684471
Iteration: 15, Func. Count: 123, Neg. LLF: 125.70191191683546
Optimization terminated successfully (Exit mode 0)
Current function value: 125.70191191684471
Iterations: 15
Function evaluations: 123
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 128.49390453257277
Iteration: 2, Func. Count: 21, Neg. LLF: 126.74217864378112
Iteration: 3, Func. Count: 31, Neg. LLF: 124.96714491536379
Iteration: 4, Func. Count: 40, Neg. LLF: 124.45509870438704
Iteration: 5, Func. Count: 49, Neg. LLF: 131.83745089302025
Iteration: 6, Func. Count: 59, Neg. LLF: 122.93367667348406
Iteration: 7, Func. Count: 68, Neg. LLF: 121.70278516976222
Iteration: 8, Func. Count: 77, Neg. LLF: 121.59850259117998
Iteration: 9, Func. Count: 86, Neg. LLF: 121.39809882983296
Iteration: 10, Func. Count: 95, Neg. LLF: 121.28723879926659
Iteration: 11, Func. Count: 104, Neg. LLF: 121.05449833208071
Iteration: 12, Func. Count: 113, Neg. LLF: 120.92305049666699
Iteration: 13, Func. Count: 122, Neg. LLF: 120.91012687733144
Iteration: 14, Func. Count: 131, Neg. LLF: 120.90903026540863
Iteration: 15, Func. Count: 140, Neg. LLF: 120.90877643279924
Iteration: 16, Func. Count: 149, Neg. LLF: 120.90875735131115
Iteration: 17, Func. Count: 158, Neg. LLF: 120.9087421375522
Iteration: 18, Func. Count: 167, Neg. LLF: 120.9087523500497
Iteration: 19, Func. Count: 177, Neg. LLF: 120.90874221209445
Optimization terminated successfully (Exit mode 0)
Current function value: 120.90874231754337
Iterations: 23
Function evaluations: 177
Gradient evaluations: 19
Iteration: 1, Func. Count: 7, Neg. LLF: 128.39876843831587
Iteration: 2, Func. Count: 14, Neg. LLF: 138.0766742917187
Iteration: 3, Func. Count: 21, Neg. LLF: 125.21121348738562
Iteration: 4, Func. Count: 27, Neg. LLF: 125.32242697695544
Iteration: 5, Func. Count: 36, Neg. LLF: 124.83788551325601
Iteration: 6, Func. Count: 42, Neg. LLF: 124.73972456454442
Iteration: 7, Func. Count: 48, Neg. LLF: 124.71974902499113
Iteration: 8, Func. Count: 54, Neg. LLF: 124.714367590654
Iteration: 9, Func. Count: 60, Neg. LLF: 124.7130064616436
Iteration: 10, Func. Count: 66, Neg. LLF: 124.71241063704272
Iteration: 11, Func. Count: 72, Neg. LLF: 124.7119269867032
Iteration: 12, Func. Count: 78, Neg. LLF: 124.71191687049392
Iteration: 13, Func. Count: 83, Neg. LLF: 124.71191687049414
Optimization terminated successfully (Exit mode 0)
Current function value: 124.71191687049392
Iterations: 13
Function evaluations: 83
Gradient evaluations: 13
Iteration: 1, Func. Count: 8, Neg. LLF: 128.6777690673359
Iteration: 2, Func. Count: 17, Neg. LLF: 128.6052977171326
Iteration: 3, Func. Count: 25, Neg. LLF: 125.45758449658686
Iteration: 4, Func. Count: 32, Neg. LLF: 124.90263094690384
Iteration: 5, Func. Count: 39, Neg. LLF: 124.87410704984384
Iteration: 6, Func. Count: 47, Neg. LLF: 124.77979025089549
Iteration: 7, Func. Count: 54, Neg. LLF: 124.75686057328117
Iteration: 8, Func. Count: 61, Neg. LLF: 124.74583027739722
Iteration: 9, Func. Count: 68, Neg. LLF: 124.71662698293429
Iteration: 10, Func. Count: 75, Neg. LLF: 124.7142578195159
Iteration: 11, Func. Count: 82, Neg. LLF: 124.7132854223688
Iteration: 12, Func. Count: 89, Neg. LLF: 124.71243909451685
Iteration: 13, Func. Count: 96, Neg. LLF: 124.712003294724
Iteration: 14, Func. Count: 103, Neg. LLF: 124.71192522074419
Iteration: 15, Func. Count: 110, Neg. LLF: 124.71191747995083
Iteration: 16, Func. Count: 117, Neg. LLF: 124.71191669943998
Optimization terminated successfully (Exit mode 0)
Current function value: 124.71191669943998
Iterations: 16
Function evaluations: 117
Gradient evaluations: 16
Iteration: 1, Func. Count: 9, Neg. LLF: 128.0687521079937
Iteration: 2, Func. Count: 19, Neg. LLF: 129.75442583350932
Iteration: 3, Func. Count: 28, Neg. LLF: 125.42095472757856
Iteration: 4, Func. Count: 37, Neg. LLF: 125.69278728119549
Iteration: 5, Func. Count: 46, Neg. LLF: 125.28907742723946
Iteration: 6, Func. Count: 54, Neg. LLF: 125.27431583815526
Iteration: 7, Func. Count: 62, Neg. LLF: 125.0364578444607
Iteration: 8, Func. Count: 70, Neg. LLF: 124.75671277732259
Iteration: 9, Func. Count: 78, Neg. LLF: 124.73874690261319
Iteration: 10, Func. Count: 86, Neg. LLF: 124.71665769719293
Iteration: 11, Func. Count: 94, Neg. LLF: 124.71364706841175
Iteration: 12, Func. Count: 102, Neg. LLF: 124.71247691238136
Iteration: 13, Func. Count: 110, Neg. LLF: 124.71211310419078
Iteration: 14, Func. Count: 118, Neg. LLF: 124.71194101082217
Iteration: 15, Func. Count: 126, Neg. LLF: 124.71191868890759
Iteration: 16, Func. Count: 134, Neg. LLF: 124.71191666676768
Iteration: 17, Func. Count: 141, Neg. LLF: 124.71191670908057
Optimization terminated successfully (Exit mode 0)
Current function value: 124.71191666676768
Iterations: 17
Function evaluations: 141
Gradient evaluations: 17
Iteration: 1, Func. Count: 10, Neg. LLF: 127.4667095865533
Iteration: 2, Func. Count: 21, Neg. LLF: 130.9273943737866
Iteration: 3, Func. Count: 31, Neg. LLF: 125.11901352439139
Iteration: 4, Func. Count: 40, Neg. LLF: 124.81656414116682
Iteration: 5, Func. Count: 49, Neg. LLF: 124.79591998543184
Iteration: 6, Func. Count: 58, Neg. LLF: 123.86196780550085
Iteration: 7, Func. Count: 67, Neg. LLF: 124.06473835955705
Iteration: 8, Func. Count: 77, Neg. LLF: 123.7678886518539
Iteration: 9, Func. Count: 86, Neg. LLF: 123.7324703747022
Iteration: 10, Func. Count: 95, Neg. LLF: 123.73196110427352
Iteration: 11, Func. Count: 104, Neg. LLF: 123.73187547217633
Iteration: 12, Func. Count: 113, Neg. LLF: 123.73187303794097
Iteration: 13, Func. Count: 121, Neg. LLF: 123.73187298191465
Optimization terminated successfully (Exit mode 0)
Current function value: 123.73187303794097
Iterations: 13
Function evaluations: 121
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 128.14631409185583
Iteration: 2, Func. Count: 22, Neg. LLF: 131.43576857446251
Iteration: 3, Func. Count: 33, Neg. LLF: 140.81355469985294
Iteration: 4, Func. Count: 45, Neg. LLF: 124.37497731247547
Iteration: 5, Func. Count: 55, Neg. LLF: 130.13442604755514
Iteration: 6, Func. Count: 66, Neg. LLF: 139.8225767843991
Iteration: 7, Func. Count: 77, Neg. LLF: 139.4084536668238
Iteration: 8, Func. Count: 88, Neg. LLF: 124.95523238868257
Iteration: 9, Func. Count: 99, Neg. LLF: 124.69830865189908
Iteration: 10, Func. Count: 110, Neg. LLF: 122.51713882444047
Iteration: 11, Func. Count: 120, Neg. LLF: 121.40318991044725
Iteration: 12, Func. Count: 130, Neg. LLF: 123.64977874078802
Iteration: 13, Func. Count: 141, Neg. LLF: 120.88485708019107
Iteration: 14, Func. Count: 151, Neg. LLF: 120.87777051149882
Iteration: 15, Func. Count: 161, Neg. LLF: 120.87716570639
Iteration: 16, Func. Count: 171, Neg. LLF: 120.87707867218995
Iteration: 17, Func. Count: 180, Neg. LLF: 120.87707855525207
Optimization terminated successfully (Exit mode 0)
Current function value: 120.87707867218995
Iterations: 17
Function evaluations: 180
Gradient evaluations: 17
Iteration: 1, Func. Count: 8, Neg. LLF: 127.83538183652396
Iteration: 2, Func. Count: 15, Neg. LLF: 134.83709153608675
Iteration: 3, Func. Count: 23, Neg. LLF: 125.33097268882354
Iteration: 4, Func. Count: 30, Neg. LLF: 125.77836399649433
Iteration: 5, Func. Count: 40, Neg. LLF: 124.95559578517536
Iteration: 6, Func. Count: 47, Neg. LLF: 124.78219849747856
Iteration: 7, Func. Count: 54, Neg. LLF: 124.86063363354225
Iteration: 8, Func. Count: 62, Neg. LLF: 124.71570177247874
Iteration: 9, Func. Count: 69, Neg. LLF: 124.71461614549492
Iteration: 10, Func. Count: 77, Neg. LLF: 124.71192442526608
Iteration: 11, Func. Count: 84, Neg. LLF: 124.7119169705822
Iteration: 12, Func. Count: 90, Neg. LLF: 124.7119172160745
Optimization terminated successfully (Exit mode 0)
Current function value: 124.7119169705822
Iterations: 12
Function evaluations: 90
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 128.75765097572798
Iteration: 2, Func. Count: 19, Neg. LLF: 128.473076742469
Iteration: 3, Func. Count: 28, Neg. LLF: 125.4610605752163
Iteration: 4, Func. Count: 36, Neg. LLF: 125.44801571567935
Iteration: 5, Func. Count: 45, Neg. LLF: 124.84744059267936
Iteration: 6, Func. Count: 53, Neg. LLF: 124.78238874308666
Iteration: 7, Func. Count: 61, Neg. LLF: 124.74480943556429
Iteration: 8, Func. Count: 69, Neg. LLF: 124.71424852112983
Iteration: 9, Func. Count: 77, Neg. LLF: 124.71246475217161
Iteration: 10, Func. Count: 85, Neg. LLF: 124.71217273448573
Iteration: 11, Func. Count: 93, Neg. LLF: 124.71204015001592
Iteration: 12, Func. Count: 101, Neg. LLF: 124.71195286061428
Iteration: 13, Func. Count: 109, Neg. LLF: 124.71192071961511
Iteration: 14, Func. Count: 117, Neg. LLF: 124.71191677427379
Iteration: 15, Func. Count: 124, Neg. LLF: 124.71191681093038
Optimization terminated successfully (Exit mode 0)
Current function value: 124.71191677427379
Iterations: 15
Function evaluations: 124
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 128.15141570963775
Iteration: 2, Func. Count: 21, Neg. LLF: 129.54778663348745
Iteration: 3, Func. Count: 31, Neg. LLF: 125.3997670800172
Iteration: 4, Func. Count: 40, Neg. LLF: 125.49019576067354
Iteration: 5, Func. Count: 50, Neg. LLF: 125.71511200088115
Iteration: 6, Func. Count: 60, Neg. LLF: 125.27901482987025
Iteration: 7, Func. Count: 69, Neg. LLF: 125.25424638566591
Iteration: 8, Func. Count: 78, Neg. LLF: 124.91897881179517
Iteration: 9, Func. Count: 87, Neg. LLF: 124.79009913741723
Iteration: 10, Func. Count: 96, Neg. LLF: 124.72068771217063
Iteration: 11, Func. Count: 105, Neg. LLF: 124.71726641937445
Iteration: 12, Func. Count: 114, Neg. LLF: 124.71275751190016
Iteration: 13, Func. Count: 123, Neg. LLF: 124.71221831692161
Iteration: 14, Func. Count: 132, Neg. LLF: 124.71192195504632
Iteration: 15, Func. Count: 141, Neg. LLF: 124.7119182160423
Iteration: 16, Func. Count: 150, Neg. LLF: 124.71191700955711
Iteration: 17, Func. Count: 158, Neg. LLF: 124.7119170518653
Optimization terminated successfully (Exit mode 0)
Current function value: 124.71191700955711
Iterations: 17
Function evaluations: 158
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 127.64984443770076
Iteration: 2, Func. Count: 23, Neg. LLF: 130.7134893465267
Iteration: 3, Func. Count: 34, Neg. LLF: 125.3925142786737
Iteration: 4, Func. Count: 45, Neg. LLF: 124.83925354082258
Iteration: 5, Func. Count: 55, Neg. LLF: 129.36192532253565
Iteration: 6, Func. Count: 66, Neg. LLF: 124.64537173604465
Iteration: 7, Func. Count: 76, Neg. LLF: 123.9853595550269
Iteration: 8, Func. Count: 86, Neg. LLF: 123.89503092598778
Iteration: 9, Func. Count: 96, Neg. LLF: 123.80937579882985
Iteration: 10, Func. Count: 106, Neg. LLF: 123.75071868360212
Iteration: 11, Func. Count: 116, Neg. LLF: 123.73743199105995
Iteration: 12, Func. Count: 126, Neg. LLF: 123.7321567326949
Iteration: 13, Func. Count: 136, Neg. LLF: 123.73190031213225
Iteration: 14, Func. Count: 146, Neg. LLF: 123.73187034740911
Iteration: 15, Func. Count: 156, Neg. LLF: 123.73203525200395
Optimization terminated successfully (Exit mode 0)
Current function value: 123.7318701513138
Iterations: 16
Function evaluations: 158
Gradient evaluations: 15
Iteration: 1, Func. Count: 12, Neg. LLF: 128.01359158826867
Iteration: 2, Func. Count: 24, Neg. LLF: 131.1040937531628
Iteration: 3, Func. Count: 36, Neg. LLF: 144.06655852072944
Iteration: 4, Func. Count: 49, Neg. LLF: 124.0617579815011
Iteration: 5, Func. Count: 60, Neg. LLF: 125.93117479236572
Iteration: 6, Func. Count: 72, Neg. LLF: 124.37360706564648
Iteration: 7, Func. Count: 84, Neg. LLF: 122.37202828227402
Iteration: 8, Func. Count: 95, Neg. LLF: 121.73253564342778
Iteration: 9, Func. Count: 106, Neg. LLF: 121.22124576127176
Iteration: 10, Func. Count: 117, Neg. LLF: 120.98478388489814
Iteration: 11, Func. Count: 128, Neg. LLF: 120.89911076962578
Iteration: 12, Func. Count: 139, Neg. LLF: 120.88033046774697
Iteration: 13, Func. Count: 150, Neg. LLF: 120.87861449390982
Iteration: 14, Func. Count: 161, Neg. LLF: 120.87814777015109
Iteration: 15, Func. Count: 172, Neg. LLF: 120.87750518608402
Iteration: 16, Func. Count: 183, Neg. LLF: 120.87714445054704
Iteration: 17, Func. Count: 194, Neg. LLF: 120.87708100871035
Iteration: 18, Func. Count: 205, Neg. LLF: 120.87707828096268
Iteration: 19, Func. Count: 215, Neg. LLF: 120.87707816411965
Optimization terminated successfully (Exit mode 0)
Current function value: 120.87707828096268
Iterations: 19
Function evaluations: 215
Gradient evaluations: 19
Iteration: 1, Func. Count: 9, Neg. LLF: 127.86865953135495
Iteration: 2, Func. Count: 17, Neg. LLF: 135.62957091675722
Iteration: 3, Func. Count: 26, Neg. LLF: 125.31679089379784
Iteration: 4, Func. Count: 34, Neg. LLF: 125.72046522829237
Iteration: 5, Func. Count: 45, Neg. LLF: 124.96207203493039
Iteration: 6, Func. Count: 53, Neg. LLF: 124.7884758259409
Iteration: 7, Func. Count: 61, Neg. LLF: 124.88145386245425
Iteration: 8, Func. Count: 70, Neg. LLF: 124.712834442947
Iteration: 9, Func. Count: 78, Neg. LLF: 124.71197468188124
Iteration: 10, Func. Count: 86, Neg. LLF: 124.71193712452346
Iteration: 11, Func. Count: 94, Neg. LLF: 124.7119168566223
Iteration: 12, Func. Count: 101, Neg. LLF: 124.71191703132769
Optimization terminated successfully (Exit mode 0)
Current function value: 124.7119168566223
Iterations: 12
Function evaluations: 101
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 128.76395804874593
Iteration: 2, Func. Count: 21, Neg. LLF: 128.47798724507552
Iteration: 3, Func. Count: 31, Neg. LLF: 125.46487014057355
Iteration: 4, Func. Count: 40, Neg. LLF: 125.57445108415612
Iteration: 5, Func. Count: 50, Neg. LLF: 124.85716574501188
Iteration: 6, Func. Count: 59, Neg. LLF: 124.78636605951569
Iteration: 7, Func. Count: 68, Neg. LLF: 124.75730911301666
Iteration: 8, Func. Count: 77, Neg. LLF: 124.71323838070407
Iteration: 9, Func. Count: 86, Neg. LLF: 124.71220184452109
Iteration: 10, Func. Count: 95, Neg. LLF: 124.71204764256628
Iteration: 11, Func. Count: 104, Neg. LLF: 124.7119829689562
Iteration: 12, Func. Count: 113, Neg. LLF: 124.71193545764682
Iteration: 13, Func. Count: 122, Neg. LLF: 124.7119189219053
Iteration: 14, Func. Count: 131, Neg. LLF: 124.71191671483348
Iteration: 15, Func. Count: 139, Neg. LLF: 124.71191675147985
Optimization terminated successfully (Exit mode 0)
Current function value: 124.71191671483348
Iterations: 15
Function evaluations: 139
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 128.1490974162684
Iteration: 2, Func. Count: 23, Neg. LLF: 129.57607006545837
Iteration: 3, Func. Count: 34, Neg. LLF: 125.39752285471629
Iteration: 4, Func. Count: 44, Neg. LLF: 125.4874589975218
Iteration: 5, Func. Count: 55, Neg. LLF: 125.73331602552351
Iteration: 6, Func. Count: 66, Neg. LLF: 125.28083349198162
Iteration: 7, Func. Count: 76, Neg. LLF: 125.25853913350299
Iteration: 8, Func. Count: 86, Neg. LLF: 124.8888963420518
Iteration: 9, Func. Count: 96, Neg. LLF: 124.78695819705818
Iteration: 10, Func. Count: 106, Neg. LLF: 124.72327563737606
Iteration: 11, Func. Count: 116, Neg. LLF: 124.71798209330353
Iteration: 12, Func. Count: 126, Neg. LLF: 124.71336461077792
Iteration: 13, Func. Count: 136, Neg. LLF: 124.71250531166878
Iteration: 14, Func. Count: 146, Neg. LLF: 124.7120761556727
Iteration: 15, Func. Count: 156, Neg. LLF: 124.71193953216249
Iteration: 16, Func. Count: 166, Neg. LLF: 124.71191908118958
Iteration: 17, Func. Count: 176, Neg. LLF: 124.71191720437545
Iteration: 18, Func. Count: 185, Neg. LLF: 124.71191724664418
Optimization terminated successfully (Exit mode 0)
Current function value: 124.71191720437545
Iterations: 18
Function evaluations: 185
Gradient evaluations: 18
Iteration: 1, Func. Count: 12, Neg. LLF: 127.53639931914536
Iteration: 2, Func. Count: 25, Neg. LLF: 130.78652819993104
Iteration: 3, Func. Count: 37, Neg. LLF: 125.1877254221888
Iteration: 4, Func. Count: 49, Neg. LLF: 124.81331977330757
Iteration: 5, Func. Count: 60, Neg. LLF: 124.83372079473513
Iteration: 6, Func. Count: 72, Neg. LLF: 124.50737314578271
Iteration: 7, Func. Count: 83, Neg. LLF: 124.15107462457692
Iteration: 8, Func. Count: 94, Neg. LLF: 124.42663337537685
Iteration: 9, Func. Count: 106, Neg. LLF: 123.76047352528195
Iteration: 10, Func. Count: 117, Neg. LLF: 123.73226515768029
Iteration: 11, Func. Count: 128, Neg. LLF: 123.73190410483492
Iteration: 12, Func. Count: 139, Neg. LLF: 123.7318801047736
Iteration: 13, Func. Count: 150, Neg. LLF: 123.73187335825244
Iteration: 14, Func. Count: 160, Neg. LLF: 123.73187330187719
Optimization terminated successfully (Exit mode 0)
Current function value: 123.73187335825244
Iterations: 14
Function evaluations: 160
Gradient evaluations: 14
Iteration: 1, Func. Count: 13, Neg. LLF: 127.99426339988362
Iteration: 2, Func. Count: 26, Neg. LLF: 131.03799769919846
Iteration: 3, Func. Count: 39, Neg. LLF: 145.23902041195083
Iteration: 4, Func. Count: 53, Neg. LLF: 124.0043726387623
Iteration: 5, Func. Count: 65, Neg. LLF: 126.37463121459807
Iteration: 6, Func. Count: 78, Neg. LLF: 126.79668720065695
Iteration: 7, Func. Count: 91, Neg. LLF: 122.47191366428777
Iteration: 8, Func. Count: 103, Neg. LLF: 121.57433971329895
Iteration: 9, Func. Count: 115, Neg. LLF: 121.21545556300234
Iteration: 10, Func. Count: 127, Neg. LLF: 120.93974611329284
Iteration: 11, Func. Count: 139, Neg. LLF: 120.88645680187788
Iteration: 12, Func. Count: 151, Neg. LLF: 120.88316841116063
Iteration: 13, Func. Count: 163, Neg. LLF: 120.87854041699649
Iteration: 14, Func. Count: 175, Neg. LLF: 120.87782137519743
Iteration: 15, Func. Count: 187, Neg. LLF: 120.87762744371558
Iteration: 16, Func. Count: 199, Neg. LLF: 120.8771360422226
Iteration: 17, Func. Count: 211, Neg. LLF: 120.87708451648548
Iteration: 18, Func. Count: 223, Neg. LLF: 120.8770796281455
Iteration: 19, Func. Count: 235, Neg. LLF: 120.877079254963
Optimization terminated successfully (Exit mode 0)
Current function value: 120.877079254963
Iterations: 19
Function evaluations: 235
Gradient evaluations: 19
Iteration: 1, Func. Count: 10, Neg. LLF: 127.91810194694219
Iteration: 2, Func. Count: 19, Neg. LLF: 136.41531493345434
Iteration: 3, Func. Count: 29, Neg. LLF: 125.30616579705321
Iteration: 4, Func. Count: 38, Neg. LLF: 125.68185019087537
Iteration: 5, Func. Count: 50, Neg. LLF: 124.96955182518218
Iteration: 6, Func. Count: 59, Neg. LLF: 124.79857296491376
Iteration: 7, Func. Count: 68, Neg. LLF: 124.84206924013053
Iteration: 8, Func. Count: 78, Neg. LLF: 124.71352671938091
Iteration: 9, Func. Count: 87, Neg. LLF: 124.71211831891866
Iteration: 10, Func. Count: 96, Neg. LLF: 124.71191932332287
Iteration: 11, Func. Count: 105, Neg. LLF: 124.71191672791507
Iteration: 12, Func. Count: 113, Neg. LLF: 124.71191695771188
Optimization terminated successfully (Exit mode 0)
Current function value: 124.71191672791507
Iterations: 12
Function evaluations: 113
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 128.72955677565136
Iteration: 2, Func. Count: 23, Neg. LLF: 128.52120701813655
Iteration: 3, Func. Count: 34, Neg. LLF: 125.466861790843
Iteration: 4, Func. Count: 44, Neg. LLF: 125.4928398169538
Iteration: 5, Func. Count: 55, Neg. LLF: 124.85733659006097
Iteration: 6, Func. Count: 65, Neg. LLF: 124.78776773576843
Iteration: 7, Func. Count: 75, Neg. LLF: 124.75170340525324
Iteration: 8, Func. Count: 85, Neg. LLF: 124.71336456955054
Iteration: 9, Func. Count: 95, Neg. LLF: 124.71224564998636
Iteration: 10, Func. Count: 105, Neg. LLF: 124.7120871411216
Iteration: 11, Func. Count: 115, Neg. LLF: 124.7119939029668
Iteration: 12, Func. Count: 125, Neg. LLF: 124.71193887986165
Iteration: 13, Func. Count: 135, Neg. LLF: 124.71191894149091
Iteration: 14, Func. Count: 145, Neg. LLF: 124.71191671203799
Iteration: 15, Func. Count: 154, Neg. LLF: 124.71191674868413
Optimization terminated successfully (Exit mode 0)
Current function value: 124.71191671203799
Iterations: 15
Function evaluations: 154
Gradient evaluations: 15
Iteration: 1, Func. Count: 12, Neg. LLF: 128.1498368606574
Iteration: 2, Func. Count: 25, Neg. LLF: 129.5588094278902
Iteration: 3, Func. Count: 37, Neg. LLF: 125.39477313067619
Iteration: 4, Func. Count: 48, Neg. LLF: 125.44925071009295
Iteration: 5, Func. Count: 60, Neg. LLF: 125.87170095195525
Iteration: 6, Func. Count: 72, Neg. LLF: 125.28105804609088
Iteration: 7, Func. Count: 83, Neg. LLF: 125.25507602965315
Iteration: 8, Func. Count: 94, Neg. LLF: 124.84781632181392
Iteration: 9, Func. Count: 105, Neg. LLF: 124.78375843561389
Iteration: 10, Func. Count: 116, Neg. LLF: 124.72789571591198
Iteration: 11, Func. Count: 127, Neg. LLF: 124.71905162578457
Iteration: 12, Func. Count: 138, Neg. LLF: 124.71375249198289
Iteration: 13, Func. Count: 149, Neg. LLF: 124.71276148735221
Iteration: 14, Func. Count: 160, Neg. LLF: 124.71222859516406
Iteration: 15, Func. Count: 171, Neg. LLF: 124.71196293639669
Iteration: 16, Func. Count: 182, Neg. LLF: 124.71192103313702
Iteration: 17, Func. Count: 193, Neg. LLF: 124.71191789923442
Iteration: 18, Func. Count: 204, Neg. LLF: 124.71191715384327
Optimization terminated successfully (Exit mode 0)
Current function value: 124.71191715384327
Iterations: 18
Function evaluations: 204
Gradient evaluations: 18
Iteration: 1, Func. Count: 13, Neg. LLF: 127.63765023444729
Iteration: 2, Func. Count: 27, Neg. LLF: 130.67799236647141
Iteration: 3, Func. Count: 40, Neg. LLF: 125.00262866209626
Iteration: 4, Func. Count: 52, Neg. LLF: 124.81118803051184
Iteration: 5, Func. Count: 64, Neg. LLF: 125.70496225202507
Iteration: 6, Func. Count: 77, Neg. LLF: 124.59810925764808
Iteration: 7, Func. Count: 89, Neg. LLF: 123.80009820536289
Iteration: 8, Func. Count: 101, Neg. LLF: 124.20413547845817
Iteration: 9, Func. Count: 114, Neg. LLF: 123.73927448460353
Iteration: 10, Func. Count: 126, Neg. LLF: 123.73211083964944
Iteration: 11, Func. Count: 138, Neg. LLF: 123.7318797139085
Iteration: 12, Func. Count: 150, Neg. LLF: 123.73187411467372
Iteration: 13, Func. Count: 162, Neg. LLF: 123.73187289357324
Iteration: 14, Func. Count: 173, Neg. LLF: 123.73187283738835
Optimization terminated successfully (Exit mode 0)
Current function value: 123.73187289357324
Iterations: 14
Function evaluations: 173
Gradient evaluations: 14
Iteration: 1, Func. Count: 14, Neg. LLF: 128.02906082661735
Iteration: 2, Func. Count: 28, Neg. LLF: 130.96437265262043
Iteration: 3, Func. Count: 42, Neg. LLF: 148.59587959058405
Iteration: 4, Func. Count: 57, Neg. LLF: 124.0123527723159
Iteration: 5, Func. Count: 70, Neg. LLF: 125.32142732885298
Iteration: 6, Func. Count: 84, Neg. LLF: 126.14158970201966
Iteration: 7, Func. Count: 98, Neg. LLF: 122.58862320030491
Iteration: 8, Func. Count: 111, Neg. LLF: 122.0180444838815
Iteration: 9, Func. Count: 124, Neg. LLF: 121.48024668625183
Iteration: 10, Func. Count: 137, Neg. LLF: 121.0188161841225
Iteration: 11, Func. Count: 150, Neg. LLF: 120.91250619811048
Iteration: 12, Func. Count: 163, Neg. LLF: 120.88269297065575
Iteration: 13, Func. Count: 176, Neg. LLF: 120.88098486005303
Iteration: 14, Func. Count: 189, Neg. LLF: 120.87802897993812
Iteration: 15, Func. Count: 202, Neg. LLF: 120.87778845049445
Iteration: 16, Func. Count: 215, Neg. LLF: 120.87730100326651
Iteration: 17, Func. Count: 228, Neg. LLF: 120.87713016190918
Iteration: 18, Func. Count: 241, Neg. LLF: 120.87708113204654
Iteration: 19, Func. Count: 254, Neg. LLF: 120.87708070985808
Optimization terminated successfully (Exit mode 0)
Current function value: 120.87708070985808
Iterations: 19
Function evaluations: 254
Gradient evaluations: 19
Iteration: 1, Func. Count: 7, Neg. LLF: 129.66762695887027
Iteration: 2, Func. Count: 14, Neg. LLF: 152.18493963735267
Iteration: 3, Func. Count: 21, Neg. LLF: 125.50115580695399
Iteration: 4, Func. Count: 27, Neg. LLF: 125.37922973503186
Iteration: 5, Func. Count: 33, Neg. LLF: 125.3551923572509
Iteration: 6, Func. Count: 39, Neg. LLF: 125.30262865710952
Iteration: 7, Func. Count: 45, Neg. LLF: 125.29833382756304
Iteration: 8, Func. Count: 51, Neg. LLF: 125.29804642149922
Iteration: 9, Func. Count: 57, Neg. LLF: 125.29803751598293
Iteration: 10, Func. Count: 63, Neg. LLF: 125.29803597078372
Iteration: 11, Func. Count: 68, Neg. LLF: 125.29803621475189
Optimization terminated successfully (Exit mode 0)
Current function value: 125.29803597078372
Iterations: 11
Function evaluations: 68
Gradient evaluations: 11
Iteration: 1, Func. Count: 8, Neg. LLF: 165.52079429013696
Iteration: 2, Func. Count: 17, Neg. LLF: 125.77852156743491
Iteration: 3, Func. Count: 24, Neg. LLF: 125.77964623975559
Iteration: 4, Func. Count: 32, Neg. LLF: 125.77825496188797
Iteration: 5, Func. Count: 39, Neg. LLF: 125.7774522864911
Iteration: 6, Func. Count: 46, Neg. LLF: 125.77475874444255
Iteration: 7, Func. Count: 53, Neg. LLF: 125.77248533497807
Iteration: 8, Func. Count: 60, Neg. LLF: 125.83546248697354
Iteration: 9, Func. Count: 68, Neg. LLF: 126.80447229106865
Iteration: 10, Func. Count: 76, Neg. LLF: 126.49106723432585
Iteration: 11, Func. Count: 84, Neg. LLF: 126.31448047548149
Iteration: 12, Func. Count: 92, Neg. LLF: 126.15236850395141
Iteration: 13, Func. Count: 100, Neg. LLF: 251.88140132654723
Iteration: 14, Func. Count: 111, Neg. LLF: 126.59746697391375
Iteration: 15, Func. Count: 119, Neg. LLF: 152.78894192093452
Iteration: 16, Func. Count: 128, Neg. LLF: 125.7941561081248
Iteration: 17, Func. Count: 136, Neg. LLF: 125.71005734192302
Iteration: 18, Func. Count: 143, Neg. LLF: 125.68636560433629
Iteration: 19, Func. Count: 150, Neg. LLF: 125.69352010403092
Iteration: 20, Func. Count: 158, Neg. LLF: 125.68374873600214
Iteration: 21, Func. Count: 166, Neg. LLF: 125.68357177593273
Iteration: 22, Func. Count: 173, Neg. LLF: 125.68355700889514
Iteration: 23, Func. Count: 179, Neg. LLF: 125.68355700894429
Optimization terminated successfully (Exit mode 0)
Current function value: 125.68355700889514
Iterations: 24
Function evaluations: 179
Gradient evaluations: 23
Iteration: 1, Func. Count: 9, Neg. LLF: 150.0739774888889
Iteration: 2, Func. Count: 19, Neg. LLF: 125.7323827775179
Iteration: 3, Func. Count: 27, Neg. LLF: 125.72016474675863
Iteration: 4, Func. Count: 35, Neg. LLF: 125.71312890158515
Iteration: 5, Func. Count: 43, Neg. LLF: 125.70533273456091
Iteration: 6, Func. Count: 51, Neg. LLF: 125.69777471300611
Iteration: 7, Func. Count: 59, Neg. LLF: 125.6938242472283
Iteration: 8, Func. Count: 67, Neg. LLF: 125.69301613662488
Iteration: 9, Func. Count: 75, Neg. LLF: 125.6929716338713
Iteration: 10, Func. Count: 83, Neg. LLF: 125.69296722186749
Iteration: 11, Func. Count: 91, Neg. LLF: 125.6929663119151
Optimization terminated successfully (Exit mode 0)
Current function value: 125.6929663119151
Iterations: 11
Function evaluations: 91
Gradient evaluations: 11
Iteration: 1, Func. Count: 10, Neg. LLF: 145.20036959854008
Iteration: 2, Func. Count: 21, Neg. LLF: 125.737028711517
Iteration: 3, Func. Count: 30, Neg. LLF: 125.7199550026961
Iteration: 4, Func. Count: 39, Neg. LLF: 125.70946304828051
Iteration: 5, Func. Count: 48, Neg. LLF: 125.70779127414514
Iteration: 6, Func. Count: 57, Neg. LLF: 125.7012006645344
Iteration: 7, Func. Count: 66, Neg. LLF: 125.70006386315812
Iteration: 8, Func. Count: 75, Neg. LLF: 125.6990703110596
Iteration: 9, Func. Count: 84, Neg. LLF: 125.6932136360366
Iteration: 10, Func. Count: 93, Neg. LLF: 125.68977391453353
Iteration: 11, Func. Count: 102, Neg. LLF: 125.69263097994643
Iteration: 12, Func. Count: 112, Neg. LLF: 125.6871459301974
Iteration: 13, Func. Count: 121, Neg. LLF: 125.6867419164031
Iteration: 14, Func. Count: 130, Neg. LLF: 125.68619740430745
Iteration: 15, Func. Count: 139, Neg. LLF: 125.68462269904062
Iteration: 16, Func. Count: 148, Neg. LLF: 125.68406703624368
Iteration: 17, Func. Count: 157, Neg. LLF: 125.68356892823286
Iteration: 18, Func. Count: 166, Neg. LLF: 125.68355718548679
Iteration: 19, Func. Count: 174, Neg. LLF: 125.68355718628644
Optimization terminated successfully (Exit mode 0)
Current function value: 125.68355718548679
Iterations: 19
Function evaluations: 174
Gradient evaluations: 19
Iteration: 1, Func. Count: 11, Neg. LLF: 127.49526697346681
Iteration: 2, Func. Count: 24, Neg. LLF: 127.37361154566868
Iteration: 3, Func. Count: 35, Neg. LLF: 124.91164876871687
Iteration: 4, Func. Count: 45, Neg. LLF: 124.42085454792952
Iteration: 5, Func. Count: 55, Neg. LLF: 122.88975348805242
Iteration: 6, Func. Count: 65, Neg. LLF: 130.94313879801422
Iteration: 7, Func. Count: 76, Neg. LLF: 121.59870287203802
Iteration: 8, Func. Count: 86, Neg. LLF: 121.50982025666488
Iteration: 9, Func. Count: 96, Neg. LLF: 121.41383307549725
Iteration: 10, Func. Count: 106, Neg. LLF: 121.17458250060669
Iteration: 11, Func. Count: 116, Neg. LLF: 120.9991934470939
Iteration: 12, Func. Count: 126, Neg. LLF: 120.91966474750286
Iteration: 13, Func. Count: 136, Neg. LLF: 120.90883472527969
Iteration: 14, Func. Count: 146, Neg. LLF: 120.9087729389897
Iteration: 15, Func. Count: 156, Neg. LLF: 120.90878402352112
Iteration: 16, Func. Count: 167, Neg. LLF: 120.9087554649274
Iteration: 17, Func. Count: 177, Neg. LLF: 120.9088852760388
Iteration: 18, Func. Count: 188, Neg. LLF: 120.90875173937089
Iteration: 19, Func. Count: 197, Neg. LLF: 120.90875163388029
Optimization terminated successfully (Exit mode 0)
Current function value: 120.90875173937089
Iterations: 20
Function evaluations: 197
Gradient evaluations: 19
Iteration: 1, Func. Count: 8, Neg. LLF: 127.64549072004486
Iteration: 2, Func. Count: 15, Neg. LLF: 134.0012870025849
Iteration: 3, Func. Count: 23, Neg. LLF: 125.21763716505845
Iteration: 4, Func. Count: 30, Neg. LLF: 126.828155403684
Iteration: 5, Func. Count: 40, Neg. LLF: 125.21900241035766
Iteration: 6, Func. Count: 48, Neg. LLF: 124.90039768576615
Iteration: 7, Func. Count: 55, Neg. LLF: 124.80999147437687
Iteration: 8, Func. Count: 62, Neg. LLF: 124.74843220136091
Iteration: 9, Func. Count: 69, Neg. LLF: 124.71897964509574
Iteration: 10, Func. Count: 76, Neg. LLF: 124.7129163125471
Iteration: 11, Func. Count: 83, Neg. LLF: 124.7119548964422
Iteration: 12, Func. Count: 90, Neg. LLF: 124.7119181380423
Iteration: 13, Func. Count: 97, Neg. LLF: 124.71191664177354
Iteration: 14, Func. Count: 103, Neg. LLF: 124.71191664177495
Optimization terminated successfully (Exit mode 0)
Current function value: 124.71191664177354
Iterations: 14
Function evaluations: 103
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 128.6900351440362
Iteration: 2, Func. Count: 19, Neg. LLF: 128.61499331357177
Iteration: 3, Func. Count: 28, Neg. LLF: 125.46048783105448
Iteration: 4, Func. Count: 36, Neg. LLF: 124.87317427263241
Iteration: 5, Func. Count: 44, Neg. LLF: 125.10150938180652
Iteration: 6, Func. Count: 53, Neg. LLF: 124.76666566268702
Iteration: 7, Func. Count: 61, Neg. LLF: 124.73645578444409
Iteration: 8, Func. Count: 69, Neg. LLF: 124.7278934740413
Iteration: 9, Func. Count: 77, Neg. LLF: 124.720062156668
Iteration: 10, Func. Count: 85, Neg. LLF: 124.71623915058034
Iteration: 11, Func. Count: 93, Neg. LLF: 124.71278562348539
Iteration: 12, Func. Count: 101, Neg. LLF: 124.71238327937715
Iteration: 13, Func. Count: 109, Neg. LLF: 124.71216665663839
Iteration: 14, Func. Count: 117, Neg. LLF: 124.71201535741632
Iteration: 15, Func. Count: 125, Neg. LLF: 124.71193628746273
Iteration: 16, Func. Count: 133, Neg. LLF: 124.7119181919501
Iteration: 17, Func. Count: 141, Neg. LLF: 124.7119166643098
Iteration: 18, Func. Count: 148, Neg. LLF: 124.71191670092085
Optimization terminated successfully (Exit mode 0)
Current function value: 124.7119166643098
Iterations: 18
Function evaluations: 148
Gradient evaluations: 18
Iteration: 1, Func. Count: 10, Neg. LLF: 128.0768543829505
Iteration: 2, Func. Count: 21, Neg. LLF: 129.79379076080622
Iteration: 3, Func. Count: 31, Neg. LLF: 125.41973922285119
Iteration: 4, Func. Count: 41, Neg. LLF: 125.68317095817706
Iteration: 5, Func. Count: 51, Neg. LLF: 125.28944763315017
Iteration: 6, Func. Count: 60, Neg. LLF: 125.27596770800562
Iteration: 7, Func. Count: 69, Neg. LLF: 125.01417459161964
Iteration: 8, Func. Count: 78, Neg. LLF: 124.74496649411347
Iteration: 9, Func. Count: 87, Neg. LLF: 124.73246696627092
Iteration: 10, Func. Count: 96, Neg. LLF: 124.7151868738519
Iteration: 11, Func. Count: 105, Neg. LLF: 124.71309090385675
Iteration: 12, Func. Count: 114, Neg. LLF: 124.71218210296026
Iteration: 13, Func. Count: 123, Neg. LLF: 124.71199516171296
Iteration: 14, Func. Count: 132, Neg. LLF: 124.71192777601017
Iteration: 15, Func. Count: 141, Neg. LLF: 124.71191770487302
Iteration: 16, Func. Count: 149, Neg. LLF: 124.71191774720856
Optimization terminated successfully (Exit mode 0)
Current function value: 124.71191770487302
Iterations: 16
Function evaluations: 149
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 127.3608551708725
Iteration: 2, Func. Count: 23, Neg. LLF: 131.03902374464258
Iteration: 3, Func. Count: 34, Neg. LLF: 125.12286575362785
Iteration: 4, Func. Count: 44, Neg. LLF: 124.81012515584966
Iteration: 5, Func. Count: 54, Neg. LLF: 125.00137760656528
Iteration: 6, Func. Count: 65, Neg. LLF: 124.3748459407264
Iteration: 7, Func. Count: 75, Neg. LLF: 123.75632895515805
Iteration: 8, Func. Count: 85, Neg. LLF: 123.7384446500752
Iteration: 9, Func. Count: 95, Neg. LLF: 123.7321409382963
Iteration: 10, Func. Count: 105, Neg. LLF: 123.73190429894554
Iteration: 11, Func. Count: 115, Neg. LLF: 123.73187429115038
Iteration: 12, Func. Count: 125, Neg. LLF: 123.73187271501158
Iteration: 13, Func. Count: 134, Neg. LLF: 123.73187265884776
Optimization terminated successfully (Exit mode 0)
Current function value: 123.73187271501158
Iterations: 13
Function evaluations: 134
Gradient evaluations: 13
Iteration: 1, Func. Count: 12, Neg. LLF: 127.96436555076866
Iteration: 2, Func. Count: 24, Neg. LLF: 131.3857360002902
Iteration: 3, Func. Count: 36, Neg. LLF: 141.24768336806596
Iteration: 4, Func. Count: 49, Neg. LLF: 124.19485276757453
Iteration: 5, Func. Count: 60, Neg. LLF: 126.23336345044565
Iteration: 6, Func. Count: 72, Neg. LLF: 123.2465604229612
Iteration: 7, Func. Count: 83, Neg. LLF: 121.51066917939612
Iteration: 8, Func. Count: 94, Neg. LLF: 121.13941398337997
Iteration: 9, Func. Count: 105, Neg. LLF: 120.94069655332137
Iteration: 10, Func. Count: 116, Neg. LLF: 120.89860278028506
Iteration: 11, Func. Count: 127, Neg. LLF: 120.88876565668899
Iteration: 12, Func. Count: 138, Neg. LLF: 120.88582490715432
Iteration: 13, Func. Count: 149, Neg. LLF: 120.87838617957706
Iteration: 14, Func. Count: 160, Neg. LLF: 120.87718827898377
Iteration: 15, Func. Count: 171, Neg. LLF: 120.87707882699088
Iteration: 16, Func. Count: 182, Neg. LLF: 120.87707835517205
Optimization terminated successfully (Exit mode 0)
Current function value: 120.87707835517205
Iterations: 16
Function evaluations: 182
Gradient evaluations: 16
Iteration: 1, Func. Count: 9, Neg. LLF: 129.46784002586259
Iteration: 2, Func. Count: 18, Neg. LLF: 148.30926881072986
Iteration: 3, Func. Count: 27, Neg. LLF: 125.83854781738849
Iteration: 4, Func. Count: 35, Neg. LLF: 126.07113195238786
Iteration: 5, Func. Count: 45, Neg. LLF: 127.0666419985497
Iteration: 6, Func. Count: 54, Neg. LLF: 124.89160022640716
Iteration: 7, Func. Count: 62, Neg. LLF: 124.79476969279521
Iteration: 8, Func. Count: 70, Neg. LLF: 124.74109776114047
Iteration: 9, Func. Count: 78, Neg. LLF: 124.7368475805898
Iteration: 10, Func. Count: 87, Neg. LLF: 124.71789221055377
Iteration: 11, Func. Count: 95, Neg. LLF: 124.71476101631617
Iteration: 12, Func. Count: 103, Neg. LLF: 124.71244104452259
Iteration: 13, Func. Count: 111, Neg. LLF: 124.71196145767799
Iteration: 14, Func. Count: 119, Neg. LLF: 124.71191734781254
Iteration: 15, Func. Count: 127, Neg. LLF: 124.71191663766578
Optimization terminated successfully (Exit mode 0)
Current function value: 124.71191663766578
Iterations: 15
Function evaluations: 127
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 128.7723808730429
Iteration: 2, Func. Count: 21, Neg. LLF: 128.4794035900236
Iteration: 3, Func. Count: 31, Neg. LLF: 125.46465144810091
Iteration: 4, Func. Count: 40, Neg. LLF: 125.53869412091338
Iteration: 5, Func. Count: 50, Neg. LLF: 124.85598782628615
Iteration: 6, Func. Count: 59, Neg. LLF: 124.78664528970877
Iteration: 7, Func. Count: 68, Neg. LLF: 124.75456549664167
Iteration: 8, Func. Count: 77, Neg. LLF: 124.71336737815497
Iteration: 9, Func. Count: 86, Neg. LLF: 124.71223305574549
Iteration: 10, Func. Count: 95, Neg. LLF: 124.7120716404223
Iteration: 11, Func. Count: 104, Neg. LLF: 124.71199131080039
Iteration: 12, Func. Count: 113, Neg. LLF: 124.71193874456625
Iteration: 13, Func. Count: 122, Neg. LLF: 124.71191918011792
Iteration: 14, Func. Count: 131, Neg. LLF: 124.71191672672033
Iteration: 15, Func. Count: 139, Neg. LLF: 124.71191676336879
Optimization terminated successfully (Exit mode 0)
Current function value: 124.71191672672033
Iterations: 15
Function evaluations: 139
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 128.15459237158984
Iteration: 2, Func. Count: 23, Neg. LLF: 129.58062169511882
Iteration: 3, Func. Count: 34, Neg. LLF: 125.39952814651974
Iteration: 4, Func. Count: 44, Neg. LLF: 125.49265910684598
Iteration: 5, Func. Count: 55, Neg. LLF: 125.72259582791801
Iteration: 6, Func. Count: 66, Neg. LLF: 125.28072895096832
Iteration: 7, Func. Count: 76, Neg. LLF: 125.25873873278042
Iteration: 8, Func. Count: 86, Neg. LLF: 124.92035823498279
Iteration: 9, Func. Count: 96, Neg. LLF: 124.78572678028411
Iteration: 10, Func. Count: 106, Neg. LLF: 124.72261948361081
Iteration: 11, Func. Count: 116, Neg. LLF: 124.71808591683234
Iteration: 12, Func. Count: 126, Neg. LLF: 124.71327307552161
Iteration: 13, Func. Count: 136, Neg. LLF: 124.71233215137704
Iteration: 14, Func. Count: 146, Neg. LLF: 124.71200107846127
Iteration: 15, Func. Count: 156, Neg. LLF: 124.71194518345857
Iteration: 16, Func. Count: 166, Neg. LLF: 124.71192003673022
Iteration: 17, Func. Count: 176, Neg. LLF: 124.7119170846162
Iteration: 18, Func. Count: 185, Neg. LLF: 124.71191712689766
Optimization terminated successfully (Exit mode 0)
Current function value: 124.7119170846162
Iterations: 18
Function evaluations: 185
Gradient evaluations: 18
Iteration: 1, Func. Count: 12, Neg. LLF: 127.5346528578697
Iteration: 2, Func. Count: 25, Neg. LLF: 130.8149523300956
Iteration: 3, Func. Count: 37, Neg. LLF: 125.43831284356057
Iteration: 4, Func. Count: 49, Neg. LLF: 124.82726048280111
Iteration: 5, Func. Count: 60, Neg. LLF: 128.5684319193377
Iteration: 6, Func. Count: 72, Neg. LLF: 124.58653133120758
Iteration: 7, Func. Count: 83, Neg. LLF: 123.89318749529482
Iteration: 8, Func. Count: 94, Neg. LLF: 125.06226603236989
Iteration: 9, Func. Count: 106, Neg. LLF: 123.75185682376656
Iteration: 10, Func. Count: 117, Neg. LLF: 123.73430922657309
Iteration: 11, Func. Count: 128, Neg. LLF: 123.73256583439546
Iteration: 12, Func. Count: 139, Neg. LLF: 123.73191190604815
Iteration: 13, Func. Count: 150, Neg. LLF: 123.73187537144914
Iteration: 14, Func. Count: 161, Neg. LLF: 123.73187178178773
Iteration: 15, Func. Count: 172, Neg. LLF: 123.73187275683658
Optimization terminated successfully (Exit mode 0)
Current function value: 123.73187275683658
Iterations: 15
Function evaluations: 172
Gradient evaluations: 15
Iteration: 1, Func. Count: 13, Neg. LLF: 127.9047677163882
Iteration: 2, Func. Count: 26, Neg. LLF: 131.07569909524022
Iteration: 3, Func. Count: 39, Neg. LLF: 136.78661147786858
Iteration: 4, Func. Count: 53, Neg. LLF: 124.09172887577562
Iteration: 5, Func. Count: 65, Neg. LLF: 130.28092445686062
Iteration: 6, Func. Count: 78, Neg. LLF: 125.97929760785404
Iteration: 7, Func. Count: 91, Neg. LLF: 122.69848555059349
Iteration: 8, Func. Count: 103, Neg. LLF: 122.04634214108664
Iteration: 9, Func. Count: 115, Neg. LLF: 121.36240459637821
Iteration: 10, Func. Count: 127, Neg. LLF: 121.04450632682521
Iteration: 11, Func. Count: 139, Neg. LLF: 120.90974686998264
Iteration: 12, Func. Count: 151, Neg. LLF: 120.89175174801085
Iteration: 13, Func. Count: 163, Neg. LLF: 120.87894613964711
Iteration: 14, Func. Count: 175, Neg. LLF: 120.87730142843702
Iteration: 15, Func. Count: 187, Neg. LLF: 120.87713730636744
Iteration: 16, Func. Count: 199, Neg. LLF: 120.87708112740695
Iteration: 17, Func. Count: 211, Neg. LLF: 120.87707931161684
Iteration: 18, Func. Count: 223, Neg. LLF: 120.87707850385867
Optimization terminated successfully (Exit mode 0)
Current function value: 120.87707850385867
Iterations: 19
Function evaluations: 223
Gradient evaluations: 18
Iteration: 1, Func. Count: 10, Neg. LLF: 129.543249438977
Iteration: 2, Func. Count: 20, Neg. LLF: 148.94700316893588
Iteration: 3, Func. Count: 30, Neg. LLF: 125.83893910791193
Iteration: 4, Func. Count: 39, Neg. LLF: 126.07671685521544
Iteration: 5, Func. Count: 50, Neg. LLF: 127.07773171639313
Iteration: 6, Func. Count: 60, Neg. LLF: 124.89295485206199
Iteration: 7, Func. Count: 69, Neg. LLF: 124.79572786634724
Iteration: 8, Func. Count: 78, Neg. LLF: 124.74143984063626
Iteration: 9, Func. Count: 87, Neg. LLF: 124.73753178638125
Iteration: 10, Func. Count: 97, Neg. LLF: 124.71797075858589
Iteration: 11, Func. Count: 106, Neg. LLF: 124.71478571008824
Iteration: 12, Func. Count: 115, Neg. LLF: 124.71245663894715
Iteration: 13, Func. Count: 124, Neg. LLF: 124.71196326409306
Iteration: 14, Func. Count: 133, Neg. LLF: 124.7119173976853
Iteration: 15, Func. Count: 142, Neg. LLF: 124.71191663751223
Optimization terminated successfully (Exit mode 0)
Current function value: 124.71191663751223
Iterations: 15
Function evaluations: 142
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 128.7787890222236
Iteration: 2, Func. Count: 23, Neg. LLF: 128.48443893727466
Iteration: 3, Func. Count: 34, Neg. LLF: 125.46859883503855
Iteration: 4, Func. Count: 44, Neg. LLF: 125.6196174406253
Iteration: 5, Func. Count: 55, Neg. LLF: 124.86463359997838
Iteration: 6, Func. Count: 65, Neg. LLF: 124.79262088087248
Iteration: 7, Func. Count: 75, Neg. LLF: 124.76543163631402
Iteration: 8, Func. Count: 85, Neg. LLF: 124.71452317685346
Iteration: 9, Func. Count: 95, Neg. LLF: 124.71225830576688
Iteration: 10, Func. Count: 105, Neg. LLF: 124.71201316519115
Iteration: 11, Func. Count: 115, Neg. LLF: 124.7119731344681
Iteration: 12, Func. Count: 125, Neg. LLF: 124.7119361506162
Iteration: 13, Func. Count: 135, Neg. LLF: 124.71191977121133
Iteration: 14, Func. Count: 145, Neg. LLF: 124.71191678516156
Iteration: 15, Func. Count: 154, Neg. LLF: 124.7119168218132
Optimization terminated successfully (Exit mode 0)
Current function value: 124.71191678516156
Iterations: 15
Function evaluations: 154
Gradient evaluations: 15
Iteration: 1, Func. Count: 12, Neg. LLF: 128.15563674282626
Iteration: 2, Func. Count: 25, Neg. LLF: 129.60802524884213
Iteration: 3, Func. Count: 37, Neg. LLF: 125.39738238503845
Iteration: 4, Func. Count: 48, Neg. LLF: 125.48821724631625
Iteration: 5, Func. Count: 60, Neg. LLF: 125.74629003935603
Iteration: 6, Func. Count: 72, Neg. LLF: 125.28241447916659
Iteration: 7, Func. Count: 83, Neg. LLF: 125.26251295010962
Iteration: 8, Func. Count: 94, Neg. LLF: 124.8921993711616
Iteration: 9, Func. Count: 105, Neg. LLF: 124.78113855288915
Iteration: 10, Func. Count: 116, Neg. LLF: 124.72444304015636
Iteration: 11, Func. Count: 127, Neg. LLF: 124.71813272674586
Iteration: 12, Func. Count: 138, Neg. LLF: 124.71341756731978
Iteration: 13, Func. Count: 149, Neg. LLF: 124.71258201247575
Iteration: 14, Func. Count: 160, Neg. LLF: 124.71213894370227
Iteration: 15, Func. Count: 171, Neg. LLF: 124.71195045186256
Iteration: 16, Func. Count: 182, Neg. LLF: 124.71192032366855
Iteration: 17, Func. Count: 193, Neg. LLF: 124.71191747684351
Iteration: 18, Func. Count: 203, Neg. LLF: 124.71191751910642
Optimization terminated successfully (Exit mode 0)
Current function value: 124.71191747684351
Iterations: 18
Function evaluations: 203
Gradient evaluations: 18
Iteration: 1, Func. Count: 13, Neg. LLF: 127.48069602523316
Iteration: 2, Func. Count: 27, Neg. LLF: 130.85505600488665
Iteration: 3, Func. Count: 40, Neg. LLF: 125.14442812162302
Iteration: 4, Func. Count: 52, Neg. LLF: 124.80793544572876
Iteration: 5, Func. Count: 64, Neg. LLF: 124.74676531871825
Iteration: 6, Func. Count: 76, Neg. LLF: 123.94352331930351
Iteration: 7, Func. Count: 88, Neg. LLF: 123.74908602425349
Iteration: 8, Func. Count: 100, Neg. LLF: 123.767381964951
Iteration: 9, Func. Count: 113, Neg. LLF: 123.73278600005573
Iteration: 10, Func. Count: 125, Neg. LLF: 123.73188147811558
Iteration: 11, Func. Count: 137, Neg. LLF: 123.73187298705145
Iteration: 12, Func. Count: 148, Neg. LLF: 123.73187293093082
Optimization terminated successfully (Exit mode 0)
Current function value: 123.73187298705145
Iterations: 12
Function evaluations: 148
Gradient evaluations: 12
Iteration: 1, Func. Count: 14, Neg. LLF: 127.76184580619004
Iteration: 2, Func. Count: 28, Neg. LLF: 130.88263647393185
Iteration: 3, Func. Count: 42, Neg. LLF: 137.03756383997026
Iteration: 4, Func. Count: 57, Neg. LLF: 124.55520073331095
Iteration: 5, Func. Count: 70, Neg. LLF: 127.16085840595622
Iteration: 6, Func. Count: 84, Neg. LLF: 124.93873736257821
Iteration: 7, Func. Count: 98, Neg. LLF: 123.60783505533571
Iteration: 8, Func. Count: 111, Neg. LLF: 123.27173370153348
Iteration: 9, Func. Count: 125, Neg. LLF: 122.7378416156988
Iteration: 10, Func. Count: 139, Neg. LLF: 121.87078665134972
Iteration: 11, Func. Count: 152, Neg. LLF: 121.39435537490536
Iteration: 12, Func. Count: 165, Neg. LLF: 121.13262048306461
Iteration: 13, Func. Count: 178, Neg. LLF: 120.98450895486492
Iteration: 14, Func. Count: 191, Neg. LLF: 120.87985802422878
Iteration: 15, Func. Count: 204, Neg. LLF: 120.87737899728731
Iteration: 16, Func. Count: 217, Neg. LLF: 120.87720691998305
Iteration: 17, Func. Count: 230, Neg. LLF: 120.87714187433404
Iteration: 18, Func. Count: 243, Neg. LLF: 120.87710101047884
Iteration: 19, Func. Count: 256, Neg. LLF: 120.87708312116337
Iteration: 20, Func. Count: 269, Neg. LLF: 120.87707858770962
Iteration: 21, Func. Count: 282, Neg. LLF: 120.87709735396596
Optimization terminated successfully (Exit mode 0)
Current function value: 120.8770784875205
Iterations: 22
Function evaluations: 283
Gradient evaluations: 21
Iteration: 1, Func. Count: 11, Neg. LLF: 129.6334459902645
Iteration: 2, Func. Count: 22, Neg. LLF: 149.2641630710966
Iteration: 3, Func. Count: 33, Neg. LLF: 125.81434905146332
Iteration: 4, Func. Count: 43, Neg. LLF: 126.07280379160412
Iteration: 5, Func. Count: 55, Neg. LLF: 127.07227987637813
Iteration: 6, Func. Count: 66, Neg. LLF: 124.8923945403144
Iteration: 7, Func. Count: 76, Neg. LLF: 124.79489351248259
Iteration: 8, Func. Count: 86, Neg. LLF: 124.74080659785972
Iteration: 9, Func. Count: 96, Neg. LLF: 124.73156876227887
Iteration: 10, Func. Count: 106, Neg. LLF: 124.72178994215918
Iteration: 11, Func. Count: 116, Neg. LLF: 124.71534135589206
Iteration: 12, Func. Count: 126, Neg. LLF: 124.71332997088805
Iteration: 13, Func. Count: 136, Neg. LLF: 124.71224510598631
Iteration: 14, Func. Count: 146, Neg. LLF: 124.71194347713681
Iteration: 15, Func. Count: 156, Neg. LLF: 124.71191714841792
Iteration: 16, Func. Count: 165, Neg. LLF: 124.71191737819375
Optimization terminated successfully (Exit mode 0)
Current function value: 124.71191714841792
Iterations: 16
Function evaluations: 165
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 128.74446577490326
Iteration: 2, Func. Count: 25, Neg. LLF: 128.52702701267856
Iteration: 3, Func. Count: 37, Neg. LLF: 125.47048462145457
Iteration: 4, Func. Count: 48, Neg. LLF: 125.5721898033629
Iteration: 5, Func. Count: 60, Neg. LLF: 124.86613733163131
Iteration: 6, Func. Count: 71, Neg. LLF: 124.79451489081764
Iteration: 7, Func. Count: 82, Neg. LLF: 124.76201198237203
Iteration: 8, Func. Count: 93, Neg. LLF: 124.71429072873038
Iteration: 9, Func. Count: 104, Neg. LLF: 124.71220423421677
Iteration: 10, Func. Count: 115, Neg. LLF: 124.71202978436438
Iteration: 11, Func. Count: 126, Neg. LLF: 124.7119811727575
Iteration: 12, Func. Count: 137, Neg. LLF: 124.71193669762049
Iteration: 13, Func. Count: 148, Neg. LLF: 124.71191948878541
Iteration: 14, Func. Count: 159, Neg. LLF: 124.71191674808493
Iteration: 15, Func. Count: 169, Neg. LLF: 124.71191678473369
Optimization terminated successfully (Exit mode 0)
Current function value: 124.71191674808493
Iterations: 15
Function evaluations: 169
Gradient evaluations: 15
Iteration: 1, Func. Count: 13, Neg. LLF: 128.15223546431645
Iteration: 2, Func. Count: 27, Neg. LLF: 129.58952976696781
Iteration: 3, Func. Count: 40, Neg. LLF: 125.39493065237106
Iteration: 4, Func. Count: 52, Neg. LLF: 125.45002006666081
Iteration: 5, Func. Count: 65, Neg. LLF: 125.89283035899362
Iteration: 6, Func. Count: 78, Neg. LLF: 125.28259860096126
Iteration: 7, Func. Count: 90, Neg. LLF: 125.25966663236865
Iteration: 8, Func. Count: 102, Neg. LLF: 124.8391401692674
Iteration: 9, Func. Count: 114, Neg. LLF: 124.77641620165447
Iteration: 10, Func. Count: 126, Neg. LLF: 124.72774421149656
Iteration: 11, Func. Count: 138, Neg. LLF: 124.71865065333395
Iteration: 12, Func. Count: 150, Neg. LLF: 124.7138754908188
Iteration: 13, Func. Count: 162, Neg. LLF: 124.71281251792705
Iteration: 14, Func. Count: 174, Neg. LLF: 124.71224601588308
Iteration: 15, Func. Count: 186, Neg. LLF: 124.71196494274189
Iteration: 16, Func. Count: 198, Neg. LLF: 124.71192054859269
Iteration: 17, Func. Count: 210, Neg. LLF: 124.71191763955838
Iteration: 18, Func. Count: 221, Neg. LLF: 124.71191768189396
Optimization terminated successfully (Exit mode 0)
Current function value: 124.71191763955838
Iterations: 18
Function evaluations: 221
Gradient evaluations: 18
Iteration: 1, Func. Count: 14, Neg. LLF: 127.54842646315204
Iteration: 2, Func. Count: 29, Neg. LLF: 130.76962688671657
Iteration: 3, Func. Count: 43, Neg. LLF: 125.00713101800788
Iteration: 4, Func. Count: 56, Neg. LLF: 124.80639135090061
Iteration: 5, Func. Count: 69, Neg. LLF: 126.72174573124423
Iteration: 6, Func. Count: 83, Neg. LLF: 124.62375000648755
Iteration: 7, Func. Count: 96, Neg. LLF: 123.79418970300861
Iteration: 8, Func. Count: 109, Neg. LLF: 124.59831813071459
Iteration: 9, Func. Count: 123, Neg. LLF: 123.73377103882642
Iteration: 10, Func. Count: 136, Neg. LLF: 123.73191292661299
Iteration: 11, Func. Count: 149, Neg. LLF: 123.73187603681161
Iteration: 12, Func. Count: 162, Neg. LLF: 123.73187318416063
Iteration: 13, Func. Count: 174, Neg. LLF: 123.73187312803849
Optimization terminated successfully (Exit mode 0)
Current function value: 123.73187318416063
Iterations: 13
Function evaluations: 174
Gradient evaluations: 13
Iteration: 1, Func. Count: 15, Neg. LLF: 127.76603595171366
Iteration: 2, Func. Count: 30, Neg. LLF: 130.77900904776482
Iteration: 3, Func. Count: 45, Neg. LLF: 141.3473575116533
Iteration: 4, Func. Count: 61, Neg. LLF: 124.93229271669357
Iteration: 5, Func. Count: 75, Neg. LLF: 124.66182621117422
Iteration: 6, Func. Count: 89, Neg. LLF: 123.88912343530573
Iteration: 7, Func. Count: 103, Neg. LLF: 123.2709036235319
Iteration: 8, Func. Count: 117, Neg. LLF: 122.45301196001616
Iteration: 9, Func. Count: 131, Neg. LLF: 121.9559255981368
Iteration: 10, Func. Count: 145, Neg. LLF: 121.47722456580244
Iteration: 11, Func. Count: 159, Neg. LLF: 121.31685087483902
Iteration: 12, Func. Count: 173, Neg. LLF: 120.99186219136642
Iteration: 13, Func. Count: 187, Neg. LLF: 120.90806687397998
Iteration: 14, Func. Count: 201, Neg. LLF: 120.88169495727442
Iteration: 15, Func. Count: 215, Neg. LLF: 120.87714728957742
Iteration: 16, Func. Count: 229, Neg. LLF: 120.87709235645835
Iteration: 17, Func. Count: 243, Neg. LLF: 120.87708307217171
Iteration: 18, Func. Count: 257, Neg. LLF: 120.87707927546363
Iteration: 19, Func. Count: 271, Neg. LLF: 120.87707912901222
Optimization terminated successfully (Exit mode 0)
Current function value: 120.87707927546028
Iterations: 19
Function evaluations: 281
Gradient evaluations: 19
Iteration: 1, Func. Count: 8, Neg. LLF: 132.9503722447363
Iteration: 2, Func. Count: 16, Neg. LLF: 158.1437305910881
Iteration: 3, Func. Count: 24, Neg. LLF: 125.56614447015495
Iteration: 4, Func. Count: 31, Neg. LLF: 125.37468080445252
Iteration: 5, Func. Count: 38, Neg. LLF: 125.35516340073967
Iteration: 6, Func. Count: 45, Neg. LLF: 125.31531528740068
Iteration: 7, Func. Count: 52, Neg. LLF: 125.29954548216665
Iteration: 8, Func. Count: 59, Neg. LLF: 125.29809858566026
Iteration: 9, Func. Count: 66, Neg. LLF: 125.29803693639937
Iteration: 10, Func. Count: 73, Neg. LLF: 125.29803609188504
Optimization terminated successfully (Exit mode 0)
Current function value: 125.29803609188504
Iterations: 10
Function evaluations: 73
Gradient evaluations: 10
Iteration: 1, Func. Count: 9, Neg. LLF: 165.4622767888144
Iteration: 2, Func. Count: 19, Neg. LLF: 125.77854651648703
Iteration: 3, Func. Count: 27, Neg. LLF: 125.78093381546611
Iteration: 4, Func. Count: 36, Neg. LLF: 125.77808906829127
Iteration: 5, Func. Count: 44, Neg. LLF: 125.77710933705234
Iteration: 6, Func. Count: 52, Neg. LLF: 125.77164950520543
Iteration: 7, Func. Count: 60, Neg. LLF: 125.76589555670675
Iteration: 8, Func. Count: 68, Neg. LLF: 125.76323365808771
Iteration: 9, Func. Count: 77, Neg. LLF: 125.71184541300853
Iteration: 10, Func. Count: 85, Neg. LLF: 126.4436923501158
Iteration: 11, Func. Count: 94, Neg. LLF: 125.9501270587464
Iteration: 12, Func. Count: 103, Neg. LLF: 125.72909751444021
Iteration: 13, Func. Count: 112, Neg. LLF: 125.68438194838778
Iteration: 14, Func. Count: 120, Neg. LLF: 125.68365417333055
Iteration: 15, Func. Count: 128, Neg. LLF: 125.68355885517
Iteration: 16, Func. Count: 136, Neg. LLF: 125.68355702357736
Iteration: 17, Func. Count: 143, Neg. LLF: 125.68355702358375
Optimization terminated successfully (Exit mode 0)
Current function value: 125.68355702357736
Iterations: 17
Function evaluations: 143
Gradient evaluations: 17
Iteration: 1, Func. Count: 10, Neg. LLF: 150.25094632687723
Iteration: 2, Func. Count: 21, Neg. LLF: 125.72832047224092
Iteration: 3, Func. Count: 30, Neg. LLF: 125.71606689687303
Iteration: 4, Func. Count: 39, Neg. LLF: 125.70944291462007
Iteration: 5, Func. Count: 48, Neg. LLF: 125.69698378603145
Iteration: 6, Func. Count: 57, Neg. LLF: 125.69320652092726
Iteration: 7, Func. Count: 66, Neg. LLF: 125.69296781590475
Iteration: 8, Func. Count: 75, Neg. LLF: 125.69296634255325
Iteration: 9, Func. Count: 83, Neg. LLF: 125.69296634255716
Optimization terminated successfully (Exit mode 0)
Current function value: 125.69296634255325
Iterations: 9
Function evaluations: 83
Gradient evaluations: 9
Iteration: 1, Func. Count: 11, Neg. LLF: 146.0001971796539
Iteration: 2, Func. Count: 23, Neg. LLF: 125.7232130476108
Iteration: 3, Func. Count: 33, Neg. LLF: 125.71031199747044
Iteration: 4, Func. Count: 43, Neg. LLF: 125.70697010065396
Iteration: 5, Func. Count: 53, Neg. LLF: 125.70236090060571
Iteration: 6, Func. Count: 63, Neg. LLF: 125.70091166264423
Iteration: 7, Func. Count: 73, Neg. LLF: 125.7001362132206
Iteration: 8, Func. Count: 83, Neg. LLF: 125.69923732685552
Iteration: 9, Func. Count: 93, Neg. LLF: 125.69480829894172
Iteration: 10, Func. Count: 103, Neg. LLF: 125.68982948238764
Iteration: 11, Func. Count: 113, Neg. LLF: 125.68915034086076
Iteration: 12, Func. Count: 123, Neg. LLF: 125.68734876492293
Iteration: 13, Func. Count: 133, Neg. LLF: 125.68629015550434
Iteration: 14, Func. Count: 143, Neg. LLF: 125.68529681425518
Iteration: 15, Func. Count: 153, Neg. LLF: 125.68448065356165
Iteration: 16, Func. Count: 163, Neg. LLF: 125.68370558160808
Iteration: 17, Func. Count: 173, Neg. LLF: 125.68362752777973
Iteration: 18, Func. Count: 183, Neg. LLF: 125.68357241430533
Iteration: 19, Func. Count: 193, Neg. LLF: 147.5803723921126
Iteration: 20, Func. Count: 206, Neg. LLF: 125.68357644146046
Iteration: 21, Func. Count: 217, Neg. LLF: 125.68356097646962
Iteration: 22, Func. Count: 227, Neg. LLF: 125.68355734225003
Optimization terminated successfully (Exit mode 0)
Current function value: 125.68355734132678
Iterations: 23
Function evaluations: 227
Gradient evaluations: 22
Iteration: 1, Func. Count: 12, Neg. LLF: 126.97592155535801
Iteration: 2, Func. Count: 26, Neg. LLF: 128.32505534888054
Iteration: 3, Func. Count: 38, Neg. LLF: 124.86333446633547
Iteration: 4, Func. Count: 49, Neg. LLF: 124.31831954782203
Iteration: 5, Func. Count: 60, Neg. LLF: 141.76265759845109
Iteration: 6, Func. Count: 72, Neg. LLF: 126.20542877810648
Iteration: 7, Func. Count: 84, Neg. LLF: 122.29262013829428
Iteration: 8, Func. Count: 95, Neg. LLF: 121.6647268184276
Iteration: 9, Func. Count: 106, Neg. LLF: 121.36311849365954
Iteration: 10, Func. Count: 117, Neg. LLF: 121.32063859557931
Iteration: 11, Func. Count: 128, Neg. LLF: 121.07212718166033
Iteration: 12, Func. Count: 139, Neg. LLF: 120.9377623611197
Iteration: 13, Func. Count: 150, Neg. LLF: 120.90975539117176
Iteration: 14, Func. Count: 161, Neg. LLF: 120.90879403042206
Iteration: 15, Func. Count: 172, Neg. LLF: 120.9087481926513
Iteration: 16, Func. Count: 183, Neg. LLF: 120.90879855951815
Optimization terminated successfully (Exit mode 0)
Current function value: 120.90874848089268
Iterations: 17
Function evaluations: 184
Gradient evaluations: 16
Iteration: 1, Func. Count: 9, Neg. LLF: 132.8091131771264
Iteration: 2, Func. Count: 18, Neg. LLF: 150.77246609936364
Iteration: 3, Func. Count: 27, Neg. LLF: 125.42769427244193
Iteration: 4, Func. Count: 35, Neg. LLF: 130.4241002799945
Iteration: 5, Func. Count: 46, Neg. LLF: 127.2389088078998
Iteration: 6, Func. Count: 55, Neg. LLF: 124.74581782893323
Iteration: 7, Func. Count: 63, Neg. LLF: 124.72322770730419
Iteration: 8, Func. Count: 71, Neg. LLF: 124.718990188352
Iteration: 9, Func. Count: 79, Neg. LLF: 124.71543710107802
Iteration: 10, Func. Count: 87, Neg. LLF: 124.71437627498926
Iteration: 11, Func. Count: 95, Neg. LLF: 124.71323710201295
Iteration: 12, Func. Count: 103, Neg. LLF: 124.71216809154463
Iteration: 13, Func. Count: 111, Neg. LLF: 124.71194511770217
Iteration: 14, Func. Count: 119, Neg. LLF: 124.71191708761523
Iteration: 15, Func. Count: 126, Neg. LLF: 124.71191708770591
Optimization terminated successfully (Exit mode 0)
Current function value: 124.71191708761523
Iterations: 15
Function evaluations: 126
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 128.66303523808168
Iteration: 2, Func. Count: 21, Neg. LLF: 128.68356434873144
Iteration: 3, Func. Count: 31, Neg. LLF: 125.46467578502838
Iteration: 4, Func. Count: 40, Neg. LLF: 124.91488382778323
Iteration: 5, Func. Count: 49, Neg. LLF: 124.89306628736803
Iteration: 6, Func. Count: 59, Neg. LLF: 124.78319541810187
Iteration: 7, Func. Count: 68, Neg. LLF: 124.76169240699534
Iteration: 8, Func. Count: 77, Neg. LLF: 124.74922560787732
Iteration: 9, Func. Count: 86, Neg. LLF: 124.71988226717343
Iteration: 10, Func. Count: 95, Neg. LLF: 124.7144247858116
Iteration: 11, Func. Count: 104, Neg. LLF: 124.71332520193819
Iteration: 12, Func. Count: 113, Neg. LLF: 124.71264225533187
Iteration: 13, Func. Count: 122, Neg. LLF: 124.71210721945307
Iteration: 14, Func. Count: 131, Neg. LLF: 124.71195323860245
Iteration: 15, Func. Count: 140, Neg. LLF: 124.71192059903436
Iteration: 16, Func. Count: 149, Neg. LLF: 124.71191680084547
Iteration: 17, Func. Count: 157, Neg. LLF: 124.71191683746808
Optimization terminated successfully (Exit mode 0)
Current function value: 124.71191680084547
Iterations: 17
Function evaluations: 157
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 128.06876260159578
Iteration: 2, Func. Count: 23, Neg. LLF: 129.79971546611606
Iteration: 3, Func. Count: 34, Neg. LLF: 125.41504363550928
Iteration: 4, Func. Count: 45, Neg. LLF: 125.66949568567226
Iteration: 5, Func. Count: 56, Neg. LLF: 125.28995172338946
Iteration: 6, Func. Count: 66, Neg. LLF: 125.27677756310797
Iteration: 7, Func. Count: 76, Neg. LLF: 125.02935496432158
Iteration: 8, Func. Count: 86, Neg. LLF: 124.74445787336467
Iteration: 9, Func. Count: 96, Neg. LLF: 124.73128981093843
Iteration: 10, Func. Count: 106, Neg. LLF: 124.71602119459538
Iteration: 11, Func. Count: 116, Neg. LLF: 124.71351864879966
Iteration: 12, Func. Count: 126, Neg. LLF: 124.71222952276422
Iteration: 13, Func. Count: 136, Neg. LLF: 124.71202212558632
Iteration: 14, Func. Count: 146, Neg. LLF: 124.71193331164258
Iteration: 15, Func. Count: 156, Neg. LLF: 124.71191859642987
Iteration: 16, Func. Count: 166, Neg. LLF: 124.71191699207
Iteration: 17, Func. Count: 175, Neg. LLF: 124.71191703436342
Optimization terminated successfully (Exit mode 0)
Current function value: 124.71191699207
Iterations: 17
Function evaluations: 175
Gradient evaluations: 17
Iteration: 1, Func. Count: 12, Neg. LLF: 127.4887823395257
Iteration: 2, Func. Count: 25, Neg. LLF: 130.92702368882354
Iteration: 3, Func. Count: 37, Neg. LLF: 124.88174370015686
Iteration: 4, Func. Count: 48, Neg. LLF: 124.86141128408251
Iteration: 5, Func. Count: 59, Neg. LLF: 125.46699296939853
Iteration: 6, Func. Count: 71, Neg. LLF: 124.06746225481676
Iteration: 7, Func. Count: 82, Neg. LLF: 129.83070608531457
Iteration: 8, Func. Count: 94, Neg. LLF: 123.87528611237725
Iteration: 9, Func. Count: 105, Neg. LLF: 123.74436800204849
Iteration: 10, Func. Count: 116, Neg. LLF: 123.73258333209522
Iteration: 11, Func. Count: 127, Neg. LLF: 123.73189248819317
Iteration: 12, Func. Count: 138, Neg. LLF: 123.73187385740954
Iteration: 13, Func. Count: 149, Neg. LLF: 123.73187306368277
Optimization terminated successfully (Exit mode 0)
Current function value: 123.73187306368277
Iterations: 13
Function evaluations: 149
Gradient evaluations: 13
Iteration: 1, Func. Count: 13, Neg. LLF: 127.78200670179824
Iteration: 2, Func. Count: 26, Neg. LLF: 131.1841436348608
Iteration: 3, Func. Count: 39, Neg. LLF: 144.6659239492585
Iteration: 4, Func. Count: 53, Neg. LLF: 123.97531508191379
Iteration: 5, Func. Count: 65, Neg. LLF: 128.72832639628442
Iteration: 6, Func. Count: 78, Neg. LLF: 122.40943695886264
Iteration: 7, Func. Count: 90, Neg. LLF: 121.0338884442285
Iteration: 8, Func. Count: 102, Neg. LLF: 121.04486652682864
Iteration: 9, Func. Count: 115, Neg. LLF: 120.94728936552966
Iteration: 10, Func. Count: 127, Neg. LLF: 120.92207102313473
Iteration: 11, Func. Count: 139, Neg. LLF: 120.90985014048086
Iteration: 12, Func. Count: 151, Neg. LLF: 120.88704992398489
Iteration: 13, Func. Count: 163, Neg. LLF: 120.87906314845907
Iteration: 14, Func. Count: 175, Neg. LLF: 120.87709614732627
Iteration: 15, Func. Count: 187, Neg. LLF: 120.87707919705608
Iteration: 16, Func. Count: 199, Neg. LLF: 120.87707816013815
Iteration: 17, Func. Count: 210, Neg. LLF: 120.87707804334163
Optimization terminated successfully (Exit mode 0)
Current function value: 120.87707816013815
Iterations: 17
Function evaluations: 210
Gradient evaluations: 17
Iteration: 1, Func. Count: 10, Neg. LLF: 132.62352839435104
Iteration: 2, Func. Count: 20, Neg. LLF: 156.62646136722663
Iteration: 3, Func. Count: 30, Neg. LLF: 125.49229696934194
Iteration: 4, Func. Count: 39, Neg. LLF: 125.30925098033393
Iteration: 5, Func. Count: 49, Neg. LLF: 124.85011989212728
Iteration: 6, Func. Count: 58, Neg. LLF: 125.04659188612342
Iteration: 7, Func. Count: 69, Neg. LLF: 124.75638629705216
Iteration: 8, Func. Count: 78, Neg. LLF: 124.74107843708778
Iteration: 9, Func. Count: 87, Neg. LLF: 124.72506875036453
Iteration: 10, Func. Count: 96, Neg. LLF: 124.71509009202993
Iteration: 11, Func. Count: 105, Neg. LLF: 124.7120093192496
Iteration: 12, Func. Count: 114, Neg. LLF: 124.71191758346565
Iteration: 13, Func. Count: 123, Neg. LLF: 124.71191664326234
Optimization terminated successfully (Exit mode 0)
Current function value: 124.71191664326234
Iterations: 13
Function evaluations: 123
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 128.74522675413814
Iteration: 2, Func. Count: 23, Neg. LLF: 128.54283338482097
Iteration: 3, Func. Count: 34, Neg. LLF: 125.46845833856716
Iteration: 4, Func. Count: 44, Neg. LLF: 125.49819043849637
Iteration: 5, Func. Count: 55, Neg. LLF: 124.85954307531689
Iteration: 6, Func. Count: 65, Neg. LLF: 124.79004412745337
Iteration: 7, Func. Count: 75, Neg. LLF: 124.75194890169355
Iteration: 8, Func. Count: 85, Neg. LLF: 124.71368110642763
Iteration: 9, Func. Count: 95, Neg. LLF: 124.71220604794132
Iteration: 10, Func. Count: 105, Neg. LLF: 124.71207324535101
Iteration: 11, Func. Count: 115, Neg. LLF: 124.71198660219171
Iteration: 12, Func. Count: 125, Neg. LLF: 124.71193958456199
Iteration: 13, Func. Count: 135, Neg. LLF: 124.71191907145429
Iteration: 14, Func. Count: 145, Neg. LLF: 124.71191673089488
Iteration: 15, Func. Count: 154, Neg. LLF: 124.71191676754296
Optimization terminated successfully (Exit mode 0)
Current function value: 124.71191673089488
Iterations: 15
Function evaluations: 154
Gradient evaluations: 15
Iteration: 1, Func. Count: 12, Neg. LLF: 128.16297569565708
Iteration: 2, Func. Count: 25, Neg. LLF: 129.58343304996046
Iteration: 3, Func. Count: 37, Neg. LLF: 125.3959863857281
Iteration: 4, Func. Count: 48, Neg. LLF: 125.45466289110087
Iteration: 5, Func. Count: 60, Neg. LLF: 125.86402516784257
Iteration: 6, Func. Count: 72, Neg. LLF: 125.28158078814906
Iteration: 7, Func. Count: 83, Neg. LLF: 125.25661457169288
Iteration: 8, Func. Count: 94, Neg. LLF: 124.85171785264811
Iteration: 9, Func. Count: 105, Neg. LLF: 124.7863523084917
Iteration: 10, Func. Count: 116, Neg. LLF: 124.72579728351046
Iteration: 11, Func. Count: 127, Neg. LLF: 124.71849063107508
Iteration: 12, Func. Count: 138, Neg. LLF: 124.71357230927772
Iteration: 13, Func. Count: 149, Neg. LLF: 124.7127008685234
Iteration: 14, Func. Count: 160, Neg. LLF: 124.7121916956255
Iteration: 15, Func. Count: 171, Neg. LLF: 124.71195530351287
Iteration: 16, Func. Count: 182, Neg. LLF: 124.71191958338746
Iteration: 17, Func. Count: 193, Neg. LLF: 124.71191728050734
Iteration: 18, Func. Count: 203, Neg. LLF: 124.71191732284149
Optimization terminated successfully (Exit mode 0)
Current function value: 124.71191728050734
Iterations: 18
Function evaluations: 203
Gradient evaluations: 18
Iteration: 1, Func. Count: 13, Neg. LLF: 127.59743011895473
Iteration: 2, Func. Count: 27, Neg. LLF: 130.72945459359806
Iteration: 3, Func. Count: 40, Neg. LLF: 124.95984804671838
Iteration: 4, Func. Count: 52, Neg. LLF: 124.8185050358178
Iteration: 5, Func. Count: 64, Neg. LLF: 127.60426127288765
Iteration: 6, Func. Count: 77, Neg. LLF: 124.59749204914564
Iteration: 7, Func. Count: 89, Neg. LLF: 123.79023554907359
Iteration: 8, Func. Count: 101, Neg. LLF: 124.87060833815127
Iteration: 9, Func. Count: 114, Neg. LLF: 123.7343113885958
Iteration: 10, Func. Count: 126, Neg. LLF: 123.73188941315158
Iteration: 11, Func. Count: 138, Neg. LLF: 123.73187499109237
Iteration: 12, Func. Count: 150, Neg. LLF: 123.73187283931806
Iteration: 13, Func. Count: 161, Neg. LLF: 123.73187278323266
Optimization terminated successfully (Exit mode 0)
Current function value: 123.73187283931806
Iterations: 13
Function evaluations: 161
Gradient evaluations: 13
Iteration: 1, Func. Count: 14, Neg. LLF: 127.81379091110611
Iteration: 2, Func. Count: 28, Neg. LLF: 130.90266033266744
Iteration: 3, Func. Count: 42, Neg. LLF: 141.2013142114736
Iteration: 4, Func. Count: 57, Neg. LLF: 124.26631602519552
Iteration: 5, Func. Count: 70, Neg. LLF: 130.9835834428235
Iteration: 6, Func. Count: 84, Neg. LLF: 127.74057888604857
Iteration: 7, Func. Count: 98, Neg. LLF: 122.62086125692154
Iteration: 8, Func. Count: 111, Neg. LLF: 122.09788996935467
Iteration: 9, Func. Count: 124, Neg. LLF: 121.37810818363143
Iteration: 10, Func. Count: 137, Neg. LLF: 120.95967130901154
Iteration: 11, Func. Count: 150, Neg. LLF: 120.91639684065308
Iteration: 12, Func. Count: 163, Neg. LLF: 120.88577668141637
Iteration: 13, Func. Count: 176, Neg. LLF: 120.87814310991587
Iteration: 14, Func. Count: 189, Neg. LLF: 120.87727466992034
Iteration: 15, Func. Count: 202, Neg. LLF: 120.87710579297244
Iteration: 16, Func. Count: 215, Neg. LLF: 120.88428684441793
Iteration: 17, Func. Count: 230, Neg. LLF: 120.87733400101965
Iteration: 18, Func. Count: 244, Neg. LLF: 120.87716570209228
Iteration: 19, Func. Count: 258, Neg. LLF: 120.87710829597782
Iteration: 20, Func. Count: 272, Neg. LLF: 120.87707845772586
Iteration: 21, Func. Count: 284, Neg. LLF: 120.87707834091307
Optimization terminated successfully (Exit mode 0)
Current function value: 120.87707845772586
Iterations: 22
Function evaluations: 284
Gradient evaluations: 21
Iteration: 1, Func. Count: 11, Neg. LLF: 132.73761919729628
Iteration: 2, Func. Count: 22, Neg. LLF: 157.0876859949516
Iteration: 3, Func. Count: 33, Neg. LLF: 125.44450294008573
Iteration: 4, Func. Count: 43, Neg. LLF: 125.14936576386938
Iteration: 5, Func. Count: 53, Neg. LLF: 124.81405544784614
Iteration: 6, Func. Count: 63, Neg. LLF: 125.06531366462181
Iteration: 7, Func. Count: 75, Neg. LLF: 124.75278561965095
Iteration: 8, Func. Count: 85, Neg. LLF: 124.73345665590887
Iteration: 9, Func. Count: 95, Neg. LLF: 124.72287889506364
Iteration: 10, Func. Count: 105, Neg. LLF: 124.71238378088238
Iteration: 11, Func. Count: 115, Neg. LLF: 124.71194248112236
Iteration: 12, Func. Count: 125, Neg. LLF: 124.71191781136883
Iteration: 13, Func. Count: 135, Neg. LLF: 124.7119166375491
Iteration: 14, Func. Count: 144, Neg. LLF: 124.71191646284213
Optimization terminated successfully (Exit mode 0)
Current function value: 124.7119166375491
Iterations: 14
Function evaluations: 144
Gradient evaluations: 14
Iteration: 1, Func. Count: 12, Neg. LLF: 128.75167639203045
Iteration: 2, Func. Count: 25, Neg. LLF: 128.54771719012638
Iteration: 3, Func. Count: 37, Neg. LLF: 125.47227429435503
Iteration: 4, Func. Count: 48, Neg. LLF: 125.59380617459219
Iteration: 5, Func. Count: 60, Neg. LLF: 124.86859554919974
Iteration: 6, Func. Count: 71, Neg. LLF: 124.7961359192103
Iteration: 7, Func. Count: 82, Neg. LLF: 124.76452205573642
Iteration: 8, Func. Count: 93, Neg. LLF: 124.7150225581473
Iteration: 9, Func. Count: 104, Neg. LLF: 124.71227505739137
Iteration: 10, Func. Count: 115, Neg. LLF: 124.71203202194815
Iteration: 11, Func. Count: 126, Neg. LLF: 124.71198466979259
Iteration: 12, Func. Count: 137, Neg. LLF: 124.7119402464636
Iteration: 13, Func. Count: 148, Neg. LLF: 124.71192049813216
Iteration: 14, Func. Count: 159, Neg. LLF: 124.71191681615562
Iteration: 15, Func. Count: 169, Neg. LLF: 124.71191685281002
Optimization terminated successfully (Exit mode 0)
Current function value: 124.71191681615562
Iterations: 15
Function evaluations: 169
Gradient evaluations: 15
Iteration: 1, Func. Count: 13, Neg. LLF: 128.1578639312939
Iteration: 2, Func. Count: 27, Neg. LLF: 129.61024639008045
Iteration: 3, Func. Count: 40, Neg. LLF: 125.39470746711903
Iteration: 4, Func. Count: 52, Neg. LLF: 125.45099027397036
Iteration: 5, Func. Count: 65, Neg. LLF: 125.89854714028142
Iteration: 6, Func. Count: 78, Neg. LLF: 125.28315329056169
Iteration: 7, Func. Count: 90, Neg. LLF: 125.26058881403829
Iteration: 8, Func. Count: 102, Neg. LLF: 124.84054697067917
Iteration: 9, Func. Count: 114, Neg. LLF: 124.77679241856684
Iteration: 10, Func. Count: 126, Neg. LLF: 124.72741972800175
Iteration: 11, Func. Count: 138, Neg. LLF: 124.71844378493812
Iteration: 12, Func. Count: 150, Neg. LLF: 124.71382985919469
Iteration: 13, Func. Count: 162, Neg. LLF: 124.71280441933101
Iteration: 14, Func. Count: 174, Neg. LLF: 124.71224964709886
Iteration: 15, Func. Count: 186, Neg. LLF: 124.71196734894778
Iteration: 16, Func. Count: 198, Neg. LLF: 124.71192079067946
Iteration: 17, Func. Count: 210, Neg. LLF: 124.71191772750433
Iteration: 18, Func. Count: 222, Neg. LLF: 124.71191709505689
Optimization terminated successfully (Exit mode 0)
Current function value: 124.71191709505689
Iterations: 18
Function evaluations: 222
Gradient evaluations: 18
Iteration: 1, Func. Count: 14, Neg. LLF: 127.53743327045875
Iteration: 2, Func. Count: 29, Neg. LLF: 130.7828634459791
Iteration: 3, Func. Count: 43, Neg. LLF: 124.87540872633836
Iteration: 4, Func. Count: 56, Neg. LLF: 124.8880777828214
Iteration: 5, Func. Count: 70, Neg. LLF: 125.44207884303562
Iteration: 6, Func. Count: 84, Neg. LLF: 124.25119578540685
Iteration: 7, Func. Count: 97, Neg. LLF: 124.10323898388417
Iteration: 8, Func. Count: 110, Neg. LLF: 123.7833428738818
Iteration: 9, Func. Count: 123, Neg. LLF: 123.73400991915787
Iteration: 10, Func. Count: 136, Neg. LLF: 123.73194039985981
Iteration: 11, Func. Count: 149, Neg. LLF: 123.7318771170649
Iteration: 12, Func. Count: 162, Neg. LLF: 123.73187329128949
Iteration: 13, Func. Count: 174, Neg. LLF: 123.73187323508846
Optimization terminated successfully (Exit mode 0)
Current function value: 123.73187329128949
Iterations: 13
Function evaluations: 174
Gradient evaluations: 13
Iteration: 1, Func. Count: 15, Neg. LLF: 127.7261401282012
Iteration: 2, Func. Count: 31, Neg. LLF: 131.14107038314657
Iteration: 3, Func. Count: 46, Neg. LLF: 125.19279549226387
Iteration: 4, Func. Count: 61, Neg. LLF: 124.4808658489961
Iteration: 5, Func. Count: 75, Neg. LLF: 124.36730252153191
Iteration: 6, Func. Count: 90, Neg. LLF: 122.14521463547503
Iteration: 7, Func. Count: 104, Neg. LLF: 121.40070288888907
Iteration: 8, Func. Count: 118, Neg. LLF: 121.0640369734349
Iteration: 9, Func. Count: 132, Neg. LLF: 120.98807741142986
Iteration: 10, Func. Count: 146, Neg. LLF: 120.94490478604313
Iteration: 11, Func. Count: 160, Neg. LLF: 120.88863041659985
Iteration: 12, Func. Count: 174, Neg. LLF: 120.87980809176088
Iteration: 13, Func. Count: 188, Neg. LLF: 120.87709527277768
Iteration: 14, Func. Count: 202, Neg. LLF: 121.3437243052097
Iteration: 15, Func. Count: 218, Neg. LLF: 120.94022196483417
Iteration: 16, Func. Count: 234, Neg. LLF: 120.88426809559031
Iteration: 17, Func. Count: 249, Neg. LLF: 120.87707855978566
Iteration: 18, Func. Count: 262, Neg. LLF: 120.8770784428846
Optimization terminated successfully (Exit mode 0)
Current function value: 120.87707855978566
Iterations: 19
Function evaluations: 262
Gradient evaluations: 18
Iteration: 1, Func. Count: 12, Neg. LLF: 132.81668435231057
Iteration: 2, Func. Count: 24, Neg. LLF: 157.33381979660234
Iteration: 3, Func. Count: 36, Neg. LLF: 125.42959904882825
Iteration: 4, Func. Count: 47, Neg. LLF: 125.0300029028313
Iteration: 5, Func. Count: 58, Neg. LLF: 124.81096281758934
Iteration: 6, Func. Count: 69, Neg. LLF: 124.94066850581807
Iteration: 7, Func. Count: 82, Neg. LLF: 124.74727961190504
Iteration: 8, Func. Count: 93, Neg. LLF: 124.72696638719366
Iteration: 9, Func. Count: 104, Neg. LLF: 124.71473382458801
Iteration: 10, Func. Count: 115, Neg. LLF: 124.71220084966131
Iteration: 11, Func. Count: 126, Neg. LLF: 124.71192165285123
Iteration: 12, Func. Count: 137, Neg. LLF: 124.71191683193273
Iteration: 13, Func. Count: 147, Neg. LLF: 124.71191660216122
Optimization terminated successfully (Exit mode 0)
Current function value: 124.71191683193273
Iterations: 13
Function evaluations: 147
Gradient evaluations: 13
Iteration: 1, Func. Count: 13, Neg. LLF: 128.7174242267336
Iteration: 2, Func. Count: 27, Neg. LLF: 128.591695469755
Iteration: 3, Func. Count: 40, Neg. LLF: 125.4741939908998
Iteration: 4, Func. Count: 52, Neg. LLF: 125.54551252315622
Iteration: 5, Func. Count: 65, Neg. LLF: 124.87092646940219
Iteration: 6, Func. Count: 77, Neg. LLF: 124.79883646565281
Iteration: 7, Func. Count: 89, Neg. LLF: 124.76073680147765
Iteration: 8, Func. Count: 101, Neg. LLF: 124.71488524003304
Iteration: 9, Func. Count: 113, Neg. LLF: 124.71215523363793
Iteration: 10, Func. Count: 125, Neg. LLF: 124.71199912618907
Iteration: 11, Func. Count: 137, Neg. LLF: 124.71196573652185
Iteration: 12, Func. Count: 149, Neg. LLF: 124.71193402025612
Iteration: 13, Func. Count: 161, Neg. LLF: 124.71191950800328
Iteration: 14, Func. Count: 173, Neg. LLF: 124.71191677579519
Iteration: 15, Func. Count: 184, Neg. LLF: 124.71191681244393
Optimization terminated successfully (Exit mode 0)
Current function value: 124.71191677579519
Iterations: 15
Function evaluations: 184
Gradient evaluations: 15
Iteration: 1, Func. Count: 14, Neg. LLF: 128.1649536692263
Iteration: 2, Func. Count: 29, Neg. LLF: 129.59214998727518
Iteration: 3, Func. Count: 43, Neg. LLF: 124.92266835584553
Iteration: 4, Func. Count: 56, Neg. LLF: 124.9958528270136
Iteration: 5, Func. Count: 70, Neg. LLF: 124.8723435783834
Iteration: 6, Func. Count: 83, Neg. LLF: 124.81730026862691
Iteration: 7, Func. Count: 96, Neg. LLF: 124.74333234535533
Iteration: 8, Func. Count: 109, Neg. LLF: 124.72890383038222
Iteration: 9, Func. Count: 122, Neg. LLF: 124.81171827788664
Iteration: 10, Func. Count: 137, Neg. LLF: 124.72281635736296
Iteration: 11, Func. Count: 150, Neg. LLF: 124.72020233534549
Iteration: 12, Func. Count: 163, Neg. LLF: 124.71898601944741
Iteration: 13, Func. Count: 176, Neg. LLF: 124.71882860921927
Iteration: 14, Func. Count: 189, Neg. LLF: 124.71881632793703
Iteration: 15, Func. Count: 201, Neg. LLF: 124.71881632788694
Optimization terminated successfully (Exit mode 0)
Current function value: 124.71881632793703
Iterations: 15
Function evaluations: 201
Gradient evaluations: 15
Iteration: 1, Func. Count: 15, Neg. LLF: 127.6617841065424
Iteration: 2, Func. Count: 31, Neg. LLF: 130.66276033679807
Iteration: 3, Func. Count: 46, Neg. LLF: 124.83548402998075
Iteration: 4, Func. Count: 60, Neg. LLF: 125.04928763797373
Iteration: 5, Func. Count: 75, Neg. LLF: 125.489688198614
Iteration: 6, Func. Count: 90, Neg. LLF: 124.50401997853677
Iteration: 7, Func. Count: 104, Neg. LLF: 123.8199069138882
Iteration: 8, Func. Count: 118, Neg. LLF: 123.78656823263061
Iteration: 9, Func. Count: 132, Neg. LLF: 123.7497716126628
Iteration: 10, Func. Count: 146, Neg. LLF: 123.73486078607233
Iteration: 11, Func. Count: 160, Neg. LLF: 123.7320909500369
Iteration: 12, Func. Count: 174, Neg. LLF: 123.73190970023678
Iteration: 13, Func. Count: 188, Neg. LLF: 123.73167640339844
Iteration: 14, Func. Count: 202, Neg. LLF: 123.73235303255578
Iteration: 15, Func. Count: 218, Neg. LLF: 123.73188435731555
Iteration: 16, Func. Count: 233, Neg. LLF: 123.73187298075706
Iteration: 17, Func. Count: 246, Neg. LLF: 123.73187292458739
Optimization terminated successfully (Exit mode 0)
Current function value: 123.73187298075706
Iterations: 18
Function evaluations: 246
Gradient evaluations: 17
Iteration: 1, Func. Count: 16, Neg. LLF: 127.74620551434313
Iteration: 2, Func. Count: 33, Neg. LLF: 131.07691902261814
Iteration: 3, Func. Count: 49, Neg. LLF: 125.19036170639887
Iteration: 4, Func. Count: 65, Neg. LLF: 124.49370350255138
Iteration: 5, Func. Count: 80, Neg. LLF: 122.08786539734616
Iteration: 6, Func. Count: 95, Neg. LLF: 121.23843437448123
Iteration: 7, Func. Count: 110, Neg. LLF: 120.99909541764679
Iteration: 8, Func. Count: 125, Neg. LLF: 120.98133260002561
Iteration: 9, Func. Count: 140, Neg. LLF: 120.9221007193673
Iteration: 10, Func. Count: 155, Neg. LLF: 120.88890367446943
Iteration: 11, Func. Count: 170, Neg. LLF: 120.8780057632452
Iteration: 12, Func. Count: 185, Neg. LLF: 120.87766318742241
Iteration: 13, Func. Count: 200, Neg. LLF: 120.87744010166614
Iteration: 14, Func. Count: 215, Neg. LLF: 120.87789675670957
Iteration: 15, Func. Count: 231, Neg. LLF: 120.87843020176548
Iteration: 16, Func. Count: 247, Neg. LLF: 120.87764496970753
Iteration: 17, Func. Count: 263, Neg. LLF: 120.87833355755922
Iteration: 18, Func. Count: 279, Neg. LLF: 120.87707864335849
Iteration: 19, Func. Count: 293, Neg. LLF: 120.87707852660316
Optimization terminated successfully (Exit mode 0)
Current function value: 120.87707864335849
Iterations: 20
Function evaluations: 293
Gradient evaluations: 19
Iteration: 1, Func. Count: 9, Neg. LLF: 138.92747391248494
Iteration: 2, Func. Count: 19, Neg. LLF: 125.8092545740835
Iteration: 3, Func. Count: 28, Neg. LLF: 125.3785708422892
Iteration: 4, Func. Count: 36, Neg. LLF: 125.29108722949812
Iteration: 5, Func. Count: 44, Neg. LLF: 124.58314468031918
Iteration: 6, Func. Count: 52, Neg. LLF: 123.06701130635993
Iteration: 7, Func. Count: 60, Neg. LLF: 121.41873770372975
Iteration: 8, Func. Count: 68, Neg. LLF: 121.19683872219447
Iteration: 9, Func. Count: 76, Neg. LLF: 121.07222805627134
Iteration: 10, Func. Count: 84, Neg. LLF: 120.91944700387666
Iteration: 11, Func. Count: 92, Neg. LLF: 120.90943962375854
Iteration: 12, Func. Count: 100, Neg. LLF: 120.90885030733843
Iteration: 13, Func. Count: 108, Neg. LLF: 120.90853400469146
Iteration: 14, Func. Count: 116, Neg. LLF: 120.90873499557426
Iteration: 15, Func. Count: 133, Neg. LLF: 120.90965281720264
Iteration: 16, Func. Count: 143, Neg. LLF: 120.9088432919961
Iteration: 17, Func. Count: 153, Neg. LLF: 120.90875171915191
Iteration: 18, Func. Count: 162, Neg. LLF: 120.90875171851708
Iteration: 19, Func. Count: 169, Neg. LLF: 120.9087516130656
Optimization terminated successfully (Exit mode 0)
Current function value: 120.90875171851708
Iterations: 20
Function evaluations: 169
Gradient evaluations: 19
Iteration: 1, Func. Count: 5, Neg. LLF: 135.09950624231953
Iteration: 2, Func. Count: 10, Neg. LLF: 141.61644074965315
Iteration: 3, Func. Count: 15, Neg. LLF: 125.5452844018427
Iteration: 4, Func. Count: 19, Neg. LLF: 126.0092799143548
Iteration: 5, Func. Count: 25, Neg. LLF: 125.50093020673917
Iteration: 6, Func. Count: 29, Neg. LLF: 125.48971636375059
Iteration: 7, Func. Count: 33, Neg. LLF: 125.48709554523451
Iteration: 8, Func. Count: 37, Neg. LLF: 125.48708618132565
Iteration: 9, Func. Count: 40, Neg. LLF: 125.48708619194487
Optimization terminated successfully (Exit mode 0)
Current function value: 125.48708618132565
Iterations: 9
Function evaluations: 40
Gradient evaluations: 9
Iteration: 1, Func. Count: 6, Neg. LLF: 151.5838536783953
Iteration: 2, Func. Count: 13, Neg. LLF: 125.50054388640393
Iteration: 3, Func. Count: 18, Neg. LLF: 125.50233193494255
Iteration: 4, Func. Count: 24, Neg. LLF: 125.49921244365147
Iteration: 5, Func. Count: 29, Neg. LLF: 125.49914864336024
Iteration: 6, Func. Count: 34, Neg. LLF: 125.49882494343362
Iteration: 7, Func. Count: 39, Neg. LLF: 125.49728728126347
Iteration: 8, Func. Count: 44, Neg. LLF: 125.49148117192031
Iteration: 9, Func. Count: 49, Neg. LLF: 125.48715041599857
Iteration: 10, Func. Count: 54, Neg. LLF: 125.48710119589822
Iteration: 11, Func. Count: 59, Neg. LLF: 125.48708616139152
Iteration: 12, Func. Count: 63, Neg. LLF: 125.48708616160523
Optimization terminated successfully (Exit mode 0)
Current function value: 125.48708616139152
Iterations: 12
Function evaluations: 63
Gradient evaluations: 12
Iteration: 1, Func. Count: 7, Neg. LLF: 157.62129336191293
Iteration: 2, Func. Count: 15, Neg. LLF: 125.50388029444251
Iteration: 3, Func. Count: 21, Neg. LLF: 125.5114345344614
Iteration: 4, Func. Count: 28, Neg. LLF: 125.50311814139005
Iteration: 5, Func. Count: 34, Neg. LLF: 125.50283659307334
Iteration: 6, Func. Count: 40, Neg. LLF: 125.50153380224268
Iteration: 7, Func. Count: 46, Neg. LLF: 125.50023150889356
Iteration: 8, Func. Count: 52, Neg. LLF: 125.49970025918415
Iteration: 9, Func. Count: 58, Neg. LLF: 125.49905662569414
Iteration: 10, Func. Count: 64, Neg. LLF: 125.49902013429386
Iteration: 11, Func. Count: 70, Neg. LLF: 125.49879292290669
Iteration: 12, Func. Count: 76, Neg. LLF: 125.49759534589467
Iteration: 13, Func. Count: 82, Neg. LLF: 125.49257138963537
Iteration: 14, Func. Count: 88, Neg. LLF: 125.4874115975179
Iteration: 15, Func. Count: 94, Neg. LLF: 125.48727461576878
Iteration: 16, Func. Count: 100, Neg. LLF: 125.48713810923346
Iteration: 17, Func. Count: 106, Neg. LLF: 125.48708615158866
Iteration: 18, Func. Count: 111, Neg. LLF: 125.48708615199686
Optimization terminated successfully (Exit mode 0)
Current function value: 125.48708615158866
Iterations: 18
Function evaluations: 111
Gradient evaluations: 18
Iteration: 1, Func. Count: 8, Neg. LLF: 153.04398739298935
Iteration: 2, Func. Count: 17, Neg. LLF: 125.50498027423492
Iteration: 3, Func. Count: 24, Neg. LLF: 125.51052532593334
Iteration: 4, Func. Count: 32, Neg. LLF: 125.50397389536307
Iteration: 5, Func. Count: 39, Neg. LLF: 125.50395054181385
Iteration: 6, Func. Count: 46, Neg. LLF: 125.50378808036677
Iteration: 7, Func. Count: 53, Neg. LLF: 125.50204137263158
Iteration: 8, Func. Count: 60, Neg. LLF: 125.50105730700184
Iteration: 9, Func. Count: 67, Neg. LLF: 125.50073578116998
Iteration: 10, Func. Count: 74, Neg. LLF: 125.49894334306754
Iteration: 11, Func. Count: 81, Neg. LLF: 125.4974817196199
Iteration: 12, Func. Count: 88, Neg. LLF: 125.49741940169072
Iteration: 13, Func. Count: 95, Neg. LLF: 125.49711268162201
Iteration: 14, Func. Count: 102, Neg. LLF: 125.49568101218112
Iteration: 15, Func. Count: 109, Neg. LLF: 125.49052180763985
Iteration: 16, Func. Count: 116, Neg. LLF: 125.48745458276446
Iteration: 17, Func. Count: 123, Neg. LLF: 125.48737111053563
Iteration: 18, Func. Count: 130, Neg. LLF: 125.48713064847082
Iteration: 19, Func. Count: 137, Neg. LLF: 125.4870861520975
Iteration: 20, Func. Count: 143, Neg. LLF: 125.48708615283785
Optimization terminated successfully (Exit mode 0)
Current function value: 125.4870861520975
Iterations: 20
Function evaluations: 143
Gradient evaluations: 20
Iteration: 1, Func. Count: 9, Neg. LLF: 148.05792616915036
Iteration: 2, Func. Count: 19, Neg. LLF: 125.50483525270064
Iteration: 3, Func. Count: 27, Neg. LLF: 125.5068615013548
Iteration: 4, Func. Count: 36, Neg. LLF: 125.5043211846901
Iteration: 5, Func. Count: 44, Neg. LLF: 125.50357445583802
Iteration: 6, Func. Count: 52, Neg. LLF: 125.48492706931744
Iteration: 7, Func. Count: 60, Neg. LLF: 125.45150188143286
Iteration: 8, Func. Count: 68, Neg. LLF: 125.41644035474165
Iteration: 9, Func. Count: 76, Neg. LLF: 125.29386637178916
Iteration: 10, Func. Count: 84, Neg. LLF: 125.07810279460234
Iteration: 11, Func. Count: 92, Neg. LLF: 125.09265713573907
Iteration: 12, Func. Count: 101, Neg. LLF: 124.96950559776887
Iteration: 13, Func. Count: 109, Neg. LLF: 124.96346305678385
Iteration: 14, Func. Count: 117, Neg. LLF: 130.3112421255378
Iteration: 15, Func. Count: 126, Neg. LLF: 112166230.83758989
Iteration: 16, Func. Count: 136, Neg. LLF: 128.10231330902414
Iteration: 17, Func. Count: 145, Neg. LLF: 143.99468612950437
Iteration: 18, Func. Count: 154, Neg. LLF: 124.5465900592668
Iteration: 19, Func. Count: 163, Neg. LLF: 124.7089027343743
Iteration: 20, Func. Count: 172, Neg. LLF: 124.28967408900778
Iteration: 21, Func. Count: 180, Neg. LLF: 124.28914763913114
Iteration: 22, Func. Count: 188, Neg. LLF: 124.28914291542263
Iteration: 23, Func. Count: 195, Neg. LLF: 124.28914291556832
Optimization terminated successfully (Exit mode 0)
Current function value: 124.28914291542263
Iterations: 24
Function evaluations: 195
Gradient evaluations: 23
Iteration: 1, Func. Count: 6, Neg. LLF: 130.39542864571516
Iteration: 2, Func. Count: 12, Neg. LLF: 128.21543171439538
Iteration: 3, Func. Count: 18, Neg. LLF: 127.13256635079085
Iteration: 4, Func. Count: 23, Neg. LLF: 126.04603217023958
Iteration: 5, Func. Count: 28, Neg. LLF: 125.94565965817047
Iteration: 6, Func. Count: 33, Neg. LLF: 125.58957711010163
Iteration: 7, Func. Count: 38, Neg. LLF: 125.51747554994094
Iteration: 8, Func. Count: 43, Neg. LLF: 125.48819942883205
Iteration: 9, Func. Count: 48, Neg. LLF: 125.48711189546026
Iteration: 10, Func. Count: 53, Neg. LLF: 125.48708704391782
Iteration: 11, Func. Count: 58, Neg. LLF: 125.48708618471514
Optimization terminated successfully (Exit mode 0)
Current function value: 125.48708618471514
Iterations: 11
Function evaluations: 58
Gradient evaluations: 11
Iteration: 1, Func. Count: 7, Neg. LLF: 165.77937264251685
Iteration: 2, Func. Count: 15, Neg. LLF: 125.50382877651546
Iteration: 3, Func. Count: 21, Neg. LLF: 125.49959590599195
Iteration: 4, Func. Count: 27, Neg. LLF: 125.49914864217499
Iteration: 5, Func. Count: 33, Neg. LLF: 125.49911600695687
Iteration: 6, Func. Count: 39, Neg. LLF: 125.4989095659131
Iteration: 7, Func. Count: 45, Neg. LLF: 125.497822634695
Iteration: 8, Func. Count: 51, Neg. LLF: 125.49317245047607
Iteration: 9, Func. Count: 57, Neg. LLF: 125.48732614231155
Iteration: 10, Func. Count: 63, Neg. LLF: 125.48718112102051
Iteration: 11, Func. Count: 69, Neg. LLF: 125.48714294347529
Iteration: 12, Func. Count: 75, Neg. LLF: 125.48708615087872
Iteration: 13, Func. Count: 80, Neg. LLF: 125.48708615107566
Optimization terminated successfully (Exit mode 0)
Current function value: 125.48708615087872
Iterations: 13
Function evaluations: 80
Gradient evaluations: 13
Iteration: 1, Func. Count: 8, Neg. LLF: 158.08316102174797
Iteration: 2, Func. Count: 17, Neg. LLF: 125.50635420047894
Iteration: 3, Func. Count: 24, Neg. LLF: 125.50344565133577
Iteration: 4, Func. Count: 31, Neg. LLF: 125.50288888153229
Iteration: 5, Func. Count: 38, Neg. LLF: 125.502799954333
Iteration: 6, Func. Count: 45, Neg. LLF: 125.50227136081307
Iteration: 7, Func. Count: 52, Neg. LLF: 125.49899141037116
Iteration: 8, Func. Count: 59, Neg. LLF: 125.4983709443078
Iteration: 9, Func. Count: 66, Neg. LLF: 125.49830715719695
Iteration: 10, Func. Count: 73, Neg. LLF: 125.49801767148638
Iteration: 11, Func. Count: 80, Neg. LLF: 125.49719623006344
Iteration: 12, Func. Count: 87, Neg. LLF: 125.49628497154046
Iteration: 13, Func. Count: 94, Neg. LLF: 125.49374272992426
Iteration: 14, Func. Count: 101, Neg. LLF: 125.49057623448057
Iteration: 15, Func. Count: 108, Neg. LLF: 125.48927513439774
Iteration: 16, Func. Count: 115, Neg. LLF: 125.48776804731445
Iteration: 17, Func. Count: 122, Neg. LLF: 125.48735055573798
Iteration: 18, Func. Count: 129, Neg. LLF: 125.48709943260742
Iteration: 19, Func. Count: 136, Neg. LLF: 125.48708660951065
Iteration: 20, Func. Count: 142, Neg. LLF: 125.48708660994683
Optimization terminated successfully (Exit mode 0)
Current function value: 125.48708660951065
Iterations: 20
Function evaluations: 142
Gradient evaluations: 20
Iteration: 1, Func. Count: 9, Neg. LLF: 152.85992980662013
Iteration: 2, Func. Count: 19, Neg. LLF: 125.50658764442394
Iteration: 3, Func. Count: 27, Neg. LLF: 125.50758037116029
Iteration: 4, Func. Count: 36, Neg. LLF: 125.50416026394322
Iteration: 5, Func. Count: 44, Neg. LLF: 125.50414145347091
Iteration: 6, Func. Count: 52, Neg. LLF: 125.50404480169833
Iteration: 7, Func. Count: 60, Neg. LLF: 125.50349269973614
Iteration: 8, Func. Count: 68, Neg. LLF: 125.50241325423266
Iteration: 9, Func. Count: 76, Neg. LLF: 125.50232519752208
Iteration: 10, Func. Count: 84, Neg. LLF: 125.50183048340534
Iteration: 11, Func. Count: 92, Neg. LLF: 125.49895705697804
Iteration: 12, Func. Count: 100, Neg. LLF: 125.49707762398955
Iteration: 13, Func. Count: 108, Neg. LLF: 125.49704079828085
Iteration: 14, Func. Count: 116, Neg. LLF: 125.49681322527388
Iteration: 15, Func. Count: 124, Neg. LLF: 125.49723181205725
Iteration: 16, Func. Count: 133, Neg. LLF: 125.49570990907873
Iteration: 17, Func. Count: 141, Neg. LLF: 125.49193948866107
Iteration: 18, Func. Count: 149, Neg. LLF: 125.48812345178827
Iteration: 19, Func. Count: 157, Neg. LLF: 125.48775503945961
Iteration: 20, Func. Count: 165, Neg. LLF: 125.48710257576562
Iteration: 21, Func. Count: 173, Neg. LLF: 125.4870891331687
Iteration: 22, Func. Count: 181, Neg. LLF: 125.48708629188556
Iteration: 23, Func. Count: 188, Neg. LLF: 125.48708629259343
Optimization terminated successfully (Exit mode 0)
Current function value: 125.48708629188556
Iterations: 24
Function evaluations: 188
Gradient evaluations: 23
Iteration: 1, Func. Count: 10, Neg. LLF: 148.36061229902802
Iteration: 2, Func. Count: 21, Neg. LLF: 125.50747772126297
Iteration: 3, Func. Count: 30, Neg. LLF: 125.5313932309598
Iteration: 4, Func. Count: 40, Neg. LLF: 125.50452894253712
Iteration: 5, Func. Count: 49, Neg. LLF: 125.50451392721864
Iteration: 6, Func. Count: 58, Neg. LLF: 125.50441858812619
Iteration: 7, Func. Count: 67, Neg. LLF: 125.50436296215383
Iteration: 8, Func. Count: 76, Neg. LLF: 125.50433988773493
Iteration: 9, Func. Count: 85, Neg. LLF: 125.5042530075104
Iteration: 10, Func. Count: 94, Neg. LLF: 125.50417208391097
Iteration: 11, Func. Count: 103, Neg. LLF: 125.504159452485
Iteration: 12, Func. Count: 112, Neg. LLF: 125.50413420527846
Iteration: 13, Func. Count: 121, Neg. LLF: 125.50407598119705
Iteration: 14, Func. Count: 130, Neg. LLF: 125.50375718496339
Iteration: 15, Func. Count: 139, Neg. LLF: 125.50354657550812
Iteration: 16, Func. Count: 148, Neg. LLF: 125.502373899744
Iteration: 17, Func. Count: 157, Neg. LLF: 125.50175240344949
Iteration: 18, Func. Count: 166, Neg. LLF: 125.4991090390741
Iteration: 19, Func. Count: 175, Neg. LLF: 125.49258416865602
Iteration: 20, Func. Count: 184, Neg. LLF: 125.34622154497326
Iteration: 21, Func. Count: 193, Neg. LLF: 125.52303781574692
Iteration: 22, Func. Count: 203, Neg. LLF: 125.43474387175424
Iteration: 23, Func. Count: 213, Neg. LLF: 125.33924537446455
Iteration: 24, Func. Count: 222, Neg. LLF: 125.33715216763602
Iteration: 25, Func. Count: 231, Neg. LLF: 125.41896716802627
Iteration: 26, Func. Count: 242, Neg. LLF: 20524136.342775866
Iteration: 27, Func. Count: 255, Neg. LLF: 125.33935785155458
Iteration: 28, Func. Count: 265, Neg. LLF: 125.3362718735094
Iteration: 29, Func. Count: 274, Neg. LLF: 125.33599891640569
Iteration: 30, Func. Count: 283, Neg. LLF: 125.33477340101417
Iteration: 31, Func. Count: 292, Neg. LLF: 125.33458254968127
Iteration: 32, Func. Count: 301, Neg. LLF: 125.33411316929232
Iteration: 33, Func. Count: 310, Neg. LLF: 125.33406405543866
Iteration: 34, Func. Count: 319, Neg. LLF: 125.3340483620597
Iteration: 35, Func. Count: 328, Neg. LLF: 125.33398256894688
Iteration: 36, Func. Count: 337, Neg. LLF: 125.33389539854545
Iteration: 37, Func. Count: 346, Neg. LLF: 125.33383304827665
Iteration: 38, Func. Count: 355, Neg. LLF: 125.33378361342523
Iteration: 39, Func. Count: 364, Neg. LLF: 125.33378314507438
Optimization terminated successfully (Exit mode 0)
Current function value: 125.33378314507438
Iterations: 40
Function evaluations: 364
Gradient evaluations: 39
Iteration: 1, Func. Count: 7, Neg. LLF: 130.3273376040506
Iteration: 2, Func. Count: 14, Neg. LLF: 127.90576780701097
Iteration: 3, Func. Count: 21, Neg. LLF: 127.13743532866975
Iteration: 4, Func. Count: 27, Neg. LLF: 126.16373356965478
Iteration: 5, Func. Count: 33, Neg. LLF: 126.0627450001816
Iteration: 6, Func. Count: 39, Neg. LLF: 125.67473887460186
Iteration: 7, Func. Count: 45, Neg. LLF: 125.56209736959924
Iteration: 8, Func. Count: 51, Neg. LLF: 125.49219561067882
Iteration: 9, Func. Count: 57, Neg. LLF: 125.48737984072696
Iteration: 10, Func. Count: 63, Neg. LLF: 125.4870989055722
Iteration: 11, Func. Count: 69, Neg. LLF: 125.48708696033307
Iteration: 12, Func. Count: 75, Neg. LLF: 125.48708614880786
Optimization terminated successfully (Exit mode 0)
Current function value: 125.48708614880786
Iterations: 12
Function evaluations: 75
Gradient evaluations: 12
Iteration: 1, Func. Count: 8, Neg. LLF: 165.7602064725757
Iteration: 2, Func. Count: 17, Neg. LLF: 125.50455618704463
Iteration: 3, Func. Count: 24, Neg. LLF: 125.49968498235799
Iteration: 4, Func. Count: 31, Neg. LLF: 125.4992210973982
Iteration: 5, Func. Count: 38, Neg. LLF: 125.49918878443972
Iteration: 6, Func. Count: 45, Neg. LLF: 125.49897554527453
Iteration: 7, Func. Count: 52, Neg. LLF: 125.49843249927622
Iteration: 8, Func. Count: 59, Neg. LLF: 125.49695800368485
Iteration: 9, Func. Count: 66, Neg. LLF: 125.49339748411062
Iteration: 10, Func. Count: 73, Neg. LLF: 125.49081443850793
Iteration: 11, Func. Count: 80, Neg. LLF: 125.49001614450394
Iteration: 12, Func. Count: 87, Neg. LLF: 125.48762844950924
Iteration: 13, Func. Count: 94, Neg. LLF: 125.48708662351989
Iteration: 14, Func. Count: 100, Neg. LLF: 125.48708662364906
Optimization terminated successfully (Exit mode 0)
Current function value: 125.48708662351989
Iterations: 14
Function evaluations: 100
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 157.93080809238498
Iteration: 2, Func. Count: 19, Neg. LLF: 125.5064298814175
Iteration: 3, Func. Count: 27, Neg. LLF: 125.50427418408245
Iteration: 4, Func. Count: 35, Neg. LLF: 125.50308820682372
Iteration: 5, Func. Count: 43, Neg. LLF: 125.50299761520118
Iteration: 6, Func. Count: 51, Neg. LLF: 125.50247654823103
Iteration: 7, Func. Count: 59, Neg. LLF: 125.49927741588425
Iteration: 8, Func. Count: 67, Neg. LLF: 125.49862176801639
Iteration: 9, Func. Count: 75, Neg. LLF: 125.49857224264946
Iteration: 10, Func. Count: 83, Neg. LLF: 125.49833182965241
Iteration: 11, Func. Count: 91, Neg. LLF: 125.49724740840325
Iteration: 12, Func. Count: 99, Neg. LLF: 125.49382924723318
Iteration: 13, Func. Count: 107, Neg. LLF: 125.49156280987809
Iteration: 14, Func. Count: 115, Neg. LLF: 125.48899931741447
Iteration: 15, Func. Count: 123, Neg. LLF: 125.4879684587757
Iteration: 16, Func. Count: 131, Neg. LLF: 125.48747456626356
Iteration: 17, Func. Count: 139, Neg. LLF: 125.48719214801159
Iteration: 18, Func. Count: 147, Neg. LLF: 125.4870944785033
Iteration: 19, Func. Count: 155, Neg. LLF: 125.48708640192294
Iteration: 20, Func. Count: 162, Neg. LLF: 125.48708640235905
Optimization terminated successfully (Exit mode 0)
Current function value: 125.48708640192294
Iterations: 20
Function evaluations: 162
Gradient evaluations: 20
Iteration: 1, Func. Count: 10, Neg. LLF: 152.79547493007658
Iteration: 2, Func. Count: 21, Neg. LLF: 125.50782733961238
Iteration: 3, Func. Count: 30, Neg. LLF: 125.506634905469
Iteration: 4, Func. Count: 40, Neg. LLF: 125.50408139834074
Iteration: 5, Func. Count: 49, Neg. LLF: 125.50407175838679
Iteration: 6, Func. Count: 58, Neg. LLF: 125.50402401186166
Iteration: 7, Func. Count: 67, Neg. LLF: 125.50381430037787
Iteration: 8, Func. Count: 76, Neg. LLF: 125.50352033015152
Iteration: 9, Func. Count: 85, Neg. LLF: 125.50347223112175
Iteration: 10, Func. Count: 94, Neg. LLF: 125.50317115593326
Iteration: 11, Func. Count: 103, Neg. LLF: 125.5008367295091
Iteration: 12, Func. Count: 112, Neg. LLF: 125.49936352898204
Iteration: 13, Func. Count: 121, Neg. LLF: 125.49625914716839
Iteration: 14, Func. Count: 130, Neg. LLF: 125.4960337028634
Iteration: 15, Func. Count: 139, Neg. LLF: 125.49491114418335
Iteration: 16, Func. Count: 148, Neg. LLF: 125.49056408604723
Iteration: 17, Func. Count: 157, Neg. LLF: 125.48717266419631
Iteration: 18, Func. Count: 166, Neg. LLF: 125.48713638256707
Iteration: 19, Func. Count: 175, Neg. LLF: 125.48710330896093
Iteration: 20, Func. Count: 184, Neg. LLF: 125.48708633835412
Iteration: 21, Func. Count: 192, Neg. LLF: 125.48708633908305
Optimization terminated successfully (Exit mode 0)
Current function value: 125.48708633835412
Iterations: 21
Function evaluations: 192
Gradient evaluations: 21
Iteration: 1, Func. Count: 11, Neg. LLF: 148.9534700222217
Iteration: 2, Func. Count: 23, Neg. LLF: 125.50900111888619
Iteration: 3, Func. Count: 33, Neg. LLF: 125.5096061925974
Iteration: 4, Func. Count: 44, Neg. LLF: 125.5043953724972
Iteration: 5, Func. Count: 54, Neg. LLF: 125.50438516381303
Iteration: 6, Func. Count: 64, Neg. LLF: 125.50433221544765
Iteration: 7, Func. Count: 74, Neg. LLF: 125.50432941398043
Iteration: 8, Func. Count: 84, Neg. LLF: 125.50431152915918
Iteration: 9, Func. Count: 94, Neg. LLF: 125.50425612931254
Iteration: 10, Func. Count: 104, Neg. LLF: 125.5042156226628
Iteration: 11, Func. Count: 114, Neg. LLF: 125.50417507594969
Iteration: 12, Func. Count: 124, Neg. LLF: 125.50415812072089
Iteration: 13, Func. Count: 134, Neg. LLF: 125.50415564267445
Iteration: 14, Func. Count: 144, Neg. LLF: 125.50413930096059
Iteration: 15, Func. Count: 154, Neg. LLF: 125.50401568946734
Iteration: 16, Func. Count: 164, Neg. LLF: 125.5010149252876
Iteration: 17, Func. Count: 174, Neg. LLF: 125.4091128737232
Iteration: 18, Func. Count: 184, Neg. LLF: 136.7071411660923
Iteration: 19, Func. Count: 195, Neg. LLF: 27360815.080498856
Iteration: 20, Func. Count: 208, Neg. LLF: 125.36462450604978
Iteration: 21, Func. Count: 219, Neg. LLF: 125.34092629603695
Iteration: 22, Func. Count: 229, Neg. LLF: 125.34015500068816
Iteration: 23, Func. Count: 239, Neg. LLF: 125.3385655520831
Iteration: 24, Func. Count: 249, Neg. LLF: 125.33668004847135
Iteration: 25, Func. Count: 259, Neg. LLF: 125.3344471957464
Iteration: 26, Func. Count: 269, Neg. LLF: 125.33444573848779
Iteration: 27, Func. Count: 279, Neg. LLF: 125.3344441903038
Iteration: 28, Func. Count: 289, Neg. LLF: 125.33450629644143
Iteration: 29, Func. Count: 300, Neg. LLF: 125.33448164160548
Optimization terminated successfully (Exit mode 0)
Current function value: 125.33444064265157
Iterations: 30
Function evaluations: 302
Gradient evaluations: 29
Iteration: 1, Func. Count: 8, Neg. LLF: 130.27826717760598
Iteration: 2, Func. Count: 16, Neg. LLF: 127.68989517425318
Iteration: 3, Func. Count: 24, Neg. LLF: 127.02793819251941
Iteration: 4, Func. Count: 31, Neg. LLF: 126.19535312677448
Iteration: 5, Func. Count: 38, Neg. LLF: 125.89546543986316
Iteration: 6, Func. Count: 45, Neg. LLF: 125.68236306265456
Iteration: 7, Func. Count: 52, Neg. LLF: 125.51315632924839
Iteration: 8, Func. Count: 59, Neg. LLF: 125.48867627741127
Iteration: 9, Func. Count: 66, Neg. LLF: 125.48712586062803
Iteration: 10, Func. Count: 73, Neg. LLF: 125.48709133634722
Iteration: 11, Func. Count: 80, Neg. LLF: 125.48708618095561
Iteration: 12, Func. Count: 86, Neg. LLF: 125.48708636526169
Optimization terminated successfully (Exit mode 0)
Current function value: 125.48708618095561
Iterations: 12
Function evaluations: 86
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 165.7145896785499
Iteration: 2, Func. Count: 19, Neg. LLF: 125.50278477645215
Iteration: 3, Func. Count: 27, Neg. LLF: 125.49973800390345
Iteration: 4, Func. Count: 35, Neg. LLF: 125.49924155523033
Iteration: 5, Func. Count: 43, Neg. LLF: 125.49921104225552
Iteration: 6, Func. Count: 51, Neg. LLF: 125.49901053787794
Iteration: 7, Func. Count: 59, Neg. LLF: 125.49791742158926
Iteration: 8, Func. Count: 67, Neg. LLF: 125.49310877200114
Iteration: 9, Func. Count: 75, Neg. LLF: 125.48760610043743
Iteration: 10, Func. Count: 83, Neg. LLF: 125.48742978688968
Iteration: 11, Func. Count: 91, Neg. LLF: 125.48711571108625
Iteration: 12, Func. Count: 99, Neg. LLF: 125.48708615173692
Iteration: 13, Func. Count: 106, Neg. LLF: 125.48708615193289
Optimization terminated successfully (Exit mode 0)
Current function value: 125.48708615173692
Iterations: 13
Function evaluations: 106
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 158.1844750135925
Iteration: 2, Func. Count: 21, Neg. LLF: 125.50677387272363
Iteration: 3, Func. Count: 30, Neg. LLF: 125.50295079758826
Iteration: 4, Func. Count: 39, Neg. LLF: 125.50273532962744
Iteration: 5, Func. Count: 48, Neg. LLF: 125.50263117029051
Iteration: 6, Func. Count: 57, Neg. LLF: 125.5019989099139
Iteration: 7, Func. Count: 66, Neg. LLF: 125.49834221697715
Iteration: 8, Func. Count: 75, Neg. LLF: 125.49823937811709
Iteration: 9, Func. Count: 84, Neg. LLF: 125.49817424297663
Iteration: 10, Func. Count: 93, Neg. LLF: 125.49804521870472
Iteration: 11, Func. Count: 102, Neg. LLF: 125.49766833988683
Iteration: 12, Func. Count: 111, Neg. LLF: 125.4967168079524
Iteration: 13, Func. Count: 120, Neg. LLF: 125.49438519919185
Iteration: 14, Func. Count: 129, Neg. LLF: 125.49101012865276
Iteration: 15, Func. Count: 138, Neg. LLF: 125.48998627459208
Iteration: 16, Func. Count: 147, Neg. LLF: 125.48777425521162
Iteration: 17, Func. Count: 156, Neg. LLF: 125.48724777372746
Iteration: 18, Func. Count: 165, Neg. LLF: 125.48709181957841
Iteration: 19, Func. Count: 174, Neg. LLF: 125.4870862741259
Iteration: 20, Func. Count: 182, Neg. LLF: 125.48708627456261
Optimization terminated successfully (Exit mode 0)
Current function value: 125.4870862741259
Iterations: 20
Function evaluations: 182
Gradient evaluations: 20
Iteration: 1, Func. Count: 11, Neg. LLF: 153.3241819485847
Iteration: 2, Func. Count: 23, Neg. LLF: 125.50903071848515
Iteration: 3, Func. Count: 33, Neg. LLF: 125.50403493034206
Iteration: 4, Func. Count: 43, Neg. LLF: 125.50393619397406
Iteration: 5, Func. Count: 53, Neg. LLF: 125.503908966948
Iteration: 6, Func. Count: 63, Neg. LLF: 125.50375131654722
Iteration: 7, Func. Count: 73, Neg. LLF: 125.50231565522706
Iteration: 8, Func. Count: 83, Neg. LLF: 125.50117300189137
Iteration: 9, Func. Count: 93, Neg. LLF: 125.50104655951868
Iteration: 10, Func. Count: 103, Neg. LLF: 125.50038879116133
Iteration: 11, Func. Count: 113, Neg. LLF: 125.49736993152992
Iteration: 12, Func. Count: 123, Neg. LLF: 125.49730188223526
Iteration: 13, Func. Count: 133, Neg. LLF: 125.49701796810132
Iteration: 14, Func. Count: 143, Neg. LLF: 125.49668529852401
Iteration: 15, Func. Count: 153, Neg. LLF: 125.4955860398883
Iteration: 16, Func. Count: 163, Neg. LLF: 125.49289904180256
Iteration: 17, Func. Count: 173, Neg. LLF: 125.49007134888033
Iteration: 18, Func. Count: 183, Neg. LLF: 125.48927179555562
Iteration: 19, Func. Count: 193, Neg. LLF: 125.48726322519889
Iteration: 20, Func. Count: 203, Neg. LLF: 125.48708637031527
Iteration: 21, Func. Count: 212, Neg. LLF: 125.48708637102786
Optimization terminated successfully (Exit mode 0)
Current function value: 125.48708637031527
Iterations: 21
Function evaluations: 212
Gradient evaluations: 21
Iteration: 1, Func. Count: 12, Neg. LLF: 149.71373528583223
Iteration: 2, Func. Count: 25, Neg. LLF: 125.51045612769083
Iteration: 3, Func. Count: 36, Neg. LLF: 125.50446879165763
Iteration: 4, Func. Count: 47, Neg. LLF: 125.50440652697438
Iteration: 5, Func. Count: 58, Neg. LLF: 125.5044018799688
Iteration: 6, Func. Count: 69, Neg. LLF: 125.50437531626008
Iteration: 7, Func. Count: 80, Neg. LLF: 125.5040644239901
Iteration: 8, Func. Count: 91, Neg. LLF: 125.5030305174316
Iteration: 9, Func. Count: 102, Neg. LLF: 125.50283200304604
Iteration: 10, Func. Count: 113, Neg. LLF: 125.50182583743178
Iteration: 11, Func. Count: 124, Neg. LLF: 125.50139636198844
Iteration: 12, Func. Count: 135, Neg. LLF: 125.50038244959998
Iteration: 13, Func. Count: 146, Neg. LLF: 125.49962587579378
Iteration: 14, Func. Count: 157, Neg. LLF: 125.4990600963735
Iteration: 15, Func. Count: 168, Neg. LLF: 125.49855199308755
Iteration: 16, Func. Count: 179, Neg. LLF: 125.49788927233342
Iteration: 17, Func. Count: 190, Neg. LLF: 125.49785070909977
Iteration: 18, Func. Count: 201, Neg. LLF: 125.49770770392851
Iteration: 19, Func. Count: 212, Neg. LLF: 125.49677527694371
Iteration: 20, Func. Count: 223, Neg. LLF: 125.49325475661492
Iteration: 21, Func. Count: 234, Neg. LLF: 125.48792500449375
Iteration: 22, Func. Count: 245, Neg. LLF: 125.48779930774421
Iteration: 23, Func. Count: 256, Neg. LLF: 125.48721545273517
Iteration: 24, Func. Count: 267, Neg. LLF: 125.48711888445389
Iteration: 25, Func. Count: 278, Neg. LLF: 125.48745343741916
Iteration: 26, Func. Count: 290, Neg. LLF: 125.48708617481235
Iteration: 27, Func. Count: 300, Neg. LLF: 125.48708617590846
Optimization terminated successfully (Exit mode 0)
Current function value: 125.48708617481235
Iterations: 28
Function evaluations: 300
Gradient evaluations: 27
Iteration: 1, Func. Count: 5, Neg. LLF: 131.7954825007059
Iteration: 2, Func. Count: 10, Neg. LLF: 137.16338373321668
Iteration: 3, Func. Count: 15, Neg. LLF: 125.03120027794137
Iteration: 4, Func. Count: 19, Neg. LLF: 125.01786719225483
Iteration: 5, Func. Count: 23, Neg. LLF: 125.01421360955716
Iteration: 6, Func. Count: 27, Neg. LLF: 125.01392647174427
Iteration: 7, Func. Count: 31, Neg. LLF: 125.01392155821694
Iteration: 8, Func. Count: 35, Neg. LLF: 125.01391967951947
Iteration: 9, Func. Count: 38, Neg. LLF: 125.01391967949307
Optimization terminated successfully (Exit mode 0)
Current function value: 125.01391967951947
Iterations: 9
Function evaluations: 38
Gradient evaluations: 9
Iteration: 1, Func. Count: 6, Neg. LLF: 134.5405631331365
Iteration: 2, Func. Count: 13, Neg. LLF: 125.49952504325645
Iteration: 3, Func. Count: 18, Neg. LLF: 125.50334488162967
Iteration: 4, Func. Count: 24, Neg. LLF: 125.49916050637094
Iteration: 5, Func. Count: 29, Neg. LLF: 125.49903386426854
Iteration: 6, Func. Count: 34, Neg. LLF: 125.49842632466759
Iteration: 7, Func. Count: 39, Neg. LLF: 125.49703751984339
Iteration: 8, Func. Count: 44, Neg. LLF: 125.4938160756771
Iteration: 9, Func. Count: 49, Neg. LLF: 125.48911842983723
Iteration: 10, Func. Count: 54, Neg. LLF: 125.48742148307338
Iteration: 11, Func. Count: 59, Neg. LLF: 125.4790351835792
Iteration: 12, Func. Count: 64, Neg. LLF: 125.44885917232138
Iteration: 13, Func. Count: 69, Neg. LLF: 125.43041921412186
Iteration: 14, Func. Count: 74, Neg. LLF: 125.42663124991984
Iteration: 15, Func. Count: 79, Neg. LLF: 125.40782470431984
Iteration: 16, Func. Count: 84, Neg. LLF: 125.33350700474396
Iteration: 17, Func. Count: 89, Neg. LLF: 125.19345760509471
Iteration: 18, Func. Count: 94, Neg. LLF: 125.11851583037738
Iteration: 19, Func. Count: 99, Neg. LLF: 125.09186689775184
Iteration: 20, Func. Count: 104, Neg. LLF: 125.02573647442657
Iteration: 21, Func. Count: 109, Neg. LLF: 11819.368461311233
Iteration: 22, Func. Count: 116, Neg. LLF: 125.44904497936636
Iteration: 23, Func. Count: 122, Neg. LLF: 125.02187159074234
Iteration: 24, Func. Count: 128, Neg. LLF: 125.01629083399553
Iteration: 25, Func. Count: 133, Neg. LLF: 125.01542868533399
Iteration: 26, Func. Count: 138, Neg. LLF: 125.01392637462114
Iteration: 27, Func. Count: 143, Neg. LLF: 125.01391947353626
Iteration: 28, Func. Count: 147, Neg. LLF: 125.01391957758955
Optimization terminated successfully (Exit mode 0)
Current function value: 125.01391947353626
Iterations: 29
Function evaluations: 147
Gradient evaluations: 28
Iteration: 1, Func. Count: 7, Neg. LLF: 157.39651199561501
Iteration: 2, Func. Count: 15, Neg. LLF: 125.50346707847451
Iteration: 3, Func. Count: 21, Neg. LLF: 125.50357614816568
Iteration: 4, Func. Count: 28, Neg. LLF: 125.5031928575734
Iteration: 5, Func. Count: 34, Neg. LLF: 125.50289857787791
Iteration: 6, Func. Count: 40, Neg. LLF: 125.50129388085423
Iteration: 7, Func. Count: 46, Neg. LLF: 125.49914264374314
Iteration: 8, Func. Count: 52, Neg. LLF: 125.49910008598609
Iteration: 9, Func. Count: 58, Neg. LLF: 125.49895321025458
Iteration: 10, Func. Count: 64, Neg. LLF: 125.49881751291888
Iteration: 11, Func. Count: 70, Neg. LLF: 125.49822830453053
Iteration: 12, Func. Count: 76, Neg. LLF: 125.49681796439552
Iteration: 13, Func. Count: 82, Neg. LLF: 125.49338162548625
Iteration: 14, Func. Count: 88, Neg. LLF: 125.49078131453062
Iteration: 15, Func. Count: 94, Neg. LLF: 125.48926296175047
Iteration: 16, Func. Count: 100, Neg. LLF: 125.48396041972065
Iteration: 17, Func. Count: 106, Neg. LLF: 125.48064550077848
Iteration: 18, Func. Count: 112, Neg. LLF: 125.47964950637034
Iteration: 19, Func. Count: 118, Neg. LLF: 125.4735331559934
Iteration: 20, Func. Count: 124, Neg. LLF: 125.45971056435066
Iteration: 21, Func. Count: 130, Neg. LLF: 125.43291475738556
Iteration: 22, Func. Count: 136, Neg. LLF: 125.38955950654844
Iteration: 23, Func. Count: 142, Neg. LLF: 127.78229770369188
Iteration: 24, Func. Count: 150, Neg. LLF: 125.28320174401074
Iteration: 25, Func. Count: 156, Neg. LLF: 125.47070997641882
Iteration: 26, Func. Count: 163, Neg. LLF: 125.09124359317528
Iteration: 27, Func. Count: 169, Neg. LLF: 125.04340412623174
Iteration: 28, Func. Count: 175, Neg. LLF: 125.02224926691467
Iteration: 29, Func. Count: 181, Neg. LLF: 125.01480179045882
Iteration: 30, Func. Count: 187, Neg. LLF: 125.01394202305814
Iteration: 31, Func. Count: 193, Neg. LLF: 125.0139197596586
Iteration: 32, Func. Count: 198, Neg. LLF: 125.01391985382094
Optimization terminated successfully (Exit mode 0)
Current function value: 125.0139197596586
Iterations: 33
Function evaluations: 198
Gradient evaluations: 32
Iteration: 1, Func. Count: 8, Neg. LLF: 152.54477671460046
Iteration: 2, Func. Count: 17, Neg. LLF: 125.50423436445912
Iteration: 3, Func. Count: 24, Neg. LLF: 125.50723802576125
Iteration: 4, Func. Count: 32, Neg. LLF: 125.50406087215684
Iteration: 5, Func. Count: 39, Neg. LLF: 125.50405240285873
Iteration: 6, Func. Count: 46, Neg. LLF: 125.50400565060869
Iteration: 7, Func. Count: 53, Neg. LLF: 125.50372282639671
Iteration: 8, Func. Count: 60, Neg. LLF: 125.50054247736465
Iteration: 9, Func. Count: 67, Neg. LLF: 125.49860499065382
Iteration: 10, Func. Count: 74, Neg. LLF: 125.49799420882242
Iteration: 11, Func. Count: 81, Neg. LLF: 125.49474145501033
Iteration: 12, Func. Count: 88, Neg. LLF: 125.49281060387084
Iteration: 13, Func. Count: 95, Neg. LLF: 125.49251089156819
Iteration: 14, Func. Count: 102, Neg. LLF: 125.46534603277773
Iteration: 15, Func. Count: 109, Neg. LLF: 125.45518790230513
Iteration: 16, Func. Count: 116, Neg. LLF: 125.41028072622046
Iteration: 17, Func. Count: 123, Neg. LLF: 125.27163227674542
Iteration: 18, Func. Count: 130, Neg. LLF: 125.15733563429981
Iteration: 19, Func. Count: 137, Neg. LLF: 125.08670427378902
Iteration: 20, Func. Count: 144, Neg. LLF: 125.06064908367938
Iteration: 21, Func. Count: 151, Neg. LLF: 125.04744149169113
Iteration: 22, Func. Count: 158, Neg. LLF: 125.03030065920436
Iteration: 23, Func. Count: 165, Neg. LLF: 125.01655958566982
Iteration: 24, Func. Count: 172, Neg. LLF: 125.22741840055937
Iteration: 25, Func. Count: 180, Neg. LLF: 125.0229819880816
Iteration: 26, Func. Count: 188, Neg. LLF: 125.01392063168016
Iteration: 27, Func. Count: 194, Neg. LLF: 125.01392074010523
Optimization terminated successfully (Exit mode 0)
Current function value: 125.01392063168016
Iterations: 28
Function evaluations: 194
Gradient evaluations: 27
Iteration: 1, Func. Count: 9, Neg. LLF: 141.78028338973735
Iteration: 2, Func. Count: 19, Neg. LLF: 125.51159298289558
Iteration: 3, Func. Count: 28, Neg. LLF: 125.3072431613133
Iteration: 4, Func. Count: 36, Neg. LLF: 125.25760310709732
Iteration: 5, Func. Count: 44, Neg. LLF: 124.84555627163343
Iteration: 6, Func. Count: 52, Neg. LLF: 123.66159235799081
Iteration: 7, Func. Count: 60, Neg. LLF: 123.67418761748128
Iteration: 8, Func. Count: 69, Neg. LLF: 121.59351731398729
Iteration: 9, Func. Count: 77, Neg. LLF: 121.71960463808443
Iteration: 10, Func. Count: 86, Neg. LLF: 121.34240653275315
Iteration: 11, Func. Count: 94, Neg. LLF: 121.25238589273535
Iteration: 12, Func. Count: 102, Neg. LLF: 121.15326272517602
Iteration: 13, Func. Count: 110, Neg. LLF: 121.13532865161099
Iteration: 14, Func. Count: 118, Neg. LLF: 121.13404816169806
Iteration: 15, Func. Count: 126, Neg. LLF: 121.13402569142374
Iteration: 16, Func. Count: 135, Neg. LLF: 121.13432563419596
Iteration: 17, Func. Count: 144, Neg. LLF: 121.13427474094927
Iteration: 18, Func. Count: 153, Neg. LLF: 121.1340050980982
Iteration: 19, Func. Count: 160, Neg. LLF: 121.13400500571684
Optimization terminated successfully (Exit mode 0)
Current function value: 121.1340050980982
Iterations: 20
Function evaluations: 160
Gradient evaluations: 19
Iteration: 1, Func. Count: 6, Neg. LLF: 135.32793487287725
Iteration: 2, Func. Count: 12, Neg. LLF: 133.11744179066267
Iteration: 3, Func. Count: 18, Neg. LLF: 124.76353441440871
Iteration: 4, Func. Count: 23, Neg. LLF: 125.13291864604668
Iteration: 5, Func. Count: 31, Neg. LLF: 124.39850934564392
Iteration: 6, Func. Count: 36, Neg. LLF: 124.35150628950629
Iteration: 7, Func. Count: 41, Neg. LLF: 124.33344101281811
Iteration: 8, Func. Count: 46, Neg. LLF: 124.33291352192708
Iteration: 9, Func. Count: 51, Neg. LLF: 124.33284363096224
Iteration: 10, Func. Count: 56, Neg. LLF: 124.33283260396095
Iteration: 11, Func. Count: 61, Neg. LLF: 124.3328306918896
Iteration: 12, Func. Count: 65, Neg. LLF: 124.33283069189036
Optimization terminated successfully (Exit mode 0)
Current function value: 124.3328306918896
Iterations: 12
Function evaluations: 65
Gradient evaluations: 12
Iteration: 1, Func. Count: 7, Neg. LLF: 128.49526053013406
Iteration: 2, Func. Count: 15, Neg. LLF: 128.4300168589553
Iteration: 3, Func. Count: 22, Neg. LLF: 125.08117490020328
Iteration: 4, Func. Count: 28, Neg. LLF: 124.81115453686277
Iteration: 5, Func. Count: 34, Neg. LLF: 124.43660940906544
Iteration: 6, Func. Count: 40, Neg. LLF: 124.3666263054061
Iteration: 7, Func. Count: 46, Neg. LLF: 124.33601013531998
Iteration: 8, Func. Count: 52, Neg. LLF: 124.33488177371714
Iteration: 9, Func. Count: 58, Neg. LLF: 124.3336107375983
Iteration: 10, Func. Count: 64, Neg. LLF: 124.33296622333107
Iteration: 11, Func. Count: 70, Neg. LLF: 124.33283853178106
Iteration: 12, Func. Count: 76, Neg. LLF: 124.33283068452704
Iteration: 13, Func. Count: 81, Neg. LLF: 124.3328307217735
Optimization terminated successfully (Exit mode 0)
Current function value: 124.33283068452704
Iterations: 13
Function evaluations: 81
Gradient evaluations: 13
Iteration: 1, Func. Count: 8, Neg. LLF: 127.94808932493967
Iteration: 2, Func. Count: 17, Neg. LLF: 129.66181879909195
Iteration: 3, Func. Count: 25, Neg. LLF: 125.06022181666036
Iteration: 4, Func. Count: 33, Neg. LLF: 125.40516271916178
Iteration: 5, Func. Count: 41, Neg. LLF: 124.9259003326406
Iteration: 6, Func. Count: 48, Neg. LLF: 124.8596302746191
Iteration: 7, Func. Count: 55, Neg. LLF: 124.47285041001304
Iteration: 8, Func. Count: 62, Neg. LLF: 124.40325316809005
Iteration: 9, Func. Count: 69, Neg. LLF: 124.34693813322798
Iteration: 10, Func. Count: 76, Neg. LLF: 124.33689035897002
Iteration: 11, Func. Count: 83, Neg. LLF: 124.3330377339007
Iteration: 12, Func. Count: 90, Neg. LLF: 124.33285865250575
Iteration: 13, Func. Count: 97, Neg. LLF: 124.33284785410117
Iteration: 14, Func. Count: 104, Neg. LLF: 124.33284141924572
Iteration: 15, Func. Count: 111, Neg. LLF: 124.33283332076755
Iteration: 16, Func. Count: 118, Neg. LLF: 124.33283089529114
Iteration: 17, Func. Count: 124, Neg. LLF: 124.33283094110146
Optimization terminated successfully (Exit mode 0)
Current function value: 124.33283089529114
Iterations: 17
Function evaluations: 124
Gradient evaluations: 17
Iteration: 1, Func. Count: 9, Neg. LLF: 127.42634305025425
Iteration: 2, Func. Count: 19, Neg. LLF: 131.10076996465597
Iteration: 3, Func. Count: 28, Neg. LLF: 124.50059772077893
Iteration: 4, Func. Count: 36, Neg. LLF: 124.45116168992608
Iteration: 5, Func. Count: 44, Neg. LLF: 125.32900685156014
Iteration: 6, Func. Count: 53, Neg. LLF: 123.54946859893141
Iteration: 7, Func. Count: 61, Neg. LLF: 123.37249818462217
Iteration: 8, Func. Count: 69, Neg. LLF: 123.28189325786727
Iteration: 9, Func. Count: 77, Neg. LLF: 123.33388580100525
Iteration: 10, Func. Count: 86, Neg. LLF: 123.25406044942936
Iteration: 11, Func. Count: 94, Neg. LLF: 123.25260836312454
Iteration: 12, Func. Count: 102, Neg. LLF: 123.25249388320263
Iteration: 13, Func. Count: 110, Neg. LLF: 123.2524851765392
Iteration: 14, Func. Count: 118, Neg. LLF: 123.25248236316119
Iteration: 15, Func. Count: 125, Neg. LLF: 123.25248230015036
Optimization terminated successfully (Exit mode 0)
Current function value: 123.25248236316119
Iterations: 15
Function evaluations: 125
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 127.85841008940325
Iteration: 2, Func. Count: 20, Neg. LLF: 131.3526385387199
Iteration: 3, Func. Count: 30, Neg. LLF: 135.27849918636736
Iteration: 4, Func. Count: 41, Neg. LLF: 126.00126514449661
Iteration: 5, Func. Count: 51, Neg. LLF: 123.79940517641735
Iteration: 6, Func. Count: 60, Neg. LLF: 141.1652046343163
Iteration: 7, Func. Count: 70, Neg. LLF: 123.34320713821137
Iteration: 8, Func. Count: 79, Neg. LLF: 122.42757178059345
Iteration: 9, Func. Count: 88, Neg. LLF: 122.32840806111972
Iteration: 10, Func. Count: 97, Neg. LLF: 122.27600997441547
Iteration: 11, Func. Count: 106, Neg. LLF: 122.19831136379376
Iteration: 12, Func. Count: 115, Neg. LLF: 122.17281267157269
Iteration: 13, Func. Count: 124, Neg. LLF: 122.1692919683473
Iteration: 14, Func. Count: 133, Neg. LLF: 122.16874257801717
Iteration: 15, Func. Count: 142, Neg. LLF: 122.16872547351743
Iteration: 16, Func. Count: 151, Neg. LLF: 122.16872283071282
Iteration: 17, Func. Count: 159, Neg. LLF: 122.16872274739849
Optimization terminated successfully (Exit mode 0)
Current function value: 122.16872283071282
Iterations: 17
Function evaluations: 159
Gradient evaluations: 17
Iteration: 1, Func. Count: 7, Neg. LLF: 131.69330657175544
Iteration: 2, Func. Count: 14, Neg. LLF: 136.51691570037826
Iteration: 3, Func. Count: 21, Neg. LLF: 124.6429453511186
Iteration: 4, Func. Count: 27, Neg. LLF: 125.04226389331932
Iteration: 5, Func. Count: 36, Neg. LLF: 124.37709537429762
Iteration: 6, Func. Count: 42, Neg. LLF: 124.34173739237187
Iteration: 7, Func. Count: 48, Neg. LLF: 124.33394333763003
Iteration: 8, Func. Count: 54, Neg. LLF: 124.33297381815301
Iteration: 9, Func. Count: 60, Neg. LLF: 124.3328703926533
Iteration: 10, Func. Count: 66, Neg. LLF: 124.33283407546632
Iteration: 11, Func. Count: 72, Neg. LLF: 124.33283084718484
Iteration: 12, Func. Count: 77, Neg. LLF: 124.33283109461286
Optimization terminated successfully (Exit mode 0)
Current function value: 124.33283084718484
Iterations: 12
Function evaluations: 77
Gradient evaluations: 12
Iteration: 1, Func. Count: 8, Neg. LLF: 128.57548809618325
Iteration: 2, Func. Count: 17, Neg. LLF: 128.31102075119782
Iteration: 3, Func. Count: 25, Neg. LLF: 125.09115674572185
Iteration: 4, Func. Count: 32, Neg. LLF: 124.87904101689894
Iteration: 5, Func. Count: 39, Neg. LLF: 124.44336922064467
Iteration: 6, Func. Count: 46, Neg. LLF: 124.36349120969177
Iteration: 7, Func. Count: 53, Neg. LLF: 124.33946767093103
Iteration: 8, Func. Count: 60, Neg. LLF: 124.33487215016275
Iteration: 9, Func. Count: 67, Neg. LLF: 124.33421130455994
Iteration: 10, Func. Count: 74, Neg. LLF: 124.33287675941253
Iteration: 11, Func. Count: 81, Neg. LLF: 124.33283479485338
Iteration: 12, Func. Count: 88, Neg. LLF: 124.33283057528057
Iteration: 13, Func. Count: 94, Neg. LLF: 124.33283061250378
Optimization terminated successfully (Exit mode 0)
Current function value: 124.33283057528057
Iterations: 13
Function evaluations: 94
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 128.0407992782048
Iteration: 2, Func. Count: 19, Neg. LLF: 129.4586562748368
Iteration: 3, Func. Count: 28, Neg. LLF: 125.04679865939781
Iteration: 4, Func. Count: 36, Neg. LLF: 125.05358721015126
Iteration: 5, Func. Count: 45, Neg. LLF: 125.97112312190814
Iteration: 6, Func. Count: 54, Neg. LLF: 124.91745967712082
Iteration: 7, Func. Count: 62, Neg. LLF: 124.80396652359379
Iteration: 8, Func. Count: 70, Neg. LLF: 124.45739838670201
Iteration: 9, Func. Count: 78, Neg. LLF: 124.38786901058552
Iteration: 10, Func. Count: 86, Neg. LLF: 124.34629072417557
Iteration: 11, Func. Count: 94, Neg. LLF: 124.34120214881676
Iteration: 12, Func. Count: 102, Neg. LLF: 124.33422557869392
Iteration: 13, Func. Count: 110, Neg. LLF: 124.33332145586228
Iteration: 14, Func. Count: 118, Neg. LLF: 124.33291067144526
Iteration: 15, Func. Count: 126, Neg. LLF: 124.3328649290843
Iteration: 16, Func. Count: 134, Neg. LLF: 124.33285311365613
Iteration: 17, Func. Count: 142, Neg. LLF: 124.33284080738099
Iteration: 18, Func. Count: 150, Neg. LLF: 124.33283302740521
Iteration: 19, Func. Count: 158, Neg. LLF: 124.33283234104769
Optimization terminated successfully (Exit mode 0)
Current function value: 124.33283234104769
Iterations: 19
Function evaluations: 158
Gradient evaluations: 19
Iteration: 1, Func. Count: 10, Neg. LLF: 127.5149938081154
Iteration: 2, Func. Count: 21, Neg. LLF: 130.90598890071664
Iteration: 3, Func. Count: 31, Neg. LLF: 124.43809691941881
Iteration: 4, Func. Count: 40, Neg. LLF: 124.48949037558987
Iteration: 5, Func. Count: 50, Neg. LLF: 127.27482613055449
Iteration: 6, Func. Count: 60, Neg. LLF: 124.14193090865885
Iteration: 7, Func. Count: 69, Neg. LLF: 123.41698945124585
Iteration: 8, Func. Count: 78, Neg. LLF: 123.30391424370826
Iteration: 9, Func. Count: 87, Neg. LLF: 123.28180166430379
Iteration: 10, Func. Count: 96, Neg. LLF: 123.259558542869
Iteration: 11, Func. Count: 105, Neg. LLF: 123.25283623438409
Iteration: 12, Func. Count: 114, Neg. LLF: 123.25254257227539
Iteration: 13, Func. Count: 123, Neg. LLF: 123.25248435177974
Iteration: 14, Func. Count: 132, Neg. LLF: 123.25248155819041
Iteration: 15, Func. Count: 141, Neg. LLF: 123.25248206832562
Optimization terminated successfully (Exit mode 0)
Current function value: 123.25248155895744
Iterations: 15
Function evaluations: 151
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 128.03959096442537
Iteration: 2, Func. Count: 22, Neg. LLF: 131.19838216553677
Iteration: 3, Func. Count: 33, Neg. LLF: 134.5525682790454
Iteration: 4, Func. Count: 45, Neg. LLF: 124.88278538235916
Iteration: 5, Func. Count: 56, Neg. LLF: 123.85956673459604
Iteration: 6, Func. Count: 66, Neg. LLF: 141.25847512422015
Iteration: 7, Func. Count: 77, Neg. LLF: 123.51675193032958
Iteration: 8, Func. Count: 87, Neg. LLF: 122.90943928562274
Iteration: 9, Func. Count: 97, Neg. LLF: 122.38458238778117
Iteration: 10, Func. Count: 107, Neg. LLF: 122.46504281731055
Iteration: 11, Func. Count: 118, Neg. LLF: 122.24497313192681
Iteration: 12, Func. Count: 129, Neg. LLF: 122.17021125108509
Iteration: 13, Func. Count: 139, Neg. LLF: 122.16934759419912
Iteration: 14, Func. Count: 149, Neg. LLF: 122.16874310628774
Iteration: 15, Func. Count: 159, Neg. LLF: 122.16872481649929
Iteration: 16, Func. Count: 169, Neg. LLF: 122.168723068203
Iteration: 17, Func. Count: 178, Neg. LLF: 122.16872298479916
Optimization terminated successfully (Exit mode 0)
Current function value: 122.168723068203
Iterations: 17
Function evaluations: 178
Gradient evaluations: 17
Iteration: 1, Func. Count: 8, Neg. LLF: 131.62761269339
Iteration: 2, Func. Count: 16, Neg. LLF: 136.4713641766442
Iteration: 3, Func. Count: 24, Neg. LLF: 124.64587145217874
Iteration: 4, Func. Count: 31, Neg. LLF: 125.04154458892965
Iteration: 5, Func. Count: 41, Neg. LLF: 124.377252224315
Iteration: 6, Func. Count: 48, Neg. LLF: 124.34180430156039
Iteration: 7, Func. Count: 55, Neg. LLF: 124.3339463856681
Iteration: 8, Func. Count: 62, Neg. LLF: 124.33297319876719
Iteration: 9, Func. Count: 69, Neg. LLF: 124.3328699148327
Iteration: 10, Func. Count: 76, Neg. LLF: 124.3328340185155
Iteration: 11, Func. Count: 83, Neg. LLF: 124.3328308468755
Iteration: 12, Func. Count: 89, Neg. LLF: 124.3328310241126
Optimization terminated successfully (Exit mode 0)
Current function value: 124.3328308468755
Iterations: 12
Function evaluations: 89
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 128.57671148128887
Iteration: 2, Func. Count: 19, Neg. LLF: 128.32563682360026
Iteration: 3, Func. Count: 28, Neg. LLF: 125.09613493190714
Iteration: 4, Func. Count: 36, Neg. LLF: 124.82644456198511
Iteration: 5, Func. Count: 44, Neg. LLF: 124.44702119781778
Iteration: 6, Func. Count: 52, Neg. LLF: 124.36434477005928
Iteration: 7, Func. Count: 60, Neg. LLF: 124.34005765137671
Iteration: 8, Func. Count: 68, Neg. LLF: 124.33479659915675
Iteration: 9, Func. Count: 76, Neg. LLF: 124.33418702164137
Iteration: 10, Func. Count: 84, Neg. LLF: 124.33284332615575
Iteration: 11, Func. Count: 92, Neg. LLF: 124.33283055154746
Iteration: 12, Func. Count: 99, Neg. LLF: 124.33283058874088
Optimization terminated successfully (Exit mode 0)
Current function value: 124.33283055154746
Iterations: 12
Function evaluations: 99
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 128.02637645501704
Iteration: 2, Func. Count: 21, Neg. LLF: 129.499034584831
Iteration: 3, Func. Count: 31, Neg. LLF: 125.04748574104849
Iteration: 4, Func. Count: 41, Neg. LLF: 125.07720782720884
Iteration: 5, Func. Count: 51, Neg. LLF: 124.93431335814618
Iteration: 6, Func. Count: 60, Neg. LLF: 124.90748499108494
Iteration: 7, Func. Count: 69, Neg. LLF: 124.63447050666213
Iteration: 8, Func. Count: 78, Neg. LLF: 124.36729613901964
Iteration: 9, Func. Count: 87, Neg. LLF: 124.35155227627249
Iteration: 10, Func. Count: 96, Neg. LLF: 124.3383834670187
Iteration: 11, Func. Count: 105, Neg. LLF: 124.33453703116554
Iteration: 12, Func. Count: 114, Neg. LLF: 124.33341876165044
Iteration: 13, Func. Count: 123, Neg. LLF: 124.33308011921041
Iteration: 14, Func. Count: 132, Neg. LLF: 124.33291068707639
Iteration: 15, Func. Count: 141, Neg. LLF: 124.33286508006196
Iteration: 16, Func. Count: 150, Neg. LLF: 124.33284416257644
Iteration: 17, Func. Count: 159, Neg. LLF: 124.3328339723273
Iteration: 18, Func. Count: 168, Neg. LLF: 124.33283072730494
Iteration: 19, Func. Count: 176, Neg. LLF: 124.33283077305973
Optimization terminated successfully (Exit mode 0)
Current function value: 124.33283072730494
Iterations: 19
Function evaluations: 176
Gradient evaluations: 19
Iteration: 1, Func. Count: 11, Neg. LLF: 127.47886581650225
Iteration: 2, Func. Count: 23, Neg. LLF: 130.962485125764
Iteration: 3, Func. Count: 34, Neg. LLF: 124.4848785992264
Iteration: 4, Func. Count: 44, Neg. LLF: 124.4399768354725
Iteration: 5, Func. Count: 54, Neg. LLF: 123.47281088047924
Iteration: 6, Func. Count: 64, Neg. LLF: 123.33983593490728
Iteration: 7, Func. Count: 74, Neg. LLF: 123.52911710096792
Iteration: 8, Func. Count: 85, Neg. LLF: 123.25980930409617
Iteration: 9, Func. Count: 95, Neg. LLF: 123.25327519670151
Iteration: 10, Func. Count: 105, Neg. LLF: 123.25277474703537
Iteration: 11, Func. Count: 115, Neg. LLF: 123.25263261285038
Iteration: 12, Func. Count: 125, Neg. LLF: 123.25248449169558
Iteration: 13, Func. Count: 135, Neg. LLF: 123.25248127303782
Iteration: 14, Func. Count: 145, Neg. LLF: 123.25248367144472
Optimization terminated successfully (Exit mode 0)
Current function value: 123.25248132408636
Iterations: 15
Function evaluations: 147
Gradient evaluations: 14
Iteration: 1, Func. Count: 12, Neg. LLF: 127.78022574350493
Iteration: 2, Func. Count: 24, Neg. LLF: 130.99040668872624
Iteration: 3, Func. Count: 36, Neg. LLF: 134.4913226609094
Iteration: 4, Func. Count: 49, Neg. LLF: 123.94497117088709
Iteration: 5, Func. Count: 60, Neg. LLF: 127.58857398765826
Iteration: 6, Func. Count: 72, Neg. LLF: 142.02431706088174
Iteration: 7, Func. Count: 84, Neg. LLF: 123.62548738188859
Iteration: 8, Func. Count: 96, Neg. LLF: 122.43909046354744
Iteration: 9, Func. Count: 107, Neg. LLF: 122.38537230252582
Iteration: 10, Func. Count: 118, Neg. LLF: 122.24883905182102
Iteration: 11, Func. Count: 129, Neg. LLF: 122.22370753374652
Iteration: 12, Func. Count: 140, Neg. LLF: 122.19245902978456
Iteration: 13, Func. Count: 151, Neg. LLF: 122.17806048040482
Iteration: 14, Func. Count: 162, Neg. LLF: 122.17240622013843
Iteration: 15, Func. Count: 173, Neg. LLF: 122.1687573693649
Iteration: 16, Func. Count: 184, Neg. LLF: 122.16873370174217
Iteration: 17, Func. Count: 195, Neg. LLF: 122.16872991892627
Iteration: 18, Func. Count: 206, Neg. LLF: 122.16873875023828
Optimization terminated successfully (Exit mode 0)
Current function value: 122.16872896158596
Iterations: 19
Function evaluations: 207
Gradient evaluations: 18
Iteration: 1, Func. Count: 9, Neg. LLF: 131.47697019221417
Iteration: 2, Func. Count: 18, Neg. LLF: 136.44389396430773
Iteration: 3, Func. Count: 27, Neg. LLF: 124.64038374235598
Iteration: 4, Func. Count: 35, Neg. LLF: 125.0391069465954
Iteration: 5, Func. Count: 46, Neg. LLF: 124.37523970321374
Iteration: 6, Func. Count: 54, Neg. LLF: 124.34146236825643
Iteration: 7, Func. Count: 62, Neg. LLF: 124.33387369797259
Iteration: 8, Func. Count: 70, Neg. LLF: 124.33296769783107
Iteration: 9, Func. Count: 78, Neg. LLF: 124.33286900680318
Iteration: 10, Func. Count: 86, Neg. LLF: 124.3328335921834
Iteration: 11, Func. Count: 94, Neg. LLF: 124.33283081037962
Iteration: 12, Func. Count: 101, Neg. LLF: 124.33283103940288
Optimization terminated successfully (Exit mode 0)
Current function value: 124.33283081037962
Iterations: 12
Function evaluations: 101
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 128.5373714247594
Iteration: 2, Func. Count: 21, Neg. LLF: 128.37414885880455
Iteration: 3, Func. Count: 31, Neg. LLF: 125.09593059473842
Iteration: 4, Func. Count: 40, Neg. LLF: 124.87536487112354
Iteration: 5, Func. Count: 49, Neg. LLF: 124.45162897210342
Iteration: 6, Func. Count: 58, Neg. LLF: 124.36807532896822
Iteration: 7, Func. Count: 67, Neg. LLF: 124.34032736585971
Iteration: 8, Func. Count: 76, Neg. LLF: 124.33463438923857
Iteration: 9, Func. Count: 85, Neg. LLF: 124.33409156410052
Iteration: 10, Func. Count: 94, Neg. LLF: 124.33286356265386
Iteration: 11, Func. Count: 103, Neg. LLF: 124.332830607814
Iteration: 12, Func. Count: 111, Neg. LLF: 124.33283064500952
Optimization terminated successfully (Exit mode 0)
Current function value: 124.332830607814
Iterations: 12
Function evaluations: 111
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 128.03365551654048
Iteration: 2, Func. Count: 23, Neg. LLF: 129.48765749696895
Iteration: 3, Func. Count: 34, Neg. LLF: 125.04713885176787
Iteration: 4, Func. Count: 44, Neg. LLF: 125.00184542085377
Iteration: 5, Func. Count: 54, Neg. LLF: 126.17625372826342
Iteration: 6, Func. Count: 65, Neg. LLF: 124.92259594096579
Iteration: 7, Func. Count: 75, Neg. LLF: 124.87724756225364
Iteration: 8, Func. Count: 85, Neg. LLF: 124.79561419245108
Iteration: 9, Func. Count: 95, Neg. LLF: 124.45413474820339
Iteration: 10, Func. Count: 105, Neg. LLF: 124.3835446168839
Iteration: 11, Func. Count: 115, Neg. LLF: 124.35015645450129
Iteration: 12, Func. Count: 125, Neg. LLF: 124.33647716445114
Iteration: 13, Func. Count: 135, Neg. LLF: 124.33467147513367
Iteration: 14, Func. Count: 145, Neg. LLF: 124.33353523292853
Iteration: 15, Func. Count: 155, Neg. LLF: 124.33317597807854
Iteration: 16, Func. Count: 165, Neg. LLF: 124.33292506200888
Iteration: 17, Func. Count: 175, Neg. LLF: 124.33283972677197
Iteration: 18, Func. Count: 185, Neg. LLF: 124.33283102558048
Iteration: 19, Func. Count: 194, Neg. LLF: 124.33283107143609
Optimization terminated successfully (Exit mode 0)
Current function value: 124.33283102558048
Iterations: 19
Function evaluations: 194
Gradient evaluations: 19
Iteration: 1, Func. Count: 12, Neg. LLF: 127.5792552033278
Iteration: 2, Func. Count: 25, Neg. LLF: 130.85301461796954
Iteration: 3, Func. Count: 37, Neg. LLF: 124.60616350234984
Iteration: 4, Func. Count: 48, Neg. LLF: 124.41350813104876
Iteration: 5, Func. Count: 59, Neg. LLF: 126.0903363650643
Iteration: 6, Func. Count: 71, Neg. LLF: 123.98084688681834
Iteration: 7, Func. Count: 82, Neg. LLF: 123.5767054588092
Iteration: 8, Func. Count: 93, Neg. LLF: 123.52042430816314
Iteration: 9, Func. Count: 105, Neg. LLF: 123.27834756513444
Iteration: 10, Func. Count: 116, Neg. LLF: 123.25469484280802
Iteration: 11, Func. Count: 127, Neg. LLF: 123.25261441627595
Iteration: 12, Func. Count: 138, Neg. LLF: 123.25249194202766
Iteration: 13, Func. Count: 149, Neg. LLF: 123.25248566772649
Iteration: 14, Func. Count: 160, Neg. LLF: 123.2524828452012
Iteration: 15, Func. Count: 170, Neg. LLF: 123.25248278233907
Optimization terminated successfully (Exit mode 0)
Current function value: 123.2524828452012
Iterations: 15
Function evaluations: 170
Gradient evaluations: 15
Iteration: 1, Func. Count: 13, Neg. LLF: 127.69148875879391
Iteration: 2, Func. Count: 26, Neg. LLF: 130.79513490626314
Iteration: 3, Func. Count: 39, Neg. LLF: 136.60524243954418
Iteration: 4, Func. Count: 53, Neg. LLF: 123.9957727346581
Iteration: 5, Func. Count: 65, Neg. LLF: 143.57664100412302
Iteration: 6, Func. Count: 78, Neg. LLF: 123.86873922400095
Iteration: 7, Func. Count: 91, Neg. LLF: 125.18684920515362
Iteration: 8, Func. Count: 104, Neg. LLF: 122.5682165172428
Iteration: 9, Func. Count: 116, Neg. LLF: 122.39240463490262
Iteration: 10, Func. Count: 128, Neg. LLF: 122.23271675282923
Iteration: 11, Func. Count: 140, Neg. LLF: 122.18591423918276
Iteration: 12, Func. Count: 152, Neg. LLF: 122.17427677275265
Iteration: 13, Func. Count: 164, Neg. LLF: 122.17082158950531
Iteration: 14, Func. Count: 176, Neg. LLF: 122.16972824661536
Iteration: 15, Func. Count: 188, Neg. LLF: 122.16936852707634
Iteration: 16, Func. Count: 200, Neg. LLF: 122.16886159493642
Iteration: 17, Func. Count: 212, Neg. LLF: 122.16873809643033
Iteration: 18, Func. Count: 224, Neg. LLF: 122.16872329265513
Iteration: 19, Func. Count: 236, Neg. LLF: 122.16872284861552
Optimization terminated successfully (Exit mode 0)
Current function value: 122.16872284861552
Iterations: 19
Function evaluations: 236
Gradient evaluations: 19
Iteration: 1, Func. Count: 6, Neg. LLF: 128.87058032705679
Iteration: 2, Func. Count: 12, Neg. LLF: 147.17113118264004
Iteration: 3, Func. Count: 18, Neg. LLF: 125.17384867193502
Iteration: 4, Func. Count: 23, Neg. LLF: 125.12508820849578
Iteration: 5, Func. Count: 28, Neg. LLF: 125.01901477325971
Iteration: 6, Func. Count: 33, Neg. LLF: 125.01528243391529
Iteration: 7, Func. Count: 38, Neg. LLF: 125.01403197079887
Iteration: 8, Func. Count: 43, Neg. LLF: 125.01395796756195
Iteration: 9, Func. Count: 48, Neg. LLF: 125.01392477886463
Iteration: 10, Func. Count: 53, Neg. LLF: 125.01391967900554
Iteration: 11, Func. Count: 57, Neg. LLF: 125.01391996777919
Optimization terminated successfully (Exit mode 0)
Current function value: 125.01391967900554
Iterations: 11
Function evaluations: 57
Gradient evaluations: 11
Iteration: 1, Func. Count: 7, Neg. LLF: 165.88880828565348
Iteration: 2, Func. Count: 15, Neg. LLF: 125.50239907970263
Iteration: 3, Func. Count: 21, Neg. LLF: 125.49993898894672
Iteration: 4, Func. Count: 27, Neg. LLF: 125.49902564573506
Iteration: 5, Func. Count: 33, Neg. LLF: 125.49896307892247
Iteration: 6, Func. Count: 39, Neg. LLF: 125.49891590500954
Iteration: 7, Func. Count: 45, Neg. LLF: 125.49867443658731
Iteration: 8, Func. Count: 51, Neg. LLF: 125.49815355413867
Iteration: 9, Func. Count: 57, Neg. LLF: 125.49674257956202
Iteration: 10, Func. Count: 63, Neg. LLF: 125.49389439634841
Iteration: 11, Func. Count: 69, Neg. LLF: 125.48987457004225
Iteration: 12, Func. Count: 75, Neg. LLF: 125.48805502989589
Iteration: 13, Func. Count: 81, Neg. LLF: 125.48083143544164
Iteration: 14, Func. Count: 87, Neg. LLF: 125.47463673877182
Iteration: 15, Func. Count: 93, Neg. LLF: 125.46772842118234
Iteration: 16, Func. Count: 99, Neg. LLF: 125.46245682029415
Iteration: 17, Func. Count: 105, Neg. LLF: 125.45390120877855
Iteration: 18, Func. Count: 111, Neg. LLF: 125.4347917261636
Iteration: 19, Func. Count: 117, Neg. LLF: 125.38938013532653
Iteration: 20, Func. Count: 123, Neg. LLF: 125.35447560908382
Iteration: 21, Func. Count: 129, Neg. LLF: 125.30205521194007
Iteration: 22, Func. Count: 135, Neg. LLF: 125.13706173628948
Iteration: 23, Func. Count: 141, Neg. LLF: 126.13050331803022
Iteration: 24, Func. Count: 148, Neg. LLF: 125.08489413991323
Iteration: 25, Func. Count: 154, Neg. LLF: 127.95483339209657
Iteration: 26, Func. Count: 161, Neg. LLF: 125.03636420658056
Iteration: 27, Func. Count: 167, Neg. LLF: 125.01795556627467
Iteration: 28, Func. Count: 173, Neg. LLF: 125.01416347222145
Iteration: 29, Func. Count: 179, Neg. LLF: 125.01393487287568
Iteration: 30, Func. Count: 185, Neg. LLF: 125.0139194699782
Iteration: 31, Func. Count: 190, Neg. LLF: 125.01391957406197
Optimization terminated successfully (Exit mode 0)
Current function value: 125.0139194699782
Iterations: 32
Function evaluations: 190
Gradient evaluations: 31
Iteration: 1, Func. Count: 8, Neg. LLF: 157.81241396225937
Iteration: 2, Func. Count: 17, Neg. LLF: 125.50558889935031
Iteration: 3, Func. Count: 24, Neg. LLF: 125.51050968842034
Iteration: 4, Func. Count: 32, Neg. LLF: 125.50327263259295
Iteration: 5, Func. Count: 39, Neg. LLF: 125.50313035812943
Iteration: 6, Func. Count: 46, Neg. LLF: 125.50214881901174
Iteration: 7, Func. Count: 53, Neg. LLF: 125.49965577705449
Iteration: 8, Func. Count: 60, Neg. LLF: 125.4990708824511
Iteration: 9, Func. Count: 67, Neg. LLF: 125.4986286538523
Iteration: 10, Func. Count: 74, Neg. LLF: 125.49859356301663
Iteration: 11, Func. Count: 81, Neg. LLF: 125.49837775964427
Iteration: 12, Func. Count: 88, Neg. LLF: 125.4972594017113
Iteration: 13, Func. Count: 95, Neg. LLF: 125.49258648132823
Iteration: 14, Func. Count: 102, Neg. LLF: 125.48577502294249
Iteration: 15, Func. Count: 109, Neg. LLF: 125.48536840984428
Iteration: 16, Func. Count: 116, Neg. LLF: 125.48357149703294
Iteration: 17, Func. Count: 123, Neg. LLF: 125.4780341394238
Iteration: 18, Func. Count: 130, Neg. LLF: 125.47498833594516
Iteration: 19, Func. Count: 137, Neg. LLF: 125.47074459449286
Iteration: 20, Func. Count: 144, Neg. LLF: 125.4654156109759
Iteration: 21, Func. Count: 151, Neg. LLF: 125.4349663785378
Iteration: 22, Func. Count: 158, Neg. LLF: 127.81496985249379
Iteration: 23, Func. Count: 167, Neg. LLF: 125.30350670566374
Iteration: 24, Func. Count: 174, Neg. LLF: 125.31656648221666
Iteration: 25, Func. Count: 182, Neg. LLF: 125.10630827570331
Iteration: 26, Func. Count: 189, Neg. LLF: 125.04903754669253
Iteration: 27, Func. Count: 196, Neg. LLF: 125.02435460327304
Iteration: 28, Func. Count: 203, Neg. LLF: 125.01533676917084
Iteration: 29, Func. Count: 210, Neg. LLF: 125.01395351092116
Iteration: 30, Func. Count: 217, Neg. LLF: 125.01392070229714
Iteration: 31, Func. Count: 224, Neg. LLF: 125.01391945031104
Iteration: 32, Func. Count: 230, Neg. LLF: 125.01391954452093
Optimization terminated successfully (Exit mode 0)
Current function value: 125.01391945031104
Iterations: 33
Function evaluations: 230
Gradient evaluations: 32
Iteration: 1, Func. Count: 9, Neg. LLF: 152.52637278376872
Iteration: 2, Func. Count: 19, Neg. LLF: 125.5058825598141
Iteration: 3, Func. Count: 27, Neg. LLF: 125.5163322869096
Iteration: 4, Func. Count: 36, Neg. LLF: 125.50418947268975
Iteration: 5, Func. Count: 44, Neg. LLF: 125.50417316570102
Iteration: 6, Func. Count: 52, Neg. LLF: 125.5040857270709
Iteration: 7, Func. Count: 60, Neg. LLF: 125.50382971785207
Iteration: 8, Func. Count: 68, Neg. LLF: 125.5037483379241
Iteration: 9, Func. Count: 76, Neg. LLF: 125.50372134937825
Iteration: 10, Func. Count: 84, Neg. LLF: 125.50354008972263
Iteration: 11, Func. Count: 92, Neg. LLF: 125.50219173507354
Iteration: 12, Func. Count: 100, Neg. LLF: 125.48717482665774
Iteration: 13, Func. Count: 108, Neg. LLF: 125.48139729827665
Iteration: 14, Func. Count: 116, Neg. LLF: 125.47286414744754
Iteration: 15, Func. Count: 124, Neg. LLF: 125.46982112025907
Iteration: 16, Func. Count: 132, Neg. LLF: 125.45474512510054
Iteration: 17, Func. Count: 140, Neg. LLF: 125.44184261168147
Iteration: 18, Func. Count: 148, Neg. LLF: 125.43036906312578
Iteration: 19, Func. Count: 156, Neg. LLF: 125.41931823946531
Iteration: 20, Func. Count: 164, Neg. LLF: 125.40214185562866
Iteration: 21, Func. Count: 172, Neg. LLF: 125.36137783924163
Iteration: 22, Func. Count: 180, Neg. LLF: 125.29560169200417
Iteration: 23, Func. Count: 188, Neg. LLF: 125.18180179859588
Iteration: 24, Func. Count: 196, Neg. LLF: 126.42433248894275
Iteration: 25, Func. Count: 205, Neg. LLF: 125.10942093099678
Iteration: 26, Func. Count: 213, Neg. LLF: 127.85913347554778
Iteration: 27, Func. Count: 222, Neg. LLF: 125.02033187190904
Iteration: 28, Func. Count: 230, Neg. LLF: 125.01544251194355
Iteration: 29, Func. Count: 238, Neg. LLF: 125.01418106065248
Iteration: 30, Func. Count: 246, Neg. LLF: 125.01392036250587
Iteration: 31, Func. Count: 254, Neg. LLF: 125.01391944841478
Optimization terminated successfully (Exit mode 0)
Current function value: 125.01391944841478
Iterations: 32
Function evaluations: 254
Gradient evaluations: 31
Iteration: 1, Func. Count: 10, Neg. LLF: 129.60633159736238
Iteration: 2, Func. Count: 21, Neg. LLF: 125.19612200248832
Iteration: 3, Func. Count: 30, Neg. LLF: 124.83152361970421
Iteration: 4, Func. Count: 39, Neg. LLF: 125.35796282689114
Iteration: 5, Func. Count: 49, Neg. LLF: 125.00184808190447
Iteration: 6, Func. Count: 59, Neg. LLF: 123.67005246150636
Iteration: 7, Func. Count: 68, Neg. LLF: 122.36713017468279
Iteration: 8, Func. Count: 77, Neg. LLF: 121.87400270746045
Iteration: 9, Func. Count: 86, Neg. LLF: 121.7734286077571
Iteration: 10, Func. Count: 96, Neg. LLF: 121.28329401784103
Iteration: 11, Func. Count: 105, Neg. LLF: 121.22212288137678
Iteration: 12, Func. Count: 114, Neg. LLF: 121.17524222816478
Iteration: 13, Func. Count: 123, Neg. LLF: 121.13685593841586
Iteration: 14, Func. Count: 132, Neg. LLF: 121.13391364748216
Iteration: 15, Func. Count: 141, Neg. LLF: 121.13381916032978
Iteration: 16, Func. Count: 160, Neg. LLF: 121.13835991715646
Iteration: 17, Func. Count: 170, Neg. LLF: 121.13414293869202
Iteration: 18, Func. Count: 179, Neg. LLF: 121.14125661431473
Iteration: 19, Func. Count: 189, Neg. LLF: 121.13400754629939
Iteration: 20, Func. Count: 198, Neg. LLF: 121.13400506452838
Iteration: 21, Func. Count: 206, Neg. LLF: 121.13400497215466
Optimization terminated successfully (Exit mode 0)
Current function value: 121.13400506452838
Iterations: 22
Function evaluations: 206
Gradient evaluations: 21
Iteration: 1, Func. Count: 7, Neg. LLF: 126.83355812903609
Iteration: 2, Func. Count: 13, Neg. LLF: 126.52392977751497
Iteration: 3, Func. Count: 19, Neg. LLF: 125.73419304940712
Iteration: 4, Func. Count: 25, Neg. LLF: 152.90796038846838
Iteration: 5, Func. Count: 34, Neg. LLF: 126.26000767281225
Iteration: 6, Func. Count: 41, Neg. LLF: 124.44635206873717
Iteration: 7, Func. Count: 47, Neg. LLF: 124.37158185013196
Iteration: 8, Func. Count: 53, Neg. LLF: 124.33655478344264
Iteration: 9, Func. Count: 59, Neg. LLF: 124.33341009287204
Iteration: 10, Func. Count: 65, Neg. LLF: 124.33288232806714
Iteration: 11, Func. Count: 71, Neg. LLF: 124.33283525396703
Iteration: 12, Func. Count: 77, Neg. LLF: 124.33283081275292
Iteration: 13, Func. Count: 82, Neg. LLF: 124.33283081273403
Optimization terminated successfully (Exit mode 0)
Current function value: 124.33283081275292
Iterations: 13
Function evaluations: 82
Gradient evaluations: 13
Iteration: 1, Func. Count: 8, Neg. LLF: 128.62938850791974
Iteration: 2, Func. Count: 17, Neg. LLF: 128.29246675488622
Iteration: 3, Func. Count: 25, Neg. LLF: 125.08042326445721
Iteration: 4, Func. Count: 32, Neg. LLF: 125.08259015197274
Iteration: 5, Func. Count: 40, Neg. LLF: 124.43034819972222
Iteration: 6, Func. Count: 47, Neg. LLF: 124.37861102340176
Iteration: 7, Func. Count: 54, Neg. LLF: 124.35001458973022
Iteration: 8, Func. Count: 61, Neg. LLF: 124.33514577240781
Iteration: 9, Func. Count: 68, Neg. LLF: 124.33389836424277
Iteration: 10, Func. Count: 75, Neg. LLF: 124.33350887070628
Iteration: 11, Func. Count: 82, Neg. LLF: 124.33288361366829
Iteration: 12, Func. Count: 89, Neg. LLF: 124.33283356102153
Iteration: 13, Func. Count: 96, Neg. LLF: 124.33283057589702
Iteration: 14, Func. Count: 102, Neg. LLF: 124.33283061311009
Optimization terminated successfully (Exit mode 0)
Current function value: 124.33283057589702
Iterations: 14
Function evaluations: 102
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 128.10228957198856
Iteration: 2, Func. Count: 19, Neg. LLF: 129.45629514184202
Iteration: 3, Func. Count: 28, Neg. LLF: 125.05320977804739
Iteration: 4, Func. Count: 36, Neg. LLF: 125.15313866502187
Iteration: 5, Func. Count: 45, Neg. LLF: 125.53031874686988
Iteration: 6, Func. Count: 54, Neg. LLF: 124.91664687610172
Iteration: 7, Func. Count: 62, Neg. LLF: 124.87048982711966
Iteration: 8, Func. Count: 70, Neg. LLF: 124.5046906998102
Iteration: 9, Func. Count: 78, Neg. LLF: 124.41650991639837
Iteration: 10, Func. Count: 86, Neg. LLF: 124.33617217724967
Iteration: 11, Func. Count: 94, Neg. LLF: 124.33479844990535
Iteration: 12, Func. Count: 102, Neg. LLF: 124.33395956687698
Iteration: 13, Func. Count: 110, Neg. LLF: 124.33295408672501
Iteration: 14, Func. Count: 118, Neg. LLF: 124.33285410589376
Iteration: 15, Func. Count: 126, Neg. LLF: 124.33283698286024
Iteration: 16, Func. Count: 134, Neg. LLF: 124.3328322159299
Iteration: 17, Func. Count: 142, Neg. LLF: 124.33283074432165
Iteration: 18, Func. Count: 149, Neg. LLF: 124.33283079012706
Optimization terminated successfully (Exit mode 0)
Current function value: 124.33283074432165
Iterations: 18
Function evaluations: 149
Gradient evaluations: 18
Iteration: 1, Func. Count: 10, Neg. LLF: 127.61188022422104
Iteration: 2, Func. Count: 21, Neg. LLF: 130.8485293044713
Iteration: 3, Func. Count: 31, Neg. LLF: 124.43017831022988
Iteration: 4, Func. Count: 40, Neg. LLF: 125.11083719592733
Iteration: 5, Func. Count: 50, Neg. LLF: 124.54362885715864
Iteration: 6, Func. Count: 60, Neg. LLF: 123.94878208157617
Iteration: 7, Func. Count: 69, Neg. LLF: 123.37271642380634
Iteration: 8, Func. Count: 78, Neg. LLF: 123.34706958885731
Iteration: 9, Func. Count: 87, Neg. LLF: 123.33035119588159
Iteration: 10, Func. Count: 97, Neg. LLF: 123.25941823347547
Iteration: 11, Func. Count: 106, Neg. LLF: 123.25287243118667
Iteration: 12, Func. Count: 115, Neg. LLF: 123.2524998369617
Iteration: 13, Func. Count: 124, Neg. LLF: 123.25248711686696
Iteration: 14, Func. Count: 133, Neg. LLF: 123.25248452426794
Iteration: 15, Func. Count: 142, Neg. LLF: 123.2524814055652
Iteration: 16, Func. Count: 151, Neg. LLF: 123.25248240176161
Optimization terminated successfully (Exit mode 0)
Current function value: 123.25248240176161
Iterations: 16
Function evaluations: 151
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 128.19424957789784
Iteration: 2, Func. Count: 22, Neg. LLF: 131.38280660790218
Iteration: 3, Func. Count: 33, Neg. LLF: 136.74769148068128
Iteration: 4, Func. Count: 45, Neg. LLF: 125.90597721743586
Iteration: 5, Func. Count: 56, Neg. LLF: 123.88651505757787
Iteration: 6, Func. Count: 66, Neg. LLF: 148.77258109462304
Iteration: 7, Func. Count: 77, Neg. LLF: 123.37257329189394
Iteration: 8, Func. Count: 87, Neg. LLF: 122.50247383969226
Iteration: 9, Func. Count: 97, Neg. LLF: 122.33420690751106
Iteration: 10, Func. Count: 107, Neg. LLF: 122.24752646930833
Iteration: 11, Func. Count: 117, Neg. LLF: 122.18290015093258
Iteration: 12, Func. Count: 127, Neg. LLF: 122.17071264630637
Iteration: 13, Func. Count: 137, Neg. LLF: 122.16900896132812
Iteration: 14, Func. Count: 147, Neg. LLF: 122.16878430635035
Iteration: 15, Func. Count: 157, Neg. LLF: 122.16872427944811
Iteration: 16, Func. Count: 167, Neg. LLF: 122.16872294503477
Iteration: 17, Func. Count: 176, Neg. LLF: 122.16872286169996
Optimization terminated successfully (Exit mode 0)
Current function value: 122.16872294503477
Iterations: 17
Function evaluations: 176
Gradient evaluations: 17
Iteration: 1, Func. Count: 8, Neg. LLF: 128.772824804203
Iteration: 2, Func. Count: 16, Neg. LLF: 144.42771961804905
Iteration: 3, Func. Count: 24, Neg. LLF: 124.86274460831982
Iteration: 4, Func. Count: 31, Neg. LLF: 125.1640930928646
Iteration: 5, Func. Count: 41, Neg. LLF: 125.50501709394682
Iteration: 6, Func. Count: 49, Neg. LLF: 124.36948186232468
Iteration: 7, Func. Count: 56, Neg. LLF: 124.34470683897989
Iteration: 8, Func. Count: 63, Neg. LLF: 124.33855468621066
Iteration: 9, Func. Count: 70, Neg. LLF: 124.33397579546511
Iteration: 10, Func. Count: 77, Neg. LLF: 124.33311679005296
Iteration: 11, Func. Count: 84, Neg. LLF: 124.33283121048535
Iteration: 12, Func. Count: 91, Neg. LLF: 124.33283053336572
Optimization terminated successfully (Exit mode 0)
Current function value: 124.33283053336572
Iterations: 12
Function evaluations: 91
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 128.7176165263784
Iteration: 2, Func. Count: 19, Neg. LLF: 128.17477056236402
Iteration: 3, Func. Count: 28, Neg. LLF: 125.0909917948819
Iteration: 4, Func. Count: 36, Neg. LLF: 125.1138435247455
Iteration: 5, Func. Count: 45, Neg. LLF: 124.43999348962235
Iteration: 6, Func. Count: 53, Neg. LLF: 124.35656398705737
Iteration: 7, Func. Count: 61, Neg. LLF: 124.34856466654878
Iteration: 8, Func. Count: 69, Neg. LLF: 124.33931827023196
Iteration: 9, Func. Count: 77, Neg. LLF: 124.33451394033224
Iteration: 10, Func. Count: 85, Neg. LLF: 124.33361361555811
Iteration: 11, Func. Count: 93, Neg. LLF: 124.33318282214053
Iteration: 12, Func. Count: 101, Neg. LLF: 124.33297277040523
Iteration: 13, Func. Count: 109, Neg. LLF: 124.3328551860784
Iteration: 14, Func. Count: 117, Neg. LLF: 124.33283217945247
Iteration: 15, Func. Count: 125, Neg. LLF: 124.33283056324876
Iteration: 16, Func. Count: 132, Neg. LLF: 124.33283060047137
Optimization terminated successfully (Exit mode 0)
Current function value: 124.33283056324876
Iterations: 16
Function evaluations: 132
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 128.21173792992658
Iteration: 2, Func. Count: 21, Neg. LLF: 129.25939281683685
Iteration: 3, Func. Count: 31, Neg. LLF: 125.04392614995841
Iteration: 4, Func. Count: 40, Neg. LLF: 125.02106205755136
Iteration: 5, Func. Count: 50, Neg. LLF: 126.43731434433684
Iteration: 6, Func. Count: 60, Neg. LLF: 124.9173145731033
Iteration: 7, Func. Count: 69, Neg. LLF: 124.85581061599692
Iteration: 8, Func. Count: 78, Neg. LLF: 124.40372950347734
Iteration: 9, Func. Count: 87, Neg. LLF: 124.35825094917313
Iteration: 10, Func. Count: 96, Neg. LLF: 124.34253562084241
Iteration: 11, Func. Count: 105, Neg. LLF: 124.33661961253704
Iteration: 12, Func. Count: 114, Neg. LLF: 124.33418100597655
Iteration: 13, Func. Count: 123, Neg. LLF: 124.33329792806433
Iteration: 14, Func. Count: 132, Neg. LLF: 124.33290655241187
Iteration: 15, Func. Count: 141, Neg. LLF: 124.33285440143524
Iteration: 16, Func. Count: 150, Neg. LLF: 124.33284515766701
Iteration: 17, Func. Count: 159, Neg. LLF: 124.33283677364574
Iteration: 18, Func. Count: 168, Neg. LLF: 124.33283190937506
Iteration: 19, Func. Count: 177, Neg. LLF: 124.33283088337215
Iteration: 20, Func. Count: 185, Neg. LLF: 124.33283092913744
Optimization terminated successfully (Exit mode 0)
Current function value: 124.33283088337215
Iterations: 20
Function evaluations: 185
Gradient evaluations: 20
Iteration: 1, Func. Count: 11, Neg. LLF: 127.74725770422997
Iteration: 2, Func. Count: 23, Neg. LLF: 130.64971602410353
Iteration: 3, Func. Count: 34, Neg. LLF: 124.4614357934671
Iteration: 4, Func. Count: 44, Neg. LLF: 124.39062888573132
Iteration: 5, Func. Count: 54, Neg. LLF: 124.43498911343767
Iteration: 6, Func. Count: 65, Neg. LLF: 123.80299638372593
Iteration: 7, Func. Count: 75, Neg. LLF: 126.93811535416464
Iteration: 8, Func. Count: 86, Neg. LLF: 123.39356118021726
Iteration: 9, Func. Count: 96, Neg. LLF: 123.30640241085307
Iteration: 10, Func. Count: 106, Neg. LLF: 123.27173276174261
Iteration: 11, Func. Count: 116, Neg. LLF: 123.25279125175476
Iteration: 12, Func. Count: 126, Neg. LLF: 123.25251625713577
Iteration: 13, Func. Count: 136, Neg. LLF: 123.25249004306562
Iteration: 14, Func. Count: 146, Neg. LLF: 123.25248801417766
Iteration: 15, Func. Count: 156, Neg. LLF: 123.2524810856209
Iteration: 16, Func. Count: 166, Neg. LLF: 123.25248314063582
Optimization terminated successfully (Exit mode 0)
Current function value: 123.2524812091013
Iterations: 17
Function evaluations: 167
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 128.12053591235494
Iteration: 2, Func. Count: 24, Neg. LLF: 131.0404666857811
Iteration: 3, Func. Count: 36, Neg. LLF: 137.04354568476958
Iteration: 4, Func. Count: 49, Neg. LLF: 124.2498427787277
Iteration: 5, Func. Count: 60, Neg. LLF: 124.0727302819229
Iteration: 6, Func. Count: 71, Neg. LLF: 130.37413566814118
Iteration: 7, Func. Count: 83, Neg. LLF: 123.9809951487123
Iteration: 8, Func. Count: 95, Neg. LLF: 122.30599880122679
Iteration: 9, Func. Count: 106, Neg. LLF: 123.9477978253961
Iteration: 10, Func. Count: 118, Neg. LLF: 121.95629249283753
Iteration: 11, Func. Count: 129, Neg. LLF: 121.86362052669973
Iteration: 12, Func. Count: 140, Neg. LLF: 121.77535589010739
Iteration: 13, Func. Count: 151, Neg. LLF: 121.62569964978464
Iteration: 14, Func. Count: 162, Neg. LLF: 121.33153834565702
Iteration: 15, Func. Count: 173, Neg. LLF: 121.12481352587922
Iteration: 16, Func. Count: 184, Neg. LLF: 121.10180572788096
Iteration: 17, Func. Count: 195, Neg. LLF: 121.0947507008938
Iteration: 18, Func. Count: 206, Neg. LLF: 121.09460390055747
Iteration: 19, Func. Count: 217, Neg. LLF: 121.09460133188608
Iteration: 20, Func. Count: 227, Neg. LLF: 121.0946012240004
Optimization terminated successfully (Exit mode 0)
Current function value: 121.09460133188608
Iterations: 20
Function evaluations: 227
Gradient evaluations: 20
Iteration: 1, Func. Count: 9, Neg. LLF: 128.84424440009826
Iteration: 2, Func. Count: 18, Neg. LLF: 145.00366103967673
Iteration: 3, Func. Count: 27, Neg. LLF: 124.85839814960578
Iteration: 4, Func. Count: 35, Neg. LLF: 125.15587650322728
Iteration: 5, Func. Count: 46, Neg. LLF: 125.46819435227341
Iteration: 6, Func. Count: 55, Neg. LLF: 124.36977946400864
Iteration: 7, Func. Count: 63, Neg. LLF: 124.34456432499053
Iteration: 8, Func. Count: 71, Neg. LLF: 124.33856336680057
Iteration: 9, Func. Count: 79, Neg. LLF: 124.333847794474
Iteration: 10, Func. Count: 87, Neg. LLF: 124.33308450407358
Iteration: 11, Func. Count: 95, Neg. LLF: 124.33283064250422
Iteration: 12, Func. Count: 102, Neg. LLF: 124.33283081975351
Optimization terminated successfully (Exit mode 0)
Current function value: 124.33283064250422
Iterations: 12
Function evaluations: 102
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 128.72179688874135
Iteration: 2, Func. Count: 21, Neg. LLF: 128.18505896254914
Iteration: 3, Func. Count: 31, Neg. LLF: 125.09648666425765
Iteration: 4, Func. Count: 40, Neg. LLF: 125.03858936654123
Iteration: 5, Func. Count: 50, Neg. LLF: 124.44600846157633
Iteration: 6, Func. Count: 59, Neg. LLF: 124.35510846415741
Iteration: 7, Func. Count: 68, Neg. LLF: 124.34201991162502
Iteration: 8, Func. Count: 77, Neg. LLF: 124.33666712198759
Iteration: 9, Func. Count: 86, Neg. LLF: 124.33390999379436
Iteration: 10, Func. Count: 95, Neg. LLF: 124.33343389435996
Iteration: 11, Func. Count: 104, Neg. LLF: 124.33314019673496
Iteration: 12, Func. Count: 113, Neg. LLF: 124.33284190010603
Iteration: 13, Func. Count: 122, Neg. LLF: 124.3328310185158
Iteration: 14, Func. Count: 130, Neg. LLF: 124.3328310557574
Optimization terminated successfully (Exit mode 0)
Current function value: 124.3328310185158
Iterations: 14
Function evaluations: 130
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 128.19740113274167
Iteration: 2, Func. Count: 23, Neg. LLF: 129.29128790181673
Iteration: 3, Func. Count: 34, Neg. LLF: 125.04516996150704
Iteration: 4, Func. Count: 44, Neg. LLF: 125.01494868611114
Iteration: 5, Func. Count: 55, Neg. LLF: 126.59959628657117
Iteration: 6, Func. Count: 66, Neg. LLF: 124.919171790525
Iteration: 7, Func. Count: 76, Neg. LLF: 124.86568016740546
Iteration: 8, Func. Count: 86, Neg. LLF: 124.41130182723771
Iteration: 9, Func. Count: 96, Neg. LLF: 124.35637613714816
Iteration: 10, Func. Count: 106, Neg. LLF: 124.3423257085842
Iteration: 11, Func. Count: 116, Neg. LLF: 124.3359294841617
Iteration: 12, Func. Count: 126, Neg. LLF: 124.3341182665417
Iteration: 13, Func. Count: 136, Neg. LLF: 124.33322720298918
Iteration: 14, Func. Count: 146, Neg. LLF: 124.33289227468882
Iteration: 15, Func. Count: 156, Neg. LLF: 124.3328485129144
Iteration: 16, Func. Count: 166, Neg. LLF: 124.33284176387117
Iteration: 17, Func. Count: 176, Neg. LLF: 124.33283545116787
Iteration: 18, Func. Count: 186, Neg. LLF: 124.33283173610393
Iteration: 19, Func. Count: 195, Neg. LLF: 124.33283178179153
Optimization terminated successfully (Exit mode 0)
Current function value: 124.33283173610393
Iterations: 19
Function evaluations: 195
Gradient evaluations: 19
Iteration: 1, Func. Count: 12, Neg. LLF: 127.6999275287454
Iteration: 2, Func. Count: 25, Neg. LLF: 130.70043006885533
Iteration: 3, Func. Count: 37, Neg. LLF: 124.45669532613896
Iteration: 4, Func. Count: 48, Neg. LLF: 124.33563031137655
Iteration: 5, Func. Count: 59, Neg. LLF: 124.5058690990021
Iteration: 6, Func. Count: 71, Neg. LLF: 123.47511608658053
Iteration: 7, Func. Count: 82, Neg. LLF: 126.14524367695927
Iteration: 8, Func. Count: 94, Neg. LLF: 123.45567206721728
Iteration: 9, Func. Count: 106, Neg. LLF: 123.28681904064248
Iteration: 10, Func. Count: 117, Neg. LLF: 123.26849807981476
Iteration: 11, Func. Count: 128, Neg. LLF: 123.25852394213443
Iteration: 12, Func. Count: 139, Neg. LLF: 123.25518747674148
Iteration: 13, Func. Count: 150, Neg. LLF: 123.25302743763226
Iteration: 14, Func. Count: 161, Neg. LLF: 123.2523605426499
Iteration: 15, Func. Count: 172, Neg. LLF: 123.25256687087742
Iteration: 16, Func. Count: 184, Neg. LLF: 123.25223809744226
Iteration: 17, Func. Count: 197, Neg. LLF: 123.25222099282185
Iteration: 18, Func. Count: 218, Neg. LLF: 123.25409174441451
Iteration: 19, Func. Count: 230, Neg. LLF: 123.25329961155309
Iteration: 20, Func. Count: 243, Neg. LLF: 123.2524838163545
Iteration: 21, Func. Count: 254, Neg. LLF: 123.25252533876917
Optimization terminated successfully (Exit mode 0)
Current function value: 123.25248303850283
Iterations: 22
Function evaluations: 255
Gradient evaluations: 21
Iteration: 1, Func. Count: 13, Neg. LLF: 128.04772635605212
Iteration: 2, Func. Count: 26, Neg. LLF: 130.94828327876675
Iteration: 3, Func. Count: 39, Neg. LLF: 137.18599941951393
Iteration: 4, Func. Count: 53, Neg. LLF: 124.00162067552648
Iteration: 5, Func. Count: 65, Neg. LLF: 133.94050689460767
Iteration: 6, Func. Count: 78, Neg. LLF: 148.30190369947456
Iteration: 7, Func. Count: 91, Neg. LLF: 123.54882708782138
Iteration: 8, Func. Count: 103, Neg. LLF: 123.32691945413454
Iteration: 9, Func. Count: 116, Neg. LLF: 122.54299228394488
Iteration: 10, Func. Count: 128, Neg. LLF: 122.247543127665
Iteration: 11, Func. Count: 140, Neg. LLF: 122.1051829396272
Iteration: 12, Func. Count: 152, Neg. LLF: 121.97997814646989
Iteration: 13, Func. Count: 164, Neg. LLF: 121.7547742076482
Iteration: 14, Func. Count: 176, Neg. LLF: 121.42278164696769
Iteration: 15, Func. Count: 188, Neg. LLF: 121.25256112964439
Iteration: 16, Func. Count: 200, Neg. LLF: 121.12025211305867
Iteration: 17, Func. Count: 212, Neg. LLF: 121.10974822354659
Iteration: 18, Func. Count: 224, Neg. LLF: 121.10005619274098
Iteration: 19, Func. Count: 236, Neg. LLF: 121.09714111034204
Iteration: 20, Func. Count: 248, Neg. LLF: 121.63533443640382
Iteration: 21, Func. Count: 262, Neg. LLF: 121.11288436290766
Iteration: 22, Func. Count: 275, Neg. LLF: 121.09794772782661
Iteration: 23, Func. Count: 288, Neg. LLF: 121.0946032006201
Iteration: 24, Func. Count: 300, Neg. LLF: 121.09460117737805
Iteration: 25, Func. Count: 311, Neg. LLF: 121.09460106944391
Optimization terminated successfully (Exit mode 0)
Current function value: 121.09460117737805
Iterations: 26
Function evaluations: 311
Gradient evaluations: 25
Iteration: 1, Func. Count: 10, Neg. LLF: 128.95348659783485
Iteration: 2, Func. Count: 20, Neg. LLF: 145.68808767978157
Iteration: 3, Func. Count: 30, Neg. LLF: 124.8481282676585
Iteration: 4, Func. Count: 39, Neg. LLF: 125.1471864666029
Iteration: 5, Func. Count: 51, Neg. LLF: 125.42471812309579
Iteration: 6, Func. Count: 61, Neg. LLF: 124.36981226572397
Iteration: 7, Func. Count: 70, Neg. LLF: 124.34434856305133
Iteration: 8, Func. Count: 79, Neg. LLF: 124.33851480635045
Iteration: 9, Func. Count: 88, Neg. LLF: 124.33368926425354
Iteration: 10, Func. Count: 97, Neg. LLF: 124.33303871097594
Iteration: 11, Func. Count: 106, Neg. LLF: 124.33283056293659
Iteration: 12, Func. Count: 114, Neg. LLF: 124.33283079198185
Optimization terminated successfully (Exit mode 0)
Current function value: 124.33283056293659
Iterations: 12
Function evaluations: 114
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 128.6821556105437
Iteration: 2, Func. Count: 23, Neg. LLF: 128.2276079953166
Iteration: 3, Func. Count: 34, Neg. LLF: 125.0963387092148
Iteration: 4, Func. Count: 44, Neg. LLF: 125.11377688128172
Iteration: 5, Func. Count: 55, Neg. LLF: 124.44896578908198
Iteration: 6, Func. Count: 65, Neg. LLF: 124.36191466377618
Iteration: 7, Func. Count: 75, Neg. LLF: 124.34796726588893
Iteration: 8, Func. Count: 85, Neg. LLF: 124.33808079949854
Iteration: 9, Func. Count: 95, Neg. LLF: 124.33394973752324
Iteration: 10, Func. Count: 105, Neg. LLF: 124.33348132686045
Iteration: 11, Func. Count: 115, Neg. LLF: 124.33311404568742
Iteration: 12, Func. Count: 125, Neg. LLF: 124.33289954482669
Iteration: 13, Func. Count: 135, Neg. LLF: 124.33283623527595
Iteration: 14, Func. Count: 145, Neg. LLF: 124.3328306846348
Iteration: 15, Func. Count: 154, Neg. LLF: 124.33283072188055
Optimization terminated successfully (Exit mode 0)
Current function value: 124.3328306846348
Iterations: 15
Function evaluations: 154
Gradient evaluations: 15
Iteration: 1, Func. Count: 12, Neg. LLF: 128.21172169521367
Iteration: 2, Func. Count: 25, Neg. LLF: 129.27734241733137
Iteration: 3, Func. Count: 37, Neg. LLF: 125.047070802575
Iteration: 4, Func. Count: 48, Neg. LLF: 124.96669804655393
Iteration: 5, Func. Count: 59, Neg. LLF: 127.19316645337808
Iteration: 6, Func. Count: 71, Neg. LLF: 124.92126175815908
Iteration: 7, Func. Count: 82, Neg. LLF: 124.87351464986732
Iteration: 8, Func. Count: 93, Neg. LLF: 124.7776556119366
Iteration: 9, Func. Count: 104, Neg. LLF: 124.66120761652876
Iteration: 10, Func. Count: 115, Neg. LLF: 124.41572788139457
Iteration: 11, Func. Count: 126, Neg. LLF: 124.39553249095344
Iteration: 12, Func. Count: 137, Neg. LLF: 124.34013284202135
Iteration: 13, Func. Count: 148, Neg. LLF: 124.33379685943501
Iteration: 14, Func. Count: 159, Neg. LLF: 124.33302396892357
Iteration: 15, Func. Count: 170, Neg. LLF: 124.33300035464882
Iteration: 16, Func. Count: 181, Neg. LLF: 124.33287435102305
Iteration: 17, Func. Count: 192, Neg. LLF: 124.33284092599382
Iteration: 18, Func. Count: 203, Neg. LLF: 124.33283419336287
Iteration: 19, Func. Count: 214, Neg. LLF: 124.37564744202976
Optimization terminated successfully (Exit mode 0)
Current function value: 124.33283385286035
Iterations: 20
Function evaluations: 216
Gradient evaluations: 19
Iteration: 1, Func. Count: 13, Neg. LLF: 127.77547602967587
Iteration: 2, Func. Count: 27, Neg. LLF: 130.60435837720698
Iteration: 3, Func. Count: 40, Neg. LLF: 124.48813101893789
Iteration: 4, Func. Count: 52, Neg. LLF: 124.44573569890427
Iteration: 5, Func. Count: 64, Neg. LLF: 124.81733732796775
Iteration: 6, Func. Count: 77, Neg. LLF: 124.31700147984593
Iteration: 7, Func. Count: 90, Neg. LLF: 123.89990815004207
Iteration: 8, Func. Count: 102, Neg. LLF: 123.52622647226659
Iteration: 9, Func. Count: 114, Neg. LLF: 123.30175319393231
Iteration: 10, Func. Count: 126, Neg. LLF: 123.2719060035217
Iteration: 11, Func. Count: 138, Neg. LLF: 123.25571872531212
Iteration: 12, Func. Count: 150, Neg. LLF: 123.25281505909955
Iteration: 13, Func. Count: 162, Neg. LLF: 123.25250290360523
Iteration: 14, Func. Count: 174, Neg. LLF: 123.25249119553422
Iteration: 15, Func. Count: 186, Neg. LLF: 123.25248512010326
Iteration: 16, Func. Count: 198, Neg. LLF: 123.25266658273507
Iteration: 17, Func. Count: 211, Neg. LLF: 123.25250991105607
Optimization terminated successfully (Exit mode 0)
Current function value: 123.25248316729696
Iterations: 18
Function evaluations: 213
Gradient evaluations: 17
Iteration: 1, Func. Count: 14, Neg. LLF: 128.01103223777127
Iteration: 2, Func. Count: 28, Neg. LLF: 130.82177092911834
Iteration: 3, Func. Count: 42, Neg. LLF: 139.83910899892848
Iteration: 4, Func. Count: 57, Neg. LLF: 123.99914872097322
Iteration: 5, Func. Count: 70, Neg. LLF: 146.30538919213166
Iteration: 6, Func. Count: 84, Neg. LLF: 125.56508786497535
Iteration: 7, Func. Count: 98, Neg. LLF: 123.8788214181852
Iteration: 8, Func. Count: 112, Neg. LLF: 122.8202643670351
Iteration: 9, Func. Count: 125, Neg. LLF: 124.80672500249592
Iteration: 10, Func. Count: 139, Neg. LLF: 126.46341281679733
Iteration: 11, Func. Count: 154, Neg. LLF: 122.02977110792641
Iteration: 12, Func. Count: 167, Neg. LLF: 121.90380995805525
Iteration: 13, Func. Count: 180, Neg. LLF: 121.75372758166475
Iteration: 14, Func. Count: 193, Neg. LLF: 121.32094900859575
Iteration: 15, Func. Count: 206, Neg. LLF: 121.12090758014097
Iteration: 16, Func. Count: 219, Neg. LLF: 394.05550169473673
Iteration: 17, Func. Count: 234, Neg. LLF: 121.12906522538289
Iteration: 18, Func. Count: 248, Neg. LLF: 121.10380549246395
Iteration: 19, Func. Count: 262, Neg. LLF: 121.0946056985337
Iteration: 20, Func. Count: 275, Neg. LLF: 121.09460115230041
Iteration: 21, Func. Count: 287, Neg. LLF: 121.09460104438834
Optimization terminated successfully (Exit mode 0)
Current function value: 121.09460115230041
Iterations: 22
Function evaluations: 287
Gradient evaluations: 21
Iteration: 1, Func. Count: 7, Neg. LLF: 131.8943009100574
Iteration: 2, Func. Count: 14, Neg. LLF: 157.72580752762764
Iteration: 3, Func. Count: 21, Neg. LLF: 125.1994398862721
Iteration: 4, Func. Count: 27, Neg. LLF: 125.13980588257112
Iteration: 5, Func. Count: 33, Neg. LLF: 125.09025988268866
Iteration: 6, Func. Count: 39, Neg. LLF: 125.02084824935126
Iteration: 7, Func. Count: 45, Neg. LLF: 125.01440013040425
Iteration: 8, Func. Count: 51, Neg. LLF: 125.01397209227584
Iteration: 9, Func. Count: 57, Neg. LLF: 125.0139388638178
Iteration: 10, Func. Count: 63, Neg. LLF: 125.01392177144022
Iteration: 11, Func. Count: 69, Neg. LLF: 125.01391986277524
Iteration: 12, Func. Count: 74, Neg. LLF: 125.01392012499234
Optimization terminated successfully (Exit mode 0)
Current function value: 125.01391986277524
Iterations: 12
Function evaluations: 74
Gradient evaluations: 12
Iteration: 1, Func. Count: 8, Neg. LLF: 165.90112052733264
Iteration: 2, Func. Count: 17, Neg. LLF: 125.502912758463
Iteration: 3, Func. Count: 24, Neg. LLF: 125.50011734048148
Iteration: 4, Func. Count: 31, Neg. LLF: 125.49913657471141
Iteration: 5, Func. Count: 38, Neg. LLF: 125.49909209166297
Iteration: 6, Func. Count: 45, Neg. LLF: 125.49902878293935
Iteration: 7, Func. Count: 52, Neg. LLF: 125.49880990468763
Iteration: 8, Func. Count: 59, Neg. LLF: 125.49828656454521
Iteration: 9, Func. Count: 66, Neg. LLF: 125.4969259480883
Iteration: 10, Func. Count: 73, Neg. LLF: 125.4941294682787
Iteration: 11, Func. Count: 80, Neg. LLF: 125.49000609254675
Iteration: 12, Func. Count: 87, Neg. LLF: 125.48822066329646
Iteration: 13, Func. Count: 94, Neg. LLF: 125.48253959135728
Iteration: 14, Func. Count: 101, Neg. LLF: 125.47712636907471
Iteration: 15, Func. Count: 108, Neg. LLF: 125.47142527038699
Iteration: 16, Func. Count: 115, Neg. LLF: 125.4668466654024
Iteration: 17, Func. Count: 122, Neg. LLF: 125.4593596798927
Iteration: 18, Func. Count: 129, Neg. LLF: 125.44262767269237
Iteration: 19, Func. Count: 136, Neg. LLF: 125.40624331429306
Iteration: 20, Func. Count: 143, Neg. LLF: 125.32586325690848
Iteration: 21, Func. Count: 150, Neg. LLF: 125.29164614284451
Iteration: 22, Func. Count: 157, Neg. LLF: 129.7707224756825
Iteration: 23, Func. Count: 165, Neg. LLF: 125.8129279223814
Iteration: 24, Func. Count: 173, Neg. LLF: 125.12625042569547
Iteration: 25, Func. Count: 180, Neg. LLF: 125.04897372420682
Iteration: 26, Func. Count: 187, Neg. LLF: 125.028925314478
Iteration: 27, Func. Count: 194, Neg. LLF: 125.0159901789588
Iteration: 28, Func. Count: 201, Neg. LLF: 125.01403283939345
Iteration: 29, Func. Count: 208, Neg. LLF: 125.01392056618764
Iteration: 30, Func. Count: 215, Neg. LLF: 125.01391955299508
Iteration: 31, Func. Count: 221, Neg. LLF: 125.01391965710461
Optimization terminated successfully (Exit mode 0)
Current function value: 125.01391955299508
Iterations: 32
Function evaluations: 221
Gradient evaluations: 31
Iteration: 1, Func. Count: 9, Neg. LLF: 157.79303481254541
Iteration: 2, Func. Count: 19, Neg. LLF: 125.50536224804486
Iteration: 3, Func. Count: 27, Neg. LLF: 125.51096731725467
Iteration: 4, Func. Count: 36, Neg. LLF: 125.50331968672899
Iteration: 5, Func. Count: 44, Neg. LLF: 125.50317601627889
Iteration: 6, Func. Count: 52, Neg. LLF: 125.50218746320677
Iteration: 7, Func. Count: 60, Neg. LLF: 125.49977940744773
Iteration: 8, Func. Count: 68, Neg. LLF: 125.49914354352332
Iteration: 9, Func. Count: 76, Neg. LLF: 125.49862451312652
Iteration: 10, Func. Count: 84, Neg. LLF: 125.49859118683422
Iteration: 11, Func. Count: 92, Neg. LLF: 125.498387239697
Iteration: 12, Func. Count: 100, Neg. LLF: 125.49733255912274
Iteration: 13, Func. Count: 108, Neg. LLF: 125.49288004940172
Iteration: 14, Func. Count: 116, Neg. LLF: 125.48569456001057
Iteration: 15, Func. Count: 124, Neg. LLF: 125.48527007818117
Iteration: 16, Func. Count: 132, Neg. LLF: 125.48336632571642
Iteration: 17, Func. Count: 140, Neg. LLF: 125.47675420631698
Iteration: 18, Func. Count: 148, Neg. LLF: 125.47484152084473
Iteration: 19, Func. Count: 156, Neg. LLF: 125.47379847433335
Iteration: 20, Func. Count: 164, Neg. LLF: 125.4531394559825
Iteration: 21, Func. Count: 172, Neg. LLF: 127.7798144537465
Iteration: 22, Func. Count: 182, Neg. LLF: 125.35981226053977
Iteration: 23, Func. Count: 191, Neg. LLF: 125.13086316815577
Iteration: 24, Func. Count: 199, Neg. LLF: 125.09761016330981
Iteration: 25, Func. Count: 207, Neg. LLF: 125.04515192619057
Iteration: 26, Func. Count: 215, Neg. LLF: 125.02201306202488
Iteration: 27, Func. Count: 223, Neg. LLF: 125.015329182495
Iteration: 28, Func. Count: 231, Neg. LLF: 125.01397186372792
Iteration: 29, Func. Count: 239, Neg. LLF: 125.01391984558448
Iteration: 30, Func. Count: 246, Neg. LLF: 125.01391993966516
Optimization terminated successfully (Exit mode 0)
Current function value: 125.01391984558448
Iterations: 31
Function evaluations: 246
Gradient evaluations: 30
Iteration: 1, Func. Count: 10, Neg. LLF: 152.15274308888067
Iteration: 2, Func. Count: 21, Neg. LLF: 125.50699301278057
Iteration: 3, Func. Count: 30, Neg. LLF: 125.52399234287604
Iteration: 4, Func. Count: 40, Neg. LLF: 125.50406549319811
Iteration: 5, Func. Count: 49, Neg. LLF: 125.50402283114568
Iteration: 6, Func. Count: 58, Neg. LLF: 125.50382399324701
Iteration: 7, Func. Count: 67, Neg. LLF: 125.50381302924283
Iteration: 8, Func. Count: 76, Neg. LLF: 125.50380862365772
Iteration: 9, Func. Count: 85, Neg. LLF: 125.50380416543551
Iteration: 10, Func. Count: 94, Neg. LLF: 125.50378502984069
Iteration: 11, Func. Count: 103, Neg. LLF: 125.50373752841958
Iteration: 12, Func. Count: 112, Neg. LLF: 125.5034773326509
Iteration: 13, Func. Count: 121, Neg. LLF: 125.5022896179948
Iteration: 14, Func. Count: 130, Neg. LLF: 125.50180610326161
Iteration: 15, Func. Count: 139, Neg. LLF: 125.50079642411427
Iteration: 16, Func. Count: 148, Neg. LLF: 125.50014639277542
Iteration: 17, Func. Count: 157, Neg. LLF: 125.4996405055117
Iteration: 18, Func. Count: 166, Neg. LLF: 125.50092758574334
Iteration: 19, Func. Count: 176, Neg. LLF: 125.49854288707895
Iteration: 20, Func. Count: 185, Neg. LLF: 125.49699039023076
Iteration: 21, Func. Count: 194, Neg. LLF: 128.8175411135171
Iteration: 22, Func. Count: 205, Neg. LLF: 125.49997701351751
Iteration: 23, Func. Count: 215, Neg. LLF: 125.49492016096016
Iteration: 24, Func. Count: 224, Neg. LLF: 125.49490132998316
Iteration: 25, Func. Count: 233, Neg. LLF: 125.49480388020022
Iteration: 26, Func. Count: 242, Neg. LLF: 125.49432526042976
Iteration: 27, Func. Count: 251, Neg. LLF: 125.49141933893566
Iteration: 28, Func. Count: 260, Neg. LLF: 125.47831124485437
Iteration: 29, Func. Count: 269, Neg. LLF: 125.4764682996286
Iteration: 30, Func. Count: 278, Neg. LLF: 125.46747236920709
Iteration: 31, Func. Count: 287, Neg. LLF: 125.42818573494908
Iteration: 32, Func. Count: 296, Neg. LLF: 125.31380610755531
Iteration: 33, Func. Count: 305, Neg. LLF: 125.20741241291594
Iteration: 34, Func. Count: 314, Neg. LLF: 127.13767104875902
Iteration: 35, Func. Count: 325, Neg. LLF: 125.24089468660563
Iteration: 36, Func. Count: 335, Neg. LLF: 125.07282444753655
Iteration: 37, Func. Count: 344, Neg. LLF: 125.04497635558657
Iteration: 38, Func. Count: 353, Neg. LLF: 125.03304495244019
Iteration: 39, Func. Count: 362, Neg. LLF: 125.01712158549
Iteration: 40, Func. Count: 371, Neg. LLF: 125.01415549666645
Iteration: 41, Func. Count: 380, Neg. LLF: 125.01392185351126
Iteration: 42, Func. Count: 389, Neg. LLF: 125.01391944947505
Iteration: 43, Func. Count: 397, Neg. LLF: 125.01391955820607
Optimization terminated successfully (Exit mode 0)
Current function value: 125.01391944947505
Iterations: 45
Function evaluations: 397
Gradient evaluations: 43
Iteration: 1, Func. Count: 11, Neg. LLF: 128.35822329231962
Iteration: 2, Func. Count: 23, Neg. LLF: 125.61447624485963
Iteration: 3, Func. Count: 34, Neg. LLF: 125.03696452383106
Iteration: 4, Func. Count: 44, Neg. LLF: 125.18804477889334
Iteration: 5, Func. Count: 55, Neg. LLF: 123.92885104663492
Iteration: 6, Func. Count: 65, Neg. LLF: 123.89617208495537
Iteration: 7, Func. Count: 76, Neg. LLF: 122.53652931883346
Iteration: 8, Func. Count: 86, Neg. LLF: 121.77339090546201
Iteration: 9, Func. Count: 96, Neg. LLF: 121.52589680839047
Iteration: 10, Func. Count: 106, Neg. LLF: 121.4475796398951
Iteration: 11, Func. Count: 116, Neg. LLF: 121.2146722727797
Iteration: 12, Func. Count: 126, Neg. LLF: 121.1413932627079
Iteration: 13, Func. Count: 136, Neg. LLF: 121.13405514351938
Iteration: 14, Func. Count: 146, Neg. LLF: 121.13401075558676
Iteration: 15, Func. Count: 156, Neg. LLF: 121.13421037524054
Optimization terminated successfully (Exit mode 0)
Current function value: 121.1340105580759
Iterations: 16
Function evaluations: 158
Gradient evaluations: 15
Iteration: 1, Func. Count: 8, Neg. LLF: 127.08407576438005
Iteration: 2, Func. Count: 15, Neg. LLF: 129.59998206323604
Iteration: 3, Func. Count: 23, Neg. LLF: 125.49510114510207
Iteration: 4, Func. Count: 30, Neg. LLF: 177.31500412517332
Iteration: 5, Func. Count: 39, Neg. LLF: 128.22833885791735
Iteration: 6, Func. Count: 48, Neg. LLF: 124.4606423093557
Iteration: 7, Func. Count: 55, Neg. LLF: 124.39665099633496
Iteration: 8, Func. Count: 62, Neg. LLF: 124.38089997439138
Iteration: 9, Func. Count: 70, Neg. LLF: 124.33287279924207
Iteration: 10, Func. Count: 77, Neg. LLF: 124.33283816094959
Iteration: 11, Func. Count: 84, Neg. LLF: 124.33283195847957
Iteration: 12, Func. Count: 91, Neg. LLF: 124.33283057139353
Iteration: 13, Func. Count: 97, Neg. LLF: 124.33283057136661
Optimization terminated successfully (Exit mode 0)
Current function value: 124.33283057139353
Iterations: 13
Function evaluations: 97
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 128.64188353593067
Iteration: 2, Func. Count: 19, Neg. LLF: 128.30800712330196
Iteration: 3, Func. Count: 28, Neg. LLF: 125.08409333769595
Iteration: 4, Func. Count: 36, Neg. LLF: 125.11155207013194
Iteration: 5, Func. Count: 45, Neg. LLF: 124.43547958282213
Iteration: 6, Func. Count: 53, Neg. LLF: 124.38476737235924
Iteration: 7, Func. Count: 61, Neg. LLF: 124.35673873415165
Iteration: 8, Func. Count: 69, Neg. LLF: 124.33723983914848
Iteration: 9, Func. Count: 77, Neg. LLF: 124.33387361793953
Iteration: 10, Func. Count: 85, Neg. LLF: 124.33356388092741
Iteration: 11, Func. Count: 93, Neg. LLF: 124.33284396475968
Iteration: 12, Func. Count: 101, Neg. LLF: 124.33283067506107
Iteration: 13, Func. Count: 108, Neg. LLF: 124.33283071223472
Optimization terminated successfully (Exit mode 0)
Current function value: 124.33283067506107
Iterations: 13
Function evaluations: 108
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 128.09828155580206
Iteration: 2, Func. Count: 21, Neg. LLF: 129.50167696573828
Iteration: 3, Func. Count: 31, Neg. LLF: 125.05533832769972
Iteration: 4, Func. Count: 40, Neg. LLF: 125.15769594675335
Iteration: 5, Func. Count: 50, Neg. LLF: 125.53152085030808
Iteration: 6, Func. Count: 60, Neg. LLF: 124.91856114126466
Iteration: 7, Func. Count: 69, Neg. LLF: 124.87882948862298
Iteration: 8, Func. Count: 78, Neg. LLF: 124.50651757595348
Iteration: 9, Func. Count: 87, Neg. LLF: 124.41844398602764
Iteration: 10, Func. Count: 96, Neg. LLF: 124.33623762633053
Iteration: 11, Func. Count: 105, Neg. LLF: 124.33479110476085
Iteration: 12, Func. Count: 114, Neg. LLF: 124.3338464583692
Iteration: 13, Func. Count: 123, Neg. LLF: 124.33310383399005
Iteration: 14, Func. Count: 132, Neg. LLF: 124.33290480563375
Iteration: 15, Func. Count: 141, Neg. LLF: 124.33284714244559
Iteration: 16, Func. Count: 150, Neg. LLF: 124.33283461874855
Iteration: 17, Func. Count: 159, Neg. LLF: 124.33283117227086
Iteration: 18, Func. Count: 167, Neg. LLF: 124.33283121808347
Optimization terminated successfully (Exit mode 0)
Current function value: 124.33283117227086
Iterations: 18
Function evaluations: 167
Gradient evaluations: 18
Iteration: 1, Func. Count: 11, Neg. LLF: 127.55128452977453
Iteration: 2, Func. Count: 23, Neg. LLF: 130.9516849176742
Iteration: 3, Func. Count: 34, Neg. LLF: 124.42639965998193
Iteration: 4, Func. Count: 44, Neg. LLF: 124.6252682827126
Iteration: 5, Func. Count: 55, Neg. LLF: 124.3095073521641
Iteration: 6, Func. Count: 65, Neg. LLF: 123.48266349117614
Iteration: 7, Func. Count: 75, Neg. LLF: 123.79661924670468
Iteration: 8, Func. Count: 86, Neg. LLF: 123.32921993815043
Iteration: 9, Func. Count: 96, Neg. LLF: 123.27309394758618
Iteration: 10, Func. Count: 106, Neg. LLF: 123.25284780660984
Iteration: 11, Func. Count: 116, Neg. LLF: 123.25267258108673
Iteration: 12, Func. Count: 126, Neg. LLF: 123.25247868642198
Iteration: 13, Func. Count: 136, Neg. LLF: 123.25245655821543
Iteration: 14, Func. Count: 147, Neg. LLF: 123.25255455733608
Iteration: 15, Func. Count: 158, Neg. LLF: 123.25249224308341
Iteration: 16, Func. Count: 170, Neg. LLF: 123.2524827130666
Iteration: 17, Func. Count: 181, Neg. LLF: 123.25248388005014
Iteration: 18, Func. Count: 192, Neg. LLF: 123.25248235204393
Iteration: 19, Func. Count: 201, Neg. LLF: 123.25248228905777
Optimization terminated successfully (Exit mode 0)
Current function value: 123.25248235204393
Iterations: 20
Function evaluations: 201
Gradient evaluations: 19
Iteration: 1, Func. Count: 12, Neg. LLF: 127.87029214365312
Iteration: 2, Func. Count: 24, Neg. LLF: 131.22860863808486
Iteration: 3, Func. Count: 36, Neg. LLF: 131.6126842222433
Iteration: 4, Func. Count: 49, Neg. LLF: 124.11774021692625
Iteration: 5, Func. Count: 60, Neg. LLF: 124.78122487520007
Iteration: 6, Func. Count: 72, Neg. LLF: 128.54516659376588
Iteration: 7, Func. Count: 85, Neg. LLF: 122.90395546205758
Iteration: 8, Func. Count: 96, Neg. LLF: 122.84835128975068
Iteration: 9, Func. Count: 108, Neg. LLF: 122.24278938532605
Iteration: 10, Func. Count: 119, Neg. LLF: 122.23563897851695
Iteration: 11, Func. Count: 131, Neg. LLF: 122.17853633980462
Iteration: 12, Func. Count: 142, Neg. LLF: 122.1731182362739
Iteration: 13, Func. Count: 153, Neg. LLF: 122.16923266165763
Iteration: 14, Func. Count: 164, Neg. LLF: 122.16878339113602
Iteration: 15, Func. Count: 175, Neg. LLF: 122.1687265164189
Iteration: 16, Func. Count: 186, Neg. LLF: 122.16872322742145
Iteration: 17, Func. Count: 196, Neg. LLF: 122.1687231441517
Optimization terminated successfully (Exit mode 0)
Current function value: 122.16872322742145
Iterations: 17
Function evaluations: 196
Gradient evaluations: 17
Iteration: 1, Func. Count: 9, Neg. LLF: 131.7141172694299
Iteration: 2, Func. Count: 18, Neg. LLF: 155.03198071972162
Iteration: 3, Func. Count: 27, Neg. LLF: 125.05293293311712
Iteration: 4, Func. Count: 35, Neg. LLF: 125.44020042112713
Iteration: 5, Func. Count: 46, Neg. LLF: 126.51217558298592
Iteration: 6, Func. Count: 55, Neg. LLF: 124.40063959207886
Iteration: 7, Func. Count: 63, Neg. LLF: 124.3584749524872
Iteration: 8, Func. Count: 71, Neg. LLF: 124.34684146254193
Iteration: 9, Func. Count: 79, Neg. LLF: 124.33788929701693
Iteration: 10, Func. Count: 87, Neg. LLF: 124.3351070090011
Iteration: 11, Func. Count: 95, Neg. LLF: 124.33292238754682
Iteration: 12, Func. Count: 103, Neg. LLF: 124.33283320140048
Iteration: 13, Func. Count: 111, Neg. LLF: 124.33283053682472
Iteration: 14, Func. Count: 118, Neg. LLF: 124.33283078426271
Optimization terminated successfully (Exit mode 0)
Current function value: 124.33283053682472
Iterations: 14
Function evaluations: 118
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 128.7324506439533
Iteration: 2, Func. Count: 21, Neg. LLF: 128.1867721700277
Iteration: 3, Func. Count: 31, Neg. LLF: 125.09493360098803
Iteration: 4, Func. Count: 40, Neg. LLF: 125.11071684528675
Iteration: 5, Func. Count: 50, Neg. LLF: 124.44622928521841
Iteration: 6, Func. Count: 59, Neg. LLF: 124.35758862359391
Iteration: 7, Func. Count: 68, Neg. LLF: 124.34397991907274
Iteration: 8, Func. Count: 77, Neg. LLF: 124.33712832385882
Iteration: 9, Func. Count: 86, Neg. LLF: 124.33398326339295
Iteration: 10, Func. Count: 95, Neg. LLF: 124.33345446335478
Iteration: 11, Func. Count: 104, Neg. LLF: 124.3331853730829
Iteration: 12, Func. Count: 113, Neg. LLF: 124.33284513640507
Iteration: 13, Func. Count: 122, Neg. LLF: 124.33283137515322
Iteration: 14, Func. Count: 131, Neg. LLF: 124.33283053569065
Optimization terminated successfully (Exit mode 0)
Current function value: 124.33283053569065
Iterations: 14
Function evaluations: 131
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 128.20873038247979
Iteration: 2, Func. Count: 23, Neg. LLF: 129.297157570379
Iteration: 3, Func. Count: 34, Neg. LLF: 125.04570994959322
Iteration: 4, Func. Count: 44, Neg. LLF: 125.02314166649036
Iteration: 5, Func. Count: 55, Neg. LLF: 126.45346643778615
Iteration: 6, Func. Count: 66, Neg. LLF: 124.91914317921382
Iteration: 7, Func. Count: 76, Neg. LLF: 124.86823321265886
Iteration: 8, Func. Count: 86, Neg. LLF: 124.41043822286318
Iteration: 9, Func. Count: 96, Neg. LLF: 124.35653851492712
Iteration: 10, Func. Count: 106, Neg. LLF: 124.34209763086261
Iteration: 11, Func. Count: 116, Neg. LLF: 124.33616833779135
Iteration: 12, Func. Count: 126, Neg. LLF: 124.3341726955669
Iteration: 13, Func. Count: 136, Neg. LLF: 124.33328886204868
Iteration: 14, Func. Count: 146, Neg. LLF: 124.3329098222494
Iteration: 15, Func. Count: 156, Neg. LLF: 124.33285406007991
Iteration: 16, Func. Count: 166, Neg. LLF: 124.33284489476996
Iteration: 17, Func. Count: 176, Neg. LLF: 124.3328365838131
Iteration: 18, Func. Count: 186, Neg. LLF: 124.33283203201174
Iteration: 19, Func. Count: 196, Neg. LLF: 124.3328307012302
Iteration: 20, Func. Count: 205, Neg. LLF: 124.33283074699412
Optimization terminated successfully (Exit mode 0)
Current function value: 124.3328307012302
Iterations: 20
Function evaluations: 205
Gradient evaluations: 20
Iteration: 1, Func. Count: 12, Neg. LLF: 127.69779456025945
Iteration: 2, Func. Count: 25, Neg. LLF: 130.73872228229604
Iteration: 3, Func. Count: 37, Neg. LLF: 124.49787986911447
Iteration: 4, Func. Count: 48, Neg. LLF: 124.39947923732521
Iteration: 5, Func. Count: 59, Neg. LLF: 130.2821351207466
Iteration: 6, Func. Count: 71, Neg. LLF: 123.71354776225911
Iteration: 7, Func. Count: 82, Neg. LLF: 123.62507852884661
Iteration: 8, Func. Count: 93, Neg. LLF: 123.33172796165427
Iteration: 9, Func. Count: 104, Neg. LLF: 123.26140278973186
Iteration: 10, Func. Count: 115, Neg. LLF: 123.25315087283128
Iteration: 11, Func. Count: 126, Neg. LLF: 123.25261775845998
Iteration: 12, Func. Count: 137, Neg. LLF: 123.25250424120081
Iteration: 13, Func. Count: 148, Neg. LLF: 123.25248414977226
Iteration: 14, Func. Count: 159, Neg. LLF: 123.25248237187004
Iteration: 15, Func. Count: 169, Neg. LLF: 123.25248230891597
Optimization terminated successfully (Exit mode 0)
Current function value: 123.25248237187004
Iterations: 15
Function evaluations: 169
Gradient evaluations: 15
Iteration: 1, Func. Count: 13, Neg. LLF: 127.93765037900602
Iteration: 2, Func. Count: 26, Neg. LLF: 130.96226630745153
Iteration: 3, Func. Count: 39, Neg. LLF: 130.14019904899683
Iteration: 4, Func. Count: 53, Neg. LLF: 123.9434649938017
Iteration: 5, Func. Count: 65, Neg. LLF: 172.09003167878296
Iteration: 6, Func. Count: 79, Neg. LLF: 123.46255093984634
Iteration: 7, Func. Count: 91, Neg. LLF: 122.4484622240383
Iteration: 8, Func. Count: 103, Neg. LLF: 122.64870601499385
Iteration: 9, Func. Count: 116, Neg. LLF: 121.91001649544157
Iteration: 10, Func. Count: 128, Neg. LLF: 121.88597132536681
Iteration: 11, Func. Count: 141, Neg. LLF: 121.51394312371802
Iteration: 12, Func. Count: 153, Neg. LLF: 121.30471059558366
Iteration: 13, Func. Count: 165, Neg. LLF: 121.18103775231772
Iteration: 14, Func. Count: 177, Neg. LLF: 121.1176070466043
Iteration: 15, Func. Count: 189, Neg. LLF: 121.10142924412077
Iteration: 16, Func. Count: 201, Neg. LLF: 121.09728265404046
Iteration: 17, Func. Count: 213, Neg. LLF: 121.09550137207535
Iteration: 18, Func. Count: 225, Neg. LLF: 121.09562675614056
Iteration: 19, Func. Count: 237, Neg. LLF: 121.09464461442188
Iteration: 20, Func. Count: 249, Neg. LLF: 121.09460511819285
Iteration: 21, Func. Count: 261, Neg. LLF: 121.10499163494062
Iteration: 22, Func. Count: 275, Neg. LLF: 121.09461129684067
Optimization terminated successfully (Exit mode 0)
Current function value: 121.0946013471223
Iterations: 23
Function evaluations: 276
Gradient evaluations: 22
Iteration: 1, Func. Count: 10, Neg. LLF: 131.81111242211713
Iteration: 2, Func. Count: 20, Neg. LLF: 155.22671473075007
Iteration: 3, Func. Count: 30, Neg. LLF: 125.05286425184343
Iteration: 4, Func. Count: 39, Neg. LLF: 125.45146877339572
Iteration: 5, Func. Count: 51, Neg. LLF: 126.51655752677429
Iteration: 6, Func. Count: 61, Neg. LLF: 124.40130648225279
Iteration: 7, Func. Count: 70, Neg. LLF: 124.35881640257155
Iteration: 8, Func. Count: 79, Neg. LLF: 124.34700522950162
Iteration: 9, Func. Count: 88, Neg. LLF: 124.33793570057553
Iteration: 10, Func. Count: 97, Neg. LLF: 124.33511659261764
Iteration: 11, Func. Count: 106, Neg. LLF: 124.33291682876862
Iteration: 12, Func. Count: 115, Neg. LLF: 124.33283314166874
Iteration: 13, Func. Count: 124, Neg. LLF: 124.33283053723163
Iteration: 14, Func. Count: 132, Neg. LLF: 124.3328307144844
Optimization terminated successfully (Exit mode 0)
Current function value: 124.33283053723163
Iterations: 14
Function evaluations: 132
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 128.7362242189315
Iteration: 2, Func. Count: 23, Neg. LLF: 128.19727960151766
Iteration: 3, Func. Count: 34, Neg. LLF: 125.10037405615765
Iteration: 4, Func. Count: 44, Neg. LLF: 125.04359350135402
Iteration: 5, Func. Count: 55, Neg. LLF: 124.45481828280592
Iteration: 6, Func. Count: 65, Neg. LLF: 124.36175547879921
Iteration: 7, Func. Count: 75, Neg. LLF: 124.34385996317265
Iteration: 8, Func. Count: 85, Neg. LLF: 124.33751218236615
Iteration: 9, Func. Count: 95, Neg. LLF: 124.33390732613462
Iteration: 10, Func. Count: 105, Neg. LLF: 124.33352043346889
Iteration: 11, Func. Count: 115, Neg. LLF: 124.33299557343413
Iteration: 12, Func. Count: 125, Neg. LLF: 124.33286017374544
Iteration: 13, Func. Count: 135, Neg. LLF: 124.33283159755499
Iteration: 14, Func. Count: 145, Neg. LLF: 124.33283055413759
Iteration: 15, Func. Count: 154, Neg. LLF: 124.33283059135677
Optimization terminated successfully (Exit mode 0)
Current function value: 124.33283055413759
Iterations: 15
Function evaluations: 154
Gradient evaluations: 15
Iteration: 1, Func. Count: 12, Neg. LLF: 128.1950033155101
Iteration: 2, Func. Count: 25, Neg. LLF: 129.32883566817029
Iteration: 3, Func. Count: 37, Neg. LLF: 125.04693384491898
Iteration: 4, Func. Count: 48, Neg. LLF: 125.01635508438413
Iteration: 5, Func. Count: 60, Neg. LLF: 126.61829430543871
Iteration: 6, Func. Count: 72, Neg. LLF: 124.92085510300232
Iteration: 7, Func. Count: 83, Neg. LLF: 124.87576669290796
Iteration: 8, Func. Count: 94, Neg. LLF: 124.41670052816063
Iteration: 9, Func. Count: 105, Neg. LLF: 124.35483225961585
Iteration: 10, Func. Count: 116, Neg. LLF: 124.34202444068873
Iteration: 11, Func. Count: 127, Neg. LLF: 124.33549657517742
Iteration: 12, Func. Count: 138, Neg. LLF: 124.33403325824786
Iteration: 13, Func. Count: 149, Neg. LLF: 124.3332076861003
Iteration: 14, Func. Count: 160, Neg. LLF: 124.33289779424271
Iteration: 15, Func. Count: 171, Neg. LLF: 124.332849617189
Iteration: 16, Func. Count: 182, Neg. LLF: 124.33284231536382
Iteration: 17, Func. Count: 193, Neg. LLF: 124.33283573139529
Iteration: 18, Func. Count: 204, Neg. LLF: 124.33283238427016
Iteration: 19, Func. Count: 215, Neg. LLF: 124.33283105802924
Iteration: 20, Func. Count: 225, Neg. LLF: 124.3328311037964
Optimization terminated successfully (Exit mode 0)
Current function value: 124.33283105802924
Iterations: 20
Function evaluations: 225
Gradient evaluations: 20
Iteration: 1, Func. Count: 13, Neg. LLF: 127.64427179815355
Iteration: 2, Func. Count: 27, Neg. LLF: 130.79479879355884
Iteration: 3, Func. Count: 40, Neg. LLF: 124.47914918040793
Iteration: 4, Func. Count: 52, Neg. LLF: 124.39737520567223
Iteration: 5, Func. Count: 64, Neg. LLF: 126.76099595824681
Iteration: 6, Func. Count: 77, Neg. LLF: 123.48665480003
Iteration: 7, Func. Count: 89, Neg. LLF: 123.7301182930522
Iteration: 8, Func. Count: 102, Neg. LLF: 123.33334754944948
Iteration: 9, Func. Count: 114, Neg. LLF: 123.29169080691537
Iteration: 10, Func. Count: 126, Neg. LLF: 123.2651271328224
Iteration: 11, Func. Count: 138, Neg. LLF: 123.25675835505531
Iteration: 12, Func. Count: 150, Neg. LLF: 123.25391404948414
Iteration: 13, Func. Count: 162, Neg. LLF: 123.25253617260667
Iteration: 14, Func. Count: 174, Neg. LLF: 123.25248727275302
Iteration: 15, Func. Count: 186, Neg. LLF: 123.25248423681575
Iteration: 16, Func. Count: 198, Neg. LLF: 123.25248402943892
Optimization terminated successfully (Exit mode 0)
Current function value: 123.25248402943892
Iterations: 16
Function evaluations: 198
Gradient evaluations: 16
Iteration: 1, Func. Count: 14, Neg. LLF: 127.81462616528873
Iteration: 2, Func. Count: 29, Neg. LLF: 131.37838842031368
Iteration: 3, Func. Count: 43, Neg. LLF: 124.84620227051651
Iteration: 4, Func. Count: 57, Neg. LLF: 124.12682066209383
Iteration: 5, Func. Count: 70, Neg. LLF: 138.9810956616901
Iteration: 6, Func. Count: 84, Neg. LLF: 124.24486674354608
Iteration: 7, Func. Count: 98, Neg. LLF: 122.76941419992696
Iteration: 8, Func. Count: 111, Neg. LLF: 122.20006968467864
Iteration: 9, Func. Count: 124, Neg. LLF: 123.96072207099
Iteration: 10, Func. Count: 138, Neg. LLF: 121.55556444246841
Iteration: 11, Func. Count: 151, Neg. LLF: 121.21133620904187
Iteration: 12, Func. Count: 164, Neg. LLF: 121.1169975624401
Iteration: 13, Func. Count: 177, Neg. LLF: 121.1020436879963
Iteration: 14, Func. Count: 190, Neg. LLF: 121.09609672349067
Iteration: 15, Func. Count: 203, Neg. LLF: 121.09530296971444
Iteration: 16, Func. Count: 216, Neg. LLF: 121.09587404838388
Iteration: 17, Func. Count: 230, Neg. LLF: 121.1048179845285
Iteration: 18, Func. Count: 244, Neg. LLF: 121.09468116190548
Iteration: 19, Func. Count: 257, Neg. LLF: 121.09788573263249
Iteration: 20, Func. Count: 271, Neg. LLF: 121.09464138853114
Iteration: 21, Func. Count: 285, Neg. LLF: 121.09474594233602
Iteration: 22, Func. Count: 298, Neg. LLF: 121.09460103782816
Optimization terminated successfully (Exit mode 0)
Current function value: 121.09460114576282
Iterations: 23
Function evaluations: 298
Gradient evaluations: 22
Iteration: 1, Func. Count: 11, Neg. LLF: 131.96268389839628
Iteration: 2, Func. Count: 22, Neg. LLF: 155.39756402896185
Iteration: 3, Func. Count: 33, Neg. LLF: 125.04115883689123
Iteration: 4, Func. Count: 43, Neg. LLF: 125.44997429370804
Iteration: 5, Func. Count: 56, Neg. LLF: 126.47688475624349
Iteration: 6, Func. Count: 67, Neg. LLF: 124.40095927137382
Iteration: 7, Func. Count: 77, Neg. LLF: 124.3587217913385
Iteration: 8, Func. Count: 87, Neg. LLF: 124.34696589775695
Iteration: 9, Func. Count: 97, Neg. LLF: 124.33787787791202
Iteration: 10, Func. Count: 107, Neg. LLF: 124.33504169571587
Iteration: 11, Func. Count: 117, Neg. LLF: 124.33290322589016
Iteration: 12, Func. Count: 127, Neg. LLF: 124.33283279212071
Iteration: 13, Func. Count: 137, Neg. LLF: 124.33283054322169
Iteration: 14, Func. Count: 146, Neg. LLF: 124.33283077226953
Optimization terminated successfully (Exit mode 0)
Current function value: 124.33283054322169
Iterations: 14
Function evaluations: 146
Gradient evaluations: 14
Iteration: 1, Func. Count: 12, Neg. LLF: 128.69657848709016
Iteration: 2, Func. Count: 25, Neg. LLF: 128.239532829098
Iteration: 3, Func. Count: 37, Neg. LLF: 125.10026117207208
Iteration: 4, Func. Count: 48, Neg. LLF: 125.10924882958108
Iteration: 5, Func. Count: 60, Neg. LLF: 124.45900042603948
Iteration: 6, Func. Count: 71, Neg. LLF: 124.37005978110967
Iteration: 7, Func. Count: 82, Neg. LLF: 124.35003977915568
Iteration: 8, Func. Count: 93, Neg. LLF: 124.33908275169043
Iteration: 9, Func. Count: 104, Neg. LLF: 124.33405766173391
Iteration: 10, Func. Count: 115, Neg. LLF: 124.33353719882584
Iteration: 11, Func. Count: 126, Neg. LLF: 124.33315537805224
Iteration: 12, Func. Count: 137, Neg. LLF: 124.33292391136546
Iteration: 13, Func. Count: 148, Neg. LLF: 124.33284022480274
Iteration: 14, Func. Count: 159, Neg. LLF: 124.33283083939087
Iteration: 15, Func. Count: 169, Neg. LLF: 124.33283087665242
Optimization terminated successfully (Exit mode 0)
Current function value: 124.33283083939087
Iterations: 15
Function evaluations: 169
Gradient evaluations: 15
Iteration: 1, Func. Count: 13, Neg. LLF: 128.20915367427307
Iteration: 2, Func. Count: 27, Neg. LLF: 129.3133756494771
Iteration: 3, Func. Count: 40, Neg. LLF: 125.04891047018731
Iteration: 4, Func. Count: 52, Neg. LLF: 124.9669787187006
Iteration: 5, Func. Count: 64, Neg. LLF: 127.25229008699426
Iteration: 6, Func. Count: 77, Neg. LLF: 124.92295234471958
Iteration: 7, Func. Count: 89, Neg. LLF: 124.880410680488
Iteration: 8, Func. Count: 101, Neg. LLF: 124.7844420195176
Iteration: 9, Func. Count: 113, Neg. LLF: 124.67077988361201
Iteration: 10, Func. Count: 125, Neg. LLF: 124.41427532436761
Iteration: 11, Func. Count: 137, Neg. LLF: 124.39447074499465
Iteration: 12, Func. Count: 149, Neg. LLF: 124.33916871925967
Iteration: 13, Func. Count: 161, Neg. LLF: 124.33434228356592
Iteration: 14, Func. Count: 173, Neg. LLF: 124.33298003886733
Iteration: 15, Func. Count: 185, Neg. LLF: 124.33293192673463
Iteration: 16, Func. Count: 197, Neg. LLF: 124.3328747492554
Iteration: 17, Func. Count: 209, Neg. LLF: 124.37745561709944
Iteration: 18, Func. Count: 223, Neg. LLF: 124.33365639210106
Iteration: 19, Func. Count: 236, Neg. LLF: 124.33295501793312
Iteration: 20, Func. Count: 249, Neg. LLF: 124.33283082727851
Iteration: 21, Func. Count: 260, Neg. LLF: 124.33283087304306
Optimization terminated successfully (Exit mode 0)
Current function value: 124.33283082727851
Iterations: 22
Function evaluations: 260
Gradient evaluations: 21
Iteration: 1, Func. Count: 14, Neg. LLF: 127.72987459486592
Iteration: 2, Func. Count: 29, Neg. LLF: 130.69028638037298
Iteration: 3, Func. Count: 43, Neg. LLF: 124.49653126189955
Iteration: 4, Func. Count: 56, Neg. LLF: 124.41881350202294
Iteration: 5, Func. Count: 69, Neg. LLF: 127.56575330931292
Iteration: 6, Func. Count: 83, Neg. LLF: 123.47568282388859
Iteration: 7, Func. Count: 96, Neg. LLF: 124.06285263887212
Iteration: 8, Func. Count: 110, Neg. LLF: 123.32904568646924
Iteration: 9, Func. Count: 123, Neg. LLF: 123.29063004215224
Iteration: 10, Func. Count: 136, Neg. LLF: 123.26517451629822
Iteration: 11, Func. Count: 149, Neg. LLF: 123.25648313846156
Iteration: 12, Func. Count: 162, Neg. LLF: 123.2530305911167
Iteration: 13, Func. Count: 175, Neg. LLF: 123.25262209162688
Iteration: 14, Func. Count: 188, Neg. LLF: 123.25245391810739
Iteration: 15, Func. Count: 201, Neg. LLF: 123.25248312525545
Iteration: 16, Func. Count: 214, Neg. LLF: 123.25246531910251
Iteration: 17, Func. Count: 229, Neg. LLF: 123.2524820202265
Iteration: 18, Func. Count: 242, Neg. LLF: 123.25246054483966
Optimization terminated successfully (Exit mode 0)
Current function value: 123.25248200053882
Iterations: 18
Function evaluations: 252
Gradient evaluations: 18
Iteration: 1, Func. Count: 15, Neg. LLF: 127.82946684784588
Iteration: 2, Func. Count: 31, Neg. LLF: 131.306437692065
Iteration: 3, Func. Count: 46, Neg. LLF: 124.8866981440432
Iteration: 4, Func. Count: 61, Neg. LLF: 124.08786873135158
Iteration: 5, Func. Count: 75, Neg. LLF: 132.77028680714685
Iteration: 6, Func. Count: 91, Neg. LLF: 124.88004963798593
Iteration: 7, Func. Count: 106, Neg. LLF: 123.24198868242912
Iteration: 8, Func. Count: 120, Neg. LLF: 122.16084079864046
Iteration: 9, Func. Count: 134, Neg. LLF: 122.06515499618875
Iteration: 10, Func. Count: 148, Neg. LLF: 121.8065026061942
Iteration: 11, Func. Count: 162, Neg. LLF: 121.60891388401052
Iteration: 12, Func. Count: 176, Neg. LLF: 121.28185843015467
Iteration: 13, Func. Count: 190, Neg. LLF: 121.19211449060654
Iteration: 14, Func. Count: 204, Neg. LLF: 121.12817354428617
Iteration: 15, Func. Count: 218, Neg. LLF: 121.10185782815127
Iteration: 16, Func. Count: 232, Neg. LLF: 121.09783958731512
Iteration: 17, Func. Count: 246, Neg. LLF: 121.09811068127344
Optimization terminated successfully (Exit mode 0)
Current function value: 121.09783987693613
Iterations: 17
Function evaluations: 248
Gradient evaluations: 17
Iteration: 1, Func. Count: 8, Neg. LLF: 136.62374465883323
Iteration: 2, Func. Count: 16, Neg. LLF: 157.8260981834123
Iteration: 3, Func. Count: 24, Neg. LLF: 125.23320420873432
Iteration: 4, Func. Count: 31, Neg. LLF: 125.13939111685046
Iteration: 5, Func. Count: 38, Neg. LLF: 125.07914625417546
Iteration: 6, Func. Count: 45, Neg. LLF: 125.04821517823119
Iteration: 7, Func. Count: 52, Neg. LLF: 125.01598222815355
Iteration: 8, Func. Count: 59, Neg. LLF: 125.01473676990355
Iteration: 9, Func. Count: 66, Neg. LLF: 125.01397741744078
Iteration: 10, Func. Count: 73, Neg. LLF: 125.01392586384009
Iteration: 11, Func. Count: 80, Neg. LLF: 125.01391950071314
Iteration: 12, Func. Count: 86, Neg. LLF: 125.01391980430807
Optimization terminated successfully (Exit mode 0)
Current function value: 125.01391950071314
Iterations: 12
Function evaluations: 86
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 165.8373884158088
Iteration: 2, Func. Count: 19, Neg. LLF: 125.50207968317808
Iteration: 3, Func. Count: 27, Neg. LLF: 125.50004109868199
Iteration: 4, Func. Count: 35, Neg. LLF: 125.49924554659924
Iteration: 5, Func. Count: 43, Neg. LLF: 125.49921178446311
Iteration: 6, Func. Count: 51, Neg. LLF: 125.49910670405532
Iteration: 7, Func. Count: 59, Neg. LLF: 125.49884876711552
Iteration: 8, Func. Count: 67, Neg. LLF: 125.49815586734672
Iteration: 9, Func. Count: 75, Neg. LLF: 125.49648749483381
Iteration: 10, Func. Count: 83, Neg. LLF: 125.4933169583795
Iteration: 11, Func. Count: 91, Neg. LLF: 125.48983267154388
Iteration: 12, Func. Count: 99, Neg. LLF: 125.48787240216703
Iteration: 13, Func. Count: 107, Neg. LLF: 125.47894590959855
Iteration: 14, Func. Count: 115, Neg. LLF: 125.47124879796051
Iteration: 15, Func. Count: 123, Neg. LLF: 125.46457753795522
Iteration: 16, Func. Count: 131, Neg. LLF: 125.45655696794059
Iteration: 17, Func. Count: 139, Neg. LLF: 125.44375678970114
Iteration: 18, Func. Count: 147, Neg. LLF: 125.41629045842731
Iteration: 19, Func. Count: 155, Neg. LLF: 125.36313819972585
Iteration: 20, Func. Count: 163, Neg. LLF: 125.25163092149411
Iteration: 21, Func. Count: 171, Neg. LLF: 129.61651669549042
Iteration: 22, Func. Count: 181, Neg. LLF: 125.09541914156883
Iteration: 23, Func. Count: 189, Neg. LLF: 125.44601469553106
Iteration: 24, Func. Count: 198, Neg. LLF: 125.04044491687387
Iteration: 25, Func. Count: 206, Neg. LLF: 125.02702386191817
Iteration: 26, Func. Count: 214, Neg. LLF: 125.01659452253972
Iteration: 27, Func. Count: 222, Neg. LLF: 125.01412158384572
Iteration: 28, Func. Count: 230, Neg. LLF: 125.01392004169787
Iteration: 29, Func. Count: 238, Neg. LLF: 125.01391947252358
Optimization terminated successfully (Exit mode 0)
Current function value: 125.01391947252358
Iterations: 30
Function evaluations: 238
Gradient evaluations: 29
Iteration: 1, Func. Count: 10, Neg. LLF: 157.94212241572004
Iteration: 2, Func. Count: 21, Neg. LLF: 125.50604974876376
Iteration: 3, Func. Count: 30, Neg. LLF: 125.50519965107836
Iteration: 4, Func. Count: 40, Neg. LLF: 125.50319648920697
Iteration: 5, Func. Count: 49, Neg. LLF: 125.5030732297369
Iteration: 6, Func. Count: 58, Neg. LLF: 125.50228787878757
Iteration: 7, Func. Count: 67, Neg. LLF: 125.49889007094518
Iteration: 8, Func. Count: 76, Neg. LLF: 125.49873533316551
Iteration: 9, Func. Count: 85, Neg. LLF: 125.49867042723797
Iteration: 10, Func. Count: 94, Neg. LLF: 125.49860478786647
Iteration: 11, Func. Count: 103, Neg. LLF: 125.49833324052739
Iteration: 12, Func. Count: 112, Neg. LLF: 125.49769398811115
Iteration: 13, Func. Count: 121, Neg. LLF: 125.49587748818666
Iteration: 14, Func. Count: 130, Neg. LLF: 125.49199600272938
Iteration: 15, Func. Count: 139, Neg. LLF: 125.49033034714827
Iteration: 16, Func. Count: 148, Neg. LLF: 125.48760567953703
Iteration: 17, Func. Count: 157, Neg. LLF: 125.47813590118717
Iteration: 18, Func. Count: 166, Neg. LLF: 125.47128910796306
Iteration: 19, Func. Count: 175, Neg. LLF: 125.46855275436366
Iteration: 20, Func. Count: 184, Neg. LLF: 125.45537426292378
Iteration: 21, Func. Count: 193, Neg. LLF: 125.43167682249462
Iteration: 22, Func. Count: 202, Neg. LLF: 125.39055931368489
Iteration: 23, Func. Count: 211, Neg. LLF: 127.82796351990085
Iteration: 24, Func. Count: 222, Neg. LLF: 125.26948131695961
Iteration: 25, Func. Count: 231, Neg. LLF: 126.05287250896842
Iteration: 26, Func. Count: 241, Neg. LLF: 125.08917190733719
Iteration: 27, Func. Count: 250, Neg. LLF: 125.05413914751296
Iteration: 28, Func. Count: 259, Neg. LLF: 125.0245150931628
Iteration: 29, Func. Count: 268, Neg. LLF: 125.01559722419081
Iteration: 30, Func. Count: 277, Neg. LLF: 125.01397910853662
Iteration: 31, Func. Count: 286, Neg. LLF: 125.01392251835306
Iteration: 32, Func. Count: 295, Neg. LLF: 125.0139194591091
Iteration: 33, Func. Count: 303, Neg. LLF: 125.01391955332899
Optimization terminated successfully (Exit mode 0)
Current function value: 125.0139194591091
Iterations: 34
Function evaluations: 303
Gradient evaluations: 33
Iteration: 1, Func. Count: 11, Neg. LLF: 153.00527290882013
Iteration: 2, Func. Count: 23, Neg. LLF: 125.50786033023219
Iteration: 3, Func. Count: 33, Neg. LLF: 125.50722831696251
Iteration: 4, Func. Count: 44, Neg. LLF: 125.50406292772067
Iteration: 5, Func. Count: 54, Neg. LLF: 125.50405449925636
Iteration: 6, Func. Count: 64, Neg. LLF: 125.50400006721279
Iteration: 7, Func. Count: 74, Neg. LLF: 125.50362751246085
Iteration: 8, Func. Count: 84, Neg. LLF: 125.49824568051578
Iteration: 9, Func. Count: 94, Neg. LLF: 125.49728174777475
Iteration: 10, Func. Count: 104, Neg. LLF: 125.49387847492258
Iteration: 11, Func. Count: 114, Neg. LLF: 125.49306762923015
Iteration: 12, Func. Count: 124, Neg. LLF: 125.49243631569314
Iteration: 13, Func. Count: 134, Neg. LLF: 125.48053562698415
Iteration: 14, Func. Count: 144, Neg. LLF: 125.47506034004124
Iteration: 15, Func. Count: 154, Neg. LLF: 125.44506848309939
Iteration: 16, Func. Count: 164, Neg. LLF: 125.33541365288269
Iteration: 17, Func. Count: 174, Neg. LLF: 125.24886263834672
Iteration: 18, Func. Count: 184, Neg. LLF: 125.13692686032651
Iteration: 19, Func. Count: 194, Neg. LLF: 126.73272519902972
Iteration: 20, Func. Count: 206, Neg. LLF: 125.529986227707
Iteration: 21, Func. Count: 217, Neg. LLF: 125.06526498813632
Iteration: 22, Func. Count: 227, Neg. LLF: 125.03243601822717
Iteration: 23, Func. Count: 237, Neg. LLF: 125.02402722423781
Iteration: 24, Func. Count: 247, Neg. LLF: 125.01462000852285
Iteration: 25, Func. Count: 257, Neg. LLF: 125.01394415342115
Iteration: 26, Func. Count: 267, Neg. LLF: 125.01391961504952
Iteration: 27, Func. Count: 276, Neg. LLF: 125.01391972373881
Optimization terminated successfully (Exit mode 0)
Current function value: 125.01391961504952
Iterations: 28
Function evaluations: 276
Gradient evaluations: 27
Iteration: 1, Func. Count: 12, Neg. LLF: 127.83087448128052
Iteration: 2, Func. Count: 26, Neg. LLF: 125.84045667492832
Iteration: 3, Func. Count: 38, Neg. LLF: 124.93904195374219
Iteration: 4, Func. Count: 49, Neg. LLF: 125.89381634768907
Iteration: 5, Func. Count: 61, Neg. LLF: 124.22662928574945
Iteration: 6, Func. Count: 72, Neg. LLF: 123.0574563350372
Iteration: 7, Func. Count: 83, Neg. LLF: 121.94434050123122
Iteration: 8, Func. Count: 94, Neg. LLF: 121.47139199248849
Iteration: 9, Func. Count: 105, Neg. LLF: 121.42120138266678
Iteration: 10, Func. Count: 116, Neg. LLF: 121.24679761456946
Iteration: 11, Func. Count: 127, Neg. LLF: 121.14882382206429
Iteration: 12, Func. Count: 138, Neg. LLF: 121.13402551391925
Iteration: 13, Func. Count: 149, Neg. LLF: 121.13402039681672
Iteration: 14, Func. Count: 160, Neg. LLF: 121.13424132758203
Iteration: 15, Func. Count: 172, Neg. LLF: 121.13424585358842
Optimization terminated successfully (Exit mode 0)
Current function value: 121.1340179938545
Iterations: 16
Function evaluations: 174
Gradient evaluations: 15
Iteration: 1, Func. Count: 9, Neg. LLF: 130.18814200115557
Iteration: 2, Func. Count: 18, Neg. LLF: 150.51110050944106
Iteration: 3, Func. Count: 27, Neg. LLF: 125.53736735390638
Iteration: 4, Func. Count: 36, Neg. LLF: 124.60729450244395
Iteration: 5, Func. Count: 44, Neg. LLF: 124.75248185621196
Iteration: 6, Func. Count: 54, Neg. LLF: 124.3592835635945
Iteration: 7, Func. Count: 62, Neg. LLF: 124.34442649072943
Iteration: 8, Func. Count: 70, Neg. LLF: 124.34017841878703
Iteration: 9, Func. Count: 78, Neg. LLF: 124.3381745202415
Iteration: 10, Func. Count: 86, Neg. LLF: 124.33648752593349
Iteration: 11, Func. Count: 94, Neg. LLF: 124.33469309864249
Iteration: 12, Func. Count: 102, Neg. LLF: 124.33322794731112
Iteration: 13, Func. Count: 110, Neg. LLF: 124.33286960867122
Iteration: 14, Func. Count: 118, Neg. LLF: 124.33283089808677
Iteration: 15, Func. Count: 125, Neg. LLF: 124.33283089807887
Optimization terminated successfully (Exit mode 0)
Current function value: 124.33283089808677
Iterations: 15
Function evaluations: 125
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 128.6094602562872
Iteration: 2, Func. Count: 21, Neg. LLF: 128.38213040553165
Iteration: 3, Func. Count: 31, Neg. LLF: 125.08781296839514
Iteration: 4, Func. Count: 40, Neg. LLF: 125.04913901875753
Iteration: 5, Func. Count: 50, Neg. LLF: 124.44157921564926
Iteration: 6, Func. Count: 59, Neg. LLF: 124.38446590116769
Iteration: 7, Func. Count: 68, Neg. LLF: 124.34746608945437
Iteration: 8, Func. Count: 77, Neg. LLF: 124.3345626280114
Iteration: 9, Func. Count: 86, Neg. LLF: 124.33360389457697
Iteration: 10, Func. Count: 95, Neg. LLF: 124.3333345240553
Iteration: 11, Func. Count: 104, Neg. LLF: 124.33290531011278
Iteration: 12, Func. Count: 113, Neg. LLF: 124.3328389500282
Iteration: 13, Func. Count: 122, Neg. LLF: 124.3328306899042
Iteration: 14, Func. Count: 130, Neg. LLF: 124.33283072714248
Optimization terminated successfully (Exit mode 0)
Current function value: 124.3328306899042
Iterations: 14
Function evaluations: 130
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 128.10837243460307
Iteration: 2, Func. Count: 23, Neg. LLF: 129.5157500320777
Iteration: 3, Func. Count: 34, Neg. LLF: 125.05187728170657
Iteration: 4, Func. Count: 44, Neg. LLF: 125.10160691830069
Iteration: 5, Func. Count: 55, Neg. LLF: 125.73777201824142
Iteration: 6, Func. Count: 66, Neg. LLF: 124.91992842881318
Iteration: 7, Func. Count: 76, Neg. LLF: 124.86726232326644
Iteration: 8, Func. Count: 86, Neg. LLF: 124.48929710340087
Iteration: 9, Func. Count: 96, Neg. LLF: 124.40172266748436
Iteration: 10, Func. Count: 106, Neg. LLF: 124.33627788772618
Iteration: 11, Func. Count: 116, Neg. LLF: 124.33447257658375
Iteration: 12, Func. Count: 126, Neg. LLF: 124.3334528401588
Iteration: 13, Func. Count: 136, Neg. LLF: 124.33317143893174
Iteration: 14, Func. Count: 146, Neg. LLF: 124.33291185001761
Iteration: 15, Func. Count: 156, Neg. LLF: 124.33285109295197
Iteration: 16, Func. Count: 166, Neg. LLF: 124.33284018060368
Iteration: 17, Func. Count: 176, Neg. LLF: 124.33283639943514
Iteration: 18, Func. Count: 186, Neg. LLF: 124.33283165832388
Iteration: 19, Func. Count: 196, Neg. LLF: 124.33283117182572
Optimization terminated successfully (Exit mode 0)
Current function value: 124.33283117182572
Iterations: 19
Function evaluations: 196
Gradient evaluations: 19
Iteration: 1, Func. Count: 12, Neg. LLF: 127.66309000651479
Iteration: 2, Func. Count: 25, Neg. LLF: 130.84944222236027
Iteration: 3, Func. Count: 37, Neg. LLF: 124.59754336635122
Iteration: 4, Func. Count: 48, Neg. LLF: 124.41418238282031
Iteration: 5, Func. Count: 59, Neg. LLF: 128.18389722536466
Iteration: 6, Func. Count: 71, Neg. LLF: 124.04333603695027
Iteration: 7, Func. Count: 82, Neg. LLF: 123.55537805006799
Iteration: 8, Func. Count: 93, Neg. LLF: 123.46482215879475
Iteration: 9, Func. Count: 104, Neg. LLF: 123.42159911547611
Iteration: 10, Func. Count: 116, Neg. LLF: 123.2637137094273
Iteration: 11, Func. Count: 127, Neg. LLF: 123.2567266904003
Iteration: 12, Func. Count: 138, Neg. LLF: 123.25313852255064
Iteration: 13, Func. Count: 149, Neg. LLF: 123.25254480316775
Iteration: 14, Func. Count: 160, Neg. LLF: 123.25248430760568
Iteration: 15, Func. Count: 171, Neg. LLF: 123.25248218530724
Iteration: 16, Func. Count: 181, Neg. LLF: 123.25248212232665
Optimization terminated successfully (Exit mode 0)
Current function value: 123.25248218530724
Iterations: 16
Function evaluations: 181
Gradient evaluations: 16
Iteration: 1, Func. Count: 13, Neg. LLF: 127.79209061373776
Iteration: 2, Func. Count: 27, Neg. LLF: 131.65257510216964
Iteration: 3, Func. Count: 40, Neg. LLF: 124.81467759949328
Iteration: 4, Func. Count: 53, Neg. LLF: 125.41125030854401
Iteration: 5, Func. Count: 66, Neg. LLF: 123.72986753175908
Iteration: 6, Func. Count: 78, Neg. LLF: 126.25370031396199
Iteration: 7, Func. Count: 91, Neg. LLF: 122.52717152199108
Iteration: 8, Func. Count: 103, Neg. LLF: 122.29432201774208
Iteration: 9, Func. Count: 115, Neg. LLF: 122.22742193008818
Iteration: 10, Func. Count: 127, Neg. LLF: 122.2560097090505
Iteration: 11, Func. Count: 140, Neg. LLF: 122.17777907773936
Iteration: 12, Func. Count: 152, Neg. LLF: 122.17198282317067
Iteration: 13, Func. Count: 164, Neg. LLF: 122.16970865391599
Iteration: 14, Func. Count: 176, Neg. LLF: 122.16879524527123
Iteration: 15, Func. Count: 188, Neg. LLF: 122.16872516180743
Iteration: 16, Func. Count: 200, Neg. LLF: 122.16872393407579
Iteration: 17, Func. Count: 212, Neg. LLF: 122.16873099970391
Optimization terminated successfully (Exit mode 0)
Current function value: 122.16872389878608
Iterations: 18
Function evaluations: 213
Gradient evaluations: 17
Iteration: 1, Func. Count: 10, Neg. LLF: 136.37453845459842
Iteration: 2, Func. Count: 20, Neg. LLF: 157.63624262740714
Iteration: 3, Func. Count: 30, Neg. LLF: 125.12700028482294
Iteration: 4, Func. Count: 39, Neg. LLF: 125.7099747102784
Iteration: 5, Func. Count: 51, Neg. LLF: 127.00686549258022
Iteration: 6, Func. Count: 61, Neg. LLF: 124.41071277045432
Iteration: 7, Func. Count: 70, Neg. LLF: 124.36465441430404
Iteration: 8, Func. Count: 79, Neg. LLF: 124.3498229118823
Iteration: 9, Func. Count: 88, Neg. LLF: 124.3404029894053
Iteration: 10, Func. Count: 97, Neg. LLF: 124.3367190919484
Iteration: 11, Func. Count: 106, Neg. LLF: 124.33299032197496
Iteration: 12, Func. Count: 115, Neg. LLF: 124.3328321124351
Iteration: 13, Func. Count: 124, Neg. LLF: 124.33283054565447
Iteration: 14, Func. Count: 132, Neg. LLF: 124.33283079308687
Optimization terminated successfully (Exit mode 0)
Current function value: 124.33283054565447
Iterations: 14
Function evaluations: 132
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 128.70004936148564
Iteration: 2, Func. Count: 23, Neg. LLF: 128.25588704150772
Iteration: 3, Func. Count: 34, Neg. LLF: 125.09784928220233
Iteration: 4, Func. Count: 44, Neg. LLF: 125.1010114602624
Iteration: 5, Func. Count: 55, Neg. LLF: 124.45256960059083
Iteration: 6, Func. Count: 65, Neg. LLF: 124.3658746301642
Iteration: 7, Func. Count: 75, Neg. LLF: 124.35028439405406
Iteration: 8, Func. Count: 85, Neg. LLF: 124.33821032042407
Iteration: 9, Func. Count: 95, Neg. LLF: 124.33397528473652
Iteration: 10, Func. Count: 105, Neg. LLF: 124.33350099223439
Iteration: 11, Func. Count: 115, Neg. LLF: 124.33313834171628
Iteration: 12, Func. Count: 125, Neg. LLF: 124.3329149952119
Iteration: 13, Func. Count: 135, Neg. LLF: 124.33283881385712
Iteration: 14, Func. Count: 145, Neg. LLF: 124.33283078481331
Iteration: 15, Func. Count: 154, Neg. LLF: 124.33283082207005
Optimization terminated successfully (Exit mode 0)
Current function value: 124.33283078481331
Iterations: 15
Function evaluations: 154
Gradient evaluations: 15
Iteration: 1, Func. Count: 12, Neg. LLF: 128.22644561483912
Iteration: 2, Func. Count: 25, Neg. LLF: 129.30940257807939
Iteration: 3, Func. Count: 37, Neg. LLF: 125.047669059199
Iteration: 4, Func. Count: 48, Neg. LLF: 124.97171994102354
Iteration: 5, Func. Count: 59, Neg. LLF: 127.01194970052399
Iteration: 6, Func. Count: 71, Neg. LLF: 124.92220530369082
Iteration: 7, Func. Count: 82, Neg. LLF: 124.8765517797505
Iteration: 8, Func. Count: 93, Neg. LLF: 124.78994089051886
Iteration: 9, Func. Count: 104, Neg. LLF: 124.67222162630878
Iteration: 10, Func. Count: 115, Neg. LLF: 124.41411966958204
Iteration: 11, Func. Count: 126, Neg. LLF: 124.39480546233202
Iteration: 12, Func. Count: 137, Neg. LLF: 124.34207420519691
Iteration: 13, Func. Count: 148, Neg. LLF: 124.33336096657911
Iteration: 14, Func. Count: 159, Neg. LLF: 125.60381501789938
Iteration: 15, Func. Count: 173, Neg. LLF: 124.33426402837269
Iteration: 16, Func. Count: 185, Neg. LLF: 124.33320686875703
Iteration: 17, Func. Count: 197, Neg. LLF: 124.33283792618742
Iteration: 18, Func. Count: 208, Neg. LLF: 124.3328305324858
Iteration: 19, Func. Count: 218, Neg. LLF: 124.33283057827789
Optimization terminated successfully (Exit mode 0)
Current function value: 124.3328305324858
Iterations: 20
Function evaluations: 218
Gradient evaluations: 19
Iteration: 1, Func. Count: 13, Neg. LLF: 127.75615742737705
Iteration: 2, Func. Count: 27, Neg. LLF: 130.65788151854912
Iteration: 3, Func. Count: 40, Neg. LLF: 124.4976187090489
Iteration: 4, Func. Count: 52, Neg. LLF: 124.45571451163353
Iteration: 5, Func. Count: 64, Neg. LLF: 124.55379195725763
Iteration: 6, Func. Count: 77, Neg. LLF: 123.90973181579051
Iteration: 7, Func. Count: 89, Neg. LLF: 136.26822041925132
Iteration: 8, Func. Count: 102, Neg. LLF: 123.3907255178646
Iteration: 9, Func. Count: 114, Neg. LLF: 123.31870938143433
Iteration: 10, Func. Count: 126, Neg. LLF: 123.27261425364888
Iteration: 11, Func. Count: 138, Neg. LLF: 123.25646480222247
Iteration: 12, Func. Count: 150, Neg. LLF: 123.25260535092238
Iteration: 13, Func. Count: 162, Neg. LLF: 123.25248502940177
Iteration: 14, Func. Count: 174, Neg. LLF: 123.25248282560564
Iteration: 15, Func. Count: 185, Neg. LLF: 123.25248276274804
Optimization terminated successfully (Exit mode 0)
Current function value: 123.25248282560564
Iterations: 15
Function evaluations: 185
Gradient evaluations: 15
Iteration: 1, Func. Count: 14, Neg. LLF: 127.84566572161177
Iteration: 2, Func. Count: 29, Neg. LLF: 131.36356227713517
Iteration: 3, Func. Count: 43, Neg. LLF: 124.81530089442313
Iteration: 4, Func. Count: 57, Neg. LLF: 124.37976847603655
Iteration: 5, Func. Count: 70, Neg. LLF: 123.49737597572631
Iteration: 6, Func. Count: 83, Neg. LLF: 122.69408653991063
Iteration: 7, Func. Count: 96, Neg. LLF: 121.58689016781187
Iteration: 8, Func. Count: 109, Neg. LLF: 121.34024885615048
Iteration: 9, Func. Count: 122, Neg. LLF: 121.1719331393765
Iteration: 10, Func. Count: 135, Neg. LLF: 121.13843542816315
Iteration: 11, Func. Count: 148, Neg. LLF: 121.12385500735857
Iteration: 12, Func. Count: 161, Neg. LLF: 121.10830359422792
Iteration: 13, Func. Count: 174, Neg. LLF: 121.09957683856648
Iteration: 14, Func. Count: 187, Neg. LLF: 121.09471188885902
Iteration: 15, Func. Count: 200, Neg. LLF: 121.09423642103529
Iteration: 16, Func. Count: 213, Neg. LLF: 121.10049422064685
Iteration: 17, Func. Count: 228, Neg. LLF: 121.09471263706273
Iteration: 18, Func. Count: 242, Neg. LLF: 121.0946368947834
Iteration: 19, Func. Count: 256, Neg. LLF: 121.09460114781864
Iteration: 20, Func. Count: 268, Neg. LLF: 121.09460103988584
Optimization terminated successfully (Exit mode 0)
Current function value: 121.09460114781864
Iterations: 21
Function evaluations: 268
Gradient evaluations: 20
Iteration: 1, Func. Count: 11, Neg. LLF: 136.48678796493311
Iteration: 2, Func. Count: 22, Neg. LLF: 157.63474430956614
Iteration: 3, Func. Count: 33, Neg. LLF: 125.12341554579105
Iteration: 4, Func. Count: 43, Neg. LLF: 125.7182531829609
Iteration: 5, Func. Count: 56, Neg. LLF: 127.01964733205844
Iteration: 6, Func. Count: 67, Neg. LLF: 124.41099764174349
Iteration: 7, Func. Count: 77, Neg. LLF: 124.36511097207806
Iteration: 8, Func. Count: 87, Neg. LLF: 124.35012913027576
Iteration: 9, Func. Count: 97, Neg. LLF: 124.34051000722252
Iteration: 10, Func. Count: 107, Neg. LLF: 124.33671603052419
Iteration: 11, Func. Count: 117, Neg. LLF: 124.33299725095034
Iteration: 12, Func. Count: 127, Neg. LLF: 124.33283226324579
Iteration: 13, Func. Count: 137, Neg. LLF: 124.33283054749126
Iteration: 14, Func. Count: 146, Neg. LLF: 124.33283037024235
Optimization terminated successfully (Exit mode 0)
Current function value: 124.33283054749126
Iterations: 14
Function evaluations: 146
Gradient evaluations: 14
Iteration: 1, Func. Count: 12, Neg. LLF: 128.70374453119513
Iteration: 2, Func. Count: 25, Neg. LLF: 128.26647606718112
Iteration: 3, Func. Count: 37, Neg. LLF: 125.10310279153809
Iteration: 4, Func. Count: 48, Neg. LLF: 125.03699873912684
Iteration: 5, Func. Count: 60, Neg. LLF: 124.46293942846391
Iteration: 6, Func. Count: 71, Neg. LLF: 124.37043193548368
Iteration: 7, Func. Count: 82, Neg. LLF: 124.34931107434467
Iteration: 8, Func. Count: 93, Neg. LLF: 124.33882384478758
Iteration: 9, Func. Count: 104, Neg. LLF: 124.33402540583488
Iteration: 10, Func. Count: 115, Neg. LLF: 124.33353230481482
Iteration: 11, Func. Count: 126, Neg. LLF: 124.33314955857504
Iteration: 12, Func. Count: 137, Neg. LLF: 124.33292186428358
Iteration: 13, Func. Count: 148, Neg. LLF: 124.3328398284576
Iteration: 14, Func. Count: 159, Neg. LLF: 124.33283082689006
Iteration: 15, Func. Count: 169, Neg. LLF: 124.33283086414984
Optimization terminated successfully (Exit mode 0)
Current function value: 124.33283082689006
Iterations: 15
Function evaluations: 169
Gradient evaluations: 15
Iteration: 1, Func. Count: 13, Neg. LLF: 128.21102511277954
Iteration: 2, Func. Count: 27, Neg. LLF: 129.3401166484412
Iteration: 3, Func. Count: 40, Neg. LLF: 125.04947556694053
Iteration: 4, Func. Count: 52, Neg. LLF: 124.96785243679504
Iteration: 5, Func. Count: 64, Neg. LLF: 127.27792762510309
Iteration: 6, Func. Count: 77, Neg. LLF: 124.92375149939328
Iteration: 7, Func. Count: 89, Neg. LLF: 124.88084843996428
Iteration: 8, Func. Count: 101, Neg. LLF: 124.7957701606598
Iteration: 9, Func. Count: 113, Neg. LLF: 124.69186614565155
Iteration: 10, Func. Count: 125, Neg. LLF: 124.41760142018852
Iteration: 11, Func. Count: 137, Neg. LLF: 124.39675172102638
Iteration: 12, Func. Count: 149, Neg. LLF: 124.33701245432438
Iteration: 13, Func. Count: 161, Neg. LLF: 124.33344357827859
Iteration: 14, Func. Count: 173, Neg. LLF: 124.33344974027978
Iteration: 15, Func. Count: 186, Neg. LLF: 124.3330529963735
Iteration: 16, Func. Count: 198, Neg. LLF: 124.33288201562733
Iteration: 17, Func. Count: 210, Neg. LLF: 124.37683166789047
Iteration: 18, Func. Count: 224, Neg. LLF: 124.33355202673069
Iteration: 19, Func. Count: 237, Neg. LLF: 124.33305772128224
Iteration: 20, Func. Count: 250, Neg. LLF: 124.33283056108365
Iteration: 21, Func. Count: 261, Neg. LLF: 124.33283060688557
Optimization terminated successfully (Exit mode 0)
Current function value: 124.33283056108365
Iterations: 22
Function evaluations: 261
Gradient evaluations: 21
Iteration: 1, Func. Count: 14, Neg. LLF: 127.73293408258128
Iteration: 2, Func. Count: 29, Neg. LLF: 130.6985277542742
Iteration: 3, Func. Count: 43, Neg. LLF: 124.58964792387886
Iteration: 4, Func. Count: 56, Neg. LLF: 124.41039599227226
Iteration: 5, Func. Count: 69, Neg. LLF: 126.03882873411818
Iteration: 6, Func. Count: 83, Neg. LLF: 123.89392652485671
Iteration: 7, Func. Count: 96, Neg. LLF: 123.5166207040988
Iteration: 8, Func. Count: 109, Neg. LLF: 124.38684340676484
Iteration: 9, Func. Count: 123, Neg. LLF: 123.27044614888099
Iteration: 10, Func. Count: 136, Neg. LLF: 123.25501590191512
Iteration: 11, Func. Count: 149, Neg. LLF: 123.25307006038636
Iteration: 12, Func. Count: 162, Neg. LLF: 123.25258812605585
Iteration: 13, Func. Count: 175, Neg. LLF: 123.2524934859141
Iteration: 14, Func. Count: 188, Neg. LLF: 123.25248249717664
Iteration: 15, Func. Count: 200, Neg. LLF: 123.25248243406602
Optimization terminated successfully (Exit mode 0)
Current function value: 123.25248249717664
Iterations: 15
Function evaluations: 200
Gradient evaluations: 15
Iteration: 1, Func. Count: 15, Neg. LLF: 127.80622418550588
Iteration: 2, Func. Count: 31, Neg. LLF: 131.3038191331058
Iteration: 3, Func. Count: 46, Neg. LLF: 124.93903235135481
Iteration: 4, Func. Count: 61, Neg. LLF: 124.27060482161495
Iteration: 5, Func. Count: 75, Neg. LLF: 138.15091788971242
Iteration: 6, Func. Count: 90, Neg. LLF: 123.78675172759978
Iteration: 7, Func. Count: 104, Neg. LLF: 122.74469334841402
Iteration: 8, Func. Count: 118, Neg. LLF: 123.03146475132665
Iteration: 9, Func. Count: 133, Neg. LLF: 122.34508819288311
Iteration: 10, Func. Count: 147, Neg. LLF: 122.78279908997277
Iteration: 11, Func. Count: 162, Neg. LLF: 122.2075737737398
Iteration: 12, Func. Count: 176, Neg. LLF: 122.17758189495862
Iteration: 13, Func. Count: 190, Neg. LLF: 122.17155455833984
Iteration: 14, Func. Count: 204, Neg. LLF: 122.16904196479436
Iteration: 15, Func. Count: 218, Neg. LLF: 122.1687475332768
Iteration: 16, Func. Count: 232, Neg. LLF: 122.16872421704353
Iteration: 17, Func. Count: 246, Neg. LLF: 122.1687232017892
Iteration: 18, Func. Count: 259, Neg. LLF: 122.16872311842646
Optimization terminated successfully (Exit mode 0)
Current function value: 122.1687232017892
Iterations: 18
Function evaluations: 259
Gradient evaluations: 18
Iteration: 1, Func. Count: 12, Neg. LLF: 136.59018985809843
Iteration: 2, Func. Count: 24, Neg. LLF: 157.609337799669
Iteration: 3, Func. Count: 36, Neg. LLF: 125.11440395694744
Iteration: 4, Func. Count: 47, Neg. LLF: 125.71594259383632
Iteration: 5, Func. Count: 61, Neg. LLF: 127.01990056473197
Iteration: 6, Func. Count: 73, Neg. LLF: 124.41077219705286
Iteration: 7, Func. Count: 84, Neg. LLF: 124.36524523241364
Iteration: 8, Func. Count: 95, Neg. LLF: 124.35026565627756
Iteration: 9, Func. Count: 106, Neg. LLF: 124.34054435760106
Iteration: 10, Func. Count: 117, Neg. LLF: 124.33666716933993
Iteration: 11, Func. Count: 128, Neg. LLF: 124.33300542326494
Iteration: 12, Func. Count: 139, Neg. LLF: 124.33283253465117
Iteration: 13, Func. Count: 150, Neg. LLF: 124.33283054901116
Iteration: 14, Func. Count: 160, Neg. LLF: 124.33283077804919
Optimization terminated successfully (Exit mode 0)
Current function value: 124.33283054901116
Iterations: 14
Function evaluations: 160
Gradient evaluations: 14
Iteration: 1, Func. Count: 13, Neg. LLF: 128.6640020337246
Iteration: 2, Func. Count: 27, Neg. LLF: 128.3101452326765
Iteration: 3, Func. Count: 40, Neg. LLF: 125.65694752921175
Iteration: 4, Func. Count: 53, Neg. LLF: 125.38822184458967
Iteration: 5, Func. Count: 66, Neg. LLF: 125.11014339658122
Iteration: 6, Func. Count: 78, Neg. LLF: 125.07890071915965
Iteration: 7, Func. Count: 90, Neg. LLF: 124.88615807995993
Iteration: 8, Func. Count: 102, Neg. LLF: 124.38570775534039
Iteration: 9, Func. Count: 114, Neg. LLF: 124.36466739126188
Iteration: 10, Func. Count: 126, Neg. LLF: 124.35132651244673
Iteration: 11, Func. Count: 138, Neg. LLF: 124.3351251937684
Iteration: 12, Func. Count: 150, Neg. LLF: 124.33353221987407
Iteration: 13, Func. Count: 162, Neg. LLF: 124.33324486239835
Iteration: 14, Func. Count: 174, Neg. LLF: 124.33302145400619
Iteration: 15, Func. Count: 186, Neg. LLF: 124.33291105100747
Iteration: 16, Func. Count: 198, Neg. LLF: 124.3328799299644
Iteration: 17, Func. Count: 210, Neg. LLF: 124.33286691149571
Iteration: 18, Func. Count: 222, Neg. LLF: 124.33284987242561
Iteration: 19, Func. Count: 234, Neg. LLF: 124.33283592836744
Iteration: 20, Func. Count: 246, Neg. LLF: 124.3328375524284
Optimization terminated successfully (Exit mode 0)
Current function value: 124.33283581038211
Iterations: 20
Function evaluations: 247
Gradient evaluations: 20
Iteration: 1, Func. Count: 14, Neg. LLF: 126.11137868718812
Iteration: 2, Func. Count: 28, Neg. LLF: 133.78810642021887
Iteration: 3, Func. Count: 42, Neg. LLF: 125.43230789170701
Iteration: 4, Func. Count: 56, Neg. LLF: 125.53045307837725
Iteration: 5, Func. Count: 70, Neg. LLF: 124.20922202192858
Iteration: 6, Func. Count: 83, Neg. LLF: 191.5130204952441
Iteration: 7, Func. Count: 99, Neg. LLF: 124.1841950644905
Iteration: 8, Func. Count: 112, Neg. LLF: 124.17447977499934
Iteration: 9, Func. Count: 125, Neg. LLF: 124.16658188275146
Iteration: 10, Func. Count: 138, Neg. LLF: 124.16506932706453
Iteration: 11, Func. Count: 151, Neg. LLF: 124.16497062838538
Iteration: 12, Func. Count: 164, Neg. LLF: 124.16495240414189
Iteration: 13, Func. Count: 177, Neg. LLF: 124.1649511195585
Iteration: 14, Func. Count: 189, Neg. LLF: 124.1649511195534
Optimization terminated successfully (Exit mode 0)
Current function value: 124.1649511195585
Iterations: 14
Function evaluations: 189
Gradient evaluations: 14
Iteration: 1, Func. Count: 15, Neg. LLF: 127.83126215632261
Iteration: 2, Func. Count: 31, Neg. LLF: 130.5929299056233
Iteration: 3, Func. Count: 46, Neg. LLF: 124.78023030738636
Iteration: 4, Func. Count: 60, Neg. LLF: 124.4144104556889
Iteration: 5, Func. Count: 74, Neg. LLF: 124.85992206573005
Iteration: 6, Func. Count: 89, Neg. LLF: 124.08710956942001
Iteration: 7, Func. Count: 103, Neg. LLF: 123.62233821979271
Iteration: 8, Func. Count: 117, Neg. LLF: 123.3260512780234
Iteration: 9, Func. Count: 131, Neg. LLF: 123.30733253024586
Iteration: 10, Func. Count: 145, Neg. LLF: 123.2591875051449
Iteration: 11, Func. Count: 159, Neg. LLF: 123.25263753827033
Iteration: 12, Func. Count: 173, Neg. LLF: 123.25251240426209
Iteration: 13, Func. Count: 187, Neg. LLF: 123.25248607580127
Iteration: 14, Func. Count: 201, Neg. LLF: 123.25248237407479
Iteration: 15, Func. Count: 214, Neg. LLF: 123.25248231110233
Optimization terminated successfully (Exit mode 0)
Current function value: 123.25248237407479
Iterations: 15
Function evaluations: 214
Gradient evaluations: 15
Iteration: 1, Func. Count: 16, Neg. LLF: 127.83371027499892
Iteration: 2, Func. Count: 33, Neg. LLF: 131.2252225924822
Iteration: 3, Func. Count: 49, Neg. LLF: 125.23323591922352
Iteration: 4, Func. Count: 65, Neg. LLF: 125.11440800236855
Iteration: 5, Func. Count: 81, Neg. LLF: 123.94445935052288
Iteration: 6, Func. Count: 96, Neg. LLF: 129.17311276441902
Iteration: 7, Func. Count: 112, Neg. LLF: 122.41479381298805
Iteration: 8, Func. Count: 127, Neg. LLF: 122.33581833815889
Iteration: 9, Func. Count: 142, Neg. LLF: 121.88598520040563
Iteration: 10, Func. Count: 157, Neg. LLF: 121.21907828201098
Iteration: 11, Func. Count: 172, Neg. LLF: 121.13315523825504
Iteration: 12, Func. Count: 187, Neg. LLF: 121.10512132540583
Iteration: 13, Func. Count: 202, Neg. LLF: 121.09707667036302
Iteration: 14, Func. Count: 217, Neg. LLF: 121.09488274149606
Iteration: 15, Func. Count: 232, Neg. LLF: 121.46009972065701
Iteration: 16, Func. Count: 249, Neg. LLF: 121.10302161432564
Iteration: 17, Func. Count: 265, Neg. LLF: 121.09488092494819
Optimization terminated successfully (Exit mode 0)
Current function value: 121.09460344232629
Iterations: 18
Function evaluations: 266
Gradient evaluations: 17
Iteration: 1, Func. Count: 5, Neg. LLF: 131.7954825007059
Iteration: 2, Func. Count: 10, Neg. LLF: 137.16338373321668
Iteration: 3, Func. Count: 15, Neg. LLF: 125.03120027794137
Iteration: 4, Func. Count: 19, Neg. LLF: 125.01786719225483
Iteration: 5, Func. Count: 23, Neg. LLF: 125.01421360955716
Iteration: 6, Func. Count: 27, Neg. LLF: 125.01392647174427
Iteration: 7, Func. Count: 31, Neg. LLF: 125.01392155821694
Iteration: 8, Func. Count: 35, Neg. LLF: 125.01391967951947
Iteration: 9, Func. Count: 38, Neg. LLF: 125.01391967949307
Optimization terminated successfully (Exit mode 0)
Current function value: 125.01391967951947
Iterations: 9
Function evaluations: 38
Gradient evaluations: 9
Iteration: 1, Func. Count: 5, Neg. LLF: 129.60773879611085
Iteration: 2, Func. Count: 10, Neg. LLF: 137.68392880331916
Iteration: 3, Func. Count: 15, Neg. LLF: 124.92674115227129
Iteration: 4, Func. Count: 19, Neg. LLF: 124.89795509226731
Iteration: 5, Func. Count: 23, Neg. LLF: 124.88615284036031
Iteration: 6, Func. Count: 27, Neg. LLF: 124.87970205514979
Iteration: 7, Func. Count: 31, Neg. LLF: 124.87963411829364
Iteration: 8, Func. Count: 35, Neg. LLF: 124.87963358938086
Optimization terminated successfully (Exit mode 0)
Current function value: 124.87963358938086
Iterations: 8
Function evaluations: 35
Gradient evaluations: 8
Iteration: 1, Func. Count: 6, Neg. LLF: 157.85097759551002
Iteration: 2, Func. Count: 13, Neg. LLF: 124.93060438915658
Iteration: 3, Func. Count: 18, Neg. LLF: 124.92199618961462
Iteration: 4, Func. Count: 23, Neg. LLF: 124.92134862452862
Iteration: 5, Func. Count: 28, Neg. LLF: 124.92098474140136
Iteration: 6, Func. Count: 33, Neg. LLF: 124.91845350067724
Iteration: 7, Func. Count: 38, Neg. LLF: 124.90912893457644
Iteration: 8, Func. Count: 43, Neg. LLF: 124.90218715743434
Iteration: 9, Func. Count: 48, Neg. LLF: 124.881554563204
Iteration: 10, Func. Count: 53, Neg. LLF: 124.87978641967759
Iteration: 11, Func. Count: 58, Neg. LLF: 124.87970303370669
Iteration: 12, Func. Count: 63, Neg. LLF: 124.87963991348624
Iteration: 13, Func. Count: 68, Neg. LLF: 124.87963390922202
Iteration: 14, Func. Count: 72, Neg. LLF: 124.87963390982156
Optimization terminated successfully (Exit mode 0)
Current function value: 124.87963390922202
Iterations: 14
Function evaluations: 72
Gradient evaluations: 14
Iteration: 1, Func. Count: 7, Neg. LLF: 25541254.305135876
Iteration: 2, Func. Count: 15, Neg. LLF: 124.58215163998047
Iteration: 3, Func. Count: 21, Neg. LLF: 124.47738663604697
Iteration: 4, Func. Count: 27, Neg. LLF: 124.78330036931634
Iteration: 5, Func. Count: 34, Neg. LLF: 124.38484658596678
Iteration: 6, Func. Count: 40, Neg. LLF: 124.3692746602807
Iteration: 7, Func. Count: 46, Neg. LLF: 124.3711591778213
Iteration: 8, Func. Count: 53, Neg. LLF: 124.35683591638559
Iteration: 9, Func. Count: 59, Neg. LLF: 124.35623437724497
Iteration: 10, Func. Count: 65, Neg. LLF: 124.3540720787351
Iteration: 11, Func. Count: 71, Neg. LLF: 124.3519400644305
Iteration: 12, Func. Count: 77, Neg. LLF: 124.35082624250154
Iteration: 13, Func. Count: 83, Neg. LLF: 124.34954541806815
Iteration: 14, Func. Count: 89, Neg. LLF: 124.34495890309542
Iteration: 15, Func. Count: 95, Neg. LLF: 124.3449981454249
Iteration: 16, Func. Count: 101, Neg. LLF: 124.34494870203353
Optimization terminated successfully (Exit mode 0)
Current function value: 124.34494870179772
Iterations: 16
Function evaluations: 101
Gradient evaluations: 16
Iteration: 1, Func. Count: 8, Neg. LLF: 25533758.622663464
Iteration: 2, Func. Count: 17, Neg. LLF: 124.51810870062084
Iteration: 3, Func. Count: 24, Neg. LLF: 124.42906448759912
Iteration: 4, Func. Count: 31, Neg. LLF: 124.63656150942043
Iteration: 5, Func. Count: 39, Neg. LLF: 124.342925855322
Iteration: 6, Func. Count: 46, Neg. LLF: 124.33875972897533
Iteration: 7, Func. Count: 53, Neg. LLF: 124.39160027364441
Iteration: 8, Func. Count: 61, Neg. LLF: 124.39206814967712
Iteration: 9, Func. Count: 69, Neg. LLF: 124.34006632650409
Iteration: 10, Func. Count: 77, Neg. LLF: 124.33279245763417
Iteration: 11, Func. Count: 84, Neg. LLF: 124.33272094050211
Iteration: 12, Func. Count: 91, Neg. LLF: 124.33271973629789
Iteration: 13, Func. Count: 97, Neg. LLF: 124.33271973633713
Optimization terminated successfully (Exit mode 0)
Current function value: 124.33271973629789
Iterations: 13
Function evaluations: 97
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 164.25934200378776
Iteration: 2, Func. Count: 19, Neg. LLF: 124.73492293147024
Iteration: 3, Func. Count: 27, Neg. LLF: 124.7456626226799
Iteration: 4, Func. Count: 36, Neg. LLF: 124.63659271103771
Iteration: 5, Func. Count: 44, Neg. LLF: 124.33537800197159
Iteration: 6, Func. Count: 52, Neg. LLF: 124.29831492713282
Iteration: 7, Func. Count: 60, Neg. LLF: 124.50152623984859
Iteration: 8, Func. Count: 69, Neg. LLF: 124.13100064013679
Iteration: 9, Func. Count: 77, Neg. LLF: 124.05133703698245
Iteration: 10, Func. Count: 85, Neg. LLF: 123.94603514081045
Iteration: 11, Func. Count: 93, Neg. LLF: 123.89861508320311
Iteration: 12, Func. Count: 101, Neg. LLF: 123.82767880714412
Iteration: 13, Func. Count: 109, Neg. LLF: 123.82598670122844
Iteration: 14, Func. Count: 118, Neg. LLF: 123.79978219983626
Iteration: 15, Func. Count: 126, Neg. LLF: 123.7982836285289
Iteration: 16, Func. Count: 134, Neg. LLF: 123.79817427202002
Iteration: 17, Func. Count: 142, Neg. LLF: 123.79817316842016
Iteration: 18, Func. Count: 149, Neg. LLF: 123.79817316849173
Optimization terminated successfully (Exit mode 0)
Current function value: 123.79817316842016
Iterations: 18
Function evaluations: 149
Gradient evaluations: 18
Iteration: 1, Func. Count: 6, Neg. LLF: 130.42803658613073
Iteration: 2, Func. Count: 12, Neg. LLF: 128.13741007652547
Iteration: 3, Func. Count: 18, Neg. LLF: 125.89989893939446
Iteration: 4, Func. Count: 23, Neg. LLF: 125.3570605046864
Iteration: 5, Func. Count: 28, Neg. LLF: 269.08046272981994
Iteration: 6, Func. Count: 34, Neg. LLF: 125.04311956545789
Iteration: 7, Func. Count: 39, Neg. LLF: 124.8992058758197
Iteration: 8, Func. Count: 44, Neg. LLF: 124.88099720376967
Iteration: 9, Func. Count: 49, Neg. LLF: 124.87964745064494
Iteration: 10, Func. Count: 54, Neg. LLF: 124.87963392852801
Iteration: 11, Func. Count: 58, Neg. LLF: 124.87963414924587
Optimization terminated successfully (Exit mode 0)
Current function value: 124.87963392852801
Iterations: 11
Function evaluations: 58
Gradient evaluations: 11
Iteration: 1, Func. Count: 7, Neg. LLF: 165.7805826921972
Iteration: 2, Func. Count: 15, Neg. LLF: 124.93676021746582
Iteration: 3, Func. Count: 21, Neg. LLF: 124.92186032839541
Iteration: 4, Func. Count: 27, Neg. LLF: 124.92147588883418
Iteration: 5, Func. Count: 33, Neg. LLF: 124.92110751805171
Iteration: 6, Func. Count: 39, Neg. LLF: 124.91925786049406
Iteration: 7, Func. Count: 45, Neg. LLF: 124.91491392278844
Iteration: 8, Func. Count: 51, Neg. LLF: 124.90747667434334
Iteration: 9, Func. Count: 57, Neg. LLF: 124.89814676092917
Iteration: 10, Func. Count: 63, Neg. LLF: 124.88346260877468
Iteration: 11, Func. Count: 69, Neg. LLF: 124.88105104588851
Iteration: 12, Func. Count: 75, Neg. LLF: 124.88008990903938
Iteration: 13, Func. Count: 81, Neg. LLF: 124.87967446881436
Iteration: 14, Func. Count: 87, Neg. LLF: 124.87963501664375
Iteration: 15, Func. Count: 93, Neg. LLF: 124.87963359486874
Iteration: 16, Func. Count: 98, Neg. LLF: 124.87963359544008
Optimization terminated successfully (Exit mode 0)
Current function value: 124.87963359486874
Iterations: 16
Function evaluations: 98
Gradient evaluations: 16
Iteration: 1, Func. Count: 8, Neg. LLF: 25551070.22318926
Iteration: 2, Func. Count: 17, Neg. LLF: 124.60209543627704
Iteration: 3, Func. Count: 24, Neg. LLF: 124.43672220258765
Iteration: 4, Func. Count: 31, Neg. LLF: 124.91989899238732
Iteration: 5, Func. Count: 39, Neg. LLF: 124.35366802099023
Iteration: 6, Func. Count: 46, Neg. LLF: 124.35166159471439
Iteration: 7, Func. Count: 53, Neg. LLF: 124.3513021981716
Iteration: 8, Func. Count: 60, Neg. LLF: 124.35112576333484
Iteration: 9, Func. Count: 67, Neg. LLF: 124.3503019736629
Iteration: 10, Func. Count: 74, Neg. LLF: 124.34892552117577
Iteration: 11, Func. Count: 81, Neg. LLF: 124.34496313635606
Iteration: 12, Func. Count: 88, Neg. LLF: 21333931.03760976
Iteration: 13, Func. Count: 100, Neg. LLF: 124.34498866372692
Iteration: 14, Func. Count: 107, Neg. LLF: 124.34494867601929
Optimization terminated successfully (Exit mode 0)
Current function value: 124.34494867578981
Iterations: 15
Function evaluations: 107
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 25533575.03762524
Iteration: 2, Func. Count: 19, Neg. LLF: 124.51777842984201
Iteration: 3, Func. Count: 27, Neg. LLF: 124.40479005516468
Iteration: 4, Func. Count: 35, Neg. LLF: 124.57572249445535
Iteration: 5, Func. Count: 44, Neg. LLF: 124.33521001200702
Iteration: 6, Func. Count: 52, Neg. LLF: 124.3327557489833
Iteration: 7, Func. Count: 60, Neg. LLF: 124.33272074576406
Iteration: 8, Func. Count: 68, Neg. LLF: 124.33272007624471
Optimization terminated successfully (Exit mode 0)
Current function value: 124.33272007624471
Iterations: 8
Function evaluations: 68
Gradient evaluations: 8
Iteration: 1, Func. Count: 10, Neg. LLF: 25522327.517733954
Iteration: 2, Func. Count: 21, Neg. LLF: 124.47221749835545
Iteration: 3, Func. Count: 30, Neg. LLF: 124.49591487812594
Iteration: 4, Func. Count: 40, Neg. LLF: 124.40261836375315
Iteration: 5, Func. Count: 50, Neg. LLF: 124.3616687041856
Iteration: 6, Func. Count: 59, Neg. LLF: 124.3602606313624
Iteration: 7, Func. Count: 68, Neg. LLF: 124.35915741491054
Iteration: 8, Func. Count: 77, Neg. LLF: 124.35902141828826
Iteration: 9, Func. Count: 86, Neg. LLF: 124.358982143126
Iteration: 10, Func. Count: 95, Neg. LLF: 124.35898104142363
Iteration: 11, Func. Count: 103, Neg. LLF: 124.35898104144427
Optimization terminated successfully (Exit mode 0)
Current function value: 124.35898104142363
Iterations: 11
Function evaluations: 103
Gradient evaluations: 11
Iteration: 1, Func. Count: 7, Neg. LLF: 130.3660100520682
Iteration: 2, Func. Count: 14, Neg. LLF: 127.84273384221865
Iteration: 3, Func. Count: 21, Neg. LLF: 125.90169233512687
Iteration: 4, Func. Count: 27, Neg. LLF: 125.43368924355589
Iteration: 5, Func. Count: 33, Neg. LLF: 13017305.796363745
Iteration: 6, Func. Count: 40, Neg. LLF: 125.23378719088359
Iteration: 7, Func. Count: 46, Neg. LLF: 124.92362267868141
Iteration: 8, Func. Count: 52, Neg. LLF: 124.8837902402322
Iteration: 9, Func. Count: 58, Neg. LLF: 124.8797160503424
Iteration: 10, Func. Count: 64, Neg. LLF: 124.879636068155
Iteration: 11, Func. Count: 70, Neg. LLF: 124.87963369835856
Iteration: 12, Func. Count: 75, Neg. LLF: 124.87963383931069
Optimization terminated successfully (Exit mode 0)
Current function value: 124.87963369835856
Iterations: 12
Function evaluations: 75
Gradient evaluations: 12
Iteration: 1, Func. Count: 8, Neg. LLF: 165.75357351412626
Iteration: 2, Func. Count: 17, Neg. LLF: 124.93780864050515
Iteration: 3, Func. Count: 24, Neg. LLF: 124.92200588644299
Iteration: 4, Func. Count: 31, Neg. LLF: 124.92163926677718
Iteration: 5, Func. Count: 38, Neg. LLF: 124.9213021361533
Iteration: 6, Func. Count: 45, Neg. LLF: 124.91964244277534
Iteration: 7, Func. Count: 52, Neg. LLF: 124.91573529758844
Iteration: 8, Func. Count: 59, Neg. LLF: 124.90873077963575
Iteration: 9, Func. Count: 66, Neg. LLF: 124.89980149342
Iteration: 10, Func. Count: 73, Neg. LLF: 124.8824723217457
Iteration: 11, Func. Count: 80, Neg. LLF: 124.88033051473155
Iteration: 12, Func. Count: 87, Neg. LLF: 124.8799201317417
Iteration: 13, Func. Count: 94, Neg. LLF: 124.87965685420738
Iteration: 14, Func. Count: 101, Neg. LLF: 124.8796346213313
Iteration: 15, Func. Count: 108, Neg. LLF: 124.87963359272177
Iteration: 16, Func. Count: 114, Neg. LLF: 124.87963359329484
Optimization terminated successfully (Exit mode 0)
Current function value: 124.87963359272177
Iterations: 16
Function evaluations: 114
Gradient evaluations: 16
Iteration: 1, Func. Count: 9, Neg. LLF: 25546051.394075155
Iteration: 2, Func. Count: 19, Neg. LLF: 124.5921390650489
Iteration: 3, Func. Count: 27, Neg. LLF: 124.43024120671132
Iteration: 4, Func. Count: 35, Neg. LLF: 124.93430148024845
Iteration: 5, Func. Count: 44, Neg. LLF: 124.35444464502693
Iteration: 6, Func. Count: 52, Neg. LLF: 124.35179363577201
Iteration: 7, Func. Count: 60, Neg. LLF: 124.35148490915917
Iteration: 8, Func. Count: 68, Neg. LLF: 124.35119424291663
Iteration: 9, Func. Count: 76, Neg. LLF: 124.35043790289694
Iteration: 10, Func. Count: 84, Neg. LLF: 124.34895741476556
Iteration: 11, Func. Count: 92, Neg. LLF: 124.34497933328765
Iteration: 12, Func. Count: 100, Neg. LLF: 124.34831733092277
Optimization terminated successfully (Exit mode 0)
Current function value: 124.3449791802448
Iterations: 12
Function evaluations: 102
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 25534990.20195672
Iteration: 2, Func. Count: 21, Neg. LLF: 124.52454842573108
Iteration: 3, Func. Count: 30, Neg. LLF: 124.41503919584402
Iteration: 4, Func. Count: 39, Neg. LLF: 124.58450525159307
Iteration: 5, Func. Count: 49, Neg. LLF: 124.33687054443115
Iteration: 6, Func. Count: 58, Neg. LLF: 124.33303238195063
Iteration: 7, Func. Count: 67, Neg. LLF: 124.43568685542267
Iteration: 8, Func. Count: 77, Neg. LLF: 124.3325495255238
Iteration: 9, Func. Count: 86, Neg. LLF: 124.33241799687649
Iteration: 10, Func. Count: 95, Neg. LLF: 124.33228091001779
Iteration: 11, Func. Count: 104, Neg. LLF: 124.33182366042107
Iteration: 12, Func. Count: 113, Neg. LLF: 124.33181023971633
Iteration: 13, Func. Count: 122, Neg. LLF: 124.3318099397873
Optimization terminated successfully (Exit mode 0)
Current function value: 124.3318099397873
Iterations: 13
Function evaluations: 122
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 25526570.83877927
Iteration: 2, Func. Count: 23, Neg. LLF: 124.49062041407012
Iteration: 3, Func. Count: 33, Neg. LLF: 124.4582635709171
Iteration: 4, Func. Count: 43, Neg. LLF: 124.45040456458513
Iteration: 5, Func. Count: 54, Neg. LLF: 124.36684873461326
Iteration: 6, Func. Count: 64, Neg. LLF: 124.36378199485844
Iteration: 7, Func. Count: 74, Neg. LLF: 124.3623175267925
Iteration: 8, Func. Count: 84, Neg. LLF: 124.36204816407808
Iteration: 9, Func. Count: 94, Neg. LLF: 124.3615181123842
Iteration: 10, Func. Count: 104, Neg. LLF: 124.36048503866024
Iteration: 11, Func. Count: 114, Neg. LLF: 124.35940289589469
Iteration: 12, Func. Count: 124, Neg. LLF: 124.35902575230341
Iteration: 13, Func. Count: 134, Neg. LLF: 124.35898770491437
Iteration: 14, Func. Count: 144, Neg. LLF: 124.35898142243408
Iteration: 15, Func. Count: 153, Neg. LLF: 124.35898142240673
Optimization terminated successfully (Exit mode 0)
Current function value: 124.35898142243408
Iterations: 15
Function evaluations: 153
Gradient evaluations: 15
Iteration: 1, Func. Count: 8, Neg. LLF: 130.31688434181802
Iteration: 2, Func. Count: 16, Neg. LLF: 127.57008219118123
Iteration: 3, Func. Count: 24, Neg. LLF: 125.82650249790638
Iteration: 4, Func. Count: 31, Neg. LLF: 125.47798837548082
Iteration: 5, Func. Count: 38, Neg. LLF: 125.2120064586372
Iteration: 6, Func. Count: 45, Neg. LLF: 124.9375976800178
Iteration: 7, Func. Count: 52, Neg. LLF: 124.88656391191519
Iteration: 8, Func. Count: 59, Neg. LLF: 124.87989170564806
Iteration: 9, Func. Count: 66, Neg. LLF: 124.8796498784303
Iteration: 10, Func. Count: 73, Neg. LLF: 124.87963365112522
Iteration: 11, Func. Count: 79, Neg. LLF: 124.87963382759312
Optimization terminated successfully (Exit mode 0)
Current function value: 124.87963365112522
Iterations: 11
Function evaluations: 79
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 165.70918323963812
Iteration: 2, Func. Count: 19, Neg. LLF: 124.93445956648759
Iteration: 3, Func. Count: 27, Neg. LLF: 124.9220812512758
Iteration: 4, Func. Count: 35, Neg. LLF: 124.92173644153752
Iteration: 5, Func. Count: 43, Neg. LLF: 124.92139524590415
Iteration: 6, Func. Count: 51, Neg. LLF: 124.91978682498979
Iteration: 7, Func. Count: 59, Neg. LLF: 124.91596446269702
Iteration: 8, Func. Count: 67, Neg. LLF: 124.9090969034723
Iteration: 9, Func. Count: 75, Neg. LLF: 124.90024032226638
Iteration: 10, Func. Count: 83, Neg. LLF: 124.88229634955539
Iteration: 11, Func. Count: 91, Neg. LLF: 124.88016561985737
Iteration: 12, Func. Count: 99, Neg. LLF: 124.87986278906133
Iteration: 13, Func. Count: 107, Neg. LLF: 124.87965183869278
Iteration: 14, Func. Count: 115, Neg. LLF: 124.87963442962595
Iteration: 15, Func. Count: 123, Neg. LLF: 124.87963359204392
Optimization terminated successfully (Exit mode 0)
Current function value: 124.87963359204392
Iterations: 15
Function evaluations: 123
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 25547049.626897078
Iteration: 2, Func. Count: 21, Neg. LLF: 124.59638625746516
Iteration: 3, Func. Count: 30, Neg. LLF: 124.42319834705619
Iteration: 4, Func. Count: 39, Neg. LLF: 125.32711187454483
Iteration: 5, Func. Count: 49, Neg. LLF: 124.35467744222213
Iteration: 6, Func. Count: 58, Neg. LLF: 124.3533667000117
Iteration: 7, Func. Count: 67, Neg. LLF: 124.35188007040183
Iteration: 8, Func. Count: 76, Neg. LLF: 124.35070512192031
Iteration: 9, Func. Count: 85, Neg. LLF: 124.34935775225799
Iteration: 10, Func. Count: 94, Neg. LLF: 124.34496171117698
Iteration: 11, Func. Count: 103, Neg. LLF: 124.34495926310511
Iteration: 12, Func. Count: 112, Neg. LLF: 124.34495006922104
Optimization terminated successfully (Exit mode 0)
Current function value: 124.34495006956665
Iterations: 12
Function evaluations: 112
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 25537978.457023557
Iteration: 2, Func. Count: 23, Neg. LLF: 124.54027211619707
Iteration: 3, Func. Count: 33, Neg. LLF: 124.40472028468992
Iteration: 4, Func. Count: 43, Neg. LLF: 124.60399782166462
Iteration: 5, Func. Count: 54, Neg. LLF: 124.34077430839473
Iteration: 6, Func. Count: 64, Neg. LLF: 124.33568811978458
Iteration: 7, Func. Count: 74, Neg. LLF: 124.40516512518508
Iteration: 8, Func. Count: 85, Neg. LLF: 124.4263730663579
Iteration: 9, Func. Count: 96, Neg. LLF: 124.35539129770731
Iteration: 10, Func. Count: 107, Neg. LLF: 124.33297192271539
Iteration: 11, Func. Count: 118, Neg. LLF: 124.33276134902898
Iteration: 12, Func. Count: 129, Neg. LLF: 124.33260152268193
Iteration: 13, Func. Count: 139, Neg. LLF: 124.33246983219439
Iteration: 14, Func. Count: 149, Neg. LLF: 124.3320137417331
Iteration: 15, Func. Count: 159, Neg. LLF: 124.33181437466367
Iteration: 16, Func. Count: 169, Neg. LLF: 124.33181085351443
Iteration: 17, Func. Count: 179, Neg. LLF: 124.33180986935993
Optimization terminated successfully (Exit mode 0)
Current function value: 124.33180986935993
Iterations: 17
Function evaluations: 179
Gradient evaluations: 17
Iteration: 1, Func. Count: 12, Neg. LLF: 25530857.941859018
Iteration: 2, Func. Count: 25, Neg. LLF: 124.51276750324246
Iteration: 3, Func. Count: 36, Neg. LLF: 124.42691080724144
Iteration: 4, Func. Count: 47, Neg. LLF: 124.4709036880829
Iteration: 5, Func. Count: 59, Neg. LLF: 124.36537438437485
Iteration: 6, Func. Count: 70, Neg. LLF: 124.36387005358606
Iteration: 7, Func. Count: 81, Neg. LLF: 124.36204165781442
Iteration: 8, Func. Count: 92, Neg. LLF: 124.3618711977168
Iteration: 9, Func. Count: 103, Neg. LLF: 124.36106049051578
Iteration: 10, Func. Count: 114, Neg. LLF: 124.36059084289349
Iteration: 11, Func. Count: 125, Neg. LLF: 124.35946498188716
Iteration: 12, Func. Count: 136, Neg. LLF: 124.35898676026702
Iteration: 13, Func. Count: 147, Neg. LLF: 124.35898110281403
Iteration: 14, Func. Count: 157, Neg. LLF: 124.35898110262468
Optimization terminated successfully (Exit mode 0)
Current function value: 124.35898110281403
Iterations: 14
Function evaluations: 157
Gradient evaluations: 14
Iteration: 1, Func. Count: 5, Neg. LLF: 131.64504111690357
Iteration: 2, Func. Count: 10, Neg. LLF: 136.45859262880788
Iteration: 3, Func. Count: 15, Neg. LLF: 124.61639469543968
Iteration: 4, Func. Count: 19, Neg. LLF: 124.67902131048265
Iteration: 5, Func. Count: 24, Neg. LLF: 124.54331822192266
Iteration: 6, Func. Count: 28, Neg. LLF: 124.54084926233624
Iteration: 7, Func. Count: 32, Neg. LLF: 124.54077641211498
Iteration: 8, Func. Count: 36, Neg. LLF: 124.54075031656329
Iteration: 9, Func. Count: 40, Neg. LLF: 124.54074495119255
Iteration: 10, Func. Count: 43, Neg. LLF: 124.54074495119012
Optimization terminated successfully (Exit mode 0)
Current function value: 124.54074495119255
Iterations: 10
Function evaluations: 43
Gradient evaluations: 10
Iteration: 1, Func. Count: 6, Neg. LLF: 132.09688121205377
Iteration: 2, Func. Count: 13, Neg. LLF: 124.92854684839082
Iteration: 3, Func. Count: 18, Neg. LLF: 124.92193216262973
Iteration: 4, Func. Count: 23, Neg. LLF: 124.92093160769292
Iteration: 5, Func. Count: 28, Neg. LLF: 124.92050855533877
Iteration: 6, Func. Count: 33, Neg. LLF: 124.91753856141014
Iteration: 7, Func. Count: 38, Neg. LLF: 124.90007823973697
Iteration: 8, Func. Count: 43, Neg. LLF: 124.88389202345206
Iteration: 9, Func. Count: 48, Neg. LLF: 124.88037292820125
Iteration: 10, Func. Count: 53, Neg. LLF: 124.78525026769262
Iteration: 11, Func. Count: 58, Neg. LLF: 124.69961082528972
Iteration: 12, Func. Count: 63, Neg. LLF: 124.6142068145728
Iteration: 13, Func. Count: 68, Neg. LLF: 124.5521365026984
Iteration: 14, Func. Count: 73, Neg. LLF: 124.5409559242068
Iteration: 15, Func. Count: 78, Neg. LLF: 124.54082870981142
Iteration: 16, Func. Count: 83, Neg. LLF: 124.5407880742306
Iteration: 17, Func. Count: 88, Neg. LLF: 124.54074696500929
Iteration: 18, Func. Count: 93, Neg. LLF: 124.54074486821968
Iteration: 19, Func. Count: 97, Neg. LLF: 124.540744908814
Optimization terminated successfully (Exit mode 0)
Current function value: 124.54074486821968
Iterations: 19
Function evaluations: 97
Gradient evaluations: 19
Iteration: 1, Func. Count: 7, Neg. LLF: 25505205.80476617
Iteration: 2, Func. Count: 15, Neg. LLF: 124.54047085919504
Iteration: 3, Func. Count: 21, Neg. LLF: 124.46193093305125
Iteration: 4, Func. Count: 27, Neg. LLF: 124.51659445863444
Iteration: 5, Func. Count: 34, Neg. LLF: 124.47596886499757
Iteration: 6, Func. Count: 41, Neg. LLF: 124.3648241634097
Iteration: 7, Func. Count: 48, Neg. LLF: 124.3588724053311
Iteration: 8, Func. Count: 54, Neg. LLF: 124.35464493791191
Iteration: 9, Func. Count: 60, Neg. LLF: 124.35253626767944
Iteration: 10, Func. Count: 66, Neg. LLF: 124.35120017299054
Iteration: 11, Func. Count: 72, Neg. LLF: 124.3500709057767
Iteration: 12, Func. Count: 78, Neg. LLF: 124.3478577862816
Iteration: 13, Func. Count: 84, Neg. LLF: 124.34494873030738
Iteration: 14, Func. Count: 90, Neg. LLF: 125.79742217024182
Optimization terminated successfully (Exit mode 0)
Current function value: 124.34494872782687
Iterations: 15
Function evaluations: 95
Gradient evaluations: 14
Iteration: 1, Func. Count: 8, Neg. LLF: 25502938.765113786
Iteration: 2, Func. Count: 17, Neg. LLF: 124.47850116661397
Iteration: 3, Func. Count: 24, Neg. LLF: 124.44230434887379
Iteration: 4, Func. Count: 31, Neg. LLF: 124.61839982833203
Iteration: 5, Func. Count: 39, Neg. LLF: 124.35015176799095
Iteration: 6, Func. Count: 46, Neg. LLF: 124.34157182040562
Iteration: 7, Func. Count: 53, Neg. LLF: 124.3356068926584
Iteration: 8, Func. Count: 60, Neg. LLF: 124.39194519482946
Iteration: 9, Func. Count: 68, Neg. LLF: 124.3339846654713
Iteration: 10, Func. Count: 75, Neg. LLF: 124.33282888041539
Iteration: 11, Func. Count: 82, Neg. LLF: 124.33272953260803
Iteration: 12, Func. Count: 89, Neg. LLF: 124.33271976619928
Iteration: 13, Func. Count: 95, Neg. LLF: 124.33271976617495
Optimization terminated successfully (Exit mode 0)
Current function value: 124.33271976619928
Iterations: 13
Function evaluations: 95
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 25501342.70113932
Iteration: 2, Func. Count: 19, Neg. LLF: 124.44421659251478
Iteration: 3, Func. Count: 27, Neg. LLF: 124.36553237737608
Iteration: 4, Func. Count: 35, Neg. LLF: 124.36900217601308
Iteration: 5, Func. Count: 44, Neg. LLF: 124.36011304415024
Iteration: 6, Func. Count: 52, Neg. LLF: 124.3590472637684
Iteration: 7, Func. Count: 60, Neg. LLF: 124.35898491555803
Iteration: 8, Func. Count: 68, Neg. LLF: 124.35898107524028
Iteration: 9, Func. Count: 75, Neg. LLF: 124.35898107541831
Optimization terminated successfully (Exit mode 0)
Current function value: 124.35898107524028
Iterations: 9
Function evaluations: 75
Gradient evaluations: 9
Iteration: 1, Func. Count: 6, Neg. LLF: 133.91293317526763
Iteration: 2, Func. Count: 12, Neg. LLF: 131.333783884683
Iteration: 3, Func. Count: 18, Neg. LLF: 123.7780636701586
Iteration: 4, Func. Count: 23, Neg. LLF: 124.89406341415203
Iteration: 5, Func. Count: 31, Neg. LLF: 123.72048274495107
Iteration: 6, Func. Count: 36, Neg. LLF: 123.69246881893395
Iteration: 7, Func. Count: 41, Neg. LLF: 123.68596543032923
Iteration: 8, Func. Count: 46, Neg. LLF: 123.68543238500325
Iteration: 9, Func. Count: 51, Neg. LLF: 123.68539141582983
Iteration: 10, Func. Count: 55, Neg. LLF: 123.68539141593904
Optimization terminated successfully (Exit mode 0)
Current function value: 123.68539141582983
Iterations: 10
Function evaluations: 55
Gradient evaluations: 10
Iteration: 1, Func. Count: 7, Neg. LLF: 127.59274804217117
Iteration: 2, Func. Count: 15, Neg. LLF: 129.21353745149483
Iteration: 3, Func. Count: 22, Neg. LLF: 124.17517670688939
Iteration: 4, Func. Count: 28, Neg. LLF: 123.78698229039543
Iteration: 5, Func. Count: 34, Neg. LLF: 123.69363954998605
Iteration: 6, Func. Count: 40, Neg. LLF: 123.68825394844718
Iteration: 7, Func. Count: 46, Neg. LLF: 123.68547187081877
Iteration: 8, Func. Count: 52, Neg. LLF: 123.68544238532816
Iteration: 9, Func. Count: 58, Neg. LLF: 123.68541962712034
Iteration: 10, Func. Count: 64, Neg. LLF: 123.68539363248321
Iteration: 11, Func. Count: 70, Neg. LLF: 123.68539117574147
Iteration: 12, Func. Count: 75, Neg. LLF: 123.68539119346569
Optimization terminated successfully (Exit mode 0)
Current function value: 123.68539117574147
Iterations: 12
Function evaluations: 75
Gradient evaluations: 12
Iteration: 1, Func. Count: 8, Neg. LLF: 127.56216524500306
Iteration: 2, Func. Count: 17, Neg. LLF: 130.2552803722784
Iteration: 3, Func. Count: 25, Neg. LLF: 124.26381982104365
Iteration: 4, Func. Count: 33, Neg. LLF: 124.27727787579839
Iteration: 5, Func. Count: 41, Neg. LLF: 124.12285855509988
Iteration: 6, Func. Count: 48, Neg. LLF: 124.06703188247764
Iteration: 7, Func. Count: 55, Neg. LLF: 123.71539304213266
Iteration: 8, Func. Count: 62, Neg. LLF: 123.68864108155175
Iteration: 9, Func. Count: 69, Neg. LLF: 123.68727668385526
Iteration: 10, Func. Count: 76, Neg. LLF: 123.68563773886267
Iteration: 11, Func. Count: 83, Neg. LLF: 123.68545701226759
Iteration: 12, Func. Count: 90, Neg. LLF: 123.6854173989168
Iteration: 13, Func. Count: 97, Neg. LLF: 123.68540705670902
Iteration: 14, Func. Count: 104, Neg. LLF: 123.68539544150444
Iteration: 15, Func. Count: 111, Neg. LLF: 123.68539170963909
Iteration: 16, Func. Count: 118, Neg. LLF: 123.68539102964844
Optimization terminated successfully (Exit mode 0)
Current function value: 123.68539102964844
Iterations: 16
Function evaluations: 118
Gradient evaluations: 16
Iteration: 1, Func. Count: 9, Neg. LLF: 126.75705973277776
Iteration: 2, Func. Count: 19, Neg. LLF: 132.64771899452475
Iteration: 3, Func. Count: 28, Neg. LLF: 124.58506601610715
Iteration: 4, Func. Count: 37, Neg. LLF: 123.58523929445943
Iteration: 5, Func. Count: 45, Neg. LLF: 153.35680798963918
Iteration: 6, Func. Count: 54, Neg. LLF: 123.30604568997292
Iteration: 7, Func. Count: 62, Neg. LLF: 122.59119508866748
Iteration: 8, Func. Count: 70, Neg. LLF: 122.55470127429324
Iteration: 9, Func. Count: 78, Neg. LLF: 122.47491407663611
Iteration: 10, Func. Count: 86, Neg. LLF: 122.42790776815092
Iteration: 11, Func. Count: 94, Neg. LLF: 122.40419639760368
Iteration: 12, Func. Count: 102, Neg. LLF: 122.39910845427829
Iteration: 13, Func. Count: 110, Neg. LLF: 122.39839933604446
Iteration: 14, Func. Count: 118, Neg. LLF: 122.39839217501716
Iteration: 15, Func. Count: 125, Neg. LLF: 122.39839211384243
Optimization terminated successfully (Exit mode 0)
Current function value: 122.39839217501716
Iterations: 15
Function evaluations: 125
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 144.71013903780684
Iteration: 2, Func. Count: 20, Neg. LLF: 125.38857337468717
Iteration: 3, Func. Count: 30, Neg. LLF: 150.9348671847223
Iteration: 4, Func. Count: 41, Neg. LLF: 124.7976956117507
Iteration: 5, Func. Count: 51, Neg. LLF: 123.26520410274122
Iteration: 6, Func. Count: 60, Neg. LLF: 122.87433918997849
Iteration: 7, Func. Count: 69, Neg. LLF: 122.46418533270464
Iteration: 8, Func. Count: 78, Neg. LLF: 122.26691767418872
Iteration: 9, Func. Count: 87, Neg. LLF: 122.26157338908872
Iteration: 10, Func. Count: 97, Neg. LLF: 122.25043149360519
Iteration: 11, Func. Count: 106, Neg. LLF: 122.25035089629117
Iteration: 12, Func. Count: 115, Neg. LLF: 122.25034914316936
Iteration: 13, Func. Count: 123, Neg. LLF: 122.2503490850356
Optimization terminated successfully (Exit mode 0)
Current function value: 122.25034914316936
Iterations: 13
Function evaluations: 123
Gradient evaluations: 13
Iteration: 1, Func. Count: 7, Neg. LLF: 131.4709404049315
Iteration: 2, Func. Count: 14, Neg. LLF: 132.9290300214232
Iteration: 3, Func. Count: 21, Neg. LLF: 123.74334040754171
Iteration: 4, Func. Count: 27, Neg. LLF: 125.10021529615454
Iteration: 5, Func. Count: 35, Neg. LLF: 123.7088797673542
Iteration: 6, Func. Count: 41, Neg. LLF: 123.69349552722436
Iteration: 7, Func. Count: 47, Neg. LLF: 123.68612247849536
Iteration: 8, Func. Count: 53, Neg. LLF: 123.68552354495318
Iteration: 9, Func. Count: 59, Neg. LLF: 123.68539231350113
Iteration: 10, Func. Count: 65, Neg. LLF: 123.68539103424334
Iteration: 11, Func. Count: 70, Neg. LLF: 123.68539127613549
Optimization terminated successfully (Exit mode 0)
Current function value: 123.68539103424334
Iterations: 11
Function evaluations: 70
Gradient evaluations: 11
Iteration: 1, Func. Count: 8, Neg. LLF: 127.67460186978563
Iteration: 2, Func. Count: 17, Neg. LLF: 129.08384002552316
Iteration: 3, Func. Count: 25, Neg. LLF: 124.16452212858403
Iteration: 4, Func. Count: 32, Neg. LLF: 124.14871714324396
Iteration: 5, Func. Count: 40, Neg. LLF: 123.70031529692724
Iteration: 6, Func. Count: 47, Neg. LLF: 123.69109569760876
Iteration: 7, Func. Count: 54, Neg. LLF: 123.6862404718388
Iteration: 8, Func. Count: 61, Neg. LLF: 123.68546565676222
Iteration: 9, Func. Count: 68, Neg. LLF: 123.68543171927011
Iteration: 10, Func. Count: 75, Neg. LLF: 123.68541707330093
Iteration: 11, Func. Count: 82, Neg. LLF: 123.68539317993557
Iteration: 12, Func. Count: 89, Neg. LLF: 123.68539115609693
Iteration: 13, Func. Count: 95, Neg. LLF: 123.68539117381566
Optimization terminated successfully (Exit mode 0)
Current function value: 123.68539115609693
Iterations: 13
Function evaluations: 95
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 127.59219088316138
Iteration: 2, Func. Count: 19, Neg. LLF: 130.07087585279467
Iteration: 3, Func. Count: 28, Neg. LLF: 124.28268320149758
Iteration: 4, Func. Count: 37, Neg. LLF: 124.23679342059529
Iteration: 5, Func. Count: 46, Neg. LLF: 124.12945438755692
Iteration: 6, Func. Count: 54, Neg. LLF: 124.08172946928052
Iteration: 7, Func. Count: 62, Neg. LLF: 123.92125168152153
Iteration: 8, Func. Count: 70, Neg. LLF: 123.88167080868082
Iteration: 9, Func. Count: 78, Neg. LLF: 123.70416421745607
Iteration: 10, Func. Count: 86, Neg. LLF: 123.68673307443515
Iteration: 11, Func. Count: 94, Neg. LLF: 123.68591870109597
Iteration: 12, Func. Count: 102, Neg. LLF: 123.68562335461233
Iteration: 13, Func. Count: 110, Neg. LLF: 123.68552181685236
Iteration: 14, Func. Count: 118, Neg. LLF: 123.68543543572794
Iteration: 15, Func. Count: 126, Neg. LLF: 123.6854007870889
Iteration: 16, Func. Count: 134, Neg. LLF: 123.68539162838404
Iteration: 17, Func. Count: 142, Neg. LLF: 123.68539102016348
Optimization terminated successfully (Exit mode 0)
Current function value: 123.68539102016348
Iterations: 17
Function evaluations: 142
Gradient evaluations: 17
Iteration: 1, Func. Count: 10, Neg. LLF: 126.7944564633195
Iteration: 2, Func. Count: 21, Neg. LLF: 132.45739360250516
Iteration: 3, Func. Count: 31, Neg. LLF: 123.98833566511775
Iteration: 4, Func. Count: 41, Neg. LLF: 123.53902513325983
Iteration: 5, Func. Count: 50, Neg. LLF: 133.819922085106
Iteration: 6, Func. Count: 60, Neg. LLF: 123.08488065191324
Iteration: 7, Func. Count: 69, Neg. LLF: 122.71027806362315
Iteration: 8, Func. Count: 78, Neg. LLF: 122.63547788056057
Iteration: 9, Func. Count: 87, Neg. LLF: 122.51360124799356
Iteration: 10, Func. Count: 96, Neg. LLF: 122.43004919995153
Iteration: 11, Func. Count: 105, Neg. LLF: 122.40052096412549
Iteration: 12, Func. Count: 114, Neg. LLF: 122.39849074491237
Iteration: 13, Func. Count: 123, Neg. LLF: 122.3983944157187
Iteration: 14, Func. Count: 132, Neg. LLF: 122.39839242675082
Iteration: 15, Func. Count: 141, Neg. LLF: 122.39839174916156
Optimization terminated successfully (Exit mode 0)
Current function value: 122.39839174916156
Iterations: 15
Function evaluations: 141
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 144.32091146453976
Iteration: 2, Func. Count: 22, Neg. LLF: 125.5076800727976
Iteration: 3, Func. Count: 33, Neg. LLF: 151.18793628300162
Iteration: 4, Func. Count: 45, Neg. LLF: 124.71884082005292
Iteration: 5, Func. Count: 56, Neg. LLF: 123.39429469725773
Iteration: 6, Func. Count: 66, Neg. LLF: 122.99267333975128
Iteration: 7, Func. Count: 76, Neg. LLF: 122.4987596686284
Iteration: 8, Func. Count: 86, Neg. LLF: 122.31102227262011
Iteration: 9, Func. Count: 96, Neg. LLF: 122.28474905231145
Iteration: 10, Func. Count: 106, Neg. LLF: 122.25148516400253
Iteration: 11, Func. Count: 116, Neg. LLF: 122.25050976946692
Iteration: 12, Func. Count: 126, Neg. LLF: 122.25036712501031
Iteration: 13, Func. Count: 136, Neg. LLF: 122.25035220771873
Iteration: 14, Func. Count: 146, Neg. LLF: 122.25034923310542
Iteration: 15, Func. Count: 155, Neg. LLF: 122.25034917504897
Optimization terminated successfully (Exit mode 0)
Current function value: 122.25034923310542
Iterations: 15
Function evaluations: 155
Gradient evaluations: 15
Iteration: 1, Func. Count: 8, Neg. LLF: 131.35221776774947
Iteration: 2, Func. Count: 16, Neg. LLF: 132.8686381794288
Iteration: 3, Func. Count: 24, Neg. LLF: 123.74469269786911
Iteration: 4, Func. Count: 31, Neg. LLF: 125.10896388515515
Iteration: 5, Func. Count: 40, Neg. LLF: 123.71154741786776
Iteration: 6, Func. Count: 47, Neg. LLF: 123.69269835867112
Iteration: 7, Func. Count: 54, Neg. LLF: 123.68616530004849
Iteration: 8, Func. Count: 61, Neg. LLF: 123.68552828405898
Iteration: 9, Func. Count: 68, Neg. LLF: 123.68539237309962
Iteration: 10, Func. Count: 75, Neg. LLF: 123.68539103802327
Iteration: 11, Func. Count: 81, Neg. LLF: 123.68539120780945
Optimization terminated successfully (Exit mode 0)
Current function value: 123.68539103802327
Iterations: 11
Function evaluations: 81
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 127.67311580423925
Iteration: 2, Func. Count: 19, Neg. LLF: 129.10627350324881
Iteration: 3, Func. Count: 28, Neg. LLF: 124.16424386269631
Iteration: 4, Func. Count: 36, Neg. LLF: 124.30480595904154
Iteration: 5, Func. Count: 45, Neg. LLF: 123.70166275077754
Iteration: 6, Func. Count: 53, Neg. LLF: 123.69226334382621
Iteration: 7, Func. Count: 61, Neg. LLF: 123.6863913672108
Iteration: 8, Func. Count: 69, Neg. LLF: 123.68547232684048
Iteration: 9, Func. Count: 77, Neg. LLF: 123.68543567816704
Iteration: 10, Func. Count: 85, Neg. LLF: 123.68541956740573
Iteration: 11, Func. Count: 93, Neg. LLF: 123.68539371856198
Iteration: 12, Func. Count: 101, Neg. LLF: 123.68539120386139
Iteration: 13, Func. Count: 108, Neg. LLF: 123.68539122158238
Optimization terminated successfully (Exit mode 0)
Current function value: 123.68539120386139
Iterations: 13
Function evaluations: 108
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 127.59233920018711
Iteration: 2, Func. Count: 21, Neg. LLF: 130.11657901662767
Iteration: 3, Func. Count: 31, Neg. LLF: 124.29909769400422
Iteration: 4, Func. Count: 41, Neg. LLF: 124.23099712819139
Iteration: 5, Func. Count: 51, Neg. LLF: 124.12521689311654
Iteration: 6, Func. Count: 60, Neg. LLF: 124.08212963400975
Iteration: 7, Func. Count: 69, Neg. LLF: 123.74284182518892
Iteration: 8, Func. Count: 78, Neg. LLF: 123.68662316489188
Iteration: 9, Func. Count: 87, Neg. LLF: 123.6860103089564
Iteration: 10, Func. Count: 96, Neg. LLF: 123.68543912251756
Iteration: 11, Func. Count: 105, Neg. LLF: 123.6854202657468
Iteration: 12, Func. Count: 114, Neg. LLF: 123.68540383839411
Iteration: 13, Func. Count: 123, Neg. LLF: 123.68539469030854
Iteration: 14, Func. Count: 132, Neg. LLF: 123.68539140307256
Iteration: 15, Func. Count: 140, Neg. LLF: 123.68539143689378
Optimization terminated successfully (Exit mode 0)
Current function value: 123.68539140307256
Iterations: 15
Function evaluations: 140
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 126.80662756936813
Iteration: 2, Func. Count: 23, Neg. LLF: 132.49522021223086
Iteration: 3, Func. Count: 34, Neg. LLF: 124.303107272848
Iteration: 4, Func. Count: 45, Neg. LLF: 123.58450978909978
Iteration: 5, Func. Count: 55, Neg. LLF: 143.11717051965022
Iteration: 6, Func. Count: 66, Neg. LLF: 123.2270849683379
Iteration: 7, Func. Count: 76, Neg. LLF: 122.62590142363291
Iteration: 8, Func. Count: 86, Neg. LLF: 122.52736951152319
Iteration: 9, Func. Count: 96, Neg. LLF: 122.47154364454099
Iteration: 10, Func. Count: 106, Neg. LLF: 122.86870292885234
Iteration: 11, Func. Count: 117, Neg. LLF: 122.35527367068158
Iteration: 12, Func. Count: 127, Neg. LLF: 122.34564793578835
Iteration: 13, Func. Count: 137, Neg. LLF: 122.34326914722102
Iteration: 14, Func. Count: 147, Neg. LLF: 122.34249700974769
Iteration: 15, Func. Count: 157, Neg. LLF: 122.34238896050519
Iteration: 16, Func. Count: 166, Neg. LLF: 122.34238888696527
Optimization terminated successfully (Exit mode 0)
Current function value: 122.34238896050519
Iterations: 16
Function evaluations: 166
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 144.45431268821474
Iteration: 2, Func. Count: 24, Neg. LLF: 125.47524247973979
Iteration: 3, Func. Count: 36, Neg. LLF: 151.33264056251264
Iteration: 4, Func. Count: 49, Neg. LLF: 124.68173325837478
Iteration: 5, Func. Count: 61, Neg. LLF: 123.47729613753636
Iteration: 6, Func. Count: 72, Neg. LLF: 123.07904806431786
Iteration: 7, Func. Count: 83, Neg. LLF: 122.46949915775642
Iteration: 8, Func. Count: 94, Neg. LLF: 122.38311281715545
Iteration: 9, Func. Count: 105, Neg. LLF: 122.28093126190362
Iteration: 10, Func. Count: 116, Neg. LLF: 122.25303329118532
Iteration: 11, Func. Count: 127, Neg. LLF: 122.25077610462868
Iteration: 12, Func. Count: 138, Neg. LLF: 122.25041524248223
Iteration: 13, Func. Count: 149, Neg. LLF: 122.25035380869981
Iteration: 14, Func. Count: 160, Neg. LLF: 122.25034922498634
Iteration: 15, Func. Count: 170, Neg. LLF: 122.2503491667843
Optimization terminated successfully (Exit mode 0)
Current function value: 122.25034922498634
Iterations: 15
Function evaluations: 170
Gradient evaluations: 15
Iteration: 1, Func. Count: 9, Neg. LLF: 131.1682418412926
Iteration: 2, Func. Count: 18, Neg. LLF: 132.91405070731747
Iteration: 3, Func. Count: 27, Neg. LLF: 123.74398516070775
Iteration: 4, Func. Count: 35, Neg. LLF: 125.07091874603881
Iteration: 5, Func. Count: 45, Neg. LLF: 123.71110409564295
Iteration: 6, Func. Count: 53, Neg. LLF: 123.69267804163314
Iteration: 7, Func. Count: 61, Neg. LLF: 123.68618302073111
Iteration: 8, Func. Count: 69, Neg. LLF: 123.68553560709306
Iteration: 9, Func. Count: 77, Neg. LLF: 123.6853924970702
Iteration: 10, Func. Count: 85, Neg. LLF: 123.6853910409558
Iteration: 11, Func. Count: 92, Neg. LLF: 123.68539126473132
Optimization terminated successfully (Exit mode 0)
Current function value: 123.6853910409558
Iterations: 11
Function evaluations: 92
Gradient evaluations: 11
Iteration: 1, Func. Count: 10, Neg. LLF: 127.62989523701819
Iteration: 2, Func. Count: 21, Neg. LLF: 129.1645336516768
Iteration: 3, Func. Count: 31, Neg. LLF: 124.16807974867959
Iteration: 4, Func. Count: 40, Neg. LLF: 124.03765525179202
Iteration: 5, Func. Count: 49, Neg. LLF: 123.70590891043828
Iteration: 6, Func. Count: 58, Neg. LLF: 123.69369217545079
Iteration: 7, Func. Count: 67, Neg. LLF: 123.68557656176613
Iteration: 8, Func. Count: 76, Neg. LLF: 123.6855112731686
Iteration: 9, Func. Count: 85, Neg. LLF: 123.68545205497499
Iteration: 10, Func. Count: 94, Neg. LLF: 123.68540243808157
Iteration: 11, Func. Count: 103, Neg. LLF: 123.68539193058766
Iteration: 12, Func. Count: 112, Neg. LLF: 123.68539101692046
Optimization terminated successfully (Exit mode 0)
Current function value: 123.68539101692046
Iterations: 12
Function evaluations: 112
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 127.56168375169233
Iteration: 2, Func. Count: 23, Neg. LLF: 130.1228750656069
Iteration: 3, Func. Count: 34, Neg. LLF: 124.29559671163578
Iteration: 4, Func. Count: 45, Neg. LLF: 124.23102634871495
Iteration: 5, Func. Count: 56, Neg. LLF: 124.1263549090097
Iteration: 6, Func. Count: 66, Neg. LLF: 124.08414412541289
Iteration: 7, Func. Count: 76, Neg. LLF: 123.74862727502828
Iteration: 8, Func. Count: 86, Neg. LLF: 123.68643278858754
Iteration: 9, Func. Count: 96, Neg. LLF: 123.68591916248587
Iteration: 10, Func. Count: 106, Neg. LLF: 123.68545990801329
Iteration: 11, Func. Count: 116, Neg. LLF: 123.68542743595972
Iteration: 12, Func. Count: 126, Neg. LLF: 123.68540755628916
Iteration: 13, Func. Count: 136, Neg. LLF: 123.68539772442733
Iteration: 14, Func. Count: 146, Neg. LLF: 123.68539210988176
Iteration: 15, Func. Count: 156, Neg. LLF: 123.68539111813045
Optimization terminated successfully (Exit mode 0)
Current function value: 123.68539111813045
Iterations: 15
Function evaluations: 156
Gradient evaluations: 15
Iteration: 1, Func. Count: 12, Neg. LLF: 126.85770270597084
Iteration: 2, Func. Count: 25, Neg. LLF: 132.41979042115557
Iteration: 3, Func. Count: 37, Neg. LLF: 124.76507534084594
Iteration: 4, Func. Count: 49, Neg. LLF: 123.6455634775381
Iteration: 5, Func. Count: 60, Neg. LLF: 128.0379328474812
Iteration: 6, Func. Count: 72, Neg. LLF: 123.25577575881823
Iteration: 7, Func. Count: 83, Neg. LLF: 122.71691634095399
Iteration: 8, Func. Count: 94, Neg. LLF: 122.61556187741412
Iteration: 9, Func. Count: 105, Neg. LLF: 122.53687124305947
Iteration: 10, Func. Count: 116, Neg. LLF: 122.87260991071923
Iteration: 11, Func. Count: 128, Neg. LLF: 122.36322686986435
Iteration: 12, Func. Count: 139, Neg. LLF: 122.34517567674385
Iteration: 13, Func. Count: 150, Neg. LLF: 122.34283081532496
Iteration: 14, Func. Count: 161, Neg. LLF: 122.34240212473576
Iteration: 15, Func. Count: 172, Neg. LLF: 122.34238894128694
Iteration: 16, Func. Count: 182, Neg. LLF: 122.3423888679757
Optimization terminated successfully (Exit mode 0)
Current function value: 122.34238894128694
Iterations: 16
Function evaluations: 182
Gradient evaluations: 16
Iteration: 1, Func. Count: 13, Neg. LLF: 144.47450417277022
Iteration: 2, Func. Count: 26, Neg. LLF: 125.25636494749529
Iteration: 3, Func. Count: 39, Neg. LLF: 151.6196791458422
Iteration: 4, Func. Count: 53, Neg. LLF: 124.67813425337485
Iteration: 5, Func. Count: 66, Neg. LLF: 123.46648843932859
Iteration: 6, Func. Count: 78, Neg. LLF: 123.04178192388657
Iteration: 7, Func. Count: 90, Neg. LLF: 122.3020023593555
Iteration: 8, Func. Count: 102, Neg. LLF: 122.27570841848697
Iteration: 9, Func. Count: 114, Neg. LLF: 122.32209198767487
Iteration: 10, Func. Count: 127, Neg. LLF: 122.25397341785241
Iteration: 11, Func. Count: 139, Neg. LLF: 122.25044731400473
Iteration: 12, Func. Count: 151, Neg. LLF: 122.25035872471359
Iteration: 13, Func. Count: 163, Neg. LLF: 122.25034933216197
Iteration: 14, Func. Count: 174, Neg. LLF: 122.25034927386497
Optimization terminated successfully (Exit mode 0)
Current function value: 122.25034933216197
Iterations: 14
Function evaluations: 174
Gradient evaluations: 14
Iteration: 1, Func. Count: 6, Neg. LLF: 132.40581856613233
Iteration: 2, Func. Count: 12, Neg. LLF: 151.88721653982037
Iteration: 3, Func. Count: 18, Neg. LLF: 124.94052187163517
Iteration: 4, Func. Count: 23, Neg. LLF: 124.58037036359055
Iteration: 5, Func. Count: 28, Neg. LLF: 124.61686792479541
Iteration: 6, Func. Count: 34, Neg. LLF: 124.5410632836451
Iteration: 7, Func. Count: 39, Neg. LLF: 124.54075447711679
Iteration: 8, Func. Count: 44, Neg. LLF: 124.54074568945703
Iteration: 9, Func. Count: 49, Neg. LLF: 124.5407447722359
Optimization terminated successfully (Exit mode 0)
Current function value: 124.5407447722359
Iterations: 9
Function evaluations: 49
Gradient evaluations: 9
Iteration: 1, Func. Count: 7, Neg. LLF: 165.84781005831087
Iteration: 2, Func. Count: 15, Neg. LLF: 124.93952729924473
Iteration: 3, Func. Count: 21, Neg. LLF: 124.92176637874876
Iteration: 4, Func. Count: 27, Neg. LLF: 124.92132856765751
Iteration: 5, Func. Count: 33, Neg. LLF: 124.9209684817125
Iteration: 6, Func. Count: 39, Neg. LLF: 124.91902191733152
Iteration: 7, Func. Count: 45, Neg. LLF: 124.91457425982458
Iteration: 8, Func. Count: 51, Neg. LLF: 124.90710293628642
Iteration: 9, Func. Count: 57, Neg. LLF: 124.89745356936106
Iteration: 10, Func. Count: 63, Neg. LLF: 124.88286221450355
Iteration: 11, Func. Count: 69, Neg. LLF: 124.87434495308763
Iteration: 12, Func. Count: 75, Neg. LLF: 124.82466253760924
Iteration: 13, Func. Count: 81, Neg. LLF: 124.70148859205072
Iteration: 14, Func. Count: 87, Neg. LLF: 124.64274319476085
Iteration: 15, Func. Count: 93, Neg. LLF: 124.59105805846572
Iteration: 16, Func. Count: 99, Neg. LLF: 124.56312622480621
Iteration: 17, Func. Count: 105, Neg. LLF: 124.54550514756848
Iteration: 18, Func. Count: 111, Neg. LLF: 124.54101083715612
Iteration: 19, Func. Count: 117, Neg. LLF: 124.54075187783943
Iteration: 20, Func. Count: 123, Neg. LLF: 124.54097075991325
Iteration: 21, Func. Count: 130, Neg. LLF: 124.54095829998595
Optimization terminated successfully (Exit mode 0)
Current function value: 124.54074807063077
Iterations: 22
Function evaluations: 131
Gradient evaluations: 21
Iteration: 1, Func. Count: 8, Neg. LLF: 25513435.417913612
Iteration: 2, Func. Count: 17, Neg. LLF: 124.56161384016343
Iteration: 3, Func. Count: 24, Neg. LLF: 124.44869710030159
Iteration: 4, Func. Count: 31, Neg. LLF: 124.55275879936575
Iteration: 5, Func. Count: 39, Neg. LLF: 124.41365232496115
Iteration: 6, Func. Count: 47, Neg. LLF: 124.36275518500085
Iteration: 7, Func. Count: 54, Neg. LLF: 124.35850770730353
Iteration: 8, Func. Count: 61, Neg. LLF: 124.35748100100822
Iteration: 9, Func. Count: 68, Neg. LLF: 124.35436649233115
Iteration: 10, Func. Count: 75, Neg. LLF: 124.3523310266229
Iteration: 11, Func. Count: 82, Neg. LLF: 124.35098840899715
Iteration: 12, Func. Count: 89, Neg. LLF: 124.34990751320237
Iteration: 13, Func. Count: 96, Neg. LLF: 124.34715989705195
Iteration: 14, Func. Count: 103, Neg. LLF: 124.344962016436
Iteration: 15, Func. Count: 110, Neg. LLF: 299056.9247644125
Optimization terminated successfully (Exit mode 0)
Current function value: 124.3449610375379
Iterations: 16
Function evaluations: 115
Gradient evaluations: 15
Iteration: 1, Func. Count: 9, Neg. LLF: 25505504.939224165
Iteration: 2, Func. Count: 19, Neg. LLF: 124.4870910745033
Iteration: 3, Func. Count: 27, Neg. LLF: 124.40772645365008
Iteration: 4, Func. Count: 35, Neg. LLF: 124.58784696500318
Iteration: 5, Func. Count: 44, Neg. LLF: 124.33811486198037
Iteration: 6, Func. Count: 52, Neg. LLF: 124.33363373169007
Iteration: 7, Func. Count: 60, Neg. LLF: 124.34102315496497
Iteration: 8, Func. Count: 69, Neg. LLF: 124.33273555496953
Iteration: 9, Func. Count: 77, Neg. LLF: 124.33271993799131
Iteration: 10, Func. Count: 84, Neg. LLF: 124.3327199380578
Optimization terminated successfully (Exit mode 0)
Current function value: 124.33271993799131
Iterations: 10
Function evaluations: 84
Gradient evaluations: 10
Iteration: 1, Func. Count: 10, Neg. LLF: 25502155.837243922
Iteration: 2, Func. Count: 21, Neg. LLF: 124.44668510187918
Iteration: 3, Func. Count: 30, Neg. LLF: 124.4824277092002
Iteration: 4, Func. Count: 40, Neg. LLF: 124.44107041103669
Iteration: 5, Func. Count: 50, Neg. LLF: 124.36034362336645
Iteration: 6, Func. Count: 59, Neg. LLF: 124.35922212795731
Iteration: 7, Func. Count: 68, Neg. LLF: 124.35898814085328
Iteration: 8, Func. Count: 77, Neg. LLF: 124.35898108375953
Iteration: 9, Func. Count: 85, Neg. LLF: 124.3589810839213
Optimization terminated successfully (Exit mode 0)
Current function value: 124.35898108375953
Iterations: 9
Function evaluations: 85
Gradient evaluations: 9
Iteration: 1, Func. Count: 7, Neg. LLF: 128.64987167044654
Iteration: 2, Func. Count: 14, Neg. LLF: 144.4866236362646
Iteration: 3, Func. Count: 21, Neg. LLF: 123.84099394979279
Iteration: 4, Func. Count: 27, Neg. LLF: 124.68148499120304
Iteration: 5, Func. Count: 36, Neg. LLF: 123.90349988050882
Iteration: 6, Func. Count: 43, Neg. LLF: 123.6927162277789
Iteration: 7, Func. Count: 49, Neg. LLF: 123.68842052862988
Iteration: 8, Func. Count: 55, Neg. LLF: 123.68654735135418
Iteration: 9, Func. Count: 61, Neg. LLF: 123.68540739663841
Iteration: 10, Func. Count: 67, Neg. LLF: 123.68539127357218
Iteration: 11, Func. Count: 72, Neg. LLF: 123.68539127370397
Optimization terminated successfully (Exit mode 0)
Current function value: 123.68539127357218
Iterations: 11
Function evaluations: 72
Gradient evaluations: 11
Iteration: 1, Func. Count: 8, Neg. LLF: 127.77265733691476
Iteration: 2, Func. Count: 17, Neg. LLF: 129.05516459940952
Iteration: 3, Func. Count: 25, Neg. LLF: 124.17089351619931
Iteration: 4, Func. Count: 32, Neg. LLF: 123.9099771505744
Iteration: 5, Func. Count: 39, Neg. LLF: 123.70562165209515
Iteration: 6, Func. Count: 46, Neg. LLF: 123.6919645490559
Iteration: 7, Func. Count: 53, Neg. LLF: 123.68583422147672
Iteration: 8, Func. Count: 60, Neg. LLF: 123.68552586132996
Iteration: 9, Func. Count: 67, Neg. LLF: 123.68547796896411
Iteration: 10, Func. Count: 74, Neg. LLF: 123.68543649177664
Iteration: 11, Func. Count: 81, Neg. LLF: 123.68539427982236
Iteration: 12, Func. Count: 88, Neg. LLF: 123.68539117736306
Iteration: 13, Func. Count: 94, Neg. LLF: 123.68539119505047
Optimization terminated successfully (Exit mode 0)
Current function value: 123.68539117736306
Iterations: 13
Function evaluations: 94
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 127.75399653619738
Iteration: 2, Func. Count: 19, Neg. LLF: 130.0421728145964
Iteration: 3, Func. Count: 28, Neg. LLF: 124.30945233690242
Iteration: 4, Func. Count: 37, Neg. LLF: 124.24090570546076
Iteration: 5, Func. Count: 46, Neg. LLF: 124.12872920839656
Iteration: 6, Func. Count: 54, Neg. LLF: 124.08504815299774
Iteration: 7, Func. Count: 62, Neg. LLF: 123.89874341561914
Iteration: 8, Func. Count: 70, Neg. LLF: 123.8361432468474
Iteration: 9, Func. Count: 78, Neg. LLF: 123.69703593667889
Iteration: 10, Func. Count: 86, Neg. LLF: 123.6877236345423
Iteration: 11, Func. Count: 94, Neg. LLF: 123.68595236521507
Iteration: 12, Func. Count: 102, Neg. LLF: 123.68572047322327
Iteration: 13, Func. Count: 110, Neg. LLF: 123.68553816568121
Iteration: 14, Func. Count: 118, Neg. LLF: 123.68545316957082
Iteration: 15, Func. Count: 126, Neg. LLF: 123.68540186087705
Iteration: 16, Func. Count: 134, Neg. LLF: 123.68539178665144
Iteration: 17, Func. Count: 142, Neg. LLF: 123.68539112927114
Optimization terminated successfully (Exit mode 0)
Current function value: 123.68539112927114
Iterations: 17
Function evaluations: 142
Gradient evaluations: 17
Iteration: 1, Func. Count: 10, Neg. LLF: 126.93092876787681
Iteration: 2, Func. Count: 21, Neg. LLF: 132.34065048999622
Iteration: 3, Func. Count: 31, Neg. LLF: 123.98133297050055
Iteration: 4, Func. Count: 41, Neg. LLF: 123.54001315882032
Iteration: 5, Func. Count: 50, Neg. LLF: 131.82102632538246
Iteration: 6, Func. Count: 60, Neg. LLF: 123.06854562218234
Iteration: 7, Func. Count: 69, Neg. LLF: 122.71119525619582
Iteration: 8, Func. Count: 78, Neg. LLF: 122.7277439253716
Iteration: 9, Func. Count: 88, Neg. LLF: 122.47683221209363
Iteration: 10, Func. Count: 97, Neg. LLF: 122.42357596531265
Iteration: 11, Func. Count: 106, Neg. LLF: 122.40008208857722
Iteration: 12, Func. Count: 115, Neg. LLF: 122.39884847590413
Iteration: 13, Func. Count: 124, Neg. LLF: 122.39843286190322
Iteration: 14, Func. Count: 133, Neg. LLF: 122.39840383714261
Iteration: 15, Func. Count: 142, Neg. LLF: 122.3983918633164
Iteration: 16, Func. Count: 150, Neg. LLF: 122.39839180195118
Optimization terminated successfully (Exit mode 0)
Current function value: 122.3983918633164
Iterations: 16
Function evaluations: 150
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 143.8982818176179
Iteration: 2, Func. Count: 22, Neg. LLF: 125.89488220052557
Iteration: 3, Func. Count: 33, Neg. LLF: 151.99979334734047
Iteration: 4, Func. Count: 45, Neg. LLF: 124.73021507487357
Iteration: 5, Func. Count: 56, Neg. LLF: 123.34976888291439
Iteration: 6, Func. Count: 66, Neg. LLF: 122.95057575651192
Iteration: 7, Func. Count: 76, Neg. LLF: 122.46066789533393
Iteration: 8, Func. Count: 86, Neg. LLF: 122.29059441051967
Iteration: 9, Func. Count: 96, Neg. LLF: 122.28570361254226
Iteration: 10, Func. Count: 107, Neg. LLF: 122.25066992228517
Iteration: 11, Func. Count: 117, Neg. LLF: 122.25037006529735
Iteration: 12, Func. Count: 127, Neg. LLF: 122.25034956604402
Iteration: 13, Func. Count: 136, Neg. LLF: 122.25034950784787
Optimization terminated successfully (Exit mode 0)
Current function value: 122.25034956604402
Iterations: 13
Function evaluations: 136
Gradient evaluations: 13
Iteration: 1, Func. Count: 8, Neg. LLF: 131.999012631947
Iteration: 2, Func. Count: 16, Neg. LLF: 148.79358803880436
Iteration: 3, Func. Count: 24, Neg. LLF: 123.87140953008294
Iteration: 4, Func. Count: 31, Neg. LLF: 123.80559403919351
Iteration: 5, Func. Count: 38, Neg. LLF: 123.73742715184122
Iteration: 6, Func. Count: 45, Neg. LLF: 123.69785273427571
Iteration: 7, Func. Count: 52, Neg. LLF: 123.69211933780802
Iteration: 8, Func. Count: 59, Neg. LLF: 123.68852665071043
Iteration: 9, Func. Count: 66, Neg. LLF: 123.685429179419
Iteration: 10, Func. Count: 73, Neg. LLF: 123.6853923384472
Iteration: 11, Func. Count: 80, Neg. LLF: 123.6853910284093
Iteration: 12, Func. Count: 86, Neg. LLF: 123.68539078651554
Optimization terminated successfully (Exit mode 0)
Current function value: 123.6853910284093
Iterations: 12
Function evaluations: 86
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 127.86232066360286
Iteration: 2, Func. Count: 19, Neg. LLF: 128.9272560182253
Iteration: 3, Func. Count: 28, Neg. LLF: 124.16149323630454
Iteration: 4, Func. Count: 36, Neg. LLF: 124.79903876057628
Iteration: 5, Func. Count: 45, Neg. LLF: 123.70578032278127
Iteration: 6, Func. Count: 53, Neg. LLF: 123.69232630009478
Iteration: 7, Func. Count: 61, Neg. LLF: 123.68834191127812
Iteration: 8, Func. Count: 69, Neg. LLF: 123.68552447611108
Iteration: 9, Func. Count: 77, Neg. LLF: 123.68543854173566
Iteration: 10, Func. Count: 85, Neg. LLF: 123.68542293884843
Iteration: 11, Func. Count: 93, Neg. LLF: 123.68540268317949
Iteration: 12, Func. Count: 101, Neg. LLF: 123.68539317592277
Iteration: 13, Func. Count: 109, Neg. LLF: 123.68539111254191
Iteration: 14, Func. Count: 116, Neg. LLF: 123.6853911302179
Optimization terminated successfully (Exit mode 0)
Current function value: 123.68539111254191
Iterations: 14
Function evaluations: 116
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 127.79956575735204
Iteration: 2, Func. Count: 21, Neg. LLF: 129.86322227507526
Iteration: 3, Func. Count: 31, Neg. LLF: 124.33580799496914
Iteration: 4, Func. Count: 41, Neg. LLF: 124.21857721855812
Iteration: 5, Func. Count: 50, Neg. LLF: 124.1254195548272
Iteration: 6, Func. Count: 59, Neg. LLF: 124.0830868487067
Iteration: 7, Func. Count: 68, Neg. LLF: 123.96125511924967
Iteration: 8, Func. Count: 77, Neg. LLF: 123.90096303325757
Iteration: 9, Func. Count: 86, Neg. LLF: 123.6946839074863
Iteration: 10, Func. Count: 95, Neg. LLF: 123.68580109386409
Iteration: 11, Func. Count: 104, Neg. LLF: 123.68555461552214
Iteration: 12, Func. Count: 113, Neg. LLF: 123.68542640702223
Iteration: 13, Func. Count: 122, Neg. LLF: 123.68541279792429
Iteration: 14, Func. Count: 131, Neg. LLF: 123.68540019110492
Iteration: 15, Func. Count: 140, Neg. LLF: 123.68539382599654
Iteration: 16, Func. Count: 149, Neg. LLF: 123.68539120448999
Iteration: 17, Func. Count: 157, Neg. LLF: 123.68539123831421
Optimization terminated successfully (Exit mode 0)
Current function value: 123.68539120448999
Iterations: 17
Function evaluations: 157
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 127.0395144111315
Iteration: 2, Func. Count: 23, Neg. LLF: 132.10683943966646
Iteration: 3, Func. Count: 34, Neg. LLF: 123.92969735354878
Iteration: 4, Func. Count: 44, Neg. LLF: 123.59959323114485
Iteration: 5, Func. Count: 54, Neg. LLF: 127.31235328555817
Iteration: 6, Func. Count: 65, Neg. LLF: 123.08605079358716
Iteration: 7, Func. Count: 75, Neg. LLF: 122.64288037911423
Iteration: 8, Func. Count: 85, Neg. LLF: 122.56375978526712
Iteration: 9, Func. Count: 95, Neg. LLF: 122.46332515305222
Iteration: 10, Func. Count: 105, Neg. LLF: 122.41287694890747
Iteration: 11, Func. Count: 115, Neg. LLF: 122.4012622035032
Iteration: 12, Func. Count: 125, Neg. LLF: 122.39905153564509
Iteration: 13, Func. Count: 135, Neg. LLF: 122.39847003578765
Iteration: 14, Func. Count: 145, Neg. LLF: 122.39839254262635
Iteration: 15, Func. Count: 155, Neg. LLF: 122.39839164414546
Optimization terminated successfully (Exit mode 0)
Current function value: 122.39839164414546
Iterations: 15
Function evaluations: 155
Gradient evaluations: 15
Iteration: 1, Func. Count: 12, Neg. LLF: 143.52582526392692
Iteration: 2, Func. Count: 24, Neg. LLF: 125.96309361982787
Iteration: 3, Func. Count: 36, Neg. LLF: 146.72113722133705
Iteration: 4, Func. Count: 48, Neg. LLF: 127.05882023036709
Iteration: 5, Func. Count: 60, Neg. LLF: 123.80255515898514
Iteration: 6, Func. Count: 71, Neg. LLF: 123.1504827958361
Iteration: 7, Func. Count: 82, Neg. LLF: 122.42513777162468
Iteration: 8, Func. Count: 93, Neg. LLF: 122.9364577733867
Iteration: 9, Func. Count: 105, Neg. LLF: 122.06213956098324
Iteration: 10, Func. Count: 116, Neg. LLF: 122.20356383953175
Iteration: 11, Func. Count: 128, Neg. LLF: 122.04190765881695
Iteration: 12, Func. Count: 140, Neg. LLF: 122.00642198647576
Iteration: 13, Func. Count: 151, Neg. LLF: 122.00196101774473
Iteration: 14, Func. Count: 162, Neg. LLF: 121.99309419153946
Iteration: 15, Func. Count: 173, Neg. LLF: 121.99140087731564
Iteration: 16, Func. Count: 184, Neg. LLF: 121.9907744791989
Iteration: 17, Func. Count: 195, Neg. LLF: 121.99073259195336
Iteration: 18, Func. Count: 205, Neg. LLF: 121.99073258759553
Optimization terminated successfully (Exit mode 0)
Current function value: 121.99073259195336
Iterations: 18
Function evaluations: 205
Gradient evaluations: 18
Iteration: 1, Func. Count: 9, Neg. LLF: 132.11264942459613
Iteration: 2, Func. Count: 18, Neg. LLF: 148.79952237155032
Iteration: 3, Func. Count: 27, Neg. LLF: 123.8698676810234
Iteration: 4, Func. Count: 35, Neg. LLF: 123.81255864795105
Iteration: 5, Func. Count: 43, Neg. LLF: 123.73878833971003
Iteration: 6, Func. Count: 51, Neg. LLF: 123.69741360502067
Iteration: 7, Func. Count: 59, Neg. LLF: 123.69202720537228
Iteration: 8, Func. Count: 67, Neg. LLF: 123.68845151350942
Iteration: 9, Func. Count: 75, Neg. LLF: 123.68546832097863
Iteration: 10, Func. Count: 83, Neg. LLF: 123.68539443600498
Iteration: 11, Func. Count: 91, Neg. LLF: 123.68539103465034
Iteration: 12, Func. Count: 98, Neg. LLF: 123.68539120443616
Optimization terminated successfully (Exit mode 0)
Current function value: 123.68539103465034
Iterations: 12
Function evaluations: 98
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 127.86373328907047
Iteration: 2, Func. Count: 21, Neg. LLF: 128.94396805141298
Iteration: 3, Func. Count: 31, Neg. LLF: 124.16156887254284
Iteration: 4, Func. Count: 40, Neg. LLF: 125.23422338657491
Iteration: 5, Func. Count: 50, Neg. LLF: 123.70582348450192
Iteration: 6, Func. Count: 59, Neg. LLF: 123.69359146686335
Iteration: 7, Func. Count: 68, Neg. LLF: 123.68888964428386
Iteration: 8, Func. Count: 77, Neg. LLF: 123.68549913539162
Iteration: 9, Func. Count: 86, Neg. LLF: 123.68544317770636
Iteration: 10, Func. Count: 95, Neg. LLF: 123.68542463606808
Iteration: 11, Func. Count: 104, Neg. LLF: 123.68540178752316
Iteration: 12, Func. Count: 113, Neg. LLF: 123.68539253524882
Iteration: 13, Func. Count: 122, Neg. LLF: 123.68539106431639
Iteration: 14, Func. Count: 130, Neg. LLF: 123.68539108201111
Optimization terminated successfully (Exit mode 0)
Current function value: 123.68539106431639
Iterations: 14
Function evaluations: 130
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 127.80016045641688
Iteration: 2, Func. Count: 23, Neg. LLF: 129.8991832484591
Iteration: 3, Func. Count: 34, Neg. LLF: 124.359146599285
Iteration: 4, Func. Count: 45, Neg. LLF: 124.21713808837109
Iteration: 5, Func. Count: 55, Neg. LLF: 124.1226474204884
Iteration: 6, Func. Count: 65, Neg. LLF: 124.0856101221837
Iteration: 7, Func. Count: 75, Neg. LLF: 123.84958352142105
Iteration: 8, Func. Count: 85, Neg. LLF: 123.71341749454436
Iteration: 9, Func. Count: 95, Neg. LLF: 123.69224830537193
Iteration: 10, Func. Count: 105, Neg. LLF: 123.68559282015374
Iteration: 11, Func. Count: 115, Neg. LLF: 123.68544084996647
Iteration: 12, Func. Count: 125, Neg. LLF: 123.6853995187026
Iteration: 13, Func. Count: 135, Neg. LLF: 123.6853957679388
Iteration: 14, Func. Count: 145, Neg. LLF: 123.68539297172444
Iteration: 15, Func. Count: 155, Neg. LLF: 123.68539194463594
Iteration: 16, Func. Count: 165, Neg. LLF: 123.68539112863574
Optimization terminated successfully (Exit mode 0)
Current function value: 123.68539112863574
Iterations: 16
Function evaluations: 165
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 126.99333555271008
Iteration: 2, Func. Count: 25, Neg. LLF: 132.19014394984578
Iteration: 3, Func. Count: 37, Neg. LLF: 124.04651823066405
Iteration: 4, Func. Count: 49, Neg. LLF: 123.58219133175864
Iteration: 5, Func. Count: 60, Neg. LLF: 136.74749643724687
Iteration: 6, Func. Count: 72, Neg. LLF: 123.16367007946612
Iteration: 7, Func. Count: 83, Neg. LLF: 122.65058529828524
Iteration: 8, Func. Count: 94, Neg. LLF: 122.5502051787515
Iteration: 9, Func. Count: 105, Neg. LLF: 122.52865830945657
Iteration: 10, Func. Count: 116, Neg. LLF: 123.11497134384413
Iteration: 11, Func. Count: 128, Neg. LLF: 122.3792525403526
Iteration: 12, Func. Count: 139, Neg. LLF: 122.34898106583069
Iteration: 13, Func. Count: 150, Neg. LLF: 122.34447848734804
Iteration: 14, Func. Count: 161, Neg. LLF: 122.34263945849234
Iteration: 15, Func. Count: 172, Neg. LLF: 122.34239113544025
Iteration: 16, Func. Count: 183, Neg. LLF: 122.3423889066093
Iteration: 17, Func. Count: 193, Neg. LLF: 122.34238883318764
Optimization terminated successfully (Exit mode 0)
Current function value: 122.3423889066093
Iterations: 17
Function evaluations: 193
Gradient evaluations: 17
Iteration: 1, Func. Count: 13, Neg. LLF: 143.64021531574855
Iteration: 2, Func. Count: 26, Neg. LLF: 125.89537460042743
Iteration: 3, Func. Count: 39, Neg. LLF: 147.97478940635418
Iteration: 4, Func. Count: 52, Neg. LLF: 126.42715525779971
Iteration: 5, Func. Count: 65, Neg. LLF: 124.4683137407025
Iteration: 6, Func. Count: 78, Neg. LLF: 123.65771334575811
Iteration: 7, Func. Count: 91, Neg. LLF: 122.86399573859266
Iteration: 8, Func. Count: 103, Neg. LLF: 125.18705711595115
Iteration: 9, Func. Count: 116, Neg. LLF: 123.39852220840595
Iteration: 10, Func. Count: 129, Neg. LLF: 122.27737524592891
Iteration: 11, Func. Count: 141, Neg. LLF: 122.05440878890151
Iteration: 12, Func. Count: 153, Neg. LLF: 122.02116436824252
Iteration: 13, Func. Count: 165, Neg. LLF: 122.00649395857783
Iteration: 14, Func. Count: 177, Neg. LLF: 122.00377261270071
Iteration: 15, Func. Count: 189, Neg. LLF: 122.00005815245139
Iteration: 16, Func. Count: 201, Neg. LLF: 121.9967563321191
Iteration: 17, Func. Count: 213, Neg. LLF: 121.9955280777056
Iteration: 18, Func. Count: 225, Neg. LLF: 121.99536671954539
Iteration: 19, Func. Count: 237, Neg. LLF: 121.99523850625545
Iteration: 20, Func. Count: 249, Neg. LLF: 121.99511441657191
Iteration: 21, Func. Count: 260, Neg. LLF: 121.99511438829872
Optimization terminated successfully (Exit mode 0)
Current function value: 121.99511441657191
Iterations: 21
Function evaluations: 260
Gradient evaluations: 21
Iteration: 1, Func. Count: 10, Neg. LLF: 132.32258748762177
Iteration: 2, Func. Count: 20, Neg. LLF: 148.79070612885266
Iteration: 3, Func. Count: 30, Neg. LLF: 123.86942645422019
Iteration: 4, Func. Count: 39, Neg. LLF: 123.81308373082167
Iteration: 5, Func. Count: 48, Neg. LLF: 123.74002546765769
Iteration: 6, Func. Count: 57, Neg. LLF: 123.69733018716654
Iteration: 7, Func. Count: 66, Neg. LLF: 123.69197976832545
Iteration: 8, Func. Count: 75, Neg. LLF: 123.68842877227846
Iteration: 9, Func. Count: 84, Neg. LLF: 123.68548263067092
Iteration: 10, Func. Count: 93, Neg. LLF: 123.68539496745372
Iteration: 11, Func. Count: 102, Neg. LLF: 123.68539105384885
Iteration: 12, Func. Count: 110, Neg. LLF: 123.68539127762752
Optimization terminated successfully (Exit mode 0)
Current function value: 123.68539105384885
Iterations: 12
Function evaluations: 110
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 127.82018125948835
Iteration: 2, Func. Count: 23, Neg. LLF: 128.9947776087426
Iteration: 3, Func. Count: 34, Neg. LLF: 124.16481870275881
Iteration: 4, Func. Count: 44, Neg. LLF: 124.78192516670718
Iteration: 5, Func. Count: 55, Neg. LLF: 123.70896567569372
Iteration: 6, Func. Count: 65, Neg. LLF: 123.69583664808619
Iteration: 7, Func. Count: 75, Neg. LLF: 123.68934956298561
Iteration: 8, Func. Count: 85, Neg. LLF: 123.68560911087116
Iteration: 9, Func. Count: 95, Neg. LLF: 123.68548660164176
Iteration: 10, Func. Count: 105, Neg. LLF: 123.68545357627704
Iteration: 11, Func. Count: 115, Neg. LLF: 123.68541157625289
Iteration: 12, Func. Count: 125, Neg. LLF: 123.68539412606316
Iteration: 13, Func. Count: 135, Neg. LLF: 123.68539113710398
Iteration: 14, Func. Count: 144, Neg. LLF: 123.68539115480175
Optimization terminated successfully (Exit mode 0)
Current function value: 123.68539113710398
Iterations: 14
Function evaluations: 144
Gradient evaluations: 14
Iteration: 1, Func. Count: 12, Neg. LLF: 127.77410440109165
Iteration: 2, Func. Count: 25, Neg. LLF: 129.90099086994988
Iteration: 3, Func. Count: 37, Neg. LLF: 124.35532457639692
Iteration: 4, Func. Count: 49, Neg. LLF: 124.21680672305874
Iteration: 5, Func. Count: 60, Neg. LLF: 124.1238277109201
Iteration: 6, Func. Count: 71, Neg. LLF: 124.0876616937786
Iteration: 7, Func. Count: 82, Neg. LLF: 123.86865720476767
Iteration: 8, Func. Count: 93, Neg. LLF: 123.72597503231175
Iteration: 9, Func. Count: 104, Neg. LLF: 123.69614053488849
Iteration: 10, Func. Count: 115, Neg. LLF: 123.68569952728292
Iteration: 11, Func. Count: 126, Neg. LLF: 123.68545534240143
Iteration: 12, Func. Count: 137, Neg. LLF: 123.68540471583133
Iteration: 13, Func. Count: 148, Neg. LLF: 123.68539981227087
Iteration: 14, Func. Count: 159, Neg. LLF: 123.68539419058192
Iteration: 15, Func. Count: 170, Neg. LLF: 123.68539370746412
Optimization terminated successfully (Exit mode 0)
Current function value: 123.68539370746412
Iterations: 15
Function evaluations: 170
Gradient evaluations: 15
Iteration: 1, Func. Count: 13, Neg. LLF: 127.09332138531656
Iteration: 2, Func. Count: 27, Neg. LLF: 132.0593957309737
Iteration: 3, Func. Count: 40, Neg. LLF: 124.2834681371952
Iteration: 4, Func. Count: 53, Neg. LLF: 123.62741139371639
Iteration: 5, Func. Count: 65, Neg. LLF: 134.96611233933604
Iteration: 6, Func. Count: 78, Neg. LLF: 123.25796235610304
Iteration: 7, Func. Count: 90, Neg. LLF: 122.6920962058762
Iteration: 8, Func. Count: 102, Neg. LLF: 122.58440874200494
Iteration: 9, Func. Count: 114, Neg. LLF: 122.5328501293171
Iteration: 10, Func. Count: 126, Neg. LLF: 123.05043460697603
Iteration: 11, Func. Count: 139, Neg. LLF: 122.38739991069507
Iteration: 12, Func. Count: 151, Neg. LLF: 122.359091179965
Iteration: 13, Func. Count: 163, Neg. LLF: 122.35465758051498
Iteration: 14, Func. Count: 175, Neg. LLF: 122.34364673463077
Iteration: 15, Func. Count: 187, Neg. LLF: 122.3424765627906
Iteration: 16, Func. Count: 199, Neg. LLF: 122.34239020760202
Iteration: 17, Func. Count: 211, Neg. LLF: 122.34238889842587
Iteration: 18, Func. Count: 222, Neg. LLF: 122.34238882501094
Optimization terminated successfully (Exit mode 0)
Current function value: 122.34238889842587
Iterations: 18
Function evaluations: 222
Gradient evaluations: 18
Iteration: 1, Func. Count: 14, Neg. LLF: 143.65666341032477
Iteration: 2, Func. Count: 28, Neg. LLF: 125.67563831288858
Iteration: 3, Func. Count: 42, Neg. LLF: 149.40772059560462
Iteration: 4, Func. Count: 56, Neg. LLF: 126.1900213612735
Iteration: 5, Func. Count: 70, Neg. LLF: 124.50820350641266
Iteration: 6, Func. Count: 84, Neg. LLF: 123.59433187214928
Iteration: 7, Func. Count: 98, Neg. LLF: 122.89072879139165
Iteration: 8, Func. Count: 111, Neg. LLF: 125.30197949663884
Iteration: 9, Func. Count: 125, Neg. LLF: 123.90360070993307
Iteration: 10, Func. Count: 139, Neg. LLF: 122.34887556606941
Iteration: 11, Func. Count: 152, Neg. LLF: 122.16201313551689
Iteration: 12, Func. Count: 165, Neg. LLF: 122.05551790693254
Iteration: 13, Func. Count: 178, Neg. LLF: 122.01975113773575
Iteration: 14, Func. Count: 191, Neg. LLF: 122.01092817017073
Iteration: 15, Func. Count: 204, Neg. LLF: 122.0085365652112
Iteration: 16, Func. Count: 217, Neg. LLF: 122.00392174005107
Iteration: 17, Func. Count: 230, Neg. LLF: 122.04196730892401
Iteration: 18, Func. Count: 244, Neg. LLF: 122.00198695758078
Iteration: 19, Func. Count: 258, Neg. LLF: 121.99528708991936
Iteration: 20, Func. Count: 271, Neg. LLF: 121.9952266980726
Iteration: 21, Func. Count: 284, Neg. LLF: 121.99512947276146
Iteration: 22, Func. Count: 297, Neg. LLF: 121.99511719563299
Iteration: 23, Func. Count: 310, Neg. LLF: 121.99511413813755
Iteration: 24, Func. Count: 322, Neg. LLF: 121.99511410988485
Optimization terminated successfully (Exit mode 0)
Current function value: 121.99511413813755
Iterations: 24
Function evaluations: 322
Gradient evaluations: 24
Iteration: 1, Func. Count: 7, Neg. LLF: 136.80241863340152
Iteration: 2, Func. Count: 14, Neg. LLF: 152.5826528151749
Iteration: 3, Func. Count: 21, Neg. LLF: 124.99287026254494
Iteration: 4, Func. Count: 27, Neg. LLF: 124.85629588477106
Iteration: 5, Func. Count: 33, Neg. LLF: 124.63545994719428
Iteration: 6, Func. Count: 39, Neg. LLF: 124.57055972683358
Iteration: 7, Func. Count: 45, Neg. LLF: 124.54096353809352
Iteration: 8, Func. Count: 51, Neg. LLF: 124.54074865685169
Iteration: 9, Func. Count: 57, Neg. LLF: 124.54074511911385
Iteration: 10, Func. Count: 62, Neg. LLF: 124.54074534824038
Optimization terminated successfully (Exit mode 0)
Current function value: 124.54074511911385
Iterations: 10
Function evaluations: 62
Gradient evaluations: 10
Iteration: 1, Func. Count: 8, Neg. LLF: 165.86624100989573
Iteration: 2, Func. Count: 17, Neg. LLF: 124.9385482882625
Iteration: 3, Func. Count: 24, Neg. LLF: 124.92199909653155
Iteration: 4, Func. Count: 31, Neg. LLF: 124.92155251983705
Iteration: 5, Func. Count: 38, Neg. LLF: 124.92124815924359
Iteration: 6, Func. Count: 45, Neg. LLF: 124.91938041259681
Iteration: 7, Func. Count: 52, Neg. LLF: 124.91521521788886
Iteration: 8, Func. Count: 59, Neg. LLF: 124.9079471172666
Iteration: 9, Func. Count: 66, Neg. LLF: 124.89864586417525
Iteration: 10, Func. Count: 73, Neg. LLF: 124.88203433701102
Iteration: 11, Func. Count: 80, Neg. LLF: 124.87388433196894
Iteration: 12, Func. Count: 87, Neg. LLF: 124.82650070858188
Iteration: 13, Func. Count: 94, Neg. LLF: 124.67491256197499
Iteration: 14, Func. Count: 101, Neg. LLF: 124.61495837107674
Iteration: 15, Func. Count: 108, Neg. LLF: 124.57639078973206
Iteration: 16, Func. Count: 115, Neg. LLF: 124.55533672066524
Iteration: 17, Func. Count: 122, Neg. LLF: 124.54327292307904
Iteration: 18, Func. Count: 129, Neg. LLF: 124.54087927716503
Iteration: 19, Func. Count: 136, Neg. LLF: 124.54077362822522
Iteration: 20, Func. Count: 143, Neg. LLF: 124.54075077675317
Iteration: 21, Func. Count: 150, Neg. LLF: 124.54084679650587
Optimization terminated successfully (Exit mode 0)
Current function value: 124.54075030379195
Iterations: 22
Function evaluations: 151
Gradient evaluations: 21
Iteration: 1, Func. Count: 9, Neg. LLF: 25509013.005717263
Iteration: 2, Func. Count: 19, Neg. LLF: 124.54895195919946
Iteration: 3, Func. Count: 27, Neg. LLF: 124.41717384463938
Iteration: 4, Func. Count: 35, Neg. LLF: 124.66768874538757
Iteration: 5, Func. Count: 44, Neg. LLF: 124.35918163446804
Iteration: 6, Func. Count: 52, Neg. LLF: 124.35076549477508
Iteration: 7, Func. Count: 60, Neg. LLF: 124.35062753620889
Iteration: 8, Func. Count: 68, Neg. LLF: 124.35051999483025
Iteration: 9, Func. Count: 76, Neg. LLF: 124.3500069894187
Iteration: 10, Func. Count: 84, Neg. LLF: 124.34783762246036
Iteration: 11, Func. Count: 92, Neg. LLF: 124.34494883431397
Iteration: 12, Func. Count: 100, Neg. LLF: 445.0747507914071
Optimization terminated successfully (Exit mode 0)
Current function value: 124.34494869344628
Iterations: 13
Function evaluations: 105
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 25505104.69842826
Iteration: 2, Func. Count: 21, Neg. LLF: 124.4842368472895
Iteration: 3, Func. Count: 30, Neg. LLF: 124.4260962130975
Iteration: 4, Func. Count: 39, Neg. LLF: 124.56429658263279
Iteration: 5, Func. Count: 49, Neg. LLF: 124.3376287630413
Iteration: 6, Func. Count: 58, Neg. LLF: 124.28909500907633
Iteration: 7, Func. Count: 67, Neg. LLF: 124.30129483308691
Iteration: 8, Func. Count: 77, Neg. LLF: 124.25343248958868
Iteration: 9, Func. Count: 86, Neg. LLF: 124.2392463333618
Iteration: 10, Func. Count: 95, Neg. LLF: 124.23891812049429
Iteration: 11, Func. Count: 104, Neg. LLF: 124.2388708775689
Iteration: 12, Func. Count: 113, Neg. LLF: 124.23886931252756
Iteration: 13, Func. Count: 121, Neg. LLF: 124.23886931265714
Optimization terminated successfully (Exit mode 0)
Current function value: 124.23886931252756
Iterations: 13
Function evaluations: 121
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 25502993.539279565
Iteration: 2, Func. Count: 23, Neg. LLF: 124.45748418266842
Iteration: 3, Func. Count: 33, Neg. LLF: 124.46452450619617
Iteration: 4, Func. Count: 44, Neg. LLF: 124.47386440048841
Iteration: 5, Func. Count: 55, Neg. LLF: 124.36636658766633
Iteration: 6, Func. Count: 65, Neg. LLF: 124.36338223385212
Iteration: 7, Func. Count: 75, Neg. LLF: 124.36257282024603
Iteration: 8, Func. Count: 85, Neg. LLF: 124.3622701421019
Iteration: 9, Func. Count: 95, Neg. LLF: 124.36201327598386
Iteration: 10, Func. Count: 105, Neg. LLF: 124.35973590079995
Iteration: 11, Func. Count: 115, Neg. LLF: 124.35920040987293
Iteration: 12, Func. Count: 125, Neg. LLF: 124.35898120307007
Iteration: 13, Func. Count: 134, Neg. LLF: 124.35898120294408
Optimization terminated successfully (Exit mode 0)
Current function value: 124.35898120307007
Iterations: 13
Function evaluations: 134
Gradient evaluations: 13
Iteration: 1, Func. Count: 8, Neg. LLF: 131.258703693156
Iteration: 2, Func. Count: 16, Neg. LLF: 157.88673849593732
Iteration: 3, Func. Count: 24, Neg. LLF: 123.9216975853832
Iteration: 4, Func. Count: 31, Neg. LLF: 124.67838228427608
Iteration: 5, Func. Count: 41, Neg. LLF: 124.19567880025403
Iteration: 6, Func. Count: 49, Neg. LLF: 123.69917690441694
Iteration: 7, Func. Count: 56, Neg. LLF: 123.69299161801082
Iteration: 8, Func. Count: 63, Neg. LLF: 123.68996354432049
Iteration: 9, Func. Count: 70, Neg. LLF: 123.68546825726685
Iteration: 10, Func. Count: 77, Neg. LLF: 123.6853918639478
Iteration: 11, Func. Count: 84, Neg. LLF: 123.685391002121
Optimization terminated successfully (Exit mode 0)
Current function value: 123.685391002121
Iterations: 11
Function evaluations: 84
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 127.77567587971389
Iteration: 2, Func. Count: 19, Neg. LLF: 129.076112911169
Iteration: 3, Func. Count: 28, Neg. LLF: 124.17591305304626
Iteration: 4, Func. Count: 36, Neg. LLF: 123.83888943302286
Iteration: 5, Func. Count: 44, Neg. LLF: 123.71000845709187
Iteration: 6, Func. Count: 52, Neg. LLF: 123.69350555153567
Iteration: 7, Func. Count: 60, Neg. LLF: 123.68623025467286
Iteration: 8, Func. Count: 68, Neg. LLF: 123.68559511661063
Iteration: 9, Func. Count: 76, Neg. LLF: 123.68551742462901
Iteration: 10, Func. Count: 84, Neg. LLF: 123.68545674480103
Iteration: 11, Func. Count: 92, Neg. LLF: 123.68540660717555
Iteration: 12, Func. Count: 100, Neg. LLF: 123.68539233680612
Iteration: 13, Func. Count: 108, Neg. LLF: 123.6853910352043
Iteration: 14, Func. Count: 115, Neg. LLF: 123.68539105288664
Optimization terminated successfully (Exit mode 0)
Current function value: 123.6853910352043
Iterations: 14
Function evaluations: 115
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 127.7279936735525
Iteration: 2, Func. Count: 21, Neg. LLF: 130.0995847341695
Iteration: 3, Func. Count: 31, Neg. LLF: 124.2677484937302
Iteration: 4, Func. Count: 41, Neg. LLF: 124.24672826460561
Iteration: 5, Func. Count: 51, Neg. LLF: 124.1428410058352
Iteration: 6, Func. Count: 60, Neg. LLF: 124.09350707792318
Iteration: 7, Func. Count: 69, Neg. LLF: 123.95956856060694
Iteration: 8, Func. Count: 78, Neg. LLF: 123.871764441922
Iteration: 9, Func. Count: 87, Neg. LLF: 123.6891344680902
Iteration: 10, Func. Count: 96, Neg. LLF: 123.68566087086153
Iteration: 11, Func. Count: 105, Neg. LLF: 123.68548958853876
Iteration: 12, Func. Count: 114, Neg. LLF: 123.68542269057701
Iteration: 13, Func. Count: 123, Neg. LLF: 123.68540959343854
Iteration: 14, Func. Count: 132, Neg. LLF: 123.6853990522003
Iteration: 15, Func. Count: 141, Neg. LLF: 123.68539303644936
Iteration: 16, Func. Count: 150, Neg. LLF: 123.68539116661226
Iteration: 17, Func. Count: 158, Neg. LLF: 123.68539120042689
Optimization terminated successfully (Exit mode 0)
Current function value: 123.68539116661226
Iterations: 17
Function evaluations: 158
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 126.91958602567914
Iteration: 2, Func. Count: 23, Neg. LLF: 132.4207307761937
Iteration: 3, Func. Count: 34, Neg. LLF: 123.8841288092076
Iteration: 4, Func. Count: 44, Neg. LLF: 123.56531369242411
Iteration: 5, Func. Count: 54, Neg. LLF: 126.57384823648916
Iteration: 6, Func. Count: 65, Neg. LLF: 123.05121510349115
Iteration: 7, Func. Count: 75, Neg. LLF: 122.55585125966678
Iteration: 8, Func. Count: 85, Neg. LLF: 122.51981965826029
Iteration: 9, Func. Count: 95, Neg. LLF: 122.4233734678738
Iteration: 10, Func. Count: 105, Neg. LLF: 122.44152199686378
Iteration: 11, Func. Count: 116, Neg. LLF: 122.34809402464289
Iteration: 12, Func. Count: 126, Neg. LLF: 122.33646216958479
Iteration: 13, Func. Count: 136, Neg. LLF: 122.33457680739052
Iteration: 14, Func. Count: 146, Neg. LLF: 122.33418789245819
Iteration: 15, Func. Count: 156, Neg. LLF: 122.33415969755823
Iteration: 16, Func. Count: 166, Neg. LLF: 122.33415906427027
Optimization terminated successfully (Exit mode 0)
Current function value: 122.33415906427027
Iterations: 16
Function evaluations: 166
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 143.77106892543293
Iteration: 2, Func. Count: 24, Neg. LLF: 125.92910152398977
Iteration: 3, Func. Count: 36, Neg. LLF: 151.73112366006063
Iteration: 4, Func. Count: 49, Neg. LLF: 124.62362447751481
Iteration: 5, Func. Count: 61, Neg. LLF: 123.53989899501752
Iteration: 6, Func. Count: 72, Neg. LLF: 123.12575407668216
Iteration: 7, Func. Count: 83, Neg. LLF: 122.39061847487466
Iteration: 8, Func. Count: 94, Neg. LLF: 122.48184403206315
Iteration: 9, Func. Count: 106, Neg. LLF: 122.26692854878716
Iteration: 10, Func. Count: 117, Neg. LLF: 122.25390928812132
Iteration: 11, Func. Count: 128, Neg. LLF: 122.25164265166985
Iteration: 12, Func. Count: 139, Neg. LLF: 122.25036820916407
Iteration: 13, Func. Count: 150, Neg. LLF: 122.25034936312862
Iteration: 14, Func. Count: 160, Neg. LLF: 122.25034930471051
Optimization terminated successfully (Exit mode 0)
Current function value: 122.25034936312862
Iterations: 14
Function evaluations: 160
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 136.1927666712181
Iteration: 2, Func. Count: 18, Neg. LLF: 152.7879974925947
Iteration: 3, Func. Count: 27, Neg. LLF: 124.04063073405594
Iteration: 4, Func. Count: 35, Neg. LLF: 124.24690492691526
Iteration: 5, Func. Count: 45, Neg. LLF: 124.39376252316579
Iteration: 6, Func. Count: 54, Neg. LLF: 123.7085238489052
Iteration: 7, Func. Count: 62, Neg. LLF: 123.69873131039472
Iteration: 8, Func. Count: 70, Neg. LLF: 123.69271848378402
Iteration: 9, Func. Count: 78, Neg. LLF: 123.68619761910556
Iteration: 10, Func. Count: 86, Neg. LLF: 123.68543549401213
Iteration: 11, Func. Count: 94, Neg. LLF: 123.68539446327753
Iteration: 12, Func. Count: 102, Neg. LLF: 123.68539100320756
Iteration: 13, Func. Count: 109, Neg. LLF: 123.68539076131631
Optimization terminated successfully (Exit mode 0)
Current function value: 123.68539100320756
Iterations: 13
Function evaluations: 109
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 127.8669557007263
Iteration: 2, Func. Count: 21, Neg. LLF: 128.94388483794827
Iteration: 3, Func. Count: 31, Neg. LLF: 124.1651225589589
Iteration: 4, Func. Count: 40, Neg. LLF: 124.50730185320987
Iteration: 5, Func. Count: 50, Neg. LLF: 123.7117872952904
Iteration: 6, Func. Count: 59, Neg. LLF: 123.69625296502657
Iteration: 7, Func. Count: 68, Neg. LLF: 123.68906866190757
Iteration: 8, Func. Count: 77, Neg. LLF: 123.68562598546782
Iteration: 9, Func. Count: 86, Neg. LLF: 123.68548256485876
Iteration: 10, Func. Count: 95, Neg. LLF: 123.68545311007051
Iteration: 11, Func. Count: 104, Neg. LLF: 123.68540712482394
Iteration: 12, Func. Count: 113, Neg. LLF: 123.68539324578414
Iteration: 13, Func. Count: 122, Neg. LLF: 123.68539107058469
Iteration: 14, Func. Count: 130, Neg. LLF: 123.68539108828445
Optimization terminated successfully (Exit mode 0)
Current function value: 123.68539107058469
Iterations: 14
Function evaluations: 130
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 127.77672291467695
Iteration: 2, Func. Count: 23, Neg. LLF: 129.91246674639922
Iteration: 3, Func. Count: 34, Neg. LLF: 124.290730353869
Iteration: 4, Func. Count: 44, Neg. LLF: 124.19447564574516
Iteration: 5, Func. Count: 54, Neg. LLF: 124.44854745519505
Iteration: 6, Func. Count: 65, Neg. LLF: 124.138786805808
Iteration: 7, Func. Count: 75, Neg. LLF: 124.07919895958982
Iteration: 8, Func. Count: 85, Neg. LLF: 123.95554946409129
Iteration: 9, Func. Count: 95, Neg. LLF: 123.88768264623143
Iteration: 10, Func. Count: 105, Neg. LLF: 123.69130716439534
Iteration: 11, Func. Count: 115, Neg. LLF: 123.68738690200121
Iteration: 12, Func. Count: 125, Neg. LLF: 123.68581923802195
Iteration: 13, Func. Count: 135, Neg. LLF: 123.68544965853683
Iteration: 14, Func. Count: 145, Neg. LLF: 123.68540631971425
Iteration: 15, Func. Count: 155, Neg. LLF: 123.68540061011099
Iteration: 16, Func. Count: 165, Neg. LLF: 123.68539596638047
Iteration: 17, Func. Count: 175, Neg. LLF: 123.68539241055417
Iteration: 18, Func. Count: 185, Neg. LLF: 123.68539115467777
Iteration: 19, Func. Count: 194, Neg. LLF: 123.68539118848396
Optimization terminated successfully (Exit mode 0)
Current function value: 123.68539115467777
Iterations: 19
Function evaluations: 194
Gradient evaluations: 19
Iteration: 1, Func. Count: 12, Neg. LLF: 127.0091075161123
Iteration: 2, Func. Count: 25, Neg. LLF: 132.20313417215615
Iteration: 3, Func. Count: 37, Neg. LLF: 124.01701740347046
Iteration: 4, Func. Count: 49, Neg. LLF: 123.51171017221796
Iteration: 5, Func. Count: 60, Neg. LLF: 134.5921118478308
Iteration: 6, Func. Count: 72, Neg. LLF: 123.13749278723905
Iteration: 7, Func. Count: 83, Neg. LLF: 122.70427049200032
Iteration: 8, Func. Count: 94, Neg. LLF: 122.60261678438239
Iteration: 9, Func. Count: 105, Neg. LLF: 122.43438387249618
Iteration: 10, Func. Count: 116, Neg. LLF: 122.38264981836092
Iteration: 11, Func. Count: 127, Neg. LLF: 122.34749095931275
Iteration: 12, Func. Count: 138, Neg. LLF: 122.33504478319371
Iteration: 13, Func. Count: 149, Neg. LLF: 122.33430653613715
Iteration: 14, Func. Count: 160, Neg. LLF: 122.33417278311036
Iteration: 15, Func. Count: 171, Neg. LLF: 122.33416164597261
Iteration: 16, Func. Count: 182, Neg. LLF: 122.33415932696418
Iteration: 17, Func. Count: 192, Neg. LLF: 122.33415924898402
Optimization terminated successfully (Exit mode 0)
Current function value: 122.33415932696418
Iterations: 17
Function evaluations: 192
Gradient evaluations: 17
Iteration: 1, Func. Count: 13, Neg. LLF: 143.3857380721527
Iteration: 2, Func. Count: 26, Neg. LLF: 126.01835234320868
Iteration: 3, Func. Count: 39, Neg. LLF: 147.78895781407158
Iteration: 4, Func. Count: 52, Neg. LLF: 124.84107247897211
Iteration: 5, Func. Count: 65, Neg. LLF: 123.81024348259227
Iteration: 6, Func. Count: 77, Neg. LLF: 122.90610204462114
Iteration: 7, Func. Count: 89, Neg. LLF: 122.34006015466836
Iteration: 8, Func. Count: 101, Neg. LLF: 122.31505767337364
Iteration: 9, Func. Count: 114, Neg. LLF: 123.06335961538652
Iteration: 10, Func. Count: 128, Neg. LLF: 122.08960727725717
Iteration: 11, Func. Count: 141, Neg. LLF: 122.02291287273252
Iteration: 12, Func. Count: 153, Neg. LLF: 122.02135313829041
Iteration: 13, Func. Count: 166, Neg. LLF: 122.01087139038489
Iteration: 14, Func. Count: 178, Neg. LLF: 122.00331087718045
Iteration: 15, Func. Count: 190, Neg. LLF: 122.00062290217052
Iteration: 16, Func. Count: 202, Neg. LLF: 121.99556940207933
Iteration: 17, Func. Count: 214, Neg. LLF: 121.99513477637659
Iteration: 18, Func. Count: 226, Neg. LLF: 121.99511459031658
Iteration: 19, Func. Count: 238, Neg. LLF: 121.99511406755657
Optimization terminated successfully (Exit mode 0)
Current function value: 121.99511406755657
Iterations: 19
Function evaluations: 238
Gradient evaluations: 19
Iteration: 1, Func. Count: 10, Neg. LLF: 136.30664388335043
Iteration: 2, Func. Count: 20, Neg. LLF: 152.61034704933155
Iteration: 3, Func. Count: 30, Neg. LLF: 124.05321963229939
Iteration: 4, Func. Count: 39, Neg. LLF: 124.25473852601704
Iteration: 5, Func. Count: 50, Neg. LLF: 124.41347666257313
Iteration: 6, Func. Count: 60, Neg. LLF: 123.7090502006409
Iteration: 7, Func. Count: 69, Neg. LLF: 123.6992374181848
Iteration: 8, Func. Count: 78, Neg. LLF: 123.69293464577606
Iteration: 9, Func. Count: 87, Neg. LLF: 123.68652919220688
Iteration: 10, Func. Count: 96, Neg. LLF: 123.68545175768028
Iteration: 11, Func. Count: 105, Neg. LLF: 123.68539646289226
Iteration: 12, Func. Count: 114, Neg. LLF: 123.68539100516391
Iteration: 13, Func. Count: 122, Neg. LLF: 123.68539117495263
Optimization terminated successfully (Exit mode 0)
Current function value: 123.68539100516391
Iterations: 13
Function evaluations: 122
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 127.86721389674899
Iteration: 2, Func. Count: 23, Neg. LLF: 128.96087342011808
Iteration: 3, Func. Count: 34, Neg. LLF: 124.16484424890803
Iteration: 4, Func. Count: 44, Neg. LLF: 124.86898645767141
Iteration: 5, Func. Count: 55, Neg. LLF: 123.7104273785242
Iteration: 6, Func. Count: 65, Neg. LLF: 123.69650893870272
Iteration: 7, Func. Count: 75, Neg. LLF: 123.69003651438607
Iteration: 8, Func. Count: 85, Neg. LLF: 123.68565530678424
Iteration: 9, Func. Count: 95, Neg. LLF: 123.68549535394466
Iteration: 10, Func. Count: 105, Neg. LLF: 123.68546093750031
Iteration: 11, Func. Count: 115, Neg. LLF: 123.6854140015591
Iteration: 12, Func. Count: 125, Neg. LLF: 123.68539464971713
Iteration: 13, Func. Count: 135, Neg. LLF: 123.6853911617557
Iteration: 14, Func. Count: 144, Neg. LLF: 123.68539117945991
Optimization terminated successfully (Exit mode 0)
Current function value: 123.6853911617557
Iterations: 14
Function evaluations: 144
Gradient evaluations: 14
Iteration: 1, Func. Count: 12, Neg. LLF: 127.77548809673367
Iteration: 2, Func. Count: 25, Neg. LLF: 129.94889661365852
Iteration: 3, Func. Count: 37, Neg. LLF: 124.30950343674854
Iteration: 4, Func. Count: 49, Neg. LLF: 124.21760118867475
Iteration: 5, Func. Count: 60, Neg. LLF: 124.13028170022135
Iteration: 6, Func. Count: 71, Neg. LLF: 124.09075452558265
Iteration: 7, Func. Count: 82, Neg. LLF: 123.9755919778986
Iteration: 8, Func. Count: 93, Neg. LLF: 123.90882125513214
Iteration: 9, Func. Count: 104, Neg. LLF: 123.69364820143753
Iteration: 10, Func. Count: 115, Neg. LLF: 123.68632619085099
Iteration: 11, Func. Count: 126, Neg. LLF: 123.68557951916954
Iteration: 12, Func. Count: 137, Neg. LLF: 123.68544284868636
Iteration: 13, Func. Count: 148, Neg. LLF: 123.6854115169904
Iteration: 14, Func. Count: 159, Neg. LLF: 123.68540526953038
Iteration: 15, Func. Count: 170, Neg. LLF: 123.68539489936555
Iteration: 16, Func. Count: 181, Neg. LLF: 123.68539118778473
Iteration: 17, Func. Count: 191, Neg. LLF: 123.68539122161191
Optimization terminated successfully (Exit mode 0)
Current function value: 123.68539118778473
Iterations: 17
Function evaluations: 191
Gradient evaluations: 17
Iteration: 1, Func. Count: 13, Neg. LLF: 9740638.857202262
Iteration: 2, Func. Count: 27, Neg. LLF: 125.34971677752677
Iteration: 3, Func. Count: 40, Neg. LLF: 167.50171843960086
Iteration: 4, Func. Count: 53, Neg. LLF: 124.43746597322921
Iteration: 5, Func. Count: 66, Neg. LLF: 125.97982069262694
Iteration: 6, Func. Count: 79, Neg. LLF: 122.42925202989653
Iteration: 7, Func. Count: 91, Neg. LLF: 122.37363458847324
Iteration: 8, Func. Count: 103, Neg. LLF: 122.35453615395828
Iteration: 9, Func. Count: 115, Neg. LLF: 122.34436030838923
Iteration: 10, Func. Count: 127, Neg. LLF: 122.34275927798531
Iteration: 11, Func. Count: 139, Neg. LLF: 122.34247859928541
Iteration: 12, Func. Count: 151, Neg. LLF: 122.34242095353461
Iteration: 13, Func. Count: 163, Neg. LLF: 122.34239428019787
Iteration: 14, Func. Count: 175, Neg. LLF: 122.34238921336018
Iteration: 15, Func. Count: 186, Neg. LLF: 122.342389140135
Optimization terminated successfully (Exit mode 0)
Current function value: 122.34238921336018
Iterations: 15
Function evaluations: 186
Gradient evaluations: 15
Iteration: 1, Func. Count: 14, Neg. LLF: 143.49762521064758
Iteration: 2, Func. Count: 28, Neg. LLF: 126.00693685296592
Iteration: 3, Func. Count: 42, Neg. LLF: 148.25105113205007
Iteration: 4, Func. Count: 56, Neg. LLF: 124.59495914681048
Iteration: 5, Func. Count: 70, Neg. LLF: 125.07783413107867
Iteration: 6, Func. Count: 84, Neg. LLF: 123.27006432347964
Iteration: 7, Func. Count: 97, Neg. LLF: 122.8724847853045
Iteration: 8, Func. Count: 110, Neg. LLF: 122.4618923072143
Iteration: 9, Func. Count: 123, Neg. LLF: 122.84589378377838
Iteration: 10, Func. Count: 137, Neg. LLF: 122.43272826667844
Iteration: 11, Func. Count: 150, Neg. LLF: 122.36335453745956
Iteration: 12, Func. Count: 163, Neg. LLF: 122.34586223626219
Iteration: 13, Func. Count: 176, Neg. LLF: 122.34253646414795
Iteration: 14, Func. Count: 189, Neg. LLF: 122.34234951343896
Iteration: 15, Func. Count: 202, Neg. LLF: 122.34219306439907
Iteration: 16, Func. Count: 225, Neg. LLF: 122.40277213467127
Iteration: 17, Func. Count: 241, Neg. LLF: 122.34398969244518
Iteration: 18, Func. Count: 256, Neg. LLF: 122.34250811136614
Iteration: 19, Func. Count: 270, Neg. LLF: 122.34239581077192
Iteration: 20, Func. Count: 284, Neg. LLF: 122.34238971693554
Iteration: 21, Func. Count: 297, Neg. LLF: 122.34238887829694
Optimization terminated successfully (Exit mode 0)
Current function value: 122.34238887829694
Iterations: 22
Function evaluations: 297
Gradient evaluations: 21
Iteration: 1, Func. Count: 11, Neg. LLF: 136.53063868201082
Iteration: 2, Func. Count: 22, Neg. LLF: 152.28802113248693
Iteration: 3, Func. Count: 33, Neg. LLF: 124.06275838459484
Iteration: 4, Func. Count: 43, Neg. LLF: 124.25490965588071
Iteration: 5, Func. Count: 55, Neg. LLF: 124.41776596186004
Iteration: 6, Func. Count: 66, Neg. LLF: 123.70924059132768
Iteration: 7, Func. Count: 76, Neg. LLF: 123.69941921823172
Iteration: 8, Func. Count: 86, Neg. LLF: 123.69296132877324
Iteration: 9, Func. Count: 96, Neg. LLF: 123.68663166736114
Iteration: 10, Func. Count: 106, Neg. LLF: 123.68545558687272
Iteration: 11, Func. Count: 116, Neg. LLF: 123.68539699528705
Iteration: 12, Func. Count: 126, Neg. LLF: 123.68539100542446
Iteration: 13, Func. Count: 135, Neg. LLF: 123.68539122920244
Optimization terminated successfully (Exit mode 0)
Current function value: 123.68539100542446
Iterations: 13
Function evaluations: 135
Gradient evaluations: 13
Iteration: 1, Func. Count: 12, Neg. LLF: 127.8235996354085
Iteration: 2, Func. Count: 25, Neg. LLF: 129.01145441218804
Iteration: 3, Func. Count: 37, Neg. LLF: 124.16827301578759
Iteration: 4, Func. Count: 48, Neg. LLF: 124.4719924271069
Iteration: 5, Func. Count: 60, Neg. LLF: 123.71462004866346
Iteration: 6, Func. Count: 71, Neg. LLF: 123.69951729297705
Iteration: 7, Func. Count: 82, Neg. LLF: 123.69007152345797
Iteration: 8, Func. Count: 93, Neg. LLF: 123.68590329195793
Iteration: 9, Func. Count: 104, Neg. LLF: 123.68555823529695
Iteration: 10, Func. Count: 115, Neg. LLF: 123.68550496672911
Iteration: 11, Func. Count: 126, Neg. LLF: 123.68542893662881
Iteration: 12, Func. Count: 137, Neg. LLF: 123.68539696616787
Iteration: 13, Func. Count: 148, Neg. LLF: 123.68539126477975
Iteration: 14, Func. Count: 158, Neg. LLF: 123.68539128249381
Optimization terminated successfully (Exit mode 0)
Current function value: 123.68539126477975
Iterations: 14
Function evaluations: 158
Gradient evaluations: 14
Iteration: 1, Func. Count: 13, Neg. LLF: 127.75084854699504
Iteration: 2, Func. Count: 27, Neg. LLF: 129.94923779731928
Iteration: 3, Func. Count: 40, Neg. LLF: 124.30732310308
Iteration: 4, Func. Count: 53, Neg. LLF: 124.21757326951682
Iteration: 5, Func. Count: 65, Neg. LLF: 124.13149011977958
Iteration: 6, Func. Count: 77, Neg. LLF: 124.09284955671046
Iteration: 7, Func. Count: 89, Neg. LLF: 123.98039153855089
Iteration: 8, Func. Count: 101, Neg. LLF: 123.91259636468983
Iteration: 9, Func. Count: 113, Neg. LLF: 123.6937905841177
Iteration: 10, Func. Count: 125, Neg. LLF: 123.6864734551011
Iteration: 11, Func. Count: 137, Neg. LLF: 123.68558462939194
Iteration: 12, Func. Count: 149, Neg. LLF: 123.6854429204474
Iteration: 13, Func. Count: 161, Neg. LLF: 123.68541113843075
Iteration: 14, Func. Count: 173, Neg. LLF: 123.68540440559681
Iteration: 15, Func. Count: 185, Neg. LLF: 123.68539275762441
Iteration: 16, Func. Count: 197, Neg. LLF: 123.68539114433472
Iteration: 17, Func. Count: 208, Neg. LLF: 123.68539117816033
Optimization terminated successfully (Exit mode 0)
Current function value: 123.68539114433472
Iterations: 17
Function evaluations: 208
Gradient evaluations: 17
Iteration: 1, Func. Count: 14, Neg. LLF: 9743120.721190874
Iteration: 2, Func. Count: 29, Neg. LLF: 125.08854307710703
Iteration: 3, Func. Count: 43, Neg. LLF: 169.2086892299391
Iteration: 4, Func. Count: 57, Neg. LLF: 125.67482714297867
Iteration: 5, Func. Count: 71, Neg. LLF: 124.7268736576079
Iteration: 6, Func. Count: 85, Neg. LLF: 122.43153118940585
Iteration: 7, Func. Count: 98, Neg. LLF: 122.37015937348902
Iteration: 8, Func. Count: 111, Neg. LLF: 122.58961743101236
Iteration: 9, Func. Count: 125, Neg. LLF: 122.34609092610583
Iteration: 10, Func. Count: 138, Neg. LLF: 122.3428735301929
Iteration: 11, Func. Count: 151, Neg. LLF: 122.34257379066264
Iteration: 12, Func. Count: 164, Neg. LLF: 122.3424235338946
Iteration: 13, Func. Count: 177, Neg. LLF: 122.34239712204995
Iteration: 14, Func. Count: 190, Neg. LLF: 122.34238917158727
Iteration: 15, Func. Count: 202, Neg. LLF: 122.34238909814617
Optimization terminated successfully (Exit mode 0)
Current function value: 122.34238917158727
Iterations: 15
Function evaluations: 202
Gradient evaluations: 15
Iteration: 1, Func. Count: 15, Neg. LLF: 143.5140764218992
Iteration: 2, Func. Count: 30, Neg. LLF: 125.86943832003625
Iteration: 3, Func. Count: 45, Neg. LLF: 149.43197797435133
Iteration: 4, Func. Count: 61, Neg. LLF: 124.57749872222371
Iteration: 5, Func. Count: 76, Neg. LLF: 124.09569568027428
Iteration: 6, Func. Count: 91, Neg. LLF: 123.24991724731987
Iteration: 7, Func. Count: 105, Neg. LLF: 122.64882632223957
Iteration: 8, Func. Count: 119, Neg. LLF: 122.44755989890423
Iteration: 9, Func. Count: 133, Neg. LLF: 122.41093555622706
Iteration: 10, Func. Count: 147, Neg. LLF: 122.46190782887066
Iteration: 11, Func. Count: 162, Neg. LLF: 122.34881922271133
Iteration: 12, Func. Count: 176, Neg. LLF: 122.34358358129633
Iteration: 13, Func. Count: 190, Neg. LLF: 122.34256554308037
Iteration: 14, Func. Count: 204, Neg. LLF: 122.34241570499964
Iteration: 15, Func. Count: 218, Neg. LLF: 122.34239043715948
Iteration: 16, Func. Count: 232, Neg. LLF: 122.34664616110426
Optimization terminated successfully (Exit mode 0)
Current function value: 122.34239033073024
Iterations: 17
Function evaluations: 235
Gradient evaluations: 16
Iteration: 1, Func. Count: 8, Neg. LLF: 142.74192625299173
Iteration: 2, Func. Count: 17, Neg. LLF: 167.31484692287606
Iteration: 3, Func. Count: 25, Neg. LLF: 125.02623684255707
Iteration: 4, Func. Count: 32, Neg. LLF: 124.64963086446454
Iteration: 5, Func. Count: 39, Neg. LLF: 124.5689193516029
Iteration: 6, Func. Count: 46, Neg. LLF: 124.55518875373393
Iteration: 7, Func. Count: 53, Neg. LLF: 124.54527578278488
Iteration: 8, Func. Count: 60, Neg. LLF: 124.54135010892924
Iteration: 9, Func. Count: 67, Neg. LLF: 124.5407585968753
Iteration: 10, Func. Count: 74, Neg. LLF: 124.54074479834006
Iteration: 11, Func. Count: 80, Neg. LLF: 124.54074503483204
Optimization terminated successfully (Exit mode 0)
Current function value: 124.54074479834006
Iterations: 11
Function evaluations: 80
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 25514940.205746397
Iteration: 2, Func. Count: 20, Neg. LLF: 124.6725206802535
Iteration: 3, Func. Count: 28, Neg. LLF: 124.83289798701072
Iteration: 4, Func. Count: 37, Neg. LLF: 124.5324756520756
Iteration: 5, Func. Count: 45, Neg. LLF: 124.34624606209857
Iteration: 6, Func. Count: 53, Neg. LLF: 124.34496969954317
Iteration: 7, Func. Count: 61, Neg. LLF: 124.34495346968693
Iteration: 8, Func. Count: 69, Neg. LLF: 124.34494888070759
Iteration: 9, Func. Count: 76, Neg. LLF: 124.34494888073739
Optimization terminated successfully (Exit mode 0)
Current function value: 124.34494888070759
Iterations: 9
Function evaluations: 76
Gradient evaluations: 9
Iteration: 1, Func. Count: 10, Neg. LLF: 25508410.295958277
Iteration: 2, Func. Count: 21, Neg. LLF: 124.54690910598161
Iteration: 3, Func. Count: 30, Neg. LLF: 124.40677645856671
Iteration: 4, Func. Count: 39, Neg. LLF: 124.76722558708724
Iteration: 5, Func. Count: 49, Neg. LLF: 124.35593962394482
Iteration: 6, Func. Count: 58, Neg. LLF: 124.35240028526786
Iteration: 7, Func. Count: 67, Neg. LLF: 124.35189644891265
Iteration: 8, Func. Count: 76, Neg. LLF: 124.35138793726976
Iteration: 9, Func. Count: 85, Neg. LLF: 124.35038402627987
Iteration: 10, Func. Count: 94, Neg. LLF: 124.34852534281336
Iteration: 11, Func. Count: 103, Neg. LLF: 124.34495037717996
Iteration: 12, Func. Count: 112, Neg. LLF: 5697.380643279857
Optimization terminated successfully (Exit mode 0)
Current function value: 124.344949961951
Iterations: 13
Function evaluations: 117
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 25505911.975546304
Iteration: 2, Func. Count: 23, Neg. LLF: 124.49539538386566
Iteration: 3, Func. Count: 33, Neg. LLF: 124.41114918799384
Iteration: 4, Func. Count: 43, Neg. LLF: 124.63587713619012
Iteration: 5, Func. Count: 54, Neg. LLF: 124.34428711758865
Iteration: 6, Func. Count: 64, Neg. LLF: 124.34057070172632
Iteration: 7, Func. Count: 74, Neg. LLF: 124.40787108483622
Iteration: 8, Func. Count: 85, Neg. LLF: 124.40948316736498
Iteration: 9, Func. Count: 96, Neg. LLF: 124.4035211710396
Iteration: 10, Func. Count: 107, Neg. LLF: 124.53239073903887
Iteration: 11, Func. Count: 118, Neg. LLF: 173.02271548848574
Iteration: 12, Func. Count: 132, Neg. LLF: 15760.766761530229
Iteration: 13, Func. Count: 144, Neg. LLF: 9512.273812169185
Iteration: 14, Func. Count: 157, Neg. LLF: 126.00246788299036
Iteration: 15, Func. Count: 168, Neg. LLF: 124.40074655250834
Iteration: 16, Func. Count: 179, Neg. LLF: 124.41088334618682
Iteration: 17, Func. Count: 190, Neg. LLF: 124.23902358432485
Iteration: 18, Func. Count: 200, Neg. LLF: 124.23890129622805
Iteration: 19, Func. Count: 210, Neg. LLF: 124.23886982275141
Iteration: 20, Func. Count: 220, Neg. LLF: 124.23886919854864
Optimization terminated successfully (Exit mode 0)
Current function value: 124.23886919854864
Iterations: 21
Function evaluations: 220
Gradient evaluations: 20
Iteration: 1, Func. Count: 12, Neg. LLF: 25504309.2671544
Iteration: 2, Func. Count: 25, Neg. LLF: 124.47247232166413
Iteration: 3, Func. Count: 36, Neg. LLF: 124.43137611461216
Iteration: 4, Func. Count: 47, Neg. LLF: 124.53148241553524
Iteration: 5, Func. Count: 59, Neg. LLF: 124.36728994271377
Iteration: 6, Func. Count: 70, Neg. LLF: 124.36589936662604
Iteration: 7, Func. Count: 81, Neg. LLF: 124.36404367532867
Iteration: 8, Func. Count: 92, Neg. LLF: 124.363227444206
Iteration: 9, Func. Count: 103, Neg. LLF: 124.36295599476284
Iteration: 10, Func. Count: 114, Neg. LLF: 124.362833659737
Iteration: 11, Func. Count: 125, Neg. LLF: 124.36250713507971
Iteration: 12, Func. Count: 136, Neg. LLF: 124.36212646005175
Iteration: 13, Func. Count: 147, Neg. LLF: 124.35987761796345
Iteration: 14, Func. Count: 158, Neg. LLF: 124.35900839297153
Iteration: 15, Func. Count: 169, Neg. LLF: 124.358984303652
Iteration: 16, Func. Count: 180, Neg. LLF: 124.358981463868
Iteration: 17, Func. Count: 190, Neg. LLF: 124.35898146346074
Optimization terminated successfully (Exit mode 0)
Current function value: 124.358981463868
Iterations: 17
Function evaluations: 190
Gradient evaluations: 17
Iteration: 1, Func. Count: 9, Neg. LLF: 136.19956629791753
Iteration: 2, Func. Count: 18, Neg. LLF: 153.33822958738148
Iteration: 3, Func. Count: 27, Neg. LLF: 123.81970102327922
Iteration: 4, Func. Count: 35, Neg. LLF: 124.51787792135238
Iteration: 5, Func. Count: 45, Neg. LLF: 123.97034683863671
Iteration: 6, Func. Count: 54, Neg. LLF: 123.6946227006692
Iteration: 7, Func. Count: 62, Neg. LLF: 123.69043578864672
Iteration: 8, Func. Count: 70, Neg. LLF: 123.68865753841479
Iteration: 9, Func. Count: 78, Neg. LLF: 123.68640099959593
Iteration: 10, Func. Count: 86, Neg. LLF: 123.68547761993895
Iteration: 11, Func. Count: 94, Neg. LLF: 123.68539902108371
Iteration: 12, Func. Count: 102, Neg. LLF: 123.68539100598807
Iteration: 13, Func. Count: 109, Neg. LLF: 123.68539100599467
Optimization terminated successfully (Exit mode 0)
Current function value: 123.68539100598807
Iterations: 13
Function evaluations: 109
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 127.72005675456728
Iteration: 2, Func. Count: 21, Neg. LLF: 129.1664188294058
Iteration: 3, Func. Count: 31, Neg. LLF: 124.18688109352672
Iteration: 4, Func. Count: 40, Neg. LLF: 123.74617546877579
Iteration: 5, Func. Count: 49, Neg. LLF: 123.70733905635572
Iteration: 6, Func. Count: 58, Neg. LLF: 123.6895642294077
Iteration: 7, Func. Count: 67, Neg. LLF: 123.68585880778078
Iteration: 8, Func. Count: 76, Neg. LLF: 123.68558568864697
Iteration: 9, Func. Count: 85, Neg. LLF: 123.68552651207798
Iteration: 10, Func. Count: 94, Neg. LLF: 123.68540555730516
Iteration: 11, Func. Count: 103, Neg. LLF: 123.68539220276814
Iteration: 12, Func. Count: 112, Neg. LLF: 123.68539101050223
Iteration: 13, Func. Count: 120, Neg. LLF: 123.68539102819345
Optimization terminated successfully (Exit mode 0)
Current function value: 123.68539101050223
Iterations: 13
Function evaluations: 120
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 127.72001090611447
Iteration: 2, Func. Count: 23, Neg. LLF: 130.147653097747
Iteration: 3, Func. Count: 34, Neg. LLF: 124.26975509440992
Iteration: 4, Func. Count: 45, Neg. LLF: 124.24968039305674
Iteration: 5, Func. Count: 56, Neg. LLF: 124.13655552207554
Iteration: 6, Func. Count: 66, Neg. LLF: 124.09491937347066
Iteration: 7, Func. Count: 76, Neg. LLF: 123.94236639245102
Iteration: 8, Func. Count: 86, Neg. LLF: 123.87016511580241
Iteration: 9, Func. Count: 96, Neg. LLF: 123.69342211936271
Iteration: 10, Func. Count: 106, Neg. LLF: 123.68694829630726
Iteration: 11, Func. Count: 116, Neg. LLF: 123.68577741216424
Iteration: 12, Func. Count: 126, Neg. LLF: 123.6856029773756
Iteration: 13, Func. Count: 136, Neg. LLF: 123.68548442746588
Iteration: 14, Func. Count: 146, Neg. LLF: 123.685440808114
Iteration: 15, Func. Count: 156, Neg. LLF: 123.68539530452989
Iteration: 16, Func. Count: 166, Neg. LLF: 123.68539133882962
Iteration: 17, Func. Count: 175, Neg. LLF: 123.68539137264767
Optimization terminated successfully (Exit mode 0)
Current function value: 123.68539133882962
Iterations: 17
Function evaluations: 175
Gradient evaluations: 17
Iteration: 1, Func. Count: 12, Neg. LLF: 126.97362551106573
Iteration: 2, Func. Count: 25, Neg. LLF: 132.39548868757876
Iteration: 3, Func. Count: 37, Neg. LLF: 124.75980014097489
Iteration: 4, Func. Count: 49, Neg. LLF: 123.65736359736246
Iteration: 5, Func. Count: 60, Neg. LLF: 130.22668975275565
Iteration: 6, Func. Count: 72, Neg. LLF: 123.2659067317302
Iteration: 7, Func. Count: 83, Neg. LLF: 122.69781860106299
Iteration: 8, Func. Count: 94, Neg. LLF: 122.59538355937947
Iteration: 9, Func. Count: 105, Neg. LLF: 122.46931457795822
Iteration: 10, Func. Count: 116, Neg. LLF: 122.79537529968916
Iteration: 11, Func. Count: 128, Neg. LLF: 122.36032685055777
Iteration: 12, Func. Count: 139, Neg. LLF: 122.33569222060014
Iteration: 13, Func. Count: 150, Neg. LLF: 122.33448450935526
Iteration: 14, Func. Count: 161, Neg. LLF: 122.33416055046314
Iteration: 15, Func. Count: 172, Neg. LLF: 122.33415912065637
Iteration: 16, Func. Count: 182, Neg. LLF: 122.33415904279184
Optimization terminated successfully (Exit mode 0)
Current function value: 122.33415912065637
Iterations: 16
Function evaluations: 182
Gradient evaluations: 16
Iteration: 1, Func. Count: 13, Neg. LLF: 143.72263726710074
Iteration: 2, Func. Count: 26, Neg. LLF: 125.67829187922865
Iteration: 3, Func. Count: 39, Neg. LLF: 152.0869008280835
Iteration: 4, Func. Count: 53, Neg. LLF: 124.62596127739909
Iteration: 5, Func. Count: 66, Neg. LLF: 123.5167407124317
Iteration: 6, Func. Count: 78, Neg. LLF: 123.09882419878397
Iteration: 7, Func. Count: 90, Neg. LLF: 122.31680003003358
Iteration: 8, Func. Count: 102, Neg. LLF: 122.27268028756725
Iteration: 9, Func. Count: 114, Neg. LLF: 122.30237610494906
Iteration: 10, Func. Count: 127, Neg. LLF: 122.25832011111758
Iteration: 11, Func. Count: 140, Neg. LLF: 122.25045357250015
Iteration: 12, Func. Count: 152, Neg. LLF: 122.25034923255771
Iteration: 13, Func. Count: 163, Neg. LLF: 122.25034917429844
Optimization terminated successfully (Exit mode 0)
Current function value: 122.25034923255771
Iterations: 13
Function evaluations: 163
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 142.09546754025092
Iteration: 2, Func. Count: 21, Neg. LLF: 173.33751901941295
Iteration: 3, Func. Count: 31, Neg. LLF: 124.42052416495163
Iteration: 4, Func. Count: 40, Neg. LLF: 123.79467935985151
Iteration: 5, Func. Count: 49, Neg. LLF: 128.61886063016368
Iteration: 6, Func. Count: 61, Neg. LLF: 123.73289488976253
Iteration: 7, Func. Count: 70, Neg. LLF: 123.71486513220968
Iteration: 8, Func. Count: 79, Neg. LLF: 123.6880644025772
Iteration: 9, Func. Count: 88, Neg. LLF: 123.68560547480764
Iteration: 10, Func. Count: 97, Neg. LLF: 123.68539250651118
Iteration: 11, Func. Count: 106, Neg. LLF: 123.685391013393
Iteration: 12, Func. Count: 114, Neg. LLF: 123.6853912552783
Optimization terminated successfully (Exit mode 0)
Current function value: 123.685391013393
Iterations: 12
Function evaluations: 114
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 127.81092457236194
Iteration: 2, Func. Count: 23, Neg. LLF: 129.02821953482598
Iteration: 3, Func. Count: 34, Neg. LLF: 124.17299744424483
Iteration: 4, Func. Count: 44, Neg. LLF: 124.01501561351527
Iteration: 5, Func. Count: 54, Neg. LLF: 123.7280149406513
Iteration: 6, Func. Count: 64, Neg. LLF: 123.70083283095639
Iteration: 7, Func. Count: 74, Neg. LLF: 123.6887769924756
Iteration: 8, Func. Count: 84, Neg. LLF: 123.68642718133795
Iteration: 9, Func. Count: 94, Neg. LLF: 123.68565479455785
Iteration: 10, Func. Count: 104, Neg. LLF: 123.68557840952931
Iteration: 11, Func. Count: 114, Neg. LLF: 123.68542035923869
Iteration: 12, Func. Count: 124, Neg. LLF: 123.68539360423173
Iteration: 13, Func. Count: 134, Neg. LLF: 123.68539103836001
Iteration: 14, Func. Count: 143, Neg. LLF: 123.68539105605068
Optimization terminated successfully (Exit mode 0)
Current function value: 123.68539103836001
Iterations: 14
Function evaluations: 143
Gradient evaluations: 14
Iteration: 1, Func. Count: 12, Neg. LLF: 127.77157504586441
Iteration: 2, Func. Count: 25, Neg. LLF: 129.95710866676245
Iteration: 3, Func. Count: 37, Neg. LLF: 124.29408381272545
Iteration: 4, Func. Count: 48, Neg. LLF: 124.19769409687846
Iteration: 5, Func. Count: 59, Neg. LLF: 124.45559370812461
Iteration: 6, Func. Count: 71, Neg. LLF: 124.1416583942038
Iteration: 7, Func. Count: 82, Neg. LLF: 124.08555245816468
Iteration: 8, Func. Count: 93, Neg. LLF: 123.96597000454558
Iteration: 9, Func. Count: 104, Neg. LLF: 123.89269456917192
Iteration: 10, Func. Count: 115, Neg. LLF: 123.6903415198853
Iteration: 11, Func. Count: 126, Neg. LLF: 123.68772327131558
Iteration: 12, Func. Count: 137, Neg. LLF: 123.68567617555426
Iteration: 13, Func. Count: 148, Neg. LLF: 123.68548268358742
Iteration: 14, Func. Count: 159, Neg. LLF: 123.68539777073116
Iteration: 15, Func. Count: 170, Neg. LLF: 123.68539585292862
Iteration: 16, Func. Count: 181, Neg. LLF: 123.68539215279147
Iteration: 17, Func. Count: 192, Neg. LLF: 123.68539123563426
Optimization terminated successfully (Exit mode 0)
Current function value: 123.68539123563426
Iterations: 17
Function evaluations: 192
Gradient evaluations: 17
Iteration: 1, Func. Count: 13, Neg. LLF: 9741250.578658419
Iteration: 2, Func. Count: 27, Neg. LLF: 124.91141752529535
Iteration: 3, Func. Count: 40, Neg. LLF: 159.89698679851
Iteration: 4, Func. Count: 53, Neg. LLF: 125.43301334221715
Iteration: 5, Func. Count: 66, Neg. LLF: 125.12522563811959
Iteration: 6, Func. Count: 79, Neg. LLF: 122.42378013870602
Iteration: 7, Func. Count: 91, Neg. LLF: 122.39247930393694
Iteration: 8, Func. Count: 103, Neg. LLF: 123.90199885378894
Iteration: 9, Func. Count: 116, Neg. LLF: 122.62872050556408
Iteration: 10, Func. Count: 129, Neg. LLF: 122.35995660157585
Iteration: 11, Func. Count: 141, Neg. LLF: 122.34780091951991
Iteration: 12, Func. Count: 153, Neg. LLF: 122.34230944593372
Iteration: 13, Func. Count: 165, Neg. LLF: 122.33434115784091
Iteration: 14, Func. Count: 177, Neg. LLF: 122.33422097285955
Iteration: 15, Func. Count: 189, Neg. LLF: 122.33417851989853
Iteration: 16, Func. Count: 201, Neg. LLF: 122.33415944300458
Iteration: 17, Func. Count: 212, Neg. LLF: 122.33415936526893
Optimization terminated successfully (Exit mode 0)
Current function value: 122.33415944300458
Iterations: 17
Function evaluations: 212
Gradient evaluations: 17
Iteration: 1, Func. Count: 14, Neg. LLF: 143.3305645916631
Iteration: 2, Func. Count: 28, Neg. LLF: 125.83937866135818
Iteration: 3, Func. Count: 42, Neg. LLF: 149.1488421113122
Iteration: 4, Func. Count: 56, Neg. LLF: 124.75057118898923
Iteration: 5, Func. Count: 70, Neg. LLF: 123.70220056113716
Iteration: 6, Func. Count: 83, Neg. LLF: 122.82056668336824
Iteration: 7, Func. Count: 96, Neg. LLF: 122.6553179618628
Iteration: 8, Func. Count: 109, Neg. LLF: 122.44632650373386
Iteration: 9, Func. Count: 123, Neg. LLF: 123.15617901630712
Iteration: 10, Func. Count: 138, Neg. LLF: 122.1182339517006
Iteration: 11, Func. Count: 152, Neg. LLF: 122.03855785077269
Iteration: 12, Func. Count: 165, Neg. LLF: 122.0122730995261
Iteration: 13, Func. Count: 178, Neg. LLF: 122.00890264531103
Iteration: 14, Func. Count: 191, Neg. LLF: 122.00541945746107
Iteration: 15, Func. Count: 204, Neg. LLF: 122.04290025474242
Iteration: 16, Func. Count: 218, Neg. LLF: 122.07302413388197
Iteration: 17, Func. Count: 232, Neg. LLF: 121.99648754536578
Iteration: 18, Func. Count: 245, Neg. LLF: 121.99530037619917
Iteration: 19, Func. Count: 258, Neg. LLF: 121.99516131321818
Iteration: 20, Func. Count: 271, Neg. LLF: 121.99511640805571
Iteration: 21, Func. Count: 284, Neg. LLF: 121.9951142678633
Iteration: 22, Func. Count: 296, Neg. LLF: 121.99511423962903
Optimization terminated successfully (Exit mode 0)
Current function value: 121.9951142678633
Iterations: 22
Function evaluations: 296
Gradient evaluations: 22
Iteration: 1, Func. Count: 11, Neg. LLF: 142.37460676359683
Iteration: 2, Func. Count: 23, Neg. LLF: 172.1606237046014
Iteration: 3, Func. Count: 34, Neg. LLF: 124.4652548844055
Iteration: 4, Func. Count: 44, Neg. LLF: 123.79447661367749
Iteration: 5, Func. Count: 54, Neg. LLF: 129.80438926611842
Iteration: 6, Func. Count: 67, Neg. LLF: 123.73253703789204
Iteration: 7, Func. Count: 77, Neg. LLF: 123.7148747717035
Iteration: 8, Func. Count: 87, Neg. LLF: 123.687832632696
Iteration: 9, Func. Count: 97, Neg. LLF: 123.68556677123813
Iteration: 10, Func. Count: 107, Neg. LLF: 123.68539198380131
Iteration: 11, Func. Count: 117, Neg. LLF: 123.68539100651637
Optimization terminated successfully (Exit mode 0)
Current function value: 123.68539100651637
Iterations: 11
Function evaluations: 117
Gradient evaluations: 11
Iteration: 1, Func. Count: 12, Neg. LLF: 127.81072011448117
Iteration: 2, Func. Count: 25, Neg. LLF: 129.04549206022972
Iteration: 3, Func. Count: 37, Neg. LLF: 124.171732589865
Iteration: 4, Func. Count: 48, Neg. LLF: 124.13854585144365
Iteration: 5, Func. Count: 60, Neg. LLF: 123.72011173727053
Iteration: 6, Func. Count: 71, Neg. LLF: 123.70145854544677
Iteration: 7, Func. Count: 82, Neg. LLF: 123.68897058383241
Iteration: 8, Func. Count: 93, Neg. LLF: 123.68595800601766
Iteration: 9, Func. Count: 104, Neg. LLF: 123.68560297285514
Iteration: 10, Func. Count: 115, Neg. LLF: 123.68553671795435
Iteration: 11, Func. Count: 126, Neg. LLF: 123.68543182667125
Iteration: 12, Func. Count: 137, Neg. LLF: 123.68539607999317
Iteration: 13, Func. Count: 148, Neg. LLF: 123.6853911717542
Iteration: 14, Func. Count: 158, Neg. LLF: 123.68539118947773
Optimization terminated successfully (Exit mode 0)
Current function value: 123.6853911717542
Iterations: 14
Function evaluations: 158
Gradient evaluations: 14
Iteration: 1, Func. Count: 13, Neg. LLF: 127.76929231950665
Iteration: 2, Func. Count: 27, Neg. LLF: 129.99314999361226
Iteration: 3, Func. Count: 40, Neg. LLF: 124.31212605952696
Iteration: 4, Func. Count: 53, Neg. LLF: 124.22012102860876
Iteration: 5, Func. Count: 65, Neg. LLF: 124.12872743439259
Iteration: 6, Func. Count: 77, Neg. LLF: 124.09357078996909
Iteration: 7, Func. Count: 89, Neg. LLF: 123.96683628006161
Iteration: 8, Func. Count: 101, Neg. LLF: 123.90820975084239
Iteration: 9, Func. Count: 113, Neg. LLF: 123.69679012926818
Iteration: 10, Func. Count: 125, Neg. LLF: 123.68584045122415
Iteration: 11, Func. Count: 137, Neg. LLF: 123.68558985294302
Iteration: 12, Func. Count: 149, Neg. LLF: 123.68544900943198
Iteration: 13, Func. Count: 161, Neg. LLF: 123.68542593912089
Iteration: 14, Func. Count: 173, Neg. LLF: 123.68540484924358
Iteration: 15, Func. Count: 185, Neg. LLF: 123.68539922595416
Iteration: 16, Func. Count: 197, Neg. LLF: 123.68539197141517
Iteration: 17, Func. Count: 208, Neg. LLF: 123.68539200524592
Optimization terminated successfully (Exit mode 0)
Current function value: 123.68539197141517
Iterations: 17
Function evaluations: 208
Gradient evaluations: 17
Iteration: 1, Func. Count: 14, Neg. LLF: 9742556.734500432
Iteration: 2, Func. Count: 29, Neg. LLF: 124.91051096749378
Iteration: 3, Func. Count: 43, Neg. LLF: 157.64947115791432
Iteration: 4, Func. Count: 57, Neg. LLF: 124.2467424413878
Iteration: 5, Func. Count: 71, Neg. LLF: 127.02505988819041
Iteration: 6, Func. Count: 85, Neg. LLF: 122.41408037969225
Iteration: 7, Func. Count: 98, Neg. LLF: 122.36540013286324
Iteration: 8, Func. Count: 111, Neg. LLF: 122.34744634235841
Iteration: 9, Func. Count: 124, Neg. LLF: 122.34372890018183
Iteration: 10, Func. Count: 137, Neg. LLF: 122.3427799505951
Iteration: 11, Func. Count: 150, Neg. LLF: 122.34250766522597
Iteration: 12, Func. Count: 163, Neg. LLF: 122.34240573709795
Iteration: 13, Func. Count: 176, Neg. LLF: 122.34239128055556
Iteration: 14, Func. Count: 189, Neg. LLF: 122.34238891913941
Iteration: 15, Func. Count: 201, Neg. LLF: 122.34238884573413
Optimization terminated successfully (Exit mode 0)
Current function value: 122.34238891913941
Iterations: 15
Function evaluations: 201
Gradient evaluations: 15
Iteration: 1, Func. Count: 15, Neg. LLF: 143.441530405919
Iteration: 2, Func. Count: 30, Neg. LLF: 125.87144151922534
Iteration: 3, Func. Count: 45, Neg. LLF: 149.36262321930312
Iteration: 4, Func. Count: 61, Neg. LLF: 124.62686244571941
Iteration: 5, Func. Count: 76, Neg. LLF: 123.9242335460954
Iteration: 6, Func. Count: 90, Neg. LLF: 123.25551626872355
Iteration: 7, Func. Count: 104, Neg. LLF: 123.65861373725726
Iteration: 8, Func. Count: 119, Neg. LLF: 122.59459544566799
Iteration: 9, Func. Count: 133, Neg. LLF: 122.46438629058726
Iteration: 10, Func. Count: 147, Neg. LLF: 122.37852603182219
Iteration: 11, Func. Count: 161, Neg. LLF: 122.39993044332812
Iteration: 12, Func. Count: 176, Neg. LLF: 122.34890248770294
Iteration: 13, Func. Count: 190, Neg. LLF: 122.34265101907008
Iteration: 14, Func. Count: 204, Neg. LLF: 122.34253751523832
Iteration: 15, Func. Count: 218, Neg. LLF: 122.34239037040817
Iteration: 16, Func. Count: 232, Neg. LLF: 122.34238902228304
Iteration: 17, Func. Count: 245, Neg. LLF: 122.34238906970124
Optimization terminated successfully (Exit mode 0)
Current function value: 122.34238902228304
Iterations: 17
Function evaluations: 245
Gradient evaluations: 17
Iteration: 1, Func. Count: 12, Neg. LLF: 142.91139470270363
Iteration: 2, Func. Count: 24, Neg. LLF: 154.19551233983424
Iteration: 3, Func. Count: 36, Neg. LLF: 124.53570301780128
Iteration: 4, Func. Count: 47, Neg. LLF: 124.11973619512833
Iteration: 5, Func. Count: 58, Neg. LLF: 124.11044345038385
Iteration: 6, Func. Count: 70, Neg. LLF: 123.73094213497028
Iteration: 7, Func. Count: 81, Neg. LLF: 123.70261197782715
Iteration: 8, Func. Count: 92, Neg. LLF: 123.69422499780379
Iteration: 9, Func. Count: 103, Neg. LLF: 123.69019508117503
Iteration: 10, Func. Count: 114, Neg. LLF: 123.68709482917028
Iteration: 11, Func. Count: 125, Neg. LLF: 123.68569013280899
Iteration: 12, Func. Count: 136, Neg. LLF: 123.68539850736379
Iteration: 13, Func. Count: 147, Neg. LLF: 123.68539103693253
Iteration: 14, Func. Count: 157, Neg. LLF: 123.68539081315846
Optimization terminated successfully (Exit mode 0)
Current function value: 123.68539103693253
Iterations: 14
Function evaluations: 157
Gradient evaluations: 14
Iteration: 1, Func. Count: 13, Neg. LLF: 127.7668635968058
Iteration: 2, Func. Count: 27, Neg. LLF: 129.09787992618337
Iteration: 3, Func. Count: 40, Neg. LLF: 124.60055689361046
Iteration: 4, Func. Count: 53, Neg. LLF: 124.36687484504787
Iteration: 5, Func. Count: 66, Neg. LLF: 124.16801165576418
Iteration: 6, Func. Count: 78, Neg. LLF: 124.14887906705341
Iteration: 7, Func. Count: 90, Neg. LLF: 124.13365058674508
Iteration: 8, Func. Count: 102, Neg. LLF: 123.95536109212581
Iteration: 9, Func. Count: 114, Neg. LLF: 123.7350280893208
Iteration: 10, Func. Count: 126, Neg. LLF: 123.77508253903922
Iteration: 11, Func. Count: 139, Neg. LLF: 123.6898899616741
Iteration: 12, Func. Count: 151, Neg. LLF: 123.68555779160658
Iteration: 13, Func. Count: 163, Neg. LLF: 123.68546622242722
Iteration: 14, Func. Count: 175, Neg. LLF: 123.68539890688015
Iteration: 15, Func. Count: 187, Neg. LLF: 123.68539157793819
Iteration: 16, Func. Count: 199, Neg. LLF: 123.68539103136824
Optimization terminated successfully (Exit mode 0)
Current function value: 123.68539103136824
Iterations: 16
Function evaluations: 199
Gradient evaluations: 16
Iteration: 1, Func. Count: 14, Neg. LLF: 125.30110920042117
Iteration: 2, Func. Count: 28, Neg. LLF: 133.3758924387172
Iteration: 3, Func. Count: 42, Neg. LLF: 123.54907545022401
Iteration: 4, Func. Count: 55, Neg. LLF: 126.00096170257657
Iteration: 5, Func. Count: 69, Neg. LLF: 133.52201690352786
Iteration: 6, Func. Count: 85, Neg. LLF: 128.74260492796847
Iteration: 7, Func. Count: 99, Neg. LLF: 123.34412406767169
Iteration: 8, Func. Count: 113, Neg. LLF: 122.90262489663883
Iteration: 9, Func. Count: 126, Neg. LLF: 122.8863451073494
Iteration: 10, Func. Count: 139, Neg. LLF: 122.8809602683481
Iteration: 11, Func. Count: 152, Neg. LLF: 122.87786191958048
Iteration: 12, Func. Count: 165, Neg. LLF: 122.87768262091103
Iteration: 13, Func. Count: 178, Neg. LLF: 122.87767888410268
Iteration: 14, Func. Count: 190, Neg. LLF: 122.87767888406678
Optimization terminated successfully (Exit mode 0)
Current function value: 122.87767888410268
Iterations: 14
Function evaluations: 190
Gradient evaluations: 14
Iteration: 1, Func. Count: 15, Neg. LLF: 9744951.520179212
Iteration: 2, Func. Count: 31, Neg. LLF: 124.89774135168797
Iteration: 3, Func. Count: 46, Neg. LLF: 153.98885550004658
Iteration: 4, Func. Count: 61, Neg. LLF: 122.7823728085121
Iteration: 5, Func. Count: 75, Neg. LLF: 124.06629407942764
Iteration: 6, Func. Count: 90, Neg. LLF: 122.41404012287715
Iteration: 7, Func. Count: 104, Neg. LLF: 122.51772809132845
Iteration: 8, Func. Count: 119, Neg. LLF: 122.42400432572005
Iteration: 9, Func. Count: 134, Neg. LLF: 122.34672045339087
Iteration: 10, Func. Count: 148, Neg. LLF: 122.34345930804639
Iteration: 11, Func. Count: 162, Neg. LLF: 122.34277978786145
Iteration: 12, Func. Count: 176, Neg. LLF: 122.34246644960548
Iteration: 13, Func. Count: 190, Neg. LLF: 122.34240161417232
Iteration: 14, Func. Count: 204, Neg. LLF: 122.34239120312027
Iteration: 15, Func. Count: 218, Neg. LLF: 122.34238887886872
Iteration: 16, Func. Count: 231, Neg. LLF: 122.34238880542937
Optimization terminated successfully (Exit mode 0)
Current function value: 122.34238887886872
Iterations: 16
Function evaluations: 231
Gradient evaluations: 16
Iteration: 1, Func. Count: 16, Neg. LLF: 143.45880114604125
Iteration: 2, Func. Count: 32, Neg. LLF: 125.76564893437894
Iteration: 3, Func. Count: 48, Neg. LLF: 150.0738684292882
Iteration: 4, Func. Count: 65, Neg. LLF: 124.57020727030206
Iteration: 5, Func. Count: 81, Neg. LLF: 123.7911175545867
Iteration: 6, Func. Count: 96, Neg. LLF: 123.24165823950209
Iteration: 7, Func. Count: 111, Neg. LLF: 128.97520003347233
Iteration: 8, Func. Count: 128, Neg. LLF: 123.06806420290837
Iteration: 9, Func. Count: 143, Neg. LLF: 122.93997771559147
Iteration: 10, Func. Count: 158, Neg. LLF: 122.9179549096308
Iteration: 11, Func. Count: 173, Neg. LLF: 122.89035492803683
Iteration: 12, Func. Count: 188, Neg. LLF: 122.88118834670792
Iteration: 13, Func. Count: 203, Neg. LLF: 122.87891890940725
Iteration: 14, Func. Count: 218, Neg. LLF: 122.8778959752754
Iteration: 15, Func. Count: 233, Neg. LLF: 122.87779014987656
Iteration: 16, Func. Count: 248, Neg. LLF: 122.87769757890412
Iteration: 17, Func. Count: 263, Neg. LLF: 122.87767953199686
Iteration: 18, Func. Count: 278, Neg. LLF: 122.87767869119484
Optimization terminated successfully (Exit mode 0)
Current function value: 122.87767869119484
Iterations: 18
Function evaluations: 278
Gradient evaluations: 18
Iteration: 1, Func. Count: 5, Neg. LLF: 131.64504111690357
Iteration: 2, Func. Count: 10, Neg. LLF: 136.45859262880788
Iteration: 3, Func. Count: 15, Neg. LLF: 124.61639469543968
Iteration: 4, Func. Count: 19, Neg. LLF: 124.67902131048265
Iteration: 5, Func. Count: 24, Neg. LLF: 124.54331822192266
Iteration: 6, Func. Count: 28, Neg. LLF: 124.54084926233624
Iteration: 7, Func. Count: 32, Neg. LLF: 124.54077641211498
Iteration: 8, Func. Count: 36, Neg. LLF: 124.54075031656329
Iteration: 9, Func. Count: 40, Neg. LLF: 124.54074495119255
Iteration: 10, Func. Count: 43, Neg. LLF: 124.54074495119012
Optimization terminated successfully (Exit mode 0)
Current function value: 124.54074495119255
Iterations: 10
Function evaluations: 43
Gradient evaluations: 10
Iteration: 1, Func. Count: 5, Neg. LLF: 132.59307165559895
Iteration: 2, Func. Count: 10, Neg. LLF: 141.63025433080267
Iteration: 3, Func. Count: 15, Neg. LLF: 123.2012693264429
Iteration: 4, Func. Count: 19, Neg. LLF: 122.56737442662035
Iteration: 5, Func. Count: 23, Neg. LLF: 122.74653971586476
Iteration: 6, Func. Count: 29, Neg. LLF: 122.54594971749144
Iteration: 7, Func. Count: 33, Neg. LLF: 122.54041222511971
Iteration: 8, Func. Count: 37, Neg. LLF: 122.53792057390173
Iteration: 9, Func. Count: 41, Neg. LLF: 122.53791193792668
Iteration: 10, Func. Count: 44, Neg. LLF: 122.53791193788899
Optimization terminated successfully (Exit mode 0)
Current function value: 122.53791193792668
Iterations: 10
Function evaluations: 44
Gradient evaluations: 10
Iteration: 1, Func. Count: 6, Neg. LLF: 22620768.828803986
Iteration: 2, Func. Count: 13, Neg. LLF: 122.45587345198471
Iteration: 3, Func. Count: 19, Neg. LLF: 121.58909491746114
Iteration: 4, Func. Count: 24, Neg. LLF: 120.83542164420244
Iteration: 5, Func. Count: 29, Neg. LLF: 120.72131315146297
Iteration: 6, Func. Count: 34, Neg. LLF: 120.71789407027484
Iteration: 7, Func. Count: 39, Neg. LLF: 120.71788214286211
Iteration: 8, Func. Count: 43, Neg. LLF: 120.7178821430345
Optimization terminated successfully (Exit mode 0)
Current function value: 120.71788214286211
Iterations: 8
Function evaluations: 43
Gradient evaluations: 8
Iteration: 1, Func. Count: 7, Neg. LLF: 22624061.929573376
Iteration: 2, Func. Count: 15, Neg. LLF: 122.85402860225575
Iteration: 3, Func. Count: 22, Neg. LLF: 120.82180239015074
Iteration: 4, Func. Count: 28, Neg. LLF: 122.06368366823678
Iteration: 5, Func. Count: 35, Neg. LLF: 120.66510105661202
Iteration: 6, Func. Count: 41, Neg. LLF: 120.66508851966742
Iteration: 7, Func. Count: 46, Neg. LLF: 120.6650885196784
Optimization terminated successfully (Exit mode 0)
Current function value: 120.66508851966742
Iterations: 7
Function evaluations: 46
Gradient evaluations: 7
Iteration: 1, Func. Count: 8, Neg. LLF: 225.61461514122166
Iteration: 2, Func. Count: 17, Neg. LLF: 122.31670492762153
Iteration: 3, Func. Count: 25, Neg. LLF: 121.8271048671203
Iteration: 4, Func. Count: 33, Neg. LLF: 120.65693198518395
Iteration: 5, Func. Count: 40, Neg. LLF: 120.6513810494409
Iteration: 6, Func. Count: 48, Neg. LLF: 120.62690097875277
Iteration: 7, Func. Count: 55, Neg. LLF: 120.6208544830871
Iteration: 8, Func. Count: 62, Neg. LLF: 120.62085186442376
Iteration: 9, Func. Count: 69, Neg. LLF: 120.62085134768846
Optimization terminated successfully (Exit mode 0)
Current function value: 120.62085134768846
Iterations: 9
Function evaluations: 69
Gradient evaluations: 9
Iteration: 1, Func. Count: 9, Neg. LLF: 250.33301116976685
Iteration: 2, Func. Count: 19, Neg. LLF: 123.49629428103273
Iteration: 3, Func. Count: 28, Neg. LLF: 121.44952311339814
Iteration: 4, Func. Count: 36, Neg. LLF: 120.78639648456446
Iteration: 5, Func. Count: 44, Neg. LLF: 120.82405098333807
Iteration: 6, Func. Count: 53, Neg. LLF: 1041.6417859262726
Iteration: 7, Func. Count: 62, Neg. LLF: 844.6869541827516
Iteration: 8, Func. Count: 72, Neg. LLF: 139.0340047017102
Iteration: 9, Func. Count: 81, Neg. LLF: 120.34362923276662
Iteration: 10, Func. Count: 89, Neg. LLF: 120.34301732326394
Iteration: 11, Func. Count: 97, Neg. LLF: 120.34248031605944
Iteration: 12, Func. Count: 105, Neg. LLF: 120.3423997061129
Iteration: 13, Func. Count: 113, Neg. LLF: 120.34229666864823
Iteration: 14, Func. Count: 121, Neg. LLF: 120.34222814696295
Iteration: 15, Func. Count: 129, Neg. LLF: 120.34221094324134
Iteration: 16, Func. Count: 137, Neg. LLF: 120.34220966455875
Iteration: 17, Func. Count: 144, Neg. LLF: 120.34220966467811
Optimization terminated successfully (Exit mode 0)
Current function value: 120.34220966455875
Iterations: 17
Function evaluations: 144
Gradient evaluations: 17
Iteration: 1, Func. Count: 6, Neg. LLF: 128.24266967935773
Iteration: 2, Func. Count: 12, Neg. LLF: 125.59449467940192
Iteration: 3, Func. Count: 18, Neg. LLF: 124.13298342165078
Iteration: 4, Func. Count: 23, Neg. LLF: 122.5601526435658
Iteration: 5, Func. Count: 28, Neg. LLF: 122.54087767438064
Iteration: 6, Func. Count: 33, Neg. LLF: 123.95383995214138
Iteration: 7, Func. Count: 40, Neg. LLF: 122.53792947917732
Iteration: 8, Func. Count: 45, Neg. LLF: 122.53791201859589
Iteration: 9, Func. Count: 49, Neg. LLF: 122.53791223634946
Optimization terminated successfully (Exit mode 0)
Current function value: 122.53791201859589
Iterations: 9
Function evaluations: 49
Gradient evaluations: 9
Iteration: 1, Func. Count: 7, Neg. LLF: 22618151.43166048
Iteration: 2, Func. Count: 15, Neg. LLF: 122.63646348021337
Iteration: 3, Func. Count: 22, Neg. LLF: 121.63120272520561
Iteration: 4, Func. Count: 28, Neg. LLF: 120.95608544374029
Iteration: 5, Func. Count: 34, Neg. LLF: 120.72314686109945
Iteration: 6, Func. Count: 40, Neg. LLF: 120.71790174896566
Iteration: 7, Func. Count: 46, Neg. LLF: 120.7178822142768
Iteration: 8, Func. Count: 51, Neg. LLF: 120.7178822146875
Optimization terminated successfully (Exit mode 0)
Current function value: 120.7178822142768
Iterations: 8
Function evaluations: 51
Gradient evaluations: 8
Iteration: 1, Func. Count: 8, Neg. LLF: 22618805.166090302
Iteration: 2, Func. Count: 17, Neg. LLF: 122.83724008648056
Iteration: 3, Func. Count: 25, Neg. LLF: 120.92555031223192
Iteration: 4, Func. Count: 32, Neg. LLF: 120.68147681199976
Iteration: 5, Func. Count: 39, Neg. LLF: 120.66773874416583
Iteration: 6, Func. Count: 46, Neg. LLF: 120.66572922311138
Iteration: 7, Func. Count: 53, Neg. LLF: 120.66509162939627
Iteration: 8, Func. Count: 60, Neg. LLF: 904.0302747015079
Iteration: 9, Func. Count: 71, Neg. LLF: 120.66509842470877
Optimization terminated successfully (Exit mode 0)
Current function value: 120.66508851861627
Iterations: 10
Function evaluations: 72
Gradient evaluations: 9
Iteration: 1, Func. Count: 9, Neg. LLF: 221.79235599983969
Iteration: 2, Func. Count: 19, Neg. LLF: 122.17968313203448
Iteration: 3, Func. Count: 28, Neg. LLF: 121.5312370547238
Iteration: 4, Func. Count: 36, Neg. LLF: 120.75934667835382
Iteration: 5, Func. Count: 44, Neg. LLF: 120.54084331720296
Iteration: 6, Func. Count: 52, Neg. LLF: 120.90057128567165
Iteration: 7, Func. Count: 61, Neg. LLF: 120.52225922613758
Iteration: 8, Func. Count: 69, Neg. LLF: 120.52185063321564
Iteration: 9, Func. Count: 77, Neg. LLF: 120.52180904222091
Iteration: 10, Func. Count: 84, Neg. LLF: 120.52180904216154
Optimization terminated successfully (Exit mode 0)
Current function value: 120.52180904222091
Iterations: 10
Function evaluations: 84
Gradient evaluations: 10
Iteration: 1, Func. Count: 10, Neg. LLF: 245.61080582801316
Iteration: 2, Func. Count: 21, Neg. LLF: 123.30958111491645
Iteration: 3, Func. Count: 31, Neg. LLF: 121.45954986586158
Iteration: 4, Func. Count: 40, Neg. LLF: 120.88106768253289
Iteration: 5, Func. Count: 49, Neg. LLF: 120.42472116757178
Iteration: 6, Func. Count: 58, Neg. LLF: 126.20815776479503
Iteration: 7, Func. Count: 69, Neg. LLF: 128.51754829362173
Iteration: 8, Func. Count: 79, Neg. LLF: 120.06933739258737
Iteration: 9, Func. Count: 88, Neg. LLF: 120.04125741158451
Iteration: 10, Func. Count: 97, Neg. LLF: 120.01148059784852
Iteration: 11, Func. Count: 106, Neg. LLF: 120.00668257080677
Iteration: 12, Func. Count: 115, Neg. LLF: 120.00641980862262
Iteration: 13, Func. Count: 124, Neg. LLF: 120.00637877279503
Iteration: 14, Func. Count: 133, Neg. LLF: 120.00634896190927
Iteration: 15, Func. Count: 142, Neg. LLF: 120.00633514021064
Iteration: 16, Func. Count: 151, Neg. LLF: 120.05250550150667
Optimization terminated successfully (Exit mode 0)
Current function value: 120.0063351296181
Iterations: 17
Function evaluations: 155
Gradient evaluations: 16
Iteration: 1, Func. Count: 7, Neg. LLF: 127.58384360948176
Iteration: 2, Func. Count: 14, Neg. LLF: 124.18102934257729
Iteration: 3, Func. Count: 20, Neg. LLF: 122.83751872050797
Iteration: 4, Func. Count: 26, Neg. LLF: 122.55648681513006
Iteration: 5, Func. Count: 32, Neg. LLF: 122.57269725459747
Iteration: 6, Func. Count: 39, Neg. LLF: 126.6274005729757
Iteration: 7, Func. Count: 46, Neg. LLF: 122.53792174007674
Iteration: 8, Func. Count: 52, Neg. LLF: 122.53791195837765
Iteration: 9, Func. Count: 57, Neg. LLF: 122.53791208437525
Optimization terminated successfully (Exit mode 0)
Current function value: 122.53791195837765
Iterations: 9
Function evaluations: 57
Gradient evaluations: 9
Iteration: 1, Func. Count: 8, Neg. LLF: 22619805.699010137
Iteration: 2, Func. Count: 17, Neg. LLF: 122.85201480399085
Iteration: 3, Func. Count: 25, Neg. LLF: 121.6927029950443
Iteration: 4, Func. Count: 32, Neg. LLF: 121.12114495231987
Iteration: 5, Func. Count: 39, Neg. LLF: 122.74776397867805
Iteration: 6, Func. Count: 49, Neg. LLF: 120.79531536399165
Iteration: 7, Func. Count: 56, Neg. LLF: 120.72969727136736
Iteration: 8, Func. Count: 63, Neg. LLF: 120.71910085522839
Iteration: 9, Func. Count: 70, Neg. LLF: 120.7178850938908
Iteration: 10, Func. Count: 77, Neg. LLF: 120.7178821453719
Iteration: 11, Func. Count: 83, Neg. LLF: 120.71788214514726
Optimization terminated successfully (Exit mode 0)
Current function value: 120.7178821453719
Iterations: 11
Function evaluations: 83
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 22621225.89187922
Iteration: 2, Func. Count: 19, Neg. LLF: 122.94822416400919
Iteration: 3, Func. Count: 28, Neg. LLF: 120.95489123234148
Iteration: 4, Func. Count: 36, Neg. LLF: 120.78096084625416
Iteration: 5, Func. Count: 44, Neg. LLF: 120.73429341376811
Iteration: 6, Func. Count: 52, Neg. LLF: 120.7017625397094
Iteration: 7, Func. Count: 60, Neg. LLF: 120.67164675405543
Iteration: 8, Func. Count: 68, Neg. LLF: 22604669.470104843
Iteration: 9, Func. Count: 79, Neg. LLF: 120.6807657494793
Iteration: 10, Func. Count: 88, Neg. LLF: 120.66508852631398
Iteration: 11, Func. Count: 95, Neg. LLF: 120.66508852617393
Optimization terminated successfully (Exit mode 0)
Current function value: 120.66508852631398
Iterations: 12
Function evaluations: 95
Gradient evaluations: 11
Iteration: 1, Func. Count: 10, Neg. LLF: 223.98625084045543
Iteration: 2, Func. Count: 21, Neg. LLF: 122.2760461515694
Iteration: 3, Func. Count: 31, Neg. LLF: 121.63748349994755
Iteration: 4, Func. Count: 40, Neg. LLF: 120.68058969499523
Iteration: 5, Func. Count: 49, Neg. LLF: 121.08189214805057
Iteration: 6, Func. Count: 59, Neg. LLF: 120.55046031807017
Iteration: 7, Func. Count: 68, Neg. LLF: 120.5220295046319
Iteration: 8, Func. Count: 77, Neg. LLF: 120.52185764466161
Iteration: 9, Func. Count: 86, Neg. LLF: 120.52180903943898
Iteration: 10, Func. Count: 94, Neg. LLF: 120.52180903938746
Optimization terminated successfully (Exit mode 0)
Current function value: 120.52180903943898
Iterations: 10
Function evaluations: 94
Gradient evaluations: 10
Iteration: 1, Func. Count: 11, Neg. LLF: 246.81932362072132
Iteration: 2, Func. Count: 23, Neg. LLF: 123.30751756655033
Iteration: 3, Func. Count: 34, Neg. LLF: 121.48621942396738
Iteration: 4, Func. Count: 44, Neg. LLF: 120.86233869936851
Iteration: 5, Func. Count: 54, Neg. LLF: 120.801129990883
Iteration: 6, Func. Count: 64, Neg. LLF: 120.78148357812057
Iteration: 7, Func. Count: 74, Neg. LLF: 120.76796363560472
Iteration: 8, Func. Count: 84, Neg. LLF: 120.70817770329865
Iteration: 9, Func. Count: 94, Neg. LLF: 120.63694609686709
Iteration: 10, Func. Count: 104, Neg. LLF: 120.61892729042762
Iteration: 11, Func. Count: 114, Neg. LLF: 19359017.730874922
Iteration: 12, Func. Count: 127, Neg. LLF: 19368180.98385183
Iteration: 13, Func. Count: 139, Neg. LLF: 120.53041358775879
Iteration: 14, Func. Count: 149, Neg. LLF: 120.68565701859106
Iteration: 15, Func. Count: 160, Neg. LLF: 120.52182623053713
Iteration: 16, Func. Count: 170, Neg. LLF: 120.52180901597018
Iteration: 17, Func. Count: 179, Neg. LLF: 120.52180911799928
Optimization terminated successfully (Exit mode 0)
Current function value: 120.52180901597018
Iterations: 18
Function evaluations: 179
Gradient evaluations: 17
Iteration: 1, Func. Count: 8, Neg. LLF: 127.89640761164277
Iteration: 2, Func. Count: 16, Neg. LLF: 125.15343956173099
Iteration: 3, Func. Count: 24, Neg. LLF: 124.25512235389974
Iteration: 4, Func. Count: 31, Neg. LLF: 123.44519321316876
Iteration: 5, Func. Count: 38, Neg. LLF: 122.98380488690603
Iteration: 6, Func. Count: 45, Neg. LLF: 123.01334154263668
Iteration: 7, Func. Count: 53, Neg. LLF: 122.57486668499305
Iteration: 8, Func. Count: 60, Neg. LLF: 122.54317034775565
Iteration: 9, Func. Count: 67, Neg. LLF: 122.539645112846
Iteration: 10, Func. Count: 74, Neg. LLF: 122.53795478845296
Iteration: 11, Func. Count: 81, Neg. LLF: 122.5379122873981
Iteration: 12, Func. Count: 87, Neg. LLF: 122.53791244615576
Optimization terminated successfully (Exit mode 0)
Current function value: 122.5379122873981
Iterations: 12
Function evaluations: 87
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 22625320.46971654
Iteration: 2, Func. Count: 19, Neg. LLF: 123.11479377890595
Iteration: 3, Func. Count: 28, Neg. LLF: 121.75525266262075
Iteration: 4, Func. Count: 37, Neg. LLF: 121.0221964277014
Iteration: 5, Func. Count: 45, Neg. LLF: 134.05329773196115
Iteration: 6, Func. Count: 56, Neg. LLF: 120.78097523688776
Iteration: 7, Func. Count: 64, Neg. LLF: 120.72243001246238
Iteration: 8, Func. Count: 72, Neg. LLF: 120.71799695698571
Iteration: 9, Func. Count: 80, Neg. LLF: 120.7179032586746
Iteration: 10, Func. Count: 88, Neg. LLF: 120.71788386596737
Iteration: 11, Func. Count: 96, Neg. LLF: 120.72238566589142
Optimization terminated successfully (Exit mode 0)
Current function value: 120.71788386569072
Iterations: 12
Function evaluations: 100
Gradient evaluations: 11
Iteration: 1, Func. Count: 10, Neg. LLF: 22620363.109491423
Iteration: 2, Func. Count: 21, Neg. LLF: 122.99056946234705
Iteration: 3, Func. Count: 31, Neg. LLF: 120.98228149327576
Iteration: 4, Func. Count: 40, Neg. LLF: 120.74862682613836
Iteration: 5, Func. Count: 49, Neg. LLF: 121.95706713999978
Iteration: 6, Func. Count: 59, Neg. LLF: 342.3577696054402
Iteration: 7, Func. Count: 71, Neg. LLF: 120.808420652948
Iteration: 8, Func. Count: 81, Neg. LLF: 120.81937126725838
Iteration: 9, Func. Count: 91, Neg. LLF: 120.67607093777298
Iteration: 10, Func. Count: 101, Neg. LLF: 120.7444272268485
Iteration: 11, Func. Count: 111, Neg. LLF: 120.64529780627039
Iteration: 12, Func. Count: 120, Neg. LLF: 120.64529727197099
Optimization terminated successfully (Exit mode 0)
Current function value: 120.64529727197099
Iterations: 13
Function evaluations: 120
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 224.4540504525783
Iteration: 2, Func. Count: 23, Neg. LLF: 122.22697593866754
Iteration: 3, Func. Count: 34, Neg. LLF: 121.69386040013873
Iteration: 4, Func. Count: 44, Neg. LLF: 120.6981136287032
Iteration: 5, Func. Count: 54, Neg. LLF: 121.02962666622047
Iteration: 6, Func. Count: 65, Neg. LLF: 120.60918935951501
Iteration: 7, Func. Count: 75, Neg. LLF: 120.52199999473908
Iteration: 8, Func. Count: 85, Neg. LLF: 120.52181018457223
Iteration: 9, Func. Count: 95, Neg. LLF: 120.5218090167125
Iteration: 10, Func. Count: 104, Neg. LLF: 120.52180901672573
Optimization terminated successfully (Exit mode 0)
Current function value: 120.5218090167125
Iterations: 10
Function evaluations: 104
Gradient evaluations: 10
Iteration: 1, Func. Count: 12, Neg. LLF: 246.6631591205064
Iteration: 2, Func. Count: 25, Neg. LLF: 123.22105771270333
Iteration: 3, Func. Count: 37, Neg. LLF: 121.46649118754732
Iteration: 4, Func. Count: 48, Neg. LLF: 120.8529135361778
Iteration: 5, Func. Count: 59, Neg. LLF: 120.80347872707966
Iteration: 6, Func. Count: 70, Neg. LLF: 120.78090132233818
Iteration: 7, Func. Count: 81, Neg. LLF: 120.77304537284584
Iteration: 8, Func. Count: 92, Neg. LLF: 120.76177875606761
Iteration: 9, Func. Count: 103, Neg. LLF: 120.73903018223142
Iteration: 10, Func. Count: 114, Neg. LLF: 120.63997359013366
Iteration: 11, Func. Count: 125, Neg. LLF: 120.60827324300232
Iteration: 12, Func. Count: 136, Neg. LLF: 120.6032581652509
Iteration: 13, Func. Count: 147, Neg. LLF: 18780251.355647027
Iteration: 14, Func. Count: 161, Neg. LLF: 18835348.189076193
Iteration: 15, Func. Count: 175, Neg. LLF: 120.52478802053913
Iteration: 16, Func. Count: 186, Neg. LLF: 120.5979172464646
Iteration: 17, Func. Count: 198, Neg. LLF: 120.5218094129646
Iteration: 18, Func. Count: 208, Neg. LLF: 120.52180951530703
Optimization terminated successfully (Exit mode 0)
Current function value: 120.5218094129646
Iterations: 19
Function evaluations: 208
Gradient evaluations: 18
Iteration: 1, Func. Count: 5, Neg. LLF: 130.67442517205765
Iteration: 2, Func. Count: 10, Neg. LLF: 135.22749563690945
Iteration: 3, Func. Count: 15, Neg. LLF: 121.96805623378349
Iteration: 4, Func. Count: 19, Neg. LLF: 121.94171266309893
Iteration: 5, Func. Count: 23, Neg. LLF: 121.9395325938167
Iteration: 6, Func. Count: 27, Neg. LLF: 121.93946256823611
Iteration: 7, Func. Count: 31, Neg. LLF: 121.93946094681115
Iteration: 8, Func. Count: 35, Neg. LLF: 121.93946035893214
Optimization terminated successfully (Exit mode 0)
Current function value: 121.93946035893214
Iterations: 8
Function evaluations: 35
Gradient evaluations: 8
Iteration: 1, Func. Count: 6, Neg. LLF: 22712526.76650057
Iteration: 2, Func. Count: 13, Neg. LLF: 122.69947452521984
Iteration: 3, Func. Count: 19, Neg. LLF: 121.56224596780913
Iteration: 4, Func. Count: 24, Neg. LLF: 120.85565705057414
Iteration: 5, Func. Count: 29, Neg. LLF: 120.7201775888386
Iteration: 6, Func. Count: 34, Neg. LLF: 120.7178884598911
Iteration: 7, Func. Count: 39, Neg. LLF: 120.71788215876647
Iteration: 8, Func. Count: 43, Neg. LLF: 120.7178821589036
Optimization terminated successfully (Exit mode 0)
Current function value: 120.71788215876647
Iterations: 8
Function evaluations: 43
Gradient evaluations: 8
Iteration: 1, Func. Count: 7, Neg. LLF: 22740172.498436827
Iteration: 2, Func. Count: 15, Neg. LLF: 123.13406243812557
Iteration: 3, Func. Count: 22, Neg. LLF: 120.84999334765213
Iteration: 4, Func. Count: 28, Neg. LLF: 122.89309635027104
Iteration: 5, Func. Count: 35, Neg. LLF: 120.66526395233636
Iteration: 6, Func. Count: 41, Neg. LLF: 120.66508878102502
Iteration: 7, Func. Count: 46, Neg. LLF: 120.66508878020198
Optimization terminated successfully (Exit mode 0)
Current function value: 120.66508878102502
Iterations: 7
Function evaluations: 46
Gradient evaluations: 7
Iteration: 1, Func. Count: 8, Neg. LLF: 22720891.509574436
Iteration: 2, Func. Count: 17, Neg. LLF: 122.76621159747859
Iteration: 3, Func. Count: 25, Neg. LLF: 120.92109298010962
Iteration: 4, Func. Count: 32, Neg. LLF: 120.66617539040512
Iteration: 5, Func. Count: 39, Neg. LLF: 120.62400429379856
Iteration: 6, Func. Count: 46, Neg. LLF: 120.6211716647455
Iteration: 7, Func. Count: 53, Neg. LLF: 120.62085709345753
Iteration: 8, Func. Count: 60, Neg. LLF: 120.62084965601451
Iteration: 9, Func. Count: 66, Neg. LLF: 120.62084965598531
Optimization terminated successfully (Exit mode 0)
Current function value: 120.62084965601451
Iterations: 9
Function evaluations: 66
Gradient evaluations: 9
Iteration: 1, Func. Count: 9, Neg. LLF: 246.20016441899736
Iteration: 2, Func. Count: 19, Neg. LLF: 123.7889149048013
Iteration: 3, Func. Count: 28, Neg. LLF: 121.52631300480246
Iteration: 4, Func. Count: 36, Neg. LLF: 120.82959668354891
Iteration: 5, Func. Count: 44, Neg. LLF: 124.74170937521728
Iteration: 6, Func. Count: 53, Neg. LLF: 177.85710664435936
Iteration: 7, Func. Count: 62, Neg. LLF: 119.88599599455968
Iteration: 8, Func. Count: 71, Neg. LLF: 119.73382544837919
Iteration: 9, Func. Count: 79, Neg. LLF: 119.7335882964238
Iteration: 10, Func. Count: 87, Neg. LLF: 119.73357199200366
Iteration: 11, Func. Count: 95, Neg. LLF: 119.73355906378646
Iteration: 12, Func. Count: 103, Neg. LLF: 119.73353961239884
Iteration: 13, Func. Count: 111, Neg. LLF: 119.73353865184217
Optimization terminated successfully (Exit mode 0)
Current function value: 119.73353865184217
Iterations: 13
Function evaluations: 111
Gradient evaluations: 13
Iteration: 1, Func. Count: 6, Neg. LLF: 137.24853027943405
Iteration: 2, Func. Count: 12, Neg. LLF: 129.19896385457494
Iteration: 3, Func. Count: 18, Neg. LLF: 121.90315121042065
Iteration: 4, Func. Count: 23, Neg. LLF: 121.69634353714694
Iteration: 5, Func. Count: 28, Neg. LLF: 121.56412826662479
Iteration: 6, Func. Count: 33, Neg. LLF: 124.64047541341574
Iteration: 7, Func. Count: 40, Neg. LLF: 121.94629903328203
Iteration: 8, Func. Count: 46, Neg. LLF: 121.44480898416953
Iteration: 9, Func. Count: 51, Neg. LLF: 121.44163476866463
Iteration: 10, Func. Count: 56, Neg. LLF: 121.44114313637102
Iteration: 11, Func. Count: 61, Neg. LLF: 121.44109677555436
Iteration: 12, Func. Count: 66, Neg. LLF: 121.4410953298132
Iteration: 13, Func. Count: 70, Neg. LLF: 121.44109532974629
Optimization terminated successfully (Exit mode 0)
Current function value: 121.4410953298132
Iterations: 13
Function evaluations: 70
Gradient evaluations: 13
Iteration: 1, Func. Count: 7, Neg. LLF: 22604667.78429882
Iteration: 2, Func. Count: 15, Neg. LLF: 124.2610382606357
Iteration: 3, Func. Count: 22, Neg. LLF: 121.54287110344842
Iteration: 4, Func. Count: 28, Neg. LLF: 121.45817813968145
Iteration: 5, Func. Count: 34, Neg. LLF: 120.90979976743562
Iteration: 6, Func. Count: 40, Neg. LLF: 120.72241916742759
Iteration: 7, Func. Count: 46, Neg. LLF: 120.7180149800032
Iteration: 8, Func. Count: 52, Neg. LLF: 120.71788954263961
Iteration: 9, Func. Count: 58, Neg. LLF: 128.06951958815782
Optimization terminated successfully (Exit mode 0)
Current function value: 120.71788953127971
Iterations: 10
Function evaluations: 63
Gradient evaluations: 9
Iteration: 1, Func. Count: 8, Neg. LLF: 22609472.085480284
Iteration: 2, Func. Count: 17, Neg. LLF: 133.40557020718717
Iteration: 3, Func. Count: 25, Neg. LLF: 123.04816058859404
Iteration: 4, Func. Count: 33, Neg. LLF: 120.13094587450078
Iteration: 5, Func. Count: 40, Neg. LLF: 119.99723959379716
Iteration: 6, Func. Count: 47, Neg. LLF: 119.97306532262749
Iteration: 7, Func. Count: 54, Neg. LLF: 119.91604555245169
Iteration: 8, Func. Count: 61, Neg. LLF: 119.91305218235064
Iteration: 9, Func. Count: 68, Neg. LLF: 119.91279460865984
Iteration: 10, Func. Count: 75, Neg. LLF: 119.91276703902615
Iteration: 11, Func. Count: 81, Neg. LLF: 119.91276703851902
Optimization terminated successfully (Exit mode 0)
Current function value: 119.91276703902615
Iterations: 11
Function evaluations: 81
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 170.5677105699287
Iteration: 2, Func. Count: 18, Neg. LLF: 122.5049533392037
Iteration: 3, Func. Count: 27, Neg. LLF: 120.61524085936946
Iteration: 4, Func. Count: 35, Neg. LLF: 124.14083848947944
Iteration: 5, Func. Count: 44, Neg. LLF: 119.95298451639354
Iteration: 6, Func. Count: 52, Neg. LLF: 119.82391848242804
Iteration: 7, Func. Count: 60, Neg. LLF: 119.63807169253835
Iteration: 8, Func. Count: 68, Neg. LLF: 119.58085725188975
Iteration: 9, Func. Count: 76, Neg. LLF: 119.56658266984131
Iteration: 10, Func. Count: 84, Neg. LLF: 119.56509451032875
Iteration: 11, Func. Count: 92, Neg. LLF: 119.5650224269028
Iteration: 12, Func. Count: 100, Neg. LLF: 119.56501471898855
Iteration: 13, Func. Count: 107, Neg. LLF: 119.56501471898278
Optimization terminated successfully (Exit mode 0)
Current function value: 119.56501471898855
Iterations: 13
Function evaluations: 107
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 183.99199941813865
Iteration: 2, Func. Count: 20, Neg. LLF: 127.761197599885
Iteration: 3, Func. Count: 30, Neg. LLF: 121.34335811323058
Iteration: 4, Func. Count: 40, Neg. LLF: 119.68373212184473
Iteration: 5, Func. Count: 49, Neg. LLF: 119.88188852501482
Iteration: 6, Func. Count: 59, Neg. LLF: 119.61781772357376
Iteration: 7, Func. Count: 69, Neg. LLF: 119.35726104316451
Iteration: 8, Func. Count: 79, Neg. LLF: 119.33778196468324
Iteration: 9, Func. Count: 88, Neg. LLF: 119.3377566572806
Iteration: 10, Func. Count: 97, Neg. LLF: 119.33775525434929
Iteration: 11, Func. Count: 105, Neg. LLF: 119.3377552542228
Optimization terminated successfully (Exit mode 0)
Current function value: 119.33775525434929
Iterations: 11
Function evaluations: 105
Gradient evaluations: 11
Iteration: 1, Func. Count: 7, Neg. LLF: 130.5165719229247
Iteration: 2, Func. Count: 14, Neg. LLF: 135.25157891348312
Iteration: 3, Func. Count: 21, Neg. LLF: 121.76088529123263
Iteration: 4, Func. Count: 27, Neg. LLF: 121.84260157476466
Iteration: 5, Func. Count: 34, Neg. LLF: 121.76572278203054
Iteration: 6, Func. Count: 41, Neg. LLF: 121.54999786783702
Iteration: 7, Func. Count: 47, Neg. LLF: 124.39912559573249
Iteration: 8, Func. Count: 55, Neg. LLF: 122.05188823957805
Iteration: 9, Func. Count: 62, Neg. LLF: 121.44438651276697
Iteration: 10, Func. Count: 68, Neg. LLF: 121.4416289122381
Iteration: 11, Func. Count: 74, Neg. LLF: 121.44120000553154
Iteration: 12, Func. Count: 80, Neg. LLF: 121.44110747383647
Iteration: 13, Func. Count: 86, Neg. LLF: 121.44109780454566
Iteration: 14, Func. Count: 92, Neg. LLF: 121.44109529957868
Iteration: 15, Func. Count: 97, Neg. LLF: 121.44109554143593
Optimization terminated successfully (Exit mode 0)
Current function value: 121.44109529957868
Iterations: 15
Function evaluations: 97
Gradient evaluations: 15
Iteration: 1, Func. Count: 8, Neg. LLF: 22604741.050696295
Iteration: 2, Func. Count: 17, Neg. LLF: 124.2008126825805
Iteration: 3, Func. Count: 25, Neg. LLF: 121.5313477152089
Iteration: 4, Func. Count: 32, Neg. LLF: 121.47568418965912
Iteration: 5, Func. Count: 39, Neg. LLF: 120.94589762306931
Iteration: 6, Func. Count: 46, Neg. LLF: 120.72456915781073
Iteration: 7, Func. Count: 53, Neg. LLF: 120.71827775193141
Iteration: 8, Func. Count: 60, Neg. LLF: 120.71790508735081
Iteration: 9, Func. Count: 67, Neg. LLF: 1259.6398793552448
Optimization terminated successfully (Exit mode 0)
Current function value: 120.71790482155681
Iterations: 10
Function evaluations: 72
Gradient evaluations: 9
Iteration: 1, Func. Count: 9, Neg. LLF: 22607230.17366051
Iteration: 2, Func. Count: 19, Neg. LLF: 133.122503951748
Iteration: 3, Func. Count: 28, Neg. LLF: 122.84793889646579
Iteration: 4, Func. Count: 37, Neg. LLF: 120.12314304259161
Iteration: 5, Func. Count: 45, Neg. LLF: 119.96740572620457
Iteration: 6, Func. Count: 53, Neg. LLF: 119.95014813877071
Iteration: 7, Func. Count: 61, Neg. LLF: 119.91796410811723
Iteration: 8, Func. Count: 69, Neg. LLF: 119.91325970458479
Iteration: 9, Func. Count: 77, Neg. LLF: 119.91284056087267
Iteration: 10, Func. Count: 85, Neg. LLF: 119.91276858198498
Iteration: 11, Func. Count: 93, Neg. LLF: 119.9127665859806
Iteration: 12, Func. Count: 100, Neg. LLF: 119.9127665857859
Optimization terminated successfully (Exit mode 0)
Current function value: 119.9127665859806
Iterations: 12
Function evaluations: 100
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 169.0058396294031
Iteration: 2, Func. Count: 20, Neg. LLF: 122.22846739822968
Iteration: 3, Func. Count: 30, Neg. LLF: 120.6494899359356
Iteration: 4, Func. Count: 39, Neg. LLF: 125.18051053504495
Iteration: 5, Func. Count: 49, Neg. LLF: 119.98522046621791
Iteration: 6, Func. Count: 58, Neg. LLF: 120.14671846170839
Iteration: 7, Func. Count: 68, Neg. LLF: 119.60819450830076
Iteration: 8, Func. Count: 77, Neg. LLF: 119.57300013858709
Iteration: 9, Func. Count: 86, Neg. LLF: 119.56612743859006
Iteration: 10, Func. Count: 95, Neg. LLF: 119.56501659571875
Iteration: 11, Func. Count: 104, Neg. LLF: 119.56501478395666
Iteration: 12, Func. Count: 112, Neg. LLF: 119.56501478399586
Optimization terminated successfully (Exit mode 0)
Current function value: 119.56501478395666
Iterations: 12
Function evaluations: 112
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 181.98760711790592
Iteration: 2, Func. Count: 22, Neg. LLF: 126.83725288897632
Iteration: 3, Func. Count: 33, Neg. LLF: 121.06077166345639
Iteration: 4, Func. Count: 43, Neg. LLF: 121.22625508876412
Iteration: 5, Func. Count: 54, Neg. LLF: 122.21812458610607
Iteration: 6, Func. Count: 65, Neg. LLF: 120.17732741454283
Iteration: 7, Func. Count: 75, Neg. LLF: 164.6922164239085
Iteration: 8, Func. Count: 87, Neg. LLF: 119.60044302998055
Iteration: 9, Func. Count: 97, Neg. LLF: 119.38640075776769
Iteration: 10, Func. Count: 107, Neg. LLF: 119.3436690173003
Iteration: 11, Func. Count: 117, Neg. LLF: 119.33810771903804
Iteration: 12, Func. Count: 127, Neg. LLF: 119.33776824870887
Iteration: 13, Func. Count: 137, Neg. LLF: 119.33775495895638
Iteration: 14, Func. Count: 146, Neg. LLF: 119.33775495890474
Optimization terminated successfully (Exit mode 0)
Current function value: 119.33775495895638
Iterations: 14
Function evaluations: 146
Gradient evaluations: 14
Iteration: 1, Func. Count: 8, Neg. LLF: 130.31094512788468
Iteration: 2, Func. Count: 16, Neg. LLF: 135.20060489659423
Iteration: 3, Func. Count: 24, Neg. LLF: 121.7664400786439
Iteration: 4, Func. Count: 31, Neg. LLF: 121.84693147548663
Iteration: 5, Func. Count: 39, Neg. LLF: 121.77445631923385
Iteration: 6, Func. Count: 47, Neg. LLF: 121.60282774433435
Iteration: 7, Func. Count: 54, Neg. LLF: 124.01778809078169
Iteration: 8, Func. Count: 62, Neg. LLF: 121.98541927935581
Iteration: 9, Func. Count: 70, Neg. LLF: 121.52099544518353
Iteration: 10, Func. Count: 78, Neg. LLF: 121.44459586694522
Iteration: 11, Func. Count: 85, Neg. LLF: 121.44156019789897
Iteration: 12, Func. Count: 92, Neg. LLF: 121.44115624858065
Iteration: 13, Func. Count: 99, Neg. LLF: 121.44110752366555
Iteration: 14, Func. Count: 106, Neg. LLF: 121.44109525316125
Iteration: 15, Func. Count: 112, Neg. LLF: 121.44109541770487
Optimization terminated successfully (Exit mode 0)
Current function value: 121.44109525316125
Iterations: 15
Function evaluations: 112
Gradient evaluations: 15
Iteration: 1, Func. Count: 9, Neg. LLF: 22604669.346163515
Iteration: 2, Func. Count: 19, Neg. LLF: 124.30875371307513
Iteration: 3, Func. Count: 28, Neg. LLF: 121.53522395882639
Iteration: 4, Func. Count: 36, Neg. LLF: 121.87597667207613
Iteration: 5, Func. Count: 45, Neg. LLF: 121.09612530009386
Iteration: 6, Func. Count: 53, Neg. LLF: 120.92302813062149
Iteration: 7, Func. Count: 61, Neg. LLF: 120.78891780840034
Iteration: 8, Func. Count: 69, Neg. LLF: 120.72622937056754
Iteration: 9, Func. Count: 77, Neg. LLF: 120.72060830931447
Iteration: 10, Func. Count: 85, Neg. LLF: 22615099.545181006
Iteration: 11, Func. Count: 97, Neg. LLF: 120.72219726827271
Iteration: 12, Func. Count: 106, Neg. LLF: 120.71788217342983
Iteration: 13, Func. Count: 113, Neg. LLF: 120.71788217371382
Optimization terminated successfully (Exit mode 0)
Current function value: 120.71788217342983
Iterations: 14
Function evaluations: 113
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 22608388.789515667
Iteration: 2, Func. Count: 21, Neg. LLF: 133.33003918553533
Iteration: 3, Func. Count: 31, Neg. LLF: 122.97140281591717
Iteration: 4, Func. Count: 41, Neg. LLF: 120.13050222478495
Iteration: 5, Func. Count: 50, Neg. LLF: 119.99250187989222
Iteration: 6, Func. Count: 59, Neg. LLF: 119.9738737017675
Iteration: 7, Func. Count: 69, Neg. LLF: 119.91532785867018
Iteration: 8, Func. Count: 78, Neg. LLF: 119.9129899641088
Iteration: 9, Func. Count: 87, Neg. LLF: 119.91279151155716
Iteration: 10, Func. Count: 96, Neg. LLF: 119.9127665728249
Iteration: 11, Func. Count: 104, Neg. LLF: 119.91276657276127
Optimization terminated successfully (Exit mode 0)
Current function value: 119.9127665728249
Iterations: 11
Function evaluations: 104
Gradient evaluations: 11
Iteration: 1, Func. Count: 11, Neg. LLF: 170.2095286553843
Iteration: 2, Func. Count: 22, Neg. LLF: 122.35928254078446
Iteration: 3, Func. Count: 33, Neg. LLF: 120.67178272199186
Iteration: 4, Func. Count: 43, Neg. LLF: 130.38605055668623
Iteration: 5, Func. Count: 54, Neg. LLF: 121.59038362662304
Iteration: 6, Func. Count: 65, Neg. LLF: 119.38397382261314
Iteration: 7, Func. Count: 75, Neg. LLF: 204.1043765131567
Iteration: 8, Func. Count: 87, Neg. LLF: 126.5689277840768
Iteration: 9, Func. Count: 98, Neg. LLF: 118.48061805578033
Iteration: 10, Func. Count: 108, Neg. LLF: 118.32062638943619
Iteration: 11, Func. Count: 118, Neg. LLF: 139.99693027810196
Iteration: 12, Func. Count: 130, Neg. LLF: 118.28288691712167
Iteration: 13, Func. Count: 140, Neg. LLF: 118.27703997097457
Iteration: 14, Func. Count: 150, Neg. LLF: 118.27678725189594
Iteration: 15, Func. Count: 160, Neg. LLF: 118.27677510268279
Iteration: 16, Func. Count: 170, Neg. LLF: 118.27676861451307
Iteration: 17, Func. Count: 180, Neg. LLF: 118.27676747625127
Iteration: 18, Func. Count: 189, Neg. LLF: 118.27676746957555
Optimization terminated successfully (Exit mode 0)
Current function value: 118.27676747625127
Iterations: 18
Function evaluations: 189
Gradient evaluations: 18
Iteration: 1, Func. Count: 12, Neg. LLF: 182.77999191834013
Iteration: 2, Func. Count: 24, Neg. LLF: 126.6587656609884
Iteration: 3, Func. Count: 36, Neg. LLF: 120.84287511572447
Iteration: 4, Func. Count: 47, Neg. LLF: 120.69209056364444
Iteration: 5, Func. Count: 58, Neg. LLF: 124.23325638081626
Iteration: 6, Func. Count: 70, Neg. LLF: 132.49586910612055
Iteration: 7, Func. Count: 82, Neg. LLF: 119.46852334748655
Iteration: 8, Func. Count: 93, Neg. LLF: 130.9989165181503
Iteration: 9, Func. Count: 105, Neg. LLF: 119.01577303095495
Iteration: 10, Func. Count: 116, Neg. LLF: 118.44584137053683
Iteration: 11, Func. Count: 127, Neg. LLF: 118.2977767135808
Iteration: 12, Func. Count: 138, Neg. LLF: 118.2861649192024
Iteration: 13, Func. Count: 149, Neg. LLF: 118.27970010033948
Iteration: 14, Func. Count: 160, Neg. LLF: 118.27865347184533
Iteration: 15, Func. Count: 171, Neg. LLF: 118.27933930985698
Iteration: 16, Func. Count: 183, Neg. LLF: 118.27935449704387
Iteration: 17, Func. Count: 195, Neg. LLF: 118.27677930894204
Iteration: 18, Func. Count: 206, Neg. LLF: 118.27676748435691
Iteration: 19, Func. Count: 216, Neg. LLF: 118.27676757942203
Optimization terminated successfully (Exit mode 0)
Current function value: 118.27676748435691
Iterations: 19
Function evaluations: 216
Gradient evaluations: 19
Iteration: 1, Func. Count: 9, Neg. LLF: 130.01974905718083
Iteration: 2, Func. Count: 18, Neg. LLF: 135.30105356533355
Iteration: 3, Func. Count: 27, Neg. LLF: 121.76180931670054
Iteration: 4, Func. Count: 35, Neg. LLF: 121.84947312667045
Iteration: 5, Func. Count: 44, Neg. LLF: 121.78096858635088
Iteration: 6, Func. Count: 53, Neg. LLF: 121.61395807125925
Iteration: 7, Func. Count: 61, Neg. LLF: 123.77220454885243
Iteration: 8, Func. Count: 70, Neg. LLF: 121.98942727618238
Iteration: 9, Func. Count: 79, Neg. LLF: 121.48127414545326
Iteration: 10, Func. Count: 88, Neg. LLF: 121.44403477895361
Iteration: 11, Func. Count: 96, Neg. LLF: 121.44147050809367
Iteration: 12, Func. Count: 104, Neg. LLF: 121.4411518473692
Iteration: 13, Func. Count: 112, Neg. LLF: 121.44110432280733
Iteration: 14, Func. Count: 120, Neg. LLF: 121.4410954430247
Iteration: 15, Func. Count: 127, Neg. LLF: 121.44109566352041
Optimization terminated successfully (Exit mode 0)
Current function value: 121.4410954430247
Iterations: 15
Function evaluations: 127
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 22605037.673494194
Iteration: 2, Func. Count: 21, Neg. LLF: 124.46573246587654
Iteration: 3, Func. Count: 31, Neg. LLF: 121.54108881627364
Iteration: 4, Func. Count: 40, Neg. LLF: 121.68830524649701
Iteration: 5, Func. Count: 50, Neg. LLF: 120.82197419239392
Iteration: 6, Func. Count: 59, Neg. LLF: 120.7842492534328
Iteration: 7, Func. Count: 68, Neg. LLF: 120.72396159106673
Iteration: 8, Func. Count: 77, Neg. LLF: 120.71810554097466
Iteration: 9, Func. Count: 86, Neg. LLF: 120.71804720669473
Iteration: 10, Func. Count: 95, Neg. LLF: 120.71803028390333
Iteration: 11, Func. Count: 104, Neg. LLF: 129.96682059599001
Optimization terminated successfully (Exit mode 0)
Current function value: 120.71803027521939
Iterations: 12
Function evaluations: 108
Gradient evaluations: 11
Iteration: 1, Func. Count: 11, Neg. LLF: 22607987.786715362
Iteration: 2, Func. Count: 23, Neg. LLF: 133.302183560607
Iteration: 3, Func. Count: 34, Neg. LLF: 122.97287622954575
Iteration: 4, Func. Count: 45, Neg. LLF: 120.13687199653711
Iteration: 5, Func. Count: 55, Neg. LLF: 121.29522230880127
Iteration: 6, Func. Count: 67, Neg. LLF: 123.6445638801264
Iteration: 7, Func. Count: 78, Neg. LLF: 119.91309356388629
Iteration: 8, Func. Count: 88, Neg. LLF: 119.91278696439466
Iteration: 9, Func. Count: 98, Neg. LLF: 119.9127698311502
Iteration: 10, Func. Count: 108, Neg. LLF: 119.91276655358841
Iteration: 11, Func. Count: 117, Neg. LLF: 119.9127665535718
Optimization terminated successfully (Exit mode 0)
Current function value: 119.91276655358841
Iterations: 11
Function evaluations: 117
Gradient evaluations: 11
Iteration: 1, Func. Count: 12, Neg. LLF: 170.5393342632644
Iteration: 2, Func. Count: 24, Neg. LLF: 122.35975491260017
Iteration: 3, Func. Count: 36, Neg. LLF: 120.70537967352935
Iteration: 4, Func. Count: 47, Neg. LLF: 131.29819059170723
Iteration: 5, Func. Count: 59, Neg. LLF: 121.86411734428314
Iteration: 6, Func. Count: 71, Neg. LLF: 119.23897180948798
Iteration: 7, Func. Count: 82, Neg. LLF: 178.98400641715577
Iteration: 8, Func. Count: 95, Neg. LLF: 118.6886786326514
Iteration: 9, Func. Count: 106, Neg. LLF: 131.55428696454294
Iteration: 10, Func. Count: 119, Neg. LLF: 122.180761095369
Iteration: 11, Func. Count: 131, Neg. LLF: 118.28821341021072
Iteration: 12, Func. Count: 142, Neg. LLF: 118.28012080974811
Iteration: 13, Func. Count: 153, Neg. LLF: 118.27790359292175
Iteration: 14, Func. Count: 164, Neg. LLF: 118.27677211293275
Iteration: 15, Func. Count: 175, Neg. LLF: 118.27676757791934
Iteration: 16, Func. Count: 185, Neg. LLF: 118.27676757119809
Optimization terminated successfully (Exit mode 0)
Current function value: 118.27676757791934
Iterations: 16
Function evaluations: 185
Gradient evaluations: 16
Iteration: 1, Func. Count: 13, Neg. LLF: 182.83856052212852
Iteration: 2, Func. Count: 26, Neg. LLF: 126.65642841441945
Iteration: 3, Func. Count: 39, Neg. LLF: 120.94744901775667
Iteration: 4, Func. Count: 51, Neg. LLF: 121.24185736035953
Iteration: 5, Func. Count: 64, Neg. LLF: 121.4627479601023
Iteration: 6, Func. Count: 77, Neg. LLF: 119.70327662417002
Iteration: 7, Func. Count: 89, Neg. LLF: 128.7173232158282
Iteration: 8, Func. Count: 103, Neg. LLF: 118.44396805553811
Iteration: 9, Func. Count: 115, Neg. LLF: 118.57145401887709
Iteration: 10, Func. Count: 128, Neg. LLF: 118.29990704374205
Iteration: 11, Func. Count: 140, Neg. LLF: 118.28041025182017
Iteration: 12, Func. Count: 152, Neg. LLF: 118.27690331216857
Iteration: 13, Func. Count: 164, Neg. LLF: 118.27682957426428
Iteration: 14, Func. Count: 176, Neg. LLF: 118.27677560069645
Iteration: 15, Func. Count: 188, Neg. LLF: 118.27882497100481
Iteration: 16, Func. Count: 202, Neg. LLF: 118.27711235798964
Iteration: 17, Func. Count: 216, Neg. LLF: 118.27682102850281
Iteration: 18, Func. Count: 229, Neg. LLF: 118.27676744317604
Iteration: 19, Func. Count: 240, Neg. LLF: 118.2767675382459
Optimization terminated successfully (Exit mode 0)
Current function value: 118.27676744317604
Iterations: 20
Function evaluations: 240
Gradient evaluations: 19
Iteration: 1, Func. Count: 6, Neg. LLF: 132.82334048658538
Iteration: 2, Func. Count: 12, Neg. LLF: 147.926529129967
Iteration: 3, Func. Count: 18, Neg. LLF: 122.04246133132457
Iteration: 4, Func. Count: 23, Neg. LLF: 121.99776966371061
Iteration: 5, Func. Count: 28, Neg. LLF: 121.94750948406751
Iteration: 6, Func. Count: 33, Neg. LLF: 121.94200665480334
Iteration: 7, Func. Count: 38, Neg. LLF: 121.94108904795414
Iteration: 8, Func. Count: 43, Neg. LLF: 121.9401216647256
Iteration: 9, Func. Count: 48, Neg. LLF: 121.93956165849514
Iteration: 10, Func. Count: 53, Neg. LLF: 121.9394667080777
Iteration: 11, Func. Count: 58, Neg. LLF: 121.93946039331068
Iteration: 12, Func. Count: 62, Neg. LLF: 121.93946060459287
Optimization terminated successfully (Exit mode 0)
Current function value: 121.93946039331068
Iterations: 12
Function evaluations: 62
Gradient evaluations: 12
Iteration: 1, Func. Count: 7, Neg. LLF: 22703947.177939665
Iteration: 2, Func. Count: 15, Neg. LLF: 122.69073029594526
Iteration: 3, Func. Count: 22, Neg. LLF: 121.53636127524912
Iteration: 4, Func. Count: 28, Neg. LLF: 120.83899278622603
Iteration: 5, Func. Count: 34, Neg. LLF: 120.72022232317711
Iteration: 6, Func. Count: 40, Neg. LLF: 120.71788466941346
Iteration: 7, Func. Count: 46, Neg. LLF: 120.71788214787007
Iteration: 8, Func. Count: 51, Neg. LLF: 120.71788214800803
Optimization terminated successfully (Exit mode 0)
Current function value: 120.71788214787007
Iterations: 8
Function evaluations: 51
Gradient evaluations: 8
Iteration: 1, Func. Count: 8, Neg. LLF: 22717721.934494928
Iteration: 2, Func. Count: 17, Neg. LLF: 122.93889850858216
Iteration: 3, Func. Count: 25, Neg. LLF: 120.90152161095604
Iteration: 4, Func. Count: 32, Neg. LLF: 121.05636819128668
Iteration: 5, Func. Count: 40, Neg. LLF: 120.66535111532465
Iteration: 6, Func. Count: 47, Neg. LLF: 120.66529092897116
Iteration: 7, Func. Count: 54, Neg. LLF: 22628392.49499155
Iteration: 8, Func. Count: 65, Neg. LLF: 120.66508910963994
Iteration: 9, Func. Count: 72, Neg. LLF: 120.66508851862051
Optimization terminated successfully (Exit mode 0)
Current function value: 120.66508851862051
Iterations: 10
Function evaluations: 72
Gradient evaluations: 9
Iteration: 1, Func. Count: 9, Neg. LLF: 22710331.90597931
Iteration: 2, Func. Count: 19, Neg. LLF: 122.61786471526669
Iteration: 3, Func. Count: 28, Neg. LLF: 120.88021427881766
Iteration: 4, Func. Count: 36, Neg. LLF: 120.69561917797319
Iteration: 5, Func. Count: 44, Neg. LLF: 120.62800083287122
Iteration: 6, Func. Count: 52, Neg. LLF: 121.44822924969627
Iteration: 7, Func. Count: 61, Neg. LLF: 120.54275035019532
Iteration: 8, Func. Count: 69, Neg. LLF: 120.50701742863484
Iteration: 9, Func. Count: 77, Neg. LLF: 120.49053253950795
Iteration: 10, Func. Count: 85, Neg. LLF: 120.4857246982354
Iteration: 11, Func. Count: 93, Neg. LLF: 120.48531777047968
Iteration: 12, Func. Count: 101, Neg. LLF: 120.48530693033567
Iteration: 13, Func. Count: 108, Neg. LLF: 120.48530693020462
Optimization terminated successfully (Exit mode 0)
Current function value: 120.48530693033567
Iterations: 13
Function evaluations: 108
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 236.13993914212645
Iteration: 2, Func. Count: 21, Neg. LLF: 123.41428376597422
Iteration: 3, Func. Count: 31, Neg. LLF: 121.4729483851342
Iteration: 4, Func. Count: 40, Neg. LLF: 120.89220488508596
Iteration: 5, Func. Count: 49, Neg. LLF: 123.41385618387429
Iteration: 6, Func. Count: 59, Neg. LLF: 226.57905376611228
Iteration: 7, Func. Count: 69, Neg. LLF: 120.21600138813363
Iteration: 8, Func. Count: 78, Neg. LLF: 187.83575506766
Iteration: 9, Func. Count: 89, Neg. LLF: 120.0967941806522
Iteration: 10, Func. Count: 99, Neg. LLF: 119.97710632891389
Iteration: 11, Func. Count: 109, Neg. LLF: 119.86087647866597
Iteration: 12, Func. Count: 118, Neg. LLF: 119.80128444233289
Iteration: 13, Func. Count: 127, Neg. LLF: 119.74644675647224
Iteration: 14, Func. Count: 136, Neg. LLF: 119.73580049671152
Iteration: 15, Func. Count: 145, Neg. LLF: 119.73395883991452
Iteration: 16, Func. Count: 154, Neg. LLF: 119.73355630642489
Iteration: 17, Func. Count: 163, Neg. LLF: 119.73354220577627
Iteration: 18, Func. Count: 172, Neg. LLF: 119.73354048243776
Iteration: 19, Func. Count: 181, Neg. LLF: 119.73353886085151
Iteration: 20, Func. Count: 189, Neg. LLF: 119.7335388606942
Optimization terminated successfully (Exit mode 0)
Current function value: 119.73353886085151
Iterations: 20
Function evaluations: 189
Gradient evaluations: 20
Iteration: 1, Func. Count: 7, Neg. LLF: 126.01954227666288
Iteration: 2, Func. Count: 14, Neg. LLF: 148.3140818022745
Iteration: 3, Func. Count: 21, Neg. LLF: 122.06464424828714
Iteration: 4, Func. Count: 27, Neg. LLF: 121.66341786973742
Iteration: 5, Func. Count: 33, Neg. LLF: 121.51171758071602
Iteration: 6, Func. Count: 39, Neg. LLF: 121.61125161364129
Iteration: 7, Func. Count: 46, Neg. LLF: 121.4507419470653
Iteration: 8, Func. Count: 52, Neg. LLF: 121.44375339997227
Iteration: 9, Func. Count: 58, Neg. LLF: 121.44166495699828
Iteration: 10, Func. Count: 64, Neg. LLF: 121.44138956278799
Iteration: 11, Func. Count: 70, Neg. LLF: 121.44124172398266
Iteration: 12, Func. Count: 76, Neg. LLF: 121.44113859769992
Iteration: 13, Func. Count: 82, Neg. LLF: 121.44109857731777
Iteration: 14, Func. Count: 88, Neg. LLF: 121.44109528487401
Iteration: 15, Func. Count: 93, Neg. LLF: 121.44109528492665
Optimization terminated successfully (Exit mode 0)
Current function value: 121.44109528487401
Iterations: 15
Function evaluations: 93
Gradient evaluations: 15
Iteration: 1, Func. Count: 8, Neg. LLF: 22604740.993232965
Iteration: 2, Func. Count: 17, Neg. LLF: 124.46403501089436
Iteration: 3, Func. Count: 25, Neg. LLF: 121.54189202867468
Iteration: 4, Func. Count: 32, Neg. LLF: 121.10909956465538
Iteration: 5, Func. Count: 39, Neg. LLF: 121.45090739483602
Iteration: 6, Func. Count: 47, Neg. LLF: 120.74948247162745
Iteration: 7, Func. Count: 54, Neg. LLF: 130.98005344116942
Iteration: 8, Func. Count: 63, Neg. LLF: 608.2818508457235
Iteration: 9, Func. Count: 72, Neg. LLF: 120.71788475343224
Iteration: 10, Func. Count: 79, Neg. LLF: 120.71788214556534
Iteration: 11, Func. Count: 85, Neg. LLF: 120.71788214545401
Optimization terminated successfully (Exit mode 0)
Current function value: 120.71788214556534
Iterations: 12
Function evaluations: 85
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 22606504.239548374
Iteration: 2, Func. Count: 19, Neg. LLF: 133.4977666312701
Iteration: 3, Func. Count: 28, Neg. LLF: 122.79529425406899
Iteration: 4, Func. Count: 37, Neg. LLF: 120.12093673654344
Iteration: 5, Func. Count: 45, Neg. LLF: 119.9704324958777
Iteration: 6, Func. Count: 53, Neg. LLF: 119.96309214407118
Iteration: 7, Func. Count: 62, Neg. LLF: 119.91501460399948
Iteration: 8, Func. Count: 70, Neg. LLF: 119.9130931126559
Iteration: 9, Func. Count: 78, Neg. LLF: 119.91280381300722
Iteration: 10, Func. Count: 86, Neg. LLF: 119.91276655978417
Iteration: 11, Func. Count: 93, Neg. LLF: 119.9127665597706
Optimization terminated successfully (Exit mode 0)
Current function value: 119.91276655978417
Iterations: 11
Function evaluations: 93
Gradient evaluations: 11
Iteration: 1, Func. Count: 10, Neg. LLF: 166.5219155302797
Iteration: 2, Func. Count: 20, Neg. LLF: 121.61261455215407
Iteration: 3, Func. Count: 30, Neg. LLF: 120.75357677570096
Iteration: 4, Func. Count: 39, Neg. LLF: 122.37661682428963
Iteration: 5, Func. Count: 49, Neg. LLF: 120.05684324095992
Iteration: 6, Func. Count: 58, Neg. LLF: 119.9280309769831
Iteration: 7, Func. Count: 67, Neg. LLF: 121.59701118316562
Iteration: 8, Func. Count: 79, Neg. LLF: 119.65309881414068
Iteration: 9, Func. Count: 88, Neg. LLF: 119.58707906004575
Iteration: 10, Func. Count: 97, Neg. LLF: 119.56753453982017
Iteration: 11, Func. Count: 106, Neg. LLF: 119.56556810052066
Iteration: 12, Func. Count: 115, Neg. LLF: 119.56504950743175
Iteration: 13, Func. Count: 124, Neg. LLF: 119.56501648953235
Iteration: 14, Func. Count: 133, Neg. LLF: 119.56501472000069
Iteration: 15, Func. Count: 141, Neg. LLF: 119.56501472001582
Optimization terminated successfully (Exit mode 0)
Current function value: 119.56501472000069
Iterations: 15
Function evaluations: 141
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 178.4416755936995
Iteration: 2, Func. Count: 22, Neg. LLF: 125.04639664460024
Iteration: 3, Func. Count: 33, Neg. LLF: 121.04155824109286
Iteration: 4, Func. Count: 43, Neg. LLF: 121.84676121777908
Iteration: 5, Func. Count: 54, Neg. LLF: 120.80889642942122
Iteration: 6, Func. Count: 65, Neg. LLF: 119.97618253863656
Iteration: 7, Func. Count: 75, Neg. LLF: 133.7403546382479
Iteration: 8, Func. Count: 87, Neg. LLF: 173.44699442459066
Iteration: 9, Func. Count: 98, Neg. LLF: 119.36357282230891
Iteration: 10, Func. Count: 108, Neg. LLF: 119.36230694325582
Iteration: 11, Func. Count: 119, Neg. LLF: 119.33778272137538
Iteration: 12, Func. Count: 129, Neg. LLF: 119.33775571246306
Iteration: 13, Func. Count: 139, Neg. LLF: 119.3377549126181
Optimization terminated successfully (Exit mode 0)
Current function value: 119.3377549126181
Iterations: 13
Function evaluations: 139
Gradient evaluations: 13
Iteration: 1, Func. Count: 8, Neg. LLF: 131.62064233268643
Iteration: 2, Func. Count: 16, Neg. LLF: 154.20553143051245
Iteration: 3, Func. Count: 24, Neg. LLF: 121.1112140281837
Iteration: 4, Func. Count: 31, Neg. LLF: 131.24611367264052
Iteration: 5, Func. Count: 39, Neg. LLF: 120.6483579204762
Iteration: 6, Func. Count: 46, Neg. LLF: 120.4372502410982
Iteration: 7, Func. Count: 53, Neg. LLF: 120.42567689483914
Iteration: 8, Func. Count: 60, Neg. LLF: 120.42372700505763
Iteration: 9, Func. Count: 67, Neg. LLF: 120.42348039018763
Iteration: 10, Func. Count: 74, Neg. LLF: 120.423325726316
Iteration: 11, Func. Count: 81, Neg. LLF: 120.42332169532723
Iteration: 12, Func. Count: 87, Neg. LLF: 120.42332200637482
Optimization terminated successfully (Exit mode 0)
Current function value: 120.42332169532723
Iterations: 12
Function evaluations: 87
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 22604987.54041922
Iteration: 2, Func. Count: 19, Neg. LLF: 124.3919415488467
Iteration: 3, Func. Count: 28, Neg. LLF: 121.52713755580486
Iteration: 4, Func. Count: 36, Neg. LLF: 121.0567046251033
Iteration: 5, Func. Count: 44, Neg. LLF: 123.12367227467026
Iteration: 6, Func. Count: 54, Neg. LLF: 120.72358277434789
Iteration: 7, Func. Count: 62, Neg. LLF: 120.72006660862661
Iteration: 8, Func. Count: 70, Neg. LLF: 120.71794186051478
Iteration: 9, Func. Count: 78, Neg. LLF: 120.71788551123022
Iteration: 10, Func. Count: 86, Neg. LLF: 133.85349441361848
Optimization terminated successfully (Exit mode 0)
Current function value: 120.71788549317692
Iterations: 11
Function evaluations: 91
Gradient evaluations: 10
Iteration: 1, Func. Count: 10, Neg. LLF: 22605243.506867863
Iteration: 2, Func. Count: 21, Neg. LLF: 133.1990008412187
Iteration: 3, Func. Count: 31, Neg. LLF: 122.59973790084213
Iteration: 4, Func. Count: 41, Neg. LLF: 120.11375220881867
Iteration: 5, Func. Count: 50, Neg. LLF: 119.9535579518224
Iteration: 6, Func. Count: 59, Neg. LLF: 119.93327201577281
Iteration: 7, Func. Count: 68, Neg. LLF: 119.92306833165472
Iteration: 8, Func. Count: 77, Neg. LLF: 119.9135278209168
Iteration: 9, Func. Count: 86, Neg. LLF: 119.9129515506491
Iteration: 10, Func. Count: 95, Neg. LLF: 119.91277035212434
Iteration: 11, Func. Count: 104, Neg. LLF: 119.91276664100964
Iteration: 12, Func. Count: 112, Neg. LLF: 119.91276664071005
Optimization terminated successfully (Exit mode 0)
Current function value: 119.91276664100964
Iterations: 12
Function evaluations: 112
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 165.11131873644143
Iteration: 2, Func. Count: 22, Neg. LLF: 121.50353752451235
Iteration: 3, Func. Count: 32, Neg. LLF: 125.08972711525458
Iteration: 4, Func. Count: 43, Neg. LLF: 121.55520839195322
Iteration: 5, Func. Count: 54, Neg. LLF: 120.59295133889574
Iteration: 6, Func. Count: 64, Neg. LLF: 131.54001802533296
Iteration: 7, Func. Count: 75, Neg. LLF: 121.04835057252905
Iteration: 8, Func. Count: 86, Neg. LLF: 120.1884859343087
Iteration: 9, Func. Count: 96, Neg. LLF: 120.14106828168288
Iteration: 10, Func. Count: 107, Neg. LLF: 128.94646948256852
Iteration: 11, Func. Count: 118, Neg. LLF: 120.3065398252963
Iteration: 12, Func. Count: 129, Neg. LLF: 119.56643835831419
Iteration: 13, Func. Count: 139, Neg. LLF: 119.56510352630778
Iteration: 14, Func. Count: 149, Neg. LLF: 119.56501846349293
Iteration: 15, Func. Count: 159, Neg. LLF: 119.56501523489868
Iteration: 16, Func. Count: 169, Neg. LLF: 119.5650147381765
Optimization terminated successfully (Exit mode 0)
Current function value: 119.5650147381765
Iterations: 16
Function evaluations: 169
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 176.68625405392447
Iteration: 2, Func. Count: 24, Neg. LLF: 124.52937194653174
Iteration: 3, Func. Count: 36, Neg. LLF: 120.77822511319997
Iteration: 4, Func. Count: 47, Neg. LLF: 120.31994671370056
Iteration: 5, Func. Count: 58, Neg. LLF: 120.79624815807502
Iteration: 6, Func. Count: 70, Neg. LLF: 120.64882931698777
Iteration: 7, Func. Count: 82, Neg. LLF: 119.43601912714126
Iteration: 8, Func. Count: 94, Neg. LLF: 119.34599177905595
Iteration: 9, Func. Count: 105, Neg. LLF: 119.33781683641202
Iteration: 10, Func. Count: 116, Neg. LLF: 119.33776002737478
Iteration: 11, Func. Count: 127, Neg. LLF: 119.33775521626288
Iteration: 12, Func. Count: 137, Neg. LLF: 119.33775521643574
Optimization terminated successfully (Exit mode 0)
Current function value: 119.33775521626288
Iterations: 12
Function evaluations: 137
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 131.78354019902739
Iteration: 2, Func. Count: 18, Neg. LLF: 153.87064864350543
Iteration: 3, Func. Count: 27, Neg. LLF: 121.10451406914771
Iteration: 4, Func. Count: 35, Neg. LLF: 131.51477962098167
Iteration: 5, Func. Count: 44, Neg. LLF: 120.61227137273497
Iteration: 6, Func. Count: 52, Neg. LLF: 120.45136171830205
Iteration: 7, Func. Count: 60, Neg. LLF: 120.42705259641852
Iteration: 8, Func. Count: 68, Neg. LLF: 120.42390700598249
Iteration: 9, Func. Count: 76, Neg. LLF: 120.42353893497777
Iteration: 10, Func. Count: 84, Neg. LLF: 120.42333774115558
Iteration: 11, Func. Count: 92, Neg. LLF: 120.42332199534947
Iteration: 12, Func. Count: 99, Neg. LLF: 120.42332215559277
Optimization terminated successfully (Exit mode 0)
Current function value: 120.42332199534947
Iterations: 12
Function evaluations: 99
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 22604787.056057166
Iteration: 2, Func. Count: 21, Neg. LLF: 124.49963969649453
Iteration: 3, Func. Count: 31, Neg. LLF: 121.52549821352311
Iteration: 4, Func. Count: 40, Neg. LLF: 121.17832826518026
Iteration: 5, Func. Count: 49, Neg. LLF: 121.13420760886883
Iteration: 6, Func. Count: 59, Neg. LLF: 120.82489265250538
Iteration: 7, Func. Count: 68, Neg. LLF: 120.7429709972737
Iteration: 8, Func. Count: 77, Neg. LLF: 120.79189835832814
Iteration: 9, Func. Count: 87, Neg. LLF: 23385276.545289624
Iteration: 10, Func. Count: 100, Neg. LLF: 121.95447384551547
Iteration: 11, Func. Count: 110, Neg. LLF: 120.71788211717336
Iteration: 12, Func. Count: 118, Neg. LLF: 120.7178821169734
Optimization terminated successfully (Exit mode 0)
Current function value: 120.71788211717336
Iterations: 13
Function evaluations: 118
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 22605806.766205925
Iteration: 2, Func. Count: 23, Neg. LLF: 133.389539878004
Iteration: 3, Func. Count: 34, Neg. LLF: 122.70704733074678
Iteration: 4, Func. Count: 45, Neg. LLF: 120.11976129649604
Iteration: 5, Func. Count: 55, Neg. LLF: 119.96544845711598
Iteration: 6, Func. Count: 65, Neg. LLF: 119.96048414196271
Iteration: 7, Func. Count: 76, Neg. LLF: 119.91510174723985
Iteration: 8, Func. Count: 86, Neg. LLF: 119.91316845023641
Iteration: 9, Func. Count: 96, Neg. LLF: 119.91280457940425
Iteration: 10, Func. Count: 106, Neg. LLF: 119.91276656717412
Iteration: 11, Func. Count: 115, Neg. LLF: 119.91276656722384
Optimization terminated successfully (Exit mode 0)
Current function value: 119.91276656717412
Iterations: 11
Function evaluations: 115
Gradient evaluations: 11
Iteration: 1, Func. Count: 12, Neg. LLF: 166.08790198287696
Iteration: 2, Func. Count: 24, Neg. LLF: 121.54435473648363
Iteration: 3, Func. Count: 35, Neg. LLF: 121.45776404954687
Iteration: 4, Func. Count: 47, Neg. LLF: 132.8404655425656
Iteration: 5, Func. Count: 59, Neg. LLF: 123.23206874843055
Iteration: 6, Func. Count: 71, Neg. LLF: 119.54557345832765
Iteration: 7, Func. Count: 82, Neg. LLF: 118.671732930822
Iteration: 8, Func. Count: 93, Neg. LLF: 118.33261895737469
Iteration: 9, Func. Count: 104, Neg. LLF: 281.52178554363053
Iteration: 10, Func. Count: 117, Neg. LLF: 118.29051840623042
Iteration: 11, Func. Count: 128, Neg. LLF: 118.27742047807254
Iteration: 12, Func. Count: 139, Neg. LLF: 118.27680156032748
Iteration: 13, Func. Count: 150, Neg. LLF: 118.27676834957705
Iteration: 14, Func. Count: 161, Neg. LLF: 118.27676743458308
Optimization terminated successfully (Exit mode 0)
Current function value: 118.27676743458308
Iterations: 14
Function evaluations: 161
Gradient evaluations: 14
Iteration: 1, Func. Count: 13, Neg. LLF: 177.2941313120735
Iteration: 2, Func. Count: 26, Neg. LLF: 124.33718130602077
Iteration: 3, Func. Count: 39, Neg. LLF: 120.77268957166639
Iteration: 4, Func. Count: 51, Neg. LLF: 120.06645504090645
Iteration: 5, Func. Count: 63, Neg. LLF: 120.24721554988822
Iteration: 6, Func. Count: 76, Neg. LLF: 123.04537906893168
Iteration: 7, Func. Count: 89, Neg. LLF: 157.53495175823574
Iteration: 8, Func. Count: 102, Neg. LLF: 118.94110581516368
Iteration: 9, Func. Count: 114, Neg. LLF: 118.43757666661755
Iteration: 10, Func. Count: 126, Neg. LLF: 118.52458172614672
Iteration: 11, Func. Count: 139, Neg. LLF: 118.38652719895852
Iteration: 12, Func. Count: 152, Neg. LLF: 118.29491093741252
Iteration: 13, Func. Count: 164, Neg. LLF: 118.28226237579064
Iteration: 14, Func. Count: 176, Neg. LLF: 118.27853268776659
Iteration: 15, Func. Count: 188, Neg. LLF: 118.27686220141561
Iteration: 16, Func. Count: 200, Neg. LLF: 118.27677514126596
Iteration: 17, Func. Count: 212, Neg. LLF: 118.27676767558995
Iteration: 18, Func. Count: 223, Neg. LLF: 118.27676777075854
Optimization terminated successfully (Exit mode 0)
Current function value: 118.27676767558995
Iterations: 18
Function evaluations: 223
Gradient evaluations: 18
Iteration: 1, Func. Count: 10, Neg. LLF: 132.12351913995158
Iteration: 2, Func. Count: 20, Neg. LLF: 153.4577956325592
Iteration: 3, Func. Count: 30, Neg. LLF: 121.10172609573812
Iteration: 4, Func. Count: 39, Neg. LLF: 131.6219071304859
Iteration: 5, Func. Count: 49, Neg. LLF: 120.60483610728804
Iteration: 6, Func. Count: 58, Neg. LLF: 120.46839368945184
Iteration: 7, Func. Count: 67, Neg. LLF: 120.42525696843386
Iteration: 8, Func. Count: 76, Neg. LLF: 120.42389104366778
Iteration: 9, Func. Count: 85, Neg. LLF: 120.42348446239971
Iteration: 10, Func. Count: 94, Neg. LLF: 120.42333454051679
Iteration: 11, Func. Count: 103, Neg. LLF: 120.423321958091
Iteration: 12, Func. Count: 111, Neg. LLF: 120.4233221638229
Optimization terminated successfully (Exit mode 0)
Current function value: 120.423321958091
Iterations: 12
Function evaluations: 111
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 22604756.724867344
Iteration: 2, Func. Count: 23, Neg. LLF: 124.65866157660386
Iteration: 3, Func. Count: 34, Neg. LLF: 121.52559362464895
Iteration: 4, Func. Count: 44, Neg. LLF: 121.42896862602716
Iteration: 5, Func. Count: 54, Neg. LLF: 120.97285179650852
Iteration: 6, Func. Count: 64, Neg. LLF: 120.75011127829987
Iteration: 7, Func. Count: 74, Neg. LLF: 120.71853868209355
Iteration: 8, Func. Count: 84, Neg. LLF: 120.71823507740834
Iteration: 9, Func. Count: 94, Neg. LLF: 22630553.148770444
Iteration: 10, Func. Count: 109, Neg. LLF: 120.71789243811266
Iteration: 11, Func. Count: 119, Neg. LLF: 120.71788213896328
Iteration: 12, Func. Count: 128, Neg. LLF: 120.71788213896092
Optimization terminated successfully (Exit mode 0)
Current function value: 120.71788213896328
Iterations: 13
Function evaluations: 128
Gradient evaluations: 12
Iteration: 1, Func. Count: 12, Neg. LLF: 22605585.325866878
Iteration: 2, Func. Count: 25, Neg. LLF: 133.35809676575465
Iteration: 3, Func. Count: 37, Neg. LLF: 122.73309001904846
Iteration: 4, Func. Count: 49, Neg. LLF: 120.12686585506152
Iteration: 5, Func. Count: 60, Neg. LLF: 122.3090364713703
Iteration: 6, Func. Count: 73, Neg. LLF: 124.21113130372856
Iteration: 7, Func. Count: 85, Neg. LLF: 119.91334852816617
Iteration: 8, Func. Count: 96, Neg. LLF: 119.9127719312162
Iteration: 9, Func. Count: 107, Neg. LLF: 119.9127667121005
Iteration: 10, Func. Count: 117, Neg. LLF: 119.91276671219961
Optimization terminated successfully (Exit mode 0)
Current function value: 119.9127667121005
Iterations: 10
Function evaluations: 117
Gradient evaluations: 10
Iteration: 1, Func. Count: 13, Neg. LLF: 166.34229207198956
Iteration: 2, Func. Count: 26, Neg. LLF: 121.53770191768855
Iteration: 3, Func. Count: 38, Neg. LLF: 121.37641670046753
Iteration: 4, Func. Count: 51, Neg. LLF: 132.94740317415938
Iteration: 5, Func. Count: 64, Neg. LLF: 123.14946365737745
Iteration: 6, Func. Count: 77, Neg. LLF: 119.27666584595315
Iteration: 7, Func. Count: 89, Neg. LLF: 118.34425043199606
Iteration: 8, Func. Count: 101, Neg. LLF: 126.77456484109763
Iteration: 9, Func. Count: 116, Neg. LLF: 118.30332464478666
Iteration: 10, Func. Count: 128, Neg. LLF: 118.27907827986166
Iteration: 11, Func. Count: 140, Neg. LLF: 118.27688006495059
Iteration: 12, Func. Count: 152, Neg. LLF: 118.2767675315845
Iteration: 13, Func. Count: 163, Neg. LLF: 118.27676752487824
Optimization terminated successfully (Exit mode 0)
Current function value: 118.2767675315845
Iterations: 13
Function evaluations: 163
Gradient evaluations: 13
Iteration: 1, Func. Count: 14, Neg. LLF: 177.31137913442186
Iteration: 2, Func. Count: 28, Neg. LLF: 124.33665696070966
Iteration: 3, Func. Count: 42, Neg. LLF: 120.90385252713307
Iteration: 4, Func. Count: 55, Neg. LLF: 120.10976694178635
Iteration: 5, Func. Count: 68, Neg. LLF: 120.77153961076068
Iteration: 6, Func. Count: 82, Neg. LLF: 121.20732283218383
Iteration: 7, Func. Count: 96, Neg. LLF: 169.38619534303177
Iteration: 8, Func. Count: 110, Neg. LLF: 118.73283965446237
Iteration: 9, Func. Count: 123, Neg. LLF: 118.35541364729676
Iteration: 10, Func. Count: 136, Neg. LLF: 128.26335925163212
Iteration: 11, Func. Count: 151, Neg. LLF: 118.29908230743263
Iteration: 12, Func. Count: 164, Neg. LLF: 118.28804208402468
Iteration: 13, Func. Count: 177, Neg. LLF: 118.27850111218929
Iteration: 14, Func. Count: 190, Neg. LLF: 118.27680004982106
Iteration: 15, Func. Count: 203, Neg. LLF: 118.27676772853705
Iteration: 16, Func. Count: 215, Neg. LLF: 118.2767678235701
Optimization terminated successfully (Exit mode 0)
Current function value: 118.27676772853705
Iterations: 16
Function evaluations: 215
Gradient evaluations: 16
Iteration: 1, Func. Count: 7, Neg. LLF: 138.97340924679503
Iteration: 2, Func. Count: 15, Neg. LLF: 157.07902336737092
Iteration: 3, Func. Count: 22, Neg. LLF: 122.04116254716482
Iteration: 4, Func. Count: 28, Neg. LLF: 122.02836900235809
Iteration: 5, Func. Count: 34, Neg. LLF: 121.96511684618935
Iteration: 6, Func. Count: 40, Neg. LLF: 121.95677587545556
Iteration: 7, Func. Count: 46, Neg. LLF: 121.94974214632798
Iteration: 8, Func. Count: 52, Neg. LLF: 121.9466355995512
Iteration: 9, Func. Count: 58, Neg. LLF: 121.94043938777482
Iteration: 10, Func. Count: 64, Neg. LLF: 121.9395302222919
Iteration: 11, Func. Count: 70, Neg. LLF: 121.93946069410256
Iteration: 12, Func. Count: 75, Neg. LLF: 121.93946088050855
Optimization terminated successfully (Exit mode 0)
Current function value: 121.93946069410256
Iterations: 12
Function evaluations: 75
Gradient evaluations: 12
Iteration: 1, Func. Count: 8, Neg. LLF: 22722060.067549583
Iteration: 2, Func. Count: 17, Neg. LLF: 123.11156301864108
Iteration: 3, Func. Count: 25, Neg. LLF: 121.63047566523558
Iteration: 4, Func. Count: 32, Neg. LLF: 121.05595530738648
Iteration: 5, Func. Count: 39, Neg. LLF: 122.18746205953754
Iteration: 6, Func. Count: 49, Neg. LLF: 120.76881734569551
Iteration: 7, Func. Count: 56, Neg. LLF: 120.72383072106489
Iteration: 8, Func. Count: 63, Neg. LLF: 120.71802031671629
Iteration: 9, Func. Count: 70, Neg. LLF: 120.71788222824684
Iteration: 10, Func. Count: 76, Neg. LLF: 120.71788222733241
Optimization terminated successfully (Exit mode 0)
Current function value: 120.71788222824684
Iterations: 10
Function evaluations: 76
Gradient evaluations: 10
Iteration: 1, Func. Count: 9, Neg. LLF: 22730671.484809555
Iteration: 2, Func. Count: 19, Neg. LLF: 123.09982886429887
Iteration: 3, Func. Count: 28, Neg. LLF: 120.95028113643195
Iteration: 4, Func. Count: 36, Neg. LLF: 120.76083514915138
Iteration: 5, Func. Count: 44, Neg. LLF: 120.66682553167051
Iteration: 6, Func. Count: 52, Neg. LLF: 120.66557680750557
Iteration: 7, Func. Count: 60, Neg. LLF: 120.66534911995605
Iteration: 8, Func. Count: 68, Neg. LLF: 22622819.858813472
Iteration: 9, Func. Count: 80, Neg. LLF: 120.66558214224301
Iteration: 10, Func. Count: 88, Neg. LLF: 120.66508852136184
Optimization terminated successfully (Exit mode 0)
Current function value: 120.66508852127829
Iterations: 11
Function evaluations: 88
Gradient evaluations: 10
Iteration: 1, Func. Count: 10, Neg. LLF: 22711717.242121898
Iteration: 2, Func. Count: 21, Neg. LLF: 122.63369024072529
Iteration: 3, Func. Count: 31, Neg. LLF: 120.87276842709721
Iteration: 4, Func. Count: 40, Neg. LLF: 120.68520523295793
Iteration: 5, Func. Count: 49, Neg. LLF: 120.62499299006613
Iteration: 6, Func. Count: 58, Neg. LLF: 121.95226937632238
Iteration: 7, Func. Count: 68, Neg. LLF: 120.54042321430462
Iteration: 8, Func. Count: 77, Neg. LLF: 120.50244820680854
Iteration: 9, Func. Count: 86, Neg. LLF: 120.4890340387173
Iteration: 10, Func. Count: 95, Neg. LLF: 120.48552278109163
Iteration: 11, Func. Count: 104, Neg. LLF: 120.48530991790108
Iteration: 12, Func. Count: 113, Neg. LLF: 122.6895826812895
Iteration: 13, Func. Count: 125, Neg. LLF: 120.48737650610599
Optimization terminated successfully (Exit mode 0)
Current function value: 120.48530772644514
Iterations: 14
Function evaluations: 128
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 235.1438847990724
Iteration: 2, Func. Count: 23, Neg. LLF: 123.38806820689814
Iteration: 3, Func. Count: 34, Neg. LLF: 121.4767181267058
Iteration: 4, Func. Count: 44, Neg. LLF: 120.8735891417107
Iteration: 5, Func. Count: 54, Neg. LLF: 120.80746182507326
Iteration: 6, Func. Count: 64, Neg. LLF: 120.78918487025183
Iteration: 7, Func. Count: 74, Neg. LLF: 120.7763081605431
Iteration: 8, Func. Count: 84, Neg. LLF: 120.76704987174799
Iteration: 9, Func. Count: 94, Neg. LLF: 120.72025568841394
Iteration: 10, Func. Count: 104, Neg. LLF: 120.63768136089327
Iteration: 11, Func. Count: 114, Neg. LLF: 120.65704505307322
Iteration: 12, Func. Count: 125, Neg. LLF: 120.61619943979073
Iteration: 13, Func. Count: 135, Neg. LLF: 6922.975987199412
Iteration: 14, Func. Count: 148, Neg. LLF: 7057.0058878867985
Iteration: 15, Func. Count: 161, Neg. LLF: 121.08255001159989
Iteration: 16, Func. Count: 172, Neg. LLF: 120.4853785506843
Iteration: 17, Func. Count: 182, Neg. LLF: 120.4853070422502
Iteration: 18, Func. Count: 191, Neg. LLF: 120.4853071455619
Optimization terminated successfully (Exit mode 0)
Current function value: 120.4853070422502
Iterations: 19
Function evaluations: 191
Gradient evaluations: 18
Iteration: 1, Func. Count: 8, Neg. LLF: 129.75836355050333
Iteration: 2, Func. Count: 16, Neg. LLF: 149.65674579209644
Iteration: 3, Func. Count: 24, Neg. LLF: 122.29721205640791
Iteration: 4, Func. Count: 31, Neg. LLF: 121.89448280949718
Iteration: 5, Func. Count: 38, Neg. LLF: 121.51150237529204
Iteration: 6, Func. Count: 45, Neg. LLF: 121.8631097885149
Iteration: 7, Func. Count: 55, Neg. LLF: 121.44421566575005
Iteration: 8, Func. Count: 62, Neg. LLF: 121.44134280216
Iteration: 9, Func. Count: 69, Neg. LLF: 121.44124809860561
Iteration: 10, Func. Count: 76, Neg. LLF: 121.441187082686
Iteration: 11, Func. Count: 83, Neg. LLF: 121.44111483293669
Iteration: 12, Func. Count: 90, Neg. LLF: 121.44109731196076
Iteration: 13, Func. Count: 97, Neg. LLF: 121.44109521947274
Iteration: 14, Func. Count: 103, Neg. LLF: 121.44109521948599
Optimization terminated successfully (Exit mode 0)
Current function value: 121.44109521947274
Iterations: 14
Function evaluations: 103
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 22604958.414204977
Iteration: 2, Func. Count: 19, Neg. LLF: 124.72077466013106
Iteration: 3, Func. Count: 28, Neg. LLF: 121.53359041830646
Iteration: 4, Func. Count: 36, Neg. LLF: 121.09658304411798
Iteration: 5, Func. Count: 44, Neg. LLF: 122.13407454675648
Iteration: 6, Func. Count: 53, Neg. LLF: 120.73140601100025
Iteration: 7, Func. Count: 61, Neg. LLF: 120.73835909896036
Iteration: 8, Func. Count: 71, Neg. LLF: 120.72451750874846
Iteration: 9, Func. Count: 79, Neg. LLF: 120.72396486960368
Iteration: 10, Func. Count: 87, Neg. LLF: 124.78964152785234
Iteration: 11, Func. Count: 98, Neg. LLF: 120.71790678918681
Iteration: 12, Func. Count: 106, Neg. LLF: 120.71789833554207
Iteration: 13, Func. Count: 114, Neg. LLF: 120.71789598044866
Iteration: 14, Func. Count: 122, Neg. LLF: 120.71788414821192
Iteration: 15, Func. Count: 130, Neg. LLF: 120.71788307337741
Optimization terminated successfully (Exit mode 0)
Current function value: 120.71788307337741
Iterations: 16
Function evaluations: 130
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 22608388.17550003
Iteration: 2, Func. Count: 21, Neg. LLF: 133.8666707982056
Iteration: 3, Func. Count: 31, Neg. LLF: 122.91951487127815
Iteration: 4, Func. Count: 41, Neg. LLF: 120.12970083229139
Iteration: 5, Func. Count: 50, Neg. LLF: 120.01174917751881
Iteration: 6, Func. Count: 59, Neg. LLF: 119.98364820796996
Iteration: 7, Func. Count: 69, Neg. LLF: 119.91440776370108
Iteration: 8, Func. Count: 78, Neg. LLF: 119.91297698775544
Iteration: 9, Func. Count: 87, Neg. LLF: 119.91278003360799
Iteration: 10, Func. Count: 96, Neg. LLF: 119.91276656701724
Iteration: 11, Func. Count: 104, Neg. LLF: 119.9127665670121
Optimization terminated successfully (Exit mode 0)
Current function value: 119.91276656701724
Iterations: 11
Function evaluations: 104
Gradient evaluations: 11
Iteration: 1, Func. Count: 11, Neg. LLF: 166.681315247045
Iteration: 2, Func. Count: 22, Neg. LLF: 121.5784656750423
Iteration: 3, Func. Count: 33, Neg. LLF: 120.73322381092702
Iteration: 4, Func. Count: 43, Neg. LLF: 122.61196991777372
Iteration: 5, Func. Count: 54, Neg. LLF: 121.1147489286035
Iteration: 6, Func. Count: 65, Neg. LLF: 122.11110640584695
Iteration: 7, Func. Count: 76, Neg. LLF: 119.61161143227108
Iteration: 8, Func. Count: 86, Neg. LLF: 145.9520531537774
Iteration: 9, Func. Count: 97, Neg. LLF: 118.8053973295113
Iteration: 10, Func. Count: 107, Neg. LLF: 118.72999934521178
Iteration: 11, Func. Count: 117, Neg. LLF: 118.70760904659251
Iteration: 12, Func. Count: 127, Neg. LLF: 118.70160170814735
Iteration: 13, Func. Count: 137, Neg. LLF: 118.6991829040511
Iteration: 14, Func. Count: 147, Neg. LLF: 118.69892230923692
Iteration: 15, Func. Count: 157, Neg. LLF: 118.69891379992951
Iteration: 16, Func. Count: 166, Neg. LLF: 118.69891374556227
Optimization terminated successfully (Exit mode 0)
Current function value: 118.69891379992951
Iterations: 16
Function evaluations: 166
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 177.9503542568726
Iteration: 2, Func. Count: 24, Neg. LLF: 124.57035464028175
Iteration: 3, Func. Count: 36, Neg. LLF: 120.73962939249249
Iteration: 4, Func. Count: 47, Neg. LLF: 119.96689174003336
Iteration: 5, Func. Count: 58, Neg. LLF: 121.39078304317611
Iteration: 6, Func. Count: 70, Neg. LLF: 120.7547751857201
Iteration: 7, Func. Count: 82, Neg. LLF: 138.4084502428297
Iteration: 8, Func. Count: 94, Neg. LLF: 119.161686611794
Iteration: 9, Func. Count: 105, Neg. LLF: 119.04570264188291
Iteration: 10, Func. Count: 116, Neg. LLF: 118.79624512616283
Iteration: 11, Func. Count: 127, Neg. LLF: 118.72370182892281
Iteration: 12, Func. Count: 138, Neg. LLF: 118.70395181830283
Iteration: 13, Func. Count: 149, Neg. LLF: 118.69981609685506
Iteration: 14, Func. Count: 160, Neg. LLF: 118.69895429153065
Iteration: 15, Func. Count: 171, Neg. LLF: 118.69891432486119
Iteration: 16, Func. Count: 182, Neg. LLF: 118.69891362926425
Optimization terminated successfully (Exit mode 0)
Current function value: 118.69891362926425
Iterations: 16
Function evaluations: 182
Gradient evaluations: 16
Iteration: 1, Func. Count: 9, Neg. LLF: 138.00994541026319
Iteration: 2, Func. Count: 18, Neg. LLF: 151.79751491068853
Iteration: 3, Func. Count: 27, Neg. LLF: 121.15175981652946
Iteration: 4, Func. Count: 35, Neg. LLF: 139.3848231966902
Iteration: 5, Func. Count: 45, Neg. LLF: 120.81403788326348
Iteration: 6, Func. Count: 53, Neg. LLF: 120.51784987498876
Iteration: 7, Func. Count: 61, Neg. LLF: 120.53233843651857
Iteration: 8, Func. Count: 70, Neg. LLF: 120.42407406773323
Iteration: 9, Func. Count: 78, Neg. LLF: 120.42356762734451
Iteration: 10, Func. Count: 86, Neg. LLF: 120.42340391749802
Iteration: 11, Func. Count: 94, Neg. LLF: 120.42332479098398
Iteration: 12, Func. Count: 102, Neg. LLF: 120.42332176951017
Iteration: 13, Func. Count: 109, Neg. LLF: 120.42332208057009
Optimization terminated successfully (Exit mode 0)
Current function value: 120.42332176951017
Iterations: 13
Function evaluations: 109
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 22604728.036655158
Iteration: 2, Func. Count: 21, Neg. LLF: 124.63966831020326
Iteration: 3, Func. Count: 31, Neg. LLF: 121.52058868326107
Iteration: 4, Func. Count: 40, Neg. LLF: 121.13596221844296
Iteration: 5, Func. Count: 49, Neg. LLF: 121.5690007595581
Iteration: 6, Func. Count: 59, Neg. LLF: 120.74178682935961
Iteration: 7, Func. Count: 68, Neg. LLF: 23496202.0232699
Iteration: 8, Func. Count: 80, Neg. LLF: 122.58011610651245
Iteration: 9, Func. Count: 90, Neg. LLF: 120.71788281938379
Iteration: 10, Func. Count: 99, Neg. LLF: 120.7178821887536
Optimization terminated successfully (Exit mode 0)
Current function value: 120.7178821887536
Iterations: 11
Function evaluations: 99
Gradient evaluations: 10
Iteration: 1, Func. Count: 11, Neg. LLF: 22606420.661728516
Iteration: 2, Func. Count: 23, Neg. LLF: 133.54074592359336
Iteration: 3, Func. Count: 34, Neg. LLF: 122.71667705289471
Iteration: 4, Func. Count: 45, Neg. LLF: 120.12036124652673
Iteration: 5, Func. Count: 55, Neg. LLF: 119.97007001137979
Iteration: 6, Func. Count: 65, Neg. LLF: 119.96820632213232
Iteration: 7, Func. Count: 76, Neg. LLF: 119.91474190989497
Iteration: 8, Func. Count: 86, Neg. LLF: 119.91316058787494
Iteration: 9, Func. Count: 96, Neg. LLF: 119.91278239568743
Iteration: 10, Func. Count: 106, Neg. LLF: 119.91276658167673
Iteration: 11, Func. Count: 115, Neg. LLF: 119.91276658173665
Optimization terminated successfully (Exit mode 0)
Current function value: 119.91276658167673
Iterations: 11
Function evaluations: 115
Gradient evaluations: 11
Iteration: 1, Func. Count: 12, Neg. LLF: 165.19060525827666
Iteration: 2, Func. Count: 24, Neg. LLF: 121.4767026131718
Iteration: 3, Func. Count: 35, Neg. LLF: 123.46893010539772
Iteration: 4, Func. Count: 47, Neg. LLF: 125.90603514176551
Iteration: 5, Func. Count: 59, Neg. LLF: 123.08722958565077
Iteration: 6, Func. Count: 71, Neg. LLF: 120.2751202182643
Iteration: 7, Func. Count: 82, Neg. LLF: 119.58919410210594
Iteration: 8, Func. Count: 93, Neg. LLF: 118.91630529610487
Iteration: 9, Func. Count: 104, Neg. LLF: 118.7138583013752
Iteration: 10, Func. Count: 115, Neg. LLF: 118.70044434121138
Iteration: 11, Func. Count: 126, Neg. LLF: 118.69893414068969
Iteration: 12, Func. Count: 137, Neg. LLF: 118.69891363823302
Iteration: 13, Func. Count: 147, Neg. LLF: 118.6989135840142
Optimization terminated successfully (Exit mode 0)
Current function value: 118.69891363823302
Iterations: 13
Function evaluations: 147
Gradient evaluations: 13
Iteration: 1, Func. Count: 13, Neg. LLF: 176.13234920372162
Iteration: 2, Func. Count: 26, Neg. LLF: 124.06561906432468
Iteration: 3, Func. Count: 39, Neg. LLF: 120.69407663106061
Iteration: 4, Func. Count: 51, Neg. LLF: 120.05179818955264
Iteration: 5, Func. Count: 63, Neg. LLF: 120.07365293634471
Iteration: 6, Func. Count: 76, Neg. LLF: 119.48771970158127
Iteration: 7, Func. Count: 88, Neg. LLF: 136.64767828630508
Iteration: 8, Func. Count: 101, Neg. LLF: 119.53352865058666
Iteration: 9, Func. Count: 114, Neg. LLF: 119.19218064133402
Iteration: 10, Func. Count: 126, Neg. LLF: 119.01019866238047
Iteration: 11, Func. Count: 138, Neg. LLF: 118.79631298628934
Iteration: 12, Func. Count: 150, Neg. LLF: 118.70927130687053
Iteration: 13, Func. Count: 162, Neg. LLF: 118.69918147164061
Iteration: 14, Func. Count: 174, Neg. LLF: 118.69891823255267
Iteration: 15, Func. Count: 186, Neg. LLF: 118.69891366893769
Iteration: 16, Func. Count: 198, Neg. LLF: 118.69891072681114
Iteration: 17, Func. Count: 210, Neg. LLF: 118.71822902760229
Iteration: 18, Func. Count: 225, Neg. LLF: 118.69909289815216
Iteration: 19, Func. Count: 238, Neg. LLF: 118.69891987680285
Iteration: 20, Func. Count: 251, Neg. LLF: 118.69891391976434
Iteration: 21, Func. Count: 262, Neg. LLF: 118.69891393976762
Optimization terminated successfully (Exit mode 0)
Current function value: 118.69891391976434
Iterations: 22
Function evaluations: 262
Gradient evaluations: 21
Iteration: 1, Func. Count: 10, Neg. LLF: 138.16697983241596
Iteration: 2, Func. Count: 20, Neg. LLF: 151.57591294476617
Iteration: 3, Func. Count: 30, Neg. LLF: 121.14720216384119
Iteration: 4, Func. Count: 39, Neg. LLF: 139.6400046811174
Iteration: 5, Func. Count: 50, Neg. LLF: 120.77591988036168
Iteration: 6, Func. Count: 59, Neg. LLF: 120.51752650846385
Iteration: 7, Func. Count: 68, Neg. LLF: 120.43794063877972
Iteration: 8, Func. Count: 77, Neg. LLF: 120.42485935503075
Iteration: 9, Func. Count: 86, Neg. LLF: 120.42397887978184
Iteration: 10, Func. Count: 95, Neg. LLF: 120.42348363238135
Iteration: 11, Func. Count: 104, Neg. LLF: 120.42334397019658
Iteration: 12, Func. Count: 113, Neg. LLF: 120.42332232543157
Iteration: 13, Func. Count: 122, Neg. LLF: 120.42332168029256
Optimization terminated successfully (Exit mode 0)
Current function value: 120.42332168029256
Iterations: 13
Function evaluations: 122
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 22604892.65584471
Iteration: 2, Func. Count: 23, Neg. LLF: 124.7583405900641
Iteration: 3, Func. Count: 34, Neg. LLF: 121.52220248655512
Iteration: 4, Func. Count: 44, Neg. LLF: 121.46906705199837
Iteration: 5, Func. Count: 54, Neg. LLF: 120.94333208315132
Iteration: 6, Func. Count: 64, Neg. LLF: 120.72275212178812
Iteration: 7, Func. Count: 74, Neg. LLF: 120.7210303053459
Iteration: 8, Func. Count: 84, Neg. LLF: 120.71790657346256
Iteration: 9, Func. Count: 94, Neg. LLF: 120.73200149830937
Iteration: 10, Func. Count: 109, Neg. LLF: 333.92611926325384
Optimization terminated successfully (Exit mode 0)
Current function value: 120.71790456139495
Iterations: 11
Function evaluations: 114
Gradient evaluations: 10
Iteration: 1, Func. Count: 12, Neg. LLF: 22607357.23144743
Iteration: 2, Func. Count: 25, Neg. LLF: 133.73943953523144
Iteration: 3, Func. Count: 37, Neg. LLF: 122.82200925201018
Iteration: 4, Func. Count: 49, Neg. LLF: 120.12816309178575
Iteration: 5, Func. Count: 60, Neg. LLF: 120.00126854445098
Iteration: 6, Func. Count: 71, Neg. LLF: 119.98451343308128
Iteration: 7, Func. Count: 83, Neg. LLF: 119.91438852515778
Iteration: 8, Func. Count: 94, Neg. LLF: 119.91303392722304
Iteration: 9, Func. Count: 105, Neg. LLF: 119.91277356731342
Iteration: 10, Func. Count: 116, Neg. LLF: 119.9127665753917
Iteration: 11, Func. Count: 126, Neg. LLF: 119.91276657540233
Optimization terminated successfully (Exit mode 0)
Current function value: 119.9127665753917
Iterations: 11
Function evaluations: 126
Gradient evaluations: 11
Iteration: 1, Func. Count: 13, Neg. LLF: 166.14837916922005
Iteration: 2, Func. Count: 26, Neg. LLF: 121.51048344669543
Iteration: 3, Func. Count: 38, Neg. LLF: 121.50982797750038
Iteration: 4, Func. Count: 51, Neg. LLF: 132.4213949947084
Iteration: 5, Func. Count: 64, Neg. LLF: 123.63777167938727
Iteration: 6, Func. Count: 77, Neg. LLF: 120.827316613831
Iteration: 7, Func. Count: 90, Neg. LLF: 120.28775349858454
Iteration: 8, Func. Count: 103, Neg. LLF: 118.53655870369484
Iteration: 9, Func. Count: 115, Neg. LLF: 120.43471902405905
Iteration: 10, Func. Count: 128, Neg. LLF: 118.34997443086078
Iteration: 11, Func. Count: 140, Neg. LLF: 118.3668514145572
Iteration: 12, Func. Count: 153, Neg. LLF: 118.38485278150259
Iteration: 13, Func. Count: 166, Neg. LLF: 118.27908639777095
Iteration: 14, Func. Count: 178, Neg. LLF: 118.27708686446202
Iteration: 15, Func. Count: 190, Neg. LLF: 118.2767747806414
Iteration: 16, Func. Count: 202, Neg. LLF: 118.27676767121854
Iteration: 17, Func. Count: 213, Neg. LLF: 118.27676766438485
Optimization terminated successfully (Exit mode 0)
Current function value: 118.27676767121854
Iterations: 17
Function evaluations: 213
Gradient evaluations: 17
Iteration: 1, Func. Count: 14, Neg. LLF: 176.71883928762188
Iteration: 2, Func. Count: 28, Neg. LLF: 123.84352345558838
Iteration: 3, Func. Count: 42, Neg. LLF: 120.84054042831332
Iteration: 4, Func. Count: 55, Neg. LLF: 119.89761338487507
Iteration: 5, Func. Count: 68, Neg. LLF: 122.43404428025643
Iteration: 6, Func. Count: 83, Neg. LLF: 124.49890455446962
Iteration: 7, Func. Count: 97, Neg. LLF: 119.58802819426893
Iteration: 8, Func. Count: 111, Neg. LLF: 118.71425336616421
Iteration: 9, Func. Count: 124, Neg. LLF: 118.37157272814382
Iteration: 10, Func. Count: 137, Neg. LLF: 194.32643204226562
Iteration: 11, Func. Count: 153, Neg. LLF: 118.45789680765998
Iteration: 12, Func. Count: 167, Neg. LLF: 118.2787563070477
Iteration: 13, Func. Count: 180, Neg. LLF: 118.27709345173874
Iteration: 14, Func. Count: 193, Neg. LLF: 118.27680711512649
Iteration: 15, Func. Count: 206, Neg. LLF: 118.27676813160015
Iteration: 16, Func. Count: 219, Neg. LLF: 118.27676744685104
Optimization terminated successfully (Exit mode 0)
Current function value: 118.27676744685104
Iterations: 16
Function evaluations: 219
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 138.48070238343246
Iteration: 2, Func. Count: 22, Neg. LLF: 151.1280515498366
Iteration: 3, Func. Count: 33, Neg. LLF: 121.14416658764922
Iteration: 4, Func. Count: 43, Neg. LLF: 139.4684842915805
Iteration: 5, Func. Count: 55, Neg. LLF: 120.75663571673677
Iteration: 6, Func. Count: 65, Neg. LLF: 120.53056197746415
Iteration: 7, Func. Count: 75, Neg. LLF: 120.42802039620106
Iteration: 8, Func. Count: 85, Neg. LLF: 120.42468988168982
Iteration: 9, Func. Count: 95, Neg. LLF: 120.42400634671999
Iteration: 10, Func. Count: 105, Neg. LLF: 120.4233357758371
Iteration: 11, Func. Count: 115, Neg. LLF: 120.42332268313135
Iteration: 12, Func. Count: 125, Neg. LLF: 120.42332167791034
Iteration: 13, Func. Count: 134, Neg. LLF: 120.42332188369733
Optimization terminated successfully (Exit mode 0)
Current function value: 120.42332167791034
Iterations: 13
Function evaluations: 134
Gradient evaluations: 13
Iteration: 1, Func. Count: 12, Neg. LLF: 22605918.311830413
Iteration: 2, Func. Count: 25, Neg. LLF: 124.9338908654211
Iteration: 3, Func. Count: 37, Neg. LLF: 121.52642488723359
Iteration: 4, Func. Count: 48, Neg. LLF: 121.926915349585
Iteration: 5, Func. Count: 60, Neg. LLF: 121.09900912343018
Iteration: 6, Func. Count: 71, Neg. LLF: 120.99800661863455
Iteration: 7, Func. Count: 82, Neg. LLF: 120.77622268136051
Iteration: 8, Func. Count: 93, Neg. LLF: 120.73293230457087
Iteration: 9, Func. Count: 104, Neg. LLF: 120.71868051067585
Iteration: 10, Func. Count: 115, Neg. LLF: 22611442.595224652
Iteration: 11, Func. Count: 130, Neg. LLF: 120.72465858283425
Iteration: 12, Func. Count: 142, Neg. LLF: 120.7178821098739
Iteration: 13, Func. Count: 152, Neg. LLF: 120.71788210986757
Optimization terminated successfully (Exit mode 0)
Current function value: 120.7178821098739
Iterations: 14
Function evaluations: 152
Gradient evaluations: 13
Iteration: 1, Func. Count: 13, Neg. LLF: 22607003.08344659
Iteration: 2, Func. Count: 27, Neg. LLF: 133.7038158037966
Iteration: 3, Func. Count: 40, Neg. LLF: 122.86732568012485
Iteration: 4, Func. Count: 53, Neg. LLF: 120.13579538630181
Iteration: 5, Func. Count: 65, Neg. LLF: 121.2900928945227
Iteration: 6, Func. Count: 79, Neg. LLF: 123.76116625563691
Iteration: 7, Func. Count: 92, Neg. LLF: 119.91326261762894
Iteration: 8, Func. Count: 104, Neg. LLF: 119.9127737951495
Iteration: 9, Func. Count: 116, Neg. LLF: 119.91276781016175
Iteration: 10, Func. Count: 128, Neg. LLF: 119.91276662820027
Iteration: 11, Func. Count: 139, Neg. LLF: 119.91276662821193
Optimization terminated successfully (Exit mode 0)
Current function value: 119.91276662820027
Iterations: 11
Function evaluations: 139
Gradient evaluations: 11
Iteration: 1, Func. Count: 14, Neg. LLF: 166.39686300872634
Iteration: 2, Func. Count: 28, Neg. LLF: 121.50142475923498
Iteration: 3, Func. Count: 41, Neg. LLF: 121.41866021683391
Iteration: 4, Func. Count: 55, Neg. LLF: 132.51835921373248
Iteration: 5, Func. Count: 69, Neg. LLF: 123.57158019860036
Iteration: 6, Func. Count: 83, Neg. LLF: 120.1432908474999
Iteration: 7, Func. Count: 97, Neg. LLF: 118.83096922995813
Iteration: 8, Func. Count: 110, Neg. LLF: 118.44847335659209
Iteration: 9, Func. Count: 123, Neg. LLF: 619.4664019486419
Iteration: 10, Func. Count: 139, Neg. LLF: 118.32900043880346
Iteration: 11, Func. Count: 152, Neg. LLF: 118.28852979158425
Iteration: 12, Func. Count: 165, Neg. LLF: 118.27829595591554
Iteration: 13, Func. Count: 178, Neg. LLF: 118.27686820689559
Iteration: 14, Func. Count: 191, Neg. LLF: 118.27676836664932
Iteration: 15, Func. Count: 204, Neg. LLF: 118.27676743290316
Optimization terminated successfully (Exit mode 0)
Current function value: 118.27676743290316
Iterations: 15
Function evaluations: 204
Gradient evaluations: 15
Iteration: 1, Func. Count: 15, Neg. LLF: 176.73426762933337
Iteration: 2, Func. Count: 30, Neg. LLF: 123.83983283994009
Iteration: 3, Func. Count: 45, Neg. LLF: 120.98945399577266
Iteration: 4, Func. Count: 59, Neg. LLF: 119.90376115238134
Iteration: 5, Func. Count: 73, Neg. LLF: 123.40248624391585
Iteration: 6, Func. Count: 89, Neg. LLF: 121.2525404280485
Iteration: 7, Func. Count: 104, Neg. LLF: 118.75534399139411
Iteration: 8, Func. Count: 118, Neg. LLF: 118.42959610079915
Iteration: 9, Func. Count: 132, Neg. LLF: 118.31985896124206
Iteration: 10, Func. Count: 146, Neg. LLF: 144.94393900443447
Iteration: 11, Func. Count: 162, Neg. LLF: 118.28870463332971
Iteration: 12, Func. Count: 176, Neg. LLF: 118.27785131271088
Iteration: 13, Func. Count: 190, Neg. LLF: 118.2769163653295
Iteration: 14, Func. Count: 204, Neg. LLF: 118.27677287939561
Iteration: 15, Func. Count: 218, Neg. LLF: 118.27676797376685
Iteration: 16, Func. Count: 232, Neg. LLF: 118.27676743069424
Optimization terminated successfully (Exit mode 0)
Current function value: 118.27676743069424
Iterations: 16
Function evaluations: 232
Gradient evaluations: 16
Iteration: 1, Func. Count: 8, Neg. LLF: 142.3834318817745
Iteration: 2, Func. Count: 17, Neg. LLF: 160.4810036939222
Iteration: 3, Func. Count: 25, Neg. LLF: 122.07669741944488
Iteration: 4, Func. Count: 32, Neg. LLF: 122.05829389352479
Iteration: 5, Func. Count: 39, Neg. LLF: 122.00844051547085
Iteration: 6, Func. Count: 46, Neg. LLF: 121.99292486176158
Iteration: 7, Func. Count: 53, Neg. LLF: 121.96426506602816
Iteration: 8, Func. Count: 60, Neg. LLF: 121.94709840007864
Iteration: 9, Func. Count: 67, Neg. LLF: 121.94023451692374
Iteration: 10, Func. Count: 74, Neg. LLF: 121.93953153640463
Iteration: 11, Func. Count: 81, Neg. LLF: 121.93946121764586
Iteration: 12, Func. Count: 88, Neg. LLF: 121.93946040085382
Optimization terminated successfully (Exit mode 0)
Current function value: 121.93946040085382
Iterations: 12
Function evaluations: 88
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 22751568.23520723
Iteration: 2, Func. Count: 19, Neg. LLF: 123.78216074451358
Iteration: 3, Func. Count: 28, Neg. LLF: 121.72993216010278
Iteration: 4, Func. Count: 36, Neg. LLF: 121.3524636931625
Iteration: 5, Func. Count: 44, Neg. LLF: 123.72917220645863
Iteration: 6, Func. Count: 56, Neg. LLF: 120.87015909816776
Iteration: 7, Func. Count: 64, Neg. LLF: 120.72905109863986
Iteration: 8, Func. Count: 72, Neg. LLF: 120.71991331333041
Iteration: 9, Func. Count: 80, Neg. LLF: 120.71819487947143
Iteration: 10, Func. Count: 88, Neg. LLF: 120.71788352628673
Iteration: 11, Func. Count: 96, Neg. LLF: 120.71788216701444
Iteration: 12, Func. Count: 103, Neg. LLF: 120.71788216676346
Optimization terminated successfully (Exit mode 0)
Current function value: 120.71788216701444
Iterations: 12
Function evaluations: 103
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 22738139.718579635
Iteration: 2, Func. Count: 21, Neg. LLF: 123.24177820545239
Iteration: 3, Func. Count: 31, Neg. LLF: 120.99346156042385
Iteration: 4, Func. Count: 40, Neg. LLF: 120.72788231425632
Iteration: 5, Func. Count: 49, Neg. LLF: 120.70128696350542
Iteration: 6, Func. Count: 58, Neg. LLF: 120.67688059267093
Iteration: 7, Func. Count: 67, Neg. LLF: 120.66664994959318
Iteration: 8, Func. Count: 76, Neg. LLF: 120.66529694857363
Iteration: 9, Func. Count: 85, Neg. LLF: 120.66509497460099
Iteration: 10, Func. Count: 94, Neg. LLF: 6004.217928044185
Iteration: 11, Func. Count: 107, Neg. LLF: 120.66509036813703
Optimization terminated successfully (Exit mode 0)
Current function value: 120.6650891278493
Iterations: 12
Function evaluations: 108
Gradient evaluations: 11
Iteration: 1, Func. Count: 11, Neg. LLF: 22710987.338665016
Iteration: 2, Func. Count: 23, Neg. LLF: 122.69282249520776
Iteration: 3, Func. Count: 34, Neg. LLF: 120.90181782578173
Iteration: 4, Func. Count: 44, Neg. LLF: 120.67140692052487
Iteration: 5, Func. Count: 54, Neg. LLF: 120.61387440039081
Iteration: 6, Func. Count: 64, Neg. LLF: 120.95129117178588
Iteration: 7, Func. Count: 75, Neg. LLF: 120.54086562175372
Iteration: 8, Func. Count: 85, Neg. LLF: 120.49923205831564
Iteration: 9, Func. Count: 95, Neg. LLF: 120.48576526983032
Iteration: 10, Func. Count: 105, Neg. LLF: 120.4853672586433
Iteration: 11, Func. Count: 115, Neg. LLF: 120.48534487939361
Iteration: 12, Func. Count: 125, Neg. LLF: 120.48530925966628
Iteration: 13, Func. Count: 135, Neg. LLF: 120.48530830175825
Optimization terminated successfully (Exit mode 0)
Current function value: 120.48530830175825
Iterations: 13
Function evaluations: 135
Gradient evaluations: 13
Iteration: 1, Func. Count: 12, Neg. LLF: 234.34908134827506
Iteration: 2, Func. Count: 25, Neg. LLF: 123.35071540145312
Iteration: 3, Func. Count: 37, Neg. LLF: 121.4621555727112
Iteration: 4, Func. Count: 48, Neg. LLF: 120.85741573318838
Iteration: 5, Func. Count: 59, Neg. LLF: 120.80448422890015
Iteration: 6, Func. Count: 70, Neg. LLF: 120.78424663551719
Iteration: 7, Func. Count: 81, Neg. LLF: 120.77626908607947
Iteration: 8, Func. Count: 92, Neg. LLF: 120.76469573688408
Iteration: 9, Func. Count: 103, Neg. LLF: 120.74723356150656
Iteration: 10, Func. Count: 114, Neg. LLF: 120.70334950858914
Iteration: 11, Func. Count: 125, Neg. LLF: 120.63835013051403
Iteration: 12, Func. Count: 136, Neg. LLF: 120.59432356550752
Iteration: 13, Func. Count: 147, Neg. LLF: 120.55799525193224
Iteration: 14, Func. Count: 158, Neg. LLF: 120.53271106388681
Iteration: 15, Func. Count: 169, Neg. LLF: 120.50920061418933
Iteration: 16, Func. Count: 180, Neg. LLF: 120.49182248067399
Iteration: 17, Func. Count: 191, Neg. LLF: 120.48891930236499
Iteration: 18, Func. Count: 202, Neg. LLF: 120.48533096328894
Iteration: 19, Func. Count: 213, Neg. LLF: 121.15069313305128
Iteration: 20, Func. Count: 227, Neg. LLF: 120.6694404591647
Iteration: 21, Func. Count: 240, Neg. LLF: 120.48778845039318
Iteration: 22, Func. Count: 253, Neg. LLF: 120.48530684053728
Iteration: 23, Func. Count: 263, Neg. LLF: 120.48530694385256
Optimization terminated successfully (Exit mode 0)
Current function value: 120.48530684053728
Iterations: 24
Function evaluations: 263
Gradient evaluations: 23
Iteration: 1, Func. Count: 9, Neg. LLF: 132.5673238254244
Iteration: 2, Func. Count: 18, Neg. LLF: 149.31194246447473
Iteration: 3, Func. Count: 27, Neg. LLF: 122.37888825270446
Iteration: 4, Func. Count: 35, Neg. LLF: 121.85973650194236
Iteration: 5, Func. Count: 43, Neg. LLF: 121.56502698825688
Iteration: 6, Func. Count: 51, Neg. LLF: 121.83297014100627
Iteration: 7, Func. Count: 61, Neg. LLF: 121.4588261717558
Iteration: 8, Func. Count: 69, Neg. LLF: 121.44233868475514
Iteration: 9, Func. Count: 77, Neg. LLF: 121.44128747319114
Iteration: 10, Func. Count: 85, Neg. LLF: 121.4411029723404
Iteration: 11, Func. Count: 93, Neg. LLF: 121.44109562561562
Iteration: 12, Func. Count: 100, Neg. LLF: 121.44109562570817
Optimization terminated successfully (Exit mode 0)
Current function value: 121.44109562561562
Iterations: 12
Function evaluations: 100
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 22607728.568600155
Iteration: 2, Func. Count: 21, Neg. LLF: 125.02252416225575
Iteration: 3, Func. Count: 31, Neg. LLF: 121.5286406456954
Iteration: 4, Func. Count: 40, Neg. LLF: 121.41012043018155
Iteration: 5, Func. Count: 49, Neg. LLF: 120.9717004983301
Iteration: 6, Func. Count: 58, Neg. LLF: 120.72188236829736
Iteration: 7, Func. Count: 67, Neg. LLF: 120.72333172498715
Iteration: 8, Func. Count: 77, Neg. LLF: 120.72305711050383
Iteration: 9, Func. Count: 87, Neg. LLF: 120.71879914662611
Iteration: 10, Func. Count: 96, Neg. LLF: 22623268.68428065
Iteration: 11, Func. Count: 109, Neg. LLF: 120.7182498767655
Iteration: 12, Func. Count: 118, Neg. LLF: 120.7178821873184
Iteration: 13, Func. Count: 126, Neg. LLF: 120.71788218732026
Optimization terminated successfully (Exit mode 0)
Current function value: 120.7178821873184
Iterations: 14
Function evaluations: 126
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 22609632.955351945
Iteration: 2, Func. Count: 23, Neg. LLF: 134.03520120920172
Iteration: 3, Func. Count: 34, Neg. LLF: 122.94973909225267
Iteration: 4, Func. Count: 45, Neg. LLF: 120.13940619640299
Iteration: 5, Func. Count: 55, Neg. LLF: 120.03982124998535
Iteration: 6, Func. Count: 65, Neg. LLF: 119.98843619327855
Iteration: 7, Func. Count: 75, Neg. LLF: 119.91457824295935
Iteration: 8, Func. Count: 85, Neg. LLF: 119.91297626939976
Iteration: 9, Func. Count: 95, Neg. LLF: 119.91278794454216
Iteration: 10, Func. Count: 105, Neg. LLF: 119.91276656844745
Iteration: 11, Func. Count: 114, Neg. LLF: 119.91276656833969
Optimization terminated successfully (Exit mode 0)
Current function value: 119.91276656844745
Iterations: 11
Function evaluations: 114
Gradient evaluations: 11
Iteration: 1, Func. Count: 12, Neg. LLF: 166.67858744992725
Iteration: 2, Func. Count: 24, Neg. LLF: 121.55310735808986
Iteration: 3, Func. Count: 36, Neg. LLF: 120.72333230625206
Iteration: 4, Func. Count: 47, Neg. LLF: 121.89298379700502
Iteration: 5, Func. Count: 59, Neg. LLF: 123.49393999164448
Iteration: 6, Func. Count: 71, Neg. LLF: 122.92793424968725
Iteration: 7, Func. Count: 83, Neg. LLF: 123.877219272456
Iteration: 8, Func. Count: 95, Neg. LLF: 119.896565603577
Iteration: 9, Func. Count: 106, Neg. LLF: 140.8015353277616
Iteration: 10, Func. Count: 118, Neg. LLF: 118.85603708988272
Iteration: 11, Func. Count: 129, Neg. LLF: 118.71085984195948
Iteration: 12, Func. Count: 140, Neg. LLF: 118.71929176615998
Iteration: 13, Func. Count: 152, Neg. LLF: 118.69904992401356
Iteration: 14, Func. Count: 163, Neg. LLF: 118.69891850823963
Iteration: 15, Func. Count: 174, Neg. LLF: 118.69891539807026
Iteration: 16, Func. Count: 185, Neg. LLF: 118.6989148111635
Optimization terminated successfully (Exit mode 0)
Current function value: 118.6989148111635
Iterations: 16
Function evaluations: 185
Gradient evaluations: 16
Iteration: 1, Func. Count: 13, Neg. LLF: 177.5984895424671
Iteration: 2, Func. Count: 26, Neg. LLF: 124.43816181067298
Iteration: 3, Func. Count: 39, Neg. LLF: 120.76222799816638
Iteration: 4, Func. Count: 51, Neg. LLF: 120.00401905857349
Iteration: 5, Func. Count: 63, Neg. LLF: 121.12834309695222
Iteration: 6, Func. Count: 76, Neg. LLF: 120.86434135217674
Iteration: 7, Func. Count: 89, Neg. LLF: 196.43444245479165
Iteration: 8, Func. Count: 102, Neg. LLF: 119.19948249238696
Iteration: 9, Func. Count: 114, Neg. LLF: 119.11687969129893
Iteration: 10, Func. Count: 126, Neg. LLF: 118.89692391005339
Iteration: 11, Func. Count: 138, Neg. LLF: 118.71243654740093
Iteration: 12, Func. Count: 150, Neg. LLF: 118.70664113906928
Iteration: 13, Func. Count: 162, Neg. LLF: 118.69904821237178
Iteration: 14, Func. Count: 174, Neg. LLF: 118.69891584514295
Iteration: 15, Func. Count: 186, Neg. LLF: 118.69891482840724
Iteration: 16, Func. Count: 198, Neg. LLF: 118.69891434862683
Optimization terminated successfully (Exit mode 0)
Current function value: 118.69891434862683
Iterations: 16
Function evaluations: 198
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 141.529247983985
Iteration: 2, Func. Count: 20, Neg. LLF: 151.28110166404247
Iteration: 3, Func. Count: 30, Neg. LLF: 121.32145885483202
Iteration: 4, Func. Count: 39, Neg. LLF: 133.12853242871023
Iteration: 5, Func. Count: 50, Neg. LLF: 123.50599309268405
Iteration: 6, Func. Count: 60, Neg. LLF: 120.67863353028615
Iteration: 7, Func. Count: 69, Neg. LLF: 120.44612861927656
Iteration: 8, Func. Count: 78, Neg. LLF: 120.42990333376791
Iteration: 9, Func. Count: 87, Neg. LLF: 120.42415208274775
Iteration: 10, Func. Count: 96, Neg. LLF: 120.42351912470636
Iteration: 11, Func. Count: 105, Neg. LLF: 120.4234085948602
Iteration: 12, Func. Count: 114, Neg. LLF: 120.42333281333403
Iteration: 13, Func. Count: 123, Neg. LLF: 120.42332185339725
Iteration: 14, Func. Count: 131, Neg. LLF: 120.42332216441942
Optimization terminated successfully (Exit mode 0)
Current function value: 120.42332185339725
Iterations: 14
Function evaluations: 131
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 22606785.138155494
Iteration: 2, Func. Count: 23, Neg. LLF: 124.93113596869618
Iteration: 3, Func. Count: 34, Neg. LLF: 121.51946705835806
Iteration: 4, Func. Count: 44, Neg. LLF: 121.74025177190605
Iteration: 5, Func. Count: 55, Neg. LLF: 121.00180522458297
Iteration: 6, Func. Count: 65, Neg. LLF: 120.89586272753093
Iteration: 7, Func. Count: 75, Neg. LLF: 120.8479158982405
Iteration: 8, Func. Count: 85, Neg. LLF: 120.72180688958558
Iteration: 9, Func. Count: 95, Neg. LLF: 120.71925169236056
Iteration: 10, Func. Count: 105, Neg. LLF: 22621744.223883644
Iteration: 11, Func. Count: 119, Neg. LLF: 120.71816275119139
Iteration: 12, Func. Count: 129, Neg. LLF: 120.71788212520136
Iteration: 13, Func. Count: 138, Neg. LLF: 120.71788212518577
Optimization terminated successfully (Exit mode 0)
Current function value: 120.71788212520136
Iterations: 14
Function evaluations: 138
Gradient evaluations: 13
Iteration: 1, Func. Count: 12, Neg. LLF: 22607319.25779735
Iteration: 2, Func. Count: 25, Neg. LLF: 133.69831922339085
Iteration: 3, Func. Count: 37, Neg. LLF: 122.74560834070357
Iteration: 4, Func. Count: 49, Neg. LLF: 120.1290988042718
Iteration: 5, Func. Count: 60, Neg. LLF: 119.98504473680563
Iteration: 6, Func. Count: 71, Neg. LLF: 119.98187300440357
Iteration: 7, Func. Count: 83, Neg. LLF: 119.91456461636756
Iteration: 8, Func. Count: 94, Neg. LLF: 119.91312574615914
Iteration: 9, Func. Count: 105, Neg. LLF: 119.9127737785322
Iteration: 10, Func. Count: 116, Neg. LLF: 119.91276660539236
Iteration: 11, Func. Count: 126, Neg. LLF: 119.9127666054013
Optimization terminated successfully (Exit mode 0)
Current function value: 119.91276660539236
Iterations: 11
Function evaluations: 126
Gradient evaluations: 11
Iteration: 1, Func. Count: 13, Neg. LLF: 165.14413949004225
Iteration: 2, Func. Count: 26, Neg. LLF: 121.45622061545086
Iteration: 3, Func. Count: 38, Neg. LLF: 123.43089959846675
Iteration: 4, Func. Count: 51, Neg. LLF: 125.53650002261212
Iteration: 5, Func. Count: 64, Neg. LLF: 123.05977137291336
Iteration: 6, Func. Count: 77, Neg. LLF: 120.27945891042619
Iteration: 7, Func. Count: 89, Neg. LLF: 119.6163802700638
Iteration: 8, Func. Count: 101, Neg. LLF: 118.93723762265118
Iteration: 9, Func. Count: 113, Neg. LLF: 118.71545754244922
Iteration: 10, Func. Count: 125, Neg. LLF: 118.70135378046363
Iteration: 11, Func. Count: 137, Neg. LLF: 118.6989356606557
Iteration: 12, Func. Count: 149, Neg. LLF: 118.69891365401303
Iteration: 13, Func. Count: 160, Neg. LLF: 118.69891359980322
Optimization terminated successfully (Exit mode 0)
Current function value: 118.69891365401303
Iterations: 13
Function evaluations: 160
Gradient evaluations: 13
Iteration: 1, Func. Count: 14, Neg. LLF: 175.74842932737698
Iteration: 2, Func. Count: 28, Neg. LLF: 123.95180842208414
Iteration: 3, Func. Count: 42, Neg. LLF: 120.72563512253579
Iteration: 4, Func. Count: 55, Neg. LLF: 120.04195184611571
Iteration: 5, Func. Count: 68, Neg. LLF: 120.34263543678907
Iteration: 6, Func. Count: 82, Neg. LLF: 119.44527553876163
Iteration: 7, Func. Count: 95, Neg. LLF: 139.43508405550963
Iteration: 8, Func. Count: 109, Neg. LLF: 119.42086568403353
Iteration: 9, Func. Count: 123, Neg. LLF: 119.14678087081919
Iteration: 10, Func. Count: 136, Neg. LLF: 118.81951374778718
Iteration: 11, Func. Count: 149, Neg. LLF: 118.70906484767998
Iteration: 12, Func. Count: 162, Neg. LLF: 118.70402283404101
Iteration: 13, Func. Count: 175, Neg. LLF: 118.69940423742804
Iteration: 14, Func. Count: 188, Neg. LLF: 118.69892014091344
Iteration: 15, Func. Count: 201, Neg. LLF: 118.69891350894446
Iteration: 16, Func. Count: 214, Neg. LLF: 118.69957963125482
Optimization terminated successfully (Exit mode 0)
Current function value: 118.69891349708934
Iterations: 17
Function evaluations: 217
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 141.61413688506283
Iteration: 2, Func. Count: 22, Neg. LLF: 150.8164435844877
Iteration: 3, Func. Count: 33, Neg. LLF: 121.36539859819712
Iteration: 4, Func. Count: 43, Neg. LLF: 131.91060136439032
Iteration: 5, Func. Count: 55, Neg. LLF: 123.80366632596547
Iteration: 6, Func. Count: 66, Neg. LLF: 120.6989839717077
Iteration: 7, Func. Count: 76, Neg. LLF: 120.45444645590305
Iteration: 8, Func. Count: 86, Neg. LLF: 120.431479688697
Iteration: 9, Func. Count: 96, Neg. LLF: 120.42484287719692
Iteration: 10, Func. Count: 106, Neg. LLF: 120.42343661366752
Iteration: 11, Func. Count: 116, Neg. LLF: 120.42337901120169
Iteration: 12, Func. Count: 126, Neg. LLF: 120.42332463770717
Iteration: 13, Func. Count: 136, Neg. LLF: 120.42332177933214
Iteration: 14, Func. Count: 145, Neg. LLF: 120.42332161908101
Optimization terminated successfully (Exit mode 0)
Current function value: 120.42332177933214
Iterations: 14
Function evaluations: 145
Gradient evaluations: 14
Iteration: 1, Func. Count: 12, Neg. LLF: 22607497.52845033
Iteration: 2, Func. Count: 25, Neg. LLF: 125.06170763005552
Iteration: 3, Func. Count: 37, Neg. LLF: 121.52724780134606
Iteration: 4, Func. Count: 48, Neg. LLF: 121.64858231480821
Iteration: 5, Func. Count: 60, Neg. LLF: 120.8190911940281
Iteration: 6, Func. Count: 71, Neg. LLF: 120.81110018533035
Iteration: 7, Func. Count: 83, Neg. LLF: 120.73979699060577
Iteration: 8, Func. Count: 94, Neg. LLF: 120.71800159208031
Iteration: 9, Func. Count: 105, Neg. LLF: 13327542.687017806
Iteration: 10, Func. Count: 121, Neg. LLF: 120.71999797362153
Iteration: 11, Func. Count: 133, Neg. LLF: 120.71788223575084
Iteration: 12, Func. Count: 143, Neg. LLF: 120.7178822357522
Optimization terminated successfully (Exit mode 0)
Current function value: 120.71788223575084
Iterations: 13
Function evaluations: 143
Gradient evaluations: 12
Iteration: 1, Func. Count: 13, Neg. LLF: 22608425.92886415
Iteration: 2, Func. Count: 27, Neg. LLF: 133.8990011570363
Iteration: 3, Func. Count: 40, Neg. LLF: 122.85538054761098
Iteration: 4, Func. Count: 53, Neg. LLF: 120.1377694517445
Iteration: 5, Func. Count: 65, Neg. LLF: 120.02537559037768
Iteration: 6, Func. Count: 77, Neg. LLF: 119.99052803418463
Iteration: 7, Func. Count: 89, Neg. LLF: 119.91449041226188
Iteration: 8, Func. Count: 101, Neg. LLF: 119.91301886133817
Iteration: 9, Func. Count: 113, Neg. LLF: 119.91278633392712
Iteration: 10, Func. Count: 125, Neg. LLF: 119.91276672950285
Iteration: 11, Func. Count: 136, Neg. LLF: 119.9127667294904
Optimization terminated successfully (Exit mode 0)
Current function value: 119.91276672950285
Iterations: 11
Function evaluations: 136
Gradient evaluations: 11
Iteration: 1, Func. Count: 14, Neg. LLF: 166.094806060299
Iteration: 2, Func. Count: 28, Neg. LLF: 121.48608975450396
Iteration: 3, Func. Count: 41, Neg. LLF: 121.49694044476107
Iteration: 4, Func. Count: 55, Neg. LLF: 131.9720374613577
Iteration: 5, Func. Count: 69, Neg. LLF: 123.67947082354641
Iteration: 6, Func. Count: 83, Neg. LLF: 121.87142598467777
Iteration: 7, Func. Count: 97, Neg. LLF: 125.24310807852049
Iteration: 8, Func. Count: 111, Neg. LLF: 119.17710143751508
Iteration: 9, Func. Count: 124, Neg. LLF: 118.53879861247589
Iteration: 10, Func. Count: 137, Neg. LLF: 118.33292666144891
Iteration: 11, Func. Count: 150, Neg. LLF: 213.04494440414112
Iteration: 12, Func. Count: 166, Neg. LLF: 118.29370467068134
Iteration: 13, Func. Count: 179, Neg. LLF: 118.27681677175784
Iteration: 14, Func. Count: 192, Neg. LLF: 118.2767693759383
Iteration: 15, Func. Count: 205, Neg. LLF: 118.27676750821706
Iteration: 16, Func. Count: 217, Neg. LLF: 118.2767675014464
Optimization terminated successfully (Exit mode 0)
Current function value: 118.27676750821706
Iterations: 16
Function evaluations: 217
Gradient evaluations: 16
Iteration: 1, Func. Count: 15, Neg. LLF: 176.32565579767956
Iteration: 2, Func. Count: 30, Neg. LLF: 123.73008209962755
Iteration: 3, Func. Count: 45, Neg. LLF: 120.8805592087657
Iteration: 4, Func. Count: 59, Neg. LLF: 119.90404599340194
Iteration: 5, Func. Count: 73, Neg. LLF: 122.2282824543414
Iteration: 6, Func. Count: 88, Neg. LLF: 127.71541639281133
Iteration: 7, Func. Count: 103, Neg. LLF: 119.23182952217432
Iteration: 8, Func. Count: 118, Neg. LLF: 118.43378719926415
Iteration: 9, Func. Count: 132, Neg. LLF: 128.3973731254022
Iteration: 10, Func. Count: 147, Neg. LLF: 121.79778095989455
Iteration: 11, Func. Count: 163, Neg. LLF: 118.30498048007334
Iteration: 12, Func. Count: 177, Neg. LLF: 118.27707043552932
Iteration: 13, Func. Count: 191, Neg. LLF: 118.27681865519135
Iteration: 14, Func. Count: 205, Neg. LLF: 118.27677312588088
Iteration: 15, Func. Count: 219, Neg. LLF: 118.27676788504718
Iteration: 16, Func. Count: 232, Neg. LLF: 118.27676798005724
Optimization terminated successfully (Exit mode 0)
Current function value: 118.27676788504718
Iterations: 16
Function evaluations: 232
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 141.74333950375234
Iteration: 2, Func. Count: 24, Neg. LLF: 150.47348925783345
Iteration: 3, Func. Count: 36, Neg. LLF: 121.30785408977772
Iteration: 4, Func. Count: 47, Neg. LLF: 129.5665667251375
Iteration: 5, Func. Count: 60, Neg. LLF: 124.15044686107441
Iteration: 6, Func. Count: 72, Neg. LLF: 120.65279761222143
Iteration: 7, Func. Count: 83, Neg. LLF: 120.35255681422079
Iteration: 8, Func. Count: 94, Neg. LLF: 120.27954224278723
Iteration: 9, Func. Count: 105, Neg. LLF: 120.26344288577533
Iteration: 10, Func. Count: 116, Neg. LLF: 120.2612039053966
Iteration: 11, Func. Count: 127, Neg. LLF: 120.26076392348669
Iteration: 12, Func. Count: 138, Neg. LLF: 120.26061081994902
Iteration: 13, Func. Count: 149, Neg. LLF: 120.26060832696696
Iteration: 14, Func. Count: 160, Neg. LLF: 120.26060710576384
Iteration: 15, Func. Count: 171, Neg. LLF: 120.2606064274264
Optimization terminated successfully (Exit mode 0)
Current function value: 120.2606064274264
Iterations: 15
Function evaluations: 171
Gradient evaluations: 15
Iteration: 1, Func. Count: 13, Neg. LLF: 22610126.252454195
Iteration: 2, Func. Count: 27, Neg. LLF: 125.26112583436529
Iteration: 3, Func. Count: 40, Neg. LLF: 121.53864687817169
Iteration: 4, Func. Count: 52, Neg. LLF: 121.30420063776322
Iteration: 5, Func. Count: 64, Neg. LLF: 122.55555676859997
Iteration: 6, Func. Count: 77, Neg. LLF: 121.27450247486637
Iteration: 7, Func. Count: 90, Neg. LLF: 120.75340273802912
Iteration: 8, Func. Count: 102, Neg. LLF: 143.70563365394003
Iteration: 9, Func. Count: 117, Neg. LLF: 123.34732597920157
Iteration: 10, Func. Count: 130, Neg. LLF: 120.71788417114666
Iteration: 11, Func. Count: 142, Neg. LLF: 120.7178821387586
Iteration: 12, Func. Count: 153, Neg. LLF: 120.71788213876147
Optimization terminated successfully (Exit mode 0)
Current function value: 120.7178821387586
Iterations: 13
Function evaluations: 153
Gradient evaluations: 12
Iteration: 1, Func. Count: 14, Neg. LLF: 22608052.870598573
Iteration: 2, Func. Count: 29, Neg. LLF: 133.86537654513634
Iteration: 3, Func. Count: 43, Neg. LLF: 123.03136570589899
Iteration: 4, Func. Count: 57, Neg. LLF: 120.1497381285973
Iteration: 5, Func. Count: 70, Neg. LLF: 121.40651650408259
Iteration: 6, Func. Count: 85, Neg. LLF: 123.65452186884794
Iteration: 7, Func. Count: 99, Neg. LLF: 119.91295918973233
Iteration: 8, Func. Count: 112, Neg. LLF: 119.91277110651055
Iteration: 9, Func. Count: 125, Neg. LLF: 119.91276690667667
Iteration: 10, Func. Count: 137, Neg. LLF: 119.91276690671961
Optimization terminated successfully (Exit mode 0)
Current function value: 119.91276690667667
Iterations: 10
Function evaluations: 137
Gradient evaluations: 10
Iteration: 1, Func. Count: 15, Neg. LLF: 166.3432657799008
Iteration: 2, Func. Count: 30, Neg. LLF: 121.47754169298769
Iteration: 3, Func. Count: 44, Neg. LLF: 121.4071983276271
Iteration: 4, Func. Count: 59, Neg. LLF: 132.0919106916851
Iteration: 5, Func. Count: 74, Neg. LLF: 124.60883098592785
Iteration: 6, Func. Count: 89, Neg. LLF: 120.36587939459108
Iteration: 7, Func. Count: 104, Neg. LLF: 118.73541763161403
Iteration: 8, Func. Count: 118, Neg. LLF: 118.48320289629095
Iteration: 9, Func. Count: 132, Neg. LLF: 119.88207935296852
Iteration: 10, Func. Count: 148, Neg. LLF: 118.31123122140471
Iteration: 11, Func. Count: 162, Neg. LLF: 118.56532055744756
Iteration: 12, Func. Count: 177, Neg. LLF: 118.27827734047024
Iteration: 13, Func. Count: 191, Neg. LLF: 118.27678798927417
Iteration: 14, Func. Count: 205, Neg. LLF: 118.276768827149
Iteration: 15, Func. Count: 219, Neg. LLF: 118.27676744383409
Iteration: 16, Func. Count: 232, Neg. LLF: 118.27676743710666
Optimization terminated successfully (Exit mode 0)
Current function value: 118.27676744383409
Iterations: 16
Function evaluations: 232
Gradient evaluations: 16
Iteration: 1, Func. Count: 16, Neg. LLF: 176.34557517545394
Iteration: 2, Func. Count: 32, Neg. LLF: 123.72939582774518
Iteration: 3, Func. Count: 48, Neg. LLF: 121.0325162620511
Iteration: 4, Func. Count: 63, Neg. LLF: 119.91856467594222
Iteration: 5, Func. Count: 78, Neg. LLF: 123.27919803559675
Iteration: 6, Func. Count: 95, Neg. LLF: 120.96117150885162
Iteration: 7, Func. Count: 111, Neg. LLF: 120.05829093522405
Iteration: 8, Func. Count: 127, Neg. LLF: 118.36953963017724
Iteration: 9, Func. Count: 142, Neg. LLF: 118.38795005707604
Iteration: 10, Func. Count: 158, Neg. LLF: 118.27754524965573
Iteration: 11, Func. Count: 173, Neg. LLF: 120.02037101047583
Iteration: 12, Func. Count: 190, Neg. LLF: 118.27691619204384
Iteration: 13, Func. Count: 205, Neg. LLF: 118.27681549733308
Iteration: 14, Func. Count: 220, Neg. LLF: 118.27677092394933
Iteration: 15, Func. Count: 235, Neg. LLF: 118.27676751118572
Iteration: 16, Func. Count: 249, Neg. LLF: 118.27676760619877
Optimization terminated successfully (Exit mode 0)
Current function value: 118.27676751118572
Iterations: 16
Function evaluations: 249
Gradient evaluations: 16
Iteration: 1, Func. Count: 6, Neg. LLF: 22620768.828803986
Iteration: 2, Func. Count: 13, Neg. LLF: 122.45587345198471
Iteration: 3, Func. Count: 19, Neg. LLF: 121.58909491746114
Iteration: 4, Func. Count: 24, Neg. LLF: 120.83542164420244
Iteration: 5, Func. Count: 29, Neg. LLF: 120.72131315146297
Iteration: 6, Func. Count: 34, Neg. LLF: 120.71789407027484
Iteration: 7, Func. Count: 39, Neg. LLF: 120.71788214286211
Iteration: 8, Func. Count: 43, Neg. LLF: 120.7178821430345
Optimization terminated successfully (Exit mode 0)
Current function value: 120.71788214286211
Iterations: 8
Function evaluations: 43
Gradient evaluations: 8
Iteration: 1, Func. Count: 5, Neg. LLF: 129.11156681467622
Iteration: 2, Func. Count: 10, Neg. LLF: 132.02245958519862
Iteration: 3, Func. Count: 15, Neg. LLF: 125.17025095379506
Iteration: 4, Func. Count: 19, Neg. LLF: 125.08484212705727
Iteration: 5, Func. Count: 23, Neg. LLF: 125.07061178430628
Iteration: 6, Func. Count: 27, Neg. LLF: 125.06352710279657
Iteration: 7, Func. Count: 31, Neg. LLF: 125.06273566946045
Iteration: 8, Func. Count: 35, Neg. LLF: 125.06270108959782
Iteration: 9, Func. Count: 39, Neg. LLF: 125.0627005214992
Optimization terminated successfully (Exit mode 0)
Current function value: 125.0627005214992
Iterations: 9
Function evaluations: 39
Gradient evaluations: 9
Iteration: 1, Func. Count: 6, Neg. LLF: 241.32066239056752
Iteration: 2, Func. Count: 13, Neg. LLF: 124.33545361403225
Iteration: 3, Func. Count: 19, Neg. LLF: 124.04435033434498
Iteration: 4, Func. Count: 24, Neg. LLF: 124.02843094299672
Iteration: 5, Func. Count: 29, Neg. LLF: 124.01890881200119
Iteration: 6, Func. Count: 34, Neg. LLF: 124.01235230217024
Iteration: 7, Func. Count: 39, Neg. LLF: 124.01201991421476
Iteration: 8, Func. Count: 44, Neg. LLF: 124.01200680951253
Iteration: 9, Func. Count: 48, Neg. LLF: 124.01200680968535
Optimization terminated successfully (Exit mode 0)
Current function value: 124.01200680951253
Iterations: 9
Function evaluations: 48
Gradient evaluations: 9
Iteration: 1, Func. Count: 7, Neg. LLF: 230.95966592305297
Iteration: 2, Func. Count: 15, Neg. LLF: 124.43665298376091
Iteration: 3, Func. Count: 22, Neg. LLF: 124.10546779185044
Iteration: 4, Func. Count: 28, Neg. LLF: 124.02513845976827
Iteration: 5, Func. Count: 34, Neg. LLF: 124.02052949612032
Iteration: 6, Func. Count: 40, Neg. LLF: 124.01315192735022
Iteration: 7, Func. Count: 46, Neg. LLF: 124.01232823351212
Iteration: 8, Func. Count: 52, Neg. LLF: 124.0120107451871
Iteration: 9, Func. Count: 58, Neg. LLF: 124.01200667832283
Iteration: 10, Func. Count: 63, Neg. LLF: 124.01200668322608
Optimization terminated successfully (Exit mode 0)
Current function value: 124.01200667832283
Iterations: 10
Function evaluations: 63
Gradient evaluations: 10
Iteration: 1, Func. Count: 8, Neg. LLF: 224.81164337266588
Iteration: 2, Func. Count: 17, Neg. LLF: 124.4565269839156
Iteration: 3, Func. Count: 25, Neg. LLF: 124.11687496109049
Iteration: 4, Func. Count: 32, Neg. LLF: 124.05576758043938
Iteration: 5, Func. Count: 39, Neg. LLF: 124.02174294924858
Iteration: 6, Func. Count: 46, Neg. LLF: 124.01241876658115
Iteration: 7, Func. Count: 53, Neg. LLF: 124.01203564314596
Iteration: 8, Func. Count: 60, Neg. LLF: 124.01200783822969
Iteration: 9, Func. Count: 67, Neg. LLF: 124.01200684901018
Optimization terminated successfully (Exit mode 0)
Current function value: 124.01200684901018
Iterations: 9
Function evaluations: 67
Gradient evaluations: 9
Iteration: 1, Func. Count: 9, Neg. LLF: 220.56515109435946
Iteration: 2, Func. Count: 19, Neg. LLF: 124.45247699062725
Iteration: 3, Func. Count: 28, Neg. LLF: 124.11063142991473
Iteration: 4, Func. Count: 36, Neg. LLF: 124.05744804966449
Iteration: 5, Func. Count: 44, Neg. LLF: 124.01328115805717
Iteration: 6, Func. Count: 52, Neg. LLF: 124.01263679394162
Iteration: 7, Func. Count: 60, Neg. LLF: 124.01201618596804
Iteration: 8, Func. Count: 68, Neg. LLF: 124.01200729493851
Iteration: 9, Func. Count: 75, Neg. LLF: 124.0120073068611
Optimization terminated successfully (Exit mode 0)
Current function value: 124.01200729493851
Iterations: 9
Function evaluations: 75
Gradient evaluations: 9
Iteration: 1, Func. Count: 6, Neg. LLF: 133.7961226107879
Iteration: 2, Func. Count: 12, Neg. LLF: 137.32684917992538
Iteration: 3, Func. Count: 18, Neg. LLF: 125.08079730904052
Iteration: 4, Func. Count: 23, Neg. LLF: 125.07227601892473
Iteration: 5, Func. Count: 28, Neg. LLF: 125.0627193774562
Iteration: 6, Func. Count: 33, Neg. LLF: 125.06270072762119
Iteration: 7, Func. Count: 37, Neg. LLF: 125.06270083579136
Optimization terminated successfully (Exit mode 0)
Current function value: 125.06270072762119
Iterations: 7
Function evaluations: 37
Gradient evaluations: 7
Iteration: 1, Func. Count: 7, Neg. LLF: 240.41843253956853
Iteration: 2, Func. Count: 15, Neg. LLF: 124.33630902105523
Iteration: 3, Func. Count: 22, Neg. LLF: 124.04296522360988
Iteration: 4, Func. Count: 28, Neg. LLF: 124.02544938511738
Iteration: 5, Func. Count: 34, Neg. LLF: 124.01744298205928
Iteration: 6, Func. Count: 40, Neg. LLF: 124.01265999552443
Iteration: 7, Func. Count: 46, Neg. LLF: 124.01200749410427
Iteration: 8, Func. Count: 52, Neg. LLF: 124.01200668169218
Optimization terminated successfully (Exit mode 0)
Current function value: 124.01200668169218
Iterations: 8
Function evaluations: 52
Gradient evaluations: 8
Iteration: 1, Func. Count: 8, Neg. LLF: 230.3212645275973
Iteration: 2, Func. Count: 17, Neg. LLF: 124.4617682119015
Iteration: 3, Func. Count: 25, Neg. LLF: 124.10569827586947
Iteration: 4, Func. Count: 32, Neg. LLF: 124.02048874623968
Iteration: 5, Func. Count: 39, Neg. LLF: 124.01922851692717
Iteration: 6, Func. Count: 47, Neg. LLF: 124.01259131162014
Iteration: 7, Func. Count: 54, Neg. LLF: 124.01201026851932
Iteration: 8, Func. Count: 61, Neg. LLF: 124.01200752447997
Iteration: 9, Func. Count: 68, Neg. LLF: 124.01200665606022
Optimization terminated successfully (Exit mode 0)
Current function value: 124.01200665606022
Iterations: 9
Function evaluations: 68
Gradient evaluations: 9
Iteration: 1, Func. Count: 9, Neg. LLF: 223.98118015892308
Iteration: 2, Func. Count: 19, Neg. LLF: 124.50249512716445
Iteration: 3, Func. Count: 28, Neg. LLF: 124.10751368409609
Iteration: 4, Func. Count: 36, Neg. LLF: 124.03916611202771
Iteration: 5, Func. Count: 44, Neg. LLF: 124.01889844648797
Iteration: 6, Func. Count: 52, Neg. LLF: 124.01251079093588
Iteration: 7, Func. Count: 60, Neg. LLF: 124.01210608114347
Iteration: 8, Func. Count: 68, Neg. LLF: 124.01201157494302
Iteration: 9, Func. Count: 76, Neg. LLF: 124.01200760435356
Iteration: 10, Func. Count: 84, Neg. LLF: 124.01200669031087
Optimization terminated successfully (Exit mode 0)
Current function value: 124.01200669031087
Iterations: 10
Function evaluations: 84
Gradient evaluations: 10
Iteration: 1, Func. Count: 10, Neg. LLF: 220.63164023846593
Iteration: 2, Func. Count: 21, Neg. LLF: 124.51919110309713
Iteration: 3, Func. Count: 31, Neg. LLF: 124.10911673340142
Iteration: 4, Func. Count: 40, Neg. LLF: 124.06312174598577
Iteration: 5, Func. Count: 49, Neg. LLF: 124.01679867833091
Iteration: 6, Func. Count: 58, Neg. LLF: 124.01411251946163
Iteration: 7, Func. Count: 67, Neg. LLF: 124.01218408943578
Iteration: 8, Func. Count: 76, Neg. LLF: 124.01203875389315
Iteration: 9, Func. Count: 85, Neg. LLF: 124.01200758946638
Iteration: 10, Func. Count: 94, Neg. LLF: 124.01200673068071
Optimization terminated successfully (Exit mode 0)
Current function value: 124.01200673068071
Iterations: 10
Function evaluations: 94
Gradient evaluations: 10
Iteration: 1, Func. Count: 7, Neg. LLF: 129.3885917206617
Iteration: 2, Func. Count: 14, Neg. LLF: 140.30293727350394
Iteration: 3, Func. Count: 21, Neg. LLF: 125.86307385279467
Iteration: 4, Func. Count: 27, Neg. LLF: 125.06598019049417
Iteration: 5, Func. Count: 33, Neg. LLF: 125.06462587231296
Iteration: 6, Func. Count: 39, Neg. LLF: 125.0627034364513
Iteration: 7, Func. Count: 45, Neg. LLF: 125.06270058578214
Iteration: 8, Func. Count: 50, Neg. LLF: 125.06270064499823
Optimization terminated successfully (Exit mode 0)
Current function value: 125.06270058578214
Iterations: 8
Function evaluations: 50
Gradient evaluations: 8
Iteration: 1, Func. Count: 8, Neg. LLF: 240.69388406465825
Iteration: 2, Func. Count: 17, Neg. LLF: 124.30700443171263
Iteration: 3, Func. Count: 25, Neg. LLF: 124.04192078694246
Iteration: 4, Func. Count: 32, Neg. LLF: 124.02429237601785
Iteration: 5, Func. Count: 39, Neg. LLF: 124.01675465388352
Iteration: 6, Func. Count: 46, Neg. LLF: 124.01255775582531
Iteration: 7, Func. Count: 53, Neg. LLF: 124.01200794578544
Iteration: 8, Func. Count: 60, Neg. LLF: 124.01200666577968
Iteration: 9, Func. Count: 66, Neg. LLF: 124.0120066658041
Optimization terminated successfully (Exit mode 0)
Current function value: 124.01200666577968
Iterations: 9
Function evaluations: 66
Gradient evaluations: 9
Iteration: 1, Func. Count: 9, Neg. LLF: 230.49107844220114
Iteration: 2, Func. Count: 19, Neg. LLF: 124.43722682067732
Iteration: 3, Func. Count: 28, Neg. LLF: 124.10085806705837
Iteration: 4, Func. Count: 36, Neg. LLF: 124.01815516308359
Iteration: 5, Func. Count: 44, Neg. LLF: 124.0197424235175
Iteration: 6, Func. Count: 53, Neg. LLF: 124.01248403228237
Iteration: 7, Func. Count: 61, Neg. LLF: 124.01201506979666
Iteration: 8, Func. Count: 69, Neg. LLF: 124.012008903158
Iteration: 9, Func. Count: 77, Neg. LLF: 124.0120066559679
Iteration: 10, Func. Count: 84, Neg. LLF: 124.01200666092194
Optimization terminated successfully (Exit mode 0)
Current function value: 124.0120066559679
Iterations: 10
Function evaluations: 84
Gradient evaluations: 10
Iteration: 1, Func. Count: 10, Neg. LLF: 224.6310817966649
Iteration: 2, Func. Count: 21, Neg. LLF: 124.48151410937476
Iteration: 3, Func. Count: 31, Neg. LLF: 124.10431778416059
Iteration: 4, Func. Count: 40, Neg. LLF: 124.03948506831695
Iteration: 5, Func. Count: 49, Neg. LLF: 124.01234881947951
Iteration: 6, Func. Count: 58, Neg. LLF: 124.01211256078793
Iteration: 7, Func. Count: 67, Neg. LLF: 124.01200760922319
Iteration: 8, Func. Count: 76, Neg. LLF: 124.01200677107718
Optimization terminated successfully (Exit mode 0)
Current function value: 124.01200677107718
Iterations: 8
Function evaluations: 76
Gradient evaluations: 8
Iteration: 1, Func. Count: 11, Neg. LLF: 220.74203225354753
Iteration: 2, Func. Count: 23, Neg. LLF: 124.47506346672387
Iteration: 3, Func. Count: 34, Neg. LLF: 124.10993573955324
Iteration: 4, Func. Count: 44, Neg. LLF: 124.06458770044397
Iteration: 5, Func. Count: 54, Neg. LLF: 124.01694725504093
Iteration: 6, Func. Count: 64, Neg. LLF: 124.01439769674587
Iteration: 7, Func. Count: 74, Neg. LLF: 124.01218996554405
Iteration: 8, Func. Count: 84, Neg. LLF: 124.01203525793805
Iteration: 9, Func. Count: 94, Neg. LLF: 124.01200801243358
Iteration: 10, Func. Count: 104, Neg. LLF: 124.01200681264174
Iteration: 11, Func. Count: 113, Neg. LLF: 124.01200682459269
Optimization terminated successfully (Exit mode 0)
Current function value: 124.01200681264174
Iterations: 11
Function evaluations: 113
Gradient evaluations: 11
Iteration: 1, Func. Count: 8, Neg. LLF: 127.79103422056167
Iteration: 2, Func. Count: 16, Neg. LLF: 127.41443347963634
Iteration: 3, Func. Count: 24, Neg. LLF: 125.74819166461464
Iteration: 4, Func. Count: 31, Neg. LLF: 125.07238872968348
Iteration: 5, Func. Count: 38, Neg. LLF: 125.06433539241405
Iteration: 6, Func. Count: 45, Neg. LLF: 125.06270809681129
Iteration: 7, Func. Count: 52, Neg. LLF: 125.06270545307414
Iteration: 8, Func. Count: 59, Neg. LLF: 125.06270055924986
Iteration: 9, Func. Count: 65, Neg. LLF: 125.06270063839827
Optimization terminated successfully (Exit mode 0)
Current function value: 125.06270055924986
Iterations: 9
Function evaluations: 65
Gradient evaluations: 9
Iteration: 1, Func. Count: 9, Neg. LLF: 240.90033078377976
Iteration: 2, Func. Count: 19, Neg. LLF: 124.29795538655839
Iteration: 3, Func. Count: 28, Neg. LLF: 124.0409649766432
Iteration: 4, Func. Count: 36, Neg. LLF: 124.02337221615667
Iteration: 5, Func. Count: 44, Neg. LLF: 124.01630090792739
Iteration: 6, Func. Count: 52, Neg. LLF: 124.01253511337572
Iteration: 7, Func. Count: 60, Neg. LLF: 124.01201335208249
Iteration: 8, Func. Count: 68, Neg. LLF: 124.01200686725083
Iteration: 9, Func. Count: 75, Neg. LLF: 124.01200686731839
Optimization terminated successfully (Exit mode 0)
Current function value: 124.01200686725083
Iterations: 9
Function evaluations: 75
Gradient evaluations: 9
Iteration: 1, Func. Count: 10, Neg. LLF: 230.9321883284123
Iteration: 2, Func. Count: 21, Neg. LLF: 124.42006849018604
Iteration: 3, Func. Count: 31, Neg. LLF: 124.10382655731479
Iteration: 4, Func. Count: 40, Neg. LLF: 124.01670961577165
Iteration: 5, Func. Count: 49, Neg. LLF: 124.02003142716913
Iteration: 6, Func. Count: 59, Neg. LLF: 124.0124610614799
Iteration: 7, Func. Count: 68, Neg. LLF: 124.01201763036298
Iteration: 8, Func. Count: 77, Neg. LLF: 124.01201003123282
Iteration: 9, Func. Count: 86, Neg. LLF: 124.01200665604995
Iteration: 10, Func. Count: 94, Neg. LLF: 124.01200666100115
Optimization terminated successfully (Exit mode 0)
Current function value: 124.01200665604995
Iterations: 10
Function evaluations: 94
Gradient evaluations: 10
Iteration: 1, Func. Count: 11, Neg. LLF: 224.6448589798281
Iteration: 2, Func. Count: 23, Neg. LLF: 124.4531881941135
Iteration: 3, Func. Count: 34, Neg. LLF: 124.11049012896166
Iteration: 4, Func. Count: 44, Neg. LLF: 124.0483525659197
Iteration: 5, Func. Count: 54, Neg. LLF: 124.01211729987041
Iteration: 6, Func. Count: 64, Neg. LLF: 124.01203875999913
Iteration: 7, Func. Count: 74, Neg. LLF: 124.01201109714842
Iteration: 8, Func. Count: 84, Neg. LLF: 124.0120074201385
Iteration: 9, Func. Count: 94, Neg. LLF: 124.01200666255588
Optimization terminated successfully (Exit mode 0)
Current function value: 124.01200666255588
Iterations: 9
Function evaluations: 94
Gradient evaluations: 9
Iteration: 1, Func. Count: 12, Neg. LLF: 220.56381854073075
Iteration: 2, Func. Count: 25, Neg. LLF: 124.43655616978879
Iteration: 3, Func. Count: 37, Neg. LLF: 124.11466538746463
Iteration: 4, Func. Count: 48, Neg. LLF: 124.07609729782979
Iteration: 5, Func. Count: 59, Neg. LLF: 124.01819760988484
Iteration: 6, Func. Count: 70, Neg. LLF: 124.01467477346222
Iteration: 7, Func. Count: 81, Neg. LLF: 124.01219955950661
Iteration: 8, Func. Count: 92, Neg. LLF: 124.01202362472979
Iteration: 9, Func. Count: 103, Neg. LLF: 124.01200782133287
Iteration: 10, Func. Count: 114, Neg. LLF: 124.01200687710848
Optimization terminated successfully (Exit mode 0)
Current function value: 124.01200687710848
Iterations: 10
Function evaluations: 114
Gradient evaluations: 10
Iteration: 1, Func. Count: 5, Neg. LLF: 124.48025313359884
Iteration: 2, Func. Count: 10, Neg. LLF: 129.53297490926397
Iteration: 3, Func. Count: 15, Neg. LLF: 122.94820694121017
Iteration: 4, Func. Count: 20, Neg. LLF: 122.70870405841227
Iteration: 5, Func. Count: 24, Neg. LLF: 122.70708241388438
Iteration: 6, Func. Count: 28, Neg. LLF: 122.70586155493584
Iteration: 7, Func. Count: 32, Neg. LLF: 122.7058127529954
Iteration: 8, Func. Count: 36, Neg. LLF: 122.70581127277431
Iteration: 9, Func. Count: 39, Neg. LLF: 122.70581127277354
Optimization terminated successfully (Exit mode 0)
Current function value: 122.70581127277431
Iterations: 9
Function evaluations: 39
Gradient evaluations: 9
Iteration: 1, Func. Count: 6, Neg. LLF: 125.17535582889914
Iteration: 2, Func. Count: 12, Neg. LLF: 124.29656652250218
Iteration: 3, Func. Count: 18, Neg. LLF: 124.17818081064931
Iteration: 4, Func. Count: 24, Neg. LLF: 122.82510768024262
Iteration: 5, Func. Count: 29, Neg. LLF: 122.75953784341922
Iteration: 6, Func. Count: 34, Neg. LLF: 122.7094911145812
Iteration: 7, Func. Count: 39, Neg. LLF: 122.70613065280632
Iteration: 8, Func. Count: 44, Neg. LLF: 122.70586574123712
Iteration: 9, Func. Count: 49, Neg. LLF: 122.7058115860972
Iteration: 10, Func. Count: 53, Neg. LLF: 122.70581165153105
Optimization terminated successfully (Exit mode 0)
Current function value: 122.7058115860972
Iterations: 10
Function evaluations: 53
Gradient evaluations: 10
Iteration: 1, Func. Count: 7, Neg. LLF: 127.20759298320516
Iteration: 2, Func. Count: 14, Neg. LLF: 123.26476091206108
Iteration: 3, Func. Count: 20, Neg. LLF: 123.93787458777233
Iteration: 4, Func. Count: 27, Neg. LLF: 123.58962163403925
Iteration: 5, Func. Count: 34, Neg. LLF: 122.73212413107844
Iteration: 6, Func. Count: 40, Neg. LLF: 122.71795552966873
Iteration: 7, Func. Count: 46, Neg. LLF: 122.70601885417415
Iteration: 8, Func. Count: 52, Neg. LLF: 122.70581312996694
Iteration: 9, Func. Count: 58, Neg. LLF: 122.70581129027401
Iteration: 10, Func. Count: 63, Neg. LLF: 122.70581136409692
Optimization terminated successfully (Exit mode 0)
Current function value: 122.70581129027401
Iterations: 10
Function evaluations: 63
Gradient evaluations: 10
Iteration: 1, Func. Count: 8, Neg. LLF: 127.52392765679122
Iteration: 2, Func. Count: 16, Neg. LLF: 123.17326621831225
Iteration: 3, Func. Count: 23, Neg. LLF: 123.3553378794866
Iteration: 4, Func. Count: 31, Neg. LLF: 122.79059156636205
Iteration: 5, Func. Count: 38, Neg. LLF: 122.72216498743096
Iteration: 6, Func. Count: 45, Neg. LLF: 122.70798662979337
Iteration: 7, Func. Count: 52, Neg. LLF: 122.70630227459891
Iteration: 8, Func. Count: 59, Neg. LLF: 122.70582665859999
Iteration: 9, Func. Count: 66, Neg. LLF: 122.70581150668885
Iteration: 10, Func. Count: 72, Neg. LLF: 122.70581164171819
Optimization terminated successfully (Exit mode 0)
Current function value: 122.70581150668885
Iterations: 10
Function evaluations: 72
Gradient evaluations: 10
Iteration: 1, Func. Count: 9, Neg. LLF: 130.69068799746944
Iteration: 2, Func. Count: 18, Neg. LLF: 122.96795906301209
Iteration: 3, Func. Count: 26, Neg. LLF: 123.14812590052642
Iteration: 4, Func. Count: 35, Neg. LLF: 122.77261077659549
Iteration: 5, Func. Count: 43, Neg. LLF: 122.71581059451646
Iteration: 6, Func. Count: 51, Neg. LLF: 122.71122297735738
Iteration: 7, Func. Count: 59, Neg. LLF: 122.7094497475553
Iteration: 8, Func. Count: 67, Neg. LLF: 122.70591389316958
Iteration: 9, Func. Count: 75, Neg. LLF: 122.70581468709842
Iteration: 10, Func. Count: 83, Neg. LLF: 122.70581126774212
Iteration: 11, Func. Count: 90, Neg. LLF: 122.70581143637928
Optimization terminated successfully (Exit mode 0)
Current function value: 122.70581126774212
Iterations: 11
Function evaluations: 90
Gradient evaluations: 11
Iteration: 1, Func. Count: 6, Neg. LLF: 123.96686314291334
Iteration: 2, Func. Count: 11, Neg. LLF: 120.98721990198369
Iteration: 3, Func. Count: 16, Neg. LLF: 123.11941975126015
Iteration: 4, Func. Count: 25, Neg. LLF: 178.46681911056302
Iteration: 5, Func. Count: 31, Neg. LLF: 120.18943074438526
Iteration: 6, Func. Count: 36, Neg. LLF: 120.18093939503031
Iteration: 7, Func. Count: 42, Neg. LLF: 120.15746158918601
Iteration: 8, Func. Count: 47, Neg. LLF: 120.15680272029937
Iteration: 9, Func. Count: 52, Neg. LLF: 120.15672858912546
Iteration: 10, Func. Count: 56, Neg. LLF: 120.15672858926082
Optimization terminated successfully (Exit mode 0)
Current function value: 120.15672858912546
Iterations: 10
Function evaluations: 56
Gradient evaluations: 10
Iteration: 1, Func. Count: 7, Neg. LLF: 121.11539181485347
Iteration: 2, Func. Count: 13, Neg. LLF: 122.86431835880956
Iteration: 3, Func. Count: 21, Neg. LLF: 125.2294382249317
Iteration: 4, Func. Count: 28, Neg. LLF: 124.6309359498555
Iteration: 5, Func. Count: 35, Neg. LLF: 120.03120147440328
Iteration: 6, Func. Count: 41, Neg. LLF: 120.01106922091253
Iteration: 7, Func. Count: 47, Neg. LLF: 119.98944216761237
Iteration: 8, Func. Count: 53, Neg. LLF: 119.98193947291448
Iteration: 9, Func. Count: 59, Neg. LLF: 119.97937305009916
Iteration: 10, Func. Count: 65, Neg. LLF: 119.97851734980974
Iteration: 11, Func. Count: 71, Neg. LLF: 119.9784638677786
Iteration: 12, Func. Count: 76, Neg. LLF: 119.9784638677864
Optimization terminated successfully (Exit mode 0)
Current function value: 119.9784638677786
Iterations: 12
Function evaluations: 76
Gradient evaluations: 12
Iteration: 1, Func. Count: 8, Neg. LLF: 121.35788558777408
Iteration: 2, Func. Count: 15, Neg. LLF: 123.17223811474982
Iteration: 3, Func. Count: 23, Neg. LLF: 126.81585458287572
Iteration: 4, Func. Count: 31, Neg. LLF: 121.04860147273844
Iteration: 5, Func. Count: 39, Neg. LLF: 120.08287813190255
Iteration: 6, Func. Count: 46, Neg. LLF: 120.0200731860782
Iteration: 7, Func. Count: 53, Neg. LLF: 120.0439456426776
Iteration: 8, Func. Count: 61, Neg. LLF: 119.98241817568834
Iteration: 9, Func. Count: 68, Neg. LLF: 119.9797054144969
Iteration: 10, Func. Count: 75, Neg. LLF: 119.97847351725306
Iteration: 11, Func. Count: 82, Neg. LLF: 119.97846346349267
Iteration: 12, Func. Count: 88, Neg. LLF: 119.97846347947146
Optimization terminated successfully (Exit mode 0)
Current function value: 119.97846346349267
Iterations: 12
Function evaluations: 88
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 121.36966250190842
Iteration: 2, Func. Count: 17, Neg. LLF: 122.93457394166111
Iteration: 3, Func. Count: 26, Neg. LLF: 123.84949632271967
Iteration: 4, Func. Count: 35, Neg. LLF: 120.24113617795074
Iteration: 5, Func. Count: 44, Neg. LLF: 120.05292591279435
Iteration: 6, Func. Count: 52, Neg. LLF: 120.03125489898689
Iteration: 7, Func. Count: 60, Neg. LLF: 119.9925382322585
Iteration: 8, Func. Count: 68, Neg. LLF: 119.98262433910972
Iteration: 9, Func. Count: 76, Neg. LLF: 119.9800172327838
Iteration: 10, Func. Count: 84, Neg. LLF: 119.97850343146506
Iteration: 11, Func. Count: 92, Neg. LLF: 119.97846431105937
Iteration: 12, Func. Count: 100, Neg. LLF: 119.97846330049445
Iteration: 13, Func. Count: 107, Neg. LLF: 119.97846332898023
Optimization terminated successfully (Exit mode 0)
Current function value: 119.97846330049445
Iterations: 13
Function evaluations: 107
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 121.14907684154339
Iteration: 2, Func. Count: 19, Neg. LLF: 123.0714957882184
Iteration: 3, Func. Count: 29, Neg. LLF: 120.44481370812863
Iteration: 4, Func. Count: 39, Neg. LLF: 120.02821977149428
Iteration: 5, Func. Count: 48, Neg. LLF: 121.77455321236774
Iteration: 6, Func. Count: 58, Neg. LLF: 120.02661938049768
Iteration: 7, Func. Count: 68, Neg. LLF: 119.98356180934567
Iteration: 8, Func. Count: 77, Neg. LLF: 119.97862485918574
Iteration: 9, Func. Count: 86, Neg. LLF: 119.9784682880607
Iteration: 10, Func. Count: 95, Neg. LLF: 119.97846362747636
Iteration: 11, Func. Count: 103, Neg. LLF: 119.97846369851561
Optimization terminated successfully (Exit mode 0)
Current function value: 119.97846362747636
Iterations: 11
Function evaluations: 103
Gradient evaluations: 11
Iteration: 1, Func. Count: 7, Neg. LLF: 124.48518059465934
Iteration: 2, Func. Count: 14, Neg. LLF: 127.59354258862547
Iteration: 3, Func. Count: 21, Neg. LLF: 121.64497554589931
Iteration: 4, Func. Count: 27, Neg. LLF: 125.15584571434135
Iteration: 5, Func. Count: 36, Neg. LLF: 127.81604616510391
Iteration: 6, Func. Count: 44, Neg. LLF: 120.2155889224047
Iteration: 7, Func. Count: 50, Neg. LLF: 120.18669293456308
Iteration: 8, Func. Count: 56, Neg. LLF: 120.16493138626893
Iteration: 9, Func. Count: 62, Neg. LLF: 120.15890799972222
Iteration: 10, Func. Count: 68, Neg. LLF: 120.15714329598964
Iteration: 11, Func. Count: 74, Neg. LLF: 120.15675115959124
Iteration: 12, Func. Count: 80, Neg. LLF: 120.15672998610353
Iteration: 13, Func. Count: 86, Neg. LLF: 120.15672838312784
Iteration: 14, Func. Count: 91, Neg. LLF: 120.15672847905552
Optimization terminated successfully (Exit mode 0)
Current function value: 120.15672838312784
Iterations: 14
Function evaluations: 91
Gradient evaluations: 14
Iteration: 1, Func. Count: 8, Neg. LLF: 121.09930592254018
Iteration: 2, Func. Count: 15, Neg. LLF: 122.817266685097
Iteration: 3, Func. Count: 24, Neg. LLF: 125.43633498487301
Iteration: 4, Func. Count: 32, Neg. LLF: 124.49290166543055
Iteration: 5, Func. Count: 40, Neg. LLF: 120.03037020468881
Iteration: 6, Func. Count: 47, Neg. LLF: 120.01032287864496
Iteration: 7, Func. Count: 54, Neg. LLF: 119.98917432060769
Iteration: 8, Func. Count: 61, Neg. LLF: 119.98179500455139
Iteration: 9, Func. Count: 68, Neg. LLF: 119.97933441605076
Iteration: 10, Func. Count: 75, Neg. LLF: 119.97850666225813
Iteration: 11, Func. Count: 82, Neg. LLF: 119.97846377158986
Iteration: 12, Func. Count: 88, Neg. LLF: 119.97846377159568
Optimization terminated successfully (Exit mode 0)
Current function value: 119.97846377158986
Iterations: 12
Function evaluations: 88
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 121.32749971458732
Iteration: 2, Func. Count: 17, Neg. LLF: 123.11289730039069
Iteration: 3, Func. Count: 26, Neg. LLF: 126.82729156515025
Iteration: 4, Func. Count: 35, Neg. LLF: 121.07135822961177
Iteration: 5, Func. Count: 44, Neg. LLF: 120.08445061112624
Iteration: 6, Func. Count: 52, Neg. LLF: 120.02137087466448
Iteration: 7, Func. Count: 60, Neg. LLF: 120.04150185074795
Iteration: 8, Func. Count: 69, Neg. LLF: 119.98274056658454
Iteration: 9, Func. Count: 77, Neg. LLF: 119.97977916764913
Iteration: 10, Func. Count: 85, Neg. LLF: 119.97847734784756
Iteration: 11, Func. Count: 93, Neg. LLF: 119.97846360797315
Iteration: 12, Func. Count: 100, Neg. LLF: 119.97846362392647
Optimization terminated successfully (Exit mode 0)
Current function value: 119.97846360797315
Iterations: 12
Function evaluations: 100
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 121.3204700419678
Iteration: 2, Func. Count: 19, Neg. LLF: 122.85934792649178
Iteration: 3, Func. Count: 29, Neg. LLF: 125.89342817958752
Iteration: 4, Func. Count: 39, Neg. LLF: 120.30396966968064
Iteration: 5, Func. Count: 49, Neg. LLF: 120.05850336029586
Iteration: 6, Func. Count: 58, Neg. LLF: 120.01254178640856
Iteration: 7, Func. Count: 67, Neg. LLF: 119.98749880239741
Iteration: 8, Func. Count: 76, Neg. LLF: 119.98201452046544
Iteration: 9, Func. Count: 85, Neg. LLF: 119.97953636466269
Iteration: 10, Func. Count: 94, Neg. LLF: 119.97847040322631
Iteration: 11, Func. Count: 103, Neg. LLF: 119.97846335853927
Iteration: 12, Func. Count: 111, Neg. LLF: 119.97846338705449
Optimization terminated successfully (Exit mode 0)
Current function value: 119.97846335853927
Iterations: 12
Function evaluations: 111
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 121.1145635466621
Iteration: 2, Func. Count: 21, Neg. LLF: 122.86059966945632
Iteration: 3, Func. Count: 32, Neg. LLF: 121.52575201705659
Iteration: 4, Func. Count: 43, Neg. LLF: 120.10374338599016
Iteration: 5, Func. Count: 53, Neg. LLF: 122.39985264528161
Iteration: 6, Func. Count: 64, Neg. LLF: 120.02706532631623
Iteration: 7, Func. Count: 75, Neg. LLF: 119.98547757472922
Iteration: 8, Func. Count: 85, Neg. LLF: 119.97948741459776
Iteration: 9, Func. Count: 95, Neg. LLF: 119.9785679230801
Iteration: 10, Func. Count: 105, Neg. LLF: 119.97846340796725
Iteration: 11, Func. Count: 114, Neg. LLF: 119.97846347901033
Optimization terminated successfully (Exit mode 0)
Current function value: 119.97846340796725
Iterations: 11
Function evaluations: 114
Gradient evaluations: 11
Iteration: 1, Func. Count: 8, Neg. LLF: 124.82589529620327
Iteration: 2, Func. Count: 16, Neg. LLF: 124.00894610214522
Iteration: 3, Func. Count: 24, Neg. LLF: 121.28120049849878
Iteration: 4, Func. Count: 31, Neg. LLF: 433.2208476242309
Iteration: 5, Func. Count: 40, Neg. LLF: 127.82363637930084
Iteration: 6, Func. Count: 49, Neg. LLF: 120.18882534362366
Iteration: 7, Func. Count: 56, Neg. LLF: 120.16550594638251
Iteration: 8, Func. Count: 63, Neg. LLF: 120.1582758873068
Iteration: 9, Func. Count: 70, Neg. LLF: 120.15758715800892
Iteration: 10, Func. Count: 77, Neg. LLF: 120.15692592582946
Iteration: 11, Func. Count: 84, Neg. LLF: 120.15674784491962
Iteration: 12, Func. Count: 91, Neg. LLF: 120.15672908847601
Iteration: 13, Func. Count: 98, Neg. LLF: 120.15672838431226
Optimization terminated successfully (Exit mode 0)
Current function value: 120.15672838431226
Iterations: 13
Function evaluations: 98
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 121.13702063819807
Iteration: 2, Func. Count: 17, Neg. LLF: 122.88215712939889
Iteration: 3, Func. Count: 26, Neg. LLF: 126.91452098692996
Iteration: 4, Func. Count: 35, Neg. LLF: 121.38627141673982
Iteration: 5, Func. Count: 44, Neg. LLF: 120.1038656941324
Iteration: 6, Func. Count: 52, Neg. LLF: 120.03793236362205
Iteration: 7, Func. Count: 60, Neg. LLF: 120.07629143316056
Iteration: 8, Func. Count: 69, Neg. LLF: 119.98779508101676
Iteration: 9, Func. Count: 77, Neg. LLF: 119.98111821939763
Iteration: 10, Func. Count: 85, Neg. LLF: 119.9785848432701
Iteration: 11, Func. Count: 93, Neg. LLF: 119.97846951119716
Iteration: 12, Func. Count: 101, Neg. LLF: 119.97846332014082
Iteration: 13, Func. Count: 108, Neg. LLF: 119.97846332014811
Optimization terminated successfully (Exit mode 0)
Current function value: 119.97846332014082
Iterations: 13
Function evaluations: 108
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 121.3554098421424
Iteration: 2, Func. Count: 19, Neg. LLF: 123.14571337403817
Iteration: 3, Func. Count: 29, Neg. LLF: 126.8410651821139
Iteration: 4, Func. Count: 39, Neg. LLF: 121.03011273784632
Iteration: 5, Func. Count: 49, Neg. LLF: 120.08063419578723
Iteration: 6, Func. Count: 58, Neg. LLF: 120.01926848654342
Iteration: 7, Func. Count: 67, Neg. LLF: 120.03709882650352
Iteration: 8, Func. Count: 77, Neg. LLF: 119.98224950093478
Iteration: 9, Func. Count: 86, Neg. LLF: 119.97962944887777
Iteration: 10, Func. Count: 95, Neg. LLF: 119.97847251964653
Iteration: 11, Func. Count: 104, Neg. LLF: 119.97846345149301
Iteration: 12, Func. Count: 112, Neg. LLF: 119.9784634674708
Optimization terminated successfully (Exit mode 0)
Current function value: 119.97846345149301
Iterations: 12
Function evaluations: 112
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 121.35431089599994
Iteration: 2, Func. Count: 21, Neg. LLF: 122.86164076717283
Iteration: 3, Func. Count: 32, Neg. LLF: 126.14362347072567
Iteration: 4, Func. Count: 43, Neg. LLF: 120.29295235167281
Iteration: 5, Func. Count: 54, Neg. LLF: 120.04888983000589
Iteration: 6, Func. Count: 64, Neg. LLF: 120.00541968213616
Iteration: 7, Func. Count: 74, Neg. LLF: 119.98572213469632
Iteration: 8, Func. Count: 84, Neg. LLF: 119.98146575907288
Iteration: 9, Func. Count: 94, Neg. LLF: 119.9789984312393
Iteration: 10, Func. Count: 104, Neg. LLF: 119.97846633069695
Iteration: 11, Func. Count: 114, Neg. LLF: 119.97846334975617
Iteration: 12, Func. Count: 123, Neg. LLF: 119.97846337826
Optimization terminated successfully (Exit mode 0)
Current function value: 119.97846334975617
Iterations: 12
Function evaluations: 123
Gradient evaluations: 12
Iteration: 1, Func. Count: 12, Neg. LLF: 121.1496060924278
Iteration: 2, Func. Count: 23, Neg. LLF: 122.93226316948939
Iteration: 3, Func. Count: 35, Neg. LLF: 120.87224411414738
Iteration: 4, Func. Count: 47, Neg. LLF: 120.04918503353709
Iteration: 5, Func. Count: 58, Neg. LLF: 122.60438489939155
Iteration: 6, Func. Count: 70, Neg. LLF: 119.99216147620156
Iteration: 7, Func. Count: 81, Neg. LLF: 119.9830778260012
Iteration: 8, Func. Count: 92, Neg. LLF: 119.97940410843593
Iteration: 9, Func. Count: 103, Neg. LLF: 119.9785694599567
Iteration: 10, Func. Count: 114, Neg. LLF: 119.97846331239585
Iteration: 11, Func. Count: 124, Neg. LLF: 119.97846338344421
Optimization terminated successfully (Exit mode 0)
Current function value: 119.97846331239585
Iterations: 11
Function evaluations: 124
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 124.78311058220119
Iteration: 2, Func. Count: 18, Neg. LLF: 123.05548462569433
Iteration: 3, Func. Count: 27, Neg. LLF: 121.37402180278018
Iteration: 4, Func. Count: 35, Neg. LLF: 1028.9469415952924
Iteration: 5, Func. Count: 45, Neg. LLF: 128.80809152181664
Iteration: 6, Func. Count: 55, Neg. LLF: 120.1862315916844
Iteration: 7, Func. Count: 63, Neg. LLF: 120.18572164324182
Iteration: 8, Func. Count: 72, Neg. LLF: 120.16015567067632
Iteration: 9, Func. Count: 80, Neg. LLF: 120.15757950418613
Iteration: 10, Func. Count: 88, Neg. LLF: 120.1571326331004
Iteration: 11, Func. Count: 96, Neg. LLF: 120.15676288916336
Iteration: 12, Func. Count: 104, Neg. LLF: 120.15673034518932
Iteration: 13, Func. Count: 112, Neg. LLF: 120.15672841574455
Iteration: 14, Func. Count: 119, Neg. LLF: 120.1567286099224
Optimization terminated successfully (Exit mode 0)
Current function value: 120.15672841574455
Iterations: 14
Function evaluations: 119
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 121.17078266880348
Iteration: 2, Func. Count: 19, Neg. LLF: 122.95352788868773
Iteration: 3, Func. Count: 29, Neg. LLF: 126.91838106769156
Iteration: 4, Func. Count: 39, Neg. LLF: 121.30529760759116
Iteration: 5, Func. Count: 49, Neg. LLF: 120.10314267829716
Iteration: 6, Func. Count: 58, Neg. LLF: 120.03413789924967
Iteration: 7, Func. Count: 67, Neg. LLF: 120.0678710240579
Iteration: 8, Func. Count: 77, Neg. LLF: 119.98660749555594
Iteration: 9, Func. Count: 86, Neg. LLF: 119.98079543540446
Iteration: 10, Func. Count: 95, Neg. LLF: 119.97859724400077
Iteration: 11, Func. Count: 104, Neg. LLF: 119.97847006464032
Iteration: 12, Func. Count: 113, Neg. LLF: 119.97846330712045
Iteration: 13, Func. Count: 121, Neg. LLF: 119.97846330712544
Optimization terminated successfully (Exit mode 0)
Current function value: 119.97846330712045
Iterations: 13
Function evaluations: 121
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 121.40285639323658
Iteration: 2, Func. Count: 21, Neg. LLF: 123.21667144122256
Iteration: 3, Func. Count: 32, Neg. LLF: 126.8636433792114
Iteration: 4, Func. Count: 43, Neg. LLF: 120.95389338449834
Iteration: 5, Func. Count: 54, Neg. LLF: 120.07320638458741
Iteration: 6, Func. Count: 64, Neg. LLF: 120.01582087568603
Iteration: 7, Func. Count: 74, Neg. LLF: 120.03213699275817
Iteration: 8, Func. Count: 85, Neg. LLF: 119.98156467753034
Iteration: 9, Func. Count: 95, Neg. LLF: 119.97940710401545
Iteration: 10, Func. Count: 105, Neg. LLF: 119.9784693318771
Iteration: 11, Func. Count: 115, Neg. LLF: 119.97846338577659
Iteration: 12, Func. Count: 124, Neg. LLF: 119.9784634017655
Optimization terminated successfully (Exit mode 0)
Current function value: 119.97846338577659
Iterations: 12
Function evaluations: 124
Gradient evaluations: 12
Iteration: 1, Func. Count: 12, Neg. LLF: 121.39230157521278
Iteration: 2, Func. Count: 23, Neg. LLF: 122.94420549689471
Iteration: 3, Func. Count: 35, Neg. LLF: 122.39699125175513
Iteration: 4, Func. Count: 47, Neg. LLF: 120.17547178845743
Iteration: 5, Func. Count: 58, Neg. LLF: 120.04660626152037
Iteration: 6, Func. Count: 69, Neg. LLF: 119.99309340738618
Iteration: 7, Func. Count: 80, Neg. LLF: 119.98716911573321
Iteration: 8, Func. Count: 91, Neg. LLF: 119.98126680216087
Iteration: 9, Func. Count: 102, Neg. LLF: 119.97873301373981
Iteration: 10, Func. Count: 113, Neg. LLF: 119.9784690002699
Iteration: 11, Func. Count: 124, Neg. LLF: 119.97846350726823
Iteration: 12, Func. Count: 134, Neg. LLF: 119.97846353578151
Optimization terminated successfully (Exit mode 0)
Current function value: 119.97846350726823
Iterations: 12
Function evaluations: 134
Gradient evaluations: 12
Iteration: 1, Func. Count: 13, Neg. LLF: 121.18384525979171
Iteration: 2, Func. Count: 25, Neg. LLF: 123.40171207511537
Iteration: 3, Func. Count: 38, Neg. LLF: 120.55437053212191
Iteration: 4, Func. Count: 51, Neg. LLF: 120.35339605407299
Iteration: 5, Func. Count: 64, Neg. LLF: 120.0818537317006
Iteration: 6, Func. Count: 77, Neg. LLF: 119.98855962918103
Iteration: 7, Func. Count: 89, Neg. LLF: 119.98354358719199
Iteration: 8, Func. Count: 101, Neg. LLF: 119.97875391736851
Iteration: 9, Func. Count: 113, Neg. LLF: 119.97846634152285
Iteration: 10, Func. Count: 125, Neg. LLF: 119.9784633665732
Iteration: 11, Func. Count: 136, Neg. LLF: 119.97846343762026
Optimization terminated successfully (Exit mode 0)
Current function value: 119.9784633665732
Iterations: 11
Function evaluations: 136
Gradient evaluations: 11
Iteration: 1, Func. Count: 6, Neg. LLF: 124.96435525680765
Iteration: 2, Func. Count: 12, Neg. LLF: 135.470563679528
Iteration: 3, Func. Count: 18, Neg. LLF: 124.58393530060074
Iteration: 4, Func. Count: 24, Neg. LLF: 122.7263065368891
Iteration: 5, Func. Count: 29, Neg. LLF: 122.70693086165703
Iteration: 6, Func. Count: 34, Neg. LLF: 122.7065034608486
Iteration: 7, Func. Count: 39, Neg. LLF: 122.70588567760299
Iteration: 8, Func. Count: 44, Neg. LLF: 122.70581901103544
Iteration: 9, Func. Count: 49, Neg. LLF: 122.70581132049689
Iteration: 10, Func. Count: 53, Neg. LLF: 122.70581140688027
Optimization terminated successfully (Exit mode 0)
Current function value: 122.70581132049689
Iterations: 10
Function evaluations: 53
Gradient evaluations: 10
Iteration: 1, Func. Count: 7, Neg. LLF: 231.78554647890869
Iteration: 2, Func. Count: 15, Neg. LLF: 124.31505693951388
Iteration: 3, Func. Count: 22, Neg. LLF: 124.04969215326778
Iteration: 4, Func. Count: 28, Neg. LLF: 124.03239609391886
Iteration: 5, Func. Count: 34, Neg. LLF: 124.02141210353669
Iteration: 6, Func. Count: 40, Neg. LLF: 124.01272411653505
Iteration: 7, Func. Count: 46, Neg. LLF: 124.01202922989948
Iteration: 8, Func. Count: 52, Neg. LLF: 124.01200869295343
Iteration: 9, Func. Count: 58, Neg. LLF: 124.01200665907179
Iteration: 10, Func. Count: 63, Neg. LLF: 124.01200665908172
Optimization terminated successfully (Exit mode 0)
Current function value: 124.01200665907179
Iterations: 10
Function evaluations: 63
Gradient evaluations: 10
Iteration: 1, Func. Count: 8, Neg. LLF: 223.8379548778203
Iteration: 2, Func. Count: 17, Neg. LLF: 124.4639349512564
Iteration: 3, Func. Count: 25, Neg. LLF: 124.11439747177063
Iteration: 4, Func. Count: 32, Neg. LLF: 124.02513174735151
Iteration: 5, Func. Count: 39, Neg. LLF: 124.01522822802953
Iteration: 6, Func. Count: 46, Neg. LLF: 124.01279058258022
Iteration: 7, Func. Count: 53, Neg. LLF: 124.01218571729146
Iteration: 8, Func. Count: 60, Neg. LLF: 124.01201122911492
Iteration: 9, Func. Count: 67, Neg. LLF: 124.01200725226902
Iteration: 10, Func. Count: 73, Neg. LLF: 124.01200725719967
Optimization terminated successfully (Exit mode 0)
Current function value: 124.01200725226902
Iterations: 10
Function evaluations: 73
Gradient evaluations: 10
Iteration: 1, Func. Count: 9, Neg. LLF: 218.96267322411506
Iteration: 2, Func. Count: 19, Neg. LLF: 124.53174903577435
Iteration: 3, Func. Count: 28, Neg. LLF: 124.113783060697
Iteration: 4, Func. Count: 36, Neg. LLF: 124.05276400559418
Iteration: 5, Func. Count: 44, Neg. LLF: 124.0156152507462
Iteration: 6, Func. Count: 52, Neg. LLF: 124.01286257175579
Iteration: 7, Func. Count: 60, Neg. LLF: 124.01204339184595
Iteration: 8, Func. Count: 68, Neg. LLF: 124.01200887790847
Iteration: 9, Func. Count: 76, Neg. LLF: 124.01200690849208
Iteration: 10, Func. Count: 83, Neg. LLF: 124.01200691768398
Optimization terminated successfully (Exit mode 0)
Current function value: 124.01200690849208
Iterations: 10
Function evaluations: 83
Gradient evaluations: 10
Iteration: 1, Func. Count: 10, Neg. LLF: 216.57166129157707
Iteration: 2, Func. Count: 21, Neg. LLF: 124.57782541688829
Iteration: 3, Func. Count: 31, Neg. LLF: 124.1128627539549
Iteration: 4, Func. Count: 40, Neg. LLF: 124.06341399830991
Iteration: 5, Func. Count: 49, Neg. LLF: 124.01239877957163
Iteration: 6, Func. Count: 58, Neg. LLF: 124.01211797537786
Iteration: 7, Func. Count: 67, Neg. LLF: 124.01201027735522
Iteration: 8, Func. Count: 76, Neg. LLF: 124.01200742289431
Iteration: 9, Func. Count: 85, Neg. LLF: 124.01200665716415
Optimization terminated successfully (Exit mode 0)
Current function value: 124.01200665716415
Iterations: 9
Function evaluations: 85
Gradient evaluations: 9
Iteration: 1, Func. Count: 7, Neg. LLF: 125.42565847537803
Iteration: 2, Func. Count: 14, Neg. LLF: 146.43449087034116
Iteration: 3, Func. Count: 21, Neg. LLF: 121.54778779850953
Iteration: 4, Func. Count: 27, Neg. LLF: 123.35927487140272
Iteration: 5, Func. Count: 35, Neg. LLF: 127.7358027841578
Iteration: 6, Func. Count: 43, Neg. LLF: 120.1872679170257
Iteration: 7, Func. Count: 49, Neg. LLF: 120.17731908295669
Iteration: 8, Func. Count: 55, Neg. LLF: 120.16204405326559
Iteration: 9, Func. Count: 61, Neg. LLF: 120.1572538339441
Iteration: 10, Func. Count: 67, Neg. LLF: 120.15675291821904
Iteration: 11, Func. Count: 73, Neg. LLF: 120.15673177185063
Iteration: 12, Func. Count: 79, Neg. LLF: 120.15672844710774
Iteration: 13, Func. Count: 84, Neg. LLF: 120.15672844710595
Optimization terminated successfully (Exit mode 0)
Current function value: 120.15672844710774
Iterations: 13
Function evaluations: 84
Gradient evaluations: 13
Iteration: 1, Func. Count: 8, Neg. LLF: 121.84333776639775
Iteration: 2, Func. Count: 15, Neg. LLF: 123.60396060260774
Iteration: 3, Func. Count: 23, Neg. LLF: 129.99806293201735
Iteration: 4, Func. Count: 31, Neg. LLF: 120.60755315729917
Iteration: 5, Func. Count: 39, Neg. LLF: 120.00700866078776
Iteration: 6, Func. Count: 46, Neg. LLF: 119.98783914654477
Iteration: 7, Func. Count: 53, Neg. LLF: 119.97969071399527
Iteration: 8, Func. Count: 60, Neg. LLF: 119.97862176349102
Iteration: 9, Func. Count: 67, Neg. LLF: 119.97851151291901
Iteration: 10, Func. Count: 74, Neg. LLF: 119.97847208497554
Iteration: 11, Func. Count: 81, Neg. LLF: 119.97846368849709
Iteration: 12, Func. Count: 87, Neg. LLF: 119.97846368848298
Optimization terminated successfully (Exit mode 0)
Current function value: 119.97846368849709
Iterations: 12
Function evaluations: 87
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 121.76850543552307
Iteration: 2, Func. Count: 17, Neg. LLF: 123.36969027880184
Iteration: 3, Func. Count: 26, Neg. LLF: 130.71135885607802
Iteration: 4, Func. Count: 35, Neg. LLF: 120.55406631212806
Iteration: 5, Func. Count: 44, Neg. LLF: 120.01191398124939
Iteration: 6, Func. Count: 52, Neg. LLF: 119.98957150377537
Iteration: 7, Func. Count: 60, Neg. LLF: 119.98009428395008
Iteration: 8, Func. Count: 68, Neg. LLF: 119.97868644898396
Iteration: 9, Func. Count: 76, Neg. LLF: 119.97852390513604
Iteration: 10, Func. Count: 84, Neg. LLF: 119.97847641603337
Iteration: 11, Func. Count: 92, Neg. LLF: 119.97846391947095
Iteration: 12, Func. Count: 100, Neg. LLF: 119.97846332585684
Optimization terminated successfully (Exit mode 0)
Current function value: 119.97846332585684
Iterations: 12
Function evaluations: 100
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 121.71442668778589
Iteration: 2, Func. Count: 19, Neg. LLF: 123.00441905930376
Iteration: 3, Func. Count: 29, Neg. LLF: 131.22464367904058
Iteration: 4, Func. Count: 40, Neg. LLF: 120.04834177211538
Iteration: 5, Func. Count: 50, Neg. LLF: 120.36288864475533
Iteration: 6, Func. Count: 60, Neg. LLF: 119.97870678948466
Iteration: 7, Func. Count: 69, Neg. LLF: 119.9785452783506
Iteration: 8, Func. Count: 78, Neg. LLF: 119.97847465278485
Iteration: 9, Func. Count: 87, Neg. LLF: 119.97846366062839
Iteration: 10, Func. Count: 95, Neg. LLF: 119.97846368906934
Optimization terminated successfully (Exit mode 0)
Current function value: 119.97846366062839
Iterations: 10
Function evaluations: 95
Gradient evaluations: 10
Iteration: 1, Func. Count: 11, Neg. LLF: 121.65390116870498
Iteration: 2, Func. Count: 21, Neg. LLF: 122.73106169171852
Iteration: 3, Func. Count: 32, Neg. LLF: 131.77903257121076
Iteration: 4, Func. Count: 44, Neg. LLF: 120.05376352348941
Iteration: 5, Func. Count: 55, Neg. LLF: 120.19907185977088
Iteration: 6, Func. Count: 66, Neg. LLF: 119.97878849144232
Iteration: 7, Func. Count: 76, Neg. LLF: 119.97856796986846
Iteration: 8, Func. Count: 86, Neg. LLF: 119.97848097313243
Iteration: 9, Func. Count: 96, Neg. LLF: 119.97846377830233
Iteration: 10, Func. Count: 105, Neg. LLF: 119.9784638493021
Optimization terminated successfully (Exit mode 0)
Current function value: 119.97846377830233
Iterations: 10
Function evaluations: 105
Gradient evaluations: 10
Iteration: 1, Func. Count: 8, Neg. LLF: 123.59887591818887
Iteration: 2, Func. Count: 15, Neg. LLF: 150.73149220624742
Iteration: 3, Func. Count: 23, Neg. LLF: 120.26551998467347
Iteration: 4, Func. Count: 30, Neg. LLF: 128.56318589400286
Iteration: 5, Func. Count: 38, Neg. LLF: 120.84961857193929
Iteration: 6, Func. Count: 46, Neg. LLF: 119.85977457772182
Iteration: 7, Func. Count: 53, Neg. LLF: 126.23100066174528
Iteration: 8, Func. Count: 62, Neg. LLF: 119.85225251775108
Iteration: 9, Func. Count: 69, Neg. LLF: 119.85176934757496
Iteration: 10, Func. Count: 76, Neg. LLF: 119.85175496825607
Iteration: 11, Func. Count: 83, Neg. LLF: 119.85175413460189
Optimization terminated successfully (Exit mode 0)
Current function value: 119.85175413460189
Iterations: 11
Function evaluations: 83
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 144.31344357948018
Iteration: 2, Func. Count: 18, Neg. LLF: 123.11019523862531
Iteration: 3, Func. Count: 27, Neg. LLF: 130.2596845063484
Iteration: 4, Func. Count: 36, Neg. LLF: 120.68699538543686
Iteration: 5, Func. Count: 44, Neg. LLF: 120.55171136250553
Iteration: 6, Func. Count: 52, Neg. LLF: 121.4245683613422
Iteration: 7, Func. Count: 61, Neg. LLF: 119.96877396974278
Iteration: 8, Func. Count: 69, Neg. LLF: 119.9103528024521
Iteration: 9, Func. Count: 77, Neg. LLF: 119.8855466824614
Iteration: 10, Func. Count: 85, Neg. LLF: 119.87305954977158
Iteration: 11, Func. Count: 93, Neg. LLF: 119.85334501010996
Iteration: 12, Func. Count: 101, Neg. LLF: 119.8518185483659
Iteration: 13, Func. Count: 109, Neg. LLF: 119.85175453310048
Iteration: 14, Func. Count: 116, Neg. LLF: 119.85175454600542
Optimization terminated successfully (Exit mode 0)
Current function value: 119.85175453310048
Iterations: 14
Function evaluations: 116
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 121.74388315790716
Iteration: 2, Func. Count: 19, Neg. LLF: 123.32397397246744
Iteration: 3, Func. Count: 29, Neg. LLF: 130.7322273737126
Iteration: 4, Func. Count: 39, Neg. LLF: 120.12622471517419
Iteration: 5, Func. Count: 49, Neg. LLF: 119.95195297209253
Iteration: 6, Func. Count: 58, Neg. LLF: 119.89557708701382
Iteration: 7, Func. Count: 67, Neg. LLF: 119.87593914413567
Iteration: 8, Func. Count: 76, Neg. LLF: 119.86417233638423
Iteration: 9, Func. Count: 85, Neg. LLF: 119.85567933046592
Iteration: 10, Func. Count: 94, Neg. LLF: 119.85231752592277
Iteration: 11, Func. Count: 103, Neg. LLF: 119.85179761081233
Iteration: 12, Func. Count: 112, Neg. LLF: 119.85175648132247
Iteration: 13, Func. Count: 121, Neg. LLF: 119.85175418477851
Iteration: 14, Func. Count: 129, Neg. LLF: 119.85175420405565
Optimization terminated successfully (Exit mode 0)
Current function value: 119.85175418477851
Iterations: 14
Function evaluations: 129
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 121.66776277795364
Iteration: 2, Func. Count: 21, Neg. LLF: 123.0003914847442
Iteration: 3, Func. Count: 32, Neg. LLF: 131.16386870018454
Iteration: 4, Func. Count: 44, Neg. LLF: 119.99630909462256
Iteration: 5, Func. Count: 55, Neg. LLF: 119.95633468481316
Iteration: 6, Func. Count: 66, Neg. LLF: 119.90921205799582
Iteration: 7, Func. Count: 76, Neg. LLF: 119.88253104396101
Iteration: 8, Func. Count: 86, Neg. LLF: 119.86695813311101
Iteration: 9, Func. Count: 96, Neg. LLF: 119.85876820998519
Iteration: 10, Func. Count: 106, Neg. LLF: 119.85309133177728
Iteration: 11, Func. Count: 116, Neg. LLF: 119.85191873639886
Iteration: 12, Func. Count: 126, Neg. LLF: 119.85176399772345
Iteration: 13, Func. Count: 136, Neg. LLF: 119.85175447487357
Iteration: 14, Func. Count: 145, Neg. LLF: 119.85175450191949
Optimization terminated successfully (Exit mode 0)
Current function value: 119.85175447487357
Iterations: 14
Function evaluations: 145
Gradient evaluations: 14
Iteration: 1, Func. Count: 12, Neg. LLF: 121.62048896973494
Iteration: 2, Func. Count: 23, Neg. LLF: 122.70573088036448
Iteration: 3, Func. Count: 35, Neg. LLF: 131.98899456900622
Iteration: 4, Func. Count: 48, Neg. LLF: 119.98889692370702
Iteration: 5, Func. Count: 60, Neg. LLF: 120.1538996805642
Iteration: 6, Func. Count: 72, Neg. LLF: 119.92176062986178
Iteration: 7, Func. Count: 83, Neg. LLF: 119.8863856542514
Iteration: 8, Func. Count: 94, Neg. LLF: 119.87001322670064
Iteration: 9, Func. Count: 105, Neg. LLF: 119.85991129491232
Iteration: 10, Func. Count: 116, Neg. LLF: 119.85445383746557
Iteration: 11, Func. Count: 127, Neg. LLF: 119.85204430526488
Iteration: 12, Func. Count: 138, Neg. LLF: 119.85177664491884
Iteration: 13, Func. Count: 149, Neg. LLF: 119.85175623683628
Iteration: 14, Func. Count: 160, Neg. LLF: 119.85175425985041
Iteration: 15, Func. Count: 170, Neg. LLF: 119.85175433925784
Optimization terminated successfully (Exit mode 0)
Current function value: 119.85175425985041
Iterations: 15
Function evaluations: 170
Gradient evaluations: 15
Iteration: 1, Func. Count: 9, Neg. LLF: 123.5418865396122
Iteration: 2, Func. Count: 17, Neg. LLF: 143.57367289335224
Iteration: 3, Func. Count: 26, Neg. LLF: 119.98484168310758
Iteration: 4, Func. Count: 34, Neg. LLF: 123.26844602631947
Iteration: 5, Func. Count: 43, Neg. LLF: 120.5323097782266
Iteration: 6, Func. Count: 52, Neg. LLF: 119.85229611206712
Iteration: 7, Func. Count: 60, Neg. LLF: 119.85200949676198
Iteration: 8, Func. Count: 68, Neg. LLF: 119.85191210766415
Iteration: 9, Func. Count: 76, Neg. LLF: 119.85177081041375
Iteration: 10, Func. Count: 84, Neg. LLF: 119.8517547864653
Iteration: 11, Func. Count: 92, Neg. LLF: 119.85175412566748
Optimization terminated successfully (Exit mode 0)
Current function value: 119.85175412566748
Iterations: 11
Function evaluations: 92
Gradient evaluations: 11
Iteration: 1, Func. Count: 10, Neg. LLF: 144.4557600298266
Iteration: 2, Func. Count: 20, Neg. LLF: 123.11291297263055
Iteration: 3, Func. Count: 30, Neg. LLF: 130.39304744191062
Iteration: 4, Func. Count: 40, Neg. LLF: 120.67071364021444
Iteration: 5, Func. Count: 49, Neg. LLF: 120.55725540569964
Iteration: 6, Func. Count: 59, Neg. LLF: 121.44607332225404
Iteration: 7, Func. Count: 69, Neg. LLF: 119.98109010653302
Iteration: 8, Func. Count: 78, Neg. LLF: 120.21456288653245
Iteration: 9, Func. Count: 88, Neg. LLF: 119.9048596150007
Iteration: 10, Func. Count: 97, Neg. LLF: 119.88062606663296
Iteration: 11, Func. Count: 106, Neg. LLF: 119.86198709617076
Iteration: 12, Func. Count: 115, Neg. LLF: 119.85338356573371
Iteration: 13, Func. Count: 124, Neg. LLF: 119.85202078882509
Iteration: 14, Func. Count: 133, Neg. LLF: 119.85181523452424
Iteration: 15, Func. Count: 142, Neg. LLF: 119.85176012535646
Iteration: 16, Func. Count: 151, Neg. LLF: 119.8517543363125
Iteration: 17, Func. Count: 159, Neg. LLF: 119.85175434933174
Optimization terminated successfully (Exit mode 0)
Current function value: 119.8517543363125
Iterations: 17
Function evaluations: 159
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 142.87149081561722
Iteration: 2, Func. Count: 22, Neg. LLF: 122.4302423767385
Iteration: 3, Func. Count: 32, Neg. LLF: 124.61776988691635
Iteration: 4, Func. Count: 43, Neg. LLF: 128.4945230671361
Iteration: 5, Func. Count: 54, Neg. LLF: 120.04105329617089
Iteration: 6, Func. Count: 64, Neg. LLF: 120.20640498147307
Iteration: 7, Func. Count: 75, Neg. LLF: 119.98604119681761
Iteration: 8, Func. Count: 85, Neg. LLF: 119.95714438599816
Iteration: 9, Func. Count: 95, Neg. LLF: 119.87013166744148
Iteration: 10, Func. Count: 105, Neg. LLF: 119.86004536289434
Iteration: 11, Func. Count: 115, Neg. LLF: 119.85420811215843
Iteration: 12, Func. Count: 125, Neg. LLF: 119.85279162929609
Iteration: 13, Func. Count: 135, Neg. LLF: 119.85196454965474
Iteration: 14, Func. Count: 145, Neg. LLF: 119.85177936715458
Iteration: 15, Func. Count: 155, Neg. LLF: 119.85175555317184
Iteration: 16, Func. Count: 165, Neg. LLF: 119.85175424032147
Iteration: 17, Func. Count: 174, Neg. LLF: 119.85175425960121
Optimization terminated successfully (Exit mode 0)
Current function value: 119.85175424032147
Iterations: 17
Function evaluations: 174
Gradient evaluations: 17
Iteration: 1, Func. Count: 12, Neg. LLF: 121.7020593127774
Iteration: 2, Func. Count: 23, Neg. LLF: 122.890547878257
Iteration: 3, Func. Count: 35, Neg. LLF: 131.55193039180006
Iteration: 4, Func. Count: 48, Neg. LLF: 119.997280249121
Iteration: 5, Func. Count: 60, Neg. LLF: 120.02483039210658
Iteration: 6, Func. Count: 72, Neg. LLF: 119.91489778866983
Iteration: 7, Func. Count: 83, Neg. LLF: 119.8869901627377
Iteration: 8, Func. Count: 94, Neg. LLF: 119.86673791729115
Iteration: 9, Func. Count: 105, Neg. LLF: 119.85863889129726
Iteration: 10, Func. Count: 116, Neg. LLF: 119.85403860477716
Iteration: 11, Func. Count: 127, Neg. LLF: 119.8523577055794
Iteration: 12, Func. Count: 138, Neg. LLF: 119.85185089964617
Iteration: 13, Func. Count: 149, Neg. LLF: 119.85175967327535
Iteration: 14, Func. Count: 160, Neg. LLF: 119.8517542624035
Iteration: 15, Func. Count: 170, Neg. LLF: 119.85175428940292
Optimization terminated successfully (Exit mode 0)
Current function value: 119.8517542624035
Iterations: 15
Function evaluations: 170
Gradient evaluations: 15
Iteration: 1, Func. Count: 13, Neg. LLF: 121.65660099038618
Iteration: 2, Func. Count: 25, Neg. LLF: 122.61746475409163
Iteration: 3, Func. Count: 38, Neg. LLF: 132.22619002747695
Iteration: 4, Func. Count: 52, Neg. LLF: 119.9915669073124
Iteration: 5, Func. Count: 65, Neg. LLF: 120.1474722515106
Iteration: 6, Func. Count: 78, Neg. LLF: 119.92413648889679
Iteration: 7, Func. Count: 90, Neg. LLF: 119.88973403857112
Iteration: 8, Func. Count: 102, Neg. LLF: 119.87196639042878
Iteration: 9, Func. Count: 114, Neg. LLF: 119.86055914845214
Iteration: 10, Func. Count: 126, Neg. LLF: 119.85507577391118
Iteration: 11, Func. Count: 138, Neg. LLF: 119.85220276206734
Iteration: 12, Func. Count: 150, Neg. LLF: 119.851793946562
Iteration: 13, Func. Count: 162, Neg. LLF: 119.8517574757302
Iteration: 14, Func. Count: 174, Neg. LLF: 119.85175421152046
Iteration: 15, Func. Count: 185, Neg. LLF: 119.85175429093628
Optimization terminated successfully (Exit mode 0)
Current function value: 119.85175421152046
Iterations: 15
Function evaluations: 185
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 123.82227811187897
Iteration: 2, Func. Count: 20, Neg. LLF: 150.13156283030958
Iteration: 3, Func. Count: 30, Neg. LLF: 121.01862581158169
Iteration: 4, Func. Count: 39, Neg. LLF: 122.84769145476963
Iteration: 5, Func. Count: 50, Neg. LLF: 123.77412321454365
Iteration: 6, Func. Count: 61, Neg. LLF: 120.26201786134897
Iteration: 7, Func. Count: 71, Neg. LLF: 119.91889220253614
Iteration: 8, Func. Count: 80, Neg. LLF: 119.87304711068653
Iteration: 9, Func. Count: 89, Neg. LLF: 119.85298981428608
Iteration: 10, Func. Count: 98, Neg. LLF: 119.85216749550398
Iteration: 11, Func. Count: 107, Neg. LLF: 119.85192058053016
Iteration: 12, Func. Count: 116, Neg. LLF: 119.85176618847865
Iteration: 13, Func. Count: 125, Neg. LLF: 119.85175455040499
Iteration: 14, Func. Count: 133, Neg. LLF: 119.85175476658917
Optimization terminated successfully (Exit mode 0)
Current function value: 119.85175455040499
Iterations: 14
Function evaluations: 133
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 144.5195753309648
Iteration: 2, Func. Count: 22, Neg. LLF: 123.09409421472043
Iteration: 3, Func. Count: 33, Neg. LLF: 130.45040731562057
Iteration: 4, Func. Count: 44, Neg. LLF: 120.66299783997714
Iteration: 5, Func. Count: 54, Neg. LLF: 120.55599664447878
Iteration: 6, Func. Count: 65, Neg. LLF: 121.43021736148239
Iteration: 7, Func. Count: 76, Neg. LLF: 119.980273537973
Iteration: 8, Func. Count: 86, Neg. LLF: 120.2034041696126
Iteration: 9, Func. Count: 97, Neg. LLF: 119.90370324425841
Iteration: 10, Func. Count: 107, Neg. LLF: 119.87967390004864
Iteration: 11, Func. Count: 117, Neg. LLF: 119.86113717360776
Iteration: 12, Func. Count: 127, Neg. LLF: 119.85322391130225
Iteration: 13, Func. Count: 137, Neg. LLF: 119.85201454259663
Iteration: 14, Func. Count: 147, Neg. LLF: 119.85181198416015
Iteration: 15, Func. Count: 157, Neg. LLF: 119.8517593261985
Iteration: 16, Func. Count: 167, Neg. LLF: 119.85175429627972
Iteration: 17, Func. Count: 176, Neg. LLF: 119.8517543092952
Optimization terminated successfully (Exit mode 0)
Current function value: 119.85175429627972
Iterations: 17
Function evaluations: 176
Gradient evaluations: 17
Iteration: 1, Func. Count: 12, Neg. LLF: 143.01938868902087
Iteration: 2, Func. Count: 24, Neg. LLF: 122.42252919944647
Iteration: 3, Func. Count: 35, Neg. LLF: 124.64013988973925
Iteration: 4, Func. Count: 47, Neg. LLF: 128.51540255863404
Iteration: 5, Func. Count: 59, Neg. LLF: 120.04182006091595
Iteration: 6, Func. Count: 70, Neg. LLF: 120.22296339138309
Iteration: 7, Func. Count: 82, Neg. LLF: 119.98600463352354
Iteration: 8, Func. Count: 93, Neg. LLF: 119.95816169629967
Iteration: 9, Func. Count: 104, Neg. LLF: 119.87023170363271
Iteration: 10, Func. Count: 115, Neg. LLF: 119.85980607403609
Iteration: 11, Func. Count: 126, Neg. LLF: 119.85409052368517
Iteration: 12, Func. Count: 137, Neg. LLF: 119.85277385240639
Iteration: 13, Func. Count: 148, Neg. LLF: 119.85197085892693
Iteration: 14, Func. Count: 159, Neg. LLF: 119.8517790395022
Iteration: 15, Func. Count: 170, Neg. LLF: 119.85175536991763
Iteration: 16, Func. Count: 181, Neg. LLF: 119.85175416134176
Iteration: 17, Func. Count: 191, Neg. LLF: 119.85175418061054
Optimization terminated successfully (Exit mode 0)
Current function value: 119.85175416134176
Iterations: 17
Function evaluations: 191
Gradient evaluations: 17
Iteration: 1, Func. Count: 13, Neg. LLF: 142.12210170811048
Iteration: 2, Func. Count: 26, Neg. LLF: 123.00134746870387
Iteration: 3, Func. Count: 39, Neg. LLF: 125.31362713576677
Iteration: 4, Func. Count: 52, Neg. LLF: 120.15792940310645
Iteration: 5, Func. Count: 64, Neg. LLF: 120.09220880764576
Iteration: 6, Func. Count: 77, Neg. LLF: 120.54970233537998
Iteration: 7, Func. Count: 91, Neg. LLF: 119.94810568762925
Iteration: 8, Func. Count: 103, Neg. LLF: 119.88940706574152
Iteration: 9, Func. Count: 115, Neg. LLF: 119.86200873027637
Iteration: 10, Func. Count: 127, Neg. LLF: 119.85293340396565
Iteration: 11, Func. Count: 139, Neg. LLF: 119.85198663236682
Iteration: 12, Func. Count: 151, Neg. LLF: 119.8517908221166
Iteration: 13, Func. Count: 163, Neg. LLF: 119.8517574795762
Iteration: 14, Func. Count: 175, Neg. LLF: 119.85175431275097
Iteration: 15, Func. Count: 186, Neg. LLF: 119.85175433980991
Optimization terminated successfully (Exit mode 0)
Current function value: 119.85175431275097
Iterations: 15
Function evaluations: 186
Gradient evaluations: 15
Iteration: 1, Func. Count: 14, Neg. LLF: 121.6902422264726
Iteration: 2, Func. Count: 27, Neg. LLF: 122.54450041880258
Iteration: 3, Func. Count: 41, Neg. LLF: 132.27621000814992
Iteration: 4, Func. Count: 56, Neg. LLF: 119.99475640831339
Iteration: 5, Func. Count: 70, Neg. LLF: 120.14434782068896
Iteration: 6, Func. Count: 84, Neg. LLF: 119.92600060990539
Iteration: 7, Func. Count: 97, Neg. LLF: 119.89618308177438
Iteration: 8, Func. Count: 110, Neg. LLF: 119.87199485418792
Iteration: 9, Func. Count: 123, Neg. LLF: 119.86024695988725
Iteration: 10, Func. Count: 136, Neg. LLF: 119.85511655604051
Iteration: 11, Func. Count: 149, Neg. LLF: 119.85233777550597
Iteration: 12, Func. Count: 162, Neg. LLF: 119.85180600495913
Iteration: 13, Func. Count: 175, Neg. LLF: 119.85175795066644
Iteration: 14, Func. Count: 188, Neg. LLF: 119.85175418797029
Iteration: 15, Func. Count: 200, Neg. LLF: 119.8517542674009
Optimization terminated successfully (Exit mode 0)
Current function value: 119.85175418797029
Iterations: 15
Function evaluations: 200
Gradient evaluations: 15
Iteration: 1, Func. Count: 7, Neg. LLF: 126.84037634072705
Iteration: 2, Func. Count: 14, Neg. LLF: 162.73499142802774
Iteration: 3, Func. Count: 21, Neg. LLF: 123.55196236558292
Iteration: 4, Func. Count: 28, Neg. LLF: 122.70869258703702
Iteration: 5, Func. Count: 34, Neg. LLF: 122.70745438567819
Iteration: 6, Func. Count: 40, Neg. LLF: 122.70668726123951
Iteration: 7, Func. Count: 46, Neg. LLF: 122.70588146564965
Iteration: 8, Func. Count: 52, Neg. LLF: 122.7058585708952
Iteration: 9, Func. Count: 58, Neg. LLF: 122.70581442584978
Iteration: 10, Func. Count: 64, Neg. LLF: 122.70581146848525
Iteration: 11, Func. Count: 69, Neg. LLF: 122.70581156689715
Optimization terminated successfully (Exit mode 0)
Current function value: 122.70581146848525
Iterations: 11
Function evaluations: 69
Gradient evaluations: 11
Iteration: 1, Func. Count: 8, Neg. LLF: 229.6788701834013
Iteration: 2, Func. Count: 17, Neg. LLF: 124.29745228661844
Iteration: 3, Func. Count: 25, Neg. LLF: 124.04893098244123
Iteration: 4, Func. Count: 32, Neg. LLF: 124.03090918350382
Iteration: 5, Func. Count: 39, Neg. LLF: 124.0176700365634
Iteration: 6, Func. Count: 46, Neg. LLF: 124.01256408442164
Iteration: 7, Func. Count: 53, Neg. LLF: 124.01206412340223
Iteration: 8, Func. Count: 60, Neg. LLF: 124.01201293915952
Iteration: 9, Func. Count: 67, Neg. LLF: 124.01200666379759
Iteration: 10, Func. Count: 73, Neg. LLF: 124.0120066637825
Optimization terminated successfully (Exit mode 0)
Current function value: 124.01200666379759
Iterations: 10
Function evaluations: 73
Gradient evaluations: 10
Iteration: 1, Func. Count: 9, Neg. LLF: 222.20531860571714
Iteration: 2, Func. Count: 19, Neg. LLF: 124.4440059735454
Iteration: 3, Func. Count: 28, Neg. LLF: 124.1117964203229
Iteration: 4, Func. Count: 36, Neg. LLF: 124.02820346565044
Iteration: 5, Func. Count: 44, Neg. LLF: 124.01935362890327
Iteration: 6, Func. Count: 52, Neg. LLF: 124.01431888538883
Iteration: 7, Func. Count: 60, Neg. LLF: 124.01243316054678
Iteration: 8, Func. Count: 68, Neg. LLF: 124.0120257646948
Iteration: 9, Func. Count: 76, Neg. LLF: 124.01200679072505
Iteration: 10, Func. Count: 83, Neg. LLF: 124.01200679565524
Optimization terminated successfully (Exit mode 0)
Current function value: 124.01200679072505
Iterations: 10
Function evaluations: 83
Gradient evaluations: 10
Iteration: 1, Func. Count: 10, Neg. LLF: 218.043856990512
Iteration: 2, Func. Count: 21, Neg. LLF: 124.5182684896353
Iteration: 3, Func. Count: 31, Neg. LLF: 124.11658369691855
Iteration: 4, Func. Count: 40, Neg. LLF: 124.05244674222851
Iteration: 5, Func. Count: 49, Neg. LLF: 124.01628144757534
Iteration: 6, Func. Count: 58, Neg. LLF: 124.01270379943139
Iteration: 7, Func. Count: 67, Neg. LLF: 124.01203638059397
Iteration: 8, Func. Count: 76, Neg. LLF: 124.01200807436621
Iteration: 9, Func. Count: 85, Neg. LLF: 124.01200675592668
Iteration: 10, Func. Count: 93, Neg. LLF: 124.0120067651252
Optimization terminated successfully (Exit mode 0)
Current function value: 124.01200675592668
Iterations: 10
Function evaluations: 93
Gradient evaluations: 10
Iteration: 1, Func. Count: 11, Neg. LLF: 215.27095178951492
Iteration: 2, Func. Count: 23, Neg. LLF: 124.52524742512375
Iteration: 3, Func. Count: 34, Neg. LLF: 124.12761090169772
Iteration: 4, Func. Count: 44, Neg. LLF: 124.06364760040528
Iteration: 5, Func. Count: 54, Neg. LLF: 124.01257488943213
Iteration: 6, Func. Count: 64, Neg. LLF: 124.01209449492936
Iteration: 7, Func. Count: 74, Neg. LLF: 124.01201381810898
Iteration: 8, Func. Count: 84, Neg. LLF: 124.01200724997868
Iteration: 9, Func. Count: 93, Neg. LLF: 124.01200726174639
Optimization terminated successfully (Exit mode 0)
Current function value: 124.01200724997868
Iterations: 9
Function evaluations: 93
Gradient evaluations: 9
Iteration: 1, Func. Count: 8, Neg. LLF: 127.57941476962922
Iteration: 2, Func. Count: 16, Neg. LLF: 155.54190010106782
Iteration: 3, Func. Count: 24, Neg. LLF: 122.0647557199257
Iteration: 4, Func. Count: 31, Neg. LLF: 126.01094799391387
Iteration: 5, Func. Count: 40, Neg. LLF: 129.17481797967048
Iteration: 6, Func. Count: 49, Neg. LLF: 120.17556270901827
Iteration: 7, Func. Count: 56, Neg. LLF: 120.16543690131121
Iteration: 8, Func. Count: 63, Neg. LLF: 120.16211186929301
Iteration: 9, Func. Count: 70, Neg. LLF: 120.15758588694536
Iteration: 10, Func. Count: 77, Neg. LLF: 120.15703256132728
Iteration: 11, Func. Count: 84, Neg. LLF: 120.15672839003709
Iteration: 12, Func. Count: 90, Neg. LLF: 120.15672839001353
Optimization terminated successfully (Exit mode 0)
Current function value: 120.15672839003709
Iterations: 12
Function evaluations: 90
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 143.97664053634048
Iteration: 2, Func. Count: 18, Neg. LLF: 122.99446956714141
Iteration: 3, Func. Count: 27, Neg. LLF: 130.28614399425558
Iteration: 4, Func. Count: 36, Neg. LLF: 120.71349539862523
Iteration: 5, Func. Count: 44, Neg. LLF: 120.54106215910188
Iteration: 6, Func. Count: 52, Neg. LLF: 121.82529165171438
Iteration: 7, Func. Count: 61, Neg. LLF: 120.18646949663484
Iteration: 8, Func. Count: 69, Neg. LLF: 120.00475187062673
Iteration: 9, Func. Count: 77, Neg. LLF: 119.98106096801722
Iteration: 10, Func. Count: 85, Neg. LLF: 119.97883616085255
Iteration: 11, Func. Count: 93, Neg. LLF: 119.97847009182705
Iteration: 12, Func. Count: 101, Neg. LLF: 119.97846330925474
Iteration: 13, Func. Count: 108, Neg. LLF: 119.97846330924426
Optimization terminated successfully (Exit mode 0)
Current function value: 119.97846330925474
Iterations: 13
Function evaluations: 108
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 121.77123648875812
Iteration: 2, Func. Count: 19, Neg. LLF: 123.3613065236167
Iteration: 3, Func. Count: 29, Neg. LLF: 130.17935976412423
Iteration: 4, Func. Count: 39, Neg. LLF: 120.72285991698074
Iteration: 5, Func. Count: 49, Neg. LLF: 120.00827575991491
Iteration: 6, Func. Count: 58, Neg. LLF: 119.98897813138917
Iteration: 7, Func. Count: 67, Neg. LLF: 119.97991143906305
Iteration: 8, Func. Count: 76, Neg. LLF: 119.97865319799703
Iteration: 9, Func. Count: 85, Neg. LLF: 119.9785158004144
Iteration: 10, Func. Count: 94, Neg. LLF: 119.97847462583222
Iteration: 11, Func. Count: 103, Neg. LLF: 119.97846384613769
Iteration: 12, Func. Count: 111, Neg. LLF: 119.9784638620773
Optimization terminated successfully (Exit mode 0)
Current function value: 119.97846384613769
Iterations: 12
Function evaluations: 111
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 121.723889723238
Iteration: 2, Func. Count: 21, Neg. LLF: 122.96659391522293
Iteration: 3, Func. Count: 32, Neg. LLF: 130.98878401614994
Iteration: 4, Func. Count: 44, Neg. LLF: 120.04880949293997
Iteration: 5, Func. Count: 55, Neg. LLF: 120.43640025042369
Iteration: 6, Func. Count: 66, Neg. LLF: 119.97869363163787
Iteration: 7, Func. Count: 76, Neg. LLF: 119.97854227161429
Iteration: 8, Func. Count: 86, Neg. LLF: 119.97847338984627
Iteration: 9, Func. Count: 96, Neg. LLF: 119.97846361051336
Iteration: 10, Func. Count: 105, Neg. LLF: 119.97846363895955
Optimization terminated successfully (Exit mode 0)
Current function value: 119.97846361051336
Iterations: 10
Function evaluations: 105
Gradient evaluations: 10
Iteration: 1, Func. Count: 12, Neg. LLF: 121.66957950098961
Iteration: 2, Func. Count: 23, Neg. LLF: 122.69406807982577
Iteration: 3, Func. Count: 35, Neg. LLF: 131.43060435619975
Iteration: 4, Func. Count: 48, Neg. LLF: 120.0540509612362
Iteration: 5, Func. Count: 60, Neg. LLF: 120.21924445310052
Iteration: 6, Func. Count: 72, Neg. LLF: 119.97877885173354
Iteration: 7, Func. Count: 83, Neg. LLF: 119.97856653560277
Iteration: 8, Func. Count: 94, Neg. LLF: 119.97847919929703
Iteration: 9, Func. Count: 105, Neg. LLF: 119.97846375302142
Iteration: 10, Func. Count: 115, Neg. LLF: 119.97846382402382
Optimization terminated successfully (Exit mode 0)
Current function value: 119.97846375302142
Iterations: 10
Function evaluations: 115
Gradient evaluations: 10
Iteration: 1, Func. Count: 9, Neg. LLF: 126.23827767294557
Iteration: 2, Func. Count: 18, Neg. LLF: 157.47349567512552
Iteration: 3, Func. Count: 27, Neg. LLF: 121.75818933935655
Iteration: 4, Func. Count: 36, Neg. LLF: 120.5305285051803
Iteration: 5, Func. Count: 45, Neg. LLF: 120.04185253742746
Iteration: 6, Func. Count: 53, Neg. LLF: 121.16412183526475
Iteration: 7, Func. Count: 62, Neg. LLF: 119.85309697323966
Iteration: 8, Func. Count: 70, Neg. LLF: 119.85331603007397
Iteration: 9, Func. Count: 79, Neg. LLF: 119.8517598845392
Iteration: 10, Func. Count: 87, Neg. LLF: 119.85175465692839
Iteration: 11, Func. Count: 95, Neg. LLF: 119.85175411687403
Optimization terminated successfully (Exit mode 0)
Current function value: 119.85175411687403
Iterations: 11
Function evaluations: 95
Gradient evaluations: 11
Iteration: 1, Func. Count: 10, Neg. LLF: 143.81988591232158
Iteration: 2, Func. Count: 20, Neg. LLF: 122.96889035869036
Iteration: 3, Func. Count: 30, Neg. LLF: 130.28323707434046
Iteration: 4, Func. Count: 40, Neg. LLF: 120.67501022109566
Iteration: 5, Func. Count: 49, Neg. LLF: 120.55132233084542
Iteration: 6, Func. Count: 59, Neg. LLF: 121.42838064117028
Iteration: 7, Func. Count: 69, Neg. LLF: 119.98048625047353
Iteration: 8, Func. Count: 78, Neg. LLF: 120.24670064411157
Iteration: 9, Func. Count: 88, Neg. LLF: 119.9005393143697
Iteration: 10, Func. Count: 97, Neg. LLF: 119.87786991480681
Iteration: 11, Func. Count: 106, Neg. LLF: 119.85724808063458
Iteration: 12, Func. Count: 115, Neg. LLF: 119.85262819626732
Iteration: 13, Func. Count: 124, Neg. LLF: 119.85192173619596
Iteration: 14, Func. Count: 133, Neg. LLF: 119.85179177185569
Iteration: 15, Func. Count: 142, Neg. LLF: 119.85175663279188
Iteration: 16, Func. Count: 151, Neg. LLF: 119.85175419162829
Iteration: 17, Func. Count: 159, Neg. LLF: 119.85175420462777
Optimization terminated successfully (Exit mode 0)
Current function value: 119.85175419162829
Iterations: 17
Function evaluations: 159
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 142.38678744389844
Iteration: 2, Func. Count: 22, Neg. LLF: 122.30006181648177
Iteration: 3, Func. Count: 32, Neg. LLF: 124.56743065305653
Iteration: 4, Func. Count: 43, Neg. LLF: 128.18533310115467
Iteration: 5, Func. Count: 54, Neg. LLF: 120.03794117007484
Iteration: 6, Func. Count: 64, Neg. LLF: 120.21062167297973
Iteration: 7, Func. Count: 75, Neg. LLF: 119.98569253857583
Iteration: 8, Func. Count: 85, Neg. LLF: 119.95635392444592
Iteration: 9, Func. Count: 95, Neg. LLF: 119.87057575229827
Iteration: 10, Func. Count: 105, Neg. LLF: 119.86012748659246
Iteration: 11, Func. Count: 115, Neg. LLF: 119.85427101860202
Iteration: 12, Func. Count: 125, Neg. LLF: 119.85277647606846
Iteration: 13, Func. Count: 135, Neg. LLF: 119.85194560103119
Iteration: 14, Func. Count: 145, Neg. LLF: 119.8517786916904
Iteration: 15, Func. Count: 155, Neg. LLF: 119.85175536645734
Iteration: 16, Func. Count: 165, Neg. LLF: 119.85175416458344
Iteration: 17, Func. Count: 174, Neg. LLF: 119.85175418385325
Optimization terminated successfully (Exit mode 0)
Current function value: 119.85175416458344
Iterations: 17
Function evaluations: 174
Gradient evaluations: 17
Iteration: 1, Func. Count: 12, Neg. LLF: 141.63790897473436
Iteration: 2, Func. Count: 24, Neg. LLF: 122.9378413527214
Iteration: 3, Func. Count: 36, Neg. LLF: 125.14426464446589
Iteration: 4, Func. Count: 48, Neg. LLF: 120.15306877558577
Iteration: 5, Func. Count: 59, Neg. LLF: 120.08529103360435
Iteration: 6, Func. Count: 70, Neg. LLF: 120.44465063954274
Iteration: 7, Func. Count: 83, Neg. LLF: 119.93863481269948
Iteration: 8, Func. Count: 94, Neg. LLF: 119.8897517044603
Iteration: 9, Func. Count: 105, Neg. LLF: 119.86608923691693
Iteration: 10, Func. Count: 116, Neg. LLF: 119.85827902265123
Iteration: 11, Func. Count: 127, Neg. LLF: 119.85217747628194
Iteration: 12, Func. Count: 138, Neg. LLF: 119.85182106925666
Iteration: 13, Func. Count: 149, Neg. LLF: 119.85176182306212
Iteration: 14, Func. Count: 160, Neg. LLF: 119.85175439964715
Iteration: 15, Func. Count: 170, Neg. LLF: 119.8517544267011
Optimization terminated successfully (Exit mode 0)
Current function value: 119.85175439964715
Iterations: 15
Function evaluations: 170
Gradient evaluations: 15
Iteration: 1, Func. Count: 13, Neg. LLF: 121.63450407422542
Iteration: 2, Func. Count: 25, Neg. LLF: 122.67164162637617
Iteration: 3, Func. Count: 38, Neg. LLF: 131.62626268756586
Iteration: 4, Func. Count: 52, Neg. LLF: 119.9918744861049
Iteration: 5, Func. Count: 65, Neg. LLF: 120.1593596610827
Iteration: 6, Func. Count: 78, Neg. LLF: 119.9218668162644
Iteration: 7, Func. Count: 90, Neg. LLF: 119.88604832890957
Iteration: 8, Func. Count: 102, Neg. LLF: 119.86989268156191
Iteration: 9, Func. Count: 114, Neg. LLF: 119.85994971483457
Iteration: 10, Func. Count: 126, Neg. LLF: 119.85444235196819
Iteration: 11, Func. Count: 138, Neg. LLF: 119.8520441122002
Iteration: 12, Func. Count: 150, Neg. LLF: 119.85177879044403
Iteration: 13, Func. Count: 162, Neg. LLF: 119.85175678453132
Iteration: 14, Func. Count: 174, Neg. LLF: 119.85175434124731
Iteration: 15, Func. Count: 185, Neg. LLF: 119.85175442064693
Optimization terminated successfully (Exit mode 0)
Current function value: 119.85175434124731
Iterations: 15
Function evaluations: 185
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 126.33494225155863
Iteration: 2, Func. Count: 20, Neg. LLF: 152.69972851398487
Iteration: 3, Func. Count: 30, Neg. LLF: 121.40024598595608
Iteration: 4, Func. Count: 39, Neg. LLF: 123.39121848579735
Iteration: 5, Func. Count: 50, Neg. LLF: 128.74424247303946
Iteration: 6, Func. Count: 61, Neg. LLF: 120.10043485867648
Iteration: 7, Func. Count: 70, Neg. LLF: 119.99870371437459
Iteration: 8, Func. Count: 79, Neg. LLF: 119.87197194023022
Iteration: 9, Func. Count: 88, Neg. LLF: 119.85717373790584
Iteration: 10, Func. Count: 97, Neg. LLF: 119.85210060053586
Iteration: 11, Func. Count: 106, Neg. LLF: 119.85188304599133
Iteration: 12, Func. Count: 115, Neg. LLF: 119.85180937627784
Iteration: 13, Func. Count: 124, Neg. LLF: 119.85175895019724
Iteration: 14, Func. Count: 133, Neg. LLF: 119.85175443730982
Iteration: 15, Func. Count: 141, Neg. LLF: 119.85175430561658
Optimization terminated successfully (Exit mode 0)
Current function value: 119.85175443730982
Iterations: 15
Function evaluations: 141
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 143.9547554211273
Iteration: 2, Func. Count: 22, Neg. LLF: 122.97050473325709
Iteration: 3, Func. Count: 33, Neg. LLF: 130.41345010156786
Iteration: 4, Func. Count: 44, Neg. LLF: 120.65963136279987
Iteration: 5, Func. Count: 54, Neg. LLF: 120.5572025831063
Iteration: 6, Func. Count: 65, Neg. LLF: 121.5411692524163
Iteration: 7, Func. Count: 76, Neg. LLF: 119.9794925373573
Iteration: 8, Func. Count: 86, Neg. LLF: 119.94298891635084
Iteration: 9, Func. Count: 96, Neg. LLF: 119.88882213921467
Iteration: 10, Func. Count: 106, Neg. LLF: 119.87480636703249
Iteration: 11, Func. Count: 116, Neg. LLF: 119.85656144751152
Iteration: 12, Func. Count: 126, Neg. LLF: 119.8522401552764
Iteration: 13, Func. Count: 136, Neg. LLF: 119.85176567936895
Iteration: 14, Func. Count: 146, Neg. LLF: 119.85175458224984
Iteration: 15, Func. Count: 155, Neg. LLF: 119.85175459525938
Optimization terminated successfully (Exit mode 0)
Current function value: 119.85175458224984
Iterations: 15
Function evaluations: 155
Gradient evaluations: 15
Iteration: 1, Func. Count: 12, Neg. LLF: 142.47249696185597
Iteration: 2, Func. Count: 24, Neg. LLF: 122.30316159774776
Iteration: 3, Func. Count: 35, Neg. LLF: 124.59827976472795
Iteration: 4, Func. Count: 47, Neg. LLF: 128.2897886793601
Iteration: 5, Func. Count: 59, Neg. LLF: 120.03819528026064
Iteration: 6, Func. Count: 70, Neg. LLF: 120.20734403409324
Iteration: 7, Func. Count: 82, Neg. LLF: 119.98614627824576
Iteration: 8, Func. Count: 93, Neg. LLF: 119.95689708307991
Iteration: 9, Func. Count: 104, Neg. LLF: 119.8708429714374
Iteration: 10, Func. Count: 115, Neg. LLF: 119.86046084960263
Iteration: 11, Func. Count: 126, Neg. LLF: 119.85439949491965
Iteration: 12, Func. Count: 137, Neg. LLF: 119.85281799026829
Iteration: 13, Func. Count: 148, Neg. LLF: 119.85195160532793
Iteration: 14, Func. Count: 159, Neg. LLF: 119.85177973220553
Iteration: 15, Func. Count: 170, Neg. LLF: 119.85175568213738
Iteration: 16, Func. Count: 181, Neg. LLF: 119.85175427487941
Iteration: 17, Func. Count: 191, Neg. LLF: 119.85175429416252
Optimization terminated successfully (Exit mode 0)
Current function value: 119.85175427487941
Iterations: 17
Function evaluations: 191
Gradient evaluations: 17
Iteration: 1, Func. Count: 13, Neg. LLF: 141.84864687962147
Iteration: 2, Func. Count: 26, Neg. LLF: 122.92145067989017
Iteration: 3, Func. Count: 39, Neg. LLF: 125.317060084475
Iteration: 4, Func. Count: 52, Neg. LLF: 120.16894757359101
Iteration: 5, Func. Count: 64, Neg. LLF: 120.11490588570508
Iteration: 6, Func. Count: 77, Neg. LLF: 120.55323746867023
Iteration: 7, Func. Count: 91, Neg. LLF: 119.95060435671778
Iteration: 8, Func. Count: 103, Neg. LLF: 119.89339567871048
Iteration: 9, Func. Count: 115, Neg. LLF: 119.86198462310601
Iteration: 10, Func. Count: 127, Neg. LLF: 119.85272232335588
Iteration: 11, Func. Count: 139, Neg. LLF: 119.85191225126076
Iteration: 12, Func. Count: 151, Neg. LLF: 119.85178045807619
Iteration: 13, Func. Count: 163, Neg. LLF: 119.85175620186787
Iteration: 14, Func. Count: 175, Neg. LLF: 119.85175419215649
Iteration: 15, Func. Count: 186, Neg. LLF: 119.85175421918996
Optimization terminated successfully (Exit mode 0)
Current function value: 119.85175419215649
Iterations: 15
Function evaluations: 186
Gradient evaluations: 15
Iteration: 1, Func. Count: 14, Neg. LLF: 121.67087556196077
Iteration: 2, Func. Count: 27, Neg. LLF: 122.5853167254014
Iteration: 3, Func. Count: 41, Neg. LLF: 131.84462733519754
Iteration: 4, Func. Count: 56, Neg. LLF: 119.99444945928134
Iteration: 5, Func. Count: 70, Neg. LLF: 120.15405855682421
Iteration: 6, Func. Count: 84, Neg. LLF: 119.92416386675905
Iteration: 7, Func. Count: 97, Neg. LLF: 119.88925742441755
Iteration: 8, Func. Count: 110, Neg. LLF: 119.87177119579262
Iteration: 9, Func. Count: 123, Neg. LLF: 119.86051245294952
Iteration: 10, Func. Count: 136, Neg. LLF: 119.8550408120996
Iteration: 11, Func. Count: 149, Neg. LLF: 119.85220488800171
Iteration: 12, Func. Count: 162, Neg. LLF: 119.85179914270655
Iteration: 13, Func. Count: 175, Neg. LLF: 119.85175835114889
Iteration: 14, Func. Count: 188, Neg. LLF: 119.85175426794366
Iteration: 15, Func. Count: 200, Neg. LLF: 119.85175434735231
Optimization terminated successfully (Exit mode 0)
Current function value: 119.85175426794366
Iterations: 15
Function evaluations: 200
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 127.51418768584419
Iteration: 2, Func. Count: 22, Neg. LLF: 158.01507676936717
Iteration: 3, Func. Count: 33, Neg. LLF: 121.6509756214414
Iteration: 4, Func. Count: 44, Neg. LLF: 120.9523541996245
Iteration: 5, Func. Count: 55, Neg. LLF: 120.3247892064783
Iteration: 6, Func. Count: 65, Neg. LLF: 119.9546735344448
Iteration: 7, Func. Count: 75, Neg. LLF: 119.85697650970012
Iteration: 8, Func. Count: 85, Neg. LLF: 119.85539299166524
Iteration: 9, Func. Count: 96, Neg. LLF: 119.85188006456887
Iteration: 10, Func. Count: 106, Neg. LLF: 119.85176885473476
Iteration: 11, Func. Count: 116, Neg. LLF: 119.85175451611248
Iteration: 12, Func. Count: 125, Neg. LLF: 119.85175473234484
Optimization terminated successfully (Exit mode 0)
Current function value: 119.85175451611248
Iterations: 12
Function evaluations: 125
Gradient evaluations: 12
Iteration: 1, Func. Count: 12, Neg. LLF: 144.01475467676647
Iteration: 2, Func. Count: 24, Neg. LLF: 122.95267443920122
Iteration: 3, Func. Count: 36, Neg. LLF: 130.45683926620057
Iteration: 4, Func. Count: 48, Neg. LLF: 120.65250841426756
Iteration: 5, Func. Count: 59, Neg. LLF: 120.55596280914348
Iteration: 6, Func. Count: 71, Neg. LLF: 121.53069251474815
Iteration: 7, Func. Count: 83, Neg. LLF: 119.97874267094997
Iteration: 8, Func. Count: 94, Neg. LLF: 119.93857634221327
Iteration: 9, Func. Count: 105, Neg. LLF: 119.88810657572574
Iteration: 10, Func. Count: 116, Neg. LLF: 119.87411135148757
Iteration: 11, Func. Count: 127, Neg. LLF: 119.85654451536371
Iteration: 12, Func. Count: 138, Neg. LLF: 119.85225361927495
Iteration: 13, Func. Count: 149, Neg. LLF: 119.8517666339116
Iteration: 14, Func. Count: 160, Neg. LLF: 119.85175464007315
Iteration: 15, Func. Count: 170, Neg. LLF: 119.85175465308659
Optimization terminated successfully (Exit mode 0)
Current function value: 119.85175464007315
Iterations: 15
Function evaluations: 170
Gradient evaluations: 15
Iteration: 1, Func. Count: 13, Neg. LLF: 142.61595068710207
Iteration: 2, Func. Count: 26, Neg. LLF: 122.2947267968975
Iteration: 3, Func. Count: 38, Neg. LLF: 124.62380590319532
Iteration: 4, Func. Count: 51, Neg. LLF: 128.3067268455664
Iteration: 5, Func. Count: 64, Neg. LLF: 120.03887908242625
Iteration: 6, Func. Count: 76, Neg. LLF: 120.22406355391014
Iteration: 7, Func. Count: 89, Neg. LLF: 119.9860733114964
Iteration: 8, Func. Count: 101, Neg. LLF: 119.95793821461369
Iteration: 9, Func. Count: 113, Neg. LLF: 119.8707920215167
Iteration: 10, Func. Count: 125, Neg. LLF: 119.86015463060656
Iteration: 11, Func. Count: 137, Neg. LLF: 119.85425714742877
Iteration: 12, Func. Count: 149, Neg. LLF: 119.85279663097828
Iteration: 13, Func. Count: 161, Neg. LLF: 119.85196052766165
Iteration: 14, Func. Count: 173, Neg. LLF: 119.85177954015988
Iteration: 15, Func. Count: 185, Neg. LLF: 119.85175546429576
Iteration: 16, Func. Count: 197, Neg. LLF: 119.85175418966044
Iteration: 17, Func. Count: 208, Neg. LLF: 119.85175420893383
Optimization terminated successfully (Exit mode 0)
Current function value: 119.85175418966044
Iterations: 17
Function evaluations: 208
Gradient evaluations: 17
Iteration: 1, Func. Count: 14, Neg. LLF: 141.90674983382237
Iteration: 2, Func. Count: 28, Neg. LLF: 122.87847297760933
Iteration: 3, Func. Count: 42, Neg. LLF: 125.39597448765234
Iteration: 4, Func. Count: 56, Neg. LLF: 120.15922052497346
Iteration: 5, Func. Count: 69, Neg. LLF: 120.10620515571
Iteration: 6, Func. Count: 83, Neg. LLF: 120.55096506555095
Iteration: 7, Func. Count: 98, Neg. LLF: 119.94942464228362
Iteration: 8, Func. Count: 111, Neg. LLF: 119.89313036907781
Iteration: 9, Func. Count: 124, Neg. LLF: 119.86264739719309
Iteration: 10, Func. Count: 137, Neg. LLF: 119.85284717089182
Iteration: 11, Func. Count: 150, Neg. LLF: 119.85193628907226
Iteration: 12, Func. Count: 163, Neg. LLF: 119.85178273152293
Iteration: 13, Func. Count: 176, Neg. LLF: 119.85175649725424
Iteration: 14, Func. Count: 189, Neg. LLF: 119.85175421838758
Iteration: 15, Func. Count: 201, Neg. LLF: 119.8517542454286
Optimization terminated successfully (Exit mode 0)
Current function value: 119.85175421838758
Iterations: 15
Function evaluations: 201
Gradient evaluations: 15
Iteration: 1, Func. Count: 15, Neg. LLF: 121.70616473251154
Iteration: 2, Func. Count: 29, Neg. LLF: 122.5118963644513
Iteration: 3, Func. Count: 44, Neg. LLF: 131.8689483622629
Iteration: 4, Func. Count: 60, Neg. LLF: 119.99765097546236
Iteration: 5, Func. Count: 75, Neg. LLF: 120.15229608229124
Iteration: 6, Func. Count: 90, Neg. LLF: 119.92596274713885
Iteration: 7, Func. Count: 104, Neg. LLF: 119.89544762675874
Iteration: 8, Func. Count: 118, Neg. LLF: 119.87177802581606
Iteration: 9, Func. Count: 132, Neg. LLF: 119.86021449931113
Iteration: 10, Func. Count: 146, Neg. LLF: 119.85508032478684
Iteration: 11, Func. Count: 160, Neg. LLF: 119.85232648846875
Iteration: 12, Func. Count: 174, Neg. LLF: 119.85180846659085
Iteration: 13, Func. Count: 188, Neg. LLF: 119.85175838528288
Iteration: 14, Func. Count: 202, Neg. LLF: 119.85175421154003
Iteration: 15, Func. Count: 215, Neg. LLF: 119.85175429096563
Optimization terminated successfully (Exit mode 0)
Current function value: 119.85175421154003
Iterations: 15
Function evaluations: 215
Gradient evaluations: 15
Iteration: 1, Func. Count: 8, Neg. LLF: 128.31872372673422
Iteration: 2, Func. Count: 16, Neg. LLF: 167.63757867974832
Iteration: 3, Func. Count: 24, Neg. LLF: 123.59799609426601
Iteration: 4, Func. Count: 32, Neg. LLF: 122.70744952054585
Iteration: 5, Func. Count: 39, Neg. LLF: 122.70668246429932
Iteration: 6, Func. Count: 46, Neg. LLF: 122.7061799202679
Iteration: 7, Func. Count: 53, Neg. LLF: 122.70598171373207
Iteration: 8, Func. Count: 60, Neg. LLF: 122.70587628823164
Iteration: 9, Func. Count: 67, Neg. LLF: 122.70584460839562
Iteration: 10, Func. Count: 74, Neg. LLF: 122.70582331372556
Iteration: 11, Func. Count: 81, Neg. LLF: 122.70581338084749
Iteration: 12, Func. Count: 88, Neg. LLF: 122.70581139691386
Iteration: 13, Func. Count: 94, Neg. LLF: 122.70581158297158
Optimization terminated successfully (Exit mode 0)
Current function value: 122.70581139691386
Iterations: 13
Function evaluations: 94
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 228.6671690024389
Iteration: 2, Func. Count: 19, Neg. LLF: 124.30117414128274
Iteration: 3, Func. Count: 28, Neg. LLF: 124.04773385291303
Iteration: 4, Func. Count: 36, Neg. LLF: 124.02988079336262
Iteration: 5, Func. Count: 44, Neg. LLF: 124.01625060023542
Iteration: 6, Func. Count: 52, Neg. LLF: 124.01252881486906
Iteration: 7, Func. Count: 60, Neg. LLF: 124.01209077639658
Iteration: 8, Func. Count: 68, Neg. LLF: 124.01201091609504
Iteration: 9, Func. Count: 76, Neg. LLF: 124.01200668674497
Iteration: 10, Func. Count: 83, Neg. LLF: 124.01200668671801
Optimization terminated successfully (Exit mode 0)
Current function value: 124.01200668674497
Iterations: 10
Function evaluations: 83
Gradient evaluations: 10
Iteration: 1, Func. Count: 10, Neg. LLF: 221.69288829465813
Iteration: 2, Func. Count: 21, Neg. LLF: 124.44806480628151
Iteration: 3, Func. Count: 31, Neg. LLF: 124.11529134194976
Iteration: 4, Func. Count: 40, Neg. LLF: 124.03209783238772
Iteration: 5, Func. Count: 49, Neg. LLF: 124.02382128727822
Iteration: 6, Func. Count: 58, Neg. LLF: 124.01580005103905
Iteration: 7, Func. Count: 67, Neg. LLF: 124.01270242618202
Iteration: 8, Func. Count: 76, Neg. LLF: 124.01206975831488
Iteration: 9, Func. Count: 85, Neg. LLF: 124.01200957608773
Iteration: 10, Func. Count: 94, Neg. LLF: 124.01200710957302
Iteration: 11, Func. Count: 102, Neg. LLF: 124.01200711457966
Optimization terminated successfully (Exit mode 0)
Current function value: 124.01200710957302
Iterations: 11
Function evaluations: 102
Gradient evaluations: 11
Iteration: 1, Func. Count: 11, Neg. LLF: 217.2361844529089
Iteration: 2, Func. Count: 23, Neg. LLF: 124.50784428265212
Iteration: 3, Func. Count: 34, Neg. LLF: 124.11874044524717
Iteration: 4, Func. Count: 44, Neg. LLF: 124.0596091684761
Iteration: 5, Func. Count: 54, Neg. LLF: 124.01278159494332
Iteration: 6, Func. Count: 64, Neg. LLF: 124.01259424240823
Iteration: 7, Func. Count: 74, Neg. LLF: 124.01201247158868
Iteration: 8, Func. Count: 84, Neg. LLF: 124.01200726948433
Iteration: 9, Func. Count: 93, Neg. LLF: 124.01200727872408
Optimization terminated successfully (Exit mode 0)
Current function value: 124.01200726948433
Iterations: 9
Function evaluations: 93
Gradient evaluations: 9
Iteration: 1, Func. Count: 12, Neg. LLF: 214.36933612029347
Iteration: 2, Func. Count: 25, Neg. LLF: 124.49803907087966
Iteration: 3, Func. Count: 37, Neg. LLF: 124.12087927426002
Iteration: 4, Func. Count: 48, Neg. LLF: 124.06840503235854
Iteration: 5, Func. Count: 59, Neg. LLF: 124.01238578392523
Iteration: 6, Func. Count: 70, Neg. LLF: 124.01214330987652
Iteration: 7, Func. Count: 81, Neg. LLF: 124.01201493203426
Iteration: 8, Func. Count: 92, Neg. LLF: 124.01200949053276
Iteration: 9, Func. Count: 103, Neg. LLF: 124.01200676008254
Iteration: 10, Func. Count: 113, Neg. LLF: 124.01200677209135
Optimization terminated successfully (Exit mode 0)
Current function value: 124.01200676008254
Iterations: 10
Function evaluations: 113
Gradient evaluations: 10
Iteration: 1, Func. Count: 9, Neg. LLF: 129.18013455070306
Iteration: 2, Func. Count: 18, Neg. LLF: 159.20525517105725
Iteration: 3, Func. Count: 27, Neg. LLF: 122.31595769695554
Iteration: 4, Func. Count: 35, Neg. LLF: 126.4309559104363
Iteration: 5, Func. Count: 45, Neg. LLF: 129.89199613734118
Iteration: 6, Func. Count: 55, Neg. LLF: 120.18727181834062
Iteration: 7, Func. Count: 63, Neg. LLF: 120.1749208806058
Iteration: 8, Func. Count: 71, Neg. LLF: 120.16467489240885
Iteration: 9, Func. Count: 79, Neg. LLF: 120.16094471595673
Iteration: 10, Func. Count: 87, Neg. LLF: 120.15718367221378
Iteration: 11, Func. Count: 95, Neg. LLF: 120.15675403993205
Iteration: 12, Func. Count: 103, Neg. LLF: 120.15672837122283
Iteration: 13, Func. Count: 110, Neg. LLF: 120.15672837123684
Optimization terminated successfully (Exit mode 0)
Current function value: 120.15672837122283
Iterations: 13
Function evaluations: 110
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 143.70720044217384
Iteration: 2, Func. Count: 20, Neg. LLF: 122.91903574054759
Iteration: 3, Func. Count: 30, Neg. LLF: 130.2841154264945
Iteration: 4, Func. Count: 40, Neg. LLF: 120.7074987806794
Iteration: 5, Func. Count: 49, Neg. LLF: 120.53643530514056
Iteration: 6, Func. Count: 58, Neg. LLF: 121.88750934369946
Iteration: 7, Func. Count: 68, Neg. LLF: 120.19422753599476
Iteration: 8, Func. Count: 77, Neg. LLF: 120.00604284483734
Iteration: 9, Func. Count: 86, Neg. LLF: 119.9810388435697
Iteration: 10, Func. Count: 95, Neg. LLF: 119.97885540109759
Iteration: 11, Func. Count: 104, Neg. LLF: 119.97847138496952
Iteration: 12, Func. Count: 113, Neg. LLF: 119.9784633115137
Iteration: 13, Func. Count: 121, Neg. LLF: 119.97846331149938
Optimization terminated successfully (Exit mode 0)
Current function value: 119.9784633115137
Iterations: 13
Function evaluations: 121
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 142.4146321208687
Iteration: 2, Func. Count: 22, Neg. LLF: 122.25857091421595
Iteration: 3, Func. Count: 32, Neg. LLF: 124.62089627667592
Iteration: 4, Func. Count: 43, Neg. LLF: 128.10630770140153
Iteration: 5, Func. Count: 54, Neg. LLF: 120.02163449913022
Iteration: 6, Func. Count: 64, Neg. LLF: 120.44611076385809
Iteration: 7, Func. Count: 76, Neg. LLF: 119.98603216938774
Iteration: 8, Func. Count: 86, Neg. LLF: 119.98097449772837
Iteration: 9, Func. Count: 96, Neg. LLF: 119.9787303108397
Iteration: 10, Func. Count: 106, Neg. LLF: 119.97849438834498
Iteration: 11, Func. Count: 116, Neg. LLF: 119.97846397593709
Iteration: 12, Func. Count: 126, Neg. LLF: 119.97846331505576
Optimization terminated successfully (Exit mode 0)
Current function value: 119.97846331505576
Iterations: 12
Function evaluations: 126
Gradient evaluations: 12
Iteration: 1, Func. Count: 12, Neg. LLF: 141.707557203635
Iteration: 2, Func. Count: 24, Neg. LLF: 122.82775292975306
Iteration: 3, Func. Count: 36, Neg. LLF: 125.5846097733191
Iteration: 4, Func. Count: 48, Neg. LLF: 120.15442590586886
Iteration: 5, Func. Count: 59, Neg. LLF: 120.09987543472643
Iteration: 6, Func. Count: 71, Neg. LLF: 120.52880176779333
Iteration: 7, Func. Count: 84, Neg. LLF: 119.98021473841777
Iteration: 8, Func. Count: 95, Neg. LLF: 119.97859937676239
Iteration: 9, Func. Count: 106, Neg. LLF: 119.97848002197937
Iteration: 10, Func. Count: 117, Neg. LLF: 119.97846341033232
Iteration: 11, Func. Count: 127, Neg. LLF: 119.97846343885296
Optimization terminated successfully (Exit mode 0)
Current function value: 119.97846341033232
Iterations: 11
Function evaluations: 127
Gradient evaluations: 11
Iteration: 1, Func. Count: 13, Neg. LLF: 121.67595714010882
Iteration: 2, Func. Count: 25, Neg. LLF: 122.68132062516044
Iteration: 3, Func. Count: 38, Neg. LLF: 130.9796382972279
Iteration: 4, Func. Count: 52, Neg. LLF: 120.0518179026347
Iteration: 5, Func. Count: 65, Neg. LLF: 120.20289459600257
Iteration: 6, Func. Count: 78, Neg. LLF: 119.97878273807122
Iteration: 7, Func. Count: 90, Neg. LLF: 119.97856787843646
Iteration: 8, Func. Count: 102, Neg. LLF: 119.97847706476256
Iteration: 9, Func. Count: 114, Neg. LLF: 119.97846370291812
Iteration: 10, Func. Count: 125, Neg. LLF: 119.97846377391966
Optimization terminated successfully (Exit mode 0)
Current function value: 119.97846370291812
Iterations: 10
Function evaluations: 125
Gradient evaluations: 10
Iteration: 1, Func. Count: 10, Neg. LLF: 127.90326951325653
Iteration: 2, Func. Count: 20, Neg. LLF: 161.7513890398943
Iteration: 3, Func. Count: 30, Neg. LLF: 122.03731311421224
Iteration: 4, Func. Count: 40, Neg. LLF: 121.23333951272124
Iteration: 5, Func. Count: 50, Neg. LLF: 120.65554124287411
Iteration: 6, Func. Count: 60, Neg. LLF: 119.93651669245641
Iteration: 7, Func. Count: 69, Neg. LLF: 119.85520410581951
Iteration: 8, Func. Count: 78, Neg. LLF: 119.85299508623675
Iteration: 9, Func. Count: 87, Neg. LLF: 119.8525685866397
Iteration: 10, Func. Count: 96, Neg. LLF: 119.85175728853997
Iteration: 11, Func. Count: 105, Neg. LLF: 119.8517541240695
Iteration: 12, Func. Count: 113, Neg. LLF: 119.85175405017324
Optimization terminated successfully (Exit mode 0)
Current function value: 119.8517541240695
Iterations: 12
Function evaluations: 113
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 143.54063355729087
Iteration: 2, Func. Count: 22, Neg. LLF: 122.89161611979505
Iteration: 3, Func. Count: 33, Neg. LLF: 130.27317174385382
Iteration: 4, Func. Count: 44, Neg. LLF: 120.66792463365626
Iteration: 5, Func. Count: 54, Neg. LLF: 120.54708967434833
Iteration: 6, Func. Count: 65, Neg. LLF: 121.40430652204141
Iteration: 7, Func. Count: 76, Neg. LLF: 119.978011259859
Iteration: 8, Func. Count: 86, Neg. LLF: 120.21766602866433
Iteration: 9, Func. Count: 97, Neg. LLF: 119.89757466791542
Iteration: 10, Func. Count: 107, Neg. LLF: 119.87610565291902
Iteration: 11, Func. Count: 117, Neg. LLF: 119.855115621045
Iteration: 12, Func. Count: 127, Neg. LLF: 119.85208380789919
Iteration: 13, Func. Count: 137, Neg. LLF: 119.85180372991968
Iteration: 14, Func. Count: 147, Neg. LLF: 119.85176657239379
Iteration: 15, Func. Count: 157, Neg. LLF: 119.8517548457507
Iteration: 16, Func. Count: 167, Neg. LLF: 119.85175413454225
Optimization terminated successfully (Exit mode 0)
Current function value: 119.85175413454225
Iterations: 16
Function evaluations: 167
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 142.25350051589143
Iteration: 2, Func. Count: 24, Neg. LLF: 122.24930750598088
Iteration: 3, Func. Count: 35, Neg. LLF: 124.56994275181482
Iteration: 4, Func. Count: 47, Neg. LLF: 128.06679117234302
Iteration: 5, Func. Count: 59, Neg. LLF: 120.0372649743658
Iteration: 6, Func. Count: 70, Neg. LLF: 120.23188438707822
Iteration: 7, Func. Count: 82, Neg. LLF: 119.98551642343917
Iteration: 8, Func. Count: 93, Neg. LLF: 119.95730762846581
Iteration: 9, Func. Count: 104, Neg. LLF: 119.87094033582031
Iteration: 10, Func. Count: 115, Neg. LLF: 119.85991446214271
Iteration: 11, Func. Count: 126, Neg. LLF: 119.85419326524995
Iteration: 12, Func. Count: 137, Neg. LLF: 119.8527643192848
Iteration: 13, Func. Count: 148, Neg. LLF: 119.8519510690253
Iteration: 14, Func. Count: 159, Neg. LLF: 119.85177942968521
Iteration: 15, Func. Count: 170, Neg. LLF: 119.85175533696061
Iteration: 16, Func. Count: 181, Neg. LLF: 119.85175413862146
Iteration: 17, Func. Count: 191, Neg. LLF: 119.85175415787178
Optimization terminated successfully (Exit mode 0)
Current function value: 119.85175413862146
Iterations: 17
Function evaluations: 191
Gradient evaluations: 17
Iteration: 1, Func. Count: 13, Neg. LLF: 141.44451682781957
Iteration: 2, Func. Count: 26, Neg. LLF: 122.81511498245948
Iteration: 3, Func. Count: 39, Neg. LLF: 125.26254667456729
Iteration: 4, Func. Count: 52, Neg. LLF: 120.1454367299372
Iteration: 5, Func. Count: 64, Neg. LLF: 120.08253139866964
Iteration: 6, Func. Count: 76, Neg. LLF: 120.44617782959406
Iteration: 7, Func. Count: 90, Neg. LLF: 119.94141488881688
Iteration: 8, Func. Count: 102, Neg. LLF: 119.89099801774266
Iteration: 9, Func. Count: 114, Neg. LLF: 119.86811134825476
Iteration: 10, Func. Count: 126, Neg. LLF: 119.85906356759244
Iteration: 11, Func. Count: 138, Neg. LLF: 119.85217484094058
Iteration: 12, Func. Count: 150, Neg. LLF: 119.85180424559117
Iteration: 13, Func. Count: 162, Neg. LLF: 119.85176005914492
Iteration: 14, Func. Count: 174, Neg. LLF: 119.85175432602804
Iteration: 15, Func. Count: 185, Neg. LLF: 119.85175435307222
Optimization terminated successfully (Exit mode 0)
Current function value: 119.85175432602804
Iterations: 15
Function evaluations: 185
Gradient evaluations: 15
Iteration: 1, Func. Count: 14, Neg. LLF: 121.640129030401
Iteration: 2, Func. Count: 27, Neg. LLF: 122.65459653253178
Iteration: 3, Func. Count: 41, Neg. LLF: 131.21515048982758
Iteration: 4, Func. Count: 56, Neg. LLF: 119.99401046072666
Iteration: 5, Func. Count: 70, Neg. LLF: 120.16824421895078
Iteration: 6, Func. Count: 84, Neg. LLF: 119.92147580600435
Iteration: 7, Func. Count: 97, Neg. LLF: 119.88449700745035
Iteration: 8, Func. Count: 110, Neg. LLF: 119.86924042061861
Iteration: 9, Func. Count: 123, Neg. LLF: 119.85973487201453
Iteration: 10, Func. Count: 136, Neg. LLF: 119.85419030676515
Iteration: 11, Func. Count: 149, Neg. LLF: 119.85198668916198
Iteration: 12, Func. Count: 162, Neg. LLF: 119.85177309860397
Iteration: 13, Func. Count: 175, Neg. LLF: 119.85175612638722
Iteration: 14, Func. Count: 188, Neg. LLF: 119.85175433204249
Iteration: 15, Func. Count: 200, Neg. LLF: 119.85175441144233
Optimization terminated successfully (Exit mode 0)
Current function value: 119.85175433204249
Iterations: 15
Function evaluations: 200
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 127.65879858145674
Iteration: 2, Func. Count: 22, Neg. LLF: 156.15058039945333
Iteration: 3, Func. Count: 33, Neg. LLF: 121.49278324360102
Iteration: 4, Func. Count: 43, Neg. LLF: 123.91311403130067
Iteration: 5, Func. Count: 55, Neg. LLF: 128.9671661533688
Iteration: 6, Func. Count: 67, Neg. LLF: 120.16236828843985
Iteration: 7, Func. Count: 77, Neg. LLF: 119.96141783663579
Iteration: 8, Func. Count: 87, Neg. LLF: 119.87982332961325
Iteration: 9, Func. Count: 97, Neg. LLF: 119.85911623329051
Iteration: 10, Func. Count: 107, Neg. LLF: 119.85225549442426
Iteration: 11, Func. Count: 117, Neg. LLF: 119.8519242768034
Iteration: 12, Func. Count: 127, Neg. LLF: 119.85183254549747
Iteration: 13, Func. Count: 137, Neg. LLF: 119.85175810167578
Iteration: 14, Func. Count: 147, Neg. LLF: 119.85175431745505
Iteration: 15, Func. Count: 156, Neg. LLF: 119.85175418576281
Optimization terminated successfully (Exit mode 0)
Current function value: 119.85175431745505
Iterations: 15
Function evaluations: 156
Gradient evaluations: 15
Iteration: 1, Func. Count: 12, Neg. LLF: 143.67171298375115
Iteration: 2, Func. Count: 24, Neg. LLF: 122.89394262581799
Iteration: 3, Func. Count: 36, Neg. LLF: 130.40106037749376
Iteration: 4, Func. Count: 48, Neg. LLF: 120.65255787613906
Iteration: 5, Func. Count: 59, Neg. LLF: 120.55296670640062
Iteration: 6, Func. Count: 71, Neg. LLF: 121.53112885228558
Iteration: 7, Func. Count: 83, Neg. LLF: 119.9781689839561
Iteration: 8, Func. Count: 94, Neg. LLF: 119.93595510362958
Iteration: 9, Func. Count: 105, Neg. LLF: 119.88795179692707
Iteration: 10, Func. Count: 116, Neg. LLF: 119.87405421429841
Iteration: 11, Func. Count: 127, Neg. LLF: 119.85644934276282
Iteration: 12, Func. Count: 138, Neg. LLF: 119.85223430768512
Iteration: 13, Func. Count: 149, Neg. LLF: 119.85176555293376
Iteration: 14, Func. Count: 160, Neg. LLF: 119.85175459392778
Iteration: 15, Func. Count: 170, Neg. LLF: 119.85175460693875
Optimization terminated successfully (Exit mode 0)
Current function value: 119.85175459392778
Iterations: 15
Function evaluations: 170
Gradient evaluations: 15
Iteration: 1, Func. Count: 13, Neg. LLF: 142.33692543596794
Iteration: 2, Func. Count: 26, Neg. LLF: 122.25010623553982
Iteration: 3, Func. Count: 38, Neg. LLF: 124.60159147001366
Iteration: 4, Func. Count: 51, Neg. LLF: 128.16369823380342
Iteration: 5, Func. Count: 64, Neg. LLF: 120.0375086211805
Iteration: 6, Func. Count: 76, Neg. LLF: 120.22822430101431
Iteration: 7, Func. Count: 89, Neg. LLF: 119.98599516369838
Iteration: 8, Func. Count: 101, Neg. LLF: 119.95791140218137
Iteration: 9, Func. Count: 113, Neg. LLF: 119.87120995720295
Iteration: 10, Func. Count: 125, Neg. LLF: 119.86026136342906
Iteration: 11, Func. Count: 137, Neg. LLF: 119.85432880852225
Iteration: 12, Func. Count: 149, Neg. LLF: 119.85281131750199
Iteration: 13, Func. Count: 161, Neg. LLF: 119.85195713842023
Iteration: 14, Func. Count: 173, Neg. LLF: 119.85177987152005
Iteration: 15, Func. Count: 185, Neg. LLF: 119.8517554177868
Iteration: 16, Func. Count: 197, Neg. LLF: 119.85175415800424
Iteration: 17, Func. Count: 208, Neg. LLF: 119.85175417727166
Optimization terminated successfully (Exit mode 0)
Current function value: 119.85175415800424
Iterations: 17
Function evaluations: 208
Gradient evaluations: 17
Iteration: 1, Func. Count: 14, Neg. LLF: 141.65238817243178
Iteration: 2, Func. Count: 28, Neg. LLF: 122.82249008397022
Iteration: 3, Func. Count: 42, Neg. LLF: 125.37456963541611
Iteration: 4, Func. Count: 56, Neg. LLF: 120.1558062680077
Iteration: 5, Func. Count: 69, Neg. LLF: 120.10298046338228
Iteration: 6, Func. Count: 83, Neg. LLF: 120.54725166402366
Iteration: 7, Func. Count: 98, Neg. LLF: 119.94956290144147
Iteration: 8, Func. Count: 111, Neg. LLF: 119.89353799920104
Iteration: 9, Func. Count: 124, Neg. LLF: 119.86287027025595
Iteration: 10, Func. Count: 137, Neg. LLF: 119.85286758093038
Iteration: 11, Func. Count: 150, Neg. LLF: 119.8519354689651
Iteration: 12, Func. Count: 163, Neg. LLF: 119.85178252776096
Iteration: 13, Func. Count: 176, Neg. LLF: 119.85175653318768
Iteration: 14, Func. Count: 189, Neg. LLF: 119.851754226281
Iteration: 15, Func. Count: 201, Neg. LLF: 119.85175425332356
Optimization terminated successfully (Exit mode 0)
Current function value: 119.851754226281
Iterations: 15
Function evaluations: 201
Gradient evaluations: 15
Iteration: 1, Func. Count: 15, Neg. LLF: 141.26508301233375
Iteration: 2, Func. Count: 30, Neg. LLF: 122.29499878689968
Iteration: 3, Func. Count: 44, Neg. LLF: 124.29911942596277
Iteration: 4, Func. Count: 59, Neg. LLF: 120.60668988234605
Iteration: 5, Func. Count: 73, Neg. LLF: 120.46917473390666
Iteration: 6, Func. Count: 88, Neg. LLF: 120.02994545600862
Iteration: 7, Func. Count: 102, Neg. LLF: 120.00544912109737
Iteration: 8, Func. Count: 117, Neg. LLF: 120.14707915934414
Iteration: 9, Func. Count: 132, Neg. LLF: 119.90014104297977
Iteration: 10, Func. Count: 146, Neg. LLF: 119.85983389563287
Iteration: 11, Func. Count: 160, Neg. LLF: 119.85258356809713
Iteration: 12, Func. Count: 174, Neg. LLF: 119.8518140002177
Iteration: 13, Func. Count: 188, Neg. LLF: 119.85176498495085
Iteration: 14, Func. Count: 202, Neg. LLF: 119.85175513966925
Iteration: 15, Func. Count: 216, Neg. LLF: 119.8517541609602
Optimization terminated successfully (Exit mode 0)
Current function value: 119.8517541609602
Iterations: 15
Function evaluations: 216
Gradient evaluations: 15
Iteration: 1, Func. Count: 12, Neg. LLF: 129.11258798067703
Iteration: 2, Func. Count: 24, Neg. LLF: 159.24622833902652
Iteration: 3, Func. Count: 36, Neg. LLF: 121.78613541821527
Iteration: 4, Func. Count: 47, Neg. LLF: 123.82450253693416
Iteration: 5, Func. Count: 60, Neg. LLF: 129.1179588685644
Iteration: 6, Func. Count: 73, Neg. LLF: 120.21704815233907
Iteration: 7, Func. Count: 84, Neg. LLF: 119.9612725067137
Iteration: 8, Func. Count: 95, Neg. LLF: 119.96071454742372
Iteration: 9, Func. Count: 107, Neg. LLF: 119.88818083319687
Iteration: 10, Func. Count: 118, Neg. LLF: 119.85192926295203
Iteration: 11, Func. Count: 129, Neg. LLF: 119.84622584747697
Iteration: 12, Func. Count: 140, Neg. LLF: 119.84539214778697
Iteration: 13, Func. Count: 151, Neg. LLF: 119.84524439862534
Iteration: 14, Func. Count: 162, Neg. LLF: 119.84523773894887
Iteration: 15, Func. Count: 173, Neg. LLF: 119.84522976025447
Iteration: 16, Func. Count: 183, Neg. LLF: 119.84522954109259
Optimization terminated successfully (Exit mode 0)
Current function value: 119.84522976025447
Iterations: 16
Function evaluations: 183
Gradient evaluations: 16
Iteration: 1, Func. Count: 13, Neg. LLF: 143.72891694828556
Iteration: 2, Func. Count: 26, Neg. LLF: 122.87707636674462
Iteration: 3, Func. Count: 39, Neg. LLF: 130.42736242556595
Iteration: 4, Func. Count: 52, Neg. LLF: 120.64631561795377
Iteration: 5, Func. Count: 64, Neg. LLF: 120.55140719937184
Iteration: 6, Func. Count: 77, Neg. LLF: 121.52673858777193
Iteration: 7, Func. Count: 90, Neg. LLF: 119.97727679761375
Iteration: 8, Func. Count: 102, Neg. LLF: 119.940977460289
Iteration: 9, Func. Count: 114, Neg. LLF: 119.88681310118085
Iteration: 10, Func. Count: 126, Neg. LLF: 119.8728353352314
Iteration: 11, Func. Count: 138, Neg. LLF: 119.85500589194973
Iteration: 12, Func. Count: 150, Neg. LLF: 119.84686269872336
Iteration: 13, Func. Count: 162, Neg. LLF: 119.84527327277367
Iteration: 14, Func. Count: 174, Neg. LLF: 119.84523011013131
Iteration: 15, Func. Count: 186, Neg. LLF: 119.84522923271142
Optimization terminated successfully (Exit mode 0)
Current function value: 119.84522923271142
Iterations: 15
Function evaluations: 186
Gradient evaluations: 15
Iteration: 1, Func. Count: 14, Neg. LLF: 142.47656327702006
Iteration: 2, Func. Count: 28, Neg. LLF: 122.2441699466777
Iteration: 3, Func. Count: 41, Neg. LLF: 124.63267856927902
Iteration: 4, Func. Count: 55, Neg. LLF: 128.18552966468832
Iteration: 5, Func. Count: 69, Neg. LLF: 120.03817808908981
Iteration: 6, Func. Count: 82, Neg. LLF: 120.24581616667285
Iteration: 7, Func. Count: 96, Neg. LLF: 119.98589034160288
Iteration: 8, Func. Count: 109, Neg. LLF: 119.95875599079608
Iteration: 9, Func. Count: 122, Neg. LLF: 119.86922883656548
Iteration: 10, Func. Count: 135, Neg. LLF: 119.85720309514451
Iteration: 11, Func. Count: 148, Neg. LLF: 119.84933625221781
Iteration: 12, Func. Count: 161, Neg. LLF: 119.84705668352665
Iteration: 13, Func. Count: 174, Neg. LLF: 119.84570422939596
Iteration: 14, Func. Count: 187, Neg. LLF: 119.84536827978695
Iteration: 15, Func. Count: 200, Neg. LLF: 119.84528529332565
Iteration: 16, Func. Count: 213, Neg. LLF: 119.84526558491069
Iteration: 17, Func. Count: 226, Neg. LLF: 119.8452477243457
Iteration: 18, Func. Count: 239, Neg. LLF: 119.8452341427254
Iteration: 19, Func. Count: 252, Neg. LLF: 119.84522967255907
Iteration: 20, Func. Count: 264, Neg. LLF: 119.84522969607352
Optimization terminated successfully (Exit mode 0)
Current function value: 119.84522967255907
Iterations: 20
Function evaluations: 264
Gradient evaluations: 20
Iteration: 1, Func. Count: 15, Neg. LLF: 141.7084465178725
Iteration: 2, Func. Count: 30, Neg. LLF: 122.77745708557687
Iteration: 3, Func. Count: 45, Neg. LLF: 125.48146954047968
Iteration: 4, Func. Count: 60, Neg. LLF: 120.14944046662717
Iteration: 5, Func. Count: 74, Neg. LLF: 120.097134977866
Iteration: 6, Func. Count: 89, Neg. LLF: 120.55016684443348
Iteration: 7, Func. Count: 105, Neg. LLF: 119.94871141490333
Iteration: 8, Func. Count: 119, Neg. LLF: 119.89391719709465
Iteration: 9, Func. Count: 133, Neg. LLF: 119.86214374659993
Iteration: 10, Func. Count: 147, Neg. LLF: 119.84681208518504
Iteration: 11, Func. Count: 161, Neg. LLF: 119.84539553276971
Iteration: 12, Func. Count: 175, Neg. LLF: 119.84528508768685
Iteration: 13, Func. Count: 189, Neg. LLF: 119.84525424720658
Iteration: 14, Func. Count: 203, Neg. LLF: 119.84523204213772
Iteration: 15, Func. Count: 217, Neg. LLF: 119.8452299547424
Iteration: 16, Func. Count: 231, Neg. LLF: 119.84522927172989
Optimization terminated successfully (Exit mode 0)
Current function value: 119.84522927172989
Iterations: 16
Function evaluations: 231
Gradient evaluations: 16
Iteration: 1, Func. Count: 16, Neg. LLF: 141.29049237279295
Iteration: 2, Func. Count: 32, Neg. LLF: 122.2387183361753
Iteration: 3, Func. Count: 47, Neg. LLF: 124.33022522571125
Iteration: 4, Func. Count: 63, Neg. LLF: 120.55876187100176
Iteration: 5, Func. Count: 78, Neg. LLF: 120.34948227132708
Iteration: 6, Func. Count: 93, Neg. LLF: 120.20578796243856
Iteration: 7, Func. Count: 109, Neg. LLF: 120.07680271773165
Iteration: 8, Func. Count: 125, Neg. LLF: 119.92558355820645
Iteration: 9, Func. Count: 140, Neg. LLF: 119.89174860336452
Iteration: 10, Func. Count: 155, Neg. LLF: 119.86735249304658
Iteration: 11, Func. Count: 170, Neg. LLF: 119.85362829264312
Iteration: 12, Func. Count: 185, Neg. LLF: 119.84579360864161
Iteration: 13, Func. Count: 200, Neg. LLF: 119.84529995218932
Iteration: 14, Func. Count: 215, Neg. LLF: 119.84523415440174
Iteration: 15, Func. Count: 230, Neg. LLF: 119.84522953650125
Iteration: 16, Func. Count: 244, Neg. LLF: 119.84522961758981
Optimization terminated successfully (Exit mode 0)
Current function value: 119.84522953650125
Iterations: 16
Function evaluations: 244
Gradient evaluations: 16
Iteration: 1, Func. Count: 6, Neg. LLF: 123.96686314291334
Iteration: 2, Func. Count: 11, Neg. LLF: 120.98721990198369
Iteration: 3, Func. Count: 16, Neg. LLF: 123.11941975126015
Iteration: 4, Func. Count: 25, Neg. LLF: 178.46681911056302
Iteration: 5, Func. Count: 31, Neg. LLF: 120.18943074438526
Iteration: 6, Func. Count: 36, Neg. LLF: 120.18093939503031
Iteration: 7, Func. Count: 42, Neg. LLF: 120.15746158918601
Iteration: 8, Func. Count: 47, Neg. LLF: 120.15680272029937
Iteration: 9, Func. Count: 52, Neg. LLF: 120.15672858912546
Iteration: 10, Func. Count: 56, Neg. LLF: 120.15672858926082
Optimization terminated successfully (Exit mode 0)
Current function value: 120.15672858912546
Iterations: 10
Function evaluations: 56
Gradient evaluations: 10
Iteration: 1, Func. Count: 5, Neg. LLF: 127.53376835181884
Iteration: 2, Func. Count: 9, Neg. LLF: 128.04765456634672
Iteration: 3, Func. Count: 14, Neg. LLF: 127.29656441132676
Iteration: 4, Func. Count: 18, Neg. LLF: 127.16734437332042
Iteration: 5, Func. Count: 22, Neg. LLF: 127.13337438501108
Iteration: 6, Func. Count: 26, Neg. LLF: 127.13129299725729
Iteration: 7, Func. Count: 30, Neg. LLF: 127.13127140668948
Iteration: 8, Func. Count: 33, Neg. LLF: 127.13127152717625
Optimization terminated successfully (Exit mode 0)
Current function value: 127.13127140668948
Iterations: 8
Function evaluations: 33
Gradient evaluations: 8
Iteration: 1, Func. Count: 6, Neg. LLF: 156.99883989990232
Iteration: 2, Func. Count: 13, Neg. LLF: 126.25057503742121
Iteration: 3, Func. Count: 18, Neg. LLF: 160.41312358109982
Iteration: 4, Func. Count: 24, Neg. LLF: 126.08655605903178
Iteration: 5, Func. Count: 30, Neg. LLF: 126.04837074829234
Iteration: 6, Func. Count: 35, Neg. LLF: 126.04639717040915
Iteration: 7, Func. Count: 40, Neg. LLF: 126.04636482128748
Iteration: 8, Func. Count: 45, Neg. LLF: 126.0463633245254
Iteration: 9, Func. Count: 49, Neg. LLF: 126.04636352963875
Optimization terminated successfully (Exit mode 0)
Current function value: 126.0463633245254
Iterations: 9
Function evaluations: 49
Gradient evaluations: 9
Iteration: 1, Func. Count: 7, Neg. LLF: 152.7784007567742
Iteration: 2, Func. Count: 15, Neg. LLF: 126.18392611802791
Iteration: 3, Func. Count: 21, Neg. LLF: 130.21731535081042
Iteration: 4, Func. Count: 28, Neg. LLF: 126.13519790309883
Iteration: 5, Func. Count: 35, Neg. LLF: 126.06198390676988
Iteration: 6, Func. Count: 41, Neg. LLF: 126.05843144519615
Iteration: 7, Func. Count: 47, Neg. LLF: 126.0584237987527
Iteration: 8, Func. Count: 53, Neg. LLF: 126.05841173443747
Iteration: 9, Func. Count: 59, Neg. LLF: 126.05836312931963
Iteration: 10, Func. Count: 65, Neg. LLF: 126.05820190268899
Iteration: 11, Func. Count: 71, Neg. LLF: 126.05803743235838
Iteration: 12, Func. Count: 77, Neg. LLF: 126.05741729075862
Iteration: 13, Func. Count: 83, Neg. LLF: 126.05381411926572
Iteration: 14, Func. Count: 89, Neg. LLF: 126.04696746682323
Iteration: 15, Func. Count: 95, Neg. LLF: 126.04679778007025
Iteration: 16, Func. Count: 101, Neg. LLF: 126.04665024646879
Iteration: 17, Func. Count: 107, Neg. LLF: 126.04639575907869
Iteration: 18, Func. Count: 113, Neg. LLF: 126.04638259388847
Iteration: 19, Func. Count: 119, Neg. LLF: 126.04636388183003
Iteration: 20, Func. Count: 125, Neg. LLF: 126.0811131325523
Optimization terminated successfully (Exit mode 0)
Current function value: 126.04636334335417
Iterations: 21
Function evaluations: 128
Gradient evaluations: 20
Iteration: 1, Func. Count: 8, Neg. LLF: 150.32806631761719
Iteration: 2, Func. Count: 17, Neg. LLF: 126.13918639752175
Iteration: 3, Func. Count: 24, Neg. LLF: 126.84249600606003
Iteration: 4, Func. Count: 32, Neg. LLF: 126.15123545285186
Iteration: 5, Func. Count: 40, Neg. LLF: 126.07686759839572
Iteration: 6, Func. Count: 47, Neg. LLF: 126.07618792791475
Iteration: 7, Func. Count: 54, Neg. LLF: 126.07282458918624
Iteration: 8, Func. Count: 61, Neg. LLF: 126.06214535906366
Iteration: 9, Func. Count: 68, Neg. LLF: 126.05417795219711
Iteration: 10, Func. Count: 75, Neg. LLF: 126.05394302392904
Iteration: 11, Func. Count: 82, Neg. LLF: 126.05347489625213
Iteration: 12, Func. Count: 89, Neg. LLF: 126.05016701328127
Iteration: 13, Func. Count: 96, Neg. LLF: 126.04797019977025
Iteration: 14, Func. Count: 103, Neg. LLF: 126.04644764128916
Iteration: 15, Func. Count: 110, Neg. LLF: 126.47560825147838
Iteration: 16, Func. Count: 120, Neg. LLF: 126.04890277372508
Iteration: 17, Func. Count: 127, Neg. LLF: 126.04636311994815
Optimization terminated successfully (Exit mode 0)
Current function value: 126.04636332384372
Iterations: 18
Function evaluations: 127
Gradient evaluations: 17
Iteration: 1, Func. Count: 9, Neg. LLF: 149.63370641035866
Iteration: 2, Func. Count: 19, Neg. LLF: 126.10751537533733
Iteration: 3, Func. Count: 27, Neg. LLF: 126.13419916185036
Iteration: 4, Func. Count: 36, Neg. LLF: 126.10363928472157
Iteration: 5, Func. Count: 45, Neg. LLF: 126.07403326626574
Iteration: 6, Func. Count: 53, Neg. LLF: 126.07225390912164
Iteration: 7, Func. Count: 61, Neg. LLF: 126.07050111368615
Iteration: 8, Func. Count: 69, Neg. LLF: 126.06951492905431
Iteration: 9, Func. Count: 77, Neg. LLF: 126.06676255379459
Iteration: 10, Func. Count: 85, Neg. LLF: 126.06658800942313
Iteration: 11, Func. Count: 93, Neg. LLF: 126.06651594679744
Iteration: 12, Func. Count: 101, Neg. LLF: 126.06649696304729
Iteration: 13, Func. Count: 109, Neg. LLF: 126.0664955919316
Optimization terminated successfully (Exit mode 0)
Current function value: 126.066496548638
Iterations: 13
Function evaluations: 111
Gradient evaluations: 13
Iteration: 1, Func. Count: 6, Neg. LLF: 132.06582502841422
Iteration: 2, Func. Count: 12, Neg. LLF: 128.58144460579703
Iteration: 3, Func. Count: 17, Neg. LLF: 128.09720308727867
Iteration: 4, Func. Count: 22, Neg. LLF: 127.31395474612307
Iteration: 5, Func. Count: 27, Neg. LLF: 127.2282327330303
Iteration: 6, Func. Count: 32, Neg. LLF: 127.18201017703949
Iteration: 7, Func. Count: 37, Neg. LLF: 127.14527650899494
Iteration: 8, Func. Count: 42, Neg. LLF: 127.13274441639224
Iteration: 9, Func. Count: 47, Neg. LLF: 127.13130248234182
Iteration: 10, Func. Count: 52, Neg. LLF: 127.13127139123162
Iteration: 11, Func. Count: 56, Neg. LLF: 127.13127146392576
Optimization terminated successfully (Exit mode 0)
Current function value: 127.13127139123162
Iterations: 11
Function evaluations: 56
Gradient evaluations: 11
Iteration: 1, Func. Count: 7, Neg. LLF: 156.61611001412274
Iteration: 2, Func. Count: 15, Neg. LLF: 126.25370338420768
Iteration: 3, Func. Count: 21, Neg. LLF: 162.3471796670948
Iteration: 4, Func. Count: 28, Neg. LLF: 126.07693477135294
Iteration: 5, Func. Count: 34, Neg. LLF: 126.0507351725448
Iteration: 6, Func. Count: 40, Neg. LLF: 126.0487393332249
Iteration: 7, Func. Count: 46, Neg. LLF: 126.04636931753683
Iteration: 8, Func. Count: 52, Neg. LLF: 126.04636338374044
Iteration: 9, Func. Count: 57, Neg. LLF: 126.04636358901708
Optimization terminated successfully (Exit mode 0)
Current function value: 126.04636338374044
Iterations: 9
Function evaluations: 57
Gradient evaluations: 9
Iteration: 1, Func. Count: 8, Neg. LLF: 152.54622328050004
Iteration: 2, Func. Count: 17, Neg. LLF: 126.1825815342665
Iteration: 3, Func. Count: 24, Neg. LLF: 130.40256213082603
Iteration: 4, Func. Count: 32, Neg. LLF: 126.15646494968092
Iteration: 5, Func. Count: 40, Neg. LLF: 126.06268861974759
Iteration: 6, Func. Count: 47, Neg. LLF: 126.05842028725415
Iteration: 7, Func. Count: 54, Neg. LLF: 126.05840941848264
Iteration: 8, Func. Count: 61, Neg. LLF: 126.05839991458853
Iteration: 9, Func. Count: 68, Neg. LLF: 126.05834953646063
Iteration: 10, Func. Count: 75, Neg. LLF: 126.05819600546107
Iteration: 11, Func. Count: 82, Neg. LLF: 126.05800886288155
Iteration: 12, Func. Count: 89, Neg. LLF: 126.05739244058108
Iteration: 13, Func. Count: 96, Neg. LLF: 126.05385991130115
Iteration: 14, Func. Count: 103, Neg. LLF: 126.04695521439567
Iteration: 15, Func. Count: 110, Neg. LLF: 126.04672768701603
Iteration: 16, Func. Count: 117, Neg. LLF: 126.04659460631215
Iteration: 17, Func. Count: 124, Neg. LLF: 126.04637354565267
Iteration: 18, Func. Count: 131, Neg. LLF: 126.04636418717739
Iteration: 19, Func. Count: 138, Neg. LLF: 126.04636349614695
Optimization terminated successfully (Exit mode 0)
Current function value: 126.04636349614695
Iterations: 19
Function evaluations: 138
Gradient evaluations: 19
Iteration: 1, Func. Count: 9, Neg. LLF: 150.67831182066593
Iteration: 2, Func. Count: 19, Neg. LLF: 126.14267022471846
Iteration: 3, Func. Count: 27, Neg. LLF: 126.79053054221716
Iteration: 4, Func. Count: 36, Neg. LLF: 126.13587347981
Iteration: 5, Func. Count: 45, Neg. LLF: 126.0755897994257
Iteration: 6, Func. Count: 53, Neg. LLF: 126.07498080446884
Iteration: 7, Func. Count: 61, Neg. LLF: 126.07186127249314
Iteration: 8, Func. Count: 69, Neg. LLF: 126.06338590309471
Iteration: 9, Func. Count: 77, Neg. LLF: 126.05935814761679
Iteration: 10, Func. Count: 85, Neg. LLF: 126.0562887510728
Iteration: 11, Func. Count: 93, Neg. LLF: 126.04636590510428
Iteration: 12, Func. Count: 101, Neg. LLF: 126.11557561291389
Iteration: 13, Func. Count: 112, Neg. LLF: 126.04637254160245
Optimization terminated successfully (Exit mode 0)
Current function value: 126.04636417794126
Iterations: 14
Function evaluations: 113
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 148.4137208268191
Iteration: 2, Func. Count: 21, Neg. LLF: 126.10158365556848
Iteration: 3, Func. Count: 30, Neg. LLF: 126.12272371781445
Iteration: 4, Func. Count: 40, Neg. LLF: 126.06632244985255
Iteration: 5, Func. Count: 49, Neg. LLF: 125.8718116869724
Iteration: 6, Func. Count: 58, Neg. LLF: 126.15880985352993
Iteration: 7, Func. Count: 68, Neg. LLF: 540.7825251425703
Iteration: 8, Func. Count: 79, Neg. LLF: 126.61988797267537
Iteration: 9, Func. Count: 89, Neg. LLF: 125.47526797406292
Iteration: 10, Func. Count: 98, Neg. LLF: 125.43366778840821
Iteration: 11, Func. Count: 107, Neg. LLF: 125.37354842943604
Iteration: 12, Func. Count: 116, Neg. LLF: 125.37072234345838
Iteration: 13, Func. Count: 125, Neg. LLF: 125.3695394402057
Iteration: 14, Func. Count: 134, Neg. LLF: 125.3693874424667
Iteration: 15, Func. Count: 143, Neg. LLF: 125.36923688309341
Iteration: 16, Func. Count: 152, Neg. LLF: 125.36914422254303
Iteration: 17, Func. Count: 161, Neg. LLF: 125.36915798310612
Iteration: 18, Func. Count: 171, Neg. LLF: 125.36913864849198
Iteration: 19, Func. Count: 180, Neg. LLF: 125.36915764505746
Optimization terminated successfully (Exit mode 0)
Current function value: 125.36913869636516
Iterations: 20
Function evaluations: 182
Gradient evaluations: 19
Iteration: 1, Func. Count: 7, Neg. LLF: 130.50468140347013
Iteration: 2, Func. Count: 14, Neg. LLF: 127.84166655172739
Iteration: 3, Func. Count: 20, Neg. LLF: 127.49732955005129
Iteration: 4, Func. Count: 26, Neg. LLF: 127.18224886646284
Iteration: 5, Func. Count: 32, Neg. LLF: 127.15841545892381
Iteration: 6, Func. Count: 38, Neg. LLF: 127.13174702865818
Iteration: 7, Func. Count: 44, Neg. LLF: 127.13127473931111
Iteration: 8, Func. Count: 50, Neg. LLF: 127.1312713882191
Iteration: 9, Func. Count: 55, Neg. LLF: 127.13127138911752
Optimization terminated successfully (Exit mode 0)
Current function value: 127.1312713882191
Iterations: 9
Function evaluations: 55
Gradient evaluations: 9
Iteration: 1, Func. Count: 8, Neg. LLF: 129.7351994295878
Iteration: 2, Func. Count: 18, Neg. LLF: 126.9216880694107
Iteration: 3, Func. Count: 26, Neg. LLF: 126.33172874670748
Iteration: 4, Func. Count: 33, Neg. LLF: 130.94254466302087
Iteration: 5, Func. Count: 41, Neg. LLF: 126.06264417222444
Iteration: 6, Func. Count: 48, Neg. LLF: 126.04652880423757
Iteration: 7, Func. Count: 55, Neg. LLF: 126.0463653133775
Iteration: 8, Func. Count: 62, Neg. LLF: 126.04636335452943
Iteration: 9, Func. Count: 68, Neg. LLF: 126.04636355930023
Optimization terminated successfully (Exit mode 0)
Current function value: 126.04636335452943
Iterations: 9
Function evaluations: 68
Gradient evaluations: 9
Iteration: 1, Func. Count: 9, Neg. LLF: 152.57712334389294
Iteration: 2, Func. Count: 19, Neg. LLF: 126.18905963330614
Iteration: 3, Func. Count: 27, Neg. LLF: 131.09782957627132
Iteration: 4, Func. Count: 36, Neg. LLF: 126.1550439513772
Iteration: 5, Func. Count: 45, Neg. LLF: 126.0643218198102
Iteration: 6, Func. Count: 53, Neg. LLF: 126.0583740395191
Iteration: 7, Func. Count: 61, Neg. LLF: 126.05835806679643
Iteration: 8, Func. Count: 69, Neg. LLF: 126.05834637044343
Iteration: 9, Func. Count: 77, Neg. LLF: 126.05827908909167
Iteration: 10, Func. Count: 85, Neg. LLF: 126.0580828454646
Iteration: 11, Func. Count: 93, Neg. LLF: 126.05783331570709
Iteration: 12, Func. Count: 101, Neg. LLF: 126.05705848095874
Iteration: 13, Func. Count: 109, Neg. LLF: 126.05111844443121
Iteration: 14, Func. Count: 117, Neg. LLF: 126.04687009114063
Iteration: 15, Func. Count: 125, Neg. LLF: 126.04664402338254
Iteration: 16, Func. Count: 133, Neg. LLF: 126.04645815275983
Iteration: 17, Func. Count: 141, Neg. LLF: 126.04636380530621
Iteration: 18, Func. Count: 148, Neg. LLF: 126.04636360074755
Optimization terminated successfully (Exit mode 0)
Current function value: 126.04636380530621
Iterations: 18
Function evaluations: 148
Gradient evaluations: 18
Iteration: 1, Func. Count: 10, Neg. LLF: 130.0849500284148
Iteration: 2, Func. Count: 22, Neg. LLF: 128.32985844750323
Iteration: 3, Func. Count: 32, Neg. LLF: 125.86981603633109
Iteration: 4, Func. Count: 41, Neg. LLF: 130.28801292827112
Iteration: 5, Func. Count: 51, Neg. LLF: 125.45571284241129
Iteration: 6, Func. Count: 60, Neg. LLF: 125.45181174013506
Iteration: 7, Func. Count: 69, Neg. LLF: 125.44980469573451
Iteration: 8, Func. Count: 78, Neg. LLF: 125.44914010236504
Iteration: 9, Func. Count: 87, Neg. LLF: 125.4490895594088
Iteration: 10, Func. Count: 96, Neg. LLF: 125.44908870720141
Iteration: 11, Func. Count: 115, Neg. LLF: 125.44910148190631
Iteration: 12, Func. Count: 134, Neg. LLF: 125.44910317119468
Iteration: 13, Func. Count: 153, Neg. LLF: 125.44910285449805
Iteration: 14, Func. Count: 172, Neg. LLF: 125.4490934910167
Iteration: 15, Func. Count: 191, Neg. LLF: 125.44908300859355
Iteration: 16, Func. Count: 210, Neg. LLF: 125.44908719156344
Iteration: 17, Func. Count: 229, Neg. LLF: 125.44912183621237
Iteration: 18, Func. Count: 240, Neg. LLF: 125.44910968825376
Iteration: 19, Func. Count: 251, Neg. LLF: 125.44910470988971
Iteration: 20, Func. Count: 261, Neg. LLF: 125.44910468268233
Iteration: 21, Func. Count: 269, Neg. LLF: 125.44910459187201
Optimization terminated successfully (Exit mode 0)
Current function value: 125.44910468268233
Iterations: 22
Function evaluations: 269
Gradient evaluations: 21
Iteration: 1, Func. Count: 11, Neg. LLF: 148.66146313986044
Iteration: 2, Func. Count: 23, Neg. LLF: 126.10456783484241
Iteration: 3, Func. Count: 33, Neg. LLF: 126.13218457655955
Iteration: 4, Func. Count: 44, Neg. LLF: 126.07322498098843
Iteration: 5, Func. Count: 54, Neg. LLF: 126.0690475207631
Iteration: 6, Func. Count: 64, Neg. LLF: 126.06538404598957
Iteration: 7, Func. Count: 74, Neg. LLF: 126.05549330502144
Iteration: 8, Func. Count: 84, Neg. LLF: 125.91327063993018
Iteration: 9, Func. Count: 94, Neg. LLF: 24965895.14212606
Iteration: 10, Func. Count: 106, Neg. LLF: 127.66300766735934
Iteration: 11, Func. Count: 117, Neg. LLF: 126.37567432999558
Iteration: 12, Func. Count: 128, Neg. LLF: 125.44955198621844
Iteration: 13, Func. Count: 138, Neg. LLF: 125.4491164269753
Iteration: 14, Func. Count: 148, Neg. LLF: 125.44910600080557
Iteration: 15, Func. Count: 157, Neg. LLF: 125.44910597952949
Optimization terminated successfully (Exit mode 0)
Current function value: 125.44910600080557
Iterations: 16
Function evaluations: 157
Gradient evaluations: 15
Iteration: 1, Func. Count: 8, Neg. LLF: 129.37255534644365
Iteration: 2, Func. Count: 16, Neg. LLF: 130.30578610297786
Iteration: 3, Func. Count: 26, Neg. LLF: 128.05781518666697
Iteration: 4, Func. Count: 34, Neg. LLF: 127.46890350227973
Iteration: 5, Func. Count: 41, Neg. LLF: 127.29932321028653
Iteration: 6, Func. Count: 48, Neg. LLF: 127.13403349634785
Iteration: 7, Func. Count: 55, Neg. LLF: 127.13185995483477
Iteration: 8, Func. Count: 62, Neg. LLF: 127.13146959640514
Iteration: 9, Func. Count: 69, Neg. LLF: 127.13141371477069
Iteration: 10, Func. Count: 76, Neg. LLF: 127.13127759973001
Iteration: 11, Func. Count: 83, Neg. LLF: 127.13127172232713
Iteration: 12, Func. Count: 89, Neg. LLF: 127.13127173664718
Optimization terminated successfully (Exit mode 0)
Current function value: 127.13127172232713
Iterations: 12
Function evaluations: 89
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 134.23043197408992
Iteration: 2, Func. Count: 20, Neg. LLF: 127.30128142488411
Iteration: 3, Func. Count: 29, Neg. LLF: 126.57901220808881
Iteration: 4, Func. Count: 37, Neg. LLF: 126.8541133555183
Iteration: 5, Func. Count: 46, Neg. LLF: 126.10701884264328
Iteration: 6, Func. Count: 54, Neg. LLF: 126.11262135706768
Iteration: 7, Func. Count: 63, Neg. LLF: 126.08692244144311
Iteration: 8, Func. Count: 72, Neg. LLF: 126.04636343740685
Iteration: 9, Func. Count: 79, Neg. LLF: 126.0463636424079
Optimization terminated successfully (Exit mode 0)
Current function value: 126.04636343740685
Iterations: 10
Function evaluations: 79
Gradient evaluations: 9
Iteration: 1, Func. Count: 10, Neg. LLF: 130.82278401768073
Iteration: 2, Func. Count: 22, Neg. LLF: 126.26183607445282
Iteration: 3, Func. Count: 31, Neg. LLF: 126.1356645317903
Iteration: 4, Func. Count: 40, Neg. LLF: 125.8252140712483
Iteration: 5, Func. Count: 49, Neg. LLF: 126.90939100495773
Iteration: 6, Func. Count: 59, Neg. LLF: 125.59507785949997
Iteration: 7, Func. Count: 68, Neg. LLF: 125.58605185095095
Iteration: 8, Func. Count: 77, Neg. LLF: 125.56607273569637
Iteration: 9, Func. Count: 86, Neg. LLF: 125.56510824414778
Iteration: 10, Func. Count: 95, Neg. LLF: 125.5650627808937
Iteration: 11, Func. Count: 103, Neg. LLF: 125.56506271554318
Optimization terminated successfully (Exit mode 0)
Current function value: 125.5650627808937
Iterations: 11
Function evaluations: 103
Gradient evaluations: 11
Iteration: 1, Func. Count: 11, Neg. LLF: 131.11349470365113
Iteration: 2, Func. Count: 24, Neg. LLF: 128.26869079928892
Iteration: 3, Func. Count: 35, Neg. LLF: 125.78408223827687
Iteration: 4, Func. Count: 45, Neg. LLF: 129.44266928786163
Iteration: 5, Func. Count: 56, Neg. LLF: 125.48964276145247
Iteration: 6, Func. Count: 66, Neg. LLF: 125.46395111470407
Iteration: 7, Func. Count: 76, Neg. LLF: 125.4506389931027
Iteration: 8, Func. Count: 86, Neg. LLF: 125.44912633053822
Iteration: 9, Func. Count: 96, Neg. LLF: 125.44909445762089
Iteration: 10, Func. Count: 106, Neg. LLF: 125.4497302431372
Iteration: 11, Func. Count: 118, Neg. LLF: 125.4496082299035
Iteration: 12, Func. Count: 130, Neg. LLF: 125.44910870404583
Iteration: 13, Func. Count: 141, Neg. LLF: 125.44910468268968
Iteration: 14, Func. Count: 150, Neg. LLF: 125.4491045918796
Optimization terminated successfully (Exit mode 0)
Current function value: 125.44910468268968
Iterations: 15
Function evaluations: 150
Gradient evaluations: 14
Iteration: 1, Func. Count: 12, Neg. LLF: 149.05218082243636
Iteration: 2, Func. Count: 25, Neg. LLF: 126.1076379691205
Iteration: 3, Func. Count: 36, Neg. LLF: 126.13554374210882
Iteration: 4, Func. Count: 48, Neg. LLF: 126.07391197489213
Iteration: 5, Func. Count: 59, Neg. LLF: 126.07143107026117
Iteration: 6, Func. Count: 70, Neg. LLF: 126.06972593859341
Iteration: 7, Func. Count: 81, Neg. LLF: 126.0652128551411
Iteration: 8, Func. Count: 92, Neg. LLF: 126.06162697648855
Iteration: 9, Func. Count: 103, Neg. LLF: 126.02577590575186
Iteration: 10, Func. Count: 114, Neg. LLF: 125.74063359207535
Iteration: 11, Func. Count: 125, Neg. LLF: 385.25774364470124
Iteration: 12, Func. Count: 140, Neg. LLF: 899.6439358005846
Iteration: 13, Func. Count: 154, Neg. LLF: 17746661.696752027
Iteration: 14, Func. Count: 167, Neg. LLF: 126.06895892004371
Iteration: 15, Func. Count: 179, Neg. LLF: 125.61558786970117
Iteration: 16, Func. Count: 191, Neg. LLF: 125.4491648088526
Iteration: 17, Func. Count: 202, Neg. LLF: 125.4491060988298
Iteration: 18, Func. Count: 213, Neg. LLF: 125.4491047092123
Iteration: 19, Func. Count: 223, Neg. LLF: 125.44910468873685
Optimization terminated successfully (Exit mode 0)
Current function value: 125.4491047092123
Iterations: 20
Function evaluations: 223
Gradient evaluations: 19
Iteration: 1, Func. Count: 5, Neg. LLF: 133.9223817690225
Iteration: 2, Func. Count: 10, Neg. LLF: 140.61154227384182
Iteration: 3, Func. Count: 15, Neg. LLF: 124.78360042483187
Iteration: 4, Func. Count: 19, Neg. LLF: 124.77563258541309
Iteration: 5, Func. Count: 23, Neg. LLF: 124.77548304918331
Iteration: 6, Func. Count: 27, Neg. LLF: 124.77548205292129
Optimization terminated successfully (Exit mode 0)
Current function value: 124.77548205292129
Iterations: 6
Function evaluations: 27
Gradient evaluations: 6
Iteration: 1, Func. Count: 6, Neg. LLF: 131.50402001359018
Iteration: 2, Func. Count: 12, Neg. LLF: 127.6073884707059
Iteration: 3, Func. Count: 18, Neg. LLF: 125.31033274222423
Iteration: 4, Func. Count: 24, Neg. LLF: 124.84821195105616
Iteration: 5, Func. Count: 29, Neg. LLF: 124.80814217284843
Iteration: 6, Func. Count: 34, Neg. LLF: 124.77602317400202
Iteration: 7, Func. Count: 39, Neg. LLF: 124.77550267068
Iteration: 8, Func. Count: 44, Neg. LLF: 124.77548286364627
Iteration: 9, Func. Count: 49, Neg. LLF: 124.77548207178124
Optimization terminated successfully (Exit mode 0)
Current function value: 124.77548207178124
Iterations: 9
Function evaluations: 49
Gradient evaluations: 9
Iteration: 1, Func. Count: 7, Neg. LLF: 131.50174882021926
Iteration: 2, Func. Count: 14, Neg. LLF: 127.59656406416642
Iteration: 3, Func. Count: 21, Neg. LLF: 125.40105892276411
Iteration: 4, Func. Count: 28, Neg. LLF: 124.75883290002415
Iteration: 5, Func. Count: 35, Neg. LLF: 124.61044907985854
Iteration: 6, Func. Count: 41, Neg. LLF: 124.6064273919151
Iteration: 7, Func. Count: 47, Neg. LLF: 124.60574893174619
Iteration: 8, Func. Count: 53, Neg. LLF: 124.6057392131464
Iteration: 9, Func. Count: 58, Neg. LLF: 124.60573921314008
Optimization terminated successfully (Exit mode 0)
Current function value: 124.6057392131464
Iterations: 9
Function evaluations: 58
Gradient evaluations: 9
Iteration: 1, Func. Count: 8, Neg. LLF: 130.793580255116
Iteration: 2, Func. Count: 16, Neg. LLF: 127.10502146786774
Iteration: 3, Func. Count: 24, Neg. LLF: 125.34241744604176
Iteration: 4, Func. Count: 32, Neg. LLF: 137.66521951244454
Iteration: 5, Func. Count: 40, Neg. LLF: 124.60966407258002
Iteration: 6, Func. Count: 47, Neg. LLF: 124.60677146740684
Iteration: 7, Func. Count: 54, Neg. LLF: 124.60575625199085
Iteration: 8, Func. Count: 61, Neg. LLF: 124.60573979174754
Iteration: 9, Func. Count: 68, Neg. LLF: 124.60573921052885
Optimization terminated successfully (Exit mode 0)
Current function value: 124.60573921052885
Iterations: 9
Function evaluations: 68
Gradient evaluations: 9
Iteration: 1, Func. Count: 9, Neg. LLF: 130.10801599436485
Iteration: 2, Func. Count: 18, Neg. LLF: 127.42394019795668
Iteration: 3, Func. Count: 27, Neg. LLF: 125.30736221885365
Iteration: 4, Func. Count: 36, Neg. LLF: 129.85607001713035
Iteration: 5, Func. Count: 45, Neg. LLF: 124.61193405450386
Iteration: 6, Func. Count: 53, Neg. LLF: 124.60690699622855
Iteration: 7, Func. Count: 61, Neg. LLF: 124.60589059561386
Iteration: 8, Func. Count: 69, Neg. LLF: 124.60574419004396
Iteration: 9, Func. Count: 77, Neg. LLF: 124.60573924473026
Iteration: 10, Func. Count: 84, Neg. LLF: 124.60573926281006
Optimization terminated successfully (Exit mode 0)
Current function value: 124.60573924473026
Iterations: 10
Function evaluations: 84
Gradient evaluations: 10
Iteration: 1, Func. Count: 6, Neg. LLF: 133.2541454504213
Iteration: 2, Func. Count: 12, Neg. LLF: 131.8679305982681
Iteration: 3, Func. Count: 18, Neg. LLF: 121.200736896101
Iteration: 4, Func. Count: 23, Neg. LLF: 120.99217544592415
Iteration: 5, Func. Count: 28, Neg. LLF: 120.92707080715384
Iteration: 6, Func. Count: 33, Neg. LLF: 120.92625303961232
Iteration: 7, Func. Count: 38, Neg. LLF: 120.92624418851236
Iteration: 8, Func. Count: 42, Neg. LLF: 120.92624428060473
Optimization terminated successfully (Exit mode 0)
Current function value: 120.92624418851236
Iterations: 8
Function evaluations: 42
Gradient evaluations: 8
Iteration: 1, Func. Count: 7, Neg. LLF: 131.72585240033828
Iteration: 2, Func. Count: 14, Neg. LLF: 125.67901343297557
Iteration: 3, Func. Count: 21, Neg. LLF: 121.46493683244105
Iteration: 4, Func. Count: 27, Neg. LLF: 121.24264030941382
Iteration: 5, Func. Count: 33, Neg. LLF: 120.94352197680712
Iteration: 6, Func. Count: 39, Neg. LLF: 120.93338692093172
Iteration: 7, Func. Count: 45, Neg. LLF: 120.92651001587426
Iteration: 8, Func. Count: 51, Neg. LLF: 120.92122382830311
Iteration: 9, Func. Count: 57, Neg. LLF: 120.92107776099876
Iteration: 10, Func. Count: 63, Neg. LLF: 120.92107667308112
Iteration: 11, Func. Count: 68, Neg. LLF: 120.92107667308103
Optimization terminated successfully (Exit mode 0)
Current function value: 120.92107667308112
Iterations: 11
Function evaluations: 68
Gradient evaluations: 11
Iteration: 1, Func. Count: 8, Neg. LLF: 131.80499488840238
Iteration: 2, Func. Count: 16, Neg. LLF: 125.1464722454486
Iteration: 3, Func. Count: 24, Neg. LLF: 121.41297669818836
Iteration: 4, Func. Count: 31, Neg. LLF: 121.21686509320017
Iteration: 5, Func. Count: 38, Neg. LLF: 120.93689494302124
Iteration: 6, Func. Count: 45, Neg. LLF: 120.93014294265772
Iteration: 7, Func. Count: 52, Neg. LLF: 120.92481554519178
Iteration: 8, Func. Count: 59, Neg. LLF: 120.92122817201556
Iteration: 9, Func. Count: 66, Neg. LLF: 120.92107784845898
Iteration: 10, Func. Count: 73, Neg. LLF: 120.92107667289922
Iteration: 11, Func. Count: 79, Neg. LLF: 120.92107668645698
Optimization terminated successfully (Exit mode 0)
Current function value: 120.92107667289922
Iterations: 11
Function evaluations: 79
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 129.5589410504391
Iteration: 2, Func. Count: 18, Neg. LLF: 124.03490230464523
Iteration: 3, Func. Count: 27, Neg. LLF: 121.56042001549874
Iteration: 4, Func. Count: 35, Neg. LLF: 121.16518325994805
Iteration: 5, Func. Count: 43, Neg. LLF: 120.98388382150404
Iteration: 6, Func. Count: 51, Neg. LLF: 120.94427237005782
Iteration: 7, Func. Count: 59, Neg. LLF: 120.93245176073526
Iteration: 8, Func. Count: 67, Neg. LLF: 120.92141035647084
Iteration: 9, Func. Count: 75, Neg. LLF: 120.92108193566575
Iteration: 10, Func. Count: 83, Neg. LLF: 120.92107667589303
Iteration: 11, Func. Count: 90, Neg. LLF: 120.9210766951515
Optimization terminated successfully (Exit mode 0)
Current function value: 120.92107667589303
Iterations: 11
Function evaluations: 90
Gradient evaluations: 11
Iteration: 1, Func. Count: 10, Neg. LLF: 129.92271338608268
Iteration: 2, Func. Count: 20, Neg. LLF: 124.72632104813637
Iteration: 3, Func. Count: 30, Neg. LLF: 125.63129495165344
Iteration: 4, Func. Count: 40, Neg. LLF: 120.9546192801239
Iteration: 5, Func. Count: 49, Neg. LLF: 120.93859286243887
Iteration: 6, Func. Count: 58, Neg. LLF: 120.92945510413763
Iteration: 7, Func. Count: 67, Neg. LLF: 120.92115523736196
Iteration: 8, Func. Count: 76, Neg. LLF: 120.92107788310705
Iteration: 9, Func. Count: 85, Neg. LLF: 120.92107670317662
Iteration: 10, Func. Count: 93, Neg. LLF: 120.921076754132
Optimization terminated successfully (Exit mode 0)
Current function value: 120.92107670317662
Iterations: 10
Function evaluations: 93
Gradient evaluations: 10
Iteration: 1, Func. Count: 7, Neg. LLF: 132.76152156021584
Iteration: 2, Func. Count: 14, Neg. LLF: 132.16439190656348
Iteration: 3, Func. Count: 21, Neg. LLF: 121.20421749289976
Iteration: 4, Func. Count: 27, Neg. LLF: 121.52940329282384
Iteration: 5, Func. Count: 34, Neg. LLF: 121.06827163936687
Iteration: 6, Func. Count: 40, Neg. LLF: 120.90461214057687
Iteration: 7, Func. Count: 46, Neg. LLF: 120.90161904405375
Iteration: 8, Func. Count: 52, Neg. LLF: 120.90155275002033
Iteration: 9, Func. Count: 58, Neg. LLF: 120.90154870153499
Iteration: 10, Func. Count: 63, Neg. LLF: 120.90154870148604
Optimization terminated successfully (Exit mode 0)
Current function value: 120.90154870153499
Iterations: 10
Function evaluations: 63
Gradient evaluations: 10
Iteration: 1, Func. Count: 8, Neg. LLF: 131.56031599177243
Iteration: 2, Func. Count: 16, Neg. LLF: 125.71836890603129
Iteration: 3, Func. Count: 24, Neg. LLF: 121.4657068765691
Iteration: 4, Func. Count: 31, Neg. LLF: 121.04262074678681
Iteration: 5, Func. Count: 38, Neg. LLF: 122.1348089317297
Iteration: 6, Func. Count: 46, Neg. LLF: 120.89609716028129
Iteration: 7, Func. Count: 53, Neg. LLF: 120.91426701906173
Iteration: 8, Func. Count: 61, Neg. LLF: 120.8735040198031
Iteration: 9, Func. Count: 68, Neg. LLF: 120.87348177375135
Iteration: 10, Func. Count: 75, Neg. LLF: 120.87347193576149
Iteration: 11, Func. Count: 82, Neg. LLF: 120.87345695533057
Iteration: 12, Func. Count: 88, Neg. LLF: 120.8734569553448
Optimization terminated successfully (Exit mode 0)
Current function value: 120.87345695533057
Iterations: 12
Function evaluations: 88
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 131.56388807013096
Iteration: 2, Func. Count: 18, Neg. LLF: 125.18712654533533
Iteration: 3, Func. Count: 27, Neg. LLF: 121.41077588351044
Iteration: 4, Func. Count: 35, Neg. LLF: 121.21415256349171
Iteration: 5, Func. Count: 43, Neg. LLF: 122.65891839617866
Iteration: 6, Func. Count: 53, Neg. LLF: 120.89097148572783
Iteration: 7, Func. Count: 61, Neg. LLF: 120.87409626780693
Iteration: 8, Func. Count: 69, Neg. LLF: 120.87360329636935
Iteration: 9, Func. Count: 77, Neg. LLF: 120.87352308873166
Iteration: 10, Func. Count: 85, Neg. LLF: 120.8734880023008
Iteration: 11, Func. Count: 93, Neg. LLF: 120.87346060003688
Iteration: 12, Func. Count: 101, Neg. LLF: 120.87345712941948
Iteration: 13, Func. Count: 108, Neg. LLF: 120.87345715601361
Optimization terminated successfully (Exit mode 0)
Current function value: 120.87345712941948
Iterations: 13
Function evaluations: 108
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 129.27746950424688
Iteration: 2, Func. Count: 20, Neg. LLF: 124.24008340617515
Iteration: 3, Func. Count: 30, Neg. LLF: 121.4513609482845
Iteration: 4, Func. Count: 39, Neg. LLF: 121.1922315408653
Iteration: 5, Func. Count: 48, Neg. LLF: 126.42092850945463
Iteration: 6, Func. Count: 58, Neg. LLF: 120.9244072773484
Iteration: 7, Func. Count: 67, Neg. LLF: 120.97149891726266
Iteration: 8, Func. Count: 77, Neg. LLF: 120.87649613546506
Iteration: 9, Func. Count: 86, Neg. LLF: 120.87471025801693
Iteration: 10, Func. Count: 95, Neg. LLF: 120.87426993405649
Iteration: 11, Func. Count: 104, Neg. LLF: 120.87347432327685
Iteration: 12, Func. Count: 113, Neg. LLF: 120.87345895121497
Iteration: 13, Func. Count: 122, Neg. LLF: 120.87345698778492
Iteration: 14, Func. Count: 130, Neg. LLF: 120.87345700064523
Optimization terminated successfully (Exit mode 0)
Current function value: 120.87345698778492
Iterations: 14
Function evaluations: 130
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 129.66578672295103
Iteration: 2, Func. Count: 22, Neg. LLF: 124.77662777181337
Iteration: 3, Func. Count: 33, Neg. LLF: 124.67723627164544
Iteration: 4, Func. Count: 44, Neg. LLF: 120.97356294623292
Iteration: 5, Func. Count: 54, Neg. LLF: 121.38669576721948
Iteration: 6, Func. Count: 65, Neg. LLF: 120.87679801345344
Iteration: 7, Func. Count: 75, Neg. LLF: 120.87407350296672
Iteration: 8, Func. Count: 85, Neg. LLF: 120.87387038290072
Iteration: 9, Func. Count: 95, Neg. LLF: 120.87360129823315
Iteration: 10, Func. Count: 105, Neg. LLF: 120.87345745776308
Iteration: 11, Func. Count: 114, Neg. LLF: 120.87345750159734
Optimization terminated successfully (Exit mode 0)
Current function value: 120.87345745776308
Iterations: 11
Function evaluations: 114
Gradient evaluations: 11
Iteration: 1, Func. Count: 8, Neg. LLF: 134.1833080257415
Iteration: 2, Func. Count: 16, Neg. LLF: 145.10749461159483
Iteration: 3, Func. Count: 24, Neg. LLF: 121.3323198341755
Iteration: 4, Func. Count: 31, Neg. LLF: 121.09841828327653
Iteration: 5, Func. Count: 39, Neg. LLF: 124.42111871751308
Iteration: 6, Func. Count: 49, Neg. LLF: 120.33859322458268
Iteration: 7, Func. Count: 56, Neg. LLF: 120.292944507767
Iteration: 8, Func. Count: 63, Neg. LLF: 120.27216276071532
Iteration: 9, Func. Count: 70, Neg. LLF: 120.269012322097
Iteration: 10, Func. Count: 77, Neg. LLF: 120.26564075626662
Iteration: 11, Func. Count: 84, Neg. LLF: 120.26554661218698
Iteration: 12, Func. Count: 91, Neg. LLF: 120.26554026946188
Iteration: 13, Func. Count: 97, Neg. LLF: 120.26554026946125
Optimization terminated successfully (Exit mode 0)
Current function value: 120.26554026946188
Iterations: 13
Function evaluations: 97
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 130.20646512694242
Iteration: 2, Func. Count: 18, Neg. LLF: 124.48332384089005
Iteration: 3, Func. Count: 27, Neg. LLF: 122.35761688786177
Iteration: 4, Func. Count: 36, Neg. LLF: 123.105711893811
Iteration: 5, Func. Count: 45, Neg. LLF: 136.32918391724345
Iteration: 6, Func. Count: 54, Neg. LLF: 120.32690074625447
Iteration: 7, Func. Count: 62, Neg. LLF: 120.2912675384959
Iteration: 8, Func. Count: 70, Neg. LLF: 120.27029662516497
Iteration: 9, Func. Count: 78, Neg. LLF: 120.26579684011428
Iteration: 10, Func. Count: 86, Neg. LLF: 120.26555503088127
Iteration: 11, Func. Count: 94, Neg. LLF: 120.26554239495934
Iteration: 12, Func. Count: 102, Neg. LLF: 120.26554034329206
Iteration: 13, Func. Count: 109, Neg. LLF: 120.26554036534641
Optimization terminated successfully (Exit mode 0)
Current function value: 120.26554034329206
Iterations: 13
Function evaluations: 109
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 130.2282908649765
Iteration: 2, Func. Count: 20, Neg. LLF: 123.76735765864677
Iteration: 3, Func. Count: 30, Neg. LLF: 122.34201806327978
Iteration: 4, Func. Count: 40, Neg. LLF: 121.52942988015715
Iteration: 5, Func. Count: 50, Neg. LLF: 128.47929097194069
Iteration: 6, Func. Count: 60, Neg. LLF: 120.9953561191972
Iteration: 7, Func. Count: 70, Neg. LLF: 120.63646492081051
Iteration: 8, Func. Count: 80, Neg. LLF: 120.27067205191464
Iteration: 9, Func. Count: 89, Neg. LLF: 120.26129056321344
Iteration: 10, Func. Count: 98, Neg. LLF: 120.25961368031389
Iteration: 11, Func. Count: 107, Neg. LLF: 120.25930707760565
Iteration: 12, Func. Count: 116, Neg. LLF: 120.25930454552146
Iteration: 13, Func. Count: 124, Neg. LLF: 120.25930454552223
Optimization terminated successfully (Exit mode 0)
Current function value: 120.25930454552146
Iterations: 13
Function evaluations: 124
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 129.44903689622112
Iteration: 2, Func. Count: 22, Neg. LLF: 126.24925188076203
Iteration: 3, Func. Count: 33, Neg. LLF: 122.99373144868851
Iteration: 4, Func. Count: 44, Neg. LLF: 132.55266166902592
Iteration: 5, Func. Count: 55, Neg. LLF: 124.74159032424123
Iteration: 6, Func. Count: 66, Neg. LLF: 122.46153402485083
Iteration: 7, Func. Count: 77, Neg. LLF: 120.16838128750544
Iteration: 8, Func. Count: 87, Neg. LLF: 119.90922218246975
Iteration: 9, Func. Count: 97, Neg. LLF: 119.8868047388881
Iteration: 10, Func. Count: 107, Neg. LLF: 119.881902306498
Iteration: 11, Func. Count: 117, Neg. LLF: 119.88182483034339
Iteration: 12, Func. Count: 127, Neg. LLF: 119.8818221735542
Iteration: 13, Func. Count: 137, Neg. LLF: 119.8818219191156
Optimization terminated successfully (Exit mode 0)
Current function value: 119.8818219191156
Iterations: 13
Function evaluations: 137
Gradient evaluations: 13
Iteration: 1, Func. Count: 12, Neg. LLF: 128.7011685807992
Iteration: 2, Func. Count: 24, Neg. LLF: 122.91217240836366
Iteration: 3, Func. Count: 35, Neg. LLF: 137.98923006649846
Iteration: 4, Func. Count: 49, Neg. LLF: 232.67661511861303
Iteration: 5, Func. Count: 61, Neg. LLF: 128.47183405705036
Iteration: 6, Func. Count: 73, Neg. LLF: 121.46326419733015
Iteration: 7, Func. Count: 85, Neg. LLF: 124.13914754269538
Iteration: 8, Func. Count: 97, Neg. LLF: 119.95470175470271
Iteration: 9, Func. Count: 108, Neg. LLF: 119.88982067898608
Iteration: 10, Func. Count: 119, Neg. LLF: 119.8845212667311
Iteration: 11, Func. Count: 130, Neg. LLF: 119.88312291755352
Iteration: 12, Func. Count: 141, Neg. LLF: 119.88205055908271
Iteration: 13, Func. Count: 152, Neg. LLF: 119.88183624925833
Iteration: 14, Func. Count: 163, Neg. LLF: 119.8818221565634
Iteration: 15, Func. Count: 173, Neg. LLF: 119.88182227496456
Optimization terminated successfully (Exit mode 0)
Current function value: 119.8818221565634
Iterations: 15
Function evaluations: 173
Gradient evaluations: 15
Iteration: 1, Func. Count: 9, Neg. LLF: 134.07881810906622
Iteration: 2, Func. Count: 18, Neg. LLF: 145.61745233489128
Iteration: 3, Func. Count: 27, Neg. LLF: 121.24226788605267
Iteration: 4, Func. Count: 35, Neg. LLF: 121.02738810596982
Iteration: 5, Func. Count: 44, Neg. LLF: 124.05762036312906
Iteration: 6, Func. Count: 55, Neg. LLF: 120.32747880097938
Iteration: 7, Func. Count: 63, Neg. LLF: 120.27706884488975
Iteration: 8, Func. Count: 71, Neg. LLF: 120.27045372478386
Iteration: 9, Func. Count: 79, Neg. LLF: 120.26725189018457
Iteration: 10, Func. Count: 87, Neg. LLF: 120.2657101057506
Iteration: 11, Func. Count: 95, Neg. LLF: 120.26555240101305
Iteration: 12, Func. Count: 103, Neg. LLF: 120.26554031150333
Iteration: 13, Func. Count: 110, Neg. LLF: 120.2655404269426
Optimization terminated successfully (Exit mode 0)
Current function value: 120.26554031150333
Iterations: 13
Function evaluations: 110
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 130.15646070739442
Iteration: 2, Func. Count: 20, Neg. LLF: 124.40254851360974
Iteration: 3, Func. Count: 30, Neg. LLF: 122.36805049542988
Iteration: 4, Func. Count: 40, Neg. LLF: 123.86748154235295
Iteration: 5, Func. Count: 50, Neg. LLF: 132.27234966835948
Iteration: 6, Func. Count: 60, Neg. LLF: 120.33118454529854
Iteration: 7, Func. Count: 69, Neg. LLF: 120.2982687814393
Iteration: 8, Func. Count: 78, Neg. LLF: 120.26968871685726
Iteration: 9, Func. Count: 87, Neg. LLF: 120.26579074448368
Iteration: 10, Func. Count: 96, Neg. LLF: 120.26555274585138
Iteration: 11, Func. Count: 105, Neg. LLF: 120.26554215020028
Iteration: 12, Func. Count: 114, Neg. LLF: 120.26554032417516
Iteration: 13, Func. Count: 122, Neg. LLF: 120.26554034624095
Optimization terminated successfully (Exit mode 0)
Current function value: 120.26554032417516
Iterations: 13
Function evaluations: 122
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 130.19736206827773
Iteration: 2, Func. Count: 22, Neg. LLF: 123.71803599826734
Iteration: 3, Func. Count: 33, Neg. LLF: 122.33686164511802
Iteration: 4, Func. Count: 44, Neg. LLF: 121.5315554167513
Iteration: 5, Func. Count: 55, Neg. LLF: 129.1308274721256
Iteration: 6, Func. Count: 66, Neg. LLF: 121.02917344554284
Iteration: 7, Func. Count: 77, Neg. LLF: 120.64330360035932
Iteration: 8, Func. Count: 88, Neg. LLF: 120.26998625033772
Iteration: 9, Func. Count: 98, Neg. LLF: 120.2611596377191
Iteration: 10, Func. Count: 108, Neg. LLF: 120.25961558515272
Iteration: 11, Func. Count: 118, Neg. LLF: 120.25930712779122
Iteration: 12, Func. Count: 128, Neg. LLF: 120.25930455085567
Iteration: 13, Func. Count: 137, Neg. LLF: 120.2593045508539
Optimization terminated successfully (Exit mode 0)
Current function value: 120.25930455085567
Iterations: 13
Function evaluations: 137
Gradient evaluations: 13
Iteration: 1, Func. Count: 12, Neg. LLF: 129.42199320642334
Iteration: 2, Func. Count: 24, Neg. LLF: 126.29242189605937
Iteration: 3, Func. Count: 36, Neg. LLF: 122.98718782437041
Iteration: 4, Func. Count: 48, Neg. LLF: 132.53413620785736
Iteration: 5, Func. Count: 60, Neg. LLF: 124.7157780483458
Iteration: 6, Func. Count: 72, Neg. LLF: 122.37412168792936
Iteration: 7, Func. Count: 84, Neg. LLF: 120.1646796713894
Iteration: 8, Func. Count: 95, Neg. LLF: 119.90899967611357
Iteration: 9, Func. Count: 106, Neg. LLF: 119.88686338556339
Iteration: 10, Func. Count: 117, Neg. LLF: 119.8818974772921
Iteration: 11, Func. Count: 128, Neg. LLF: 119.88182442660369
Iteration: 12, Func. Count: 139, Neg. LLF: 119.88182199295515
Iteration: 13, Func. Count: 149, Neg. LLF: 119.88182199294594
Optimization terminated successfully (Exit mode 0)
Current function value: 119.88182199295515
Iterations: 13
Function evaluations: 149
Gradient evaluations: 13
Iteration: 1, Func. Count: 13, Neg. LLF: 128.68511989552638
Iteration: 2, Func. Count: 26, Neg. LLF: 122.9350934594466
Iteration: 3, Func. Count: 38, Neg. LLF: 137.9651168475499
Iteration: 4, Func. Count: 53, Neg. LLF: 233.88475333908193
Iteration: 5, Func. Count: 66, Neg. LLF: 128.65190563102084
Iteration: 6, Func. Count: 79, Neg. LLF: 121.03079718618682
Iteration: 7, Func. Count: 92, Neg. LLF: 125.07113716262435
Iteration: 8, Func. Count: 105, Neg. LLF: 119.94835014138764
Iteration: 9, Func. Count: 117, Neg. LLF: 119.8874472832573
Iteration: 10, Func. Count: 129, Neg. LLF: 119.88403202814912
Iteration: 11, Func. Count: 141, Neg. LLF: 119.88287970207303
Iteration: 12, Func. Count: 153, Neg. LLF: 119.8818515130084
Iteration: 13, Func. Count: 165, Neg. LLF: 119.88182237734766
Iteration: 14, Func. Count: 177, Neg. LLF: 119.88182185289348
Optimization terminated successfully (Exit mode 0)
Current function value: 119.88182185289348
Iterations: 14
Function evaluations: 177
Gradient evaluations: 14
Iteration: 1, Func. Count: 6, Neg. LLF: 137.40074035578272
Iteration: 2, Func. Count: 12, Neg. LLF: 160.70219808203166
Iteration: 3, Func. Count: 18, Neg. LLF: 124.81672342824649
Iteration: 4, Func. Count: 23, Neg. LLF: 124.78001816597067
Iteration: 5, Func. Count: 28, Neg. LLF: 124.77696644809112
Iteration: 6, Func. Count: 33, Neg. LLF: 124.77564162844416
Iteration: 7, Func. Count: 38, Neg. LLF: 124.77548719011843
Iteration: 8, Func. Count: 43, Neg. LLF: 124.7754821041793
Iteration: 9, Func. Count: 47, Neg. LLF: 124.77548213326352
Optimization terminated successfully (Exit mode 0)
Current function value: 124.7754821041793
Iterations: 9
Function evaluations: 47
Gradient evaluations: 9
Iteration: 1, Func. Count: 7, Neg. LLF: 131.85037827889647
Iteration: 2, Func. Count: 14, Neg. LLF: 136.56283631459976
Iteration: 3, Func. Count: 21, Neg. LLF: 125.16083840564396
Iteration: 4, Func. Count: 27, Neg. LLF: 124.80335414364009
Iteration: 5, Func. Count: 33, Neg. LLF: 124.78369950715498
Iteration: 6, Func. Count: 39, Neg. LLF: 124.77656980181219
Iteration: 7, Func. Count: 45, Neg. LLF: 124.77576007007127
Iteration: 8, Func. Count: 51, Neg. LLF: 124.77548233557324
Iteration: 9, Func. Count: 56, Neg. LLF: 124.7754823498718
Optimization terminated successfully (Exit mode 0)
Current function value: 124.77548233557324
Iterations: 9
Function evaluations: 56
Gradient evaluations: 9
Iteration: 1, Func. Count: 8, Neg. LLF: 130.7566220324335
Iteration: 2, Func. Count: 16, Neg. LLF: 138.9232896265258
Iteration: 3, Func. Count: 24, Neg. LLF: 125.17473986236601
Iteration: 4, Func. Count: 32, Neg. LLF: 124.94434287483892
Iteration: 5, Func. Count: 40, Neg. LLF: 124.61158322951022
Iteration: 6, Func. Count: 47, Neg. LLF: 124.60743467544103
Iteration: 7, Func. Count: 54, Neg. LLF: 124.60589035266713
Iteration: 8, Func. Count: 61, Neg. LLF: 124.60573978099688
Iteration: 9, Func. Count: 68, Neg. LLF: 124.60573919364988
Optimization terminated successfully (Exit mode 0)
Current function value: 124.60573919364988
Iterations: 9
Function evaluations: 68
Gradient evaluations: 9
Iteration: 1, Func. Count: 9, Neg. LLF: 129.80056052624144
Iteration: 2, Func. Count: 18, Neg. LLF: 139.5236378163388
Iteration: 3, Func. Count: 27, Neg. LLF: 125.1290481888433
Iteration: 4, Func. Count: 35, Neg. LLF: 132.44831664634012
Iteration: 5, Func. Count: 44, Neg. LLF: 125.27675117763971
Iteration: 6, Func. Count: 53, Neg. LLF: 124.63119162256918
Iteration: 7, Func. Count: 61, Neg. LLF: 124.61047549027579
Iteration: 8, Func. Count: 69, Neg. LLF: 124.60612533852242
Iteration: 9, Func. Count: 77, Neg. LLF: 124.6058562239722
Iteration: 10, Func. Count: 85, Neg. LLF: 124.60575941707795
Iteration: 11, Func. Count: 93, Neg. LLF: 124.60574145541202
Iteration: 12, Func. Count: 101, Neg. LLF: 124.60573921677423
Iteration: 13, Func. Count: 108, Neg. LLF: 124.60573924164459
Optimization terminated successfully (Exit mode 0)
Current function value: 124.60573921677423
Iterations: 13
Function evaluations: 108
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 128.9974618917016
Iteration: 2, Func. Count: 20, Neg. LLF: 138.5917279090957
Iteration: 3, Func. Count: 30, Neg. LLF: 125.11252537771601
Iteration: 4, Func. Count: 39, Neg. LLF: 274.63550693189165
Iteration: 5, Func. Count: 49, Neg. LLF: 125.72158110480459
Iteration: 6, Func. Count: 59, Neg. LLF: 124.61361499745178
Iteration: 7, Func. Count: 68, Neg. LLF: 124.60749346451922
Iteration: 8, Func. Count: 77, Neg. LLF: 124.60624029006415
Iteration: 9, Func. Count: 86, Neg. LLF: 124.60577725526323
Iteration: 10, Func. Count: 95, Neg. LLF: 124.60574770682098
Iteration: 11, Func. Count: 104, Neg. LLF: 124.60573920340107
Iteration: 12, Func. Count: 112, Neg. LLF: 124.6057392215408
Optimization terminated successfully (Exit mode 0)
Current function value: 124.60573920340107
Iterations: 12
Function evaluations: 112
Gradient evaluations: 12
Iteration: 1, Func. Count: 7, Neg. LLF: 138.20471018331176
Iteration: 2, Func. Count: 14, Neg. LLF: 159.740648810868
Iteration: 3, Func. Count: 21, Neg. LLF: 122.54646369907562
Iteration: 4, Func. Count: 27, Neg. LLF: 125.78581386267406
Iteration: 5, Func. Count: 35, Neg. LLF: 133.3057155352244
Iteration: 6, Func. Count: 43, Neg. LLF: 121.19097282513684
Iteration: 7, Func. Count: 49, Neg. LLF: 120.91088825154947
Iteration: 8, Func. Count: 55, Neg. LLF: 120.89668011912164
Iteration: 9, Func. Count: 61, Neg. LLF: 120.89292589794066
Iteration: 10, Func. Count: 67, Neg. LLF: 120.89292267649698
Iteration: 11, Func. Count: 72, Neg. LLF: 120.892922775701
Optimization terminated successfully (Exit mode 0)
Current function value: 120.89292267649698
Iterations: 11
Function evaluations: 72
Gradient evaluations: 11
Iteration: 1, Func. Count: 8, Neg. LLF: 134.7954855291885
Iteration: 2, Func. Count: 16, Neg. LLF: 130.5526306478078
Iteration: 3, Func. Count: 24, Neg. LLF: 123.2808822863476
Iteration: 4, Func. Count: 32, Neg. LLF: 122.30658390115605
Iteration: 5, Func. Count: 40, Neg. LLF: 122.14304420280847
Iteration: 6, Func. Count: 48, Neg. LLF: 120.91452734917956
Iteration: 7, Func. Count: 55, Neg. LLF: 120.88379788283893
Iteration: 8, Func. Count: 62, Neg. LLF: 120.88189069921592
Iteration: 9, Func. Count: 69, Neg. LLF: 120.88151526436562
Iteration: 10, Func. Count: 76, Neg. LLF: 120.88151181046867
Iteration: 11, Func. Count: 82, Neg. LLF: 120.88151181042768
Optimization terminated successfully (Exit mode 0)
Current function value: 120.88151181046867
Iterations: 11
Function evaluations: 82
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 133.7224720064205
Iteration: 2, Func. Count: 18, Neg. LLF: 130.57005800978504
Iteration: 3, Func. Count: 27, Neg. LLF: 123.0591490410697
Iteration: 4, Func. Count: 36, Neg. LLF: 123.42363833465846
Iteration: 5, Func. Count: 45, Neg. LLF: 121.49499375972682
Iteration: 6, Func. Count: 54, Neg. LLF: 121.03668191119598
Iteration: 7, Func. Count: 62, Neg. LLF: 120.89970119734308
Iteration: 8, Func. Count: 70, Neg. LLF: 120.88343896573176
Iteration: 9, Func. Count: 78, Neg. LLF: 120.88153656924493
Iteration: 10, Func. Count: 86, Neg. LLF: 120.88151191170235
Iteration: 11, Func. Count: 93, Neg. LLF: 120.88151193643922
Optimization terminated successfully (Exit mode 0)
Current function value: 120.88151191170235
Iterations: 11
Function evaluations: 93
Gradient evaluations: 11
Iteration: 1, Func. Count: 10, Neg. LLF: 132.94799023890323
Iteration: 2, Func. Count: 20, Neg. LLF: 129.70412440841307
Iteration: 3, Func. Count: 30, Neg. LLF: 123.19914114705949
Iteration: 4, Func. Count: 40, Neg. LLF: 122.67346216720726
Iteration: 5, Func. Count: 50, Neg. LLF: 121.56722071431558
Iteration: 6, Func. Count: 60, Neg. LLF: 120.97859929105347
Iteration: 7, Func. Count: 69, Neg. LLF: 120.89116737290573
Iteration: 8, Func. Count: 78, Neg. LLF: 120.88630241606147
Iteration: 9, Func. Count: 87, Neg. LLF: 120.88179286006115
Iteration: 10, Func. Count: 96, Neg. LLF: 120.88153867579622
Iteration: 11, Func. Count: 105, Neg. LLF: 120.88151181337142
Iteration: 12, Func. Count: 113, Neg. LLF: 120.88151182616794
Optimization terminated successfully (Exit mode 0)
Current function value: 120.88151181337142
Iterations: 12
Function evaluations: 113
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 131.83967209928014
Iteration: 2, Func. Count: 22, Neg. LLF: 129.42813015611904
Iteration: 3, Func. Count: 33, Neg. LLF: 122.89514971882886
Iteration: 4, Func. Count: 44, Neg. LLF: 122.95285523673516
Iteration: 5, Func. Count: 55, Neg. LLF: 123.5047928920833
Iteration: 6, Func. Count: 66, Neg. LLF: 121.017799084915
Iteration: 7, Func. Count: 76, Neg. LLF: 120.88902510094903
Iteration: 8, Func. Count: 86, Neg. LLF: 120.88222170490457
Iteration: 9, Func. Count: 96, Neg. LLF: 120.88154300242103
Iteration: 10, Func. Count: 106, Neg. LLF: 120.88151266637307
Iteration: 11, Func. Count: 116, Neg. LLF: 120.88151175347592
Optimization terminated successfully (Exit mode 0)
Current function value: 120.88151175347592
Iterations: 11
Function evaluations: 116
Gradient evaluations: 11
Iteration: 1, Func. Count: 8, Neg. LLF: 138.60147332908642
Iteration: 2, Func. Count: 16, Neg. LLF: 161.27998230952426
Iteration: 3, Func. Count: 24, Neg. LLF: 122.36436685318947
Iteration: 4, Func. Count: 31, Neg. LLF: 127.54410321655656
Iteration: 5, Func. Count: 40, Neg. LLF: 131.87675833465244
Iteration: 6, Func. Count: 49, Neg. LLF: 121.10660612431515
Iteration: 7, Func. Count: 56, Neg. LLF: 120.90788219345596
Iteration: 8, Func. Count: 63, Neg. LLF: 120.89565511191529
Iteration: 9, Func. Count: 70, Neg. LLF: 120.89089354408951
Iteration: 10, Func. Count: 77, Neg. LLF: 120.89035422332032
Iteration: 11, Func. Count: 84, Neg. LLF: 120.89029724925926
Iteration: 12, Func. Count: 90, Neg. LLF: 120.89029724933819
Optimization terminated successfully (Exit mode 0)
Current function value: 120.89029724925926
Iterations: 12
Function evaluations: 90
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 134.6191649830708
Iteration: 2, Func. Count: 18, Neg. LLF: 130.5738982202365
Iteration: 3, Func. Count: 27, Neg. LLF: 123.30915251746234
Iteration: 4, Func. Count: 36, Neg. LLF: 121.86478977740526
Iteration: 5, Func. Count: 45, Neg. LLF: 121.20599506762629
Iteration: 6, Func. Count: 53, Neg. LLF: 120.9560479100524
Iteration: 7, Func. Count: 61, Neg. LLF: 120.89011626160632
Iteration: 8, Func. Count: 69, Neg. LLF: 120.87922891276514
Iteration: 9, Func. Count: 77, Neg. LLF: 120.8735970781946
Iteration: 10, Func. Count: 85, Neg. LLF: 120.87346597182716
Iteration: 11, Func. Count: 93, Neg. LLF: 120.87345816094098
Iteration: 12, Func. Count: 101, Neg. LLF: 120.87345698727394
Iteration: 13, Func. Count: 108, Neg. LLF: 120.87345698727712
Optimization terminated successfully (Exit mode 0)
Current function value: 120.87345698727394
Iterations: 13
Function evaluations: 108
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 133.50890145730662
Iteration: 2, Func. Count: 20, Neg. LLF: 130.55402475108878
Iteration: 3, Func. Count: 30, Neg. LLF: 123.08786194476207
Iteration: 4, Func. Count: 40, Neg. LLF: 123.5440202688685
Iteration: 5, Func. Count: 50, Neg. LLF: 121.49539766369071
Iteration: 6, Func. Count: 60, Neg. LLF: 121.00731265445508
Iteration: 7, Func. Count: 69, Neg. LLF: 120.89403558696519
Iteration: 8, Func. Count: 78, Neg. LLF: 120.87875041779674
Iteration: 9, Func. Count: 87, Neg. LLF: 120.87437703776882
Iteration: 10, Func. Count: 96, Neg. LLF: 120.87353194858046
Iteration: 11, Func. Count: 105, Neg. LLF: 120.87345897936277
Iteration: 12, Func. Count: 114, Neg. LLF: 120.87345693665443
Iteration: 13, Func. Count: 122, Neg. LLF: 120.8734569632666
Optimization terminated successfully (Exit mode 0)
Current function value: 120.87345693665443
Iterations: 13
Function evaluations: 122
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 132.7358584543815
Iteration: 2, Func. Count: 22, Neg. LLF: 129.6857546085525
Iteration: 3, Func. Count: 33, Neg. LLF: 123.25358202600121
Iteration: 4, Func. Count: 44, Neg. LLF: 122.75549055907226
Iteration: 5, Func. Count: 55, Neg. LLF: 121.55205560019672
Iteration: 6, Func. Count: 66, Neg. LLF: 120.99332782166701
Iteration: 7, Func. Count: 76, Neg. LLF: 120.99047642778918
Iteration: 8, Func. Count: 87, Neg. LLF: 120.88026413018632
Iteration: 9, Func. Count: 97, Neg. LLF: 120.8739117013347
Iteration: 10, Func. Count: 107, Neg. LLF: 120.87348477564684
Iteration: 11, Func. Count: 117, Neg. LLF: 120.87345850936079
Iteration: 12, Func. Count: 127, Neg. LLF: 120.87345693419567
Iteration: 13, Func. Count: 136, Neg. LLF: 120.87345694704672
Optimization terminated successfully (Exit mode 0)
Current function value: 120.87345693419567
Iterations: 13
Function evaluations: 136
Gradient evaluations: 13
Iteration: 1, Func. Count: 12, Neg. LLF: 131.61859553056019
Iteration: 2, Func. Count: 24, Neg. LLF: 129.4006607551181
Iteration: 3, Func. Count: 36, Neg. LLF: 122.92669253605445
Iteration: 4, Func. Count: 48, Neg. LLF: 123.03327054780837
Iteration: 5, Func. Count: 60, Neg. LLF: 124.57411577063148
Iteration: 6, Func. Count: 72, Neg. LLF: 121.00791172351394
Iteration: 7, Func. Count: 83, Neg. LLF: 120.87587307642744
Iteration: 8, Func. Count: 94, Neg. LLF: 120.8741933037787
Iteration: 9, Func. Count: 105, Neg. LLF: 120.87348147715204
Iteration: 10, Func. Count: 116, Neg. LLF: 120.87345735687575
Iteration: 11, Func. Count: 126, Neg. LLF: 120.87345740067207
Optimization terminated successfully (Exit mode 0)
Current function value: 120.87345735687575
Iterations: 11
Function evaluations: 126
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 137.87070522700364
Iteration: 2, Func. Count: 18, Neg. LLF: 160.95990263381563
Iteration: 3, Func. Count: 27, Neg. LLF: 122.6833520674852
Iteration: 4, Func. Count: 36, Neg. LLF: 123.39685845170158
Iteration: 5, Func. Count: 45, Neg. LLF: 131.8568902082388
Iteration: 6, Func. Count: 54, Neg. LLF: 121.27693069990427
Iteration: 7, Func. Count: 63, Neg. LLF: 120.39914993848375
Iteration: 8, Func. Count: 71, Neg. LLF: 120.346689194683
Iteration: 9, Func. Count: 79, Neg. LLF: 120.29975425952682
Iteration: 10, Func. Count: 87, Neg. LLF: 120.26394933953863
Iteration: 11, Func. Count: 95, Neg. LLF: 120.26262192085905
Iteration: 12, Func. Count: 103, Neg. LLF: 120.2624604537137
Iteration: 13, Func. Count: 111, Neg. LLF: 120.26243955823888
Iteration: 14, Func. Count: 119, Neg. LLF: 120.26243302784735
Iteration: 15, Func. Count: 126, Neg. LLF: 120.26243302785959
Optimization terminated successfully (Exit mode 0)
Current function value: 120.26243302784735
Iterations: 15
Function evaluations: 126
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 134.36530866356975
Iteration: 2, Func. Count: 20, Neg. LLF: 130.45805273499028
Iteration: 3, Func. Count: 30, Neg. LLF: 121.59272675816199
Iteration: 4, Func. Count: 39, Neg. LLF: 122.02394310592146
Iteration: 5, Func. Count: 49, Neg. LLF: 124.93022112956082
Iteration: 6, Func. Count: 61, Neg. LLF: 121.68867568721609
Iteration: 7, Func. Count: 71, Neg. LLF: 120.80220073149165
Iteration: 8, Func. Count: 81, Neg. LLF: 120.27237690033705
Iteration: 9, Func. Count: 90, Neg. LLF: 120.26325698112935
Iteration: 10, Func. Count: 99, Neg. LLF: 120.26246860601799
Iteration: 11, Func. Count: 108, Neg. LLF: 120.26243492755836
Iteration: 12, Func. Count: 117, Neg. LLF: 120.26243314936325
Iteration: 13, Func. Count: 125, Neg. LLF: 120.26243317442753
Optimization terminated successfully (Exit mode 0)
Current function value: 120.26243314936325
Iterations: 13
Function evaluations: 125
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 129.27853012714152
Iteration: 2, Func. Count: 22, Neg. LLF: 130.00984712251403
Iteration: 3, Func. Count: 33, Neg. LLF: 122.85791042637788
Iteration: 4, Func. Count: 44, Neg. LLF: 131.17107356605476
Iteration: 5, Func. Count: 55, Neg. LLF: 123.5130950192552
Iteration: 6, Func. Count: 66, Neg. LLF: 120.97132771660502
Iteration: 7, Func. Count: 77, Neg. LLF: 120.38178931868377
Iteration: 8, Func. Count: 87, Neg. LLF: 120.27656009690502
Iteration: 9, Func. Count: 97, Neg. LLF: 120.27330568240971
Iteration: 10, Func. Count: 108, Neg. LLF: 120.25962062210056
Iteration: 11, Func. Count: 118, Neg. LLF: 120.25940538265813
Iteration: 12, Func. Count: 128, Neg. LLF: 120.2593069317996
Iteration: 13, Func. Count: 138, Neg. LLF: 120.2593045488967
Iteration: 14, Func. Count: 147, Neg. LLF: 120.25930454891605
Optimization terminated successfully (Exit mode 0)
Current function value: 120.2593045488967
Iterations: 14
Function evaluations: 147
Gradient evaluations: 14
Iteration: 1, Func. Count: 12, Neg. LLF: 128.36215507412734
Iteration: 2, Func. Count: 24, Neg. LLF: 132.73008343178878
Iteration: 3, Func. Count: 36, Neg. LLF: 123.10925008388234
Iteration: 4, Func. Count: 48, Neg. LLF: 123.72594818459956
Iteration: 5, Func. Count: 60, Neg. LLF: 162.37582478342554
Iteration: 6, Func. Count: 72, Neg. LLF: 133.81045168201535
Iteration: 7, Func. Count: 84, Neg. LLF: 122.99562571165433
Iteration: 8, Func. Count: 96, Neg. LLF: 119.93773461711105
Iteration: 9, Func. Count: 107, Neg. LLF: 119.88535082690393
Iteration: 10, Func. Count: 118, Neg. LLF: 119.88280648941405
Iteration: 11, Func. Count: 129, Neg. LLF: 119.88214170203669
Iteration: 12, Func. Count: 140, Neg. LLF: 119.8819103262833
Iteration: 13, Func. Count: 151, Neg. LLF: 119.88182412944992
Iteration: 14, Func. Count: 162, Neg. LLF: 119.88182184637739
Iteration: 15, Func. Count: 172, Neg. LLF: 119.8818218463465
Optimization terminated successfully (Exit mode 0)
Current function value: 119.88182184637739
Iterations: 15
Function evaluations: 172
Gradient evaluations: 15
Iteration: 1, Func. Count: 13, Neg. LLF: 128.423424674095
Iteration: 2, Func. Count: 26, Neg. LLF: 128.75566535051664
Iteration: 3, Func. Count: 39, Neg. LLF: 122.80028057628319
Iteration: 4, Func. Count: 52, Neg. LLF: 128.96340483819972
Iteration: 5, Func. Count: 65, Neg. LLF: 134.93677230851947
Iteration: 6, Func. Count: 78, Neg. LLF: 122.94697312702543
Iteration: 7, Func. Count: 91, Neg. LLF: 120.8819727611757
Iteration: 8, Func. Count: 104, Neg. LLF: 120.17037138777575
Iteration: 9, Func. Count: 116, Neg. LLF: 119.91888914064315
Iteration: 10, Func. Count: 128, Neg. LLF: 119.91328331699863
Iteration: 11, Func. Count: 141, Neg. LLF: 119.88902897520853
Iteration: 12, Func. Count: 153, Neg. LLF: 119.88194120014843
Iteration: 13, Func. Count: 165, Neg. LLF: 119.88182794950554
Iteration: 14, Func. Count: 177, Neg. LLF: 119.88182251288977
Iteration: 15, Func. Count: 189, Neg. LLF: 119.88182183164174
Optimization terminated successfully (Exit mode 0)
Current function value: 119.88182183164174
Iterations: 15
Function evaluations: 189
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 138.36961639415765
Iteration: 2, Func. Count: 20, Neg. LLF: 156.3235516844451
Iteration: 3, Func. Count: 30, Neg. LLF: 122.6301630802415
Iteration: 4, Func. Count: 40, Neg. LLF: 122.97401055196345
Iteration: 5, Func. Count: 50, Neg. LLF: 128.50983059639788
Iteration: 6, Func. Count: 60, Neg. LLF: 120.6750311712859
Iteration: 7, Func. Count: 69, Neg. LLF: 120.44509731126469
Iteration: 8, Func. Count: 78, Neg. LLF: 120.44333821953731
Iteration: 9, Func. Count: 88, Neg. LLF: 120.28032486821833
Iteration: 10, Func. Count: 97, Neg. LLF: 120.27361150505502
Iteration: 11, Func. Count: 106, Neg. LLF: 120.26346447861619
Iteration: 12, Func. Count: 115, Neg. LLF: 120.2624987540779
Iteration: 13, Func. Count: 124, Neg. LLF: 120.26243598491472
Iteration: 14, Func. Count: 133, Neg. LLF: 120.262433240084
Iteration: 15, Func. Count: 141, Neg. LLF: 120.26243335518303
Optimization terminated successfully (Exit mode 0)
Current function value: 120.262433240084
Iterations: 15
Function evaluations: 141
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 134.0955296648219
Iteration: 2, Func. Count: 22, Neg. LLF: 130.26573345824613
Iteration: 3, Func. Count: 33, Neg. LLF: 122.58554221184514
Iteration: 4, Func. Count: 44, Neg. LLF: 237.1963369457864
Iteration: 5, Func. Count: 55, Neg. LLF: 120.89524524837901
Iteration: 6, Func. Count: 65, Neg. LLF: 121.13371493468823
Iteration: 7, Func. Count: 76, Neg. LLF: 128.40385024625218
Iteration: 8, Func. Count: 87, Neg. LLF: 120.36438789920692
Iteration: 9, Func. Count: 97, Neg. LLF: 120.33535982684003
Iteration: 10, Func. Count: 107, Neg. LLF: 120.28457942507086
Iteration: 11, Func. Count: 117, Neg. LLF: 120.26907746373537
Iteration: 12, Func. Count: 127, Neg. LLF: 120.26576665469992
Iteration: 13, Func. Count: 137, Neg. LLF: 120.26281767629933
Iteration: 14, Func. Count: 147, Neg. LLF: 120.2625399829671
Iteration: 15, Func. Count: 157, Neg. LLF: 120.26244746965989
Iteration: 16, Func. Count: 167, Neg. LLF: 120.26243465885945
Iteration: 17, Func. Count: 177, Neg. LLF: 120.2624329797884
Iteration: 18, Func. Count: 186, Neg. LLF: 120.26243300488366
Optimization terminated successfully (Exit mode 0)
Current function value: 120.2624329797884
Iterations: 18
Function evaluations: 186
Gradient evaluations: 18
Iteration: 1, Func. Count: 12, Neg. LLF: 129.28100105743397
Iteration: 2, Func. Count: 24, Neg. LLF: 132.27632445527476
Iteration: 3, Func. Count: 36, Neg. LLF: 122.65876490498393
Iteration: 4, Func. Count: 48, Neg. LLF: 130.99496891995946
Iteration: 5, Func. Count: 60, Neg. LLF: 124.83729006015271
Iteration: 6, Func. Count: 72, Neg. LLF: 122.08035597783214
Iteration: 7, Func. Count: 84, Neg. LLF: 120.51734015404944
Iteration: 8, Func. Count: 95, Neg. LLF: 120.27155355315695
Iteration: 9, Func. Count: 106, Neg. LLF: 120.26386636686794
Iteration: 10, Func. Count: 117, Neg. LLF: 120.25944814580275
Iteration: 11, Func. Count: 128, Neg. LLF: 120.25932743480033
Iteration: 12, Func. Count: 139, Neg. LLF: 120.25930661295156
Iteration: 13, Func. Count: 150, Neg. LLF: 120.25930467790947
Iteration: 14, Func. Count: 160, Neg. LLF: 120.2593046778854
Optimization terminated successfully (Exit mode 0)
Current function value: 120.25930467790947
Iterations: 14
Function evaluations: 160
Gradient evaluations: 14
Iteration: 1, Func. Count: 13, Neg. LLF: 128.29257324455577
Iteration: 2, Func. Count: 26, Neg. LLF: 132.70633557321904
Iteration: 3, Func. Count: 39, Neg. LLF: 123.10560541514702
Iteration: 4, Func. Count: 52, Neg. LLF: 123.6703590506823
Iteration: 5, Func. Count: 65, Neg. LLF: 161.99371619360966
Iteration: 6, Func. Count: 78, Neg. LLF: 137.73498862495302
Iteration: 7, Func. Count: 91, Neg. LLF: 122.0347260855526
Iteration: 8, Func. Count: 104, Neg. LLF: 119.93635749790712
Iteration: 9, Func. Count: 116, Neg. LLF: 119.88517774383924
Iteration: 10, Func. Count: 128, Neg. LLF: 119.88342497118393
Iteration: 11, Func. Count: 140, Neg. LLF: 119.88196962584466
Iteration: 12, Func. Count: 152, Neg. LLF: 119.88184531366987
Iteration: 13, Func. Count: 164, Neg. LLF: 119.88182235746531
Iteration: 14, Func. Count: 176, Neg. LLF: 119.88182181797292
Optimization terminated successfully (Exit mode 0)
Current function value: 119.88182181797292
Iterations: 14
Function evaluations: 176
Gradient evaluations: 14
Iteration: 1, Func. Count: 14, Neg. LLF: 128.2161068407415
Iteration: 2, Func. Count: 28, Neg. LLF: 128.74606448083892
Iteration: 3, Func. Count: 42, Neg. LLF: 122.76980206150371
Iteration: 4, Func. Count: 56, Neg. LLF: 126.65225692049304
Iteration: 5, Func. Count: 70, Neg. LLF: 133.11021779944303
Iteration: 6, Func. Count: 84, Neg. LLF: 122.86028609757761
Iteration: 7, Func. Count: 98, Neg. LLF: 120.83286963468186
Iteration: 8, Func. Count: 112, Neg. LLF: 120.07981762700457
Iteration: 9, Func. Count: 125, Neg. LLF: 119.90033124709358
Iteration: 10, Func. Count: 138, Neg. LLF: 119.89121116212569
Iteration: 11, Func. Count: 151, Neg. LLF: 119.88450073191137
Iteration: 12, Func. Count: 164, Neg. LLF: 119.88191500757073
Iteration: 13, Func. Count: 177, Neg. LLF: 119.88182236580171
Iteration: 14, Func. Count: 190, Neg. LLF: 119.88182181162567
Optimization terminated successfully (Exit mode 0)
Current function value: 119.88182181162567
Iterations: 14
Function evaluations: 190
Gradient evaluations: 14
Iteration: 1, Func. Count: 7, Neg. LLF: 140.0790242837749
Iteration: 2, Func. Count: 14, Neg. LLF: 162.8733564325274
Iteration: 3, Func. Count: 21, Neg. LLF: 124.62989851953301
Iteration: 4, Func. Count: 27, Neg. LLF: 125.44118278859463
Iteration: 5, Func. Count: 34, Neg. LLF: 124.60780556905013
Iteration: 6, Func. Count: 40, Neg. LLF: 124.59744930763253
Iteration: 7, Func. Count: 46, Neg. LLF: 124.59567015174237
Iteration: 8, Func. Count: 52, Neg. LLF: 124.59548896305932
Iteration: 9, Func. Count: 58, Neg. LLF: 124.59548833037826
Optimization terminated successfully (Exit mode 0)
Current function value: 124.59548833037826
Iterations: 9
Function evaluations: 58
Gradient evaluations: 9
Iteration: 1, Func. Count: 8, Neg. LLF: 158.52008164897046
Iteration: 2, Func. Count: 17, Neg. LLF: 126.38815967585728
Iteration: 3, Func. Count: 24, Neg. LLF: 126.25400188857287
Iteration: 4, Func. Count: 31, Neg. LLF: 128.03825206944668
Iteration: 5, Func. Count: 39, Neg. LLF: 126.0914067979518
Iteration: 6, Func. Count: 47, Neg. LLF: 126.04642620580543
Iteration: 7, Func. Count: 54, Neg. LLF: 126.04636691543386
Iteration: 8, Func. Count: 61, Neg. LLF: 126.04636332873196
Iteration: 9, Func. Count: 67, Neg. LLF: 126.04636353370702
Optimization terminated successfully (Exit mode 0)
Current function value: 126.04636332873196
Iterations: 9
Function evaluations: 67
Gradient evaluations: 9
Iteration: 1, Func. Count: 9, Neg. LLF: 130.7029757577787
Iteration: 2, Func. Count: 18, Neg. LLF: 139.74746036651237
Iteration: 3, Func. Count: 27, Neg. LLF: 125.18774679226095
Iteration: 4, Func. Count: 36, Neg. LLF: 142.03609940608084
Iteration: 5, Func. Count: 45, Neg. LLF: 124.60443986946638
Iteration: 6, Func. Count: 53, Neg. LLF: 124.59081603826222
Iteration: 7, Func. Count: 61, Neg. LLF: 124.58972992687106
Iteration: 8, Func. Count: 69, Neg. LLF: 124.58915199799777
Iteration: 9, Func. Count: 77, Neg. LLF: 124.58914904559059
Iteration: 10, Func. Count: 84, Neg. LLF: 124.58914904555512
Optimization terminated successfully (Exit mode 0)
Current function value: 124.58914904559059
Iterations: 10
Function evaluations: 84
Gradient evaluations: 10
Iteration: 1, Func. Count: 10, Neg. LLF: 130.00968817381084
Iteration: 2, Func. Count: 20, Neg. LLF: 139.06751661422683
Iteration: 3, Func. Count: 30, Neg. LLF: 125.16788811923266
Iteration: 4, Func. Count: 40, Neg. LLF: 591.5372642091496
Iteration: 5, Func. Count: 50, Neg. LLF: 124.60483379903118
Iteration: 6, Func. Count: 59, Neg. LLF: 124.59271709285541
Iteration: 7, Func. Count: 68, Neg. LLF: 124.59069307756884
Iteration: 8, Func. Count: 77, Neg. LLF: 124.58915937362528
Iteration: 9, Func. Count: 86, Neg. LLF: 124.58914970467065
Iteration: 10, Func. Count: 95, Neg. LLF: 124.58914893139486
Optimization terminated successfully (Exit mode 0)
Current function value: 124.58914893139486
Iterations: 10
Function evaluations: 95
Gradient evaluations: 10
Iteration: 1, Func. Count: 11, Neg. LLF: 129.8212893348695
Iteration: 2, Func. Count: 22, Neg. LLF: 138.8700018891456
Iteration: 3, Func. Count: 33, Neg. LLF: 125.15263531010078
Iteration: 4, Func. Count: 44, Neg. LLF: 436.6347711204971
Iteration: 5, Func. Count: 55, Neg. LLF: 124.60831203466762
Iteration: 6, Func. Count: 65, Neg. LLF: 124.59279426787255
Iteration: 7, Func. Count: 75, Neg. LLF: 124.59590896427072
Iteration: 8, Func. Count: 86, Neg. LLF: 124.58915814689513
Iteration: 9, Func. Count: 96, Neg. LLF: 124.5891517125003
Iteration: 10, Func. Count: 106, Neg. LLF: 124.58914981734172
Iteration: 11, Func. Count: 116, Neg. LLF: 124.58914837273639
Iteration: 12, Func. Count: 125, Neg. LLF: 124.58914838261609
Optimization terminated successfully (Exit mode 0)
Current function value: 124.58914837273639
Iterations: 12
Function evaluations: 125
Gradient evaluations: 12
Iteration: 1, Func. Count: 8, Neg. LLF: 139.5915456781609
Iteration: 2, Func. Count: 16, Neg. LLF: 167.46775335248543
Iteration: 3, Func. Count: 24, Neg. LLF: 123.32780824035017
Iteration: 4, Func. Count: 32, Neg. LLF: 122.11019722521321
Iteration: 5, Func. Count: 40, Neg. LLF: 122.4557449642877
Iteration: 6, Func. Count: 48, Neg. LLF: 121.26599104632771
Iteration: 7, Func. Count: 56, Neg. LLF: 120.80999478709982
Iteration: 8, Func. Count: 64, Neg. LLF: 120.46293804258057
Iteration: 9, Func. Count: 71, Neg. LLF: 120.43669350783225
Iteration: 10, Func. Count: 78, Neg. LLF: 120.43259645576138
Iteration: 11, Func. Count: 85, Neg. LLF: 120.43255315990822
Iteration: 12, Func. Count: 91, Neg. LLF: 120.43255325654752
Optimization terminated successfully (Exit mode 0)
Current function value: 120.43255315990822
Iterations: 12
Function evaluations: 91
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 134.6504696309878
Iteration: 2, Func. Count: 18, Neg. LLF: 132.4752380506092
Iteration: 3, Func. Count: 27, Neg. LLF: 123.51369704225047
Iteration: 4, Func. Count: 36, Neg. LLF: 181.55592998097256
Iteration: 5, Func. Count: 45, Neg. LLF: 120.76466914301318
Iteration: 6, Func. Count: 53, Neg. LLF: 121.05101693010891
Iteration: 7, Func. Count: 62, Neg. LLF: 123.74534442275862
Iteration: 8, Func. Count: 71, Neg. LLF: 120.47166131006836
Iteration: 9, Func. Count: 79, Neg. LLF: 120.43880121690249
Iteration: 10, Func. Count: 87, Neg. LLF: 120.43316447427878
Iteration: 11, Func. Count: 95, Neg. LLF: 120.4326252201461
Iteration: 12, Func. Count: 103, Neg. LLF: 120.43257123226094
Iteration: 13, Func. Count: 111, Neg. LLF: 120.43255389124653
Iteration: 14, Func. Count: 119, Neg. LLF: 120.43255303584495
Optimization terminated successfully (Exit mode 0)
Current function value: 120.43255303584495
Iterations: 14
Function evaluations: 119
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 133.8197840503002
Iteration: 2, Func. Count: 20, Neg. LLF: 132.81060336039275
Iteration: 3, Func. Count: 30, Neg. LLF: 123.26818954897767
Iteration: 4, Func. Count: 40, Neg. LLF: 193.96581033246397
Iteration: 5, Func. Count: 50, Neg. LLF: 120.79044302492109
Iteration: 6, Func. Count: 59, Neg. LLF: 120.74760823621567
Iteration: 7, Func. Count: 69, Neg. LLF: 122.79094369431051
Iteration: 8, Func. Count: 79, Neg. LLF: 120.45629487826906
Iteration: 9, Func. Count: 88, Neg. LLF: 120.43631900282062
Iteration: 10, Func. Count: 97, Neg. LLF: 120.43293001669694
Iteration: 11, Func. Count: 106, Neg. LLF: 120.43261843257531
Iteration: 12, Func. Count: 115, Neg. LLF: 120.43256681397214
Iteration: 13, Func. Count: 124, Neg. LLF: 120.43255360127185
Iteration: 14, Func. Count: 133, Neg. LLF: 120.4325530177415
Optimization terminated successfully (Exit mode 0)
Current function value: 120.4325530177415
Iterations: 14
Function evaluations: 133
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 129.7498086301262
Iteration: 2, Func. Count: 22, Neg. LLF: 131.04882415596109
Iteration: 3, Func. Count: 33, Neg. LLF: 122.58122907245843
Iteration: 4, Func. Count: 44, Neg. LLF: 128.9960644694286
Iteration: 5, Func. Count: 55, Neg. LLF: 121.41697880954634
Iteration: 6, Func. Count: 66, Neg. LLF: 120.7985140105816
Iteration: 7, Func. Count: 77, Neg. LLF: 120.73195087866442
Iteration: 8, Func. Count: 88, Neg. LLF: 122.79598689143019
Iteration: 9, Func. Count: 99, Neg. LLF: 120.37791843648652
Iteration: 10, Func. Count: 109, Neg. LLF: 120.37627038099579
Iteration: 11, Func. Count: 119, Neg. LLF: 120.37607029674729
Iteration: 12, Func. Count: 129, Neg. LLF: 120.37605919583767
Iteration: 13, Func. Count: 138, Neg. LLF: 120.37605919582616
Optimization terminated successfully (Exit mode 0)
Current function value: 120.37605919583767
Iterations: 13
Function evaluations: 138
Gradient evaluations: 13
Iteration: 1, Func. Count: 12, Neg. LLF: 132.80996863372096
Iteration: 2, Func. Count: 24, Neg. LLF: 131.41833598346028
Iteration: 3, Func. Count: 36, Neg. LLF: 123.09413973101664
Iteration: 4, Func. Count: 48, Neg. LLF: 163.31257358645857
Iteration: 5, Func. Count: 60, Neg. LLF: 127.46199520947911
Iteration: 6, Func. Count: 72, Neg. LLF: 120.84698485647738
Iteration: 7, Func. Count: 83, Neg. LLF: 120.46257049223712
Iteration: 8, Func. Count: 94, Neg. LLF: 121.71958883026507
Iteration: 9, Func. Count: 106, Neg. LLF: 120.37854218567801
Iteration: 10, Func. Count: 117, Neg. LLF: 120.37618194829562
Iteration: 11, Func. Count: 128, Neg. LLF: 120.3760793850066
Iteration: 12, Func. Count: 139, Neg. LLF: 120.3760589271399
Iteration: 13, Func. Count: 149, Neg. LLF: 120.37605900950341
Optimization terminated successfully (Exit mode 0)
Current function value: 120.3760589271399
Iterations: 13
Function evaluations: 149
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 139.05208766219107
Iteration: 2, Func. Count: 18, Neg. LLF: 168.1298808707954
Iteration: 3, Func. Count: 27, Neg. LLF: 123.3566893909686
Iteration: 4, Func. Count: 36, Neg. LLF: 122.13264261130288
Iteration: 5, Func. Count: 45, Neg. LLF: 122.46992167583429
Iteration: 6, Func. Count: 54, Neg. LLF: 121.74983550542098
Iteration: 7, Func. Count: 63, Neg. LLF: 120.81549252785757
Iteration: 8, Func. Count: 72, Neg. LLF: 120.48005144942394
Iteration: 9, Func. Count: 80, Neg. LLF: 120.43215400599958
Iteration: 10, Func. Count: 88, Neg. LLF: 120.42544526983818
Iteration: 11, Func. Count: 96, Neg. LLF: 120.42537710289871
Iteration: 12, Func. Count: 103, Neg. LLF: 120.42537710284203
Optimization terminated successfully (Exit mode 0)
Current function value: 120.42537710289871
Iterations: 12
Function evaluations: 103
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 134.4320521254627
Iteration: 2, Func. Count: 20, Neg. LLF: 132.50120148771927
Iteration: 3, Func. Count: 30, Neg. LLF: 123.54861680260241
Iteration: 4, Func. Count: 40, Neg. LLF: 182.87606694245198
Iteration: 5, Func. Count: 50, Neg. LLF: 120.7808712501846
Iteration: 6, Func. Count: 59, Neg. LLF: 120.68181059914166
Iteration: 7, Func. Count: 68, Neg. LLF: 127.98521718945098
Iteration: 8, Func. Count: 79, Neg. LLF: 120.5037152987734
Iteration: 9, Func. Count: 88, Neg. LLF: 120.43103332760147
Iteration: 10, Func. Count: 97, Neg. LLF: 120.42708935405855
Iteration: 11, Func. Count: 106, Neg. LLF: 120.42559619715566
Iteration: 12, Func. Count: 115, Neg. LLF: 120.42538232215755
Iteration: 13, Func. Count: 124, Neg. LLF: 120.42537718688662
Iteration: 14, Func. Count: 132, Neg. LLF: 120.42537721074736
Optimization terminated successfully (Exit mode 0)
Current function value: 120.42537718688662
Iterations: 14
Function evaluations: 132
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 133.56764236165378
Iteration: 2, Func. Count: 22, Neg. LLF: 132.8092352622708
Iteration: 3, Func. Count: 33, Neg. LLF: 123.30058030104462
Iteration: 4, Func. Count: 44, Neg. LLF: 197.27657061632158
Iteration: 5, Func. Count: 55, Neg. LLF: 120.77893546620307
Iteration: 6, Func. Count: 65, Neg. LLF: 120.84546529654382
Iteration: 7, Func. Count: 76, Neg. LLF: 123.32879516532091
Iteration: 8, Func. Count: 87, Neg. LLF: 120.52711640929545
Iteration: 9, Func. Count: 97, Neg. LLF: 120.43320587134025
Iteration: 10, Func. Count: 107, Neg. LLF: 120.42678965847178
Iteration: 11, Func. Count: 117, Neg. LLF: 120.4255150884842
Iteration: 12, Func. Count: 127, Neg. LLF: 120.42541619478642
Iteration: 13, Func. Count: 137, Neg. LLF: 120.42537836089878
Iteration: 14, Func. Count: 147, Neg. LLF: 120.42537682925243
Iteration: 15, Func. Count: 156, Neg. LLF: 120.42537684827956
Optimization terminated successfully (Exit mode 0)
Current function value: 120.42537682925243
Iterations: 15
Function evaluations: 156
Gradient evaluations: 15
Iteration: 1, Func. Count: 12, Neg. LLF: 129.36858006284993
Iteration: 2, Func. Count: 24, Neg. LLF: 131.11681278737814
Iteration: 3, Func. Count: 36, Neg. LLF: 122.56844522611186
Iteration: 4, Func. Count: 48, Neg. LLF: 128.4753157708259
Iteration: 5, Func. Count: 60, Neg. LLF: 122.95115385882383
Iteration: 6, Func. Count: 72, Neg. LLF: 121.46830176940794
Iteration: 7, Func. Count: 84, Neg. LLF: 120.65981968093068
Iteration: 8, Func. Count: 95, Neg. LLF: 120.35865527610176
Iteration: 9, Func. Count: 106, Neg. LLF: 120.35464260360757
Iteration: 10, Func. Count: 117, Neg. LLF: 120.35403148019704
Iteration: 11, Func. Count: 128, Neg. LLF: 120.3540105001329
Iteration: 12, Func. Count: 139, Neg. LLF: 120.3540078394771
Iteration: 13, Func. Count: 149, Neg. LLF: 120.35400783946267
Optimization terminated successfully (Exit mode 0)
Current function value: 120.3540078394771
Iterations: 13
Function evaluations: 149
Gradient evaluations: 13
Iteration: 1, Func. Count: 13, Neg. LLF: 132.54671258665925
Iteration: 2, Func. Count: 26, Neg. LLF: 131.44848499961333
Iteration: 3, Func. Count: 39, Neg. LLF: 123.12322157730674
Iteration: 4, Func. Count: 52, Neg. LLF: 167.40054282434446
Iteration: 5, Func. Count: 65, Neg. LLF: 130.36725470147564
Iteration: 6, Func. Count: 78, Neg. LLF: 121.20813976855165
Iteration: 7, Func. Count: 91, Neg. LLF: 120.49034083540816
Iteration: 8, Func. Count: 103, Neg. LLF: 120.98882087170878
Iteration: 9, Func. Count: 116, Neg. LLF: 120.35642707373896
Iteration: 10, Func. Count: 128, Neg. LLF: 120.35436248197283
Iteration: 11, Func. Count: 140, Neg. LLF: 120.35407315832006
Iteration: 12, Func. Count: 152, Neg. LLF: 120.35402475293394
Iteration: 13, Func. Count: 164, Neg. LLF: 120.35400772215591
Iteration: 14, Func. Count: 175, Neg. LLF: 120.3540078047002
Optimization terminated successfully (Exit mode 0)
Current function value: 120.35400772215591
Iterations: 14
Function evaluations: 175
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 142.0509498504631
Iteration: 2, Func. Count: 20, Neg. LLF: 147.72061772572533
Iteration: 3, Func. Count: 30, Neg. LLF: 123.3329266170028
Iteration: 4, Func. Count: 40, Neg. LLF: 133.23572434324103
Iteration: 5, Func. Count: 50, Neg. LLF: 130.357965217357
Iteration: 6, Func. Count: 60, Neg. LLF: 122.72333211735092
Iteration: 7, Func. Count: 70, Neg. LLF: 120.38938695646709
Iteration: 8, Func. Count: 79, Neg. LLF: 120.28202967137085
Iteration: 9, Func. Count: 88, Neg. LLF: 120.28793257809116
Iteration: 10, Func. Count: 98, Neg. LLF: 120.26471237850085
Iteration: 11, Func. Count: 107, Neg. LLF: 120.26391463584818
Iteration: 12, Func. Count: 116, Neg. LLF: 120.2626007314956
Iteration: 13, Func. Count: 125, Neg. LLF: 120.26244125837025
Iteration: 14, Func. Count: 134, Neg. LLF: 120.26243304708584
Iteration: 15, Func. Count: 142, Neg. LLF: 120.26243304709838
Optimization terminated successfully (Exit mode 0)
Current function value: 120.26243304708584
Iterations: 15
Function evaluations: 142
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 124.23161872085547
Iteration: 2, Func. Count: 21, Neg. LLF: 134.21884949790183
Iteration: 3, Func. Count: 32, Neg. LLF: 121.47503672759971
Iteration: 4, Func. Count: 42, Neg. LLF: 122.15546178762303
Iteration: 5, Func. Count: 53, Neg. LLF: 122.36485127637638
Iteration: 6, Func. Count: 64, Neg. LLF: 120.67847623678517
Iteration: 7, Func. Count: 75, Neg. LLF: 120.53968649942102
Iteration: 8, Func. Count: 86, Neg. LLF: 120.3221976447722
Iteration: 9, Func. Count: 97, Neg. LLF: 120.26608174846635
Iteration: 10, Func. Count: 107, Neg. LLF: 120.26276693281416
Iteration: 11, Func. Count: 117, Neg. LLF: 120.26246710039842
Iteration: 12, Func. Count: 127, Neg. LLF: 120.26243492682876
Iteration: 13, Func. Count: 137, Neg. LLF: 120.26243298291963
Iteration: 14, Func. Count: 146, Neg. LLF: 120.2624330080292
Optimization terminated successfully (Exit mode 0)
Current function value: 120.26243298291963
Iterations: 14
Function evaluations: 146
Gradient evaluations: 14
Iteration: 1, Func. Count: 12, Neg. LLF: 133.58005622436758
Iteration: 2, Func. Count: 24, Neg. LLF: 132.81641831522924
Iteration: 3, Func. Count: 36, Neg. LLF: 121.174485209181
Iteration: 4, Func. Count: 47, Neg. LLF: 122.85756965515436
Iteration: 5, Func. Count: 59, Neg. LLF: 126.8898477387736
Iteration: 6, Func. Count: 72, Neg. LLF: 121.93189795119547
Iteration: 7, Func. Count: 84, Neg. LLF: 120.40863073204163
Iteration: 8, Func. Count: 95, Neg. LLF: 121.17200495603119
Iteration: 9, Func. Count: 107, Neg. LLF: 120.35059199342996
Iteration: 10, Func. Count: 119, Neg. LLF: 120.26035960358966
Iteration: 11, Func. Count: 130, Neg. LLF: 120.26024455127265
Iteration: 12, Func. Count: 142, Neg. LLF: 120.25931314605275
Iteration: 13, Func. Count: 153, Neg. LLF: 120.2593045926854
Iteration: 14, Func. Count: 163, Neg. LLF: 120.25930459267906
Optimization terminated successfully (Exit mode 0)
Current function value: 120.2593045926854
Iterations: 14
Function evaluations: 163
Gradient evaluations: 14
Iteration: 1, Func. Count: 13, Neg. LLF: 128.32021901429036
Iteration: 2, Func. Count: 26, Neg. LLF: 130.31340564452287
Iteration: 3, Func. Count: 39, Neg. LLF: 122.83118968471202
Iteration: 4, Func. Count: 52, Neg. LLF: 137.56634598098978
Iteration: 5, Func. Count: 65, Neg. LLF: 147.2384768347467
Iteration: 6, Func. Count: 78, Neg. LLF: 132.84834682445123
Iteration: 7, Func. Count: 91, Neg. LLF: 120.63277484018192
Iteration: 8, Func. Count: 104, Neg. LLF: 119.90729229648878
Iteration: 9, Func. Count: 116, Neg. LLF: 119.88399725922064
Iteration: 10, Func. Count: 128, Neg. LLF: 119.88226741915315
Iteration: 11, Func. Count: 140, Neg. LLF: 119.8818932035975
Iteration: 12, Func. Count: 152, Neg. LLF: 119.88182474734212
Iteration: 13, Func. Count: 164, Neg. LLF: 119.8818218489747
Iteration: 14, Func. Count: 175, Neg. LLF: 119.88182184899317
Optimization terminated successfully (Exit mode 0)
Current function value: 119.8818218489747
Iterations: 14
Function evaluations: 175
Gradient evaluations: 14
Iteration: 1, Func. Count: 14, Neg. LLF: 132.071143438252
Iteration: 2, Func. Count: 28, Neg. LLF: 131.4909728344646
Iteration: 3, Func. Count: 42, Neg. LLF: 121.65960574057173
Iteration: 4, Func. Count: 55, Neg. LLF: 122.64809048832545
Iteration: 5, Func. Count: 70, Neg. LLF: 127.11451919179234
Iteration: 6, Func. Count: 85, Neg. LLF: 127.5040026934621
Iteration: 7, Func. Count: 99, Neg. LLF: 123.44545846197663
Iteration: 8, Func. Count: 113, Neg. LLF: 120.12778079026722
Iteration: 9, Func. Count: 126, Neg. LLF: 121.65463200742458
Iteration: 10, Func. Count: 140, Neg. LLF: 121.60957102094488
Iteration: 11, Func. Count: 155, Neg. LLF: 119.88476646601478
Iteration: 12, Func. Count: 168, Neg. LLF: 119.8821475044415
Iteration: 13, Func. Count: 181, Neg. LLF: 119.88198082763785
Iteration: 14, Func. Count: 194, Neg. LLF: 119.88184007272396
Iteration: 15, Func. Count: 207, Neg. LLF: 119.88182656151264
Iteration: 16, Func. Count: 220, Neg. LLF: 119.8818219933406
Iteration: 17, Func. Count: 232, Neg. LLF: 119.88182211181417
Optimization terminated successfully (Exit mode 0)
Current function value: 119.8818219933406
Iterations: 17
Function evaluations: 232
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 141.67027773592332
Iteration: 2, Func. Count: 22, Neg. LLF: 149.0317635848196
Iteration: 3, Func. Count: 33, Neg. LLF: 123.22684205844273
Iteration: 4, Func. Count: 44, Neg. LLF: 132.48658488022824
Iteration: 5, Func. Count: 55, Neg. LLF: 130.35904860401942
Iteration: 6, Func. Count: 66, Neg. LLF: 121.87450604084043
Iteration: 7, Func. Count: 77, Neg. LLF: 120.37286750838486
Iteration: 8, Func. Count: 87, Neg. LLF: 120.28433148633805
Iteration: 9, Func. Count: 97, Neg. LLF: 120.28654657216751
Iteration: 10, Func. Count: 108, Neg. LLF: 120.26349394043288
Iteration: 11, Func. Count: 118, Neg. LLF: 120.26362531833647
Iteration: 12, Func. Count: 129, Neg. LLF: 120.2625422496366
Iteration: 13, Func. Count: 139, Neg. LLF: 120.26243303493757
Iteration: 14, Func. Count: 148, Neg. LLF: 120.26243315005087
Optimization terminated successfully (Exit mode 0)
Current function value: 120.26243303493757
Iterations: 14
Function evaluations: 148
Gradient evaluations: 14
Iteration: 1, Func. Count: 12, Neg. LLF: 126.18065639219257
Iteration: 2, Func. Count: 24, Neg. LLF: 122.73140705466696
Iteration: 3, Func. Count: 36, Neg. LLF: 131.14882881871102
Iteration: 4, Func. Count: 48, Neg. LLF: 121.50972511059094
Iteration: 5, Func. Count: 59, Neg. LLF: 123.260705492998
Iteration: 6, Func. Count: 71, Neg. LLF: 130.03939286345596
Iteration: 7, Func. Count: 83, Neg. LLF: 120.280763388662
Iteration: 8, Func. Count: 94, Neg. LLF: 120.27432693772654
Iteration: 9, Func. Count: 105, Neg. LLF: 120.26410343276211
Iteration: 10, Func. Count: 116, Neg. LLF: 120.26320009936042
Iteration: 11, Func. Count: 127, Neg. LLF: 120.262686251095
Iteration: 12, Func. Count: 138, Neg. LLF: 120.26251389331335
Iteration: 13, Func. Count: 149, Neg. LLF: 120.26243645354403
Iteration: 14, Func. Count: 160, Neg. LLF: 120.26243310946437
Iteration: 15, Func. Count: 170, Neg. LLF: 120.26243313460807
Optimization terminated successfully (Exit mode 0)
Current function value: 120.26243310946437
Iterations: 15
Function evaluations: 170
Gradient evaluations: 15
Iteration: 1, Func. Count: 13, Neg. LLF: 131.18069259354337
Iteration: 2, Func. Count: 26, Neg. LLF: 131.83063086916286
Iteration: 3, Func. Count: 39, Neg. LLF: 122.97304545445255
Iteration: 4, Func. Count: 52, Neg. LLF: 5198253.834897395
Iteration: 5, Func. Count: 65, Neg. LLF: 120.76116276589221
Iteration: 6, Func. Count: 77, Neg. LLF: 120.60153193743682
Iteration: 7, Func. Count: 89, Neg. LLF: 127.89202291525872
Iteration: 8, Func. Count: 102, Neg. LLF: 120.33631783420721
Iteration: 9, Func. Count: 114, Neg. LLF: 120.33018457462053
Iteration: 10, Func. Count: 127, Neg. LLF: 120.28505153528833
Iteration: 11, Func. Count: 139, Neg. LLF: 120.26173989191305
Iteration: 12, Func. Count: 151, Neg. LLF: 120.26028179209692
Iteration: 13, Func. Count: 163, Neg. LLF: 120.2598329410285
Iteration: 14, Func. Count: 175, Neg. LLF: 120.25945699252341
Iteration: 15, Func. Count: 187, Neg. LLF: 120.25933218959595
Iteration: 16, Func. Count: 199, Neg. LLF: 120.25930568854456
Iteration: 17, Func. Count: 211, Neg. LLF: 120.25930444861679
Iteration: 18, Func. Count: 222, Neg. LLF: 120.25930444860337
Optimization terminated successfully (Exit mode 0)
Current function value: 120.25930444861679
Iterations: 18
Function evaluations: 222
Gradient evaluations: 18
Iteration: 1, Func. Count: 14, Neg. LLF: 128.1665334840612
Iteration: 2, Func. Count: 28, Neg. LLF: 130.34298359809708
Iteration: 3, Func. Count: 42, Neg. LLF: 122.78834490092055
Iteration: 4, Func. Count: 56, Neg. LLF: 132.58619691701034
Iteration: 5, Func. Count: 70, Neg. LLF: 139.2907903054094
Iteration: 6, Func. Count: 84, Neg. LLF: 135.08476070269498
Iteration: 7, Func. Count: 98, Neg. LLF: 120.58261273099055
Iteration: 8, Func. Count: 112, Neg. LLF: 119.89404095005254
Iteration: 9, Func. Count: 125, Neg. LLF: 119.88322146263562
Iteration: 10, Func. Count: 138, Neg. LLF: 119.88209184368966
Iteration: 11, Func. Count: 151, Neg. LLF: 119.88186636777877
Iteration: 12, Func. Count: 164, Neg. LLF: 119.88182286004796
Iteration: 13, Func. Count: 177, Neg. LLF: 119.88182182318072
Iteration: 14, Func. Count: 189, Neg. LLF: 119.88182182320311
Optimization terminated successfully (Exit mode 0)
Current function value: 119.88182182318072
Iterations: 14
Function evaluations: 189
Gradient evaluations: 14
Iteration: 1, Func. Count: 15, Neg. LLF: 132.0554464233942
Iteration: 2, Func. Count: 30, Neg. LLF: 131.43411297174652
Iteration: 3, Func. Count: 45, Neg. LLF: 121.6616559672886
Iteration: 4, Func. Count: 59, Neg. LLF: 122.6442925983331
Iteration: 5, Func. Count: 75, Neg. LLF: 127.01750151056164
Iteration: 6, Func. Count: 91, Neg. LLF: 127.57731497276238
Iteration: 7, Func. Count: 106, Neg. LLF: 123.388204006163
Iteration: 8, Func. Count: 121, Neg. LLF: 120.1246442052292
Iteration: 9, Func. Count: 135, Neg. LLF: 121.65164563207391
Iteration: 10, Func. Count: 150, Neg. LLF: 121.59621013736167
Iteration: 11, Func. Count: 166, Neg. LLF: 119.8847385419108
Iteration: 12, Func. Count: 180, Neg. LLF: 119.88214474915797
Iteration: 13, Func. Count: 194, Neg. LLF: 119.88198014111279
Iteration: 14, Func. Count: 208, Neg. LLF: 119.88183965602045
Iteration: 15, Func. Count: 222, Neg. LLF: 119.88182641525087
Iteration: 16, Func. Count: 236, Neg. LLF: 119.88182199116082
Iteration: 17, Func. Count: 249, Neg. LLF: 119.88182210963367
Optimization terminated successfully (Exit mode 0)
Current function value: 119.88182199116082
Iterations: 17
Function evaluations: 249
Gradient evaluations: 17
Iteration: 1, Func. Count: 8, Neg. LLF: 135.4119938419363
Iteration: 2, Func. Count: 16, Neg. LLF: 175.29778401305083
Iteration: 3, Func. Count: 24, Neg. LLF: 124.63591863339357
Iteration: 4, Func. Count: 31, Neg. LLF: 125.5799033774873
Iteration: 5, Func. Count: 39, Neg. LLF: 124.60956640238092
Iteration: 6, Func. Count: 46, Neg. LLF: 124.59854011761489
Iteration: 7, Func. Count: 53, Neg. LLF: 124.59565883363685
Iteration: 8, Func. Count: 60, Neg. LLF: 124.59549000749367
Iteration: 9, Func. Count: 67, Neg. LLF: 124.59548834704442
Iteration: 10, Func. Count: 73, Neg. LLF: 124.59548844537404
Optimization terminated successfully (Exit mode 0)
Current function value: 124.59548834704442
Iterations: 10
Function evaluations: 73
Gradient evaluations: 10
Iteration: 1, Func. Count: 9, Neg. LLF: 158.72972378727752
Iteration: 2, Func. Count: 19, Neg. LLF: 126.38427308645682
Iteration: 3, Func. Count: 27, Neg. LLF: 126.20064930371329
Iteration: 4, Func. Count: 35, Neg. LLF: 128.38308004275683
Iteration: 5, Func. Count: 44, Neg. LLF: 126.06071724019814
Iteration: 6, Func. Count: 52, Neg. LLF: 126.04655323342126
Iteration: 7, Func. Count: 60, Neg. LLF: 126.04638835787281
Iteration: 8, Func. Count: 68, Neg. LLF: 126.04636335779016
Iteration: 9, Func. Count: 75, Neg. LLF: 126.04636356332277
Optimization terminated successfully (Exit mode 0)
Current function value: 126.04636335779016
Iterations: 9
Function evaluations: 75
Gradient evaluations: 9
Iteration: 1, Func. Count: 10, Neg. LLF: 153.57344396504547
Iteration: 2, Func. Count: 21, Neg. LLF: 126.22874529657525
Iteration: 3, Func. Count: 30, Neg. LLF: 131.3487921363237
Iteration: 4, Func. Count: 40, Neg. LLF: 126.20544171674226
Iteration: 5, Func. Count: 50, Neg. LLF: 126.06339295474498
Iteration: 6, Func. Count: 59, Neg. LLF: 126.0585815616362
Iteration: 7, Func. Count: 68, Neg. LLF: 126.0585670251554
Iteration: 8, Func. Count: 77, Neg. LLF: 126.0585660623207
Optimization terminated successfully (Exit mode 0)
Current function value: 126.0585660623207
Iterations: 8
Function evaluations: 77
Gradient evaluations: 8
Iteration: 1, Func. Count: 11, Neg. LLF: 150.75763570075114
Iteration: 2, Func. Count: 23, Neg. LLF: 126.1626708737513
Iteration: 3, Func. Count: 33, Neg. LLF: 126.89025042270032
Iteration: 4, Func. Count: 44, Neg. LLF: 126.07982472040813
Iteration: 5, Func. Count: 54, Neg. LLF: 126.07965731208492
Iteration: 6, Func. Count: 65, Neg. LLF: 126.07627562304096
Iteration: 7, Func. Count: 75, Neg. LLF: 126.07457019201392
Iteration: 8, Func. Count: 85, Neg. LLF: 126.06721406404301
Iteration: 9, Func. Count: 95, Neg. LLF: 126.06491049915407
Iteration: 10, Func. Count: 105, Neg. LLF: 126.06468561777127
Iteration: 11, Func. Count: 115, Neg. LLF: 126.06460270312101
Iteration: 12, Func. Count: 125, Neg. LLF: 126.06379770885766
Iteration: 13, Func. Count: 135, Neg. LLF: 126.0520437716177
Iteration: 14, Func. Count: 145, Neg. LLF: 126.05511383321657
Iteration: 15, Func. Count: 156, Neg. LLF: 126.04692769897272
Iteration: 16, Func. Count: 166, Neg. LLF: 126.04640136051849
Iteration: 17, Func. Count: 176, Neg. LLF: 127.54516075329352
Iteration: 18, Func. Count: 188, Neg. LLF: 126.04636312029227
Optimization terminated successfully (Exit mode 0)
Current function value: 126.0463633241209
Iterations: 19
Function evaluations: 188
Gradient evaluations: 18
Iteration: 1, Func. Count: 12, Neg. LLF: 148.97357410126475
Iteration: 2, Func. Count: 25, Neg. LLF: 126.12085304780227
Iteration: 3, Func. Count: 36, Neg. LLF: 126.15970697336917
Iteration: 4, Func. Count: 48, Neg. LLF: 126.0741005612554
Iteration: 5, Func. Count: 60, Neg. LLF: 126.07398440250651
Iteration: 6, Func. Count: 71, Neg. LLF: 126.07246791657903
Iteration: 7, Func. Count: 82, Neg. LLF: 126.06706909548699
Iteration: 8, Func. Count: 93, Neg. LLF: 126.06627312406947
Iteration: 9, Func. Count: 104, Neg. LLF: 126.06586720602726
Iteration: 10, Func. Count: 115, Neg. LLF: 126.06577195024127
Iteration: 11, Func. Count: 126, Neg. LLF: 126.06523029317304
Iteration: 12, Func. Count: 137, Neg. LLF: 126.06245722526712
Iteration: 13, Func. Count: 148, Neg. LLF: 126.0432198154262
Iteration: 14, Func. Count: 159, Neg. LLF: 126.05176576493176
Iteration: 15, Func. Count: 171, Neg. LLF: 126.00724170094466
Iteration: 16, Func. Count: 182, Neg. LLF: 126.00327087178208
Iteration: 17, Func. Count: 194, Neg. LLF: 126.00626540094697
Iteration: 18, Func. Count: 206, Neg. LLF: 126.0047226972605
Iteration: 19, Func. Count: 217, Neg. LLF: 126.0042055686974
Iteration: 20, Func. Count: 238, Neg. LLF: 126.05904584019471
Iteration: 21, Func. Count: 251, Neg. LLF: 126.01022122658266
Iteration: 22, Func. Count: 263, Neg. LLF: 126.00560860134831
Iteration: 23, Func. Count: 275, Neg. LLF: 126.00559817858789
Iteration: 24, Func. Count: 287, Neg. LLF: 126.00557714013152
Iteration: 25, Func. Count: 297, Neg. LLF: 126.00557709848802
Optimization terminated successfully (Exit mode 0)
Current function value: 126.00557714013152
Iterations: 26
Function evaluations: 297
Gradient evaluations: 25
Iteration: 1, Func. Count: 9, Neg. LLF: 135.33260126978803
Iteration: 2, Func. Count: 18, Neg. LLF: 178.40098352688798
Iteration: 3, Func. Count: 27, Neg. LLF: 123.71713142358585
Iteration: 4, Func. Count: 36, Neg. LLF: 122.43520759368681
Iteration: 5, Func. Count: 45, Neg. LLF: 123.4685111777546
Iteration: 6, Func. Count: 54, Neg. LLF: 120.6720604141873
Iteration: 7, Func. Count: 62, Neg. LLF: 120.98600131647034
Iteration: 8, Func. Count: 71, Neg. LLF: 121.93923045233919
Iteration: 9, Func. Count: 80, Neg. LLF: 120.4467818923392
Iteration: 10, Func. Count: 88, Neg. LLF: 120.43341641182003
Iteration: 11, Func. Count: 96, Neg. LLF: 120.4325611599595
Iteration: 12, Func. Count: 104, Neg. LLF: 120.43255332576906
Iteration: 13, Func. Count: 111, Neg. LLF: 120.43255342243032
Optimization terminated successfully (Exit mode 0)
Current function value: 120.43255332576906
Iterations: 13
Function evaluations: 111
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 122.482964597604
Iteration: 2, Func. Count: 19, Neg. LLF: 132.02450822552078
Iteration: 3, Func. Count: 29, Neg. LLF: 124.63896439080982
Iteration: 4, Func. Count: 39, Neg. LLF: 123.1302931455016
Iteration: 5, Func. Count: 49, Neg. LLF: 121.3521859700538
Iteration: 6, Func. Count: 59, Neg. LLF: 120.70911315997824
Iteration: 7, Func. Count: 69, Neg. LLF: 120.46967729160608
Iteration: 8, Func. Count: 78, Neg. LLF: 120.43729651382414
Iteration: 9, Func. Count: 87, Neg. LLF: 120.43361027737109
Iteration: 10, Func. Count: 96, Neg. LLF: 120.43255781302025
Iteration: 11, Func. Count: 105, Neg. LLF: 120.43255318670259
Iteration: 12, Func. Count: 113, Neg. LLF: 120.43255321222064
Optimization terminated successfully (Exit mode 0)
Current function value: 120.43255318670259
Iterations: 12
Function evaluations: 113
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 125.40010482712329
Iteration: 2, Func. Count: 22, Neg. LLF: 126.30940485390202
Iteration: 3, Func. Count: 33, Neg. LLF: 123.7216236949023
Iteration: 4, Func. Count: 44, Neg. LLF: 121.07250425222709
Iteration: 5, Func. Count: 54, Neg. LLF: 121.4458939660627
Iteration: 6, Func. Count: 65, Neg. LLF: 120.61091326287298
Iteration: 7, Func. Count: 76, Neg. LLF: 121.27835085941966
Iteration: 8, Func. Count: 87, Neg. LLF: 120.43468720725978
Iteration: 9, Func. Count: 97, Neg. LLF: 120.43278867864458
Iteration: 10, Func. Count: 107, Neg. LLF: 120.43255761793124
Iteration: 11, Func. Count: 117, Neg. LLF: 120.43255330706923
Iteration: 12, Func. Count: 126, Neg. LLF: 120.43255332629592
Optimization terminated successfully (Exit mode 0)
Current function value: 120.43255330706923
Iterations: 12
Function evaluations: 126
Gradient evaluations: 12
Iteration: 1, Func. Count: 12, Neg. LLF: 125.87850273604236
Iteration: 2, Func. Count: 25, Neg. LLF: 122.7817178962781
Iteration: 3, Func. Count: 36, Neg. LLF: 123.86277816413849
Iteration: 4, Func. Count: 48, Neg. LLF: 124.02896164101699
Iteration: 5, Func. Count: 61, Neg. LLF: 123.8697208549205
Iteration: 6, Func. Count: 74, Neg. LLF: 120.40341586428103
Iteration: 7, Func. Count: 85, Neg. LLF: 120.39833021046009
Iteration: 8, Func. Count: 97, Neg. LLF: 120.38217920136438
Iteration: 9, Func. Count: 108, Neg. LLF: 120.37666318286426
Iteration: 10, Func. Count: 119, Neg. LLF: 120.3760765656463
Iteration: 11, Func. Count: 130, Neg. LLF: 120.37605894044376
Iteration: 12, Func. Count: 140, Neg. LLF: 120.37605894041029
Optimization terminated successfully (Exit mode 0)
Current function value: 120.37605894044376
Iterations: 12
Function evaluations: 140
Gradient evaluations: 12
Iteration: 1, Func. Count: 13, Neg. LLF: 126.28440366772361
Iteration: 2, Func. Count: 27, Neg. LLF: 122.4248350018393
Iteration: 3, Func. Count: 39, Neg. LLF: 124.53931364531509
Iteration: 4, Func. Count: 52, Neg. LLF: 123.46137460202583
Iteration: 5, Func. Count: 65, Neg. LLF: 120.667728620866
Iteration: 6, Func. Count: 78, Neg. LLF: 122.05201271635858
Iteration: 7, Func. Count: 91, Neg. LLF: 120.42432083712895
Iteration: 8, Func. Count: 104, Neg. LLF: 120.37914287790892
Iteration: 9, Func. Count: 116, Neg. LLF: 120.3762164158385
Iteration: 10, Func. Count: 128, Neg. LLF: 120.37608472906938
Iteration: 11, Func. Count: 140, Neg. LLF: 120.3760681055412
Iteration: 12, Func. Count: 152, Neg. LLF: 120.37605891891567
Iteration: 13, Func. Count: 163, Neg. LLF: 120.37605900127657
Optimization terminated successfully (Exit mode 0)
Current function value: 120.37605891891567
Iterations: 13
Function evaluations: 163
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 134.7565892290479
Iteration: 2, Func. Count: 20, Neg. LLF: 179.18181110520385
Iteration: 3, Func. Count: 30, Neg. LLF: 123.78083742874861
Iteration: 4, Func. Count: 40, Neg. LLF: 122.48916323948919
Iteration: 5, Func. Count: 50, Neg. LLF: 123.58586388501551
Iteration: 6, Func. Count: 60, Neg. LLF: 121.03312847095485
Iteration: 7, Func. Count: 70, Neg. LLF: 120.85229377530821
Iteration: 8, Func. Count: 80, Neg. LLF: 120.50217167643318
Iteration: 9, Func. Count: 89, Neg. LLF: 120.42552485921009
Iteration: 10, Func. Count: 98, Neg. LLF: 120.42538032670748
Iteration: 11, Func. Count: 107, Neg. LLF: 120.42537680329724
Iteration: 12, Func. Count: 115, Neg. LLF: 120.42537680331503
Optimization terminated successfully (Exit mode 0)
Current function value: 120.42537680329724
Iterations: 12
Function evaluations: 115
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 124.55385057190136
Iteration: 2, Func. Count: 21, Neg. LLF: 134.28696625430752
Iteration: 3, Func. Count: 32, Neg. LLF: 121.13567723028429
Iteration: 4, Func. Count: 42, Neg. LLF: 121.1648868861843
Iteration: 5, Func. Count: 53, Neg. LLF: 123.95231010554667
Iteration: 6, Func. Count: 64, Neg. LLF: 126.06289963380597
Iteration: 7, Func. Count: 76, Neg. LLF: 120.52803862923066
Iteration: 8, Func. Count: 86, Neg. LLF: 120.42738328625697
Iteration: 9, Func. Count: 96, Neg. LLF: 120.42570103060176
Iteration: 10, Func. Count: 106, Neg. LLF: 120.42546517122767
Iteration: 11, Func. Count: 116, Neg. LLF: 120.4253806749709
Iteration: 12, Func. Count: 126, Neg. LLF: 120.42537685281184
Iteration: 13, Func. Count: 135, Neg. LLF: 120.4253768766344
Optimization terminated successfully (Exit mode 0)
Current function value: 120.42537685281184
Iterations: 13
Function evaluations: 135
Gradient evaluations: 13
Iteration: 1, Func. Count: 12, Neg. LLF: 125.1597169616091
Iteration: 2, Func. Count: 24, Neg. LLF: 126.58505473334637
Iteration: 3, Func. Count: 36, Neg. LLF: 123.59926888649919
Iteration: 4, Func. Count: 48, Neg. LLF: 121.10808674987317
Iteration: 5, Func. Count: 59, Neg. LLF: 121.27438511598857
Iteration: 6, Func. Count: 71, Neg. LLF: 138.19953753336932
Iteration: 7, Func. Count: 84, Neg. LLF: 120.44426316244028
Iteration: 8, Func. Count: 95, Neg. LLF: 120.42623983502948
Iteration: 9, Func. Count: 106, Neg. LLF: 120.42540354678648
Iteration: 10, Func. Count: 117, Neg. LLF: 120.42537790959216
Iteration: 11, Func. Count: 128, Neg. LLF: 120.42537678484253
Iteration: 12, Func. Count: 138, Neg. LLF: 120.42537680384768
Optimization terminated successfully (Exit mode 0)
Current function value: 120.42537678484253
Iterations: 12
Function evaluations: 138
Gradient evaluations: 12
Iteration: 1, Func. Count: 13, Neg. LLF: 125.68913202409438
Iteration: 2, Func. Count: 27, Neg. LLF: 123.0411147964374
Iteration: 3, Func. Count: 39, Neg. LLF: 123.61823722603049
Iteration: 4, Func. Count: 52, Neg. LLF: 124.5300636357447
Iteration: 5, Func. Count: 65, Neg. LLF: 120.46150836682862
Iteration: 6, Func. Count: 77, Neg. LLF: 123.66664886293191
Iteration: 7, Func. Count: 90, Neg. LLF: 120.86729834441891
Iteration: 8, Func. Count: 103, Neg. LLF: 120.35961925314224
Iteration: 9, Func. Count: 115, Neg. LLF: 120.35558829820576
Iteration: 10, Func. Count: 127, Neg. LLF: 120.35461679740003
Iteration: 11, Func. Count: 139, Neg. LLF: 120.35414558964946
Iteration: 12, Func. Count: 151, Neg. LLF: 120.35402482808243
Iteration: 13, Func. Count: 163, Neg. LLF: 120.35400846184223
Iteration: 14, Func. Count: 175, Neg. LLF: 120.35400772230929
Optimization terminated successfully (Exit mode 0)
Current function value: 120.35400772230929
Iterations: 14
Function evaluations: 175
Gradient evaluations: 14
Iteration: 1, Func. Count: 14, Neg. LLF: 126.0028831277872
Iteration: 2, Func. Count: 29, Neg. LLF: 122.78877887008447
Iteration: 3, Func. Count: 42, Neg. LLF: 124.07887836850297
Iteration: 4, Func. Count: 56, Neg. LLF: 124.26718316485844
Iteration: 5, Func. Count: 70, Neg. LLF: 120.54556913237799
Iteration: 6, Func. Count: 83, Neg. LLF: 122.15265729593236
Iteration: 7, Func. Count: 97, Neg. LLF: 123.06741106316247
Iteration: 8, Func. Count: 112, Neg. LLF: 120.36180470627936
Iteration: 9, Func. Count: 125, Neg. LLF: 120.3552755211008
Iteration: 10, Func. Count: 138, Neg. LLF: 120.35440848438847
Iteration: 11, Func. Count: 151, Neg. LLF: 120.35411989097581
Iteration: 12, Func. Count: 164, Neg. LLF: 120.35404505683483
Iteration: 13, Func. Count: 177, Neg. LLF: 120.3540112079575
Iteration: 14, Func. Count: 190, Neg. LLF: 120.35400796497363
Iteration: 15, Func. Count: 202, Neg. LLF: 120.35400804752918
Optimization terminated successfully (Exit mode 0)
Current function value: 120.35400796497363
Iterations: 15
Function evaluations: 202
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 136.85264862770944
Iteration: 2, Func. Count: 22, Neg. LLF: 159.59808029324222
Iteration: 3, Func. Count: 33, Neg. LLF: 122.91390165151513
Iteration: 4, Func. Count: 44, Neg. LLF: 208.10137766889713
Iteration: 5, Func. Count: 55, Neg. LLF: 146.7074106423327
Iteration: 6, Func. Count: 66, Neg. LLF: 120.73172878039964
Iteration: 7, Func. Count: 76, Neg. LLF: 120.38362852516482
Iteration: 8, Func. Count: 86, Neg. LLF: 120.35287418354667
Iteration: 9, Func. Count: 96, Neg. LLF: 120.2871548394245
Iteration: 10, Func. Count: 106, Neg. LLF: 120.27187272849172
Iteration: 11, Func. Count: 116, Neg. LLF: 120.26272901881184
Iteration: 12, Func. Count: 126, Neg. LLF: 120.26244868525974
Iteration: 13, Func. Count: 136, Neg. LLF: 120.26243413110687
Iteration: 14, Func. Count: 146, Neg. LLF: 120.26243299957876
Iteration: 15, Func. Count: 155, Neg. LLF: 120.26243299956705
Optimization terminated successfully (Exit mode 0)
Current function value: 120.26243299957876
Iterations: 15
Function evaluations: 155
Gradient evaluations: 15
Iteration: 1, Func. Count: 12, Neg. LLF: 123.17969663654883
Iteration: 2, Func. Count: 23, Neg. LLF: 130.17591952539343
Iteration: 3, Func. Count: 35, Neg. LLF: 124.5116985925247
Iteration: 4, Func. Count: 47, Neg. LLF: 122.81590261862974
Iteration: 5, Func. Count: 59, Neg. LLF: 121.57347175910333
Iteration: 6, Func. Count: 71, Neg. LLF: 120.56042582380454
Iteration: 7, Func. Count: 83, Neg. LLF: 120.32329136190988
Iteration: 8, Func. Count: 94, Neg. LLF: 120.31890246822468
Iteration: 9, Func. Count: 106, Neg. LLF: 120.36857963672091
Iteration: 10, Func. Count: 118, Neg. LLF: 120.2636083990499
Iteration: 11, Func. Count: 130, Neg. LLF: 120.26264531022963
Iteration: 12, Func. Count: 141, Neg. LLF: 120.26243512757681
Iteration: 13, Func. Count: 152, Neg. LLF: 120.26243318815891
Iteration: 14, Func. Count: 162, Neg. LLF: 120.26243321322484
Optimization terminated successfully (Exit mode 0)
Current function value: 120.26243318815891
Iterations: 14
Function evaluations: 162
Gradient evaluations: 14
Iteration: 1, Func. Count: 13, Neg. LLF: 125.09752410231829
Iteration: 2, Func. Count: 25, Neg. LLF: 138.4902535401287
Iteration: 3, Func. Count: 38, Neg. LLF: 121.03883709657674
Iteration: 4, Func. Count: 50, Neg. LLF: 121.29745804490449
Iteration: 5, Func. Count: 63, Neg. LLF: 143.8894243212874
Iteration: 6, Func. Count: 76, Neg. LLF: 120.594138141101
Iteration: 7, Func. Count: 89, Neg. LLF: 120.50300017219082
Iteration: 8, Func. Count: 102, Neg. LLF: 120.48067412758816
Iteration: 9, Func. Count: 115, Neg. LLF: 120.25948933734695
Iteration: 10, Func. Count: 127, Neg. LLF: 120.25931855473188
Iteration: 11, Func. Count: 139, Neg. LLF: 120.25930689096549
Iteration: 12, Func. Count: 151, Neg. LLF: 120.25930445984193
Iteration: 13, Func. Count: 162, Neg. LLF: 120.25930445982577
Optimization terminated successfully (Exit mode 0)
Current function value: 120.25930445984193
Iterations: 13
Function evaluations: 162
Gradient evaluations: 13
Iteration: 1, Func. Count: 14, Neg. LLF: 121.9370499630242
Iteration: 2, Func. Count: 27, Neg. LLF: 135.36827066216173
Iteration: 3, Func. Count: 43, Neg. LLF: 123.22318145855355
Iteration: 4, Func. Count: 59, Neg. LLF: 124.56490144606384
Iteration: 5, Func. Count: 73, Neg. LLF: 296.3894568238916
Iteration: 6, Func. Count: 87, Neg. LLF: 124.56836007091484
Iteration: 7, Func. Count: 101, Neg. LLF: 120.19715263773095
Iteration: 8, Func. Count: 115, Neg. LLF: 121.40831149918684
Iteration: 9, Func. Count: 129, Neg. LLF: 119.90458279968739
Iteration: 10, Func. Count: 142, Neg. LLF: 119.8902699079121
Iteration: 11, Func. Count: 155, Neg. LLF: 119.88199891566217
Iteration: 12, Func. Count: 168, Neg. LLF: 119.8818244768756
Iteration: 13, Func. Count: 181, Neg. LLF: 119.88182196000821
Iteration: 14, Func. Count: 193, Neg. LLF: 119.88182196002269
Optimization terminated successfully (Exit mode 0)
Current function value: 119.88182196000821
Iterations: 14
Function evaluations: 193
Gradient evaluations: 14
Iteration: 1, Func. Count: 15, Neg. LLF: 126.00639366241387
Iteration: 2, Func. Count: 31, Neg. LLF: 123.17973697626717
Iteration: 3, Func. Count: 45, Neg. LLF: 132.9098052073091
Iteration: 4, Func. Count: 61, Neg. LLF: 179.77881008064176
Iteration: 5, Func. Count: 77, Neg. LLF: 138.43796166120833
Iteration: 6, Func. Count: 92, Neg. LLF: 120.76587836177217
Iteration: 7, Func. Count: 107, Neg. LLF: 119.91114027054527
Iteration: 8, Func. Count: 121, Neg. LLF: 119.94781775116621
Iteration: 9, Func. Count: 136, Neg. LLF: 119.88322795318102
Iteration: 10, Func. Count: 150, Neg. LLF: 119.88214519144407
Iteration: 11, Func. Count: 164, Neg. LLF: 119.88195656709178
Iteration: 12, Func. Count: 178, Neg. LLF: 119.8818408048071
Iteration: 13, Func. Count: 192, Neg. LLF: 119.88182586015311
Iteration: 14, Func. Count: 206, Neg. LLF: 119.88182190333316
Iteration: 15, Func. Count: 219, Neg. LLF: 119.88182202180231
Optimization terminated successfully (Exit mode 0)
Current function value: 119.88182190333316
Iterations: 15
Function evaluations: 219
Gradient evaluations: 15
Iteration: 1, Func. Count: 12, Neg. LLF: 137.6130770220306
Iteration: 2, Func. Count: 24, Neg. LLF: 154.69020844559208
Iteration: 3, Func. Count: 36, Neg. LLF: 122.8767295510336
Iteration: 4, Func. Count: 48, Neg. LLF: 178.34221900357036
Iteration: 5, Func. Count: 60, Neg. LLF: 137.03918850057138
Iteration: 6, Func. Count: 72, Neg. LLF: 121.3849358657087
Iteration: 7, Func. Count: 84, Neg. LLF: 120.36861006400376
Iteration: 8, Func. Count: 95, Neg. LLF: 120.27589198621514
Iteration: 9, Func. Count: 106, Neg. LLF: 120.26573765417427
Iteration: 10, Func. Count: 117, Neg. LLF: 120.27657195034791
Iteration: 11, Func. Count: 129, Neg. LLF: 120.2624867423585
Iteration: 12, Func. Count: 140, Neg. LLF: 120.26245843807018
Iteration: 13, Func. Count: 151, Neg. LLF: 120.26243409720912
Iteration: 14, Func. Count: 162, Neg. LLF: 120.26243293783602
Iteration: 15, Func. Count: 172, Neg. LLF: 120.26243282273875
Optimization terminated successfully (Exit mode 0)
Current function value: 120.26243293783602
Iterations: 15
Function evaluations: 172
Gradient evaluations: 15
Iteration: 1, Func. Count: 13, Neg. LLF: 125.9988956825489
Iteration: 2, Func. Count: 26, Neg. LLF: 122.60254935732227
Iteration: 3, Func. Count: 39, Neg. LLF: 129.3605785183064
Iteration: 4, Func. Count: 52, Neg. LLF: 121.44942574666194
Iteration: 5, Func. Count: 64, Neg. LLF: 123.11985458980548
Iteration: 6, Func. Count: 77, Neg. LLF: 129.91740454424234
Iteration: 7, Func. Count: 90, Neg. LLF: 120.27584741900722
Iteration: 8, Func. Count: 102, Neg. LLF: 120.27142312690398
Iteration: 9, Func. Count: 114, Neg. LLF: 120.26372380185313
Iteration: 10, Func. Count: 126, Neg. LLF: 120.26305020727703
Iteration: 11, Func. Count: 138, Neg. LLF: 120.26262552208156
Iteration: 12, Func. Count: 150, Neg. LLF: 120.262489009109
Iteration: 13, Func. Count: 162, Neg. LLF: 120.26243409834477
Iteration: 14, Func. Count: 174, Neg. LLF: 120.26243296710847
Iteration: 15, Func. Count: 185, Neg. LLF: 120.26243299222999
Optimization terminated successfully (Exit mode 0)
Current function value: 120.26243296710847
Iterations: 15
Function evaluations: 185
Gradient evaluations: 15
Iteration: 1, Func. Count: 14, Neg. LLF: 123.86738855454124
Iteration: 2, Func. Count: 27, Neg. LLF: 130.04351453434367
Iteration: 3, Func. Count: 41, Neg. LLF: 123.83899834867982
Iteration: 4, Func. Count: 55, Neg. LLF: 122.00568164342023
Iteration: 5, Func. Count: 69, Neg. LLF: 150.98103538173743
Iteration: 6, Func. Count: 83, Neg. LLF: 121.08138122843832
Iteration: 7, Func. Count: 97, Neg. LLF: 120.38915580401331
Iteration: 8, Func. Count: 110, Neg. LLF: 120.38189762236665
Iteration: 9, Func. Count: 124, Neg. LLF: 120.38123729879268
Iteration: 10, Func. Count: 138, Neg. LLF: 120.26435020372548
Iteration: 11, Func. Count: 151, Neg. LLF: 120.26935693974303
Iteration: 12, Func. Count: 165, Neg. LLF: 120.25955783863346
Iteration: 13, Func. Count: 178, Neg. LLF: 120.25937611438553
Iteration: 14, Func. Count: 191, Neg. LLF: 120.25930633153907
Iteration: 15, Func. Count: 204, Neg. LLF: 120.25930452838726
Iteration: 16, Func. Count: 216, Neg. LLF: 120.25930452842678
Optimization terminated successfully (Exit mode 0)
Current function value: 120.25930452838726
Iterations: 16
Function evaluations: 216
Gradient evaluations: 16
Iteration: 1, Func. Count: 15, Neg. LLF: 121.917612864372
Iteration: 2, Func. Count: 29, Neg. LLF: 135.2614626410289
Iteration: 3, Func. Count: 46, Neg. LLF: 123.33772170408893
Iteration: 4, Func. Count: 63, Neg. LLF: 123.7107906233443
Iteration: 5, Func. Count: 78, Neg. LLF: 260.88616720769664
Iteration: 6, Func. Count: 93, Neg. LLF: 138.41807178078218
Iteration: 7, Func. Count: 108, Neg. LLF: 122.26844098058957
Iteration: 8, Func. Count: 123, Neg. LLF: 121.44946640225693
Iteration: 9, Func. Count: 138, Neg. LLF: 120.01673627635529
Iteration: 10, Func. Count: 153, Neg. LLF: 119.90349099766476
Iteration: 11, Func. Count: 167, Neg. LLF: 119.89188713010883
Iteration: 12, Func. Count: 181, Neg. LLF: 119.88204928615036
Iteration: 13, Func. Count: 195, Neg. LLF: 119.88182548188455
Iteration: 14, Func. Count: 209, Neg. LLF: 119.88182183613199
Iteration: 15, Func. Count: 222, Neg. LLF: 119.881821836122
Optimization terminated successfully (Exit mode 0)
Current function value: 119.88182183613199
Iterations: 15
Function evaluations: 222
Gradient evaluations: 15
Iteration: 1, Func. Count: 16, Neg. LLF: 125.97500590808052
Iteration: 2, Func. Count: 33, Neg. LLF: 123.21927376721531
Iteration: 3, Func. Count: 48, Neg. LLF: 131.64764658384155
Iteration: 4, Func. Count: 65, Neg. LLF: 179.0905538820464
Iteration: 5, Func. Count: 82, Neg. LLF: 134.66497195982848
Iteration: 6, Func. Count: 98, Neg. LLF: 120.86099422613214
Iteration: 7, Func. Count: 114, Neg. LLF: 119.90886322775201
Iteration: 8, Func. Count: 129, Neg. LLF: 119.91469147203533
Iteration: 9, Func. Count: 145, Neg. LLF: 119.88314102230929
Iteration: 10, Func. Count: 160, Neg. LLF: 119.88204340091939
Iteration: 11, Func. Count: 175, Neg. LLF: 119.88191120791133
Iteration: 12, Func. Count: 190, Neg. LLF: 119.88184121293486
Iteration: 13, Func. Count: 205, Neg. LLF: 119.8818243140577
Iteration: 14, Func. Count: 220, Neg. LLF: 119.88182191828284
Iteration: 15, Func. Count: 234, Neg. LLF: 119.88182203674874
Optimization terminated successfully (Exit mode 0)
Current function value: 119.88182191828284
Iterations: 15
Function evaluations: 234
Gradient evaluations: 15
Iteration: 1, Func. Count: 6, Neg. LLF: 133.2541454504213
Iteration: 2, Func. Count: 12, Neg. LLF: 131.8679305982681
Iteration: 3, Func. Count: 18, Neg. LLF: 121.200736896101
Iteration: 4, Func. Count: 23, Neg. LLF: 120.99217544592415
Iteration: 5, Func. Count: 28, Neg. LLF: 120.92707080715384
Iteration: 6, Func. Count: 33, Neg. LLF: 120.92625303961232
Iteration: 7, Func. Count: 38, Neg. LLF: 120.92624418851236
Iteration: 8, Func. Count: 42, Neg. LLF: 120.92624428060473
Optimization terminated successfully (Exit mode 0)
Current function value: 120.92624418851236
Iterations: 8
Function evaluations: 42
Gradient evaluations: 8
Iteration: 1, Func. Count: 5, Neg. LLF: 129.76068914073235
Iteration: 2, Func. Count: 9, Neg. LLF: 128.66172271295233
Iteration: 3, Func. Count: 13, Neg. LLF: 127.88416611805776
Iteration: 4, Func. Count: 17, Neg. LLF: 127.55749360283359
Iteration: 5, Func. Count: 21, Neg. LLF: 127.53253876294508
Iteration: 6, Func. Count: 25, Neg. LLF: 127.517762609428
Iteration: 7, Func. Count: 29, Neg. LLF: 127.51762548914436
Iteration: 8, Func. Count: 33, Neg. LLF: 127.51762492227542
Optimization terminated successfully (Exit mode 0)
Current function value: 127.51762492227542
Iterations: 8
Function evaluations: 33
Gradient evaluations: 8
Iteration: 1, Func. Count: 6, Neg. LLF: 158.84791072339843
Iteration: 2, Func. Count: 13, Neg. LLF: 126.19059601784608
Iteration: 3, Func. Count: 18, Neg. LLF: 197.33897652746194
Iteration: 4, Func. Count: 25, Neg. LLF: 126.00833627032503
Iteration: 5, Func. Count: 30, Neg. LLF: 125.96255524001387
Iteration: 6, Func. Count: 35, Neg. LLF: 125.96086967035615
Iteration: 7, Func. Count: 40, Neg. LLF: 125.96084672036532
Iteration: 8, Func. Count: 44, Neg. LLF: 125.9608469090131
Optimization terminated successfully (Exit mode 0)
Current function value: 125.96084672036532
Iterations: 8
Function evaluations: 44
Gradient evaluations: 8
Iteration: 1, Func. Count: 7, Neg. LLF: 155.40501352708884
Iteration: 2, Func. Count: 15, Neg. LLF: 126.13581584086404
Iteration: 3, Func. Count: 21, Neg. LLF: 128.57136570352299
Iteration: 4, Func. Count: 28, Neg. LLF: 126.02181680815026
Iteration: 5, Func. Count: 34, Neg. LLF: 125.93365064703107
Iteration: 6, Func. Count: 40, Neg. LLF: 125.93333293510439
Iteration: 7, Func. Count: 46, Neg. LLF: 125.93313783542678
Iteration: 8, Func. Count: 52, Neg. LLF: 125.9329689081246
Iteration: 9, Func. Count: 58, Neg. LLF: 125.93285390783863
Iteration: 10, Func. Count: 64, Neg. LLF: 125.93284826212445
Iteration: 11, Func. Count: 70, Neg. LLF: 125.93284166457309
Iteration: 12, Func. Count: 75, Neg. LLF: 125.93284176774901
Optimization terminated successfully (Exit mode 0)
Current function value: 125.93284166457309
Iterations: 13
Function evaluations: 75
Gradient evaluations: 12
Iteration: 1, Func. Count: 8, Neg. LLF: 154.0194495104989
Iteration: 2, Func. Count: 17, Neg. LLF: 126.14424569949983
Iteration: 3, Func. Count: 24, Neg. LLF: 126.07255993634628
Iteration: 4, Func. Count: 31, Neg. LLF: 126.03878722013502
Iteration: 5, Func. Count: 38, Neg. LLF: 126.00697622232504
Iteration: 6, Func. Count: 45, Neg. LLF: 126.00405482255196
Iteration: 7, Func. Count: 52, Neg. LLF: 126.00068795407499
Iteration: 8, Func. Count: 59, Neg. LLF: 125.99645124267462
Iteration: 9, Func. Count: 66, Neg. LLF: 125.98360031288998
Iteration: 10, Func. Count: 73, Neg. LLF: 125.93288854594762
Iteration: 11, Func. Count: 80, Neg. LLF: 125.93312729044274
Iteration: 12, Func. Count: 88, Neg. LLF: 125.95029601739306
Iteration: 13, Func. Count: 97, Neg. LLF: 125.93299878018347
Iteration: 14, Func. Count: 104, Neg. LLF: 125.93284175929905
Optimization terminated successfully (Exit mode 0)
Current function value: 125.93284183617192
Iterations: 15
Function evaluations: 104
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 155.84011115590351
Iteration: 2, Func. Count: 19, Neg. LLF: 126.18338892021512
Iteration: 3, Func. Count: 27, Neg. LLF: 126.04942235326804
Iteration: 4, Func. Count: 35, Neg. LLF: 126.02890207229747
Iteration: 5, Func. Count: 43, Neg. LLF: 126.02189577406523
Iteration: 6, Func. Count: 51, Neg. LLF: 126.00089790624472
Iteration: 7, Func. Count: 59, Neg. LLF: 125.94857610986398
Iteration: 8, Func. Count: 67, Neg. LLF: 125.9472652760911
Iteration: 9, Func. Count: 75, Neg. LLF: 125.94605976691106
Iteration: 10, Func. Count: 83, Neg. LLF: 125.94605916004785
Optimization terminated successfully (Exit mode 0)
Current function value: 125.94605916004785
Iterations: 10
Function evaluations: 83
Gradient evaluations: 10
Iteration: 1, Func. Count: 6, Neg. LLF: 133.62847021827145
Iteration: 2, Func. Count: 12, Neg. LLF: 131.7561589682824
Iteration: 3, Func. Count: 18, Neg. LLF: 127.52211824619964
Iteration: 4, Func. Count: 23, Neg. LLF: 127.51964242176015
Iteration: 5, Func. Count: 28, Neg. LLF: 127.51801421915157
Iteration: 6, Func. Count: 33, Neg. LLF: 127.51766259388232
Iteration: 7, Func. Count: 38, Neg. LLF: 127.51762555486783
Iteration: 8, Func. Count: 43, Neg. LLF: 127.51762492522913
Optimization terminated successfully (Exit mode 0)
Current function value: 127.51762492522913
Iterations: 8
Function evaluations: 43
Gradient evaluations: 8
Iteration: 1, Func. Count: 7, Neg. LLF: 158.43541380946812
Iteration: 2, Func. Count: 15, Neg. LLF: 126.19469421044498
Iteration: 3, Func. Count: 21, Neg. LLF: 194.42843371603064
Iteration: 4, Func. Count: 29, Neg. LLF: 126.03525661351193
Iteration: 5, Func. Count: 35, Neg. LLF: 125.96442894017254
Iteration: 6, Func. Count: 41, Neg. LLF: 125.96093386896446
Iteration: 7, Func. Count: 47, Neg. LLF: 125.96084693963608
Iteration: 8, Func. Count: 53, Neg. LLF: 125.96084635720968
Optimization terminated successfully (Exit mode 0)
Current function value: 125.96084635720968
Iterations: 8
Function evaluations: 53
Gradient evaluations: 8
Iteration: 1, Func. Count: 8, Neg. LLF: 154.8336191804714
Iteration: 2, Func. Count: 17, Neg. LLF: 126.14428256796589
Iteration: 3, Func. Count: 24, Neg. LLF: 127.60028510830128
Iteration: 4, Func. Count: 32, Neg. LLF: 126.05679306822964
Iteration: 5, Func. Count: 39, Neg. LLF: 125.68750010926753
Iteration: 6, Func. Count: 46, Neg. LLF: 125.38739109745107
Iteration: 7, Func. Count: 53, Neg. LLF: 125.30478395924766
Iteration: 8, Func. Count: 60, Neg. LLF: 125.19429804824982
Iteration: 9, Func. Count: 67, Neg. LLF: 159.3783143583112
Iteration: 10, Func. Count: 77, Neg. LLF: 127.20861286528246
Iteration: 11, Func. Count: 86, Neg. LLF: 125.25095748413764
Iteration: 12, Func. Count: 94, Neg. LLF: 125.2115039662331
Iteration: 13, Func. Count: 100, Neg. LLF: 125.21150384284628
Optimization terminated successfully (Exit mode 0)
Current function value: 125.2115039662331
Iterations: 14
Function evaluations: 100
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 153.98499822492235
Iteration: 2, Func. Count: 19, Neg. LLF: 126.1629312475207
Iteration: 3, Func. Count: 27, Neg. LLF: 126.06788493745995
Iteration: 4, Func. Count: 35, Neg. LLF: 126.05353072255056
Iteration: 5, Func. Count: 44, Neg. LLF: 126.00709071162831
Iteration: 6, Func. Count: 52, Neg. LLF: 126.00385849036516
Iteration: 7, Func. Count: 60, Neg. LLF: 125.99844767734535
Iteration: 8, Func. Count: 68, Neg. LLF: 125.99404427151813
Iteration: 9, Func. Count: 76, Neg. LLF: 125.97821760329127
Iteration: 10, Func. Count: 84, Neg. LLF: 125.91906696023652
Iteration: 11, Func. Count: 92, Neg. LLF: 125.87635377718618
Iteration: 12, Func. Count: 100, Neg. LLF: 160.45251219079438
Iteration: 13, Func. Count: 112, Neg. LLF: 37962834.000111826
Iteration: 14, Func. Count: 122, Neg. LLF: 1225.049863692342
Iteration: 15, Func. Count: 132, Neg. LLF: 131.54268753390804
Iteration: 16, Func. Count: 141, Neg. LLF: 125.21478117670584
Iteration: 17, Func. Count: 149, Neg. LLF: 125.21199423275122
Iteration: 18, Func. Count: 157, Neg. LLF: 125.21150681586502
Iteration: 19, Func. Count: 165, Neg. LLF: 125.2115036313449
Iteration: 20, Func. Count: 172, Neg. LLF: 125.21150371353708
Optimization terminated successfully (Exit mode 0)
Current function value: 125.2115036313449
Iterations: 21
Function evaluations: 172
Gradient evaluations: 20
Iteration: 1, Func. Count: 10, Neg. LLF: 138.6257356062654
Iteration: 2, Func. Count: 22, Neg. LLF: 126.33441087294423
Iteration: 3, Func. Count: 31, Neg. LLF: 125.1665355876787
Iteration: 4, Func. Count: 40, Neg. LLF: 134.99338292050598
Iteration: 5, Func. Count: 50, Neg. LLF: 128.2762984228206
Iteration: 6, Func. Count: 60, Neg. LLF: 124.75890290596045
Iteration: 7, Func. Count: 69, Neg. LLF: 124.75606278557115
Iteration: 8, Func. Count: 78, Neg. LLF: 124.74952684201145
Iteration: 9, Func. Count: 87, Neg. LLF: 124.74586757453507
Iteration: 10, Func. Count: 96, Neg. LLF: 124.74522587244124
Iteration: 11, Func. Count: 105, Neg. LLF: 124.7449622777362
Iteration: 12, Func. Count: 114, Neg. LLF: 124.744933608288
Iteration: 13, Func. Count: 122, Neg. LLF: 124.7449335706761
Optimization terminated successfully (Exit mode 0)
Current function value: 124.744933608288
Iterations: 13
Function evaluations: 122
Gradient evaluations: 13
Iteration: 1, Func. Count: 7, Neg. LLF: 132.4501863535211
Iteration: 2, Func. Count: 14, Neg. LLF: 127.69161783596
Iteration: 3, Func. Count: 20, Neg. LLF: 128.0791957702329
Iteration: 4, Func. Count: 27, Neg. LLF: 127.53750073363803
Iteration: 5, Func. Count: 33, Neg. LLF: 127.51791288663614
Iteration: 6, Func. Count: 39, Neg. LLF: 127.51762686943016
Iteration: 7, Func. Count: 45, Neg. LLF: 127.51762492240164
Iteration: 8, Func. Count: 50, Neg. LLF: 127.51762497249823
Optimization terminated successfully (Exit mode 0)
Current function value: 127.51762492240164
Iterations: 8
Function evaluations: 50
Gradient evaluations: 8
Iteration: 1, Func. Count: 8, Neg. LLF: 133.17726929356525
Iteration: 2, Func. Count: 18, Neg. LLF: 126.32915304833654
Iteration: 3, Func. Count: 25, Neg. LLF: 126.42825871743256
Iteration: 4, Func. Count: 33, Neg. LLF: 129.01283837450427
Iteration: 5, Func. Count: 41, Neg. LLF: 125.96459034404407
Iteration: 6, Func. Count: 48, Neg. LLF: 125.96095057271222
Iteration: 7, Func. Count: 55, Neg. LLF: 125.96084775945822
Iteration: 8, Func. Count: 62, Neg. LLF: 125.96084637402834
Iteration: 9, Func. Count: 68, Neg. LLF: 125.96084656194176
Optimization terminated successfully (Exit mode 0)
Current function value: 125.96084637402834
Iterations: 9
Function evaluations: 68
Gradient evaluations: 9
Iteration: 1, Func. Count: 9, Neg. LLF: 155.0143074369092
Iteration: 2, Func. Count: 19, Neg. LLF: 126.14793652776036
Iteration: 3, Func. Count: 27, Neg. LLF: 128.15700736712614
Iteration: 4, Func. Count: 36, Neg. LLF: 126.07023263991114
Iteration: 5, Func. Count: 44, Neg. LLF: 125.68586111642426
Iteration: 6, Func. Count: 52, Neg. LLF: 125.57196600136021
Iteration: 7, Func. Count: 60, Neg. LLF: 125.33440233374209
Iteration: 8, Func. Count: 68, Neg. LLF: 629.7231487873847
Iteration: 9, Func. Count: 79, Neg. LLF: 130.52364592737823
Iteration: 10, Func. Count: 88, Neg. LLF: 3525.080970349771
Iteration: 11, Func. Count: 99, Neg. LLF: 125.21175776650828
Iteration: 12, Func. Count: 107, Neg. LLF: 125.21150928899563
Iteration: 13, Func. Count: 115, Neg. LLF: 125.21150363199276
Iteration: 14, Func. Count: 122, Neg. LLF: 125.21150350880491
Optimization terminated successfully (Exit mode 0)
Current function value: 125.21150363199276
Iterations: 15
Function evaluations: 122
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 135.2630829553522
Iteration: 2, Func. Count: 22, Neg. LLF: 126.16702044459032
Iteration: 3, Func. Count: 31, Neg. LLF: 126.2995345375531
Iteration: 4, Func. Count: 41, Neg. LLF: 130.7184079915243
Iteration: 5, Func. Count: 51, Neg. LLF: 125.91199488310805
Iteration: 6, Func. Count: 60, Neg. LLF: 126.52937580203847
Iteration: 7, Func. Count: 70, Neg. LLF: 126.1282330938952
Iteration: 8, Func. Count: 80, Neg. LLF: 588.8310740206728
Iteration: 9, Func. Count: 91, Neg. LLF: 125.74848513213503
Iteration: 10, Func. Count: 100, Neg. LLF: 125.67612266497521
Iteration: 11, Func. Count: 109, Neg. LLF: 125.65778452917041
Iteration: 12, Func. Count: 118, Neg. LLF: 125.65076380041272
Iteration: 13, Func. Count: 127, Neg. LLF: 125.65029641160538
Iteration: 14, Func. Count: 136, Neg. LLF: 125.65025658204443
Iteration: 15, Func. Count: 145, Neg. LLF: 125.65103612226704
Optimization terminated successfully (Exit mode 0)
Current function value: 125.65025627147195
Iterations: 16
Function evaluations: 147
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 137.19332804068495
Iteration: 2, Func. Count: 24, Neg. LLF: 126.36899324366772
Iteration: 3, Func. Count: 34, Neg. LLF: 125.43460892879695
Iteration: 4, Func. Count: 44, Neg. LLF: 130.84458242309003
Iteration: 5, Func. Count: 55, Neg. LLF: 136.72563308588778
Iteration: 6, Func. Count: 67, Neg. LLF: 124.8126222243929
Iteration: 7, Func. Count: 77, Neg. LLF: 124.78668595060326
Iteration: 8, Func. Count: 87, Neg. LLF: 124.76029013130864
Iteration: 9, Func. Count: 97, Neg. LLF: 124.74583234196984
Iteration: 10, Func. Count: 107, Neg. LLF: 124.7452385344246
Iteration: 11, Func. Count: 117, Neg. LLF: 124.7449359711197
Iteration: 12, Func. Count: 127, Neg. LLF: 124.74493323811599
Iteration: 13, Func. Count: 136, Neg. LLF: 124.74493320051158
Optimization terminated successfully (Exit mode 0)
Current function value: 124.74493323811599
Iterations: 13
Function evaluations: 136
Gradient evaluations: 13
Iteration: 1, Func. Count: 8, Neg. LLF: 129.9821074077763
Iteration: 2, Func. Count: 16, Neg. LLF: 129.97789342827744
Iteration: 3, Func. Count: 24, Neg. LLF: 128.12794471411428
Iteration: 4, Func. Count: 31, Neg. LLF: 128.53102595397672
Iteration: 5, Func. Count: 40, Neg. LLF: 127.57038521432305
Iteration: 6, Func. Count: 47, Neg. LLF: 127.52489325060444
Iteration: 7, Func. Count: 54, Neg. LLF: 127.51839973539451
Iteration: 8, Func. Count: 61, Neg. LLF: 127.5181164171876
Iteration: 9, Func. Count: 68, Neg. LLF: 127.5176260182009
Iteration: 10, Func. Count: 75, Neg. LLF: 127.51762493370168
Iteration: 11, Func. Count: 81, Neg. LLF: 127.51762497519877
Optimization terminated successfully (Exit mode 0)
Current function value: 127.51762493370168
Iterations: 11
Function evaluations: 81
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 138.78060787342477
Iteration: 2, Func. Count: 21, Neg. LLF: 128.22932120944083
Iteration: 3, Func. Count: 30, Neg. LLF: 126.89374988686981
Iteration: 4, Func. Count: 39, Neg. LLF: 126.46918168844
Iteration: 5, Func. Count: 47, Neg. LLF: 126.01632650442829
Iteration: 6, Func. Count: 55, Neg. LLF: 125.98831211700613
Iteration: 7, Func. Count: 63, Neg. LLF: 125.96190486743434
Iteration: 8, Func. Count: 71, Neg. LLF: 125.96102192395176
Iteration: 9, Func. Count: 79, Neg. LLF: 125.96084644082673
Iteration: 10, Func. Count: 86, Neg. LLF: 125.96084662828483
Optimization terminated successfully (Exit mode 0)
Current function value: 125.96084644082673
Iterations: 10
Function evaluations: 86
Gradient evaluations: 10
Iteration: 1, Func. Count: 10, Neg. LLF: 134.46431457565333
Iteration: 2, Func. Count: 23, Neg. LLF: 127.59545017243657
Iteration: 3, Func. Count: 33, Neg. LLF: 125.35946978414204
Iteration: 4, Func. Count: 42, Neg. LLF: 137.11234277884188
Iteration: 5, Func. Count: 52, Neg. LLF: 124.92665580473644
Iteration: 6, Func. Count: 61, Neg. LLF: 124.91235397333186
Iteration: 7, Func. Count: 70, Neg. LLF: 124.90881176809667
Iteration: 8, Func. Count: 79, Neg. LLF: 124.9084451296423
Iteration: 9, Func. Count: 88, Neg. LLF: 124.90836208319504
Iteration: 10, Func. Count: 97, Neg. LLF: 124.90832746676391
Iteration: 11, Func. Count: 106, Neg. LLF: 124.90834839894143
Optimization terminated successfully (Exit mode 0)
Current function value: 124.90832749717111
Iterations: 12
Function evaluations: 109
Gradient evaluations: 11
Iteration: 1, Func. Count: 11, Neg. LLF: 135.01096427866557
Iteration: 2, Func. Count: 24, Neg. LLF: 126.1834507843063
Iteration: 3, Func. Count: 34, Neg. LLF: 126.31486803552058
Iteration: 4, Func. Count: 45, Neg. LLF: 129.46121535797127
Iteration: 5, Func. Count: 56, Neg. LLF: 126.0305677479795
Iteration: 6, Func. Count: 66, Neg. LLF: 126.07055938941836
Iteration: 7, Func. Count: 77, Neg. LLF: 126.10765272079713
Iteration: 8, Func. Count: 88, Neg. LLF: 126.09998717214506
Iteration: 9, Func. Count: 99, Neg. LLF: 141.9951040224337
Iteration: 10, Func. Count: 112, Neg. LLF: 125.83608259644637
Iteration: 11, Func. Count: 123, Neg. LLF: 125.6507962696656
Iteration: 12, Func. Count: 133, Neg. LLF: 125.65065959915648
Iteration: 13, Func. Count: 143, Neg. LLF: 125.65030105758981
Iteration: 14, Func. Count: 153, Neg. LLF: 125.65025921760555
Iteration: 15, Func. Count: 163, Neg. LLF: 125.65025607789221
Iteration: 16, Func. Count: 172, Neg. LLF: 125.65025601792551
Optimization terminated successfully (Exit mode 0)
Current function value: 125.65025607789221
Iterations: 16
Function evaluations: 172
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 136.59887553869854
Iteration: 2, Func. Count: 26, Neg. LLF: 126.40039001743045
Iteration: 3, Func. Count: 37, Neg. LLF: 125.09548163731483
Iteration: 4, Func. Count: 48, Neg. LLF: 371057.05389692285
Iteration: 5, Func. Count: 61, Neg. LLF: 125.642848142327
Iteration: 6, Func. Count: 73, Neg. LLF: 124.96494641247874
Iteration: 7, Func. Count: 85, Neg. LLF: 124.78557319421223
Iteration: 8, Func. Count: 96, Neg. LLF: 124.75649230645575
Iteration: 9, Func. Count: 107, Neg. LLF: 124.7482243542651
Iteration: 10, Func. Count: 118, Neg. LLF: 124.74554915500936
Iteration: 11, Func. Count: 129, Neg. LLF: 124.74495708587763
Iteration: 12, Func. Count: 140, Neg. LLF: 124.74493516461384
Iteration: 13, Func. Count: 151, Neg. LLF: 124.7449331638074
Iteration: 14, Func. Count: 161, Neg. LLF: 124.74493312615098
Optimization terminated successfully (Exit mode 0)
Current function value: 124.7449331638074
Iterations: 14
Function evaluations: 161
Gradient evaluations: 14
Iteration: 1, Func. Count: 5, Neg. LLF: 133.45374808248522
Iteration: 2, Func. Count: 10, Neg. LLF: 142.75653050258956
Iteration: 3, Func. Count: 15, Neg. LLF: 124.18705958913426
Iteration: 4, Func. Count: 19, Neg. LLF: 124.18256858079934
Iteration: 5, Func. Count: 23, Neg. LLF: 124.18252166353453
Iteration: 6, Func. Count: 27, Neg. LLF: 124.18251101631742
Iteration: 7, Func. Count: 31, Neg. LLF: 124.18250902291342
Iteration: 8, Func. Count: 34, Neg. LLF: 124.18250902290775
Optimization terminated successfully (Exit mode 0)
Current function value: 124.18250902291342
Iterations: 8
Function evaluations: 34
Gradient evaluations: 8
Iteration: 1, Func. Count: 6, Neg. LLF: 128.22238882529248
Iteration: 2, Func. Count: 12, Neg. LLF: 127.87614500712631
Iteration: 3, Func. Count: 18, Neg. LLF: 124.48210491830345
Iteration: 4, Func. Count: 24, Neg. LLF: 124.21306842385209
Iteration: 5, Func. Count: 30, Neg. LLF: 124.09518106036303
Iteration: 6, Func. Count: 35, Neg. LLF: 124.09179890547605
Iteration: 7, Func. Count: 40, Neg. LLF: 124.09169265545944
Iteration: 8, Func. Count: 45, Neg. LLF: 124.09168339771108
Iteration: 9, Func. Count: 49, Neg. LLF: 124.09168339768767
Optimization terminated successfully (Exit mode 0)
Current function value: 124.09168339771108
Iterations: 9
Function evaluations: 49
Gradient evaluations: 9
Iteration: 1, Func. Count: 7, Neg. LLF: 129.46656318991802
Iteration: 2, Func. Count: 14, Neg. LLF: 127.74981411596664
Iteration: 3, Func. Count: 21, Neg. LLF: 124.508364575468
Iteration: 4, Func. Count: 27, Neg. LLF: 130.57501542729906
Iteration: 5, Func. Count: 34, Neg. LLF: 128.20558024508532
Iteration: 6, Func. Count: 41, Neg. LLF: 124.10844426965453
Iteration: 7, Func. Count: 47, Neg. LLF: 124.09374192811916
Iteration: 8, Func. Count: 53, Neg. LLF: 124.092082471833
Iteration: 9, Func. Count: 59, Neg. LLF: 124.09171703003665
Iteration: 10, Func. Count: 65, Neg. LLF: 124.09168414591947
Iteration: 11, Func. Count: 70, Neg. LLF: 124.09168418957091
Optimization terminated successfully (Exit mode 0)
Current function value: 124.09168414591947
Iterations: 11
Function evaluations: 70
Gradient evaluations: 11
Iteration: 1, Func. Count: 8, Neg. LLF: 128.6361601224722
Iteration: 2, Func. Count: 16, Neg. LLF: 127.85802954905456
Iteration: 3, Func. Count: 24, Neg. LLF: 124.4699181824929
Iteration: 4, Func. Count: 31, Neg. LLF: 2409.233667113301
Iteration: 5, Func. Count: 40, Neg. LLF: 125.20445980524433
Iteration: 6, Func. Count: 48, Neg. LLF: 124.09659353479263
Iteration: 7, Func. Count: 55, Neg. LLF: 124.09228023088215
Iteration: 8, Func. Count: 62, Neg. LLF: 124.09180615677609
Iteration: 9, Func. Count: 69, Neg. LLF: 124.09168691404292
Iteration: 10, Func. Count: 76, Neg. LLF: 124.0916847892644
Iteration: 11, Func. Count: 83, Neg. LLF: 124.09168328530815
Iteration: 12, Func. Count: 89, Neg. LLF: 124.09168336138572
Optimization terminated successfully (Exit mode 0)
Current function value: 124.09168328530815
Iterations: 12
Function evaluations: 89
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 128.09788266848292
Iteration: 2, Func. Count: 18, Neg. LLF: 128.2637142094362
Iteration: 3, Func. Count: 27, Neg. LLF: 124.4869450706677
Iteration: 4, Func. Count: 35, Neg. LLF: 347.8597878578195
Iteration: 5, Func. Count: 45, Neg. LLF: 130.22155087877053
Iteration: 6, Func. Count: 55, Neg. LLF: 124.2490013116013
Iteration: 7, Func. Count: 64, Neg. LLF: 124.01218520001157
Iteration: 8, Func. Count: 73, Neg. LLF: 123.9530760658387
Iteration: 9, Func. Count: 81, Neg. LLF: 123.95236346690496
Iteration: 10, Func. Count: 89, Neg. LLF: 123.95234696179935
Iteration: 11, Func. Count: 96, Neg. LLF: 123.95234696167171
Optimization terminated successfully (Exit mode 0)
Current function value: 123.95234696179935
Iterations: 11
Function evaluations: 96
Gradient evaluations: 11
Iteration: 1, Func. Count: 6, Neg. LLF: 133.24629482297092
Iteration: 2, Func. Count: 12, Neg. LLF: 133.2594803290772
Iteration: 3, Func. Count: 18, Neg. LLF: 121.14450178694622
Iteration: 4, Func. Count: 23, Neg. LLF: 120.84608521390743
Iteration: 5, Func. Count: 28, Neg. LLF: 120.81167784874013
Iteration: 6, Func. Count: 33, Neg. LLF: 120.81075997590251
Iteration: 7, Func. Count: 38, Neg. LLF: 120.81074832693541
Iteration: 8, Func. Count: 42, Neg. LLF: 120.81074837016062
Optimization terminated successfully (Exit mode 0)
Current function value: 120.81074832693541
Iterations: 8
Function evaluations: 42
Gradient evaluations: 8
Iteration: 1, Func. Count: 7, Neg. LLF: 128.17520353204318
Iteration: 2, Func. Count: 14, Neg. LLF: 126.96678572807892
Iteration: 3, Func. Count: 21, Neg. LLF: 121.254902607655
Iteration: 4, Func. Count: 27, Neg. LLF: 121.33355572082424
Iteration: 5, Func. Count: 34, Neg. LLF: 121.03482185779205
Iteration: 6, Func. Count: 41, Neg. LLF: 120.91930549296164
Iteration: 7, Func. Count: 47, Neg. LLF: 120.83605870531265
Iteration: 8, Func. Count: 53, Neg. LLF: 120.81371463307805
Iteration: 9, Func. Count: 59, Neg. LLF: 120.81075605437319
Iteration: 10, Func. Count: 65, Neg. LLF: 120.81074835372347
Iteration: 11, Func. Count: 70, Neg. LLF: 120.81074836856112
Optimization terminated successfully (Exit mode 0)
Current function value: 120.81074835372347
Iterations: 11
Function evaluations: 70
Gradient evaluations: 11
Iteration: 1, Func. Count: 8, Neg. LLF: 129.97160797757363
Iteration: 2, Func. Count: 16, Neg. LLF: 125.4398516895384
Iteration: 3, Func. Count: 24, Neg. LLF: 121.23288175445143
Iteration: 4, Func. Count: 31, Neg. LLF: 120.97583864460692
Iteration: 5, Func. Count: 38, Neg. LLF: 120.75469958592194
Iteration: 6, Func. Count: 45, Neg. LLF: 120.73987169315902
Iteration: 7, Func. Count: 52, Neg. LLF: 120.73803112020593
Iteration: 8, Func. Count: 59, Neg. LLF: 120.73739766972177
Iteration: 9, Func. Count: 66, Neg. LLF: 120.7373949931847
Iteration: 10, Func. Count: 72, Neg. LLF: 120.7373949931586
Optimization terminated successfully (Exit mode 0)
Current function value: 120.7373949931847
Iterations: 10
Function evaluations: 72
Gradient evaluations: 10
Iteration: 1, Func. Count: 9, Neg. LLF: 128.82095428867225
Iteration: 2, Func. Count: 18, Neg. LLF: 124.69634563465341
Iteration: 3, Func. Count: 27, Neg. LLF: 121.09796466069682
Iteration: 4, Func. Count: 35, Neg. LLF: 121.13714874085761
Iteration: 5, Func. Count: 44, Neg. LLF: 121.36286482024173
Iteration: 6, Func. Count: 53, Neg. LLF: 120.74175212092405
Iteration: 7, Func. Count: 61, Neg. LLF: 120.739687337256
Iteration: 8, Func. Count: 69, Neg. LLF: 120.73835216197433
Iteration: 9, Func. Count: 77, Neg. LLF: 120.73749034890737
Iteration: 10, Func. Count: 85, Neg. LLF: 120.73739804817029
Iteration: 11, Func. Count: 93, Neg. LLF: 120.73739490861219
Iteration: 12, Func. Count: 100, Neg. LLF: 120.73739490881229
Optimization terminated successfully (Exit mode 0)
Current function value: 120.73739490861219
Iterations: 12
Function evaluations: 100
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 128.08088812069315
Iteration: 2, Func. Count: 20, Neg. LLF: 124.73945493694157
Iteration: 3, Func. Count: 30, Neg. LLF: 123.8645488980973
Iteration: 4, Func. Count: 40, Neg. LLF: 120.77956346785918
Iteration: 5, Func. Count: 49, Neg. LLF: 120.96008643843912
Iteration: 6, Func. Count: 59, Neg. LLF: 120.83204011248044
Iteration: 7, Func. Count: 69, Neg. LLF: 120.74182844193955
Iteration: 8, Func. Count: 78, Neg. LLF: 120.73779353272509
Iteration: 9, Func. Count: 87, Neg. LLF: 120.73743897640419
Iteration: 10, Func. Count: 96, Neg. LLF: 120.7373949766365
Iteration: 11, Func. Count: 104, Neg. LLF: 120.73739505005689
Optimization terminated successfully (Exit mode 0)
Current function value: 120.7373949766365
Iterations: 11
Function evaluations: 104
Gradient evaluations: 11
Iteration: 1, Func. Count: 7, Neg. LLF: 131.34560633114484
Iteration: 2, Func. Count: 14, Neg. LLF: 135.7577928388003
Iteration: 3, Func. Count: 21, Neg. LLF: 121.17166125067766
Iteration: 4, Func. Count: 27, Neg. LLF: 122.41354655171854
Iteration: 5, Func. Count: 35, Neg. LLF: 120.39640446740226
Iteration: 6, Func. Count: 41, Neg. LLF: 120.38239349469858
Iteration: 7, Func. Count: 47, Neg. LLF: 120.37548851635785
Iteration: 8, Func. Count: 53, Neg. LLF: 120.37176512176315
Iteration: 9, Func. Count: 59, Neg. LLF: 120.37099756737557
Iteration: 10, Func. Count: 65, Neg. LLF: 120.3709620502702
Iteration: 11, Func. Count: 70, Neg. LLF: 120.37096205025465
Optimization terminated successfully (Exit mode 0)
Current function value: 120.3709620502702
Iterations: 11
Function evaluations: 70
Gradient evaluations: 11
Iteration: 1, Func. Count: 8, Neg. LLF: 127.9888181345807
Iteration: 2, Func. Count: 16, Neg. LLF: 127.03698565938026
Iteration: 3, Func. Count: 24, Neg. LLF: 132.22086266150808
Iteration: 4, Func. Count: 33, Neg. LLF: 120.47998461853271
Iteration: 5, Func. Count: 40, Neg. LLF: 120.63820350098975
Iteration: 6, Func. Count: 48, Neg. LLF: 120.38145919133876
Iteration: 7, Func. Count: 55, Neg. LLF: 120.37483382679613
Iteration: 8, Func. Count: 62, Neg. LLF: 120.37250095423437
Iteration: 9, Func. Count: 69, Neg. LLF: 120.37097019869317
Iteration: 10, Func. Count: 76, Neg. LLF: 120.37096219934506
Iteration: 11, Func. Count: 82, Neg. LLF: 120.37096219952468
Optimization terminated successfully (Exit mode 0)
Current function value: 120.37096219934506
Iterations: 11
Function evaluations: 82
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 129.53545122695928
Iteration: 2, Func. Count: 18, Neg. LLF: 125.55992090493326
Iteration: 3, Func. Count: 27, Neg. LLF: 135.22597730634553
Iteration: 4, Func. Count: 37, Neg. LLF: 120.48990633442945
Iteration: 5, Func. Count: 45, Neg. LLF: 120.62960357176732
Iteration: 6, Func. Count: 54, Neg. LLF: 120.38925853723335
Iteration: 7, Func. Count: 62, Neg. LLF: 120.37416378054574
Iteration: 8, Func. Count: 70, Neg. LLF: 120.3727235207475
Iteration: 9, Func. Count: 78, Neg. LLF: 120.37096748544549
Iteration: 10, Func. Count: 86, Neg. LLF: 120.3709619840588
Iteration: 11, Func. Count: 93, Neg. LLF: 120.37096199809815
Optimization terminated successfully (Exit mode 0)
Current function value: 120.3709619840588
Iterations: 11
Function evaluations: 93
Gradient evaluations: 11
Iteration: 1, Func. Count: 10, Neg. LLF: 128.3204392011723
Iteration: 2, Func. Count: 20, Neg. LLF: 124.86294595599082
Iteration: 3, Func. Count: 30, Neg. LLF: 140.4884959672913
Iteration: 4, Func. Count: 41, Neg. LLF: 120.47918751674219
Iteration: 5, Func. Count: 50, Neg. LLF: 120.70318874704338
Iteration: 6, Func. Count: 60, Neg. LLF: 120.32011545462186
Iteration: 7, Func. Count: 69, Neg. LLF: 120.30770381108435
Iteration: 8, Func. Count: 78, Neg. LLF: 120.3031513830652
Iteration: 9, Func. Count: 87, Neg. LLF: 120.30118904585052
Iteration: 10, Func. Count: 96, Neg. LLF: 120.30072423852562
Iteration: 11, Func. Count: 105, Neg. LLF: 120.30062606278517
Iteration: 12, Func. Count: 114, Neg. LLF: 120.30060489140328
Iteration: 13, Func. Count: 123, Neg. LLF: 120.30060404641709
Optimization terminated successfully (Exit mode 0)
Current function value: 120.30060404641709
Iterations: 13
Function evaluations: 123
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 127.52157642481416
Iteration: 2, Func. Count: 22, Neg. LLF: 124.91150568396317
Iteration: 3, Func. Count: 33, Neg. LLF: 141.7966060121674
Iteration: 4, Func. Count: 45, Neg. LLF: 120.4750447923093
Iteration: 5, Func. Count: 55, Neg. LLF: 120.61676564455578
Iteration: 6, Func. Count: 66, Neg. LLF: 120.31744203198679
Iteration: 7, Func. Count: 76, Neg. LLF: 120.30794595896617
Iteration: 8, Func. Count: 86, Neg. LLF: 120.30257560156967
Iteration: 9, Func. Count: 96, Neg. LLF: 120.30107813013474
Iteration: 10, Func. Count: 106, Neg. LLF: 120.30070998392732
Iteration: 11, Func. Count: 116, Neg. LLF: 120.30062238898255
Iteration: 12, Func. Count: 126, Neg. LLF: 120.30060465300629
Iteration: 13, Func. Count: 136, Neg. LLF: 120.30060404025916
Optimization terminated successfully (Exit mode 0)
Current function value: 120.30060404025916
Iterations: 13
Function evaluations: 136
Gradient evaluations: 13
Iteration: 1, Func. Count: 8, Neg. LLF: 135.15676029645914
Iteration: 2, Func. Count: 17, Neg. LLF: 134.63709209050143
Iteration: 3, Func. Count: 25, Neg. LLF: 121.74538654905828
Iteration: 4, Func. Count: 32, Neg. LLF: 134.90503364771592
Iteration: 5, Func. Count: 40, Neg. LLF: 157.78635201215818
Iteration: 6, Func. Count: 50, Neg. LLF: 122.55438735780628
Iteration: 7, Func. Count: 58, Neg. LLF: 120.42173730082469
Iteration: 8, Func. Count: 65, Neg. LLF: 120.35299331317437
Iteration: 9, Func. Count: 72, Neg. LLF: 120.33293336790153
Iteration: 10, Func. Count: 79, Neg. LLF: 120.32885721864308
Iteration: 11, Func. Count: 86, Neg. LLF: 120.32862851860378
Iteration: 12, Func. Count: 93, Neg. LLF: 120.32856873069355
Iteration: 13, Func. Count: 100, Neg. LLF: 120.32856420887173
Iteration: 14, Func. Count: 107, Neg. LLF: 120.32856014354427
Iteration: 15, Func. Count: 113, Neg. LLF: 120.32856014352538
Optimization terminated successfully (Exit mode 0)
Current function value: 120.32856014354427
Iterations: 15
Function evaluations: 113
Gradient evaluations: 15
Iteration: 1, Func. Count: 9, Neg. LLF: 128.3036886463359
Iteration: 2, Func. Count: 18, Neg. LLF: 126.90645872623023
Iteration: 3, Func. Count: 27, Neg. LLF: 132.01144830163852
Iteration: 4, Func. Count: 37, Neg. LLF: 120.48372025672379
Iteration: 5, Func. Count: 45, Neg. LLF: 121.16716524741014
Iteration: 6, Func. Count: 54, Neg. LLF: 120.92645338011144
Iteration: 7, Func. Count: 63, Neg. LLF: 120.33767909710167
Iteration: 8, Func. Count: 71, Neg. LLF: 120.33009027192826
Iteration: 9, Func. Count: 79, Neg. LLF: 120.32866157904469
Iteration: 10, Func. Count: 87, Neg. LLF: 120.32856773718831
Iteration: 11, Func. Count: 95, Neg. LLF: 120.32856038668342
Iteration: 12, Func. Count: 102, Neg. LLF: 120.32856039517223
Optimization terminated successfully (Exit mode 0)
Current function value: 120.32856038668342
Iterations: 12
Function evaluations: 102
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 129.86050164146062
Iteration: 2, Func. Count: 20, Neg. LLF: 125.47051775709079
Iteration: 3, Func. Count: 30, Neg. LLF: 135.05554856013856
Iteration: 4, Func. Count: 41, Neg. LLF: 120.49408662623513
Iteration: 5, Func. Count: 50, Neg. LLF: 121.27805181240227
Iteration: 6, Func. Count: 60, Neg. LLF: 121.71096230421861
Iteration: 7, Func. Count: 70, Neg. LLF: 120.35023708840986
Iteration: 8, Func. Count: 79, Neg. LLF: 120.33394386375102
Iteration: 9, Func. Count: 88, Neg. LLF: 120.3289523379562
Iteration: 10, Func. Count: 97, Neg. LLF: 120.32857578057632
Iteration: 11, Func. Count: 106, Neg. LLF: 120.32856132145236
Iteration: 12, Func. Count: 115, Neg. LLF: 120.32856015715087
Iteration: 13, Func. Count: 123, Neg. LLF: 120.32856016258066
Optimization terminated successfully (Exit mode 0)
Current function value: 120.32856015715087
Iterations: 13
Function evaluations: 123
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 128.65868656777462
Iteration: 2, Func. Count: 22, Neg. LLF: 124.38468373148675
Iteration: 3, Func. Count: 33, Neg. LLF: 139.08262418930696
Iteration: 4, Func. Count: 45, Neg. LLF: 120.54129432941014
Iteration: 5, Func. Count: 55, Neg. LLF: 124.021551308893
Iteration: 6, Func. Count: 66, Neg. LLF: 123.84012065651108
Iteration: 7, Func. Count: 77, Neg. LLF: 120.38552445182131
Iteration: 8, Func. Count: 88, Neg. LLF: 120.29745192050035
Iteration: 9, Func. Count: 98, Neg. LLF: 120.29067541882458
Iteration: 10, Func. Count: 108, Neg. LLF: 120.2891453611143
Iteration: 11, Func. Count: 118, Neg. LLF: 120.28894951114407
Iteration: 12, Func. Count: 128, Neg. LLF: 120.28890336323028
Iteration: 13, Func. Count: 138, Neg. LLF: 120.28889077039015
Iteration: 14, Func. Count: 148, Neg. LLF: 120.28888269190087
Iteration: 15, Func. Count: 158, Neg. LLF: 120.2888817162269
Optimization terminated successfully (Exit mode 0)
Current function value: 120.2888817162269
Iterations: 15
Function evaluations: 158
Gradient evaluations: 15
Iteration: 1, Func. Count: 12, Neg. LLF: 127.91492970002805
Iteration: 2, Func. Count: 24, Neg. LLF: 124.81503041858517
Iteration: 3, Func. Count: 36, Neg. LLF: 142.1886252999142
Iteration: 4, Func. Count: 49, Neg. LLF: 120.48064923123906
Iteration: 5, Func. Count: 60, Neg. LLF: 122.19090463053865
Iteration: 6, Func. Count: 72, Neg. LLF: 124.01302675097682
Iteration: 7, Func. Count: 84, Neg. LLF: 120.32786943747516
Iteration: 8, Func. Count: 95, Neg. LLF: 120.29507426821496
Iteration: 9, Func. Count: 106, Neg. LLF: 120.29137343389385
Iteration: 10, Func. Count: 117, Neg. LLF: 120.28937299550034
Iteration: 11, Func. Count: 128, Neg. LLF: 120.28907908421958
Iteration: 12, Func. Count: 139, Neg. LLF: 120.28894061861428
Iteration: 13, Func. Count: 150, Neg. LLF: 120.28889531133103
Iteration: 14, Func. Count: 161, Neg. LLF: 120.28888256504013
Iteration: 15, Func. Count: 172, Neg. LLF: 120.28888169688918
Optimization terminated successfully (Exit mode 0)
Current function value: 120.28888169688918
Iterations: 15
Function evaluations: 172
Gradient evaluations: 15
Iteration: 1, Func. Count: 9, Neg. LLF: 135.45947452597332
Iteration: 2, Func. Count: 19, Neg. LLF: 133.1248555045953
Iteration: 3, Func. Count: 28, Neg. LLF: 121.65604631861719
Iteration: 4, Func. Count: 36, Neg. LLF: 135.52793340821347
Iteration: 5, Func. Count: 45, Neg. LLF: 162.64348038839225
Iteration: 6, Func. Count: 56, Neg. LLF: 122.33942639294645
Iteration: 7, Func. Count: 65, Neg. LLF: 120.38190033336079
Iteration: 8, Func. Count: 73, Neg. LLF: 120.34773054938177
Iteration: 9, Func. Count: 81, Neg. LLF: 120.3313520602108
Iteration: 10, Func. Count: 89, Neg. LLF: 120.32880923689532
Iteration: 11, Func. Count: 97, Neg. LLF: 120.32861199086139
Iteration: 12, Func. Count: 105, Neg. LLF: 120.32856879443179
Iteration: 13, Func. Count: 113, Neg. LLF: 120.32856425470823
Iteration: 14, Func. Count: 121, Neg. LLF: 120.32856024392876
Iteration: 15, Func. Count: 128, Neg. LLF: 120.32856038635224
Optimization terminated successfully (Exit mode 0)
Current function value: 120.32856024392876
Iterations: 15
Function evaluations: 128
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 128.2183060318423
Iteration: 2, Func. Count: 20, Neg. LLF: 126.85962535179848
Iteration: 3, Func. Count: 30, Neg. LLF: 132.1874342667575
Iteration: 4, Func. Count: 41, Neg. LLF: 120.48325590158498
Iteration: 5, Func. Count: 50, Neg. LLF: 121.2237807782231
Iteration: 6, Func. Count: 60, Neg. LLF: 120.94531258201933
Iteration: 7, Func. Count: 70, Neg. LLF: 120.33820734163086
Iteration: 8, Func. Count: 79, Neg. LLF: 120.33036469567311
Iteration: 9, Func. Count: 88, Neg. LLF: 120.32869245455936
Iteration: 10, Func. Count: 97, Neg. LLF: 120.32857029073593
Iteration: 11, Func. Count: 106, Neg. LLF: 120.32856054800381
Iteration: 12, Func. Count: 114, Neg. LLF: 120.32856055649013
Optimization terminated successfully (Exit mode 0)
Current function value: 120.32856054800381
Iterations: 12
Function evaluations: 114
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 129.8047363011214
Iteration: 2, Func. Count: 22, Neg. LLF: 125.42388741872314
Iteration: 3, Func. Count: 33, Neg. LLF: 135.2704356454755
Iteration: 4, Func. Count: 45, Neg. LLF: 120.49344477642308
Iteration: 5, Func. Count: 55, Neg. LLF: 121.33924439223362
Iteration: 6, Func. Count: 66, Neg. LLF: 121.71927750722156
Iteration: 7, Func. Count: 77, Neg. LLF: 120.35203545872228
Iteration: 8, Func. Count: 87, Neg. LLF: 120.33380232186106
Iteration: 9, Func. Count: 97, Neg. LLF: 120.32901461793683
Iteration: 10, Func. Count: 107, Neg. LLF: 120.32857725154126
Iteration: 11, Func. Count: 117, Neg. LLF: 120.32856123834472
Iteration: 12, Func. Count: 127, Neg. LLF: 120.32856017740204
Iteration: 13, Func. Count: 136, Neg. LLF: 120.32856018282797
Optimization terminated successfully (Exit mode 0)
Current function value: 120.32856017740204
Iterations: 13
Function evaluations: 136
Gradient evaluations: 13
Iteration: 1, Func. Count: 12, Neg. LLF: 128.6386626923901
Iteration: 2, Func. Count: 24, Neg. LLF: 124.27578430101553
Iteration: 3, Func. Count: 36, Neg. LLF: 139.10884105104134
Iteration: 4, Func. Count: 49, Neg. LLF: 120.55487685282657
Iteration: 5, Func. Count: 60, Neg. LLF: 124.3937214428668
Iteration: 6, Func. Count: 72, Neg. LLF: 123.84847768040416
Iteration: 7, Func. Count: 84, Neg. LLF: 120.40013373877505
Iteration: 8, Func. Count: 96, Neg. LLF: 120.29808142236699
Iteration: 9, Func. Count: 107, Neg. LLF: 120.29097835501342
Iteration: 10, Func. Count: 118, Neg. LLF: 120.28913522919177
Iteration: 11, Func. Count: 129, Neg. LLF: 120.28894332902476
Iteration: 12, Func. Count: 140, Neg. LLF: 120.28889868980647
Iteration: 13, Func. Count: 151, Neg. LLF: 120.2888896003981
Iteration: 14, Func. Count: 162, Neg. LLF: 120.28888245415872
Iteration: 15, Func. Count: 173, Neg. LLF: 120.28888170669562
Optimization terminated successfully (Exit mode 0)
Current function value: 120.28888170669562
Iterations: 15
Function evaluations: 173
Gradient evaluations: 15
Iteration: 1, Func. Count: 13, Neg. LLF: 127.91532924332734
Iteration: 2, Func. Count: 26, Neg. LLF: 124.77636613633652
Iteration: 3, Func. Count: 39, Neg. LLF: 142.4214625900795
Iteration: 4, Func. Count: 53, Neg. LLF: 120.47972086750501
Iteration: 5, Func. Count: 65, Neg. LLF: 122.36053762690177
Iteration: 6, Func. Count: 78, Neg. LLF: 124.03010276401
Iteration: 7, Func. Count: 91, Neg. LLF: 120.33225217742606
Iteration: 8, Func. Count: 103, Neg. LLF: 120.29539407856012
Iteration: 9, Func. Count: 115, Neg. LLF: 120.29157763814972
Iteration: 10, Func. Count: 127, Neg. LLF: 120.28940625457867
Iteration: 11, Func. Count: 139, Neg. LLF: 120.28908810242227
Iteration: 12, Func. Count: 151, Neg. LLF: 120.28894471436622
Iteration: 13, Func. Count: 163, Neg. LLF: 120.28889687670765
Iteration: 14, Func. Count: 175, Neg. LLF: 120.2888827600694
Iteration: 15, Func. Count: 187, Neg. LLF: 120.28888170958881
Iteration: 16, Func. Count: 198, Neg. LLF: 120.28888177797708
Optimization terminated successfully (Exit mode 0)
Current function value: 120.28888170958881
Iterations: 16
Function evaluations: 198
Gradient evaluations: 16
Iteration: 1, Func. Count: 6, Neg. LLF: 130.88719816787068
Iteration: 2, Func. Count: 12, Neg. LLF: 180.19127479103787
Iteration: 3, Func. Count: 18, Neg. LLF: 124.40918893472596
Iteration: 4, Func. Count: 24, Neg. LLF: 125.70293271156217
Iteration: 5, Func. Count: 30, Neg. LLF: 124.09593772082448
Iteration: 6, Func. Count: 35, Neg. LLF: 124.0923486344355
Iteration: 7, Func. Count: 40, Neg. LLF: 124.09132183715087
Iteration: 8, Func. Count: 45, Neg. LLF: 124.09084381003696
Iteration: 9, Func. Count: 50, Neg. LLF: 124.09083451650855
Iteration: 10, Func. Count: 54, Neg. LLF: 124.09083451653576
Optimization terminated successfully (Exit mode 0)
Current function value: 124.09083451650855
Iterations: 10
Function evaluations: 54
Gradient evaluations: 10
Iteration: 1, Func. Count: 7, Neg. LLF: 159.9571824434422
Iteration: 2, Func. Count: 15, Neg. LLF: 126.39869076572542
Iteration: 3, Func. Count: 21, Neg. LLF: 138.35137501936543
Iteration: 4, Func. Count: 28, Neg. LLF: 125.9662040346169
Iteration: 5, Func. Count: 34, Neg. LLF: 125.96174086446466
Iteration: 6, Func. Count: 40, Neg. LLF: 125.96084897501618
Iteration: 7, Func. Count: 46, Neg. LLF: 125.96084650477243
Iteration: 8, Func. Count: 51, Neg. LLF: 125.96084669215237
Optimization terminated successfully (Exit mode 0)
Current function value: 125.96084650477243
Iterations: 8
Function evaluations: 51
Gradient evaluations: 8
Iteration: 1, Func. Count: 8, Neg. LLF: 155.46245634964998
Iteration: 2, Func. Count: 17, Neg. LLF: 126.23348328643877
Iteration: 3, Func. Count: 24, Neg. LLF: 128.2471685342618
Iteration: 4, Func. Count: 32, Neg. LLF: 126.0264696305612
Iteration: 5, Func. Count: 39, Neg. LLF: 125.98423687802706
Iteration: 6, Func. Count: 46, Neg. LLF: 125.98414935266143
Iteration: 7, Func. Count: 53, Neg. LLF: 125.98414660509144
Iteration: 8, Func. Count: 60, Neg. LLF: 125.98403065799062
Iteration: 9, Func. Count: 67, Neg. LLF: 125.93386238040449
Iteration: 10, Func. Count: 74, Neg. LLF: 224.97840266729372
Iteration: 11, Func. Count: 83, Neg. LLF: 127.74543763230639
Iteration: 12, Func. Count: 92, Neg. LLF: 126.19265154913013
Iteration: 13, Func. Count: 100, Neg. LLF: 125.8999863502391
Iteration: 14, Func. Count: 107, Neg. LLF: 125.89998507716514
Iteration: 15, Func. Count: 113, Neg. LLF: 125.89998496980752
Optimization terminated successfully (Exit mode 0)
Current function value: 125.89998507716514
Iterations: 16
Function evaluations: 113
Gradient evaluations: 15
Iteration: 1, Func. Count: 9, Neg. LLF: 154.13409719666052
Iteration: 2, Func. Count: 19, Neg. LLF: 126.21753791262786
Iteration: 3, Func. Count: 27, Neg. LLF: 126.09920972023721
Iteration: 4, Func. Count: 35, Neg. LLF: 126.09124874056569
Iteration: 5, Func. Count: 44, Neg. LLF: 126.0091318796081
Iteration: 6, Func. Count: 52, Neg. LLF: 126.00585382196734
Iteration: 7, Func. Count: 60, Neg. LLF: 125.99691018125321
Iteration: 8, Func. Count: 68, Neg. LLF: 125.99195673037676
Iteration: 9, Func. Count: 76, Neg. LLF: 125.98156044572767
Iteration: 10, Func. Count: 84, Neg. LLF: 125.96761459401132
Iteration: 11, Func. Count: 92, Neg. LLF: 126.20329876878837
Iteration: 12, Func. Count: 102, Neg. LLF: 125.9392808206396
Iteration: 13, Func. Count: 110, Neg. LLF: 125.96256905132188
Iteration: 14, Func. Count: 119, Neg. LLF: 126.00748558603341
Iteration: 15, Func. Count: 128, Neg. LLF: 125.90579576507207
Iteration: 16, Func. Count: 136, Neg. LLF: 125.90007037698398
Iteration: 17, Func. Count: 144, Neg. LLF: 125.89998397432623
Iteration: 18, Func. Count: 152, Neg. LLF: 125.91123084971626
Optimization terminated successfully (Exit mode 0)
Current function value: 125.89998364447567
Iterations: 20
Function evaluations: 154
Gradient evaluations: 18
Iteration: 1, Func. Count: 10, Neg. LLF: 125.52388252980155
Iteration: 2, Func. Count: 19, Neg. LLF: 133.13225359613278
Iteration: 3, Func. Count: 29, Neg. LLF: 140.23487685863017
Iteration: 4, Func. Count: 40, Neg. LLF: 137.47263258641894
Iteration: 5, Func. Count: 50, Neg. LLF: 128.00135188789724
Iteration: 6, Func. Count: 60, Neg. LLF: 133.49148005764704
Iteration: 7, Func. Count: 70, Neg. LLF: 124.51100099847815
Iteration: 8, Func. Count: 80, Neg. LLF: 123.98032324096862
Iteration: 9, Func. Count: 89, Neg. LLF: 123.97570707976794
Iteration: 10, Func. Count: 99, Neg. LLF: 123.96284042725519
Iteration: 11, Func. Count: 108, Neg. LLF: 123.95452081694562
Iteration: 12, Func. Count: 117, Neg. LLF: 123.95255206664791
Iteration: 13, Func. Count: 126, Neg. LLF: 123.95235230881592
Iteration: 14, Func. Count: 135, Neg. LLF: 123.95234660398843
Iteration: 15, Func. Count: 143, Neg. LLF: 123.95234660395336
Optimization terminated successfully (Exit mode 0)
Current function value: 123.95234660398843
Iterations: 15
Function evaluations: 143
Gradient evaluations: 15
Iteration: 1, Func. Count: 7, Neg. LLF: 132.2074937098829
Iteration: 2, Func. Count: 14, Neg. LLF: 174.38919924627058
Iteration: 3, Func. Count: 21, Neg. LLF: 123.78098295394187
Iteration: 4, Func. Count: 28, Neg. LLF: 122.19250086188805
Iteration: 5, Func. Count: 35, Neg. LLF: 120.93449671887555
Iteration: 6, Func. Count: 41, Neg. LLF: 121.03876970513441
Iteration: 7, Func. Count: 48, Neg. LLF: 120.7147023757691
Iteration: 8, Func. Count: 55, Neg. LLF: 120.43763509354172
Iteration: 9, Func. Count: 61, Neg. LLF: 120.43631434322381
Iteration: 10, Func. Count: 67, Neg. LLF: 120.43628103596585
Iteration: 11, Func. Count: 73, Neg. LLF: 120.43628048997877
Optimization terminated successfully (Exit mode 0)
Current function value: 120.43628048997877
Iterations: 11
Function evaluations: 73
Gradient evaluations: 11
Iteration: 1, Func. Count: 8, Neg. LLF: 124.19140274294861
Iteration: 2, Func. Count: 15, Neg. LLF: 130.83760907059724
Iteration: 3, Func. Count: 23, Neg. LLF: 121.4745183515098
Iteration: 4, Func. Count: 30, Neg. LLF: 121.64328674699141
Iteration: 5, Func. Count: 38, Neg. LLF: 130.72690962256405
Iteration: 6, Func. Count: 46, Neg. LLF: 120.89055317596541
Iteration: 7, Func. Count: 54, Neg. LLF: 120.43951451826078
Iteration: 8, Func. Count: 61, Neg. LLF: 120.43680434688854
Iteration: 9, Func. Count: 68, Neg. LLF: 120.43628562596851
Iteration: 10, Func. Count: 75, Neg. LLF: 120.43628051818612
Iteration: 11, Func. Count: 81, Neg. LLF: 120.43628052991484
Optimization terminated successfully (Exit mode 0)
Current function value: 120.43628051818612
Iterations: 11
Function evaluations: 81
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 125.2410139376668
Iteration: 2, Func. Count: 18, Neg. LLF: 131.0003011428553
Iteration: 3, Func. Count: 27, Neg. LLF: 123.61057418075829
Iteration: 4, Func. Count: 35, Neg. LLF: 121.46324240100377
Iteration: 5, Func. Count: 43, Neg. LLF: 121.98634226846103
Iteration: 6, Func. Count: 53, Neg. LLF: 121.69255754124637
Iteration: 7, Func. Count: 62, Neg. LLF: 122.12570627848726
Iteration: 8, Func. Count: 71, Neg. LLF: 120.61302035802264
Iteration: 9, Func. Count: 79, Neg. LLF: 120.45661660504965
Iteration: 10, Func. Count: 87, Neg. LLF: 120.4405110263077
Iteration: 11, Func. Count: 95, Neg. LLF: 120.43630401625524
Iteration: 12, Func. Count: 103, Neg. LLF: 120.4362818066231
Iteration: 13, Func. Count: 111, Neg. LLF: 120.43628048360976
Iteration: 14, Func. Count: 118, Neg. LLF: 120.43628049812082
Optimization terminated successfully (Exit mode 0)
Current function value: 120.43628048360976
Iterations: 14
Function evaluations: 118
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 126.14335041799283
Iteration: 2, Func. Count: 21, Neg. LLF: 126.88200019969351
Iteration: 3, Func. Count: 31, Neg. LLF: 124.53704798011834
Iteration: 4, Func. Count: 41, Neg. LLF: 121.91399344168069
Iteration: 5, Func. Count: 51, Neg. LLF: 121.10932355557944
Iteration: 6, Func. Count: 60, Neg. LLF: 121.20101622305498
Iteration: 7, Func. Count: 70, Neg. LLF: 120.78648819774816
Iteration: 8, Func. Count: 80, Neg. LLF: 120.60683155912122
Iteration: 9, Func. Count: 90, Neg. LLF: 120.45887965575632
Iteration: 10, Func. Count: 99, Neg. LLF: 120.4102478771438
Iteration: 11, Func. Count: 108, Neg. LLF: 120.40419743222584
Iteration: 12, Func. Count: 117, Neg. LLF: 120.40141596617065
Iteration: 13, Func. Count: 126, Neg. LLF: 120.40080617607418
Iteration: 14, Func. Count: 135, Neg. LLF: 120.40080503482812
Iteration: 15, Func. Count: 143, Neg. LLF: 120.40080503482234
Optimization terminated successfully (Exit mode 0)
Current function value: 120.40080503482812
Iterations: 15
Function evaluations: 143
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 129.06489971397295
Iteration: 2, Func. Count: 22, Neg. LLF: 129.66166237095803
Iteration: 3, Func. Count: 33, Neg. LLF: 123.00672142820275
Iteration: 4, Func. Count: 44, Neg. LLF: 145.37141980703421
Iteration: 5, Func. Count: 55, Neg. LLF: 120.73093471784289
Iteration: 6, Func. Count: 65, Neg. LLF: 120.45470236129427
Iteration: 7, Func. Count: 75, Neg. LLF: 120.41143583609541
Iteration: 8, Func. Count: 85, Neg. LLF: 120.401621553325
Iteration: 9, Func. Count: 95, Neg. LLF: 120.40095605697346
Iteration: 10, Func. Count: 105, Neg. LLF: 120.4008087474805
Iteration: 11, Func. Count: 115, Neg. LLF: 120.40080510664875
Iteration: 12, Func. Count: 124, Neg. LLF: 120.40080517292222
Optimization terminated successfully (Exit mode 0)
Current function value: 120.40080510664875
Iterations: 12
Function evaluations: 124
Gradient evaluations: 12
Iteration: 1, Func. Count: 8, Neg. LLF: 131.93597316944712
Iteration: 2, Func. Count: 16, Neg. LLF: 174.91799872372818
Iteration: 3, Func. Count: 24, Neg. LLF: 122.32371116615641
Iteration: 4, Func. Count: 31, Neg. LLF: 134.3655087323097
Iteration: 5, Func. Count: 40, Neg. LLF: 137.46707906481825
Iteration: 6, Func. Count: 51, Neg. LLF: 123.5230491768359
Iteration: 7, Func. Count: 59, Neg. LLF: 121.0567173281891
Iteration: 8, Func. Count: 66, Neg. LLF: 120.47095622569277
Iteration: 9, Func. Count: 73, Neg. LLF: 120.69104587805596
Iteration: 10, Func. Count: 81, Neg. LLF: 120.37316452643839
Iteration: 11, Func. Count: 88, Neg. LLF: 120.37206801111125
Iteration: 12, Func. Count: 95, Neg. LLF: 120.37150565443082
Iteration: 13, Func. Count: 102, Neg. LLF: 120.37103419619135
Iteration: 14, Func. Count: 109, Neg. LLF: 120.37096675532834
Iteration: 15, Func. Count: 116, Neg. LLF: 120.37096209872983
Iteration: 16, Func. Count: 122, Neg. LLF: 120.37096209879785
Optimization terminated successfully (Exit mode 0)
Current function value: 120.37096209872983
Iterations: 16
Function evaluations: 122
Gradient evaluations: 16
Iteration: 1, Func. Count: 9, Neg. LLF: 124.02573941646605
Iteration: 2, Func. Count: 17, Neg. LLF: 129.9560233022436
Iteration: 3, Func. Count: 26, Neg. LLF: 121.63021989281225
Iteration: 4, Func. Count: 34, Neg. LLF: 121.08725103081062
Iteration: 5, Func. Count: 42, Neg. LLF: 125.4517584624679
Iteration: 6, Func. Count: 51, Neg. LLF: 120.98836774706076
Iteration: 7, Func. Count: 60, Neg. LLF: 120.44825383179855
Iteration: 8, Func. Count: 68, Neg. LLF: 120.3877354481927
Iteration: 9, Func. Count: 76, Neg. LLF: 120.37179687788517
Iteration: 10, Func. Count: 84, Neg. LLF: 120.37106267293122
Iteration: 11, Func. Count: 92, Neg. LLF: 120.3709622007126
Iteration: 12, Func. Count: 99, Neg. LLF: 120.37096220090001
Optimization terminated successfully (Exit mode 0)
Current function value: 120.3709622007126
Iterations: 12
Function evaluations: 99
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 124.98847673708745
Iteration: 2, Func. Count: 19, Neg. LLF: 132.0354093756701
Iteration: 3, Func. Count: 29, Neg. LLF: 121.86339691769633
Iteration: 4, Func. Count: 38, Neg. LLF: 121.27197080157387
Iteration: 5, Func. Count: 47, Neg. LLF: 131.92735242719434
Iteration: 6, Func. Count: 57, Neg. LLF: 121.42296344720879
Iteration: 7, Func. Count: 67, Neg. LLF: 121.27020942633477
Iteration: 8, Func. Count: 77, Neg. LLF: 120.96961354191511
Iteration: 9, Func. Count: 87, Neg. LLF: 120.38743410997607
Iteration: 10, Func. Count: 96, Neg. LLF: 120.37618424734563
Iteration: 11, Func. Count: 105, Neg. LLF: 120.37220579526712
Iteration: 12, Func. Count: 114, Neg. LLF: 120.3710056972883
Iteration: 13, Func. Count: 123, Neg. LLF: 120.37096427646856
Iteration: 14, Func. Count: 132, Neg. LLF: 120.3709619553591
Iteration: 15, Func. Count: 140, Neg. LLF: 120.37096196937811
Optimization terminated successfully (Exit mode 0)
Current function value: 120.3709619553591
Iterations: 15
Function evaluations: 140
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 125.97197537085029
Iteration: 2, Func. Count: 23, Neg. LLF: 127.72239849216379
Iteration: 3, Func. Count: 34, Neg. LLF: 122.2842403078123
Iteration: 4, Func. Count: 44, Neg. LLF: 124.62219190739955
Iteration: 5, Func. Count: 55, Neg. LLF: 126.25346815255261
Iteration: 6, Func. Count: 67, Neg. LLF: 121.07480312246112
Iteration: 7, Func. Count: 77, Neg. LLF: 120.78704632788114
Iteration: 8, Func. Count: 87, Neg. LLF: 120.63112965335638
Iteration: 9, Func. Count: 97, Neg. LLF: 121.3616664663382
Iteration: 10, Func. Count: 108, Neg. LLF: 121.57418654042695
Iteration: 11, Func. Count: 119, Neg. LLF: 120.39009295575558
Iteration: 12, Func. Count: 130, Neg. LLF: 120.32251809020171
Iteration: 13, Func. Count: 140, Neg. LLF: 120.30972135447035
Iteration: 14, Func. Count: 150, Neg. LLF: 120.3018343489711
Iteration: 15, Func. Count: 160, Neg. LLF: 120.30069907160745
Iteration: 16, Func. Count: 170, Neg. LLF: 120.30060464467618
Iteration: 17, Func. Count: 180, Neg. LLF: 120.30060405851128
Optimization terminated successfully (Exit mode 0)
Current function value: 120.30060405851128
Iterations: 17
Function evaluations: 180
Gradient evaluations: 17
Iteration: 1, Func. Count: 12, Neg. LLF: 128.83569286958215
Iteration: 2, Func. Count: 24, Neg. LLF: 129.6805143055376
Iteration: 3, Func. Count: 36, Neg. LLF: 121.69725471814822
Iteration: 4, Func. Count: 47, Neg. LLF: 122.0478688012831
Iteration: 5, Func. Count: 59, Neg. LLF: 125.05910144715068
Iteration: 6, Func. Count: 74, Neg. LLF: 125.70577279729362
Iteration: 7, Func. Count: 86, Neg. LLF: 120.8494293553954
Iteration: 8, Func. Count: 98, Neg. LLF: 120.33859504135799
Iteration: 9, Func. Count: 109, Neg. LLF: 120.30252457830352
Iteration: 10, Func. Count: 120, Neg. LLF: 120.30133210556549
Iteration: 11, Func. Count: 131, Neg. LLF: 120.30094196159516
Iteration: 12, Func. Count: 142, Neg. LLF: 120.30062735292142
Iteration: 13, Func. Count: 153, Neg. LLF: 120.30060492708499
Iteration: 14, Func. Count: 164, Neg. LLF: 120.30060403001511
Optimization terminated successfully (Exit mode 0)
Current function value: 120.30060403001511
Iterations: 14
Function evaluations: 164
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 130.64400759731143
Iteration: 2, Func. Count: 18, Neg. LLF: 175.51581809539775
Iteration: 3, Func. Count: 27, Neg. LLF: 122.35965243378418
Iteration: 4, Func. Count: 35, Neg. LLF: 144.0041367947363
Iteration: 5, Func. Count: 45, Neg. LLF: 132.94632311358004
Iteration: 6, Func. Count: 57, Neg. LLF: 122.89660789801023
Iteration: 7, Func. Count: 66, Neg. LLF: 120.5274126640185
Iteration: 8, Func. Count: 74, Neg. LLF: 120.34286195887267
Iteration: 9, Func. Count: 82, Neg. LLF: 120.34477353476677
Iteration: 10, Func. Count: 91, Neg. LLF: 120.32909968344302
Iteration: 11, Func. Count: 99, Neg. LLF: 120.32894711756362
Iteration: 12, Func. Count: 107, Neg. LLF: 120.32857165037632
Iteration: 13, Func. Count: 115, Neg. LLF: 120.32856077005725
Iteration: 14, Func. Count: 123, Neg. LLF: 120.3285601386551
Optimization terminated successfully (Exit mode 0)
Current function value: 120.3285601386551
Iterations: 14
Function evaluations: 123
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 123.98900981958836
Iteration: 2, Func. Count: 19, Neg. LLF: 130.08041012445096
Iteration: 3, Func. Count: 29, Neg. LLF: 121.65179181348526
Iteration: 4, Func. Count: 38, Neg. LLF: 121.08004817059867
Iteration: 5, Func. Count: 47, Neg. LLF: 124.52527834950126
Iteration: 6, Func. Count: 58, Neg. LLF: 120.54777852854883
Iteration: 7, Func. Count: 67, Neg. LLF: 120.64074967323793
Iteration: 8, Func. Count: 77, Neg. LLF: 133.9693129129058
Iteration: 9, Func. Count: 87, Neg. LLF: 120.33332163990349
Iteration: 10, Func. Count: 96, Neg. LLF: 120.33016155273555
Iteration: 11, Func. Count: 105, Neg. LLF: 120.32902419020593
Iteration: 12, Func. Count: 114, Neg. LLF: 120.32856970557825
Iteration: 13, Func. Count: 123, Neg. LLF: 120.32856029233527
Iteration: 14, Func. Count: 131, Neg. LLF: 120.32856030092763
Optimization terminated successfully (Exit mode 0)
Current function value: 120.32856029233527
Iterations: 14
Function evaluations: 131
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 125.01235166735121
Iteration: 2, Func. Count: 21, Neg. LLF: 131.5804834542018
Iteration: 3, Func. Count: 32, Neg. LLF: 121.90989510317311
Iteration: 4, Func. Count: 42, Neg. LLF: 122.19360184149528
Iteration: 5, Func. Count: 53, Neg. LLF: 128.95841282878013
Iteration: 6, Func. Count: 64, Neg. LLF: 121.69473903320363
Iteration: 7, Func. Count: 75, Neg. LLF: 129.73735527050366
Iteration: 8, Func. Count: 86, Neg. LLF: 120.89926674516153
Iteration: 9, Func. Count: 97, Neg. LLF: 120.38866868966439
Iteration: 10, Func. Count: 108, Neg. LLF: 120.32967807494396
Iteration: 11, Func. Count: 118, Neg. LLF: 120.32959610767125
Iteration: 12, Func. Count: 129, Neg. LLF: 120.32856440545005
Iteration: 13, Func. Count: 139, Neg. LLF: 120.32856026371212
Iteration: 14, Func. Count: 148, Neg. LLF: 120.32856026915871
Optimization terminated successfully (Exit mode 0)
Current function value: 120.32856026371212
Iterations: 14
Function evaluations: 148
Gradient evaluations: 14
Iteration: 1, Func. Count: 12, Neg. LLF: 125.92208080453956
Iteration: 2, Func. Count: 25, Neg. LLF: 127.67440441304576
Iteration: 3, Func. Count: 37, Neg. LLF: 122.16817083225796
Iteration: 4, Func. Count: 48, Neg. LLF: 125.23413480156309
Iteration: 5, Func. Count: 61, Neg. LLF: 170.8898246637269
Iteration: 6, Func. Count: 73, Neg. LLF: 122.87341305808951
Iteration: 7, Func. Count: 85, Neg. LLF: 121.05385890945647
Iteration: 8, Func. Count: 97, Neg. LLF: 122.2254467750871
Iteration: 9, Func. Count: 109, Neg. LLF: 120.50552560054074
Iteration: 10, Func. Count: 120, Neg. LLF: 120.40245843421899
Iteration: 11, Func. Count: 131, Neg. LLF: 120.3625342142126
Iteration: 12, Func. Count: 142, Neg. LLF: 120.30558129769932
Iteration: 13, Func. Count: 153, Neg. LLF: 120.2906418466269
Iteration: 14, Func. Count: 164, Neg. LLF: 120.28892823126375
Iteration: 15, Func. Count: 175, Neg. LLF: 120.28888242148076
Iteration: 16, Func. Count: 186, Neg. LLF: 120.28888171833603
Optimization terminated successfully (Exit mode 0)
Current function value: 120.28888171833603
Iterations: 16
Function evaluations: 186
Gradient evaluations: 16
Iteration: 1, Func. Count: 13, Neg. LLF: 128.99317160765352
Iteration: 2, Func. Count: 26, Neg. LLF: 129.65470569936883
Iteration: 3, Func. Count: 39, Neg. LLF: 121.78945292289
Iteration: 4, Func. Count: 51, Neg. LLF: 126.16877374426227
Iteration: 5, Func. Count: 65, Neg. LLF: 134.27797330529424
Iteration: 6, Func. Count: 79, Neg. LLF: 121.53240426588746
Iteration: 7, Func. Count: 92, Neg. LLF: 120.987401002611
Iteration: 8, Func. Count: 105, Neg. LLF: 120.35237671358037
Iteration: 9, Func. Count: 117, Neg. LLF: 120.29370515978106
Iteration: 10, Func. Count: 129, Neg. LLF: 120.29203490821585
Iteration: 11, Func. Count: 141, Neg. LLF: 120.28954811330031
Iteration: 12, Func. Count: 153, Neg. LLF: 120.28927687335127
Iteration: 13, Func. Count: 165, Neg. LLF: 120.28897346102588
Iteration: 14, Func. Count: 177, Neg. LLF: 120.28890317861232
Iteration: 15, Func. Count: 189, Neg. LLF: 120.2888828323621
Iteration: 16, Func. Count: 201, Neg. LLF: 120.28888167936258
Iteration: 17, Func. Count: 212, Neg. LLF: 120.28888174774497
Optimization terminated successfully (Exit mode 0)
Current function value: 120.28888167936258
Iterations: 17
Function evaluations: 212
Gradient evaluations: 17
Iteration: 1, Func. Count: 10, Neg. LLF: 130.4790831431581
Iteration: 2, Func. Count: 20, Neg. LLF: 174.56922073653774
Iteration: 3, Func. Count: 30, Neg. LLF: 122.32951190378101
Iteration: 4, Func. Count: 39, Neg. LLF: 143.26414451618191
Iteration: 5, Func. Count: 50, Neg. LLF: 132.91052458968332
Iteration: 6, Func. Count: 63, Neg. LLF: 122.84210162547556
Iteration: 7, Func. Count: 73, Neg. LLF: 120.51839629462555
Iteration: 8, Func. Count: 82, Neg. LLF: 120.34272144767205
Iteration: 9, Func. Count: 91, Neg. LLF: 120.34536536431564
Iteration: 10, Func. Count: 101, Neg. LLF: 120.32908558625795
Iteration: 11, Func. Count: 110, Neg. LLF: 120.3289342743036
Iteration: 12, Func. Count: 119, Neg. LLF: 120.32856862443025
Iteration: 13, Func. Count: 128, Neg. LLF: 120.32856069335628
Iteration: 14, Func. Count: 137, Neg. LLF: 120.3285601243608
Optimization terminated successfully (Exit mode 0)
Current function value: 120.3285601243608
Iterations: 14
Function evaluations: 137
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 124.39747915643392
Iteration: 2, Func. Count: 21, Neg. LLF: 128.2411755082698
Iteration: 3, Func. Count: 34, Neg. LLF: 157.56976900031648
Iteration: 4, Func. Count: 46, Neg. LLF: 121.15450862560317
Iteration: 5, Func. Count: 56, Neg. LLF: 122.15693807139994
Iteration: 6, Func. Count: 67, Neg. LLF: 120.48596086120844
Iteration: 7, Func. Count: 77, Neg. LLF: 120.37629765615436
Iteration: 8, Func. Count: 87, Neg. LLF: 120.34183905015404
Iteration: 9, Func. Count: 97, Neg. LLF: 120.33434399020383
Iteration: 10, Func. Count: 107, Neg. LLF: 120.32969361603642
Iteration: 11, Func. Count: 117, Neg. LLF: 120.32902926439945
Iteration: 12, Func. Count: 127, Neg. LLF: 120.32862736334867
Iteration: 13, Func. Count: 137, Neg. LLF: 120.32856322050708
Iteration: 14, Func. Count: 147, Neg. LLF: 120.32856031316813
Iteration: 15, Func. Count: 156, Neg. LLF: 120.32856032169366
Optimization terminated successfully (Exit mode 0)
Current function value: 120.32856031316813
Iterations: 15
Function evaluations: 156
Gradient evaluations: 15
Iteration: 1, Func. Count: 12, Neg. LLF: 123.99214963934709
Iteration: 2, Func. Count: 23, Neg. LLF: 127.94513051719008
Iteration: 3, Func. Count: 37, Neg. LLF: 131.0647094799378
Iteration: 4, Func. Count: 50, Neg. LLF: 122.09036608309702
Iteration: 5, Func. Count: 61, Neg. LLF: 128.62744667323432
Iteration: 6, Func. Count: 73, Neg. LLF: 636.8472214322499
Iteration: 7, Func. Count: 85, Neg. LLF: 257.2035251925888
Iteration: 8, Func. Count: 97, Neg. LLF: 141.21400797915524
Iteration: 9, Func. Count: 109, Neg. LLF: 120.71093613226222
Iteration: 10, Func. Count: 120, Neg. LLF: 120.52868738887787
Iteration: 11, Func. Count: 131, Neg. LLF: 120.33126570149047
Iteration: 12, Func. Count: 142, Neg. LLF: 120.3291914905703
Iteration: 13, Func. Count: 153, Neg. LLF: 120.32872742974865
Iteration: 14, Func. Count: 164, Neg. LLF: 120.32856030460056
Iteration: 15, Func. Count: 175, Neg. LLF: 120.33198013433257
Optimization terminated successfully (Exit mode 0)
Current function value: 120.32856021333936
Iterations: 16
Function evaluations: 177
Gradient evaluations: 15
Iteration: 1, Func. Count: 13, Neg. LLF: 125.90620075824387
Iteration: 2, Func. Count: 27, Neg. LLF: 127.75341601749575
Iteration: 3, Func. Count: 40, Neg. LLF: 122.18809810346723
Iteration: 4, Func. Count: 52, Neg. LLF: 124.50237363854568
Iteration: 5, Func. Count: 66, Neg. LLF: 163.91674383838156
Iteration: 6, Func. Count: 79, Neg. LLF: 122.84690699835363
Iteration: 7, Func. Count: 92, Neg. LLF: 121.0412054367267
Iteration: 8, Func. Count: 105, Neg. LLF: 122.45189351272991
Iteration: 9, Func. Count: 118, Neg. LLF: 120.50364043367098
Iteration: 10, Func. Count: 130, Neg. LLF: 120.4035825064368
Iteration: 11, Func. Count: 142, Neg. LLF: 120.36254003632598
Iteration: 12, Func. Count: 154, Neg. LLF: 120.30149397724065
Iteration: 13, Func. Count: 166, Neg. LLF: 120.29545130873213
Iteration: 14, Func. Count: 178, Neg. LLF: 120.28911098244316
Iteration: 15, Func. Count: 190, Neg. LLF: 120.288887943743
Iteration: 16, Func. Count: 202, Neg. LLF: 120.2888817549224
Iteration: 17, Func. Count: 213, Neg. LLF: 120.2888817549512
Optimization terminated successfully (Exit mode 0)
Current function value: 120.2888817549224
Iterations: 17
Function evaluations: 213
Gradient evaluations: 17
Iteration: 1, Func. Count: 14, Neg. LLF: 128.94173845703943
Iteration: 2, Func. Count: 28, Neg. LLF: 129.60394472677763
Iteration: 3, Func. Count: 42, Neg. LLF: 121.89595029221495
Iteration: 4, Func. Count: 55, Neg. LLF: 123.82266270007095
Iteration: 5, Func. Count: 69, Neg. LLF: 132.32902886731065
Iteration: 6, Func. Count: 84, Neg. LLF: 121.54702784418556
Iteration: 7, Func. Count: 98, Neg. LLF: 120.40178773057039
Iteration: 8, Func. Count: 111, Neg. LLF: 120.4607954770317
Iteration: 9, Func. Count: 125, Neg. LLF: 121.12964753200816
Iteration: 10, Func. Count: 140, Neg. LLF: 120.30236149158645
Iteration: 11, Func. Count: 153, Neg. LLF: 120.29423230367094
Iteration: 12, Func. Count: 166, Neg. LLF: 120.29178832286966
Iteration: 13, Func. Count: 179, Neg. LLF: 120.28959329469244
Iteration: 14, Func. Count: 192, Neg. LLF: 120.28904220857369
Iteration: 15, Func. Count: 205, Neg. LLF: 120.28888850077234
Iteration: 16, Func. Count: 218, Neg. LLF: 120.28888318212051
Iteration: 17, Func. Count: 231, Neg. LLF: 120.2888817037855
Iteration: 18, Func. Count: 243, Neg. LLF: 120.28888177214415
Optimization terminated successfully (Exit mode 0)
Current function value: 120.2888817037855
Iterations: 18
Function evaluations: 243
Gradient evaluations: 18
Iteration: 1, Func. Count: 7, Neg. LLF: 139.38917987516442
Iteration: 2, Func. Count: 14, Neg. LLF: 168.40287856745746
Iteration: 3, Func. Count: 21, Neg. LLF: 124.35064954935069
Iteration: 4, Func. Count: 27, Neg. LLF: 125.61966872306178
Iteration: 5, Func. Count: 35, Neg. LLF: 130.10246966801904
Iteration: 6, Func. Count: 42, Neg. LLF: 124.09821765313569
Iteration: 7, Func. Count: 48, Neg. LLF: 124.09280492570092
Iteration: 8, Func. Count: 54, Neg. LLF: 124.09119214901942
Iteration: 9, Func. Count: 60, Neg. LLF: 124.09083728699052
Iteration: 10, Func. Count: 66, Neg. LLF: 124.09083501044738
Iteration: 11, Func. Count: 71, Neg. LLF: 124.09083506904207
Optimization terminated successfully (Exit mode 0)
Current function value: 124.09083501044738
Iterations: 11
Function evaluations: 71
Gradient evaluations: 11
Iteration: 1, Func. Count: 8, Neg. LLF: 160.14918832452338
Iteration: 2, Func. Count: 17, Neg. LLF: 126.39733018340245
Iteration: 3, Func. Count: 24, Neg. LLF: 139.41854508668152
Iteration: 4, Func. Count: 33, Neg. LLF: 125.96831338107039
Iteration: 5, Func. Count: 40, Neg. LLF: 125.9613994962026
Iteration: 6, Func. Count: 47, Neg. LLF: 125.96085245050584
Iteration: 7, Func. Count: 54, Neg. LLF: 125.9608469937161
Iteration: 8, Func. Count: 61, Neg. LLF: 125.9608463443924
Optimization terminated successfully (Exit mode 0)
Current function value: 125.9608463443924
Iterations: 8
Function evaluations: 61
Gradient evaluations: 8
Iteration: 1, Func. Count: 9, Neg. LLF: 155.790020569722
Iteration: 2, Func. Count: 19, Neg. LLF: 126.23481297117054
Iteration: 3, Func. Count: 27, Neg. LLF: 128.7112351611132
Iteration: 4, Func. Count: 36, Neg. LLF: 126.03936555362672
Iteration: 5, Func. Count: 44, Neg. LLF: 125.98425052230994
Iteration: 6, Func. Count: 52, Neg. LLF: 125.98412709048844
Iteration: 7, Func. Count: 60, Neg. LLF: 125.98410889314428
Iteration: 8, Func. Count: 68, Neg. LLF: 125.98387053435656
Iteration: 9, Func. Count: 76, Neg. LLF: 125.97948927915077
Iteration: 10, Func. Count: 84, Neg. LLF: 125.96171660039616
Iteration: 11, Func. Count: 92, Neg. LLF: 125.96136717038337
Iteration: 12, Func. Count: 100, Neg. LLF: 125.96085564251162
Iteration: 13, Func. Count: 108, Neg. LLF: 125.96084766971327
Iteration: 14, Func. Count: 116, Neg. LLF: 125.96084639869588
Iteration: 15, Func. Count: 123, Neg. LLF: 125.96084621106432
Optimization terminated successfully (Exit mode 0)
Current function value: 125.96084639869588
Iterations: 15
Function evaluations: 123
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 153.39414271790793
Iteration: 2, Func. Count: 21, Neg. LLF: 126.20755817820255
Iteration: 3, Func. Count: 30, Neg. LLF: 126.08267851186795
Iteration: 4, Func. Count: 39, Neg. LLF: 126.08282127935591
Iteration: 5, Func. Count: 49, Neg. LLF: 126.01080429026524
Iteration: 6, Func. Count: 58, Neg. LLF: 126.00704058198812
Iteration: 7, Func. Count: 67, Neg. LLF: 125.99611925746262
Iteration: 8, Func. Count: 76, Neg. LLF: 125.98557297847589
Iteration: 9, Func. Count: 85, Neg. LLF: 125.98394576684875
Iteration: 10, Func. Count: 94, Neg. LLF: 125.98386979468498
Iteration: 11, Func. Count: 103, Neg. LLF: 125.9829856647059
Iteration: 12, Func. Count: 112, Neg. LLF: 125.97747917712056
Iteration: 13, Func. Count: 121, Neg. LLF: 125.96223676588419
Iteration: 14, Func. Count: 130, Neg. LLF: 144.62106994581413
Iteration: 15, Func. Count: 149, Neg. LLF: 126.23423486664328
Iteration: 16, Func. Count: 160, Neg. LLF: 127.70759314997049
Iteration: 17, Func. Count: 171, Neg. LLF: 125.96084634487849
Iteration: 18, Func. Count: 179, Neg. LLF: 125.96084615915254
Optimization terminated successfully (Exit mode 0)
Current function value: 125.96084634487849
Iterations: 19
Function evaluations: 179
Gradient evaluations: 18
Iteration: 1, Func. Count: 11, Neg. LLF: 153.34480309825267
Iteration: 2, Func. Count: 23, Neg. LLF: 126.93991667220493
Iteration: 3, Func. Count: 34, Neg. LLF: 126.0470716978284
Iteration: 4, Func. Count: 44, Neg. LLF: 126.01464168555881
Iteration: 5, Func. Count: 54, Neg. LLF: 125.91794814038506
Iteration: 6, Func. Count: 64, Neg. LLF: 125.88599175298367
Iteration: 7, Func. Count: 74, Neg. LLF: 125.84767366235151
Iteration: 8, Func. Count: 84, Neg. LLF: 125.70302577832129
Iteration: 9, Func. Count: 94, Neg. LLF: 125.53661770720844
Iteration: 10, Func. Count: 104, Neg. LLF: 125.32196547394496
Iteration: 11, Func. Count: 114, Neg. LLF: 125.23526948670944
Iteration: 12, Func. Count: 124, Neg. LLF: 125.2357910243517
Iteration: 13, Func. Count: 134, Neg. LLF: 4522.92130716072
Iteration: 14, Func. Count: 146, Neg. LLF: 127.82804661751241
Iteration: 15, Func. Count: 157, Neg. LLF: 125.21363218940257
Iteration: 16, Func. Count: 167, Neg. LLF: 125.20325713035241
Iteration: 17, Func. Count: 177, Neg. LLF: 125.2034863478506
Iteration: 18, Func. Count: 188, Neg. LLF: 125.20232867682968
Iteration: 19, Func. Count: 197, Neg. LLF: 125.20232862403056
Optimization terminated successfully (Exit mode 0)
Current function value: 125.20232867682968
Iterations: 20
Function evaluations: 197
Gradient evaluations: 19
Iteration: 1, Func. Count: 8, Neg. LLF: 139.2797967388201
Iteration: 2, Func. Count: 16, Neg. LLF: 175.15520617671433
Iteration: 3, Func. Count: 24, Neg. LLF: 122.69542310087257
Iteration: 4, Func. Count: 31, Neg. LLF: 131.81834267625538
Iteration: 5, Func. Count: 40, Neg. LLF: 137.46380799844823
Iteration: 6, Func. Count: 50, Neg. LLF: 121.17820541872916
Iteration: 7, Func. Count: 57, Neg. LLF: 121.27728003666444
Iteration: 8, Func. Count: 65, Neg. LLF: 120.8330395613379
Iteration: 9, Func. Count: 72, Neg. LLF: 120.4779509323096
Iteration: 10, Func. Count: 79, Neg. LLF: 120.41621469212396
Iteration: 11, Func. Count: 86, Neg. LLF: 120.40967970913448
Iteration: 12, Func. Count: 93, Neg. LLF: 120.39956162445343
Iteration: 13, Func. Count: 100, Neg. LLF: 120.39867362740755
Iteration: 14, Func. Count: 107, Neg. LLF: 120.39842818095383
Iteration: 15, Func. Count: 114, Neg. LLF: 120.39840948778054
Iteration: 16, Func. Count: 121, Neg. LLF: 120.3984064783558
Iteration: 17, Func. Count: 127, Neg. LLF: 120.39840653891368
Optimization terminated successfully (Exit mode 0)
Current function value: 120.3984064783558
Iterations: 17
Function evaluations: 127
Gradient evaluations: 17
Iteration: 1, Func. Count: 9, Neg. LLF: 124.2365566117679
Iteration: 2, Func. Count: 17, Neg. LLF: 130.81845765904788
Iteration: 3, Func. Count: 26, Neg. LLF: 121.50550046142205
Iteration: 4, Func. Count: 34, Neg. LLF: 121.59196502889513
Iteration: 5, Func. Count: 43, Neg. LLF: 132.8443189617995
Iteration: 6, Func. Count: 52, Neg. LLF: 121.02152594323523
Iteration: 7, Func. Count: 61, Neg. LLF: 121.2426072069496
Iteration: 8, Func. Count: 70, Neg. LLF: 120.45031183780097
Iteration: 9, Func. Count: 78, Neg. LLF: 120.40052995017717
Iteration: 10, Func. Count: 86, Neg. LLF: 120.39859732624005
Iteration: 11, Func. Count: 94, Neg. LLF: 120.39841037220253
Iteration: 12, Func. Count: 102, Neg. LLF: 120.39840660175936
Iteration: 13, Func. Count: 109, Neg. LLF: 120.39840662159664
Optimization terminated successfully (Exit mode 0)
Current function value: 120.39840660175936
Iterations: 13
Function evaluations: 109
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 125.33547619180237
Iteration: 2, Func. Count: 21, Neg. LLF: 126.65431839507184
Iteration: 3, Func. Count: 31, Neg. LLF: 124.24661067561793
Iteration: 4, Func. Count: 41, Neg. LLF: 121.39966918781026
Iteration: 5, Func. Count: 50, Neg. LLF: 120.97023022508172
Iteration: 6, Func. Count: 59, Neg. LLF: 120.84450524132882
Iteration: 7, Func. Count: 68, Neg. LLF: 121.1081375297706
Iteration: 8, Func. Count: 78, Neg. LLF: 1063.4257175123678
Iteration: 9, Func. Count: 88, Neg. LLF: 120.46035876605112
Iteration: 10, Func. Count: 97, Neg. LLF: 120.80450185429349
Iteration: 11, Func. Count: 107, Neg. LLF: 120.40285921450418
Iteration: 12, Func. Count: 116, Neg. LLF: 120.39843059541947
Iteration: 13, Func. Count: 125, Neg. LLF: 120.39840805120643
Iteration: 14, Func. Count: 134, Neg. LLF: 120.39840649277163
Iteration: 15, Func. Count: 142, Neg. LLF: 120.39840650456694
Optimization terminated successfully (Exit mode 0)
Current function value: 120.39840649277163
Iterations: 15
Function evaluations: 142
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 126.14413367869966
Iteration: 2, Func. Count: 23, Neg. LLF: 126.71945271165423
Iteration: 3, Func. Count: 34, Neg. LLF: 124.50304278987748
Iteration: 4, Func. Count: 45, Neg. LLF: 122.00510239595721
Iteration: 5, Func. Count: 56, Neg. LLF: 121.09750584372229
Iteration: 6, Func. Count: 66, Neg. LLF: 121.19199875936333
Iteration: 7, Func. Count: 77, Neg. LLF: 120.76341820523633
Iteration: 8, Func. Count: 88, Neg. LLF: 123.64799826204901
Iteration: 9, Func. Count: 99, Neg. LLF: 120.5728578943251
Iteration: 10, Func. Count: 109, Neg. LLF: 120.43909388230692
Iteration: 11, Func. Count: 119, Neg. LLF: 120.4030741518551
Iteration: 12, Func. Count: 129, Neg. LLF: 120.38624993990913
Iteration: 13, Func. Count: 139, Neg. LLF: 120.38352945075478
Iteration: 14, Func. Count: 149, Neg. LLF: 120.38317757847545
Iteration: 15, Func. Count: 159, Neg. LLF: 120.38310674721507
Iteration: 16, Func. Count: 169, Neg. LLF: 120.38310454300772
Iteration: 17, Func. Count: 178, Neg. LLF: 120.38310454300571
Optimization terminated successfully (Exit mode 0)
Current function value: 120.38310454300772
Iterations: 17
Function evaluations: 178
Gradient evaluations: 17
Iteration: 1, Func. Count: 12, Neg. LLF: 126.96340891059417
Iteration: 2, Func. Count: 25, Neg. LLF: 126.35222690939226
Iteration: 3, Func. Count: 37, Neg. LLF: 123.57963161493963
Iteration: 4, Func. Count: 49, Neg. LLF: 125.21325265269834
Iteration: 5, Func. Count: 61, Neg. LLF: 121.30531690432979
Iteration: 6, Func. Count: 73, Neg. LLF: 120.54107145005023
Iteration: 7, Func. Count: 84, Neg. LLF: 121.3368265019484
Iteration: 8, Func. Count: 96, Neg. LLF: 120.60523802262851
Iteration: 9, Func. Count: 108, Neg. LLF: 120.40661613969394
Iteration: 10, Func. Count: 119, Neg. LLF: 120.38375769074442
Iteration: 11, Func. Count: 130, Neg. LLF: 120.38313891485406
Iteration: 12, Func. Count: 141, Neg. LLF: 120.38310890688628
Iteration: 13, Func. Count: 152, Neg. LLF: 120.38310520625832
Iteration: 14, Func. Count: 163, Neg. LLF: 120.38310460473728
Optimization terminated successfully (Exit mode 0)
Current function value: 120.38310460473728
Iterations: 14
Function evaluations: 163
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 138.66070299433517
Iteration: 2, Func. Count: 18, Neg. LLF: 176.06836288722303
Iteration: 3, Func. Count: 27, Neg. LLF: 122.71863103908434
Iteration: 4, Func. Count: 35, Neg. LLF: 138.54536680197106
Iteration: 5, Func. Count: 45, Neg. LLF: 145.91625660134673
Iteration: 6, Func. Count: 56, Neg. LLF: 123.56326296309908
Iteration: 7, Func. Count: 65, Neg. LLF: 120.69264014266743
Iteration: 8, Func. Count: 73, Neg. LLF: 120.4293112712379
Iteration: 9, Func. Count: 81, Neg. LLF: 120.4065261624843
Iteration: 10, Func. Count: 90, Neg. LLF: 120.33873316388977
Iteration: 11, Func. Count: 99, Neg. LLF: 120.33646482631114
Iteration: 12, Func. Count: 107, Neg. LLF: 120.33490423691886
Iteration: 13, Func. Count: 115, Neg. LLF: 120.33475204294787
Iteration: 14, Func. Count: 123, Neg. LLF: 120.33471402453998
Iteration: 15, Func. Count: 131, Neg. LLF: 120.3347127824649
Iteration: 16, Func. Count: 138, Neg. LLF: 120.33471278250366
Optimization terminated successfully (Exit mode 0)
Current function value: 120.3347127824649
Iterations: 16
Function evaluations: 138
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 124.07109660240886
Iteration: 2, Func. Count: 19, Neg. LLF: 129.92561960644363
Iteration: 3, Func. Count: 29, Neg. LLF: 121.61415017927324
Iteration: 4, Func. Count: 38, Neg. LLF: 121.07963850524972
Iteration: 5, Func. Count: 47, Neg. LLF: 126.46426259400468
Iteration: 6, Func. Count: 57, Neg. LLF: 120.95700817334682
Iteration: 7, Func. Count: 67, Neg. LLF: 120.44066889159122
Iteration: 8, Func. Count: 76, Neg. LLF: 120.80579582694509
Iteration: 9, Func. Count: 86, Neg. LLF: 120.34703806740387
Iteration: 10, Func. Count: 95, Neg. LLF: 120.33594433902161
Iteration: 11, Func. Count: 104, Neg. LLF: 120.33474001971702
Iteration: 12, Func. Count: 113, Neg. LLF: 120.33471304088076
Iteration: 13, Func. Count: 121, Neg. LLF: 120.33471305011858
Optimization terminated successfully (Exit mode 0)
Current function value: 120.33471304088076
Iterations: 13
Function evaluations: 121
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 125.07566982130336
Iteration: 2, Func. Count: 21, Neg. LLF: 131.88807268389814
Iteration: 3, Func. Count: 32, Neg. LLF: 121.98756598979502
Iteration: 4, Func. Count: 42, Neg. LLF: 122.10778035981774
Iteration: 5, Func. Count: 53, Neg. LLF: 128.95751107101788
Iteration: 6, Func. Count: 64, Neg. LLF: 121.72760333180624
Iteration: 7, Func. Count: 75, Neg. LLF: 123.15352932425644
Iteration: 8, Func. Count: 86, Neg. LLF: 120.83598158518447
Iteration: 9, Func. Count: 97, Neg. LLF: 120.37152338053443
Iteration: 10, Func. Count: 107, Neg. LLF: 120.33663167155551
Iteration: 11, Func. Count: 117, Neg. LLF: 120.33487375523654
Iteration: 12, Func. Count: 127, Neg. LLF: 120.33471405744875
Iteration: 13, Func. Count: 137, Neg. LLF: 120.33471288111684
Iteration: 14, Func. Count: 146, Neg. LLF: 120.33471289100368
Optimization terminated successfully (Exit mode 0)
Current function value: 120.33471288111684
Iterations: 14
Function evaluations: 146
Gradient evaluations: 14
Iteration: 1, Func. Count: 12, Neg. LLF: 125.96860420239983
Iteration: 2, Func. Count: 25, Neg. LLF: 127.56081943126631
Iteration: 3, Func. Count: 37, Neg. LLF: 122.12840414413034
Iteration: 4, Func. Count: 48, Neg. LLF: 122.8038096117566
Iteration: 5, Func. Count: 60, Neg. LLF: 126.37980735183831
Iteration: 6, Func. Count: 72, Neg. LLF: 122.22211841811252
Iteration: 7, Func. Count: 84, Neg. LLF: 120.5830758454541
Iteration: 8, Func. Count: 95, Neg. LLF: 120.4958998222213
Iteration: 9, Func. Count: 106, Neg. LLF: 120.37489943485599
Iteration: 10, Func. Count: 117, Neg. LLF: 120.34413234713887
Iteration: 11, Func. Count: 128, Neg. LLF: 120.30856362525411
Iteration: 12, Func. Count: 139, Neg. LLF: 120.29388171760527
Iteration: 13, Func. Count: 150, Neg. LLF: 120.29032825979985
Iteration: 14, Func. Count: 161, Neg. LLF: 120.29009730347613
Iteration: 15, Func. Count: 172, Neg. LLF: 120.29003478446533
Iteration: 16, Func. Count: 183, Neg. LLF: 120.2900330218484
Iteration: 17, Func. Count: 193, Neg. LLF: 120.29003302184948
Optimization terminated successfully (Exit mode 0)
Current function value: 120.2900330218484
Iterations: 17
Function evaluations: 193
Gradient evaluations: 17
Iteration: 1, Func. Count: 13, Neg. LLF: 126.62049448477076
Iteration: 2, Func. Count: 27, Neg. LLF: 127.2636833982895
Iteration: 3, Func. Count: 40, Neg. LLF: 130.362687847499
Iteration: 4, Func. Count: 53, Neg. LLF: 142.67203029565226
Iteration: 5, Func. Count: 66, Neg. LLF: 120.7195129722659
Iteration: 6, Func. Count: 78, Neg. LLF: 120.853358692331
Iteration: 7, Func. Count: 91, Neg. LLF: 120.42352350187392
Iteration: 8, Func. Count: 103, Neg. LLF: 121.59943673775417
Iteration: 9, Func. Count: 116, Neg. LLF: 120.38771017153721
Iteration: 10, Func. Count: 129, Neg. LLF: 120.3151246881091
Iteration: 11, Func. Count: 141, Neg. LLF: 120.29941425970615
Iteration: 12, Func. Count: 153, Neg. LLF: 120.29132859810673
Iteration: 13, Func. Count: 165, Neg. LLF: 120.29016469927474
Iteration: 14, Func. Count: 177, Neg. LLF: 120.29004992829225
Iteration: 15, Func. Count: 189, Neg. LLF: 120.29003302145142
Iteration: 16, Func. Count: 200, Neg. LLF: 120.29003309007902
Optimization terminated successfully (Exit mode 0)
Current function value: 120.29003302145142
Iterations: 16
Function evaluations: 200
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 142.31524843245614
Iteration: 2, Func. Count: 20, Neg. LLF: 163.93035775028096
Iteration: 3, Func. Count: 30, Neg. LLF: 122.64833466527246
Iteration: 4, Func. Count: 39, Neg. LLF: 125.76066408439956
Iteration: 5, Func. Count: 50, Neg. LLF: 170.33920924229255
Iteration: 6, Func. Count: 61, Neg. LLF: 122.82472906525804
Iteration: 7, Func. Count: 72, Neg. LLF: 120.38850095146353
Iteration: 8, Func. Count: 81, Neg. LLF: 120.57733158401807
Iteration: 9, Func. Count: 91, Neg. LLF: 120.33838174639001
Iteration: 10, Func. Count: 100, Neg. LLF: 120.33313000236672
Iteration: 11, Func. Count: 109, Neg. LLF: 120.32886136928
Iteration: 12, Func. Count: 118, Neg. LLF: 120.32867606370522
Iteration: 13, Func. Count: 127, Neg. LLF: 120.32863420975343
Iteration: 14, Func. Count: 136, Neg. LLF: 120.32859099648213
Iteration: 15, Func. Count: 145, Neg. LLF: 120.32856479583573
Iteration: 16, Func. Count: 154, Neg. LLF: 120.32856037564339
Iteration: 17, Func. Count: 162, Neg. LLF: 120.32856037553479
Optimization terminated successfully (Exit mode 0)
Current function value: 120.32856037564339
Iterations: 17
Function evaluations: 162
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 124.03899549167619
Iteration: 2, Func. Count: 21, Neg. LLF: 130.07253494102946
Iteration: 3, Func. Count: 32, Neg. LLF: 121.63423597863712
Iteration: 4, Func. Count: 42, Neg. LLF: 121.07179396667638
Iteration: 5, Func. Count: 52, Neg. LLF: 125.59650373718164
Iteration: 6, Func. Count: 64, Neg. LLF: 120.57158623346707
Iteration: 7, Func. Count: 74, Neg. LLF: 120.84409506074682
Iteration: 8, Func. Count: 85, Neg. LLF: 537.1808082043792
Iteration: 9, Func. Count: 97, Neg. LLF: 120.33241869960746
Iteration: 10, Func. Count: 107, Neg. LLF: 120.32948706623341
Iteration: 11, Func. Count: 117, Neg. LLF: 120.32877521325304
Iteration: 12, Func. Count: 127, Neg. LLF: 120.32859303230204
Iteration: 13, Func. Count: 137, Neg. LLF: 120.32856093071241
Iteration: 14, Func. Count: 147, Neg. LLF: 120.32856019693416
Optimization terminated successfully (Exit mode 0)
Current function value: 120.32856019693416
Iterations: 14
Function evaluations: 147
Gradient evaluations: 14
Iteration: 1, Func. Count: 12, Neg. LLF: 125.10320349392182
Iteration: 2, Func. Count: 24, Neg. LLF: 131.19298083093344
Iteration: 3, Func. Count: 36, Neg. LLF: 123.32820821291808
Iteration: 4, Func. Count: 47, Neg. LLF: 121.62640268001691
Iteration: 5, Func. Count: 58, Neg. LLF: 154.23893168722196
Iteration: 6, Func. Count: 72, Neg. LLF: 120.93062277638359
Iteration: 7, Func. Count: 83, Neg. LLF: 5143284.629094805
Iteration: 8, Func. Count: 95, Neg. LLF: 120.7158646067713
Iteration: 9, Func. Count: 107, Neg. LLF: 120.37070451128598
Iteration: 10, Func. Count: 118, Neg. LLF: 120.34415179916034
Iteration: 11, Func. Count: 129, Neg. LLF: 120.33216518372659
Iteration: 12, Func. Count: 140, Neg. LLF: 120.32876332758234
Iteration: 13, Func. Count: 151, Neg. LLF: 120.32856256241614
Iteration: 14, Func. Count: 162, Neg. LLF: 120.32856012509501
Iteration: 15, Func. Count: 172, Neg. LLF: 120.32856013052107
Optimization terminated successfully (Exit mode 0)
Current function value: 120.32856012509501
Iterations: 15
Function evaluations: 172
Gradient evaluations: 15
Iteration: 1, Func. Count: 13, Neg. LLF: 125.92185363080951
Iteration: 2, Func. Count: 27, Neg. LLF: 127.40919821697089
Iteration: 3, Func. Count: 40, Neg. LLF: 121.99384807296529
Iteration: 4, Func. Count: 52, Neg. LLF: 127.07079261404539
Iteration: 5, Func. Count: 67, Neg. LLF: 183.5265385865544
Iteration: 6, Func. Count: 80, Neg. LLF: 121.6375681496534
Iteration: 7, Func. Count: 93, Neg. LLF: 120.58601842889338
Iteration: 8, Func. Count: 105, Neg. LLF: 120.52365933475579
Iteration: 9, Func. Count: 117, Neg. LLF: 121.56666856037252
Iteration: 10, Func. Count: 131, Neg. LLF: 121.34978539020202
Iteration: 11, Func. Count: 145, Neg. LLF: 120.37991865227052
Iteration: 12, Func. Count: 157, Neg. LLF: 120.33711941987086
Iteration: 13, Func. Count: 169, Neg. LLF: 120.30865602663525
Iteration: 14, Func. Count: 181, Neg. LLF: 120.3011856864998
Iteration: 15, Func. Count: 193, Neg. LLF: 120.28968747422171
Iteration: 16, Func. Count: 205, Neg. LLF: 120.28888151395532
Iteration: 17, Func. Count: 217, Neg. LLF: 120.2888718201357
Iteration: 18, Func. Count: 228, Neg. LLF: 120.28887182011009
Optimization terminated successfully (Exit mode 0)
Current function value: 120.2888718201357
Iterations: 18
Function evaluations: 228
Gradient evaluations: 18
Iteration: 1, Func. Count: 14, Neg. LLF: 126.67760460666275
Iteration: 2, Func. Count: 29, Neg. LLF: 126.91381403475555
Iteration: 3, Func. Count: 43, Neg. LLF: 130.75654034978712
Iteration: 4, Func. Count: 57, Neg. LLF: 141.66868760398185
Iteration: 5, Func. Count: 71, Neg. LLF: 120.75371640808065
Iteration: 6, Func. Count: 84, Neg. LLF: 120.86942943607855
Iteration: 7, Func. Count: 98, Neg. LLF: 120.43695675773601
Iteration: 8, Func. Count: 111, Neg. LLF: 123.82597390244985
Iteration: 9, Func. Count: 126, Neg. LLF: 120.40609373515656
Iteration: 10, Func. Count: 140, Neg. LLF: 120.32745491194288
Iteration: 11, Func. Count: 153, Neg. LLF: 120.30641700509894
Iteration: 12, Func. Count: 166, Neg. LLF: 120.31169192967705
Iteration: 13, Func. Count: 180, Neg. LLF: 120.29638976751156
Iteration: 14, Func. Count: 193, Neg. LLF: 120.28986658431256
Iteration: 15, Func. Count: 206, Neg. LLF: 120.28892036461347
Iteration: 16, Func. Count: 219, Neg. LLF: 120.28887967858743
Iteration: 17, Func. Count: 232, Neg. LLF: 120.28887288553076
Iteration: 18, Func. Count: 245, Neg. LLF: 120.28887158899174
Iteration: 19, Func. Count: 257, Neg. LLF: 120.28887165744024
Optimization terminated successfully (Exit mode 0)
Current function value: 120.28887158899174
Iterations: 19
Function evaluations: 257
Gradient evaluations: 19
Iteration: 1, Func. Count: 11, Neg. LLF: 142.22522329216184
Iteration: 2, Func. Count: 22, Neg. LLF: 163.2406405286396
Iteration: 3, Func. Count: 33, Neg. LLF: 122.63545327838922
Iteration: 4, Func. Count: 43, Neg. LLF: 125.73612366947705
Iteration: 5, Func. Count: 55, Neg. LLF: 170.68461891216725
Iteration: 6, Func. Count: 67, Neg. LLF: 122.81719822522466
Iteration: 7, Func. Count: 79, Neg. LLF: 120.38024627001187
Iteration: 8, Func. Count: 89, Neg. LLF: 120.55202058040939
Iteration: 9, Func. Count: 100, Neg. LLF: 120.33650076772153
Iteration: 10, Func. Count: 110, Neg. LLF: 120.33147595391702
Iteration: 11, Func. Count: 120, Neg. LLF: 120.32879887404235
Iteration: 12, Func. Count: 130, Neg. LLF: 120.32869188315851
Iteration: 13, Func. Count: 140, Neg. LLF: 120.32863739037595
Iteration: 14, Func. Count: 150, Neg. LLF: 120.3285864596884
Iteration: 15, Func. Count: 160, Neg. LLF: 120.32856343925643
Iteration: 16, Func. Count: 170, Neg. LLF: 120.32856026566103
Iteration: 17, Func. Count: 179, Neg. LLF: 120.32856040810094
Optimization terminated successfully (Exit mode 0)
Current function value: 120.32856026566103
Iterations: 17
Function evaluations: 179
Gradient evaluations: 17
Iteration: 1, Func. Count: 12, Neg. LLF: 124.36111231367947
Iteration: 2, Func. Count: 23, Neg. LLF: 128.21765392072365
Iteration: 3, Func. Count: 37, Neg. LLF: 157.08571019992183
Iteration: 4, Func. Count: 50, Neg. LLF: 121.13338929942279
Iteration: 5, Func. Count: 61, Neg. LLF: 121.96170202570197
Iteration: 6, Func. Count: 73, Neg. LLF: 120.50842515667298
Iteration: 7, Func. Count: 84, Neg. LLF: 120.43736298518533
Iteration: 8, Func. Count: 95, Neg. LLF: 120.4436750996218
Iteration: 9, Func. Count: 107, Neg. LLF: 120.34183854694491
Iteration: 10, Func. Count: 118, Neg. LLF: 120.3305508473952
Iteration: 11, Func. Count: 129, Neg. LLF: 120.32917084048205
Iteration: 12, Func. Count: 140, Neg. LLF: 120.32872391606506
Iteration: 13, Func. Count: 151, Neg. LLF: 120.32856771415796
Iteration: 14, Func. Count: 162, Neg. LLF: 120.32856071093295
Iteration: 15, Func. Count: 173, Neg. LLF: 120.32856012260206
Optimization terminated successfully (Exit mode 0)
Current function value: 120.32856012260206
Iterations: 15
Function evaluations: 173
Gradient evaluations: 15
Iteration: 1, Func. Count: 13, Neg. LLF: 123.96890885440155
Iteration: 2, Func. Count: 25, Neg. LLF: 127.88543670085369
Iteration: 3, Func. Count: 40, Neg. LLF: 132.24520000235393
Iteration: 4, Func. Count: 54, Neg. LLF: 122.07497188171965
Iteration: 5, Func. Count: 66, Neg. LLF: 130.54843269265385
Iteration: 6, Func. Count: 79, Neg. LLF: 564.8600671798031
Iteration: 7, Func. Count: 92, Neg. LLF: 257.19020254248636
Iteration: 8, Func. Count: 105, Neg. LLF: 151.80941458846388
Iteration: 9, Func. Count: 118, Neg. LLF: 120.64431300872513
Iteration: 10, Func. Count: 130, Neg. LLF: 120.68099703078846
Iteration: 11, Func. Count: 143, Neg. LLF: 120.37889401771301
Iteration: 12, Func. Count: 155, Neg. LLF: 120.34576156347221
Iteration: 13, Func. Count: 167, Neg. LLF: 120.33792662467366
Iteration: 14, Func. Count: 179, Neg. LLF: 120.32942006338025
Iteration: 15, Func. Count: 191, Neg. LLF: 120.32866968983504
Iteration: 16, Func. Count: 203, Neg. LLF: 120.32856199893483
Iteration: 17, Func. Count: 215, Neg. LLF: 120.3285612268049
Optimization terminated successfully (Exit mode 0)
Current function value: 120.3285612268049
Iterations: 17
Function evaluations: 215
Gradient evaluations: 17
Iteration: 1, Func. Count: 14, Neg. LLF: 125.90464413816832
Iteration: 2, Func. Count: 29, Neg. LLF: 127.45095591961272
Iteration: 3, Func. Count: 43, Neg. LLF: 122.00433320898118
Iteration: 4, Func. Count: 56, Neg. LLF: 126.70267359479999
Iteration: 5, Func. Count: 72, Neg. LLF: 182.65083887664127
Iteration: 6, Func. Count: 86, Neg. LLF: 121.76599507057554
Iteration: 7, Func. Count: 100, Neg. LLF: 120.65911325836099
Iteration: 8, Func. Count: 113, Neg. LLF: 120.50809346963477
Iteration: 9, Func. Count: 126, Neg. LLF: 121.18071525459582
Iteration: 10, Func. Count: 141, Neg. LLF: 121.17828318948851
Iteration: 11, Func. Count: 155, Neg. LLF: 120.41107399821435
Iteration: 12, Func. Count: 168, Neg. LLF: 120.34740302952287
Iteration: 13, Func. Count: 181, Neg. LLF: 120.31271164340964
Iteration: 14, Func. Count: 194, Neg. LLF: 120.29310462524973
Iteration: 15, Func. Count: 207, Neg. LLF: 120.28936391411213
Iteration: 16, Func. Count: 220, Neg. LLF: 120.28892399357122
Iteration: 17, Func. Count: 233, Neg. LLF: 120.28887313872403
Iteration: 18, Func. Count: 246, Neg. LLF: 120.28887161706184
Iteration: 19, Func. Count: 258, Neg. LLF: 120.28887161705605
Optimization terminated successfully (Exit mode 0)
Current function value: 120.28887161706184
Iterations: 19
Function evaluations: 258
Gradient evaluations: 19
Iteration: 1, Func. Count: 15, Neg. LLF: 126.66214679538807
Iteration: 2, Func. Count: 31, Neg. LLF: 127.0059483239994
Iteration: 3, Func. Count: 46, Neg. LLF: 129.56640772256176
Iteration: 4, Func. Count: 61, Neg. LLF: 141.9459314647824
Iteration: 5, Func. Count: 76, Neg. LLF: 120.7626884983751
Iteration: 6, Func. Count: 90, Neg. LLF: 120.95863652299022
Iteration: 7, Func. Count: 105, Neg. LLF: 120.43589812523277
Iteration: 8, Func. Count: 119, Neg. LLF: 122.9990240577699
Iteration: 9, Func. Count: 135, Neg. LLF: 120.42798374302032
Iteration: 10, Func. Count: 150, Neg. LLF: 120.3328215530524
Iteration: 11, Func. Count: 164, Neg. LLF: 120.38456328063583
Iteration: 12, Func. Count: 179, Neg. LLF: 120.33563719822367
Iteration: 13, Func. Count: 194, Neg. LLF: 120.29687894359056
Iteration: 14, Func. Count: 208, Neg. LLF: 120.28994945313251
Iteration: 15, Func. Count: 222, Neg. LLF: 120.28986383866082
Iteration: 16, Func. Count: 237, Neg. LLF: 120.28965612037219
Iteration: 17, Func. Count: 252, Neg. LLF: 120.28887989776725
Iteration: 18, Func. Count: 266, Neg. LLF: 120.28887158873644
Iteration: 19, Func. Count: 279, Neg. LLF: 120.28887165717812
Optimization terminated successfully (Exit mode 0)
Current function value: 120.28887158873644
Iterations: 19
Function evaluations: 279
Gradient evaluations: 19
Iteration: 1, Func. Count: 8, Neg. LLF: 134.28303587601948
Iteration: 2, Func. Count: 16, Neg. LLF: 182.82463750666426
Iteration: 3, Func. Count: 24, Neg. LLF: 124.44972346389285
Iteration: 4, Func. Count: 31, Neg. LLF: 125.98967320128155
Iteration: 5, Func. Count: 40, Neg. LLF: 130.01253612521626
Iteration: 6, Func. Count: 49, Neg. LLF: 124.09665621379688
Iteration: 7, Func. Count: 56, Neg. LLF: 124.09269510347251
Iteration: 8, Func. Count: 63, Neg. LLF: 124.09095010225552
Iteration: 9, Func. Count: 70, Neg. LLF: 124.09084031622518
Iteration: 10, Func. Count: 77, Neg. LLF: 124.09083467764664
Iteration: 11, Func. Count: 83, Neg. LLF: 124.09083479669557
Optimization terminated successfully (Exit mode 0)
Current function value: 124.09083467764664
Iterations: 11
Function evaluations: 83
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 160.33072812247056
Iteration: 2, Func. Count: 19, Neg. LLF: 126.39380843409775
Iteration: 3, Func. Count: 27, Neg. LLF: 145.5099277601057
Iteration: 4, Func. Count: 37, Neg. LLF: 125.97388503666534
Iteration: 5, Func. Count: 45, Neg. LLF: 125.96161235766046
Iteration: 6, Func. Count: 53, Neg. LLF: 125.96086803000547
Iteration: 7, Func. Count: 61, Neg. LLF: 125.96084813136034
Iteration: 8, Func. Count: 69, Neg. LLF: 125.96084634704198
Iteration: 9, Func. Count: 76, Neg. LLF: 125.96084653485613
Optimization terminated successfully (Exit mode 0)
Current function value: 125.96084634704198
Iterations: 9
Function evaluations: 76
Gradient evaluations: 9
Iteration: 1, Func. Count: 10, Neg. LLF: 155.75140105987154
Iteration: 2, Func. Count: 21, Neg. LLF: 126.23358673331686
Iteration: 3, Func. Count: 30, Neg. LLF: 128.20363220877672
Iteration: 4, Func. Count: 40, Neg. LLF: 126.02738922734422
Iteration: 5, Func. Count: 49, Neg. LLF: 125.98407784833583
Iteration: 6, Func. Count: 58, Neg. LLF: 125.98388121930465
Iteration: 7, Func. Count: 67, Neg. LLF: 125.93491690949546
Iteration: 8, Func. Count: 76, Neg. LLF: 125.9214583954362
Iteration: 9, Func. Count: 85, Neg. LLF: 125.87104880673836
Iteration: 10, Func. Count: 94, Neg. LLF: 125.82682744009686
Iteration: 11, Func. Count: 103, Neg. LLF: 125.84511548623607
Iteration: 12, Func. Count: 118, Neg. LLF: 380714.29744220973
Iteration: 13, Func. Count: 129, Neg. LLF: 127.4701050370796
Iteration: 14, Func. Count: 139, Neg. LLF: 125.83507452805658
Iteration: 15, Func. Count: 149, Neg. LLF: 125.76809248642141
Iteration: 16, Func. Count: 158, Neg. LLF: 125.76808192716628
Iteration: 17, Func. Count: 166, Neg. LLF: 125.76808181911355
Optimization terminated successfully (Exit mode 0)
Current function value: 125.76808192716628
Iterations: 18
Function evaluations: 166
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 153.9341994655498
Iteration: 2, Func. Count: 23, Neg. LLF: 126.21429368579294
Iteration: 3, Func. Count: 33, Neg. LLF: 126.0786532113409
Iteration: 4, Func. Count: 43, Neg. LLF: 126.08685096293928
Iteration: 5, Func. Count: 54, Neg. LLF: 126.00847539023596
Iteration: 6, Func. Count: 64, Neg. LLF: 126.00517405505109
Iteration: 7, Func. Count: 74, Neg. LLF: 125.99608929257292
Iteration: 8, Func. Count: 84, Neg. LLF: 125.99190771522879
Iteration: 9, Func. Count: 94, Neg. LLF: 125.97944377724966
Iteration: 10, Func. Count: 104, Neg. LLF: 125.93360521761224
Iteration: 11, Func. Count: 114, Neg. LLF: 290.68926492930075
Iteration: 12, Func. Count: 126, Neg. LLF: 128.16196486783494
Iteration: 13, Func. Count: 138, Neg. LLF: 126.74772629914573
Iteration: 14, Func. Count: 149, Neg. LLF: 125.76810747548217
Iteration: 15, Func. Count: 159, Neg. LLF: 125.76808182150835
Iteration: 16, Func. Count: 168, Neg. LLF: 125.76808182099931
Optimization terminated successfully (Exit mode 0)
Current function value: 125.76808182150835
Iterations: 17
Function evaluations: 168
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 154.25595443151028
Iteration: 2, Func. Count: 25, Neg. LLF: 127.18261985459598
Iteration: 3, Func. Count: 37, Neg. LLF: 126.05397733426346
Iteration: 4, Func. Count: 48, Neg. LLF: 126.0043097279691
Iteration: 5, Func. Count: 59, Neg. LLF: 125.89309850202359
Iteration: 6, Func. Count: 70, Neg. LLF: 125.85414945339058
Iteration: 7, Func. Count: 81, Neg. LLF: 125.62616014761845
Iteration: 8, Func. Count: 92, Neg. LLF: 125.27289377112442
Iteration: 9, Func. Count: 103, Neg. LLF: 125.23271297150127
Iteration: 10, Func. Count: 114, Neg. LLF: 125.20268104484859
Iteration: 11, Func. Count: 125, Neg. LLF: 125.18658670090497
Iteration: 12, Func. Count: 138, Neg. LLF: 125.47322435283672
Iteration: 13, Func. Count: 151, Neg. LLF: 125.2208998109686
Iteration: 14, Func. Count: 163, Neg. LLF: 125.20238507487818
Iteration: 15, Func. Count: 174, Neg. LLF: 125.20260133113445
Iteration: 16, Func. Count: 186, Neg. LLF: 125.20232867733542
Iteration: 17, Func. Count: 196, Neg. LLF: 125.20232862444772
Optimization terminated successfully (Exit mode 0)
Current function value: 125.20232867733542
Iterations: 18
Function evaluations: 196
Gradient evaluations: 17
Iteration: 1, Func. Count: 9, Neg. LLF: 134.7666238144562
Iteration: 2, Func. Count: 18, Neg. LLF: 187.07205564448688
Iteration: 3, Func. Count: 27, Neg. LLF: 122.90306242129455
Iteration: 4, Func. Count: 35, Neg. LLF: 164.8547979939901
Iteration: 5, Func. Count: 44, Neg. LLF: 141.3223986701238
Iteration: 6, Func. Count: 55, Neg. LLF: 121.05782249431542
Iteration: 7, Func. Count: 63, Neg. LLF: 120.67406728910694
Iteration: 8, Func. Count: 71, Neg. LLF: 120.53608062755828
Iteration: 9, Func. Count: 79, Neg. LLF: 120.50584547522985
Iteration: 10, Func. Count: 88, Neg. LLF: 120.41646210520314
Iteration: 11, Func. Count: 97, Neg. LLF: 120.40123857056523
Iteration: 12, Func. Count: 105, Neg. LLF: 120.39969008720573
Iteration: 13, Func. Count: 113, Neg. LLF: 120.39855917889398
Iteration: 14, Func. Count: 121, Neg. LLF: 120.39841875910639
Iteration: 15, Func. Count: 129, Neg. LLF: 120.39840662555216
Iteration: 16, Func. Count: 136, Neg. LLF: 120.398406686128
Optimization terminated successfully (Exit mode 0)
Current function value: 120.39840662555216
Iterations: 16
Function evaluations: 136
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 124.22094106915004
Iteration: 2, Func. Count: 19, Neg. LLF: 130.18292920725415
Iteration: 3, Func. Count: 29, Neg. LLF: 121.5294987187319
Iteration: 4, Func. Count: 38, Neg. LLF: 121.56110411263639
Iteration: 5, Func. Count: 48, Neg. LLF: 131.2908450974824
Iteration: 6, Func. Count: 58, Neg. LLF: 121.33726295372034
Iteration: 7, Func. Count: 68, Neg. LLF: 121.25649533294025
Iteration: 8, Func. Count: 78, Neg. LLF: 120.47603690375375
Iteration: 9, Func. Count: 88, Neg. LLF: 120.39922365818401
Iteration: 10, Func. Count: 97, Neg. LLF: 120.3986813203413
Iteration: 11, Func. Count: 106, Neg. LLF: 120.39840768488752
Iteration: 12, Func. Count: 115, Neg. LLF: 120.39840647922195
Iteration: 13, Func. Count: 123, Neg. LLF: 120.39840649903616
Optimization terminated successfully (Exit mode 0)
Current function value: 120.39840647922195
Iterations: 13
Function evaluations: 123
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 125.31247586173527
Iteration: 2, Func. Count: 23, Neg. LLF: 127.06397386941497
Iteration: 3, Func. Count: 34, Neg. LLF: 124.13554909278822
Iteration: 4, Func. Count: 45, Neg. LLF: 121.40727311564933
Iteration: 5, Func. Count: 55, Neg. LLF: 121.03919787526554
Iteration: 6, Func. Count: 65, Neg. LLF: 120.946311081799
Iteration: 7, Func. Count: 75, Neg. LLF: 121.10027110648444
Iteration: 8, Func. Count: 86, Neg. LLF: 303.48031881350175
Iteration: 9, Func. Count: 97, Neg. LLF: 120.87256312351109
Iteration: 10, Func. Count: 108, Neg. LLF: 120.43401917218229
Iteration: 11, Func. Count: 118, Neg. LLF: 120.40614268798728
Iteration: 12, Func. Count: 128, Neg. LLF: 120.4089975620594
Iteration: 13, Func. Count: 139, Neg. LLF: 120.39851569647547
Iteration: 14, Func. Count: 149, Neg. LLF: 120.39841136193719
Iteration: 15, Func. Count: 159, Neg. LLF: 120.39840650315357
Iteration: 16, Func. Count: 168, Neg. LLF: 120.39840651496812
Optimization terminated successfully (Exit mode 0)
Current function value: 120.39840650315357
Iterations: 16
Function evaluations: 168
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 126.20129627320638
Iteration: 2, Func. Count: 25, Neg. LLF: 126.91272780934236
Iteration: 3, Func. Count: 37, Neg. LLF: 124.53419657306237
Iteration: 4, Func. Count: 49, Neg. LLF: 121.9862401324201
Iteration: 5, Func. Count: 61, Neg. LLF: 121.1032262817664
Iteration: 6, Func. Count: 72, Neg. LLF: 121.20071321297661
Iteration: 7, Func. Count: 84, Neg. LLF: 120.77776597391632
Iteration: 8, Func. Count: 96, Neg. LLF: 123.74245151659206
Iteration: 9, Func. Count: 108, Neg. LLF: 120.56747800862443
Iteration: 10, Func. Count: 119, Neg. LLF: 120.43743521283635
Iteration: 11, Func. Count: 130, Neg. LLF: 120.40116062541624
Iteration: 12, Func. Count: 141, Neg. LLF: 120.38623681209614
Iteration: 13, Func. Count: 152, Neg. LLF: 120.38353932043253
Iteration: 14, Func. Count: 163, Neg. LLF: 120.38317588699842
Iteration: 15, Func. Count: 174, Neg. LLF: 120.38310634095329
Iteration: 16, Func. Count: 185, Neg. LLF: 120.38310459574205
Iteration: 17, Func. Count: 195, Neg. LLF: 120.38310459575327
Optimization terminated successfully (Exit mode 0)
Current function value: 120.38310459574205
Iterations: 17
Function evaluations: 195
Gradient evaluations: 17
Iteration: 1, Func. Count: 13, Neg. LLF: 127.02915046603474
Iteration: 2, Func. Count: 27, Neg. LLF: 126.50325613263547
Iteration: 3, Func. Count: 40, Neg. LLF: 123.74541006546346
Iteration: 4, Func. Count: 53, Neg. LLF: 125.06235313483049
Iteration: 5, Func. Count: 66, Neg. LLF: 121.2994287856377
Iteration: 6, Func. Count: 78, Neg. LLF: 120.58259598985885
Iteration: 7, Func. Count: 90, Neg. LLF: 122.14494318655971
Iteration: 8, Func. Count: 104, Neg. LLF: 120.6185888259477
Iteration: 9, Func. Count: 117, Neg. LLF: 120.43665264730997
Iteration: 10, Func. Count: 129, Neg. LLF: 120.3940598366753
Iteration: 11, Func. Count: 141, Neg. LLF: 120.38461968515155
Iteration: 12, Func. Count: 153, Neg. LLF: 120.38343954911807
Iteration: 13, Func. Count: 165, Neg. LLF: 120.38316555270097
Iteration: 14, Func. Count: 177, Neg. LLF: 120.38310805270812
Iteration: 15, Func. Count: 189, Neg. LLF: 120.38310482207162
Iteration: 16, Func. Count: 200, Neg. LLF: 120.38310489076015
Optimization terminated successfully (Exit mode 0)
Current function value: 120.38310482207162
Iterations: 16
Function evaluations: 200
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 134.05064500155422
Iteration: 2, Func. Count: 20, Neg. LLF: 185.8395732715546
Iteration: 3, Func. Count: 30, Neg. LLF: 122.95450840206036
Iteration: 4, Func. Count: 39, Neg. LLF: 192.2375458247617
Iteration: 5, Func. Count: 49, Neg. LLF: 143.5196662672122
Iteration: 6, Func. Count: 61, Neg. LLF: 122.97235544098889
Iteration: 7, Func. Count: 72, Neg. LLF: 120.89658148904235
Iteration: 8, Func. Count: 81, Neg. LLF: 120.52260109937603
Iteration: 9, Func. Count: 90, Neg. LLF: 120.39354452310113
Iteration: 10, Func. Count: 99, Neg. LLF: 120.34977394376784
Iteration: 11, Func. Count: 108, Neg. LLF: 120.34191660587416
Iteration: 12, Func. Count: 117, Neg. LLF: 120.33860733864756
Iteration: 13, Func. Count: 126, Neg. LLF: 120.33729006031713
Iteration: 14, Func. Count: 135, Neg. LLF: 120.33483228275
Iteration: 15, Func. Count: 144, Neg. LLF: 120.33471458879883
Iteration: 16, Func. Count: 153, Neg. LLF: 120.3347127450041
Iteration: 17, Func. Count: 161, Neg. LLF: 120.3347127450126
Optimization terminated successfully (Exit mode 0)
Current function value: 120.3347127450041
Iterations: 17
Function evaluations: 161
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 124.06288202313698
Iteration: 2, Func. Count: 21, Neg. LLF: 129.24128812038938
Iteration: 3, Func. Count: 32, Neg. LLF: 121.58278745212682
Iteration: 4, Func. Count: 42, Neg. LLF: 121.11687939620036
Iteration: 5, Func. Count: 52, Neg. LLF: 125.18829178128
Iteration: 6, Func. Count: 63, Neg. LLF: 120.97841228423641
Iteration: 7, Func. Count: 74, Neg. LLF: 120.4498463079702
Iteration: 8, Func. Count: 84, Neg. LLF: 120.81648975886772
Iteration: 9, Func. Count: 95, Neg. LLF: 120.3602143957429
Iteration: 10, Func. Count: 105, Neg. LLF: 120.33660858423565
Iteration: 11, Func. Count: 115, Neg. LLF: 120.33496366437288
Iteration: 12, Func. Count: 125, Neg. LLF: 120.33472447653479
Iteration: 13, Func. Count: 135, Neg. LLF: 120.334712915229
Iteration: 14, Func. Count: 144, Neg. LLF: 120.33471292439145
Optimization terminated successfully (Exit mode 0)
Current function value: 120.334712915229
Iterations: 14
Function evaluations: 144
Gradient evaluations: 14
Iteration: 1, Func. Count: 12, Neg. LLF: 125.06098695294502
Iteration: 2, Func. Count: 23, Neg. LLF: 131.69580406524372
Iteration: 3, Func. Count: 35, Neg. LLF: 121.97074562595162
Iteration: 4, Func. Count: 46, Neg. LLF: 121.7380125367513
Iteration: 5, Func. Count: 58, Neg. LLF: 147.8832945230948
Iteration: 6, Func. Count: 70, Neg. LLF: 121.98080585074904
Iteration: 7, Func. Count: 82, Neg. LLF: 131.42158354612258
Iteration: 8, Func. Count: 94, Neg. LLF: 120.85056138900295
Iteration: 9, Func. Count: 106, Neg. LLF: 120.40364172381354
Iteration: 10, Func. Count: 118, Neg. LLF: 120.33513847538939
Iteration: 11, Func. Count: 129, Neg. LLF: 120.33517450576029
Iteration: 12, Func. Count: 141, Neg. LLF: 120.33471378599417
Iteration: 13, Func. Count: 152, Neg. LLF: 120.33471278125755
Iteration: 14, Func. Count: 162, Neg. LLF: 120.33471279112113
Optimization terminated successfully (Exit mode 0)
Current function value: 120.33471278125755
Iterations: 14
Function evaluations: 162
Gradient evaluations: 14
Iteration: 1, Func. Count: 13, Neg. LLF: 126.0251399464967
Iteration: 2, Func. Count: 27, Neg. LLF: 127.76955692439809
Iteration: 3, Func. Count: 40, Neg. LLF: 122.1963972099082
Iteration: 4, Func. Count: 52, Neg. LLF: 122.80152053925667
Iteration: 5, Func. Count: 65, Neg. LLF: 125.51549671417233
Iteration: 6, Func. Count: 78, Neg. LLF: 121.71297871509634
Iteration: 7, Func. Count: 91, Neg. LLF: 120.54316287067854
Iteration: 8, Func. Count: 103, Neg. LLF: 120.58827784731153
Iteration: 9, Func. Count: 116, Neg. LLF: 120.36249901456794
Iteration: 10, Func. Count: 128, Neg. LLF: 120.32131094875346
Iteration: 11, Func. Count: 140, Neg. LLF: 120.35439155323077
Iteration: 12, Func. Count: 153, Neg. LLF: 120.29242296638185
Iteration: 13, Func. Count: 165, Neg. LLF: 120.29016119784156
Iteration: 14, Func. Count: 177, Neg. LLF: 120.2900340872681
Iteration: 15, Func. Count: 189, Neg. LLF: 120.29003304610208
Iteration: 16, Func. Count: 200, Neg. LLF: 120.290033046108
Optimization terminated successfully (Exit mode 0)
Current function value: 120.29003304610208
Iterations: 16
Function evaluations: 200
Gradient evaluations: 16
Iteration: 1, Func. Count: 14, Neg. LLF: 126.67978565783174
Iteration: 2, Func. Count: 29, Neg. LLF: 127.42861544892268
Iteration: 3, Func. Count: 43, Neg. LLF: 130.0467716508062
Iteration: 4, Func. Count: 57, Neg. LLF: 142.4577461685057
Iteration: 5, Func. Count: 71, Neg. LLF: 120.72704975613743
Iteration: 6, Func. Count: 84, Neg. LLF: 120.97414888788857
Iteration: 7, Func. Count: 98, Neg. LLF: 120.42984950116819
Iteration: 8, Func. Count: 111, Neg. LLF: 121.6304655078073
Iteration: 9, Func. Count: 125, Neg. LLF: 120.44112854985171
Iteration: 10, Func. Count: 139, Neg. LLF: 120.31899983469707
Iteration: 11, Func. Count: 152, Neg. LLF: 120.30312475010646
Iteration: 12, Func. Count: 165, Neg. LLF: 120.29136615098457
Iteration: 13, Func. Count: 178, Neg. LLF: 120.29015598016424
Iteration: 14, Func. Count: 191, Neg. LLF: 120.2900454658543
Iteration: 15, Func. Count: 204, Neg. LLF: 120.29003303014373
Iteration: 16, Func. Count: 216, Neg. LLF: 120.29003309876381
Optimization terminated successfully (Exit mode 0)
Current function value: 120.29003303014373
Iterations: 16
Function evaluations: 216
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 136.8945135195169
Iteration: 2, Func. Count: 22, Neg. LLF: 169.52658506312957
Iteration: 3, Func. Count: 33, Neg. LLF: 122.41459583008448
Iteration: 4, Func. Count: 43, Neg. LLF: 128.66867000933127
Iteration: 5, Func. Count: 55, Neg. LLF: 164.79808757766668
Iteration: 6, Func. Count: 68, Neg. LLF: 122.51905473672208
Iteration: 7, Func. Count: 79, Neg. LLF: 120.57427373446643
Iteration: 8, Func. Count: 89, Neg. LLF: 120.38867812982922
Iteration: 9, Func. Count: 99, Neg. LLF: 120.38486915376366
Iteration: 10, Func. Count: 110, Neg. LLF: 120.33248150369661
Iteration: 11, Func. Count: 120, Neg. LLF: 120.33089144285728
Iteration: 12, Func. Count: 130, Neg. LLF: 120.33000085933432
Iteration: 13, Func. Count: 140, Neg. LLF: 120.32860804021925
Iteration: 14, Func. Count: 150, Neg. LLF: 120.32856128611107
Iteration: 15, Func. Count: 160, Neg. LLF: 120.32856013802025
Iteration: 16, Func. Count: 169, Neg. LLF: 120.32856013804016
Optimization terminated successfully (Exit mode 0)
Current function value: 120.32856013802025
Iterations: 16
Function evaluations: 169
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 124.03198983663148
Iteration: 2, Func. Count: 23, Neg. LLF: 129.4058819541619
Iteration: 3, Func. Count: 35, Neg. LLF: 121.60873071903205
Iteration: 4, Func. Count: 46, Neg. LLF: 121.10778489131032
Iteration: 5, Func. Count: 57, Neg. LLF: 124.08708611734542
Iteration: 6, Func. Count: 70, Neg. LLF: 120.47993962114091
Iteration: 7, Func. Count: 81, Neg. LLF: 120.55929166979303
Iteration: 8, Func. Count: 93, Neg. LLF: 121.08772728489579
Iteration: 9, Func. Count: 105, Neg. LLF: 120.34345377094317
Iteration: 10, Func. Count: 116, Neg. LLF: 120.33160353452253
Iteration: 11, Func. Count: 127, Neg. LLF: 120.32939650334157
Iteration: 12, Func. Count: 138, Neg. LLF: 120.32857140508055
Iteration: 13, Func. Count: 149, Neg. LLF: 120.32856023481443
Iteration: 14, Func. Count: 159, Neg. LLF: 120.32856024331335
Optimization terminated successfully (Exit mode 0)
Current function value: 120.32856023481443
Iterations: 14
Function evaluations: 159
Gradient evaluations: 14
Iteration: 1, Func. Count: 13, Neg. LLF: 125.0881824878541
Iteration: 2, Func. Count: 26, Neg. LLF: 131.51835828329354
Iteration: 3, Func. Count: 39, Neg. LLF: 123.28639155794217
Iteration: 4, Func. Count: 51, Neg. LLF: 121.63268897345593
Iteration: 5, Func. Count: 63, Neg. LLF: 154.56345749091233
Iteration: 6, Func. Count: 78, Neg. LLF: 120.93599528920845
Iteration: 7, Func. Count: 90, Neg. LLF: 5201018.935221999
Iteration: 8, Func. Count: 103, Neg. LLF: 120.99141411355993
Iteration: 9, Func. Count: 116, Neg. LLF: 120.37862364433076
Iteration: 10, Func. Count: 128, Neg. LLF: 120.34558898144361
Iteration: 11, Func. Count: 140, Neg. LLF: 120.33206089772838
Iteration: 12, Func. Count: 152, Neg. LLF: 120.32882196611283
Iteration: 13, Func. Count: 164, Neg. LLF: 120.32856217203286
Iteration: 14, Func. Count: 176, Neg. LLF: 120.32856014490594
Iteration: 15, Func. Count: 187, Neg. LLF: 120.32856015033506
Optimization terminated successfully (Exit mode 0)
Current function value: 120.32856014490594
Iterations: 15
Function evaluations: 187
Gradient evaluations: 15
Iteration: 1, Func. Count: 14, Neg. LLF: 125.97613962955685
Iteration: 2, Func. Count: 29, Neg. LLF: 127.52620634476966
Iteration: 3, Func. Count: 43, Neg. LLF: 122.03182044777179
Iteration: 4, Func. Count: 56, Neg. LLF: 126.7725438726288
Iteration: 5, Func. Count: 72, Neg. LLF: 185.78862070763316
Iteration: 6, Func. Count: 86, Neg. LLF: 121.73594396613477
Iteration: 7, Func. Count: 100, Neg. LLF: 120.65021818672616
Iteration: 8, Func. Count: 113, Neg. LLF: 120.49750503813497
Iteration: 9, Func. Count: 126, Neg. LLF: 121.10093890187365
Iteration: 10, Func. Count: 141, Neg. LLF: 121.20417229398856
Iteration: 11, Func. Count: 155, Neg. LLF: 120.40773609997589
Iteration: 12, Func. Count: 168, Neg. LLF: 120.3478473258188
Iteration: 13, Func. Count: 181, Neg. LLF: 120.31263346411663
Iteration: 14, Func. Count: 194, Neg. LLF: 120.29213343224477
Iteration: 15, Func. Count: 207, Neg. LLF: 120.28954735051587
Iteration: 16, Func. Count: 220, Neg. LLF: 120.28889420141388
Iteration: 17, Func. Count: 233, Neg. LLF: 120.2888734304055
Iteration: 18, Func. Count: 246, Neg. LLF: 120.28887160931235
Iteration: 19, Func. Count: 258, Neg. LLF: 120.28887160930468
Optimization terminated successfully (Exit mode 0)
Current function value: 120.28887160931235
Iterations: 19
Function evaluations: 258
Gradient evaluations: 19
Iteration: 1, Func. Count: 15, Neg. LLF: 126.73800451235608
Iteration: 2, Func. Count: 31, Neg. LLF: 127.07512638442164
Iteration: 3, Func. Count: 46, Neg. LLF: 130.44495270297384
Iteration: 4, Func. Count: 61, Neg. LLF: 141.7470442677284
Iteration: 5, Func. Count: 76, Neg. LLF: 120.75539406044194
Iteration: 6, Func. Count: 90, Neg. LLF: 120.96908537663359
Iteration: 7, Func. Count: 105, Neg. LLF: 120.43786221025611
Iteration: 8, Func. Count: 119, Neg. LLF: 122.79711188730698
Iteration: 9, Func. Count: 135, Neg. LLF: 120.43965080019166
Iteration: 10, Func. Count: 150, Neg. LLF: 120.33088028877509
Iteration: 11, Func. Count: 164, Neg. LLF: 120.39533274633527
Iteration: 12, Func. Count: 179, Neg. LLF: 120.32417399946561
Iteration: 13, Func. Count: 194, Neg. LLF: 120.30519219310034
Iteration: 14, Func. Count: 208, Neg. LLF: 120.30783606399733
Iteration: 15, Func. Count: 223, Neg. LLF: 120.28892823868634
Iteration: 16, Func. Count: 237, Neg. LLF: 120.28888258354613
Iteration: 17, Func. Count: 251, Neg. LLF: 120.28887191344751
Iteration: 18, Func. Count: 264, Neg. LLF: 120.28887198188745
Optimization terminated successfully (Exit mode 0)
Current function value: 120.28887191344751
Iterations: 18
Function evaluations: 264
Gradient evaluations: 18
Iteration: 1, Func. Count: 12, Neg. LLF: 136.69745747105725
Iteration: 2, Func. Count: 24, Neg. LLF: 168.98664179985929
Iteration: 3, Func. Count: 36, Neg. LLF: 122.3989723620982
Iteration: 4, Func. Count: 47, Neg. LLF: 128.8029726808143
Iteration: 5, Func. Count: 60, Neg. LLF: 165.29682710535303
Iteration: 6, Func. Count: 74, Neg. LLF: 122.52261569188698
Iteration: 7, Func. Count: 86, Neg. LLF: 120.56434277443329
Iteration: 8, Func. Count: 97, Neg. LLF: 120.38728917241684
Iteration: 9, Func. Count: 108, Neg. LLF: 120.38547288247328
Iteration: 10, Func. Count: 120, Neg. LLF: 120.33255409426499
Iteration: 11, Func. Count: 131, Neg. LLF: 120.33089062871154
Iteration: 12, Func. Count: 142, Neg. LLF: 120.33000262185217
Iteration: 13, Func. Count: 153, Neg. LLF: 120.3286110579075
Iteration: 14, Func. Count: 164, Neg. LLF: 120.32856148812236
Iteration: 15, Func. Count: 175, Neg. LLF: 120.32856014003809
Iteration: 16, Func. Count: 185, Neg. LLF: 120.32856028247717
Optimization terminated successfully (Exit mode 0)
Current function value: 120.32856014003809
Iterations: 16
Function evaluations: 185
Gradient evaluations: 16
Iteration: 1, Func. Count: 13, Neg. LLF: 124.37640378332766
Iteration: 2, Func. Count: 25, Neg. LLF: 127.89616275139042
Iteration: 3, Func. Count: 40, Neg. LLF: 160.26464748868722
Iteration: 4, Func. Count: 54, Neg. LLF: 121.1209172946732
Iteration: 5, Func. Count: 66, Neg. LLF: 121.89162087894078
Iteration: 6, Func. Count: 79, Neg. LLF: 120.51026146729386
Iteration: 7, Func. Count: 91, Neg. LLF: 120.43012062960695
Iteration: 8, Func. Count: 103, Neg. LLF: 120.41922198098628
Iteration: 9, Func. Count: 116, Neg. LLF: 120.33688668238185
Iteration: 10, Func. Count: 128, Neg. LLF: 120.33093872043595
Iteration: 11, Func. Count: 140, Neg. LLF: 120.3288045476254
Iteration: 12, Func. Count: 152, Neg. LLF: 120.32862050196636
Iteration: 13, Func. Count: 164, Neg. LLF: 120.32857587777083
Iteration: 14, Func. Count: 176, Neg. LLF: 120.32856012505391
Iteration: 15, Func. Count: 187, Neg. LLF: 120.3285601335441
Optimization terminated successfully (Exit mode 0)
Current function value: 120.32856012505391
Iterations: 15
Function evaluations: 187
Gradient evaluations: 15
Iteration: 1, Func. Count: 14, Neg. LLF: 124.01614044925567
Iteration: 2, Func. Count: 27, Neg. LLF: 128.4959631369917
Iteration: 3, Func. Count: 43, Neg. LLF: 130.2833604966713
Iteration: 4, Func. Count: 58, Neg. LLF: 122.14189732382759
Iteration: 5, Func. Count: 71, Neg. LLF: 128.59277493008423
Iteration: 6, Func. Count: 85, Neg. LLF: 465.07891433134324
Iteration: 7, Func. Count: 99, Neg. LLF: 184.89071577366516
Iteration: 8, Func. Count: 113, Neg. LLF: 294.67112689962823
Iteration: 9, Func. Count: 127, Neg. LLF: 121.0892325050444
Iteration: 10, Func. Count: 140, Neg. LLF: 120.87762154697958
Iteration: 11, Func. Count: 153, Neg. LLF: 120.51618249596629
Iteration: 12, Func. Count: 166, Neg. LLF: 120.3799473379791
Iteration: 13, Func. Count: 179, Neg. LLF: 120.38116677216178
Iteration: 14, Func. Count: 193, Neg. LLF: 120.332896200309
Iteration: 15, Func. Count: 206, Neg. LLF: 120.32920691147935
Iteration: 16, Func. Count: 219, Neg. LLF: 120.32865429588337
Iteration: 17, Func. Count: 232, Neg. LLF: 120.32849026958797
Iteration: 18, Func. Count: 245, Neg. LLF: 120.34280563772255
Iteration: 19, Func. Count: 260, Neg. LLF: 120.32873274537168
Iteration: 20, Func. Count: 275, Neg. LLF: 120.32857676638729
Iteration: 21, Func. Count: 289, Neg. LLF: 120.32856012415536
Iteration: 22, Func. Count: 301, Neg. LLF: 120.32856012958025
Optimization terminated successfully (Exit mode 0)
Current function value: 120.32856012415536
Iterations: 23
Function evaluations: 301
Gradient evaluations: 22
Iteration: 1, Func. Count: 15, Neg. LLF: 125.96463031166736
Iteration: 2, Func. Count: 31, Neg. LLF: 127.65486146468214
Iteration: 3, Func. Count: 46, Neg. LLF: 122.06702287979455
Iteration: 4, Func. Count: 60, Neg. LLF: 126.24049304792085
Iteration: 5, Func. Count: 77, Neg. LLF: 183.99390890069898
Iteration: 6, Func. Count: 92, Neg. LLF: 122.01866302413889
Iteration: 7, Func. Count: 107, Neg. LLF: 120.86359896516649
Iteration: 8, Func. Count: 122, Neg. LLF: 120.49877585458917
Iteration: 9, Func. Count: 136, Neg. LLF: 124.77751636417489
Iteration: 10, Func. Count: 152, Neg. LLF: 121.0803062138912
Iteration: 11, Func. Count: 167, Neg. LLF: 120.38236238029654
Iteration: 12, Func. Count: 181, Neg. LLF: 120.3374561434762
Iteration: 13, Func. Count: 195, Neg. LLF: 120.30515853559895
Iteration: 14, Func. Count: 209, Neg. LLF: 120.2908154354978
Iteration: 15, Func. Count: 223, Neg. LLF: 120.28901112125317
Iteration: 16, Func. Count: 237, Neg. LLF: 120.28888152814015
Iteration: 17, Func. Count: 251, Neg. LLF: 120.28887480482739
Iteration: 18, Func. Count: 265, Neg. LLF: 120.28887159065677
Iteration: 19, Func. Count: 278, Neg. LLF: 120.2888715906443
Optimization terminated successfully (Exit mode 0)
Current function value: 120.28887159065677
Iterations: 19
Function evaluations: 278
Gradient evaluations: 19
Iteration: 1, Func. Count: 16, Neg. LLF: 126.7303152184889
Iteration: 2, Func. Count: 33, Neg. LLF: 127.16650808472046
Iteration: 3, Func. Count: 49, Neg. LLF: 129.23001454941243
Iteration: 4, Func. Count: 65, Neg. LLF: 141.97430769838076
Iteration: 5, Func. Count: 81, Neg. LLF: 120.75914382810504
Iteration: 6, Func. Count: 96, Neg. LLF: 121.04040087979774
Iteration: 7, Func. Count: 112, Neg. LLF: 120.44105534101669
Iteration: 8, Func. Count: 127, Neg. LLF: 122.18318836285674
Iteration: 9, Func. Count: 144, Neg. LLF: 120.5703334000086
Iteration: 10, Func. Count: 160, Neg. LLF: 120.34248125917365
Iteration: 11, Func. Count: 175, Neg. LLF: 120.93719293246521
Iteration: 12, Func. Count: 191, Neg. LLF: 120.43775674094579
Iteration: 13, Func. Count: 207, Neg. LLF: 120.3036213699109
Iteration: 14, Func. Count: 222, Neg. LLF: 120.2915343442941
Iteration: 15, Func. Count: 237, Neg. LLF: 120.28899850996469
Iteration: 16, Func. Count: 252, Neg. LLF: 120.28887790121051
Iteration: 17, Func. Count: 267, Neg. LLF: 120.28887177636179
Iteration: 18, Func. Count: 281, Neg. LLF: 120.28887184480682
Optimization terminated successfully (Exit mode 0)
Current function value: 120.28887177636179
Iterations: 18
Function evaluations: 281
Gradient evaluations: 18
Iteration: 1, Func. Count: 6, Neg. LLF: 133.24629482297092
Iteration: 2, Func. Count: 12, Neg. LLF: 133.2594803290772
Iteration: 3, Func. Count: 18, Neg. LLF: 121.14450178694622
Iteration: 4, Func. Count: 23, Neg. LLF: 120.84608521390743
Iteration: 5, Func. Count: 28, Neg. LLF: 120.81167784874013
Iteration: 6, Func. Count: 33, Neg. LLF: 120.81075997590251
Iteration: 7, Func. Count: 38, Neg. LLF: 120.81074832693541
Iteration: 8, Func. Count: 42, Neg. LLF: 120.81074837016062
Optimization terminated successfully (Exit mode 0)
Current function value: 120.81074832693541
Iterations: 8
Function evaluations: 42
Gradient evaluations: 8
Iteration: 1, Func. Count: 5, Neg. LLF: 128.22530553979522
Iteration: 2, Func. Count: 9, Neg. LLF: 136.36262298298215
Iteration: 3, Func. Count: 14, Neg. LLF: 127.40532198282268
Iteration: 4, Func. Count: 18, Neg. LLF: 127.25174254409085
Iteration: 5, Func. Count: 22, Neg. LLF: 127.21609383525156
Iteration: 6, Func. Count: 26, Neg. LLF: 127.21347423279761
Iteration: 7, Func. Count: 30, Neg. LLF: 127.21344536940148
Iteration: 8, Func. Count: 33, Neg. LLF: 127.21344546091268
Optimization terminated successfully (Exit mode 0)
Current function value: 127.21344536940148
Iterations: 8
Function evaluations: 33
Gradient evaluations: 8
Iteration: 1, Func. Count: 6, Neg. LLF: 155.59485474480232
Iteration: 2, Func. Count: 13, Neg. LLF: 126.833886570675
Iteration: 3, Func. Count: 18, Neg. LLF: 126.73835206563713
Iteration: 4, Func. Count: 23, Neg. LLF: 127.89992164379261
Iteration: 5, Func. Count: 29, Neg. LLF: 126.87480037068401
Iteration: 6, Func. Count: 36, Neg. LLF: 126.63632531479708
Iteration: 7, Func. Count: 41, Neg. LLF: 126.63616929752622
Iteration: 8, Func. Count: 45, Neg. LLF: 126.63616933832216
Optimization terminated successfully (Exit mode 0)
Current function value: 126.63616929752622
Iterations: 8
Function evaluations: 45
Gradient evaluations: 8
Iteration: 1, Func. Count: 7, Neg. LLF: 151.67053542557437
Iteration: 2, Func. Count: 15, Neg. LLF: 126.75588815523601
Iteration: 3, Func. Count: 21, Neg. LLF: 127.71379572254241
Iteration: 4, Func. Count: 28, Neg. LLF: 126.68900640247176
Iteration: 5, Func. Count: 34, Neg. LLF: 126.64081151689406
Iteration: 6, Func. Count: 40, Neg. LLF: 126.64073988613201
Iteration: 7, Func. Count: 46, Neg. LLF: 126.64070075114039
Iteration: 8, Func. Count: 52, Neg. LLF: 126.64061848772917
Iteration: 9, Func. Count: 58, Neg. LLF: 126.6405559333387
Iteration: 10, Func. Count: 64, Neg. LLF: 126.64052227544082
Iteration: 11, Func. Count: 70, Neg. LLF: 126.64051363666837
Iteration: 12, Func. Count: 76, Neg. LLF: 126.64050989264315
Iteration: 13, Func. Count: 82, Neg. LLF: 126.64050615619202
Iteration: 14, Func. Count: 88, Neg. LLF: 126.6404465572923
Iteration: 15, Func. Count: 94, Neg. LLF: 126.63617887495555
Iteration: 16, Func. Count: 100, Neg. LLF: 126.96211638988053
Iteration: 17, Func. Count: 109, Neg. LLF: 126.63622477826988
Iteration: 18, Func. Count: 115, Neg. LLF: 126.63616923375736
Optimization terminated successfully (Exit mode 0)
Current function value: 126.63616927382145
Iterations: 19
Function evaluations: 115
Gradient evaluations: 18
Iteration: 1, Func. Count: 8, Neg. LLF: 149.062210335498
Iteration: 2, Func. Count: 17, Neg. LLF: 126.7120907376017
Iteration: 3, Func. Count: 24, Neg. LLF: 127.05084849608406
Iteration: 4, Func. Count: 32, Neg. LLF: 126.7029999252715
Iteration: 5, Func. Count: 40, Neg. LLF: 126.64527701612535
Iteration: 6, Func. Count: 47, Neg. LLF: 126.64492596578312
Iteration: 7, Func. Count: 54, Neg. LLF: 126.64384661405342
Iteration: 8, Func. Count: 61, Neg. LLF: 126.64348751243155
Iteration: 9, Func. Count: 68, Neg. LLF: 126.64323251555558
Iteration: 10, Func. Count: 75, Neg. LLF: 126.64322665292914
Iteration: 11, Func. Count: 82, Neg. LLF: 126.64319153011883
Iteration: 12, Func. Count: 89, Neg. LLF: 126.64293086495059
Iteration: 13, Func. Count: 96, Neg. LLF: 126.65213743287345
Iteration: 14, Func. Count: 104, Neg. LLF: 126.64284655211911
Iteration: 15, Func. Count: 111, Neg. LLF: 126.64284562059645
Optimization terminated successfully (Exit mode 0)
Current function value: 126.64284562059645
Iterations: 15
Function evaluations: 111
Gradient evaluations: 15
Iteration: 1, Func. Count: 9, Neg. LLF: 148.11044753320004
Iteration: 2, Func. Count: 19, Neg. LLF: 126.69902260617468
Iteration: 3, Func. Count: 27, Neg. LLF: 126.78591143435702
Iteration: 4, Func. Count: 36, Neg. LLF: 126.68508548920616
Iteration: 5, Func. Count: 45, Neg. LLF: 126.64980844228751
Iteration: 6, Func. Count: 53, Neg. LLF: 126.64698676384144
Iteration: 7, Func. Count: 61, Neg. LLF: 126.64539979159659
Iteration: 8, Func. Count: 69, Neg. LLF: 126.64199879974942
Iteration: 9, Func. Count: 77, Neg. LLF: 126.64166416747047
Iteration: 10, Func. Count: 85, Neg. LLF: 126.6404659544514
Iteration: 11, Func. Count: 93, Neg. LLF: 126.64026463758694
Iteration: 12, Func. Count: 101, Neg. LLF: 126.64021869280339
Iteration: 13, Func. Count: 109, Neg. LLF: 126.64021745984752
Iteration: 14, Func. Count: 116, Neg. LLF: 126.64021744740401
Optimization terminated successfully (Exit mode 0)
Current function value: 126.64021745984752
Iterations: 14
Function evaluations: 116
Gradient evaluations: 14
Iteration: 1, Func. Count: 6, Neg. LLF: 132.5471355590449
Iteration: 2, Func. Count: 12, Neg. LLF: 130.81060099704496
Iteration: 3, Func. Count: 18, Neg. LLF: 127.30718953086964
Iteration: 4, Func. Count: 23, Neg. LLF: 127.26677125021115
Iteration: 5, Func. Count: 28, Neg. LLF: 127.21814750586732
Iteration: 6, Func. Count: 33, Neg. LLF: 127.21564360953018
Iteration: 7, Func. Count: 38, Neg. LLF: 127.21347126686227
Iteration: 8, Func. Count: 43, Neg. LLF: 127.21344575199458
Iteration: 9, Func. Count: 47, Neg. LLF: 127.21344581036097
Optimization terminated successfully (Exit mode 0)
Current function value: 127.21344575199458
Iterations: 9
Function evaluations: 47
Gradient evaluations: 9
Iteration: 1, Func. Count: 7, Neg. LLF: 155.20577029960413
Iteration: 2, Func. Count: 15, Neg. LLF: 126.8382724306058
Iteration: 3, Func. Count: 21, Neg. LLF: 126.8503012005962
Iteration: 4, Func. Count: 28, Neg. LLF: 128.66989294100262
Iteration: 5, Func. Count: 35, Neg. LLF: 126.63625226970704
Iteration: 6, Func. Count: 41, Neg. LLF: 126.6361703335356
Iteration: 7, Func. Count: 47, Neg. LLF: 126.63616929926116
Iteration: 8, Func. Count: 52, Neg. LLF: 126.63616933985418
Optimization terminated successfully (Exit mode 0)
Current function value: 126.63616929926116
Iterations: 8
Function evaluations: 52
Gradient evaluations: 8
Iteration: 1, Func. Count: 8, Neg. LLF: 151.26270368754194
Iteration: 2, Func. Count: 17, Neg. LLF: 126.75613094498647
Iteration: 3, Func. Count: 24, Neg. LLF: 128.71167370682676
Iteration: 4, Func. Count: 32, Neg. LLF: 126.67594749386674
Iteration: 5, Func. Count: 39, Neg. LLF: 126.64072243624574
Iteration: 6, Func. Count: 46, Neg. LLF: 126.64056546236671
Iteration: 7, Func. Count: 53, Neg. LLF: 126.64056216203738
Iteration: 8, Func. Count: 60, Neg. LLF: 126.64055485167313
Iteration: 9, Func. Count: 67, Neg. LLF: 126.640542543769
Iteration: 10, Func. Count: 74, Neg. LLF: 126.64052644813074
Iteration: 11, Func. Count: 81, Neg. LLF: 126.64051336963044
Iteration: 12, Func. Count: 88, Neg. LLF: 126.64050868303904
Iteration: 13, Func. Count: 95, Neg. LLF: 126.64050605843889
Iteration: 14, Func. Count: 102, Neg. LLF: 126.64043669515604
Iteration: 15, Func. Count: 109, Neg. LLF: 126.63627193238052
Iteration: 16, Func. Count: 116, Neg. LLF: 127.96595766791053
Iteration: 17, Func. Count: 125, Neg. LLF: 126.64370548761129
Iteration: 18, Func. Count: 134, Neg. LLF: 126.6712835659695
Iteration: 19, Func. Count: 142, Neg. LLF: 126.63616922188166
Optimization terminated successfully (Exit mode 0)
Current function value: 126.63616926194062
Iterations: 20
Function evaluations: 142
Gradient evaluations: 19
Iteration: 1, Func. Count: 9, Neg. LLF: 149.166566385081
Iteration: 2, Func. Count: 19, Neg. LLF: 126.71932448089649
Iteration: 3, Func. Count: 27, Neg. LLF: 127.33165491277673
Iteration: 4, Func. Count: 36, Neg. LLF: 126.670682064187
Iteration: 5, Func. Count: 44, Neg. LLF: 126.64578524151014
Iteration: 6, Func. Count: 52, Neg. LLF: 126.6454484461358
Iteration: 7, Func. Count: 60, Neg. LLF: 126.64502569432432
Iteration: 8, Func. Count: 68, Neg. LLF: 126.6440216418479
Iteration: 9, Func. Count: 76, Neg. LLF: 126.64348630948207
Iteration: 10, Func. Count: 84, Neg. LLF: 126.6431731593451
Iteration: 11, Func. Count: 92, Neg. LLF: 126.64316172415737
Iteration: 12, Func. Count: 100, Neg. LLF: 126.64307746171013
Iteration: 13, Func. Count: 108, Neg. LLF: 126.64436757278105
Iteration: 14, Func. Count: 117, Neg. LLF: 126.64308897806494
Iteration: 15, Func. Count: 126, Neg. LLF: 126.64289132706291
Iteration: 16, Func. Count: 134, Neg. LLF: 126.64284797265908
Iteration: 17, Func. Count: 142, Neg. LLF: 126.64284562319092
Iteration: 18, Func. Count: 149, Neg. LLF: 126.64284560694516
Optimization terminated successfully (Exit mode 0)
Current function value: 126.64284562319092
Iterations: 18
Function evaluations: 149
Gradient evaluations: 18
Iteration: 1, Func. Count: 10, Neg. LLF: 146.55677408570898
Iteration: 2, Func. Count: 21, Neg. LLF: 126.69716640522891
Iteration: 3, Func. Count: 30, Neg. LLF: 126.68338191377927
Iteration: 4, Func. Count: 40, Neg. LLF: 126.68900906211955
Iteration: 5, Func. Count: 50, Neg. LLF: 126.64857487264992
Iteration: 6, Func. Count: 59, Neg. LLF: 126.64663625528789
Iteration: 7, Func. Count: 68, Neg. LLF: 126.64047731164028
Iteration: 8, Func. Count: 77, Neg. LLF: 126.6403837431138
Iteration: 9, Func. Count: 86, Neg. LLF: 126.64022440823268
Iteration: 10, Func. Count: 95, Neg. LLF: 126.64021816326974
Iteration: 11, Func. Count: 104, Neg. LLF: 126.64021743562839
Optimization terminated successfully (Exit mode 0)
Current function value: 126.64021743562839
Iterations: 11
Function evaluations: 104
Gradient evaluations: 11
Iteration: 1, Func. Count: 7, Neg. LLF: 131.6746507898054
Iteration: 2, Func. Count: 14, Neg. LLF: 127.7054406895309
Iteration: 3, Func. Count: 20, Neg. LLF: 130.43144306713597
Iteration: 4, Func. Count: 27, Neg. LLF: 127.23855654387003
Iteration: 5, Func. Count: 33, Neg. LLF: 127.2136704183782
Iteration: 6, Func. Count: 39, Neg. LLF: 127.21345219969446
Iteration: 7, Func. Count: 45, Neg. LLF: 127.21344534431681
Iteration: 8, Func. Count: 50, Neg. LLF: 127.21344536992297
Optimization terminated successfully (Exit mode 0)
Current function value: 127.21344534431681
Iterations: 8
Function evaluations: 50
Gradient evaluations: 8
Iteration: 1, Func. Count: 8, Neg. LLF: 154.940024073781
Iteration: 2, Func. Count: 17, Neg. LLF: 126.84671007990009
Iteration: 3, Func. Count: 24, Neg. LLF: 126.84926297034976
Iteration: 4, Func. Count: 32, Neg. LLF: 128.84474106776366
Iteration: 5, Func. Count: 40, Neg. LLF: 126.63623241854867
Iteration: 6, Func. Count: 47, Neg. LLF: 126.63617017225336
Iteration: 7, Func. Count: 54, Neg. LLF: 126.63616929735291
Optimization terminated successfully (Exit mode 0)
Current function value: 126.63616929735291
Iterations: 7
Function evaluations: 54
Gradient evaluations: 7
Iteration: 1, Func. Count: 9, Neg. LLF: 151.3449493711752
Iteration: 2, Func. Count: 19, Neg. LLF: 126.76178090632226
Iteration: 3, Func. Count: 27, Neg. LLF: 128.7224512072204
Iteration: 4, Func. Count: 36, Neg. LLF: 126.68484439104799
Iteration: 5, Func. Count: 44, Neg. LLF: 126.64072014084823
Iteration: 6, Func. Count: 52, Neg. LLF: 126.64058252869597
Iteration: 7, Func. Count: 60, Neg. LLF: 126.64057799689873
Iteration: 8, Func. Count: 68, Neg. LLF: 126.64056436662553
Iteration: 9, Func. Count: 76, Neg. LLF: 126.64054663750626
Iteration: 10, Func. Count: 84, Neg. LLF: 126.64052516737752
Iteration: 11, Func. Count: 92, Neg. LLF: 126.64051250516013
Iteration: 12, Func. Count: 100, Neg. LLF: 126.64050883266658
Iteration: 13, Func. Count: 108, Neg. LLF: 126.64050601716687
Iteration: 14, Func. Count: 116, Neg. LLF: 126.64044004199972
Iteration: 15, Func. Count: 124, Neg. LLF: 126.6362086874069
Iteration: 16, Func. Count: 132, Neg. LLF: 127.95944274743476
Iteration: 17, Func. Count: 143, Neg. LLF: 126.67656212370585
Optimization terminated successfully (Exit mode 0)
Current function value: 126.63618293032862
Iterations: 18
Function evaluations: 145
Gradient evaluations: 17
Iteration: 1, Func. Count: 10, Neg. LLF: 148.46408324407022
Iteration: 2, Func. Count: 21, Neg. LLF: 126.71544598375459
Iteration: 3, Func. Count: 30, Neg. LLF: 127.15111200063359
Iteration: 4, Func. Count: 40, Neg. LLF: 126.70750266573825
Iteration: 5, Func. Count: 50, Neg. LLF: 126.64609856815099
Iteration: 6, Func. Count: 59, Neg. LLF: 126.64469279793572
Iteration: 7, Func. Count: 68, Neg. LLF: 126.64380245841592
Iteration: 8, Func. Count: 77, Neg. LLF: 126.64335878401737
Iteration: 9, Func. Count: 86, Neg. LLF: 126.64327434051053
Iteration: 10, Func. Count: 95, Neg. LLF: 126.64327079877678
Iteration: 11, Func. Count: 104, Neg. LLF: 126.64324288051078
Iteration: 12, Func. Count: 113, Neg. LLF: 126.64289556263729
Iteration: 13, Func. Count: 122, Neg. LLF: 126.64212966333146
Iteration: 14, Func. Count: 131, Neg. LLF: 126.63955579345424
Iteration: 15, Func. Count: 140, Neg. LLF: 131.30629537913174
Iteration: 16, Func. Count: 151, Neg. LLF: 21318521.8170384
Iteration: 17, Func. Count: 163, Neg. LLF: 140.9747193396096
Iteration: 18, Func. Count: 174, Neg. LLF: 126.58937442176087
Iteration: 19, Func. Count: 183, Neg. LLF: 126.55212538252071
Iteration: 20, Func. Count: 192, Neg. LLF: 129.755593572926
Iteration: 21, Func. Count: 203, Neg. LLF: 126.54698804142964
Iteration: 22, Func. Count: 212, Neg. LLF: 126.54644995599294
Iteration: 23, Func. Count: 221, Neg. LLF: 126.54623328498205
Iteration: 24, Func. Count: 230, Neg. LLF: 126.54623099309563
Iteration: 25, Func. Count: 238, Neg. LLF: 126.54623092246469
Optimization terminated successfully (Exit mode 0)
Current function value: 126.54623099309563
Iterations: 26
Function evaluations: 238
Gradient evaluations: 25
Iteration: 1, Func. Count: 11, Neg. LLF: 146.8989437232585
Iteration: 2, Func. Count: 23, Neg. LLF: 126.6976213336518
Iteration: 3, Func. Count: 33, Neg. LLF: 126.68545942039334
Iteration: 4, Func. Count: 44, Neg. LLF: 126.71742568629543
Iteration: 5, Func. Count: 55, Neg. LLF: 126.64711430387246
Iteration: 6, Func. Count: 65, Neg. LLF: 126.64511572885354
Iteration: 7, Func. Count: 75, Neg. LLF: 126.6402618246486
Iteration: 8, Func. Count: 85, Neg. LLF: 126.64022707614066
Iteration: 9, Func. Count: 95, Neg. LLF: 126.64022184473576
Iteration: 10, Func. Count: 105, Neg. LLF: 126.64021794506368
Iteration: 11, Func. Count: 114, Neg. LLF: 126.64021793281866
Optimization terminated successfully (Exit mode 0)
Current function value: 126.64021794506368
Iterations: 11
Function evaluations: 114
Gradient evaluations: 11
Iteration: 1, Func. Count: 8, Neg. LLF: 129.7508605841683
Iteration: 2, Func. Count: 16, Neg. LLF: 132.41703529384554
Iteration: 3, Func. Count: 25, Neg. LLF: 127.94517641100761
Iteration: 4, Func. Count: 32, Neg. LLF: 127.39113826620809
Iteration: 5, Func. Count: 39, Neg. LLF: 127.24780005425315
Iteration: 6, Func. Count: 46, Neg. LLF: 127.22296911595744
Iteration: 7, Func. Count: 53, Neg. LLF: 127.21394251297296
Iteration: 8, Func. Count: 60, Neg. LLF: 127.21351215438764
Iteration: 9, Func. Count: 67, Neg. LLF: 127.21344534747737
Iteration: 10, Func. Count: 73, Neg. LLF: 127.2134453785879
Optimization terminated successfully (Exit mode 0)
Current function value: 127.21344534747737
Iterations: 10
Function evaluations: 73
Gradient evaluations: 10
Iteration: 1, Func. Count: 9, Neg. LLF: 154.7677371586101
Iteration: 2, Func. Count: 19, Neg. LLF: 126.85290414046788
Iteration: 3, Func. Count: 27, Neg. LLF: 126.9764050555591
Iteration: 4, Func. Count: 36, Neg. LLF: 129.2860062889693
Iteration: 5, Func. Count: 45, Neg. LLF: 126.63639868875718
Iteration: 6, Func. Count: 53, Neg. LLF: 126.636174609916
Iteration: 7, Func. Count: 61, Neg. LLF: 126.63616935355994
Iteration: 8, Func. Count: 68, Neg. LLF: 126.63616939400373
Optimization terminated successfully (Exit mode 0)
Current function value: 126.63616935355994
Iterations: 8
Function evaluations: 68
Gradient evaluations: 8
Iteration: 1, Func. Count: 10, Neg. LLF: 151.0271160673534
Iteration: 2, Func. Count: 21, Neg. LLF: 126.7614243554021
Iteration: 3, Func. Count: 30, Neg. LLF: 128.89601114201966
Iteration: 4, Func. Count: 40, Neg. LLF: 126.70265422424767
Iteration: 5, Func. Count: 49, Neg. LLF: 126.6409336355482
Iteration: 6, Func. Count: 58, Neg. LLF: 126.6405663398115
Iteration: 7, Func. Count: 67, Neg. LLF: 126.64056064213295
Iteration: 8, Func. Count: 76, Neg. LLF: 126.64055738692596
Iteration: 9, Func. Count: 85, Neg. LLF: 126.64054379766671
Iteration: 10, Func. Count: 94, Neg. LLF: 126.64052972822599
Iteration: 11, Func. Count: 103, Neg. LLF: 126.64051508144682
Iteration: 12, Func. Count: 112, Neg. LLF: 126.6405092645656
Iteration: 13, Func. Count: 121, Neg. LLF: 126.64050662595747
Iteration: 14, Func. Count: 130, Neg. LLF: 126.64047802192846
Iteration: 15, Func. Count: 139, Neg. LLF: 126.63629731701347
Iteration: 16, Func. Count: 148, Neg. LLF: 127.866375742981
Iteration: 17, Func. Count: 159, Neg. LLF: 126.63644469642013
Iteration: 18, Func. Count: 168, Neg. LLF: 126.63616951214192
Optimization terminated successfully (Exit mode 0)
Current function value: 126.63616955143277
Iterations: 19
Function evaluations: 168
Gradient evaluations: 18
Iteration: 1, Func. Count: 11, Neg. LLF: 148.76423270253963
Iteration: 2, Func. Count: 23, Neg. LLF: 126.71919856486228
Iteration: 3, Func. Count: 33, Neg. LLF: 127.13752913824044
Iteration: 4, Func. Count: 44, Neg. LLF: 126.72086145662217
Iteration: 5, Func. Count: 55, Neg. LLF: 126.64551361767133
Iteration: 6, Func. Count: 65, Neg. LLF: 126.64514743194185
Iteration: 7, Func. Count: 75, Neg. LLF: 126.6442371115935
Iteration: 8, Func. Count: 85, Neg. LLF: 126.64363603690884
Iteration: 9, Func. Count: 95, Neg. LLF: 126.64329622651294
Iteration: 10, Func. Count: 105, Neg. LLF: 126.64328884751717
Iteration: 11, Func. Count: 114, Neg. LLF: 126.64328883043783
Optimization terminated successfully (Exit mode 0)
Current function value: 126.64328884751717
Iterations: 11
Function evaluations: 114
Gradient evaluations: 11
Iteration: 1, Func. Count: 12, Neg. LLF: 147.3811765656923
Iteration: 2, Func. Count: 25, Neg. LLF: 126.7018248737285
Iteration: 3, Func. Count: 36, Neg. LLF: 126.68956738593583
Iteration: 4, Func. Count: 48, Neg. LLF: 126.74412430694389
Iteration: 5, Func. Count: 60, Neg. LLF: 126.64928373097993
Iteration: 6, Func. Count: 71, Neg. LLF: 126.64774883868778
Iteration: 7, Func. Count: 82, Neg. LLF: 126.64681640084224
Iteration: 8, Func. Count: 93, Neg. LLF: 126.64358596420527
Iteration: 9, Func. Count: 104, Neg. LLF: 126.64282062897904
Iteration: 10, Func. Count: 115, Neg. LLF: 126.64046766958664
Iteration: 11, Func. Count: 126, Neg. LLF: 126.64023372736561
Iteration: 12, Func. Count: 137, Neg. LLF: 126.6402178001871
Iteration: 13, Func. Count: 147, Neg. LLF: 126.64021778714238
Optimization terminated successfully (Exit mode 0)
Current function value: 126.6402178001871
Iterations: 13
Function evaluations: 147
Gradient evaluations: 13
Iteration: 1, Func. Count: 5, Neg. LLF: 131.46115782149792
Iteration: 2, Func. Count: 10, Neg. LLF: 144.24994190374417
Iteration: 3, Func. Count: 15, Neg. LLF: 123.2979404497643
Iteration: 4, Func. Count: 19, Neg. LLF: 123.28832934427889
Iteration: 5, Func. Count: 23, Neg. LLF: 123.28725460731538
Iteration: 6, Func. Count: 27, Neg. LLF: 123.28719037828513
Iteration: 7, Func. Count: 31, Neg. LLF: 123.28717944345877
Iteration: 8, Func. Count: 35, Neg. LLF: 123.28717737621497
Iteration: 9, Func. Count: 38, Neg. LLF: 123.28717737621098
Optimization terminated successfully (Exit mode 0)
Current function value: 123.28717737621497
Iterations: 9
Function evaluations: 38
Gradient evaluations: 9
Iteration: 1, Func. Count: 6, Neg. LLF: 127.52284173899747
Iteration: 2, Func. Count: 12, Neg. LLF: 126.63835585646
Iteration: 3, Func. Count: 18, Neg. LLF: 123.74777677286819
Iteration: 4, Func. Count: 23, Neg. LLF: 123.3778355155441
Iteration: 5, Func. Count: 28, Neg. LLF: 138.51351554377442
Iteration: 6, Func. Count: 35, Neg. LLF: 123.27711229838957
Iteration: 7, Func. Count: 40, Neg. LLF: 123.27212622287415
Iteration: 8, Func. Count: 45, Neg. LLF: 123.27192919979147
Iteration: 9, Func. Count: 50, Neg. LLF: 123.27191305266707
Iteration: 10, Func. Count: 55, Neg. LLF: 123.27191040507465
Iteration: 11, Func. Count: 59, Neg. LLF: 123.27191040507049
Optimization terminated successfully (Exit mode 0)
Current function value: 123.27191040507465
Iterations: 11
Function evaluations: 59
Gradient evaluations: 11
Iteration: 1, Func. Count: 7, Neg. LLF: 128.45835799224702
Iteration: 2, Func. Count: 14, Neg. LLF: 126.3138699252309
Iteration: 3, Func. Count: 21, Neg. LLF: 123.82574076598709
Iteration: 4, Func. Count: 27, Neg. LLF: 123.34161530735658
Iteration: 5, Func. Count: 33, Neg. LLF: 134.7261009262751
Iteration: 6, Func. Count: 41, Neg. LLF: 123.27686270409156
Iteration: 7, Func. Count: 47, Neg. LLF: 123.27208864152448
Iteration: 8, Func. Count: 53, Neg. LLF: 123.27194099127641
Iteration: 9, Func. Count: 59, Neg. LLF: 123.27191117648603
Iteration: 10, Func. Count: 65, Neg. LLF: 123.27191040604292
Optimization terminated successfully (Exit mode 0)
Current function value: 123.27191040604292
Iterations: 10
Function evaluations: 65
Gradient evaluations: 10
Iteration: 1, Func. Count: 8, Neg. LLF: 127.60754807016285
Iteration: 2, Func. Count: 16, Neg. LLF: 126.70113367902832
Iteration: 3, Func. Count: 24, Neg. LLF: 123.75976127123961
Iteration: 4, Func. Count: 31, Neg. LLF: 123.32800342998948
Iteration: 5, Func. Count: 38, Neg. LLF: 143.54831981108367
Iteration: 6, Func. Count: 47, Neg. LLF: 123.27550371240363
Iteration: 7, Func. Count: 54, Neg. LLF: 123.27203165183974
Iteration: 8, Func. Count: 61, Neg. LLF: 123.27192402483249
Iteration: 9, Func. Count: 68, Neg. LLF: 123.27191169010162
Iteration: 10, Func. Count: 75, Neg. LLF: 123.27191040420531
Iteration: 11, Func. Count: 81, Neg. LLF: 123.2719104416661
Optimization terminated successfully (Exit mode 0)
Current function value: 123.27191040420531
Iterations: 11
Function evaluations: 81
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 127.22573313151534
Iteration: 2, Func. Count: 18, Neg. LLF: 126.86698361507366
Iteration: 3, Func. Count: 27, Neg. LLF: 123.78980221231859
Iteration: 4, Func. Count: 36, Neg. LLF: 42334.204669718485
Iteration: 5, Func. Count: 46, Neg. LLF: 123.18793636029184
Iteration: 6, Func. Count: 54, Neg. LLF: 124.08176901501288
Iteration: 7, Func. Count: 63, Neg. LLF: 123.17362766249876
Iteration: 8, Func. Count: 71, Neg. LLF: 123.1727511259893
Iteration: 9, Func. Count: 79, Neg. LLF: 123.17274794678616
Iteration: 10, Func. Count: 86, Neg. LLF: 123.17274794669032
Optimization terminated successfully (Exit mode 0)
Current function value: 123.17274794678616
Iterations: 10
Function evaluations: 86
Gradient evaluations: 10
Iteration: 1, Func. Count: 6, Neg. LLF: 131.67284622230432
Iteration: 2, Func. Count: 12, Neg. LLF: 133.01283303129105
Iteration: 3, Func. Count: 18, Neg. LLF: 120.6761281474992
Iteration: 4, Func. Count: 23, Neg. LLF: 120.7130881645073
Iteration: 5, Func. Count: 29, Neg. LLF: 124.97782344044691
Iteration: 6, Func. Count: 35, Neg. LLF: 120.32133265735338
Iteration: 7, Func. Count: 40, Neg. LLF: 120.30278062904596
Iteration: 8, Func. Count: 45, Neg. LLF: 120.30243155980932
Iteration: 9, Func. Count: 50, Neg. LLF: 120.30241892802081
Iteration: 10, Func. Count: 54, Neg. LLF: 120.30241893734015
Optimization terminated successfully (Exit mode 0)
Current function value: 120.30241892802081
Iterations: 10
Function evaluations: 54
Gradient evaluations: 10
Iteration: 1, Func. Count: 7, Neg. LLF: 128.59119145198002
Iteration: 2, Func. Count: 14, Neg. LLF: 126.796898203112
Iteration: 3, Func. Count: 21, Neg. LLF: 120.91236673326225
Iteration: 4, Func. Count: 27, Neg. LLF: 120.70152822452488
Iteration: 5, Func. Count: 33, Neg. LLF: 120.5332749664586
Iteration: 6, Func. Count: 39, Neg. LLF: 120.39082159493994
Iteration: 7, Func. Count: 45, Neg. LLF: 120.30649656767167
Iteration: 8, Func. Count: 51, Neg. LLF: 120.30254012231893
Iteration: 9, Func. Count: 57, Neg. LLF: 120.30242659295573
Iteration: 10, Func. Count: 63, Neg. LLF: 120.30241874989927
Iteration: 11, Func. Count: 68, Neg. LLF: 120.30241876932313
Optimization terminated successfully (Exit mode 0)
Current function value: 120.30241874989927
Iterations: 11
Function evaluations: 68
Gradient evaluations: 11
Iteration: 1, Func. Count: 8, Neg. LLF: 130.01529044553786
Iteration: 2, Func. Count: 16, Neg. LLF: 125.40229107740521
Iteration: 3, Func. Count: 24, Neg. LLF: 120.86397250404009
Iteration: 4, Func. Count: 31, Neg. LLF: 120.87536628412224
Iteration: 5, Func. Count: 39, Neg. LLF: 120.51881649270119
Iteration: 6, Func. Count: 46, Neg. LLF: 120.49917923315574
Iteration: 7, Func. Count: 54, Neg. LLF: 120.49898404140204
Iteration: 8, Func. Count: 62, Neg. LLF: 120.30258366645923
Iteration: 9, Func. Count: 69, Neg. LLF: 120.30243345978359
Iteration: 10, Func. Count: 76, Neg. LLF: 120.30241949355981
Iteration: 11, Func. Count: 83, Neg. LLF: 120.30241872515671
Optimization terminated successfully (Exit mode 0)
Current function value: 120.30241872515671
Iterations: 11
Function evaluations: 83
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 128.7790396414555
Iteration: 2, Func. Count: 18, Neg. LLF: 124.82714869583126
Iteration: 3, Func. Count: 27, Neg. LLF: 120.74530513526537
Iteration: 4, Func. Count: 35, Neg. LLF: 120.78138748259582
Iteration: 5, Func. Count: 44, Neg. LLF: 120.49669809166451
Iteration: 6, Func. Count: 53, Neg. LLF: 120.4247899463325
Iteration: 7, Func. Count: 61, Neg. LLF: 120.32610030414604
Iteration: 8, Func. Count: 69, Neg. LLF: 120.30429707335098
Iteration: 9, Func. Count: 77, Neg. LLF: 120.30246986413631
Iteration: 10, Func. Count: 85, Neg. LLF: 120.30241873721003
Iteration: 11, Func. Count: 92, Neg. LLF: 120.30241874274282
Optimization terminated successfully (Exit mode 0)
Current function value: 120.30241873721003
Iterations: 11
Function evaluations: 92
Gradient evaluations: 11
Iteration: 1, Func. Count: 10, Neg. LLF: 128.2325003508128
Iteration: 2, Func. Count: 20, Neg. LLF: 124.84552668759247
Iteration: 3, Func. Count: 30, Neg. LLF: 120.7010045715129
Iteration: 4, Func. Count: 39, Neg. LLF: 120.93650207523257
Iteration: 5, Func. Count: 49, Neg. LLF: 120.38161071706374
Iteration: 6, Func. Count: 58, Neg. LLF: 120.43276065119298
Iteration: 7, Func. Count: 68, Neg. LLF: 120.40564111973086
Iteration: 8, Func. Count: 78, Neg. LLF: 120.3110402030188
Iteration: 9, Func. Count: 87, Neg. LLF: 120.30377015186471
Iteration: 10, Func. Count: 96, Neg. LLF: 120.30242213166393
Iteration: 11, Func. Count: 105, Neg. LLF: 120.30241872656629
Iteration: 12, Func. Count: 113, Neg. LLF: 120.3024187836958
Optimization terminated successfully (Exit mode 0)
Current function value: 120.30241872656629
Iterations: 12
Function evaluations: 113
Gradient evaluations: 12
Iteration: 1, Func. Count: 7, Neg. LLF: 132.5144435684954
Iteration: 2, Func. Count: 15, Neg. LLF: 138.03516762108634
Iteration: 3, Func. Count: 22, Neg. LLF: 120.96380860624208
Iteration: 4, Func. Count: 28, Neg. LLF: 122.65962604737884
Iteration: 5, Func. Count: 36, Neg. LLF: 128.26593901000007
Iteration: 6, Func. Count: 46, Neg. LLF: 120.34997637651816
Iteration: 7, Func. Count: 52, Neg. LLF: 120.11022274644111
Iteration: 8, Func. Count: 58, Neg. LLF: 120.10974361518944
Iteration: 9, Func. Count: 64, Neg. LLF: 120.10971939788259
Iteration: 10, Func. Count: 70, Neg. LLF: 120.10971682424571
Iteration: 11, Func. Count: 76, Neg. LLF: 120.10971588791789
Optimization terminated successfully (Exit mode 0)
Current function value: 120.10971588791789
Iterations: 11
Function evaluations: 76
Gradient evaluations: 11
Iteration: 1, Func. Count: 8, Neg. LLF: 128.42809933247355
Iteration: 2, Func. Count: 16, Neg. LLF: 126.85383951947834
Iteration: 3, Func. Count: 24, Neg. LLF: 125.82945857513445
Iteration: 4, Func. Count: 33, Neg. LLF: 120.29317041679643
Iteration: 5, Func. Count: 40, Neg. LLF: 120.4618310858993
Iteration: 6, Func. Count: 48, Neg. LLF: 120.14702465047401
Iteration: 7, Func. Count: 55, Neg. LLF: 120.1144658741966
Iteration: 8, Func. Count: 62, Neg. LLF: 120.16883277749224
Iteration: 9, Func. Count: 70, Neg. LLF: 120.10975613361015
Iteration: 10, Func. Count: 77, Neg. LLF: 120.10971667823593
Iteration: 11, Func. Count: 84, Neg. LLF: 120.10971580911473
Optimization terminated successfully (Exit mode 0)
Current function value: 120.10971580911473
Iterations: 11
Function evaluations: 84
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 129.62075147411392
Iteration: 2, Func. Count: 18, Neg. LLF: 125.5049685401558
Iteration: 3, Func. Count: 27, Neg. LLF: 126.12320140679104
Iteration: 4, Func. Count: 37, Neg. LLF: 120.30800925789949
Iteration: 5, Func. Count: 45, Neg. LLF: 120.41099029363076
Iteration: 6, Func. Count: 54, Neg. LLF: 120.17589186108775
Iteration: 7, Func. Count: 62, Neg. LLF: 120.1156751737932
Iteration: 8, Func. Count: 70, Neg. LLF: 120.11031849148529
Iteration: 9, Func. Count: 78, Neg. LLF: 120.10974626262748
Iteration: 10, Func. Count: 86, Neg. LLF: 120.10971586713144
Iteration: 11, Func. Count: 93, Neg. LLF: 120.10971591386279
Optimization terminated successfully (Exit mode 0)
Current function value: 120.10971586713144
Iterations: 11
Function evaluations: 93
Gradient evaluations: 11
Iteration: 1, Func. Count: 10, Neg. LLF: 128.34842137246918
Iteration: 2, Func. Count: 20, Neg. LLF: 124.96899789957666
Iteration: 3, Func. Count: 30, Neg. LLF: 130.76086170347685
Iteration: 4, Func. Count: 41, Neg. LLF: 120.2985480778524
Iteration: 5, Func. Count: 50, Neg. LLF: 120.27409597440902
Iteration: 6, Func. Count: 60, Neg. LLF: 120.5004858357675
Iteration: 7, Func. Count: 71, Neg. LLF: 120.3758931040036
Iteration: 8, Func. Count: 81, Neg. LLF: 120.1071614097664
Iteration: 9, Func. Count: 90, Neg. LLF: 120.10365454400008
Iteration: 10, Func. Count: 99, Neg. LLF: 120.10251937935219
Iteration: 11, Func. Count: 108, Neg. LLF: 120.1019991209175
Iteration: 12, Func. Count: 117, Neg. LLF: 120.10199819507218
Optimization terminated successfully (Exit mode 0)
Current function value: 120.10199819507218
Iterations: 12
Function evaluations: 117
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 127.74841841348497
Iteration: 2, Func. Count: 22, Neg. LLF: 124.99390995679991
Iteration: 3, Func. Count: 33, Neg. LLF: 133.18678480313065
Iteration: 4, Func. Count: 45, Neg. LLF: 120.29906573275427
Iteration: 5, Func. Count: 55, Neg. LLF: 120.2438369789628
Iteration: 6, Func. Count: 66, Neg. LLF: 120.49170086006727
Iteration: 7, Func. Count: 78, Neg. LLF: 120.28631852111494
Iteration: 8, Func. Count: 89, Neg. LLF: 120.1070870121577
Iteration: 9, Func. Count: 99, Neg. LLF: 120.10354154161138
Iteration: 10, Func. Count: 109, Neg. LLF: 120.10246241727481
Iteration: 11, Func. Count: 119, Neg. LLF: 120.10199934628731
Iteration: 12, Func. Count: 129, Neg. LLF: 120.10199819741001
Iteration: 13, Func. Count: 138, Neg. LLF: 120.10199825154474
Optimization terminated successfully (Exit mode 0)
Current function value: 120.10199819741001
Iterations: 13
Function evaluations: 138
Gradient evaluations: 13
Iteration: 1, Func. Count: 8, Neg. LLF: 131.67356980819812
Iteration: 2, Func. Count: 16, Neg. LLF: 141.3703384291847
Iteration: 3, Func. Count: 24, Neg. LLF: 120.82103235501226
Iteration: 4, Func. Count: 31, Neg. LLF: 127.40912011660977
Iteration: 5, Func. Count: 40, Neg. LLF: 128.19498024632418
Iteration: 6, Func. Count: 51, Neg. LLF: 121.81395155139165
Iteration: 7, Func. Count: 61, Neg. LLF: 120.45473426066864
Iteration: 8, Func. Count: 69, Neg. LLF: 120.05026194166159
Iteration: 9, Func. Count: 76, Neg. LLF: 120.04559342272157
Iteration: 10, Func. Count: 84, Neg. LLF: 119.99438039240766
Iteration: 11, Func. Count: 91, Neg. LLF: 119.99195137208714
Iteration: 12, Func. Count: 98, Neg. LLF: 119.99186431076518
Iteration: 13, Func. Count: 105, Neg. LLF: 119.99185635784768
Iteration: 14, Func. Count: 111, Neg. LLF: 119.99185635787434
Optimization terminated successfully (Exit mode 0)
Current function value: 119.99185635784768
Iterations: 14
Function evaluations: 111
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 128.7494930670237
Iteration: 2, Func. Count: 18, Neg. LLF: 122.98651434920444
Iteration: 3, Func. Count: 27, Neg. LLF: 128.94267796801157
Iteration: 4, Func. Count: 37, Neg. LLF: 121.34036978566532
Iteration: 5, Func. Count: 46, Neg. LLF: 126.94714203782627
Iteration: 6, Func. Count: 55, Neg. LLF: 120.30870341710865
Iteration: 7, Func. Count: 63, Neg. LLF: 120.06865517107744
Iteration: 8, Func. Count: 71, Neg. LLF: 120.02773199813703
Iteration: 9, Func. Count: 79, Neg. LLF: 119.99559777334672
Iteration: 10, Func. Count: 87, Neg. LLF: 119.99236210816377
Iteration: 11, Func. Count: 95, Neg. LLF: 119.99186421944265
Iteration: 12, Func. Count: 103, Neg. LLF: 119.99185644744227
Iteration: 13, Func. Count: 110, Neg. LLF: 119.99185646269396
Optimization terminated successfully (Exit mode 0)
Current function value: 119.99185644744227
Iterations: 13
Function evaluations: 110
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 129.94437102785903
Iteration: 2, Func. Count: 20, Neg. LLF: 123.31853328607173
Iteration: 3, Func. Count: 30, Neg. LLF: 126.70057320776067
Iteration: 4, Func. Count: 41, Neg. LLF: 121.1577170958854
Iteration: 5, Func. Count: 51, Neg. LLF: 127.27460449494824
Iteration: 6, Func. Count: 61, Neg. LLF: 120.3589177313217
Iteration: 7, Func. Count: 70, Neg. LLF: 120.05288830665309
Iteration: 8, Func. Count: 79, Neg. LLF: 120.01567945305035
Iteration: 9, Func. Count: 88, Neg. LLF: 119.99558738913308
Iteration: 10, Func. Count: 97, Neg. LLF: 119.99252055378814
Iteration: 11, Func. Count: 106, Neg. LLF: 119.99187300041658
Iteration: 12, Func. Count: 115, Neg. LLF: 119.9918563756781
Iteration: 13, Func. Count: 123, Neg. LLF: 119.99185641681119
Optimization terminated successfully (Exit mode 0)
Current function value: 119.9918563756781
Iterations: 13
Function evaluations: 123
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 128.68404785630048
Iteration: 2, Func. Count: 22, Neg. LLF: 122.56510262082782
Iteration: 3, Func. Count: 32, Neg. LLF: 150.4893451873684
Iteration: 4, Func. Count: 44, Neg. LLF: 127.57739205262948
Iteration: 5, Func. Count: 56, Neg. LLF: 314.29476825858586
Iteration: 6, Func. Count: 67, Neg. LLF: 121.31288029383582
Iteration: 7, Func. Count: 77, Neg. LLF: 124.01172769921797
Iteration: 8, Func. Count: 89, Neg. LLF: 120.58573455577127
Iteration: 9, Func. Count: 99, Neg. LLF: 120.16429931919207
Iteration: 10, Func. Count: 109, Neg. LLF: 120.62309562411936
Iteration: 11, Func. Count: 120, Neg. LLF: 120.08014154996987
Iteration: 12, Func. Count: 131, Neg. LLF: 120.05214193802479
Iteration: 13, Func. Count: 142, Neg. LLF: 120.00172166635505
Iteration: 14, Func. Count: 152, Neg. LLF: 119.99339688078246
Iteration: 15, Func. Count: 162, Neg. LLF: 119.99220390013413
Iteration: 16, Func. Count: 172, Neg. LLF: 119.99198761127454
Iteration: 17, Func. Count: 182, Neg. LLF: 119.99188168569393
Iteration: 18, Func. Count: 192, Neg. LLF: 119.99185766395995
Iteration: 19, Func. Count: 202, Neg. LLF: 119.99185636806587
Iteration: 20, Func. Count: 211, Neg. LLF: 119.9918563784278
Optimization terminated successfully (Exit mode 0)
Current function value: 119.99185636806587
Iterations: 20
Function evaluations: 211
Gradient evaluations: 20
Iteration: 1, Func. Count: 12, Neg. LLF: 128.14125047178982
Iteration: 2, Func. Count: 24, Neg. LLF: 123.05742418013988
Iteration: 3, Func. Count: 36, Neg. LLF: 133.45629385400846
Iteration: 4, Func. Count: 49, Neg. LLF: 120.69810859113477
Iteration: 5, Func. Count: 60, Neg. LLF: 124.09498321047566
Iteration: 6, Func. Count: 72, Neg. LLF: 135.79017848615172
Iteration: 7, Func. Count: 86, Neg. LLF: 124.81645315936692
Iteration: 8, Func. Count: 98, Neg. LLF: 120.05851871177319
Iteration: 9, Func. Count: 109, Neg. LLF: 120.38362127783417
Iteration: 10, Func. Count: 121, Neg. LLF: 120.00434997159306
Iteration: 11, Func. Count: 132, Neg. LLF: 119.99309501224567
Iteration: 12, Func. Count: 143, Neg. LLF: 119.99189204395738
Iteration: 13, Func. Count: 154, Neg. LLF: 119.99186087520468
Iteration: 14, Func. Count: 165, Neg. LLF: 119.99185704406194
Iteration: 15, Func. Count: 176, Neg. LLF: 119.99185634056886
Optimization terminated successfully (Exit mode 0)
Current function value: 119.99185634056886
Iterations: 15
Function evaluations: 176
Gradient evaluations: 15
Iteration: 1, Func. Count: 9, Neg. LLF: 132.47787926774598
Iteration: 2, Func. Count: 18, Neg. LLF: 135.65502542370126
Iteration: 3, Func. Count: 27, Neg. LLF: 120.89778827678069
Iteration: 4, Func. Count: 35, Neg. LLF: 125.23773965736574
Iteration: 5, Func. Count: 45, Neg. LLF: 133.17201007484954
Iteration: 6, Func. Count: 57, Neg. LLF: 122.20945893443015
Iteration: 7, Func. Count: 68, Neg. LLF: 120.4097699808456
Iteration: 8, Func. Count: 77, Neg. LLF: 120.0380123790987
Iteration: 9, Func. Count: 85, Neg. LLF: 120.03048522816049
Iteration: 10, Func. Count: 94, Neg. LLF: 119.99439427805248
Iteration: 11, Func. Count: 102, Neg. LLF: 119.99189112084481
Iteration: 12, Func. Count: 110, Neg. LLF: 119.99185874860932
Iteration: 13, Func. Count: 118, Neg. LLF: 119.9918563580593
Iteration: 14, Func. Count: 125, Neg. LLF: 119.99185639933829
Optimization terminated successfully (Exit mode 0)
Current function value: 119.9918563580593
Iterations: 14
Function evaluations: 125
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 128.63190946074263
Iteration: 2, Func. Count: 20, Neg. LLF: 122.80529988912592
Iteration: 3, Func. Count: 30, Neg. LLF: 129.9835680724496
Iteration: 4, Func. Count: 41, Neg. LLF: 121.42303807594094
Iteration: 5, Func. Count: 51, Neg. LLF: 127.48019525525366
Iteration: 6, Func. Count: 61, Neg. LLF: 120.30862228782951
Iteration: 7, Func. Count: 70, Neg. LLF: 120.08774296567061
Iteration: 8, Func. Count: 79, Neg. LLF: 120.03179156166901
Iteration: 9, Func. Count: 88, Neg. LLF: 119.99857744403529
Iteration: 10, Func. Count: 97, Neg. LLF: 119.99375119363368
Iteration: 11, Func. Count: 106, Neg. LLF: 119.99190669531977
Iteration: 12, Func. Count: 115, Neg. LLF: 119.99185736245258
Iteration: 13, Func. Count: 124, Neg. LLF: 119.99185634812879
Iteration: 14, Func. Count: 132, Neg. LLF: 119.99185636335393
Optimization terminated successfully (Exit mode 0)
Current function value: 119.99185634812879
Iterations: 14
Function evaluations: 132
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 129.8490948247592
Iteration: 2, Func. Count: 22, Neg. LLF: 123.14659463383582
Iteration: 3, Func. Count: 33, Neg. LLF: 127.28029423008108
Iteration: 4, Func. Count: 45, Neg. LLF: 121.19252810460635
Iteration: 5, Func. Count: 56, Neg. LLF: 126.34467762543501
Iteration: 6, Func. Count: 67, Neg. LLF: 120.32498442091534
Iteration: 7, Func. Count: 77, Neg. LLF: 120.05689614592222
Iteration: 8, Func. Count: 87, Neg. LLF: 120.02008515155616
Iteration: 9, Func. Count: 97, Neg. LLF: 119.99774726493199
Iteration: 10, Func. Count: 107, Neg. LLF: 119.9929705318595
Iteration: 11, Func. Count: 117, Neg. LLF: 119.99198547826802
Iteration: 12, Func. Count: 127, Neg. LLF: 119.99185702823524
Iteration: 13, Func. Count: 137, Neg. LLF: 119.9918563431068
Optimization terminated successfully (Exit mode 0)
Current function value: 119.9918563431068
Iterations: 13
Function evaluations: 137
Gradient evaluations: 13
Iteration: 1, Func. Count: 12, Neg. LLF: 128.62051641324916
Iteration: 2, Func. Count: 24, Neg. LLF: 122.51843016885583
Iteration: 3, Func. Count: 35, Neg. LLF: 150.38738445509875
Iteration: 4, Func. Count: 48, Neg. LLF: 127.84777188695834
Iteration: 5, Func. Count: 61, Neg. LLF: 289.29402061271765
Iteration: 6, Func. Count: 73, Neg. LLF: 121.362460530982
Iteration: 7, Func. Count: 84, Neg. LLF: 123.41432588016191
Iteration: 8, Func. Count: 97, Neg. LLF: 120.53520068619093
Iteration: 9, Func. Count: 108, Neg. LLF: 120.10092328686304
Iteration: 10, Func. Count: 119, Neg. LLF: 120.55668150929934
Iteration: 11, Func. Count: 131, Neg. LLF: 120.02779572722329
Iteration: 12, Func. Count: 142, Neg. LLF: 120.11867656940514
Iteration: 13, Func. Count: 154, Neg. LLF: 119.9999239936663
Iteration: 14, Func. Count: 165, Neg. LLF: 119.9930320926123
Iteration: 15, Func. Count: 176, Neg. LLF: 119.99201192823388
Iteration: 16, Func. Count: 187, Neg. LLF: 119.99190961934866
Iteration: 17, Func. Count: 198, Neg. LLF: 119.991869359397
Iteration: 18, Func. Count: 209, Neg. LLF: 119.9918564201701
Iteration: 19, Func. Count: 219, Neg. LLF: 119.99185643049213
Optimization terminated successfully (Exit mode 0)
Current function value: 119.9918564201701
Iterations: 19
Function evaluations: 219
Gradient evaluations: 19
Iteration: 1, Func. Count: 13, Neg. LLF: 128.08933458965603
Iteration: 2, Func. Count: 26, Neg. LLF: 122.88719549258886
Iteration: 3, Func. Count: 39, Neg. LLF: 133.86974344722506
Iteration: 4, Func. Count: 53, Neg. LLF: 120.7721044731706
Iteration: 5, Func. Count: 65, Neg. LLF: 125.17726906473122
Iteration: 6, Func. Count: 78, Neg. LLF: 139.6121351459403
Iteration: 7, Func. Count: 93, Neg. LLF: 125.97584553914442
Iteration: 8, Func. Count: 106, Neg. LLF: 120.21065794121465
Iteration: 9, Func. Count: 118, Neg. LLF: 120.04379102585047
Iteration: 10, Func. Count: 130, Neg. LLF: 120.01176524041686
Iteration: 11, Func. Count: 142, Neg. LLF: 119.99479784737827
Iteration: 12, Func. Count: 154, Neg. LLF: 119.99201467171847
Iteration: 13, Func. Count: 166, Neg. LLF: 119.99188682730487
Iteration: 14, Func. Count: 178, Neg. LLF: 119.99185663800833
Iteration: 15, Func. Count: 189, Neg. LLF: 119.99185669641389
Optimization terminated successfully (Exit mode 0)
Current function value: 119.99185663800833
Iterations: 15
Function evaluations: 189
Gradient evaluations: 15
Iteration: 1, Func. Count: 6, Neg. LLF: 132.0382028396742
Iteration: 2, Func. Count: 12, Neg. LLF: 177.71083496683144
Iteration: 3, Func. Count: 18, Neg. LLF: 123.43525794305044
Iteration: 4, Func. Count: 23, Neg. LLF: 125.34907454260691
Iteration: 5, Func. Count: 30, Neg. LLF: 129.23448776260722
Iteration: 6, Func. Count: 37, Neg. LLF: 123.27220810463064
Iteration: 7, Func. Count: 42, Neg. LLF: 123.26983205504341
Iteration: 8, Func. Count: 47, Neg. LLF: 123.26830549174777
Iteration: 9, Func. Count: 52, Neg. LLF: 123.26821115669271
Iteration: 10, Func. Count: 57, Neg. LLF: 123.26820082223726
Iteration: 11, Func. Count: 62, Neg. LLF: 123.26819962196133
Iteration: 12, Func. Count: 66, Neg. LLF: 123.26819962204038
Optimization terminated successfully (Exit mode 0)
Current function value: 123.26819962196133
Iterations: 12
Function evaluations: 66
Gradient evaluations: 12
Iteration: 1, Func. Count: 7, Neg. LLF: 129.30028818805616
Iteration: 2, Func. Count: 14, Neg. LLF: 134.35398380713568
Iteration: 3, Func. Count: 21, Neg. LLF: 123.43707643609321
Iteration: 4, Func. Count: 27, Neg. LLF: 133.5767137294152
Iteration: 5, Func. Count: 35, Neg. LLF: 124.1311805341107
Iteration: 6, Func. Count: 42, Neg. LLF: 123.27258636794946
Iteration: 7, Func. Count: 48, Neg. LLF: 123.26887379619397
Iteration: 8, Func. Count: 54, Neg. LLF: 123.26831550877935
Iteration: 9, Func. Count: 60, Neg. LLF: 123.26819989663426
Iteration: 10, Func. Count: 65, Neg. LLF: 123.26819989934582
Optimization terminated successfully (Exit mode 0)
Current function value: 123.26819989663426
Iterations: 10
Function evaluations: 65
Gradient evaluations: 10
Iteration: 1, Func. Count: 8, Neg. LLF: 128.0014396864283
Iteration: 2, Func. Count: 16, Neg. LLF: 136.41387723626022
Iteration: 3, Func. Count: 24, Neg. LLF: 123.42012672505103
Iteration: 4, Func. Count: 31, Neg. LLF: 141.37055441476488
Iteration: 5, Func. Count: 40, Neg. LLF: 123.80378128727178
Iteration: 6, Func. Count: 48, Neg. LLF: 123.27123874925827
Iteration: 7, Func. Count: 55, Neg. LLF: 123.26863745036425
Iteration: 8, Func. Count: 62, Neg. LLF: 123.2682751368532
Iteration: 9, Func. Count: 69, Neg. LLF: 123.26819974058844
Iteration: 10, Func. Count: 75, Neg. LLF: 123.26819979964816
Optimization terminated successfully (Exit mode 0)
Current function value: 123.26819974058844
Iterations: 10
Function evaluations: 75
Gradient evaluations: 10
Iteration: 1, Func. Count: 9, Neg. LLF: 126.9650189123546
Iteration: 2, Func. Count: 18, Neg. LLF: 136.77879157323164
Iteration: 3, Func. Count: 27, Neg. LLF: 123.39890329559718
Iteration: 4, Func. Count: 35, Neg. LLF: 214.8997933194911
Iteration: 5, Func. Count: 45, Neg. LLF: 123.60028325982651
Iteration: 6, Func. Count: 54, Neg. LLF: 123.26959652200841
Iteration: 7, Func. Count: 62, Neg. LLF: 123.26841288902288
Iteration: 8, Func. Count: 70, Neg. LLF: 123.26823337764388
Iteration: 9, Func. Count: 78, Neg. LLF: 123.2681999574265
Iteration: 10, Func. Count: 86, Neg. LLF: 123.26819951890033
Optimization terminated successfully (Exit mode 0)
Current function value: 123.26819951890033
Iterations: 10
Function evaluations: 86
Gradient evaluations: 10
Iteration: 1, Func. Count: 10, Neg. LLF: 125.94401543818444
Iteration: 2, Func. Count: 20, Neg. LLF: 135.72973851445448
Iteration: 3, Func. Count: 30, Neg. LLF: 123.3814109580824
Iteration: 4, Func. Count: 39, Neg. LLF: 461.6077240772179
Iteration: 5, Func. Count: 49, Neg. LLF: 125.53526286781641
Iteration: 6, Func. Count: 60, Neg. LLF: 124.08447808749717
Iteration: 7, Func. Count: 70, Neg. LLF: 123.19679853390679
Iteration: 8, Func. Count: 79, Neg. LLF: 123.18034374874058
Iteration: 9, Func. Count: 88, Neg. LLF: 123.17474423543923
Iteration: 10, Func. Count: 97, Neg. LLF: 123.17553271826935
Iteration: 11, Func. Count: 107, Neg. LLF: 123.172946542981
Iteration: 12, Func. Count: 116, Neg. LLF: 123.17275266065708
Iteration: 13, Func. Count: 125, Neg. LLF: 123.17274775868727
Iteration: 14, Func. Count: 133, Neg. LLF: 123.17274775863063
Optimization terminated successfully (Exit mode 0)
Current function value: 123.17274775868727
Iterations: 14
Function evaluations: 133
Gradient evaluations: 14
Iteration: 1, Func. Count: 7, Neg. LLF: 133.94063724164351
Iteration: 2, Func. Count: 14, Neg. LLF: 173.30483769626943
Iteration: 3, Func. Count: 21, Neg. LLF: 122.80088492158376
Iteration: 4, Func. Count: 28, Neg. LLF: 121.06291710576704
Iteration: 5, Func. Count: 35, Neg. LLF: 120.54155175987552
Iteration: 6, Func. Count: 41, Neg. LLF: 120.32460359479015
Iteration: 7, Func. Count: 47, Neg. LLF: 120.36091908289174
Iteration: 8, Func. Count: 54, Neg. LLF: 120.17109470569723
Iteration: 9, Func. Count: 60, Neg. LLF: 120.16915367317972
Iteration: 10, Func. Count: 66, Neg. LLF: 120.16914197135628
Iteration: 11, Func. Count: 72, Neg. LLF: 120.16913917619364
Iteration: 12, Func. Count: 77, Neg. LLF: 120.16913919615605
Optimization terminated successfully (Exit mode 0)
Current function value: 120.16913917619364
Iterations: 12
Function evaluations: 77
Gradient evaluations: 12
Iteration: 1, Func. Count: 8, Neg. LLF: 130.53300621352847
Iteration: 2, Func. Count: 16, Neg. LLF: 135.12085869477312
Iteration: 3, Func. Count: 24, Neg. LLF: 121.37926698651466
Iteration: 4, Func. Count: 31, Neg. LLF: 122.15806397403536
Iteration: 5, Func. Count: 39, Neg. LLF: 150.3705137384074
Iteration: 6, Func. Count: 47, Neg. LLF: 120.34934022915611
Iteration: 7, Func. Count: 54, Neg. LLF: 120.22098340522837
Iteration: 8, Func. Count: 61, Neg. LLF: 120.17607302795673
Iteration: 9, Func. Count: 68, Neg. LLF: 120.16990629110737
Iteration: 10, Func. Count: 75, Neg. LLF: 120.16915882965118
Iteration: 11, Func. Count: 82, Neg. LLF: 120.16914239310687
Iteration: 12, Func. Count: 89, Neg. LLF: 120.16913920070675
Iteration: 13, Func. Count: 95, Neg. LLF: 120.16913922066185
Optimization terminated successfully (Exit mode 0)
Current function value: 120.16913920070675
Iterations: 13
Function evaluations: 95
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 128.92710050906376
Iteration: 2, Func. Count: 18, Neg. LLF: 135.04146712396044
Iteration: 3, Func. Count: 27, Neg. LLF: 121.27693958642479
Iteration: 4, Func. Count: 35, Neg. LLF: 121.89334129214537
Iteration: 5, Func. Count: 44, Neg. LLF: 135.07437346157894
Iteration: 6, Func. Count: 54, Neg. LLF: 120.2853833191535
Iteration: 7, Func. Count: 62, Neg. LLF: 120.21052282943535
Iteration: 8, Func. Count: 70, Neg. LLF: 120.17139037537271
Iteration: 9, Func. Count: 78, Neg. LLF: 120.16947032107663
Iteration: 10, Func. Count: 86, Neg. LLF: 120.16915602975848
Iteration: 11, Func. Count: 94, Neg. LLF: 120.16914070568555
Iteration: 12, Func. Count: 102, Neg. LLF: 120.16913918586533
Iteration: 13, Func. Count: 109, Neg. LLF: 120.16913922892095
Optimization terminated successfully (Exit mode 0)
Current function value: 120.16913918586533
Iterations: 13
Function evaluations: 109
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 127.38016316316809
Iteration: 2, Func. Count: 20, Neg. LLF: 134.5008191734137
Iteration: 3, Func. Count: 30, Neg. LLF: 121.15131813024898
Iteration: 4, Func. Count: 39, Neg. LLF: 121.7137890321645
Iteration: 5, Func. Count: 49, Neg. LLF: 141.58167953645457
Iteration: 6, Func. Count: 60, Neg. LLF: 120.2406160683877
Iteration: 7, Func. Count: 69, Neg. LLF: 120.19727580505757
Iteration: 8, Func. Count: 78, Neg. LLF: 120.17684764482753
Iteration: 9, Func. Count: 87, Neg. LLF: 120.16788952625188
Iteration: 10, Func. Count: 96, Neg. LLF: 120.16675760786813
Iteration: 11, Func. Count: 105, Neg. LLF: 120.16645514822564
Iteration: 12, Func. Count: 114, Neg. LLF: 120.16639654791712
Iteration: 13, Func. Count: 123, Neg. LLF: 120.16637785937009
Iteration: 14, Func. Count: 131, Neg. LLF: 120.16637785947734
Optimization terminated successfully (Exit mode 0)
Current function value: 120.16637785937009
Iterations: 14
Function evaluations: 131
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 130.86076906789302
Iteration: 2, Func. Count: 22, Neg. LLF: 130.5450708983854
Iteration: 3, Func. Count: 33, Neg. LLF: 122.67598471388276
Iteration: 4, Func. Count: 44, Neg. LLF: 127.80264126207888
Iteration: 5, Func. Count: 55, Neg. LLF: 123.9302240529949
Iteration: 6, Func. Count: 66, Neg. LLF: 120.22141477919438
Iteration: 7, Func. Count: 76, Neg. LLF: 120.17552089844033
Iteration: 8, Func. Count: 86, Neg. LLF: 120.1665703895345
Iteration: 9, Func. Count: 96, Neg. LLF: 120.16637795713157
Iteration: 10, Func. Count: 106, Neg. LLF: 120.16637755034643
Optimization terminated successfully (Exit mode 0)
Current function value: 120.16637755034643
Iterations: 10
Function evaluations: 106
Gradient evaluations: 10
Iteration: 1, Func. Count: 8, Neg. LLF: 133.92140483922392
Iteration: 2, Func. Count: 16, Neg. LLF: 171.52916212454164
Iteration: 3, Func. Count: 24, Neg. LLF: 121.64154482716735
Iteration: 4, Func. Count: 31, Neg. LLF: 132.14880235955263
Iteration: 5, Func. Count: 40, Neg. LLF: 138.9520775171814
Iteration: 6, Func. Count: 51, Neg. LLF: 125.18265946773354
Iteration: 7, Func. Count: 59, Neg. LLF: 120.52195457743413
Iteration: 8, Func. Count: 66, Neg. LLF: 120.2092879899151
Iteration: 9, Func. Count: 73, Neg. LLF: 120.1168927198532
Iteration: 10, Func. Count: 80, Neg. LLF: 120.10993360434279
Iteration: 11, Func. Count: 87, Neg. LLF: 120.1098137481735
Iteration: 12, Func. Count: 94, Neg. LLF: 120.10975090510424
Iteration: 13, Func. Count: 101, Neg. LLF: 120.10972550731712
Iteration: 14, Func. Count: 108, Neg. LLF: 120.1097163704776
Iteration: 15, Func. Count: 114, Neg. LLF: 120.10971637048998
Optimization terminated successfully (Exit mode 0)
Current function value: 120.1097163704776
Iterations: 15
Function evaluations: 114
Gradient evaluations: 15
Iteration: 1, Func. Count: 9, Neg. LLF: 130.33154693513166
Iteration: 2, Func. Count: 18, Neg. LLF: 135.16794369926905
Iteration: 3, Func. Count: 27, Neg. LLF: 121.37643168390262
Iteration: 4, Func. Count: 35, Neg. LLF: 122.5938458961452
Iteration: 5, Func. Count: 44, Neg. LLF: 143.12895326778977
Iteration: 6, Func. Count: 56, Neg. LLF: 128.64617418416216
Iteration: 7, Func. Count: 65, Neg. LLF: 124.0918842418746
Iteration: 8, Func. Count: 74, Neg. LLF: 120.34566676121352
Iteration: 9, Func. Count: 82, Neg. LLF: 120.11855265906678
Iteration: 10, Func. Count: 90, Neg. LLF: 120.11205922564196
Iteration: 11, Func. Count: 98, Neg. LLF: 120.10979466530523
Iteration: 12, Func. Count: 106, Neg. LLF: 120.10973584307305
Iteration: 13, Func. Count: 114, Neg. LLF: 120.10971637432459
Iteration: 14, Func. Count: 122, Neg. LLF: 120.10971581447461
Optimization terminated successfully (Exit mode 0)
Current function value: 120.10971581447461
Iterations: 14
Function evaluations: 122
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 128.58510970702352
Iteration: 2, Func. Count: 20, Neg. LLF: 135.10264331899603
Iteration: 3, Func. Count: 30, Neg. LLF: 121.26052713758415
Iteration: 4, Func. Count: 39, Neg. LLF: 122.4547699531903
Iteration: 5, Func. Count: 49, Neg. LLF: 147.23894998768344
Iteration: 6, Func. Count: 62, Neg. LLF: 129.54445760740953
Iteration: 7, Func. Count: 72, Neg. LLF: 124.35141977763398
Iteration: 8, Func. Count: 82, Neg. LLF: 120.3187886668237
Iteration: 9, Func. Count: 91, Neg. LLF: 120.11852582113467
Iteration: 10, Func. Count: 100, Neg. LLF: 120.11144056966525
Iteration: 11, Func. Count: 109, Neg. LLF: 120.10974018458867
Iteration: 12, Func. Count: 118, Neg. LLF: 120.10972418805852
Iteration: 13, Func. Count: 127, Neg. LLF: 120.10971586389668
Iteration: 14, Func. Count: 135, Neg. LLF: 120.10971591063098
Optimization terminated successfully (Exit mode 0)
Current function value: 120.10971586389668
Iterations: 14
Function evaluations: 135
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 127.06497447513797
Iteration: 2, Func. Count: 22, Neg. LLF: 134.62342142972076
Iteration: 3, Func. Count: 33, Neg. LLF: 121.13378864973404
Iteration: 4, Func. Count: 43, Neg. LLF: 122.34404037681887
Iteration: 5, Func. Count: 54, Neg. LLF: 146.58866982273955
Iteration: 6, Func. Count: 68, Neg. LLF: 124.77947655848267
Iteration: 7, Func. Count: 79, Neg. LLF: 121.21665044562782
Iteration: 8, Func. Count: 90, Neg. LLF: 120.12386431123547
Iteration: 9, Func. Count: 100, Neg. LLF: 120.11454664982462
Iteration: 10, Func. Count: 110, Neg. LLF: 120.10462175131788
Iteration: 11, Func. Count: 120, Neg. LLF: 120.10222716498174
Iteration: 12, Func. Count: 130, Neg. LLF: 120.10200694695675
Iteration: 13, Func. Count: 140, Neg. LLF: 120.10199947550807
Iteration: 14, Func. Count: 150, Neg. LLF: 120.10199868357188
Optimization terminated successfully (Exit mode 0)
Current function value: 120.10199868357188
Iterations: 14
Function evaluations: 150
Gradient evaluations: 14
Iteration: 1, Func. Count: 12, Neg. LLF: 130.61145929134216
Iteration: 2, Func. Count: 24, Neg. LLF: 130.52399195703566
Iteration: 3, Func. Count: 36, Neg. LLF: 122.7092848398185
Iteration: 4, Func. Count: 48, Neg. LLF: 138.44156374435667
Iteration: 5, Func. Count: 60, Neg. LLF: 123.86568259356986
Iteration: 6, Func. Count: 72, Neg. LLF: 120.1440014515554
Iteration: 7, Func. Count: 83, Neg. LLF: 120.15696071177922
Iteration: 8, Func. Count: 95, Neg. LLF: 120.11389045454442
Iteration: 9, Func. Count: 106, Neg. LLF: 120.10204372834816
Iteration: 10, Func. Count: 117, Neg. LLF: 120.10199896397974
Iteration: 11, Func. Count: 128, Neg. LLF: 120.10199823650838
Optimization terminated successfully (Exit mode 0)
Current function value: 120.10199823650838
Iterations: 11
Function evaluations: 128
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 131.72505030146763
Iteration: 2, Func. Count: 18, Neg. LLF: 173.76798989478925
Iteration: 3, Func. Count: 27, Neg. LLF: 121.42873128936499
Iteration: 4, Func. Count: 35, Neg. LLF: 129.4463974398579
Iteration: 5, Func. Count: 45, Neg. LLF: 129.39343187600863
Iteration: 6, Func. Count: 57, Neg. LLF: 123.67144089131465
Iteration: 7, Func. Count: 66, Neg. LLF: 120.7127296796211
Iteration: 8, Func. Count: 75, Neg. LLF: 120.32499256589801
Iteration: 9, Func. Count: 83, Neg. LLF: 120.06371148821646
Iteration: 10, Func. Count: 91, Neg. LLF: 120.00169311972036
Iteration: 11, Func. Count: 99, Neg. LLF: 119.99272408114474
Iteration: 12, Func. Count: 107, Neg. LLF: 119.99187415668446
Iteration: 13, Func. Count: 115, Neg. LLF: 119.99185933747992
Iteration: 14, Func. Count: 123, Neg. LLF: 119.99185635559427
Iteration: 15, Func. Count: 130, Neg. LLF: 119.9918563556167
Optimization terminated successfully (Exit mode 0)
Current function value: 119.99185635559427
Iterations: 15
Function evaluations: 130
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 130.5447051098929
Iteration: 2, Func. Count: 20, Neg. LLF: 128.49324542746962
Iteration: 3, Func. Count: 30, Neg. LLF: 122.3057664606797
Iteration: 4, Func. Count: 40, Neg. LLF: 127.28531742728424
Iteration: 5, Func. Count: 50, Neg. LLF: 133.49889528577043
Iteration: 6, Func. Count: 60, Neg. LLF: 120.50768355887517
Iteration: 7, Func. Count: 69, Neg. LLF: 120.15100993853358
Iteration: 8, Func. Count: 78, Neg. LLF: 121.66637715813364
Iteration: 9, Func. Count: 89, Neg. LLF: 120.0684779534256
Iteration: 10, Func. Count: 98, Neg. LLF: 120.00952917625976
Iteration: 11, Func. Count: 107, Neg. LLF: 120.00207526199814
Iteration: 12, Func. Count: 116, Neg. LLF: 119.99261634145897
Iteration: 13, Func. Count: 125, Neg. LLF: 119.99190510981288
Iteration: 14, Func. Count: 134, Neg. LLF: 119.9918564239421
Iteration: 15, Func. Count: 142, Neg. LLF: 119.99185643913384
Optimization terminated successfully (Exit mode 0)
Current function value: 119.9918564239421
Iterations: 15
Function evaluations: 142
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 128.80622043432183
Iteration: 2, Func. Count: 22, Neg. LLF: 125.7255455858105
Iteration: 3, Func. Count: 33, Neg. LLF: 123.7290576071467
Iteration: 4, Func. Count: 44, Neg. LLF: 125.64438532063437
Iteration: 5, Func. Count: 55, Neg. LLF: 136.93959157343136
Iteration: 6, Func. Count: 66, Neg. LLF: 120.58140707865726
Iteration: 7, Func. Count: 76, Neg. LLF: 120.5648823954307
Iteration: 8, Func. Count: 87, Neg. LLF: 122.86925128542134
Iteration: 9, Func. Count: 100, Neg. LLF: 120.14134558937829
Iteration: 10, Func. Count: 111, Neg. LLF: 120.00948304916118
Iteration: 11, Func. Count: 121, Neg. LLF: 119.9945514556513
Iteration: 12, Func. Count: 131, Neg. LLF: 119.99200743349455
Iteration: 13, Func. Count: 141, Neg. LLF: 119.99185822698047
Iteration: 14, Func. Count: 151, Neg. LLF: 119.99185640369342
Iteration: 15, Func. Count: 160, Neg. LLF: 119.99185644484147
Optimization terminated successfully (Exit mode 0)
Current function value: 119.99185640369342
Iterations: 15
Function evaluations: 160
Gradient evaluations: 15
Iteration: 1, Func. Count: 12, Neg. LLF: 127.28540589666846
Iteration: 2, Func. Count: 24, Neg. LLF: 125.09982961163283
Iteration: 3, Func. Count: 36, Neg. LLF: 126.17659416212881
Iteration: 4, Func. Count: 48, Neg. LLF: 123.46751898967345
Iteration: 5, Func. Count: 60, Neg. LLF: 233.80148755536987
Iteration: 6, Func. Count: 72, Neg. LLF: 121.57249914051006
Iteration: 7, Func. Count: 84, Neg. LLF: 121.60059578132609
Iteration: 8, Func. Count: 96, Neg. LLF: 120.73448931961026
Iteration: 9, Func. Count: 108, Neg. LLF: 120.21640056090824
Iteration: 10, Func. Count: 119, Neg. LLF: 120.36258456766475
Iteration: 11, Func. Count: 131, Neg. LLF: 120.22895540350383
Iteration: 12, Func. Count: 143, Neg. LLF: 120.01561491644664
Iteration: 13, Func. Count: 154, Neg. LLF: 119.99392627411275
Iteration: 14, Func. Count: 165, Neg. LLF: 119.99229354263443
Iteration: 15, Func. Count: 176, Neg. LLF: 119.99195121295739
Iteration: 16, Func. Count: 187, Neg. LLF: 119.99186479442331
Iteration: 17, Func. Count: 198, Neg. LLF: 119.99185635633911
Iteration: 18, Func. Count: 208, Neg. LLF: 119.9918563667049
Optimization terminated successfully (Exit mode 0)
Current function value: 119.99185635633911
Iterations: 18
Function evaluations: 208
Gradient evaluations: 18
Iteration: 1, Func. Count: 13, Neg. LLF: 130.79546767596048
Iteration: 2, Func. Count: 26, Neg. LLF: 130.53339000232037
Iteration: 3, Func. Count: 39, Neg. LLF: 122.71321463449966
Iteration: 4, Func. Count: 52, Neg. LLF: 216.32957528531364
Iteration: 5, Func. Count: 65, Neg. LLF: 849747.7329717522
Iteration: 6, Func. Count: 78, Neg. LLF: 120.07453391323763
Iteration: 7, Func. Count: 90, Neg. LLF: 120.50695640638159
Iteration: 8, Func. Count: 104, Neg. LLF: 120.10337049493195
Iteration: 9, Func. Count: 117, Neg. LLF: 119.99249117895859
Iteration: 10, Func. Count: 129, Neg. LLF: 119.99186978726402
Iteration: 11, Func. Count: 141, Neg. LLF: 119.99185712564982
Iteration: 12, Func. Count: 153, Neg. LLF: 119.9918563677745
Optimization terminated successfully (Exit mode 0)
Current function value: 119.9918563677745
Iterations: 12
Function evaluations: 153
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 133.4522687880958
Iteration: 2, Func. Count: 20, Neg. LLF: 174.3519849885932
Iteration: 3, Func. Count: 30, Neg. LLF: 121.8479120387338
Iteration: 4, Func. Count: 39, Neg. LLF: 133.60909657541748
Iteration: 5, Func. Count: 50, Neg. LLF: 141.28270725468607
Iteration: 6, Func. Count: 62, Neg. LLF: 120.9183124394935
Iteration: 7, Func. Count: 72, Neg. LLF: 121.07374778502194
Iteration: 8, Func. Count: 82, Neg. LLF: 120.09853741895746
Iteration: 9, Func. Count: 91, Neg. LLF: 120.01957974951729
Iteration: 10, Func. Count: 100, Neg. LLF: 120.00010888291516
Iteration: 11, Func. Count: 109, Neg. LLF: 119.99433877734009
Iteration: 12, Func. Count: 118, Neg. LLF: 119.99211827994964
Iteration: 13, Func. Count: 127, Neg. LLF: 119.99190841625877
Iteration: 14, Func. Count: 136, Neg. LLF: 119.99185762032548
Iteration: 15, Func. Count: 145, Neg. LLF: 119.9918564009536
Iteration: 16, Func. Count: 153, Neg. LLF: 119.99185644221315
Optimization terminated successfully (Exit mode 0)
Current function value: 119.9918564009536
Iterations: 16
Function evaluations: 153
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 130.34793549560374
Iteration: 2, Func. Count: 22, Neg. LLF: 128.03083376296877
Iteration: 3, Func. Count: 33, Neg. LLF: 122.37972606964709
Iteration: 4, Func. Count: 44, Neg. LLF: 127.96668785104413
Iteration: 5, Func. Count: 55, Neg. LLF: 131.80237266887633
Iteration: 6, Func. Count: 66, Neg. LLF: 120.52928476205383
Iteration: 7, Func. Count: 76, Neg. LLF: 120.16657209794388
Iteration: 8, Func. Count: 86, Neg. LLF: 121.8003210489063
Iteration: 9, Func. Count: 99, Neg. LLF: 120.07976677412034
Iteration: 10, Func. Count: 109, Neg. LLF: 120.00762613671968
Iteration: 11, Func. Count: 119, Neg. LLF: 119.99916146282574
Iteration: 12, Func. Count: 129, Neg. LLF: 119.99230662272589
Iteration: 13, Func. Count: 139, Neg. LLF: 119.99186161998443
Iteration: 14, Func. Count: 149, Neg. LLF: 119.99185637145138
Iteration: 15, Func. Count: 158, Neg. LLF: 119.99185638666633
Optimization terminated successfully (Exit mode 0)
Current function value: 119.99185637145138
Iterations: 15
Function evaluations: 158
Gradient evaluations: 15
Iteration: 1, Func. Count: 12, Neg. LLF: 128.94513721990967
Iteration: 2, Func. Count: 24, Neg. LLF: 125.89482594164159
Iteration: 3, Func. Count: 36, Neg. LLF: 123.68067954663162
Iteration: 4, Func. Count: 48, Neg. LLF: 132.2836986527395
Iteration: 5, Func. Count: 60, Neg. LLF: 132.7826204584045
Iteration: 6, Func. Count: 72, Neg. LLF: 120.80162440437138
Iteration: 7, Func. Count: 83, Neg. LLF: 120.84895424083186
Iteration: 8, Func. Count: 95, Neg. LLF: 123.64327210505951
Iteration: 9, Func. Count: 109, Neg. LLF: 121.77089861548396
Iteration: 10, Func. Count: 121, Neg. LLF: 120.07215393614902
Iteration: 11, Func. Count: 132, Neg. LLF: 120.00923523930881
Iteration: 12, Func. Count: 143, Neg. LLF: 119.99393211786347
Iteration: 13, Func. Count: 154, Neg. LLF: 119.99222641153989
Iteration: 14, Func. Count: 165, Neg. LLF: 119.99186040504983
Iteration: 15, Func. Count: 176, Neg. LLF: 119.99185641894832
Iteration: 16, Func. Count: 186, Neg. LLF: 119.99185646009211
Optimization terminated successfully (Exit mode 0)
Current function value: 119.99185641894832
Iterations: 16
Function evaluations: 186
Gradient evaluations: 16
Iteration: 1, Func. Count: 13, Neg. LLF: 127.14825707176352
Iteration: 2, Func. Count: 26, Neg. LLF: 124.985981982793
Iteration: 3, Func. Count: 39, Neg. LLF: 126.4569203724126
Iteration: 4, Func. Count: 52, Neg. LLF: 123.49683570456251
Iteration: 5, Func. Count: 65, Neg. LLF: 214.94731196539448
Iteration: 6, Func. Count: 78, Neg. LLF: 121.92532957733029
Iteration: 7, Func. Count: 91, Neg. LLF: 120.41836515400277
Iteration: 8, Func. Count: 103, Neg. LLF: 120.90741251560273
Iteration: 9, Func. Count: 116, Neg. LLF: 120.07837728581961
Iteration: 10, Func. Count: 128, Neg. LLF: 119.99679497906385
Iteration: 11, Func. Count: 140, Neg. LLF: 119.99244242294772
Iteration: 12, Func. Count: 152, Neg. LLF: 119.99204337753154
Iteration: 13, Func. Count: 164, Neg. LLF: 119.99186436132948
Iteration: 14, Func. Count: 176, Neg. LLF: 119.99185843086816
Iteration: 15, Func. Count: 188, Neg. LLF: 119.9918564301022
Iteration: 16, Func. Count: 199, Neg. LLF: 119.99185644047289
Optimization terminated successfully (Exit mode 0)
Current function value: 119.9918564301022
Iterations: 16
Function evaluations: 199
Gradient evaluations: 16
Iteration: 1, Func. Count: 14, Neg. LLF: 130.7182700126577
Iteration: 2, Func. Count: 28, Neg. LLF: 130.49977602002105
Iteration: 3, Func. Count: 42, Neg. LLF: 122.72085695562313
Iteration: 4, Func. Count: 56, Neg. LLF: 222.64803051170577
Iteration: 5, Func. Count: 70, Neg. LLF: 852059.0030173725
Iteration: 6, Func. Count: 84, Neg. LLF: 120.07394329778806
Iteration: 7, Func. Count: 97, Neg. LLF: 120.4751290824409
Iteration: 8, Func. Count: 112, Neg. LLF: 120.11483453100404
Iteration: 9, Func. Count: 126, Neg. LLF: 119.99248852660054
Iteration: 10, Func. Count: 139, Neg. LLF: 119.99187072784213
Iteration: 11, Func. Count: 152, Neg. LLF: 119.99185718759907
Iteration: 12, Func. Count: 165, Neg. LLF: 119.9918563713207
Optimization terminated successfully (Exit mode 0)
Current function value: 119.9918563713207
Iterations: 12
Function evaluations: 165
Gradient evaluations: 12
Iteration: 1, Func. Count: 7, Neg. LLF: 141.0358421380835
Iteration: 2, Func. Count: 14, Neg. LLF: 166.4747761654819
Iteration: 3, Func. Count: 21, Neg. LLF: 123.39346950148993
Iteration: 4, Func. Count: 27, Neg. LLF: 124.94492805837818
Iteration: 5, Func. Count: 34, Neg. LLF: 127.10860757102026
Iteration: 6, Func. Count: 41, Neg. LLF: 123.27405832462736
Iteration: 7, Func. Count: 47, Neg. LLF: 123.26984589731286
Iteration: 8, Func. Count: 53, Neg. LLF: 123.26845358336621
Iteration: 9, Func. Count: 59, Neg. LLF: 123.26822081824763
Iteration: 10, Func. Count: 65, Neg. LLF: 123.26820120233353
Iteration: 11, Func. Count: 71, Neg. LLF: 123.26819953452556
Iteration: 12, Func. Count: 76, Neg. LLF: 123.26819961699587
Optimization terminated successfully (Exit mode 0)
Current function value: 123.26819953452556
Iterations: 12
Function evaluations: 76
Gradient evaluations: 12
Iteration: 1, Func. Count: 8, Neg. LLF: 131.04092748231835
Iteration: 2, Func. Count: 16, Neg. LLF: 135.14693286483777
Iteration: 3, Func. Count: 24, Neg. LLF: 123.41835728714604
Iteration: 4, Func. Count: 31, Neg. LLF: 133.33054805535775
Iteration: 5, Func. Count: 40, Neg. LLF: 123.91751870819434
Iteration: 6, Func. Count: 48, Neg. LLF: 123.27380318351615
Iteration: 7, Func. Count: 55, Neg. LLF: 123.26885328917976
Iteration: 8, Func. Count: 62, Neg. LLF: 123.26828885153803
Iteration: 9, Func. Count: 69, Neg. LLF: 123.26820073173893
Iteration: 10, Func. Count: 76, Neg. LLF: 123.26819953651999
Iteration: 11, Func. Count: 82, Neg. LLF: 123.26819953918032
Optimization terminated successfully (Exit mode 0)
Current function value: 123.26819953651999
Iterations: 11
Function evaluations: 82
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 130.1518847774072
Iteration: 2, Func. Count: 18, Neg. LLF: 136.85865829705702
Iteration: 3, Func. Count: 27, Neg. LLF: 123.42752833857973
Iteration: 4, Func. Count: 35, Neg. LLF: 133.79139052455082
Iteration: 5, Func. Count: 45, Neg. LLF: 123.9525496074338
Iteration: 6, Func. Count: 54, Neg. LLF: 123.2742131930423
Iteration: 7, Func. Count: 62, Neg. LLF: 123.26895497406895
Iteration: 8, Func. Count: 70, Neg. LLF: 123.26832023596931
Iteration: 9, Func. Count: 78, Neg. LLF: 123.26820031620576
Iteration: 10, Func. Count: 86, Neg. LLF: 123.26819966154501
Optimization terminated successfully (Exit mode 0)
Current function value: 123.26819966154501
Iterations: 10
Function evaluations: 86
Gradient evaluations: 10
Iteration: 1, Func. Count: 10, Neg. LLF: 128.94731619407858
Iteration: 2, Func. Count: 20, Neg. LLF: 135.93855983835792
Iteration: 3, Func. Count: 30, Neg. LLF: 123.41231902970311
Iteration: 4, Func. Count: 39, Neg. LLF: 206.4714098326378
Iteration: 5, Func. Count: 50, Neg. LLF: 123.64976722211091
Iteration: 6, Func. Count: 60, Neg. LLF: 123.27167093029027
Iteration: 7, Func. Count: 69, Neg. LLF: 123.26852411953509
Iteration: 8, Func. Count: 78, Neg. LLF: 123.26824196257694
Iteration: 9, Func. Count: 87, Neg. LLF: 123.26819970687669
Iteration: 10, Func. Count: 95, Neg. LLF: 123.26819974521712
Optimization terminated successfully (Exit mode 0)
Current function value: 123.26819970687669
Iterations: 10
Function evaluations: 95
Gradient evaluations: 10
Iteration: 1, Func. Count: 11, Neg. LLF: 128.62154164131766
Iteration: 2, Func. Count: 22, Neg. LLF: 135.63986688146963
Iteration: 3, Func. Count: 33, Neg. LLF: 123.40602247344691
Iteration: 4, Func. Count: 43, Neg. LLF: 307.0255374279386
Iteration: 5, Func. Count: 55, Neg. LLF: 124.97513222542025
Iteration: 6, Func. Count: 67, Neg. LLF: 123.74200044150165
Iteration: 7, Func. Count: 78, Neg. LLF: 123.19984925953223
Iteration: 8, Func. Count: 88, Neg. LLF: 123.18406004322324
Iteration: 9, Func. Count: 98, Neg. LLF: 123.17422859880602
Iteration: 10, Func. Count: 108, Neg. LLF: 123.17312004815969
Iteration: 11, Func. Count: 118, Neg. LLF: 123.17276002550747
Iteration: 12, Func. Count: 128, Neg. LLF: 123.17274989920705
Iteration: 13, Func. Count: 138, Neg. LLF: 123.17274753066191
Iteration: 14, Func. Count: 147, Neg. LLF: 123.172747530685
Optimization terminated successfully (Exit mode 0)
Current function value: 123.17274753066191
Iterations: 14
Function evaluations: 147
Gradient evaluations: 14
Iteration: 1, Func. Count: 8, Neg. LLF: 141.35777260013174
Iteration: 2, Func. Count: 16, Neg. LLF: 174.71454834541348
Iteration: 3, Func. Count: 24, Neg. LLF: 121.77513932037913
Iteration: 4, Func. Count: 31, Neg. LLF: 128.13739065642088
Iteration: 5, Func. Count: 40, Neg. LLF: 131.2912634427738
Iteration: 6, Func. Count: 49, Neg. LLF: 120.93657076087455
Iteration: 7, Func. Count: 57, Neg. LLF: 120.55275448083788
Iteration: 8, Func. Count: 64, Neg. LLF: 120.54355224941185
Iteration: 9, Func. Count: 72, Neg. LLF: 120.39566192736996
Iteration: 10, Func. Count: 80, Neg. LLF: 120.14995605149628
Iteration: 11, Func. Count: 87, Neg. LLF: 120.12034138287156
Iteration: 12, Func. Count: 94, Neg. LLF: 120.11928899058785
Iteration: 13, Func. Count: 101, Neg. LLF: 120.11915238207821
Iteration: 14, Func. Count: 108, Neg. LLF: 120.11914688670058
Iteration: 15, Func. Count: 115, Neg. LLF: 120.11914606471338
Optimization terminated successfully (Exit mode 0)
Current function value: 120.11914606471338
Iterations: 15
Function evaluations: 115
Gradient evaluations: 15
Iteration: 1, Func. Count: 9, Neg. LLF: 131.33775756674308
Iteration: 2, Func. Count: 18, Neg. LLF: 135.75299503527927
Iteration: 3, Func. Count: 27, Neg. LLF: 121.46777764079896
Iteration: 4, Func. Count: 35, Neg. LLF: 123.50476257236737
Iteration: 5, Func. Count: 45, Neg. LLF: 134.68737468340967
Iteration: 6, Func. Count: 55, Neg. LLF: 120.79620022815048
Iteration: 7, Func. Count: 64, Neg. LLF: 121.30800286915391
Iteration: 8, Func. Count: 73, Neg. LLF: 120.2080140224654
Iteration: 9, Func. Count: 81, Neg. LLF: 120.13830725208945
Iteration: 10, Func. Count: 89, Neg. LLF: 120.1215833148657
Iteration: 11, Func. Count: 97, Neg. LLF: 120.1192394379896
Iteration: 12, Func. Count: 105, Neg. LLF: 120.11915460399823
Iteration: 13, Func. Count: 113, Neg. LLF: 120.11914624228744
Iteration: 14, Func. Count: 120, Neg. LLF: 120.11914626669872
Optimization terminated successfully (Exit mode 0)
Current function value: 120.11914624228744
Iterations: 14
Function evaluations: 120
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 131.42988576684468
Iteration: 2, Func. Count: 20, Neg. LLF: 135.4272567405891
Iteration: 3, Func. Count: 30, Neg. LLF: 121.6387545619841
Iteration: 4, Func. Count: 39, Neg. LLF: 126.87610170511599
Iteration: 5, Func. Count: 50, Neg. LLF: 132.94741110260077
Iteration: 6, Func. Count: 62, Neg. LLF: 121.08203688358951
Iteration: 7, Func. Count: 72, Neg. LLF: 120.53284361398323
Iteration: 8, Func. Count: 81, Neg. LLF: 120.16590161013823
Iteration: 9, Func. Count: 90, Neg. LLF: 120.12734706666406
Iteration: 10, Func. Count: 99, Neg. LLF: 120.11957745927073
Iteration: 11, Func. Count: 108, Neg. LLF: 120.1191636361718
Iteration: 12, Func. Count: 117, Neg. LLF: 120.11914931362043
Iteration: 13, Func. Count: 126, Neg. LLF: 120.11914612300748
Iteration: 14, Func. Count: 134, Neg. LLF: 120.11914616455948
Optimization terminated successfully (Exit mode 0)
Current function value: 120.11914612300748
Iterations: 14
Function evaluations: 134
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 134.07924418015548
Iteration: 2, Func. Count: 22, Neg. LLF: 131.55122146108965
Iteration: 3, Func. Count: 33, Neg. LLF: 122.69077072749062
Iteration: 4, Func. Count: 44, Neg. LLF: 128.6166531850131
Iteration: 5, Func. Count: 55, Neg. LLF: 123.22762618749445
Iteration: 6, Func. Count: 66, Neg. LLF: 120.37654745749252
Iteration: 7, Func. Count: 76, Neg. LLF: 120.1553628501449
Iteration: 8, Func. Count: 86, Neg. LLF: 120.12907521099619
Iteration: 9, Func. Count: 96, Neg. LLF: 120.12007892655394
Iteration: 10, Func. Count: 106, Neg. LLF: 120.1191644271916
Iteration: 11, Func. Count: 116, Neg. LLF: 120.11914770158795
Iteration: 12, Func. Count: 126, Neg. LLF: 120.1191461195132
Iteration: 13, Func. Count: 135, Neg. LLF: 120.1191461291518
Optimization terminated successfully (Exit mode 0)
Current function value: 120.1191461195132
Iterations: 13
Function evaluations: 135
Gradient evaluations: 13
Iteration: 1, Func. Count: 12, Neg. LLF: 133.88228753140416
Iteration: 2, Func. Count: 24, Neg. LLF: 131.72106944688736
Iteration: 3, Func. Count: 36, Neg. LLF: 122.58047092455908
Iteration: 4, Func. Count: 48, Neg. LLF: 133.08931466862845
Iteration: 5, Func. Count: 60, Neg. LLF: 123.96543844307483
Iteration: 6, Func. Count: 72, Neg. LLF: 120.41138997849296
Iteration: 7, Func. Count: 83, Neg. LLF: 120.13491870958384
Iteration: 8, Func. Count: 94, Neg. LLF: 120.12535099959632
Iteration: 9, Func. Count: 105, Neg. LLF: 120.11946331814637
Iteration: 10, Func. Count: 116, Neg. LLF: 120.11920017240374
Iteration: 11, Func. Count: 127, Neg. LLF: 120.11914731203993
Iteration: 12, Func. Count: 138, Neg. LLF: 120.11914613449098
Iteration: 13, Func. Count: 148, Neg. LLF: 120.11914619172813
Optimization terminated successfully (Exit mode 0)
Current function value: 120.11914613449098
Iterations: 13
Function evaluations: 148
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 140.76919223056922
Iteration: 2, Func. Count: 18, Neg. LLF: 175.4911336485114
Iteration: 3, Func. Count: 27, Neg. LLF: 122.1154114229634
Iteration: 4, Func. Count: 35, Neg. LLF: 132.77670909872705
Iteration: 5, Func. Count: 45, Neg. LLF: 147.93673011305995
Iteration: 6, Func. Count: 56, Neg. LLF: 122.42891211850731
Iteration: 7, Func. Count: 65, Neg. LLF: 122.00991351201839
Iteration: 8, Func. Count: 75, Neg. LLF: 120.3122338476049
Iteration: 9, Func. Count: 83, Neg. LLF: 120.07313684043994
Iteration: 10, Func. Count: 91, Neg. LLF: 120.0670460339267
Iteration: 11, Func. Count: 99, Neg. LLF: 120.06659163261868
Iteration: 12, Func. Count: 107, Neg. LLF: 120.06610945882248
Iteration: 13, Func. Count: 115, Neg. LLF: 120.06596161267511
Iteration: 14, Func. Count: 123, Neg. LLF: 120.06594799995851
Iteration: 15, Func. Count: 131, Neg. LLF: 120.06594730062771
Optimization terminated successfully (Exit mode 0)
Current function value: 120.06594730062771
Iterations: 15
Function evaluations: 131
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 131.18857730506986
Iteration: 2, Func. Count: 20, Neg. LLF: 135.96715777481649
Iteration: 3, Func. Count: 30, Neg. LLF: 121.46156076580985
Iteration: 4, Func. Count: 39, Neg. LLF: 124.09947020811981
Iteration: 5, Func. Count: 50, Neg. LLF: 140.21785640768942
Iteration: 6, Func. Count: 63, Neg. LLF: 121.04306327772551
Iteration: 7, Func. Count: 73, Neg. LLF: 122.28828324682281
Iteration: 8, Func. Count: 83, Neg. LLF: 120.2352889063825
Iteration: 9, Func. Count: 92, Neg. LLF: 120.2040011804714
Iteration: 10, Func. Count: 102, Neg. LLF: 120.06828797825428
Iteration: 11, Func. Count: 111, Neg. LLF: 120.06697323147328
Iteration: 12, Func. Count: 120, Neg. LLF: 120.0663674125797
Iteration: 13, Func. Count: 129, Neg. LLF: 120.06606263557228
Iteration: 14, Func. Count: 138, Neg. LLF: 120.06594959918277
Iteration: 15, Func. Count: 147, Neg. LLF: 120.06594731177309
Iteration: 16, Func. Count: 155, Neg. LLF: 120.06594732461359
Optimization terminated successfully (Exit mode 0)
Current function value: 120.06594731177309
Iterations: 16
Function evaluations: 155
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 131.02071723916066
Iteration: 2, Func. Count: 22, Neg. LLF: 135.5677710247183
Iteration: 3, Func. Count: 33, Neg. LLF: 121.61859239517253
Iteration: 4, Func. Count: 43, Neg. LLF: 126.43040387544721
Iteration: 5, Func. Count: 55, Neg. LLF: 144.81128510742622
Iteration: 6, Func. Count: 69, Neg. LLF: 121.43322960639922
Iteration: 7, Func. Count: 80, Neg. LLF: 142.3492406110979
Iteration: 8, Func. Count: 92, Neg. LLF: 120.27499640092933
Iteration: 9, Func. Count: 102, Neg. LLF: 120.13445009256145
Iteration: 10, Func. Count: 112, Neg. LLF: 120.11997339060608
Iteration: 11, Func. Count: 122, Neg. LLF: 120.2555983925265
Iteration: 12, Func. Count: 133, Neg. LLF: 120.06841515262366
Iteration: 13, Func. Count: 143, Neg. LLF: 120.06648710723265
Iteration: 14, Func. Count: 153, Neg. LLF: 120.06611715896165
Iteration: 15, Func. Count: 163, Neg. LLF: 120.06596738812698
Iteration: 16, Func. Count: 173, Neg. LLF: 120.06594889342053
Iteration: 17, Func. Count: 183, Neg. LLF: 120.06594732588732
Iteration: 18, Func. Count: 192, Neg. LLF: 120.06594737004633
Optimization terminated successfully (Exit mode 0)
Current function value: 120.06594732588732
Iterations: 18
Function evaluations: 192
Gradient evaluations: 18
Iteration: 1, Func. Count: 12, Neg. LLF: 133.5890103265572
Iteration: 2, Func. Count: 24, Neg. LLF: 131.61213287944793
Iteration: 3, Func. Count: 36, Neg. LLF: 122.66291300047098
Iteration: 4, Func. Count: 48, Neg. LLF: 137.84316842876873
Iteration: 5, Func. Count: 60, Neg. LLF: 124.29894651189836
Iteration: 6, Func. Count: 72, Neg. LLF: 120.36438366384401
Iteration: 7, Func. Count: 83, Neg. LLF: 120.10842401416951
Iteration: 8, Func. Count: 94, Neg. LLF: 120.08022409484411
Iteration: 9, Func. Count: 105, Neg. LLF: 120.06739757882474
Iteration: 10, Func. Count: 116, Neg. LLF: 120.06603167947371
Iteration: 11, Func. Count: 127, Neg. LLF: 120.06594757983113
Iteration: 12, Func. Count: 137, Neg. LLF: 120.06594758544676
Optimization terminated successfully (Exit mode 0)
Current function value: 120.06594757983113
Iterations: 12
Function evaluations: 137
Gradient evaluations: 12
Iteration: 1, Func. Count: 13, Neg. LLF: 133.57758285160835
Iteration: 2, Func. Count: 26, Neg. LLF: 131.78016228695597
Iteration: 3, Func. Count: 39, Neg. LLF: 122.59703211752814
Iteration: 4, Func. Count: 52, Neg. LLF: 152.48971438721495
Iteration: 5, Func. Count: 65, Neg. LLF: 125.15167958575168
Iteration: 6, Func. Count: 78, Neg. LLF: 120.4996373535028
Iteration: 7, Func. Count: 90, Neg. LLF: 120.09108549226409
Iteration: 8, Func. Count: 102, Neg. LLF: 120.07078115496988
Iteration: 9, Func. Count: 114, Neg. LLF: 120.06642691308888
Iteration: 10, Func. Count: 126, Neg. LLF: 120.06599888036843
Iteration: 11, Func. Count: 138, Neg. LLF: 120.06594779824444
Iteration: 12, Func. Count: 150, Neg. LLF: 120.06594730234603
Optimization terminated successfully (Exit mode 0)
Current function value: 120.06594730234603
Iterations: 12
Function evaluations: 150
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 145.34244464012698
Iteration: 2, Func. Count: 21, Neg. LLF: 166.0858953341457
Iteration: 3, Func. Count: 31, Neg. LLF: 122.4852014716448
Iteration: 4, Func. Count: 40, Neg. LLF: 198.72062258998713
Iteration: 5, Func. Count: 50, Neg. LLF: 134.07196722513666
Iteration: 6, Func. Count: 62, Neg. LLF: 121.97395181313917
Iteration: 7, Func. Count: 72, Neg. LLF: 127.3569698154922
Iteration: 8, Func. Count: 82, Neg. LLF: 122.5588970278979
Iteration: 9, Func. Count: 92, Neg. LLF: 120.42634945451944
Iteration: 10, Func. Count: 101, Neg. LLF: 120.18523175302273
Iteration: 11, Func. Count: 110, Neg. LLF: 120.22365187168394
Iteration: 12, Func. Count: 120, Neg. LLF: 120.0217821856754
Iteration: 13, Func. Count: 129, Neg. LLF: 119.99701004678144
Iteration: 14, Func. Count: 138, Neg. LLF: 119.99333019540936
Iteration: 15, Func. Count: 147, Neg. LLF: 119.99198886666554
Iteration: 16, Func. Count: 156, Neg. LLF: 119.9918663705288
Iteration: 17, Func. Count: 165, Neg. LLF: 119.99185663193322
Iteration: 18, Func. Count: 173, Neg. LLF: 119.99185663184397
Optimization terminated successfully (Exit mode 0)
Current function value: 119.99185663193322
Iterations: 18
Function evaluations: 173
Gradient evaluations: 18
Iteration: 1, Func. Count: 11, Neg. LLF: 131.5070564807648
Iteration: 2, Func. Count: 22, Neg. LLF: 135.6084092195569
Iteration: 3, Func. Count: 33, Neg. LLF: 121.43249492406355
Iteration: 4, Func. Count: 43, Neg. LLF: 123.72679284313035
Iteration: 5, Func. Count: 55, Neg. LLF: 140.0596838903345
Iteration: 6, Func. Count: 69, Neg. LLF: 123.56505955824879
Iteration: 7, Func. Count: 82, Neg. LLF: 124.03815543044728
Iteration: 8, Func. Count: 93, Neg. LLF: 120.6020986017782
Iteration: 9, Func. Count: 104, Neg. LLF: 120.03769976409043
Iteration: 10, Func. Count: 114, Neg. LLF: 120.03330440408502
Iteration: 11, Func. Count: 125, Neg. LLF: 119.99263334213171
Iteration: 12, Func. Count: 135, Neg. LLF: 119.99220631383362
Iteration: 13, Func. Count: 145, Neg. LLF: 119.9919115215429
Iteration: 14, Func. Count: 155, Neg. LLF: 119.9918634166738
Iteration: 15, Func. Count: 165, Neg. LLF: 119.99185650422818
Iteration: 16, Func. Count: 174, Neg. LLF: 119.99185651950009
Optimization terminated successfully (Exit mode 0)
Current function value: 119.99185650422818
Iterations: 16
Function evaluations: 174
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 131.35369622231647
Iteration: 2, Func. Count: 24, Neg. LLF: 135.3485789738332
Iteration: 3, Func. Count: 36, Neg. LLF: 121.56306921932776
Iteration: 4, Func. Count: 47, Neg. LLF: 125.91518350849907
Iteration: 5, Func. Count: 60, Neg. LLF: 143.98772962392755
Iteration: 6, Func. Count: 74, Neg. LLF: 128.04387418587262
Iteration: 7, Func. Count: 89, Neg. LLF: 124.117932585836
Iteration: 8, Func. Count: 101, Neg. LLF: 122.16821691823979
Iteration: 9, Func. Count: 113, Neg. LLF: 120.16609102032655
Iteration: 10, Func. Count: 124, Neg. LLF: 120.03290388797836
Iteration: 11, Func. Count: 135, Neg. LLF: 119.99754529044984
Iteration: 12, Func. Count: 146, Neg. LLF: 119.99233523791686
Iteration: 13, Func. Count: 157, Neg. LLF: 119.99187010487984
Iteration: 14, Func. Count: 168, Neg. LLF: 119.99186147291117
Iteration: 15, Func. Count: 179, Neg. LLF: 119.99185659828443
Iteration: 16, Func. Count: 189, Neg. LLF: 119.99185663945381
Optimization terminated successfully (Exit mode 0)
Current function value: 119.99185659828443
Iterations: 16
Function evaluations: 189
Gradient evaluations: 16
Iteration: 1, Func. Count: 13, Neg. LLF: 133.50922133422762
Iteration: 2, Func. Count: 26, Neg. LLF: 131.5916536132091
Iteration: 3, Func. Count: 39, Neg. LLF: 122.39079057965205
Iteration: 4, Func. Count: 52, Neg. LLF: 137.22564774172173
Iteration: 5, Func. Count: 65, Neg. LLF: 120.67686701856151
Iteration: 6, Func. Count: 78, Neg. LLF: 120.61468733733228
Iteration: 7, Func. Count: 91, Neg. LLF: 120.09773708293157
Iteration: 8, Func. Count: 103, Neg. LLF: 119.99442577559218
Iteration: 9, Func. Count: 115, Neg. LLF: 119.9930064523547
Iteration: 10, Func. Count: 127, Neg. LLF: 119.9918601658343
Iteration: 11, Func. Count: 139, Neg. LLF: 119.99185667430825
Iteration: 12, Func. Count: 150, Neg. LLF: 119.99185668472272
Optimization terminated successfully (Exit mode 0)
Current function value: 119.99185667430825
Iterations: 12
Function evaluations: 150
Gradient evaluations: 12
Iteration: 1, Func. Count: 14, Neg. LLF: 132.645126315654
Iteration: 2, Func. Count: 28, Neg. LLF: 131.5057186196493
Iteration: 3, Func. Count: 42, Neg. LLF: 121.88617223003841
Iteration: 4, Func. Count: 56, Neg. LLF: 127.86506792707763
Iteration: 5, Func. Count: 70, Neg. LLF: 120.65040629653731
Iteration: 6, Func. Count: 84, Neg. LLF: 120.22675412314365
Iteration: 7, Func. Count: 97, Neg. LLF: 120.19185689059874
Iteration: 8, Func. Count: 111, Neg. LLF: 120.29357829592483
Iteration: 9, Func. Count: 125, Neg. LLF: 119.9934177438247
Iteration: 10, Func. Count: 138, Neg. LLF: 119.99191987680466
Iteration: 11, Func. Count: 151, Neg. LLF: 119.9918578660819
Iteration: 12, Func. Count: 164, Neg. LLF: 119.99185642139452
Iteration: 13, Func. Count: 176, Neg. LLF: 119.99185647975112
Optimization terminated successfully (Exit mode 0)
Current function value: 119.99185642139452
Iterations: 13
Function evaluations: 176
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 145.192109900616
Iteration: 2, Func. Count: 23, Neg. LLF: 165.8963797624017
Iteration: 3, Func. Count: 34, Neg. LLF: 122.48588309820228
Iteration: 4, Func. Count: 44, Neg. LLF: 201.19634286425867
Iteration: 5, Func. Count: 55, Neg. LLF: 134.26349994680342
Iteration: 6, Func. Count: 68, Neg. LLF: 123.16012625992884
Iteration: 7, Func. Count: 80, Neg. LLF: 121.15654605378569
Iteration: 8, Func. Count: 90, Neg. LLF: 122.20346049764666
Iteration: 9, Func. Count: 101, Neg. LLF: 120.50757733657105
Iteration: 10, Func. Count: 111, Neg. LLF: 120.0885624348154
Iteration: 11, Func. Count: 121, Neg. LLF: 120.0500679404563
Iteration: 12, Func. Count: 131, Neg. LLF: 120.04256132925204
Iteration: 13, Func. Count: 142, Neg. LLF: 119.99334731073733
Iteration: 14, Func. Count: 152, Neg. LLF: 119.99203827877997
Iteration: 15, Func. Count: 162, Neg. LLF: 119.99187558278796
Iteration: 16, Func. Count: 172, Neg. LLF: 119.99185949748333
Iteration: 17, Func. Count: 182, Neg. LLF: 119.99185643184471
Iteration: 18, Func. Count: 191, Neg. LLF: 119.99185647310651
Optimization terminated successfully (Exit mode 0)
Current function value: 119.99185643184471
Iterations: 18
Function evaluations: 191
Gradient evaluations: 18
Iteration: 1, Func. Count: 12, Neg. LLF: 124.74028598308062
Iteration: 2, Func. Count: 23, Neg. LLF: 123.13267240691641
Iteration: 3, Func. Count: 35, Neg. LLF: 160.90980913095902
Iteration: 4, Func. Count: 49, Neg. LLF: 155.59005813586708
Iteration: 5, Func. Count: 61, Neg. LLF: 121.0595760481704
Iteration: 6, Func. Count: 72, Neg. LLF: 120.71918945646131
Iteration: 7, Func. Count: 83, Neg. LLF: 120.47538991925929
Iteration: 8, Func. Count: 94, Neg. LLF: 120.37400612628277
Iteration: 9, Func. Count: 105, Neg. LLF: 120.05952545659171
Iteration: 10, Func. Count: 116, Neg. LLF: 120.05160157193774
Iteration: 11, Func. Count: 128, Neg. LLF: 119.99263435628303
Iteration: 12, Func. Count: 139, Neg. LLF: 119.99191131421593
Iteration: 13, Func. Count: 150, Neg. LLF: 119.99185997240431
Iteration: 14, Func. Count: 161, Neg. LLF: 119.9918564049218
Iteration: 15, Func. Count: 171, Neg. LLF: 119.99185642015993
Optimization terminated successfully (Exit mode 0)
Current function value: 119.9918564049218
Iterations: 15
Function evaluations: 171
Gradient evaluations: 15
Iteration: 1, Func. Count: 13, Neg. LLF: 131.01382444338174
Iteration: 2, Func. Count: 26, Neg. LLF: 135.52196077486232
Iteration: 3, Func. Count: 39, Neg. LLF: 121.54329100920755
Iteration: 4, Func. Count: 51, Neg. LLF: 125.3384611704151
Iteration: 5, Func. Count: 65, Neg. LLF: 144.90236495996427
Iteration: 6, Func. Count: 80, Neg. LLF: 127.25964885175614
Iteration: 7, Func. Count: 96, Neg. LLF: 124.54403493113712
Iteration: 8, Func. Count: 109, Neg. LLF: 122.12936408624202
Iteration: 9, Func. Count: 122, Neg. LLF: 120.16980227141013
Iteration: 10, Func. Count: 134, Neg. LLF: 120.03223600209832
Iteration: 11, Func. Count: 146, Neg. LLF: 119.9948994482162
Iteration: 12, Func. Count: 158, Neg. LLF: 119.99218235871312
Iteration: 13, Func. Count: 170, Neg. LLF: 119.99187312553599
Iteration: 14, Func. Count: 182, Neg. LLF: 119.99186304767346
Iteration: 15, Func. Count: 194, Neg. LLF: 119.9918564927484
Iteration: 16, Func. Count: 205, Neg. LLF: 119.99185653390086
Optimization terminated successfully (Exit mode 0)
Current function value: 119.9918564927484
Iterations: 16
Function evaluations: 205
Gradient evaluations: 16
Iteration: 1, Func. Count: 14, Neg. LLF: 132.93169757989534
Iteration: 2, Func. Count: 28, Neg. LLF: 131.63170504029205
Iteration: 3, Func. Count: 42, Neg. LLF: 122.27398777017794
Iteration: 4, Func. Count: 56, Neg. LLF: 134.47937515349088
Iteration: 5, Func. Count: 70, Neg. LLF: 120.6234952897505
Iteration: 6, Func. Count: 84, Neg. LLF: 120.59707923090582
Iteration: 7, Func. Count: 98, Neg. LLF: 120.15677883882681
Iteration: 8, Func. Count: 111, Neg. LLF: 119.99416684444171
Iteration: 9, Func. Count: 124, Neg. LLF: 119.99266922484348
Iteration: 10, Func. Count: 137, Neg. LLF: 119.99187081027944
Iteration: 11, Func. Count: 150, Neg. LLF: 119.99185882681459
Iteration: 12, Func. Count: 163, Neg. LLF: 119.99185634129422
Iteration: 13, Func. Count: 175, Neg. LLF: 119.99185635164812
Optimization terminated successfully (Exit mode 0)
Current function value: 119.99185634129422
Iterations: 13
Function evaluations: 175
Gradient evaluations: 13
Iteration: 1, Func. Count: 15, Neg. LLF: 132.59018395239244
Iteration: 2, Func. Count: 30, Neg. LLF: 131.49083945524734
Iteration: 3, Func. Count: 45, Neg. LLF: 121.88568719037572
Iteration: 4, Func. Count: 60, Neg. LLF: 127.93521713973682
Iteration: 5, Func. Count: 75, Neg. LLF: 120.66612778603603
Iteration: 6, Func. Count: 90, Neg. LLF: 120.22851002303939
Iteration: 7, Func. Count: 104, Neg. LLF: 120.04345653416263
Iteration: 8, Func. Count: 118, Neg. LLF: 120.08055945991984
Iteration: 9, Func. Count: 133, Neg. LLF: 119.99259122468047
Iteration: 10, Func. Count: 147, Neg. LLF: 119.99186355389885
Iteration: 11, Func. Count: 161, Neg. LLF: 119.9918566789308
Iteration: 12, Func. Count: 174, Neg. LLF: 119.9918567372819
Optimization terminated successfully (Exit mode 0)
Current function value: 119.9918566789308
Iterations: 12
Function evaluations: 174
Gradient evaluations: 12
Iteration: 1, Func. Count: 8, Neg. LLF: 135.42986554136738
Iteration: 2, Func. Count: 16, Neg. LLF: 185.42090821531315
Iteration: 3, Func. Count: 24, Neg. LLF: 123.52840094779262
Iteration: 4, Func. Count: 31, Neg. LLF: 125.10453165490367
Iteration: 5, Func. Count: 40, Neg. LLF: 131.86073730743524
Iteration: 6, Func. Count: 49, Neg. LLF: 123.27318144644143
Iteration: 7, Func. Count: 56, Neg. LLF: 123.27030434789603
Iteration: 8, Func. Count: 63, Neg. LLF: 123.26848577675659
Iteration: 9, Func. Count: 70, Neg. LLF: 123.26822412689168
Iteration: 10, Func. Count: 77, Neg. LLF: 123.26820037915316
Iteration: 11, Func. Count: 84, Neg. LLF: 123.26819958896779
Optimization terminated successfully (Exit mode 0)
Current function value: 123.26819958896779
Iterations: 11
Function evaluations: 84
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 123.94852841851969
Iteration: 2, Func. Count: 17, Neg. LLF: 127.53446462948702
Iteration: 3, Func. Count: 27, Neg. LLF: 135.9526619831078
Iteration: 4, Func. Count: 36, Neg. LLF: 126.35474133508251
Iteration: 5, Func. Count: 45, Neg. LLF: 123.46082827768168
Iteration: 6, Func. Count: 54, Neg. LLF: 123.27429563106729
Iteration: 7, Func. Count: 62, Neg. LLF: 123.26899757456164
Iteration: 8, Func. Count: 70, Neg. LLF: 123.26873689772424
Iteration: 9, Func. Count: 78, Neg. LLF: 123.26824738560433
Iteration: 10, Func. Count: 86, Neg. LLF: 123.26820531533403
Iteration: 11, Func. Count: 94, Neg. LLF: 123.2681996284699
Iteration: 12, Func. Count: 101, Neg. LLF: 123.26819963112698
Optimization terminated successfully (Exit mode 0)
Current function value: 123.2681996284699
Iterations: 12
Function evaluations: 101
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 123.83303042449703
Iteration: 2, Func. Count: 19, Neg. LLF: 125.88000425849357
Iteration: 3, Func. Count: 30, Neg. LLF: 134.44879294789004
Iteration: 4, Func. Count: 40, Neg. LLF: 125.88374494461074
Iteration: 5, Func. Count: 50, Neg. LLF: 123.42079813313768
Iteration: 6, Func. Count: 60, Neg. LLF: 123.27497761178044
Iteration: 7, Func. Count: 69, Neg. LLF: 123.26925978556642
Iteration: 8, Func. Count: 78, Neg. LLF: 123.27038265036927
Iteration: 9, Func. Count: 88, Neg. LLF: 123.26829320793519
Iteration: 10, Func. Count: 97, Neg. LLF: 123.26819954532981
Iteration: 11, Func. Count: 105, Neg. LLF: 123.26819960440722
Optimization terminated successfully (Exit mode 0)
Current function value: 123.26819954532981
Iterations: 11
Function evaluations: 105
Gradient evaluations: 11
Iteration: 1, Func. Count: 11, Neg. LLF: 123.76084001996414
Iteration: 2, Func. Count: 21, Neg. LLF: 126.10928037203803
Iteration: 3, Func. Count: 33, Neg. LLF: 134.16744842586925
Iteration: 4, Func. Count: 44, Neg. LLF: 124.29495337893583
Iteration: 5, Func. Count: 55, Neg. LLF: 124.69854993940608
Iteration: 6, Func. Count: 66, Neg. LLF: 123.28375443899345
Iteration: 7, Func. Count: 76, Neg. LLF: 123.27213434914898
Iteration: 8, Func. Count: 86, Neg. LLF: 123.26929116968368
Iteration: 9, Func. Count: 96, Neg. LLF: 123.26852629961881
Iteration: 10, Func. Count: 106, Neg. LLF: 123.26822585249106
Iteration: 11, Func. Count: 116, Neg. LLF: 123.26819978517703
Iteration: 12, Func. Count: 125, Neg. LLF: 123.26819982344013
Optimization terminated successfully (Exit mode 0)
Current function value: 123.26819978517703
Iterations: 12
Function evaluations: 125
Gradient evaluations: 12
Iteration: 1, Func. Count: 12, Neg. LLF: 123.71457897481399
Iteration: 2, Func. Count: 23, Neg. LLF: 126.90526276160602
Iteration: 3, Func. Count: 36, Neg. LLF: 134.67105503483813
Iteration: 4, Func. Count: 48, Neg. LLF: 142.57949036860572
Iteration: 5, Func. Count: 60, Neg. LLF: 123.47170534877426
Iteration: 6, Func. Count: 72, Neg. LLF: 125.28968240365812
Iteration: 7, Func. Count: 84, Neg. LLF: 123.17670624911514
Iteration: 8, Func. Count: 95, Neg. LLF: 123.17301058743286
Iteration: 9, Func. Count: 106, Neg. LLF: 123.17276781696515
Iteration: 10, Func. Count: 117, Neg. LLF: 123.17274865082621
Iteration: 11, Func. Count: 128, Neg. LLF: 123.17274754202565
Iteration: 12, Func. Count: 138, Neg. LLF: 123.17274754202651
Optimization terminated successfully (Exit mode 0)
Current function value: 123.17274754202565
Iterations: 12
Function evaluations: 138
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 136.51118806732973
Iteration: 2, Func. Count: 18, Neg. LLF: 190.2809847509813
Iteration: 3, Func. Count: 27, Neg. LLF: 121.99604743875743
Iteration: 4, Func. Count: 35, Neg. LLF: 134.54799882626318
Iteration: 5, Func. Count: 45, Neg. LLF: 135.427384358705
Iteration: 6, Func. Count: 56, Neg. LLF: 120.96425603799837
Iteration: 7, Func. Count: 65, Neg. LLF: 121.79208370032146
Iteration: 8, Func. Count: 74, Neg. LLF: 121.02432223515228
Iteration: 9, Func. Count: 84, Neg. LLF: 120.33380689574346
Iteration: 10, Func. Count: 92, Neg. LLF: 120.12773234119929
Iteration: 11, Func. Count: 100, Neg. LLF: 120.11966556440646
Iteration: 12, Func. Count: 108, Neg. LLF: 120.11920534675005
Iteration: 13, Func. Count: 116, Neg. LLF: 120.11914728115066
Iteration: 14, Func. Count: 124, Neg. LLF: 120.11914625164951
Iteration: 15, Func. Count: 131, Neg. LLF: 120.11914627753362
Optimization terminated successfully (Exit mode 0)
Current function value: 120.11914625164951
Iterations: 15
Function evaluations: 131
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 124.62840087959877
Iteration: 2, Func. Count: 19, Neg. LLF: 124.3179801811134
Iteration: 3, Func. Count: 29, Neg. LLF: 203.55931233385766
Iteration: 4, Func. Count: 40, Neg. LLF: 123.82885934180187
Iteration: 5, Func. Count: 51, Neg. LLF: 122.02839377469355
Iteration: 6, Func. Count: 61, Neg. LLF: 120.35968168888029
Iteration: 7, Func. Count: 70, Neg. LLF: 120.14002629468068
Iteration: 8, Func. Count: 79, Neg. LLF: 120.12248297385872
Iteration: 9, Func. Count: 88, Neg. LLF: 120.11924154770837
Iteration: 10, Func. Count: 97, Neg. LLF: 120.11916090521288
Iteration: 11, Func. Count: 106, Neg. LLF: 120.11914629566739
Iteration: 12, Func. Count: 114, Neg. LLF: 120.11914632007948
Optimization terminated successfully (Exit mode 0)
Current function value: 120.11914629566739
Iterations: 12
Function evaluations: 114
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 124.78923384847731
Iteration: 2, Func. Count: 21, Neg. LLF: 123.46032796380678
Iteration: 3, Func. Count: 32, Neg. LLF: 189.80366895229744
Iteration: 4, Func. Count: 44, Neg. LLF: 122.17962895475469
Iteration: 5, Func. Count: 56, Neg. LLF: 122.67374240698234
Iteration: 6, Func. Count: 67, Neg. LLF: 120.80339799923219
Iteration: 7, Func. Count: 78, Neg. LLF: 120.33343872784548
Iteration: 8, Func. Count: 88, Neg. LLF: 120.1244819239598
Iteration: 9, Func. Count: 98, Neg. LLF: 120.11969232127076
Iteration: 10, Func. Count: 108, Neg. LLF: 120.11916093777364
Iteration: 11, Func. Count: 118, Neg. LLF: 120.11914782571857
Iteration: 12, Func. Count: 128, Neg. LLF: 120.11914608040668
Iteration: 13, Func. Count: 137, Neg. LLF: 120.11914612195818
Optimization terminated successfully (Exit mode 0)
Current function value: 120.11914608040668
Iterations: 13
Function evaluations: 137
Gradient evaluations: 13
Iteration: 1, Func. Count: 12, Neg. LLF: 124.72706032403393
Iteration: 2, Func. Count: 23, Neg. LLF: 122.62169355615248
Iteration: 3, Func. Count: 34, Neg. LLF: 165.23739036564123
Iteration: 4, Func. Count: 48, Neg. LLF: 130.2184422903592
Iteration: 5, Func. Count: 60, Neg. LLF: 121.39136342285151
Iteration: 6, Func. Count: 73, Neg. LLF: 122.49073519646127
Iteration: 7, Func. Count: 85, Neg. LLF: 120.49103474266963
Iteration: 8, Func. Count: 97, Neg. LLF: 120.27245185984285
Iteration: 9, Func. Count: 109, Neg. LLF: 120.30835861698044
Iteration: 10, Func. Count: 121, Neg. LLF: 120.12070701724637
Iteration: 11, Func. Count: 132, Neg. LLF: 120.11980761649832
Iteration: 12, Func. Count: 143, Neg. LLF: 120.11947332523795
Iteration: 13, Func. Count: 154, Neg. LLF: 120.1192030811583
Iteration: 14, Func. Count: 165, Neg. LLF: 120.11915196216654
Iteration: 15, Func. Count: 176, Neg. LLF: 120.11914616575334
Iteration: 16, Func. Count: 186, Neg. LLF: 120.11914617540916
Optimization terminated successfully (Exit mode 0)
Current function value: 120.11914616575334
Iterations: 16
Function evaluations: 186
Gradient evaluations: 16
Iteration: 1, Func. Count: 13, Neg. LLF: 124.84916863592265
Iteration: 2, Func. Count: 25, Neg. LLF: 123.41052424810228
Iteration: 3, Func. Count: 37, Neg. LLF: 166.23481220809742
Iteration: 4, Func. Count: 52, Neg. LLF: 137.87051968308472
Iteration: 5, Func. Count: 65, Neg. LLF: 122.50559416119087
Iteration: 6, Func. Count: 79, Neg. LLF: 124.65018423015444
Iteration: 7, Func. Count: 92, Neg. LLF: 120.46333469494851
Iteration: 8, Func. Count: 105, Neg. LLF: 120.2915992120959
Iteration: 9, Func. Count: 117, Neg. LLF: 122.75046726979033
Iteration: 10, Func. Count: 130, Neg. LLF: 120.1419930174947
Iteration: 11, Func. Count: 142, Neg. LLF: 120.12173640820225
Iteration: 12, Func. Count: 154, Neg. LLF: 120.11973244020838
Iteration: 13, Func. Count: 166, Neg. LLF: 120.11946950963225
Iteration: 14, Func. Count: 178, Neg. LLF: 120.1192689515111
Iteration: 15, Func. Count: 190, Neg. LLF: 120.1191552330552
Iteration: 16, Func. Count: 202, Neg. LLF: 120.11914646974559
Iteration: 17, Func. Count: 213, Neg. LLF: 120.11914652701955
Optimization terminated successfully (Exit mode 0)
Current function value: 120.11914646974559
Iterations: 17
Function evaluations: 213
Gradient evaluations: 17
Iteration: 1, Func. Count: 10, Neg. LLF: 135.8452141740207
Iteration: 2, Func. Count: 20, Neg. LLF: 193.86017187908337
Iteration: 3, Func. Count: 30, Neg. LLF: 122.40103534902528
Iteration: 4, Func. Count: 39, Neg. LLF: 154.03407464469473
Iteration: 5, Func. Count: 50, Neg. LLF: 146.68812894242285
Iteration: 6, Func. Count: 62, Neg. LLF: 121.89655878292864
Iteration: 7, Func. Count: 72, Neg. LLF: 121.62659026178638
Iteration: 8, Func. Count: 82, Neg. LLF: 120.30944825940405
Iteration: 9, Func. Count: 91, Neg. LLF: 120.09831584122776
Iteration: 10, Func. Count: 100, Neg. LLF: 120.07272512489077
Iteration: 11, Func. Count: 109, Neg. LLF: 120.06678553429863
Iteration: 12, Func. Count: 118, Neg. LLF: 120.06640328555946
Iteration: 13, Func. Count: 127, Neg. LLF: 120.06619990340754
Iteration: 14, Func. Count: 136, Neg. LLF: 120.06596312536553
Iteration: 15, Func. Count: 145, Neg. LLF: 120.06594789043095
Iteration: 16, Func. Count: 154, Neg. LLF: 120.06594729607266
Optimization terminated successfully (Exit mode 0)
Current function value: 120.06594729607266
Iterations: 16
Function evaluations: 154
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 124.45453365475515
Iteration: 2, Func. Count: 21, Neg. LLF: 124.67583900190138
Iteration: 3, Func. Count: 32, Neg. LLF: 174.3708673350456
Iteration: 4, Func. Count: 44, Neg. LLF: 125.3864126347251
Iteration: 5, Func. Count: 55, Neg. LLF: 121.60648313162116
Iteration: 6, Func. Count: 66, Neg. LLF: 120.23028650851043
Iteration: 7, Func. Count: 76, Neg. LLF: 120.14287715249722
Iteration: 8, Func. Count: 86, Neg. LLF: 120.6370897096471
Iteration: 9, Func. Count: 98, Neg. LLF: 120.13229614306115
Iteration: 10, Func. Count: 109, Neg. LLF: 120.0696342148294
Iteration: 11, Func. Count: 119, Neg. LLF: 120.06687743646184
Iteration: 12, Func. Count: 129, Neg. LLF: 120.06604497049985
Iteration: 13, Func. Count: 139, Neg. LLF: 120.06594747319583
Iteration: 14, Func. Count: 148, Neg. LLF: 120.06594748602173
Optimization terminated successfully (Exit mode 0)
Current function value: 120.06594747319583
Iterations: 14
Function evaluations: 148
Gradient evaluations: 14
Iteration: 1, Func. Count: 12, Neg. LLF: 124.49887136786674
Iteration: 2, Func. Count: 23, Neg. LLF: 123.89147657685885
Iteration: 3, Func. Count: 35, Neg. LLF: 161.41942435811808
Iteration: 4, Func. Count: 48, Neg. LLF: 123.92759676439512
Iteration: 5, Func. Count: 60, Neg. LLF: 121.62028590455593
Iteration: 6, Func. Count: 73, Neg. LLF: 120.26470198501377
Iteration: 7, Func. Count: 84, Neg. LLF: 120.22042589269294
Iteration: 8, Func. Count: 95, Neg. LLF: 171.1294609831769
Iteration: 9, Func. Count: 107, Neg. LLF: 120.07156418973432
Iteration: 10, Func. Count: 118, Neg. LLF: 120.06697875100886
Iteration: 11, Func. Count: 129, Neg. LLF: 120.06599423692191
Iteration: 12, Func. Count: 140, Neg. LLF: 120.06595030502218
Iteration: 13, Func. Count: 151, Neg. LLF: 120.06594737683285
Iteration: 14, Func. Count: 161, Neg. LLF: 120.06594742097448
Optimization terminated successfully (Exit mode 0)
Current function value: 120.06594737683285
Iterations: 14
Function evaluations: 161
Gradient evaluations: 14
Iteration: 1, Func. Count: 13, Neg. LLF: 124.46193848810739
Iteration: 2, Func. Count: 25, Neg. LLF: 123.03812239464585
Iteration: 3, Func. Count: 37, Neg. LLF: 176.63118507931753
Iteration: 4, Func. Count: 52, Neg. LLF: 124.08770407794124
Iteration: 5, Func. Count: 65, Neg. LLF: 157.34282018297654
Iteration: 6, Func. Count: 78, Neg. LLF: 121.0388182810141
Iteration: 7, Func. Count: 90, Neg. LLF: 122.4641673307765
Iteration: 8, Func. Count: 103, Neg. LLF: 120.66213224501051
Iteration: 9, Func. Count: 116, Neg. LLF: 125.75830761161114
Iteration: 10, Func. Count: 129, Neg. LLF: 120.1160171354808
Iteration: 11, Func. Count: 141, Neg. LLF: 120.09410717566941
Iteration: 12, Func. Count: 153, Neg. LLF: 120.09919186425083
Iteration: 13, Func. Count: 166, Neg. LLF: 120.07844108087086
Iteration: 14, Func. Count: 178, Neg. LLF: 120.07349780529059
Iteration: 15, Func. Count: 190, Neg. LLF: 120.0671940964761
Iteration: 16, Func. Count: 202, Neg. LLF: 120.06601049803167
Iteration: 17, Func. Count: 214, Neg. LLF: 120.0659477674251
Iteration: 18, Func. Count: 225, Neg. LLF: 120.06594777292041
Optimization terminated successfully (Exit mode 0)
Current function value: 120.0659477674251
Iterations: 18
Function evaluations: 225
Gradient evaluations: 18
Iteration: 1, Func. Count: 14, Neg. LLF: 124.5595659549238
Iteration: 2, Func. Count: 27, Neg. LLF: 124.36976720189102
Iteration: 3, Func. Count: 41, Neg. LLF: 162.17593460601523
Iteration: 4, Func. Count: 56, Neg. LLF: 125.22145656864052
Iteration: 5, Func. Count: 70, Neg. LLF: 128.51004119024876
Iteration: 6, Func. Count: 85, Neg. LLF: 121.50885991095221
Iteration: 7, Func. Count: 99, Neg. LLF: 120.34048491198244
Iteration: 8, Func. Count: 112, Neg. LLF: 120.14389094526004
Iteration: 9, Func. Count: 125, Neg. LLF: 120.1234989055778
Iteration: 10, Func. Count: 138, Neg. LLF: 120.07197718177254
Iteration: 11, Func. Count: 151, Neg. LLF: 120.06804227499961
Iteration: 12, Func. Count: 164, Neg. LLF: 120.06608412117028
Iteration: 13, Func. Count: 177, Neg. LLF: 120.06596626094537
Iteration: 14, Func. Count: 190, Neg. LLF: 120.06594998122526
Iteration: 15, Func. Count: 203, Neg. LLF: 120.06594735169544
Iteration: 16, Func. Count: 215, Neg. LLF: 120.06594740732135
Optimization terminated successfully (Exit mode 0)
Current function value: 120.06594735169544
Iterations: 16
Function evaluations: 215
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 139.57307321155395
Iteration: 2, Func. Count: 22, Neg. LLF: 160.4677959353323
Iteration: 3, Func. Count: 33, Neg. LLF: 122.03725438618228
Iteration: 4, Func. Count: 43, Neg. LLF: 129.1808371716306
Iteration: 5, Func. Count: 55, Neg. LLF: 177.58893461920547
Iteration: 6, Func. Count: 68, Neg. LLF: 123.23412345953949
Iteration: 7, Func. Count: 81, Neg. LLF: 122.46556874222722
Iteration: 8, Func. Count: 92, Neg. LLF: 120.72560172190408
Iteration: 9, Func. Count: 103, Neg. LLF: 120.0672613910412
Iteration: 10, Func. Count: 113, Neg. LLF: 120.00528838118694
Iteration: 11, Func. Count: 123, Neg. LLF: 119.99531625838615
Iteration: 12, Func. Count: 133, Neg. LLF: 119.99247473078253
Iteration: 13, Func. Count: 143, Neg. LLF: 119.99207852014632
Iteration: 14, Func. Count: 153, Neg. LLF: 119.99196840997493
Iteration: 15, Func. Count: 163, Neg. LLF: 119.99185675193903
Iteration: 16, Func. Count: 172, Neg. LLF: 119.99185675191166
Optimization terminated successfully (Exit mode 0)
Current function value: 119.99185675193903
Iterations: 16
Function evaluations: 172
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 124.47549373052617
Iteration: 2, Func. Count: 23, Neg. LLF: 124.72783435054056
Iteration: 3, Func. Count: 35, Neg. LLF: 176.24505763528447
Iteration: 4, Func. Count: 49, Neg. LLF: 126.08433280937508
Iteration: 5, Func. Count: 61, Neg. LLF: 121.21271211485538
Iteration: 6, Func. Count: 73, Neg. LLF: 120.43926530414547
Iteration: 7, Func. Count: 85, Neg. LLF: 120.01695934148348
Iteration: 8, Func. Count: 96, Neg. LLF: 119.99431844146405
Iteration: 9, Func. Count: 107, Neg. LLF: 119.99230204448725
Iteration: 10, Func. Count: 118, Neg. LLF: 119.9919498376278
Iteration: 11, Func. Count: 129, Neg. LLF: 119.99187284372043
Iteration: 12, Func. Count: 140, Neg. LLF: 119.99185640117685
Iteration: 13, Func. Count: 150, Neg. LLF: 119.99185641636599
Optimization terminated successfully (Exit mode 0)
Current function value: 119.99185640117685
Iterations: 13
Function evaluations: 150
Gradient evaluations: 13
Iteration: 1, Func. Count: 13, Neg. LLF: 124.55460960919687
Iteration: 2, Func. Count: 25, Neg. LLF: 123.80660683286838
Iteration: 3, Func. Count: 38, Neg. LLF: 206.18942526626986
Iteration: 4, Func. Count: 53, Neg. LLF: 151.99652219392934
Iteration: 5, Func. Count: 67, Neg. LLF: 124.4766849802498
Iteration: 6, Func. Count: 80, Neg. LLF: 120.10404046264908
Iteration: 7, Func. Count: 92, Neg. LLF: 120.15810715120693
Iteration: 8, Func. Count: 105, Neg. LLF: 120.00411025733412
Iteration: 9, Func. Count: 117, Neg. LLF: 119.99261596818278
Iteration: 10, Func. Count: 129, Neg. LLF: 119.99191544038604
Iteration: 11, Func. Count: 141, Neg. LLF: 119.99186510076603
Iteration: 12, Func. Count: 153, Neg. LLF: 119.99185638926403
Iteration: 13, Func. Count: 164, Neg. LLF: 119.9918564304028
Optimization terminated successfully (Exit mode 0)
Current function value: 119.99185638926403
Iterations: 13
Function evaluations: 164
Gradient evaluations: 13
Iteration: 1, Func. Count: 14, Neg. LLF: 124.47784165611945
Iteration: 2, Func. Count: 27, Neg. LLF: 122.76904719689888
Iteration: 3, Func. Count: 40, Neg. LLF: 177.0729893082376
Iteration: 4, Func. Count: 56, Neg. LLF: 129.84645185167625
Iteration: 5, Func. Count: 70, Neg. LLF: 165.20538036085736
Iteration: 6, Func. Count: 86, Neg. LLF: 126.75595546135779
Iteration: 7, Func. Count: 100, Neg. LLF: 120.11807426607636
Iteration: 8, Func. Count: 113, Neg. LLF: 120.03512966884709
Iteration: 9, Func. Count: 126, Neg. LLF: 120.26462898535594
Iteration: 10, Func. Count: 140, Neg. LLF: 119.99532243267407
Iteration: 11, Func. Count: 153, Neg. LLF: 119.99219083127714
Iteration: 12, Func. Count: 166, Neg. LLF: 119.99190469711283
Iteration: 13, Func. Count: 179, Neg. LLF: 119.99186907691828
Iteration: 14, Func. Count: 192, Neg. LLF: 119.99186426165
Iteration: 15, Func. Count: 205, Neg. LLF: 119.99185666115906
Iteration: 16, Func. Count: 217, Neg. LLF: 119.99185667159448
Optimization terminated successfully (Exit mode 0)
Current function value: 119.99185666115906
Iterations: 16
Function evaluations: 217
Gradient evaluations: 16
Iteration: 1, Func. Count: 15, Neg. LLF: 124.17348425965474
Iteration: 2, Func. Count: 29, Neg. LLF: 127.8438072651099
Iteration: 3, Func. Count: 44, Neg. LLF: 138.25940776895803
Iteration: 4, Func. Count: 60, Neg. LLF: 124.43477903658588
Iteration: 5, Func. Count: 75, Neg. LLF: 124.51369726466261
Iteration: 6, Func. Count: 90, Neg. LLF: 124.70782757467849
Iteration: 7, Func. Count: 106, Neg. LLF: 121.21358357182704
Iteration: 8, Func. Count: 121, Neg. LLF: 120.1283538650257
Iteration: 9, Func. Count: 135, Neg. LLF: 120.03629593431525
Iteration: 10, Func. Count: 149, Neg. LLF: 120.01171158878829
Iteration: 11, Func. Count: 163, Neg. LLF: 119.99364826060484
Iteration: 12, Func. Count: 177, Neg. LLF: 119.99196901149342
Iteration: 13, Func. Count: 191, Neg. LLF: 119.99185801762474
Iteration: 14, Func. Count: 205, Neg. LLF: 119.99185636945991
Iteration: 15, Func. Count: 218, Neg. LLF: 119.9918564278134
Optimization terminated successfully (Exit mode 0)
Current function value: 119.99185636945991
Iterations: 15
Function evaluations: 218
Gradient evaluations: 15
Iteration: 1, Func. Count: 12, Neg. LLF: 139.32954546834839
Iteration: 2, Func. Count: 24, Neg. LLF: 160.09507848669884
Iteration: 3, Func. Count: 36, Neg. LLF: 122.03296938010803
Iteration: 4, Func. Count: 47, Neg. LLF: 129.59730720252236
Iteration: 5, Func. Count: 60, Neg. LLF: 178.81760805894623
Iteration: 6, Func. Count: 74, Neg. LLF: 123.3369605078933
Iteration: 7, Func. Count: 88, Neg. LLF: 122.40613259315552
Iteration: 8, Func. Count: 100, Neg. LLF: 120.76205272267995
Iteration: 9, Func. Count: 112, Neg. LLF: 120.07167781750411
Iteration: 10, Func. Count: 123, Neg. LLF: 120.00413099437043
Iteration: 11, Func. Count: 134, Neg. LLF: 119.99519264281261
Iteration: 12, Func. Count: 145, Neg. LLF: 119.99250731102669
Iteration: 13, Func. Count: 156, Neg. LLF: 119.99210448706236
Iteration: 14, Func. Count: 167, Neg. LLF: 119.99197472318093
Iteration: 15, Func. Count: 178, Neg. LLF: 119.99185739551871
Iteration: 16, Func. Count: 189, Neg. LLF: 119.991856371725
Iteration: 17, Func. Count: 199, Neg. LLF: 119.99185633043572
Optimization terminated successfully (Exit mode 0)
Current function value: 119.991856371725
Iterations: 17
Function evaluations: 199
Gradient evaluations: 17
Iteration: 1, Func. Count: 13, Neg. LLF: 124.5649684448755
Iteration: 2, Func. Count: 25, Neg. LLF: 123.19583204985156
Iteration: 3, Func. Count: 38, Neg. LLF: 161.19758361475695
Iteration: 4, Func. Count: 53, Neg. LLF: 152.59037958822015
Iteration: 5, Func. Count: 66, Neg. LLF: 121.02730006885425
Iteration: 6, Func. Count: 78, Neg. LLF: 120.71828741035046
Iteration: 7, Func. Count: 90, Neg. LLF: 123.12812059146061
Iteration: 8, Func. Count: 104, Neg. LLF: 120.61594264454158
Iteration: 9, Func. Count: 117, Neg. LLF: 120.151106069761
Iteration: 10, Func. Count: 129, Neg. LLF: 120.00465772988464
Iteration: 11, Func. Count: 141, Neg. LLF: 120.00048955197097
Iteration: 12, Func. Count: 153, Neg. LLF: 119.99322669215817
Iteration: 13, Func. Count: 165, Neg. LLF: 119.99207600663323
Iteration: 14, Func. Count: 177, Neg. LLF: 119.99190252019991
Iteration: 15, Func. Count: 189, Neg. LLF: 119.99185918327764
Iteration: 16, Func. Count: 201, Neg. LLF: 119.99185667169654
Iteration: 17, Func. Count: 212, Neg. LLF: 119.99185668686965
Optimization terminated successfully (Exit mode 0)
Current function value: 119.99185667169654
Iterations: 17
Function evaluations: 212
Gradient evaluations: 17
Iteration: 1, Func. Count: 14, Neg. LLF: 124.13907557286325
Iteration: 2, Func. Count: 27, Neg. LLF: 123.44050007436945
Iteration: 3, Func. Count: 42, Neg. LLF: 146.49537096009354
Iteration: 4, Func. Count: 58, Neg. LLF: 125.0510848958458
Iteration: 5, Func. Count: 74, Neg. LLF: 123.66687677344713
Iteration: 6, Func. Count: 88, Neg. LLF: 122.2596539098043
Iteration: 7, Func. Count: 102, Neg. LLF: 125.14667633617121
Iteration: 8, Func. Count: 116, Neg. LLF: 121.11865361263992
Iteration: 9, Func. Count: 130, Neg. LLF: 120.37423040663346
Iteration: 10, Func. Count: 143, Neg. LLF: 120.07530068307227
Iteration: 11, Func. Count: 156, Neg. LLF: 119.9963957279521
Iteration: 12, Func. Count: 169, Neg. LLF: 119.9922322032953
Iteration: 13, Func. Count: 182, Neg. LLF: 119.99186049191744
Iteration: 14, Func. Count: 195, Neg. LLF: 119.99185695408484
Iteration: 15, Func. Count: 207, Neg. LLF: 119.99185699527628
Optimization terminated successfully (Exit mode 0)
Current function value: 119.99185695408484
Iterations: 15
Function evaluations: 207
Gradient evaluations: 15
Iteration: 1, Func. Count: 15, Neg. LLF: 124.4464522534904
Iteration: 2, Func. Count: 29, Neg. LLF: 122.88320908627543
Iteration: 3, Func. Count: 43, Neg. LLF: 175.5610616938484
Iteration: 4, Func. Count: 60, Neg. LLF: 131.776758183222
Iteration: 5, Func. Count: 75, Neg. LLF: 130.59548463112915
Iteration: 6, Func. Count: 92, Neg. LLF: 124.12900386617197
Iteration: 7, Func. Count: 108, Neg. LLF: 120.701957631814
Iteration: 8, Func. Count: 123, Neg. LLF: 120.21550526380064
Iteration: 9, Func. Count: 137, Neg. LLF: 120.19056636599348
Iteration: 10, Func. Count: 152, Neg. LLF: 120.0570057910713
Iteration: 11, Func. Count: 166, Neg. LLF: 120.01055116648254
Iteration: 12, Func. Count: 180, Neg. LLF: 119.99600140071901
Iteration: 13, Func. Count: 194, Neg. LLF: 119.99200352605214
Iteration: 14, Func. Count: 208, Neg. LLF: 119.99187963785458
Iteration: 15, Func. Count: 222, Neg. LLF: 119.99185786290055
Iteration: 16, Func. Count: 236, Neg. LLF: 119.99185635461525
Iteration: 17, Func. Count: 249, Neg. LLF: 119.99185636496833
Optimization terminated successfully (Exit mode 0)
Current function value: 119.99185635461525
Iterations: 17
Function evaluations: 249
Gradient evaluations: 17
Iteration: 1, Func. Count: 16, Neg. LLF: 124.1623379211508
Iteration: 2, Func. Count: 31, Neg. LLF: 127.63159785702459
Iteration: 3, Func. Count: 47, Neg. LLF: 131.8064062106928
Iteration: 4, Func. Count: 64, Neg. LLF: 124.25388194882039
Iteration: 5, Func. Count: 80, Neg. LLF: 123.05817951114996
Iteration: 6, Func. Count: 96, Neg. LLF: 120.4852930579572
Iteration: 7, Func. Count: 111, Neg. LLF: 120.7376849458251
Iteration: 8, Func. Count: 127, Neg. LLF: 120.84664471808604
Iteration: 9, Func. Count: 143, Neg. LLF: 120.06881310854602
Iteration: 10, Func. Count: 158, Neg. LLF: 120.00924337780523
Iteration: 11, Func. Count: 173, Neg. LLF: 119.99340223021608
Iteration: 12, Func. Count: 188, Neg. LLF: 119.99204149459102
Iteration: 13, Func. Count: 203, Neg. LLF: 119.99189979665557
Iteration: 14, Func. Count: 218, Neg. LLF: 119.99185834902208
Iteration: 15, Func. Count: 233, Neg. LLF: 119.99185634362135
Iteration: 16, Func. Count: 247, Neg. LLF: 119.99185640197682
Optimization terminated successfully (Exit mode 0)
Current function value: 119.99185634362135
Iterations: 16
Function evaluations: 247
Gradient evaluations: 16
Iteration: 1, Func. Count: 6, Neg. LLF: 131.67284622230432
Iteration: 2, Func. Count: 12, Neg. LLF: 133.01283303129105
Iteration: 3, Func. Count: 18, Neg. LLF: 120.6761281474992
Iteration: 4, Func. Count: 23, Neg. LLF: 120.7130881645073
Iteration: 5, Func. Count: 29, Neg. LLF: 124.97782344044691
Iteration: 6, Func. Count: 35, Neg. LLF: 120.32133265735338
Iteration: 7, Func. Count: 40, Neg. LLF: 120.30278062904596
Iteration: 8, Func. Count: 45, Neg. LLF: 120.30243155980932
Iteration: 9, Func. Count: 50, Neg. LLF: 120.30241892802081
Iteration: 10, Func. Count: 54, Neg. LLF: 120.30241893734015
Optimization terminated successfully (Exit mode 0)
Current function value: 120.30241892802081
Iterations: 10
Function evaluations: 54
Gradient evaluations: 10
Iteration: 1, Func. Count: 5, Neg. LLF: 128.34152805330106
Iteration: 2, Func. Count: 9, Neg. LLF: 134.24689299936034
Iteration: 3, Func. Count: 14, Neg. LLF: 127.78745740685956
Iteration: 4, Func. Count: 18, Neg. LLF: 127.67163198951893
Iteration: 5, Func. Count: 22, Neg. LLF: 127.6540738664506
Iteration: 6, Func. Count: 26, Neg. LLF: 127.6531833659917
Iteration: 7, Func. Count: 30, Neg. LLF: 127.65317853158255
Iteration: 8, Func. Count: 33, Neg. LLF: 127.65317862416886
Optimization terminated successfully (Exit mode 0)
Current function value: 127.65317853158255
Iterations: 8
Function evaluations: 33
Gradient evaluations: 8
Iteration: 1, Func. Count: 6, Neg. LLF: 158.4415807072203
Iteration: 2, Func. Count: 13, Neg. LLF: 127.58261821250889
Iteration: 3, Func. Count: 18, Neg. LLF: 127.56396659698859
Iteration: 4, Func. Count: 23, Neg. LLF: 127.56368452618835
Iteration: 5, Func. Count: 28, Neg. LLF: 127.56201852259939
Iteration: 6, Func. Count: 33, Neg. LLF: 127.55901623089628
Iteration: 7, Func. Count: 38, Neg. LLF: 127.54703571255115
Iteration: 8, Func. Count: 43, Neg. LLF: 127.53966093557383
Iteration: 9, Func. Count: 48, Neg. LLF: 127.71853722454236
Iteration: 10, Func. Count: 55, Neg. LLF: 127.65582363797218
Iteration: 11, Func. Count: 63, Neg. LLF: 127.49842974730495
Iteration: 12, Func. Count: 68, Neg. LLF: 127.49727297945682
Iteration: 13, Func. Count: 73, Neg. LLF: 127.49716314238596
Iteration: 14, Func. Count: 78, Neg. LLF: 127.49714768588814
Iteration: 15, Func. Count: 83, Neg. LLF: 127.49714228512477
Iteration: 16, Func. Count: 88, Neg. LLF: 127.49714123681095
Iteration: 17, Func. Count: 92, Neg. LLF: 127.49714123656726
Optimization terminated successfully (Exit mode 0)
Current function value: 127.49714123681095
Iterations: 17
Function evaluations: 92
Gradient evaluations: 17
Iteration: 1, Func. Count: 7, Neg. LLF: 151.52869582125086
Iteration: 2, Func. Count: 15, Neg. LLF: 127.5925526660974
Iteration: 3, Func. Count: 21, Neg. LLF: 127.5660759177509
Iteration: 4, Func. Count: 27, Neg. LLF: 127.56582517846807
Iteration: 5, Func. Count: 33, Neg. LLF: 127.56433272104198
Iteration: 6, Func. Count: 39, Neg. LLF: 127.55069191550042
Iteration: 7, Func. Count: 45, Neg. LLF: 127.52396200017469
Iteration: 8, Func. Count: 51, Neg. LLF: 127.56051966318107
Iteration: 9, Func. Count: 58, Neg. LLF: 127.5996857754398
Iteration: 10, Func. Count: 67, Neg. LLF: 127.50303696519654
Iteration: 11, Func. Count: 73, Neg. LLF: 127.50217075179297
Iteration: 12, Func. Count: 79, Neg. LLF: 127.5006025554766
Iteration: 13, Func. Count: 85, Neg. LLF: 127.50046293063845
Iteration: 14, Func. Count: 91, Neg. LLF: 127.50045562774363
Iteration: 15, Func. Count: 96, Neg. LLF: 127.50045562761294
Optimization terminated successfully (Exit mode 0)
Current function value: 127.50045562774363
Iterations: 15
Function evaluations: 96
Gradient evaluations: 15
Iteration: 1, Func. Count: 8, Neg. LLF: 154.24892079236946
Iteration: 2, Func. Count: 17, Neg. LLF: 127.60088019645883
Iteration: 3, Func. Count: 24, Neg. LLF: 127.5852443985249
Iteration: 4, Func. Count: 31, Neg. LLF: 127.58480300575194
Iteration: 5, Func. Count: 38, Neg. LLF: 127.58394754411803
Iteration: 6, Func. Count: 45, Neg. LLF: 127.58236343578571
Iteration: 7, Func. Count: 52, Neg. LLF: 127.58127397225051
Iteration: 8, Func. Count: 59, Neg. LLF: 127.57212017763392
Iteration: 9, Func. Count: 66, Neg. LLF: 127.55313709613787
Iteration: 10, Func. Count: 73, Neg. LLF: 127.55182595784531
Iteration: 11, Func. Count: 80, Neg. LLF: 127.54141567608876
Iteration: 12, Func. Count: 87, Neg. LLF: 127.47609392714203
Iteration: 13, Func. Count: 94, Neg. LLF: 127.5959638946778
Iteration: 14, Func. Count: 102, Neg. LLF: 127.4848647334565
Iteration: 15, Func. Count: 110, Neg. LLF: 127.47287670286612
Iteration: 16, Func. Count: 117, Neg. LLF: 127.47270279431223
Iteration: 17, Func. Count: 124, Neg. LLF: 127.47268294739588
Iteration: 18, Func. Count: 131, Neg. LLF: 127.47268445669403
Iteration: 19, Func. Count: 138, Neg. LLF: 127.47268168928332
Optimization terminated successfully (Exit mode 0)
Current function value: 127.47268168961352
Iterations: 19
Function evaluations: 138
Gradient evaluations: 19
Iteration: 1, Func. Count: 9, Neg. LLF: 151.30766213524083
Iteration: 2, Func. Count: 19, Neg. LLF: 127.60337590795136
Iteration: 3, Func. Count: 27, Neg. LLF: 127.58909414670836
Iteration: 4, Func. Count: 35, Neg. LLF: 127.58857405811229
Iteration: 5, Func. Count: 43, Neg. LLF: 127.5859245430936
Iteration: 6, Func. Count: 51, Neg. LLF: 127.58220948777911
Iteration: 7, Func. Count: 59, Neg. LLF: 127.57990179543592
Iteration: 8, Func. Count: 67, Neg. LLF: 127.5746998435012
Iteration: 9, Func. Count: 75, Neg. LLF: 127.57451807040857
Iteration: 10, Func. Count: 83, Neg. LLF: 127.57344586906108
Iteration: 11, Func. Count: 91, Neg. LLF: 127.56823623832129
Iteration: 12, Func. Count: 99, Neg. LLF: 127.52094518056282
Iteration: 13, Func. Count: 107, Neg. LLF: 127.53098740321332
Iteration: 14, Func. Count: 116, Neg. LLF: 127.52321151277488
Iteration: 15, Func. Count: 125, Neg. LLF: 127.5184401388861
Iteration: 16, Func. Count: 134, Neg. LLF: 127.48193933396426
Iteration: 17, Func. Count: 142, Neg. LLF: 127.48143995623789
Iteration: 18, Func. Count: 150, Neg. LLF: 127.48143832530678
Iteration: 19, Func. Count: 158, Neg. LLF: 127.48143703255282
Iteration: 20, Func. Count: 165, Neg. LLF: 127.48143703279054
Optimization terminated successfully (Exit mode 0)
Current function value: 127.48143703255282
Iterations: 20
Function evaluations: 165
Gradient evaluations: 20
Iteration: 1, Func. Count: 6, Neg. LLF: 129.26293067801194
Iteration: 2, Func. Count: 11, Neg. LLF: 130.41069172581777
Iteration: 3, Func. Count: 17, Neg. LLF: 127.74978163737339
Iteration: 4, Func. Count: 22, Neg. LLF: 127.69444723660494
Iteration: 5, Func. Count: 27, Neg. LLF: 127.65500529854693
Iteration: 6, Func. Count: 32, Neg. LLF: 127.65324266260119
Iteration: 7, Func. Count: 37, Neg. LLF: 127.65319660229085
Iteration: 8, Func. Count: 42, Neg. LLF: 127.65318182137892
Iteration: 9, Func. Count: 47, Neg. LLF: 127.65317868113155
Iteration: 10, Func. Count: 51, Neg. LLF: 127.65317875997029
Optimization terminated successfully (Exit mode 0)
Current function value: 127.65317868113155
Iterations: 10
Function evaluations: 51
Gradient evaluations: 10
Iteration: 1, Func. Count: 7, Neg. LLF: 158.31680629830456
Iteration: 2, Func. Count: 15, Neg. LLF: 127.57321754624037
Iteration: 3, Func. Count: 21, Neg. LLF: 127.56403256877276
Iteration: 4, Func. Count: 27, Neg. LLF: 127.56366273497622
Iteration: 5, Func. Count: 33, Neg. LLF: 127.56306940193006
Iteration: 6, Func. Count: 39, Neg. LLF: 127.56150210138016
Iteration: 7, Func. Count: 45, Neg. LLF: 127.55862868450133
Iteration: 8, Func. Count: 51, Neg. LLF: 127.51558203264513
Iteration: 9, Func. Count: 57, Neg. LLF: 127.58353576594197
Iteration: 10, Func. Count: 64, Neg. LLF: 127.5567405023655
Iteration: 11, Func. Count: 71, Neg. LLF: 127.50819488312194
Iteration: 12, Func. Count: 78, Neg. LLF: 127.51317068151128
Iteration: 13, Func. Count: 85, Neg. LLF: 127.49728936934982
Iteration: 14, Func. Count: 92, Neg. LLF: 127.49714235644022
Iteration: 15, Func. Count: 98, Neg. LLF: 127.49714115083266
Iteration: 16, Func. Count: 103, Neg. LLF: 127.4971411508169
Optimization terminated successfully (Exit mode 0)
Current function value: 127.49714115083266
Iterations: 16
Function evaluations: 103
Gradient evaluations: 16
Iteration: 1, Func. Count: 8, Neg. LLF: 151.46198393606738
Iteration: 2, Func. Count: 17, Neg. LLF: 127.57204170216393
Iteration: 3, Func. Count: 24, Neg. LLF: 127.56612108180187
Iteration: 4, Func. Count: 31, Neg. LLF: 127.56581693441052
Iteration: 5, Func. Count: 38, Neg. LLF: 127.56443049446793
Iteration: 6, Func. Count: 45, Neg. LLF: 127.5577029278685
Iteration: 7, Func. Count: 52, Neg. LLF: 127.54959803197225
Iteration: 8, Func. Count: 59, Neg. LLF: 127.54764948158419
Iteration: 9, Func. Count: 67, Neg. LLF: 127.53795844690688
Iteration: 10, Func. Count: 75, Neg. LLF: 127.5008351674094
Iteration: 11, Func. Count: 82, Neg. LLF: 127.50051470896959
Iteration: 12, Func. Count: 89, Neg. LLF: 127.5004015680873
Iteration: 13, Func. Count: 96, Neg. LLF: 127.50039825740409
Iteration: 14, Func. Count: 103, Neg. LLF: 127.50039298372008
Iteration: 15, Func. Count: 110, Neg. LLF: 127.50035053605103
Iteration: 16, Func. Count: 117, Neg. LLF: 127.49993995648887
Iteration: 17, Func. Count: 124, Neg. LLF: 127.49866815132536
Iteration: 18, Func. Count: 131, Neg. LLF: 127.49759208405018
Iteration: 19, Func. Count: 138, Neg. LLF: 127.49721142684325
Iteration: 20, Func. Count: 145, Neg. LLF: 127.49717326351757
Iteration: 21, Func. Count: 152, Neg. LLF: 127.49714121079857
Iteration: 22, Func. Count: 158, Neg. LLF: 127.49714121093787
Optimization terminated successfully (Exit mode 0)
Current function value: 127.49714121079857
Iterations: 22
Function evaluations: 158
Gradient evaluations: 22
Iteration: 1, Func. Count: 9, Neg. LLF: 154.48317715054432
Iteration: 2, Func. Count: 19, Neg. LLF: 127.58830592157128
Iteration: 3, Func. Count: 27, Neg. LLF: 127.58567293529178
Iteration: 4, Func. Count: 35, Neg. LLF: 127.58521237443654
Iteration: 5, Func. Count: 43, Neg. LLF: 127.58289292792283
Iteration: 6, Func. Count: 51, Neg. LLF: 127.58108368647855
Iteration: 7, Func. Count: 59, Neg. LLF: 127.57956064579277
Iteration: 8, Func. Count: 67, Neg. LLF: 127.5622218325451
Iteration: 9, Func. Count: 75, Neg. LLF: 127.54637613052256
Iteration: 10, Func. Count: 83, Neg. LLF: 127.54352069603934
Iteration: 11, Func. Count: 91, Neg. LLF: 127.52074856317256
Iteration: 12, Func. Count: 99, Neg. LLF: 127.50070140072869
Iteration: 13, Func. Count: 107, Neg. LLF: 127.65732892791404
Iteration: 14, Func. Count: 116, Neg. LLF: 127.82286883654652
Iteration: 15, Func. Count: 125, Neg. LLF: 127.55762708857364
Iteration: 16, Func. Count: 134, Neg. LLF: 127.61925106927279
Iteration: 17, Func. Count: 144, Neg. LLF: 127.51283937657328
Iteration: 18, Func. Count: 153, Neg. LLF: 127.49264176666753
Iteration: 19, Func. Count: 162, Neg. LLF: 127.49072854223367
Iteration: 20, Func. Count: 170, Neg. LLF: 127.48136131984339
Iteration: 21, Func. Count: 178, Neg. LLF: 127.47336383534326
Iteration: 22, Func. Count: 186, Neg. LLF: 127.47280999005233
Iteration: 23, Func. Count: 194, Neg. LLF: 127.47268987567229
Iteration: 24, Func. Count: 202, Neg. LLF: 127.47268593276699
Iteration: 25, Func. Count: 210, Neg. LLF: 127.47268139411327
Iteration: 26, Func. Count: 217, Neg. LLF: 127.47268139419089
Optimization terminated successfully (Exit mode 0)
Current function value: 127.47268139411327
Iterations: 26
Function evaluations: 217
Gradient evaluations: 26
Iteration: 1, Func. Count: 10, Neg. LLF: 150.47952396296097
Iteration: 2, Func. Count: 21, Neg. LLF: 127.59148633290295
Iteration: 3, Func. Count: 30, Neg. LLF: 127.59208682656579
Iteration: 4, Func. Count: 40, Neg. LLF: 127.58891753715508
Iteration: 5, Func. Count: 49, Neg. LLF: 127.58571800464814
Iteration: 6, Func. Count: 58, Neg. LLF: 127.58436558649814
Iteration: 7, Func. Count: 67, Neg. LLF: 127.58110982607471
Iteration: 8, Func. Count: 76, Neg. LLF: 127.58066651916722
Iteration: 9, Func. Count: 85, Neg. LLF: 127.57830736392091
Iteration: 10, Func. Count: 94, Neg. LLF: 127.56448575444723
Iteration: 11, Func. Count: 103, Neg. LLF: 127.51324351314737
Iteration: 12, Func. Count: 112, Neg. LLF: 279.9019468172603
Iteration: 13, Func. Count: 124, Neg. LLF: 127.6607579357493
Iteration: 14, Func. Count: 134, Neg. LLF: 127.49851740633063
Iteration: 15, Func. Count: 144, Neg. LLF: 127.20446065137908
Iteration: 16, Func. Count: 153, Neg. LLF: 127.44880918127787
Iteration: 17, Func. Count: 164, Neg. LLF: 127.10762981837468
Iteration: 18, Func. Count: 173, Neg. LLF: 127.08836618671245
Iteration: 19, Func. Count: 182, Neg. LLF: 127.0796798126575
Iteration: 20, Func. Count: 191, Neg. LLF: 127.07940266475744
Iteration: 21, Func. Count: 200, Neg. LLF: 127.07937466168264
Iteration: 22, Func. Count: 209, Neg. LLF: 127.0791722087109
Iteration: 23, Func. Count: 218, Neg. LLF: 127.07682519991344
Iteration: 24, Func. Count: 227, Neg. LLF: 127.05724492049909
Iteration: 25, Func. Count: 236, Neg. LLF: 127.05400736478998
Iteration: 26, Func. Count: 245, Neg. LLF: 127.05051847136248
Iteration: 27, Func. Count: 254, Neg. LLF: 127.04866048277556
Iteration: 28, Func. Count: 263, Neg. LLF: 127.04765892021993
Iteration: 29, Func. Count: 272, Neg. LLF: 127.04758202433115
Iteration: 30, Func. Count: 281, Neg. LLF: 127.04757857994655
Iteration: 31, Func. Count: 290, Neg. LLF: 127.10512203946746
Optimization terminated successfully (Exit mode 0)
Current function value: 127.0475781149199
Iterations: 33
Function evaluations: 293
Gradient evaluations: 31
Iteration: 1, Func. Count: 7, Neg. LLF: 132.4184915395011
Iteration: 2, Func. Count: 14, Neg. LLF: 132.50587103810258
Iteration: 3, Func. Count: 21, Neg. LLF: 128.03694652566685
Iteration: 4, Func. Count: 27, Neg. LLF: 130.87732424522508
Iteration: 5, Func. Count: 34, Neg. LLF: 127.66616189783531
Iteration: 6, Func. Count: 40, Neg. LLF: 127.65597371829372
Iteration: 7, Func. Count: 46, Neg. LLF: 127.65408940108748
Iteration: 8, Func. Count: 52, Neg. LLF: 127.65327123276889
Iteration: 9, Func. Count: 58, Neg. LLF: 127.65318163332404
Iteration: 10, Func. Count: 64, Neg. LLF: 127.65317854587494
Iteration: 11, Func. Count: 69, Neg. LLF: 127.65317856884634
Optimization terminated successfully (Exit mode 0)
Current function value: 127.65317854587494
Iterations: 11
Function evaluations: 69
Gradient evaluations: 11
Iteration: 1, Func. Count: 8, Neg. LLF: 158.19052559858162
Iteration: 2, Func. Count: 17, Neg. LLF: 127.57685896832746
Iteration: 3, Func. Count: 24, Neg. LLF: 127.56402360212277
Iteration: 4, Func. Count: 31, Neg. LLF: 127.56366942013435
Iteration: 5, Func. Count: 38, Neg. LLF: 127.56312076266622
Iteration: 6, Func. Count: 45, Neg. LLF: 127.56162390870983
Iteration: 7, Func. Count: 52, Neg. LLF: 127.55889876980868
Iteration: 8, Func. Count: 59, Neg. LLF: 127.53095875566879
Iteration: 9, Func. Count: 66, Neg. LLF: 127.51528376944273
Iteration: 10, Func. Count: 73, Neg. LLF: 127.55392531979366
Iteration: 11, Func. Count: 82, Neg. LLF: 127.69915695185463
Iteration: 12, Func. Count: 92, Neg. LLF: 127.49787746978534
Iteration: 13, Func. Count: 99, Neg. LLF: 127.4972391504962
Iteration: 14, Func. Count: 106, Neg. LLF: 127.49714302211028
Iteration: 15, Func. Count: 113, Neg. LLF: 127.49714134870786
Iteration: 16, Func. Count: 119, Neg. LLF: 127.49714134947835
Optimization terminated successfully (Exit mode 0)
Current function value: 127.49714134870786
Iterations: 16
Function evaluations: 119
Gradient evaluations: 16
Iteration: 1, Func. Count: 9, Neg. LLF: 151.5525939309578
Iteration: 2, Func. Count: 19, Neg. LLF: 127.57677214764189
Iteration: 3, Func. Count: 27, Neg. LLF: 127.56615826237085
Iteration: 4, Func. Count: 35, Neg. LLF: 127.56587005652948
Iteration: 5, Func. Count: 43, Neg. LLF: 127.5647294918702
Iteration: 6, Func. Count: 51, Neg. LLF: 127.55944328273151
Iteration: 7, Func. Count: 59, Neg. LLF: 127.55530231228938
Iteration: 8, Func. Count: 67, Neg. LLF: 127.55070641742175
Iteration: 9, Func. Count: 76, Neg. LLF: 127.52196672057647
Iteration: 10, Func. Count: 84, Neg. LLF: 127.51088050380596
Iteration: 11, Func. Count: 92, Neg. LLF: 127.50165052044235
Iteration: 12, Func. Count: 100, Neg. LLF: 127.50036842634162
Iteration: 13, Func. Count: 108, Neg. LLF: 127.50029624931439
Iteration: 14, Func. Count: 116, Neg. LLF: 127.50026640668437
Iteration: 15, Func. Count: 124, Neg. LLF: 127.50022078102704
Iteration: 16, Func. Count: 132, Neg. LLF: 127.49956955529817
Iteration: 17, Func. Count: 140, Neg. LLF: 127.48393538963762
Iteration: 18, Func. Count: 148, Neg. LLF: 401.56420557807076
Iteration: 19, Func. Count: 159, Neg. LLF: 2432.8361288030956
Iteration: 20, Func. Count: 170, Neg. LLF: 128.03189552671515
Iteration: 21, Func. Count: 179, Neg. LLF: 127.37821686810032
Iteration: 22, Func. Count: 187, Neg. LLF: 127.33980825437554
Iteration: 23, Func. Count: 195, Neg. LLF: 127.34051215743133
Iteration: 24, Func. Count: 204, Neg. LLF: 127.33921333703915
Iteration: 25, Func. Count: 212, Neg. LLF: 127.33921030875105
Iteration: 26, Func. Count: 219, Neg. LLF: 127.33921028586352
Optimization terminated successfully (Exit mode 0)
Current function value: 127.33921030875105
Iterations: 27
Function evaluations: 219
Gradient evaluations: 26
Iteration: 1, Func. Count: 10, Neg. LLF: 135.04640258307086
Iteration: 2, Func. Count: 21, Neg. LLF: 127.75225719469692
Iteration: 3, Func. Count: 31, Neg. LLF: 127.51637459697477
Iteration: 4, Func. Count: 40, Neg. LLF: 127.37191717740801
Iteration: 5, Func. Count: 49, Neg. LLF: 127.12581707294464
Iteration: 6, Func. Count: 58, Neg. LLF: 127.09052516592001
Iteration: 7, Func. Count: 67, Neg. LLF: 127.06623204748904
Iteration: 8, Func. Count: 76, Neg. LLF: 127.05403027076102
Iteration: 9, Func. Count: 85, Neg. LLF: 127.04493622538307
Iteration: 10, Func. Count: 94, Neg. LLF: 127.03279721707261
Iteration: 11, Func. Count: 103, Neg. LLF: 127.0194210380069
Iteration: 12, Func. Count: 112, Neg. LLF: 127.0155330495322
Iteration: 13, Func. Count: 121, Neg. LLF: 127.0152222769664
Iteration: 14, Func. Count: 130, Neg. LLF: 127.01518992530681
Iteration: 15, Func. Count: 139, Neg. LLF: 127.0151789716108
Iteration: 16, Func. Count: 147, Neg. LLF: 127.01517897155644
Optimization terminated successfully (Exit mode 0)
Current function value: 127.0151789716108
Iterations: 16
Function evaluations: 147
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 150.8794184017493
Iteration: 2, Func. Count: 23, Neg. LLF: 127.59408619597544
Iteration: 3, Func. Count: 33, Neg. LLF: 127.5886291555881
Iteration: 4, Func. Count: 43, Neg. LLF: 127.58662141888082
Iteration: 5, Func. Count: 53, Neg. LLF: 127.57928991563496
Iteration: 6, Func. Count: 63, Neg. LLF: 127.5717720431833
Iteration: 7, Func. Count: 73, Neg. LLF: 127.53956096175754
Iteration: 8, Func. Count: 83, Neg. LLF: 127.42804575908963
Iteration: 9, Func. Count: 93, Neg. LLF: 143.23106791455336
Iteration: 10, Func. Count: 105, Neg. LLF: 139.70291721399389
Iteration: 11, Func. Count: 116, Neg. LLF: 130.22803854807447
Iteration: 12, Func. Count: 127, Neg. LLF: 127.07617778450673
Iteration: 13, Func. Count: 137, Neg. LLF: 127.05795011445213
Iteration: 14, Func. Count: 147, Neg. LLF: 127.04928909964335
Iteration: 15, Func. Count: 157, Neg. LLF: 127.03507674794847
Iteration: 16, Func. Count: 167, Neg. LLF: 127.02172017839808
Iteration: 17, Func. Count: 177, Neg. LLF: 127.01626111008628
Iteration: 18, Func. Count: 187, Neg. LLF: 127.01521018939553
Iteration: 19, Func. Count: 197, Neg. LLF: 127.01518026426494
Iteration: 20, Func. Count: 207, Neg. LLF: 127.01517906425832
Iteration: 21, Func. Count: 216, Neg. LLF: 127.01517907736935
Optimization terminated successfully (Exit mode 0)
Current function value: 127.01517906425832
Iterations: 22
Function evaluations: 216
Gradient evaluations: 21
Iteration: 1, Func. Count: 8, Neg. LLF: 131.6466872251104
Iteration: 2, Func. Count: 16, Neg. LLF: 135.88576976145407
Iteration: 3, Func. Count: 26, Neg. LLF: 128.522237071016
Iteration: 4, Func. Count: 33, Neg. LLF: 127.69674657506812
Iteration: 5, Func. Count: 40, Neg. LLF: 127.66966828764005
Iteration: 6, Func. Count: 47, Neg. LLF: 127.66535494519948
Iteration: 7, Func. Count: 54, Neg. LLF: 127.6608945965873
Iteration: 8, Func. Count: 61, Neg. LLF: 127.65517414385283
Iteration: 9, Func. Count: 68, Neg. LLF: 127.65341557071608
Iteration: 10, Func. Count: 75, Neg. LLF: 127.65318270241384
Iteration: 11, Func. Count: 82, Neg. LLF: 127.65317855080615
Iteration: 12, Func. Count: 88, Neg. LLF: 127.65317860181683
Optimization terminated successfully (Exit mode 0)
Current function value: 127.65317855080615
Iterations: 12
Function evaluations: 88
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 138.03960468293263
Iteration: 2, Func. Count: 20, Neg. LLF: 136.26993918120243
Iteration: 3, Func. Count: 30, Neg. LLF: 127.55392821927043
Iteration: 4, Func. Count: 38, Neg. LLF: 127.53266756019204
Iteration: 5, Func. Count: 46, Neg. LLF: 127.5312554019568
Iteration: 6, Func. Count: 54, Neg. LLF: 127.52617874670912
Iteration: 7, Func. Count: 62, Neg. LLF: 127.52464505684578
Iteration: 8, Func. Count: 70, Neg. LLF: 127.52460374765398
Iteration: 9, Func. Count: 77, Neg. LLF: 127.52460374750808
Optimization terminated successfully (Exit mode 0)
Current function value: 127.52460374765398
Iterations: 9
Function evaluations: 77
Gradient evaluations: 9
Iteration: 1, Func. Count: 10, Neg. LLF: 145.59005550985592
Iteration: 2, Func. Count: 21, Neg. LLF: 127.57234289021831
Iteration: 3, Func. Count: 30, Neg. LLF: 127.56632933102254
Iteration: 4, Func. Count: 39, Neg. LLF: 127.56591090572687
Iteration: 5, Func. Count: 48, Neg. LLF: 127.56515233114014
Iteration: 6, Func. Count: 57, Neg. LLF: 127.56173017073485
Iteration: 7, Func. Count: 66, Neg. LLF: 127.60768131122697
Iteration: 8, Func. Count: 76, Neg. LLF: 127.58075780281835
Iteration: 9, Func. Count: 86, Neg. LLF: 127.55044538832271
Iteration: 10, Func. Count: 96, Neg. LLF: 132.4972599523546
Iteration: 11, Func. Count: 107, Neg. LLF: 127.53529020369139
Iteration: 12, Func. Count: 117, Neg. LLF: 370.1881625057409
Iteration: 13, Func. Count: 129, Neg. LLF: 127.50162237410106
Iteration: 14, Func. Count: 138, Neg. LLF: 127.50054319986656
Iteration: 15, Func. Count: 147, Neg. LLF: 127.50044124530521
Iteration: 16, Func. Count: 156, Neg. LLF: 127.50041127412071
Iteration: 17, Func. Count: 165, Neg. LLF: 127.50040818872966
Iteration: 18, Func. Count: 174, Neg. LLF: 127.50038734117088
Iteration: 19, Func. Count: 183, Neg. LLF: 127.50021996731272
Iteration: 20, Func. Count: 192, Neg. LLF: 127.49801986632215
Iteration: 21, Func. Count: 201, Neg. LLF: 127.49717619292393
Iteration: 22, Func. Count: 210, Neg. LLF: 127.49714270749375
Iteration: 23, Func. Count: 219, Neg. LLF: 127.49714139306684
Iteration: 24, Func. Count: 227, Neg. LLF: 127.49714139256686
Optimization terminated successfully (Exit mode 0)
Current function value: 127.49714139306684
Iterations: 24
Function evaluations: 227
Gradient evaluations: 24
Iteration: 1, Func. Count: 11, Neg. LLF: 134.68446137692743
Iteration: 2, Func. Count: 23, Neg. LLF: 127.74123597256596
Iteration: 3, Func. Count: 34, Neg. LLF: 127.7246694282335
Iteration: 4, Func. Count: 45, Neg. LLF: 127.37750094560916
Iteration: 5, Func. Count: 55, Neg. LLF: 127.26340163983686
Iteration: 6, Func. Count: 65, Neg. LLF: 127.11372647468329
Iteration: 7, Func. Count: 75, Neg. LLF: 127.096364489642
Iteration: 8, Func. Count: 85, Neg. LLF: 127.07473608421961
Iteration: 9, Func. Count: 95, Neg. LLF: 127.05831635509566
Iteration: 10, Func. Count: 105, Neg. LLF: 127.03951886668838
Iteration: 11, Func. Count: 115, Neg. LLF: 127.02203908782845
Iteration: 12, Func. Count: 125, Neg. LLF: 127.01610525891488
Iteration: 13, Func. Count: 135, Neg. LLF: 127.01523832186464
Iteration: 14, Func. Count: 145, Neg. LLF: 127.01519159060052
Iteration: 15, Func. Count: 155, Neg. LLF: 127.01517949684971
Iteration: 16, Func. Count: 165, Neg. LLF: 127.01517881647015
Optimization terminated successfully (Exit mode 0)
Current function value: 127.01517881647015
Iterations: 16
Function evaluations: 165
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 151.45405221616235
Iteration: 2, Func. Count: 25, Neg. LLF: 127.59221696670927
Iteration: 3, Func. Count: 36, Neg. LLF: 127.58712894921305
Iteration: 4, Func. Count: 47, Neg. LLF: 127.58521760886333
Iteration: 5, Func. Count: 58, Neg. LLF: 127.5849239153627
Iteration: 6, Func. Count: 69, Neg. LLF: 127.58441301874387
Iteration: 7, Func. Count: 80, Neg. LLF: 127.57916050216775
Iteration: 8, Func. Count: 91, Neg. LLF: 127.56737371057879
Iteration: 9, Func. Count: 102, Neg. LLF: 127.49848358156821
Iteration: 10, Func. Count: 113, Neg. LLF: 127.46743697529195
Iteration: 11, Func. Count: 124, Neg. LLF: 127.25182581479392
Iteration: 12, Func. Count: 135, Neg. LLF: 127.65930035377087
Iteration: 13, Func. Count: 147, Neg. LLF: 182.2187668905861
Iteration: 14, Func. Count: 160, Neg. LLF: 132.36337179061735
Iteration: 15, Func. Count: 173, Neg. LLF: 127.60479375775137
Iteration: 16, Func. Count: 185, Neg. LLF: 127.01777420753204
Iteration: 17, Func. Count: 196, Neg. LLF: 127.1416840318052
Iteration: 18, Func. Count: 208, Neg. LLF: 127.01716049474223
Iteration: 19, Func. Count: 219, Neg. LLF: 127.0170018875034
Iteration: 20, Func. Count: 230, Neg. LLF: 127.01622408833418
Iteration: 21, Func. Count: 241, Neg. LLF: 127.01559322387776
Iteration: 22, Func. Count: 252, Neg. LLF: 127.01524159051483
Iteration: 23, Func. Count: 263, Neg. LLF: 127.01518294657834
Iteration: 24, Func. Count: 274, Neg. LLF: 127.01517870683084
Iteration: 25, Func. Count: 284, Neg. LLF: 127.0151787201234
Optimization terminated successfully (Exit mode 0)
Current function value: 127.01517870683084
Iterations: 26
Function evaluations: 284
Gradient evaluations: 25
Iteration: 1, Func. Count: 5, Neg. LLF: 131.1379832730532
Iteration: 2, Func. Count: 10, Neg. LLF: 144.99162728766177
Iteration: 3, Func. Count: 15, Neg. LLF: 124.63273391789608
Iteration: 4, Func. Count: 19, Neg. LLF: 124.6247045850248
Iteration: 5, Func. Count: 23, Neg. LLF: 124.62368367717882
Iteration: 6, Func. Count: 27, Neg. LLF: 124.62344333195954
Iteration: 7, Func. Count: 30, Neg. LLF: 124.62344333195989
Optimization terminated successfully (Exit mode 0)
Current function value: 124.62344333195954
Iterations: 7
Function evaluations: 30
Gradient evaluations: 7
Iteration: 1, Func. Count: 6, Neg. LLF: 128.98081254717908
Iteration: 2, Func. Count: 12, Neg. LLF: 125.42948605989194
Iteration: 3, Func. Count: 18, Neg. LLF: 125.41665982272426
Iteration: 4, Func. Count: 24, Neg. LLF: 124.66034119992466
Iteration: 5, Func. Count: 29, Neg. LLF: 124.63331635257808
Iteration: 6, Func. Count: 34, Neg. LLF: 124.62634573567583
Iteration: 7, Func. Count: 39, Neg. LLF: 124.62362873948882
Iteration: 8, Func. Count: 44, Neg. LLF: 124.62344606499576
Iteration: 9, Func. Count: 49, Neg. LLF: 124.62344322372387
Iteration: 10, Func. Count: 53, Neg. LLF: 124.62344322769289
Optimization terminated successfully (Exit mode 0)
Current function value: 124.62344322372387
Iterations: 10
Function evaluations: 53
Gradient evaluations: 10
Iteration: 1, Func. Count: 7, Neg. LLF: 130.02634636880597
Iteration: 2, Func. Count: 14, Neg. LLF: 124.90085033001306
Iteration: 3, Func. Count: 20, Neg. LLF: 126.80834204658663
Iteration: 4, Func. Count: 27, Neg. LLF: 139.4636671268196
Iteration: 5, Func. Count: 35, Neg. LLF: 124.62881141371757
Iteration: 6, Func. Count: 41, Neg. LLF: 124.6251739144658
Iteration: 7, Func. Count: 47, Neg. LLF: 124.62357792100208
Iteration: 8, Func. Count: 53, Neg. LLF: 124.62345633100553
Iteration: 9, Func. Count: 59, Neg. LLF: 124.62344320587141
Iteration: 10, Func. Count: 64, Neg. LLF: 124.62344323152588
Optimization terminated successfully (Exit mode 0)
Current function value: 124.62344320587141
Iterations: 10
Function evaluations: 64
Gradient evaluations: 10
Iteration: 1, Func. Count: 8, Neg. LLF: 129.37587051520867
Iteration: 2, Func. Count: 16, Neg. LLF: 125.1161327542736
Iteration: 3, Func. Count: 23, Neg. LLF: 126.1721082246892
Iteration: 4, Func. Count: 31, Neg. LLF: 153.33491304850915
Iteration: 5, Func. Count: 40, Neg. LLF: 124.6310004813773
Iteration: 6, Func. Count: 47, Neg. LLF: 124.62593894273482
Iteration: 7, Func. Count: 54, Neg. LLF: 124.62360208585437
Iteration: 8, Func. Count: 61, Neg. LLF: 124.62345859634179
Iteration: 9, Func. Count: 68, Neg. LLF: 124.62344319942066
Iteration: 10, Func. Count: 74, Neg. LLF: 124.62344325318674
Optimization terminated successfully (Exit mode 0)
Current function value: 124.62344319942066
Iterations: 10
Function evaluations: 74
Gradient evaluations: 10
Iteration: 1, Func. Count: 9, Neg. LLF: 128.99073572511415
Iteration: 2, Func. Count: 18, Neg. LLF: 125.40104944143755
Iteration: 3, Func. Count: 27, Neg. LLF: 125.70765275628696
Iteration: 4, Func. Count: 36, Neg. LLF: 136.6968555326699
Iteration: 5, Func. Count: 46, Neg. LLF: 124.55680081511623
Iteration: 6, Func. Count: 54, Neg. LLF: 124.55358759407233
Iteration: 7, Func. Count: 62, Neg. LLF: 124.5531327745234
Iteration: 8, Func. Count: 70, Neg. LLF: 124.5530932849585
Iteration: 9, Func. Count: 78, Neg. LLF: 124.55308927021036
Iteration: 10, Func. Count: 85, Neg. LLF: 124.55308927023015
Optimization terminated successfully (Exit mode 0)
Current function value: 124.55308927021036
Iterations: 10
Function evaluations: 85
Gradient evaluations: 10
Iteration: 1, Func. Count: 6, Neg. LLF: 130.35602672129605
Iteration: 2, Func. Count: 12, Neg. LLF: 135.20645424489908
Iteration: 3, Func. Count: 18, Neg. LLF: 121.97208643290531
Iteration: 4, Func. Count: 23, Neg. LLF: 122.08975452712832
Iteration: 5, Func. Count: 29, Neg. LLF: 124.06612688585334
Iteration: 6, Func. Count: 35, Neg. LLF: 121.67082702890882
Iteration: 7, Func. Count: 40, Neg. LLF: 121.67030557581658
Iteration: 8, Func. Count: 44, Neg. LLF: 121.67030559630123
Optimization terminated successfully (Exit mode 0)
Current function value: 121.67030557581658
Iterations: 8
Function evaluations: 44
Gradient evaluations: 8
Iteration: 1, Func. Count: 7, Neg. LLF: 129.24867215774483
Iteration: 2, Func. Count: 14, Neg. LLF: 128.40048009567212
Iteration: 3, Func. Count: 21, Neg. LLF: 122.33118492324016
Iteration: 4, Func. Count: 27, Neg. LLF: 122.23003175668455
Iteration: 5, Func. Count: 34, Neg. LLF: 121.8120737124673
Iteration: 6, Func. Count: 40, Neg. LLF: 121.85159612359338
Iteration: 7, Func. Count: 47, Neg. LLF: 121.6832257572544
Iteration: 8, Func. Count: 53, Neg. LLF: 121.67298169946662
Iteration: 9, Func. Count: 59, Neg. LLF: 121.67030557448632
Iteration: 10, Func. Count: 64, Neg. LLF: 121.6703055904052
Optimization terminated successfully (Exit mode 0)
Current function value: 121.67030557448632
Iterations: 10
Function evaluations: 64
Gradient evaluations: 10
Iteration: 1, Func. Count: 8, Neg. LLF: 130.7546823090576
Iteration: 2, Func. Count: 16, Neg. LLF: 127.07146957190594
Iteration: 3, Func. Count: 24, Neg. LLF: 122.30969342067142
Iteration: 4, Func. Count: 31, Neg. LLF: 122.22804577878932
Iteration: 5, Func. Count: 39, Neg. LLF: 121.86364397924943
Iteration: 6, Func. Count: 46, Neg. LLF: 121.72319387463244
Iteration: 7, Func. Count: 53, Neg. LLF: 121.67849314760274
Iteration: 8, Func. Count: 60, Neg. LLF: 121.67105890852618
Iteration: 9, Func. Count: 67, Neg. LLF: 121.67030697667491
Iteration: 10, Func. Count: 74, Neg. LLF: 121.67030548836789
Iteration: 11, Func. Count: 80, Neg. LLF: 121.67030551403539
Optimization terminated successfully (Exit mode 0)
Current function value: 121.67030548836789
Iterations: 11
Function evaluations: 80
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 129.86324420074263
Iteration: 2, Func. Count: 18, Neg. LLF: 126.57602276238813
Iteration: 3, Func. Count: 27, Neg. LLF: 122.24099132972343
Iteration: 4, Func. Count: 35, Neg. LLF: 122.27007883559608
Iteration: 5, Func. Count: 44, Neg. LLF: 121.76157249207716
Iteration: 6, Func. Count: 52, Neg. LLF: 121.71347847247
Iteration: 7, Func. Count: 60, Neg. LLF: 121.69078718835678
Iteration: 8, Func. Count: 68, Neg. LLF: 121.67614116430748
Iteration: 9, Func. Count: 76, Neg. LLF: 121.67035191695248
Iteration: 10, Func. Count: 84, Neg. LLF: 121.67030615050348
Iteration: 11, Func. Count: 92, Neg. LLF: 121.67030551574088
Optimization terminated successfully (Exit mode 0)
Current function value: 121.67030551574088
Iterations: 11
Function evaluations: 92
Gradient evaluations: 11
Iteration: 1, Func. Count: 10, Neg. LLF: 129.36988572481292
Iteration: 2, Func. Count: 20, Neg. LLF: 126.60488218343583
Iteration: 3, Func. Count: 30, Neg. LLF: 122.21050598729796
Iteration: 4, Func. Count: 39, Neg. LLF: 122.31454283285193
Iteration: 5, Func. Count: 49, Neg. LLF: 121.75604411082801
Iteration: 6, Func. Count: 58, Neg. LLF: 121.71030111189715
Iteration: 7, Func. Count: 67, Neg. LLF: 121.68941456890309
Iteration: 8, Func. Count: 76, Neg. LLF: 121.67582163127949
Iteration: 9, Func. Count: 85, Neg. LLF: 121.67034686370506
Iteration: 10, Func. Count: 94, Neg. LLF: 121.67030667787911
Iteration: 11, Func. Count: 103, Neg. LLF: 121.67030550835706
Iteration: 12, Func. Count: 111, Neg. LLF: 121.67030555419711
Optimization terminated successfully (Exit mode 0)
Current function value: 121.67030550835706
Iterations: 12
Function evaluations: 111
Gradient evaluations: 12
Iteration: 1, Func. Count: 7, Neg. LLF: 132.21867718786487
Iteration: 2, Func. Count: 15, Neg. LLF: 141.56819525110058
Iteration: 3, Func. Count: 22, Neg. LLF: 122.34212211108675
Iteration: 4, Func. Count: 28, Neg. LLF: 123.23490895765985
Iteration: 5, Func. Count: 36, Neg. LLF: 127.12454910541251
Iteration: 6, Func. Count: 45, Neg. LLF: 122.12481809229205
Iteration: 7, Func. Count: 52, Neg. LLF: 121.6117270290448
Iteration: 8, Func. Count: 58, Neg. LLF: 121.59571320989649
Iteration: 9, Func. Count: 64, Neg. LLF: 121.5952532363476
Iteration: 10, Func. Count: 70, Neg. LLF: 121.59522885889857
Iteration: 11, Func. Count: 75, Neg. LLF: 121.59522885870733
Optimization terminated successfully (Exit mode 0)
Current function value: 121.59522885889857
Iterations: 11
Function evaluations: 75
Gradient evaluations: 11
Iteration: 1, Func. Count: 8, Neg. LLF: 129.14716437500994
Iteration: 2, Func. Count: 16, Neg. LLF: 128.44284333024677
Iteration: 3, Func. Count: 24, Neg. LLF: 123.96419894935278
Iteration: 4, Func. Count: 33, Neg. LLF: 122.03751892847596
Iteration: 5, Func. Count: 40, Neg. LLF: 122.13516116314
Iteration: 6, Func. Count: 48, Neg. LLF: 121.73233623612379
Iteration: 7, Func. Count: 55, Neg. LLF: 121.62075640087237
Iteration: 8, Func. Count: 62, Neg. LLF: 121.60067237765253
Iteration: 9, Func. Count: 69, Neg. LLF: 121.59604391030717
Iteration: 10, Func. Count: 76, Neg. LLF: 121.59523304102825
Iteration: 11, Func. Count: 83, Neg. LLF: 121.59522818011246
Iteration: 12, Func. Count: 89, Neg. LLF: 121.59522818868422
Optimization terminated successfully (Exit mode 0)
Current function value: 121.59522818011246
Iterations: 12
Function evaluations: 89
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 130.45593752474602
Iteration: 2, Func. Count: 18, Neg. LLF: 127.15726668782263
Iteration: 3, Func. Count: 27, Neg. LLF: 123.11745506463316
Iteration: 4, Func. Count: 36, Neg. LLF: 121.98200575188702
Iteration: 5, Func. Count: 44, Neg. LLF: 122.39504969725722
Iteration: 6, Func. Count: 53, Neg. LLF: 133.75898196924845
Iteration: 7, Func. Count: 63, Neg. LLF: 121.63407671722234
Iteration: 8, Func. Count: 71, Neg. LLF: 121.60755770736745
Iteration: 9, Func. Count: 79, Neg. LLF: 121.59595929012312
Iteration: 10, Func. Count: 87, Neg. LLF: 121.59527290114596
Iteration: 11, Func. Count: 95, Neg. LLF: 121.59522810981262
Iteration: 12, Func. Count: 102, Neg. LLF: 121.59522815277472
Optimization terminated successfully (Exit mode 0)
Current function value: 121.59522810981262
Iterations: 12
Function evaluations: 102
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 129.52840536599712
Iteration: 2, Func. Count: 20, Neg. LLF: 126.69648060417181
Iteration: 3, Func. Count: 30, Neg. LLF: 124.7282409420978
Iteration: 4, Func. Count: 41, Neg. LLF: 121.9807752236028
Iteration: 5, Func. Count: 50, Neg. LLF: 121.98596774192684
Iteration: 6, Func. Count: 60, Neg. LLF: 121.63464812613807
Iteration: 7, Func. Count: 69, Neg. LLF: 121.61523112071848
Iteration: 8, Func. Count: 78, Neg. LLF: 121.60248335194338
Iteration: 9, Func. Count: 87, Neg. LLF: 121.59707306323811
Iteration: 10, Func. Count: 96, Neg. LLF: 121.59423620709642
Iteration: 11, Func. Count: 105, Neg. LLF: 121.59420707072438
Iteration: 12, Func. Count: 114, Neg. LLF: 121.59420405478213
Iteration: 13, Func. Count: 122, Neg. LLF: 121.59420405476202
Optimization terminated successfully (Exit mode 0)
Current function value: 121.59420405478213
Iterations: 13
Function evaluations: 122
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 128.98928891345736
Iteration: 2, Func. Count: 22, Neg. LLF: 126.73682911234124
Iteration: 3, Func. Count: 33, Neg. LLF: 126.40764670344417
Iteration: 4, Func. Count: 45, Neg. LLF: 121.96316081383513
Iteration: 5, Func. Count: 55, Neg. LLF: 122.06707042490702
Iteration: 6, Func. Count: 66, Neg. LLF: 121.65449993670275
Iteration: 7, Func. Count: 76, Neg. LLF: 121.61574948071755
Iteration: 8, Func. Count: 86, Neg. LLF: 121.60519746814138
Iteration: 9, Func. Count: 96, Neg. LLF: 121.59924574089216
Iteration: 10, Func. Count: 106, Neg. LLF: 121.59426622581616
Iteration: 11, Func. Count: 116, Neg. LLF: 121.59420639873956
Iteration: 12, Func. Count: 126, Neg. LLF: 121.59420417154365
Iteration: 13, Func. Count: 135, Neg. LLF: 121.59420421355446
Optimization terminated successfully (Exit mode 0)
Current function value: 121.59420417154365
Iterations: 13
Function evaluations: 135
Gradient evaluations: 13
Iteration: 1, Func. Count: 8, Neg. LLF: 131.4377799725942
Iteration: 2, Func. Count: 16, Neg. LLF: 135.5438387589014
Iteration: 3, Func. Count: 24, Neg. LLF: 122.05856457606295
Iteration: 4, Func. Count: 31, Neg. LLF: 123.21987938451466
Iteration: 5, Func. Count: 40, Neg. LLF: 123.89407667578257
Iteration: 6, Func. Count: 50, Neg. LLF: 121.74653395009125
Iteration: 7, Func. Count: 58, Neg. LLF: 121.94525826661136
Iteration: 8, Func. Count: 66, Neg. LLF: 121.52063201613016
Iteration: 9, Func. Count: 73, Neg. LLF: 121.51582350455105
Iteration: 10, Func. Count: 80, Neg. LLF: 121.51431448441492
Iteration: 11, Func. Count: 87, Neg. LLF: 121.51430622876376
Iteration: 12, Func. Count: 93, Neg. LLF: 121.51430622868226
Optimization terminated successfully (Exit mode 0)
Current function value: 121.51430622876376
Iterations: 12
Function evaluations: 93
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 129.46226050264076
Iteration: 2, Func. Count: 18, Neg. LLF: 124.27039465648714
Iteration: 3, Func. Count: 27, Neg. LLF: 124.94651043147441
Iteration: 4, Func. Count: 36, Neg. LLF: 124.05659163647577
Iteration: 5, Func. Count: 45, Neg. LLF: 125.3513271668707
Iteration: 6, Func. Count: 54, Neg. LLF: 121.82686123703033
Iteration: 7, Func. Count: 62, Neg. LLF: 121.80225279241448
Iteration: 8, Func. Count: 71, Neg. LLF: 121.52314800167073
Iteration: 9, Func. Count: 79, Neg. LLF: 121.5150266177835
Iteration: 10, Func. Count: 87, Neg. LLF: 121.51433992020026
Iteration: 11, Func. Count: 95, Neg. LLF: 121.51430838280353
Iteration: 12, Func. Count: 103, Neg. LLF: 121.5143058735025
Iteration: 13, Func. Count: 110, Neg. LLF: 121.51430588739393
Optimization terminated successfully (Exit mode 0)
Current function value: 121.5143058735025
Iterations: 13
Function evaluations: 110
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 130.76871963157456
Iteration: 2, Func. Count: 20, Neg. LLF: 124.46581077134303
Iteration: 3, Func. Count: 30, Neg. LLF: 123.77659818027956
Iteration: 4, Func. Count: 40, Neg. LLF: 123.24093390182492
Iteration: 5, Func. Count: 50, Neg. LLF: 130.808248309118
Iteration: 6, Func. Count: 60, Neg. LLF: 121.82128930658284
Iteration: 7, Func. Count: 69, Neg. LLF: 121.89083607386183
Iteration: 8, Func. Count: 79, Neg. LLF: 121.52408249658377
Iteration: 9, Func. Count: 88, Neg. LLF: 121.51531134890128
Iteration: 10, Func. Count: 97, Neg. LLF: 121.51431912671515
Iteration: 11, Func. Count: 106, Neg. LLF: 121.51430682184608
Iteration: 12, Func. Count: 115, Neg. LLF: 121.51430586185327
Optimization terminated successfully (Exit mode 0)
Current function value: 121.51430586185327
Iterations: 12
Function evaluations: 115
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 129.84807633827134
Iteration: 2, Func. Count: 22, Neg. LLF: 124.93078136083126
Iteration: 3, Func. Count: 33, Neg. LLF: 128.6283235067167
Iteration: 4, Func. Count: 44, Neg. LLF: 125.30175225675511
Iteration: 5, Func. Count: 55, Neg. LLF: 123.00032260876849
Iteration: 6, Func. Count: 66, Neg. LLF: 122.37901440265163
Iteration: 7, Func. Count: 77, Neg. LLF: 121.83521038502793
Iteration: 8, Func. Count: 88, Neg. LLF: 121.70750312742523
Iteration: 9, Func. Count: 98, Neg. LLF: 121.61116384057165
Iteration: 10, Func. Count: 108, Neg. LLF: 121.55687962364625
Iteration: 11, Func. Count: 118, Neg. LLF: 121.51467788277746
Iteration: 12, Func. Count: 128, Neg. LLF: 121.51437477022327
Iteration: 13, Func. Count: 138, Neg. LLF: 121.51430785895717
Iteration: 14, Func. Count: 148, Neg. LLF: 121.51430734079783
Iteration: 15, Func. Count: 158, Neg. LLF: 121.51430595623955
Optimization terminated successfully (Exit mode 0)
Current function value: 121.51430594255429
Iterations: 15
Function evaluations: 158
Gradient evaluations: 15
Iteration: 1, Func. Count: 12, Neg. LLF: 129.3579120015977
Iteration: 2, Func. Count: 24, Neg. LLF: 124.15788622084932
Iteration: 3, Func. Count: 36, Neg. LLF: 124.54504006497977
Iteration: 4, Func. Count: 48, Neg. LLF: 125.58753711647847
Iteration: 5, Func. Count: 60, Neg. LLF: 122.4437064797368
Iteration: 6, Func. Count: 72, Neg. LLF: 123.04813996715085
Iteration: 7, Func. Count: 84, Neg. LLF: 121.79364149129482
Iteration: 8, Func. Count: 95, Neg. LLF: 121.69500257684739
Iteration: 9, Func. Count: 106, Neg. LLF: 122.73441601487328
Iteration: 10, Func. Count: 119, Neg. LLF: 122.18740096472035
Iteration: 11, Func. Count: 131, Neg. LLF: 121.5400121487241
Iteration: 12, Func. Count: 142, Neg. LLF: 121.51836128258992
Iteration: 13, Func. Count: 153, Neg. LLF: 121.51478074900153
Iteration: 14, Func. Count: 164, Neg. LLF: 121.51432339187556
Iteration: 15, Func. Count: 175, Neg. LLF: 121.51430586668735
Iteration: 16, Func. Count: 185, Neg. LLF: 121.51430591189398
Optimization terminated successfully (Exit mode 0)
Current function value: 121.51430586668735
Iterations: 16
Function evaluations: 185
Gradient evaluations: 16
Iteration: 1, Func. Count: 9, Neg. LLF: 131.30161123977004
Iteration: 2, Func. Count: 18, Neg. LLF: 136.17391911819035
Iteration: 3, Func. Count: 27, Neg. LLF: 122.02346599340478
Iteration: 4, Func. Count: 35, Neg. LLF: 123.39816046492821
Iteration: 5, Func. Count: 45, Neg. LLF: 123.49783293483088
Iteration: 6, Func. Count: 56, Neg. LLF: 121.7538231385968
Iteration: 7, Func. Count: 65, Neg. LLF: 121.76782554377439
Iteration: 8, Func. Count: 74, Neg. LLF: 121.5254126766264
Iteration: 9, Func. Count: 82, Neg. LLF: 121.53534396426652
Iteration: 10, Func. Count: 91, Neg. LLF: 121.51432847258651
Iteration: 11, Func. Count: 99, Neg. LLF: 121.5143065756429
Iteration: 12, Func. Count: 107, Neg. LLF: 121.51430586445493
Optimization terminated successfully (Exit mode 0)
Current function value: 121.51430586445493
Iterations: 12
Function evaluations: 107
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 129.38401430242817
Iteration: 2, Func. Count: 20, Neg. LLF: 124.20456823608811
Iteration: 3, Func. Count: 30, Neg. LLF: 125.52887201734652
Iteration: 4, Func. Count: 40, Neg. LLF: 124.61226980570336
Iteration: 5, Func. Count: 50, Neg. LLF: 123.79493948363888
Iteration: 6, Func. Count: 60, Neg. LLF: 121.77928674493094
Iteration: 7, Func. Count: 69, Neg. LLF: 121.80936265280086
Iteration: 8, Func. Count: 79, Neg. LLF: 121.52428180643886
Iteration: 9, Func. Count: 88, Neg. LLF: 121.51542508096452
Iteration: 10, Func. Count: 97, Neg. LLF: 121.514365782947
Iteration: 11, Func. Count: 106, Neg. LLF: 121.51430733088466
Iteration: 12, Func. Count: 115, Neg. LLF: 121.51430597372386
Iteration: 13, Func. Count: 123, Neg. LLF: 121.514305987642
Optimization terminated successfully (Exit mode 0)
Current function value: 121.51430597372386
Iterations: 13
Function evaluations: 123
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 130.7059525915543
Iteration: 2, Func. Count: 22, Neg. LLF: 124.38691057803038
Iteration: 3, Func. Count: 33, Neg. LLF: 124.03048069386695
Iteration: 4, Func. Count: 44, Neg. LLF: 123.35467454143954
Iteration: 5, Func. Count: 55, Neg. LLF: 129.56116412713706
Iteration: 6, Func. Count: 66, Neg. LLF: 121.80761257682664
Iteration: 7, Func. Count: 76, Neg. LLF: 121.89495289491269
Iteration: 8, Func. Count: 87, Neg. LLF: 121.52369188836794
Iteration: 9, Func. Count: 97, Neg. LLF: 121.51501089349058
Iteration: 10, Func. Count: 107, Neg. LLF: 121.51431321844598
Iteration: 11, Func. Count: 117, Neg. LLF: 121.51430595525689
Iteration: 12, Func. Count: 126, Neg. LLF: 121.51430599650087
Optimization terminated successfully (Exit mode 0)
Current function value: 121.51430595525689
Iterations: 12
Function evaluations: 126
Gradient evaluations: 12
Iteration: 1, Func. Count: 12, Neg. LLF: 129.80801880600077
Iteration: 2, Func. Count: 24, Neg. LLF: 124.96925210176863
Iteration: 3, Func. Count: 36, Neg. LLF: 129.66673768946342
Iteration: 4, Func. Count: 48, Neg. LLF: 125.30517084877515
Iteration: 5, Func. Count: 60, Neg. LLF: 122.83603470171104
Iteration: 6, Func. Count: 71, Neg. LLF: 124.14594792957209
Iteration: 7, Func. Count: 83, Neg. LLF: 122.28624520176712
Iteration: 8, Func. Count: 95, Neg. LLF: 122.26273390754321
Iteration: 9, Func. Count: 108, Neg. LLF: 121.97784100898014
Iteration: 10, Func. Count: 120, Neg. LLF: 121.571237549692
Iteration: 11, Func. Count: 131, Neg. LLF: 121.52122955017435
Iteration: 12, Func. Count: 142, Neg. LLF: 121.51627140903416
Iteration: 13, Func. Count: 153, Neg. LLF: 121.51490202717574
Iteration: 14, Func. Count: 164, Neg. LLF: 121.51436626335924
Iteration: 15, Func. Count: 175, Neg. LLF: 121.51431162749094
Iteration: 16, Func. Count: 186, Neg. LLF: 121.51430618829238
Iteration: 17, Func. Count: 196, Neg. LLF: 121.51430620201515
Optimization terminated successfully (Exit mode 0)
Current function value: 121.51430618829238
Iterations: 17
Function evaluations: 196
Gradient evaluations: 17
Iteration: 1, Func. Count: 13, Neg. LLF: 129.32841520110318
Iteration: 2, Func. Count: 26, Neg. LLF: 124.13545923900718
Iteration: 3, Func. Count: 39, Neg. LLF: 125.06530420408478
Iteration: 4, Func. Count: 52, Neg. LLF: 126.57926383200193
Iteration: 5, Func. Count: 65, Neg. LLF: 122.08118390688709
Iteration: 6, Func. Count: 77, Neg. LLF: 123.41490368263166
Iteration: 7, Func. Count: 90, Neg. LLF: 121.71025428495167
Iteration: 8, Func. Count: 102, Neg. LLF: 121.94260446790175
Iteration: 9, Func. Count: 115, Neg. LLF: 123.06974872184836
Iteration: 10, Func. Count: 128, Neg. LLF: 121.59521617747377
Iteration: 11, Func. Count: 140, Neg. LLF: 121.51843399013157
Iteration: 12, Func. Count: 152, Neg. LLF: 121.51527364261439
Iteration: 13, Func. Count: 164, Neg. LLF: 121.51438937490178
Iteration: 14, Func. Count: 176, Neg. LLF: 121.51430657291183
Iteration: 15, Func. Count: 188, Neg. LLF: 121.51430586734118
Optimization terminated successfully (Exit mode 0)
Current function value: 121.51430586734118
Iterations: 15
Function evaluations: 188
Gradient evaluations: 15
Iteration: 1, Func. Count: 6, Neg. LLF: 131.79672198064753
Iteration: 2, Func. Count: 12, Neg. LLF: 175.71672321887695
Iteration: 3, Func. Count: 18, Neg. LLF: 124.68554188013967
Iteration: 4, Func. Count: 23, Neg. LLF: 124.63845272848887
Iteration: 5, Func. Count: 28, Neg. LLF: 124.62492510363313
Iteration: 6, Func. Count: 33, Neg. LLF: 124.62403709237508
Iteration: 7, Func. Count: 38, Neg. LLF: 124.62360988570417
Iteration: 8, Func. Count: 43, Neg. LLF: 124.62344929795239
Iteration: 9, Func. Count: 48, Neg. LLF: 124.62344334231943
Iteration: 10, Func. Count: 52, Neg. LLF: 124.62344335056778
Optimization terminated successfully (Exit mode 0)
Current function value: 124.62344334231943
Iterations: 10
Function evaluations: 52
Gradient evaluations: 10
Iteration: 1, Func. Count: 7, Neg. LLF: 131.0955097551235
Iteration: 2, Func. Count: 14, Neg. LLF: 136.03301478907716
Iteration: 3, Func. Count: 21, Neg. LLF: 124.75574888918672
Iteration: 4, Func. Count: 27, Neg. LLF: 124.68157248385975
Iteration: 5, Func. Count: 33, Neg. LLF: 124.64932841810027
Iteration: 6, Func. Count: 39, Neg. LLF: 124.63257860531772
Iteration: 7, Func. Count: 45, Neg. LLF: 124.62396422668138
Iteration: 8, Func. Count: 51, Neg. LLF: 124.62361386594608
Iteration: 9, Func. Count: 57, Neg. LLF: 124.62347592749526
Iteration: 10, Func. Count: 63, Neg. LLF: 124.62344490375125
Iteration: 11, Func. Count: 69, Neg. LLF: 124.62344320791084
Iteration: 12, Func. Count: 74, Neg. LLF: 124.62344321184715
Optimization terminated successfully (Exit mode 0)
Current function value: 124.62344320791084
Iterations: 12
Function evaluations: 74
Gradient evaluations: 12
Iteration: 1, Func. Count: 8, Neg. LLF: 130.11809619863584
Iteration: 2, Func. Count: 16, Neg. LLF: 138.42132116139268
Iteration: 3, Func. Count: 24, Neg. LLF: 124.75166105498371
Iteration: 4, Func. Count: 31, Neg. LLF: 124.66412912256473
Iteration: 5, Func. Count: 38, Neg. LLF: 124.62600935186383
Iteration: 6, Func. Count: 45, Neg. LLF: 124.62392828963553
Iteration: 7, Func. Count: 52, Neg. LLF: 124.62362298804553
Iteration: 8, Func. Count: 59, Neg. LLF: 124.62344839046045
Iteration: 9, Func. Count: 66, Neg. LLF: 124.6234432812505
Iteration: 10, Func. Count: 72, Neg. LLF: 124.62344330691751
Optimization terminated successfully (Exit mode 0)
Current function value: 124.6234432812505
Iterations: 10
Function evaluations: 72
Gradient evaluations: 10
Iteration: 1, Func. Count: 9, Neg. LLF: 129.11190220741406
Iteration: 2, Func. Count: 18, Neg. LLF: 138.55981858375043
Iteration: 3, Func. Count: 27, Neg. LLF: 124.74069125281056
Iteration: 4, Func. Count: 35, Neg. LLF: 124.65101406223569
Iteration: 5, Func. Count: 43, Neg. LLF: 124.63943133377997
Iteration: 6, Func. Count: 51, Neg. LLF: 124.63391708864397
Iteration: 7, Func. Count: 59, Neg. LLF: 124.62468119780051
Iteration: 8, Func. Count: 67, Neg. LLF: 124.62390969781572
Iteration: 9, Func. Count: 75, Neg. LLF: 124.6235534896291
Iteration: 10, Func. Count: 83, Neg. LLF: 124.62344419386878
Iteration: 11, Func. Count: 91, Neg. LLF: 124.6234432037265
Optimization terminated successfully (Exit mode 0)
Current function value: 124.6234432037265
Iterations: 11
Function evaluations: 91
Gradient evaluations: 11
Iteration: 1, Func. Count: 10, Neg. LLF: 128.0171814048599
Iteration: 2, Func. Count: 20, Neg. LLF: 135.15810388949205
Iteration: 3, Func. Count: 30, Neg. LLF: 124.74715195305536
Iteration: 4, Func. Count: 39, Neg. LLF: 167.19505932051035
Iteration: 5, Func. Count: 49, Neg. LLF: 125.72656229910739
Iteration: 6, Func. Count: 59, Neg. LLF: 124.55517744475225
Iteration: 7, Func. Count: 68, Neg. LLF: 124.55334112062772
Iteration: 8, Func. Count: 77, Neg. LLF: 124.55312702787886
Iteration: 9, Func. Count: 86, Neg. LLF: 124.55309321535661
Iteration: 10, Func. Count: 95, Neg. LLF: 124.55309049106695
Iteration: 11, Func. Count: 104, Neg. LLF: 124.55308911157712
Iteration: 12, Func. Count: 112, Neg. LLF: 124.55308911158482
Optimization terminated successfully (Exit mode 0)
Current function value: 124.55308911157712
Iterations: 12
Function evaluations: 112
Gradient evaluations: 12
Iteration: 1, Func. Count: 7, Neg. LLF: 133.02758754289977
Iteration: 2, Func. Count: 14, Neg. LLF: 174.42310824125772
Iteration: 3, Func. Count: 21, Neg. LLF: 123.51004318999283
Iteration: 4, Func. Count: 27, Neg. LLF: 128.9613749242919
Iteration: 5, Func. Count: 35, Neg. LLF: 136.88016219612396
Iteration: 6, Func. Count: 43, Neg. LLF: 121.9811694338713
Iteration: 7, Func. Count: 49, Neg. LLF: 121.72709918302736
Iteration: 8, Func. Count: 55, Neg. LLF: 121.64429225111304
Iteration: 9, Func. Count: 61, Neg. LLF: 121.63101950277472
Iteration: 10, Func. Count: 67, Neg. LLF: 121.63057783194036
Iteration: 11, Func. Count: 73, Neg. LLF: 121.63056975729774
Iteration: 12, Func. Count: 79, Neg. LLF: 121.6305690608675
Optimization terminated successfully (Exit mode 0)
Current function value: 121.6305690608675
Iterations: 12
Function evaluations: 79
Gradient evaluations: 12
Iteration: 1, Func. Count: 8, Neg. LLF: 130.24440736585117
Iteration: 2, Func. Count: 16, Neg. LLF: 135.41309994182942
Iteration: 3, Func. Count: 24, Neg. LLF: 122.6516745052796
Iteration: 4, Func. Count: 32, Neg. LLF: 123.09781564180862
Iteration: 5, Func. Count: 40, Neg. LLF: 122.13606895040627
Iteration: 6, Func. Count: 48, Neg. LLF: 121.65433338680998
Iteration: 7, Func. Count: 55, Neg. LLF: 121.63080419849312
Iteration: 8, Func. Count: 62, Neg. LLF: 121.63058156992922
Iteration: 9, Func. Count: 69, Neg. LLF: 121.63056926458987
Iteration: 10, Func. Count: 75, Neg. LLF: 121.63056928161085
Optimization terminated successfully (Exit mode 0)
Current function value: 121.63056926458987
Iterations: 10
Function evaluations: 75
Gradient evaluations: 10
Iteration: 1, Func. Count: 9, Neg. LLF: 132.36629776145423
Iteration: 2, Func. Count: 18, Neg. LLF: 133.68992181864755
Iteration: 3, Func. Count: 27, Neg. LLF: 123.34676954875637
Iteration: 4, Func. Count: 36, Neg. LLF: 127.99316872907194
Iteration: 5, Func. Count: 45, Neg. LLF: 121.96630137111237
Iteration: 6, Func. Count: 53, Neg. LLF: 121.86769689369997
Iteration: 7, Func. Count: 61, Neg. LLF: 121.66452094299989
Iteration: 8, Func. Count: 69, Neg. LLF: 121.63177038321572
Iteration: 9, Func. Count: 77, Neg. LLF: 121.63058434247833
Iteration: 10, Func. Count: 85, Neg. LLF: 121.63056927687686
Iteration: 11, Func. Count: 92, Neg. LLF: 121.6305693157309
Optimization terminated successfully (Exit mode 0)
Current function value: 121.63056927687686
Iterations: 11
Function evaluations: 92
Gradient evaluations: 11
Iteration: 1, Func. Count: 10, Neg. LLF: 132.3263288845779
Iteration: 2, Func. Count: 20, Neg. LLF: 132.21373875195917
Iteration: 3, Func. Count: 30, Neg. LLF: 123.8965371058599
Iteration: 4, Func. Count: 40, Neg. LLF: 130.267677349434
Iteration: 5, Func. Count: 50, Neg. LLF: 121.95943905789022
Iteration: 6, Func. Count: 59, Neg. LLF: 121.85156187310457
Iteration: 7, Func. Count: 68, Neg. LLF: 121.66576653940544
Iteration: 8, Func. Count: 77, Neg. LLF: 121.6357603182379
Iteration: 9, Func. Count: 86, Neg. LLF: 121.63071027568677
Iteration: 10, Func. Count: 95, Neg. LLF: 121.63051536622103
Iteration: 11, Func. Count: 104, Neg. LLF: 121.6305067870796
Iteration: 12, Func. Count: 113, Neg. LLF: 121.63050443335143
Iteration: 13, Func. Count: 121, Neg. LLF: 121.6305044333546
Optimization terminated successfully (Exit mode 0)
Current function value: 121.63050443335143
Iterations: 13
Function evaluations: 121
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 132.00603088904336
Iteration: 2, Func. Count: 22, Neg. LLF: 130.95536431070676
Iteration: 3, Func. Count: 33, Neg. LLF: 124.21722642444037
Iteration: 4, Func. Count: 44, Neg. LLF: 124.3974203571301
Iteration: 5, Func. Count: 55, Neg. LLF: 122.5099480480421
Iteration: 6, Func. Count: 66, Neg. LLF: 121.82341179388072
Iteration: 7, Func. Count: 76, Neg. LLF: 121.64932198979493
Iteration: 8, Func. Count: 86, Neg. LLF: 121.63361941710771
Iteration: 9, Func. Count: 96, Neg. LLF: 121.63052938782738
Iteration: 10, Func. Count: 106, Neg. LLF: 121.63050490731628
Iteration: 11, Func. Count: 116, Neg. LLF: 121.63050444016898
Optimization terminated successfully (Exit mode 0)
Current function value: 121.63050444016898
Iterations: 11
Function evaluations: 116
Gradient evaluations: 11
Iteration: 1, Func. Count: 8, Neg. LLF: 132.7180110001174
Iteration: 2, Func. Count: 16, Neg. LLF: 170.1465660432008
Iteration: 3, Func. Count: 24, Neg. LLF: 122.56104290936399
Iteration: 4, Func. Count: 31, Neg. LLF: 129.54328432581664
Iteration: 5, Func. Count: 40, Neg. LLF: 129.57387513630914
Iteration: 6, Func. Count: 50, Neg. LLF: 123.53187170615784
Iteration: 7, Func. Count: 58, Neg. LLF: 121.87756584191715
Iteration: 8, Func. Count: 65, Neg. LLF: 121.72321248472848
Iteration: 9, Func. Count: 72, Neg. LLF: 121.60642736422177
Iteration: 10, Func. Count: 79, Neg. LLF: 121.59606598256632
Iteration: 11, Func. Count: 86, Neg. LLF: 121.59540050284048
Iteration: 12, Func. Count: 93, Neg. LLF: 121.59524652948606
Iteration: 13, Func. Count: 100, Neg. LLF: 121.59522873603085
Iteration: 14, Func. Count: 107, Neg. LLF: 121.59522803890785
Optimization terminated successfully (Exit mode 0)
Current function value: 121.59522803890785
Iterations: 14
Function evaluations: 107
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 130.1924306694857
Iteration: 2, Func. Count: 18, Neg. LLF: 135.53900733328655
Iteration: 3, Func. Count: 27, Neg. LLF: 122.64651223896429
Iteration: 4, Func. Count: 36, Neg. LLF: 123.41214834471353
Iteration: 5, Func. Count: 45, Neg. LLF: 123.26814096014742
Iteration: 6, Func. Count: 54, Neg. LLF: 121.66746875644483
Iteration: 7, Func. Count: 62, Neg. LLF: 121.64885167199634
Iteration: 8, Func. Count: 71, Neg. LLF: 121.59616433476481
Iteration: 9, Func. Count: 79, Neg. LLF: 121.59523072701299
Iteration: 10, Func. Count: 87, Neg. LLF: 121.59522806960189
Iteration: 11, Func. Count: 94, Neg. LLF: 121.59522807815229
Optimization terminated successfully (Exit mode 0)
Current function value: 121.59522806960189
Iterations: 11
Function evaluations: 94
Gradient evaluations: 11
Iteration: 1, Func. Count: 10, Neg. LLF: 132.0272138184614
Iteration: 2, Func. Count: 20, Neg. LLF: 133.7591736600624
Iteration: 3, Func. Count: 30, Neg. LLF: 123.31009381533327
Iteration: 4, Func. Count: 40, Neg. LLF: 127.95456908816415
Iteration: 5, Func. Count: 50, Neg. LLF: 123.09364361281061
Iteration: 6, Func. Count: 60, Neg. LLF: 121.78719915215059
Iteration: 7, Func. Count: 69, Neg. LLF: 121.64340727088351
Iteration: 8, Func. Count: 78, Neg. LLF: 121.59764037725745
Iteration: 9, Func. Count: 87, Neg. LLF: 121.5954669775563
Iteration: 10, Func. Count: 96, Neg. LLF: 121.59523204691635
Iteration: 11, Func. Count: 105, Neg. LLF: 121.5952280202159
Iteration: 12, Func. Count: 113, Neg. LLF: 121.59522806320697
Optimization terminated successfully (Exit mode 0)
Current function value: 121.5952280202159
Iterations: 12
Function evaluations: 113
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 131.54555191552237
Iteration: 2, Func. Count: 22, Neg. LLF: 132.38472058429275
Iteration: 3, Func. Count: 33, Neg. LLF: 123.72546219073048
Iteration: 4, Func. Count: 44, Neg. LLF: 130.54079054888786
Iteration: 5, Func. Count: 55, Neg. LLF: 123.11399834309844
Iteration: 6, Func. Count: 66, Neg. LLF: 121.73463431276252
Iteration: 7, Func. Count: 76, Neg. LLF: 121.6154052929824
Iteration: 8, Func. Count: 86, Neg. LLF: 121.5994139076198
Iteration: 9, Func. Count: 96, Neg. LLF: 121.5943704258305
Iteration: 10, Func. Count: 106, Neg. LLF: 121.59421608591408
Iteration: 11, Func. Count: 116, Neg. LLF: 121.59420404511562
Iteration: 12, Func. Count: 125, Neg. LLF: 121.59420404511745
Optimization terminated successfully (Exit mode 0)
Current function value: 121.59420404511562
Iterations: 12
Function evaluations: 125
Gradient evaluations: 12
Iteration: 1, Func. Count: 12, Neg. LLF: 131.79207519428542
Iteration: 2, Func. Count: 24, Neg. LLF: 130.90930965227344
Iteration: 3, Func. Count: 36, Neg. LLF: 124.25071092878228
Iteration: 4, Func. Count: 48, Neg. LLF: 123.95853948712708
Iteration: 5, Func. Count: 60, Neg. LLF: 125.50344330688827
Iteration: 6, Func. Count: 72, Neg. LLF: 121.75639977105993
Iteration: 7, Func. Count: 83, Neg. LLF: 121.69269639659095
Iteration: 8, Func. Count: 94, Neg. LLF: 121.62357192179904
Iteration: 9, Func. Count: 105, Neg. LLF: 121.59779536594121
Iteration: 10, Func. Count: 116, Neg. LLF: 121.59427277558311
Iteration: 11, Func. Count: 127, Neg. LLF: 121.59420736092535
Iteration: 12, Func. Count: 138, Neg. LLF: 121.59420404516875
Iteration: 13, Func. Count: 148, Neg. LLF: 121.59420408716895
Optimization terminated successfully (Exit mode 0)
Current function value: 121.59420404516875
Iterations: 13
Function evaluations: 148
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 131.51808869134263
Iteration: 2, Func. Count: 18, Neg. LLF: 165.56404741283248
Iteration: 3, Func. Count: 27, Neg. LLF: 122.47334960029274
Iteration: 4, Func. Count: 35, Neg. LLF: 125.04721731825028
Iteration: 5, Func. Count: 46, Neg. LLF: 128.4024911387226
Iteration: 6, Func. Count: 57, Neg. LLF: 123.41770753168225
Iteration: 7, Func. Count: 68, Neg. LLF: 122.59904354648445
Iteration: 8, Func. Count: 77, Neg. LLF: 121.71031638867758
Iteration: 9, Func. Count: 85, Neg. LLF: 121.55143371833184
Iteration: 10, Func. Count: 93, Neg. LLF: 121.5157376230811
Iteration: 11, Func. Count: 101, Neg. LLF: 121.51455756378492
Iteration: 12, Func. Count: 109, Neg. LLF: 121.51433432979809
Iteration: 13, Func. Count: 117, Neg. LLF: 121.51430702659073
Iteration: 14, Func. Count: 125, Neg. LLF: 121.51430590608771
Iteration: 15, Func. Count: 132, Neg. LLF: 121.514305906117
Optimization terminated successfully (Exit mode 0)
Current function value: 121.51430590608771
Iterations: 15
Function evaluations: 132
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 130.87898335624203
Iteration: 2, Func. Count: 20, Neg. LLF: 130.0857936770485
Iteration: 3, Func. Count: 30, Neg. LLF: 123.5127696213356
Iteration: 4, Func. Count: 40, Neg. LLF: 125.24090200206163
Iteration: 5, Func. Count: 50, Neg. LLF: 123.80526784718998
Iteration: 6, Func. Count: 60, Neg. LLF: 121.83775220887917
Iteration: 7, Func. Count: 69, Neg. LLF: 121.69672307511091
Iteration: 8, Func. Count: 78, Neg. LLF: 121.5758652788413
Iteration: 9, Func. Count: 87, Neg. LLF: 121.52637799450847
Iteration: 10, Func. Count: 96, Neg. LLF: 121.51930646681107
Iteration: 11, Func. Count: 105, Neg. LLF: 121.5145375190033
Iteration: 12, Func. Count: 114, Neg. LLF: 121.51431042856109
Iteration: 13, Func. Count: 123, Neg. LLF: 121.51430590824275
Iteration: 14, Func. Count: 131, Neg. LLF: 121.51430592212671
Optimization terminated successfully (Exit mode 0)
Current function value: 121.51430590824275
Iterations: 14
Function evaluations: 131
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 131.39762687928567
Iteration: 2, Func. Count: 22, Neg. LLF: 134.1764199346023
Iteration: 3, Func. Count: 33, Neg. LLF: 123.10190503329157
Iteration: 4, Func. Count: 44, Neg. LLF: 131.69423345959436
Iteration: 5, Func. Count: 55, Neg. LLF: 121.75111979902505
Iteration: 6, Func. Count: 65, Neg. LLF: 121.78435278595055
Iteration: 7, Func. Count: 76, Neg. LLF: 121.99017073856933
Iteration: 8, Func. Count: 87, Neg. LLF: 121.52190979284035
Iteration: 9, Func. Count: 97, Neg. LLF: 121.51482621161614
Iteration: 10, Func. Count: 107, Neg. LLF: 121.51431857681979
Iteration: 11, Func. Count: 117, Neg. LLF: 121.5143059975674
Iteration: 12, Func. Count: 126, Neg. LLF: 121.51430603877617
Optimization terminated successfully (Exit mode 0)
Current function value: 121.5143059975674
Iterations: 12
Function evaluations: 126
Gradient evaluations: 12
Iteration: 1, Func. Count: 12, Neg. LLF: 129.24916654349678
Iteration: 2, Func. Count: 24, Neg. LLF: 133.80588743699337
Iteration: 3, Func. Count: 36, Neg. LLF: 122.91392972675318
Iteration: 4, Func. Count: 48, Neg. LLF: 131.2493774278156
Iteration: 5, Func. Count: 60, Neg. LLF: 124.62263500838213
Iteration: 6, Func. Count: 73, Neg. LLF: 121.62152301527033
Iteration: 7, Func. Count: 84, Neg. LLF: 121.85341693621666
Iteration: 8, Func. Count: 96, Neg. LLF: 121.51458430699226
Iteration: 9, Func. Count: 107, Neg. LLF: 121.51435572121113
Iteration: 10, Func. Count: 118, Neg. LLF: 121.51430619859204
Iteration: 11, Func. Count: 128, Neg. LLF: 121.51430621236146
Optimization terminated successfully (Exit mode 0)
Current function value: 121.51430619859204
Iterations: 11
Function evaluations: 128
Gradient evaluations: 11
Iteration: 1, Func. Count: 13, Neg. LLF: 131.9758466292701
Iteration: 2, Func. Count: 26, Neg. LLF: 130.9429712918464
Iteration: 3, Func. Count: 39, Neg. LLF: 124.25046879128811
Iteration: 4, Func. Count: 52, Neg. LLF: 146.11232609736234
Iteration: 5, Func. Count: 65, Neg. LLF: 128.75417282158145
Iteration: 6, Func. Count: 78, Neg. LLF: 123.11070030292244
Iteration: 7, Func. Count: 91, Neg. LLF: 121.59686946896909
Iteration: 8, Func. Count: 103, Neg. LLF: 121.52818652572543
Iteration: 9, Func. Count: 115, Neg. LLF: 121.516262066415
Iteration: 10, Func. Count: 127, Neg. LLF: 121.51443931712478
Iteration: 11, Func. Count: 139, Neg. LLF: 121.51430711688413
Iteration: 12, Func. Count: 151, Neg. LLF: 121.5143058768915
Iteration: 13, Func. Count: 162, Neg. LLF: 121.51430592209985
Optimization terminated successfully (Exit mode 0)
Current function value: 121.5143058768915
Iterations: 13
Function evaluations: 162
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 133.02366480278047
Iteration: 2, Func. Count: 20, Neg. LLF: 174.14294805849747
Iteration: 3, Func. Count: 30, Neg. LLF: 122.60936071635562
Iteration: 4, Func. Count: 39, Neg. LLF: 125.73854377297491
Iteration: 5, Func. Count: 51, Neg. LLF: 128.7789413291521
Iteration: 6, Func. Count: 63, Neg. LLF: 123.51337762742759
Iteration: 7, Func. Count: 74, Neg. LLF: 122.70877978932243
Iteration: 8, Func. Count: 84, Neg. LLF: 121.81614825097567
Iteration: 9, Func. Count: 93, Neg. LLF: 121.56755867105464
Iteration: 10, Func. Count: 102, Neg. LLF: 121.51751409364755
Iteration: 11, Func. Count: 111, Neg. LLF: 121.51508004985736
Iteration: 12, Func. Count: 120, Neg. LLF: 121.51447016701499
Iteration: 13, Func. Count: 129, Neg. LLF: 121.5143092102469
Iteration: 14, Func. Count: 138, Neg. LLF: 121.5143058917442
Iteration: 15, Func. Count: 146, Neg. LLF: 121.51430597209881
Optimization terminated successfully (Exit mode 0)
Current function value: 121.5143058917442
Iterations: 15
Function evaluations: 146
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 130.79082912783045
Iteration: 2, Func. Count: 22, Neg. LLF: 129.5974804888509
Iteration: 3, Func. Count: 33, Neg. LLF: 123.61437881036314
Iteration: 4, Func. Count: 44, Neg. LLF: 125.48856155874631
Iteration: 5, Func. Count: 55, Neg. LLF: 123.3254741680377
Iteration: 6, Func. Count: 66, Neg. LLF: 121.82136002724874
Iteration: 7, Func. Count: 76, Neg. LLF: 121.7459835633943
Iteration: 8, Func. Count: 87, Neg. LLF: 121.51675843875675
Iteration: 9, Func. Count: 97, Neg. LLF: 121.51482224226147
Iteration: 10, Func. Count: 107, Neg. LLF: 121.51434283396763
Iteration: 11, Func. Count: 117, Neg. LLF: 121.51430647488603
Iteration: 12, Func. Count: 127, Neg. LLF: 121.51430585865654
Optimization terminated successfully (Exit mode 0)
Current function value: 121.51430585865654
Iterations: 12
Function evaluations: 127
Gradient evaluations: 12
Iteration: 1, Func. Count: 12, Neg. LLF: 131.21510565910356
Iteration: 2, Func. Count: 24, Neg. LLF: 134.121044212523
Iteration: 3, Func. Count: 36, Neg. LLF: 123.08201479719862
Iteration: 4, Func. Count: 48, Neg. LLF: 131.42458164349293
Iteration: 5, Func. Count: 60, Neg. LLF: 121.90620165272995
Iteration: 6, Func. Count: 71, Neg. LLF: 121.7022412421738
Iteration: 7, Func. Count: 82, Neg. LLF: 122.56634228858253
Iteration: 8, Func. Count: 94, Neg. LLF: 121.54251992508348
Iteration: 9, Func. Count: 105, Neg. LLF: 121.51891337447466
Iteration: 10, Func. Count: 116, Neg. LLF: 121.51850127377153
Iteration: 11, Func. Count: 128, Neg. LLF: 121.5143259065722
Iteration: 12, Func. Count: 139, Neg. LLF: 121.51430684109931
Iteration: 13, Func. Count: 150, Neg. LLF: 121.51430588443091
Optimization terminated successfully (Exit mode 0)
Current function value: 121.51430588443091
Iterations: 13
Function evaluations: 150
Gradient evaluations: 13
Iteration: 1, Func. Count: 13, Neg. LLF: 129.4248390590299
Iteration: 2, Func. Count: 26, Neg. LLF: 133.5882355127866
Iteration: 3, Func. Count: 39, Neg. LLF: 122.97632415782019
Iteration: 4, Func. Count: 52, Neg. LLF: 132.44370022585716
Iteration: 5, Func. Count: 65, Neg. LLF: 123.71870382599222
Iteration: 6, Func. Count: 78, Neg. LLF: 121.58408778887187
Iteration: 7, Func. Count: 90, Neg. LLF: 121.71994660286671
Iteration: 8, Func. Count: 103, Neg. LLF: 121.51459479648575
Iteration: 9, Func. Count: 115, Neg. LLF: 121.51432179508024
Iteration: 10, Func. Count: 127, Neg. LLF: 121.5143060699805
Iteration: 11, Func. Count: 138, Neg. LLF: 121.51430608365703
Optimization terminated successfully (Exit mode 0)
Current function value: 121.5143060699805
Iterations: 11
Function evaluations: 138
Gradient evaluations: 11
Iteration: 1, Func. Count: 14, Neg. LLF: 131.92459978956708
Iteration: 2, Func. Count: 28, Neg. LLF: 130.89931355769875
Iteration: 3, Func. Count: 42, Neg. LLF: 124.25491023866557
Iteration: 4, Func. Count: 56, Neg. LLF: 146.39150321048484
Iteration: 5, Func. Count: 70, Neg. LLF: 128.82731357126008
Iteration: 6, Func. Count: 84, Neg. LLF: 123.10203568541354
Iteration: 7, Func. Count: 98, Neg. LLF: 121.59848540833393
Iteration: 8, Func. Count: 111, Neg. LLF: 121.5284999166824
Iteration: 9, Func. Count: 124, Neg. LLF: 121.51630991521851
Iteration: 10, Func. Count: 137, Neg. LLF: 121.51444071589074
Iteration: 11, Func. Count: 150, Neg. LLF: 121.51430727689021
Iteration: 12, Func. Count: 163, Neg. LLF: 121.5143058787647
Iteration: 13, Func. Count: 175, Neg. LLF: 121.5143059239725
Optimization terminated successfully (Exit mode 0)
Current function value: 121.5143058787647
Iterations: 13
Function evaluations: 175
Gradient evaluations: 13
Iteration: 1, Func. Count: 7, Neg. LLF: 140.15256190642884
Iteration: 2, Func. Count: 14, Neg. LLF: 165.51604901002614
Iteration: 3, Func. Count: 21, Neg. LLF: 124.65912829886896
Iteration: 4, Func. Count: 27, Neg. LLF: 124.63257396905749
Iteration: 5, Func. Count: 33, Neg. LLF: 124.62361456608632
Iteration: 6, Func. Count: 39, Neg. LLF: 124.62349338547246
Iteration: 7, Func. Count: 45, Neg. LLF: 124.62345091250961
Iteration: 8, Func. Count: 51, Neg. LLF: 124.62344334740621
Iteration: 9, Func. Count: 56, Neg. LLF: 124.62344339445286
Optimization terminated successfully (Exit mode 0)
Current function value: 124.62344334740621
Iterations: 9
Function evaluations: 56
Gradient evaluations: 9
Iteration: 1, Func. Count: 8, Neg. LLF: 125.64818465674847
Iteration: 2, Func. Count: 15, Neg. LLF: 129.1523407964389
Iteration: 3, Func. Count: 23, Neg. LLF: 138.61028211618424
Iteration: 4, Func. Count: 31, Neg. LLF: 133.17897476103101
Iteration: 5, Func. Count: 39, Neg. LLF: 124.67180949488528
Iteration: 6, Func. Count: 46, Neg. LLF: 124.63221523610449
Iteration: 7, Func. Count: 53, Neg. LLF: 124.62446524749863
Iteration: 8, Func. Count: 60, Neg. LLF: 124.62346580496973
Iteration: 9, Func. Count: 67, Neg. LLF: 124.62344371807194
Iteration: 10, Func. Count: 73, Neg. LLF: 124.62344372202126
Optimization terminated successfully (Exit mode 0)
Current function value: 124.62344371807194
Iterations: 10
Function evaluations: 73
Gradient evaluations: 10
Iteration: 1, Func. Count: 9, Neg. LLF: 127.81935007581428
Iteration: 2, Func. Count: 18, Neg. LLF: 130.3143242523082
Iteration: 3, Func. Count: 27, Neg. LLF: 124.85587954074782
Iteration: 4, Func. Count: 35, Neg. LLF: 124.676134412866
Iteration: 5, Func. Count: 43, Neg. LLF: 125.47519660551049
Iteration: 6, Func. Count: 53, Neg. LLF: 124.63623887682631
Iteration: 7, Func. Count: 61, Neg. LLF: 124.62568723699393
Iteration: 8, Func. Count: 69, Neg. LLF: 124.62430512498938
Iteration: 9, Func. Count: 77, Neg. LLF: 124.62345430780309
Iteration: 10, Func. Count: 85, Neg. LLF: 124.62344342497713
Iteration: 11, Func. Count: 92, Neg. LLF: 124.62344345064047
Optimization terminated successfully (Exit mode 0)
Current function value: 124.62344342497713
Iterations: 11
Function evaluations: 92
Gradient evaluations: 11
Iteration: 1, Func. Count: 10, Neg. LLF: 131.45711849459175
Iteration: 2, Func. Count: 20, Neg. LLF: 138.02404237762266
Iteration: 3, Func. Count: 30, Neg. LLF: 124.76908208393006
Iteration: 4, Func. Count: 39, Neg. LLF: 124.65665589580226
Iteration: 5, Func. Count: 48, Neg. LLF: 124.62528230055287
Iteration: 6, Func. Count: 57, Neg. LLF: 124.62367661183002
Iteration: 7, Func. Count: 66, Neg. LLF: 124.62351306101228
Iteration: 8, Func. Count: 75, Neg. LLF: 124.62345813650018
Iteration: 9, Func. Count: 84, Neg. LLF: 124.62344364099404
Iteration: 10, Func. Count: 92, Neg. LLF: 124.62344369480995
Optimization terminated successfully (Exit mode 0)
Current function value: 124.62344364099404
Iterations: 10
Function evaluations: 92
Gradient evaluations: 10
Iteration: 1, Func. Count: 11, Neg. LLF: 130.88494968326162
Iteration: 2, Func. Count: 22, Neg. LLF: 137.74305702220488
Iteration: 3, Func. Count: 33, Neg. LLF: 124.77036828320696
Iteration: 4, Func. Count: 43, Neg. LLF: 165.38011285943935
Iteration: 5, Func. Count: 55, Neg. LLF: 125.58183370021402
Iteration: 6, Func. Count: 66, Neg. LLF: 124.55398168604972
Iteration: 7, Func. Count: 76, Neg. LLF: 124.55325838549332
Iteration: 8, Func. Count: 86, Neg. LLF: 124.55313708450598
Iteration: 9, Func. Count: 96, Neg. LLF: 124.55309200750719
Iteration: 10, Func. Count: 106, Neg. LLF: 124.55308978461333
Iteration: 11, Func. Count: 116, Neg. LLF: 124.55308910365882
Optimization terminated successfully (Exit mode 0)
Current function value: 124.55308910365882
Iterations: 11
Function evaluations: 116
Gradient evaluations: 11
Iteration: 1, Func. Count: 8, Neg. LLF: 139.7960653452664
Iteration: 2, Func. Count: 16, Neg. LLF: 176.8404181620154
Iteration: 3, Func. Count: 24, Neg. LLF: 122.6008885314653
Iteration: 4, Func. Count: 31, Neg. LLF: 126.26785503178957
Iteration: 5, Func. Count: 40, Neg. LLF: 126.4575607218654
Iteration: 6, Func. Count: 50, Neg. LLF: 128.73318744680927
Iteration: 7, Func. Count: 59, Neg. LLF: 121.9128433160746
Iteration: 8, Func. Count: 66, Neg. LLF: 121.76915667192114
Iteration: 9, Func. Count: 73, Neg. LLF: 121.64066704793308
Iteration: 10, Func. Count: 80, Neg. LLF: 121.60497738660327
Iteration: 11, Func. Count: 87, Neg. LLF: 121.60280643623874
Iteration: 12, Func. Count: 94, Neg. LLF: 121.60277889265376
Iteration: 13, Func. Count: 101, Neg. LLF: 121.6027773502467
Iteration: 14, Func. Count: 107, Neg. LLF: 121.60277738044154
Optimization terminated successfully (Exit mode 0)
Current function value: 121.6027773502467
Iterations: 14
Function evaluations: 107
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 130.02331762740826
Iteration: 2, Func. Count: 18, Neg. LLF: 130.00898631896447
Iteration: 3, Func. Count: 27, Neg. LLF: 128.46922242031556
Iteration: 4, Func. Count: 36, Neg. LLF: 123.35689617267862
Iteration: 5, Func. Count: 45, Neg. LLF: 123.39319949245429
Iteration: 6, Func. Count: 54, Neg. LLF: 122.05913716138322
Iteration: 7, Func. Count: 63, Neg. LLF: 121.81938553791527
Iteration: 8, Func. Count: 71, Neg. LLF: 121.61921362127315
Iteration: 9, Func. Count: 79, Neg. LLF: 121.60538246131519
Iteration: 10, Func. Count: 87, Neg. LLF: 121.60280737691184
Iteration: 11, Func. Count: 95, Neg. LLF: 121.60278026850946
Iteration: 12, Func. Count: 103, Neg. LLF: 121.60277794740962
Iteration: 13, Func. Count: 111, Neg. LLF: 121.60277731418385
Optimization terminated successfully (Exit mode 0)
Current function value: 121.60277731418385
Iterations: 13
Function evaluations: 111
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 131.99911396124025
Iteration: 2, Func. Count: 20, Neg. LLF: 132.4232759281408
Iteration: 3, Func. Count: 30, Neg. LLF: 125.8645592310074
Iteration: 4, Func. Count: 40, Neg. LLF: 131.53582246929616
Iteration: 5, Func. Count: 50, Neg. LLF: 124.04878170801464
Iteration: 6, Func. Count: 60, Neg. LLF: 121.77337159985494
Iteration: 7, Func. Count: 69, Neg. LLF: 121.68070888996085
Iteration: 8, Func. Count: 78, Neg. LLF: 121.61574569344245
Iteration: 9, Func. Count: 87, Neg. LLF: 121.61217918477026
Iteration: 10, Func. Count: 96, Neg. LLF: 121.60281284914069
Iteration: 11, Func. Count: 105, Neg. LLF: 121.60277758521383
Iteration: 12, Func. Count: 113, Neg. LLF: 121.60277762408217
Optimization terminated successfully (Exit mode 0)
Current function value: 121.60277758521383
Iterations: 12
Function evaluations: 113
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 135.20670426439912
Iteration: 2, Func. Count: 22, Neg. LLF: 132.11914282469385
Iteration: 3, Func. Count: 33, Neg. LLF: 124.1154273961156
Iteration: 4, Func. Count: 44, Neg. LLF: 127.78617219056653
Iteration: 5, Func. Count: 55, Neg. LLF: 122.48590164135216
Iteration: 6, Func. Count: 66, Neg. LLF: 122.4094516970335
Iteration: 7, Func. Count: 77, Neg. LLF: 121.81380671521072
Iteration: 8, Func. Count: 87, Neg. LLF: 121.6365619769478
Iteration: 9, Func. Count: 97, Neg. LLF: 121.6711721849707
Iteration: 10, Func. Count: 108, Neg. LLF: 121.6031463724884
Iteration: 11, Func. Count: 118, Neg. LLF: 121.60277813365708
Iteration: 12, Func. Count: 128, Neg. LLF: 121.60277731480484
Optimization terminated successfully (Exit mode 0)
Current function value: 121.60277731480484
Iterations: 12
Function evaluations: 128
Gradient evaluations: 12
Iteration: 1, Func. Count: 12, Neg. LLF: 134.86400579498303
Iteration: 2, Func. Count: 24, Neg. LLF: 132.15496189554878
Iteration: 3, Func. Count: 36, Neg. LLF: 124.12555708512139
Iteration: 4, Func. Count: 48, Neg. LLF: 129.2363567894295
Iteration: 5, Func. Count: 60, Neg. LLF: 123.34472145727928
Iteration: 6, Func. Count: 72, Neg. LLF: 122.5133875985398
Iteration: 7, Func. Count: 84, Neg. LLF: 121.69875414909045
Iteration: 8, Func. Count: 95, Neg. LLF: 121.66057995770625
Iteration: 9, Func. Count: 106, Neg. LLF: 121.61317089710437
Iteration: 10, Func. Count: 117, Neg. LLF: 121.60736817201538
Iteration: 11, Func. Count: 128, Neg. LLF: 121.60280705078219
Iteration: 12, Func. Count: 139, Neg. LLF: 121.60277828215813
Iteration: 13, Func. Count: 150, Neg. LLF: 121.60277733880437
Optimization terminated successfully (Exit mode 0)
Current function value: 121.60277733880437
Iterations: 13
Function evaluations: 150
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 139.31349885276236
Iteration: 2, Func. Count: 18, Neg. LLF: 177.90731090764567
Iteration: 3, Func. Count: 27, Neg. LLF: 122.94785520235992
Iteration: 4, Func. Count: 35, Neg. LLF: 130.7764397894689
Iteration: 5, Func. Count: 45, Neg. LLF: 139.44665995866455
Iteration: 6, Func. Count: 56, Neg. LLF: 122.82020828567398
Iteration: 7, Func. Count: 65, Neg. LLF: 122.77494121011638
Iteration: 8, Func. Count: 74, Neg. LLF: 121.9164009893908
Iteration: 9, Func. Count: 82, Neg. LLF: 121.84191571186736
Iteration: 10, Func. Count: 90, Neg. LLF: 121.66026403330578
Iteration: 11, Func. Count: 98, Neg. LLF: 121.84821269775661
Iteration: 12, Func. Count: 107, Neg. LLF: 121.5720304008364
Iteration: 13, Func. Count: 115, Neg. LLF: 121.57095859467954
Iteration: 14, Func. Count: 123, Neg. LLF: 121.57085264096074
Iteration: 15, Func. Count: 131, Neg. LLF: 121.57084824885857
Iteration: 16, Func. Count: 138, Neg. LLF: 121.57084824881422
Optimization terminated successfully (Exit mode 0)
Current function value: 121.57084824885857
Iterations: 16
Function evaluations: 138
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 129.88214242831074
Iteration: 2, Func. Count: 20, Neg. LLF: 129.93644289603054
Iteration: 3, Func. Count: 30, Neg. LLF: 128.54399951190572
Iteration: 4, Func. Count: 40, Neg. LLF: 125.06484968628172
Iteration: 5, Func. Count: 50, Neg. LLF: 122.37443543736589
Iteration: 6, Func. Count: 60, Neg. LLF: 121.91712017078154
Iteration: 7, Func. Count: 69, Neg. LLF: 121.86341636227932
Iteration: 8, Func. Count: 79, Neg. LLF: 121.58406249273989
Iteration: 9, Func. Count: 88, Neg. LLF: 121.57154144245821
Iteration: 10, Func. Count: 97, Neg. LLF: 121.57091931737705
Iteration: 11, Func. Count: 106, Neg. LLF: 121.57092232929095
Iteration: 12, Func. Count: 116, Neg. LLF: 121.57084807677874
Optimization terminated successfully (Exit mode 0)
Current function value: 121.57084807677874
Iterations: 12
Function evaluations: 116
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 131.7513174924271
Iteration: 2, Func. Count: 22, Neg. LLF: 132.3310091830083
Iteration: 3, Func. Count: 33, Neg. LLF: 125.93175804562321
Iteration: 4, Func. Count: 44, Neg. LLF: 130.1338734874818
Iteration: 5, Func. Count: 55, Neg. LLF: 124.18231900844623
Iteration: 6, Func. Count: 66, Neg. LLF: 122.41605105139578
Iteration: 7, Func. Count: 77, Neg. LLF: 121.70271512817166
Iteration: 8, Func. Count: 87, Neg. LLF: 121.65106837494803
Iteration: 9, Func. Count: 97, Neg. LLF: 121.6069502426977
Iteration: 10, Func. Count: 107, Neg. LLF: 121.5724270782342
Iteration: 11, Func. Count: 117, Neg. LLF: 121.57096407317577
Iteration: 12, Func. Count: 127, Neg. LLF: 121.57085154722087
Iteration: 13, Func. Count: 137, Neg. LLF: 121.57084812670482
Iteration: 14, Func. Count: 146, Neg. LLF: 121.57084816908223
Optimization terminated successfully (Exit mode 0)
Current function value: 121.57084812670482
Iterations: 14
Function evaluations: 146
Gradient evaluations: 14
Iteration: 1, Func. Count: 12, Neg. LLF: 134.97379038844986
Iteration: 2, Func. Count: 24, Neg. LLF: 132.15392855468036
Iteration: 3, Func. Count: 36, Neg. LLF: 124.1376484607401
Iteration: 4, Func. Count: 48, Neg. LLF: 126.55939862281618
Iteration: 5, Func. Count: 60, Neg. LLF: 123.11588098409185
Iteration: 6, Func. Count: 72, Neg. LLF: 122.73830598898702
Iteration: 7, Func. Count: 84, Neg. LLF: 121.66367938467044
Iteration: 8, Func. Count: 95, Neg. LLF: 121.60254949293218
Iteration: 9, Func. Count: 106, Neg. LLF: 121.67399009271203
Iteration: 10, Func. Count: 118, Neg. LLF: 121.57133752125364
Iteration: 11, Func. Count: 129, Neg. LLF: 121.57087303466948
Iteration: 12, Func. Count: 140, Neg. LLF: 121.57084848247798
Iteration: 13, Func. Count: 150, Neg. LLF: 121.5708484901879
Optimization terminated successfully (Exit mode 0)
Current function value: 121.57084848247798
Iterations: 13
Function evaluations: 150
Gradient evaluations: 13
Iteration: 1, Func. Count: 13, Neg. LLF: 134.60037856200907
Iteration: 2, Func. Count: 26, Neg. LLF: 132.1701012280886
Iteration: 3, Func. Count: 39, Neg. LLF: 124.14491058942384
Iteration: 4, Func. Count: 52, Neg. LLF: 125.59466849417005
Iteration: 5, Func. Count: 65, Neg. LLF: 124.03507222586941
Iteration: 6, Func. Count: 78, Neg. LLF: 121.92801073973409
Iteration: 7, Func. Count: 90, Neg. LLF: 121.81993724755115
Iteration: 8, Func. Count: 102, Neg. LLF: 121.90475501197633
Iteration: 9, Func. Count: 115, Neg. LLF: 121.6687651376283
Iteration: 10, Func. Count: 127, Neg. LLF: 121.58972074892408
Iteration: 11, Func. Count: 139, Neg. LLF: 121.57295474101582
Iteration: 12, Func. Count: 151, Neg. LLF: 121.57113023069341
Iteration: 13, Func. Count: 163, Neg. LLF: 121.57085289532301
Iteration: 14, Func. Count: 175, Neg. LLF: 121.57084838287271
Iteration: 15, Func. Count: 186, Neg. LLF: 121.57084842605552
Optimization terminated successfully (Exit mode 0)
Current function value: 121.57084838287271
Iterations: 15
Function evaluations: 186
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 143.44719225553249
Iteration: 2, Func. Count: 21, Neg. LLF: 166.8838826149775
Iteration: 3, Func. Count: 31, Neg. LLF: 123.42642940598337
Iteration: 4, Func. Count: 40, Neg. LLF: 163.82022136125323
Iteration: 5, Func. Count: 50, Neg. LLF: 137.47457550855077
Iteration: 6, Func. Count: 62, Neg. LLF: 123.44146953234626
Iteration: 7, Func. Count: 73, Neg. LLF: 123.2397294268743
Iteration: 8, Func. Count: 83, Neg. LLF: 122.81203020146802
Iteration: 9, Func. Count: 93, Neg. LLF: 121.6848484896405
Iteration: 10, Func. Count: 102, Neg. LLF: 121.53431414138018
Iteration: 11, Func. Count: 111, Neg. LLF: 121.51924320668496
Iteration: 12, Func. Count: 120, Neg. LLF: 121.51451711047922
Iteration: 13, Func. Count: 129, Neg. LLF: 121.51430918817728
Iteration: 14, Func. Count: 138, Neg. LLF: 121.51430588785436
Iteration: 15, Func. Count: 146, Neg. LLF: 121.5143058878662
Optimization terminated successfully (Exit mode 0)
Current function value: 121.51430588785436
Iterations: 15
Function evaluations: 146
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 125.810013240956
Iteration: 2, Func. Count: 22, Neg. LLF: 130.1782391425371
Iteration: 3, Func. Count: 33, Neg. LLF: 187.11741160825864
Iteration: 4, Func. Count: 45, Neg. LLF: 127.20633040652129
Iteration: 5, Func. Count: 56, Neg. LLF: 122.59238651605884
Iteration: 6, Func. Count: 67, Neg. LLF: 121.68612413751808
Iteration: 7, Func. Count: 77, Neg. LLF: 121.56553807200402
Iteration: 8, Func. Count: 87, Neg. LLF: 121.53191926985717
Iteration: 9, Func. Count: 97, Neg. LLF: 121.51956273325118
Iteration: 10, Func. Count: 107, Neg. LLF: 121.51467819345001
Iteration: 11, Func. Count: 117, Neg. LLF: 121.5143151558253
Iteration: 12, Func. Count: 127, Neg. LLF: 121.51430591179361
Iteration: 13, Func. Count: 136, Neg. LLF: 121.51430592565877
Optimization terminated successfully (Exit mode 0)
Current function value: 121.51430591179361
Iterations: 13
Function evaluations: 136
Gradient evaluations: 13
Iteration: 1, Func. Count: 12, Neg. LLF: 130.29162754422669
Iteration: 2, Func. Count: 24, Neg. LLF: 135.0388308220519
Iteration: 3, Func. Count: 36, Neg. LLF: 123.33808566544745
Iteration: 4, Func. Count: 48, Neg. LLF: 129.0426609875662
Iteration: 5, Func. Count: 60, Neg. LLF: 122.73197047069007
Iteration: 6, Func. Count: 72, Neg. LLF: 122.63589596743981
Iteration: 7, Func. Count: 84, Neg. LLF: 121.7246538005225
Iteration: 8, Func. Count: 95, Neg. LLF: 121.52385715275153
Iteration: 9, Func. Count: 106, Neg. LLF: 121.51470037246278
Iteration: 10, Func. Count: 117, Neg. LLF: 121.514313484892
Iteration: 11, Func. Count: 128, Neg. LLF: 121.51430667620699
Iteration: 12, Func. Count: 139, Neg. LLF: 121.51430586079252
Optimization terminated successfully (Exit mode 0)
Current function value: 121.51430586079252
Iterations: 12
Function evaluations: 139
Gradient evaluations: 12
Iteration: 1, Func. Count: 13, Neg. LLF: 134.03909017682722
Iteration: 2, Func. Count: 26, Neg. LLF: 132.3711052958153
Iteration: 3, Func. Count: 39, Neg. LLF: 123.34249463461599
Iteration: 4, Func. Count: 52, Neg. LLF: 130.2887448091683
Iteration: 5, Func. Count: 65, Neg. LLF: 123.24755354298264
Iteration: 6, Func. Count: 78, Neg. LLF: 122.28052621066416
Iteration: 7, Func. Count: 91, Neg. LLF: 121.62623548359413
Iteration: 8, Func. Count: 103, Neg. LLF: 121.56144542336537
Iteration: 9, Func. Count: 115, Neg. LLF: 121.5205699372855
Iteration: 10, Func. Count: 127, Neg. LLF: 121.51478592443006
Iteration: 11, Func. Count: 139, Neg. LLF: 121.51438597163958
Iteration: 12, Func. Count: 151, Neg. LLF: 121.51431333761656
Iteration: 13, Func. Count: 163, Neg. LLF: 121.51430610606471
Iteration: 14, Func. Count: 174, Neg. LLF: 121.51430611978928
Optimization terminated successfully (Exit mode 0)
Current function value: 121.51430610606471
Iterations: 14
Function evaluations: 174
Gradient evaluations: 14
Iteration: 1, Func. Count: 14, Neg. LLF: 133.06644209837503
Iteration: 2, Func. Count: 28, Neg. LLF: 132.35837994605026
Iteration: 3, Func. Count: 42, Neg. LLF: 122.91016633954114
Iteration: 4, Func. Count: 55, Neg. LLF: 125.89152692999406
Iteration: 5, Func. Count: 70, Neg. LLF: 136.92382620064015
Iteration: 6, Func. Count: 86, Neg. LLF: 137.70798641913518
Iteration: 7, Func. Count: 100, Neg. LLF: 122.38915088559057
Iteration: 8, Func. Count: 114, Neg. LLF: 121.55203988593301
Iteration: 9, Func. Count: 127, Neg. LLF: 121.66781266950592
Iteration: 10, Func. Count: 141, Neg. LLF: 121.51921497847441
Iteration: 11, Func. Count: 154, Neg. LLF: 121.51479916252104
Iteration: 12, Func. Count: 167, Neg. LLF: 121.51449261884046
Iteration: 13, Func. Count: 180, Neg. LLF: 121.51433069633556
Iteration: 14, Func. Count: 193, Neg. LLF: 121.51430987540066
Iteration: 15, Func. Count: 206, Neg. LLF: 121.51430595135932
Iteration: 16, Func. Count: 218, Neg. LLF: 121.51430599659264
Optimization terminated successfully (Exit mode 0)
Current function value: 121.51430595135932
Iterations: 16
Function evaluations: 218
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 143.38720093263535
Iteration: 2, Func. Count: 23, Neg. LLF: 166.64131025241178
Iteration: 3, Func. Count: 34, Neg. LLF: 123.42725525905493
Iteration: 4, Func. Count: 44, Neg. LLF: 165.22722770576263
Iteration: 5, Func. Count: 55, Neg. LLF: 138.03144930496887
Iteration: 6, Func. Count: 68, Neg. LLF: 123.71976753609336
Iteration: 7, Func. Count: 80, Neg. LLF: 123.25763811548191
Iteration: 8, Func. Count: 91, Neg. LLF: 122.97287814370542
Iteration: 9, Func. Count: 102, Neg. LLF: 121.72888457724561
Iteration: 10, Func. Count: 112, Neg. LLF: 121.54121629592069
Iteration: 11, Func. Count: 122, Neg. LLF: 121.52071668808173
Iteration: 12, Func. Count: 132, Neg. LLF: 121.51441698407733
Iteration: 13, Func. Count: 142, Neg. LLF: 121.51431238033271
Iteration: 14, Func. Count: 152, Neg. LLF: 121.51430620758181
Iteration: 15, Func. Count: 161, Neg. LLF: 121.51430628796001
Optimization terminated successfully (Exit mode 0)
Current function value: 121.51430620758181
Iterations: 15
Function evaluations: 161
Gradient evaluations: 15
Iteration: 1, Func. Count: 12, Neg. LLF: 128.73175770117138
Iteration: 2, Func. Count: 24, Neg. LLF: 128.24930444603473
Iteration: 3, Func. Count: 37, Neg. LLF: 126.5594924479353
Iteration: 4, Func. Count: 49, Neg. LLF: 127.81203406124698
Iteration: 5, Func. Count: 61, Neg. LLF: 122.45705004326345
Iteration: 6, Func. Count: 72, Neg. LLF: 123.32223414755289
Iteration: 7, Func. Count: 85, Neg. LLF: 121.6399660572529
Iteration: 8, Func. Count: 96, Neg. LLF: 121.66956596893918
Iteration: 9, Func. Count: 108, Neg. LLF: 121.53409270090754
Iteration: 10, Func. Count: 120, Neg. LLF: 121.51478157101901
Iteration: 11, Func. Count: 131, Neg. LLF: 121.51431219659972
Iteration: 12, Func. Count: 142, Neg. LLF: 121.51430658002602
Iteration: 13, Func. Count: 153, Neg. LLF: 121.51430586278383
Optimization terminated successfully (Exit mode 0)
Current function value: 121.51430586278383
Iterations: 13
Function evaluations: 153
Gradient evaluations: 13
Iteration: 1, Func. Count: 13, Neg. LLF: 130.24220751168275
Iteration: 2, Func. Count: 26, Neg. LLF: 134.84139694417016
Iteration: 3, Func. Count: 39, Neg. LLF: 123.4040477513987
Iteration: 4, Func. Count: 52, Neg. LLF: 129.57906902453058
Iteration: 5, Func. Count: 65, Neg. LLF: 122.72186696722476
Iteration: 6, Func. Count: 78, Neg. LLF: 122.49915369615385
Iteration: 7, Func. Count: 91, Neg. LLF: 121.70883282117649
Iteration: 8, Func. Count: 103, Neg. LLF: 121.52257592749619
Iteration: 9, Func. Count: 115, Neg. LLF: 121.51467628414653
Iteration: 10, Func. Count: 127, Neg. LLF: 121.51431386987547
Iteration: 11, Func. Count: 139, Neg. LLF: 121.51430663914623
Iteration: 12, Func. Count: 151, Neg. LLF: 121.5143058602324
Optimization terminated successfully (Exit mode 0)
Current function value: 121.5143058602324
Iterations: 12
Function evaluations: 151
Gradient evaluations: 12
Iteration: 1, Func. Count: 14, Neg. LLF: 133.9948516938917
Iteration: 2, Func. Count: 28, Neg. LLF: 132.33350261774595
Iteration: 3, Func. Count: 42, Neg. LLF: 123.34509529430986
Iteration: 4, Func. Count: 56, Neg. LLF: 130.32259353975272
Iteration: 5, Func. Count: 70, Neg. LLF: 123.26788392642231
Iteration: 6, Func. Count: 84, Neg. LLF: 122.29603312509339
Iteration: 7, Func. Count: 98, Neg. LLF: 121.62768408509137
Iteration: 8, Func. Count: 111, Neg. LLF: 121.5590051738499
Iteration: 9, Func. Count: 124, Neg. LLF: 121.5203734848962
Iteration: 10, Func. Count: 137, Neg. LLF: 121.51477601013832
Iteration: 11, Func. Count: 150, Neg. LLF: 121.51437939168252
Iteration: 12, Func. Count: 163, Neg. LLF: 121.51431304743829
Iteration: 13, Func. Count: 176, Neg. LLF: 121.51430608486066
Iteration: 14, Func. Count: 188, Neg. LLF: 121.51430609858525
Optimization terminated successfully (Exit mode 0)
Current function value: 121.51430608486066
Iterations: 14
Function evaluations: 188
Gradient evaluations: 14
Iteration: 1, Func. Count: 15, Neg. LLF: 133.0487569130932
Iteration: 2, Func. Count: 30, Neg. LLF: 132.33731679178192
Iteration: 3, Func. Count: 45, Neg. LLF: 122.91119695465154
Iteration: 4, Func. Count: 59, Neg. LLF: 125.88344296037198
Iteration: 5, Func. Count: 75, Neg. LLF: 136.52404707478934
Iteration: 6, Func. Count: 92, Neg. LLF: 137.61712916800838
Iteration: 7, Func. Count: 107, Neg. LLF: 122.39989500071766
Iteration: 8, Func. Count: 122, Neg. LLF: 121.55393292872165
Iteration: 9, Func. Count: 136, Neg. LLF: 121.6654974365991
Iteration: 10, Func. Count: 151, Neg. LLF: 121.5188180672018
Iteration: 11, Func. Count: 165, Neg. LLF: 121.51477508905946
Iteration: 12, Func. Count: 179, Neg. LLF: 121.51448077255307
Iteration: 13, Func. Count: 193, Neg. LLF: 121.51433135915832
Iteration: 14, Func. Count: 207, Neg. LLF: 121.5143099299236
Iteration: 15, Func. Count: 221, Neg. LLF: 121.51430596933012
Iteration: 16, Func. Count: 234, Neg. LLF: 121.51430601456653
Optimization terminated successfully (Exit mode 0)
Current function value: 121.51430596933012
Iterations: 16
Function evaluations: 234
Gradient evaluations: 16
Iteration: 1, Func. Count: 8, Neg. LLF: 137.01910847763605
Iteration: 2, Func. Count: 16, Neg. LLF: 180.85563763787835
Iteration: 3, Func. Count: 24, Neg. LLF: 124.71055888563343
Iteration: 4, Func. Count: 31, Neg. LLF: 124.64082501066751
Iteration: 5, Func. Count: 38, Neg. LLF: 124.62386991569487
Iteration: 6, Func. Count: 45, Neg. LLF: 124.62350478109407
Iteration: 7, Func. Count: 52, Neg. LLF: 124.62347287802062
Iteration: 8, Func. Count: 59, Neg. LLF: 124.62344319651872
Iteration: 9, Func. Count: 65, Neg. LLF: 124.62344329340594
Optimization terminated successfully (Exit mode 0)
Current function value: 124.62344319651872
Iterations: 9
Function evaluations: 65
Gradient evaluations: 9
Iteration: 1, Func. Count: 9, Neg. LLF: 125.60767797023966
Iteration: 2, Func. Count: 17, Neg. LLF: 128.74043848922767
Iteration: 3, Func. Count: 26, Neg. LLF: 138.35752357680184
Iteration: 4, Func. Count: 35, Neg. LLF: 133.77518548797943
Iteration: 5, Func. Count: 44, Neg. LLF: 124.68352858955537
Iteration: 6, Func. Count: 52, Neg. LLF: 124.63119063849709
Iteration: 7, Func. Count: 60, Neg. LLF: 124.62473255804368
Iteration: 8, Func. Count: 68, Neg. LLF: 124.62347465142435
Iteration: 9, Func. Count: 76, Neg. LLF: 124.6234440960983
Iteration: 10, Func. Count: 84, Neg. LLF: 124.62344319773004
Optimization terminated successfully (Exit mode 0)
Current function value: 124.62344319773004
Iterations: 10
Function evaluations: 84
Gradient evaluations: 10
Iteration: 1, Func. Count: 10, Neg. LLF: 125.45733463458333
Iteration: 2, Func. Count: 19, Neg. LLF: 127.83387172384064
Iteration: 3, Func. Count: 29, Neg. LLF: 124.74307735241231
Iteration: 4, Func. Count: 38, Neg. LLF: 140.01438139998706
Iteration: 5, Func. Count: 48, Neg. LLF: 124.6577182595623
Iteration: 6, Func. Count: 57, Neg. LLF: 124.62959632684607
Iteration: 7, Func. Count: 66, Neg. LLF: 124.62372621950614
Iteration: 8, Func. Count: 75, Neg. LLF: 124.62345682526283
Iteration: 9, Func. Count: 84, Neg. LLF: 124.62344319709992
Iteration: 10, Func. Count: 92, Neg. LLF: 124.62344322276569
Optimization terminated successfully (Exit mode 0)
Current function value: 124.62344319709992
Iterations: 10
Function evaluations: 92
Gradient evaluations: 10
Iteration: 1, Func. Count: 11, Neg. LLF: 125.45617396659404
Iteration: 2, Func. Count: 21, Neg. LLF: 127.51968907624126
Iteration: 3, Func. Count: 32, Neg. LLF: 124.73514360974586
Iteration: 4, Func. Count: 42, Neg. LLF: 139.49863587701077
Iteration: 5, Func. Count: 53, Neg. LLF: 124.65616038067951
Iteration: 6, Func. Count: 63, Neg. LLF: 124.62849455742347
Iteration: 7, Func. Count: 73, Neg. LLF: 124.62351594236156
Iteration: 8, Func. Count: 83, Neg. LLF: 124.62344505178451
Iteration: 9, Func. Count: 93, Neg. LLF: 124.62344371879544
Iteration: 10, Func. Count: 103, Neg. LLF: 124.62344319588408
Optimization terminated successfully (Exit mode 0)
Current function value: 124.62344319588408
Iterations: 10
Function evaluations: 103
Gradient evaluations: 10
Iteration: 1, Func. Count: 12, Neg. LLF: 125.45373984337145
Iteration: 2, Func. Count: 23, Neg. LLF: 127.30805042497188
Iteration: 3, Func. Count: 35, Neg. LLF: 124.61178780679722
Iteration: 4, Func. Count: 46, Neg. LLF: 138.10978349537888
Iteration: 5, Func. Count: 59, Neg. LLF: 124.82606382644437
Iteration: 6, Func. Count: 71, Neg. LLF: 133.6014743942646
Iteration: 7, Func. Count: 83, Neg. LLF: 124.55992883654045
Iteration: 8, Func. Count: 94, Neg. LLF: 124.55521732432412
Iteration: 9, Func. Count: 105, Neg. LLF: 124.5533907218168
Iteration: 10, Func. Count: 116, Neg. LLF: 124.55309460466474
Iteration: 11, Func. Count: 127, Neg. LLF: 124.5530891453921
Iteration: 12, Func. Count: 137, Neg. LLF: 124.55308914535054
Optimization terminated successfully (Exit mode 0)
Current function value: 124.5530891453921
Iterations: 12
Function evaluations: 137
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 137.18081419278647
Iteration: 2, Func. Count: 18, Neg. LLF: 190.14404090578577
Iteration: 3, Func. Count: 27, Neg. LLF: 122.70164464372145
Iteration: 4, Func. Count: 35, Neg. LLF: 127.6320215243718
Iteration: 5, Func. Count: 45, Neg. LLF: 126.52118664616872
Iteration: 6, Func. Count: 56, Neg. LLF: 129.53664457389058
Iteration: 7, Func. Count: 66, Neg. LLF: 121.9030896109862
Iteration: 8, Func. Count: 74, Neg. LLF: 121.78694108122039
Iteration: 9, Func. Count: 82, Neg. LLF: 121.68117313225736
Iteration: 10, Func. Count: 90, Neg. LLF: 121.60814821828279
Iteration: 11, Func. Count: 98, Neg. LLF: 121.60293798083094
Iteration: 12, Func. Count: 106, Neg. LLF: 121.60278034290752
Iteration: 13, Func. Count: 114, Neg. LLF: 121.60277732038695
Iteration: 14, Func. Count: 121, Neg. LLF: 121.60277735058864
Optimization terminated successfully (Exit mode 0)
Current function value: 121.60277732038695
Iterations: 14
Function evaluations: 121
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 125.82273794576332
Iteration: 2, Func. Count: 20, Neg. LLF: 129.9727400551824
Iteration: 3, Func. Count: 30, Neg. LLF: 146.10343620437664
Iteration: 4, Func. Count: 41, Neg. LLF: 124.6265093331039
Iteration: 5, Func. Count: 51, Neg. LLF: 121.92656914937224
Iteration: 6, Func. Count: 60, Neg. LLF: 121.77148932870956
Iteration: 7, Func. Count: 69, Neg. LLF: 121.68148278986624
Iteration: 8, Func. Count: 78, Neg. LLF: 121.62304412861883
Iteration: 9, Func. Count: 87, Neg. LLF: 121.60717729613233
Iteration: 10, Func. Count: 96, Neg. LLF: 121.60313108457429
Iteration: 11, Func. Count: 105, Neg. LLF: 121.60283233622759
Iteration: 12, Func. Count: 114, Neg. LLF: 121.60277921976676
Iteration: 13, Func. Count: 123, Neg. LLF: 121.60277735544935
Iteration: 14, Func. Count: 131, Neg. LLF: 121.60277737503964
Optimization terminated successfully (Exit mode 0)
Current function value: 121.60277735544935
Iterations: 14
Function evaluations: 131
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 125.59993888550903
Iteration: 2, Func. Count: 21, Neg. LLF: 129.8025075751105
Iteration: 3, Func. Count: 32, Neg. LLF: 121.97670043115839
Iteration: 4, Func. Count: 42, Neg. LLF: 123.6001423562165
Iteration: 5, Func. Count: 54, Neg. LLF: 123.83660943548554
Iteration: 6, Func. Count: 66, Neg. LLF: 121.66405017383103
Iteration: 7, Func. Count: 76, Neg. LLF: 121.73117575535198
Iteration: 8, Func. Count: 87, Neg. LLF: 121.60729659111227
Iteration: 9, Func. Count: 97, Neg. LLF: 121.60285131394143
Iteration: 10, Func. Count: 107, Neg. LLF: 121.60277845351803
Iteration: 11, Func. Count: 117, Neg. LLF: 121.6027773496159
Iteration: 12, Func. Count: 126, Neg. LLF: 121.60277738849072
Optimization terminated successfully (Exit mode 0)
Current function value: 121.6027773496159
Iterations: 12
Function evaluations: 126
Gradient evaluations: 12
Iteration: 1, Func. Count: 12, Neg. LLF: 125.54743283428733
Iteration: 2, Func. Count: 23, Neg. LLF: 128.90480991143636
Iteration: 3, Func. Count: 35, Neg. LLF: 125.8055674705377
Iteration: 4, Func. Count: 47, Neg. LLF: 121.96547067933639
Iteration: 5, Func. Count: 58, Neg. LLF: 123.05219046429764
Iteration: 6, Func. Count: 71, Neg. LLF: 131.7087345057009
Iteration: 7, Func. Count: 83, Neg. LLF: 121.67345768806605
Iteration: 8, Func. Count: 94, Neg. LLF: 121.92756932878575
Iteration: 9, Func. Count: 106, Neg. LLF: 121.6237346739213
Iteration: 10, Func. Count: 117, Neg. LLF: 121.64262791283518
Iteration: 11, Func. Count: 129, Neg. LLF: 121.60290990068029
Iteration: 12, Func. Count: 140, Neg. LLF: 121.60277925109672
Iteration: 13, Func. Count: 151, Neg. LLF: 121.6027773299175
Iteration: 14, Func. Count: 161, Neg. LLF: 121.60277734053285
Optimization terminated successfully (Exit mode 0)
Current function value: 121.6027773299175
Iterations: 14
Function evaluations: 161
Gradient evaluations: 14
Iteration: 1, Func. Count: 13, Neg. LLF: 125.53488749270797
Iteration: 2, Func. Count: 25, Neg. LLF: 129.15780307526282
Iteration: 3, Func. Count: 38, Neg. LLF: 125.80315188606392
Iteration: 4, Func. Count: 51, Neg. LLF: 121.94558482924752
Iteration: 5, Func. Count: 63, Neg. LLF: 123.05802752227896
Iteration: 6, Func. Count: 77, Neg. LLF: 129.69328270624496
Iteration: 7, Func. Count: 91, Neg. LLF: 121.70164539073214
Iteration: 8, Func. Count: 103, Neg. LLF: 121.6711532083038
Iteration: 9, Func. Count: 115, Neg. LLF: 121.88121149306282
Iteration: 10, Func. Count: 128, Neg. LLF: 121.60662575508627
Iteration: 11, Func. Count: 140, Neg. LLF: 121.603305433832
Iteration: 12, Func. Count: 152, Neg. LLF: 121.60278239161153
Iteration: 13, Func. Count: 164, Neg. LLF: 121.60277743465768
Iteration: 14, Func. Count: 175, Neg. LLF: 121.60277747912785
Optimization terminated successfully (Exit mode 0)
Current function value: 121.60277743465768
Iterations: 14
Function evaluations: 175
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 136.62340333783678
Iteration: 2, Func. Count: 20, Neg. LLF: 196.07578813937042
Iteration: 3, Func. Count: 30, Neg. LLF: 123.20063641496876
Iteration: 4, Func. Count: 39, Neg. LLF: 138.09620767756908
Iteration: 5, Func. Count: 50, Neg. LLF: 147.08809501196228
Iteration: 6, Func. Count: 62, Neg. LLF: 122.78973397339777
Iteration: 7, Func. Count: 72, Neg. LLF: 122.7538526938378
Iteration: 8, Func. Count: 82, Neg. LLF: 121.94416460707562
Iteration: 9, Func. Count: 91, Neg. LLF: 121.93296154373472
Iteration: 10, Func. Count: 101, Neg. LLF: 121.63385788452456
Iteration: 11, Func. Count: 110, Neg. LLF: 121.58639720720376
Iteration: 12, Func. Count: 119, Neg. LLF: 121.5928844960954
Iteration: 13, Func. Count: 129, Neg. LLF: 121.57096559036131
Iteration: 14, Func. Count: 138, Neg. LLF: 121.57086411906897
Iteration: 15, Func. Count: 147, Neg. LLF: 121.57084814355004
Iteration: 16, Func. Count: 155, Neg. LLF: 121.57084814352848
Optimization terminated successfully (Exit mode 0)
Current function value: 121.57084814355004
Iterations: 16
Function evaluations: 155
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 125.67966129646018
Iteration: 2, Func. Count: 21, Neg. LLF: 127.77009751526091
Iteration: 3, Func. Count: 32, Neg. LLF: 169.23890284594947
Iteration: 4, Func. Count: 44, Neg. LLF: 125.80648603586489
Iteration: 5, Func. Count: 55, Neg. LLF: 122.32585882796691
Iteration: 6, Func. Count: 66, Neg. LLF: 121.81102784764686
Iteration: 7, Func. Count: 76, Neg. LLF: 121.66855491454528
Iteration: 8, Func. Count: 86, Neg. LLF: 121.91385213603745
Iteration: 9, Func. Count: 97, Neg. LLF: 121.57252983533759
Iteration: 10, Func. Count: 107, Neg. LLF: 121.57136107089714
Iteration: 11, Func. Count: 117, Neg. LLF: 121.57085200573782
Iteration: 12, Func. Count: 127, Neg. LLF: 121.57084812291477
Iteration: 13, Func. Count: 136, Neg. LLF: 121.57084813489944
Optimization terminated successfully (Exit mode 0)
Current function value: 121.57084812291477
Iterations: 13
Function evaluations: 136
Gradient evaluations: 13
Iteration: 1, Func. Count: 12, Neg. LLF: 125.49278367329562
Iteration: 2, Func. Count: 23, Neg. LLF: 129.06022957995165
Iteration: 3, Func. Count: 35, Neg. LLF: 122.00855590625817
Iteration: 4, Func. Count: 46, Neg. LLF: 123.91354689951672
Iteration: 5, Func. Count: 59, Neg. LLF: 125.36591115716875
Iteration: 6, Func. Count: 73, Neg. LLF: 121.93845964269774
Iteration: 7, Func. Count: 85, Neg. LLF: 121.7547005687309
Iteration: 8, Func. Count: 97, Neg. LLF: 121.65418045204655
Iteration: 9, Func. Count: 109, Neg. LLF: 121.57256569421432
Iteration: 10, Func. Count: 120, Neg. LLF: 121.5709838369347
Iteration: 11, Func. Count: 131, Neg. LLF: 121.57086658792781
Iteration: 12, Func. Count: 142, Neg. LLF: 121.57084925120412
Iteration: 13, Func. Count: 153, Neg. LLF: 121.5708481322412
Iteration: 14, Func. Count: 163, Neg. LLF: 121.57084817464643
Optimization terminated successfully (Exit mode 0)
Current function value: 121.5708481322412
Iterations: 14
Function evaluations: 163
Gradient evaluations: 14
Iteration: 1, Func. Count: 13, Neg. LLF: 125.4390726787148
Iteration: 2, Func. Count: 25, Neg. LLF: 128.11314444351163
Iteration: 3, Func. Count: 38, Neg. LLF: 125.80149628668028
Iteration: 4, Func. Count: 51, Neg. LLF: 122.1851425782286
Iteration: 5, Func. Count: 63, Neg. LLF: 123.374326199792
Iteration: 6, Func. Count: 77, Neg. LLF: 137.54598093471867
Iteration: 7, Func. Count: 90, Neg. LLF: 121.63239174435651
Iteration: 8, Func. Count: 102, Neg. LLF: 122.84772310511393
Iteration: 9, Func. Count: 116, Neg. LLF: 121.59952289725695
Iteration: 10, Func. Count: 128, Neg. LLF: 121.58048978868332
Iteration: 11, Func. Count: 140, Neg. LLF: 121.57234132800396
Iteration: 12, Func. Count: 152, Neg. LLF: 121.57085313857401
Iteration: 13, Func. Count: 164, Neg. LLF: 121.57084811438999
Iteration: 14, Func. Count: 175, Neg. LLF: 121.57084812216262
Optimization terminated successfully (Exit mode 0)
Current function value: 121.57084811438999
Iterations: 14
Function evaluations: 175
Gradient evaluations: 14
Iteration: 1, Func. Count: 14, Neg. LLF: 125.41089559068497
Iteration: 2, Func. Count: 27, Neg. LLF: 128.17889872650406
Iteration: 3, Func. Count: 41, Neg. LLF: 125.79671737008147
Iteration: 4, Func. Count: 55, Neg. LLF: 122.20110583572941
Iteration: 5, Func. Count: 68, Neg. LLF: 123.3511890489268
Iteration: 6, Func. Count: 83, Neg. LLF: 138.39768910394542
Iteration: 7, Func. Count: 97, Neg. LLF: 121.63347308171872
Iteration: 8, Func. Count: 110, Neg. LLF: 122.93670944279629
Iteration: 9, Func. Count: 125, Neg. LLF: 121.60088833248106
Iteration: 10, Func. Count: 138, Neg. LLF: 121.58136093856713
Iteration: 11, Func. Count: 151, Neg. LLF: 121.57274619007704
Iteration: 12, Func. Count: 164, Neg. LLF: 121.57085734151389
Iteration: 13, Func. Count: 177, Neg. LLF: 121.57084814569005
Iteration: 14, Func. Count: 189, Neg. LLF: 121.57084818882745
Optimization terminated successfully (Exit mode 0)
Current function value: 121.57084814569005
Iterations: 14
Function evaluations: 189
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 140.20040411520642
Iteration: 2, Func. Count: 22, Neg. LLF: 156.68942871927447
Iteration: 3, Func. Count: 33, Neg. LLF: 123.17029665510631
Iteration: 4, Func. Count: 43, Neg. LLF: 127.51863543496603
Iteration: 5, Func. Count: 55, Neg. LLF: 161.07928723571143
Iteration: 6, Func. Count: 68, Neg. LLF: 123.95494123142247
Iteration: 7, Func. Count: 81, Neg. LLF: 123.4774698894006
Iteration: 8, Func. Count: 92, Neg. LLF: 121.84306465272971
Iteration: 9, Func. Count: 102, Neg. LLF: 121.7521695157375
Iteration: 10, Func. Count: 112, Neg. LLF: 121.58333372209101
Iteration: 11, Func. Count: 122, Neg. LLF: 121.52845002313563
Iteration: 12, Func. Count: 132, Neg. LLF: 121.51533613949948
Iteration: 13, Func. Count: 142, Neg. LLF: 121.51445261314048
Iteration: 14, Func. Count: 152, Neg. LLF: 121.51432389665095
Iteration: 15, Func. Count: 162, Neg. LLF: 121.51430980472541
Iteration: 16, Func. Count: 172, Neg. LLF: 121.51430607140604
Iteration: 17, Func. Count: 181, Neg. LLF: 121.51430607135853
Optimization terminated successfully (Exit mode 0)
Current function value: 121.51430607140604
Iterations: 17
Function evaluations: 181
Gradient evaluations: 17
Iteration: 1, Func. Count: 12, Neg. LLF: 125.70493837394501
Iteration: 2, Func. Count: 23, Neg. LLF: 127.8200828688041
Iteration: 3, Func. Count: 35, Neg. LLF: 178.28596851864654
Iteration: 4, Func. Count: 49, Neg. LLF: 126.71528068507929
Iteration: 5, Func. Count: 61, Neg. LLF: 121.83360141277572
Iteration: 6, Func. Count: 72, Neg. LLF: 121.90750119916095
Iteration: 7, Func. Count: 84, Neg. LLF: 121.52549071615785
Iteration: 8, Func. Count: 95, Neg. LLF: 121.52221081519129
Iteration: 9, Func. Count: 107, Neg. LLF: 121.5147345821122
Iteration: 10, Func. Count: 118, Neg. LLF: 121.51431374570349
Iteration: 11, Func. Count: 129, Neg. LLF: 121.51430703129454
Iteration: 12, Func. Count: 140, Neg. LLF: 121.51430586208366
Iteration: 13, Func. Count: 150, Neg. LLF: 121.5143058759738
Optimization terminated successfully (Exit mode 0)
Current function value: 121.51430586208366
Iterations: 13
Function evaluations: 150
Gradient evaluations: 13
Iteration: 1, Func. Count: 13, Neg. LLF: 125.88051797707413
Iteration: 2, Func. Count: 26, Neg. LLF: 143.33409889419767
Iteration: 3, Func. Count: 39, Neg. LLF: 122.63683447116239
Iteration: 4, Func. Count: 51, Neg. LLF: 123.64950113760031
Iteration: 5, Func. Count: 64, Neg. LLF: 126.86603762843646
Iteration: 6, Func. Count: 79, Neg. LLF: 125.98887623672883
Iteration: 7, Func. Count: 95, Neg. LLF: 122.71131966995253
Iteration: 8, Func. Count: 108, Neg. LLF: 121.6464715407917
Iteration: 9, Func. Count: 120, Neg. LLF: 121.5459210683347
Iteration: 10, Func. Count: 132, Neg. LLF: 121.52013508314408
Iteration: 11, Func. Count: 144, Neg. LLF: 121.51469006061376
Iteration: 12, Func. Count: 156, Neg. LLF: 121.51431192807286
Iteration: 13, Func. Count: 168, Neg. LLF: 121.51430623169624
Iteration: 14, Func. Count: 179, Neg. LLF: 121.51430627287307
Optimization terminated successfully (Exit mode 0)
Current function value: 121.51430623169624
Iterations: 14
Function evaluations: 179
Gradient evaluations: 14
Iteration: 1, Func. Count: 14, Neg. LLF: 125.25637491553447
Iteration: 2, Func. Count: 27, Neg. LLF: 133.14494147696308
Iteration: 3, Func. Count: 41, Neg. LLF: 121.82040740529088
Iteration: 4, Func. Count: 54, Neg. LLF: 122.19546103740687
Iteration: 5, Func. Count: 68, Neg. LLF: 136.21607370667505
Iteration: 6, Func. Count: 84, Neg. LLF: 121.57646770267282
Iteration: 7, Func. Count: 97, Neg. LLF: 121.80275531461082
Iteration: 8, Func. Count: 111, Neg. LLF: 121.54314813001707
Iteration: 9, Func. Count: 124, Neg. LLF: 121.5179952699318
Iteration: 10, Func. Count: 137, Neg. LLF: 121.51502068615706
Iteration: 11, Func. Count: 150, Neg. LLF: 121.51434775209088
Iteration: 12, Func. Count: 163, Neg. LLF: 121.51430774035745
Iteration: 13, Func. Count: 176, Neg. LLF: 121.51430587484207
Iteration: 14, Func. Count: 188, Neg. LLF: 121.51430588855328
Optimization terminated successfully (Exit mode 0)
Current function value: 121.51430587484207
Iterations: 14
Function evaluations: 188
Gradient evaluations: 14
Iteration: 1, Func. Count: 15, Neg. LLF: 125.89953100263452
Iteration: 2, Func. Count: 30, Neg. LLF: 142.33266558492733
Iteration: 3, Func. Count: 45, Neg. LLF: 122.33746675014861
Iteration: 4, Func. Count: 59, Neg. LLF: 122.80927910174938
Iteration: 5, Func. Count: 74, Neg. LLF: 128.1157594846229
Iteration: 6, Func. Count: 91, Neg. LLF: 125.29912141270019
Iteration: 7, Func. Count: 109, Neg. LLF: 122.82248989738198
Iteration: 8, Func. Count: 124, Neg. LLF: 121.68497585785333
Iteration: 9, Func. Count: 138, Neg. LLF: 121.55729563754402
Iteration: 10, Func. Count: 152, Neg. LLF: 121.52048868646035
Iteration: 11, Func. Count: 166, Neg. LLF: 121.51446480310274
Iteration: 12, Func. Count: 180, Neg. LLF: 121.5143265624064
Iteration: 13, Func. Count: 194, Neg. LLF: 121.51430869175408
Iteration: 14, Func. Count: 208, Neg. LLF: 121.51430587276037
Iteration: 15, Func. Count: 221, Neg. LLF: 121.5143059179719
Optimization terminated successfully (Exit mode 0)
Current function value: 121.51430587276037
Iterations: 15
Function evaluations: 221
Gradient evaluations: 15
Iteration: 1, Func. Count: 12, Neg. LLF: 140.04387229708126
Iteration: 2, Func. Count: 24, Neg. LLF: 156.36660432533438
Iteration: 3, Func. Count: 36, Neg. LLF: 123.17766883281926
Iteration: 4, Func. Count: 47, Neg. LLF: 127.78110868038326
Iteration: 5, Func. Count: 60, Neg. LLF: 164.07061815237978
Iteration: 6, Func. Count: 74, Neg. LLF: 124.0665547373091
Iteration: 7, Func. Count: 88, Neg. LLF: 123.35127715504493
Iteration: 8, Func. Count: 100, Neg. LLF: 121.88488010808261
Iteration: 9, Func. Count: 111, Neg. LLF: 121.73946601258871
Iteration: 10, Func. Count: 122, Neg. LLF: 121.58954888728738
Iteration: 11, Func. Count: 133, Neg. LLF: 121.53045384947615
Iteration: 12, Func. Count: 144, Neg. LLF: 121.51568767263136
Iteration: 13, Func. Count: 155, Neg. LLF: 121.51446419455597
Iteration: 14, Func. Count: 166, Neg. LLF: 121.51433352509213
Iteration: 15, Func. Count: 177, Neg. LLF: 121.51431162314125
Iteration: 16, Func. Count: 188, Neg. LLF: 121.5143061501517
Iteration: 17, Func. Count: 198, Neg. LLF: 121.51430623048114
Optimization terminated successfully (Exit mode 0)
Current function value: 121.5143061501517
Iterations: 17
Function evaluations: 198
Gradient evaluations: 17
Iteration: 1, Func. Count: 13, Neg. LLF: 128.55746148458968
Iteration: 2, Func. Count: 26, Neg. LLF: 128.12482872592986
Iteration: 3, Func. Count: 40, Neg. LLF: 126.51169158084424
Iteration: 4, Func. Count: 53, Neg. LLF: 126.87822005267199
Iteration: 5, Func. Count: 66, Neg. LLF: 122.19680076590143
Iteration: 6, Func. Count: 78, Neg. LLF: 123.06326418721387
Iteration: 7, Func. Count: 91, Neg. LLF: 122.05122785577274
Iteration: 8, Func. Count: 104, Neg. LLF: 121.61928561817112
Iteration: 9, Func. Count: 116, Neg. LLF: 121.52913926849655
Iteration: 10, Func. Count: 128, Neg. LLF: 121.5164506755284
Iteration: 11, Func. Count: 140, Neg. LLF: 121.51439109889446
Iteration: 12, Func. Count: 152, Neg. LLF: 121.51430958515613
Iteration: 13, Func. Count: 164, Neg. LLF: 121.5143058774272
Iteration: 14, Func. Count: 175, Neg. LLF: 121.5143058913216
Optimization terminated successfully (Exit mode 0)
Current function value: 121.5143058774272
Iterations: 14
Function evaluations: 175
Gradient evaluations: 14
Iteration: 1, Func. Count: 14, Neg. LLF: 126.35362628783541
Iteration: 2, Func. Count: 28, Neg. LLF: 138.4315225078054
Iteration: 3, Func. Count: 42, Neg. LLF: 123.04043250135705
Iteration: 4, Func. Count: 55, Neg. LLF: 147.83914478013702
Iteration: 5, Func. Count: 70, Neg. LLF: 127.93013683284771
Iteration: 6, Func. Count: 86, Neg. LLF: 126.57699498099284
Iteration: 7, Func. Count: 100, Neg. LLF: 121.70099693331039
Iteration: 8, Func. Count: 113, Neg. LLF: 121.87415911518222
Iteration: 9, Func. Count: 127, Neg. LLF: 121.55716736588523
Iteration: 10, Func. Count: 140, Neg. LLF: 121.5219307746971
Iteration: 11, Func. Count: 153, Neg. LLF: 121.51462348762925
Iteration: 12, Func. Count: 166, Neg. LLF: 121.51433739376522
Iteration: 13, Func. Count: 179, Neg. LLF: 121.51431816245359
Iteration: 14, Func. Count: 192, Neg. LLF: 121.51431115631296
Iteration: 15, Func. Count: 205, Neg. LLF: 121.51430618813944
Iteration: 16, Func. Count: 217, Neg. LLF: 121.51430622934897
Optimization terminated successfully (Exit mode 0)
Current function value: 121.51430618813944
Iterations: 16
Function evaluations: 217
Gradient evaluations: 16
Iteration: 1, Func. Count: 15, Neg. LLF: 125.24640031691914
Iteration: 2, Func. Count: 29, Neg. LLF: 132.54969344255528
Iteration: 3, Func. Count: 44, Neg. LLF: 121.85501963550887
Iteration: 4, Func. Count: 58, Neg. LLF: 122.32960545107582
Iteration: 5, Func. Count: 74, Neg. LLF: 124.96023723005943
Iteration: 6, Func. Count: 91, Neg. LLF: 121.54080875801075
Iteration: 7, Func. Count: 105, Neg. LLF: 121.51665911268246
Iteration: 8, Func. Count: 119, Neg. LLF: 121.5144902517913
Iteration: 9, Func. Count: 133, Neg. LLF: 121.51431514728642
Iteration: 10, Func. Count: 147, Neg. LLF: 121.51430591224293
Iteration: 11, Func. Count: 160, Neg. LLF: 121.51430592592462
Optimization terminated successfully (Exit mode 0)
Current function value: 121.51430591224293
Iterations: 11
Function evaluations: 160
Gradient evaluations: 11
Iteration: 1, Func. Count: 16, Neg. LLF: 125.86658669186211
Iteration: 2, Func. Count: 32, Neg. LLF: 142.24998699636018
Iteration: 3, Func. Count: 48, Neg. LLF: 122.33219183682208
Iteration: 4, Func. Count: 63, Neg. LLF: 122.79805780381136
Iteration: 5, Func. Count: 79, Neg. LLF: 128.093579526792
Iteration: 6, Func. Count: 97, Neg. LLF: 125.29869316322242
Iteration: 7, Func. Count: 116, Neg. LLF: 122.81953791962815
Iteration: 8, Func. Count: 132, Neg. LLF: 121.67920052572963
Iteration: 9, Func. Count: 147, Neg. LLF: 121.55695015832798
Iteration: 10, Func. Count: 162, Neg. LLF: 121.52021927282516
Iteration: 11, Func. Count: 177, Neg. LLF: 121.51448242606286
Iteration: 12, Func. Count: 192, Neg. LLF: 121.51433004150064
Iteration: 13, Func. Count: 207, Neg. LLF: 121.51430881748497
Iteration: 14, Func. Count: 222, Neg. LLF: 121.51430587391067
Iteration: 15, Func. Count: 236, Neg. LLF: 121.5143059191228
Optimization terminated successfully (Exit mode 0)
Current function value: 121.51430587391067
Iterations: 15
Function evaluations: 236
Gradient evaluations: 15
Iteration: 1, Func. Count: 6, Neg. LLF: 130.35602672129605
Iteration: 2, Func. Count: 12, Neg. LLF: 135.20645424489908
Iteration: 3, Func. Count: 18, Neg. LLF: 121.97208643290531
Iteration: 4, Func. Count: 23, Neg. LLF: 122.08975452712832
Iteration: 5, Func. Count: 29, Neg. LLF: 124.06612688585334
Iteration: 6, Func. Count: 35, Neg. LLF: 121.67082702890882
Iteration: 7, Func. Count: 40, Neg. LLF: 121.67030557581658
Iteration: 8, Func. Count: 44, Neg. LLF: 121.67030559630123
Optimization terminated successfully (Exit mode 0)
Current function value: 121.67030557581658
Iterations: 8
Function evaluations: 44
Gradient evaluations: 8
Iteration: 1, Func. Count: 5, Neg. LLF: 135.94073772709018
Iteration: 2, Func. Count: 9, Neg. LLF: 136.09466948879898
Iteration: 3, Func. Count: 14, Neg. LLF: 135.66389642514667
Iteration: 4, Func. Count: 18, Neg. LLF: 135.59829564741136
Iteration: 5, Func. Count: 22, Neg. LLF: 135.59479628148108
Iteration: 6, Func. Count: 26, Neg. LLF: 135.59473246793877
Iteration: 7, Func. Count: 29, Neg. LLF: 135.59473257095144
Optimization terminated successfully (Exit mode 0)
Current function value: 135.59473246793877
Iterations: 7
Function evaluations: 29
Gradient evaluations: 7
Iteration: 1, Func. Count: 6, Neg. LLF: 143.72449664615482
Iteration: 2, Func. Count: 13, Neg. LLF: 135.64291526089633
Iteration: 3, Func. Count: 18, Neg. LLF: 135.64174803561502
Iteration: 4, Func. Count: 23, Neg. LLF: 135.64151943914578
Iteration: 5, Func. Count: 28, Neg. LLF: 135.6412513428571
Iteration: 6, Func. Count: 33, Neg. LLF: 135.6401594843518
Iteration: 7, Func. Count: 38, Neg. LLF: 135.63764920683204
Iteration: 8, Func. Count: 43, Neg. LLF: 135.63095006530946
Iteration: 9, Func. Count: 48, Neg. LLF: 135.61980111422656
Iteration: 10, Func. Count: 53, Neg. LLF: 135.60841998247236
Iteration: 11, Func. Count: 58, Neg. LLF: 135.59728337319802
Iteration: 12, Func. Count: 63, Neg. LLF: 135.59523560752106
Iteration: 13, Func. Count: 68, Neg. LLF: 135.5949463604079
Iteration: 14, Func. Count: 73, Neg. LLF: 135.59473592706564
Iteration: 15, Func. Count: 78, Neg. LLF: 135.59473245430584
Iteration: 16, Func. Count: 82, Neg. LLF: 135.59473245467686
Optimization terminated successfully (Exit mode 0)
Current function value: 135.59473245430584
Iterations: 16
Function evaluations: 82
Gradient evaluations: 16
Iteration: 1, Func. Count: 7, Neg. LLF: 149.0083336655033
Iteration: 2, Func. Count: 15, Neg. LLF: 135.36956337471625
Iteration: 3, Func. Count: 21, Neg. LLF: 135.3041348092013
Iteration: 4, Func. Count: 27, Neg. LLF: 135.3141468905571
Iteration: 5, Func. Count: 34, Neg. LLF: 135.27485344335471
Iteration: 6, Func. Count: 41, Neg. LLF: 135.25846842067347
Iteration: 7, Func. Count: 47, Neg. LLF: 135.25835160784266
Iteration: 8, Func. Count: 53, Neg. LLF: 135.2579334124428
Iteration: 9, Func. Count: 59, Neg. LLF: 135.25710647125953
Iteration: 10, Func. Count: 65, Neg. LLF: 135.25482037709997
Iteration: 11, Func. Count: 71, Neg. LLF: 135.25415786491794
Iteration: 12, Func. Count: 77, Neg. LLF: 135.25383978417602
Iteration: 13, Func. Count: 83, Neg. LLF: 135.2537273665803
Iteration: 14, Func. Count: 89, Neg. LLF: 135.25369939443405
Iteration: 15, Func. Count: 95, Neg. LLF: 135.25369879481764
Optimization terminated successfully (Exit mode 0)
Current function value: 135.25369879481764
Iterations: 15
Function evaluations: 95
Gradient evaluations: 15
Iteration: 1, Func. Count: 8, Neg. LLF: 147.3686573305451
Iteration: 2, Func. Count: 17, Neg. LLF: 135.33694969063208
Iteration: 3, Func. Count: 24, Neg. LLF: 135.28874555475636
Iteration: 4, Func. Count: 31, Neg. LLF: 135.26680212961742
Iteration: 5, Func. Count: 38, Neg. LLF: 135.27621983453218
Iteration: 6, Func. Count: 46, Neg. LLF: 135.26257147396228
Iteration: 7, Func. Count: 53, Neg. LLF: 135.26221062628392
Iteration: 8, Func. Count: 60, Neg. LLF: 135.26018290824646
Iteration: 9, Func. Count: 67, Neg. LLF: 135.2578520079212
Iteration: 10, Func. Count: 74, Neg. LLF: 135.25726603287032
Iteration: 11, Func. Count: 81, Neg. LLF: 135.25722986660045
Iteration: 12, Func. Count: 88, Neg. LLF: 135.25722726729535
Iteration: 13, Func. Count: 95, Neg. LLF: 135.2572224563514
Iteration: 14, Func. Count: 102, Neg. LLF: 135.25719333305915
Iteration: 15, Func. Count: 109, Neg. LLF: 135.25522924762046
Iteration: 16, Func. Count: 116, Neg. LLF: 135.25427193943992
Iteration: 17, Func. Count: 123, Neg. LLF: 135.25414554997025
Iteration: 18, Func. Count: 131, Neg. LLF: 135.31251792844415
Iteration: 19, Func. Count: 140, Neg. LLF: 135.25912488231307
Iteration: 20, Func. Count: 147, Neg. LLF: 135.2536986910537
Optimization terminated successfully (Exit mode 0)
Current function value: 135.25369879425065
Iterations: 21
Function evaluations: 147
Gradient evaluations: 20
Iteration: 1, Func. Count: 9, Neg. LLF: 145.87716914733636
Iteration: 2, Func. Count: 18, Neg. LLF: 135.27911874128478
Iteration: 3, Func. Count: 26, Neg. LLF: 135.30218994018625
Iteration: 4, Func. Count: 35, Neg. LLF: 135.2670178455154
Iteration: 5, Func. Count: 44, Neg. LLF: 135.26120447088613
Iteration: 6, Func. Count: 52, Neg. LLF: 135.26071026514398
Iteration: 7, Func. Count: 60, Neg. LLF: 135.25890556862217
Iteration: 8, Func. Count: 68, Neg. LLF: 135.25831656161583
Iteration: 9, Func. Count: 76, Neg. LLF: 135.25805092190342
Iteration: 10, Func. Count: 84, Neg. LLF: 135.2580492605848
Iteration: 11, Func. Count: 92, Neg. LLF: 135.25804454611307
Iteration: 12, Func. Count: 100, Neg. LLF: 135.2580343697538
Iteration: 13, Func. Count: 108, Neg. LLF: 135.25801445675754
Iteration: 14, Func. Count: 116, Neg. LLF: 135.2579918961132
Iteration: 15, Func. Count: 124, Neg. LLF: 135.25797650336995
Iteration: 16, Func. Count: 132, Neg. LLF: 135.2579716481928
Iteration: 17, Func. Count: 140, Neg. LLF: 135.2579696666549
Iteration: 18, Func. Count: 148, Neg. LLF: 135.25795908019222
Iteration: 19, Func. Count: 156, Neg. LLF: 135.25792634324802
Iteration: 20, Func. Count: 164, Neg. LLF: 135.25765691023236
Iteration: 21, Func. Count: 172, Neg. LLF: 135.25752025280832
Iteration: 22, Func. Count: 180, Neg. LLF: 135.2572326233011
Iteration: 23, Func. Count: 188, Neg. LLF: 135.2571777401702
Iteration: 24, Func. Count: 195, Neg. LLF: 135.25717770291314
Optimization terminated successfully (Exit mode 0)
Current function value: 135.2571777401702
Iterations: 24
Function evaluations: 195
Gradient evaluations: 24
Iteration: 1, Func. Count: 6, Neg. LLF: 139.41275823709864
Iteration: 2, Func. Count: 12, Neg. LLF: 142.8824866048668
Iteration: 3, Func. Count: 18, Neg. LLF: 135.25108717516292
Iteration: 4, Func. Count: 23, Neg. LLF: 134.9900176620354
Iteration: 5, Func. Count: 28, Neg. LLF: 135.6888429079168
Iteration: 6, Func. Count: 34, Neg. LLF: 135.09653068044705
Iteration: 7, Func. Count: 40, Neg. LLF: 134.76746360098176
Iteration: 8, Func. Count: 45, Neg. LLF: 134.7400356332185
Iteration: 9, Func. Count: 50, Neg. LLF: 134.72942223410925
Iteration: 10, Func. Count: 55, Neg. LLF: 134.72890258360397
Iteration: 11, Func. Count: 60, Neg. LLF: 134.7288596221169
Iteration: 12, Func. Count: 64, Neg. LLF: 134.72885962214028
Optimization terminated successfully (Exit mode 0)
Current function value: 134.7288596221169
Iterations: 12
Function evaluations: 64
Gradient evaluations: 12
Iteration: 1, Func. Count: 7, Neg. LLF: 139.0818898790595
Iteration: 2, Func. Count: 15, Neg. LLF: 139.2080063185245
Iteration: 3, Func. Count: 22, Neg. LLF: 135.06799376770527
Iteration: 4, Func. Count: 28, Neg. LLF: 135.14182064506056
Iteration: 5, Func. Count: 35, Neg. LLF: 134.95632257956856
Iteration: 6, Func. Count: 42, Neg. LLF: 134.92590936809572
Iteration: 7, Func. Count: 48, Neg. LLF: 134.92439344281408
Iteration: 8, Func. Count: 54, Neg. LLF: 134.9148737346933
Iteration: 9, Func. Count: 60, Neg. LLF: 134.88233505808668
Iteration: 10, Func. Count: 66, Neg. LLF: 134.84143254200987
Iteration: 11, Func. Count: 72, Neg. LLF: 134.77921700977018
Iteration: 12, Func. Count: 78, Neg. LLF: 134.75582048473873
Iteration: 13, Func. Count: 84, Neg. LLF: 134.7320466798846
Iteration: 14, Func. Count: 90, Neg. LLF: 134.72914282808352
Iteration: 15, Func. Count: 96, Neg. LLF: 134.72886694028034
Iteration: 16, Func. Count: 102, Neg. LLF: 134.72885970447462
Iteration: 17, Func. Count: 107, Neg. LLF: 134.72885971016885
Optimization terminated successfully (Exit mode 0)
Current function value: 134.72885970447462
Iterations: 17
Function evaluations: 107
Gradient evaluations: 17
Iteration: 1, Func. Count: 8, Neg. LLF: 139.13014707918438
Iteration: 2, Func. Count: 17, Neg. LLF: 138.8448574491297
Iteration: 3, Func. Count: 25, Neg. LLF: 134.5912904262105
Iteration: 4, Func. Count: 32, Neg. LLF: 134.73180611243055
Iteration: 5, Func. Count: 40, Neg. LLF: 134.56580559031903
Iteration: 6, Func. Count: 47, Neg. LLF: 134.5579506659821
Iteration: 7, Func. Count: 54, Neg. LLF: 134.5294736157991
Iteration: 8, Func. Count: 61, Neg. LLF: 134.52538514064875
Iteration: 9, Func. Count: 68, Neg. LLF: 134.52315877891647
Iteration: 10, Func. Count: 75, Neg. LLF: 134.5230467688754
Iteration: 11, Func. Count: 82, Neg. LLF: 134.52301369970317
Iteration: 12, Func. Count: 89, Neg. LLF: 134.52301016266043
Iteration: 13, Func. Count: 95, Neg. LLF: 134.52301016265613
Optimization terminated successfully (Exit mode 0)
Current function value: 134.52301016266043
Iterations: 13
Function evaluations: 95
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 141.75728776033412
Iteration: 2, Func. Count: 19, Neg. LLF: 135.30130723301735
Iteration: 3, Func. Count: 27, Neg. LLF: 135.42350892664592
Iteration: 4, Func. Count: 36, Neg. LLF: 135.2745238622989
Iteration: 5, Func. Count: 45, Neg. LLF: 135.2608764593211
Iteration: 6, Func. Count: 53, Neg. LLF: 135.2602480249734
Iteration: 7, Func. Count: 61, Neg. LLF: 135.25791510965618
Iteration: 8, Func. Count: 69, Neg. LLF: 135.25727012296798
Iteration: 9, Func. Count: 76, Neg. LLF: 135.25727006808177
Optimization terminated successfully (Exit mode 0)
Current function value: 135.25727012296798
Iterations: 9
Function evaluations: 76
Gradient evaluations: 9
Iteration: 1, Func. Count: 10, Neg. LLF: 167.55706672813554
Iteration: 2, Func. Count: 20, Neg. LLF: 172.43310062977125
Iteration: 3, Func. Count: 31, Neg. LLF: 147.74171360585316
Iteration: 4, Func. Count: 41, Neg. LLF: 135.17641656140125
Iteration: 5, Func. Count: 50, Neg. LLF: 134.35183687361837
Iteration: 6, Func. Count: 60, Neg. LLF: 133.6127470071977
Iteration: 7, Func. Count: 69, Neg. LLF: 133.51712690065992
Iteration: 8, Func. Count: 78, Neg. LLF: 133.46006426131396
Iteration: 9, Func. Count: 87, Neg. LLF: 133.4013383307295
Iteration: 10, Func. Count: 96, Neg. LLF: 133.38913594447064
Iteration: 11, Func. Count: 105, Neg. LLF: 133.38329084310743
Iteration: 12, Func. Count: 114, Neg. LLF: 133.37140584125927
Iteration: 13, Func. Count: 123, Neg. LLF: 133.36639143977789
Iteration: 14, Func. Count: 132, Neg. LLF: 133.36371975422838
Iteration: 15, Func. Count: 141, Neg. LLF: 133.3620770890782
Iteration: 16, Func. Count: 150, Neg. LLF: 133.36057525035972
Iteration: 17, Func. Count: 159, Neg. LLF: 133.35999640797698
Iteration: 18, Func. Count: 168, Neg. LLF: 133.35990673223012
Iteration: 19, Func. Count: 177, Neg. LLF: 133.35990134102877
Iteration: 20, Func. Count: 185, Neg. LLF: 133.35990134102533
Optimization terminated successfully (Exit mode 0)
Current function value: 133.35990134102877
Iterations: 20
Function evaluations: 185
Gradient evaluations: 20
Iteration: 1, Func. Count: 7, Neg. LLF: 136.9923468014281
Iteration: 2, Func. Count: 14, Neg. LLF: 135.43272734284923
Iteration: 3, Func. Count: 20, Neg. LLF: 135.3638236200197
Iteration: 4, Func. Count: 26, Neg. LLF: 135.0001315908384
Iteration: 5, Func. Count: 32, Neg. LLF: 134.8887394030927
Iteration: 6, Func. Count: 38, Neg. LLF: 134.7491223338096
Iteration: 7, Func. Count: 44, Neg. LLF: 134.7448687558851
Iteration: 8, Func. Count: 51, Neg. LLF: 134.72897848411412
Iteration: 9, Func. Count: 57, Neg. LLF: 134.72885998862637
Iteration: 10, Func. Count: 62, Neg. LLF: 134.72886000707035
Optimization terminated successfully (Exit mode 0)
Current function value: 134.72885998862637
Iterations: 10
Function evaluations: 62
Gradient evaluations: 10
Iteration: 1, Func. Count: 8, Neg. LLF: 139.21510017344133
Iteration: 2, Func. Count: 17, Neg. LLF: 139.41002512986634
Iteration: 3, Func. Count: 25, Neg. LLF: 134.97225225201169
Iteration: 4, Func. Count: 32, Neg. LLF: 136.46386154721222
Iteration: 5, Func. Count: 40, Neg. LLF: 134.92894439257162
Iteration: 6, Func. Count: 47, Neg. LLF: 134.92804429230458
Iteration: 7, Func. Count: 54, Neg. LLF: 134.92475800590185
Iteration: 8, Func. Count: 61, Neg. LLF: 134.89131437406078
Iteration: 9, Func. Count: 68, Neg. LLF: 134.7704980314626
Iteration: 10, Func. Count: 75, Neg. LLF: 134.7538890704687
Iteration: 11, Func. Count: 82, Neg. LLF: 134.739690224354
Iteration: 12, Func. Count: 89, Neg. LLF: 134.73236872765187
Iteration: 13, Func. Count: 96, Neg. LLF: 134.72944810591517
Iteration: 14, Func. Count: 103, Neg. LLF: 134.7288996812091
Iteration: 15, Func. Count: 110, Neg. LLF: 134.72886975681195
Iteration: 16, Func. Count: 117, Neg. LLF: 134.7288595210942
Iteration: 17, Func. Count: 123, Neg. LLF: 134.7288595267397
Optimization terminated successfully (Exit mode 0)
Current function value: 134.7288595210942
Iterations: 17
Function evaluations: 123
Gradient evaluations: 17
Iteration: 1, Func. Count: 9, Neg. LLF: 148.30163308037427
Iteration: 2, Func. Count: 19, Neg. LLF: 135.38473171473174
Iteration: 3, Func. Count: 27, Neg. LLF: 135.2821191694277
Iteration: 4, Func. Count: 35, Neg. LLF: 135.2590626702077
Iteration: 5, Func. Count: 43, Neg. LLF: 135.25942179285465
Iteration: 6, Func. Count: 52, Neg. LLF: 135.25863341211158
Iteration: 7, Func. Count: 60, Neg. LLF: 135.25851959881496
Iteration: 8, Func. Count: 68, Neg. LLF: 135.2583870839994
Iteration: 9, Func. Count: 76, Neg. LLF: 135.25795043608863
Iteration: 10, Func. Count: 84, Neg. LLF: 135.25713661608995
Iteration: 11, Func. Count: 92, Neg. LLF: 135.25467250200097
Iteration: 12, Func. Count: 100, Neg. LLF: 135.25389219082984
Iteration: 13, Func. Count: 108, Neg. LLF: 135.2537003064389
Iteration: 14, Func. Count: 116, Neg. LLF: 135.25369879244943
Iteration: 15, Func. Count: 123, Neg. LLF: 135.25369868882603
Optimization terminated successfully (Exit mode 0)
Current function value: 135.25369879244943
Iterations: 15
Function evaluations: 123
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 139.61948869909565
Iteration: 2, Func. Count: 21, Neg. LLF: 135.3940467816227
Iteration: 3, Func. Count: 30, Neg. LLF: 135.28535590346343
Iteration: 4, Func. Count: 39, Neg. LLF: 135.26281486010367
Iteration: 5, Func. Count: 48, Neg. LLF: 135.26364501750237
Iteration: 6, Func. Count: 58, Neg. LLF: 135.26112101405533
Iteration: 7, Func. Count: 67, Neg. LLF: 135.26092210046755
Iteration: 8, Func. Count: 76, Neg. LLF: 135.2605289275715
Iteration: 9, Func. Count: 85, Neg. LLF: 135.25958363228153
Iteration: 10, Func. Count: 94, Neg. LLF: 135.25821487659982
Iteration: 11, Func. Count: 103, Neg. LLF: 135.25759884695202
Iteration: 12, Func. Count: 112, Neg. LLF: 135.25728178316845
Iteration: 13, Func. Count: 121, Neg. LLF: 135.25728104733327
Optimization terminated successfully (Exit mode 0)
Current function value: 135.25728104733327
Iterations: 13
Function evaluations: 121
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 167.11093586750098
Iteration: 2, Func. Count: 22, Neg. LLF: 172.0312012742611
Iteration: 3, Func. Count: 34, Neg. LLF: 148.21860249857036
Iteration: 4, Func. Count: 45, Neg. LLF: 135.1078611453877
Iteration: 5, Func. Count: 55, Neg. LLF: 134.38268001116137
Iteration: 6, Func. Count: 66, Neg. LLF: 133.6073661248742
Iteration: 7, Func. Count: 76, Neg. LLF: 133.51075056111986
Iteration: 8, Func. Count: 86, Neg. LLF: 133.45554730383265
Iteration: 9, Func. Count: 96, Neg. LLF: 133.40062858751577
Iteration: 10, Func. Count: 106, Neg. LLF: 133.38821092407173
Iteration: 11, Func. Count: 116, Neg. LLF: 133.3822068061461
Iteration: 12, Func. Count: 126, Neg. LLF: 133.37120369053207
Iteration: 13, Func. Count: 136, Neg. LLF: 133.3658337521545
Iteration: 14, Func. Count: 146, Neg. LLF: 133.3632416618349
Iteration: 15, Func. Count: 156, Neg. LLF: 133.3617851659793
Iteration: 16, Func. Count: 166, Neg. LLF: 133.3604976938964
Iteration: 17, Func. Count: 176, Neg. LLF: 133.359988516146
Iteration: 18, Func. Count: 186, Neg. LLF: 133.35990634203245
Iteration: 19, Func. Count: 196, Neg. LLF: 133.35990133253753
Iteration: 20, Func. Count: 205, Neg. LLF: 133.35990133252614
Optimization terminated successfully (Exit mode 0)
Current function value: 133.35990133253753
Iterations: 20
Function evaluations: 205
Gradient evaluations: 20
Iteration: 1, Func. Count: 8, Neg. LLF: 137.0287072813026
Iteration: 2, Func. Count: 16, Neg. LLF: 135.91231682162018
Iteration: 3, Func. Count: 23, Neg. LLF: 135.65497843473185
Iteration: 4, Func. Count: 30, Neg. LLF: 135.3937509895823
Iteration: 5, Func. Count: 37, Neg. LLF: 135.13745080876112
Iteration: 6, Func. Count: 44, Neg. LLF: 136.325022898333
Iteration: 7, Func. Count: 52, Neg. LLF: 136.21658727618123
Iteration: 8, Func. Count: 60, Neg. LLF: 134.83684318659482
Iteration: 9, Func. Count: 67, Neg. LLF: 134.75940528025495
Iteration: 10, Func. Count: 74, Neg. LLF: 134.7426494505673
Iteration: 11, Func. Count: 81, Neg. LLF: 134.7300071434446
Iteration: 12, Func. Count: 88, Neg. LLF: 134.7290700872579
Iteration: 13, Func. Count: 95, Neg. LLF: 134.72886086562985
Iteration: 14, Func. Count: 102, Neg. LLF: 134.72885954067678
Iteration: 15, Func. Count: 108, Neg. LLF: 134.7288595768916
Optimization terminated successfully (Exit mode 0)
Current function value: 134.72885954067678
Iterations: 15
Function evaluations: 108
Gradient evaluations: 15
Iteration: 1, Func. Count: 9, Neg. LLF: 139.2236287955853
Iteration: 2, Func. Count: 19, Neg. LLF: 139.3770585474865
Iteration: 3, Func. Count: 28, Neg. LLF: 134.96766904536244
Iteration: 4, Func. Count: 36, Neg. LLF: 136.29045917135153
Iteration: 5, Func. Count: 45, Neg. LLF: 134.9389749870393
Iteration: 6, Func. Count: 54, Neg. LLF: 134.92929249074058
Iteration: 7, Func. Count: 62, Neg. LLF: 134.92911170430506
Iteration: 8, Func. Count: 70, Neg. LLF: 134.92822503352807
Iteration: 9, Func. Count: 78, Neg. LLF: 134.92729164853233
Iteration: 10, Func. Count: 86, Neg. LLF: 134.91591157359878
Iteration: 11, Func. Count: 94, Neg. LLF: 134.8516817517857
Iteration: 12, Func. Count: 102, Neg. LLF: 134.7319538527433
Iteration: 13, Func. Count: 110, Neg. LLF: 134.72950114035274
Iteration: 14, Func. Count: 118, Neg. LLF: 134.72887546564132
Iteration: 15, Func. Count: 126, Neg. LLF: 134.72886209261344
Iteration: 16, Func. Count: 134, Neg. LLF: 134.72886008162124
Iteration: 17, Func. Count: 141, Neg. LLF: 134.72886008721048
Optimization terminated successfully (Exit mode 0)
Current function value: 134.72886008162124
Iterations: 17
Function evaluations: 141
Gradient evaluations: 17
Iteration: 1, Func. Count: 10, Neg. LLF: 148.30602853464413
Iteration: 2, Func. Count: 21, Neg. LLF: 135.38451083010446
Iteration: 3, Func. Count: 30, Neg. LLF: 135.2807526099641
Iteration: 4, Func. Count: 39, Neg. LLF: 135.26039510551325
Iteration: 5, Func. Count: 48, Neg. LLF: 135.26700018544912
Iteration: 6, Func. Count: 58, Neg. LLF: 135.25876058259837
Iteration: 7, Func. Count: 67, Neg. LLF: 135.25868828069085
Iteration: 8, Func. Count: 76, Neg. LLF: 135.25832781009893
Iteration: 9, Func. Count: 85, Neg. LLF: 135.25680645137925
Iteration: 10, Func. Count: 94, Neg. LLF: 135.25369892557026
Iteration: 11, Func. Count: 102, Neg. LLF: 135.25369882288888
Optimization terminated successfully (Exit mode 0)
Current function value: 135.25369892557026
Iterations: 11
Function evaluations: 102
Gradient evaluations: 11
Iteration: 1, Func. Count: 11, Neg. LLF: 138.99825270924137
Iteration: 2, Func. Count: 23, Neg. LLF: 135.42947650179607
Iteration: 3, Func. Count: 33, Neg. LLF: 135.30222612112033
Iteration: 4, Func. Count: 43, Neg. LLF: 135.2651766137612
Iteration: 5, Func. Count: 53, Neg. LLF: 135.26620738868212
Iteration: 6, Func. Count: 64, Neg. LLF: 135.2617554196271
Iteration: 7, Func. Count: 74, Neg. LLF: 135.2615540151088
Iteration: 8, Func. Count: 84, Neg. LLF: 135.26056650003292
Iteration: 9, Func. Count: 94, Neg. LLF: 135.25739500702176
Iteration: 10, Func. Count: 104, Neg. LLF: 135.25738349102872
Iteration: 11, Func. Count: 114, Neg. LLF: 135.25738117306932
Iteration: 12, Func. Count: 124, Neg. LLF: 135.25737808840677
Iteration: 13, Func. Count: 134, Neg. LLF: 135.25736836081495
Iteration: 14, Func. Count: 144, Neg. LLF: 135.25735040280586
Iteration: 15, Func. Count: 154, Neg. LLF: 135.25731913431324
Iteration: 16, Func. Count: 164, Neg. LLF: 135.25727997660186
Iteration: 17, Func. Count: 174, Neg. LLF: 135.25725375741825
Iteration: 18, Func. Count: 184, Neg. LLF: 135.25716492401412
Iteration: 19, Func. Count: 194, Neg. LLF: 135.25416428676698
Iteration: 20, Func. Count: 204, Neg. LLF: 226.28374980779074
Iteration: 21, Func. Count: 219, Neg. LLF: 135.26027379675617
Iteration: 22, Func. Count: 231, Neg. LLF: 135.25370043292426
Iteration: 23, Func. Count: 241, Neg. LLF: 135.25370259118736
Iteration: 24, Func. Count: 251, Neg. LLF: 135.2536986896081
Optimization terminated successfully (Exit mode 0)
Current function value: 135.25369879293655
Iterations: 25
Function evaluations: 251
Gradient evaluations: 24
Iteration: 1, Func. Count: 12, Neg. LLF: 166.69352722646332
Iteration: 2, Func. Count: 24, Neg. LLF: 171.54575945011877
Iteration: 3, Func. Count: 36, Neg. LLF: 153.6837767864067
Iteration: 4, Func. Count: 48, Neg. LLF: 135.17275593259242
Iteration: 5, Func. Count: 59, Neg. LLF: 135.54523986442896
Iteration: 6, Func. Count: 71, Neg. LLF: 134.31595795292634
Iteration: 7, Func. Count: 83, Neg. LLF: 133.52808238320017
Iteration: 8, Func. Count: 94, Neg. LLF: 133.4709075309208
Iteration: 9, Func. Count: 105, Neg. LLF: 133.39861158698076
Iteration: 10, Func. Count: 116, Neg. LLF: 133.3823362810084
Iteration: 11, Func. Count: 127, Neg. LLF: 133.3774375860492
Iteration: 12, Func. Count: 138, Neg. LLF: 133.36916304586532
Iteration: 13, Func. Count: 149, Neg. LLF: 133.3651279288016
Iteration: 14, Func. Count: 160, Neg. LLF: 133.3631642266099
Iteration: 15, Func. Count: 171, Neg. LLF: 133.36195032999564
Iteration: 16, Func. Count: 182, Neg. LLF: 133.36069953281614
Iteration: 17, Func. Count: 193, Neg. LLF: 133.36004550991288
Iteration: 18, Func. Count: 204, Neg. LLF: 133.35991073593894
Iteration: 19, Func. Count: 215, Neg. LLF: 133.3599014706008
Iteration: 20, Func. Count: 225, Neg. LLF: 133.35990147061352
Optimization terminated successfully (Exit mode 0)
Current function value: 133.3599014706008
Iterations: 20
Function evaluations: 225
Gradient evaluations: 20
Iteration: 1, Func. Count: 5, Neg. LLF: 140.54596673951505
Iteration: 2, Func. Count: 10, Neg. LLF: 143.51690258678022
Iteration: 3, Func. Count: 15, Neg. LLF: 135.4401085480365
Iteration: 4, Func. Count: 19, Neg. LLF: 135.36418850619927
Iteration: 5, Func. Count: 23, Neg. LLF: 135.35525140214114
Iteration: 6, Func. Count: 27, Neg. LLF: 135.35366443867616
Iteration: 7, Func. Count: 31, Neg. LLF: 135.35335082666185
Iteration: 8, Func. Count: 35, Neg. LLF: 135.35325577710296
Iteration: 9, Func. Count: 38, Neg. LLF: 135.3532557770892
Optimization terminated successfully (Exit mode 0)
Current function value: 135.35325577710296
Iterations: 9
Function evaluations: 38
Gradient evaluations: 9
Iteration: 1, Func. Count: 6, Neg. LLF: 143.10349311138043
Iteration: 2, Func. Count: 12, Neg. LLF: 144.0014144363974
Iteration: 3, Func. Count: 18, Neg. LLF: 135.87639528615145
Iteration: 4, Func. Count: 24, Neg. LLF: 133.41548995736295
Iteration: 5, Func. Count: 29, Neg. LLF: 133.34112176995865
Iteration: 6, Func. Count: 34, Neg. LLF: 133.29544180816342
Iteration: 7, Func. Count: 39, Neg. LLF: 133.2746719191793
Iteration: 8, Func. Count: 44, Neg. LLF: 133.26581667251833
Iteration: 9, Func. Count: 49, Neg. LLF: 133.2653473592147
Iteration: 10, Func. Count: 54, Neg. LLF: 133.26533556306464
Iteration: 11, Func. Count: 58, Neg. LLF: 133.26533556306535
Optimization terminated successfully (Exit mode 0)
Current function value: 133.26533556306464
Iterations: 11
Function evaluations: 58
Gradient evaluations: 11
Iteration: 1, Func. Count: 7, Neg. LLF: 144.10583949523024
Iteration: 2, Func. Count: 14, Neg. LLF: 137.95057595489567
Iteration: 3, Func. Count: 21, Neg. LLF: 133.49169519746818
Iteration: 4, Func. Count: 27, Neg. LLF: 134.6823864122899
Iteration: 5, Func. Count: 34, Neg. LLF: 133.36832091989956
Iteration: 6, Func. Count: 40, Neg. LLF: 133.31743560834533
Iteration: 7, Func. Count: 46, Neg. LLF: 133.26976797597928
Iteration: 8, Func. Count: 52, Neg. LLF: 133.2663415690112
Iteration: 9, Func. Count: 58, Neg. LLF: 133.2653788606795
Iteration: 10, Func. Count: 64, Neg. LLF: 133.26533564769514
Iteration: 11, Func. Count: 69, Neg. LLF: 133.26533568932592
Optimization terminated successfully (Exit mode 0)
Current function value: 133.26533564769514
Iterations: 11
Function evaluations: 69
Gradient evaluations: 11
Iteration: 1, Func. Count: 8, Neg. LLF: 136.61031567827735
Iteration: 2, Func. Count: 16, Neg. LLF: 142.67861218428234
Iteration: 3, Func. Count: 24, Neg. LLF: 134.62425206863128
Iteration: 4, Func. Count: 32, Neg. LLF: 133.5562051883818
Iteration: 5, Func. Count: 39, Neg. LLF: 133.40639815539294
Iteration: 6, Func. Count: 46, Neg. LLF: 133.34466600175915
Iteration: 7, Func. Count: 53, Neg. LLF: 133.28741920119222
Iteration: 8, Func. Count: 60, Neg. LLF: 133.26735449204753
Iteration: 9, Func. Count: 67, Neg. LLF: 133.26539894287168
Iteration: 10, Func. Count: 74, Neg. LLF: 133.26533577337054
Iteration: 11, Func. Count: 80, Neg. LLF: 133.26533579398713
Optimization terminated successfully (Exit mode 0)
Current function value: 133.26533577337054
Iterations: 11
Function evaluations: 80
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 176.09982813304367
Iteration: 2, Func. Count: 18, Neg. LLF: 135.4735286750599
Iteration: 3, Func. Count: 27, Neg. LLF: 134.39766235254575
Iteration: 4, Func. Count: 35, Neg. LLF: 140.84216793109226
Iteration: 5, Func. Count: 44, Neg. LLF: 133.96030946740686
Iteration: 6, Func. Count: 52, Neg. LLF: 133.7261876054426
Iteration: 7, Func. Count: 60, Neg. LLF: 135.29656375505766
Iteration: 8, Func. Count: 69, Neg. LLF: 133.50240488672014
Iteration: 9, Func. Count: 78, Neg. LLF: 133.26549158865683
Iteration: 10, Func. Count: 86, Neg. LLF: 133.26536145007253
Iteration: 11, Func. Count: 94, Neg. LLF: 133.26533872511655
Iteration: 12, Func. Count: 102, Neg. LLF: 133.26533575385855
Iteration: 13, Func. Count: 109, Neg. LLF: 133.26533576204665
Optimization terminated successfully (Exit mode 0)
Current function value: 133.26533575385855
Iterations: 13
Function evaluations: 109
Gradient evaluations: 13
Iteration: 1, Func. Count: 6, Neg. LLF: 138.6712057542228
Iteration: 2, Func. Count: 12, Neg. LLF: 139.97999590729023
Iteration: 3, Func. Count: 18, Neg. LLF: 132.8588829417844
Iteration: 4, Func. Count: 23, Neg. LLF: 132.80624518217198
Iteration: 5, Func. Count: 28, Neg. LLF: 132.7708246078995
Iteration: 6, Func. Count: 33, Neg. LLF: 132.7613395830436
Iteration: 7, Func. Count: 38, Neg. LLF: 132.75748860519602
Iteration: 8, Func. Count: 43, Neg. LLF: 132.75663301496698
Iteration: 9, Func. Count: 48, Neg. LLF: 132.75651967359875
Iteration: 10, Func. Count: 53, Neg. LLF: 132.75650882070988
Iteration: 11, Func. Count: 57, Neg. LLF: 132.75650869105348
Optimization terminated successfully (Exit mode 0)
Current function value: 132.75650882070988
Iterations: 11
Function evaluations: 57
Gradient evaluations: 11
Iteration: 1, Func. Count: 7, Neg. LLF: 135.72833977332948
Iteration: 2, Func. Count: 14, Neg. LLF: 144.35735421637816
Iteration: 3, Func. Count: 21, Neg. LLF: 183.29883687504383
Iteration: 4, Func. Count: 28, Neg. LLF: 134.97284513963143
Iteration: 5, Func. Count: 35, Neg. LLF: 132.50824515107777
Iteration: 6, Func. Count: 41, Neg. LLF: 132.41338594460288
Iteration: 7, Func. Count: 47, Neg. LLF: 132.2892500758115
Iteration: 8, Func. Count: 53, Neg. LLF: 132.2797557329612
Iteration: 9, Func. Count: 59, Neg. LLF: 132.27629290014903
Iteration: 10, Func. Count: 65, Neg. LLF: 132.2759842866634
Iteration: 11, Func. Count: 71, Neg. LLF: 132.2759727156481
Iteration: 12, Func. Count: 76, Neg. LLF: 132.27597271562962
Optimization terminated successfully (Exit mode 0)
Current function value: 132.2759727156481
Iterations: 12
Function evaluations: 76
Gradient evaluations: 12
Iteration: 1, Func. Count: 8, Neg. LLF: 137.8983132289529
Iteration: 2, Func. Count: 16, Neg. LLF: 141.66286319289145
Iteration: 3, Func. Count: 24, Neg. LLF: 290.2411494766728
Iteration: 4, Func. Count: 32, Neg. LLF: 132.8172146222317
Iteration: 5, Func. Count: 39, Neg. LLF: 135.25578882107556
Iteration: 6, Func. Count: 47, Neg. LLF: 132.56142824935978
Iteration: 7, Func. Count: 54, Neg. LLF: 132.38810564214808
Iteration: 8, Func. Count: 61, Neg. LLF: 132.32925787902522
Iteration: 9, Func. Count: 68, Neg. LLF: 132.31031134897307
Iteration: 10, Func. Count: 75, Neg. LLF: 132.3069318044496
Iteration: 11, Func. Count: 82, Neg. LLF: 132.30438087955818
Iteration: 12, Func. Count: 89, Neg. LLF: 132.30276052304401
Iteration: 13, Func. Count: 96, Neg. LLF: 132.30067655531286
Iteration: 14, Func. Count: 103, Neg. LLF: 132.29978838654546
Iteration: 15, Func. Count: 110, Neg. LLF: 132.2995459084003
Iteration: 16, Func. Count: 117, Neg. LLF: 132.29953751148392
Iteration: 17, Func. Count: 123, Neg. LLF: 132.29953751152195
Optimization terminated successfully (Exit mode 0)
Current function value: 132.29953751148392
Iterations: 17
Function evaluations: 123
Gradient evaluations: 17
Iteration: 1, Func. Count: 9, Neg. LLF: 138.03545116541835
Iteration: 2, Func. Count: 18, Neg. LLF: 140.64447190782627
Iteration: 3, Func. Count: 27, Neg. LLF: 357.95677557617057
Iteration: 4, Func. Count: 37, Neg. LLF: 132.89660130258937
Iteration: 5, Func. Count: 46, Neg. LLF: 132.76817504477282
Iteration: 6, Func. Count: 55, Neg. LLF: 132.15466867867315
Iteration: 7, Func. Count: 63, Neg. LLF: 133.92856521838112
Iteration: 8, Func. Count: 72, Neg. LLF: 131.47855720228975
Iteration: 9, Func. Count: 80, Neg. LLF: 131.1826550239177
Iteration: 10, Func. Count: 88, Neg. LLF: 131.1213279471369
Iteration: 11, Func. Count: 96, Neg. LLF: 131.10683699265664
Iteration: 12, Func. Count: 104, Neg. LLF: 131.1033209530851
Iteration: 13, Func. Count: 112, Neg. LLF: 131.10316496061296
Iteration: 14, Func. Count: 120, Neg. LLF: 131.10304563690838
Iteration: 15, Func. Count: 128, Neg. LLF: 131.1030383478832
Iteration: 16, Func. Count: 135, Neg. LLF: 131.10303834801624
Optimization terminated successfully (Exit mode 0)
Current function value: 131.1030383478832
Iterations: 16
Function evaluations: 135
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 139.99450638329049
Iteration: 2, Func. Count: 20, Neg. LLF: 133.9714625764059
Iteration: 3, Func. Count: 29, Neg. LLF: 185.69962943007982
Iteration: 4, Func. Count: 40, Neg. LLF: 132.90727521911157
Iteration: 5, Func. Count: 49, Neg. LLF: 131.98602080019774
Iteration: 6, Func. Count: 58, Neg. LLF: 131.6961084753073
Iteration: 7, Func. Count: 67, Neg. LLF: 131.57564902107998
Iteration: 8, Func. Count: 76, Neg. LLF: 131.16869391384742
Iteration: 9, Func. Count: 85, Neg. LLF: 131.13737257565109
Iteration: 10, Func. Count: 94, Neg. LLF: 131.79288719971137
Iteration: 11, Func. Count: 104, Neg. LLF: 131.10440664915313
Iteration: 12, Func. Count: 113, Neg. LLF: 131.10313990519046
Iteration: 13, Func. Count: 122, Neg. LLF: 131.10304973158492
Iteration: 14, Func. Count: 131, Neg. LLF: 131.10303806924614
Iteration: 15, Func. Count: 139, Neg. LLF: 131.10303818397054
Optimization terminated successfully (Exit mode 0)
Current function value: 131.10303806924614
Iterations: 15
Function evaluations: 139
Gradient evaluations: 15
Iteration: 1, Func. Count: 7, Neg. LLF: 132.05288156588696
Iteration: 2, Func. Count: 13, Neg. LLF: 142.67387490857354
Iteration: 3, Func. Count: 20, Neg. LLF: 129.96722121250565
Iteration: 4, Func. Count: 26, Neg. LLF: 136.77855704689674
Iteration: 5, Func. Count: 33, Neg. LLF: 137.06930143946428
Iteration: 6, Func. Count: 40, Neg. LLF: 131.94171757810827
Iteration: 7, Func. Count: 47, Neg. LLF: 129.3193222465484
Iteration: 8, Func. Count: 54, Neg. LLF: 129.15071408896128
Iteration: 9, Func. Count: 60, Neg. LLF: 129.15025357884994
Iteration: 10, Func. Count: 66, Neg. LLF: 129.1502397569927
Iteration: 11, Func. Count: 71, Neg. LLF: 129.15023975699862
Optimization terminated successfully (Exit mode 0)
Current function value: 129.1502397569927
Iterations: 11
Function evaluations: 71
Gradient evaluations: 11
Iteration: 1, Func. Count: 8, Neg. LLF: 135.6842411587073
Iteration: 2, Func. Count: 16, Neg. LLF: 132.8580960355061
Iteration: 3, Func. Count: 24, Neg. LLF: 136.508545372022
Iteration: 4, Func. Count: 32, Neg. LLF: 134.5861771068291
Iteration: 5, Func. Count: 40, Neg. LLF: 129.08852701498225
Iteration: 6, Func. Count: 47, Neg. LLF: 129.05885197906807
Iteration: 7, Func. Count: 54, Neg. LLF: 129.04507087070542
Iteration: 8, Func. Count: 61, Neg. LLF: 129.04062818519344
Iteration: 9, Func. Count: 68, Neg. LLF: 129.03918599668413
Iteration: 10, Func. Count: 75, Neg. LLF: 129.03911727199713
Iteration: 11, Func. Count: 82, Neg. LLF: 129.03911458354543
Iteration: 12, Func. Count: 89, Neg. LLF: 129.03911327196994
Iteration: 13, Func. Count: 95, Neg. LLF: 129.03911327196883
Optimization terminated successfully (Exit mode 0)
Current function value: 129.03911327196994
Iterations: 13
Function evaluations: 95
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 138.01214382011614
Iteration: 2, Func. Count: 18, Neg. LLF: 139.6394874389881
Iteration: 3, Func. Count: 27, Neg. LLF: 130.74927215064403
Iteration: 4, Func. Count: 35, Neg. LLF: 133.51765315191253
Iteration: 5, Func. Count: 44, Neg. LLF: 137.41205097796183
Iteration: 6, Func. Count: 54, Neg. LLF: 129.12392263381065
Iteration: 7, Func. Count: 62, Neg. LLF: 129.05587434646748
Iteration: 8, Func. Count: 70, Neg. LLF: 129.04569897426828
Iteration: 9, Func. Count: 78, Neg. LLF: 129.04239940059725
Iteration: 10, Func. Count: 86, Neg. LLF: 129.03926674488906
Iteration: 11, Func. Count: 94, Neg. LLF: 129.0391187740508
Iteration: 12, Func. Count: 102, Neg. LLF: 129.0391134670104
Iteration: 13, Func. Count: 109, Neg. LLF: 129.03911351652076
Optimization terminated successfully (Exit mode 0)
Current function value: 129.0391134670104
Iterations: 13
Function evaluations: 109
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 133.55223307640213
Iteration: 2, Func. Count: 20, Neg. LLF: 137.46676745852807
Iteration: 3, Func. Count: 30, Neg. LLF: 129.21389195859908
Iteration: 4, Func. Count: 39, Neg. LLF: 131.74416617518594
Iteration: 5, Func. Count: 49, Neg. LLF: 130.05978890222318
Iteration: 6, Func. Count: 59, Neg. LLF: 128.91704008126374
Iteration: 7, Func. Count: 68, Neg. LLF: 129.39268376989972
Iteration: 8, Func. Count: 78, Neg. LLF: 128.78032553940162
Iteration: 9, Func. Count: 87, Neg. LLF: 129.77286796622099
Iteration: 10, Func. Count: 97, Neg. LLF: 128.77023289465143
Iteration: 11, Func. Count: 107, Neg. LLF: 128.7503728122019
Iteration: 12, Func. Count: 116, Neg. LLF: 128.7490240549334
Iteration: 13, Func. Count: 125, Neg. LLF: 128.7490111340218
Iteration: 14, Func. Count: 133, Neg. LLF: 128.749011134027
Optimization terminated successfully (Exit mode 0)
Current function value: 128.7490111340218
Iterations: 14
Function evaluations: 133
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 133.19999261582316
Iteration: 2, Func. Count: 21, Neg. LLF: 135.4204764105242
Iteration: 3, Func. Count: 32, Neg. LLF: 134.7748245564871
Iteration: 4, Func. Count: 43, Neg. LLF: 133.86722368239066
Iteration: 5, Func. Count: 54, Neg. LLF: 157.61472938167324
Iteration: 6, Func. Count: 65, Neg. LLF: 213.8337405748725
Iteration: 7, Func. Count: 76, Neg. LLF: 144.72530234425864
Iteration: 8, Func. Count: 87, Neg. LLF: 188.51307967079742
Iteration: 9, Func. Count: 98, Neg. LLF: 129.34236771494687
Iteration: 10, Func. Count: 109, Neg. LLF: 134.845756502282
Iteration: 11, Func. Count: 120, Neg. LLF: 129.1610245263096
Iteration: 12, Func. Count: 131, Neg. LLF: 128.76540414622744
Iteration: 13, Func. Count: 141, Neg. LLF: 128.75197472522888
Iteration: 14, Func. Count: 151, Neg. LLF: 128.7484148485023
Iteration: 15, Func. Count: 161, Neg. LLF: 128.7456289191806
Iteration: 16, Func. Count: 171, Neg. LLF: 128.74549362391758
Iteration: 17, Func. Count: 181, Neg. LLF: 128.74548598752153
Iteration: 18, Func. Count: 191, Neg. LLF: 128.74548503017908
Optimization terminated successfully (Exit mode 0)
Current function value: 128.74548503017908
Iterations: 18
Function evaluations: 191
Gradient evaluations: 18
Iteration: 1, Func. Count: 8, Neg. LLF: 140.28732307224507
Iteration: 2, Func. Count: 17, Neg. LLF: 132.72495507631257
Iteration: 3, Func. Count: 24, Neg. LLF: 134.9318753584993
Iteration: 4, Func. Count: 32, Neg. LLF: 129.62779888792696
Iteration: 5, Func. Count: 39, Neg. LLF: 136.27946041252366
Iteration: 6, Func. Count: 47, Neg. LLF: 129.78866299929945
Iteration: 7, Func. Count: 55, Neg. LLF: 129.15667813526576
Iteration: 8, Func. Count: 62, Neg. LLF: 129.12471824372724
Iteration: 9, Func. Count: 69, Neg. LLF: 129.11789857276642
Iteration: 10, Func. Count: 76, Neg. LLF: 129.11695363601484
Iteration: 11, Func. Count: 83, Neg. LLF: 129.11690155603216
Iteration: 12, Func. Count: 90, Neg. LLF: 129.11690108091352
Optimization terminated successfully (Exit mode 0)
Current function value: 129.11690108091352
Iterations: 12
Function evaluations: 90
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 135.2386565066719
Iteration: 2, Func. Count: 18, Neg. LLF: 133.84486438561203
Iteration: 3, Func. Count: 27, Neg. LLF: 131.96582531146117
Iteration: 4, Func. Count: 36, Neg. LLF: 134.64508474114007
Iteration: 5, Func. Count: 45, Neg. LLF: 129.10809886840505
Iteration: 6, Func. Count: 53, Neg. LLF: 129.06955546900002
Iteration: 7, Func. Count: 61, Neg. LLF: 129.05208431805428
Iteration: 8, Func. Count: 69, Neg. LLF: 129.04079351646715
Iteration: 9, Func. Count: 77, Neg. LLF: 129.0394730009043
Iteration: 10, Func. Count: 85, Neg. LLF: 129.03911774617796
Iteration: 11, Func. Count: 93, Neg. LLF: 129.03911332030606
Iteration: 12, Func. Count: 100, Neg. LLF: 129.03911332028565
Optimization terminated successfully (Exit mode 0)
Current function value: 129.03911332030606
Iterations: 12
Function evaluations: 100
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 139.51600913281362
Iteration: 2, Func. Count: 20, Neg. LLF: 134.87113295910052
Iteration: 3, Func. Count: 30, Neg. LLF: 130.84268283227678
Iteration: 4, Func. Count: 39, Neg. LLF: 134.79961530706268
Iteration: 5, Func. Count: 49, Neg. LLF: 147.82254781884689
Iteration: 6, Func. Count: 59, Neg. LLF: 129.3141834185278
Iteration: 7, Func. Count: 68, Neg. LLF: 129.10417479805565
Iteration: 8, Func. Count: 77, Neg. LLF: 129.05726252508651
Iteration: 9, Func. Count: 86, Neg. LLF: 129.04542732390857
Iteration: 10, Func. Count: 95, Neg. LLF: 129.04133733190767
Iteration: 11, Func. Count: 104, Neg. LLF: 129.0395814888414
Iteration: 12, Func. Count: 113, Neg. LLF: 129.0392062684177
Iteration: 13, Func. Count: 122, Neg. LLF: 129.0391353506822
Iteration: 14, Func. Count: 131, Neg. LLF: 129.039117463006
Iteration: 15, Func. Count: 140, Neg. LLF: 129.03911350074452
Iteration: 16, Func. Count: 148, Neg. LLF: 129.0391135503204
Optimization terminated successfully (Exit mode 0)
Current function value: 129.03911350074452
Iterations: 16
Function evaluations: 148
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 136.2819781046227
Iteration: 2, Func. Count: 22, Neg. LLF: 138.20174261915736
Iteration: 3, Func. Count: 33, Neg. LLF: 129.2498421640402
Iteration: 4, Func. Count: 43, Neg. LLF: 135.38610554444008
Iteration: 5, Func. Count: 55, Neg. LLF: 129.17888636482536
Iteration: 6, Func. Count: 65, Neg. LLF: 130.6476133495935
Iteration: 7, Func. Count: 76, Neg. LLF: 129.09470694804415
Iteration: 8, Func. Count: 87, Neg. LLF: 128.79480370837888
Iteration: 9, Func. Count: 97, Neg. LLF: 128.7633065910827
Iteration: 10, Func. Count: 107, Neg. LLF: 128.79096691077228
Iteration: 11, Func. Count: 118, Neg. LLF: 128.7559208795017
Iteration: 12, Func. Count: 128, Neg. LLF: 128.74927168820682
Iteration: 13, Func. Count: 138, Neg. LLF: 128.74902479509717
Iteration: 14, Func. Count: 148, Neg. LLF: 128.74901092356583
Iteration: 15, Func. Count: 157, Neg. LLF: 128.74901092350694
Optimization terminated successfully (Exit mode 0)
Current function value: 128.74901092356583
Iterations: 15
Function evaluations: 157
Gradient evaluations: 15
Iteration: 1, Func. Count: 12, Neg. LLF: 137.35254943751795
Iteration: 2, Func. Count: 24, Neg. LLF: 132.2418305221597
Iteration: 3, Func. Count: 35, Neg. LLF: 129.96501649572264
Iteration: 4, Func. Count: 46, Neg. LLF: 129.30782033579572
Iteration: 5, Func. Count: 57, Neg. LLF: 130.43524227172603
Iteration: 6, Func. Count: 69, Neg. LLF: 139.04158933134175
Iteration: 7, Func. Count: 81, Neg. LLF: 128.9668128755884
Iteration: 8, Func. Count: 92, Neg. LLF: 128.88215107043342
Iteration: 9, Func. Count: 103, Neg. LLF: 131.47778093048618
Iteration: 10, Func. Count: 115, Neg. LLF: 129.17750491637287
Iteration: 11, Func. Count: 127, Neg. LLF: 128.7851250732272
Iteration: 12, Func. Count: 139, Neg. LLF: 128.83304230187736
Iteration: 13, Func. Count: 151, Neg. LLF: 128.74869031833546
Iteration: 14, Func. Count: 162, Neg. LLF: 128.7455442695207
Iteration: 15, Func. Count: 173, Neg. LLF: 128.74549314560326
Iteration: 16, Func. Count: 184, Neg. LLF: 128.7454855337707
Iteration: 17, Func. Count: 195, Neg. LLF: 128.74548499055285
Optimization terminated successfully (Exit mode 0)
Current function value: 128.74548499055285
Iterations: 17
Function evaluations: 195
Gradient evaluations: 17
Iteration: 1, Func. Count: 9, Neg. LLF: 140.71742717327422
Iteration: 2, Func. Count: 19, Neg. LLF: 133.58186181256602
Iteration: 3, Func. Count: 28, Neg. LLF: 137.7489075756115
Iteration: 4, Func. Count: 37, Neg. LLF: 129.74853784787464
Iteration: 5, Func. Count: 45, Neg. LLF: 132.4216373982363
Iteration: 6, Func. Count: 54, Neg. LLF: 129.3233758427287
Iteration: 7, Func. Count: 62, Neg. LLF: 129.16877269059054
Iteration: 8, Func. Count: 70, Neg. LLF: 129.14111781302793
Iteration: 9, Func. Count: 78, Neg. LLF: 129.12215893636645
Iteration: 10, Func. Count: 86, Neg. LLF: 129.11711614154393
Iteration: 11, Func. Count: 94, Neg. LLF: 129.11690508508738
Iteration: 12, Func. Count: 102, Neg. LLF: 129.1169014805906
Iteration: 13, Func. Count: 109, Neg. LLF: 129.11690154222038
Optimization terminated successfully (Exit mode 0)
Current function value: 129.1169014805906
Iterations: 13
Function evaluations: 109
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 135.22281800789548
Iteration: 2, Func. Count: 20, Neg. LLF: 133.95696582477612
Iteration: 3, Func. Count: 30, Neg. LLF: 131.83793992695402
Iteration: 4, Func. Count: 40, Neg. LLF: 134.66031831992646
Iteration: 5, Func. Count: 50, Neg. LLF: 129.10844522555132
Iteration: 6, Func. Count: 59, Neg. LLF: 129.06996334924509
Iteration: 7, Func. Count: 68, Neg. LLF: 129.05360683575714
Iteration: 8, Func. Count: 77, Neg. LLF: 129.04084933984643
Iteration: 9, Func. Count: 86, Neg. LLF: 129.03948547209805
Iteration: 10, Func. Count: 95, Neg. LLF: 129.03911759964356
Iteration: 11, Func. Count: 104, Neg. LLF: 129.03911332621237
Iteration: 12, Func. Count: 112, Neg. LLF: 129.0391133261901
Optimization terminated successfully (Exit mode 0)
Current function value: 129.03911332621237
Iterations: 12
Function evaluations: 112
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 142.96036926252694
Iteration: 2, Func. Count: 22, Neg. LLF: 129.96274251684008
Iteration: 3, Func. Count: 32, Neg. LLF: 132.8275927035004
Iteration: 4, Func. Count: 43, Neg. LLF: 129.8630859849102
Iteration: 5, Func. Count: 54, Neg. LLF: 136.31820554218586
Iteration: 6, Func. Count: 65, Neg. LLF: 136.69717891264844
Iteration: 7, Func. Count: 76, Neg. LLF: 129.57529757725467
Iteration: 8, Func. Count: 87, Neg. LLF: 129.05637391740615
Iteration: 9, Func. Count: 97, Neg. LLF: 129.04270886006807
Iteration: 10, Func. Count: 107, Neg. LLF: 129.04081790863387
Iteration: 11, Func. Count: 117, Neg. LLF: 129.03914593642241
Iteration: 12, Func. Count: 127, Neg. LLF: 129.03911459665966
Iteration: 13, Func. Count: 137, Neg. LLF: 129.03911327458866
Iteration: 14, Func. Count: 146, Neg. LLF: 129.0391133241493
Optimization terminated successfully (Exit mode 0)
Current function value: 129.03911327458866
Iterations: 14
Function evaluations: 146
Gradient evaluations: 14
Iteration: 1, Func. Count: 12, Neg. LLF: 152.57622851787906
Iteration: 2, Func. Count: 24, Neg. LLF: 129.86794187308863
Iteration: 3, Func. Count: 35, Neg. LLF: 130.96488279942108
Iteration: 4, Func. Count: 47, Neg. LLF: 131.54054919469058
Iteration: 5, Func. Count: 59, Neg. LLF: 154.3924647326418
Iteration: 6, Func. Count: 71, Neg. LLF: 137.78464522457804
Iteration: 7, Func. Count: 83, Neg. LLF: 132.76120858690726
Iteration: 8, Func. Count: 95, Neg. LLF: 128.86125374840685
Iteration: 9, Func. Count: 106, Neg. LLF: 128.7984475491069
Iteration: 10, Func. Count: 117, Neg. LLF: 128.76762033543923
Iteration: 11, Func. Count: 128, Neg. LLF: 128.75479067180697
Iteration: 12, Func. Count: 139, Neg. LLF: 128.75235848328663
Iteration: 13, Func. Count: 150, Neg. LLF: 128.75061098560377
Iteration: 14, Func. Count: 161, Neg. LLF: 128.74952996242732
Iteration: 15, Func. Count: 172, Neg. LLF: 128.74910943621882
Iteration: 16, Func. Count: 183, Neg. LLF: 128.74901890038007
Iteration: 17, Func. Count: 194, Neg. LLF: 128.74901089534336
Iteration: 18, Func. Count: 204, Neg. LLF: 128.74901089536434
Optimization terminated successfully (Exit mode 0)
Current function value: 128.74901089534336
Iterations: 18
Function evaluations: 204
Gradient evaluations: 18
Iteration: 1, Func. Count: 13, Neg. LLF: 141.73334757423873
Iteration: 2, Func. Count: 27, Neg. LLF: 129.5574660637434
Iteration: 3, Func. Count: 39, Neg. LLF: 129.64117068925495
Iteration: 4, Func. Count: 52, Neg. LLF: 129.72178107742755
Iteration: 5, Func. Count: 65, Neg. LLF: 147.86281018022396
Iteration: 6, Func. Count: 78, Neg. LLF: 132.04647446974016
Iteration: 7, Func. Count: 91, Neg. LLF: 130.62442384994392
Iteration: 8, Func. Count: 104, Neg. LLF: 128.82946412058791
Iteration: 9, Func. Count: 116, Neg. LLF: 131.76812575541967
Iteration: 10, Func. Count: 130, Neg. LLF: 128.90947715269843
Iteration: 11, Func. Count: 143, Neg. LLF: 128.75871475872583
Iteration: 12, Func. Count: 155, Neg. LLF: 128.75164040975244
Iteration: 13, Func. Count: 167, Neg. LLF: 128.76470757309676
Iteration: 14, Func. Count: 180, Neg. LLF: 128.74566428767122
Iteration: 15, Func. Count: 192, Neg. LLF: 128.7455034536038
Iteration: 16, Func. Count: 204, Neg. LLF: 128.74548623860798
Iteration: 17, Func. Count: 216, Neg. LLF: 128.74548509156364
Iteration: 18, Func. Count: 227, Neg. LLF: 128.74548509162545
Optimization terminated successfully (Exit mode 0)
Current function value: 128.74548509156364
Iterations: 18
Function evaluations: 227
Gradient evaluations: 18
Iteration: 1, Func. Count: 6, Neg. LLF: 135.12018383032992
Iteration: 2, Func. Count: 12, Neg. LLF: 137.49609607804385
Iteration: 3, Func. Count: 18, Neg. LLF: 132.92278965318533
Iteration: 4, Func. Count: 23, Neg. LLF: 191.7914133692793
Iteration: 5, Func. Count: 29, Neg. LLF: 132.73743654614023
Iteration: 6, Func. Count: 35, Neg. LLF: 132.53087662129883
Iteration: 7, Func. Count: 40, Neg. LLF: 132.52749481136328
Iteration: 8, Func. Count: 45, Neg. LLF: 132.52654619732903
Iteration: 9, Func. Count: 50, Neg. LLF: 132.52650779428308
Iteration: 10, Func. Count: 55, Neg. LLF: 132.5265033936756
Iteration: 11, Func. Count: 59, Neg. LLF: 132.52650339367534
Optimization terminated successfully (Exit mode 0)
Current function value: 132.5265033936756
Iterations: 11
Function evaluations: 59
Gradient evaluations: 11
Iteration: 1, Func. Count: 7, Neg. LLF: 134.40266353106526
Iteration: 2, Func. Count: 14, Neg. LLF: 135.43766083372537
Iteration: 3, Func. Count: 21, Neg. LLF: 133.47011160831212
Iteration: 4, Func. Count: 28, Neg. LLF: 132.99279657396337
Iteration: 5, Func. Count: 35, Neg. LLF: 132.54828181085583
Iteration: 6, Func. Count: 41, Neg. LLF: 132.5327806782468
Iteration: 7, Func. Count: 47, Neg. LLF: 132.528546889644
Iteration: 8, Func. Count: 53, Neg. LLF: 132.52704021362624
Iteration: 9, Func. Count: 59, Neg. LLF: 132.52651801559293
Iteration: 10, Func. Count: 65, Neg. LLF: 132.5265035667766
Iteration: 11, Func. Count: 70, Neg. LLF: 132.52650357508008
Optimization terminated successfully (Exit mode 0)
Current function value: 132.5265035667766
Iterations: 11
Function evaluations: 70
Gradient evaluations: 11
Iteration: 1, Func. Count: 8, Neg. LLF: 136.09744237741677
Iteration: 2, Func. Count: 16, Neg. LLF: 132.8450248706028
Iteration: 3, Func. Count: 23, Neg. LLF: 135.62484503827665
Iteration: 4, Func. Count: 31, Neg. LLF: 132.57738576734894
Iteration: 5, Func. Count: 38, Neg. LLF: 132.53910180809572
Iteration: 6, Func. Count: 45, Neg. LLF: 132.67221680597353
Iteration: 7, Func. Count: 53, Neg. LLF: 132.52833752387525
Iteration: 8, Func. Count: 60, Neg. LLF: 132.5265605269488
Iteration: 9, Func. Count: 67, Neg. LLF: 132.52650468206622
Iteration: 10, Func. Count: 74, Neg. LLF: 132.52650342049319
Iteration: 11, Func. Count: 80, Neg. LLF: 132.5265034409154
Optimization terminated successfully (Exit mode 0)
Current function value: 132.52650342049319
Iterations: 11
Function evaluations: 80
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 134.87221317735737
Iteration: 2, Func. Count: 18, Neg. LLF: 133.32616437561157
Iteration: 3, Func. Count: 26, Neg. LLF: 133.84396367360836
Iteration: 4, Func. Count: 35, Neg. LLF: 133.71951315687102
Iteration: 5, Func. Count: 44, Neg. LLF: 134.54474954191423
Iteration: 6, Func. Count: 53, Neg. LLF: 132.6410697608877
Iteration: 7, Func. Count: 61, Neg. LLF: 132.55928242960886
Iteration: 8, Func. Count: 69, Neg. LLF: 132.5346493831786
Iteration: 9, Func. Count: 77, Neg. LLF: 132.52818517181396
Iteration: 10, Func. Count: 85, Neg. LLF: 132.52655233163074
Iteration: 11, Func. Count: 93, Neg. LLF: 132.5265047596362
Iteration: 12, Func. Count: 101, Neg. LLF: 132.52650341114344
Iteration: 13, Func. Count: 108, Neg. LLF: 132.5265034400681
Optimization terminated successfully (Exit mode 0)
Current function value: 132.52650341114344
Iterations: 13
Function evaluations: 108
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 134.79378801918816
Iteration: 2, Func. Count: 20, Neg. LLF: 133.47326583608734
Iteration: 3, Func. Count: 29, Neg. LLF: 133.1266862901948
Iteration: 4, Func. Count: 38, Neg. LLF: 137.48536700873032
Iteration: 5, Func. Count: 48, Neg. LLF: 133.47790420645987
Iteration: 6, Func. Count: 58, Neg. LLF: 132.6996356598024
Iteration: 7, Func. Count: 67, Neg. LLF: 132.81380539119982
Iteration: 8, Func. Count: 77, Neg. LLF: 132.5390823228193
Iteration: 9, Func. Count: 86, Neg. LLF: 132.44670707736876
Iteration: 10, Func. Count: 95, Neg. LLF: 132.40224023359357
Iteration: 11, Func. Count: 104, Neg. LLF: 132.39246599683895
Iteration: 12, Func. Count: 113, Neg. LLF: 132.38907436680435
Iteration: 13, Func. Count: 122, Neg. LLF: 132.38803159990093
Iteration: 14, Func. Count: 131, Neg. LLF: 132.387691561842
Iteration: 15, Func. Count: 140, Neg. LLF: 132.38756509061423
Iteration: 16, Func. Count: 149, Neg. LLF: 132.38756306907194
Iteration: 17, Func. Count: 157, Neg. LLF: 132.38756306907524
Optimization terminated successfully (Exit mode 0)
Current function value: 132.38756306907194
Iterations: 17
Function evaluations: 157
Gradient evaluations: 17
Iteration: 1, Func. Count: 7, Neg. LLF: 132.504268094283
Iteration: 2, Func. Count: 13, Neg. LLF: 144.71149473091336
Iteration: 3, Func. Count: 20, Neg. LLF: 129.81416666404715
Iteration: 4, Func. Count: 26, Neg. LLF: 130.37974144076276
Iteration: 5, Func. Count: 33, Neg. LLF: 129.7052068837249
Iteration: 6, Func. Count: 40, Neg. LLF: 129.3059504469993
Iteration: 7, Func. Count: 46, Neg. LLF: 129.20383797189066
Iteration: 8, Func. Count: 52, Neg. LLF: 129.19972105036405
Iteration: 9, Func. Count: 58, Neg. LLF: 129.19916950151648
Iteration: 10, Func. Count: 63, Neg. LLF: 129.19916962285367
Optimization terminated successfully (Exit mode 0)
Current function value: 129.19916950151648
Iterations: 10
Function evaluations: 63
Gradient evaluations: 10
Iteration: 1, Func. Count: 8, Neg. LLF: 132.56764933623776
Iteration: 2, Func. Count: 15, Neg. LLF: 135.89662743333884
Iteration: 3, Func. Count: 23, Neg. LLF: 140.25295839648217
Iteration: 4, Func. Count: 31, Neg. LLF: 133.70523144082898
Iteration: 5, Func. Count: 40, Neg. LLF: 129.29461001222265
Iteration: 6, Func. Count: 47, Neg. LLF: 129.22652258401277
Iteration: 7, Func. Count: 54, Neg. LLF: 129.21105443163952
Iteration: 8, Func. Count: 61, Neg. LLF: 129.19963750170305
Iteration: 9, Func. Count: 68, Neg. LLF: 129.19921939598532
Iteration: 10, Func. Count: 75, Neg. LLF: 129.19916975443505
Iteration: 11, Func. Count: 82, Neg. LLF: 129.19916911904923
Optimization terminated successfully (Exit mode 0)
Current function value: 129.19916911904923
Iterations: 11
Function evaluations: 82
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 132.2182276228644
Iteration: 2, Func. Count: 17, Neg. LLF: 135.18614647302317
Iteration: 3, Func. Count: 26, Neg. LLF: 140.1822592122247
Iteration: 4, Func. Count: 35, Neg. LLF: 133.54285565733093
Iteration: 5, Func. Count: 45, Neg. LLF: 129.2996527964506
Iteration: 6, Func. Count: 53, Neg. LLF: 129.22878742448015
Iteration: 7, Func. Count: 61, Neg. LLF: 129.2076597472218
Iteration: 8, Func. Count: 69, Neg. LLF: 129.19956362903073
Iteration: 9, Func. Count: 77, Neg. LLF: 129.199208860991
Iteration: 10, Func. Count: 85, Neg. LLF: 129.1991695228617
Iteration: 11, Func. Count: 92, Neg. LLF: 129.19916956888807
Optimization terminated successfully (Exit mode 0)
Current function value: 129.1991695228617
Iterations: 11
Function evaluations: 92
Gradient evaluations: 11
Iteration: 1, Func. Count: 10, Neg. LLF: 131.90916960609323
Iteration: 2, Func. Count: 19, Neg. LLF: 133.33357496527853
Iteration: 3, Func. Count: 29, Neg. LLF: 135.60146380763868
Iteration: 4, Func. Count: 39, Neg. LLF: 134.40879618640702
Iteration: 5, Func. Count: 49, Neg. LLF: 129.87625997388304
Iteration: 6, Func. Count: 59, Neg. LLF: 129.21212488736532
Iteration: 7, Func. Count: 68, Neg. LLF: 136.54141967101518
Iteration: 8, Func. Count: 78, Neg. LLF: 129.1000701532195
Iteration: 9, Func. Count: 87, Neg. LLF: 129.06078865049872
Iteration: 10, Func. Count: 96, Neg. LLF: 129.05505447368404
Iteration: 11, Func. Count: 105, Neg. LLF: 129.0540130096796
Iteration: 12, Func. Count: 114, Neg. LLF: 129.05397669434151
Iteration: 13, Func. Count: 123, Neg. LLF: 129.0539698035431
Iteration: 14, Func. Count: 131, Neg. LLF: 129.05396980354035
Optimization terminated successfully (Exit mode 0)
Current function value: 129.0539698035431
Iterations: 14
Function evaluations: 131
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 131.5886116366145
Iteration: 2, Func. Count: 21, Neg. LLF: 133.91673000163735
Iteration: 3, Func. Count: 32, Neg. LLF: 135.5899060552888
Iteration: 4, Func. Count: 43, Neg. LLF: 134.40087548294815
Iteration: 5, Func. Count: 54, Neg. LLF: 129.87292376170078
Iteration: 6, Func. Count: 65, Neg. LLF: 129.21468831328914
Iteration: 7, Func. Count: 75, Neg. LLF: 136.24423539726988
Iteration: 8, Func. Count: 86, Neg. LLF: 129.1044088123581
Iteration: 9, Func. Count: 96, Neg. LLF: 129.1522497406779
Iteration: 10, Func. Count: 107, Neg. LLF: 129.1369131915218
Iteration: 11, Func. Count: 118, Neg. LLF: 129.05522898164745
Iteration: 12, Func. Count: 128, Neg. LLF: 129.05418222766127
Iteration: 13, Func. Count: 138, Neg. LLF: 129.05398152419485
Iteration: 14, Func. Count: 148, Neg. LLF: 129.05397010801707
Iteration: 15, Func. Count: 157, Neg. LLF: 129.05397010932657
Optimization terminated successfully (Exit mode 0)
Current function value: 129.05397010801707
Iterations: 15
Function evaluations: 157
Gradient evaluations: 15
Iteration: 1, Func. Count: 8, Neg. LLF: 134.53152930825414
Iteration: 2, Func. Count: 16, Neg. LLF: 137.3269341551993
Iteration: 3, Func. Count: 24, Neg. LLF: 129.67033752920355
Iteration: 4, Func. Count: 31, Neg. LLF: 130.32522596245016
Iteration: 5, Func. Count: 39, Neg. LLF: 131.39930284923986
Iteration: 6, Func. Count: 47, Neg. LLF: 129.12144231994185
Iteration: 7, Func. Count: 54, Neg. LLF: 129.04411549195123
Iteration: 8, Func. Count: 61, Neg. LLF: 129.0352061344029
Iteration: 9, Func. Count: 68, Neg. LLF: 129.0348517065437
Iteration: 10, Func. Count: 75, Neg. LLF: 129.034823894571
Iteration: 11, Func. Count: 81, Neg. LLF: 129.03482389455417
Optimization terminated successfully (Exit mode 0)
Current function value: 129.034823894571
Iterations: 11
Function evaluations: 81
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 132.38102946784318
Iteration: 2, Func. Count: 17, Neg. LLF: 134.35659726374055
Iteration: 3, Func. Count: 26, Neg. LLF: 142.8158819606559
Iteration: 4, Func. Count: 35, Neg. LLF: 132.17405248187657
Iteration: 5, Func. Count: 44, Neg. LLF: 129.43390359229096
Iteration: 6, Func. Count: 53, Neg. LLF: 129.05502797340674
Iteration: 7, Func. Count: 61, Neg. LLF: 129.02240230088793
Iteration: 8, Func. Count: 69, Neg. LLF: 129.0162770279714
Iteration: 9, Func. Count: 77, Neg. LLF: 129.01417874840274
Iteration: 10, Func. Count: 85, Neg. LLF: 129.0139607494744
Iteration: 11, Func. Count: 93, Neg. LLF: 129.01394773705235
Iteration: 12, Func. Count: 100, Neg. LLF: 129.01394773697908
Optimization terminated successfully (Exit mode 0)
Current function value: 129.01394773705235
Iterations: 12
Function evaluations: 100
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 132.30482821453674
Iteration: 2, Func. Count: 19, Neg. LLF: 131.09224853261452
Iteration: 3, Func. Count: 29, Neg. LLF: 173.57179099892718
Iteration: 4, Func. Count: 39, Neg. LLF: 136.30924104374986
Iteration: 5, Func. Count: 49, Neg. LLF: 129.4313792331256
Iteration: 6, Func. Count: 59, Neg. LLF: 129.07731103141515
Iteration: 7, Func. Count: 68, Neg. LLF: 129.13877528614577
Iteration: 8, Func. Count: 78, Neg. LLF: 129.03102414264796
Iteration: 9, Func. Count: 87, Neg. LLF: 129.01609028342193
Iteration: 10, Func. Count: 96, Neg. LLF: 129.0140129390887
Iteration: 11, Func. Count: 105, Neg. LLF: 129.01394841087762
Iteration: 12, Func. Count: 114, Neg. LLF: 129.01394745634926
Optimization terminated successfully (Exit mode 0)
Current function value: 129.01394745634926
Iterations: 12
Function evaluations: 114
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 131.6609683650009
Iteration: 2, Func. Count: 21, Neg. LLF: 136.33501011157594
Iteration: 3, Func. Count: 32, Neg. LLF: 135.76333723069487
Iteration: 4, Func. Count: 43, Neg. LLF: 136.43942742414072
Iteration: 5, Func. Count: 54, Neg. LLF: 138.54657745700098
Iteration: 6, Func. Count: 65, Neg. LLF: 137.1854497712791
Iteration: 7, Func. Count: 76, Neg. LLF: 275.3046030446262
Iteration: 8, Func. Count: 87, Neg. LLF: 138.88032962562426
Iteration: 9, Func. Count: 98, Neg. LLF: 129.02582417025218
Iteration: 10, Func. Count: 109, Neg. LLF: 128.87801819658753
Iteration: 11, Func. Count: 120, Neg. LLF: 128.78057993250818
Iteration: 12, Func. Count: 130, Neg. LLF: 128.75580116758684
Iteration: 13, Func. Count: 140, Neg. LLF: 128.75014512052613
Iteration: 14, Func. Count: 150, Neg. LLF: 128.751175494387
Iteration: 15, Func. Count: 161, Neg. LLF: 128.76411692656396
Iteration: 16, Func. Count: 172, Neg. LLF: 128.74797776100132
Iteration: 17, Func. Count: 182, Neg. LLF: 128.74790097767743
Iteration: 18, Func. Count: 192, Neg. LLF: 128.7478931462932
Iteration: 19, Func. Count: 201, Neg. LLF: 128.74789314633054
Optimization terminated successfully (Exit mode 0)
Current function value: 128.7478931462932
Iterations: 19
Function evaluations: 201
Gradient evaluations: 19
Iteration: 1, Func. Count: 12, Neg. LLF: 131.36612392355528
Iteration: 2, Func. Count: 23, Neg. LLF: 137.7493901358555
Iteration: 3, Func. Count: 35, Neg. LLF: 135.45591305067416
Iteration: 4, Func. Count: 47, Neg. LLF: 136.1407284490079
Iteration: 5, Func. Count: 59, Neg. LLF: 137.5646346005416
Iteration: 6, Func. Count: 71, Neg. LLF: 151.1145813264165
Iteration: 7, Func. Count: 83, Neg. LLF: 10591.597254743067
Iteration: 8, Func. Count: 95, Neg. LLF: 137.7858486554114
Iteration: 9, Func. Count: 107, Neg. LLF: 130.55459923031665
Iteration: 10, Func. Count: 119, Neg. LLF: 129.23580104403078
Iteration: 11, Func. Count: 131, Neg. LLF: 129.01215728777936
Iteration: 12, Func. Count: 143, Neg. LLF: 128.7794912323668
Iteration: 13, Func. Count: 155, Neg. LLF: 128.74177916915
Iteration: 14, Func. Count: 166, Neg. LLF: 128.73818127936164
Iteration: 15, Func. Count: 177, Neg. LLF: 128.73775725462227
Iteration: 16, Func. Count: 188, Neg. LLF: 128.7377416182126
Iteration: 17, Func. Count: 199, Neg. LLF: 128.73773996250864
Iteration: 18, Func. Count: 209, Neg. LLF: 128.73773996251856
Optimization terminated successfully (Exit mode 0)
Current function value: 128.73773996250864
Iterations: 18
Function evaluations: 209
Gradient evaluations: 18
Iteration: 1, Func. Count: 9, Neg. LLF: 135.33989256449405
Iteration: 2, Func. Count: 18, Neg. LLF: 146.78033916187348
Iteration: 3, Func. Count: 27, Neg. LLF: 134.91703007489343
Iteration: 4, Func. Count: 36, Neg. LLF: 129.66779501644686
Iteration: 5, Func. Count: 44, Neg. LLF: 136.5510473347317
Iteration: 6, Func. Count: 54, Neg. LLF: 135.26172905351922
Iteration: 7, Func. Count: 64, Neg. LLF: 129.08856934547234
Iteration: 8, Func. Count: 72, Neg. LLF: 129.06734044495283
Iteration: 9, Func. Count: 80, Neg. LLF: 129.00117751981313
Iteration: 10, Func. Count: 88, Neg. LLF: 128.99787823828555
Iteration: 11, Func. Count: 96, Neg. LLF: 128.99629780831134
Iteration: 12, Func. Count: 104, Neg. LLF: 128.99621420664715
Iteration: 13, Func. Count: 111, Neg. LLF: 128.9962142066932
Optimization terminated successfully (Exit mode 0)
Current function value: 128.99621420664715
Iterations: 13
Function evaluations: 111
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 132.447586898836
Iteration: 2, Func. Count: 19, Neg. LLF: 131.3822381007745
Iteration: 3, Func. Count: 29, Neg. LLF: 150.05979886651332
Iteration: 4, Func. Count: 39, Neg. LLF: 135.61805877401346
Iteration: 5, Func. Count: 49, Neg. LLF: 129.4652463807632
Iteration: 6, Func. Count: 58, Neg. LLF: 129.26765363500914
Iteration: 7, Func. Count: 68, Neg. LLF: 129.0323351357136
Iteration: 8, Func. Count: 77, Neg. LLF: 129.3457193607228
Iteration: 9, Func. Count: 87, Neg. LLF: 128.9981034151192
Iteration: 10, Func. Count: 96, Neg. LLF: 128.99655997974514
Iteration: 11, Func. Count: 105, Neg. LLF: 128.99622791217075
Iteration: 12, Func. Count: 114, Neg. LLF: 128.99621765800293
Iteration: 13, Func. Count: 123, Neg. LLF: 128.99621419835148
Iteration: 14, Func. Count: 131, Neg. LLF: 128.99621420450927
Optimization terminated successfully (Exit mode 0)
Current function value: 128.99621419835148
Iterations: 14
Function evaluations: 131
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 132.50060884783431
Iteration: 2, Func. Count: 21, Neg. LLF: 131.52962301324092
Iteration: 3, Func. Count: 32, Neg. LLF: 146.4372808292079
Iteration: 4, Func. Count: 43, Neg. LLF: 136.73153932747124
Iteration: 5, Func. Count: 54, Neg. LLF: 135.9052945338233
Iteration: 6, Func. Count: 65, Neg. LLF: 141.60621979724775
Iteration: 7, Func. Count: 76, Neg. LLF: 130.5271500694674
Iteration: 8, Func. Count: 87, Neg. LLF: 129.1019089400121
Iteration: 9, Func. Count: 97, Neg. LLF: 129.0652292795404
Iteration: 10, Func. Count: 108, Neg. LLF: 128.99818457886641
Iteration: 11, Func. Count: 118, Neg. LLF: 128.99649952567793
Iteration: 12, Func. Count: 128, Neg. LLF: 128.99622797722193
Iteration: 13, Func. Count: 138, Neg. LLF: 128.99621868144874
Iteration: 14, Func. Count: 148, Neg. LLF: 128.9962144067833
Iteration: 15, Func. Count: 157, Neg. LLF: 128.99621446173137
Optimization terminated successfully (Exit mode 0)
Current function value: 128.9962144067833
Iterations: 15
Function evaluations: 157
Gradient evaluations: 15
Iteration: 1, Func. Count: 12, Neg. LLF: 131.72829898357793
Iteration: 2, Func. Count: 23, Neg. LLF: 135.21573429677906
Iteration: 3, Func. Count: 35, Neg. LLF: 136.01868512180573
Iteration: 4, Func. Count: 47, Neg. LLF: 136.89032742368659
Iteration: 5, Func. Count: 59, Neg. LLF: 144.66501232937463
Iteration: 6, Func. Count: 71, Neg. LLF: 136.67392545236146
Iteration: 7, Func. Count: 83, Neg. LLF: 266.6626279856485
Iteration: 8, Func. Count: 95, Neg. LLF: 138.6124184482685
Iteration: 9, Func. Count: 107, Neg. LLF: 129.09748705434825
Iteration: 10, Func. Count: 119, Neg. LLF: 128.9805840443749
Iteration: 11, Func. Count: 131, Neg. LLF: 128.76094199088092
Iteration: 12, Func. Count: 142, Neg. LLF: 129.1924631218332
Iteration: 13, Func. Count: 154, Neg. LLF: 128.75022380399756
Iteration: 14, Func. Count: 165, Neg. LLF: 128.74896069592154
Iteration: 15, Func. Count: 176, Neg. LLF: 128.7514017687006
Iteration: 16, Func. Count: 188, Neg. LLF: 128.74803778039717
Iteration: 17, Func. Count: 199, Neg. LLF: 128.74794002117193
Iteration: 18, Func. Count: 210, Neg. LLF: 128.7478985460203
Iteration: 19, Func. Count: 221, Neg. LLF: 128.74789327576562
Iteration: 20, Func. Count: 231, Neg. LLF: 128.74789327571784
Optimization terminated successfully (Exit mode 0)
Current function value: 128.74789327576562
Iterations: 20
Function evaluations: 231
Gradient evaluations: 20
Iteration: 1, Func. Count: 13, Neg. LLF: 131.43302507477617
Iteration: 2, Func. Count: 25, Neg. LLF: 136.6490233695383
Iteration: 3, Func. Count: 38, Neg. LLF: 135.7542269630589
Iteration: 4, Func. Count: 51, Neg. LLF: 136.28141584367182
Iteration: 5, Func. Count: 64, Neg. LLF: 139.87815945949436
Iteration: 6, Func. Count: 77, Neg. LLF: 146.42671009004582
Iteration: 7, Func. Count: 90, Neg. LLF: 8110266.196600335
Iteration: 8, Func. Count: 103, Neg. LLF: 137.58906785339587
Iteration: 9, Func. Count: 116, Neg. LLF: 135.58097992812588
Iteration: 10, Func. Count: 129, Neg. LLF: 129.75158443892997
Iteration: 11, Func. Count: 142, Neg. LLF: 129.16850895571437
Iteration: 12, Func. Count: 155, Neg. LLF: 128.80225408817728
Iteration: 13, Func. Count: 168, Neg. LLF: 128.74551097643362
Iteration: 14, Func. Count: 180, Neg. LLF: 128.79829696076365
Iteration: 15, Func. Count: 193, Neg. LLF: 128.74108258920128
Iteration: 16, Func. Count: 205, Neg. LLF: 128.73830063640713
Iteration: 17, Func. Count: 217, Neg. LLF: 128.73779348600794
Iteration: 18, Func. Count: 229, Neg. LLF: 128.73774320577482
Iteration: 19, Func. Count: 241, Neg. LLF: 128.73774001435638
Iteration: 20, Func. Count: 252, Neg. LLF: 128.7377400143082
Optimization terminated successfully (Exit mode 0)
Current function value: 128.73774001435638
Iterations: 20
Function evaluations: 252
Gradient evaluations: 20
Iteration: 1, Func. Count: 10, Neg. LLF: 134.41656972154487
Iteration: 2, Func. Count: 20, Neg. LLF: 142.99853914831627
Iteration: 3, Func. Count: 30, Neg. LLF: 134.60547347496967
Iteration: 4, Func. Count: 40, Neg. LLF: 129.85197614482468
Iteration: 5, Func. Count: 49, Neg. LLF: 135.23972517156824
Iteration: 6, Func. Count: 60, Neg. LLF: 136.65780853331353
Iteration: 7, Func. Count: 71, Neg. LLF: 129.13140537860122
Iteration: 8, Func. Count: 80, Neg. LLF: 129.02359305859565
Iteration: 9, Func. Count: 89, Neg. LLF: 129.1465725592021
Iteration: 10, Func. Count: 99, Neg. LLF: 128.99812110724034
Iteration: 11, Func. Count: 108, Neg. LLF: 128.99628794265666
Iteration: 12, Func. Count: 117, Neg. LLF: 128.99622456083867
Iteration: 13, Func. Count: 126, Neg. LLF: 128.9962146766167
Iteration: 14, Func. Count: 134, Neg. LLF: 128.99621474023039
Optimization terminated successfully (Exit mode 0)
Current function value: 128.9962146766167
Iterations: 14
Function evaluations: 134
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 132.40628918628747
Iteration: 2, Func. Count: 21, Neg. LLF: 131.4148932104413
Iteration: 3, Func. Count: 32, Neg. LLF: 149.97332951455869
Iteration: 4, Func. Count: 43, Neg. LLF: 135.5752240794282
Iteration: 5, Func. Count: 54, Neg. LLF: 129.48820436869894
Iteration: 6, Func. Count: 64, Neg. LLF: 129.27274167732114
Iteration: 7, Func. Count: 75, Neg. LLF: 129.007906259222
Iteration: 8, Func. Count: 85, Neg. LLF: 129.20685497223783
Iteration: 9, Func. Count: 96, Neg. LLF: 128.99767469398049
Iteration: 10, Func. Count: 106, Neg. LLF: 128.99627957039505
Iteration: 11, Func. Count: 116, Neg. LLF: 128.99622591017442
Iteration: 12, Func. Count: 126, Neg. LLF: 128.99621601223987
Iteration: 13, Func. Count: 136, Neg. LLF: 128.9962141697202
Iteration: 14, Func. Count: 145, Neg. LLF: 128.99621417590447
Optimization terminated successfully (Exit mode 0)
Current function value: 128.9962141697202
Iterations: 14
Function evaluations: 145
Gradient evaluations: 14
Iteration: 1, Func. Count: 12, Neg. LLF: 132.5468692694412
Iteration: 2, Func. Count: 23, Neg. LLF: 131.53738200429652
Iteration: 3, Func. Count: 35, Neg. LLF: 145.83288783183926
Iteration: 4, Func. Count: 47, Neg. LLF: 136.14535553784856
Iteration: 5, Func. Count: 59, Neg. LLF: 138.46649702673233
Iteration: 6, Func. Count: 71, Neg. LLF: 136.26729869190666
Iteration: 7, Func. Count: 83, Neg. LLF: 129.75876397021287
Iteration: 8, Func. Count: 95, Neg. LLF: 129.07735233290035
Iteration: 9, Func. Count: 106, Neg. LLF: 129.03431358305076
Iteration: 10, Func. Count: 117, Neg. LLF: 129.00046718439944
Iteration: 11, Func. Count: 128, Neg. LLF: 128.9976673207653
Iteration: 12, Func. Count: 139, Neg. LLF: 128.99627025095515
Iteration: 13, Func. Count: 150, Neg. LLF: 128.99622709869618
Iteration: 14, Func. Count: 161, Neg. LLF: 128.9962162223421
Iteration: 15, Func. Count: 172, Neg. LLF: 128.99621445971275
Iteration: 16, Func. Count: 182, Neg. LLF: 128.99621451465654
Optimization terminated successfully (Exit mode 0)
Current function value: 128.99621445971275
Iterations: 16
Function evaluations: 182
Gradient evaluations: 16
Iteration: 1, Func. Count: 13, Neg. LLF: 131.72284915150445
Iteration: 2, Func. Count: 25, Neg. LLF: 135.25654845697798
Iteration: 3, Func. Count: 38, Neg. LLF: 136.0087015788051
Iteration: 4, Func. Count: 51, Neg. LLF: 136.86928828281313
Iteration: 5, Func. Count: 64, Neg. LLF: 144.4780838475067
Iteration: 6, Func. Count: 77, Neg. LLF: 136.65796644973955
Iteration: 7, Func. Count: 90, Neg. LLF: 268.35454248713
Iteration: 8, Func. Count: 103, Neg. LLF: 138.59226632583147
Iteration: 9, Func. Count: 116, Neg. LLF: 129.1025924381616
Iteration: 10, Func. Count: 129, Neg. LLF: 128.99278261621785
Iteration: 11, Func. Count: 142, Neg. LLF: 128.76134680683015
Iteration: 12, Func. Count: 154, Neg. LLF: 129.2090095187758
Iteration: 13, Func. Count: 167, Neg. LLF: 128.75046904863467
Iteration: 14, Func. Count: 179, Neg. LLF: 128.74885991956995
Iteration: 15, Func. Count: 191, Neg. LLF: 128.75142399652628
Iteration: 16, Func. Count: 204, Neg. LLF: 128.7480090239965
Iteration: 17, Func. Count: 216, Neg. LLF: 128.74793411116212
Iteration: 18, Func. Count: 228, Neg. LLF: 128.7478941475397
Iteration: 19, Func. Count: 240, Neg. LLF: 128.7478930631101
Iteration: 20, Func. Count: 251, Neg. LLF: 128.74789306309023
Optimization terminated successfully (Exit mode 0)
Current function value: 128.7478930631101
Iterations: 20
Function evaluations: 251
Gradient evaluations: 20
Iteration: 1, Func. Count: 14, Neg. LLF: 131.43278831101082
Iteration: 2, Func. Count: 27, Neg. LLF: 136.67691745672323
Iteration: 3, Func. Count: 41, Neg. LLF: 135.74879236735822
Iteration: 4, Func. Count: 55, Neg. LLF: 136.3453587436112
Iteration: 5, Func. Count: 69, Neg. LLF: 139.70734450173407
Iteration: 6, Func. Count: 83, Neg. LLF: 142.78832363494934
Iteration: 7, Func. Count: 97, Neg. LLF: 8066964.391426248
Iteration: 8, Func. Count: 111, Neg. LLF: 137.4198258710328
Iteration: 9, Func. Count: 125, Neg. LLF: 138.08118814960554
Iteration: 10, Func. Count: 139, Neg. LLF: 129.92580354647046
Iteration: 11, Func. Count: 153, Neg. LLF: 129.19182603508835
Iteration: 12, Func. Count: 167, Neg. LLF: 128.80609202382823
Iteration: 13, Func. Count: 181, Neg. LLF: 128.74583576393204
Iteration: 14, Func. Count: 194, Neg. LLF: 128.81353839913407
Iteration: 15, Func. Count: 208, Neg. LLF: 128.74122463328771
Iteration: 16, Func. Count: 221, Neg. LLF: 128.73848774021366
Iteration: 17, Func. Count: 234, Neg. LLF: 128.73783896571754
Iteration: 18, Func. Count: 247, Neg. LLF: 128.7377455544133
Iteration: 19, Func. Count: 260, Neg. LLF: 128.73774011084663
Iteration: 20, Func. Count: 272, Neg. LLF: 128.73774011076125
Optimization terminated successfully (Exit mode 0)
Current function value: 128.73774011084663
Iterations: 20
Function evaluations: 272
Gradient evaluations: 20
Iteration: 1, Func. Count: 7, Neg. LLF: 137.26991387105002
Iteration: 2, Func. Count: 14, Neg. LLF: 138.15820752864965
Iteration: 3, Func. Count: 21, Neg. LLF: 135.88835081046136
Iteration: 4, Func. Count: 28, Neg. LLF: 132.77866414780368
Iteration: 5, Func. Count: 34, Neg. LLF: 133.17118972992822
Iteration: 6, Func. Count: 41, Neg. LLF: 132.54597507491346
Iteration: 7, Func. Count: 47, Neg. LLF: 132.52924109256517
Iteration: 8, Func. Count: 53, Neg. LLF: 132.52688197108085
Iteration: 9, Func. Count: 59, Neg. LLF: 132.52650399216222
Iteration: 10, Func. Count: 65, Neg. LLF: 132.52650342773825
Optimization terminated successfully (Exit mode 0)
Current function value: 132.52650342773825
Iterations: 10
Function evaluations: 65
Gradient evaluations: 10
Iteration: 1, Func. Count: 8, Neg. LLF: 134.8482241815682
Iteration: 2, Func. Count: 16, Neg. LLF: 140.48167598818952
Iteration: 3, Func. Count: 24, Neg. LLF: 133.97375079514183
Iteration: 4, Func. Count: 32, Neg. LLF: 133.74868486547857
Iteration: 5, Func. Count: 40, Neg. LLF: 132.83732020649813
Iteration: 6, Func. Count: 48, Neg. LLF: 132.54629889395363
Iteration: 7, Func. Count: 55, Neg. LLF: 132.5344696941996
Iteration: 8, Func. Count: 62, Neg. LLF: 132.52828187394707
Iteration: 9, Func. Count: 69, Neg. LLF: 132.52694243528398
Iteration: 10, Func. Count: 76, Neg. LLF: 132.5265256975275
Iteration: 11, Func. Count: 83, Neg. LLF: 132.52650409023855
Iteration: 12, Func. Count: 90, Neg. LLF: 132.52650340027046
Optimization terminated successfully (Exit mode 0)
Current function value: 132.52650340027046
Iterations: 12
Function evaluations: 90
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 135.75709628741987
Iteration: 2, Func. Count: 18, Neg. LLF: 133.48535695073207
Iteration: 3, Func. Count: 26, Neg. LLF: 133.14071189784732
Iteration: 4, Func. Count: 34, Neg. LLF: 136.96295174346008
Iteration: 5, Func. Count: 43, Neg. LLF: 132.73970269008987
Iteration: 6, Func. Count: 51, Neg. LLF: 132.6301188859686
Iteration: 7, Func. Count: 59, Neg. LLF: 132.5696092931626
Iteration: 8, Func. Count: 67, Neg. LLF: 132.5375111167008
Iteration: 9, Func. Count: 75, Neg. LLF: 132.5270440380675
Iteration: 10, Func. Count: 83, Neg. LLF: 132.5265463811035
Iteration: 11, Func. Count: 91, Neg. LLF: 132.52650390136668
Iteration: 12, Func. Count: 99, Neg. LLF: 132.52650339887023
Optimization terminated successfully (Exit mode 0)
Current function value: 132.52650339887023
Iterations: 12
Function evaluations: 99
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 135.55113427221625
Iteration: 2, Func. Count: 20, Neg. LLF: 133.43516661386298
Iteration: 3, Func. Count: 29, Neg. LLF: 132.99773651039365
Iteration: 4, Func. Count: 38, Neg. LLF: 137.2865790757883
Iteration: 5, Func. Count: 48, Neg. LLF: 132.78508273821322
Iteration: 6, Func. Count: 57, Neg. LLF: 132.64327572907544
Iteration: 7, Func. Count: 66, Neg. LLF: 132.57617320210238
Iteration: 8, Func. Count: 75, Neg. LLF: 132.54422083459048
Iteration: 9, Func. Count: 84, Neg. LLF: 132.52667203840966
Iteration: 10, Func. Count: 93, Neg. LLF: 132.52650846716634
Iteration: 11, Func. Count: 102, Neg. LLF: 132.52650357979917
Iteration: 12, Func. Count: 110, Neg. LLF: 132.52650360873315
Optimization terminated successfully (Exit mode 0)
Current function value: 132.52650357979917
Iterations: 12
Function evaluations: 110
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 135.4436344352834
Iteration: 2, Func. Count: 22, Neg. LLF: 134.07741568485895
Iteration: 3, Func. Count: 33, Neg. LLF: 133.37649004554262
Iteration: 4, Func. Count: 43, Neg. LLF: 143.506767897916
Iteration: 5, Func. Count: 54, Neg. LLF: 132.93274508156608
Iteration: 6, Func. Count: 65, Neg. LLF: 133.22650247057283
Iteration: 7, Func. Count: 77, Neg. LLF: 132.56475054429131
Iteration: 8, Func. Count: 87, Neg. LLF: 132.49300075861177
Iteration: 9, Func. Count: 97, Neg. LLF: 132.41735030420378
Iteration: 10, Func. Count: 107, Neg. LLF: 132.39736250330262
Iteration: 11, Func. Count: 117, Neg. LLF: 132.38908947378087
Iteration: 12, Func. Count: 127, Neg. LLF: 132.38791949563534
Iteration: 13, Func. Count: 137, Neg. LLF: 132.387641161096
Iteration: 14, Func. Count: 147, Neg. LLF: 132.38756539383445
Iteration: 15, Func. Count: 157, Neg. LLF: 132.3875631070661
Iteration: 16, Func. Count: 166, Neg. LLF: 132.3875631070534
Optimization terminated successfully (Exit mode 0)
Current function value: 132.3875631070661
Iterations: 16
Function evaluations: 166
Gradient evaluations: 16
Iteration: 1, Func. Count: 8, Neg. LLF: 136.53918688620365
Iteration: 2, Func. Count: 16, Neg. LLF: 160.0540309549116
Iteration: 3, Func. Count: 24, Neg. LLF: 131.78492882882222
Iteration: 4, Func. Count: 32, Neg. LLF: 129.81617856533268
Iteration: 5, Func. Count: 39, Neg. LLF: 129.4403617105968
Iteration: 6, Func. Count: 46, Neg. LLF: 131.56826733284612
Iteration: 7, Func. Count: 55, Neg. LLF: 129.2746620828555
Iteration: 8, Func. Count: 62, Neg. LLF: 129.2025942650012
Iteration: 9, Func. Count: 69, Neg. LLF: 129.19714068808997
Iteration: 10, Func. Count: 76, Neg. LLF: 129.19696445392506
Iteration: 11, Func. Count: 83, Neg. LLF: 129.19696372493172
Optimization terminated successfully (Exit mode 0)
Current function value: 129.19696372493172
Iterations: 11
Function evaluations: 83
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 134.4611774747036
Iteration: 2, Func. Count: 18, Neg. LLF: 136.92069570583894
Iteration: 3, Func. Count: 27, Neg. LLF: 143.44012830432152
Iteration: 4, Func. Count: 36, Neg. LLF: 129.48309174365033
Iteration: 5, Func. Count: 44, Neg. LLF: 129.72721856882043
Iteration: 6, Func. Count: 53, Neg. LLF: 129.2317535813896
Iteration: 7, Func. Count: 61, Neg. LLF: 129.56644934196444
Iteration: 8, Func. Count: 70, Neg. LLF: 129.19737424722996
Iteration: 9, Func. Count: 78, Neg. LLF: 129.19700199674682
Iteration: 10, Func. Count: 86, Neg. LLF: 129.19696929351892
Iteration: 11, Func. Count: 94, Neg. LLF: 129.19696377760843
Iteration: 12, Func. Count: 101, Neg. LLF: 129.19696379672126
Optimization terminated successfully (Exit mode 0)
Current function value: 129.19696377760843
Iterations: 12
Function evaluations: 101
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 133.86498199856925
Iteration: 2, Func. Count: 20, Neg. LLF: 135.2942658369362
Iteration: 3, Func. Count: 30, Neg. LLF: 135.19861967681985
Iteration: 4, Func. Count: 40, Neg. LLF: 129.41585281396902
Iteration: 5, Func. Count: 49, Neg. LLF: 129.24806527722046
Iteration: 6, Func. Count: 58, Neg. LLF: 130.84118414386305
Iteration: 7, Func. Count: 69, Neg. LLF: 129.21617789562475
Iteration: 8, Func. Count: 78, Neg. LLF: 129.19709444205432
Iteration: 9, Func. Count: 87, Neg. LLF: 129.19696775334296
Iteration: 10, Func. Count: 96, Neg. LLF: 129.19696385751243
Iteration: 11, Func. Count: 104, Neg. LLF: 129.1969639043701
Optimization terminated successfully (Exit mode 0)
Current function value: 129.19696385751243
Iterations: 11
Function evaluations: 104
Gradient evaluations: 11
Iteration: 1, Func. Count: 11, Neg. LLF: 133.50494100302137
Iteration: 2, Func. Count: 22, Neg. LLF: 134.86353438915228
Iteration: 3, Func. Count: 33, Neg. LLF: 135.16973769205538
Iteration: 4, Func. Count: 44, Neg. LLF: 129.41194212979693
Iteration: 5, Func. Count: 54, Neg. LLF: 129.2451338795058
Iteration: 6, Func. Count: 64, Neg. LLF: 129.56167407716882
Iteration: 7, Func. Count: 75, Neg. LLF: 129.06800356517076
Iteration: 8, Func. Count: 85, Neg. LLF: 129.0615659909893
Iteration: 9, Func. Count: 95, Neg. LLF: 129.05415824417827
Iteration: 10, Func. Count: 105, Neg. LLF: 129.05399477822414
Iteration: 11, Func. Count: 115, Neg. LLF: 129.05397043901186
Iteration: 12, Func. Count: 125, Neg. LLF: 129.05396982257975
Optimization terminated successfully (Exit mode 0)
Current function value: 129.05396982257975
Iterations: 12
Function evaluations: 125
Gradient evaluations: 12
Iteration: 1, Func. Count: 12, Neg. LLF: 133.3112732602946
Iteration: 2, Func. Count: 23, Neg. LLF: 132.62934872256145
Iteration: 3, Func. Count: 35, Neg. LLF: 135.4527621706321
Iteration: 4, Func. Count: 47, Neg. LLF: 134.43840381155792
Iteration: 5, Func. Count: 59, Neg. LLF: 129.82042557067786
Iteration: 6, Func. Count: 71, Neg. LLF: 129.21498395576026
Iteration: 7, Func. Count: 82, Neg. LLF: 137.7991906775168
Iteration: 8, Func. Count: 94, Neg. LLF: 129.09996197918727
Iteration: 9, Func. Count: 105, Neg. LLF: 129.14781124383285
Iteration: 10, Func. Count: 117, Neg. LLF: 129.29091797938162
Iteration: 11, Func. Count: 129, Neg. LLF: 129.05764049348136
Iteration: 12, Func. Count: 140, Neg. LLF: 129.05435737249883
Iteration: 13, Func. Count: 151, Neg. LLF: 129.05398240932624
Iteration: 14, Func. Count: 162, Neg. LLF: 129.05397098551924
Iteration: 15, Func. Count: 173, Neg. LLF: 129.0539697906088
Iteration: 16, Func. Count: 183, Neg. LLF: 129.0539697918349
Optimization terminated successfully (Exit mode 0)
Current function value: 129.0539697906088
Iterations: 16
Function evaluations: 183
Gradient evaluations: 16
Iteration: 1, Func. Count: 9, Neg. LLF: 136.97776502167977
Iteration: 2, Func. Count: 18, Neg. LLF: 142.49440636810843
Iteration: 3, Func. Count: 27, Neg. LLF: 137.16143999483512
Iteration: 4, Func. Count: 36, Neg. LLF: 129.81308195098575
Iteration: 5, Func. Count: 44, Neg. LLF: 134.74062219949496
Iteration: 6, Func. Count: 54, Neg. LLF: 136.07879178076342
Iteration: 7, Func. Count: 64, Neg. LLF: 129.12114455967696
Iteration: 8, Func. Count: 72, Neg. LLF: 129.13995446824845
Iteration: 9, Func. Count: 81, Neg. LLF: 129.0311589917647
Iteration: 10, Func. Count: 89, Neg. LLF: 129.0284995096373
Iteration: 11, Func. Count: 97, Neg. LLF: 129.02844059050713
Iteration: 12, Func. Count: 105, Neg. LLF: 129.02842850787633
Iteration: 13, Func. Count: 113, Neg. LLF: 129.02842736118583
Iteration: 14, Func. Count: 120, Neg. LLF: 129.0284273611827
Optimization terminated successfully (Exit mode 0)
Current function value: 129.02842736118583
Iterations: 14
Function evaluations: 120
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 134.22401168459135
Iteration: 2, Func. Count: 20, Neg. LLF: 137.04105593943274
Iteration: 3, Func. Count: 30, Neg. LLF: 143.33818441182856
Iteration: 4, Func. Count: 40, Neg. LLF: 136.76216626643753
Iteration: 5, Func. Count: 50, Neg. LLF: 129.79543309428558
Iteration: 6, Func. Count: 60, Neg. LLF: 129.807314186649
Iteration: 7, Func. Count: 70, Neg. LLF: 129.09973947105735
Iteration: 8, Func. Count: 79, Neg. LLF: 129.05769176702933
Iteration: 9, Func. Count: 88, Neg. LLF: 129.02178832452265
Iteration: 10, Func. Count: 97, Neg. LLF: 129.01521616508035
Iteration: 11, Func. Count: 106, Neg. LLF: 129.01434274501187
Iteration: 12, Func. Count: 115, Neg. LLF: 129.01399292063022
Iteration: 13, Func. Count: 124, Neg. LLF: 129.01394992681395
Iteration: 14, Func. Count: 133, Neg. LLF: 129.01394747260017
Iteration: 15, Func. Count: 141, Neg. LLF: 129.01394747259636
Optimization terminated successfully (Exit mode 0)
Current function value: 129.01394747260017
Iterations: 15
Function evaluations: 141
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 133.50500260157074
Iteration: 2, Func. Count: 22, Neg. LLF: 134.76110245832817
Iteration: 3, Func. Count: 33, Neg. LLF: 132.0274007596885
Iteration: 4, Func. Count: 44, Neg. LLF: 136.282799016684
Iteration: 5, Func. Count: 55, Neg. LLF: 129.36195426216705
Iteration: 6, Func. Count: 65, Neg. LLF: 129.08240898460335
Iteration: 7, Func. Count: 75, Neg. LLF: 132.15573426270666
Iteration: 8, Func. Count: 87, Neg. LLF: 129.29067018382054
Iteration: 9, Func. Count: 98, Neg. LLF: 129.02549584787363
Iteration: 10, Func. Count: 108, Neg. LLF: 129.02090959267974
Iteration: 11, Func. Count: 118, Neg. LLF: 129.0145361778739
Iteration: 12, Func. Count: 128, Neg. LLF: 129.01405966710755
Iteration: 13, Func. Count: 138, Neg. LLF: 129.01394787454737
Iteration: 14, Func. Count: 147, Neg. LLF: 129.01394792816214
Optimization terminated successfully (Exit mode 0)
Current function value: 129.01394787454737
Iterations: 14
Function evaluations: 147
Gradient evaluations: 14
Iteration: 1, Func. Count: 12, Neg. LLF: 133.12780139935677
Iteration: 2, Func. Count: 23, Neg. LLF: 136.46041722273154
Iteration: 3, Func. Count: 35, Neg. LLF: 135.19248566296525
Iteration: 4, Func. Count: 47, Neg. LLF: 136.04688384729252
Iteration: 5, Func. Count: 59, Neg. LLF: 138.89435375629594
Iteration: 6, Func. Count: 71, Neg. LLF: 148.2088694329075
Iteration: 7, Func. Count: 83, Neg. LLF: 140.81939363710333
Iteration: 8, Func. Count: 95, Neg. LLF: 131.3328221262211
Iteration: 9, Func. Count: 107, Neg. LLF: 130.84624831117907
Iteration: 10, Func. Count: 119, Neg. LLF: 132.48729777533225
Iteration: 11, Func. Count: 131, Neg. LLF: 129.1880518494226
Iteration: 12, Func. Count: 143, Neg. LLF: 128.79489541200357
Iteration: 13, Func. Count: 155, Neg. LLF: 128.7665326554464
Iteration: 14, Func. Count: 166, Neg. LLF: 128.7499159423272
Iteration: 15, Func. Count: 177, Neg. LLF: 128.7486414724476
Iteration: 16, Func. Count: 188, Neg. LLF: 128.75805161763535
Iteration: 17, Func. Count: 200, Neg. LLF: 128.74804336358054
Iteration: 18, Func. Count: 211, Neg. LLF: 128.74789823209298
Iteration: 19, Func. Count: 222, Neg. LLF: 128.74789319738116
Iteration: 20, Func. Count: 232, Neg. LLF: 128.74789319740268
Optimization terminated successfully (Exit mode 0)
Current function value: 128.74789319738116
Iterations: 20
Function evaluations: 232
Gradient evaluations: 20
Iteration: 1, Func. Count: 13, Neg. LLF: 132.90798172117863
Iteration: 2, Func. Count: 25, Neg. LLF: 137.69837951531474
Iteration: 3, Func. Count: 38, Neg. LLF: 134.95368052768964
Iteration: 4, Func. Count: 51, Neg. LLF: 134.96491496343282
Iteration: 5, Func. Count: 64, Neg. LLF: 137.26137361457603
Iteration: 6, Func. Count: 77, Neg. LLF: 139.76303569734213
Iteration: 7, Func. Count: 90, Neg. LLF: 8869188.264915463
Iteration: 8, Func. Count: 103, Neg. LLF: 167.3991479533918
Iteration: 9, Func. Count: 116, Neg. LLF: 129.67282162628157
Iteration: 10, Func. Count: 129, Neg. LLF: 130.2550827999595
Iteration: 11, Func. Count: 142, Neg. LLF: 129.00977455941506
Iteration: 12, Func. Count: 155, Neg. LLF: 128.77543570168186
Iteration: 13, Func. Count: 167, Neg. LLF: 128.75527142634107
Iteration: 14, Func. Count: 179, Neg. LLF: 128.7441421623085
Iteration: 15, Func. Count: 191, Neg. LLF: 128.73799565802886
Iteration: 16, Func. Count: 203, Neg. LLF: 128.73784481003153
Iteration: 17, Func. Count: 215, Neg. LLF: 128.73774216993462
Iteration: 18, Func. Count: 227, Neg. LLF: 128.73774022599451
Iteration: 19, Func. Count: 238, Neg. LLF: 128.73774022596095
Optimization terminated successfully (Exit mode 0)
Current function value: 128.73774022599451
Iterations: 19
Function evaluations: 238
Gradient evaluations: 19
Iteration: 1, Func. Count: 10, Neg. LLF: 137.65743312227687
Iteration: 2, Func. Count: 20, Neg. LLF: 153.52003226410653
Iteration: 3, Func. Count: 30, Neg. LLF: 134.88599817404884
Iteration: 4, Func. Count: 40, Neg. LLF: 129.51439954861786
Iteration: 5, Func. Count: 49, Neg. LLF: 130.35483435231802
Iteration: 6, Func. Count: 60, Neg. LLF: 135.8872168653092
Iteration: 7, Func. Count: 71, Neg. LLF: 129.23075311368098
Iteration: 8, Func. Count: 81, Neg. LLF: 129.1060223351821
Iteration: 9, Func. Count: 90, Neg. LLF: 129.01640136780276
Iteration: 10, Func. Count: 99, Neg. LLF: 129.01071690973214
Iteration: 11, Func. Count: 109, Neg. LLF: 128.99626074287914
Iteration: 12, Func. Count: 118, Neg. LLF: 128.99621712461706
Iteration: 13, Func. Count: 127, Neg. LLF: 128.9962143868731
Iteration: 14, Func. Count: 135, Neg. LLF: 128.99621438686776
Optimization terminated successfully (Exit mode 0)
Current function value: 128.9962143868731
Iterations: 14
Function evaluations: 135
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 134.42343724707297
Iteration: 2, Func. Count: 22, Neg. LLF: 136.90540055421934
Iteration: 3, Func. Count: 33, Neg. LLF: 143.2357112639759
Iteration: 4, Func. Count: 44, Neg. LLF: 136.96057810246504
Iteration: 5, Func. Count: 55, Neg. LLF: 129.78968168705887
Iteration: 6, Func. Count: 66, Neg. LLF: 129.51660487755012
Iteration: 7, Func. Count: 77, Neg. LLF: 129.09991365779624
Iteration: 8, Func. Count: 87, Neg. LLF: 129.1631769545609
Iteration: 9, Func. Count: 98, Neg. LLF: 129.00404977398279
Iteration: 10, Func. Count: 108, Neg. LLF: 128.99774451505903
Iteration: 11, Func. Count: 118, Neg. LLF: 128.99631298355177
Iteration: 12, Func. Count: 128, Neg. LLF: 128.99621876598735
Iteration: 13, Func. Count: 138, Neg. LLF: 128.99621418955695
Iteration: 14, Func. Count: 147, Neg. LLF: 128.99621419571574
Optimization terminated successfully (Exit mode 0)
Current function value: 128.99621418955695
Iterations: 14
Function evaluations: 147
Gradient evaluations: 14
Iteration: 1, Func. Count: 12, Neg. LLF: 133.61542743351032
Iteration: 2, Func. Count: 24, Neg. LLF: 134.90968634846627
Iteration: 3, Func. Count: 36, Neg. LLF: 131.52515338102842
Iteration: 4, Func. Count: 48, Neg. LLF: 136.26372359126998
Iteration: 5, Func. Count: 60, Neg. LLF: 129.2970065986226
Iteration: 6, Func. Count: 71, Neg. LLF: 145.65078314443357
Iteration: 7, Func. Count: 84, Neg. LLF: 132.03313282788187
Iteration: 8, Func. Count: 97, Neg. LLF: 129.1549155197437
Iteration: 9, Func. Count: 109, Neg. LLF: 128.9998503761031
Iteration: 10, Func. Count: 120, Neg. LLF: 128.99717301570436
Iteration: 11, Func. Count: 131, Neg. LLF: 128.996283321786
Iteration: 12, Func. Count: 142, Neg. LLF: 128.99622926866675
Iteration: 13, Func. Count: 153, Neg. LLF: 128.99621560152795
Iteration: 14, Func. Count: 164, Neg. LLF: 128.99621431397665
Iteration: 15, Func. Count: 174, Neg. LLF: 128.9962143689678
Optimization terminated successfully (Exit mode 0)
Current function value: 128.99621431397665
Iterations: 15
Function evaluations: 174
Gradient evaluations: 15
Iteration: 1, Func. Count: 13, Neg. LLF: 133.2219973439495
Iteration: 2, Func. Count: 26, Neg. LLF: 135.61388207756605
Iteration: 3, Func. Count: 39, Neg. LLF: 130.33634111854258
Iteration: 4, Func. Count: 51, Neg. LLF: 129.66694553392676
Iteration: 5, Func. Count: 64, Neg. LLF: 136.39799069498244
Iteration: 6, Func. Count: 79, Neg. LLF: 130.22510607262348
Iteration: 7, Func. Count: 93, Neg. LLF: 129.01142367080104
Iteration: 8, Func. Count: 105, Neg. LLF: 128.84374983015394
Iteration: 9, Func. Count: 117, Neg. LLF: 128.77077283167267
Iteration: 10, Func. Count: 129, Neg. LLF: 128.7518508728531
Iteration: 11, Func. Count: 141, Neg. LLF: 128.74876869387992
Iteration: 12, Func. Count: 153, Neg. LLF: 128.74808984467742
Iteration: 13, Func. Count: 165, Neg. LLF: 128.74790632146815
Iteration: 14, Func. Count: 177, Neg. LLF: 128.74789684671154
Iteration: 15, Func. Count: 189, Neg. LLF: 128.74789411668112
Iteration: 16, Func. Count: 201, Neg. LLF: 128.7478931853425
Optimization terminated successfully (Exit mode 0)
Current function value: 128.7478931853425
Iterations: 16
Function evaluations: 201
Gradient evaluations: 16
Iteration: 1, Func. Count: 14, Neg. LLF: 133.00811513308912
Iteration: 2, Func. Count: 27, Neg. LLF: 137.37146994254113
Iteration: 3, Func. Count: 41, Neg. LLF: 135.0364294258838
Iteration: 4, Func. Count: 55, Neg. LLF: 135.87526388025333
Iteration: 5, Func. Count: 69, Neg. LLF: 137.19657937403505
Iteration: 6, Func. Count: 83, Neg. LLF: 154.0611626128777
Iteration: 7, Func. Count: 97, Neg. LLF: 1089.5495020528392
Iteration: 8, Func. Count: 111, Neg. LLF: 137.28073788381263
Iteration: 9, Func. Count: 125, Neg. LLF: 132.44008084172714
Iteration: 10, Func. Count: 139, Neg. LLF: 130.14325430294522
Iteration: 11, Func. Count: 153, Neg. LLF: 129.2785305755625
Iteration: 12, Func. Count: 167, Neg. LLF: 128.82300014056608
Iteration: 13, Func. Count: 181, Neg. LLF: 128.75006872440085
Iteration: 14, Func. Count: 194, Neg. LLF: 128.73843960557767
Iteration: 15, Func. Count: 207, Neg. LLF: 128.73782780771026
Iteration: 16, Func. Count: 220, Neg. LLF: 128.73774315647265
Iteration: 17, Func. Count: 233, Neg. LLF: 128.73774026674454
Iteration: 18, Func. Count: 245, Neg. LLF: 128.73774026683435
Optimization terminated successfully (Exit mode 0)
Current function value: 128.73774026674454
Iterations: 18
Function evaluations: 245
Gradient evaluations: 18
Iteration: 1, Func. Count: 11, Neg. LLF: 137.8933996455952
Iteration: 2, Func. Count: 22, Neg. LLF: 147.0291663912452
Iteration: 3, Func. Count: 33, Neg. LLF: 134.55373880975253
Iteration: 4, Func. Count: 44, Neg. LLF: 129.75385996884975
Iteration: 5, Func. Count: 54, Neg. LLF: 129.768844639872
Iteration: 6, Func. Count: 65, Neg. LLF: 132.1615114565175
Iteration: 7, Func. Count: 77, Neg. LLF: 129.30107273555387
Iteration: 8, Func. Count: 88, Neg. LLF: 129.0185291117072
Iteration: 9, Func. Count: 98, Neg. LLF: 129.0211083651194
Iteration: 10, Func. Count: 109, Neg. LLF: 128.99933897275662
Iteration: 11, Func. Count: 119, Neg. LLF: 128.99629691636864
Iteration: 12, Func. Count: 129, Neg. LLF: 128.9962251034912
Iteration: 13, Func. Count: 139, Neg. LLF: 128.99621606015734
Iteration: 14, Func. Count: 149, Neg. LLF: 128.99621416225813
Iteration: 15, Func. Count: 158, Neg. LLF: 128.99621422584465
Optimization terminated successfully (Exit mode 0)
Current function value: 128.99621416225813
Iterations: 15
Function evaluations: 158
Gradient evaluations: 15
Iteration: 1, Func. Count: 12, Neg. LLF: 134.4779631488578
Iteration: 2, Func. Count: 24, Neg. LLF: 136.81763468283276
Iteration: 3, Func. Count: 36, Neg. LLF: 143.17765829000749
Iteration: 4, Func. Count: 48, Neg. LLF: 137.04423480071912
Iteration: 5, Func. Count: 60, Neg. LLF: 129.78329828276867
Iteration: 6, Func. Count: 72, Neg. LLF: 129.40859666202743
Iteration: 7, Func. Count: 84, Neg. LLF: 129.09943852803823
Iteration: 8, Func. Count: 95, Neg. LLF: 129.24948331254458
Iteration: 9, Func. Count: 107, Neg. LLF: 129.00604925526227
Iteration: 10, Func. Count: 118, Neg. LLF: 128.99812637485485
Iteration: 11, Func. Count: 129, Neg. LLF: 128.996419340251
Iteration: 12, Func. Count: 140, Neg. LLF: 128.99622128990728
Iteration: 13, Func. Count: 151, Neg. LLF: 128.99621438108468
Iteration: 14, Func. Count: 161, Neg. LLF: 128.99621438720763
Optimization terminated successfully (Exit mode 0)
Current function value: 128.99621438108468
Iterations: 14
Function evaluations: 161
Gradient evaluations: 14
Iteration: 1, Func. Count: 13, Neg. LLF: 133.6157677438876
Iteration: 2, Func. Count: 26, Neg. LLF: 135.0034667875539
Iteration: 3, Func. Count: 39, Neg. LLF: 131.20211634261503
Iteration: 4, Func. Count: 52, Neg. LLF: 131.2138300919088
Iteration: 5, Func. Count: 65, Neg. LLF: 129.2100172266453
Iteration: 6, Func. Count: 77, Neg. LLF: 140.552815715983
Iteration: 7, Func. Count: 91, Neg. LLF: 133.23562691210336
Iteration: 8, Func. Count: 104, Neg. LLF: 129.04910006609666
Iteration: 9, Func. Count: 116, Neg. LLF: 128.99717002983286
Iteration: 10, Func. Count: 128, Neg. LLF: 128.99624815296372
Iteration: 11, Func. Count: 140, Neg. LLF: 128.9962217558111
Iteration: 12, Func. Count: 152, Neg. LLF: 128.9962150646214
Iteration: 13, Func. Count: 164, Neg. LLF: 128.99621417058535
Optimization terminated successfully (Exit mode 0)
Current function value: 128.99621417058535
Iterations: 13
Function evaluations: 164
Gradient evaluations: 13
Iteration: 1, Func. Count: 14, Neg. LLF: 133.23438460805104
Iteration: 2, Func. Count: 28, Neg. LLF: 135.71347568659957
Iteration: 3, Func. Count: 42, Neg. LLF: 130.20725300338017
Iteration: 4, Func. Count: 55, Neg. LLF: 129.65002639030553
Iteration: 5, Func. Count: 69, Neg. LLF: 136.30694912903823
Iteration: 6, Func. Count: 85, Neg. LLF: 130.19881793646007
Iteration: 7, Func. Count: 100, Neg. LLF: 129.00897398216756
Iteration: 8, Func. Count: 113, Neg. LLF: 128.9520665437534
Iteration: 9, Func. Count: 127, Neg. LLF: 128.7622104506888
Iteration: 10, Func. Count: 140, Neg. LLF: 128.7502871797164
Iteration: 11, Func. Count: 153, Neg. LLF: 128.7485382057396
Iteration: 12, Func. Count: 166, Neg. LLF: 128.74796148816898
Iteration: 13, Func. Count: 179, Neg. LLF: 128.74790969465693
Iteration: 14, Func. Count: 192, Neg. LLF: 128.74789677411505
Iteration: 15, Func. Count: 205, Neg. LLF: 128.74789407041328
Iteration: 16, Func. Count: 218, Neg. LLF: 128.74789303902625
Iteration: 17, Func. Count: 230, Neg. LLF: 128.74789303902196
Optimization terminated successfully (Exit mode 0)
Current function value: 128.74789303902625
Iterations: 17
Function evaluations: 230
Gradient evaluations: 17
Iteration: 1, Func. Count: 15, Neg. LLF: 133.0259631644798
Iteration: 2, Func. Count: 29, Neg. LLF: 137.41507923380283
Iteration: 3, Func. Count: 44, Neg. LLF: 135.0216983321003
Iteration: 4, Func. Count: 59, Neg. LLF: 135.8555187781044
Iteration: 5, Func. Count: 74, Neg. LLF: 137.16017275705155
Iteration: 6, Func. Count: 89, Neg. LLF: 154.3899784372123
Iteration: 7, Func. Count: 104, Neg. LLF: 1108.9752619287756
Iteration: 8, Func. Count: 119, Neg. LLF: 137.27417815596968
Iteration: 9, Func. Count: 134, Neg. LLF: 132.34936871397096
Iteration: 10, Func. Count: 149, Neg. LLF: 130.08905056589418
Iteration: 11, Func. Count: 164, Neg. LLF: 129.27215710943756
Iteration: 12, Func. Count: 179, Neg. LLF: 128.82160144802887
Iteration: 13, Func. Count: 194, Neg. LLF: 128.74967793814682
Iteration: 14, Func. Count: 208, Neg. LLF: 128.73849733320435
Iteration: 15, Func. Count: 222, Neg. LLF: 128.7378453294724
Iteration: 16, Func. Count: 236, Neg. LLF: 128.73774496659556
Iteration: 17, Func. Count: 250, Neg. LLF: 128.7377403190133
Iteration: 18, Func. Count: 263, Neg. LLF: 128.73774031909244
Optimization terminated successfully (Exit mode 0)
Current function value: 128.7377403190133
Iterations: 18
Function evaluations: 263
Gradient evaluations: 18
Iteration: 1, Func. Count: 8, Neg. LLF: 137.57297964759243
Iteration: 2, Func. Count: 16, Neg. LLF: 138.07486705379017
Iteration: 3, Func. Count: 24, Neg. LLF: 134.8527203373006
Iteration: 4, Func. Count: 32, Neg. LLF: 132.72095090881828
Iteration: 5, Func. Count: 39, Neg. LLF: 132.90599902538432
Iteration: 6, Func. Count: 47, Neg. LLF: 132.5358937631102
Iteration: 7, Func. Count: 54, Neg. LLF: 132.5274877402196
Iteration: 8, Func. Count: 61, Neg. LLF: 132.52652755879507
Iteration: 9, Func. Count: 68, Neg. LLF: 132.5265042805641
Iteration: 10, Func. Count: 75, Neg. LLF: 132.52650341587432
Optimization terminated successfully (Exit mode 0)
Current function value: 132.52650341587432
Iterations: 10
Function evaluations: 75
Gradient evaluations: 10
Iteration: 1, Func. Count: 9, Neg. LLF: 135.80158655997758
Iteration: 2, Func. Count: 18, Neg. LLF: 141.08697550202245
Iteration: 3, Func. Count: 27, Neg. LLF: 134.2323483968137
Iteration: 4, Func. Count: 36, Neg. LLF: 133.73837639919776
Iteration: 5, Func. Count: 45, Neg. LLF: 132.56991729545436
Iteration: 6, Func. Count: 53, Neg. LLF: 132.53541704496013
Iteration: 7, Func. Count: 61, Neg. LLF: 132.5320975180748
Iteration: 8, Func. Count: 69, Neg. LLF: 132.5280997633369
Iteration: 9, Func. Count: 77, Neg. LLF: 132.52688874863077
Iteration: 10, Func. Count: 85, Neg. LLF: 132.52651573835013
Iteration: 11, Func. Count: 93, Neg. LLF: 132.5265034902929
Iteration: 12, Func. Count: 100, Neg. LLF: 132.52650349859735
Optimization terminated successfully (Exit mode 0)
Current function value: 132.5265034902929
Iterations: 12
Function evaluations: 100
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 135.66106311654008
Iteration: 2, Func. Count: 20, Neg. LLF: 133.53634854418056
Iteration: 3, Func. Count: 29, Neg. LLF: 133.4808456567023
Iteration: 4, Func. Count: 39, Neg. LLF: 139.1290673488952
Iteration: 5, Func. Count: 49, Neg. LLF: 132.90489311616832
Iteration: 6, Func. Count: 59, Neg. LLF: 132.63854601779587
Iteration: 7, Func. Count: 68, Neg. LLF: 132.5587133236855
Iteration: 8, Func. Count: 77, Neg. LLF: 132.53087313903538
Iteration: 9, Func. Count: 86, Neg. LLF: 132.52672532954588
Iteration: 10, Func. Count: 95, Neg. LLF: 132.52650722951842
Iteration: 11, Func. Count: 104, Neg. LLF: 132.52650360149423
Iteration: 12, Func. Count: 112, Neg. LLF: 132.52650362187123
Optimization terminated successfully (Exit mode 0)
Current function value: 132.52650360149423
Iterations: 12
Function evaluations: 112
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 135.583137917294
Iteration: 2, Func. Count: 22, Neg. LLF: 133.49932606427134
Iteration: 3, Func. Count: 32, Neg. LLF: 133.3247463878496
Iteration: 4, Func. Count: 42, Neg. LLF: 138.2607544069115
Iteration: 5, Func. Count: 53, Neg. LLF: 132.892684814909
Iteration: 6, Func. Count: 64, Neg. LLF: 132.64248159008375
Iteration: 7, Func. Count: 74, Neg. LLF: 132.57660647223435
Iteration: 8, Func. Count: 84, Neg. LLF: 132.53554339332365
Iteration: 9, Func. Count: 94, Neg. LLF: 132.5270875433751
Iteration: 10, Func. Count: 104, Neg. LLF: 132.52653582880262
Iteration: 11, Func. Count: 114, Neg. LLF: 132.52650353912463
Iteration: 12, Func. Count: 123, Neg. LLF: 132.5265035681066
Optimization terminated successfully (Exit mode 0)
Current function value: 132.52650353912463
Iterations: 12
Function evaluations: 123
Gradient evaluations: 12
Iteration: 1, Func. Count: 12, Neg. LLF: 135.53599976119534
Iteration: 2, Func. Count: 24, Neg. LLF: 134.2223092211095
Iteration: 3, Func. Count: 36, Neg. LLF: 132.92616542103298
Iteration: 4, Func. Count: 47, Neg. LLF: 143.23189337264864
Iteration: 5, Func. Count: 59, Neg. LLF: 132.7046786200041
Iteration: 6, Func. Count: 70, Neg. LLF: 133.58894284704755
Iteration: 7, Func. Count: 83, Neg. LLF: 132.55646841695835
Iteration: 8, Func. Count: 94, Neg. LLF: 132.45312100896012
Iteration: 9, Func. Count: 105, Neg. LLF: 132.4097643667681
Iteration: 10, Func. Count: 116, Neg. LLF: 132.39147296954178
Iteration: 11, Func. Count: 127, Neg. LLF: 132.3881274716453
Iteration: 12, Func. Count: 138, Neg. LLF: 132.38761754357105
Iteration: 13, Func. Count: 149, Neg. LLF: 132.38756589505297
Iteration: 14, Func. Count: 160, Neg. LLF: 132.38756314691472
Iteration: 15, Func. Count: 170, Neg. LLF: 132.3875631468832
Optimization terminated successfully (Exit mode 0)
Current function value: 132.38756314691472
Iterations: 15
Function evaluations: 170
Gradient evaluations: 15
Iteration: 1, Func. Count: 9, Neg. LLF: 136.99452409546726
Iteration: 2, Func. Count: 18, Neg. LLF: 162.8131093029092
Iteration: 3, Func. Count: 27, Neg. LLF: 132.00395351706163
Iteration: 4, Func. Count: 36, Neg. LLF: 130.0589676339245
Iteration: 5, Func. Count: 44, Neg. LLF: 129.49009479673876
Iteration: 6, Func. Count: 52, Neg. LLF: 131.46384110085623
Iteration: 7, Func. Count: 62, Neg. LLF: 129.2924033090723
Iteration: 8, Func. Count: 70, Neg. LLF: 129.2115268740859
Iteration: 9, Func. Count: 78, Neg. LLF: 129.1982228473771
Iteration: 10, Func. Count: 86, Neg. LLF: 129.19697074499047
Iteration: 11, Func. Count: 94, Neg. LLF: 129.19696381270066
Iteration: 12, Func. Count: 101, Neg. LLF: 129.1969639358633
Optimization terminated successfully (Exit mode 0)
Current function value: 129.19696381270066
Iterations: 12
Function evaluations: 101
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 134.00343623627535
Iteration: 2, Func. Count: 20, Neg. LLF: 138.507732078408
Iteration: 3, Func. Count: 30, Neg. LLF: 143.04828623897538
Iteration: 4, Func. Count: 40, Neg. LLF: 129.43233490400183
Iteration: 5, Func. Count: 49, Neg. LLF: 129.70884650368797
Iteration: 6, Func. Count: 59, Neg. LLF: 129.2142236107744
Iteration: 7, Func. Count: 68, Neg. LLF: 129.2083472144746
Iteration: 8, Func. Count: 78, Neg. LLF: 129.1970528659622
Iteration: 9, Func. Count: 87, Neg. LLF: 129.19696900969788
Iteration: 10, Func. Count: 96, Neg. LLF: 129.1969637162488
Iteration: 11, Func. Count: 104, Neg. LLF: 129.1969637353453
Optimization terminated successfully (Exit mode 0)
Current function value: 129.1969637162488
Iterations: 11
Function evaluations: 104
Gradient evaluations: 11
Iteration: 1, Func. Count: 11, Neg. LLF: 133.70984846558073
Iteration: 2, Func. Count: 22, Neg. LLF: 136.17413243440083
Iteration: 3, Func. Count: 33, Neg. LLF: 135.08835292333492
Iteration: 4, Func. Count: 44, Neg. LLF: 129.4186345856353
Iteration: 5, Func. Count: 54, Neg. LLF: 129.24926494701614
Iteration: 6, Func. Count: 64, Neg. LLF: 130.89088872754755
Iteration: 7, Func. Count: 76, Neg. LLF: 129.24212943126432
Iteration: 8, Func. Count: 87, Neg. LLF: 129.1970660937718
Iteration: 9, Func. Count: 97, Neg. LLF: 129.19697092164466
Iteration: 10, Func. Count: 107, Neg. LLF: 129.19696386179564
Iteration: 11, Func. Count: 116, Neg. LLF: 129.1969639086712
Optimization terminated successfully (Exit mode 0)
Current function value: 129.19696386179564
Iterations: 11
Function evaluations: 116
Gradient evaluations: 11
Iteration: 1, Func. Count: 12, Neg. LLF: 133.5772305555554
Iteration: 2, Func. Count: 24, Neg. LLF: 135.8732592123908
Iteration: 3, Func. Count: 36, Neg. LLF: 135.0510383857105
Iteration: 4, Func. Count: 48, Neg. LLF: 129.41843078333736
Iteration: 5, Func. Count: 59, Neg. LLF: 129.2499343174728
Iteration: 6, Func. Count: 70, Neg. LLF: 129.3147537616921
Iteration: 7, Func. Count: 82, Neg. LLF: 129.07769526520497
Iteration: 8, Func. Count: 93, Neg. LLF: 129.0598618374671
Iteration: 9, Func. Count: 104, Neg. LLF: 129.05414065512826
Iteration: 10, Func. Count: 115, Neg. LLF: 129.05398556028584
Iteration: 11, Func. Count: 126, Neg. LLF: 129.0539704950859
Iteration: 12, Func. Count: 137, Neg. LLF: 129.05396981775758
Optimization terminated successfully (Exit mode 0)
Current function value: 129.05396981775758
Iterations: 12
Function evaluations: 137
Gradient evaluations: 12
Iteration: 1, Func. Count: 13, Neg. LLF: 133.50548206828427
Iteration: 2, Func. Count: 25, Neg. LLF: 133.10230011018973
Iteration: 3, Func. Count: 38, Neg. LLF: 135.3074993724837
Iteration: 4, Func. Count: 51, Neg. LLF: 134.5379839071048
Iteration: 5, Func. Count: 64, Neg. LLF: 129.7814294049779
Iteration: 6, Func. Count: 77, Neg. LLF: 129.2193080398836
Iteration: 7, Func. Count: 89, Neg. LLF: 140.4263607791482
Iteration: 8, Func. Count: 102, Neg. LLF: 129.1238118594581
Iteration: 9, Func. Count: 114, Neg. LLF: 129.1508811079642
Iteration: 10, Func. Count: 127, Neg. LLF: 129.31655884256583
Iteration: 11, Func. Count: 140, Neg. LLF: 129.06021851546646
Iteration: 12, Func. Count: 152, Neg. LLF: 129.05538942930264
Iteration: 13, Func. Count: 164, Neg. LLF: 129.05401510681295
Iteration: 14, Func. Count: 176, Neg. LLF: 129.05397092719525
Iteration: 15, Func. Count: 188, Neg. LLF: 129.05396990059256
Iteration: 16, Func. Count: 199, Neg. LLF: 129.05396990182695
Optimization terminated successfully (Exit mode 0)
Current function value: 129.05396990059256
Iterations: 16
Function evaluations: 199
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 135.9063873027303
Iteration: 2, Func. Count: 20, Neg. LLF: 143.1578900844029
Iteration: 3, Func. Count: 30, Neg. LLF: 137.43877305480524
Iteration: 4, Func. Count: 40, Neg. LLF: 129.98589659890058
Iteration: 5, Func. Count: 49, Neg. LLF: 136.04642350962015
Iteration: 6, Func. Count: 61, Neg. LLF: 137.54640024517437
Iteration: 7, Func. Count: 72, Neg. LLF: 129.15109548702188
Iteration: 8, Func. Count: 81, Neg. LLF: 129.11146436576055
Iteration: 9, Func. Count: 90, Neg. LLF: 129.0312258362193
Iteration: 10, Func. Count: 99, Neg. LLF: 129.0287464406944
Iteration: 11, Func. Count: 108, Neg. LLF: 129.02843932120456
Iteration: 12, Func. Count: 117, Neg. LLF: 129.02843026843726
Iteration: 13, Func. Count: 126, Neg. LLF: 129.02842745000152
Iteration: 14, Func. Count: 134, Neg. LLF: 129.0284274500235
Optimization terminated successfully (Exit mode 0)
Current function value: 129.02842745000152
Iterations: 14
Function evaluations: 134
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 135.1886339347872
Iteration: 2, Func. Count: 22, Neg. LLF: 136.07713632943535
Iteration: 3, Func. Count: 33, Neg. LLF: 142.40152811292745
Iteration: 4, Func. Count: 44, Neg. LLF: 138.0177912718585
Iteration: 5, Func. Count: 55, Neg. LLF: 129.51506069162
Iteration: 6, Func. Count: 65, Neg. LLF: 129.80507975544216
Iteration: 7, Func. Count: 76, Neg. LLF: 130.46634809809927
Iteration: 8, Func. Count: 88, Neg. LLF: 129.0466231504913
Iteration: 9, Func. Count: 98, Neg. LLF: 129.0212112247654
Iteration: 10, Func. Count: 108, Neg. LLF: 129.01611076421142
Iteration: 11, Func. Count: 118, Neg. LLF: 129.01446885870925
Iteration: 12, Func. Count: 128, Neg. LLF: 129.01396549331423
Iteration: 13, Func. Count: 138, Neg. LLF: 129.01395166580477
Iteration: 14, Func. Count: 148, Neg. LLF: 129.01394801291784
Iteration: 15, Func. Count: 157, Neg. LLF: 129.01394801286347
Optimization terminated successfully (Exit mode 0)
Current function value: 129.01394801291784
Iterations: 15
Function evaluations: 157
Gradient evaluations: 15
Iteration: 1, Func. Count: 12, Neg. LLF: 133.2814276975954
Iteration: 2, Func. Count: 23, Neg. LLF: 136.77418605417273
Iteration: 3, Func. Count: 35, Neg. LLF: 135.04975306475328
Iteration: 4, Func. Count: 47, Neg. LLF: 135.7955925738836
Iteration: 5, Func. Count: 59, Neg. LLF: 139.5120916669356
Iteration: 6, Func. Count: 71, Neg. LLF: 142.37029785706028
Iteration: 7, Func. Count: 83, Neg. LLF: 136.87025870708933
Iteration: 8, Func. Count: 95, Neg. LLF: 374.1113671987071
Iteration: 9, Func. Count: 107, Neg. LLF: 136.90835554855352
Iteration: 10, Func. Count: 119, Neg. LLF: 129.06563559382087
Iteration: 11, Func. Count: 131, Neg. LLF: 129.03388536284976
Iteration: 12, Func. Count: 143, Neg. LLF: 129.01428802424473
Iteration: 13, Func. Count: 154, Neg. LLF: 129.01399015370248
Iteration: 14, Func. Count: 165, Neg. LLF: 129.01394797178432
Iteration: 15, Func. Count: 176, Neg. LLF: 129.01394745954082
Optimization terminated successfully (Exit mode 0)
Current function value: 129.01394745954082
Iterations: 15
Function evaluations: 176
Gradient evaluations: 15
Iteration: 1, Func. Count: 13, Neg. LLF: 133.13520334942885
Iteration: 2, Func. Count: 25, Neg. LLF: 137.78276988490796
Iteration: 3, Func. Count: 38, Neg. LLF: 134.8814584359117
Iteration: 4, Func. Count: 51, Neg. LLF: 135.62011417508813
Iteration: 5, Func. Count: 64, Neg. LLF: 137.20098760677345
Iteration: 6, Func. Count: 77, Neg. LLF: 136.1947453489127
Iteration: 7, Func. Count: 90, Neg. LLF: 477.99400562156916
Iteration: 8, Func. Count: 103, Neg. LLF: 138.92605959489782
Iteration: 9, Func. Count: 116, Neg. LLF: 129.24595130332668
Iteration: 10, Func. Count: 129, Neg. LLF: 129.12242834023328
Iteration: 11, Func. Count: 142, Neg. LLF: 128.78689264606928
Iteration: 12, Func. Count: 154, Neg. LLF: 128.81463661922186
Iteration: 13, Func. Count: 167, Neg. LLF: 128.80151632137424
Iteration: 14, Func. Count: 180, Neg. LLF: 128.74945787837396
Iteration: 15, Func. Count: 192, Neg. LLF: 128.74881755088396
Iteration: 16, Func. Count: 204, Neg. LLF: 128.74790003394313
Iteration: 17, Func. Count: 216, Neg. LLF: 128.74789322255444
Iteration: 18, Func. Count: 227, Neg. LLF: 128.74789322257146
Optimization terminated successfully (Exit mode 0)
Current function value: 128.74789322255444
Iterations: 18
Function evaluations: 227
Gradient evaluations: 18
Iteration: 1, Func. Count: 14, Neg. LLF: 133.02526837974392
Iteration: 2, Func. Count: 27, Neg. LLF: 137.67357341419554
Iteration: 3, Func. Count: 41, Neg. LLF: 134.90691397621896
Iteration: 4, Func. Count: 55, Neg. LLF: 135.66412653913872
Iteration: 5, Func. Count: 69, Neg. LLF: 138.22631915212247
Iteration: 6, Func. Count: 83, Neg. LLF: 168.27460427323112
Iteration: 7, Func. Count: 97, Neg. LLF: 2723.0510938547777
Iteration: 8, Func. Count: 111, Neg. LLF: 137.7399872739345
Iteration: 9, Func. Count: 125, Neg. LLF: 131.49342067941046
Iteration: 10, Func. Count: 139, Neg. LLF: 129.47423696379528
Iteration: 11, Func. Count: 153, Neg. LLF: 129.1496179061025
Iteration: 12, Func. Count: 167, Neg. LLF: 128.78339085633445
Iteration: 13, Func. Count: 180, Neg. LLF: 128.74286590774338
Iteration: 14, Func. Count: 193, Neg. LLF: 128.739025703553
Iteration: 15, Func. Count: 206, Neg. LLF: 128.7378325536931
Iteration: 16, Func. Count: 219, Neg. LLF: 128.73774897371496
Iteration: 17, Func. Count: 232, Neg. LLF: 128.73774065656764
Iteration: 18, Func. Count: 245, Neg. LLF: 128.73773995715928
Optimization terminated successfully (Exit mode 0)
Current function value: 128.73773995715928
Iterations: 18
Function evaluations: 245
Gradient evaluations: 18
Iteration: 1, Func. Count: 11, Neg. LLF: 137.00408512093253
Iteration: 2, Func. Count: 22, Neg. LLF: 155.48250974049054
Iteration: 3, Func. Count: 33, Neg. LLF: 134.85202143488263
Iteration: 4, Func. Count: 44, Neg. LLF: 129.57651846541967
Iteration: 5, Func. Count: 54, Neg. LLF: 130.7461065561617
Iteration: 6, Func. Count: 66, Neg. LLF: 136.8044938081091
Iteration: 7, Func. Count: 78, Neg. LLF: 129.27037990654097
Iteration: 8, Func. Count: 89, Neg. LLF: 129.1328263158235
Iteration: 9, Func. Count: 100, Neg. LLF: 129.01143679549426
Iteration: 10, Func. Count: 110, Neg. LLF: 128.99820076277382
Iteration: 11, Func. Count: 120, Neg. LLF: 128.99643375376985
Iteration: 12, Func. Count: 130, Neg. LLF: 128.99622555041657
Iteration: 13, Func. Count: 140, Neg. LLF: 128.99621464658134
Iteration: 14, Func. Count: 149, Neg. LLF: 128.99621464649158
Optimization terminated successfully (Exit mode 0)
Current function value: 128.99621464658134
Iterations: 14
Function evaluations: 149
Gradient evaluations: 14
Iteration: 1, Func. Count: 12, Neg. LLF: 136.04494716525704
Iteration: 2, Func. Count: 24, Neg. LLF: 135.36855649014862
Iteration: 3, Func. Count: 36, Neg. LLF: 142.32397946833555
Iteration: 4, Func. Count: 48, Neg. LLF: 137.9958936129556
Iteration: 5, Func. Count: 60, Neg. LLF: 129.4762528605771
Iteration: 6, Func. Count: 71, Neg. LLF: 129.59473507096442
Iteration: 7, Func. Count: 83, Neg. LLF: 134.45048172644368
Iteration: 8, Func. Count: 96, Neg. LLF: 129.0420132761453
Iteration: 9, Func. Count: 107, Neg. LLF: 129.00317689669268
Iteration: 10, Func. Count: 118, Neg. LLF: 128.99713289777193
Iteration: 11, Func. Count: 129, Neg. LLF: 128.99629083679815
Iteration: 12, Func. Count: 140, Neg. LLF: 128.99622669240202
Iteration: 13, Func. Count: 151, Neg. LLF: 128.99621437184575
Iteration: 14, Func. Count: 161, Neg. LLF: 128.99621437803657
Optimization terminated successfully (Exit mode 0)
Current function value: 128.99621437184575
Iterations: 14
Function evaluations: 161
Gradient evaluations: 14
Iteration: 1, Func. Count: 13, Neg. LLF: 133.4058162141842
Iteration: 2, Func. Count: 26, Neg. LLF: 136.01825755308016
Iteration: 3, Func. Count: 39, Neg. LLF: 130.3689590498335
Iteration: 4, Func. Count: 51, Neg. LLF: 129.6473921444734
Iteration: 5, Func. Count: 64, Neg. LLF: 135.05354100210303
Iteration: 6, Func. Count: 79, Neg. LLF: 130.23301938320193
Iteration: 7, Func. Count: 93, Neg. LLF: 129.0442689172301
Iteration: 8, Func. Count: 105, Neg. LLF: 129.02186232585257
Iteration: 9, Func. Count: 117, Neg. LLF: 128.99681198985064
Iteration: 10, Func. Count: 129, Neg. LLF: 128.9963022611861
Iteration: 11, Func. Count: 141, Neg. LLF: 128.99624795488623
Iteration: 12, Func. Count: 153, Neg. LLF: 128.99621946199056
Iteration: 13, Func. Count: 165, Neg. LLF: 128.99621446203113
Iteration: 14, Func. Count: 176, Neg. LLF: 128.99621451696177
Optimization terminated successfully (Exit mode 0)
Current function value: 128.99621446203113
Iterations: 14
Function evaluations: 176
Gradient evaluations: 14
Iteration: 1, Func. Count: 14, Neg. LLF: 133.2465828143609
Iteration: 2, Func. Count: 27, Neg. LLF: 136.62449905552694
Iteration: 3, Func. Count: 41, Neg. LLF: 135.21452486078277
Iteration: 4, Func. Count: 55, Neg. LLF: 136.0992347505493
Iteration: 5, Func. Count: 69, Neg. LLF: 140.29691491886092
Iteration: 6, Func. Count: 83, Neg. LLF: 146.7380191323419
Iteration: 7, Func. Count: 97, Neg. LLF: 142.37275092414905
Iteration: 8, Func. Count: 111, Neg. LLF: 136.93716005931043
Iteration: 9, Func. Count: 125, Neg. LLF: 137.38040365101114
Iteration: 10, Func. Count: 139, Neg. LLF: 130.27727497347905
Iteration: 11, Func. Count: 153, Neg. LLF: 133.7229392015958
Iteration: 12, Func. Count: 167, Neg. LLF: 128.78970523783067
Iteration: 13, Func. Count: 180, Neg. LLF: 128.77243144020903
Iteration: 14, Func. Count: 193, Neg. LLF: 128.75753019907307
Iteration: 15, Func. Count: 206, Neg. LLF: 128.97541242245913
Iteration: 16, Func. Count: 220, Neg. LLF: 128.74954047417634
Iteration: 17, Func. Count: 233, Neg. LLF: 128.74863511118235
Iteration: 18, Func. Count: 246, Neg. LLF: 128.7483872422839
Iteration: 19, Func. Count: 259, Neg. LLF: 128.75970635400978
Iteration: 20, Func. Count: 273, Neg. LLF: 128.74793723410093
Iteration: 21, Func. Count: 286, Neg. LLF: 128.74789664383468
Iteration: 22, Func. Count: 299, Neg. LLF: 128.7478930516945
Iteration: 23, Func. Count: 311, Neg. LLF: 128.74789305169298
Optimization terminated successfully (Exit mode 0)
Current function value: 128.7478930516945
Iterations: 23
Function evaluations: 311
Gradient evaluations: 23
Iteration: 1, Func. Count: 15, Neg. LLF: 133.15069288113904
Iteration: 2, Func. Count: 29, Neg. LLF: 138.14424368901453
Iteration: 3, Func. Count: 44, Neg. LLF: 134.89634672721743
Iteration: 4, Func. Count: 59, Neg. LLF: 135.6418234700372
Iteration: 5, Func. Count: 74, Neg. LLF: 137.46896857429968
Iteration: 6, Func. Count: 89, Neg. LLF: 174.76666272972156
Iteration: 7, Func. Count: 104, Neg. LLF: 1082.3820135820868
Iteration: 8, Func. Count: 119, Neg. LLF: 137.35913410919215
Iteration: 9, Func. Count: 134, Neg. LLF: 131.92662865028998
Iteration: 10, Func. Count: 149, Neg. LLF: 129.91790103354379
Iteration: 11, Func. Count: 164, Neg. LLF: 129.20365539224926
Iteration: 12, Func. Count: 179, Neg. LLF: 128.81176884459094
Iteration: 13, Func. Count: 194, Neg. LLF: 128.74642294806245
Iteration: 14, Func. Count: 208, Neg. LLF: 128.73840063680763
Iteration: 15, Func. Count: 222, Neg. LLF: 128.73780846499443
Iteration: 16, Func. Count: 236, Neg. LLF: 128.7377451011881
Iteration: 17, Func. Count: 250, Neg. LLF: 128.73774021961614
Iteration: 18, Func. Count: 263, Neg. LLF: 128.73774021962961
Optimization terminated successfully (Exit mode 0)
Current function value: 128.73774021961614
Iterations: 18
Function evaluations: 263
Gradient evaluations: 18
Iteration: 1, Func. Count: 12, Neg. LLF: 136.59605858408065
Iteration: 2, Func. Count: 24, Neg. LLF: 149.3123248851547
Iteration: 3, Func. Count: 36, Neg. LLF: 134.50521180013249
Iteration: 4, Func. Count: 48, Neg. LLF: 132.10220476727716
Iteration: 5, Func. Count: 60, Neg. LLF: 130.73101554479538
Iteration: 6, Func. Count: 72, Neg. LLF: 130.80710011327102
Iteration: 7, Func. Count: 84, Neg. LLF: 128.9721556843314
Iteration: 8, Func. Count: 95, Neg. LLF: 129.00465414082575
Iteration: 9, Func. Count: 107, Neg. LLF: 128.91694688051047
Iteration: 10, Func. Count: 119, Neg. LLF: 128.82452448036173
Iteration: 11, Func. Count: 130, Neg. LLF: 128.82436302606814
Iteration: 12, Func. Count: 141, Neg. LLF: 128.82436229346794
Optimization terminated successfully (Exit mode 0)
Current function value: 128.82436229346794
Iterations: 12
Function evaluations: 141
Gradient evaluations: 12
Iteration: 1, Func. Count: 13, Neg. LLF: 136.12824284796514
Iteration: 2, Func. Count: 26, Neg. LLF: 135.38967047827424
Iteration: 3, Func. Count: 39, Neg. LLF: 142.33860701673132
Iteration: 4, Func. Count: 52, Neg. LLF: 136.63863688561318
Iteration: 5, Func. Count: 65, Neg. LLF: 129.35328913865106
Iteration: 6, Func. Count: 77, Neg. LLF: 130.51262494578913
Iteration: 7, Func. Count: 90, Neg. LLF: 130.21918252313975
Iteration: 8, Func. Count: 103, Neg. LLF: 128.8325915184285
Iteration: 9, Func. Count: 115, Neg. LLF: 128.82548998976722
Iteration: 10, Func. Count: 127, Neg. LLF: 128.82447471255577
Iteration: 11, Func. Count: 139, Neg. LLF: 128.82438335673606
Iteration: 12, Func. Count: 151, Neg. LLF: 128.82436315693985
Iteration: 13, Func. Count: 163, Neg. LLF: 128.8243622953388
Optimization terminated successfully (Exit mode 0)
Current function value: 128.8243622953388
Iterations: 13
Function evaluations: 163
Gradient evaluations: 13
Iteration: 1, Func. Count: 14, Neg. LLF: 133.4060674040426
Iteration: 2, Func. Count: 28, Neg. LLF: 136.11482136134862
Iteration: 3, Func. Count: 42, Neg. LLF: 130.21756159434761
Iteration: 4, Func. Count: 55, Neg. LLF: 129.62684840372444
Iteration: 5, Func. Count: 69, Neg. LLF: 133.60892515716498
Iteration: 6, Func. Count: 85, Neg. LLF: 130.13688480716476
Iteration: 7, Func. Count: 100, Neg. LLF: 128.9352831566024
Iteration: 8, Func. Count: 113, Neg. LLF: 128.87115120758176
Iteration: 9, Func. Count: 126, Neg. LLF: 128.8277100144783
Iteration: 10, Func. Count: 139, Neg. LLF: 128.82496438711914
Iteration: 11, Func. Count: 152, Neg. LLF: 128.82443246063127
Iteration: 12, Func. Count: 165, Neg. LLF: 128.82437351128914
Iteration: 13, Func. Count: 178, Neg. LLF: 128.82436267432894
Iteration: 14, Func. Count: 190, Neg. LLF: 128.82436272966956
Optimization terminated successfully (Exit mode 0)
Current function value: 128.82436267432894
Iterations: 14
Function evaluations: 190
Gradient evaluations: 14
Iteration: 1, Func. Count: 15, Neg. LLF: 133.255482057441
Iteration: 2, Func. Count: 29, Neg. LLF: 136.6919807039064
Iteration: 3, Func. Count: 44, Neg. LLF: 135.19459170132487
Iteration: 4, Func. Count: 59, Neg. LLF: 136.07515067652736
Iteration: 5, Func. Count: 74, Neg. LLF: 136.68966138236593
Iteration: 6, Func. Count: 89, Neg. LLF: 380.0089993320753
Iteration: 7, Func. Count: 104, Neg. LLF: 137.1480091529171
Iteration: 8, Func. Count: 119, Neg. LLF: 132.8037856312176
Iteration: 9, Func. Count: 134, Neg. LLF: 135.02742293949666
Iteration: 10, Func. Count: 149, Neg. LLF: 129.71157722151628
Iteration: 11, Func. Count: 164, Neg. LLF: 129.41233802535257
Iteration: 12, Func. Count: 179, Neg. LLF: 128.7222513848675
Iteration: 13, Func. Count: 193, Neg. LLF: 128.71372762868307
Iteration: 14, Func. Count: 207, Neg. LLF: 128.69248606549957
Iteration: 15, Func. Count: 221, Neg. LLF: 128.6907578493101
Iteration: 16, Func. Count: 235, Neg. LLF: 128.6905335274975
Iteration: 17, Func. Count: 249, Neg. LLF: 128.6904941218408
Iteration: 18, Func. Count: 263, Neg. LLF: 128.6904936608701
Optimization terminated successfully (Exit mode 0)
Current function value: 128.6904936608701
Iterations: 18
Function evaluations: 263
Gradient evaluations: 18
Iteration: 1, Func. Count: 16, Neg. LLF: 133.16266621787634
Iteration: 2, Func. Count: 31, Neg. LLF: 138.1989019449302
Iteration: 3, Func. Count: 47, Neg. LLF: 134.8813484509328
Iteration: 4, Func. Count: 63, Neg. LLF: 133.52267864962346
Iteration: 5, Func. Count: 79, Neg. LLF: 134.6728893124505
Iteration: 6, Func. Count: 95, Neg. LLF: 187.63155616133105
Iteration: 7, Func. Count: 111, Neg. LLF: 179.78013297464346
Iteration: 8, Func. Count: 127, Neg. LLF: 130.13440578359922
Iteration: 9, Func. Count: 143, Neg. LLF: 129.69154730873666
Iteration: 10, Func. Count: 159, Neg. LLF: 128.82457755214023
Iteration: 11, Func. Count: 175, Neg. LLF: 128.69998904853784
Iteration: 12, Func. Count: 191, Neg. LLF: 128.88522958348025
Iteration: 13, Func. Count: 207, Neg. LLF: 128.67255667323823
Iteration: 14, Func. Count: 223, Neg. LLF: 128.66585323934322
Iteration: 15, Func. Count: 238, Neg. LLF: 128.66526145916436
Iteration: 16, Func. Count: 253, Neg. LLF: 128.66520155389225
Iteration: 17, Func. Count: 268, Neg. LLF: 128.66519015082915
Iteration: 18, Func. Count: 282, Neg. LLF: 128.6651901508883
Optimization terminated successfully (Exit mode 0)
Current function value: 128.66519015082915
Iterations: 18
Function evaluations: 282
Gradient evaluations: 18
Iteration: 1, Func. Count: 7, Neg. LLF: 132.05288156588696
Iteration: 2, Func. Count: 13, Neg. LLF: 142.67387490857354
Iteration: 3, Func. Count: 20, Neg. LLF: 129.96722121250565
Iteration: 4, Func. Count: 26, Neg. LLF: 136.77855704689674
Iteration: 5, Func. Count: 33, Neg. LLF: 137.06930143946428
Iteration: 6, Func. Count: 40, Neg. LLF: 131.94171757810827
Iteration: 7, Func. Count: 47, Neg. LLF: 129.3193222465484
Iteration: 8, Func. Count: 54, Neg. LLF: 129.15071408896128
Iteration: 9, Func. Count: 60, Neg. LLF: 129.15025357884994
Iteration: 10, Func. Count: 66, Neg. LLF: 129.1502397569927
Iteration: 11, Func. Count: 71, Neg. LLF: 129.15023975699862
Optimization terminated successfully (Exit mode 0)
Current function value: 129.1502397569927
Iterations: 11
Function evaluations: 71
Gradient evaluations: 11
Iteration: 1, Func. Count: 5, Neg. LLF: 164.37472099662452
Iteration: 2, Func. Count: 10, Neg. LLF: 163.23870512704173
Iteration: 3, Func. Count: 15, Neg. LLF: 161.68395526232845
Iteration: 4, Func. Count: 19, Neg. LLF: 160.21337785722852
Iteration: 5, Func. Count: 23, Neg. LLF: 159.87109562823292
Iteration: 6, Func. Count: 27, Neg. LLF: 159.80980754696844
Iteration: 7, Func. Count: 31, Neg. LLF: 159.79862907806293
Iteration: 8, Func. Count: 35, Neg. LLF: 159.79268480817035
Iteration: 9, Func. Count: 39, Neg. LLF: 159.79197119457092
Iteration: 10, Func. Count: 43, Neg. LLF: 159.79188365342475
Iteration: 11, Func. Count: 47, Neg. LLF: 159.79188114309335
Iteration: 12, Func. Count: 50, Neg. LLF: 159.79188114309542
Optimization terminated successfully (Exit mode 0)
Current function value: 159.79188114309335
Iterations: 12
Function evaluations: 50
Gradient evaluations: 12
Iteration: 1, Func. Count: 6, Neg. LLF: 393.24718510733817
Iteration: 2, Func. Count: 12, Neg. LLF: 154.8291513759408
Iteration: 3, Func. Count: 18, Neg. LLF: 3876.0510862948213
Iteration: 4, Func. Count: 25, Neg. LLF: 144.34692077483993
Iteration: 5, Func. Count: 30, Neg. LLF: 143.91832295435944
Iteration: 6, Func. Count: 35, Neg. LLF: 143.8564335521028
Iteration: 7, Func. Count: 40, Neg. LLF: 143.84762097115603
Iteration: 8, Func. Count: 45, Neg. LLF: 143.84753985264467
Iteration: 9, Func. Count: 50, Neg. LLF: 143.8474275270887
Iteration: 10, Func. Count: 55, Neg. LLF: 143.84741095945012
Iteration: 11, Func. Count: 60, Neg. LLF: 143.84740976382616
Iteration: 12, Func. Count: 64, Neg. LLF: 143.8474097488549
Optimization terminated successfully (Exit mode 0)
Current function value: 143.84740976382616
Iterations: 12
Function evaluations: 64
Gradient evaluations: 12
Iteration: 1, Func. Count: 7, Neg. LLF: 336.74947474417223
Iteration: 2, Func. Count: 14, Neg. LLF: 153.54676466658628
Iteration: 3, Func. Count: 21, Neg. LLF: 544.1402572869732
Iteration: 4, Func. Count: 29, Neg. LLF: 145.5815693188748
Iteration: 5, Func. Count: 36, Neg. LLF: 143.91058667079537
Iteration: 6, Func. Count: 42, Neg. LLF: 143.85273708812753
Iteration: 7, Func. Count: 48, Neg. LLF: 143.8502720704968
Iteration: 8, Func. Count: 54, Neg. LLF: 143.8490933304066
Iteration: 9, Func. Count: 60, Neg. LLF: 143.84778849421318
Iteration: 10, Func. Count: 66, Neg. LLF: 143.84744066145083
Iteration: 11, Func. Count: 72, Neg. LLF: 143.84741054415457
Iteration: 12, Func. Count: 78, Neg. LLF: 143.84740975327168
Optimization terminated successfully (Exit mode 0)
Current function value: 143.84740975327168
Iterations: 12
Function evaluations: 78
Gradient evaluations: 12
Iteration: 1, Func. Count: 8, Neg. LLF: 298.7813744549363
Iteration: 2, Func. Count: 16, Neg. LLF: 156.90921639312413
Iteration: 3, Func. Count: 24, Neg. LLF: 145.61428127278575
Iteration: 4, Func. Count: 31, Neg. LLF: 198.5603675532241
Iteration: 5, Func. Count: 39, Neg. LLF: 155.3355034615057
Iteration: 6, Func. Count: 47, Neg. LLF: 143.9302733393236
Iteration: 7, Func. Count: 54, Neg. LLF: 143.887299831508
Iteration: 8, Func. Count: 61, Neg. LLF: 143.86002719602345
Iteration: 9, Func. Count: 68, Neg. LLF: 143.8541253796184
Iteration: 10, Func. Count: 75, Neg. LLF: 143.85105958383434
Iteration: 11, Func. Count: 82, Neg. LLF: 143.84749036613482
Iteration: 12, Func. Count: 89, Neg. LLF: 143.84741188254833
Iteration: 13, Func. Count: 96, Neg. LLF: 143.84740975172852
Iteration: 14, Func. Count: 102, Neg. LLF: 143.84740978737136
Optimization terminated successfully (Exit mode 0)
Current function value: 143.84740975172852
Iterations: 14
Function evaluations: 102
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 283.26586391896706
Iteration: 2, Func. Count: 18, Neg. LLF: 158.64752026544937
Iteration: 3, Func. Count: 27, Neg. LLF: 147.2347361276209
Iteration: 4, Func. Count: 36, Neg. LLF: 172.85643619416368
Iteration: 5, Func. Count: 45, Neg. LLF: 144.0897687354149
Iteration: 6, Func. Count: 53, Neg. LLF: 143.9515453755297
Iteration: 7, Func. Count: 61, Neg. LLF: 143.87863968054313
Iteration: 8, Func. Count: 69, Neg. LLF: 143.8673620397436
Iteration: 9, Func. Count: 77, Neg. LLF: 143.8564886651871
Iteration: 10, Func. Count: 85, Neg. LLF: 143.84886348857358
Iteration: 11, Func. Count: 93, Neg. LLF: 143.84745598855272
Iteration: 12, Func. Count: 101, Neg. LLF: 143.84741095206562
Iteration: 13, Func. Count: 109, Neg. LLF: 143.84740976587042
Iteration: 14, Func. Count: 116, Neg. LLF: 143.84740981419506
Optimization terminated successfully (Exit mode 0)
Current function value: 143.84740976587042
Iterations: 14
Function evaluations: 116
Gradient evaluations: 14
Iteration: 1, Func. Count: 6, Neg. LLF: 158.83498637388539
Iteration: 2, Func. Count: 13, Neg. LLF: 158.8366018323489
Iteration: 3, Func. Count: 20, Neg. LLF: 180.5571357182717
Iteration: 4, Func. Count: 26, Neg. LLF: 146.502559308894
Iteration: 5, Func. Count: 31, Neg. LLF: 145.6434105381879
Iteration: 6, Func. Count: 36, Neg. LLF: 145.73453532691954
Iteration: 7, Func. Count: 42, Neg. LLF: 145.06568610502723
Iteration: 8, Func. Count: 47, Neg. LLF: 145.0531329520449
Iteration: 9, Func. Count: 52, Neg. LLF: 145.0331301081223
Iteration: 10, Func. Count: 57, Neg. LLF: 145.0149663848948
Iteration: 11, Func. Count: 62, Neg. LLF: 145.00985104839202
Iteration: 12, Func. Count: 67, Neg. LLF: 145.00870148688833
Iteration: 13, Func. Count: 72, Neg. LLF: 145.00863315010903
Iteration: 14, Func. Count: 77, Neg. LLF: 145.008549086535
Iteration: 15, Func. Count: 82, Neg. LLF: 145.0085352611946
Iteration: 16, Func. Count: 87, Neg. LLF: 145.008534605975
Optimization terminated successfully (Exit mode 0)
Current function value: 145.008534605975
Iterations: 16
Function evaluations: 87
Gradient evaluations: 16
Iteration: 1, Func. Count: 7, Neg. LLF: 187.19812569073778
Iteration: 2, Func. Count: 14, Neg. LLF: 142.83253452172468
Iteration: 3, Func. Count: 20, Neg. LLF: 143.38996429949464
Iteration: 4, Func. Count: 27, Neg. LLF: 142.51730350849127
Iteration: 5, Func. Count: 33, Neg. LLF: 142.27531267264933
Iteration: 6, Func. Count: 39, Neg. LLF: 142.24664937219177
Iteration: 7, Func. Count: 45, Neg. LLF: 142.23222516846442
Iteration: 8, Func. Count: 51, Neg. LLF: 142.23174645583265
Iteration: 9, Func. Count: 57, Neg. LLF: 142.2314813503208
Iteration: 10, Func. Count: 62, Neg. LLF: 142.2314813222664
Optimization terminated successfully (Exit mode 0)
Current function value: 142.2314813503208
Iterations: 10
Function evaluations: 62
Gradient evaluations: 10
Iteration: 1, Func. Count: 8, Neg. LLF: 175.84513728828628
Iteration: 2, Func. Count: 16, Neg. LLF: 142.54611660881017
Iteration: 3, Func. Count: 23, Neg. LLF: 142.63489598516588
Iteration: 4, Func. Count: 31, Neg. LLF: 142.4178885318243
Iteration: 5, Func. Count: 38, Neg. LLF: 142.344275070781
Iteration: 6, Func. Count: 45, Neg. LLF: 142.29531094935786
Iteration: 7, Func. Count: 52, Neg. LLF: 142.24667960831283
Iteration: 8, Func. Count: 59, Neg. LLF: 142.23207664426917
Iteration: 9, Func. Count: 66, Neg. LLF: 142.2314809010114
Iteration: 10, Func. Count: 72, Neg. LLF: 142.23148091743545
Optimization terminated successfully (Exit mode 0)
Current function value: 142.2314809010114
Iterations: 10
Function evaluations: 72
Gradient evaluations: 10
Iteration: 1, Func. Count: 9, Neg. LLF: 231.62447040750143
Iteration: 2, Func. Count: 18, Neg. LLF: 287.4933093671402
Iteration: 3, Func. Count: 27, Neg. LLF: 171.93016318037527
Iteration: 4, Func. Count: 37, Neg. LLF: 143.34913625274646
Iteration: 5, Func. Count: 45, Neg. LLF: 142.80060017822177
Iteration: 6, Func. Count: 53, Neg. LLF: 142.6010933864481
Iteration: 7, Func. Count: 61, Neg. LLF: 142.33555373093887
Iteration: 8, Func. Count: 69, Neg. LLF: 142.26518710700154
Iteration: 9, Func. Count: 77, Neg. LLF: 142.2495541659074
Iteration: 10, Func. Count: 85, Neg. LLF: 142.23593324564692
Iteration: 11, Func. Count: 93, Neg. LLF: 142.2323877949693
Iteration: 12, Func. Count: 101, Neg. LLF: 142.2315364167477
Iteration: 13, Func. Count: 109, Neg. LLF: 142.23148313056473
Iteration: 14, Func. Count: 117, Neg. LLF: 142.23148101009676
Iteration: 15, Func. Count: 124, Neg. LLF: 142.2314810249812
Optimization terminated successfully (Exit mode 0)
Current function value: 142.23148101009676
Iterations: 15
Function evaluations: 124
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 225.08234936385807
Iteration: 2, Func. Count: 20, Neg. LLF: 211.85346195446292
Iteration: 3, Func. Count: 30, Neg. LLF: 294.2308612612197
Iteration: 4, Func. Count: 40, Neg. LLF: 143.15146119429446
Iteration: 5, Func. Count: 49, Neg. LLF: 142.81304852567473
Iteration: 6, Func. Count: 58, Neg. LLF: 142.56563298690867
Iteration: 7, Func. Count: 67, Neg. LLF: 142.3617423486794
Iteration: 8, Func. Count: 76, Neg. LLF: 142.27228354073372
Iteration: 9, Func. Count: 85, Neg. LLF: 142.26196148391458
Iteration: 10, Func. Count: 94, Neg. LLF: 142.2423095680436
Iteration: 11, Func. Count: 103, Neg. LLF: 142.23574401650052
Iteration: 12, Func. Count: 112, Neg. LLF: 142.23168894351835
Iteration: 13, Func. Count: 121, Neg. LLF: 142.2314861221417
Iteration: 14, Func. Count: 130, Neg. LLF: 142.23148105305322
Iteration: 15, Func. Count: 138, Neg. LLF: 142.2314811209312
Optimization terminated successfully (Exit mode 0)
Current function value: 142.23148105305322
Iterations: 15
Function evaluations: 138
Gradient evaluations: 15
Iteration: 1, Func. Count: 7, Neg. LLF: 159.26341914256597
Iteration: 2, Func. Count: 15, Neg. LLF: 155.54358427067638
Iteration: 3, Func. Count: 22, Neg. LLF: 181.41088960292777
Iteration: 4, Func. Count: 29, Neg. LLF: 143.88509376565142
Iteration: 5, Func. Count: 35, Neg. LLF: 143.01617526230604
Iteration: 6, Func. Count: 41, Neg. LLF: 142.38143515304193
Iteration: 7, Func. Count: 47, Neg. LLF: 141.6870418347982
Iteration: 8, Func. Count: 53, Neg. LLF: 141.5867919232155
Iteration: 9, Func. Count: 59, Neg. LLF: 141.5720795816022
Iteration: 10, Func. Count: 65, Neg. LLF: 141.56861582393228
Iteration: 11, Func. Count: 71, Neg. LLF: 141.5646099332589
Iteration: 12, Func. Count: 77, Neg. LLF: 141.5645418037021
Iteration: 13, Func. Count: 83, Neg. LLF: 141.56450455464943
Iteration: 14, Func. Count: 89, Neg. LLF: 141.564436662574
Iteration: 15, Func. Count: 95, Neg. LLF: 141.56439597347975
Iteration: 16, Func. Count: 101, Neg. LLF: 141.56438423678208
Iteration: 17, Func. Count: 107, Neg. LLF: 141.56438334618534
Optimization terminated successfully (Exit mode 0)
Current function value: 141.56438334618534
Iterations: 17
Function evaluations: 107
Gradient evaluations: 17
Iteration: 1, Func. Count: 8, Neg. LLF: 180.3312372780327
Iteration: 2, Func. Count: 16, Neg. LLF: 142.34619001769633
Iteration: 3, Func. Count: 23, Neg. LLF: 142.40882578572612
Iteration: 4, Func. Count: 31, Neg. LLF: 149.56732724714823
Iteration: 5, Func. Count: 39, Neg. LLF: 141.68104331813936
Iteration: 6, Func. Count: 46, Neg. LLF: 141.63009998665046
Iteration: 7, Func. Count: 53, Neg. LLF: 141.62637040841813
Iteration: 8, Func. Count: 60, Neg. LLF: 141.62616210034557
Iteration: 9, Func. Count: 67, Neg. LLF: 141.6261365176646
Iteration: 10, Func. Count: 74, Neg. LLF: 141.62608199342765
Iteration: 11, Func. Count: 81, Neg. LLF: 141.62607716298976
Iteration: 12, Func. Count: 87, Neg. LLF: 141.62607716112706
Optimization terminated successfully (Exit mode 0)
Current function value: 141.62607716298976
Iterations: 12
Function evaluations: 87
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 240.30889618396304
Iteration: 2, Func. Count: 18, Neg. LLF: 214.01908031994415
Iteration: 3, Func. Count: 27, Neg. LLF: 218.0518857566934
Iteration: 4, Func. Count: 36, Neg. LLF: 141.86807924386596
Iteration: 5, Func. Count: 44, Neg. LLF: 141.96117251696478
Iteration: 6, Func. Count: 53, Neg. LLF: 141.93648258664604
Iteration: 7, Func. Count: 62, Neg. LLF: 141.65487596021686
Iteration: 8, Func. Count: 71, Neg. LLF: 141.46005043038778
Iteration: 9, Func. Count: 79, Neg. LLF: 141.41760794570453
Iteration: 10, Func. Count: 87, Neg. LLF: 141.3943779788383
Iteration: 11, Func. Count: 95, Neg. LLF: 141.37846944444385
Iteration: 12, Func. Count: 103, Neg. LLF: 141.37683292265316
Iteration: 13, Func. Count: 111, Neg. LLF: 141.37579388132582
Iteration: 14, Func. Count: 119, Neg. LLF: 141.37534289096934
Iteration: 15, Func. Count: 127, Neg. LLF: 141.3750773102366
Iteration: 16, Func. Count: 135, Neg. LLF: 141.37501110715078
Iteration: 17, Func. Count: 143, Neg. LLF: 141.37499711177435
Iteration: 18, Func. Count: 151, Neg. LLF: 141.37499315629424
Iteration: 19, Func. Count: 159, Neg. LLF: 141.3749914750181
Iteration: 20, Func. Count: 166, Neg. LLF: 141.37499147494754
Optimization terminated successfully (Exit mode 0)
Current function value: 141.3749914750181
Iterations: 20
Function evaluations: 166
Gradient evaluations: 20
Iteration: 1, Func. Count: 10, Neg. LLF: 229.34278587461432
Iteration: 2, Func. Count: 20, Neg. LLF: 201.89538116330246
Iteration: 3, Func. Count: 30, Neg. LLF: 242.7004878627546
Iteration: 4, Func. Count: 40, Neg. LLF: 140.8527381885954
Iteration: 5, Func. Count: 49, Neg. LLF: 140.55038732172156
Iteration: 6, Func. Count: 58, Neg. LLF: 140.1510391849804
Iteration: 7, Func. Count: 67, Neg. LLF: 140.14132677235528
Iteration: 8, Func. Count: 76, Neg. LLF: 140.13878923631958
Iteration: 9, Func. Count: 85, Neg. LLF: 140.13817454371966
Iteration: 10, Func. Count: 94, Neg. LLF: 140.1380971571098
Iteration: 11, Func. Count: 103, Neg. LLF: 140.1380542071153
Iteration: 12, Func. Count: 112, Neg. LLF: 140.13804307290914
Iteration: 13, Func. Count: 121, Neg. LLF: 140.13804188223637
Iteration: 14, Func. Count: 129, Neg. LLF: 140.13804187914832
Optimization terminated successfully (Exit mode 0)
Current function value: 140.13804188223637
Iterations: 14
Function evaluations: 129
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 223.4353316949052
Iteration: 2, Func. Count: 22, Neg. LLF: 191.6141611430103
Iteration: 3, Func. Count: 33, Neg. LLF: 229.1873414327965
Iteration: 4, Func. Count: 44, Neg. LLF: 141.10465601318592
Iteration: 5, Func. Count: 54, Neg. LLF: 141.06754680504437
Iteration: 6, Func. Count: 65, Neg. LLF: 158.0557234408645
Iteration: 7, Func. Count: 76, Neg. LLF: 140.99324666862336
Iteration: 8, Func. Count: 87, Neg. LLF: 140.49188298579023
Iteration: 9, Func. Count: 98, Neg. LLF: 140.26042536106405
Iteration: 10, Func. Count: 108, Neg. LLF: 140.20066096490024
Iteration: 11, Func. Count: 118, Neg. LLF: 140.16224522679897
Iteration: 12, Func. Count: 128, Neg. LLF: 140.1405190053527
Iteration: 13, Func. Count: 138, Neg. LLF: 140.13819414906695
Iteration: 14, Func. Count: 148, Neg. LLF: 140.13804631092523
Iteration: 15, Func. Count: 158, Neg. LLF: 140.1380431854578
Iteration: 16, Func. Count: 168, Neg. LLF: 140.1380423704643
Optimization terminated successfully (Exit mode 0)
Current function value: 140.1380423704643
Iterations: 16
Function evaluations: 168
Gradient evaluations: 16
Iteration: 1, Func. Count: 8, Neg. LLF: 158.35700437861365
Iteration: 2, Func. Count: 17, Neg. LLF: 152.71947471868205
Iteration: 3, Func. Count: 25, Neg. LLF: 192.72008373040677
Iteration: 4, Func. Count: 33, Neg. LLF: 143.90589275832707
Iteration: 5, Func. Count: 40, Neg. LLF: 142.9814286479052
Iteration: 6, Func. Count: 47, Neg. LLF: 142.33077177192564
Iteration: 7, Func. Count: 54, Neg. LLF: 141.6440281447978
Iteration: 8, Func. Count: 61, Neg. LLF: 141.58519189225834
Iteration: 9, Func. Count: 68, Neg. LLF: 141.56805612204084
Iteration: 10, Func. Count: 75, Neg. LLF: 141.56687246836685
Iteration: 11, Func. Count: 82, Neg. LLF: 141.56469181702727
Iteration: 12, Func. Count: 89, Neg. LLF: 141.56456015865996
Iteration: 13, Func. Count: 96, Neg. LLF: 141.56452592960414
Iteration: 14, Func. Count: 103, Neg. LLF: 141.56448588112855
Iteration: 15, Func. Count: 110, Neg. LLF: 141.5644269877579
Iteration: 16, Func. Count: 117, Neg. LLF: 141.5643923326841
Iteration: 17, Func. Count: 124, Neg. LLF: 141.56438390677874
Iteration: 18, Func. Count: 131, Neg. LLF: 141.5643833344912
Optimization terminated successfully (Exit mode 0)
Current function value: 141.5643833344912
Iterations: 18
Function evaluations: 131
Gradient evaluations: 18
Iteration: 1, Func. Count: 9, Neg. LLF: 175.27483080189134
Iteration: 2, Func. Count: 18, Neg. LLF: 146.99356905185422
Iteration: 3, Func. Count: 27, Neg. LLF: 143.73727642786955
Iteration: 4, Func. Count: 36, Neg. LLF: 141.89309422892808
Iteration: 5, Func. Count: 44, Neg. LLF: 141.6329161130244
Iteration: 6, Func. Count: 52, Neg. LLF: 141.6302994196182
Iteration: 7, Func. Count: 60, Neg. LLF: 141.62709334745668
Iteration: 8, Func. Count: 68, Neg. LLF: 141.62672806503232
Iteration: 9, Func. Count: 76, Neg. LLF: 141.62647065021972
Iteration: 10, Func. Count: 84, Neg. LLF: 141.62618781062966
Iteration: 11, Func. Count: 92, Neg. LLF: 141.62610217904458
Iteration: 12, Func. Count: 100, Neg. LLF: 141.6260778868728
Iteration: 13, Func. Count: 108, Neg. LLF: 141.62607681239746
Iteration: 14, Func. Count: 115, Neg. LLF: 141.62607681065032
Optimization terminated successfully (Exit mode 0)
Current function value: 141.62607681239746
Iterations: 14
Function evaluations: 115
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 226.81121899784034
Iteration: 2, Func. Count: 20, Neg. LLF: 195.52106343735323
Iteration: 3, Func. Count: 30, Neg. LLF: 271.75313432066264
Iteration: 4, Func. Count: 40, Neg. LLF: 141.79488917027743
Iteration: 5, Func. Count: 49, Neg. LLF: 143.78331450810157
Iteration: 6, Func. Count: 59, Neg. LLF: 141.72738919202973
Iteration: 7, Func. Count: 69, Neg. LLF: 141.46929736416223
Iteration: 8, Func. Count: 78, Neg. LLF: 141.44681389515162
Iteration: 9, Func. Count: 87, Neg. LLF: 141.44032437804023
Iteration: 10, Func. Count: 97, Neg. LLF: 141.39462487444243
Iteration: 11, Func. Count: 106, Neg. LLF: 141.381691728001
Iteration: 12, Func. Count: 115, Neg. LLF: 141.3775642091726
Iteration: 13, Func. Count: 124, Neg. LLF: 141.37638049148123
Iteration: 14, Func. Count: 133, Neg. LLF: 141.37572613305093
Iteration: 15, Func. Count: 142, Neg. LLF: 141.37518024168423
Iteration: 16, Func. Count: 151, Neg. LLF: 141.37503766155373
Iteration: 17, Func. Count: 160, Neg. LLF: 141.37501296202728
Iteration: 18, Func. Count: 169, Neg. LLF: 141.37500185854037
Iteration: 19, Func. Count: 178, Neg. LLF: 141.3749938142345
Iteration: 20, Func. Count: 187, Neg. LLF: 141.374991471684
Iteration: 21, Func. Count: 195, Neg. LLF: 141.37499147163567
Optimization terminated successfully (Exit mode 0)
Current function value: 141.374991471684
Iterations: 21
Function evaluations: 195
Gradient evaluations: 21
Iteration: 1, Func. Count: 11, Neg. LLF: 217.69478862088957
Iteration: 2, Func. Count: 22, Neg. LLF: 191.7439850539529
Iteration: 3, Func. Count: 33, Neg. LLF: 271.3818941992356
Iteration: 4, Func. Count: 44, Neg. LLF: 140.87990110150253
Iteration: 5, Func. Count: 54, Neg. LLF: 140.64516722026
Iteration: 6, Func. Count: 64, Neg. LLF: 140.24038871433885
Iteration: 7, Func. Count: 74, Neg. LLF: 140.16259959832374
Iteration: 8, Func. Count: 84, Neg. LLF: 140.14883517267936
Iteration: 9, Func. Count: 94, Neg. LLF: 140.1448256537631
Iteration: 10, Func. Count: 104, Neg. LLF: 140.1405562218627
Iteration: 11, Func. Count: 114, Neg. LLF: 140.13857809642187
Iteration: 12, Func. Count: 124, Neg. LLF: 140.1382216564784
Iteration: 13, Func. Count: 134, Neg. LLF: 140.13808287496812
Iteration: 14, Func. Count: 144, Neg. LLF: 140.13804931638512
Iteration: 15, Func. Count: 154, Neg. LLF: 140.13804327929685
Iteration: 16, Func. Count: 164, Neg. LLF: 140.13804228343773
Optimization terminated successfully (Exit mode 0)
Current function value: 140.13804228343773
Iterations: 16
Function evaluations: 164
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 212.79238228628475
Iteration: 2, Func. Count: 24, Neg. LLF: 187.11850237188636
Iteration: 3, Func. Count: 37, Neg. LLF: 311.5676769904706
Iteration: 4, Func. Count: 49, Neg. LLF: 141.2565572577433
Iteration: 5, Func. Count: 60, Neg. LLF: 154.33214344647072
Iteration: 6, Func. Count: 72, Neg. LLF: 140.8946388173299
Iteration: 7, Func. Count: 83, Neg. LLF: 141.07502770859963
Iteration: 8, Func. Count: 95, Neg. LLF: 140.60716902887006
Iteration: 9, Func. Count: 106, Neg. LLF: 140.4994592158628
Iteration: 10, Func. Count: 117, Neg. LLF: 140.42337131237505
Iteration: 11, Func. Count: 128, Neg. LLF: 140.2766501628518
Iteration: 12, Func. Count: 139, Neg. LLF: 140.21577788260146
Iteration: 13, Func. Count: 150, Neg. LLF: 140.17450083680998
Iteration: 14, Func. Count: 161, Neg. LLF: 140.15072719954057
Iteration: 15, Func. Count: 172, Neg. LLF: 140.13861271784157
Iteration: 16, Func. Count: 183, Neg. LLF: 140.1381384276516
Iteration: 17, Func. Count: 194, Neg. LLF: 140.13805374018293
Iteration: 18, Func. Count: 205, Neg. LLF: 140.13804380201066
Iteration: 19, Func. Count: 216, Neg. LLF: 140.1380418343539
Iteration: 20, Func. Count: 226, Neg. LLF: 140.13804184704097
Optimization terminated successfully (Exit mode 0)
Current function value: 140.1380418343539
Iterations: 20
Function evaluations: 226
Gradient evaluations: 20
Iteration: 1, Func. Count: 5, Neg. LLF: 159.90968432802737
Iteration: 2, Func. Count: 9, Neg. LLF: 160.43093152062147
Iteration: 3, Func. Count: 14, Neg. LLF: 159.74642043516025
Iteration: 4, Func. Count: 18, Neg. LLF: 159.6767440331988
Iteration: 5, Func. Count: 22, Neg. LLF: 159.52861601688278
Iteration: 6, Func. Count: 26, Neg. LLF: 159.5163259235358
Iteration: 7, Func. Count: 30, Neg. LLF: 159.50306117017087
Iteration: 8, Func. Count: 34, Neg. LLF: 159.5017327112225
Iteration: 9, Func. Count: 38, Neg. LLF: 159.50149739146465
Iteration: 10, Func. Count: 42, Neg. LLF: 159.5014913715706
Iteration: 11, Func. Count: 45, Neg. LLF: 159.50149137158473
Optimization terminated successfully (Exit mode 0)
Current function value: 159.5014913715706
Iterations: 11
Function evaluations: 45
Gradient evaluations: 11
Iteration: 1, Func. Count: 6, Neg. LLF: 319.8376840257131
Iteration: 2, Func. Count: 12, Neg. LLF: 160.12213170088123
Iteration: 3, Func. Count: 18, Neg. LLF: 146.91069794130036
Iteration: 4, Func. Count: 24, Neg. LLF: 141.25911985299217
Iteration: 5, Func. Count: 29, Neg. LLF: 141.0622531755825
Iteration: 6, Func. Count: 34, Neg. LLF: 141.03465057423907
Iteration: 7, Func. Count: 39, Neg. LLF: 141.0312757905412
Iteration: 8, Func. Count: 44, Neg. LLF: 141.03119492995202
Iteration: 9, Func. Count: 49, Neg. LLF: 141.03119073682524
Iteration: 10, Func. Count: 53, Neg. LLF: 141.0311906161176
Optimization terminated successfully (Exit mode 0)
Current function value: 141.03119073682524
Iterations: 10
Function evaluations: 53
Gradient evaluations: 10
Iteration: 1, Func. Count: 7, Neg. LLF: 302.41889528697357
Iteration: 2, Func. Count: 14, Neg. LLF: 165.51473064423072
Iteration: 3, Func. Count: 21, Neg. LLF: 142.43268712552563
Iteration: 4, Func. Count: 27, Neg. LLF: 142.8372124644054
Iteration: 5, Func. Count: 34, Neg. LLF: 141.0540481968006
Iteration: 6, Func. Count: 40, Neg. LLF: 141.03507528372688
Iteration: 7, Func. Count: 46, Neg. LLF: 141.03141932171627
Iteration: 8, Func. Count: 52, Neg. LLF: 141.03120698319015
Iteration: 9, Func. Count: 58, Neg. LLF: 141.03119065769366
Iteration: 10, Func. Count: 63, Neg. LLF: 141.03119063092117
Optimization terminated successfully (Exit mode 0)
Current function value: 141.03119065769366
Iterations: 10
Function evaluations: 63
Gradient evaluations: 10
Iteration: 1, Func. Count: 8, Neg. LLF: 279.9223409505097
Iteration: 2, Func. Count: 16, Neg. LLF: 223.89823289221252
Iteration: 3, Func. Count: 25, Neg. LLF: 141.68971783064364
Iteration: 4, Func. Count: 32, Neg. LLF: 230.31335386775817
Iteration: 5, Func. Count: 40, Neg. LLF: 141.1061683821844
Iteration: 6, Func. Count: 47, Neg. LLF: 141.06698058219501
Iteration: 7, Func. Count: 54, Neg. LLF: 141.03479723560392
Iteration: 8, Func. Count: 61, Neg. LLF: 141.03170482483404
Iteration: 9, Func. Count: 68, Neg. LLF: 141.03119622503442
Iteration: 10, Func. Count: 75, Neg. LLF: 141.03119055020187
Iteration: 11, Func. Count: 81, Neg. LLF: 141.03119054797753
Optimization terminated successfully (Exit mode 0)
Current function value: 141.03119055020187
Iterations: 11
Function evaluations: 81
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 264.717546275736
Iteration: 2, Func. Count: 18, Neg. LLF: 215.52160551695664
Iteration: 3, Func. Count: 28, Neg. LLF: 142.03602261081056
Iteration: 4, Func. Count: 36, Neg. LLF: 145.15000623389693
Iteration: 5, Func. Count: 45, Neg. LLF: 141.23930370629296
Iteration: 6, Func. Count: 53, Neg. LLF: 141.10372965682012
Iteration: 7, Func. Count: 61, Neg. LLF: 141.06358796054545
Iteration: 8, Func. Count: 69, Neg. LLF: 141.03474613862736
Iteration: 9, Func. Count: 77, Neg. LLF: 141.03202751145014
Iteration: 10, Func. Count: 85, Neg. LLF: 141.03120141008924
Iteration: 11, Func. Count: 93, Neg. LLF: 141.0311908054524
Iteration: 12, Func. Count: 100, Neg. LLF: 141.0311908340646
Optimization terminated successfully (Exit mode 0)
Current function value: 141.0311908054524
Iterations: 12
Function evaluations: 100
Gradient evaluations: 12
Iteration: 1, Func. Count: 6, Neg. LLF: 159.77970861577265
Iteration: 2, Func. Count: 11, Neg. LLF: 159.79057407848532
Iteration: 3, Func. Count: 17, Neg. LLF: 159.71339458912956
Iteration: 4, Func. Count: 22, Neg. LLF: 159.68131030327189
Iteration: 5, Func. Count: 27, Neg. LLF: 159.66630042071992
Iteration: 6, Func. Count: 32, Neg. LLF: 159.6111737855221
Iteration: 7, Func. Count: 37, Neg. LLF: 159.57064432510998
Iteration: 8, Func. Count: 42, Neg. LLF: 159.54454962235752
Iteration: 9, Func. Count: 47, Neg. LLF: 159.49707547946164
Iteration: 10, Func. Count: 52, Neg. LLF: 159.48499172430323
Iteration: 11, Func. Count: 57, Neg. LLF: 159.47795930205186
Iteration: 12, Func. Count: 62, Neg. LLF: 159.47689980969596
Iteration: 13, Func. Count: 67, Neg. LLF: 159.476792482088
Iteration: 14, Func. Count: 72, Neg. LLF: 159.47678698217055
Iteration: 15, Func. Count: 76, Neg. LLF: 159.4767869821698
Optimization terminated successfully (Exit mode 0)
Current function value: 159.47678698217055
Iterations: 15
Function evaluations: 76
Gradient evaluations: 15
Iteration: 1, Func. Count: 7, Neg. LLF: 331.5693285542987
Iteration: 2, Func. Count: 14, Neg. LLF: 148.78155229692845
Iteration: 3, Func. Count: 21, Neg. LLF: 144.2647718074484
Iteration: 4, Func. Count: 28, Neg. LLF: 141.59365390811413
Iteration: 5, Func. Count: 34, Neg. LLF: 141.15968909049198
Iteration: 6, Func. Count: 40, Neg. LLF: 141.0347496792727
Iteration: 7, Func. Count: 46, Neg. LLF: 141.01597896418488
Iteration: 8, Func. Count: 52, Neg. LLF: 141.00573936511717
Iteration: 9, Func. Count: 58, Neg. LLF: 141.00538428644535
Iteration: 10, Func. Count: 64, Neg. LLF: 141.00537994307751
Iteration: 11, Func. Count: 69, Neg. LLF: 141.005379830675
Optimization terminated successfully (Exit mode 0)
Current function value: 141.00537994307751
Iterations: 11
Function evaluations: 69
Gradient evaluations: 11
Iteration: 1, Func. Count: 8, Neg. LLF: 320.4617297108002
Iteration: 2, Func. Count: 16, Neg. LLF: 165.24268951990192
Iteration: 3, Func. Count: 24, Neg. LLF: 147.8921317252125
Iteration: 4, Func. Count: 32, Neg. LLF: 141.4397321945861
Iteration: 5, Func. Count: 39, Neg. LLF: 141.176074626136
Iteration: 6, Func. Count: 46, Neg. LLF: 141.06546590192718
Iteration: 7, Func. Count: 53, Neg. LLF: 141.0105347148283
Iteration: 8, Func. Count: 60, Neg. LLF: 141.00733382089123
Iteration: 9, Func. Count: 67, Neg. LLF: 141.00545325912557
Iteration: 10, Func. Count: 74, Neg. LLF: 141.00538207930018
Iteration: 11, Func. Count: 81, Neg. LLF: 141.005379954307
Iteration: 12, Func. Count: 87, Neg. LLF: 141.0053799311437
Optimization terminated successfully (Exit mode 0)
Current function value: 141.005379954307
Iterations: 12
Function evaluations: 87
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 309.9440652231513
Iteration: 2, Func. Count: 18, Neg. LLF: 170.64001191160816
Iteration: 3, Func. Count: 27, Neg. LLF: 142.32178756114408
Iteration: 4, Func. Count: 35, Neg. LLF: 146.10834976758989
Iteration: 5, Func. Count: 44, Neg. LLF: 142.0255066211312
Iteration: 6, Func. Count: 53, Neg. LLF: 141.19532837183195
Iteration: 7, Func. Count: 61, Neg. LLF: 141.05196387007678
Iteration: 8, Func. Count: 69, Neg. LLF: 141.01073821612292
Iteration: 9, Func. Count: 77, Neg. LLF: 141.00548914968957
Iteration: 10, Func. Count: 85, Neg. LLF: 141.00538110054214
Iteration: 11, Func. Count: 93, Neg. LLF: 141.00537995103602
Iteration: 12, Func. Count: 100, Neg. LLF: 141.0053799521582
Optimization terminated successfully (Exit mode 0)
Current function value: 141.00537995103602
Iterations: 12
Function evaluations: 100
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 161.22121112583707
Iteration: 2, Func. Count: 20, Neg. LLF: 165.07664483611208
Iteration: 3, Func. Count: 30, Neg. LLF: 143.6591358997453
Iteration: 4, Func. Count: 39, Neg. LLF: 142.03084350883125
Iteration: 5, Func. Count: 48, Neg. LLF: 142.10010365098498
Iteration: 6, Func. Count: 58, Neg. LLF: 141.1789127299177
Iteration: 7, Func. Count: 67, Neg. LLF: 141.0259999013184
Iteration: 8, Func. Count: 76, Neg. LLF: 141.00926763303949
Iteration: 9, Func. Count: 85, Neg. LLF: 141.00546337248443
Iteration: 10, Func. Count: 94, Neg. LLF: 141.00539564174503
Iteration: 11, Func. Count: 103, Neg. LLF: 141.00538088859003
Iteration: 12, Func. Count: 112, Neg. LLF: 141.00537999967128
Optimization terminated successfully (Exit mode 0)
Current function value: 141.00537999967128
Iterations: 12
Function evaluations: 112
Gradient evaluations: 12
Iteration: 1, Func. Count: 7, Neg. LLF: 179.4641689414663
Iteration: 2, Func. Count: 15, Neg. LLF: 176.49134478483677
Iteration: 3, Func. Count: 23, Neg. LLF: 158.63362620758795
Iteration: 4, Func. Count: 30, Neg. LLF: 143.7848445162949
Iteration: 5, Func. Count: 37, Neg. LLF: 143.17012180343
Iteration: 6, Func. Count: 43, Neg. LLF: 141.98011677339724
Iteration: 7, Func. Count: 49, Neg. LLF: 141.9225879582076
Iteration: 8, Func. Count: 56, Neg. LLF: 141.6996521430897
Iteration: 9, Func. Count: 62, Neg. LLF: 141.63096292483743
Iteration: 10, Func. Count: 68, Neg. LLF: 141.62846361575862
Iteration: 11, Func. Count: 74, Neg. LLF: 141.6282773241722
Iteration: 12, Func. Count: 80, Neg. LLF: 141.6282714353294
Iteration: 13, Func. Count: 86, Neg. LLF: 141.6282686041325
Iteration: 14, Func. Count: 92, Neg. LLF: 141.6282648063414
Iteration: 15, Func. Count: 97, Neg. LLF: 141.6282647983198
Optimization terminated successfully (Exit mode 0)
Current function value: 141.6282648063414
Iterations: 15
Function evaluations: 97
Gradient evaluations: 15
Iteration: 1, Func. Count: 8, Neg. LLF: 267.77703367375705
Iteration: 2, Func. Count: 16, Neg. LLF: 250.62859806966895
Iteration: 3, Func. Count: 24, Neg. LLF: 231.29822150479643
Iteration: 4, Func. Count: 32, Neg. LLF: 141.05652640061388
Iteration: 5, Func. Count: 40, Neg. LLF: 139.34771312506527
Iteration: 6, Func. Count: 47, Neg. LLF: 219.80685646330937
Iteration: 7, Func. Count: 55, Neg. LLF: 139.23380086776095
Iteration: 8, Func. Count: 62, Neg. LLF: 139.15046661678306
Iteration: 9, Func. Count: 69, Neg. LLF: 139.14272254621244
Iteration: 10, Func. Count: 76, Neg. LLF: 139.1414787785162
Iteration: 11, Func. Count: 83, Neg. LLF: 139.14118765918215
Iteration: 12, Func. Count: 89, Neg. LLF: 139.14118759138492
Optimization terminated successfully (Exit mode 0)
Current function value: 139.14118765918215
Iterations: 12
Function evaluations: 89
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 257.61298454700517
Iteration: 2, Func. Count: 18, Neg. LLF: 308.19686720455763
Iteration: 3, Func. Count: 27, Neg. LLF: 147.06016091829363
Iteration: 4, Func. Count: 36, Neg. LLF: 141.48561744759692
Iteration: 5, Func. Count: 45, Neg. LLF: 139.40531609389657
Iteration: 6, Func. Count: 53, Neg. LLF: 140.7411638092901
Iteration: 7, Func. Count: 62, Neg. LLF: 139.23010621308146
Iteration: 8, Func. Count: 70, Neg. LLF: 139.162731517263
Iteration: 9, Func. Count: 78, Neg. LLF: 139.14559342718644
Iteration: 10, Func. Count: 86, Neg. LLF: 139.14195482330277
Iteration: 11, Func. Count: 94, Neg. LLF: 139.14132869229644
Iteration: 12, Func. Count: 102, Neg. LLF: 139.14121818239818
Iteration: 13, Func. Count: 110, Neg. LLF: 139.141187351086
Iteration: 14, Func. Count: 117, Neg. LLF: 139.14118736392146
Optimization terminated successfully (Exit mode 0)
Current function value: 139.141187351086
Iterations: 14
Function evaluations: 117
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 249.77210923508846
Iteration: 2, Func. Count: 20, Neg. LLF: 280.5622384485729
Iteration: 3, Func. Count: 30, Neg. LLF: 144.32773212390606
Iteration: 4, Func. Count: 40, Neg. LLF: 140.37898657915488
Iteration: 5, Func. Count: 49, Neg. LLF: 140.00862894306326
Iteration: 6, Func. Count: 59, Neg. LLF: 140.45072157538573
Iteration: 7, Func. Count: 69, Neg. LLF: 139.21300774552697
Iteration: 8, Func. Count: 78, Neg. LLF: 139.16190653065726
Iteration: 9, Func. Count: 87, Neg. LLF: 139.1463469995841
Iteration: 10, Func. Count: 96, Neg. LLF: 139.14250588973582
Iteration: 11, Func. Count: 105, Neg. LLF: 139.1415082011552
Iteration: 12, Func. Count: 114, Neg. LLF: 139.14125080543576
Iteration: 13, Func. Count: 123, Neg. LLF: 139.14119429377405
Iteration: 14, Func. Count: 132, Neg. LLF: 139.14118730862216
Iteration: 15, Func. Count: 140, Neg. LLF: 139.1411873029399
Optimization terminated successfully (Exit mode 0)
Current function value: 139.14118730862216
Iterations: 15
Function evaluations: 140
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 245.9667479427933
Iteration: 2, Func. Count: 22, Neg. LLF: 262.046223365353
Iteration: 3, Func. Count: 33, Neg. LLF: 143.5040681980016
Iteration: 4, Func. Count: 44, Neg. LLF: 140.99128658183992
Iteration: 5, Func. Count: 54, Neg. LLF: 139.73982677994778
Iteration: 6, Func. Count: 64, Neg. LLF: 139.5266875748341
Iteration: 7, Func. Count: 74, Neg. LLF: 139.2716031788852
Iteration: 8, Func. Count: 84, Neg. LLF: 139.1873771483642
Iteration: 9, Func. Count: 94, Neg. LLF: 139.17275911531803
Iteration: 10, Func. Count: 104, Neg. LLF: 139.1490979043825
Iteration: 11, Func. Count: 114, Neg. LLF: 139.14620332345413
Iteration: 12, Func. Count: 124, Neg. LLF: 139.1422005704924
Iteration: 13, Func. Count: 134, Neg. LLF: 139.14123400968157
Iteration: 14, Func. Count: 144, Neg. LLF: 139.14118839742378
Iteration: 15, Func. Count: 154, Neg. LLF: 139.14118707212862
Iteration: 16, Func. Count: 163, Neg. LLF: 139.14118713094203
Optimization terminated successfully (Exit mode 0)
Current function value: 139.14118707212862
Iterations: 16
Function evaluations: 163
Gradient evaluations: 16
Iteration: 1, Func. Count: 8, Neg. LLF: 176.73439100871354
Iteration: 2, Func. Count: 17, Neg. LLF: 167.95951475532988
Iteration: 3, Func. Count: 26, Neg. LLF: 219.14694240659426
Iteration: 4, Func. Count: 34, Neg. LLF: 140.93546302848222
Iteration: 5, Func. Count: 41, Neg. LLF: 140.2450139743614
Iteration: 6, Func. Count: 48, Neg. LLF: 139.71924450919374
Iteration: 7, Func. Count: 55, Neg. LLF: 138.53442608647626
Iteration: 8, Func. Count: 62, Neg. LLF: 137.8196812600001
Iteration: 9, Func. Count: 69, Neg. LLF: 138.6975766167468
Iteration: 10, Func. Count: 77, Neg. LLF: 137.52391415654787
Iteration: 11, Func. Count: 84, Neg. LLF: 137.50845367389272
Iteration: 12, Func. Count: 91, Neg. LLF: 137.50556104126224
Iteration: 13, Func. Count: 98, Neg. LLF: 137.50094889789398
Iteration: 14, Func. Count: 105, Neg. LLF: 137.50088888126567
Iteration: 15, Func. Count: 112, Neg. LLF: 137.5008452852073
Iteration: 16, Func. Count: 119, Neg. LLF: 137.50082459212393
Iteration: 17, Func. Count: 126, Neg. LLF: 137.5008209589547
Iteration: 18, Func. Count: 132, Neg. LLF: 137.50082095064977
Optimization terminated successfully (Exit mode 0)
Current function value: 137.5008209589547
Iterations: 18
Function evaluations: 132
Gradient evaluations: 18
Iteration: 1, Func. Count: 9, Neg. LLF: 266.87253375722923
Iteration: 2, Func. Count: 18, Neg. LLF: 173.94966212674888
Iteration: 3, Func. Count: 27, Neg. LLF: 147.7977558185571
Iteration: 4, Func. Count: 36, Neg. LLF: 141.020810935263
Iteration: 5, Func. Count: 45, Neg. LLF: 137.9593876108848
Iteration: 6, Func. Count: 53, Neg. LLF: 137.60272389431526
Iteration: 7, Func. Count: 61, Neg. LLF: 137.50872027786957
Iteration: 8, Func. Count: 69, Neg. LLF: 137.48625675784928
Iteration: 9, Func. Count: 77, Neg. LLF: 137.48211355774103
Iteration: 10, Func. Count: 85, Neg. LLF: 137.47960672249684
Iteration: 11, Func. Count: 93, Neg. LLF: 137.4791008917363
Iteration: 12, Func. Count: 101, Neg. LLF: 137.4789918164766
Iteration: 13, Func. Count: 108, Neg. LLF: 137.47899179315257
Optimization terminated successfully (Exit mode 0)
Current function value: 137.4789918164766
Iterations: 13
Function evaluations: 108
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 255.9629901429202
Iteration: 2, Func. Count: 20, Neg. LLF: 212.69425591229904
Iteration: 3, Func. Count: 30, Neg. LLF: 139.69537117448067
Iteration: 4, Func. Count: 39, Neg. LLF: 139.04878172785556
Iteration: 5, Func. Count: 49, Neg. LLF: 138.32192783240558
Iteration: 6, Func. Count: 59, Neg. LLF: 137.6391196338252
Iteration: 7, Func. Count: 68, Neg. LLF: 137.55377466981207
Iteration: 8, Func. Count: 77, Neg. LLF: 137.49258581362238
Iteration: 9, Func. Count: 86, Neg. LLF: 137.48249129273992
Iteration: 10, Func. Count: 95, Neg. LLF: 137.4803589412564
Iteration: 11, Func. Count: 104, Neg. LLF: 137.47915962145487
Iteration: 12, Func. Count: 113, Neg. LLF: 137.47902779752542
Iteration: 13, Func. Count: 122, Neg. LLF: 137.4789958234403
Iteration: 14, Func. Count: 131, Neg. LLF: 137.47899252760695
Iteration: 15, Func. Count: 140, Neg. LLF: 137.47899173783233
Optimization terminated successfully (Exit mode 0)
Current function value: 137.47899173783233
Iterations: 15
Function evaluations: 140
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 247.90209369622386
Iteration: 2, Func. Count: 22, Neg. LLF: 208.3185616193586
Iteration: 3, Func. Count: 33, Neg. LLF: 138.6199843964504
Iteration: 4, Func. Count: 43, Neg. LLF: 139.04565585336206
Iteration: 5, Func. Count: 54, Neg. LLF: 144.0500307540519
Iteration: 6, Func. Count: 65, Neg. LLF: 137.48941656133175
Iteration: 7, Func. Count: 75, Neg. LLF: 137.47281653998127
Iteration: 8, Func. Count: 86, Neg. LLF: 137.40819676363736
Iteration: 9, Func. Count: 96, Neg. LLF: 137.39980268301494
Iteration: 10, Func. Count: 106, Neg. LLF: 137.39741684136203
Iteration: 11, Func. Count: 116, Neg. LLF: 137.39641036782223
Iteration: 12, Func. Count: 126, Neg. LLF: 137.39632857930397
Iteration: 13, Func. Count: 136, Neg. LLF: 137.39631593281877
Iteration: 14, Func. Count: 146, Neg. LLF: 137.39631251880974
Iteration: 15, Func. Count: 156, Neg. LLF: 137.3963119022661
Optimization terminated successfully (Exit mode 0)
Current function value: 137.3963119022661
Iterations: 15
Function evaluations: 156
Gradient evaluations: 15
Iteration: 1, Func. Count: 12, Neg. LLF: 243.6015693951306
Iteration: 2, Func. Count: 24, Neg. LLF: 222.14500993897173
Iteration: 3, Func. Count: 36, Neg. LLF: 139.37586652043723
Iteration: 4, Func. Count: 47, Neg. LLF: 141.48459362226066
Iteration: 5, Func. Count: 59, Neg. LLF: 139.18413915646371
Iteration: 6, Func. Count: 71, Neg. LLF: 137.45123969805059
Iteration: 7, Func. Count: 82, Neg. LLF: 137.47841036283214
Iteration: 8, Func. Count: 94, Neg. LLF: 137.4048523581489
Iteration: 9, Func. Count: 105, Neg. LLF: 137.3972596779098
Iteration: 10, Func. Count: 116, Neg. LLF: 137.39653991667018
Iteration: 11, Func. Count: 127, Neg. LLF: 137.3963390090263
Iteration: 12, Func. Count: 138, Neg. LLF: 137.39632283802572
Iteration: 13, Func. Count: 149, Neg. LLF: 137.3963121248601
Iteration: 14, Func. Count: 159, Neg. LLF: 137.39631217210936
Optimization terminated successfully (Exit mode 0)
Current function value: 137.3963121248601
Iterations: 14
Function evaluations: 159
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 157.97770280530534
Iteration: 2, Func. Count: 19, Neg. LLF: 150.11734652507948
Iteration: 3, Func. Count: 28, Neg. LLF: 159.6786721729245
Iteration: 4, Func. Count: 37, Neg. LLF: 143.7913425439991
Iteration: 5, Func. Count: 45, Neg. LLF: 142.98212887761267
Iteration: 6, Func. Count: 53, Neg. LLF: 138.46602167609953
Iteration: 7, Func. Count: 61, Neg. LLF: 1375732.682272949
Iteration: 8, Func. Count: 70, Neg. LLF: 141.50418926592374
Iteration: 9, Func. Count: 79, Neg. LLF: 137.8841608354377
Iteration: 10, Func. Count: 88, Neg. LLF: 137.5369878714498
Iteration: 11, Func. Count: 96, Neg. LLF: 137.5038046332034
Iteration: 12, Func. Count: 104, Neg. LLF: 137.502340564506
Iteration: 13, Func. Count: 112, Neg. LLF: 137.50109915798674
Iteration: 14, Func. Count: 120, Neg. LLF: 137.50091030989338
Iteration: 15, Func. Count: 128, Neg. LLF: 137.5008672456464
Iteration: 16, Func. Count: 136, Neg. LLF: 137.50082156172343
Iteration: 17, Func. Count: 144, Neg. LLF: 137.50082078824047
Optimization terminated successfully (Exit mode 0)
Current function value: 137.50082078824047
Iterations: 17
Function evaluations: 144
Gradient evaluations: 17
Iteration: 1, Func. Count: 10, Neg. LLF: 264.2779926710769
Iteration: 2, Func. Count: 20, Neg. LLF: 173.1383553162492
Iteration: 3, Func. Count: 30, Neg. LLF: 145.3047087794354
Iteration: 4, Func. Count: 40, Neg. LLF: 141.16177866052993
Iteration: 5, Func. Count: 50, Neg. LLF: 137.84218427327374
Iteration: 6, Func. Count: 59, Neg. LLF: 137.5826070282463
Iteration: 7, Func. Count: 68, Neg. LLF: 137.50156946301135
Iteration: 8, Func. Count: 77, Neg. LLF: 137.48446993168906
Iteration: 9, Func. Count: 86, Neg. LLF: 137.48048842451686
Iteration: 10, Func. Count: 95, Neg. LLF: 137.4794239550217
Iteration: 11, Func. Count: 104, Neg. LLF: 137.47901910232056
Iteration: 12, Func. Count: 113, Neg. LLF: 137.47899274489802
Iteration: 13, Func. Count: 122, Neg. LLF: 137.47899168534735
Iteration: 14, Func. Count: 130, Neg. LLF: 137.47899166206443
Optimization terminated successfully (Exit mode 0)
Current function value: 137.47899168534735
Iterations: 14
Function evaluations: 130
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 252.02270643367876
Iteration: 2, Func. Count: 22, Neg. LLF: 201.3812450622889
Iteration: 3, Func. Count: 33, Neg. LLF: 139.2543749368167
Iteration: 4, Func. Count: 43, Neg. LLF: 138.81318166041308
Iteration: 5, Func. Count: 54, Neg. LLF: 140.68031325162318
Iteration: 6, Func. Count: 65, Neg. LLF: 137.58255547067927
Iteration: 7, Func. Count: 75, Neg. LLF: 137.5354468605716
Iteration: 8, Func. Count: 85, Neg. LLF: 137.48979756305943
Iteration: 9, Func. Count: 95, Neg. LLF: 137.48283003245672
Iteration: 10, Func. Count: 105, Neg. LLF: 137.4802867008564
Iteration: 11, Func. Count: 115, Neg. LLF: 137.47900941888847
Iteration: 12, Func. Count: 125, Neg. LLF: 137.47899370990467
Iteration: 13, Func. Count: 135, Neg. LLF: 137.47899218417297
Iteration: 14, Func. Count: 144, Neg. LLF: 137.47899218940168
Optimization terminated successfully (Exit mode 0)
Current function value: 137.47899218417297
Iterations: 14
Function evaluations: 144
Gradient evaluations: 14
Iteration: 1, Func. Count: 12, Neg. LLF: 243.00275191164704
Iteration: 2, Func. Count: 24, Neg. LLF: 210.9274079527623
Iteration: 3, Func. Count: 36, Neg. LLF: 138.9019835521131
Iteration: 4, Func. Count: 47, Neg. LLF: 141.27378440335264
Iteration: 5, Func. Count: 59, Neg. LLF: 140.91822732045316
Iteration: 6, Func. Count: 71, Neg. LLF: 137.46981878475705
Iteration: 7, Func. Count: 82, Neg. LLF: 137.46384961625313
Iteration: 8, Func. Count: 94, Neg. LLF: 137.40830510218134
Iteration: 9, Func. Count: 105, Neg. LLF: 137.40021870370694
Iteration: 10, Func. Count: 116, Neg. LLF: 137.3975055778374
Iteration: 11, Func. Count: 127, Neg. LLF: 137.39637522974346
Iteration: 12, Func. Count: 138, Neg. LLF: 137.39633226895623
Iteration: 13, Func. Count: 149, Neg. LLF: 137.39631518206207
Iteration: 14, Func. Count: 160, Neg. LLF: 137.39631219091157
Iteration: 15, Func. Count: 170, Neg. LLF: 137.39631216579025
Optimization terminated successfully (Exit mode 0)
Current function value: 137.39631219091157
Iterations: 15
Function evaluations: 170
Gradient evaluations: 15
Iteration: 1, Func. Count: 13, Neg. LLF: 238.20189188831353
Iteration: 2, Func. Count: 26, Neg. LLF: 220.21451108012883
Iteration: 3, Func. Count: 39, Neg. LLF: 146.91592031669194
Iteration: 4, Func. Count: 52, Neg. LLF: 138.44789796572599
Iteration: 5, Func. Count: 64, Neg. LLF: 138.3897122928901
Iteration: 6, Func. Count: 77, Neg. LLF: 137.76542863727045
Iteration: 7, Func. Count: 90, Neg. LLF: 137.42800581138184
Iteration: 8, Func. Count: 102, Neg. LLF: 137.40746373522907
Iteration: 9, Func. Count: 114, Neg. LLF: 137.4002391137525
Iteration: 10, Func. Count: 126, Neg. LLF: 137.39716033265498
Iteration: 11, Func. Count: 138, Neg. LLF: 137.39648061456526
Iteration: 12, Func. Count: 150, Neg. LLF: 137.3963323872598
Iteration: 13, Func. Count: 162, Neg. LLF: 137.39631760450862
Iteration: 14, Func. Count: 174, Neg. LLF: 137.39631270147135
Iteration: 15, Func. Count: 186, Neg. LLF: 137.39631197870307
Optimization terminated successfully (Exit mode 0)
Current function value: 137.39631197870307
Iterations: 15
Function evaluations: 186
Gradient evaluations: 15
Iteration: 1, Func. Count: 6, Neg. LLF: 147.76126855202256
Iteration: 2, Func. Count: 12, Neg. LLF: 146.6693841817815
Iteration: 3, Func. Count: 18, Neg. LLF: 145.62230345731206
Iteration: 4, Func. Count: 24, Neg. LLF: 144.24407539210452
Iteration: 5, Func. Count: 29, Neg. LLF: 142.58093957201754
Iteration: 6, Func. Count: 34, Neg. LLF: 140.9311496091
Iteration: 7, Func. Count: 39, Neg. LLF: 232.7601499379885
Iteration: 8, Func. Count: 45, Neg. LLF: 144.19111112451606
Iteration: 9, Func. Count: 51, Neg. LLF: 140.1112860040578
Iteration: 10, Func. Count: 57, Neg. LLF: 139.61089562126307
Iteration: 11, Func. Count: 62, Neg. LLF: 139.59321065224435
Iteration: 12, Func. Count: 67, Neg. LLF: 139.59087115731253
Iteration: 13, Func. Count: 72, Neg. LLF: 139.59051976302277
Iteration: 14, Func. Count: 77, Neg. LLF: 139.59048741261356
Iteration: 15, Func. Count: 82, Neg. LLF: 139.59048474270028
Iteration: 16, Func. Count: 86, Neg. LLF: 139.5904847283177
Optimization terminated successfully (Exit mode 0)
Current function value: 139.59048474270028
Iterations: 16
Function evaluations: 86
Gradient evaluations: 16
Iteration: 1, Func. Count: 7, Neg. LLF: 309.43633406930786
Iteration: 2, Func. Count: 14, Neg. LLF: 278.6618474395807
Iteration: 3, Func. Count: 22, Neg. LLF: 191.83175839232734
Iteration: 4, Func. Count: 29, Neg. LLF: 144.37165018372852
Iteration: 5, Func. Count: 36, Neg. LLF: 140.0438245174904
Iteration: 6, Func. Count: 42, Neg. LLF: 148.8589707809984
Iteration: 7, Func. Count: 49, Neg. LLF: 139.6210414159509
Iteration: 8, Func. Count: 55, Neg. LLF: 139.51652081093582
Iteration: 9, Func. Count: 61, Neg. LLF: 139.4771096837955
Iteration: 10, Func. Count: 67, Neg. LLF: 139.45719410716876
Iteration: 11, Func. Count: 73, Neg. LLF: 139.45293021887588
Iteration: 12, Func. Count: 79, Neg. LLF: 139.4525468980433
Iteration: 13, Func. Count: 85, Neg. LLF: 139.45252823158515
Iteration: 14, Func. Count: 91, Neg. LLF: 139.45252697296223
Iteration: 15, Func. Count: 96, Neg. LLF: 139.45252694827556
Optimization terminated successfully (Exit mode 0)
Current function value: 139.45252697296223
Iterations: 15
Function evaluations: 96
Gradient evaluations: 15
Iteration: 1, Func. Count: 8, Neg. LLF: 183.71546881455532
Iteration: 2, Func. Count: 16, Neg. LLF: 223.60688242972407
Iteration: 3, Func. Count: 24, Neg. LLF: 177.13468145186158
Iteration: 4, Func. Count: 32, Neg. LLF: 142.2463780259314
Iteration: 5, Func. Count: 40, Neg. LLF: 142.37876138690407
Iteration: 6, Func. Count: 48, Neg. LLF: 139.54765509506757
Iteration: 7, Func. Count: 55, Neg. LLF: 139.47572460963718
Iteration: 8, Func. Count: 62, Neg. LLF: 139.4536133333603
Iteration: 9, Func. Count: 69, Neg. LLF: 139.452804272893
Iteration: 10, Func. Count: 76, Neg. LLF: 139.45258113366984
Iteration: 11, Func. Count: 83, Neg. LLF: 139.4525317079821
Iteration: 12, Func. Count: 90, Neg. LLF: 139.45252701176628
Iteration: 13, Func. Count: 96, Neg. LLF: 139.4525269983527
Optimization terminated successfully (Exit mode 0)
Current function value: 139.45252701176628
Iterations: 13
Function evaluations: 96
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 166.52817293373798
Iteration: 2, Func. Count: 18, Neg. LLF: 312.93422293937977
Iteration: 3, Func. Count: 27, Neg. LLF: 152.1252858822282
Iteration: 4, Func. Count: 36, Neg. LLF: 142.44830660802478
Iteration: 5, Func. Count: 45, Neg. LLF: 140.55841398548233
Iteration: 6, Func. Count: 54, Neg. LLF: 139.47110757469127
Iteration: 7, Func. Count: 62, Neg. LLF: 139.46121761345486
Iteration: 8, Func. Count: 70, Neg. LLF: 139.45694866900897
Iteration: 9, Func. Count: 78, Neg. LLF: 139.4528722412615
Iteration: 10, Func. Count: 86, Neg. LLF: 139.45265775120168
Iteration: 11, Func. Count: 94, Neg. LLF: 139.4525504438641
Iteration: 12, Func. Count: 102, Neg. LLF: 139.452528832049
Iteration: 13, Func. Count: 110, Neg. LLF: 139.4525269680841
Iteration: 14, Func. Count: 117, Neg. LLF: 139.45252696552294
Optimization terminated successfully (Exit mode 0)
Current function value: 139.4525269680841
Iterations: 14
Function evaluations: 117
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 164.51189544241592
Iteration: 2, Func. Count: 20, Neg. LLF: 277.2324963515837
Iteration: 3, Func. Count: 30, Neg. LLF: 147.051340137137
Iteration: 4, Func. Count: 40, Neg. LLF: 140.94514045757361
Iteration: 5, Func. Count: 50, Neg. LLF: 139.68843856435055
Iteration: 6, Func. Count: 59, Neg. LLF: 139.47980817223893
Iteration: 7, Func. Count: 68, Neg. LLF: 139.45714090001533
Iteration: 8, Func. Count: 77, Neg. LLF: 139.45429358603363
Iteration: 9, Func. Count: 86, Neg. LLF: 139.45276269098667
Iteration: 10, Func. Count: 95, Neg. LLF: 139.45264068557682
Iteration: 11, Func. Count: 104, Neg. LLF: 139.4525453732241
Iteration: 12, Func. Count: 113, Neg. LLF: 139.45252885730318
Iteration: 13, Func. Count: 122, Neg. LLF: 139.4525269683619
Iteration: 14, Func. Count: 130, Neg. LLF: 139.45252695648605
Optimization terminated successfully (Exit mode 0)
Current function value: 139.4525269683619
Iterations: 14
Function evaluations: 130
Gradient evaluations: 14
Iteration: 1, Func. Count: 7, Neg. LLF: 151.91255382486762
Iteration: 2, Func. Count: 14, Neg. LLF: 182.36878603728692
Iteration: 3, Func. Count: 22, Neg. LLF: 142.1687583831929
Iteration: 4, Func. Count: 28, Neg. LLF: 143.36219923666215
Iteration: 5, Func. Count: 35, Neg. LLF: 159.54486348158753
Iteration: 6, Func. Count: 42, Neg. LLF: 140.32378966151367
Iteration: 7, Func. Count: 48, Neg. LLF: 139.6153431103404
Iteration: 8, Func. Count: 54, Neg. LLF: 139.30597984033002
Iteration: 9, Func. Count: 60, Neg. LLF: 139.29176814778666
Iteration: 10, Func. Count: 66, Neg. LLF: 139.28753617560014
Iteration: 11, Func. Count: 72, Neg. LLF: 139.28745278258037
Iteration: 12, Func. Count: 78, Neg. LLF: 139.2874283563116
Iteration: 13, Func. Count: 84, Neg. LLF: 139.2874272874616
Iteration: 14, Func. Count: 89, Neg. LLF: 139.2874272971817
Optimization terminated successfully (Exit mode 0)
Current function value: 139.2874272874616
Iterations: 14
Function evaluations: 89
Gradient evaluations: 14
Iteration: 1, Func. Count: 8, Neg. LLF: 180.3044327043758
Iteration: 2, Func. Count: 16, Neg. LLF: 149.7166407688371
Iteration: 3, Func. Count: 24, Neg. LLF: 158.91645662961872
Iteration: 4, Func. Count: 32, Neg. LLF: 141.00861167889383
Iteration: 5, Func. Count: 40, Neg. LLF: 140.71146142378953
Iteration: 6, Func. Count: 48, Neg. LLF: 139.8975324154851
Iteration: 7, Func. Count: 56, Neg. LLF: 139.0987835643424
Iteration: 8, Func. Count: 63, Neg. LLF: 139.09535428101492
Iteration: 9, Func. Count: 70, Neg. LLF: 139.0931872565862
Iteration: 10, Func. Count: 77, Neg. LLF: 139.09310808480774
Iteration: 11, Func. Count: 84, Neg. LLF: 139.09309491825047
Iteration: 12, Func. Count: 91, Neg. LLF: 139.09309148033688
Iteration: 13, Func. Count: 98, Neg. LLF: 139.0930908988075
Optimization terminated successfully (Exit mode 0)
Current function value: 139.0930908988075
Iterations: 13
Function evaluations: 98
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 171.22224022240903
Iteration: 2, Func. Count: 18, Neg. LLF: 149.7114830483623
Iteration: 3, Func. Count: 27, Neg. LLF: 162.92564704259482
Iteration: 4, Func. Count: 36, Neg. LLF: 142.24128943280272
Iteration: 5, Func. Count: 45, Neg. LLF: 156.47825535666774
Iteration: 6, Func. Count: 54, Neg. LLF: 139.13366773400807
Iteration: 7, Func. Count: 62, Neg. LLF: 139.10542943719608
Iteration: 8, Func. Count: 70, Neg. LLF: 139.09807925068742
Iteration: 9, Func. Count: 78, Neg. LLF: 139.0947951330443
Iteration: 10, Func. Count: 86, Neg. LLF: 139.09336382881256
Iteration: 11, Func. Count: 94, Neg. LLF: 139.09310010372852
Iteration: 12, Func. Count: 102, Neg. LLF: 139.09309221094168
Iteration: 13, Func. Count: 110, Neg. LLF: 139.0930912357785
Optimization terminated successfully (Exit mode 0)
Current function value: 139.0930912357785
Iterations: 13
Function evaluations: 110
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 168.48025004749914
Iteration: 2, Func. Count: 20, Neg. LLF: 149.02416840092923
Iteration: 3, Func. Count: 30, Neg. LLF: 141.67403954814364
Iteration: 4, Func. Count: 40, Neg. LLF: 143.4300465746711
Iteration: 5, Func. Count: 50, Neg. LLF: 142.40126585541003
Iteration: 6, Func. Count: 60, Neg. LLF: 139.41041758353057
Iteration: 7, Func. Count: 69, Neg. LLF: 139.11265293784487
Iteration: 8, Func. Count: 78, Neg. LLF: 139.09683008755457
Iteration: 9, Func. Count: 87, Neg. LLF: 139.09470253397734
Iteration: 10, Func. Count: 96, Neg. LLF: 139.0934488828301
Iteration: 11, Func. Count: 105, Neg. LLF: 139.0931372166016
Iteration: 12, Func. Count: 114, Neg. LLF: 139.09310411662875
Iteration: 13, Func. Count: 123, Neg. LLF: 139.0930937599005
Iteration: 14, Func. Count: 132, Neg. LLF: 139.09309107243095
Iteration: 15, Func. Count: 140, Neg. LLF: 139.09309105825997
Optimization terminated successfully (Exit mode 0)
Current function value: 139.09309107243095
Iterations: 15
Function evaluations: 140
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 167.64060329371836
Iteration: 2, Func. Count: 22, Neg. LLF: 148.65731697193942
Iteration: 3, Func. Count: 33, Neg. LLF: 141.57320595992496
Iteration: 4, Func. Count: 44, Neg. LLF: 153.15246138948316
Iteration: 5, Func. Count: 55, Neg. LLF: 141.22498039727677
Iteration: 6, Func. Count: 66, Neg. LLF: 139.11518474576397
Iteration: 7, Func. Count: 76, Neg. LLF: 139.10800251420883
Iteration: 8, Func. Count: 86, Neg. LLF: 139.09627563416564
Iteration: 9, Func. Count: 96, Neg. LLF: 139.09432600683598
Iteration: 10, Func. Count: 106, Neg. LLF: 139.09345412904204
Iteration: 11, Func. Count: 116, Neg. LLF: 139.09309700332926
Iteration: 12, Func. Count: 126, Neg. LLF: 139.0930932383584
Iteration: 13, Func. Count: 136, Neg. LLF: 139.093090942846
Iteration: 14, Func. Count: 145, Neg. LLF: 139.0930909474399
Optimization terminated successfully (Exit mode 0)
Current function value: 139.093090942846
Iterations: 14
Function evaluations: 145
Gradient evaluations: 14
Iteration: 1, Func. Count: 8, Neg. LLF: 161.19196548360017
Iteration: 2, Func. Count: 16, Neg. LLF: 144.37219153044117
Iteration: 3, Func. Count: 24, Neg. LLF: 144.29536763994895
Iteration: 4, Func. Count: 32, Neg. LLF: 163.71445429424017
Iteration: 5, Func. Count: 40, Neg. LLF: 142.81196285402942
Iteration: 6, Func. Count: 48, Neg. LLF: 140.79137475432623
Iteration: 7, Func. Count: 55, Neg. LLF: 139.92728267220926
Iteration: 8, Func. Count: 62, Neg. LLF: 9305410.487229314
Iteration: 9, Func. Count: 70, Neg. LLF: 139.27322323676032
Iteration: 10, Func. Count: 77, Neg. LLF: 139.26672655991968
Iteration: 11, Func. Count: 84, Neg. LLF: 139.26556624491366
Iteration: 12, Func. Count: 91, Neg. LLF: 139.26540489017097
Iteration: 13, Func. Count: 98, Neg. LLF: 139.2652211764073
Iteration: 14, Func. Count: 104, Neg. LLF: 139.2652211869188
Optimization terminated successfully (Exit mode 0)
Current function value: 139.2652211764073
Iterations: 14
Function evaluations: 104
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 190.0702513656505
Iteration: 2, Func. Count: 18, Neg. LLF: 155.30385387387142
Iteration: 3, Func. Count: 27, Neg. LLF: 162.7987111738987
Iteration: 4, Func. Count: 36, Neg. LLF: 139.28656774805697
Iteration: 5, Func. Count: 44, Neg. LLF: 140.69507309504297
Iteration: 6, Func. Count: 53, Neg. LLF: 139.3244691153101
Iteration: 7, Func. Count: 62, Neg. LLF: 139.57779312798746
Iteration: 8, Func. Count: 71, Neg. LLF: 139.02234612926446
Iteration: 9, Func. Count: 79, Neg. LLF: 139.01874374034676
Iteration: 10, Func. Count: 87, Neg. LLF: 139.01821028803153
Iteration: 11, Func. Count: 95, Neg. LLF: 139.01803529718
Iteration: 12, Func. Count: 103, Neg. LLF: 139.0178900772049
Iteration: 13, Func. Count: 111, Neg. LLF: 139.01785449436753
Iteration: 14, Func. Count: 119, Neg. LLF: 139.01785169919984
Iteration: 15, Func. Count: 126, Neg. LLF: 139.01785165584167
Optimization terminated successfully (Exit mode 0)
Current function value: 139.01785169919984
Iterations: 15
Function evaluations: 126
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 185.29984765736853
Iteration: 2, Func. Count: 20, Neg. LLF: 160.60299599519917
Iteration: 3, Func. Count: 30, Neg. LLF: 158.5097918530274
Iteration: 4, Func. Count: 40, Neg. LLF: 156.81941345405966
Iteration: 5, Func. Count: 50, Neg. LLF: 140.84824285206048
Iteration: 6, Func. Count: 60, Neg. LLF: 139.4031890528127
Iteration: 7, Func. Count: 70, Neg. LLF: 139.04254501678827
Iteration: 8, Func. Count: 79, Neg. LLF: 139.0263072775797
Iteration: 9, Func. Count: 88, Neg. LLF: 139.0209524773795
Iteration: 10, Func. Count: 97, Neg. LLF: 139.01888784979258
Iteration: 11, Func. Count: 106, Neg. LLF: 139.0184011696858
Iteration: 12, Func. Count: 115, Neg. LLF: 139.0179292642809
Iteration: 13, Func. Count: 124, Neg. LLF: 139.0178593708229
Iteration: 14, Func. Count: 133, Neg. LLF: 139.01785167440605
Iteration: 15, Func. Count: 141, Neg. LLF: 139.01785167232518
Optimization terminated successfully (Exit mode 0)
Current function value: 139.01785167440605
Iterations: 15
Function evaluations: 141
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 249.55402163703064
Iteration: 2, Func. Count: 22, Neg. LLF: 287.55922115838626
Iteration: 3, Func. Count: 33, Neg. LLF: 155.21734335168395
Iteration: 4, Func. Count: 44, Neg. LLF: 165.45023523274264
Iteration: 5, Func. Count: 55, Neg. LLF: 143.50196920963478
Iteration: 6, Func. Count: 66, Neg. LLF: 324.7507447598339
Iteration: 7, Func. Count: 77, Neg. LLF: 139.10418845807237
Iteration: 8, Func. Count: 87, Neg. LLF: 139.0686775579529
Iteration: 9, Func. Count: 97, Neg. LLF: 139.0254480983702
Iteration: 10, Func. Count: 107, Neg. LLF: 139.02191471255907
Iteration: 11, Func. Count: 117, Neg. LLF: 139.0207321782272
Iteration: 12, Func. Count: 127, Neg. LLF: 139.01879281709827
Iteration: 13, Func. Count: 137, Neg. LLF: 139.01805213239254
Iteration: 14, Func. Count: 147, Neg. LLF: 139.01788943454073
Iteration: 15, Func. Count: 157, Neg. LLF: 139.0178580070002
Iteration: 16, Func. Count: 167, Neg. LLF: 139.01785239183818
Iteration: 17, Func. Count: 177, Neg. LLF: 139.017851708721
Optimization terminated successfully (Exit mode 0)
Current function value: 139.017851708721
Iterations: 17
Function evaluations: 177
Gradient evaluations: 17
Iteration: 1, Func. Count: 12, Neg. LLF: 213.73132250277303
Iteration: 2, Func. Count: 24, Neg. LLF: 280.2375456154717
Iteration: 3, Func. Count: 36, Neg. LLF: 155.14111280842042
Iteration: 4, Func. Count: 48, Neg. LLF: 154.26164926777884
Iteration: 5, Func. Count: 60, Neg. LLF: 142.46672138131092
Iteration: 6, Func. Count: 72, Neg. LLF: 163.3185908564185
Iteration: 7, Func. Count: 84, Neg. LLF: 139.04896855811592
Iteration: 8, Func. Count: 95, Neg. LLF: 139.04944448287145
Iteration: 9, Func. Count: 107, Neg. LLF: 139.02748824667546
Iteration: 10, Func. Count: 118, Neg. LLF: 139.02349120920545
Iteration: 11, Func. Count: 129, Neg. LLF: 139.02049018688365
Iteration: 12, Func. Count: 140, Neg. LLF: 139.0186877696418
Iteration: 13, Func. Count: 151, Neg. LLF: 139.01795862255523
Iteration: 14, Func. Count: 162, Neg. LLF: 139.01785538928604
Iteration: 15, Func. Count: 173, Neg. LLF: 139.01785190923624
Iteration: 16, Func. Count: 183, Neg. LLF: 139.0178519300191
Optimization terminated successfully (Exit mode 0)
Current function value: 139.01785190923624
Iterations: 16
Function evaluations: 183
Gradient evaluations: 16
Iteration: 1, Func. Count: 9, Neg. LLF: 175.77316303430916
Iteration: 2, Func. Count: 18, Neg. LLF: 168.95173669180343
Iteration: 3, Func. Count: 28, Neg. LLF: 156.8473149437027
Iteration: 4, Func. Count: 37, Neg. LLF: 140.7544195533294
Iteration: 5, Func. Count: 45, Neg. LLF: 140.1116117773714
Iteration: 6, Func. Count: 53, Neg. LLF: 591.7619886383019
Iteration: 7, Func. Count: 62, Neg. LLF: 459.895336182571
Iteration: 8, Func. Count: 71, Neg. LLF: 368.1884937360918
Iteration: 9, Func. Count: 80, Neg. LLF: 17766.186199093052
Iteration: 10, Func. Count: 89, Neg. LLF: 358.2303242347719
Iteration: 11, Func. Count: 98, Neg. LLF: 139.8187852721352
Iteration: 12, Func. Count: 107, Neg. LLF: 137.3356659168338
Iteration: 13, Func. Count: 116, Neg. LLF: 137.11483312461053
Iteration: 14, Func. Count: 124, Neg. LLF: 137.10154833228285
Iteration: 15, Func. Count: 132, Neg. LLF: 137.10141626864328
Iteration: 16, Func. Count: 140, Neg. LLF: 137.10138974742748
Iteration: 17, Func. Count: 148, Neg. LLF: 137.1013744563562
Iteration: 18, Func. Count: 156, Neg. LLF: 137.10135800654882
Iteration: 19, Func. Count: 164, Neg. LLF: 137.1013556145827
Iteration: 20, Func. Count: 171, Neg. LLF: 137.10135560560983
Optimization terminated successfully (Exit mode 0)
Current function value: 137.1013556145827
Iterations: 20
Function evaluations: 171
Gradient evaluations: 20
Iteration: 1, Func. Count: 10, Neg. LLF: 264.403837571024
Iteration: 2, Func. Count: 20, Neg. LLF: 168.44849686325176
Iteration: 3, Func. Count: 30, Neg. LLF: 170.27790778746026
Iteration: 4, Func. Count: 40, Neg. LLF: 142.08582536703037
Iteration: 5, Func. Count: 50, Neg. LLF: 137.80597998212187
Iteration: 6, Func. Count: 59, Neg. LLF: 137.21918149052036
Iteration: 7, Func. Count: 68, Neg. LLF: 137.26145980311546
Iteration: 8, Func. Count: 78, Neg. LLF: 137.1105681075228
Iteration: 9, Func. Count: 87, Neg. LLF: 137.10259876498424
Iteration: 10, Func. Count: 96, Neg. LLF: 137.10141866090763
Iteration: 11, Func. Count: 105, Neg. LLF: 137.10136177812606
Iteration: 12, Func. Count: 114, Neg. LLF: 137.10135683963298
Iteration: 13, Func. Count: 123, Neg. LLF: 137.10135553958605
Iteration: 14, Func. Count: 131, Neg. LLF: 137.10135555993824
Optimization terminated successfully (Exit mode 0)
Current function value: 137.10135553958605
Iterations: 14
Function evaluations: 131
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 256.1505124526291
Iteration: 2, Func. Count: 22, Neg. LLF: 225.97318759727142
Iteration: 3, Func. Count: 33, Neg. LLF: 137.80664692571975
Iteration: 4, Func. Count: 43, Neg. LLF: 142.0275995696426
Iteration: 5, Func. Count: 54, Neg. LLF: 137.29200989395468
Iteration: 6, Func. Count: 64, Neg. LLF: 137.3923776065372
Iteration: 7, Func. Count: 75, Neg. LLF: 137.1346962262753
Iteration: 8, Func. Count: 85, Neg. LLF: 137.10266440713636
Iteration: 9, Func. Count: 95, Neg. LLF: 137.10151982098367
Iteration: 10, Func. Count: 105, Neg. LLF: 137.10135711805503
Iteration: 11, Func. Count: 115, Neg. LLF: 137.10135549195277
Iteration: 12, Func. Count: 124, Neg. LLF: 137.10135551326758
Optimization terminated successfully (Exit mode 0)
Current function value: 137.10135549195277
Iterations: 12
Function evaluations: 124
Gradient evaluations: 12
Iteration: 1, Func. Count: 12, Neg. LLF: 250.1684774734352
Iteration: 2, Func. Count: 24, Neg. LLF: 223.41144536018044
Iteration: 3, Func. Count: 36, Neg. LLF: 138.27017939016457
Iteration: 4, Func. Count: 47, Neg. LLF: 143.9853750272423
Iteration: 5, Func. Count: 59, Neg. LLF: 147.11095326219942
Iteration: 6, Func. Count: 71, Neg. LLF: 138.55212071532466
Iteration: 7, Func. Count: 83, Neg. LLF: 137.18456506250678
Iteration: 8, Func. Count: 94, Neg. LLF: 137.15483051905116
Iteration: 9, Func. Count: 105, Neg. LLF: 137.10648554860052
Iteration: 10, Func. Count: 116, Neg. LLF: 137.10307375828754
Iteration: 11, Func. Count: 127, Neg. LLF: 137.10072320493666
Iteration: 12, Func. Count: 138, Neg. LLF: 137.1006729296225
Iteration: 13, Func. Count: 149, Neg. LLF: 137.10067125834806
Iteration: 14, Func. Count: 159, Neg. LLF: 137.1006712397274
Optimization terminated successfully (Exit mode 0)
Current function value: 137.10067125834806
Iterations: 14
Function evaluations: 159
Gradient evaluations: 14
Iteration: 1, Func. Count: 13, Neg. LLF: 246.98463527935897
Iteration: 2, Func. Count: 26, Neg. LLF: 234.77442320470587
Iteration: 3, Func. Count: 39, Neg. LLF: 139.49654340988562
Iteration: 4, Func. Count: 51, Neg. LLF: 139.1235891436803
Iteration: 5, Func. Count: 64, Neg. LLF: 139.93598124419788
Iteration: 6, Func. Count: 77, Neg. LLF: 137.5881923906684
Iteration: 7, Func. Count: 90, Neg. LLF: 137.16596624286368
Iteration: 8, Func. Count: 102, Neg. LLF: 137.11136289730794
Iteration: 9, Func. Count: 114, Neg. LLF: 137.1047580459526
Iteration: 10, Func. Count: 126, Neg. LLF: 137.10120516159589
Iteration: 11, Func. Count: 138, Neg. LLF: 137.100755371311
Iteration: 12, Func. Count: 150, Neg. LLF: 137.10068083762388
Iteration: 13, Func. Count: 162, Neg. LLF: 137.10067197301342
Iteration: 14, Func. Count: 174, Neg. LLF: 137.10067129276158
Optimization terminated successfully (Exit mode 0)
Current function value: 137.10067129276158
Iterations: 14
Function evaluations: 174
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 175.0764057562951
Iteration: 2, Func. Count: 20, Neg. LLF: 176.12558406622574
Iteration: 3, Func. Count: 31, Neg. LLF: 160.0836713952013
Iteration: 4, Func. Count: 41, Neg. LLF: 140.9426956986769
Iteration: 5, Func. Count: 50, Neg. LLF: 140.26721406462133
Iteration: 6, Func. Count: 59, Neg. LLF: 343.4095232885536
Iteration: 7, Func. Count: 69, Neg. LLF: 1561381.8016384274
Iteration: 8, Func. Count: 79, Neg. LLF: 472.95278528720905
Iteration: 9, Func. Count: 89, Neg. LLF: 341.73561451919875
Iteration: 10, Func. Count: 99, Neg. LLF: 207.82658890101607
Iteration: 11, Func. Count: 109, Neg. LLF: 138.69059113090123
Iteration: 12, Func. Count: 119, Neg. LLF: 137.16048012671922
Iteration: 13, Func. Count: 128, Neg. LLF: 137.1053763921451
Iteration: 14, Func. Count: 137, Neg. LLF: 137.1018481073925
Iteration: 15, Func. Count: 146, Neg. LLF: 137.101667016422
Iteration: 16, Func. Count: 155, Neg. LLF: 137.10152497719127
Iteration: 17, Func. Count: 164, Neg. LLF: 137.10146465423972
Iteration: 18, Func. Count: 173, Neg. LLF: 137.10136934526432
Iteration: 19, Func. Count: 182, Neg. LLF: 137.1013566561384
Iteration: 20, Func. Count: 191, Neg. LLF: 137.10135543786237
Iteration: 21, Func. Count: 199, Neg. LLF: 137.10135546131897
Optimization terminated successfully (Exit mode 0)
Current function value: 137.10135543786237
Iterations: 21
Function evaluations: 199
Gradient evaluations: 21
Iteration: 1, Func. Count: 11, Neg. LLF: 262.307044965955
Iteration: 2, Func. Count: 22, Neg. LLF: 203.4352608093858
Iteration: 3, Func. Count: 33, Neg. LLF: 167.678883223609
Iteration: 4, Func. Count: 44, Neg. LLF: 144.06211904144612
Iteration: 5, Func. Count: 55, Neg. LLF: 139.44519709267826
Iteration: 6, Func. Count: 66, Neg. LLF: 137.45902509007067
Iteration: 7, Func. Count: 76, Neg. LLF: 137.34070421832044
Iteration: 8, Func. Count: 86, Neg. LLF: 137.12403601123546
Iteration: 9, Func. Count: 96, Neg. LLF: 137.10380370789815
Iteration: 10, Func. Count: 106, Neg. LLF: 137.10148661677434
Iteration: 11, Func. Count: 116, Neg. LLF: 137.10139089104482
Iteration: 12, Func. Count: 126, Neg. LLF: 137.10136346148315
Iteration: 13, Func. Count: 136, Neg. LLF: 137.1013558043786
Iteration: 14, Func. Count: 145, Neg. LLF: 137.10135582471335
Optimization terminated successfully (Exit mode 0)
Current function value: 137.1013558043786
Iterations: 14
Function evaluations: 145
Gradient evaluations: 14
Iteration: 1, Func. Count: 12, Neg. LLF: 253.2029029735483
Iteration: 2, Func. Count: 24, Neg. LLF: 216.3654636791292
Iteration: 3, Func. Count: 36, Neg. LLF: 138.06746913923547
Iteration: 4, Func. Count: 47, Neg. LLF: 140.19182115158193
Iteration: 5, Func. Count: 59, Neg. LLF: 141.8172500939983
Iteration: 6, Func. Count: 71, Neg. LLF: 140.7747240598937
Iteration: 7, Func. Count: 83, Neg. LLF: 137.1906823268061
Iteration: 8, Func. Count: 94, Neg. LLF: 137.11076015349477
Iteration: 9, Func. Count: 105, Neg. LLF: 137.1028659931346
Iteration: 10, Func. Count: 116, Neg. LLF: 137.10142665139503
Iteration: 11, Func. Count: 127, Neg. LLF: 137.10135803049883
Iteration: 12, Func. Count: 138, Neg. LLF: 137.1013558027112
Iteration: 13, Func. Count: 148, Neg. LLF: 137.1013558239798
Optimization terminated successfully (Exit mode 0)
Current function value: 137.1013558027112
Iterations: 13
Function evaluations: 148
Gradient evaluations: 13
Iteration: 1, Func. Count: 13, Neg. LLF: 246.5363286378894
Iteration: 2, Func. Count: 26, Neg. LLF: 223.2018913835154
Iteration: 3, Func. Count: 39, Neg. LLF: 138.42111060214265
Iteration: 4, Func. Count: 51, Neg. LLF: 142.69133803041353
Iteration: 5, Func. Count: 64, Neg. LLF: 139.99312922552627
Iteration: 6, Func. Count: 77, Neg. LLF: 137.14172235248162
Iteration: 7, Func. Count: 89, Neg. LLF: 137.17694148578312
Iteration: 8, Func. Count: 102, Neg. LLF: 137.1080201154456
Iteration: 9, Func. Count: 114, Neg. LLF: 137.10313205203497
Iteration: 10, Func. Count: 126, Neg. LLF: 137.10071996821847
Iteration: 11, Func. Count: 138, Neg. LLF: 137.10067314169888
Iteration: 12, Func. Count: 150, Neg. LLF: 137.10067164190852
Iteration: 13, Func. Count: 161, Neg. LLF: 137.10067162328764
Optimization terminated successfully (Exit mode 0)
Current function value: 137.10067164190852
Iterations: 13
Function evaluations: 161
Gradient evaluations: 13
Iteration: 1, Func. Count: 14, Neg. LLF: 243.04838459693872
Iteration: 2, Func. Count: 28, Neg. LLF: 230.07771014823084
Iteration: 3, Func. Count: 42, Neg. LLF: 138.13964060446742
Iteration: 4, Func. Count: 55, Neg. LLF: 139.4067277406576
Iteration: 5, Func. Count: 69, Neg. LLF: 137.84627051374522
Iteration: 6, Func. Count: 83, Neg. LLF: 137.1373580818802
Iteration: 7, Func. Count: 96, Neg. LLF: 137.12441478064915
Iteration: 8, Func. Count: 109, Neg. LLF: 137.1036199433624
Iteration: 9, Func. Count: 122, Neg. LLF: 137.1016066545949
Iteration: 10, Func. Count: 135, Neg. LLF: 137.10075688074534
Iteration: 11, Func. Count: 148, Neg. LLF: 137.10069395514242
Iteration: 12, Func. Count: 161, Neg. LLF: 137.10067170054688
Iteration: 13, Func. Count: 173, Neg. LLF: 137.10067176071473
Optimization terminated successfully (Exit mode 0)
Current function value: 137.10067170054688
Iterations: 13
Function evaluations: 173
Gradient evaluations: 13
Iteration: 1, Func. Count: 7, Neg. LLF: 148.29241777627908
Iteration: 2, Func. Count: 14, Neg. LLF: 152.099837512286
Iteration: 3, Func. Count: 21, Neg. LLF: 147.8842264671427
Iteration: 4, Func. Count: 28, Neg. LLF: 144.74786184314416
Iteration: 5, Func. Count: 34, Neg. LLF: 141.40479828781665
Iteration: 6, Func. Count: 40, Neg. LLF: 504.1111130564897
Iteration: 7, Func. Count: 47, Neg. LLF: 144.48316270609305
Iteration: 8, Func. Count: 54, Neg. LLF: 140.5314367021165
Iteration: 9, Func. Count: 61, Neg. LLF: 139.55861538664928
Iteration: 10, Func. Count: 67, Neg. LLF: 139.50059766200354
Iteration: 11, Func. Count: 73, Neg. LLF: 139.44597945858126
Iteration: 12, Func. Count: 79, Neg. LLF: 139.44203970083387
Iteration: 13, Func. Count: 85, Neg. LLF: 139.44034299609817
Iteration: 14, Func. Count: 91, Neg. LLF: 139.44017798489693
Iteration: 15, Func. Count: 97, Neg. LLF: 139.44016867665124
Iteration: 16, Func. Count: 103, Neg. LLF: 139.44016787430266
Optimization terminated successfully (Exit mode 0)
Current function value: 139.44016787430266
Iterations: 16
Function evaluations: 103
Gradient evaluations: 16
Iteration: 1, Func. Count: 8, Neg. LLF: 296.92212633301097
Iteration: 2, Func. Count: 16, Neg. LLF: 233.453443291048
Iteration: 3, Func. Count: 25, Neg. LLF: 6734.960558015583
Iteration: 4, Func. Count: 33, Neg. LLF: 141.14434579058178
Iteration: 5, Func. Count: 40, Neg. LLF: 141.59669959444287
Iteration: 6, Func. Count: 48, Neg. LLF: 158.9514224167295
Iteration: 7, Func. Count: 56, Neg. LLF: 139.80379695719054
Iteration: 8, Func. Count: 63, Neg. LLF: 140.13982277628728
Iteration: 9, Func. Count: 71, Neg. LLF: 139.8268015568733
Iteration: 10, Func. Count: 79, Neg. LLF: 139.50987676578245
Iteration: 11, Func. Count: 86, Neg. LLF: 139.4570233972987
Iteration: 12, Func. Count: 93, Neg. LLF: 139.45387531390844
Iteration: 13, Func. Count: 100, Neg. LLF: 139.4534277622869
Iteration: 14, Func. Count: 107, Neg. LLF: 139.45139024236954
Iteration: 15, Func. Count: 114, Neg. LLF: 139.44953662011196
Iteration: 16, Func. Count: 121, Neg. LLF: 139.44381295811877
Iteration: 17, Func. Count: 128, Neg. LLF: 139.44223101341782
Iteration: 18, Func. Count: 135, Neg. LLF: 139.44059041870554
Iteration: 19, Func. Count: 142, Neg. LLF: 139.44023723738957
Iteration: 20, Func. Count: 149, Neg. LLF: 139.44017951534207
Iteration: 21, Func. Count: 156, Neg. LLF: 139.44016801436717
Iteration: 22, Func. Count: 162, Neg. LLF: 139.44016799776628
Optimization terminated successfully (Exit mode 0)
Current function value: 139.44016801436717
Iterations: 22
Function evaluations: 162
Gradient evaluations: 22
Iteration: 1, Func. Count: 9, Neg. LLF: 168.23720248734455
Iteration: 2, Func. Count: 18, Neg. LLF: 206.63199075749023
Iteration: 3, Func. Count: 27, Neg. LLF: 159.3629019588353
Iteration: 4, Func. Count: 36, Neg. LLF: 145.19162017606052
Iteration: 5, Func. Count: 45, Neg. LLF: 140.2521933768604
Iteration: 6, Func. Count: 53, Neg. LLF: 139.5715356412795
Iteration: 7, Func. Count: 61, Neg. LLF: 139.49843881730303
Iteration: 8, Func. Count: 69, Neg. LLF: 139.47797894211737
Iteration: 9, Func. Count: 77, Neg. LLF: 139.46672839253768
Iteration: 10, Func. Count: 85, Neg. LLF: 139.45431252811386
Iteration: 11, Func. Count: 93, Neg. LLF: 139.45203230116812
Iteration: 12, Func. Count: 101, Neg. LLF: 139.4493480070505
Iteration: 13, Func. Count: 109, Neg. LLF: 139.4454770787665
Iteration: 14, Func. Count: 117, Neg. LLF: 139.44133668912144
Iteration: 15, Func. Count: 125, Neg. LLF: 139.44034534521197
Iteration: 16, Func. Count: 133, Neg. LLF: 139.44022719164417
Iteration: 17, Func. Count: 141, Neg. LLF: 139.4401683399633
Iteration: 18, Func. Count: 148, Neg. LLF: 139.44016833125636
Optimization terminated successfully (Exit mode 0)
Current function value: 139.4401683399633
Iterations: 18
Function evaluations: 148
Gradient evaluations: 18
Iteration: 1, Func. Count: 10, Neg. LLF: 164.56686407225467
Iteration: 2, Func. Count: 20, Neg. LLF: 298.1850720044433
Iteration: 3, Func. Count: 30, Neg. LLF: 158.9934751066987
Iteration: 4, Func. Count: 40, Neg. LLF: 141.940606530617
Iteration: 5, Func. Count: 50, Neg. LLF: 141.11254964727223
Iteration: 6, Func. Count: 60, Neg. LLF: 139.46256291708514
Iteration: 7, Func. Count: 69, Neg. LLF: 139.46108147947916
Iteration: 8, Func. Count: 79, Neg. LLF: 139.45415225341839
Iteration: 9, Func. Count: 88, Neg. LLF: 139.45239263845986
Iteration: 10, Func. Count: 97, Neg. LLF: 139.44994830752523
Iteration: 11, Func. Count: 106, Neg. LLF: 139.4454159224292
Iteration: 12, Func. Count: 115, Neg. LLF: 139.44300120677022
Iteration: 13, Func. Count: 124, Neg. LLF: 139.44021933560143
Iteration: 14, Func. Count: 133, Neg. LLF: 139.44017944071365
Iteration: 15, Func. Count: 142, Neg. LLF: 139.4401680301311
Iteration: 16, Func. Count: 150, Neg. LLF: 139.44016803041305
Optimization terminated successfully (Exit mode 0)
Current function value: 139.4401680301311
Iterations: 16
Function evaluations: 150
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 162.75667274337147
Iteration: 2, Func. Count: 22, Neg. LLF: 277.2768141806756
Iteration: 3, Func. Count: 33, Neg. LLF: 151.77964934135954
Iteration: 4, Func. Count: 44, Neg. LLF: 140.92663763714768
Iteration: 5, Func. Count: 55, Neg. LLF: 139.86690387587907
Iteration: 6, Func. Count: 65, Neg. LLF: 139.45678168590138
Iteration: 7, Func. Count: 75, Neg. LLF: 139.46527065641286
Iteration: 8, Func. Count: 86, Neg. LLF: 139.44990983069613
Iteration: 9, Func. Count: 96, Neg. LLF: 139.44877034062907
Iteration: 10, Func. Count: 106, Neg. LLF: 139.44783706146669
Iteration: 11, Func. Count: 116, Neg. LLF: 139.4461952644857
Iteration: 12, Func. Count: 126, Neg. LLF: 139.4441979269211
Iteration: 13, Func. Count: 136, Neg. LLF: 139.44158665898635
Iteration: 14, Func. Count: 146, Neg. LLF: 139.4402576456852
Iteration: 15, Func. Count: 156, Neg. LLF: 139.44019003932863
Iteration: 16, Func. Count: 166, Neg. LLF: 139.4401679953008
Iteration: 17, Func. Count: 175, Neg. LLF: 139.4401679828569
Optimization terminated successfully (Exit mode 0)
Current function value: 139.4401679953008
Iterations: 17
Function evaluations: 175
Gradient evaluations: 17
Iteration: 1, Func. Count: 8, Neg. LLF: 151.86420886812508
Iteration: 2, Func. Count: 16, Neg. LLF: 196.84744748514888
Iteration: 3, Func. Count: 25, Neg. LLF: 142.20771152904857
Iteration: 4, Func. Count: 33, Neg. LLF: 142.19605204214238
Iteration: 5, Func. Count: 41, Neg. LLF: 140.69731155614224
Iteration: 6, Func. Count: 48, Neg. LLF: 139.55095910760178
Iteration: 7, Func. Count: 55, Neg. LLF: 139.94548241874116
Iteration: 8, Func. Count: 63, Neg. LLF: 139.35665928977102
Iteration: 9, Func. Count: 71, Neg. LLF: 139.07250460941918
Iteration: 10, Func. Count: 78, Neg. LLF: 139.00832474009792
Iteration: 11, Func. Count: 85, Neg. LLF: 138.98905436803827
Iteration: 12, Func. Count: 92, Neg. LLF: 138.9783779186794
Iteration: 13, Func. Count: 99, Neg. LLF: 138.9747746343866
Iteration: 14, Func. Count: 106, Neg. LLF: 138.9733187248665
Iteration: 15, Func. Count: 113, Neg. LLF: 138.96780836521967
Iteration: 16, Func. Count: 120, Neg. LLF: 138.966533477144
Iteration: 17, Func. Count: 127, Neg. LLF: 138.96639744878527
Iteration: 18, Func. Count: 134, Neg. LLF: 138.96638506181228
Iteration: 19, Func. Count: 140, Neg. LLF: 138.96638507301572
Optimization terminated successfully (Exit mode 0)
Current function value: 138.96638506181228
Iterations: 19
Function evaluations: 140
Gradient evaluations: 19
Iteration: 1, Func. Count: 9, Neg. LLF: 176.6105109147212
Iteration: 2, Func. Count: 18, Neg. LLF: 150.13499240943946
Iteration: 3, Func. Count: 27, Neg. LLF: 161.68384476944513
Iteration: 4, Func. Count: 36, Neg. LLF: 156.6430333597798
Iteration: 5, Func. Count: 45, Neg. LLF: 140.64974949524932
Iteration: 6, Func. Count: 54, Neg. LLF: 140.93686827450048
Iteration: 7, Func. Count: 63, Neg. LLF: 139.1360966139625
Iteration: 8, Func. Count: 71, Neg. LLF: 139.0568753358975
Iteration: 9, Func. Count: 79, Neg. LLF: 139.02113992265208
Iteration: 10, Func. Count: 87, Neg. LLF: 138.98957709120242
Iteration: 11, Func. Count: 95, Neg. LLF: 138.98214536053268
Iteration: 12, Func. Count: 103, Neg. LLF: 138.97554170728517
Iteration: 13, Func. Count: 111, Neg. LLF: 138.97184086746682
Iteration: 14, Func. Count: 119, Neg. LLF: 138.9666861038505
Iteration: 15, Func. Count: 127, Neg. LLF: 138.96647284803603
Iteration: 16, Func. Count: 135, Neg. LLF: 138.9663889198
Iteration: 17, Func. Count: 143, Neg. LLF: 138.96638594373135
Iteration: 18, Func. Count: 151, Neg. LLF: 138.96638464958298
Iteration: 19, Func. Count: 158, Neg. LLF: 138.96638463331732
Optimization terminated successfully (Exit mode 0)
Current function value: 138.96638464958298
Iterations: 19
Function evaluations: 158
Gradient evaluations: 19
Iteration: 1, Func. Count: 10, Neg. LLF: 169.5484249488753
Iteration: 2, Func. Count: 20, Neg. LLF: 150.63118637661609
Iteration: 3, Func. Count: 30, Neg. LLF: 143.20154486466336
Iteration: 4, Func. Count: 40, Neg. LLF: 171.1713439097854
Iteration: 5, Func. Count: 50, Neg. LLF: 202.20559968167598
Iteration: 6, Func. Count: 60, Neg. LLF: 139.59561422433487
Iteration: 7, Func. Count: 70, Neg. LLF: 139.07101989015035
Iteration: 8, Func. Count: 79, Neg. LLF: 139.0389612216867
Iteration: 9, Func. Count: 88, Neg. LLF: 139.00299216503882
Iteration: 10, Func. Count: 97, Neg. LLF: 138.98127519003617
Iteration: 11, Func. Count: 106, Neg. LLF: 138.97584292006343
Iteration: 12, Func. Count: 115, Neg. LLF: 138.97194058331104
Iteration: 13, Func. Count: 124, Neg. LLF: 138.96775760351937
Iteration: 14, Func. Count: 133, Neg. LLF: 138.9665546924516
Iteration: 15, Func. Count: 142, Neg. LLF: 138.9664005377766
Iteration: 16, Func. Count: 151, Neg. LLF: 138.96638661546524
Iteration: 17, Func. Count: 160, Neg. LLF: 138.96638468368084
Iteration: 18, Func. Count: 168, Neg. LLF: 138.96638469815056
Optimization terminated successfully (Exit mode 0)
Current function value: 138.96638468368084
Iterations: 18
Function evaluations: 168
Gradient evaluations: 18
Iteration: 1, Func. Count: 11, Neg. LLF: 167.13190776731184
Iteration: 2, Func. Count: 22, Neg. LLF: 152.2981012980319
Iteration: 3, Func. Count: 33, Neg. LLF: 165.73689833767835
Iteration: 4, Func. Count: 44, Neg. LLF: 139.67440320774878
Iteration: 5, Func. Count: 54, Neg. LLF: 151.35312302970317
Iteration: 6, Func. Count: 65, Neg. LLF: 139.0799228546096
Iteration: 7, Func. Count: 75, Neg. LLF: 139.04108611387647
Iteration: 8, Func. Count: 85, Neg. LLF: 138.99362616948767
Iteration: 9, Func. Count: 95, Neg. LLF: 138.9778102957851
Iteration: 10, Func. Count: 105, Neg. LLF: 138.9716530354065
Iteration: 11, Func. Count: 115, Neg. LLF: 138.9685969613654
Iteration: 12, Func. Count: 125, Neg. LLF: 138.96724614143318
Iteration: 13, Func. Count: 135, Neg. LLF: 138.96643678416373
Iteration: 14, Func. Count: 145, Neg. LLF: 138.9663938052446
Iteration: 15, Func. Count: 155, Neg. LLF: 138.96638469883464
Iteration: 16, Func. Count: 164, Neg. LLF: 138.96638468182084
Optimization terminated successfully (Exit mode 0)
Current function value: 138.96638469883464
Iterations: 16
Function evaluations: 164
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 165.8591071561518
Iteration: 2, Func. Count: 24, Neg. LLF: 152.0485228335608
Iteration: 3, Func. Count: 36, Neg. LLF: 155.4402916795145
Iteration: 4, Func. Count: 48, Neg. LLF: 141.5225719315998
Iteration: 5, Func. Count: 60, Neg. LLF: 143.91519408662074
Iteration: 6, Func. Count: 72, Neg. LLF: 139.10419531247507
Iteration: 7, Func. Count: 83, Neg. LLF: 139.04484010601163
Iteration: 8, Func. Count: 94, Neg. LLF: 139.0041257659821
Iteration: 9, Func. Count: 105, Neg. LLF: 138.97239884920458
Iteration: 10, Func. Count: 116, Neg. LLF: 138.968557063213
Iteration: 11, Func. Count: 127, Neg. LLF: 138.96648298402442
Iteration: 12, Func. Count: 138, Neg. LLF: 138.96642334117178
Iteration: 13, Func. Count: 149, Neg. LLF: 138.96638883924192
Iteration: 14, Func. Count: 160, Neg. LLF: 138.96638488951697
Iteration: 15, Func. Count: 170, Neg. LLF: 138.96638490089055
Optimization terminated successfully (Exit mode 0)
Current function value: 138.96638488951697
Iterations: 15
Function evaluations: 170
Gradient evaluations: 15
Iteration: 1, Func. Count: 9, Neg. LLF: 177.30566415618964
Iteration: 2, Func. Count: 18, Neg. LLF: 152.76852217344475
Iteration: 3, Func. Count: 28, Neg. LLF: 160.76372336305525
Iteration: 4, Func. Count: 37, Neg. LLF: 142.63183845091066
Iteration: 5, Func. Count: 46, Neg. LLF: 144.64042229192836
Iteration: 6, Func. Count: 55, Neg. LLF: 149.7877035318785
Iteration: 7, Func. Count: 64, Neg. LLF: 155.2528579379362
Iteration: 8, Func. Count: 73, Neg. LLF: 161.191430598399
Iteration: 9, Func. Count: 82, Neg. LLF: 143.19605049342516
Iteration: 10, Func. Count: 91, Neg. LLF: 139.57303726423257
Iteration: 11, Func. Count: 100, Neg. LLF: 139.02162693258106
Iteration: 12, Func. Count: 108, Neg. LLF: 138.9915913200666
Iteration: 13, Func. Count: 116, Neg. LLF: 138.95072248080933
Iteration: 14, Func. Count: 124, Neg. LLF: 138.94952246786295
Iteration: 15, Func. Count: 132, Neg. LLF: 138.94923280820268
Iteration: 16, Func. Count: 140, Neg. LLF: 138.94922442504117
Iteration: 17, Func. Count: 148, Neg. LLF: 138.94922350582704
Optimization terminated successfully (Exit mode 0)
Current function value: 138.94922350582704
Iterations: 17
Function evaluations: 148
Gradient evaluations: 17
Iteration: 1, Func. Count: 10, Neg. LLF: 260.12596679146776
Iteration: 2, Func. Count: 20, Neg. LLF: 169.83641006646405
Iteration: 3, Func. Count: 30, Neg. LLF: 166.39554829676166
Iteration: 4, Func. Count: 40, Neg. LLF: 169.45022643985178
Iteration: 5, Func. Count: 50, Neg. LLF: 141.6676556818211
Iteration: 6, Func. Count: 60, Neg. LLF: 141.38632567110764
Iteration: 7, Func. Count: 70, Neg. LLF: 139.07060835132023
Iteration: 8, Func. Count: 79, Neg. LLF: 139.22063003253422
Iteration: 9, Func. Count: 89, Neg. LLF: 139.07496814090402
Iteration: 10, Func. Count: 99, Neg. LLF: 139.01786014395663
Iteration: 11, Func. Count: 108, Neg. LLF: 139.01587823776248
Iteration: 12, Func. Count: 117, Neg. LLF: 139.01437191612524
Iteration: 13, Func. Count: 126, Neg. LLF: 139.00774153221488
Iteration: 14, Func. Count: 135, Neg. LLF: 138.97922951502645
Iteration: 15, Func. Count: 144, Neg. LLF: 138.96167761968533
Iteration: 16, Func. Count: 153, Neg. LLF: 138.95375983520185
Iteration: 17, Func. Count: 162, Neg. LLF: 138.95122925688628
Iteration: 18, Func. Count: 171, Neg. LLF: 138.94939922603314
Iteration: 19, Func. Count: 180, Neg. LLF: 138.9492350885594
Iteration: 20, Func. Count: 189, Neg. LLF: 138.94922584873171
Iteration: 21, Func. Count: 198, Neg. LLF: 138.94922369056556
Iteration: 22, Func. Count: 206, Neg. LLF: 138.94922366809996
Optimization terminated successfully (Exit mode 0)
Current function value: 138.94922369056556
Iterations: 22
Function evaluations: 206
Gradient evaluations: 22
Iteration: 1, Func. Count: 11, Neg. LLF: 252.60490724367492
Iteration: 2, Func. Count: 22, Neg. LLF: 322.6508470800011
Iteration: 3, Func. Count: 33, Neg. LLF: 159.87719978921083
Iteration: 4, Func. Count: 44, Neg. LLF: 177.35139393875752
Iteration: 5, Func. Count: 55, Neg. LLF: 153.51833618443288
Iteration: 6, Func. Count: 66, Neg. LLF: 239.79576048201744
Iteration: 7, Func. Count: 77, Neg. LLF: 139.54503430597143
Iteration: 8, Func. Count: 87, Neg. LLF: 139.05928941171504
Iteration: 9, Func. Count: 97, Neg. LLF: 139.0407130881455
Iteration: 10, Func. Count: 107, Neg. LLF: 139.02070087016747
Iteration: 11, Func. Count: 117, Neg. LLF: 139.0161709944643
Iteration: 12, Func. Count: 127, Neg. LLF: 139.01355923116287
Iteration: 13, Func. Count: 137, Neg. LLF: 139.0115912987773
Iteration: 14, Func. Count: 147, Neg. LLF: 138.99877722858315
Iteration: 15, Func. Count: 157, Neg. LLF: 138.98960571332177
Iteration: 16, Func. Count: 167, Neg. LLF: 138.97037683989643
Iteration: 17, Func. Count: 177, Neg. LLF: 138.94966768242716
Iteration: 18, Func. Count: 187, Neg. LLF: 138.94936448390143
Iteration: 19, Func. Count: 197, Neg. LLF: 138.94925872454
Iteration: 20, Func. Count: 207, Neg. LLF: 138.94922770341046
Iteration: 21, Func. Count: 217, Neg. LLF: 138.9492244031296
Iteration: 22, Func. Count: 227, Neg. LLF: 138.94922350434015
Optimization terminated successfully (Exit mode 0)
Current function value: 138.94922350434015
Iterations: 22
Function evaluations: 227
Gradient evaluations: 22
Iteration: 1, Func. Count: 12, Neg. LLF: 247.34311574962632
Iteration: 2, Func. Count: 24, Neg. LLF: 301.49962449976016
Iteration: 3, Func. Count: 36, Neg. LLF: 158.82008142253446
Iteration: 4, Func. Count: 48, Neg. LLF: 166.71341428069798
Iteration: 5, Func. Count: 60, Neg. LLF: 145.68847382981548
Iteration: 6, Func. Count: 72, Neg. LLF: 419.77446795750706
Iteration: 7, Func. Count: 84, Neg. LLF: 139.15850752421628
Iteration: 8, Func. Count: 95, Neg. LLF: 139.1080061391996
Iteration: 9, Func. Count: 107, Neg. LLF: 139.03734386336623
Iteration: 10, Func. Count: 119, Neg. LLF: 139.0180955218691
Iteration: 11, Func. Count: 130, Neg. LLF: 139.01604501685097
Iteration: 12, Func. Count: 141, Neg. LLF: 139.0154711659444
Iteration: 13, Func. Count: 152, Neg. LLF: 139.0140050876664
Iteration: 14, Func. Count: 163, Neg. LLF: 139.00945465245601
Iteration: 15, Func. Count: 174, Neg. LLF: 139.0040898151714
Iteration: 16, Func. Count: 185, Neg. LLF: 138.99272434335825
Iteration: 17, Func. Count: 196, Neg. LLF: 138.9705539217163
Iteration: 18, Func. Count: 207, Neg. LLF: 138.9547538459249
Iteration: 19, Func. Count: 218, Neg. LLF: 138.95000655101907
Iteration: 20, Func. Count: 229, Neg. LLF: 138.94944044852582
Iteration: 21, Func. Count: 240, Neg. LLF: 138.94928026687847
Iteration: 22, Func. Count: 251, Neg. LLF: 138.94922779609257
Iteration: 23, Func. Count: 262, Neg. LLF: 138.94922361316782
Iteration: 24, Func. Count: 272, Neg. LLF: 138.94922359280312
Optimization terminated successfully (Exit mode 0)
Current function value: 138.94922361316782
Iterations: 24
Function evaluations: 272
Gradient evaluations: 24
Iteration: 1, Func. Count: 13, Neg. LLF: 244.4815815739884
Iteration: 2, Func. Count: 26, Neg. LLF: 281.01611979145133
Iteration: 3, Func. Count: 39, Neg. LLF: 157.28152692600383
Iteration: 4, Func. Count: 52, Neg. LLF: 143.38231364957406
Iteration: 5, Func. Count: 65, Neg. LLF: 140.8959877429256
Iteration: 6, Func. Count: 78, Neg. LLF: 146.2523192932446
Iteration: 7, Func. Count: 91, Neg. LLF: 139.07523235963365
Iteration: 8, Func. Count: 103, Neg. LLF: 139.0267542169704
Iteration: 9, Func. Count: 115, Neg. LLF: 139.00807282239202
Iteration: 10, Func. Count: 127, Neg. LLF: 139.003864085125
Iteration: 11, Func. Count: 139, Neg. LLF: 138.99577651836526
Iteration: 12, Func. Count: 151, Neg. LLF: 138.97083481575703
Iteration: 13, Func. Count: 163, Neg. LLF: 138.95645820607686
Iteration: 14, Func. Count: 175, Neg. LLF: 138.95280991415703
Iteration: 15, Func. Count: 187, Neg. LLF: 138.94936260274173
Iteration: 16, Func. Count: 199, Neg. LLF: 138.94923427651247
Iteration: 17, Func. Count: 211, Neg. LLF: 138.94922413293776
Iteration: 18, Func. Count: 222, Neg. LLF: 138.94922414587245
Optimization terminated successfully (Exit mode 0)
Current function value: 138.94922413293776
Iterations: 18
Function evaluations: 222
Gradient evaluations: 18
Iteration: 1, Func. Count: 10, Neg. LLF: 176.8692016599546
Iteration: 2, Func. Count: 20, Neg. LLF: 167.9989633721068
Iteration: 3, Func. Count: 31, Neg. LLF: 160.05077814101855
Iteration: 4, Func. Count: 41, Neg. LLF: 140.79681080879243
Iteration: 5, Func. Count: 50, Neg. LLF: 140.13512114259032
Iteration: 6, Func. Count: 59, Neg. LLF: 181.62979474112686
Iteration: 7, Func. Count: 69, Neg. LLF: 697.9627804811109
Iteration: 8, Func. Count: 79, Neg. LLF: 618.1940072049593
Iteration: 9, Func. Count: 89, Neg. LLF: 2351.5739817112503
Iteration: 10, Func. Count: 99, Neg. LLF: 2810.332481264369
Iteration: 11, Func. Count: 109, Neg. LLF: 140.7789350740108
Iteration: 12, Func. Count: 119, Neg. LLF: 137.3888289556962
Iteration: 13, Func. Count: 129, Neg. LLF: 137.10497997819115
Iteration: 14, Func. Count: 138, Neg. LLF: 137.10157995922577
Iteration: 15, Func. Count: 147, Neg. LLF: 137.10142932564813
Iteration: 16, Func. Count: 156, Neg. LLF: 137.1013714701401
Iteration: 17, Func. Count: 165, Neg. LLF: 137.10136645160102
Iteration: 18, Func. Count: 174, Neg. LLF: 137.10135774508117
Iteration: 19, Func. Count: 183, Neg. LLF: 137.10135552679074
Iteration: 20, Func. Count: 191, Neg. LLF: 137.101355517817
Optimization terminated successfully (Exit mode 0)
Current function value: 137.10135552679074
Iterations: 20
Function evaluations: 191
Gradient evaluations: 20
Iteration: 1, Func. Count: 11, Neg. LLF: 259.57741337353474
Iteration: 2, Func. Count: 22, Neg. LLF: 171.25585001045042
Iteration: 3, Func. Count: 33, Neg. LLF: 167.07121215300796
Iteration: 4, Func. Count: 44, Neg. LLF: 142.13896081265125
Iteration: 5, Func. Count: 55, Neg. LLF: 137.9196079654425
Iteration: 6, Func. Count: 65, Neg. LLF: 137.30668913047288
Iteration: 7, Func. Count: 75, Neg. LLF: 137.98378621163025
Iteration: 8, Func. Count: 86, Neg. LLF: 137.10944355787603
Iteration: 9, Func. Count: 96, Neg. LLF: 137.10309562242008
Iteration: 10, Func. Count: 106, Neg. LLF: 137.10142186982696
Iteration: 11, Func. Count: 116, Neg. LLF: 137.10136897609803
Iteration: 12, Func. Count: 126, Neg. LLF: 137.1013590594061
Iteration: 13, Func. Count: 136, Neg. LLF: 137.10135557204694
Iteration: 14, Func. Count: 145, Neg. LLF: 137.10135559241039
Optimization terminated successfully (Exit mode 0)
Current function value: 137.10135557204694
Iterations: 14
Function evaluations: 145
Gradient evaluations: 14
Iteration: 1, Func. Count: 12, Neg. LLF: 252.11119080751467
Iteration: 2, Func. Count: 24, Neg. LLF: 216.4937639166067
Iteration: 3, Func. Count: 36, Neg. LLF: 139.03640498620464
Iteration: 4, Func. Count: 47, Neg. LLF: 142.2526667174071
Iteration: 5, Func. Count: 59, Neg. LLF: 161.6058020210608
Iteration: 6, Func. Count: 71, Neg. LLF: 143.25605674982432
Iteration: 7, Func. Count: 83, Neg. LLF: 137.19422706297786
Iteration: 8, Func. Count: 94, Neg. LLF: 137.12598720108613
Iteration: 9, Func. Count: 105, Neg. LLF: 137.10348837875236
Iteration: 10, Func. Count: 116, Neg. LLF: 137.10156434983512
Iteration: 11, Func. Count: 127, Neg. LLF: 137.10138376189676
Iteration: 12, Func. Count: 138, Neg. LLF: 137.10135709294318
Iteration: 13, Func. Count: 149, Neg. LLF: 137.1013554805247
Iteration: 14, Func. Count: 159, Neg. LLF: 137.10135550182628
Optimization terminated successfully (Exit mode 0)
Current function value: 137.1013554805247
Iterations: 14
Function evaluations: 159
Gradient evaluations: 14
Iteration: 1, Func. Count: 13, Neg. LLF: 247.23062356394925
Iteration: 2, Func. Count: 26, Neg. LLF: 216.57868825979432
Iteration: 3, Func. Count: 39, Neg. LLF: 138.6063739458329
Iteration: 4, Func. Count: 51, Neg. LLF: 141.88149183305512
Iteration: 5, Func. Count: 64, Neg. LLF: 157.20049145223754
Iteration: 6, Func. Count: 77, Neg. LLF: 141.41022001195168
Iteration: 7, Func. Count: 90, Neg. LLF: 137.22112706405375
Iteration: 8, Func. Count: 102, Neg. LLF: 137.15564806080673
Iteration: 9, Func. Count: 114, Neg. LLF: 137.1124104242616
Iteration: 10, Func. Count: 126, Neg. LLF: 137.10528677454764
Iteration: 11, Func. Count: 138, Neg. LLF: 137.1009452987603
Iteration: 12, Func. Count: 150, Neg. LLF: 137.10071891453654
Iteration: 13, Func. Count: 162, Neg. LLF: 137.10067172708756
Iteration: 14, Func. Count: 173, Neg. LLF: 137.10067170850922
Optimization terminated successfully (Exit mode 0)
Current function value: 137.10067172708756
Iterations: 14
Function evaluations: 173
Gradient evaluations: 14
Iteration: 1, Func. Count: 14, Neg. LLF: 244.07093451760392
Iteration: 2, Func. Count: 28, Neg. LLF: 230.76211648329962
Iteration: 3, Func. Count: 42, Neg. LLF: 139.12305149274653
Iteration: 4, Func. Count: 55, Neg. LLF: 140.62009622142918
Iteration: 5, Func. Count: 69, Neg. LLF: 140.53638320899975
Iteration: 6, Func. Count: 83, Neg. LLF: 139.2122542448701
Iteration: 7, Func. Count: 97, Neg. LLF: 141.57828330965472
Iteration: 8, Func. Count: 111, Neg. LLF: 137.1639602113203
Iteration: 9, Func. Count: 124, Neg. LLF: 137.11669125021396
Iteration: 10, Func. Count: 137, Neg. LLF: 137.10741342679464
Iteration: 11, Func. Count: 150, Neg. LLF: 137.10178219804533
Iteration: 12, Func. Count: 163, Neg. LLF: 137.10080011466175
Iteration: 13, Func. Count: 176, Neg. LLF: 137.10068357480475
Iteration: 14, Func. Count: 189, Neg. LLF: 137.1006741808958
Iteration: 15, Func. Count: 202, Neg. LLF: 137.1006717083896
Iteration: 16, Func. Count: 214, Neg. LLF: 137.10067176849586
Optimization terminated successfully (Exit mode 0)
Current function value: 137.1006717083896
Iterations: 16
Function evaluations: 214
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 176.37257501002443
Iteration: 2, Func. Count: 23, Neg. LLF: 174.59181615724145
Iteration: 3, Func. Count: 35, Neg. LLF: 163.55188706157998
Iteration: 4, Func. Count: 46, Neg. LLF: 140.76854893330855
Iteration: 5, Func. Count: 56, Neg. LLF: 140.07886304619956
Iteration: 6, Func. Count: 66, Neg. LLF: 140.85639627625662
Iteration: 7, Func. Count: 77, Neg. LLF: 402.73141198801875
Iteration: 8, Func. Count: 88, Neg. LLF: 171.37360331419026
Iteration: 9, Func. Count: 99, Neg. LLF: 138.94343436983308
Iteration: 10, Func. Count: 110, Neg. LLF: 137.21796602371026
Iteration: 11, Func. Count: 120, Neg. LLF: 137.1127138132812
Iteration: 12, Func. Count: 130, Neg. LLF: 137.1029980113901
Iteration: 13, Func. Count: 140, Neg. LLF: 137.10178046774215
Iteration: 14, Func. Count: 150, Neg. LLF: 137.1016290767014
Iteration: 15, Func. Count: 160, Neg. LLF: 137.10138618853966
Iteration: 16, Func. Count: 170, Neg. LLF: 137.10136342125398
Iteration: 17, Func. Count: 180, Neg. LLF: 137.10135550258815
Iteration: 18, Func. Count: 189, Neg. LLF: 137.10135552604476
Optimization terminated successfully (Exit mode 0)
Current function value: 137.10135550258815
Iterations: 18
Function evaluations: 189
Gradient evaluations: 18
Iteration: 1, Func. Count: 12, Neg. LLF: 257.2610387322085
Iteration: 2, Func. Count: 24, Neg. LLF: 202.27859168557035
Iteration: 3, Func. Count: 36, Neg. LLF: 167.92989174435388
Iteration: 4, Func. Count: 48, Neg. LLF: 143.4896054537759
Iteration: 5, Func. Count: 60, Neg. LLF: 140.59141805116298
Iteration: 6, Func. Count: 72, Neg. LLF: 138.04697366601283
Iteration: 7, Func. Count: 83, Neg. LLF: 137.24255713706756
Iteration: 8, Func. Count: 94, Neg. LLF: 137.12606442588356
Iteration: 9, Func. Count: 105, Neg. LLF: 137.10203805804892
Iteration: 10, Func. Count: 116, Neg. LLF: 137.10146665870897
Iteration: 11, Func. Count: 127, Neg. LLF: 137.10139371798795
Iteration: 12, Func. Count: 138, Neg. LLF: 137.10136227710714
Iteration: 13, Func. Count: 149, Neg. LLF: 137.10135590959294
Iteration: 14, Func. Count: 159, Neg. LLF: 137.10135592996235
Optimization terminated successfully (Exit mode 0)
Current function value: 137.10135590959294
Iterations: 14
Function evaluations: 159
Gradient evaluations: 14
Iteration: 1, Func. Count: 13, Neg. LLF: 249.08043370395535
Iteration: 2, Func. Count: 26, Neg. LLF: 211.02920980705034
Iteration: 3, Func. Count: 39, Neg. LLF: 139.3391800126025
Iteration: 4, Func. Count: 51, Neg. LLF: 140.64346209590536
Iteration: 5, Func. Count: 64, Neg. LLF: 142.64487570105635
Iteration: 6, Func. Count: 77, Neg. LLF: 137.4476240406206
Iteration: 7, Func. Count: 89, Neg. LLF: 137.22921213280983
Iteration: 8, Func. Count: 101, Neg. LLF: 137.10453840118646
Iteration: 9, Func. Count: 113, Neg. LLF: 137.10227660104667
Iteration: 10, Func. Count: 125, Neg. LLF: 137.10138979552724
Iteration: 11, Func. Count: 137, Neg. LLF: 137.10136221669975
Iteration: 12, Func. Count: 149, Neg. LLF: 137.1013554853421
Iteration: 13, Func. Count: 160, Neg. LLF: 137.10135550663196
Optimization terminated successfully (Exit mode 0)
Current function value: 137.1013554853421
Iterations: 13
Function evaluations: 160
Gradient evaluations: 13
Iteration: 1, Func. Count: 14, Neg. LLF: 243.60247385362794
Iteration: 2, Func. Count: 28, Neg. LLF: 211.2212609477795
Iteration: 3, Func. Count: 42, Neg. LLF: 138.48881983788402
Iteration: 4, Func. Count: 55, Neg. LLF: 141.6931508574442
Iteration: 5, Func. Count: 69, Neg. LLF: 145.96111828247783
Iteration: 6, Func. Count: 83, Neg. LLF: 140.62020111262683
Iteration: 7, Func. Count: 97, Neg. LLF: 137.18290523920382
Iteration: 8, Func. Count: 110, Neg. LLF: 137.15261844163237
Iteration: 9, Func. Count: 123, Neg. LLF: 137.10772384974126
Iteration: 10, Func. Count: 136, Neg. LLF: 137.10432559019029
Iteration: 11, Func. Count: 149, Neg. LLF: 137.1007037808418
Iteration: 12, Func. Count: 162, Neg. LLF: 137.10067547296683
Iteration: 13, Func. Count: 175, Neg. LLF: 137.10067243383202
Iteration: 14, Func. Count: 188, Neg. LLF: 137.1006713667674
Iteration: 15, Func. Count: 200, Neg. LLF: 137.10067134814932
Optimization terminated successfully (Exit mode 0)
Current function value: 137.1006713667674
Iterations: 15
Function evaluations: 200
Gradient evaluations: 15
Iteration: 1, Func. Count: 15, Neg. LLF: 240.20169255998042
Iteration: 2, Func. Count: 30, Neg. LLF: 227.40133572680733
Iteration: 3, Func. Count: 45, Neg. LLF: 139.6718715155132
Iteration: 4, Func. Count: 59, Neg. LLF: 138.67839382272257
Iteration: 5, Func. Count: 73, Neg. LLF: 142.07157472814464
Iteration: 6, Func. Count: 88, Neg. LLF: 160.34442924099798
Iteration: 7, Func. Count: 103, Neg. LLF: 137.21657481583102
Iteration: 8, Func. Count: 117, Neg. LLF: 137.11087179886226
Iteration: 9, Func. Count: 131, Neg. LLF: 137.1040585021384
Iteration: 10, Func. Count: 145, Neg. LLF: 137.1013610697943
Iteration: 11, Func. Count: 159, Neg. LLF: 137.10089714432533
Iteration: 12, Func. Count: 173, Neg. LLF: 137.10070792009896
Iteration: 13, Func. Count: 187, Neg. LLF: 137.1006748644176
Iteration: 14, Func. Count: 201, Neg. LLF: 137.1006714361299
Iteration: 15, Func. Count: 214, Neg. LLF: 137.10067149627443
Optimization terminated successfully (Exit mode 0)
Current function value: 137.1006714361299
Iterations: 15
Function evaluations: 214
Gradient evaluations: 15
Iteration: 1, Func. Count: 8, Neg. LLF: 147.1492984442661
Iteration: 2, Func. Count: 16, Neg. LLF: 147.0156452612301
Iteration: 3, Func. Count: 24, Neg. LLF: 150.3983817853972
Iteration: 4, Func. Count: 32, Neg. LLF: 144.7329197898597
Iteration: 5, Func. Count: 39, Neg. LLF: 149.30502703711983
Iteration: 6, Func. Count: 47, Neg. LLF: 216.94402203984288
Iteration: 7, Func. Count: 55, Neg. LLF: 735.1972460894199
Iteration: 8, Func. Count: 63, Neg. LLF: 469.4327109224459
Iteration: 9, Func. Count: 71, Neg. LLF: 813.1221101828488
Iteration: 10, Func. Count: 79, Neg. LLF: 151.46452682428807
Iteration: 11, Func. Count: 87, Neg. LLF: 156.28456804223643
Iteration: 12, Func. Count: 95, Neg. LLF: 143.85656570340024
Iteration: 13, Func. Count: 103, Neg. LLF: 139.94775607517312
Iteration: 14, Func. Count: 110, Neg. LLF: 139.57113917722197
Iteration: 15, Func. Count: 117, Neg. LLF: 139.49919628581216
Iteration: 16, Func. Count: 124, Neg. LLF: 139.46110807176558
Iteration: 17, Func. Count: 131, Neg. LLF: 139.45017848412027
Iteration: 18, Func. Count: 138, Neg. LLF: 139.4410113913669
Iteration: 19, Func. Count: 145, Neg. LLF: 139.44027172977374
Iteration: 20, Func. Count: 152, Neg. LLF: 139.44016782983692
Iteration: 21, Func. Count: 158, Neg. LLF: 139.4401678266524
Optimization terminated successfully (Exit mode 0)
Current function value: 139.44016782983692
Iterations: 21
Function evaluations: 158
Gradient evaluations: 21
Iteration: 1, Func. Count: 9, Neg. LLF: 166.94924282967511
Iteration: 2, Func. Count: 18, Neg. LLF: 186.11787606693903
Iteration: 3, Func. Count: 27, Neg. LLF: 268.0629291419932
Iteration: 4, Func. Count: 36, Neg. LLF: 139.87072298131602
Iteration: 5, Func. Count: 44, Neg. LLF: 147.82557514862322
Iteration: 6, Func. Count: 53, Neg. LLF: 140.30766461478765
Iteration: 7, Func. Count: 62, Neg. LLF: 139.50102159963555
Iteration: 8, Func. Count: 70, Neg. LLF: 139.4812167783957
Iteration: 9, Func. Count: 78, Neg. LLF: 139.46092314398797
Iteration: 10, Func. Count: 86, Neg. LLF: 139.45374664597816
Iteration: 11, Func. Count: 94, Neg. LLF: 139.4506256514735
Iteration: 12, Func. Count: 102, Neg. LLF: 139.44404210276218
Iteration: 13, Func. Count: 110, Neg. LLF: 139.44144060401158
Iteration: 14, Func. Count: 118, Neg. LLF: 139.44040178895236
Iteration: 15, Func. Count: 126, Neg. LLF: 139.44016817157495
Iteration: 16, Func. Count: 133, Neg. LLF: 139.4401681550337
Optimization terminated successfully (Exit mode 0)
Current function value: 139.44016817157495
Iterations: 16
Function evaluations: 133
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 160.86700919409864
Iteration: 2, Func. Count: 20, Neg. LLF: 216.0277627472489
Iteration: 3, Func. Count: 30, Neg. LLF: 166.52014777032443
Iteration: 4, Func. Count: 40, Neg. LLF: 142.70493655457108
Iteration: 5, Func. Count: 50, Neg. LLF: 141.87564317982222
Iteration: 6, Func. Count: 60, Neg. LLF: 139.5513297140721
Iteration: 7, Func. Count: 69, Neg. LLF: 139.49411706928927
Iteration: 8, Func. Count: 78, Neg. LLF: 139.4789052755483
Iteration: 9, Func. Count: 87, Neg. LLF: 139.46099983956495
Iteration: 10, Func. Count: 96, Neg. LLF: 139.4557432662559
Iteration: 11, Func. Count: 105, Neg. LLF: 139.45291555281312
Iteration: 12, Func. Count: 114, Neg. LLF: 139.4473561299158
Iteration: 13, Func. Count: 123, Neg. LLF: 139.44330485081053
Iteration: 14, Func. Count: 132, Neg. LLF: 139.44037345061696
Iteration: 15, Func. Count: 141, Neg. LLF: 139.44017490466027
Iteration: 16, Func. Count: 150, Neg. LLF: 139.44016899344285
Iteration: 17, Func. Count: 159, Neg. LLF: 139.4401678156214
Iteration: 18, Func. Count: 167, Neg. LLF: 139.44016780700056
Optimization terminated successfully (Exit mode 0)
Current function value: 139.4401678156214
Iterations: 18
Function evaluations: 167
Gradient evaluations: 18
Iteration: 1, Func. Count: 11, Neg. LLF: 157.34533111040943
Iteration: 2, Func. Count: 22, Neg. LLF: 277.5061394479748
Iteration: 3, Func. Count: 33, Neg. LLF: 161.7939835619325
Iteration: 4, Func. Count: 44, Neg. LLF: 140.9265177413248
Iteration: 5, Func. Count: 55, Neg. LLF: 140.2446009813851
Iteration: 6, Func. Count: 66, Neg. LLF: 139.47616477477376
Iteration: 7, Func. Count: 76, Neg. LLF: 139.4749775218295
Iteration: 8, Func. Count: 87, Neg. LLF: 139.45317598882517
Iteration: 9, Func. Count: 97, Neg. LLF: 139.44816104724342
Iteration: 10, Func. Count: 107, Neg. LLF: 139.44704026579993
Iteration: 11, Func. Count: 117, Neg. LLF: 139.446601512724
Iteration: 12, Func. Count: 127, Neg. LLF: 139.4444229738153
Iteration: 13, Func. Count: 137, Neg. LLF: 139.4419645826543
Iteration: 14, Func. Count: 147, Neg. LLF: 139.44076875569993
Iteration: 15, Func. Count: 157, Neg. LLF: 139.44022022026297
Iteration: 16, Func. Count: 167, Neg. LLF: 139.44017015992637
Iteration: 17, Func. Count: 177, Neg. LLF: 139.4401678405399
Iteration: 18, Func. Count: 186, Neg. LLF: 139.4401678408204
Optimization terminated successfully (Exit mode 0)
Current function value: 139.4401678405399
Iterations: 18
Function evaluations: 186
Gradient evaluations: 18
Iteration: 1, Func. Count: 12, Neg. LLF: 155.52817225225073
Iteration: 2, Func. Count: 24, Neg. LLF: 203.40657516146698
Iteration: 3, Func. Count: 36, Neg. LLF: 155.22849354982847
Iteration: 4, Func. Count: 48, Neg. LLF: 139.63089665233568
Iteration: 5, Func. Count: 59, Neg. LLF: 139.49208840638659
Iteration: 6, Func. Count: 70, Neg. LLF: 139.56942133537513
Iteration: 7, Func. Count: 82, Neg. LLF: 139.44591693288922
Iteration: 8, Func. Count: 93, Neg. LLF: 139.44439432154434
Iteration: 9, Func. Count: 104, Neg. LLF: 139.44351108779097
Iteration: 10, Func. Count: 115, Neg. LLF: 139.44273164083444
Iteration: 11, Func. Count: 126, Neg. LLF: 139.44217068283047
Iteration: 12, Func. Count: 137, Neg. LLF: 139.441182768245
Iteration: 13, Func. Count: 148, Neg. LLF: 139.44062001760093
Iteration: 14, Func. Count: 159, Neg. LLF: 139.44025105995217
Iteration: 15, Func. Count: 170, Neg. LLF: 139.44017693841047
Iteration: 16, Func. Count: 181, Neg. LLF: 139.44016828257222
Iteration: 17, Func. Count: 191, Neg. LLF: 139.44016827006817
Optimization terminated successfully (Exit mode 0)
Current function value: 139.44016828257222
Iterations: 17
Function evaluations: 191
Gradient evaluations: 17
Iteration: 1, Func. Count: 9, Neg. LLF: 146.8785763840774
Iteration: 2, Func. Count: 18, Neg. LLF: 146.41645057870477
Iteration: 3, Func. Count: 27, Neg. LLF: 145.76350049329488
Iteration: 4, Func. Count: 36, Neg. LLF: 143.33764087390668
Iteration: 5, Func. Count: 44, Neg. LLF: 72005.65665638096
Iteration: 6, Func. Count: 53, Neg. LLF: 232.07407649290326
Iteration: 7, Func. Count: 62, Neg. LLF: 168.42206204828133
Iteration: 8, Func. Count: 71, Neg. LLF: 155.88492902501935
Iteration: 9, Func. Count: 80, Neg. LLF: 160.64894364566376
Iteration: 10, Func. Count: 89, Neg. LLF: 143.3919446070963
Iteration: 11, Func. Count: 98, Neg. LLF: 141.227269280255
Iteration: 12, Func. Count: 107, Neg. LLF: 139.09624725111993
Iteration: 13, Func. Count: 115, Neg. LLF: 139.04100843049343
Iteration: 14, Func. Count: 123, Neg. LLF: 139.0049727315136
Iteration: 15, Func. Count: 131, Neg. LLF: 138.97220461757186
Iteration: 16, Func. Count: 139, Neg. LLF: 138.96759686558434
Iteration: 17, Func. Count: 147, Neg. LLF: 138.96652903952594
Iteration: 18, Func. Count: 155, Neg. LLF: 138.96641387041643
Iteration: 19, Func. Count: 163, Neg. LLF: 138.96638581424722
Iteration: 20, Func. Count: 171, Neg. LLF: 138.96638466218099
Iteration: 21, Func. Count: 178, Neg. LLF: 138.96638467348177
Optimization terminated successfully (Exit mode 0)
Current function value: 138.96638466218099
Iterations: 21
Function evaluations: 178
Gradient evaluations: 21
Iteration: 1, Func. Count: 10, Neg. LLF: 174.43529785706113
Iteration: 2, Func. Count: 20, Neg. LLF: 151.7697603737005
Iteration: 3, Func. Count: 30, Neg. LLF: 158.02768361274593
Iteration: 4, Func. Count: 40, Neg. LLF: 154.60736157777256
Iteration: 5, Func. Count: 50, Neg. LLF: 140.81971833776666
Iteration: 6, Func. Count: 60, Neg. LLF: 140.86781049556677
Iteration: 7, Func. Count: 70, Neg. LLF: 139.12954097002608
Iteration: 8, Func. Count: 79, Neg. LLF: 139.0569609356504
Iteration: 9, Func. Count: 88, Neg. LLF: 139.02150200260823
Iteration: 10, Func. Count: 97, Neg. LLF: 138.9881913824202
Iteration: 11, Func. Count: 106, Neg. LLF: 138.9812381652377
Iteration: 12, Func. Count: 115, Neg. LLF: 138.9761634682402
Iteration: 13, Func. Count: 124, Neg. LLF: 138.97211897247266
Iteration: 14, Func. Count: 133, Neg. LLF: 138.96680391125085
Iteration: 15, Func. Count: 142, Neg. LLF: 138.96648497244828
Iteration: 16, Func. Count: 151, Neg. LLF: 138.96639473761329
Iteration: 17, Func. Count: 160, Neg. LLF: 138.9663879277898
Iteration: 18, Func. Count: 169, Neg. LLF: 138.96638466937483
Iteration: 19, Func. Count: 177, Neg. LLF: 138.9663846530997
Optimization terminated successfully (Exit mode 0)
Current function value: 138.96638466937483
Iterations: 19
Function evaluations: 177
Gradient evaluations: 19
Iteration: 1, Func. Count: 11, Neg. LLF: 167.4953246816323
Iteration: 2, Func. Count: 22, Neg. LLF: 152.02091779102628
Iteration: 3, Func. Count: 33, Neg. LLF: 247.87908739710758
Iteration: 4, Func. Count: 44, Neg. LLF: 150.05007482118938
Iteration: 5, Func. Count: 55, Neg. LLF: 144.18704227478312
Iteration: 6, Func. Count: 66, Neg. LLF: 139.88117733785919
Iteration: 7, Func. Count: 77, Neg. LLF: 139.0885138114837
Iteration: 8, Func. Count: 87, Neg. LLF: 139.03353537170304
Iteration: 9, Func. Count: 97, Neg. LLF: 138.98552291491967
Iteration: 10, Func. Count: 107, Neg. LLF: 138.97694224627043
Iteration: 11, Func. Count: 117, Neg. LLF: 138.97435269819965
Iteration: 12, Func. Count: 127, Neg. LLF: 138.96683317646563
Iteration: 13, Func. Count: 137, Neg. LLF: 138.96654659060425
Iteration: 14, Func. Count: 147, Neg. LLF: 138.96638585659767
Iteration: 15, Func. Count: 157, Neg. LLF: 138.966384824569
Iteration: 16, Func. Count: 166, Neg. LLF: 138.96638483904982
Optimization terminated successfully (Exit mode 0)
Current function value: 138.966384824569
Iterations: 16
Function evaluations: 166
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 164.11180724229436
Iteration: 2, Func. Count: 24, Neg. LLF: 153.97127763451078
Iteration: 3, Func. Count: 36, Neg. LLF: 159.24069813171178
Iteration: 4, Func. Count: 48, Neg. LLF: 139.80476182619532
Iteration: 5, Func. Count: 59, Neg. LLF: 155.85491050303793
Iteration: 6, Func. Count: 71, Neg. LLF: 139.10689823137773
Iteration: 7, Func. Count: 82, Neg. LLF: 139.05102526949955
Iteration: 8, Func. Count: 93, Neg. LLF: 139.00153148839595
Iteration: 9, Func. Count: 104, Neg. LLF: 138.98251086917654
Iteration: 10, Func. Count: 115, Neg. LLF: 138.96986017423671
Iteration: 11, Func. Count: 126, Neg. LLF: 138.96729518032095
Iteration: 12, Func. Count: 137, Neg. LLF: 138.96683547072462
Iteration: 13, Func. Count: 148, Neg. LLF: 138.96647121812828
Iteration: 14, Func. Count: 159, Neg. LLF: 138.9663937358639
Iteration: 15, Func. Count: 170, Neg. LLF: 138.9663848177453
Iteration: 16, Func. Count: 180, Neg. LLF: 138.96638480067813
Optimization terminated successfully (Exit mode 0)
Current function value: 138.9663848177453
Iterations: 16
Function evaluations: 180
Gradient evaluations: 16
Iteration: 1, Func. Count: 13, Neg. LLF: 162.17984563795608
Iteration: 2, Func. Count: 26, Neg. LLF: 153.226742654837
Iteration: 3, Func. Count: 39, Neg. LLF: 153.95546573491055
Iteration: 4, Func. Count: 52, Neg. LLF: 144.95827245921896
Iteration: 5, Func. Count: 65, Neg. LLF: 139.28334001470492
Iteration: 6, Func. Count: 77, Neg. LLF: 139.19232552171152
Iteration: 7, Func. Count: 90, Neg. LLF: 139.01737551655637
Iteration: 8, Func. Count: 102, Neg. LLF: 138.97854857386466
Iteration: 9, Func. Count: 114, Neg. LLF: 138.9708085917585
Iteration: 10, Func. Count: 126, Neg. LLF: 138.96748276650408
Iteration: 11, Func. Count: 138, Neg. LLF: 138.96659066211637
Iteration: 12, Func. Count: 150, Neg. LLF: 138.96646659415478
Iteration: 13, Func. Count: 162, Neg. LLF: 138.96639987877
Iteration: 14, Func. Count: 174, Neg. LLF: 138.96638567833156
Iteration: 15, Func. Count: 186, Neg. LLF: 138.96638465672984
Iteration: 16, Func. Count: 197, Neg. LLF: 138.96638466804455
Optimization terminated successfully (Exit mode 0)
Current function value: 138.96638465672984
Iterations: 16
Function evaluations: 197
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 156.1952796355285
Iteration: 2, Func. Count: 20, Neg. LLF: 165.80765117398957
Iteration: 3, Func. Count: 30, Neg. LLF: 173.55510854402962
Iteration: 4, Func. Count: 40, Neg. LLF: 153.72625339920032
Iteration: 5, Func. Count: 50, Neg. LLF: 181.61278363489745
Iteration: 6, Func. Count: 60, Neg. LLF: 141.5307663340448
Iteration: 7, Func. Count: 69, Neg. LLF: 140.51242480982583
Iteration: 8, Func. Count: 78, Neg. LLF: 139.4252236462965
Iteration: 9, Func. Count: 87, Neg. LLF: 139.03107065739306
Iteration: 10, Func. Count: 96, Neg. LLF: 138.96462239715032
Iteration: 11, Func. Count: 105, Neg. LLF: 138.95167558152346
Iteration: 12, Func. Count: 114, Neg. LLF: 138.9504982378694
Iteration: 13, Func. Count: 123, Neg. LLF: 138.94922600234355
Iteration: 14, Func. Count: 132, Neg. LLF: 138.9492234722864
Iteration: 15, Func. Count: 140, Neg. LLF: 138.9492234577287
Optimization terminated successfully (Exit mode 0)
Current function value: 138.9492234722864
Iterations: 15
Function evaluations: 140
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 189.10697008516686
Iteration: 2, Func. Count: 22, Neg. LLF: 154.23087526171636
Iteration: 3, Func. Count: 33, Neg. LLF: 163.93624188871902
Iteration: 4, Func. Count: 44, Neg. LLF: 177.7411548689828
Iteration: 5, Func. Count: 55, Neg. LLF: 140.59876620036033
Iteration: 6, Func. Count: 66, Neg. LLF: 139.0984189614846
Iteration: 7, Func. Count: 76, Neg. LLF: 139.02952969254116
Iteration: 8, Func. Count: 86, Neg. LLF: 139.0192860176292
Iteration: 9, Func. Count: 96, Neg. LLF: 139.01390319624102
Iteration: 10, Func. Count: 106, Neg. LLF: 139.00975769152953
Iteration: 11, Func. Count: 116, Neg. LLF: 139.0055636993051
Iteration: 12, Func. Count: 126, Neg. LLF: 138.9803630224299
Iteration: 13, Func. Count: 136, Neg. LLF: 138.96728787941956
Iteration: 14, Func. Count: 146, Neg. LLF: 138.95243938874427
Iteration: 15, Func. Count: 156, Neg. LLF: 138.95038290576434
Iteration: 16, Func. Count: 166, Neg. LLF: 138.94928028356358
Iteration: 17, Func. Count: 176, Neg. LLF: 138.94922681436043
Iteration: 18, Func. Count: 186, Neg. LLF: 138.9492235473555
Iteration: 19, Func. Count: 195, Neg. LLF: 138.94922352483974
Optimization terminated successfully (Exit mode 0)
Current function value: 138.9492235473555
Iterations: 19
Function evaluations: 195
Gradient evaluations: 19
Iteration: 1, Func. Count: 12, Neg. LLF: 182.36139901781908
Iteration: 2, Func. Count: 24, Neg. LLF: 164.04290757771096
Iteration: 3, Func. Count: 36, Neg. LLF: 161.21635420969596
Iteration: 4, Func. Count: 48, Neg. LLF: 196.0364721948813
Iteration: 5, Func. Count: 60, Neg. LLF: 144.93845090047273
Iteration: 6, Func. Count: 72, Neg. LLF: 140.11053265788803
Iteration: 7, Func. Count: 84, Neg. LLF: 139.060971510378
Iteration: 8, Func. Count: 95, Neg. LLF: 139.01407234450167
Iteration: 9, Func. Count: 106, Neg. LLF: 139.0056456141882
Iteration: 10, Func. Count: 117, Neg. LLF: 138.9928482956862
Iteration: 11, Func. Count: 128, Neg. LLF: 138.9556857405746
Iteration: 12, Func. Count: 139, Neg. LLF: 138.95138808189074
Iteration: 13, Func. Count: 150, Neg. LLF: 138.94926454872484
Iteration: 14, Func. Count: 161, Neg. LLF: 138.9492373138963
Iteration: 15, Func. Count: 172, Neg. LLF: 138.9492264412585
Iteration: 16, Func. Count: 183, Neg. LLF: 138.94922375491393
Iteration: 17, Func. Count: 193, Neg. LLF: 138.94922377094252
Optimization terminated successfully (Exit mode 0)
Current function value: 138.94922375491393
Iterations: 17
Function evaluations: 193
Gradient evaluations: 17
Iteration: 1, Func. Count: 13, Neg. LLF: 209.7299868264803
Iteration: 2, Func. Count: 26, Neg. LLF: 291.29965621056783
Iteration: 3, Func. Count: 39, Neg. LLF: 161.1479228477436
Iteration: 4, Func. Count: 52, Neg. LLF: 144.8025089107847
Iteration: 5, Func. Count: 65, Neg. LLF: 141.44927383383464
Iteration: 6, Func. Count: 78, Neg. LLF: 140.5253038243756
Iteration: 7, Func. Count: 91, Neg. LLF: 139.3623165389711
Iteration: 8, Func. Count: 104, Neg. LLF: 139.03837898485784
Iteration: 9, Func. Count: 116, Neg. LLF: 139.01720489491535
Iteration: 10, Func. Count: 128, Neg. LLF: 139.00870228806477
Iteration: 11, Func. Count: 140, Neg. LLF: 138.98287442128128
Iteration: 12, Func. Count: 152, Neg. LLF: 138.96974176029767
Iteration: 13, Func. Count: 164, Neg. LLF: 138.95777940487207
Iteration: 14, Func. Count: 176, Neg. LLF: 138.95030354460275
Iteration: 15, Func. Count: 188, Neg. LLF: 138.9495922136987
Iteration: 16, Func. Count: 200, Neg. LLF: 138.9492710861517
Iteration: 17, Func. Count: 212, Neg. LLF: 138.94922804183386
Iteration: 18, Func. Count: 224, Neg. LLF: 138.94922364020695
Iteration: 19, Func. Count: 235, Neg. LLF: 138.9492236198516
Optimization terminated successfully (Exit mode 0)
Current function value: 138.94922364020695
Iterations: 19
Function evaluations: 235
Gradient evaluations: 19
Iteration: 1, Func. Count: 14, Neg. LLF: 184.76488171141241
Iteration: 2, Func. Count: 28, Neg. LLF: 285.1774570742978
Iteration: 3, Func. Count: 42, Neg. LLF: 155.00050999912804
Iteration: 4, Func. Count: 56, Neg. LLF: 149.4140714876383
Iteration: 5, Func. Count: 70, Neg. LLF: 139.72684431365008
Iteration: 6, Func. Count: 83, Neg. LLF: 146.71638671717662
Iteration: 7, Func. Count: 97, Neg. LLF: 139.68403542941596
Iteration: 8, Func. Count: 111, Neg. LLF: 139.03109139031903
Iteration: 9, Func. Count: 124, Neg. LLF: 139.0060800915516
Iteration: 10, Func. Count: 137, Neg. LLF: 138.99867627585004
Iteration: 11, Func. Count: 150, Neg. LLF: 138.98610912637696
Iteration: 12, Func. Count: 163, Neg. LLF: 138.97578069129406
Iteration: 13, Func. Count: 176, Neg. LLF: 138.9534670063092
Iteration: 14, Func. Count: 189, Neg. LLF: 138.94941084801874
Iteration: 15, Func. Count: 202, Neg. LLF: 138.94924496587194
Iteration: 16, Func. Count: 215, Neg. LLF: 138.94922978293903
Iteration: 17, Func. Count: 228, Neg. LLF: 138.94922393911628
Iteration: 18, Func. Count: 240, Neg. LLF: 138.94922395202187
Optimization terminated successfully (Exit mode 0)
Current function value: 138.94922393911628
Iterations: 18
Function evaluations: 240
Gradient evaluations: 18
Iteration: 1, Func. Count: 11, Neg. LLF: 174.74150849717074
Iteration: 2, Func. Count: 22, Neg. LLF: 179.38394431387476
Iteration: 3, Func. Count: 34, Neg. LLF: 162.6080471399284
Iteration: 4, Func. Count: 45, Neg. LLF: 141.03159101037107
Iteration: 5, Func. Count: 55, Neg. LLF: 140.351722396201
Iteration: 6, Func. Count: 65, Neg. LLF: 9692368.248569155
Iteration: 7, Func. Count: 76, Neg. LLF: 1006.9216221852981
Iteration: 8, Func. Count: 87, Neg. LLF: 5851.75437067975
Iteration: 9, Func. Count: 98, Neg. LLF: 390.080363293188
Iteration: 10, Func. Count: 109, Neg. LLF: 486.272247805135
Iteration: 11, Func. Count: 120, Neg. LLF: 148.50487323954994
Iteration: 12, Func. Count: 131, Neg. LLF: 138.28884737620723
Iteration: 13, Func. Count: 142, Neg. LLF: 137.14224846308556
Iteration: 14, Func. Count: 152, Neg. LLF: 137.10434170328472
Iteration: 15, Func. Count: 162, Neg. LLF: 137.10242727241481
Iteration: 16, Func. Count: 172, Neg. LLF: 137.10209415728752
Iteration: 17, Func. Count: 182, Neg. LLF: 137.1017304110166
Iteration: 18, Func. Count: 192, Neg. LLF: 137.1014009188133
Iteration: 19, Func. Count: 202, Neg. LLF: 137.10135921549752
Iteration: 20, Func. Count: 212, Neg. LLF: 137.10135575607282
Iteration: 21, Func. Count: 221, Neg. LLF: 137.10135574711262
Optimization terminated successfully (Exit mode 0)
Current function value: 137.10135575607282
Iterations: 21
Function evaluations: 221
Gradient evaluations: 21
Iteration: 1, Func. Count: 12, Neg. LLF: 253.99103113919855
Iteration: 2, Func. Count: 24, Neg. LLF: 205.5252615432919
Iteration: 3, Func. Count: 36, Neg. LLF: 170.6643415852714
Iteration: 4, Func. Count: 48, Neg. LLF: 143.46035428831598
Iteration: 5, Func. Count: 60, Neg. LLF: 155.3238913106529
Iteration: 6, Func. Count: 72, Neg. LLF: 139.22862141885727
Iteration: 7, Func. Count: 84, Neg. LLF: 137.51326352273196
Iteration: 8, Func. Count: 95, Neg. LLF: 137.1731060367692
Iteration: 9, Func. Count: 106, Neg. LLF: 137.10996637134983
Iteration: 10, Func. Count: 117, Neg. LLF: 137.1019589682712
Iteration: 11, Func. Count: 128, Neg. LLF: 137.1015495581307
Iteration: 12, Func. Count: 139, Neg. LLF: 137.10139735720705
Iteration: 13, Func. Count: 150, Neg. LLF: 137.10136308549315
Iteration: 14, Func. Count: 161, Neg. LLF: 137.10135577813304
Iteration: 15, Func. Count: 171, Neg. LLF: 137.1013557985068
Optimization terminated successfully (Exit mode 0)
Current function value: 137.10135577813304
Iterations: 15
Function evaluations: 171
Gradient evaluations: 15
Iteration: 1, Func. Count: 13, Neg. LLF: 246.5476038927369
Iteration: 2, Func. Count: 26, Neg. LLF: 221.08717005166525
Iteration: 3, Func. Count: 39, Neg. LLF: 139.8024279208281
Iteration: 4, Func. Count: 51, Neg. LLF: 140.30028494331626
Iteration: 5, Func. Count: 64, Neg. LLF: 142.42704039235454
Iteration: 6, Func. Count: 77, Neg. LLF: 137.60416086871325
Iteration: 7, Func. Count: 89, Neg. LLF: 137.77377109920124
Iteration: 8, Func. Count: 102, Neg. LLF: 137.123923833391
Iteration: 9, Func. Count: 114, Neg. LLF: 137.1051875719592
Iteration: 10, Func. Count: 126, Neg. LLF: 137.10171751917048
Iteration: 11, Func. Count: 138, Neg. LLF: 137.10142293501727
Iteration: 12, Func. Count: 150, Neg. LLF: 137.1013601398067
Iteration: 13, Func. Count: 162, Neg. LLF: 137.1013557028672
Iteration: 14, Func. Count: 173, Neg. LLF: 137.1013557242524
Optimization terminated successfully (Exit mode 0)
Current function value: 137.1013557028672
Iterations: 14
Function evaluations: 173
Gradient evaluations: 14
Iteration: 1, Func. Count: 14, Neg. LLF: 241.17189909599463
Iteration: 2, Func. Count: 28, Neg. LLF: 219.89041567324784
Iteration: 3, Func. Count: 42, Neg. LLF: 139.077858400091
Iteration: 4, Func. Count: 55, Neg. LLF: 140.64133668390267
Iteration: 5, Func. Count: 69, Neg. LLF: 165.67272900558464
Iteration: 6, Func. Count: 83, Neg. LLF: 140.41403922016207
Iteration: 7, Func. Count: 97, Neg. LLF: 137.20690805181223
Iteration: 8, Func. Count: 110, Neg. LLF: 137.15813581782342
Iteration: 9, Func. Count: 123, Neg. LLF: 137.110904810461
Iteration: 10, Func. Count: 136, Neg. LLF: 137.1059395387376
Iteration: 11, Func. Count: 149, Neg. LLF: 137.10100640285106
Iteration: 12, Func. Count: 162, Neg. LLF: 137.1007121568045
Iteration: 13, Func. Count: 175, Neg. LLF: 137.10067223510052
Iteration: 14, Func. Count: 188, Neg. LLF: 137.10067150504656
Optimization terminated successfully (Exit mode 0)
Current function value: 137.10067150504656
Iterations: 14
Function evaluations: 188
Gradient evaluations: 14
Iteration: 1, Func. Count: 15, Neg. LLF: 237.63354530988852
Iteration: 2, Func. Count: 30, Neg. LLF: 221.72536368547028
Iteration: 3, Func. Count: 45, Neg. LLF: 141.40090185063178
Iteration: 4, Func. Count: 59, Neg. LLF: 138.43423177642512
Iteration: 5, Func. Count: 73, Neg. LLF: 143.07788810281647
Iteration: 6, Func. Count: 88, Neg. LLF: 147.04395287512548
Iteration: 7, Func. Count: 103, Neg. LLF: 137.1559429308835
Iteration: 8, Func. Count: 117, Neg. LLF: 137.10506241546202
Iteration: 9, Func. Count: 131, Neg. LLF: 137.101931575551
Iteration: 10, Func. Count: 145, Neg. LLF: 137.10093092216897
Iteration: 11, Func. Count: 159, Neg. LLF: 137.10073520099067
Iteration: 12, Func. Count: 173, Neg. LLF: 137.10069182110092
Iteration: 13, Func. Count: 187, Neg. LLF: 137.1006722179287
Iteration: 14, Func. Count: 201, Neg. LLF: 137.10067139517565
Optimization terminated successfully (Exit mode 0)
Current function value: 137.10067139517565
Iterations: 14
Function evaluations: 201
Gradient evaluations: 14
Iteration: 1, Func. Count: 12, Neg. LLF: 173.7542013373418
Iteration: 2, Func. Count: 25, Neg. LLF: 184.9200194147544
Iteration: 3, Func. Count: 38, Neg. LLF: 168.57574488373126
Iteration: 4, Func. Count: 50, Neg. LLF: 140.85954246114008
Iteration: 5, Func. Count: 61, Neg. LLF: 140.16430056298734
Iteration: 6, Func. Count: 72, Neg. LLF: 138.18409145984208
Iteration: 7, Func. Count: 83, Neg. LLF: 263.6622633446338
Iteration: 8, Func. Count: 95, Neg. LLF: 138.39023467689648
Iteration: 9, Func. Count: 107, Neg. LLF: 137.12620969931518
Iteration: 10, Func. Count: 118, Neg. LLF: 137.23456070216898
Iteration: 11, Func. Count: 130, Neg. LLF: 137.08760045431632
Iteration: 12, Func. Count: 141, Neg. LLF: 137.07276129050786
Iteration: 13, Func. Count: 152, Neg. LLF: 137.06949950037972
Iteration: 14, Func. Count: 163, Neg. LLF: 137.0693013295861
Iteration: 15, Func. Count: 174, Neg. LLF: 137.06926263307975
Iteration: 16, Func. Count: 185, Neg. LLF: 137.06923015291272
Iteration: 17, Func. Count: 196, Neg. LLF: 137.06920721334376
Iteration: 18, Func. Count: 207, Neg. LLF: 137.06919738858198
Iteration: 19, Func. Count: 218, Neg. LLF: 137.06919614747267
Iteration: 20, Func. Count: 228, Neg. LLF: 137.06919612887867
Optimization terminated successfully (Exit mode 0)
Current function value: 137.06919614747267
Iterations: 20
Function evaluations: 228
Gradient evaluations: 20
Iteration: 1, Func. Count: 13, Neg. LLF: 251.15247720892035
Iteration: 2, Func. Count: 26, Neg. LLF: 198.67035443701062
Iteration: 3, Func. Count: 39, Neg. LLF: 168.72859195546042
Iteration: 4, Func. Count: 52, Neg. LLF: 144.34662408970235
Iteration: 5, Func. Count: 65, Neg. LLF: 145.22594114165233
Iteration: 6, Func. Count: 78, Neg. LLF: 139.6302387714206
Iteration: 7, Func. Count: 91, Neg. LLF: 137.59703034347388
Iteration: 8, Func. Count: 103, Neg. LLF: 137.5983995457689
Iteration: 9, Func. Count: 116, Neg. LLF: 137.20223686281653
Iteration: 10, Func. Count: 128, Neg. LLF: 137.08879966281984
Iteration: 11, Func. Count: 140, Neg. LLF: 137.07052609007775
Iteration: 12, Func. Count: 152, Neg. LLF: 137.06941237407398
Iteration: 13, Func. Count: 164, Neg. LLF: 137.06925986931483
Iteration: 14, Func. Count: 176, Neg. LLF: 137.06920542720476
Iteration: 15, Func. Count: 188, Neg. LLF: 137.06919886289558
Iteration: 16, Func. Count: 200, Neg. LLF: 137.0691962768695
Iteration: 17, Func. Count: 211, Neg. LLF: 137.0691962925201
Optimization terminated successfully (Exit mode 0)
Current function value: 137.0691962768695
Iterations: 17
Function evaluations: 211
Gradient evaluations: 17
Iteration: 1, Func. Count: 14, Neg. LLF: 242.8641550981648
Iteration: 2, Func. Count: 28, Neg. LLF: 207.05347790498257
Iteration: 3, Func. Count: 42, Neg. LLF: 141.20901973099453
Iteration: 4, Func. Count: 56, Neg. LLF: 140.72224258880712
Iteration: 5, Func. Count: 70, Neg. LLF: 141.0602941756198
Iteration: 6, Func. Count: 84, Neg. LLF: 137.6562262599583
Iteration: 7, Func. Count: 97, Neg. LLF: 137.12277839541636
Iteration: 8, Func. Count: 110, Neg. LLF: 137.08956946169778
Iteration: 9, Func. Count: 123, Neg. LLF: 137.07151484086623
Iteration: 10, Func. Count: 136, Neg. LLF: 137.06943801080715
Iteration: 11, Func. Count: 149, Neg. LLF: 137.0692195705186
Iteration: 12, Func. Count: 162, Neg. LLF: 137.0691984858518
Iteration: 13, Func. Count: 175, Neg. LLF: 137.06919617709625
Iteration: 14, Func. Count: 187, Neg. LLF: 137.06919619740742
Optimization terminated successfully (Exit mode 0)
Current function value: 137.06919617709625
Iterations: 14
Function evaluations: 187
Gradient evaluations: 14
Iteration: 1, Func. Count: 15, Neg. LLF: 236.792881486029
Iteration: 2, Func. Count: 30, Neg. LLF: 223.22834639032578
Iteration: 3, Func. Count: 45, Neg. LLF: 139.08117481854066
Iteration: 4, Func. Count: 59, Neg. LLF: 139.6527096300743
Iteration: 5, Func. Count: 74, Neg. LLF: 145.60467307951905
Iteration: 6, Func. Count: 89, Neg. LLF: 139.12592148018837
Iteration: 7, Func. Count: 104, Neg. LLF: 137.5556536207276
Iteration: 8, Func. Count: 119, Neg. LLF: 137.15254850562374
Iteration: 9, Func. Count: 133, Neg. LLF: 137.16427178706803
Iteration: 10, Func. Count: 148, Neg. LLF: 137.0871061610433
Iteration: 11, Func. Count: 162, Neg. LLF: 137.0718703918581
Iteration: 12, Func. Count: 176, Neg. LLF: 137.07020205443865
Iteration: 13, Func. Count: 190, Neg. LLF: 137.06887690957313
Iteration: 14, Func. Count: 204, Neg. LLF: 137.06861594193236
Iteration: 15, Func. Count: 218, Neg. LLF: 137.06859680073703
Iteration: 16, Func. Count: 232, Neg. LLF: 137.06859581247897
Optimization terminated successfully (Exit mode 0)
Current function value: 137.06859581247897
Iterations: 16
Function evaluations: 232
Gradient evaluations: 16
Iteration: 1, Func. Count: 16, Neg. LLF: 232.9244581867118
Iteration: 2, Func. Count: 32, Neg. LLF: 213.6296201944418
Iteration: 3, Func. Count: 48, Neg. LLF: 154.2023323768119
Iteration: 4, Func. Count: 64, Neg. LLF: 143.1064045610453
Iteration: 5, Func. Count: 80, Neg. LLF: 138.83595988041333
Iteration: 6, Func. Count: 95, Neg. LLF: 139.58207069451544
Iteration: 7, Func. Count: 111, Neg. LLF: 140.05510124607392
Iteration: 8, Func. Count: 127, Neg. LLF: 137.24151637604925
Iteration: 9, Func. Count: 143, Neg. LLF: 137.0913683783804
Iteration: 10, Func. Count: 158, Neg. LLF: 137.07643886720197
Iteration: 11, Func. Count: 173, Neg. LLF: 137.07244161872276
Iteration: 12, Func. Count: 188, Neg. LLF: 137.06871575326824
Iteration: 13, Func. Count: 203, Neg. LLF: 137.0686276134952
Iteration: 14, Func. Count: 218, Neg. LLF: 137.06861515053214
Iteration: 15, Func. Count: 233, Neg. LLF: 137.06860274986633
Iteration: 16, Func. Count: 248, Neg. LLF: 137.068598952466
Iteration: 17, Func. Count: 263, Neg. LLF: 137.0685967412189
Iteration: 18, Func. Count: 278, Neg. LLF: 137.0685959541752
Optimization terminated successfully (Exit mode 0)
Current function value: 137.0685959541752
Iterations: 18
Function evaluations: 278
Gradient evaluations: 18
Iteration: 1, Func. Count: 8, Neg. LLF: 176.73439100871354
Iteration: 2, Func. Count: 17, Neg. LLF: 167.95951475532988
Iteration: 3, Func. Count: 26, Neg. LLF: 219.14694240659426
Iteration: 4, Func. Count: 34, Neg. LLF: 140.93546302848222
Iteration: 5, Func. Count: 41, Neg. LLF: 140.2450139743614
Iteration: 6, Func. Count: 48, Neg. LLF: 139.71924450919374
Iteration: 7, Func. Count: 55, Neg. LLF: 138.53442608647626
Iteration: 8, Func. Count: 62, Neg. LLF: 137.8196812600001
Iteration: 9, Func. Count: 69, Neg. LLF: 138.6975766167468
Iteration: 10, Func. Count: 77, Neg. LLF: 137.52391415654787
Iteration: 11, Func. Count: 84, Neg. LLF: 137.50845367389272
Iteration: 12, Func. Count: 91, Neg. LLF: 137.50556104126224
Iteration: 13, Func. Count: 98, Neg. LLF: 137.50094889789398
Iteration: 14, Func. Count: 105, Neg. LLF: 137.50088888126567
Iteration: 15, Func. Count: 112, Neg. LLF: 137.5008452852073
Iteration: 16, Func. Count: 119, Neg. LLF: 137.50082459212393
Iteration: 17, Func. Count: 126, Neg. LLF: 137.5008209589547
Iteration: 18, Func. Count: 132, Neg. LLF: 137.50082095064977
Optimization terminated successfully (Exit mode 0)
Current function value: 137.5008209589547
Iterations: 18
Function evaluations: 132
Gradient evaluations: 18
Iteration: 1, Func. Count: 5, Neg. LLF: 169.08317904839637
Iteration: 2, Func. Count: 9, Neg. LLF: 169.3443028764703
Iteration: 3, Func. Count: 14, Neg. LLF: 167.98357258194414
Iteration: 4, Func. Count: 18, Neg. LLF: 167.91482165059062
Iteration: 5, Func. Count: 22, Neg. LLF: 167.78079054595614
Iteration: 6, Func. Count: 26, Neg. LLF: 167.77392553872312
Iteration: 7, Func. Count: 30, Neg. LLF: 167.7732483921711
Iteration: 8, Func. Count: 34, Neg. LLF: 167.7727886659395
Iteration: 9, Func. Count: 38, Neg. LLF: 167.77184673966684
Iteration: 10, Func. Count: 42, Neg. LLF: 167.77128969744666
Iteration: 11, Func. Count: 46, Neg. LLF: 167.77110914377667
Iteration: 12, Func. Count: 50, Neg. LLF: 167.77109185311886
Iteration: 13, Func. Count: 53, Neg. LLF: 167.77109185311227
Optimization terminated successfully (Exit mode 0)
Current function value: 167.77109185311886
Iterations: 13
Function evaluations: 53
Gradient evaluations: 13
Iteration: 1, Func. Count: 6, Neg. LLF: 437.8185396115829
Iteration: 2, Func. Count: 12, Neg. LLF: 166.6064911666491
Iteration: 3, Func. Count: 19, Neg. LLF: 153.54968162507092
Iteration: 4, Func. Count: 24, Neg. LLF: 194.84581327722321
Iteration: 5, Func. Count: 30, Neg. LLF: 153.36330038646776
Iteration: 6, Func. Count: 36, Neg. LLF: 153.09192170467907
Iteration: 7, Func. Count: 41, Neg. LLF: 153.04791843494985
Iteration: 8, Func. Count: 46, Neg. LLF: 153.04361617764283
Iteration: 9, Func. Count: 51, Neg. LLF: 153.0432091870344
Iteration: 10, Func. Count: 56, Neg. LLF: 153.04314953145035
Iteration: 11, Func. Count: 61, Neg. LLF: 153.04307971926852
Iteration: 12, Func. Count: 66, Neg. LLF: 153.04306099888476
Iteration: 13, Func. Count: 71, Neg. LLF: 153.04305853360165
Iteration: 14, Func. Count: 75, Neg. LLF: 153.043058533619
Optimization terminated successfully (Exit mode 0)
Current function value: 153.04305853360165
Iterations: 14
Function evaluations: 75
Gradient evaluations: 14
Iteration: 1, Func. Count: 7, Neg. LLF: 354.02523504004563
Iteration: 2, Func. Count: 14, Neg. LLF: 167.9250666251801
Iteration: 3, Func. Count: 22, Neg. LLF: 153.7413995243025
Iteration: 4, Func. Count: 28, Neg. LLF: 153.4221869072573
Iteration: 5, Func. Count: 34, Neg. LLF: 153.12750511336392
Iteration: 6, Func. Count: 40, Neg. LLF: 153.0921901233813
Iteration: 7, Func. Count: 46, Neg. LLF: 153.07269735984983
Iteration: 8, Func. Count: 52, Neg. LLF: 153.04884350866337
Iteration: 9, Func. Count: 58, Neg. LLF: 153.04524769457979
Iteration: 10, Func. Count: 64, Neg. LLF: 153.043706244537
Iteration: 11, Func. Count: 70, Neg. LLF: 153.04317860544228
Iteration: 12, Func. Count: 76, Neg. LLF: 153.04306785742176
Iteration: 13, Func. Count: 82, Neg. LLF: 153.04305875414644
Iteration: 14, Func. Count: 87, Neg. LLF: 153.0430587925451
Optimization terminated successfully (Exit mode 0)
Current function value: 153.04305875414644
Iterations: 14
Function evaluations: 87
Gradient evaluations: 14
Iteration: 1, Func. Count: 8, Neg. LLF: 307.66729992746326
Iteration: 2, Func. Count: 16, Neg. LLF: 182.26518596350436
Iteration: 3, Func. Count: 25, Neg. LLF: 154.48663842702334
Iteration: 4, Func. Count: 32, Neg. LLF: 153.27869112405554
Iteration: 5, Func. Count: 39, Neg. LLF: 153.1625606645173
Iteration: 6, Func. Count: 46, Neg. LLF: 153.10334818062293
Iteration: 7, Func. Count: 53, Neg. LLF: 153.0843528950143
Iteration: 8, Func. Count: 60, Neg. LLF: 153.05955309464167
Iteration: 9, Func. Count: 67, Neg. LLF: 153.04552753943852
Iteration: 10, Func. Count: 74, Neg. LLF: 153.0431870334893
Iteration: 11, Func. Count: 81, Neg. LLF: 153.04307574850182
Iteration: 12, Func. Count: 88, Neg. LLF: 153.04306119684733
Iteration: 13, Func. Count: 95, Neg. LLF: 153.04305854624624
Iteration: 14, Func. Count: 101, Neg. LLF: 153.0430586251026
Optimization terminated successfully (Exit mode 0)
Current function value: 153.04305854624624
Iterations: 14
Function evaluations: 101
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 243.88555871935694
Iteration: 2, Func. Count: 18, Neg. LLF: 153.77453767142143
Iteration: 3, Func. Count: 26, Neg. LLF: 157.76122169558127
Iteration: 4, Func. Count: 35, Neg. LLF: 153.6453546908951
Iteration: 5, Func. Count: 44, Neg. LLF: 153.124558281689
Iteration: 6, Func. Count: 52, Neg. LLF: 153.09558598675363
Iteration: 7, Func. Count: 60, Neg. LLF: 153.0672747028409
Iteration: 8, Func. Count: 68, Neg. LLF: 153.05130709835308
Iteration: 9, Func. Count: 76, Neg. LLF: 153.04385345258444
Iteration: 10, Func. Count: 84, Neg. LLF: 153.04314700058075
Iteration: 11, Func. Count: 92, Neg. LLF: 153.04305853660594
Iteration: 12, Func. Count: 99, Neg. LLF: 153.04305861135967
Optimization terminated successfully (Exit mode 0)
Current function value: 153.04305853660594
Iterations: 12
Function evaluations: 99
Gradient evaluations: 12
Iteration: 1, Func. Count: 6, Neg. LLF: 173.0764791493556
Iteration: 2, Func. Count: 12, Neg. LLF: 164.871059646334
Iteration: 3, Func. Count: 18, Neg. LLF: 162.63372075965447
Iteration: 4, Func. Count: 24, Neg. LLF: 159.86592709440527
Iteration: 5, Func. Count: 29, Neg. LLF: 159.60010172132252
Iteration: 6, Func. Count: 34, Neg. LLF: 158.22758211866704
Iteration: 7, Func. Count: 39, Neg. LLF: 263.30340827349124
Iteration: 8, Func. Count: 45, Neg. LLF: 190.80774636991865
Iteration: 9, Func. Count: 51, Neg. LLF: 159.843525553563
Iteration: 10, Func. Count: 57, Neg. LLF: 156.63483966792225
Iteration: 11, Func. Count: 63, Neg. LLF: 156.32504712628202
Iteration: 12, Func. Count: 68, Neg. LLF: 156.17780407735728
Iteration: 13, Func. Count: 73, Neg. LLF: 156.15832550281175
Iteration: 14, Func. Count: 78, Neg. LLF: 156.15441203135038
Iteration: 15, Func. Count: 83, Neg. LLF: 156.15428945964024
Iteration: 16, Func. Count: 88, Neg. LLF: 156.15428748632922
Iteration: 17, Func. Count: 92, Neg. LLF: 156.15428748501404
Optimization terminated successfully (Exit mode 0)
Current function value: 156.15428748632922
Iterations: 17
Function evaluations: 92
Gradient evaluations: 17
Iteration: 1, Func. Count: 7, Neg. LLF: 436.4611966380209
Iteration: 2, Func. Count: 14, Neg. LLF: 164.93491875719647
Iteration: 3, Func. Count: 22, Neg. LLF: 253.533921535555
Iteration: 4, Func. Count: 30, Neg. LLF: 168.8621181138339
Iteration: 5, Func. Count: 37, Neg. LLF: 152.07490691448012
Iteration: 6, Func. Count: 43, Neg. LLF: 151.97373248620494
Iteration: 7, Func. Count: 49, Neg. LLF: 151.90181933518306
Iteration: 8, Func. Count: 55, Neg. LLF: 151.87780220027784
Iteration: 9, Func. Count: 61, Neg. LLF: 151.87262539329615
Iteration: 10, Func. Count: 67, Neg. LLF: 151.87230674865035
Iteration: 11, Func. Count: 73, Neg. LLF: 151.87209470496236
Iteration: 12, Func. Count: 79, Neg. LLF: 151.87192077841283
Iteration: 13, Func. Count: 85, Neg. LLF: 151.87188923380054
Iteration: 14, Func. Count: 91, Neg. LLF: 151.87188666153688
Iteration: 15, Func. Count: 96, Neg. LLF: 151.87188666152474
Optimization terminated successfully (Exit mode 0)
Current function value: 151.87188666153688
Iterations: 15
Function evaluations: 96
Gradient evaluations: 15
Iteration: 1, Func. Count: 8, Neg. LLF: 373.15739552757964
Iteration: 2, Func. Count: 16, Neg. LLF: 158.59223226970838
Iteration: 3, Func. Count: 24, Neg. LLF: 264.0533251142532
Iteration: 4, Func. Count: 32, Neg. LLF: 243.2364312161963
Iteration: 5, Func. Count: 40, Neg. LLF: 152.67808954277126
Iteration: 6, Func. Count: 47, Neg. LLF: 152.0809865870366
Iteration: 7, Func. Count: 54, Neg. LLF: 151.8992382258975
Iteration: 8, Func. Count: 61, Neg. LLF: 151.8773645162063
Iteration: 9, Func. Count: 68, Neg. LLF: 151.87485381023015
Iteration: 10, Func. Count: 75, Neg. LLF: 151.87324407615333
Iteration: 11, Func. Count: 82, Neg. LLF: 151.87262272776528
Iteration: 12, Func. Count: 89, Neg. LLF: 151.8722066955849
Iteration: 13, Func. Count: 96, Neg. LLF: 151.8719619020953
Iteration: 14, Func. Count: 103, Neg. LLF: 151.87189424915383
Iteration: 15, Func. Count: 110, Neg. LLF: 151.8718868903109
Iteration: 16, Func. Count: 116, Neg. LLF: 151.87188695843759
Optimization terminated successfully (Exit mode 0)
Current function value: 151.8718868903109
Iterations: 16
Function evaluations: 116
Gradient evaluations: 16
Iteration: 1, Func. Count: 9, Neg. LLF: 187.5241418052856
Iteration: 2, Func. Count: 18, Neg. LLF: 161.67636513546148
Iteration: 3, Func. Count: 27, Neg. LLF: 158.78666313746274
Iteration: 4, Func. Count: 37, Neg. LLF: 163.20637902522083
Iteration: 5, Func. Count: 46, Neg. LLF: 152.68991279311393
Iteration: 6, Func. Count: 54, Neg. LLF: 152.41313951934356
Iteration: 7, Func. Count: 62, Neg. LLF: 153.14070086630645
Iteration: 8, Func. Count: 71, Neg. LLF: 152.07737371984703
Iteration: 9, Func. Count: 79, Neg. LLF: 151.89749377134427
Iteration: 10, Func. Count: 87, Neg. LLF: 151.87689672064434
Iteration: 11, Func. Count: 95, Neg. LLF: 151.8747367278727
Iteration: 12, Func. Count: 103, Neg. LLF: 151.8729527182631
Iteration: 13, Func. Count: 111, Neg. LLF: 151.87231300186272
Iteration: 14, Func. Count: 119, Neg. LLF: 151.87190641527764
Iteration: 15, Func. Count: 127, Neg. LLF: 151.87188714991194
Iteration: 16, Func. Count: 135, Neg. LLF: 151.87188660915092
Optimization terminated successfully (Exit mode 0)
Current function value: 151.87188660915092
Iterations: 16
Function evaluations: 135
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 323.2133590535426
Iteration: 2, Func. Count: 20, Neg. LLF: 47889750.00242145
Iteration: 3, Func. Count: 30, Neg. LLF: 160.52131212486753
Iteration: 4, Func. Count: 40, Neg. LLF: 152.81254637375733
Iteration: 5, Func. Count: 49, Neg. LLF: 156.29566557818387
Iteration: 6, Func. Count: 59, Neg. LLF: 152.34218581189154
Iteration: 7, Func. Count: 68, Neg. LLF: 152.10109701304285
Iteration: 8, Func. Count: 77, Neg. LLF: 152.03546754237772
Iteration: 9, Func. Count: 86, Neg. LLF: 151.99543021211164
Iteration: 10, Func. Count: 95, Neg. LLF: 151.95981873408914
Iteration: 11, Func. Count: 104, Neg. LLF: 151.88779614175144
Iteration: 12, Func. Count: 113, Neg. LLF: 151.88099612345525
Iteration: 13, Func. Count: 122, Neg. LLF: 151.87341024868064
Iteration: 14, Func. Count: 131, Neg. LLF: 151.8723385420639
Iteration: 15, Func. Count: 140, Neg. LLF: 151.87189171900613
Iteration: 16, Func. Count: 149, Neg. LLF: 151.87188671752068
Iteration: 17, Func. Count: 157, Neg. LLF: 151.87188681808283
Optimization terminated successfully (Exit mode 0)
Current function value: 151.87188671752068
Iterations: 17
Function evaluations: 157
Gradient evaluations: 17
Iteration: 1, Func. Count: 7, Neg. LLF: 156.84040613268803
Iteration: 2, Func. Count: 14, Neg. LLF: 163.08118873420264
Iteration: 3, Func. Count: 22, Neg. LLF: 154.98970020014207
Iteration: 4, Func. Count: 29, Neg. LLF: 154.3866780686319
Iteration: 5, Func. Count: 35, Neg. LLF: 153.49418696826424
Iteration: 6, Func. Count: 41, Neg. LLF: 153.02389942368077
Iteration: 7, Func. Count: 47, Neg. LLF: 158.6283401377525
Iteration: 8, Func. Count: 54, Neg. LLF: 151.17880445769717
Iteration: 9, Func. Count: 61, Neg. LLF: 150.69984784757273
Iteration: 10, Func. Count: 68, Neg. LLF: 149.99256323133415
Iteration: 11, Func. Count: 74, Neg. LLF: 149.60850878796032
Iteration: 12, Func. Count: 80, Neg. LLF: 149.4143579018411
Iteration: 13, Func. Count: 86, Neg. LLF: 149.33947331992061
Iteration: 14, Func. Count: 92, Neg. LLF: 149.32316240507967
Iteration: 15, Func. Count: 98, Neg. LLF: 149.31989094012073
Iteration: 16, Func. Count: 104, Neg. LLF: 149.31796027598847
Iteration: 17, Func. Count: 110, Neg. LLF: 149.31523720454473
Iteration: 18, Func. Count: 116, Neg. LLF: 149.31346626677282
Iteration: 19, Func. Count: 122, Neg. LLF: 149.31280893085608
Iteration: 20, Func. Count: 128, Neg. LLF: 149.31274270649084
Iteration: 21, Func. Count: 134, Neg. LLF: 149.31274195185472
Optimization terminated successfully (Exit mode 0)
Current function value: 149.31274195185472
Iterations: 21
Function evaluations: 134
Gradient evaluations: 21
Iteration: 1, Func. Count: 8, Neg. LLF: 391.33303241791714
Iteration: 2, Func. Count: 16, Neg. LLF: 162.98588663529296
Iteration: 3, Func. Count: 25, Neg. LLF: 247.11056549054106
Iteration: 4, Func. Count: 33, Neg. LLF: 169.9521316031401
Iteration: 5, Func. Count: 41, Neg. LLF: 150.6258958673875
Iteration: 6, Func. Count: 48, Neg. LLF: 149.8669254929872
Iteration: 7, Func. Count: 55, Neg. LLF: 149.7422951747606
Iteration: 8, Func. Count: 62, Neg. LLF: 149.48374605443064
Iteration: 9, Func. Count: 69, Neg. LLF: 149.38964818795748
Iteration: 10, Func. Count: 76, Neg. LLF: 149.34214049799155
Iteration: 11, Func. Count: 83, Neg. LLF: 149.33716741562117
Iteration: 12, Func. Count: 90, Neg. LLF: 149.33287057855966
Iteration: 13, Func. Count: 97, Neg. LLF: 149.32423227116263
Iteration: 14, Func. Count: 104, Neg. LLF: 149.31681337263984
Iteration: 15, Func. Count: 111, Neg. LLF: 149.3134516204032
Iteration: 16, Func. Count: 118, Neg. LLF: 149.31282647003673
Iteration: 17, Func. Count: 125, Neg. LLF: 149.3127474190175
Iteration: 18, Func. Count: 132, Neg. LLF: 149.31274216770947
Iteration: 19, Func. Count: 138, Neg. LLF: 149.31274221426924
Optimization terminated successfully (Exit mode 0)
Current function value: 149.31274216770947
Iterations: 19
Function evaluations: 138
Gradient evaluations: 19
Iteration: 1, Func. Count: 9, Neg. LLF: 353.47550355669097
Iteration: 2, Func. Count: 18, Neg. LLF: 155.9513574470363
Iteration: 3, Func. Count: 27, Neg. LLF: 246.70808540580703
Iteration: 4, Func. Count: 36, Neg. LLF: 245.82476146039244
Iteration: 5, Func. Count: 45, Neg. LLF: 155.51117479909402
Iteration: 6, Func. Count: 54, Neg. LLF: 150.00197842276742
Iteration: 7, Func. Count: 62, Neg. LLF: 149.49067412271032
Iteration: 8, Func. Count: 70, Neg. LLF: 149.38744276864006
Iteration: 9, Func. Count: 78, Neg. LLF: 149.3452671716094
Iteration: 10, Func. Count: 86, Neg. LLF: 149.33007045272296
Iteration: 11, Func. Count: 94, Neg. LLF: 149.31857854149786
Iteration: 12, Func. Count: 102, Neg. LLF: 149.31609473193132
Iteration: 13, Func. Count: 110, Neg. LLF: 149.3154861058255
Iteration: 14, Func. Count: 118, Neg. LLF: 149.31524971623983
Iteration: 15, Func. Count: 126, Neg. LLF: 149.31448325646144
Iteration: 16, Func. Count: 134, Neg. LLF: 149.31362768409204
Iteration: 17, Func. Count: 142, Neg. LLF: 149.3129422314146
Iteration: 18, Func. Count: 150, Neg. LLF: 149.31275829599093
Iteration: 19, Func. Count: 158, Neg. LLF: 149.31274247527395
Iteration: 20, Func. Count: 165, Neg. LLF: 149.31274251462506
Optimization terminated successfully (Exit mode 0)
Current function value: 149.31274247527395
Iterations: 20
Function evaluations: 165
Gradient evaluations: 20
Iteration: 1, Func. Count: 10, Neg. LLF: 348.9776005153526
Iteration: 2, Func. Count: 20, Neg. LLF: 268.18577742261465
Iteration: 3, Func. Count: 30, Neg. LLF: 157.78319589369207
Iteration: 4, Func. Count: 40, Neg. LLF: 164.21538068505475
Iteration: 5, Func. Count: 50, Neg. LLF: 157.6517050791252
Iteration: 6, Func. Count: 60, Neg. LLF: 149.20316976338515
Iteration: 7, Func. Count: 69, Neg. LLF: 149.04821916763206
Iteration: 8, Func. Count: 78, Neg. LLF: 148.9640366459417
Iteration: 9, Func. Count: 87, Neg. LLF: 148.93817194927502
Iteration: 10, Func. Count: 96, Neg. LLF: 148.90618706531666
Iteration: 11, Func. Count: 105, Neg. LLF: 148.89754035521625
Iteration: 12, Func. Count: 114, Neg. LLF: 148.8929589587965
Iteration: 13, Func. Count: 123, Neg. LLF: 148.88924921285198
Iteration: 14, Func. Count: 132, Neg. LLF: 148.88709879774146
Iteration: 15, Func. Count: 141, Neg. LLF: 148.88546821391876
Iteration: 16, Func. Count: 150, Neg. LLF: 148.88386907434338
Iteration: 17, Func. Count: 159, Neg. LLF: 148.88282183360042
Iteration: 18, Func. Count: 168, Neg. LLF: 148.8825267955041
Iteration: 19, Func. Count: 177, Neg. LLF: 148.88250471474927
Iteration: 20, Func. Count: 185, Neg. LLF: 148.8825047147391
Optimization terminated successfully (Exit mode 0)
Current function value: 148.88250471474927
Iterations: 20
Function evaluations: 185
Gradient evaluations: 20
Iteration: 1, Func. Count: 11, Neg. LLF: 155.78416639363417
Iteration: 2, Func. Count: 22, Neg. LLF: 169.71725468574186
Iteration: 3, Func. Count: 33, Neg. LLF: 155.0116096019988
Iteration: 4, Func. Count: 44, Neg. LLF: 149.1949745360719
Iteration: 5, Func. Count: 54, Neg. LLF: 153.2775097361337
Iteration: 6, Func. Count: 65, Neg. LLF: 149.44215981269073
Iteration: 7, Func. Count: 76, Neg. LLF: 148.9594567584873
Iteration: 8, Func. Count: 86, Neg. LLF: 148.90325680265596
Iteration: 9, Func. Count: 96, Neg. LLF: 148.88584773010373
Iteration: 10, Func. Count: 106, Neg. LLF: 148.88308599382543
Iteration: 11, Func. Count: 116, Neg. LLF: 148.8827703980425
Iteration: 12, Func. Count: 126, Neg. LLF: 148.88264708775426
Iteration: 13, Func. Count: 136, Neg. LLF: 148.88256189883057
Iteration: 14, Func. Count: 146, Neg. LLF: 148.88251638056124
Iteration: 15, Func. Count: 156, Neg. LLF: 148.88250517175288
Iteration: 16, Func. Count: 166, Neg. LLF: 148.88250419480585
Optimization terminated successfully (Exit mode 0)
Current function value: 148.88250419480585
Iterations: 16
Function evaluations: 166
Gradient evaluations: 16
Iteration: 1, Func. Count: 8, Neg. LLF: 157.10718349309678
Iteration: 2, Func. Count: 16, Neg. LLF: 163.11687094752295
Iteration: 3, Func. Count: 25, Neg. LLF: 155.07288664253394
Iteration: 4, Func. Count: 33, Neg. LLF: 154.4053510083991
Iteration: 5, Func. Count: 40, Neg. LLF: 153.44060240180036
Iteration: 6, Func. Count: 47, Neg. LLF: 153.11287305791532
Iteration: 7, Func. Count: 54, Neg. LLF: 159.37819903196208
Iteration: 8, Func. Count: 62, Neg. LLF: 160.37449041031624
Iteration: 9, Func. Count: 71, Neg. LLF: 406267383.48811626
Iteration: 10, Func. Count: 80, Neg. LLF: 150.87942727099932
Iteration: 11, Func. Count: 88, Neg. LLF: 149.78764851332897
Iteration: 12, Func. Count: 95, Neg. LLF: 149.53402650906554
Iteration: 13, Func. Count: 102, Neg. LLF: 149.36074420133053
Iteration: 14, Func. Count: 109, Neg. LLF: 149.3197925861679
Iteration: 15, Func. Count: 116, Neg. LLF: 149.3132165587531
Iteration: 16, Func. Count: 123, Neg. LLF: 149.3128832026891
Iteration: 17, Func. Count: 130, Neg. LLF: 149.3128629621794
Iteration: 18, Func. Count: 137, Neg. LLF: 149.31282010609632
Iteration: 19, Func. Count: 144, Neg. LLF: 149.3127743683772
Iteration: 20, Func. Count: 151, Neg. LLF: 149.31274764826668
Iteration: 21, Func. Count: 158, Neg. LLF: 149.31274227739567
Iteration: 22, Func. Count: 164, Neg. LLF: 149.3127423255536
Optimization terminated successfully (Exit mode 0)
Current function value: 149.31274227739567
Iterations: 22
Function evaluations: 164
Gradient evaluations: 22
Iteration: 1, Func. Count: 9, Neg. LLF: 338.8071817882462
Iteration: 2, Func. Count: 18, Neg. LLF: 162.0921858130455
Iteration: 3, Func. Count: 28, Neg. LLF: 231.12101338284714
Iteration: 4, Func. Count: 37, Neg. LLF: 257.35612025648686
Iteration: 5, Func. Count: 46, Neg. LLF: 150.8261598986263
Iteration: 6, Func. Count: 54, Neg. LLF: 150.04834391738487
Iteration: 7, Func. Count: 62, Neg. LLF: 175.90852910155323
Iteration: 8, Func. Count: 72, Neg. LLF: 149.57449877897542
Iteration: 9, Func. Count: 80, Neg. LLF: 149.50880844293323
Iteration: 10, Func. Count: 88, Neg. LLF: 149.38708348960174
Iteration: 11, Func. Count: 96, Neg. LLF: 149.3403236357539
Iteration: 12, Func. Count: 104, Neg. LLF: 149.32742679709244
Iteration: 13, Func. Count: 112, Neg. LLF: 149.3255907468508
Iteration: 14, Func. Count: 120, Neg. LLF: 149.32416831382395
Iteration: 15, Func. Count: 128, Neg. LLF: 149.32113433187965
Iteration: 16, Func. Count: 136, Neg. LLF: 149.31710415548977
Iteration: 17, Func. Count: 144, Neg. LLF: 149.31375987744264
Iteration: 18, Func. Count: 152, Neg. LLF: 149.31282931046363
Iteration: 19, Func. Count: 160, Neg. LLF: 149.31274710533106
Iteration: 20, Func. Count: 168, Neg. LLF: 149.31274205222272
Iteration: 21, Func. Count: 175, Neg. LLF: 149.31274209879834
Optimization terminated successfully (Exit mode 0)
Current function value: 149.31274205222272
Iterations: 21
Function evaluations: 175
Gradient evaluations: 21
Iteration: 1, Func. Count: 10, Neg. LLF: 306.35096019852995
Iteration: 2, Func. Count: 20, Neg. LLF: 159.5616554637853
Iteration: 3, Func. Count: 30, Neg. LLF: 158.51501642839153
Iteration: 4, Func. Count: 41, Neg. LLF: 151.9591562279273
Iteration: 5, Func. Count: 50, Neg. LLF: 149.95543632829919
Iteration: 6, Func. Count: 59, Neg. LLF: 149.6541769063455
Iteration: 7, Func. Count: 68, Neg. LLF: 149.52723272349002
Iteration: 8, Func. Count: 77, Neg. LLF: 149.3530053011253
Iteration: 9, Func. Count: 86, Neg. LLF: 149.33688318822493
Iteration: 10, Func. Count: 95, Neg. LLF: 149.33355563282154
Iteration: 11, Func. Count: 104, Neg. LLF: 149.33021772807257
Iteration: 12, Func. Count: 113, Neg. LLF: 149.3238958200201
Iteration: 13, Func. Count: 122, Neg. LLF: 149.31728846837174
Iteration: 14, Func. Count: 131, Neg. LLF: 149.31343244179533
Iteration: 15, Func. Count: 140, Neg. LLF: 149.31278363739577
Iteration: 16, Func. Count: 149, Neg. LLF: 149.31274419662992
Iteration: 17, Func. Count: 158, Neg. LLF: 149.31274196871178
Iteration: 18, Func. Count: 166, Neg. LLF: 149.312742007987
Optimization terminated successfully (Exit mode 0)
Current function value: 149.31274196871178
Iterations: 18
Function evaluations: 166
Gradient evaluations: 18
Iteration: 1, Func. Count: 11, Neg. LLF: 284.9939030371327
Iteration: 2, Func. Count: 22, Neg. LLF: 181.1580795872698
Iteration: 3, Func. Count: 33, Neg. LLF: 157.79717542323968
Iteration: 4, Func. Count: 44, Neg. LLF: 155.24120273799255
Iteration: 5, Func. Count: 55, Neg. LLF: 149.37568457476988
Iteration: 6, Func. Count: 65, Neg. LLF: 149.12843017798815
Iteration: 7, Func. Count: 75, Neg. LLF: 149.07636260601382
Iteration: 8, Func. Count: 85, Neg. LLF: 148.93886159168417
Iteration: 9, Func. Count: 95, Neg. LLF: 148.89923232131082
Iteration: 10, Func. Count: 105, Neg. LLF: 148.88283470054145
Iteration: 11, Func. Count: 115, Neg. LLF: 148.88252274001337
Iteration: 12, Func. Count: 125, Neg. LLF: 148.88251295910766
Iteration: 13, Func. Count: 135, Neg. LLF: 148.88250992204905
Iteration: 14, Func. Count: 145, Neg. LLF: 148.88250575990563
Iteration: 15, Func. Count: 155, Neg. LLF: 148.88250440639337
Iteration: 16, Func. Count: 164, Neg. LLF: 148.88250440638402
Optimization terminated successfully (Exit mode 0)
Current function value: 148.88250440639337
Iterations: 16
Function evaluations: 164
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 155.45702592535517
Iteration: 2, Func. Count: 24, Neg. LLF: 157.3257513500804
Iteration: 3, Func. Count: 36, Neg. LLF: 155.4669054351661
Iteration: 4, Func. Count: 48, Neg. LLF: 149.17008939571932
Iteration: 5, Func. Count: 59, Neg. LLF: 149.18597169082483
Iteration: 6, Func. Count: 71, Neg. LLF: 148.99219589867695
Iteration: 7, Func. Count: 82, Neg. LLF: 148.94725133492756
Iteration: 8, Func. Count: 93, Neg. LLF: 148.88992283276139
Iteration: 9, Func. Count: 104, Neg. LLF: 148.88463230825892
Iteration: 10, Func. Count: 115, Neg. LLF: 148.88374946666553
Iteration: 11, Func. Count: 126, Neg. LLF: 148.88338269483293
Iteration: 12, Func. Count: 137, Neg. LLF: 148.88277756281565
Iteration: 13, Func. Count: 148, Neg. LLF: 148.8825532067274
Iteration: 14, Func. Count: 159, Neg. LLF: 148.88250694464134
Iteration: 15, Func. Count: 170, Neg. LLF: 148.88250426977365
Iteration: 16, Func. Count: 180, Neg. LLF: 148.88250433460158
Optimization terminated successfully (Exit mode 0)
Current function value: 148.88250426977365
Iterations: 16
Function evaluations: 180
Gradient evaluations: 16
Iteration: 1, Func. Count: 5, Neg. LLF: 170.4080897249645
Iteration: 2, Func. Count: 9, Neg. LLF: 170.64260837038594
Iteration: 3, Func. Count: 14, Neg. LLF: 169.96515374680982
Iteration: 4, Func. Count: 18, Neg. LLF: 169.96462150628173
Iteration: 5, Func. Count: 22, Neg. LLF: 169.96441724892068
Iteration: 6, Func. Count: 26, Neg. LLF: 169.96438041631274
Iteration: 7, Func. Count: 30, Neg. LLF: 169.96434193137438
Iteration: 8, Func. Count: 34, Neg. LLF: 169.96425038096808
Iteration: 9, Func. Count: 38, Neg. LLF: 169.96405821861495
Iteration: 10, Func. Count: 42, Neg. LLF: 169.96374391193788
Iteration: 11, Func. Count: 46, Neg. LLF: 169.96345382857962
Iteration: 12, Func. Count: 50, Neg. LLF: 169.9633618512485
Iteration: 13, Func. Count: 54, Neg. LLF: 169.9633510823684
Iteration: 14, Func. Count: 57, Neg. LLF: 169.9633510825591
Optimization terminated successfully (Exit mode 0)
Current function value: 169.9633510823684
Iterations: 14
Function evaluations: 57
Gradient evaluations: 14
Iteration: 1, Func. Count: 6, Neg. LLF: 408.3543342943567
Iteration: 2, Func. Count: 12, Neg. LLF: 158.09207273333496
Iteration: 3, Func. Count: 18, Neg. LLF: 150.9442813005493
Iteration: 4, Func. Count: 23, Neg. LLF: 150.92533332819642
Iteration: 5, Func. Count: 28, Neg. LLF: 150.92388587698738
Iteration: 6, Func. Count: 33, Neg. LLF: 150.9238654842545
Iteration: 7, Func. Count: 38, Neg. LLF: 150.92386340519477
Iteration: 8, Func. Count: 42, Neg. LLF: 150.92386328524853
Optimization terminated successfully (Exit mode 0)
Current function value: 150.92386340519477
Iterations: 8
Function evaluations: 42
Gradient evaluations: 8
Iteration: 1, Func. Count: 7, Neg. LLF: 292.8380392735426
Iteration: 2, Func. Count: 14, Neg. LLF: 156.2676289180152
Iteration: 3, Func. Count: 21, Neg. LLF: 151.32980388125998
Iteration: 4, Func. Count: 27, Neg. LLF: 159.52076417914404
Iteration: 5, Func. Count: 34, Neg. LLF: 150.98630463681783
Iteration: 6, Func. Count: 40, Neg. LLF: 150.9276613659303
Iteration: 7, Func. Count: 46, Neg. LLF: 150.92432483656887
Iteration: 8, Func. Count: 52, Neg. LLF: 150.92386455288647
Iteration: 9, Func. Count: 58, Neg. LLF: 150.9238634098302
Iteration: 10, Func. Count: 63, Neg. LLF: 150.92386339170255
Optimization terminated successfully (Exit mode 0)
Current function value: 150.9238634098302
Iterations: 10
Function evaluations: 63
Gradient evaluations: 10
Iteration: 1, Func. Count: 8, Neg. LLF: 249.24162884419232
Iteration: 2, Func. Count: 16, Neg. LLF: 160.7494717222183
Iteration: 3, Func. Count: 24, Neg. LLF: 152.2471788768093
Iteration: 4, Func. Count: 31, Neg. LLF: 153.9026078200247
Iteration: 5, Func. Count: 39, Neg. LLF: 151.52835548885096
Iteration: 6, Func. Count: 47, Neg. LLF: 150.99822248914984
Iteration: 7, Func. Count: 54, Neg. LLF: 150.93190057818813
Iteration: 8, Func. Count: 61, Neg. LLF: 150.9244836446617
Iteration: 9, Func. Count: 68, Neg. LLF: 150.92387400077487
Iteration: 10, Func. Count: 75, Neg. LLF: 150.9238635045956
Iteration: 11, Func. Count: 81, Neg. LLF: 150.9238635441795
Optimization terminated successfully (Exit mode 0)
Current function value: 150.9238635045956
Iterations: 11
Function evaluations: 81
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 206.77154839967835
Iteration: 2, Func. Count: 18, Neg. LLF: 155.38951682634283
Iteration: 3, Func. Count: 26, Neg. LLF: 154.28185171882342
Iteration: 4, Func. Count: 34, Neg. LLF: 236.55568668317767
Iteration: 5, Func. Count: 43, Neg. LLF: 157.92921428104228
Iteration: 6, Func. Count: 52, Neg. LLF: 151.34464628126378
Iteration: 7, Func. Count: 60, Neg. LLF: 151.08697012884713
Iteration: 8, Func. Count: 68, Neg. LLF: 150.9844691928104
Iteration: 9, Func. Count: 76, Neg. LLF: 150.94895301866927
Iteration: 10, Func. Count: 84, Neg. LLF: 150.92454984729164
Iteration: 11, Func. Count: 92, Neg. LLF: 150.92388845293854
Iteration: 12, Func. Count: 100, Neg. LLF: 150.92386381002206
Iteration: 13, Func. Count: 107, Neg. LLF: 150.92386386568145
Optimization terminated successfully (Exit mode 0)
Current function value: 150.92386381002206
Iterations: 13
Function evaluations: 107
Gradient evaluations: 13
Iteration: 1, Func. Count: 6, Neg. LLF: 169.61339577253105
Iteration: 2, Func. Count: 11, Neg. LLF: 168.6179683549604
Iteration: 3, Func. Count: 16, Neg. LLF: 168.43377273050407
Iteration: 4, Func. Count: 21, Neg. LLF: 168.21950842886548
Iteration: 5, Func. Count: 26, Neg. LLF: 168.2748340396888
Iteration: 6, Func. Count: 32, Neg. LLF: 168.04867011674946
Iteration: 7, Func. Count: 37, Neg. LLF: 167.96376611662515
Iteration: 8, Func. Count: 42, Neg. LLF: 167.95430510378088
Iteration: 9, Func. Count: 47, Neg. LLF: 167.93144848889844
Iteration: 10, Func. Count: 52, Neg. LLF: 167.8469323235589
Iteration: 11, Func. Count: 57, Neg. LLF: 167.77611825964124
Iteration: 12, Func. Count: 62, Neg. LLF: 167.77161602517515
Iteration: 13, Func. Count: 67, Neg. LLF: 167.77116752402122
Iteration: 14, Func. Count: 72, Neg. LLF: 167.77110024363856
Iteration: 15, Func. Count: 77, Neg. LLF: 167.77109182467143
Iteration: 16, Func. Count: 81, Neg. LLF: 167.77109182467163
Optimization terminated successfully (Exit mode 0)
Current function value: 167.77109182467143
Iterations: 16
Function evaluations: 81
Gradient evaluations: 16
Iteration: 1, Func. Count: 7, Neg. LLF: 312.00287255915015
Iteration: 2, Func. Count: 14, Neg. LLF: 168.55148476111862
Iteration: 3, Func. Count: 21, Neg. LLF: 151.6313893939401
Iteration: 4, Func. Count: 28, Neg. LLF: 155.61921279458286
Iteration: 5, Func. Count: 35, Neg. LLF: 150.8705273066109
Iteration: 6, Func. Count: 41, Neg. LLF: 150.86462991493914
Iteration: 7, Func. Count: 47, Neg. LLF: 150.86421924226542
Iteration: 8, Func. Count: 53, Neg. LLF: 150.8642140914522
Iteration: 9, Func. Count: 58, Neg. LLF: 150.86421398898273
Optimization terminated successfully (Exit mode 0)
Current function value: 150.8642140914522
Iterations: 9
Function evaluations: 58
Gradient evaluations: 9
Iteration: 1, Func. Count: 8, Neg. LLF: 270.35961129281065
Iteration: 2, Func. Count: 16, Neg. LLF: 170.42912250165384
Iteration: 3, Func. Count: 24, Neg. LLF: 151.53814514116965
Iteration: 4, Func. Count: 31, Neg. LLF: 156.50593324424935
Iteration: 5, Func. Count: 39, Neg. LLF: 150.96097612386245
Iteration: 6, Func. Count: 46, Neg. LLF: 150.87447930059037
Iteration: 7, Func. Count: 53, Neg. LLF: 150.8653986501617
Iteration: 8, Func. Count: 60, Neg. LLF: 150.8643966747893
Iteration: 9, Func. Count: 67, Neg. LLF: 150.864226135626
Iteration: 10, Func. Count: 74, Neg. LLF: 150.86421400335644
Iteration: 11, Func. Count: 80, Neg. LLF: 150.864213993846
Optimization terminated successfully (Exit mode 0)
Current function value: 150.86421400335644
Iterations: 11
Function evaluations: 80
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 168.37300185014348
Iteration: 2, Func. Count: 18, Neg. LLF: 220.72136522871256
Iteration: 3, Func. Count: 27, Neg. LLF: 154.19634713299874
Iteration: 4, Func. Count: 36, Neg. LLF: 152.95040200341344
Iteration: 5, Func. Count: 45, Neg. LLF: 150.92701552497385
Iteration: 6, Func. Count: 53, Neg. LLF: 150.8727605055089
Iteration: 7, Func. Count: 61, Neg. LLF: 150.86448377999173
Iteration: 8, Func. Count: 69, Neg. LLF: 150.86424762020718
Iteration: 9, Func. Count: 77, Neg. LLF: 150.86422202124055
Iteration: 10, Func. Count: 85, Neg. LLF: 150.8642140171265
Iteration: 11, Func. Count: 92, Neg. LLF: 150.86421406569505
Optimization terminated successfully (Exit mode 0)
Current function value: 150.8642140171265
Iterations: 11
Function evaluations: 92
Gradient evaluations: 11
Iteration: 1, Func. Count: 10, Neg. LLF: 246.52302308520234
Iteration: 2, Func. Count: 20, Neg. LLF: 154.76818496911753
Iteration: 3, Func. Count: 29, Neg. LLF: 153.8435837321073
Iteration: 4, Func. Count: 38, Neg. LLF: 153.55730140282643
Iteration: 5, Func. Count: 48, Neg. LLF: 153.10878011962075
Iteration: 6, Func. Count: 58, Neg. LLF: 151.53746124528047
Iteration: 7, Func. Count: 67, Neg. LLF: 156.22240115861942
Iteration: 8, Func. Count: 77, Neg. LLF: 152.06340920986585
Iteration: 9, Func. Count: 87, Neg. LLF: 151.11522610532532
Iteration: 10, Func. Count: 97, Neg. LLF: 150.86679531508182
Iteration: 11, Func. Count: 106, Neg. LLF: 150.8644897596529
Iteration: 12, Func. Count: 115, Neg. LLF: 150.86424782917993
Iteration: 13, Func. Count: 124, Neg. LLF: 150.86421514428207
Iteration: 14, Func. Count: 133, Neg. LLF: 150.86421398473843
Iteration: 15, Func. Count: 141, Neg. LLF: 150.86421404340155
Optimization terminated successfully (Exit mode 0)
Current function value: 150.86421398473843
Iterations: 15
Function evaluations: 141
Gradient evaluations: 15
Iteration: 1, Func. Count: 7, Neg. LLF: 176.50493367578767
Iteration: 2, Func. Count: 15, Neg. LLF: 166.30065945680468
Iteration: 3, Func. Count: 22, Neg. LLF: 164.10165780962095
Iteration: 4, Func. Count: 29, Neg. LLF: 159.94399043306174
Iteration: 5, Func. Count: 35, Neg. LLF: 159.5922930413368
Iteration: 6, Func. Count: 41, Neg. LLF: 158.33382971376773
Iteration: 7, Func. Count: 47, Neg. LLF: 157.81270177836748
Iteration: 8, Func. Count: 53, Neg. LLF: 157.16084423592946
Iteration: 9, Func. Count: 59, Neg. LLF: 357.3707542889722
Iteration: 10, Func. Count: 66, Neg. LLF: 23566395.61606507
Iteration: 11, Func. Count: 73, Neg. LLF: 155.85051403247627
Iteration: 12, Func. Count: 79, Neg. LLF: 155.33273487410605
Iteration: 13, Func. Count: 85, Neg. LLF: 155.19370580802484
Iteration: 14, Func. Count: 91, Neg. LLF: 155.0450174601612
Iteration: 15, Func. Count: 97, Neg. LLF: 154.9061345190095
Iteration: 16, Func. Count: 103, Neg. LLF: 154.90298877902876
Iteration: 17, Func. Count: 109, Neg. LLF: 154.9011828293676
Iteration: 18, Func. Count: 115, Neg. LLF: 154.90108968516827
Iteration: 19, Func. Count: 121, Neg. LLF: 154.90108265852558
Iteration: 20, Func. Count: 126, Neg. LLF: 154.9010826343301
Optimization terminated successfully (Exit mode 0)
Current function value: 154.90108265852558
Iterations: 20
Function evaluations: 126
Gradient evaluations: 20
Iteration: 1, Func. Count: 8, Neg. LLF: 461.06940873465163
Iteration: 2, Func. Count: 16, Neg. LLF: 639.0833226864142
Iteration: 3, Func. Count: 24, Neg. LLF: 152.1707852518615
Iteration: 4, Func. Count: 32, Neg. LLF: 149.44610779138904
Iteration: 5, Func. Count: 40, Neg. LLF: 156.56442513874737
Iteration: 6, Func. Count: 48, Neg. LLF: 149.96494356222047
Iteration: 7, Func. Count: 56, Neg. LLF: 149.07853871824602
Iteration: 8, Func. Count: 63, Neg. LLF: 149.06537730753544
Iteration: 9, Func. Count: 70, Neg. LLF: 149.0649917240198
Iteration: 10, Func. Count: 77, Neg. LLF: 149.0649779097242
Iteration: 11, Func. Count: 83, Neg. LLF: 149.0649778484589
Optimization terminated successfully (Exit mode 0)
Current function value: 149.0649779097242
Iterations: 11
Function evaluations: 83
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 463.9795118668208
Iteration: 2, Func. Count: 18, Neg. LLF: 173.1355127720691
Iteration: 3, Func. Count: 27, Neg. LLF: 161.37522357391876
Iteration: 4, Func. Count: 36, Neg. LLF: 149.96648230145877
Iteration: 5, Func. Count: 44, Neg. LLF: 149.8727073746836
Iteration: 6, Func. Count: 53, Neg. LLF: 196.97736840560177
Iteration: 7, Func. Count: 62, Neg. LLF: 149.32838956592653
Iteration: 8, Func. Count: 70, Neg. LLF: 149.08807798017347
Iteration: 9, Func. Count: 78, Neg. LLF: 149.06727645480615
Iteration: 10, Func. Count: 86, Neg. LLF: 149.06513818090238
Iteration: 11, Func. Count: 94, Neg. LLF: 149.06504805873732
Iteration: 12, Func. Count: 102, Neg. LLF: 149.06499755569521
Iteration: 13, Func. Count: 110, Neg. LLF: 149.0649825706817
Iteration: 14, Func. Count: 118, Neg. LLF: 149.06497803645084
Iteration: 15, Func. Count: 125, Neg. LLF: 149.06497807733018
Optimization terminated successfully (Exit mode 0)
Current function value: 149.06497803645084
Iterations: 15
Function evaluations: 125
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 447.446792783979
Iteration: 2, Func. Count: 20, Neg. LLF: 181.83293218399677
Iteration: 3, Func. Count: 30, Neg. LLF: 155.74384818521673
Iteration: 4, Func. Count: 40, Neg. LLF: 150.62416640317014
Iteration: 5, Func. Count: 49, Neg. LLF: 152.54049453558181
Iteration: 6, Func. Count: 60, Neg. LLF: 203.05783360795613
Iteration: 7, Func. Count: 70, Neg. LLF: 154.58311323184762
Iteration: 8, Func. Count: 80, Neg. LLF: 149.11935561162656
Iteration: 9, Func. Count: 89, Neg. LLF: 149.08780561084134
Iteration: 10, Func. Count: 98, Neg. LLF: 149.0697558814178
Iteration: 11, Func. Count: 107, Neg. LLF: 149.0662981594217
Iteration: 12, Func. Count: 116, Neg. LLF: 149.06527426715672
Iteration: 13, Func. Count: 125, Neg. LLF: 149.06502758202257
Iteration: 14, Func. Count: 134, Neg. LLF: 149.06498176368927
Iteration: 15, Func. Count: 143, Neg. LLF: 149.06497812177022
Iteration: 16, Func. Count: 151, Neg. LLF: 149.0649781522804
Optimization terminated successfully (Exit mode 0)
Current function value: 149.06497812177022
Iterations: 16
Function evaluations: 151
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 449.78170743487567
Iteration: 2, Func. Count: 22, Neg. LLF: 194.8047280094705
Iteration: 3, Func. Count: 33, Neg. LLF: 152.02986242642407
Iteration: 4, Func. Count: 43, Neg. LLF: 151.25585099777902
Iteration: 5, Func. Count: 54, Neg. LLF: 166.38556781704523
Iteration: 6, Func. Count: 65, Neg. LLF: 176.8290660534793
Iteration: 7, Func. Count: 76, Neg. LLF: 149.22697440591324
Iteration: 8, Func. Count: 86, Neg. LLF: 149.11239564910727
Iteration: 9, Func. Count: 96, Neg. LLF: 149.07626609250624
Iteration: 10, Func. Count: 106, Neg. LLF: 149.07158864290167
Iteration: 11, Func. Count: 116, Neg. LLF: 149.06567669083833
Iteration: 12, Func. Count: 126, Neg. LLF: 149.06506275372027
Iteration: 13, Func. Count: 136, Neg. LLF: 149.06497843942608
Iteration: 14, Func. Count: 146, Neg. LLF: 149.06497755810892
Optimization terminated successfully (Exit mode 0)
Current function value: 149.06497755810892
Iterations: 14
Function evaluations: 146
Gradient evaluations: 14
Iteration: 1, Func. Count: 8, Neg. LLF: 158.27146998205097
Iteration: 2, Func. Count: 16, Neg. LLF: 216.69389153569065
Iteration: 3, Func. Count: 24, Neg. LLF: 150.53408395041643
Iteration: 4, Func. Count: 31, Neg. LLF: 150.41719653580066
Iteration: 5, Func. Count: 39, Neg. LLF: 154.89556648838135
Iteration: 6, Func. Count: 47, Neg. LLF: 148.66588416039494
Iteration: 7, Func. Count: 54, Neg. LLF: 148.00718466961305
Iteration: 8, Func. Count: 61, Neg. LLF: 147.08395668148358
Iteration: 9, Func. Count: 68, Neg. LLF: 146.96117201385428
Iteration: 10, Func. Count: 75, Neg. LLF: 146.8987844642579
Iteration: 11, Func. Count: 82, Neg. LLF: 146.87837345934312
Iteration: 12, Func. Count: 89, Neg. LLF: 146.8711570823912
Iteration: 13, Func. Count: 96, Neg. LLF: 146.86550791103096
Iteration: 14, Func. Count: 103, Neg. LLF: 146.86366593016825
Iteration: 15, Func. Count: 110, Neg. LLF: 146.86257742452028
Iteration: 16, Func. Count: 117, Neg. LLF: 146.8610558455167
Iteration: 17, Func. Count: 124, Neg. LLF: 146.86056956873776
Iteration: 18, Func. Count: 131, Neg. LLF: 146.8604884329445
Iteration: 19, Func. Count: 138, Neg. LLF: 146.86048706116557
Iteration: 20, Func. Count: 144, Neg. LLF: 146.8604870611606
Optimization terminated successfully (Exit mode 0)
Current function value: 146.86048706116557
Iterations: 20
Function evaluations: 144
Gradient evaluations: 20
Iteration: 1, Func. Count: 9, Neg. LLF: 463.9534917063275
Iteration: 2, Func. Count: 18, Neg. LLF: 154.0222899356391
Iteration: 3, Func. Count: 27, Neg. LLF: 169.62810900728522
Iteration: 4, Func. Count: 36, Neg. LLF: 148.44102966601727
Iteration: 5, Func. Count: 44, Neg. LLF: 150.26945568307505
Iteration: 6, Func. Count: 53, Neg. LLF: 147.42150438844803
Iteration: 7, Func. Count: 61, Neg. LLF: 151.3881082055177
Iteration: 8, Func. Count: 70, Neg. LLF: 151.05334518784215
Iteration: 9, Func. Count: 79, Neg. LLF: 146.99446523549366
Iteration: 10, Func. Count: 87, Neg. LLF: 146.9268942467729
Iteration: 11, Func. Count: 95, Neg. LLF: 146.86644448554316
Iteration: 12, Func. Count: 103, Neg. LLF: 146.86203512476976
Iteration: 13, Func. Count: 111, Neg. LLF: 146.86121235557889
Iteration: 14, Func. Count: 119, Neg. LLF: 146.86057597367335
Iteration: 15, Func. Count: 127, Neg. LLF: 146.86049287183675
Iteration: 16, Func. Count: 135, Neg. LLF: 146.86048732777834
Iteration: 17, Func. Count: 142, Neg. LLF: 146.86048735592973
Optimization terminated successfully (Exit mode 0)
Current function value: 146.86048732777834
Iterations: 17
Function evaluations: 142
Gradient evaluations: 17
Iteration: 1, Func. Count: 10, Neg. LLF: 461.7830618566752
Iteration: 2, Func. Count: 20, Neg. LLF: 160.31058371041644
Iteration: 3, Func. Count: 30, Neg. LLF: 154.30976172312705
Iteration: 4, Func. Count: 40, Neg. LLF: 152.65925167349963
Iteration: 5, Func. Count: 50, Neg. LLF: 147.52226803142116
Iteration: 6, Func. Count: 59, Neg. LLF: 147.141156718938
Iteration: 7, Func. Count: 68, Neg. LLF: 146.94471419086304
Iteration: 8, Func. Count: 77, Neg. LLF: 146.88632377152837
Iteration: 9, Func. Count: 86, Neg. LLF: 146.86389964989903
Iteration: 10, Func. Count: 95, Neg. LLF: 146.86211250960088
Iteration: 11, Func. Count: 104, Neg. LLF: 146.86121647475684
Iteration: 12, Func. Count: 113, Neg. LLF: 146.8606305389523
Iteration: 13, Func. Count: 122, Neg. LLF: 146.8605042787957
Iteration: 14, Func. Count: 131, Neg. LLF: 146.86048829125514
Iteration: 15, Func. Count: 140, Neg. LLF: 146.86048718988803
Iteration: 16, Func. Count: 148, Neg. LLF: 146.86048724414468
Optimization terminated successfully (Exit mode 0)
Current function value: 146.86048718988803
Iterations: 16
Function evaluations: 148
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 445.687771224283
Iteration: 2, Func. Count: 22, Neg. LLF: 178.94870216207985
Iteration: 3, Func. Count: 33, Neg. LLF: 148.4458711665274
Iteration: 4, Func. Count: 43, Neg. LLF: 152.6184045833641
Iteration: 5, Func. Count: 54, Neg. LLF: 149.78716921197744
Iteration: 6, Func. Count: 65, Neg. LLF: 165.30815618336814
Iteration: 7, Func. Count: 76, Neg. LLF: 146.9977697136871
Iteration: 8, Func. Count: 86, Neg. LLF: 146.91344388048074
Iteration: 9, Func. Count: 96, Neg. LLF: 146.88394564500575
Iteration: 10, Func. Count: 106, Neg. LLF: 146.86710399061215
Iteration: 11, Func. Count: 116, Neg. LLF: 146.86225646302165
Iteration: 12, Func. Count: 126, Neg. LLF: 146.8614765175517
Iteration: 13, Func. Count: 136, Neg. LLF: 146.86081255213531
Iteration: 14, Func. Count: 146, Neg. LLF: 146.86053756063248
Iteration: 15, Func. Count: 156, Neg. LLF: 146.8604902292932
Iteration: 16, Func. Count: 166, Neg. LLF: 146.86048725625253
Iteration: 17, Func. Count: 175, Neg. LLF: 146.86048725647117
Optimization terminated successfully (Exit mode 0)
Current function value: 146.86048725625253
Iterations: 17
Function evaluations: 175
Gradient evaluations: 17
Iteration: 1, Func. Count: 12, Neg. LLF: 444.4725465563069
Iteration: 2, Func. Count: 24, Neg. LLF: 195.5004701643401
Iteration: 3, Func. Count: 36, Neg. LLF: 148.53291297047312
Iteration: 4, Func. Count: 47, Neg. LLF: 153.24266855042254
Iteration: 5, Func. Count: 59, Neg. LLF: 148.81102157265468
Iteration: 6, Func. Count: 71, Neg. LLF: 157.34727343850972
Iteration: 7, Func. Count: 83, Neg. LLF: 147.13839888711212
Iteration: 8, Func. Count: 94, Neg. LLF: 147.11828723939595
Iteration: 9, Func. Count: 106, Neg. LLF: 146.93433577689115
Iteration: 10, Func. Count: 117, Neg. LLF: 146.88528127446781
Iteration: 11, Func. Count: 128, Neg. LLF: 146.8672900351514
Iteration: 12, Func. Count: 139, Neg. LLF: 146.861825390906
Iteration: 13, Func. Count: 150, Neg. LLF: 146.8606143682071
Iteration: 14, Func. Count: 161, Neg. LLF: 146.8605675945926
Iteration: 15, Func. Count: 172, Neg. LLF: 146.86050457571122
Iteration: 16, Func. Count: 183, Neg. LLF: 146.86049069027786
Iteration: 17, Func. Count: 194, Neg. LLF: 146.86048748767885
Iteration: 18, Func. Count: 204, Neg. LLF: 146.86048754735216
Optimization terminated successfully (Exit mode 0)
Current function value: 146.86048748767885
Iterations: 18
Function evaluations: 204
Gradient evaluations: 18
Iteration: 1, Func. Count: 9, Neg. LLF: 158.35751268084346
Iteration: 2, Func. Count: 18, Neg. LLF: 233.9657568809174
Iteration: 3, Func. Count: 27, Neg. LLF: 152.04939016682243
Iteration: 4, Func. Count: 36, Neg. LLF: 150.41114041690156
Iteration: 5, Func. Count: 44, Neg. LLF: 151.53065650835632
Iteration: 6, Func. Count: 53, Neg. LLF: 149.325239044779
Iteration: 7, Func. Count: 61, Neg. LLF: 1145993.6179262365
Iteration: 8, Func. Count: 70, Neg. LLF: 913560.8880628971
Iteration: 9, Func. Count: 79, Neg. LLF: 915699.1305116095
Iteration: 10, Func. Count: 88, Neg. LLF: 935289.756232515
Iteration: 11, Func. Count: 97, Neg. LLF: 168.46322998671656
Iteration: 12, Func. Count: 106, Neg. LLF: 148.71405707955904
Iteration: 13, Func. Count: 115, Neg. LLF: 147.15923318326
Iteration: 14, Func. Count: 123, Neg. LLF: 147.05878972051246
Iteration: 15, Func. Count: 131, Neg. LLF: 146.96050904729765
Iteration: 16, Func. Count: 139, Neg. LLF: 146.897888605424
Iteration: 17, Func. Count: 147, Neg. LLF: 146.87805276313622
Iteration: 18, Func. Count: 155, Neg. LLF: 146.87324531665095
Iteration: 19, Func. Count: 163, Neg. LLF: 146.86490738457817
Iteration: 20, Func. Count: 171, Neg. LLF: 146.86297441289943
Iteration: 21, Func. Count: 179, Neg. LLF: 146.86085151299898
Iteration: 22, Func. Count: 187, Neg. LLF: 146.86052110819082
Iteration: 23, Func. Count: 195, Neg. LLF: 146.8604872956048
Iteration: 24, Func. Count: 202, Neg. LLF: 146.8604873605277
Optimization terminated successfully (Exit mode 0)
Current function value: 146.8604872956048
Iterations: 24
Function evaluations: 202
Gradient evaluations: 24
Iteration: 1, Func. Count: 10, Neg. LLF: 485.40039870118505
Iteration: 2, Func. Count: 20, Neg. LLF: 161.63712293204426
Iteration: 3, Func. Count: 30, Neg. LLF: 174.1254559428716
Iteration: 4, Func. Count: 40, Neg. LLF: 149.81009688101844
Iteration: 5, Func. Count: 50, Neg. LLF: 147.43257926275254
Iteration: 6, Func. Count: 59, Neg. LLF: 147.11334706222107
Iteration: 7, Func. Count: 68, Neg. LLF: 163.79154115294327
Iteration: 8, Func. Count: 79, Neg. LLF: 146.8889855917629
Iteration: 9, Func. Count: 88, Neg. LLF: 146.87813996243563
Iteration: 10, Func. Count: 97, Neg. LLF: 146.86414176851477
Iteration: 11, Func. Count: 106, Neg. LLF: 146.86240158968002
Iteration: 12, Func. Count: 115, Neg. LLF: 146.86058927993705
Iteration: 13, Func. Count: 124, Neg. LLF: 146.86049934319183
Iteration: 14, Func. Count: 133, Neg. LLF: 146.86048858776823
Iteration: 15, Func. Count: 142, Neg. LLF: 146.8604873215133
Iteration: 16, Func. Count: 150, Neg. LLF: 146.8604873496322
Optimization terminated successfully (Exit mode 0)
Current function value: 146.8604873215133
Iterations: 16
Function evaluations: 150
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 441.1643480292558
Iteration: 2, Func. Count: 22, Neg. LLF: 162.59756493641927
Iteration: 3, Func. Count: 33, Neg. LLF: 153.23618178499294
Iteration: 4, Func. Count: 44, Neg. LLF: 156.30456720691325
Iteration: 5, Func. Count: 55, Neg. LLF: 147.8838865399629
Iteration: 6, Func. Count: 65, Neg. LLF: 149.79397562821148
Iteration: 7, Func. Count: 76, Neg. LLF: 146.96717089097507
Iteration: 8, Func. Count: 86, Neg. LLF: 146.8930387837974
Iteration: 9, Func. Count: 96, Neg. LLF: 146.86774843280008
Iteration: 10, Func. Count: 106, Neg. LLF: 146.8637943479241
Iteration: 11, Func. Count: 116, Neg. LLF: 146.86157493373767
Iteration: 12, Func. Count: 126, Neg. LLF: 146.8609829250964
Iteration: 13, Func. Count: 136, Neg. LLF: 146.86069617193425
Iteration: 14, Func. Count: 146, Neg. LLF: 146.86052802397785
Iteration: 15, Func. Count: 156, Neg. LLF: 146.86049134551376
Iteration: 16, Func. Count: 166, Neg. LLF: 146.86048758036836
Iteration: 17, Func. Count: 175, Neg. LLF: 146.86048763466758
Optimization terminated successfully (Exit mode 0)
Current function value: 146.86048758036836
Iterations: 17
Function evaluations: 175
Gradient evaluations: 17
Iteration: 1, Func. Count: 12, Neg. LLF: 420.3121889032311
Iteration: 2, Func. Count: 24, Neg. LLF: 222.10517807689266
Iteration: 3, Func. Count: 36, Neg. LLF: 149.33686239978164
Iteration: 4, Func. Count: 47, Neg. LLF: 154.30017820547994
Iteration: 5, Func. Count: 59, Neg. LLF: 149.30444659273502
Iteration: 6, Func. Count: 71, Neg. LLF: 160.96950308456422
Iteration: 7, Func. Count: 83, Neg. LLF: 147.06895859350215
Iteration: 8, Func. Count: 94, Neg. LLF: 147.17882461141133
Iteration: 9, Func. Count: 106, Neg. LLF: 146.90840013034108
Iteration: 10, Func. Count: 117, Neg. LLF: 146.87384624184747
Iteration: 11, Func. Count: 128, Neg. LLF: 146.8642150819663
Iteration: 12, Func. Count: 139, Neg. LLF: 146.86229835866152
Iteration: 13, Func. Count: 150, Neg. LLF: 146.8615132695093
Iteration: 14, Func. Count: 161, Neg. LLF: 146.86085390496748
Iteration: 15, Func. Count: 172, Neg. LLF: 146.8605820963554
Iteration: 16, Func. Count: 183, Neg. LLF: 146.86050161769447
Iteration: 17, Func. Count: 194, Neg. LLF: 146.8604885945076
Iteration: 18, Func. Count: 205, Neg. LLF: 146.86048713601693
Iteration: 19, Func. Count: 215, Neg. LLF: 146.86048713623742
Optimization terminated successfully (Exit mode 0)
Current function value: 146.86048713601693
Iterations: 19
Function evaluations: 215
Gradient evaluations: 19
Iteration: 1, Func. Count: 13, Neg. LLF: 280.1385360750858
Iteration: 2, Func. Count: 26, Neg. LLF: 180.21426577225046
Iteration: 3, Func. Count: 39, Neg. LLF: 151.29433468227825
Iteration: 4, Func. Count: 52, Neg. LLF: 147.1684380840286
Iteration: 5, Func. Count: 64, Neg. LLF: 147.30223081042516
Iteration: 6, Func. Count: 77, Neg. LLF: 157.9112201661323
Iteration: 7, Func. Count: 90, Neg. LLF: 146.91442527363665
Iteration: 8, Func. Count: 102, Neg. LLF: 146.8869438710465
Iteration: 9, Func. Count: 114, Neg. LLF: 146.86614814790093
Iteration: 10, Func. Count: 126, Neg. LLF: 146.86231933060614
Iteration: 11, Func. Count: 138, Neg. LLF: 146.86132426768862
Iteration: 12, Func. Count: 150, Neg. LLF: 146.86065601755863
Iteration: 13, Func. Count: 162, Neg. LLF: 146.86050691831664
Iteration: 14, Func. Count: 174, Neg. LLF: 146.86048949166286
Iteration: 15, Func. Count: 186, Neg. LLF: 146.8604878951075
Iteration: 16, Func. Count: 198, Neg. LLF: 146.86048723836953
Optimization terminated successfully (Exit mode 0)
Current function value: 146.86048723836953
Iterations: 16
Function evaluations: 198
Gradient evaluations: 16
Iteration: 1, Func. Count: 6, Neg. LLF: 159.01560344243757
Iteration: 2, Func. Count: 12, Neg. LLF: 156.00164912673938
Iteration: 3, Func. Count: 19, Neg. LLF: 159.82131011752045
Iteration: 4, Func. Count: 25, Neg. LLF: 153.87359674141183
Iteration: 5, Func. Count: 30, Neg. LLF: 152.65697726672406
Iteration: 6, Func. Count: 35, Neg. LLF: 234.46683410231088
Iteration: 7, Func. Count: 41, Neg. LLF: 223.68183856413734
Iteration: 8, Func. Count: 47, Neg. LLF: 217.19004616649605
Iteration: 9, Func. Count: 53, Neg. LLF: 215.1955331754469
Iteration: 10, Func. Count: 59, Neg. LLF: 216.0989615298367
Iteration: 11, Func. Count: 65, Neg. LLF: 214.63120222780805
Iteration: 12, Func. Count: 71, Neg. LLF: 153.4165675946885
Iteration: 13, Func. Count: 77, Neg. LLF: 150.0341827911997
Iteration: 14, Func. Count: 83, Neg. LLF: 149.6560053860653
Iteration: 15, Func. Count: 88, Neg. LLF: 149.61629226754286
Iteration: 16, Func. Count: 93, Neg. LLF: 149.57942530006443
Iteration: 17, Func. Count: 98, Neg. LLF: 149.5772006260083
Iteration: 18, Func. Count: 103, Neg. LLF: 149.5760664230546
Iteration: 19, Func. Count: 107, Neg. LLF: 149.57606639934343
Optimization terminated successfully (Exit mode 0)
Current function value: 149.5760664230546
Iterations: 19
Function evaluations: 107
Gradient evaluations: 19
Iteration: 1, Func. Count: 7, Neg. LLF: 368.8795361550878
Iteration: 2, Func. Count: 14, Neg. LLF: 152.50936560687316
Iteration: 3, Func. Count: 21, Neg. LLF: 153.6872571422708
Iteration: 4, Func. Count: 28, Neg. LLF: 229.0071318720418
Iteration: 5, Func. Count: 35, Neg. LLF: 149.27611948920045
Iteration: 6, Func. Count: 41, Neg. LLF: 149.15451405620004
Iteration: 7, Func. Count: 47, Neg. LLF: 149.13889659287247
Iteration: 8, Func. Count: 53, Neg. LLF: 149.1365271035677
Iteration: 9, Func. Count: 59, Neg. LLF: 149.13629183542264
Iteration: 10, Func. Count: 65, Neg. LLF: 149.13623553865273
Iteration: 11, Func. Count: 71, Neg. LLF: 149.13623209423608
Iteration: 12, Func. Count: 76, Neg. LLF: 149.13623206790635
Optimization terminated successfully (Exit mode 0)
Current function value: 149.13623209423608
Iterations: 12
Function evaluations: 76
Gradient evaluations: 12
Iteration: 1, Func. Count: 8, Neg. LLF: 152.60196152496036
Iteration: 2, Func. Count: 15, Neg. LLF: 211.31480880710996
Iteration: 3, Func. Count: 23, Neg. LLF: 169.84207565927562
Iteration: 4, Func. Count: 31, Neg. LLF: 151.6906730976297
Iteration: 5, Func. Count: 39, Neg. LLF: 149.2960976584307
Iteration: 6, Func. Count: 46, Neg. LLF: 149.16218805919
Iteration: 7, Func. Count: 53, Neg. LLF: 149.13926116403718
Iteration: 8, Func. Count: 60, Neg. LLF: 149.1375735277175
Iteration: 9, Func. Count: 67, Neg. LLF: 149.1362836224704
Iteration: 10, Func. Count: 74, Neg. LLF: 149.13623264055568
Iteration: 11, Func. Count: 81, Neg. LLF: 149.1362319996509
Optimization terminated successfully (Exit mode 0)
Current function value: 149.1362319996509
Iterations: 11
Function evaluations: 81
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 197.52707367964612
Iteration: 2, Func. Count: 18, Neg. LLF: 272.54403246168806
Iteration: 3, Func. Count: 27, Neg. LLF: 214.22132237616245
Iteration: 4, Func. Count: 36, Neg. LLF: 149.62554441535752
Iteration: 5, Func. Count: 44, Neg. LLF: 152.18445015700178
Iteration: 6, Func. Count: 53, Neg. LLF: 149.26597620073613
Iteration: 7, Func. Count: 61, Neg. LLF: 149.18243842802391
Iteration: 8, Func. Count: 69, Neg. LLF: 149.1665483879001
Iteration: 9, Func. Count: 77, Neg. LLF: 149.14218126342948
Iteration: 10, Func. Count: 85, Neg. LLF: 149.13684005214503
Iteration: 11, Func. Count: 93, Neg. LLF: 149.13623852900002
Iteration: 12, Func. Count: 101, Neg. LLF: 149.13623202574715
Iteration: 13, Func. Count: 108, Neg. LLF: 149.13623203637903
Optimization terminated successfully (Exit mode 0)
Current function value: 149.13623202574715
Iterations: 13
Function evaluations: 108
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 195.6294765593859
Iteration: 2, Func. Count: 20, Neg. LLF: 245.54755669486522
Iteration: 3, Func. Count: 30, Neg. LLF: 220.6073208951477
Iteration: 4, Func. Count: 40, Neg. LLF: 149.60920114306728
Iteration: 5, Func. Count: 49, Neg. LLF: 151.47891025028906
Iteration: 6, Func. Count: 59, Neg. LLF: 149.8282138515739
Iteration: 7, Func. Count: 69, Neg. LLF: 149.1701666848326
Iteration: 8, Func. Count: 78, Neg. LLF: 149.15793337679614
Iteration: 9, Func. Count: 87, Neg. LLF: 149.1450240564585
Iteration: 10, Func. Count: 96, Neg. LLF: 149.13831811851088
Iteration: 11, Func. Count: 105, Neg. LLF: 149.13643775750472
Iteration: 12, Func. Count: 114, Neg. LLF: 149.1362434898189
Iteration: 13, Func. Count: 123, Neg. LLF: 149.13623279059578
Iteration: 14, Func. Count: 132, Neg. LLF: 149.13623202525298
Optimization terminated successfully (Exit mode 0)
Current function value: 149.13623202525298
Iterations: 14
Function evaluations: 132
Gradient evaluations: 14
Iteration: 1, Func. Count: 7, Neg. LLF: 159.0077775188436
Iteration: 2, Func. Count: 14, Neg. LLF: 154.8171773931034
Iteration: 3, Func. Count: 22, Neg. LLF: 153.88515071125204
Iteration: 4, Func. Count: 29, Neg. LLF: 153.25644464449954
Iteration: 5, Func. Count: 35, Neg. LLF: 165.84523619102058
Iteration: 6, Func. Count: 42, Neg. LLF: 254.24565475095568
Iteration: 7, Func. Count: 49, Neg. LLF: 199.140227303011
Iteration: 8, Func. Count: 56, Neg. LLF: 191.4661995401178
Iteration: 9, Func. Count: 63, Neg. LLF: 183.7305680448528
Iteration: 10, Func. Count: 70, Neg. LLF: 176.37501518814756
Iteration: 11, Func. Count: 77, Neg. LLF: 175.75836488402442
Iteration: 12, Func. Count: 84, Neg. LLF: 176.5013220695127
Iteration: 13, Func. Count: 91, Neg. LLF: 177.26686306253515
Iteration: 14, Func. Count: 98, Neg. LLF: 152.6893006776415
Iteration: 15, Func. Count: 105, Neg. LLF: 150.2783754980587
Iteration: 16, Func. Count: 112, Neg. LLF: 149.67243026069505
Iteration: 17, Func. Count: 118, Neg. LLF: 149.56111949906588
Iteration: 18, Func. Count: 124, Neg. LLF: 149.48258693453815
Iteration: 19, Func. Count: 130, Neg. LLF: 149.45275495640206
Iteration: 20, Func. Count: 136, Neg. LLF: 149.41417600690357
Iteration: 21, Func. Count: 142, Neg. LLF: 149.3932523781356
Iteration: 22, Func. Count: 148, Neg. LLF: 149.38890156102036
Iteration: 23, Func. Count: 154, Neg. LLF: 149.38883907287862
Iteration: 24, Func. Count: 160, Neg. LLF: 149.38883839370135
Optimization terminated successfully (Exit mode 0)
Current function value: 149.38883839370135
Iterations: 24
Function evaluations: 160
Gradient evaluations: 24
Iteration: 1, Func. Count: 8, Neg. LLF: 193.23050986945333
Iteration: 2, Func. Count: 16, Neg. LLF: 222.28599017360074
Iteration: 3, Func. Count: 24, Neg. LLF: 215.61761694166782
Iteration: 4, Func. Count: 32, Neg. LLF: 151.36680425189752
Iteration: 5, Func. Count: 40, Neg. LLF: 154.60446453734767
Iteration: 6, Func. Count: 48, Neg. LLF: 149.03321058184522
Iteration: 7, Func. Count: 55, Neg. LLF: 148.89896643524924
Iteration: 8, Func. Count: 62, Neg. LLF: 148.87856882469956
Iteration: 9, Func. Count: 69, Neg. LLF: 148.87195263046723
Iteration: 10, Func. Count: 76, Neg. LLF: 148.8714855577189
Iteration: 11, Func. Count: 83, Neg. LLF: 148.87147160830392
Iteration: 12, Func. Count: 90, Neg. LLF: 148.87146948615907
Iteration: 13, Func. Count: 96, Neg. LLF: 148.87146944662277
Optimization terminated successfully (Exit mode 0)
Current function value: 148.87146948615907
Iterations: 13
Function evaluations: 96
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 192.6731433591655
Iteration: 2, Func. Count: 18, Neg. LLF: 170.36676398672077
Iteration: 3, Func. Count: 27, Neg. LLF: 196.84631160060763
Iteration: 4, Func. Count: 36, Neg. LLF: 162.02343611970994
Iteration: 5, Func. Count: 45, Neg. LLF: 150.27495673343452
Iteration: 6, Func. Count: 54, Neg. LLF: 155.39255596932577
Iteration: 7, Func. Count: 63, Neg. LLF: 148.96957061216386
Iteration: 8, Func. Count: 71, Neg. LLF: 148.88989419716313
Iteration: 9, Func. Count: 79, Neg. LLF: 148.87601849370367
Iteration: 10, Func. Count: 87, Neg. LLF: 148.87267131504007
Iteration: 11, Func. Count: 95, Neg. LLF: 148.871711846665
Iteration: 12, Func. Count: 103, Neg. LLF: 148.8715154311446
Iteration: 13, Func. Count: 111, Neg. LLF: 148.87147413240163
Iteration: 14, Func. Count: 119, Neg. LLF: 148.87146960279165
Iteration: 15, Func. Count: 126, Neg. LLF: 148.87146962285058
Optimization terminated successfully (Exit mode 0)
Current function value: 148.87146960279165
Iterations: 15
Function evaluations: 126
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 191.55146327420027
Iteration: 2, Func. Count: 20, Neg. LLF: 157.4400248246326
Iteration: 3, Func. Count: 30, Neg. LLF: 215.8238433050841
Iteration: 4, Func. Count: 40, Neg. LLF: 153.39666897184244
Iteration: 5, Func. Count: 50, Neg. LLF: 149.19550213056746
Iteration: 6, Func. Count: 59, Neg. LLF: 158.78527766384877
Iteration: 7, Func. Count: 69, Neg. LLF: 149.2393587033929
Iteration: 8, Func. Count: 79, Neg. LLF: 148.90184351474863
Iteration: 9, Func. Count: 88, Neg. LLF: 148.87385936798907
Iteration: 10, Func. Count: 97, Neg. LLF: 148.87150805090124
Iteration: 11, Func. Count: 106, Neg. LLF: 148.87147010694778
Iteration: 12, Func. Count: 115, Neg. LLF: 148.8714694980198
Optimization terminated successfully (Exit mode 0)
Current function value: 148.8714694980198
Iterations: 12
Function evaluations: 115
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 194.07642743464442
Iteration: 2, Func. Count: 22, Neg. LLF: 161.48491372840752
Iteration: 3, Func. Count: 33, Neg. LLF: 212.0427502874312
Iteration: 4, Func. Count: 44, Neg. LLF: 152.58754643565436
Iteration: 5, Func. Count: 55, Neg. LLF: 149.28555637932598
Iteration: 6, Func. Count: 65, Neg. LLF: 158.71686291910692
Iteration: 7, Func. Count: 76, Neg. LLF: 149.68810086593857
Iteration: 8, Func. Count: 87, Neg. LLF: 148.91570751939415
Iteration: 9, Func. Count: 97, Neg. LLF: 148.87582950875063
Iteration: 10, Func. Count: 107, Neg. LLF: 148.87156065372952
Iteration: 11, Func. Count: 117, Neg. LLF: 148.8714733909334
Iteration: 12, Func. Count: 127, Neg. LLF: 148.87147021835344
Iteration: 13, Func. Count: 137, Neg. LLF: 148.87146946076794
Optimization terminated successfully (Exit mode 0)
Current function value: 148.87146946076794
Iterations: 13
Function evaluations: 137
Gradient evaluations: 13
Iteration: 1, Func. Count: 8, Neg. LLF: 159.2702497794189
Iteration: 2, Func. Count: 16, Neg. LLF: 175.10462391203862
Iteration: 3, Func. Count: 24, Neg. LLF: 172.14727723303943
Iteration: 4, Func. Count: 32, Neg. LLF: 153.40511838968146
Iteration: 5, Func. Count: 39, Neg. LLF: 160.93911247091765
Iteration: 6, Func. Count: 47, Neg. LLF: 160.41813351993207
Iteration: 7, Func. Count: 55, Neg. LLF: 152.61855959499755
Iteration: 8, Func. Count: 62, Neg. LLF: 150.44269746070194
Iteration: 9, Func. Count: 69, Neg. LLF: 149.5969954215609
Iteration: 10, Func. Count: 76, Neg. LLF: 149.29049162478103
Iteration: 11, Func. Count: 83, Neg. LLF: 149.24237466256284
Iteration: 12, Func. Count: 90, Neg. LLF: 149.1804200788121
Iteration: 13, Func. Count: 97, Neg. LLF: 149.1489716349241
Iteration: 14, Func. Count: 104, Neg. LLF: 149.14353204531267
Iteration: 15, Func. Count: 111, Neg. LLF: 149.14315081264084
Iteration: 16, Func. Count: 118, Neg. LLF: 149.14311637920713
Iteration: 17, Func. Count: 125, Neg. LLF: 149.14311367764603
Iteration: 18, Func. Count: 131, Neg. LLF: 149.143113695571
Optimization terminated successfully (Exit mode 0)
Current function value: 149.14311367764603
Iterations: 18
Function evaluations: 131
Gradient evaluations: 18
Iteration: 1, Func. Count: 9, Neg. LLF: 195.56789846517668
Iteration: 2, Func. Count: 18, Neg. LLF: 420.06222990900216
Iteration: 3, Func. Count: 27, Neg. LLF: 240.90020483443422
Iteration: 4, Func. Count: 36, Neg. LLF: 149.4212212280727
Iteration: 5, Func. Count: 44, Neg. LLF: 158.28068112869633
Iteration: 6, Func. Count: 53, Neg. LLF: 151.6091923110895
Iteration: 7, Func. Count: 62, Neg. LLF: 148.912574275782
Iteration: 8, Func. Count: 70, Neg. LLF: 148.87685392769149
Iteration: 9, Func. Count: 78, Neg. LLF: 148.8615282283925
Iteration: 10, Func. Count: 86, Neg. LLF: 148.85558487234866
Iteration: 11, Func. Count: 94, Neg. LLF: 148.8534826716212
Iteration: 12, Func. Count: 102, Neg. LLF: 148.85332706672958
Iteration: 13, Func. Count: 110, Neg. LLF: 148.85330632205648
Iteration: 14, Func. Count: 118, Neg. LLF: 148.8533038099331
Iteration: 15, Func. Count: 125, Neg. LLF: 148.85330376809733
Optimization terminated successfully (Exit mode 0)
Current function value: 148.8533038099331
Iterations: 15
Function evaluations: 125
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 305.2783520794928
Iteration: 2, Func. Count: 20, Neg. LLF: 202.96923650126018
Iteration: 3, Func. Count: 30, Neg. LLF: 236.87652993623777
Iteration: 4, Func. Count: 40, Neg. LLF: 165.3076309078131
Iteration: 5, Func. Count: 50, Neg. LLF: 150.28373285650284
Iteration: 6, Func. Count: 59, Neg. LLF: 149.21027126641326
Iteration: 7, Func. Count: 68, Neg. LLF: 149.36858461849272
Iteration: 8, Func. Count: 78, Neg. LLF: 148.86069979206832
Iteration: 9, Func. Count: 87, Neg. LLF: 148.8551458518916
Iteration: 10, Func. Count: 96, Neg. LLF: 148.85438525631162
Iteration: 11, Func. Count: 105, Neg. LLF: 148.85338855331767
Iteration: 12, Func. Count: 114, Neg. LLF: 148.85334077177504
Iteration: 13, Func. Count: 123, Neg. LLF: 148.85330425621723
Iteration: 14, Func. Count: 132, Neg. LLF: 148.85330361585642
Optimization terminated successfully (Exit mode 0)
Current function value: 148.85330361585642
Iterations: 14
Function evaluations: 132
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 196.24560038436738
Iteration: 2, Func. Count: 22, Neg. LLF: 288.0786021902865
Iteration: 3, Func. Count: 33, Neg. LLF: 227.77084842870323
Iteration: 4, Func. Count: 44, Neg. LLF: 150.44582104390287
Iteration: 5, Func. Count: 54, Neg. LLF: 153.63422880209228
Iteration: 6, Func. Count: 65, Neg. LLF: 160.97392988622173
Iteration: 7, Func. Count: 76, Neg. LLF: 149.10936707161235
Iteration: 8, Func. Count: 87, Neg. LLF: 148.86442758020883
Iteration: 9, Func. Count: 97, Neg. LLF: 148.8551374484758
Iteration: 10, Func. Count: 107, Neg. LLF: 148.85382847733203
Iteration: 11, Func. Count: 117, Neg. LLF: 148.8533663557897
Iteration: 12, Func. Count: 127, Neg. LLF: 148.85331406870523
Iteration: 13, Func. Count: 137, Neg. LLF: 148.85330511198714
Iteration: 14, Func. Count: 147, Neg. LLF: 148.85330378201587
Iteration: 15, Func. Count: 156, Neg. LLF: 148.85330378491312
Optimization terminated successfully (Exit mode 0)
Current function value: 148.85330378201587
Iterations: 15
Function evaluations: 156
Gradient evaluations: 15
Iteration: 1, Func. Count: 12, Neg. LLF: 210.01115390527886
Iteration: 2, Func. Count: 24, Neg. LLF: 282.79624410893314
Iteration: 3, Func. Count: 36, Neg. LLF: 206.1145103632546
Iteration: 4, Func. Count: 48, Neg. LLF: 157.29941630216462
Iteration: 5, Func. Count: 60, Neg. LLF: 153.7168841263757
Iteration: 6, Func. Count: 72, Neg. LLF: 156.89311322400656
Iteration: 7, Func. Count: 84, Neg. LLF: 148.90305424384476
Iteration: 8, Func. Count: 95, Neg. LLF: 148.89810826685923
Iteration: 9, Func. Count: 107, Neg. LLF: 148.85891425636194
Iteration: 10, Func. Count: 118, Neg. LLF: 148.85441807789266
Iteration: 11, Func. Count: 129, Neg. LLF: 148.8537024071444
Iteration: 12, Func. Count: 140, Neg. LLF: 148.85341823275846
Iteration: 13, Func. Count: 151, Neg. LLF: 148.85332618764025
Iteration: 14, Func. Count: 162, Neg. LLF: 148.85331261277966
Iteration: 15, Func. Count: 173, Neg. LLF: 148.8533071111634
Iteration: 16, Func. Count: 184, Neg. LLF: 148.85330411205402
Iteration: 17, Func. Count: 194, Neg. LLF: 148.85330412887242
Optimization terminated successfully (Exit mode 0)
Current function value: 148.85330411205402
Iterations: 17
Function evaluations: 194
Gradient evaluations: 17
Iteration: 1, Func. Count: 9, Neg. LLF: 157.30000962419712
Iteration: 2, Func. Count: 18, Neg. LLF: 154.7815671173153
Iteration: 3, Func. Count: 27, Neg. LLF: 150.56811173884765
Iteration: 4, Func. Count: 35, Neg. LLF: 156.50847336911187
Iteration: 5, Func. Count: 44, Neg. LLF: 150.99590776282145
Iteration: 6, Func. Count: 53, Neg. LLF: 149.64012514959717
Iteration: 7, Func. Count: 61, Neg. LLF: 148.29774256642574
Iteration: 8, Func. Count: 69, Neg. LLF: 147.4559379528535
Iteration: 9, Func. Count: 77, Neg. LLF: 151.9619761426364
Iteration: 10, Func. Count: 86, Neg. LLF: 151.4059229284929
Iteration: 11, Func. Count: 96, Neg. LLF: 147.04633504357201
Iteration: 12, Func. Count: 105, Neg. LLF: 146.76549622399676
Iteration: 13, Func. Count: 113, Neg. LLF: 146.71630312028157
Iteration: 14, Func. Count: 121, Neg. LLF: 146.70954020968256
Iteration: 15, Func. Count: 129, Neg. LLF: 146.70761741989344
Iteration: 16, Func. Count: 137, Neg. LLF: 146.70630550989512
Iteration: 17, Func. Count: 145, Neg. LLF: 146.70545759333194
Iteration: 18, Func. Count: 153, Neg. LLF: 146.7051799772471
Iteration: 19, Func. Count: 161, Neg. LLF: 146.70506899929032
Iteration: 20, Func. Count: 169, Neg. LLF: 146.70500780716085
Iteration: 21, Func. Count: 177, Neg. LLF: 146.70497662345045
Iteration: 22, Func. Count: 185, Neg. LLF: 146.70497048343262
Iteration: 23, Func. Count: 192, Neg. LLF: 146.70497048342614
Optimization terminated successfully (Exit mode 0)
Current function value: 146.70497048343262
Iterations: 23
Function evaluations: 192
Gradient evaluations: 23
Iteration: 1, Func. Count: 10, Neg. LLF: 202.22965266666907
Iteration: 2, Func. Count: 20, Neg. LLF: 194.3313744972961
Iteration: 3, Func. Count: 30, Neg. LLF: 155.78541091658974
Iteration: 4, Func. Count: 40, Neg. LLF: 153.64252981931446
Iteration: 5, Func. Count: 50, Neg. LLF: 147.3411085880542
Iteration: 6, Func. Count: 59, Neg. LLF: 146.7737972625247
Iteration: 7, Func. Count: 68, Neg. LLF: 149.46195635454492
Iteration: 8, Func. Count: 78, Neg. LLF: 146.71292309402426
Iteration: 9, Func. Count: 87, Neg. LLF: 146.70676581888924
Iteration: 10, Func. Count: 96, Neg. LLF: 146.70556949816014
Iteration: 11, Func. Count: 105, Neg. LLF: 146.7050599641998
Iteration: 12, Func. Count: 114, Neg. LLF: 146.7049978112519
Iteration: 13, Func. Count: 123, Neg. LLF: 146.7049847859829
Iteration: 14, Func. Count: 132, Neg. LLF: 146.70497414630253
Iteration: 15, Func. Count: 141, Neg. LLF: 146.70497056636222
Iteration: 16, Func. Count: 149, Neg. LLF: 146.70497061907764
Optimization terminated successfully (Exit mode 0)
Current function value: 146.70497056636222
Iterations: 16
Function evaluations: 149
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 198.8560931913314
Iteration: 2, Func. Count: 22, Neg. LLF: 189.5407556239451
Iteration: 3, Func. Count: 33, Neg. LLF: 170.1526695857253
Iteration: 4, Func. Count: 44, Neg. LLF: 154.05142001177944
Iteration: 5, Func. Count: 55, Neg. LLF: 148.911464329731
Iteration: 6, Func. Count: 66, Neg. LLF: 147.05715849359308
Iteration: 7, Func. Count: 76, Neg. LLF: 147.67123263799212
Iteration: 8, Func. Count: 87, Neg. LLF: 146.73450690803548
Iteration: 9, Func. Count: 97, Neg. LLF: 146.71088345209066
Iteration: 10, Func. Count: 107, Neg. LLF: 146.7077569424248
Iteration: 11, Func. Count: 117, Neg. LLF: 146.70616031307944
Iteration: 12, Func. Count: 127, Neg. LLF: 146.70575408171064
Iteration: 13, Func. Count: 137, Neg. LLF: 146.70510980985563
Iteration: 14, Func. Count: 147, Neg. LLF: 146.70498419817582
Iteration: 15, Func. Count: 157, Neg. LLF: 146.70497079377793
Iteration: 16, Func. Count: 167, Neg. LLF: 146.70497017934704
Optimization terminated successfully (Exit mode 0)
Current function value: 146.70497017934704
Iterations: 16
Function evaluations: 167
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 183.42908962054517
Iteration: 2, Func. Count: 24, Neg. LLF: 166.3163974338392
Iteration: 3, Func. Count: 36, Neg. LLF: 199.5051274059907
Iteration: 4, Func. Count: 48, Neg. LLF: 164.40520593823487
Iteration: 5, Func. Count: 60, Neg. LLF: 148.20900381769977
Iteration: 6, Func. Count: 71, Neg. LLF: 147.2538127916129
Iteration: 7, Func. Count: 82, Neg. LLF: 147.14449075014755
Iteration: 8, Func. Count: 94, Neg. LLF: 148.27377625980986
Iteration: 9, Func. Count: 106, Neg. LLF: 146.74548535995422
Iteration: 10, Func. Count: 117, Neg. LLF: 146.74875508226833
Iteration: 11, Func. Count: 129, Neg. LLF: 146.70984822450964
Iteration: 12, Func. Count: 140, Neg. LLF: 146.70598028517347
Iteration: 13, Func. Count: 151, Neg. LLF: 146.70503791550672
Iteration: 14, Func. Count: 162, Neg. LLF: 146.704976859563
Iteration: 15, Func. Count: 173, Neg. LLF: 146.70497399515787
Iteration: 16, Func. Count: 184, Neg. LLF: 146.70497235424142
Iteration: 17, Func. Count: 195, Neg. LLF: 146.704970778186
Iteration: 18, Func. Count: 205, Neg. LLF: 146.70497079449711
Optimization terminated successfully (Exit mode 0)
Current function value: 146.704970778186
Iterations: 18
Function evaluations: 205
Gradient evaluations: 18
Iteration: 1, Func. Count: 13, Neg. LLF: 188.07590899658356
Iteration: 2, Func. Count: 26, Neg. LLF: 176.03077863301374
Iteration: 3, Func. Count: 39, Neg. LLF: 150.96013413615978
Iteration: 4, Func. Count: 52, Neg. LLF: 166.29587710643537
Iteration: 5, Func. Count: 65, Neg. LLF: 149.419020094105
Iteration: 6, Func. Count: 78, Neg. LLF: 147.05354179635884
Iteration: 7, Func. Count: 90, Neg. LLF: 147.0688019802501
Iteration: 8, Func. Count: 103, Neg. LLF: 146.7337820617094
Iteration: 9, Func. Count: 115, Neg. LLF: 146.75312278585204
Iteration: 10, Func. Count: 128, Neg. LLF: 146.70707031536432
Iteration: 11, Func. Count: 140, Neg. LLF: 146.7054191889789
Iteration: 12, Func. Count: 152, Neg. LLF: 146.70499439443645
Iteration: 13, Func. Count: 164, Neg. LLF: 146.70497350155966
Iteration: 14, Func. Count: 176, Neg. LLF: 146.7049722464406
Iteration: 15, Func. Count: 187, Neg. LLF: 146.7049723195376
Optimization terminated successfully (Exit mode 0)
Current function value: 146.7049722464406
Iterations: 15
Function evaluations: 187
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 157.2991581890894
Iteration: 2, Func. Count: 20, Neg. LLF: 155.8734459738092
Iteration: 3, Func. Count: 30, Neg. LLF: 150.66581573878102
Iteration: 4, Func. Count: 39, Neg. LLF: 151.87223585763607
Iteration: 5, Func. Count: 49, Neg. LLF: 151.31466233963346
Iteration: 6, Func. Count: 59, Neg. LLF: 153.3759032075422
Iteration: 7, Func. Count: 69, Neg. LLF: 149.20456851487623
Iteration: 8, Func. Count: 78, Neg. LLF: 149.6633905596935
Iteration: 9, Func. Count: 88, Neg. LLF: 195.35166692017728
Iteration: 10, Func. Count: 98, Neg. LLF: 3317.736309285923
Iteration: 11, Func. Count: 108, Neg. LLF: 991.4459756086097
Iteration: 12, Func. Count: 118, Neg. LLF: 147.1033489525671
Iteration: 13, Func. Count: 127, Neg. LLF: 146.8655504409297
Iteration: 14, Func. Count: 136, Neg. LLF: 147.16562221695213
Iteration: 15, Func. Count: 146, Neg. LLF: 146.76034372016858
Iteration: 16, Func. Count: 155, Neg. LLF: 146.70947811060776
Iteration: 17, Func. Count: 164, Neg. LLF: 146.70657802624785
Iteration: 18, Func. Count: 173, Neg. LLF: 146.70543525361825
Iteration: 19, Func. Count: 182, Neg. LLF: 146.70513951159273
Iteration: 20, Func. Count: 191, Neg. LLF: 146.705046316627
Iteration: 21, Func. Count: 200, Neg. LLF: 146.70500724917116
Iteration: 22, Func. Count: 209, Neg. LLF: 146.70497665203433
Iteration: 23, Func. Count: 218, Neg. LLF: 146.7049708191628
Iteration: 24, Func. Count: 227, Neg. LLF: 146.70497017511323
Optimization terminated successfully (Exit mode 0)
Current function value: 146.70497017511323
Iterations: 24
Function evaluations: 227
Gradient evaluations: 24
Iteration: 1, Func. Count: 11, Neg. LLF: 206.91657415406837
Iteration: 2, Func. Count: 22, Neg. LLF: 191.83379521898385
Iteration: 3, Func. Count: 33, Neg. LLF: 181.46708715657007
Iteration: 4, Func. Count: 44, Neg. LLF: 151.77978071371692
Iteration: 5, Func. Count: 55, Neg. LLF: 148.1849058626532
Iteration: 6, Func. Count: 65, Neg. LLF: 146.7695149760258
Iteration: 7, Func. Count: 75, Neg. LLF: 146.7814248605085
Iteration: 8, Func. Count: 86, Neg. LLF: 146.8510829799297
Iteration: 9, Func. Count: 97, Neg. LLF: 146.70910314766374
Iteration: 10, Func. Count: 107, Neg. LLF: 146.7072344198091
Iteration: 11, Func. Count: 117, Neg. LLF: 146.705956995644
Iteration: 12, Func. Count: 127, Neg. LLF: 146.7051374117062
Iteration: 13, Func. Count: 137, Neg. LLF: 146.7049841246294
Iteration: 14, Func. Count: 147, Neg. LLF: 146.7049718632909
Iteration: 15, Func. Count: 157, Neg. LLF: 146.70497076520607
Iteration: 16, Func. Count: 166, Neg. LLF: 146.70497081787607
Optimization terminated successfully (Exit mode 0)
Current function value: 146.70497076520607
Iterations: 16
Function evaluations: 166
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 157.96124362617428
Iteration: 2, Func. Count: 24, Neg. LLF: 167.62496814222624
Iteration: 3, Func. Count: 36, Neg. LLF: 165.6452127789907
Iteration: 4, Func. Count: 48, Neg. LLF: 163.5979098424866
Iteration: 5, Func. Count: 60, Neg. LLF: 148.54423413309186
Iteration: 6, Func. Count: 72, Neg. LLF: 146.7873789135123
Iteration: 7, Func. Count: 83, Neg. LLF: 146.72441105658925
Iteration: 8, Func. Count: 94, Neg. LLF: 146.7078403983582
Iteration: 9, Func. Count: 105, Neg. LLF: 146.7055040510928
Iteration: 10, Func. Count: 116, Neg. LLF: 146.70503667249233
Iteration: 11, Func. Count: 127, Neg. LLF: 146.7049992338298
Iteration: 12, Func. Count: 138, Neg. LLF: 146.70497696866065
Iteration: 13, Func. Count: 149, Neg. LLF: 146.7049713573038
Iteration: 14, Func. Count: 160, Neg. LLF: 146.70497018310135
Iteration: 15, Func. Count: 170, Neg. LLF: 146.7049702460272
Optimization terminated successfully (Exit mode 0)
Current function value: 146.70497018310135
Iterations: 15
Function evaluations: 170
Gradient evaluations: 15
Iteration: 1, Func. Count: 13, Neg. LLF: 181.72877009361665
Iteration: 2, Func. Count: 26, Neg. LLF: 159.54043092028442
Iteration: 3, Func. Count: 39, Neg. LLF: 153.944207636093
Iteration: 4, Func. Count: 52, Neg. LLF: 163.72387273833587
Iteration: 5, Func. Count: 65, Neg. LLF: 147.60819023258318
Iteration: 6, Func. Count: 77, Neg. LLF: 146.979963204993
Iteration: 7, Func. Count: 89, Neg. LLF: 147.3391575090304
Iteration: 8, Func. Count: 102, Neg. LLF: 146.74413514049212
Iteration: 9, Func. Count: 114, Neg. LLF: 146.7234950197544
Iteration: 10, Func. Count: 126, Neg. LLF: 146.70697210977184
Iteration: 11, Func. Count: 138, Neg. LLF: 146.70543920999154
Iteration: 12, Func. Count: 150, Neg. LLF: 146.70505123743268
Iteration: 13, Func. Count: 162, Neg. LLF: 146.7050014471412
Iteration: 14, Func. Count: 174, Neg. LLF: 146.70498118010286
Iteration: 15, Func. Count: 186, Neg. LLF: 146.7049758101668
Iteration: 16, Func. Count: 198, Neg. LLF: 146.70497162585434
Iteration: 17, Func. Count: 210, Neg. LLF: 146.70497030518072
Iteration: 18, Func. Count: 221, Neg. LLF: 146.7049703215263
Optimization terminated successfully (Exit mode 0)
Current function value: 146.70497030518072
Iterations: 18
Function evaluations: 221
Gradient evaluations: 18
Iteration: 1, Func. Count: 14, Neg. LLF: 189.1909531818569
Iteration: 2, Func. Count: 28, Neg. LLF: 337.16882972766473
Iteration: 3, Func. Count: 42, Neg. LLF: 152.98288395244722
Iteration: 4, Func. Count: 56, Neg. LLF: 154.1469046759383
Iteration: 5, Func. Count: 70, Neg. LLF: 147.7314564163974
Iteration: 6, Func. Count: 83, Neg. LLF: 149.68813878608896
Iteration: 7, Func. Count: 97, Neg. LLF: 150.95591188061567
Iteration: 8, Func. Count: 111, Neg. LLF: 147.07351374162639
Iteration: 9, Func. Count: 124, Neg. LLF: 146.81993337276458
Iteration: 10, Func. Count: 137, Neg. LLF: 146.76886948528494
Iteration: 11, Func. Count: 150, Neg. LLF: 146.7256171775643
Iteration: 12, Func. Count: 163, Neg. LLF: 146.70633940925174
Iteration: 13, Func. Count: 176, Neg. LLF: 146.70524091995713
Iteration: 14, Func. Count: 189, Neg. LLF: 146.7050905201296
Iteration: 15, Func. Count: 202, Neg. LLF: 146.70499971620433
Iteration: 16, Func. Count: 215, Neg. LLF: 146.70497930300638
Iteration: 17, Func. Count: 228, Neg. LLF: 146.70497467082066
Iteration: 18, Func. Count: 241, Neg. LLF: 146.70497231822463
Iteration: 19, Func. Count: 254, Neg. LLF: 146.70497068132684
Iteration: 20, Func. Count: 266, Neg. LLF: 146.7049707544214
Optimization terminated successfully (Exit mode 0)
Current function value: 146.70497068132684
Iterations: 20
Function evaluations: 266
Gradient evaluations: 20
Iteration: 1, Func. Count: 7, Neg. LLF: 159.28019743964856
Iteration: 2, Func. Count: 14, Neg. LLF: 155.59233253091517
Iteration: 3, Func. Count: 21, Neg. LLF: 152.9499682654297
Iteration: 4, Func. Count: 28, Neg. LLF: 152.00443696476935
Iteration: 5, Func. Count: 34, Neg. LLF: 166.1111325645934
Iteration: 6, Func. Count: 41, Neg. LLF: 158.48322234840003
Iteration: 7, Func. Count: 48, Neg. LLF: 155.1333458872059
Iteration: 8, Func. Count: 55, Neg. LLF: 154.8529841669879
Iteration: 9, Func. Count: 62, Neg. LLF: 183.56694251174446
Iteration: 10, Func. Count: 69, Neg. LLF: 215.7998430497089
Iteration: 11, Func. Count: 76, Neg. LLF: 164.99300273018602
Iteration: 12, Func. Count: 83, Neg. LLF: 149.5077536991906
Iteration: 13, Func. Count: 90, Neg. LLF: 148.97414931439863
Iteration: 14, Func. Count: 96, Neg. LLF: 148.84983183610072
Iteration: 15, Func. Count: 102, Neg. LLF: 148.84239448454264
Iteration: 16, Func. Count: 108, Neg. LLF: 148.83611910077653
Iteration: 17, Func. Count: 114, Neg. LLF: 148.8312302421412
Iteration: 18, Func. Count: 120, Neg. LLF: 148.829212453266
Iteration: 19, Func. Count: 126, Neg. LLF: 148.82899235713188
Iteration: 20, Func. Count: 132, Neg. LLF: 148.82898478445517
Iteration: 21, Func. Count: 137, Neg. LLF: 148.82898477164056
Optimization terminated successfully (Exit mode 0)
Current function value: 148.82898478445517
Iterations: 21
Function evaluations: 137
Gradient evaluations: 21
Iteration: 1, Func. Count: 8, Neg. LLF: 300.30155573446046
Iteration: 2, Func. Count: 16, Neg. LLF: 239.32233409357897
Iteration: 3, Func. Count: 24, Neg. LLF: 159.17536377676137
Iteration: 4, Func. Count: 32, Neg. LLF: 186.53015390186087
Iteration: 5, Func. Count: 40, Neg. LLF: 206.8499408117263
Iteration: 6, Func. Count: 48, Neg. LLF: 149.9021220750901
Iteration: 7, Func. Count: 55, Neg. LLF: 150.57304050320388
Iteration: 8, Func. Count: 63, Neg. LLF: 149.622916853758
Iteration: 9, Func. Count: 71, Neg. LLF: 148.96668675267563
Iteration: 10, Func. Count: 78, Neg. LLF: 148.84380666006143
Iteration: 11, Func. Count: 85, Neg. LLF: 148.8344484347098
Iteration: 12, Func. Count: 92, Neg. LLF: 148.83124819588815
Iteration: 13, Func. Count: 99, Neg. LLF: 148.83036316491587
Iteration: 14, Func. Count: 106, Neg. LLF: 148.82939391783097
Iteration: 15, Func. Count: 113, Neg. LLF: 148.82907035927644
Iteration: 16, Func. Count: 120, Neg. LLF: 148.8289917763162
Iteration: 17, Func. Count: 127, Neg. LLF: 148.82898506591562
Iteration: 18, Func. Count: 133, Neg. LLF: 148.82898507788656
Optimization terminated successfully (Exit mode 0)
Current function value: 148.82898506591562
Iterations: 18
Function evaluations: 133
Gradient evaluations: 18
Iteration: 1, Func. Count: 9, Neg. LLF: 193.67642322796902
Iteration: 2, Func. Count: 18, Neg. LLF: 286.8636896616109
Iteration: 3, Func. Count: 27, Neg. LLF: 152.27028606263454
Iteration: 4, Func. Count: 36, Neg. LLF: 150.93973469612104
Iteration: 5, Func. Count: 45, Neg. LLF: 162.70089990672037
Iteration: 6, Func. Count: 54, Neg. LLF: 149.29288768571033
Iteration: 7, Func. Count: 62, Neg. LLF: 148.83892821439062
Iteration: 8, Func. Count: 70, Neg. LLF: 148.83203760638347
Iteration: 9, Func. Count: 78, Neg. LLF: 148.82921628412674
Iteration: 10, Func. Count: 86, Neg. LLF: 148.82901893395072
Iteration: 11, Func. Count: 94, Neg. LLF: 148.82899403875004
Iteration: 12, Func. Count: 102, Neg. LLF: 148.82898671563933
Iteration: 13, Func. Count: 110, Neg. LLF: 148.82898486695413
Iteration: 14, Func. Count: 117, Neg. LLF: 148.82898490592382
Optimization terminated successfully (Exit mode 0)
Current function value: 148.82898486695413
Iterations: 14
Function evaluations: 117
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 190.37184391828555
Iteration: 2, Func. Count: 20, Neg. LLF: 256.34642818637457
Iteration: 3, Func. Count: 30, Neg. LLF: 178.0648684553961
Iteration: 4, Func. Count: 40, Neg. LLF: 152.91817912141772
Iteration: 5, Func. Count: 50, Neg. LLF: 149.3123345389003
Iteration: 6, Func. Count: 59, Neg. LLF: 149.3366005556768
Iteration: 7, Func. Count: 69, Neg. LLF: 149.01307290252788
Iteration: 8, Func. Count: 78, Neg. LLF: 148.8506485104123
Iteration: 9, Func. Count: 87, Neg. LLF: 148.8312010384183
Iteration: 10, Func. Count: 96, Neg. LLF: 148.82921553443725
Iteration: 11, Func. Count: 105, Neg. LLF: 148.8290229910246
Iteration: 12, Func. Count: 114, Neg. LLF: 148.8289849651039
Iteration: 13, Func. Count: 122, Neg. LLF: 148.8289849799731
Optimization terminated successfully (Exit mode 0)
Current function value: 148.8289849651039
Iterations: 13
Function evaluations: 122
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 189.0742009163926
Iteration: 2, Func. Count: 22, Neg. LLF: 208.1689229136185
Iteration: 3, Func. Count: 33, Neg. LLF: 265.48246256233506
Iteration: 4, Func. Count: 44, Neg. LLF: 155.08778431517513
Iteration: 5, Func. Count: 55, Neg. LLF: 150.25053358349348
Iteration: 6, Func. Count: 65, Neg. LLF: 151.96817317607886
Iteration: 7, Func. Count: 76, Neg. LLF: 150.4692078856666
Iteration: 8, Func. Count: 87, Neg. LLF: 148.9367314203092
Iteration: 9, Func. Count: 97, Neg. LLF: 148.84268123974448
Iteration: 10, Func. Count: 107, Neg. LLF: 148.83272353047136
Iteration: 11, Func. Count: 117, Neg. LLF: 148.82937461069184
Iteration: 12, Func. Count: 127, Neg. LLF: 148.8291066205373
Iteration: 13, Func. Count: 137, Neg. LLF: 148.8289956087983
Iteration: 14, Func. Count: 147, Neg. LLF: 148.8289864138983
Iteration: 15, Func. Count: 157, Neg. LLF: 148.82898523400453
Iteration: 16, Func. Count: 166, Neg. LLF: 148.82898524356528
Optimization terminated successfully (Exit mode 0)
Current function value: 148.82898523400453
Iterations: 16
Function evaluations: 166
Gradient evaluations: 16
Iteration: 1, Func. Count: 8, Neg. LLF: 158.91063689696756
Iteration: 2, Func. Count: 16, Neg. LLF: 155.23898378308513
Iteration: 3, Func. Count: 24, Neg. LLF: 152.66832489728395
Iteration: 4, Func. Count: 31, Neg. LLF: 151.98198920870914
Iteration: 5, Func. Count: 38, Neg. LLF: 152.01596969475716
Iteration: 6, Func. Count: 46, Neg. LLF: 185.64409357171184
Iteration: 7, Func. Count: 54, Neg. LLF: 156.49648043342413
Iteration: 8, Func. Count: 62, Neg. LLF: 165.15125709271595
Iteration: 9, Func. Count: 70, Neg. LLF: 158.12273946406975
Iteration: 10, Func. Count: 78, Neg. LLF: 188.16730254695594
Iteration: 11, Func. Count: 86, Neg. LLF: 152.4613132284851
Iteration: 12, Func. Count: 94, Neg. LLF: 148.7967915545934
Iteration: 13, Func. Count: 101, Neg. LLF: 148.50244241183327
Iteration: 14, Func. Count: 108, Neg. LLF: 148.43580496616713
Iteration: 15, Func. Count: 115, Neg. LLF: 148.41868263647527
Iteration: 16, Func. Count: 122, Neg. LLF: 148.4178738225722
Iteration: 17, Func. Count: 129, Neg. LLF: 148.41749873664236
Iteration: 18, Func. Count: 136, Neg. LLF: 148.41732786571396
Iteration: 19, Func. Count: 143, Neg. LLF: 148.41730272850893
Iteration: 20, Func. Count: 150, Neg. LLF: 148.41730096836548
Iteration: 21, Func. Count: 156, Neg. LLF: 148.41730097658092
Optimization terminated successfully (Exit mode 0)
Current function value: 148.41730096836548
Iterations: 21
Function evaluations: 156
Gradient evaluations: 21
Iteration: 1, Func. Count: 9, Neg. LLF: 188.23508302885557
Iteration: 2, Func. Count: 18, Neg. LLF: 171.19905820932553
Iteration: 3, Func. Count: 27, Neg. LLF: 209.216230246756
Iteration: 4, Func. Count: 36, Neg. LLF: 160.7745860973366
Iteration: 5, Func. Count: 45, Neg. LLF: 156.09651570507035
Iteration: 6, Func. Count: 54, Neg. LLF: 149.63839870411428
Iteration: 7, Func. Count: 63, Neg. LLF: 151.7187403698569
Iteration: 8, Func. Count: 72, Neg. LLF: 148.56577081298755
Iteration: 9, Func. Count: 80, Neg. LLF: 148.52361551527025
Iteration: 10, Func. Count: 88, Neg. LLF: 148.46767194728474
Iteration: 11, Func. Count: 96, Neg. LLF: 148.44268812425784
Iteration: 12, Func. Count: 104, Neg. LLF: 148.42762224279335
Iteration: 13, Func. Count: 112, Neg. LLF: 148.41763338420935
Iteration: 14, Func. Count: 120, Neg. LLF: 148.41736174525965
Iteration: 15, Func. Count: 128, Neg. LLF: 148.41732210948996
Iteration: 16, Func. Count: 136, Neg. LLF: 148.41730629859586
Iteration: 17, Func. Count: 144, Neg. LLF: 148.4173012895595
Iteration: 18, Func. Count: 151, Neg. LLF: 148.41730130861947
Optimization terminated successfully (Exit mode 0)
Current function value: 148.4173012895595
Iterations: 18
Function evaluations: 151
Gradient evaluations: 18
Iteration: 1, Func. Count: 10, Neg. LLF: 187.95943202834403
Iteration: 2, Func. Count: 20, Neg. LLF: 170.19422681691532
Iteration: 3, Func. Count: 30, Neg. LLF: 154.65274106536995
Iteration: 4, Func. Count: 40, Neg. LLF: 149.5783171240437
Iteration: 5, Func. Count: 49, Neg. LLF: 155.57880579295693
Iteration: 6, Func. Count: 59, Neg. LLF: 154.4609216496069
Iteration: 7, Func. Count: 69, Neg. LLF: 148.55800093933732
Iteration: 8, Func. Count: 78, Neg. LLF: 148.46047004456995
Iteration: 9, Func. Count: 87, Neg. LLF: 148.42595288706408
Iteration: 10, Func. Count: 96, Neg. LLF: 148.42250229783713
Iteration: 11, Func. Count: 105, Neg. LLF: 148.4174495841116
Iteration: 12, Func. Count: 114, Neg. LLF: 148.4173080074893
Iteration: 13, Func. Count: 123, Neg. LLF: 148.4173016561978
Iteration: 14, Func. Count: 131, Neg. LLF: 148.41730169606154
Optimization terminated successfully (Exit mode 0)
Current function value: 148.4173016561978
Iterations: 14
Function evaluations: 131
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 170.12775407982596
Iteration: 2, Func. Count: 22, Neg. LLF: 153.0530392936162
Iteration: 3, Func. Count: 33, Neg. LLF: 149.35747894612552
Iteration: 4, Func. Count: 43, Neg. LLF: 154.8572866600626
Iteration: 5, Func. Count: 54, Neg. LLF: 149.67521428198168
Iteration: 6, Func. Count: 65, Neg. LLF: 150.25970312496997
Iteration: 7, Func. Count: 76, Neg. LLF: 148.44855027291015
Iteration: 8, Func. Count: 86, Neg. LLF: 148.42658815705778
Iteration: 9, Func. Count: 96, Neg. LLF: 148.42056907256986
Iteration: 10, Func. Count: 106, Neg. LLF: 148.41873783997536
Iteration: 11, Func. Count: 116, Neg. LLF: 148.41731127443916
Iteration: 12, Func. Count: 126, Neg. LLF: 148.41730363496407
Iteration: 13, Func. Count: 136, Neg. LLF: 148.41730113224907
Iteration: 14, Func. Count: 145, Neg. LLF: 148.41730113421949
Optimization terminated successfully (Exit mode 0)
Current function value: 148.41730113224907
Iterations: 14
Function evaluations: 145
Gradient evaluations: 14
Iteration: 1, Func. Count: 12, Neg. LLF: 169.82489569472932
Iteration: 2, Func. Count: 24, Neg. LLF: 154.26694405756
Iteration: 3, Func. Count: 36, Neg. LLF: 148.6905614457718
Iteration: 4, Func. Count: 47, Neg. LLF: 149.60977246451301
Iteration: 5, Func. Count: 59, Neg. LLF: 148.49078819939976
Iteration: 6, Func. Count: 70, Neg. LLF: 148.43330717556302
Iteration: 7, Func. Count: 81, Neg. LLF: 148.41780412172983
Iteration: 8, Func. Count: 92, Neg. LLF: 148.41745150608028
Iteration: 9, Func. Count: 103, Neg. LLF: 148.4173136301425
Iteration: 10, Func. Count: 114, Neg. LLF: 148.41730179029017
Iteration: 11, Func. Count: 125, Neg. LLF: 148.41730094669262
Optimization terminated successfully (Exit mode 0)
Current function value: 148.41730094669262
Iterations: 11
Function evaluations: 125
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 157.73522858962713
Iteration: 2, Func. Count: 18, Neg. LLF: 159.66702701825824
Iteration: 3, Func. Count: 28, Neg. LLF: 165.17158148038098
Iteration: 4, Func. Count: 37, Neg. LLF: 152.39206273194137
Iteration: 5, Func. Count: 45, Neg. LLF: 152.13209642549805
Iteration: 6, Func. Count: 53, Neg. LLF: 209.96694384116398
Iteration: 7, Func. Count: 62, Neg. LLF: 149.80349626314404
Iteration: 8, Func. Count: 70, Neg. LLF: 152.80446400353432
Iteration: 9, Func. Count: 79, Neg. LLF: 148.53697398454102
Iteration: 10, Func. Count: 87, Neg. LLF: 148.46378688366738
Iteration: 11, Func. Count: 95, Neg. LLF: 148.4579892797925
Iteration: 12, Func. Count: 104, Neg. LLF: 148.39238734273232
Iteration: 13, Func. Count: 112, Neg. LLF: 148.38917506216916
Iteration: 14, Func. Count: 120, Neg. LLF: 148.3879836004349
Iteration: 15, Func. Count: 128, Neg. LLF: 148.38791294335522
Iteration: 16, Func. Count: 136, Neg. LLF: 148.3878942031282
Iteration: 17, Func. Count: 143, Neg. LLF: 148.3878941920343
Optimization terminated successfully (Exit mode 0)
Current function value: 148.3878942031282
Iterations: 17
Function evaluations: 143
Gradient evaluations: 17
Iteration: 1, Func. Count: 10, Neg. LLF: 190.2549316796455
Iteration: 2, Func. Count: 20, Neg. LLF: 384.5128240332537
Iteration: 3, Func. Count: 30, Neg. LLF: 178.08321323173826
Iteration: 4, Func. Count: 40, Neg. LLF: 151.5184231615199
Iteration: 5, Func. Count: 50, Neg. LLF: 156.73455808173395
Iteration: 6, Func. Count: 60, Neg. LLF: 180.11342016148927
Iteration: 7, Func. Count: 70, Neg. LLF: 149.0507073434785
Iteration: 8, Func. Count: 79, Neg. LLF: 148.80399411883798
Iteration: 9, Func. Count: 88, Neg. LLF: 148.6695423923993
Iteration: 10, Func. Count: 97, Neg. LLF: 148.51110948180542
Iteration: 11, Func. Count: 106, Neg. LLF: 148.435016190435
Iteration: 12, Func. Count: 115, Neg. LLF: 148.40552827373932
Iteration: 13, Func. Count: 124, Neg. LLF: 148.38928558419656
Iteration: 14, Func. Count: 133, Neg. LLF: 148.38811144245585
Iteration: 15, Func. Count: 142, Neg. LLF: 148.38794741964185
Iteration: 16, Func. Count: 151, Neg. LLF: 148.38791568194915
Iteration: 17, Func. Count: 160, Neg. LLF: 148.38789698108408
Iteration: 18, Func. Count: 169, Neg. LLF: 148.38789441882753
Iteration: 19, Func. Count: 177, Neg. LLF: 148.3878944321452
Optimization terminated successfully (Exit mode 0)
Current function value: 148.38789441882753
Iterations: 19
Function evaluations: 177
Gradient evaluations: 19
Iteration: 1, Func. Count: 11, Neg. LLF: 193.0699849005939
Iteration: 2, Func. Count: 22, Neg. LLF: 199.481353071884
Iteration: 3, Func. Count: 33, Neg. LLF: 257.13103171444004
Iteration: 4, Func. Count: 44, Neg. LLF: 167.80194645277132
Iteration: 5, Func. Count: 55, Neg. LLF: 149.40195794869382
Iteration: 6, Func. Count: 65, Neg. LLF: 148.93524450291977
Iteration: 7, Func. Count: 75, Neg. LLF: 150.10594518738043
Iteration: 8, Func. Count: 86, Neg. LLF: 148.47332407565227
Iteration: 9, Func. Count: 96, Neg. LLF: 148.42891602548283
Iteration: 10, Func. Count: 106, Neg. LLF: 148.3991736335824
Iteration: 11, Func. Count: 116, Neg. LLF: 148.3922317779484
Iteration: 12, Func. Count: 126, Neg. LLF: 148.38882055263176
Iteration: 13, Func. Count: 136, Neg. LLF: 148.38805064170475
Iteration: 14, Func. Count: 146, Neg. LLF: 148.3879396736309
Iteration: 15, Func. Count: 156, Neg. LLF: 148.38790428724815
Iteration: 16, Func. Count: 166, Neg. LLF: 148.38789530717042
Iteration: 17, Func. Count: 176, Neg. LLF: 148.3878942172425
Iteration: 18, Func. Count: 185, Neg. LLF: 148.3878942568044
Optimization terminated successfully (Exit mode 0)
Current function value: 148.3878942172425
Iterations: 18
Function evaluations: 185
Gradient evaluations: 18
Iteration: 1, Func. Count: 12, Neg. LLF: 194.16751003559472
Iteration: 2, Func. Count: 24, Neg. LLF: 182.66530355315865
Iteration: 3, Func. Count: 36, Neg. LLF: 213.36306289850378
Iteration: 4, Func. Count: 48, Neg. LLF: 158.44347733488192
Iteration: 5, Func. Count: 60, Neg. LLF: 149.16318570716834
Iteration: 6, Func. Count: 71, Neg. LLF: 148.66146091995466
Iteration: 7, Func. Count: 82, Neg. LLF: 148.6351419693486
Iteration: 8, Func. Count: 94, Neg. LLF: 148.46807727803784
Iteration: 9, Func. Count: 105, Neg. LLF: 148.4127194886149
Iteration: 10, Func. Count: 116, Neg. LLF: 148.3983739659094
Iteration: 11, Func. Count: 127, Neg. LLF: 148.3888271420038
Iteration: 12, Func. Count: 138, Neg. LLF: 148.3880044455048
Iteration: 13, Func. Count: 149, Neg. LLF: 148.38789994374088
Iteration: 14, Func. Count: 160, Neg. LLF: 148.38789449713997
Iteration: 15, Func. Count: 170, Neg. LLF: 148.38789449855852
Optimization terminated successfully (Exit mode 0)
Current function value: 148.38789449713997
Iterations: 15
Function evaluations: 170
Gradient evaluations: 15
Iteration: 1, Func. Count: 13, Neg. LLF: 207.55929940025788
Iteration: 2, Func. Count: 26, Neg. LLF: 227.7292495608932
Iteration: 3, Func. Count: 39, Neg. LLF: 160.4595963138206
Iteration: 4, Func. Count: 52, Neg. LLF: 151.27184123533712
Iteration: 5, Func. Count: 65, Neg. LLF: 150.47060411114938
Iteration: 6, Func. Count: 78, Neg. LLF: 148.85963387773205
Iteration: 7, Func. Count: 90, Neg. LLF: 149.71658998206593
Iteration: 8, Func. Count: 103, Neg. LLF: 148.4500949804124
Iteration: 9, Func. Count: 115, Neg. LLF: 148.40310885746342
Iteration: 10, Func. Count: 127, Neg. LLF: 148.3947263436479
Iteration: 11, Func. Count: 139, Neg. LLF: 148.3885992957695
Iteration: 12, Func. Count: 151, Neg. LLF: 148.38791971102378
Iteration: 13, Func. Count: 163, Neg. LLF: 148.3878953704671
Iteration: 14, Func. Count: 175, Neg. LLF: 148.38789419250475
Iteration: 15, Func. Count: 186, Neg. LLF: 148.38789422321844
Optimization terminated successfully (Exit mode 0)
Current function value: 148.38789419250475
Iterations: 15
Function evaluations: 186
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 157.24759964873
Iteration: 2, Func. Count: 20, Neg. LLF: 189.22606120888435
Iteration: 3, Func. Count: 30, Neg. LLF: 152.3221414069806
Iteration: 4, Func. Count: 40, Neg. LLF: 150.37460397244328
Iteration: 5, Func. Count: 49, Neg. LLF: 159.56572882921037
Iteration: 6, Func. Count: 59, Neg. LLF: 149.37455970790336
Iteration: 7, Func. Count: 68, Neg. LLF: 149.27060126264956
Iteration: 8, Func. Count: 78, Neg. LLF: 148.05629184227953
Iteration: 9, Func. Count: 87, Neg. LLF: 149.98224349484178
Iteration: 10, Func. Count: 97, Neg. LLF: 160.49775262011892
Iteration: 11, Func. Count: 107, Neg. LLF: 147.2206901830844
Iteration: 12, Func. Count: 116, Neg. LLF: 146.94101306410437
Iteration: 13, Func. Count: 125, Neg. LLF: 146.91694181258939
Iteration: 14, Func. Count: 135, Neg. LLF: 146.78386527325432
Iteration: 15, Func. Count: 144, Neg. LLF: 146.72509667826017
Iteration: 16, Func. Count: 153, Neg. LLF: 146.71033105631992
Iteration: 17, Func. Count: 162, Neg. LLF: 146.7051724505897
Iteration: 18, Func. Count: 171, Neg. LLF: 146.70497880621193
Iteration: 19, Func. Count: 180, Neg. LLF: 146.70497106668194
Iteration: 20, Func. Count: 189, Neg. LLF: 146.70497018357142
Optimization terminated successfully (Exit mode 0)
Current function value: 146.70497018357142
Iterations: 20
Function evaluations: 189
Gradient evaluations: 20
Iteration: 1, Func. Count: 11, Neg. LLF: 198.51395377523983
Iteration: 2, Func. Count: 22, Neg. LLF: 195.28836313092094
Iteration: 3, Func. Count: 33, Neg. LLF: 156.57072769267754
Iteration: 4, Func. Count: 44, Neg. LLF: 153.862750297304
Iteration: 5, Func. Count: 55, Neg. LLF: 147.0356664253175
Iteration: 6, Func. Count: 65, Neg. LLF: 147.39696811360875
Iteration: 7, Func. Count: 76, Neg. LLF: 146.73441145495863
Iteration: 8, Func. Count: 86, Neg. LLF: 146.7114341076334
Iteration: 9, Func. Count: 96, Neg. LLF: 146.7064116303567
Iteration: 10, Func. Count: 106, Neg. LLF: 146.7054558050321
Iteration: 11, Func. Count: 116, Neg. LLF: 146.7051534219995
Iteration: 12, Func. Count: 126, Neg. LLF: 146.70505963094095
Iteration: 13, Func. Count: 136, Neg. LLF: 146.70499149463885
Iteration: 14, Func. Count: 146, Neg. LLF: 146.7049770967717
Iteration: 15, Func. Count: 156, Neg. LLF: 146.70497154220888
Iteration: 16, Func. Count: 166, Neg. LLF: 146.70497028449805
Iteration: 17, Func. Count: 175, Neg. LLF: 146.70497033724027
Optimization terminated successfully (Exit mode 0)
Current function value: 146.70497028449805
Iterations: 17
Function evaluations: 175
Gradient evaluations: 17
Iteration: 1, Func. Count: 12, Neg. LLF: 201.535970928701
Iteration: 2, Func. Count: 24, Neg. LLF: 169.19826988055235
Iteration: 3, Func. Count: 36, Neg. LLF: 164.04150661806997
Iteration: 4, Func. Count: 48, Neg. LLF: 178.5340273370472
Iteration: 5, Func. Count: 60, Neg. LLF: 148.41407760701333
Iteration: 6, Func. Count: 71, Neg. LLF: 146.96906246272798
Iteration: 7, Func. Count: 82, Neg. LLF: 146.81656623980246
Iteration: 8, Func. Count: 93, Neg. LLF: 146.86160717521005
Iteration: 9, Func. Count: 105, Neg. LLF: 146.7235182625684
Iteration: 10, Func. Count: 116, Neg. LLF: 146.71173256755876
Iteration: 11, Func. Count: 127, Neg. LLF: 146.7087780828036
Iteration: 12, Func. Count: 138, Neg. LLF: 146.706293839716
Iteration: 13, Func. Count: 149, Neg. LLF: 146.70527586623837
Iteration: 14, Func. Count: 160, Neg. LLF: 146.70503524039194
Iteration: 15, Func. Count: 171, Neg. LLF: 146.7049833279519
Iteration: 16, Func. Count: 182, Neg. LLF: 146.70497167113245
Iteration: 17, Func. Count: 193, Neg. LLF: 146.70497022767216
Iteration: 18, Func. Count: 203, Neg. LLF: 146.70497029060203
Optimization terminated successfully (Exit mode 0)
Current function value: 146.70497022767216
Iterations: 18
Function evaluations: 203
Gradient evaluations: 18
Iteration: 1, Func. Count: 13, Neg. LLF: 432.02031173611954
Iteration: 2, Func. Count: 26, Neg. LLF: 164.399409591184
Iteration: 3, Func. Count: 39, Neg. LLF: 194.6254741426235
Iteration: 4, Func. Count: 52, Neg. LLF: 161.30766905253637
Iteration: 5, Func. Count: 65, Neg. LLF: 147.80702078849765
Iteration: 6, Func. Count: 77, Neg. LLF: 147.77065343259497
Iteration: 7, Func. Count: 90, Neg. LLF: 147.28161773452064
Iteration: 8, Func. Count: 103, Neg. LLF: 148.15657943880566
Iteration: 9, Func. Count: 116, Neg. LLF: 146.7381890958261
Iteration: 10, Func. Count: 128, Neg. LLF: 146.70925338522866
Iteration: 11, Func. Count: 140, Neg. LLF: 146.70593369688066
Iteration: 12, Func. Count: 152, Neg. LLF: 146.7051551599132
Iteration: 13, Func. Count: 164, Neg. LLF: 146.70503648957308
Iteration: 14, Func. Count: 176, Neg. LLF: 146.70498865996865
Iteration: 15, Func. Count: 188, Neg. LLF: 146.70497376001654
Iteration: 16, Func. Count: 200, Neg. LLF: 146.70497072547454
Iteration: 17, Func. Count: 211, Neg. LLF: 146.7049707418149
Optimization terminated successfully (Exit mode 0)
Current function value: 146.70497072547454
Iterations: 17
Function evaluations: 211
Gradient evaluations: 17
Iteration: 1, Func. Count: 14, Neg. LLF: 447.3913778255963
Iteration: 2, Func. Count: 28, Neg. LLF: 176.48250281679856
Iteration: 3, Func. Count: 42, Neg. LLF: 183.18279264143408
Iteration: 4, Func. Count: 56, Neg. LLF: 165.28520057505156
Iteration: 5, Func. Count: 70, Neg. LLF: 151.8512768808436
Iteration: 6, Func. Count: 84, Neg. LLF: 148.0796984282799
Iteration: 7, Func. Count: 97, Neg. LLF: 146.94942104138934
Iteration: 8, Func. Count: 110, Neg. LLF: 150.14128455277248
Iteration: 9, Func. Count: 124, Neg. LLF: 146.80863644374875
Iteration: 10, Func. Count: 137, Neg. LLF: 146.71957545666032
Iteration: 11, Func. Count: 150, Neg. LLF: 146.711309155138
Iteration: 12, Func. Count: 163, Neg. LLF: 146.706773120173
Iteration: 13, Func. Count: 176, Neg. LLF: 146.70551943318196
Iteration: 14, Func. Count: 189, Neg. LLF: 146.70518428830997
Iteration: 15, Func. Count: 202, Neg. LLF: 146.7050134193943
Iteration: 16, Func. Count: 215, Neg. LLF: 146.7049802398143
Iteration: 17, Func. Count: 228, Neg. LLF: 146.70497373822855
Iteration: 18, Func. Count: 241, Neg. LLF: 146.70497140200507
Iteration: 19, Func. Count: 254, Neg. LLF: 146.7049702704691
Iteration: 20, Func. Count: 266, Neg. LLF: 146.70497034358743
Optimization terminated successfully (Exit mode 0)
Current function value: 146.7049702704691
Iterations: 20
Function evaluations: 266
Gradient evaluations: 20
Iteration: 1, Func. Count: 11, Neg. LLF: 157.36796549999687
Iteration: 2, Func. Count: 22, Neg. LLF: 191.89752073819955
Iteration: 3, Func. Count: 33, Neg. LLF: 152.20854065223213
Iteration: 4, Func. Count: 44, Neg. LLF: 150.3807076383265
Iteration: 5, Func. Count: 54, Neg. LLF: 172.29148502724172
Iteration: 6, Func. Count: 65, Neg. LLF: 149.58085057861717
Iteration: 7, Func. Count: 75, Neg. LLF: 148.77052243157402
Iteration: 8, Func. Count: 85, Neg. LLF: 148.2176308402585
Iteration: 9, Func. Count: 95, Neg. LLF: 147.71144356725765
Iteration: 10, Func. Count: 105, Neg. LLF: 171.17935012604002
Iteration: 11, Func. Count: 118, Neg. LLF: 147.03954086229132
Iteration: 12, Func. Count: 128, Neg. LLF: 146.88158669118818
Iteration: 13, Func. Count: 138, Neg. LLF: 146.7438625334252
Iteration: 14, Func. Count: 148, Neg. LLF: 146.7191926230541
Iteration: 15, Func. Count: 158, Neg. LLF: 146.70747935555585
Iteration: 16, Func. Count: 168, Neg. LLF: 146.70582544632032
Iteration: 17, Func. Count: 178, Neg. LLF: 146.70509356403397
Iteration: 18, Func. Count: 188, Neg. LLF: 146.70499369612034
Iteration: 19, Func. Count: 198, Neg. LLF: 146.70497366571408
Iteration: 20, Func. Count: 208, Neg. LLF: 146.70497084233975
Iteration: 21, Func. Count: 218, Neg. LLF: 146.70497020442608
Optimization terminated successfully (Exit mode 0)
Current function value: 146.70497020442608
Iterations: 21
Function evaluations: 218
Gradient evaluations: 21
Iteration: 1, Func. Count: 12, Neg. LLF: 381.23333913493957
Iteration: 2, Func. Count: 24, Neg. LLF: 199.4713007908824
Iteration: 3, Func. Count: 36, Neg. LLF: 185.37063424468607
Iteration: 4, Func. Count: 48, Neg. LLF: 160.1439916133648
Iteration: 5, Func. Count: 60, Neg. LLF: 147.5907923875811
Iteration: 6, Func. Count: 71, Neg. LLF: 147.39685006942545
Iteration: 7, Func. Count: 82, Neg. LLF: 147.16790527240767
Iteration: 8, Func. Count: 93, Neg. LLF: 147.88311271556387
Iteration: 9, Func. Count: 105, Neg. LLF: 146.73458806480062
Iteration: 10, Func. Count: 116, Neg. LLF: 146.7209046170592
Iteration: 11, Func. Count: 127, Neg. LLF: 146.70964939826666
Iteration: 12, Func. Count: 138, Neg. LLF: 146.706604908875
Iteration: 13, Func. Count: 149, Neg. LLF: 146.70563697657963
Iteration: 14, Func. Count: 160, Neg. LLF: 146.70526798543645
Iteration: 15, Func. Count: 171, Neg. LLF: 146.70514588506757
Iteration: 16, Func. Count: 182, Neg. LLF: 146.70499986933316
Iteration: 17, Func. Count: 193, Neg. LLF: 146.70497354199742
Iteration: 18, Func. Count: 204, Neg. LLF: 146.70497036355746
Iteration: 19, Func. Count: 214, Neg. LLF: 146.70497041626072
Optimization terminated successfully (Exit mode 0)
Current function value: 146.70497036355746
Iterations: 19
Function evaluations: 214
Gradient evaluations: 19
Iteration: 1, Func. Count: 13, Neg. LLF: 215.07869201801353
Iteration: 2, Func. Count: 26, Neg. LLF: 164.62001002858443
Iteration: 3, Func. Count: 39, Neg. LLF: 193.32550302304935
Iteration: 4, Func. Count: 52, Neg. LLF: 167.81147210143735
Iteration: 5, Func. Count: 65, Neg. LLF: 148.90966581834394
Iteration: 6, Func. Count: 78, Neg. LLF: 147.3262131135884
Iteration: 7, Func. Count: 90, Neg. LLF: 146.90850417373042
Iteration: 8, Func. Count: 102, Neg. LLF: 146.88336708036618
Iteration: 9, Func. Count: 115, Neg. LLF: 146.7302215368417
Iteration: 10, Func. Count: 127, Neg. LLF: 146.71060473047618
Iteration: 11, Func. Count: 139, Neg. LLF: 146.70641227666133
Iteration: 12, Func. Count: 151, Neg. LLF: 146.70511145810028
Iteration: 13, Func. Count: 163, Neg. LLF: 146.7049861192921
Iteration: 14, Func. Count: 175, Neg. LLF: 146.70497538773344
Iteration: 15, Func. Count: 187, Neg. LLF: 146.70497198475468
Iteration: 16, Func. Count: 199, Neg. LLF: 146.70497043512506
Iteration: 17, Func. Count: 210, Neg. LLF: 146.70497049811078
Optimization terminated successfully (Exit mode 0)
Current function value: 146.70497043512506
Iterations: 17
Function evaluations: 210
Gradient evaluations: 17
Iteration: 1, Func. Count: 14, Neg. LLF: 201.03713729708562
Iteration: 2, Func. Count: 28, Neg. LLF: 177.72579537401026
Iteration: 3, Func. Count: 42, Neg. LLF: 148.46130248578336
Iteration: 4, Func. Count: 55, Neg. LLF: 147.5606975931454
Iteration: 5, Func. Count: 68, Neg. LLF: 155.00162001569578
Iteration: 6, Func. Count: 82, Neg. LLF: 146.9235318344327
Iteration: 7, Func. Count: 95, Neg. LLF: 148.97824764198543
Iteration: 8, Func. Count: 109, Neg. LLF: 147.15200555070118
Iteration: 9, Func. Count: 123, Neg. LLF: 146.71180830262873
Iteration: 10, Func. Count: 136, Neg. LLF: 146.70622566567138
Iteration: 11, Func. Count: 149, Neg. LLF: 146.7053470089643
Iteration: 12, Func. Count: 162, Neg. LLF: 146.70507480105263
Iteration: 13, Func. Count: 175, Neg. LLF: 146.70498014916743
Iteration: 14, Func. Count: 188, Neg. LLF: 146.70497054677236
Iteration: 15, Func. Count: 200, Neg. LLF: 146.70497056304137
Optimization terminated successfully (Exit mode 0)
Current function value: 146.70497054677236
Iterations: 15
Function evaluations: 200
Gradient evaluations: 15
Iteration: 1, Func. Count: 15, Neg. LLF: 162.75713702452833
Iteration: 2, Func. Count: 30, Neg. LLF: 175.15618521442772
Iteration: 3, Func. Count: 45, Neg. LLF: 148.31445791994
Iteration: 4, Func. Count: 59, Neg. LLF: 147.81890918867333
Iteration: 5, Func. Count: 74, Neg. LLF: 162.58942120366467
Iteration: 6, Func. Count: 89, Neg. LLF: 147.33301478899412
Iteration: 7, Func. Count: 104, Neg. LLF: 146.80511415499822
Iteration: 8, Func. Count: 118, Neg. LLF: 146.79610417666743
Iteration: 9, Func. Count: 133, Neg. LLF: 146.7254363027691
Iteration: 10, Func. Count: 148, Neg. LLF: 146.7083746150728
Iteration: 11, Func. Count: 162, Neg. LLF: 146.70515395620063
Iteration: 12, Func. Count: 176, Neg. LLF: 146.70499343271402
Iteration: 13, Func. Count: 190, Neg. LLF: 146.7049766528515
Iteration: 14, Func. Count: 204, Neg. LLF: 146.704972802805
Iteration: 15, Func. Count: 218, Neg. LLF: 146.70497043719004
Iteration: 16, Func. Count: 231, Neg. LLF: 146.7049705103184
Optimization terminated successfully (Exit mode 0)
Current function value: 146.70497043719004
Iterations: 16
Function evaluations: 231
Gradient evaluations: 16
Iteration: 1, Func. Count: 8, Neg. LLF: 158.9642292240278
Iteration: 2, Func. Count: 16, Neg. LLF: 155.83718138470817
Iteration: 3, Func. Count: 24, Neg. LLF: 154.8074895098866
Iteration: 4, Func. Count: 32, Neg. LLF: 152.77485887065515
Iteration: 5, Func. Count: 39, Neg. LLF: 173.42323005805167
Iteration: 6, Func. Count: 47, Neg. LLF: 156.5415446544643
Iteration: 7, Func. Count: 55, Neg. LLF: 156.20848725947866
Iteration: 8, Func. Count: 63, Neg. LLF: 151.93430418308006
Iteration: 9, Func. Count: 71, Neg. LLF: 156.43777366141512
Iteration: 10, Func. Count: 79, Neg. LLF: 150.3771602130131
Iteration: 11, Func. Count: 87, Neg. LLF: 149.04071276874268
Iteration: 12, Func. Count: 94, Neg. LLF: 148.8668128153908
Iteration: 13, Func. Count: 101, Neg. LLF: 148.8534049606329
Iteration: 14, Func. Count: 108, Neg. LLF: 148.84441594318707
Iteration: 15, Func. Count: 115, Neg. LLF: 148.83529719282336
Iteration: 16, Func. Count: 122, Neg. LLF: 148.83034183298992
Iteration: 17, Func. Count: 129, Neg. LLF: 148.8290280306452
Iteration: 18, Func. Count: 136, Neg. LLF: 148.82898518071678
Iteration: 19, Func. Count: 142, Neg. LLF: 148.82898526027458
Optimization terminated successfully (Exit mode 0)
Current function value: 148.82898518071678
Iterations: 19
Function evaluations: 142
Gradient evaluations: 19
Iteration: 1, Func. Count: 9, Neg. LLF: 258.4238145202841
Iteration: 2, Func. Count: 18, Neg. LLF: 233.10121490509616
Iteration: 3, Func. Count: 27, Neg. LLF: 155.06556684593136
Iteration: 4, Func. Count: 36, Neg. LLF: 156.11088543697755
Iteration: 5, Func. Count: 45, Neg. LLF: 161.15581570412502
Iteration: 6, Func. Count: 54, Neg. LLF: 149.7910753308447
Iteration: 7, Func. Count: 62, Neg. LLF: 150.2876623797015
Iteration: 8, Func. Count: 71, Neg. LLF: 148.9660012072239
Iteration: 9, Func. Count: 79, Neg. LLF: 148.86198381038142
Iteration: 10, Func. Count: 87, Neg. LLF: 148.84130829719692
Iteration: 11, Func. Count: 95, Neg. LLF: 148.8319203410262
Iteration: 12, Func. Count: 103, Neg. LLF: 148.82953936480152
Iteration: 13, Func. Count: 111, Neg. LLF: 148.82907596124147
Iteration: 14, Func. Count: 119, Neg. LLF: 148.82899097457974
Iteration: 15, Func. Count: 127, Neg. LLF: 148.82898494179307
Iteration: 16, Func. Count: 134, Neg. LLF: 148.82898495378453
Optimization terminated successfully (Exit mode 0)
Current function value: 148.82898494179307
Iterations: 16
Function evaluations: 134
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 183.65416060895294
Iteration: 2, Func. Count: 20, Neg. LLF: 275.37545931167494
Iteration: 3, Func. Count: 30, Neg. LLF: 157.07017290477364
Iteration: 4, Func. Count: 40, Neg. LLF: 151.19389208655548
Iteration: 5, Func. Count: 50, Neg. LLF: 149.19218480335465
Iteration: 6, Func. Count: 59, Neg. LLF: 149.02274440026068
Iteration: 7, Func. Count: 68, Neg. LLF: 151.40759729867307
Iteration: 8, Func. Count: 78, Neg. LLF: 148.87230989237776
Iteration: 9, Func. Count: 87, Neg. LLF: 148.84244592084895
Iteration: 10, Func. Count: 96, Neg. LLF: 148.83100094660367
Iteration: 11, Func. Count: 105, Neg. LLF: 148.8293853009536
Iteration: 12, Func. Count: 114, Neg. LLF: 148.82900713324963
Iteration: 13, Func. Count: 123, Neg. LLF: 148.82899542182264
Iteration: 14, Func. Count: 132, Neg. LLF: 148.8289847255238
Iteration: 15, Func. Count: 140, Neg. LLF: 148.82898476449924
Optimization terminated successfully (Exit mode 0)
Current function value: 148.8289847255238
Iterations: 15
Function evaluations: 140
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 169.59294999995103
Iteration: 2, Func. Count: 22, Neg. LLF: 168.7345776464584
Iteration: 3, Func. Count: 33, Neg. LLF: 154.56642280041902
Iteration: 4, Func. Count: 44, Neg. LLF: 152.66726048490537
Iteration: 5, Func. Count: 55, Neg. LLF: 149.6055989755094
Iteration: 6, Func. Count: 65, Neg. LLF: 149.3108314523377
Iteration: 7, Func. Count: 75, Neg. LLF: 148.99684236335497
Iteration: 8, Func. Count: 85, Neg. LLF: 148.86162189744786
Iteration: 9, Func. Count: 95, Neg. LLF: 148.840168145608
Iteration: 10, Func. Count: 105, Neg. LLF: 148.8328910992276
Iteration: 11, Func. Count: 115, Neg. LLF: 148.82943432118574
Iteration: 12, Func. Count: 125, Neg. LLF: 148.82900654763012
Iteration: 13, Func. Count: 135, Neg. LLF: 148.8289855547155
Iteration: 14, Func. Count: 145, Neg. LLF: 148.82898472460906
Optimization terminated successfully (Exit mode 0)
Current function value: 148.82898472460906
Iterations: 14
Function evaluations: 145
Gradient evaluations: 14
Iteration: 1, Func. Count: 12, Neg. LLF: 169.08299316544444
Iteration: 2, Func. Count: 24, Neg. LLF: 158.084734761539
Iteration: 3, Func. Count: 36, Neg. LLF: 158.85993571794236
Iteration: 4, Func. Count: 48, Neg. LLF: 150.67523139448969
Iteration: 5, Func. Count: 60, Neg. LLF: 151.00945975053304
Iteration: 6, Func. Count: 72, Neg. LLF: 148.94266841691373
Iteration: 7, Func. Count: 83, Neg. LLF: 148.88544901939616
Iteration: 8, Func. Count: 94, Neg. LLF: 148.85286116420932
Iteration: 9, Func. Count: 105, Neg. LLF: 148.8404836131948
Iteration: 10, Func. Count: 116, Neg. LLF: 148.82988126986132
Iteration: 11, Func. Count: 127, Neg. LLF: 148.82902135915901
Iteration: 12, Func. Count: 138, Neg. LLF: 148.8289848267547
Iteration: 13, Func. Count: 148, Neg. LLF: 148.82898483626235
Optimization terminated successfully (Exit mode 0)
Current function value: 148.8289848267547
Iterations: 13
Function evaluations: 148
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 158.87118224657019
Iteration: 2, Func. Count: 18, Neg. LLF: 156.57275301602178
Iteration: 3, Func. Count: 27, Neg. LLF: 152.5872362801771
Iteration: 4, Func. Count: 35, Neg. LLF: 151.80283966723513
Iteration: 5, Func. Count: 43, Neg. LLF: 152.0517181916388
Iteration: 6, Func. Count: 52, Neg. LLF: 243.43573111745354
Iteration: 7, Func. Count: 61, Neg. LLF: 181.72457247840939
Iteration: 8, Func. Count: 70, Neg. LLF: 190.4819522369543
Iteration: 9, Func. Count: 79, Neg. LLF: 163.67880134186632
Iteration: 10, Func. Count: 88, Neg. LLF: 201.85409431639616
Iteration: 11, Func. Count: 97, Neg. LLF: 150.4464252889951
Iteration: 12, Func. Count: 106, Neg. LLF: 148.58657323756762
Iteration: 13, Func. Count: 114, Neg. LLF: 148.51018520117282
Iteration: 14, Func. Count: 122, Neg. LLF: 148.46555119680383
Iteration: 15, Func. Count: 130, Neg. LLF: 148.44208040861702
Iteration: 16, Func. Count: 138, Neg. LLF: 148.42720888105566
Iteration: 17, Func. Count: 146, Neg. LLF: 148.4184938624141
Iteration: 18, Func. Count: 154, Neg. LLF: 148.41756667949215
Iteration: 19, Func. Count: 162, Neg. LLF: 148.4173108645309
Iteration: 20, Func. Count: 170, Neg. LLF: 148.41730188218148
Iteration: 21, Func. Count: 178, Neg. LLF: 148.41730095957544
Optimization terminated successfully (Exit mode 0)
Current function value: 148.41730095957544
Iterations: 21
Function evaluations: 178
Gradient evaluations: 21
Iteration: 1, Func. Count: 10, Neg. LLF: 185.00894865866792
Iteration: 2, Func. Count: 20, Neg. LLF: 161.3266247922041
Iteration: 3, Func. Count: 30, Neg. LLF: 207.04906189925245
Iteration: 4, Func. Count: 40, Neg. LLF: 148.78826285470132
Iteration: 5, Func. Count: 49, Neg. LLF: 149.21390103981616
Iteration: 6, Func. Count: 59, Neg. LLF: 150.64982879145475
Iteration: 7, Func. Count: 69, Neg. LLF: 148.45348601368212
Iteration: 8, Func. Count: 78, Neg. LLF: 148.45195119745625
Iteration: 9, Func. Count: 88, Neg. LLF: 148.42503992738327
Iteration: 10, Func. Count: 97, Neg. LLF: 148.41886410334735
Iteration: 11, Func. Count: 106, Neg. LLF: 148.41750665693465
Iteration: 12, Func. Count: 115, Neg. LLF: 148.41737866130686
Iteration: 13, Func. Count: 124, Neg. LLF: 148.41730942449
Iteration: 14, Func. Count: 133, Neg. LLF: 148.41730164309624
Iteration: 15, Func. Count: 142, Neg. LLF: 148.41730095121423
Optimization terminated successfully (Exit mode 0)
Current function value: 148.41730095121423
Iterations: 15
Function evaluations: 142
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 170.3022396590411
Iteration: 2, Func. Count: 22, Neg. LLF: 154.7249715855806
Iteration: 3, Func. Count: 33, Neg. LLF: 179.4652233685883
Iteration: 4, Func. Count: 44, Neg. LLF: 148.88126819478316
Iteration: 5, Func. Count: 54, Neg. LLF: 148.676496279636
Iteration: 6, Func. Count: 64, Neg. LLF: 151.87861930660648
Iteration: 7, Func. Count: 75, Neg. LLF: 148.4468769113352
Iteration: 8, Func. Count: 85, Neg. LLF: 148.4275995161601
Iteration: 9, Func. Count: 95, Neg. LLF: 148.41771553184634
Iteration: 10, Func. Count: 105, Neg. LLF: 148.41737664995424
Iteration: 11, Func. Count: 115, Neg. LLF: 148.41730565281065
Iteration: 12, Func. Count: 125, Neg. LLF: 148.4173014041521
Iteration: 13, Func. Count: 134, Neg. LLF: 148.417301443975
Optimization terminated successfully (Exit mode 0)
Current function value: 148.4173014041521
Iterations: 13
Function evaluations: 134
Gradient evaluations: 13
Iteration: 1, Func. Count: 12, Neg. LLF: 169.69537947967498
Iteration: 2, Func. Count: 24, Neg. LLF: 154.2814168881802
Iteration: 3, Func. Count: 36, Neg. LLF: 149.07775617926987
Iteration: 4, Func. Count: 47, Neg. LLF: 151.4888748011631
Iteration: 5, Func. Count: 59, Neg. LLF: 149.68073509187354
Iteration: 6, Func. Count: 71, Neg. LLF: 150.33394191586154
Iteration: 7, Func. Count: 83, Neg. LLF: 148.43858212422086
Iteration: 8, Func. Count: 94, Neg. LLF: 148.42120560390288
Iteration: 9, Func. Count: 105, Neg. LLF: 148.41771290755077
Iteration: 10, Func. Count: 116, Neg. LLF: 148.4174066422436
Iteration: 11, Func. Count: 127, Neg. LLF: 148.41731133023234
Iteration: 12, Func. Count: 138, Neg. LLF: 148.41730173058446
Iteration: 13, Func. Count: 149, Neg. LLF: 148.41730094867748
Optimization terminated successfully (Exit mode 0)
Current function value: 148.41730094867748
Iterations: 13
Function evaluations: 149
Gradient evaluations: 13
Iteration: 1, Func. Count: 13, Neg. LLF: 169.35464984887017
Iteration: 2, Func. Count: 26, Neg. LLF: 154.48000385265334
Iteration: 3, Func. Count: 39, Neg. LLF: 148.7043995743108
Iteration: 4, Func. Count: 51, Neg. LLF: 148.73840556687355
Iteration: 5, Func. Count: 64, Neg. LLF: 149.25333405830494
Iteration: 6, Func. Count: 77, Neg. LLF: 148.44700539612342
Iteration: 7, Func. Count: 89, Neg. LLF: 148.42606014026612
Iteration: 8, Func. Count: 101, Neg. LLF: 148.41807974228308
Iteration: 9, Func. Count: 113, Neg. LLF: 148.41759536380647
Iteration: 10, Func. Count: 125, Neg. LLF: 148.4173012123717
Iteration: 11, Func. Count: 136, Neg. LLF: 148.41730124005971
Optimization terminated successfully (Exit mode 0)
Current function value: 148.4173012123717
Iterations: 11
Function evaluations: 136
Gradient evaluations: 11
Iteration: 1, Func. Count: 10, Neg. LLF: 157.67509309003722
Iteration: 2, Func. Count: 20, Neg. LLF: 154.97436839793994
Iteration: 3, Func. Count: 30, Neg. LLF: 159.646624623073
Iteration: 4, Func. Count: 40, Neg. LLF: 152.57735202844677
Iteration: 5, Func. Count: 49, Neg. LLF: 156.9139419436943
Iteration: 6, Func. Count: 59, Neg. LLF: 156.5538353714681
Iteration: 7, Func. Count: 69, Neg. LLF: 151.85990197992555
Iteration: 8, Func. Count: 79, Neg. LLF: 150.23896985062015
Iteration: 9, Func. Count: 88, Neg. LLF: 187.92318616401
Iteration: 10, Func. Count: 98, Neg. LLF: 34596.1746789641
Iteration: 11, Func. Count: 108, Neg. LLF: 164.98019496800845
Iteration: 12, Func. Count: 118, Neg. LLF: 154.37894276329078
Iteration: 13, Func. Count: 128, Neg. LLF: 148.44600652682047
Iteration: 14, Func. Count: 137, Neg. LLF: 148.45322086945495
Iteration: 15, Func. Count: 147, Neg. LLF: 148.38997905782347
Iteration: 16, Func. Count: 156, Neg. LLF: 148.3879528414983
Iteration: 17, Func. Count: 165, Neg. LLF: 148.38790554194858
Iteration: 18, Func. Count: 174, Neg. LLF: 148.38789427107272
Iteration: 19, Func. Count: 182, Neg. LLF: 148.38789425997498
Optimization terminated successfully (Exit mode 0)
Current function value: 148.38789427107272
Iterations: 19
Function evaluations: 182
Gradient evaluations: 19
Iteration: 1, Func. Count: 11, Neg. LLF: 187.04206140619647
Iteration: 2, Func. Count: 22, Neg. LLF: 362.8139718099823
Iteration: 3, Func. Count: 33, Neg. LLF: 285.03361723123464
Iteration: 4, Func. Count: 44, Neg. LLF: 150.18066991597544
Iteration: 5, Func. Count: 55, Neg. LLF: 152.88919109151863
Iteration: 6, Func. Count: 66, Neg. LLF: 149.077185756573
Iteration: 7, Func. Count: 76, Neg. LLF: 148.95648461622397
Iteration: 8, Func. Count: 86, Neg. LLF: 148.54516581883632
Iteration: 9, Func. Count: 96, Neg. LLF: 148.47955149611158
Iteration: 10, Func. Count: 106, Neg. LLF: 148.43654531544666
Iteration: 11, Func. Count: 116, Neg. LLF: 148.4159437754033
Iteration: 12, Func. Count: 126, Neg. LLF: 148.39277468512245
Iteration: 13, Func. Count: 136, Neg. LLF: 148.389971714241
Iteration: 14, Func. Count: 146, Neg. LLF: 148.38902286847627
Iteration: 15, Func. Count: 156, Neg. LLF: 148.3881426094262
Iteration: 16, Func. Count: 166, Neg. LLF: 148.38791974475117
Iteration: 17, Func. Count: 176, Neg. LLF: 148.38789505206745
Iteration: 18, Func. Count: 186, Neg. LLF: 148.3878941732317
Optimization terminated successfully (Exit mode 0)
Current function value: 148.3878941732317
Iterations: 18
Function evaluations: 186
Gradient evaluations: 18
Iteration: 1, Func. Count: 12, Neg. LLF: 278.5212961806492
Iteration: 2, Func. Count: 24, Neg. LLF: 201.16014925750548
Iteration: 3, Func. Count: 36, Neg. LLF: 344.6908740974357
Iteration: 4, Func. Count: 48, Neg. LLF: 151.46907910781755
Iteration: 5, Func. Count: 60, Neg. LLF: 154.03549138602872
Iteration: 6, Func. Count: 72, Neg. LLF: 157.75012598130812
Iteration: 7, Func. Count: 84, Neg. LLF: 148.52716909656198
Iteration: 8, Func. Count: 95, Neg. LLF: 148.4177317374849
Iteration: 9, Func. Count: 106, Neg. LLF: 148.3989730289893
Iteration: 10, Func. Count: 117, Neg. LLF: 148.38989963779082
Iteration: 11, Func. Count: 128, Neg. LLF: 148.38863322562455
Iteration: 12, Func. Count: 139, Neg. LLF: 148.38801234866335
Iteration: 13, Func. Count: 150, Neg. LLF: 148.3879008167916
Iteration: 14, Func. Count: 161, Neg. LLF: 148.3878943153345
Iteration: 15, Func. Count: 171, Neg. LLF: 148.38789435489707
Optimization terminated successfully (Exit mode 0)
Current function value: 148.3878943153345
Iterations: 15
Function evaluations: 171
Gradient evaluations: 15
Iteration: 1, Func. Count: 13, Neg. LLF: 283.6289568632598
Iteration: 2, Func. Count: 26, Neg. LLF: 240.0804478075459
Iteration: 3, Func. Count: 39, Neg. LLF: 149.94009155693837
Iteration: 4, Func. Count: 51, Neg. LLF: 151.97616225919066
Iteration: 5, Func. Count: 64, Neg. LLF: 149.01448867328463
Iteration: 6, Func. Count: 77, Neg. LLF: 148.62853065602792
Iteration: 7, Func. Count: 90, Neg. LLF: 148.3931876533607
Iteration: 8, Func. Count: 102, Neg. LLF: 148.38977372784365
Iteration: 9, Func. Count: 114, Neg. LLF: 148.38805153414754
Iteration: 10, Func. Count: 126, Neg. LLF: 148.3879304404461
Iteration: 11, Func. Count: 138, Neg. LLF: 148.3878942456778
Iteration: 12, Func. Count: 149, Neg. LLF: 148.38789424706792
Optimization terminated successfully (Exit mode 0)
Current function value: 148.3878942456778
Iterations: 12
Function evaluations: 149
Gradient evaluations: 12
Iteration: 1, Func. Count: 14, Neg. LLF: 220.92733462720895
Iteration: 2, Func. Count: 28, Neg. LLF: 176.12560675580127
Iteration: 3, Func. Count: 42, Neg. LLF: 155.24936367851637
Iteration: 4, Func. Count: 56, Neg. LLF: 149.05123507807164
Iteration: 5, Func. Count: 69, Neg. LLF: 149.36045934919494
Iteration: 6, Func. Count: 83, Neg. LLF: 148.6768902936983
Iteration: 7, Func. Count: 97, Neg. LLF: 148.45191633723658
Iteration: 8, Func. Count: 110, Neg. LLF: 148.40485758963868
Iteration: 9, Func. Count: 123, Neg. LLF: 148.38972530918116
Iteration: 10, Func. Count: 136, Neg. LLF: 148.3882645332462
Iteration: 11, Func. Count: 149, Neg. LLF: 148.38789604488366
Iteration: 12, Func. Count: 162, Neg. LLF: 148.38789422214137
Iteration: 13, Func. Count: 174, Neg. LLF: 148.38789425288053
Optimization terminated successfully (Exit mode 0)
Current function value: 148.38789422214137
Iterations: 13
Function evaluations: 174
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 156.80898210133475
Iteration: 2, Func. Count: 22, Neg. LLF: 157.11784779906407
Iteration: 3, Func. Count: 33, Neg. LLF: 151.0501096162347
Iteration: 4, Func. Count: 43, Neg. LLF: 150.2036117793122
Iteration: 5, Func. Count: 53, Neg. LLF: 151.65543407701364
Iteration: 6, Func. Count: 65, Neg. LLF: 150.48240427180713
Iteration: 7, Func. Count: 76, Neg. LLF: 149.68259258068917
Iteration: 8, Func. Count: 86, Neg. LLF: 148.93478637635954
Iteration: 9, Func. Count: 96, Neg. LLF: 148.10700199416
Iteration: 10, Func. Count: 106, Neg. LLF: 12486.048610721147
Iteration: 11, Func. Count: 117, Neg. LLF: 158.72537669394887
Iteration: 12, Func. Count: 128, Neg. LLF: 1940.1468025752504
Iteration: 13, Func. Count: 139, Neg. LLF: 146.92628613434456
Iteration: 14, Func. Count: 149, Neg. LLF: 146.7384828923051
Iteration: 15, Func. Count: 159, Neg. LLF: 146.74218231812608
Iteration: 16, Func. Count: 170, Neg. LLF: 146.71153023999122
Iteration: 17, Func. Count: 180, Neg. LLF: 146.70644826684847
Iteration: 18, Func. Count: 190, Neg. LLF: 146.70514447343427
Iteration: 19, Func. Count: 200, Neg. LLF: 146.70500117145482
Iteration: 20, Func. Count: 210, Neg. LLF: 146.70497795770265
Iteration: 21, Func. Count: 220, Neg. LLF: 146.7049709639297
Iteration: 22, Func. Count: 230, Neg. LLF: 146.70497015976446
Optimization terminated successfully (Exit mode 0)
Current function value: 146.70497015976446
Iterations: 22
Function evaluations: 230
Gradient evaluations: 22
Iteration: 1, Func. Count: 12, Neg. LLF: 202.8221563549492
Iteration: 2, Func. Count: 24, Neg. LLF: 192.96177586785365
Iteration: 3, Func. Count: 36, Neg. LLF: 168.0877972555783
Iteration: 4, Func. Count: 48, Neg. LLF: 154.38029336650862
Iteration: 5, Func. Count: 60, Neg. LLF: 147.26564709492953
Iteration: 6, Func. Count: 71, Neg. LLF: 147.0359598361706
Iteration: 7, Func. Count: 82, Neg. LLF: 146.76791665909633
Iteration: 8, Func. Count: 93, Neg. LLF: 147.31031534145055
Iteration: 9, Func. Count: 105, Neg. LLF: 146.71966631759526
Iteration: 10, Func. Count: 116, Neg. LLF: 146.70679539576554
Iteration: 11, Func. Count: 127, Neg. LLF: 146.70548149675489
Iteration: 12, Func. Count: 138, Neg. LLF: 146.705003193477
Iteration: 13, Func. Count: 149, Neg. LLF: 146.70498052608758
Iteration: 14, Func. Count: 160, Neg. LLF: 146.7049752119279
Iteration: 15, Func. Count: 171, Neg. LLF: 146.70497258369815
Iteration: 16, Func. Count: 182, Neg. LLF: 146.70497059513966
Iteration: 17, Func. Count: 192, Neg. LLF: 146.70497064789785
Optimization terminated successfully (Exit mode 0)
Current function value: 146.70497059513966
Iterations: 17
Function evaluations: 192
Gradient evaluations: 17
Iteration: 1, Func. Count: 13, Neg. LLF: 194.44582550937082
Iteration: 2, Func. Count: 26, Neg. LLF: 188.19831689643632
Iteration: 3, Func. Count: 39, Neg. LLF: 160.2960987471606
Iteration: 4, Func. Count: 52, Neg. LLF: 172.00503840865574
Iteration: 5, Func. Count: 65, Neg. LLF: 148.0184494014479
Iteration: 6, Func. Count: 77, Neg. LLF: 156.40013026029607
Iteration: 7, Func. Count: 90, Neg. LLF: 146.91558413981224
Iteration: 8, Func. Count: 102, Neg. LLF: 146.87809705736447
Iteration: 9, Func. Count: 115, Neg. LLF: 146.75781108232226
Iteration: 10, Func. Count: 127, Neg. LLF: 146.72997623374496
Iteration: 11, Func. Count: 139, Neg. LLF: 146.70997142772237
Iteration: 12, Func. Count: 151, Neg. LLF: 146.70654154033963
Iteration: 13, Func. Count: 163, Neg. LLF: 146.70503783955473
Iteration: 14, Func. Count: 175, Neg. LLF: 146.70500195280002
Iteration: 15, Func. Count: 187, Neg. LLF: 146.70497920412288
Iteration: 16, Func. Count: 199, Neg. LLF: 146.7049722067834
Iteration: 17, Func. Count: 211, Neg. LLF: 146.7049704850201
Iteration: 18, Func. Count: 222, Neg. LLF: 146.70497054798793
Optimization terminated successfully (Exit mode 0)
Current function value: 146.7049704850201
Iterations: 18
Function evaluations: 222
Gradient evaluations: 18
Iteration: 1, Func. Count: 14, Neg. LLF: 157.1667877457374
Iteration: 2, Func. Count: 28, Neg. LLF: 152.70219989716242
Iteration: 3, Func. Count: 42, Neg. LLF: 148.7990936900166
Iteration: 4, Func. Count: 56, Neg. LLF: 147.15730261798052
Iteration: 5, Func. Count: 69, Neg. LLF: 150.39638130972395
Iteration: 6, Func. Count: 84, Neg. LLF: 147.36870242311258
Iteration: 7, Func. Count: 98, Neg. LLF: 147.35248837632346
Iteration: 8, Func. Count: 112, Neg. LLF: 146.714052732478
Iteration: 9, Func. Count: 125, Neg. LLF: 146.70974328599152
Iteration: 10, Func. Count: 138, Neg. LLF: 146.70518043279503
Iteration: 11, Func. Count: 151, Neg. LLF: 146.7050414620976
Iteration: 12, Func. Count: 164, Neg. LLF: 146.70497948154105
Iteration: 13, Func. Count: 177, Neg. LLF: 146.70497168524324
Iteration: 14, Func. Count: 190, Neg. LLF: 146.70497019007536
Iteration: 15, Func. Count: 202, Neg. LLF: 146.70497020641028
Optimization terminated successfully (Exit mode 0)
Current function value: 146.70497019007536
Iterations: 15
Function evaluations: 202
Gradient evaluations: 15
Iteration: 1, Func. Count: 15, Neg. LLF: 156.71778522443125
Iteration: 2, Func. Count: 30, Neg. LLF: 148.226190741949
Iteration: 3, Func. Count: 44, Neg. LLF: 147.54665407949085
Iteration: 4, Func. Count: 58, Neg. LLF: 166.32969015935024
Iteration: 5, Func. Count: 73, Neg. LLF: 148.13398067611666
Iteration: 6, Func. Count: 88, Neg. LLF: 147.1860320612912
Iteration: 7, Func. Count: 103, Neg. LLF: 146.73211188058684
Iteration: 8, Func. Count: 117, Neg. LLF: 146.71678084112412
Iteration: 9, Func. Count: 131, Neg. LLF: 146.72185799506278
Iteration: 10, Func. Count: 146, Neg. LLF: 146.70682887610263
Iteration: 11, Func. Count: 160, Neg. LLF: 146.70521063734319
Iteration: 12, Func. Count: 174, Neg. LLF: 146.70504810197042
Iteration: 13, Func. Count: 188, Neg. LLF: 146.7049755011666
Iteration: 14, Func. Count: 202, Neg. LLF: 146.7049721404734
Iteration: 15, Func. Count: 216, Neg. LLF: 146.70497025913886
Iteration: 16, Func. Count: 229, Neg. LLF: 146.70497033229267
Optimization terminated successfully (Exit mode 0)
Current function value: 146.70497025913886
Iterations: 16
Function evaluations: 229
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 156.81255534825254
Iteration: 2, Func. Count: 24, Neg. LLF: 161.6292050935249
Iteration: 3, Func. Count: 36, Neg. LLF: 150.92735824054978
Iteration: 4, Func. Count: 47, Neg. LLF: 150.33772509315293
Iteration: 5, Func. Count: 58, Neg. LLF: 151.16555272086603
Iteration: 6, Func. Count: 71, Neg. LLF: 166.89499710616778
Iteration: 7, Func. Count: 83, Neg. LLF: 149.80765262321242
Iteration: 8, Func. Count: 94, Neg. LLF: 150.2299709135727
Iteration: 9, Func. Count: 106, Neg. LLF: 148.70876154461524
Iteration: 10, Func. Count: 117, Neg. LLF: 148.10449160634448
Iteration: 11, Func. Count: 128, Neg. LLF: 183.06048850846005
Iteration: 12, Func. Count: 140, Neg. LLF: 149.0105144467855
Iteration: 13, Func. Count: 152, Neg. LLF: 147.58942020909328
Iteration: 14, Func. Count: 164, Neg. LLF: 147.28302713235874
Iteration: 15, Func. Count: 176, Neg. LLF: 146.84920407553767
Iteration: 16, Func. Count: 187, Neg. LLF: 146.77581690512486
Iteration: 17, Func. Count: 198, Neg. LLF: 146.7466962468127
Iteration: 18, Func. Count: 209, Neg. LLF: 146.7304627981449
Iteration: 19, Func. Count: 220, Neg. LLF: 146.7142250360817
Iteration: 20, Func. Count: 231, Neg. LLF: 146.70945845494683
Iteration: 21, Func. Count: 242, Neg. LLF: 146.70691639675601
Iteration: 22, Func. Count: 253, Neg. LLF: 146.7057072653921
Iteration: 23, Func. Count: 264, Neg. LLF: 146.70513075121704
Iteration: 24, Func. Count: 275, Neg. LLF: 146.70498736045425
Iteration: 25, Func. Count: 286, Neg. LLF: 146.70497111348874
Iteration: 26, Func. Count: 297, Neg. LLF: 146.7049701429185
Optimization terminated successfully (Exit mode 0)
Current function value: 146.7049701429185
Iterations: 26
Function evaluations: 297
Gradient evaluations: 26
Iteration: 1, Func. Count: 13, Neg. LLF: 357.92563836692
Iteration: 2, Func. Count: 26, Neg. LLF: 205.28057374316256
Iteration: 3, Func. Count: 39, Neg. LLF: 183.74797484070524
Iteration: 4, Func. Count: 52, Neg. LLF: 255.69047779685573
Iteration: 5, Func. Count: 65, Neg. LLF: 148.03583642413292
Iteration: 6, Func. Count: 77, Neg. LLF: 147.7187988903847
Iteration: 7, Func. Count: 89, Neg. LLF: 147.34723084965913
Iteration: 8, Func. Count: 101, Neg. LLF: 147.73070944033978
Iteration: 9, Func. Count: 114, Neg. LLF: 146.78343337816827
Iteration: 10, Func. Count: 126, Neg. LLF: 146.72521171110597
Iteration: 11, Func. Count: 138, Neg. LLF: 146.71000950213923
Iteration: 12, Func. Count: 150, Neg. LLF: 146.7067329040863
Iteration: 13, Func. Count: 162, Neg. LLF: 146.7057924427952
Iteration: 14, Func. Count: 174, Neg. LLF: 146.70542636466922
Iteration: 15, Func. Count: 186, Neg. LLF: 146.7051948583897
Iteration: 16, Func. Count: 198, Neg. LLF: 146.70505041151745
Iteration: 17, Func. Count: 210, Neg. LLF: 146.70499589011357
Iteration: 18, Func. Count: 222, Neg. LLF: 146.70497946012145
Iteration: 19, Func. Count: 234, Neg. LLF: 146.70497322625863
Iteration: 20, Func. Count: 246, Neg. LLF: 146.70497078907033
Iteration: 21, Func. Count: 257, Neg. LLF: 146.70497084180437
Optimization terminated successfully (Exit mode 0)
Current function value: 146.70497078907033
Iterations: 21
Function evaluations: 257
Gradient evaluations: 21
Iteration: 1, Func. Count: 14, Neg. LLF: 157.7090533332865
Iteration: 2, Func. Count: 28, Neg. LLF: 152.69660720004129
Iteration: 3, Func. Count: 42, Neg. LLF: 150.38306407108522
Iteration: 4, Func. Count: 56, Neg. LLF: 147.3168293755939
Iteration: 5, Func. Count: 69, Neg. LLF: 223.35733106232695
Iteration: 6, Func. Count: 84, Neg. LLF: 149.20905133272643
Iteration: 7, Func. Count: 98, Neg. LLF: 148.6083145136138
Iteration: 8, Func. Count: 112, Neg. LLF: 146.72253690025235
Iteration: 9, Func. Count: 125, Neg. LLF: 146.71090956726516
Iteration: 10, Func. Count: 138, Neg. LLF: 146.70753897668038
Iteration: 11, Func. Count: 151, Neg. LLF: 146.70565481384446
Iteration: 12, Func. Count: 164, Neg. LLF: 146.7050416418324
Iteration: 13, Func. Count: 177, Neg. LLF: 146.7049784846082
Iteration: 14, Func. Count: 190, Neg. LLF: 146.7049720160524
Iteration: 15, Func. Count: 203, Neg. LLF: 146.7049705357674
Iteration: 16, Func. Count: 215, Neg. LLF: 146.70497059867196
Optimization terminated successfully (Exit mode 0)
Current function value: 146.7049705357674
Iterations: 16
Function evaluations: 215
Gradient evaluations: 16
Iteration: 1, Func. Count: 15, Neg. LLF: 157.20517049571808
Iteration: 2, Func. Count: 30, Neg. LLF: 152.4616834453817
Iteration: 3, Func. Count: 45, Neg. LLF: 147.78245175772372
Iteration: 4, Func. Count: 59, Neg. LLF: 147.20722106556164
Iteration: 5, Func. Count: 73, Neg. LLF: 165.20450412396727
Iteration: 6, Func. Count: 88, Neg. LLF: 153.41609680932362
Iteration: 7, Func. Count: 103, Neg. LLF: 146.76852651911034
Iteration: 8, Func. Count: 117, Neg. LLF: 146.71324427124574
Iteration: 9, Func. Count: 131, Neg. LLF: 146.70713046999074
Iteration: 10, Func. Count: 145, Neg. LLF: 146.7058444353191
Iteration: 11, Func. Count: 159, Neg. LLF: 146.7050176011616
Iteration: 12, Func. Count: 173, Neg. LLF: 146.7049739367197
Iteration: 13, Func. Count: 187, Neg. LLF: 146.7049707515939
Iteration: 14, Func. Count: 200, Neg. LLF: 146.70497076788158
Optimization terminated successfully (Exit mode 0)
Current function value: 146.7049707515939
Iterations: 14
Function evaluations: 200
Gradient evaluations: 14
Iteration: 1, Func. Count: 16, Neg. LLF: 156.52057452479931
Iteration: 2, Func. Count: 32, Neg. LLF: 148.80543023270286
Iteration: 3, Func. Count: 47, Neg. LLF: 148.02972752342376
Iteration: 4, Func. Count: 62, Neg. LLF: 186.61048118249815
Iteration: 5, Func. Count: 78, Neg. LLF: 147.78698216536583
Iteration: 6, Func. Count: 94, Neg. LLF: 147.10241204755167
Iteration: 7, Func. Count: 109, Neg. LLF: 146.76863576917802
Iteration: 8, Func. Count: 124, Neg. LLF: 146.7201415888862
Iteration: 9, Func. Count: 139, Neg. LLF: 146.75830685592106
Iteration: 10, Func. Count: 155, Neg. LLF: 146.70645800302293
Iteration: 11, Func. Count: 170, Neg. LLF: 146.70509977685498
Iteration: 12, Func. Count: 185, Neg. LLF: 146.7050066558146
Iteration: 13, Func. Count: 200, Neg. LLF: 146.70497729546224
Iteration: 14, Func. Count: 215, Neg. LLF: 146.70497397540765
Iteration: 15, Func. Count: 230, Neg. LLF: 146.70497020359036
Iteration: 16, Func. Count: 244, Neg. LLF: 146.7049702767387
Optimization terminated successfully (Exit mode 0)
Current function value: 146.70497020359036
Iterations: 16
Function evaluations: 244
Gradient evaluations: 16
Iteration: 1, Func. Count: 8, Neg. LLF: 158.27146998205097
Iteration: 2, Func. Count: 16, Neg. LLF: 216.69389153569065
Iteration: 3, Func. Count: 24, Neg. LLF: 150.53408395041643
Iteration: 4, Func. Count: 31, Neg. LLF: 150.41719653580066
Iteration: 5, Func. Count: 39, Neg. LLF: 154.89556648838135
Iteration: 6, Func. Count: 47, Neg. LLF: 148.66588416039494
Iteration: 7, Func. Count: 54, Neg. LLF: 148.00718466961305
Iteration: 8, Func. Count: 61, Neg. LLF: 147.08395668148358
Iteration: 9, Func. Count: 68, Neg. LLF: 146.96117201385428
Iteration: 10, Func. Count: 75, Neg. LLF: 146.8987844642579
Iteration: 11, Func. Count: 82, Neg. LLF: 146.87837345934312
Iteration: 12, Func. Count: 89, Neg. LLF: 146.8711570823912
Iteration: 13, Func. Count: 96, Neg. LLF: 146.86550791103096
Iteration: 14, Func. Count: 103, Neg. LLF: 146.86366593016825
Iteration: 15, Func. Count: 110, Neg. LLF: 146.86257742452028
Iteration: 16, Func. Count: 117, Neg. LLF: 146.8610558455167
Iteration: 17, Func. Count: 124, Neg. LLF: 146.86056956873776
Iteration: 18, Func. Count: 131, Neg. LLF: 146.8604884329445
Iteration: 19, Func. Count: 138, Neg. LLF: 146.86048706116557
Iteration: 20, Func. Count: 144, Neg. LLF: 146.8604870611606
Optimization terminated successfully (Exit mode 0)
Current function value: 146.86048706116557
Iterations: 20
Function evaluations: 144
Gradient evaluations: 20
Iteration: 1, Func. Count: 5, Neg. LLF: 172.4334169754171
Iteration: 2, Func. Count: 9, Neg. LLF: 172.20374049626022
Iteration: 3, Func. Count: 14, Neg. LLF: 171.15430098280004
Iteration: 4, Func. Count: 18, Neg. LLF: 171.08024791899481
Iteration: 5, Func. Count: 22, Neg. LLF: 170.91868697834352
Iteration: 6, Func. Count: 26, Neg. LLF: 170.90660357568345
Iteration: 7, Func. Count: 30, Neg. LLF: 170.90516137038588
Iteration: 8, Func. Count: 34, Neg. LLF: 170.90430155872238
Iteration: 9, Func. Count: 38, Neg. LLF: 170.9026732338396
Iteration: 10, Func. Count: 42, Neg. LLF: 170.90176523333784
Iteration: 11, Func. Count: 46, Neg. LLF: 170.90147858363054
Iteration: 12, Func. Count: 50, Neg. LLF: 170.90145231050718
Iteration: 13, Func. Count: 53, Neg. LLF: 170.90145231050013
Optimization terminated successfully (Exit mode 0)
Current function value: 170.90145231050718
Iterations: 13
Function evaluations: 53
Gradient evaluations: 13
Iteration: 1, Func. Count: 6, Neg. LLF: 579.8377035459446
Iteration: 2, Func. Count: 12, Neg. LLF: 159.3821089688049
Iteration: 3, Func. Count: 17, Neg. LLF: 191.12500174373926
Iteration: 4, Func. Count: 23, Neg. LLF: 170.18186776522037
Iteration: 5, Func. Count: 29, Neg. LLF: 158.30011290125924
Iteration: 6, Func. Count: 34, Neg. LLF: 158.29230821488832
Iteration: 7, Func. Count: 39, Neg. LLF: 158.2888542837029
Iteration: 8, Func. Count: 44, Neg. LLF: 158.28767079626138
Iteration: 9, Func. Count: 49, Neg. LLF: 158.2874549188167
Iteration: 10, Func. Count: 54, Neg. LLF: 158.28738152323882
Iteration: 11, Func. Count: 59, Neg. LLF: 158.28735262494425
Iteration: 12, Func. Count: 64, Neg. LLF: 158.28734938486346
Iteration: 13, Func. Count: 68, Neg. LLF: 158.28734938495987
Optimization terminated successfully (Exit mode 0)
Current function value: 158.28734938486346
Iterations: 13
Function evaluations: 68
Gradient evaluations: 13
Iteration: 1, Func. Count: 7, Neg. LLF: 435.5370878271758
Iteration: 2, Func. Count: 14, Neg. LLF: 159.84302871882417
Iteration: 3, Func. Count: 20, Neg. LLF: 160.406677120626
Iteration: 4, Func. Count: 27, Neg. LLF: 158.42072279042438
Iteration: 5, Func. Count: 33, Neg. LLF: 158.32834303174604
Iteration: 6, Func. Count: 39, Neg. LLF: 158.299074104223
Iteration: 7, Func. Count: 45, Neg. LLF: 158.2910156609722
Iteration: 8, Func. Count: 51, Neg. LLF: 158.29000631860268
Iteration: 9, Func. Count: 57, Neg. LLF: 158.2881470916852
Iteration: 10, Func. Count: 63, Neg. LLF: 158.2874146390779
Iteration: 11, Func. Count: 69, Neg. LLF: 158.28735113669504
Iteration: 12, Func. Count: 75, Neg. LLF: 158.28734926969238
Iteration: 13, Func. Count: 80, Neg. LLF: 158.2873493052002
Optimization terminated successfully (Exit mode 0)
Current function value: 158.28734926969238
Iterations: 13
Function evaluations: 80
Gradient evaluations: 13
Iteration: 1, Func. Count: 8, Neg. LLF: 359.2906333502648
Iteration: 2, Func. Count: 16, Neg. LLF: 162.50248202641916
Iteration: 3, Func. Count: 24, Neg. LLF: 158.4807834669308
Iteration: 4, Func. Count: 31, Neg. LLF: 159.1116619516784
Iteration: 5, Func. Count: 39, Neg. LLF: 158.38224626693355
Iteration: 6, Func. Count: 46, Neg. LLF: 158.35171897229483
Iteration: 7, Func. Count: 53, Neg. LLF: 158.30203806853393
Iteration: 8, Func. Count: 60, Neg. LLF: 158.28903340832522
Iteration: 9, Func. Count: 67, Neg. LLF: 158.28739092249103
Iteration: 10, Func. Count: 74, Neg. LLF: 158.28735196583582
Iteration: 11, Func. Count: 81, Neg. LLF: 158.28734952853557
Iteration: 12, Func. Count: 87, Neg. LLF: 158.28734960451862
Optimization terminated successfully (Exit mode 0)
Current function value: 158.28734952853557
Iterations: 12
Function evaluations: 87
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 239.87456135969862
Iteration: 2, Func. Count: 18, Neg. LLF: 174.04516595010426
Iteration: 3, Func. Count: 27, Neg. LLF: 172.35314598013002
Iteration: 4, Func. Count: 36, Neg. LLF: 159.77005430958343
Iteration: 5, Func. Count: 44, Neg. LLF: 162.540297635994
Iteration: 6, Func. Count: 53, Neg. LLF: 161.28242002390607
Iteration: 7, Func. Count: 62, Neg. LLF: 158.53738675717088
Iteration: 8, Func. Count: 70, Neg. LLF: 158.37810975860947
Iteration: 9, Func. Count: 78, Neg. LLF: 158.35818749933392
Iteration: 10, Func. Count: 86, Neg. LLF: 158.3312329586387
Iteration: 11, Func. Count: 94, Neg. LLF: 158.30890629382807
Iteration: 12, Func. Count: 102, Neg. LLF: 158.29641238773877
Iteration: 13, Func. Count: 110, Neg. LLF: 158.28805094283868
Iteration: 14, Func. Count: 118, Neg. LLF: 158.2873850442886
Iteration: 15, Func. Count: 126, Neg. LLF: 158.28734967439436
Iteration: 16, Func. Count: 133, Neg. LLF: 158.28734973722678
Optimization terminated successfully (Exit mode 0)
Current function value: 158.28734967439436
Iterations: 16
Function evaluations: 133
Gradient evaluations: 16
Iteration: 1, Func. Count: 6, Neg. LLF: 166.48332757167967
Iteration: 2, Func. Count: 11, Neg. LLF: 180.61301543822907
Iteration: 3, Func. Count: 17, Neg. LLF: 166.67575694456843
Iteration: 4, Func. Count: 23, Neg. LLF: 163.9131251077214
Iteration: 5, Func. Count: 28, Neg. LLF: 163.78880573799492
Iteration: 6, Func. Count: 33, Neg. LLF: 163.36840558808228
Iteration: 7, Func. Count: 38, Neg. LLF: 162.22027642185722
Iteration: 8, Func. Count: 43, Neg. LLF: 161.5376965898964
Iteration: 9, Func. Count: 48, Neg. LLF: 161.44421650987368
Iteration: 10, Func. Count: 53, Neg. LLF: 161.2971695509488
Iteration: 11, Func. Count: 58, Neg. LLF: 161.2860485366535
Iteration: 12, Func. Count: 63, Neg. LLF: 161.2794971914562
Iteration: 13, Func. Count: 68, Neg. LLF: 161.27871103997495
Iteration: 14, Func. Count: 73, Neg. LLF: 161.27862168498254
Iteration: 15, Func. Count: 78, Neg. LLF: 161.27860920201087
Iteration: 16, Func. Count: 83, Neg. LLF: 161.27860689430787
Iteration: 17, Func. Count: 87, Neg. LLF: 161.27860689293448
Optimization terminated successfully (Exit mode 0)
Current function value: 161.27860689430787
Iterations: 17
Function evaluations: 87
Gradient evaluations: 17
Iteration: 1, Func. Count: 7, Neg. LLF: 564.6668617071331
Iteration: 2, Func. Count: 14, Neg. LLF: 158.20673440319274
Iteration: 3, Func. Count: 20, Neg. LLF: 221.561182897791
Iteration: 4, Func. Count: 27, Neg. LLF: 158.729199629114
Iteration: 5, Func. Count: 34, Neg. LLF: 160.4457508591649
Iteration: 6, Func. Count: 41, Neg. LLF: 157.68045640304814
Iteration: 7, Func. Count: 47, Neg. LLF: 157.6721065258205
Iteration: 8, Func. Count: 53, Neg. LLF: 157.66513188873603
Iteration: 9, Func. Count: 59, Neg. LLF: 157.66341480752249
Iteration: 10, Func. Count: 65, Neg. LLF: 157.66306017943765
Iteration: 11, Func. Count: 71, Neg. LLF: 157.662925256404
Iteration: 12, Func. Count: 77, Neg. LLF: 157.66284326883832
Iteration: 13, Func. Count: 83, Neg. LLF: 157.66282631295005
Iteration: 14, Func. Count: 89, Neg. LLF: 157.66282472774796
Iteration: 15, Func. Count: 94, Neg. LLF: 157.66282472775762
Optimization terminated successfully (Exit mode 0)
Current function value: 157.66282472774796
Iterations: 15
Function evaluations: 94
Gradient evaluations: 15
Iteration: 1, Func. Count: 8, Neg. LLF: 457.9964276481425
Iteration: 2, Func. Count: 16, Neg. LLF: 159.65755514022607
Iteration: 3, Func. Count: 23, Neg. LLF: 160.11629412389658
Iteration: 4, Func. Count: 31, Neg. LLF: 157.97804556499207
Iteration: 5, Func. Count: 38, Neg. LLF: 160.54222508000925
Iteration: 6, Func. Count: 46, Neg. LLF: 159.19612843237292
Iteration: 7, Func. Count: 54, Neg. LLF: 157.8583770041152
Iteration: 8, Func. Count: 62, Neg. LLF: 157.6826781039102
Iteration: 9, Func. Count: 69, Neg. LLF: 157.66792426328556
Iteration: 10, Func. Count: 76, Neg. LLF: 157.66372658024522
Iteration: 11, Func. Count: 83, Neg. LLF: 157.6628938134133
Iteration: 12, Func. Count: 90, Neg. LLF: 157.66282612992703
Iteration: 13, Func. Count: 97, Neg. LLF: 157.66282470009537
Iteration: 14, Func. Count: 103, Neg. LLF: 157.66282473276632
Optimization terminated successfully (Exit mode 0)
Current function value: 157.66282470009537
Iterations: 14
Function evaluations: 103
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 207.53881384481463
Iteration: 2, Func. Count: 18, Neg. LLF: 161.4000755276944
Iteration: 3, Func. Count: 27, Neg. LLF: 162.10343451931547
Iteration: 4, Func. Count: 36, Neg. LLF: 180.01358006822207
Iteration: 5, Func. Count: 45, Neg. LLF: 159.44477963221337
Iteration: 6, Func. Count: 54, Neg. LLF: 157.76996518256462
Iteration: 7, Func. Count: 62, Neg. LLF: 158.0610451000886
Iteration: 8, Func. Count: 71, Neg. LLF: 158.4215588082443
Iteration: 9, Func. Count: 80, Neg. LLF: 157.6635500636929
Iteration: 10, Func. Count: 88, Neg. LLF: 157.6629097511968
Iteration: 11, Func. Count: 96, Neg. LLF: 157.66284882653267
Iteration: 12, Func. Count: 104, Neg. LLF: 157.66282583935265
Iteration: 13, Func. Count: 112, Neg. LLF: 157.66282516143878
Optimization terminated successfully (Exit mode 0)
Current function value: 157.66282516143878
Iterations: 13
Function evaluations: 112
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 204.91579549757455
Iteration: 2, Func. Count: 20, Neg. LLF: 159.47922249892667
Iteration: 3, Func. Count: 29, Neg. LLF: 171.88501616934633
Iteration: 4, Func. Count: 39, Neg. LLF: 168.64493119549036
Iteration: 5, Func. Count: 49, Neg. LLF: 158.4547968783614
Iteration: 6, Func. Count: 59, Neg. LLF: 189.52811709989552
Iteration: 7, Func. Count: 69, Neg. LLF: 157.88811089186626
Iteration: 8, Func. Count: 78, Neg. LLF: 157.84504859349164
Iteration: 9, Func. Count: 87, Neg. LLF: 157.79959653244646
Iteration: 10, Func. Count: 96, Neg. LLF: 157.71479201796748
Iteration: 11, Func. Count: 105, Neg. LLF: 157.67798944121657
Iteration: 12, Func. Count: 114, Neg. LLF: 157.66378493557647
Iteration: 13, Func. Count: 123, Neg. LLF: 157.66315264749247
Iteration: 14, Func. Count: 132, Neg. LLF: 157.66285081063592
Iteration: 15, Func. Count: 141, Neg. LLF: 157.6628265444922
Iteration: 16, Func. Count: 150, Neg. LLF: 157.66282478709414
Iteration: 17, Func. Count: 158, Neg. LLF: 157.66282481393227
Optimization terminated successfully (Exit mode 0)
Current function value: 157.66282478709414
Iterations: 17
Function evaluations: 158
Gradient evaluations: 17
Iteration: 1, Func. Count: 7, Neg. LLF: 162.9743093151822
Iteration: 2, Func. Count: 14, Neg. LLF: 178.8557721845469
Iteration: 3, Func. Count: 21, Neg. LLF: 160.23855055487644
Iteration: 4, Func. Count: 27, Neg. LLF: 159.91458795126638
Iteration: 5, Func. Count: 33, Neg. LLF: 159.71063016706717
Iteration: 6, Func. Count: 39, Neg. LLF: 159.468195678551
Iteration: 7, Func. Count: 45, Neg. LLF: 159.22211786946391
Iteration: 8, Func. Count: 51, Neg. LLF: 157.86307938276207
Iteration: 9, Func. Count: 57, Neg. LLF: 157.5407253890286
Iteration: 10, Func. Count: 63, Neg. LLF: 157.37298163992827
Iteration: 11, Func. Count: 69, Neg. LLF: 158.31147821340636
Iteration: 12, Func. Count: 76, Neg. LLF: 157.3328713491041
Iteration: 13, Func. Count: 83, Neg. LLF: 157.2713941254307
Iteration: 14, Func. Count: 89, Neg. LLF: 157.24652424727114
Iteration: 15, Func. Count: 95, Neg. LLF: 157.24541604267736
Iteration: 16, Func. Count: 101, Neg. LLF: 157.24531157630238
Iteration: 17, Func. Count: 107, Neg. LLF: 157.24529956176306
Iteration: 18, Func. Count: 113, Neg. LLF: 157.24529796536163
Iteration: 19, Func. Count: 118, Neg. LLF: 157.24529796536805
Optimization terminated successfully (Exit mode 0)
Current function value: 157.24529796536163
Iterations: 19
Function evaluations: 118
Gradient evaluations: 19
Iteration: 1, Func. Count: 8, Neg. LLF: 480.3574425581242
Iteration: 2, Func. Count: 16, Neg. LLF: 158.86887961712304
Iteration: 3, Func. Count: 23, Neg. LLF: 215.98702796316448
Iteration: 4, Func. Count: 31, Neg. LLF: 164.19448885458084
Iteration: 5, Func. Count: 39, Neg. LLF: 157.23761975354466
Iteration: 6, Func. Count: 46, Neg. LLF: 157.09386628778554
Iteration: 7, Func. Count: 53, Neg. LLF: 157.0733660529769
Iteration: 8, Func. Count: 60, Neg. LLF: 157.0360934695235
Iteration: 9, Func. Count: 67, Neg. LLF: 157.02915851812062
Iteration: 10, Func. Count: 74, Neg. LLF: 157.0270556205124
Iteration: 11, Func. Count: 81, Neg. LLF: 157.02591040488284
Iteration: 12, Func. Count: 88, Neg. LLF: 157.02493846876658
Iteration: 13, Func. Count: 95, Neg. LLF: 157.02431666355054
Iteration: 14, Func. Count: 102, Neg. LLF: 157.02419089154745
Iteration: 15, Func. Count: 109, Neg. LLF: 157.02418016003375
Iteration: 16, Func. Count: 115, Neg. LLF: 157.02418016014775
Optimization terminated successfully (Exit mode 0)
Current function value: 157.02418016003375
Iterations: 16
Function evaluations: 115
Gradient evaluations: 16
Iteration: 1, Func. Count: 9, Neg. LLF: 231.56731739020725
Iteration: 2, Func. Count: 18, Neg. LLF: 158.12051487883326
Iteration: 3, Func. Count: 26, Neg. LLF: 158.46549072273737
Iteration: 4, Func. Count: 35, Neg. LLF: 164.19350075173026
Iteration: 5, Func. Count: 44, Neg. LLF: 179.28923332390494
Iteration: 6, Func. Count: 53, Neg. LLF: 158.00418464466748
Iteration: 7, Func. Count: 62, Neg. LLF: 157.36945326193526
Iteration: 8, Func. Count: 71, Neg. LLF: 156.80507175690954
Iteration: 9, Func. Count: 80, Neg. LLF: 156.6791604112579
Iteration: 10, Func. Count: 89, Neg. LLF: 156.5049951891759
Iteration: 11, Func. Count: 97, Neg. LLF: 156.50146663500325
Iteration: 12, Func. Count: 105, Neg. LLF: 156.500102587219
Iteration: 13, Func. Count: 113, Neg. LLF: 156.4996748383057
Iteration: 14, Func. Count: 121, Neg. LLF: 156.49933996506232
Iteration: 15, Func. Count: 129, Neg. LLF: 156.49909295050813
Iteration: 16, Func. Count: 137, Neg. LLF: 156.49904590104887
Iteration: 17, Func. Count: 145, Neg. LLF: 156.4990190728599
Iteration: 18, Func. Count: 153, Neg. LLF: 156.49901051105923
Iteration: 19, Func. Count: 161, Neg. LLF: 156.49900942485388
Iteration: 20, Func. Count: 168, Neg. LLF: 156.49900942484692
Optimization terminated successfully (Exit mode 0)
Current function value: 156.49900942485388
Iterations: 20
Function evaluations: 168
Gradient evaluations: 20
Iteration: 1, Func. Count: 10, Neg. LLF: 458.09651575346436
Iteration: 2, Func. Count: 20, Neg. LLF: 350.8475635779081
Iteration: 3, Func. Count: 30, Neg. LLF: 197.332699057791
Iteration: 4, Func. Count: 40, Neg. LLF: 166.33241635311424
Iteration: 5, Func. Count: 50, Neg. LLF: 159.30116359670967
Iteration: 6, Func. Count: 60, Neg. LLF: 155.5128298914015
Iteration: 7, Func. Count: 69, Neg. LLF: 155.10112219007706
Iteration: 8, Func. Count: 78, Neg. LLF: 154.89863645371636
Iteration: 9, Func. Count: 87, Neg. LLF: 154.84524430668787
Iteration: 10, Func. Count: 96, Neg. LLF: 154.79636342749743
Iteration: 11, Func. Count: 105, Neg. LLF: 154.79554511798935
Iteration: 12, Func. Count: 114, Neg. LLF: 154.79538823149343
Iteration: 13, Func. Count: 123, Neg. LLF: 154.7952601508162
Iteration: 14, Func. Count: 132, Neg. LLF: 154.795237713565
Iteration: 15, Func. Count: 141, Neg. LLF: 154.79523440781225
Iteration: 16, Func. Count: 150, Neg. LLF: 154.79523158641277
Iteration: 17, Func. Count: 159, Neg. LLF: 154.7952266720764
Iteration: 18, Func. Count: 168, Neg. LLF: 154.795222996081
Iteration: 19, Func. Count: 177, Neg. LLF: 154.7952217837674
Iteration: 20, Func. Count: 185, Neg. LLF: 154.7952217837627
Optimization terminated successfully (Exit mode 0)
Current function value: 154.7952217837674
Iterations: 20
Function evaluations: 185
Gradient evaluations: 20
Iteration: 1, Func. Count: 11, Neg. LLF: 169.55367694969505
Iteration: 2, Func. Count: 22, Neg. LLF: 188.39011613341302
Iteration: 3, Func. Count: 33, Neg. LLF: 168.9357323374492
Iteration: 4, Func. Count: 44, Neg. LLF: 165.24661798637962
Iteration: 5, Func. Count: 55, Neg. LLF: 155.1781317999935
Iteration: 6, Func. Count: 65, Neg. LLF: 155.06667029244343
Iteration: 7, Func. Count: 75, Neg. LLF: 155.12133577008703
Iteration: 8, Func. Count: 86, Neg. LLF: 154.8768317819167
Iteration: 9, Func. Count: 96, Neg. LLF: 154.88691921612894
Iteration: 10, Func. Count: 107, Neg. LLF: 154.81763989958702
Iteration: 11, Func. Count: 117, Neg. LLF: 154.7981045661606
Iteration: 12, Func. Count: 127, Neg. LLF: 154.79627468517913
Iteration: 13, Func. Count: 137, Neg. LLF: 154.79568666271564
Iteration: 14, Func. Count: 147, Neg. LLF: 154.79507966159264
Iteration: 15, Func. Count: 157, Neg. LLF: 154.79501996176916
Iteration: 16, Func. Count: 167, Neg. LLF: 154.79501720374543
Iteration: 17, Func. Count: 176, Neg. LLF: 154.79501720373878
Optimization terminated successfully (Exit mode 0)
Current function value: 154.79501720374543
Iterations: 17
Function evaluations: 176
Gradient evaluations: 17
Iteration: 1, Func. Count: 8, Neg. LLF: 163.2429029486824
Iteration: 2, Func. Count: 16, Neg. LLF: 179.14141034759746
Iteration: 3, Func. Count: 24, Neg. LLF: 160.2674465310794
Iteration: 4, Func. Count: 31, Neg. LLF: 159.91409854279647
Iteration: 5, Func. Count: 38, Neg. LLF: 159.73053189837594
Iteration: 6, Func. Count: 45, Neg. LLF: 159.4780962677787
Iteration: 7, Func. Count: 52, Neg. LLF: 159.2258790583888
Iteration: 8, Func. Count: 59, Neg. LLF: 157.58061569065262
Iteration: 9, Func. Count: 66, Neg. LLF: 157.41670498981742
Iteration: 10, Func. Count: 73, Neg. LLF: 158.15372625687266
Iteration: 11, Func. Count: 81, Neg. LLF: 157.72008105089245
Iteration: 12, Func. Count: 89, Neg. LLF: 157.47821889716806
Iteration: 13, Func. Count: 98, Neg. LLF: 157.3025245567783
Iteration: 14, Func. Count: 106, Neg. LLF: 157.26704653653886
Iteration: 15, Func. Count: 113, Neg. LLF: 157.24634511163453
Iteration: 16, Func. Count: 120, Neg. LLF: 157.2453063605261
Iteration: 17, Func. Count: 127, Neg. LLF: 157.24529804750154
Iteration: 18, Func. Count: 133, Neg. LLF: 157.24529805229486
Optimization terminated successfully (Exit mode 0)
Current function value: 157.24529804750154
Iterations: 18
Function evaluations: 133
Gradient evaluations: 18
Iteration: 1, Func. Count: 9, Neg. LLF: 394.01627787903124
Iteration: 2, Func. Count: 18, Neg. LLF: 159.46398163951244
Iteration: 3, Func. Count: 26, Neg. LLF: 207.34449738556017
Iteration: 4, Func. Count: 35, Neg. LLF: 161.59191234240217
Iteration: 5, Func. Count: 44, Neg. LLF: 157.13267060104667
Iteration: 6, Func. Count: 52, Neg. LLF: 157.07015621523558
Iteration: 7, Func. Count: 60, Neg. LLF: 157.04592680249297
Iteration: 8, Func. Count: 68, Neg. LLF: 157.0377614635127
Iteration: 9, Func. Count: 76, Neg. LLF: 157.02639483677643
Iteration: 10, Func. Count: 84, Neg. LLF: 157.0249171553664
Iteration: 11, Func. Count: 92, Neg. LLF: 157.02459653172042
Iteration: 12, Func. Count: 100, Neg. LLF: 157.0245002977475
Iteration: 13, Func. Count: 108, Neg. LLF: 157.02424307166868
Iteration: 14, Func. Count: 116, Neg. LLF: 157.02418856324758
Iteration: 15, Func. Count: 124, Neg. LLF: 157.02417993891333
Iteration: 16, Func. Count: 131, Neg. LLF: 157.02417993894719
Optimization terminated successfully (Exit mode 0)
Current function value: 157.02417993891333
Iterations: 16
Function evaluations: 131
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 174.54991705601208
Iteration: 2, Func. Count: 20, Neg. LLF: 186.23942841654932
Iteration: 3, Func. Count: 30, Neg. LLF: 162.5279125154884
Iteration: 4, Func. Count: 40, Neg. LLF: 169.26049363669372
Iteration: 5, Func. Count: 50, Neg. LLF: 157.70877090169364
Iteration: 6, Func. Count: 60, Neg. LLF: 156.73962182257296
Iteration: 7, Func. Count: 69, Neg. LLF: 156.73231054670532
Iteration: 8, Func. Count: 79, Neg. LLF: 156.54413743224188
Iteration: 9, Func. Count: 88, Neg. LLF: 156.52146641733242
Iteration: 10, Func. Count: 97, Neg. LLF: 156.51279701569146
Iteration: 11, Func. Count: 106, Neg. LLF: 156.50349350735107
Iteration: 12, Func. Count: 115, Neg. LLF: 156.49961726395668
Iteration: 13, Func. Count: 124, Neg. LLF: 156.4990718567488
Iteration: 14, Func. Count: 133, Neg. LLF: 156.49902958248327
Iteration: 15, Func. Count: 142, Neg. LLF: 156.49901763650777
Iteration: 16, Func. Count: 151, Neg. LLF: 156.49901094393837
Iteration: 17, Func. Count: 160, Neg. LLF: 156.49900953908838
Iteration: 18, Func. Count: 168, Neg. LLF: 156.49900953911762
Optimization terminated successfully (Exit mode 0)
Current function value: 156.49900953908838
Iterations: 18
Function evaluations: 168
Gradient evaluations: 18
Iteration: 1, Func. Count: 11, Neg. LLF: 282.22859185316184
Iteration: 2, Func. Count: 22, Neg. LLF: 182.91701033445935
Iteration: 3, Func. Count: 33, Neg. LLF: 173.58364007219632
Iteration: 4, Func. Count: 44, Neg. LLF: 161.03387064547087
Iteration: 5, Func. Count: 55, Neg. LLF: 155.0988717522144
Iteration: 6, Func. Count: 65, Neg. LLF: 154.9025178620106
Iteration: 7, Func. Count: 75, Neg. LLF: 154.8576392201722
Iteration: 8, Func. Count: 85, Neg. LLF: 154.83288597833302
Iteration: 9, Func. Count: 95, Neg. LLF: 154.81277700072744
Iteration: 10, Func. Count: 105, Neg. LLF: 154.80066005092135
Iteration: 11, Func. Count: 115, Neg. LLF: 154.7970033302287
Iteration: 12, Func. Count: 125, Neg. LLF: 154.79590516514165
Iteration: 13, Func. Count: 135, Neg. LLF: 154.79554918533177
Iteration: 14, Func. Count: 145, Neg. LLF: 154.79535421924416
Iteration: 15, Func. Count: 155, Neg. LLF: 154.7952442691741
Iteration: 16, Func. Count: 165, Neg. LLF: 154.79522307171123
Iteration: 17, Func. Count: 175, Neg. LLF: 154.79522168167458
Iteration: 18, Func. Count: 184, Neg. LLF: 154.7952216816643
Optimization terminated successfully (Exit mode 0)
Current function value: 154.79522168167458
Iterations: 18
Function evaluations: 184
Gradient evaluations: 18
Iteration: 1, Func. Count: 12, Neg. LLF: 168.62285087811546
Iteration: 2, Func. Count: 24, Neg. LLF: 187.56074593795393
Iteration: 3, Func. Count: 36, Neg. LLF: 167.62709058289792
Iteration: 4, Func. Count: 48, Neg. LLF: 166.28879021747693
Iteration: 5, Func. Count: 60, Neg. LLF: 155.02391417198697
Iteration: 6, Func. Count: 71, Neg. LLF: 158.14096666615976
Iteration: 7, Func. Count: 84, Neg. LLF: 155.80228853968336
Iteration: 8, Func. Count: 96, Neg. LLF: 154.84332680243375
Iteration: 9, Func. Count: 107, Neg. LLF: 154.82048376304843
Iteration: 10, Func. Count: 118, Neg. LLF: 154.80574989515696
Iteration: 11, Func. Count: 129, Neg. LLF: 154.79602035392827
Iteration: 12, Func. Count: 140, Neg. LLF: 154.7953285894032
Iteration: 13, Func. Count: 151, Neg. LLF: 154.79520410312858
Iteration: 14, Func. Count: 162, Neg. LLF: 154.79507325839987
Iteration: 15, Func. Count: 173, Neg. LLF: 154.7950262781616
Iteration: 16, Func. Count: 184, Neg. LLF: 154.79501756263048
Iteration: 17, Func. Count: 194, Neg. LLF: 154.79501756268954
Optimization terminated successfully (Exit mode 0)
Current function value: 154.79501756263048
Iterations: 17
Function evaluations: 194
Gradient evaluations: 17
Iteration: 1, Func. Count: 5, Neg. LLF: 174.22256788542944
Iteration: 2, Func. Count: 9, Neg. LLF: 174.1861025114287
Iteration: 3, Func. Count: 14, Neg. LLF: 173.80062994554206
Iteration: 4, Func. Count: 18, Neg. LLF: 173.7510041256562
Iteration: 5, Func. Count: 22, Neg. LLF: 173.74311449978515
Iteration: 6, Func. Count: 26, Neg. LLF: 173.72669919677014
Iteration: 7, Func. Count: 30, Neg. LLF: 173.6642631500011
Iteration: 8, Func. Count: 34, Neg. LLF: 173.5960502544509
Iteration: 9, Func. Count: 38, Neg. LLF: 173.53653972952495
Iteration: 10, Func. Count: 42, Neg. LLF: 173.52585514153813
Iteration: 11, Func. Count: 46, Neg. LLF: 173.52514192820797
Iteration: 12, Func. Count: 50, Neg. LLF: 173.52508522300258
Iteration: 13, Func. Count: 54, Neg. LLF: 173.52508208191708
Iteration: 14, Func. Count: 57, Neg. LLF: 173.52508208191722
Optimization terminated successfully (Exit mode 0)
Current function value: 173.52508208191708
Iterations: 14
Function evaluations: 57
Gradient evaluations: 14
Iteration: 1, Func. Count: 6, Neg. LLF: 257.9938722051909
Iteration: 2, Func. Count: 12, Neg. LLF: 157.68748492271362
Iteration: 3, Func. Count: 17, Neg. LLF: 287.8015174090471
Iteration: 4, Func. Count: 24, Neg. LLF: 162.109616922351
Iteration: 5, Func. Count: 30, Neg. LLF: 157.26624197128186
Iteration: 6, Func. Count: 35, Neg. LLF: 157.26063377854487
Iteration: 7, Func. Count: 40, Neg. LLF: 157.26004147072396
Iteration: 8, Func. Count: 45, Neg. LLF: 157.26003941469082
Iteration: 9, Func. Count: 50, Neg. LLF: 157.26003850699456
Optimization terminated successfully (Exit mode 0)
Current function value: 157.26003850699456
Iterations: 9
Function evaluations: 50
Gradient evaluations: 9
Iteration: 1, Func. Count: 7, Neg. LLF: 235.31155137306794
Iteration: 2, Func. Count: 14, Neg. LLF: 158.41836216578128
Iteration: 3, Func. Count: 20, Neg. LLF: 160.91618686557953
Iteration: 4, Func. Count: 27, Neg. LLF: 170.19519678918056
Iteration: 5, Func. Count: 34, Neg. LLF: 157.30462377948916
Iteration: 6, Func. Count: 40, Neg. LLF: 157.26179686087653
Iteration: 7, Func. Count: 46, Neg. LLF: 157.26019847365117
Iteration: 8, Func. Count: 52, Neg. LLF: 157.26003871462012
Iteration: 9, Func. Count: 57, Neg. LLF: 157.26003875111383
Optimization terminated successfully (Exit mode 0)
Current function value: 157.26003871462012
Iterations: 9
Function evaluations: 57
Gradient evaluations: 9
Iteration: 1, Func. Count: 8, Neg. LLF: 203.59882655278744
Iteration: 2, Func. Count: 16, Neg. LLF: 158.88802411852436
Iteration: 3, Func. Count: 23, Neg. LLF: 158.08889070514655
Iteration: 4, Func. Count: 30, Neg. LLF: 158.8419378872475
Iteration: 5, Func. Count: 38, Neg. LLF: 157.5714580779787
Iteration: 6, Func. Count: 45, Neg. LLF: 157.52384961919722
Iteration: 7, Func. Count: 53, Neg. LLF: 157.26135936786343
Iteration: 8, Func. Count: 60, Neg. LLF: 157.26027855811142
Iteration: 9, Func. Count: 67, Neg. LLF: 157.26004237244277
Iteration: 10, Func. Count: 74, Neg. LLF: 157.26003855139044
Iteration: 11, Func. Count: 80, Neg. LLF: 157.26003866828557
Optimization terminated successfully (Exit mode 0)
Current function value: 157.26003855139044
Iterations: 11
Function evaluations: 80
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 203.00543145801637
Iteration: 2, Func. Count: 18, Neg. LLF: 158.96284992281596
Iteration: 3, Func. Count: 26, Neg. LLF: 158.32055823808878
Iteration: 4, Func. Count: 34, Neg. LLF: 157.7707029595167
Iteration: 5, Func. Count: 42, Neg. LLF: 157.4851784974494
Iteration: 6, Func. Count: 50, Neg. LLF: 157.43273609213142
Iteration: 7, Func. Count: 58, Neg. LLF: 157.29732431543303
Iteration: 8, Func. Count: 66, Neg. LLF: 157.26543090034343
Iteration: 9, Func. Count: 74, Neg. LLF: 157.26049097557578
Iteration: 10, Func. Count: 82, Neg. LLF: 157.26004168829934
Iteration: 11, Func. Count: 90, Neg. LLF: 157.2600385556021
Iteration: 12, Func. Count: 97, Neg. LLF: 157.26003867580073
Optimization terminated successfully (Exit mode 0)
Current function value: 157.2600385556021
Iterations: 12
Function evaluations: 97
Gradient evaluations: 12
Iteration: 1, Func. Count: 6, Neg. LLF: 172.83110490954454
Iteration: 2, Func. Count: 11, Neg. LLF: 171.93472901238425
Iteration: 3, Func. Count: 16, Neg. LLF: 171.27509371688382
Iteration: 4, Func. Count: 21, Neg. LLF: 172.14115811200912
Iteration: 5, Func. Count: 27, Neg. LLF: 171.1674843965683
Iteration: 6, Func. Count: 32, Neg. LLF: 171.09407066320324
Iteration: 7, Func. Count: 37, Neg. LLF: 171.05945967237662
Iteration: 8, Func. Count: 42, Neg. LLF: 170.9544725953371
Iteration: 9, Func. Count: 47, Neg. LLF: 170.9072950624067
Iteration: 10, Func. Count: 52, Neg. LLF: 170.90176713605993
Iteration: 11, Func. Count: 57, Neg. LLF: 170.90146377654457
Iteration: 12, Func. Count: 62, Neg. LLF: 170.9014528900063
Iteration: 13, Func. Count: 67, Neg. LLF: 170.90145198613976
Optimization terminated successfully (Exit mode 0)
Current function value: 170.90145198613976
Iterations: 13
Function evaluations: 67
Gradient evaluations: 13
Iteration: 1, Func. Count: 7, Neg. LLF: 221.13887398718816
Iteration: 2, Func. Count: 14, Neg. LLF: 157.45267496197945
Iteration: 3, Func. Count: 20, Neg. LLF: 162.48987507875023
Iteration: 4, Func. Count: 27, Neg. LLF: 157.10108878767232
Iteration: 5, Func. Count: 33, Neg. LLF: 157.07813916576492
Iteration: 6, Func. Count: 39, Neg. LLF: 157.0704445271753
Iteration: 7, Func. Count: 45, Neg. LLF: 157.06366463236594
Iteration: 8, Func. Count: 51, Neg. LLF: 157.0632380037965
Iteration: 9, Func. Count: 57, Neg. LLF: 157.0632154642844
Iteration: 10, Func. Count: 63, Neg. LLF: 157.06321479954585
Optimization terminated successfully (Exit mode 0)
Current function value: 157.06321479954585
Iterations: 10
Function evaluations: 63
Gradient evaluations: 10
Iteration: 1, Func. Count: 8, Neg. LLF: 249.5185428247718
Iteration: 2, Func. Count: 16, Neg. LLF: 163.92854003017166
Iteration: 3, Func. Count: 24, Neg. LLF: 159.0556622688887
Iteration: 4, Func. Count: 32, Neg. LLF: 160.6663458054287
Iteration: 5, Func. Count: 40, Neg. LLF: 157.11557570355174
Iteration: 6, Func. Count: 47, Neg. LLF: 157.0844852618545
Iteration: 7, Func. Count: 54, Neg. LLF: 157.06411594119808
Iteration: 8, Func. Count: 61, Neg. LLF: 157.06326607139428
Iteration: 9, Func. Count: 68, Neg. LLF: 157.06321994968818
Iteration: 10, Func. Count: 75, Neg. LLF: 157.06321488167646
Iteration: 11, Func. Count: 81, Neg. LLF: 157.06321491880175
Optimization terminated successfully (Exit mode 0)
Current function value: 157.06321488167646
Iterations: 11
Function evaluations: 81
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 240.50010995384739
Iteration: 2, Func. Count: 18, Neg. LLF: 158.63123895799072
Iteration: 3, Func. Count: 26, Neg. LLF: 162.71563130174087
Iteration: 4, Func. Count: 35, Neg. LLF: 170.24911360318026
Iteration: 5, Func. Count: 44, Neg. LLF: 161.2934057700282
Iteration: 6, Func. Count: 53, Neg. LLF: 157.6573110911313
Iteration: 7, Func. Count: 61, Neg. LLF: 157.2721823727162
Iteration: 8, Func. Count: 69, Neg. LLF: 157.14369880065502
Iteration: 9, Func. Count: 77, Neg. LLF: 157.07250603352634
Iteration: 10, Func. Count: 85, Neg. LLF: 157.06753618616875
Iteration: 11, Func. Count: 93, Neg. LLF: 157.0634344135944
Iteration: 12, Func. Count: 101, Neg. LLF: 157.0632775863323
Iteration: 13, Func. Count: 109, Neg. LLF: 157.06322464646522
Iteration: 14, Func. Count: 117, Neg. LLF: 157.06321492048568
Iteration: 15, Func. Count: 124, Neg. LLF: 157.06321503809824
Optimization terminated successfully (Exit mode 0)
Current function value: 157.06321492048568
Iterations: 15
Function evaluations: 124
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 238.7401792163191
Iteration: 2, Func. Count: 20, Neg. LLF: 158.76742295745748
Iteration: 3, Func. Count: 29, Neg. LLF: 160.55096147714173
Iteration: 4, Func. Count: 39, Neg. LLF: 168.43688904371498
Iteration: 5, Func. Count: 49, Neg. LLF: 162.34271232554687
Iteration: 6, Func. Count: 59, Neg. LLF: 157.70399515415923
Iteration: 7, Func. Count: 68, Neg. LLF: 157.30124970317695
Iteration: 8, Func. Count: 77, Neg. LLF: 157.1515176131117
Iteration: 9, Func. Count: 86, Neg. LLF: 157.08452869349765
Iteration: 10, Func. Count: 95, Neg. LLF: 157.0693360198978
Iteration: 11, Func. Count: 104, Neg. LLF: 157.06366665491382
Iteration: 12, Func. Count: 113, Neg. LLF: 157.06332046678736
Iteration: 13, Func. Count: 122, Neg. LLF: 157.06323648539777
Iteration: 14, Func. Count: 131, Neg. LLF: 157.06321485482604
Iteration: 15, Func. Count: 139, Neg. LLF: 157.0632149634695
Optimization terminated successfully (Exit mode 0)
Current function value: 157.06321485482604
Iterations: 15
Function evaluations: 139
Gradient evaluations: 15
Iteration: 1, Func. Count: 7, Neg. LLF: 178.79141474505172
Iteration: 2, Func. Count: 15, Neg. LLF: 168.1622879693705
Iteration: 3, Func. Count: 22, Neg. LLF: 165.9456761937007
Iteration: 4, Func. Count: 29, Neg. LLF: 163.96673239356758
Iteration: 5, Func. Count: 35, Neg. LLF: 163.78482451343393
Iteration: 6, Func. Count: 41, Neg. LLF: 163.05992458925883
Iteration: 7, Func. Count: 47, Neg. LLF: 162.70211145439794
Iteration: 8, Func. Count: 53, Neg. LLF: 162.25392763396064
Iteration: 9, Func. Count: 59, Neg. LLF: 165.82966584476097
Iteration: 10, Func. Count: 66, Neg. LLF: 161.98376018614815
Iteration: 11, Func. Count: 73, Neg. LLF: 161.29840688301562
Iteration: 12, Func. Count: 79, Neg. LLF: 162.7909296605535
Iteration: 13, Func. Count: 86, Neg. LLF: 161.07767799591912
Iteration: 14, Func. Count: 92, Neg. LLF: 160.98834775762762
Iteration: 15, Func. Count: 98, Neg. LLF: 160.9065370549507
Iteration: 16, Func. Count: 104, Neg. LLF: 160.8991224609451
Iteration: 17, Func. Count: 110, Neg. LLF: 160.89232070302924
Iteration: 18, Func. Count: 116, Neg. LLF: 160.892231972486
Iteration: 19, Func. Count: 122, Neg. LLF: 160.89222780375044
Iteration: 20, Func. Count: 127, Neg. LLF: 160.89222778433992
Optimization terminated successfully (Exit mode 0)
Current function value: 160.89222780375044
Iterations: 20
Function evaluations: 127
Gradient evaluations: 20
Iteration: 1, Func. Count: 8, Neg. LLF: 516.0202510725768
Iteration: 2, Func. Count: 16, Neg. LLF: 160.87347519303563
Iteration: 3, Func. Count: 24, Neg. LLF: 206.12634147036917
Iteration: 4, Func. Count: 32, Neg. LLF: 155.63247291791
Iteration: 5, Func. Count: 39, Neg. LLF: 224.527232435122
Iteration: 6, Func. Count: 48, Neg. LLF: 155.59380895449402
Iteration: 7, Func. Count: 55, Neg. LLF: 155.58225300020223
Iteration: 8, Func. Count: 62, Neg. LLF: 155.58208363510153
Iteration: 9, Func. Count: 69, Neg. LLF: 155.58203371615895
Iteration: 10, Func. Count: 76, Neg. LLF: 155.58203047492054
Iteration: 11, Func. Count: 82, Neg. LLF: 155.5820304218309
Optimization terminated successfully (Exit mode 0)
Current function value: 155.58203047492054
Iterations: 11
Function evaluations: 82
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 541.404586211263
Iteration: 2, Func. Count: 18, Neg. LLF: 169.16531599004765
Iteration: 3, Func. Count: 27, Neg. LLF: 156.05235061464197
Iteration: 4, Func. Count: 35, Neg. LLF: 156.72213631069928
Iteration: 5, Func. Count: 44, Neg. LLF: 187.27033812307297
Iteration: 6, Func. Count: 53, Neg. LLF: 155.61381216027956
Iteration: 7, Func. Count: 61, Neg. LLF: 155.58993752267222
Iteration: 8, Func. Count: 69, Neg. LLF: 155.58272674185656
Iteration: 9, Func. Count: 77, Neg. LLF: 155.58222284610272
Iteration: 10, Func. Count: 85, Neg. LLF: 155.5821266063127
Iteration: 11, Func. Count: 93, Neg. LLF: 155.58203099012283
Iteration: 12, Func. Count: 101, Neg. LLF: 155.58203010936938
Optimization terminated successfully (Exit mode 0)
Current function value: 155.58203010936938
Iterations: 12
Function evaluations: 101
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 526.8761498502779
Iteration: 2, Func. Count: 20, Neg. LLF: 166.04260291667478
Iteration: 3, Func. Count: 30, Neg. LLF: 156.82481264664466
Iteration: 4, Func. Count: 39, Neg. LLF: 157.1130157509689
Iteration: 5, Func. Count: 49, Neg. LLF: 194.10274059921196
Iteration: 6, Func. Count: 59, Neg. LLF: 155.8946087986357
Iteration: 7, Func. Count: 68, Neg. LLF: 155.65450136099963
Iteration: 8, Func. Count: 77, Neg. LLF: 155.63466125231594
Iteration: 9, Func. Count: 86, Neg. LLF: 155.59397679464095
Iteration: 10, Func. Count: 95, Neg. LLF: 155.58688353908312
Iteration: 11, Func. Count: 104, Neg. LLF: 155.5835668490655
Iteration: 12, Func. Count: 113, Neg. LLF: 155.58232352917685
Iteration: 13, Func. Count: 122, Neg. LLF: 155.58208521585203
Iteration: 14, Func. Count: 131, Neg. LLF: 155.5820332866582
Iteration: 15, Func. Count: 140, Neg. LLF: 155.58203011893636
Iteration: 16, Func. Count: 148, Neg. LLF: 155.58203015080835
Optimization terminated successfully (Exit mode 0)
Current function value: 155.58203011893636
Iterations: 16
Function evaluations: 148
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 280.8955184065835
Iteration: 2, Func. Count: 22, Neg. LLF: 187.64718036168966
Iteration: 3, Func. Count: 33, Neg. LLF: 190.82173293750182
Iteration: 4, Func. Count: 44, Neg. LLF: 158.90896826286667
Iteration: 5, Func. Count: 55, Neg. LLF: 156.66293102245623
Iteration: 6, Func. Count: 65, Neg. LLF: 196.50188567199388
Iteration: 7, Func. Count: 76, Neg. LLF: 155.89974545622758
Iteration: 8, Func. Count: 86, Neg. LLF: 155.82863448752968
Iteration: 9, Func. Count: 96, Neg. LLF: 155.67810942016587
Iteration: 10, Func. Count: 106, Neg. LLF: 155.62688906126291
Iteration: 11, Func. Count: 116, Neg. LLF: 155.59481975362087
Iteration: 12, Func. Count: 126, Neg. LLF: 155.58440501173584
Iteration: 13, Func. Count: 136, Neg. LLF: 155.58212059641764
Iteration: 14, Func. Count: 146, Neg. LLF: 155.5820313468257
Iteration: 15, Func. Count: 156, Neg. LLF: 155.5820300123853
Iteration: 16, Func. Count: 165, Neg. LLF: 155.58203004314382
Optimization terminated successfully (Exit mode 0)
Current function value: 155.5820300123853
Iterations: 16
Function evaluations: 165
Gradient evaluations: 16
Iteration: 1, Func. Count: 8, Neg. LLF: 161.68519076490793
Iteration: 2, Func. Count: 16, Neg. LLF: 165.36304634051064
Iteration: 3, Func. Count: 24, Neg. LLF: 159.1436181669818
Iteration: 4, Func. Count: 32, Neg. LLF: 157.39373290553942
Iteration: 5, Func. Count: 39, Neg. LLF: 157.38896504436192
Iteration: 6, Func. Count: 47, Neg. LLF: 157.29525337164196
Iteration: 7, Func. Count: 54, Neg. LLF: 157.19229534544263
Iteration: 8, Func. Count: 61, Neg. LLF: 158.28118367081765
Iteration: 9, Func. Count: 69, Neg. LLF: 156.8845067426879
Iteration: 10, Func. Count: 76, Neg. LLF: 156.49978930429305
Iteration: 11, Func. Count: 83, Neg. LLF: 156.11535421676143
Iteration: 12, Func. Count: 90, Neg. LLF: 156.03998469621672
Iteration: 13, Func. Count: 97, Neg. LLF: 156.03442824268646
Iteration: 14, Func. Count: 104, Neg. LLF: 156.03215161360333
Iteration: 15, Func. Count: 111, Neg. LLF: 156.02925808970735
Iteration: 16, Func. Count: 118, Neg. LLF: 156.0279185033504
Iteration: 17, Func. Count: 125, Neg. LLF: 156.02777255910013
Iteration: 18, Func. Count: 132, Neg. LLF: 156.02776547488133
Iteration: 19, Func. Count: 138, Neg. LLF: 156.02776546520974
Optimization terminated successfully (Exit mode 0)
Current function value: 156.02776547488133
Iterations: 19
Function evaluations: 138
Gradient evaluations: 19
Iteration: 1, Func. Count: 9, Neg. LLF: 561.4470170017448
Iteration: 2, Func. Count: 18, Neg. LLF: 204.4504765683294
Iteration: 3, Func. Count: 27, Neg. LLF: 167.04086547469493
Iteration: 4, Func. Count: 36, Neg. LLF: 155.47811979926874
Iteration: 5, Func. Count: 44, Neg. LLF: 193.90469107197035
Iteration: 6, Func. Count: 53, Neg. LLF: 155.37228769952702
Iteration: 7, Func. Count: 62, Neg. LLF: 155.16518785398605
Iteration: 8, Func. Count: 70, Neg. LLF: 155.13968316439937
Iteration: 9, Func. Count: 78, Neg. LLF: 155.13321420708914
Iteration: 10, Func. Count: 86, Neg. LLF: 155.1327298490429
Iteration: 11, Func. Count: 94, Neg. LLF: 155.13270717301035
Iteration: 12, Func. Count: 102, Neg. LLF: 155.1327064311547
Optimization terminated successfully (Exit mode 0)
Current function value: 155.1327064311547
Iterations: 12
Function evaluations: 102
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 540.1618925386721
Iteration: 2, Func. Count: 20, Neg. LLF: 166.9956848376551
Iteration: 3, Func. Count: 30, Neg. LLF: 165.55362737497427
Iteration: 4, Func. Count: 40, Neg. LLF: 156.24404850715914
Iteration: 5, Func. Count: 50, Neg. LLF: 155.30704474656295
Iteration: 6, Func. Count: 60, Neg. LLF: 154.83085308666793
Iteration: 7, Func. Count: 69, Neg. LLF: 155.11049036795052
Iteration: 8, Func. Count: 79, Neg. LLF: 154.7821532723192
Iteration: 9, Func. Count: 88, Neg. LLF: 154.76648455838037
Iteration: 10, Func. Count: 97, Neg. LLF: 154.76390054337594
Iteration: 11, Func. Count: 106, Neg. LLF: 154.76326908860267
Iteration: 12, Func. Count: 115, Neg. LLF: 154.76305065901246
Iteration: 13, Func. Count: 124, Neg. LLF: 154.76304695721743
Iteration: 14, Func. Count: 132, Neg. LLF: 154.76304694072113
Optimization terminated successfully (Exit mode 0)
Current function value: 154.76304695721743
Iterations: 14
Function evaluations: 132
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 285.17499344702094
Iteration: 2, Func. Count: 22, Neg. LLF: 191.43656948349525
Iteration: 3, Func. Count: 33, Neg. LLF: 172.91179511565133
Iteration: 4, Func. Count: 44, Neg. LLF: 167.3881029844552
Iteration: 5, Func. Count: 55, Neg. LLF: 158.59545921359722
Iteration: 6, Func. Count: 66, Neg. LLF: 153.99880915727957
Iteration: 7, Func. Count: 76, Neg. LLF: 153.698558200194
Iteration: 8, Func. Count: 86, Neg. LLF: 153.6377810305141
Iteration: 9, Func. Count: 96, Neg. LLF: 153.59451514737634
Iteration: 10, Func. Count: 106, Neg. LLF: 153.59191778028256
Iteration: 11, Func. Count: 116, Neg. LLF: 153.59029442846492
Iteration: 12, Func. Count: 126, Neg. LLF: 153.59002018530424
Iteration: 13, Func. Count: 136, Neg. LLF: 153.58993561620284
Iteration: 14, Func. Count: 146, Neg. LLF: 153.58992248599802
Iteration: 15, Func. Count: 156, Neg. LLF: 153.58992081121542
Iteration: 16, Func. Count: 165, Neg. LLF: 153.58992079997324
Optimization terminated successfully (Exit mode 0)
Current function value: 153.58992081121542
Iterations: 16
Function evaluations: 165
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 282.28445825181416
Iteration: 2, Func. Count: 24, Neg. LLF: 191.27090192674677
Iteration: 3, Func. Count: 36, Neg. LLF: 171.77810971651027
Iteration: 4, Func. Count: 48, Neg. LLF: 168.75739312245204
Iteration: 5, Func. Count: 60, Neg. LLF: 158.45707279096987
Iteration: 6, Func. Count: 72, Neg. LLF: 153.9659526249417
Iteration: 7, Func. Count: 83, Neg. LLF: 153.72808200020344
Iteration: 8, Func. Count: 94, Neg. LLF: 153.70024056757697
Iteration: 9, Func. Count: 105, Neg. LLF: 153.6382072665452
Iteration: 10, Func. Count: 116, Neg. LLF: 153.6220274629723
Iteration: 11, Func. Count: 127, Neg. LLF: 153.59665018836756
Iteration: 12, Func. Count: 138, Neg. LLF: 153.59064448279625
Iteration: 13, Func. Count: 149, Neg. LLF: 153.5899813956455
Iteration: 14, Func. Count: 160, Neg. LLF: 153.5899231307995
Iteration: 15, Func. Count: 171, Neg. LLF: 153.58992102252958
Iteration: 16, Func. Count: 181, Neg. LLF: 153.58992111473364
Optimization terminated successfully (Exit mode 0)
Current function value: 153.58992102252958
Iterations: 16
Function evaluations: 181
Gradient evaluations: 16
Iteration: 1, Func. Count: 9, Neg. LLF: 163.24071440064344
Iteration: 2, Func. Count: 18, Neg. LLF: 181.14555495398682
Iteration: 3, Func. Count: 27, Neg. LLF: 160.052943499713
Iteration: 4, Func. Count: 35, Neg. LLF: 159.8529520546972
Iteration: 5, Func. Count: 43, Neg. LLF: 159.53930553445326
Iteration: 6, Func. Count: 51, Neg. LLF: 159.23115656606254
Iteration: 7, Func. Count: 59, Neg. LLF: 158.5309402209891
Iteration: 8, Func. Count: 67, Neg. LLF: 158.08629803595412
Iteration: 9, Func. Count: 75, Neg. LLF: 157.520111670272
Iteration: 10, Func. Count: 83, Neg. LLF: 159.49268569689139
Iteration: 11, Func. Count: 93, Neg. LLF: 170.63840383806547
Iteration: 12, Func. Count: 102, Neg. LLF: 169.5751963832149
Iteration: 13, Func. Count: 111, Neg. LLF: 162.10160952020564
Iteration: 14, Func. Count: 120, Neg. LLF: 160.63174196687038
Iteration: 15, Func. Count: 129, Neg. LLF: 158.62267206915763
Iteration: 16, Func. Count: 138, Neg. LLF: 156.67315653214607
Iteration: 17, Func. Count: 147, Neg. LLF: 156.35237197431107
Iteration: 18, Func. Count: 155, Neg. LLF: 156.25771129980944
Iteration: 19, Func. Count: 163, Neg. LLF: 156.14214452926788
Iteration: 20, Func. Count: 171, Neg. LLF: 156.10615156513953
Iteration: 21, Func. Count: 179, Neg. LLF: 156.08805434480138
Iteration: 22, Func. Count: 187, Neg. LLF: 156.0716223368517
Iteration: 23, Func. Count: 195, Neg. LLF: 156.07223164585858
Iteration: 24, Func. Count: 204, Neg. LLF: 156.03473481260104
Iteration: 25, Func. Count: 212, Neg. LLF: 156.0283167536028
Iteration: 26, Func. Count: 220, Neg. LLF: 156.02573111787413
Iteration: 27, Func. Count: 228, Neg. LLF: 156.02569345596717
Iteration: 28, Func. Count: 236, Neg. LLF: 156.02569105223563
Iteration: 29, Func. Count: 243, Neg. LLF: 156.0256910423507
Optimization terminated successfully (Exit mode 0)
Current function value: 156.02569105223563
Iterations: 29
Function evaluations: 243
Gradient evaluations: 29
Iteration: 1, Func. Count: 10, Neg. LLF: 560.739869618777
Iteration: 2, Func. Count: 20, Neg. LLF: 178.86306093189185
Iteration: 3, Func. Count: 30, Neg. LLF: 165.3118151885795
Iteration: 4, Func. Count: 40, Neg. LLF: 155.32193069933894
Iteration: 5, Func. Count: 49, Neg. LLF: 160.8977174726788
Iteration: 6, Func. Count: 59, Neg. LLF: 155.91665113889167
Iteration: 7, Func. Count: 69, Neg. LLF: 155.16875935413321
Iteration: 8, Func. Count: 78, Neg. LLF: 155.13557021777098
Iteration: 9, Func. Count: 87, Neg. LLF: 155.13328906678905
Iteration: 10, Func. Count: 96, Neg. LLF: 155.13275285150488
Iteration: 11, Func. Count: 105, Neg. LLF: 155.13271075983377
Iteration: 12, Func. Count: 114, Neg. LLF: 155.13270654644808
Iteration: 13, Func. Count: 122, Neg. LLF: 155.13270650919745
Optimization terminated successfully (Exit mode 0)
Current function value: 155.13270654644808
Iterations: 13
Function evaluations: 122
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 287.2331742797121
Iteration: 2, Func. Count: 22, Neg. LLF: 191.72077666762917
Iteration: 3, Func. Count: 33, Neg. LLF: 175.17030552409608
Iteration: 4, Func. Count: 44, Neg. LLF: 164.76335290217034
Iteration: 5, Func. Count: 55, Neg. LLF: 158.82251156815974
Iteration: 6, Func. Count: 66, Neg. LLF: 155.22495444306895
Iteration: 7, Func. Count: 76, Neg. LLF: 155.11436108477054
Iteration: 8, Func. Count: 87, Neg. LLF: 155.09732516324942
Iteration: 9, Func. Count: 98, Neg. LLF: 154.8450264413244
Iteration: 10, Func. Count: 108, Neg. LLF: 154.8002813969891
Iteration: 11, Func. Count: 118, Neg. LLF: 154.78204008302043
Iteration: 12, Func. Count: 128, Neg. LLF: 154.7723565217074
Iteration: 13, Func. Count: 138, Neg. LLF: 154.76460481741054
Iteration: 14, Func. Count: 148, Neg. LLF: 154.7635861496877
Iteration: 15, Func. Count: 158, Neg. LLF: 154.76310349897253
Iteration: 16, Func. Count: 168, Neg. LLF: 154.76306455102264
Iteration: 17, Func. Count: 178, Neg. LLF: 154.76304754474063
Iteration: 18, Func. Count: 187, Neg. LLF: 154.76304752812072
Optimization terminated successfully (Exit mode 0)
Current function value: 154.76304754474063
Iterations: 18
Function evaluations: 187
Gradient evaluations: 18
Iteration: 1, Func. Count: 12, Neg. LLF: 282.9013814974968
Iteration: 2, Func. Count: 24, Neg. LLF: 191.40388124814777
Iteration: 3, Func. Count: 36, Neg. LLF: 172.4078191704781
Iteration: 4, Func. Count: 48, Neg. LLF: 167.3411597585638
Iteration: 5, Func. Count: 60, Neg. LLF: 158.80492200159102
Iteration: 6, Func. Count: 72, Neg. LLF: 153.92292954373886
Iteration: 7, Func. Count: 83, Neg. LLF: 153.6963225620418
Iteration: 8, Func. Count: 94, Neg. LLF: 153.66397095224156
Iteration: 9, Func. Count: 105, Neg. LLF: 153.61742006615478
Iteration: 10, Func. Count: 116, Neg. LLF: 153.60517570563348
Iteration: 11, Func. Count: 127, Neg. LLF: 153.5924595748577
Iteration: 12, Func. Count: 138, Neg. LLF: 153.59033548698082
Iteration: 13, Func. Count: 149, Neg. LLF: 153.58998325692076
Iteration: 14, Func. Count: 160, Neg. LLF: 153.5899401944307
Iteration: 15, Func. Count: 171, Neg. LLF: 153.5899267140059
Iteration: 16, Func. Count: 182, Neg. LLF: 153.58992263617748
Iteration: 17, Func. Count: 193, Neg. LLF: 153.58992108063126
Iteration: 18, Func. Count: 203, Neg. LLF: 153.58992106950834
Optimization terminated successfully (Exit mode 0)
Current function value: 153.58992108063126
Iterations: 18
Function evaluations: 203
Gradient evaluations: 18
Iteration: 1, Func. Count: 13, Neg. LLF: 279.7537659411375
Iteration: 2, Func. Count: 26, Neg. LLF: 191.14566941054503
Iteration: 3, Func. Count: 39, Neg. LLF: 171.6732563338604
Iteration: 4, Func. Count: 52, Neg. LLF: 168.18192009790698
Iteration: 5, Func. Count: 65, Neg. LLF: 158.58937162064043
Iteration: 6, Func. Count: 78, Neg. LLF: 153.89448863013678
Iteration: 7, Func. Count: 90, Neg. LLF: 153.6830375426379
Iteration: 8, Func. Count: 102, Neg. LLF: 153.63192915697834
Iteration: 9, Func. Count: 114, Neg. LLF: 153.5970118649172
Iteration: 10, Func. Count: 126, Neg. LLF: 153.59165496665727
Iteration: 11, Func. Count: 138, Neg. LLF: 153.59030699571093
Iteration: 12, Func. Count: 150, Neg. LLF: 153.5900510115552
Iteration: 13, Func. Count: 162, Neg. LLF: 153.58998726071016
Iteration: 14, Func. Count: 174, Neg. LLF: 153.58992687477775
Iteration: 15, Func. Count: 186, Neg. LLF: 153.58992165285136
Iteration: 16, Func. Count: 197, Neg. LLF: 153.5899217448556
Optimization terminated successfully (Exit mode 0)
Current function value: 153.58992165285136
Iterations: 16
Function evaluations: 197
Gradient evaluations: 16
Iteration: 1, Func. Count: 6, Neg. LLF: 165.10488318959162
Iteration: 2, Func. Count: 12, Neg. LLF: 164.32924274340286
Iteration: 3, Func. Count: 19, Neg. LLF: 162.90038887486548
Iteration: 4, Func. Count: 24, Neg. LLF: 162.72434437123863
Iteration: 5, Func. Count: 29, Neg. LLF: 162.24203492267262
Iteration: 6, Func. Count: 34, Neg. LLF: 161.52617132182704
Iteration: 7, Func. Count: 39, Neg. LLF: 157.7950329075596
Iteration: 8, Func. Count: 44, Neg. LLF: 169.44459425176598
Iteration: 9, Func. Count: 50, Neg. LLF: 157.42155028324896
Iteration: 10, Func. Count: 55, Neg. LLF: 157.31528527852225
Iteration: 11, Func. Count: 60, Neg. LLF: 157.23351016958733
Iteration: 12, Func. Count: 65, Neg. LLF: 157.16779462702456
Iteration: 13, Func. Count: 70, Neg. LLF: 157.13412989773153
Iteration: 14, Func. Count: 75, Neg. LLF: 157.13345350525793
Iteration: 15, Func. Count: 80, Neg. LLF: 157.13344294553121
Iteration: 16, Func. Count: 84, Neg. LLF: 157.13344291261882
Optimization terminated successfully (Exit mode 0)
Current function value: 157.13344294553121
Iterations: 16
Function evaluations: 84
Gradient evaluations: 16
Iteration: 1, Func. Count: 7, Neg. LLF: 255.24801394636984
Iteration: 2, Func. Count: 14, Neg. LLF: 231.95888129437589
Iteration: 3, Func. Count: 21, Neg. LLF: 186.70583156226246
Iteration: 4, Func. Count: 28, Neg. LLF: 211.60663723177615
Iteration: 5, Func. Count: 35, Neg. LLF: 204.6360854300844
Iteration: 6, Func. Count: 42, Neg. LLF: 155.76582568119863
Iteration: 7, Func. Count: 48, Neg. LLF: 155.56302477372063
Iteration: 8, Func. Count: 54, Neg. LLF: 155.4724794238296
Iteration: 9, Func. Count: 60, Neg. LLF: 155.46928508602258
Iteration: 10, Func. Count: 66, Neg. LLF: 155.46584524637422
Iteration: 11, Func. Count: 72, Neg. LLF: 155.4654337492436
Iteration: 12, Func. Count: 78, Neg. LLF: 155.4653217466886
Iteration: 13, Func. Count: 84, Neg. LLF: 155.4653177975957
Iteration: 14, Func. Count: 89, Neg. LLF: 155.4653177758683
Optimization terminated successfully (Exit mode 0)
Current function value: 155.4653177975957
Iterations: 14
Function evaluations: 89
Gradient evaluations: 14
Iteration: 1, Func. Count: 8, Neg. LLF: 205.85733180549872
Iteration: 2, Func. Count: 16, Neg. LLF: 251.08961162454602
Iteration: 3, Func. Count: 24, Neg. LLF: 160.19388472603285
Iteration: 4, Func. Count: 32, Neg. LLF: 157.74696160839187
Iteration: 5, Func. Count: 40, Neg. LLF: 155.74758072643914
Iteration: 6, Func. Count: 47, Neg. LLF: 155.68519682814681
Iteration: 7, Func. Count: 54, Neg. LLF: 156.12111162704377
Iteration: 8, Func. Count: 62, Neg. LLF: 155.53953387670643
Iteration: 9, Func. Count: 69, Neg. LLF: 155.47424929038493
Iteration: 10, Func. Count: 76, Neg. LLF: 155.46622893543005
Iteration: 11, Func. Count: 83, Neg. LLF: 155.46535248836582
Iteration: 12, Func. Count: 90, Neg. LLF: 155.46532167169465
Iteration: 13, Func. Count: 97, Neg. LLF: 155.46531854033537
Iteration: 14, Func. Count: 104, Neg. LLF: 155.46531775000724
Optimization terminated successfully (Exit mode 0)
Current function value: 155.46531775000724
Iterations: 14
Function evaluations: 104
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 203.0122920357403
Iteration: 2, Func. Count: 18, Neg. LLF: 210.74366360808528
Iteration: 3, Func. Count: 27, Neg. LLF: 162.37377057869222
Iteration: 4, Func. Count: 36, Neg. LLF: 160.4129791622675
Iteration: 5, Func. Count: 45, Neg. LLF: 157.34530811812385
Iteration: 6, Func. Count: 54, Neg. LLF: 155.52023490928002
Iteration: 7, Func. Count: 62, Neg. LLF: 155.47847641523262
Iteration: 8, Func. Count: 70, Neg. LLF: 155.4701145300631
Iteration: 9, Func. Count: 78, Neg. LLF: 155.46794911243913
Iteration: 10, Func. Count: 86, Neg. LLF: 155.4658508903261
Iteration: 11, Func. Count: 94, Neg. LLF: 155.46540644648525
Iteration: 12, Func. Count: 102, Neg. LLF: 155.46532113459494
Iteration: 13, Func. Count: 110, Neg. LLF: 155.46531772125363
Iteration: 14, Func. Count: 117, Neg. LLF: 155.46531776169684
Optimization terminated successfully (Exit mode 0)
Current function value: 155.46531772125363
Iterations: 14
Function evaluations: 117
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 176.4359493024041
Iteration: 2, Func. Count: 20, Neg. LLF: 160.089460748485
Iteration: 3, Func. Count: 30, Neg. LLF: 159.39541993079123
Iteration: 4, Func. Count: 40, Neg. LLF: 160.78601856288387
Iteration: 5, Func. Count: 50, Neg. LLF: 158.99995959473833
Iteration: 6, Func. Count: 60, Neg. LLF: 155.79336076645077
Iteration: 7, Func. Count: 69, Neg. LLF: 155.74136462787612
Iteration: 8, Func. Count: 78, Neg. LLF: 175.4577859066233
Iteration: 9, Func. Count: 88, Neg. LLF: 155.50592078676405
Iteration: 10, Func. Count: 97, Neg. LLF: 155.4875797077971
Iteration: 11, Func. Count: 106, Neg. LLF: 155.46597255492375
Iteration: 12, Func. Count: 115, Neg. LLF: 155.4603017792936
Iteration: 13, Func. Count: 124, Neg. LLF: 155.45490958218198
Iteration: 14, Func. Count: 133, Neg. LLF: 155.45469666726817
Iteration: 15, Func. Count: 142, Neg. LLF: 155.4546870885724
Iteration: 16, Func. Count: 150, Neg. LLF: 155.4546870676916
Optimization terminated successfully (Exit mode 0)
Current function value: 155.4546870885724
Iterations: 16
Function evaluations: 150
Gradient evaluations: 16
Iteration: 1, Func. Count: 7, Neg. LLF: 164.30119928661503
Iteration: 2, Func. Count: 14, Neg. LLF: 160.14157520292733
Iteration: 3, Func. Count: 22, Neg. LLF: 160.21365919813243
Iteration: 4, Func. Count: 29, Neg. LLF: 159.20657021787565
Iteration: 5, Func. Count: 35, Neg. LLF: 159.7617889950977
Iteration: 6, Func. Count: 42, Neg. LLF: 158.63370037864658
Iteration: 7, Func. Count: 48, Neg. LLF: 158.21123058244493
Iteration: 8, Func. Count: 54, Neg. LLF: 157.60508623956633
Iteration: 9, Func. Count: 60, Neg. LLF: 158.83219400734322
Iteration: 10, Func. Count: 67, Neg. LLF: 157.3256981299124
Iteration: 11, Func. Count: 73, Neg. LLF: 157.22753972592372
Iteration: 12, Func. Count: 79, Neg. LLF: 157.10673501072506
Iteration: 13, Func. Count: 85, Neg. LLF: 157.07819678168616
Iteration: 14, Func. Count: 91, Neg. LLF: 157.07362662992762
Iteration: 15, Func. Count: 97, Neg. LLF: 157.07311113424356
Iteration: 16, Func. Count: 103, Neg. LLF: 157.07299813635984
Iteration: 17, Func. Count: 109, Neg. LLF: 157.0729740605804
Iteration: 18, Func. Count: 114, Neg. LLF: 157.0729740812771
Optimization terminated successfully (Exit mode 0)
Current function value: 157.0729740605804
Iterations: 18
Function evaluations: 114
Gradient evaluations: 18
Iteration: 1, Func. Count: 8, Neg. LLF: 205.9810354106315
Iteration: 2, Func. Count: 16, Neg. LLF: 159.27774587361887
Iteration: 3, Func. Count: 24, Neg. LLF: 158.68728710651783
Iteration: 4, Func. Count: 32, Neg. LLF: 159.8939333936159
Iteration: 5, Func. Count: 40, Neg. LLF: 159.7065892989253
Iteration: 6, Func. Count: 48, Neg. LLF: 155.3960436520017
Iteration: 7, Func. Count: 55, Neg. LLF: 155.37016203674673
Iteration: 8, Func. Count: 62, Neg. LLF: 155.364672872519
Iteration: 9, Func. Count: 69, Neg. LLF: 155.36380786932696
Iteration: 10, Func. Count: 76, Neg. LLF: 155.3637508559905
Iteration: 11, Func. Count: 83, Neg. LLF: 155.36374760811964
Iteration: 12, Func. Count: 89, Neg. LLF: 155.36374757589638
Optimization terminated successfully (Exit mode 0)
Current function value: 155.36374760811964
Iterations: 12
Function evaluations: 89
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 199.67879428577953
Iteration: 2, Func. Count: 18, Neg. LLF: 192.42585501406816
Iteration: 3, Func. Count: 27, Neg. LLF: 162.15570526772802
Iteration: 4, Func. Count: 36, Neg. LLF: 184.05728624326147
Iteration: 5, Func. Count: 45, Neg. LLF: 155.90859099224977
Iteration: 6, Func. Count: 53, Neg. LLF: 185.31753599639958
Iteration: 7, Func. Count: 62, Neg. LLF: 159.90177743425892
Iteration: 8, Func. Count: 71, Neg. LLF: 155.3717075754382
Iteration: 9, Func. Count: 79, Neg. LLF: 155.36452579819903
Iteration: 10, Func. Count: 87, Neg. LLF: 155.36385178612096
Iteration: 11, Func. Count: 95, Neg. LLF: 155.36379920162537
Iteration: 12, Func. Count: 103, Neg. LLF: 155.3637565184952
Iteration: 13, Func. Count: 111, Neg. LLF: 155.36375016421385
Iteration: 14, Func. Count: 119, Neg. LLF: 155.36374761910744
Iteration: 15, Func. Count: 126, Neg. LLF: 155.3637476615985
Optimization terminated successfully (Exit mode 0)
Current function value: 155.36374761910744
Iterations: 15
Function evaluations: 126
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 175.85815547311014
Iteration: 2, Func. Count: 20, Neg. LLF: 188.10063424501865
Iteration: 3, Func. Count: 30, Neg. LLF: 159.74920377706164
Iteration: 4, Func. Count: 40, Neg. LLF: 164.48915059882745
Iteration: 5, Func. Count: 50, Neg. LLF: 160.79757415012244
Iteration: 6, Func. Count: 60, Neg. LLF: 158.57301621673912
Iteration: 7, Func. Count: 70, Neg. LLF: 155.43840277249464
Iteration: 8, Func. Count: 79, Neg. LLF: 155.3700188106376
Iteration: 9, Func. Count: 88, Neg. LLF: 155.36472392000846
Iteration: 10, Func. Count: 97, Neg. LLF: 155.3641370378658
Iteration: 11, Func. Count: 106, Neg. LLF: 155.3639203844454
Iteration: 12, Func. Count: 115, Neg. LLF: 155.36375941614972
Iteration: 13, Func. Count: 124, Neg. LLF: 155.36374771408515
Iteration: 14, Func. Count: 132, Neg. LLF: 155.3637477460293
Optimization terminated successfully (Exit mode 0)
Current function value: 155.36374771408515
Iterations: 14
Function evaluations: 132
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 175.71534052428203
Iteration: 2, Func. Count: 22, Neg. LLF: 185.31002859992194
Iteration: 3, Func. Count: 33, Neg. LLF: 171.46590958459112
Iteration: 4, Func. Count: 44, Neg. LLF: 157.39080182292324
Iteration: 5, Func. Count: 54, Neg. LLF: 158.17281270074196
Iteration: 6, Func. Count: 65, Neg. LLF: 198.7220716470662
Iteration: 7, Func. Count: 76, Neg. LLF: 155.6206334559252
Iteration: 8, Func. Count: 86, Neg. LLF: 155.41246929813363
Iteration: 9, Func. Count: 96, Neg. LLF: 155.37706890979368
Iteration: 10, Func. Count: 106, Neg. LLF: 155.36449938831083
Iteration: 11, Func. Count: 116, Neg. LLF: 155.36154291769572
Iteration: 12, Func. Count: 126, Neg. LLF: 155.35975655933595
Iteration: 13, Func. Count: 136, Neg. LLF: 155.35926428328156
Iteration: 14, Func. Count: 146, Neg. LLF: 155.3590098336547
Iteration: 15, Func. Count: 156, Neg. LLF: 155.35898656747105
Iteration: 16, Func. Count: 165, Neg. LLF: 155.35898653595297
Optimization terminated successfully (Exit mode 0)
Current function value: 155.35898656747105
Iterations: 16
Function evaluations: 165
Gradient evaluations: 16
Iteration: 1, Func. Count: 8, Neg. LLF: 160.5600987312818
Iteration: 2, Func. Count: 15, Neg. LLF: 169.7509075337141
Iteration: 3, Func. Count: 23, Neg. LLF: 176.3452124289231
Iteration: 4, Func. Count: 31, Neg. LLF: 159.59605101684332
Iteration: 5, Func. Count: 39, Neg. LLF: 159.0057352353924
Iteration: 6, Func. Count: 46, Neg. LLF: 158.87250673512537
Iteration: 7, Func. Count: 53, Neg. LLF: 158.71406822907008
Iteration: 8, Func. Count: 60, Neg. LLF: 158.5529780323177
Iteration: 9, Func. Count: 67, Neg. LLF: 158.51882069956213
Iteration: 10, Func. Count: 75, Neg. LLF: 164.73046638310103
Iteration: 11, Func. Count: 83, Neg. LLF: 157.4637990863847
Iteration: 12, Func. Count: 90, Neg. LLF: 157.2406018321089
Iteration: 13, Func. Count: 97, Neg. LLF: 157.03438334784175
Iteration: 14, Func. Count: 104, Neg. LLF: 157.00766068992195
Iteration: 15, Func. Count: 111, Neg. LLF: 157.00362485227703
Iteration: 16, Func. Count: 118, Neg. LLF: 157.0029186709381
Iteration: 17, Func. Count: 125, Neg. LLF: 157.00289101546142
Iteration: 18, Func. Count: 131, Neg. LLF: 157.00289103588852
Optimization terminated successfully (Exit mode 0)
Current function value: 157.00289101546142
Iterations: 18
Function evaluations: 131
Gradient evaluations: 18
Iteration: 1, Func. Count: 9, Neg. LLF: 474.77015775855847
Iteration: 2, Func. Count: 18, Neg. LLF: 182.10130055734962
Iteration: 3, Func. Count: 27, Neg. LLF: 228.2290801633026
Iteration: 4, Func. Count: 36, Neg. LLF: 156.03548426039313
Iteration: 5, Func. Count: 44, Neg. LLF: 155.5261012119054
Iteration: 6, Func. Count: 52, Neg. LLF: 158.01299251966987
Iteration: 7, Func. Count: 61, Neg. LLF: 155.5963835939029
Iteration: 8, Func. Count: 70, Neg. LLF: 155.6385283449515
Iteration: 9, Func. Count: 79, Neg. LLF: 155.3623393034284
Iteration: 10, Func. Count: 87, Neg. LLF: 155.35114082383404
Iteration: 11, Func. Count: 95, Neg. LLF: 155.3504375679953
Iteration: 12, Func. Count: 103, Neg. LLF: 155.35028558228544
Iteration: 13, Func. Count: 111, Neg. LLF: 155.35022964907307
Iteration: 14, Func. Count: 118, Neg. LLF: 155.35022961501866
Optimization terminated successfully (Exit mode 0)
Current function value: 155.35022964907307
Iterations: 14
Function evaluations: 118
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 169.64192530624993
Iteration: 2, Func. Count: 20, Neg. LLF: 196.24688584499404
Iteration: 3, Func. Count: 30, Neg. LLF: 163.34976029410655
Iteration: 4, Func. Count: 40, Neg. LLF: 157.28581551765518
Iteration: 5, Func. Count: 50, Neg. LLF: 157.25240356702832
Iteration: 6, Func. Count: 60, Neg. LLF: 155.64630554995
Iteration: 7, Func. Count: 69, Neg. LLF: 155.3826765380663
Iteration: 8, Func. Count: 78, Neg. LLF: 155.38816164112282
Iteration: 9, Func. Count: 88, Neg. LLF: 155.35371571468576
Iteration: 10, Func. Count: 97, Neg. LLF: 155.35055792169368
Iteration: 11, Func. Count: 106, Neg. LLF: 155.3503630494234
Iteration: 12, Func. Count: 115, Neg. LLF: 155.35024315653106
Iteration: 13, Func. Count: 124, Neg. LLF: 155.35023184284324
Iteration: 14, Func. Count: 133, Neg. LLF: 155.35022963820546
Iteration: 15, Func. Count: 141, Neg. LLF: 155.35022967605985
Optimization terminated successfully (Exit mode 0)
Current function value: 155.35022963820546
Iterations: 15
Function evaluations: 141
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 270.1606948582708
Iteration: 2, Func. Count: 22, Neg. LLF: 158.2173758124248
Iteration: 3, Func. Count: 32, Neg. LLF: 157.41198330359956
Iteration: 4, Func. Count: 43, Neg. LLF: 172.17865530783712
Iteration: 5, Func. Count: 54, Neg. LLF: 172.07377325380287
Iteration: 6, Func. Count: 65, Neg. LLF: 155.3602692993018
Iteration: 7, Func. Count: 75, Neg. LLF: 155.36436554226523
Iteration: 8, Func. Count: 86, Neg. LLF: 155.3525193698547
Iteration: 9, Func. Count: 96, Neg. LLF: 155.3505187726589
Iteration: 10, Func. Count: 106, Neg. LLF: 155.35034820049165
Iteration: 11, Func. Count: 116, Neg. LLF: 155.350240418108
Iteration: 12, Func. Count: 126, Neg. LLF: 155.35023673892894
Iteration: 13, Func. Count: 136, Neg. LLF: 155.35023032793308
Iteration: 14, Func. Count: 146, Neg. LLF: 155.3502296593203
Optimization terminated successfully (Exit mode 0)
Current function value: 155.3502296593203
Iterations: 14
Function evaluations: 146
Gradient evaluations: 14
Iteration: 1, Func. Count: 12, Neg. LLF: 264.60440522850655
Iteration: 2, Func. Count: 24, Neg. LLF: 173.56995772280058
Iteration: 3, Func. Count: 36, Neg. LLF: 190.9866141846993
Iteration: 4, Func. Count: 48, Neg. LLF: 164.65449523062142
Iteration: 5, Func. Count: 60, Neg. LLF: 158.84441290270053
Iteration: 6, Func. Count: 72, Neg. LLF: 156.4741293133946
Iteration: 7, Func. Count: 84, Neg. LLF: 155.47243518746765
Iteration: 8, Func. Count: 95, Neg. LLF: 155.59147587696938
Iteration: 9, Func. Count: 107, Neg. LLF: 157.42118159275637
Iteration: 10, Func. Count: 119, Neg. LLF: 155.35600755448255
Iteration: 11, Func. Count: 130, Neg. LLF: 155.36132422488973
Iteration: 12, Func. Count: 142, Neg. LLF: 155.35225237981578
Iteration: 13, Func. Count: 153, Neg. LLF: 155.3509274479281
Iteration: 14, Func. Count: 164, Neg. LLF: 155.3506301039975
Iteration: 15, Func. Count: 175, Neg. LLF: 155.35029689026172
Iteration: 16, Func. Count: 186, Neg. LLF: 155.35021466944298
Iteration: 17, Func. Count: 197, Neg. LLF: 155.35015634978606
Iteration: 18, Func. Count: 208, Neg. LLF: 155.35012371690198
Iteration: 19, Func. Count: 219, Neg. LLF: 155.3501065565952
Iteration: 20, Func. Count: 230, Neg. LLF: 155.3501030070252
Iteration: 21, Func. Count: 240, Neg. LLF: 155.3501029732304
Optimization terminated successfully (Exit mode 0)
Current function value: 155.3501030070252
Iterations: 21
Function evaluations: 240
Gradient evaluations: 21
Iteration: 1, Func. Count: 9, Neg. LLF: 164.67733129699403
Iteration: 2, Func. Count: 18, Neg. LLF: 159.7274755742327
Iteration: 3, Func. Count: 27, Neg. LLF: 157.9375854026342
Iteration: 4, Func. Count: 36, Neg. LLF: 157.47815669951035
Iteration: 5, Func. Count: 44, Neg. LLF: 160.23517145926596
Iteration: 6, Func. Count: 53, Neg. LLF: 157.5726200709347
Iteration: 7, Func. Count: 62, Neg. LLF: 157.33064799249357
Iteration: 8, Func. Count: 70, Neg. LLF: 157.30694095599998
Iteration: 9, Func. Count: 78, Neg. LLF: 157.2672320134323
Iteration: 10, Func. Count: 86, Neg. LLF: 157.64599102192554
Iteration: 11, Func. Count: 95, Neg. LLF: 157.17096806114895
Iteration: 12, Func. Count: 103, Neg. LLF: 157.0077327787082
Iteration: 13, Func. Count: 111, Neg. LLF: 338.0298159054393
Iteration: 14, Func. Count: 120, Neg. LLF: 160.6077644951587
Iteration: 15, Func. Count: 129, Neg. LLF: 218.00248859539437
Iteration: 16, Func. Count: 138, Neg. LLF: 158.00571785090267
Iteration: 17, Func. Count: 147, Neg. LLF: 156.40027658587775
Iteration: 18, Func. Count: 155, Neg. LLF: 156.44377208496923
Iteration: 19, Func. Count: 164, Neg. LLF: 156.14162890877938
Iteration: 20, Func. Count: 172, Neg. LLF: 156.03587369205385
Iteration: 21, Func. Count: 180, Neg. LLF: 156.13200170190214
Iteration: 22, Func. Count: 189, Neg. LLF: 155.96643872756246
Iteration: 23, Func. Count: 197, Neg. LLF: 155.95518825047688
Iteration: 24, Func. Count: 205, Neg. LLF: 155.952946893094
Iteration: 25, Func. Count: 213, Neg. LLF: 155.9528583121523
Iteration: 26, Func. Count: 221, Neg. LLF: 155.95275361871975
Iteration: 27, Func. Count: 229, Neg. LLF: 155.95266663042787
Iteration: 28, Func. Count: 237, Neg. LLF: 155.9526545839602
Iteration: 29, Func. Count: 245, Neg. LLF: 155.95265368306522
Optimization terminated successfully (Exit mode 0)
Current function value: 155.95265368306522
Iterations: 29
Function evaluations: 245
Gradient evaluations: 29
Iteration: 1, Func. Count: 10, Neg. LLF: 479.842215314826
Iteration: 2, Func. Count: 20, Neg. LLF: 171.11555118214733
Iteration: 3, Func. Count: 30, Neg. LLF: 178.87806589857564
Iteration: 4, Func. Count: 40, Neg. LLF: 165.0264898133236
Iteration: 5, Func. Count: 50, Neg. LLF: 155.4108512050976
Iteration: 6, Func. Count: 60, Neg. LLF: 158.25273654614713
Iteration: 7, Func. Count: 70, Neg. LLF: 157.31756813066636
Iteration: 8, Func. Count: 80, Neg. LLF: 155.40066874713764
Iteration: 9, Func. Count: 90, Neg. LLF: 154.85588856699854
Iteration: 10, Func. Count: 99, Neg. LLF: 154.82363407395815
Iteration: 11, Func. Count: 108, Neg. LLF: 154.8191701166935
Iteration: 12, Func. Count: 117, Neg. LLF: 154.81617891901772
Iteration: 13, Func. Count: 126, Neg. LLF: 154.81587006058982
Iteration: 14, Func. Count: 135, Neg. LLF: 154.81585868079173
Iteration: 15, Func. Count: 144, Neg. LLF: 154.8158574761232
Iteration: 16, Func. Count: 152, Neg. LLF: 154.8158574540296
Optimization terminated successfully (Exit mode 0)
Current function value: 154.8158574761232
Iterations: 16
Function evaluations: 152
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 551.5384398479806
Iteration: 2, Func. Count: 22, Neg. LLF: 163.25532478518397
Iteration: 3, Func. Count: 33, Neg. LLF: 166.56850233172577
Iteration: 4, Func. Count: 44, Neg. LLF: 159.8387699434538
Iteration: 5, Func. Count: 55, Neg. LLF: 154.78445970940064
Iteration: 6, Func. Count: 65, Neg. LLF: 154.62917802254077
Iteration: 7, Func. Count: 75, Neg. LLF: 154.73331236420324
Iteration: 8, Func. Count: 86, Neg. LLF: 154.41578169225775
Iteration: 9, Func. Count: 96, Neg. LLF: 154.40343017846368
Iteration: 10, Func. Count: 106, Neg. LLF: 154.40170728033107
Iteration: 11, Func. Count: 116, Neg. LLF: 154.40081236610874
Iteration: 12, Func. Count: 126, Neg. LLF: 154.4007777589502
Iteration: 13, Func. Count: 136, Neg. LLF: 154.40076357001092
Iteration: 14, Func. Count: 145, Neg. LLF: 154.40076354973584
Optimization terminated successfully (Exit mode 0)
Current function value: 154.40076357001092
Iterations: 14
Function evaluations: 145
Gradient evaluations: 14
Iteration: 1, Func. Count: 12, Neg. LLF: 167.23840671193815
Iteration: 2, Func. Count: 24, Neg. LLF: 176.78074320354412
Iteration: 3, Func. Count: 36, Neg. LLF: 177.3849275843931
Iteration: 4, Func. Count: 48, Neg. LLF: 163.54850366435295
Iteration: 5, Func. Count: 60, Neg. LLF: 161.27087374513462
Iteration: 6, Func. Count: 72, Neg. LLF: 154.08995446278647
Iteration: 7, Func. Count: 83, Neg. LLF: 153.68725417401646
Iteration: 8, Func. Count: 94, Neg. LLF: 153.64880399281319
Iteration: 9, Func. Count: 105, Neg. LLF: 153.60439516636734
Iteration: 10, Func. Count: 116, Neg. LLF: 153.595431224697
Iteration: 11, Func. Count: 127, Neg. LLF: 153.59156052255278
Iteration: 12, Func. Count: 138, Neg. LLF: 153.5899558420919
Iteration: 13, Func. Count: 149, Neg. LLF: 153.5899221705923
Iteration: 14, Func. Count: 160, Neg. LLF: 153.5899207660474
Iteration: 15, Func. Count: 170, Neg. LLF: 153.5899207548369
Optimization terminated successfully (Exit mode 0)
Current function value: 153.5899207660474
Iterations: 15
Function evaluations: 170
Gradient evaluations: 15
Iteration: 1, Func. Count: 13, Neg. LLF: 220.74577655447078
Iteration: 2, Func. Count: 26, Neg. LLF: 219.61912900153072
Iteration: 3, Func. Count: 39, Neg. LLF: 164.05383136704833
Iteration: 4, Func. Count: 52, Neg. LLF: 160.21769027690908
Iteration: 5, Func. Count: 65, Neg. LLF: 166.3002356675852
Iteration: 6, Func. Count: 78, Neg. LLF: 153.75418286238795
Iteration: 7, Func. Count: 90, Neg. LLF: 153.657330996462
Iteration: 8, Func. Count: 102, Neg. LLF: 153.64992720851063
Iteration: 9, Func. Count: 115, Neg. LLF: 153.59908895256285
Iteration: 10, Func. Count: 127, Neg. LLF: 153.59105452524273
Iteration: 11, Func. Count: 139, Neg. LLF: 153.5906615951887
Iteration: 12, Func. Count: 151, Neg. LLF: 153.5900064891682
Iteration: 13, Func. Count: 163, Neg. LLF: 153.5899407936997
Iteration: 14, Func. Count: 175, Neg. LLF: 153.5899244522919
Iteration: 15, Func. Count: 187, Neg. LLF: 153.58992132104834
Iteration: 16, Func. Count: 199, Neg. LLF: 153.58992072287418
Optimization terminated successfully (Exit mode 0)
Current function value: 153.58992072287418
Iterations: 16
Function evaluations: 199
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 164.87405216137657
Iteration: 2, Func. Count: 20, Neg. LLF: 160.20141296040418
Iteration: 3, Func. Count: 30, Neg. LLF: 157.6213299617089
Iteration: 4, Func. Count: 39, Neg. LLF: 157.66323152783104
Iteration: 5, Func. Count: 49, Neg. LLF: 157.35076069210163
Iteration: 6, Func. Count: 58, Neg. LLF: 157.46698755479142
Iteration: 7, Func. Count: 69, Neg. LLF: 157.31692610518357
Iteration: 8, Func. Count: 78, Neg. LLF: 157.2660836814011
Iteration: 9, Func. Count: 87, Neg. LLF: 157.63775431019607
Iteration: 10, Func. Count: 97, Neg. LLF: 157.2139145060122
Iteration: 11, Func. Count: 106, Neg. LLF: 157.1368281400438
Iteration: 12, Func. Count: 115, Neg. LLF: 175.92659193069673
Iteration: 13, Func. Count: 125, Neg. LLF: 193.49116352793664
Iteration: 14, Func. Count: 135, Neg. LLF: 161.22713006170994
Iteration: 15, Func. Count: 145, Neg. LLF: 184.2430795226013
Iteration: 16, Func. Count: 155, Neg. LLF: 157.7258371164578
Iteration: 17, Func. Count: 165, Neg. LLF: 156.6368127488244
Iteration: 18, Func. Count: 175, Neg. LLF: 156.26556800028743
Iteration: 19, Func. Count: 184, Neg. LLF: 156.1017126379388
Iteration: 20, Func. Count: 193, Neg. LLF: 156.0081820287196
Iteration: 21, Func. Count: 202, Neg. LLF: 156.99715306061566
Iteration: 22, Func. Count: 212, Neg. LLF: 155.97953129511959
Iteration: 23, Func. Count: 221, Neg. LLF: 155.96815647335123
Iteration: 24, Func. Count: 230, Neg. LLF: 155.94344885187618
Iteration: 25, Func. Count: 239, Neg. LLF: 155.93462487318058
Iteration: 26, Func. Count: 248, Neg. LLF: 155.9328223690042
Iteration: 27, Func. Count: 257, Neg. LLF: 155.93235018138168
Iteration: 28, Func. Count: 266, Neg. LLF: 155.9321143739549
Iteration: 29, Func. Count: 275, Neg. LLF: 155.93200346927614
Iteration: 30, Func. Count: 284, Neg. LLF: 155.93199288634634
Iteration: 31, Func. Count: 292, Neg. LLF: 155.93199287231357
Optimization terminated successfully (Exit mode 0)
Current function value: 155.93199288634634
Iterations: 31
Function evaluations: 292
Gradient evaluations: 31
Iteration: 1, Func. Count: 11, Neg. LLF: 478.27700884401713
Iteration: 2, Func. Count: 22, Neg. LLF: 164.1700122795533
Iteration: 3, Func. Count: 33, Neg. LLF: 172.5834529353437
Iteration: 4, Func. Count: 44, Neg. LLF: 157.08046135841775
Iteration: 5, Func. Count: 55, Neg. LLF: 155.70546470187762
Iteration: 6, Func. Count: 66, Neg. LLF: 156.94337582437822
Iteration: 7, Func. Count: 77, Neg. LLF: 154.87040359066953
Iteration: 8, Func. Count: 87, Neg. LLF: 154.84619495066673
Iteration: 9, Func. Count: 97, Neg. LLF: 154.81959435849248
Iteration: 10, Func. Count: 107, Neg. LLF: 154.81721463894075
Iteration: 11, Func. Count: 117, Neg. LLF: 154.8159647194958
Iteration: 12, Func. Count: 127, Neg. LLF: 154.81586374701058
Iteration: 13, Func. Count: 137, Neg. LLF: 154.81585793260692
Iteration: 14, Func. Count: 146, Neg. LLF: 154.81585791048028
Optimization terminated successfully (Exit mode 0)
Current function value: 154.81585793260692
Iterations: 14
Function evaluations: 146
Gradient evaluations: 14
Iteration: 1, Func. Count: 12, Neg. LLF: 167.7740629803596
Iteration: 2, Func. Count: 24, Neg. LLF: 172.76439865277305
Iteration: 3, Func. Count: 36, Neg. LLF: 165.2327340788939
Iteration: 4, Func. Count: 48, Neg. LLF: 164.6341547137124
Iteration: 5, Func. Count: 60, Neg. LLF: 177.44559077207424
Iteration: 6, Func. Count: 72, Neg. LLF: 157.05810723267834
Iteration: 7, Func. Count: 84, Neg. LLF: 155.11501860019214
Iteration: 8, Func. Count: 96, Neg. LLF: 154.74283226320637
Iteration: 9, Func. Count: 107, Neg. LLF: 154.45776201607933
Iteration: 10, Func. Count: 118, Neg. LLF: 154.4290150972123
Iteration: 11, Func. Count: 129, Neg. LLF: 154.41040473725744
Iteration: 12, Func. Count: 140, Neg. LLF: 154.4025746131683
Iteration: 13, Func. Count: 151, Neg. LLF: 154.40087368238522
Iteration: 14, Func. Count: 162, Neg. LLF: 154.40076484174782
Iteration: 15, Func. Count: 173, Neg. LLF: 154.4007636018502
Iteration: 16, Func. Count: 183, Neg. LLF: 154.40076358155068
Optimization terminated successfully (Exit mode 0)
Current function value: 154.4007636018502
Iterations: 16
Function evaluations: 183
Gradient evaluations: 16
Iteration: 1, Func. Count: 13, Neg. LLF: 167.14554739634076
Iteration: 2, Func. Count: 26, Neg. LLF: 163.708566217689
Iteration: 3, Func. Count: 39, Neg. LLF: 160.3030560004867
Iteration: 4, Func. Count: 52, Neg. LLF: 158.466885359183
Iteration: 5, Func. Count: 65, Neg. LLF: 153.88358020931653
Iteration: 6, Func. Count: 77, Neg. LLF: 166.42832104920956
Iteration: 7, Func. Count: 90, Neg. LLF: 153.66540718716362
Iteration: 8, Func. Count: 102, Neg. LLF: 153.612466838204
Iteration: 9, Func. Count: 114, Neg. LLF: 153.59471308014028
Iteration: 10, Func. Count: 126, Neg. LLF: 153.59040244642026
Iteration: 11, Func. Count: 138, Neg. LLF: 153.59003887892416
Iteration: 12, Func. Count: 150, Neg. LLF: 153.5899435027422
Iteration: 13, Func. Count: 162, Neg. LLF: 153.5899250285204
Iteration: 14, Func. Count: 174, Neg. LLF: 153.5899208003568
Iteration: 15, Func. Count: 185, Neg. LLF: 153.58992078909213
Optimization terminated successfully (Exit mode 0)
Current function value: 153.5899208003568
Iterations: 15
Function evaluations: 185
Gradient evaluations: 15
Iteration: 1, Func. Count: 14, Neg. LLF: 169.47294371178154
Iteration: 2, Func. Count: 28, Neg. LLF: 290.0308432495667
Iteration: 3, Func. Count: 42, Neg. LLF: 162.65157189957412
Iteration: 4, Func. Count: 56, Neg. LLF: 162.36347227649554
Iteration: 5, Func. Count: 70, Neg. LLF: 158.44457764602072
Iteration: 6, Func. Count: 84, Neg. LLF: 153.75728058107887
Iteration: 7, Func. Count: 97, Neg. LLF: 153.65184860718648
Iteration: 8, Func. Count: 110, Neg. LLF: 153.6083785978818
Iteration: 9, Func. Count: 123, Neg. LLF: 153.59800158197953
Iteration: 10, Func. Count: 136, Neg. LLF: 153.5920764830273
Iteration: 11, Func. Count: 149, Neg. LLF: 153.59030775571216
Iteration: 12, Func. Count: 162, Neg. LLF: 153.59004701051632
Iteration: 13, Func. Count: 175, Neg. LLF: 153.58996649299257
Iteration: 14, Func. Count: 188, Neg. LLF: 153.58993107595884
Iteration: 15, Func. Count: 201, Neg. LLF: 153.58992132637724
Iteration: 16, Func. Count: 214, Neg. LLF: 153.5899207285636
Optimization terminated successfully (Exit mode 0)
Current function value: 153.5899207285636
Iterations: 16
Function evaluations: 214
Gradient evaluations: 16
Iteration: 1, Func. Count: 7, Neg. LLF: 164.19275831812055
Iteration: 2, Func. Count: 14, Neg. LLF: 160.9324712320862
Iteration: 3, Func. Count: 21, Neg. LLF: 157.93332371148307
Iteration: 4, Func. Count: 27, Neg. LLF: 162.17368922798988
Iteration: 5, Func. Count: 34, Neg. LLF: 159.28145658051216
Iteration: 6, Func. Count: 41, Neg. LLF: 156.97629800597554
Iteration: 7, Func. Count: 47, Neg. LLF: 156.63665193650235
Iteration: 8, Func. Count: 53, Neg. LLF: 157.508039947809
Iteration: 9, Func. Count: 60, Neg. LLF: 162.50976101244345
Iteration: 10, Func. Count: 67, Neg. LLF: 159.49575810207966
Iteration: 11, Func. Count: 74, Neg. LLF: 156.03447029472545
Iteration: 12, Func. Count: 81, Neg. LLF: 154.99809267784744
Iteration: 13, Func. Count: 87, Neg. LLF: 154.9215012204185
Iteration: 14, Func. Count: 93, Neg. LLF: 154.91445757802174
Iteration: 15, Func. Count: 99, Neg. LLF: 154.9123242671733
Iteration: 16, Func. Count: 105, Neg. LLF: 154.91231756319607
Iteration: 17, Func. Count: 110, Neg. LLF: 154.91231755754958
Optimization terminated successfully (Exit mode 0)
Current function value: 154.91231756319607
Iterations: 17
Function evaluations: 110
Gradient evaluations: 17
Iteration: 1, Func. Count: 8, Neg. LLF: 235.78794488718177
Iteration: 2, Func. Count: 16, Neg. LLF: 228.17457874482287
Iteration: 3, Func. Count: 24, Neg. LLF: 184.0871435404651
Iteration: 4, Func. Count: 32, Neg. LLF: 212.22518784020608
Iteration: 5, Func. Count: 40, Neg. LLF: 201.7426280186401
Iteration: 6, Func. Count: 48, Neg. LLF: 155.19502486150748
Iteration: 7, Func. Count: 55, Neg. LLF: 155.05768320525164
Iteration: 8, Func. Count: 62, Neg. LLF: 154.9854720006361
Iteration: 9, Func. Count: 69, Neg. LLF: 154.92974558803044
Iteration: 10, Func. Count: 76, Neg. LLF: 154.91326150396205
Iteration: 11, Func. Count: 83, Neg. LLF: 154.91247291074484
Iteration: 12, Func. Count: 90, Neg. LLF: 154.9123314268847
Iteration: 13, Func. Count: 97, Neg. LLF: 154.9123272803681
Iteration: 14, Func. Count: 104, Neg. LLF: 154.9123186228784
Iteration: 15, Func. Count: 111, Neg. LLF: 154.91231745966115
Iteration: 16, Func. Count: 117, Neg. LLF: 154.9123174927202
Optimization terminated successfully (Exit mode 0)
Current function value: 154.91231745966115
Iterations: 16
Function evaluations: 117
Gradient evaluations: 16
Iteration: 1, Func. Count: 9, Neg. LLF: 176.7394640731665
Iteration: 2, Func. Count: 18, Neg. LLF: 210.6844188884856
Iteration: 3, Func. Count: 27, Neg. LLF: 167.33181402452655
Iteration: 4, Func. Count: 36, Neg. LLF: 158.51380236943385
Iteration: 5, Func. Count: 45, Neg. LLF: 158.09292114216944
Iteration: 6, Func. Count: 54, Neg. LLF: 155.28253609375574
Iteration: 7, Func. Count: 62, Neg. LLF: 154.95505229264523
Iteration: 8, Func. Count: 70, Neg. LLF: 154.91995925318184
Iteration: 9, Func. Count: 78, Neg. LLF: 154.91321585989303
Iteration: 10, Func. Count: 86, Neg. LLF: 154.91245412917922
Iteration: 11, Func. Count: 94, Neg. LLF: 154.9123254472621
Iteration: 12, Func. Count: 102, Neg. LLF: 154.91231800493145
Iteration: 13, Func. Count: 110, Neg. LLF: 154.91231726150662
Optimization terminated successfully (Exit mode 0)
Current function value: 154.91231726150662
Iterations: 13
Function evaluations: 110
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 176.2586542467238
Iteration: 2, Func. Count: 20, Neg. LLF: 161.3719811575129
Iteration: 3, Func. Count: 30, Neg. LLF: 157.54551574928928
Iteration: 4, Func. Count: 40, Neg. LLF: 157.10904766259355
Iteration: 5, Func. Count: 50, Neg. LLF: 156.02790998985273
Iteration: 6, Func. Count: 60, Neg. LLF: 161.42282309875407
Iteration: 7, Func. Count: 70, Neg. LLF: 154.99131282580456
Iteration: 8, Func. Count: 79, Neg. LLF: 154.96147283325638
Iteration: 9, Func. Count: 88, Neg. LLF: 154.92882771079238
Iteration: 10, Func. Count: 97, Neg. LLF: 154.92173086528626
Iteration: 11, Func. Count: 106, Neg. LLF: 154.91259259628015
Iteration: 12, Func. Count: 115, Neg. LLF: 154.91233059496392
Iteration: 13, Func. Count: 124, Neg. LLF: 154.91231826662917
Iteration: 14, Func. Count: 133, Neg. LLF: 154.91231721166324
Iteration: 15, Func. Count: 141, Neg. LLF: 154.912317293666
Optimization terminated successfully (Exit mode 0)
Current function value: 154.91231721166324
Iterations: 15
Function evaluations: 141
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 175.96435150370695
Iteration: 2, Func. Count: 22, Neg. LLF: 159.2931388939433
Iteration: 3, Func. Count: 33, Neg. LLF: 157.35778888361355
Iteration: 4, Func. Count: 44, Neg. LLF: 156.7631192941277
Iteration: 5, Func. Count: 55, Neg. LLF: 155.84590062547312
Iteration: 6, Func. Count: 66, Neg. LLF: 156.24160805549886
Iteration: 7, Func. Count: 77, Neg. LLF: 155.02211385572951
Iteration: 8, Func. Count: 87, Neg. LLF: 154.98188719824347
Iteration: 9, Func. Count: 97, Neg. LLF: 154.9569132298209
Iteration: 10, Func. Count: 107, Neg. LLF: 154.93172848668502
Iteration: 11, Func. Count: 117, Neg. LLF: 154.91423832114336
Iteration: 12, Func. Count: 127, Neg. LLF: 154.91248937392933
Iteration: 13, Func. Count: 137, Neg. LLF: 154.91231728688717
Iteration: 14, Func. Count: 146, Neg. LLF: 154.91231732349874
Optimization terminated successfully (Exit mode 0)
Current function value: 154.91231728688717
Iterations: 14
Function evaluations: 146
Gradient evaluations: 14
Iteration: 1, Func. Count: 8, Neg. LLF: 164.0908096620622
Iteration: 2, Func. Count: 16, Neg. LLF: 160.97356732303396
Iteration: 3, Func. Count: 24, Neg. LLF: 157.8113292038253
Iteration: 4, Func. Count: 31, Neg. LLF: 159.8822440379274
Iteration: 5, Func. Count: 39, Neg. LLF: 166.58939242703104
Iteration: 6, Func. Count: 47, Neg. LLF: 158.9875054800053
Iteration: 7, Func. Count: 55, Neg. LLF: 157.15741570824764
Iteration: 8, Func. Count: 62, Neg. LLF: 156.781664547851
Iteration: 9, Func. Count: 69, Neg. LLF: 156.4615381094817
Iteration: 10, Func. Count: 76, Neg. LLF: 155.82410678539884
Iteration: 11, Func. Count: 83, Neg. LLF: 160.94448669623335
Iteration: 12, Func. Count: 91, Neg. LLF: 163.34928214556854
Iteration: 13, Func. Count: 99, Neg. LLF: 162.12938567270342
Iteration: 14, Func. Count: 107, Neg. LLF: 160.80815267060788
Iteration: 15, Func. Count: 115, Neg. LLF: 161.2740275340858
Iteration: 16, Func. Count: 123, Neg. LLF: 155.18135487494612
Iteration: 17, Func. Count: 131, Neg. LLF: 154.8906176345226
Iteration: 18, Func. Count: 138, Neg. LLF: 154.8718617908952
Iteration: 19, Func. Count: 145, Neg. LLF: 154.86097904796426
Iteration: 20, Func. Count: 152, Neg. LLF: 154.83975586873575
Iteration: 21, Func. Count: 159, Neg. LLF: 154.8376790983305
Iteration: 22, Func. Count: 166, Neg. LLF: 154.83679013479903
Iteration: 23, Func. Count: 173, Neg. LLF: 154.83668732756854
Iteration: 24, Func. Count: 180, Neg. LLF: 154.83665848572372
Iteration: 25, Func. Count: 187, Neg. LLF: 154.83665753912757
Optimization terminated successfully (Exit mode 0)
Current function value: 154.83665753912757
Iterations: 25
Function evaluations: 187
Gradient evaluations: 25
Iteration: 1, Func. Count: 9, Neg. LLF: 165.93435882272473
Iteration: 2, Func. Count: 18, Neg. LLF: 177.00273994449884
Iteration: 3, Func. Count: 27, Neg. LLF: 162.08218430567368
Iteration: 4, Func. Count: 36, Neg. LLF: 177.5029502406928
Iteration: 5, Func. Count: 45, Neg. LLF: 158.27297137410577
Iteration: 6, Func. Count: 54, Neg. LLF: 158.83489611520548
Iteration: 7, Func. Count: 63, Neg. LLF: 156.06977841964886
Iteration: 8, Func. Count: 72, Neg. LLF: 155.85590023313313
Iteration: 9, Func. Count: 81, Neg. LLF: 154.94842382263158
Iteration: 10, Func. Count: 89, Neg. LLF: 154.87834866807407
Iteration: 11, Func. Count: 97, Neg. LLF: 154.8395942278313
Iteration: 12, Func. Count: 105, Neg. LLF: 154.83680987008447
Iteration: 13, Func. Count: 113, Neg. LLF: 154.83666927765097
Iteration: 14, Func. Count: 121, Neg. LLF: 154.83665856223712
Iteration: 15, Func. Count: 129, Neg. LLF: 154.83665767148543
Optimization terminated successfully (Exit mode 0)
Current function value: 154.83665767148543
Iterations: 15
Function evaluations: 129
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 159.49173939654727
Iteration: 2, Func. Count: 20, Neg. LLF: 161.79381854271332
Iteration: 3, Func. Count: 30, Neg. LLF: 155.3041904000073
Iteration: 4, Func. Count: 39, Neg. LLF: 157.0638489348734
Iteration: 5, Func. Count: 49, Neg. LLF: 157.51760881657214
Iteration: 6, Func. Count: 59, Neg. LLF: 159.89265855077753
Iteration: 7, Func. Count: 69, Neg. LLF: 155.64753284971556
Iteration: 8, Func. Count: 79, Neg. LLF: 154.89273977387683
Iteration: 9, Func. Count: 88, Neg. LLF: 155.33776362597865
Iteration: 10, Func. Count: 98, Neg. LLF: 154.84544917926996
Iteration: 11, Func. Count: 107, Neg. LLF: 154.83870901015413
Iteration: 12, Func. Count: 116, Neg. LLF: 154.8367179492374
Iteration: 13, Func. Count: 125, Neg. LLF: 154.83665877986022
Iteration: 14, Func. Count: 134, Neg. LLF: 154.8366575293326
Iteration: 15, Func. Count: 142, Neg. LLF: 154.83665760265438
Optimization terminated successfully (Exit mode 0)
Current function value: 154.8366575293326
Iterations: 15
Function evaluations: 142
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 175.601228614283
Iteration: 2, Func. Count: 22, Neg. LLF: 187.18140623819107
Iteration: 3, Func. Count: 33, Neg. LLF: 159.58515154815083
Iteration: 4, Func. Count: 44, Neg. LLF: 155.60717532210785
Iteration: 5, Func. Count: 54, Neg. LLF: 161.65535876585992
Iteration: 6, Func. Count: 65, Neg. LLF: 155.5687103695803
Iteration: 7, Func. Count: 76, Neg. LLF: 155.15079438497105
Iteration: 8, Func. Count: 87, Neg. LLF: 154.86491291830404
Iteration: 9, Func. Count: 97, Neg. LLF: 154.84221604081895
Iteration: 10, Func. Count: 107, Neg. LLF: 154.83798391259344
Iteration: 11, Func. Count: 117, Neg. LLF: 154.83694680809788
Iteration: 12, Func. Count: 127, Neg. LLF: 154.83666974890482
Iteration: 13, Func. Count: 137, Neg. LLF: 154.8366603455786
Iteration: 14, Func. Count: 147, Neg. LLF: 154.83665810165422
Iteration: 15, Func. Count: 156, Neg. LLF: 154.83665816993013
Optimization terminated successfully (Exit mode 0)
Current function value: 154.83665810165422
Iterations: 15
Function evaluations: 156
Gradient evaluations: 15
Iteration: 1, Func. Count: 12, Neg. LLF: 175.403580873535
Iteration: 2, Func. Count: 24, Neg. LLF: 184.91525369120973
Iteration: 3, Func. Count: 36, Neg. LLF: 176.70765064281758
Iteration: 4, Func. Count: 48, Neg. LLF: 155.67052447812375
Iteration: 5, Func. Count: 59, Neg. LLF: 158.36886272706593
Iteration: 6, Func. Count: 71, Neg. LLF: 171.53833373289729
Iteration: 7, Func. Count: 83, Neg. LLF: 154.99545039263506
Iteration: 8, Func. Count: 94, Neg. LLF: 154.879737321726
Iteration: 9, Func. Count: 105, Neg. LLF: 154.84422080381256
Iteration: 10, Func. Count: 116, Neg. LLF: 154.83822260739677
Iteration: 11, Func. Count: 127, Neg. LLF: 154.8366792818687
Iteration: 12, Func. Count: 138, Neg. LLF: 154.83666394644283
Iteration: 13, Func. Count: 149, Neg. LLF: 154.8366594568349
Iteration: 14, Func. Count: 160, Neg. LLF: 154.83665756933937
Iteration: 15, Func. Count: 170, Neg. LLF: 154.83665758692885
Optimization terminated successfully (Exit mode 0)
Current function value: 154.83665756933937
Iterations: 15
Function evaluations: 170
Gradient evaluations: 15
Iteration: 1, Func. Count: 9, Neg. LLF: 161.75743310372795
Iteration: 2, Func. Count: 18, Neg. LLF: 160.77424340707145
Iteration: 3, Func. Count: 27, Neg. LLF: 158.36373075608714
Iteration: 4, Func. Count: 36, Neg. LLF: 159.0145095496338
Iteration: 5, Func. Count: 46, Neg. LLF: 157.43724473887517
Iteration: 6, Func. Count: 54, Neg. LLF: 165.4276758499415
Iteration: 7, Func. Count: 63, Neg. LLF: 158.60406442357495
Iteration: 8, Func. Count: 72, Neg. LLF: 156.98882039514157
Iteration: 9, Func. Count: 80, Neg. LLF: 156.6287228526778
Iteration: 10, Func. Count: 88, Neg. LLF: 156.2798571981055
Iteration: 11, Func. Count: 96, Neg. LLF: 155.67117538748417
Iteration: 12, Func. Count: 104, Neg. LLF: 158.5970621318631
Iteration: 13, Func. Count: 113, Neg. LLF: 174.32145528910877
Iteration: 14, Func. Count: 122, Neg. LLF: 166.17334857434102
Iteration: 15, Func. Count: 131, Neg. LLF: 155.58648234456138
Iteration: 16, Func. Count: 140, Neg. LLF: 154.88036860617362
Iteration: 17, Func. Count: 148, Neg. LLF: 154.85240711793227
Iteration: 18, Func. Count: 156, Neg. LLF: 154.84436200924304
Iteration: 19, Func. Count: 164, Neg. LLF: 154.8368501587943
Iteration: 20, Func. Count: 172, Neg. LLF: 154.83657454221063
Iteration: 21, Func. Count: 180, Neg. LLF: 154.83650163630534
Iteration: 22, Func. Count: 188, Neg. LLF: 154.83648605809057
Iteration: 23, Func. Count: 196, Neg. LLF: 154.8364821692946
Iteration: 24, Func. Count: 204, Neg. LLF: 154.83648156940066
Optimization terminated successfully (Exit mode 0)
Current function value: 154.83648156940066
Iterations: 24
Function evaluations: 204
Gradient evaluations: 24
Iteration: 1, Func. Count: 10, Neg. LLF: 441.35843384098445
Iteration: 2, Func. Count: 20, Neg. LLF: 554.5111117379462
Iteration: 3, Func. Count: 30, Neg. LLF: 205.67589436621248
Iteration: 4, Func. Count: 40, Neg. LLF: 168.4726254474122
Iteration: 5, Func. Count: 50, Neg. LLF: 187.10358340510953
Iteration: 6, Func. Count: 60, Neg. LLF: 157.97338814974324
Iteration: 7, Func. Count: 70, Neg. LLF: 157.62103214263794
Iteration: 8, Func. Count: 80, Neg. LLF: 157.1710076869522
Iteration: 9, Func. Count: 90, Neg. LLF: 154.91569944948924
Iteration: 10, Func. Count: 99, Neg. LLF: 154.8589336539533
Iteration: 11, Func. Count: 108, Neg. LLF: 154.84057386398194
Iteration: 12, Func. Count: 117, Neg. LLF: 154.83681524117256
Iteration: 13, Func. Count: 126, Neg. LLF: 154.8365217278472
Iteration: 14, Func. Count: 135, Neg. LLF: 154.8364869521772
Iteration: 15, Func. Count: 144, Neg. LLF: 154.83648234272803
Iteration: 16, Func. Count: 153, Neg. LLF: 154.8364817400426
Optimization terminated successfully (Exit mode 0)
Current function value: 154.8364817400426
Iterations: 16
Function evaluations: 153
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 178.14271719497484
Iteration: 2, Func. Count: 22, Neg. LLF: 350.03981589824355
Iteration: 3, Func. Count: 33, Neg. LLF: 194.0384156360309
Iteration: 4, Func. Count: 44, Neg. LLF: 156.21462954124678
Iteration: 5, Func. Count: 54, Neg. LLF: 155.43451744598872
Iteration: 6, Func. Count: 64, Neg. LLF: 177.16121429342851
Iteration: 7, Func. Count: 75, Neg. LLF: 155.02195542768675
Iteration: 8, Func. Count: 85, Neg. LLF: 155.1423659361608
Iteration: 9, Func. Count: 96, Neg. LLF: 154.9041347940564
Iteration: 10, Func. Count: 107, Neg. LLF: 154.8490816266282
Iteration: 11, Func. Count: 117, Neg. LLF: 154.8410125009659
Iteration: 12, Func. Count: 127, Neg. LLF: 154.8371907372319
Iteration: 13, Func. Count: 137, Neg. LLF: 154.83663788574546
Iteration: 14, Func. Count: 147, Neg. LLF: 154.83648379019613
Iteration: 15, Func. Count: 157, Neg. LLF: 154.83648158964203
Iteration: 16, Func. Count: 166, Neg. LLF: 154.83648166270657
Optimization terminated successfully (Exit mode 0)
Current function value: 154.83648158964203
Iterations: 16
Function evaluations: 166
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 285.1430090558472
Iteration: 2, Func. Count: 24, Neg. LLF: 168.64247834689786
Iteration: 3, Func. Count: 36, Neg. LLF: 280.3767644636143
Iteration: 4, Func. Count: 48, Neg. LLF: 165.69456700091703
Iteration: 5, Func. Count: 60, Neg. LLF: 156.17828479494986
Iteration: 6, Func. Count: 71, Neg. LLF: 157.3579352689546
Iteration: 7, Func. Count: 83, Neg. LLF: 157.64851228249728
Iteration: 8, Func. Count: 95, Neg. LLF: 156.77306827529966
Iteration: 9, Func. Count: 107, Neg. LLF: 154.9408257085449
Iteration: 10, Func. Count: 118, Neg. LLF: 154.88154267533284
Iteration: 11, Func. Count: 129, Neg. LLF: 154.86467019555886
Iteration: 12, Func. Count: 140, Neg. LLF: 154.8427672518065
Iteration: 13, Func. Count: 151, Neg. LLF: 154.83811172803829
Iteration: 14, Func. Count: 162, Neg. LLF: 154.836734400363
Iteration: 15, Func. Count: 173, Neg. LLF: 154.83659585082026
Iteration: 16, Func. Count: 184, Neg. LLF: 154.8364920745253
Iteration: 17, Func. Count: 195, Neg. LLF: 154.83648517784036
Iteration: 18, Func. Count: 206, Neg. LLF: 154.8364817710457
Iteration: 19, Func. Count: 216, Neg. LLF: 154.83648183889747
Optimization terminated successfully (Exit mode 0)
Current function value: 154.8364817710457
Iterations: 19
Function evaluations: 216
Gradient evaluations: 19
Iteration: 1, Func. Count: 13, Neg. LLF: 283.2822989299465
Iteration: 2, Func. Count: 26, Neg. LLF: 165.25291604403122
Iteration: 3, Func. Count: 39, Neg. LLF: 157.2490123144228
Iteration: 4, Func. Count: 51, Neg. LLF: 156.3266304484836
Iteration: 5, Func. Count: 64, Neg. LLF: 278.13079974714486
Iteration: 6, Func. Count: 77, Neg. LLF: 155.8325551086115
Iteration: 7, Func. Count: 90, Neg. LLF: 157.40820211187028
Iteration: 8, Func. Count: 103, Neg. LLF: 156.1754375544433
Iteration: 9, Func. Count: 116, Neg. LLF: 154.9686313559655
Iteration: 10, Func. Count: 128, Neg. LLF: 154.9169496321733
Iteration: 11, Func. Count: 140, Neg. LLF: 154.88253064884807
Iteration: 12, Func. Count: 152, Neg. LLF: 154.8431928300574
Iteration: 13, Func. Count: 164, Neg. LLF: 154.83737768772653
Iteration: 14, Func. Count: 176, Neg. LLF: 154.83655951243165
Iteration: 15, Func. Count: 188, Neg. LLF: 154.836499215637
Iteration: 16, Func. Count: 200, Neg. LLF: 154.83648235633748
Iteration: 17, Func. Count: 212, Neg. LLF: 154.83648157120902
Optimization terminated successfully (Exit mode 0)
Current function value: 154.83648157120902
Iterations: 17
Function evaluations: 212
Gradient evaluations: 17
Iteration: 1, Func. Count: 10, Neg. LLF: 162.9512762920084
Iteration: 2, Func. Count: 20, Neg. LLF: 191.60830169942952
Iteration: 3, Func. Count: 30, Neg. LLF: 161.6369336331821
Iteration: 4, Func. Count: 41, Neg. LLF: 159.7023580764533
Iteration: 5, Func. Count: 51, Neg. LLF: 156.17661927696548
Iteration: 6, Func. Count: 60, Neg. LLF: 156.71984376423114
Iteration: 7, Func. Count: 70, Neg. LLF: 155.90702104823652
Iteration: 8, Func. Count: 79, Neg. LLF: 155.75365028947897
Iteration: 9, Func. Count: 88, Neg. LLF: 155.44003713794257
Iteration: 10, Func. Count: 97, Neg. LLF: 156.4464322659067
Iteration: 11, Func. Count: 107, Neg. LLF: 157.92112961040328
Iteration: 12, Func. Count: 117, Neg. LLF: 161.34008465097898
Iteration: 13, Func. Count: 127, Neg. LLF: 19003.761647620435
Iteration: 14, Func. Count: 137, Neg. LLF: 645.0116229092467
Iteration: 15, Func. Count: 147, Neg. LLF: 156.74872135229347
Iteration: 16, Func. Count: 157, Neg. LLF: 155.24084180426243
Iteration: 17, Func. Count: 167, Neg. LLF: 154.78781587804062
Iteration: 18, Func. Count: 177, Neg. LLF: 154.40493212426182
Iteration: 19, Func. Count: 186, Neg. LLF: 154.38053573766382
Iteration: 20, Func. Count: 195, Neg. LLF: 154.365242252278
Iteration: 21, Func. Count: 204, Neg. LLF: 154.3610584193583
Iteration: 22, Func. Count: 213, Neg. LLF: 154.35274313926453
Iteration: 23, Func. Count: 222, Neg. LLF: 154.35101128488856
Iteration: 24, Func. Count: 231, Neg. LLF: 154.35091886395514
Iteration: 25, Func. Count: 240, Neg. LLF: 154.3509125406007
Iteration: 26, Func. Count: 249, Neg. LLF: 154.35091186947284
Optimization terminated successfully (Exit mode 0)
Current function value: 154.35091186947284
Iterations: 26
Function evaluations: 249
Gradient evaluations: 26
Iteration: 1, Func. Count: 11, Neg. LLF: 291.76887978834793
Iteration: 2, Func. Count: 22, Neg. LLF: 311.6125737971636
Iteration: 3, Func. Count: 33, Neg. LLF: 174.75186975563915
Iteration: 4, Func. Count: 44, Neg. LLF: 160.08615811713804
Iteration: 5, Func. Count: 55, Neg. LLF: 156.05970590836483
Iteration: 6, Func. Count: 66, Neg. LLF: 158.17170747224554
Iteration: 7, Func. Count: 77, Neg. LLF: 154.6619926069283
Iteration: 8, Func. Count: 87, Neg. LLF: 154.40864487720464
Iteration: 9, Func. Count: 97, Neg. LLF: 154.60296127983577
Iteration: 10, Func. Count: 108, Neg. LLF: 155.01932765070617
Iteration: 11, Func. Count: 119, Neg. LLF: 154.35635369359133
Iteration: 12, Func. Count: 129, Neg. LLF: 154.3529847153473
Iteration: 13, Func. Count: 139, Neg. LLF: 154.3511421552862
Iteration: 14, Func. Count: 149, Neg. LLF: 154.3509333389553
Iteration: 15, Func. Count: 159, Neg. LLF: 154.35091342202074
Iteration: 16, Func. Count: 169, Neg. LLF: 154.35091204085057
Iteration: 17, Func. Count: 178, Neg. LLF: 154.35091206534943
Optimization terminated successfully (Exit mode 0)
Current function value: 154.35091204085057
Iterations: 17
Function evaluations: 178
Gradient evaluations: 17
Iteration: 1, Func. Count: 12, Neg. LLF: 288.6382200882629
Iteration: 2, Func. Count: 24, Neg. LLF: 183.6546920120736
Iteration: 3, Func. Count: 36, Neg. LLF: 190.3735578285837
Iteration: 4, Func. Count: 48, Neg. LLF: 168.5571859714431
Iteration: 5, Func. Count: 60, Neg. LLF: 158.7072162976648
Iteration: 6, Func. Count: 72, Neg. LLF: 154.61906403314197
Iteration: 7, Func. Count: 83, Neg. LLF: 157.67497784203687
Iteration: 8, Func. Count: 95, Neg. LLF: 154.47438144573061
Iteration: 9, Func. Count: 107, Neg. LLF: 154.3579864987135
Iteration: 10, Func. Count: 118, Neg. LLF: 154.33461643851447
Iteration: 11, Func. Count: 129, Neg. LLF: 154.31615810250113
Iteration: 12, Func. Count: 140, Neg. LLF: 154.31319090420416
Iteration: 13, Func. Count: 151, Neg. LLF: 154.31026381416137
Iteration: 14, Func. Count: 162, Neg. LLF: 154.3095010197355
Iteration: 15, Func. Count: 173, Neg. LLF: 154.3092354684822
Iteration: 16, Func. Count: 184, Neg. LLF: 154.3091938560701
Iteration: 17, Func. Count: 195, Neg. LLF: 154.30919130059493
Iteration: 18, Func. Count: 205, Neg. LLF: 154.30919128801335
Optimization terminated successfully (Exit mode 0)
Current function value: 154.30919130059493
Iterations: 18
Function evaluations: 205
Gradient evaluations: 18
Iteration: 1, Func. Count: 13, Neg. LLF: 285.8363636359985
Iteration: 2, Func. Count: 26, Neg. LLF: 177.7109436753278
Iteration: 3, Func. Count: 39, Neg. LLF: 174.49916608029454
Iteration: 4, Func. Count: 52, Neg. LLF: 171.8925458887546
Iteration: 5, Func. Count: 65, Neg. LLF: 159.1734636925598
Iteration: 6, Func. Count: 78, Neg. LLF: 155.94103925265804
Iteration: 7, Func. Count: 91, Neg. LLF: 153.9295852450577
Iteration: 8, Func. Count: 103, Neg. LLF: 153.66623763193826
Iteration: 9, Func. Count: 115, Neg. LLF: 153.62006669240753
Iteration: 10, Func. Count: 127, Neg. LLF: 153.5952563527445
Iteration: 11, Func. Count: 139, Neg. LLF: 153.59000953225365
Iteration: 12, Func. Count: 151, Neg. LLF: 153.5870390256723
Iteration: 13, Func. Count: 163, Neg. LLF: 153.5867959912166
Iteration: 14, Func. Count: 175, Neg. LLF: 153.58665188056187
Iteration: 15, Func. Count: 187, Neg. LLF: 153.58663166448915
Iteration: 16, Func. Count: 199, Neg. LLF: 153.58662908400808
Iteration: 17, Func. Count: 210, Neg. LLF: 153.58662907332413
Optimization terminated successfully (Exit mode 0)
Current function value: 153.58662908400808
Iterations: 17
Function evaluations: 210
Gradient evaluations: 17
Iteration: 1, Func. Count: 14, Neg. LLF: 284.0668485360472
Iteration: 2, Func. Count: 28, Neg. LLF: 173.7477164501
Iteration: 3, Func. Count: 42, Neg. LLF: 172.61904144178965
Iteration: 4, Func. Count: 56, Neg. LLF: 174.7078962483802
Iteration: 5, Func. Count: 70, Neg. LLF: 158.93907693590413
Iteration: 6, Func. Count: 84, Neg. LLF: 155.1737663189367
Iteration: 7, Func. Count: 98, Neg. LLF: 154.37341792269763
Iteration: 8, Func. Count: 111, Neg. LLF: 153.75232092444
Iteration: 9, Func. Count: 124, Neg. LLF: 153.64401422410614
Iteration: 10, Func. Count: 137, Neg. LLF: 153.62383041239218
Iteration: 11, Func. Count: 150, Neg. LLF: 153.59176607354462
Iteration: 12, Func. Count: 163, Neg. LLF: 153.58847757045197
Iteration: 13, Func. Count: 176, Neg. LLF: 153.58718877446393
Iteration: 14, Func. Count: 189, Neg. LLF: 153.5868259821612
Iteration: 15, Func. Count: 202, Neg. LLF: 153.58666030943746
Iteration: 16, Func. Count: 215, Neg. LLF: 153.5866374919529
Iteration: 17, Func. Count: 228, Neg. LLF: 153.58662949021524
Iteration: 18, Func. Count: 240, Neg. LLF: 153.58662958462608
Optimization terminated successfully (Exit mode 0)
Current function value: 153.58662949021524
Iterations: 18
Function evaluations: 240
Gradient evaluations: 18
Iteration: 1, Func. Count: 11, Neg. LLF: 163.17902131852983
Iteration: 2, Func. Count: 22, Neg. LLF: 192.9858546184091
Iteration: 3, Func. Count: 33, Neg. LLF: 160.9908530047528
Iteration: 4, Func. Count: 45, Neg. LLF: 158.22777182031663
Iteration: 5, Func. Count: 56, Neg. LLF: 156.15352918751535
Iteration: 6, Func. Count: 66, Neg. LLF: 156.06444713756395
Iteration: 7, Func. Count: 76, Neg. LLF: 155.88862789545306
Iteration: 8, Func. Count: 86, Neg. LLF: 155.7733070388351
Iteration: 9, Func. Count: 96, Neg. LLF: 155.34504548163804
Iteration: 10, Func. Count: 106, Neg. LLF: 167.89706007549216
Iteration: 11, Func. Count: 117, Neg. LLF: 165.96183027053488
Iteration: 12, Func. Count: 128, Neg. LLF: 163.44402943122498
Iteration: 13, Func. Count: 139, Neg. LLF: 162.73187012928747
Iteration: 14, Func. Count: 150, Neg. LLF: 161.9362665331363
Iteration: 15, Func. Count: 161, Neg. LLF: 164.00075049430603
Iteration: 16, Func. Count: 172, Neg. LLF: 166.44879854226042
Iteration: 17, Func. Count: 183, Neg. LLF: 154.84659874277202
Iteration: 18, Func. Count: 194, Neg. LLF: 154.5564876362775
Iteration: 19, Func. Count: 204, Neg. LLF: 154.49109448646604
Iteration: 20, Func. Count: 214, Neg. LLF: 154.41221755221412
Iteration: 21, Func. Count: 224, Neg. LLF: 154.3695124217033
Iteration: 22, Func. Count: 234, Neg. LLF: 154.3577532572948
Iteration: 23, Func. Count: 244, Neg. LLF: 154.35321283279995
Iteration: 24, Func. Count: 254, Neg. LLF: 154.35146372210036
Iteration: 25, Func. Count: 264, Neg. LLF: 154.35091853359245
Iteration: 26, Func. Count: 274, Neg. LLF: 154.3509124811096
Iteration: 27, Func. Count: 284, Neg. LLF: 154.3509118997222
Optimization terminated successfully (Exit mode 0)
Current function value: 154.3509118997222
Iterations: 27
Function evaluations: 284
Gradient evaluations: 27
Iteration: 1, Func. Count: 12, Neg. LLF: 290.31626507214946
Iteration: 2, Func. Count: 24, Neg. LLF: 188.22904730037143
Iteration: 3, Func. Count: 36, Neg. LLF: 184.99472242903624
Iteration: 4, Func. Count: 48, Neg. LLF: 160.34698358085154
Iteration: 5, Func. Count: 60, Neg. LLF: 155.84929643296107
Iteration: 6, Func. Count: 72, Neg. LLF: 157.16319009784146
Iteration: 7, Func. Count: 84, Neg. LLF: 154.7315353786879
Iteration: 8, Func. Count: 95, Neg. LLF: 155.23601486510825
Iteration: 9, Func. Count: 107, Neg. LLF: 157.05308131672774
Iteration: 10, Func. Count: 119, Neg. LLF: 154.3814209377477
Iteration: 11, Func. Count: 130, Neg. LLF: 154.41763071591853
Iteration: 12, Func. Count: 142, Neg. LLF: 154.35707137071807
Iteration: 13, Func. Count: 153, Neg. LLF: 154.35158794568824
Iteration: 14, Func. Count: 164, Neg. LLF: 154.3509818243086
Iteration: 15, Func. Count: 175, Neg. LLF: 154.35091376652605
Iteration: 16, Func. Count: 186, Neg. LLF: 154.35091209717595
Iteration: 17, Func. Count: 196, Neg. LLF: 154.3509121216604
Optimization terminated successfully (Exit mode 0)
Current function value: 154.35091209717595
Iterations: 17
Function evaluations: 196
Gradient evaluations: 17
Iteration: 1, Func. Count: 13, Neg. LLF: 286.80709534519775
Iteration: 2, Func. Count: 26, Neg. LLF: 185.97420570528016
Iteration: 3, Func. Count: 39, Neg. LLF: 177.09283440865974
Iteration: 4, Func. Count: 52, Neg. LLF: 169.98640919882138
Iteration: 5, Func. Count: 65, Neg. LLF: 159.6819570150445
Iteration: 6, Func. Count: 78, Neg. LLF: 154.54944012920458
Iteration: 7, Func. Count: 90, Neg. LLF: 155.3243872538253
Iteration: 8, Func. Count: 103, Neg. LLF: 155.28911695492985
Iteration: 9, Func. Count: 116, Neg. LLF: 154.35308762539069
Iteration: 10, Func. Count: 128, Neg. LLF: 154.34071016340067
Iteration: 11, Func. Count: 140, Neg. LLF: 154.323990397068
Iteration: 12, Func. Count: 152, Neg. LLF: 154.3147651724215
Iteration: 13, Func. Count: 164, Neg. LLF: 154.31159612199363
Iteration: 14, Func. Count: 176, Neg. LLF: 154.310054655391
Iteration: 15, Func. Count: 188, Neg. LLF: 154.30929453081797
Iteration: 16, Func. Count: 200, Neg. LLF: 154.30919973199715
Iteration: 17, Func. Count: 212, Neg. LLF: 154.30919163260407
Iteration: 18, Func. Count: 223, Neg. LLF: 154.3091916200318
Optimization terminated successfully (Exit mode 0)
Current function value: 154.30919163260407
Iterations: 18
Function evaluations: 223
Gradient evaluations: 18
Iteration: 1, Func. Count: 14, Neg. LLF: 283.8962758166997
Iteration: 2, Func. Count: 28, Neg. LLF: 190.8400049005077
Iteration: 3, Func. Count: 42, Neg. LLF: 172.75628594628935
Iteration: 4, Func. Count: 56, Neg. LLF: 172.16987426093482
Iteration: 5, Func. Count: 70, Neg. LLF: 159.3859333854931
Iteration: 6, Func. Count: 84, Neg. LLF: 155.99389030412084
Iteration: 7, Func. Count: 98, Neg. LLF: 154.04281060200512
Iteration: 8, Func. Count: 111, Neg. LLF: 153.68797764044442
Iteration: 9, Func. Count: 124, Neg. LLF: 153.62768104402105
Iteration: 10, Func. Count: 137, Neg. LLF: 153.5974104150968
Iteration: 11, Func. Count: 150, Neg. LLF: 153.5906828632101
Iteration: 12, Func. Count: 163, Neg. LLF: 153.58778436634753
Iteration: 13, Func. Count: 176, Neg. LLF: 153.58669701195095
Iteration: 14, Func. Count: 189, Neg. LLF: 153.58663748536884
Iteration: 15, Func. Count: 202, Neg. LLF: 153.58663155782182
Iteration: 16, Func. Count: 215, Neg. LLF: 153.58663003434123
Iteration: 17, Func. Count: 228, Neg. LLF: 153.58662909512222
Optimization terminated successfully (Exit mode 0)
Current function value: 153.58662909512222
Iterations: 17
Function evaluations: 228
Gradient evaluations: 17
Iteration: 1, Func. Count: 15, Neg. LLF: 282.05745761147045
Iteration: 2, Func. Count: 30, Neg. LLF: 181.80732573921327
Iteration: 3, Func. Count: 45, Neg. LLF: 171.92213834883913
Iteration: 4, Func. Count: 60, Neg. LLF: 175.23102706470334
Iteration: 5, Func. Count: 75, Neg. LLF: 159.05439877861613
Iteration: 6, Func. Count: 90, Neg. LLF: 155.20564203011946
Iteration: 7, Func. Count: 105, Neg. LLF: 154.38930602150413
Iteration: 8, Func. Count: 119, Neg. LLF: 153.89561371038775
Iteration: 9, Func. Count: 133, Neg. LLF: 153.68301435591948
Iteration: 10, Func. Count: 147, Neg. LLF: 153.62015050169933
Iteration: 11, Func. Count: 161, Neg. LLF: 153.594842626547
Iteration: 12, Func. Count: 175, Neg. LLF: 153.5897506223048
Iteration: 13, Func. Count: 189, Neg. LLF: 153.5872930401385
Iteration: 14, Func. Count: 203, Neg. LLF: 153.5868434423634
Iteration: 15, Func. Count: 217, Neg. LLF: 153.58664744264095
Iteration: 16, Func. Count: 231, Neg. LLF: 153.5866370712465
Iteration: 17, Func. Count: 245, Neg. LLF: 153.58663116486804
Iteration: 18, Func. Count: 259, Neg. LLF: 153.58662964299356
Iteration: 19, Func. Count: 273, Neg. LLF: 153.58662903217072
Optimization terminated successfully (Exit mode 0)
Current function value: 153.58662903217072
Iterations: 19
Function evaluations: 273
Gradient evaluations: 19
Iteration: 1, Func. Count: 8, Neg. LLF: 163.49541280718003
Iteration: 2, Func. Count: 16, Neg. LLF: 165.12406533937357
Iteration: 3, Func. Count: 24, Neg. LLF: 161.50388956458212
Iteration: 4, Func. Count: 31, Neg. LLF: 161.11393667050731
Iteration: 5, Func. Count: 38, Neg. LLF: 161.46909054296123
Iteration: 6, Func. Count: 46, Neg. LLF: 160.2782591818706
Iteration: 7, Func. Count: 53, Neg. LLF: 159.58777673497391
Iteration: 8, Func. Count: 60, Neg. LLF: 161.80743520335386
Iteration: 9, Func. Count: 68, Neg. LLF: 163.55056255859026
Iteration: 10, Func. Count: 76, Neg. LLF: 165.31297416178427
Iteration: 11, Func. Count: 84, Neg. LLF: 177.1375921789455
Iteration: 12, Func. Count: 92, Neg. LLF: 161.37210621332486
Iteration: 13, Func. Count: 100, Neg. LLF: 155.27983602971472
Iteration: 14, Func. Count: 107, Neg. LLF: 155.214596964851
Iteration: 15, Func. Count: 115, Neg. LLF: 155.07976194179153
Iteration: 16, Func. Count: 123, Neg. LLF: 154.91866547762868
Iteration: 17, Func. Count: 130, Neg. LLF: 154.91486660308198
Iteration: 18, Func. Count: 137, Neg. LLF: 154.91296470740872
Iteration: 19, Func. Count: 144, Neg. LLF: 154.91247862457678
Iteration: 20, Func. Count: 151, Neg. LLF: 154.91233029512708
Iteration: 21, Func. Count: 158, Neg. LLF: 154.91231914357854
Iteration: 22, Func. Count: 165, Neg. LLF: 154.91231728000722
Iteration: 23, Func. Count: 171, Neg. LLF: 154.9123174214206
Optimization terminated successfully (Exit mode 0)
Current function value: 154.91231728000722
Iterations: 23
Function evaluations: 171
Gradient evaluations: 23
Iteration: 1, Func. Count: 9, Neg. LLF: 176.6416900328758
Iteration: 2, Func. Count: 18, Neg. LLF: 224.51946129463443
Iteration: 3, Func. Count: 27, Neg. LLF: 156.29228470139603
Iteration: 4, Func. Count: 35, Neg. LLF: 160.02006875519152
Iteration: 5, Func. Count: 44, Neg. LLF: 162.25390021246392
Iteration: 6, Func. Count: 53, Neg. LLF: 155.79374661126943
Iteration: 7, Func. Count: 62, Neg. LLF: 154.9543808300931
Iteration: 8, Func. Count: 70, Neg. LLF: 154.9806872782305
Iteration: 9, Func. Count: 79, Neg. LLF: 154.91313186125075
Iteration: 10, Func. Count: 87, Neg. LLF: 154.91280464431964
Iteration: 11, Func. Count: 95, Neg. LLF: 154.9123224653446
Iteration: 12, Func. Count: 103, Neg. LLF: 154.9123172852186
Iteration: 13, Func. Count: 110, Neg. LLF: 154.91231731826784
Optimization terminated successfully (Exit mode 0)
Current function value: 154.9123172852186
Iterations: 13
Function evaluations: 110
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 175.83332911825926
Iteration: 2, Func. Count: 20, Neg. LLF: 211.59895312831028
Iteration: 3, Func. Count: 30, Neg. LLF: 162.15105542383634
Iteration: 4, Func. Count: 40, Neg. LLF: 178.56860239908104
Iteration: 5, Func. Count: 50, Neg. LLF: 157.9974177113434
Iteration: 6, Func. Count: 60, Neg. LLF: 155.39537180257588
Iteration: 7, Func. Count: 69, Neg. LLF: 155.13991987174785
Iteration: 8, Func. Count: 78, Neg. LLF: 154.93329121611703
Iteration: 9, Func. Count: 87, Neg. LLF: 154.9149893496612
Iteration: 10, Func. Count: 96, Neg. LLF: 154.9125364177628
Iteration: 11, Func. Count: 105, Neg. LLF: 154.91237887574104
Iteration: 12, Func. Count: 114, Neg. LLF: 154.91232467562682
Iteration: 13, Func. Count: 123, Neg. LLF: 154.91231817621022
Iteration: 14, Func. Count: 132, Neg. LLF: 154.91231734193815
Optimization terminated successfully (Exit mode 0)
Current function value: 154.91231734193815
Iterations: 14
Function evaluations: 132
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 175.2880259421238
Iteration: 2, Func. Count: 22, Neg. LLF: 164.1659387733932
Iteration: 3, Func. Count: 33, Neg. LLF: 159.06139330776227
Iteration: 4, Func. Count: 44, Neg. LLF: 155.41507635621736
Iteration: 5, Func. Count: 54, Neg. LLF: 155.58585640236726
Iteration: 6, Func. Count: 65, Neg. LLF: 155.03513673170636
Iteration: 7, Func. Count: 75, Neg. LLF: 154.9920026210647
Iteration: 8, Func. Count: 85, Neg. LLF: 154.96554099105822
Iteration: 9, Func. Count: 95, Neg. LLF: 154.94671482216052
Iteration: 10, Func. Count: 105, Neg. LLF: 154.91879417652126
Iteration: 11, Func. Count: 115, Neg. LLF: 154.9135137731215
Iteration: 12, Func. Count: 125, Neg. LLF: 154.9123196976207
Iteration: 13, Func. Count: 135, Neg. LLF: 154.9123172215328
Iteration: 14, Func. Count: 144, Neg. LLF: 154.9123173035288
Optimization terminated successfully (Exit mode 0)
Current function value: 154.9123172215328
Iterations: 14
Function evaluations: 144
Gradient evaluations: 14
Iteration: 1, Func. Count: 12, Neg. LLF: 174.9490524206674
Iteration: 2, Func. Count: 24, Neg. LLF: 160.04498967502218
Iteration: 3, Func. Count: 36, Neg. LLF: 160.36304167369764
Iteration: 4, Func. Count: 48, Neg. LLF: 155.6440905621877
Iteration: 5, Func. Count: 59, Neg. LLF: 155.97026642305482
Iteration: 6, Func. Count: 71, Neg. LLF: 155.00969270315113
Iteration: 7, Func. Count: 82, Neg. LLF: 154.97933617806405
Iteration: 8, Func. Count: 93, Neg. LLF: 154.95661707088755
Iteration: 9, Func. Count: 104, Neg. LLF: 154.93680104448245
Iteration: 10, Func. Count: 115, Neg. LLF: 154.9167512282761
Iteration: 11, Func. Count: 126, Neg. LLF: 154.9126402590297
Iteration: 12, Func. Count: 137, Neg. LLF: 154.91231899144748
Iteration: 13, Func. Count: 148, Neg. LLF: 154.91231721164482
Iteration: 14, Func. Count: 158, Neg. LLF: 154.9123172482852
Optimization terminated successfully (Exit mode 0)
Current function value: 154.91231721164482
Iterations: 14
Function evaluations: 158
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 164.1771025667351
Iteration: 2, Func. Count: 18, Neg. LLF: 161.2507941826586
Iteration: 3, Func. Count: 27, Neg. LLF: 157.82944651036289
Iteration: 4, Func. Count: 35, Neg. LLF: 159.63970415610896
Iteration: 5, Func. Count: 44, Neg. LLF: 159.93328325203254
Iteration: 6, Func. Count: 53, Neg. LLF: 158.46999117105588
Iteration: 7, Func. Count: 62, Neg. LLF: 156.6615905468199
Iteration: 8, Func. Count: 70, Neg. LLF: 155.93379611522164
Iteration: 9, Func. Count: 78, Neg. LLF: 155.11644021677142
Iteration: 10, Func. Count: 86, Neg. LLF: 155.48690324900363
Iteration: 11, Func. Count: 95, Neg. LLF: 155.0059233414925
Iteration: 12, Func. Count: 103, Neg. LLF: 154.8770635328615
Iteration: 13, Func. Count: 111, Neg. LLF: 154.84229805747208
Iteration: 14, Func. Count: 119, Neg. LLF: 154.8373949837064
Iteration: 15, Func. Count: 127, Neg. LLF: 154.83671449932893
Iteration: 16, Func. Count: 135, Neg. LLF: 154.83667967787707
Iteration: 17, Func. Count: 143, Neg. LLF: 154.83665778682786
Iteration: 18, Func. Count: 150, Neg. LLF: 154.8366577925642
Optimization terminated successfully (Exit mode 0)
Current function value: 154.83665778682786
Iterations: 18
Function evaluations: 150
Gradient evaluations: 18
Iteration: 1, Func. Count: 10, Neg. LLF: 167.44577017350485
Iteration: 2, Func. Count: 20, Neg. LLF: 177.0120613973198
Iteration: 3, Func. Count: 30, Neg. LLF: 157.9240080609797
Iteration: 4, Func. Count: 40, Neg. LLF: 176.24945947755415
Iteration: 5, Func. Count: 50, Neg. LLF: 155.58904412196668
Iteration: 6, Func. Count: 59, Neg. LLF: 156.13738419933082
Iteration: 7, Func. Count: 69, Neg. LLF: 194.60576340770913
Iteration: 8, Func. Count: 79, Neg. LLF: 155.0032814073952
Iteration: 9, Func. Count: 89, Neg. LLF: 154.89228548167014
Iteration: 10, Func. Count: 98, Neg. LLF: 154.85968326195035
Iteration: 11, Func. Count: 107, Neg. LLF: 154.8429627657365
Iteration: 12, Func. Count: 116, Neg. LLF: 154.8378960768352
Iteration: 13, Func. Count: 125, Neg. LLF: 154.83675079229826
Iteration: 14, Func. Count: 134, Neg. LLF: 154.83666456893187
Iteration: 15, Func. Count: 143, Neg. LLF: 154.83666003041097
Iteration: 16, Func. Count: 152, Neg. LLF: 154.83665796641046
Iteration: 17, Func. Count: 160, Neg. LLF: 154.83665798566471
Optimization terminated successfully (Exit mode 0)
Current function value: 154.83665796641046
Iterations: 17
Function evaluations: 160
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 159.0385205542489
Iteration: 2, Func. Count: 21, Neg. LLF: 155.48573191557168
Iteration: 3, Func. Count: 31, Neg. LLF: 170.76207715858632
Iteration: 4, Func. Count: 42, Neg. LLF: 155.31989581144614
Iteration: 5, Func. Count: 53, Neg. LLF: 154.98710314541924
Iteration: 6, Func. Count: 63, Neg. LLF: 155.0429076835146
Iteration: 7, Func. Count: 74, Neg. LLF: 154.948908690259
Iteration: 8, Func. Count: 84, Neg. LLF: 154.8870883672323
Iteration: 9, Func. Count: 94, Neg. LLF: 154.85167150387755
Iteration: 10, Func. Count: 104, Neg. LLF: 154.83743032206374
Iteration: 11, Func. Count: 114, Neg. LLF: 154.8367411590595
Iteration: 12, Func. Count: 124, Neg. LLF: 154.83667449213797
Iteration: 13, Func. Count: 134, Neg. LLF: 154.8366634584973
Iteration: 14, Func. Count: 144, Neg. LLF: 154.83665965640196
Iteration: 15, Func. Count: 154, Neg. LLF: 154.83665763374344
Iteration: 16, Func. Count: 163, Neg. LLF: 154.83665770703132
Optimization terminated successfully (Exit mode 0)
Current function value: 154.83665763374344
Iterations: 16
Function evaluations: 163
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 175.32289209951705
Iteration: 2, Func. Count: 24, Neg. LLF: 157.77426267048398
Iteration: 3, Func. Count: 35, Neg. LLF: 155.49505158641733
Iteration: 4, Func. Count: 46, Neg. LLF: 160.958141818202
Iteration: 5, Func. Count: 58, Neg. LLF: 158.80750271729386
Iteration: 6, Func. Count: 70, Neg. LLF: 155.39592594586978
Iteration: 7, Func. Count: 82, Neg. LLF: 155.3953649532501
Iteration: 8, Func. Count: 94, Neg. LLF: 155.155243647473
Iteration: 9, Func. Count: 106, Neg. LLF: 154.8820366712656
Iteration: 10, Func. Count: 117, Neg. LLF: 154.85669893251293
Iteration: 11, Func. Count: 128, Neg. LLF: 154.84529510597284
Iteration: 12, Func. Count: 139, Neg. LLF: 154.8393263979778
Iteration: 13, Func. Count: 150, Neg. LLF: 154.8371327436308
Iteration: 14, Func. Count: 161, Neg. LLF: 154.8367302966273
Iteration: 15, Func. Count: 172, Neg. LLF: 154.83665858520968
Iteration: 16, Func. Count: 183, Neg. LLF: 154.83665753993
Iteration: 17, Func. Count: 193, Neg. LLF: 154.8366576082665
Optimization terminated successfully (Exit mode 0)
Current function value: 154.83665753993
Iterations: 17
Function evaluations: 193
Gradient evaluations: 17
Iteration: 1, Func. Count: 13, Neg. LLF: 175.10384017390646
Iteration: 2, Func. Count: 26, Neg. LLF: 159.17732477359394
Iteration: 3, Func. Count: 39, Neg. LLF: 159.5518614072743
Iteration: 4, Func. Count: 52, Neg. LLF: 186.610402514586
Iteration: 5, Func. Count: 65, Neg. LLF: 155.75199503282147
Iteration: 6, Func. Count: 77, Neg. LLF: 157.2919511172379
Iteration: 7, Func. Count: 90, Neg. LLF: 160.018982205246
Iteration: 8, Func. Count: 103, Neg. LLF: 154.91285737883788
Iteration: 9, Func. Count: 115, Neg. LLF: 154.8736168854697
Iteration: 10, Func. Count: 127, Neg. LLF: 154.8520227493537
Iteration: 11, Func. Count: 139, Neg. LLF: 154.84117567996117
Iteration: 12, Func. Count: 151, Neg. LLF: 154.83811002057996
Iteration: 13, Func. Count: 163, Neg. LLF: 154.83714763724953
Iteration: 14, Func. Count: 175, Neg. LLF: 154.8367239371914
Iteration: 15, Func. Count: 187, Neg. LLF: 154.83666494312163
Iteration: 16, Func. Count: 199, Neg. LLF: 154.836659449775
Iteration: 17, Func. Count: 211, Neg. LLF: 154.83665824869635
Iteration: 18, Func. Count: 223, Neg. LLF: 154.8366575885156
Optimization terminated successfully (Exit mode 0)
Current function value: 154.8366575885156
Iterations: 18
Function evaluations: 223
Gradient evaluations: 18
Iteration: 1, Func. Count: 10, Neg. LLF: 161.71425952117647
Iteration: 2, Func. Count: 20, Neg. LLF: 159.88929740228718
Iteration: 3, Func. Count: 30, Neg. LLF: 157.95607099336667
Iteration: 4, Func. Count: 39, Neg. LLF: 175.30582906574477
Iteration: 5, Func. Count: 49, Neg. LLF: 157.22396883705517
Iteration: 6, Func. Count: 58, Neg. LLF: 157.1310266843459
Iteration: 7, Func. Count: 67, Neg. LLF: 157.07963062821966
Iteration: 8, Func. Count: 77, Neg. LLF: 156.52461748559145
Iteration: 9, Func. Count: 86, Neg. LLF: 163.9399817389059
Iteration: 10, Func. Count: 96, Neg. LLF: 164.35869221743917
Iteration: 11, Func. Count: 106, Neg. LLF: 160.37587488944928
Iteration: 12, Func. Count: 116, Neg. LLF: 160.61881510960734
Iteration: 13, Func. Count: 126, Neg. LLF: 157.22765504621333
Iteration: 14, Func. Count: 136, Neg. LLF: 157.14962794329887
Iteration: 15, Func. Count: 146, Neg. LLF: 155.07644899307957
Iteration: 16, Func. Count: 156, Neg. LLF: 154.9021598767019
Iteration: 17, Func. Count: 165, Neg. LLF: 154.85473007613234
Iteration: 18, Func. Count: 174, Neg. LLF: 154.8447355270459
Iteration: 19, Func. Count: 183, Neg. LLF: 154.83862423656686
Iteration: 20, Func. Count: 192, Neg. LLF: 154.83675082542666
Iteration: 21, Func. Count: 201, Neg. LLF: 154.8364858545029
Iteration: 22, Func. Count: 210, Neg. LLF: 154.83648287893743
Iteration: 23, Func. Count: 219, Neg. LLF: 154.83648154967585
Iteration: 24, Func. Count: 227, Neg. LLF: 154.83648154395507
Optimization terminated successfully (Exit mode 0)
Current function value: 154.83648154967585
Iterations: 24
Function evaluations: 227
Gradient evaluations: 24
Iteration: 1, Func. Count: 11, Neg. LLF: 213.31620654962532
Iteration: 2, Func. Count: 22, Neg. LLF: 296.7545171753706
Iteration: 3, Func. Count: 33, Neg. LLF: 171.84121060688756
Iteration: 4, Func. Count: 44, Neg. LLF: 155.40374779939145
Iteration: 5, Func. Count: 54, Neg. LLF: 160.00197457175386
Iteration: 6, Func. Count: 65, Neg. LLF: 155.05490053995172
Iteration: 7, Func. Count: 76, Neg. LLF: 154.99175590669023
Iteration: 8, Func. Count: 87, Neg. LLF: 154.83892166182798
Iteration: 9, Func. Count: 97, Neg. LLF: 154.8375611545407
Iteration: 10, Func. Count: 107, Neg. LLF: 154.83668134143772
Iteration: 11, Func. Count: 117, Neg. LLF: 154.83653381417895
Iteration: 12, Func. Count: 127, Neg. LLF: 154.8364856943392
Iteration: 13, Func. Count: 137, Neg. LLF: 154.83648232553222
Iteration: 14, Func. Count: 147, Neg. LLF: 154.83648164913924
Optimization terminated successfully (Exit mode 0)
Current function value: 154.83648164913924
Iterations: 14
Function evaluations: 147
Gradient evaluations: 14
Iteration: 1, Func. Count: 12, Neg. LLF: 173.15986215407028
Iteration: 2, Func. Count: 24, Neg. LLF: 193.13957048913375
Iteration: 3, Func. Count: 36, Neg. LLF: 155.93695779396182
Iteration: 4, Func. Count: 47, Neg. LLF: 159.63179549998588
Iteration: 5, Func. Count: 59, Neg. LLF: 206.2034925418858
Iteration: 6, Func. Count: 71, Neg. LLF: 156.91693431342011
Iteration: 7, Func. Count: 83, Neg. LLF: 155.01764423903612
Iteration: 8, Func. Count: 94, Neg. LLF: 154.91936478783316
Iteration: 9, Func. Count: 105, Neg. LLF: 154.90922336830232
Iteration: 10, Func. Count: 116, Neg. LLF: 154.8769467933547
Iteration: 11, Func. Count: 127, Neg. LLF: 154.86652310267195
Iteration: 12, Func. Count: 138, Neg. LLF: 154.84293253898716
Iteration: 13, Func. Count: 149, Neg. LLF: 154.83674560624743
Iteration: 14, Func. Count: 160, Neg. LLF: 154.8365076769167
Iteration: 15, Func. Count: 171, Neg. LLF: 154.83648689057003
Iteration: 16, Func. Count: 182, Neg. LLF: 154.8364815864493
Iteration: 17, Func. Count: 192, Neg. LLF: 154.8364816595222
Optimization terminated successfully (Exit mode 0)
Current function value: 154.8364815864493
Iterations: 17
Function evaluations: 192
Gradient evaluations: 17
Iteration: 1, Func. Count: 13, Neg. LLF: 282.8824213117294
Iteration: 2, Func. Count: 26, Neg. LLF: 237.10974274235087
Iteration: 3, Func. Count: 39, Neg. LLF: 162.4554804288981
Iteration: 4, Func. Count: 52, Neg. LLF: 165.99851208118818
Iteration: 5, Func. Count: 65, Neg. LLF: 157.32494221887873
Iteration: 6, Func. Count: 78, Neg. LLF: 156.8595375944024
Iteration: 7, Func. Count: 91, Neg. LLF: 155.60435267216408
Iteration: 8, Func. Count: 104, Neg. LLF: 155.6469731878439
Iteration: 9, Func. Count: 117, Neg. LLF: 154.85613435652434
Iteration: 10, Func. Count: 129, Neg. LLF: 154.84560423605856
Iteration: 11, Func. Count: 141, Neg. LLF: 154.8401141489253
Iteration: 12, Func. Count: 153, Neg. LLF: 154.83778865796162
Iteration: 13, Func. Count: 165, Neg. LLF: 154.83664001378943
Iteration: 14, Func. Count: 177, Neg. LLF: 154.8365248040571
Iteration: 15, Func. Count: 189, Neg. LLF: 154.8364882854828
Iteration: 16, Func. Count: 201, Neg. LLF: 154.83648217964114
Iteration: 17, Func. Count: 213, Neg. LLF: 154.83648155963112
Optimization terminated successfully (Exit mode 0)
Current function value: 154.83648155963112
Iterations: 17
Function evaluations: 213
Gradient evaluations: 17
Iteration: 1, Func. Count: 14, Neg. LLF: 280.93733410912375
Iteration: 2, Func. Count: 28, Neg. LLF: 173.9532178150878
Iteration: 3, Func. Count: 42, Neg. LLF: 158.16745841910645
Iteration: 4, Func. Count: 55, Neg. LLF: 157.25470202115724
Iteration: 5, Func. Count: 69, Neg. LLF: 177.5674370343783
Iteration: 6, Func. Count: 83, Neg. LLF: 156.76964484925568
Iteration: 7, Func. Count: 97, Neg. LLF: 155.0760621574866
Iteration: 8, Func. Count: 110, Neg. LLF: 155.50988075687917
Iteration: 9, Func. Count: 124, Neg. LLF: 155.00824702128898
Iteration: 10, Func. Count: 137, Neg. LLF: 154.90856175801434
Iteration: 11, Func. Count: 150, Neg. LLF: 154.87811554689696
Iteration: 12, Func. Count: 163, Neg. LLF: 154.84970769485662
Iteration: 13, Func. Count: 176, Neg. LLF: 154.83976219915021
Iteration: 14, Func. Count: 189, Neg. LLF: 154.83652280293492
Iteration: 15, Func. Count: 202, Neg. LLF: 154.83648553539473
Iteration: 16, Func. Count: 215, Neg. LLF: 154.8364823189862
Iteration: 17, Func. Count: 227, Neg. LLF: 154.83648233647548
Optimization terminated successfully (Exit mode 0)
Current function value: 154.8364823189862
Iterations: 17
Function evaluations: 227
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 162.61559466417688
Iteration: 2, Func. Count: 22, Neg. LLF: 161.979079626573
Iteration: 3, Func. Count: 33, Neg. LLF: 159.2312357651256
Iteration: 4, Func. Count: 44, Neg. LLF: 156.89341230829066
Iteration: 5, Func. Count: 55, Neg. LLF: 156.13948796906547
Iteration: 6, Func. Count: 65, Neg. LLF: 156.84111719709995
Iteration: 7, Func. Count: 76, Neg. LLF: 155.80957007824844
Iteration: 8, Func. Count: 86, Neg. LLF: 155.71883969297005
Iteration: 9, Func. Count: 96, Neg. LLF: 155.49195109875893
Iteration: 10, Func. Count: 106, Neg. LLF: 158.26489082886522
Iteration: 11, Func. Count: 117, Neg. LLF: 174.76689841833357
Iteration: 12, Func. Count: 128, Neg. LLF: 165.17698972834722
Iteration: 13, Func. Count: 139, Neg. LLF: 164.55273631435182
Iteration: 14, Func. Count: 150, Neg. LLF: 168.62278583018156
Iteration: 15, Func. Count: 161, Neg. LLF: 161.87131519933297
Iteration: 16, Func. Count: 172, Neg. LLF: 156.44266669284283
Iteration: 17, Func. Count: 183, Neg. LLF: 158.8117479058112
Iteration: 18, Func. Count: 194, Neg. LLF: 155.48060641217648
Iteration: 19, Func. Count: 205, Neg. LLF: 154.39986990268588
Iteration: 20, Func. Count: 215, Neg. LLF: 154.28552271115913
Iteration: 21, Func. Count: 225, Neg. LLF: 154.24923936532753
Iteration: 22, Func. Count: 235, Neg. LLF: 154.23010619028432
Iteration: 23, Func. Count: 245, Neg. LLF: 154.22359503986914
Iteration: 24, Func. Count: 255, Neg. LLF: 154.2184883299927
Iteration: 25, Func. Count: 265, Neg. LLF: 154.2177095125373
Iteration: 26, Func. Count: 275, Neg. LLF: 154.21745655473163
Iteration: 27, Func. Count: 285, Neg. LLF: 154.21740998803247
Iteration: 28, Func. Count: 295, Neg. LLF: 154.21740719249067
Iteration: 29, Func. Count: 305, Neg. LLF: 154.21740639261938
Optimization terminated successfully (Exit mode 0)
Current function value: 154.21740639261938
Iterations: 29
Function evaluations: 305
Gradient evaluations: 29
Iteration: 1, Func. Count: 12, Neg. LLF: 289.79077373378664
Iteration: 2, Func. Count: 24, Neg. LLF: 177.58673514434057
Iteration: 3, Func. Count: 36, Neg. LLF: 175.7125084350977
Iteration: 4, Func. Count: 48, Neg. LLF: 162.86846385526775
Iteration: 5, Func. Count: 60, Neg. LLF: 156.46662497008057
Iteration: 6, Func. Count: 72, Neg. LLF: 161.25041152315143
Iteration: 7, Func. Count: 84, Neg. LLF: 154.62313859076178
Iteration: 8, Func. Count: 95, Neg. LLF: 154.7188877976833
Iteration: 9, Func. Count: 107, Neg. LLF: 154.30108999685618
Iteration: 10, Func. Count: 118, Neg. LLF: 154.23033539696914
Iteration: 11, Func. Count: 129, Neg. LLF: 154.2248838105066
Iteration: 12, Func. Count: 140, Neg. LLF: 154.22093888715384
Iteration: 13, Func. Count: 151, Neg. LLF: 154.21880569270138
Iteration: 14, Func. Count: 162, Neg. LLF: 154.21749720786255
Iteration: 15, Func. Count: 173, Neg. LLF: 154.21741123556004
Iteration: 16, Func. Count: 184, Neg. LLF: 154.21740674935228
Iteration: 17, Func. Count: 194, Neg. LLF: 154.21740678967547
Optimization terminated successfully (Exit mode 0)
Current function value: 154.21740674935228
Iterations: 17
Function evaluations: 194
Gradient evaluations: 17
Iteration: 1, Func. Count: 13, Neg. LLF: 184.34481853757615
Iteration: 2, Func. Count: 26, Neg. LLF: 189.91883751322027
Iteration: 3, Func. Count: 39, Neg. LLF: 162.25200088418163
Iteration: 4, Func. Count: 52, Neg. LLF: 168.6460317882641
Iteration: 5, Func. Count: 65, Neg. LLF: 158.06019397659497
Iteration: 6, Func. Count: 78, Neg. LLF: 155.00083074816158
Iteration: 7, Func. Count: 91, Neg. LLF: 157.42667655083227
Iteration: 8, Func. Count: 104, Neg. LLF: 154.246886681642
Iteration: 9, Func. Count: 116, Neg. LLF: 154.22835458625272
Iteration: 10, Func. Count: 128, Neg. LLF: 154.22050240316327
Iteration: 11, Func. Count: 140, Neg. LLF: 154.2218019106633
Iteration: 12, Func. Count: 153, Neg. LLF: 154.2181534144179
Iteration: 13, Func. Count: 165, Neg. LLF: 154.21750178070025
Iteration: 14, Func. Count: 177, Neg. LLF: 154.21742458170942
Iteration: 15, Func. Count: 189, Neg. LLF: 154.21741812991826
Iteration: 16, Func. Count: 201, Neg. LLF: 154.2174067691606
Iteration: 17, Func. Count: 212, Neg. LLF: 154.21740676581376
Optimization terminated successfully (Exit mode 0)
Current function value: 154.2174067691606
Iterations: 17
Function evaluations: 212
Gradient evaluations: 17
Iteration: 1, Func. Count: 14, Neg. LLF: 178.84027762286982
Iteration: 2, Func. Count: 28, Neg. LLF: 189.69195401890158
Iteration: 3, Func. Count: 42, Neg. LLF: 162.48810577239135
Iteration: 4, Func. Count: 56, Neg. LLF: 164.54085138258472
Iteration: 5, Func. Count: 70, Neg. LLF: 165.45491501260764
Iteration: 6, Func. Count: 84, Neg. LLF: 153.76092862617534
Iteration: 7, Func. Count: 97, Neg. LLF: 156.76343745204352
Iteration: 8, Func. Count: 111, Neg. LLF: 154.069104642548
Iteration: 9, Func. Count: 125, Neg. LLF: 153.71572477354815
Iteration: 10, Func. Count: 139, Neg. LLF: 153.6025083521108
Iteration: 11, Func. Count: 152, Neg. LLF: 153.59138083158126
Iteration: 12, Func. Count: 165, Neg. LLF: 153.58707261119454
Iteration: 13, Func. Count: 178, Neg. LLF: 153.58674911564307
Iteration: 14, Func. Count: 191, Neg. LLF: 153.58663539986986
Iteration: 15, Func. Count: 204, Neg. LLF: 153.5866311057001
Iteration: 16, Func. Count: 217, Neg. LLF: 153.58662947843231
Iteration: 17, Func. Count: 229, Neg. LLF: 153.58662946773842
Optimization terminated successfully (Exit mode 0)
Current function value: 153.58662947843231
Iterations: 17
Function evaluations: 229
Gradient evaluations: 17
Iteration: 1, Func. Count: 15, Neg. LLF: 168.6748229095921
Iteration: 2, Func. Count: 30, Neg. LLF: 185.6138147901801
Iteration: 3, Func. Count: 45, Neg. LLF: 160.51103543592467
Iteration: 4, Func. Count: 60, Neg. LLF: 155.7735898301124
Iteration: 5, Func. Count: 75, Neg. LLF: 154.1401049280102
Iteration: 6, Func. Count: 89, Neg. LLF: 153.95151485992164
Iteration: 7, Func. Count: 103, Neg. LLF: 157.27326096611418
Iteration: 8, Func. Count: 118, Neg. LLF: 153.8556482571641
Iteration: 9, Func. Count: 133, Neg. LLF: 154.0743177916981
Iteration: 10, Func. Count: 148, Neg. LLF: 153.79703956901466
Iteration: 11, Func. Count: 163, Neg. LLF: 153.61173141048988
Iteration: 12, Func. Count: 177, Neg. LLF: 153.59520548317695
Iteration: 13, Func. Count: 191, Neg. LLF: 153.5907288443318
Iteration: 14, Func. Count: 205, Neg. LLF: 153.5876410862844
Iteration: 15, Func. Count: 219, Neg. LLF: 153.5866842938818
Iteration: 16, Func. Count: 233, Neg. LLF: 153.58664854628498
Iteration: 17, Func. Count: 247, Neg. LLF: 153.58663502706622
Iteration: 18, Func. Count: 261, Neg. LLF: 153.58662985497196
Iteration: 19, Func. Count: 275, Neg. LLF: 153.5866290582503
Optimization terminated successfully (Exit mode 0)
Current function value: 153.5866290582503
Iterations: 19
Function evaluations: 275
Gradient evaluations: 19
Iteration: 1, Func. Count: 12, Neg. LLF: 162.7354244726882
Iteration: 2, Func. Count: 24, Neg. LLF: 191.25022517534282
Iteration: 3, Func. Count: 36, Neg. LLF: 160.11320347114145
Iteration: 4, Func. Count: 49, Neg. LLF: 158.31138686986824
Iteration: 5, Func. Count: 61, Neg. LLF: 156.19143123454404
Iteration: 6, Func. Count: 72, Neg. LLF: 159.11686034445182
Iteration: 7, Func. Count: 84, Neg. LLF: 155.79923776692243
Iteration: 8, Func. Count: 95, Neg. LLF: 155.67117468458173
Iteration: 9, Func. Count: 106, Neg. LLF: 155.59119799565835
Iteration: 10, Func. Count: 118, Neg. LLF: 247.61321521009089
Iteration: 11, Func. Count: 130, Neg. LLF: 156.01886982204368
Iteration: 12, Func. Count: 142, Neg. LLF: 154.49850213046014
Iteration: 13, Func. Count: 154, Neg. LLF: 153.88282460273712
Iteration: 14, Func. Count: 165, Neg. LLF: 153.72633427960267
Iteration: 15, Func. Count: 176, Neg. LLF: 153.70706876906692
Iteration: 16, Func. Count: 187, Neg. LLF: 153.70300280416714
Iteration: 17, Func. Count: 198, Neg. LLF: 153.70237727902332
Iteration: 18, Func. Count: 209, Neg. LLF: 153.70230846218286
Iteration: 19, Func. Count: 220, Neg. LLF: 153.70222237848967
Iteration: 20, Func. Count: 231, Neg. LLF: 153.70222524824442
Iteration: 21, Func. Count: 243, Neg. LLF: 153.70221269691766
Optimization terminated successfully (Exit mode 0)
Current function value: 153.70221269691766
Iterations: 21
Function evaluations: 243
Gradient evaluations: 21
Iteration: 1, Func. Count: 13, Neg. LLF: 288.1782642049672
Iteration: 2, Func. Count: 26, Neg. LLF: 191.08297149320472
Iteration: 3, Func. Count: 39, Neg. LLF: 160.57868775140295
Iteration: 4, Func. Count: 52, Neg. LLF: 156.40528860572755
Iteration: 5, Func. Count: 65, Neg. LLF: 156.42483490234275
Iteration: 6, Func. Count: 78, Neg. LLF: 154.59406355253435
Iteration: 7, Func. Count: 91, Neg. LLF: 153.83160877835266
Iteration: 8, Func. Count: 103, Neg. LLF: 153.75311276942062
Iteration: 9, Func. Count: 115, Neg. LLF: 153.81295959176393
Iteration: 10, Func. Count: 128, Neg. LLF: 153.73189399147768
Iteration: 11, Func. Count: 141, Neg. LLF: 153.70689721448653
Iteration: 12, Func. Count: 153, Neg. LLF: 153.705196246304
Iteration: 13, Func. Count: 165, Neg. LLF: 153.70359384543025
Iteration: 14, Func. Count: 177, Neg. LLF: 153.7023878932662
Iteration: 15, Func. Count: 189, Neg. LLF: 153.70222220863127
Iteration: 16, Func. Count: 201, Neg. LLF: 153.70221298613566
Iteration: 17, Func. Count: 212, Neg. LLF: 153.70221305614845
Optimization terminated successfully (Exit mode 0)
Current function value: 153.70221298613566
Iterations: 17
Function evaluations: 212
Gradient evaluations: 17
Iteration: 1, Func. Count: 14, Neg. LLF: 284.5759924894644
Iteration: 2, Func. Count: 28, Neg. LLF: 191.1191031422673
Iteration: 3, Func. Count: 42, Neg. LLF: 165.11491180718838
Iteration: 4, Func. Count: 56, Neg. LLF: 164.19589263959978
Iteration: 5, Func. Count: 70, Neg. LLF: 158.55515934477543
Iteration: 6, Func. Count: 84, Neg. LLF: 157.24156885244128
Iteration: 7, Func. Count: 98, Neg. LLF: 154.122319466958
Iteration: 8, Func. Count: 111, Neg. LLF: 153.83451869002806
Iteration: 9, Func. Count: 124, Neg. LLF: 154.14767328265566
Iteration: 10, Func. Count: 138, Neg. LLF: 153.7326676733779
Iteration: 11, Func. Count: 151, Neg. LLF: 153.70935221951908
Iteration: 12, Func. Count: 164, Neg. LLF: 153.75115762300882
Iteration: 13, Func. Count: 178, Neg. LLF: 153.70436134006204
Iteration: 14, Func. Count: 191, Neg. LLF: 153.70328109898642
Iteration: 15, Func. Count: 204, Neg. LLF: 153.70257884489445
Iteration: 16, Func. Count: 217, Neg. LLF: 153.70242150922581
Iteration: 17, Func. Count: 230, Neg. LLF: 153.70233144875783
Iteration: 18, Func. Count: 243, Neg. LLF: 153.7022485482239
Iteration: 19, Func. Count: 256, Neg. LLF: 153.70221808773866
Iteration: 20, Func. Count: 269, Neg. LLF: 153.70221298009304
Iteration: 21, Func. Count: 281, Neg. LLF: 153.70221298511854
Optimization terminated successfully (Exit mode 0)
Current function value: 153.70221298009304
Iterations: 21
Function evaluations: 281
Gradient evaluations: 21
Iteration: 1, Func. Count: 15, Neg. LLF: 219.9476607725594
Iteration: 2, Func. Count: 30, Neg. LLF: 190.03675481664823
Iteration: 3, Func. Count: 45, Neg. LLF: 163.30031811720423
Iteration: 4, Func. Count: 60, Neg. LLF: 159.0681035796443
Iteration: 5, Func. Count: 75, Neg. LLF: 157.23894949827394
Iteration: 6, Func. Count: 90, Neg. LLF: 153.80340493226817
Iteration: 7, Func. Count: 104, Neg. LLF: 157.32722706769673
Iteration: 8, Func. Count: 119, Neg. LLF: 153.6677061619657
Iteration: 9, Func. Count: 133, Neg. LLF: 153.59633606444737
Iteration: 10, Func. Count: 147, Neg. LLF: 153.63681306334067
Iteration: 11, Func. Count: 162, Neg. LLF: 153.58445561828538
Iteration: 12, Func. Count: 176, Neg. LLF: 153.58368002991347
Iteration: 13, Func. Count: 190, Neg. LLF: 153.58343768776166
Iteration: 14, Func. Count: 204, Neg. LLF: 153.58326578474632
Iteration: 15, Func. Count: 218, Neg. LLF: 153.58322751465565
Iteration: 16, Func. Count: 232, Neg. LLF: 153.58320809553334
Iteration: 17, Func. Count: 246, Neg. LLF: 153.5832038172545
Iteration: 18, Func. Count: 260, Neg. LLF: 153.5832029644433
Optimization terminated successfully (Exit mode 0)
Current function value: 153.5832029644433
Iterations: 18
Function evaluations: 260
Gradient evaluations: 18
Iteration: 1, Func. Count: 16, Neg. LLF: 169.1960795229361
Iteration: 2, Func. Count: 32, Neg. LLF: 188.60399227155088
Iteration: 3, Func. Count: 48, Neg. LLF: 160.37777314274118
Iteration: 4, Func. Count: 64, Neg. LLF: 154.2767813104916
Iteration: 5, Func. Count: 79, Neg. LLF: 166.44857349994498
Iteration: 6, Func. Count: 95, Neg. LLF: 157.383172497036
Iteration: 7, Func. Count: 111, Neg. LLF: 154.29346375413076
Iteration: 8, Func. Count: 127, Neg. LLF: 155.3531366557349
Iteration: 9, Func. Count: 143, Neg. LLF: 154.1890064746735
Iteration: 10, Func. Count: 159, Neg. LLF: 153.63531863026896
Iteration: 11, Func. Count: 174, Neg. LLF: 153.61838471283906
Iteration: 12, Func. Count: 189, Neg. LLF: 153.60642296957232
Iteration: 13, Func. Count: 204, Neg. LLF: 153.58871151661836
Iteration: 14, Func. Count: 219, Neg. LLF: 153.58518224184684
Iteration: 15, Func. Count: 234, Neg. LLF: 153.5840839974763
Iteration: 16, Func. Count: 249, Neg. LLF: 153.58352024665666
Iteration: 17, Func. Count: 264, Neg. LLF: 153.58323436301356
Iteration: 18, Func. Count: 279, Neg. LLF: 153.58320462895858
Iteration: 19, Func. Count: 294, Neg. LLF: 153.58320291798515
Iteration: 20, Func. Count: 308, Neg. LLF: 153.5832030198188
Optimization terminated successfully (Exit mode 0)
Current function value: 153.58320291798515
Iterations: 20
Function evaluations: 308
Gradient evaluations: 20
Iteration: 1, Func. Count: 7, Neg. LLF: 164.19275831812055
Iteration: 2, Func. Count: 14, Neg. LLF: 160.9324712320862
Iteration: 3, Func. Count: 21, Neg. LLF: 157.93332371148307
Iteration: 4, Func. Count: 27, Neg. LLF: 162.17368922798988
Iteration: 5, Func. Count: 34, Neg. LLF: 159.28145658051216
Iteration: 6, Func. Count: 41, Neg. LLF: 156.97629800597554
Iteration: 7, Func. Count: 47, Neg. LLF: 156.63665193650235
Iteration: 8, Func. Count: 53, Neg. LLF: 157.508039947809
Iteration: 9, Func. Count: 60, Neg. LLF: 162.50976101244345
Iteration: 10, Func. Count: 67, Neg. LLF: 159.49575810207966
Iteration: 11, Func. Count: 74, Neg. LLF: 156.03447029472545
Iteration: 12, Func. Count: 81, Neg. LLF: 154.99809267784744
Iteration: 13, Func. Count: 87, Neg. LLF: 154.9215012204185
Iteration: 14, Func. Count: 93, Neg. LLF: 154.91445757802174
Iteration: 15, Func. Count: 99, Neg. LLF: 154.9123242671733
Iteration: 16, Func. Count: 105, Neg. LLF: 154.91231756319607
Iteration: 17, Func. Count: 110, Neg. LLF: 154.91231755754958
Optimization terminated successfully (Exit mode 0)
Current function value: 154.91231756319607
Iterations: 17
Function evaluations: 110
Gradient evaluations: 17
Iteration: 1, Func. Count: 5, Neg. LLF: 174.95450516406845
Iteration: 2, Func. Count: 9, Neg. LLF: 174.5501373519674
Iteration: 3, Func. Count: 13, Neg. LLF: 173.83189808812003
Iteration: 4, Func. Count: 17, Neg. LLF: 173.80450809167536
Iteration: 5, Func. Count: 21, Neg. LLF: 173.68461799355566
Iteration: 6, Func. Count: 25, Neg. LLF: 173.3870972565939
Iteration: 7, Func. Count: 29, Neg. LLF: 173.34283967347713
Iteration: 8, Func. Count: 33, Neg. LLF: 173.32543684680718
Iteration: 9, Func. Count: 37, Neg. LLF: 173.29637995842162
Iteration: 10, Func. Count: 41, Neg. LLF: 173.28666939195452
Iteration: 11, Func. Count: 45, Neg. LLF: 173.28376920502598
Iteration: 12, Func. Count: 49, Neg. LLF: 173.2834051838672
Iteration: 13, Func. Count: 53, Neg. LLF: 173.28339067754308
Iteration: 14, Func. Count: 56, Neg. LLF: 173.28339067754644
Optimization terminated successfully (Exit mode 0)
Current function value: 173.28339067754308
Iterations: 14
Function evaluations: 56
Gradient evaluations: 14
Iteration: 1, Func. Count: 6, Neg. LLF: 607.4765687403701
Iteration: 2, Func. Count: 12, Neg. LLF: 163.60095809626785
Iteration: 3, Func. Count: 17, Neg. LLF: 201.0977377527426
Iteration: 4, Func. Count: 23, Neg. LLF: 162.81551707599797
Iteration: 5, Func. Count: 28, Neg. LLF: 162.92976379538422
Iteration: 6, Func. Count: 34, Neg. LLF: 162.75087251716073
Iteration: 7, Func. Count: 39, Neg. LLF: 162.74404127780383
Iteration: 8, Func. Count: 44, Neg. LLF: 162.74273456133844
Iteration: 9, Func. Count: 49, Neg. LLF: 162.7418227021305
Iteration: 10, Func. Count: 54, Neg. LLF: 162.74168690468792
Iteration: 11, Func. Count: 59, Neg. LLF: 162.74166996170874
Iteration: 12, Func. Count: 64, Neg. LLF: 162.7416693653747
Optimization terminated successfully (Exit mode 0)
Current function value: 162.7416693653747
Iterations: 12
Function evaluations: 64
Gradient evaluations: 12
Iteration: 1, Func. Count: 7, Neg. LLF: 467.61732155821704
Iteration: 2, Func. Count: 14, Neg. LLF: 163.50547649685808
Iteration: 3, Func. Count: 20, Neg. LLF: 178.03774049864302
Iteration: 4, Func. Count: 27, Neg. LLF: 163.04127885783566
Iteration: 5, Func. Count: 33, Neg. LLF: 162.77361919238078
Iteration: 6, Func. Count: 39, Neg. LLF: 162.75503296520725
Iteration: 7, Func. Count: 45, Neg. LLF: 162.7445368636585
Iteration: 8, Func. Count: 51, Neg. LLF: 162.7426693497214
Iteration: 9, Func. Count: 57, Neg. LLF: 162.74223420674346
Iteration: 10, Func. Count: 63, Neg. LLF: 162.74192664108156
Iteration: 11, Func. Count: 69, Neg. LLF: 162.7417167526974
Iteration: 12, Func. Count: 75, Neg. LLF: 162.74167271818155
Iteration: 13, Func. Count: 81, Neg. LLF: 162.74166944109402
Iteration: 14, Func. Count: 86, Neg. LLF: 162.74166947947097
Optimization terminated successfully (Exit mode 0)
Current function value: 162.74166944109402
Iterations: 14
Function evaluations: 86
Gradient evaluations: 14
Iteration: 1, Func. Count: 8, Neg. LLF: 240.7575696619276
Iteration: 2, Func. Count: 16, Neg. LLF: 251.0784898623197
Iteration: 3, Func. Count: 24, Neg. LLF: 176.73348484998522
Iteration: 4, Func. Count: 32, Neg. LLF: 163.82381711922608
Iteration: 5, Func. Count: 39, Neg. LLF: 163.23605537159625
Iteration: 6, Func. Count: 46, Neg. LLF: 162.98309485515878
Iteration: 7, Func. Count: 53, Neg. LLF: 162.78007360168118
Iteration: 8, Func. Count: 60, Neg. LLF: 162.76473220295884
Iteration: 9, Func. Count: 67, Neg. LLF: 162.7596606182897
Iteration: 10, Func. Count: 74, Neg. LLF: 162.75258867120306
Iteration: 11, Func. Count: 81, Neg. LLF: 162.74524379436812
Iteration: 12, Func. Count: 88, Neg. LLF: 162.74230930728973
Iteration: 13, Func. Count: 95, Neg. LLF: 162.74171354531552
Iteration: 14, Func. Count: 102, Neg. LLF: 162.74167566848334
Iteration: 15, Func. Count: 109, Neg. LLF: 162.7416699628192
Iteration: 16, Func. Count: 116, Neg. LLF: 162.741669368962
Optimization terminated successfully (Exit mode 0)
Current function value: 162.741669368962
Iterations: 16
Function evaluations: 116
Gradient evaluations: 16
Iteration: 1, Func. Count: 9, Neg. LLF: 238.52362013785458
Iteration: 2, Func. Count: 18, Neg. LLF: 245.90857277820146
Iteration: 3, Func. Count: 27, Neg. LLF: 185.9581204951477
Iteration: 4, Func. Count: 36, Neg. LLF: 164.59768543690876
Iteration: 5, Func. Count: 44, Neg. LLF: 164.70974804569082
Iteration: 6, Func. Count: 53, Neg. LLF: 163.62448227862004
Iteration: 7, Func. Count: 62, Neg. LLF: 163.062439620468
Iteration: 8, Func. Count: 70, Neg. LLF: 162.8403306686386
Iteration: 9, Func. Count: 78, Neg. LLF: 162.81398563505115
Iteration: 10, Func. Count: 86, Neg. LLF: 162.77891624234803
Iteration: 11, Func. Count: 94, Neg. LLF: 162.77014100219992
Iteration: 12, Func. Count: 102, Neg. LLF: 162.76251919435614
Iteration: 13, Func. Count: 110, Neg. LLF: 162.75037485005822
Iteration: 14, Func. Count: 118, Neg. LLF: 162.74392179763865
Iteration: 15, Func. Count: 126, Neg. LLF: 162.74175062954797
Iteration: 16, Func. Count: 134, Neg. LLF: 162.7416696116676
Iteration: 17, Func. Count: 141, Neg. LLF: 162.74166969176127
Optimization terminated successfully (Exit mode 0)
Current function value: 162.7416696116676
Iterations: 17
Function evaluations: 141
Gradient evaluations: 17
Iteration: 1, Func. Count: 6, Neg. LLF: 169.2378031472918
Iteration: 2, Func. Count: 11, Neg. LLF: 169.1160802353304
Iteration: 3, Func. Count: 17, Neg. LLF: 174.29866146806395
Iteration: 4, Func. Count: 23, Neg. LLF: 167.31412324101805
Iteration: 5, Func. Count: 28, Neg. LLF: 167.24855487121243
Iteration: 6, Func. Count: 33, Neg. LLF: 166.93986400842462
Iteration: 7, Func. Count: 38, Neg. LLF: 166.2954411769022
Iteration: 8, Func. Count: 43, Neg. LLF: 166.1482598505916
Iteration: 9, Func. Count: 48, Neg. LLF: 165.972613407009
Iteration: 10, Func. Count: 53, Neg. LLF: 165.93634546792205
Iteration: 11, Func. Count: 59, Neg. LLF: 165.74003609055524
Iteration: 12, Func. Count: 64, Neg. LLF: 165.73566828640799
Iteration: 13, Func. Count: 69, Neg. LLF: 165.73488000994536
Iteration: 14, Func. Count: 74, Neg. LLF: 165.73477962146026
Iteration: 15, Func. Count: 79, Neg. LLF: 165.73477450348227
Iteration: 16, Func. Count: 83, Neg. LLF: 165.73477450280424
Optimization terminated successfully (Exit mode 0)
Current function value: 165.73477450348227
Iterations: 16
Function evaluations: 83
Gradient evaluations: 16
Iteration: 1, Func. Count: 7, Neg. LLF: 569.6319450677282
Iteration: 2, Func. Count: 14, Neg. LLF: 162.52909300845806
Iteration: 3, Func. Count: 20, Neg. LLF: 304.8633680123547
Iteration: 4, Func. Count: 28, Neg. LLF: 163.7321682296674
Iteration: 5, Func. Count: 35, Neg. LLF: 162.2753792986593
Iteration: 6, Func. Count: 42, Neg. LLF: 162.27827936158164
Iteration: 7, Func. Count: 49, Neg. LLF: 162.02812555159989
Iteration: 8, Func. Count: 55, Neg. LLF: 162.00965665393537
Iteration: 9, Func. Count: 61, Neg. LLF: 162.00759933019606
Iteration: 10, Func. Count: 67, Neg. LLF: 162.00715935494694
Iteration: 11, Func. Count: 73, Neg. LLF: 162.00709685926466
Iteration: 12, Func. Count: 79, Neg. LLF: 162.00708281555856
Iteration: 13, Func. Count: 85, Neg. LLF: 162.00708220137193
Optimization terminated successfully (Exit mode 0)
Current function value: 162.00708220137193
Iterations: 13
Function evaluations: 85
Gradient evaluations: 13
Iteration: 1, Func. Count: 8, Neg. LLF: 246.70098727822824
Iteration: 2, Func. Count: 16, Neg. LLF: 304.70647422020807
Iteration: 3, Func. Count: 24, Neg. LLF: 190.61520579546482
Iteration: 4, Func. Count: 32, Neg. LLF: 163.86148259168112
Iteration: 5, Func. Count: 40, Neg. LLF: 162.4645701257573
Iteration: 6, Func. Count: 47, Neg. LLF: 162.14087897530655
Iteration: 7, Func. Count: 54, Neg. LLF: 162.06692246259337
Iteration: 8, Func. Count: 61, Neg. LLF: 162.03781329861556
Iteration: 9, Func. Count: 68, Neg. LLF: 162.01642132261864
Iteration: 10, Func. Count: 75, Neg. LLF: 162.01233084267275
Iteration: 11, Func. Count: 82, Neg. LLF: 162.01082339086733
Iteration: 12, Func. Count: 89, Neg. LLF: 162.00893019875025
Iteration: 13, Func. Count: 96, Neg. LLF: 162.00768199170273
Iteration: 14, Func. Count: 103, Neg. LLF: 162.00715336359752
Iteration: 15, Func. Count: 110, Neg. LLF: 162.00708498122148
Iteration: 16, Func. Count: 117, Neg. LLF: 162.00708216685982
Iteration: 17, Func. Count: 123, Neg. LLF: 162.00708220379155
Optimization terminated successfully (Exit mode 0)
Current function value: 162.00708216685982
Iterations: 17
Function evaluations: 123
Gradient evaluations: 17
Iteration: 1, Func. Count: 9, Neg. LLF: 233.13777610655242
Iteration: 2, Func. Count: 18, Neg. LLF: 242.29700536818476
Iteration: 3, Func. Count: 27, Neg. LLF: 239.1177201989481
Iteration: 4, Func. Count: 36, Neg. LLF: 162.34533925743062
Iteration: 5, Func. Count: 44, Neg. LLF: 163.24832808788497
Iteration: 6, Func. Count: 53, Neg. LLF: 162.23112552033098
Iteration: 7, Func. Count: 62, Neg. LLF: 162.0218087835314
Iteration: 8, Func. Count: 70, Neg. LLF: 162.01891712699026
Iteration: 9, Func. Count: 78, Neg. LLF: 162.0114310685078
Iteration: 10, Func. Count: 86, Neg. LLF: 162.00807114655487
Iteration: 11, Func. Count: 94, Neg. LLF: 162.0072371906948
Iteration: 12, Func. Count: 102, Neg. LLF: 162.00716398650457
Iteration: 13, Func. Count: 110, Neg. LLF: 162.0071280337878
Iteration: 14, Func. Count: 118, Neg. LLF: 162.00709570704862
Iteration: 15, Func. Count: 126, Neg. LLF: 162.00708369127747
Iteration: 16, Func. Count: 134, Neg. LLF: 162.00708219094457
Iteration: 17, Func. Count: 141, Neg. LLF: 162.0070822207666
Optimization terminated successfully (Exit mode 0)
Current function value: 162.00708219094457
Iterations: 17
Function evaluations: 141
Gradient evaluations: 17
Iteration: 1, Func. Count: 10, Neg. LLF: 184.39047502767724
Iteration: 2, Func. Count: 20, Neg. LLF: 241.67511700815453
Iteration: 3, Func. Count: 30, Neg. LLF: 162.3675917519795
Iteration: 4, Func. Count: 39, Neg. LLF: 165.8025479719266
Iteration: 5, Func. Count: 49, Neg. LLF: 167.64726170143302
Iteration: 6, Func. Count: 60, Neg. LLF: 162.1696203909727
Iteration: 7, Func. Count: 70, Neg. LLF: 162.058446298842
Iteration: 8, Func. Count: 79, Neg. LLF: 162.03410419933684
Iteration: 9, Func. Count: 88, Neg. LLF: 162.0244608549531
Iteration: 10, Func. Count: 97, Neg. LLF: 162.0159707645175
Iteration: 11, Func. Count: 106, Neg. LLF: 162.0143528336212
Iteration: 12, Func. Count: 115, Neg. LLF: 162.00829265273626
Iteration: 13, Func. Count: 124, Neg. LLF: 162.00710152666744
Iteration: 14, Func. Count: 133, Neg. LLF: 162.00708245887105
Iteration: 15, Func. Count: 141, Neg. LLF: 162.0070825029841
Optimization terminated successfully (Exit mode 0)
Current function value: 162.00708245887105
Iterations: 15
Function evaluations: 141
Gradient evaluations: 15
Iteration: 1, Func. Count: 7, Neg. LLF: 165.41313993811937
Iteration: 2, Func. Count: 14, Neg. LLF: 172.94542581048756
Iteration: 3, Func. Count: 22, Neg. LLF: 163.4388050648815
Iteration: 4, Func. Count: 29, Neg. LLF: 162.89760516168184
Iteration: 5, Func. Count: 35, Neg. LLF: 162.70159064564416
Iteration: 6, Func. Count: 41, Neg. LLF: 162.50329365526824
Iteration: 7, Func. Count: 47, Neg. LLF: 162.1263108477701
Iteration: 8, Func. Count: 53, Neg. LLF: 161.64842919204148
Iteration: 9, Func. Count: 59, Neg. LLF: 161.54778258746464
Iteration: 10, Func. Count: 65, Neg. LLF: 161.30345751798907
Iteration: 11, Func. Count: 71, Neg. LLF: 161.23719315285067
Iteration: 12, Func. Count: 77, Neg. LLF: 161.147679873533
Iteration: 13, Func. Count: 83, Neg. LLF: 161.12828696259965
Iteration: 14, Func. Count: 89, Neg. LLF: 161.11803623430816
Iteration: 15, Func. Count: 95, Neg. LLF: 161.11767455153054
Iteration: 16, Func. Count: 101, Neg. LLF: 161.11761612178003
Iteration: 17, Func. Count: 107, Neg. LLF: 161.11760979073784
Iteration: 18, Func. Count: 113, Neg. LLF: 161.11760446889977
Iteration: 19, Func. Count: 118, Neg. LLF: 161.1176044688966
Optimization terminated successfully (Exit mode 0)
Current function value: 161.11760446889977
Iterations: 19
Function evaluations: 118
Gradient evaluations: 19
Iteration: 1, Func. Count: 8, Neg. LLF: 179.35565244992517
Iteration: 2, Func. Count: 16, Neg. LLF: 162.10261127172504
Iteration: 3, Func. Count: 23, Neg. LLF: 161.73986750610263
Iteration: 4, Func. Count: 30, Neg. LLF: 210.83104677548596
Iteration: 5, Func. Count: 38, Neg. LLF: 162.01786358340777
Iteration: 6, Func. Count: 46, Neg. LLF: 163.5550085999461
Iteration: 7, Func. Count: 54, Neg. LLF: 161.10777749024555
Iteration: 8, Func. Count: 61, Neg. LLF: 161.1030384683311
Iteration: 9, Func. Count: 68, Neg. LLF: 161.10005435374433
Iteration: 10, Func. Count: 75, Neg. LLF: 161.09770535065198
Iteration: 11, Func. Count: 82, Neg. LLF: 161.09240795215723
Iteration: 12, Func. Count: 89, Neg. LLF: 161.08871031930255
Iteration: 13, Func. Count: 96, Neg. LLF: 161.0872826191074
Iteration: 14, Func. Count: 103, Neg. LLF: 161.08705844577972
Iteration: 15, Func. Count: 110, Neg. LLF: 161.0870390240921
Iteration: 16, Func. Count: 116, Neg. LLF: 161.08703902410147
Optimization terminated successfully (Exit mode 0)
Current function value: 161.0870390240921
Iterations: 16
Function evaluations: 116
Gradient evaluations: 16
Iteration: 1, Func. Count: 9, Neg. LLF: 178.64752451973007
Iteration: 2, Func. Count: 18, Neg. LLF: 188.58688273558028
Iteration: 3, Func. Count: 27, Neg. LLF: 182.17617823153566
Iteration: 4, Func. Count: 36, Neg. LLF: 161.91701987125592
Iteration: 5, Func. Count: 45, Neg. LLF: 160.90991446149363
Iteration: 6, Func. Count: 53, Neg. LLF: 161.3182439983194
Iteration: 7, Func. Count: 62, Neg. LLF: 160.67965097126697
Iteration: 8, Func. Count: 70, Neg. LLF: 160.66657305619404
Iteration: 9, Func. Count: 78, Neg. LLF: 160.64068809395854
Iteration: 10, Func. Count: 86, Neg. LLF: 160.634395768714
Iteration: 11, Func. Count: 94, Neg. LLF: 160.62461304368068
Iteration: 12, Func. Count: 102, Neg. LLF: 160.62070190877273
Iteration: 13, Func. Count: 110, Neg. LLF: 160.61654491731557
Iteration: 14, Func. Count: 118, Neg. LLF: 160.61480002372204
Iteration: 15, Func. Count: 126, Neg. LLF: 160.6137942316781
Iteration: 16, Func. Count: 134, Neg. LLF: 160.61367946530305
Iteration: 17, Func. Count: 142, Neg. LLF: 160.6136688853445
Iteration: 18, Func. Count: 149, Neg. LLF: 160.613668885356
Optimization terminated successfully (Exit mode 0)
Current function value: 160.6136688853445
Iterations: 18
Function evaluations: 149
Gradient evaluations: 18
Iteration: 1, Func. Count: 10, Neg. LLF: 286.20516084087205
Iteration: 2, Func. Count: 20, Neg. LLF: 190.5700303668296
Iteration: 3, Func. Count: 30, Neg. LLF: 182.29684505476797
Iteration: 4, Func. Count: 40, Neg. LLF: 181.66405179470425
Iteration: 5, Func. Count: 50, Neg. LLF: 159.21728295343058
Iteration: 6, Func. Count: 59, Neg. LLF: 159.12105228233995
Iteration: 7, Func. Count: 68, Neg. LLF: 159.02377308893244
Iteration: 8, Func. Count: 77, Neg. LLF: 158.98610891528182
Iteration: 9, Func. Count: 86, Neg. LLF: 158.97784422921623
Iteration: 10, Func. Count: 95, Neg. LLF: 158.97200797012425
Iteration: 11, Func. Count: 104, Neg. LLF: 158.96423646025218
Iteration: 12, Func. Count: 113, Neg. LLF: 158.9598855809641
Iteration: 13, Func. Count: 122, Neg. LLF: 158.95842747924814
Iteration: 14, Func. Count: 131, Neg. LLF: 158.95809114763716
Iteration: 15, Func. Count: 140, Neg. LLF: 158.95803023111463
Iteration: 16, Func. Count: 149, Neg. LLF: 158.95801984813232
Iteration: 17, Func. Count: 158, Neg. LLF: 158.9580174205149
Iteration: 18, Func. Count: 166, Neg. LLF: 158.95801742045032
Optimization terminated successfully (Exit mode 0)
Current function value: 158.9580174205149
Iterations: 18
Function evaluations: 166
Gradient evaluations: 18
Iteration: 1, Func. Count: 11, Neg. LLF: 172.1317533190175
Iteration: 2, Func. Count: 22, Neg. LLF: 189.22085515464968
Iteration: 3, Func. Count: 33, Neg. LLF: 163.23949180405594
Iteration: 4, Func. Count: 44, Neg. LLF: 187.43040763470387
Iteration: 5, Func. Count: 55, Neg. LLF: 159.61133608130172
Iteration: 6, Func. Count: 65, Neg. LLF: 159.2942683651038
Iteration: 7, Func. Count: 75, Neg. LLF: 160.5871214076223
Iteration: 8, Func. Count: 87, Neg. LLF: 159.51944904743965
Iteration: 9, Func. Count: 98, Neg. LLF: 159.08859811094112
Iteration: 10, Func. Count: 108, Neg. LLF: 159.0317318001357
Iteration: 11, Func. Count: 118, Neg. LLF: 159.00885707457417
Iteration: 12, Func. Count: 128, Neg. LLF: 158.96276958386463
Iteration: 13, Func. Count: 138, Neg. LLF: 158.95312469665387
Iteration: 14, Func. Count: 148, Neg. LLF: 158.94996452385635
Iteration: 15, Func. Count: 158, Neg. LLF: 158.94716529176614
Iteration: 16, Func. Count: 168, Neg. LLF: 158.94483868800734
Iteration: 17, Func. Count: 178, Neg. LLF: 158.94437647463664
Iteration: 18, Func. Count: 188, Neg. LLF: 158.9443477247131
Iteration: 19, Func. Count: 198, Neg. LLF: 158.9443469377669
Optimization terminated successfully (Exit mode 0)
Current function value: 158.9443469377669
Iterations: 19
Function evaluations: 198
Gradient evaluations: 19
Iteration: 1, Func. Count: 8, Neg. LLF: 165.66805009516617
Iteration: 2, Func. Count: 16, Neg. LLF: 171.07991161922774
Iteration: 3, Func. Count: 25, Neg. LLF: 163.513773148789
Iteration: 4, Func. Count: 33, Neg. LLF: 162.90461025557673
Iteration: 5, Func. Count: 40, Neg. LLF: 162.66636578803556
Iteration: 6, Func. Count: 47, Neg. LLF: 162.49903130406707
Iteration: 7, Func. Count: 54, Neg. LLF: 161.917264358481
Iteration: 8, Func. Count: 61, Neg. LLF: 161.64942468384857
Iteration: 9, Func. Count: 68, Neg. LLF: 161.29793645531092
Iteration: 10, Func. Count: 75, Neg. LLF: 161.23370802878082
Iteration: 11, Func. Count: 82, Neg. LLF: 161.19103015189853
Iteration: 12, Func. Count: 89, Neg. LLF: 161.1651863064068
Iteration: 13, Func. Count: 96, Neg. LLF: 161.12746137467047
Iteration: 14, Func. Count: 103, Neg. LLF: 161.12002190387176
Iteration: 15, Func. Count: 110, Neg. LLF: 161.11792435606557
Iteration: 16, Func. Count: 117, Neg. LLF: 161.11762973289484
Iteration: 17, Func. Count: 124, Neg. LLF: 161.11760598220752
Iteration: 18, Func. Count: 131, Neg. LLF: 161.11760444579005
Iteration: 19, Func. Count: 137, Neg. LLF: 161.1176044543027
Optimization terminated successfully (Exit mode 0)
Current function value: 161.11760444579005
Iterations: 19
Function evaluations: 137
Gradient evaluations: 19
Iteration: 1, Func. Count: 9, Neg. LLF: 178.2050642575229
Iteration: 2, Func. Count: 18, Neg. LLF: 161.87782957663296
Iteration: 3, Func. Count: 26, Neg. LLF: 161.8175279169262
Iteration: 4, Func. Count: 35, Neg. LLF: 174.08525250674282
Iteration: 5, Func. Count: 44, Neg. LLF: 162.13728820186094
Iteration: 6, Func. Count: 53, Neg. LLF: 161.10472804176734
Iteration: 7, Func. Count: 61, Neg. LLF: 161.10021066164563
Iteration: 8, Func. Count: 69, Neg. LLF: 161.09840752467028
Iteration: 9, Func. Count: 77, Neg. LLF: 161.0968936622499
Iteration: 10, Func. Count: 85, Neg. LLF: 161.09343281915778
Iteration: 11, Func. Count: 93, Neg. LLF: 161.0896816075337
Iteration: 12, Func. Count: 101, Neg. LLF: 161.08749146924922
Iteration: 13, Func. Count: 109, Neg. LLF: 161.08707012698875
Iteration: 14, Func. Count: 117, Neg. LLF: 161.08704011461728
Iteration: 15, Func. Count: 125, Neg. LLF: 161.08703866910764
Iteration: 16, Func. Count: 132, Neg. LLF: 161.08703866911517
Optimization terminated successfully (Exit mode 0)
Current function value: 161.08703866910764
Iterations: 16
Function evaluations: 132
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 177.71083670292268
Iteration: 2, Func. Count: 20, Neg. LLF: 188.44884058111398
Iteration: 3, Func. Count: 30, Neg. LLF: 163.01281079743433
Iteration: 4, Func. Count: 40, Neg. LLF: 161.8384445636813
Iteration: 5, Func. Count: 50, Neg. LLF: 160.9931046270687
Iteration: 6, Func. Count: 59, Neg. LLF: 161.32983782771865
Iteration: 7, Func. Count: 69, Neg. LLF: 160.73440317842116
Iteration: 8, Func. Count: 78, Neg. LLF: 160.6676009368499
Iteration: 9, Func. Count: 87, Neg. LLF: 160.65327946885822
Iteration: 10, Func. Count: 96, Neg. LLF: 160.63525573761473
Iteration: 11, Func. Count: 105, Neg. LLF: 160.62520515845517
Iteration: 12, Func. Count: 114, Neg. LLF: 160.6181733278749
Iteration: 13, Func. Count: 123, Neg. LLF: 160.6143786362915
Iteration: 14, Func. Count: 132, Neg. LLF: 160.61380638789544
Iteration: 15, Func. Count: 141, Neg. LLF: 160.6136729077331
Iteration: 16, Func. Count: 150, Neg. LLF: 160.61366913712226
Iteration: 17, Func. Count: 158, Neg. LLF: 160.61366913709628
Optimization terminated successfully (Exit mode 0)
Current function value: 160.61366913712226
Iterations: 17
Function evaluations: 158
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 280.6388617915128
Iteration: 2, Func. Count: 22, Neg. LLF: 182.84348232594667
Iteration: 3, Func. Count: 33, Neg. LLF: 178.91288686538235
Iteration: 4, Func. Count: 44, Neg. LLF: 170.87002865929173
Iteration: 5, Func. Count: 55, Neg. LLF: 159.34611054398013
Iteration: 6, Func. Count: 65, Neg. LLF: 159.12470501836066
Iteration: 7, Func. Count: 75, Neg. LLF: 159.06214619149083
Iteration: 8, Func. Count: 85, Neg. LLF: 159.03361385931598
Iteration: 9, Func. Count: 95, Neg. LLF: 159.00432881003323
Iteration: 10, Func. Count: 105, Neg. LLF: 158.97689046666184
Iteration: 11, Func. Count: 115, Neg. LLF: 158.96591245711116
Iteration: 12, Func. Count: 125, Neg. LLF: 158.96142359634027
Iteration: 13, Func. Count: 135, Neg. LLF: 158.9595041894089
Iteration: 14, Func. Count: 145, Neg. LLF: 158.9589680088487
Iteration: 15, Func. Count: 155, Neg. LLF: 158.95832490379223
Iteration: 16, Func. Count: 165, Neg. LLF: 158.9580722611992
Iteration: 17, Func. Count: 175, Neg. LLF: 158.9580204146186
Iteration: 18, Func. Count: 185, Neg. LLF: 158.95801735916237
Iteration: 19, Func. Count: 194, Neg. LLF: 158.9580173591401
Optimization terminated successfully (Exit mode 0)
Current function value: 158.95801735916237
Iterations: 19
Function evaluations: 194
Gradient evaluations: 19
Iteration: 1, Func. Count: 12, Neg. LLF: 171.12281186321133
Iteration: 2, Func. Count: 24, Neg. LLF: 188.48501596025577
Iteration: 3, Func. Count: 36, Neg. LLF: 162.9318320878675
Iteration: 4, Func. Count: 48, Neg. LLF: 163.20746433744074
Iteration: 5, Func. Count: 60, Neg. LLF: 159.18915159653102
Iteration: 6, Func. Count: 71, Neg. LLF: 159.70362131714654
Iteration: 7, Func. Count: 83, Neg. LLF: 159.21150052614533
Iteration: 8, Func. Count: 95, Neg. LLF: 158.98401008988347
Iteration: 9, Func. Count: 106, Neg. LLF: 158.96335793628566
Iteration: 10, Func. Count: 117, Neg. LLF: 158.95109667595233
Iteration: 11, Func. Count: 128, Neg. LLF: 158.94804729920708
Iteration: 12, Func. Count: 139, Neg. LLF: 158.94714166811377
Iteration: 13, Func. Count: 150, Neg. LLF: 158.9448191027041
Iteration: 14, Func. Count: 161, Neg. LLF: 158.94441326239672
Iteration: 15, Func. Count: 172, Neg. LLF: 158.94434799791384
Iteration: 16, Func. Count: 183, Neg. LLF: 158.9443469633161
Iteration: 17, Func. Count: 193, Neg. LLF: 158.94434696333263
Optimization terminated successfully (Exit mode 0)
Current function value: 158.9443469633161
Iterations: 17
Function evaluations: 193
Gradient evaluations: 17
Iteration: 1, Func. Count: 5, Neg. LLF: 177.19451659728878
Iteration: 2, Func. Count: 9, Neg. LLF: 177.04728481202494
Iteration: 3, Func. Count: 13, Neg. LLF: 176.7714430887184
Iteration: 4, Func. Count: 17, Neg. LLF: 176.69555888846978
Iteration: 5, Func. Count: 21, Neg. LLF: 176.61968105952914
Iteration: 6, Func. Count: 25, Neg. LLF: 176.57315175438129
Iteration: 7, Func. Count: 29, Neg. LLF: 176.50648512778736
Iteration: 8, Func. Count: 33, Neg. LLF: 176.20110505571964
Iteration: 9, Func. Count: 37, Neg. LLF: 175.90014301977948
Iteration: 10, Func. Count: 41, Neg. LLF: 175.72651032019587
Iteration: 11, Func. Count: 45, Neg. LLF: 175.71952806567015
Iteration: 12, Func. Count: 49, Neg. LLF: 175.71721781505903
Iteration: 13, Func. Count: 53, Neg. LLF: 175.71679411812056
Iteration: 14, Func. Count: 57, Neg. LLF: 175.71673631495614
Iteration: 15, Func. Count: 61, Neg. LLF: 175.71672379186265
Iteration: 16, Func. Count: 64, Neg. LLF: 175.7167237918913
Optimization terminated successfully (Exit mode 0)
Current function value: 175.71672379186265
Iterations: 16
Function evaluations: 64
Gradient evaluations: 16
Iteration: 1, Func. Count: 6, Neg. LLF: 276.764913129696
Iteration: 2, Func. Count: 12, Neg. LLF: 163.6322474051704
Iteration: 3, Func. Count: 17, Neg. LLF: 163.65631236992587
Iteration: 4, Func. Count: 23, Neg. LLF: 163.4548066679087
Iteration: 5, Func. Count: 28, Neg. LLF: 163.4491444421978
Iteration: 6, Func. Count: 33, Neg. LLF: 163.44613761302202
Iteration: 7, Func. Count: 38, Neg. LLF: 163.44610045741987
Iteration: 8, Func. Count: 42, Neg. LLF: 163.44610038989032
Optimization terminated successfully (Exit mode 0)
Current function value: 163.44610045741987
Iterations: 8
Function evaluations: 42
Gradient evaluations: 8
Iteration: 1, Func. Count: 7, Neg. LLF: 209.67195730216366
Iteration: 2, Func. Count: 14, Neg. LLF: 164.20013461850715
Iteration: 3, Func. Count: 20, Neg. LLF: 172.4474861465038
Iteration: 4, Func. Count: 27, Neg. LLF: 163.98309204682604
Iteration: 5, Func. Count: 33, Neg. LLF: 163.81658859662696
Iteration: 6, Func. Count: 39, Neg. LLF: 163.6901295697275
Iteration: 7, Func. Count: 45, Neg. LLF: 163.5280286931936
Iteration: 8, Func. Count: 51, Neg. LLF: 163.46024507390007
Iteration: 9, Func. Count: 57, Neg. LLF: 163.44675716247247
Iteration: 10, Func. Count: 63, Neg. LLF: 163.44620625455693
Iteration: 11, Func. Count: 69, Neg. LLF: 163.44610043014907
Iteration: 12, Func. Count: 74, Neg. LLF: 163.4461004457776
Optimization terminated successfully (Exit mode 0)
Current function value: 163.44610043014907
Iterations: 12
Function evaluations: 74
Gradient evaluations: 12
Iteration: 1, Func. Count: 8, Neg. LLF: 206.64104778376765
Iteration: 2, Func. Count: 16, Neg. LLF: 164.23846792052933
Iteration: 3, Func. Count: 23, Neg. LLF: 164.1945564788151
Iteration: 4, Func. Count: 31, Neg. LLF: 163.92765415508592
Iteration: 5, Func. Count: 38, Neg. LLF: 163.81522418566752
Iteration: 6, Func. Count: 45, Neg. LLF: 163.6131027044256
Iteration: 7, Func. Count: 52, Neg. LLF: 163.4833000453496
Iteration: 8, Func. Count: 59, Neg. LLF: 163.44899877290982
Iteration: 9, Func. Count: 66, Neg. LLF: 163.44845972716988
Iteration: 10, Func. Count: 74, Neg. LLF: 163.4461029560968
Iteration: 11, Func. Count: 81, Neg. LLF: 163.4461003086869
Iteration: 12, Func. Count: 87, Neg. LLF: 163.44610036642356
Optimization terminated successfully (Exit mode 0)
Current function value: 163.4461003086869
Iterations: 12
Function evaluations: 87
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 205.77666779886178
Iteration: 2, Func. Count: 18, Neg. LLF: 164.19188737917892
Iteration: 3, Func. Count: 26, Neg. LLF: 164.14613873919873
Iteration: 4, Func. Count: 34, Neg. LLF: 163.9955072698928
Iteration: 5, Func. Count: 42, Neg. LLF: 163.81399840539584
Iteration: 6, Func. Count: 50, Neg. LLF: 163.5588533145393
Iteration: 7, Func. Count: 58, Neg. LLF: 163.45257820589822
Iteration: 8, Func. Count: 66, Neg. LLF: 163.44612980637166
Iteration: 9, Func. Count: 74, Neg. LLF: 163.4461156693822
Iteration: 10, Func. Count: 82, Neg. LLF: 163.44610057073413
Iteration: 11, Func. Count: 89, Neg. LLF: 163.44610061333552
Optimization terminated successfully (Exit mode 0)
Current function value: 163.44610057073413
Iterations: 11
Function evaluations: 89
Gradient evaluations: 11
Iteration: 1, Func. Count: 6, Neg. LLF: 175.41342876057456
Iteration: 2, Func. Count: 11, Neg. LLF: 174.34096880017745
Iteration: 3, Func. Count: 16, Neg. LLF: 173.84847073176854
Iteration: 4, Func. Count: 21, Neg. LLF: 173.8164330054141
Iteration: 5, Func. Count: 26, Neg. LLF: 173.679771638312
Iteration: 6, Func. Count: 31, Neg. LLF: 173.5317723438064
Iteration: 7, Func. Count: 36, Neg. LLF: 173.42077632775815
Iteration: 8, Func. Count: 41, Neg. LLF: 173.32368401777896
Iteration: 9, Func. Count: 46, Neg. LLF: 173.28779986398564
Iteration: 10, Func. Count: 51, Neg. LLF: 173.28411631913448
Iteration: 11, Func. Count: 56, Neg. LLF: 173.28345810789858
Iteration: 12, Func. Count: 61, Neg. LLF: 173.28339262589915
Iteration: 13, Func. Count: 66, Neg. LLF: 173.28339047469635
Iteration: 14, Func. Count: 70, Neg. LLF: 173.28339047469743
Optimization terminated successfully (Exit mode 0)
Current function value: 173.28339047469635
Iterations: 14
Function evaluations: 70
Gradient evaluations: 14
Iteration: 1, Func. Count: 7, Neg. LLF: 270.4701804116768
Iteration: 2, Func. Count: 14, Neg. LLF: 162.92811708601303
Iteration: 3, Func. Count: 20, Neg. LLF: 163.46992112310602
Iteration: 4, Func. Count: 27, Neg. LLF: 162.87473286770808
Iteration: 5, Func. Count: 34, Neg. LLF: 162.9478984089503
Iteration: 6, Func. Count: 41, Neg. LLF: 162.70475632876403
Iteration: 7, Func. Count: 47, Neg. LLF: 162.70461069005532
Iteration: 8, Func. Count: 54, Neg. LLF: 162.7003728583933
Iteration: 9, Func. Count: 60, Neg. LLF: 162.6997356281011
Iteration: 10, Func. Count: 66, Neg. LLF: 162.69952736546958
Iteration: 11, Func. Count: 72, Neg. LLF: 162.69952416640277
Iteration: 12, Func. Count: 77, Neg. LLF: 162.69952416635206
Optimization terminated successfully (Exit mode 0)
Current function value: 162.69952416640277
Iterations: 12
Function evaluations: 77
Gradient evaluations: 12
Iteration: 1, Func. Count: 8, Neg. LLF: 242.1749379827827
Iteration: 2, Func. Count: 16, Neg. LLF: 162.99834257435518
Iteration: 3, Func. Count: 23, Neg. LLF: 172.67112241590164
Iteration: 4, Func. Count: 31, Neg. LLF: 162.88090924020412
Iteration: 5, Func. Count: 39, Neg. LLF: 166.199677815974
Iteration: 6, Func. Count: 48, Neg. LLF: 162.7588812549296
Iteration: 7, Func. Count: 55, Neg. LLF: 162.74650675324577
Iteration: 8, Func. Count: 62, Neg. LLF: 162.74031230492733
Iteration: 9, Func. Count: 69, Neg. LLF: 162.71351760861026
Iteration: 10, Func. Count: 76, Neg. LLF: 162.70093230684915
Iteration: 11, Func. Count: 83, Neg. LLF: 162.6995476716725
Iteration: 12, Func. Count: 90, Neg. LLF: 162.6995250458437
Iteration: 13, Func. Count: 96, Neg. LLF: 162.69952509856554
Optimization terminated successfully (Exit mode 0)
Current function value: 162.6995250458437
Iterations: 13
Function evaluations: 96
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 239.74953219155924
Iteration: 2, Func. Count: 18, Neg. LLF: 163.06199460786948
Iteration: 3, Func. Count: 26, Neg. LLF: 164.4430651402792
Iteration: 4, Func. Count: 35, Neg. LLF: 162.80578176695565
Iteration: 5, Func. Count: 44, Neg. LLF: 162.82460145262468
Iteration: 6, Func. Count: 53, Neg. LLF: 162.76117315398494
Iteration: 7, Func. Count: 61, Neg. LLF: 162.74220243828208
Iteration: 8, Func. Count: 69, Neg. LLF: 162.7291878134857
Iteration: 9, Func. Count: 77, Neg. LLF: 162.72182997813306
Iteration: 10, Func. Count: 85, Neg. LLF: 162.7112318781184
Iteration: 11, Func. Count: 93, Neg. LLF: 162.70122770920756
Iteration: 12, Func. Count: 101, Neg. LLF: 162.69975293495685
Iteration: 13, Func. Count: 109, Neg. LLF: 162.6995775979192
Iteration: 14, Func. Count: 117, Neg. LLF: 162.69952514440544
Iteration: 15, Func. Count: 125, Neg. LLF: 162.6995241274241
Iteration: 16, Func. Count: 132, Neg. LLF: 162.6995242387473
Optimization terminated successfully (Exit mode 0)
Current function value: 162.6995241274241
Iterations: 16
Function evaluations: 132
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 238.34195165281264
Iteration: 2, Func. Count: 20, Neg. LLF: 163.04265509935445
Iteration: 3, Func. Count: 29, Neg. LLF: 164.43104737480246
Iteration: 4, Func. Count: 39, Neg. LLF: 162.98235040644417
Iteration: 5, Func. Count: 49, Neg. LLF: 166.4382285310175
Iteration: 6, Func. Count: 59, Neg. LLF: 162.77006622062999
Iteration: 7, Func. Count: 68, Neg. LLF: 162.74988986100522
Iteration: 8, Func. Count: 77, Neg. LLF: 162.74340726284458
Iteration: 9, Func. Count: 86, Neg. LLF: 162.7325121486286
Iteration: 10, Func. Count: 95, Neg. LLF: 162.71830638616237
Iteration: 11, Func. Count: 104, Neg. LLF: 162.70215052520223
Iteration: 12, Func. Count: 113, Neg. LLF: 162.70008868977644
Iteration: 13, Func. Count: 122, Neg. LLF: 162.69972857605285
Iteration: 14, Func. Count: 131, Neg. LLF: 162.69952559534008
Iteration: 15, Func. Count: 140, Neg. LLF: 162.69952420207892
Iteration: 16, Func. Count: 148, Neg. LLF: 162.6995243066716
Optimization terminated successfully (Exit mode 0)
Current function value: 162.69952420207892
Iterations: 16
Function evaluations: 148
Gradient evaluations: 16
Iteration: 1, Func. Count: 7, Neg. LLF: 181.47118161593082
Iteration: 2, Func. Count: 15, Neg. LLF: 170.72655068495592
Iteration: 3, Func. Count: 22, Neg. LLF: 168.36569312557796
Iteration: 4, Func. Count: 29, Neg. LLF: 167.3297897999981
Iteration: 5, Func. Count: 35, Neg. LLF: 167.20573906965944
Iteration: 6, Func. Count: 41, Neg. LLF: 166.91707249352137
Iteration: 7, Func. Count: 47, Neg. LLF: 166.77209215127604
Iteration: 8, Func. Count: 53, Neg. LLF: 166.54953116316983
Iteration: 9, Func. Count: 59, Neg. LLF: 166.12227611190934
Iteration: 10, Func. Count: 65, Neg. LLF: 165.87112865398998
Iteration: 11, Func. Count: 71, Neg. LLF: 165.75591644455352
Iteration: 12, Func. Count: 77, Neg. LLF: 165.73760165407919
Iteration: 13, Func. Count: 83, Neg. LLF: 165.73518960214562
Iteration: 14, Func. Count: 89, Neg. LLF: 165.73477721125326
Iteration: 15, Func. Count: 95, Neg. LLF: 165.73477439017293
Iteration: 16, Func. Count: 100, Neg. LLF: 165.73477438949368
Optimization terminated successfully (Exit mode 0)
Current function value: 165.73477439017293
Iterations: 16
Function evaluations: 100
Gradient evaluations: 16
Iteration: 1, Func. Count: 8, Neg. LLF: 618.4314697370903
Iteration: 2, Func. Count: 16, Neg. LLF: 461.7293424381535
Iteration: 3, Func. Count: 24, Neg. LLF: 161.34673171603475
Iteration: 4, Func. Count: 31, Neg. LLF: 164.81828934693056
Iteration: 5, Func. Count: 39, Neg. LLF: 161.27033424701312
Iteration: 6, Func. Count: 47, Neg. LLF: 161.16483698899566
Iteration: 7, Func. Count: 54, Neg. LLF: 161.1616631977225
Iteration: 8, Func. Count: 61, Neg. LLF: 161.16102504265328
Iteration: 9, Func. Count: 68, Neg. LLF: 161.16092085652272
Iteration: 10, Func. Count: 75, Neg. LLF: 161.16090238520022
Iteration: 11, Func. Count: 81, Neg. LLF: 161.16090232768016
Optimization terminated successfully (Exit mode 0)
Current function value: 161.16090238520022
Iterations: 11
Function evaluations: 81
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 283.2211084509013
Iteration: 2, Func. Count: 18, Neg. LLF: 245.41848829974202
Iteration: 3, Func. Count: 27, Neg. LLF: 162.8913911080638
Iteration: 4, Func. Count: 36, Neg. LLF: 164.19198578048722
Iteration: 5, Func. Count: 45, Neg. LLF: 171.71758370658776
Iteration: 6, Func. Count: 54, Neg. LLF: 162.27259342686685
Iteration: 7, Func. Count: 63, Neg. LLF: 161.65852858107695
Iteration: 8, Func. Count: 71, Neg. LLF: 161.50587404783042
Iteration: 9, Func. Count: 79, Neg. LLF: 161.44193149986123
Iteration: 10, Func. Count: 87, Neg. LLF: 161.37060238280716
Iteration: 11, Func. Count: 95, Neg. LLF: 161.3162573489464
Iteration: 12, Func. Count: 103, Neg. LLF: 161.20431427167816
Iteration: 13, Func. Count: 111, Neg. LLF: 161.17357451406417
Iteration: 14, Func. Count: 119, Neg. LLF: 161.16276073702804
Iteration: 15, Func. Count: 127, Neg. LLF: 161.16117109822983
Iteration: 16, Func. Count: 135, Neg. LLF: 161.16092286309274
Iteration: 17, Func. Count: 143, Neg. LLF: 161.16090223557916
Iteration: 18, Func. Count: 150, Neg. LLF: 161.16090224929806
Optimization terminated successfully (Exit mode 0)
Current function value: 161.16090223557916
Iterations: 18
Function evaluations: 150
Gradient evaluations: 18
Iteration: 1, Func. Count: 10, Neg. LLF: 280.96695768820314
Iteration: 2, Func. Count: 20, Neg. LLF: 205.76403769587057
Iteration: 3, Func. Count: 30, Neg. LLF: 175.40131157280408
Iteration: 4, Func. Count: 40, Neg. LLF: 165.17032988225384
Iteration: 5, Func. Count: 50, Neg. LLF: 162.31709138515845
Iteration: 6, Func. Count: 59, Neg. LLF: 162.28042808596732
Iteration: 7, Func. Count: 69, Neg. LLF: 162.155190784707
Iteration: 8, Func. Count: 79, Neg. LLF: 161.57336099571373
Iteration: 9, Func. Count: 88, Neg. LLF: 161.43910684353295
Iteration: 10, Func. Count: 97, Neg. LLF: 161.34763564855098
Iteration: 11, Func. Count: 106, Neg. LLF: 161.27964820667873
Iteration: 12, Func. Count: 115, Neg. LLF: 161.22751958137567
Iteration: 13, Func. Count: 124, Neg. LLF: 161.17027029374177
Iteration: 14, Func. Count: 133, Neg. LLF: 161.16208703737948
Iteration: 15, Func. Count: 142, Neg. LLF: 161.1609898326937
Iteration: 16, Func. Count: 151, Neg. LLF: 161.1609151280757
Iteration: 17, Func. Count: 160, Neg. LLF: 161.16090297621315
Iteration: 18, Func. Count: 169, Neg. LLF: 161.16090224405963
Optimization terminated successfully (Exit mode 0)
Current function value: 161.16090224405963
Iterations: 18
Function evaluations: 169
Gradient evaluations: 18
Iteration: 1, Func. Count: 11, Neg. LLF: 279.5600970890011
Iteration: 2, Func. Count: 22, Neg. LLF: 187.7149347259122
Iteration: 3, Func. Count: 33, Neg. LLF: 282.66976234777
Iteration: 4, Func. Count: 44, Neg. LLF: 162.90918365990748
Iteration: 5, Func. Count: 54, Neg. LLF: 161.82197588111876
Iteration: 6, Func. Count: 64, Neg. LLF: 166.79162844999377
Iteration: 7, Func. Count: 75, Neg. LLF: 161.5684298183908
Iteration: 8, Func. Count: 85, Neg. LLF: 161.4367105322125
Iteration: 9, Func. Count: 95, Neg. LLF: 161.33663106685367
Iteration: 10, Func. Count: 105, Neg. LLF: 161.27963247863005
Iteration: 11, Func. Count: 115, Neg. LLF: 161.21925266819798
Iteration: 12, Func. Count: 125, Neg. LLF: 161.17932051696374
Iteration: 13, Func. Count: 135, Neg. LLF: 161.16264952615947
Iteration: 14, Func. Count: 145, Neg. LLF: 161.1611592419083
Iteration: 15, Func. Count: 155, Neg. LLF: 161.1609395105009
Iteration: 16, Func. Count: 165, Neg. LLF: 161.1609035402619
Iteration: 17, Func. Count: 175, Neg. LLF: 161.16090218153394
Iteration: 18, Func. Count: 184, Neg. LLF: 161.16090219863472
Optimization terminated successfully (Exit mode 0)
Current function value: 161.16090218153394
Iterations: 18
Function evaluations: 184
Gradient evaluations: 18
Iteration: 1, Func. Count: 8, Neg. LLF: 165.69215159351532
Iteration: 2, Func. Count: 16, Neg. LLF: 181.58662414667094
Iteration: 3, Func. Count: 24, Neg. LLF: 163.33423808571925
Iteration: 4, Func. Count: 31, Neg. LLF: 162.91788286299484
Iteration: 5, Func. Count: 38, Neg. LLF: 162.8191397965391
Iteration: 6, Func. Count: 45, Neg. LLF: 162.68848852494244
Iteration: 7, Func. Count: 52, Neg. LLF: 162.55094588373282
Iteration: 8, Func. Count: 59, Neg. LLF: 161.86111761733144
Iteration: 9, Func. Count: 66, Neg. LLF: 163.92956996750468
Iteration: 10, Func. Count: 74, Neg. LLF: 161.35226937626535
Iteration: 11, Func. Count: 81, Neg. LLF: 161.26509015372747
Iteration: 12, Func. Count: 88, Neg. LLF: 161.20036541133757
Iteration: 13, Func. Count: 95, Neg. LLF: 161.12259153542755
Iteration: 14, Func. Count: 102, Neg. LLF: 161.11795225675453
Iteration: 15, Func. Count: 109, Neg. LLF: 161.11763060537598
Iteration: 16, Func. Count: 116, Neg. LLF: 161.11760692305015
Iteration: 17, Func. Count: 123, Neg. LLF: 161.11760455184103
Iteration: 18, Func. Count: 129, Neg. LLF: 161.1176045518447
Optimization terminated successfully (Exit mode 0)
Current function value: 161.11760455184103
Iterations: 18
Function evaluations: 129
Gradient evaluations: 18
Iteration: 1, Func. Count: 9, Neg. LLF: 623.973100353321
Iteration: 2, Func. Count: 18, Neg. LLF: 197.0228793212306
Iteration: 3, Func. Count: 27, Neg. LLF: 176.68086941039365
Iteration: 4, Func. Count: 36, Neg. LLF: 160.6895944877283
Iteration: 5, Func. Count: 44, Neg. LLF: 160.65634296727325
Iteration: 6, Func. Count: 53, Neg. LLF: 160.34947602462415
Iteration: 7, Func. Count: 61, Neg. LLF: 160.28138798290723
Iteration: 8, Func. Count: 69, Neg. LLF: 160.27829129025298
Iteration: 9, Func. Count: 77, Neg. LLF: 160.2770295780444
Iteration: 10, Func. Count: 85, Neg. LLF: 160.27700089841073
Iteration: 11, Func. Count: 93, Neg. LLF: 160.27699876321913
Iteration: 12, Func. Count: 101, Neg. LLF: 160.27699797203414
Optimization terminated successfully (Exit mode 0)
Current function value: 160.27699797203414
Iterations: 12
Function evaluations: 101
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 283.6023292253677
Iteration: 2, Func. Count: 20, Neg. LLF: 180.67651042931402
Iteration: 3, Func. Count: 30, Neg. LLF: 181.66525772963737
Iteration: 4, Func. Count: 40, Neg. LLF: 165.5067590248636
Iteration: 5, Func. Count: 50, Neg. LLF: 163.01841858964778
Iteration: 6, Func. Count: 60, Neg. LLF: 160.67853525540713
Iteration: 7, Func. Count: 70, Neg. LLF: 159.97707012099147
Iteration: 8, Func. Count: 79, Neg. LLF: 160.05546827452105
Iteration: 9, Func. Count: 89, Neg. LLF: 159.9021579323392
Iteration: 10, Func. Count: 98, Neg. LLF: 159.89358013725263
Iteration: 11, Func. Count: 107, Neg. LLF: 159.88717892540072
Iteration: 12, Func. Count: 116, Neg. LLF: 159.87835659637184
Iteration: 13, Func. Count: 125, Neg. LLF: 159.8682906397591
Iteration: 14, Func. Count: 134, Neg. LLF: 159.86205851154992
Iteration: 15, Func. Count: 143, Neg. LLF: 159.86088174633863
Iteration: 16, Func. Count: 152, Neg. LLF: 159.86083304928735
Iteration: 17, Func. Count: 161, Neg. LLF: 159.8608325723313
Optimization terminated successfully (Exit mode 0)
Current function value: 159.8608325723313
Iterations: 17
Function evaluations: 161
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 281.9085199957017
Iteration: 2, Func. Count: 22, Neg. LLF: 190.9759528930427
Iteration: 3, Func. Count: 33, Neg. LLF: 176.98159859597408
Iteration: 4, Func. Count: 44, Neg. LLF: 166.92788726932758
Iteration: 5, Func. Count: 55, Neg. LLF: 165.57093199274559
Iteration: 6, Func. Count: 66, Neg. LLF: 159.58500392799252
Iteration: 7, Func. Count: 76, Neg. LLF: 158.7007556765515
Iteration: 8, Func. Count: 86, Neg. LLF: 158.62339443317103
Iteration: 9, Func. Count: 96, Neg. LLF: 158.5754757620812
Iteration: 10, Func. Count: 106, Neg. LLF: 158.56308129110332
Iteration: 11, Func. Count: 116, Neg. LLF: 158.55584837573738
Iteration: 12, Func. Count: 126, Neg. LLF: 158.549034528712
Iteration: 13, Func. Count: 136, Neg. LLF: 158.5428314589224
Iteration: 14, Func. Count: 146, Neg. LLF: 158.53585801864713
Iteration: 15, Func. Count: 156, Neg. LLF: 158.53397581733742
Iteration: 16, Func. Count: 166, Neg. LLF: 158.53377091845493
Iteration: 17, Func. Count: 175, Neg. LLF: 158.5337709082506
Optimization terminated successfully (Exit mode 0)
Current function value: 158.53377091845493
Iterations: 17
Function evaluations: 175
Gradient evaluations: 17
Iteration: 1, Func. Count: 12, Neg. LLF: 280.60157473989096
Iteration: 2, Func. Count: 24, Neg. LLF: 186.4406652946487
Iteration: 3, Func. Count: 36, Neg. LLF: 176.6179902840701
Iteration: 4, Func. Count: 48, Neg. LLF: 164.00126959955182
Iteration: 5, Func. Count: 60, Neg. LLF: 165.48642613138213
Iteration: 6, Func. Count: 72, Neg. LLF: 158.9635198242642
Iteration: 7, Func. Count: 83, Neg. LLF: 158.71424059900747
Iteration: 8, Func. Count: 94, Neg. LLF: 158.6180341954569
Iteration: 9, Func. Count: 105, Neg. LLF: 158.57730348835585
Iteration: 10, Func. Count: 116, Neg. LLF: 158.56471328887326
Iteration: 11, Func. Count: 127, Neg. LLF: 158.55399193778908
Iteration: 12, Func. Count: 138, Neg. LLF: 158.5503192185733
Iteration: 13, Func. Count: 149, Neg. LLF: 158.53598409255468
Iteration: 14, Func. Count: 160, Neg. LLF: 158.53385628918176
Iteration: 15, Func. Count: 171, Neg. LLF: 158.53377182270754
Iteration: 16, Func. Count: 182, Neg. LLF: 158.53377052996655
Iteration: 17, Func. Count: 192, Neg. LLF: 158.53377061273835
Optimization terminated successfully (Exit mode 0)
Current function value: 158.53377052996655
Iterations: 17
Function evaluations: 192
Gradient evaluations: 17
Iteration: 1, Func. Count: 9, Neg. LLF: 165.76112566738436
Iteration: 2, Func. Count: 18, Neg. LLF: 182.28129359230115
Iteration: 3, Func. Count: 27, Neg. LLF: 163.23384118897195
Iteration: 4, Func. Count: 35, Neg. LLF: 162.90422122800726
Iteration: 5, Func. Count: 43, Neg. LLF: 162.80880655134382
Iteration: 6, Func. Count: 51, Neg. LLF: 162.67216435167776
Iteration: 7, Func. Count: 59, Neg. LLF: 162.47516940228553
Iteration: 8, Func. Count: 67, Neg. LLF: 161.7798042782076
Iteration: 9, Func. Count: 75, Neg. LLF: 161.43986878813388
Iteration: 10, Func. Count: 83, Neg. LLF: 161.29190708688785
Iteration: 11, Func. Count: 91, Neg. LLF: 161.2356995705152
Iteration: 12, Func. Count: 99, Neg. LLF: 161.17118785537397
Iteration: 13, Func. Count: 107, Neg. LLF: 161.1337161595139
Iteration: 14, Func. Count: 115, Neg. LLF: 161.12008228750705
Iteration: 15, Func. Count: 123, Neg. LLF: 161.11784315133906
Iteration: 16, Func. Count: 131, Neg. LLF: 161.11761007811072
Iteration: 17, Func. Count: 139, Neg. LLF: 161.1176046929513
Iteration: 18, Func. Count: 146, Neg. LLF: 161.1176047014773
Optimization terminated successfully (Exit mode 0)
Current function value: 161.1176046929513
Iterations: 18
Function evaluations: 146
Gradient evaluations: 18
Iteration: 1, Func. Count: 10, Neg. LLF: 611.4199100751935
Iteration: 2, Func. Count: 20, Neg. LLF: 182.60400233285802
Iteration: 3, Func. Count: 30, Neg. LLF: 177.9382083783193
Iteration: 4, Func. Count: 40, Neg. LLF: 160.61175725093145
Iteration: 5, Func. Count: 49, Neg. LLF: 160.57002570222443
Iteration: 6, Func. Count: 59, Neg. LLF: 160.32123636235687
Iteration: 7, Func. Count: 68, Neg. LLF: 160.2829588455761
Iteration: 8, Func. Count: 77, Neg. LLF: 160.27884792295924
Iteration: 9, Func. Count: 86, Neg. LLF: 160.27708049743222
Iteration: 10, Func. Count: 95, Neg. LLF: 160.27700027945892
Iteration: 11, Func. Count: 104, Neg. LLF: 160.27699830639125
Iteration: 12, Func. Count: 112, Neg. LLF: 160.2769982542883
Optimization terminated successfully (Exit mode 0)
Current function value: 160.27699830639125
Iterations: 12
Function evaluations: 112
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 282.1366619742739
Iteration: 2, Func. Count: 22, Neg. LLF: 191.1359246520806
Iteration: 3, Func. Count: 33, Neg. LLF: 177.5351446825795
Iteration: 4, Func. Count: 44, Neg. LLF: 166.21982019818665
Iteration: 5, Func. Count: 55, Neg. LLF: 165.30955629963722
Iteration: 6, Func. Count: 66, Neg. LLF: 160.59174965992062
Iteration: 7, Func. Count: 76, Neg. LLF: 160.30684085201193
Iteration: 8, Func. Count: 86, Neg. LLF: 160.11306338423634
Iteration: 9, Func. Count: 96, Neg. LLF: 160.0577338586789
Iteration: 10, Func. Count: 106, Neg. LLF: 160.06651193723775
Iteration: 11, Func. Count: 117, Neg. LLF: 160.85155267029464
Iteration: 12, Func. Count: 128, Neg. LLF: 159.8981341988741
Iteration: 13, Func. Count: 138, Neg. LLF: 159.88917375268556
Iteration: 14, Func. Count: 148, Neg. LLF: 159.88242280997764
Iteration: 15, Func. Count: 158, Neg. LLF: 159.87705686803713
Iteration: 16, Func. Count: 168, Neg. LLF: 159.86954554208896
Iteration: 17, Func. Count: 178, Neg. LLF: 159.86360380921843
Iteration: 18, Func. Count: 188, Neg. LLF: 159.86105701564279
Iteration: 19, Func. Count: 198, Neg. LLF: 159.8608501175359
Iteration: 20, Func. Count: 208, Neg. LLF: 159.8608337749071
Iteration: 21, Func. Count: 218, Neg. LLF: 159.86083256143047
Iteration: 22, Func. Count: 227, Neg. LLF: 159.86083253876734
Optimization terminated successfully (Exit mode 0)
Current function value: 159.86083256143047
Iterations: 22
Function evaluations: 227
Gradient evaluations: 22
Iteration: 1, Func. Count: 12, Neg. LLF: 280.1047805764856
Iteration: 2, Func. Count: 24, Neg. LLF: 191.17216501528912
Iteration: 3, Func. Count: 36, Neg. LLF: 176.3566288336925
Iteration: 4, Func. Count: 48, Neg. LLF: 167.10359888407532
Iteration: 5, Func. Count: 60, Neg. LLF: 166.3539464507226
Iteration: 6, Func. Count: 72, Neg. LLF: 159.1971399447142
Iteration: 7, Func. Count: 83, Neg. LLF: 158.7051724877081
Iteration: 8, Func. Count: 94, Neg. LLF: 158.6224573562399
Iteration: 9, Func. Count: 105, Neg. LLF: 158.57786566690905
Iteration: 10, Func. Count: 116, Neg. LLF: 158.56272753796338
Iteration: 11, Func. Count: 127, Neg. LLF: 158.55244885865173
Iteration: 12, Func. Count: 138, Neg. LLF: 158.54941089514958
Iteration: 13, Func. Count: 149, Neg. LLF: 158.53722818575685
Iteration: 14, Func. Count: 160, Neg. LLF: 158.53408481876
Iteration: 15, Func. Count: 171, Neg. LLF: 158.53379618427664
Iteration: 16, Func. Count: 182, Neg. LLF: 158.53377058621405
Iteration: 17, Func. Count: 192, Neg. LLF: 158.5337705760893
Optimization terminated successfully (Exit mode 0)
Current function value: 158.53377058621405
Iterations: 17
Function evaluations: 192
Gradient evaluations: 17
Iteration: 1, Func. Count: 13, Neg. LLF: 278.5233661739668
Iteration: 2, Func. Count: 26, Neg. LLF: 190.74671749867
Iteration: 3, Func. Count: 39, Neg. LLF: 176.13643125366696
Iteration: 4, Func. Count: 52, Neg. LLF: 166.99187371499826
Iteration: 5, Func. Count: 65, Neg. LLF: 166.13700067866128
Iteration: 6, Func. Count: 78, Neg. LLF: 159.02300535168914
Iteration: 7, Func. Count: 90, Neg. LLF: 158.76085531323716
Iteration: 8, Func. Count: 102, Neg. LLF: 158.64359881934948
Iteration: 9, Func. Count: 114, Neg. LLF: 158.59720035272943
Iteration: 10, Func. Count: 126, Neg. LLF: 158.5593309937228
Iteration: 11, Func. Count: 138, Neg. LLF: 158.55389049942332
Iteration: 12, Func. Count: 150, Neg. LLF: 158.5495006529505
Iteration: 13, Func. Count: 162, Neg. LLF: 158.54302926324215
Iteration: 14, Func. Count: 174, Neg. LLF: 158.5370778716287
Iteration: 15, Func. Count: 186, Neg. LLF: 158.5342242570851
Iteration: 16, Func. Count: 198, Neg. LLF: 158.5337801808529
Iteration: 17, Func. Count: 210, Neg. LLF: 158.5337705899713
Iteration: 18, Func. Count: 221, Neg. LLF: 158.53377067271157
Optimization terminated successfully (Exit mode 0)
Current function value: 158.5337705899713
Iterations: 18
Function evaluations: 221
Gradient evaluations: 18
Iteration: 1, Func. Count: 6, Neg. LLF: 168.48993573304415
Iteration: 2, Func. Count: 12, Neg. LLF: 167.87222894714728
Iteration: 3, Func. Count: 19, Neg. LLF: 166.30291369208246
Iteration: 4, Func. Count: 24, Neg. LLF: 166.20449893540095
Iteration: 5, Func. Count: 29, Neg. LLF: 166.08879458817276
Iteration: 6, Func. Count: 34, Neg. LLF: 165.29834286824013
Iteration: 7, Func. Count: 39, Neg. LLF: 167.8676254518367
Iteration: 8, Func. Count: 45, Neg. LLF: 169.17456606685562
Iteration: 9, Func. Count: 51, Neg. LLF: 163.75577694264962
Iteration: 10, Func. Count: 57, Neg. LLF: 163.2826993947919
Iteration: 11, Func. Count: 62, Neg. LLF: 163.21983147543006
Iteration: 12, Func. Count: 67, Neg. LLF: 163.20929905064483
Iteration: 13, Func. Count: 72, Neg. LLF: 163.20630947482385
Iteration: 14, Func. Count: 77, Neg. LLF: 163.20603198244163
Iteration: 15, Func. Count: 81, Neg. LLF: 163.2060319723473
Optimization terminated successfully (Exit mode 0)
Current function value: 163.20603198244163
Iterations: 15
Function evaluations: 81
Gradient evaluations: 15
Iteration: 1, Func. Count: 7, Neg. LLF: 280.5575726820529
Iteration: 2, Func. Count: 14, Neg. LLF: 162.40684826074096
Iteration: 3, Func. Count: 20, Neg. LLF: 169.02580336365506
Iteration: 4, Func. Count: 27, Neg. LLF: 164.30487374579937
Iteration: 5, Func. Count: 34, Neg. LLF: 161.43210674072043
Iteration: 6, Func. Count: 40, Neg. LLF: 161.36465555294723
Iteration: 7, Func. Count: 46, Neg. LLF: 161.3356182250858
Iteration: 8, Func. Count: 52, Neg. LLF: 161.3239739707456
Iteration: 9, Func. Count: 58, Neg. LLF: 161.32124615738246
Iteration: 10, Func. Count: 64, Neg. LLF: 161.32091127138798
Iteration: 11, Func. Count: 70, Neg. LLF: 161.3208928729327
Iteration: 12, Func. Count: 75, Neg. LLF: 161.3208928546046
Optimization terminated successfully (Exit mode 0)
Current function value: 161.3208928729327
Iterations: 12
Function evaluations: 75
Gradient evaluations: 12
Iteration: 1, Func. Count: 8, Neg. LLF: 181.9262398948037
Iteration: 2, Func. Count: 16, Neg. LLF: 216.43263313247402
Iteration: 3, Func. Count: 24, Neg. LLF: 205.09486368970397
Iteration: 4, Func. Count: 32, Neg. LLF: 170.53689673698517
Iteration: 5, Func. Count: 40, Neg. LLF: 161.46608222668513
Iteration: 6, Func. Count: 47, Neg. LLF: 161.37232407317126
Iteration: 7, Func. Count: 54, Neg. LLF: 161.35396766717616
Iteration: 8, Func. Count: 61, Neg. LLF: 161.34705370412303
Iteration: 9, Func. Count: 68, Neg. LLF: 161.3303682101568
Iteration: 10, Func. Count: 75, Neg. LLF: 161.32312469762599
Iteration: 11, Func. Count: 82, Neg. LLF: 161.32098261228523
Iteration: 12, Func. Count: 89, Neg. LLF: 161.32089300407154
Iteration: 13, Func. Count: 96, Neg. LLF: 161.32089239589337
Optimization terminated successfully (Exit mode 0)
Current function value: 161.32089239589337
Iterations: 13
Function evaluations: 96
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 181.37436648597753
Iteration: 2, Func. Count: 18, Neg. LLF: 170.21522872711014
Iteration: 3, Func. Count: 27, Neg. LLF: 179.23460840913495
Iteration: 4, Func. Count: 36, Neg. LLF: 164.6416231703088
Iteration: 5, Func. Count: 45, Neg. LLF: 161.6532195031081
Iteration: 6, Func. Count: 53, Neg. LLF: 161.40942854793275
Iteration: 7, Func. Count: 61, Neg. LLF: 161.3701751005324
Iteration: 8, Func. Count: 69, Neg. LLF: 161.35914444819167
Iteration: 9, Func. Count: 77, Neg. LLF: 161.3466756308334
Iteration: 10, Func. Count: 85, Neg. LLF: 161.32663826873613
Iteration: 11, Func. Count: 93, Neg. LLF: 161.32167626490622
Iteration: 12, Func. Count: 101, Neg. LLF: 161.32089704273707
Iteration: 13, Func. Count: 109, Neg. LLF: 161.32089265104028
Iteration: 14, Func. Count: 116, Neg. LLF: 161.3208926408511
Optimization terminated successfully (Exit mode 0)
Current function value: 161.32089265104028
Iterations: 14
Function evaluations: 116
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 181.0984275983473
Iteration: 2, Func. Count: 20, Neg. LLF: 166.23620960545992
Iteration: 3, Func. Count: 30, Neg. LLF: 188.63984756637487
Iteration: 4, Func. Count: 40, Neg. LLF: 162.46392979869154
Iteration: 5, Func. Count: 50, Neg. LLF: 161.44144501270537
Iteration: 6, Func. Count: 59, Neg. LLF: 161.46755633302632
Iteration: 7, Func. Count: 69, Neg. LLF: 161.82026054938677
Iteration: 8, Func. Count: 79, Neg. LLF: 161.3864640885711
Iteration: 9, Func. Count: 89, Neg. LLF: 161.34480580948065
Iteration: 10, Func. Count: 98, Neg. LLF: 161.33552164681657
Iteration: 11, Func. Count: 107, Neg. LLF: 161.31366093140613
Iteration: 12, Func. Count: 116, Neg. LLF: 161.31128084625863
Iteration: 13, Func. Count: 125, Neg. LLF: 161.30999645538856
Iteration: 14, Func. Count: 134, Neg. LLF: 161.30994201370416
Iteration: 15, Func. Count: 143, Neg. LLF: 161.3099329841622
Iteration: 16, Func. Count: 151, Neg. LLF: 161.30993296850477
Optimization terminated successfully (Exit mode 0)
Current function value: 161.3099329841622
Iterations: 16
Function evaluations: 151
Gradient evaluations: 16
Iteration: 1, Func. Count: 7, Neg. LLF: 168.4614589487232
Iteration: 2, Func. Count: 14, Neg. LLF: 166.95263582717075
Iteration: 3, Func. Count: 22, Neg. LLF: 165.70739161146832
Iteration: 4, Func. Count: 28, Neg. LLF: 165.58730249001115
Iteration: 5, Func. Count: 34, Neg. LLF: 165.08512001820773
Iteration: 6, Func. Count: 40, Neg. LLF: 164.75977813467904
Iteration: 7, Func. Count: 46, Neg. LLF: 164.12118109119038
Iteration: 8, Func. Count: 52, Neg. LLF: 163.5646490996783
Iteration: 9, Func. Count: 58, Neg. LLF: 163.193791293075
Iteration: 10, Func. Count: 64, Neg. LLF: 163.11499886467084
Iteration: 11, Func. Count: 70, Neg. LLF: 163.05837590878696
Iteration: 12, Func. Count: 76, Neg. LLF: 163.0422714678016
Iteration: 13, Func. Count: 82, Neg. LLF: 163.0347039572945
Iteration: 14, Func. Count: 88, Neg. LLF: 163.03437740683387
Iteration: 15, Func. Count: 94, Neg. LLF: 163.0343604772733
Iteration: 16, Func. Count: 100, Neg. LLF: 163.0343579237973
Iteration: 17, Func. Count: 105, Neg. LLF: 163.0343579238014
Optimization terminated successfully (Exit mode 0)
Current function value: 163.0343579237973
Iterations: 17
Function evaluations: 105
Gradient evaluations: 17
Iteration: 1, Func. Count: 8, Neg. LLF: 213.68393431102913
Iteration: 2, Func. Count: 16, Neg. LLF: 166.31499946159468
Iteration: 3, Func. Count: 24, Neg. LLF: 163.97220746440394
Iteration: 4, Func. Count: 32, Neg. LLF: 163.36330034546575
Iteration: 5, Func. Count: 40, Neg. LLF: 171.13506184283293
Iteration: 6, Func. Count: 48, Neg. LLF: 161.37823136540172
Iteration: 7, Func. Count: 55, Neg. LLF: 161.33335337403642
Iteration: 8, Func. Count: 62, Neg. LLF: 161.32064318073154
Iteration: 9, Func. Count: 69, Neg. LLF: 161.31945561253957
Iteration: 10, Func. Count: 76, Neg. LLF: 161.31939883400494
Iteration: 11, Func. Count: 83, Neg. LLF: 161.31939501387478
Iteration: 12, Func. Count: 90, Neg. LLF: 161.3193942610215
Optimization terminated successfully (Exit mode 0)
Current function value: 161.3193942610215
Iterations: 12
Function evaluations: 90
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 167.4765065276779
Iteration: 2, Func. Count: 18, Neg. LLF: 163.33969786573363
Iteration: 3, Func. Count: 27, Neg. LLF: 162.49538641461697
Iteration: 4, Func. Count: 36, Neg. LLF: 161.49864274156835
Iteration: 5, Func. Count: 44, Neg. LLF: 164.93742118451453
Iteration: 6, Func. Count: 53, Neg. LLF: 162.91710463979774
Iteration: 7, Func. Count: 62, Neg. LLF: 161.43680380574042
Iteration: 8, Func. Count: 71, Neg. LLF: 161.39901481575316
Iteration: 9, Func. Count: 79, Neg. LLF: 161.38965437374748
Iteration: 10, Func. Count: 87, Neg. LLF: 161.3590432650343
Iteration: 11, Func. Count: 95, Neg. LLF: 161.33517322108827
Iteration: 12, Func. Count: 103, Neg. LLF: 161.32277830651825
Iteration: 13, Func. Count: 111, Neg. LLF: 161.3194941949035
Iteration: 14, Func. Count: 119, Neg. LLF: 161.3194028590009
Iteration: 15, Func. Count: 127, Neg. LLF: 161.31939463611423
Iteration: 16, Func. Count: 134, Neg. LLF: 161.31939466767457
Optimization terminated successfully (Exit mode 0)
Current function value: 161.31939463611423
Iterations: 16
Function evaluations: 134
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 180.7638702177736
Iteration: 2, Func. Count: 20, Neg. LLF: 196.53541848777022
Iteration: 3, Func. Count: 30, Neg. LLF: 163.9634049265043
Iteration: 4, Func. Count: 40, Neg. LLF: 162.1658227962881
Iteration: 5, Func. Count: 49, Neg. LLF: 163.2988013361966
Iteration: 6, Func. Count: 59, Neg. LLF: 161.61590454235127
Iteration: 7, Func. Count: 69, Neg. LLF: 161.38094051880327
Iteration: 8, Func. Count: 79, Neg. LLF: 161.34998324410594
Iteration: 9, Func. Count: 88, Neg. LLF: 161.34304854579986
Iteration: 10, Func. Count: 97, Neg. LLF: 161.32826874357434
Iteration: 11, Func. Count: 106, Neg. LLF: 161.32543219784353
Iteration: 12, Func. Count: 115, Neg. LLF: 161.31984810842997
Iteration: 13, Func. Count: 124, Neg. LLF: 161.31942345061827
Iteration: 14, Func. Count: 133, Neg. LLF: 161.31939429152345
Iteration: 15, Func. Count: 141, Neg. LLF: 161.3193942831779
Optimization terminated successfully (Exit mode 0)
Current function value: 161.31939429152345
Iterations: 15
Function evaluations: 141
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 180.66796576249365
Iteration: 2, Func. Count: 22, Neg. LLF: 177.02847060632268
Iteration: 3, Func. Count: 33, Neg. LLF: 175.91981701407576
Iteration: 4, Func. Count: 44, Neg. LLF: 163.37111821500423
Iteration: 5, Func. Count: 55, Neg. LLF: 161.62144179402856
Iteration: 6, Func. Count: 65, Neg. LLF: 162.92363932881437
Iteration: 7, Func. Count: 77, Neg. LLF: 162.04202810406153
Iteration: 8, Func. Count: 88, Neg. LLF: 161.39663002450695
Iteration: 9, Func. Count: 98, Neg. LLF: 161.38854866649285
Iteration: 10, Func. Count: 109, Neg. LLF: 161.3282169617174
Iteration: 11, Func. Count: 119, Neg. LLF: 161.32460749602012
Iteration: 12, Func. Count: 129, Neg. LLF: 161.3131864438249
Iteration: 13, Func. Count: 139, Neg. LLF: 161.30938133846342
Iteration: 14, Func. Count: 149, Neg. LLF: 161.30835388015035
Iteration: 15, Func. Count: 159, Neg. LLF: 161.3082835169296
Iteration: 16, Func. Count: 169, Neg. LLF: 161.3082781448008
Iteration: 17, Func. Count: 179, Neg. LLF: 161.30827647772807
Iteration: 18, Func. Count: 188, Neg. LLF: 161.30827646447452
Optimization terminated successfully (Exit mode 0)
Current function value: 161.30827647772807
Iterations: 18
Function evaluations: 188
Gradient evaluations: 18
Iteration: 1, Func. Count: 8, Neg. LLF: 168.49649321419793
Iteration: 2, Func. Count: 16, Neg. LLF: 175.53371336791048
Iteration: 3, Func. Count: 25, Neg. LLF: 173.36069205328675
Iteration: 4, Func. Count: 33, Neg. LLF: 165.61400468644243
Iteration: 5, Func. Count: 40, Neg. LLF: 165.54831413101454
Iteration: 6, Func. Count: 47, Neg. LLF: 165.39849133954382
Iteration: 7, Func. Count: 54, Neg. LLF: 164.57834499657096
Iteration: 8, Func. Count: 61, Neg. LLF: 163.91776653327955
Iteration: 9, Func. Count: 68, Neg. LLF: 163.3412701560883
Iteration: 10, Func. Count: 75, Neg. LLF: 163.11686848611825
Iteration: 11, Func. Count: 82, Neg. LLF: 163.00483968326196
Iteration: 12, Func. Count: 89, Neg. LLF: 162.98367951055536
Iteration: 13, Func. Count: 96, Neg. LLF: 162.98324647898184
Iteration: 14, Func. Count: 103, Neg. LLF: 162.98315530871176
Iteration: 15, Func. Count: 110, Neg. LLF: 162.98305844670062
Iteration: 16, Func. Count: 117, Neg. LLF: 162.98303741567753
Iteration: 17, Func. Count: 124, Neg. LLF: 162.98302580529827
Iteration: 18, Func. Count: 131, Neg. LLF: 162.98302518173665
Optimization terminated successfully (Exit mode 0)
Current function value: 162.98302518173665
Iterations: 18
Function evaluations: 131
Gradient evaluations: 18
Iteration: 1, Func. Count: 9, Neg. LLF: 574.3153694462388
Iteration: 2, Func. Count: 18, Neg. LLF: 237.5824119232414
Iteration: 3, Func. Count: 27, Neg. LLF: 161.3879682140161
Iteration: 4, Func. Count: 35, Neg. LLF: 165.482582902423
Iteration: 5, Func. Count: 45, Neg. LLF: 163.25988406927848
Iteration: 6, Func. Count: 54, Neg. LLF: 161.4431826718403
Iteration: 7, Func. Count: 63, Neg. LLF: 161.09029947573347
Iteration: 8, Func. Count: 71, Neg. LLF: 161.08234704753204
Iteration: 9, Func. Count: 79, Neg. LLF: 161.07922724794122
Iteration: 10, Func. Count: 87, Neg. LLF: 161.079021704592
Iteration: 11, Func. Count: 95, Neg. LLF: 161.07899413971754
Iteration: 12, Func. Count: 103, Neg. LLF: 161.0789925208176
Iteration: 13, Func. Count: 110, Neg. LLF: 161.07899247802928
Optimization terminated successfully (Exit mode 0)
Current function value: 161.0789925208176
Iterations: 13
Function evaluations: 110
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 177.92653004946504
Iteration: 2, Func. Count: 20, Neg. LLF: 287.9369268508843
Iteration: 3, Func. Count: 31, Neg. LLF: 165.4663283994415
Iteration: 4, Func. Count: 41, Neg. LLF: 163.32694229074733
Iteration: 5, Func. Count: 51, Neg. LLF: 161.6061158428704
Iteration: 6, Func. Count: 60, Neg. LLF: 161.5490976736858
Iteration: 7, Func. Count: 70, Neg. LLF: 161.43304900802195
Iteration: 8, Func. Count: 80, Neg. LLF: 161.32840201192099
Iteration: 9, Func. Count: 89, Neg. LLF: 161.2995811500285
Iteration: 10, Func. Count: 98, Neg. LLF: 161.24171320959329
Iteration: 11, Func. Count: 107, Neg. LLF: 161.13697012386032
Iteration: 12, Func. Count: 116, Neg. LLF: 161.09534863975333
Iteration: 13, Func. Count: 125, Neg. LLF: 161.08230582108172
Iteration: 14, Func. Count: 134, Neg. LLF: 161.0799646293752
Iteration: 15, Func. Count: 143, Neg. LLF: 161.07909224660528
Iteration: 16, Func. Count: 152, Neg. LLF: 161.07899422386134
Iteration: 17, Func. Count: 161, Neg. LLF: 161.07899248463968
Iteration: 18, Func. Count: 169, Neg. LLF: 161.07899250094468
Optimization terminated successfully (Exit mode 0)
Current function value: 161.07899248463968
Iterations: 18
Function evaluations: 169
Gradient evaluations: 18
Iteration: 1, Func. Count: 11, Neg. LLF: 251.7771268204965
Iteration: 2, Func. Count: 22, Neg. LLF: 236.8284789777594
Iteration: 3, Func. Count: 33, Neg. LLF: 292.66081033247764
Iteration: 4, Func. Count: 44, Neg. LLF: 166.69458712670755
Iteration: 5, Func. Count: 55, Neg. LLF: 162.29922929142472
Iteration: 6, Func. Count: 65, Neg. LLF: 166.44397260683246
Iteration: 7, Func. Count: 77, Neg. LLF: 163.59295752052
Iteration: 8, Func. Count: 88, Neg. LLF: 161.54472760797316
Iteration: 9, Func. Count: 99, Neg. LLF: 161.34019872709302
Iteration: 10, Func. Count: 109, Neg. LLF: 161.2742123744565
Iteration: 11, Func. Count: 119, Neg. LLF: 161.24891738889835
Iteration: 12, Func. Count: 129, Neg. LLF: 161.19123068215941
Iteration: 13, Func. Count: 139, Neg. LLF: 161.16749231690775
Iteration: 14, Func. Count: 149, Neg. LLF: 161.11434810952963
Iteration: 15, Func. Count: 159, Neg. LLF: 161.10338622540053
Iteration: 16, Func. Count: 169, Neg. LLF: 161.08214972804444
Iteration: 17, Func. Count: 179, Neg. LLF: 161.07951516234132
Iteration: 18, Func. Count: 189, Neg. LLF: 161.07906428879082
Iteration: 19, Func. Count: 199, Neg. LLF: 161.07899804826963
Iteration: 20, Func. Count: 209, Neg. LLF: 161.07899260521535
Iteration: 21, Func. Count: 218, Neg. LLF: 161.07899260216746
Optimization terminated successfully (Exit mode 0)
Current function value: 161.07899260521535
Iterations: 21
Function evaluations: 218
Gradient evaluations: 21
Iteration: 1, Func. Count: 12, Neg. LLF: 196.78809226397814
Iteration: 2, Func. Count: 24, Neg. LLF: 202.23172117272404
Iteration: 3, Func. Count: 36, Neg. LLF: 195.03924316849515
Iteration: 4, Func. Count: 48, Neg. LLF: 168.59734415059626
Iteration: 5, Func. Count: 60, Neg. LLF: 162.5306455631418
Iteration: 6, Func. Count: 72, Neg. LLF: 162.2868578061707
Iteration: 7, Func. Count: 84, Neg. LLF: 161.58084328037563
Iteration: 8, Func. Count: 95, Neg. LLF: 162.15001379349616
Iteration: 9, Func. Count: 107, Neg. LLF: 161.47680833874617
Iteration: 10, Func. Count: 119, Neg. LLF: 161.35966915149737
Iteration: 11, Func. Count: 131, Neg. LLF: 161.30262956962702
Iteration: 12, Func. Count: 142, Neg. LLF: 161.27023493394407
Iteration: 13, Func. Count: 153, Neg. LLF: 161.240164095
Iteration: 14, Func. Count: 164, Neg. LLF: 161.15269782011362
Iteration: 15, Func. Count: 175, Neg. LLF: 161.10804261366434
Iteration: 16, Func. Count: 186, Neg. LLF: 161.0813041371797
Iteration: 17, Func. Count: 197, Neg. LLF: 161.07951244694118
Iteration: 18, Func. Count: 208, Neg. LLF: 161.0790260661654
Iteration: 19, Func. Count: 219, Neg. LLF: 161.07899591893982
Iteration: 20, Func. Count: 230, Neg. LLF: 161.07899265465682
Iteration: 21, Func. Count: 240, Neg. LLF: 161.07899265440798
Optimization terminated successfully (Exit mode 0)
Current function value: 161.07899265465682
Iterations: 21
Function evaluations: 240
Gradient evaluations: 21
Iteration: 1, Func. Count: 9, Neg. LLF: 167.60973687141413
Iteration: 2, Func. Count: 18, Neg. LLF: 163.8543694054222
Iteration: 3, Func. Count: 27, Neg. LLF: 161.8610742475807
Iteration: 4, Func. Count: 36, Neg. LLF: 161.21102812374343
Iteration: 5, Func. Count: 44, Neg. LLF: 161.2763441582361
Iteration: 6, Func. Count: 53, Neg. LLF: 161.12997742221688
Iteration: 7, Func. Count: 61, Neg. LLF: 161.12806090854627
Iteration: 8, Func. Count: 69, Neg. LLF: 161.1218714472629
Iteration: 9, Func. Count: 77, Neg. LLF: 161.12105663050417
Iteration: 10, Func. Count: 85, Neg. LLF: 161.12022732765726
Iteration: 11, Func. Count: 93, Neg. LLF: 161.11838855235266
Iteration: 12, Func. Count: 101, Neg. LLF: 161.11775000462848
Iteration: 13, Func. Count: 109, Neg. LLF: 161.11760969062493
Iteration: 14, Func. Count: 117, Neg. LLF: 161.1176044676505
Iteration: 15, Func. Count: 124, Neg. LLF: 161.11760446764941
Optimization terminated successfully (Exit mode 0)
Current function value: 161.1176044676505
Iterations: 15
Function evaluations: 124
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 631.7282682669608
Iteration: 2, Func. Count: 20, Neg. LLF: 249.35910999800637
Iteration: 3, Func. Count: 30, Neg. LLF: 181.24015909730423
Iteration: 4, Func. Count: 40, Neg. LLF: 160.76501251768258
Iteration: 5, Func. Count: 49, Neg. LLF: 161.78795013788505
Iteration: 6, Func. Count: 59, Neg. LLF: 161.82235631272192
Iteration: 7, Func. Count: 69, Neg. LLF: 160.09735708891452
Iteration: 8, Func. Count: 78, Neg. LLF: 160.02984981080692
Iteration: 9, Func. Count: 87, Neg. LLF: 160.0005974388025
Iteration: 10, Func. Count: 96, Neg. LLF: 159.9856263378343
Iteration: 11, Func. Count: 105, Neg. LLF: 159.97686407843798
Iteration: 12, Func. Count: 114, Neg. LLF: 159.97504596470827
Iteration: 13, Func. Count: 123, Neg. LLF: 159.97445173084728
Iteration: 14, Func. Count: 132, Neg. LLF: 159.97430808279574
Iteration: 15, Func. Count: 141, Neg. LLF: 159.97427263188877
Iteration: 16, Func. Count: 150, Neg. LLF: 159.9742658676972
Iteration: 17, Func. Count: 159, Neg. LLF: 159.97426486343528
Iteration: 18, Func. Count: 167, Neg. LLF: 159.9742648291971
Optimization terminated successfully (Exit mode 0)
Current function value: 159.97426486343528
Iterations: 18
Function evaluations: 167
Gradient evaluations: 18
Iteration: 1, Func. Count: 11, Neg. LLF: 172.05434369558637
Iteration: 2, Func. Count: 22, Neg. LLF: 182.6289438319301
Iteration: 3, Func. Count: 33, Neg. LLF: 174.92108603177095
Iteration: 4, Func. Count: 44, Neg. LLF: 162.97959182279467
Iteration: 5, Func. Count: 55, Neg. LLF: 160.6061870505094
Iteration: 6, Func. Count: 66, Neg. LLF: 160.08479076586877
Iteration: 7, Func. Count: 77, Neg. LLF: 159.8045876810297
Iteration: 8, Func. Count: 87, Neg. LLF: 160.6983775815196
Iteration: 9, Func. Count: 98, Neg. LLF: 159.78115006303474
Iteration: 10, Func. Count: 109, Neg. LLF: 159.75472417442597
Iteration: 11, Func. Count: 119, Neg. LLF: 159.7335571229259
Iteration: 12, Func. Count: 129, Neg. LLF: 159.7036984498437
Iteration: 13, Func. Count: 139, Neg. LLF: 159.669184059387
Iteration: 14, Func. Count: 149, Neg. LLF: 159.6641014109375
Iteration: 15, Func. Count: 159, Neg. LLF: 159.6621879788368
Iteration: 16, Func. Count: 169, Neg. LLF: 159.66205944749356
Iteration: 17, Func. Count: 179, Neg. LLF: 159.66205440968292
Iteration: 18, Func. Count: 188, Neg. LLF: 159.66205437125876
Optimization terminated successfully (Exit mode 0)
Current function value: 159.66205440968292
Iterations: 18
Function evaluations: 188
Gradient evaluations: 18
Iteration: 1, Func. Count: 12, Neg. LLF: 171.6602911633122
Iteration: 2, Func. Count: 24, Neg. LLF: 196.6936719899296
Iteration: 3, Func. Count: 36, Neg. LLF: 168.13107708436965
Iteration: 4, Func. Count: 48, Neg. LLF: 164.2750619056461
Iteration: 5, Func. Count: 60, Neg. LLF: 159.23028797137584
Iteration: 6, Func. Count: 71, Neg. LLF: 160.65713895634863
Iteration: 7, Func. Count: 83, Neg. LLF: 159.33722931140696
Iteration: 8, Func. Count: 95, Neg. LLF: 158.5756555748027
Iteration: 9, Func. Count: 106, Neg. LLF: 158.56453471914455
Iteration: 10, Func. Count: 117, Neg. LLF: 158.5585377361172
Iteration: 11, Func. Count: 128, Neg. LLF: 158.54165163478783
Iteration: 12, Func. Count: 139, Neg. LLF: 158.53614501878954
Iteration: 13, Func. Count: 150, Neg. LLF: 158.53387413813738
Iteration: 14, Func. Count: 161, Neg. LLF: 158.53380022672397
Iteration: 15, Func. Count: 172, Neg. LLF: 158.53377145258807
Iteration: 16, Func. Count: 183, Neg. LLF: 158.533770588669
Optimization terminated successfully (Exit mode 0)
Current function value: 158.533770588669
Iterations: 16
Function evaluations: 183
Gradient evaluations: 16
Iteration: 1, Func. Count: 13, Neg. LLF: 172.627925020271
Iteration: 2, Func. Count: 26, Neg. LLF: 288.4740825930066
Iteration: 3, Func. Count: 39, Neg. LLF: 177.93582305404252
Iteration: 4, Func. Count: 52, Neg. LLF: 162.5490307217007
Iteration: 5, Func. Count: 65, Neg. LLF: 158.7844212690732
Iteration: 6, Func. Count: 77, Neg. LLF: 158.58261227417688
Iteration: 7, Func. Count: 89, Neg. LLF: 158.56740399897083
Iteration: 8, Func. Count: 101, Neg. LLF: 158.6294946334756
Iteration: 9, Func. Count: 114, Neg. LLF: 158.56038800299768
Iteration: 10, Func. Count: 126, Neg. LLF: 158.54172911849133
Iteration: 11, Func. Count: 138, Neg. LLF: 158.53537349710007
Iteration: 12, Func. Count: 150, Neg. LLF: 158.53390145275927
Iteration: 13, Func. Count: 162, Neg. LLF: 158.53380552737278
Iteration: 14, Func. Count: 174, Neg. LLF: 158.5337776817132
Iteration: 15, Func. Count: 186, Neg. LLF: 158.5337707938322
Iteration: 16, Func. Count: 197, Neg. LLF: 158.53377087668503
Optimization terminated successfully (Exit mode 0)
Current function value: 158.5337707938322
Iterations: 16
Function evaluations: 197
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 167.8845718074016
Iteration: 2, Func. Count: 20, Neg. LLF: 164.35673165968763
Iteration: 3, Func. Count: 30, Neg. LLF: 161.48597632391807
Iteration: 4, Func. Count: 39, Neg. LLF: 161.14114924630653
Iteration: 5, Func. Count: 48, Neg. LLF: 161.13057813184284
Iteration: 6, Func. Count: 57, Neg. LLF: 161.12876153084858
Iteration: 7, Func. Count: 66, Neg. LLF: 161.12319873720043
Iteration: 8, Func. Count: 75, Neg. LLF: 161.12024948539425
Iteration: 9, Func. Count: 84, Neg. LLF: 161.11969092873983
Iteration: 10, Func. Count: 93, Neg. LLF: 161.1191673887513
Iteration: 11, Func. Count: 102, Neg. LLF: 161.1184850466165
Iteration: 12, Func. Count: 111, Neg. LLF: 161.11784787444233
Iteration: 13, Func. Count: 120, Neg. LLF: 161.1176299946018
Iteration: 14, Func. Count: 129, Neg. LLF: 161.11760513906358
Iteration: 15, Func. Count: 138, Neg. LLF: 161.11760442572063
Optimization terminated successfully (Exit mode 0)
Current function value: 161.11760442572063
Iterations: 15
Function evaluations: 138
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 621.2398119863672
Iteration: 2, Func. Count: 22, Neg. LLF: 234.21010735488633
Iteration: 3, Func. Count: 33, Neg. LLF: 182.3720337305934
Iteration: 4, Func. Count: 44, Neg. LLF: 160.57175688490767
Iteration: 5, Func. Count: 54, Neg. LLF: 161.3870576087284
Iteration: 6, Func. Count: 65, Neg. LLF: 160.63168374101704
Iteration: 7, Func. Count: 76, Neg. LLF: 160.06422545195645
Iteration: 8, Func. Count: 86, Neg. LLF: 160.02421569045208
Iteration: 9, Func. Count: 96, Neg. LLF: 159.98915773362995
Iteration: 10, Func. Count: 106, Neg. LLF: 159.97878472720302
Iteration: 11, Func. Count: 116, Neg. LLF: 159.97459340451778
Iteration: 12, Func. Count: 126, Neg. LLF: 159.9743330746451
Iteration: 13, Func. Count: 136, Neg. LLF: 159.9742853304984
Iteration: 14, Func. Count: 146, Neg. LLF: 159.974268936298
Iteration: 15, Func. Count: 156, Neg. LLF: 159.97426549384605
Iteration: 16, Func. Count: 166, Neg. LLF: 159.9742648185006
Optimization terminated successfully (Exit mode 0)
Current function value: 159.9742648185006
Iterations: 16
Function evaluations: 166
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 171.94671803725865
Iteration: 2, Func. Count: 24, Neg. LLF: 177.97093376597942
Iteration: 3, Func. Count: 36, Neg. LLF: 167.5273901265193
Iteration: 4, Func. Count: 48, Neg. LLF: 163.01914352805517
Iteration: 5, Func. Count: 60, Neg. LLF: 160.36252374792204
Iteration: 6, Func. Count: 72, Neg. LLF: 160.33308412425288
Iteration: 7, Func. Count: 84, Neg. LLF: 159.7823163762917
Iteration: 8, Func. Count: 95, Neg. LLF: 159.991858088899
Iteration: 9, Func. Count: 107, Neg. LLF: 159.7602640625211
Iteration: 10, Func. Count: 118, Neg. LLF: 159.7444630990008
Iteration: 11, Func. Count: 129, Neg. LLF: 159.70687843909954
Iteration: 12, Func. Count: 140, Neg. LLF: 159.6656446946934
Iteration: 13, Func. Count: 151, Neg. LLF: 159.66238429032322
Iteration: 14, Func. Count: 162, Neg. LLF: 159.66206297680196
Iteration: 15, Func. Count: 173, Neg. LLF: 159.66205476666738
Iteration: 16, Func. Count: 183, Neg. LLF: 159.66205472824544
Optimization terminated successfully (Exit mode 0)
Current function value: 159.66205476666738
Iterations: 16
Function evaluations: 183
Gradient evaluations: 16
Iteration: 1, Func. Count: 13, Neg. LLF: 171.7830718602337
Iteration: 2, Func. Count: 26, Neg. LLF: 178.61488483715007
Iteration: 3, Func. Count: 39, Neg. LLF: 171.98884456032124
Iteration: 4, Func. Count: 52, Neg. LLF: 159.97940451650175
Iteration: 5, Func. Count: 64, Neg. LLF: 166.68905057374903
Iteration: 6, Func. Count: 77, Neg. LLF: 162.66030531027823
Iteration: 7, Func. Count: 90, Neg. LLF: 158.83271972292553
Iteration: 8, Func. Count: 103, Neg. LLF: 158.58649158275364
Iteration: 9, Func. Count: 115, Neg. LLF: 158.56573718446748
Iteration: 10, Func. Count: 127, Neg. LLF: 158.5597944745902
Iteration: 11, Func. Count: 139, Neg. LLF: 158.54925769438336
Iteration: 12, Func. Count: 151, Neg. LLF: 158.5447868750637
Iteration: 13, Func. Count: 163, Neg. LLF: 158.53557300689374
Iteration: 14, Func. Count: 175, Neg. LLF: 158.53401043686404
Iteration: 15, Func. Count: 187, Neg. LLF: 158.53379817556646
Iteration: 16, Func. Count: 199, Neg. LLF: 158.53378725367008
Iteration: 17, Func. Count: 211, Neg. LLF: 158.5337705404079
Iteration: 18, Func. Count: 222, Neg. LLF: 158.53377053031892
Optimization terminated successfully (Exit mode 0)
Current function value: 158.5337705404079
Iterations: 18
Function evaluations: 222
Gradient evaluations: 18
Iteration: 1, Func. Count: 14, Neg. LLF: 176.47444284320528
Iteration: 2, Func. Count: 28, Neg. LLF: 284.4544994732083
Iteration: 3, Func. Count: 42, Neg. LLF: 178.87701108651422
Iteration: 4, Func. Count: 56, Neg. LLF: 165.70005523765582
Iteration: 5, Func. Count: 70, Neg. LLF: 167.97342032794347
Iteration: 6, Func. Count: 84, Neg. LLF: 158.76886176920712
Iteration: 7, Func. Count: 97, Neg. LLF: 158.67531842970675
Iteration: 8, Func. Count: 110, Neg. LLF: 158.6199742590517
Iteration: 9, Func. Count: 123, Neg. LLF: 158.5614624925782
Iteration: 10, Func. Count: 136, Neg. LLF: 158.5556642762601
Iteration: 11, Func. Count: 149, Neg. LLF: 158.5485643654538
Iteration: 12, Func. Count: 162, Neg. LLF: 158.54283944688092
Iteration: 13, Func. Count: 175, Neg. LLF: 158.5367309805098
Iteration: 14, Func. Count: 188, Neg. LLF: 158.53445775750887
Iteration: 15, Func. Count: 201, Neg. LLF: 158.53382592662444
Iteration: 16, Func. Count: 214, Neg. LLF: 158.53377717425775
Iteration: 17, Func. Count: 227, Neg. LLF: 158.5337706588802
Iteration: 18, Func. Count: 239, Neg. LLF: 158.53377074161634
Optimization terminated successfully (Exit mode 0)
Current function value: 158.5337706588802
Iterations: 18
Function evaluations: 239
Gradient evaluations: 18
Iteration: 1, Func. Count: 7, Neg. LLF: 166.47967936782624
Iteration: 2, Func. Count: 14, Neg. LLF: 166.2382274608748
Iteration: 3, Func. Count: 21, Neg. LLF: 164.73113709562
Iteration: 4, Func. Count: 27, Neg. LLF: 164.49920037480928
Iteration: 5, Func. Count: 33, Neg. LLF: 164.32902997091452
Iteration: 6, Func. Count: 39, Neg. LLF: 164.119077567208
Iteration: 7, Func. Count: 45, Neg. LLF: 163.2823891163197
Iteration: 8, Func. Count: 51, Neg. LLF: 162.06157641985908
Iteration: 9, Func. Count: 57, Neg. LLF: 161.2186696220277
Iteration: 10, Func. Count: 63, Neg. LLF: 161.66205818905954
Iteration: 11, Func. Count: 70, Neg. LLF: 160.71285969739367
Iteration: 12, Func. Count: 76, Neg. LLF: 160.62275972044588
Iteration: 13, Func. Count: 82, Neg. LLF: 160.58087165829207
Iteration: 14, Func. Count: 88, Neg. LLF: 160.57583176682652
Iteration: 15, Func. Count: 94, Neg. LLF: 160.56958470961513
Iteration: 16, Func. Count: 100, Neg. LLF: 160.56900164092414
Iteration: 17, Func. Count: 106, Neg. LLF: 160.56893858684919
Iteration: 18, Func. Count: 112, Neg. LLF: 160.5689293294837
Iteration: 19, Func. Count: 117, Neg. LLF: 160.5689293294731
Optimization terminated successfully (Exit mode 0)
Current function value: 160.5689293294837
Iterations: 19
Function evaluations: 117
Gradient evaluations: 19
Iteration: 1, Func. Count: 8, Neg. LLF: 182.21965851893736
Iteration: 2, Func. Count: 16, Neg. LLF: 289.6289992525314
Iteration: 3, Func. Count: 24, Neg. LLF: 173.79079592491834
Iteration: 4, Func. Count: 32, Neg. LLF: 160.87231345732914
Iteration: 5, Func. Count: 39, Neg. LLF: 161.95186138185696
Iteration: 6, Func. Count: 47, Neg. LLF: 160.72074081939954
Iteration: 7, Func. Count: 54, Neg. LLF: 160.618907129131
Iteration: 8, Func. Count: 61, Neg. LLF: 160.59771937875524
Iteration: 9, Func. Count: 68, Neg. LLF: 160.59221754626967
Iteration: 10, Func. Count: 75, Neg. LLF: 160.57841619495224
Iteration: 11, Func. Count: 82, Neg. LLF: 160.57297649505546
Iteration: 12, Func. Count: 89, Neg. LLF: 160.57088561282384
Iteration: 13, Func. Count: 96, Neg. LLF: 160.57000428681974
Iteration: 14, Func. Count: 103, Neg. LLF: 160.56930670845418
Iteration: 15, Func. Count: 110, Neg. LLF: 160.56899939869007
Iteration: 16, Func. Count: 117, Neg. LLF: 160.5689331754336
Iteration: 17, Func. Count: 124, Neg. LLF: 160.56892933744837
Iteration: 18, Func. Count: 130, Neg. LLF: 160.56892937135123
Optimization terminated successfully (Exit mode 0)
Current function value: 160.56892933744837
Iterations: 18
Function evaluations: 130
Gradient evaluations: 18
Iteration: 1, Func. Count: 9, Neg. LLF: 181.5243270251437
Iteration: 2, Func. Count: 18, Neg. LLF: 216.48727401839304
Iteration: 3, Func. Count: 27, Neg. LLF: 203.76281229028916
Iteration: 4, Func. Count: 36, Neg. LLF: 169.3386632081104
Iteration: 5, Func. Count: 45, Neg. LLF: 162.28773935649966
Iteration: 6, Func. Count: 54, Neg. LLF: 160.9206821361827
Iteration: 7, Func. Count: 62, Neg. LLF: 160.70821752735142
Iteration: 8, Func. Count: 70, Neg. LLF: 160.64336078748525
Iteration: 9, Func. Count: 78, Neg. LLF: 160.61769377685044
Iteration: 10, Func. Count: 86, Neg. LLF: 160.591499513092
Iteration: 11, Func. Count: 94, Neg. LLF: 160.57911408102865
Iteration: 12, Func. Count: 102, Neg. LLF: 160.57263052949898
Iteration: 13, Func. Count: 110, Neg. LLF: 160.57103506969398
Iteration: 14, Func. Count: 118, Neg. LLF: 160.5697942064383
Iteration: 15, Func. Count: 126, Neg. LLF: 160.56915685492328
Iteration: 16, Func. Count: 134, Neg. LLF: 160.56895104835715
Iteration: 17, Func. Count: 142, Neg. LLF: 160.56893015265078
Iteration: 18, Func. Count: 150, Neg. LLF: 160.5689292910203
Optimization terminated successfully (Exit mode 0)
Current function value: 160.5689292910203
Iterations: 18
Function evaluations: 150
Gradient evaluations: 18
Iteration: 1, Func. Count: 10, Neg. LLF: 181.06284750962544
Iteration: 2, Func. Count: 20, Neg. LLF: 168.65190382378643
Iteration: 3, Func. Count: 30, Neg. LLF: 161.99100649792916
Iteration: 4, Func. Count: 39, Neg. LLF: 161.75948834903846
Iteration: 5, Func. Count: 49, Neg. LLF: 172.76031543998687
Iteration: 6, Func. Count: 59, Neg. LLF: 160.7941728685759
Iteration: 7, Func. Count: 68, Neg. LLF: 173.38072199541267
Iteration: 8, Func. Count: 78, Neg. LLF: 160.9368007613567
Iteration: 9, Func. Count: 88, Neg. LLF: 160.59829088268654
Iteration: 10, Func. Count: 97, Neg. LLF: 160.57889698774616
Iteration: 11, Func. Count: 106, Neg. LLF: 160.57392577612737
Iteration: 12, Func. Count: 115, Neg. LLF: 160.57202385235365
Iteration: 13, Func. Count: 124, Neg. LLF: 160.57141206789865
Iteration: 14, Func. Count: 133, Neg. LLF: 160.57116238616138
Iteration: 15, Func. Count: 142, Neg. LLF: 160.5707882506735
Iteration: 16, Func. Count: 151, Neg. LLF: 160.57030568171967
Iteration: 17, Func. Count: 160, Neg. LLF: 160.56976283218737
Iteration: 18, Func. Count: 169, Neg. LLF: 160.56906976013397
Iteration: 19, Func. Count: 178, Neg. LLF: 160.56872136205365
Iteration: 20, Func. Count: 187, Neg. LLF: 160.5686524150364
Iteration: 21, Func. Count: 196, Neg. LLF: 160.56864642630413
Iteration: 22, Func. Count: 204, Neg. LLF: 160.56864642631137
Optimization terminated successfully (Exit mode 0)
Current function value: 160.56864642630413
Iterations: 22
Function evaluations: 204
Gradient evaluations: 22
Iteration: 1, Func. Count: 11, Neg. LLF: 180.7767524286709
Iteration: 2, Func. Count: 22, Neg. LLF: 163.33030780585221
Iteration: 3, Func. Count: 33, Neg. LLF: 161.434950440978
Iteration: 4, Func. Count: 43, Neg. LLF: 161.18342695927814
Iteration: 5, Func. Count: 54, Neg. LLF: 184.12012532421377
Iteration: 6, Func. Count: 65, Neg. LLF: 168.90661366415
Iteration: 7, Func. Count: 76, Neg. LLF: 160.7801283323171
Iteration: 8, Func. Count: 87, Neg. LLF: 160.41597011911423
Iteration: 9, Func. Count: 97, Neg. LLF: 160.41536970451645
Iteration: 10, Func. Count: 108, Neg. LLF: 160.41221649555231
Iteration: 11, Func. Count: 118, Neg. LLF: 160.4117522847153
Iteration: 12, Func. Count: 128, Neg. LLF: 160.4116417604053
Iteration: 13, Func. Count: 138, Neg. LLF: 160.41157804199563
Iteration: 14, Func. Count: 148, Neg. LLF: 160.41141625975578
Iteration: 15, Func. Count: 158, Neg. LLF: 160.4113003603051
Iteration: 16, Func. Count: 168, Neg. LLF: 160.41125416842505
Iteration: 17, Func. Count: 178, Neg. LLF: 160.41124950428025
Iteration: 18, Func. Count: 187, Neg. LLF: 160.4112495042018
Optimization terminated successfully (Exit mode 0)
Current function value: 160.41124950428025
Iterations: 18
Function evaluations: 187
Gradient evaluations: 18
Iteration: 1, Func. Count: 8, Neg. LLF: 168.11931208528355
Iteration: 2, Func. Count: 16, Neg. LLF: 164.65165512252443
Iteration: 3, Func. Count: 24, Neg. LLF: 162.0291261972937
Iteration: 4, Func. Count: 31, Neg. LLF: 161.82721964252804
Iteration: 5, Func. Count: 38, Neg. LLF: 163.52997603852293
Iteration: 6, Func. Count: 46, Neg. LLF: 161.7460766985361
Iteration: 7, Func. Count: 53, Neg. LLF: 161.54753671809908
Iteration: 8, Func. Count: 60, Neg. LLF: 161.36534435942377
Iteration: 9, Func. Count: 67, Neg. LLF: 160.75267849243986
Iteration: 10, Func. Count: 74, Neg. LLF: 160.63536575499202
Iteration: 11, Func. Count: 81, Neg. LLF: 160.56642701634405
Iteration: 12, Func. Count: 88, Neg. LLF: 160.5573456253515
Iteration: 13, Func. Count: 95, Neg. LLF: 160.55228689496386
Iteration: 14, Func. Count: 102, Neg. LLF: 160.55211173671114
Iteration: 15, Func. Count: 109, Neg. LLF: 160.55208665538927
Iteration: 16, Func. Count: 116, Neg. LLF: 160.5520782467022
Iteration: 17, Func. Count: 123, Neg. LLF: 160.5520775226282
Optimization terminated successfully (Exit mode 0)
Current function value: 160.5520775226282
Iterations: 17
Function evaluations: 123
Gradient evaluations: 17
Iteration: 1, Func. Count: 9, Neg. LLF: 176.81566312002604
Iteration: 2, Func. Count: 18, Neg. LLF: 164.00229696569227
Iteration: 3, Func. Count: 27, Neg. LLF: 164.5300899487724
Iteration: 4, Func. Count: 36, Neg. LLF: 168.3745544567564
Iteration: 5, Func. Count: 45, Neg. LLF: 162.1913949247447
Iteration: 6, Func. Count: 54, Neg. LLF: 164.08537356346704
Iteration: 7, Func. Count: 63, Neg. LLF: 161.12064503758822
Iteration: 8, Func. Count: 71, Neg. LLF: 160.92842191012747
Iteration: 9, Func. Count: 79, Neg. LLF: 162.39946279787796
Iteration: 10, Func. Count: 88, Neg. LLF: 160.81919906315002
Iteration: 11, Func. Count: 97, Neg. LLF: 160.59370607138248
Iteration: 12, Func. Count: 105, Neg. LLF: 160.58238896436023
Iteration: 13, Func. Count: 113, Neg. LLF: 160.57809533290424
Iteration: 14, Func. Count: 121, Neg. LLF: 160.57701337131238
Iteration: 15, Func. Count: 129, Neg. LLF: 160.57506261206865
Iteration: 16, Func. Count: 137, Neg. LLF: 160.5720944223766
Iteration: 17, Func. Count: 145, Neg. LLF: 160.56631051233725
Iteration: 18, Func. Count: 153, Neg. LLF: 160.56007806436304
Iteration: 19, Func. Count: 161, Neg. LLF: 160.5524730454794
Iteration: 20, Func. Count: 169, Neg. LLF: 160.55215306158092
Iteration: 21, Func. Count: 177, Neg. LLF: 160.5520802148575
Iteration: 22, Func. Count: 185, Neg. LLF: 160.5520775581065
Iteration: 23, Func. Count: 192, Neg. LLF: 160.55207760206372
Optimization terminated successfully (Exit mode 0)
Current function value: 160.5520775581065
Iterations: 23
Function evaluations: 192
Gradient evaluations: 23
Iteration: 1, Func. Count: 10, Neg. LLF: 165.1803157971059
Iteration: 2, Func. Count: 20, Neg. LLF: 160.74644339298285
Iteration: 3, Func. Count: 29, Neg. LLF: 161.92218120768263
Iteration: 4, Func. Count: 39, Neg. LLF: 161.1635844456288
Iteration: 5, Func. Count: 49, Neg. LLF: 160.6047737685427
Iteration: 6, Func. Count: 59, Neg. LLF: 160.58401003175345
Iteration: 7, Func. Count: 68, Neg. LLF: 160.5806236282748
Iteration: 8, Func. Count: 77, Neg. LLF: 160.57909044489355
Iteration: 9, Func. Count: 86, Neg. LLF: 160.6126244350223
Iteration: 10, Func. Count: 96, Neg. LLF: 160.5776509617074
Iteration: 11, Func. Count: 106, Neg. LLF: 160.5604916295252
Iteration: 12, Func. Count: 115, Neg. LLF: 160.55429782742542
Iteration: 13, Func. Count: 124, Neg. LLF: 160.55212932158676
Iteration: 14, Func. Count: 133, Neg. LLF: 160.55208448031678
Iteration: 15, Func. Count: 142, Neg. LLF: 160.55207750718648
Iteration: 16, Func. Count: 150, Neg. LLF: 160.55207756024748
Optimization terminated successfully (Exit mode 0)
Current function value: 160.55207750718648
Iterations: 16
Function evaluations: 150
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 180.55747796149578
Iteration: 2, Func. Count: 22, Neg. LLF: 195.92410632280536
Iteration: 3, Func. Count: 33, Neg. LLF: 163.06215655999634
Iteration: 4, Func. Count: 44, Neg. LLF: 162.212245042899
Iteration: 5, Func. Count: 55, Neg. LLF: 160.90326920143627
Iteration: 6, Func. Count: 65, Neg. LLF: 160.70346403900172
Iteration: 7, Func. Count: 75, Neg. LLF: 160.66668044958453
Iteration: 8, Func. Count: 85, Neg. LLF: 160.62552410694803
Iteration: 9, Func. Count: 95, Neg. LLF: 160.631640131757
Iteration: 10, Func. Count: 106, Neg. LLF: 160.58376090578477
Iteration: 11, Func. Count: 116, Neg. LLF: 160.57998864517336
Iteration: 12, Func. Count: 126, Neg. LLF: 160.57795106116785
Iteration: 13, Func. Count: 136, Neg. LLF: 160.57322537383166
Iteration: 14, Func. Count: 146, Neg. LLF: 160.5686868305324
Iteration: 15, Func. Count: 156, Neg. LLF: 160.56389423761772
Iteration: 16, Func. Count: 166, Neg. LLF: 160.5608078291167
Iteration: 17, Func. Count: 176, Neg. LLF: 160.55555955193464
Iteration: 18, Func. Count: 186, Neg. LLF: 160.55344527603032
Iteration: 19, Func. Count: 196, Neg. LLF: 160.5523865606866
Iteration: 20, Func. Count: 206, Neg. LLF: 160.55213149117708
Iteration: 21, Func. Count: 216, Neg. LLF: 160.5520805602326
Iteration: 22, Func. Count: 226, Neg. LLF: 160.5520776408974
Iteration: 23, Func. Count: 235, Neg. LLF: 160.55207764274263
Optimization terminated successfully (Exit mode 0)
Current function value: 160.5520776408974
Iterations: 23
Function evaluations: 235
Gradient evaluations: 23
Iteration: 1, Func. Count: 12, Neg. LLF: 180.41091365551733
Iteration: 2, Func. Count: 24, Neg. LLF: 192.36778506314988
Iteration: 3, Func. Count: 36, Neg. LLF: 168.68963465683842
Iteration: 4, Func. Count: 48, Neg. LLF: 162.06345325841696
Iteration: 5, Func. Count: 60, Neg. LLF: 160.8819975733041
Iteration: 6, Func. Count: 71, Neg. LLF: 161.6626707373889
Iteration: 7, Func. Count: 83, Neg. LLF: 160.82104251934928
Iteration: 8, Func. Count: 95, Neg. LLF: 160.42496821152082
Iteration: 9, Func. Count: 106, Neg. LLF: 160.4054877201697
Iteration: 10, Func. Count: 117, Neg. LLF: 160.39663550573218
Iteration: 11, Func. Count: 128, Neg. LLF: 160.3960852406295
Iteration: 12, Func. Count: 139, Neg. LLF: 160.39599763487107
Iteration: 13, Func. Count: 150, Neg. LLF: 160.39593569075265
Iteration: 14, Func. Count: 161, Neg. LLF: 160.39582496089147
Iteration: 15, Func. Count: 172, Neg. LLF: 160.39576170946287
Iteration: 16, Func. Count: 183, Neg. LLF: 160.39573632529124
Iteration: 17, Func. Count: 194, Neg. LLF: 160.39573217988826
Iteration: 18, Func. Count: 204, Neg. LLF: 160.39573217516417
Optimization terminated successfully (Exit mode 0)
Current function value: 160.39573217988826
Iterations: 18
Function evaluations: 204
Gradient evaluations: 18
Iteration: 1, Func. Count: 9, Neg. LLF: 165.35580232304284
Iteration: 2, Func. Count: 18, Neg. LLF: 165.67570547999009
Iteration: 3, Func. Count: 28, Neg. LLF: 162.20184750841153
Iteration: 4, Func. Count: 37, Neg. LLF: 161.67693454148855
Iteration: 5, Func. Count: 45, Neg. LLF: 166.59791437467186
Iteration: 6, Func. Count: 54, Neg. LLF: 161.51726827172268
Iteration: 7, Func. Count: 62, Neg. LLF: 170.3779739544863
Iteration: 8, Func. Count: 71, Neg. LLF: 161.3081310868384
Iteration: 9, Func. Count: 79, Neg. LLF: 161.02919416049653
Iteration: 10, Func. Count: 87, Neg. LLF: 160.85204832567305
Iteration: 11, Func. Count: 95, Neg. LLF: 160.75425696563875
Iteration: 12, Func. Count: 103, Neg. LLF: 160.6266065440063
Iteration: 13, Func. Count: 111, Neg. LLF: 160.58287984690367
Iteration: 14, Func. Count: 119, Neg. LLF: 160.55863870842467
Iteration: 15, Func. Count: 127, Neg. LLF: 160.53996843524257
Iteration: 16, Func. Count: 135, Neg. LLF: 160.5352158051946
Iteration: 17, Func. Count: 143, Neg. LLF: 160.53407467945595
Iteration: 18, Func. Count: 151, Neg. LLF: 160.5339718212334
Iteration: 19, Func. Count: 159, Neg. LLF: 160.53396870443973
Iteration: 20, Func. Count: 166, Neg. LLF: 160.53396870443947
Optimization terminated successfully (Exit mode 0)
Current function value: 160.53396870443973
Iterations: 20
Function evaluations: 166
Gradient evaluations: 20
Iteration: 1, Func. Count: 10, Neg. LLF: 284.89569309298395
Iteration: 2, Func. Count: 20, Neg. LLF: 361.8275095603436
Iteration: 3, Func. Count: 30, Neg. LLF: 166.9218834645538
Iteration: 4, Func. Count: 40, Neg. LLF: 161.23865467030072
Iteration: 5, Func. Count: 49, Neg. LLF: 178.3531494662586
Iteration: 6, Func. Count: 59, Neg. LLF: 162.6519458691613
Iteration: 7, Func. Count: 69, Neg. LLF: 160.7130517996618
Iteration: 8, Func. Count: 79, Neg. LLF: 160.61800483339545
Iteration: 9, Func. Count: 88, Neg. LLF: 160.58731730920002
Iteration: 10, Func. Count: 97, Neg. LLF: 160.62822031829938
Iteration: 11, Func. Count: 107, Neg. LLF: 160.57079852097476
Iteration: 12, Func. Count: 116, Neg. LLF: 160.56620085949132
Iteration: 13, Func. Count: 125, Neg. LLF: 160.56404549986587
Iteration: 14, Func. Count: 134, Neg. LLF: 160.55894333002541
Iteration: 15, Func. Count: 143, Neg. LLF: 160.5550302999392
Iteration: 16, Func. Count: 152, Neg. LLF: 160.54839150266287
Iteration: 17, Func. Count: 161, Neg. LLF: 160.5438828446298
Iteration: 18, Func. Count: 170, Neg. LLF: 160.5345031882798
Iteration: 19, Func. Count: 179, Neg. LLF: 160.53417324967063
Iteration: 20, Func. Count: 188, Neg. LLF: 160.5339769034803
Iteration: 21, Func. Count: 197, Neg. LLF: 160.53396917611013
Iteration: 22, Func. Count: 205, Neg. LLF: 160.5339692160601
Optimization terminated successfully (Exit mode 0)
Current function value: 160.53396917611013
Iterations: 22
Function evaluations: 205
Gradient evaluations: 22
Iteration: 1, Func. Count: 11, Neg. LLF: 182.50052360497887
Iteration: 2, Func. Count: 22, Neg. LLF: 283.3527775252527
Iteration: 3, Func. Count: 33, Neg. LLF: 176.7803704891141
Iteration: 4, Func. Count: 44, Neg. LLF: 164.29377301992952
Iteration: 5, Func. Count: 55, Neg. LLF: 160.80515862147752
Iteration: 6, Func. Count: 65, Neg. LLF: 162.90605162495248
Iteration: 7, Func. Count: 76, Neg. LLF: 160.87477540111874
Iteration: 8, Func. Count: 87, Neg. LLF: 160.6127712289468
Iteration: 9, Func. Count: 97, Neg. LLF: 160.57362112638666
Iteration: 10, Func. Count: 107, Neg. LLF: 160.5653226827464
Iteration: 11, Func. Count: 117, Neg. LLF: 160.5607370237537
Iteration: 12, Func. Count: 127, Neg. LLF: 160.5600250907709
Iteration: 13, Func. Count: 137, Neg. LLF: 160.55932650733982
Iteration: 14, Func. Count: 147, Neg. LLF: 160.55808552543445
Iteration: 15, Func. Count: 157, Neg. LLF: 160.55582926256398
Iteration: 16, Func. Count: 167, Neg. LLF: 160.54880036795427
Iteration: 17, Func. Count: 177, Neg. LLF: 160.5445783521797
Iteration: 18, Func. Count: 187, Neg. LLF: 160.53450406625564
Iteration: 19, Func. Count: 197, Neg. LLF: 160.53397660934058
Iteration: 20, Func. Count: 207, Neg. LLF: 160.53396895799074
Iteration: 21, Func. Count: 216, Neg. LLF: 160.53396900949556
Optimization terminated successfully (Exit mode 0)
Current function value: 160.53396895799074
Iterations: 21
Function evaluations: 216
Gradient evaluations: 21
Iteration: 1, Func. Count: 12, Neg. LLF: 282.7664470908094
Iteration: 2, Func. Count: 24, Neg. LLF: 191.31639441241694
Iteration: 3, Func. Count: 36, Neg. LLF: 161.98074276511693
Iteration: 4, Func. Count: 47, Neg. LLF: 161.698808690157
Iteration: 5, Func. Count: 59, Neg. LLF: 166.17930311666254
Iteration: 6, Func. Count: 71, Neg. LLF: 192.06524175862643
Iteration: 7, Func. Count: 83, Neg. LLF: 160.65324047990006
Iteration: 8, Func. Count: 94, Neg. LLF: 160.7446068596033
Iteration: 9, Func. Count: 106, Neg. LLF: 160.56382171867565
Iteration: 10, Func. Count: 117, Neg. LLF: 160.57008927622041
Iteration: 11, Func. Count: 129, Neg. LLF: 160.6017219341331
Iteration: 12, Func. Count: 141, Neg. LLF: 160.55613837487496
Iteration: 13, Func. Count: 152, Neg. LLF: 160.55546566033138
Iteration: 14, Func. Count: 163, Neg. LLF: 160.55480484950058
Iteration: 15, Func. Count: 174, Neg. LLF: 160.5539786152904
Iteration: 16, Func. Count: 185, Neg. LLF: 160.54978347151464
Iteration: 17, Func. Count: 196, Neg. LLF: 160.54579329205177
Iteration: 18, Func. Count: 207, Neg. LLF: 160.54079007419745
Iteration: 19, Func. Count: 218, Neg. LLF: 160.5361809523869
Iteration: 20, Func. Count: 229, Neg. LLF: 160.53426197847398
Iteration: 21, Func. Count: 240, Neg. LLF: 160.53398391606723
Iteration: 22, Func. Count: 251, Neg. LLF: 160.5339692036652
Iteration: 23, Func. Count: 261, Neg. LLF: 160.53396920932127
Optimization terminated successfully (Exit mode 0)
Current function value: 160.5339692036652
Iterations: 23
Function evaluations: 261
Gradient evaluations: 23
Iteration: 1, Func. Count: 13, Neg. LLF: 282.03768360815764
Iteration: 2, Func. Count: 26, Neg. LLF: 176.85335248047485
Iteration: 3, Func. Count: 39, Neg. LLF: 192.3183766667036
Iteration: 4, Func. Count: 52, Neg. LLF: 168.36051877823047
Iteration: 5, Func. Count: 65, Neg. LLF: 161.7196552402291
Iteration: 6, Func. Count: 77, Neg. LLF: 161.35705886110375
Iteration: 7, Func. Count: 90, Neg. LLF: 161.77161250905843
Iteration: 8, Func. Count: 104, Neg. LLF: 160.89391678975286
Iteration: 9, Func. Count: 117, Neg. LLF: 160.45957273545358
Iteration: 10, Func. Count: 129, Neg. LLF: 160.37666763833178
Iteration: 11, Func. Count: 141, Neg. LLF: 160.3471951253127
Iteration: 12, Func. Count: 153, Neg. LLF: 160.33440647726016
Iteration: 13, Func. Count: 165, Neg. LLF: 160.32724992926325
Iteration: 14, Func. Count: 177, Neg. LLF: 160.32565007977263
Iteration: 15, Func. Count: 189, Neg. LLF: 160.32477088444838
Iteration: 16, Func. Count: 201, Neg. LLF: 160.32200841739632
Iteration: 17, Func. Count: 213, Neg. LLF: 160.31908855168058
Iteration: 18, Func. Count: 225, Neg. LLF: 160.31570179279313
Iteration: 19, Func. Count: 237, Neg. LLF: 160.3144917871827
Iteration: 20, Func. Count: 249, Neg. LLF: 160.31376483348288
Iteration: 21, Func. Count: 261, Neg. LLF: 160.31372401534637
Iteration: 22, Func. Count: 273, Neg. LLF: 160.31372137756287
Iteration: 23, Func. Count: 284, Neg. LLF: 160.31372137232532
Optimization terminated successfully (Exit mode 0)
Current function value: 160.31372137756287
Iterations: 23
Function evaluations: 284
Gradient evaluations: 23
Iteration: 1, Func. Count: 10, Neg. LLF: 166.00473966525888
Iteration: 2, Func. Count: 20, Neg. LLF: 193.06162446726407
Iteration: 3, Func. Count: 30, Neg. LLF: 163.15198871549825
Iteration: 4, Func. Count: 41, Neg. LLF: 167.65607198233914
Iteration: 5, Func. Count: 51, Neg. LLF: 159.89596288525743
Iteration: 6, Func. Count: 60, Neg. LLF: 159.8765999330898
Iteration: 7, Func. Count: 70, Neg. LLF: 159.79637100773067
Iteration: 8, Func. Count: 79, Neg. LLF: 159.61626881667482
Iteration: 9, Func. Count: 88, Neg. LLF: 159.52232982799055
Iteration: 10, Func. Count: 97, Neg. LLF: 159.46494795492387
Iteration: 11, Func. Count: 106, Neg. LLF: 159.46030882022825
Iteration: 12, Func. Count: 115, Neg. LLF: 159.4600155785529
Iteration: 13, Func. Count: 124, Neg. LLF: 159.4599906329839
Iteration: 14, Func. Count: 133, Neg. LLF: 159.45997359150135
Iteration: 15, Func. Count: 142, Neg. LLF: 159.4599676290135
Iteration: 16, Func. Count: 151, Neg. LLF: 159.45996441868934
Iteration: 17, Func. Count: 159, Neg. LLF: 159.45996441869156
Optimization terminated successfully (Exit mode 0)
Current function value: 159.45996441868934
Iterations: 17
Function evaluations: 159
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 284.87173083092944
Iteration: 2, Func. Count: 22, Neg. LLF: 194.6104375685553
Iteration: 3, Func. Count: 33, Neg. LLF: 196.05636958035618
Iteration: 4, Func. Count: 44, Neg. LLF: 163.70448307684322
Iteration: 5, Func. Count: 55, Neg. LLF: 160.8858145519304
Iteration: 6, Func. Count: 66, Neg. LLF: 160.46254683329772
Iteration: 7, Func. Count: 77, Neg. LLF: 159.59886827618263
Iteration: 8, Func. Count: 87, Neg. LLF: 159.61634390726672
Iteration: 9, Func. Count: 98, Neg. LLF: 159.49643333356704
Iteration: 10, Func. Count: 108, Neg. LLF: 159.48502557272155
Iteration: 11, Func. Count: 118, Neg. LLF: 159.47950722050217
Iteration: 12, Func. Count: 128, Neg. LLF: 159.46767359796513
Iteration: 13, Func. Count: 138, Neg. LLF: 159.44664371277884
Iteration: 14, Func. Count: 148, Neg. LLF: 159.4432115739428
Iteration: 15, Func. Count: 158, Neg. LLF: 159.44290792791264
Iteration: 16, Func. Count: 168, Neg. LLF: 159.44290488661846
Iteration: 17, Func. Count: 177, Neg. LLF: 159.44290490763495
Optimization terminated successfully (Exit mode 0)
Current function value: 159.44290488661846
Iterations: 17
Function evaluations: 177
Gradient evaluations: 17
Iteration: 1, Func. Count: 12, Neg. LLF: 220.29018631830147
Iteration: 2, Func. Count: 24, Neg. LLF: 184.64709612236663
Iteration: 3, Func. Count: 36, Neg. LLF: 200.81603974379715
Iteration: 4, Func. Count: 48, Neg. LLF: 165.51152018081476
Iteration: 5, Func. Count: 60, Neg. LLF: 160.6938447748722
Iteration: 6, Func. Count: 72, Neg. LLF: 162.98178943225028
Iteration: 7, Func. Count: 84, Neg. LLF: 159.98429436722788
Iteration: 8, Func. Count: 96, Neg. LLF: 160.76490257759704
Iteration: 9, Func. Count: 108, Neg. LLF: 159.43877497128713
Iteration: 10, Func. Count: 119, Neg. LLF: 159.41341142344396
Iteration: 11, Func. Count: 130, Neg. LLF: 159.39422770261132
Iteration: 12, Func. Count: 141, Neg. LLF: 159.3905351558598
Iteration: 13, Func. Count: 152, Neg. LLF: 159.38996830368524
Iteration: 14, Func. Count: 163, Neg. LLF: 159.38979404054228
Iteration: 15, Func. Count: 174, Neg. LLF: 159.38930836088542
Iteration: 16, Func. Count: 185, Neg. LLF: 159.38858262036297
Iteration: 17, Func. Count: 196, Neg. LLF: 159.3879018418818
Iteration: 18, Func. Count: 207, Neg. LLF: 159.38764972024714
Iteration: 19, Func. Count: 218, Neg. LLF: 159.38761393227972
Iteration: 20, Func. Count: 229, Neg. LLF: 159.38761333820503
Optimization terminated successfully (Exit mode 0)
Current function value: 159.38761333820503
Iterations: 20
Function evaluations: 229
Gradient evaluations: 20
Iteration: 1, Func. Count: 13, Neg. LLF: 244.09759736976034
Iteration: 2, Func. Count: 26, Neg. LLF: 178.77342866898724
Iteration: 3, Func. Count: 39, Neg. LLF: 181.54632112419304
Iteration: 4, Func. Count: 52, Neg. LLF: 166.51816695325363
Iteration: 5, Func. Count: 65, Neg. LLF: 164.98637557679353
Iteration: 6, Func. Count: 78, Neg. LLF: 160.72799320093154
Iteration: 7, Func. Count: 91, Neg. LLF: 159.0123906481855
Iteration: 8, Func. Count: 103, Neg. LLF: 158.72968285331223
Iteration: 9, Func. Count: 115, Neg. LLF: 158.71810845914857
Iteration: 10, Func. Count: 128, Neg. LLF: 158.5864315972275
Iteration: 11, Func. Count: 140, Neg. LLF: 158.56649790660296
Iteration: 12, Func. Count: 152, Neg. LLF: 158.55888908230924
Iteration: 13, Func. Count: 164, Neg. LLF: 158.55014886150866
Iteration: 14, Func. Count: 176, Neg. LLF: 158.54281753767162
Iteration: 15, Func. Count: 188, Neg. LLF: 158.53640154242007
Iteration: 16, Func. Count: 200, Neg. LLF: 158.53417695550138
Iteration: 17, Func. Count: 212, Neg. LLF: 158.53377527073593
Iteration: 18, Func. Count: 224, Neg. LLF: 158.53377072049832
Iteration: 19, Func. Count: 235, Neg. LLF: 158.5337707102938
Optimization terminated successfully (Exit mode 0)
Current function value: 158.53377072049832
Iterations: 19
Function evaluations: 235
Gradient evaluations: 19
Iteration: 1, Func. Count: 14, Neg. LLF: 192.67479348325918
Iteration: 2, Func. Count: 28, Neg. LLF: 174.09792890936436
Iteration: 3, Func. Count: 42, Neg. LLF: 182.94107007063175
Iteration: 4, Func. Count: 56, Neg. LLF: 171.55163824746032
Iteration: 5, Func. Count: 70, Neg. LLF: 164.96965713815234
Iteration: 6, Func. Count: 84, Neg. LLF: 160.65588766122877
Iteration: 7, Func. Count: 98, Neg. LLF: 158.68433085143727
Iteration: 8, Func. Count: 111, Neg. LLF: 158.60171800062793
Iteration: 9, Func. Count: 124, Neg. LLF: 158.5654440704075
Iteration: 10, Func. Count: 137, Neg. LLF: 158.55919721796067
Iteration: 11, Func. Count: 150, Neg. LLF: 158.55408447189944
Iteration: 12, Func. Count: 163, Neg. LLF: 158.5434729842447
Iteration: 13, Func. Count: 176, Neg. LLF: 158.53643535671802
Iteration: 14, Func. Count: 189, Neg. LLF: 158.5340114498652
Iteration: 15, Func. Count: 202, Neg. LLF: 158.53377931307594
Iteration: 16, Func. Count: 215, Neg. LLF: 158.53377329651983
Iteration: 17, Func. Count: 228, Neg. LLF: 158.533770568889
Iteration: 18, Func. Count: 240, Neg. LLF: 158.53377065171003
Optimization terminated successfully (Exit mode 0)
Current function value: 158.533770568889
Iterations: 18
Function evaluations: 240
Gradient evaluations: 18
Iteration: 1, Func. Count: 11, Neg. LLF: 166.32929780965
Iteration: 2, Func. Count: 22, Neg. LLF: 194.39372965928683
Iteration: 3, Func. Count: 33, Neg. LLF: 162.95037464946589
Iteration: 4, Func. Count: 44, Neg. LLF: 164.9635820100752
Iteration: 5, Func. Count: 55, Neg. LLF: 159.90442968783952
Iteration: 6, Func. Count: 65, Neg. LLF: 159.93519859667208
Iteration: 7, Func. Count: 76, Neg. LLF: 159.80860914616255
Iteration: 8, Func. Count: 86, Neg. LLF: 159.75593978772235
Iteration: 9, Func. Count: 96, Neg. LLF: 159.52978519770994
Iteration: 10, Func. Count: 106, Neg. LLF: 159.47019840438062
Iteration: 11, Func. Count: 116, Neg. LLF: 159.46061450656308
Iteration: 12, Func. Count: 126, Neg. LLF: 159.46014733696407
Iteration: 13, Func. Count: 136, Neg. LLF: 159.46009040001704
Iteration: 14, Func. Count: 146, Neg. LLF: 159.46003046187022
Iteration: 15, Func. Count: 156, Neg. LLF: 159.4599728439286
Iteration: 16, Func. Count: 166, Neg. LLF: 159.45996481158213
Iteration: 17, Func. Count: 176, Neg. LLF: 159.45996419316137
Optimization terminated successfully (Exit mode 0)
Current function value: 159.45996419316137
Iterations: 17
Function evaluations: 176
Gradient evaluations: 17
Iteration: 1, Func. Count: 12, Neg. LLF: 283.7101602572078
Iteration: 2, Func. Count: 24, Neg. LLF: 186.91311786772837
Iteration: 3, Func. Count: 36, Neg. LLF: 162.4060470505332
Iteration: 4, Func. Count: 48, Neg. LLF: 164.58860431427036
Iteration: 5, Func. Count: 60, Neg. LLF: 161.40481819712855
Iteration: 6, Func. Count: 72, Neg. LLF: 159.98662858889492
Iteration: 7, Func. Count: 84, Neg. LLF: 159.578651075608
Iteration: 8, Func. Count: 95, Neg. LLF: 159.57588957858565
Iteration: 9, Func. Count: 107, Neg. LLF: 159.47136924200953
Iteration: 10, Func. Count: 118, Neg. LLF: 159.46495130437998
Iteration: 11, Func. Count: 129, Neg. LLF: 159.46201724600098
Iteration: 12, Func. Count: 140, Neg. LLF: 159.4538243824455
Iteration: 13, Func. Count: 151, Neg. LLF: 159.44649144129212
Iteration: 14, Func. Count: 162, Neg. LLF: 159.44332687856618
Iteration: 15, Func. Count: 173, Neg. LLF: 159.44293905767603
Iteration: 16, Func. Count: 184, Neg. LLF: 159.44290798463706
Iteration: 17, Func. Count: 195, Neg. LLF: 159.44290499436966
Iteration: 18, Func. Count: 205, Neg. LLF: 159.44290501543958
Optimization terminated successfully (Exit mode 0)
Current function value: 159.44290499436966
Iterations: 18
Function evaluations: 205
Gradient evaluations: 18
Iteration: 1, Func. Count: 13, Neg. LLF: 282.82595717538976
Iteration: 2, Func. Count: 26, Neg. LLF: 187.56414567966664
Iteration: 3, Func. Count: 39, Neg. LLF: 182.08571337032984
Iteration: 4, Func. Count: 52, Neg. LLF: 165.87775517216429
Iteration: 5, Func. Count: 65, Neg. LLF: 161.4905269703758
Iteration: 6, Func. Count: 78, Neg. LLF: 160.09675512838487
Iteration: 7, Func. Count: 90, Neg. LLF: 163.9457231728174
Iteration: 8, Func. Count: 103, Neg. LLF: 160.43055688670464
Iteration: 9, Func. Count: 116, Neg. LLF: 160.72532313026915
Iteration: 10, Func. Count: 129, Neg. LLF: 159.4052361166899
Iteration: 11, Func. Count: 141, Neg. LLF: 159.39690977966498
Iteration: 12, Func. Count: 153, Neg. LLF: 159.3906344100248
Iteration: 13, Func. Count: 165, Neg. LLF: 159.3896151743724
Iteration: 14, Func. Count: 177, Neg. LLF: 159.3893951146463
Iteration: 15, Func. Count: 189, Neg. LLF: 159.38920903751796
Iteration: 16, Func. Count: 201, Neg. LLF: 159.38873493078822
Iteration: 17, Func. Count: 213, Neg. LLF: 159.38814279878335
Iteration: 18, Func. Count: 225, Neg. LLF: 159.387726011756
Iteration: 19, Func. Count: 237, Neg. LLF: 159.3876215158703
Iteration: 20, Func. Count: 249, Neg. LLF: 159.38761339586316
Iteration: 21, Func. Count: 260, Neg. LLF: 159.38761337845958
Optimization terminated successfully (Exit mode 0)
Current function value: 159.38761339586316
Iterations: 21
Function evaluations: 260
Gradient evaluations: 21
Iteration: 1, Func. Count: 14, Neg. LLF: 281.6633296608453
Iteration: 2, Func. Count: 28, Neg. LLF: 190.79505350339429
Iteration: 3, Func. Count: 42, Neg. LLF: 178.12768268498732
Iteration: 4, Func. Count: 56, Neg. LLF: 167.81719396299826
Iteration: 5, Func. Count: 70, Neg. LLF: 167.78074194128087
Iteration: 6, Func. Count: 84, Neg. LLF: 160.68149059005918
Iteration: 7, Func. Count: 98, Neg. LLF: 159.16019982730901
Iteration: 8, Func. Count: 111, Neg. LLF: 158.81239872700905
Iteration: 9, Func. Count: 124, Neg. LLF: 158.7901205715257
Iteration: 10, Func. Count: 138, Neg. LLF: 158.6025327345685
Iteration: 11, Func. Count: 151, Neg. LLF: 158.56907422032924
Iteration: 12, Func. Count: 164, Neg. LLF: 158.55451665271704
Iteration: 13, Func. Count: 177, Neg. LLF: 158.548816701215
Iteration: 14, Func. Count: 190, Neg. LLF: 158.54456473709018
Iteration: 15, Func. Count: 203, Neg. LLF: 158.53933388381503
Iteration: 16, Func. Count: 216, Neg. LLF: 158.5354907559132
Iteration: 17, Func. Count: 229, Neg. LLF: 158.53396873659955
Iteration: 18, Func. Count: 242, Neg. LLF: 158.53377534177514
Iteration: 19, Func. Count: 255, Neg. LLF: 158.53377071090404
Iteration: 20, Func. Count: 267, Neg. LLF: 158.53377070069786
Optimization terminated successfully (Exit mode 0)
Current function value: 158.53377071090404
Iterations: 20
Function evaluations: 267
Gradient evaluations: 20
Iteration: 1, Func. Count: 15, Neg. LLF: 280.8889468076422
Iteration: 2, Func. Count: 30, Neg. LLF: 179.9843839443057
Iteration: 3, Func. Count: 45, Neg. LLF: 177.19112239286727
Iteration: 4, Func. Count: 60, Neg. LLF: 166.76073123080135
Iteration: 5, Func. Count: 75, Neg. LLF: 167.04727670194148
Iteration: 6, Func. Count: 90, Neg. LLF: 160.68706792010795
Iteration: 7, Func. Count: 105, Neg. LLF: 159.11349220783944
Iteration: 8, Func. Count: 119, Neg. LLF: 158.82421260459984
Iteration: 9, Func. Count: 133, Neg. LLF: 158.6243278044227
Iteration: 10, Func. Count: 147, Neg. LLF: 158.58530445389385
Iteration: 11, Func. Count: 161, Neg. LLF: 158.56079596799754
Iteration: 12, Func. Count: 175, Neg. LLF: 158.5537433860952
Iteration: 13, Func. Count: 189, Neg. LLF: 158.54844381479637
Iteration: 14, Func. Count: 203, Neg. LLF: 158.5417807215176
Iteration: 15, Func. Count: 217, Neg. LLF: 158.53770120672655
Iteration: 16, Func. Count: 231, Neg. LLF: 158.53418367958147
Iteration: 17, Func. Count: 245, Neg. LLF: 158.5337844660988
Iteration: 18, Func. Count: 259, Neg. LLF: 158.53377055238545
Iteration: 19, Func. Count: 272, Neg. LLF: 158.53377063518275
Optimization terminated successfully (Exit mode 0)
Current function value: 158.53377055238545
Iterations: 19
Function evaluations: 272
Gradient evaluations: 19
Iteration: 1, Func. Count: 8, Neg. LLF: 166.67064628868974
Iteration: 2, Func. Count: 16, Neg. LLF: 168.42746538419493
Iteration: 3, Func. Count: 24, Neg. LLF: 164.86290370743893
Iteration: 4, Func. Count: 31, Neg. LLF: 164.5706200758167
Iteration: 5, Func. Count: 38, Neg. LLF: 164.35118140860965
Iteration: 6, Func. Count: 45, Neg. LLF: 164.20345716707422
Iteration: 7, Func. Count: 52, Neg. LLF: 163.82153173095526
Iteration: 8, Func. Count: 59, Neg. LLF: 163.39584267805333
Iteration: 9, Func. Count: 66, Neg. LLF: 161.42002651938162
Iteration: 10, Func. Count: 73, Neg. LLF: 160.82171793204324
Iteration: 11, Func. Count: 80, Neg. LLF: 161.49790707216175
Iteration: 12, Func. Count: 88, Neg. LLF: 164.12070536102087
Iteration: 13, Func. Count: 96, Neg. LLF: 160.58894776734002
Iteration: 14, Func. Count: 103, Neg. LLF: 160.5741630611497
Iteration: 15, Func. Count: 110, Neg. LLF: 160.57027392310584
Iteration: 16, Func. Count: 117, Neg. LLF: 160.56930706643237
Iteration: 17, Func. Count: 124, Neg. LLF: 160.56898417631237
Iteration: 18, Func. Count: 131, Neg. LLF: 160.56893319922798
Iteration: 19, Func. Count: 138, Neg. LLF: 160.56892955463167
Iteration: 20, Func. Count: 144, Neg. LLF: 160.56892963228836
Optimization terminated successfully (Exit mode 0)
Current function value: 160.56892955463167
Iterations: 20
Function evaluations: 144
Gradient evaluations: 20
Iteration: 1, Func. Count: 9, Neg. LLF: 181.51226671102305
Iteration: 2, Func. Count: 18, Neg. LLF: 237.476062096943
Iteration: 3, Func. Count: 27, Neg. LLF: 166.3787083065677
Iteration: 4, Func. Count: 36, Neg. LLF: 161.35972019054876
Iteration: 5, Func. Count: 44, Neg. LLF: 161.3325473621629
Iteration: 6, Func. Count: 53, Neg. LLF: 164.24216096182127
Iteration: 7, Func. Count: 62, Neg. LLF: 160.6697381421312
Iteration: 8, Func. Count: 70, Neg. LLF: 160.5984198514847
Iteration: 9, Func. Count: 78, Neg. LLF: 160.5866390503691
Iteration: 10, Func. Count: 86, Neg. LLF: 160.58183582228747
Iteration: 11, Func. Count: 94, Neg. LLF: 160.5733919392068
Iteration: 12, Func. Count: 102, Neg. LLF: 160.57154490980224
Iteration: 13, Func. Count: 110, Neg. LLF: 160.56977831491784
Iteration: 14, Func. Count: 118, Neg. LLF: 160.56907458297644
Iteration: 15, Func. Count: 126, Neg. LLF: 160.56893900220652
Iteration: 16, Func. Count: 134, Neg. LLF: 160.56892945884886
Iteration: 17, Func. Count: 141, Neg. LLF: 160.56892949279066
Optimization terminated successfully (Exit mode 0)
Current function value: 160.56892945884886
Iterations: 17
Function evaluations: 141
Gradient evaluations: 17
Iteration: 1, Func. Count: 10, Neg. LLF: 180.76613206098213
Iteration: 2, Func. Count: 20, Neg. LLF: 218.32033131121128
Iteration: 3, Func. Count: 30, Neg. LLF: 163.18296105338393
Iteration: 4, Func. Count: 40, Neg. LLF: 162.5098811291422
Iteration: 5, Func. Count: 50, Neg. LLF: 175.20957175929212
Iteration: 6, Func. Count: 60, Neg. LLF: 160.84479904695667
Iteration: 7, Func. Count: 69, Neg. LLF: 160.67016140851823
Iteration: 8, Func. Count: 78, Neg. LLF: 160.60227554769003
Iteration: 9, Func. Count: 87, Neg. LLF: 160.59450012924276
Iteration: 10, Func. Count: 96, Neg. LLF: 160.58747486464068
Iteration: 11, Func. Count: 105, Neg. LLF: 160.5800199211044
Iteration: 12, Func. Count: 114, Neg. LLF: 160.57447344736838
Iteration: 13, Func. Count: 123, Neg. LLF: 160.57118960144956
Iteration: 14, Func. Count: 132, Neg. LLF: 160.56954778212787
Iteration: 15, Func. Count: 141, Neg. LLF: 160.56906272481748
Iteration: 16, Func. Count: 150, Neg. LLF: 160.56893989885089
Iteration: 17, Func. Count: 159, Neg. LLF: 160.5689296190758
Iteration: 18, Func. Count: 167, Neg. LLF: 160.5689296597173
Optimization terminated successfully (Exit mode 0)
Current function value: 160.5689296190758
Iterations: 18
Function evaluations: 167
Gradient evaluations: 18
Iteration: 1, Func. Count: 11, Neg. LLF: 180.25551184899462
Iteration: 2, Func. Count: 22, Neg. LLF: 172.61858501175126
Iteration: 3, Func. Count: 33, Neg. LLF: 163.20495042533972
Iteration: 4, Func. Count: 44, Neg. LLF: 161.34612617071852
Iteration: 5, Func. Count: 54, Neg. LLF: 162.6684017286407
Iteration: 6, Func. Count: 65, Neg. LLF: 169.18195240333966
Iteration: 7, Func. Count: 76, Neg. LLF: 160.87293545679196
Iteration: 8, Func. Count: 87, Neg. LLF: 160.6068600688151
Iteration: 9, Func. Count: 97, Neg. LLF: 160.59721681177908
Iteration: 10, Func. Count: 107, Neg. LLF: 160.57299180321039
Iteration: 11, Func. Count: 117, Neg. LLF: 160.57085217128576
Iteration: 12, Func. Count: 127, Neg. LLF: 160.57001120057507
Iteration: 13, Func. Count: 137, Neg. LLF: 160.56993695937507
Iteration: 14, Func. Count: 147, Neg. LLF: 160.56985572637691
Iteration: 15, Func. Count: 157, Neg. LLF: 160.56968527318412
Iteration: 16, Func. Count: 167, Neg. LLF: 160.5693727618341
Iteration: 17, Func. Count: 177, Neg. LLF: 160.56897218027729
Iteration: 18, Func. Count: 187, Neg. LLF: 160.5687104210512
Iteration: 19, Func. Count: 197, Neg. LLF: 160.56865057495193
Iteration: 20, Func. Count: 207, Neg. LLF: 160.5686463878591
Iteration: 21, Func. Count: 216, Neg. LLF: 160.56864638784663
Optimization terminated successfully (Exit mode 0)
Current function value: 160.5686463878591
Iterations: 21
Function evaluations: 216
Gradient evaluations: 21
Iteration: 1, Func. Count: 12, Neg. LLF: 179.94369269830912
Iteration: 2, Func. Count: 24, Neg. LLF: 164.33099670460564
Iteration: 3, Func. Count: 36, Neg. LLF: 161.48263901582953
Iteration: 4, Func. Count: 47, Neg. LLF: 161.260855695638
Iteration: 5, Func. Count: 59, Neg. LLF: 165.54537337955358
Iteration: 6, Func. Count: 71, Neg. LLF: 161.930162683459
Iteration: 7, Func. Count: 83, Neg. LLF: 160.42923025075447
Iteration: 8, Func. Count: 94, Neg. LLF: 160.4231875901009
Iteration: 9, Func. Count: 105, Neg. LLF: 160.4149760624117
Iteration: 10, Func. Count: 116, Neg. LLF: 160.41238996407583
Iteration: 11, Func. Count: 127, Neg. LLF: 160.41204462329566
Iteration: 12, Func. Count: 138, Neg. LLF: 160.41195349817485
Iteration: 13, Func. Count: 149, Neg. LLF: 160.41153574895912
Iteration: 14, Func. Count: 160, Neg. LLF: 160.41127883547597
Iteration: 15, Func. Count: 171, Neg. LLF: 160.41125232577792
Iteration: 16, Func. Count: 182, Neg. LLF: 160.41124936970323
Iteration: 17, Func. Count: 192, Neg. LLF: 160.41124936969698
Optimization terminated successfully (Exit mode 0)
Current function value: 160.41124936970323
Iterations: 17
Function evaluations: 192
Gradient evaluations: 17
Iteration: 1, Func. Count: 9, Neg. LLF: 168.4949160052756
Iteration: 2, Func. Count: 18, Neg. LLF: 166.73946441960877
Iteration: 3, Func. Count: 27, Neg. LLF: 164.83809021263025
Iteration: 4, Func. Count: 35, Neg. LLF: 164.81817706430922
Iteration: 5, Func. Count: 44, Neg. LLF: 164.40238117667926
Iteration: 6, Func. Count: 52, Neg. LLF: 164.44804110989318
Iteration: 7, Func. Count: 61, Neg. LLF: 164.00104560140676
Iteration: 8, Func. Count: 69, Neg. LLF: 163.42796169554995
Iteration: 9, Func. Count: 77, Neg. LLF: 162.04891306127416
Iteration: 10, Func. Count: 85, Neg. LLF: 162.05377857893262
Iteration: 11, Func. Count: 94, Neg. LLF: 160.66532369964438
Iteration: 12, Func. Count: 102, Neg. LLF: 160.59110223854475
Iteration: 13, Func. Count: 110, Neg. LLF: 160.55558997385066
Iteration: 14, Func. Count: 118, Neg. LLF: 160.5524194364972
Iteration: 15, Func. Count: 126, Neg. LLF: 160.55209599467918
Iteration: 16, Func. Count: 134, Neg. LLF: 160.55207757505423
Iteration: 17, Func. Count: 141, Neg. LLF: 160.5520775750729
Optimization terminated successfully (Exit mode 0)
Current function value: 160.55207757505423
Iterations: 17
Function evaluations: 141
Gradient evaluations: 17
Iteration: 1, Func. Count: 10, Neg. LLF: 180.7090750725884
Iteration: 2, Func. Count: 20, Neg. LLF: 163.44764759443174
Iteration: 3, Func. Count: 30, Neg. LLF: 164.28841028667006
Iteration: 4, Func. Count: 40, Neg. LLF: 185.23569374345243
Iteration: 5, Func. Count: 50, Neg. LLF: 161.18072549530729
Iteration: 6, Func. Count: 59, Neg. LLF: 161.09734707847792
Iteration: 7, Func. Count: 69, Neg. LLF: 161.0070414741169
Iteration: 8, Func. Count: 79, Neg. LLF: 160.80207128936985
Iteration: 9, Func. Count: 89, Neg. LLF: 160.5936852629929
Iteration: 10, Func. Count: 98, Neg. LLF: 160.58150677827751
Iteration: 11, Func. Count: 107, Neg. LLF: 160.57978284570933
Iteration: 12, Func. Count: 116, Neg. LLF: 160.5775903901885
Iteration: 13, Func. Count: 125, Neg. LLF: 160.57483375435987
Iteration: 14, Func. Count: 134, Neg. LLF: 160.57012493802537
Iteration: 15, Func. Count: 143, Neg. LLF: 160.5622734649785
Iteration: 16, Func. Count: 152, Neg. LLF: 160.5569558344955
Iteration: 17, Func. Count: 161, Neg. LLF: 160.55246457772137
Iteration: 18, Func. Count: 170, Neg. LLF: 160.55220299169733
Iteration: 19, Func. Count: 179, Neg. LLF: 160.55207756284085
Iteration: 20, Func. Count: 187, Neg. LLF: 160.5520776067672
Optimization terminated successfully (Exit mode 0)
Current function value: 160.55207756284085
Iterations: 20
Function evaluations: 187
Gradient evaluations: 20
Iteration: 1, Func. Count: 11, Neg. LLF: 165.65215602733787
Iteration: 2, Func. Count: 22, Neg. LLF: 160.80423659996836
Iteration: 3, Func. Count: 32, Neg. LLF: 161.64002280613343
Iteration: 4, Func. Count: 43, Neg. LLF: 162.57084421326303
Iteration: 5, Func. Count: 54, Neg. LLF: 160.74973690505163
Iteration: 6, Func. Count: 65, Neg. LLF: 160.5800259393206
Iteration: 7, Func. Count: 75, Neg. LLF: 160.57783632559241
Iteration: 8, Func. Count: 85, Neg. LLF: 160.57678429627492
Iteration: 9, Func. Count: 95, Neg. LLF: 160.5867418730194
Iteration: 10, Func. Count: 106, Neg. LLF: 160.56714968305798
Iteration: 11, Func. Count: 116, Neg. LLF: 160.5620306505809
Iteration: 12, Func. Count: 126, Neg. LLF: 160.5520996927676
Iteration: 13, Func. Count: 136, Neg. LLF: 160.55207847645983
Iteration: 14, Func. Count: 146, Neg. LLF: 160.55207748823653
Optimization terminated successfully (Exit mode 0)
Current function value: 160.55207748823653
Iterations: 14
Function evaluations: 146
Gradient evaluations: 14
Iteration: 1, Func. Count: 12, Neg. LLF: 180.32843645154963
Iteration: 2, Func. Count: 24, Neg. LLF: 163.5718789054416
Iteration: 3, Func. Count: 36, Neg. LLF: 190.94761396395702
Iteration: 4, Func. Count: 48, Neg. LLF: 165.5308764635872
Iteration: 5, Func. Count: 60, Neg. LLF: 160.77774982732197
Iteration: 6, Func. Count: 71, Neg. LLF: 161.03298300337738
Iteration: 7, Func. Count: 83, Neg. LLF: 161.61513526350015
Iteration: 8, Func. Count: 95, Neg. LLF: 160.75186512383965
Iteration: 9, Func. Count: 107, Neg. LLF: 160.57842565914626
Iteration: 10, Func. Count: 118, Neg. LLF: 160.57608515494937
Iteration: 11, Func. Count: 129, Neg. LLF: 160.57430623809512
Iteration: 12, Func. Count: 140, Neg. LLF: 160.57336752667803
Iteration: 13, Func. Count: 151, Neg. LLF: 160.56995917940515
Iteration: 14, Func. Count: 162, Neg. LLF: 160.5667136130965
Iteration: 15, Func. Count: 173, Neg. LLF: 160.561176386888
Iteration: 16, Func. Count: 184, Neg. LLF: 160.55692100449173
Iteration: 17, Func. Count: 195, Neg. LLF: 160.55370230194697
Iteration: 18, Func. Count: 206, Neg. LLF: 160.55214289514828
Iteration: 19, Func. Count: 217, Neg. LLF: 160.55208129270162
Iteration: 20, Func. Count: 228, Neg. LLF: 160.55207753374248
Iteration: 21, Func. Count: 238, Neg. LLF: 160.55207753564824
Optimization terminated successfully (Exit mode 0)
Current function value: 160.55207753374248
Iterations: 21
Function evaluations: 238
Gradient evaluations: 21
Iteration: 1, Func. Count: 13, Neg. LLF: 180.15423875646542
Iteration: 2, Func. Count: 26, Neg. LLF: 165.5305277237495
Iteration: 3, Func. Count: 39, Neg. LLF: 189.1620004542458
Iteration: 4, Func. Count: 52, Neg. LLF: 163.95058784456134
Iteration: 5, Func. Count: 65, Neg. LLF: 160.8461806734794
Iteration: 6, Func. Count: 77, Neg. LLF: 161.95562791493438
Iteration: 7, Func. Count: 90, Neg. LLF: 161.72868649363272
Iteration: 8, Func. Count: 104, Neg. LLF: 162.72925474664305
Iteration: 9, Func. Count: 117, Neg. LLF: 160.44460841244614
Iteration: 10, Func. Count: 129, Neg. LLF: 160.4523680773401
Iteration: 11, Func. Count: 142, Neg. LLF: 160.40451183286817
Iteration: 12, Func. Count: 154, Neg. LLF: 160.40128568791872
Iteration: 13, Func. Count: 166, Neg. LLF: 160.4007764423154
Iteration: 14, Func. Count: 178, Neg. LLF: 160.39940482419357
Iteration: 15, Func. Count: 190, Neg. LLF: 160.39724837170866
Iteration: 16, Func. Count: 202, Neg. LLF: 160.39622918299494
Iteration: 17, Func. Count: 214, Neg. LLF: 160.39578618381702
Iteration: 18, Func. Count: 226, Neg. LLF: 160.39573475729782
Iteration: 19, Func. Count: 238, Neg. LLF: 160.39573195643473
Iteration: 20, Func. Count: 249, Neg. LLF: 160.39573195181265
Optimization terminated successfully (Exit mode 0)
Current function value: 160.39573195643473
Iterations: 20
Function evaluations: 249
Gradient evaluations: 20
Iteration: 1, Func. Count: 10, Neg. LLF: 165.3829985484554
Iteration: 2, Func. Count: 20, Neg. LLF: 164.2991948044295
Iteration: 3, Func. Count: 30, Neg. LLF: 162.5034707757809
Iteration: 4, Func. Count: 40, Neg. LLF: 162.36909647514187
Iteration: 5, Func. Count: 50, Neg. LLF: 161.57280635243046
Iteration: 6, Func. Count: 59, Neg. LLF: 161.5291534654357
Iteration: 7, Func. Count: 68, Neg. LLF: 161.4578694989836
Iteration: 8, Func. Count: 77, Neg. LLF: 161.39967361080204
Iteration: 9, Func. Count: 86, Neg. LLF: 161.79905176017814
Iteration: 10, Func. Count: 96, Neg. LLF: 160.7643263293823
Iteration: 11, Func. Count: 105, Neg. LLF: 161.5302729793674
Iteration: 12, Func. Count: 115, Neg. LLF: 160.5735746309997
Iteration: 13, Func. Count: 124, Neg. LLF: 160.54553562807263
Iteration: 14, Func. Count: 133, Neg. LLF: 160.53775433458227
Iteration: 15, Func. Count: 142, Neg. LLF: 160.53463008804076
Iteration: 16, Func. Count: 151, Neg. LLF: 160.5341992938806
Iteration: 17, Func. Count: 160, Neg. LLF: 160.53398939075416
Iteration: 18, Func. Count: 169, Neg. LLF: 160.53397084308628
Iteration: 19, Func. Count: 178, Neg. LLF: 160.5339690702159
Iteration: 20, Func. Count: 186, Neg. LLF: 160.53396907018876
Optimization terminated successfully (Exit mode 0)
Current function value: 160.5339690702159
Iterations: 20
Function evaluations: 186
Gradient evaluations: 20
Iteration: 1, Func. Count: 11, Neg. LLF: 251.02869594745752
Iteration: 2, Func. Count: 22, Neg. LLF: 292.58414797523346
Iteration: 3, Func. Count: 33, Neg. LLF: 166.1642430391408
Iteration: 4, Func. Count: 44, Neg. LLF: 161.15275207103124
Iteration: 5, Func. Count: 54, Neg. LLF: 163.43219325513607
Iteration: 6, Func. Count: 66, Neg. LLF: 163.89312664267115
Iteration: 7, Func. Count: 77, Neg. LLF: 160.65635487831926
Iteration: 8, Func. Count: 87, Neg. LLF: 161.3544813178856
Iteration: 9, Func. Count: 98, Neg. LLF: 160.6006940665632
Iteration: 10, Func. Count: 108, Neg. LLF: 160.60525524481545
Iteration: 11, Func. Count: 119, Neg. LLF: 160.57895604812586
Iteration: 12, Func. Count: 129, Neg. LLF: 160.57537815686214
Iteration: 13, Func. Count: 139, Neg. LLF: 160.56271224037067
Iteration: 14, Func. Count: 149, Neg. LLF: 160.55761053433744
Iteration: 15, Func. Count: 159, Neg. LLF: 160.55446957184193
Iteration: 16, Func. Count: 169, Neg. LLF: 160.54896564568563
Iteration: 17, Func. Count: 179, Neg. LLF: 160.54542276447302
Iteration: 18, Func. Count: 189, Neg. LLF: 160.53532732735565
Iteration: 19, Func. Count: 199, Neg. LLF: 160.5339993017564
Iteration: 20, Func. Count: 209, Neg. LLF: 160.5339764639383
Iteration: 21, Func. Count: 219, Neg. LLF: 160.53396978810062
Iteration: 22, Func. Count: 229, Neg. LLF: 160.53396874902808
Iteration: 23, Func. Count: 238, Neg. LLF: 160.5339687889668
Optimization terminated successfully (Exit mode 0)
Current function value: 160.53396874902808
Iterations: 23
Function evaluations: 238
Gradient evaluations: 23
Iteration: 1, Func. Count: 12, Neg. LLF: 177.89521274823045
Iteration: 2, Func. Count: 24, Neg. LLF: 163.68082288031067
Iteration: 3, Func. Count: 36, Neg. LLF: 163.35989340033495
Iteration: 4, Func. Count: 48, Neg. LLF: 161.25162185502208
Iteration: 5, Func. Count: 59, Neg. LLF: 162.27349820869105
Iteration: 6, Func. Count: 71, Neg. LLF: 163.54331150769974
Iteration: 7, Func. Count: 83, Neg. LLF: 163.20101584909952
Iteration: 8, Func. Count: 95, Neg. LLF: 160.88194960966624
Iteration: 9, Func. Count: 107, Neg. LLF: 160.6185820208632
Iteration: 10, Func. Count: 118, Neg. LLF: 160.5646779969724
Iteration: 11, Func. Count: 129, Neg. LLF: 160.55910440968216
Iteration: 12, Func. Count: 140, Neg. LLF: 160.55857990557638
Iteration: 13, Func. Count: 151, Neg. LLF: 160.55804089067055
Iteration: 14, Func. Count: 162, Neg. LLF: 160.55586379044377
Iteration: 15, Func. Count: 173, Neg. LLF: 160.5501924177099
Iteration: 16, Func. Count: 184, Neg. LLF: 160.54505006555885
Iteration: 17, Func. Count: 195, Neg. LLF: 160.5357662867795
Iteration: 18, Func. Count: 206, Neg. LLF: 160.53442107893576
Iteration: 19, Func. Count: 217, Neg. LLF: 160.53401360856643
Iteration: 20, Func. Count: 228, Neg. LLF: 160.53397425693262
Iteration: 21, Func. Count: 239, Neg. LLF: 160.53396923238955
Iteration: 22, Func. Count: 249, Neg. LLF: 160.53396928390052
Optimization terminated successfully (Exit mode 0)
Current function value: 160.53396923238955
Iterations: 22
Function evaluations: 249
Gradient evaluations: 22
Iteration: 1, Func. Count: 13, Neg. LLF: 281.11651991755895
Iteration: 2, Func. Count: 26, Neg. LLF: 239.53372957651027
Iteration: 3, Func. Count: 39, Neg. LLF: 182.64064319661733
Iteration: 4, Func. Count: 52, Neg. LLF: 167.24724097152895
Iteration: 5, Func. Count: 65, Neg. LLF: 165.07315808687594
Iteration: 6, Func. Count: 78, Neg. LLF: 163.118173664302
Iteration: 7, Func. Count: 91, Neg. LLF: 161.07768224142382
Iteration: 8, Func. Count: 104, Neg. LLF: 160.6488148641458
Iteration: 9, Func. Count: 116, Neg. LLF: 160.69745311895144
Iteration: 10, Func. Count: 129, Neg. LLF: 160.5762310241875
Iteration: 11, Func. Count: 141, Neg. LLF: 160.56898815804863
Iteration: 12, Func. Count: 153, Neg. LLF: 160.56565363246142
Iteration: 13, Func. Count: 165, Neg. LLF: 160.56340953174956
Iteration: 14, Func. Count: 177, Neg. LLF: 160.5616069795146
Iteration: 15, Func. Count: 189, Neg. LLF: 160.55974085529297
Iteration: 16, Func. Count: 201, Neg. LLF: 160.55801073094128
Iteration: 17, Func. Count: 213, Neg. LLF: 160.55508539448874
Iteration: 18, Func. Count: 225, Neg. LLF: 160.5517579676719
Iteration: 19, Func. Count: 237, Neg. LLF: 160.542974470303
Iteration: 20, Func. Count: 249, Neg. LLF: 160.53906326763604
Iteration: 21, Func. Count: 261, Neg. LLF: 160.5344749489333
Iteration: 22, Func. Count: 273, Neg. LLF: 160.53401179277245
Iteration: 23, Func. Count: 285, Neg. LLF: 160.53396997388091
Iteration: 24, Func. Count: 297, Neg. LLF: 160.53396881517344
Iteration: 25, Func. Count: 308, Neg. LLF: 160.53396882073517
Optimization terminated successfully (Exit mode 0)
Current function value: 160.53396881517344
Iterations: 25
Function evaluations: 308
Gradient evaluations: 25
Iteration: 1, Func. Count: 14, Neg. LLF: 280.2104484713882
Iteration: 2, Func. Count: 28, Neg. LLF: 181.37597737880444
Iteration: 3, Func. Count: 42, Neg. LLF: 162.02493027181143
Iteration: 4, Func. Count: 55, Neg. LLF: 162.15728032332441
Iteration: 5, Func. Count: 69, Neg. LLF: 175.86533262114463
Iteration: 6, Func. Count: 85, Neg. LLF: 175.99176240937055
Iteration: 7, Func. Count: 99, Neg. LLF: 160.35763607031134
Iteration: 8, Func. Count: 112, Neg. LLF: 160.38997547896034
Iteration: 9, Func. Count: 126, Neg. LLF: 160.45735143249414
Iteration: 10, Func. Count: 140, Neg. LLF: 160.3288902212211
Iteration: 11, Func. Count: 153, Neg. LLF: 160.3280984592915
Iteration: 12, Func. Count: 166, Neg. LLF: 160.32686351305037
Iteration: 13, Func. Count: 179, Neg. LLF: 160.32264420937986
Iteration: 14, Func. Count: 192, Neg. LLF: 160.31871069788193
Iteration: 15, Func. Count: 205, Neg. LLF: 160.31457113651084
Iteration: 16, Func. Count: 218, Neg. LLF: 160.31385672925282
Iteration: 17, Func. Count: 231, Neg. LLF: 160.31372351918176
Iteration: 18, Func. Count: 244, Neg. LLF: 160.313721828795
Iteration: 19, Func. Count: 257, Neg. LLF: 160.31372127183624
Optimization terminated successfully (Exit mode 0)
Current function value: 160.31372127183624
Iterations: 19
Function evaluations: 257
Gradient evaluations: 19
Iteration: 1, Func. Count: 11, Neg. LLF: 165.8240052331757
Iteration: 2, Func. Count: 22, Neg. LLF: 162.74331630227903
Iteration: 3, Func. Count: 33, Neg. LLF: 163.61601191357107
Iteration: 4, Func. Count: 44, Neg. LLF: 160.15680090701372
Iteration: 5, Func. Count: 54, Neg. LLF: 162.05432523549484
Iteration: 6, Func. Count: 65, Neg. LLF: 160.2974564002617
Iteration: 7, Func. Count: 76, Neg. LLF: 159.74964572734459
Iteration: 8, Func. Count: 86, Neg. LLF: 159.7213666304786
Iteration: 9, Func. Count: 96, Neg. LLF: 159.6100557307934
Iteration: 10, Func. Count: 106, Neg. LLF: 159.54710107401766
Iteration: 11, Func. Count: 116, Neg. LLF: 159.64575560814086
Iteration: 12, Func. Count: 127, Neg. LLF: 162.0224681052719
Iteration: 13, Func. Count: 138, Neg. LLF: 159.46495713765006
Iteration: 14, Func. Count: 148, Neg. LLF: 159.44690340588292
Iteration: 15, Func. Count: 158, Neg. LLF: 159.44479193963335
Iteration: 16, Func. Count: 168, Neg. LLF: 159.4237545586002
Iteration: 17, Func. Count: 178, Neg. LLF: 159.43553320065357
Iteration: 18, Func. Count: 189, Neg. LLF: 230.94692919406634
Iteration: 19, Func. Count: 201, Neg. LLF: 159.41156302155633
Iteration: 20, Func. Count: 211, Neg. LLF: 159.37467117322947
Iteration: 21, Func. Count: 221, Neg. LLF: 159.32482155112803
Iteration: 22, Func. Count: 231, Neg. LLF: 159.2646234322866
Iteration: 23, Func. Count: 241, Neg. LLF: 159.2170458856894
Iteration: 24, Func. Count: 251, Neg. LLF: 159.2141053355119
Iteration: 25, Func. Count: 261, Neg. LLF: 159.21331844298746
Iteration: 26, Func. Count: 271, Neg. LLF: 159.21316341676004
Iteration: 27, Func. Count: 281, Neg. LLF: 159.21301240102417
Iteration: 28, Func. Count: 291, Neg. LLF: 159.21261842648215
Iteration: 29, Func. Count: 301, Neg. LLF: 159.2123439575297
Iteration: 30, Func. Count: 311, Neg. LLF: 159.21198903072343
Iteration: 31, Func. Count: 321, Neg. LLF: 159.2119903335214
Iteration: 32, Func. Count: 332, Neg. LLF: 159.21198195747525
Iteration: 33, Func. Count: 341, Neg. LLF: 159.2119819495627
Optimization terminated successfully (Exit mode 0)
Current function value: 159.21198195747525
Iterations: 33
Function evaluations: 341
Gradient evaluations: 33
Iteration: 1, Func. Count: 12, Neg. LLF: 283.728280846094
Iteration: 2, Func. Count: 24, Neg. LLF: 191.50720714874296
Iteration: 3, Func. Count: 36, Neg. LLF: 161.6091024852169
Iteration: 4, Func. Count: 47, Neg. LLF: 162.98151238343166
Iteration: 5, Func. Count: 59, Neg. LLF: 187.84802768924635
Iteration: 6, Func. Count: 72, Neg. LLF: 258.77126904408743
Iteration: 7, Func. Count: 84, Neg. LLF: 160.11448180906774
Iteration: 8, Func. Count: 96, Neg. LLF: 159.54996631578376
Iteration: 9, Func. Count: 108, Neg. LLF: 159.25234584193186
Iteration: 10, Func. Count: 119, Neg. LLF: 159.23505265594784
Iteration: 11, Func. Count: 130, Neg. LLF: 159.217974920853
Iteration: 12, Func. Count: 141, Neg. LLF: 159.21517405137627
Iteration: 13, Func. Count: 152, Neg. LLF: 159.2142710236445
Iteration: 14, Func. Count: 163, Neg. LLF: 159.21261359021537
Iteration: 15, Func. Count: 174, Neg. LLF: 159.2123936694802
Iteration: 16, Func. Count: 185, Neg. LLF: 159.21228563538244
Iteration: 17, Func. Count: 196, Neg. LLF: 159.21227084365296
Iteration: 18, Func. Count: 207, Neg. LLF: 159.2121876631194
Iteration: 19, Func. Count: 218, Neg. LLF: 159.21202847144554
Iteration: 20, Func. Count: 229, Neg. LLF: 159.2119901615713
Iteration: 21, Func. Count: 240, Neg. LLF: 159.21198193391584
Iteration: 22, Func. Count: 250, Neg. LLF: 159.2119819768304
Optimization terminated successfully (Exit mode 0)
Current function value: 159.21198193391584
Iterations: 22
Function evaluations: 250
Gradient evaluations: 22
Iteration: 1, Func. Count: 13, Neg. LLF: 176.19119561989703
Iteration: 2, Func. Count: 26, Neg. LLF: 188.27038658781498
Iteration: 3, Func. Count: 39, Neg. LLF: 167.04282699343904
Iteration: 4, Func. Count: 52, Neg. LLF: 160.90234859249753
Iteration: 5, Func. Count: 65, Neg. LLF: 160.66077330247293
Iteration: 6, Func. Count: 78, Neg. LLF: 159.39277440049278
Iteration: 7, Func. Count: 90, Neg. LLF: 160.26040752993913
Iteration: 8, Func. Count: 103, Neg. LLF: 159.48494150719904
Iteration: 9, Func. Count: 116, Neg. LLF: 159.23558901660593
Iteration: 10, Func. Count: 128, Neg. LLF: 159.2264466379318
Iteration: 11, Func. Count: 140, Neg. LLF: 159.21578149726807
Iteration: 12, Func. Count: 152, Neg. LLF: 159.21345318686906
Iteration: 13, Func. Count: 164, Neg. LLF: 159.2132089520791
Iteration: 14, Func. Count: 176, Neg. LLF: 159.21308752989
Iteration: 15, Func. Count: 188, Neg. LLF: 159.2129795588999
Iteration: 16, Func. Count: 200, Neg. LLF: 159.21272767391687
Iteration: 17, Func. Count: 212, Neg. LLF: 159.21236454615763
Iteration: 18, Func. Count: 224, Neg. LLF: 159.21209319188003
Iteration: 19, Func. Count: 236, Neg. LLF: 159.21199177448966
Iteration: 20, Func. Count: 248, Neg. LLF: 159.2119818057369
Iteration: 21, Func. Count: 259, Neg. LLF: 159.2119818108736
Optimization terminated successfully (Exit mode 0)
Current function value: 159.2119818057369
Iterations: 21
Function evaluations: 259
Gradient evaluations: 21
Iteration: 1, Func. Count: 14, Neg. LLF: 174.18341100016457
Iteration: 2, Func. Count: 28, Neg. LLF: 188.09437615451102
Iteration: 3, Func. Count: 42, Neg. LLF: 167.23753538741033
Iteration: 4, Func. Count: 56, Neg. LLF: 160.69943251481794
Iteration: 5, Func. Count: 70, Neg. LLF: 159.73521968997758
Iteration: 6, Func. Count: 84, Neg. LLF: 158.70681894858615
Iteration: 7, Func. Count: 97, Neg. LLF: 158.6062996593811
Iteration: 8, Func. Count: 110, Neg. LLF: 158.57182054340404
Iteration: 9, Func. Count: 123, Neg. LLF: 159.7517043805734
Iteration: 10, Func. Count: 138, Neg. LLF: 158.60068250556827
Iteration: 11, Func. Count: 152, Neg. LLF: 158.60897570406382
Iteration: 12, Func. Count: 166, Neg. LLF: 158.55725651342098
Iteration: 13, Func. Count: 179, Neg. LLF: 158.54644881835878
Iteration: 14, Func. Count: 192, Neg. LLF: 158.53998089353607
Iteration: 15, Func. Count: 205, Neg. LLF: 158.53383762960723
Iteration: 16, Func. Count: 218, Neg. LLF: 158.53377100893235
Iteration: 17, Func. Count: 230, Neg. LLF: 158.53377099892987
Optimization terminated successfully (Exit mode 0)
Current function value: 158.53377100893235
Iterations: 17
Function evaluations: 230
Gradient evaluations: 17
Iteration: 1, Func. Count: 15, Neg. LLF: 172.0101507755685
Iteration: 2, Func. Count: 30, Neg. LLF: 180.36736363067214
Iteration: 3, Func. Count: 45, Neg. LLF: 165.77477947705376
Iteration: 4, Func. Count: 60, Neg. LLF: 160.9930438766643
Iteration: 5, Func. Count: 75, Neg. LLF: 158.7664180913897
Iteration: 6, Func. Count: 89, Neg. LLF: 158.64577318084642
Iteration: 7, Func. Count: 103, Neg. LLF: 158.95836378383854
Iteration: 8, Func. Count: 118, Neg. LLF: 158.98451796435697
Iteration: 9, Func. Count: 133, Neg. LLF: 158.74151385565276
Iteration: 10, Func. Count: 148, Neg. LLF: 158.5776587067614
Iteration: 11, Func. Count: 162, Neg. LLF: 158.57087751315407
Iteration: 12, Func. Count: 176, Neg. LLF: 158.551408700264
Iteration: 13, Func. Count: 190, Neg. LLF: 158.53778731740772
Iteration: 14, Func. Count: 204, Neg. LLF: 158.53416114956326
Iteration: 15, Func. Count: 218, Neg. LLF: 158.53378225395429
Iteration: 16, Func. Count: 232, Neg. LLF: 158.53377254994828
Iteration: 17, Func. Count: 246, Neg. LLF: 158.5337705318225
Iteration: 18, Func. Count: 259, Neg. LLF: 158.53377061461723
Optimization terminated successfully (Exit mode 0)
Current function value: 158.5337705318225
Iterations: 18
Function evaluations: 259
Gradient evaluations: 18
Iteration: 1, Func. Count: 12, Neg. LLF: 166.0105336318582
Iteration: 2, Func. Count: 24, Neg. LLF: 164.87312135300996
Iteration: 3, Func. Count: 36, Neg. LLF: 162.1691503779966
Iteration: 4, Func. Count: 48, Neg. LLF: 161.6411263671883
Iteration: 5, Func. Count: 60, Neg. LLF: 160.14867243092039
Iteration: 6, Func. Count: 71, Neg. LLF: 159.96118678617964
Iteration: 7, Func. Count: 82, Neg. LLF: 159.9526368770811
Iteration: 8, Func. Count: 94, Neg. LLF: 159.80169115151463
Iteration: 9, Func. Count: 105, Neg. LLF: 160.74895845241724
Iteration: 10, Func. Count: 117, Neg. LLF: 159.68965109471952
Iteration: 11, Func. Count: 128, Neg. LLF: 159.65769381065093
Iteration: 12, Func. Count: 139, Neg. LLF: 159.5613686020638
Iteration: 13, Func. Count: 150, Neg. LLF: 159.39574143113066
Iteration: 14, Func. Count: 161, Neg. LLF: 159.0293670064544
Iteration: 15, Func. Count: 172, Neg. LLF: 158.92484966658586
Iteration: 16, Func. Count: 183, Neg. LLF: 158.8664744018241
Iteration: 17, Func. Count: 194, Neg. LLF: 158.8325567205162
Iteration: 18, Func. Count: 205, Neg. LLF: 158.8161582352365
Iteration: 19, Func. Count: 216, Neg. LLF: 158.81474979323193
Iteration: 20, Func. Count: 227, Neg. LLF: 158.81449301914378
Iteration: 21, Func. Count: 238, Neg. LLF: 158.81447530334324
Iteration: 22, Func. Count: 249, Neg. LLF: 158.81447401475486
Iteration: 23, Func. Count: 259, Neg. LLF: 158.8144739710153
Optimization terminated successfully (Exit mode 0)
Current function value: 158.81447401475486
Iterations: 23
Function evaluations: 259
Gradient evaluations: 23
Iteration: 1, Func. Count: 13, Neg. LLF: 282.4292818625244
Iteration: 2, Func. Count: 26, Neg. LLF: 191.03191119673008
Iteration: 3, Func. Count: 39, Neg. LLF: 162.93721091772983
Iteration: 4, Func. Count: 52, Neg. LLF: 161.14035555407327
Iteration: 5, Func. Count: 65, Neg. LLF: 164.64316007796597
Iteration: 6, Func. Count: 78, Neg. LLF: 161.49822740707043
Iteration: 7, Func. Count: 91, Neg. LLF: 158.8576366893696
Iteration: 8, Func. Count: 103, Neg. LLF: 158.8306884467126
Iteration: 9, Func. Count: 115, Neg. LLF: 158.82303828073452
Iteration: 10, Func. Count: 127, Neg. LLF: 158.82121339648785
Iteration: 11, Func. Count: 139, Neg. LLF: 158.8188787573282
Iteration: 12, Func. Count: 151, Neg. LLF: 158.8155279090327
Iteration: 13, Func. Count: 163, Neg. LLF: 158.81463997365196
Iteration: 14, Func. Count: 175, Neg. LLF: 158.81450014555185
Iteration: 15, Func. Count: 187, Neg. LLF: 158.8144796134093
Iteration: 16, Func. Count: 199, Neg. LLF: 158.81447449068747
Iteration: 17, Func. Count: 211, Neg. LLF: 158.81447390075485
Optimization terminated successfully (Exit mode 0)
Current function value: 158.81447390075485
Iterations: 17
Function evaluations: 211
Gradient evaluations: 17
Iteration: 1, Func. Count: 14, Neg. LLF: 181.4754894470517
Iteration: 2, Func. Count: 28, Neg. LLF: 189.31385479250181
Iteration: 3, Func. Count: 42, Neg. LLF: 167.52096387637613
Iteration: 4, Func. Count: 56, Neg. LLF: 159.4918712207755
Iteration: 5, Func. Count: 69, Neg. LLF: 159.31896537769137
Iteration: 6, Func. Count: 82, Neg. LLF: 162.99244906395603
Iteration: 7, Func. Count: 96, Neg. LLF: 160.30142179391368
Iteration: 8, Func. Count: 110, Neg. LLF: 158.94536724946735
Iteration: 9, Func. Count: 124, Neg. LLF: 158.84732447402874
Iteration: 10, Func. Count: 137, Neg. LLF: 158.8252103527088
Iteration: 11, Func. Count: 150, Neg. LLF: 158.81846653874126
Iteration: 12, Func. Count: 163, Neg. LLF: 158.8175666678808
Iteration: 13, Func. Count: 176, Neg. LLF: 158.81677497910522
Iteration: 14, Func. Count: 189, Neg. LLF: 158.81513646390485
Iteration: 15, Func. Count: 202, Neg. LLF: 158.814576476698
Iteration: 16, Func. Count: 215, Neg. LLF: 158.81447887939078
Iteration: 17, Func. Count: 228, Neg. LLF: 158.81447405164712
Iteration: 18, Func. Count: 240, Neg. LLF: 158.814474068318
Optimization terminated successfully (Exit mode 0)
Current function value: 158.81447405164712
Iterations: 18
Function evaluations: 240
Gradient evaluations: 18
Iteration: 1, Func. Count: 15, Neg. LLF: 175.9727063011067
Iteration: 2, Func. Count: 30, Neg. LLF: 188.6200288590196
Iteration: 3, Func. Count: 45, Neg. LLF: 167.549073219106
Iteration: 4, Func. Count: 60, Neg. LLF: 159.33321173879486
Iteration: 5, Func. Count: 74, Neg. LLF: 159.5255791115964
Iteration: 6, Func. Count: 89, Neg. LLF: 158.60784682113137
Iteration: 7, Func. Count: 103, Neg. LLF: 158.62336533652945
Iteration: 8, Func. Count: 118, Neg. LLF: 161.61755323185665
Iteration: 9, Func. Count: 133, Neg. LLF: 161.3430000962337
Iteration: 10, Func. Count: 149, Neg. LLF: 158.4928521568534
Iteration: 11, Func. Count: 163, Neg. LLF: 158.48981666480685
Iteration: 12, Func. Count: 178, Neg. LLF: 158.47220587541938
Iteration: 13, Func. Count: 192, Neg. LLF: 158.47046830382374
Iteration: 14, Func. Count: 206, Neg. LLF: 158.46835732937694
Iteration: 15, Func. Count: 220, Neg. LLF: 158.46378421821936
Iteration: 16, Func. Count: 234, Neg. LLF: 158.46236387455673
Iteration: 17, Func. Count: 248, Neg. LLF: 158.46203252651011
Iteration: 18, Func. Count: 262, Neg. LLF: 158.4620242515813
Iteration: 19, Func. Count: 276, Neg. LLF: 158.46202324234457
Iteration: 20, Func. Count: 289, Neg. LLF: 158.46202323366
Optimization terminated successfully (Exit mode 0)
Current function value: 158.46202324234457
Iterations: 20
Function evaluations: 289
Gradient evaluations: 20
Iteration: 1, Func. Count: 16, Neg. LLF: 172.04733751472446
Iteration: 2, Func. Count: 32, Neg. LLF: 173.67866046531176
Iteration: 3, Func. Count: 48, Neg. LLF: 166.98891037742604
Iteration: 4, Func. Count: 64, Neg. LLF: 161.20254484955709
Iteration: 5, Func. Count: 80, Neg. LLF: 158.73660588706414
Iteration: 6, Func. Count: 95, Neg. LLF: 160.1600778168913
Iteration: 7, Func. Count: 111, Neg. LLF: 159.2832953601375
Iteration: 8, Func. Count: 127, Neg. LLF: 158.60944767441282
Iteration: 9, Func. Count: 143, Neg. LLF: 158.50678818121827
Iteration: 10, Func. Count: 159, Neg. LLF: 159.16518389920094
Iteration: 11, Func. Count: 175, Neg. LLF: 158.4801132872934
Iteration: 12, Func. Count: 190, Neg. LLF: 158.47532039625017
Iteration: 13, Func. Count: 205, Neg. LLF: 158.4729359745142
Iteration: 14, Func. Count: 220, Neg. LLF: 158.46999689538492
Iteration: 15, Func. Count: 235, Neg. LLF: 158.46560764910566
Iteration: 16, Func. Count: 250, Neg. LLF: 158.46324385959394
Iteration: 17, Func. Count: 265, Neg. LLF: 158.46218905612363
Iteration: 18, Func. Count: 280, Neg. LLF: 158.46205070500838
Iteration: 19, Func. Count: 295, Neg. LLF: 158.46202842759138
Iteration: 20, Func. Count: 310, Neg. LLF: 158.4620233907698
Iteration: 21, Func. Count: 324, Neg. LLF: 158.4620235148961
Optimization terminated successfully (Exit mode 0)
Current function value: 158.4620233907698
Iterations: 21
Function evaluations: 324
Gradient evaluations: 21
Iteration: 1, Func. Count: 7, Neg. LLF: 166.47967936782624
Iteration: 2, Func. Count: 14, Neg. LLF: 166.2382274608748
Iteration: 3, Func. Count: 21, Neg. LLF: 164.73113709562
Iteration: 4, Func. Count: 27, Neg. LLF: 164.49920037480928
Iteration: 5, Func. Count: 33, Neg. LLF: 164.32902997091452
Iteration: 6, Func. Count: 39, Neg. LLF: 164.119077567208
Iteration: 7, Func. Count: 45, Neg. LLF: 163.2823891163197
Iteration: 8, Func. Count: 51, Neg. LLF: 162.06157641985908
Iteration: 9, Func. Count: 57, Neg. LLF: 161.2186696220277
Iteration: 10, Func. Count: 63, Neg. LLF: 161.66205818905954
Iteration: 11, Func. Count: 70, Neg. LLF: 160.71285969739367
Iteration: 12, Func. Count: 76, Neg. LLF: 160.62275972044588
Iteration: 13, Func. Count: 82, Neg. LLF: 160.58087165829207
Iteration: 14, Func. Count: 88, Neg. LLF: 160.57583176682652
Iteration: 15, Func. Count: 94, Neg. LLF: 160.56958470961513
Iteration: 16, Func. Count: 100, Neg. LLF: 160.56900164092414
Iteration: 17, Func. Count: 106, Neg. LLF: 160.56893858684919
Iteration: 18, Func. Count: 112, Neg. LLF: 160.5689293294837
Iteration: 19, Func. Count: 117, Neg. LLF: 160.5689293294731
Optimization terminated successfully (Exit mode 0)
Current function value: 160.5689293294837
Iterations: 19
Function evaluations: 117
Gradient evaluations: 19
Iteration: 1, Func. Count: 5, Neg. LLF: 176.7913455994789
Iteration: 2, Func. Count: 9, Neg. LLF: 176.1504485636544
Iteration: 3, Func. Count: 13, Neg. LLF: 175.7210203865767
Iteration: 4, Func. Count: 17, Neg. LLF: 175.65772508305338
Iteration: 5, Func. Count: 21, Neg. LLF: 175.39593374307466
Iteration: 6, Func. Count: 25, Neg. LLF: 175.33236032770446
Iteration: 7, Func. Count: 30, Neg. LLF: 175.1084689386081
Iteration: 8, Func. Count: 34, Neg. LLF: 174.90569514379592
Iteration: 9, Func. Count: 38, Neg. LLF: 174.7804954483423
Iteration: 10, Func. Count: 42, Neg. LLF: 174.74101091511255
Iteration: 11, Func. Count: 46, Neg. LLF: 174.7364094538293
Iteration: 12, Func. Count: 50, Neg. LLF: 174.73593653617633
Iteration: 13, Func. Count: 54, Neg. LLF: 174.73586432075214
Iteration: 14, Func. Count: 58, Neg. LLF: 174.73586087208065
Iteration: 15, Func. Count: 61, Neg. LLF: 174.7358608720802
Optimization terminated successfully (Exit mode 0)
Current function value: 174.73586087208065
Iterations: 15
Function evaluations: 61
Gradient evaluations: 15
Iteration: 1, Func. Count: 6, Neg. LLF: 1765.5098708492994
Iteration: 2, Func. Count: 13, Neg. LLF: 543.6576992630297
Iteration: 3, Func. Count: 19, Neg. LLF: 166.26415792663812
Iteration: 4, Func. Count: 24, Neg. LLF: 165.99782558350384
Iteration: 5, Func. Count: 29, Neg. LLF: 165.68870699260745
Iteration: 6, Func. Count: 34, Neg. LLF: 165.58942867961633
Iteration: 7, Func. Count: 39, Neg. LLF: 165.50547409716776
Iteration: 8, Func. Count: 44, Neg. LLF: 165.4785490103417
Iteration: 9, Func. Count: 49, Neg. LLF: 165.47080914150308
Iteration: 10, Func. Count: 54, Neg. LLF: 165.46529318200783
Iteration: 11, Func. Count: 59, Neg. LLF: 165.46175132383925
Iteration: 12, Func. Count: 64, Neg. LLF: 165.46081230975108
Iteration: 13, Func. Count: 69, Neg. LLF: 165.46044496710823
Iteration: 14, Func. Count: 74, Neg. LLF: 165.46011939418813
Iteration: 15, Func. Count: 79, Neg. LLF: 165.45996169741863
Iteration: 16, Func. Count: 84, Neg. LLF: 165.45992395945737
Iteration: 17, Func. Count: 89, Neg. LLF: 165.45992122721682
Iteration: 18, Func. Count: 93, Neg. LLF: 165.45992122720398
Optimization terminated successfully (Exit mode 0)
Current function value: 165.45992122721682
Iterations: 18
Function evaluations: 93
Gradient evaluations: 18
Iteration: 1, Func. Count: 7, Neg. LLF: 252.44813159792002
Iteration: 2, Func. Count: 14, Neg. LLF: 367.72447780762985
Iteration: 3, Func. Count: 21, Neg. LLF: 178.02469547294461
Iteration: 4, Func. Count: 28, Neg. LLF: 165.66741106031765
Iteration: 5, Func. Count: 34, Neg. LLF: 165.46625712859603
Iteration: 6, Func. Count: 40, Neg. LLF: 165.4611027393803
Iteration: 7, Func. Count: 46, Neg. LLF: 165.46042412741025
Iteration: 8, Func. Count: 52, Neg. LLF: 165.46026625514577
Iteration: 9, Func. Count: 58, Neg. LLF: 165.46021777687272
Iteration: 10, Func. Count: 64, Neg. LLF: 165.46007537148293
Iteration: 11, Func. Count: 70, Neg. LLF: 165.45997098246366
Iteration: 12, Func. Count: 76, Neg. LLF: 165.45992658451846
Iteration: 13, Func. Count: 82, Neg. LLF: 165.4599214004926
Iteration: 14, Func. Count: 87, Neg. LLF: 165.45992143615328
Optimization terminated successfully (Exit mode 0)
Current function value: 165.4599214004926
Iterations: 14
Function evaluations: 87
Gradient evaluations: 14
Iteration: 1, Func. Count: 8, Neg. LLF: 247.70292607713893
Iteration: 2, Func. Count: 16, Neg. LLF: 257.45420768134585
Iteration: 3, Func. Count: 24, Neg. LLF: 175.06987272968408
Iteration: 4, Func. Count: 32, Neg. LLF: 167.48130202623184
Iteration: 5, Func. Count: 40, Neg. LLF: 165.91188491793392
Iteration: 6, Func. Count: 47, Neg. LLF: 165.50548527666712
Iteration: 7, Func. Count: 54, Neg. LLF: 165.46883275357854
Iteration: 8, Func. Count: 61, Neg. LLF: 165.462229638843
Iteration: 9, Func. Count: 68, Neg. LLF: 165.46102168636335
Iteration: 10, Func. Count: 75, Neg. LLF: 165.46090713861878
Iteration: 11, Func. Count: 82, Neg. LLF: 165.46040591741485
Iteration: 12, Func. Count: 89, Neg. LLF: 165.45992230500212
Iteration: 13, Func. Count: 96, Neg. LLF: 165.4599211958031
Iteration: 14, Func. Count: 102, Neg. LLF: 165.4599212654783
Optimization terminated successfully (Exit mode 0)
Current function value: 165.4599211958031
Iterations: 14
Function evaluations: 102
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 245.53072420200598
Iteration: 2, Func. Count: 18, Neg. LLF: 251.94332299057945
Iteration: 3, Func. Count: 27, Neg. LLF: 185.8797840572512
Iteration: 4, Func. Count: 36, Neg. LLF: 168.40344671243355
Iteration: 5, Func. Count: 45, Neg. LLF: 166.282831527616
Iteration: 6, Func. Count: 53, Neg. LLF: 165.8174982319272
Iteration: 7, Func. Count: 61, Neg. LLF: 165.66292048936148
Iteration: 8, Func. Count: 69, Neg. LLF: 165.52198836405947
Iteration: 9, Func. Count: 77, Neg. LLF: 165.53659521792005
Iteration: 10, Func. Count: 86, Neg. LLF: 165.4712400988062
Iteration: 11, Func. Count: 94, Neg. LLF: 165.46959362339075
Iteration: 12, Func. Count: 102, Neg. LLF: 165.46686430517465
Iteration: 13, Func. Count: 110, Neg. LLF: 165.46301566460545
Iteration: 14, Func. Count: 118, Neg. LLF: 165.46060251314964
Iteration: 15, Func. Count: 126, Neg. LLF: 165.45997143230053
Iteration: 16, Func. Count: 134, Neg. LLF: 165.4599215199419
Iteration: 17, Func. Count: 141, Neg. LLF: 165.45992157910564
Optimization terminated successfully (Exit mode 0)
Current function value: 165.4599215199419
Iterations: 17
Function evaluations: 141
Gradient evaluations: 17
Iteration: 1, Func. Count: 6, Neg. LLF: 172.19170888267004
Iteration: 2, Func. Count: 12, Neg. LLF: 176.01074409022863
Iteration: 3, Func. Count: 18, Neg. LLF: 168.71453478179927
Iteration: 4, Func. Count: 23, Neg. LLF: 168.65162842070092
Iteration: 5, Func. Count: 28, Neg. LLF: 168.60816763887624
Iteration: 6, Func. Count: 33, Neg. LLF: 168.53092370280464
Iteration: 7, Func. Count: 38, Neg. LLF: 168.15262401735214
Iteration: 8, Func. Count: 43, Neg. LLF: 167.92026015882445
Iteration: 9, Func. Count: 48, Neg. LLF: 167.84399833775882
Iteration: 10, Func. Count: 53, Neg. LLF: 167.76029852380066
Iteration: 11, Func. Count: 58, Neg. LLF: 167.69492430271856
Iteration: 12, Func. Count: 63, Neg. LLF: 167.67542663770857
Iteration: 13, Func. Count: 68, Neg. LLF: 167.6614983327862
Iteration: 14, Func. Count: 73, Neg. LLF: 167.65182862736077
Iteration: 15, Func. Count: 78, Neg. LLF: 167.64150640781722
Iteration: 16, Func. Count: 83, Neg. LLF: 167.64114472139664
Iteration: 17, Func. Count: 88, Neg. LLF: 167.6411403394297
Iteration: 18, Func. Count: 92, Neg. LLF: 167.6411403394246
Optimization terminated successfully (Exit mode 0)
Current function value: 167.6411403394297
Iterations: 18
Function evaluations: 92
Gradient evaluations: 18
Iteration: 1, Func. Count: 7, Neg. LLF: 262.2013514185069
Iteration: 2, Func. Count: 14, Neg. LLF: 260.47428639615634
Iteration: 3, Func. Count: 21, Neg. LLF: 165.07050004376396
Iteration: 4, Func. Count: 28, Neg. LLF: 171.39102799537116
Iteration: 5, Func. Count: 35, Neg. LLF: 164.78662342106904
Iteration: 6, Func. Count: 41, Neg. LLF: 164.77355429465763
Iteration: 7, Func. Count: 47, Neg. LLF: 164.75973413529442
Iteration: 8, Func. Count: 53, Neg. LLF: 164.7587879922138
Iteration: 9, Func. Count: 59, Neg. LLF: 164.7578472794229
Iteration: 10, Func. Count: 65, Neg. LLF: 164.7566489964667
Iteration: 11, Func. Count: 71, Neg. LLF: 164.75547304857358
Iteration: 12, Func. Count: 77, Neg. LLF: 164.75499845401097
Iteration: 13, Func. Count: 83, Neg. LLF: 164.75492868499197
Iteration: 14, Func. Count: 89, Neg. LLF: 164.75492527249932
Iteration: 15, Func. Count: 94, Neg. LLF: 164.75492527251095
Optimization terminated successfully (Exit mode 0)
Current function value: 164.75492527249932
Iterations: 15
Function evaluations: 94
Gradient evaluations: 15
Iteration: 1, Func. Count: 8, Neg. LLF: 253.09509393627866
Iteration: 2, Func. Count: 16, Neg. LLF: 371.5867958527105
Iteration: 3, Func. Count: 24, Neg. LLF: 362.17403053267105
Iteration: 4, Func. Count: 32, Neg. LLF: 166.03081869940502
Iteration: 5, Func. Count: 40, Neg. LLF: 165.55752685324222
Iteration: 6, Func. Count: 48, Neg. LLF: 164.8888768535793
Iteration: 7, Func. Count: 55, Neg. LLF: 164.8896323873362
Iteration: 8, Func. Count: 63, Neg. LLF: 164.78430406223092
Iteration: 9, Func. Count: 70, Neg. LLF: 164.7588287525847
Iteration: 10, Func. Count: 77, Neg. LLF: 164.75650437837376
Iteration: 11, Func. Count: 84, Neg. LLF: 164.75618440576153
Iteration: 12, Func. Count: 91, Neg. LLF: 164.75603728218258
Iteration: 13, Func. Count: 98, Neg. LLF: 164.75555509749432
Iteration: 14, Func. Count: 105, Neg. LLF: 164.7551598611653
Iteration: 15, Func. Count: 112, Neg. LLF: 164.7549571531453
Iteration: 16, Func. Count: 119, Neg. LLF: 164.75492714821794
Iteration: 17, Func. Count: 126, Neg. LLF: 164.7549252097464
Iteration: 18, Func. Count: 132, Neg. LLF: 164.7549252412981
Optimization terminated successfully (Exit mode 0)
Current function value: 164.7549252097464
Iterations: 18
Function evaluations: 132
Gradient evaluations: 18
Iteration: 1, Func. Count: 9, Neg. LLF: 285.8107076769797
Iteration: 2, Func. Count: 18, Neg. LLF: 250.61368202917276
Iteration: 3, Func. Count: 27, Neg. LLF: 296.6582136638237
Iteration: 4, Func. Count: 36, Neg. LLF: 167.13651021787348
Iteration: 5, Func. Count: 45, Neg. LLF: 165.99284037422123
Iteration: 6, Func. Count: 54, Neg. LLF: 164.7973672282031
Iteration: 7, Func. Count: 62, Neg. LLF: 164.84641016059498
Iteration: 8, Func. Count: 71, Neg. LLF: 164.76341566518235
Iteration: 9, Func. Count: 79, Neg. LLF: 164.7614241922997
Iteration: 10, Func. Count: 87, Neg. LLF: 164.75822199396956
Iteration: 11, Func. Count: 95, Neg. LLF: 164.7572546707642
Iteration: 12, Func. Count: 103, Neg. LLF: 164.75682060249332
Iteration: 13, Func. Count: 111, Neg. LLF: 164.75633833614643
Iteration: 14, Func. Count: 119, Neg. LLF: 164.75562475831993
Iteration: 15, Func. Count: 127, Neg. LLF: 164.75510619425663
Iteration: 16, Func. Count: 135, Neg. LLF: 164.75494182938465
Iteration: 17, Func. Count: 143, Neg. LLF: 164.75492565514713
Iteration: 18, Func. Count: 150, Neg. LLF: 164.7549256763381
Optimization terminated successfully (Exit mode 0)
Current function value: 164.75492565514713
Iterations: 18
Function evaluations: 150
Gradient evaluations: 18
Iteration: 1, Func. Count: 10, Neg. LLF: 209.2622366194777
Iteration: 2, Func. Count: 20, Neg. LLF: 194.26341984759034
Iteration: 3, Func. Count: 30, Neg. LLF: 281.06889138533245
Iteration: 4, Func. Count: 40, Neg. LLF: 165.4955476232509
Iteration: 5, Func. Count: 49, Neg. LLF: 165.27212378181488
Iteration: 6, Func. Count: 58, Neg. LLF: 167.56454420756913
Iteration: 7, Func. Count: 68, Neg. LLF: 164.84576785429846
Iteration: 8, Func. Count: 77, Neg. LLF: 164.78057431298254
Iteration: 9, Func. Count: 86, Neg. LLF: 164.76607703656256
Iteration: 10, Func. Count: 95, Neg. LLF: 164.758670363324
Iteration: 11, Func. Count: 104, Neg. LLF: 164.75760325343762
Iteration: 12, Func. Count: 113, Neg. LLF: 164.75727501742355
Iteration: 13, Func. Count: 122, Neg. LLF: 164.75653079733777
Iteration: 14, Func. Count: 131, Neg. LLF: 164.7556784634913
Iteration: 15, Func. Count: 140, Neg. LLF: 164.7550837002635
Iteration: 16, Func. Count: 149, Neg. LLF: 164.75493819663546
Iteration: 17, Func. Count: 158, Neg. LLF: 164.7549255562656
Iteration: 18, Func. Count: 166, Neg. LLF: 164.75492558091707
Optimization terminated successfully (Exit mode 0)
Current function value: 164.7549255562656
Iterations: 18
Function evaluations: 166
Gradient evaluations: 18
Iteration: 1, Func. Count: 7, Neg. LLF: 168.07020472763176
Iteration: 2, Func. Count: 14, Neg. LLF: 181.57809910390256
Iteration: 3, Func. Count: 21, Neg. LLF: 165.38020932846817
Iteration: 4, Func. Count: 27, Neg. LLF: 165.089589082243
Iteration: 5, Func. Count: 33, Neg. LLF: 164.930873729421
Iteration: 6, Func. Count: 39, Neg. LLF: 164.84208416555165
Iteration: 7, Func. Count: 45, Neg. LLF: 164.75474175757364
Iteration: 8, Func. Count: 51, Neg. LLF: 164.4986951234617
Iteration: 9, Func. Count: 57, Neg. LLF: 164.41355817828816
Iteration: 10, Func. Count: 63, Neg. LLF: 164.30114478734367
Iteration: 11, Func. Count: 69, Neg. LLF: 164.09877150663615
Iteration: 12, Func. Count: 75, Neg. LLF: 163.96676668514783
Iteration: 13, Func. Count: 81, Neg. LLF: 163.8126517577735
Iteration: 14, Func. Count: 87, Neg. LLF: 163.80336396386497
Iteration: 15, Func. Count: 93, Neg. LLF: 163.80197142370142
Iteration: 16, Func. Count: 99, Neg. LLF: 163.8019469076439
Iteration: 17, Func. Count: 104, Neg. LLF: 163.80194690764733
Optimization terminated successfully (Exit mode 0)
Current function value: 163.8019469076439
Iterations: 17
Function evaluations: 104
Gradient evaluations: 17
Iteration: 1, Func. Count: 8, Neg. LLF: 186.6628175576926
Iteration: 2, Func. Count: 16, Neg. LLF: 250.33525884647702
Iteration: 3, Func. Count: 24, Neg. LLF: 164.37270685393534
Iteration: 4, Func. Count: 31, Neg. LLF: 165.6946704533028
Iteration: 5, Func. Count: 39, Neg. LLF: 164.56863417334515
Iteration: 6, Func. Count: 47, Neg. LLF: 164.1915009602669
Iteration: 7, Func. Count: 54, Neg. LLF: 164.1725806165346
Iteration: 8, Func. Count: 61, Neg. LLF: 164.13220429860482
Iteration: 9, Func. Count: 68, Neg. LLF: 164.08176137470565
Iteration: 10, Func. Count: 75, Neg. LLF: 164.01184542208122
Iteration: 11, Func. Count: 82, Neg. LLF: 163.9603466347925
Iteration: 12, Func. Count: 89, Neg. LLF: 163.90726854883852
Iteration: 13, Func. Count: 96, Neg. LLF: 163.817345898316
Iteration: 14, Func. Count: 103, Neg. LLF: 163.8249281965396
Iteration: 15, Func. Count: 111, Neg. LLF: 163.80735281341242
Iteration: 16, Func. Count: 118, Neg. LLF: 163.80447105510146
Iteration: 17, Func. Count: 125, Neg. LLF: 163.80265681475095
Iteration: 18, Func. Count: 132, Neg. LLF: 163.80213713449584
Iteration: 19, Func. Count: 139, Neg. LLF: 163.80197503263258
Iteration: 20, Func. Count: 146, Neg. LLF: 163.80194523830139
Iteration: 21, Func. Count: 153, Neg. LLF: 163.80193928711716
Iteration: 22, Func. Count: 159, Neg. LLF: 163.8019392871813
Optimization terminated successfully (Exit mode 0)
Current function value: 163.80193928711716
Iterations: 22
Function evaluations: 159
Gradient evaluations: 22
Iteration: 1, Func. Count: 9, Neg. LLF: 187.83219799805346
Iteration: 2, Func. Count: 18, Neg. LLF: 297.3420693081933
Iteration: 3, Func. Count: 27, Neg. LLF: 188.1093855581222
Iteration: 4, Func. Count: 36, Neg. LLF: 165.15252040628562
Iteration: 5, Func. Count: 45, Neg. LLF: 164.2588678843458
Iteration: 6, Func. Count: 53, Neg. LLF: 164.07940370077185
Iteration: 7, Func. Count: 61, Neg. LLF: 163.97014490714486
Iteration: 8, Func. Count: 69, Neg. LLF: 163.93512246645554
Iteration: 9, Func. Count: 77, Neg. LLF: 163.88809204071634
Iteration: 10, Func. Count: 85, Neg. LLF: 163.86263799593752
Iteration: 11, Func. Count: 93, Neg. LLF: 163.79570890425362
Iteration: 12, Func. Count: 101, Neg. LLF: 163.76057660644258
Iteration: 13, Func. Count: 109, Neg. LLF: 163.72270468645604
Iteration: 14, Func. Count: 117, Neg. LLF: 163.7042165894284
Iteration: 15, Func. Count: 125, Neg. LLF: 163.69789161652696
Iteration: 16, Func. Count: 133, Neg. LLF: 163.69682984860327
Iteration: 17, Func. Count: 141, Neg. LLF: 163.69647550105103
Iteration: 18, Func. Count: 149, Neg. LLF: 163.69641310724202
Iteration: 19, Func. Count: 157, Neg. LLF: 163.6964093502759
Iteration: 20, Func. Count: 164, Neg. LLF: 163.69640935036296
Optimization terminated successfully (Exit mode 0)
Current function value: 163.6964093502759
Iterations: 20
Function evaluations: 164
Gradient evaluations: 20
Iteration: 1, Func. Count: 10, Neg. LLF: 286.66064413306975
Iteration: 2, Func. Count: 20, Neg. LLF: 183.65284498634074
Iteration: 3, Func. Count: 30, Neg. LLF: 285.58141748820606
Iteration: 4, Func. Count: 40, Neg. LLF: 169.49227453053143
Iteration: 5, Func. Count: 50, Neg. LLF: 163.65574293337653
Iteration: 6, Func. Count: 59, Neg. LLF: 163.48304259881616
Iteration: 7, Func. Count: 68, Neg. LLF: 163.38636294190061
Iteration: 8, Func. Count: 77, Neg. LLF: 163.2554672972711
Iteration: 9, Func. Count: 86, Neg. LLF: 163.1487537697308
Iteration: 10, Func. Count: 95, Neg. LLF: 162.88804176103002
Iteration: 11, Func. Count: 104, Neg. LLF: 162.8427769312674
Iteration: 12, Func. Count: 113, Neg. LLF: 162.82998363908905
Iteration: 13, Func. Count: 122, Neg. LLF: 162.82854925610468
Iteration: 14, Func. Count: 131, Neg. LLF: 162.82816286951362
Iteration: 15, Func. Count: 140, Neg. LLF: 162.82808076024003
Iteration: 16, Func. Count: 149, Neg. LLF: 162.828070890765
Iteration: 17, Func. Count: 158, Neg. LLF: 162.82806790254446
Iteration: 18, Func. Count: 166, Neg. LLF: 162.82806790253386
Optimization terminated successfully (Exit mode 0)
Current function value: 162.82806790254446
Iterations: 18
Function evaluations: 166
Gradient evaluations: 18
Iteration: 1, Func. Count: 11, Neg. LLF: 284.1631083770206
Iteration: 2, Func. Count: 22, Neg. LLF: 182.03500683766998
Iteration: 3, Func. Count: 33, Neg. LLF: 289.89603748392926
Iteration: 4, Func. Count: 44, Neg. LLF: 182.9575162606667
Iteration: 5, Func. Count: 55, Neg. LLF: 163.38722861102445
Iteration: 6, Func. Count: 65, Neg. LLF: 163.3633068899262
Iteration: 7, Func. Count: 76, Neg. LLF: 163.25763276473188
Iteration: 8, Func. Count: 86, Neg. LLF: 163.2244398554046
Iteration: 9, Func. Count: 96, Neg. LLF: 163.1504849709224
Iteration: 10, Func. Count: 106, Neg. LLF: 163.0872300900194
Iteration: 11, Func. Count: 116, Neg. LLF: 162.96574771054208
Iteration: 12, Func. Count: 126, Neg. LLF: 162.88592542071765
Iteration: 13, Func. Count: 136, Neg. LLF: 162.84565113827503
Iteration: 14, Func. Count: 146, Neg. LLF: 162.83226170137172
Iteration: 15, Func. Count: 156, Neg. LLF: 162.82837163470361
Iteration: 16, Func. Count: 166, Neg. LLF: 162.8281115121196
Iteration: 17, Func. Count: 176, Neg. LLF: 162.82807470813904
Iteration: 18, Func. Count: 186, Neg. LLF: 162.82806835352574
Iteration: 19, Func. Count: 195, Neg. LLF: 162.8280683623082
Optimization terminated successfully (Exit mode 0)
Current function value: 162.82806835352574
Iterations: 19
Function evaluations: 195
Gradient evaluations: 19
Iteration: 1, Func. Count: 8, Neg. LLF: 168.30174915504412
Iteration: 2, Func. Count: 16, Neg. LLF: 181.73522320196176
Iteration: 3, Func. Count: 24, Neg. LLF: 165.39752404707883
Iteration: 4, Func. Count: 31, Neg. LLF: 165.0833784730392
Iteration: 5, Func. Count: 38, Neg. LLF: 164.95211762826094
Iteration: 6, Func. Count: 45, Neg. LLF: 164.86363423058236
Iteration: 7, Func. Count: 52, Neg. LLF: 164.78122833823207
Iteration: 8, Func. Count: 59, Neg. LLF: 164.46874643349278
Iteration: 9, Func. Count: 66, Neg. LLF: 164.3549884637245
Iteration: 10, Func. Count: 73, Neg. LLF: 164.22087206471215
Iteration: 11, Func. Count: 80, Neg. LLF: 164.1165929800292
Iteration: 12, Func. Count: 87, Neg. LLF: 164.02375190416495
Iteration: 13, Func. Count: 94, Neg. LLF: 163.91196224771338
Iteration: 14, Func. Count: 101, Neg. LLF: 163.83498524185734
Iteration: 15, Func. Count: 108, Neg. LLF: 163.80518492486084
Iteration: 16, Func. Count: 115, Neg. LLF: 163.80321115332978
Iteration: 17, Func. Count: 122, Neg. LLF: 163.8026560958502
Iteration: 18, Func. Count: 129, Neg. LLF: 163.80210333237193
Iteration: 19, Func. Count: 136, Neg. LLF: 163.8019704999132
Iteration: 20, Func. Count: 143, Neg. LLF: 163.80194904688483
Iteration: 21, Func. Count: 150, Neg. LLF: 163.8019466605597
Iteration: 22, Func. Count: 156, Neg. LLF: 163.80194666069
Optimization terminated successfully (Exit mode 0)
Current function value: 163.8019466605597
Iterations: 22
Function evaluations: 156
Gradient evaluations: 22
Iteration: 1, Func. Count: 9, Neg. LLF: 185.67122196062752
Iteration: 2, Func. Count: 18, Neg. LLF: 171.5219890606485
Iteration: 3, Func. Count: 27, Neg. LLF: 165.48653982095294
Iteration: 4, Func. Count: 36, Neg. LLF: 166.8033964774138
Iteration: 5, Func. Count: 45, Neg. LLF: 164.3068108137399
Iteration: 6, Func. Count: 53, Neg. LLF: 164.20158161204083
Iteration: 7, Func. Count: 61, Neg. LLF: 164.166352443079
Iteration: 8, Func. Count: 69, Neg. LLF: 164.1551337012871
Iteration: 9, Func. Count: 77, Neg. LLF: 164.08982606107998
Iteration: 10, Func. Count: 85, Neg. LLF: 163.99071987566546
Iteration: 11, Func. Count: 93, Neg. LLF: 163.94478895982402
Iteration: 12, Func. Count: 101, Neg. LLF: 163.90226268368022
Iteration: 13, Func. Count: 109, Neg. LLF: 163.81617331160362
Iteration: 14, Func. Count: 117, Neg. LLF: 163.82808390457504
Iteration: 15, Func. Count: 126, Neg. LLF: 163.80655409403593
Iteration: 16, Func. Count: 134, Neg. LLF: 163.80336698116022
Iteration: 17, Func. Count: 142, Neg. LLF: 163.80269147172433
Iteration: 18, Func. Count: 150, Neg. LLF: 163.80208765799432
Iteration: 19, Func. Count: 158, Neg. LLF: 163.80198778903818
Iteration: 20, Func. Count: 166, Neg. LLF: 163.80195342842956
Iteration: 21, Func. Count: 174, Neg. LLF: 163.80194150600488
Iteration: 22, Func. Count: 182, Neg. LLF: 163.8019389162533
Iteration: 23, Func. Count: 189, Neg. LLF: 163.8019389162882
Optimization terminated successfully (Exit mode 0)
Current function value: 163.8019389162533
Iterations: 23
Function evaluations: 189
Gradient evaluations: 23
Iteration: 1, Func. Count: 10, Neg. LLF: 187.90730126464058
Iteration: 2, Func. Count: 20, Neg. LLF: 204.66574938232117
Iteration: 3, Func. Count: 30, Neg. LLF: 176.56617052402825
Iteration: 4, Func. Count: 40, Neg. LLF: 164.0772134550745
Iteration: 5, Func. Count: 49, Neg. LLF: 164.09052989168327
Iteration: 6, Func. Count: 59, Neg. LLF: 164.05174154708135
Iteration: 7, Func. Count: 69, Neg. LLF: 163.96855081616755
Iteration: 8, Func. Count: 78, Neg. LLF: 163.92497440770657
Iteration: 9, Func. Count: 87, Neg. LLF: 163.86768216839823
Iteration: 10, Func. Count: 96, Neg. LLF: 163.7324807518338
Iteration: 11, Func. Count: 105, Neg. LLF: 163.71118186700355
Iteration: 12, Func. Count: 114, Neg. LLF: 163.6997672369562
Iteration: 13, Func. Count: 123, Neg. LLF: 163.6973164951142
Iteration: 14, Func. Count: 132, Neg. LLF: 163.69652987648556
Iteration: 15, Func. Count: 141, Neg. LLF: 163.69641287012084
Iteration: 16, Func. Count: 150, Neg. LLF: 163.6964089310049
Iteration: 17, Func. Count: 158, Neg. LLF: 163.69640893104108
Optimization terminated successfully (Exit mode 0)
Current function value: 163.6964089310049
Iterations: 17
Function evaluations: 158
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 165.1312982333268
Iteration: 2, Func. Count: 21, Neg. LLF: 164.82518974658578
Iteration: 3, Func. Count: 32, Neg. LLF: 211.49356807647354
Iteration: 4, Func. Count: 43, Neg. LLF: 165.39851446689758
Iteration: 5, Func. Count: 54, Neg. LLF: 180.79753532756678
Iteration: 6, Func. Count: 65, Neg. LLF: 166.26918955806224
Iteration: 7, Func. Count: 76, Neg. LLF: 163.14472016240717
Iteration: 8, Func. Count: 86, Neg. LLF: 163.07728743817358
Iteration: 9, Func. Count: 96, Neg. LLF: 163.06255607609785
Iteration: 10, Func. Count: 106, Neg. LLF: 163.04836373693723
Iteration: 11, Func. Count: 116, Neg. LLF: 163.02221682782778
Iteration: 12, Func. Count: 126, Neg. LLF: 162.97681999267448
Iteration: 13, Func. Count: 136, Neg. LLF: 162.90588930029887
Iteration: 14, Func. Count: 146, Neg. LLF: 162.8554284861304
Iteration: 15, Func. Count: 156, Neg. LLF: 162.83073619501633
Iteration: 16, Func. Count: 166, Neg. LLF: 162.8286576454311
Iteration: 17, Func. Count: 176, Neg. LLF: 162.82809242747217
Iteration: 18, Func. Count: 186, Neg. LLF: 162.82806839925865
Iteration: 19, Func. Count: 195, Neg. LLF: 162.82806839937837
Optimization terminated successfully (Exit mode 0)
Current function value: 162.82806839925865
Iterations: 19
Function evaluations: 195
Gradient evaluations: 19
Iteration: 1, Func. Count: 12, Neg. LLF: 167.64843922880718
Iteration: 2, Func. Count: 23, Neg. LLF: 166.7012118474736
Iteration: 3, Func. Count: 36, Neg. LLF: 183.32414883495872
Iteration: 4, Func. Count: 49, Neg. LLF: 190.9568232269308
Iteration: 5, Func. Count: 61, Neg. LLF: 183.3108015399371
Iteration: 6, Func. Count: 73, Neg. LLF: 182.84901721288995
Iteration: 7, Func. Count: 85, Neg. LLF: 164.4398448165465
Iteration: 8, Func. Count: 97, Neg. LLF: 163.11324118238676
Iteration: 9, Func. Count: 108, Neg. LLF: 163.1029060935503
Iteration: 10, Func. Count: 119, Neg. LLF: 163.0301630666676
Iteration: 11, Func. Count: 130, Neg. LLF: 162.92114682249837
Iteration: 12, Func. Count: 141, Neg. LLF: 162.86307845073878
Iteration: 13, Func. Count: 152, Neg. LLF: 162.85006120046774
Iteration: 14, Func. Count: 163, Neg. LLF: 162.84444412230846
Iteration: 15, Func. Count: 174, Neg. LLF: 162.8371699715083
Iteration: 16, Func. Count: 185, Neg. LLF: 162.8332243840758
Iteration: 17, Func. Count: 196, Neg. LLF: 162.82950594975244
Iteration: 18, Func. Count: 207, Neg. LLF: 162.82819017255738
Iteration: 19, Func. Count: 218, Neg. LLF: 162.82807288999055
Iteration: 20, Func. Count: 229, Neg. LLF: 162.82806815939855
Iteration: 21, Func. Count: 239, Neg. LLF: 162.82806816818157
Optimization terminated successfully (Exit mode 0)
Current function value: 162.82806815939855
Iterations: 21
Function evaluations: 239
Gradient evaluations: 21
Iteration: 1, Func. Count: 5, Neg. LLF: 179.55544600259947
Iteration: 2, Func. Count: 10, Neg. LLF: 178.6610934243217
Iteration: 3, Func. Count: 14, Neg. LLF: 178.37420576418032
Iteration: 4, Func. Count: 18, Neg. LLF: 178.18928744915414
Iteration: 5, Func. Count: 22, Neg. LLF: 177.47184072967838
Iteration: 6, Func. Count: 26, Neg. LLF: 176.96335999934865
Iteration: 7, Func. Count: 30, Neg. LLF: 176.83047454379218
Iteration: 8, Func. Count: 34, Neg. LLF: 176.80341014918775
Iteration: 9, Func. Count: 38, Neg. LLF: 176.80230850861267
Iteration: 10, Func. Count: 42, Neg. LLF: 176.80218350576283
Iteration: 11, Func. Count: 46, Neg. LLF: 176.80216730574608
Iteration: 12, Func. Count: 50, Neg. LLF: 176.8021653656686
Iteration: 13, Func. Count: 53, Neg. LLF: 176.80216536566397
Optimization terminated successfully (Exit mode 0)
Current function value: 176.8021653656686
Iterations: 13
Function evaluations: 53
Gradient evaluations: 13
Iteration: 1, Func. Count: 6, Neg. LLF: 302.61950971726475
Iteration: 2, Func. Count: 12, Neg. LLF: 166.20836749130245
Iteration: 3, Func. Count: 17, Neg. LLF: 165.87877060204232
Iteration: 4, Func. Count: 22, Neg. LLF: 165.85959132396997
Iteration: 5, Func. Count: 27, Neg. LLF: 165.85403790526027
Iteration: 6, Func. Count: 32, Neg. LLF: 165.85184277111398
Iteration: 7, Func. Count: 37, Neg. LLF: 165.85166450515186
Iteration: 8, Func. Count: 42, Neg. LLF: 165.8516599602787
Iteration: 9, Func. Count: 46, Neg. LLF: 165.85165990968423
Optimization terminated successfully (Exit mode 0)
Current function value: 165.8516599602787
Iterations: 9
Function evaluations: 46
Gradient evaluations: 9
Iteration: 1, Func. Count: 7, Neg. LLF: 222.24203366581028
Iteration: 2, Func. Count: 14, Neg. LLF: 166.61153554734744
Iteration: 3, Func. Count: 20, Neg. LLF: 172.18980592577032
Iteration: 4, Func. Count: 27, Neg. LLF: 166.36267286098214
Iteration: 5, Func. Count: 33, Neg. LLF: 166.24536569227524
Iteration: 6, Func. Count: 39, Neg. LLF: 166.05497685882287
Iteration: 7, Func. Count: 45, Neg. LLF: 165.932212320446
Iteration: 8, Func. Count: 51, Neg. LLF: 165.8606573309057
Iteration: 9, Func. Count: 57, Neg. LLF: 165.8518625683786
Iteration: 10, Func. Count: 63, Neg. LLF: 165.85169623450494
Iteration: 11, Func. Count: 69, Neg. LLF: 165.85165990082666
Iteration: 12, Func. Count: 74, Neg. LLF: 165.85165994588385
Optimization terminated successfully (Exit mode 0)
Current function value: 165.85165990082666
Iterations: 12
Function evaluations: 74
Gradient evaluations: 12
Iteration: 1, Func. Count: 8, Neg. LLF: 218.92190736281898
Iteration: 2, Func. Count: 16, Neg. LLF: 166.55174613135964
Iteration: 3, Func. Count: 23, Neg. LLF: 166.85179107365576
Iteration: 4, Func. Count: 31, Neg. LLF: 166.3893177698947
Iteration: 5, Func. Count: 38, Neg. LLF: 166.1275996395407
Iteration: 6, Func. Count: 45, Neg. LLF: 165.99642051905516
Iteration: 7, Func. Count: 52, Neg. LLF: 165.88575317453473
Iteration: 8, Func. Count: 59, Neg. LLF: 165.8552956958588
Iteration: 9, Func. Count: 66, Neg. LLF: 165.85170544534188
Iteration: 10, Func. Count: 73, Neg. LLF: 165.85166004571653
Iteration: 11, Func. Count: 79, Neg. LLF: 165.8516601309666
Optimization terminated successfully (Exit mode 0)
Current function value: 165.85166004571653
Iterations: 11
Function evaluations: 79
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 217.93246666227694
Iteration: 2, Func. Count: 18, Neg. LLF: 166.57726844593188
Iteration: 3, Func. Count: 26, Neg. LLF: 166.5146733242274
Iteration: 4, Func. Count: 34, Neg. LLF: 166.34324662435048
Iteration: 5, Func. Count: 42, Neg. LLF: 169.1940479130597
Iteration: 6, Func. Count: 51, Neg. LLF: 167.9216644588911
Iteration: 7, Func. Count: 60, Neg. LLF: 165.91107900765707
Iteration: 8, Func. Count: 68, Neg. LLF: 165.86474835020553
Iteration: 9, Func. Count: 76, Neg. LLF: 165.85279647563056
Iteration: 10, Func. Count: 84, Neg. LLF: 165.85166507157
Iteration: 11, Func. Count: 92, Neg. LLF: 165.85165992481853
Iteration: 12, Func. Count: 99, Neg. LLF: 165.85166001179738
Optimization terminated successfully (Exit mode 0)
Current function value: 165.85165992481853
Iterations: 12
Function evaluations: 99
Gradient evaluations: 12
Iteration: 1, Func. Count: 6, Neg. LLF: 177.2567171765177
Iteration: 2, Func. Count: 12, Neg. LLF: 175.69893463193372
Iteration: 3, Func. Count: 17, Neg. LLF: 175.63969350267575
Iteration: 4, Func. Count: 22, Neg. LLF: 175.54443276413093
Iteration: 5, Func. Count: 27, Neg. LLF: 175.13873804468233
Iteration: 6, Func. Count: 32, Neg. LLF: 174.91278768448703
Iteration: 7, Func. Count: 37, Neg. LLF: 174.7983092603923
Iteration: 8, Func. Count: 42, Neg. LLF: 174.767214081806
Iteration: 9, Func. Count: 47, Neg. LLF: 174.75162236440303
Iteration: 10, Func. Count: 52, Neg. LLF: 174.74047287862257
Iteration: 11, Func. Count: 57, Neg. LLF: 174.7368545055452
Iteration: 12, Func. Count: 62, Neg. LLF: 174.73589404754347
Iteration: 13, Func. Count: 67, Neg. LLF: 174.73586565796282
Iteration: 14, Func. Count: 72, Neg. LLF: 174.73586125806423
Iteration: 15, Func. Count: 76, Neg. LLF: 174.73586125806764
Optimization terminated successfully (Exit mode 0)
Current function value: 174.73586125806423
Iterations: 15
Function evaluations: 76
Gradient evaluations: 15
Iteration: 1, Func. Count: 7, Neg. LLF: 278.69856197675006
Iteration: 2, Func. Count: 14, Neg. LLF: 171.1388897064509
Iteration: 3, Func. Count: 21, Neg. LLF: 166.81283663061882
Iteration: 4, Func. Count: 28, Neg. LLF: 165.35457575584536
Iteration: 5, Func. Count: 35, Neg. LLF: 165.19464110073707
Iteration: 6, Func. Count: 41, Neg. LLF: 165.17767216261015
Iteration: 7, Func. Count: 47, Neg. LLF: 165.17597227791444
Iteration: 8, Func. Count: 53, Neg. LLF: 165.17570324817376
Iteration: 9, Func. Count: 59, Neg. LLF: 165.17569627679268
Iteration: 10, Func. Count: 64, Neg. LLF: 165.17569627382417
Optimization terminated successfully (Exit mode 0)
Current function value: 165.17569627679268
Iterations: 10
Function evaluations: 64
Gradient evaluations: 10
Iteration: 1, Func. Count: 8, Neg. LLF: 247.55268178518048
Iteration: 2, Func. Count: 16, Neg. LLF: 165.99129503703708
Iteration: 3, Func. Count: 23, Neg. LLF: 169.4919124830536
Iteration: 4, Func. Count: 31, Neg. LLF: 178.2482628194234
Iteration: 5, Func. Count: 39, Neg. LLF: 165.836581604606
Iteration: 6, Func. Count: 47, Neg. LLF: 165.33677471255464
Iteration: 7, Func. Count: 54, Neg. LLF: 165.32036475399656
Iteration: 8, Func. Count: 61, Neg. LLF: 165.2986021435489
Iteration: 9, Func. Count: 68, Neg. LLF: 165.2603694352664
Iteration: 10, Func. Count: 75, Neg. LLF: 165.2172447958461
Iteration: 11, Func. Count: 82, Neg. LLF: 165.18704942250176
Iteration: 12, Func. Count: 89, Neg. LLF: 165.17591560023013
Iteration: 13, Func. Count: 96, Neg. LLF: 165.17574921718324
Iteration: 14, Func. Count: 103, Neg. LLF: 165.17569724551774
Iteration: 15, Func. Count: 110, Neg. LLF: 165.17569602137445
Iteration: 16, Func. Count: 116, Neg. LLF: 165.1756960877174
Optimization terminated successfully (Exit mode 0)
Current function value: 165.17569602137445
Iterations: 16
Function evaluations: 116
Gradient evaluations: 16
Iteration: 1, Func. Count: 9, Neg. LLF: 245.6011741242585
Iteration: 2, Func. Count: 18, Neg. LLF: 165.99130597890564
Iteration: 3, Func. Count: 26, Neg. LLF: 167.8662162445775
Iteration: 4, Func. Count: 35, Neg. LLF: 177.00318928404974
Iteration: 5, Func. Count: 44, Neg. LLF: 165.44599040194123
Iteration: 6, Func. Count: 53, Neg. LLF: 165.33825459778393
Iteration: 7, Func. Count: 61, Neg. LLF: 165.32277411336463
Iteration: 8, Func. Count: 69, Neg. LLF: 165.29609710910862
Iteration: 9, Func. Count: 77, Neg. LLF: 165.27064960784563
Iteration: 10, Func. Count: 85, Neg. LLF: 165.2159721584634
Iteration: 11, Func. Count: 93, Neg. LLF: 165.1868034254152
Iteration: 12, Func. Count: 101, Neg. LLF: 165.17587748800497
Iteration: 13, Func. Count: 109, Neg. LLF: 165.17570426459505
Iteration: 14, Func. Count: 117, Neg. LLF: 165.1756976805019
Iteration: 15, Func. Count: 125, Neg. LLF: 165.17569610107668
Iteration: 16, Func. Count: 132, Neg. LLF: 165.17569621160135
Optimization terminated successfully (Exit mode 0)
Current function value: 165.17569610107668
Iterations: 16
Function evaluations: 132
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 244.3452200780037
Iteration: 2, Func. Count: 20, Neg. LLF: 165.95504202854048
Iteration: 3, Func. Count: 29, Neg. LLF: 167.99414502146394
Iteration: 4, Func. Count: 39, Neg. LLF: 178.2088951189937
Iteration: 5, Func. Count: 49, Neg. LLF: 165.44890154027732
Iteration: 6, Func. Count: 59, Neg. LLF: 165.34727331639164
Iteration: 7, Func. Count: 68, Neg. LLF: 165.3290300393694
Iteration: 8, Func. Count: 77, Neg. LLF: 165.30809909309994
Iteration: 9, Func. Count: 86, Neg. LLF: 165.28369278681458
Iteration: 10, Func. Count: 95, Neg. LLF: 165.22442264707996
Iteration: 11, Func. Count: 104, Neg. LLF: 165.19061482404382
Iteration: 12, Func. Count: 113, Neg. LLF: 165.17620360201036
Iteration: 13, Func. Count: 122, Neg. LLF: 165.17571293897328
Iteration: 14, Func. Count: 131, Neg. LLF: 165.17569838038622
Iteration: 15, Func. Count: 140, Neg. LLF: 165.17569635922646
Iteration: 16, Func. Count: 148, Neg. LLF: 165.17569647601817
Optimization terminated successfully (Exit mode 0)
Current function value: 165.17569635922646
Iterations: 16
Function evaluations: 148
Gradient evaluations: 16
Iteration: 1, Func. Count: 7, Neg. LLF: 182.29209641839634
Iteration: 2, Func. Count: 15, Neg. LLF: 171.59239351487926
Iteration: 3, Func. Count: 22, Neg. LLF: 169.14797919890722
Iteration: 4, Func. Count: 28, Neg. LLF: 168.68312365161614
Iteration: 5, Func. Count: 34, Neg. LLF: 168.64462337932252
Iteration: 6, Func. Count: 40, Neg. LLF: 168.50668501500238
Iteration: 7, Func. Count: 46, Neg. LLF: 168.4143623206924
Iteration: 8, Func. Count: 52, Neg. LLF: 168.2583834088163
Iteration: 9, Func. Count: 58, Neg. LLF: 167.8986370913286
Iteration: 10, Func. Count: 64, Neg. LLF: 167.74261212914587
Iteration: 11, Func. Count: 70, Neg. LLF: 167.69265572005904
Iteration: 12, Func. Count: 76, Neg. LLF: 167.66950910526023
Iteration: 13, Func. Count: 82, Neg. LLF: 167.65495282451184
Iteration: 14, Func. Count: 88, Neg. LLF: 167.6459042100403
Iteration: 15, Func. Count: 94, Neg. LLF: 167.64186660976057
Iteration: 16, Func. Count: 100, Neg. LLF: 167.64114540196078
Iteration: 17, Func. Count: 106, Neg. LLF: 167.6411403483029
Iteration: 18, Func. Count: 111, Neg. LLF: 167.6411403483032
Optimization terminated successfully (Exit mode 0)
Current function value: 167.6411403483029
Iterations: 18
Function evaluations: 111
Gradient evaluations: 18
Iteration: 1, Func. Count: 8, Neg. LLF: 655.7595434993806
Iteration: 2, Func. Count: 16, Neg. LLF: 456.1359625459041
Iteration: 3, Func. Count: 24, Neg. LLF: 164.66842944168394
Iteration: 4, Func. Count: 32, Neg. LLF: 164.40693339167981
Iteration: 5, Func. Count: 40, Neg. LLF: 164.19209659039254
Iteration: 6, Func. Count: 48, Neg. LLF: 163.91254595784443
Iteration: 7, Func. Count: 55, Neg. LLF: 163.9008136179364
Iteration: 8, Func. Count: 62, Neg. LLF: 163.90035436776694
Iteration: 9, Func. Count: 69, Neg. LLF: 163.9002734531666
Iteration: 10, Func. Count: 76, Neg. LLF: 163.9002518815052
Iteration: 11, Func. Count: 83, Neg. LLF: 163.90024608047747
Iteration: 12, Func. Count: 89, Neg. LLF: 163.90024604037194
Optimization terminated successfully (Exit mode 0)
Current function value: 163.90024608047747
Iterations: 12
Function evaluations: 89
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 281.947854438061
Iteration: 2, Func. Count: 18, Neg. LLF: 204.9975891977629
Iteration: 3, Func. Count: 27, Neg. LLF: 168.33107843844385
Iteration: 4, Func. Count: 36, Neg. LLF: 164.97131060096302
Iteration: 5, Func. Count: 44, Neg. LLF: 165.02181680138312
Iteration: 6, Func. Count: 53, Neg. LLF: 164.40809052850594
Iteration: 7, Func. Count: 61, Neg. LLF: 164.2833716480171
Iteration: 8, Func. Count: 69, Neg. LLF: 164.24271441143264
Iteration: 9, Func. Count: 77, Neg. LLF: 164.1212790331062
Iteration: 10, Func. Count: 85, Neg. LLF: 164.03345001192326
Iteration: 11, Func. Count: 93, Neg. LLF: 163.95268551028002
Iteration: 12, Func. Count: 101, Neg. LLF: 163.92160083803472
Iteration: 13, Func. Count: 109, Neg. LLF: 163.91023725365804
Iteration: 14, Func. Count: 117, Neg. LLF: 163.9008681433846
Iteration: 15, Func. Count: 125, Neg. LLF: 163.90029324526802
Iteration: 16, Func. Count: 133, Neg. LLF: 163.90024650031705
Iteration: 17, Func. Count: 141, Neg. LLF: 163.90024566252436
Optimization terminated successfully (Exit mode 0)
Current function value: 163.90024566252436
Iterations: 17
Function evaluations: 141
Gradient evaluations: 17
Iteration: 1, Func. Count: 10, Neg. LLF: 280.27350834836375
Iteration: 2, Func. Count: 20, Neg. LLF: 188.43719818602156
Iteration: 3, Func. Count: 30, Neg. LLF: 167.0414205874231
Iteration: 4, Func. Count: 40, Neg. LLF: 165.4320664569335
Iteration: 5, Func. Count: 49, Neg. LLF: 166.3533886359698
Iteration: 6, Func. Count: 59, Neg. LLF: 165.88288542281134
Iteration: 7, Func. Count: 69, Neg. LLF: 164.3902556422243
Iteration: 8, Func. Count: 78, Neg. LLF: 164.3622788183899
Iteration: 9, Func. Count: 88, Neg. LLF: 164.191198607248
Iteration: 10, Func. Count: 97, Neg. LLF: 164.080928530367
Iteration: 11, Func. Count: 106, Neg. LLF: 164.03375300787602
Iteration: 12, Func. Count: 115, Neg. LLF: 163.9646327227379
Iteration: 13, Func. Count: 124, Neg. LLF: 163.9188578685741
Iteration: 14, Func. Count: 133, Neg. LLF: 163.90298390691905
Iteration: 15, Func. Count: 142, Neg. LLF: 163.9005215414886
Iteration: 16, Func. Count: 151, Neg. LLF: 163.90029878933817
Iteration: 17, Func. Count: 160, Neg. LLF: 163.9002472474454
Iteration: 18, Func. Count: 169, Neg. LLF: 163.9002456289328
Iteration: 19, Func. Count: 177, Neg. LLF: 163.90024564928112
Optimization terminated successfully (Exit mode 0)
Current function value: 163.9002456289328
Iterations: 19
Function evaluations: 177
Gradient evaluations: 19
Iteration: 1, Func. Count: 11, Neg. LLF: 279.2028869507523
Iteration: 2, Func. Count: 22, Neg. LLF: 192.4967981940114
Iteration: 3, Func. Count: 33, Neg. LLF: 185.42193440532418
Iteration: 4, Func. Count: 44, Neg. LLF: 166.37913403139416
Iteration: 5, Func. Count: 55, Neg. LLF: 164.74042135711667
Iteration: 6, Func. Count: 65, Neg. LLF: 164.54541491854286
Iteration: 7, Func. Count: 75, Neg. LLF: 164.357984266508
Iteration: 8, Func. Count: 85, Neg. LLF: 164.25760383653005
Iteration: 9, Func. Count: 95, Neg. LLF: 164.20111691138047
Iteration: 10, Func. Count: 105, Neg. LLF: 164.08328756550935
Iteration: 11, Func. Count: 115, Neg. LLF: 164.03115767510897
Iteration: 12, Func. Count: 125, Neg. LLF: 163.98217326500114
Iteration: 13, Func. Count: 135, Neg. LLF: 163.9313674135372
Iteration: 14, Func. Count: 145, Neg. LLF: 163.90354316387794
Iteration: 15, Func. Count: 155, Neg. LLF: 163.90030584997382
Iteration: 16, Func. Count: 165, Neg. LLF: 163.9002543823975
Iteration: 17, Func. Count: 175, Neg. LLF: 163.9002458228371
Iteration: 18, Func. Count: 184, Neg. LLF: 163.90024586442516
Optimization terminated successfully (Exit mode 0)
Current function value: 163.9002458228371
Iterations: 18
Function evaluations: 184
Gradient evaluations: 18
Iteration: 1, Func. Count: 8, Neg. LLF: 168.26661651703242
Iteration: 2, Func. Count: 16, Neg. LLF: 181.98598702332913
Iteration: 3, Func. Count: 24, Neg. LLF: 165.3553471577057
Iteration: 4, Func. Count: 31, Neg. LLF: 165.0783138166514
Iteration: 5, Func. Count: 38, Neg. LLF: 164.93474571675668
Iteration: 6, Func. Count: 45, Neg. LLF: 164.84347528835667
Iteration: 7, Func. Count: 52, Neg. LLF: 164.74665869804878
Iteration: 8, Func. Count: 59, Neg. LLF: 164.3944525510716
Iteration: 9, Func. Count: 66, Neg. LLF: 164.34165564097628
Iteration: 10, Func. Count: 73, Neg. LLF: 164.09571086324422
Iteration: 11, Func. Count: 80, Neg. LLF: 163.94557565155594
Iteration: 12, Func. Count: 87, Neg. LLF: 163.82209540822
Iteration: 13, Func. Count: 94, Neg. LLF: 163.80293079710071
Iteration: 14, Func. Count: 101, Neg. LLF: 163.80195588184662
Iteration: 15, Func. Count: 108, Neg. LLF: 163.80194670016186
Iteration: 16, Func. Count: 114, Neg. LLF: 163.8019467001594
Optimization terminated successfully (Exit mode 0)
Current function value: 163.80194670016186
Iterations: 16
Function evaluations: 114
Gradient evaluations: 16
Iteration: 1, Func. Count: 9, Neg. LLF: 654.4167698414863
Iteration: 2, Func. Count: 18, Neg. LLF: 203.95903047722751
Iteration: 3, Func. Count: 27, Neg. LLF: 167.176874999126
Iteration: 4, Func. Count: 36, Neg. LLF: 163.85605549559864
Iteration: 5, Func. Count: 44, Neg. LLF: 164.598540727844
Iteration: 6, Func. Count: 53, Neg. LLF: 163.4630891200929
Iteration: 7, Func. Count: 61, Neg. LLF: 163.42829435318473
Iteration: 8, Func. Count: 69, Neg. LLF: 163.41668920849145
Iteration: 9, Func. Count: 77, Neg. LLF: 163.41589258651823
Iteration: 10, Func. Count: 85, Neg. LLF: 163.41581894643107
Iteration: 11, Func. Count: 93, Neg. LLF: 163.415817902071
Iteration: 12, Func. Count: 100, Neg. LLF: 163.41581786826745
Optimization terminated successfully (Exit mode 0)
Current function value: 163.415817902071
Iterations: 12
Function evaluations: 100
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 282.2272107689853
Iteration: 2, Func. Count: 20, Neg. LLF: 184.2118233160483
Iteration: 3, Func. Count: 30, Neg. LLF: 272.3304956655302
Iteration: 4, Func. Count: 40, Neg. LLF: 166.7922406516638
Iteration: 5, Func. Count: 50, Neg. LLF: 163.97401074869794
Iteration: 6, Func. Count: 59, Neg. LLF: 163.94892065763852
Iteration: 7, Func. Count: 69, Neg. LLF: 164.70863594548473
Iteration: 8, Func. Count: 79, Neg. LLF: 163.83749982782342
Iteration: 9, Func. Count: 89, Neg. LLF: 163.55082093979544
Iteration: 10, Func. Count: 98, Neg. LLF: 163.54633294926978
Iteration: 11, Func. Count: 107, Neg. LLF: 163.5327161428438
Iteration: 12, Func. Count: 116, Neg. LLF: 163.510538412864
Iteration: 13, Func. Count: 125, Neg. LLF: 163.47248074443675
Iteration: 14, Func. Count: 134, Neg. LLF: 163.4466279538809
Iteration: 15, Func. Count: 143, Neg. LLF: 163.4280453555389
Iteration: 16, Func. Count: 152, Neg. LLF: 163.42010703104987
Iteration: 17, Func. Count: 161, Neg. LLF: 163.41610161359412
Iteration: 18, Func. Count: 170, Neg. LLF: 163.41548752742034
Iteration: 19, Func. Count: 179, Neg. LLF: 163.41521476375272
Iteration: 20, Func. Count: 188, Neg. LLF: 163.41521038237673
Iteration: 21, Func. Count: 197, Neg. LLF: 163.41520795036632
Iteration: 22, Func. Count: 205, Neg. LLF: 163.41520791832488
Optimization terminated successfully (Exit mode 0)
Current function value: 163.41520795036632
Iterations: 22
Function evaluations: 205
Gradient evaluations: 22
Iteration: 1, Func. Count: 11, Neg. LLF: 281.07752091940114
Iteration: 2, Func. Count: 22, Neg. LLF: 197.35255369448828
Iteration: 3, Func. Count: 33, Neg. LLF: 186.9069217337072
Iteration: 4, Func. Count: 44, Neg. LLF: 164.76338973160674
Iteration: 5, Func. Count: 55, Neg. LLF: 164.12946535241633
Iteration: 6, Func. Count: 66, Neg. LLF: 162.97387926232747
Iteration: 7, Func. Count: 76, Neg. LLF: 164.25270747065792
Iteration: 8, Func. Count: 87, Neg. LLF: 162.87529440147836
Iteration: 9, Func. Count: 97, Neg. LLF: 162.85461361264055
Iteration: 10, Func. Count: 107, Neg. LLF: 162.84485787112587
Iteration: 11, Func. Count: 117, Neg. LLF: 162.84173764903542
Iteration: 12, Func. Count: 127, Neg. LLF: 162.84161593653633
Iteration: 13, Func. Count: 137, Neg. LLF: 162.84150028305174
Iteration: 14, Func. Count: 147, Neg. LLF: 162.84139054985695
Iteration: 15, Func. Count: 157, Neg. LLF: 162.8412058053228
Iteration: 16, Func. Count: 167, Neg. LLF: 162.8407674884236
Iteration: 17, Func. Count: 177, Neg. LLF: 162.8400784331852
Iteration: 18, Func. Count: 187, Neg. LLF: 162.83833493627475
Iteration: 19, Func. Count: 197, Neg. LLF: 162.83690124120966
Iteration: 20, Func. Count: 207, Neg. LLF: 162.8357129923742
Iteration: 21, Func. Count: 217, Neg. LLF: 162.8354542344549
Iteration: 22, Func. Count: 227, Neg. LLF: 162.83542224864198
Iteration: 23, Func. Count: 237, Neg. LLF: 162.8354186543401
Iteration: 24, Func. Count: 246, Neg. LLF: 162.83541865438463
Optimization terminated successfully (Exit mode 0)
Current function value: 162.8354186543401
Iterations: 24
Function evaluations: 246
Gradient evaluations: 24
Iteration: 1, Func. Count: 12, Neg. LLF: 280.070444142337
Iteration: 2, Func. Count: 24, Neg. LLF: 191.94899799599912
Iteration: 3, Func. Count: 36, Neg. LLF: 185.39682804031168
Iteration: 4, Func. Count: 48, Neg. LLF: 163.18574285107107
Iteration: 5, Func. Count: 59, Neg. LLF: 164.74097551766354
Iteration: 6, Func. Count: 71, Neg. LLF: 164.1903370377587
Iteration: 7, Func. Count: 83, Neg. LLF: 164.04659024329254
Iteration: 8, Func. Count: 95, Neg. LLF: 162.90152711186738
Iteration: 9, Func. Count: 106, Neg. LLF: 162.87220500444639
Iteration: 10, Func. Count: 117, Neg. LLF: 162.8589368418146
Iteration: 11, Func. Count: 128, Neg. LLF: 162.84764279949795
Iteration: 12, Func. Count: 139, Neg. LLF: 162.8427966127401
Iteration: 13, Func. Count: 150, Neg. LLF: 162.84055450634727
Iteration: 14, Func. Count: 161, Neg. LLF: 162.84002578651365
Iteration: 15, Func. Count: 172, Neg. LLF: 162.83986928134635
Iteration: 16, Func. Count: 183, Neg. LLF: 162.83970311035077
Iteration: 17, Func. Count: 194, Neg. LLF: 162.83945520948464
Iteration: 18, Func. Count: 205, Neg. LLF: 162.83903616647666
Iteration: 19, Func. Count: 216, Neg. LLF: 162.8381788586174
Iteration: 20, Func. Count: 227, Neg. LLF: 162.8365964715735
Iteration: 21, Func. Count: 238, Neg. LLF: 162.83563509774885
Iteration: 22, Func. Count: 249, Neg. LLF: 162.83543948186534
Iteration: 23, Func. Count: 260, Neg. LLF: 162.8354211047937
Iteration: 24, Func. Count: 271, Neg. LLF: 162.83541852973894
Iteration: 25, Func. Count: 281, Neg. LLF: 162.8354185704885
Optimization terminated successfully (Exit mode 0)
Current function value: 162.83541852973894
Iterations: 25
Function evaluations: 281
Gradient evaluations: 25
Iteration: 1, Func. Count: 9, Neg. LLF: 168.41212939026116
Iteration: 2, Func. Count: 18, Neg. LLF: 182.78456057598802
Iteration: 3, Func. Count: 27, Neg. LLF: 165.2956583894587
Iteration: 4, Func. Count: 35, Neg. LLF: 165.06764344051993
Iteration: 5, Func. Count: 43, Neg. LLF: 164.92825282724507
Iteration: 6, Func. Count: 51, Neg. LLF: 164.84526256069202
Iteration: 7, Func. Count: 59, Neg. LLF: 164.69115903614477
Iteration: 8, Func. Count: 67, Neg. LLF: 164.9888619027478
Iteration: 9, Func. Count: 76, Neg. LLF: 164.3542527038871
Iteration: 10, Func. Count: 84, Neg. LLF: 164.263885261853
Iteration: 11, Func. Count: 92, Neg. LLF: 164.15195014347105
Iteration: 12, Func. Count: 100, Neg. LLF: 163.852136609927
Iteration: 13, Func. Count: 108, Neg. LLF: 163.81104779338034
Iteration: 14, Func. Count: 116, Neg. LLF: 163.80524673404082
Iteration: 15, Func. Count: 124, Neg. LLF: 163.80199564807904
Iteration: 16, Func. Count: 132, Neg. LLF: 163.80195122737717
Iteration: 17, Func. Count: 140, Neg. LLF: 163.8019470127505
Iteration: 18, Func. Count: 147, Neg. LLF: 163.80194701285726
Optimization terminated successfully (Exit mode 0)
Current function value: 163.8019470127505
Iterations: 18
Function evaluations: 147
Gradient evaluations: 18
Iteration: 1, Func. Count: 10, Neg. LLF: 649.3250539052034
Iteration: 2, Func. Count: 20, Neg. LLF: 188.0973391812539
Iteration: 3, Func. Count: 30, Neg. LLF: 192.86873577640606
Iteration: 4, Func. Count: 40, Neg. LLF: 163.70200860143996
Iteration: 5, Func. Count: 49, Neg. LLF: 163.8492044485713
Iteration: 6, Func. Count: 59, Neg. LLF: 163.460701472309
Iteration: 7, Func. Count: 68, Neg. LLF: 163.42909653325322
Iteration: 8, Func. Count: 77, Neg. LLF: 163.41926422164644
Iteration: 9, Func. Count: 86, Neg. LLF: 163.41597085050128
Iteration: 10, Func. Count: 95, Neg. LLF: 163.41582187469817
Iteration: 11, Func. Count: 104, Neg. LLF: 163.4158183061025
Iteration: 12, Func. Count: 113, Neg. LLF: 163.41581745155548
Optimization terminated successfully (Exit mode 0)
Current function value: 163.41581745155548
Iterations: 12
Function evaluations: 113
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 281.05452506475046
Iteration: 2, Func. Count: 22, Neg. LLF: 197.28949844742453
Iteration: 3, Func. Count: 33, Neg. LLF: 192.62047339602898
Iteration: 4, Func. Count: 44, Neg. LLF: 164.15491092343683
Iteration: 5, Func. Count: 54, Neg. LLF: 163.7438876401022
Iteration: 6, Func. Count: 64, Neg. LLF: 164.30192629286685
Iteration: 7, Func. Count: 75, Neg. LLF: 163.763027535835
Iteration: 8, Func. Count: 86, Neg. LLF: 163.77262872830025
Iteration: 9, Func. Count: 97, Neg. LLF: 163.55358936503484
Iteration: 10, Func. Count: 107, Neg. LLF: 163.54649790184513
Iteration: 11, Func. Count: 117, Neg. LLF: 163.5260069430483
Iteration: 12, Func. Count: 127, Neg. LLF: 163.50634271373343
Iteration: 13, Func. Count: 137, Neg. LLF: 163.47964783424382
Iteration: 14, Func. Count: 147, Neg. LLF: 163.4512150663247
Iteration: 15, Func. Count: 157, Neg. LLF: 163.42411324775387
Iteration: 16, Func. Count: 167, Neg. LLF: 163.4165248153849
Iteration: 17, Func. Count: 177, Neg. LLF: 163.41585032885396
Iteration: 18, Func. Count: 187, Neg. LLF: 163.41553206779193
Iteration: 19, Func. Count: 197, Neg. LLF: 163.41523633913795
Iteration: 20, Func. Count: 207, Neg. LLF: 163.41520913658448
Iteration: 21, Func. Count: 217, Neg. LLF: 163.41520794835617
Iteration: 22, Func. Count: 226, Neg. LLF: 163.41520791631925
Optimization terminated successfully (Exit mode 0)
Current function value: 163.41520794835617
Iterations: 22
Function evaluations: 226
Gradient evaluations: 22
Iteration: 1, Func. Count: 12, Neg. LLF: 279.4890456614044
Iteration: 2, Func. Count: 24, Neg. LLF: 197.3129099857099
Iteration: 3, Func. Count: 36, Neg. LLF: 183.93508970785095
Iteration: 4, Func. Count: 48, Neg. LLF: 165.20816212168236
Iteration: 5, Func. Count: 60, Neg. LLF: 164.24882032649
Iteration: 6, Func. Count: 72, Neg. LLF: 162.95205712607947
Iteration: 7, Func. Count: 83, Neg. LLF: 164.62152012125705
Iteration: 8, Func. Count: 95, Neg. LLF: 162.86595444113254
Iteration: 9, Func. Count: 106, Neg. LLF: 162.84871191889363
Iteration: 10, Func. Count: 117, Neg. LLF: 162.843550986811
Iteration: 11, Func. Count: 128, Neg. LLF: 162.84149736892223
Iteration: 12, Func. Count: 139, Neg. LLF: 162.84137383421208
Iteration: 13, Func. Count: 150, Neg. LLF: 162.84130675380058
Iteration: 14, Func. Count: 161, Neg. LLF: 162.841113795919
Iteration: 15, Func. Count: 172, Neg. LLF: 162.8407527704006
Iteration: 16, Func. Count: 183, Neg. LLF: 162.8401877898716
Iteration: 17, Func. Count: 194, Neg. LLF: 162.83910816562135
Iteration: 18, Func. Count: 205, Neg. LLF: 162.83820422492354
Iteration: 19, Func. Count: 216, Neg. LLF: 162.83670166308715
Iteration: 20, Func. Count: 227, Neg. LLF: 162.83574672008854
Iteration: 21, Func. Count: 238, Neg. LLF: 162.8354563734333
Iteration: 22, Func. Count: 249, Neg. LLF: 162.83542107519906
Iteration: 23, Func. Count: 260, Neg. LLF: 162.83541852901675
Iteration: 24, Func. Count: 270, Neg. LLF: 162.83541852901615
Optimization terminated successfully (Exit mode 0)
Current function value: 162.83541852901675
Iterations: 24
Function evaluations: 270
Gradient evaluations: 24
Iteration: 1, Func. Count: 13, Neg. LLF: 278.21292199438636
Iteration: 2, Func. Count: 26, Neg. LLF: 197.0096822461452
Iteration: 3, Func. Count: 39, Neg. LLF: 183.10014694806424
Iteration: 4, Func. Count: 52, Neg. LLF: 163.92799281456868
Iteration: 5, Func. Count: 64, Neg. LLF: 164.92614736440322
Iteration: 6, Func. Count: 77, Neg. LLF: 165.1756974236148
Iteration: 7, Func. Count: 91, Neg. LLF: 163.37316824021568
Iteration: 8, Func. Count: 104, Neg. LLF: 162.87468603324538
Iteration: 9, Func. Count: 116, Neg. LLF: 162.8499114010261
Iteration: 10, Func. Count: 128, Neg. LLF: 162.84180851350757
Iteration: 11, Func. Count: 140, Neg. LLF: 162.84123510681178
Iteration: 12, Func. Count: 152, Neg. LLF: 162.8409530344879
Iteration: 13, Func. Count: 164, Neg. LLF: 162.8407410201295
Iteration: 14, Func. Count: 176, Neg. LLF: 162.84062123684356
Iteration: 15, Func. Count: 188, Neg. LLF: 162.84044690353366
Iteration: 16, Func. Count: 200, Neg. LLF: 162.83996194675774
Iteration: 17, Func. Count: 212, Neg. LLF: 162.83897265068666
Iteration: 18, Func. Count: 224, Neg. LLF: 162.83745979209903
Iteration: 19, Func. Count: 236, Neg. LLF: 162.83630483326658
Iteration: 20, Func. Count: 248, Neg. LLF: 162.83562223402052
Iteration: 21, Func. Count: 260, Neg. LLF: 162.83546429926105
Iteration: 22, Func. Count: 272, Neg. LLF: 162.83542212796058
Iteration: 23, Func. Count: 284, Neg. LLF: 162.83541855867225
Iteration: 24, Func. Count: 295, Neg. LLF: 162.83541859941417
Optimization terminated successfully (Exit mode 0)
Current function value: 162.83541855867225
Iterations: 24
Function evaluations: 295
Gradient evaluations: 24
Iteration: 1, Func. Count: 6, Neg. LLF: 169.826523827069
Iteration: 2, Func. Count: 12, Neg. LLF: 169.6335729033334
Iteration: 3, Func. Count: 19, Neg. LLF: 167.75034000294036
Iteration: 4, Func. Count: 24, Neg. LLF: 167.67161892823015
Iteration: 5, Func. Count: 29, Neg. LLF: 167.5709655434316
Iteration: 6, Func. Count: 34, Neg. LLF: 167.20276655818475
Iteration: 7, Func. Count: 39, Neg. LLF: 166.61594025327344
Iteration: 8, Func. Count: 44, Neg. LLF: 165.98412243108308
Iteration: 9, Func. Count: 49, Neg. LLF: 165.25483401084148
Iteration: 10, Func. Count: 54, Neg. LLF: 165.0768012955403
Iteration: 11, Func. Count: 59, Neg. LLF: 165.01455848589674
Iteration: 12, Func. Count: 64, Neg. LLF: 164.9858669523621
Iteration: 13, Func. Count: 69, Neg. LLF: 164.9763224598824
Iteration: 14, Func. Count: 74, Neg. LLF: 164.9759626383064
Iteration: 15, Func. Count: 79, Neg. LLF: 164.9759605091545
Iteration: 16, Func. Count: 83, Neg. LLF: 164.9759604992117
Optimization terminated successfully (Exit mode 0)
Current function value: 164.9759605091545
Iterations: 16
Function evaluations: 83
Gradient evaluations: 16
Iteration: 1, Func. Count: 7, Neg. LLF: 171.54943835894397
Iteration: 2, Func. Count: 14, Neg. LLF: 165.3130894003932
Iteration: 3, Func. Count: 21, Neg. LLF: 164.31528589689302
Iteration: 4, Func. Count: 28, Neg. LLF: 163.2240636883428
Iteration: 5, Func. Count: 34, Neg. LLF: 163.14179985773228
Iteration: 6, Func. Count: 40, Neg. LLF: 163.13373642072574
Iteration: 7, Func. Count: 46, Neg. LLF: 163.13091838708544
Iteration: 8, Func. Count: 52, Neg. LLF: 163.13041754789907
Iteration: 9, Func. Count: 58, Neg. LLF: 163.1301322490143
Iteration: 10, Func. Count: 64, Neg. LLF: 163.13009636824643
Iteration: 11, Func. Count: 70, Neg. LLF: 163.13009140514916
Iteration: 12, Func. Count: 75, Neg. LLF: 163.13009138744854
Optimization terminated successfully (Exit mode 0)
Current function value: 163.13009140514916
Iterations: 12
Function evaluations: 75
Gradient evaluations: 12
Iteration: 1, Func. Count: 8, Neg. LLF: 184.71900061605132
Iteration: 2, Func. Count: 16, Neg. LLF: 364.5413072762864
Iteration: 3, Func. Count: 24, Neg. LLF: 227.87125346102664
Iteration: 4, Func. Count: 32, Neg. LLF: 163.50660111316552
Iteration: 5, Func. Count: 39, Neg. LLF: 163.74709300089893
Iteration: 6, Func. Count: 47, Neg. LLF: 163.21273219340452
Iteration: 7, Func. Count: 54, Neg. LLF: 163.18736138197394
Iteration: 8, Func. Count: 61, Neg. LLF: 163.17337561855393
Iteration: 9, Func. Count: 68, Neg. LLF: 163.1539321665821
Iteration: 10, Func. Count: 75, Neg. LLF: 163.1405334523172
Iteration: 11, Func. Count: 82, Neg. LLF: 163.1319656177509
Iteration: 12, Func. Count: 89, Neg. LLF: 163.1301853038789
Iteration: 13, Func. Count: 96, Neg. LLF: 163.13010373091393
Iteration: 14, Func. Count: 103, Neg. LLF: 163.1300913780034
Iteration: 15, Func. Count: 109, Neg. LLF: 163.13009139942082
Optimization terminated successfully (Exit mode 0)
Current function value: 163.1300913780034
Iterations: 15
Function evaluations: 109
Gradient evaluations: 15
Iteration: 1, Func. Count: 9, Neg. LLF: 184.14748494338642
Iteration: 2, Func. Count: 18, Neg. LLF: 201.0404927608483
Iteration: 3, Func. Count: 27, Neg. LLF: 174.5248368887805
Iteration: 4, Func. Count: 36, Neg. LLF: 163.44656765371008
Iteration: 5, Func. Count: 44, Neg. LLF: 164.07962984146653
Iteration: 6, Func. Count: 53, Neg. LLF: 163.23235927353522
Iteration: 7, Func. Count: 61, Neg. LLF: 163.15269819417057
Iteration: 8, Func. Count: 69, Neg. LLF: 163.11843328675187
Iteration: 9, Func. Count: 77, Neg. LLF: 163.09362944563696
Iteration: 10, Func. Count: 85, Neg. LLF: 163.06844571220716
Iteration: 11, Func. Count: 93, Neg. LLF: 163.06465613534334
Iteration: 12, Func. Count: 101, Neg. LLF: 163.06440863779954
Iteration: 13, Func. Count: 109, Neg. LLF: 163.06439403272108
Iteration: 14, Func. Count: 116, Neg. LLF: 163.0643940139682
Optimization terminated successfully (Exit mode 0)
Current function value: 163.06439403272108
Iterations: 14
Function evaluations: 116
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 183.84853487319154
Iteration: 2, Func. Count: 20, Neg. LLF: 167.80891357085747
Iteration: 3, Func. Count: 30, Neg. LLF: 179.03813901329647
Iteration: 4, Func. Count: 40, Neg. LLF: 163.56626678439454
Iteration: 5, Func. Count: 49, Neg. LLF: 171.58150042460994
Iteration: 6, Func. Count: 59, Neg. LLF: 171.75583664723638
Iteration: 7, Func. Count: 70, Neg. LLF: 163.47925938138687
Iteration: 8, Func. Count: 80, Neg. LLF: 163.26109202683688
Iteration: 9, Func. Count: 90, Neg. LLF: 163.31556958943963
Iteration: 10, Func. Count: 100, Neg. LLF: 163.14386456197624
Iteration: 11, Func. Count: 109, Neg. LLF: 163.1270322517276
Iteration: 12, Func. Count: 118, Neg. LLF: 163.07700445539788
Iteration: 13, Func. Count: 127, Neg. LLF: 163.07138581143099
Iteration: 14, Func. Count: 136, Neg. LLF: 163.06635736473368
Iteration: 15, Func. Count: 145, Neg. LLF: 163.0650103315118
Iteration: 16, Func. Count: 154, Neg. LLF: 163.06442608608705
Iteration: 17, Func. Count: 163, Neg. LLF: 163.06439789148115
Iteration: 18, Func. Count: 172, Neg. LLF: 163.06439392685394
Iteration: 19, Func. Count: 180, Neg. LLF: 163.0643939095755
Optimization terminated successfully (Exit mode 0)
Current function value: 163.06439392685394
Iterations: 19
Function evaluations: 180
Gradient evaluations: 19
Iteration: 1, Func. Count: 7, Neg. LLF: 169.79524976168577
Iteration: 2, Func. Count: 14, Neg. LLF: 168.00772493990402
Iteration: 3, Func. Count: 22, Neg. LLF: 167.11576953403113
Iteration: 4, Func. Count: 28, Neg. LLF: 167.02921757789446
Iteration: 5, Func. Count: 34, Neg. LLF: 166.82832745493624
Iteration: 6, Func. Count: 40, Neg. LLF: 166.58748031337893
Iteration: 7, Func. Count: 46, Neg. LLF: 166.2466691184169
Iteration: 8, Func. Count: 52, Neg. LLF: 165.61404135112355
Iteration: 9, Func. Count: 58, Neg. LLF: 165.0855116744266
Iteration: 10, Func. Count: 64, Neg. LLF: 164.83647151892194
Iteration: 11, Func. Count: 70, Neg. LLF: 164.7419754160749
Iteration: 12, Func. Count: 76, Neg. LLF: 164.69278639750323
Iteration: 13, Func. Count: 82, Neg. LLF: 164.68342365978353
Iteration: 14, Func. Count: 88, Neg. LLF: 164.6824327403128
Iteration: 15, Func. Count: 94, Neg. LLF: 164.68229997655908
Iteration: 16, Func. Count: 100, Neg. LLF: 164.6822901264127
Iteration: 17, Func. Count: 105, Neg. LLF: 164.68229012641956
Optimization terminated successfully (Exit mode 0)
Current function value: 164.6822901264127
Iterations: 17
Function evaluations: 105
Gradient evaluations: 17
Iteration: 1, Func. Count: 8, Neg. LLF: 226.37732668503318
Iteration: 2, Func. Count: 16, Neg. LLF: 168.88832576359184
Iteration: 3, Func. Count: 24, Neg. LLF: 165.0012002078589
Iteration: 4, Func. Count: 32, Neg. LLF: 164.0921987874824
Iteration: 5, Func. Count: 40, Neg. LLF: 163.11116146974942
Iteration: 6, Func. Count: 47, Neg. LLF: 162.98549349887725
Iteration: 7, Func. Count: 54, Neg. LLF: 162.95874193589128
Iteration: 8, Func. Count: 61, Neg. LLF: 162.94537268009847
Iteration: 9, Func. Count: 68, Neg. LLF: 162.94404593816785
Iteration: 10, Func. Count: 75, Neg. LLF: 162.94399814728462
Iteration: 11, Func. Count: 81, Neg. LLF: 162.94399814286314
Optimization terminated successfully (Exit mode 0)
Current function value: 162.94399814728462
Iterations: 11
Function evaluations: 81
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 167.74960146352714
Iteration: 2, Func. Count: 18, Neg. LLF: 259.62669992200364
Iteration: 3, Func. Count: 28, Neg. LLF: 166.6041036651752
Iteration: 4, Func. Count: 37, Neg. LLF: 163.72167193948286
Iteration: 5, Func. Count: 46, Neg. LLF: 163.04002350564494
Iteration: 6, Func. Count: 54, Neg. LLF: 163.00088229103693
Iteration: 7, Func. Count: 62, Neg. LLF: 162.98995615438304
Iteration: 8, Func. Count: 70, Neg. LLF: 162.98504449002857
Iteration: 9, Func. Count: 78, Neg. LLF: 162.97224085621832
Iteration: 10, Func. Count: 86, Neg. LLF: 162.95466949916474
Iteration: 11, Func. Count: 94, Neg. LLF: 162.9453980570404
Iteration: 12, Func. Count: 102, Neg. LLF: 162.94414186673225
Iteration: 13, Func. Count: 110, Neg. LLF: 162.94399795449496
Iteration: 14, Func. Count: 117, Neg. LLF: 162.94399798721503
Optimization terminated successfully (Exit mode 0)
Current function value: 162.94399795449496
Iterations: 14
Function evaluations: 117
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 183.5030510545107
Iteration: 2, Func. Count: 20, Neg. LLF: 201.06352509656068
Iteration: 3, Func. Count: 30, Neg. LLF: 164.01945746313882
Iteration: 4, Func. Count: 39, Neg. LLF: 171.12061467207246
Iteration: 5, Func. Count: 49, Neg. LLF: 164.40790344146964
Iteration: 6, Func. Count: 59, Neg. LLF: 163.34360062937077
Iteration: 7, Func. Count: 69, Neg. LLF: 162.7313525806551
Iteration: 8, Func. Count: 78, Neg. LLF: 162.9252627496353
Iteration: 9, Func. Count: 88, Neg. LLF: 162.64548280233308
Iteration: 10, Func. Count: 97, Neg. LLF: 162.63505618322324
Iteration: 11, Func. Count: 106, Neg. LLF: 162.631386009058
Iteration: 12, Func. Count: 115, Neg. LLF: 162.62975851000712
Iteration: 13, Func. Count: 124, Neg. LLF: 162.62787308055022
Iteration: 14, Func. Count: 133, Neg. LLF: 162.62701363169444
Iteration: 15, Func. Count: 142, Neg. LLF: 162.62687851699164
Iteration: 16, Func. Count: 151, Neg. LLF: 162.62687345868702
Iteration: 17, Func. Count: 159, Neg. LLF: 162.6268734472427
Optimization terminated successfully (Exit mode 0)
Current function value: 162.62687345868702
Iterations: 17
Function evaluations: 159
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 183.4043168342366
Iteration: 2, Func. Count: 22, Neg. LLF: 195.84066756712036
Iteration: 3, Func. Count: 33, Neg. LLF: 176.93429116687383
Iteration: 4, Func. Count: 44, Neg. LLF: 163.2123352803355
Iteration: 5, Func. Count: 54, Neg. LLF: 165.7743179585184
Iteration: 6, Func. Count: 65, Neg. LLF: 162.8297991943735
Iteration: 7, Func. Count: 75, Neg. LLF: 163.2115847814583
Iteration: 8, Func. Count: 86, Neg. LLF: 164.3039728585697
Iteration: 9, Func. Count: 97, Neg. LLF: 162.8778957734571
Iteration: 10, Func. Count: 108, Neg. LLF: 162.65926323164203
Iteration: 11, Func. Count: 118, Neg. LLF: 162.64304693580826
Iteration: 12, Func. Count: 128, Neg. LLF: 162.6282511390479
Iteration: 13, Func. Count: 138, Neg. LLF: 162.62713692342925
Iteration: 14, Func. Count: 148, Neg. LLF: 162.62687429493715
Iteration: 15, Func. Count: 158, Neg. LLF: 162.6268734393233
Optimization terminated successfully (Exit mode 0)
Current function value: 162.6268734393233
Iterations: 15
Function evaluations: 158
Gradient evaluations: 15
Iteration: 1, Func. Count: 8, Neg. LLF: 169.84668791598165
Iteration: 2, Func. Count: 16, Neg. LLF: 176.70413076748687
Iteration: 3, Func. Count: 24, Neg. LLF: 174.82180812966592
Iteration: 4, Func. Count: 32, Neg. LLF: 166.9878321419657
Iteration: 5, Func. Count: 39, Neg. LLF: 166.9204564199572
Iteration: 6, Func. Count: 46, Neg. LLF: 166.80715604838184
Iteration: 7, Func. Count: 53, Neg. LLF: 166.63652549105737
Iteration: 8, Func. Count: 60, Neg. LLF: 165.4712607483761
Iteration: 9, Func. Count: 67, Neg. LLF: 166.04408378084986
Iteration: 10, Func. Count: 75, Neg. LLF: 164.70924211708478
Iteration: 11, Func. Count: 82, Neg. LLF: 164.63975696380203
Iteration: 12, Func. Count: 89, Neg. LLF: 164.61109371254355
Iteration: 13, Func. Count: 96, Neg. LLF: 164.60083676927894
Iteration: 14, Func. Count: 103, Neg. LLF: 164.59740484356277
Iteration: 15, Func. Count: 110, Neg. LLF: 164.5961854139759
Iteration: 16, Func. Count: 117, Neg. LLF: 164.59609733456784
Iteration: 17, Func. Count: 124, Neg. LLF: 164.59609435917358
Iteration: 18, Func. Count: 130, Neg. LLF: 164.59609435917753
Optimization terminated successfully (Exit mode 0)
Current function value: 164.59609435917358
Iterations: 18
Function evaluations: 130
Gradient evaluations: 18
Iteration: 1, Func. Count: 9, Neg. LLF: 242.06654601493742
Iteration: 2, Func. Count: 18, Neg. LLF: 201.97588302762173
Iteration: 3, Func. Count: 27, Neg. LLF: 163.84386820818796
Iteration: 4, Func. Count: 36, Neg. LLF: 165.5462740665285
Iteration: 5, Func. Count: 45, Neg. LLF: 165.54955055755892
Iteration: 6, Func. Count: 54, Neg. LLF: 163.04652399029573
Iteration: 7, Func. Count: 62, Neg. LLF: 162.98265737311976
Iteration: 8, Func. Count: 70, Neg. LLF: 162.95069178304846
Iteration: 9, Func. Count: 78, Neg. LLF: 162.93784850944715
Iteration: 10, Func. Count: 86, Neg. LLF: 162.93591464515012
Iteration: 11, Func. Count: 94, Neg. LLF: 162.93570935241414
Iteration: 12, Func. Count: 102, Neg. LLF: 162.9356424445656
Iteration: 13, Func. Count: 110, Neg. LLF: 162.9356334716204
Iteration: 14, Func. Count: 118, Neg. LLF: 162.93563280053627
Optimization terminated successfully (Exit mode 0)
Current function value: 162.93563280053627
Iterations: 14
Function evaluations: 118
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 186.70280541671514
Iteration: 2, Func. Count: 20, Neg. LLF: 256.9639308910446
Iteration: 3, Func. Count: 30, Neg. LLF: 165.8307017738697
Iteration: 4, Func. Count: 40, Neg. LLF: 164.20900782255904
Iteration: 5, Func. Count: 50, Neg. LLF: 163.03531284610384
Iteration: 6, Func. Count: 59, Neg. LLF: 163.0401352128907
Iteration: 7, Func. Count: 69, Neg. LLF: 162.99130282914234
Iteration: 8, Func. Count: 78, Neg. LLF: 162.98924169633244
Iteration: 9, Func. Count: 88, Neg. LLF: 162.9774609821906
Iteration: 10, Func. Count: 97, Neg. LLF: 162.96719841624147
Iteration: 11, Func. Count: 106, Neg. LLF: 162.96090984282918
Iteration: 12, Func. Count: 115, Neg. LLF: 162.94804803618177
Iteration: 13, Func. Count: 124, Neg. LLF: 162.93689181751841
Iteration: 14, Func. Count: 133, Neg. LLF: 162.93569888275397
Iteration: 15, Func. Count: 142, Neg. LLF: 162.93563405421682
Iteration: 16, Func. Count: 151, Neg. LLF: 162.9356327609912
Iteration: 17, Func. Count: 159, Neg. LLF: 162.93563279746883
Optimization terminated successfully (Exit mode 0)
Current function value: 162.9356327609912
Iterations: 17
Function evaluations: 159
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 283.99977450984323
Iteration: 2, Func. Count: 22, Neg. LLF: 185.13137333140136
Iteration: 3, Func. Count: 33, Neg. LLF: 165.59120457309476
Iteration: 4, Func. Count: 44, Neg. LLF: 163.2705057042617
Iteration: 5, Func. Count: 54, Neg. LLF: 178.57001233678443
Iteration: 6, Func. Count: 65, Neg. LLF: 164.6017236783362
Iteration: 7, Func. Count: 76, Neg. LLF: 163.28031043216558
Iteration: 8, Func. Count: 87, Neg. LLF: 163.02438227299447
Iteration: 9, Func. Count: 98, Neg. LLF: 163.56522598751113
Iteration: 10, Func. Count: 109, Neg. LLF: 162.59247131765164
Iteration: 11, Func. Count: 119, Neg. LLF: 162.56275377206381
Iteration: 12, Func. Count: 129, Neg. LLF: 162.54647562781403
Iteration: 13, Func. Count: 139, Neg. LLF: 162.52542049435226
Iteration: 14, Func. Count: 149, Neg. LLF: 162.51433415998477
Iteration: 15, Func. Count: 159, Neg. LLF: 162.51028294002896
Iteration: 16, Func. Count: 169, Neg. LLF: 162.50920279638336
Iteration: 17, Func. Count: 179, Neg. LLF: 162.50916207725254
Iteration: 18, Func. Count: 189, Neg. LLF: 162.50915868946035
Iteration: 19, Func. Count: 198, Neg. LLF: 162.509158671967
Optimization terminated successfully (Exit mode 0)
Current function value: 162.50915868946035
Iterations: 19
Function evaluations: 198
Gradient evaluations: 19
Iteration: 1, Func. Count: 12, Neg. LLF: 250.17885733948043
Iteration: 2, Func. Count: 24, Neg. LLF: 175.09651510877703
Iteration: 3, Func. Count: 36, Neg. LLF: 182.76107610835277
Iteration: 4, Func. Count: 48, Neg. LLF: 165.00686920434546
Iteration: 5, Func. Count: 60, Neg. LLF: 169.7324541315786
Iteration: 6, Func. Count: 72, Neg. LLF: 163.29306278010486
Iteration: 7, Func. Count: 84, Neg. LLF: 162.72212121221438
Iteration: 8, Func. Count: 95, Neg. LLF: 163.5173856994499
Iteration: 9, Func. Count: 107, Neg. LLF: 162.69758175766262
Iteration: 10, Func. Count: 119, Neg. LLF: 162.60336924638494
Iteration: 11, Func. Count: 131, Neg. LLF: 162.67034353040705
Iteration: 12, Func. Count: 143, Neg. LLF: 162.5615282762372
Iteration: 13, Func. Count: 155, Neg. LLF: 162.51789729757024
Iteration: 14, Func. Count: 166, Neg. LLF: 162.50667791441637
Iteration: 15, Func. Count: 177, Neg. LLF: 162.4970968950704
Iteration: 16, Func. Count: 188, Neg. LLF: 162.49484219272523
Iteration: 17, Func. Count: 199, Neg. LLF: 162.49471934322477
Iteration: 18, Func. Count: 210, Neg. LLF: 162.49471817732433
Iteration: 19, Func. Count: 220, Neg. LLF: 162.49471815963778
Optimization terminated successfully (Exit mode 0)
Current function value: 162.49471817732433
Iterations: 19
Function evaluations: 220
Gradient evaluations: 19
Iteration: 1, Func. Count: 9, Neg. LLF: 169.9687651970822
Iteration: 2, Func. Count: 18, Neg. LLF: 166.71908485863665
Iteration: 3, Func. Count: 27, Neg. LLF: 165.25138958291265
Iteration: 4, Func. Count: 36, Neg. LLF: 168.33799905224737
Iteration: 5, Func. Count: 45, Neg. LLF: 163.79257030762426
Iteration: 6, Func. Count: 53, Neg. LLF: 163.68403285316052
Iteration: 7, Func. Count: 61, Neg. LLF: 163.66211485176515
Iteration: 8, Func. Count: 69, Neg. LLF: 163.6537810103337
Iteration: 9, Func. Count: 77, Neg. LLF: 163.65053872845078
Iteration: 10, Func. Count: 85, Neg. LLF: 163.65017174587013
Iteration: 11, Func. Count: 93, Neg. LLF: 163.64994866589745
Iteration: 12, Func. Count: 101, Neg. LLF: 163.64960592223403
Iteration: 13, Func. Count: 109, Neg. LLF: 163.6488933847038
Iteration: 14, Func. Count: 117, Neg. LLF: 163.64817912318193
Iteration: 15, Func. Count: 125, Neg. LLF: 163.64781843092882
Iteration: 16, Func. Count: 133, Neg. LLF: 163.64775552631593
Iteration: 17, Func. Count: 141, Neg. LLF: 163.6477524140949
Iteration: 18, Func. Count: 148, Neg. LLF: 163.64775241409563
Optimization terminated successfully (Exit mode 0)
Current function value: 163.6477524140949
Iterations: 18
Function evaluations: 148
Gradient evaluations: 18
Iteration: 1, Func. Count: 10, Neg. LLF: 286.4518445266179
Iteration: 2, Func. Count: 20, Neg. LLF: 272.86577178489233
Iteration: 3, Func. Count: 30, Neg. LLF: 170.26802667621715
Iteration: 4, Func. Count: 40, Neg. LLF: 178.55006617097447
Iteration: 5, Func. Count: 50, Neg. LLF: 163.0378233095971
Iteration: 6, Func. Count: 59, Neg. LLF: 162.80117330701842
Iteration: 7, Func. Count: 68, Neg. LLF: 162.74755375025083
Iteration: 8, Func. Count: 77, Neg. LLF: 162.7058136837862
Iteration: 9, Func. Count: 86, Neg. LLF: 162.6485296906331
Iteration: 10, Func. Count: 95, Neg. LLF: 162.62587457122473
Iteration: 11, Func. Count: 104, Neg. LLF: 162.61621516590205
Iteration: 12, Func. Count: 113, Neg. LLF: 162.61211026067915
Iteration: 13, Func. Count: 122, Neg. LLF: 162.60700755346832
Iteration: 14, Func. Count: 131, Neg. LLF: 162.5919340406294
Iteration: 15, Func. Count: 140, Neg. LLF: 162.58609154825342
Iteration: 16, Func. Count: 149, Neg. LLF: 162.58387571428852
Iteration: 17, Func. Count: 158, Neg. LLF: 162.58380817978073
Iteration: 18, Func. Count: 167, Neg. LLF: 162.5838053845951
Iteration: 19, Func. Count: 175, Neg. LLF: 162.58380536721393
Optimization terminated successfully (Exit mode 0)
Current function value: 162.5838053845951
Iterations: 19
Function evaluations: 175
Gradient evaluations: 19
Iteration: 1, Func. Count: 11, Neg. LLF: 187.3208289488422
Iteration: 2, Func. Count: 22, Neg. LLF: 187.94912595704642
Iteration: 3, Func. Count: 33, Neg. LLF: 235.96196577794444
Iteration: 4, Func. Count: 44, Neg. LLF: 165.2561020428459
Iteration: 5, Func. Count: 55, Neg. LLF: 163.21324945122618
Iteration: 6, Func. Count: 66, Neg. LLF: 162.846665180799
Iteration: 7, Func. Count: 77, Neg. LLF: 163.05939470415942
Iteration: 8, Func. Count: 88, Neg. LLF: 162.65320213272392
Iteration: 9, Func. Count: 98, Neg. LLF: 162.61187921687522
Iteration: 10, Func. Count: 108, Neg. LLF: 162.63451868095098
Iteration: 11, Func. Count: 119, Neg. LLF: 162.588912288724
Iteration: 12, Func. Count: 129, Neg. LLF: 162.53627332492488
Iteration: 13, Func. Count: 139, Neg. LLF: 162.50883506846012
Iteration: 14, Func. Count: 149, Neg. LLF: 162.49728055608003
Iteration: 15, Func. Count: 159, Neg. LLF: 162.49676110607484
Iteration: 16, Func. Count: 169, Neg. LLF: 162.4966687288014
Iteration: 17, Func. Count: 179, Neg. LLF: 162.4966589174723
Iteration: 18, Func. Count: 188, Neg. LLF: 162.49665889236542
Optimization terminated successfully (Exit mode 0)
Current function value: 162.4966589174723
Iterations: 18
Function evaluations: 188
Gradient evaluations: 18
Iteration: 1, Func. Count: 12, Neg. LLF: 181.72084571870215
Iteration: 2, Func. Count: 24, Neg. LLF: 186.712430011446
Iteration: 3, Func. Count: 36, Neg. LLF: 207.97657209434357
Iteration: 4, Func. Count: 48, Neg. LLF: 167.65373790144187
Iteration: 5, Func. Count: 60, Neg. LLF: 162.4612335849829
Iteration: 6, Func. Count: 71, Neg. LLF: 165.7223009924955
Iteration: 7, Func. Count: 83, Neg. LLF: 162.68139235281987
Iteration: 8, Func. Count: 95, Neg. LLF: 161.7849965955544
Iteration: 9, Func. Count: 106, Neg. LLF: 162.1865480259549
Iteration: 10, Func. Count: 118, Neg. LLF: 161.75574327982565
Iteration: 11, Func. Count: 129, Neg. LLF: 161.74490463886318
Iteration: 12, Func. Count: 140, Neg. LLF: 161.72853886109976
Iteration: 13, Func. Count: 151, Neg. LLF: 161.70715785928618
Iteration: 14, Func. Count: 162, Neg. LLF: 161.6874103480887
Iteration: 15, Func. Count: 173, Neg. LLF: 161.67152186001425
Iteration: 16, Func. Count: 184, Neg. LLF: 161.6699742842693
Iteration: 17, Func. Count: 195, Neg. LLF: 161.66991400648766
Iteration: 18, Func. Count: 206, Neg. LLF: 161.66991319657023
Optimization terminated successfully (Exit mode 0)
Current function value: 161.66991319657023
Iterations: 18
Function evaluations: 206
Gradient evaluations: 18
Iteration: 1, Func. Count: 13, Neg. LLF: 179.480702359334
Iteration: 2, Func. Count: 26, Neg. LLF: 198.1007335888663
Iteration: 3, Func. Count: 39, Neg. LLF: 188.95547949733222
Iteration: 4, Func. Count: 52, Neg. LLF: 183.17067869407015
Iteration: 5, Func. Count: 65, Neg. LLF: 162.66281919263025
Iteration: 6, Func. Count: 77, Neg. LLF: 163.5161959027259
Iteration: 7, Func. Count: 90, Neg. LLF: 170.55123177973
Iteration: 8, Func. Count: 103, Neg. LLF: 162.5792833047953
Iteration: 9, Func. Count: 116, Neg. LLF: 161.75379607085827
Iteration: 10, Func. Count: 128, Neg. LLF: 161.71536777722957
Iteration: 11, Func. Count: 140, Neg. LLF: 161.6929564281731
Iteration: 12, Func. Count: 152, Neg. LLF: 161.6827384538669
Iteration: 13, Func. Count: 164, Neg. LLF: 161.67261747354863
Iteration: 14, Func. Count: 176, Neg. LLF: 161.65775570629611
Iteration: 15, Func. Count: 188, Neg. LLF: 161.63978327826862
Iteration: 16, Func. Count: 200, Neg. LLF: 161.63614420589653
Iteration: 17, Func. Count: 212, Neg. LLF: 161.6346176361675
Iteration: 18, Func. Count: 224, Neg. LLF: 161.63457446202406
Iteration: 19, Func. Count: 236, Neg. LLF: 161.6345646642612
Iteration: 20, Func. Count: 247, Neg. LLF: 161.6345646577693
Optimization terminated successfully (Exit mode 0)
Current function value: 161.6345646642612
Iterations: 20
Function evaluations: 247
Gradient evaluations: 20
Iteration: 1, Func. Count: 10, Neg. LLF: 170.30231654317728
Iteration: 2, Func. Count: 20, Neg. LLF: 166.77925321910254
Iteration: 3, Func. Count: 30, Neg. LLF: 165.11787869671386
Iteration: 4, Func. Count: 40, Neg. LLF: 166.88001899798778
Iteration: 5, Func. Count: 50, Neg. LLF: 163.77658020657444
Iteration: 6, Func. Count: 59, Neg. LLF: 163.6885053652359
Iteration: 7, Func. Count: 68, Neg. LLF: 163.6713746666949
Iteration: 8, Func. Count: 77, Neg. LLF: 163.6597355601914
Iteration: 9, Func. Count: 86, Neg. LLF: 163.65020755885442
Iteration: 10, Func. Count: 95, Neg. LLF: 163.64982447657482
Iteration: 11, Func. Count: 104, Neg. LLF: 163.6496808428139
Iteration: 12, Func. Count: 113, Neg. LLF: 163.64919443705784
Iteration: 13, Func. Count: 122, Neg. LLF: 163.64861857189854
Iteration: 14, Func. Count: 131, Neg. LLF: 163.6480096087611
Iteration: 15, Func. Count: 140, Neg. LLF: 163.64778483324997
Iteration: 16, Func. Count: 149, Neg. LLF: 163.64775331657196
Iteration: 17, Func. Count: 158, Neg. LLF: 163.64775238461542
Optimization terminated successfully (Exit mode 0)
Current function value: 163.64775238461542
Iterations: 17
Function evaluations: 158
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 285.5564926397523
Iteration: 2, Func. Count: 22, Neg. LLF: 362.1784016578118
Iteration: 3, Func. Count: 33, Neg. LLF: 170.83537935678302
Iteration: 4, Func. Count: 44, Neg. LLF: 164.5362492524291
Iteration: 5, Func. Count: 55, Neg. LLF: 165.47959387434489
Iteration: 6, Func. Count: 66, Neg. LLF: 162.89268833984548
Iteration: 7, Func. Count: 76, Neg. LLF: 162.7365460847916
Iteration: 8, Func. Count: 86, Neg. LLF: 163.427011109476
Iteration: 9, Func. Count: 97, Neg. LLF: 162.63311952988374
Iteration: 10, Func. Count: 107, Neg. LLF: 162.61147501888826
Iteration: 11, Func. Count: 117, Neg. LLF: 162.60636288280628
Iteration: 12, Func. Count: 127, Neg. LLF: 162.60361307803655
Iteration: 13, Func. Count: 137, Neg. LLF: 162.59433734793302
Iteration: 14, Func. Count: 147, Neg. LLF: 162.588418274841
Iteration: 15, Func. Count: 157, Neg. LLF: 162.58436303855265
Iteration: 16, Func. Count: 167, Neg. LLF: 162.58382181575394
Iteration: 17, Func. Count: 177, Neg. LLF: 162.5838052891069
Iteration: 18, Func. Count: 186, Neg. LLF: 162.58380527174245
Optimization terminated successfully (Exit mode 0)
Current function value: 162.5838052891069
Iterations: 18
Function evaluations: 186
Gradient evaluations: 18
Iteration: 1, Func. Count: 12, Neg. LLF: 188.31860817232445
Iteration: 2, Func. Count: 24, Neg. LLF: 187.7404759803265
Iteration: 3, Func. Count: 36, Neg. LLF: 200.6569805659596
Iteration: 4, Func. Count: 48, Neg. LLF: 168.04380611255698
Iteration: 5, Func. Count: 60, Neg. LLF: 163.90341997266597
Iteration: 6, Func. Count: 72, Neg. LLF: 162.8461232099086
Iteration: 7, Func. Count: 83, Neg. LLF: 163.1195618818001
Iteration: 8, Func. Count: 95, Neg. LLF: 162.77941989302306
Iteration: 9, Func. Count: 107, Neg. LLF: 162.6988446270154
Iteration: 10, Func. Count: 119, Neg. LLF: 162.60135318090698
Iteration: 11, Func. Count: 130, Neg. LLF: 162.58183020506834
Iteration: 12, Func. Count: 141, Neg. LLF: 162.55427356808062
Iteration: 13, Func. Count: 152, Neg. LLF: 162.51876832914974
Iteration: 14, Func. Count: 163, Neg. LLF: 162.50130741741273
Iteration: 15, Func. Count: 174, Neg. LLF: 162.4967729169227
Iteration: 16, Func. Count: 185, Neg. LLF: 162.49668367334954
Iteration: 17, Func. Count: 196, Neg. LLF: 162.49666005330732
Iteration: 18, Func. Count: 207, Neg. LLF: 162.49665880370176
Iteration: 19, Func. Count: 217, Neg. LLF: 162.49665877858965
Optimization terminated successfully (Exit mode 0)
Current function value: 162.49665880370176
Iterations: 19
Function evaluations: 217
Gradient evaluations: 19
Iteration: 1, Func. Count: 13, Neg. LLF: 180.72843525047062
Iteration: 2, Func. Count: 26, Neg. LLF: 186.38231357850287
Iteration: 3, Func. Count: 39, Neg. LLF: 197.10637091978174
Iteration: 4, Func. Count: 52, Neg. LLF: 168.31424244173206
Iteration: 5, Func. Count: 65, Neg. LLF: 165.6030563254252
Iteration: 6, Func. Count: 78, Neg. LLF: 166.72399971236396
Iteration: 7, Func. Count: 91, Neg. LLF: 161.82141112656825
Iteration: 8, Func. Count: 103, Neg. LLF: 161.8840698146317
Iteration: 9, Func. Count: 116, Neg. LLF: 161.75287897109052
Iteration: 10, Func. Count: 128, Neg. LLF: 161.74486611858705
Iteration: 11, Func. Count: 140, Neg. LLF: 161.73416783675793
Iteration: 12, Func. Count: 152, Neg. LLF: 161.72058626598874
Iteration: 13, Func. Count: 164, Neg. LLF: 161.68880926686072
Iteration: 14, Func. Count: 176, Neg. LLF: 161.6756783294845
Iteration: 15, Func. Count: 188, Neg. LLF: 161.67072648644512
Iteration: 16, Func. Count: 200, Neg. LLF: 161.66998677165532
Iteration: 17, Func. Count: 212, Neg. LLF: 161.66991451932648
Iteration: 18, Func. Count: 224, Neg. LLF: 161.66991318701946
Iteration: 19, Func. Count: 235, Neg. LLF: 161.66991317659145
Optimization terminated successfully (Exit mode 0)
Current function value: 161.66991318701946
Iterations: 19
Function evaluations: 235
Gradient evaluations: 19
Iteration: 1, Func. Count: 14, Neg. LLF: 178.7890199789448
Iteration: 2, Func. Count: 28, Neg. LLF: 191.86024081485212
Iteration: 3, Func. Count: 42, Neg. LLF: 171.0485136037788
Iteration: 4, Func. Count: 56, Neg. LLF: 184.64634705903487
Iteration: 5, Func. Count: 70, Neg. LLF: 161.94456249029793
Iteration: 6, Func. Count: 83, Neg. LLF: 162.7769480716794
Iteration: 7, Func. Count: 97, Neg. LLF: 163.717610167972
Iteration: 8, Func. Count: 111, Neg. LLF: 161.91479828944668
Iteration: 9, Func. Count: 125, Neg. LLF: 161.7117693967291
Iteration: 10, Func. Count: 138, Neg. LLF: 161.7046257452654
Iteration: 11, Func. Count: 151, Neg. LLF: 161.67209874136944
Iteration: 12, Func. Count: 164, Neg. LLF: 161.64984977478818
Iteration: 13, Func. Count: 177, Neg. LLF: 161.63984674476796
Iteration: 14, Func. Count: 190, Neg. LLF: 161.63576769000352
Iteration: 15, Func. Count: 203, Neg. LLF: 161.63466391463746
Iteration: 16, Func. Count: 216, Neg. LLF: 161.63457651530967
Iteration: 17, Func. Count: 229, Neg. LLF: 161.6345649684235
Iteration: 18, Func. Count: 241, Neg. LLF: 161.634564961979
Optimization terminated successfully (Exit mode 0)
Current function value: 161.6345649684235
Iterations: 18
Function evaluations: 241
Gradient evaluations: 18
Iteration: 1, Func. Count: 7, Neg. LLF: 169.78030181794665
Iteration: 2, Func. Count: 14, Neg. LLF: 169.00491821004968
Iteration: 3, Func. Count: 22, Neg. LLF: 166.39750997867668
Iteration: 4, Func. Count: 28, Neg. LLF: 166.00109633014225
Iteration: 5, Func. Count: 34, Neg. LLF: 165.91981255427407
Iteration: 6, Func. Count: 40, Neg. LLF: 165.42724149263265
Iteration: 7, Func. Count: 46, Neg. LLF: 163.18478447535978
Iteration: 8, Func. Count: 52, Neg. LLF: 2052.5079480715817
Iteration: 9, Func. Count: 59, Neg. LLF: 162.33427359038632
Iteration: 10, Func. Count: 65, Neg. LLF: 162.44170572114413
Iteration: 11, Func. Count: 72, Neg. LLF: 162.24735911851644
Iteration: 12, Func. Count: 78, Neg. LLF: 162.22192287046252
Iteration: 13, Func. Count: 84, Neg. LLF: 162.22142337808015
Iteration: 14, Func. Count: 90, Neg. LLF: 162.2213519449752
Iteration: 15, Func. Count: 96, Neg. LLF: 162.22134307152282
Iteration: 16, Func. Count: 101, Neg. LLF: 162.2213430630796
Optimization terminated successfully (Exit mode 0)
Current function value: 162.22134307152282
Iterations: 16
Function evaluations: 101
Gradient evaluations: 16
Iteration: 1, Func. Count: 8, Neg. LLF: 184.93050993351125
Iteration: 2, Func. Count: 16, Neg. LLF: 368.25428681427223
Iteration: 3, Func. Count: 24, Neg. LLF: 164.4160979701803
Iteration: 4, Func. Count: 32, Neg. LLF: 162.5314576767107
Iteration: 5, Func. Count: 39, Neg. LLF: 163.32158253139357
Iteration: 6, Func. Count: 47, Neg. LLF: 162.22293838766774
Iteration: 7, Func. Count: 54, Neg. LLF: 162.22234188389433
Iteration: 8, Func. Count: 61, Neg. LLF: 162.22205192951915
Iteration: 9, Func. Count: 68, Neg. LLF: 162.22166781811836
Iteration: 10, Func. Count: 75, Neg. LLF: 162.22141211778086
Iteration: 11, Func. Count: 82, Neg. LLF: 162.22134850393385
Iteration: 12, Func. Count: 89, Neg. LLF: 162.22134321466262
Iteration: 13, Func. Count: 95, Neg. LLF: 162.221343248874
Optimization terminated successfully (Exit mode 0)
Current function value: 162.22134321466262
Iterations: 13
Function evaluations: 95
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 184.27048938969816
Iteration: 2, Func. Count: 18, Neg. LLF: 229.3441137823976
Iteration: 3, Func. Count: 27, Neg. LLF: 175.77046595705
Iteration: 4, Func. Count: 36, Neg. LLF: 162.8100392663485
Iteration: 5, Func. Count: 44, Neg. LLF: 162.29727257170862
Iteration: 6, Func. Count: 52, Neg. LLF: 162.23292274479596
Iteration: 7, Func. Count: 60, Neg. LLF: 162.22357866858272
Iteration: 8, Func. Count: 68, Neg. LLF: 162.22236891200745
Iteration: 9, Func. Count: 76, Neg. LLF: 162.2220649792668
Iteration: 10, Func. Count: 84, Neg. LLF: 162.22175242949666
Iteration: 11, Func. Count: 92, Neg. LLF: 162.22145258528994
Iteration: 12, Func. Count: 100, Neg. LLF: 162.2213545345989
Iteration: 13, Func. Count: 108, Neg. LLF: 162.2213433773682
Iteration: 14, Func. Count: 115, Neg. LLF: 162.22134341291604
Optimization terminated successfully (Exit mode 0)
Current function value: 162.2213433773682
Iterations: 14
Function evaluations: 115
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 183.77363144248972
Iteration: 2, Func. Count: 20, Neg. LLF: 198.2643640652697
Iteration: 3, Func. Count: 30, Neg. LLF: 166.05103433888095
Iteration: 4, Func. Count: 40, Neg. LLF: 162.62768313302598
Iteration: 5, Func. Count: 49, Neg. LLF: 162.49317013174098
Iteration: 6, Func. Count: 58, Neg. LLF: 162.30626884962322
Iteration: 7, Func. Count: 67, Neg. LLF: 162.2648132800959
Iteration: 8, Func. Count: 76, Neg. LLF: 162.25371606849993
Iteration: 9, Func. Count: 85, Neg. LLF: 162.2370637859118
Iteration: 10, Func. Count: 94, Neg. LLF: 162.2319459179118
Iteration: 11, Func. Count: 103, Neg. LLF: 162.22137300778044
Iteration: 12, Func. Count: 112, Neg. LLF: 162.22134334287517
Iteration: 13, Func. Count: 120, Neg. LLF: 162.22134333681132
Optimization terminated successfully (Exit mode 0)
Current function value: 162.22134334287517
Iterations: 13
Function evaluations: 120
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 169.53898194979772
Iteration: 2, Func. Count: 22, Neg. LLF: 165.2801120825895
Iteration: 3, Func. Count: 32, Neg. LLF: 163.74147966933327
Iteration: 4, Func. Count: 42, Neg. LLF: 163.80573718545742
Iteration: 5, Func. Count: 53, Neg. LLF: 163.65688732216296
Iteration: 6, Func. Count: 63, Neg. LLF: 163.32061324876514
Iteration: 7, Func. Count: 73, Neg. LLF: 170.1785557054329
Iteration: 8, Func. Count: 84, Neg. LLF: 255.0017985982376
Iteration: 9, Func. Count: 95, Neg. LLF: 165.66100262167785
Iteration: 10, Func. Count: 106, Neg. LLF: 162.94098350856268
Iteration: 11, Func. Count: 117, Neg. LLF: 162.0750237847695
Iteration: 12, Func. Count: 127, Neg. LLF: 162.0510499033908
Iteration: 13, Func. Count: 137, Neg. LLF: 162.0497903322101
Iteration: 14, Func. Count: 148, Neg. LLF: 162.03970974004514
Iteration: 15, Func. Count: 158, Neg. LLF: 162.03948269484854
Iteration: 16, Func. Count: 168, Neg. LLF: 162.0391841179624
Iteration: 17, Func. Count: 178, Neg. LLF: 162.03917914995097
Iteration: 18, Func. Count: 187, Neg. LLF: 162.03917914000667
Optimization terminated successfully (Exit mode 0)
Current function value: 162.03917914995097
Iterations: 18
Function evaluations: 187
Gradient evaluations: 18
Iteration: 1, Func. Count: 8, Neg. LLF: 169.72544227726135
Iteration: 2, Func. Count: 16, Neg. LLF: 168.97931125739655
Iteration: 3, Func. Count: 25, Neg. LLF: 166.37315674459308
Iteration: 4, Func. Count: 32, Neg. LLF: 171.83478006296525
Iteration: 5, Func. Count: 40, Neg. LLF: 166.07256214306437
Iteration: 6, Func. Count: 47, Neg. LLF: 165.9545373664049
Iteration: 7, Func. Count: 54, Neg. LLF: 165.77152506337248
Iteration: 8, Func. Count: 61, Neg. LLF: 164.8423292009781
Iteration: 9, Func. Count: 68, Neg. LLF: 163.69407963794356
Iteration: 10, Func. Count: 75, Neg. LLF: 163.38674153269906
Iteration: 11, Func. Count: 83, Neg. LLF: 162.47662651036734
Iteration: 12, Func. Count: 90, Neg. LLF: 162.15387104607245
Iteration: 13, Func. Count: 97, Neg. LLF: 162.0868876221728
Iteration: 14, Func. Count: 104, Neg. LLF: 162.0677863170042
Iteration: 15, Func. Count: 111, Neg. LLF: 162.0651894653002
Iteration: 16, Func. Count: 118, Neg. LLF: 162.0646450968645
Iteration: 17, Func. Count: 125, Neg. LLF: 162.06463839983334
Iteration: 18, Func. Count: 131, Neg. LLF: 162.06463839608602
Optimization terminated successfully (Exit mode 0)
Current function value: 162.06463839983334
Iterations: 18
Function evaluations: 131
Gradient evaluations: 18
Iteration: 1, Func. Count: 9, Neg. LLF: 169.80647592824891
Iteration: 2, Func. Count: 18, Neg. LLF: 168.0667315786641
Iteration: 3, Func. Count: 27, Neg. LLF: 163.2166764529586
Iteration: 4, Func. Count: 35, Neg. LLF: 162.7028713357989
Iteration: 5, Func. Count: 44, Neg. LLF: 162.57910960654965
Iteration: 6, Func. Count: 53, Neg. LLF: 162.09490479774166
Iteration: 7, Func. Count: 61, Neg. LLF: 162.1928134617183
Iteration: 8, Func. Count: 70, Neg. LLF: 162.08752416139473
Iteration: 9, Func. Count: 78, Neg. LLF: 162.0763202426394
Iteration: 10, Func. Count: 86, Neg. LLF: 162.07074034713335
Iteration: 11, Func. Count: 94, Neg. LLF: 162.066203814203
Iteration: 12, Func. Count: 102, Neg. LLF: 162.0649577035737
Iteration: 13, Func. Count: 110, Neg. LLF: 162.06464102918505
Iteration: 14, Func. Count: 118, Neg. LLF: 162.06463823224777
Iteration: 15, Func. Count: 125, Neg. LLF: 162.06463828778743
Optimization terminated successfully (Exit mode 0)
Current function value: 162.06463823224777
Iterations: 15
Function evaluations: 125
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 183.43349081722286
Iteration: 2, Func. Count: 20, Neg. LLF: 237.52954290048453
Iteration: 3, Func. Count: 30, Neg. LLF: 162.44560608965335
Iteration: 4, Func. Count: 39, Neg. LLF: 164.77458168183202
Iteration: 5, Func. Count: 50, Neg. LLF: 164.00075466350438
Iteration: 6, Func. Count: 60, Neg. LLF: 162.0965440566723
Iteration: 7, Func. Count: 69, Neg. LLF: 162.0737979708897
Iteration: 8, Func. Count: 78, Neg. LLF: 162.07197316200828
Iteration: 9, Func. Count: 87, Neg. LLF: 162.0661692036823
Iteration: 10, Func. Count: 96, Neg. LLF: 162.06495330373113
Iteration: 11, Func. Count: 105, Neg. LLF: 162.0646461801928
Iteration: 12, Func. Count: 114, Neg. LLF: 162.06463845365337
Iteration: 13, Func. Count: 122, Neg. LLF: 162.06463852310242
Optimization terminated successfully (Exit mode 0)
Current function value: 162.06463845365337
Iterations: 13
Function evaluations: 122
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 183.22066620944568
Iteration: 2, Func. Count: 22, Neg. LLF: 198.41716551617893
Iteration: 3, Func. Count: 33, Neg. LLF: 162.6765260517424
Iteration: 4, Func. Count: 43, Neg. LLF: 164.8452895588214
Iteration: 5, Func. Count: 55, Neg. LLF: 167.88441330483275
Iteration: 6, Func. Count: 66, Neg. LLF: 162.3174465901937
Iteration: 7, Func. Count: 77, Neg. LLF: 162.12087488611147
Iteration: 8, Func. Count: 87, Neg. LLF: 162.06636654519315
Iteration: 9, Func. Count: 97, Neg. LLF: 162.06478758187978
Iteration: 10, Func. Count: 107, Neg. LLF: 162.0644192687591
Iteration: 11, Func. Count: 117, Neg. LLF: 162.06378555285193
Iteration: 12, Func. Count: 127, Neg. LLF: 162.06338914531062
Iteration: 13, Func. Count: 137, Neg. LLF: 162.0632790983217
Iteration: 14, Func. Count: 147, Neg. LLF: 162.0632704606487
Iteration: 15, Func. Count: 156, Neg. LLF: 162.06327045276083
Optimization terminated successfully (Exit mode 0)
Current function value: 162.0632704606487
Iterations: 15
Function evaluations: 156
Gradient evaluations: 15
Iteration: 1, Func. Count: 12, Neg. LLF: 183.06539625149242
Iteration: 2, Func. Count: 24, Neg. LLF: 194.86209048811867
Iteration: 3, Func. Count: 36, Neg. LLF: 163.68106393719475
Iteration: 4, Func. Count: 47, Neg. LLF: 162.9505117291633
Iteration: 5, Func. Count: 58, Neg. LLF: 171.41748464605632
Iteration: 6, Func. Count: 71, Neg. LLF: 171.06853418445624
Iteration: 7, Func. Count: 83, Neg. LLF: 162.32696296532387
Iteration: 8, Func. Count: 95, Neg. LLF: 162.06035892114997
Iteration: 9, Func. Count: 106, Neg. LLF: 162.0473212126583
Iteration: 10, Func. Count: 117, Neg. LLF: 162.0378148831509
Iteration: 11, Func. Count: 128, Neg. LLF: 162.0323591027201
Iteration: 12, Func. Count: 139, Neg. LLF: 162.02975091192386
Iteration: 13, Func. Count: 150, Neg. LLF: 162.02887444501303
Iteration: 14, Func. Count: 161, Neg. LLF: 162.0285690383077
Iteration: 15, Func. Count: 172, Neg. LLF: 162.0285600919133
Iteration: 16, Func. Count: 182, Neg. LLF: 162.0285600830752
Optimization terminated successfully (Exit mode 0)
Current function value: 162.0285600919133
Iterations: 16
Function evaluations: 182
Gradient evaluations: 16
Iteration: 1, Func. Count: 9, Neg. LLF: 168.2273575333238
Iteration: 2, Func. Count: 18, Neg. LLF: 169.03804609182612
Iteration: 3, Func. Count: 28, Neg. LLF: 165.2834007837764
Iteration: 4, Func. Count: 37, Neg. LLF: 163.8524693841596
Iteration: 5, Func. Count: 45, Neg. LLF: 166.18264034728
Iteration: 6, Func. Count: 54, Neg. LLF: 163.9217074872346
Iteration: 7, Func. Count: 63, Neg. LLF: 163.6344188978289
Iteration: 8, Func. Count: 71, Neg. LLF: 163.5351705635933
Iteration: 9, Func. Count: 79, Neg. LLF: 163.41952813370386
Iteration: 10, Func. Count: 87, Neg. LLF: 163.21056676409927
Iteration: 11, Func. Count: 95, Neg. LLF: 162.55646262214572
Iteration: 12, Func. Count: 103, Neg. LLF: 162.1755373151709
Iteration: 13, Func. Count: 111, Neg. LLF: 162.09928894461876
Iteration: 14, Func. Count: 119, Neg. LLF: 162.07086367279874
Iteration: 15, Func. Count: 127, Neg. LLF: 162.05587779095885
Iteration: 16, Func. Count: 135, Neg. LLF: 162.0554478269773
Iteration: 17, Func. Count: 143, Neg. LLF: 162.0553954052955
Iteration: 18, Func. Count: 151, Neg. LLF: 162.0553734565484
Iteration: 19, Func. Count: 159, Neg. LLF: 162.05537209025374
Iteration: 20, Func. Count: 166, Neg. LLF: 162.05537209436838
Optimization terminated successfully (Exit mode 0)
Current function value: 162.05537209025374
Iterations: 20
Function evaluations: 166
Gradient evaluations: 20
Iteration: 1, Func. Count: 10, Neg. LLF: 285.6763466424388
Iteration: 2, Func. Count: 20, Neg. LLF: 277.37777995737173
Iteration: 3, Func. Count: 30, Neg. LLF: 173.53651606544707
Iteration: 4, Func. Count: 40, Neg. LLF: 167.37732101628637
Iteration: 5, Func. Count: 50, Neg. LLF: 162.71199068472816
Iteration: 6, Func. Count: 59, Neg. LLF: 162.59428959928437
Iteration: 7, Func. Count: 69, Neg. LLF: 163.18349032187686
Iteration: 8, Func. Count: 79, Neg. LLF: 162.15659245853
Iteration: 9, Func. Count: 89, Neg. LLF: 162.08403286433798
Iteration: 10, Func. Count: 98, Neg. LLF: 162.07358946801637
Iteration: 11, Func. Count: 107, Neg. LLF: 162.06180620705527
Iteration: 12, Func. Count: 116, Neg. LLF: 162.06055042873714
Iteration: 13, Func. Count: 125, Neg. LLF: 162.05849866899413
Iteration: 14, Func. Count: 134, Neg. LLF: 162.0572377621845
Iteration: 15, Func. Count: 143, Neg. LLF: 162.05574105556505
Iteration: 16, Func. Count: 152, Neg. LLF: 162.05540511857498
Iteration: 17, Func. Count: 161, Neg. LLF: 162.05537255810844
Iteration: 18, Func. Count: 169, Neg. LLF: 162.05537261603908
Optimization terminated successfully (Exit mode 0)
Current function value: 162.05537255810844
Iterations: 18
Function evaluations: 169
Gradient evaluations: 18
Iteration: 1, Func. Count: 11, Neg. LLF: 202.31950474634226
Iteration: 2, Func. Count: 22, Neg. LLF: 240.52536219953632
Iteration: 3, Func. Count: 33, Neg. LLF: 164.77181560094758
Iteration: 4, Func. Count: 44, Neg. LLF: 162.44817385448445
Iteration: 5, Func. Count: 54, Neg. LLF: 163.5516215012668
Iteration: 6, Func. Count: 65, Neg. LLF: 164.27044218282524
Iteration: 7, Func. Count: 76, Neg. LLF: 162.11279243653775
Iteration: 8, Func. Count: 86, Neg. LLF: 162.0843288952576
Iteration: 9, Func. Count: 96, Neg. LLF: 162.0795884030735
Iteration: 10, Func. Count: 106, Neg. LLF: 162.0723116271492
Iteration: 11, Func. Count: 116, Neg. LLF: 162.05973578253474
Iteration: 12, Func. Count: 126, Neg. LLF: 162.05603521799614
Iteration: 13, Func. Count: 136, Neg. LLF: 162.0554101969472
Iteration: 14, Func. Count: 146, Neg. LLF: 162.0553729820845
Iteration: 15, Func. Count: 156, Neg. LLF: 162.05537207316073
Optimization terminated successfully (Exit mode 0)
Current function value: 162.05537207316073
Iterations: 15
Function evaluations: 156
Gradient evaluations: 15
Iteration: 1, Func. Count: 12, Neg. LLF: 283.3981663003664
Iteration: 2, Func. Count: 24, Neg. LLF: 256.7280210765967
Iteration: 3, Func. Count: 36, Neg. LLF: 169.8435158491506
Iteration: 4, Func. Count: 48, Neg. LLF: 162.67662467512594
Iteration: 5, Func. Count: 59, Neg. LLF: 163.1342715028838
Iteration: 6, Func. Count: 71, Neg. LLF: 162.96294149174187
Iteration: 7, Func. Count: 83, Neg. LLF: 163.16656469800094
Iteration: 8, Func. Count: 95, Neg. LLF: 162.08094030549182
Iteration: 9, Func. Count: 106, Neg. LLF: 162.07083236821887
Iteration: 10, Func. Count: 117, Neg. LLF: 162.064249556565
Iteration: 11, Func. Count: 128, Neg. LLF: 162.06146269737317
Iteration: 12, Func. Count: 139, Neg. LLF: 162.0521750749194
Iteration: 13, Func. Count: 150, Neg. LLF: 162.05118772418132
Iteration: 14, Func. Count: 161, Neg. LLF: 162.05099852953626
Iteration: 15, Func. Count: 172, Neg. LLF: 162.05092946485127
Iteration: 16, Func. Count: 183, Neg. LLF: 162.0509192428031
Iteration: 17, Func. Count: 194, Neg. LLF: 162.05091779966216
Iteration: 18, Func. Count: 204, Neg. LLF: 162.05091779058594
Optimization terminated successfully (Exit mode 0)
Current function value: 162.05091779966216
Iterations: 18
Function evaluations: 204
Gradient evaluations: 18
Iteration: 1, Func. Count: 13, Neg. LLF: 282.74071987975
Iteration: 2, Func. Count: 26, Neg. LLF: 177.72024808000324
Iteration: 3, Func. Count: 39, Neg. LLF: 163.4198001738649
Iteration: 4, Func. Count: 51, Neg. LLF: 162.98180969275936
Iteration: 5, Func. Count: 64, Neg. LLF: 167.3047395386292
Iteration: 6, Func. Count: 77, Neg. LLF: 162.19475888456677
Iteration: 7, Func. Count: 89, Neg. LLF: 162.12712672389407
Iteration: 8, Func. Count: 101, Neg. LLF: 162.09824439110994
Iteration: 9, Func. Count: 113, Neg. LLF: 168.9908138283091
Iteration: 10, Func. Count: 127, Neg. LLF: 162.076693620313
Iteration: 11, Func. Count: 139, Neg. LLF: 162.06785712165774
Iteration: 12, Func. Count: 151, Neg. LLF: 162.05100068596718
Iteration: 13, Func. Count: 163, Neg. LLF: 162.04155073026223
Iteration: 14, Func. Count: 175, Neg. LLF: 162.03229605344697
Iteration: 15, Func. Count: 187, Neg. LLF: 162.02824068910974
Iteration: 16, Func. Count: 199, Neg. LLF: 162.02689661699085
Iteration: 17, Func. Count: 211, Neg. LLF: 162.02644738792904
Iteration: 18, Func. Count: 223, Neg. LLF: 162.0263497146405
Iteration: 19, Func. Count: 235, Neg. LLF: 162.02634517655582
Iteration: 20, Func. Count: 246, Neg. LLF: 162.02634516751283
Optimization terminated successfully (Exit mode 0)
Current function value: 162.02634517655582
Iterations: 20
Function evaluations: 246
Gradient evaluations: 20
Iteration: 1, Func. Count: 10, Neg. LLF: 166.29755529926553
Iteration: 2, Func. Count: 20, Neg. LLF: 168.1411576637918
Iteration: 3, Func. Count: 31, Neg. LLF: 170.90417919067463
Iteration: 4, Func. Count: 41, Neg. LLF: 169.04177369834767
Iteration: 5, Func. Count: 51, Neg. LLF: 163.76555182484833
Iteration: 6, Func. Count: 61, Neg. LLF: 162.70850517016683
Iteration: 7, Func. Count: 70, Neg. LLF: 162.66632571226873
Iteration: 8, Func. Count: 79, Neg. LLF: 162.63651090774724
Iteration: 9, Func. Count: 88, Neg. LLF: 162.53381763643344
Iteration: 10, Func. Count: 97, Neg. LLF: 162.4125861549717
Iteration: 11, Func. Count: 106, Neg. LLF: 162.15700417691073
Iteration: 12, Func. Count: 115, Neg. LLF: 161.88722545789952
Iteration: 13, Func. Count: 124, Neg. LLF: 161.76286713903096
Iteration: 14, Func. Count: 133, Neg. LLF: 161.7502150935741
Iteration: 15, Func. Count: 142, Neg. LLF: 161.7488676362089
Iteration: 16, Func. Count: 151, Neg. LLF: 161.74877493870576
Iteration: 17, Func. Count: 160, Neg. LLF: 161.74875038549416
Iteration: 18, Func. Count: 169, Neg. LLF: 161.74874957067127
Optimization terminated successfully (Exit mode 0)
Current function value: 161.74874957067127
Iterations: 18
Function evaluations: 169
Gradient evaluations: 18
Iteration: 1, Func. Count: 11, Neg. LLF: 285.6080853291487
Iteration: 2, Func. Count: 22, Neg. LLF: 361.83040033231373
Iteration: 3, Func. Count: 33, Neg. LLF: 170.02018229123254
Iteration: 4, Func. Count: 44, Neg. LLF: 165.88153972682144
Iteration: 5, Func. Count: 55, Neg. LLF: 162.2493649157337
Iteration: 6, Func. Count: 65, Neg. LLF: 167.8657334336276
Iteration: 7, Func. Count: 76, Neg. LLF: 161.83229878750524
Iteration: 8, Func. Count: 86, Neg. LLF: 162.1659235259186
Iteration: 9, Func. Count: 97, Neg. LLF: 161.7786578378198
Iteration: 10, Func. Count: 107, Neg. LLF: 161.7645333117254
Iteration: 11, Func. Count: 117, Neg. LLF: 161.74926145446898
Iteration: 12, Func. Count: 127, Neg. LLF: 161.74907470523476
Iteration: 13, Func. Count: 137, Neg. LLF: 161.74901485323352
Iteration: 14, Func. Count: 147, Neg. LLF: 161.74892034881984
Iteration: 15, Func. Count: 157, Neg. LLF: 161.7488354427424
Iteration: 16, Func. Count: 167, Neg. LLF: 161.74877552670566
Iteration: 17, Func. Count: 177, Neg. LLF: 161.74875418095337
Iteration: 18, Func. Count: 187, Neg. LLF: 161.748749908
Iteration: 19, Func. Count: 196, Neg. LLF: 161.74874995564775
Optimization terminated successfully (Exit mode 0)
Current function value: 161.748749908
Iterations: 19
Function evaluations: 196
Gradient evaluations: 19
Iteration: 1, Func. Count: 12, Neg. LLF: 284.6534826635199
Iteration: 2, Func. Count: 24, Neg. LLF: 198.59083874914035
Iteration: 3, Func. Count: 36, Neg. LLF: 168.28157283082476
Iteration: 4, Func. Count: 48, Neg. LLF: 162.30278501214445
Iteration: 5, Func. Count: 59, Neg. LLF: 161.9502100752403
Iteration: 6, Func. Count: 70, Neg. LLF: 167.11338032154364
Iteration: 7, Func. Count: 82, Neg. LLF: 163.26112540594073
Iteration: 8, Func. Count: 94, Neg. LLF: 161.75357015986847
Iteration: 9, Func. Count: 105, Neg. LLF: 161.7508524781334
Iteration: 10, Func. Count: 116, Neg. LLF: 161.75004079571565
Iteration: 11, Func. Count: 127, Neg. LLF: 161.7498599760986
Iteration: 12, Func. Count: 138, Neg. LLF: 161.7494450336204
Iteration: 13, Func. Count: 149, Neg. LLF: 161.74899197014457
Iteration: 14, Func. Count: 160, Neg. LLF: 161.74879176095644
Iteration: 15, Func. Count: 171, Neg. LLF: 161.7487530098735
Iteration: 16, Func. Count: 182, Neg. LLF: 161.74874976275456
Iteration: 17, Func. Count: 192, Neg. LLF: 161.7487497798348
Optimization terminated successfully (Exit mode 0)
Current function value: 161.74874976275456
Iterations: 17
Function evaluations: 192
Gradient evaluations: 17
Iteration: 1, Func. Count: 13, Neg. LLF: 283.7714283333466
Iteration: 2, Func. Count: 26, Neg. LLF: 186.92503255116628
Iteration: 3, Func. Count: 39, Neg. LLF: 296.2221360222239
Iteration: 4, Func. Count: 52, Neg. LLF: 172.881073331288
Iteration: 5, Func. Count: 65, Neg. LLF: 163.66013981731058
Iteration: 6, Func. Count: 78, Neg. LLF: 162.37239356686712
Iteration: 7, Func. Count: 91, Neg. LLF: 162.52286628912586
Iteration: 8, Func. Count: 104, Neg. LLF: 161.63747810310318
Iteration: 9, Func. Count: 116, Neg. LLF: 161.609858623823
Iteration: 10, Func. Count: 128, Neg. LLF: 161.59017748159022
Iteration: 11, Func. Count: 140, Neg. LLF: 161.57318835420207
Iteration: 12, Func. Count: 152, Neg. LLF: 161.56510423113218
Iteration: 13, Func. Count: 164, Neg. LLF: 161.55522526287308
Iteration: 14, Func. Count: 176, Neg. LLF: 161.54924217686627
Iteration: 15, Func. Count: 188, Neg. LLF: 161.54147470019865
Iteration: 16, Func. Count: 200, Neg. LLF: 161.53775780443996
Iteration: 17, Func. Count: 212, Neg. LLF: 161.53645545682554
Iteration: 18, Func. Count: 224, Neg. LLF: 161.5362171331791
Iteration: 19, Func. Count: 236, Neg. LLF: 161.53617446706065
Iteration: 20, Func. Count: 248, Neg. LLF: 161.53617351137663
Optimization terminated successfully (Exit mode 0)
Current function value: 161.53617351137663
Iterations: 20
Function evaluations: 248
Gradient evaluations: 20
Iteration: 1, Func. Count: 14, Neg. LLF: 283.1620661460496
Iteration: 2, Func. Count: 28, Neg. LLF: 182.45703660418346
Iteration: 3, Func. Count: 42, Neg. LLF: 291.2350916399178
Iteration: 4, Func. Count: 56, Neg. LLF: 173.6558367045827
Iteration: 5, Func. Count: 70, Neg. LLF: 167.02872105281241
Iteration: 6, Func. Count: 84, Neg. LLF: 162.02356535065536
Iteration: 7, Func. Count: 97, Neg. LLF: 162.08146528794703
Iteration: 8, Func. Count: 111, Neg. LLF: 162.10304414148706
Iteration: 9, Func. Count: 125, Neg. LLF: 161.847224249043
Iteration: 10, Func. Count: 139, Neg. LLF: 161.5901339130428
Iteration: 11, Func. Count: 152, Neg. LLF: 161.57206261803296
Iteration: 12, Func. Count: 165, Neg. LLF: 161.5627133578287
Iteration: 13, Func. Count: 178, Neg. LLF: 161.53809780251996
Iteration: 14, Func. Count: 191, Neg. LLF: 161.52227726222281
Iteration: 15, Func. Count: 204, Neg. LLF: 161.51585953106547
Iteration: 16, Func. Count: 217, Neg. LLF: 161.50862666526945
Iteration: 17, Func. Count: 230, Neg. LLF: 161.50472195569543
Iteration: 18, Func. Count: 243, Neg. LLF: 161.50370412677847
Iteration: 19, Func. Count: 256, Neg. LLF: 161.50347831886722
Iteration: 20, Func. Count: 269, Neg. LLF: 161.50344616682622
Iteration: 21, Func. Count: 282, Neg. LLF: 161.50344446350297
Iteration: 22, Func. Count: 294, Neg. LLF: 161.50344445148292
Optimization terminated successfully (Exit mode 0)
Current function value: 161.50344446350297
Iterations: 22
Function evaluations: 294
Gradient evaluations: 22
Iteration: 1, Func. Count: 11, Neg. LLF: 167.35697448171211
Iteration: 2, Func. Count: 22, Neg. LLF: 194.53389922364028
Iteration: 3, Func. Count: 33, Neg. LLF: 165.20057361875524
Iteration: 4, Func. Count: 44, Neg. LLF: 168.45214015089047
Iteration: 5, Func. Count: 55, Neg. LLF: 163.81453789643413
Iteration: 6, Func. Count: 66, Neg. LLF: 162.94203318637855
Iteration: 7, Func. Count: 76, Neg. LLF: 162.6740719971223
Iteration: 8, Func. Count: 86, Neg. LLF: 162.63168543602015
Iteration: 9, Func. Count: 96, Neg. LLF: 162.56350221866796
Iteration: 10, Func. Count: 106, Neg. LLF: 162.5154097757651
Iteration: 11, Func. Count: 116, Neg. LLF: 162.3880657448834
Iteration: 12, Func. Count: 126, Neg. LLF: 162.1920544503892
Iteration: 13, Func. Count: 136, Neg. LLF: 161.9433936877953
Iteration: 14, Func. Count: 146, Neg. LLF: 161.7592574512129
Iteration: 15, Func. Count: 156, Neg. LLF: 161.7545061115553
Iteration: 16, Func. Count: 166, Neg. LLF: 161.74985233527386
Iteration: 17, Func. Count: 176, Neg. LLF: 161.74929733853668
Iteration: 18, Func. Count: 186, Neg. LLF: 161.74897486079212
Iteration: 19, Func. Count: 196, Neg. LLF: 161.7487626811712
Iteration: 20, Func. Count: 206, Neg. LLF: 161.74875113104352
Iteration: 21, Func. Count: 216, Neg. LLF: 161.74874993396116
Iteration: 22, Func. Count: 225, Neg. LLF: 161.74875000016021
Optimization terminated successfully (Exit mode 0)
Current function value: 161.74874993396116
Iterations: 22
Function evaluations: 225
Gradient evaluations: 22
Iteration: 1, Func. Count: 12, Neg. LLF: 284.6097482216994
Iteration: 2, Func. Count: 24, Neg. LLF: 295.4861631156418
Iteration: 3, Func. Count: 36, Neg. LLF: 170.6735166362677
Iteration: 4, Func. Count: 48, Neg. LLF: 162.74914234086268
Iteration: 5, Func. Count: 59, Neg. LLF: 162.09642862694338
Iteration: 6, Func. Count: 70, Neg. LLF: 162.6250503973815
Iteration: 7, Func. Count: 82, Neg. LLF: 161.94686473786274
Iteration: 8, Func. Count: 94, Neg. LLF: 161.79632060734744
Iteration: 9, Func. Count: 105, Neg. LLF: 161.75984090858398
Iteration: 10, Func. Count: 116, Neg. LLF: 161.75207287373505
Iteration: 11, Func. Count: 127, Neg. LLF: 161.75018348082497
Iteration: 12, Func. Count: 138, Neg. LLF: 161.74996711027634
Iteration: 13, Func. Count: 149, Neg. LLF: 161.7494041494464
Iteration: 14, Func. Count: 160, Neg. LLF: 161.74899146509978
Iteration: 15, Func. Count: 171, Neg. LLF: 161.7487786225466
Iteration: 16, Func. Count: 182, Neg. LLF: 161.7487510666784
Iteration: 17, Func. Count: 193, Neg. LLF: 161.74874948999087
Iteration: 18, Func. Count: 203, Neg. LLF: 161.7487495376102
Optimization terminated successfully (Exit mode 0)
Current function value: 161.74874948999087
Iterations: 18
Function evaluations: 203
Gradient evaluations: 18
Iteration: 1, Func. Count: 13, Neg. LLF: 283.4296960939022
Iteration: 2, Func. Count: 26, Neg. LLF: 190.6423756538085
Iteration: 3, Func. Count: 39, Neg. LLF: 205.57478157680492
Iteration: 4, Func. Count: 52, Neg. LLF: 166.17767963026387
Iteration: 5, Func. Count: 65, Neg. LLF: 164.1220495190406
Iteration: 6, Func. Count: 78, Neg. LLF: 162.1785405644686
Iteration: 7, Func. Count: 90, Neg. LLF: 161.8035128210626
Iteration: 8, Func. Count: 102, Neg. LLF: 161.75668184802856
Iteration: 9, Func. Count: 114, Neg. LLF: 161.7510634489993
Iteration: 10, Func. Count: 126, Neg. LLF: 161.74998693622092
Iteration: 11, Func. Count: 138, Neg. LLF: 161.74981951307134
Iteration: 12, Func. Count: 150, Neg. LLF: 161.7493553796681
Iteration: 13, Func. Count: 162, Neg. LLF: 161.74907638885736
Iteration: 14, Func. Count: 174, Neg. LLF: 161.74887126294277
Iteration: 15, Func. Count: 186, Neg. LLF: 161.74877381262868
Iteration: 16, Func. Count: 198, Neg. LLF: 161.74875121626943
Iteration: 17, Func. Count: 210, Neg. LLF: 161.74874950861744
Iteration: 18, Func. Count: 221, Neg. LLF: 161.74874952572412
Optimization terminated successfully (Exit mode 0)
Current function value: 161.74874950861744
Iterations: 18
Function evaluations: 221
Gradient evaluations: 18
Iteration: 1, Func. Count: 14, Neg. LLF: 282.34160070514696
Iteration: 2, Func. Count: 28, Neg. LLF: 197.30237666012775
Iteration: 3, Func. Count: 42, Neg. LLF: 193.55277492557823
Iteration: 4, Func. Count: 56, Neg. LLF: 171.08342297187005
Iteration: 5, Func. Count: 70, Neg. LLF: 162.18564920536227
Iteration: 6, Func. Count: 83, Neg. LLF: 162.50591288763107
Iteration: 7, Func. Count: 97, Neg. LLF: 162.7913956053722
Iteration: 8, Func. Count: 111, Neg. LLF: 161.97365871666287
Iteration: 9, Func. Count: 125, Neg. LLF: 161.6064777422265
Iteration: 10, Func. Count: 138, Neg. LLF: 161.59264092672288
Iteration: 11, Func. Count: 151, Neg. LLF: 161.58035494492745
Iteration: 12, Func. Count: 164, Neg. LLF: 161.57172655776608
Iteration: 13, Func. Count: 177, Neg. LLF: 161.55002027567744
Iteration: 14, Func. Count: 190, Neg. LLF: 161.5451749915937
Iteration: 15, Func. Count: 203, Neg. LLF: 161.5376126320221
Iteration: 16, Func. Count: 216, Neg. LLF: 161.5364827654721
Iteration: 17, Func. Count: 229, Neg. LLF: 161.53617853048527
Iteration: 18, Func. Count: 242, Neg. LLF: 161.5361747686256
Iteration: 19, Func. Count: 255, Neg. LLF: 161.53617356586392
Iteration: 20, Func. Count: 267, Neg. LLF: 161.53617355292334
Optimization terminated successfully (Exit mode 0)
Current function value: 161.53617356586392
Iterations: 20
Function evaluations: 267
Gradient evaluations: 20
Iteration: 1, Func. Count: 15, Neg. LLF: 281.6298920863661
Iteration: 2, Func. Count: 30, Neg. LLF: 187.69047352664066
Iteration: 3, Func. Count: 45, Neg. LLF: 190.00276552456887
Iteration: 4, Func. Count: 60, Neg. LLF: 174.42180050640656
Iteration: 5, Func. Count: 75, Neg. LLF: 177.0133762818852
Iteration: 6, Func. Count: 90, Neg. LLF: 162.073317194761
Iteration: 7, Func. Count: 104, Neg. LLF: 161.91001970026227
Iteration: 8, Func. Count: 119, Neg. LLF: 161.7757188377808
Iteration: 9, Func. Count: 134, Neg. LLF: 161.60354137139012
Iteration: 10, Func. Count: 148, Neg. LLF: 161.57948438065011
Iteration: 11, Func. Count: 162, Neg. LLF: 161.58456689147658
Iteration: 12, Func. Count: 177, Neg. LLF: 161.56267356449558
Iteration: 13, Func. Count: 191, Neg. LLF: 161.53471429694198
Iteration: 14, Func. Count: 205, Neg. LLF: 161.5219376665436
Iteration: 15, Func. Count: 219, Neg. LLF: 161.51106537975608
Iteration: 16, Func. Count: 233, Neg. LLF: 161.50729803877354
Iteration: 17, Func. Count: 247, Neg. LLF: 161.5042689389215
Iteration: 18, Func. Count: 261, Neg. LLF: 161.5036365271959
Iteration: 19, Func. Count: 275, Neg. LLF: 161.5034572220987
Iteration: 20, Func. Count: 289, Neg. LLF: 161.50344578424858
Iteration: 21, Func. Count: 303, Neg. LLF: 161.50344448206863
Iteration: 22, Func. Count: 316, Neg. LLF: 161.5034444698856
Optimization terminated successfully (Exit mode 0)
Current function value: 161.50344448206863
Iterations: 22
Function evaluations: 316
Gradient evaluations: 22
Iteration: 1, Func. Count: 8, Neg. LLF: 168.99702132436016
Iteration: 2, Func. Count: 16, Neg. LLF: 169.7083356181739
Iteration: 3, Func. Count: 24, Neg. LLF: 166.55763538539935
Iteration: 4, Func. Count: 31, Neg. LLF: 166.11986515506786
Iteration: 5, Func. Count: 38, Neg. LLF: 166.0448132528232
Iteration: 6, Func. Count: 45, Neg. LLF: 165.93812900010667
Iteration: 7, Func. Count: 52, Neg. LLF: 165.09404581375398
Iteration: 8, Func. Count: 59, Neg. LLF: 163.23085170876206
Iteration: 9, Func. Count: 66, Neg. LLF: 163.0956219594975
Iteration: 10, Func. Count: 74, Neg. LLF: 162.5196461479388
Iteration: 11, Func. Count: 81, Neg. LLF: 162.22454081059652
Iteration: 12, Func. Count: 88, Neg. LLF: 162.22169247055567
Iteration: 13, Func. Count: 95, Neg. LLF: 162.22135465354415
Iteration: 14, Func. Count: 102, Neg. LLF: 162.2213434165711
Iteration: 15, Func. Count: 108, Neg. LLF: 162.2213435027543
Optimization terminated successfully (Exit mode 0)
Current function value: 162.2213434165711
Iterations: 15
Function evaluations: 108
Gradient evaluations: 15
Iteration: 1, Func. Count: 9, Neg. LLF: 184.22714375912693
Iteration: 2, Func. Count: 18, Neg. LLF: 204.19511609429094
Iteration: 3, Func. Count: 27, Neg. LLF: 166.88738076506564
Iteration: 4, Func. Count: 36, Neg. LLF: 162.96023257601775
Iteration: 5, Func. Count: 44, Neg. LLF: 162.60855672612624
Iteration: 6, Func. Count: 52, Neg. LLF: 162.22306666893277
Iteration: 7, Func. Count: 60, Neg. LLF: 162.22235356087748
Iteration: 8, Func. Count: 68, Neg. LLF: 162.22209660426824
Iteration: 9, Func. Count: 76, Neg. LLF: 162.2214958850878
Iteration: 10, Func. Count: 84, Neg. LLF: 162.22136299897218
Iteration: 11, Func. Count: 92, Neg. LLF: 162.22134358687717
Iteration: 12, Func. Count: 99, Neg. LLF: 162.22134362106726
Optimization terminated successfully (Exit mode 0)
Current function value: 162.22134358687717
Iterations: 12
Function evaluations: 99
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 183.46646890661478
Iteration: 2, Func. Count: 20, Neg. LLF: 175.78162097577936
Iteration: 3, Func. Count: 30, Neg. LLF: 188.03969801762153
Iteration: 4, Func. Count: 40, Neg. LLF: 162.95763841748158
Iteration: 5, Func. Count: 49, Neg. LLF: 162.55050828078922
Iteration: 6, Func. Count: 58, Neg. LLF: 163.13614938706644
Iteration: 7, Func. Count: 68, Neg. LLF: 162.4007996469914
Iteration: 8, Func. Count: 78, Neg. LLF: 162.22557686833582
Iteration: 9, Func. Count: 87, Neg. LLF: 162.22151777730394
Iteration: 10, Func. Count: 96, Neg. LLF: 162.2214291474283
Iteration: 11, Func. Count: 105, Neg. LLF: 162.2214137414255
Iteration: 12, Func. Count: 114, Neg. LLF: 162.22137012773
Iteration: 13, Func. Count: 123, Neg. LLF: 162.2213493872223
Iteration: 14, Func. Count: 132, Neg. LLF: 162.2213434398341
Iteration: 15, Func. Count: 140, Neg. LLF: 162.22134347541075
Optimization terminated successfully (Exit mode 0)
Current function value: 162.2213434398341
Iterations: 15
Function evaluations: 140
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 169.5127083707705
Iteration: 2, Func. Count: 22, Neg. LLF: 167.69019808533426
Iteration: 3, Func. Count: 33, Neg. LLF: 163.88505309137435
Iteration: 4, Func. Count: 43, Neg. LLF: 164.21911346351757
Iteration: 5, Func. Count: 54, Neg. LLF: 163.65659257768382
Iteration: 6, Func. Count: 64, Neg. LLF: 163.5959278310561
Iteration: 7, Func. Count: 74, Neg. LLF: 163.39312823808416
Iteration: 8, Func. Count: 84, Neg. LLF: 163.04337583378572
Iteration: 9, Func. Count: 94, Neg. LLF: 162.63091091638412
Iteration: 10, Func. Count: 104, Neg. LLF: 162.28454215167363
Iteration: 11, Func. Count: 114, Neg. LLF: 162.2408874555442
Iteration: 12, Func. Count: 124, Neg. LLF: 162.22260997528548
Iteration: 13, Func. Count: 134, Neg. LLF: 162.22147422750376
Iteration: 14, Func. Count: 144, Neg. LLF: 162.22134464013234
Iteration: 15, Func. Count: 154, Neg. LLF: 162.22134307468312
Iteration: 16, Func. Count: 163, Neg. LLF: 162.22134306867264
Optimization terminated successfully (Exit mode 0)
Current function value: 162.22134307468312
Iterations: 16
Function evaluations: 163
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 169.50594660840207
Iteration: 2, Func. Count: 23, Neg. LLF: 164.63763549549193
Iteration: 3, Func. Count: 35, Neg. LLF: 170.29148184210993
Iteration: 4, Func. Count: 47, Neg. LLF: 170.09844376402123
Iteration: 5, Func. Count: 59, Neg. LLF: 166.47194641582084
Iteration: 6, Func. Count: 71, Neg. LLF: 163.76196470761735
Iteration: 7, Func. Count: 82, Neg. LLF: 163.63197986988698
Iteration: 8, Func. Count: 93, Neg. LLF: 163.54981904776207
Iteration: 9, Func. Count: 104, Neg. LLF: 163.1857781359846
Iteration: 10, Func. Count: 115, Neg. LLF: 182.80044248056703
Iteration: 11, Func. Count: 127, Neg. LLF: 199.15172838994414
Iteration: 12, Func. Count: 139, Neg. LLF: 162.72354450778369
Iteration: 13, Func. Count: 150, Neg. LLF: 162.5828320754244
Iteration: 14, Func. Count: 161, Neg. LLF: 162.45552294523085
Iteration: 15, Func. Count: 172, Neg. LLF: 162.10467855570852
Iteration: 16, Func. Count: 183, Neg. LLF: 162.05991720884313
Iteration: 17, Func. Count: 194, Neg. LLF: 162.05241099772846
Iteration: 18, Func. Count: 205, Neg. LLF: 162.03934966474677
Iteration: 19, Func. Count: 216, Neg. LLF: 162.03918456609966
Iteration: 20, Func. Count: 227, Neg. LLF: 162.03917907152166
Iteration: 21, Func. Count: 237, Neg. LLF: 162.03917906156437
Optimization terminated successfully (Exit mode 0)
Current function value: 162.03917907152166
Iterations: 21
Function evaluations: 237
Gradient evaluations: 21
Iteration: 1, Func. Count: 9, Neg. LLF: 169.72926577815304
Iteration: 2, Func. Count: 18, Neg. LLF: 168.95451316229298
Iteration: 3, Func. Count: 28, Neg. LLF: 166.40471696394394
Iteration: 4, Func. Count: 36, Neg. LLF: 172.1759687667116
Iteration: 5, Func. Count: 45, Neg. LLF: 166.10946812584024
Iteration: 6, Func. Count: 53, Neg. LLF: 165.98161290735248
Iteration: 7, Func. Count: 61, Neg. LLF: 165.80100523197413
Iteration: 8, Func. Count: 69, Neg. LLF: 164.83986218543336
Iteration: 9, Func. Count: 77, Neg. LLF: 165.96001958964237
Iteration: 10, Func. Count: 86, Neg. LLF: 165.96589487898495
Iteration: 11, Func. Count: 95, Neg. LLF: 165.57725091684156
Iteration: 12, Func. Count: 104, Neg. LLF: 163.4182310964878
Iteration: 13, Func. Count: 113, Neg. LLF: 162.1561580972823
Iteration: 14, Func. Count: 121, Neg. LLF: 162.08523545185238
Iteration: 15, Func. Count: 129, Neg. LLF: 162.07250645595207
Iteration: 16, Func. Count: 137, Neg. LLF: 162.0673351211249
Iteration: 17, Func. Count: 145, Neg. LLF: 162.06465262402503
Iteration: 18, Func. Count: 153, Neg. LLF: 162.06463832032966
Iteration: 19, Func. Count: 160, Neg. LLF: 162.06463831660497
Optimization terminated successfully (Exit mode 0)
Current function value: 162.06463832032966
Iterations: 19
Function evaluations: 160
Gradient evaluations: 19
Iteration: 1, Func. Count: 10, Neg. LLF: 171.97266134656027
Iteration: 2, Func. Count: 20, Neg. LLF: 166.44093235818312
Iteration: 3, Func. Count: 30, Neg. LLF: 162.64984468348177
Iteration: 4, Func. Count: 39, Neg. LLF: 162.4160682145024
Iteration: 5, Func. Count: 48, Neg. LLF: 163.04710410273057
Iteration: 6, Func. Count: 58, Neg. LLF: 162.13906348345796
Iteration: 7, Func. Count: 67, Neg. LLF: 162.1245171377089
Iteration: 8, Func. Count: 76, Neg. LLF: 162.09444599100624
Iteration: 9, Func. Count: 85, Neg. LLF: 162.0896311087082
Iteration: 10, Func. Count: 94, Neg. LLF: 162.08495190653434
Iteration: 11, Func. Count: 103, Neg. LLF: 162.07216490784057
Iteration: 12, Func. Count: 112, Neg. LLF: 162.06657294287638
Iteration: 13, Func. Count: 121, Neg. LLF: 162.06474834950836
Iteration: 14, Func. Count: 130, Neg. LLF: 162.064639980575
Iteration: 15, Func. Count: 139, Neg. LLF: 162.06463821193705
Iteration: 16, Func. Count: 147, Neg. LLF: 162.06463826748225
Optimization terminated successfully (Exit mode 0)
Current function value: 162.06463821193705
Iterations: 16
Function evaluations: 147
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 182.13250022374194
Iteration: 2, Func. Count: 22, Neg. LLF: 187.61482539448716
Iteration: 3, Func. Count: 33, Neg. LLF: 163.2193722146557
Iteration: 4, Func. Count: 43, Neg. LLF: 162.2588999033053
Iteration: 5, Func. Count: 53, Neg. LLF: 165.89205672303822
Iteration: 6, Func. Count: 64, Neg. LLF: 162.08815203283174
Iteration: 7, Func. Count: 74, Neg. LLF: 162.06734772685087
Iteration: 8, Func. Count: 84, Neg. LLF: 162.0649592746239
Iteration: 9, Func. Count: 94, Neg. LLF: 162.0647989116038
Iteration: 10, Func. Count: 104, Neg. LLF: 162.06473254781326
Iteration: 11, Func. Count: 114, Neg. LLF: 162.064699790857
Iteration: 12, Func. Count: 124, Neg. LLF: 162.06464764132232
Iteration: 13, Func. Count: 134, Neg. LLF: 162.0646390853849
Iteration: 14, Func. Count: 144, Neg. LLF: 162.06463822449263
Optimization terminated successfully (Exit mode 0)
Current function value: 162.06463822449263
Iterations: 14
Function evaluations: 144
Gradient evaluations: 14
Iteration: 1, Func. Count: 12, Neg. LLF: 182.98213577036503
Iteration: 2, Func. Count: 24, Neg. LLF: 194.28379461468163
Iteration: 3, Func. Count: 36, Neg. LLF: 162.9050131476033
Iteration: 4, Func. Count: 47, Neg. LLF: 162.2930187992437
Iteration: 5, Func. Count: 58, Neg. LLF: 165.8324196221259
Iteration: 6, Func. Count: 70, Neg. LLF: 164.4947109497643
Iteration: 7, Func. Count: 82, Neg. LLF: 162.0648939180012
Iteration: 8, Func. Count: 93, Neg. LLF: 162.06339193091563
Iteration: 9, Func. Count: 104, Neg. LLF: 162.06327533963986
Iteration: 10, Func. Count: 115, Neg. LLF: 162.06327051728167
Iteration: 11, Func. Count: 125, Neg. LLF: 162.0632705094653
Optimization terminated successfully (Exit mode 0)
Current function value: 162.06327051728167
Iterations: 11
Function evaluations: 125
Gradient evaluations: 11
Iteration: 1, Func. Count: 13, Neg. LLF: 182.7860077280835
Iteration: 2, Func. Count: 26, Neg. LLF: 175.6413485977682
Iteration: 3, Func. Count: 39, Neg. LLF: 166.10812790179773
Iteration: 4, Func. Count: 52, Neg. LLF: 162.86161161547741
Iteration: 5, Func. Count: 64, Neg. LLF: 162.57826197403318
Iteration: 6, Func. Count: 77, Neg. LLF: 167.66056868336824
Iteration: 7, Func. Count: 90, Neg. LLF: 162.09749315230025
Iteration: 8, Func. Count: 102, Neg. LLF: 162.03885730313124
Iteration: 9, Func. Count: 114, Neg. LLF: 162.0340205951496
Iteration: 10, Func. Count: 126, Neg. LLF: 162.03160301022288
Iteration: 11, Func. Count: 138, Neg. LLF: 162.02886418349254
Iteration: 12, Func. Count: 150, Neg. LLF: 162.02857769743974
Iteration: 13, Func. Count: 162, Neg. LLF: 162.02856102055273
Iteration: 14, Func. Count: 174, Neg. LLF: 162.02856027490247
Optimization terminated successfully (Exit mode 0)
Current function value: 162.02856027490247
Iterations: 14
Function evaluations: 174
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 168.2958461881573
Iteration: 2, Func. Count: 20, Neg. LLF: 167.50844323858865
Iteration: 3, Func. Count: 31, Neg. LLF: 165.13003403512016
Iteration: 4, Func. Count: 41, Neg. LLF: 163.82870140208678
Iteration: 5, Func. Count: 50, Neg. LLF: 168.43478818749668
Iteration: 6, Func. Count: 60, Neg. LLF: 163.82056578313345
Iteration: 7, Func. Count: 70, Neg. LLF: 163.60264875304225
Iteration: 8, Func. Count: 79, Neg. LLF: 163.49303781859575
Iteration: 9, Func. Count: 88, Neg. LLF: 163.2973884473669
Iteration: 10, Func. Count: 97, Neg. LLF: 163.02606950454248
Iteration: 11, Func. Count: 106, Neg. LLF: 162.5850824722907
Iteration: 12, Func. Count: 115, Neg. LLF: 162.2533899769162
Iteration: 13, Func. Count: 124, Neg. LLF: 162.0738548146353
Iteration: 14, Func. Count: 133, Neg. LLF: 162.07682384056213
Iteration: 15, Func. Count: 143, Neg. LLF: 162.0556146969577
Iteration: 16, Func. Count: 152, Neg. LLF: 162.05546278753133
Iteration: 17, Func. Count: 161, Neg. LLF: 162.05537502360065
Iteration: 18, Func. Count: 170, Neg. LLF: 162.05537223877064
Iteration: 19, Func. Count: 178, Neg. LLF: 162.05537224287986
Optimization terminated successfully (Exit mode 0)
Current function value: 162.05537223877064
Iterations: 19
Function evaluations: 178
Gradient evaluations: 19
Iteration: 1, Func. Count: 11, Neg. LLF: 284.8283297004136
Iteration: 2, Func. Count: 22, Neg. LLF: 324.8497118737643
Iteration: 3, Func. Count: 33, Neg. LLF: 167.21344500842042
Iteration: 4, Func. Count: 44, Neg. LLF: 179.59175574873856
Iteration: 5, Func. Count: 55, Neg. LLF: 162.96652351962058
Iteration: 6, Func. Count: 65, Neg. LLF: 163.30039316119465
Iteration: 7, Func. Count: 76, Neg. LLF: 170.01313764504226
Iteration: 8, Func. Count: 87, Neg. LLF: 162.1007403156705
Iteration: 9, Func. Count: 97, Neg. LLF: 162.07979375544596
Iteration: 10, Func. Count: 107, Neg. LLF: 162.06835915195202
Iteration: 11, Func. Count: 117, Neg. LLF: 162.06291308703092
Iteration: 12, Func. Count: 127, Neg. LLF: 162.0584961673929
Iteration: 13, Func. Count: 137, Neg. LLF: 162.0576401494524
Iteration: 14, Func. Count: 147, Neg. LLF: 162.0569077816088
Iteration: 15, Func. Count: 157, Neg. LLF: 162.05608466108603
Iteration: 16, Func. Count: 167, Neg. LLF: 162.05556512877206
Iteration: 17, Func. Count: 177, Neg. LLF: 162.05539568261298
Iteration: 18, Func. Count: 187, Neg. LLF: 162.0553742161364
Iteration: 19, Func. Count: 197, Neg. LLF: 162.05537218255046
Iteration: 20, Func. Count: 206, Neg. LLF: 162.05537224053725
Optimization terminated successfully (Exit mode 0)
Current function value: 162.05537218255046
Iterations: 20
Function evaluations: 206
Gradient evaluations: 20
Iteration: 1, Func. Count: 12, Neg. LLF: 189.24450853327306
Iteration: 2, Func. Count: 24, Neg. LLF: 172.23822601836338
Iteration: 3, Func. Count: 36, Neg. LLF: 162.76971809605746
Iteration: 4, Func. Count: 47, Neg. LLF: 162.55608969995478
Iteration: 5, Func. Count: 58, Neg. LLF: 162.89320470533292
Iteration: 6, Func. Count: 70, Neg. LLF: 175.49162004766615
Iteration: 7, Func. Count: 82, Neg. LLF: 181.7836735088538
Iteration: 8, Func. Count: 94, Neg. LLF: 162.15082166923384
Iteration: 9, Func. Count: 105, Neg. LLF: 162.08839105994247
Iteration: 10, Func. Count: 116, Neg. LLF: 162.08442721801504
Iteration: 11, Func. Count: 127, Neg. LLF: 162.07443829777347
Iteration: 12, Func. Count: 138, Neg. LLF: 162.0598222494397
Iteration: 13, Func. Count: 149, Neg. LLF: 162.05590826667242
Iteration: 14, Func. Count: 160, Neg. LLF: 162.0553849087083
Iteration: 15, Func. Count: 171, Neg. LLF: 162.0553732773588
Iteration: 16, Func. Count: 182, Neg. LLF: 162.05537225180012
Iteration: 17, Func. Count: 192, Neg. LLF: 162.05537232593667
Optimization terminated successfully (Exit mode 0)
Current function value: 162.05537225180012
Iterations: 17
Function evaluations: 192
Gradient evaluations: 17
Iteration: 1, Func. Count: 13, Neg. LLF: 282.07283533118215
Iteration: 2, Func. Count: 26, Neg. LLF: 213.5046295770099
Iteration: 3, Func. Count: 39, Neg. LLF: 198.28028977331775
Iteration: 4, Func. Count: 52, Neg. LLF: 170.22966873534043
Iteration: 5, Func. Count: 65, Neg. LLF: 165.5928374647559
Iteration: 6, Func. Count: 78, Neg. LLF: 163.20523417536123
Iteration: 7, Func. Count: 91, Neg. LLF: 162.23090553924465
Iteration: 8, Func. Count: 103, Neg. LLF: 162.22344004035935
Iteration: 9, Func. Count: 116, Neg. LLF: 162.07594099284492
Iteration: 10, Func. Count: 128, Neg. LLF: 162.0601728073235
Iteration: 11, Func. Count: 140, Neg. LLF: 162.05662466086508
Iteration: 12, Func. Count: 152, Neg. LLF: 162.05466949640422
Iteration: 13, Func. Count: 164, Neg. LLF: 162.05383798461784
Iteration: 14, Func. Count: 176, Neg. LLF: 162.0531217884343
Iteration: 15, Func. Count: 188, Neg. LLF: 162.05176785762174
Iteration: 16, Func. Count: 200, Neg. LLF: 162.05110409945118
Iteration: 17, Func. Count: 212, Neg. LLF: 162.05092818123592
Iteration: 18, Func. Count: 224, Neg. LLF: 162.05091795680133
Iteration: 19, Func. Count: 235, Neg. LLF: 162.05091794774546
Optimization terminated successfully (Exit mode 0)
Current function value: 162.05091795680133
Iterations: 19
Function evaluations: 235
Gradient evaluations: 19
Iteration: 1, Func. Count: 14, Neg. LLF: 281.22712073164723
Iteration: 2, Func. Count: 28, Neg. LLF: 189.83401440002646
Iteration: 3, Func. Count: 42, Neg. LLF: 182.84715036375493
Iteration: 4, Func. Count: 56, Neg. LLF: 163.10682175783793
Iteration: 5, Func. Count: 69, Neg. LLF: 163.85073027701534
Iteration: 6, Func. Count: 83, Neg. LLF: 165.5433427560667
Iteration: 7, Func. Count: 98, Neg. LLF: 173.02735613508295
Iteration: 8, Func. Count: 112, Neg. LLF: 162.19986996601622
Iteration: 9, Func. Count: 126, Neg. LLF: 162.0914455643205
Iteration: 10, Func. Count: 139, Neg. LLF: 162.0756482061262
Iteration: 11, Func. Count: 152, Neg. LLF: 162.0664542282535
Iteration: 12, Func. Count: 165, Neg. LLF: 162.05343808496926
Iteration: 13, Func. Count: 178, Neg. LLF: 162.04750957805516
Iteration: 14, Func. Count: 191, Neg. LLF: 162.03063398427895
Iteration: 15, Func. Count: 204, Neg. LLF: 162.02739157339943
Iteration: 16, Func. Count: 217, Neg. LLF: 162.026354017648
Iteration: 17, Func. Count: 230, Neg. LLF: 162.0263461048745
Iteration: 18, Func. Count: 243, Neg. LLF: 162.02634499889072
Iteration: 19, Func. Count: 255, Neg. LLF: 162.02634498987362
Optimization terminated successfully (Exit mode 0)
Current function value: 162.02634499889072
Iterations: 19
Function evaluations: 255
Gradient evaluations: 19
Iteration: 1, Func. Count: 11, Neg. LLF: 168.92103147355755
Iteration: 2, Func. Count: 22, Neg. LLF: 192.95956667868884
Iteration: 3, Func. Count: 33, Neg. LLF: 166.60319300781305
Iteration: 4, Func. Count: 44, Neg. LLF: 166.22969533283023
Iteration: 5, Func. Count: 55, Neg. LLF: 163.24202153335779
Iteration: 6, Func. Count: 66, Neg. LLF: 163.69908267977817
Iteration: 7, Func. Count: 77, Neg. LLF: 162.761261040986
Iteration: 8, Func. Count: 87, Neg. LLF: 162.66710109131816
Iteration: 9, Func. Count: 97, Neg. LLF: 162.63301052520103
Iteration: 10, Func. Count: 107, Neg. LLF: 162.57923678621495
Iteration: 11, Func. Count: 117, Neg. LLF: 162.53216481758912
Iteration: 12, Func. Count: 127, Neg. LLF: 162.34265111093964
Iteration: 13, Func. Count: 137, Neg. LLF: 162.12889881045442
Iteration: 14, Func. Count: 147, Neg. LLF: 161.87376178421783
Iteration: 15, Func. Count: 157, Neg. LLF: 161.7796618725239
Iteration: 16, Func. Count: 167, Neg. LLF: 161.7619253400365
Iteration: 17, Func. Count: 177, Neg. LLF: 161.7507863329811
Iteration: 18, Func. Count: 187, Neg. LLF: 161.7489610851049
Iteration: 19, Func. Count: 197, Neg. LLF: 161.74875598689368
Iteration: 20, Func. Count: 207, Neg. LLF: 161.74875006888095
Iteration: 21, Func. Count: 216, Neg. LLF: 161.74875006455272
Optimization terminated successfully (Exit mode 0)
Current function value: 161.74875006888095
Iterations: 21
Function evaluations: 216
Gradient evaluations: 21
Iteration: 1, Func. Count: 12, Neg. LLF: 284.838172862382
Iteration: 2, Func. Count: 24, Neg. LLF: 296.85984940632125
Iteration: 3, Func. Count: 36, Neg. LLF: 171.75510371743633
Iteration: 4, Func. Count: 48, Neg. LLF: 165.42267655341857
Iteration: 5, Func. Count: 60, Neg. LLF: 162.0924002646916
Iteration: 6, Func. Count: 71, Neg. LLF: 168.60956663669887
Iteration: 7, Func. Count: 83, Neg. LLF: 162.9001629399216
Iteration: 8, Func. Count: 95, Neg. LLF: 161.83984877830082
Iteration: 9, Func. Count: 106, Neg. LLF: 161.84055958726387
Iteration: 10, Func. Count: 118, Neg. LLF: 161.75481531857469
Iteration: 11, Func. Count: 129, Neg. LLF: 161.7509068792018
Iteration: 12, Func. Count: 140, Neg. LLF: 161.75015059370998
Iteration: 13, Func. Count: 151, Neg. LLF: 161.74982689656798
Iteration: 14, Func. Count: 162, Neg. LLF: 161.74948154790104
Iteration: 15, Func. Count: 173, Neg. LLF: 161.74905491667045
Iteration: 16, Func. Count: 184, Neg. LLF: 161.7488116307644
Iteration: 17, Func. Count: 195, Neg. LLF: 161.74875456700485
Iteration: 18, Func. Count: 206, Neg. LLF: 161.74874962289542
Iteration: 19, Func. Count: 216, Neg. LLF: 161.74874967053753
Optimization terminated successfully (Exit mode 0)
Current function value: 161.74874962289542
Iterations: 19
Function evaluations: 216
Gradient evaluations: 19
Iteration: 1, Func. Count: 13, Neg. LLF: 283.5590014530809
Iteration: 2, Func. Count: 26, Neg. LLF: 194.5780717670802
Iteration: 3, Func. Count: 39, Neg. LLF: 207.5600967376368
Iteration: 4, Func. Count: 52, Neg. LLF: 169.72472492246442
Iteration: 5, Func. Count: 65, Neg. LLF: 163.33947661838644
Iteration: 6, Func. Count: 78, Neg. LLF: 162.38567799168507
Iteration: 7, Func. Count: 90, Neg. LLF: 165.96677358659883
Iteration: 8, Func. Count: 103, Neg. LLF: 163.21616147679
Iteration: 9, Func. Count: 116, Neg. LLF: 161.81298668590182
Iteration: 10, Func. Count: 128, Neg. LLF: 161.76937846172547
Iteration: 11, Func. Count: 140, Neg. LLF: 161.75516235051842
Iteration: 12, Func. Count: 152, Neg. LLF: 161.74983737126263
Iteration: 13, Func. Count: 164, Neg. LLF: 161.7492729075158
Iteration: 14, Func. Count: 176, Neg. LLF: 161.74913744522968
Iteration: 15, Func. Count: 188, Neg. LLF: 161.74903585978694
Iteration: 16, Func. Count: 200, Neg. LLF: 161.74895999095642
Iteration: 17, Func. Count: 212, Neg. LLF: 161.74886670443794
Iteration: 18, Func. Count: 224, Neg. LLF: 161.74878737126943
Iteration: 19, Func. Count: 236, Neg. LLF: 161.7487542650642
Iteration: 20, Func. Count: 248, Neg. LLF: 161.7487496664388
Iteration: 21, Func. Count: 259, Neg. LLF: 161.7487496835319
Optimization terminated successfully (Exit mode 0)
Current function value: 161.7487496664388
Iterations: 21
Function evaluations: 259
Gradient evaluations: 21
Iteration: 1, Func. Count: 14, Neg. LLF: 282.68091707657106
Iteration: 2, Func. Count: 28, Neg. LLF: 197.2498752858815
Iteration: 3, Func. Count: 42, Neg. LLF: 192.75197213231732
Iteration: 4, Func. Count: 56, Neg. LLF: 171.24675830792353
Iteration: 5, Func. Count: 70, Neg. LLF: 168.44238802167243
Iteration: 6, Func. Count: 84, Neg. LLF: 162.07181215018238
Iteration: 7, Func. Count: 97, Neg. LLF: 161.93411503219568
Iteration: 8, Func. Count: 110, Neg. LLF: 161.73957508948587
Iteration: 9, Func. Count: 123, Neg. LLF: 161.63800852427016
Iteration: 10, Func. Count: 136, Neg. LLF: 161.61611517559666
Iteration: 11, Func. Count: 149, Neg. LLF: 161.58226158941838
Iteration: 12, Func. Count: 162, Neg. LLF: 161.57455828151743
Iteration: 13, Func. Count: 175, Neg. LLF: 161.56328134628927
Iteration: 14, Func. Count: 188, Neg. LLF: 161.55472576936847
Iteration: 15, Func. Count: 201, Neg. LLF: 161.5419422070178
Iteration: 16, Func. Count: 214, Neg. LLF: 161.53835176052016
Iteration: 17, Func. Count: 227, Neg. LLF: 161.53644854409367
Iteration: 18, Func. Count: 240, Neg. LLF: 161.53623503908008
Iteration: 19, Func. Count: 253, Neg. LLF: 161.5361812370643
Iteration: 20, Func. Count: 266, Neg. LLF: 161.53617515897818
Iteration: 21, Func. Count: 279, Neg. LLF: 161.53617354186596
Iteration: 22, Func. Count: 291, Neg. LLF: 161.53617352889987
Optimization terminated successfully (Exit mode 0)
Current function value: 161.53617354186596
Iterations: 22
Function evaluations: 291
Gradient evaluations: 22
Iteration: 1, Func. Count: 15, Neg. LLF: 281.96114688163584
Iteration: 2, Func. Count: 30, Neg. LLF: 189.0929295574714
Iteration: 3, Func. Count: 45, Neg. LLF: 188.09378286465324
Iteration: 4, Func. Count: 60, Neg. LLF: 177.0441054022249
Iteration: 5, Func. Count: 75, Neg. LLF: 175.84449924293347
Iteration: 6, Func. Count: 90, Neg. LLF: 162.21445070366153
Iteration: 7, Func. Count: 104, Neg. LLF: 161.8044767632627
Iteration: 8, Func. Count: 118, Neg. LLF: 161.78809151166857
Iteration: 9, Func. Count: 133, Neg. LLF: 161.71705736593816
Iteration: 10, Func. Count: 148, Neg. LLF: 161.60315195406557
Iteration: 11, Func. Count: 162, Neg. LLF: 161.57369478296516
Iteration: 12, Func. Count: 176, Neg. LLF: 161.56282045971864
Iteration: 13, Func. Count: 190, Neg. LLF: 161.55063696853517
Iteration: 14, Func. Count: 204, Neg. LLF: 161.53603065674784
Iteration: 15, Func. Count: 218, Neg. LLF: 161.52055018132708
Iteration: 16, Func. Count: 232, Neg. LLF: 161.51337945810096
Iteration: 17, Func. Count: 246, Neg. LLF: 161.50801801043835
Iteration: 18, Func. Count: 260, Neg. LLF: 161.50471822684312
Iteration: 19, Func. Count: 274, Neg. LLF: 161.50370716510983
Iteration: 20, Func. Count: 288, Neg. LLF: 161.5034740879319
Iteration: 21, Func. Count: 302, Neg. LLF: 161.50344660942602
Iteration: 22, Func. Count: 316, Neg. LLF: 161.50344458892988
Iteration: 23, Func. Count: 329, Neg. LLF: 161.50344457676468
Optimization terminated successfully (Exit mode 0)
Current function value: 161.50344458892988
Iterations: 23
Function evaluations: 329
Gradient evaluations: 23
Iteration: 1, Func. Count: 12, Neg. LLF: 169.1263113251419
Iteration: 2, Func. Count: 24, Neg. LLF: 193.69956058868084
Iteration: 3, Func. Count: 36, Neg. LLF: 166.6573883028267
Iteration: 4, Func. Count: 49, Neg. LLF: 165.55803641107153
Iteration: 5, Func. Count: 61, Neg. LLF: 163.15063529407814
Iteration: 6, Func. Count: 73, Neg. LLF: 163.8311602495288
Iteration: 7, Func. Count: 85, Neg. LLF: 162.6666290380044
Iteration: 8, Func. Count: 96, Neg. LLF: 162.62245368859843
Iteration: 9, Func. Count: 107, Neg. LLF: 162.54467000826514
Iteration: 10, Func. Count: 118, Neg. LLF: 162.496535081744
Iteration: 11, Func. Count: 129, Neg. LLF: 162.39362811492705
Iteration: 12, Func. Count: 140, Neg. LLF: 162.15201683291662
Iteration: 13, Func. Count: 151, Neg. LLF: 161.95973901624347
Iteration: 14, Func. Count: 162, Neg. LLF: 161.84425574957544
Iteration: 15, Func. Count: 173, Neg. LLF: 161.7994909674873
Iteration: 16, Func. Count: 184, Neg. LLF: 161.7647121308628
Iteration: 17, Func. Count: 195, Neg. LLF: 161.7503788701033
Iteration: 18, Func. Count: 206, Neg. LLF: 161.74887284613445
Iteration: 19, Func. Count: 217, Neg. LLF: 161.74878278853683
Iteration: 20, Func. Count: 228, Neg. LLF: 161.7487566676513
Iteration: 21, Func. Count: 239, Neg. LLF: 161.74874974910654
Iteration: 22, Func. Count: 249, Neg. LLF: 161.74874968292326
Optimization terminated successfully (Exit mode 0)
Current function value: 161.74874974910654
Iterations: 22
Function evaluations: 249
Gradient evaluations: 22
Iteration: 1, Func. Count: 13, Neg. LLF: 283.68982650021906
Iteration: 2, Func. Count: 26, Neg. LLF: 187.11240033369904
Iteration: 3, Func. Count: 39, Neg. LLF: 189.18230564592702
Iteration: 4, Func. Count: 52, Neg. LLF: 182.14700265578782
Iteration: 5, Func. Count: 65, Neg. LLF: 162.73820727061923
Iteration: 6, Func. Count: 77, Neg. LLF: 162.59048241292732
Iteration: 7, Func. Count: 90, Neg. LLF: 162.13582384277524
Iteration: 8, Func. Count: 102, Neg. LLF: 162.40288713345146
Iteration: 9, Func. Count: 115, Neg. LLF: 162.63012287786447
Iteration: 10, Func. Count: 128, Neg. LLF: 161.81859077742658
Iteration: 11, Func. Count: 140, Neg. LLF: 161.7883334409232
Iteration: 12, Func. Count: 152, Neg. LLF: 161.7567971702406
Iteration: 13, Func. Count: 164, Neg. LLF: 161.7517991670693
Iteration: 14, Func. Count: 176, Neg. LLF: 161.75038920204418
Iteration: 15, Func. Count: 188, Neg. LLF: 161.74958054994443
Iteration: 16, Func. Count: 200, Neg. LLF: 161.74902980122906
Iteration: 17, Func. Count: 212, Neg. LLF: 161.7489262134312
Iteration: 18, Func. Count: 224, Neg. LLF: 161.74888919439263
Iteration: 19, Func. Count: 236, Neg. LLF: 161.74884899582304
Iteration: 20, Func. Count: 248, Neg. LLF: 161.74879416335304
Iteration: 21, Func. Count: 260, Neg. LLF: 161.74875900152398
Iteration: 22, Func. Count: 272, Neg. LLF: 161.74875015144343
Iteration: 23, Func. Count: 284, Neg. LLF: 161.74874947833075
Optimization terminated successfully (Exit mode 0)
Current function value: 161.74874947833075
Iterations: 23
Function evaluations: 284
Gradient evaluations: 23
Iteration: 1, Func. Count: 14, Neg. LLF: 282.13915107150393
Iteration: 2, Func. Count: 28, Neg. LLF: 193.77142885154393
Iteration: 3, Func. Count: 42, Neg. LLF: 178.34079099414254
Iteration: 4, Func. Count: 56, Neg. LLF: 169.755218460135
Iteration: 5, Func. Count: 70, Neg. LLF: 164.22820788403249
Iteration: 6, Func. Count: 84, Neg. LLF: 162.40815053738768
Iteration: 7, Func. Count: 97, Neg. LLF: 163.10317293946414
Iteration: 8, Func. Count: 111, Neg. LLF: 162.1597615278604
Iteration: 9, Func. Count: 125, Neg. LLF: 161.80420685444673
Iteration: 10, Func. Count: 138, Neg. LLF: 161.7552845375452
Iteration: 11, Func. Count: 151, Neg. LLF: 161.75220361005404
Iteration: 12, Func. Count: 164, Neg. LLF: 161.75090531554085
Iteration: 13, Func. Count: 177, Neg. LLF: 161.75017809895954
Iteration: 14, Func. Count: 190, Neg. LLF: 161.74975808980957
Iteration: 15, Func. Count: 203, Neg. LLF: 161.74954553663497
Iteration: 16, Func. Count: 216, Neg. LLF: 161.7492218577636
Iteration: 17, Func. Count: 229, Neg. LLF: 161.74892725476317
Iteration: 18, Func. Count: 242, Neg. LLF: 161.74877461804388
Iteration: 19, Func. Count: 255, Neg. LLF: 161.74875058519248
Iteration: 20, Func. Count: 268, Neg. LLF: 161.7487494729268
Iteration: 21, Func. Count: 280, Neg. LLF: 161.74874949000153
Optimization terminated successfully (Exit mode 0)
Current function value: 161.7487494729268
Iterations: 21
Function evaluations: 280
Gradient evaluations: 21
Iteration: 1, Func. Count: 15, Neg. LLF: 281.04149287456454
Iteration: 2, Func. Count: 30, Neg. LLF: 197.2710776134975
Iteration: 3, Func. Count: 45, Neg. LLF: 172.51028169813424
Iteration: 4, Func. Count: 60, Neg. LLF: 165.81178789302328
Iteration: 5, Func. Count: 75, Neg. LLF: 165.39793379356368
Iteration: 6, Func. Count: 90, Neg. LLF: 161.750764531017
Iteration: 7, Func. Count: 104, Neg. LLF: 165.75313095040897
Iteration: 8, Func. Count: 119, Neg. LLF: 162.43230013541674
Iteration: 9, Func. Count: 134, Neg. LLF: 161.6098503053625
Iteration: 10, Func. Count: 148, Neg. LLF: 161.58917770696343
Iteration: 11, Func. Count: 162, Neg. LLF: 161.57901423574734
Iteration: 12, Func. Count: 176, Neg. LLF: 161.5666714243812
Iteration: 13, Func. Count: 190, Neg. LLF: 161.55642005634843
Iteration: 14, Func. Count: 204, Neg. LLF: 161.53718862765606
Iteration: 15, Func. Count: 218, Neg. LLF: 161.52786916620815
Iteration: 16, Func. Count: 232, Neg. LLF: 161.5224593677096
Iteration: 17, Func. Count: 246, Neg. LLF: 161.52172804996843
Iteration: 18, Func. Count: 260, Neg. LLF: 161.52166352124243
Iteration: 19, Func. Count: 274, Neg. LLF: 161.52164045522173
Iteration: 20, Func. Count: 287, Neg. LLF: 161.52164044305147
Optimization terminated successfully (Exit mode 0)
Current function value: 161.52164045522173
Iterations: 20
Function evaluations: 287
Gradient evaluations: 20
Iteration: 1, Func. Count: 16, Neg. LLF: 280.2121856261369
Iteration: 2, Func. Count: 32, Neg. LLF: 196.7297041794777
Iteration: 3, Func. Count: 48, Neg. LLF: 176.0697550672501
Iteration: 4, Func. Count: 64, Neg. LLF: 179.04164414368947
Iteration: 5, Func. Count: 80, Neg. LLF: 175.9179721519685
Iteration: 6, Func. Count: 96, Neg. LLF: 162.3903043923004
Iteration: 7, Func. Count: 111, Neg. LLF: 161.83635298997163
Iteration: 8, Func. Count: 126, Neg. LLF: 161.78033036270025
Iteration: 9, Func. Count: 141, Neg. LLF: 161.67797170108852
Iteration: 10, Func. Count: 156, Neg. LLF: 161.60010682142726
Iteration: 11, Func. Count: 171, Neg. LLF: 161.56715203437284
Iteration: 12, Func. Count: 186, Neg. LLF: 161.55648137706189
Iteration: 13, Func. Count: 201, Neg. LLF: 161.54651711356803
Iteration: 14, Func. Count: 216, Neg. LLF: 161.5285106169124
Iteration: 15, Func. Count: 231, Neg. LLF: 161.52089547579644
Iteration: 16, Func. Count: 246, Neg. LLF: 161.50913963394558
Iteration: 17, Func. Count: 261, Neg. LLF: 161.50455184557762
Iteration: 18, Func. Count: 276, Neg. LLF: 161.50361824185984
Iteration: 19, Func. Count: 291, Neg. LLF: 161.50350647881356
Iteration: 20, Func. Count: 306, Neg. LLF: 161.5034631749205
Iteration: 21, Func. Count: 321, Neg. LLF: 161.50344588384016
Iteration: 22, Func. Count: 336, Neg. LLF: 161.50344444638907
Iteration: 23, Func. Count: 350, Neg. LLF: 161.50344443436686
Optimization terminated successfully (Exit mode 0)
Current function value: 161.50344444638907
Iterations: 23
Function evaluations: 350
Gradient evaluations: 23
Iteration: 1, Func. Count: 7, Neg. LLF: 169.78030181794665
Iteration: 2, Func. Count: 14, Neg. LLF: 169.00491821004968
Iteration: 3, Func. Count: 22, Neg. LLF: 166.39750997867668
Iteration: 4, Func. Count: 28, Neg. LLF: 166.00109633014225
Iteration: 5, Func. Count: 34, Neg. LLF: 165.91981255427407
Iteration: 6, Func. Count: 40, Neg. LLF: 165.42724149263265
Iteration: 7, Func. Count: 46, Neg. LLF: 163.18478447535978
Iteration: 8, Func. Count: 52, Neg. LLF: 2052.5079480715817
Iteration: 9, Func. Count: 59, Neg. LLF: 162.33427359038632
Iteration: 10, Func. Count: 65, Neg. LLF: 162.44170572114413
Iteration: 11, Func. Count: 72, Neg. LLF: 162.24735911851644
Iteration: 12, Func. Count: 78, Neg. LLF: 162.22192287046252
Iteration: 13, Func. Count: 84, Neg. LLF: 162.22142337808015
Iteration: 14, Func. Count: 90, Neg. LLF: 162.2213519449752
Iteration: 15, Func. Count: 96, Neg. LLF: 162.22134307152282
Iteration: 16, Func. Count: 101, Neg. LLF: 162.2213430630796
Optimization terminated successfully (Exit mode 0)
Current function value: 162.22134307152282
Iterations: 16
Function evaluations: 101
Gradient evaluations: 16
Iteration: 1, Func. Count: 5, Neg. LLF: 178.68616320740878
Iteration: 2, Func. Count: 9, Neg. LLF: 178.131472401902
Iteration: 3, Func. Count: 13, Neg. LLF: 177.78309122367534
Iteration: 4, Func. Count: 17, Neg. LLF: 177.7137079800967
Iteration: 5, Func. Count: 21, Neg. LLF: 177.3965800184955
Iteration: 6, Func. Count: 25, Neg. LLF: 177.33757020806834
Iteration: 7, Func. Count: 30, Neg. LLF: 177.07667642599984
Iteration: 8, Func. Count: 34, Neg. LLF: 176.73317804155232
Iteration: 9, Func. Count: 38, Neg. LLF: 176.60964454587295
Iteration: 10, Func. Count: 42, Neg. LLF: 176.5908710334438
Iteration: 11, Func. Count: 46, Neg. LLF: 176.58962871713138
Iteration: 12, Func. Count: 50, Neg. LLF: 176.58953189880378
Iteration: 13, Func. Count: 54, Neg. LLF: 176.5895114285178
Iteration: 14, Func. Count: 58, Neg. LLF: 176.58950998941785
Iteration: 15, Func. Count: 61, Neg. LLF: 176.5895099894106
Optimization terminated successfully (Exit mode 0)
Current function value: 176.58950998941785
Iterations: 15
Function evaluations: 61
Gradient evaluations: 15
Iteration: 1, Func. Count: 6, Neg. LLF: 254.8104775625478
Iteration: 2, Func. Count: 12, Neg. LLF: 253.61647387621863
Iteration: 3, Func. Count: 18, Neg. LLF: 173.45769132768234
Iteration: 4, Func. Count: 24, Neg. LLF: 169.01909143581818
Iteration: 5, Func. Count: 29, Neg. LLF: 168.98917350910733
Iteration: 6, Func. Count: 34, Neg. LLF: 168.8995913858829
Iteration: 7, Func. Count: 39, Neg. LLF: 168.82984381129376
Iteration: 8, Func. Count: 44, Neg. LLF: 168.80814713451633
Iteration: 9, Func. Count: 49, Neg. LLF: 168.79991133814352
Iteration: 10, Func. Count: 54, Neg. LLF: 168.79496063023194
Iteration: 11, Func. Count: 59, Neg. LLF: 168.7938313929358
Iteration: 12, Func. Count: 64, Neg. LLF: 168.79365034824724
Iteration: 13, Func. Count: 69, Neg. LLF: 168.7936140523191
Iteration: 14, Func. Count: 74, Neg. LLF: 168.79361100486722
Iteration: 15, Func. Count: 78, Neg. LLF: 168.79361100498238
Optimization terminated successfully (Exit mode 0)
Current function value: 168.79361100486722
Iterations: 15
Function evaluations: 78
Gradient evaluations: 15
Iteration: 1, Func. Count: 7, Neg. LLF: 251.77600486731154
Iteration: 2, Func. Count: 14, Neg. LLF: 290.9855301332291
Iteration: 3, Func. Count: 22, Neg. LLF: 173.12751071327628
Iteration: 4, Func. Count: 29, Neg. LLF: 169.06648447752403
Iteration: 5, Func. Count: 35, Neg. LLF: 169.01409429598658
Iteration: 6, Func. Count: 41, Neg. LLF: 168.98977780119063
Iteration: 7, Func. Count: 47, Neg. LLF: 168.89514768940202
Iteration: 8, Func. Count: 53, Neg. LLF: 168.83608535439228
Iteration: 9, Func. Count: 59, Neg. LLF: 168.80199009753963
Iteration: 10, Func. Count: 65, Neg. LLF: 168.795221946994
Iteration: 11, Func. Count: 71, Neg. LLF: 168.79384894070452
Iteration: 12, Func. Count: 77, Neg. LLF: 168.79362908767433
Iteration: 13, Func. Count: 83, Neg. LLF: 168.79361242827247
Iteration: 14, Func. Count: 89, Neg. LLF: 168.79361089603935
Iteration: 15, Func. Count: 94, Neg. LLF: 168.79361093826546
Optimization terminated successfully (Exit mode 0)
Current function value: 168.79361089603935
Iterations: 15
Function evaluations: 94
Gradient evaluations: 15
Iteration: 1, Func. Count: 8, Neg. LLF: 248.33765280889745
Iteration: 2, Func. Count: 16, Neg. LLF: 169.4643928961903
Iteration: 3, Func. Count: 23, Neg. LLF: 268.1232586269467
Iteration: 4, Func. Count: 32, Neg. LLF: 169.07621386148787
Iteration: 5, Func. Count: 39, Neg. LLF: 169.0350973977923
Iteration: 6, Func. Count: 46, Neg. LLF: 168.9521875950856
Iteration: 7, Func. Count: 53, Neg. LLF: 168.93575036352348
Iteration: 8, Func. Count: 60, Neg. LLF: 168.9066930753798
Iteration: 9, Func. Count: 67, Neg. LLF: 168.8343751362969
Iteration: 10, Func. Count: 74, Neg. LLF: 168.805941633204
Iteration: 11, Func. Count: 81, Neg. LLF: 168.7955371561114
Iteration: 12, Func. Count: 88, Neg. LLF: 168.79372633392273
Iteration: 13, Func. Count: 95, Neg. LLF: 168.79361891436128
Iteration: 14, Func. Count: 102, Neg. LLF: 168.79361172013918
Iteration: 15, Func. Count: 109, Neg. LLF: 168.793610699631
Iteration: 16, Func. Count: 115, Neg. LLF: 168.79361077749763
Optimization terminated successfully (Exit mode 0)
Current function value: 168.793610699631
Iterations: 16
Function evaluations: 115
Gradient evaluations: 16
Iteration: 1, Func. Count: 9, Neg. LLF: 246.9226480146636
Iteration: 2, Func. Count: 18, Neg. LLF: 169.87379667283193
Iteration: 3, Func. Count: 26, Neg. LLF: 169.93289578462804
Iteration: 4, Func. Count: 35, Neg. LLF: 210.13127273518435
Iteration: 5, Func. Count: 44, Neg. LLF: 168.9707177282043
Iteration: 6, Func. Count: 52, Neg. LLF: 168.94780905455806
Iteration: 7, Func. Count: 60, Neg. LLF: 168.9313271051939
Iteration: 8, Func. Count: 68, Neg. LLF: 168.91112824459933
Iteration: 9, Func. Count: 76, Neg. LLF: 168.84623383566313
Iteration: 10, Func. Count: 84, Neg. LLF: 168.80623420026382
Iteration: 11, Func. Count: 92, Neg. LLF: 168.79704280133691
Iteration: 12, Func. Count: 100, Neg. LLF: 168.79487954268672
Iteration: 13, Func. Count: 108, Neg. LLF: 168.7938083969802
Iteration: 14, Func. Count: 116, Neg. LLF: 168.79362518035296
Iteration: 15, Func. Count: 124, Neg. LLF: 168.79361136496073
Iteration: 16, Func. Count: 132, Neg. LLF: 168.7936107269932
Optimization terminated successfully (Exit mode 0)
Current function value: 168.7936107269932
Iterations: 16
Function evaluations: 132
Gradient evaluations: 16
Iteration: 1, Func. Count: 6, Neg. LLF: 182.84041548772
Iteration: 2, Func. Count: 13, Neg. LLF: 172.71139557216316
Iteration: 3, Func. Count: 19, Neg. LLF: 171.26732491724113
Iteration: 4, Func. Count: 25, Neg. LLF: 170.89313658195567
Iteration: 5, Func. Count: 30, Neg. LLF: 170.82477330889543
Iteration: 6, Func. Count: 35, Neg. LLF: 170.76802793269363
Iteration: 7, Func. Count: 40, Neg. LLF: 170.54023377383345
Iteration: 8, Func. Count: 45, Neg. LLF: 170.41496454908255
Iteration: 9, Func. Count: 50, Neg. LLF: 170.38572907122744
Iteration: 10, Func. Count: 55, Neg. LLF: 170.26547990998677
Iteration: 11, Func. Count: 60, Neg. LLF: 170.1944315545517
Iteration: 12, Func. Count: 65, Neg. LLF: 170.18691030260726
Iteration: 13, Func. Count: 70, Neg. LLF: 170.18667264827968
Iteration: 14, Func. Count: 75, Neg. LLF: 170.18665684414304
Iteration: 15, Func. Count: 79, Neg. LLF: 170.1866568441473
Optimization terminated successfully (Exit mode 0)
Current function value: 170.18665684414304
Iterations: 15
Function evaluations: 79
Gradient evaluations: 15
Iteration: 1, Func. Count: 7, Neg. LLF: 190.7315008741676
Iteration: 2, Func. Count: 14, Neg. LLF: 235.7621241132803
Iteration: 3, Func. Count: 21, Neg. LLF: 173.8315353900804
Iteration: 4, Func. Count: 28, Neg. LLF: 168.5655695939708
Iteration: 5, Func. Count: 34, Neg. LLF: 168.59850956387953
Iteration: 6, Func. Count: 41, Neg. LLF: 168.39104833020994
Iteration: 7, Func. Count: 47, Neg. LLF: 168.3421563298343
Iteration: 8, Func. Count: 53, Neg. LLF: 168.28365380651724
Iteration: 9, Func. Count: 59, Neg. LLF: 168.21538790271126
Iteration: 10, Func. Count: 65, Neg. LLF: 168.14378586775544
Iteration: 11, Func. Count: 71, Neg. LLF: 168.1031693986946
Iteration: 12, Func. Count: 77, Neg. LLF: 168.0898609273993
Iteration: 13, Func. Count: 83, Neg. LLF: 168.0855819035213
Iteration: 14, Func. Count: 89, Neg. LLF: 168.0848334160792
Iteration: 15, Func. Count: 95, Neg. LLF: 168.08478469466726
Iteration: 16, Func. Count: 101, Neg. LLF: 168.0847762390792
Iteration: 17, Func. Count: 107, Neg. LLF: 168.08477373787008
Iteration: 18, Func. Count: 112, Neg. LLF: 168.08477373795955
Optimization terminated successfully (Exit mode 0)
Current function value: 168.08477373787008
Iterations: 18
Function evaluations: 112
Gradient evaluations: 18
Iteration: 1, Func. Count: 8, Neg. LLF: 189.7372761290396
Iteration: 2, Func. Count: 16, Neg. LLF: 169.09173817071098
Iteration: 3, Func. Count: 23, Neg. LLF: 168.6601628737494
Iteration: 4, Func. Count: 30, Neg. LLF: 168.49913309645777
Iteration: 5, Func. Count: 37, Neg. LLF: 171.52540000747092
Iteration: 6, Func. Count: 45, Neg. LLF: 168.48089914349993
Iteration: 7, Func. Count: 53, Neg. LLF: 168.36268669252559
Iteration: 8, Func. Count: 60, Neg. LLF: 168.302171596677
Iteration: 9, Func. Count: 67, Neg. LLF: 168.25022468060595
Iteration: 10, Func. Count: 74, Neg. LLF: 168.11855269032432
Iteration: 11, Func. Count: 81, Neg. LLF: 168.0906717568386
Iteration: 12, Func. Count: 88, Neg. LLF: 168.0858108843065
Iteration: 13, Func. Count: 95, Neg. LLF: 168.08497888154878
Iteration: 14, Func. Count: 102, Neg. LLF: 168.08479654343873
Iteration: 15, Func. Count: 109, Neg. LLF: 168.0847776310676
Iteration: 16, Func. Count: 116, Neg. LLF: 168.08477389457695
Iteration: 17, Func. Count: 122, Neg. LLF: 168.08477393424658
Optimization terminated successfully (Exit mode 0)
Current function value: 168.08477389457695
Iterations: 17
Function evaluations: 122
Gradient evaluations: 17
Iteration: 1, Func. Count: 9, Neg. LLF: 282.0181892757109
Iteration: 2, Func. Count: 18, Neg. LLF: 251.70547903200838
Iteration: 3, Func. Count: 27, Neg. LLF: 169.99113689886843
Iteration: 4, Func. Count: 36, Neg. LLF: 169.47543011714185
Iteration: 5, Func. Count: 45, Neg. LLF: 168.56886890769226
Iteration: 6, Func. Count: 53, Neg. LLF: 168.5336970180009
Iteration: 7, Func. Count: 61, Neg. LLF: 168.46356045340522
Iteration: 8, Func. Count: 69, Neg. LLF: 168.3170052195006
Iteration: 9, Func. Count: 77, Neg. LLF: 168.19661885037175
Iteration: 10, Func. Count: 85, Neg. LLF: 168.15163533478383
Iteration: 11, Func. Count: 93, Neg. LLF: 168.12785733104778
Iteration: 12, Func. Count: 101, Neg. LLF: 168.11148189783182
Iteration: 13, Func. Count: 109, Neg. LLF: 168.0979134216816
Iteration: 14, Func. Count: 117, Neg. LLF: 168.090325423929
Iteration: 15, Func. Count: 125, Neg. LLF: 168.08681207129038
Iteration: 16, Func. Count: 133, Neg. LLF: 168.08527589925353
Iteration: 17, Func. Count: 141, Neg. LLF: 168.08495713916838
Iteration: 18, Func. Count: 149, Neg. LLF: 168.08479822923462
Iteration: 19, Func. Count: 157, Neg. LLF: 168.08477464275333
Iteration: 20, Func. Count: 165, Neg. LLF: 168.0847735311963
Iteration: 21, Func. Count: 172, Neg. LLF: 168.08477354467195
Optimization terminated successfully (Exit mode 0)
Current function value: 168.0847735311963
Iterations: 21
Function evaluations: 172
Gradient evaluations: 21
Iteration: 1, Func. Count: 10, Neg. LLF: 280.0403245207632
Iteration: 2, Func. Count: 20, Neg. LLF: 196.78422736175938
Iteration: 3, Func. Count: 30, Neg. LLF: 175.73705987667753
Iteration: 4, Func. Count: 40, Neg. LLF: 169.12712633863828
Iteration: 5, Func. Count: 49, Neg. LLF: 168.85653927713747
Iteration: 6, Func. Count: 58, Neg. LLF: 169.07668022119645
Iteration: 7, Func. Count: 68, Neg. LLF: 168.46051918857134
Iteration: 8, Func. Count: 77, Neg. LLF: 168.41054098045177
Iteration: 9, Func. Count: 86, Neg. LLF: 168.3470560869726
Iteration: 10, Func. Count: 95, Neg. LLF: 168.27553031490885
Iteration: 11, Func. Count: 104, Neg. LLF: 168.1397425776417
Iteration: 12, Func. Count: 113, Neg. LLF: 168.10117617245632
Iteration: 13, Func. Count: 122, Neg. LLF: 168.08745017052286
Iteration: 14, Func. Count: 131, Neg. LLF: 168.08733831872405
Iteration: 15, Func. Count: 141, Neg. LLF: 168.0860136512291
Iteration: 16, Func. Count: 150, Neg. LLF: 168.0850599500333
Iteration: 17, Func. Count: 159, Neg. LLF: 168.08493752330247
Iteration: 18, Func. Count: 168, Neg. LLF: 168.08481656248705
Iteration: 19, Func. Count: 177, Neg. LLF: 168.08478951748842
Iteration: 20, Func. Count: 186, Neg. LLF: 168.0847753052116
Iteration: 21, Func. Count: 195, Neg. LLF: 168.08477372472163
Iteration: 22, Func. Count: 203, Neg. LLF: 168.08477372605952
Optimization terminated successfully (Exit mode 0)
Current function value: 168.08477372472163
Iterations: 22
Function evaluations: 203
Gradient evaluations: 22
Iteration: 1, Func. Count: 7, Neg. LLF: 170.68184021026576
Iteration: 2, Func. Count: 14, Neg. LLF: 181.9980576481269
Iteration: 3, Func. Count: 21, Neg. LLF: 167.72046130707514
Iteration: 4, Func. Count: 27, Neg. LLF: 167.50018515724074
Iteration: 5, Func. Count: 33, Neg. LLF: 167.38478782262706
Iteration: 6, Func. Count: 39, Neg. LLF: 167.29581097147894
Iteration: 7, Func. Count: 45, Neg. LLF: 167.21429758325067
Iteration: 8, Func. Count: 51, Neg. LLF: 167.16321243023458
Iteration: 9, Func. Count: 57, Neg. LLF: 167.0256052550488
Iteration: 10, Func. Count: 63, Neg. LLF: 166.9955279625205
Iteration: 11, Func. Count: 69, Neg. LLF: 166.82747722005072
Iteration: 12, Func. Count: 75, Neg. LLF: 166.6893933805107
Iteration: 13, Func. Count: 81, Neg. LLF: 166.64595433576324
Iteration: 14, Func. Count: 87, Neg. LLF: 166.63066470769255
Iteration: 15, Func. Count: 93, Neg. LLF: 166.63043314586662
Iteration: 16, Func. Count: 99, Neg. LLF: 166.6304255883945
Iteration: 17, Func. Count: 104, Neg. LLF: 166.630425588398
Optimization terminated successfully (Exit mode 0)
Current function value: 166.6304255883945
Iterations: 17
Function evaluations: 104
Gradient evaluations: 17
Iteration: 1, Func. Count: 8, Neg. LLF: 193.93448835516503
Iteration: 2, Func. Count: 16, Neg. LLF: 250.42547602464793
Iteration: 3, Func. Count: 24, Neg. LLF: 173.36106529685023
Iteration: 4, Func. Count: 32, Neg. LLF: 168.46481298035584
Iteration: 5, Func. Count: 39, Neg. LLF: 171.26384527168892
Iteration: 6, Func. Count: 47, Neg. LLF: 168.28356139337996
Iteration: 7, Func. Count: 54, Neg. LLF: 168.18683961970365
Iteration: 8, Func. Count: 61, Neg. LLF: 168.05764531984659
Iteration: 9, Func. Count: 68, Neg. LLF: 167.72091644172835
Iteration: 10, Func. Count: 75, Neg. LLF: 167.10305529153027
Iteration: 11, Func. Count: 82, Neg. LLF: 166.8047372796457
Iteration: 12, Func. Count: 89, Neg. LLF: 166.72490901229915
Iteration: 13, Func. Count: 96, Neg. LLF: 166.68148282399875
Iteration: 14, Func. Count: 103, Neg. LLF: 166.65239889470055
Iteration: 15, Func. Count: 110, Neg. LLF: 166.63907405718876
Iteration: 16, Func. Count: 117, Neg. LLF: 166.63513414873364
Iteration: 17, Func. Count: 124, Neg. LLF: 166.63316770434025
Iteration: 18, Func. Count: 131, Neg. LLF: 166.63200124808694
Iteration: 19, Func. Count: 138, Neg. LLF: 166.6309054884327
Iteration: 20, Func. Count: 145, Neg. LLF: 166.630487912259
Iteration: 21, Func. Count: 152, Neg. LLF: 166.6304277207985
Iteration: 22, Func. Count: 159, Neg. LLF: 166.63042558482323
Iteration: 23, Func. Count: 165, Neg. LLF: 166.63042562854216
Optimization terminated successfully (Exit mode 0)
Current function value: 166.63042558482323
Iterations: 23
Function evaluations: 165
Gradient evaluations: 23
Iteration: 1, Func. Count: 9, Neg. LLF: 218.51091257204814
Iteration: 2, Func. Count: 18, Neg. LLF: 187.34119105683328
Iteration: 3, Func. Count: 27, Neg. LLF: 279.7524059005141
Iteration: 4, Func. Count: 37, Neg. LLF: 168.5901583925161
Iteration: 5, Func. Count: 45, Neg. LLF: 168.3319985940579
Iteration: 6, Func. Count: 53, Neg. LLF: 168.1219556085312
Iteration: 7, Func. Count: 61, Neg. LLF: 167.8788738245809
Iteration: 8, Func. Count: 69, Neg. LLF: 167.5837352733041
Iteration: 9, Func. Count: 77, Neg. LLF: 167.1978544815274
Iteration: 10, Func. Count: 85, Neg. LLF: 166.69888551822442
Iteration: 11, Func. Count: 93, Neg. LLF: 166.63290567205635
Iteration: 12, Func. Count: 101, Neg. LLF: 166.63058770775535
Iteration: 13, Func. Count: 109, Neg. LLF: 166.63052691579293
Iteration: 14, Func. Count: 117, Neg. LLF: 166.6304607252143
Iteration: 15, Func. Count: 125, Neg. LLF: 166.63044072834407
Iteration: 16, Func. Count: 133, Neg. LLF: 166.63042749396865
Iteration: 17, Func. Count: 141, Neg. LLF: 166.6304258869011
Iteration: 18, Func. Count: 148, Neg. LLF: 166.63042593868
Optimization terminated successfully (Exit mode 0)
Current function value: 166.6304258869011
Iterations: 18
Function evaluations: 148
Gradient evaluations: 18
Iteration: 1, Func. Count: 10, Neg. LLF: 282.2729473850004
Iteration: 2, Func. Count: 20, Neg. LLF: 209.1886547041283
Iteration: 3, Func. Count: 30, Neg. LLF: 249.10841028285446
Iteration: 4, Func. Count: 40, Neg. LLF: 167.88421407477009
Iteration: 5, Func. Count: 49, Neg. LLF: 167.11556055958027
Iteration: 6, Func. Count: 58, Neg. LLF: 166.80057211186042
Iteration: 7, Func. Count: 67, Neg. LLF: 166.74544236582196
Iteration: 8, Func. Count: 76, Neg. LLF: 166.74018907552664
Iteration: 9, Func. Count: 85, Neg. LLF: 166.73794808400072
Iteration: 10, Func. Count: 94, Neg. LLF: 166.73768698877257
Iteration: 11, Func. Count: 103, Neg. LLF: 166.73754266682496
Iteration: 12, Func. Count: 112, Neg. LLF: 166.737328021598
Iteration: 13, Func. Count: 121, Neg. LLF: 166.73659461110344
Iteration: 14, Func. Count: 130, Neg. LLF: 166.7337027651624
Iteration: 15, Func. Count: 139, Neg. LLF: 166.6498475042846
Iteration: 16, Func. Count: 148, Neg. LLF: 167.48614136853482
Iteration: 17, Func. Count: 158, Neg. LLF: 167.1183446832832
Iteration: 18, Func. Count: 168, Neg. LLF: 166.468618314687
Iteration: 19, Func. Count: 177, Neg. LLF: 166.34959611548217
Iteration: 20, Func. Count: 186, Neg. LLF: 166.2997315355139
Iteration: 21, Func. Count: 195, Neg. LLF: 166.19463520177922
Iteration: 22, Func. Count: 204, Neg. LLF: 166.1800558914874
Iteration: 23, Func. Count: 213, Neg. LLF: 166.15376274993324
Iteration: 24, Func. Count: 222, Neg. LLF: 166.15156121538078
Iteration: 25, Func. Count: 231, Neg. LLF: 166.15131237898143
Iteration: 26, Func. Count: 240, Neg. LLF: 166.1512805006715
Iteration: 27, Func. Count: 248, Neg. LLF: 166.15128050060014
Optimization terminated successfully (Exit mode 0)
Current function value: 166.1512805006715
Iterations: 27
Function evaluations: 248
Gradient evaluations: 27
Iteration: 1, Func. Count: 11, Neg. LLF: 280.8730417797395
Iteration: 2, Func. Count: 22, Neg. LLF: 191.42173145868844
Iteration: 3, Func. Count: 33, Neg. LLF: 278.25187443731176
Iteration: 4, Func. Count: 44, Neg. LLF: 167.56226414799193
Iteration: 5, Func. Count: 54, Neg. LLF: 167.39337024687507
Iteration: 6, Func. Count: 64, Neg. LLF: 167.14422519857612
Iteration: 7, Func. Count: 74, Neg. LLF: 167.81289533604559
Iteration: 8, Func. Count: 85, Neg. LLF: 167.00604759842506
Iteration: 9, Func. Count: 95, Neg. LLF: 166.9960765796553
Iteration: 10, Func. Count: 105, Neg. LLF: 166.98926015284744
Iteration: 11, Func. Count: 115, Neg. LLF: 166.97079357714523
Iteration: 12, Func. Count: 125, Neg. LLF: 166.94429558736368
Iteration: 13, Func. Count: 135, Neg. LLF: 166.89210612948824
Iteration: 14, Func. Count: 145, Neg. LLF: 166.87201341388862
Iteration: 15, Func. Count: 155, Neg. LLF: 166.85923750792765
Iteration: 16, Func. Count: 165, Neg. LLF: 166.8528909942019
Iteration: 17, Func. Count: 175, Neg. LLF: 166.8515084287558
Iteration: 18, Func. Count: 185, Neg. LLF: 166.85130119036907
Iteration: 19, Func. Count: 195, Neg. LLF: 166.85129509205615
Iteration: 20, Func. Count: 205, Neg. LLF: 166.8512944101557
Optimization terminated successfully (Exit mode 0)
Current function value: 166.8512944101557
Iterations: 20
Function evaluations: 205
Gradient evaluations: 20
Iteration: 1, Func. Count: 8, Neg. LLF: 170.87704639959227
Iteration: 2, Func. Count: 16, Neg. LLF: 182.04657641718947
Iteration: 3, Func. Count: 24, Neg. LLF: 167.74221261279195
Iteration: 4, Func. Count: 31, Neg. LLF: 167.50731987114932
Iteration: 5, Func. Count: 38, Neg. LLF: 167.4025214485576
Iteration: 6, Func. Count: 45, Neg. LLF: 167.3144564548854
Iteration: 7, Func. Count: 52, Neg. LLF: 167.23793226677148
Iteration: 8, Func. Count: 59, Neg. LLF: 167.18673688694778
Iteration: 9, Func. Count: 66, Neg. LLF: 166.9967208564065
Iteration: 10, Func. Count: 73, Neg. LLF: 166.9487229247838
Iteration: 11, Func. Count: 80, Neg. LLF: 166.90888261019856
Iteration: 12, Func. Count: 87, Neg. LLF: 166.86127997001142
Iteration: 13, Func. Count: 94, Neg. LLF: 166.69987620482516
Iteration: 14, Func. Count: 101, Neg. LLF: 166.6455709851015
Iteration: 15, Func. Count: 108, Neg. LLF: 166.63314072058068
Iteration: 16, Func. Count: 115, Neg. LLF: 166.63079100886097
Iteration: 17, Func. Count: 122, Neg. LLF: 166.6304533090428
Iteration: 18, Func. Count: 129, Neg. LLF: 166.63042740316334
Iteration: 19, Func. Count: 136, Neg. LLF: 166.63042559713378
Iteration: 20, Func. Count: 142, Neg. LLF: 166.6304256645027
Optimization terminated successfully (Exit mode 0)
Current function value: 166.63042559713378
Iterations: 20
Function evaluations: 142
Gradient evaluations: 20
Iteration: 1, Func. Count: 9, Neg. LLF: 193.5267109634651
Iteration: 2, Func. Count: 18, Neg. LLF: 168.89435035135025
Iteration: 3, Func. Count: 26, Neg. LLF: 221.6207821563554
Iteration: 4, Func. Count: 35, Neg. LLF: 168.389838068842
Iteration: 5, Func. Count: 43, Neg. LLF: 168.6458230734674
Iteration: 6, Func. Count: 52, Neg. LLF: 168.20410600365176
Iteration: 7, Func. Count: 60, Neg. LLF: 168.09727455678347
Iteration: 8, Func. Count: 68, Neg. LLF: 167.8277393869163
Iteration: 9, Func. Count: 76, Neg. LLF: 167.3556866491554
Iteration: 10, Func. Count: 84, Neg. LLF: 166.65319215990465
Iteration: 11, Func. Count: 92, Neg. LLF: 166.63392502374379
Iteration: 12, Func. Count: 100, Neg. LLF: 166.63294513912854
Iteration: 13, Func. Count: 108, Neg. LLF: 166.63149666882762
Iteration: 14, Func. Count: 116, Neg. LLF: 166.63106242885883
Iteration: 15, Func. Count: 124, Neg. LLF: 166.6306030528982
Iteration: 16, Func. Count: 132, Neg. LLF: 166.63050590539694
Iteration: 17, Func. Count: 140, Neg. LLF: 166.63046146163867
Iteration: 18, Func. Count: 148, Neg. LLF: 166.6304367441438
Iteration: 19, Func. Count: 156, Neg. LLF: 166.63042665295302
Iteration: 20, Func. Count: 164, Neg. LLF: 166.63042561052342
Iteration: 21, Func. Count: 171, Neg. LLF: 166.6304256542528
Optimization terminated successfully (Exit mode 0)
Current function value: 166.63042561052342
Iterations: 21
Function evaluations: 171
Gradient evaluations: 21
Iteration: 1, Func. Count: 10, Neg. LLF: 280.8134759089703
Iteration: 2, Func. Count: 20, Neg. LLF: 208.16379955609082
Iteration: 3, Func. Count: 30, Neg. LLF: 169.5109253236268
Iteration: 4, Func. Count: 40, Neg. LLF: 169.003980677802
Iteration: 5, Func. Count: 50, Neg. LLF: 168.48171531260897
Iteration: 6, Func. Count: 59, Neg. LLF: 168.25746809730921
Iteration: 7, Func. Count: 68, Neg. LLF: 168.2491368087538
Iteration: 8, Func. Count: 78, Neg. LLF: 167.96389692685662
Iteration: 9, Func. Count: 87, Neg. LLF: 167.47331401579632
Iteration: 10, Func. Count: 96, Neg. LLF: 166.99742548109307
Iteration: 11, Func. Count: 105, Neg. LLF: 166.65970547931067
Iteration: 12, Func. Count: 114, Neg. LLF: 166.6452858473468
Iteration: 13, Func. Count: 123, Neg. LLF: 166.6384572203208
Iteration: 14, Func. Count: 132, Neg. LLF: 166.63461076693392
Iteration: 15, Func. Count: 141, Neg. LLF: 166.63135489900182
Iteration: 16, Func. Count: 150, Neg. LLF: 166.63067479544566
Iteration: 17, Func. Count: 159, Neg. LLF: 166.63050494921492
Iteration: 18, Func. Count: 168, Neg. LLF: 166.63044453310005
Iteration: 19, Func. Count: 177, Neg. LLF: 166.63042901261323
Iteration: 20, Func. Count: 186, Neg. LLF: 166.63042681677902
Iteration: 21, Func. Count: 194, Neg. LLF: 166.63042686861002
Optimization terminated successfully (Exit mode 0)
Current function value: 166.63042681677902
Iterations: 21
Function evaluations: 194
Gradient evaluations: 21
Iteration: 1, Func. Count: 11, Neg. LLF: 168.53716566587636
Iteration: 2, Func. Count: 21, Neg. LLF: 167.04395190645303
Iteration: 3, Func. Count: 31, Neg. LLF: 168.83118019985776
Iteration: 4, Func. Count: 42, Neg. LLF: 171.0361998022864
Iteration: 5, Func. Count: 53, Neg. LLF: 177.12897735558417
Iteration: 6, Func. Count: 64, Neg. LLF: 166.58063099524486
Iteration: 7, Func. Count: 75, Neg. LLF: 166.73685863441773
Iteration: 8, Func. Count: 86, Neg. LLF: 166.16197127983887
Iteration: 9, Func. Count: 96, Neg. LLF: 166.15526285228202
Iteration: 10, Func. Count: 106, Neg. LLF: 166.1547197446326
Iteration: 11, Func. Count: 116, Neg. LLF: 166.154556446917
Iteration: 12, Func. Count: 126, Neg. LLF: 166.15417926140114
Iteration: 13, Func. Count: 136, Neg. LLF: 166.15338804532863
Iteration: 14, Func. Count: 146, Neg. LLF: 166.15232819818817
Iteration: 15, Func. Count: 156, Neg. LLF: 166.1515278656887
Iteration: 16, Func. Count: 166, Neg. LLF: 166.15129942679516
Iteration: 17, Func. Count: 176, Neg. LLF: 166.15128058797123
Iteration: 18, Func. Count: 185, Neg. LLF: 166.15128058794642
Optimization terminated successfully (Exit mode 0)
Current function value: 166.15128058797123
Iterations: 18
Function evaluations: 185
Gradient evaluations: 18
Iteration: 1, Func. Count: 12, Neg. LLF: 168.19209555977645
Iteration: 2, Func. Count: 23, Neg. LLF: 167.40288903583541
Iteration: 3, Func. Count: 34, Neg. LLF: 209.9808864997487
Iteration: 4, Func. Count: 46, Neg. LLF: 169.68120968028418
Iteration: 5, Func. Count: 58, Neg. LLF: 171.1941649193908
Iteration: 6, Func. Count: 70, Neg. LLF: 166.21989839686168
Iteration: 7, Func. Count: 81, Neg. LLF: 166.1934894679465
Iteration: 8, Func. Count: 92, Neg. LLF: 166.1614815397656
Iteration: 9, Func. Count: 103, Neg. LLF: 166.15616631152216
Iteration: 10, Func. Count: 114, Neg. LLF: 166.15311290252282
Iteration: 11, Func. Count: 125, Neg. LLF: 166.1528294499384
Iteration: 12, Func. Count: 136, Neg. LLF: 166.15276573107968
Iteration: 13, Func. Count: 147, Neg. LLF: 166.15252877687612
Iteration: 14, Func. Count: 158, Neg. LLF: 166.1521116232708
Iteration: 15, Func. Count: 169, Neg. LLF: 166.1516070558022
Iteration: 16, Func. Count: 180, Neg. LLF: 166.15133392727256
Iteration: 17, Func. Count: 191, Neg. LLF: 166.15128308315096
Iteration: 18, Func. Count: 202, Neg. LLF: 166.15128023230093
Iteration: 19, Func. Count: 212, Neg. LLF: 166.15128027710605
Optimization terminated successfully (Exit mode 0)
Current function value: 166.15128023230093
Iterations: 19
Function evaluations: 212
Gradient evaluations: 19
Iteration: 1, Func. Count: 5, Neg. LLF: 181.21509931727863
Iteration: 2, Func. Count: 10, Neg. LLF: 180.42702146186355
Iteration: 3, Func. Count: 14, Neg. LLF: 180.16917034376377
Iteration: 4, Func. Count: 18, Neg. LLF: 179.97362338878656
Iteration: 5, Func. Count: 22, Neg. LLF: 179.26678187500943
Iteration: 6, Func. Count: 26, Neg. LLF: 178.6850136003491
Iteration: 7, Func. Count: 30, Neg. LLF: 178.3188364558313
Iteration: 8, Func. Count: 34, Neg. LLF: 178.4650770922285
Iteration: 9, Func. Count: 39, Neg. LLF: 178.22378001624972
Iteration: 10, Func. Count: 43, Neg. LLF: 178.20752326707102
Iteration: 11, Func. Count: 47, Neg. LLF: 178.2041723019992
Iteration: 12, Func. Count: 51, Neg. LLF: 178.20379538161185
Iteration: 13, Func. Count: 55, Neg. LLF: 178.20377857348123
Iteration: 14, Func. Count: 59, Neg. LLF: 178.20377395307446
Iteration: 15, Func. Count: 62, Neg. LLF: 178.20377395308063
Optimization terminated successfully (Exit mode 0)
Current function value: 178.20377395307446
Iterations: 15
Function evaluations: 62
Gradient evaluations: 15
Iteration: 1, Func. Count: 6, Neg. LLF: 300.0016471842823
Iteration: 2, Func. Count: 12, Neg. LLF: 168.10824814255434
Iteration: 3, Func. Count: 17, Neg. LLF: 168.0485262829561
Iteration: 4, Func. Count: 23, Neg. LLF: 167.87086404603107
Iteration: 5, Func. Count: 28, Neg. LLF: 167.85532384318714
Iteration: 6, Func. Count: 33, Neg. LLF: 167.85071862338665
Iteration: 7, Func. Count: 38, Neg. LLF: 167.85043064133947
Iteration: 8, Func. Count: 43, Neg. LLF: 167.85042735793866
Iteration: 9, Func. Count: 47, Neg. LLF: 167.85042729101067
Optimization terminated successfully (Exit mode 0)
Current function value: 167.85042735793866
Iterations: 9
Function evaluations: 47
Gradient evaluations: 9
Iteration: 1, Func. Count: 7, Neg. LLF: 220.4845187277729
Iteration: 2, Func. Count: 14, Neg. LLF: 168.67143508099554
Iteration: 3, Func. Count: 20, Neg. LLF: 171.24166924918615
Iteration: 4, Func. Count: 27, Neg. LLF: 168.42525281593038
Iteration: 5, Func. Count: 33, Neg. LLF: 168.30639715092647
Iteration: 6, Func. Count: 39, Neg. LLF: 167.99596743970818
Iteration: 7, Func. Count: 45, Neg. LLF: 167.9031159973199
Iteration: 8, Func. Count: 51, Neg. LLF: 167.85249091368007
Iteration: 9, Func. Count: 57, Neg. LLF: 167.85046504176236
Iteration: 10, Func. Count: 63, Neg. LLF: 167.85042736744583
Iteration: 11, Func. Count: 68, Neg. LLF: 167.85042740999867
Optimization terminated successfully (Exit mode 0)
Current function value: 167.85042736744583
Iterations: 11
Function evaluations: 68
Gradient evaluations: 11
Iteration: 1, Func. Count: 8, Neg. LLF: 218.1548896567103
Iteration: 2, Func. Count: 16, Neg. LLF: 168.6327708226348
Iteration: 3, Func. Count: 23, Neg. LLF: 168.60594127853628
Iteration: 4, Func. Count: 31, Neg. LLF: 168.45072617834384
Iteration: 5, Func. Count: 38, Neg. LLF: 168.17112658527242
Iteration: 6, Func. Count: 45, Neg. LLF: 168.02340256256537
Iteration: 7, Func. Count: 52, Neg. LLF: 167.8859157804818
Iteration: 8, Func. Count: 59, Neg. LLF: 167.85070175830617
Iteration: 9, Func. Count: 66, Neg. LLF: 167.85043392591422
Iteration: 10, Func. Count: 73, Neg. LLF: 167.850427356526
Iteration: 11, Func. Count: 79, Neg. LLF: 167.85042743908892
Optimization terminated successfully (Exit mode 0)
Current function value: 167.850427356526
Iterations: 11
Function evaluations: 79
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 217.5280197426628
Iteration: 2, Func. Count: 18, Neg. LLF: 168.67774726278984
Iteration: 3, Func. Count: 26, Neg. LLF: 168.61820016422962
Iteration: 4, Func. Count: 34, Neg. LLF: 168.46837720310043
Iteration: 5, Func. Count: 42, Neg. LLF: 174.45926185866418
Iteration: 6, Func. Count: 51, Neg. LLF: 168.31397465583376
Iteration: 7, Func. Count: 60, Neg. LLF: 167.89968185061005
Iteration: 8, Func. Count: 68, Neg. LLF: 167.85517929076573
Iteration: 9, Func. Count: 76, Neg. LLF: 167.85052609833815
Iteration: 10, Func. Count: 84, Neg. LLF: 167.85042836035723
Iteration: 11, Func. Count: 92, Neg. LLF: 167.85042734811464
Iteration: 12, Func. Count: 99, Neg. LLF: 167.8504274329777
Optimization terminated successfully (Exit mode 0)
Current function value: 167.85042734811464
Iterations: 12
Function evaluations: 99
Gradient evaluations: 12
Iteration: 1, Func. Count: 6, Neg. LLF: 179.1876543815913
Iteration: 2, Func. Count: 12, Neg. LLF: 177.7838127277907
Iteration: 3, Func. Count: 17, Neg. LLF: 177.72451546193324
Iteration: 4, Func. Count: 22, Neg. LLF: 177.70651751538978
Iteration: 5, Func. Count: 28, Neg. LLF: 177.43153846296352
Iteration: 6, Func. Count: 33, Neg. LLF: 177.05084828116142
Iteration: 7, Func. Count: 38, Neg. LLF: 176.8205564295762
Iteration: 8, Func. Count: 43, Neg. LLF: 176.7345500177375
Iteration: 9, Func. Count: 48, Neg. LLF: 176.6667793457487
Iteration: 10, Func. Count: 53, Neg. LLF: 176.62177506132443
Iteration: 11, Func. Count: 58, Neg. LLF: 176.59605321510975
Iteration: 12, Func. Count: 63, Neg. LLF: 176.591159282791
Iteration: 13, Func. Count: 68, Neg. LLF: 176.58954195386175
Iteration: 14, Func. Count: 73, Neg. LLF: 176.58951257999604
Iteration: 15, Func. Count: 78, Neg. LLF: 176.5895098708162
Iteration: 16, Func. Count: 82, Neg. LLF: 176.58950987081639
Optimization terminated successfully (Exit mode 0)
Current function value: 176.5895098708162
Iterations: 16
Function evaluations: 82
Gradient evaluations: 16
Iteration: 1, Func. Count: 7, Neg. LLF: 269.88584595899806
Iteration: 2, Func. Count: 14, Neg. LLF: 167.71175297768124
Iteration: 3, Func. Count: 21, Neg. LLF: 171.78430441735546
Iteration: 4, Func. Count: 28, Neg. LLF: 167.38189657760287
Iteration: 5, Func. Count: 34, Neg. LLF: 167.23416182499344
Iteration: 6, Func. Count: 40, Neg. LLF: 167.22993705361569
Iteration: 7, Func. Count: 46, Neg. LLF: 167.22876188759898
Iteration: 8, Func. Count: 52, Neg. LLF: 167.22854473696728
Iteration: 9, Func. Count: 58, Neg. LLF: 167.22854075427492
Iteration: 10, Func. Count: 63, Neg. LLF: 167.22854070873626
Optimization terminated successfully (Exit mode 0)
Current function value: 167.22854075427492
Iterations: 10
Function evaluations: 63
Gradient evaluations: 10
Iteration: 1, Func. Count: 8, Neg. LLF: 249.10996601881476
Iteration: 2, Func. Count: 16, Neg. LLF: 169.48545529234528
Iteration: 3, Func. Count: 24, Neg. LLF: 167.95031559961245
Iteration: 4, Func. Count: 31, Neg. LLF: 167.70348304091985
Iteration: 5, Func. Count: 38, Neg. LLF: 174.67116872489797
Iteration: 6, Func. Count: 46, Neg. LLF: 167.57492253312256
Iteration: 7, Func. Count: 53, Neg. LLF: 167.5218865820167
Iteration: 8, Func. Count: 60, Neg. LLF: 167.43577632788651
Iteration: 9, Func. Count: 67, Neg. LLF: 167.3531376958114
Iteration: 10, Func. Count: 74, Neg. LLF: 167.27277089267437
Iteration: 11, Func. Count: 81, Neg. LLF: 167.23272188298617
Iteration: 12, Func. Count: 88, Neg. LLF: 167.22864969517127
Iteration: 13, Func. Count: 95, Neg. LLF: 167.22854436412229
Iteration: 14, Func. Count: 102, Neg. LLF: 167.22854074786568
Iteration: 15, Func. Count: 108, Neg. LLF: 167.22854079430448
Optimization terminated successfully (Exit mode 0)
Current function value: 167.22854074786568
Iterations: 15
Function evaluations: 108
Gradient evaluations: 15
Iteration: 1, Func. Count: 9, Neg. LLF: 247.38164429563756
Iteration: 2, Func. Count: 18, Neg. LLF: 169.61463533959355
Iteration: 3, Func. Count: 26, Neg. LLF: 168.06885030366985
Iteration: 4, Func. Count: 34, Neg. LLF: 295.42730719768707
Iteration: 5, Func. Count: 44, Neg. LLF: 170.7519315368819
Iteration: 6, Func. Count: 53, Neg. LLF: 167.60879683850624
Iteration: 7, Func. Count: 61, Neg. LLF: 167.52125141787167
Iteration: 8, Func. Count: 69, Neg. LLF: 167.48057094485497
Iteration: 9, Func. Count: 77, Neg. LLF: 167.29263624406985
Iteration: 10, Func. Count: 85, Neg. LLF: 167.3229774357544
Iteration: 11, Func. Count: 94, Neg. LLF: 167.22968787486855
Iteration: 12, Func. Count: 102, Neg. LLF: 167.22854988280974
Iteration: 13, Func. Count: 110, Neg. LLF: 167.22854281563514
Iteration: 14, Func. Count: 118, Neg. LLF: 167.22854072618262
Iteration: 15, Func. Count: 125, Neg. LLF: 167.2285408114733
Optimization terminated successfully (Exit mode 0)
Current function value: 167.22854072618262
Iterations: 15
Function evaluations: 125
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 181.53112236392894
Iteration: 2, Func. Count: 20, Neg. LLF: 169.94173236032273
Iteration: 3, Func. Count: 29, Neg. LLF: 176.61487127194138
Iteration: 4, Func. Count: 39, Neg. LLF: 239.62476104074898
Iteration: 5, Func. Count: 49, Neg. LLF: 168.13931263114517
Iteration: 6, Func. Count: 58, Neg. LLF: 167.60701897914936
Iteration: 7, Func. Count: 67, Neg. LLF: 167.6419754134933
Iteration: 8, Func. Count: 77, Neg. LLF: 167.5457470969798
Iteration: 9, Func. Count: 86, Neg. LLF: 167.3983299398457
Iteration: 10, Func. Count: 95, Neg. LLF: 167.5948330181615
Iteration: 11, Func. Count: 105, Neg. LLF: 167.24154045144377
Iteration: 12, Func. Count: 114, Neg. LLF: 167.22925134895232
Iteration: 13, Func. Count: 123, Neg. LLF: 167.22856942281607
Iteration: 14, Func. Count: 132, Neg. LLF: 167.22854162576493
Iteration: 15, Func. Count: 141, Neg. LLF: 167.2285407567303
Optimization terminated successfully (Exit mode 0)
Current function value: 167.2285407567303
Iterations: 15
Function evaluations: 141
Gradient evaluations: 15
Iteration: 1, Func. Count: 7, Neg. LLF: 183.5027400562428
Iteration: 2, Func. Count: 15, Neg. LLF: 172.9328861997122
Iteration: 3, Func. Count: 22, Neg. LLF: 171.12418874399174
Iteration: 4, Func. Count: 28, Neg. LLF: 170.85638272763447
Iteration: 5, Func. Count: 34, Neg. LLF: 170.8330810993958
Iteration: 6, Func. Count: 40, Neg. LLF: 170.74499432177197
Iteration: 7, Func. Count: 46, Neg. LLF: 170.65615033238092
Iteration: 8, Func. Count: 52, Neg. LLF: 170.58792287639457
Iteration: 9, Func. Count: 58, Neg. LLF: 170.35852061504684
Iteration: 10, Func. Count: 64, Neg. LLF: 170.27663849910275
Iteration: 11, Func. Count: 70, Neg. LLF: 170.21181552643318
Iteration: 12, Func. Count: 76, Neg. LLF: 170.20088532239726
Iteration: 13, Func. Count: 82, Neg. LLF: 170.19199744288406
Iteration: 14, Func. Count: 88, Neg. LLF: 170.1869890851119
Iteration: 15, Func. Count: 94, Neg. LLF: 170.18665921790657
Iteration: 16, Func. Count: 100, Neg. LLF: 170.18665674323304
Iteration: 17, Func. Count: 105, Neg. LLF: 170.18665674323574
Optimization terminated successfully (Exit mode 0)
Current function value: 170.18665674323304
Iterations: 17
Function evaluations: 105
Gradient evaluations: 17
Iteration: 1, Func. Count: 8, Neg. LLF: 560.2156925037311
Iteration: 2, Func. Count: 16, Neg. LLF: 209.50449272015675
Iteration: 3, Func. Count: 24, Neg. LLF: 171.99264191810514
Iteration: 4, Func. Count: 32, Neg. LLF: 165.9910699262338
Iteration: 5, Func. Count: 40, Neg. LLF: 165.7845061671216
Iteration: 6, Func. Count: 47, Neg. LLF: 167.04781286750796
Iteration: 7, Func. Count: 55, Neg. LLF: 165.7005018052367
Iteration: 8, Func. Count: 62, Neg. LLF: 165.6994771645734
Iteration: 9, Func. Count: 69, Neg. LLF: 165.699031672046
Iteration: 10, Func. Count: 76, Neg. LLF: 165.69889809688237
Iteration: 11, Func. Count: 83, Neg. LLF: 165.69888684020486
Iteration: 12, Func. Count: 90, Neg. LLF: 165.6988855430928
Iteration: 13, Func. Count: 96, Neg. LLF: 165.69888548073675
Optimization terminated successfully (Exit mode 0)
Current function value: 165.6988855430928
Iterations: 13
Function evaluations: 96
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 281.13851964160983
Iteration: 2, Func. Count: 18, Neg. LLF: 182.4437571903017
Iteration: 3, Func. Count: 27, Neg. LLF: 166.92759942982536
Iteration: 4, Func. Count: 35, Neg. LLF: 166.38976101169837
Iteration: 5, Func. Count: 43, Neg. LLF: 176.72869888814324
Iteration: 6, Func. Count: 52, Neg. LLF: 167.41324638144295
Iteration: 7, Func. Count: 61, Neg. LLF: 166.23861218715163
Iteration: 8, Func. Count: 70, Neg. LLF: 165.99107728679147
Iteration: 9, Func. Count: 78, Neg. LLF: 165.9141590759
Iteration: 10, Func. Count: 86, Neg. LLF: 165.8536365229726
Iteration: 11, Func. Count: 94, Neg. LLF: 165.8500189403848
Iteration: 12, Func. Count: 103, Neg. LLF: 165.70059306481318
Iteration: 13, Func. Count: 111, Neg. LLF: 165.69901340403976
Iteration: 14, Func. Count: 119, Neg. LLF: 165.69893200848816
Iteration: 15, Func. Count: 127, Neg. LLF: 165.69888574368386
Iteration: 16, Func. Count: 134, Neg. LLF: 165.6988857580725
Optimization terminated successfully (Exit mode 0)
Current function value: 165.69888574368386
Iterations: 16
Function evaluations: 134
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 279.4453981906509
Iteration: 2, Func. Count: 20, Neg. LLF: 186.19847501940356
Iteration: 3, Func. Count: 30, Neg. LLF: 167.4690587335254
Iteration: 4, Func. Count: 39, Neg. LLF: 166.79154242795113
Iteration: 5, Func. Count: 48, Neg. LLF: 167.15330993760927
Iteration: 6, Func. Count: 58, Neg. LLF: 166.41116360699309
Iteration: 7, Func. Count: 68, Neg. LLF: 166.6234278660565
Iteration: 8, Func. Count: 78, Neg. LLF: 166.07212788229845
Iteration: 9, Func. Count: 87, Neg. LLF: 165.95109461039067
Iteration: 10, Func. Count: 96, Neg. LLF: 165.88488454526419
Iteration: 11, Func. Count: 105, Neg. LLF: 165.80748456210662
Iteration: 12, Func. Count: 114, Neg. LLF: 165.73026033974187
Iteration: 13, Func. Count: 123, Neg. LLF: 165.70190025405094
Iteration: 14, Func. Count: 132, Neg. LLF: 165.69915456363248
Iteration: 15, Func. Count: 141, Neg. LLF: 165.69890011637273
Iteration: 16, Func. Count: 150, Neg. LLF: 165.69888581495695
Iteration: 17, Func. Count: 158, Neg. LLF: 165.69888579431293
Optimization terminated successfully (Exit mode 0)
Current function value: 165.69888581495695
Iterations: 17
Function evaluations: 158
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 278.278248145091
Iteration: 2, Func. Count: 22, Neg. LLF: 222.08265908245355
Iteration: 3, Func. Count: 33, Neg. LLF: 167.21665263649302
Iteration: 4, Func. Count: 43, Neg. LLF: 168.90826400708113
Iteration: 5, Func. Count: 54, Neg. LLF: 187.39091371990347
Iteration: 6, Func. Count: 65, Neg. LLF: 168.71799851004403
Iteration: 7, Func. Count: 76, Neg. LLF: 166.21292854516784
Iteration: 8, Func. Count: 86, Neg. LLF: 166.1127039944138
Iteration: 9, Func. Count: 96, Neg. LLF: 165.97163159131253
Iteration: 10, Func. Count: 106, Neg. LLF: 165.88918053399502
Iteration: 11, Func. Count: 116, Neg. LLF: 165.826823368879
Iteration: 12, Func. Count: 126, Neg. LLF: 165.76900274609827
Iteration: 13, Func. Count: 136, Neg. LLF: 165.72273562322812
Iteration: 14, Func. Count: 146, Neg. LLF: 165.70026524461292
Iteration: 15, Func. Count: 156, Neg. LLF: 165.6990119768083
Iteration: 16, Func. Count: 166, Neg. LLF: 165.69890038944467
Iteration: 17, Func. Count: 176, Neg. LLF: 165.69888567315832
Iteration: 18, Func. Count: 185, Neg. LLF: 165.69888566455563
Optimization terminated successfully (Exit mode 0)
Current function value: 165.69888567315832
Iterations: 18
Function evaluations: 185
Gradient evaluations: 18
Iteration: 1, Func. Count: 8, Neg. LLF: 170.93043607950432
Iteration: 2, Func. Count: 16, Neg. LLF: 182.33603801087835
Iteration: 3, Func. Count: 24, Neg. LLF: 167.68853214217106
Iteration: 4, Func. Count: 31, Neg. LLF: 167.49155112143418
Iteration: 5, Func. Count: 38, Neg. LLF: 167.37461106699593
Iteration: 6, Func. Count: 45, Neg. LLF: 167.27487550191802
Iteration: 7, Func. Count: 52, Neg. LLF: 167.20667626912743
Iteration: 8, Func. Count: 59, Neg. LLF: 167.11436699293387
Iteration: 9, Func. Count: 66, Neg. LLF: 167.03631047260214
Iteration: 10, Func. Count: 73, Neg. LLF: 166.9959197692547
Iteration: 11, Func. Count: 80, Neg. LLF: 166.94113129502358
Iteration: 12, Func. Count: 87, Neg. LLF: 166.83679225873854
Iteration: 13, Func. Count: 94, Neg. LLF: 166.71330008101077
Iteration: 14, Func. Count: 101, Neg. LLF: 167.1799400593486
Iteration: 15, Func. Count: 109, Neg. LLF: 166.65608683191365
Iteration: 16, Func. Count: 116, Neg. LLF: 166.58388420650127
Iteration: 17, Func. Count: 123, Neg. LLF: 166.56717363159882
Iteration: 18, Func. Count: 130, Neg. LLF: 166.5315015211434
Iteration: 19, Func. Count: 137, Neg. LLF: 166.52712296177526
Iteration: 20, Func. Count: 144, Neg. LLF: 166.526377569768
Iteration: 21, Func. Count: 151, Neg. LLF: 166.5263557525957
Iteration: 22, Func. Count: 158, Neg. LLF: 166.52635470860147
Iteration: 23, Func. Count: 164, Neg. LLF: 166.52635470859107
Optimization terminated successfully (Exit mode 0)
Current function value: 166.52635470860147
Iterations: 23
Function evaluations: 164
Gradient evaluations: 23
Iteration: 1, Func. Count: 9, Neg. LLF: 644.4254470371425
Iteration: 2, Func. Count: 18, Neg. LLF: 469.6397345534746
Iteration: 3, Func. Count: 27, Neg. LLF: 165.72470419116328
Iteration: 4, Func. Count: 35, Neg. LLF: 165.76626302253905
Iteration: 5, Func. Count: 44, Neg. LLF: 166.59655600471592
Iteration: 6, Func. Count: 53, Neg. LLF: 168.20835128399975
Iteration: 7, Func. Count: 62, Neg. LLF: 165.3986798650095
Iteration: 8, Func. Count: 70, Neg. LLF: 165.38890697772837
Iteration: 9, Func. Count: 78, Neg. LLF: 165.38823330884804
Iteration: 10, Func. Count: 86, Neg. LLF: 165.38791954836117
Iteration: 11, Func. Count: 94, Neg. LLF: 165.38770656691315
Iteration: 12, Func. Count: 102, Neg. LLF: 165.38764840589573
Iteration: 13, Func. Count: 110, Neg. LLF: 165.38764286298644
Iteration: 14, Func. Count: 117, Neg. LLF: 165.38764280406434
Optimization terminated successfully (Exit mode 0)
Current function value: 165.38764286298644
Iterations: 14
Function evaluations: 117
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 280.76948433502304
Iteration: 2, Func. Count: 20, Neg. LLF: 184.51161357447612
Iteration: 3, Func. Count: 30, Neg. LLF: 172.56804868272926
Iteration: 4, Func. Count: 40, Neg. LLF: 165.81944774856873
Iteration: 5, Func. Count: 49, Neg. LLF: 165.7048204175113
Iteration: 6, Func. Count: 58, Neg. LLF: 165.75189986184506
Iteration: 7, Func. Count: 68, Neg. LLF: 165.68281772637343
Iteration: 8, Func. Count: 78, Neg. LLF: 165.57096296357133
Iteration: 9, Func. Count: 87, Neg. LLF: 165.55239743033627
Iteration: 10, Func. Count: 96, Neg. LLF: 165.50149941248887
Iteration: 11, Func. Count: 105, Neg. LLF: 165.45653849928448
Iteration: 12, Func. Count: 114, Neg. LLF: 165.4088207980521
Iteration: 13, Func. Count: 123, Neg. LLF: 165.3892534992535
Iteration: 14, Func. Count: 132, Neg. LLF: 165.3876860348079
Iteration: 15, Func. Count: 141, Neg. LLF: 165.3876433753831
Iteration: 16, Func. Count: 150, Neg. LLF: 165.38764279646787
Optimization terminated successfully (Exit mode 0)
Current function value: 165.38764279646787
Iterations: 16
Function evaluations: 150
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 279.479614884975
Iteration: 2, Func. Count: 22, Neg. LLF: 208.25906041116278
Iteration: 3, Func. Count: 33, Neg. LLF: 173.18295160573487
Iteration: 4, Func. Count: 44, Neg. LLF: 178.86231905163936
Iteration: 5, Func. Count: 55, Neg. LLF: 169.4538604368517
Iteration: 6, Func. Count: 66, Neg. LLF: 164.7963415250099
Iteration: 7, Func. Count: 76, Neg. LLF: 164.74126272400036
Iteration: 8, Func. Count: 86, Neg. LLF: 164.74025708577398
Iteration: 9, Func. Count: 97, Neg. LLF: 164.58574805011776
Iteration: 10, Func. Count: 107, Neg. LLF: 164.56290752523603
Iteration: 11, Func. Count: 117, Neg. LLF: 164.55982083854255
Iteration: 12, Func. Count: 127, Neg. LLF: 164.55813226951716
Iteration: 13, Func. Count: 137, Neg. LLF: 164.55269076060648
Iteration: 14, Func. Count: 147, Neg. LLF: 164.5495241985095
Iteration: 15, Func. Count: 157, Neg. LLF: 164.5482955624782
Iteration: 16, Func. Count: 167, Neg. LLF: 164.5481636194144
Iteration: 17, Func. Count: 177, Neg. LLF: 164.54813326031274
Iteration: 18, Func. Count: 187, Neg. LLF: 164.54812945382835
Iteration: 19, Func. Count: 196, Neg. LLF: 164.54812942704189
Optimization terminated successfully (Exit mode 0)
Current function value: 164.54812945382835
Iterations: 19
Function evaluations: 196
Gradient evaluations: 19
Iteration: 1, Func. Count: 12, Neg. LLF: 278.3483548517936
Iteration: 2, Func. Count: 24, Neg. LLF: 198.12849233265166
Iteration: 3, Func. Count: 36, Neg. LLF: 173.17677294312554
Iteration: 4, Func. Count: 48, Neg. LLF: 176.0107626300037
Iteration: 5, Func. Count: 60, Neg. LLF: 167.73237035679117
Iteration: 6, Func. Count: 72, Neg. LLF: 164.72397178507282
Iteration: 7, Func. Count: 83, Neg. LLF: 165.55325155993154
Iteration: 8, Func. Count: 96, Neg. LLF: 164.7422948932782
Iteration: 9, Func. Count: 108, Neg. LLF: 164.58484343272906
Iteration: 10, Func. Count: 119, Neg. LLF: 164.5692644453821
Iteration: 11, Func. Count: 130, Neg. LLF: 164.56098442754802
Iteration: 12, Func. Count: 141, Neg. LLF: 164.55917535017326
Iteration: 13, Func. Count: 152, Neg. LLF: 164.5552312126682
Iteration: 14, Func. Count: 163, Neg. LLF: 164.551830028542
Iteration: 15, Func. Count: 174, Neg. LLF: 164.54921147752415
Iteration: 16, Func. Count: 185, Neg. LLF: 164.5484320512691
Iteration: 17, Func. Count: 196, Neg. LLF: 164.54819849335706
Iteration: 18, Func. Count: 207, Neg. LLF: 164.54814145731947
Iteration: 19, Func. Count: 218, Neg. LLF: 164.54813121239567
Iteration: 20, Func. Count: 229, Neg. LLF: 164.5481293392906
Iteration: 21, Func. Count: 239, Neg. LLF: 164.54812942658037
Optimization terminated successfully (Exit mode 0)
Current function value: 164.5481293392906
Iterations: 21
Function evaluations: 239
Gradient evaluations: 21
Iteration: 1, Func. Count: 9, Neg. LLF: 171.10793672849815
Iteration: 2, Func. Count: 18, Neg. LLF: 183.09782872959747
Iteration: 3, Func. Count: 27, Neg. LLF: 167.62296960979305
Iteration: 4, Func. Count: 35, Neg. LLF: 167.47727828940666
Iteration: 5, Func. Count: 43, Neg. LLF: 167.27509326403236
Iteration: 6, Func. Count: 51, Neg. LLF: 167.21155273836223
Iteration: 7, Func. Count: 59, Neg. LLF: 167.12698794948489
Iteration: 8, Func. Count: 67, Neg. LLF: 167.06853489966457
Iteration: 9, Func. Count: 75, Neg. LLF: 167.0368482024032
Iteration: 10, Func. Count: 83, Neg. LLF: 166.91668938403663
Iteration: 11, Func. Count: 91, Neg. LLF: 166.70282987542274
Iteration: 12, Func. Count: 99, Neg. LLF: 167.3522807188831
Iteration: 13, Func. Count: 108, Neg. LLF: 166.63186135852726
Iteration: 14, Func. Count: 116, Neg. LLF: 166.58433729070822
Iteration: 15, Func. Count: 124, Neg. LLF: 166.54025318863376
Iteration: 16, Func. Count: 132, Neg. LLF: 166.52921632316034
Iteration: 17, Func. Count: 140, Neg. LLF: 166.52675722066047
Iteration: 18, Func. Count: 148, Neg. LLF: 166.52639306779352
Iteration: 19, Func. Count: 156, Neg. LLF: 166.52635596017768
Iteration: 20, Func. Count: 164, Neg. LLF: 166.5263547134759
Iteration: 21, Func. Count: 171, Neg. LLF: 166.52635474979417
Optimization terminated successfully (Exit mode 0)
Current function value: 166.5263547134759
Iterations: 21
Function evaluations: 171
Gradient evaluations: 21
Iteration: 1, Func. Count: 10, Neg. LLF: 282.43895206175165
Iteration: 2, Func. Count: 20, Neg. LLF: 270.3962242721883
Iteration: 3, Func. Count: 30, Neg. LLF: 172.37432670005683
Iteration: 4, Func. Count: 40, Neg. LLF: 165.74581616268293
Iteration: 5, Func. Count: 49, Neg. LLF: 165.68600040252687
Iteration: 6, Func. Count: 58, Neg. LLF: 165.62454080461166
Iteration: 7, Func. Count: 67, Neg. LLF: 165.5941660952908
Iteration: 8, Func. Count: 76, Neg. LLF: 165.5698908493509
Iteration: 9, Func. Count: 85, Neg. LLF: 165.4741011905773
Iteration: 10, Func. Count: 94, Neg. LLF: 165.43082806096382
Iteration: 11, Func. Count: 103, Neg. LLF: 165.39755692053402
Iteration: 12, Func. Count: 112, Neg. LLF: 165.38822589951758
Iteration: 13, Func. Count: 121, Neg. LLF: 165.3876833174962
Iteration: 14, Func. Count: 130, Neg. LLF: 165.3876430834117
Iteration: 15, Func. Count: 138, Neg. LLF: 165.38764302440856
Optimization terminated successfully (Exit mode 0)
Current function value: 165.3876430834117
Iterations: 15
Function evaluations: 138
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 279.4968564456803
Iteration: 2, Func. Count: 22, Neg. LLF: 203.71633627470226
Iteration: 3, Func. Count: 33, Neg. LLF: 172.7364966364304
Iteration: 4, Func. Count: 44, Neg. LLF: 165.7964190042917
Iteration: 5, Func. Count: 54, Neg. LLF: 165.73963774597053
Iteration: 6, Func. Count: 65, Neg. LLF: 165.82145009084834
Iteration: 7, Func. Count: 76, Neg. LLF: 165.58883210114087
Iteration: 8, Func. Count: 86, Neg. LLF: 165.5398219077122
Iteration: 9, Func. Count: 96, Neg. LLF: 165.52091108369353
Iteration: 10, Func. Count: 106, Neg. LLF: 165.4726554357711
Iteration: 11, Func. Count: 116, Neg. LLF: 165.4233888414837
Iteration: 12, Func. Count: 126, Neg. LLF: 165.39388556920022
Iteration: 13, Func. Count: 136, Neg. LLF: 165.3876841416191
Iteration: 14, Func. Count: 146, Neg. LLF: 165.38764491325546
Iteration: 15, Func. Count: 156, Neg. LLF: 165.38764300707913
Iteration: 16, Func. Count: 165, Neg. LLF: 165.3876429515666
Optimization terminated successfully (Exit mode 0)
Current function value: 165.38764300707913
Iterations: 16
Function evaluations: 165
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 277.8746925528005
Iteration: 2, Func. Count: 24, Neg. LLF: 207.97562470085828
Iteration: 3, Func. Count: 36, Neg. LLF: 173.1974679384024
Iteration: 4, Func. Count: 48, Neg. LLF: 174.28671801431585
Iteration: 5, Func. Count: 60, Neg. LLF: 166.7384800284327
Iteration: 6, Func. Count: 72, Neg. LLF: 164.75730219966482
Iteration: 7, Func. Count: 83, Neg. LLF: 165.38694330184612
Iteration: 8, Func. Count: 95, Neg. LLF: 164.61458951489809
Iteration: 9, Func. Count: 106, Neg. LLF: 164.5834550516875
Iteration: 10, Func. Count: 117, Neg. LLF: 164.56030228537955
Iteration: 11, Func. Count: 128, Neg. LLF: 164.5588343606685
Iteration: 12, Func. Count: 139, Neg. LLF: 164.55477236969205
Iteration: 13, Func. Count: 150, Neg. LLF: 164.55165440483987
Iteration: 14, Func. Count: 161, Neg. LLF: 164.5491623767083
Iteration: 15, Func. Count: 172, Neg. LLF: 164.5483968976579
Iteration: 16, Func. Count: 183, Neg. LLF: 164.54817174592117
Iteration: 17, Func. Count: 194, Neg. LLF: 164.54813381252993
Iteration: 18, Func. Count: 205, Neg. LLF: 164.54812918313596
Iteration: 19, Func. Count: 215, Neg. LLF: 164.54812915634392
Optimization terminated successfully (Exit mode 0)
Current function value: 164.54812918313596
Iterations: 19
Function evaluations: 215
Gradient evaluations: 19
Iteration: 1, Func. Count: 13, Neg. LLF: 276.5391916729356
Iteration: 2, Func. Count: 26, Neg. LLF: 207.6138634302367
Iteration: 3, Func. Count: 39, Neg. LLF: 173.23099137513972
Iteration: 4, Func. Count: 52, Neg. LLF: 173.8747719183915
Iteration: 5, Func. Count: 65, Neg. LLF: 166.8567615570713
Iteration: 6, Func. Count: 78, Neg. LLF: 164.74531525829948
Iteration: 7, Func. Count: 90, Neg. LLF: 165.47326945986876
Iteration: 8, Func. Count: 103, Neg. LLF: 164.64148224778472
Iteration: 9, Func. Count: 115, Neg. LLF: 164.60622234934775
Iteration: 10, Func. Count: 127, Neg. LLF: 164.56795487036854
Iteration: 11, Func. Count: 139, Neg. LLF: 164.5600821829144
Iteration: 12, Func. Count: 151, Neg. LLF: 164.55441642245623
Iteration: 13, Func. Count: 163, Neg. LLF: 164.55275031180594
Iteration: 14, Func. Count: 175, Neg. LLF: 164.55158874285075
Iteration: 15, Func. Count: 187, Neg. LLF: 164.55078215357727
Iteration: 16, Func. Count: 199, Neg. LLF: 164.5494716091473
Iteration: 17, Func. Count: 211, Neg. LLF: 164.5485270573652
Iteration: 18, Func. Count: 223, Neg. LLF: 164.54817828375084
Iteration: 19, Func. Count: 235, Neg. LLF: 164.54813463054074
Iteration: 20, Func. Count: 247, Neg. LLF: 164.54812979211525
Iteration: 21, Func. Count: 259, Neg. LLF: 164.54812898427883
Optimization terminated successfully (Exit mode 0)
Current function value: 164.54812898427883
Iterations: 21
Function evaluations: 259
Gradient evaluations: 21
Iteration: 1, Func. Count: 6, Neg. LLF: 171.2308097486918
Iteration: 2, Func. Count: 12, Neg. LLF: 171.51033173591568
Iteration: 3, Func. Count: 19, Neg. LLF: 169.44242657674874
Iteration: 4, Func. Count: 24, Neg. LLF: 169.3362292240915
Iteration: 5, Func. Count: 29, Neg. LLF: 169.2277332097703
Iteration: 6, Func. Count: 34, Neg. LLF: 168.58572771162417
Iteration: 7, Func. Count: 39, Neg. LLF: 166.89996977496972
Iteration: 8, Func. Count: 44, Neg. LLF: 166.84882223625866
Iteration: 9, Func. Count: 50, Neg. LLF: 166.33128775384384
Iteration: 10, Func. Count: 55, Neg. LLF: 166.21463823677917
Iteration: 11, Func. Count: 60, Neg. LLF: 166.1968778770519
Iteration: 12, Func. Count: 65, Neg. LLF: 166.1814664083133
Iteration: 13, Func. Count: 70, Neg. LLF: 166.14514763267954
Iteration: 14, Func. Count: 75, Neg. LLF: 166.14479021379356
Iteration: 15, Func. Count: 80, Neg. LLF: 166.14476289418852
Iteration: 16, Func. Count: 84, Neg. LLF: 166.14476288830627
Optimization terminated successfully (Exit mode 0)
Current function value: 166.14476289418852
Iterations: 16
Function evaluations: 84
Gradient evaluations: 16
Iteration: 1, Func. Count: 7, Neg. LLF: 182.39208466206645
Iteration: 2, Func. Count: 14, Neg. LLF: 370.17890119668243
Iteration: 3, Func. Count: 21, Neg. LLF: 165.0058232794393
Iteration: 4, Func. Count: 27, Neg. LLF: 166.9710351791036
Iteration: 5, Func. Count: 34, Neg. LLF: 164.6650838120507
Iteration: 6, Func. Count: 41, Neg. LLF: 164.46667226485832
Iteration: 7, Func. Count: 47, Neg. LLF: 164.45549117715197
Iteration: 8, Func. Count: 53, Neg. LLF: 164.4089949627146
Iteration: 9, Func. Count: 59, Neg. LLF: 164.34496427213242
Iteration: 10, Func. Count: 65, Neg. LLF: 164.3352036224944
Iteration: 11, Func. Count: 71, Neg. LLF: 164.33327276611553
Iteration: 12, Func. Count: 77, Neg. LLF: 164.3332351466561
Iteration: 13, Func. Count: 83, Neg. LLF: 164.333230312528
Iteration: 14, Func. Count: 88, Neg. LLF: 164.3332302917879
Optimization terminated successfully (Exit mode 0)
Current function value: 164.333230312528
Iterations: 14
Function evaluations: 88
Gradient evaluations: 14
Iteration: 1, Func. Count: 8, Neg. LLF: 181.91652346372095
Iteration: 2, Func. Count: 16, Neg. LLF: 199.97472781950992
Iteration: 3, Func. Count: 24, Neg. LLF: 231.93384141967988
Iteration: 4, Func. Count: 32, Neg. LLF: 164.88677010619287
Iteration: 5, Func. Count: 39, Neg. LLF: 165.4918445414248
Iteration: 6, Func. Count: 47, Neg. LLF: 164.4449160084629
Iteration: 7, Func. Count: 54, Neg. LLF: 164.4137836710956
Iteration: 8, Func. Count: 61, Neg. LLF: 164.34993021212566
Iteration: 9, Func. Count: 68, Neg. LLF: 164.33663078683406
Iteration: 10, Func. Count: 75, Neg. LLF: 164.3336409674552
Iteration: 11, Func. Count: 82, Neg. LLF: 164.3332314626046
Iteration: 12, Func. Count: 89, Neg. LLF: 164.33323027083566
Iteration: 13, Func. Count: 95, Neg. LLF: 164.33323029728123
Optimization terminated successfully (Exit mode 0)
Current function value: 164.33323027083566
Iterations: 13
Function evaluations: 95
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 181.57638236725063
Iteration: 2, Func. Count: 18, Neg. LLF: 190.01472503616904
Iteration: 3, Func. Count: 27, Neg. LLF: 170.1191827793621
Iteration: 4, Func. Count: 36, Neg. LLF: 164.7861829495312
Iteration: 5, Func. Count: 44, Neg. LLF: 165.85331298335888
Iteration: 6, Func. Count: 53, Neg. LLF: 164.57908513140657
Iteration: 7, Func. Count: 62, Neg. LLF: 164.48970308578834
Iteration: 8, Func. Count: 71, Neg. LLF: 164.33583716616593
Iteration: 9, Func. Count: 79, Neg. LLF: 164.31822226180597
Iteration: 10, Func. Count: 87, Neg. LLF: 164.30565268077598
Iteration: 11, Func. Count: 95, Neg. LLF: 164.3050522599358
Iteration: 12, Func. Count: 103, Neg. LLF: 164.30501394542662
Iteration: 13, Func. Count: 111, Neg. LLF: 164.30501298643182
Optimization terminated successfully (Exit mode 0)
Current function value: 164.30501298643182
Iterations: 13
Function evaluations: 111
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 181.3786463902332
Iteration: 2, Func. Count: 20, Neg. LLF: 168.20272722952927
Iteration: 3, Func. Count: 30, Neg. LLF: 186.25182989354332
Iteration: 4, Func. Count: 40, Neg. LLF: 170.65417155458059
Iteration: 5, Func. Count: 50, Neg. LLF: 165.53955187324482
Iteration: 6, Func. Count: 60, Neg. LLF: 168.4146336693569
Iteration: 7, Func. Count: 70, Neg. LLF: 164.52858183514695
Iteration: 8, Func. Count: 79, Neg. LLF: 164.31158680421714
Iteration: 9, Func. Count: 88, Neg. LLF: 164.2963105878237
Iteration: 10, Func. Count: 97, Neg. LLF: 164.27547682757688
Iteration: 11, Func. Count: 106, Neg. LLF: 164.25609541851023
Iteration: 12, Func. Count: 115, Neg. LLF: 164.25133825496647
Iteration: 13, Func. Count: 124, Neg. LLF: 164.25068280415033
Iteration: 14, Func. Count: 133, Neg. LLF: 164.25067364381061
Iteration: 15, Func. Count: 142, Neg. LLF: 164.25067313490842
Optimization terminated successfully (Exit mode 0)
Current function value: 164.25067313490842
Iterations: 15
Function evaluations: 142
Gradient evaluations: 15
Iteration: 1, Func. Count: 7, Neg. LLF: 171.2161494451975
Iteration: 2, Func. Count: 14, Neg. LLF: 169.44774251792998
Iteration: 3, Func. Count: 22, Neg. LLF: 168.7902227992209
Iteration: 4, Func. Count: 28, Neg. LLF: 168.70294718510283
Iteration: 5, Func. Count: 34, Neg. LLF: 168.4914849735504
Iteration: 6, Func. Count: 40, Neg. LLF: 168.0634236367566
Iteration: 7, Func. Count: 46, Neg. LLF: 167.6590420764831
Iteration: 8, Func. Count: 52, Neg. LLF: 166.2203405350189
Iteration: 9, Func. Count: 58, Neg. LLF: 165.79024999817392
Iteration: 10, Func. Count: 64, Neg. LLF: 165.5077015793875
Iteration: 11, Func. Count: 70, Neg. LLF: 165.47783071775356
Iteration: 12, Func. Count: 76, Neg. LLF: 165.4508208925612
Iteration: 13, Func. Count: 82, Neg. LLF: 165.42903766105124
Iteration: 14, Func. Count: 88, Neg. LLF: 165.42823081067434
Iteration: 15, Func. Count: 94, Neg. LLF: 165.42811757988767
Iteration: 16, Func. Count: 100, Neg. LLF: 165.42811270957463
Iteration: 17, Func. Count: 105, Neg. LLF: 165.42811270956452
Optimization terminated successfully (Exit mode 0)
Current function value: 165.42811270957463
Iterations: 17
Function evaluations: 105
Gradient evaluations: 17
Iteration: 1, Func. Count: 8, Neg. LLF: 215.48684142049112
Iteration: 2, Func. Count: 16, Neg. LLF: 186.20573610561752
Iteration: 3, Func. Count: 24, Neg. LLF: 167.57034268554068
Iteration: 4, Func. Count: 32, Neg. LLF: 165.58915025777392
Iteration: 5, Func. Count: 40, Neg. LLF: 164.41348467939255
Iteration: 6, Func. Count: 48, Neg. LLF: 163.95811690837016
Iteration: 7, Func. Count: 55, Neg. LLF: 163.88841774298209
Iteration: 8, Func. Count: 62, Neg. LLF: 163.87038503277452
Iteration: 9, Func. Count: 69, Neg. LLF: 163.86832905236383
Iteration: 10, Func. Count: 76, Neg. LLF: 163.8682672899271
Iteration: 11, Func. Count: 82, Neg. LLF: 163.86826727622983
Optimization terminated successfully (Exit mode 0)
Current function value: 163.8682672899271
Iterations: 11
Function evaluations: 82
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 181.73320265364558
Iteration: 2, Func. Count: 18, Neg. LLF: 189.65479052473287
Iteration: 3, Func. Count: 27, Neg. LLF: 165.50913321535586
Iteration: 4, Func. Count: 35, Neg. LLF: 170.72448904201337
Iteration: 5, Func. Count: 44, Neg. LLF: 173.13792791352054
Iteration: 6, Func. Count: 53, Neg. LLF: 163.98274950568603
Iteration: 7, Func. Count: 61, Neg. LLF: 164.43475970514578
Iteration: 8, Func. Count: 70, Neg. LLF: 163.8855683253804
Iteration: 9, Func. Count: 78, Neg. LLF: 163.87588633946896
Iteration: 10, Func. Count: 86, Neg. LLF: 163.86868085894588
Iteration: 11, Func. Count: 94, Neg. LLF: 163.86851025769772
Iteration: 12, Func. Count: 102, Neg. LLF: 163.8684316204285
Iteration: 13, Func. Count: 110, Neg. LLF: 163.86833100710362
Iteration: 14, Func. Count: 118, Neg. LLF: 163.86827878738686
Iteration: 15, Func. Count: 126, Neg. LLF: 163.8682678142671
Iteration: 16, Func. Count: 134, Neg. LLF: 163.86826708798333
Optimization terminated successfully (Exit mode 0)
Current function value: 163.86826708798333
Iterations: 16
Function evaluations: 134
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 181.5406956705591
Iteration: 2, Func. Count: 20, Neg. LLF: 187.14310960451405
Iteration: 3, Func. Count: 30, Neg. LLF: 166.73084627762822
Iteration: 4, Func. Count: 40, Neg. LLF: 205.40325427844357
Iteration: 5, Func. Count: 50, Neg. LLF: 165.58972045984154
Iteration: 6, Func. Count: 60, Neg. LLF: 171.20902224927036
Iteration: 7, Func. Count: 70, Neg. LLF: 163.989358783347
Iteration: 8, Func. Count: 79, Neg. LLF: 163.61036380153948
Iteration: 9, Func. Count: 88, Neg. LLF: 163.58763468411865
Iteration: 10, Func. Count: 97, Neg. LLF: 163.57673584500824
Iteration: 11, Func. Count: 106, Neg. LLF: 163.57575755393185
Iteration: 12, Func. Count: 115, Neg. LLF: 163.57447423480667
Iteration: 13, Func. Count: 124, Neg. LLF: 163.5740029439317
Iteration: 14, Func. Count: 133, Neg. LLF: 163.57367030890526
Iteration: 15, Func. Count: 142, Neg. LLF: 163.57364560688868
Iteration: 16, Func. Count: 151, Neg. LLF: 163.5736442774127
Iteration: 17, Func. Count: 159, Neg. LLF: 163.57364425677795
Optimization terminated successfully (Exit mode 0)
Current function value: 163.5736442774127
Iterations: 17
Function evaluations: 159
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 181.46458255090556
Iteration: 2, Func. Count: 22, Neg. LLF: 186.6449605992397
Iteration: 3, Func. Count: 33, Neg. LLF: 171.71901971451777
Iteration: 4, Func. Count: 44, Neg. LLF: 166.20269992173024
Iteration: 5, Func. Count: 55, Neg. LLF: 165.15080264330973
Iteration: 6, Func. Count: 66, Neg. LLF: 166.57932961944908
Iteration: 7, Func. Count: 77, Neg. LLF: 163.54949796094905
Iteration: 8, Func. Count: 87, Neg. LLF: 163.46520290082393
Iteration: 9, Func. Count: 97, Neg. LLF: 163.48675345482178
Iteration: 10, Func. Count: 108, Neg. LLF: 163.4317342768505
Iteration: 11, Func. Count: 118, Neg. LLF: 163.4311018466954
Iteration: 12, Func. Count: 128, Neg. LLF: 163.43071825878243
Iteration: 13, Func. Count: 138, Neg. LLF: 163.43070379533378
Iteration: 14, Func. Count: 148, Neg. LLF: 163.43070061650323
Iteration: 15, Func. Count: 157, Neg. LLF: 163.43070059550593
Optimization terminated successfully (Exit mode 0)
Current function value: 163.43070061650323
Iterations: 15
Function evaluations: 157
Gradient evaluations: 15
Iteration: 1, Func. Count: 8, Neg. LLF: 171.2246046954932
Iteration: 2, Func. Count: 16, Neg. LLF: 178.34563840124164
Iteration: 3, Func. Count: 24, Neg. LLF: 176.61690356047987
Iteration: 4, Func. Count: 32, Neg. LLF: 168.68636507641605
Iteration: 5, Func. Count: 39, Neg. LLF: 168.62360757933772
Iteration: 6, Func. Count: 46, Neg. LLF: 168.4898214660209
Iteration: 7, Func. Count: 53, Neg. LLF: 168.1720404092513
Iteration: 8, Func. Count: 60, Neg. LLF: 167.16949454262493
Iteration: 9, Func. Count: 67, Neg. LLF: 166.31102241093373
Iteration: 10, Func. Count: 74, Neg. LLF: 165.48269016972074
Iteration: 11, Func. Count: 81, Neg. LLF: 165.3265440109131
Iteration: 12, Func. Count: 88, Neg. LLF: 165.3064654906791
Iteration: 13, Func. Count: 95, Neg. LLF: 165.29276162615471
Iteration: 14, Func. Count: 102, Neg. LLF: 165.2892197783983
Iteration: 15, Func. Count: 109, Neg. LLF: 165.2878239202198
Iteration: 16, Func. Count: 116, Neg. LLF: 165.28663856263674
Iteration: 17, Func. Count: 123, Neg. LLF: 165.28653786818725
Iteration: 18, Func. Count: 130, Neg. LLF: 165.28652919926242
Iteration: 19, Func. Count: 136, Neg. LLF: 165.28652919926762
Optimization terminated successfully (Exit mode 0)
Current function value: 165.28652919926242
Iterations: 19
Function evaluations: 136
Gradient evaluations: 19
Iteration: 1, Func. Count: 9, Neg. LLF: 368.68474726507213
Iteration: 2, Func. Count: 18, Neg. LLF: 229.57734434863298
Iteration: 3, Func. Count: 27, Neg. LLF: 166.53986447359043
Iteration: 4, Func. Count: 36, Neg. LLF: 169.70358125228495
Iteration: 5, Func. Count: 45, Neg. LLF: 172.233729432394
Iteration: 6, Func. Count: 54, Neg. LLF: 163.92900485178163
Iteration: 7, Func. Count: 62, Neg. LLF: 163.84373628062758
Iteration: 8, Func. Count: 70, Neg. LLF: 163.75724801131037
Iteration: 9, Func. Count: 78, Neg. LLF: 163.7236070543888
Iteration: 10, Func. Count: 86, Neg. LLF: 163.7073514357064
Iteration: 11, Func. Count: 94, Neg. LLF: 163.7021202794823
Iteration: 12, Func. Count: 102, Neg. LLF: 163.700623739852
Iteration: 13, Func. Count: 110, Neg. LLF: 163.7002949607607
Iteration: 14, Func. Count: 118, Neg. LLF: 163.7002554929393
Iteration: 15, Func. Count: 126, Neg. LLF: 163.70025393614566
Iteration: 16, Func. Count: 133, Neg. LLF: 163.70025392252424
Optimization terminated successfully (Exit mode 0)
Current function value: 163.70025393614566
Iterations: 16
Function evaluations: 133
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 179.58206590088642
Iteration: 2, Func. Count: 20, Neg. LLF: 168.42568698049763
Iteration: 3, Func. Count: 30, Neg. LLF: 187.9384096780279
Iteration: 4, Func. Count: 40, Neg. LLF: 226.41680354562106
Iteration: 5, Func. Count: 50, Neg. LLF: 165.40785153981292
Iteration: 6, Func. Count: 60, Neg. LLF: 164.03762423414312
Iteration: 7, Func. Count: 69, Neg. LLF: 163.80816938480618
Iteration: 8, Func. Count: 78, Neg. LLF: 163.75296257601576
Iteration: 9, Func. Count: 87, Neg. LLF: 163.7294729929159
Iteration: 10, Func. Count: 96, Neg. LLF: 163.72432542209344
Iteration: 11, Func. Count: 105, Neg. LLF: 163.7159548841308
Iteration: 12, Func. Count: 114, Neg. LLF: 163.7056511872135
Iteration: 13, Func. Count: 123, Neg. LLF: 163.7009696800275
Iteration: 14, Func. Count: 132, Neg. LLF: 163.70026967034804
Iteration: 15, Func. Count: 141, Neg. LLF: 163.700254095886
Iteration: 16, Func. Count: 149, Neg. LLF: 163.70025416943074
Optimization terminated successfully (Exit mode 0)
Current function value: 163.700254095886
Iterations: 16
Function evaluations: 149
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 282.55343589725885
Iteration: 2, Func. Count: 22, Neg. LLF: 166.9285504225485
Iteration: 3, Func. Count: 32, Neg. LLF: 165.49466221041735
Iteration: 4, Func. Count: 43, Neg. LLF: 248.1351913483679
Iteration: 5, Func. Count: 54, Neg. LLF: 164.21842474352016
Iteration: 6, Func. Count: 65, Neg. LLF: 168.3771943984761
Iteration: 7, Func. Count: 76, Neg. LLF: 164.13668395938123
Iteration: 8, Func. Count: 87, Neg. LLF: 163.83269318507394
Iteration: 9, Func. Count: 98, Neg. LLF: 163.3531972653448
Iteration: 10, Func. Count: 108, Neg. LLF: 163.32424873029643
Iteration: 11, Func. Count: 118, Neg. LLF: 163.30780352043803
Iteration: 12, Func. Count: 128, Neg. LLF: 163.28721742881066
Iteration: 13, Func. Count: 138, Neg. LLF: 163.28430308686703
Iteration: 14, Func. Count: 148, Neg. LLF: 163.28272577205
Iteration: 15, Func. Count: 158, Neg. LLF: 163.282461684705
Iteration: 16, Func. Count: 168, Neg. LLF: 163.2824406036037
Iteration: 17, Func. Count: 178, Neg. LLF: 163.2824388814565
Iteration: 18, Func. Count: 187, Neg. LLF: 163.28243885546726
Optimization terminated successfully (Exit mode 0)
Current function value: 163.2824388814565
Iterations: 18
Function evaluations: 187
Gradient evaluations: 18
Iteration: 1, Func. Count: 12, Neg. LLF: 281.70080501604247
Iteration: 2, Func. Count: 24, Neg. LLF: 166.81389753857349
Iteration: 3, Func. Count: 35, Neg. LLF: 168.3344826418457
Iteration: 4, Func. Count: 47, Neg. LLF: 180.14067420218785
Iteration: 5, Func. Count: 60, Neg. LLF: 260.78048437007834
Iteration: 6, Func. Count: 72, Neg. LLF: 163.91681083698626
Iteration: 7, Func. Count: 83, Neg. LLF: 166.37696257727305
Iteration: 8, Func. Count: 95, Neg. LLF: 185.11227855963
Iteration: 9, Func. Count: 108, Neg. LLF: 163.27849539537675
Iteration: 10, Func. Count: 119, Neg. LLF: 163.17713462909288
Iteration: 11, Func. Count: 130, Neg. LLF: 163.09920151727624
Iteration: 12, Func. Count: 141, Neg. LLF: 163.08186948754468
Iteration: 13, Func. Count: 152, Neg. LLF: 163.0613107814202
Iteration: 14, Func. Count: 163, Neg. LLF: 163.05065815154563
Iteration: 15, Func. Count: 174, Neg. LLF: 163.04508180979894
Iteration: 16, Func. Count: 185, Neg. LLF: 163.04375228575898
Iteration: 17, Func. Count: 196, Neg. LLF: 163.04358762005157
Iteration: 18, Func. Count: 207, Neg. LLF: 163.043578563776
Iteration: 19, Func. Count: 217, Neg. LLF: 163.04357853571074
Optimization terminated successfully (Exit mode 0)
Current function value: 163.043578563776
Iterations: 19
Function evaluations: 217
Gradient evaluations: 19
Iteration: 1, Func. Count: 9, Neg. LLF: 173.2086669756782
Iteration: 2, Func. Count: 19, Neg. LLF: 177.8153413156765
Iteration: 3, Func. Count: 28, Neg. LLF: 168.12990153649017
Iteration: 4, Func. Count: 37, Neg. LLF: 165.85704043309156
Iteration: 5, Func. Count: 45, Neg. LLF: 165.93805998481454
Iteration: 6, Func. Count: 54, Neg. LLF: 165.7154946568769
Iteration: 7, Func. Count: 63, Neg. LLF: 165.6656129292267
Iteration: 8, Func. Count: 71, Neg. LLF: 165.6077971258983
Iteration: 9, Func. Count: 79, Neg. LLF: 165.5391628773539
Iteration: 10, Func. Count: 87, Neg. LLF: 165.48768327051337
Iteration: 11, Func. Count: 95, Neg. LLF: 165.45999459357006
Iteration: 12, Func. Count: 103, Neg. LLF: 165.4193915762637
Iteration: 13, Func. Count: 111, Neg. LLF: 165.41827568987864
Iteration: 14, Func. Count: 119, Neg. LLF: 165.4181487064617
Iteration: 15, Func. Count: 127, Neg. LLF: 165.4180257562529
Iteration: 16, Func. Count: 135, Neg. LLF: 165.41800873496356
Iteration: 17, Func. Count: 143, Neg. LLF: 165.41800770082418
Iteration: 18, Func. Count: 150, Neg. LLF: 165.41800770082938
Optimization terminated successfully (Exit mode 0)
Current function value: 165.41800770082418
Iterations: 18
Function evaluations: 150
Gradient evaluations: 18
Iteration: 1, Func. Count: 10, Neg. LLF: 285.24636698106895
Iteration: 2, Func. Count: 20, Neg. LLF: 180.981349194493
Iteration: 3, Func. Count: 30, Neg. LLF: 277.59952873432695
Iteration: 4, Func. Count: 40, Neg. LLF: 169.3016925517917
Iteration: 5, Func. Count: 50, Neg. LLF: 167.0275336501826
Iteration: 6, Func. Count: 60, Neg. LLF: 167.9042101419807
Iteration: 7, Func. Count: 70, Neg. LLF: 164.5680544675741
Iteration: 8, Func. Count: 80, Neg. LLF: 163.91546272729423
Iteration: 9, Func. Count: 89, Neg. LLF: 163.7653423664432
Iteration: 10, Func. Count: 98, Neg. LLF: 163.7378075862051
Iteration: 11, Func. Count: 107, Neg. LLF: 163.71574869633048
Iteration: 12, Func. Count: 116, Neg. LLF: 163.70907702672667
Iteration: 13, Func. Count: 125, Neg. LLF: 163.70596516153088
Iteration: 14, Func. Count: 134, Neg. LLF: 163.70396080338196
Iteration: 15, Func. Count: 143, Neg. LLF: 163.70202377127808
Iteration: 16, Func. Count: 152, Neg. LLF: 163.70105145632542
Iteration: 17, Func. Count: 161, Neg. LLF: 163.70049754779612
Iteration: 18, Func. Count: 170, Neg. LLF: 163.70028987266778
Iteration: 19, Func. Count: 179, Neg. LLF: 163.70025544756015
Iteration: 20, Func. Count: 188, Neg. LLF: 163.700253904863
Iteration: 21, Func. Count: 196, Neg. LLF: 163.70025389127247
Optimization terminated successfully (Exit mode 0)
Current function value: 163.700253904863
Iterations: 21
Function evaluations: 196
Gradient evaluations: 21
Iteration: 1, Func. Count: 11, Neg. LLF: 283.7427152344768
Iteration: 2, Func. Count: 22, Neg. LLF: 168.07679527827386
Iteration: 3, Func. Count: 33, Neg. LLF: 201.89656392773102
Iteration: 4, Func. Count: 44, Neg. LLF: 164.79878136995285
Iteration: 5, Func. Count: 55, Neg. LLF: 168.47426481611012
Iteration: 6, Func. Count: 66, Neg. LLF: 164.01188494476096
Iteration: 7, Func. Count: 76, Neg. LLF: 163.95329618181395
Iteration: 8, Func. Count: 86, Neg. LLF: 163.94301145347634
Iteration: 9, Func. Count: 96, Neg. LLF: 163.91223997239237
Iteration: 10, Func. Count: 106, Neg. LLF: 163.89500402483432
Iteration: 11, Func. Count: 116, Neg. LLF: 163.88239177688106
Iteration: 12, Func. Count: 126, Neg. LLF: 163.8649131221686
Iteration: 13, Func. Count: 136, Neg. LLF: 163.85554524433772
Iteration: 14, Func. Count: 146, Neg. LLF: 163.8513549594588
Iteration: 15, Func. Count: 156, Neg. LLF: 163.84798624919563
Iteration: 16, Func. Count: 166, Neg. LLF: 163.79090610603268
Iteration: 17, Func. Count: 176, Neg. LLF: 163.76894078479862
Iteration: 18, Func. Count: 186, Neg. LLF: 163.71051004486094
Iteration: 19, Func. Count: 196, Neg. LLF: 163.70128650789616
Iteration: 20, Func. Count: 206, Neg. LLF: 163.7003663998469
Iteration: 21, Func. Count: 216, Neg. LLF: 163.70027307872175
Iteration: 22, Func. Count: 226, Neg. LLF: 163.70025485152175
Iteration: 23, Func. Count: 236, Neg. LLF: 163.70025388495475
Optimization terminated successfully (Exit mode 0)
Current function value: 163.70025388495475
Iterations: 23
Function evaluations: 236
Gradient evaluations: 23
Iteration: 1, Func. Count: 12, Neg. LLF: 282.7072644589104
Iteration: 2, Func. Count: 24, Neg. LLF: 180.9827388540155
Iteration: 3, Func. Count: 36, Neg. LLF: 168.93467023440525
Iteration: 4, Func. Count: 48, Neg. LLF: 174.33268174517912
Iteration: 5, Func. Count: 60, Neg. LLF: 166.0242664007859
Iteration: 6, Func. Count: 72, Neg. LLF: 163.61775585622033
Iteration: 7, Func. Count: 83, Neg. LLF: 164.44760404357672
Iteration: 8, Func. Count: 95, Neg. LLF: 163.52814673361252
Iteration: 9, Func. Count: 106, Neg. LLF: 163.4575130158607
Iteration: 10, Func. Count: 117, Neg. LLF: 163.4265722444797
Iteration: 11, Func. Count: 128, Neg. LLF: 163.37862587027507
Iteration: 12, Func. Count: 139, Neg. LLF: 163.32367515890508
Iteration: 13, Func. Count: 150, Neg. LLF: 163.31092061963864
Iteration: 14, Func. Count: 161, Neg. LLF: 163.30824432650368
Iteration: 15, Func. Count: 172, Neg. LLF: 163.30678556375875
Iteration: 16, Func. Count: 183, Neg. LLF: 163.30671217395383
Iteration: 17, Func. Count: 194, Neg. LLF: 163.30670299095385
Iteration: 18, Func. Count: 204, Neg. LLF: 163.30670296847745
Optimization terminated successfully (Exit mode 0)
Current function value: 163.30670299095385
Iterations: 18
Function evaluations: 204
Gradient evaluations: 18
Iteration: 1, Func. Count: 13, Neg. LLF: 200.1037934466522
Iteration: 2, Func. Count: 26, Neg. LLF: 195.99136751763794
Iteration: 3, Func. Count: 39, Neg. LLF: 168.9707030389251
Iteration: 4, Func. Count: 52, Neg. LLF: 173.0467327586968
Iteration: 5, Func. Count: 65, Neg. LLF: 166.28227574346482
Iteration: 6, Func. Count: 78, Neg. LLF: 163.68869537697043
Iteration: 7, Func. Count: 90, Neg. LLF: 163.6652252508287
Iteration: 8, Func. Count: 103, Neg. LLF: 177.78577632762128
Iteration: 9, Func. Count: 116, Neg. LLF: 163.3181461669854
Iteration: 10, Func. Count: 128, Neg. LLF: 163.2529303947092
Iteration: 11, Func. Count: 140, Neg. LLF: 163.22745259929962
Iteration: 12, Func. Count: 152, Neg. LLF: 163.19175642460382
Iteration: 13, Func. Count: 164, Neg. LLF: 163.14754668924004
Iteration: 14, Func. Count: 176, Neg. LLF: 163.14445710192192
Iteration: 15, Func. Count: 188, Neg. LLF: 163.13755223439426
Iteration: 16, Func. Count: 200, Neg. LLF: 163.13713035407892
Iteration: 17, Func. Count: 212, Neg. LLF: 163.13704162377877
Iteration: 18, Func. Count: 224, Neg. LLF: 163.13703920807467
Iteration: 19, Func. Count: 235, Neg. LLF: 163.1370391944042
Optimization terminated successfully (Exit mode 0)
Current function value: 163.13703920807467
Iterations: 19
Function evaluations: 235
Gradient evaluations: 19
Iteration: 1, Func. Count: 10, Neg. LLF: 170.6598010139246
Iteration: 2, Func. Count: 20, Neg. LLF: 169.27350765703267
Iteration: 3, Func. Count: 30, Neg. LLF: 167.86293583808794
Iteration: 4, Func. Count: 39, Neg. LLF: 167.4929902088235
Iteration: 5, Func. Count: 48, Neg. LLF: 167.42760962915258
Iteration: 6, Func. Count: 57, Neg. LLF: 167.28376332809518
Iteration: 7, Func. Count: 66, Neg. LLF: 167.36244128897832
Iteration: 8, Func. Count: 76, Neg. LLF: 167.14043822411696
Iteration: 9, Func. Count: 85, Neg. LLF: 167.0784055922617
Iteration: 10, Func. Count: 94, Neg. LLF: 167.0242426083642
Iteration: 11, Func. Count: 103, Neg. LLF: 166.66288561804785
Iteration: 12, Func. Count: 112, Neg. LLF: 165.6576825002975
Iteration: 13, Func. Count: 121, Neg. LLF: 165.57520230976064
Iteration: 14, Func. Count: 131, Neg. LLF: 165.81657752445153
Iteration: 15, Func. Count: 141, Neg. LLF: 165.49600348668685
Iteration: 16, Func. Count: 151, Neg. LLF: 165.42047003536638
Iteration: 17, Func. Count: 160, Neg. LLF: 165.41890522909165
Iteration: 18, Func. Count: 169, Neg. LLF: 165.41804246145577
Iteration: 19, Func. Count: 178, Neg. LLF: 165.4180100850441
Iteration: 20, Func. Count: 187, Neg. LLF: 165.41800781417749
Iteration: 21, Func. Count: 195, Neg. LLF: 165.41800781878626
Optimization terminated successfully (Exit mode 0)
Current function value: 165.41800781417749
Iterations: 21
Function evaluations: 195
Gradient evaluations: 21
Iteration: 1, Func. Count: 11, Neg. LLF: 284.2781214959902
Iteration: 2, Func. Count: 22, Neg. LLF: 181.07453638379366
Iteration: 3, Func. Count: 33, Neg. LLF: 175.6333883043552
Iteration: 4, Func. Count: 44, Neg. LLF: 169.89331798234636
Iteration: 5, Func. Count: 55, Neg. LLF: 165.8054287143144
Iteration: 6, Func. Count: 66, Neg. LLF: 164.29108938641312
Iteration: 7, Func. Count: 77, Neg. LLF: 163.97035508911787
Iteration: 8, Func. Count: 87, Neg. LLF: 163.9116428817087
Iteration: 9, Func. Count: 97, Neg. LLF: 163.76995763021407
Iteration: 10, Func. Count: 107, Neg. LLF: 163.73807960374918
Iteration: 11, Func. Count: 117, Neg. LLF: 163.715370156602
Iteration: 12, Func. Count: 127, Neg. LLF: 163.70845160098875
Iteration: 13, Func. Count: 137, Neg. LLF: 163.70364573099314
Iteration: 14, Func. Count: 147, Neg. LLF: 163.7028325410249
Iteration: 15, Func. Count: 157, Neg. LLF: 163.70100154301724
Iteration: 16, Func. Count: 167, Neg. LLF: 163.70044312943867
Iteration: 17, Func. Count: 177, Neg. LLF: 163.70027832344329
Iteration: 18, Func. Count: 187, Neg. LLF: 163.70025783753985
Iteration: 19, Func. Count: 197, Neg. LLF: 163.7002540748709
Iteration: 20, Func. Count: 206, Neg. LLF: 163.70025406132106
Optimization terminated successfully (Exit mode 0)
Current function value: 163.7002540748709
Iterations: 20
Function evaluations: 206
Gradient evaluations: 20
Iteration: 1, Func. Count: 12, Neg. LLF: 282.6808077988869
Iteration: 2, Func. Count: 24, Neg. LLF: 168.89931267206674
Iteration: 3, Func. Count: 36, Neg. LLF: 185.12382945175557
Iteration: 4, Func. Count: 48, Neg. LLF: 165.706682359485
Iteration: 5, Func. Count: 60, Neg. LLF: 170.35741593442256
Iteration: 6, Func. Count: 72, Neg. LLF: 163.98235940519922
Iteration: 7, Func. Count: 83, Neg. LLF: 163.96758271259668
Iteration: 8, Func. Count: 94, Neg. LLF: 163.92587026805106
Iteration: 9, Func. Count: 105, Neg. LLF: 163.91079269996266
Iteration: 10, Func. Count: 116, Neg. LLF: 163.88592771508232
Iteration: 11, Func. Count: 127, Neg. LLF: 163.87558254838936
Iteration: 12, Func. Count: 138, Neg. LLF: 163.8593173427746
Iteration: 13, Func. Count: 149, Neg. LLF: 163.85349780805646
Iteration: 14, Func. Count: 160, Neg. LLF: 163.85060167457056
Iteration: 15, Func. Count: 171, Neg. LLF: 163.84065853843705
Iteration: 16, Func. Count: 182, Neg. LLF: 163.79895334387058
Iteration: 17, Func. Count: 193, Neg. LLF: 163.77232823293556
Iteration: 18, Func. Count: 204, Neg. LLF: 163.7041432032071
Iteration: 19, Func. Count: 215, Neg. LLF: 163.70052433169033
Iteration: 20, Func. Count: 226, Neg. LLF: 163.70027662437244
Iteration: 21, Func. Count: 237, Neg. LLF: 163.70025744782134
Iteration: 22, Func. Count: 248, Neg. LLF: 163.70025405954067
Iteration: 23, Func. Count: 258, Neg. LLF: 163.7002541330684
Optimization terminated successfully (Exit mode 0)
Current function value: 163.70025405954067
Iterations: 23
Function evaluations: 258
Gradient evaluations: 23
Iteration: 1, Func. Count: 13, Neg. LLF: 281.47775058673056
Iteration: 2, Func. Count: 26, Neg. LLF: 194.43887471736025
Iteration: 3, Func. Count: 39, Neg. LLF: 168.12128226788678
Iteration: 4, Func. Count: 52, Neg. LLF: 171.38629192935596
Iteration: 5, Func. Count: 65, Neg. LLF: 170.30907323282142
Iteration: 6, Func. Count: 78, Neg. LLF: 163.70767247994686
Iteration: 7, Func. Count: 90, Neg. LLF: 164.1139469468081
Iteration: 8, Func. Count: 103, Neg. LLF: 163.58065606172758
Iteration: 9, Func. Count: 116, Neg. LLF: 163.45933505584225
Iteration: 10, Func. Count: 128, Neg. LLF: 163.41961591193675
Iteration: 11, Func. Count: 140, Neg. LLF: 163.37707067372466
Iteration: 12, Func. Count: 152, Neg. LLF: 163.34863483345165
Iteration: 13, Func. Count: 164, Neg. LLF: 163.31250105892934
Iteration: 14, Func. Count: 176, Neg. LLF: 163.30723026700826
Iteration: 15, Func. Count: 188, Neg. LLF: 163.30680650621167
Iteration: 16, Func. Count: 200, Neg. LLF: 163.3067054368272
Iteration: 17, Func. Count: 212, Neg. LLF: 163.30670298071598
Iteration: 18, Func. Count: 223, Neg. LLF: 163.30670295814434
Optimization terminated successfully (Exit mode 0)
Current function value: 163.30670298071598
Iterations: 18
Function evaluations: 223
Gradient evaluations: 18
Iteration: 1, Func. Count: 14, Neg. LLF: 192.12627129808442
Iteration: 2, Func. Count: 28, Neg. LLF: 192.11195823336647
Iteration: 3, Func. Count: 42, Neg. LLF: 171.20217673081322
Iteration: 4, Func. Count: 56, Neg. LLF: 173.06898235248417
Iteration: 5, Func. Count: 70, Neg. LLF: 165.53241278417627
Iteration: 6, Func. Count: 84, Neg. LLF: 164.0861223600539
Iteration: 7, Func. Count: 98, Neg. LLF: 163.6501538893161
Iteration: 8, Func. Count: 111, Neg. LLF: 173.77376591359678
Iteration: 9, Func. Count: 125, Neg. LLF: 165.0880355851497
Iteration: 10, Func. Count: 139, Neg. LLF: 163.29045308004495
Iteration: 11, Func. Count: 152, Neg. LLF: 163.24843113552248
Iteration: 12, Func. Count: 165, Neg. LLF: 163.22664050795058
Iteration: 13, Func. Count: 178, Neg. LLF: 163.15498284154557
Iteration: 14, Func. Count: 191, Neg. LLF: 163.1459855859412
Iteration: 15, Func. Count: 204, Neg. LLF: 163.138826301993
Iteration: 16, Func. Count: 217, Neg. LLF: 163.13744829646123
Iteration: 17, Func. Count: 230, Neg. LLF: 163.13717290029825
Iteration: 18, Func. Count: 243, Neg. LLF: 163.13709084072025
Iteration: 19, Func. Count: 256, Neg. LLF: 163.13704670280185
Iteration: 20, Func. Count: 269, Neg. LLF: 163.13703926800832
Iteration: 21, Func. Count: 281, Neg. LLF: 163.13703925431705
Optimization terminated successfully (Exit mode 0)
Current function value: 163.13703926800832
Iterations: 21
Function evaluations: 281
Gradient evaluations: 21
Iteration: 1, Func. Count: 7, Neg. LLF: 171.1950174288757
Iteration: 2, Func. Count: 14, Neg. LLF: 172.05856475913097
Iteration: 3, Func. Count: 22, Neg. LLF: 168.53188754534878
Iteration: 4, Func. Count: 28, Neg. LLF: 168.57655570360603
Iteration: 5, Func. Count: 35, Neg. LLF: 168.20580018173334
Iteration: 6, Func. Count: 41, Neg. LLF: 168.01409075798114
Iteration: 7, Func. Count: 47, Neg. LLF: 167.77434496185052
Iteration: 8, Func. Count: 53, Neg. LLF: 166.29422157008744
Iteration: 9, Func. Count: 59, Neg. LLF: 169.6289789566984
Iteration: 10, Func. Count: 66, Neg. LLF: 175.81817657022344
Iteration: 11, Func. Count: 73, Neg. LLF: 171.26674210932214
Iteration: 12, Func. Count: 80, Neg. LLF: 169.35667512330758
Iteration: 13, Func. Count: 87, Neg. LLF: 169.18302948297978
Iteration: 14, Func. Count: 94, Neg. LLF: 164.04655434019273
Iteration: 15, Func. Count: 100, Neg. LLF: 163.96686648843183
Iteration: 16, Func. Count: 106, Neg. LLF: 164.5753665108474
Iteration: 17, Func. Count: 113, Neg. LLF: 163.87605994072723
Iteration: 18, Func. Count: 119, Neg. LLF: 163.87750213813678
Iteration: 19, Func. Count: 126, Neg. LLF: 163.87093118513806
Iteration: 20, Func. Count: 132, Neg. LLF: 163.87088954647945
Iteration: 21, Func. Count: 137, Neg. LLF: 163.87088953391728
Optimization terminated successfully (Exit mode 0)
Current function value: 163.87088954647945
Iterations: 21
Function evaluations: 137
Gradient evaluations: 21
Iteration: 1, Func. Count: 8, Neg. LLF: 181.99790195574138
Iteration: 2, Func. Count: 16, Neg. LLF: 201.96082654621554
Iteration: 3, Func. Count: 24, Neg. LLF: 164.8073154503707
Iteration: 4, Func. Count: 31, Neg. LLF: 186.26697308487655
Iteration: 5, Func. Count: 39, Neg. LLF: 168.80989547692553
Iteration: 6, Func. Count: 47, Neg. LLF: 164.04532360782198
Iteration: 7, Func. Count: 54, Neg. LLF: 163.90099657704062
Iteration: 8, Func. Count: 61, Neg. LLF: 163.88143804544612
Iteration: 9, Func. Count: 68, Neg. LLF: 163.8772591886688
Iteration: 10, Func. Count: 75, Neg. LLF: 163.87474582523464
Iteration: 11, Func. Count: 82, Neg. LLF: 163.8720341435698
Iteration: 12, Func. Count: 89, Neg. LLF: 163.87101050128646
Iteration: 13, Func. Count: 96, Neg. LLF: 163.8708931208945
Iteration: 14, Func. Count: 103, Neg. LLF: 163.87088937676722
Iteration: 15, Func. Count: 109, Neg. LLF: 163.87088939306057
Optimization terminated successfully (Exit mode 0)
Current function value: 163.87088937676722
Iterations: 15
Function evaluations: 109
Gradient evaluations: 15
Iteration: 1, Func. Count: 9, Neg. LLF: 181.57489383003042
Iteration: 2, Func. Count: 18, Neg. LLF: 193.01078503326823
Iteration: 3, Func. Count: 27, Neg. LLF: 235.4234261586258
Iteration: 4, Func. Count: 36, Neg. LLF: 164.86485891547335
Iteration: 5, Func. Count: 44, Neg. LLF: 164.3536745275695
Iteration: 6, Func. Count: 52, Neg. LLF: 163.99525262296183
Iteration: 7, Func. Count: 60, Neg. LLF: 164.02502006312778
Iteration: 8, Func. Count: 69, Neg. LLF: 163.88242526443977
Iteration: 9, Func. Count: 77, Neg. LLF: 163.87898697491408
Iteration: 10, Func. Count: 85, Neg. LLF: 163.87345481554817
Iteration: 11, Func. Count: 93, Neg. LLF: 163.8712045542335
Iteration: 12, Func. Count: 101, Neg. LLF: 163.87089760133642
Iteration: 13, Func. Count: 109, Neg. LLF: 163.87088923521736
Iteration: 14, Func. Count: 116, Neg. LLF: 163.87088929357202
Optimization terminated successfully (Exit mode 0)
Current function value: 163.87088923521736
Iterations: 14
Function evaluations: 116
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 170.38236881977014
Iteration: 2, Func. Count: 19, Neg. LLF: 167.0339127807676
Iteration: 3, Func. Count: 29, Neg. LLF: 174.9521901502312
Iteration: 4, Func. Count: 39, Neg. LLF: 166.7230303634055
Iteration: 5, Func. Count: 49, Neg. LLF: 165.99818660021876
Iteration: 6, Func. Count: 58, Neg. LLF: 165.85114804403128
Iteration: 7, Func. Count: 67, Neg. LLF: 165.67542758232966
Iteration: 8, Func. Count: 76, Neg. LLF: 165.42839374161815
Iteration: 9, Func. Count: 85, Neg. LLF: 165.27259826893692
Iteration: 10, Func. Count: 94, Neg. LLF: 165.06311547185717
Iteration: 11, Func. Count: 103, Neg. LLF: 164.77277183233898
Iteration: 12, Func. Count: 112, Neg. LLF: 164.02224668224966
Iteration: 13, Func. Count: 121, Neg. LLF: 164.00451723819816
Iteration: 14, Func. Count: 131, Neg. LLF: 163.90973257612353
Iteration: 15, Func. Count: 141, Neg. LLF: 163.8734012292884
Iteration: 16, Func. Count: 150, Neg. LLF: 163.87197268175817
Iteration: 17, Func. Count: 159, Neg. LLF: 163.8708902997481
Iteration: 18, Func. Count: 168, Neg. LLF: 163.87088929582782
Iteration: 19, Func. Count: 176, Neg. LLF: 163.87088929273204
Optimization terminated successfully (Exit mode 0)
Current function value: 163.87088929582782
Iterations: 19
Function evaluations: 176
Gradient evaluations: 19
Iteration: 1, Func. Count: 11, Neg. LLF: 170.38102763493652
Iteration: 2, Func. Count: 21, Neg. LLF: 167.1123387362416
Iteration: 3, Func. Count: 32, Neg. LLF: 179.17055951151556
Iteration: 4, Func. Count: 43, Neg. LLF: 166.83945747115501
Iteration: 5, Func. Count: 54, Neg. LLF: 166.0022512265977
Iteration: 6, Func. Count: 64, Neg. LLF: 165.8741239492132
Iteration: 7, Func. Count: 74, Neg. LLF: 165.6472070368217
Iteration: 8, Func. Count: 84, Neg. LLF: 165.43106984076672
Iteration: 9, Func. Count: 94, Neg. LLF: 165.28581306724757
Iteration: 10, Func. Count: 104, Neg. LLF: 164.9418514830309
Iteration: 11, Func. Count: 114, Neg. LLF: 164.5431057772518
Iteration: 12, Func. Count: 124, Neg. LLF: 168.71722960252194
Iteration: 13, Func. Count: 135, Neg. LLF: 172.10996456753324
Iteration: 14, Func. Count: 146, Neg. LLF: 164.49314360238984
Iteration: 15, Func. Count: 157, Neg. LLF: 163.76309251852598
Iteration: 16, Func. Count: 167, Neg. LLF: 163.96237242330875
Iteration: 17, Func. Count: 178, Neg. LLF: 163.75900725691085
Iteration: 18, Func. Count: 188, Neg. LLF: 163.7586556018798
Iteration: 19, Func. Count: 198, Neg. LLF: 163.7586276326819
Iteration: 20, Func. Count: 208, Neg. LLF: 163.75862665061467
Optimization terminated successfully (Exit mode 0)
Current function value: 163.75862665061467
Iterations: 20
Function evaluations: 208
Gradient evaluations: 20
Iteration: 1, Func. Count: 8, Neg. LLF: 171.18579470438831
Iteration: 2, Func. Count: 16, Neg. LLF: 172.05801458316515
Iteration: 3, Func. Count: 25, Neg. LLF: 168.5298740075146
Iteration: 4, Func. Count: 32, Neg. LLF: 169.1664571028969
Iteration: 5, Func. Count: 40, Neg. LLF: 168.18426714576842
Iteration: 6, Func. Count: 47, Neg. LLF: 168.05275503773547
Iteration: 7, Func. Count: 54, Neg. LLF: 167.6842499253567
Iteration: 8, Func. Count: 61, Neg. LLF: 166.17642687049934
Iteration: 9, Func. Count: 68, Neg. LLF: 166.22585349107646
Iteration: 10, Func. Count: 76, Neg. LLF: 165.02289684962057
Iteration: 11, Func. Count: 83, Neg. LLF: 164.81358967430532
Iteration: 12, Func. Count: 90, Neg. LLF: 164.24501892278698
Iteration: 13, Func. Count: 97, Neg. LLF: 168.40844023243474
Iteration: 14, Func. Count: 105, Neg. LLF: 164.99328245632293
Iteration: 15, Func. Count: 113, Neg. LLF: 164.46575147717206
Iteration: 16, Func. Count: 121, Neg. LLF: 163.42106884770433
Iteration: 17, Func. Count: 128, Neg. LLF: 163.3974613410009
Iteration: 18, Func. Count: 135, Neg. LLF: 163.3948510073522
Iteration: 19, Func. Count: 142, Neg. LLF: 163.3944562171768
Iteration: 20, Func. Count: 149, Neg. LLF: 163.39442575536
Iteration: 21, Func. Count: 156, Neg. LLF: 163.39441281351517
Iteration: 22, Func. Count: 162, Neg. LLF: 163.39441280816834
Optimization terminated successfully (Exit mode 0)
Current function value: 163.39441281351517
Iterations: 22
Function evaluations: 162
Gradient evaluations: 22
Iteration: 1, Func. Count: 9, Neg. LLF: 181.7953200248867
Iteration: 2, Func. Count: 18, Neg. LLF: 190.02644365762922
Iteration: 3, Func. Count: 27, Neg. LLF: 165.81971241500872
Iteration: 4, Func. Count: 36, Neg. LLF: 170.30530955922026
Iteration: 5, Func. Count: 45, Neg. LLF: 164.10169496565632
Iteration: 6, Func. Count: 54, Neg. LLF: 163.43045521294144
Iteration: 7, Func. Count: 62, Neg. LLF: 163.41204661447546
Iteration: 8, Func. Count: 70, Neg. LLF: 163.39983397554658
Iteration: 9, Func. Count: 78, Neg. LLF: 163.39811749353646
Iteration: 10, Func. Count: 86, Neg. LLF: 163.39602520760303
Iteration: 11, Func. Count: 94, Neg. LLF: 163.39463456780527
Iteration: 12, Func. Count: 102, Neg. LLF: 163.39442495097674
Iteration: 13, Func. Count: 110, Neg. LLF: 163.39441268564917
Iteration: 14, Func. Count: 117, Neg. LLF: 163.39441271686428
Optimization terminated successfully (Exit mode 0)
Current function value: 163.39441268564917
Iterations: 14
Function evaluations: 117
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 181.51812682630612
Iteration: 2, Func. Count: 20, Neg. LLF: 188.2569053858769
Iteration: 3, Func. Count: 30, Neg. LLF: 164.01250918843928
Iteration: 4, Func. Count: 39, Neg. LLF: 207.75960378934215
Iteration: 5, Func. Count: 49, Neg. LLF: 171.32629795918328
Iteration: 6, Func. Count: 59, Neg. LLF: 163.5489722742908
Iteration: 7, Func. Count: 69, Neg. LLF: 163.4059924253636
Iteration: 8, Func. Count: 79, Neg. LLF: 163.39582002559027
Iteration: 9, Func. Count: 88, Neg. LLF: 163.3947570965492
Iteration: 10, Func. Count: 97, Neg. LLF: 163.39462682833124
Iteration: 11, Func. Count: 106, Neg. LLF: 163.3944287465963
Iteration: 12, Func. Count: 115, Neg. LLF: 163.3944134526781
Iteration: 13, Func. Count: 124, Neg. LLF: 163.39441264218712
Optimization terminated successfully (Exit mode 0)
Current function value: 163.39441264218712
Iterations: 13
Function evaluations: 124
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 181.33320446369765
Iteration: 2, Func. Count: 22, Neg. LLF: 186.85036545051122
Iteration: 3, Func. Count: 33, Neg. LLF: 165.03722244572998
Iteration: 4, Func. Count: 43, Neg. LLF: 181.76995899546972
Iteration: 5, Func. Count: 54, Neg. LLF: 164.51191353551593
Iteration: 6, Func. Count: 65, Neg. LLF: 167.1373562656776
Iteration: 7, Func. Count: 76, Neg. LLF: 163.63160622529077
Iteration: 8, Func. Count: 87, Neg. LLF: 163.453936364224
Iteration: 9, Func. Count: 98, Neg. LLF: 163.3820170866069
Iteration: 10, Func. Count: 108, Neg. LLF: 163.37773086104045
Iteration: 11, Func. Count: 118, Neg. LLF: 163.3770558644758
Iteration: 12, Func. Count: 128, Neg. LLF: 163.3762741727265
Iteration: 13, Func. Count: 138, Neg. LLF: 163.37617440072862
Iteration: 14, Func. Count: 148, Neg. LLF: 163.3761690013517
Iteration: 15, Func. Count: 157, Neg. LLF: 163.37616898925657
Optimization terminated successfully (Exit mode 0)
Current function value: 163.3761690013517
Iterations: 15
Function evaluations: 157
Gradient evaluations: 15
Iteration: 1, Func. Count: 12, Neg. LLF: 181.24065695290017
Iteration: 2, Func. Count: 24, Neg. LLF: 186.33955441511327
Iteration: 3, Func. Count: 36, Neg. LLF: 170.77523854679993
Iteration: 4, Func. Count: 48, Neg. LLF: 164.2094111458773
Iteration: 5, Func. Count: 59, Neg. LLF: 167.32831847441113
Iteration: 6, Func. Count: 71, Neg. LLF: 163.79983284489632
Iteration: 7, Func. Count: 83, Neg. LLF: 163.9318100023795
Iteration: 8, Func. Count: 95, Neg. LLF: 163.39972008304724
Iteration: 9, Func. Count: 107, Neg. LLF: 163.40055766311878
Iteration: 10, Func. Count: 119, Neg. LLF: 163.37097585059416
Iteration: 11, Func. Count: 130, Neg. LLF: 163.36794300140667
Iteration: 12, Func. Count: 141, Neg. LLF: 163.36775568255172
Iteration: 13, Func. Count: 152, Neg. LLF: 163.36768972277955
Iteration: 14, Func. Count: 163, Neg. LLF: 163.36766883091764
Iteration: 15, Func. Count: 174, Neg. LLF: 163.36766653136704
Iteration: 16, Func. Count: 185, Neg. LLF: 163.36766540290847
Iteration: 17, Func. Count: 195, Neg. LLF: 163.36766539227497
Optimization terminated successfully (Exit mode 0)
Current function value: 163.36766540290847
Iterations: 17
Function evaluations: 195
Gradient evaluations: 17
Iteration: 1, Func. Count: 9, Neg. LLF: 171.32493421819495
Iteration: 2, Func. Count: 18, Neg. LLF: 173.17809116120566
Iteration: 3, Func. Count: 27, Neg. LLF: 167.22764230319027
Iteration: 4, Func. Count: 36, Neg. LLF: 170.07329246863904
Iteration: 5, Func. Count: 45, Neg. LLF: 166.2652522248538
Iteration: 6, Func. Count: 54, Neg. LLF: 166.4353457758542
Iteration: 7, Func. Count: 63, Neg. LLF: 165.6592093144939
Iteration: 8, Func. Count: 71, Neg. LLF: 165.47554844224774
Iteration: 9, Func. Count: 79, Neg. LLF: 165.38572785795128
Iteration: 10, Func. Count: 87, Neg. LLF: 164.90430427628544
Iteration: 11, Func. Count: 95, Neg. LLF: 165.03755465563887
Iteration: 12, Func. Count: 104, Neg. LLF: 167.91627188650733
Iteration: 13, Func. Count: 113, Neg. LLF: 163.86702203780442
Iteration: 14, Func. Count: 122, Neg. LLF: 163.3748948845388
Iteration: 15, Func. Count: 130, Neg. LLF: 163.32164839276672
Iteration: 16, Func. Count: 138, Neg. LLF: 163.3202999811516
Iteration: 17, Func. Count: 146, Neg. LLF: 163.3198548283651
Iteration: 18, Func. Count: 154, Neg. LLF: 163.31983972521044
Iteration: 19, Func. Count: 162, Neg. LLF: 163.31983541817522
Iteration: 20, Func. Count: 169, Neg. LLF: 163.3198354233903
Optimization terminated successfully (Exit mode 0)
Current function value: 163.31983541817522
Iterations: 20
Function evaluations: 169
Gradient evaluations: 20
Iteration: 1, Func. Count: 10, Neg. LLF: 211.64558210249055
Iteration: 2, Func. Count: 20, Neg. LLF: 180.9404563389898
Iteration: 3, Func. Count: 30, Neg. LLF: 215.70583359764007
Iteration: 4, Func. Count: 40, Neg. LLF: 237.89469837930628
Iteration: 5, Func. Count: 50, Neg. LLF: 170.46094922255205
Iteration: 6, Func. Count: 60, Neg. LLF: 163.49284940187755
Iteration: 7, Func. Count: 69, Neg. LLF: 163.40937441046503
Iteration: 8, Func. Count: 78, Neg. LLF: 163.513920040364
Iteration: 9, Func. Count: 88, Neg. LLF: 163.33919246123375
Iteration: 10, Func. Count: 97, Neg. LLF: 163.32755615863536
Iteration: 11, Func. Count: 106, Neg. LLF: 163.32351625628522
Iteration: 12, Func. Count: 115, Neg. LLF: 163.32101134191845
Iteration: 13, Func. Count: 124, Neg. LLF: 163.3208742030433
Iteration: 14, Func. Count: 133, Neg. LLF: 163.32041434246585
Iteration: 15, Func. Count: 142, Neg. LLF: 163.32000034790337
Iteration: 16, Func. Count: 151, Neg. LLF: 163.3198525498243
Iteration: 17, Func. Count: 160, Neg. LLF: 163.31983587745492
Iteration: 18, Func. Count: 169, Neg. LLF: 163.31983532593432
Optimization terminated successfully (Exit mode 0)
Current function value: 163.31983532593432
Iterations: 18
Function evaluations: 169
Gradient evaluations: 18
Iteration: 1, Func. Count: 11, Neg. LLF: 198.18155757971687
Iteration: 2, Func. Count: 22, Neg. LLF: 167.0198234761364
Iteration: 3, Func. Count: 33, Neg. LLF: 164.04140257022019
Iteration: 4, Func. Count: 43, Neg. LLF: 165.631754938288
Iteration: 5, Func. Count: 54, Neg. LLF: 192.52429993054264
Iteration: 6, Func. Count: 65, Neg. LLF: 163.58222600148557
Iteration: 7, Func. Count: 75, Neg. LLF: 167.3080702541158
Iteration: 8, Func. Count: 86, Neg. LLF: 166.7261429020577
Iteration: 9, Func. Count: 97, Neg. LLF: 163.39970927081728
Iteration: 10, Func. Count: 107, Neg. LLF: 163.34900635454787
Iteration: 11, Func. Count: 117, Neg. LLF: 163.33727929234252
Iteration: 12, Func. Count: 127, Neg. LLF: 163.32626706887277
Iteration: 13, Func. Count: 137, Neg. LLF: 163.32139283551004
Iteration: 14, Func. Count: 147, Neg. LLF: 163.32031354888068
Iteration: 15, Func. Count: 157, Neg. LLF: 163.31991156878152
Iteration: 16, Func. Count: 167, Neg. LLF: 163.31984054595856
Iteration: 17, Func. Count: 177, Neg. LLF: 163.3198354241787
Iteration: 18, Func. Count: 186, Neg. LLF: 163.31983553912522
Optimization terminated successfully (Exit mode 0)
Current function value: 163.3198354241787
Iterations: 18
Function evaluations: 186
Gradient evaluations: 18
Iteration: 1, Func. Count: 12, Neg. LLF: 281.6651120190524
Iteration: 2, Func. Count: 24, Neg. LLF: 166.73682319770106
Iteration: 3, Func. Count: 35, Neg. LLF: 164.54590932008315
Iteration: 4, Func. Count: 47, Neg. LLF: 168.11328699756777
Iteration: 5, Func. Count: 59, Neg. LLF: 168.54438813388256
Iteration: 6, Func. Count: 71, Neg. LLF: 163.93321413661064
Iteration: 7, Func. Count: 83, Neg. LLF: 163.55199496586917
Iteration: 8, Func. Count: 95, Neg. LLF: 163.43201491344448
Iteration: 9, Func. Count: 106, Neg. LLF: 163.43493713836668
Iteration: 10, Func. Count: 118, Neg. LLF: 163.30881393547023
Iteration: 11, Func. Count: 129, Neg. LLF: 163.29548049912137
Iteration: 12, Func. Count: 140, Neg. LLF: 163.27119128541997
Iteration: 13, Func. Count: 151, Neg. LLF: 163.2614721331902
Iteration: 14, Func. Count: 162, Neg. LLF: 163.25754369542938
Iteration: 15, Func. Count: 173, Neg. LLF: 163.2570429687348
Iteration: 16, Func. Count: 184, Neg. LLF: 163.2566459326628
Iteration: 17, Func. Count: 195, Neg. LLF: 163.25630618400763
Iteration: 18, Func. Count: 206, Neg. LLF: 163.2562845089283
Iteration: 19, Func. Count: 217, Neg. LLF: 163.25628355878038
Optimization terminated successfully (Exit mode 0)
Current function value: 163.25628355878038
Iterations: 19
Function evaluations: 217
Gradient evaluations: 19
Iteration: 1, Func. Count: 13, Neg. LLF: 281.0122149249478
Iteration: 2, Func. Count: 26, Neg. LLF: 166.63319222229777
Iteration: 3, Func. Count: 38, Neg. LLF: 166.31963000770713
Iteration: 4, Func. Count: 51, Neg. LLF: 171.15490479624847
Iteration: 5, Func. Count: 64, Neg. LLF: 172.1048844395179
Iteration: 6, Func. Count: 77, Neg. LLF: 164.16321364871504
Iteration: 7, Func. Count: 90, Neg. LLF: 164.4647414628844
Iteration: 8, Func. Count: 103, Neg. LLF: 164.37791510898495
Iteration: 9, Func. Count: 116, Neg. LLF: 163.74170214536736
Iteration: 10, Func. Count: 129, Neg. LLF: 164.80199316102886
Iteration: 11, Func. Count: 142, Neg. LLF: 163.33002826319847
Iteration: 12, Func. Count: 154, Neg. LLF: 163.30633128392185
Iteration: 13, Func. Count: 166, Neg. LLF: 163.27564312385417
Iteration: 14, Func. Count: 178, Neg. LLF: 163.21553550954735
Iteration: 15, Func. Count: 190, Neg. LLF: 163.12605309969646
Iteration: 16, Func. Count: 202, Neg. LLF: 163.0565806528223
Iteration: 17, Func. Count: 214, Neg. LLF: 163.0472346250193
Iteration: 18, Func. Count: 226, Neg. LLF: 163.04443872930946
Iteration: 19, Func. Count: 238, Neg. LLF: 163.0437388620769
Iteration: 20, Func. Count: 250, Neg. LLF: 163.0436173615534
Iteration: 21, Func. Count: 262, Neg. LLF: 163.04359369857366
Iteration: 22, Func. Count: 274, Neg. LLF: 163.04358862272673
Iteration: 23, Func. Count: 286, Neg. LLF: 163.04357901521524
Iteration: 24, Func. Count: 297, Neg. LLF: 163.0435789870446
Optimization terminated successfully (Exit mode 0)
Current function value: 163.04357901521524
Iterations: 24
Function evaluations: 297
Gradient evaluations: 24
Iteration: 1, Func. Count: 10, Neg. LLF: 174.93401857666888
Iteration: 2, Func. Count: 21, Neg. LLF: 169.93722262448597
Iteration: 3, Func. Count: 32, Neg. LLF: 168.37974604089
Iteration: 4, Func. Count: 42, Neg. LLF: 165.9274201302367
Iteration: 5, Func. Count: 52, Neg. LLF: 165.64125068270096
Iteration: 6, Func. Count: 62, Neg. LLF: 165.05387547333996
Iteration: 7, Func. Count: 71, Neg. LLF: 164.96593473303048
Iteration: 8, Func. Count: 80, Neg. LLF: 164.87037335185454
Iteration: 9, Func. Count: 89, Neg. LLF: 164.49577709873586
Iteration: 10, Func. Count: 98, Neg. LLF: 164.11098496396968
Iteration: 11, Func. Count: 107, Neg. LLF: 163.63844654540515
Iteration: 12, Func. Count: 116, Neg. LLF: 163.65475946719266
Iteration: 13, Func. Count: 126, Neg. LLF: 163.25037376049002
Iteration: 14, Func. Count: 135, Neg. LLF: 163.22765935385155
Iteration: 15, Func. Count: 144, Neg. LLF: 163.21330366578624
Iteration: 16, Func. Count: 153, Neg. LLF: 163.2072669898369
Iteration: 17, Func. Count: 162, Neg. LLF: 163.20612561834656
Iteration: 18, Func. Count: 171, Neg. LLF: 163.20582539636558
Iteration: 19, Func. Count: 180, Neg. LLF: 163.20582291253663
Iteration: 20, Func. Count: 188, Neg. LLF: 163.20582290475292
Optimization terminated successfully (Exit mode 0)
Current function value: 163.20582291253663
Iterations: 20
Function evaluations: 188
Gradient evaluations: 20
Iteration: 1, Func. Count: 11, Neg. LLF: 284.0438542626917
Iteration: 2, Func. Count: 22, Neg. LLF: 181.01656712510243
Iteration: 3, Func. Count: 33, Neg. LLF: 200.32379730133417
Iteration: 4, Func. Count: 44, Neg. LLF: 169.513286739235
Iteration: 5, Func. Count: 55, Neg. LLF: 163.782381854003
Iteration: 6, Func. Count: 65, Neg. LLF: 163.47403612817908
Iteration: 7, Func. Count: 75, Neg. LLF: 163.78509604134243
Iteration: 8, Func. Count: 86, Neg. LLF: 163.4630434541628
Iteration: 9, Func. Count: 97, Neg. LLF: 163.39093653051208
Iteration: 10, Func. Count: 108, Neg. LLF: 163.22912279695402
Iteration: 11, Func. Count: 118, Neg. LLF: 163.21517375089246
Iteration: 12, Func. Count: 128, Neg. LLF: 163.21085283626508
Iteration: 13, Func. Count: 138, Neg. LLF: 163.20854686091357
Iteration: 14, Func. Count: 148, Neg. LLF: 163.20732620345393
Iteration: 15, Func. Count: 158, Neg. LLF: 163.2061269732337
Iteration: 16, Func. Count: 168, Neg. LLF: 163.2059212117557
Iteration: 17, Func. Count: 178, Neg. LLF: 163.20586640114868
Iteration: 18, Func. Count: 188, Neg. LLF: 163.20583843616376
Iteration: 19, Func. Count: 198, Neg. LLF: 163.20582450083407
Iteration: 20, Func. Count: 208, Neg. LLF: 163.20582297414177
Iteration: 21, Func. Count: 217, Neg. LLF: 163.20582300755632
Optimization terminated successfully (Exit mode 0)
Current function value: 163.20582297414177
Iterations: 21
Function evaluations: 217
Gradient evaluations: 21
Iteration: 1, Func. Count: 12, Neg. LLF: 282.45100164024615
Iteration: 2, Func. Count: 24, Neg. LLF: 168.10658483055718
Iteration: 3, Func. Count: 36, Neg. LLF: 174.69726156715325
Iteration: 4, Func. Count: 48, Neg. LLF: 164.03988091656515
Iteration: 5, Func. Count: 59, Neg. LLF: 163.66625585043732
Iteration: 6, Func. Count: 70, Neg. LLF: 163.68833162017205
Iteration: 7, Func. Count: 82, Neg. LLF: 163.83060527489383
Iteration: 8, Func. Count: 94, Neg. LLF: 163.2872614458841
Iteration: 9, Func. Count: 105, Neg. LLF: 163.26122144452546
Iteration: 10, Func. Count: 116, Neg. LLF: 163.24529042734937
Iteration: 11, Func. Count: 127, Neg. LLF: 163.2307489786306
Iteration: 12, Func. Count: 138, Neg. LLF: 163.21442106912696
Iteration: 13, Func. Count: 149, Neg. LLF: 163.20789085386613
Iteration: 14, Func. Count: 160, Neg. LLF: 163.20609093413105
Iteration: 15, Func. Count: 171, Neg. LLF: 163.20594728383304
Iteration: 16, Func. Count: 182, Neg. LLF: 163.2058298619897
Iteration: 17, Func. Count: 193, Neg. LLF: 163.20582321380036
Iteration: 18, Func. Count: 203, Neg. LLF: 163.20582325162334
Optimization terminated successfully (Exit mode 0)
Current function value: 163.20582321380036
Iterations: 18
Function evaluations: 203
Gradient evaluations: 18
Iteration: 1, Func. Count: 13, Neg. LLF: 281.5709005871124
Iteration: 2, Func. Count: 26, Neg. LLF: 168.37122415225414
Iteration: 3, Func. Count: 39, Neg. LLF: 185.17305788099114
Iteration: 4, Func. Count: 52, Neg. LLF: 164.0798275260573
Iteration: 5, Func. Count: 64, Neg. LLF: 168.1046878945069
Iteration: 6, Func. Count: 77, Neg. LLF: 165.54840081878496
Iteration: 7, Func. Count: 90, Neg. LLF: 163.63163827774764
Iteration: 8, Func. Count: 103, Neg. LLF: 163.97350675052246
Iteration: 9, Func. Count: 116, Neg. LLF: 163.22933062294467
Iteration: 10, Func. Count: 128, Neg. LLF: 163.17984432837036
Iteration: 11, Func. Count: 140, Neg. LLF: 163.1601868016133
Iteration: 12, Func. Count: 152, Neg. LLF: 163.12306579433962
Iteration: 13, Func. Count: 164, Neg. LLF: 163.10037708441791
Iteration: 14, Func. Count: 176, Neg. LLF: 163.0863990517212
Iteration: 15, Func. Count: 188, Neg. LLF: 163.0851745118133
Iteration: 16, Func. Count: 200, Neg. LLF: 163.08515674176385
Iteration: 17, Func. Count: 212, Neg. LLF: 163.0851556171132
Iteration: 18, Func. Count: 223, Neg. LLF: 163.08515559698998
Optimization terminated successfully (Exit mode 0)
Current function value: 163.0851556171132
Iterations: 18
Function evaluations: 223
Gradient evaluations: 18
Iteration: 1, Func. Count: 14, Neg. LLF: 280.9726640232088
Iteration: 2, Func. Count: 28, Neg. LLF: 172.40002983004064
Iteration: 3, Func. Count: 42, Neg. LLF: 168.82218602989767
Iteration: 4, Func. Count: 56, Neg. LLF: 173.50231095883777
Iteration: 5, Func. Count: 70, Neg. LLF: 182.217091637517
Iteration: 6, Func. Count: 84, Neg. LLF: 163.51677792035017
Iteration: 7, Func. Count: 97, Neg. LLF: 163.28805860912826
Iteration: 8, Func. Count: 110, Neg. LLF: 163.896509190095
Iteration: 9, Func. Count: 124, Neg. LLF: 163.48575434432266
Iteration: 10, Func. Count: 138, Neg. LLF: 163.26837564685988
Iteration: 11, Func. Count: 152, Neg. LLF: 163.1646247844874
Iteration: 12, Func. Count: 165, Neg. LLF: 163.12984894754783
Iteration: 13, Func. Count: 178, Neg. LLF: 163.10560213316418
Iteration: 14, Func. Count: 191, Neg. LLF: 163.03275064921954
Iteration: 15, Func. Count: 204, Neg. LLF: 163.02839131796884
Iteration: 16, Func. Count: 217, Neg. LLF: 163.02756073941345
Iteration: 17, Func. Count: 230, Neg. LLF: 163.027548857961
Iteration: 18, Func. Count: 243, Neg. LLF: 163.02754773893554
Iteration: 19, Func. Count: 255, Neg. LLF: 163.02754772186486
Optimization terminated successfully (Exit mode 0)
Current function value: 163.02754773893554
Iterations: 19
Function evaluations: 255
Gradient evaluations: 19
Iteration: 1, Func. Count: 11, Neg. LLF: 177.06841859429917
Iteration: 2, Func. Count: 23, Neg. LLF: 169.8146235572286
Iteration: 3, Func. Count: 35, Neg. LLF: 168.53162526398737
Iteration: 4, Func. Count: 46, Neg. LLF: 165.8943881336122
Iteration: 5, Func. Count: 57, Neg. LLF: 165.80844087322384
Iteration: 6, Func. Count: 68, Neg. LLF: 165.05306294003879
Iteration: 7, Func. Count: 78, Neg. LLF: 164.9685352299711
Iteration: 8, Func. Count: 88, Neg. LLF: 164.86007646710902
Iteration: 9, Func. Count: 98, Neg. LLF: 164.389344535005
Iteration: 10, Func. Count: 108, Neg. LLF: 163.98812829929972
Iteration: 11, Func. Count: 118, Neg. LLF: 163.48141461942765
Iteration: 12, Func. Count: 128, Neg. LLF: 163.37541888163918
Iteration: 13, Func. Count: 138, Neg. LLF: 163.26145913905057
Iteration: 14, Func. Count: 148, Neg. LLF: 163.238043927333
Iteration: 15, Func. Count: 158, Neg. LLF: 163.21988449453426
Iteration: 16, Func. Count: 168, Neg. LLF: 163.2099243668225
Iteration: 17, Func. Count: 178, Neg. LLF: 163.20582898370031
Iteration: 18, Func. Count: 188, Neg. LLF: 163.20582306430626
Iteration: 19, Func. Count: 197, Neg. LLF: 163.20582313782384
Optimization terminated successfully (Exit mode 0)
Current function value: 163.20582306430626
Iterations: 19
Function evaluations: 197
Gradient evaluations: 19
Iteration: 1, Func. Count: 12, Neg. LLF: 282.96557698180015
Iteration: 2, Func. Count: 24, Neg. LLF: 181.237477134138
Iteration: 3, Func. Count: 36, Neg. LLF: 171.97849637531024
Iteration: 4, Func. Count: 48, Neg. LLF: 170.06818524445922
Iteration: 5, Func. Count: 60, Neg. LLF: 163.44747663645455
Iteration: 6, Func. Count: 71, Neg. LLF: 163.36983525567481
Iteration: 7, Func. Count: 82, Neg. LLF: 163.30665777289357
Iteration: 8, Func. Count: 93, Neg. LLF: 164.24897406479266
Iteration: 9, Func. Count: 105, Neg. LLF: 163.24226482611465
Iteration: 10, Func. Count: 116, Neg. LLF: 163.22083092068146
Iteration: 11, Func. Count: 127, Neg. LLF: 163.2167059048846
Iteration: 12, Func. Count: 138, Neg. LLF: 163.21192765752838
Iteration: 13, Func. Count: 149, Neg. LLF: 163.2090795695841
Iteration: 14, Func. Count: 160, Neg. LLF: 163.2063753271798
Iteration: 15, Func. Count: 171, Neg. LLF: 163.20600420779712
Iteration: 16, Func. Count: 182, Neg. LLF: 163.20589789307002
Iteration: 17, Func. Count: 193, Neg. LLF: 163.20584541190215
Iteration: 18, Func. Count: 204, Neg. LLF: 163.20582481589858
Iteration: 19, Func. Count: 215, Neg. LLF: 163.20582297020155
Iteration: 20, Func. Count: 225, Neg. LLF: 163.20582300361013
Optimization terminated successfully (Exit mode 0)
Current function value: 163.20582297020155
Iterations: 20
Function evaluations: 225
Gradient evaluations: 20
Iteration: 1, Func. Count: 13, Neg. LLF: 281.26364232451084
Iteration: 2, Func. Count: 26, Neg. LLF: 168.10631062845997
Iteration: 3, Func. Count: 39, Neg. LLF: 171.94908759296794
Iteration: 4, Func. Count: 52, Neg. LLF: 168.21085688383116
Iteration: 5, Func. Count: 65, Neg. LLF: 163.65484057490235
Iteration: 6, Func. Count: 77, Neg. LLF: 163.31068926707422
Iteration: 7, Func. Count: 89, Neg. LLF: 163.27997044535803
Iteration: 8, Func. Count: 101, Neg. LLF: 163.26843932884762
Iteration: 9, Func. Count: 113, Neg. LLF: 163.23833843657795
Iteration: 10, Func. Count: 125, Neg. LLF: 163.2317674250505
Iteration: 11, Func. Count: 137, Neg. LLF: 163.20991195794156
Iteration: 12, Func. Count: 149, Neg. LLF: 163.20717984310932
Iteration: 13, Func. Count: 161, Neg. LLF: 163.20609102294588
Iteration: 14, Func. Count: 173, Neg. LLF: 163.20586517773597
Iteration: 15, Func. Count: 185, Neg. LLF: 163.20582357209537
Iteration: 16, Func. Count: 197, Neg. LLF: 163.2058229131908
Optimization terminated successfully (Exit mode 0)
Current function value: 163.2058229131908
Iterations: 16
Function evaluations: 197
Gradient evaluations: 16
Iteration: 1, Func. Count: 14, Neg. LLF: 280.2363932427932
Iteration: 2, Func. Count: 28, Neg. LLF: 172.43910022252825
Iteration: 3, Func. Count: 42, Neg. LLF: 168.73965304061227
Iteration: 4, Func. Count: 56, Neg. LLF: 170.3439296983693
Iteration: 5, Func. Count: 70, Neg. LLF: 189.0688355886225
Iteration: 6, Func. Count: 84, Neg. LLF: 163.62853525584126
Iteration: 7, Func. Count: 97, Neg. LLF: 163.24669911110072
Iteration: 8, Func. Count: 110, Neg. LLF: 163.1953246887149
Iteration: 9, Func. Count: 123, Neg. LLF: 163.1715053675094
Iteration: 10, Func. Count: 136, Neg. LLF: 163.14802784403403
Iteration: 11, Func. Count: 149, Neg. LLF: 163.118314167318
Iteration: 12, Func. Count: 162, Neg. LLF: 163.0999214522679
Iteration: 13, Func. Count: 175, Neg. LLF: 163.08859341555504
Iteration: 14, Func. Count: 188, Neg. LLF: 163.08557167362804
Iteration: 15, Func. Count: 201, Neg. LLF: 163.0851727109821
Iteration: 16, Func. Count: 214, Neg. LLF: 163.08515519719234
Iteration: 17, Func. Count: 226, Neg. LLF: 163.0851551770663
Optimization terminated successfully (Exit mode 0)
Current function value: 163.08515519719234
Iterations: 17
Function evaluations: 226
Gradient evaluations: 17
Iteration: 1, Func. Count: 15, Neg. LLF: 279.5729847202452
Iteration: 2, Func. Count: 30, Neg. LLF: 200.34181062257193
Iteration: 3, Func. Count: 45, Neg. LLF: 168.12264325709893
Iteration: 4, Func. Count: 60, Neg. LLF: 169.94636587219537
Iteration: 5, Func. Count: 75, Neg. LLF: 187.2853854239233
Iteration: 6, Func. Count: 90, Neg. LLF: 163.43950391495483
Iteration: 7, Func. Count: 104, Neg. LLF: 164.695288503168
Iteration: 8, Func. Count: 119, Neg. LLF: 163.67523712159138
Iteration: 9, Func. Count: 134, Neg. LLF: 163.87650412598185
Iteration: 10, Func. Count: 149, Neg. LLF: 163.17473584770786
Iteration: 11, Func. Count: 163, Neg. LLF: 163.13976526751787
Iteration: 12, Func. Count: 177, Neg. LLF: 163.08684053216436
Iteration: 13, Func. Count: 191, Neg. LLF: 163.0491723807051
Iteration: 14, Func. Count: 205, Neg. LLF: 163.0388224560081
Iteration: 15, Func. Count: 219, Neg. LLF: 163.03210536484784
Iteration: 16, Func. Count: 233, Neg. LLF: 163.0284730770447
Iteration: 17, Func. Count: 247, Neg. LLF: 163.02764139968966
Iteration: 18, Func. Count: 261, Neg. LLF: 163.02755297615667
Iteration: 19, Func. Count: 275, Neg. LLF: 163.02754757747564
Iteration: 20, Func. Count: 288, Neg. LLF: 163.02754756053332
Optimization terminated successfully (Exit mode 0)
Current function value: 163.02754757747564
Iterations: 20
Function evaluations: 288
Gradient evaluations: 20
Iteration: 1, Func. Count: 8, Neg. LLF: 169.9102987451404
Iteration: 2, Func. Count: 15, Neg. LLF: 171.00195252423796
Iteration: 3, Func. Count: 23, Neg. LLF: 170.63482284211972
Iteration: 4, Func. Count: 31, Neg. LLF: 170.25900904793212
Iteration: 5, Func. Count: 39, Neg. LLF: 168.53799531035514
Iteration: 6, Func. Count: 46, Neg. LLF: 168.25201821583315
Iteration: 7, Func. Count: 53, Neg. LLF: 168.16093130275192
Iteration: 8, Func. Count: 60, Neg. LLF: 168.0500158350869
Iteration: 9, Func. Count: 67, Neg. LLF: 167.94746641248338
Iteration: 10, Func. Count: 74, Neg. LLF: 167.22181256692784
Iteration: 11, Func. Count: 81, Neg. LLF: 175.33492708492835
Iteration: 12, Func. Count: 89, Neg. LLF: 208.07902746344726
Iteration: 13, Func. Count: 97, Neg. LLF: 176.11425206246497
Iteration: 14, Func. Count: 105, Neg. LLF: 184.06302668126574
Iteration: 15, Func. Count: 113, Neg. LLF: 169.35502216672432
Iteration: 16, Func. Count: 121, Neg. LLF: 176.25950183024995
Iteration: 17, Func. Count: 129, Neg. LLF: 169.933515055109
Iteration: 18, Func. Count: 137, Neg. LLF: 164.35663419123765
Iteration: 19, Func. Count: 145, Neg. LLF: 163.875633209069
Iteration: 20, Func. Count: 152, Neg. LLF: 163.89135419546085
Iteration: 21, Func. Count: 160, Neg. LLF: 163.87129618435245
Iteration: 22, Func. Count: 167, Neg. LLF: 163.87089314808898
Iteration: 23, Func. Count: 174, Neg. LLF: 163.87088996912348
Iteration: 24, Func. Count: 181, Neg. LLF: 163.87088922988107
Optimization terminated successfully (Exit mode 0)
Current function value: 163.87088922988107
Iterations: 24
Function evaluations: 181
Gradient evaluations: 24
Iteration: 1, Func. Count: 9, Neg. LLF: 181.60900695304653
Iteration: 2, Func. Count: 18, Neg. LLF: 191.62480732827365
Iteration: 3, Func. Count: 27, Neg. LLF: 170.94310978163466
Iteration: 4, Func. Count: 36, Neg. LLF: 164.838291555682
Iteration: 5, Func. Count: 44, Neg. LLF: 167.83021489973754
Iteration: 6, Func. Count: 53, Neg. LLF: 166.55397964558685
Iteration: 7, Func. Count: 62, Neg. LLF: 163.92777193336167
Iteration: 8, Func. Count: 70, Neg. LLF: 163.8851005224204
Iteration: 9, Func. Count: 78, Neg. LLF: 163.8733364453382
Iteration: 10, Func. Count: 86, Neg. LLF: 163.8720396480827
Iteration: 11, Func. Count: 94, Neg. LLF: 163.87158352806335
Iteration: 12, Func. Count: 102, Neg. LLF: 163.8712302525003
Iteration: 13, Func. Count: 110, Neg. LLF: 163.87095858827686
Iteration: 14, Func. Count: 118, Neg. LLF: 163.87089535033678
Iteration: 15, Func. Count: 126, Neg. LLF: 163.87088935347495
Iteration: 16, Func. Count: 133, Neg. LLF: 163.87088936976926
Optimization terminated successfully (Exit mode 0)
Current function value: 163.87088935347495
Iterations: 16
Function evaluations: 133
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 170.38489341011993
Iteration: 2, Func. Count: 19, Neg. LLF: 168.2035707934012
Iteration: 3, Func. Count: 29, Neg. LLF: 173.02620250242168
Iteration: 4, Func. Count: 39, Neg. LLF: 178.96554157875894
Iteration: 5, Func. Count: 49, Neg. LLF: 166.19281727078874
Iteration: 6, Func. Count: 58, Neg. LLF: 165.81765942539988
Iteration: 7, Func. Count: 67, Neg. LLF: 165.74840548862548
Iteration: 8, Func. Count: 76, Neg. LLF: 165.6306842944851
Iteration: 9, Func. Count: 85, Neg. LLF: 165.09212184108333
Iteration: 10, Func. Count: 94, Neg. LLF: 176.68978220770782
Iteration: 11, Func. Count: 104, Neg. LLF: 166.3705891805666
Iteration: 12, Func. Count: 114, Neg. LLF: 164.72574077453402
Iteration: 13, Func. Count: 124, Neg. LLF: 164.1188710329416
Iteration: 14, Func. Count: 133, Neg. LLF: 163.94116053341887
Iteration: 15, Func. Count: 142, Neg. LLF: 163.8823281731958
Iteration: 16, Func. Count: 151, Neg. LLF: 163.87373541422113
Iteration: 17, Func. Count: 160, Neg. LLF: 163.87089759520788
Iteration: 18, Func. Count: 169, Neg. LLF: 163.87088943860778
Iteration: 19, Func. Count: 177, Neg. LLF: 163.87088949694132
Optimization terminated successfully (Exit mode 0)
Current function value: 163.87088943860778
Iterations: 19
Function evaluations: 177
Gradient evaluations: 19
Iteration: 1, Func. Count: 11, Neg. LLF: 170.385277718173
Iteration: 2, Func. Count: 21, Neg. LLF: 167.12307645820707
Iteration: 3, Func. Count: 32, Neg. LLF: 176.8505488038761
Iteration: 4, Func. Count: 43, Neg. LLF: 166.59241038465265
Iteration: 5, Func. Count: 54, Neg. LLF: 165.9430517152303
Iteration: 6, Func. Count: 64, Neg. LLF: 165.75589466731287
Iteration: 7, Func. Count: 74, Neg. LLF: 165.69619545575839
Iteration: 8, Func. Count: 85, Neg. LLF: 165.36567177296666
Iteration: 9, Func. Count: 95, Neg. LLF: 165.08043918205416
Iteration: 10, Func. Count: 105, Neg. LLF: 164.588187360094
Iteration: 11, Func. Count: 115, Neg. LLF: 164.2147016919864
Iteration: 12, Func. Count: 125, Neg. LLF: 165.82925817979654
Iteration: 13, Func. Count: 136, Neg. LLF: 244.74015462970812
Iteration: 14, Func. Count: 147, Neg. LLF: 163.87758762830663
Iteration: 15, Func. Count: 157, Neg. LLF: 163.87900155049684
Iteration: 16, Func. Count: 168, Neg. LLF: 163.87089303583625
Iteration: 17, Func. Count: 178, Neg. LLF: 163.87088937590244
Iteration: 18, Func. Count: 187, Neg. LLF: 163.87088937281544
Optimization terminated successfully (Exit mode 0)
Current function value: 163.87088937590244
Iterations: 18
Function evaluations: 187
Gradient evaluations: 18
Iteration: 1, Func. Count: 12, Neg. LLF: 170.38529984159047
Iteration: 2, Func. Count: 23, Neg. LLF: 167.20232052959645
Iteration: 3, Func. Count: 35, Neg. LLF: 176.80695722868174
Iteration: 4, Func. Count: 47, Neg. LLF: 166.55047854722164
Iteration: 5, Func. Count: 59, Neg. LLF: 165.95689886829427
Iteration: 6, Func. Count: 70, Neg. LLF: 165.723256699206
Iteration: 7, Func. Count: 81, Neg. LLF: 165.58292294968953
Iteration: 8, Func. Count: 92, Neg. LLF: 165.40463818321626
Iteration: 9, Func. Count: 103, Neg. LLF: 165.28448766993452
Iteration: 10, Func. Count: 114, Neg. LLF: 164.38279383467363
Iteration: 11, Func. Count: 125, Neg. LLF: 164.30094718551652
Iteration: 12, Func. Count: 137, Neg. LLF: 165.05459745820892
Iteration: 13, Func. Count: 149, Neg. LLF: 168.43875634297962
Iteration: 14, Func. Count: 161, Neg. LLF: 180.86678433698944
Iteration: 15, Func. Count: 173, Neg. LLF: 164.3267534795554
Iteration: 16, Func. Count: 185, Neg. LLF: 163.76050227887663
Iteration: 17, Func. Count: 196, Neg. LLF: 163.75942141697539
Iteration: 18, Func. Count: 207, Neg. LLF: 163.75887005344927
Iteration: 19, Func. Count: 218, Neg. LLF: 163.75862807709873
Iteration: 20, Func. Count: 229, Neg. LLF: 163.7586267670135
Iteration: 21, Func. Count: 239, Neg. LLF: 163.75862675300826
Optimization terminated successfully (Exit mode 0)
Current function value: 163.7586267670135
Iterations: 21
Function evaluations: 239
Gradient evaluations: 21
Iteration: 1, Func. Count: 9, Neg. LLF: 171.20670924623218
Iteration: 2, Func. Count: 18, Neg. LLF: 172.07596442048688
Iteration: 3, Func. Count: 28, Neg. LLF: 168.5451656741199
Iteration: 4, Func. Count: 36, Neg. LLF: 168.76368135151424
Iteration: 5, Func. Count: 45, Neg. LLF: 168.1793537525567
Iteration: 6, Func. Count: 53, Neg. LLF: 168.01266213915153
Iteration: 7, Func. Count: 61, Neg. LLF: 167.80481144727273
Iteration: 8, Func. Count: 69, Neg. LLF: 167.0527519345044
Iteration: 9, Func. Count: 77, Neg. LLF: 169.37736532563935
Iteration: 10, Func. Count: 86, Neg. LLF: 174.63086985215875
Iteration: 11, Func. Count: 95, Neg. LLF: 170.89525393430318
Iteration: 12, Func. Count: 104, Neg. LLF: 165.6791771690643
Iteration: 13, Func. Count: 113, Neg. LLF: 163.51827047252507
Iteration: 14, Func. Count: 121, Neg. LLF: 163.43967100074295
Iteration: 15, Func. Count: 129, Neg. LLF: 163.43218117493896
Iteration: 16, Func. Count: 138, Neg. LLF: 163.39858674571337
Iteration: 17, Func. Count: 146, Neg. LLF: 163.3960989067523
Iteration: 18, Func. Count: 154, Neg. LLF: 163.39444664589536
Iteration: 19, Func. Count: 162, Neg. LLF: 163.39441449964974
Iteration: 20, Func. Count: 170, Neg. LLF: 163.3944126390038
Iteration: 21, Func. Count: 177, Neg. LLF: 163.39441263363642
Optimization terminated successfully (Exit mode 0)
Current function value: 163.3944126390038
Iterations: 21
Function evaluations: 177
Gradient evaluations: 21
Iteration: 1, Func. Count: 10, Neg. LLF: 167.23457006053818
Iteration: 2, Func. Count: 19, Neg. LLF: 172.72401850819145
Iteration: 3, Func. Count: 29, Neg. LLF: 164.2603196376568
Iteration: 4, Func. Count: 39, Neg. LLF: 164.22972694314626
Iteration: 5, Func. Count: 49, Neg. LLF: 163.5221822559147
Iteration: 6, Func. Count: 58, Neg. LLF: 163.48116096300313
Iteration: 7, Func. Count: 67, Neg. LLF: 190.8149845623482
Iteration: 8, Func. Count: 78, Neg. LLF: 163.53400962739494
Iteration: 9, Func. Count: 88, Neg. LLF: 163.41997116957506
Iteration: 10, Func. Count: 97, Neg. LLF: 163.4092971522988
Iteration: 11, Func. Count: 106, Neg. LLF: 163.39682732373745
Iteration: 12, Func. Count: 115, Neg. LLF: 163.3945806278492
Iteration: 13, Func. Count: 124, Neg. LLF: 163.39441271513397
Iteration: 14, Func. Count: 132, Neg. LLF: 163.3944127463529
Optimization terminated successfully (Exit mode 0)
Current function value: 163.39441271513397
Iterations: 14
Function evaluations: 132
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 181.43887291486416
Iteration: 2, Func. Count: 22, Neg. LLF: 187.74102634670334
Iteration: 3, Func. Count: 33, Neg. LLF: 167.01896075644777
Iteration: 4, Func. Count: 44, Neg. LLF: 166.27741874472778
Iteration: 5, Func. Count: 55, Neg. LLF: 164.90617412915014
Iteration: 6, Func. Count: 66, Neg. LLF: 163.4670885238167
Iteration: 7, Func. Count: 76, Neg. LLF: 163.6425913046159
Iteration: 8, Func. Count: 87, Neg. LLF: 163.41640774019984
Iteration: 9, Func. Count: 97, Neg. LLF: 163.3997768298491
Iteration: 10, Func. Count: 107, Neg. LLF: 163.39791119555736
Iteration: 11, Func. Count: 117, Neg. LLF: 163.39558656704332
Iteration: 12, Func. Count: 127, Neg. LLF: 163.3945614587255
Iteration: 13, Func. Count: 137, Neg. LLF: 163.39442111026236
Iteration: 14, Func. Count: 147, Neg. LLF: 163.39441285085388
Iteration: 15, Func. Count: 156, Neg. LLF: 163.39441294979076
Optimization terminated successfully (Exit mode 0)
Current function value: 163.39441285085388
Iterations: 15
Function evaluations: 156
Gradient evaluations: 15
Iteration: 1, Func. Count: 12, Neg. LLF: 181.2051747904366
Iteration: 2, Func. Count: 24, Neg. LLF: 186.4121491411882
Iteration: 3, Func. Count: 36, Neg. LLF: 171.39977557272593
Iteration: 4, Func. Count: 48, Neg. LLF: 164.20700524929146
Iteration: 5, Func. Count: 59, Neg. LLF: 167.27890952596923
Iteration: 6, Func. Count: 71, Neg. LLF: 163.56761092403156
Iteration: 7, Func. Count: 83, Neg. LLF: 164.37575795945278
Iteration: 8, Func. Count: 95, Neg. LLF: 163.38743892813318
Iteration: 9, Func. Count: 106, Neg. LLF: 163.37859301968322
Iteration: 10, Func. Count: 117, Neg. LLF: 163.37792784141146
Iteration: 11, Func. Count: 128, Neg. LLF: 163.3769583579053
Iteration: 12, Func. Count: 139, Neg. LLF: 163.37619600263704
Iteration: 13, Func. Count: 150, Neg. LLF: 163.3761709387272
Iteration: 14, Func. Count: 161, Neg. LLF: 163.3761689970424
Iteration: 15, Func. Count: 171, Neg. LLF: 163.3761689849484
Optimization terminated successfully (Exit mode 0)
Current function value: 163.3761689970424
Iterations: 15
Function evaluations: 171
Gradient evaluations: 15
Iteration: 1, Func. Count: 13, Neg. LLF: 181.0958032150679
Iteration: 2, Func. Count: 26, Neg. LLF: 168.78439031006684
Iteration: 3, Func. Count: 39, Neg. LLF: 166.30688732698377
Iteration: 4, Func. Count: 52, Neg. LLF: 164.1296408124494
Iteration: 5, Func. Count: 64, Neg. LLF: 173.29731540453682
Iteration: 6, Func. Count: 77, Neg. LLF: 165.14359745226685
Iteration: 7, Func. Count: 90, Neg. LLF: 163.61250947419225
Iteration: 8, Func. Count: 103, Neg. LLF: 163.52947142889985
Iteration: 9, Func. Count: 116, Neg. LLF: 163.38963348701364
Iteration: 10, Func. Count: 128, Neg. LLF: 163.3729008327847
Iteration: 11, Func. Count: 140, Neg. LLF: 163.37118487428265
Iteration: 12, Func. Count: 152, Neg. LLF: 163.36931665090773
Iteration: 13, Func. Count: 164, Neg. LLF: 163.3680547865782
Iteration: 14, Func. Count: 176, Neg. LLF: 163.36772910390502
Iteration: 15, Func. Count: 188, Neg. LLF: 163.36767013075215
Iteration: 16, Func. Count: 200, Neg. LLF: 163.36766570945102
Iteration: 17, Func. Count: 211, Neg. LLF: 163.36766569891645
Optimization terminated successfully (Exit mode 0)
Current function value: 163.36766570945102
Iterations: 17
Function evaluations: 211
Gradient evaluations: 17
Iteration: 1, Func. Count: 10, Neg. LLF: 172.1003567584011
Iteration: 2, Func. Count: 21, Neg. LLF: 172.75567447356724
Iteration: 3, Func. Count: 32, Neg. LLF: 169.88091699573675
Iteration: 4, Func. Count: 42, Neg. LLF: 168.5054107302224
Iteration: 5, Func. Count: 51, Neg. LLF: 183.26592130605584
Iteration: 6, Func. Count: 61, Neg. LLF: 168.22620191950608
Iteration: 7, Func. Count: 70, Neg. LLF: 168.10885198471357
Iteration: 8, Func. Count: 79, Neg. LLF: 167.64309866119405
Iteration: 9, Func. Count: 88, Neg. LLF: 165.72330043551543
Iteration: 10, Func. Count: 97, Neg. LLF: 165.5075915292405
Iteration: 11, Func. Count: 106, Neg. LLF: 165.1589456710328
Iteration: 12, Func. Count: 115, Neg. LLF: 164.98555379288956
Iteration: 13, Func. Count: 124, Neg. LLF: 164.66520171710263
Iteration: 14, Func. Count: 133, Neg. LLF: 164.3587421054039
Iteration: 15, Func. Count: 142, Neg. LLF: 164.27310618110158
Iteration: 16, Func. Count: 152, Neg. LLF: 163.51543606882328
Iteration: 17, Func. Count: 161, Neg. LLF: 163.50667441900944
Iteration: 18, Func. Count: 171, Neg. LLF: 163.3285627841087
Iteration: 19, Func. Count: 180, Neg. LLF: 163.32018119687146
Iteration: 20, Func. Count: 189, Neg. LLF: 163.31990763997186
Iteration: 21, Func. Count: 198, Neg. LLF: 163.31983566581744
Iteration: 22, Func. Count: 206, Neg. LLF: 163.31983567101173
Optimization terminated successfully (Exit mode 0)
Current function value: 163.31983566581744
Iterations: 22
Function evaluations: 206
Gradient evaluations: 22
Iteration: 1, Func. Count: 11, Neg. LLF: 283.9122029697902
Iteration: 2, Func. Count: 22, Neg. LLF: 181.0483561513534
Iteration: 3, Func. Count: 33, Neg. LLF: 195.50088719032482
Iteration: 4, Func. Count: 44, Neg. LLF: 201.58434202400522
Iteration: 5, Func. Count: 55, Neg. LLF: 173.33665104514367
Iteration: 6, Func. Count: 66, Neg. LLF: 163.51112164747923
Iteration: 7, Func. Count: 76, Neg. LLF: 163.87447727418757
Iteration: 8, Func. Count: 87, Neg. LLF: 163.37185952713054
Iteration: 9, Func. Count: 97, Neg. LLF: 163.383758529118
Iteration: 10, Func. Count: 108, Neg. LLF: 163.32476504691948
Iteration: 11, Func. Count: 118, Neg. LLF: 163.32321577938882
Iteration: 12, Func. Count: 128, Neg. LLF: 163.32031062534918
Iteration: 13, Func. Count: 138, Neg. LLF: 163.32004435042842
Iteration: 14, Func. Count: 148, Neg. LLF: 163.31993224309127
Iteration: 15, Func. Count: 158, Neg. LLF: 163.31989504559664
Iteration: 16, Func. Count: 168, Neg. LLF: 163.3198413574029
Iteration: 17, Func. Count: 178, Neg. LLF: 163.3198357575036
Iteration: 18, Func. Count: 187, Neg. LLF: 163.31983579156577
Optimization terminated successfully (Exit mode 0)
Current function value: 163.3198357575036
Iterations: 18
Function evaluations: 187
Gradient evaluations: 18
Iteration: 1, Func. Count: 12, Neg. LLF: 234.91488665644786
Iteration: 2, Func. Count: 24, Neg. LLF: 168.09487483565067
Iteration: 3, Func. Count: 36, Neg. LLF: 167.26188345961157
Iteration: 4, Func. Count: 48, Neg. LLF: 163.9964171815796
Iteration: 5, Func. Count: 59, Neg. LLF: 163.50651709890576
Iteration: 6, Func. Count: 70, Neg. LLF: 175.12301266055894
Iteration: 7, Func. Count: 82, Neg. LLF: 163.4534873624151
Iteration: 8, Func. Count: 93, Neg. LLF: 163.6137659325258
Iteration: 9, Func. Count: 105, Neg. LLF: 163.39010552319215
Iteration: 10, Func. Count: 116, Neg. LLF: 163.37384142329222
Iteration: 11, Func. Count: 127, Neg. LLF: 163.33779782021247
Iteration: 12, Func. Count: 138, Neg. LLF: 163.3234121727879
Iteration: 13, Func. Count: 149, Neg. LLF: 163.32002828124743
Iteration: 14, Func. Count: 160, Neg. LLF: 163.3198924019284
Iteration: 15, Func. Count: 171, Neg. LLF: 163.31986340271413
Iteration: 16, Func. Count: 182, Neg. LLF: 163.31983747025683
Iteration: 17, Func. Count: 193, Neg. LLF: 163.3198354289055
Iteration: 18, Func. Count: 203, Neg. LLF: 163.31983554387463
Optimization terminated successfully (Exit mode 0)
Current function value: 163.3198354289055
Iterations: 18
Function evaluations: 203
Gradient evaluations: 18
Iteration: 1, Func. Count: 13, Neg. LLF: 280.64385860114834
Iteration: 2, Func. Count: 26, Neg. LLF: 167.3234956063141
Iteration: 3, Func. Count: 38, Neg. LLF: 164.69348739386484
Iteration: 4, Func. Count: 51, Neg. LLF: 167.90982528825558
Iteration: 5, Func. Count: 64, Neg. LLF: 164.00983509147062
Iteration: 6, Func. Count: 77, Neg. LLF: 163.5732269746034
Iteration: 7, Func. Count: 90, Neg. LLF: 165.08748765369367
Iteration: 8, Func. Count: 103, Neg. LLF: 163.38365834564868
Iteration: 9, Func. Count: 115, Neg. LLF: 195.2991360590748
Iteration: 10, Func. Count: 129, Neg. LLF: 163.3504182635638
Iteration: 11, Func. Count: 141, Neg. LLF: 163.32691137574247
Iteration: 12, Func. Count: 153, Neg. LLF: 163.27120793309982
Iteration: 13, Func. Count: 165, Neg. LLF: 163.2636029283295
Iteration: 14, Func. Count: 177, Neg. LLF: 163.26113092708138
Iteration: 15, Func. Count: 189, Neg. LLF: 163.2574342804591
Iteration: 16, Func. Count: 201, Neg. LLF: 163.2564476771865
Iteration: 17, Func. Count: 213, Neg. LLF: 163.25628903634055
Iteration: 18, Func. Count: 225, Neg. LLF: 163.25628363082853
Iteration: 19, Func. Count: 236, Neg. LLF: 163.2562836159499
Optimization terminated successfully (Exit mode 0)
Current function value: 163.25628363082853
Iterations: 19
Function evaluations: 236
Gradient evaluations: 19
Iteration: 1, Func. Count: 14, Neg. LLF: 279.8511445080646
Iteration: 2, Func. Count: 28, Neg. LLF: 167.2100897138869
Iteration: 3, Func. Count: 41, Neg. LLF: 166.76256848168782
Iteration: 4, Func. Count: 55, Neg. LLF: 170.57390207912508
Iteration: 5, Func. Count: 69, Neg. LLF: 172.6955747589053
Iteration: 6, Func. Count: 83, Neg. LLF: 164.95236863571736
Iteration: 7, Func. Count: 97, Neg. LLF: 164.4597120322056
Iteration: 8, Func. Count: 111, Neg. LLF: 164.21664684925335
Iteration: 9, Func. Count: 125, Neg. LLF: 163.4852495112896
Iteration: 10, Func. Count: 138, Neg. LLF: 163.45120703867448
Iteration: 11, Func. Count: 151, Neg. LLF: 172.23350469750676
Iteration: 12, Func. Count: 166, Neg. LLF: 163.34904746665876
Iteration: 13, Func. Count: 179, Neg. LLF: 163.29503096241848
Iteration: 14, Func. Count: 192, Neg. LLF: 163.15719989320147
Iteration: 15, Func. Count: 205, Neg. LLF: 163.06877968612483
Iteration: 16, Func. Count: 218, Neg. LLF: 163.07574666553649
Iteration: 17, Func. Count: 232, Neg. LLF: 163.05084483332294
Iteration: 18, Func. Count: 245, Neg. LLF: 163.04627028431997
Iteration: 19, Func. Count: 258, Neg. LLF: 163.0441272663169
Iteration: 20, Func. Count: 271, Neg. LLF: 163.04384694051453
Iteration: 21, Func. Count: 284, Neg. LLF: 163.04370519530883
Iteration: 22, Func. Count: 297, Neg. LLF: 163.04360176434506
Iteration: 23, Func. Count: 310, Neg. LLF: 163.0435802520129
Iteration: 24, Func. Count: 323, Neg. LLF: 163.04357844259258
Iteration: 25, Func. Count: 335, Neg. LLF: 163.0435784146137
Optimization terminated successfully (Exit mode 0)
Current function value: 163.04357844259258
Iterations: 25
Function evaluations: 335
Gradient evaluations: 25
Iteration: 1, Func. Count: 11, Neg. LLF: 170.55414896906746
Iteration: 2, Func. Count: 22, Neg. LLF: 193.5264270459252
Iteration: 3, Func. Count: 33, Neg. LLF: 167.022607559852
Iteration: 4, Func. Count: 44, Neg. LLF: 169.41679869293569
Iteration: 5, Func. Count: 56, Neg. LLF: 165.13378251226868
Iteration: 6, Func. Count: 66, Neg. LLF: 165.50890569488456
Iteration: 7, Func. Count: 77, Neg. LLF: 165.00661226200296
Iteration: 8, Func. Count: 87, Neg. LLF: 164.8808349465104
Iteration: 9, Func. Count: 97, Neg. LLF: 164.78449411182237
Iteration: 10, Func. Count: 107, Neg. LLF: 164.27093974509444
Iteration: 11, Func. Count: 117, Neg. LLF: 165.00083768009094
Iteration: 12, Func. Count: 128, Neg. LLF: 163.67117617811198
Iteration: 13, Func. Count: 138, Neg. LLF: 163.33507717192714
Iteration: 14, Func. Count: 148, Neg. LLF: 163.24774164546068
Iteration: 15, Func. Count: 158, Neg. LLF: 163.23774350403949
Iteration: 16, Func. Count: 169, Neg. LLF: 163.20640351668465
Iteration: 17, Func. Count: 179, Neg. LLF: 163.20595257154682
Iteration: 18, Func. Count: 189, Neg. LLF: 163.20582930884143
Iteration: 19, Func. Count: 199, Neg. LLF: 163.2058233198974
Iteration: 20, Func. Count: 208, Neg. LLF: 163.20582331209494
Optimization terminated successfully (Exit mode 0)
Current function value: 163.2058233198974
Iterations: 20
Function evaluations: 208
Gradient evaluations: 20
Iteration: 1, Func. Count: 12, Neg. LLF: 283.41388015258633
Iteration: 2, Func. Count: 24, Neg. LLF: 181.3890326806002
Iteration: 3, Func. Count: 36, Neg. LLF: 172.77311418760385
Iteration: 4, Func. Count: 48, Neg. LLF: 170.89983092660142
Iteration: 5, Func. Count: 60, Neg. LLF: 163.52672970279116
Iteration: 6, Func. Count: 71, Neg. LLF: 163.44012757798956
Iteration: 7, Func. Count: 83, Neg. LLF: 163.250756874062
Iteration: 8, Func. Count: 94, Neg. LLF: 163.2346395530323
Iteration: 9, Func. Count: 105, Neg. LLF: 163.2217648285573
Iteration: 10, Func. Count: 116, Neg. LLF: 163.21819378549645
Iteration: 11, Func. Count: 127, Neg. LLF: 163.20883912111464
Iteration: 12, Func. Count: 138, Neg. LLF: 163.20716288367467
Iteration: 13, Func. Count: 149, Neg. LLF: 163.20627377478516
Iteration: 14, Func. Count: 160, Neg. LLF: 163.2059872158822
Iteration: 15, Func. Count: 171, Neg. LLF: 163.2058299137911
Iteration: 16, Func. Count: 182, Neg. LLF: 163.20582313646403
Iteration: 17, Func. Count: 192, Neg. LLF: 163.20582316988242
Optimization terminated successfully (Exit mode 0)
Current function value: 163.20582313646403
Iterations: 17
Function evaluations: 192
Gradient evaluations: 17
Iteration: 1, Func. Count: 13, Neg. LLF: 281.7326588852907
Iteration: 2, Func. Count: 26, Neg. LLF: 168.22067897157027
Iteration: 3, Func. Count: 39, Neg. LLF: 172.93950878856822
Iteration: 4, Func. Count: 52, Neg. LLF: 166.09771767560775
Iteration: 5, Func. Count: 65, Neg. LLF: 164.13086517576332
Iteration: 6, Func. Count: 77, Neg. LLF: 163.28437330381675
Iteration: 7, Func. Count: 89, Neg. LLF: 163.37551812669528
Iteration: 8, Func. Count: 102, Neg. LLF: 163.24378003558368
Iteration: 9, Func. Count: 114, Neg. LLF: 163.22385614465952
Iteration: 10, Func. Count: 126, Neg. LLF: 163.21804787241564
Iteration: 11, Func. Count: 138, Neg. LLF: 163.2080699452543
Iteration: 12, Func. Count: 150, Neg. LLF: 163.2060948956421
Iteration: 13, Func. Count: 162, Neg. LLF: 163.20583010190526
Iteration: 14, Func. Count: 174, Neg. LLF: 163.2058242090662
Iteration: 15, Func. Count: 186, Neg. LLF: 163.20582292087184
Iteration: 16, Func. Count: 197, Neg. LLF: 163.20582295863696
Optimization terminated successfully (Exit mode 0)
Current function value: 163.20582292087184
Iterations: 16
Function evaluations: 197
Gradient evaluations: 16
Iteration: 1, Func. Count: 14, Neg. LLF: 280.7067331308609
Iteration: 2, Func. Count: 28, Neg. LLF: 181.80808074445855
Iteration: 3, Func. Count: 42, Neg. LLF: 168.08039571159782
Iteration: 4, Func. Count: 56, Neg. LLF: 170.68894482262593
Iteration: 5, Func. Count: 70, Neg. LLF: 197.85084284793263
Iteration: 6, Func. Count: 84, Neg. LLF: 163.70634745463673
Iteration: 7, Func. Count: 97, Neg. LLF: 163.34521838533158
Iteration: 8, Func. Count: 110, Neg. LLF: 163.2408144455258
Iteration: 9, Func. Count: 123, Neg. LLF: 163.18716536521345
Iteration: 10, Func. Count: 136, Neg. LLF: 163.17018417977545
Iteration: 11, Func. Count: 149, Neg. LLF: 163.12131381562995
Iteration: 12, Func. Count: 162, Neg. LLF: 163.10577262275683
Iteration: 13, Func. Count: 175, Neg. LLF: 163.09219452963887
Iteration: 14, Func. Count: 188, Neg. LLF: 163.086211286674
Iteration: 15, Func. Count: 201, Neg. LLF: 163.08523375225292
Iteration: 16, Func. Count: 214, Neg. LLF: 163.08515622156096
Iteration: 17, Func. Count: 227, Neg. LLF: 163.08515512124137
Iteration: 18, Func. Count: 239, Neg. LLF: 163.08515510107327
Optimization terminated successfully (Exit mode 0)
Current function value: 163.08515512124137
Iterations: 18
Function evaluations: 239
Gradient evaluations: 18
Iteration: 1, Func. Count: 15, Neg. LLF: 280.03939144768685
Iteration: 2, Func. Count: 30, Neg. LLF: 207.55131729172604
Iteration: 3, Func. Count: 45, Neg. LLF: 167.70348417071747
Iteration: 4, Func. Count: 60, Neg. LLF: 170.16743813378602
Iteration: 5, Func. Count: 75, Neg. LLF: 197.97563965332492
Iteration: 6, Func. Count: 91, Neg. LLF: 163.48969064395476
Iteration: 7, Func. Count: 105, Neg. LLF: 163.60235604556237
Iteration: 8, Func. Count: 120, Neg. LLF: 163.60747302208972
Iteration: 9, Func. Count: 135, Neg. LLF: 167.1526884501334
Iteration: 10, Func. Count: 150, Neg. LLF: 163.1787521514258
Iteration: 11, Func. Count: 164, Neg. LLF: 163.13256968382055
Iteration: 12, Func. Count: 178, Neg. LLF: 163.09846097647255
Iteration: 13, Func. Count: 192, Neg. LLF: 163.07151695705772
Iteration: 14, Func. Count: 206, Neg. LLF: 163.0538386264109
Iteration: 15, Func. Count: 220, Neg. LLF: 163.0304199113072
Iteration: 16, Func. Count: 234, Neg. LLF: 163.02836672675895
Iteration: 17, Func. Count: 248, Neg. LLF: 163.02764682795504
Iteration: 18, Func. Count: 262, Neg. LLF: 163.02757091707417
Iteration: 19, Func. Count: 276, Neg. LLF: 163.02754754922123
Iteration: 20, Func. Count: 289, Neg. LLF: 163.02754753202618
Optimization terminated successfully (Exit mode 0)
Current function value: 163.02754754922123
Iterations: 20
Function evaluations: 289
Gradient evaluations: 20
Iteration: 1, Func. Count: 12, Neg. LLF: 170.24952316096503
Iteration: 2, Func. Count: 24, Neg. LLF: 181.9459217908679
Iteration: 3, Func. Count: 36, Neg. LLF: 170.7001048443264
Iteration: 4, Func. Count: 49, Neg. LLF: 170.21086685207584
Iteration: 5, Func. Count: 61, Neg. LLF: 167.23182029572274
Iteration: 6, Func. Count: 72, Neg. LLF: 167.59284391156757
Iteration: 7, Func. Count: 84, Neg. LLF: 168.8610188910103
Iteration: 8, Func. Count: 96, Neg. LLF: 166.9731903543328
Iteration: 9, Func. Count: 107, Neg. LLF: 166.90112986828157
Iteration: 10, Func. Count: 118, Neg. LLF: 166.8242568563113
Iteration: 11, Func. Count: 129, Neg. LLF: 166.61534866573777
Iteration: 12, Func. Count: 140, Neg. LLF: 166.08645341030268
Iteration: 13, Func. Count: 151, Neg. LLF: 164.87650175788977
Iteration: 14, Func. Count: 162, Neg. LLF: 163.99744352734012
Iteration: 15, Func. Count: 173, Neg. LLF: 163.66063346578207
Iteration: 16, Func. Count: 184, Neg. LLF: 168.0032488651232
Iteration: 17, Func. Count: 196, Neg. LLF: 163.52629479711482
Iteration: 18, Func. Count: 208, Neg. LLF: 163.13415143009234
Iteration: 19, Func. Count: 219, Neg. LLF: 163.1005357260404
Iteration: 20, Func. Count: 230, Neg. LLF: 163.05067639128998
Iteration: 21, Func. Count: 241, Neg. LLF: 163.04054239878457
Iteration: 22, Func. Count: 252, Neg. LLF: 163.03323773398444
Iteration: 23, Func. Count: 263, Neg. LLF: 163.0305462580726
Iteration: 24, Func. Count: 274, Neg. LLF: 163.02808283996566
Iteration: 25, Func. Count: 285, Neg. LLF: 163.02761515466966
Iteration: 26, Func. Count: 296, Neg. LLF: 163.02753917079676
Iteration: 27, Func. Count: 307, Neg. LLF: 163.02752759469763
Iteration: 28, Func. Count: 318, Neg. LLF: 163.02752524989097
Iteration: 29, Func. Count: 328, Neg. LLF: 163.02752516385186
Optimization terminated successfully (Exit mode 0)
Current function value: 163.02752524989097
Iterations: 29
Function evaluations: 328
Gradient evaluations: 29
Iteration: 1, Func. Count: 13, Neg. LLF: 282.18632828375115
Iteration: 2, Func. Count: 26, Neg. LLF: 181.74624811730274
Iteration: 3, Func. Count: 39, Neg. LLF: 172.43480802052514
Iteration: 4, Func. Count: 52, Neg. LLF: 191.08497448035484
Iteration: 5, Func. Count: 65, Neg. LLF: 169.91734362311396
Iteration: 6, Func. Count: 78, Neg. LLF: 164.17061171901742
Iteration: 7, Func. Count: 90, Neg. LLF: 163.6256359666389
Iteration: 8, Func. Count: 102, Neg. LLF: 167.0726094599071
Iteration: 9, Func. Count: 115, Neg. LLF: 163.1603017944404
Iteration: 10, Func. Count: 127, Neg. LLF: 163.08103183083654
Iteration: 11, Func. Count: 139, Neg. LLF: 163.0576527403475
Iteration: 12, Func. Count: 151, Neg. LLF: 163.04877156426326
Iteration: 13, Func. Count: 163, Neg. LLF: 163.03660865454086
Iteration: 14, Func. Count: 175, Neg. LLF: 163.0346630239991
Iteration: 15, Func. Count: 187, Neg. LLF: 163.02846814102637
Iteration: 16, Func. Count: 199, Neg. LLF: 163.02767573703326
Iteration: 17, Func. Count: 211, Neg. LLF: 163.0275413491193
Iteration: 18, Func. Count: 223, Neg. LLF: 163.02752536413948
Iteration: 19, Func. Count: 234, Neg. LLF: 163.0275254059785
Optimization terminated successfully (Exit mode 0)
Current function value: 163.02752536413948
Iterations: 19
Function evaluations: 234
Gradient evaluations: 19
Iteration: 1, Func. Count: 14, Neg. LLF: 280.3609819158731
Iteration: 2, Func. Count: 28, Neg. LLF: 170.07028895198295
Iteration: 3, Func. Count: 42, Neg. LLF: 181.46056971245255
Iteration: 4, Func. Count: 56, Neg. LLF: 172.1796708637668
Iteration: 5, Func. Count: 70, Neg. LLF: 187.3862593259267
Iteration: 6, Func. Count: 84, Neg. LLF: 163.4850275581421
Iteration: 7, Func. Count: 97, Neg. LLF: 163.49943645592413
Iteration: 8, Func. Count: 111, Neg. LLF: 163.21709726120406
Iteration: 9, Func. Count: 124, Neg. LLF: 163.0818347711993
Iteration: 10, Func. Count: 137, Neg. LLF: 163.06853768583858
Iteration: 11, Func. Count: 150, Neg. LLF: 163.05447349245605
Iteration: 12, Func. Count: 163, Neg. LLF: 163.04755476422028
Iteration: 13, Func. Count: 176, Neg. LLF: 163.0400153450019
Iteration: 14, Func. Count: 189, Neg. LLF: 163.03308791986976
Iteration: 15, Func. Count: 202, Neg. LLF: 163.02872056409146
Iteration: 16, Func. Count: 215, Neg. LLF: 163.02759978654947
Iteration: 17, Func. Count: 228, Neg. LLF: 163.02752614951592
Iteration: 18, Func. Count: 241, Neg. LLF: 163.02752501334535
Iteration: 19, Func. Count: 253, Neg. LLF: 163.02752502205627
Optimization terminated successfully (Exit mode 0)
Current function value: 163.02752501334535
Iterations: 19
Function evaluations: 253
Gradient evaluations: 19
Iteration: 1, Func. Count: 15, Neg. LLF: 279.18225838662414
Iteration: 2, Func. Count: 30, Neg. LLF: 194.76634219614766
Iteration: 3, Func. Count: 45, Neg. LLF: 169.66312767154696
Iteration: 4, Func. Count: 60, Neg. LLF: 170.23141284886432
Iteration: 5, Func. Count: 75, Neg. LLF: 170.7475866637398
Iteration: 6, Func. Count: 90, Neg. LLF: 163.73266407059737
Iteration: 7, Func. Count: 104, Neg. LLF: 163.66717371156406
Iteration: 8, Func. Count: 119, Neg. LLF: 163.3497348352697
Iteration: 9, Func. Count: 134, Neg. LLF: 163.21804763305832
Iteration: 10, Func. Count: 148, Neg. LLF: 163.1334769812378
Iteration: 11, Func. Count: 162, Neg. LLF: 163.0678322063892
Iteration: 12, Func. Count: 176, Neg. LLF: 163.05822047516594
Iteration: 13, Func. Count: 190, Neg. LLF: 163.034734726934
Iteration: 14, Func. Count: 204, Neg. LLF: 163.02304027931046
Iteration: 15, Func. Count: 218, Neg. LLF: 163.0156670178482
Iteration: 16, Func. Count: 232, Neg. LLF: 163.01274562735796
Iteration: 17, Func. Count: 246, Neg. LLF: 163.01048156578366
Iteration: 18, Func. Count: 260, Neg. LLF: 163.00794525753386
Iteration: 19, Func. Count: 274, Neg. LLF: 163.00674095713615
Iteration: 20, Func. Count: 288, Neg. LLF: 163.0056195278366
Iteration: 21, Func. Count: 302, Neg. LLF: 163.00539863654285
Iteration: 22, Func. Count: 316, Neg. LLF: 163.00537223084294
Iteration: 23, Func. Count: 330, Neg. LLF: 163.00536824356737
Iteration: 24, Func. Count: 344, Neg. LLF: 163.0053661022244
Iteration: 25, Func. Count: 357, Neg. LLF: 163.0053660847346
Optimization terminated successfully (Exit mode 0)
Current function value: 163.0053661022244
Iterations: 25
Function evaluations: 357
Gradient evaluations: 25
Iteration: 1, Func. Count: 16, Neg. LLF: 169.15389605537626
Iteration: 2, Func. Count: 31, Neg. LLF: 166.38753357666295
Iteration: 3, Func. Count: 46, Neg. LLF: 185.6202507021678
Iteration: 4, Func. Count: 63, Neg. LLF: 186.60886914193375
Iteration: 5, Func. Count: 79, Neg. LLF: 197.2275043831516
Iteration: 6, Func. Count: 95, Neg. LLF: 172.13059217172375
Iteration: 7, Func. Count: 111, Neg. LLF: 170.89633048818138
Iteration: 8, Func. Count: 127, Neg. LLF: 165.1977372365984
Iteration: 9, Func. Count: 143, Neg. LLF: 164.98014497218983
Iteration: 10, Func. Count: 158, Neg. LLF: 164.92274588389455
Iteration: 11, Func. Count: 173, Neg. LLF: 164.6092993015632
Iteration: 12, Func. Count: 188, Neg. LLF: 167.17568424358114
Iteration: 13, Func. Count: 204, Neg. LLF: 243.50724310381577
Iteration: 14, Func. Count: 220, Neg. LLF: 177.37133419918075
Iteration: 15, Func. Count: 236, Neg. LLF: 170.3579592839123
Iteration: 16, Func. Count: 252, Neg. LLF: 168.03469403810843
Iteration: 17, Func. Count: 268, Neg. LLF: 183.13686472063884
Iteration: 18, Func. Count: 284, Neg. LLF: 166.08110032706108
Iteration: 19, Func. Count: 300, Neg. LLF: 163.38729276267543
Iteration: 20, Func. Count: 315, Neg. LLF: 163.4836669629774
Iteration: 21, Func. Count: 331, Neg. LLF: 163.20604062781928
Iteration: 22, Func. Count: 347, Neg. LLF: 163.05683782769242
Iteration: 23, Func. Count: 362, Neg. LLF: 163.03049578828265
Iteration: 24, Func. Count: 377, Neg. LLF: 163.02771944614568
Iteration: 25, Func. Count: 392, Neg. LLF: 163.02756498686628
Iteration: 26, Func. Count: 407, Neg. LLF: 163.02754833879823
Iteration: 27, Func. Count: 422, Neg. LLF: 163.0275472709861
Iteration: 28, Func. Count: 436, Neg. LLF: 163.02754725395852
Optimization terminated successfully (Exit mode 0)
Current function value: 163.0275472709861
Iterations: 28
Function evaluations: 436
Gradient evaluations: 28
Iteration: 1, Func. Count: 7, Neg. LLF: 171.1950174288757
Iteration: 2, Func. Count: 14, Neg. LLF: 172.05856475913097
Iteration: 3, Func. Count: 22, Neg. LLF: 168.53188754534878
Iteration: 4, Func. Count: 28, Neg. LLF: 168.57655570360603
Iteration: 5, Func. Count: 35, Neg. LLF: 168.20580018173334
Iteration: 6, Func. Count: 41, Neg. LLF: 168.01409075798114
Iteration: 7, Func. Count: 47, Neg. LLF: 167.77434496185052
Iteration: 8, Func. Count: 53, Neg. LLF: 166.29422157008744
Iteration: 9, Func. Count: 59, Neg. LLF: 169.6289789566984
Iteration: 10, Func. Count: 66, Neg. LLF: 175.81817657022344
Iteration: 11, Func. Count: 73, Neg. LLF: 171.26674210932214
Iteration: 12, Func. Count: 80, Neg. LLF: 169.35667512330758
Iteration: 13, Func. Count: 87, Neg. LLF: 169.18302948297978
Iteration: 14, Func. Count: 94, Neg. LLF: 164.04655434019273
Iteration: 15, Func. Count: 100, Neg. LLF: 163.96686648843183
Iteration: 16, Func. Count: 106, Neg. LLF: 164.5753665108474
Iteration: 17, Func. Count: 113, Neg. LLF: 163.87605994072723
Iteration: 18, Func. Count: 119, Neg. LLF: 163.87750213813678
Iteration: 19, Func. Count: 126, Neg. LLF: 163.87093118513806
Iteration: 20, Func. Count: 132, Neg. LLF: 163.87088954647945
Iteration: 21, Func. Count: 137, Neg. LLF: 163.87088953391728
Optimization terminated successfully (Exit mode 0)
Current function value: 163.87088954647945
Iterations: 21
Function evaluations: 137
Gradient evaluations: 21
Iteration: 1, Func. Count: 5, Neg. LLF: 180.22647205075643
Iteration: 2, Func. Count: 10, Neg. LLF: 179.2299750178929
Iteration: 3, Func. Count: 14, Neg. LLF: 179.09455624720613
Iteration: 4, Func. Count: 18, Neg. LLF: 178.98541000570407
Iteration: 5, Func. Count: 22, Neg. LLF: 178.61161444841474
Iteration: 6, Func. Count: 26, Neg. LLF: 178.19931070105523
Iteration: 7, Func. Count: 30, Neg. LLF: 177.84239330161915
Iteration: 8, Func. Count: 34, Neg. LLF: 177.70303799892483
Iteration: 9, Func. Count: 38, Neg. LLF: 177.67531323876022
Iteration: 10, Func. Count: 42, Neg. LLF: 177.66808167191465
Iteration: 11, Func. Count: 46, Neg. LLF: 177.66173729256667
Iteration: 12, Func. Count: 50, Neg. LLF: 177.65868993500249
Iteration: 13, Func. Count: 54, Neg. LLF: 177.65775049949045
Iteration: 14, Func. Count: 58, Neg. LLF: 177.65762422747983
Iteration: 15, Func. Count: 62, Neg. LLF: 177.65760674352822
Iteration: 16, Func. Count: 66, Neg. LLF: 177.65760283968078
Iteration: 17, Func. Count: 69, Neg. LLF: 177.6576028396863
Optimization terminated successfully (Exit mode 0)
Current function value: 177.65760283968078
Iterations: 17
Function evaluations: 69
Gradient evaluations: 17
Iteration: 1, Func. Count: 6, Neg. LLF: 271.21526164012397
Iteration: 2, Func. Count: 12, Neg. LLF: 251.8019760129691
Iteration: 3, Func. Count: 18, Neg. LLF: 171.5979498740791
Iteration: 4, Func. Count: 23, Neg. LLF: 171.47931949584122
Iteration: 5, Func. Count: 28, Neg. LLF: 171.3418040881253
Iteration: 6, Func. Count: 33, Neg. LLF: 171.0565348618345
Iteration: 7, Func. Count: 38, Neg. LLF: 170.97615874754408
Iteration: 8, Func. Count: 43, Neg. LLF: 170.96868030237462
Iteration: 9, Func. Count: 48, Neg. LLF: 170.96778724882248
Iteration: 10, Func. Count: 53, Neg. LLF: 170.9653563326213
Iteration: 11, Func. Count: 58, Neg. LLF: 170.9647251065458
Iteration: 12, Func. Count: 63, Neg. LLF: 170.96462370395867
Iteration: 13, Func. Count: 68, Neg. LLF: 170.96461645174415
Iteration: 14, Func. Count: 73, Neg. LLF: 170.96461496700118
Iteration: 15, Func. Count: 78, Neg. LLF: 170.964614111665
Optimization terminated successfully (Exit mode 0)
Current function value: 170.964614111665
Iterations: 15
Function evaluations: 78
Gradient evaluations: 15
Iteration: 1, Func. Count: 7, Neg. LLF: 255.34968377042668
Iteration: 2, Func. Count: 14, Neg. LLF: 228.5852717079438
Iteration: 3, Func. Count: 21, Neg. LLF: 174.23345698780312
Iteration: 4, Func. Count: 28, Neg. LLF: 171.62420098131554
Iteration: 5, Func. Count: 34, Neg. LLF: 171.53661136668856
Iteration: 6, Func. Count: 40, Neg. LLF: 171.45138011342107
Iteration: 7, Func. Count: 46, Neg. LLF: 171.13729384015474
Iteration: 8, Func. Count: 52, Neg. LLF: 170.98876115425404
Iteration: 9, Func. Count: 58, Neg. LLF: 170.9709772650874
Iteration: 10, Func. Count: 64, Neg. LLF: 170.96649649084367
Iteration: 11, Func. Count: 70, Neg. LLF: 170.96490248356318
Iteration: 12, Func. Count: 76, Neg. LLF: 170.96468469129022
Iteration: 13, Func. Count: 82, Neg. LLF: 170.9646349894122
Iteration: 14, Func. Count: 88, Neg. LLF: 170.9646164856254
Iteration: 15, Func. Count: 94, Neg. LLF: 170.96461418617048
Iteration: 16, Func. Count: 99, Neg. LLF: 170.9646142407944
Optimization terminated successfully (Exit mode 0)
Current function value: 170.96461418617048
Iterations: 16
Function evaluations: 99
Gradient evaluations: 16
Iteration: 1, Func. Count: 8, Neg. LLF: 188.20242903431105
Iteration: 2, Func. Count: 16, Neg. LLF: 173.17326265816433
Iteration: 3, Func. Count: 23, Neg. LLF: 171.78790239871114
Iteration: 4, Func. Count: 30, Neg. LLF: 171.58747169635268
Iteration: 5, Func. Count: 37, Neg. LLF: 171.28623698250243
Iteration: 6, Func. Count: 44, Neg. LLF: 171.27333154077215
Iteration: 7, Func. Count: 51, Neg. LLF: 171.24772364977062
Iteration: 8, Func. Count: 58, Neg. LLF: 171.18434243597522
Iteration: 9, Func. Count: 65, Neg. LLF: 171.10394962643778
Iteration: 10, Func. Count: 72, Neg. LLF: 171.01331453996005
Iteration: 11, Func. Count: 79, Neg. LLF: 170.97202575808538
Iteration: 12, Func. Count: 86, Neg. LLF: 170.96701579672325
Iteration: 13, Func. Count: 93, Neg. LLF: 170.964639670933
Iteration: 14, Func. Count: 100, Neg. LLF: 170.96461464265073
Iteration: 15, Func. Count: 107, Neg. LLF: 170.96461404400313
Optimization terminated successfully (Exit mode 0)
Current function value: 170.96461404400313
Iterations: 15
Function evaluations: 107
Gradient evaluations: 15
Iteration: 1, Func. Count: 9, Neg. LLF: 188.1605958661481
Iteration: 2, Func. Count: 18, Neg. LLF: 172.87042885271418
Iteration: 3, Func. Count: 26, Neg. LLF: 171.72334680206038
Iteration: 4, Func. Count: 34, Neg. LLF: 171.4380391622817
Iteration: 5, Func. Count: 42, Neg. LLF: 171.2860570335626
Iteration: 6, Func. Count: 50, Neg. LLF: 171.27404753856905
Iteration: 7, Func. Count: 58, Neg. LLF: 171.2323686674963
Iteration: 8, Func. Count: 66, Neg. LLF: 171.17993296794074
Iteration: 9, Func. Count: 74, Neg. LLF: 171.0864956513028
Iteration: 10, Func. Count: 82, Neg. LLF: 170.97536394609847
Iteration: 11, Func. Count: 90, Neg. LLF: 170.96555523289044
Iteration: 12, Func. Count: 98, Neg. LLF: 170.96488280295426
Iteration: 13, Func. Count: 106, Neg. LLF: 170.9646144528374
Iteration: 14, Func. Count: 113, Neg. LLF: 170.96461453708318
Optimization terminated successfully (Exit mode 0)
Current function value: 170.9646144528374
Iterations: 14
Function evaluations: 113
Gradient evaluations: 14
Iteration: 1, Func. Count: 6, Neg. LLF: 183.94765165450826
Iteration: 2, Func. Count: 13, Neg. LLF: 174.14783264628483
Iteration: 3, Func. Count: 19, Neg. LLF: 172.56428077753245
Iteration: 4, Func. Count: 24, Neg. LLF: 172.34588040900206
Iteration: 5, Func. Count: 29, Neg. LLF: 172.3340026925172
Iteration: 6, Func. Count: 34, Neg. LLF: 172.2988806410565
Iteration: 7, Func. Count: 39, Neg. LLF: 172.25789241240318
Iteration: 8, Func. Count: 44, Neg. LLF: 172.13157999165009
Iteration: 9, Func. Count: 49, Neg. LLF: 172.05742256435119
Iteration: 10, Func. Count: 54, Neg. LLF: 172.02604575894273
Iteration: 11, Func. Count: 59, Neg. LLF: 172.01553886517746
Iteration: 12, Func. Count: 64, Neg. LLF: 172.00442328735753
Iteration: 13, Func. Count: 69, Neg. LLF: 171.9905497267604
Iteration: 14, Func. Count: 74, Neg. LLF: 171.98150693419055
Iteration: 15, Func. Count: 79, Neg. LLF: 171.97749953382015
Iteration: 16, Func. Count: 84, Neg. LLF: 171.9772420300747
Iteration: 17, Func. Count: 89, Neg. LLF: 171.9772403886776
Iteration: 18, Func. Count: 93, Neg. LLF: 171.97724038867852
Optimization terminated successfully (Exit mode 0)
Current function value: 171.9772403886776
Iterations: 18
Function evaluations: 93
Gradient evaluations: 18
Iteration: 1, Func. Count: 7, Neg. LLF: 362.8250260819162
Iteration: 2, Func. Count: 14, Neg. LLF: 197.8634360907911
Iteration: 3, Func. Count: 22, Neg. LLF: 171.45061226791117
Iteration: 4, Func. Count: 28, Neg. LLF: 171.21741327962891
Iteration: 5, Func. Count: 34, Neg. LLF: 171.55522334374817
Iteration: 6, Func. Count: 41, Neg. LLF: 170.94542309786686
Iteration: 7, Func. Count: 47, Neg. LLF: 170.5767748604188
Iteration: 8, Func. Count: 53, Neg. LLF: 170.35426098129827
Iteration: 9, Func. Count: 59, Neg. LLF: 170.19481632908108
Iteration: 10, Func. Count: 65, Neg. LLF: 170.16393965091393
Iteration: 11, Func. Count: 71, Neg. LLF: 170.1588395043798
Iteration: 12, Func. Count: 77, Neg. LLF: 170.15570591491365
Iteration: 13, Func. Count: 83, Neg. LLF: 170.15320871655345
Iteration: 14, Func. Count: 89, Neg. LLF: 170.1513937788276
Iteration: 15, Func. Count: 95, Neg. LLF: 170.15044537783658
Iteration: 16, Func. Count: 101, Neg. LLF: 170.14988085413665
Iteration: 17, Func. Count: 107, Neg. LLF: 170.14963092158598
Iteration: 18, Func. Count: 113, Neg. LLF: 170.1496016840118
Iteration: 19, Func. Count: 119, Neg. LLF: 170.14960024108254
Iteration: 20, Func. Count: 124, Neg. LLF: 170.14960024105747
Optimization terminated successfully (Exit mode 0)
Current function value: 170.14960024108254
Iterations: 20
Function evaluations: 124
Gradient evaluations: 20
Iteration: 1, Func. Count: 8, Neg. LLF: 176.12401861973575
Iteration: 2, Func. Count: 16, Neg. LLF: 178.80724640394425
Iteration: 3, Func. Count: 24, Neg. LLF: 171.61918483433672
Iteration: 4, Func. Count: 32, Neg. LLF: 170.34436693345162
Iteration: 5, Func. Count: 39, Neg. LLF: 170.8221886273904
Iteration: 6, Func. Count: 47, Neg. LLF: 170.26597146979728
Iteration: 7, Func. Count: 55, Neg. LLF: 170.22315594623305
Iteration: 8, Func. Count: 62, Neg. LLF: 170.2115492957848
Iteration: 9, Func. Count: 69, Neg. LLF: 170.20745261997433
Iteration: 10, Func. Count: 76, Neg. LLF: 170.1984817560882
Iteration: 11, Func. Count: 83, Neg. LLF: 170.18984695091683
Iteration: 12, Func. Count: 90, Neg. LLF: 170.17367217194337
Iteration: 13, Func. Count: 97, Neg. LLF: 170.15889282300202
Iteration: 14, Func. Count: 104, Neg. LLF: 170.1507823111132
Iteration: 15, Func. Count: 111, Neg. LLF: 170.14961283608844
Iteration: 16, Func. Count: 118, Neg. LLF: 170.14960024984924
Iteration: 17, Func. Count: 124, Neg. LLF: 170.14960031223904
Optimization terminated successfully (Exit mode 0)
Current function value: 170.14960024984924
Iterations: 17
Function evaluations: 124
Gradient evaluations: 17
Iteration: 1, Func. Count: 9, Neg. LLF: 194.84878191344526
Iteration: 2, Func. Count: 18, Neg. LLF: 183.12937132908786
Iteration: 3, Func. Count: 27, Neg. LLF: 192.18578424422896
Iteration: 4, Func. Count: 36, Neg. LLF: 170.55116612295512
Iteration: 5, Func. Count: 44, Neg. LLF: 170.26514243472707
Iteration: 6, Func. Count: 52, Neg. LLF: 170.2241603097971
Iteration: 7, Func. Count: 60, Neg. LLF: 170.21778981077446
Iteration: 8, Func. Count: 68, Neg. LLF: 170.21425798105975
Iteration: 9, Func. Count: 76, Neg. LLF: 170.20278402396414
Iteration: 10, Func. Count: 84, Neg. LLF: 170.18495709396407
Iteration: 11, Func. Count: 92, Neg. LLF: 170.1620198843969
Iteration: 12, Func. Count: 100, Neg. LLF: 170.15189827672242
Iteration: 13, Func. Count: 108, Neg. LLF: 170.14992125633867
Iteration: 14, Func. Count: 116, Neg. LLF: 170.14962442315917
Iteration: 15, Func. Count: 124, Neg. LLF: 170.1496021029859
Iteration: 16, Func. Count: 132, Neg. LLF: 170.14960032600297
Iteration: 17, Func. Count: 139, Neg. LLF: 170.14960038409276
Optimization terminated successfully (Exit mode 0)
Current function value: 170.14960032600297
Iterations: 17
Function evaluations: 139
Gradient evaluations: 17
Iteration: 1, Func. Count: 10, Neg. LLF: 194.80905386414923
Iteration: 2, Func. Count: 20, Neg. LLF: 179.4657180629482
Iteration: 3, Func. Count: 30, Neg. LLF: 177.5114065661208
Iteration: 4, Func. Count: 40, Neg. LLF: 170.86401785159947
Iteration: 5, Func. Count: 49, Neg. LLF: 170.39338539777108
Iteration: 6, Func. Count: 58, Neg. LLF: 170.27950436164892
Iteration: 7, Func. Count: 67, Neg. LLF: 170.24238827566415
Iteration: 8, Func. Count: 76, Neg. LLF: 170.22022188226202
Iteration: 9, Func. Count: 85, Neg. LLF: 170.21496258778262
Iteration: 10, Func. Count: 94, Neg. LLF: 170.21056704349382
Iteration: 11, Func. Count: 103, Neg. LLF: 170.2047731094109
Iteration: 12, Func. Count: 112, Neg. LLF: 170.1827407376365
Iteration: 13, Func. Count: 121, Neg. LLF: 170.160393326198
Iteration: 14, Func. Count: 130, Neg. LLF: 170.15055369315934
Iteration: 15, Func. Count: 139, Neg. LLF: 170.14967333140936
Iteration: 16, Func. Count: 148, Neg. LLF: 170.14960195270098
Iteration: 17, Func. Count: 157, Neg. LLF: 170.1496007189808
Iteration: 18, Func. Count: 165, Neg. LLF: 170.1496007603442
Optimization terminated successfully (Exit mode 0)
Current function value: 170.1496007189808
Iterations: 18
Function evaluations: 165
Gradient evaluations: 18
Iteration: 1, Func. Count: 7, Neg. LLF: 172.59950447754656
Iteration: 2, Func. Count: 14, Neg. LLF: 183.13656395716117
Iteration: 3, Func. Count: 21, Neg. LLF: 169.43665134397946
Iteration: 4, Func. Count: 27, Neg. LLF: 169.2702387071176
Iteration: 5, Func. Count: 33, Neg. LLF: 169.05950329776252
Iteration: 6, Func. Count: 39, Neg. LLF: 168.992294275447
Iteration: 7, Func. Count: 45, Neg. LLF: 168.91876734555035
Iteration: 8, Func. Count: 51, Neg. LLF: 168.8535875084277
Iteration: 9, Func. Count: 57, Neg. LLF: 168.83477341811184
Iteration: 10, Func. Count: 63, Neg. LLF: 168.81960362664816
Iteration: 11, Func. Count: 69, Neg. LLF: 168.76689438893868
Iteration: 12, Func. Count: 75, Neg. LLF: 168.71111849896744
Iteration: 13, Func. Count: 81, Neg. LLF: 168.63047635877078
Iteration: 14, Func. Count: 87, Neg. LLF: 168.6002466815258
Iteration: 15, Func. Count: 93, Neg. LLF: 168.59365374507075
Iteration: 16, Func. Count: 99, Neg. LLF: 168.59363919028914
Iteration: 17, Func. Count: 105, Neg. LLF: 168.59363814814722
Iteration: 18, Func. Count: 110, Neg. LLF: 168.5936381481445
Optimization terminated successfully (Exit mode 0)
Current function value: 168.59363814814722
Iterations: 18
Function evaluations: 110
Gradient evaluations: 18
Iteration: 1, Func. Count: 8, Neg. LLF: 194.98937984190354
Iteration: 2, Func. Count: 16, Neg. LLF: 192.51155066769587
Iteration: 3, Func. Count: 24, Neg. LLF: 173.76740841566263
Iteration: 4, Func. Count: 32, Neg. LLF: 169.2638356643117
Iteration: 5, Func. Count: 39, Neg. LLF: 169.11741036069523
Iteration: 6, Func. Count: 46, Neg. LLF: 169.06091768985985
Iteration: 7, Func. Count: 53, Neg. LLF: 169.03343670901512
Iteration: 8, Func. Count: 60, Neg. LLF: 168.96383509892655
Iteration: 9, Func. Count: 67, Neg. LLF: 168.88601521619464
Iteration: 10, Func. Count: 74, Neg. LLF: 168.77373602300855
Iteration: 11, Func. Count: 81, Neg. LLF: 168.65381038805805
Iteration: 12, Func. Count: 88, Neg. LLF: 168.5999749771639
Iteration: 13, Func. Count: 95, Neg. LLF: 168.5943852359224
Iteration: 14, Func. Count: 102, Neg. LLF: 168.59368916483544
Iteration: 15, Func. Count: 109, Neg. LLF: 168.59364070619617
Iteration: 16, Func. Count: 116, Neg. LLF: 168.593638222759
Iteration: 17, Func. Count: 122, Neg. LLF: 168.5936382602518
Optimization terminated successfully (Exit mode 0)
Current function value: 168.593638222759
Iterations: 17
Function evaluations: 122
Gradient evaluations: 17
Iteration: 1, Func. Count: 9, Neg. LLF: 194.936180461412
Iteration: 2, Func. Count: 18, Neg. LLF: 174.01871280121435
Iteration: 3, Func. Count: 27, Neg. LLF: 172.56939686818583
Iteration: 4, Func. Count: 36, Neg. LLF: 169.15354345815095
Iteration: 5, Func. Count: 44, Neg. LLF: 169.16340015105249
Iteration: 6, Func. Count: 53, Neg. LLF: 170.16340915822605
Iteration: 7, Func. Count: 62, Neg. LLF: 169.0478790115438
Iteration: 8, Func. Count: 70, Neg. LLF: 168.9540132516668
Iteration: 9, Func. Count: 78, Neg. LLF: 168.87213504424577
Iteration: 10, Func. Count: 86, Neg. LLF: 168.66829071985427
Iteration: 11, Func. Count: 94, Neg. LLF: 168.60484774110623
Iteration: 12, Func. Count: 102, Neg. LLF: 168.59400101744131
Iteration: 13, Func. Count: 110, Neg. LLF: 168.59365106290014
Iteration: 14, Func. Count: 118, Neg. LLF: 168.59364014362413
Iteration: 15, Func. Count: 126, Neg. LLF: 168.59363830050867
Iteration: 16, Func. Count: 133, Neg. LLF: 168.59363837706164
Optimization terminated successfully (Exit mode 0)
Current function value: 168.59363830050867
Iterations: 16
Function evaluations: 133
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 174.09187773379438
Iteration: 2, Func. Count: 20, Neg. LLF: 174.34804260125205
Iteration: 3, Func. Count: 30, Neg. LLF: 170.134640838854
Iteration: 4, Func. Count: 40, Neg. LLF: 179.20216065499733
Iteration: 5, Func. Count: 50, Neg. LLF: 168.70495881298172
Iteration: 6, Func. Count: 59, Neg. LLF: 168.69103483996344
Iteration: 7, Func. Count: 68, Neg. LLF: 168.68412959364937
Iteration: 8, Func. Count: 77, Neg. LLF: 168.66211481943083
Iteration: 9, Func. Count: 86, Neg. LLF: 168.65192085361303
Iteration: 10, Func. Count: 95, Neg. LLF: 168.62428222015808
Iteration: 11, Func. Count: 104, Neg. LLF: 168.5706314762246
Iteration: 12, Func. Count: 113, Neg. LLF: 168.51662422939404
Iteration: 13, Func. Count: 122, Neg. LLF: 168.50305130960746
Iteration: 14, Func. Count: 131, Neg. LLF: 168.50058857981435
Iteration: 15, Func. Count: 140, Neg. LLF: 168.50029808244227
Iteration: 16, Func. Count: 149, Neg. LLF: 168.50027112111255
Iteration: 17, Func. Count: 158, Neg. LLF: 168.50027017316026
Optimization terminated successfully (Exit mode 0)
Current function value: 168.50027017316026
Iterations: 17
Function evaluations: 158
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 171.01193009916392
Iteration: 2, Func. Count: 21, Neg. LLF: 170.23366188259612
Iteration: 3, Func. Count: 31, Neg. LLF: 173.9649650896149
Iteration: 4, Func. Count: 42, Neg. LLF: 182.73983337062324
Iteration: 5, Func. Count: 53, Neg. LLF: 183.83356549200633
Iteration: 6, Func. Count: 64, Neg. LLF: 183.7296434875038
Iteration: 7, Func. Count: 75, Neg. LLF: 183.41577428980804
Iteration: 8, Func. Count: 86, Neg. LLF: 169.3295728137555
Iteration: 9, Func. Count: 97, Neg. LLF: 168.67831531881455
Iteration: 10, Func. Count: 107, Neg. LLF: 168.6510667622947
Iteration: 11, Func. Count: 117, Neg. LLF: 168.60308423739357
Iteration: 12, Func. Count: 127, Neg. LLF: 168.58158140833186
Iteration: 13, Func. Count: 137, Neg. LLF: 168.5738648950745
Iteration: 14, Func. Count: 147, Neg. LLF: 168.56983459400132
Iteration: 15, Func. Count: 157, Neg. LLF: 168.54791129837704
Iteration: 16, Func. Count: 167, Neg. LLF: 168.52205291243334
Iteration: 17, Func. Count: 177, Neg. LLF: 168.5052468171622
Iteration: 18, Func. Count: 187, Neg. LLF: 168.50125873805789
Iteration: 19, Func. Count: 197, Neg. LLF: 168.50028029938173
Iteration: 20, Func. Count: 207, Neg. LLF: 168.5002705089317
Iteration: 21, Func. Count: 216, Neg. LLF: 168.50027057775523
Optimization terminated successfully (Exit mode 0)
Current function value: 168.5002705089317
Iterations: 21
Function evaluations: 216
Gradient evaluations: 21
Iteration: 1, Func. Count: 8, Neg. LLF: 172.78207251551572
Iteration: 2, Func. Count: 16, Neg. LLF: 183.178273003933
Iteration: 3, Func. Count: 24, Neg. LLF: 169.45207614872086
Iteration: 4, Func. Count: 31, Neg. LLF: 169.2855775363322
Iteration: 5, Func. Count: 38, Neg. LLF: 169.1206367682037
Iteration: 6, Func. Count: 45, Neg. LLF: 169.0472661144571
Iteration: 7, Func. Count: 52, Neg. LLF: 168.9771626250363
Iteration: 8, Func. Count: 59, Neg. LLF: 168.89409837226296
Iteration: 9, Func. Count: 66, Neg. LLF: 168.82730547787136
Iteration: 10, Func. Count: 73, Neg. LLF: 168.80015896471548
Iteration: 11, Func. Count: 80, Neg. LLF: 168.78504796990003
Iteration: 12, Func. Count: 87, Neg. LLF: 168.76049737226433
Iteration: 13, Func. Count: 94, Neg. LLF: 168.72151088570013
Iteration: 14, Func. Count: 101, Neg. LLF: 168.65807614008602
Iteration: 15, Func. Count: 108, Neg. LLF: 168.61276051021116
Iteration: 16, Func. Count: 115, Neg. LLF: 168.5947354835731
Iteration: 17, Func. Count: 122, Neg. LLF: 168.59363970346448
Iteration: 18, Func. Count: 129, Neg. LLF: 168.59363817946317
Iteration: 19, Func. Count: 135, Neg. LLF: 168.5936382454479
Optimization terminated successfully (Exit mode 0)
Current function value: 168.59363817946317
Iterations: 19
Function evaluations: 135
Gradient evaluations: 19
Iteration: 1, Func. Count: 9, Neg. LLF: 194.91661829778135
Iteration: 2, Func. Count: 18, Neg. LLF: 192.49680232730776
Iteration: 3, Func. Count: 27, Neg. LLF: 174.0163197260417
Iteration: 4, Func. Count: 36, Neg. LLF: 169.50123950800338
Iteration: 5, Func. Count: 44, Neg. LLF: 169.12701597118777
Iteration: 6, Func. Count: 52, Neg. LLF: 169.07695513810992
Iteration: 7, Func. Count: 60, Neg. LLF: 169.02908650292716
Iteration: 8, Func. Count: 68, Neg. LLF: 168.99482771140228
Iteration: 9, Func. Count: 76, Neg. LLF: 168.90758762879227
Iteration: 10, Func. Count: 84, Neg. LLF: 168.82240432103907
Iteration: 11, Func. Count: 92, Neg. LLF: 168.68003005557242
Iteration: 12, Func. Count: 100, Neg. LLF: 168.60876025028628
Iteration: 13, Func. Count: 108, Neg. LLF: 168.5959442288377
Iteration: 14, Func. Count: 116, Neg. LLF: 168.59393103112845
Iteration: 15, Func. Count: 124, Neg. LLF: 168.59365660356016
Iteration: 16, Func. Count: 132, Neg. LLF: 168.59363874318507
Iteration: 17, Func. Count: 140, Neg. LLF: 168.59363815688735
Optimization terminated successfully (Exit mode 0)
Current function value: 168.59363815688735
Iterations: 17
Function evaluations: 140
Gradient evaluations: 17
Iteration: 1, Func. Count: 10, Neg. LLF: 194.85420044514692
Iteration: 2, Func. Count: 20, Neg. LLF: 174.08346058757652
Iteration: 3, Func. Count: 30, Neg. LLF: 169.71973040238004
Iteration: 4, Func. Count: 39, Neg. LLF: 169.5126366177259
Iteration: 5, Func. Count: 48, Neg. LLF: 180.64384385840347
Iteration: 6, Func. Count: 58, Neg. LLF: 169.04891026405244
Iteration: 7, Func. Count: 67, Neg. LLF: 169.03056599978635
Iteration: 8, Func. Count: 76, Neg. LLF: 168.99253795097104
Iteration: 9, Func. Count: 85, Neg. LLF: 168.86261884196512
Iteration: 10, Func. Count: 94, Neg. LLF: 168.66470768886734
Iteration: 11, Func. Count: 103, Neg. LLF: 168.60433117070016
Iteration: 12, Func. Count: 112, Neg. LLF: 168.59384312953077
Iteration: 13, Func. Count: 121, Neg. LLF: 168.59366967411512
Iteration: 14, Func. Count: 130, Neg. LLF: 168.59364245625724
Iteration: 15, Func. Count: 139, Neg. LLF: 168.59363846366986
Iteration: 16, Func. Count: 147, Neg. LLF: 168.5936385402397
Optimization terminated successfully (Exit mode 0)
Current function value: 168.59363846366986
Iterations: 16
Function evaluations: 147
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 171.92685386022137
Iteration: 2, Func. Count: 21, Neg. LLF: 174.2320811090892
Iteration: 3, Func. Count: 32, Neg. LLF: 171.65747199456635
Iteration: 4, Func. Count: 43, Neg. LLF: 177.656822653991
Iteration: 5, Func. Count: 54, Neg. LLF: 171.2943039354964
Iteration: 6, Func. Count: 65, Neg. LLF: 170.32846656837356
Iteration: 7, Func. Count: 76, Neg. LLF: 171.4955594834739
Iteration: 8, Func. Count: 87, Neg. LLF: 169.00488967267097
Iteration: 9, Func. Count: 98, Neg. LLF: 168.63226363831308
Iteration: 10, Func. Count: 108, Neg. LLF: 168.62073506454834
Iteration: 11, Func. Count: 118, Neg. LLF: 168.61219488182297
Iteration: 12, Func. Count: 128, Neg. LLF: 168.59735084134914
Iteration: 13, Func. Count: 138, Neg. LLF: 168.5666663142586
Iteration: 14, Func. Count: 148, Neg. LLF: 168.52118449618274
Iteration: 15, Func. Count: 158, Neg. LLF: 168.50365936361186
Iteration: 16, Func. Count: 168, Neg. LLF: 168.50086515025367
Iteration: 17, Func. Count: 178, Neg. LLF: 168.50028954842637
Iteration: 18, Func. Count: 188, Neg. LLF: 168.50027100745407
Iteration: 19, Func. Count: 198, Neg. LLF: 168.50027016971234
Optimization terminated successfully (Exit mode 0)
Current function value: 168.50027016971234
Iterations: 19
Function evaluations: 198
Gradient evaluations: 19
Iteration: 1, Func. Count: 12, Neg. LLF: 171.98319821586398
Iteration: 2, Func. Count: 24, Neg. LLF: 183.17270329051425
Iteration: 3, Func. Count: 36, Neg. LLF: 169.46119451163477
Iteration: 4, Func. Count: 47, Neg. LLF: 169.1957920112702
Iteration: 5, Func. Count: 58, Neg. LLF: 174.53472416072634
Iteration: 6, Func. Count: 71, Neg. LLF: 168.98874112784245
Iteration: 7, Func. Count: 82, Neg. LLF: 168.93824745146347
Iteration: 8, Func. Count: 93, Neg. LLF: 168.87104783703683
Iteration: 9, Func. Count: 104, Neg. LLF: 168.85850729013757
Iteration: 10, Func. Count: 115, Neg. LLF: 168.83045910003267
Iteration: 11, Func. Count: 126, Neg. LLF: 168.79340287103372
Iteration: 12, Func. Count: 137, Neg. LLF: 168.6631491178509
Iteration: 13, Func. Count: 148, Neg. LLF: 168.5642171973115
Iteration: 14, Func. Count: 159, Neg. LLF: 168.50952934413615
Iteration: 15, Func. Count: 170, Neg. LLF: 168.5020094417408
Iteration: 16, Func. Count: 181, Neg. LLF: 168.50029155448217
Iteration: 17, Func. Count: 192, Neg. LLF: 168.50027314801764
Iteration: 18, Func. Count: 203, Neg. LLF: 168.5002711139362
Iteration: 19, Func. Count: 214, Neg. LLF: 168.50027016869248
Optimization terminated successfully (Exit mode 0)
Current function value: 168.50027016869248
Iterations: 19
Function evaluations: 214
Gradient evaluations: 19
Iteration: 1, Func. Count: 5, Neg. LLF: 182.7396634964343
Iteration: 2, Func. Count: 10, Neg. LLF: 181.67891871594313
Iteration: 3, Func. Count: 14, Neg. LLF: 181.48581634569285
Iteration: 4, Func. Count: 18, Neg. LLF: 181.28651155905834
Iteration: 5, Func. Count: 22, Neg. LLF: 180.86517671058593
Iteration: 6, Func. Count: 26, Neg. LLF: 179.94428391983067
Iteration: 7, Func. Count: 30, Neg. LLF: 179.37751853150044
Iteration: 8, Func. Count: 34, Neg. LLF: 179.10564300288996
Iteration: 9, Func. Count: 38, Neg. LLF: 179.12089539198666
Iteration: 10, Func. Count: 43, Neg. LLF: 178.95309493594448
Iteration: 11, Func. Count: 47, Neg. LLF: 178.9435389004226
Iteration: 12, Func. Count: 51, Neg. LLF: 178.94332575315272
Iteration: 13, Func. Count: 55, Neg. LLF: 178.9433185784004
Iteration: 14, Func. Count: 59, Neg. LLF: 178.9433177312061
Optimization terminated successfully (Exit mode 0)
Current function value: 178.9433177312061
Iterations: 14
Function evaluations: 59
Gradient evaluations: 14
Iteration: 1, Func. Count: 6, Neg. LLF: 226.8415847455153
Iteration: 2, Func. Count: 12, Neg. LLF: 171.68710099854675
Iteration: 3, Func. Count: 17, Neg. LLF: 250.83169204303917
Iteration: 4, Func. Count: 23, Neg. LLF: 171.45991600645007
Iteration: 5, Func. Count: 28, Neg. LLF: 171.43998609367316
Iteration: 6, Func. Count: 33, Neg. LLF: 171.43091507612357
Iteration: 7, Func. Count: 38, Neg. LLF: 171.39002159311923
Iteration: 8, Func. Count: 43, Neg. LLF: 171.37236680477804
Iteration: 9, Func. Count: 48, Neg. LLF: 171.36662666333407
Iteration: 10, Func. Count: 53, Neg. LLF: 171.36621266107045
Iteration: 11, Func. Count: 58, Neg. LLF: 171.36621200086725
Optimization terminated successfully (Exit mode 0)
Current function value: 171.36621200086725
Iterations: 11
Function evaluations: 58
Gradient evaluations: 11
Iteration: 1, Func. Count: 7, Neg. LLF: 224.7127581781209
Iteration: 2, Func. Count: 14, Neg. LLF: 171.5791178998135
Iteration: 3, Func. Count: 20, Neg. LLF: 171.83016637397276
Iteration: 4, Func. Count: 27, Neg. LLF: 171.47215545335715
Iteration: 5, Func. Count: 33, Neg. LLF: 171.4584571833961
Iteration: 6, Func. Count: 39, Neg. LLF: 171.44027542884442
Iteration: 7, Func. Count: 45, Neg. LLF: 171.40497415029358
Iteration: 8, Func. Count: 51, Neg. LLF: 171.3795155243546
Iteration: 9, Func. Count: 57, Neg. LLF: 171.36707535111444
Iteration: 10, Func. Count: 63, Neg. LLF: 171.36623563564797
Iteration: 11, Func. Count: 69, Neg. LLF: 171.36621309322126
Iteration: 12, Func. Count: 75, Neg. LLF: 171.36621200578153
Iteration: 13, Func. Count: 80, Neg. LLF: 171.36621210533764
Optimization terminated successfully (Exit mode 0)
Current function value: 171.36621200578153
Iterations: 13
Function evaluations: 80
Gradient evaluations: 13
Iteration: 1, Func. Count: 8, Neg. LLF: 174.64452167423366
Iteration: 2, Func. Count: 15, Neg. LLF: 174.55932752714313
Iteration: 3, Func. Count: 23, Neg. LLF: 187.38354976600823
Iteration: 4, Func. Count: 31, Neg. LLF: 175.73101013113953
Iteration: 5, Func. Count: 39, Neg. LLF: 173.56591071353108
Iteration: 6, Func. Count: 47, Neg. LLF: 173.43728105554192
Iteration: 7, Func. Count: 54, Neg. LLF: 173.14937833746555
Iteration: 8, Func. Count: 61, Neg. LLF: 171.8349759138365
Iteration: 9, Func. Count: 68, Neg. LLF: 174.1584374541297
Iteration: 10, Func. Count: 76, Neg. LLF: 171.37885830580015
Iteration: 11, Func. Count: 83, Neg. LLF: 171.37625866277384
Iteration: 12, Func. Count: 91, Neg. LLF: 171.36730290015288
Iteration: 13, Func. Count: 99, Neg. LLF: 171.36621240591003
Iteration: 14, Func. Count: 105, Neg. LLF: 171.36621254253564
Optimization terminated successfully (Exit mode 0)
Current function value: 171.36621240591003
Iterations: 14
Function evaluations: 105
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 207.0820164776527
Iteration: 2, Func. Count: 18, Neg. LLF: 173.9645019771625
Iteration: 3, Func. Count: 26, Neg. LLF: 173.69247650717585
Iteration: 4, Func. Count: 34, Neg. LLF: 174.27751511523803
Iteration: 5, Func. Count: 43, Neg. LLF: 173.44286096465908
Iteration: 6, Func. Count: 51, Neg. LLF: 173.3852310196312
Iteration: 7, Func. Count: 59, Neg. LLF: 173.22789010832562
Iteration: 8, Func. Count: 67, Neg. LLF: 172.48397060937634
Iteration: 9, Func. Count: 75, Neg. LLF: 172.00215191999993
Iteration: 10, Func. Count: 83, Neg. LLF: 174.38285689215348
Iteration: 11, Func. Count: 92, Neg. LLF: 173.37939081645507
Iteration: 12, Func. Count: 101, Neg. LLF: 171.43461494378116
Iteration: 13, Func. Count: 109, Neg. LLF: 171.37374001488803
Iteration: 14, Func. Count: 117, Neg. LLF: 171.36673193203146
Iteration: 15, Func. Count: 125, Neg. LLF: 171.36621970239096
Iteration: 16, Func. Count: 133, Neg. LLF: 171.3662121364432
Iteration: 17, Func. Count: 140, Neg. LLF: 171.36621226398006
Optimization terminated successfully (Exit mode 0)
Current function value: 171.3662121364432
Iterations: 17
Function evaluations: 140
Gradient evaluations: 17
Iteration: 1, Func. Count: 6, Neg. LLF: 180.65966452839677
Iteration: 2, Func. Count: 12, Neg. LLF: 179.17806774317117
Iteration: 3, Func. Count: 17, Neg. LLF: 179.11104257625337
Iteration: 4, Func. Count: 22, Neg. LLF: 178.81885429398542
Iteration: 5, Func. Count: 27, Neg. LLF: 178.04752302787267
Iteration: 6, Func. Count: 32, Neg. LLF: 177.79070734559795
Iteration: 7, Func. Count: 37, Neg. LLF: 177.6788425305213
Iteration: 8, Func. Count: 42, Neg. LLF: 177.65900607522693
Iteration: 9, Func. Count: 47, Neg. LLF: 177.65776518709492
Iteration: 10, Func. Count: 52, Neg. LLF: 177.6576346946397
Iteration: 11, Func. Count: 57, Neg. LLF: 177.65760421867893
Iteration: 12, Func. Count: 62, Neg. LLF: 177.65760278750733
Iteration: 13, Func. Count: 66, Neg. LLF: 177.65760278751125
Optimization terminated successfully (Exit mode 0)
Current function value: 177.65760278750733
Iterations: 13
Function evaluations: 66
Gradient evaluations: 13
Iteration: 1, Func. Count: 7, Neg. LLF: 252.60634777990887
Iteration: 2, Func. Count: 14, Neg. LLF: 173.72489553869576
Iteration: 3, Func. Count: 21, Neg. LLF: 170.88196878525696
Iteration: 4, Func. Count: 28, Neg. LLF: 174.05673054749548
Iteration: 5, Func. Count: 36, Neg. LLF: 170.78019181048597
Iteration: 6, Func. Count: 42, Neg. LLF: 170.7797899053672
Iteration: 7, Func. Count: 48, Neg. LLF: 170.7796148051903
Iteration: 8, Func. Count: 54, Neg. LLF: 170.7792953549345
Iteration: 9, Func. Count: 60, Neg. LLF: 170.77864768832058
Iteration: 10, Func. Count: 66, Neg. LLF: 170.77784563097782
Iteration: 11, Func. Count: 72, Neg. LLF: 170.77732299362106
Iteration: 12, Func. Count: 78, Neg. LLF: 170.77720921676192
Iteration: 13, Func. Count: 84, Neg. LLF: 170.7772002855124
Iteration: 14, Func. Count: 89, Neg. LLF: 170.77720028553716
Optimization terminated successfully (Exit mode 0)
Current function value: 170.7772002855124
Iterations: 14
Function evaluations: 89
Gradient evaluations: 14
Iteration: 1, Func. Count: 8, Neg. LLF: 250.58432146761768
Iteration: 2, Func. Count: 16, Neg. LLF: 172.5355099819274
Iteration: 3, Func. Count: 24, Neg. LLF: 170.8556634162456
Iteration: 4, Func. Count: 31, Neg. LLF: 170.90893045736576
Iteration: 5, Func. Count: 39, Neg. LLF: 173.77450922206864
Iteration: 6, Func. Count: 47, Neg. LLF: 170.77883237698182
Iteration: 7, Func. Count: 54, Neg. LLF: 170.77842108112043
Iteration: 8, Func. Count: 61, Neg. LLF: 170.77833425471243
Iteration: 9, Func. Count: 68, Neg. LLF: 170.77823323363418
Iteration: 10, Func. Count: 75, Neg. LLF: 170.77800560258783
Iteration: 11, Func. Count: 82, Neg. LLF: 170.77766424811568
Iteration: 12, Func. Count: 89, Neg. LLF: 170.77734380058936
Iteration: 13, Func. Count: 96, Neg. LLF: 170.777216562613
Iteration: 14, Func. Count: 103, Neg. LLF: 170.77720069265752
Iteration: 15, Func. Count: 110, Neg. LLF: 170.77719992535145
Optimization terminated successfully (Exit mode 0)
Current function value: 170.77719992535145
Iterations: 15
Function evaluations: 110
Gradient evaluations: 15
Iteration: 1, Func. Count: 9, Neg. LLF: 179.45973297559703
Iteration: 2, Func. Count: 18, Neg. LLF: 176.93766397541995
Iteration: 3, Func. Count: 27, Neg. LLF: 201.8011624508692
Iteration: 4, Func. Count: 36, Neg. LLF: 173.43006948128252
Iteration: 5, Func. Count: 45, Neg. LLF: 170.84058309835538
Iteration: 6, Func. Count: 53, Neg. LLF: 170.79088093860454
Iteration: 7, Func. Count: 61, Neg. LLF: 170.7825046506817
Iteration: 8, Func. Count: 69, Neg. LLF: 170.77863477259308
Iteration: 9, Func. Count: 77, Neg. LLF: 170.77853095357221
Iteration: 10, Func. Count: 85, Neg. LLF: 170.77844804849684
Iteration: 11, Func. Count: 93, Neg. LLF: 170.77806833130646
Iteration: 12, Func. Count: 101, Neg. LLF: 170.77763416117304
Iteration: 13, Func. Count: 109, Neg. LLF: 170.77728060819322
Iteration: 14, Func. Count: 117, Neg. LLF: 170.77720550051987
Iteration: 15, Func. Count: 125, Neg. LLF: 170.77720012366407
Iteration: 16, Func. Count: 132, Neg. LLF: 170.77720024553207
Optimization terminated successfully (Exit mode 0)
Current function value: 170.77720012366407
Iterations: 16
Function evaluations: 132
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 188.3635537624199
Iteration: 2, Func. Count: 20, Neg. LLF: 173.47037276465517
Iteration: 3, Func. Count: 29, Neg. LLF: 171.45834297623574
Iteration: 4, Func. Count: 38, Neg. LLF: 171.31933975898053
Iteration: 5, Func. Count: 47, Neg. LLF: 171.28418648205658
Iteration: 6, Func. Count: 56, Neg. LLF: 171.27044109855248
Iteration: 7, Func. Count: 65, Neg. LLF: 171.2365377619767
Iteration: 8, Func. Count: 74, Neg. LLF: 171.16089368765964
Iteration: 9, Func. Count: 83, Neg. LLF: 171.04552975898244
Iteration: 10, Func. Count: 92, Neg. LLF: 171.79904618875665
Iteration: 11, Func. Count: 102, Neg. LLF: 174.49705827343047
Iteration: 12, Func. Count: 112, Neg. LLF: 173.70431854120875
Iteration: 13, Func. Count: 122, Neg. LLF: 171.1878807279743
Iteration: 14, Func. Count: 132, Neg. LLF: 170.82109711744465
Iteration: 15, Func. Count: 141, Neg. LLF: 170.80536214666034
Iteration: 16, Func. Count: 150, Neg. LLF: 170.78387542310185
Iteration: 17, Func. Count: 159, Neg. LLF: 170.77732481270985
Iteration: 18, Func. Count: 168, Neg. LLF: 170.77720834759288
Iteration: 19, Func. Count: 177, Neg. LLF: 170.77720127665708
Iteration: 20, Func. Count: 186, Neg. LLF: 170.7771999194716
Iteration: 21, Func. Count: 194, Neg. LLF: 170.7772000168889
Optimization terminated successfully (Exit mode 0)
Current function value: 170.7771999194716
Iterations: 21
Function evaluations: 194
Gradient evaluations: 21
Iteration: 1, Func. Count: 7, Neg. LLF: 184.49125924744473
Iteration: 2, Func. Count: 15, Neg. LLF: 174.27022903218105
Iteration: 3, Func. Count: 22, Neg. LLF: 172.46633787692232
Iteration: 4, Func. Count: 28, Neg. LLF: 172.34061320727557
Iteration: 5, Func. Count: 34, Neg. LLF: 172.32386871754815
Iteration: 6, Func. Count: 40, Neg. LLF: 172.28042166593735
Iteration: 7, Func. Count: 46, Neg. LLF: 172.26466017360175
Iteration: 8, Func. Count: 52, Neg. LLF: 172.16278016740782
Iteration: 9, Func. Count: 58, Neg. LLF: 172.02310108021166
Iteration: 10, Func. Count: 64, Neg. LLF: 171.9828989878134
Iteration: 11, Func. Count: 70, Neg. LLF: 171.9777972934435
Iteration: 12, Func. Count: 76, Neg. LLF: 171.97724781371207
Iteration: 13, Func. Count: 82, Neg. LLF: 171.97724290507475
Iteration: 14, Func. Count: 88, Neg. LLF: 171.97724155435944
Iteration: 15, Func. Count: 94, Neg. LLF: 171.97724062697182
Optimization terminated successfully (Exit mode 0)
Current function value: 171.97724062697182
Iterations: 15
Function evaluations: 94
Gradient evaluations: 15
Iteration: 1, Func. Count: 8, Neg. LLF: 279.7371175524099
Iteration: 2, Func. Count: 16, Neg. LLF: 263.2225639392542
Iteration: 3, Func. Count: 24, Neg. LLF: 169.91370306450557
Iteration: 4, Func. Count: 32, Neg. LLF: 169.76080623064166
Iteration: 5, Func. Count: 40, Neg. LLF: 171.5283781839935
Iteration: 6, Func. Count: 49, Neg. LLF: 169.60961768303062
Iteration: 7, Func. Count: 56, Neg. LLF: 169.60764987191394
Iteration: 8, Func. Count: 63, Neg. LLF: 169.60592900756964
Iteration: 9, Func. Count: 70, Neg. LLF: 169.60391117462945
Iteration: 10, Func. Count: 77, Neg. LLF: 169.60220552575987
Iteration: 11, Func. Count: 84, Neg. LLF: 169.5962530143259
Iteration: 12, Func. Count: 91, Neg. LLF: 169.59247434368189
Iteration: 13, Func. Count: 98, Neg. LLF: 169.59009541696403
Iteration: 14, Func. Count: 105, Neg. LLF: 169.5898856787094
Iteration: 15, Func. Count: 112, Neg. LLF: 169.58987560233453
Iteration: 16, Func. Count: 118, Neg. LLF: 169.5898755976779
Optimization terminated successfully (Exit mode 0)
Current function value: 169.58987560233453
Iterations: 16
Function evaluations: 118
Gradient evaluations: 16
Iteration: 1, Func. Count: 9, Neg. LLF: 277.48996915130687
Iteration: 2, Func. Count: 18, Neg. LLF: 225.12711824735462
Iteration: 3, Func. Count: 28, Neg. LLF: 171.79744416018613
Iteration: 4, Func. Count: 37, Neg. LLF: 169.75518969112866
Iteration: 5, Func. Count: 45, Neg. LLF: 169.73070755315868
Iteration: 6, Func. Count: 54, Neg. LLF: 169.7447220491693
Iteration: 7, Func. Count: 63, Neg. LLF: 169.6199956935998
Iteration: 8, Func. Count: 71, Neg. LLF: 169.60989000358478
Iteration: 9, Func. Count: 79, Neg. LLF: 169.6085136172982
Iteration: 10, Func. Count: 87, Neg. LLF: 169.60710275402528
Iteration: 11, Func. Count: 95, Neg. LLF: 169.60350807869733
Iteration: 12, Func. Count: 103, Neg. LLF: 169.5983683912547
Iteration: 13, Func. Count: 111, Neg. LLF: 169.59153956731618
Iteration: 14, Func. Count: 119, Neg. LLF: 169.59013379969636
Iteration: 15, Func. Count: 127, Neg. LLF: 169.58989887415086
Iteration: 16, Func. Count: 135, Neg. LLF: 169.5898756378571
Iteration: 17, Func. Count: 142, Neg. LLF: 169.58987572524745
Optimization terminated successfully (Exit mode 0)
Current function value: 169.5898756378571
Iterations: 17
Function evaluations: 142
Gradient evaluations: 17
Iteration: 1, Func. Count: 10, Neg. LLF: 276.60567557659
Iteration: 2, Func. Count: 20, Neg. LLF: 202.76907800523344
Iteration: 3, Func. Count: 30, Neg. LLF: 175.73485312946448
Iteration: 4, Func. Count: 40, Neg. LLF: 170.5151609561797
Iteration: 5, Func. Count: 49, Neg. LLF: 170.3694535274333
Iteration: 6, Func. Count: 59, Neg. LLF: 169.6572484178926
Iteration: 7, Func. Count: 68, Neg. LLF: 169.62736704361396
Iteration: 8, Func. Count: 77, Neg. LLF: 169.61732648520353
Iteration: 9, Func. Count: 86, Neg. LLF: 169.61241686869235
Iteration: 10, Func. Count: 95, Neg. LLF: 169.610233885441
Iteration: 11, Func. Count: 104, Neg. LLF: 169.609049914259
Iteration: 12, Func. Count: 113, Neg. LLF: 169.6055387574741
Iteration: 13, Func. Count: 122, Neg. LLF: 169.5986068414962
Iteration: 14, Func. Count: 131, Neg. LLF: 169.5935319392965
Iteration: 15, Func. Count: 140, Neg. LLF: 169.59025924583426
Iteration: 16, Func. Count: 149, Neg. LLF: 169.58991869150418
Iteration: 17, Func. Count: 158, Neg. LLF: 169.58987561065064
Iteration: 18, Func. Count: 166, Neg. LLF: 169.5898756597766
Optimization terminated successfully (Exit mode 0)
Current function value: 169.58987561065064
Iterations: 18
Function evaluations: 166
Gradient evaluations: 18
Iteration: 1, Func. Count: 11, Neg. LLF: 194.77048742151976
Iteration: 2, Func. Count: 22, Neg. LLF: 172.01424627592385
Iteration: 3, Func. Count: 33, Neg. LLF: 173.6251794949096
Iteration: 4, Func. Count: 44, Neg. LLF: 170.72420262833438
Iteration: 5, Func. Count: 54, Neg. LLF: 170.5070273479162
Iteration: 6, Func. Count: 65, Neg. LLF: 170.25133745006778
Iteration: 7, Func. Count: 75, Neg. LLF: 170.2254900432348
Iteration: 8, Func. Count: 85, Neg. LLF: 170.21599089030846
Iteration: 9, Func. Count: 95, Neg. LLF: 170.21192422799336
Iteration: 10, Func. Count: 105, Neg. LLF: 170.20722426060667
Iteration: 11, Func. Count: 115, Neg. LLF: 170.19269354526637
Iteration: 12, Func. Count: 125, Neg. LLF: 170.27718519764062
Iteration: 13, Func. Count: 136, Neg. LLF: 170.094063544929
Iteration: 14, Func. Count: 146, Neg. LLF: 169.9462296219048
Iteration: 15, Func. Count: 156, Neg. LLF: 169.76777445621497
Iteration: 16, Func. Count: 166, Neg. LLF: 169.758281928986
Iteration: 17, Func. Count: 177, Neg. LLF: 169.60713850921857
Iteration: 18, Func. Count: 187, Neg. LLF: 169.5912030207037
Iteration: 19, Func. Count: 197, Neg. LLF: 169.59008987125694
Iteration: 20, Func. Count: 207, Neg. LLF: 169.58991122765923
Iteration: 21, Func. Count: 217, Neg. LLF: 169.58988029876085
Iteration: 22, Func. Count: 227, Neg. LLF: 169.58987567263503
Iteration: 23, Func. Count: 236, Neg. LLF: 169.58987566867768
Optimization terminated successfully (Exit mode 0)
Current function value: 169.58987567263503
Iterations: 23
Function evaluations: 236
Gradient evaluations: 23
Iteration: 1, Func. Count: 8, Neg. LLF: 172.73178939751915
Iteration: 2, Func. Count: 16, Neg. LLF: 183.26898899945817
Iteration: 3, Func. Count: 24, Neg. LLF: 169.4293259941765
Iteration: 4, Func. Count: 31, Neg. LLF: 169.26902564899078
Iteration: 5, Func. Count: 38, Neg. LLF: 169.057553064419
Iteration: 6, Func. Count: 45, Neg. LLF: 168.98879388820765
Iteration: 7, Func. Count: 52, Neg. LLF: 168.91237197651978
Iteration: 8, Func. Count: 59, Neg. LLF: 168.84711403735804
Iteration: 9, Func. Count: 66, Neg. LLF: 168.8270872562851
Iteration: 10, Func. Count: 73, Neg. LLF: 168.8157841883709
Iteration: 11, Func. Count: 80, Neg. LLF: 168.7603275633624
Iteration: 12, Func. Count: 87, Neg. LLF: 168.6231042779349
Iteration: 13, Func. Count: 94, Neg. LLF: 168.60191983376725
Iteration: 14, Func. Count: 101, Neg. LLF: 168.59372060518598
Iteration: 15, Func. Count: 108, Neg. LLF: 168.59364129213677
Iteration: 16, Func. Count: 115, Neg. LLF: 168.59363815217532
Iteration: 17, Func. Count: 121, Neg. LLF: 168.59363815217202
Optimization terminated successfully (Exit mode 0)
Current function value: 168.59363815217532
Iterations: 17
Function evaluations: 121
Gradient evaluations: 17
Iteration: 1, Func. Count: 9, Neg. LLF: 279.376740913015
Iteration: 2, Func. Count: 18, Neg. LLF: 263.15801853057707
Iteration: 3, Func. Count: 27, Neg. LLF: 169.5100167335936
Iteration: 4, Func. Count: 35, Neg. LLF: 169.94875036508034
Iteration: 5, Func. Count: 44, Neg. LLF: 172.62840047342866
Iteration: 6, Func. Count: 53, Neg. LLF: 169.2758696452954
Iteration: 7, Func. Count: 61, Neg. LLF: 169.27179013060402
Iteration: 8, Func. Count: 69, Neg. LLF: 169.2694128384746
Iteration: 9, Func. Count: 77, Neg. LLF: 169.26559341376995
Iteration: 10, Func. Count: 85, Neg. LLF: 169.27124181472487
Iteration: 11, Func. Count: 94, Neg. LLF: 169.2550707841269
Iteration: 12, Func. Count: 102, Neg. LLF: 169.24470582276248
Iteration: 13, Func. Count: 110, Neg. LLF: 169.21563332227828
Iteration: 14, Func. Count: 118, Neg. LLF: 169.18242883943194
Iteration: 15, Func. Count: 126, Neg. LLF: 169.05149832520962
Iteration: 16, Func. Count: 134, Neg. LLF: 168.6441165958871
Iteration: 17, Func. Count: 142, Neg. LLF: 168.60626397068577
Iteration: 18, Func. Count: 150, Neg. LLF: 168.59818480607885
Iteration: 19, Func. Count: 158, Neg. LLF: 168.59512632919612
Iteration: 20, Func. Count: 166, Neg. LLF: 168.59397045080397
Iteration: 21, Func. Count: 174, Neg. LLF: 168.5937099976623
Iteration: 22, Func. Count: 182, Neg. LLF: 168.5936809913397
Iteration: 23, Func. Count: 190, Neg. LLF: 168.59365378262973
Iteration: 24, Func. Count: 198, Neg. LLF: 168.59364099432378
Iteration: 25, Func. Count: 206, Neg. LLF: 168.5936382945183
Iteration: 26, Func. Count: 213, Neg. LLF: 168.59363833198915
Optimization terminated successfully (Exit mode 0)
Current function value: 168.5936382945183
Iterations: 26
Function evaluations: 213
Gradient evaluations: 26
Iteration: 1, Func. Count: 10, Neg. LLF: 277.2178463002627
Iteration: 2, Func. Count: 20, Neg. LLF: 243.26744569427984
Iteration: 3, Func. Count: 30, Neg. LLF: 176.2946963764822
Iteration: 4, Func. Count: 40, Neg. LLF: 174.81423489300326
Iteration: 5, Func. Count: 50, Neg. LLF: 169.39123338657546
Iteration: 6, Func. Count: 59, Neg. LLF: 169.32943264484484
Iteration: 7, Func. Count: 68, Neg. LLF: 169.27735968468627
Iteration: 8, Func. Count: 77, Neg. LLF: 169.26722843188728
Iteration: 9, Func. Count: 86, Neg. LLF: 169.2602085330559
Iteration: 10, Func. Count: 95, Neg. LLF: 169.25649621318414
Iteration: 11, Func. Count: 104, Neg. LLF: 169.2550594875769
Iteration: 12, Func. Count: 113, Neg. LLF: 169.24770279901577
Iteration: 13, Func. Count: 122, Neg. LLF: 169.23546533806672
Iteration: 14, Func. Count: 131, Neg. LLF: 169.20966280738477
Iteration: 15, Func. Count: 140, Neg. LLF: 169.1745391888492
Iteration: 16, Func. Count: 149, Neg. LLF: 169.09404800587075
Iteration: 17, Func. Count: 158, Neg. LLF: 168.91474596342127
Iteration: 18, Func. Count: 167, Neg. LLF: 168.92614337625173
Iteration: 19, Func. Count: 177, Neg. LLF: 168.5956622805153
Iteration: 20, Func. Count: 186, Neg. LLF: 168.59396323251366
Iteration: 21, Func. Count: 195, Neg. LLF: 168.59371857020633
Iteration: 22, Func. Count: 204, Neg. LLF: 168.59367885525913
Iteration: 23, Func. Count: 213, Neg. LLF: 168.5936401924252
Iteration: 24, Func. Count: 222, Neg. LLF: 168.59363847378782
Iteration: 25, Func. Count: 230, Neg. LLF: 168.5936385503836
Optimization terminated successfully (Exit mode 0)
Current function value: 168.59363847378782
Iterations: 25
Function evaluations: 230
Gradient evaluations: 25
Iteration: 1, Func. Count: 11, Neg. LLF: 194.74373776992329
Iteration: 2, Func. Count: 22, Neg. LLF: 172.965736181309
Iteration: 3, Func. Count: 33, Neg. LLF: 169.9427538858281
Iteration: 4, Func. Count: 43, Neg. LLF: 202.80957499167752
Iteration: 5, Func. Count: 55, Neg. LLF: 170.48757936870635
Iteration: 6, Func. Count: 66, Neg. LLF: 169.63255827878766
Iteration: 7, Func. Count: 77, Neg. LLF: 168.66808541698543
Iteration: 8, Func. Count: 87, Neg. LLF: 168.6209828541604
Iteration: 9, Func. Count: 97, Neg. LLF: 168.60039715670933
Iteration: 10, Func. Count: 107, Neg. LLF: 168.5901310642782
Iteration: 11, Func. Count: 117, Neg. LLF: 168.58170252570486
Iteration: 12, Func. Count: 127, Neg. LLF: 168.5804842099404
Iteration: 13, Func. Count: 137, Neg. LLF: 168.57971083857018
Iteration: 14, Func. Count: 147, Neg. LLF: 168.57768523001155
Iteration: 15, Func. Count: 157, Neg. LLF: 168.57230096234852
Iteration: 16, Func. Count: 167, Neg. LLF: 168.55900354382075
Iteration: 17, Func. Count: 177, Neg. LLF: 168.54465958538907
Iteration: 18, Func. Count: 187, Neg. LLF: 168.5074568770634
Iteration: 19, Func. Count: 197, Neg. LLF: 168.50124631789785
Iteration: 20, Func. Count: 207, Neg. LLF: 168.5003467356168
Iteration: 21, Func. Count: 217, Neg. LLF: 168.50027322874212
Iteration: 22, Func. Count: 227, Neg. LLF: 168.50027022491741
Iteration: 23, Func. Count: 236, Neg. LLF: 168.5002702249339
Optimization terminated successfully (Exit mode 0)
Current function value: 168.50027022491741
Iterations: 23
Function evaluations: 236
Gradient evaluations: 23
Iteration: 1, Func. Count: 12, Neg. LLF: 194.7183708547821
Iteration: 2, Func. Count: 24, Neg. LLF: 171.59040037141227
Iteration: 3, Func. Count: 36, Neg. LLF: 169.9512774755687
Iteration: 4, Func. Count: 47, Neg. LLF: 202.34894953204574
Iteration: 5, Func. Count: 60, Neg. LLF: 170.426451009504
Iteration: 6, Func. Count: 72, Neg. LLF: 168.98159573560508
Iteration: 7, Func. Count: 84, Neg. LLF: 169.21844852323073
Iteration: 8, Func. Count: 96, Neg. LLF: 168.61280064164367
Iteration: 9, Func. Count: 107, Neg. LLF: 168.59532535944405
Iteration: 10, Func. Count: 118, Neg. LLF: 168.5856869236351
Iteration: 11, Func. Count: 129, Neg. LLF: 168.5801071984157
Iteration: 12, Func. Count: 140, Neg. LLF: 168.5792935338861
Iteration: 13, Func. Count: 151, Neg. LLF: 168.57832212510817
Iteration: 14, Func. Count: 162, Neg. LLF: 168.57563204515375
Iteration: 15, Func. Count: 173, Neg. LLF: 168.56845361605642
Iteration: 16, Func. Count: 184, Neg. LLF: 168.55358263328267
Iteration: 17, Func. Count: 195, Neg. LLF: 168.53620534652188
Iteration: 18, Func. Count: 206, Neg. LLF: 168.5054263594327
Iteration: 19, Func. Count: 217, Neg. LLF: 168.50109074942964
Iteration: 20, Func. Count: 228, Neg. LLF: 168.50028465423875
Iteration: 21, Func. Count: 239, Neg. LLF: 168.50027118147173
Iteration: 22, Func. Count: 250, Neg. LLF: 168.5002701693386
Iteration: 23, Func. Count: 260, Neg. LLF: 168.5002702381481
Optimization terminated successfully (Exit mode 0)
Current function value: 168.5002701693386
Iterations: 23
Function evaluations: 260
Gradient evaluations: 23
Iteration: 1, Func. Count: 9, Neg. LLF: 172.88691441432084
Iteration: 2, Func. Count: 18, Neg. LLF: 183.5754349131416
Iteration: 3, Func. Count: 27, Neg. LLF: 169.42058776689836
Iteration: 4, Func. Count: 35, Neg. LLF: 169.2726816509423
Iteration: 5, Func. Count: 43, Neg. LLF: 169.03305357516268
Iteration: 6, Func. Count: 51, Neg. LLF: 168.97244833593942
Iteration: 7, Func. Count: 59, Neg. LLF: 168.88182226517952
Iteration: 8, Func. Count: 67, Neg. LLF: 168.83269654885387
Iteration: 9, Func. Count: 75, Neg. LLF: 168.8183424664415
Iteration: 10, Func. Count: 83, Neg. LLF: 168.79548555786522
Iteration: 11, Func. Count: 91, Neg. LLF: 168.76633015839434
Iteration: 12, Func. Count: 99, Neg. LLF: 168.66052246708173
Iteration: 13, Func. Count: 107, Neg. LLF: 168.6107439067386
Iteration: 14, Func. Count: 115, Neg. LLF: 168.59504982801994
Iteration: 15, Func. Count: 123, Neg. LLF: 168.59366039188188
Iteration: 16, Func. Count: 131, Neg. LLF: 168.59363840907758
Iteration: 17, Func. Count: 138, Neg. LLF: 168.59363847508558
Optimization terminated successfully (Exit mode 0)
Current function value: 168.59363840907758
Iterations: 17
Function evaluations: 138
Gradient evaluations: 17
Iteration: 1, Func. Count: 10, Neg. LLF: 278.54352305939585
Iteration: 2, Func. Count: 20, Neg. LLF: 262.57671099878456
Iteration: 3, Func. Count: 30, Neg. LLF: 174.81166411059374
Iteration: 4, Func. Count: 40, Neg. LLF: 169.44886751226406
Iteration: 5, Func. Count: 49, Neg. LLF: 169.31664496722462
Iteration: 6, Func. Count: 58, Neg. LLF: 170.44944980700447
Iteration: 7, Func. Count: 68, Neg. LLF: 169.32753876491316
Iteration: 8, Func. Count: 78, Neg. LLF: 169.2709364932079
Iteration: 9, Func. Count: 87, Neg. LLF: 169.26846121322157
Iteration: 10, Func. Count: 96, Neg. LLF: 169.26615252571858
Iteration: 11, Func. Count: 105, Neg. LLF: 169.25745103986824
Iteration: 12, Func. Count: 114, Neg. LLF: 169.24641996878043
Iteration: 13, Func. Count: 123, Neg. LLF: 169.2269252079289
Iteration: 14, Func. Count: 132, Neg. LLF: 169.19308644068988
Iteration: 15, Func. Count: 141, Neg. LLF: 169.03184648974246
Iteration: 16, Func. Count: 150, Neg. LLF: 168.78627877633545
Iteration: 17, Func. Count: 159, Neg. LLF: 168.7600171771748
Iteration: 18, Func. Count: 168, Neg. LLF: 168.66013041196004
Iteration: 19, Func. Count: 177, Neg. LLF: 168.63209540771885
Iteration: 20, Func. Count: 186, Neg. LLF: 168.6005112800111
Iteration: 21, Func. Count: 195, Neg. LLF: 168.5957513488051
Iteration: 22, Func. Count: 204, Neg. LLF: 168.59382091888742
Iteration: 23, Func. Count: 213, Neg. LLF: 168.59370132749882
Iteration: 24, Func. Count: 222, Neg. LLF: 168.5936427091075
Iteration: 25, Func. Count: 231, Neg. LLF: 168.59363882084406
Iteration: 26, Func. Count: 240, Neg. LLF: 168.59363815730183
Optimization terminated successfully (Exit mode 0)
Current function value: 168.59363815730183
Iterations: 26
Function evaluations: 240
Gradient evaluations: 26
Iteration: 1, Func. Count: 11, Neg. LLF: 276.20711364331754
Iteration: 2, Func. Count: 22, Neg. LLF: 192.52735734885482
Iteration: 3, Func. Count: 33, Neg. LLF: 174.70498283524236
Iteration: 4, Func. Count: 44, Neg. LLF: 169.42730792665478
Iteration: 5, Func. Count: 54, Neg. LLF: 170.61945275295514
Iteration: 6, Func. Count: 65, Neg. LLF: 171.55241529032517
Iteration: 7, Func. Count: 76, Neg. LLF: 169.2832405392115
Iteration: 8, Func. Count: 86, Neg. LLF: 169.25650177287315
Iteration: 9, Func. Count: 96, Neg. LLF: 169.25470916501143
Iteration: 10, Func. Count: 106, Neg. LLF: 169.2528186482442
Iteration: 11, Func. Count: 116, Neg. LLF: 169.25006153233232
Iteration: 12, Func. Count: 126, Neg. LLF: 169.24399385500877
Iteration: 13, Func. Count: 136, Neg. LLF: 169.22795433352047
Iteration: 14, Func. Count: 146, Neg. LLF: 169.1890634938181
Iteration: 15, Func. Count: 156, Neg. LLF: 168.96747564583714
Iteration: 16, Func. Count: 166, Neg. LLF: 168.64153650911328
Iteration: 17, Func. Count: 176, Neg. LLF: 168.61496263289214
Iteration: 18, Func. Count: 186, Neg. LLF: 168.59797333085083
Iteration: 19, Func. Count: 196, Neg. LLF: 168.5951542359882
Iteration: 20, Func. Count: 206, Neg. LLF: 168.594295890976
Iteration: 21, Func. Count: 216, Neg. LLF: 168.5937651349524
Iteration: 22, Func. Count: 226, Neg. LLF: 168.59365021091932
Iteration: 23, Func. Count: 236, Neg. LLF: 168.5936384679758
Iteration: 24, Func. Count: 245, Neg. LLF: 168.59363854453267
Optimization terminated successfully (Exit mode 0)
Current function value: 168.5936384679758
Iterations: 24
Function evaluations: 245
Gradient evaluations: 24
Iteration: 1, Func. Count: 12, Neg. LLF: 194.69602530719993
Iteration: 2, Func. Count: 24, Neg. LLF: 174.5930252600963
Iteration: 3, Func. Count: 36, Neg. LLF: 169.99449864130494
Iteration: 4, Func. Count: 47, Neg. LLF: 206.12522245623248
Iteration: 5, Func. Count: 60, Neg. LLF: 170.28575243547212
Iteration: 6, Func. Count: 72, Neg. LLF: 169.77678546222035
Iteration: 7, Func. Count: 84, Neg. LLF: 168.6956724218392
Iteration: 8, Func. Count: 95, Neg. LLF: 168.61594889070457
Iteration: 9, Func. Count: 106, Neg. LLF: 168.60088198896352
Iteration: 10, Func. Count: 117, Neg. LLF: 168.58476348433803
Iteration: 11, Func. Count: 128, Neg. LLF: 168.58097471564824
Iteration: 12, Func. Count: 139, Neg. LLF: 168.57947196089722
Iteration: 13, Func. Count: 150, Neg. LLF: 168.57871026869935
Iteration: 14, Func. Count: 161, Neg. LLF: 168.5766184970067
Iteration: 15, Func. Count: 172, Neg. LLF: 168.57167433125062
Iteration: 16, Func. Count: 183, Neg. LLF: 168.55590460965303
Iteration: 17, Func. Count: 194, Neg. LLF: 168.53951971751292
Iteration: 18, Func. Count: 205, Neg. LLF: 168.51484952636062
Iteration: 19, Func. Count: 216, Neg. LLF: 168.50365851643136
Iteration: 20, Func. Count: 227, Neg. LLF: 168.5003623818281
Iteration: 21, Func. Count: 238, Neg. LLF: 168.50027469056675
Iteration: 22, Func. Count: 249, Neg. LLF: 168.50027020946243
Iteration: 23, Func. Count: 259, Neg. LLF: 168.50027020948227
Optimization terminated successfully (Exit mode 0)
Current function value: 168.50027020946243
Iterations: 23
Function evaluations: 259
Gradient evaluations: 23
Iteration: 1, Func. Count: 13, Neg. LLF: 194.6695503984529
Iteration: 2, Func. Count: 26, Neg. LLF: 172.2000011122833
Iteration: 3, Func. Count: 39, Neg. LLF: 170.07303871729553
Iteration: 4, Func. Count: 52, Neg. LLF: 201.5058352328785
Iteration: 5, Func. Count: 66, Neg. LLF: 169.79701545791704
Iteration: 6, Func. Count: 79, Neg. LLF: 168.74385515095884
Iteration: 7, Func. Count: 91, Neg. LLF: 168.59512695302507
Iteration: 8, Func. Count: 103, Neg. LLF: 168.58685576366233
Iteration: 9, Func. Count: 115, Neg. LLF: 168.5859157699069
Iteration: 10, Func. Count: 127, Neg. LLF: 168.5849009323577
Iteration: 11, Func. Count: 139, Neg. LLF: 168.58339667484051
Iteration: 12, Func. Count: 151, Neg. LLF: 168.5805487022406
Iteration: 13, Func. Count: 163, Neg. LLF: 168.5736580231869
Iteration: 14, Func. Count: 175, Neg. LLF: 168.55704812068237
Iteration: 15, Func. Count: 187, Neg. LLF: 168.53702961445651
Iteration: 16, Func. Count: 199, Neg. LLF: 168.51251396303596
Iteration: 17, Func. Count: 211, Neg. LLF: 168.5006827218695
Iteration: 18, Func. Count: 223, Neg. LLF: 168.5002797511004
Iteration: 19, Func. Count: 235, Neg. LLF: 168.5002707087874
Iteration: 20, Func. Count: 246, Neg. LLF: 168.50027077752674
Optimization terminated successfully (Exit mode 0)
Current function value: 168.5002707087874
Iterations: 20
Function evaluations: 246
Gradient evaluations: 20
Iteration: 1, Func. Count: 6, Neg. LLF: 172.30130819213116
Iteration: 2, Func. Count: 12, Neg. LLF: 172.90666678317288
Iteration: 3, Func. Count: 19, Neg. LLF: 170.70705428063872
Iteration: 4, Func. Count: 24, Neg. LLF: 170.65342518078174
Iteration: 5, Func. Count: 29, Neg. LLF: 170.5154396859954
Iteration: 6, Func. Count: 34, Neg. LLF: 170.31021385793133
Iteration: 7, Func. Count: 39, Neg. LLF: 169.92199524834456
Iteration: 8, Func. Count: 44, Neg. LLF: 169.32375408067134
Iteration: 9, Func. Count: 49, Neg. LLF: 168.587692509791
Iteration: 10, Func. Count: 54, Neg. LLF: 168.1340692569858
Iteration: 11, Func. Count: 59, Neg. LLF: 168.00909850618305
Iteration: 12, Func. Count: 64, Neg. LLF: 168.00506718657545
Iteration: 13, Func. Count: 69, Neg. LLF: 168.00300202762193
Iteration: 14, Func. Count: 74, Neg. LLF: 168.00142414170296
Iteration: 15, Func. Count: 79, Neg. LLF: 168.00142060219957
Iteration: 16, Func. Count: 83, Neg. LLF: 168.00142059689972
Optimization terminated successfully (Exit mode 0)
Current function value: 168.00142060219957
Iterations: 16
Function evaluations: 83
Gradient evaluations: 16
Iteration: 1, Func. Count: 7, Neg. LLF: 182.82812851843704
Iteration: 2, Func. Count: 14, Neg. LLF: 358.9420003233518
Iteration: 3, Func. Count: 21, Neg. LLF: 168.75580102727977
Iteration: 4, Func. Count: 28, Neg. LLF: 169.46791250641328
Iteration: 5, Func. Count: 35, Neg. LLF: 172.26821860470648
Iteration: 6, Func. Count: 42, Neg. LLF: 167.16424960152912
Iteration: 7, Func. Count: 48, Neg. LLF: 167.06193535263873
Iteration: 8, Func. Count: 54, Neg. LLF: 167.05884590254408
Iteration: 9, Func. Count: 60, Neg. LLF: 167.05868240249885
Iteration: 10, Func. Count: 66, Neg. LLF: 167.0586558355472
Iteration: 11, Func. Count: 72, Neg. LLF: 167.05853280025318
Iteration: 12, Func. Count: 78, Neg. LLF: 167.05844050284668
Iteration: 13, Func. Count: 84, Neg. LLF: 167.0584393728989
Iteration: 14, Func. Count: 89, Neg. LLF: 167.0584393595128
Optimization terminated successfully (Exit mode 0)
Current function value: 167.0584393728989
Iterations: 14
Function evaluations: 89
Gradient evaluations: 14
Iteration: 1, Func. Count: 8, Neg. LLF: 171.49792150957722
Iteration: 2, Func. Count: 15, Neg. LLF: 169.86109034746414
Iteration: 3, Func. Count: 23, Neg. LLF: 192.01126619934587
Iteration: 4, Func. Count: 31, Neg. LLF: 196.31477771480635
Iteration: 5, Func. Count: 39, Neg. LLF: 171.06543221316454
Iteration: 6, Func. Count: 47, Neg. LLF: 168.71807110317494
Iteration: 7, Func. Count: 55, Neg. LLF: 168.54940001742753
Iteration: 8, Func. Count: 62, Neg. LLF: 168.21498011582807
Iteration: 9, Func. Count: 69, Neg. LLF: 168.07171893330238
Iteration: 10, Func. Count: 76, Neg. LLF: 167.98657357725824
Iteration: 11, Func. Count: 83, Neg. LLF: 167.87041850273638
Iteration: 12, Func. Count: 90, Neg. LLF: 167.52555669141486
Iteration: 13, Func. Count: 97, Neg. LLF: 167.2914010818121
Iteration: 14, Func. Count: 104, Neg. LLF: 167.07157331454715
Iteration: 15, Func. Count: 111, Neg. LLF: 167.05969919481075
Iteration: 16, Func. Count: 118, Neg. LLF: 167.0585233097101
Iteration: 17, Func. Count: 125, Neg. LLF: 167.05845304157612
Iteration: 18, Func. Count: 132, Neg. LLF: 167.0584472678916
Iteration: 19, Func. Count: 139, Neg. LLF: 167.05843973554136
Iteration: 20, Func. Count: 145, Neg. LLF: 167.05843980810556
Optimization terminated successfully (Exit mode 0)
Current function value: 167.05843973554136
Iterations: 20
Function evaluations: 145
Gradient evaluations: 20
Iteration: 1, Func. Count: 9, Neg. LLF: 171.49396509387955
Iteration: 2, Func. Count: 17, Neg. LLF: 169.67024743156617
Iteration: 3, Func. Count: 26, Neg. LLF: 193.404681543798
Iteration: 4, Func. Count: 35, Neg. LLF: 196.56378253289088
Iteration: 5, Func. Count: 44, Neg. LLF: 171.33613144624996
Iteration: 6, Func. Count: 53, Neg. LLF: 168.7180173855051
Iteration: 7, Func. Count: 62, Neg. LLF: 168.52365708330873
Iteration: 8, Func. Count: 70, Neg. LLF: 168.18215500232117
Iteration: 9, Func. Count: 78, Neg. LLF: 168.06274653884464
Iteration: 10, Func. Count: 86, Neg. LLF: 167.96800361009375
Iteration: 11, Func. Count: 94, Neg. LLF: 167.80365794746302
Iteration: 12, Func. Count: 102, Neg. LLF: 167.39170349041555
Iteration: 13, Func. Count: 110, Neg. LLF: 167.13417105428488
Iteration: 14, Func. Count: 118, Neg. LLF: 167.0671139983652
Iteration: 15, Func. Count: 126, Neg. LLF: 167.0590958894331
Iteration: 16, Func. Count: 134, Neg. LLF: 167.0586982762112
Iteration: 17, Func. Count: 142, Neg. LLF: 167.05850721124017
Iteration: 18, Func. Count: 150, Neg. LLF: 167.0584424012119
Iteration: 19, Func. Count: 158, Neg. LLF: 167.05843937560243
Iteration: 20, Func. Count: 165, Neg. LLF: 167.0584393647234
Optimization terminated successfully (Exit mode 0)
Current function value: 167.05843937560243
Iterations: 20
Function evaluations: 165
Gradient evaluations: 20
Iteration: 1, Func. Count: 10, Neg. LLF: 171.49401638289945
Iteration: 2, Func. Count: 19, Neg. LLF: 169.7372566984827
Iteration: 3, Func. Count: 29, Neg. LLF: 187.38562941185478
Iteration: 4, Func. Count: 41, Neg. LLF: 194.1656171787602
Iteration: 5, Func. Count: 51, Neg. LLF: 168.6465889449909
Iteration: 6, Func. Count: 60, Neg. LLF: 168.55406296170108
Iteration: 7, Func. Count: 69, Neg. LLF: 169.67831849381855
Iteration: 8, Func. Count: 79, Neg. LLF: 168.42347905189743
Iteration: 9, Func. Count: 88, Neg. LLF: 168.32720316413761
Iteration: 10, Func. Count: 97, Neg. LLF: 168.26493322805032
Iteration: 11, Func. Count: 106, Neg. LLF: 167.95610930782726
Iteration: 12, Func. Count: 115, Neg. LLF: 167.22515057554745
Iteration: 13, Func. Count: 124, Neg. LLF: 169.03261531570197
Iteration: 14, Func. Count: 134, Neg. LLF: 166.82284699837643
Iteration: 15, Func. Count: 143, Neg. LLF: 166.72013597286187
Iteration: 16, Func. Count: 152, Neg. LLF: 166.70245538285383
Iteration: 17, Func. Count: 161, Neg. LLF: 166.69846543725143
Iteration: 18, Func. Count: 170, Neg. LLF: 166.69773602220124
Iteration: 19, Func. Count: 179, Neg. LLF: 166.6973071879333
Iteration: 20, Func. Count: 188, Neg. LLF: 166.69729649595556
Iteration: 21, Func. Count: 197, Neg. LLF: 166.6972940408062
Iteration: 22, Func. Count: 205, Neg. LLF: 166.6972940204918
Optimization terminated successfully (Exit mode 0)
Current function value: 166.6972940408062
Iterations: 22
Function evaluations: 205
Gradient evaluations: 22
Iteration: 1, Func. Count: 7, Neg. LLF: 172.29026862230336
Iteration: 2, Func. Count: 14, Neg. LLF: 170.12395437854101
Iteration: 3, Func. Count: 20, Neg. LLF: 172.0242308755327
Iteration: 4, Func. Count: 27, Neg. LLF: 170.01835431156493
Iteration: 5, Func. Count: 33, Neg. LLF: 169.93760308206288
Iteration: 6, Func. Count: 39, Neg. LLF: 169.76573473086188
Iteration: 7, Func. Count: 45, Neg. LLF: 169.18129102883603
Iteration: 8, Func. Count: 51, Neg. LLF: 168.78358631918903
Iteration: 9, Func. Count: 57, Neg. LLF: 168.36030275617892
Iteration: 10, Func. Count: 63, Neg. LLF: 167.681896565368
Iteration: 11, Func. Count: 69, Neg. LLF: 167.3453399459904
Iteration: 12, Func. Count: 75, Neg. LLF: 167.13523563802025
Iteration: 13, Func. Count: 81, Neg. LLF: 167.07970238514716
Iteration: 14, Func. Count: 87, Neg. LLF: 167.07386675456902
Iteration: 15, Func. Count: 93, Neg. LLF: 167.07311133468968
Iteration: 16, Func. Count: 99, Neg. LLF: 167.07250808015812
Iteration: 17, Func. Count: 105, Neg. LLF: 167.07250307959703
Iteration: 18, Func. Count: 110, Neg. LLF: 167.07250307959418
Optimization terminated successfully (Exit mode 0)
Current function value: 167.07250307959703
Iterations: 18
Function evaluations: 110
Gradient evaluations: 18
Iteration: 1, Func. Count: 8, Neg. LLF: 182.46698624141612
Iteration: 2, Func. Count: 16, Neg. LLF: 187.6505895025994
Iteration: 3, Func. Count: 24, Neg. LLF: 186.13844437943305
Iteration: 4, Func. Count: 32, Neg. LLF: 183.7904238965993
Iteration: 5, Func. Count: 40, Neg. LLF: 169.40322239971823
Iteration: 6, Func. Count: 48, Neg. LLF: 183.86829097568335
Iteration: 7, Func. Count: 56, Neg. LLF: 167.1897743704742
Iteration: 8, Func. Count: 64, Neg. LLF: 166.46560144756904
Iteration: 9, Func. Count: 71, Neg. LLF: 166.43305039988635
Iteration: 10, Func. Count: 78, Neg. LLF: 166.42951239349995
Iteration: 11, Func. Count: 85, Neg. LLF: 166.4268450413519
Iteration: 12, Func. Count: 92, Neg. LLF: 166.42258157573866
Iteration: 13, Func. Count: 99, Neg. LLF: 166.41775148048606
Iteration: 14, Func. Count: 106, Neg. LLF: 166.4139955097172
Iteration: 15, Func. Count: 113, Neg. LLF: 166.41313869290894
Iteration: 16, Func. Count: 120, Neg. LLF: 166.41307543504976
Iteration: 17, Func. Count: 127, Neg. LLF: 166.41307316084217
Iteration: 18, Func. Count: 133, Neg. LLF: 166.41307315336311
Optimization terminated successfully (Exit mode 0)
Current function value: 166.41307316084217
Iterations: 18
Function evaluations: 133
Gradient evaluations: 18
Iteration: 1, Func. Count: 9, Neg. LLF: 182.33033424670973
Iteration: 2, Func. Count: 18, Neg. LLF: 187.9999745941036
Iteration: 3, Func. Count: 27, Neg. LLF: 186.86661600874254
Iteration: 4, Func. Count: 36, Neg. LLF: 170.0192513865786
Iteration: 5, Func. Count: 45, Neg. LLF: 173.9395814149162
Iteration: 6, Func. Count: 54, Neg. LLF: 166.73636575340785
Iteration: 7, Func. Count: 62, Neg. LLF: 166.4759906047667
Iteration: 8, Func. Count: 70, Neg. LLF: 166.4533681609999
Iteration: 9, Func. Count: 78, Neg. LLF: 166.4431954976003
Iteration: 10, Func. Count: 86, Neg. LLF: 166.43676229782625
Iteration: 11, Func. Count: 94, Neg. LLF: 166.43070987120902
Iteration: 12, Func. Count: 102, Neg. LLF: 166.41498218370407
Iteration: 13, Func. Count: 110, Neg. LLF: 166.41314448507865
Iteration: 14, Func. Count: 118, Neg. LLF: 166.4130749720805
Iteration: 15, Func. Count: 126, Neg. LLF: 166.41307320836242
Iteration: 16, Func. Count: 133, Neg. LLF: 166.41307331539204
Optimization terminated successfully (Exit mode 0)
Current function value: 166.41307320836242
Iterations: 16
Function evaluations: 133
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 182.23086240475118
Iteration: 2, Func. Count: 20, Neg. LLF: 186.83750498754227
Iteration: 3, Func. Count: 30, Neg. LLF: 172.27412317386077
Iteration: 4, Func. Count: 40, Neg. LLF: 177.63046025199594
Iteration: 5, Func. Count: 50, Neg. LLF: 170.90349753404277
Iteration: 6, Func. Count: 60, Neg. LLF: 166.92669181595673
Iteration: 7, Func. Count: 69, Neg. LLF: 166.52462581790328
Iteration: 8, Func. Count: 78, Neg. LLF: 167.07274617975267
Iteration: 9, Func. Count: 88, Neg. LLF: 166.51390806474782
Iteration: 10, Func. Count: 98, Neg. LLF: 166.30120065784823
Iteration: 11, Func. Count: 107, Neg. LLF: 166.2997077236376
Iteration: 12, Func. Count: 116, Neg. LLF: 166.29951898991393
Iteration: 13, Func. Count: 125, Neg. LLF: 166.2995095627598
Iteration: 14, Func. Count: 134, Neg. LLF: 166.29950206156872
Iteration: 15, Func. Count: 143, Neg. LLF: 166.29947063528033
Iteration: 16, Func. Count: 152, Neg. LLF: 166.29946010697324
Iteration: 17, Func. Count: 161, Neg. LLF: 166.2994594755239
Optimization terminated successfully (Exit mode 0)
Current function value: 166.2994594755239
Iterations: 17
Function evaluations: 161
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 171.48249087726657
Iteration: 2, Func. Count: 21, Neg. LLF: 168.34883402422304
Iteration: 3, Func. Count: 33, Neg. LLF: 187.42285835798393
Iteration: 4, Func. Count: 46, Neg. LLF: 194.7981949189018
Iteration: 5, Func. Count: 57, Neg. LLF: 167.6300010440122
Iteration: 6, Func. Count: 67, Neg. LLF: 167.51512211772382
Iteration: 7, Func. Count: 77, Neg. LLF: 167.42406312259558
Iteration: 8, Func. Count: 87, Neg. LLF: 167.23992117435162
Iteration: 9, Func. Count: 97, Neg. LLF: 166.78138893172928
Iteration: 10, Func. Count: 107, Neg. LLF: 166.30195685095487
Iteration: 11, Func. Count: 117, Neg. LLF: 176.58088490049764
Iteration: 12, Func. Count: 128, Neg. LLF: 166.24890871401098
Iteration: 13, Func. Count: 138, Neg. LLF: 166.20994809354383
Iteration: 14, Func. Count: 148, Neg. LLF: 166.18106400922431
Iteration: 15, Func. Count: 158, Neg. LLF: 166.09655206413225
Iteration: 16, Func. Count: 168, Neg. LLF: 165.97751387136185
Iteration: 17, Func. Count: 178, Neg. LLF: 165.91678805260617
Iteration: 18, Func. Count: 188, Neg. LLF: 165.889235199925
Iteration: 19, Func. Count: 198, Neg. LLF: 165.88439402060945
Iteration: 20, Func. Count: 208, Neg. LLF: 165.88072632077592
Iteration: 21, Func. Count: 218, Neg. LLF: 165.88027417884
Iteration: 22, Func. Count: 228, Neg. LLF: 165.8801725367363
Iteration: 23, Func. Count: 238, Neg. LLF: 165.88016821052796
Iteration: 24, Func. Count: 247, Neg. LLF: 165.88016819228105
Optimization terminated successfully (Exit mode 0)
Current function value: 165.88016821052796
Iterations: 24
Function evaluations: 247
Gradient evaluations: 24
Iteration: 1, Func. Count: 8, Neg. LLF: 172.3032177330342
Iteration: 2, Func. Count: 16, Neg. LLF: 179.3095831752051
Iteration: 3, Func. Count: 24, Neg. LLF: 177.62381748575484
Iteration: 4, Func. Count: 32, Neg. LLF: 169.92756651460493
Iteration: 5, Func. Count: 39, Neg. LLF: 169.85165052168242
Iteration: 6, Func. Count: 46, Neg. LLF: 169.7857127194132
Iteration: 7, Func. Count: 53, Neg. LLF: 169.89839840539292
Iteration: 8, Func. Count: 61, Neg. LLF: 169.51892687209605
Iteration: 9, Func. Count: 68, Neg. LLF: 169.04426590207407
Iteration: 10, Func. Count: 75, Neg. LLF: 167.42319925086593
Iteration: 11, Func. Count: 82, Neg. LLF: 167.716821097943
Iteration: 12, Func. Count: 90, Neg. LLF: 166.89723689726054
Iteration: 13, Func. Count: 97, Neg. LLF: 166.72305161317183
Iteration: 14, Func. Count: 104, Neg. LLF: 166.7117785635295
Iteration: 15, Func. Count: 111, Neg. LLF: 166.7092957752877
Iteration: 16, Func. Count: 118, Neg. LLF: 166.70876478599507
Iteration: 17, Func. Count: 125, Neg. LLF: 166.70874397691816
Iteration: 18, Func. Count: 132, Neg. LLF: 166.7087429514586
Iteration: 19, Func. Count: 138, Neg. LLF: 166.70874295143977
Optimization terminated successfully (Exit mode 0)
Current function value: 166.7087429514586
Iterations: 19
Function evaluations: 138
Gradient evaluations: 19
Iteration: 1, Func. Count: 9, Neg. LLF: 189.39066396842122
Iteration: 2, Func. Count: 18, Neg. LLF: 182.69362867378177
Iteration: 3, Func. Count: 27, Neg. LLF: 168.86564205849768
Iteration: 4, Func. Count: 36, Neg. LLF: 182.5753847990439
Iteration: 5, Func. Count: 45, Neg. LLF: 168.26301285319883
Iteration: 6, Func. Count: 54, Neg. LLF: 166.17222724880818
Iteration: 7, Func. Count: 62, Neg. LLF: 165.9695211600662
Iteration: 8, Func. Count: 70, Neg. LLF: 165.99962842208956
Iteration: 9, Func. Count: 79, Neg. LLF: 165.87718428198377
Iteration: 10, Func. Count: 87, Neg. LLF: 165.87592263732094
Iteration: 11, Func. Count: 95, Neg. LLF: 165.87431247715668
Iteration: 12, Func. Count: 103, Neg. LLF: 165.8741366408151
Iteration: 13, Func. Count: 111, Neg. LLF: 165.87412644091833
Iteration: 14, Func. Count: 119, Neg. LLF: 165.87412009822333
Iteration: 15, Func. Count: 127, Neg. LLF: 165.87409245197173
Iteration: 16, Func. Count: 135, Neg. LLF: 165.87407721166474
Iteration: 17, Func. Count: 143, Neg. LLF: 165.87407187502
Iteration: 18, Func. Count: 150, Neg. LLF: 165.87407187496152
Optimization terminated successfully (Exit mode 0)
Current function value: 165.87407187502
Iterations: 18
Function evaluations: 150
Gradient evaluations: 18
Iteration: 1, Func. Count: 10, Neg. LLF: 189.18513513963956
Iteration: 2, Func. Count: 20, Neg. LLF: 168.40152395935516
Iteration: 3, Func. Count: 29, Neg. LLF: 167.48276684220897
Iteration: 4, Func. Count: 39, Neg. LLF: 167.9670139739188
Iteration: 5, Func. Count: 49, Neg. LLF: 169.09666398828423
Iteration: 6, Func. Count: 59, Neg. LLF: 165.8917406793798
Iteration: 7, Func. Count: 68, Neg. LLF: 165.87996441432105
Iteration: 8, Func. Count: 77, Neg. LLF: 165.87586667682595
Iteration: 9, Func. Count: 86, Neg. LLF: 165.875846626569
Iteration: 10, Func. Count: 96, Neg. LLF: 165.87426234712655
Iteration: 11, Func. Count: 105, Neg. LLF: 165.87416640787075
Iteration: 12, Func. Count: 114, Neg. LLF: 165.8741575783699
Iteration: 13, Func. Count: 123, Neg. LLF: 165.87412787759862
Iteration: 14, Func. Count: 132, Neg. LLF: 165.87409766083525
Iteration: 15, Func. Count: 141, Neg. LLF: 165.8740763055934
Iteration: 16, Func. Count: 150, Neg. LLF: 165.87407174954222
Iteration: 17, Func. Count: 158, Neg. LLF: 165.87407188303627
Optimization terminated successfully (Exit mode 0)
Current function value: 165.87407174954222
Iterations: 17
Function evaluations: 158
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 228.61804928085022
Iteration: 2, Func. Count: 22, Neg. LLF: 168.0896028008328
Iteration: 3, Func. Count: 32, Neg. LLF: 167.9187591788752
Iteration: 4, Func. Count: 43, Neg. LLF: 170.60475460530702
Iteration: 5, Func. Count: 54, Neg. LLF: 167.93237536995528
Iteration: 6, Func. Count: 65, Neg. LLF: 171.46581863936254
Iteration: 7, Func. Count: 76, Neg. LLF: 166.18881282113045
Iteration: 8, Func. Count: 87, Neg. LLF: 165.73070278099226
Iteration: 9, Func. Count: 97, Neg. LLF: 165.94445295970633
Iteration: 10, Func. Count: 108, Neg. LLF: 165.6688469468032
Iteration: 11, Func. Count: 118, Neg. LLF: 165.6617960218132
Iteration: 12, Func. Count: 128, Neg. LLF: 165.65087944295584
Iteration: 13, Func. Count: 138, Neg. LLF: 165.6378373813594
Iteration: 14, Func. Count: 148, Neg. LLF: 165.62574999830127
Iteration: 15, Func. Count: 158, Neg. LLF: 165.62304544093072
Iteration: 16, Func. Count: 168, Neg. LLF: 165.62271148615164
Iteration: 17, Func. Count: 178, Neg. LLF: 165.6227103657348
Iteration: 18, Func. Count: 187, Neg. LLF: 165.62271034777817
Optimization terminated successfully (Exit mode 0)
Current function value: 165.6227103657348
Iterations: 18
Function evaluations: 187
Gradient evaluations: 18
Iteration: 1, Func. Count: 12, Neg. LLF: 178.37021724069592
Iteration: 2, Func. Count: 24, Neg. LLF: 167.85398587875758
Iteration: 3, Func. Count: 35, Neg. LLF: 169.35568032241
Iteration: 4, Func. Count: 48, Neg. LLF: 208.3574396075834
Iteration: 5, Func. Count: 60, Neg. LLF: 169.91595850125077
Iteration: 6, Func. Count: 72, Neg. LLF: 170.17414177986046
Iteration: 7, Func. Count: 84, Neg. LLF: 171.3752174220452
Iteration: 8, Func. Count: 96, Neg. LLF: 167.734294488917
Iteration: 9, Func. Count: 108, Neg. LLF: 167.07805688222027
Iteration: 10, Func. Count: 119, Neg. LLF: 166.96008671555475
Iteration: 11, Func. Count: 130, Neg. LLF: 166.26790570761437
Iteration: 12, Func. Count: 141, Neg. LLF: 191.15602458346999
Iteration: 13, Func. Count: 153, Neg. LLF: 170.15882031420955
Iteration: 14, Func. Count: 165, Neg. LLF: 171.5185667853039
Iteration: 15, Func. Count: 177, Neg. LLF: 169.52679714803628
Iteration: 16, Func. Count: 189, Neg. LLF: 168.06208016566535
Iteration: 17, Func. Count: 201, Neg. LLF: 168.97515749604568
Iteration: 18, Func. Count: 213, Neg. LLF: 165.153333906884
Iteration: 19, Func. Count: 224, Neg. LLF: 165.07626062066336
Iteration: 20, Func. Count: 235, Neg. LLF: 165.06132003804188
Iteration: 21, Func. Count: 246, Neg. LLF: 165.05895680952526
Iteration: 22, Func. Count: 257, Neg. LLF: 165.05857914574307
Iteration: 23, Func. Count: 268, Neg. LLF: 165.05853581948233
Iteration: 24, Func. Count: 279, Neg. LLF: 165.0585207961584
Iteration: 25, Func. Count: 289, Neg. LLF: 165.05852078671666
Optimization terminated successfully (Exit mode 0)
Current function value: 165.0585207961584
Iterations: 25
Function evaluations: 289
Gradient evaluations: 25
Iteration: 1, Func. Count: 9, Neg. LLF: 172.4964290649311
Iteration: 2, Func. Count: 19, Neg. LLF: 174.03466996199288
Iteration: 3, Func. Count: 29, Neg. LLF: 168.9936570360214
Iteration: 4, Func. Count: 37, Neg. LLF: 169.9080223695856
Iteration: 5, Func. Count: 46, Neg. LLF: 168.90985323723498
Iteration: 6, Func. Count: 54, Neg. LLF: 168.8789848155964
Iteration: 7, Func. Count: 62, Neg. LLF: 168.8496728266748
Iteration: 8, Func. Count: 70, Neg. LLF: 168.6845099056504
Iteration: 9, Func. Count: 78, Neg. LLF: 168.4838050540752
Iteration: 10, Func. Count: 86, Neg. LLF: 168.13196514669337
Iteration: 11, Func. Count: 94, Neg. LLF: 168.04379132897853
Iteration: 12, Func. Count: 103, Neg. LLF: 167.24519414368393
Iteration: 13, Func. Count: 111, Neg. LLF: 168.62201813948695
Iteration: 14, Func. Count: 120, Neg. LLF: 166.83229907332264
Iteration: 15, Func. Count: 128, Neg. LLF: 166.75719088877074
Iteration: 16, Func. Count: 136, Neg. LLF: 166.7117458530693
Iteration: 17, Func. Count: 144, Neg. LLF: 166.70940444402453
Iteration: 18, Func. Count: 152, Neg. LLF: 166.7088776559981
Iteration: 19, Func. Count: 160, Neg. LLF: 166.70875419172123
Iteration: 20, Func. Count: 168, Neg. LLF: 166.7087431359414
Iteration: 21, Func. Count: 175, Neg. LLF: 166.70874318612974
Optimization terminated successfully (Exit mode 0)
Current function value: 166.7087431359414
Iterations: 21
Function evaluations: 175
Gradient evaluations: 21
Iteration: 1, Func. Count: 10, Neg. LLF: 202.01914562400341
Iteration: 2, Func. Count: 20, Neg. LLF: 181.87758241506523
Iteration: 3, Func. Count: 30, Neg. LLF: 266.3826204173614
Iteration: 4, Func. Count: 40, Neg. LLF: 171.97903333590216
Iteration: 5, Func. Count: 50, Neg. LLF: 171.2524659351278
Iteration: 6, Func. Count: 60, Neg. LLF: 169.02797806514968
Iteration: 7, Func. Count: 70, Neg. LLF: 166.5088307505633
Iteration: 8, Func. Count: 79, Neg. LLF: 165.99135188857676
Iteration: 9, Func. Count: 88, Neg. LLF: 165.90501092805155
Iteration: 10, Func. Count: 97, Neg. LLF: 165.8753793160716
Iteration: 11, Func. Count: 106, Neg. LLF: 165.87504244742874
Iteration: 12, Func. Count: 115, Neg. LLF: 165.87493869955847
Iteration: 13, Func. Count: 124, Neg. LLF: 165.87458922184356
Iteration: 14, Func. Count: 133, Neg. LLF: 165.87426838314053
Iteration: 15, Func. Count: 142, Neg. LLF: 165.87409910904796
Iteration: 16, Func. Count: 151, Neg. LLF: 165.87407300187587
Iteration: 17, Func. Count: 160, Neg. LLF: 165.8740714565927
Iteration: 18, Func. Count: 168, Neg. LLF: 165.87407145663136
Optimization terminated successfully (Exit mode 0)
Current function value: 165.8740714565927
Iterations: 18
Function evaluations: 168
Gradient evaluations: 18
Iteration: 1, Func. Count: 11, Neg. LLF: 204.94372990139559
Iteration: 2, Func. Count: 22, Neg. LLF: 173.96532300738775
Iteration: 3, Func. Count: 33, Neg. LLF: 172.3892351260557
Iteration: 4, Func. Count: 44, Neg. LLF: 169.4893775442102
Iteration: 5, Func. Count: 55, Neg. LLF: 166.14695171224577
Iteration: 6, Func. Count: 65, Neg. LLF: 167.34359823271794
Iteration: 7, Func. Count: 76, Neg. LLF: 165.90127360110517
Iteration: 8, Func. Count: 86, Neg. LLF: 165.91793920910945
Iteration: 9, Func. Count: 97, Neg. LLF: 165.87741266539064
Iteration: 10, Func. Count: 107, Neg. LLF: 165.8745427128207
Iteration: 11, Func. Count: 117, Neg. LLF: 165.87419628424468
Iteration: 12, Func. Count: 127, Neg. LLF: 165.87418183661393
Iteration: 13, Func. Count: 137, Neg. LLF: 165.87416312112433
Iteration: 14, Func. Count: 147, Neg. LLF: 165.87412404427948
Iteration: 15, Func. Count: 157, Neg. LLF: 165.87408928421246
Iteration: 16, Func. Count: 167, Neg. LLF: 165.87407363649015
Iteration: 17, Func. Count: 177, Neg. LLF: 165.874071474477
Iteration: 18, Func. Count: 186, Neg. LLF: 165.87407160797827
Optimization terminated successfully (Exit mode 0)
Current function value: 165.874071474477
Iterations: 18
Function evaluations: 186
Gradient evaluations: 18
Iteration: 1, Func. Count: 12, Neg. LLF: 170.78764688616064
Iteration: 2, Func. Count: 23, Neg. LLF: 168.03293963965106
Iteration: 3, Func. Count: 34, Neg. LLF: 180.5805267019588
Iteration: 4, Func. Count: 47, Neg. LLF: 186.6047107710231
Iteration: 5, Func. Count: 59, Neg. LLF: 177.66230045007447
Iteration: 6, Func. Count: 71, Neg. LLF: 172.78598441079302
Iteration: 7, Func. Count: 83, Neg. LLF: 170.29258113269418
Iteration: 8, Func. Count: 95, Neg. LLF: 170.72424793185957
Iteration: 9, Func. Count: 107, Neg. LLF: 167.3476387283748
Iteration: 10, Func. Count: 118, Neg. LLF: 167.28598988569888
Iteration: 11, Func. Count: 129, Neg. LLF: 167.26110437270927
Iteration: 12, Func. Count: 140, Neg. LLF: 167.20056055419036
Iteration: 13, Func. Count: 151, Neg. LLF: 167.0039774400995
Iteration: 14, Func. Count: 162, Neg. LLF: 166.70535569061906
Iteration: 15, Func. Count: 173, Neg. LLF: 169.99514401012465
Iteration: 16, Func. Count: 185, Neg. LLF: 172.80977331176814
Iteration: 17, Func. Count: 197, Neg. LLF: 166.5349332952564
Iteration: 18, Func. Count: 209, Neg. LLF: 166.7989065598171
Iteration: 19, Func. Count: 221, Neg. LLF: 165.8720260504184
Iteration: 20, Func. Count: 232, Neg. LLF: 166.2339987124051
Iteration: 21, Func. Count: 244, Neg. LLF: 165.66072632646402
Iteration: 22, Func. Count: 255, Neg. LLF: 165.63036151368715
Iteration: 23, Func. Count: 266, Neg. LLF: 165.6229981235364
Iteration: 24, Func. Count: 277, Neg. LLF: 165.62272003394872
Iteration: 25, Func. Count: 288, Neg. LLF: 165.62271080863195
Iteration: 26, Func. Count: 298, Neg. LLF: 165.62271079049333
Optimization terminated successfully (Exit mode 0)
Current function value: 165.62271080863195
Iterations: 26
Function evaluations: 298
Gradient evaluations: 26
Iteration: 1, Func. Count: 13, Neg. LLF: 170.8136754986756
Iteration: 2, Func. Count: 25, Neg. LLF: 167.98550206010705
Iteration: 3, Func. Count: 37, Neg. LLF: 181.80750241526786
Iteration: 4, Func. Count: 52, Neg. LLF: 190.16195058692358
Iteration: 5, Func. Count: 65, Neg. LLF: 177.13915962183074
Iteration: 6, Func. Count: 78, Neg. LLF: 172.2969114046926
Iteration: 7, Func. Count: 91, Neg. LLF: 170.57256634367963
Iteration: 8, Func. Count: 104, Neg. LLF: 167.77042575299177
Iteration: 9, Func. Count: 117, Neg. LLF: 167.12511274034128
Iteration: 10, Func. Count: 129, Neg. LLF: 167.08107670835153
Iteration: 11, Func. Count: 141, Neg. LLF: 167.0049012791773
Iteration: 12, Func. Count: 153, Neg. LLF: 166.55013247810393
Iteration: 13, Func. Count: 165, Neg. LLF: 169.51846691765962
Iteration: 14, Func. Count: 178, Neg. LLF: 170.36408236560067
Iteration: 15, Func. Count: 191, Neg. LLF: 166.4452955966632
Iteration: 16, Func. Count: 204, Neg. LLF: 166.55665820506005
Iteration: 17, Func. Count: 217, Neg. LLF: 166.42846712202723
Iteration: 18, Func. Count: 230, Neg. LLF: 165.63800910047877
Iteration: 19, Func. Count: 242, Neg. LLF: 165.58854358628236
Iteration: 20, Func. Count: 254, Neg. LLF: 165.58085793986777
Iteration: 21, Func. Count: 266, Neg. LLF: 165.57541524874807
Iteration: 22, Func. Count: 278, Neg. LLF: 165.57063282665916
Iteration: 23, Func. Count: 290, Neg. LLF: 165.56799478191996
Iteration: 24, Func. Count: 302, Neg. LLF: 165.56766391506062
Iteration: 25, Func. Count: 314, Neg. LLF: 165.56763732535916
Iteration: 26, Func. Count: 326, Neg. LLF: 165.56763669707658
Optimization terminated successfully (Exit mode 0)
Current function value: 165.56763669707658
Iterations: 26
Function evaluations: 326
Gradient evaluations: 26
Iteration: 1, Func. Count: 10, Neg. LLF: 172.55710823905224
Iteration: 2, Func. Count: 21, Neg. LLF: 174.39038998432113
Iteration: 3, Func. Count: 32, Neg. LLF: 168.997699840522
Iteration: 4, Func. Count: 41, Neg. LLF: 170.01804696447678
Iteration: 5, Func. Count: 51, Neg. LLF: 168.91222965530804
Iteration: 6, Func. Count: 60, Neg. LLF: 168.87848898915087
Iteration: 7, Func. Count: 69, Neg. LLF: 168.8519577243371
Iteration: 8, Func. Count: 78, Neg. LLF: 168.66592315987205
Iteration: 9, Func. Count: 87, Neg. LLF: 169.1998410746124
Iteration: 10, Func. Count: 97, Neg. LLF: 168.70411016753
Iteration: 11, Func. Count: 107, Neg. LLF: 167.98260711368997
Iteration: 12, Func. Count: 116, Neg. LLF: 167.42217362918606
Iteration: 13, Func. Count: 125, Neg. LLF: 168.61650451970218
Iteration: 14, Func. Count: 135, Neg. LLF: 167.9736976876817
Iteration: 15, Func. Count: 145, Neg. LLF: 167.40831031797225
Iteration: 16, Func. Count: 155, Neg. LLF: 167.07436002411185
Iteration: 17, Func. Count: 164, Neg. LLF: 166.90298657515308
Iteration: 18, Func. Count: 173, Neg. LLF: 166.72596742578094
Iteration: 19, Func. Count: 182, Neg. LLF: 166.71102857151254
Iteration: 20, Func. Count: 191, Neg. LLF: 166.70931605626598
Iteration: 21, Func. Count: 200, Neg. LLF: 166.70894797048268
Iteration: 22, Func. Count: 209, Neg. LLF: 166.70876355822824
Iteration: 23, Func. Count: 218, Neg. LLF: 166.70874367591267
Iteration: 24, Func. Count: 227, Neg. LLF: 166.70874277972842
Optimization terminated successfully (Exit mode 0)
Current function value: 166.70874277972842
Iterations: 24
Function evaluations: 227
Gradient evaluations: 24
Iteration: 1, Func. Count: 11, Neg. LLF: 280.4853937275488
Iteration: 2, Func. Count: 22, Neg. LLF: 181.9223829633247
Iteration: 3, Func. Count: 33, Neg. LLF: 174.27497168477765
Iteration: 4, Func. Count: 44, Neg. LLF: 170.82173655187609
Iteration: 5, Func. Count: 55, Neg. LLF: 171.4275677341957
Iteration: 6, Func. Count: 66, Neg. LLF: 169.0983513476141
Iteration: 7, Func. Count: 77, Neg. LLF: 166.01161168756707
Iteration: 8, Func. Count: 87, Neg. LLF: 165.93529745662335
Iteration: 9, Func. Count: 97, Neg. LLF: 165.8763227854495
Iteration: 10, Func. Count: 107, Neg. LLF: 165.87444822254463
Iteration: 11, Func. Count: 117, Neg. LLF: 165.8743561633199
Iteration: 12, Func. Count: 127, Neg. LLF: 165.87431977751714
Iteration: 13, Func. Count: 137, Neg. LLF: 165.87426029036968
Iteration: 14, Func. Count: 147, Neg. LLF: 165.87416317138914
Iteration: 15, Func. Count: 157, Neg. LLF: 165.87409368678976
Iteration: 16, Func. Count: 167, Neg. LLF: 165.87407331432567
Iteration: 17, Func. Count: 177, Neg. LLF: 165.87407144462412
Iteration: 18, Func. Count: 186, Neg. LLF: 165.87407144464578
Optimization terminated successfully (Exit mode 0)
Current function value: 165.87407144462412
Iterations: 18
Function evaluations: 186
Gradient evaluations: 18
Iteration: 1, Func. Count: 12, Neg. LLF: 170.85524023040733
Iteration: 2, Func. Count: 24, Neg. LLF: 168.4419303341443
Iteration: 3, Func. Count: 35, Neg. LLF: 174.90703355841805
Iteration: 4, Func. Count: 47, Neg. LLF: 177.71254261331794
Iteration: 5, Func. Count: 60, Neg. LLF: 178.16907886261637
Iteration: 6, Func. Count: 72, Neg. LLF: 175.87515155783944
Iteration: 7, Func. Count: 84, Neg. LLF: 167.4721288286776
Iteration: 8, Func. Count: 95, Neg. LLF: 167.30850793180738
Iteration: 9, Func. Count: 106, Neg. LLF: 167.2706274229579
Iteration: 10, Func. Count: 117, Neg. LLF: 167.23714496431364
Iteration: 11, Func. Count: 128, Neg. LLF: 167.16578992443664
Iteration: 12, Func. Count: 139, Neg. LLF: 167.04534339391384
Iteration: 13, Func. Count: 150, Neg. LLF: 166.7024672305344
Iteration: 14, Func. Count: 161, Neg. LLF: 166.4372859278163
Iteration: 15, Func. Count: 172, Neg. LLF: 166.26668341442334
Iteration: 16, Func. Count: 183, Neg. LLF: 165.9193429205718
Iteration: 17, Func. Count: 194, Neg. LLF: 165.92682732998614
Iteration: 18, Func. Count: 206, Neg. LLF: 165.88030121923944
Iteration: 19, Func. Count: 217, Neg. LLF: 165.8749903954591
Iteration: 20, Func. Count: 228, Neg. LLF: 165.87437357634025
Iteration: 21, Func. Count: 239, Neg. LLF: 165.87408114016236
Iteration: 22, Func. Count: 250, Neg. LLF: 165.8740745396153
Iteration: 23, Func. Count: 261, Neg. LLF: 165.87407164631847
Iteration: 24, Func. Count: 271, Neg. LLF: 165.8740717798478
Optimization terminated successfully (Exit mode 0)
Current function value: 165.87407164631847
Iterations: 24
Function evaluations: 271
Gradient evaluations: 24
Iteration: 1, Func. Count: 13, Neg. LLF: 170.8687409547103
Iteration: 2, Func. Count: 25, Neg. LLF: 168.01073245907978
Iteration: 3, Func. Count: 37, Neg. LLF: 183.6526849938279
Iteration: 4, Func. Count: 51, Neg. LLF: 186.90922684743194
Iteration: 5, Func. Count: 64, Neg. LLF: 174.6963521682614
Iteration: 6, Func. Count: 77, Neg. LLF: 169.054466479899
Iteration: 7, Func. Count: 90, Neg. LLF: 167.689122670514
Iteration: 8, Func. Count: 103, Neg. LLF: 170.08140048466268
Iteration: 9, Func. Count: 116, Neg. LLF: 167.29286596059114
Iteration: 10, Func. Count: 128, Neg. LLF: 167.25987749394565
Iteration: 11, Func. Count: 140, Neg. LLF: 167.07377637603196
Iteration: 12, Func. Count: 152, Neg. LLF: 166.78651713582684
Iteration: 13, Func. Count: 164, Neg. LLF: 166.48671528282614
Iteration: 14, Func. Count: 176, Neg. LLF: 167.11395556874328
Iteration: 15, Func. Count: 189, Neg. LLF: 166.1558595631968
Iteration: 16, Func. Count: 201, Neg. LLF: 165.7425803220144
Iteration: 17, Func. Count: 213, Neg. LLF: 165.63046696936243
Iteration: 18, Func. Count: 225, Neg. LLF: 165.6230848135951
Iteration: 19, Func. Count: 237, Neg. LLF: 165.6228531131614
Iteration: 20, Func. Count: 249, Neg. LLF: 165.62272780763405
Iteration: 21, Func. Count: 261, Neg. LLF: 165.62271095565123
Iteration: 22, Func. Count: 272, Neg. LLF: 165.62271093776053
Optimization terminated successfully (Exit mode 0)
Current function value: 165.62271095565123
Iterations: 22
Function evaluations: 272
Gradient evaluations: 22
Iteration: 1, Func. Count: 14, Neg. LLF: 171.18066550715113
Iteration: 2, Func. Count: 28, Neg. LLF: 173.02074979729645
Iteration: 3, Func. Count: 42, Neg. LLF: 169.8553917288754
Iteration: 4, Func. Count: 56, Neg. LLF: 169.79969493589854
Iteration: 5, Func. Count: 70, Neg. LLF: 167.47425224472894
Iteration: 6, Func. Count: 83, Neg. LLF: 170.99017878530742
Iteration: 7, Func. Count: 97, Neg. LLF: 171.26050538796235
Iteration: 8, Func. Count: 112, Neg. LLF: 167.18865597470514
Iteration: 9, Func. Count: 125, Neg. LLF: 167.0748732746226
Iteration: 10, Func. Count: 138, Neg. LLF: 167.04058804307488
Iteration: 11, Func. Count: 151, Neg. LLF: 166.9663377988813
Iteration: 12, Func. Count: 164, Neg. LLF: 166.53278501187674
Iteration: 13, Func. Count: 177, Neg. LLF: 166.08118497335096
Iteration: 14, Func. Count: 190, Neg. LLF: 166.3560272588128
Iteration: 15, Func. Count: 204, Neg. LLF: 167.88280343376897
Iteration: 16, Func. Count: 218, Neg. LLF: 165.65755924564056
Iteration: 17, Func. Count: 231, Neg. LLF: 165.58008331622764
Iteration: 18, Func. Count: 244, Neg. LLF: 165.57489822937444
Iteration: 19, Func. Count: 257, Neg. LLF: 165.57178760866776
Iteration: 20, Func. Count: 270, Neg. LLF: 165.56953374631053
Iteration: 21, Func. Count: 283, Neg. LLF: 165.5677292831062
Iteration: 22, Func. Count: 296, Neg. LLF: 165.56765053445812
Iteration: 23, Func. Count: 309, Neg. LLF: 165.5676371677198
Iteration: 24, Func. Count: 321, Neg. LLF: 165.56763714808756
Optimization terminated successfully (Exit mode 0)
Current function value: 165.5676371677198
Iterations: 24
Function evaluations: 321
Gradient evaluations: 24
Iteration: 1, Func. Count: 7, Neg. LLF: 172.25697453964676
Iteration: 2, Func. Count: 14, Neg. LLF: 174.2621169566776
Iteration: 3, Func. Count: 22, Neg. LLF: 170.02086632554145
Iteration: 4, Func. Count: 28, Neg. LLF: 170.0291761058105
Iteration: 5, Func. Count: 35, Neg. LLF: 169.8228517641325
Iteration: 6, Func. Count: 41, Neg. LLF: 169.6768483916699
Iteration: 7, Func. Count: 47, Neg. LLF: 169.58021710816243
Iteration: 8, Func. Count: 53, Neg. LLF: 168.9470386871091
Iteration: 9, Func. Count: 59, Neg. LLF: 248.85311131735511
Iteration: 10, Func. Count: 66, Neg. LLF: 188.5286277597006
Iteration: 11, Func. Count: 73, Neg. LLF: 192.34507382306535
Iteration: 12, Func. Count: 80, Neg. LLF: 179.4432761150173
Iteration: 13, Func. Count: 87, Neg. LLF: 180.85958481030886
Iteration: 14, Func. Count: 94, Neg. LLF: 169.30132422892078
Iteration: 15, Func. Count: 101, Neg. LLF: 167.16057392982475
Iteration: 16, Func. Count: 108, Neg. LLF: 166.83940286934217
Iteration: 17, Func. Count: 114, Neg. LLF: 166.82474284883736
Iteration: 18, Func. Count: 120, Neg. LLF: 166.82386866453297
Iteration: 19, Func. Count: 126, Neg. LLF: 166.82359310272096
Iteration: 20, Func. Count: 132, Neg. LLF: 166.82310301682625
Iteration: 21, Func. Count: 138, Neg. LLF: 166.82309275999927
Iteration: 22, Func. Count: 143, Neg. LLF: 166.82309275219654
Optimization terminated successfully (Exit mode 0)
Current function value: 166.82309275999927
Iterations: 22
Function evaluations: 143
Gradient evaluations: 22
Iteration: 1, Func. Count: 8, Neg. LLF: 182.4925948287885
Iteration: 2, Func. Count: 16, Neg. LLF: 202.2212817029872
Iteration: 3, Func. Count: 24, Neg. LLF: 167.7279819866813
Iteration: 4, Func. Count: 31, Neg. LLF: 169.20739804703373
Iteration: 5, Func. Count: 39, Neg. LLF: 167.59287793255402
Iteration: 6, Func. Count: 47, Neg. LLF: 166.8950682055188
Iteration: 7, Func. Count: 54, Neg. LLF: 166.86769323412767
Iteration: 8, Func. Count: 61, Neg. LLF: 166.85076562316485
Iteration: 9, Func. Count: 68, Neg. LLF: 166.84613917397195
Iteration: 10, Func. Count: 75, Neg. LLF: 166.83840217208675
Iteration: 11, Func. Count: 82, Neg. LLF: 166.82659076238923
Iteration: 12, Func. Count: 89, Neg. LLF: 166.8234979687534
Iteration: 13, Func. Count: 96, Neg. LLF: 166.82311116366037
Iteration: 14, Func. Count: 103, Neg. LLF: 166.8230930515645
Iteration: 15, Func. Count: 110, Neg. LLF: 166.8230924185229
Optimization terminated successfully (Exit mode 0)
Current function value: 166.8230924185229
Iterations: 15
Function evaluations: 110
Gradient evaluations: 15
Iteration: 1, Func. Count: 9, Neg. LLF: 171.49030360756777
Iteration: 2, Func. Count: 17, Neg. LLF: 169.8703359257363
Iteration: 3, Func. Count: 26, Neg. LLF: 176.19690130424723
Iteration: 4, Func. Count: 35, Neg. LLF: 185.08517739094094
Iteration: 5, Func. Count: 44, Neg. LLF: 168.62054679569337
Iteration: 6, Func. Count: 53, Neg. LLF: 168.1602767569718
Iteration: 7, Func. Count: 62, Neg. LLF: 167.91175738290355
Iteration: 8, Func. Count: 70, Neg. LLF: 167.83756614002758
Iteration: 9, Func. Count: 78, Neg. LLF: 167.67766209542307
Iteration: 10, Func. Count: 86, Neg. LLF: 167.60871229934725
Iteration: 11, Func. Count: 94, Neg. LLF: 167.50341558273087
Iteration: 12, Func. Count: 102, Neg. LLF: 167.40230673044206
Iteration: 13, Func. Count: 110, Neg. LLF: 167.1612222354301
Iteration: 14, Func. Count: 118, Neg. LLF: 166.962664420833
Iteration: 15, Func. Count: 126, Neg. LLF: 166.84201727062697
Iteration: 16, Func. Count: 134, Neg. LLF: 166.83169103192535
Iteration: 17, Func. Count: 142, Neg. LLF: 166.8233717038684
Iteration: 18, Func. Count: 150, Neg. LLF: 166.82309917620296
Iteration: 19, Func. Count: 158, Neg. LLF: 166.82309293828635
Iteration: 20, Func. Count: 165, Neg. LLF: 166.82309303184098
Optimization terminated successfully (Exit mode 0)
Current function value: 166.82309293828635
Iterations: 20
Function evaluations: 165
Gradient evaluations: 20
Iteration: 1, Func. Count: 10, Neg. LLF: 171.4876251426829
Iteration: 2, Func. Count: 19, Neg. LLF: 169.66495491526288
Iteration: 3, Func. Count: 29, Neg. LLF: 176.6542449870379
Iteration: 4, Func. Count: 39, Neg. LLF: 186.54162956612538
Iteration: 5, Func. Count: 49, Neg. LLF: 168.94269777532028
Iteration: 6, Func. Count: 59, Neg. LLF: 168.1923560898151
Iteration: 7, Func. Count: 69, Neg. LLF: 167.92357436898465
Iteration: 8, Func. Count: 78, Neg. LLF: 167.83727733444374
Iteration: 9, Func. Count: 87, Neg. LLF: 167.73112699128657
Iteration: 10, Func. Count: 96, Neg. LLF: 167.59925463855308
Iteration: 11, Func. Count: 105, Neg. LLF: 167.50958318544627
Iteration: 12, Func. Count: 114, Neg. LLF: 167.34176749082758
Iteration: 13, Func. Count: 123, Neg. LLF: 167.2012934064022
Iteration: 14, Func. Count: 132, Neg. LLF: 166.9767839777911
Iteration: 15, Func. Count: 141, Neg. LLF: 166.8378508446009
Iteration: 16, Func. Count: 150, Neg. LLF: 166.8342167995034
Iteration: 17, Func. Count: 160, Neg. LLF: 166.8232337626928
Iteration: 18, Func. Count: 169, Neg. LLF: 166.82310257839742
Iteration: 19, Func. Count: 178, Neg. LLF: 166.82309295147334
Iteration: 20, Func. Count: 187, Neg. LLF: 166.823092412703
Optimization terminated successfully (Exit mode 0)
Current function value: 166.823092412703
Iterations: 20
Function evaluations: 187
Gradient evaluations: 20
Iteration: 1, Func. Count: 11, Neg. LLF: 172.20064572029744
Iteration: 2, Func. Count: 21, Neg. LLF: 171.80019003374676
Iteration: 3, Func. Count: 32, Neg. LLF: 175.5347921636759
Iteration: 4, Func. Count: 43, Neg. LLF: 174.33838915901185
Iteration: 5, Func. Count: 54, Neg. LLF: 170.3494470998353
Iteration: 6, Func. Count: 65, Neg. LLF: 169.8610143257848
Iteration: 7, Func. Count: 75, Neg. LLF: 169.81098350054947
Iteration: 8, Func. Count: 85, Neg. LLF: 169.73028285560963
Iteration: 9, Func. Count: 95, Neg. LLF: 169.29402109105024
Iteration: 10, Func. Count: 105, Neg. LLF: 168.36573208077758
Iteration: 11, Func. Count: 115, Neg. LLF: 167.73988838246976
Iteration: 12, Func. Count: 125, Neg. LLF: 169.0342499381852
Iteration: 13, Func. Count: 136, Neg. LLF: 203.48368576337515
Iteration: 14, Func. Count: 147, Neg. LLF: 169.13808315196647
Iteration: 15, Func. Count: 158, Neg. LLF: 166.91974530422328
Iteration: 16, Func. Count: 169, Neg. LLF: 166.64164030267295
Iteration: 17, Func. Count: 179, Neg. LLF: 166.64303632392281
Iteration: 18, Func. Count: 190, Neg. LLF: 166.62741888726455
Iteration: 19, Func. Count: 200, Neg. LLF: 166.6272420110626
Iteration: 20, Func. Count: 210, Neg. LLF: 166.6272077776618
Iteration: 21, Func. Count: 219, Neg. LLF: 166.62720776399578
Optimization terminated successfully (Exit mode 0)
Current function value: 166.6272077776618
Iterations: 21
Function evaluations: 219
Gradient evaluations: 21
Iteration: 1, Func. Count: 8, Neg. LLF: 172.21452512727606
Iteration: 2, Func. Count: 16, Neg. LLF: 173.4142978022671
Iteration: 3, Func. Count: 25, Neg. LLF: 170.11679889995463
Iteration: 4, Func. Count: 32, Neg. LLF: 170.3968912395648
Iteration: 5, Func. Count: 40, Neg. LLF: 169.98365787084657
Iteration: 6, Func. Count: 48, Neg. LLF: 169.68244251100054
Iteration: 7, Func. Count: 55, Neg. LLF: 169.5431361805874
Iteration: 8, Func. Count: 62, Neg. LLF: 169.38737422056883
Iteration: 9, Func. Count: 69, Neg. LLF: 168.79253444201473
Iteration: 10, Func. Count: 76, Neg. LLF: 168.1372405762797
Iteration: 11, Func. Count: 83, Neg. LLF: 167.18603595474883
Iteration: 12, Func. Count: 90, Neg. LLF: 166.6309306892121
Iteration: 13, Func. Count: 97, Neg. LLF: 166.48308374856762
Iteration: 14, Func. Count: 104, Neg. LLF: 166.3543720293813
Iteration: 15, Func. Count: 111, Neg. LLF: 166.35361177079372
Iteration: 16, Func. Count: 119, Neg. LLF: 166.20311939817907
Iteration: 17, Func. Count: 126, Neg. LLF: 166.1979072001767
Iteration: 18, Func. Count: 133, Neg. LLF: 166.19775459858522
Iteration: 19, Func. Count: 140, Neg. LLF: 166.19775160998856
Iteration: 20, Func. Count: 146, Neg. LLF: 166.1977516061572
Optimization terminated successfully (Exit mode 0)
Current function value: 166.19775160998856
Iterations: 20
Function evaluations: 146
Gradient evaluations: 20
Iteration: 1, Func. Count: 9, Neg. LLF: 182.29576996336985
Iteration: 2, Func. Count: 18, Neg. LLF: 187.08489504832863
Iteration: 3, Func. Count: 27, Neg. LLF: 186.80394334749784
Iteration: 4, Func. Count: 36, Neg. LLF: 183.805623239803
Iteration: 5, Func. Count: 45, Neg. LLF: 169.5470129995749
Iteration: 6, Func. Count: 54, Neg. LLF: 183.97402897815266
Iteration: 7, Func. Count: 63, Neg. LLF: 166.5268827742399
Iteration: 8, Func. Count: 71, Neg. LLF: 166.25874263497312
Iteration: 9, Func. Count: 79, Neg. LLF: 166.2343388892764
Iteration: 10, Func. Count: 87, Neg. LLF: 166.22601925744806
Iteration: 11, Func. Count: 95, Neg. LLF: 166.22118107153327
Iteration: 12, Func. Count: 103, Neg. LLF: 166.20873081440632
Iteration: 13, Func. Count: 111, Neg. LLF: 166.20003313545794
Iteration: 14, Func. Count: 119, Neg. LLF: 166.19795399908392
Iteration: 15, Func. Count: 127, Neg. LLF: 166.1977558614664
Iteration: 16, Func. Count: 135, Neg. LLF: 166.19775154727205
Iteration: 17, Func. Count: 142, Neg. LLF: 166.19775156648043
Optimization terminated successfully (Exit mode 0)
Current function value: 166.19775154727205
Iterations: 17
Function evaluations: 142
Gradient evaluations: 17
Iteration: 1, Func. Count: 10, Neg. LLF: 171.49453684656012
Iteration: 2, Func. Count: 20, Neg. LLF: 171.53191745296326
Iteration: 3, Func. Count: 30, Neg. LLF: 191.73053928296233
Iteration: 4, Func. Count: 40, Neg. LLF: 170.1147974300108
Iteration: 5, Func. Count: 50, Neg. LLF: 167.5133115392715
Iteration: 6, Func. Count: 59, Neg. LLF: 167.5114796514392
Iteration: 7, Func. Count: 69, Neg. LLF: 167.3961756511904
Iteration: 8, Func. Count: 78, Neg. LLF: 166.97970880686142
Iteration: 9, Func. Count: 87, Neg. LLF: 173.57898418796844
Iteration: 10, Func. Count: 97, Neg. LLF: 167.66220554423717
Iteration: 11, Func. Count: 107, Neg. LLF: 166.31766280808344
Iteration: 12, Func. Count: 116, Neg. LLF: 166.20774215189277
Iteration: 13, Func. Count: 125, Neg. LLF: 166.19810038215098
Iteration: 14, Func. Count: 134, Neg. LLF: 166.1977712717787
Iteration: 15, Func. Count: 143, Neg. LLF: 166.19775778856243
Iteration: 16, Func. Count: 152, Neg. LLF: 166.19775145289663
Iteration: 17, Func. Count: 160, Neg. LLF: 166.19775158070843
Optimization terminated successfully (Exit mode 0)
Current function value: 166.19775145289663
Iterations: 17
Function evaluations: 160
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 171.48985625679953
Iteration: 2, Func. Count: 21, Neg. LLF: 168.24095508386665
Iteration: 3, Func. Count: 32, Neg. LLF: 175.17822326163218
Iteration: 4, Func. Count: 43, Neg. LLF: 189.20574783105974
Iteration: 5, Func. Count: 54, Neg. LLF: 167.72563854020785
Iteration: 6, Func. Count: 65, Neg. LLF: 167.7156921338783
Iteration: 7, Func. Count: 76, Neg. LLF: 167.48571192354842
Iteration: 8, Func. Count: 86, Neg. LLF: 167.19914803461026
Iteration: 9, Func. Count: 96, Neg. LLF: 166.39241981343594
Iteration: 10, Func. Count: 106, Neg. LLF: 166.29911996689412
Iteration: 11, Func. Count: 116, Neg. LLF: 166.2700733735451
Iteration: 12, Func. Count: 126, Neg. LLF: 166.254240216577
Iteration: 13, Func. Count: 136, Neg. LLF: 166.26264710324784
Iteration: 14, Func. Count: 147, Neg. LLF: 166.1981092488369
Iteration: 15, Func. Count: 157, Neg. LLF: 166.19555989578672
Iteration: 16, Func. Count: 167, Neg. LLF: 166.19304414703228
Iteration: 17, Func. Count: 177, Neg. LLF: 166.1930230664615
Iteration: 18, Func. Count: 187, Neg. LLF: 166.19302251501813
Optimization terminated successfully (Exit mode 0)
Current function value: 166.19302251501813
Iterations: 18
Function evaluations: 187
Gradient evaluations: 18
Iteration: 1, Func. Count: 12, Neg. LLF: 171.48825635909506
Iteration: 2, Func. Count: 23, Neg. LLF: 168.26691542761114
Iteration: 3, Func. Count: 36, Neg. LLF: 187.44071698162008
Iteration: 4, Func. Count: 50, Neg. LLF: 194.5201316378521
Iteration: 5, Func. Count: 62, Neg. LLF: 168.08829191537993
Iteration: 6, Func. Count: 74, Neg. LLF: 167.66629138493496
Iteration: 7, Func. Count: 86, Neg. LLF: 167.37688339116158
Iteration: 8, Func. Count: 97, Neg. LLF: 167.31009510328326
Iteration: 9, Func. Count: 108, Neg. LLF: 167.00068241586948
Iteration: 10, Func. Count: 119, Neg. LLF: 166.44271172864777
Iteration: 11, Func. Count: 130, Neg. LLF: 172.42278192251402
Iteration: 12, Func. Count: 142, Neg. LLF: 166.80301333034203
Iteration: 13, Func. Count: 154, Neg. LLF: 166.23080792247458
Iteration: 14, Func. Count: 165, Neg. LLF: 166.19270605876585
Iteration: 15, Func. Count: 176, Neg. LLF: 166.1471346556436
Iteration: 16, Func. Count: 187, Neg. LLF: 165.96964654766214
Iteration: 17, Func. Count: 198, Neg. LLF: 165.9009285174228
Iteration: 18, Func. Count: 209, Neg. LLF: 165.88141180983885
Iteration: 19, Func. Count: 220, Neg. LLF: 165.88026914780923
Iteration: 20, Func. Count: 231, Neg. LLF: 165.88022325277413
Iteration: 21, Func. Count: 242, Neg. LLF: 165.88016845124267
Iteration: 22, Func. Count: 252, Neg. LLF: 165.880168432971
Optimization terminated successfully (Exit mode 0)
Current function value: 165.88016845124267
Iterations: 22
Function evaluations: 252
Gradient evaluations: 22
Iteration: 1, Func. Count: 9, Neg. LLF: 172.62068924879497
Iteration: 2, Func. Count: 18, Neg. LLF: 171.61745777779635
Iteration: 3, Func. Count: 27, Neg. LLF: 170.67512156329997
Iteration: 4, Func. Count: 36, Neg. LLF: 170.08648828771612
Iteration: 5, Func. Count: 45, Neg. LLF: 169.88243095233972
Iteration: 6, Func. Count: 54, Neg. LLF: 170.03360242295162
Iteration: 7, Func. Count: 63, Neg. LLF: 169.5704091721536
Iteration: 8, Func. Count: 71, Neg. LLF: 169.43463561734842
Iteration: 9, Func. Count: 79, Neg. LLF: 169.17773647440083
Iteration: 10, Func. Count: 87, Neg. LLF: 167.53219956683955
Iteration: 11, Func. Count: 95, Neg. LLF: 184.36979097984408
Iteration: 12, Func. Count: 104, Neg. LLF: 176.56539058368375
Iteration: 13, Func. Count: 113, Neg. LLF: 166.70630942617353
Iteration: 14, Func. Count: 122, Neg. LLF: 165.83442441015865
Iteration: 15, Func. Count: 130, Neg. LLF: 165.82518692034452
Iteration: 16, Func. Count: 138, Neg. LLF: 165.82304043571048
Iteration: 17, Func. Count: 146, Neg. LLF: 165.82305672260577
Iteration: 18, Func. Count: 155, Neg. LLF: 165.82301785442434
Iteration: 19, Func. Count: 162, Neg. LLF: 165.82301785785762
Optimization terminated successfully (Exit mode 0)
Current function value: 165.82301785442434
Iterations: 19
Function evaluations: 162
Gradient evaluations: 19
Iteration: 1, Func. Count: 10, Neg. LLF: 192.5227446198571
Iteration: 2, Func. Count: 20, Neg. LLF: 181.89118149147703
Iteration: 3, Func. Count: 30, Neg. LLF: 195.16904507455496
Iteration: 4, Func. Count: 40, Neg. LLF: 171.58321566000996
Iteration: 5, Func. Count: 50, Neg. LLF: 180.06522132847067
Iteration: 6, Func. Count: 60, Neg. LLF: 168.4030499613133
Iteration: 7, Func. Count: 70, Neg. LLF: 166.16450249536243
Iteration: 8, Func. Count: 79, Neg. LLF: 165.95128301377915
Iteration: 9, Func. Count: 88, Neg. LLF: 165.90614711602998
Iteration: 10, Func. Count: 97, Neg. LLF: 165.8519803017633
Iteration: 11, Func. Count: 106, Neg. LLF: 165.8434650660816
Iteration: 12, Func. Count: 115, Neg. LLF: 165.83944829084658
Iteration: 13, Func. Count: 124, Neg. LLF: 165.82922355557162
Iteration: 14, Func. Count: 133, Neg. LLF: 165.82585755044124
Iteration: 15, Func. Count: 142, Neg. LLF: 165.82337056296532
Iteration: 16, Func. Count: 151, Neg. LLF: 165.82304220000844
Iteration: 17, Func. Count: 160, Neg. LLF: 165.82301858174515
Iteration: 18, Func. Count: 169, Neg. LLF: 165.82301782854827
Optimization terminated successfully (Exit mode 0)
Current function value: 165.82301782854827
Iterations: 18
Function evaluations: 169
Gradient evaluations: 18
Iteration: 1, Func. Count: 11, Neg. LLF: 194.8346423053566
Iteration: 2, Func. Count: 22, Neg. LLF: 167.6150468113838
Iteration: 3, Func. Count: 32, Neg. LLF: 167.95619776971952
Iteration: 4, Func. Count: 43, Neg. LLF: 173.09130333687793
Iteration: 5, Func. Count: 54, Neg. LLF: 167.44149030848897
Iteration: 6, Func. Count: 65, Neg. LLF: 168.33575300745986
Iteration: 7, Func. Count: 76, Neg. LLF: 168.2157789030881
Iteration: 8, Func. Count: 87, Neg. LLF: 167.1772082434216
Iteration: 9, Func. Count: 97, Neg. LLF: 167.07571779584765
Iteration: 10, Func. Count: 107, Neg. LLF: 166.4163413048359
Iteration: 11, Func. Count: 117, Neg. LLF: 166.59254314311593
Iteration: 12, Func. Count: 128, Neg. LLF: 165.84361155713967
Iteration: 13, Func. Count: 138, Neg. LLF: 165.82805474377872
Iteration: 14, Func. Count: 148, Neg. LLF: 165.8230623971986
Iteration: 15, Func. Count: 158, Neg. LLF: 165.8230180760641
Iteration: 16, Func. Count: 167, Neg. LLF: 165.82301823169067
Optimization terminated successfully (Exit mode 0)
Current function value: 165.8230180760641
Iterations: 16
Function evaluations: 167
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 194.81333806591562
Iteration: 2, Func. Count: 24, Neg. LLF: 170.96348136412
Iteration: 3, Func. Count: 36, Neg. LLF: 167.96533493078175
Iteration: 4, Func. Count: 47, Neg. LLF: 175.81024075834102
Iteration: 5, Func. Count: 60, Neg. LLF: 174.9262989072872
Iteration: 6, Func. Count: 72, Neg. LLF: 170.89461397894377
Iteration: 7, Func. Count: 84, Neg. LLF: 169.17855310782832
Iteration: 8, Func. Count: 96, Neg. LLF: 168.72644978723267
Iteration: 9, Func. Count: 108, Neg. LLF: 168.40394299301929
Iteration: 10, Func. Count: 120, Neg. LLF: 167.35145198606645
Iteration: 11, Func. Count: 132, Neg. LLF: 167.13022795925622
Iteration: 12, Func. Count: 143, Neg. LLF: 166.96847695692946
Iteration: 13, Func. Count: 154, Neg. LLF: 166.5313709419165
Iteration: 14, Func. Count: 165, Neg. LLF: 166.1525930363509
Iteration: 15, Func. Count: 176, Neg. LLF: 166.00288185489978
Iteration: 16, Func. Count: 187, Neg. LLF: 165.92081401986758
Iteration: 17, Func. Count: 198, Neg. LLF: 170.87444774720848
Iteration: 18, Func. Count: 210, Neg. LLF: 166.12686179261306
Iteration: 19, Func. Count: 222, Neg. LLF: 165.71537352031285
Iteration: 20, Func. Count: 233, Neg. LLF: 165.65765570677382
Iteration: 21, Func. Count: 244, Neg. LLF: 165.62375632634846
Iteration: 22, Func. Count: 255, Neg. LLF: 165.62278608105683
Iteration: 23, Func. Count: 266, Neg. LLF: 165.62273534869772
Iteration: 24, Func. Count: 277, Neg. LLF: 165.6227107771332
Iteration: 25, Func. Count: 288, Neg. LLF: 165.6227104245291
Optimization terminated successfully (Exit mode 0)
Current function value: 165.6227104245291
Iterations: 25
Function evaluations: 288
Gradient evaluations: 25
Iteration: 1, Func. Count: 13, Neg. LLF: 194.79774849031838
Iteration: 2, Func. Count: 26, Neg. LLF: 167.76197129239162
Iteration: 3, Func. Count: 38, Neg. LLF: 168.7919507081064
Iteration: 4, Func. Count: 52, Neg. LLF: 192.53886587918103
Iteration: 5, Func. Count: 65, Neg. LLF: 191.23200313075458
Iteration: 6, Func. Count: 78, Neg. LLF: 167.26404915620398
Iteration: 7, Func. Count: 90, Neg. LLF: 167.85099199798404
Iteration: 8, Func. Count: 103, Neg. LLF: 167.47243361495836
Iteration: 9, Func. Count: 116, Neg. LLF: 167.0609293411122
Iteration: 10, Func. Count: 128, Neg. LLF: 166.8515520809902
Iteration: 11, Func. Count: 140, Neg. LLF: 166.51469769087979
Iteration: 12, Func. Count: 152, Neg. LLF: 165.8389950045517
Iteration: 13, Func. Count: 164, Neg. LLF: 165.3075400518387
Iteration: 14, Func. Count: 176, Neg. LLF: 165.59789709172796
Iteration: 15, Func. Count: 189, Neg. LLF: 165.58170324259075
Iteration: 16, Func. Count: 202, Neg. LLF: 165.08497039769657
Iteration: 17, Func. Count: 214, Neg. LLF: 165.06391672698106
Iteration: 18, Func. Count: 226, Neg. LLF: 165.06134038225002
Iteration: 19, Func. Count: 238, Neg. LLF: 165.0588789948552
Iteration: 20, Func. Count: 250, Neg. LLF: 165.05856168114593
Iteration: 21, Func. Count: 262, Neg. LLF: 165.05852098955643
Iteration: 22, Func. Count: 273, Neg. LLF: 165.05852098003112
Optimization terminated successfully (Exit mode 0)
Current function value: 165.05852098955643
Iterations: 22
Function evaluations: 273
Gradient evaluations: 22
Iteration: 1, Func. Count: 10, Neg. LLF: 171.1893099368857
Iteration: 2, Func. Count: 20, Neg. LLF: 169.16889724434412
Iteration: 3, Func. Count: 29, Neg. LLF: 184.829725944636
Iteration: 4, Func. Count: 40, Neg. LLF: 174.47941356868466
Iteration: 5, Func. Count: 50, Neg. LLF: 168.9969168284758
Iteration: 6, Func. Count: 60, Neg. LLF: 169.08361033671653
Iteration: 7, Func. Count: 70, Neg. LLF: 168.80999176019134
Iteration: 8, Func. Count: 79, Neg. LLF: 168.75187629681312
Iteration: 9, Func. Count: 88, Neg. LLF: 168.72006323669135
Iteration: 10, Func. Count: 97, Neg. LLF: 168.59605302954736
Iteration: 11, Func. Count: 106, Neg. LLF: 168.32337137432364
Iteration: 12, Func. Count: 115, Neg. LLF: 167.83992049172005
Iteration: 13, Func. Count: 124, Neg. LLF: 167.13442594735767
Iteration: 14, Func. Count: 133, Neg. LLF: 166.40304075854445
Iteration: 15, Func. Count: 142, Neg. LLF: 166.22744619797552
Iteration: 16, Func. Count: 151, Neg. LLF: 166.08845383999895
Iteration: 17, Func. Count: 160, Neg. LLF: 165.96040072884043
Iteration: 18, Func. Count: 169, Neg. LLF: 165.52364020019226
Iteration: 19, Func. Count: 178, Neg. LLF: 165.45846992536954
Iteration: 20, Func. Count: 187, Neg. LLF: 165.44417709160936
Iteration: 21, Func. Count: 196, Neg. LLF: 165.4423872150397
Iteration: 22, Func. Count: 205, Neg. LLF: 165.4414021986079
Iteration: 23, Func. Count: 214, Neg. LLF: 165.4403125601952
Iteration: 24, Func. Count: 223, Neg. LLF: 165.44029422517963
Iteration: 25, Func. Count: 232, Neg. LLF: 165.4402926355011
Iteration: 26, Func. Count: 240, Neg. LLF: 165.4402925594136
Optimization terminated successfully (Exit mode 0)
Current function value: 165.4402926355011
Iterations: 26
Function evaluations: 240
Gradient evaluations: 26
Iteration: 1, Func. Count: 11, Neg. LLF: 279.98081524520404
Iteration: 2, Func. Count: 22, Neg. LLF: 181.86236903274414
Iteration: 3, Func. Count: 33, Neg. LLF: 191.2882619995791
Iteration: 4, Func. Count: 44, Neg. LLF: 171.65690494031975
Iteration: 5, Func. Count: 55, Neg. LLF: 169.69285987230123
Iteration: 6, Func. Count: 66, Neg. LLF: 170.77932033792928
Iteration: 7, Func. Count: 77, Neg. LLF: 165.53463670761982
Iteration: 8, Func. Count: 87, Neg. LLF: 165.5083400305774
Iteration: 9, Func. Count: 97, Neg. LLF: 165.44282707437537
Iteration: 10, Func. Count: 107, Neg. LLF: 165.44055993586815
Iteration: 11, Func. Count: 117, Neg. LLF: 165.44031912149848
Iteration: 12, Func. Count: 127, Neg. LLF: 165.4403061260466
Iteration: 13, Func. Count: 137, Neg. LLF: 165.44030305453018
Iteration: 14, Func. Count: 147, Neg. LLF: 165.44029979074213
Iteration: 15, Func. Count: 157, Neg. LLF: 165.4402949587473
Iteration: 16, Func. Count: 167, Neg. LLF: 165.44029270347022
Iteration: 17, Func. Count: 176, Neg. LLF: 165.44029276857913
Optimization terminated successfully (Exit mode 0)
Current function value: 165.44029270347022
Iterations: 17
Function evaluations: 176
Gradient evaluations: 17
Iteration: 1, Func. Count: 12, Neg. LLF: 194.83231835117505
Iteration: 2, Func. Count: 24, Neg. LLF: 170.4742721682143
Iteration: 3, Func. Count: 36, Neg. LLF: 168.19056282033094
Iteration: 4, Func. Count: 47, Neg. LLF: 175.16446946311282
Iteration: 5, Func. Count: 59, Neg. LLF: 192.4468795632738
Iteration: 6, Func. Count: 71, Neg. LLF: 169.43633579176483
Iteration: 7, Func. Count: 83, Neg. LLF: 192.68794863548314
Iteration: 8, Func. Count: 95, Neg. LLF: 167.09732653901787
Iteration: 9, Func. Count: 106, Neg. LLF: 167.02597803923376
Iteration: 10, Func. Count: 117, Neg. LLF: 167.00038303224224
Iteration: 11, Func. Count: 128, Neg. LLF: 166.93636221815103
Iteration: 12, Func. Count: 139, Neg. LLF: 166.84794976562873
Iteration: 13, Func. Count: 150, Neg. LLF: 166.68135320409144
Iteration: 14, Func. Count: 161, Neg. LLF: 166.42825325037583
Iteration: 15, Func. Count: 172, Neg. LLF: 166.21085290053122
Iteration: 16, Func. Count: 183, Neg. LLF: 166.0894346486566
Iteration: 17, Func. Count: 194, Neg. LLF: 166.01364210413303
Iteration: 18, Func. Count: 205, Neg. LLF: 165.50408495661188
Iteration: 19, Func. Count: 216, Neg. LLF: 165.5263842488171
Iteration: 20, Func. Count: 228, Neg. LLF: 165.45054943831244
Iteration: 21, Func. Count: 239, Neg. LLF: 165.4451596172487
Iteration: 22, Func. Count: 250, Neg. LLF: 165.4420482151303
Iteration: 23, Func. Count: 261, Neg. LLF: 165.44046388329159
Iteration: 24, Func. Count: 272, Neg. LLF: 165.44030514710747
Iteration: 25, Func. Count: 283, Neg. LLF: 165.44029430655584
Iteration: 26, Func. Count: 294, Neg. LLF: 165.44029212310735
Iteration: 27, Func. Count: 305, Neg. LLF: 165.4402899609163
Optimization terminated successfully (Exit mode 0)
Current function value: 165.44029212111118
Iterations: 27
Function evaluations: 315
Gradient evaluations: 27
Iteration: 1, Func. Count: 13, Neg. LLF: 194.8166788183992
Iteration: 2, Func. Count: 26, Neg. LLF: 171.4529152962635
Iteration: 3, Func. Count: 39, Neg. LLF: 168.253801093684
Iteration: 4, Func. Count: 51, Neg. LLF: 176.48033334251505
Iteration: 5, Func. Count: 65, Neg. LLF: 192.63900619625184
Iteration: 6, Func. Count: 78, Neg. LLF: 169.44207559616572
Iteration: 7, Func. Count: 91, Neg. LLF: 193.41740020531654
Iteration: 8, Func. Count: 104, Neg. LLF: 167.07194421775995
Iteration: 9, Func. Count: 116, Neg. LLF: 167.05842945300424
Iteration: 10, Func. Count: 129, Neg. LLF: 167.01264946467597
Iteration: 11, Func. Count: 141, Neg. LLF: 166.97802904389968
Iteration: 12, Func. Count: 153, Neg. LLF: 166.78645924783993
Iteration: 13, Func. Count: 165, Neg. LLF: 166.49174170604522
Iteration: 14, Func. Count: 177, Neg. LLF: 166.14237329665173
Iteration: 15, Func. Count: 189, Neg. LLF: 168.06708973082712
Iteration: 16, Func. Count: 202, Neg. LLF: 165.76293838494578
Iteration: 17, Func. Count: 214, Neg. LLF: 166.3026362815856
Iteration: 18, Func. Count: 227, Neg. LLF: 165.4969101229479
Iteration: 19, Func. Count: 239, Neg. LLF: 165.44351961638398
Iteration: 20, Func. Count: 251, Neg. LLF: 165.4194257536488
Iteration: 21, Func. Count: 263, Neg. LLF: 165.41581901897447
Iteration: 22, Func. Count: 275, Neg. LLF: 165.41439591404543
Iteration: 23, Func. Count: 287, Neg. LLF: 165.41399331209158
Iteration: 24, Func. Count: 299, Neg. LLF: 165.41382870288936
Iteration: 25, Func. Count: 311, Neg. LLF: 165.4138208932364
Iteration: 26, Func. Count: 323, Neg. LLF: 165.4138193063585
Iteration: 27, Func. Count: 335, Neg. LLF: 165.4138165611375
Iteration: 28, Func. Count: 347, Neg. LLF: 165.41381593319397
Optimization terminated successfully (Exit mode 0)
Current function value: 165.41381593319397
Iterations: 28
Function evaluations: 347
Gradient evaluations: 28
Iteration: 1, Func. Count: 14, Neg. LLF: 194.80165746147026
Iteration: 2, Func. Count: 28, Neg. LLF: 171.08496964913707
Iteration: 3, Func. Count: 42, Neg. LLF: 168.18550151634244
Iteration: 4, Func. Count: 55, Neg. LLF: 176.57956660938655
Iteration: 5, Func. Count: 70, Neg. LLF: 195.66824374589612
Iteration: 6, Func. Count: 84, Neg. LLF: 170.4411670790113
Iteration: 7, Func. Count: 98, Neg. LLF: 182.10246762558953
Iteration: 8, Func. Count: 112, Neg. LLF: 167.05768525420208
Iteration: 9, Func. Count: 125, Neg. LLF: 167.3404883484164
Iteration: 10, Func. Count: 139, Neg. LLF: 167.3856406318402
Iteration: 11, Func. Count: 153, Neg. LLF: 167.0173946701074
Iteration: 12, Func. Count: 167, Neg. LLF: 166.93114700207838
Iteration: 13, Func. Count: 180, Neg. LLF: 166.6719066783642
Iteration: 14, Func. Count: 193, Neg. LLF: 165.93470774500443
Iteration: 15, Func. Count: 206, Neg. LLF: 165.69275893236994
Iteration: 16, Func. Count: 219, Neg. LLF: 165.34583179281873
Iteration: 17, Func. Count: 232, Neg. LLF: 166.6075814417491
Iteration: 18, Func. Count: 246, Neg. LLF: 165.2042120267278
Iteration: 19, Func. Count: 259, Neg. LLF: 165.11922831643167
Iteration: 20, Func. Count: 272, Neg. LLF: 165.0971747703967
Iteration: 21, Func. Count: 285, Neg. LLF: 165.08074848147535
Iteration: 22, Func. Count: 298, Neg. LLF: 165.06790998148955
Iteration: 23, Func. Count: 311, Neg. LLF: 165.05916573406785
Iteration: 24, Func. Count: 324, Neg. LLF: 165.05854919834263
Iteration: 25, Func. Count: 337, Neg. LLF: 165.05852120340563
Iteration: 26, Func. Count: 350, Neg. LLF: 165.0585196936956
Iteration: 27, Func. Count: 363, Neg. LLF: 165.05885251580497
Optimization terminated successfully (Exit mode 0)
Current function value: 165.05851969036948
Iterations: 28
Function evaluations: 366
Gradient evaluations: 27
Iteration: 1, Func. Count: 11, Neg. LLF: 171.22903447543533
Iteration: 2, Func. Count: 22, Neg. LLF: 169.10450148109393
Iteration: 3, Func. Count: 32, Neg. LLF: 208.7213281507128
Iteration: 4, Func. Count: 44, Neg. LLF: 169.46817040809782
Iteration: 5, Func. Count: 55, Neg. LLF: 169.20583010179536
Iteration: 6, Func. Count: 66, Neg. LLF: 168.84440235293036
Iteration: 7, Func. Count: 76, Neg. LLF: 168.973153187993
Iteration: 8, Func. Count: 87, Neg. LLF: 168.73635874785975
Iteration: 9, Func. Count: 97, Neg. LLF: 168.66693796289374
Iteration: 10, Func. Count: 107, Neg. LLF: 168.44411233441178
Iteration: 11, Func. Count: 117, Neg. LLF: 168.0934254034413
Iteration: 12, Func. Count: 127, Neg. LLF: 167.23330721681447
Iteration: 13, Func. Count: 137, Neg. LLF: 166.47945190249294
Iteration: 14, Func. Count: 147, Neg. LLF: 166.44656604715556
Iteration: 15, Func. Count: 158, Neg. LLF: 166.02420213102886
Iteration: 16, Func. Count: 168, Neg. LLF: 169.29608254730192
Iteration: 17, Func. Count: 179, Neg. LLF: 165.63985133329496
Iteration: 18, Func. Count: 189, Neg. LLF: 165.63690743165213
Iteration: 19, Func. Count: 200, Neg. LLF: 165.50132053686605
Iteration: 20, Func. Count: 210, Neg. LLF: 165.47768933281085
Iteration: 21, Func. Count: 220, Neg. LLF: 165.45836700909936
Iteration: 22, Func. Count: 230, Neg. LLF: 165.4479724733789
Iteration: 23, Func. Count: 240, Neg. LLF: 165.44233363434023
Iteration: 24, Func. Count: 250, Neg. LLF: 165.44041617855257
Iteration: 25, Func. Count: 260, Neg. LLF: 165.44029802429787
Iteration: 26, Func. Count: 270, Neg. LLF: 165.440292379836
Iteration: 27, Func. Count: 279, Neg. LLF: 165.44029246368262
Optimization terminated successfully (Exit mode 0)
Current function value: 165.440292379836
Iterations: 27
Function evaluations: 279
Gradient evaluations: 27
Iteration: 1, Func. Count: 12, Neg. LLF: 279.109188411004
Iteration: 2, Func. Count: 24, Neg. LLF: 182.07797870368825
Iteration: 3, Func. Count: 36, Neg. LLF: 176.5613558440502
Iteration: 4, Func. Count: 48, Neg. LLF: 170.2948706417196
Iteration: 5, Func. Count: 60, Neg. LLF: 170.39819696163607
Iteration: 6, Func. Count: 72, Neg. LLF: 167.24332878121024
Iteration: 7, Func. Count: 84, Neg. LLF: 165.48301967299545
Iteration: 8, Func. Count: 95, Neg. LLF: 165.47353405620424
Iteration: 9, Func. Count: 107, Neg. LLF: 165.44182909270535
Iteration: 10, Func. Count: 118, Neg. LLF: 165.440820508741
Iteration: 11, Func. Count: 129, Neg. LLF: 165.4403336307278
Iteration: 12, Func. Count: 140, Neg. LLF: 165.44030622146332
Iteration: 13, Func. Count: 151, Neg. LLF: 165.44030212074102
Iteration: 14, Func. Count: 162, Neg. LLF: 165.4403001439311
Iteration: 15, Func. Count: 173, Neg. LLF: 165.44029577070563
Iteration: 16, Func. Count: 184, Neg. LLF: 165.44029314269994
Iteration: 17, Func. Count: 195, Neg. LLF: 165.4402922936819
Optimization terminated successfully (Exit mode 0)
Current function value: 165.4402922936819
Iterations: 17
Function evaluations: 195
Gradient evaluations: 17
Iteration: 1, Func. Count: 13, Neg. LLF: 194.7999386479295
Iteration: 2, Func. Count: 26, Neg. LLF: 171.86539105255946
Iteration: 3, Func. Count: 39, Neg. LLF: 168.24261678012263
Iteration: 4, Func. Count: 51, Neg. LLF: 174.84077588226407
Iteration: 5, Func. Count: 64, Neg. LLF: 192.04215757504312
Iteration: 6, Func. Count: 77, Neg. LLF: 168.76818220558442
Iteration: 7, Func. Count: 90, Neg. LLF: 192.4190955982448
Iteration: 8, Func. Count: 103, Neg. LLF: 167.16366360016872
Iteration: 9, Func. Count: 115, Neg. LLF: 167.05614447440917
Iteration: 10, Func. Count: 127, Neg. LLF: 167.02519383814698
Iteration: 11, Func. Count: 139, Neg. LLF: 166.97529605852435
Iteration: 12, Func. Count: 151, Neg. LLF: 166.92006596063487
Iteration: 13, Func. Count: 163, Neg. LLF: 166.85153282457418
Iteration: 14, Func. Count: 175, Neg. LLF: 166.5775445069619
Iteration: 15, Func. Count: 187, Neg. LLF: 166.35232698998684
Iteration: 16, Func. Count: 199, Neg. LLF: 166.10057540830886
Iteration: 17, Func. Count: 211, Neg. LLF: 166.01402395871511
Iteration: 18, Func. Count: 223, Neg. LLF: 165.79641246560877
Iteration: 19, Func. Count: 235, Neg. LLF: 167.18135028866794
Iteration: 20, Func. Count: 248, Neg. LLF: 165.53152101473995
Iteration: 21, Func. Count: 260, Neg. LLF: 165.4921643473625
Iteration: 22, Func. Count: 272, Neg. LLF: 165.44280652487348
Iteration: 23, Func. Count: 284, Neg. LLF: 165.44062318553176
Iteration: 24, Func. Count: 296, Neg. LLF: 165.44032304699923
Iteration: 25, Func. Count: 308, Neg. LLF: 165.4402941071721
Iteration: 26, Func. Count: 320, Neg. LLF: 165.4402908543887
Iteration: 27, Func. Count: 332, Neg. LLF: 165.44029281699892
Optimization terminated successfully (Exit mode 0)
Current function value: 165.44029099224616
Iterations: 28
Function evaluations: 333
Gradient evaluations: 27
Iteration: 1, Func. Count: 14, Neg. LLF: 194.77992599581813
Iteration: 2, Func. Count: 28, Neg. LLF: 171.94307654810666
Iteration: 3, Func. Count: 42, Neg. LLF: 168.35422616430267
Iteration: 4, Func. Count: 55, Neg. LLF: 175.65315962873524
Iteration: 5, Func. Count: 70, Neg. LLF: 170.77833925841313
Iteration: 6, Func. Count: 84, Neg. LLF: 167.81720780719186
Iteration: 7, Func. Count: 98, Neg. LLF: 192.37305264253436
Iteration: 8, Func. Count: 112, Neg. LLF: 167.0433034199904
Iteration: 9, Func. Count: 125, Neg. LLF: 167.01918460935906
Iteration: 10, Func. Count: 138, Neg. LLF: 166.94702501046996
Iteration: 11, Func. Count: 151, Neg. LLF: 166.615178549923
Iteration: 12, Func. Count: 164, Neg. LLF: 166.3753704299693
Iteration: 13, Func. Count: 177, Neg. LLF: 166.09123196168156
Iteration: 14, Func. Count: 190, Neg. LLF: 166.19116633865463
Iteration: 15, Func. Count: 204, Neg. LLF: 165.98069065879767
Iteration: 16, Func. Count: 217, Neg. LLF: 165.78073378166644
Iteration: 17, Func. Count: 230, Neg. LLF: 165.67622065868704
Iteration: 18, Func. Count: 243, Neg. LLF: 165.52820186105305
Iteration: 19, Func. Count: 256, Neg. LLF: 165.49107974565464
Iteration: 20, Func. Count: 269, Neg. LLF: 165.47873803384203
Iteration: 21, Func. Count: 282, Neg. LLF: 165.47151680080717
Iteration: 22, Func. Count: 295, Neg. LLF: 165.44592271768445
Iteration: 23, Func. Count: 308, Neg. LLF: 165.42692171884156
Iteration: 24, Func. Count: 321, Neg. LLF: 165.41802272933836
Iteration: 25, Func. Count: 334, Neg. LLF: 165.4142765773373
Iteration: 26, Func. Count: 347, Neg. LLF: 165.41333402746744
Iteration: 27, Func. Count: 360, Neg. LLF: 165.4130578584215
Iteration: 28, Func. Count: 383, Neg. LLF: 165.41366049904528
Iteration: 29, Func. Count: 399, Neg. LLF: 165.4134623102771
Iteration: 30, Func. Count: 422, Neg. LLF: 166.48981507381683
Iteration: 31, Func. Count: 438, Neg. LLF: 165.41287470436507
Iteration: 32, Func. Count: 461, Neg. LLF: 165.41435944256548
Iteration: 33, Func. Count: 476, Neg. LLF: 165.41382083824783
Iteration: 34, Func. Count: 490, Neg. LLF: 165.41381561137212
Iteration: 35, Func. Count: 503, Neg. LLF: 165.4138251694958
Optimization terminated successfully (Exit mode 0)
Current function value: 165.4138155266227
Iterations: 36
Function evaluations: 504
Gradient evaluations: 35
Iteration: 1, Func. Count: 15, Neg. LLF: 194.76552375079942
Iteration: 2, Func. Count: 30, Neg. LLF: 171.29346629544045
Iteration: 3, Func. Count: 45, Neg. LLF: 168.30477159674112
Iteration: 4, Func. Count: 59, Neg. LLF: 177.88585024497667
Iteration: 5, Func. Count: 75, Neg. LLF: 171.52166680939496
Iteration: 6, Func. Count: 90, Neg. LLF: 168.94022061303622
Iteration: 7, Func. Count: 105, Neg. LLF: 173.60708663567132
Iteration: 8, Func. Count: 120, Neg. LLF: 167.42689552205368
Iteration: 9, Func. Count: 135, Neg. LLF: 169.89444369071657
Iteration: 10, Func. Count: 150, Neg. LLF: 167.01814023932158
Iteration: 11, Func. Count: 164, Neg. LLF: 166.97729014520374
Iteration: 12, Func. Count: 178, Neg. LLF: 166.89727695151726
Iteration: 13, Func. Count: 192, Neg. LLF: 166.3337559124817
Iteration: 14, Func. Count: 206, Neg. LLF: 166.4419849384903
Iteration: 15, Func. Count: 221, Neg. LLF: 165.75810228052595
Iteration: 16, Func. Count: 235, Neg. LLF: 165.65216463154465
Iteration: 17, Func. Count: 249, Neg. LLF: 165.72444754350548
Iteration: 18, Func. Count: 264, Neg. LLF: 165.64384506827918
Iteration: 19, Func. Count: 279, Neg. LLF: 165.590997149119
Iteration: 20, Func. Count: 293, Neg. LLF: 165.587137377891
Iteration: 21, Func. Count: 307, Neg. LLF: 165.58158803722262
Iteration: 22, Func. Count: 321, Neg. LLF: 165.572624570009
Iteration: 23, Func. Count: 335, Neg. LLF: 165.5679831223719
Iteration: 24, Func. Count: 349, Neg. LLF: 165.5676422139019
Iteration: 25, Func. Count: 363, Neg. LLF: 165.56763681317398
Iteration: 26, Func. Count: 376, Neg. LLF: 165.56763679336004
Optimization terminated successfully (Exit mode 0)
Current function value: 165.56763681317398
Iterations: 26
Function evaluations: 376
Gradient evaluations: 26
Iteration: 1, Func. Count: 8, Neg. LLF: 172.23229004495522
Iteration: 2, Func. Count: 16, Neg. LLF: 174.21943627967514
Iteration: 3, Func. Count: 25, Neg. LLF: 170.03919337696894
Iteration: 4, Func. Count: 32, Neg. LLF: 169.88275077486364
Iteration: 5, Func. Count: 39, Neg. LLF: 169.81167986056923
Iteration: 6, Func. Count: 46, Neg. LLF: 169.6474223366443
Iteration: 7, Func. Count: 53, Neg. LLF: 169.49636663357643
Iteration: 8, Func. Count: 60, Neg. LLF: 168.57428587364
Iteration: 9, Func. Count: 67, Neg. LLF: 183.3452483546868
Iteration: 10, Func. Count: 75, Neg. LLF: 1030.9519902244767
Iteration: 11, Func. Count: 83, Neg. LLF: 181.74541020021627
Iteration: 12, Func. Count: 91, Neg. LLF: 177.31497733940952
Iteration: 13, Func. Count: 99, Neg. LLF: 167.97233944986007
Iteration: 14, Func. Count: 107, Neg. LLF: 166.8560044700441
Iteration: 15, Func. Count: 114, Neg. LLF: 166.8445745646853
Iteration: 16, Func. Count: 121, Neg. LLF: 166.82472899969633
Iteration: 17, Func. Count: 128, Neg. LLF: 166.8235126858461
Iteration: 18, Func. Count: 135, Neg. LLF: 166.8233674015569
Iteration: 19, Func. Count: 142, Neg. LLF: 166.82310727539777
Iteration: 20, Func. Count: 149, Neg. LLF: 166.82309301092823
Iteration: 21, Func. Count: 156, Neg. LLF: 166.82309243849693
Optimization terminated successfully (Exit mode 0)
Current function value: 166.82309243849693
Iterations: 21
Function evaluations: 156
Gradient evaluations: 21
Iteration: 1, Func. Count: 9, Neg. LLF: 171.48514892786724
Iteration: 2, Func. Count: 17, Neg. LLF: 170.57718549969388
Iteration: 3, Func. Count: 27, Neg. LLF: 177.63239337240248
Iteration: 4, Func. Count: 36, Neg. LLF: 189.25599288156218
Iteration: 5, Func. Count: 45, Neg. LLF: 168.79765775752466
Iteration: 6, Func. Count: 54, Neg. LLF: 167.97576756171134
Iteration: 7, Func. Count: 62, Neg. LLF: 167.8849281993971
Iteration: 8, Func. Count: 70, Neg. LLF: 167.8115855450639
Iteration: 9, Func. Count: 78, Neg. LLF: 167.76327952993822
Iteration: 10, Func. Count: 86, Neg. LLF: 167.50912702872847
Iteration: 11, Func. Count: 94, Neg. LLF: 167.43930405389835
Iteration: 12, Func. Count: 103, Neg. LLF: 167.11539347397382
Iteration: 13, Func. Count: 111, Neg. LLF: 166.930766017366
Iteration: 14, Func. Count: 119, Neg. LLF: 166.860795757086
Iteration: 15, Func. Count: 127, Neg. LLF: 166.82583999659352
Iteration: 16, Func. Count: 135, Neg. LLF: 166.82345002270674
Iteration: 17, Func. Count: 143, Neg. LLF: 166.8231027941374
Iteration: 18, Func. Count: 151, Neg. LLF: 166.82309241709544
Iteration: 19, Func. Count: 158, Neg. LLF: 166.82309243090037
Optimization terminated successfully (Exit mode 0)
Current function value: 166.82309241709544
Iterations: 19
Function evaluations: 158
Gradient evaluations: 19
Iteration: 1, Func. Count: 10, Neg. LLF: 171.4817461130898
Iteration: 2, Func. Count: 19, Neg. LLF: 169.87497259288918
Iteration: 3, Func. Count: 29, Neg. LLF: 176.01413667675004
Iteration: 4, Func. Count: 39, Neg. LLF: 184.3078029504512
Iteration: 5, Func. Count: 49, Neg. LLF: 168.32812520258008
Iteration: 6, Func. Count: 58, Neg. LLF: 167.9443533001785
Iteration: 7, Func. Count: 67, Neg. LLF: 167.88895700324352
Iteration: 8, Func. Count: 76, Neg. LLF: 167.79398810974544
Iteration: 9, Func. Count: 85, Neg. LLF: 167.69942774422236
Iteration: 10, Func. Count: 94, Neg. LLF: 167.61416075688868
Iteration: 11, Func. Count: 103, Neg. LLF: 167.56308125730746
Iteration: 12, Func. Count: 112, Neg. LLF: 167.32061702282982
Iteration: 13, Func. Count: 121, Neg. LLF: 167.37107568675026
Iteration: 14, Func. Count: 131, Neg. LLF: 166.86894053319818
Iteration: 15, Func. Count: 140, Neg. LLF: 166.82752014140843
Iteration: 16, Func. Count: 149, Neg. LLF: 166.82374966995363
Iteration: 17, Func. Count: 158, Neg. LLF: 166.8230989380176
Iteration: 18, Func. Count: 167, Neg. LLF: 166.8230925895567
Iteration: 19, Func. Count: 175, Neg. LLF: 166.82309268307938
Optimization terminated successfully (Exit mode 0)
Current function value: 166.8230925895567
Iterations: 19
Function evaluations: 175
Gradient evaluations: 19
Iteration: 1, Func. Count: 11, Neg. LLF: 172.19796557743578
Iteration: 2, Func. Count: 21, Neg. LLF: 172.20652359070235
Iteration: 3, Func. Count: 32, Neg. LLF: 173.65431643487153
Iteration: 4, Func. Count: 43, Neg. LLF: 174.29731146502334
Iteration: 5, Func. Count: 54, Neg. LLF: 170.2068173273707
Iteration: 6, Func. Count: 64, Neg. LLF: 169.8982693898296
Iteration: 7, Func. Count: 74, Neg. LLF: 169.82363654642873
Iteration: 8, Func. Count: 84, Neg. LLF: 169.76303819539
Iteration: 9, Func. Count: 94, Neg. LLF: 169.65763944787835
Iteration: 10, Func. Count: 104, Neg. LLF: 169.33456767325637
Iteration: 11, Func. Count: 114, Neg. LLF: 168.60341057840833
Iteration: 12, Func. Count: 124, Neg. LLF: 169.97819293045887
Iteration: 13, Func. Count: 135, Neg. LLF: 202.1807971558356
Iteration: 14, Func. Count: 146, Neg. LLF: 167.22263975912358
Iteration: 15, Func. Count: 156, Neg. LLF: 167.27397453473037
Iteration: 16, Func. Count: 167, Neg. LLF: 166.84863326207514
Iteration: 17, Func. Count: 177, Neg. LLF: 166.82775828987022
Iteration: 18, Func. Count: 187, Neg. LLF: 166.8334284903882
Iteration: 19, Func. Count: 198, Neg. LLF: 166.82310455151696
Iteration: 20, Func. Count: 208, Neg. LLF: 166.82309278535854
Iteration: 21, Func. Count: 217, Neg. LLF: 166.82309281650234
Optimization terminated successfully (Exit mode 0)
Current function value: 166.82309278535854
Iterations: 21
Function evaluations: 217
Gradient evaluations: 21
Iteration: 1, Func. Count: 12, Neg. LLF: 172.19870953204017
Iteration: 2, Func. Count: 23, Neg. LLF: 172.27680123512306
Iteration: 3, Func. Count: 35, Neg. LLF: 173.57629080222628
Iteration: 4, Func. Count: 47, Neg. LLF: 173.7066103611537
Iteration: 5, Func. Count: 59, Neg. LLF: 170.22326245409968
Iteration: 6, Func. Count: 70, Neg. LLF: 169.9204360110425
Iteration: 7, Func. Count: 81, Neg. LLF: 169.82759998014004
Iteration: 8, Func. Count: 92, Neg. LLF: 169.76587710215784
Iteration: 9, Func. Count: 103, Neg. LLF: 169.6949277761024
Iteration: 10, Func. Count: 114, Neg. LLF: 169.17620001249307
Iteration: 11, Func. Count: 125, Neg. LLF: 171.57770320839103
Iteration: 12, Func. Count: 137, Neg. LLF: 201.8039595977961
Iteration: 13, Func. Count: 149, Neg. LLF: 228.17603065559027
Iteration: 14, Func. Count: 161, Neg. LLF: 169.11234733855957
Iteration: 15, Func. Count: 173, Neg. LLF: 168.2065698127899
Iteration: 16, Func. Count: 185, Neg. LLF: 167.09177721085746
Iteration: 17, Func. Count: 197, Neg. LLF: 166.71651688150402
Iteration: 18, Func. Count: 208, Neg. LLF: 166.6436160912063
Iteration: 19, Func. Count: 219, Neg. LLF: 166.6381789878043
Iteration: 20, Func. Count: 230, Neg. LLF: 166.6303057492009
Iteration: 21, Func. Count: 241, Neg. LLF: 166.62847116457306
Iteration: 22, Func. Count: 252, Neg. LLF: 166.62726958868328
Iteration: 23, Func. Count: 263, Neg. LLF: 166.6272082246408
Iteration: 24, Func. Count: 274, Neg. LLF: 166.62720749154937
Optimization terminated successfully (Exit mode 0)
Current function value: 166.62720749154937
Iterations: 24
Function evaluations: 274
Gradient evaluations: 24
Iteration: 1, Func. Count: 9, Neg. LLF: 172.21272129941067
Iteration: 2, Func. Count: 18, Neg. LLF: 174.2995070917101
Iteration: 3, Func. Count: 28, Neg. LLF: 170.08205879613902
Iteration: 4, Func. Count: 36, Neg. LLF: 169.95883487985952
Iteration: 5, Func. Count: 44, Neg. LLF: 170.28102748862398
Iteration: 6, Func. Count: 53, Neg. LLF: 169.6978236834193
Iteration: 7, Func. Count: 61, Neg. LLF: 169.58508145895314
Iteration: 8, Func. Count: 69, Neg. LLF: 169.40246071629613
Iteration: 9, Func. Count: 77, Neg. LLF: 169.21583886668725
Iteration: 10, Func. Count: 85, Neg. LLF: 168.30724891749662
Iteration: 11, Func. Count: 93, Neg. LLF: 182.20463755173577
Iteration: 12, Func. Count: 102, Neg. LLF: 180.30773550815024
Iteration: 13, Func. Count: 111, Neg. LLF: 180.65805900034871
Iteration: 14, Func. Count: 120, Neg. LLF: 182.17435264642828
Iteration: 15, Func. Count: 129, Neg. LLF: 168.82763644044016
Iteration: 16, Func. Count: 138, Neg. LLF: 166.52387824554947
Iteration: 17, Func. Count: 146, Neg. LLF: 166.2426484929971
Iteration: 18, Func. Count: 154, Neg. LLF: 166.2178599648271
Iteration: 19, Func. Count: 162, Neg. LLF: 166.20246420427165
Iteration: 20, Func. Count: 170, Neg. LLF: 166.19846442772075
Iteration: 21, Func. Count: 178, Neg. LLF: 166.19784591157506
Iteration: 22, Func. Count: 186, Neg. LLF: 166.19775159037286
Iteration: 23, Func. Count: 193, Neg. LLF: 166.1977515865306
Optimization terminated successfully (Exit mode 0)
Current function value: 166.19775159037286
Iterations: 23
Function evaluations: 193
Gradient evaluations: 23
Iteration: 1, Func. Count: 10, Neg. LLF: 170.6232813322785
Iteration: 2, Func. Count: 19, Neg. LLF: 186.07524255025746
Iteration: 3, Func. Count: 30, Neg. LLF: 189.4568740534415
Iteration: 4, Func. Count: 41, Neg. LLF: 166.5608252113518
Iteration: 5, Func. Count: 50, Neg. LLF: 166.23452314704593
Iteration: 6, Func. Count: 59, Neg. LLF: 166.20992778135061
Iteration: 7, Func. Count: 68, Neg. LLF: 166.20492625416657
Iteration: 8, Func. Count: 77, Neg. LLF: 166.20397094895546
Iteration: 9, Func. Count: 86, Neg. LLF: 166.19990546923145
Iteration: 10, Func. Count: 95, Neg. LLF: 166.19790397387942
Iteration: 11, Func. Count: 104, Neg. LLF: 166.19781665076707
Iteration: 12, Func. Count: 113, Neg. LLF: 166.1977732666739
Iteration: 13, Func. Count: 122, Neg. LLF: 166.19775584894785
Iteration: 14, Func. Count: 131, Neg. LLF: 166.19775170550963
Iteration: 15, Func. Count: 139, Neg. LLF: 166.19775172473237
Optimization terminated successfully (Exit mode 0)
Current function value: 166.19775170550963
Iterations: 15
Function evaluations: 139
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 171.4986257623321
Iteration: 2, Func. Count: 21, Neg. LLF: 168.22477024400098
Iteration: 3, Func. Count: 33, Neg. LLF: 176.93895582129062
Iteration: 4, Func. Count: 44, Neg. LLF: 197.26129434070876
Iteration: 5, Func. Count: 55, Neg. LLF: 167.6247918689465
Iteration: 6, Func. Count: 65, Neg. LLF: 167.45823892604332
Iteration: 7, Func. Count: 75, Neg. LLF: 167.39060323062228
Iteration: 8, Func. Count: 85, Neg. LLF: 167.04329160983485
Iteration: 9, Func. Count: 95, Neg. LLF: 166.39645977492358
Iteration: 10, Func. Count: 105, Neg. LLF: 166.3589081579889
Iteration: 11, Func. Count: 116, Neg. LLF: 166.25795748152092
Iteration: 12, Func. Count: 126, Neg. LLF: 166.25331301247766
Iteration: 13, Func. Count: 136, Neg. LLF: 166.24655536596887
Iteration: 14, Func. Count: 146, Neg. LLF: 166.22231663275957
Iteration: 15, Func. Count: 156, Neg. LLF: 166.20640259634735
Iteration: 16, Func. Count: 166, Neg. LLF: 166.19896055994045
Iteration: 17, Func. Count: 176, Neg. LLF: 166.1977650725831
Iteration: 18, Func. Count: 186, Neg. LLF: 166.19775527472999
Iteration: 19, Func. Count: 196, Neg. LLF: 166.1977514465969
Iteration: 20, Func. Count: 205, Neg. LLF: 166.19775157440665
Optimization terminated successfully (Exit mode 0)
Current function value: 166.1977514465969
Iterations: 20
Function evaluations: 205
Gradient evaluations: 20
Iteration: 1, Func. Count: 12, Neg. LLF: 171.49616985629956
Iteration: 2, Func. Count: 23, Neg. LLF: 168.21291589525387
Iteration: 3, Func. Count: 35, Neg. LLF: 175.11323050814056
Iteration: 4, Func. Count: 47, Neg. LLF: 188.35667029517666
Iteration: 5, Func. Count: 59, Neg. LLF: 167.63990943475935
Iteration: 6, Func. Count: 71, Neg. LLF: 167.58039252286162
Iteration: 7, Func. Count: 83, Neg. LLF: 167.46967645150494
Iteration: 8, Func. Count: 94, Neg. LLF: 167.1736386250588
Iteration: 9, Func. Count: 105, Neg. LLF: 166.38240013669895
Iteration: 10, Func. Count: 116, Neg. LLF: 166.29312270172196
Iteration: 11, Func. Count: 127, Neg. LLF: 166.26609824117844
Iteration: 12, Func. Count: 138, Neg. LLF: 166.2504012758758
Iteration: 13, Func. Count: 149, Neg. LLF: 168.1210202936949
Iteration: 14, Func. Count: 161, Neg. LLF: 166.199176770557
Iteration: 15, Func. Count: 172, Neg. LLF: 166.19352949871896
Iteration: 16, Func. Count: 183, Neg. LLF: 166.193023560481
Iteration: 17, Func. Count: 194, Neg. LLF: 166.19302255668288
Iteration: 18, Func. Count: 204, Neg. LLF: 166.19302254630628
Optimization terminated successfully (Exit mode 0)
Current function value: 166.19302255668288
Iterations: 18
Function evaluations: 204
Gradient evaluations: 18
Iteration: 1, Func. Count: 13, Neg. LLF: 171.4950418847757
Iteration: 2, Func. Count: 25, Neg. LLF: 168.2353169235484
Iteration: 3, Func. Count: 39, Neg. LLF: 187.45738283901315
Iteration: 4, Func. Count: 54, Neg. LLF: 194.42895703929207
Iteration: 5, Func. Count: 67, Neg. LLF: 168.01015087083417
Iteration: 6, Func. Count: 80, Neg. LLF: 167.67369439907054
Iteration: 7, Func. Count: 93, Neg. LLF: 167.3790078346071
Iteration: 8, Func. Count: 105, Neg. LLF: 167.2770166179678
Iteration: 9, Func. Count: 117, Neg. LLF: 166.5290806629637
Iteration: 10, Func. Count: 129, Neg. LLF: 166.5729177515912
Iteration: 11, Func. Count: 142, Neg. LLF: 166.30533039888996
Iteration: 12, Func. Count: 155, Neg. LLF: 166.23152971990427
Iteration: 13, Func. Count: 167, Neg. LLF: 166.194876654234
Iteration: 14, Func. Count: 179, Neg. LLF: 166.03413436758748
Iteration: 15, Func. Count: 191, Neg. LLF: 165.9922093827577
Iteration: 16, Func. Count: 203, Neg. LLF: 165.9303777571427
Iteration: 17, Func. Count: 215, Neg. LLF: 165.90422820304298
Iteration: 18, Func. Count: 227, Neg. LLF: 165.8964906179989
Iteration: 19, Func. Count: 239, Neg. LLF: 165.88097720568643
Iteration: 20, Func. Count: 251, Neg. LLF: 165.88019363189161
Iteration: 21, Func. Count: 263, Neg. LLF: 165.88016989838033
Iteration: 22, Func. Count: 275, Neg. LLF: 165.88016813894583
Iteration: 23, Func. Count: 286, Neg. LLF: 165.88016812056796
Optimization terminated successfully (Exit mode 0)
Current function value: 165.88016813894583
Iterations: 23
Function evaluations: 286
Gradient evaluations: 23
Iteration: 1, Func. Count: 10, Neg. LLF: 174.29325945097992
Iteration: 2, Func. Count: 21, Neg. LLF: 175.06462285081994
Iteration: 3, Func. Count: 32, Neg. LLF: 170.9805732142923
Iteration: 4, Func. Count: 42, Neg. LLF: 170.12677236878022
Iteration: 5, Func. Count: 51, Neg. LLF: 169.75338719806157
Iteration: 6, Func. Count: 60, Neg. LLF: 169.72127429657064
Iteration: 7, Func. Count: 69, Neg. LLF: 169.62388611372768
Iteration: 8, Func. Count: 78, Neg. LLF: 169.52573010687894
Iteration: 9, Func. Count: 87, Neg. LLF: 169.35297174692835
Iteration: 10, Func. Count: 96, Neg. LLF: 168.23135608673567
Iteration: 11, Func. Count: 105, Neg. LLF: 195.23505205259642
Iteration: 12, Func. Count: 115, Neg. LLF: 185.28571972966148
Iteration: 13, Func. Count: 125, Neg. LLF: 184.68756266345557
Iteration: 14, Func. Count: 135, Neg. LLF: 181.9299344179249
Iteration: 15, Func. Count: 145, Neg. LLF: 180.65725403264105
Iteration: 16, Func. Count: 155, Neg. LLF: 167.97884143136147
Iteration: 17, Func. Count: 165, Neg. LLF: 166.06581191037552
Iteration: 18, Func. Count: 174, Neg. LLF: 165.86615038100072
Iteration: 19, Func. Count: 183, Neg. LLF: 165.84453732976723
Iteration: 20, Func. Count: 192, Neg. LLF: 165.82305342337685
Iteration: 21, Func. Count: 201, Neg. LLF: 165.8230203046025
Iteration: 22, Func. Count: 210, Neg. LLF: 165.82301780461623
Iteration: 23, Func. Count: 218, Neg. LLF: 165.82301780805733
Optimization terminated successfully (Exit mode 0)
Current function value: 165.82301780461623
Iterations: 23
Function evaluations: 218
Gradient evaluations: 23
Iteration: 1, Func. Count: 11, Neg. LLF: 238.50940451508907
Iteration: 2, Func. Count: 22, Neg. LLF: 181.9568412503895
Iteration: 3, Func. Count: 33, Neg. LLF: 189.45297603268455
Iteration: 4, Func. Count: 44, Neg. LLF: 170.47690000819625
Iteration: 5, Func. Count: 55, Neg. LLF: 179.7792916986756
Iteration: 6, Func. Count: 66, Neg. LLF: 168.75351020986488
Iteration: 7, Func. Count: 77, Neg. LLF: 166.0942011003223
Iteration: 8, Func. Count: 87, Neg. LLF: 165.89112784240402
Iteration: 9, Func. Count: 97, Neg. LLF: 165.87347659664468
Iteration: 10, Func. Count: 107, Neg. LLF: 165.85223657600494
Iteration: 11, Func. Count: 117, Neg. LLF: 165.841505594251
Iteration: 12, Func. Count: 127, Neg. LLF: 165.83628497014016
Iteration: 13, Func. Count: 137, Neg. LLF: 165.8319365272967
Iteration: 14, Func. Count: 147, Neg. LLF: 165.8266411195496
Iteration: 15, Func. Count: 157, Neg. LLF: 165.82375323888525
Iteration: 16, Func. Count: 167, Neg. LLF: 165.82306901201864
Iteration: 17, Func. Count: 177, Neg. LLF: 165.823019826789
Iteration: 18, Func. Count: 187, Neg. LLF: 165.82301783027796
Iteration: 19, Func. Count: 196, Neg. LLF: 165.8230178378184
Optimization terminated successfully (Exit mode 0)
Current function value: 165.82301783027796
Iterations: 19
Function evaluations: 196
Gradient evaluations: 19
Iteration: 1, Func. Count: 12, Neg. LLF: 194.8115438501755
Iteration: 2, Func. Count: 24, Neg. LLF: 168.3482401040013
Iteration: 3, Func. Count: 35, Neg. LLF: 167.99724019413412
Iteration: 4, Func. Count: 46, Neg. LLF: 172.36616620021704
Iteration: 5, Func. Count: 58, Neg. LLF: 174.57481246822505
Iteration: 6, Func. Count: 70, Neg. LLF: 167.45840530817853
Iteration: 7, Func. Count: 81, Neg. LLF: 167.33851729506878
Iteration: 8, Func. Count: 92, Neg. LLF: 167.317626187014
Iteration: 9, Func. Count: 103, Neg. LLF: 167.16467841531153
Iteration: 10, Func. Count: 114, Neg. LLF: 167.0960839736499
Iteration: 11, Func. Count: 125, Neg. LLF: 166.99999163315934
Iteration: 12, Func. Count: 136, Neg. LLF: 166.49430530398362
Iteration: 13, Func. Count: 147, Neg. LLF: 166.25441390747133
Iteration: 14, Func. Count: 158, Neg. LLF: 166.01755440733766
Iteration: 15, Func. Count: 169, Neg. LLF: 165.87694101984104
Iteration: 16, Func. Count: 180, Neg. LLF: 165.83544059336813
Iteration: 17, Func. Count: 191, Neg. LLF: 165.82381516620023
Iteration: 18, Func. Count: 202, Neg. LLF: 165.82308638155644
Iteration: 19, Func. Count: 213, Neg. LLF: 165.8230294782829
Iteration: 20, Func. Count: 224, Neg. LLF: 165.8230189350563
Iteration: 21, Func. Count: 235, Neg. LLF: 165.82301789800886
Iteration: 22, Func. Count: 245, Neg. LLF: 165.82301805368544
Optimization terminated successfully (Exit mode 0)
Current function value: 165.82301789800886
Iterations: 22
Function evaluations: 245
Gradient evaluations: 22
Iteration: 1, Func. Count: 13, Neg. LLF: 194.7805860187389
Iteration: 2, Func. Count: 26, Neg. LLF: 167.75740320213032
Iteration: 3, Func. Count: 38, Neg. LLF: 170.85719091313047
Iteration: 4, Func. Count: 51, Neg. LLF: 176.20644473109692
Iteration: 5, Func. Count: 64, Neg. LLF: 168.09816146833208
Iteration: 6, Func. Count: 77, Neg. LLF: 167.3096285679855
Iteration: 7, Func. Count: 89, Neg. LLF: 167.74462847308075
Iteration: 8, Func. Count: 102, Neg. LLF: 167.3573411337475
Iteration: 9, Func. Count: 115, Neg. LLF: 167.1443381427765
Iteration: 10, Func. Count: 127, Neg. LLF: 166.74021154146445
Iteration: 11, Func. Count: 139, Neg. LLF: 166.22976064492875
Iteration: 12, Func. Count: 151, Neg. LLF: 165.89862838579447
Iteration: 13, Func. Count: 163, Neg. LLF: 169.07335519290768
Iteration: 14, Func. Count: 176, Neg. LLF: 165.74747701702134
Iteration: 15, Func. Count: 188, Neg. LLF: 165.73106389446832
Iteration: 16, Func. Count: 200, Neg. LLF: 165.63873015545497
Iteration: 17, Func. Count: 212, Neg. LLF: 165.62411312750643
Iteration: 18, Func. Count: 224, Neg. LLF: 165.62283397525388
Iteration: 19, Func. Count: 236, Neg. LLF: 165.62271156984397
Iteration: 20, Func. Count: 248, Neg. LLF: 165.62271040122468
Iteration: 21, Func. Count: 259, Neg. LLF: 165.6227103832709
Optimization terminated successfully (Exit mode 0)
Current function value: 165.62271040122468
Iterations: 21
Function evaluations: 259
Gradient evaluations: 21
Iteration: 1, Func. Count: 14, Neg. LLF: 194.7630012399012
Iteration: 2, Func. Count: 28, Neg. LLF: 167.7377216764498
Iteration: 3, Func. Count: 41, Neg. LLF: 170.07829956878254
Iteration: 4, Func. Count: 55, Neg. LLF: 198.9583015354075
Iteration: 5, Func. Count: 69, Neg. LLF: 173.17767554412092
Iteration: 6, Func. Count: 83, Neg. LLF: 169.9777891999186
Iteration: 7, Func. Count: 97, Neg. LLF: 167.26560913575173
Iteration: 8, Func. Count: 110, Neg. LLF: 167.1660324072942
Iteration: 9, Func. Count: 123, Neg. LLF: 167.9254625866336
Iteration: 10, Func. Count: 137, Neg. LLF: 166.9676333670979
Iteration: 11, Func. Count: 150, Neg. LLF: 167.9278318477096
Iteration: 12, Func. Count: 164, Neg. LLF: 166.27493285119155
Iteration: 13, Func. Count: 177, Neg. LLF: 180.8823071983381
Iteration: 14, Func. Count: 191, Neg. LLF: 167.42597639827903
Iteration: 15, Func. Count: 205, Neg. LLF: 165.6759395815013
Iteration: 16, Func. Count: 219, Neg. LLF: 167.22593390784309
Iteration: 17, Func. Count: 233, Neg. LLF: 165.1901587548587
Iteration: 18, Func. Count: 246, Neg. LLF: 165.07421719115993
Iteration: 19, Func. Count: 259, Neg. LLF: 165.06303941421703
Iteration: 20, Func. Count: 272, Neg. LLF: 165.05877385102838
Iteration: 21, Func. Count: 285, Neg. LLF: 165.0585359573239
Iteration: 22, Func. Count: 298, Neg. LLF: 165.05852117135987
Iteration: 23, Func. Count: 310, Neg. LLF: 165.05852116187955
Optimization terminated successfully (Exit mode 0)
Current function value: 165.05852117135987
Iterations: 23
Function evaluations: 310
Gradient evaluations: 23
Iteration: 1, Func. Count: 11, Neg. LLF: 172.22327726959455
Iteration: 2, Func. Count: 22, Neg. LLF: 183.0754157472005
Iteration: 3, Func. Count: 33, Neg. LLF: 169.26584637846474
Iteration: 4, Func. Count: 43, Neg. LLF: 197.3508952996167
Iteration: 5, Func. Count: 55, Neg. LLF: 169.43288942959205
Iteration: 6, Func. Count: 66, Neg. LLF: 169.0532762506906
Iteration: 7, Func. Count: 76, Neg. LLF: 168.81018690402712
Iteration: 8, Func. Count: 86, Neg. LLF: 168.79691739918144
Iteration: 9, Func. Count: 97, Neg. LLF: 168.74349050573628
Iteration: 10, Func. Count: 107, Neg. LLF: 168.68246605139285
Iteration: 11, Func. Count: 117, Neg. LLF: 168.50297930480457
Iteration: 12, Func. Count: 127, Neg. LLF: 168.05846723164035
Iteration: 13, Func. Count: 137, Neg. LLF: 167.38332374316863
Iteration: 14, Func. Count: 147, Neg. LLF: 166.7122989577049
Iteration: 15, Func. Count: 157, Neg. LLF: 167.2292690524489
Iteration: 16, Func. Count: 168, Neg. LLF: 166.08893531580244
Iteration: 17, Func. Count: 178, Neg. LLF: 165.9734947728904
Iteration: 18, Func. Count: 188, Neg. LLF: 165.57424190457183
Iteration: 19, Func. Count: 198, Neg. LLF: 165.47180552384478
Iteration: 20, Func. Count: 208, Neg. LLF: 165.45470118905214
Iteration: 21, Func. Count: 218, Neg. LLF: 165.44332344744112
Iteration: 22, Func. Count: 228, Neg. LLF: 165.44084320790645
Iteration: 23, Func. Count: 238, Neg. LLF: 165.44035584014702
Iteration: 24, Func. Count: 248, Neg. LLF: 165.44031121822283
Iteration: 25, Func. Count: 258, Neg. LLF: 165.4402932553605
Iteration: 26, Func. Count: 268, Neg. LLF: 165.44029224207782
Iteration: 27, Func. Count: 277, Neg. LLF: 165.44029216596573
Optimization terminated successfully (Exit mode 0)
Current function value: 165.44029224207782
Iterations: 27
Function evaluations: 277
Gradient evaluations: 27
Iteration: 1, Func. Count: 12, Neg. LLF: 279.6365873612794
Iteration: 2, Func. Count: 24, Neg. LLF: 182.21398790764127
Iteration: 3, Func. Count: 36, Neg. LLF: 175.39099153156374
Iteration: 4, Func. Count: 48, Neg. LLF: 170.43207908413265
Iteration: 5, Func. Count: 60, Neg. LLF: 171.0648606252714
Iteration: 6, Func. Count: 72, Neg. LLF: 167.87891045675366
Iteration: 7, Func. Count: 84, Neg. LLF: 165.6946776127447
Iteration: 8, Func. Count: 95, Neg. LLF: 165.4979564333981
Iteration: 9, Func. Count: 106, Neg. LLF: 165.4584512374844
Iteration: 10, Func. Count: 117, Neg. LLF: 165.44213174099022
Iteration: 11, Func. Count: 128, Neg. LLF: 165.44062910325513
Iteration: 12, Func. Count: 139, Neg. LLF: 165.44055153446186
Iteration: 13, Func. Count: 150, Neg. LLF: 165.44045016130156
Iteration: 14, Func. Count: 161, Neg. LLF: 165.44040611948193
Iteration: 15, Func. Count: 172, Neg. LLF: 165.44031419461945
Iteration: 16, Func. Count: 183, Neg. LLF: 165.4402946869775
Iteration: 17, Func. Count: 194, Neg. LLF: 165.44029125285883
Iteration: 18, Func. Count: 205, Neg. LLF: 165.4403022295124
Optimization terminated successfully (Exit mode 0)
Current function value: 165.4402912770297
Iterations: 19
Function evaluations: 207
Gradient evaluations: 18
Iteration: 1, Func. Count: 13, Neg. LLF: 194.54032719748741
Iteration: 2, Func. Count: 26, Neg. LLF: 172.39606122046362
Iteration: 3, Func. Count: 39, Neg. LLF: 168.2681103123905
Iteration: 4, Func. Count: 51, Neg. LLF: 173.58711932905007
Iteration: 5, Func. Count: 65, Neg. LLF: 192.13867775930692
Iteration: 6, Func. Count: 78, Neg. LLF: 167.46724615851252
Iteration: 7, Func. Count: 91, Neg. LLF: 172.2212355810681
Iteration: 8, Func. Count: 104, Neg. LLF: 167.14525388363742
Iteration: 9, Func. Count: 117, Neg. LLF: 167.02391266000998
Iteration: 10, Func. Count: 129, Neg. LLF: 166.93137463223295
Iteration: 11, Func. Count: 141, Neg. LLF: 166.66723478618022
Iteration: 12, Func. Count: 153, Neg. LLF: 166.37421853673305
Iteration: 13, Func. Count: 165, Neg. LLF: 166.1324777831421
Iteration: 14, Func. Count: 177, Neg. LLF: 165.94659781314195
Iteration: 15, Func. Count: 189, Neg. LLF: 165.54564987435091
Iteration: 16, Func. Count: 201, Neg. LLF: 165.4827794429148
Iteration: 17, Func. Count: 213, Neg. LLF: 165.45371191280768
Iteration: 18, Func. Count: 225, Neg. LLF: 165.44757198236672
Iteration: 19, Func. Count: 237, Neg. LLF: 165.44267012345333
Iteration: 20, Func. Count: 249, Neg. LLF: 165.44187182434493
Iteration: 21, Func. Count: 261, Neg. LLF: 165.44045070707747
Iteration: 22, Func. Count: 273, Neg. LLF: 165.44050952275248
Iteration: 23, Func. Count: 285, Neg. LLF: 165.440201277641
Iteration: 24, Func. Count: 297, Neg. LLF: 165.44064881735767
Iteration: 25, Func. Count: 311, Neg. LLF: 165.44029564089317
Iteration: 26, Func. Count: 324, Neg. LLF: 165.44029517603792
Iteration: 27, Func. Count: 337, Neg. LLF: 165.44029233657375
Iteration: 28, Func. Count: 348, Neg. LLF: 165.4402925554321
Optimization terminated successfully (Exit mode 0)
Current function value: 165.44029233657375
Iterations: 29
Function evaluations: 348
Gradient evaluations: 28
Iteration: 1, Func. Count: 14, Neg. LLF: 176.95561552360286
Iteration: 2, Func. Count: 28, Neg. LLF: 172.1523170894699
Iteration: 3, Func. Count: 42, Neg. LLF: 168.7016949971751
Iteration: 4, Func. Count: 55, Neg. LLF: 180.25054391927532
Iteration: 5, Func. Count: 70, Neg. LLF: 169.59740434858085
Iteration: 6, Func. Count: 84, Neg. LLF: 171.70855421990453
Iteration: 7, Func. Count: 98, Neg. LLF: 170.7075191582101
Iteration: 8, Func. Count: 112, Neg. LLF: 167.7536237649803
Iteration: 9, Func. Count: 126, Neg. LLF: 167.04981898321063
Iteration: 10, Func. Count: 139, Neg. LLF: 167.01101786642832
Iteration: 11, Func. Count: 152, Neg. LLF: 166.9769404192754
Iteration: 12, Func. Count: 165, Neg. LLF: 166.8038558612553
Iteration: 13, Func. Count: 178, Neg. LLF: 166.15778797017788
Iteration: 14, Func. Count: 191, Neg. LLF: 167.47307663976335
Iteration: 15, Func. Count: 205, Neg. LLF: 166.02792969712354
Iteration: 16, Func. Count: 218, Neg. LLF: 165.91063210326158
Iteration: 17, Func. Count: 231, Neg. LLF: 165.45601429049492
Iteration: 18, Func. Count: 244, Neg. LLF: 165.4471733364091
Iteration: 19, Func. Count: 257, Neg. LLF: 165.43150191450138
Iteration: 20, Func. Count: 270, Neg. LLF: 165.42576526190925
Iteration: 21, Func. Count: 283, Neg. LLF: 165.4209326066185
Iteration: 22, Func. Count: 296, Neg. LLF: 165.4153703183947
Iteration: 23, Func. Count: 309, Neg. LLF: 165.4142838666089
Iteration: 24, Func. Count: 322, Neg. LLF: 165.4138723312791
Iteration: 25, Func. Count: 335, Neg. LLF: 165.41383771124768
Iteration: 26, Func. Count: 348, Neg. LLF: 165.41377491096938
Iteration: 27, Func. Count: 361, Neg. LLF: 165.4140956286381
Iteration: 28, Func. Count: 376, Neg. LLF: 165.4138590978586
Iteration: 29, Func. Count: 391, Neg. LLF: 165.41381561839196
Iteration: 30, Func. Count: 403, Neg. LLF: 165.41381560321304
Optimization terminated successfully (Exit mode 0)
Current function value: 165.41381561839196
Iterations: 31
Function evaluations: 403
Gradient evaluations: 30
Iteration: 1, Func. Count: 15, Neg. LLF: 173.29874454112155
Iteration: 2, Func. Count: 30, Neg. LLF: 174.42375087182944
Iteration: 3, Func. Count: 45, Neg. LLF: 168.52544596595834
Iteration: 4, Func. Count: 59, Neg. LLF: 180.72009091565954
Iteration: 5, Func. Count: 75, Neg. LLF: 169.50546482052619
Iteration: 6, Func. Count: 90, Neg. LLF: 168.18703013011864
Iteration: 7, Func. Count: 105, Neg. LLF: 174.70980269071742
Iteration: 8, Func. Count: 120, Neg. LLF: 167.31322004297422
Iteration: 9, Func. Count: 135, Neg. LLF: 170.84658174892948
Iteration: 10, Func. Count: 150, Neg. LLF: 166.99664908808785
Iteration: 11, Func. Count: 164, Neg. LLF: 166.91997969996837
Iteration: 12, Func. Count: 178, Neg. LLF: 166.52694327403012
Iteration: 13, Func. Count: 192, Neg. LLF: 166.51163729371245
Iteration: 14, Func. Count: 207, Neg. LLF: 165.96454841754104
Iteration: 15, Func. Count: 221, Neg. LLF: 165.92649515876326
Iteration: 16, Func. Count: 236, Neg. LLF: 165.6450064937764
Iteration: 17, Func. Count: 250, Neg. LLF: 165.61672159512838
Iteration: 18, Func. Count: 264, Neg. LLF: 165.5847384500561
Iteration: 19, Func. Count: 278, Neg. LLF: 165.57171105284093
Iteration: 20, Func. Count: 292, Neg. LLF: 165.56835254870086
Iteration: 21, Func. Count: 306, Neg. LLF: 165.5676815113025
Iteration: 22, Func. Count: 320, Neg. LLF: 165.56764281040893
Iteration: 23, Func. Count: 334, Neg. LLF: 165.56763720064447
Iteration: 24, Func. Count: 347, Neg. LLF: 165.5676371810284
Optimization terminated successfully (Exit mode 0)
Current function value: 165.56763720064447
Iterations: 24
Function evaluations: 347
Gradient evaluations: 24
Iteration: 1, Func. Count: 12, Neg. LLF: 172.2638606535671
Iteration: 2, Func. Count: 24, Neg. LLF: 183.0987819972195
Iteration: 3, Func. Count: 36, Neg. LLF: 169.3035506241949
Iteration: 4, Func. Count: 47, Neg. LLF: 196.81606378415438
Iteration: 5, Func. Count: 60, Neg. LLF: 169.5074465085519
Iteration: 6, Func. Count: 72, Neg. LLF: 169.07272069836873
Iteration: 7, Func. Count: 83, Neg. LLF: 168.84427635706834
Iteration: 8, Func. Count: 94, Neg. LLF: 168.77685730618015
Iteration: 9, Func. Count: 105, Neg. LLF: 168.7268500792692
Iteration: 10, Func. Count: 116, Neg. LLF: 168.68981077065476
Iteration: 11, Func. Count: 127, Neg. LLF: 168.61242110834888
Iteration: 12, Func. Count: 138, Neg. LLF: 168.30986560921022
Iteration: 13, Func. Count: 149, Neg. LLF: 167.8688680638885
Iteration: 14, Func. Count: 160, Neg. LLF: 167.39400125618175
Iteration: 15, Func. Count: 171, Neg. LLF: 166.50159084818
Iteration: 16, Func. Count: 182, Neg. LLF: 166.20023396328435
Iteration: 17, Func. Count: 193, Neg. LLF: 166.0721715803977
Iteration: 18, Func. Count: 204, Neg. LLF: 165.71701166214623
Iteration: 19, Func. Count: 215, Neg. LLF: 165.79276264832245
Iteration: 20, Func. Count: 227, Neg. LLF: 165.47507499478704
Iteration: 21, Func. Count: 238, Neg. LLF: 165.45532283739885
Iteration: 22, Func. Count: 249, Neg. LLF: 165.44873469178722
Iteration: 23, Func. Count: 260, Neg. LLF: 165.44164182371074
Iteration: 24, Func. Count: 271, Neg. LLF: 165.44068678114886
Iteration: 25, Func. Count: 282, Neg. LLF: 165.4403210288095
Iteration: 26, Func. Count: 293, Neg. LLF: 165.4402950893892
Iteration: 27, Func. Count: 304, Neg. LLF: 165.4402922413544
Iteration: 28, Func. Count: 314, Neg. LLF: 165.44029215751576
Optimization terminated successfully (Exit mode 0)
Current function value: 165.4402922413544
Iterations: 28
Function evaluations: 314
Gradient evaluations: 28
Iteration: 1, Func. Count: 13, Neg. LLF: 194.80421092731058
Iteration: 2, Func. Count: 26, Neg. LLF: 169.80500941108843
Iteration: 3, Func. Count: 38, Neg. LLF: 172.8828180179567
Iteration: 4, Func. Count: 52, Neg. LLF: 175.59091421645547
Iteration: 5, Func. Count: 65, Neg. LLF: 191.56576705116575
Iteration: 6, Func. Count: 78, Neg. LLF: 172.5296582905916
Iteration: 7, Func. Count: 91, Neg. LLF: 171.81702174414082
Iteration: 8, Func. Count: 104, Neg. LLF: 171.45333535594938
Iteration: 9, Func. Count: 117, Neg. LLF: 169.0444859082711
Iteration: 10, Func. Count: 130, Neg. LLF: 167.25351166714006
Iteration: 11, Func. Count: 142, Neg. LLF: 167.0376981191807
Iteration: 12, Func. Count: 154, Neg. LLF: 166.9914473919115
Iteration: 13, Func. Count: 166, Neg. LLF: 166.92958692604338
Iteration: 14, Func. Count: 178, Neg. LLF: 166.86605677189462
Iteration: 15, Func. Count: 190, Neg. LLF: 166.700440661185
Iteration: 16, Func. Count: 202, Neg. LLF: 166.5034142799958
Iteration: 17, Func. Count: 214, Neg. LLF: 166.31236879611052
Iteration: 18, Func. Count: 226, Neg. LLF: 166.17720982743717
Iteration: 19, Func. Count: 238, Neg. LLF: 166.0333681525416
Iteration: 20, Func. Count: 250, Neg. LLF: 165.59638663681997
Iteration: 21, Func. Count: 262, Neg. LLF: 165.48206188130098
Iteration: 22, Func. Count: 274, Neg. LLF: 165.45771143525724
Iteration: 23, Func. Count: 286, Neg. LLF: 165.44470534104195
Iteration: 24, Func. Count: 298, Neg. LLF: 165.44184254828403
Iteration: 25, Func. Count: 310, Neg. LLF: 165.44153231887606
Iteration: 26, Func. Count: 322, Neg. LLF: 165.44079097812764
Iteration: 27, Func. Count: 334, Neg. LLF: 165.4405266644762
Iteration: 28, Func. Count: 346, Neg. LLF: 165.4403156574148
Iteration: 29, Func. Count: 358, Neg. LLF: 165.44287642628316
Iteration: 30, Func. Count: 372, Neg. LLF: 165.44035267857285
Iteration: 31, Func. Count: 385, Neg. LLF: 165.44032902713022
Iteration: 32, Func. Count: 398, Neg. LLF: 165.44030129033212
Iteration: 33, Func. Count: 410, Neg. LLF: 165.44029525643043
Iteration: 34, Func. Count: 422, Neg. LLF: 165.44029277963816
Iteration: 35, Func. Count: 433, Neg. LLF: 165.44029284471483
Optimization terminated successfully (Exit mode 0)
Current function value: 165.44029277963816
Iterations: 36
Function evaluations: 433
Gradient evaluations: 35
Iteration: 1, Func. Count: 14, Neg. LLF: 194.7769107027665
Iteration: 2, Func. Count: 28, Neg. LLF: 174.56224420038208
Iteration: 3, Func. Count: 42, Neg. LLF: 168.33622698944652
Iteration: 4, Func. Count: 55, Neg. LLF: 170.9289588280784
Iteration: 5, Func. Count: 70, Neg. LLF: 169.59931301937996
Iteration: 6, Func. Count: 84, Neg. LLF: 169.84589141314933
Iteration: 7, Func. Count: 98, Neg. LLF: 171.67368492753883
Iteration: 8, Func. Count: 112, Neg. LLF: 167.03968733280382
Iteration: 9, Func. Count: 125, Neg. LLF: 167.01472176556956
Iteration: 10, Func. Count: 138, Neg. LLF: 166.93244167125636
Iteration: 11, Func. Count: 151, Neg. LLF: 166.5968019806732
Iteration: 12, Func. Count: 164, Neg. LLF: 166.38682225297234
Iteration: 13, Func. Count: 177, Neg. LLF: 166.2438847550721
Iteration: 14, Func. Count: 190, Neg. LLF: 166.11559522651433
Iteration: 15, Func. Count: 203, Neg. LLF: 165.8824814766565
Iteration: 16, Func. Count: 216, Neg. LLF: 165.48820211016258
Iteration: 17, Func. Count: 229, Neg. LLF: 165.48914113862148
Iteration: 18, Func. Count: 243, Neg. LLF: 165.4615334638655
Iteration: 19, Func. Count: 256, Neg. LLF: 165.45105021304892
Iteration: 20, Func. Count: 269, Neg. LLF: 165.4441198461182
Iteration: 21, Func. Count: 282, Neg. LLF: 165.44079348467687
Iteration: 22, Func. Count: 295, Neg. LLF: 165.44034752544397
Iteration: 23, Func. Count: 308, Neg. LLF: 165.44041681972266
Iteration: 24, Func. Count: 322, Neg. LLF: 165.4402857037003
Iteration: 25, Func. Count: 335, Neg. LLF: 165.4402490525858
Iteration: 26, Func. Count: 358, Neg. LLF: 165.46018577331395
Iteration: 27, Func. Count: 373, Neg. LLF: 165.44057186826225
Iteration: 28, Func. Count: 388, Neg. LLF: 165.44029909230989
Iteration: 29, Func. Count: 403, Neg. LLF: 165.4402923811875
Iteration: 30, Func. Count: 417, Neg. LLF: 165.44029232518605
Iteration: 31, Func. Count: 429, Neg. LLF: 165.44029254410003
Optimization terminated successfully (Exit mode 0)
Current function value: 165.44029232518605
Iterations: 32
Function evaluations: 429
Gradient evaluations: 31
Iteration: 1, Func. Count: 15, Neg. LLF: 180.6034302647653
Iteration: 2, Func. Count: 30, Neg. LLF: 173.74967005921226
Iteration: 3, Func. Count: 45, Neg. LLF: 168.74134709101457
Iteration: 4, Func. Count: 59, Neg. LLF: 177.63221657151124
Iteration: 5, Func. Count: 75, Neg. LLF: 169.48378279378016
Iteration: 6, Func. Count: 90, Neg. LLF: 169.85213622734875
Iteration: 7, Func. Count: 105, Neg. LLF: 171.8933989407933
Iteration: 8, Func. Count: 120, Neg. LLF: 168.02228085985075
Iteration: 9, Func. Count: 135, Neg. LLF: 167.06841734440297
Iteration: 10, Func. Count: 149, Neg. LLF: 167.01148544541496
Iteration: 11, Func. Count: 163, Neg. LLF: 166.98603089177237
Iteration: 12, Func. Count: 177, Neg. LLF: 166.8474176334352
Iteration: 13, Func. Count: 191, Neg. LLF: 166.30861179249715
Iteration: 14, Func. Count: 205, Neg. LLF: 166.19144867627435
Iteration: 15, Func. Count: 219, Neg. LLF: 167.34626228172942
Iteration: 16, Func. Count: 234, Neg. LLF: 167.32365787876586
Iteration: 17, Func. Count: 250, Neg. LLF: 165.5776307583219
Iteration: 18, Func. Count: 264, Neg. LLF: 165.50415886179562
Iteration: 19, Func. Count: 278, Neg. LLF: 165.44692589427098
Iteration: 20, Func. Count: 292, Neg. LLF: 165.43570812432864
Iteration: 21, Func. Count: 306, Neg. LLF: 165.4243549517887
Iteration: 22, Func. Count: 320, Neg. LLF: 165.4195380151838
Iteration: 23, Func. Count: 334, Neg. LLF: 165.41510631199503
Iteration: 24, Func. Count: 348, Neg. LLF: 165.4139492841564
Iteration: 25, Func. Count: 362, Neg. LLF: 165.41382309596136
Iteration: 26, Func. Count: 376, Neg. LLF: 165.4138155947392
Iteration: 27, Func. Count: 389, Neg. LLF: 165.41381557956666
Optimization terminated successfully (Exit mode 0)
Current function value: 165.4138155947392
Iterations: 27
Function evaluations: 389
Gradient evaluations: 27
Iteration: 1, Func. Count: 16, Neg. LLF: 170.9017343920956
Iteration: 2, Func. Count: 31, Neg. LLF: 170.93304964619614
Iteration: 3, Func. Count: 47, Neg. LLF: 186.55124390172764
Iteration: 4, Func. Count: 63, Neg. LLF: 169.42997897491702
Iteration: 5, Func. Count: 78, Neg. LLF: 172.68603301692877
Iteration: 6, Func. Count: 94, Neg. LLF: 170.32380559241747
Iteration: 7, Func. Count: 110, Neg. LLF: 169.54268597344733
Iteration: 8, Func. Count: 126, Neg. LLF: 169.77496883768856
Iteration: 9, Func. Count: 142, Neg. LLF: 168.74532967411915
Iteration: 10, Func. Count: 157, Neg. LLF: 168.7175657758568
Iteration: 11, Func. Count: 172, Neg. LLF: 168.593034161615
Iteration: 12, Func. Count: 187, Neg. LLF: 168.11497169215698
Iteration: 13, Func. Count: 202, Neg. LLF: 168.2402102416226
Iteration: 14, Func. Count: 218, Neg. LLF: 167.99762776360936
Iteration: 15, Func. Count: 234, Neg. LLF: 166.50698742696807
Iteration: 16, Func. Count: 249, Neg. LLF: 167.10025558685652
Iteration: 17, Func. Count: 265, Neg. LLF: 170.56645675013516
Iteration: 18, Func. Count: 282, Neg. LLF: 165.67407774986142
Iteration: 19, Func. Count: 297, Neg. LLF: 165.5723345994323
Iteration: 20, Func. Count: 312, Neg. LLF: 165.52810161016956
Iteration: 21, Func. Count: 327, Neg. LLF: 165.4969796882019
Iteration: 22, Func. Count: 342, Neg. LLF: 165.33756584845136
Iteration: 23, Func. Count: 357, Neg. LLF: 165.2288929552172
Iteration: 24, Func. Count: 372, Neg. LLF: 165.33701098881116
Iteration: 25, Func. Count: 388, Neg. LLF: 165.09421321400453
Iteration: 26, Func. Count: 403, Neg. LLF: 165.06971337065593
Iteration: 27, Func. Count: 418, Neg. LLF: 165.0591819350296
Iteration: 28, Func. Count: 433, Neg. LLF: 165.05857348728236
Iteration: 29, Func. Count: 448, Neg. LLF: 165.05852324906283
Iteration: 30, Func. Count: 463, Neg. LLF: 165.05852078781155
Iteration: 31, Func. Count: 477, Neg. LLF: 165.0585207783577
Optimization terminated successfully (Exit mode 0)
Current function value: 165.05852078781155
Iterations: 31
Function evaluations: 477
Gradient evaluations: 31
Iteration: 1, Func. Count: 7, Neg. LLF: 172.25697453964676
Iteration: 2, Func. Count: 14, Neg. LLF: 174.2621169566776
Iteration: 3, Func. Count: 22, Neg. LLF: 170.02086632554145
Iteration: 4, Func. Count: 28, Neg. LLF: 170.0291761058105
Iteration: 5, Func. Count: 35, Neg. LLF: 169.8228517641325
Iteration: 6, Func. Count: 41, Neg. LLF: 169.6768483916699
Iteration: 7, Func. Count: 47, Neg. LLF: 169.58021710816243
Iteration: 8, Func. Count: 53, Neg. LLF: 168.9470386871091
Iteration: 9, Func. Count: 59, Neg. LLF: 248.85311131735511
Iteration: 10, Func. Count: 66, Neg. LLF: 188.5286277597006
Iteration: 11, Func. Count: 73, Neg. LLF: 192.34507382306535
Iteration: 12, Func. Count: 80, Neg. LLF: 179.4432761150173
Iteration: 13, Func. Count: 87, Neg. LLF: 180.85958481030886
Iteration: 14, Func. Count: 94, Neg. LLF: 169.30132422892078
Iteration: 15, Func. Count: 101, Neg. LLF: 167.16057392982475
Iteration: 16, Func. Count: 108, Neg. LLF: 166.83940286934217
Iteration: 17, Func. Count: 114, Neg. LLF: 166.82474284883736
Iteration: 18, Func. Count: 120, Neg. LLF: 166.82386866453297
Iteration: 19, Func. Count: 126, Neg. LLF: 166.82359310272096
Iteration: 20, Func. Count: 132, Neg. LLF: 166.82310301682625
Iteration: 21, Func. Count: 138, Neg. LLF: 166.82309275999927
Iteration: 22, Func. Count: 143, Neg. LLF: 166.82309275219654
Optimization terminated successfully (Exit mode 0)
Current function value: 166.82309275999927
Iterations: 22
Function evaluations: 143
Gradient evaluations: 22
Iteration: 1, Func. Count: 5, Neg. LLF: 181.43944425682452
Iteration: 2, Func. Count: 10, Neg. LLF: 180.32914431003707
Iteration: 3, Func. Count: 14, Neg. LLF: 180.21433966059274
Iteration: 4, Func. Count: 18, Neg. LLF: 180.009798382899
Iteration: 5, Func. Count: 22, Neg. LLF: 179.56020141451765
Iteration: 6, Func. Count: 26, Neg. LLF: 179.05162929205605
Iteration: 7, Func. Count: 30, Neg. LLF: 178.69788538744575
Iteration: 8, Func. Count: 34, Neg. LLF: 178.53404078708442
Iteration: 9, Func. Count: 38, Neg. LLF: 178.48158291691382
Iteration: 10, Func. Count: 42, Neg. LLF: 178.47469546662842
Iteration: 11, Func. Count: 46, Neg. LLF: 178.47234216929948
Iteration: 12, Func. Count: 50, Neg. LLF: 178.4715712326873
Iteration: 13, Func. Count: 54, Neg. LLF: 178.47149662035332
Iteration: 14, Func. Count: 58, Neg. LLF: 178.4714862668152
Iteration: 15, Func. Count: 62, Neg. LLF: 178.47148388210167
Iteration: 16, Func. Count: 65, Neg. LLF: 178.47148388210454
Optimization terminated successfully (Exit mode 0)
Current function value: 178.47148388210167
Iterations: 16
Function evaluations: 65
Gradient evaluations: 16
Iteration: 1, Func. Count: 6, Neg. LLF: 361.20733202155526
Iteration: 2, Func. Count: 13, Neg. LLF: 260.8708823766493
Iteration: 3, Func. Count: 19, Neg. LLF: 173.31253462130383
Iteration: 4, Func. Count: 24, Neg. LLF: 173.1442295185413
Iteration: 5, Func. Count: 29, Neg. LLF: 172.81569076434357
Iteration: 6, Func. Count: 34, Neg. LLF: 172.58628243665035
Iteration: 7, Func. Count: 39, Neg. LLF: 172.53578239783957
Iteration: 8, Func. Count: 44, Neg. LLF: 172.52357568113987
Iteration: 9, Func. Count: 49, Neg. LLF: 172.51459692573886
Iteration: 10, Func. Count: 54, Neg. LLF: 172.5116700638877
Iteration: 11, Func. Count: 59, Neg. LLF: 172.51133646511252
Iteration: 12, Func. Count: 64, Neg. LLF: 172.51117316106556
Iteration: 13, Func. Count: 69, Neg. LLF: 172.51102627863318
Iteration: 14, Func. Count: 74, Neg. LLF: 172.510964308878
Iteration: 15, Func. Count: 79, Neg. LLF: 172.51095342718162
Iteration: 16, Func. Count: 83, Neg. LLF: 172.51095342732174
Optimization terminated successfully (Exit mode 0)
Current function value: 172.51095342718162
Iterations: 16
Function evaluations: 83
Gradient evaluations: 16
Iteration: 1, Func. Count: 7, Neg. LLF: 189.9977991657717
Iteration: 2, Func. Count: 14, Neg. LLF: 192.03516747006157
Iteration: 3, Func. Count: 21, Neg. LLF: 172.82192507717537
Iteration: 4, Func. Count: 27, Neg. LLF: 172.73760238294093
Iteration: 5, Func. Count: 33, Neg. LLF: 172.7151282626784
Iteration: 6, Func. Count: 39, Neg. LLF: 172.70743024366735
Iteration: 7, Func. Count: 45, Neg. LLF: 172.6610175541795
Iteration: 8, Func. Count: 51, Neg. LLF: 172.54387604209353
Iteration: 9, Func. Count: 57, Neg. LLF: 172.51955075598937
Iteration: 10, Func. Count: 63, Neg. LLF: 172.51104912248255
Iteration: 11, Func. Count: 69, Neg. LLF: 172.5109654094129
Iteration: 12, Func. Count: 75, Neg. LLF: 172.51095297531862
Iteration: 13, Func. Count: 80, Neg. LLF: 172.51095303002688
Optimization terminated successfully (Exit mode 0)
Current function value: 172.51095297531862
Iterations: 13
Function evaluations: 80
Gradient evaluations: 13
Iteration: 1, Func. Count: 8, Neg. LLF: 189.91528146043058
Iteration: 2, Func. Count: 16, Neg. LLF: 177.43172275905584
Iteration: 3, Func. Count: 24, Neg. LLF: 173.6770111781733
Iteration: 4, Func. Count: 31, Neg. LLF: 172.8480788856901
Iteration: 5, Func. Count: 38, Neg. LLF: 172.71521236260958
Iteration: 6, Func. Count: 45, Neg. LLF: 172.7029643889458
Iteration: 7, Func. Count: 52, Neg. LLF: 172.69288662650794
Iteration: 8, Func. Count: 59, Neg. LLF: 172.65477688404235
Iteration: 9, Func. Count: 66, Neg. LLF: 172.62158844075415
Iteration: 10, Func. Count: 73, Neg. LLF: 172.53928303152657
Iteration: 11, Func. Count: 80, Neg. LLF: 172.5156441843426
Iteration: 12, Func. Count: 87, Neg. LLF: 172.5111503912474
Iteration: 13, Func. Count: 94, Neg. LLF: 172.5109691283282
Iteration: 14, Func. Count: 101, Neg. LLF: 172.51095367578387
Iteration: 15, Func. Count: 108, Neg. LLF: 172.5109529747266
Optimization terminated successfully (Exit mode 0)
Current function value: 172.5109529747266
Iterations: 15
Function evaluations: 108
Gradient evaluations: 15
Iteration: 1, Func. Count: 9, Neg. LLF: 189.87884944122325
Iteration: 2, Func. Count: 18, Neg. LLF: 174.36374509464025
Iteration: 3, Func. Count: 26, Neg. LLF: 172.91990071008223
Iteration: 4, Func. Count: 34, Neg. LLF: 172.77217667959792
Iteration: 5, Func. Count: 42, Neg. LLF: 172.72039028175305
Iteration: 6, Func. Count: 50, Neg. LLF: 172.7070494946498
Iteration: 7, Func. Count: 58, Neg. LLF: 172.68731551156463
Iteration: 8, Func. Count: 66, Neg. LLF: 172.67534960388693
Iteration: 9, Func. Count: 74, Neg. LLF: 172.62193200790966
Iteration: 10, Func. Count: 82, Neg. LLF: 172.56447797200076
Iteration: 11, Func. Count: 90, Neg. LLF: 172.52362515307036
Iteration: 12, Func. Count: 98, Neg. LLF: 172.5127716084176
Iteration: 13, Func. Count: 106, Neg. LLF: 172.51130958935087
Iteration: 14, Func. Count: 114, Neg. LLF: 172.51098735063795
Iteration: 15, Func. Count: 122, Neg. LLF: 172.51095344883106
Iteration: 16, Func. Count: 130, Neg. LLF: 172.51095295973101
Optimization terminated successfully (Exit mode 0)
Current function value: 172.51095295973101
Iterations: 16
Function evaluations: 130
Gradient evaluations: 16
Iteration: 1, Func. Count: 6, Neg. LLF: 184.8327244117974
Iteration: 2, Func. Count: 13, Neg. LLF: 175.3850371299311
Iteration: 3, Func. Count: 19, Neg. LLF: 173.79549283177047
Iteration: 4, Func. Count: 24, Neg. LLF: 173.6822699948748
Iteration: 5, Func. Count: 29, Neg. LLF: 173.67616478013525
Iteration: 6, Func. Count: 34, Neg. LLF: 173.66821278313685
Iteration: 7, Func. Count: 39, Neg. LLF: 173.65090313615923
Iteration: 8, Func. Count: 44, Neg. LLF: 173.61532440645408
Iteration: 9, Func. Count: 49, Neg. LLF: 173.5776529773752
Iteration: 10, Func. Count: 54, Neg. LLF: 173.55577999658655
Iteration: 11, Func. Count: 59, Neg. LLF: 173.54357425455547
Iteration: 12, Func. Count: 64, Neg. LLF: 173.53590648757938
Iteration: 13, Func. Count: 69, Neg. LLF: 173.52984551259203
Iteration: 14, Func. Count: 74, Neg. LLF: 173.52727055795378
Iteration: 15, Func. Count: 79, Neg. LLF: 173.52689723578135
Iteration: 16, Func. Count: 84, Neg. LLF: 173.52687752472303
Iteration: 17, Func. Count: 89, Neg. LLF: 173.52687654448408
Optimization terminated successfully (Exit mode 0)
Current function value: 173.52687654448408
Iterations: 17
Function evaluations: 89
Gradient evaluations: 17
Iteration: 1, Func. Count: 7, Neg. LLF: 196.2038049428276
Iteration: 2, Func. Count: 14, Neg. LLF: 193.1268141620993
Iteration: 3, Func. Count: 21, Neg. LLF: 171.6809983727355
Iteration: 4, Func. Count: 27, Neg. LLF: 171.7881233045201
Iteration: 5, Func. Count: 34, Neg. LLF: 171.60801941579854
Iteration: 6, Func. Count: 40, Neg. LLF: 171.60165982108043
Iteration: 7, Func. Count: 46, Neg. LLF: 171.6003872770298
Iteration: 8, Func. Count: 52, Neg. LLF: 171.59788588848852
Iteration: 9, Func. Count: 58, Neg. LLF: 171.59172809107
Iteration: 10, Func. Count: 64, Neg. LLF: 171.5828363612776
Iteration: 11, Func. Count: 70, Neg. LLF: 171.57441385501667
Iteration: 12, Func. Count: 76, Neg. LLF: 171.57137835338122
Iteration: 13, Func. Count: 82, Neg. LLF: 171.57116488462083
Iteration: 14, Func. Count: 88, Neg. LLF: 171.57116018547433
Iteration: 15, Func. Count: 94, Neg. LLF: 171.57115901303237
Iteration: 16, Func. Count: 99, Neg. LLF: 171.57115901303422
Optimization terminated successfully (Exit mode 0)
Current function value: 171.57115901303237
Iterations: 16
Function evaluations: 99
Gradient evaluations: 16
Iteration: 1, Func. Count: 8, Neg. LLF: 178.5373445592285
Iteration: 2, Func. Count: 16, Neg. LLF: 180.55815267528914
Iteration: 3, Func. Count: 24, Neg. LLF: 173.08863308005473
Iteration: 4, Func. Count: 32, Neg. LLF: 171.66715555072568
Iteration: 5, Func. Count: 39, Neg. LLF: 171.69128695427537
Iteration: 6, Func. Count: 47, Neg. LLF: 171.6058210127705
Iteration: 7, Func. Count: 54, Neg. LLF: 171.60036848661593
Iteration: 8, Func. Count: 61, Neg. LLF: 171.59868618555342
Iteration: 9, Func. Count: 68, Neg. LLF: 171.5968985372471
Iteration: 10, Func. Count: 75, Neg. LLF: 171.59404674689625
Iteration: 11, Func. Count: 82, Neg. LLF: 171.58621928636055
Iteration: 12, Func. Count: 89, Neg. LLF: 171.57698690353186
Iteration: 13, Func. Count: 96, Neg. LLF: 171.57197822771013
Iteration: 14, Func. Count: 103, Neg. LLF: 171.57122837244
Iteration: 15, Func. Count: 110, Neg. LLF: 171.5711592171822
Iteration: 16, Func. Count: 116, Neg. LLF: 171.57115928983916
Optimization terminated successfully (Exit mode 0)
Current function value: 171.5711592171822
Iterations: 16
Function evaluations: 116
Gradient evaluations: 16
Iteration: 1, Func. Count: 9, Neg. LLF: 196.07759905985017
Iteration: 2, Func. Count: 18, Neg. LLF: 176.8595628130558
Iteration: 3, Func. Count: 27, Neg. LLF: 172.3096928683277
Iteration: 4, Func. Count: 35, Neg. LLF: 171.78093172204004
Iteration: 5, Func. Count: 43, Neg. LLF: 171.67138869586265
Iteration: 6, Func. Count: 51, Neg. LLF: 171.63040721155383
Iteration: 7, Func. Count: 59, Neg. LLF: 171.60241520024925
Iteration: 8, Func. Count: 67, Neg. LLF: 171.59889188653383
Iteration: 9, Func. Count: 75, Neg. LLF: 171.597710471087
Iteration: 10, Func. Count: 83, Neg. LLF: 171.59506662170747
Iteration: 11, Func. Count: 91, Neg. LLF: 171.59044797037336
Iteration: 12, Func. Count: 99, Neg. LLF: 171.58183549004207
Iteration: 13, Func. Count: 107, Neg. LLF: 171.5744823297065
Iteration: 14, Func. Count: 115, Neg. LLF: 171.57142840747977
Iteration: 15, Func. Count: 123, Neg. LLF: 171.57116351083363
Iteration: 16, Func. Count: 131, Neg. LLF: 171.5711590768404
Iteration: 17, Func. Count: 138, Neg. LLF: 171.57115914656393
Optimization terminated successfully (Exit mode 0)
Current function value: 171.5711590768404
Iterations: 17
Function evaluations: 138
Gradient evaluations: 17
Iteration: 1, Func. Count: 10, Neg. LLF: 196.056973707115
Iteration: 2, Func. Count: 20, Neg. LLF: 182.47117690988873
Iteration: 3, Func. Count: 30, Neg. LLF: 182.1634464883739
Iteration: 4, Func. Count: 40, Neg. LLF: 171.8665113068954
Iteration: 5, Func. Count: 49, Neg. LLF: 171.78069111739677
Iteration: 6, Func. Count: 59, Neg. LLF: 171.6120517450747
Iteration: 7, Func. Count: 68, Neg. LLF: 171.60132832964095
Iteration: 8, Func. Count: 77, Neg. LLF: 171.5995153906422
Iteration: 9, Func. Count: 86, Neg. LLF: 171.59822356837483
Iteration: 10, Func. Count: 95, Neg. LLF: 171.5921098952654
Iteration: 11, Func. Count: 104, Neg. LLF: 171.5839562813569
Iteration: 12, Func. Count: 113, Neg. LLF: 171.57472641873758
Iteration: 13, Func. Count: 122, Neg. LLF: 171.57154595279528
Iteration: 14, Func. Count: 131, Neg. LLF: 171.57117397442704
Iteration: 15, Func. Count: 140, Neg. LLF: 171.57116009237217
Iteration: 16, Func. Count: 149, Neg. LLF: 171.57115920196475
Optimization terminated successfully (Exit mode 0)
Current function value: 171.57115920196475
Iterations: 16
Function evaluations: 149
Gradient evaluations: 16
Iteration: 1, Func. Count: 7, Neg. LLF: 173.25294579253992
Iteration: 2, Func. Count: 14, Neg. LLF: 184.15428010218994
Iteration: 3, Func. Count: 22, Neg. LLF: 170.37669880089223
Iteration: 4, Func. Count: 28, Neg. LLF: 170.29263620744078
Iteration: 5, Func. Count: 34, Neg. LLF: 170.10879481847394
Iteration: 6, Func. Count: 40, Neg. LLF: 170.02628280341827
Iteration: 7, Func. Count: 46, Neg. LLF: 169.99892857940424
Iteration: 8, Func. Count: 52, Neg. LLF: 169.98770951763044
Iteration: 9, Func. Count: 58, Neg. LLF: 169.9798977572246
Iteration: 10, Func. Count: 64, Neg. LLF: 169.9461149792716
Iteration: 11, Func. Count: 70, Neg. LLF: 169.90175244332923
Iteration: 12, Func. Count: 76, Neg. LLF: 169.85621428770452
Iteration: 13, Func. Count: 82, Neg. LLF: 169.8389624622534
Iteration: 14, Func. Count: 88, Neg. LLF: 169.83694692634901
Iteration: 15, Func. Count: 94, Neg. LLF: 169.83693370404345
Iteration: 16, Func. Count: 100, Neg. LLF: 169.83693122959411
Iteration: 17, Func. Count: 105, Neg. LLF: 169.83693122960366
Optimization terminated successfully (Exit mode 0)
Current function value: 169.83693122959411
Iterations: 17
Function evaluations: 105
Gradient evaluations: 17
Iteration: 1, Func. Count: 8, Neg. LLF: 196.1994226066073
Iteration: 2, Func. Count: 16, Neg. LLF: 193.19506046470062
Iteration: 3, Func. Count: 24, Neg. LLF: 174.83464658311448
Iteration: 4, Func. Count: 32, Neg. LLF: 170.53229518473125
Iteration: 5, Func. Count: 39, Neg. LLF: 170.47752470849133
Iteration: 6, Func. Count: 46, Neg. LLF: 170.4276555851477
Iteration: 7, Func. Count: 53, Neg. LLF: 170.3976315155992
Iteration: 8, Func. Count: 60, Neg. LLF: 170.29154384982775
Iteration: 9, Func. Count: 67, Neg. LLF: 170.16360540951382
Iteration: 10, Func. Count: 74, Neg. LLF: 169.9745477855806
Iteration: 11, Func. Count: 81, Neg. LLF: 169.862276345034
Iteration: 12, Func. Count: 88, Neg. LLF: 169.8392213975797
Iteration: 13, Func. Count: 95, Neg. LLF: 169.83719108930515
Iteration: 14, Func. Count: 102, Neg. LLF: 169.83694591190007
Iteration: 15, Func. Count: 109, Neg. LLF: 169.8369315707789
Iteration: 16, Func. Count: 115, Neg. LLF: 169.83693160761283
Optimization terminated successfully (Exit mode 0)
Current function value: 169.8369315707789
Iterations: 16
Function evaluations: 115
Gradient evaluations: 16
Iteration: 1, Func. Count: 9, Neg. LLF: 196.15940981838907
Iteration: 2, Func. Count: 18, Neg. LLF: 175.08125931688676
Iteration: 3, Func. Count: 27, Neg. LLF: 179.64141150375212
Iteration: 4, Func. Count: 36, Neg. LLF: 173.71713573476248
Iteration: 5, Func. Count: 45, Neg. LLF: 170.89349503458786
Iteration: 6, Func. Count: 54, Neg. LLF: 170.48905812773216
Iteration: 7, Func. Count: 62, Neg. LLF: 170.43393960221564
Iteration: 8, Func. Count: 70, Neg. LLF: 170.41195203737064
Iteration: 9, Func. Count: 78, Neg. LLF: 170.2726503177062
Iteration: 10, Func. Count: 86, Neg. LLF: 170.11659701043806
Iteration: 11, Func. Count: 94, Neg. LLF: 169.88813539173765
Iteration: 12, Func. Count: 102, Neg. LLF: 169.84427104634042
Iteration: 13, Func. Count: 110, Neg. LLF: 169.83731238860065
Iteration: 14, Func. Count: 118, Neg. LLF: 169.8369352390187
Iteration: 15, Func. Count: 126, Neg. LLF: 169.83693142761697
Iteration: 16, Func. Count: 133, Neg. LLF: 169.83693150093833
Optimization terminated successfully (Exit mode 0)
Current function value: 169.83693142761697
Iterations: 16
Function evaluations: 133
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 171.97711738009588
Iteration: 2, Func. Count: 19, Neg. LLF: 172.94789038357476
Iteration: 3, Func. Count: 30, Neg. LLF: 190.33204108953024
Iteration: 4, Func. Count: 40, Neg. LLF: 182.05940565784007
Iteration: 5, Func. Count: 50, Neg. LLF: 186.77456098643984
Iteration: 6, Func. Count: 60, Neg. LLF: 180.24511803337796
Iteration: 7, Func. Count: 70, Neg. LLF: 180.10045312432158
Iteration: 8, Func. Count: 80, Neg. LLF: 180.0801391751033
Iteration: 9, Func. Count: 90, Neg. LLF: 180.15173624279421
Iteration: 10, Func. Count: 100, Neg. LLF: 171.27609136633978
Iteration: 11, Func. Count: 110, Neg. LLF: 170.10447736947552
Iteration: 12, Func. Count: 120, Neg. LLF: 170.0184571199717
Iteration: 13, Func. Count: 129, Neg. LLF: 169.98991310442855
Iteration: 14, Func. Count: 138, Neg. LLF: 169.9811964490343
Iteration: 15, Func. Count: 147, Neg. LLF: 169.92927283968558
Iteration: 16, Func. Count: 156, Neg. LLF: 169.83885772185008
Iteration: 17, Func. Count: 165, Neg. LLF: 169.81748502880976
Iteration: 18, Func. Count: 174, Neg. LLF: 169.79462248633783
Iteration: 19, Func. Count: 183, Neg. LLF: 169.79223434907846
Iteration: 20, Func. Count: 192, Neg. LLF: 169.7916798571456
Iteration: 21, Func. Count: 201, Neg. LLF: 169.7916259165273
Iteration: 22, Func. Count: 210, Neg. LLF: 169.79162421038546
Iteration: 23, Func. Count: 218, Neg. LLF: 169.79162421045692
Optimization terminated successfully (Exit mode 0)
Current function value: 169.79162421038546
Iterations: 23
Function evaluations: 218
Gradient evaluations: 23
Iteration: 1, Func. Count: 11, Neg. LLF: 172.75090045271017
Iteration: 2, Func. Count: 21, Neg. LLF: 172.29473246133827
Iteration: 3, Func. Count: 33, Neg. LLF: 183.67920780363997
Iteration: 4, Func. Count: 44, Neg. LLF: 183.29344914923504
Iteration: 5, Func. Count: 55, Neg. LLF: 179.47157301161357
Iteration: 6, Func. Count: 66, Neg. LLF: 179.64973036760836
Iteration: 7, Func. Count: 77, Neg. LLF: 179.84346052521693
Iteration: 8, Func. Count: 88, Neg. LLF: 179.99175510116325
Iteration: 9, Func. Count: 99, Neg. LLF: 171.20463107906866
Iteration: 10, Func. Count: 110, Neg. LLF: 170.04862127076743
Iteration: 11, Func. Count: 120, Neg. LLF: 170.01964217441727
Iteration: 12, Func. Count: 130, Neg. LLF: 170.07049700489736
Iteration: 13, Func. Count: 141, Neg. LLF: 169.99819908401824
Iteration: 14, Func. Count: 151, Neg. LLF: 169.980690176089
Iteration: 15, Func. Count: 161, Neg. LLF: 169.95762145154933
Iteration: 16, Func. Count: 171, Neg. LLF: 169.931140319293
Iteration: 17, Func. Count: 181, Neg. LLF: 169.86283566173083
Iteration: 18, Func. Count: 191, Neg. LLF: 169.82053164857828
Iteration: 19, Func. Count: 201, Neg. LLF: 169.795832694432
Iteration: 20, Func. Count: 211, Neg. LLF: 169.7919785239226
Iteration: 21, Func. Count: 221, Neg. LLF: 169.7916441687981
Iteration: 22, Func. Count: 231, Neg. LLF: 169.79162428464218
Iteration: 23, Func. Count: 240, Neg. LLF: 169.79162436051885
Optimization terminated successfully (Exit mode 0)
Current function value: 169.79162428464218
Iterations: 23
Function evaluations: 240
Gradient evaluations: 23
Iteration: 1, Func. Count: 8, Neg. LLF: 173.40473676280973
Iteration: 2, Func. Count: 16, Neg. LLF: 184.17901969550056
Iteration: 3, Func. Count: 25, Neg. LLF: 170.3864113959471
Iteration: 4, Func. Count: 32, Neg. LLF: 170.3152746334883
Iteration: 5, Func. Count: 39, Neg. LLF: 170.21192159590612
Iteration: 6, Func. Count: 46, Neg. LLF: 170.05125878359453
Iteration: 7, Func. Count: 53, Neg. LLF: 169.9988099086113
Iteration: 8, Func. Count: 60, Neg. LLF: 169.96997261038615
Iteration: 9, Func. Count: 67, Neg. LLF: 169.9652282204459
Iteration: 10, Func. Count: 74, Neg. LLF: 169.93889272309923
Iteration: 11, Func. Count: 81, Neg. LLF: 169.8536324593959
Iteration: 12, Func. Count: 88, Neg. LLF: 169.83816863747083
Iteration: 13, Func. Count: 95, Neg. LLF: 169.83710320329735
Iteration: 14, Func. Count: 102, Neg. LLF: 169.8369501705483
Iteration: 15, Func. Count: 109, Neg. LLF: 169.8369312122745
Iteration: 16, Func. Count: 115, Neg. LLF: 169.83693127588958
Optimization terminated successfully (Exit mode 0)
Current function value: 169.8369312122745
Iterations: 16
Function evaluations: 115
Gradient evaluations: 16
Iteration: 1, Func. Count: 9, Neg. LLF: 196.1301747277042
Iteration: 2, Func. Count: 18, Neg. LLF: 193.13852820018408
Iteration: 3, Func. Count: 27, Neg. LLF: 174.91907869263625
Iteration: 4, Func. Count: 36, Neg. LLF: 170.56230154408922
Iteration: 5, Func. Count: 44, Neg. LLF: 170.4890644750746
Iteration: 6, Func. Count: 52, Neg. LLF: 170.44174660160436
Iteration: 7, Func. Count: 60, Neg. LLF: 170.40081066661665
Iteration: 8, Func. Count: 68, Neg. LLF: 170.34275271592904
Iteration: 9, Func. Count: 76, Neg. LLF: 170.2673485305602
Iteration: 10, Func. Count: 84, Neg. LLF: 170.11581279610982
Iteration: 11, Func. Count: 92, Neg. LLF: 169.89375853854594
Iteration: 12, Func. Count: 100, Neg. LLF: 169.84454080400292
Iteration: 13, Func. Count: 108, Neg. LLF: 169.83791573098196
Iteration: 14, Func. Count: 116, Neg. LLF: 169.8371148531843
Iteration: 15, Func. Count: 124, Neg. LLF: 169.83694186422045
Iteration: 16, Func. Count: 132, Neg. LLF: 169.83693142189315
Iteration: 17, Func. Count: 139, Neg. LLF: 169.83693145871246
Optimization terminated successfully (Exit mode 0)
Current function value: 169.83693142189315
Iterations: 17
Function evaluations: 139
Gradient evaluations: 17
Iteration: 1, Func. Count: 10, Neg. LLF: 187.01754706154418
Iteration: 2, Func. Count: 20, Neg. LLF: 175.53592009756963
Iteration: 3, Func. Count: 30, Neg. LLF: 171.09923199453533
Iteration: 4, Func. Count: 39, Neg. LLF: 174.20360841195185
Iteration: 5, Func. Count: 49, Neg. LLF: 177.93184184531188
Iteration: 6, Func. Count: 59, Neg. LLF: 170.45955822865707
Iteration: 7, Func. Count: 68, Neg. LLF: 171.57961551889125
Iteration: 8, Func. Count: 78, Neg. LLF: 170.38062345812838
Iteration: 9, Func. Count: 87, Neg. LLF: 170.35377238818765
Iteration: 10, Func. Count: 96, Neg. LLF: 170.22388529700692
Iteration: 11, Func. Count: 105, Neg. LLF: 169.91252168006937
Iteration: 12, Func. Count: 114, Neg. LLF: 169.84125066514383
Iteration: 13, Func. Count: 123, Neg. LLF: 169.83794205839342
Iteration: 14, Func. Count: 132, Neg. LLF: 169.8371300318291
Iteration: 15, Func. Count: 141, Neg. LLF: 169.83693746796237
Iteration: 16, Func. Count: 150, Neg. LLF: 169.83693129026727
Iteration: 17, Func. Count: 158, Neg. LLF: 169.83693136358622
Optimization terminated successfully (Exit mode 0)
Current function value: 169.83693129026727
Iterations: 17
Function evaluations: 158
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 172.77783892428124
Iteration: 2, Func. Count: 21, Neg. LLF: 172.99670944753325
Iteration: 3, Func. Count: 33, Neg. LLF: 181.82946823891638
Iteration: 4, Func. Count: 44, Neg. LLF: 183.13027030314922
Iteration: 5, Func. Count: 55, Neg. LLF: 181.22651657832756
Iteration: 6, Func. Count: 66, Neg. LLF: 179.62566587323786
Iteration: 7, Func. Count: 77, Neg. LLF: 179.95111653627538
Iteration: 8, Func. Count: 88, Neg. LLF: 180.0947835637612
Iteration: 9, Func. Count: 99, Neg. LLF: 170.80117573680258
Iteration: 10, Func. Count: 110, Neg. LLF: 170.05183787931452
Iteration: 11, Func. Count: 120, Neg. LLF: 170.04843487644666
Iteration: 12, Func. Count: 131, Neg. LLF: 170.0148540015556
Iteration: 13, Func. Count: 141, Neg. LLF: 169.9987120655507
Iteration: 14, Func. Count: 151, Neg. LLF: 169.98579119011515
Iteration: 15, Func. Count: 161, Neg. LLF: 169.9730837243549
Iteration: 16, Func. Count: 171, Neg. LLF: 169.93826269871087
Iteration: 17, Func. Count: 181, Neg. LLF: 169.89296354164443
Iteration: 18, Func. Count: 191, Neg. LLF: 169.83566083705404
Iteration: 19, Func. Count: 201, Neg. LLF: 169.80379087505943
Iteration: 20, Func. Count: 211, Neg. LLF: 169.7927232612953
Iteration: 21, Func. Count: 221, Neg. LLF: 169.79175954674835
Iteration: 22, Func. Count: 231, Neg. LLF: 169.79162848606202
Iteration: 23, Func. Count: 241, Neg. LLF: 169.79162421519888
Iteration: 24, Func. Count: 250, Neg. LLF: 169.7916242151714
Optimization terminated successfully (Exit mode 0)
Current function value: 169.79162421519888
Iterations: 24
Function evaluations: 250
Gradient evaluations: 24
Iteration: 1, Func. Count: 12, Neg. LLF: 172.7698839407237
Iteration: 2, Func. Count: 23, Neg. LLF: 172.54370291656724
Iteration: 3, Func. Count: 36, Neg. LLF: 180.77452142257326
Iteration: 4, Func. Count: 48, Neg. LLF: 181.1487928626851
Iteration: 5, Func. Count: 60, Neg. LLF: 183.8206583124742
Iteration: 6, Func. Count: 72, Neg. LLF: 181.1220396571088
Iteration: 7, Func. Count: 84, Neg. LLF: 180.02252047496884
Iteration: 8, Func. Count: 96, Neg. LLF: 180.09348349104573
Iteration: 9, Func. Count: 108, Neg. LLF: 171.50308610377033
Iteration: 10, Func. Count: 120, Neg. LLF: 170.10551790426715
Iteration: 11, Func. Count: 131, Neg. LLF: 170.03028153151155
Iteration: 12, Func. Count: 142, Neg. LLF: 170.01308389570488
Iteration: 13, Func. Count: 153, Neg. LLF: 169.9912192696497
Iteration: 14, Func. Count: 164, Neg. LLF: 169.9812555849403
Iteration: 15, Func. Count: 175, Neg. LLF: 169.95113693376575
Iteration: 16, Func. Count: 186, Neg. LLF: 169.9210868281212
Iteration: 17, Func. Count: 197, Neg. LLF: 169.8643554918007
Iteration: 18, Func. Count: 208, Neg. LLF: 169.82172118959826
Iteration: 19, Func. Count: 219, Neg. LLF: 169.79897900556665
Iteration: 20, Func. Count: 230, Neg. LLF: 169.79236259640066
Iteration: 21, Func. Count: 241, Neg. LLF: 169.79166648213678
Iteration: 22, Func. Count: 252, Neg. LLF: 169.7916243528266
Iteration: 23, Func. Count: 262, Neg. LLF: 169.79162442864663
Optimization terminated successfully (Exit mode 0)
Current function value: 169.7916243528266
Iterations: 23
Function evaluations: 262
Gradient evaluations: 23
Iteration: 1, Func. Count: 5, Neg. LLF: 184.21958286465767
Iteration: 2, Func. Count: 10, Neg. LLF: 182.8203413521721
Iteration: 3, Func. Count: 14, Neg. LLF: 182.61553498594046
Iteration: 4, Func. Count: 18, Neg. LLF: 182.39335723578372
Iteration: 5, Func. Count: 22, Neg. LLF: 181.35439857695536
Iteration: 6, Func. Count: 26, Neg. LLF: 180.07293647995735
Iteration: 7, Func. Count: 30, Neg. LLF: 179.81384802899356
Iteration: 8, Func. Count: 34, Neg. LLF: 179.5453821025438
Iteration: 9, Func. Count: 38, Neg. LLF: 179.60161391886413
Iteration: 10, Func. Count: 43, Neg. LLF: 179.49764866781751
Iteration: 11, Func. Count: 47, Neg. LLF: 179.49603193955392
Iteration: 12, Func. Count: 51, Neg. LLF: 179.495861466112
Iteration: 13, Func. Count: 55, Neg. LLF: 179.49585814547936
Iteration: 14, Func. Count: 58, Neg. LLF: 179.49585814551605
Optimization terminated successfully (Exit mode 0)
Current function value: 179.49585814547936
Iterations: 14
Function evaluations: 58
Gradient evaluations: 14
Iteration: 1, Func. Count: 6, Neg. LLF: 233.90988345804598
Iteration: 2, Func. Count: 12, Neg. LLF: 189.64460228129525
Iteration: 3, Func. Count: 19, Neg. LLF: 205.48155886186262
Iteration: 4, Func. Count: 25, Neg. LLF: 173.92120938616247
Iteration: 5, Func. Count: 30, Neg. LLF: 173.91266324793955
Iteration: 6, Func. Count: 35, Neg. LLF: 173.91064272591723
Iteration: 7, Func. Count: 40, Neg. LLF: 173.9084996683129
Iteration: 8, Func. Count: 45, Neg. LLF: 173.90447700596147
Iteration: 9, Func. Count: 50, Neg. LLF: 173.9000382124061
Iteration: 10, Func. Count: 55, Neg. LLF: 173.89731028542408
Iteration: 11, Func. Count: 60, Neg. LLF: 173.8967761617937
Iteration: 12, Func. Count: 65, Neg. LLF: 173.89673623134988
Iteration: 13, Func. Count: 70, Neg. LLF: 173.89673437498314
Iteration: 14, Func. Count: 74, Neg. LLF: 173.89673437497865
Optimization terminated successfully (Exit mode 0)
Current function value: 173.89673437498314
Iterations: 14
Function evaluations: 74
Gradient evaluations: 14
Iteration: 1, Func. Count: 7, Neg. LLF: 190.84158281014655
Iteration: 2, Func. Count: 14, Neg. LLF: 177.58074758245024
Iteration: 3, Func. Count: 21, Neg. LLF: 175.38376267940362
Iteration: 4, Func. Count: 27, Neg. LLF: 175.0035949232566
Iteration: 5, Func. Count: 33, Neg. LLF: 174.98307162230103
Iteration: 6, Func. Count: 39, Neg. LLF: 174.84323172757374
Iteration: 7, Func. Count: 45, Neg. LLF: 174.5724489331996
Iteration: 8, Func. Count: 51, Neg. LLF: 174.26463855488666
Iteration: 9, Func. Count: 57, Neg. LLF: 174.06059306354376
Iteration: 10, Func. Count: 63, Neg. LLF: 173.90280758875664
Iteration: 11, Func. Count: 69, Neg. LLF: 173.89879660588454
Iteration: 12, Func. Count: 75, Neg. LLF: 173.89683243387813
Iteration: 13, Func. Count: 81, Neg. LLF: 173.89673967531516
Iteration: 14, Func. Count: 87, Neg. LLF: 173.89673444401572
Iteration: 15, Func. Count: 92, Neg. LLF: 173.89673455506744
Optimization terminated successfully (Exit mode 0)
Current function value: 173.89673444401572
Iterations: 15
Function evaluations: 92
Gradient evaluations: 15
Iteration: 1, Func. Count: 8, Neg. LLF: 209.1942343920594
Iteration: 2, Func. Count: 16, Neg. LLF: 175.75606045622993
Iteration: 3, Func. Count: 23, Neg. LLF: 175.2154791090789
Iteration: 4, Func. Count: 30, Neg. LLF: 176.31623402502373
Iteration: 5, Func. Count: 38, Neg. LLF: 175.000366912376
Iteration: 6, Func. Count: 45, Neg. LLF: 174.97009609568232
Iteration: 7, Func. Count: 52, Neg. LLF: 174.93502461496163
Iteration: 8, Func. Count: 59, Neg. LLF: 174.7067560424109
Iteration: 9, Func. Count: 66, Neg. LLF: 174.0362607335128
Iteration: 10, Func. Count: 73, Neg. LLF: 173.96440821206804
Iteration: 11, Func. Count: 80, Neg. LLF: 173.90688207931484
Iteration: 12, Func. Count: 87, Neg. LLF: 173.8978280348928
Iteration: 13, Func. Count: 94, Neg. LLF: 173.89674277213416
Iteration: 14, Func. Count: 101, Neg. LLF: 173.89673462904224
Iteration: 15, Func. Count: 107, Neg. LLF: 173.89673479144602
Optimization terminated successfully (Exit mode 0)
Current function value: 173.89673462904224
Iterations: 15
Function evaluations: 107
Gradient evaluations: 15
Iteration: 1, Func. Count: 9, Neg. LLF: 209.2191463840193
Iteration: 2, Func. Count: 18, Neg. LLF: 175.7024274058792
Iteration: 3, Func. Count: 26, Neg. LLF: 175.44671022862917
Iteration: 4, Func. Count: 34, Neg. LLF: 175.06395787271717
Iteration: 5, Func. Count: 42, Neg. LLF: 174.9810086121184
Iteration: 6, Func. Count: 50, Neg. LLF: 174.94786987755066
Iteration: 7, Func. Count: 58, Neg. LLF: 174.9130093508153
Iteration: 8, Func. Count: 66, Neg. LLF: 174.69621803238886
Iteration: 9, Func. Count: 74, Neg. LLF: 173.9360635589841
Iteration: 10, Func. Count: 82, Neg. LLF: 173.90255657466855
Iteration: 11, Func. Count: 90, Neg. LLF: 173.8971752912824
Iteration: 12, Func. Count: 98, Neg. LLF: 173.89739176593366
Iteration: 13, Func. Count: 107, Neg. LLF: 173.8967345138421
Iteration: 14, Func. Count: 114, Neg. LLF: 173.89673467521274
Optimization terminated successfully (Exit mode 0)
Current function value: 173.8967345138421
Iterations: 14
Function evaluations: 114
Gradient evaluations: 14
Iteration: 1, Func. Count: 6, Neg. LLF: 181.90783141750137
Iteration: 2, Func. Count: 12, Neg. LLF: 180.31715748731165
Iteration: 3, Func. Count: 17, Neg. LLF: 180.2361141082451
Iteration: 4, Func. Count: 22, Neg. LLF: 180.03305459914634
Iteration: 5, Func. Count: 27, Neg. LLF: 179.434643789645
Iteration: 6, Func. Count: 32, Neg. LLF: 179.04812557075425
Iteration: 7, Func. Count: 37, Neg. LLF: 178.55433081883095
Iteration: 8, Func. Count: 42, Neg. LLF: 178.4818612508199
Iteration: 9, Func. Count: 47, Neg. LLF: 178.47186771256966
Iteration: 10, Func. Count: 52, Neg. LLF: 178.4715018346801
Iteration: 11, Func. Count: 57, Neg. LLF: 178.471485781632
Iteration: 12, Func. Count: 62, Neg. LLF: 178.4714837166005
Iteration: 13, Func. Count: 66, Neg. LLF: 178.47148371660379
Optimization terminated successfully (Exit mode 0)
Current function value: 178.4714837166005
Iterations: 13
Function evaluations: 66
Gradient evaluations: 13
Iteration: 1, Func. Count: 7, Neg. LLF: 254.40951970163871
Iteration: 2, Func. Count: 14, Neg. LLF: 174.71025753271024
Iteration: 3, Func. Count: 21, Neg. LLF: 173.69023276344146
Iteration: 4, Func. Count: 28, Neg. LLF: 183.5839760391159
Iteration: 5, Func. Count: 36, Neg. LLF: 173.07511772135976
Iteration: 6, Func. Count: 42, Neg. LLF: 172.91655105166654
Iteration: 7, Func. Count: 48, Neg. LLF: 172.76182719407507
Iteration: 8, Func. Count: 54, Neg. LLF: 172.56427450594512
Iteration: 9, Func. Count: 60, Neg. LLF: 172.5155992926667
Iteration: 10, Func. Count: 66, Neg. LLF: 172.51123106361288
Iteration: 11, Func. Count: 72, Neg. LLF: 172.51097617690027
Iteration: 12, Func. Count: 78, Neg. LLF: 172.51095838906684
Iteration: 13, Func. Count: 84, Neg. LLF: 172.51095394249313
Iteration: 14, Func. Count: 90, Neg. LLF: 172.5109529918213
Optimization terminated successfully (Exit mode 0)
Current function value: 172.5109529918213
Iterations: 14
Function evaluations: 90
Gradient evaluations: 14
Iteration: 1, Func. Count: 8, Neg. LLF: 190.2295538048284
Iteration: 2, Func. Count: 16, Neg. LLF: 184.30942376383686
Iteration: 3, Func. Count: 24, Neg. LLF: 172.75136328222803
Iteration: 4, Func. Count: 31, Neg. LLF: 172.7248145791599
Iteration: 5, Func. Count: 38, Neg. LLF: 172.71121997841345
Iteration: 6, Func. Count: 45, Neg. LLF: 172.7014676690344
Iteration: 7, Func. Count: 52, Neg. LLF: 172.67112284498424
Iteration: 8, Func. Count: 59, Neg. LLF: 172.6088580823858
Iteration: 9, Func. Count: 66, Neg. LLF: 172.54919576430126
Iteration: 10, Func. Count: 73, Neg. LLF: 172.51448689857605
Iteration: 11, Func. Count: 80, Neg. LLF: 172.51107407720113
Iteration: 12, Func. Count: 87, Neg. LLF: 172.51096720169866
Iteration: 13, Func. Count: 94, Neg. LLF: 172.51095327425782
Iteration: 14, Func. Count: 100, Neg. LLF: 172.51095332898245
Optimization terminated successfully (Exit mode 0)
Current function value: 172.51095327425782
Iterations: 14
Function evaluations: 100
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 190.1537431493247
Iteration: 2, Func. Count: 18, Neg. LLF: 175.5476365691492
Iteration: 3, Func. Count: 27, Neg. LLF: 172.79163125683908
Iteration: 4, Func. Count: 35, Neg. LLF: 172.72990230932652
Iteration: 5, Func. Count: 43, Neg. LLF: 172.71500152513624
Iteration: 6, Func. Count: 51, Neg. LLF: 172.7051300157742
Iteration: 7, Func. Count: 59, Neg. LLF: 172.68613059546377
Iteration: 8, Func. Count: 67, Neg. LLF: 172.63747997377476
Iteration: 9, Func. Count: 75, Neg. LLF: 172.56106204276637
Iteration: 10, Func. Count: 83, Neg. LLF: 172.51568420760702
Iteration: 11, Func. Count: 91, Neg. LLF: 172.51106286628877
Iteration: 12, Func. Count: 99, Neg. LLF: 172.5109597054832
Iteration: 13, Func. Count: 107, Neg. LLF: 172.51095314464374
Iteration: 14, Func. Count: 114, Neg. LLF: 172.5109532674355
Optimization terminated successfully (Exit mode 0)
Current function value: 172.51095314464374
Iterations: 14
Function evaluations: 114
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 189.90309178150255
Iteration: 2, Func. Count: 20, Neg. LLF: 174.43651710563216
Iteration: 3, Func. Count: 29, Neg. LLF: 172.87978447752351
Iteration: 4, Func. Count: 38, Neg. LLF: 172.75372024964557
Iteration: 5, Func. Count: 47, Neg. LLF: 172.71640462449187
Iteration: 6, Func. Count: 56, Neg. LLF: 172.7044289770402
Iteration: 7, Func. Count: 65, Neg. LLF: 172.68624661690887
Iteration: 8, Func. Count: 74, Neg. LLF: 172.67130145465205
Iteration: 9, Func. Count: 83, Neg. LLF: 172.61944865292148
Iteration: 10, Func. Count: 92, Neg. LLF: 172.55735911749304
Iteration: 11, Func. Count: 101, Neg. LLF: 172.5210081427664
Iteration: 12, Func. Count: 110, Neg. LLF: 172.51223733734562
Iteration: 13, Func. Count: 119, Neg. LLF: 172.5113336247528
Iteration: 14, Func. Count: 128, Neg. LLF: 172.5109653366667
Iteration: 15, Func. Count: 137, Neg. LLF: 172.5109532609133
Iteration: 16, Func. Count: 145, Neg. LLF: 172.5109533674138
Optimization terminated successfully (Exit mode 0)
Current function value: 172.5109532609133
Iterations: 16
Function evaluations: 145
Gradient evaluations: 16
Iteration: 1, Func. Count: 7, Neg. LLF: 185.3831090482856
Iteration: 2, Func. Count: 15, Neg. LLF: 175.6534693352374
Iteration: 3, Func. Count: 22, Neg. LLF: 173.76772672551274
Iteration: 4, Func. Count: 28, Neg. LLF: 173.69967890935018
Iteration: 5, Func. Count: 34, Neg. LLF: 173.6745385004762
Iteration: 6, Func. Count: 40, Neg. LLF: 173.65902237419186
Iteration: 7, Func. Count: 46, Neg. LLF: 173.65418406704762
Iteration: 8, Func. Count: 52, Neg. LLF: 173.63742203242973
Iteration: 9, Func. Count: 58, Neg. LLF: 173.61759212106418
Iteration: 10, Func. Count: 64, Neg. LLF: 173.57617245855528
Iteration: 11, Func. Count: 70, Neg. LLF: 173.54527741160416
Iteration: 12, Func. Count: 76, Neg. LLF: 173.5306032973192
Iteration: 13, Func. Count: 82, Neg. LLF: 173.527760530532
Iteration: 14, Func. Count: 88, Neg. LLF: 173.52712331631145
Iteration: 15, Func. Count: 94, Neg. LLF: 173.52688976631853
Iteration: 16, Func. Count: 100, Neg. LLF: 173.5268768414472
Iteration: 17, Func. Count: 105, Neg. LLF: 173.52687684143424
Optimization terminated successfully (Exit mode 0)
Current function value: 173.5268768414472
Iterations: 17
Function evaluations: 105
Gradient evaluations: 17
Iteration: 1, Func. Count: 8, Neg. LLF: 278.15024376287636
Iteration: 2, Func. Count: 16, Neg. LLF: 262.44538322469936
Iteration: 3, Func. Count: 24, Neg. LLF: 173.87437117774473
Iteration: 4, Func. Count: 32, Neg. LLF: 172.1462424375947
Iteration: 5, Func. Count: 39, Neg. LLF: 173.02897594871533
Iteration: 6, Func. Count: 47, Neg. LLF: 172.04336929537746
Iteration: 7, Func. Count: 54, Neg. LLF: 172.01179568125912
Iteration: 8, Func. Count: 61, Neg. LLF: 171.97420809580407
Iteration: 9, Func. Count: 68, Neg. LLF: 171.88912596356278
Iteration: 10, Func. Count: 75, Neg. LLF: 171.75305326726738
Iteration: 11, Func. Count: 82, Neg. LLF: 171.612701622876
Iteration: 12, Func. Count: 89, Neg. LLF: 171.57431566253194
Iteration: 13, Func. Count: 96, Neg. LLF: 171.5718929211355
Iteration: 14, Func. Count: 103, Neg. LLF: 171.57124902549177
Iteration: 15, Func. Count: 110, Neg. LLF: 171.5711937390069
Iteration: 16, Func. Count: 117, Neg. LLF: 171.57116570690755
Iteration: 17, Func. Count: 124, Neg. LLF: 171.57115971345232
Iteration: 18, Func. Count: 131, Neg. LLF: 171.57115906746432
Optimization terminated successfully (Exit mode 0)
Current function value: 171.57115906746432
Iterations: 18
Function evaluations: 131
Gradient evaluations: 18
Iteration: 1, Func. Count: 9, Neg. LLF: 195.99334802330196
Iteration: 2, Func. Count: 18, Neg. LLF: 175.20128784811962
Iteration: 3, Func. Count: 27, Neg. LLF: 173.53482428545422
Iteration: 4, Func. Count: 37, Neg. LLF: 171.74419208745937
Iteration: 5, Func. Count: 45, Neg. LLF: 171.75425777315925
Iteration: 6, Func. Count: 54, Neg. LLF: 171.606683629967
Iteration: 7, Func. Count: 62, Neg. LLF: 171.60120172688428
Iteration: 8, Func. Count: 70, Neg. LLF: 171.59998386193246
Iteration: 9, Func. Count: 78, Neg. LLF: 171.59735624843984
Iteration: 10, Func. Count: 86, Neg. LLF: 171.58937508842806
Iteration: 11, Func. Count: 94, Neg. LLF: 171.58075648715348
Iteration: 12, Func. Count: 102, Neg. LLF: 171.57393831549018
Iteration: 13, Func. Count: 110, Neg. LLF: 171.5713664204065
Iteration: 14, Func. Count: 118, Neg. LLF: 171.5711689506077
Iteration: 15, Func. Count: 126, Neg. LLF: 171.57115921360435
Iteration: 16, Func. Count: 133, Neg. LLF: 171.5711592862654
Optimization terminated successfully (Exit mode 0)
Current function value: 171.57115921360435
Iterations: 16
Function evaluations: 133
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 195.9813594011883
Iteration: 2, Func. Count: 20, Neg. LLF: 177.26164773608429
Iteration: 3, Func. Count: 30, Neg. LLF: 171.69693724584283
Iteration: 4, Func. Count: 39, Neg. LLF: 171.7350093380639
Iteration: 5, Func. Count: 49, Neg. LLF: 171.70483316072713
Iteration: 6, Func. Count: 59, Neg. LLF: 171.60177136857956
Iteration: 7, Func. Count: 68, Neg. LLF: 171.60052307921845
Iteration: 8, Func. Count: 77, Neg. LLF: 171.59571251270415
Iteration: 9, Func. Count: 86, Neg. LLF: 171.59179885902353
Iteration: 10, Func. Count: 95, Neg. LLF: 171.58396773983512
Iteration: 11, Func. Count: 104, Neg. LLF: 171.5758478797337
Iteration: 12, Func. Count: 113, Neg. LLF: 171.5720240581888
Iteration: 13, Func. Count: 122, Neg. LLF: 171.57119731624223
Iteration: 14, Func. Count: 131, Neg. LLF: 171.57115942771463
Iteration: 15, Func. Count: 139, Neg. LLF: 171.5711594974599
Optimization terminated successfully (Exit mode 0)
Current function value: 171.57115942771463
Iterations: 15
Function evaluations: 139
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 195.96259666975354
Iteration: 2, Func. Count: 22, Neg. LLF: 177.015915879814
Iteration: 3, Func. Count: 33, Neg. LLF: 172.01516414363218
Iteration: 4, Func. Count: 43, Neg. LLF: 171.8378459354576
Iteration: 5, Func. Count: 53, Neg. LLF: 172.04221033982833
Iteration: 6, Func. Count: 64, Neg. LLF: 171.61583679280724
Iteration: 7, Func. Count: 74, Neg. LLF: 171.60214796653023
Iteration: 8, Func. Count: 84, Neg. LLF: 171.60068113343567
Iteration: 9, Func. Count: 94, Neg. LLF: 171.59749520785522
Iteration: 10, Func. Count: 104, Neg. LLF: 171.59552975798601
Iteration: 11, Func. Count: 114, Neg. LLF: 171.58456009410205
Iteration: 12, Func. Count: 124, Neg. LLF: 171.5733895660329
Iteration: 13, Func. Count: 134, Neg. LLF: 171.57166956817107
Iteration: 14, Func. Count: 144, Neg. LLF: 171.571174656254
Iteration: 15, Func. Count: 154, Neg. LLF: 171.57116030729412
Iteration: 16, Func. Count: 164, Neg. LLF: 171.57115902863225
Iteration: 17, Func. Count: 173, Neg. LLF: 171.57115910207435
Optimization terminated successfully (Exit mode 0)
Current function value: 171.57115902863225
Iterations: 17
Function evaluations: 173
Gradient evaluations: 17
Iteration: 1, Func. Count: 8, Neg. LLF: 173.37447845034427
Iteration: 2, Func. Count: 16, Neg. LLF: 184.25236349390045
Iteration: 3, Func. Count: 24, Neg. LLF: 170.56944721878847
Iteration: 4, Func. Count: 31, Neg. LLF: 170.3932074426595
Iteration: 5, Func. Count: 38, Neg. LLF: 170.71239499806182
Iteration: 6, Func. Count: 46, Neg. LLF: 170.13174364765797
Iteration: 7, Func. Count: 53, Neg. LLF: 170.0570662435588
Iteration: 8, Func. Count: 60, Neg. LLF: 169.99870850206992
Iteration: 9, Func. Count: 67, Neg. LLF: 169.98187353791386
Iteration: 10, Func. Count: 74, Neg. LLF: 169.9751496090703
Iteration: 11, Func. Count: 81, Neg. LLF: 169.95725830443584
Iteration: 12, Func. Count: 88, Neg. LLF: 169.93027695087366
Iteration: 13, Func. Count: 95, Neg. LLF: 169.88059765654614
Iteration: 14, Func. Count: 102, Neg. LLF: 169.84920775277874
Iteration: 15, Func. Count: 109, Neg. LLF: 169.8380813106108
Iteration: 16, Func. Count: 116, Neg. LLF: 169.83693375064271
Iteration: 17, Func. Count: 123, Neg. LLF: 169.83693114765003
Iteration: 18, Func. Count: 129, Neg. LLF: 169.8369311476435
Optimization terminated successfully (Exit mode 0)
Current function value: 169.83693114765003
Iterations: 18
Function evaluations: 129
Gradient evaluations: 18
Iteration: 1, Func. Count: 9, Neg. LLF: 277.93372481940133
Iteration: 2, Func. Count: 18, Neg. LLF: 262.4430820050674
Iteration: 3, Func. Count: 27, Neg. LLF: 174.11517117017183
Iteration: 4, Func. Count: 36, Neg. LLF: 174.7754834815479
Iteration: 5, Func. Count: 45, Neg. LLF: 171.73272656641456
Iteration: 6, Func. Count: 53, Neg. LLF: 171.68253202312343
Iteration: 7, Func. Count: 61, Neg. LLF: 171.61401673973145
Iteration: 8, Func. Count: 69, Neg. LLF: 171.5264620418528
Iteration: 9, Func. Count: 77, Neg. LLF: 171.44726199137637
Iteration: 10, Func. Count: 85, Neg. LLF: 171.33278991613147
Iteration: 11, Func. Count: 93, Neg. LLF: 171.15081875434922
Iteration: 12, Func. Count: 101, Neg. LLF: 170.91499078739722
Iteration: 13, Func. Count: 109, Neg. LLF: 170.2686890500555
Iteration: 14, Func. Count: 117, Neg. LLF: 169.91365808177636
Iteration: 15, Func. Count: 125, Neg. LLF: 169.86337858924998
Iteration: 16, Func. Count: 133, Neg. LLF: 169.85001038830035
Iteration: 17, Func. Count: 141, Neg. LLF: 169.84014879453872
Iteration: 18, Func. Count: 149, Neg. LLF: 169.83744993873646
Iteration: 19, Func. Count: 157, Neg. LLF: 169.83699893900672
Iteration: 20, Func. Count: 165, Neg. LLF: 169.83694578597093
Iteration: 21, Func. Count: 173, Neg. LLF: 169.83693221121283
Iteration: 22, Func. Count: 181, Neg. LLF: 169.83693113426827
Iteration: 23, Func. Count: 188, Neg. LLF: 169.83693117103087
Optimization terminated successfully (Exit mode 0)
Current function value: 169.83693113426827
Iterations: 23
Function evaluations: 188
Gradient evaluations: 23
Iteration: 1, Func. Count: 10, Neg. LLF: 195.9629328517994
Iteration: 2, Func. Count: 20, Neg. LLF: 173.19554137918416
Iteration: 3, Func. Count: 30, Neg. LLF: 170.9831031280943
Iteration: 4, Func. Count: 39, Neg. LLF: 185.47547374469548
Iteration: 5, Func. Count: 49, Neg. LLF: 170.50656877416756
Iteration: 6, Func. Count: 58, Neg. LLF: 172.31830616026295
Iteration: 7, Func. Count: 68, Neg. LLF: 170.41997197391223
Iteration: 8, Func. Count: 77, Neg. LLF: 170.41265044760382
Iteration: 9, Func. Count: 86, Neg. LLF: 170.38646362038813
Iteration: 10, Func. Count: 95, Neg. LLF: 170.28380691985802
Iteration: 11, Func. Count: 104, Neg. LLF: 170.09135601955393
Iteration: 12, Func. Count: 113, Neg. LLF: 169.87731532473984
Iteration: 13, Func. Count: 122, Neg. LLF: 169.84326802834602
Iteration: 14, Func. Count: 131, Neg. LLF: 169.83824678454363
Iteration: 15, Func. Count: 140, Neg. LLF: 169.83720917947866
Iteration: 16, Func. Count: 149, Neg. LLF: 169.83696930243298
Iteration: 17, Func. Count: 158, Neg. LLF: 169.83693343550766
Iteration: 18, Func. Count: 167, Neg. LLF: 169.8369312468489
Iteration: 19, Func. Count: 175, Neg. LLF: 169.83693132010256
Optimization terminated successfully (Exit mode 0)
Current function value: 169.8369312468489
Iterations: 19
Function evaluations: 175
Gradient evaluations: 19
Iteration: 1, Func. Count: 11, Neg. LLF: 195.93145241731247
Iteration: 2, Func. Count: 22, Neg. LLF: 175.56153304290737
Iteration: 3, Func. Count: 33, Neg. LLF: 171.27103027422194
Iteration: 4, Func. Count: 43, Neg. LLF: 204.99519137012788
Iteration: 5, Func. Count: 54, Neg. LLF: 172.74670390411913
Iteration: 6, Func. Count: 65, Neg. LLF: 170.28711375603118
Iteration: 7, Func. Count: 75, Neg. LLF: 192.06609498725763
Iteration: 8, Func. Count: 86, Neg. LLF: 170.1582082238741
Iteration: 9, Func. Count: 96, Neg. LLF: 170.09614110081446
Iteration: 10, Func. Count: 106, Neg. LLF: 170.02799223986804
Iteration: 11, Func. Count: 116, Neg. LLF: 170.01316702888477
Iteration: 12, Func. Count: 126, Neg. LLF: 169.99996567626746
Iteration: 13, Func. Count: 136, Neg. LLF: 169.93351500991326
Iteration: 14, Func. Count: 146, Neg. LLF: 169.84959896260762
Iteration: 15, Func. Count: 156, Neg. LLF: 169.8112907230551
Iteration: 16, Func. Count: 166, Neg. LLF: 169.7961340814622
Iteration: 17, Func. Count: 176, Neg. LLF: 169.79248677565536
Iteration: 18, Func. Count: 186, Neg. LLF: 169.7916488598056
Iteration: 19, Func. Count: 196, Neg. LLF: 169.79162557594873
Iteration: 20, Func. Count: 206, Neg. LLF: 169.79162407819848
Iteration: 21, Func. Count: 215, Neg. LLF: 169.79162407820456
Optimization terminated successfully (Exit mode 0)
Current function value: 169.79162407819848
Iterations: 21
Function evaluations: 215
Gradient evaluations: 21
Iteration: 1, Func. Count: 12, Neg. LLF: 195.9092754888394
Iteration: 2, Func. Count: 24, Neg. LLF: 173.06661194643425
Iteration: 3, Func. Count: 36, Neg. LLF: 171.31630699208398
Iteration: 4, Func. Count: 47, Neg. LLF: 207.51428965378636
Iteration: 5, Func. Count: 59, Neg. LLF: 173.3471282063728
Iteration: 6, Func. Count: 71, Neg. LLF: 171.03060318123335
Iteration: 7, Func. Count: 83, Neg. LLF: 171.85576821129098
Iteration: 8, Func. Count: 95, Neg. LLF: 170.2048856591405
Iteration: 9, Func. Count: 106, Neg. LLF: 170.1439208425639
Iteration: 10, Func. Count: 117, Neg. LLF: 170.09406965483424
Iteration: 11, Func. Count: 128, Neg. LLF: 170.0140605930998
Iteration: 12, Func. Count: 139, Neg. LLF: 170.0020667033883
Iteration: 13, Func. Count: 150, Neg. LLF: 169.98180112817943
Iteration: 14, Func. Count: 161, Neg. LLF: 169.94469134582693
Iteration: 15, Func. Count: 172, Neg. LLF: 169.86625425261283
Iteration: 16, Func. Count: 183, Neg. LLF: 169.81474173268023
Iteration: 17, Func. Count: 194, Neg. LLF: 169.79772506146486
Iteration: 18, Func. Count: 205, Neg. LLF: 169.79202105720557
Iteration: 19, Func. Count: 216, Neg. LLF: 169.7916499169681
Iteration: 20, Func. Count: 227, Neg. LLF: 169.79162557512856
Iteration: 21, Func. Count: 238, Neg. LLF: 169.79162408753757
Iteration: 22, Func. Count: 248, Neg. LLF: 169.7916241633911
Optimization terminated successfully (Exit mode 0)
Current function value: 169.79162408753757
Iterations: 22
Function evaluations: 248
Gradient evaluations: 22
Iteration: 1, Func. Count: 9, Neg. LLF: 173.52126389991255
Iteration: 2, Func. Count: 18, Neg. LLF: 184.48087401905832
Iteration: 3, Func. Count: 27, Neg. LLF: 170.56356508687344
Iteration: 4, Func. Count: 35, Neg. LLF: 170.37237613513923
Iteration: 5, Func. Count: 43, Neg. LLF: 171.46505512112319
Iteration: 6, Func. Count: 52, Neg. LLF: 170.1643022460355
Iteration: 7, Func. Count: 60, Neg. LLF: 170.06636227150412
Iteration: 8, Func. Count: 68, Neg. LLF: 170.01833238834558
Iteration: 9, Func. Count: 76, Neg. LLF: 169.9893947163171
Iteration: 10, Func. Count: 84, Neg. LLF: 169.97726912196873
Iteration: 11, Func. Count: 92, Neg. LLF: 169.97148377901343
Iteration: 12, Func. Count: 100, Neg. LLF: 169.94383843926556
Iteration: 13, Func. Count: 108, Neg. LLF: 169.85519357520283
Iteration: 14, Func. Count: 116, Neg. LLF: 169.83813543152903
Iteration: 15, Func. Count: 124, Neg. LLF: 169.83695184605358
Iteration: 16, Func. Count: 132, Neg. LLF: 169.83693234653342
Iteration: 17, Func. Count: 140, Neg. LLF: 169.8369310918029
Iteration: 18, Func. Count: 147, Neg. LLF: 169.8369311553953
Optimization terminated successfully (Exit mode 0)
Current function value: 169.8369310918029
Iterations: 18
Function evaluations: 147
Gradient evaluations: 18
Iteration: 1, Func. Count: 10, Neg. LLF: 277.39544473979583
Iteration: 2, Func. Count: 20, Neg. LLF: 261.4242896235311
Iteration: 3, Func. Count: 30, Neg. LLF: 172.21962762276544
Iteration: 4, Func. Count: 39, Neg. LLF: 172.74830763242974
Iteration: 5, Func. Count: 49, Neg. LLF: 185.00620704335074
Iteration: 6, Func. Count: 59, Neg. LLF: 171.76556974212443
Iteration: 7, Func. Count: 69, Neg. LLF: 171.61550922406823
Iteration: 8, Func. Count: 78, Neg. LLF: 171.58791313328655
Iteration: 9, Func. Count: 87, Neg. LLF: 171.45862873334315
Iteration: 10, Func. Count: 96, Neg. LLF: 170.98360335374096
Iteration: 11, Func. Count: 105, Neg. LLF: 170.03171131997703
Iteration: 12, Func. Count: 114, Neg. LLF: 169.87869052977504
Iteration: 13, Func. Count: 123, Neg. LLF: 169.84348931597927
Iteration: 14, Func. Count: 132, Neg. LLF: 169.83954233580695
Iteration: 15, Func. Count: 141, Neg. LLF: 169.83823468476245
Iteration: 16, Func. Count: 150, Neg. LLF: 169.837204783265
Iteration: 17, Func. Count: 159, Neg. LLF: 169.83695950013828
Iteration: 18, Func. Count: 168, Neg. LLF: 169.83693360251
Iteration: 19, Func. Count: 177, Neg. LLF: 169.83693207548902
Iteration: 20, Func. Count: 185, Neg. LLF: 169.83693211231122
Optimization terminated successfully (Exit mode 0)
Current function value: 169.83693207548902
Iterations: 20
Function evaluations: 185
Gradient evaluations: 20
Iteration: 1, Func. Count: 11, Neg. LLF: 195.9282119711802
Iteration: 2, Func. Count: 22, Neg. LLF: 173.94448989818872
Iteration: 3, Func. Count: 33, Neg. LLF: 171.07883931052376
Iteration: 4, Func. Count: 43, Neg. LLF: 185.06326211182343
Iteration: 5, Func. Count: 54, Neg. LLF: 170.47714716422047
Iteration: 6, Func. Count: 64, Neg. LLF: 171.4806957557327
Iteration: 7, Func. Count: 75, Neg. LLF: 170.41487227288354
Iteration: 8, Func. Count: 85, Neg. LLF: 170.39785060016033
Iteration: 9, Func. Count: 95, Neg. LLF: 170.36552388835813
Iteration: 10, Func. Count: 105, Neg. LLF: 170.19516828954497
Iteration: 11, Func. Count: 115, Neg. LLF: 170.0515446947549
Iteration: 12, Func. Count: 125, Neg. LLF: 169.8440730693155
Iteration: 13, Func. Count: 135, Neg. LLF: 169.83733030455565
Iteration: 14, Func. Count: 145, Neg. LLF: 169.83694509282742
Iteration: 15, Func. Count: 155, Neg. LLF: 169.83693319082835
Iteration: 16, Func. Count: 165, Neg. LLF: 169.8369311579693
Iteration: 17, Func. Count: 174, Neg. LLF: 169.83693123128597
Optimization terminated successfully (Exit mode 0)
Current function value: 169.8369311579693
Iterations: 17
Function evaluations: 174
Gradient evaluations: 17
Iteration: 1, Func. Count: 12, Neg. LLF: 195.88962277921928
Iteration: 2, Func. Count: 24, Neg. LLF: 175.6409002613557
Iteration: 3, Func. Count: 36, Neg. LLF: 171.3168709454662
Iteration: 4, Func. Count: 47, Neg. LLF: 212.4162881549207
Iteration: 5, Func. Count: 60, Neg. LLF: 172.05831278341321
Iteration: 6, Func. Count: 72, Neg. LLF: 170.54515998043902
Iteration: 7, Func. Count: 83, Neg. LLF: 170.5260479022054
Iteration: 8, Func. Count: 95, Neg. LLF: 170.16173833674623
Iteration: 9, Func. Count: 106, Neg. LLF: 170.11677277613617
Iteration: 10, Func. Count: 117, Neg. LLF: 170.034352379184
Iteration: 11, Func. Count: 128, Neg. LLF: 170.00248407033243
Iteration: 12, Func. Count: 139, Neg. LLF: 169.9935770466051
Iteration: 13, Func. Count: 150, Neg. LLF: 169.95689608835002
Iteration: 14, Func. Count: 161, Neg. LLF: 169.89619125937236
Iteration: 15, Func. Count: 172, Neg. LLF: 169.80874022900068
Iteration: 16, Func. Count: 183, Neg. LLF: 169.79828208327254
Iteration: 17, Func. Count: 194, Neg. LLF: 169.79224648259904
Iteration: 18, Func. Count: 205, Neg. LLF: 169.79163113598236
Iteration: 19, Func. Count: 216, Neg. LLF: 169.79162441831016
Iteration: 20, Func. Count: 226, Neg. LLF: 169.7916244183642
Optimization terminated successfully (Exit mode 0)
Current function value: 169.79162441831016
Iterations: 20
Function evaluations: 226
Gradient evaluations: 20
Iteration: 1, Func. Count: 13, Neg. LLF: 195.86721101470488
Iteration: 2, Func. Count: 26, Neg. LLF: 173.8041083244093
Iteration: 3, Func. Count: 39, Neg. LLF: 171.42058928026702
Iteration: 4, Func. Count: 51, Neg. LLF: 214.7299105653109
Iteration: 5, Func. Count: 65, Neg. LLF: 173.5273247243401
Iteration: 6, Func. Count: 78, Neg. LLF: 170.67085770121167
Iteration: 7, Func. Count: 91, Neg. LLF: 173.8559261698251
Iteration: 8, Func. Count: 104, Neg. LLF: 170.22134205111945
Iteration: 9, Func. Count: 116, Neg. LLF: 170.15024492377592
Iteration: 10, Func. Count: 128, Neg. LLF: 170.06820273202484
Iteration: 11, Func. Count: 140, Neg. LLF: 169.98714257191344
Iteration: 12, Func. Count: 152, Neg. LLF: 169.9720145663302
Iteration: 13, Func. Count: 164, Neg. LLF: 169.96323666544444
Iteration: 14, Func. Count: 176, Neg. LLF: 169.9415846161698
Iteration: 15, Func. Count: 188, Neg. LLF: 169.8975932821458
Iteration: 16, Func. Count: 200, Neg. LLF: 169.83316889406962
Iteration: 17, Func. Count: 212, Neg. LLF: 169.80628797003845
Iteration: 18, Func. Count: 224, Neg. LLF: 169.7927442834079
Iteration: 19, Func. Count: 236, Neg. LLF: 169.79173785539186
Iteration: 20, Func. Count: 248, Neg. LLF: 169.791631168849
Iteration: 21, Func. Count: 260, Neg. LLF: 169.79162405596045
Iteration: 22, Func. Count: 271, Neg. LLF: 169.79162413181876
Optimization terminated successfully (Exit mode 0)
Current function value: 169.79162405596045
Iterations: 22
Function evaluations: 271
Gradient evaluations: 22
Iteration: 1, Func. Count: 6, Neg. LLF: 173.75631355243772
Iteration: 2, Func. Count: 12, Neg. LLF: 174.54610535278923
Iteration: 3, Func. Count: 19, Neg. LLF: 172.0632568939457
Iteration: 4, Func. Count: 24, Neg. LLF: 171.98162079095275
Iteration: 5, Func. Count: 29, Neg. LLF: 171.90253264402708
Iteration: 6, Func. Count: 34, Neg. LLF: 171.8261252932232
Iteration: 7, Func. Count: 39, Neg. LLF: 171.35185056155743
Iteration: 8, Func. Count: 44, Neg. LLF: 170.84907862952556
Iteration: 9, Func. Count: 49, Neg. LLF: 170.4190494334386
Iteration: 10, Func. Count: 54, Neg. LLF: 170.199236049082
Iteration: 11, Func. Count: 59, Neg. LLF: 170.13639823452525
Iteration: 12, Func. Count: 64, Neg. LLF: 170.11568876195096
Iteration: 13, Func. Count: 69, Neg. LLF: 170.1122732042583
Iteration: 14, Func. Count: 74, Neg. LLF: 170.11173556341336
Iteration: 15, Func. Count: 79, Neg. LLF: 170.1116983198501
Iteration: 16, Func. Count: 83, Neg. LLF: 170.11169831984176
Optimization terminated successfully (Exit mode 0)
Current function value: 170.1116983198501
Iterations: 16
Function evaluations: 83
Gradient evaluations: 16
Iteration: 1, Func. Count: 7, Neg. LLF: 173.13379754001645
Iteration: 2, Func. Count: 13, Neg. LLF: 172.54138677354746
Iteration: 3, Func. Count: 21, Neg. LLF: 197.2357497899591
Iteration: 4, Func. Count: 28, Neg. LLF: 198.45618078062122
Iteration: 5, Func. Count: 35, Neg. LLF: 171.8154640206988
Iteration: 6, Func. Count: 42, Neg. LLF: 171.02134435050354
Iteration: 7, Func. Count: 49, Neg. LLF: 170.24316277832946
Iteration: 8, Func. Count: 55, Neg. LLF: 170.20561645340277
Iteration: 9, Func. Count: 61, Neg. LLF: 170.12646710208276
Iteration: 10, Func. Count: 67, Neg. LLF: 170.01419301712065
Iteration: 11, Func. Count: 73, Neg. LLF: 169.9059121011026
Iteration: 12, Func. Count: 79, Neg. LLF: 169.8317293805572
Iteration: 13, Func. Count: 85, Neg. LLF: 169.72556020475977
Iteration: 14, Func. Count: 91, Neg. LLF: 169.55153404053988
Iteration: 15, Func. Count: 97, Neg. LLF: 169.49892371451503
Iteration: 16, Func. Count: 103, Neg. LLF: 169.49326763423787
Iteration: 17, Func. Count: 109, Neg. LLF: 169.49217639187657
Iteration: 18, Func. Count: 115, Neg. LLF: 169.49186519333432
Iteration: 19, Func. Count: 121, Neg. LLF: 169.49179674612472
Iteration: 20, Func. Count: 127, Neg. LLF: 169.49179389778138
Iteration: 21, Func. Count: 132, Neg. LLF: 169.49179389779235
Optimization terminated successfully (Exit mode 0)
Current function value: 169.49179389778138
Iterations: 21
Function evaluations: 132
Gradient evaluations: 21
Iteration: 1, Func. Count: 8, Neg. LLF: 173.12820114567612
Iteration: 2, Func. Count: 15, Neg. LLF: 171.90714554206582
Iteration: 3, Func. Count: 24, Neg. LLF: 199.4305293118906
Iteration: 4, Func. Count: 32, Neg. LLF: 199.49113074393654
Iteration: 5, Func. Count: 40, Neg. LLF: 171.3966577309033
Iteration: 6, Func. Count: 48, Neg. LLF: 171.36514870824612
Iteration: 7, Func. Count: 56, Neg. LLF: 170.22717328489793
Iteration: 8, Func. Count: 63, Neg. LLF: 170.1958344474074
Iteration: 9, Func. Count: 70, Neg. LLF: 170.084282936477
Iteration: 10, Func. Count: 77, Neg. LLF: 169.8586688303008
Iteration: 11, Func. Count: 84, Neg. LLF: 169.68613947076824
Iteration: 12, Func. Count: 91, Neg. LLF: 169.58560539429803
Iteration: 13, Func. Count: 98, Neg. LLF: 169.4935837812355
Iteration: 14, Func. Count: 105, Neg. LLF: 169.4926385199473
Iteration: 15, Func. Count: 112, Neg. LLF: 169.49235407115307
Iteration: 16, Func. Count: 119, Neg. LLF: 169.4922324981553
Iteration: 17, Func. Count: 126, Neg. LLF: 169.4919401310376
Iteration: 18, Func. Count: 133, Neg. LLF: 169.4918200889941
Iteration: 19, Func. Count: 140, Neg. LLF: 169.49179487463988
Iteration: 20, Func. Count: 147, Neg. LLF: 169.49179371950197
Iteration: 21, Func. Count: 153, Neg. LLF: 169.49179381963094
Optimization terminated successfully (Exit mode 0)
Current function value: 169.49179371950197
Iterations: 21
Function evaluations: 153
Gradient evaluations: 21
Iteration: 1, Func. Count: 9, Neg. LLF: 173.12367764271264
Iteration: 2, Func. Count: 17, Neg. LLF: 171.67170664432564
Iteration: 3, Func. Count: 26, Neg. LLF: 194.52847871608233
Iteration: 4, Func. Count: 35, Neg. LLF: 197.49625814573267
Iteration: 5, Func. Count: 44, Neg. LLF: 172.0599130445148
Iteration: 6, Func. Count: 53, Neg. LLF: 170.786995927101
Iteration: 7, Func. Count: 62, Neg. LLF: 170.30596471019493
Iteration: 8, Func. Count: 70, Neg. LLF: 170.1772895620629
Iteration: 9, Func. Count: 78, Neg. LLF: 170.087556230816
Iteration: 10, Func. Count: 86, Neg. LLF: 170.03636004263666
Iteration: 11, Func. Count: 94, Neg. LLF: 169.99748698144808
Iteration: 12, Func. Count: 102, Neg. LLF: 169.93621347618176
Iteration: 13, Func. Count: 110, Neg. LLF: 169.74297018199556
Iteration: 14, Func. Count: 118, Neg. LLF: 169.60221097199926
Iteration: 15, Func. Count: 126, Neg. LLF: 169.5119135888755
Iteration: 16, Func. Count: 134, Neg. LLF: 169.49431540552538
Iteration: 17, Func. Count: 142, Neg. LLF: 169.49193574259164
Iteration: 18, Func. Count: 150, Neg. LLF: 169.49182564777544
Iteration: 19, Func. Count: 158, Neg. LLF: 169.49179628787297
Iteration: 20, Func. Count: 166, Neg. LLF: 169.49179373944335
Iteration: 21, Func. Count: 173, Neg. LLF: 169.49179378580143
Optimization terminated successfully (Exit mode 0)
Current function value: 169.49179373944335
Iterations: 21
Function evaluations: 173
Gradient evaluations: 21
Iteration: 1, Func. Count: 10, Neg. LLF: 173.70152161007712
Iteration: 2, Func. Count: 19, Neg. LLF: 173.67671494976426
Iteration: 3, Func. Count: 29, Neg. LLF: 184.50379066012417
Iteration: 4, Func. Count: 39, Neg. LLF: 184.05347296283918
Iteration: 5, Func. Count: 49, Neg. LLF: 186.5233981428447
Iteration: 6, Func. Count: 59, Neg. LLF: 173.30922152006656
Iteration: 7, Func. Count: 69, Neg. LLF: 172.163509766609
Iteration: 8, Func. Count: 79, Neg. LLF: 171.91964888462493
Iteration: 9, Func. Count: 88, Neg. LLF: 171.87835038867036
Iteration: 10, Func. Count: 97, Neg. LLF: 171.81530196893
Iteration: 11, Func. Count: 106, Neg. LLF: 171.58968253889137
Iteration: 12, Func. Count: 115, Neg. LLF: 170.3381573116016
Iteration: 13, Func. Count: 124, Neg. LLF: 173.71395354230557
Iteration: 14, Func. Count: 134, Neg. LLF: 174.83681325785528
Iteration: 15, Func. Count: 144, Neg. LLF: 173.29337552807522
Iteration: 16, Func. Count: 154, Neg. LLF: 169.52676417401477
Iteration: 17, Func. Count: 164, Neg. LLF: 169.15448563784855
Iteration: 18, Func. Count: 173, Neg. LLF: 169.0236208233204
Iteration: 19, Func. Count: 182, Neg. LLF: 169.109318370528
Iteration: 20, Func. Count: 192, Neg. LLF: 169.00718115625085
Iteration: 21, Func. Count: 201, Neg. LLF: 169.00717282757765
Iteration: 22, Func. Count: 210, Neg. LLF: 169.0071714123964
Iteration: 23, Func. Count: 218, Neg. LLF: 169.00717140627307
Optimization terminated successfully (Exit mode 0)
Current function value: 169.0071714123964
Iterations: 23
Function evaluations: 218
Gradient evaluations: 23
Iteration: 1, Func. Count: 7, Neg. LLF: 173.74909385989412
Iteration: 2, Func. Count: 14, Neg. LLF: 172.74416734437278
Iteration: 3, Func. Count: 21, Neg. LLF: 173.24557430763352
Iteration: 4, Func. Count: 28, Neg. LLF: 171.39836667257146
Iteration: 5, Func. Count: 34, Neg. LLF: 171.2864428207597
Iteration: 6, Func. Count: 40, Neg. LLF: 171.13065247383028
Iteration: 7, Func. Count: 46, Neg. LLF: 171.02433780208509
Iteration: 8, Func. Count: 52, Neg. LLF: 170.50338053946047
Iteration: 9, Func. Count: 58, Neg. LLF: 169.77143482947267
Iteration: 10, Func. Count: 64, Neg. LLF: 169.4814452486958
Iteration: 11, Func. Count: 71, Neg. LLF: 169.0930497975575
Iteration: 12, Func. Count: 77, Neg. LLF: 169.08337180971316
Iteration: 13, Func. Count: 83, Neg. LLF: 169.08322967406895
Iteration: 14, Func. Count: 89, Neg. LLF: 169.0832221629308
Iteration: 15, Func. Count: 95, Neg. LLF: 169.0832212913312
Optimization terminated successfully (Exit mode 0)
Current function value: 169.0832212913312
Iterations: 15
Function evaluations: 95
Gradient evaluations: 15
Iteration: 1, Func. Count: 8, Neg. LLF: 170.4658333297409
Iteration: 2, Func. Count: 15, Neg. LLF: 171.9360006032079
Iteration: 3, Func. Count: 24, Neg. LLF: 170.80507001465085
Iteration: 4, Func. Count: 32, Neg. LLF: 168.90950765672824
Iteration: 5, Func. Count: 39, Neg. LLF: 171.10750761337948
Iteration: 6, Func. Count: 48, Neg. LLF: 168.88042338307233
Iteration: 7, Func. Count: 55, Neg. LLF: 168.88079799498368
Iteration: 8, Func. Count: 63, Neg. LLF: 168.86405597241173
Iteration: 9, Func. Count: 70, Neg. LLF: 168.8510916008754
Iteration: 10, Func. Count: 77, Neg. LLF: 168.8378900285032
Iteration: 11, Func. Count: 84, Neg. LLF: 168.8100305931934
Iteration: 12, Func. Count: 91, Neg. LLF: 168.79569331308966
Iteration: 13, Func. Count: 98, Neg. LLF: 168.7907477474277
Iteration: 14, Func. Count: 105, Neg. LLF: 168.79028044144442
Iteration: 15, Func. Count: 112, Neg. LLF: 168.7902584566476
Iteration: 16, Func. Count: 119, Neg. LLF: 168.79025745257712
Iteration: 17, Func. Count: 125, Neg. LLF: 168.79025745257627
Optimization terminated successfully (Exit mode 0)
Current function value: 168.79025745257712
Iterations: 17
Function evaluations: 125
Gradient evaluations: 17
Iteration: 1, Func. Count: 9, Neg. LLF: 173.1241036627457
Iteration: 2, Func. Count: 18, Neg. LLF: 172.82027589000194
Iteration: 3, Func. Count: 27, Neg. LLF: 192.61938239040853
Iteration: 4, Func. Count: 36, Neg. LLF: 169.5379864343362
Iteration: 5, Func. Count: 44, Neg. LLF: 169.60551578938953
Iteration: 6, Func. Count: 53, Neg. LLF: 169.47646077169705
Iteration: 7, Func. Count: 61, Neg. LLF: 169.44220932549626
Iteration: 8, Func. Count: 69, Neg. LLF: 169.3042123105629
Iteration: 9, Func. Count: 77, Neg. LLF: 169.1145168294124
Iteration: 10, Func. Count: 85, Neg. LLF: 168.9012447051448
Iteration: 11, Func. Count: 93, Neg. LLF: 168.79814521284226
Iteration: 12, Func. Count: 101, Neg. LLF: 168.79063771178724
Iteration: 13, Func. Count: 109, Neg. LLF: 168.7903063108599
Iteration: 14, Func. Count: 117, Neg. LLF: 168.79025865067993
Iteration: 15, Func. Count: 125, Neg. LLF: 168.79025746515615
Iteration: 16, Func. Count: 132, Neg. LLF: 168.79025759022616
Optimization terminated successfully (Exit mode 0)
Current function value: 168.79025746515615
Iterations: 16
Function evaluations: 132
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 173.12083912441994
Iteration: 2, Func. Count: 19, Neg. LLF: 170.3467342949823
Iteration: 3, Func. Count: 30, Neg. LLF: 198.5768446178581
Iteration: 4, Func. Count: 40, Neg. LLF: 191.0286248916283
Iteration: 5, Func. Count: 50, Neg. LLF: 198.54559045004453
Iteration: 6, Func. Count: 60, Neg. LLF: 169.6042884231041
Iteration: 7, Func. Count: 70, Neg. LLF: 169.53925111474035
Iteration: 8, Func. Count: 79, Neg. LLF: 169.4936636000932
Iteration: 9, Func. Count: 88, Neg. LLF: 169.42657965912318
Iteration: 10, Func. Count: 97, Neg. LLF: 169.19771136890594
Iteration: 11, Func. Count: 106, Neg. LLF: 168.99184471912184
Iteration: 12, Func. Count: 115, Neg. LLF: 168.89416452746167
Iteration: 13, Func. Count: 124, Neg. LLF: 168.8766994465065
Iteration: 14, Func. Count: 133, Neg. LLF: 168.85755512142146
Iteration: 15, Func. Count: 142, Neg. LLF: 168.83977815477013
Iteration: 16, Func. Count: 151, Neg. LLF: 168.83727438272538
Iteration: 17, Func. Count: 160, Neg. LLF: 168.82457928270983
Iteration: 18, Func. Count: 169, Neg. LLF: 168.80538120980103
Iteration: 19, Func. Count: 178, Neg. LLF: 168.79906364786777
Iteration: 20, Func. Count: 187, Neg. LLF: 168.78160741898805
Iteration: 21, Func. Count: 196, Neg. LLF: 168.77992883345243
Iteration: 22, Func. Count: 205, Neg. LLF: 168.77976446966085
Iteration: 23, Func. Count: 214, Neg. LLF: 168.7797625913397
Iteration: 24, Func. Count: 222, Neg. LLF: 168.77976259134343
Optimization terminated successfully (Exit mode 0)
Current function value: 168.7797625913397
Iterations: 24
Function evaluations: 222
Gradient evaluations: 24
Iteration: 1, Func. Count: 11, Neg. LLF: 173.11970452747667
Iteration: 2, Func. Count: 21, Neg. LLF: 170.38462868428445
Iteration: 3, Func. Count: 33, Neg. LLF: 190.7765685676595
Iteration: 4, Func. Count: 46, Neg. LLF: 195.96034611046775
Iteration: 5, Func. Count: 57, Neg. LLF: 169.55826800701763
Iteration: 6, Func. Count: 67, Neg. LLF: 169.54809332628707
Iteration: 7, Func. Count: 78, Neg. LLF: 169.49903652128617
Iteration: 8, Func. Count: 89, Neg. LLF: 169.26427890433746
Iteration: 9, Func. Count: 99, Neg. LLF: 169.05941398067134
Iteration: 10, Func. Count: 109, Neg. LLF: 168.65786672036592
Iteration: 11, Func. Count: 119, Neg. LLF: 168.43242397808126
Iteration: 12, Func. Count: 129, Neg. LLF: 168.32962848775404
Iteration: 13, Func. Count: 139, Neg. LLF: 168.29510813147974
Iteration: 14, Func. Count: 149, Neg. LLF: 168.25702179911175
Iteration: 15, Func. Count: 159, Neg. LLF: 168.2228583803383
Iteration: 16, Func. Count: 169, Neg. LLF: 168.1008113684606
Iteration: 17, Func. Count: 179, Neg. LLF: 168.08285878568194
Iteration: 18, Func. Count: 189, Neg. LLF: 168.06510060598447
Iteration: 19, Func. Count: 199, Neg. LLF: 168.05566908881102
Iteration: 20, Func. Count: 209, Neg. LLF: 168.05411051537817
Iteration: 21, Func. Count: 219, Neg. LLF: 168.0538750509883
Iteration: 22, Func. Count: 229, Neg. LLF: 168.05386675288028
Iteration: 23, Func. Count: 239, Neg. LLF: 168.05385865645536
Iteration: 24, Func. Count: 248, Neg. LLF: 168.05385865646184
Optimization terminated successfully (Exit mode 0)
Current function value: 168.05385865645536
Iterations: 24
Function evaluations: 248
Gradient evaluations: 24
Iteration: 1, Func. Count: 8, Neg. LLF: 173.7592414347119
Iteration: 2, Func. Count: 16, Neg. LLF: 180.86405621951815
Iteration: 3, Func. Count: 24, Neg. LLF: 179.1301472120263
Iteration: 4, Func. Count: 32, Neg. LLF: 171.87127475241314
Iteration: 5, Func. Count: 40, Neg. LLF: 171.36896314934765
Iteration: 6, Func. Count: 47, Neg. LLF: 171.22388340052137
Iteration: 7, Func. Count: 54, Neg. LLF: 171.1824476833316
Iteration: 8, Func. Count: 61, Neg. LLF: 170.90255912868312
Iteration: 9, Func. Count: 68, Neg. LLF: 169.8215765009556
Iteration: 10, Func. Count: 75, Neg. LLF: 169.2939980158474
Iteration: 11, Func. Count: 82, Neg. LLF: 168.77756657133904
Iteration: 12, Func. Count: 89, Neg. LLF: 168.68349683661546
Iteration: 13, Func. Count: 96, Neg. LLF: 168.66662236278773
Iteration: 14, Func. Count: 103, Neg. LLF: 168.6720147763915
Iteration: 15, Func. Count: 111, Neg. LLF: 168.66082251090316
Iteration: 16, Func. Count: 118, Neg. LLF: 168.6606909721276
Iteration: 17, Func. Count: 125, Neg. LLF: 168.66056726098978
Iteration: 18, Func. Count: 131, Neg. LLF: 168.66056726099234
Optimization terminated successfully (Exit mode 0)
Current function value: 168.66056726098978
Iterations: 18
Function evaluations: 131
Gradient evaluations: 18
Iteration: 1, Func. Count: 9, Neg. LLF: 278.7865271821211
Iteration: 2, Func. Count: 18, Neg. LLF: 183.69229632131058
Iteration: 3, Func. Count: 27, Neg. LLF: 185.06021358933305
Iteration: 4, Func. Count: 36, Neg. LLF: 170.8900588690948
Iteration: 5, Func. Count: 45, Neg. LLF: 170.2585953941565
Iteration: 6, Func. Count: 54, Neg. LLF: 168.5857177695673
Iteration: 7, Func. Count: 62, Neg. LLF: 170.10607450911036
Iteration: 8, Func. Count: 71, Neg. LLF: 169.61766948331766
Iteration: 9, Func. Count: 80, Neg. LLF: 168.22277972730095
Iteration: 10, Func. Count: 88, Neg. LLF: 168.2152262228702
Iteration: 11, Func. Count: 96, Neg. LLF: 168.21259802006284
Iteration: 12, Func. Count: 104, Neg. LLF: 168.21021945141112
Iteration: 13, Func. Count: 112, Neg. LLF: 168.20680214485057
Iteration: 14, Func. Count: 120, Neg. LLF: 168.20068184332612
Iteration: 15, Func. Count: 128, Neg. LLF: 168.19551397979822
Iteration: 16, Func. Count: 136, Neg. LLF: 168.1939287228466
Iteration: 17, Func. Count: 144, Neg. LLF: 168.19379408900946
Iteration: 18, Func. Count: 152, Neg. LLF: 168.19378586734715
Iteration: 19, Func. Count: 159, Neg. LLF: 168.19378586735945
Optimization terminated successfully (Exit mode 0)
Current function value: 168.19378586734715
Iterations: 19
Function evaluations: 159
Gradient evaluations: 19
Iteration: 1, Func. Count: 10, Neg. LLF: 196.03304391968828
Iteration: 2, Func. Count: 20, Neg. LLF: 170.34410557262865
Iteration: 3, Func. Count: 29, Neg. LLF: 169.58174754370953
Iteration: 4, Func. Count: 38, Neg. LLF: 170.94365920860938
Iteration: 5, Func. Count: 48, Neg. LLF: 172.5432126750021
Iteration: 6, Func. Count: 58, Neg. LLF: 177.477592807782
Iteration: 7, Func. Count: 69, Neg. LLF: 171.20507980529158
Iteration: 8, Func. Count: 79, Neg. LLF: 169.2260854396444
Iteration: 9, Func. Count: 88, Neg. LLF: 169.1283855293322
Iteration: 10, Func. Count: 97, Neg. LLF: 169.10384788654275
Iteration: 11, Func. Count: 106, Neg. LLF: 169.04485293455747
Iteration: 12, Func. Count: 115, Neg. LLF: 168.90693412569027
Iteration: 13, Func. Count: 124, Neg. LLF: 168.60481156086408
Iteration: 14, Func. Count: 133, Neg. LLF: 168.3774743007446
Iteration: 15, Func. Count: 142, Neg. LLF: 168.21819302519532
Iteration: 16, Func. Count: 151, Neg. LLF: 168.19574267683413
Iteration: 17, Func. Count: 160, Neg. LLF: 168.1938941689019
Iteration: 18, Func. Count: 169, Neg. LLF: 168.1937994077379
Iteration: 19, Func. Count: 178, Neg. LLF: 168.19378586503552
Iteration: 20, Func. Count: 186, Neg. LLF: 168.19378603190515
Optimization terminated successfully (Exit mode 0)
Current function value: 168.19378586503552
Iterations: 20
Function evaluations: 186
Gradient evaluations: 20
Iteration: 1, Func. Count: 11, Neg. LLF: 196.00507933964735
Iteration: 2, Func. Count: 22, Neg. LLF: 169.6986179297582
Iteration: 3, Func. Count: 32, Neg. LLF: 172.2872801657456
Iteration: 4, Func. Count: 43, Neg. LLF: 186.8757551421873
Iteration: 5, Func. Count: 54, Neg. LLF: 172.610439099503
Iteration: 6, Func. Count: 65, Neg. LLF: 171.1321950526693
Iteration: 7, Func. Count: 76, Neg. LLF: 190.74541136537493
Iteration: 8, Func. Count: 87, Neg. LLF: 170.86332662482073
Iteration: 9, Func. Count: 98, Neg. LLF: 169.2375568673734
Iteration: 10, Func. Count: 109, Neg. LLF: 169.11660334487132
Iteration: 11, Func. Count: 119, Neg. LLF: 168.99825613650694
Iteration: 12, Func. Count: 129, Neg. LLF: 168.59976911411604
Iteration: 13, Func. Count: 139, Neg. LLF: 168.33214489912007
Iteration: 14, Func. Count: 149, Neg. LLF: 169.36943808076657
Iteration: 15, Func. Count: 160, Neg. LLF: 170.8677910022507
Iteration: 16, Func. Count: 172, Neg. LLF: 168.11414459726123
Iteration: 17, Func. Count: 182, Neg. LLF: 168.09594805950334
Iteration: 18, Func. Count: 192, Neg. LLF: 168.0930336088017
Iteration: 19, Func. Count: 202, Neg. LLF: 168.09267841036726
Iteration: 20, Func. Count: 212, Neg. LLF: 168.09251246835606
Iteration: 21, Func. Count: 221, Neg. LLF: 168.09251246829072
Optimization terminated successfully (Exit mode 0)
Current function value: 168.09251246835606
Iterations: 21
Function evaluations: 221
Gradient evaluations: 21
Iteration: 1, Func. Count: 12, Neg. LLF: 184.6641833938807
Iteration: 2, Func. Count: 24, Neg. LLF: 169.75419600227
Iteration: 3, Func. Count: 35, Neg. LLF: 169.99430058922314
Iteration: 4, Func. Count: 47, Neg. LLF: 208.24876618412242
Iteration: 5, Func. Count: 59, Neg. LLF: 171.3681006930486
Iteration: 6, Func. Count: 71, Neg. LLF: 183.24605379476554
Iteration: 7, Func. Count: 83, Neg. LLF: 170.48546542087425
Iteration: 8, Func. Count: 95, Neg. LLF: 169.99875687358048
Iteration: 9, Func. Count: 107, Neg. LLF: 168.92080507883884
Iteration: 10, Func. Count: 118, Neg. LLF: 168.83787715798036
Iteration: 11, Func. Count: 129, Neg. LLF: 168.77290294651718
Iteration: 12, Func. Count: 140, Neg. LLF: 168.11212472129674
Iteration: 13, Func. Count: 151, Neg. LLF: 178.34504762499662
Iteration: 14, Func. Count: 163, Neg. LLF: 175.39886566921206
Iteration: 15, Func. Count: 175, Neg. LLF: 168.43006612008264
Iteration: 16, Func. Count: 187, Neg. LLF: 167.50456379201862
Iteration: 17, Func. Count: 199, Neg. LLF: 167.40885835396128
Iteration: 18, Func. Count: 211, Neg. LLF: 167.30930002642629
Iteration: 19, Func. Count: 223, Neg. LLF: 167.27377622694016
Iteration: 20, Func. Count: 234, Neg. LLF: 167.26543482071443
Iteration: 21, Func. Count: 245, Neg. LLF: 167.25646335375276
Iteration: 22, Func. Count: 256, Neg. LLF: 167.25564814686797
Iteration: 23, Func. Count: 267, Neg. LLF: 167.2555674527066
Iteration: 24, Func. Count: 278, Neg. LLF: 167.2555586663169
Iteration: 25, Func. Count: 289, Neg. LLF: 167.25555744472888
Iteration: 26, Func. Count: 299, Neg. LLF: 167.2555574447263
Optimization terminated successfully (Exit mode 0)
Current function value: 167.25555744472888
Iterations: 26
Function evaluations: 299
Gradient evaluations: 26
Iteration: 1, Func. Count: 9, Neg. LLF: 173.2069688252972
Iteration: 2, Func. Count: 19, Neg. LLF: 175.17234762218422
Iteration: 3, Func. Count: 29, Neg. LLF: 170.09231578580932
Iteration: 4, Func. Count: 37, Neg. LLF: 173.1598771116864
Iteration: 5, Func. Count: 46, Neg. LLF: 170.00499171238252
Iteration: 6, Func. Count: 54, Neg. LLF: 169.98006432261556
Iteration: 7, Func. Count: 62, Neg. LLF: 169.95879756980128
Iteration: 8, Func. Count: 70, Neg. LLF: 169.8836674382386
Iteration: 9, Func. Count: 78, Neg. LLF: 169.7928434816178
Iteration: 10, Func. Count: 86, Neg. LLF: 169.61912177597918
Iteration: 11, Func. Count: 94, Neg. LLF: 169.23757972494917
Iteration: 12, Func. Count: 102, Neg. LLF: 168.81270965021938
Iteration: 13, Func. Count: 110, Neg. LLF: 168.73782459468632
Iteration: 14, Func. Count: 118, Neg. LLF: 168.71534949686787
Iteration: 15, Func. Count: 126, Neg. LLF: 168.71174402494734
Iteration: 16, Func. Count: 134, Neg. LLF: 168.70993711991878
Iteration: 17, Func. Count: 142, Neg. LLF: 168.70848298359346
Iteration: 18, Func. Count: 150, Neg. LLF: 168.7082094047388
Iteration: 19, Func. Count: 158, Neg. LLF: 168.70795157319014
Iteration: 20, Func. Count: 166, Neg. LLF: 168.70793771346902
Iteration: 21, Func. Count: 173, Neg. LLF: 168.70793771349682
Optimization terminated successfully (Exit mode 0)
Current function value: 168.70793771346902
Iterations: 21
Function evaluations: 173
Gradient evaluations: 21
Iteration: 1, Func. Count: 10, Neg. LLF: 186.23361642795072
Iteration: 2, Func. Count: 20, Neg. LLF: 171.42342210752616
Iteration: 3, Func. Count: 30, Neg. LLF: 173.38788506918323
Iteration: 4, Func. Count: 40, Neg. LLF: 173.4445528920974
Iteration: 5, Func. Count: 50, Neg. LLF: 168.9527413032377
Iteration: 6, Func. Count: 59, Neg. LLF: 168.84193019552472
Iteration: 7, Func. Count: 68, Neg. LLF: 169.13683182403508
Iteration: 8, Func. Count: 78, Neg. LLF: 168.76718444319556
Iteration: 9, Func. Count: 87, Neg. LLF: 168.74955920501122
Iteration: 10, Func. Count: 96, Neg. LLF: 168.71941144565983
Iteration: 11, Func. Count: 105, Neg. LLF: 168.69901525269228
Iteration: 12, Func. Count: 114, Neg. LLF: 168.65255434669274
Iteration: 13, Func. Count: 123, Neg. LLF: 168.59268567158188
Iteration: 14, Func. Count: 132, Neg. LLF: 168.49750965265574
Iteration: 15, Func. Count: 141, Neg. LLF: 168.41276935338658
Iteration: 16, Func. Count: 150, Neg. LLF: 168.29759762236932
Iteration: 17, Func. Count: 159, Neg. LLF: 168.2606158856214
Iteration: 18, Func. Count: 168, Neg. LLF: 168.25462893425916
Iteration: 19, Func. Count: 177, Neg. LLF: 168.25362489237372
Iteration: 20, Func. Count: 186, Neg. LLF: 168.25330749407976
Iteration: 21, Func. Count: 195, Neg. LLF: 168.25330599622546
Iteration: 22, Func. Count: 203, Neg. LLF: 168.25330599616677
Optimization terminated successfully (Exit mode 0)
Current function value: 168.25330599622546
Iterations: 22
Function evaluations: 203
Gradient evaluations: 22
Iteration: 1, Func. Count: 11, Neg. LLF: 172.59846149560482
Iteration: 2, Func. Count: 22, Neg. LLF: 169.68615907831418
Iteration: 3, Func. Count: 32, Neg. LLF: 175.43073220762875
Iteration: 4, Func. Count: 43, Neg. LLF: 192.4380751597564
Iteration: 5, Func. Count: 54, Neg. LLF: 173.7363384826483
Iteration: 6, Func. Count: 65, Neg. LLF: 172.8984764569537
Iteration: 7, Func. Count: 76, Neg. LLF: 202.9063456181592
Iteration: 8, Func. Count: 87, Neg. LLF: 168.91553439339407
Iteration: 9, Func. Count: 98, Neg. LLF: 168.7599636638143
Iteration: 10, Func. Count: 108, Neg. LLF: 168.7473443348717
Iteration: 11, Func. Count: 118, Neg. LLF: 168.6901678902838
Iteration: 12, Func. Count: 128, Neg. LLF: 168.534521424484
Iteration: 13, Func. Count: 138, Neg. LLF: 168.36997904986512
Iteration: 14, Func. Count: 148, Neg. LLF: 168.27171271009053
Iteration: 15, Func. Count: 158, Neg. LLF: 168.25810004147354
Iteration: 16, Func. Count: 168, Neg. LLF: 168.25364198064165
Iteration: 17, Func. Count: 178, Neg. LLF: 168.25333814426534
Iteration: 18, Func. Count: 188, Neg. LLF: 168.25330796412314
Iteration: 19, Func. Count: 198, Neg. LLF: 168.25330602298968
Iteration: 20, Func. Count: 207, Neg. LLF: 168.2533061518801
Optimization terminated successfully (Exit mode 0)
Current function value: 168.25330602298968
Iterations: 20
Function evaluations: 207
Gradient evaluations: 20
Iteration: 1, Func. Count: 12, Neg. LLF: 172.3871375637741
Iteration: 2, Func. Count: 24, Neg. LLF: 169.68527429023825
Iteration: 3, Func. Count: 35, Neg. LLF: 175.16469919716133
Iteration: 4, Func. Count: 47, Neg. LLF: 193.84062517555543
Iteration: 5, Func. Count: 59, Neg. LLF: 173.04785866678432
Iteration: 6, Func. Count: 71, Neg. LLF: 172.65711251212963
Iteration: 7, Func. Count: 83, Neg. LLF: 175.01198232253483
Iteration: 8, Func. Count: 95, Neg. LLF: 168.7808407238339
Iteration: 9, Func. Count: 106, Neg. LLF: 168.76038550975423
Iteration: 10, Func. Count: 117, Neg. LLF: 168.75066268965915
Iteration: 11, Func. Count: 128, Neg. LLF: 168.7350997211392
Iteration: 12, Func. Count: 139, Neg. LLF: 168.6901699841758
Iteration: 13, Func. Count: 150, Neg. LLF: 168.5960737594058
Iteration: 14, Func. Count: 161, Neg. LLF: 168.42000466073333
Iteration: 15, Func. Count: 172, Neg. LLF: 168.29712847710226
Iteration: 16, Func. Count: 183, Neg. LLF: 168.3928977737293
Iteration: 17, Func. Count: 195, Neg. LLF: 170.0214569788988
Iteration: 18, Func. Count: 207, Neg. LLF: 168.2410637866644
Iteration: 19, Func. Count: 218, Neg. LLF: 168.24003610378418
Iteration: 20, Func. Count: 229, Neg. LLF: 168.23992868841916
Iteration: 21, Func. Count: 240, Neg. LLF: 168.23985040822149
Iteration: 22, Func. Count: 251, Neg. LLF: 168.23984987903492
Optimization terminated successfully (Exit mode 0)
Current function value: 168.23984987903492
Iterations: 22
Function evaluations: 251
Gradient evaluations: 22
Iteration: 1, Func. Count: 13, Neg. LLF: 172.38077144266498
Iteration: 2, Func. Count: 25, Neg. LLF: 169.60301567829598
Iteration: 3, Func. Count: 37, Neg. LLF: 183.25074722118737
Iteration: 4, Func. Count: 52, Neg. LLF: 189.91836969471126
Iteration: 5, Func. Count: 65, Neg. LLF: 185.3550146998879
Iteration: 6, Func. Count: 78, Neg. LLF: 174.0676650898549
Iteration: 7, Func. Count: 91, Neg. LLF: 172.4897795118266
Iteration: 8, Func. Count: 104, Neg. LLF: 169.4452909701248
Iteration: 9, Func. Count: 117, Neg. LLF: 168.66167761713865
Iteration: 10, Func. Count: 130, Neg. LLF: 168.5758460368453
Iteration: 11, Func. Count: 142, Neg. LLF: 168.54243736960123
Iteration: 12, Func. Count: 154, Neg. LLF: 168.3744740545406
Iteration: 13, Func. Count: 166, Neg. LLF: 167.84591362285548
Iteration: 14, Func. Count: 178, Neg. LLF: 167.64928766200046
Iteration: 15, Func. Count: 190, Neg. LLF: 167.61221022955013
Iteration: 16, Func. Count: 202, Neg. LLF: 167.5408322023472
Iteration: 17, Func. Count: 214, Neg. LLF: 167.45127556120565
Iteration: 18, Func. Count: 226, Neg. LLF: 167.3825759250144
Iteration: 19, Func. Count: 238, Neg. LLF: 167.31828227045506
Iteration: 20, Func. Count: 250, Neg. LLF: 167.29379007986273
Iteration: 21, Func. Count: 262, Neg. LLF: 167.29023934173657
Iteration: 22, Func. Count: 274, Neg. LLF: 167.28977746124394
Iteration: 23, Func. Count: 286, Neg. LLF: 167.28976413458847
Iteration: 24, Func. Count: 297, Neg. LLF: 167.28976412562437
Optimization terminated successfully (Exit mode 0)
Current function value: 167.28976413458847
Iterations: 24
Function evaluations: 297
Gradient evaluations: 24
Iteration: 1, Func. Count: 10, Neg. LLF: 173.26291403079568
Iteration: 2, Func. Count: 20, Neg. LLF: 172.61510144155176
Iteration: 3, Func. Count: 31, Neg. LLF: 170.40419885959017
Iteration: 4, Func. Count: 40, Neg. LLF: 172.7689467201345
Iteration: 5, Func. Count: 51, Neg. LLF: 170.17178457458257
Iteration: 6, Func. Count: 60, Neg. LLF: 170.03299041242497
Iteration: 7, Func. Count: 69, Neg. LLF: 169.95989221157203
Iteration: 8, Func. Count: 78, Neg. LLF: 169.94429802960028
Iteration: 9, Func. Count: 87, Neg. LLF: 169.91767195025562
Iteration: 10, Func. Count: 96, Neg. LLF: 169.8445800242997
Iteration: 11, Func. Count: 105, Neg. LLF: 169.65779380662661
Iteration: 12, Func. Count: 114, Neg. LLF: 169.34822540370752
Iteration: 13, Func. Count: 123, Neg. LLF: 168.91734221992996
Iteration: 14, Func. Count: 132, Neg. LLF: 168.72687703553015
Iteration: 15, Func. Count: 141, Neg. LLF: 169.12047644135382
Iteration: 16, Func. Count: 151, Neg. LLF: 168.7225072580981
Iteration: 17, Func. Count: 161, Neg. LLF: 168.69722940398094
Iteration: 18, Func. Count: 170, Neg. LLF: 168.69605519930957
Iteration: 19, Func. Count: 179, Neg. LLF: 168.69599873257513
Iteration: 20, Func. Count: 188, Neg. LLF: 168.69597055201035
Iteration: 21, Func. Count: 197, Neg. LLF: 168.6959636321914
Iteration: 22, Func. Count: 206, Neg. LLF: 168.69595481810433
Iteration: 23, Func. Count: 214, Neg. LLF: 168.6959548180343
Optimization terminated successfully (Exit mode 0)
Current function value: 168.69595481810433
Iterations: 23
Function evaluations: 214
Gradient evaluations: 23
Iteration: 1, Func. Count: 11, Neg. LLF: 196.04118004286397
Iteration: 2, Func. Count: 22, Neg. LLF: 174.7900216646081
Iteration: 3, Func. Count: 33, Neg. LLF: 169.45548550700528
Iteration: 4, Func. Count: 43, Neg. LLF: 175.77922737584302
Iteration: 5, Func. Count: 54, Neg. LLF: 192.191017223532
Iteration: 6, Func. Count: 65, Neg. LLF: 169.24063252662782
Iteration: 7, Func. Count: 76, Neg. LLF: 169.05688622776856
Iteration: 8, Func. Count: 87, Neg. LLF: 168.7641218441481
Iteration: 9, Func. Count: 97, Neg. LLF: 168.75113528988774
Iteration: 10, Func. Count: 107, Neg. LLF: 168.72783411182
Iteration: 11, Func. Count: 117, Neg. LLF: 168.6333071870512
Iteration: 12, Func. Count: 127, Neg. LLF: 168.544895593834
Iteration: 13, Func. Count: 137, Neg. LLF: 168.39525918479924
Iteration: 14, Func. Count: 147, Neg. LLF: 168.26301097489065
Iteration: 15, Func. Count: 157, Neg. LLF: 168.25420914230247
Iteration: 16, Func. Count: 167, Neg. LLF: 168.25350912957742
Iteration: 17, Func. Count: 177, Neg. LLF: 168.25330681003626
Iteration: 18, Func. Count: 187, Neg. LLF: 168.2533060907255
Optimization terminated successfully (Exit mode 0)
Current function value: 168.2533060907255
Iterations: 18
Function evaluations: 187
Gradient evaluations: 18
Iteration: 1, Func. Count: 12, Neg. LLF: 172.5001233807932
Iteration: 2, Func. Count: 24, Neg. LLF: 169.7363608486923
Iteration: 3, Func. Count: 35, Neg. LLF: 173.9436704421358
Iteration: 4, Func. Count: 47, Neg. LLF: 181.14840476661658
Iteration: 5, Func. Count: 59, Neg. LLF: 176.24054605915447
Iteration: 6, Func. Count: 71, Neg. LLF: 172.43265645194288
Iteration: 7, Func. Count: 83, Neg. LLF: 171.12659140731915
Iteration: 8, Func. Count: 95, Neg. LLF: 169.45238336234647
Iteration: 9, Func. Count: 107, Neg. LLF: 168.7581051797303
Iteration: 10, Func. Count: 118, Neg. LLF: 168.74769407237298
Iteration: 11, Func. Count: 129, Neg. LLF: 168.67661665422966
Iteration: 12, Func. Count: 140, Neg. LLF: 168.5365530925325
Iteration: 13, Func. Count: 151, Neg. LLF: 168.39855284952384
Iteration: 14, Func. Count: 162, Neg. LLF: 168.30960132550322
Iteration: 15, Func. Count: 173, Neg. LLF: 168.26168608589228
Iteration: 16, Func. Count: 184, Neg. LLF: 168.25515185076821
Iteration: 17, Func. Count: 195, Neg. LLF: 168.25365328760222
Iteration: 18, Func. Count: 206, Neg. LLF: 168.25335082366968
Iteration: 19, Func. Count: 217, Neg. LLF: 168.25331241071254
Iteration: 20, Func. Count: 228, Neg. LLF: 168.25330652049334
Iteration: 21, Func. Count: 239, Neg. LLF: 168.25330595535985
Optimization terminated successfully (Exit mode 0)
Current function value: 168.25330595535985
Iterations: 21
Function evaluations: 239
Gradient evaluations: 21
Iteration: 1, Func. Count: 13, Neg. LLF: 172.44623736021344
Iteration: 2, Func. Count: 26, Neg. LLF: 170.28798162882563
Iteration: 3, Func. Count: 38, Neg. LLF: 173.07262204588355
Iteration: 4, Func. Count: 51, Neg. LLF: 174.6329331396262
Iteration: 5, Func. Count: 64, Neg. LLF: 175.14496241827607
Iteration: 6, Func. Count: 77, Neg. LLF: 173.53500004956803
Iteration: 7, Func. Count: 90, Neg. LLF: 169.31874356466284
Iteration: 8, Func. Count: 103, Neg. LLF: 173.97962340211407
Iteration: 9, Func. Count: 116, Neg. LLF: 168.7613535456371
Iteration: 10, Func. Count: 128, Neg. LLF: 168.7401377377339
Iteration: 11, Func. Count: 140, Neg. LLF: 168.71846259994513
Iteration: 12, Func. Count: 152, Neg. LLF: 168.65991436701262
Iteration: 13, Func. Count: 164, Neg. LLF: 168.546038405994
Iteration: 14, Func. Count: 176, Neg. LLF: 168.41428337120053
Iteration: 15, Func. Count: 188, Neg. LLF: 168.2596630317745
Iteration: 16, Func. Count: 200, Neg. LLF: 168.45174339231502
Iteration: 17, Func. Count: 213, Neg. LLF: 168.31671245189767
Iteration: 18, Func. Count: 226, Neg. LLF: 168.24205371717952
Iteration: 19, Func. Count: 238, Neg. LLF: 168.2400180370899
Iteration: 20, Func. Count: 250, Neg. LLF: 168.23986915632474
Iteration: 21, Func. Count: 262, Neg. LLF: 168.2398510093145
Iteration: 22, Func. Count: 274, Neg. LLF: 168.23984993607385
Iteration: 23, Func. Count: 285, Neg. LLF: 168.23984993615497
Optimization terminated successfully (Exit mode 0)
Current function value: 168.23984993607385
Iterations: 23
Function evaluations: 285
Gradient evaluations: 23
Iteration: 1, Func. Count: 14, Neg. LLF: 173.06037717583288
Iteration: 2, Func. Count: 28, Neg. LLF: 176.7685235115367
Iteration: 3, Func. Count: 42, Neg. LLF: 169.3515923929362
Iteration: 4, Func. Count: 55, Neg. LLF: 179.58160693932052
Iteration: 5, Func. Count: 70, Neg. LLF: 171.97387471963592
Iteration: 6, Func. Count: 84, Neg. LLF: 168.65242509158628
Iteration: 7, Func. Count: 97, Neg. LLF: 168.9402317505634
Iteration: 8, Func. Count: 111, Neg. LLF: 168.57832837169278
Iteration: 9, Func. Count: 124, Neg. LLF: 168.54832675653458
Iteration: 10, Func. Count: 137, Neg. LLF: 168.5006068454684
Iteration: 11, Func. Count: 150, Neg. LLF: 168.42763807382312
Iteration: 12, Func. Count: 163, Neg. LLF: 168.12086801733946
Iteration: 13, Func. Count: 176, Neg. LLF: 167.64014098222478
Iteration: 14, Func. Count: 189, Neg. LLF: 167.4774896596954
Iteration: 15, Func. Count: 202, Neg. LLF: 167.41434936564173
Iteration: 16, Func. Count: 215, Neg. LLF: 167.35548600410814
Iteration: 17, Func. Count: 228, Neg. LLF: 167.31751632263894
Iteration: 18, Func. Count: 241, Neg. LLF: 167.3207304163774
Iteration: 19, Func. Count: 255, Neg. LLF: 167.29095352649233
Iteration: 20, Func. Count: 268, Neg. LLF: 167.29023692277198
Iteration: 21, Func. Count: 281, Neg. LLF: 167.28977500822987
Iteration: 22, Func. Count: 294, Neg. LLF: 167.28976668713278
Iteration: 23, Func. Count: 307, Neg. LLF: 167.28976393818152
Iteration: 24, Func. Count: 319, Neg. LLF: 167.28976392934763
Optimization terminated successfully (Exit mode 0)
Current function value: 167.28976393818152
Iterations: 24
Function evaluations: 319
Gradient evaluations: 24
Iteration: 1, Func. Count: 7, Neg. LLF: 173.73864694863957
Iteration: 2, Func. Count: 14, Neg. LLF: 176.2176801736671
Iteration: 3, Func. Count: 22, Neg. LLF: 171.4815606627253
Iteration: 4, Func. Count: 28, Neg. LLF: 171.403623241377
Iteration: 5, Func. Count: 34, Neg. LLF: 171.29217198233522
Iteration: 6, Func. Count: 40, Neg. LLF: 171.24934866440947
Iteration: 7, Func. Count: 46, Neg. LLF: 171.1794822406912
Iteration: 8, Func. Count: 52, Neg. LLF: 171.06348728816542
Iteration: 9, Func. Count: 58, Neg. LLF: 170.6554257167552
Iteration: 10, Func. Count: 64, Neg. LLF: 170.18506926756558
Iteration: 11, Func. Count: 70, Neg. LLF: 169.7273635989319
Iteration: 12, Func. Count: 76, Neg. LLF: 170.13407545612912
Iteration: 13, Func. Count: 83, Neg. LLF: 176.47001694147167
Iteration: 14, Func. Count: 90, Neg. LLF: 169.3663310387179
Iteration: 15, Func. Count: 96, Neg. LLF: 169.35872599154982
Iteration: 16, Func. Count: 103, Neg. LLF: 169.34867993883142
Iteration: 17, Func. Count: 110, Neg. LLF: 169.31951576449475
Iteration: 18, Func. Count: 116, Neg. LLF: 169.31910798906773
Iteration: 19, Func. Count: 122, Neg. LLF: 169.3190375550281
Iteration: 20, Func. Count: 128, Neg. LLF: 169.3190183294001
Iteration: 21, Func. Count: 133, Neg. LLF: 169.3190183293295
Optimization terminated successfully (Exit mode 0)
Current function value: 169.3190183294001
Iterations: 21
Function evaluations: 133
Gradient evaluations: 21
Iteration: 1, Func. Count: 8, Neg. LLF: 173.1308862830931
Iteration: 2, Func. Count: 15, Neg. LLF: 172.62415617520188
Iteration: 3, Func. Count: 24, Neg. LLF: 180.11530876380132
Iteration: 4, Func. Count: 32, Neg. LLF: 198.2931769493468
Iteration: 5, Func. Count: 40, Neg. LLF: 171.18477895466654
Iteration: 6, Func. Count: 48, Neg. LLF: 169.86573821907717
Iteration: 7, Func. Count: 55, Neg. LLF: 169.84914877013617
Iteration: 8, Func. Count: 62, Neg. LLF: 169.77146920749354
Iteration: 9, Func. Count: 69, Neg. LLF: 169.7507228695677
Iteration: 10, Func. Count: 76, Neg. LLF: 169.6897841205389
Iteration: 11, Func. Count: 83, Neg. LLF: 169.65419085620422
Iteration: 12, Func. Count: 90, Neg. LLF: 169.62382709150253
Iteration: 13, Func. Count: 97, Neg. LLF: 169.57250287196823
Iteration: 14, Func. Count: 104, Neg. LLF: 169.50014084455123
Iteration: 15, Func. Count: 111, Neg. LLF: 169.398159779138
Iteration: 16, Func. Count: 118, Neg. LLF: 169.32987725028877
Iteration: 17, Func. Count: 125, Neg. LLF: 169.3193736765171
Iteration: 18, Func. Count: 132, Neg. LLF: 169.31924481183614
Iteration: 19, Func. Count: 139, Neg. LLF: 169.31901843019463
Iteration: 20, Func. Count: 145, Neg. LLF: 169.31901844905593
Optimization terminated successfully (Exit mode 0)
Current function value: 169.31901843019463
Iterations: 20
Function evaluations: 145
Gradient evaluations: 20
Iteration: 1, Func. Count: 9, Neg. LLF: 173.69817160793994
Iteration: 2, Func. Count: 17, Neg. LLF: 173.53321574614404
Iteration: 3, Func. Count: 26, Neg. LLF: 184.14027451219894
Iteration: 4, Func. Count: 35, Neg. LLF: 175.84643679933083
Iteration: 5, Func. Count: 44, Neg. LLF: 175.46646465560323
Iteration: 6, Func. Count: 53, Neg. LLF: 171.47634987038944
Iteration: 7, Func. Count: 61, Neg. LLF: 171.30651556406573
Iteration: 8, Func. Count: 69, Neg. LLF: 171.27958501107406
Iteration: 9, Func. Count: 77, Neg. LLF: 171.21075577497425
Iteration: 10, Func. Count: 85, Neg. LLF: 171.03501494732367
Iteration: 11, Func. Count: 93, Neg. LLF: 170.63188509847427
Iteration: 12, Func. Count: 101, Neg. LLF: 170.12419372597338
Iteration: 13, Func. Count: 109, Neg. LLF: 170.8452652994559
Iteration: 14, Func. Count: 118, Neg. LLF: 170.59459007575882
Iteration: 15, Func. Count: 127, Neg. LLF: 169.80769673823306
Iteration: 16, Func. Count: 136, Neg. LLF: 169.34365557663935
Iteration: 17, Func. Count: 144, Neg. LLF: 169.32583278827553
Iteration: 18, Func. Count: 152, Neg. LLF: 169.3208844841729
Iteration: 19, Func. Count: 160, Neg. LLF: 169.3191093380417
Iteration: 20, Func. Count: 168, Neg. LLF: 169.31903394240055
Iteration: 21, Func. Count: 176, Neg. LLF: 169.31901837009215
Iteration: 22, Func. Count: 183, Neg. LLF: 169.31901848275413
Optimization terminated successfully (Exit mode 0)
Current function value: 169.31901837009215
Iterations: 22
Function evaluations: 183
Gradient evaluations: 22
Iteration: 1, Func. Count: 10, Neg. LLF: 173.69865127251123
Iteration: 2, Func. Count: 19, Neg. LLF: 173.54192579843743
Iteration: 3, Func. Count: 29, Neg. LLF: 184.13658020042158
Iteration: 4, Func. Count: 39, Neg. LLF: 175.82578761648082
Iteration: 5, Func. Count: 49, Neg. LLF: 175.47015423616196
Iteration: 6, Func. Count: 59, Neg. LLF: 171.47898169140944
Iteration: 7, Func. Count: 68, Neg. LLF: 171.30814147238877
Iteration: 8, Func. Count: 77, Neg. LLF: 171.28122288048334
Iteration: 9, Func. Count: 86, Neg. LLF: 171.21485706046624
Iteration: 10, Func. Count: 95, Neg. LLF: 171.03465293592785
Iteration: 11, Func. Count: 104, Neg. LLF: 170.6346440795975
Iteration: 12, Func. Count: 113, Neg. LLF: 170.1249330494466
Iteration: 13, Func. Count: 122, Neg. LLF: 170.84356569195592
Iteration: 14, Func. Count: 132, Neg. LLF: 170.66159110403524
Iteration: 15, Func. Count: 142, Neg. LLF: 169.81162735899497
Iteration: 16, Func. Count: 152, Neg. LLF: 169.3421459221466
Iteration: 17, Func. Count: 161, Neg. LLF: 169.32564131845385
Iteration: 18, Func. Count: 170, Neg. LLF: 169.320673978686
Iteration: 19, Func. Count: 179, Neg. LLF: 169.31909620010498
Iteration: 20, Func. Count: 188, Neg. LLF: 169.3190309920578
Iteration: 21, Func. Count: 197, Neg. LLF: 169.31901822500464
Iteration: 22, Func. Count: 205, Neg. LLF: 169.31901830717666
Optimization terminated successfully (Exit mode 0)
Current function value: 169.31901822500464
Iterations: 22
Function evaluations: 205
Gradient evaluations: 22
Iteration: 1, Func. Count: 11, Neg. LLF: 173.6988268723074
Iteration: 2, Func. Count: 21, Neg. LLF: 173.58170823562799
Iteration: 3, Func. Count: 32, Neg. LLF: 184.10785501871013
Iteration: 4, Func. Count: 43, Neg. LLF: 175.79425877702997
Iteration: 5, Func. Count: 54, Neg. LLF: 175.2383188090918
Iteration: 6, Func. Count: 65, Neg. LLF: 171.47019212343568
Iteration: 7, Func. Count: 75, Neg. LLF: 171.30830283272775
Iteration: 8, Func. Count: 85, Neg. LLF: 171.28160943495658
Iteration: 9, Func. Count: 95, Neg. LLF: 171.2135344286074
Iteration: 10, Func. Count: 105, Neg. LLF: 171.0308345833321
Iteration: 11, Func. Count: 115, Neg. LLF: 170.61732456252878
Iteration: 12, Func. Count: 125, Neg. LLF: 170.1094526674595
Iteration: 13, Func. Count: 135, Neg. LLF: 169.60303427938956
Iteration: 14, Func. Count: 145, Neg. LLF: 170.4243490623631
Iteration: 15, Func. Count: 156, Neg. LLF: 170.1258949443458
Iteration: 16, Func. Count: 167, Neg. LLF: 170.04307279767013
Iteration: 17, Func. Count: 178, Neg. LLF: 169.031009200313
Iteration: 18, Func. Count: 188, Neg. LLF: 169.0088532197511
Iteration: 19, Func. Count: 198, Neg. LLF: 169.00788575031788
Iteration: 20, Func. Count: 208, Neg. LLF: 169.007268956762
Iteration: 21, Func. Count: 218, Neg. LLF: 169.00717872632043
Iteration: 22, Func. Count: 228, Neg. LLF: 169.0071715022675
Iteration: 23, Func. Count: 237, Neg. LLF: 169.00717149614786
Optimization terminated successfully (Exit mode 0)
Current function value: 169.0071715022675
Iterations: 23
Function evaluations: 237
Gradient evaluations: 23
Iteration: 1, Func. Count: 8, Neg. LLF: 173.71190623232093
Iteration: 2, Func. Count: 16, Neg. LLF: 174.11519476410723
Iteration: 3, Func. Count: 25, Neg. LLF: 171.65675932561814
Iteration: 4, Func. Count: 33, Neg. LLF: 171.5986455991655
Iteration: 5, Func. Count: 41, Neg. LLF: 171.1326613786
Iteration: 6, Func. Count: 48, Neg. LLF: 171.07550689328733
Iteration: 7, Func. Count: 55, Neg. LLF: 170.9415230986833
Iteration: 8, Func. Count: 62, Neg. LLF: 170.65553194774463
Iteration: 9, Func. Count: 69, Neg. LLF: 170.17091678101158
Iteration: 10, Func. Count: 76, Neg. LLF: 169.69161141752198
Iteration: 11, Func. Count: 83, Neg. LLF: 168.9994333302512
Iteration: 12, Func. Count: 90, Neg. LLF: 168.7513520795609
Iteration: 13, Func. Count: 97, Neg. LLF: 168.70864013557727
Iteration: 14, Func. Count: 104, Neg. LLF: 168.71050777606223
Iteration: 15, Func. Count: 112, Neg. LLF: 168.68588751279336
Iteration: 16, Func. Count: 119, Neg. LLF: 168.6847033631768
Iteration: 17, Func. Count: 126, Neg. LLF: 168.6846842754503
Iteration: 18, Func. Count: 133, Neg. LLF: 168.684681716832
Iteration: 19, Func. Count: 139, Neg. LLF: 168.68468171682966
Optimization terminated successfully (Exit mode 0)
Current function value: 168.684681716832
Iterations: 19
Function evaluations: 139
Gradient evaluations: 19
Iteration: 1, Func. Count: 9, Neg. LLF: 173.12390874831962
Iteration: 2, Func. Count: 18, Neg. LLF: 172.814184763182
Iteration: 3, Func. Count: 27, Neg. LLF: 191.7454961349414
Iteration: 4, Func. Count: 36, Neg. LLF: 169.5405937097025
Iteration: 5, Func. Count: 44, Neg. LLF: 170.654780769106
Iteration: 6, Func. Count: 53, Neg. LLF: 169.48116093588374
Iteration: 7, Func. Count: 62, Neg. LLF: 169.32948378552513
Iteration: 8, Func. Count: 70, Neg. LLF: 169.2650704423169
Iteration: 9, Func. Count: 78, Neg. LLF: 169.17415881981862
Iteration: 10, Func. Count: 86, Neg. LLF: 168.996760884241
Iteration: 11, Func. Count: 94, Neg. LLF: 168.83382788528007
Iteration: 12, Func. Count: 102, Neg. LLF: 168.72867786322942
Iteration: 13, Func. Count: 110, Neg. LLF: 168.69367736412312
Iteration: 14, Func. Count: 118, Neg. LLF: 168.68642872020112
Iteration: 15, Func. Count: 126, Neg. LLF: 168.68472289017805
Iteration: 16, Func. Count: 134, Neg. LLF: 168.68468338095664
Iteration: 17, Func. Count: 142, Neg. LLF: 168.68468181202599
Iteration: 18, Func. Count: 149, Neg. LLF: 168.68468183146882
Optimization terminated successfully (Exit mode 0)
Current function value: 168.68468181202599
Iterations: 18
Function evaluations: 149
Gradient evaluations: 18
Iteration: 1, Func. Count: 10, Neg. LLF: 173.12614579412417
Iteration: 2, Func. Count: 20, Neg. LLF: 172.8990146313107
Iteration: 3, Func. Count: 30, Neg. LLF: 192.5431140669616
Iteration: 4, Func. Count: 40, Neg. LLF: 169.54479125842568
Iteration: 5, Func. Count: 49, Neg. LLF: 170.00323549339976
Iteration: 6, Func. Count: 59, Neg. LLF: 169.373145530927
Iteration: 7, Func. Count: 68, Neg. LLF: 169.32159008779792
Iteration: 8, Func. Count: 77, Neg. LLF: 169.2899351390896
Iteration: 9, Func. Count: 86, Neg. LLF: 169.19781423317426
Iteration: 10, Func. Count: 95, Neg. LLF: 169.04005196912533
Iteration: 11, Func. Count: 104, Neg. LLF: 168.83772014784103
Iteration: 12, Func. Count: 113, Neg. LLF: 168.70765291083728
Iteration: 13, Func. Count: 122, Neg. LLF: 168.68583303161333
Iteration: 14, Func. Count: 131, Neg. LLF: 168.68481433960164
Iteration: 15, Func. Count: 140, Neg. LLF: 168.68470426465734
Iteration: 16, Func. Count: 149, Neg. LLF: 168.68468301182767
Iteration: 17, Func. Count: 158, Neg. LLF: 168.68468185275512
Iteration: 18, Func. Count: 166, Neg. LLF: 168.68468198838747
Optimization terminated successfully (Exit mode 0)
Current function value: 168.68468185275512
Iterations: 18
Function evaluations: 166
Gradient evaluations: 18
Iteration: 1, Func. Count: 11, Neg. LLF: 173.1240708543821
Iteration: 2, Func. Count: 21, Neg. LLF: 170.30412715988786
Iteration: 3, Func. Count: 33, Neg. LLF: 179.5009929068519
Iteration: 4, Func. Count: 44, Neg. LLF: 198.5350667456521
Iteration: 5, Func. Count: 55, Neg. LLF: 174.70889177095353
Iteration: 6, Func. Count: 66, Neg. LLF: 169.51043697132312
Iteration: 7, Func. Count: 77, Neg. LLF: 169.3798154498234
Iteration: 8, Func. Count: 87, Neg. LLF: 169.3466866783654
Iteration: 9, Func. Count: 97, Neg. LLF: 169.17601791068492
Iteration: 10, Func. Count: 107, Neg. LLF: 168.74913997175446
Iteration: 11, Func. Count: 117, Neg. LLF: 168.71039656370442
Iteration: 12, Func. Count: 127, Neg. LLF: 168.70717590191984
Iteration: 13, Func. Count: 137, Neg. LLF: 168.70587272511855
Iteration: 14, Func. Count: 147, Neg. LLF: 168.6997523000964
Iteration: 15, Func. Count: 157, Neg. LLF: 168.69205526923136
Iteration: 16, Func. Count: 167, Neg. LLF: 168.6867372342184
Iteration: 17, Func. Count: 177, Neg. LLF: 168.6848957320259
Iteration: 18, Func. Count: 187, Neg. LLF: 168.684688820559
Iteration: 19, Func. Count: 197, Neg. LLF: 168.68468286644784
Iteration: 20, Func. Count: 207, Neg. LLF: 168.68468171721625
Iteration: 21, Func. Count: 216, Neg. LLF: 168.6846817475419
Optimization terminated successfully (Exit mode 0)
Current function value: 168.68468171721625
Iterations: 21
Function evaluations: 216
Gradient evaluations: 21
Iteration: 1, Func. Count: 12, Neg. LLF: 173.70346273340803
Iteration: 2, Func. Count: 24, Neg. LLF: 172.70914366558685
Iteration: 3, Func. Count: 36, Neg. LLF: 182.4853788611168
Iteration: 4, Func. Count: 48, Neg. LLF: 174.95308233354424
Iteration: 5, Func. Count: 60, Neg. LLF: 171.1772770960473
Iteration: 6, Func. Count: 71, Neg. LLF: 171.1401978226623
Iteration: 7, Func. Count: 82, Neg. LLF: 170.8594982450687
Iteration: 8, Func. Count: 93, Neg. LLF: 169.41472152607312
Iteration: 9, Func. Count: 104, Neg. LLF: 199.83628790803644
Iteration: 10, Func. Count: 116, Neg. LLF: 178.93965885414195
Iteration: 11, Func. Count: 128, Neg. LLF: 180.82604626150308
Iteration: 12, Func. Count: 140, Neg. LLF: 173.45525337804773
Iteration: 13, Func. Count: 152, Neg. LLF: 169.37564307770685
Iteration: 14, Func. Count: 164, Neg. LLF: 168.10114351982028
Iteration: 15, Func. Count: 175, Neg. LLF: 168.07462921883226
Iteration: 16, Func. Count: 186, Neg. LLF: 168.06972175019186
Iteration: 17, Func. Count: 197, Neg. LLF: 168.05608265953342
Iteration: 18, Func. Count: 208, Neg. LLF: 168.0542639134836
Iteration: 19, Func. Count: 219, Neg. LLF: 168.0539494318331
Iteration: 20, Func. Count: 230, Neg. LLF: 168.05386145801904
Iteration: 21, Func. Count: 241, Neg. LLF: 168.05385868579037
Iteration: 22, Func. Count: 251, Neg. LLF: 168.05385868574194
Optimization terminated successfully (Exit mode 0)
Current function value: 168.05385868579037
Iterations: 22
Function evaluations: 251
Gradient evaluations: 22
Iteration: 1, Func. Count: 9, Neg. LLF: 174.4022189447205
Iteration: 2, Func. Count: 18, Neg. LLF: 172.85908591961012
Iteration: 3, Func. Count: 27, Neg. LLF: 172.61447074784658
Iteration: 4, Func. Count: 36, Neg. LLF: 179.93158595189405
Iteration: 5, Func. Count: 45, Neg. LLF: 171.76710601114354
Iteration: 6, Func. Count: 54, Neg. LLF: 171.2016884878444
Iteration: 7, Func. Count: 62, Neg. LLF: 176.63731851163254
Iteration: 8, Func. Count: 71, Neg. LLF: 171.07419789805297
Iteration: 9, Func. Count: 79, Neg. LLF: 170.9885445585954
Iteration: 10, Func. Count: 87, Neg. LLF: 170.70534125037267
Iteration: 11, Func. Count: 95, Neg. LLF: 170.3476253998679
Iteration: 12, Func. Count: 103, Neg. LLF: 169.29945682457264
Iteration: 13, Func. Count: 111, Neg. LLF: 168.5785543485643
Iteration: 14, Func. Count: 119, Neg. LLF: 168.22814110178325
Iteration: 15, Func. Count: 127, Neg. LLF: 168.20028397303938
Iteration: 16, Func. Count: 135, Neg. LLF: 168.15293039924367
Iteration: 17, Func. Count: 143, Neg. LLF: 168.14988829974826
Iteration: 18, Func. Count: 151, Neg. LLF: 168.14944326261445
Iteration: 19, Func. Count: 159, Neg. LLF: 168.1493985269741
Iteration: 20, Func. Count: 167, Neg. LLF: 168.14939064433466
Iteration: 21, Func. Count: 174, Neg. LLF: 168.1493906443709
Optimization terminated successfully (Exit mode 0)
Current function value: 168.14939064433466
Iterations: 21
Function evaluations: 174
Gradient evaluations: 21
Iteration: 1, Func. Count: 10, Neg. LLF: 196.04059507915574
Iteration: 2, Func. Count: 20, Neg. LLF: 192.55256533705887
Iteration: 3, Func. Count: 30, Neg. LLF: 172.5660617735083
Iteration: 4, Func. Count: 40, Neg. LLF: 169.40744883873356
Iteration: 5, Func. Count: 49, Neg. LLF: 170.0113664933517
Iteration: 6, Func. Count: 59, Neg. LLF: 171.46930964450374
Iteration: 7, Func. Count: 69, Neg. LLF: 169.1822064811553
Iteration: 8, Func. Count: 79, Neg. LLF: 169.02840626864852
Iteration: 9, Func. Count: 88, Neg. LLF: 168.9618273516111
Iteration: 10, Func. Count: 97, Neg. LLF: 168.88880810052402
Iteration: 11, Func. Count: 106, Neg. LLF: 168.79338110927517
Iteration: 12, Func. Count: 115, Neg. LLF: 168.5608002248866
Iteration: 13, Func. Count: 124, Neg. LLF: 168.35665885514794
Iteration: 14, Func. Count: 133, Neg. LLF: 168.27575392736384
Iteration: 15, Func. Count: 142, Neg. LLF: 168.1624123067843
Iteration: 16, Func. Count: 151, Neg. LLF: 168.1507455239585
Iteration: 17, Func. Count: 160, Neg. LLF: 168.1495797475901
Iteration: 18, Func. Count: 169, Neg. LLF: 168.1494659483434
Iteration: 19, Func. Count: 178, Neg. LLF: 168.14939849990708
Iteration: 20, Func. Count: 187, Neg. LLF: 168.1493907241562
Iteration: 21, Func. Count: 195, Neg. LLF: 168.14939073745398
Optimization terminated successfully (Exit mode 0)
Current function value: 168.1493907241562
Iterations: 21
Function evaluations: 195
Gradient evaluations: 21
Iteration: 1, Func. Count: 11, Neg. LLF: 196.00793987116336
Iteration: 2, Func. Count: 22, Neg. LLF: 178.17071428992858
Iteration: 3, Func. Count: 33, Neg. LLF: 173.45719105915438
Iteration: 4, Func. Count: 44, Neg. LLF: 186.80573259047475
Iteration: 5, Func. Count: 55, Neg. LLF: 169.3389819212645
Iteration: 6, Func. Count: 65, Neg. LLF: 170.22956418024432
Iteration: 7, Func. Count: 77, Neg. LLF: 169.07937762667527
Iteration: 8, Func. Count: 87, Neg. LLF: 169.0240542330655
Iteration: 9, Func. Count: 97, Neg. LLF: 168.92679206010618
Iteration: 10, Func. Count: 107, Neg. LLF: 168.87427120832265
Iteration: 11, Func. Count: 117, Neg. LLF: 168.72033505232025
Iteration: 12, Func. Count: 127, Neg. LLF: 168.2089395180755
Iteration: 13, Func. Count: 137, Neg. LLF: 168.32540255162166
Iteration: 14, Func. Count: 148, Neg. LLF: 168.16661245866783
Iteration: 15, Func. Count: 158, Neg. LLF: 168.15695450662386
Iteration: 16, Func. Count: 168, Neg. LLF: 168.15115874872453
Iteration: 17, Func. Count: 178, Neg. LLF: 168.14958780574483
Iteration: 18, Func. Count: 188, Neg. LLF: 168.14939880206288
Iteration: 19, Func. Count: 198, Neg. LLF: 168.14939047504325
Iteration: 20, Func. Count: 207, Neg. LLF: 168.14939065198075
Optimization terminated successfully (Exit mode 0)
Current function value: 168.14939047504325
Iterations: 20
Function evaluations: 207
Gradient evaluations: 20
Iteration: 1, Func. Count: 12, Neg. LLF: 195.9927052882801
Iteration: 2, Func. Count: 24, Neg. LLF: 173.29386340613192
Iteration: 3, Func. Count: 36, Neg. LLF: 169.8568929601872
Iteration: 4, Func. Count: 47, Neg. LLF: 186.84186984984333
Iteration: 5, Func. Count: 59, Neg. LLF: 177.24656647400062
Iteration: 6, Func. Count: 73, Neg. LLF: 179.02380818050545
Iteration: 7, Func. Count: 85, Neg. LLF: 169.13901709509312
Iteration: 8, Func. Count: 96, Neg. LLF: 169.06012518260212
Iteration: 9, Func. Count: 107, Neg. LLF: 169.02580343557915
Iteration: 10, Func. Count: 118, Neg. LLF: 168.89533736792595
Iteration: 11, Func. Count: 129, Neg. LLF: 168.76300071854033
Iteration: 12, Func. Count: 140, Neg. LLF: 168.46973851687065
Iteration: 13, Func. Count: 151, Neg. LLF: 168.28252183013663
Iteration: 14, Func. Count: 162, Neg. LLF: 168.15702113743762
Iteration: 15, Func. Count: 173, Neg. LLF: 168.1514403532637
Iteration: 16, Func. Count: 184, Neg. LLF: 168.16048430094116
Iteration: 17, Func. Count: 196, Neg. LLF: 168.15071943842383
Iteration: 18, Func. Count: 208, Neg. LLF: 168.14941775630928
Iteration: 19, Func. Count: 219, Neg. LLF: 168.14940278726036
Iteration: 20, Func. Count: 230, Neg. LLF: 168.1493907250234
Iteration: 21, Func. Count: 240, Neg. LLF: 168.14939072547278
Optimization terminated successfully (Exit mode 0)
Current function value: 168.1493907250234
Iterations: 21
Function evaluations: 240
Gradient evaluations: 21
Iteration: 1, Func. Count: 13, Neg. LLF: 184.29257261647228
Iteration: 2, Func. Count: 26, Neg. LLF: 174.24180775666534
Iteration: 3, Func. Count: 40, Neg. LLF: 171.69372408431587
Iteration: 4, Func. Count: 52, Neg. LLF: 174.06117596346851
Iteration: 5, Func. Count: 66, Neg. LLF: 174.54422826753938
Iteration: 6, Func. Count: 80, Neg. LLF: 171.22360905052557
Iteration: 7, Func. Count: 92, Neg. LLF: 171.13502787406549
Iteration: 8, Func. Count: 104, Neg. LLF: 171.07897511005874
Iteration: 9, Func. Count: 116, Neg. LLF: 170.94443919143941
Iteration: 10, Func. Count: 128, Neg. LLF: 170.76759469477895
Iteration: 11, Func. Count: 140, Neg. LLF: 169.61425414612904
Iteration: 12, Func. Count: 152, Neg. LLF: 192.76196722670073
Iteration: 13, Func. Count: 165, Neg. LLF: 174.60760527645192
Iteration: 14, Func. Count: 178, Neg. LLF: 170.2745599096585
Iteration: 15, Func. Count: 191, Neg. LLF: 168.4042098331922
Iteration: 16, Func. Count: 204, Neg. LLF: 167.37514883152684
Iteration: 17, Func. Count: 216, Neg. LLF: 167.43658880726753
Iteration: 18, Func. Count: 229, Neg. LLF: 167.3439379650393
Iteration: 19, Func. Count: 242, Neg. LLF: 167.28453173932488
Iteration: 20, Func. Count: 255, Neg. LLF: 167.26547245131127
Iteration: 21, Func. Count: 267, Neg. LLF: 167.2604240180628
Iteration: 22, Func. Count: 279, Neg. LLF: 167.25578005795822
Iteration: 23, Func. Count: 291, Neg. LLF: 167.25556154345
Iteration: 24, Func. Count: 303, Neg. LLF: 167.255557463112
Iteration: 25, Func. Count: 314, Neg. LLF: 167.25555746312617
Optimization terminated successfully (Exit mode 0)
Current function value: 167.255557463112
Iterations: 25
Function evaluations: 314
Gradient evaluations: 25
Iteration: 1, Func. Count: 10, Neg. LLF: 172.3055301320917
Iteration: 2, Func. Count: 20, Neg. LLF: 170.28631492863767
Iteration: 3, Func. Count: 29, Neg. LLF: 192.25236069812308
Iteration: 4, Func. Count: 40, Neg. LLF: 171.60233902413955
Iteration: 5, Func. Count: 50, Neg. LLF: 170.12050195719002
Iteration: 6, Func. Count: 60, Neg. LLF: 172.8060423287453
Iteration: 7, Func. Count: 70, Neg. LLF: 169.9628548157386
Iteration: 8, Func. Count: 79, Neg. LLF: 169.9261907163089
Iteration: 9, Func. Count: 88, Neg. LLF: 169.90681511747385
Iteration: 10, Func. Count: 97, Neg. LLF: 169.83699639367785
Iteration: 11, Func. Count: 106, Neg. LLF: 169.70741912412024
Iteration: 12, Func. Count: 115, Neg. LLF: 169.3557189356403
Iteration: 13, Func. Count: 124, Neg. LLF: 169.03895412065805
Iteration: 14, Func. Count: 133, Neg. LLF: 168.49174996376897
Iteration: 15, Func. Count: 142, Neg. LLF: 168.26743064396103
Iteration: 16, Func. Count: 151, Neg. LLF: 168.20283786988227
Iteration: 17, Func. Count: 160, Neg. LLF: 168.15985498448669
Iteration: 18, Func. Count: 169, Neg. LLF: 168.15515574984926
Iteration: 19, Func. Count: 178, Neg. LLF: 168.1526277817319
Iteration: 20, Func. Count: 187, Neg. LLF: 168.15238074296462
Iteration: 21, Func. Count: 196, Neg. LLF: 168.1523565109015
Iteration: 22, Func. Count: 205, Neg. LLF: 168.15235035468504
Iteration: 23, Func. Count: 214, Neg. LLF: 168.15234828889638
Iteration: 24, Func. Count: 222, Neg. LLF: 168.15234828890996
Optimization terminated successfully (Exit mode 0)
Current function value: 168.15234828889638
Iterations: 24
Function evaluations: 222
Gradient evaluations: 24
Iteration: 1, Func. Count: 11, Neg. LLF: 196.03273113284106
Iteration: 2, Func. Count: 22, Neg. LLF: 188.79724129876843
Iteration: 3, Func. Count: 33, Neg. LLF: 174.084127165546
Iteration: 4, Func. Count: 44, Neg. LLF: 169.62112733559266
Iteration: 5, Func. Count: 54, Neg. LLF: 178.8015597529733
Iteration: 6, Func. Count: 66, Neg. LLF: 173.16974557117294
Iteration: 7, Func. Count: 78, Neg. LLF: 168.61208604692405
Iteration: 8, Func. Count: 88, Neg. LLF: 168.5884985641837
Iteration: 9, Func. Count: 98, Neg. LLF: 168.5701644705799
Iteration: 10, Func. Count: 108, Neg. LLF: 168.52628123254988
Iteration: 11, Func. Count: 118, Neg. LLF: 168.42266967972992
Iteration: 12, Func. Count: 128, Neg. LLF: 168.26708380824817
Iteration: 13, Func. Count: 138, Neg. LLF: 168.1833208374832
Iteration: 14, Func. Count: 148, Neg. LLF: 168.1599042447163
Iteration: 15, Func. Count: 158, Neg. LLF: 168.1553255893985
Iteration: 16, Func. Count: 168, Neg. LLF: 168.1541790965209
Iteration: 17, Func. Count: 178, Neg. LLF: 168.15323842669517
Iteration: 18, Func. Count: 188, Neg. LLF: 168.1527044105485
Iteration: 19, Func. Count: 198, Neg. LLF: 168.15261891587684
Iteration: 20, Func. Count: 208, Neg. LLF: 168.1523913991071
Iteration: 21, Func. Count: 218, Neg. LLF: 168.15235353716687
Iteration: 22, Func. Count: 228, Neg. LLF: 168.15234825882195
Iteration: 23, Func. Count: 237, Neg. LLF: 168.1523482755208
Optimization terminated successfully (Exit mode 0)
Current function value: 168.15234825882195
Iterations: 23
Function evaluations: 237
Gradient evaluations: 23
Iteration: 1, Func. Count: 12, Neg. LLF: 196.00331766836638
Iteration: 2, Func. Count: 24, Neg. LLF: 173.03561165854583
Iteration: 3, Func. Count: 36, Neg. LLF: 169.6843575971552
Iteration: 4, Func. Count: 47, Neg. LLF: 175.31462892759416
Iteration: 5, Func. Count: 59, Neg. LLF: 195.36183742721727
Iteration: 6, Func. Count: 71, Neg. LLF: 169.55348601350542
Iteration: 7, Func. Count: 83, Neg. LLF: 181.10891073680435
Iteration: 8, Func. Count: 95, Neg. LLF: 168.6626755546552
Iteration: 9, Func. Count: 106, Neg. LLF: 168.61271281666978
Iteration: 10, Func. Count: 117, Neg. LLF: 168.5990977778536
Iteration: 11, Func. Count: 128, Neg. LLF: 168.57308331419432
Iteration: 12, Func. Count: 139, Neg. LLF: 168.54318264397597
Iteration: 13, Func. Count: 150, Neg. LLF: 168.41454777705013
Iteration: 14, Func. Count: 161, Neg. LLF: 168.28776010052016
Iteration: 15, Func. Count: 172, Neg. LLF: 168.19732320122935
Iteration: 16, Func. Count: 183, Neg. LLF: 168.15750131279077
Iteration: 17, Func. Count: 194, Neg. LLF: 168.15267667257186
Iteration: 18, Func. Count: 205, Neg. LLF: 168.15237889894
Iteration: 19, Func. Count: 216, Neg. LLF: 168.15235091968424
Iteration: 20, Func. Count: 227, Neg. LLF: 168.15234874047823
Iteration: 21, Func. Count: 237, Neg. LLF: 168.15234887128744
Optimization terminated successfully (Exit mode 0)
Current function value: 168.15234874047823
Iterations: 21
Function evaluations: 237
Gradient evaluations: 21
Iteration: 1, Func. Count: 13, Neg. LLF: 172.41329925574615
Iteration: 2, Func. Count: 26, Neg. LLF: 170.29943086334612
Iteration: 3, Func. Count: 38, Neg. LLF: 172.7606826551271
Iteration: 4, Func. Count: 51, Neg. LLF: 174.0739192789404
Iteration: 5, Func. Count: 64, Neg. LLF: 170.07824892122454
Iteration: 6, Func. Count: 76, Neg. LLF: 171.243674781613
Iteration: 7, Func. Count: 89, Neg. LLF: 170.01950494959635
Iteration: 8, Func. Count: 102, Neg. LLF: 169.92996127542898
Iteration: 9, Func. Count: 114, Neg. LLF: 169.91323748315347
Iteration: 10, Func. Count: 126, Neg. LLF: 169.86528773160958
Iteration: 11, Func. Count: 138, Neg. LLF: 169.5967665367021
Iteration: 12, Func. Count: 150, Neg. LLF: 169.10577507227018
Iteration: 13, Func. Count: 162, Neg. LLF: 168.78498646363022
Iteration: 14, Func. Count: 174, Neg. LLF: 168.35011294417643
Iteration: 15, Func. Count: 186, Neg. LLF: 168.21942580197162
Iteration: 16, Func. Count: 198, Neg. LLF: 168.16748316307843
Iteration: 17, Func. Count: 210, Neg. LLF: 168.1615483052099
Iteration: 18, Func. Count: 222, Neg. LLF: 168.15261968246622
Iteration: 19, Func. Count: 234, Neg. LLF: 168.15241089139496
Iteration: 20, Func. Count: 246, Neg. LLF: 168.15237325108677
Iteration: 21, Func. Count: 258, Neg. LLF: 168.15235238241456
Iteration: 22, Func. Count: 270, Neg. LLF: 168.15234856864953
Iteration: 23, Func. Count: 281, Neg. LLF: 168.15234859681357
Optimization terminated successfully (Exit mode 0)
Current function value: 168.15234856864953
Iterations: 23
Function evaluations: 281
Gradient evaluations: 23
Iteration: 1, Func. Count: 14, Neg. LLF: 172.40062536277622
Iteration: 2, Func. Count: 27, Neg. LLF: 171.09429828944133
Iteration: 3, Func. Count: 40, Neg. LLF: 179.94655706985955
Iteration: 4, Func. Count: 55, Neg. LLF: 173.787602901362
Iteration: 5, Func. Count: 69, Neg. LLF: 187.76580787220243
Iteration: 6, Func. Count: 83, Neg. LLF: 181.62858008443845
Iteration: 7, Func. Count: 97, Neg. LLF: 172.17371304471305
Iteration: 8, Func. Count: 111, Neg. LLF: 175.29076738599454
Iteration: 9, Func. Count: 125, Neg. LLF: 171.73135354452322
Iteration: 10, Func. Count: 139, Neg. LLF: 169.94519507167794
Iteration: 11, Func. Count: 152, Neg. LLF: 169.90952043576226
Iteration: 12, Func. Count: 165, Neg. LLF: 169.8941584226994
Iteration: 13, Func. Count: 178, Neg. LLF: 169.8060366499734
Iteration: 14, Func. Count: 191, Neg. LLF: 169.43354792882278
Iteration: 15, Func. Count: 204, Neg. LLF: 169.1269717936554
Iteration: 16, Func. Count: 217, Neg. LLF: 172.21561613102585
Iteration: 17, Func. Count: 231, Neg. LLF: 174.0415888697147
Iteration: 18, Func. Count: 246, Neg. LLF: 168.031647002086
Iteration: 19, Func. Count: 259, Neg. LLF: 167.68084814187978
Iteration: 20, Func. Count: 272, Neg. LLF: 167.65619691594318
Iteration: 21, Func. Count: 286, Neg. LLF: 167.52711835599823
Iteration: 22, Func. Count: 300, Neg. LLF: 167.40040827730775
Iteration: 23, Func. Count: 313, Neg. LLF: 167.36845503743905
Iteration: 24, Func. Count: 326, Neg. LLF: 167.32766313765023
Iteration: 25, Func. Count: 339, Neg. LLF: 167.2974026821291
Iteration: 26, Func. Count: 352, Neg. LLF: 167.29029648732865
Iteration: 27, Func. Count: 365, Neg. LLF: 167.2897845175742
Iteration: 28, Func. Count: 378, Neg. LLF: 167.2897658877259
Iteration: 29, Func. Count: 391, Neg. LLF: 167.28976380717313
Iteration: 30, Func. Count: 403, Neg. LLF: 167.28976379833802
Optimization terminated successfully (Exit mode 0)
Current function value: 167.28976380717313
Iterations: 30
Function evaluations: 403
Gradient evaluations: 30
Iteration: 1, Func. Count: 11, Neg. LLF: 172.3025897660353
Iteration: 2, Func. Count: 22, Neg. LLF: 170.28439607826803
Iteration: 3, Func. Count: 32, Neg. LLF: 177.20986780139248
Iteration: 4, Func. Count: 44, Neg. LLF: 171.434787122527
Iteration: 5, Func. Count: 55, Neg. LLF: 170.10111114761025
Iteration: 6, Func. Count: 65, Neg. LLF: 170.00195479929363
Iteration: 7, Func. Count: 75, Neg. LLF: 170.5278382291799
Iteration: 8, Func. Count: 86, Neg. LLF: 169.9207476697113
Iteration: 9, Func. Count: 96, Neg. LLF: 169.9005242634205
Iteration: 10, Func. Count: 106, Neg. LLF: 169.87211247878616
Iteration: 11, Func. Count: 116, Neg. LLF: 169.7441814041843
Iteration: 12, Func. Count: 126, Neg. LLF: 169.44201460862263
Iteration: 13, Func. Count: 136, Neg. LLF: 169.0094282568982
Iteration: 14, Func. Count: 146, Neg. LLF: 168.3689477223033
Iteration: 15, Func. Count: 156, Neg. LLF: 168.38140275716853
Iteration: 16, Func. Count: 167, Neg. LLF: 168.18337186918615
Iteration: 17, Func. Count: 177, Neg. LLF: 168.16753043315023
Iteration: 18, Func. Count: 187, Neg. LLF: 168.15896017893186
Iteration: 19, Func. Count: 197, Neg. LLF: 168.15401532610926
Iteration: 20, Func. Count: 207, Neg. LLF: 168.15282949126777
Iteration: 21, Func. Count: 217, Neg. LLF: 168.15245823900935
Iteration: 22, Func. Count: 227, Neg. LLF: 168.15238328567773
Iteration: 23, Func. Count: 237, Neg. LLF: 168.15235088789188
Iteration: 24, Func. Count: 247, Neg. LLF: 168.15234832029512
Iteration: 25, Func. Count: 256, Neg. LLF: 168.1523483453409
Optimization terminated successfully (Exit mode 0)
Current function value: 168.15234832029512
Iterations: 25
Function evaluations: 256
Gradient evaluations: 25
Iteration: 1, Func. Count: 12, Neg. LLF: 196.0079722181088
Iteration: 2, Func. Count: 24, Neg. LLF: 170.99773526706542
Iteration: 3, Func. Count: 35, Neg. LLF: 171.2463238110176
Iteration: 4, Func. Count: 47, Neg. LLF: 180.04521588143427
Iteration: 5, Func. Count: 61, Neg. LLF: 173.5685490575214
Iteration: 6, Func. Count: 73, Neg. LLF: 173.94209733101928
Iteration: 7, Func. Count: 85, Neg. LLF: 168.98161987971318
Iteration: 8, Func. Count: 97, Neg. LLF: 168.6447402741865
Iteration: 9, Func. Count: 108, Neg. LLF: 168.61632094528935
Iteration: 10, Func. Count: 119, Neg. LLF: 168.5960167396445
Iteration: 11, Func. Count: 130, Neg. LLF: 168.54911793914974
Iteration: 12, Func. Count: 141, Neg. LLF: 168.5253371554196
Iteration: 13, Func. Count: 152, Neg. LLF: 168.43223357438322
Iteration: 14, Func. Count: 163, Neg. LLF: 168.32310170265742
Iteration: 15, Func. Count: 174, Neg. LLF: 168.27010104099082
Iteration: 16, Func. Count: 185, Neg. LLF: 168.23273204348715
Iteration: 17, Func. Count: 196, Neg. LLF: 168.19104362964455
Iteration: 18, Func. Count: 207, Neg. LLF: 168.16705280482182
Iteration: 19, Func. Count: 218, Neg. LLF: 168.15831287236583
Iteration: 20, Func. Count: 229, Neg. LLF: 168.15398714883878
Iteration: 21, Func. Count: 240, Neg. LLF: 168.15253658100127
Iteration: 22, Func. Count: 251, Neg. LLF: 168.1523698657597
Iteration: 23, Func. Count: 262, Neg. LLF: 168.15235107614592
Iteration: 24, Func. Count: 273, Neg. LLF: 168.1523482418521
Iteration: 25, Func. Count: 283, Neg. LLF: 168.15234825858542
Optimization terminated successfully (Exit mode 0)
Current function value: 168.1523482418521
Iterations: 25
Function evaluations: 283
Gradient evaluations: 25
Iteration: 1, Func. Count: 13, Neg. LLF: 195.9762710668535
Iteration: 2, Func. Count: 26, Neg. LLF: 173.68755885120032
Iteration: 3, Func. Count: 39, Neg. LLF: 169.7218339037826
Iteration: 4, Func. Count: 51, Neg. LLF: 175.523996279749
Iteration: 5, Func. Count: 64, Neg. LLF: 194.7173451270693
Iteration: 6, Func. Count: 77, Neg. LLF: 170.29991227808225
Iteration: 7, Func. Count: 90, Neg. LLF: 193.23590313824656
Iteration: 8, Func. Count: 103, Neg. LLF: 168.69788069224347
Iteration: 9, Func. Count: 115, Neg. LLF: 168.61655215827835
Iteration: 10, Func. Count: 127, Neg. LLF: 168.60007877905412
Iteration: 11, Func. Count: 139, Neg. LLF: 168.57997299021702
Iteration: 12, Func. Count: 151, Neg. LLF: 168.5573589007947
Iteration: 13, Func. Count: 163, Neg. LLF: 168.42375054268794
Iteration: 14, Func. Count: 175, Neg. LLF: 168.29830523591323
Iteration: 15, Func. Count: 187, Neg. LLF: 168.18962811517684
Iteration: 16, Func. Count: 199, Neg. LLF: 168.15753569481
Iteration: 17, Func. Count: 211, Neg. LLF: 168.15287219550194
Iteration: 18, Func. Count: 223, Neg. LLF: 168.15237266080575
Iteration: 19, Func. Count: 235, Neg. LLF: 168.15235056223338
Iteration: 20, Func. Count: 247, Neg. LLF: 168.15234855975865
Iteration: 21, Func. Count: 258, Neg. LLF: 168.15234869046515
Optimization terminated successfully (Exit mode 0)
Current function value: 168.15234855975865
Iterations: 21
Function evaluations: 258
Gradient evaluations: 21
Iteration: 1, Func. Count: 14, Neg. LLF: 172.4370918180293
Iteration: 2, Func. Count: 27, Neg. LLF: 171.21710201710206
Iteration: 3, Func. Count: 40, Neg. LLF: 177.59158309192637
Iteration: 4, Func. Count: 55, Neg. LLF: 173.56031035918156
Iteration: 5, Func. Count: 69, Neg. LLF: 187.84359154624784
Iteration: 6, Func. Count: 83, Neg. LLF: 181.39414082851977
Iteration: 7, Func. Count: 97, Neg. LLF: 172.3101336279577
Iteration: 8, Func. Count: 111, Neg. LLF: 175.57820125522645
Iteration: 9, Func. Count: 125, Neg. LLF: 171.91968849783208
Iteration: 10, Func. Count: 139, Neg. LLF: 169.94126501658647
Iteration: 11, Func. Count: 152, Neg. LLF: 169.90758319866114
Iteration: 12, Func. Count: 165, Neg. LLF: 169.89167837810078
Iteration: 13, Func. Count: 178, Neg. LLF: 169.85396983349747
Iteration: 14, Func. Count: 191, Neg. LLF: 169.65064589489918
Iteration: 15, Func. Count: 204, Neg. LLF: 169.28259372962876
Iteration: 16, Func. Count: 217, Neg. LLF: 169.21007947671492
Iteration: 17, Func. Count: 231, Neg. LLF: 168.5117016926843
Iteration: 18, Func. Count: 244, Neg. LLF: 168.2331821825634
Iteration: 19, Func. Count: 257, Neg. LLF: 168.19512259720676
Iteration: 20, Func. Count: 270, Neg. LLF: 168.16182382879657
Iteration: 21, Func. Count: 283, Neg. LLF: 168.15553363004844
Iteration: 22, Func. Count: 296, Neg. LLF: 168.15306496711725
Iteration: 23, Func. Count: 309, Neg. LLF: 168.152500562741
Iteration: 24, Func. Count: 322, Neg. LLF: 168.15235566085357
Iteration: 25, Func. Count: 335, Neg. LLF: 168.15234872099748
Iteration: 26, Func. Count: 347, Neg. LLF: 168.1523487490945
Optimization terminated successfully (Exit mode 0)
Current function value: 168.15234872099748
Iterations: 26
Function evaluations: 347
Gradient evaluations: 26
Iteration: 1, Func. Count: 15, Neg. LLF: 172.41676967446574
Iteration: 2, Func. Count: 29, Neg. LLF: 171.20578262110402
Iteration: 3, Func. Count: 43, Neg. LLF: 178.12366756848996
Iteration: 4, Func. Count: 59, Neg. LLF: 173.4307163462509
Iteration: 5, Func. Count: 74, Neg. LLF: 187.83652022018276
Iteration: 6, Func. Count: 89, Neg. LLF: 178.07050553625604
Iteration: 7, Func. Count: 104, Neg. LLF: 172.26546637446566
Iteration: 8, Func. Count: 119, Neg. LLF: 175.66416824558323
Iteration: 9, Func. Count: 134, Neg. LLF: 171.92794299235877
Iteration: 10, Func. Count: 149, Neg. LLF: 169.9423797522676
Iteration: 11, Func. Count: 163, Neg. LLF: 169.90841415795268
Iteration: 12, Func. Count: 177, Neg. LLF: 169.89227125284864
Iteration: 13, Func. Count: 191, Neg. LLF: 169.8547679001647
Iteration: 14, Func. Count: 205, Neg. LLF: 169.6698102334549
Iteration: 15, Func. Count: 219, Neg. LLF: 169.323815034981
Iteration: 16, Func. Count: 233, Neg. LLF: 169.27569182922807
Iteration: 17, Func. Count: 248, Neg. LLF: 189.32221366969432
Iteration: 18, Func. Count: 263, Neg. LLF: 172.65409490443963
Iteration: 19, Func. Count: 278, Neg. LLF: 168.55344530229007
Iteration: 20, Func. Count: 293, Neg. LLF: 176.4025294349359
Iteration: 21, Func. Count: 308, Neg. LLF: 167.3911644754
Iteration: 22, Func. Count: 322, Neg. LLF: 167.33825620222638
Iteration: 23, Func. Count: 336, Neg. LLF: 167.3271017537414
Iteration: 24, Func. Count: 350, Neg. LLF: 167.31050155778527
Iteration: 25, Func. Count: 364, Neg. LLF: 167.29835980036776
Iteration: 26, Func. Count: 378, Neg. LLF: 167.29094835519345
Iteration: 27, Func. Count: 392, Neg. LLF: 167.2899727054058
Iteration: 28, Func. Count: 406, Neg. LLF: 167.28976934987642
Iteration: 29, Func. Count: 420, Neg. LLF: 167.28976391614708
Iteration: 30, Func. Count: 433, Neg. LLF: 167.28976390729784
Optimization terminated successfully (Exit mode 0)
Current function value: 167.28976391614708
Iterations: 30
Function evaluations: 433
Gradient evaluations: 30
Iteration: 1, Func. Count: 8, Neg. LLF: 173.72795154428084
Iteration: 2, Func. Count: 16, Neg. LLF: 176.162766065338
Iteration: 3, Func. Count: 25, Neg. LLF: 171.50120427981648
Iteration: 4, Func. Count: 32, Neg. LLF: 171.36959628546043
Iteration: 5, Func. Count: 39, Neg. LLF: 171.3099222895194
Iteration: 6, Func. Count: 46, Neg. LLF: 171.2433141459596
Iteration: 7, Func. Count: 53, Neg. LLF: 171.18777964505222
Iteration: 8, Func. Count: 60, Neg. LLF: 170.85379358297098
Iteration: 9, Func. Count: 67, Neg. LLF: 170.3854625919982
Iteration: 10, Func. Count: 74, Neg. LLF: 169.97518931076115
Iteration: 11, Func. Count: 81, Neg. LLF: 169.54797369402755
Iteration: 12, Func. Count: 88, Neg. LLF: 169.758494209262
Iteration: 13, Func. Count: 96, Neg. LLF: 174.14809965584283
Iteration: 14, Func. Count: 104, Neg. LLF: 169.3402854485309
Iteration: 15, Func. Count: 111, Neg. LLF: 169.3292959383105
Iteration: 16, Func. Count: 118, Neg. LLF: 169.32607271335556
Iteration: 17, Func. Count: 125, Neg. LLF: 169.31947476722402
Iteration: 18, Func. Count: 132, Neg. LLF: 169.31910769943784
Iteration: 19, Func. Count: 139, Neg. LLF: 169.31901836808012
Iteration: 20, Func. Count: 145, Neg. LLF: 169.3190184961178
Optimization terminated successfully (Exit mode 0)
Current function value: 169.31901836808012
Iterations: 20
Function evaluations: 145
Gradient evaluations: 20
Iteration: 1, Func. Count: 9, Neg. LLF: 173.1218217964478
Iteration: 2, Func. Count: 17, Neg. LLF: 172.60241664055633
Iteration: 3, Func. Count: 27, Neg. LLF: 179.9507879940976
Iteration: 4, Func. Count: 36, Neg. LLF: 198.2723194174013
Iteration: 5, Func. Count: 45, Neg. LLF: 171.24680869603515
Iteration: 6, Func. Count: 54, Neg. LLF: 169.88389984818534
Iteration: 7, Func. Count: 62, Neg. LLF: 169.80148459934242
Iteration: 8, Func. Count: 70, Neg. LLF: 169.77667183060683
Iteration: 9, Func. Count: 78, Neg. LLF: 169.7147427893107
Iteration: 10, Func. Count: 86, Neg. LLF: 169.67879180249702
Iteration: 11, Func. Count: 94, Neg. LLF: 169.64946313921237
Iteration: 12, Func. Count: 102, Neg. LLF: 169.60897401856835
Iteration: 13, Func. Count: 110, Neg. LLF: 169.5442437177893
Iteration: 14, Func. Count: 118, Neg. LLF: 169.42993281001705
Iteration: 15, Func. Count: 126, Neg. LLF: 169.3468069968839
Iteration: 16, Func. Count: 134, Neg. LLF: 169.3219985137289
Iteration: 17, Func. Count: 142, Neg. LLF: 169.31908285127702
Iteration: 18, Func. Count: 150, Neg. LLF: 169.3190456140974
Iteration: 19, Func. Count: 158, Neg. LLF: 169.31901823184864
Iteration: 20, Func. Count: 165, Neg. LLF: 169.319018250798
Optimization terminated successfully (Exit mode 0)
Current function value: 169.31901823184864
Iterations: 20
Function evaluations: 165
Gradient evaluations: 20
Iteration: 1, Func. Count: 10, Neg. LLF: 173.69914063698118
Iteration: 2, Func. Count: 19, Neg. LLF: 173.90633333116463
Iteration: 3, Func. Count: 30, Neg. LLF: 184.60502827353167
Iteration: 4, Func. Count: 40, Neg. LLF: 176.42816896715934
Iteration: 5, Func. Count: 50, Neg. LLF: 176.5214491453539
Iteration: 6, Func. Count: 60, Neg. LLF: 171.65240662632118
Iteration: 7, Func. Count: 70, Neg. LLF: 171.32595998350448
Iteration: 8, Func. Count: 79, Neg. LLF: 171.27052546631398
Iteration: 9, Func. Count: 88, Neg. LLF: 171.18776226940687
Iteration: 10, Func. Count: 97, Neg. LLF: 170.97663426910248
Iteration: 11, Func. Count: 106, Neg. LLF: 170.39145178031234
Iteration: 12, Func. Count: 115, Neg. LLF: 171.02210918395178
Iteration: 13, Func. Count: 125, Neg. LLF: 171.31854979453067
Iteration: 14, Func. Count: 135, Neg. LLF: 170.56400380189075
Iteration: 15, Func. Count: 145, Neg. LLF: 169.48081532847388
Iteration: 16, Func. Count: 155, Neg. LLF: 169.32482386620455
Iteration: 17, Func. Count: 164, Neg. LLF: 169.31959770892524
Iteration: 18, Func. Count: 173, Neg. LLF: 169.31929719334724
Iteration: 19, Func. Count: 182, Neg. LLF: 169.31903703201678
Iteration: 20, Func. Count: 191, Neg. LLF: 169.31902144415386
Iteration: 21, Func. Count: 200, Neg. LLF: 169.31901798247293
Iteration: 22, Func. Count: 208, Neg. LLF: 169.31901809518106
Optimization terminated successfully (Exit mode 0)
Current function value: 169.31901798247293
Iterations: 22
Function evaluations: 208
Gradient evaluations: 22
Iteration: 1, Func. Count: 11, Neg. LLF: 173.70004881622327
Iteration: 2, Func. Count: 21, Neg. LLF: 173.9754792721407
Iteration: 3, Func. Count: 33, Neg. LLF: 184.58222354011062
Iteration: 4, Func. Count: 44, Neg. LLF: 176.39541456313862
Iteration: 5, Func. Count: 55, Neg. LLF: 176.51085028041265
Iteration: 6, Func. Count: 66, Neg. LLF: 171.64415065178886
Iteration: 7, Func. Count: 77, Neg. LLF: 171.32748533212768
Iteration: 8, Func. Count: 87, Neg. LLF: 171.2714993709857
Iteration: 9, Func. Count: 97, Neg. LLF: 171.1985361029328
Iteration: 10, Func. Count: 107, Neg. LLF: 170.95107195512335
Iteration: 11, Func. Count: 117, Neg. LLF: 170.40930160973087
Iteration: 12, Func. Count: 127, Neg. LLF: 170.9978707251725
Iteration: 13, Func. Count: 138, Neg. LLF: 173.6585059678465
Iteration: 14, Func. Count: 149, Neg. LLF: 171.15740627856908
Iteration: 15, Func. Count: 160, Neg. LLF: 169.84328760717324
Iteration: 16, Func. Count: 171, Neg. LLF: 169.32085136733758
Iteration: 17, Func. Count: 181, Neg. LLF: 169.31951425242076
Iteration: 18, Func. Count: 191, Neg. LLF: 169.31905693949477
Iteration: 19, Func. Count: 201, Neg. LLF: 169.3190245471132
Iteration: 20, Func. Count: 211, Neg. LLF: 169.31901905042974
Iteration: 21, Func. Count: 221, Neg. LLF: 169.31901814018485
Optimization terminated successfully (Exit mode 0)
Current function value: 169.31901814018485
Iterations: 21
Function evaluations: 221
Gradient evaluations: 21
Iteration: 1, Func. Count: 12, Neg. LLF: 173.7007600047778
Iteration: 2, Func. Count: 23, Neg. LLF: 174.05698890923483
Iteration: 3, Func. Count: 36, Neg. LLF: 184.55203862631635
Iteration: 4, Func. Count: 48, Neg. LLF: 176.35691686801246
Iteration: 5, Func. Count: 60, Neg. LLF: 176.5006693550312
Iteration: 6, Func. Count: 72, Neg. LLF: 171.63443336264467
Iteration: 7, Func. Count: 84, Neg. LLF: 171.32824432385524
Iteration: 8, Func. Count: 95, Neg. LLF: 171.27211730360858
Iteration: 9, Func. Count: 106, Neg. LLF: 171.2079882817776
Iteration: 10, Func. Count: 117, Neg. LLF: 170.878548099185
Iteration: 11, Func. Count: 128, Neg. LLF: 170.33199737826558
Iteration: 12, Func. Count: 139, Neg. LLF: 170.17426446332522
Iteration: 13, Func. Count: 150, Neg. LLF: 170.7861857371798
Iteration: 14, Func. Count: 162, Neg. LLF: 179.63979617537697
Iteration: 15, Func. Count: 175, Neg. LLF: 170.25875925204681
Iteration: 16, Func. Count: 187, Neg. LLF: 169.05248203790484
Iteration: 17, Func. Count: 198, Neg. LLF: 169.04402839400333
Iteration: 18, Func. Count: 210, Neg. LLF: 169.01487973185442
Iteration: 19, Func. Count: 221, Neg. LLF: 169.00956704977986
Iteration: 20, Func. Count: 232, Neg. LLF: 169.0086419107836
Iteration: 21, Func. Count: 243, Neg. LLF: 169.0078289330162
Iteration: 22, Func. Count: 254, Neg. LLF: 169.0073073687155
Iteration: 23, Func. Count: 265, Neg. LLF: 169.00718067735707
Iteration: 24, Func. Count: 276, Neg. LLF: 169.00717171332656
Iteration: 25, Func. Count: 286, Neg. LLF: 169.00717170734393
Optimization terminated successfully (Exit mode 0)
Current function value: 169.00717171332656
Iterations: 25
Function evaluations: 286
Gradient evaluations: 25
Iteration: 1, Func. Count: 9, Neg. LLF: 173.7142684229462
Iteration: 2, Func. Count: 18, Neg. LLF: 176.0503050514553
Iteration: 3, Func. Count: 28, Neg. LLF: 171.6010321224882
Iteration: 4, Func. Count: 36, Neg. LLF: 171.36106889144844
Iteration: 5, Func. Count: 44, Neg. LLF: 171.6943974533183
Iteration: 6, Func. Count: 53, Neg. LLF: 171.1457860318495
Iteration: 7, Func. Count: 61, Neg. LLF: 171.0591440882514
Iteration: 8, Func. Count: 69, Neg. LLF: 170.9922654905685
Iteration: 9, Func. Count: 77, Neg. LLF: 170.6338106740713
Iteration: 10, Func. Count: 85, Neg. LLF: 169.4807812156203
Iteration: 11, Func. Count: 93, Neg. LLF: 168.9773389312993
Iteration: 12, Func. Count: 101, Neg. LLF: 168.75459251488977
Iteration: 13, Func. Count: 109, Neg. LLF: 168.74168679226673
Iteration: 14, Func. Count: 118, Neg. LLF: 168.6966976354037
Iteration: 15, Func. Count: 126, Neg. LLF: 168.68983360386275
Iteration: 16, Func. Count: 134, Neg. LLF: 168.6849523547932
Iteration: 17, Func. Count: 142, Neg. LLF: 168.68471075558892
Iteration: 18, Func. Count: 150, Neg. LLF: 168.6846878470586
Iteration: 19, Func. Count: 158, Neg. LLF: 168.6846817508118
Iteration: 20, Func. Count: 165, Neg. LLF: 168.68468175080312
Optimization terminated successfully (Exit mode 0)
Current function value: 168.6846817508118
Iterations: 20
Function evaluations: 165
Gradient evaluations: 20
Iteration: 1, Func. Count: 10, Neg. LLF: 173.12184642322939
Iteration: 2, Func. Count: 20, Neg. LLF: 172.79549328974053
Iteration: 3, Func. Count: 30, Neg. LLF: 192.5486350736835
Iteration: 4, Func. Count: 40, Neg. LLF: 169.54313092399644
Iteration: 5, Func. Count: 49, Neg. LLF: 170.06295888492173
Iteration: 6, Func. Count: 59, Neg. LLF: 169.42239787383488
Iteration: 7, Func. Count: 69, Neg. LLF: 169.32763488440753
Iteration: 8, Func. Count: 78, Neg. LLF: 169.24821745773747
Iteration: 9, Func. Count: 87, Neg. LLF: 169.11880805016747
Iteration: 10, Func. Count: 96, Neg. LLF: 168.91586795370867
Iteration: 11, Func. Count: 105, Neg. LLF: 168.76187691704655
Iteration: 12, Func. Count: 114, Neg. LLF: 168.69677737516227
Iteration: 13, Func. Count: 123, Neg. LLF: 168.68663116959064
Iteration: 14, Func. Count: 132, Neg. LLF: 168.68496885780496
Iteration: 15, Func. Count: 141, Neg. LLF: 168.68469476973624
Iteration: 16, Func. Count: 150, Neg. LLF: 168.68468214234107
Iteration: 17, Func. Count: 158, Neg. LLF: 168.68468216163146
Optimization terminated successfully (Exit mode 0)
Current function value: 168.68468214234107
Iterations: 17
Function evaluations: 158
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 173.12618119230373
Iteration: 2, Func. Count: 21, Neg. LLF: 170.31836017858151
Iteration: 3, Func. Count: 33, Neg. LLF: 179.33562084616983
Iteration: 4, Func. Count: 44, Neg. LLF: 198.4106626417946
Iteration: 5, Func. Count: 55, Neg. LLF: 172.08711535815507
Iteration: 6, Func. Count: 66, Neg. LLF: 169.50211419532775
Iteration: 7, Func. Count: 77, Neg. LLF: 169.3702473621647
Iteration: 8, Func. Count: 87, Neg. LLF: 169.3306819412529
Iteration: 9, Func. Count: 97, Neg. LLF: 169.12549653675293
Iteration: 10, Func. Count: 107, Neg. LLF: 168.78120963038063
Iteration: 11, Func. Count: 117, Neg. LLF: 168.72458169859974
Iteration: 12, Func. Count: 127, Neg. LLF: 168.7019364080106
Iteration: 13, Func. Count: 137, Neg. LLF: 168.6993873204243
Iteration: 14, Func. Count: 147, Neg. LLF: 168.69831556430736
Iteration: 15, Func. Count: 157, Neg. LLF: 168.69623631463395
Iteration: 16, Func. Count: 167, Neg. LLF: 168.6915108563033
Iteration: 17, Func. Count: 177, Neg. LLF: 168.6873417766303
Iteration: 18, Func. Count: 187, Neg. LLF: 168.68513114225826
Iteration: 19, Func. Count: 197, Neg. LLF: 168.68468860537592
Iteration: 20, Func. Count: 207, Neg. LLF: 168.68468178170198
Iteration: 21, Func. Count: 216, Neg. LLF: 168.6846819173097
Optimization terminated successfully (Exit mode 0)
Current function value: 168.68468178170198
Iterations: 21
Function evaluations: 216
Gradient evaluations: 21
Iteration: 1, Func. Count: 12, Neg. LLF: 173.1262420373907
Iteration: 2, Func. Count: 23, Neg. LLF: 170.27529356330578
Iteration: 3, Func. Count: 36, Neg. LLF: 179.45838230432147
Iteration: 4, Func. Count: 48, Neg. LLF: 198.51752764346105
Iteration: 5, Func. Count: 60, Neg. LLF: 175.20063469037083
Iteration: 6, Func. Count: 72, Neg. LLF: 169.49641549580144
Iteration: 7, Func. Count: 84, Neg. LLF: 169.3788280062042
Iteration: 8, Func. Count: 95, Neg. LLF: 169.33986485828905
Iteration: 9, Func. Count: 106, Neg. LLF: 169.1423501692455
Iteration: 10, Func. Count: 117, Neg. LLF: 168.76256483510994
Iteration: 11, Func. Count: 128, Neg. LLF: 168.723633379976
Iteration: 12, Func. Count: 139, Neg. LLF: 168.70954212986985
Iteration: 13, Func. Count: 150, Neg. LLF: 168.7077229900785
Iteration: 14, Func. Count: 161, Neg. LLF: 168.7061424410065
Iteration: 15, Func. Count: 172, Neg. LLF: 168.69742185226153
Iteration: 16, Func. Count: 183, Neg. LLF: 168.68581644706154
Iteration: 17, Func. Count: 194, Neg. LLF: 168.6847287101753
Iteration: 18, Func. Count: 205, Neg. LLF: 168.68468327813179
Iteration: 19, Func. Count: 216, Neg. LLF: 168.6846817327629
Iteration: 20, Func. Count: 226, Neg. LLF: 168.6846817630768
Optimization terminated successfully (Exit mode 0)
Current function value: 168.6846817327629
Iterations: 20
Function evaluations: 226
Gradient evaluations: 20
Iteration: 1, Func. Count: 13, Neg. LLF: 173.12816415309538
Iteration: 2, Func. Count: 25, Neg. LLF: 170.2835890687032
Iteration: 3, Func. Count: 39, Neg. LLF: 190.79259586253187
Iteration: 4, Func. Count: 54, Neg. LLF: 195.72024642118177
Iteration: 5, Func. Count: 67, Neg. LLF: 169.96719317756418
Iteration: 6, Func. Count: 80, Neg. LLF: 169.36000280733066
Iteration: 7, Func. Count: 92, Neg. LLF: 169.33929347435134
Iteration: 8, Func. Count: 104, Neg. LLF: 169.6213602317303
Iteration: 9, Func. Count: 117, Neg. LLF: 169.22612533830986
Iteration: 10, Func. Count: 129, Neg. LLF: 169.0974834390445
Iteration: 11, Func. Count: 141, Neg. LLF: 168.89305669767904
Iteration: 12, Func. Count: 153, Neg. LLF: 168.59622109228064
Iteration: 13, Func. Count: 165, Neg. LLF: 168.36165986567954
Iteration: 14, Func. Count: 177, Neg. LLF: 168.2645221857571
Iteration: 15, Func. Count: 189, Neg. LLF: 168.2372080953675
Iteration: 16, Func. Count: 201, Neg. LLF: 168.21328625097033
Iteration: 17, Func. Count: 213, Neg. LLF: 168.14689150887787
Iteration: 18, Func. Count: 225, Neg. LLF: 168.08357930364886
Iteration: 19, Func. Count: 237, Neg. LLF: 168.06061730171052
Iteration: 20, Func. Count: 249, Neg. LLF: 168.05421636143672
Iteration: 21, Func. Count: 261, Neg. LLF: 168.0538919976704
Iteration: 22, Func. Count: 273, Neg. LLF: 168.05385906929504
Iteration: 23, Func. Count: 284, Neg. LLF: 168.053859069148
Optimization terminated successfully (Exit mode 0)
Current function value: 168.05385906929504
Iterations: 23
Function evaluations: 284
Gradient evaluations: 23
Iteration: 1, Func. Count: 10, Neg. LLF: 176.0866532917773
Iteration: 2, Func. Count: 21, Neg. LLF: 176.7656762441511
Iteration: 3, Func. Count: 32, Neg. LLF: 172.73927880193455
Iteration: 4, Func. Count: 42, Neg. LLF: 171.33145450810588
Iteration: 5, Func. Count: 51, Neg. LLF: 171.56957503300998
Iteration: 6, Func. Count: 61, Neg. LLF: 171.5000497721624
Iteration: 7, Func. Count: 71, Neg. LLF: 171.15130925628597
Iteration: 8, Func. Count: 80, Neg. LLF: 171.07315585648556
Iteration: 9, Func. Count: 89, Neg. LLF: 171.0074712651524
Iteration: 10, Func. Count: 98, Neg. LLF: 170.53837534796094
Iteration: 11, Func. Count: 107, Neg. LLF: 169.19512953795228
Iteration: 12, Func. Count: 116, Neg. LLF: 169.06118827382102
Iteration: 13, Func. Count: 126, Neg. LLF: 168.51766018613986
Iteration: 14, Func. Count: 135, Neg. LLF: 168.2154488625632
Iteration: 15, Func. Count: 144, Neg. LLF: 168.1692259767796
Iteration: 16, Func. Count: 153, Neg. LLF: 168.1620394635691
Iteration: 17, Func. Count: 162, Neg. LLF: 168.14952088089612
Iteration: 18, Func. Count: 171, Neg. LLF: 168.1494091405968
Iteration: 19, Func. Count: 180, Neg. LLF: 168.14939631233423
Iteration: 20, Func. Count: 189, Neg. LLF: 168.14939238339653
Iteration: 21, Func. Count: 198, Neg. LLF: 168.1493905012858
Iteration: 22, Func. Count: 206, Neg. LLF: 168.14939050127424
Optimization terminated successfully (Exit mode 0)
Current function value: 168.1493905012858
Iterations: 22
Function evaluations: 206
Gradient evaluations: 22
Iteration: 1, Func. Count: 11, Neg. LLF: 196.01806499033677
Iteration: 2, Func. Count: 22, Neg. LLF: 192.51099775674757
Iteration: 3, Func. Count: 33, Neg. LLF: 172.64315020362667
Iteration: 4, Func. Count: 44, Neg. LLF: 169.5886374928573
Iteration: 5, Func. Count: 54, Neg. LLF: 170.9340598270627
Iteration: 6, Func. Count: 66, Neg. LLF: 172.16872348300814
Iteration: 7, Func. Count: 77, Neg. LLF: 169.07266746628116
Iteration: 8, Func. Count: 87, Neg. LLF: 168.99643933198607
Iteration: 9, Func. Count: 97, Neg. LLF: 168.93365348654288
Iteration: 10, Func. Count: 107, Neg. LLF: 168.86770978598526
Iteration: 11, Func. Count: 117, Neg. LLF: 168.7474535786372
Iteration: 12, Func. Count: 127, Neg. LLF: 168.55965231347787
Iteration: 13, Func. Count: 137, Neg. LLF: 168.37433744926912
Iteration: 14, Func. Count: 147, Neg. LLF: 168.2809759930329
Iteration: 15, Func. Count: 157, Neg. LLF: 168.20126928993935
Iteration: 16, Func. Count: 167, Neg. LLF: 168.155176856797
Iteration: 17, Func. Count: 177, Neg. LLF: 168.14996659777046
Iteration: 18, Func. Count: 187, Neg. LLF: 168.14955991153332
Iteration: 19, Func. Count: 197, Neg. LLF: 168.14946565905677
Iteration: 20, Func. Count: 207, Neg. LLF: 168.14939184550448
Iteration: 21, Func. Count: 217, Neg. LLF: 168.1493905229125
Iteration: 22, Func. Count: 226, Neg. LLF: 168.1493905362218
Optimization terminated successfully (Exit mode 0)
Current function value: 168.1493905229125
Iterations: 22
Function evaluations: 226
Gradient evaluations: 22
Iteration: 1, Func. Count: 12, Neg. LLF: 195.98983356297296
Iteration: 2, Func. Count: 24, Neg. LLF: 170.26231690043716
Iteration: 3, Func. Count: 35, Neg. LLF: 170.24071597595594
Iteration: 4, Func. Count: 47, Neg. LLF: 173.53476227681855
Iteration: 5, Func. Count: 59, Neg. LLF: 169.81032695542586
Iteration: 6, Func. Count: 71, Neg. LLF: 171.24889113208758
Iteration: 7, Func. Count: 83, Neg. LLF: 196.06087709986
Iteration: 8, Func. Count: 95, Neg. LLF: 169.10301088734624
Iteration: 9, Func. Count: 106, Neg. LLF: 169.0269570407909
Iteration: 10, Func. Count: 117, Neg. LLF: 168.9822253333377
Iteration: 11, Func. Count: 128, Neg. LLF: 168.82103407328162
Iteration: 12, Func. Count: 139, Neg. LLF: 168.56815432894956
Iteration: 13, Func. Count: 150, Neg. LLF: 168.28500173709588
Iteration: 14, Func. Count: 161, Neg. LLF: 168.20181077703396
Iteration: 15, Func. Count: 172, Neg. LLF: 168.16737452381594
Iteration: 16, Func. Count: 183, Neg. LLF: 168.1513270752349
Iteration: 17, Func. Count: 194, Neg. LLF: 168.14953374881742
Iteration: 18, Func. Count: 205, Neg. LLF: 168.1494073962663
Iteration: 19, Func. Count: 216, Neg. LLF: 168.14939099200757
Iteration: 20, Func. Count: 226, Neg. LLF: 168.14939116894567
Optimization terminated successfully (Exit mode 0)
Current function value: 168.14939099200757
Iterations: 20
Function evaluations: 226
Gradient evaluations: 20
Iteration: 1, Func. Count: 13, Neg. LLF: 195.96564190269342
Iteration: 2, Func. Count: 26, Neg. LLF: 169.7894622441217
Iteration: 3, Func. Count: 38, Neg. LLF: 172.30533937349495
Iteration: 4, Func. Count: 51, Neg. LLF: 181.33318752777512
Iteration: 5, Func. Count: 64, Neg. LLF: 170.46054652633057
Iteration: 6, Func. Count: 77, Neg. LLF: 170.00425558925204
Iteration: 7, Func. Count: 90, Neg. LLF: 191.40458113451234
Iteration: 8, Func. Count: 103, Neg. LLF: 169.92281912972092
Iteration: 9, Func. Count: 116, Neg. LLF: 169.05481415712023
Iteration: 10, Func. Count: 128, Neg. LLF: 169.01450381096316
Iteration: 11, Func. Count: 140, Neg. LLF: 168.87133188760112
Iteration: 12, Func. Count: 152, Neg. LLF: 168.60748179217038
Iteration: 13, Func. Count: 164, Neg. LLF: 168.2911403920296
Iteration: 14, Func. Count: 176, Neg. LLF: 168.1932568199961
Iteration: 15, Func. Count: 188, Neg. LLF: 168.15459630680908
Iteration: 16, Func. Count: 200, Neg. LLF: 168.14973131400006
Iteration: 17, Func. Count: 212, Neg. LLF: 168.14943258020227
Iteration: 18, Func. Count: 224, Neg. LLF: 168.149394284349
Iteration: 19, Func. Count: 236, Neg. LLF: 168.1493906124101
Iteration: 20, Func. Count: 247, Neg. LLF: 168.14939061300922
Optimization terminated successfully (Exit mode 0)
Current function value: 168.1493906124101
Iterations: 20
Function evaluations: 247
Gradient evaluations: 20
Iteration: 1, Func. Count: 14, Neg. LLF: 184.2986915967903
Iteration: 2, Func. Count: 28, Neg. LLF: 174.7044833851221
Iteration: 3, Func. Count: 43, Neg. LLF: 173.44050673954433
Iteration: 4, Func. Count: 57, Neg. LLF: 172.38871495824668
Iteration: 5, Func. Count: 71, Neg. LLF: 171.2657265745876
Iteration: 6, Func. Count: 84, Neg. LLF: 172.18979836814972
Iteration: 7, Func. Count: 99, Neg. LLF: 171.39660445699485
Iteration: 8, Func. Count: 113, Neg. LLF: 171.09698352797824
Iteration: 9, Func. Count: 126, Neg. LLF: 170.94301666178396
Iteration: 10, Func. Count: 139, Neg. LLF: 170.72176972987089
Iteration: 11, Func. Count: 152, Neg. LLF: 169.147414278994
Iteration: 12, Func. Count: 165, Neg. LLF: 194.5061974174443
Iteration: 13, Func. Count: 179, Neg. LLF: 202.64126035114595
Iteration: 14, Func. Count: 193, Neg. LLF: 176.45354077996598
Iteration: 15, Func. Count: 207, Neg. LLF: 171.72795787657333
Iteration: 16, Func. Count: 221, Neg. LLF: 167.44517997936376
Iteration: 17, Func. Count: 234, Neg. LLF: 167.65947910538938
Iteration: 18, Func. Count: 248, Neg. LLF: 168.5897292200126
Iteration: 19, Func. Count: 262, Neg. LLF: 167.95435419168595
Iteration: 20, Func. Count: 276, Neg. LLF: 167.27524537127945
Iteration: 21, Func. Count: 289, Neg. LLF: 167.26191865719494
Iteration: 22, Func. Count: 302, Neg. LLF: 167.2578601476589
Iteration: 23, Func. Count: 315, Neg. LLF: 167.25563766714157
Iteration: 24, Func. Count: 328, Neg. LLF: 167.25557203421846
Iteration: 25, Func. Count: 341, Neg. LLF: 167.25555809705142
Iteration: 26, Func. Count: 354, Neg. LLF: 167.25555745154503
Optimization terminated successfully (Exit mode 0)
Current function value: 167.25555745154503
Iterations: 26
Function evaluations: 354
Gradient evaluations: 26
Iteration: 1, Func. Count: 11, Neg. LLF: 173.08122533572362
Iteration: 2, Func. Count: 22, Neg. LLF: 184.12484833264668
Iteration: 3, Func. Count: 33, Neg. LLF: 170.37954640796454
Iteration: 4, Func. Count: 43, Neg. LLF: 187.04108830824245
Iteration: 5, Func. Count: 55, Neg. LLF: 170.26411203259332
Iteration: 6, Func. Count: 65, Neg. LLF: 175.46415765129615
Iteration: 7, Func. Count: 76, Neg. LLF: 169.94780108441233
Iteration: 8, Func. Count: 86, Neg. LLF: 169.91980330831777
Iteration: 9, Func. Count: 96, Neg. LLF: 169.91261604537866
Iteration: 10, Func. Count: 106, Neg. LLF: 169.88224039247996
Iteration: 11, Func. Count: 116, Neg. LLF: 169.73093026363267
Iteration: 12, Func. Count: 126, Neg. LLF: 169.3790801695483
Iteration: 13, Func. Count: 136, Neg. LLF: 168.9986021645482
Iteration: 14, Func. Count: 146, Neg. LLF: 168.56449005252438
Iteration: 15, Func. Count: 156, Neg. LLF: 168.34099339488358
Iteration: 16, Func. Count: 166, Neg. LLF: 168.18708964918778
Iteration: 17, Func. Count: 176, Neg. LLF: 168.165391986491
Iteration: 18, Func. Count: 186, Neg. LLF: 168.15499195795593
Iteration: 19, Func. Count: 196, Neg. LLF: 168.15270450209766
Iteration: 20, Func. Count: 206, Neg. LLF: 168.152454026258
Iteration: 21, Func. Count: 216, Neg. LLF: 168.15239680362689
Iteration: 22, Func. Count: 226, Neg. LLF: 168.15237673238337
Iteration: 23, Func. Count: 236, Neg. LLF: 168.1523540641537
Iteration: 24, Func. Count: 246, Neg. LLF: 168.15234892740884
Iteration: 25, Func. Count: 256, Neg. LLF: 168.15234822137072
Optimization terminated successfully (Exit mode 0)
Current function value: 168.15234822137072
Iterations: 25
Function evaluations: 256
Gradient evaluations: 25
Iteration: 1, Func. Count: 12, Neg. LLF: 196.0100629069631
Iteration: 2, Func. Count: 24, Neg. LLF: 171.6324798587764
Iteration: 3, Func. Count: 36, Neg. LLF: 170.71320758756482
Iteration: 4, Func. Count: 48, Neg. LLF: 173.38429563023195
Iteration: 5, Func. Count: 60, Neg. LLF: 176.3148518011999
Iteration: 6, Func. Count: 72, Neg. LLF: 173.37460520165695
Iteration: 7, Func. Count: 84, Neg. LLF: 168.79585033714693
Iteration: 8, Func. Count: 95, Neg. LLF: 168.65303306445594
Iteration: 9, Func. Count: 106, Neg. LLF: 168.61509977618468
Iteration: 10, Func. Count: 117, Neg. LLF: 168.59387610982233
Iteration: 11, Func. Count: 128, Neg. LLF: 168.58148737937637
Iteration: 12, Func. Count: 139, Neg. LLF: 168.4957675380224
Iteration: 13, Func. Count: 150, Neg. LLF: 168.27974323880997
Iteration: 14, Func. Count: 161, Neg. LLF: 168.2172623263529
Iteration: 15, Func. Count: 172, Neg. LLF: 168.1765150592562
Iteration: 16, Func. Count: 183, Neg. LLF: 168.16336056038185
Iteration: 17, Func. Count: 194, Neg. LLF: 168.15611109180568
Iteration: 18, Func. Count: 205, Neg. LLF: 168.1542545208161
Iteration: 19, Func. Count: 216, Neg. LLF: 168.15264121928516
Iteration: 20, Func. Count: 227, Neg. LLF: 168.15237755927882
Iteration: 21, Func. Count: 238, Neg. LLF: 168.1523485094431
Iteration: 22, Func. Count: 248, Neg. LLF: 168.15234852620134
Optimization terminated successfully (Exit mode 0)
Current function value: 168.1523485094431
Iterations: 22
Function evaluations: 248
Gradient evaluations: 22
Iteration: 1, Func. Count: 13, Neg. LLF: 176.62925313444876
Iteration: 2, Func. Count: 26, Neg. LLF: 175.59948117310518
Iteration: 3, Func. Count: 39, Neg. LLF: 169.75544076496752
Iteration: 4, Func. Count: 51, Neg. LLF: 177.71681638323113
Iteration: 5, Func. Count: 65, Neg. LLF: 186.69028653034033
Iteration: 6, Func. Count: 78, Neg. LLF: 181.55882081361605
Iteration: 7, Func. Count: 91, Neg. LLF: 174.0768271212173
Iteration: 8, Func. Count: 104, Neg. LLF: 168.77839422564224
Iteration: 9, Func. Count: 117, Neg. LLF: 168.61323598663685
Iteration: 10, Func. Count: 129, Neg. LLF: 168.60043013008337
Iteration: 11, Func. Count: 141, Neg. LLF: 168.54152436023224
Iteration: 12, Func. Count: 153, Neg. LLF: 168.4598800294982
Iteration: 13, Func. Count: 165, Neg. LLF: 168.32497857792828
Iteration: 14, Func. Count: 177, Neg. LLF: 168.21617932864547
Iteration: 15, Func. Count: 189, Neg. LLF: 168.17222721360037
Iteration: 16, Func. Count: 201, Neg. LLF: 168.15538821768294
Iteration: 17, Func. Count: 213, Neg. LLF: 168.15251496777432
Iteration: 18, Func. Count: 225, Neg. LLF: 168.15235481384164
Iteration: 19, Func. Count: 237, Neg. LLF: 168.1523486801043
Iteration: 20, Func. Count: 248, Neg. LLF: 168.1523488107388
Optimization terminated successfully (Exit mode 0)
Current function value: 168.1523486801043
Iterations: 20
Function evaluations: 248
Gradient evaluations: 20
Iteration: 1, Func. Count: 14, Neg. LLF: 172.09219971819138
Iteration: 2, Func. Count: 27, Neg. LLF: 171.17554380281177
Iteration: 3, Func. Count: 40, Neg. LLF: 203.49894607600694
Iteration: 4, Func. Count: 55, Neg. LLF: 175.9266445866626
Iteration: 5, Func. Count: 69, Neg. LLF: 178.63060834368187
Iteration: 6, Func. Count: 83, Neg. LLF: 173.44121091434334
Iteration: 7, Func. Count: 97, Neg. LLF: 180.73475530390007
Iteration: 8, Func. Count: 111, Neg. LLF: 176.3830290184448
Iteration: 9, Func. Count: 125, Neg. LLF: 170.5319831310231
Iteration: 10, Func. Count: 139, Neg. LLF: 169.91700955430565
Iteration: 11, Func. Count: 152, Neg. LLF: 169.89981937396595
Iteration: 12, Func. Count: 165, Neg. LLF: 169.87865943421673
Iteration: 13, Func. Count: 178, Neg. LLF: 169.82717720247388
Iteration: 14, Func. Count: 191, Neg. LLF: 169.60218974204065
Iteration: 15, Func. Count: 204, Neg. LLF: 169.03399099046246
Iteration: 16, Func. Count: 217, Neg. LLF: 169.12898264558015
Iteration: 17, Func. Count: 231, Neg. LLF: 174.13619017788406
Iteration: 18, Func. Count: 245, Neg. LLF: 168.2572352499832
Iteration: 19, Func. Count: 258, Neg. LLF: 168.24817015477524
Iteration: 20, Func. Count: 272, Neg. LLF: 168.16404248167726
Iteration: 21, Func. Count: 285, Neg. LLF: 168.16465102710842
Iteration: 22, Func. Count: 299, Neg. LLF: 168.15671960482138
Iteration: 23, Func. Count: 312, Neg. LLF: 168.15246840881923
Iteration: 24, Func. Count: 325, Neg. LLF: 168.1523582426961
Iteration: 25, Func. Count: 338, Neg. LLF: 168.1523494360329
Iteration: 26, Func. Count: 350, Neg. LLF: 168.15234946424317
Optimization terminated successfully (Exit mode 0)
Current function value: 168.1523494360329
Iterations: 26
Function evaluations: 350
Gradient evaluations: 26
Iteration: 1, Func. Count: 15, Neg. LLF: 172.05985573174942
Iteration: 2, Func. Count: 29, Neg. LLF: 171.26108478769885
Iteration: 3, Func. Count: 43, Neg. LLF: 204.88449089768633
Iteration: 4, Func. Count: 59, Neg. LLF: 177.42241456011254
Iteration: 5, Func. Count: 74, Neg. LLF: 170.30191065252902
Iteration: 6, Func. Count: 88, Neg. LLF: 171.21998534295318
Iteration: 7, Func. Count: 104, Neg. LLF: 170.25616680110866
Iteration: 8, Func. Count: 119, Neg. LLF: 169.98966687110178
Iteration: 9, Func. Count: 133, Neg. LLF: 169.92309011156232
Iteration: 10, Func. Count: 147, Neg. LLF: 169.89099354048142
Iteration: 11, Func. Count: 161, Neg. LLF: 169.87236321287708
Iteration: 12, Func. Count: 175, Neg. LLF: 169.8090185356926
Iteration: 13, Func. Count: 189, Neg. LLF: 169.60570966938718
Iteration: 14, Func. Count: 203, Neg. LLF: 168.98935767986438
Iteration: 15, Func. Count: 217, Neg. LLF: 168.49101073151482
Iteration: 16, Func. Count: 231, Neg. LLF: 177.73855938753587
Iteration: 17, Func. Count: 246, Neg. LLF: 215.93263315489153
Iteration: 18, Func. Count: 261, Neg. LLF: 194.66078999614004
Iteration: 19, Func. Count: 276, Neg. LLF: 181.26415588588463
Iteration: 20, Func. Count: 291, Neg. LLF: 186.39319255646063
Iteration: 21, Func. Count: 306, Neg. LLF: 173.70135124021925
Iteration: 22, Func. Count: 321, Neg. LLF: 168.2909737002811
Iteration: 23, Func. Count: 336, Neg. LLF: 167.41336344118105
Iteration: 24, Func. Count: 350, Neg. LLF: 167.32198068678335
Iteration: 25, Func. Count: 364, Neg. LLF: 167.31408365654204
Iteration: 26, Func. Count: 378, Neg. LLF: 167.30866271146343
Iteration: 27, Func. Count: 392, Neg. LLF: 167.29785722388814
Iteration: 28, Func. Count: 406, Neg. LLF: 167.2925535136077
Iteration: 29, Func. Count: 420, Neg. LLF: 167.28979036383632
Iteration: 30, Func. Count: 434, Neg. LLF: 167.28976506886718
Iteration: 31, Func. Count: 448, Neg. LLF: 167.28976375216683
Iteration: 32, Func. Count: 461, Neg. LLF: 167.2897637432897
Optimization terminated successfully (Exit mode 0)
Current function value: 167.28976375216683
Iterations: 32
Function evaluations: 461
Gradient evaluations: 32
Iteration: 1, Func. Count: 12, Neg. LLF: 173.12102962867962
Iteration: 2, Func. Count: 24, Neg. LLF: 184.14051476761563
Iteration: 3, Func. Count: 36, Neg. LLF: 170.42137063887978
Iteration: 4, Func. Count: 47, Neg. LLF: 186.09939970322299
Iteration: 5, Func. Count: 60, Neg. LLF: 170.30291437445266
Iteration: 6, Func. Count: 71, Neg. LLF: 172.90894120944418
Iteration: 7, Func. Count: 83, Neg. LLF: 169.93747172225707
Iteration: 8, Func. Count: 94, Neg. LLF: 169.92201113223706
Iteration: 9, Func. Count: 105, Neg. LLF: 169.90169080310406
Iteration: 10, Func. Count: 116, Neg. LLF: 169.87538956847223
Iteration: 11, Func. Count: 127, Neg. LLF: 169.83246646436947
Iteration: 12, Func. Count: 138, Neg. LLF: 169.5760264190129
Iteration: 13, Func. Count: 149, Neg. LLF: 169.352001430398
Iteration: 14, Func. Count: 160, Neg. LLF: 168.75933978124584
Iteration: 15, Func. Count: 171, Neg. LLF: 168.44210337531044
Iteration: 16, Func. Count: 182, Neg. LLF: 168.23432001760054
Iteration: 17, Func. Count: 193, Neg. LLF: 168.20014878797633
Iteration: 18, Func. Count: 204, Neg. LLF: 168.156219946927
Iteration: 19, Func. Count: 215, Neg. LLF: 168.1545218386764
Iteration: 20, Func. Count: 226, Neg. LLF: 168.15299700217946
Iteration: 21, Func. Count: 237, Neg. LLF: 168.15272911998167
Iteration: 22, Func. Count: 248, Neg. LLF: 168.15257733749797
Iteration: 23, Func. Count: 259, Neg. LLF: 168.15235629594414
Iteration: 24, Func. Count: 270, Neg. LLF: 168.15234839753893
Iteration: 25, Func. Count: 280, Neg. LLF: 168.15234842256177
Optimization terminated successfully (Exit mode 0)
Current function value: 168.15234839753893
Iterations: 25
Function evaluations: 280
Gradient evaluations: 25
Iteration: 1, Func. Count: 13, Neg. LLF: 195.9801839061693
Iteration: 2, Func. Count: 26, Neg. LLF: 173.76010100231545
Iteration: 3, Func. Count: 39, Neg. LLF: 169.15209281178716
Iteration: 4, Func. Count: 51, Neg. LLF: 174.2726118052465
Iteration: 5, Func. Count: 64, Neg. LLF: 171.13761445646944
Iteration: 6, Func. Count: 77, Neg. LLF: 168.81777133175163
Iteration: 7, Func. Count: 90, Neg. LLF: 168.65457433878166
Iteration: 8, Func. Count: 103, Neg. LLF: 168.6120422545269
Iteration: 9, Func. Count: 115, Neg. LLF: 168.5942408118849
Iteration: 10, Func. Count: 127, Neg. LLF: 168.57031533792937
Iteration: 11, Func. Count: 139, Neg. LLF: 168.48341301439245
Iteration: 12, Func. Count: 151, Neg. LLF: 168.36426540714376
Iteration: 13, Func. Count: 163, Neg. LLF: 168.23763522522034
Iteration: 14, Func. Count: 175, Neg. LLF: 168.18338199122203
Iteration: 15, Func. Count: 187, Neg. LLF: 168.15982168899293
Iteration: 16, Func. Count: 199, Neg. LLF: 168.15468064989767
Iteration: 17, Func. Count: 211, Neg. LLF: 168.15382738912794
Iteration: 18, Func. Count: 223, Neg. LLF: 168.15240023099818
Iteration: 19, Func. Count: 235, Neg. LLF: 168.1523506044699
Iteration: 20, Func. Count: 247, Neg. LLF: 168.1523482111498
Iteration: 21, Func. Count: 258, Neg. LLF: 168.1523482279003
Optimization terminated successfully (Exit mode 0)
Current function value: 168.1523482111498
Iterations: 21
Function evaluations: 258
Gradient evaluations: 21
Iteration: 1, Func. Count: 14, Neg. LLF: 180.59411351676655
Iteration: 2, Func. Count: 28, Neg. LLF: 175.62819591925964
Iteration: 3, Func. Count: 42, Neg. LLF: 169.87655069677422
Iteration: 4, Func. Count: 55, Neg. LLF: 177.17235100150137
Iteration: 5, Func. Count: 70, Neg. LLF: 174.85062282395216
Iteration: 6, Func. Count: 84, Neg. LLF: 183.72242020993085
Iteration: 7, Func. Count: 98, Neg. LLF: 171.737538757748
Iteration: 8, Func. Count: 112, Neg. LLF: 168.7093670912525
Iteration: 9, Func. Count: 125, Neg. LLF: 168.6234581946904
Iteration: 10, Func. Count: 138, Neg. LLF: 168.6077152352573
Iteration: 11, Func. Count: 151, Neg. LLF: 168.58910454195157
Iteration: 12, Func. Count: 164, Neg. LLF: 168.5649580217055
Iteration: 13, Func. Count: 177, Neg. LLF: 168.44815689614637
Iteration: 14, Func. Count: 190, Neg. LLF: 168.33598168203525
Iteration: 15, Func. Count: 203, Neg. LLF: 168.2195616467954
Iteration: 16, Func. Count: 216, Neg. LLF: 168.1735524685177
Iteration: 17, Func. Count: 229, Neg. LLF: 168.15929737297697
Iteration: 18, Func. Count: 242, Neg. LLF: 168.15355559400552
Iteration: 19, Func. Count: 255, Neg. LLF: 168.1524209951739
Iteration: 20, Func. Count: 268, Neg. LLF: 168.15235364141125
Iteration: 21, Func. Count: 281, Neg. LLF: 168.1523487172186
Iteration: 22, Func. Count: 294, Neg. LLF: 168.15234822467642
Optimization terminated successfully (Exit mode 0)
Current function value: 168.15234822467642
Iterations: 22
Function evaluations: 294
Gradient evaluations: 22
Iteration: 1, Func. Count: 15, Neg. LLF: 172.04131697911035
Iteration: 2, Func. Count: 29, Neg. LLF: 171.41924378255788
Iteration: 3, Func. Count: 43, Neg. LLF: 210.02095698848038
Iteration: 4, Func. Count: 59, Neg. LLF: 178.43808469431212
Iteration: 5, Func. Count: 74, Neg. LLF: 170.44360672463975
Iteration: 6, Func. Count: 88, Neg. LLF: 170.64987328300793
Iteration: 7, Func. Count: 103, Neg. LLF: 172.55760523184128
Iteration: 8, Func. Count: 118, Neg. LLF: 170.2451237265753
Iteration: 9, Func. Count: 133, Neg. LLF: 169.94755234971032
Iteration: 10, Func. Count: 147, Neg. LLF: 170.00264324852404
Iteration: 11, Func. Count: 162, Neg. LLF: 169.87220446354976
Iteration: 12, Func. Count: 176, Neg. LLF: 169.84152775673653
Iteration: 13, Func. Count: 190, Neg. LLF: 169.74878303296103
Iteration: 14, Func. Count: 204, Neg. LLF: 169.54099111961762
Iteration: 15, Func. Count: 218, Neg. LLF: 169.0934210978771
Iteration: 16, Func. Count: 232, Neg. LLF: 168.68887559571394
Iteration: 17, Func. Count: 246, Neg. LLF: 168.30070151368088
Iteration: 18, Func. Count: 260, Neg. LLF: 171.92073675302734
Iteration: 19, Func. Count: 275, Neg. LLF: 168.493949759649
Iteration: 20, Func. Count: 290, Neg. LLF: 168.20390545625807
Iteration: 21, Func. Count: 304, Neg. LLF: 168.19185580897346
Iteration: 22, Func. Count: 318, Neg. LLF: 168.1741026904509
Iteration: 23, Func. Count: 332, Neg. LLF: 168.1555727010925
Iteration: 24, Func. Count: 346, Neg. LLF: 168.15260887570292
Iteration: 25, Func. Count: 360, Neg. LLF: 168.15241707964373
Iteration: 26, Func. Count: 374, Neg. LLF: 168.15238339931247
Iteration: 27, Func. Count: 388, Neg. LLF: 168.15235335386402
Iteration: 28, Func. Count: 402, Neg. LLF: 168.15234854948739
Iteration: 29, Func. Count: 415, Neg. LLF: 168.15234857763076
Optimization terminated successfully (Exit mode 0)
Current function value: 168.15234854948739
Iterations: 29
Function evaluations: 415
Gradient evaluations: 29
Iteration: 1, Func. Count: 16, Neg. LLF: 172.01752170714892
Iteration: 2, Func. Count: 31, Neg. LLF: 172.3226878744609
Iteration: 3, Func. Count: 47, Neg. LLF: 188.86137563115778
Iteration: 4, Func. Count: 63, Neg. LLF: 170.7775857026715
Iteration: 5, Func. Count: 78, Neg. LLF: 174.59736427247063
Iteration: 6, Func. Count: 94, Neg. LLF: 172.18521786229877
Iteration: 7, Func. Count: 110, Neg. LLF: 177.34784661491938
Iteration: 8, Func. Count: 126, Neg. LLF: 173.69819249386725
Iteration: 9, Func. Count: 142, Neg. LLF: 170.08154671232077
Iteration: 10, Func. Count: 158, Neg. LLF: 169.91214438596748
Iteration: 11, Func. Count: 173, Neg. LLF: 169.89131999906348
Iteration: 12, Func. Count: 188, Neg. LLF: 169.8379462168493
Iteration: 13, Func. Count: 203, Neg. LLF: 169.45293092126886
Iteration: 14, Func. Count: 218, Neg. LLF: 168.3392629564628
Iteration: 15, Func. Count: 233, Neg. LLF: 168.0328610923192
Iteration: 16, Func. Count: 248, Neg. LLF: 167.83376403310308
Iteration: 17, Func. Count: 263, Neg. LLF: 167.7298903081464
Iteration: 18, Func. Count: 278, Neg. LLF: 167.6438692289458
Iteration: 19, Func. Count: 293, Neg. LLF: 167.48973693596554
Iteration: 20, Func. Count: 308, Neg. LLF: 167.4340578725038
Iteration: 21, Func. Count: 323, Neg. LLF: 167.373072478102
Iteration: 22, Func. Count: 338, Neg. LLF: 167.33264604127743
Iteration: 23, Func. Count: 353, Neg. LLF: 167.2958053524527
Iteration: 24, Func. Count: 368, Neg. LLF: 167.28993209108728
Iteration: 25, Func. Count: 383, Neg. LLF: 167.28978330190893
Iteration: 26, Func. Count: 398, Neg. LLF: 167.2897681741052
Iteration: 27, Func. Count: 413, Neg. LLF: 167.28976377878593
Iteration: 28, Func. Count: 427, Neg. LLF: 167.28976376994132
Optimization terminated successfully (Exit mode 0)
Current function value: 167.28976377878593
Iterations: 28
Function evaluations: 427
Gradient evaluations: 28
Iteration: 1, Func. Count: 7, Neg. LLF: 173.74909385989412
Iteration: 2, Func. Count: 14, Neg. LLF: 172.74416734437278
Iteration: 3, Func. Count: 21, Neg. LLF: 173.24557430763352
Iteration: 4, Func. Count: 28, Neg. LLF: 171.39836667257146
Iteration: 5, Func. Count: 34, Neg. LLF: 171.2864428207597
Iteration: 6, Func. Count: 40, Neg. LLF: 171.13065247383028
Iteration: 7, Func. Count: 46, Neg. LLF: 171.02433780208509
Iteration: 8, Func. Count: 52, Neg. LLF: 170.50338053946047
Iteration: 9, Func. Count: 58, Neg. LLF: 169.77143482947267
Iteration: 10, Func. Count: 64, Neg. LLF: 169.4814452486958
Iteration: 11, Func. Count: 71, Neg. LLF: 169.0930497975575
Iteration: 12, Func. Count: 77, Neg. LLF: 169.08337180971316
Iteration: 13, Func. Count: 83, Neg. LLF: 169.08322967406895
Iteration: 14, Func. Count: 89, Neg. LLF: 169.0832221629308
Iteration: 15, Func. Count: 95, Neg. LLF: 169.0832212913312
Optimization terminated successfully (Exit mode 0)
Current function value: 169.0832212913312
Iterations: 15
Function evaluations: 95
Gradient evaluations: 15
Iteration: 1, Func. Count: 5, Neg. LLF: 181.51422803069838
Iteration: 2, Func. Count: 10, Neg. LLF: 180.35283747259246
Iteration: 3, Func. Count: 14, Neg. LLF: 180.23386684595022
Iteration: 4, Func. Count: 18, Neg. LLF: 180.02925477951226
Iteration: 5, Func. Count: 22, Neg. LLF: 179.57922141970292
Iteration: 6, Func. Count: 26, Neg. LLF: 179.10173026318444
Iteration: 7, Func. Count: 30, Neg. LLF: 178.7793461703844
Iteration: 8, Func. Count: 34, Neg. LLF: 178.53976126544256
Iteration: 9, Func. Count: 38, Neg. LLF: 178.47451577936133
Iteration: 10, Func. Count: 42, Neg. LLF: 178.46642021518656
Iteration: 11, Func. Count: 46, Neg. LLF: 178.46335184552143
Iteration: 12, Func. Count: 50, Neg. LLF: 178.46253862043923
Iteration: 13, Func. Count: 54, Neg. LLF: 178.46246512890372
Iteration: 14, Func. Count: 58, Neg. LLF: 178.46246074989534
Iteration: 15, Func. Count: 61, Neg. LLF: 178.46246074991456
Optimization terminated successfully (Exit mode 0)
Current function value: 178.46246074989534
Iterations: 15
Function evaluations: 61
Gradient evaluations: 15
Iteration: 1, Func. Count: 6, Neg. LLF: 6936.535866887934
Iteration: 2, Func. Count: 13, Neg. LLF: 187.6256217671127
Iteration: 3, Func. Count: 19, Neg. LLF: 172.59849376110884
Iteration: 4, Func. Count: 24, Neg. LLF: 172.43005479910448
Iteration: 5, Func. Count: 29, Neg. LLF: 172.42960225632908
Iteration: 6, Func. Count: 34, Neg. LLF: 172.42915474144831
Iteration: 7, Func. Count: 39, Neg. LLF: 172.42909889722551
Iteration: 8, Func. Count: 44, Neg. LLF: 172.42909415637476
Iteration: 9, Func. Count: 48, Neg. LLF: 172.429094156209
Optimization terminated successfully (Exit mode 0)
Current function value: 172.42909415637476
Iterations: 9
Function evaluations: 48
Gradient evaluations: 9
Iteration: 1, Func. Count: 7, Neg. LLF: 371.81705335803565
Iteration: 2, Func. Count: 14, Neg. LLF: 264.23689603597705
Iteration: 3, Func. Count: 21, Neg. LLF: 172.86722553021949
Iteration: 4, Func. Count: 27, Neg. LLF: 172.82243886143496
Iteration: 5, Func. Count: 33, Neg. LLF: 172.7895892922161
Iteration: 6, Func. Count: 39, Neg. LLF: 172.7362233887016
Iteration: 7, Func. Count: 45, Neg. LLF: 172.66988350937044
Iteration: 8, Func. Count: 51, Neg. LLF: 172.59371702882265
Iteration: 9, Func. Count: 57, Neg. LLF: 172.53414497826458
Iteration: 10, Func. Count: 63, Neg. LLF: 172.4871339489235
Iteration: 11, Func. Count: 69, Neg. LLF: 172.46359893392173
Iteration: 12, Func. Count: 75, Neg. LLF: 172.45925614299398
Iteration: 13, Func. Count: 81, Neg. LLF: 172.45760411194902
Iteration: 14, Func. Count: 87, Neg. LLF: 172.45708875466366
Iteration: 15, Func. Count: 93, Neg. LLF: 172.45701652414738
Iteration: 16, Func. Count: 99, Neg. LLF: 172.45700965229517
Iteration: 17, Func. Count: 104, Neg. LLF: 172.45700969805162
Optimization terminated successfully (Exit mode 0)
Current function value: 172.45700965229517
Iterations: 17
Function evaluations: 104
Gradient evaluations: 17
Iteration: 1, Func. Count: 8, Neg. LLF: 371.424363448062
Iteration: 2, Func. Count: 16, Neg. LLF: 259.36841274270574
Iteration: 3, Func. Count: 24, Neg. LLF: 173.15407010433964
Iteration: 4, Func. Count: 31, Neg. LLF: 174.4733905877504
Iteration: 5, Func. Count: 39, Neg. LLF: 172.89104308737586
Iteration: 6, Func. Count: 46, Neg. LLF: 172.77636549618543
Iteration: 7, Func. Count: 53, Neg. LLF: 172.7389463708739
Iteration: 8, Func. Count: 60, Neg. LLF: 172.7069089224066
Iteration: 9, Func. Count: 67, Neg. LLF: 172.58529474055013
Iteration: 10, Func. Count: 74, Neg. LLF: 172.52355007944146
Iteration: 11, Func. Count: 81, Neg. LLF: 172.47423571997652
Iteration: 12, Func. Count: 88, Neg. LLF: 172.45916471063845
Iteration: 13, Func. Count: 95, Neg. LLF: 172.45713546720341
Iteration: 14, Func. Count: 102, Neg. LLF: 172.45701331816517
Iteration: 15, Func. Count: 109, Neg. LLF: 172.4570094168402
Iteration: 16, Func. Count: 115, Neg. LLF: 172.4570095052708
Optimization terminated successfully (Exit mode 0)
Current function value: 172.4570094168402
Iterations: 16
Function evaluations: 115
Gradient evaluations: 16
Iteration: 1, Func. Count: 9, Neg. LLF: 371.8001392436112
Iteration: 2, Func. Count: 18, Neg. LLF: 255.99871607319838
Iteration: 3, Func. Count: 27, Neg. LLF: 173.85992140266904
Iteration: 4, Func. Count: 35, Neg. LLF: 174.02099263087024
Iteration: 5, Func. Count: 44, Neg. LLF: 173.0273908161829
Iteration: 6, Func. Count: 52, Neg. LLF: 172.9024178612607
Iteration: 7, Func. Count: 60, Neg. LLF: 172.80266854582203
Iteration: 8, Func. Count: 68, Neg. LLF: 172.77596265022646
Iteration: 9, Func. Count: 76, Neg. LLF: 172.73950466994523
Iteration: 10, Func. Count: 84, Neg. LLF: 172.6407841598556
Iteration: 11, Func. Count: 92, Neg. LLF: 172.5592319682706
Iteration: 12, Func. Count: 100, Neg. LLF: 172.49909656444802
Iteration: 13, Func. Count: 108, Neg. LLF: 172.4670557863062
Iteration: 14, Func. Count: 116, Neg. LLF: 172.45894330525607
Iteration: 15, Func. Count: 124, Neg. LLF: 172.45782988270005
Iteration: 16, Func. Count: 132, Neg. LLF: 172.45723311691324
Iteration: 17, Func. Count: 140, Neg. LLF: 172.45703535410715
Iteration: 18, Func. Count: 148, Neg. LLF: 172.45701030122464
Iteration: 19, Func. Count: 156, Neg. LLF: 172.4570093906507
Optimization terminated successfully (Exit mode 0)
Current function value: 172.4570093906507
Iterations: 19
Function evaluations: 156
Gradient evaluations: 19
Iteration: 1, Func. Count: 6, Neg. LLF: 184.771661771994
Iteration: 2, Func. Count: 13, Neg. LLF: 175.3767808749313
Iteration: 3, Func. Count: 19, Neg. LLF: 173.68908870628084
Iteration: 4, Func. Count: 24, Neg. LLF: 173.5634935543582
Iteration: 5, Func. Count: 29, Neg. LLF: 173.55618508567142
Iteration: 6, Func. Count: 34, Neg. LLF: 173.5462413160878
Iteration: 7, Func. Count: 39, Neg. LLF: 173.5255114583803
Iteration: 8, Func. Count: 44, Neg. LLF: 173.49122763449813
Iteration: 9, Func. Count: 49, Neg. LLF: 173.46318957688578
Iteration: 10, Func. Count: 54, Neg. LLF: 173.44117560738647
Iteration: 11, Func. Count: 59, Neg. LLF: 173.4196886429649
Iteration: 12, Func. Count: 64, Neg. LLF: 173.40239136227868
Iteration: 13, Func. Count: 69, Neg. LLF: 173.39076411433362
Iteration: 14, Func. Count: 74, Neg. LLF: 173.38679652353338
Iteration: 15, Func. Count: 79, Neg. LLF: 173.3865009921502
Iteration: 16, Func. Count: 84, Neg. LLF: 173.38648392884411
Iteration: 17, Func. Count: 89, Neg. LLF: 173.3864830562846
Optimization terminated successfully (Exit mode 0)
Current function value: 173.3864830562846
Iterations: 17
Function evaluations: 89
Gradient evaluations: 17
Iteration: 1, Func. Count: 7, Neg. LLF: 9004.22157220739
Iteration: 2, Func. Count: 15, Neg. LLF: 173.7222426609978
Iteration: 3, Func. Count: 22, Neg. LLF: 172.40660173479253
Iteration: 4, Func. Count: 28, Neg. LLF: 172.25914572929005
Iteration: 5, Func. Count: 34, Neg. LLF: 172.28732868773062
Iteration: 6, Func. Count: 41, Neg. LLF: 172.16004543991582
Iteration: 7, Func. Count: 47, Neg. LLF: 172.15241270126322
Iteration: 8, Func. Count: 53, Neg. LLF: 172.1522289027933
Iteration: 9, Func. Count: 59, Neg. LLF: 172.15220141870935
Iteration: 10, Func. Count: 65, Neg. LLF: 172.15219994857236
Iteration: 11, Func. Count: 70, Neg. LLF: 172.1521999484812
Optimization terminated successfully (Exit mode 0)
Current function value: 172.15219994857236
Iterations: 11
Function evaluations: 70
Gradient evaluations: 11
Iteration: 1, Func. Count: 8, Neg. LLF: 373.6454572910638
Iteration: 2, Func. Count: 16, Neg. LLF: 213.8268186761531
Iteration: 3, Func. Count: 24, Neg. LLF: 173.33684910121156
Iteration: 4, Func. Count: 32, Neg. LLF: 173.11003771785494
Iteration: 5, Func. Count: 40, Neg. LLF: 172.31011393452934
Iteration: 6, Func. Count: 47, Neg. LLF: 172.20031069372885
Iteration: 7, Func. Count: 54, Neg. LLF: 172.14546471999324
Iteration: 8, Func. Count: 61, Neg. LLF: 171.9059693696435
Iteration: 9, Func. Count: 68, Neg. LLF: 171.60919404066647
Iteration: 10, Func. Count: 75, Neg. LLF: 171.57801936131375
Iteration: 11, Func. Count: 82, Neg. LLF: 171.56288860402472
Iteration: 12, Func. Count: 89, Neg. LLF: 171.56048391381222
Iteration: 13, Func. Count: 96, Neg. LLF: 171.5602001520719
Iteration: 14, Func. Count: 103, Neg. LLF: 171.56008121375274
Iteration: 15, Func. Count: 110, Neg. LLF: 171.5599329338264
Iteration: 16, Func. Count: 117, Neg. LLF: 171.5598988945711
Iteration: 17, Func. Count: 124, Neg. LLF: 171.55989521533658
Iteration: 18, Func. Count: 130, Neg. LLF: 171.55989527644778
Optimization terminated successfully (Exit mode 0)
Current function value: 171.55989521533658
Iterations: 18
Function evaluations: 130
Gradient evaluations: 18
Iteration: 1, Func. Count: 9, Neg. LLF: 374.1781964367064
Iteration: 2, Func. Count: 18, Neg. LLF: 315.3357014344216
Iteration: 3, Func. Count: 27, Neg. LLF: 176.0150345048558
Iteration: 4, Func. Count: 37, Neg. LLF: 172.42384744940395
Iteration: 5, Func. Count: 45, Neg. LLF: 172.23931899523305
Iteration: 6, Func. Count: 53, Neg. LLF: 172.22780781575176
Iteration: 7, Func. Count: 61, Neg. LLF: 172.19923125274562
Iteration: 8, Func. Count: 69, Neg. LLF: 172.190921295121
Iteration: 9, Func. Count: 77, Neg. LLF: 172.20015476592155
Iteration: 10, Func. Count: 86, Neg. LLF: 172.9948065192311
Iteration: 11, Func. Count: 95, Neg. LLF: 172.21781105824348
Iteration: 12, Func. Count: 104, Neg. LLF: 172.1575837899494
Iteration: 13, Func. Count: 112, Neg. LLF: 172.13716191870222
Iteration: 14, Func. Count: 120, Neg. LLF: 172.11581963127284
Iteration: 15, Func. Count: 128, Neg. LLF: 171.95114035954157
Iteration: 16, Func. Count: 136, Neg. LLF: 171.73026647274372
Iteration: 17, Func. Count: 144, Neg. LLF: 171.54262222787685
Iteration: 18, Func. Count: 152, Neg. LLF: 171.31115623319363
Iteration: 19, Func. Count: 160, Neg. LLF: 171.26402537745935
Iteration: 20, Func. Count: 168, Neg. LLF: 171.177166685103
Iteration: 21, Func. Count: 176, Neg. LLF: 171.15969747316186
Iteration: 22, Func. Count: 184, Neg. LLF: 171.14725458197444
Iteration: 23, Func. Count: 192, Neg. LLF: 171.13994700771772
Iteration: 24, Func. Count: 200, Neg. LLF: 171.1370128710489
Iteration: 25, Func. Count: 208, Neg. LLF: 171.1368148908321
Iteration: 26, Func. Count: 216, Neg. LLF: 171.13679932845872
Iteration: 27, Func. Count: 224, Neg. LLF: 171.1367962314966
Iteration: 28, Func. Count: 231, Neg. LLF: 171.13679623165143
Optimization terminated successfully (Exit mode 0)
Current function value: 171.1367962314966
Iterations: 28
Function evaluations: 231
Gradient evaluations: 28
Iteration: 1, Func. Count: 10, Neg. LLF: 195.9123956818247
Iteration: 2, Func. Count: 20, Neg. LLF: 176.30515422511792
Iteration: 3, Func. Count: 30, Neg. LLF: 173.592163992114
Iteration: 4, Func. Count: 41, Neg. LLF: 171.61662928165768
Iteration: 5, Func. Count: 50, Neg. LLF: 171.61370432273412
Iteration: 6, Func. Count: 59, Neg. LLF: 171.60680462572546
Iteration: 7, Func. Count: 68, Neg. LLF: 171.60291867856762
Iteration: 8, Func. Count: 77, Neg. LLF: 171.6013215385013
Iteration: 9, Func. Count: 86, Neg. LLF: 171.595630174259
Iteration: 10, Func. Count: 95, Neg. LLF: 171.58485777751494
Iteration: 11, Func. Count: 104, Neg. LLF: 171.5696943733672
Iteration: 12, Func. Count: 113, Neg. LLF: 171.5611803031595
Iteration: 13, Func. Count: 122, Neg. LLF: 171.559966242102
Iteration: 14, Func. Count: 131, Neg. LLF: 171.55989664265746
Iteration: 15, Func. Count: 140, Neg. LLF: 171.55989511347317
Iteration: 16, Func. Count: 148, Neg. LLF: 171.55989514916863
Optimization terminated successfully (Exit mode 0)
Current function value: 171.55989511347317
Iterations: 16
Function evaluations: 148
Gradient evaluations: 16
Iteration: 1, Func. Count: 7, Neg. LLF: 173.9246452708821
Iteration: 2, Func. Count: 15, Neg. LLF: 184.15681161062068
Iteration: 3, Func. Count: 23, Neg. LLF: 170.27243778734996
Iteration: 4, Func. Count: 29, Neg. LLF: 170.24459012298612
Iteration: 5, Func. Count: 35, Neg. LLF: 170.209464357851
Iteration: 6, Func. Count: 41, Neg. LLF: 170.20081948563305
Iteration: 7, Func. Count: 47, Neg. LLF: 170.1886475587086
Iteration: 8, Func. Count: 53, Neg. LLF: 170.1424471841629
Iteration: 9, Func. Count: 59, Neg. LLF: 170.10676571962406
Iteration: 10, Func. Count: 65, Neg. LLF: 170.06584531875643
Iteration: 11, Func. Count: 71, Neg. LLF: 170.04410574042802
Iteration: 12, Func. Count: 77, Neg. LLF: 170.03933975052772
Iteration: 13, Func. Count: 83, Neg. LLF: 170.03906449792828
Iteration: 14, Func. Count: 89, Neg. LLF: 170.0390044380248
Iteration: 15, Func. Count: 95, Neg. LLF: 170.0390012234417
Iteration: 16, Func. Count: 100, Neg. LLF: 170.03900122344723
Optimization terminated successfully (Exit mode 0)
Current function value: 170.0390012234417
Iterations: 16
Function evaluations: 100
Gradient evaluations: 16
Iteration: 1, Func. Count: 8, Neg. LLF: 8646.343590427283
Iteration: 2, Func. Count: 17, Neg. LLF: 176.11330247073323
Iteration: 3, Func. Count: 25, Neg. LLF: 172.65535421415305
Iteration: 4, Func. Count: 32, Neg. LLF: 172.50780902759516
Iteration: 5, Func. Count: 39, Neg. LLF: 172.38851178603872
Iteration: 6, Func. Count: 46, Neg. LLF: 172.20418894699066
Iteration: 7, Func. Count: 53, Neg. LLF: 172.1673604774713
Iteration: 8, Func. Count: 60, Neg. LLF: 172.15302199627334
Iteration: 9, Func. Count: 67, Neg. LLF: 172.15264089341167
Iteration: 10, Func. Count: 74, Neg. LLF: 172.15226771439475
Iteration: 11, Func. Count: 81, Neg. LLF: 172.15220669165555
Iteration: 12, Func. Count: 88, Neg. LLF: 172.15219998083933
Iteration: 13, Func. Count: 94, Neg. LLF: 172.15219998068065
Optimization terminated successfully (Exit mode 0)
Current function value: 172.15219998083933
Iterations: 13
Function evaluations: 94
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 373.5502635622298
Iteration: 2, Func. Count: 18, Neg. LLF: 317.5296986741287
Iteration: 3, Func. Count: 27, Neg. LLF: 181.0909010485884
Iteration: 4, Func. Count: 36, Neg. LLF: 172.6930862102837
Iteration: 5, Func. Count: 45, Neg. LLF: 172.39860517092637
Iteration: 6, Func. Count: 53, Neg. LLF: 172.35088389693863
Iteration: 7, Func. Count: 61, Neg. LLF: 171.95216237063934
Iteration: 8, Func. Count: 69, Neg. LLF: 170.89011333604438
Iteration: 9, Func. Count: 77, Neg. LLF: 170.35573630980173
Iteration: 10, Func. Count: 85, Neg. LLF: 170.2528642634581
Iteration: 11, Func. Count: 93, Neg. LLF: 170.09096381261088
Iteration: 12, Func. Count: 101, Neg. LLF: 170.06234456532547
Iteration: 13, Func. Count: 109, Neg. LLF: 170.0475945945243
Iteration: 14, Func. Count: 117, Neg. LLF: 170.0437296575496
Iteration: 15, Func. Count: 125, Neg. LLF: 170.04202553170052
Iteration: 16, Func. Count: 133, Neg. LLF: 170.04101876769082
Iteration: 17, Func. Count: 141, Neg. LLF: 170.04032617478205
Iteration: 18, Func. Count: 149, Neg. LLF: 170.03981729261935
Iteration: 19, Func. Count: 157, Neg. LLF: 170.03934162796025
Iteration: 20, Func. Count: 165, Neg. LLF: 170.03907219989645
Iteration: 21, Func. Count: 173, Neg. LLF: 170.03900620189927
Iteration: 22, Func. Count: 181, Neg. LLF: 170.03900124455038
Iteration: 23, Func. Count: 188, Neg. LLF: 170.0390013077887
Optimization terminated successfully (Exit mode 0)
Current function value: 170.03900124455038
Iterations: 23
Function evaluations: 188
Gradient evaluations: 23
Iteration: 1, Func. Count: 10, Neg. LLF: 174.0959622773519
Iteration: 2, Func. Count: 20, Neg. LLF: 175.299042275035
Iteration: 3, Func. Count: 30, Neg. LLF: 174.2421221028766
Iteration: 4, Func. Count: 40, Neg. LLF: 172.59085350389427
Iteration: 5, Func. Count: 50, Neg. LLF: 170.95640233141563
Iteration: 6, Func. Count: 60, Neg. LLF: 170.1936299981103
Iteration: 7, Func. Count: 69, Neg. LLF: 170.18275026331463
Iteration: 8, Func. Count: 78, Neg. LLF: 170.1745899132475
Iteration: 9, Func. Count: 87, Neg. LLF: 170.16506012507762
Iteration: 10, Func. Count: 96, Neg. LLF: 170.13302113419184
Iteration: 11, Func. Count: 105, Neg. LLF: 170.06865923830986
Iteration: 12, Func. Count: 114, Neg. LLF: 170.0417558940162
Iteration: 13, Func. Count: 123, Neg. LLF: 170.00849661975934
Iteration: 14, Func. Count: 132, Neg. LLF: 169.99667832630107
Iteration: 15, Func. Count: 141, Neg. LLF: 169.99119412209382
Iteration: 16, Func. Count: 150, Neg. LLF: 169.9898423615477
Iteration: 17, Func. Count: 159, Neg. LLF: 169.98979804180067
Iteration: 18, Func. Count: 168, Neg. LLF: 169.98979003986645
Iteration: 19, Func. Count: 176, Neg. LLF: 169.9897900398202
Optimization terminated successfully (Exit mode 0)
Current function value: 169.98979003986645
Iterations: 19
Function evaluations: 176
Gradient evaluations: 19
Iteration: 1, Func. Count: 11, Neg. LLF: 172.91438969083637
Iteration: 2, Func. Count: 21, Neg. LLF: 171.3130326614615
Iteration: 3, Func. Count: 31, Neg. LLF: 194.99875391604252
Iteration: 4, Func. Count: 42, Neg. LLF: 177.9052149014802
Iteration: 5, Func. Count: 53, Neg. LLF: 176.1195120832171
Iteration: 6, Func. Count: 64, Neg. LLF: 170.7018289490177
Iteration: 7, Func. Count: 75, Neg. LLF: 173.89033592263382
Iteration: 8, Func. Count: 86, Neg. LLF: 170.3417472454087
Iteration: 9, Func. Count: 96, Neg. LLF: 170.22923174282354
Iteration: 10, Func. Count: 106, Neg. LLF: 170.18835803917713
Iteration: 11, Func. Count: 116, Neg. LLF: 170.13891716815186
Iteration: 12, Func. Count: 126, Neg. LLF: 170.1152952140405
Iteration: 13, Func. Count: 136, Neg. LLF: 170.1106462211143
Iteration: 14, Func. Count: 146, Neg. LLF: 170.1028276314443
Iteration: 15, Func. Count: 156, Neg. LLF: 170.08242969427135
Iteration: 16, Func. Count: 166, Neg. LLF: 170.03804536472632
Iteration: 17, Func. Count: 176, Neg. LLF: 170.00633672525828
Iteration: 18, Func. Count: 186, Neg. LLF: 169.99489197409352
Iteration: 19, Func. Count: 196, Neg. LLF: 169.9906462422312
Iteration: 20, Func. Count: 206, Neg. LLF: 169.98980532898887
Iteration: 21, Func. Count: 216, Neg. LLF: 169.98979122799423
Iteration: 22, Func. Count: 226, Neg. LLF: 169.989789976419
Iteration: 23, Func. Count: 235, Neg. LLF: 169.98979002637995
Optimization terminated successfully (Exit mode 0)
Current function value: 169.989789976419
Iterations: 23
Function evaluations: 235
Gradient evaluations: 23
Iteration: 1, Func. Count: 8, Neg. LLF: 174.09712530300493
Iteration: 2, Func. Count: 17, Neg. LLF: 184.01286921672542
Iteration: 3, Func. Count: 26, Neg. LLF: 170.26105543145715
Iteration: 4, Func. Count: 33, Neg. LLF: 170.23853620109855
Iteration: 5, Func. Count: 40, Neg. LLF: 170.20775024745365
Iteration: 6, Func. Count: 47, Neg. LLF: 170.19938599039696
Iteration: 7, Func. Count: 54, Neg. LLF: 170.18151334643315
Iteration: 8, Func. Count: 61, Neg. LLF: 170.13870427028624
Iteration: 9, Func. Count: 68, Neg. LLF: 170.10286500178168
Iteration: 10, Func. Count: 75, Neg. LLF: 170.06177896977005
Iteration: 11, Func. Count: 82, Neg. LLF: 170.04326459693524
Iteration: 12, Func. Count: 89, Neg. LLF: 170.03945852822895
Iteration: 13, Func. Count: 96, Neg. LLF: 170.03908549178013
Iteration: 14, Func. Count: 103, Neg. LLF: 170.03900507729313
Iteration: 15, Func. Count: 110, Neg. LLF: 170.03900126316884
Iteration: 16, Func. Count: 116, Neg. LLF: 170.03900131192978
Optimization terminated successfully (Exit mode 0)
Current function value: 170.03900126316884
Iterations: 16
Function evaluations: 116
Gradient evaluations: 16
Iteration: 1, Func. Count: 9, Neg. LLF: 7446.175671168355
Iteration: 2, Func. Count: 19, Neg. LLF: 182.3954644408355
Iteration: 3, Func. Count: 29, Neg. LLF: 174.35206523786778
Iteration: 4, Func. Count: 38, Neg. LLF: 172.50061478207604
Iteration: 5, Func. Count: 46, Neg. LLF: 172.7849354856568
Iteration: 6, Func. Count: 55, Neg. LLF: 172.18697382391818
Iteration: 7, Func. Count: 63, Neg. LLF: 172.16990929940587
Iteration: 8, Func. Count: 71, Neg. LLF: 172.15548139999024
Iteration: 9, Func. Count: 79, Neg. LLF: 172.15227556885003
Iteration: 10, Func. Count: 87, Neg. LLF: 172.15220035021304
Iteration: 11, Func. Count: 94, Neg. LLF: 172.1522003503177
Optimization terminated successfully (Exit mode 0)
Current function value: 172.15220035021304
Iterations: 11
Function evaluations: 94
Gradient evaluations: 11
Iteration: 1, Func. Count: 10, Neg. LLF: 371.73946880083946
Iteration: 2, Func. Count: 20, Neg. LLF: 330.2748965623377
Iteration: 3, Func. Count: 30, Neg. LLF: 180.70895626874406
Iteration: 4, Func. Count: 40, Neg. LLF: 173.39569287048977
Iteration: 5, Func. Count: 50, Neg. LLF: 172.436744012383
Iteration: 6, Func. Count: 59, Neg. LLF: 172.37809798238115
Iteration: 7, Func. Count: 68, Neg. LLF: 172.30765185487348
Iteration: 8, Func. Count: 77, Neg. LLF: 171.83786298717249
Iteration: 9, Func. Count: 86, Neg. LLF: 171.31915319281484
Iteration: 10, Func. Count: 95, Neg. LLF: 170.87986945057787
Iteration: 11, Func. Count: 104, Neg. LLF: 170.69168633943949
Iteration: 12, Func. Count: 113, Neg. LLF: 170.42699884133245
Iteration: 13, Func. Count: 122, Neg. LLF: 170.23213617162057
Iteration: 14, Func. Count: 131, Neg. LLF: 170.1420195057561
Iteration: 15, Func. Count: 140, Neg. LLF: 170.08136771210346
Iteration: 16, Func. Count: 149, Neg. LLF: 170.06362032579017
Iteration: 17, Func. Count: 158, Neg. LLF: 170.0534170548397
Iteration: 18, Func. Count: 167, Neg. LLF: 170.0455869293186
Iteration: 19, Func. Count: 176, Neg. LLF: 170.04125825388826
Iteration: 20, Func. Count: 185, Neg. LLF: 170.03956048992438
Iteration: 21, Func. Count: 194, Neg. LLF: 170.03906742914748
Iteration: 22, Func. Count: 203, Neg. LLF: 170.03900539799596
Iteration: 23, Func. Count: 212, Neg. LLF: 170.03900137197883
Iteration: 24, Func. Count: 220, Neg. LLF: 170.03900143520366
Optimization terminated successfully (Exit mode 0)
Current function value: 170.03900137197883
Iterations: 24
Function evaluations: 220
Gradient evaluations: 24
Iteration: 1, Func. Count: 11, Neg. LLF: 173.2572633699656
Iteration: 2, Func. Count: 21, Neg. LLF: 172.3713977537946
Iteration: 3, Func. Count: 31, Neg. LLF: 173.6585974363616
Iteration: 4, Func. Count: 42, Neg. LLF: 181.2968492689552
Iteration: 5, Func. Count: 53, Neg. LLF: 195.67590217602594
Iteration: 6, Func. Count: 64, Neg. LLF: 184.41174591536463
Iteration: 7, Func. Count: 75, Neg. LLF: 183.76563896656418
Iteration: 8, Func. Count: 86, Neg. LLF: 184.1134539271164
Iteration: 9, Func. Count: 97, Neg. LLF: 178.44207912835438
Iteration: 10, Func. Count: 108, Neg. LLF: 170.8594506767718
Iteration: 11, Func. Count: 119, Neg. LLF: 170.18118310850338
Iteration: 12, Func. Count: 129, Neg. LLF: 170.15875781261025
Iteration: 13, Func. Count: 139, Neg. LLF: 170.14772296248614
Iteration: 14, Func. Count: 149, Neg. LLF: 170.13639392510132
Iteration: 15, Func. Count: 159, Neg. LLF: 170.12074984610967
Iteration: 16, Func. Count: 169, Neg. LLF: 170.1151412308425
Iteration: 17, Func. Count: 179, Neg. LLF: 170.10554400159626
Iteration: 18, Func. Count: 189, Neg. LLF: 170.08978700448725
Iteration: 19, Func. Count: 199, Neg. LLF: 170.05020143456017
Iteration: 20, Func. Count: 209, Neg. LLF: 170.0112123577686
Iteration: 21, Func. Count: 219, Neg. LLF: 169.99904026145884
Iteration: 22, Func. Count: 229, Neg. LLF: 169.9901619039074
Iteration: 23, Func. Count: 239, Neg. LLF: 169.98984607421806
Iteration: 24, Func. Count: 249, Neg. LLF: 169.98979337580926
Iteration: 25, Func. Count: 259, Neg. LLF: 169.9897899723636
Iteration: 26, Func. Count: 268, Neg. LLF: 169.98978997236065
Optimization terminated successfully (Exit mode 0)
Current function value: 169.9897899723636
Iterations: 26
Function evaluations: 268
Gradient evaluations: 26
Iteration: 1, Func. Count: 12, Neg. LLF: 172.7463407040031
Iteration: 2, Func. Count: 23, Neg. LLF: 171.88629734817223
Iteration: 3, Func. Count: 34, Neg. LLF: 205.26130741669147
Iteration: 4, Func. Count: 46, Neg. LLF: 197.19513233183963
Iteration: 5, Func. Count: 58, Neg. LLF: 197.581742488111
Iteration: 6, Func. Count: 70, Neg. LLF: 196.49659047695124
Iteration: 7, Func. Count: 82, Neg. LLF: 180.31032427013417
Iteration: 8, Func. Count: 94, Neg. LLF: 174.08042536205
Iteration: 9, Func. Count: 106, Neg. LLF: 170.40479008569798
Iteration: 10, Func. Count: 118, Neg. LLF: 170.42031198729276
Iteration: 11, Func. Count: 130, Neg. LLF: 170.168611852859
Iteration: 12, Func. Count: 141, Neg. LLF: 170.16389367053048
Iteration: 13, Func. Count: 152, Neg. LLF: 170.13999903823003
Iteration: 14, Func. Count: 163, Neg. LLF: 170.1173412426831
Iteration: 15, Func. Count: 174, Neg. LLF: 170.0675165274322
Iteration: 16, Func. Count: 185, Neg. LLF: 170.0180572470526
Iteration: 17, Func. Count: 196, Neg. LLF: 169.9942317644035
Iteration: 18, Func. Count: 207, Neg. LLF: 169.9916346478604
Iteration: 19, Func. Count: 218, Neg. LLF: 169.98983135175718
Iteration: 20, Func. Count: 229, Neg. LLF: 169.9897914243689
Iteration: 21, Func. Count: 240, Neg. LLF: 169.9897900466623
Iteration: 22, Func. Count: 250, Neg. LLF: 169.98979009661716
Optimization terminated successfully (Exit mode 0)
Current function value: 169.9897900466623
Iterations: 22
Function evaluations: 250
Gradient evaluations: 22
Iteration: 1, Func. Count: 5, Neg. LLF: 184.1532390989719
Iteration: 2, Func. Count: 10, Neg. LLF: 182.71777562333338
Iteration: 3, Func. Count: 14, Neg. LLF: 182.51719168763654
Iteration: 4, Func. Count: 18, Neg. LLF: 182.28636606041732
Iteration: 5, Func. Count: 22, Neg. LLF: 181.2252042759693
Iteration: 6, Func. Count: 26, Neg. LLF: 180.27134710329943
Iteration: 7, Func. Count: 30, Neg. LLF: 179.86639228453896
Iteration: 8, Func. Count: 34, Neg. LLF: 179.50157697606662
Iteration: 9, Func. Count: 38, Neg. LLF: 179.5062845139183
Iteration: 10, Func. Count: 43, Neg. LLF: 179.44303369284196
Iteration: 11, Func. Count: 47, Neg. LLF: 179.44133009134478
Iteration: 12, Func. Count: 51, Neg. LLF: 179.44132441221376
Iteration: 13, Func. Count: 55, Neg. LLF: 179.4413237945231
Optimization terminated successfully (Exit mode 0)
Current function value: 179.4413237945231
Iterations: 13
Function evaluations: 55
Gradient evaluations: 13
Iteration: 1, Func. Count: 6, Neg. LLF: 1759.7452526591085
Iteration: 2, Func. Count: 13, Neg. LLF: 175.3282724636237
Iteration: 3, Func. Count: 19, Neg. LLF: 173.50069235660897
Iteration: 4, Func. Count: 25, Neg. LLF: 173.35653816978075
Iteration: 5, Func. Count: 30, Neg. LLF: 173.35513742399672
Iteration: 6, Func. Count: 35, Neg. LLF: 173.35032876967398
Iteration: 7, Func. Count: 40, Neg. LLF: 173.3466914222813
Iteration: 8, Func. Count: 45, Neg. LLF: 173.3450812231063
Iteration: 9, Func. Count: 50, Neg. LLF: 173.34488186774237
Iteration: 10, Func. Count: 55, Neg. LLF: 173.3448778953587
Iteration: 11, Func. Count: 59, Neg. LLF: 173.34487789061214
Optimization terminated successfully (Exit mode 0)
Current function value: 173.3448778953587
Iterations: 11
Function evaluations: 59
Gradient evaluations: 11
Iteration: 1, Func. Count: 7, Neg. LLF: 1822.9304706293335
Iteration: 2, Func. Count: 15, Neg. LLF: 175.3261100574369
Iteration: 3, Func. Count: 22, Neg. LLF: 173.3799195492158
Iteration: 4, Func. Count: 28, Neg. LLF: 173.39079611773457
Iteration: 5, Func. Count: 35, Neg. LLF: 173.36307127062784
Iteration: 6, Func. Count: 41, Neg. LLF: 173.3546557389393
Iteration: 7, Func. Count: 47, Neg. LLF: 173.34522979574677
Iteration: 8, Func. Count: 53, Neg. LLF: 173.34490418212656
Iteration: 9, Func. Count: 59, Neg. LLF: 173.34487783333074
Iteration: 10, Func. Count: 64, Neg. LLF: 173.34487789225722
Optimization terminated successfully (Exit mode 0)
Current function value: 173.34487783333074
Iterations: 10
Function evaluations: 64
Gradient evaluations: 10
Iteration: 1, Func. Count: 8, Neg. LLF: 1892.2904445000204
Iteration: 2, Func. Count: 17, Neg. LLF: 259.9856202942175
Iteration: 3, Func. Count: 25, Neg. LLF: 176.06917777217978
Iteration: 4, Func. Count: 33, Neg. LLF: 173.4015830251239
Iteration: 5, Func. Count: 40, Neg. LLF: 173.8543537986308
Iteration: 6, Func. Count: 48, Neg. LLF: 173.37197922095865
Iteration: 7, Func. Count: 55, Neg. LLF: 173.3591158012837
Iteration: 8, Func. Count: 62, Neg. LLF: 173.3535584439604
Iteration: 9, Func. Count: 69, Neg. LLF: 173.34584362418462
Iteration: 10, Func. Count: 76, Neg. LLF: 173.34490684640483
Iteration: 11, Func. Count: 83, Neg. LLF: 173.34487791401796
Iteration: 12, Func. Count: 89, Neg. LLF: 173.34487795241245
Optimization terminated successfully (Exit mode 0)
Current function value: 173.34487791401796
Iterations: 12
Function evaluations: 89
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 1910.5753770655733
Iteration: 2, Func. Count: 19, Neg. LLF: 357.52257503700383
Iteration: 3, Func. Count: 28, Neg. LLF: 177.6912676989405
Iteration: 4, Func. Count: 37, Neg. LLF: 173.8551610278315
Iteration: 5, Func. Count: 45, Neg. LLF: 187.28079775498048
Iteration: 6, Func. Count: 54, Neg. LLF: 173.52988685085703
Iteration: 7, Func. Count: 62, Neg. LLF: 173.38363897615545
Iteration: 8, Func. Count: 70, Neg. LLF: 173.37069863714382
Iteration: 9, Func. Count: 78, Neg. LLF: 173.36677303949278
Iteration: 10, Func. Count: 86, Neg. LLF: 173.36551106212687
Iteration: 11, Func. Count: 94, Neg. LLF: 173.36321647552612
Iteration: 12, Func. Count: 102, Neg. LLF: 173.35809433430308
Iteration: 13, Func. Count: 110, Neg. LLF: 173.35143168914465
Iteration: 14, Func. Count: 118, Neg. LLF: 173.34623507234977
Iteration: 15, Func. Count: 126, Neg. LLF: 173.34494579253447
Iteration: 16, Func. Count: 134, Neg. LLF: 173.34488234304828
Iteration: 17, Func. Count: 142, Neg. LLF: 173.3448778457434
Iteration: 18, Func. Count: 149, Neg. LLF: 173.3448778481232
Optimization terminated successfully (Exit mode 0)
Current function value: 173.3448778457434
Iterations: 18
Function evaluations: 149
Gradient evaluations: 18
Iteration: 1, Func. Count: 6, Neg. LLF: 182.00939391287758
Iteration: 2, Func. Count: 12, Neg. LLF: 180.33768170800278
Iteration: 3, Func. Count: 17, Neg. LLF: 182.0253458038906
Iteration: 4, Func. Count: 24, Neg. LLF: 180.17198218360707
Iteration: 5, Func. Count: 29, Neg. LLF: 179.90396426087534
Iteration: 6, Func. Count: 34, Neg. LLF: 179.42809638463146
Iteration: 7, Func. Count: 39, Neg. LLF: 178.93216540259047
Iteration: 8, Func. Count: 44, Neg. LLF: 178.54360750163568
Iteration: 9, Func. Count: 49, Neg. LLF: 178.47302860343004
Iteration: 10, Func. Count: 54, Neg. LLF: 178.46299756108286
Iteration: 11, Func. Count: 59, Neg. LLF: 178.46249992939778
Iteration: 12, Func. Count: 64, Neg. LLF: 178.4624640066321
Iteration: 13, Func. Count: 69, Neg. LLF: 178.46246030097237
Iteration: 14, Func. Count: 73, Neg. LLF: 178.46246030097998
Optimization terminated successfully (Exit mode 0)
Current function value: 178.46246030097237
Iterations: 14
Function evaluations: 73
Gradient evaluations: 14
Iteration: 1, Func. Count: 7, Neg. LLF: 256.96809847542346
Iteration: 2, Func. Count: 14, Neg. LLF: 174.46255412409946
Iteration: 3, Func. Count: 21, Neg. LLF: 173.5889427172631
Iteration: 4, Func. Count: 28, Neg. LLF: 175.006118394407
Iteration: 5, Func. Count: 36, Neg. LLF: 172.70259189869475
Iteration: 6, Func. Count: 42, Neg. LLF: 172.69881669406195
Iteration: 7, Func. Count: 48, Neg. LLF: 172.68930533179469
Iteration: 8, Func. Count: 54, Neg. LLF: 172.6500390386243
Iteration: 9, Func. Count: 60, Neg. LLF: 172.55524492258417
Iteration: 10, Func. Count: 66, Neg. LLF: 172.49446846138886
Iteration: 11, Func. Count: 72, Neg. LLF: 172.47016026326398
Iteration: 12, Func. Count: 78, Neg. LLF: 172.4635823712121
Iteration: 13, Func. Count: 84, Neg. LLF: 172.45722736668998
Iteration: 14, Func. Count: 90, Neg. LLF: 172.45702049363763
Iteration: 15, Func. Count: 96, Neg. LLF: 172.45701030346413
Iteration: 16, Func. Count: 102, Neg. LLF: 172.45700941648195
Optimization terminated successfully (Exit mode 0)
Current function value: 172.45700941648195
Iterations: 16
Function evaluations: 102
Gradient evaluations: 16
Iteration: 1, Func. Count: 8, Neg. LLF: 1857.3880186185186
Iteration: 2, Func. Count: 17, Neg. LLF: 178.34794526199136
Iteration: 3, Func. Count: 25, Neg. LLF: 179.8469838014873
Iteration: 4, Func. Count: 33, Neg. LLF: 172.98612633059037
Iteration: 5, Func. Count: 40, Neg. LLF: 172.90468927502317
Iteration: 6, Func. Count: 47, Neg. LLF: 172.67511112936552
Iteration: 7, Func. Count: 54, Neg. LLF: 172.51979971550844
Iteration: 8, Func. Count: 61, Neg. LLF: 172.43857925900434
Iteration: 9, Func. Count: 68, Neg. LLF: 172.4306712204108
Iteration: 10, Func. Count: 75, Neg. LLF: 172.42911179850367
Iteration: 11, Func. Count: 82, Neg. LLF: 172.4290957696497
Iteration: 12, Func. Count: 89, Neg. LLF: 172.42909416733104
Iteration: 13, Func. Count: 95, Neg. LLF: 172.42909417322943
Optimization terminated successfully (Exit mode 0)
Current function value: 172.42909416733104
Iterations: 13
Function evaluations: 95
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 174.18851257656817
Iteration: 2, Func. Count: 17, Neg. LLF: 184.64984791030287
Iteration: 3, Func. Count: 26, Neg. LLF: 245.4358420983476
Iteration: 4, Func. Count: 35, Neg. LLF: 176.55045081690702
Iteration: 5, Func. Count: 44, Neg. LLF: 175.54526748213985
Iteration: 6, Func. Count: 53, Neg. LLF: 173.1041316379565
Iteration: 7, Func. Count: 61, Neg. LLF: 172.9070556880783
Iteration: 8, Func. Count: 69, Neg. LLF: 172.78425871504837
Iteration: 9, Func. Count: 77, Neg. LLF: 172.65274848601703
Iteration: 10, Func. Count: 85, Neg. LLF: 172.4494929316572
Iteration: 11, Func. Count: 93, Neg. LLF: 172.4324584498928
Iteration: 12, Func. Count: 101, Neg. LLF: 172.42641245333343
Iteration: 13, Func. Count: 109, Neg. LLF: 172.41951992862877
Iteration: 14, Func. Count: 117, Neg. LLF: 172.4191842006892
Iteration: 15, Func. Count: 125, Neg. LLF: 172.4191263328344
Iteration: 16, Func. Count: 133, Neg. LLF: 172.41912521339935
Iteration: 17, Func. Count: 140, Neg. LLF: 172.4191252136075
Optimization terminated successfully (Exit mode 0)
Current function value: 172.41912521339935
Iterations: 17
Function evaluations: 140
Gradient evaluations: 17
Iteration: 1, Func. Count: 10, Neg. LLF: 335.5686253494329
Iteration: 2, Func. Count: 20, Neg. LLF: 182.6823341918184
Iteration: 3, Func. Count: 30, Neg. LLF: 188.1698069365703
Iteration: 4, Func. Count: 40, Neg. LLF: 173.41525468969635
Iteration: 5, Func. Count: 49, Neg. LLF: 178.85984504748043
Iteration: 6, Func. Count: 59, Neg. LLF: 220.9761719921989
Iteration: 7, Func. Count: 69, Neg. LLF: 215.73465460129756
Iteration: 8, Func. Count: 79, Neg. LLF: 176.88054367869032
Iteration: 9, Func. Count: 89, Neg. LLF: 172.86896985703194
Iteration: 10, Func. Count: 99, Neg. LLF: 172.38417132340626
Iteration: 11, Func. Count: 108, Neg. LLF: 172.30730914535204
Iteration: 12, Func. Count: 117, Neg. LLF: 172.2739878595628
Iteration: 13, Func. Count: 126, Neg. LLF: 172.24893759296046
Iteration: 14, Func. Count: 135, Neg. LLF: 172.24597642188147
Iteration: 15, Func. Count: 144, Neg. LLF: 172.24518751254178
Iteration: 16, Func. Count: 153, Neg. LLF: 172.24517517609922
Iteration: 17, Func. Count: 162, Neg. LLF: 172.24517443290048
Optimization terminated successfully (Exit mode 0)
Current function value: 172.24517443290048
Iterations: 17
Function evaluations: 162
Gradient evaluations: 17
Iteration: 1, Func. Count: 7, Neg. LLF: 185.3403098980042
Iteration: 2, Func. Count: 15, Neg. LLF: 175.61012044332494
Iteration: 3, Func. Count: 22, Neg. LLF: 173.65523704517756
Iteration: 4, Func. Count: 28, Neg. LLF: 173.58213554718293
Iteration: 5, Func. Count: 34, Neg. LLF: 173.55268412300796
Iteration: 6, Func. Count: 40, Neg. LLF: 173.53602840089934
Iteration: 7, Func. Count: 46, Neg. LLF: 173.5303749432072
Iteration: 8, Func. Count: 52, Neg. LLF: 173.512219199304
Iteration: 9, Func. Count: 58, Neg. LLF: 173.49071683595704
Iteration: 10, Func. Count: 64, Neg. LLF: 173.44455970294894
Iteration: 11, Func. Count: 70, Neg. LLF: 173.40865729232377
Iteration: 12, Func. Count: 76, Neg. LLF: 173.3910401541258
Iteration: 13, Func. Count: 82, Neg. LLF: 173.38746988770453
Iteration: 14, Func. Count: 88, Neg. LLF: 173.38674085843405
Iteration: 15, Func. Count: 94, Neg. LLF: 173.38649578437355
Iteration: 16, Func. Count: 100, Neg. LLF: 173.38648331910656
Iteration: 17, Func. Count: 105, Neg. LLF: 173.38648331909508
Optimization terminated successfully (Exit mode 0)
Current function value: 173.38648331910656
Iterations: 17
Function evaluations: 105
Gradient evaluations: 17
Iteration: 1, Func. Count: 8, Neg. LLF: 279.6877859917246
Iteration: 2, Func. Count: 16, Neg. LLF: 332.39265136294426
Iteration: 3, Func. Count: 25, Neg. LLF: 176.41831894094597
Iteration: 4, Func. Count: 33, Neg. LLF: 171.7607358839346
Iteration: 5, Func. Count: 40, Neg. LLF: 171.7256786506257
Iteration: 6, Func. Count: 47, Neg. LLF: 171.69273879285095
Iteration: 7, Func. Count: 54, Neg. LLF: 171.68903451329538
Iteration: 8, Func. Count: 61, Neg. LLF: 171.686431485728
Iteration: 9, Func. Count: 68, Neg. LLF: 171.68607553789323
Iteration: 10, Func. Count: 75, Neg. LLF: 171.6854058305307
Iteration: 11, Func. Count: 82, Neg. LLF: 171.683673368336
Iteration: 12, Func. Count: 89, Neg. LLF: 171.67964363609678
Iteration: 13, Func. Count: 96, Neg. LLF: 171.67058037862722
Iteration: 14, Func. Count: 103, Neg. LLF: 171.6481855785511
Iteration: 15, Func. Count: 110, Neg. LLF: 171.59134424504433
Iteration: 16, Func. Count: 117, Neg. LLF: 171.57982101132765
Iteration: 17, Func. Count: 124, Neg. LLF: 171.5629275492043
Iteration: 18, Func. Count: 131, Neg. LLF: 171.56021215279256
Iteration: 19, Func. Count: 138, Neg. LLF: 171.55990902424475
Iteration: 20, Func. Count: 145, Neg. LLF: 171.5598963169345
Iteration: 21, Func. Count: 152, Neg. LLF: 171.5598953272254
Optimization terminated successfully (Exit mode 0)
Current function value: 171.5598953272254
Iterations: 21
Function evaluations: 152
Gradient evaluations: 21
Iteration: 1, Func. Count: 9, Neg. LLF: 837.5534863939276
Iteration: 2, Func. Count: 18, Neg. LLF: 174.46525177185586
Iteration: 3, Func. Count: 27, Neg. LLF: 210.0359722476932
Iteration: 4, Func. Count: 36, Neg. LLF: 178.78348017786877
Iteration: 5, Func. Count: 45, Neg. LLF: 171.94724118448357
Iteration: 6, Func. Count: 53, Neg. LLF: 171.95776727066374
Iteration: 7, Func. Count: 62, Neg. LLF: 171.87506716662296
Iteration: 8, Func. Count: 70, Neg. LLF: 171.8622215641371
Iteration: 9, Func. Count: 79, Neg. LLF: 171.81673294792895
Iteration: 10, Func. Count: 87, Neg. LLF: 171.7747127646998
Iteration: 11, Func. Count: 95, Neg. LLF: 171.7466117759016
Iteration: 12, Func. Count: 103, Neg. LLF: 171.7371489473078
Iteration: 13, Func. Count: 111, Neg. LLF: 171.7313376604786
Iteration: 14, Func. Count: 119, Neg. LLF: 171.7257219429477
Iteration: 15, Func. Count: 127, Neg. LLF: 171.7166959849491
Iteration: 16, Func. Count: 135, Neg. LLF: 171.7013014547437
Iteration: 17, Func. Count: 143, Neg. LLF: 171.67336016874015
Iteration: 18, Func. Count: 151, Neg. LLF: 171.61685237042906
Iteration: 19, Func. Count: 159, Neg. LLF: 171.58263581036442
Iteration: 20, Func. Count: 167, Neg. LLF: 171.5647656613739
Iteration: 21, Func. Count: 175, Neg. LLF: 171.56158694891352
Iteration: 22, Func. Count: 183, Neg. LLF: 171.5603306280532
Iteration: 23, Func. Count: 191, Neg. LLF: 171.5600179716785
Iteration: 24, Func. Count: 199, Neg. LLF: 171.5599171208469
Iteration: 25, Func. Count: 207, Neg. LLF: 171.55990098794368
Iteration: 26, Func. Count: 215, Neg. LLF: 171.5598961119824
Iteration: 27, Func. Count: 223, Neg. LLF: 171.5598952483073
Optimization terminated successfully (Exit mode 0)
Current function value: 171.5598952483073
Iterations: 27
Function evaluations: 223
Gradient evaluations: 27
Iteration: 1, Func. Count: 10, Neg. LLF: 972.9356818488493
Iteration: 2, Func. Count: 20, Neg. LLF: 174.2253718160407
Iteration: 3, Func. Count: 30, Neg. LLF: 193.8574881506238
Iteration: 4, Func. Count: 40, Neg. LLF: 175.91992609259094
Iteration: 5, Func. Count: 50, Neg. LLF: 171.81449945257907
Iteration: 6, Func. Count: 59, Neg. LLF: 172.05488965232234
Iteration: 7, Func. Count: 69, Neg. LLF: 173.09146005369462
Iteration: 8, Func. Count: 79, Neg. LLF: 171.67050091920197
Iteration: 9, Func. Count: 89, Neg. LLF: 171.27101479782627
Iteration: 10, Func. Count: 98, Neg. LLF: 171.17161860491404
Iteration: 11, Func. Count: 107, Neg. LLF: 171.1570526588685
Iteration: 12, Func. Count: 116, Neg. LLF: 171.14548025345115
Iteration: 13, Func. Count: 125, Neg. LLF: 171.13770367555824
Iteration: 14, Func. Count: 134, Neg. LLF: 171.1368657659496
Iteration: 15, Func. Count: 143, Neg. LLF: 171.13679740965526
Iteration: 16, Func. Count: 152, Neg. LLF: 171.13679603559498
Iteration: 17, Func. Count: 160, Neg. LLF: 171.1367960355408
Optimization terminated successfully (Exit mode 0)
Current function value: 171.13679603559498
Iterations: 17
Function evaluations: 160
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 1036.1861452494852
Iteration: 2, Func. Count: 22, Neg. LLF: 510.2427111094356
Iteration: 3, Func. Count: 33, Neg. LLF: 173.15018459092119
Iteration: 4, Func. Count: 44, Neg. LLF: 171.60788316424774
Iteration: 5, Func. Count: 54, Neg. LLF: 174.60106832605334
Iteration: 6, Func. Count: 65, Neg. LLF: 171.49488629207053
Iteration: 7, Func. Count: 75, Neg. LLF: 171.40379903223172
Iteration: 8, Func. Count: 85, Neg. LLF: 171.30831277211848
Iteration: 9, Func. Count: 95, Neg. LLF: 171.28916800114004
Iteration: 10, Func. Count: 105, Neg. LLF: 171.28506561125766
Iteration: 11, Func. Count: 115, Neg. LLF: 171.28330628659506
Iteration: 12, Func. Count: 125, Neg. LLF: 171.28322520373058
Iteration: 13, Func. Count: 135, Neg. LLF: 171.28322244885237
Iteration: 14, Func. Count: 144, Neg. LLF: 171.28322244885376
Optimization terminated successfully (Exit mode 0)
Current function value: 171.28322244885237
Iterations: 14
Function evaluations: 144
Gradient evaluations: 14
Iteration: 1, Func. Count: 8, Neg. LLF: 174.0587458310408
Iteration: 2, Func. Count: 17, Neg. LLF: 184.1404327777634
Iteration: 3, Func. Count: 25, Neg. LLF: 170.52921047449288
Iteration: 4, Func. Count: 32, Neg. LLF: 170.34557995149603
Iteration: 5, Func. Count: 39, Neg. LLF: 170.26876509655608
Iteration: 6, Func. Count: 46, Neg. LLF: 170.2251643676235
Iteration: 7, Func. Count: 53, Neg. LLF: 170.203145129619
Iteration: 8, Func. Count: 60, Neg. LLF: 170.19344414407666
Iteration: 9, Func. Count: 67, Neg. LLF: 170.1767683454965
Iteration: 10, Func. Count: 74, Neg. LLF: 170.16452124809192
Iteration: 11, Func. Count: 81, Neg. LLF: 170.0981902040833
Iteration: 12, Func. Count: 88, Neg. LLF: 170.0452866719742
Iteration: 13, Func. Count: 95, Neg. LLF: 170.03991413655334
Iteration: 14, Func. Count: 102, Neg. LLF: 170.03900302064037
Iteration: 15, Func. Count: 109, Neg. LLF: 170.03900115499061
Iteration: 16, Func. Count: 115, Neg. LLF: 170.03900115498695
Optimization terminated successfully (Exit mode 0)
Current function value: 170.03900115499061
Iterations: 16
Function evaluations: 115
Gradient evaluations: 16
Iteration: 1, Func. Count: 9, Neg. LLF: 279.7051632960486
Iteration: 2, Func. Count: 18, Neg. LLF: 318.65269556249376
Iteration: 3, Func. Count: 28, Neg. LLF: 183.16906246810268
Iteration: 4, Func. Count: 37, Neg. LLF: 171.61420272414222
Iteration: 5, Func. Count: 45, Neg. LLF: 171.7654092970107
Iteration: 6, Func. Count: 54, Neg. LLF: 171.32740673588933
Iteration: 7, Func. Count: 62, Neg. LLF: 171.32068945196664
Iteration: 8, Func. Count: 70, Neg. LLF: 171.3084440112884
Iteration: 9, Func. Count: 78, Neg. LLF: 171.30237486233597
Iteration: 10, Func. Count: 86, Neg. LLF: 171.28654354393768
Iteration: 11, Func. Count: 94, Neg. LLF: 171.25498385491923
Iteration: 12, Func. Count: 102, Neg. LLF: 171.1815874429005
Iteration: 13, Func. Count: 110, Neg. LLF: 171.03023744512728
Iteration: 14, Func. Count: 118, Neg. LLF: 170.22830643093124
Iteration: 15, Func. Count: 126, Neg. LLF: 170.09390236418
Iteration: 16, Func. Count: 134, Neg. LLF: 170.0508778379084
Iteration: 17, Func. Count: 142, Neg. LLF: 170.0446785595284
Iteration: 18, Func. Count: 150, Neg. LLF: 170.039770676283
Iteration: 19, Func. Count: 158, Neg. LLF: 170.03946385806424
Iteration: 20, Func. Count: 166, Neg. LLF: 170.03900495466334
Iteration: 21, Func. Count: 174, Neg. LLF: 170.0390014452582
Iteration: 22, Func. Count: 181, Neg. LLF: 170.03900147290187
Optimization terminated successfully (Exit mode 0)
Current function value: 170.0390014452582
Iterations: 22
Function evaluations: 181
Gradient evaluations: 22
Iteration: 1, Func. Count: 10, Neg. LLF: 279.4300177834519
Iteration: 2, Func. Count: 20, Neg. LLF: 284.84850199374813
Iteration: 3, Func. Count: 31, Neg. LLF: 178.06349850399505
Iteration: 4, Func. Count: 41, Neg. LLF: 172.15296253393316
Iteration: 5, Func. Count: 50, Neg. LLF: 171.4125473049804
Iteration: 6, Func. Count: 59, Neg. LLF: 171.39661071286395
Iteration: 7, Func. Count: 69, Neg. LLF: 171.31564948634588
Iteration: 8, Func. Count: 78, Neg. LLF: 171.30282431853522
Iteration: 9, Func. Count: 87, Neg. LLF: 171.29673956422334
Iteration: 10, Func. Count: 96, Neg. LLF: 171.28654092026704
Iteration: 11, Func. Count: 105, Neg. LLF: 171.26202612799304
Iteration: 12, Func. Count: 114, Neg. LLF: 171.21158192124403
Iteration: 13, Func. Count: 123, Neg. LLF: 171.12376976178896
Iteration: 14, Func. Count: 132, Neg. LLF: 170.8945346862553
Iteration: 15, Func. Count: 141, Neg. LLF: 170.33744869105803
Iteration: 16, Func. Count: 150, Neg. LLF: 170.1481844967704
Iteration: 17, Func. Count: 159, Neg. LLF: 170.10158274025906
Iteration: 18, Func. Count: 168, Neg. LLF: 170.06678705179567
Iteration: 19, Func. Count: 177, Neg. LLF: 170.053328958231
Iteration: 20, Func. Count: 186, Neg. LLF: 170.04121343615216
Iteration: 21, Func. Count: 195, Neg. LLF: 170.03947005129936
Iteration: 22, Func. Count: 204, Neg. LLF: 170.0390928561163
Iteration: 23, Func. Count: 213, Neg. LLF: 170.03903893918726
Iteration: 24, Func. Count: 222, Neg. LLF: 170.0390020158732
Iteration: 25, Func. Count: 231, Neg. LLF: 170.03900117289072
Optimization terminated successfully (Exit mode 0)
Current function value: 170.03900117289072
Iterations: 25
Function evaluations: 231
Gradient evaluations: 25
Iteration: 1, Func. Count: 11, Neg. LLF: 977.9458278527238
Iteration: 2, Func. Count: 22, Neg. LLF: 192.18827446903643
Iteration: 3, Func. Count: 33, Neg. LLF: 173.56019537169755
Iteration: 4, Func. Count: 44, Neg. LLF: 172.06651060545533
Iteration: 5, Func. Count: 54, Neg. LLF: 170.76211920980995
Iteration: 6, Func. Count: 64, Neg. LLF: 173.99979776001848
Iteration: 7, Func. Count: 76, Neg. LLF: 170.13453444584613
Iteration: 8, Func. Count: 86, Neg. LLF: 170.1470892625963
Iteration: 9, Func. Count: 97, Neg. LLF: 169.96640588932016
Iteration: 10, Func. Count: 107, Neg. LLF: 169.94884714811317
Iteration: 11, Func. Count: 117, Neg. LLF: 169.90840190535198
Iteration: 12, Func. Count: 127, Neg. LLF: 169.8634014708937
Iteration: 13, Func. Count: 137, Neg. LLF: 169.84427921290145
Iteration: 14, Func. Count: 147, Neg. LLF: 169.84091035672887
Iteration: 15, Func. Count: 157, Neg. LLF: 169.8399626399316
Iteration: 16, Func. Count: 167, Neg. LLF: 169.8398609666894
Iteration: 17, Func. Count: 177, Neg. LLF: 169.8398422119779
Iteration: 18, Func. Count: 186, Neg. LLF: 169.8398422119802
Optimization terminated successfully (Exit mode 0)
Current function value: 169.8398422119779
Iterations: 18
Function evaluations: 186
Gradient evaluations: 18
Iteration: 1, Func. Count: 12, Neg. LLF: 1036.2702087294763
Iteration: 2, Func. Count: 24, Neg. LLF: 233.57374182469619
Iteration: 3, Func. Count: 36, Neg. LLF: 173.51421352738808
Iteration: 4, Func. Count: 48, Neg. LLF: 174.11919160851863
Iteration: 5, Func. Count: 60, Neg. LLF: 175.08199364555125
Iteration: 6, Func. Count: 72, Neg. LLF: 175.92192801576437
Iteration: 7, Func. Count: 84, Neg. LLF: 171.3457298492871
Iteration: 8, Func. Count: 95, Neg. LLF: 170.86307758590576
Iteration: 9, Func. Count: 106, Neg. LLF: 171.09270097376037
Iteration: 10, Func. Count: 118, Neg. LLF: 170.75029640945343
Iteration: 11, Func. Count: 129, Neg. LLF: 170.71973234332853
Iteration: 12, Func. Count: 140, Neg. LLF: 170.65987259189944
Iteration: 13, Func. Count: 151, Neg. LLF: 170.63792578743428
Iteration: 14, Func. Count: 162, Neg. LLF: 170.62486012603162
Iteration: 15, Func. Count: 173, Neg. LLF: 170.6240196416344
Iteration: 16, Func. Count: 184, Neg. LLF: 170.6238963458333
Iteration: 17, Func. Count: 195, Neg. LLF: 170.62383494937438
Iteration: 18, Func. Count: 205, Neg. LLF: 170.62383494941213
Optimization terminated successfully (Exit mode 0)
Current function value: 170.62383494937438
Iterations: 18
Function evaluations: 205
Gradient evaluations: 18
Iteration: 1, Func. Count: 9, Neg. LLF: 174.2295153336741
Iteration: 2, Func. Count: 18, Neg. LLF: 184.60914312259985
Iteration: 3, Func. Count: 27, Neg. LLF: 170.82958795237374
Iteration: 4, Func. Count: 35, Neg. LLF: 170.62055760749652
Iteration: 5, Func. Count: 43, Neg. LLF: 170.90935231767972
Iteration: 6, Func. Count: 52, Neg. LLF: 170.28173234792064
Iteration: 7, Func. Count: 60, Neg. LLF: 170.19659378596327
Iteration: 8, Func. Count: 68, Neg. LLF: 170.18114257993355
Iteration: 9, Func. Count: 76, Neg. LLF: 170.1736968014378
Iteration: 10, Func. Count: 84, Neg. LLF: 170.16376988113063
Iteration: 11, Func. Count: 92, Neg. LLF: 170.12888896302206
Iteration: 12, Func. Count: 100, Neg. LLF: 170.08601154719975
Iteration: 13, Func. Count: 108, Neg. LLF: 170.05056572633748
Iteration: 14, Func. Count: 116, Neg. LLF: 170.03980551697296
Iteration: 15, Func. Count: 124, Neg. LLF: 170.0390130887686
Iteration: 16, Func. Count: 132, Neg. LLF: 170.03900231052143
Iteration: 17, Func. Count: 140, Neg. LLF: 170.03900115203805
Iteration: 18, Func. Count: 147, Neg. LLF: 170.0390012007968
Optimization terminated successfully (Exit mode 0)
Current function value: 170.03900115203805
Iterations: 18
Function evaluations: 147
Gradient evaluations: 18
Iteration: 1, Func. Count: 10, Neg. LLF: 279.4951820056897
Iteration: 2, Func. Count: 20, Neg. LLF: 270.49563393808126
Iteration: 3, Func. Count: 31, Neg. LLF: 185.0328039826906
Iteration: 4, Func. Count: 41, Neg. LLF: 178.7281780999145
Iteration: 5, Func. Count: 51, Neg. LLF: 171.44154411653963
Iteration: 6, Func. Count: 60, Neg. LLF: 171.34306223837484
Iteration: 7, Func. Count: 69, Neg. LLF: 171.321535707065
Iteration: 8, Func. Count: 78, Neg. LLF: 171.3151267411558
Iteration: 9, Func. Count: 87, Neg. LLF: 171.31048364921978
Iteration: 10, Func. Count: 96, Neg. LLF: 171.29640702304192
Iteration: 11, Func. Count: 105, Neg. LLF: 171.2765360192733
Iteration: 12, Func. Count: 114, Neg. LLF: 171.23605992062036
Iteration: 13, Func. Count: 123, Neg. LLF: 171.1663812261033
Iteration: 14, Func. Count: 132, Neg. LLF: 171.03947203342696
Iteration: 15, Func. Count: 141, Neg. LLF: 170.2804850797801
Iteration: 16, Func. Count: 150, Neg. LLF: 170.11569236222857
Iteration: 17, Func. Count: 159, Neg. LLF: 170.06310836134867
Iteration: 18, Func. Count: 168, Neg. LLF: 170.0460647633945
Iteration: 19, Func. Count: 177, Neg. LLF: 170.04094156307147
Iteration: 20, Func. Count: 186, Neg. LLF: 170.03953272444517
Iteration: 21, Func. Count: 195, Neg. LLF: 170.03917093529802
Iteration: 22, Func. Count: 204, Neg. LLF: 170.03904858953305
Iteration: 23, Func. Count: 213, Neg. LLF: 170.03900639914465
Iteration: 24, Func. Count: 222, Neg. LLF: 170.03900143391263
Iteration: 25, Func. Count: 230, Neg. LLF: 170.03900146155274
Optimization terminated successfully (Exit mode 0)
Current function value: 170.03900143391263
Iterations: 25
Function evaluations: 230
Gradient evaluations: 25
Iteration: 1, Func. Count: 11, Neg. LLF: 853.8350661973832
Iteration: 2, Func. Count: 22, Neg. LLF: 174.9387588427542
Iteration: 3, Func. Count: 33, Neg. LLF: 172.3436160281501
Iteration: 4, Func. Count: 43, Neg. LLF: 171.92422446815957
Iteration: 5, Func. Count: 53, Neg. LLF: 173.88958355575505
Iteration: 6, Func. Count: 65, Neg. LLF: 171.8566353150645
Iteration: 7, Func. Count: 76, Neg. LLF: 171.66488466491353
Iteration: 8, Func. Count: 86, Neg. LLF: 171.60738140206468
Iteration: 9, Func. Count: 96, Neg. LLF: 171.55062095356425
Iteration: 10, Func. Count: 106, Neg. LLF: 171.4639490035539
Iteration: 11, Func. Count: 116, Neg. LLF: 171.37808413393128
Iteration: 12, Func. Count: 126, Neg. LLF: 171.14205115893554
Iteration: 13, Func. Count: 136, Neg. LLF: 170.60994358055314
Iteration: 14, Func. Count: 146, Neg. LLF: 170.5185466409813
Iteration: 15, Func. Count: 156, Neg. LLF: 170.35033865986844
Iteration: 16, Func. Count: 166, Neg. LLF: 170.26304380096263
Iteration: 17, Func. Count: 176, Neg. LLF: 170.088914377829
Iteration: 18, Func. Count: 186, Neg. LLF: 170.0504936390252
Iteration: 19, Func. Count: 196, Neg. LLF: 170.04298597150174
Iteration: 20, Func. Count: 206, Neg. LLF: 170.04102936255578
Iteration: 21, Func. Count: 216, Neg. LLF: 170.03908219010634
Iteration: 22, Func. Count: 226, Neg. LLF: 170.0390097755664
Iteration: 23, Func. Count: 236, Neg. LLF: 170.03900123806483
Iteration: 24, Func. Count: 245, Neg. LLF: 170.03900130133056
Optimization terminated successfully (Exit mode 0)
Current function value: 170.03900123806483
Iterations: 24
Function evaluations: 245
Gradient evaluations: 24
Iteration: 1, Func. Count: 12, Neg. LLF: 966.623200786816
Iteration: 2, Func. Count: 24, Neg. LLF: 199.23805962122876
Iteration: 3, Func. Count: 36, Neg. LLF: 173.0683566712107
Iteration: 4, Func. Count: 47, Neg. LLF: 171.68168908151472
Iteration: 5, Func. Count: 58, Neg. LLF: 170.51280857244143
Iteration: 6, Func. Count: 69, Neg. LLF: 171.17816907536215
Iteration: 7, Func. Count: 82, Neg. LLF: 169.99427034639132
Iteration: 8, Func. Count: 93, Neg. LLF: 170.0134287355565
Iteration: 9, Func. Count: 105, Neg. LLF: 169.94566018309408
Iteration: 10, Func. Count: 116, Neg. LLF: 169.9236435255209
Iteration: 11, Func. Count: 127, Neg. LLF: 169.85586674877084
Iteration: 12, Func. Count: 138, Neg. LLF: 169.84692940932447
Iteration: 13, Func. Count: 149, Neg. LLF: 169.84113939709232
Iteration: 14, Func. Count: 160, Neg. LLF: 169.83994377041796
Iteration: 15, Func. Count: 171, Neg. LLF: 169.8398426359425
Iteration: 16, Func. Count: 181, Neg. LLF: 169.8398426357474
Optimization terminated successfully (Exit mode 0)
Current function value: 169.8398426359425
Iterations: 16
Function evaluations: 181
Gradient evaluations: 16
Iteration: 1, Func. Count: 13, Neg. LLF: 1023.4326999624915
Iteration: 2, Func. Count: 26, Neg. LLF: 269.1361873920946
Iteration: 3, Func. Count: 39, Neg. LLF: 173.51441879170008
Iteration: 4, Func. Count: 52, Neg. LLF: 174.6238685579113
Iteration: 5, Func. Count: 65, Neg. LLF: 178.37673843891653
Iteration: 6, Func. Count: 78, Neg. LLF: 176.82641165623596
Iteration: 7, Func. Count: 91, Neg. LLF: 171.87935767954028
Iteration: 8, Func. Count: 104, Neg. LLF: 170.87149739115955
Iteration: 9, Func. Count: 116, Neg. LLF: 170.776862161565
Iteration: 10, Func. Count: 128, Neg. LLF: 170.7443097133901
Iteration: 11, Func. Count: 140, Neg. LLF: 170.72197234484278
Iteration: 12, Func. Count: 152, Neg. LLF: 170.6450680014821
Iteration: 13, Func. Count: 164, Neg. LLF: 170.63110465693399
Iteration: 14, Func. Count: 176, Neg. LLF: 170.62462826367604
Iteration: 15, Func. Count: 188, Neg. LLF: 170.62403353406975
Iteration: 16, Func. Count: 200, Neg. LLF: 170.623908913342
Iteration: 17, Func. Count: 212, Neg. LLF: 170.62383485887918
Iteration: 18, Func. Count: 223, Neg. LLF: 170.62383485867758
Optimization terminated successfully (Exit mode 0)
Current function value: 170.62383485887918
Iterations: 18
Function evaluations: 223
Gradient evaluations: 18
Iteration: 1, Func. Count: 6, Neg. LLF: 173.74116235274383
Iteration: 2, Func. Count: 12, Neg. LLF: 174.53571468454086
Iteration: 3, Func. Count: 19, Neg. LLF: 172.0648346747021
Iteration: 4, Func. Count: 24, Neg. LLF: 172.00856947275565
Iteration: 5, Func. Count: 29, Neg. LLF: 171.88513232669501
Iteration: 6, Func. Count: 34, Neg. LLF: 171.8241045346944
Iteration: 7, Func. Count: 39, Neg. LLF: 171.4731669719205
Iteration: 8, Func. Count: 44, Neg. LLF: 170.2800444505376
Iteration: 9, Func. Count: 49, Neg. LLF: 170.14915823442382
Iteration: 10, Func. Count: 54, Neg. LLF: 170.12208511698785
Iteration: 11, Func. Count: 59, Neg. LLF: 170.09375662238926
Iteration: 12, Func. Count: 64, Neg. LLF: 170.09182729924248
Iteration: 13, Func. Count: 69, Neg. LLF: 170.09065902956763
Iteration: 14, Func. Count: 74, Neg. LLF: 170.09064057216145
Iteration: 15, Func. Count: 79, Neg. LLF: 170.09063449433194
Iteration: 16, Func. Count: 83, Neg. LLF: 170.09063449434356
Optimization terminated successfully (Exit mode 0)
Current function value: 170.09063449433194
Iterations: 16
Function evaluations: 83
Gradient evaluations: 16
Iteration: 1, Func. Count: 7, Neg. LLF: 1936.3907740221025
Iteration: 2, Func. Count: 15, Neg. LLF: 262.02630020900864
Iteration: 3, Func. Count: 22, Neg. LLF: 170.5912704451259
Iteration: 4, Func. Count: 28, Neg. LLF: 179.58979596919247
Iteration: 5, Func. Count: 35, Neg. LLF: 170.58662817199667
Iteration: 6, Func. Count: 42, Neg. LLF: 170.16985498217448
Iteration: 7, Func. Count: 49, Neg. LLF: 169.7802032749054
Iteration: 8, Func. Count: 55, Neg. LLF: 169.71355763676186
Iteration: 9, Func. Count: 61, Neg. LLF: 169.6713758133914
Iteration: 10, Func. Count: 67, Neg. LLF: 169.55574500548832
Iteration: 11, Func. Count: 73, Neg. LLF: 169.53198188333582
Iteration: 12, Func. Count: 79, Neg. LLF: 169.52859554411083
Iteration: 13, Func. Count: 85, Neg. LLF: 169.52699172969744
Iteration: 14, Func. Count: 91, Neg. LLF: 169.52471233314435
Iteration: 15, Func. Count: 97, Neg. LLF: 169.5230279093459
Iteration: 16, Func. Count: 103, Neg. LLF: 169.52234890854777
Iteration: 17, Func. Count: 109, Neg. LLF: 169.52223869160719
Iteration: 18, Func. Count: 115, Neg. LLF: 169.5222342764796
Iteration: 19, Func. Count: 120, Neg. LLF: 169.5222342764774
Optimization terminated successfully (Exit mode 0)
Current function value: 169.5222342764796
Iterations: 19
Function evaluations: 120
Gradient evaluations: 19
Iteration: 1, Func. Count: 8, Neg. LLF: 2229.634906477279
Iteration: 2, Func. Count: 17, Neg. LLF: 339.56314227861935
Iteration: 3, Func. Count: 25, Neg. LLF: 177.59545681299477
Iteration: 4, Func. Count: 33, Neg. LLF: 327.13881599668264
Iteration: 5, Func. Count: 41, Neg. LLF: 177.48071503360563
Iteration: 6, Func. Count: 49, Neg. LLF: 203.36333673473843
Iteration: 7, Func. Count: 57, Neg. LLF: 169.2724520681457
Iteration: 8, Func. Count: 64, Neg. LLF: 169.3977210149068
Iteration: 9, Func. Count: 72, Neg. LLF: 170.48347368024952
Iteration: 10, Func. Count: 80, Neg. LLF: 168.86902640623381
Iteration: 11, Func. Count: 87, Neg. LLF: 168.80469285813678
Iteration: 12, Func. Count: 94, Neg. LLF: 168.79752607345176
Iteration: 13, Func. Count: 101, Neg. LLF: 168.74898215373946
Iteration: 14, Func. Count: 108, Neg. LLF: 168.74166295213084
Iteration: 15, Func. Count: 115, Neg. LLF: 168.74051532729206
Iteration: 16, Func. Count: 122, Neg. LLF: 168.74034097869117
Iteration: 17, Func. Count: 129, Neg. LLF: 168.74029988194863
Iteration: 18, Func. Count: 136, Neg. LLF: 168.74029867843092
Iteration: 19, Func. Count: 142, Neg. LLF: 168.74029859784252
Optimization terminated successfully (Exit mode 0)
Current function value: 168.74029867843092
Iterations: 19
Function evaluations: 142
Gradient evaluations: 19
Iteration: 1, Func. Count: 9, Neg. LLF: 2320.0682026916747
Iteration: 2, Func. Count: 18, Neg. LLF: 785.0198428327776
Iteration: 3, Func. Count: 27, Neg. LLF: 174.42687204710063
Iteration: 4, Func. Count: 36, Neg. LLF: 176.18089131836564
Iteration: 5, Func. Count: 45, Neg. LLF: 891.0172264693017
Iteration: 6, Func. Count: 54, Neg. LLF: 174.78204553892664
Iteration: 7, Func. Count: 63, Neg. LLF: 171.1436351243108
Iteration: 8, Func. Count: 72, Neg. LLF: 172.44300585606038
Iteration: 9, Func. Count: 81, Neg. LLF: 169.57451331510524
Iteration: 10, Func. Count: 89, Neg. LLF: 169.51223368660385
Iteration: 11, Func. Count: 97, Neg. LLF: 169.50657036640703
Iteration: 12, Func. Count: 105, Neg. LLF: 169.5033717519992
Iteration: 13, Func. Count: 113, Neg. LLF: 169.49687724803957
Iteration: 14, Func. Count: 121, Neg. LLF: 169.48238738090683
Iteration: 15, Func. Count: 129, Neg. LLF: 169.47442281977695
Iteration: 16, Func. Count: 137, Neg. LLF: 169.47150863535194
Iteration: 17, Func. Count: 145, Neg. LLF: 169.47141970949886
Iteration: 18, Func. Count: 153, Neg. LLF: 169.4714171616265
Iteration: 19, Func. Count: 160, Neg. LLF: 169.4714171563153
Optimization terminated successfully (Exit mode 0)
Current function value: 169.4714171616265
Iterations: 19
Function evaluations: 160
Gradient evaluations: 19
Iteration: 1, Func. Count: 10, Neg. LLF: 364.9678024114683
Iteration: 2, Func. Count: 20, Neg. LLF: 195.07186832799925
Iteration: 3, Func. Count: 30, Neg. LLF: 194.30910763592544
Iteration: 4, Func. Count: 40, Neg. LLF: 172.34388990327292
Iteration: 5, Func. Count: 50, Neg. LLF: 191.8793527313623
Iteration: 6, Func. Count: 60, Neg. LLF: 171.55577761495076
Iteration: 7, Func. Count: 70, Neg. LLF: 168.17298717379768
Iteration: 8, Func. Count: 79, Neg. LLF: 168.26255366787242
Iteration: 9, Func. Count: 89, Neg. LLF: 167.67352685222573
Iteration: 10, Func. Count: 98, Neg. LLF: 167.61139739285682
Iteration: 11, Func. Count: 107, Neg. LLF: 167.26535691748143
Iteration: 12, Func. Count: 116, Neg. LLF: 167.01720506854943
Iteration: 13, Func. Count: 125, Neg. LLF: 166.88316320464537
Iteration: 14, Func. Count: 134, Neg. LLF: 166.86185249401206
Iteration: 15, Func. Count: 143, Neg. LLF: 166.8601901588778
Iteration: 16, Func. Count: 152, Neg. LLF: 166.8599500537041
Iteration: 17, Func. Count: 161, Neg. LLF: 166.85991703296506
Iteration: 18, Func. Count: 169, Neg. LLF: 166.85991702138028
Optimization terminated successfully (Exit mode 0)
Current function value: 166.85991703296506
Iterations: 18
Function evaluations: 169
Gradient evaluations: 18
Iteration: 1, Func. Count: 7, Neg. LLF: 173.73381309794874
Iteration: 2, Func. Count: 14, Neg. LLF: 172.75071940886005
Iteration: 3, Func. Count: 21, Neg. LLF: 174.55078643048242
Iteration: 4, Func. Count: 28, Neg. LLF: 171.42916774845781
Iteration: 5, Func. Count: 34, Neg. LLF: 171.327976808318
Iteration: 6, Func. Count: 40, Neg. LLF: 171.15758591102377
Iteration: 7, Func. Count: 46, Neg. LLF: 171.05426974027395
Iteration: 8, Func. Count: 52, Neg. LLF: 170.43241969247165
Iteration: 9, Func. Count: 58, Neg. LLF: 173.878143478636
Iteration: 10, Func. Count: 65, Neg. LLF: 182.2501781095174
Iteration: 11, Func. Count: 72, Neg. LLF: 169.66604977743938
Iteration: 12, Func. Count: 79, Neg. LLF: 169.11733345793579
Iteration: 13, Func. Count: 85, Neg. LLF: 169.10682925559365
Iteration: 14, Func. Count: 91, Neg. LLF: 169.10646072232396
Iteration: 15, Func. Count: 97, Neg. LLF: 169.10631585762385
Iteration: 16, Func. Count: 103, Neg. LLF: 169.10631204558052
Iteration: 17, Func. Count: 109, Neg. LLF: 169.10631134671561
Optimization terminated successfully (Exit mode 0)
Current function value: 169.10631134671561
Iterations: 17
Function evaluations: 109
Gradient evaluations: 17
Iteration: 1, Func. Count: 8, Neg. LLF: 355.2890682120932
Iteration: 2, Func. Count: 17, Neg. LLF: 184.89301607645442
Iteration: 3, Func. Count: 25, Neg. LLF: 184.91368463379035
Iteration: 4, Func. Count: 33, Neg. LLF: 184.59244175241466
Iteration: 5, Func. Count: 41, Neg. LLF: 184.38357819632205
Iteration: 6, Func. Count: 49, Neg. LLF: 184.01633716526655
Iteration: 7, Func. Count: 57, Neg. LLF: 170.72961011975622
Iteration: 8, Func. Count: 65, Neg. LLF: 173.29989370993837
Iteration: 9, Func. Count: 73, Neg. LLF: 170.4191994628243
Iteration: 10, Func. Count: 81, Neg. LLF: 169.13755022681943
Iteration: 11, Func. Count: 88, Neg. LLF: 169.00952116107524
Iteration: 12, Func. Count: 95, Neg. LLF: 168.98224371705103
Iteration: 13, Func. Count: 102, Neg. LLF: 168.9338940709025
Iteration: 14, Func. Count: 109, Neg. LLF: 168.92579249807045
Iteration: 15, Func. Count: 116, Neg. LLF: 168.92193116469932
Iteration: 16, Func. Count: 123, Neg. LLF: 168.9164585212648
Iteration: 17, Func. Count: 130, Neg. LLF: 168.89863898440598
Iteration: 18, Func. Count: 137, Neg. LLF: 168.88271280403544
Iteration: 19, Func. Count: 144, Neg. LLF: 168.87396787445965
Iteration: 20, Func. Count: 151, Neg. LLF: 168.87278440678367
Iteration: 21, Func. Count: 158, Neg. LLF: 168.8726894982894
Iteration: 22, Func. Count: 165, Neg. LLF: 168.87268841025463
Iteration: 23, Func. Count: 171, Neg. LLF: 168.87268841026489
Optimization terminated successfully (Exit mode 0)
Current function value: 168.87268841025463
Iterations: 23
Function evaluations: 171
Gradient evaluations: 23
Iteration: 1, Func. Count: 9, Neg. LLF: 248.0278923162096
Iteration: 2, Func. Count: 18, Neg. LLF: 255.94712771941357
Iteration: 3, Func. Count: 27, Neg. LLF: 194.30903574875336
Iteration: 4, Func. Count: 36, Neg. LLF: 181.81455712719753
Iteration: 5, Func. Count: 45, Neg. LLF: 178.10709973329548
Iteration: 6, Func. Count: 54, Neg. LLF: 204.2101653352422
Iteration: 7, Func. Count: 63, Neg. LLF: 181.0011854246408
Iteration: 8, Func. Count: 72, Neg. LLF: 170.26957468026245
Iteration: 9, Func. Count: 81, Neg. LLF: 169.58781699600408
Iteration: 10, Func. Count: 90, Neg. LLF: 171.93859045798612
Iteration: 11, Func. Count: 99, Neg. LLF: 168.93631860893217
Iteration: 12, Func. Count: 108, Neg. LLF: 168.5141443563816
Iteration: 13, Func. Count: 116, Neg. LLF: 168.50552819669204
Iteration: 14, Func. Count: 124, Neg. LLF: 168.4996816001037
Iteration: 15, Func. Count: 132, Neg. LLF: 168.4958683724934
Iteration: 16, Func. Count: 140, Neg. LLF: 168.49148955403518
Iteration: 17, Func. Count: 148, Neg. LLF: 168.48316099728586
Iteration: 18, Func. Count: 156, Neg. LLF: 168.47099537403614
Iteration: 19, Func. Count: 164, Neg. LLF: 168.45887946105924
Iteration: 20, Func. Count: 172, Neg. LLF: 168.45703962487102
Iteration: 21, Func. Count: 180, Neg. LLF: 168.45672415808409
Iteration: 22, Func. Count: 188, Neg. LLF: 168.4566872480647
Iteration: 23, Func. Count: 196, Neg. LLF: 168.4566843597854
Iteration: 24, Func. Count: 203, Neg. LLF: 168.45668434085238
Optimization terminated successfully (Exit mode 0)
Current function value: 168.4566843597854
Iterations: 24
Function evaluations: 203
Gradient evaluations: 24
Iteration: 1, Func. Count: 10, Neg. LLF: 1707.8660392001711
Iteration: 2, Func. Count: 21, Neg. LLF: 286.330988768345
Iteration: 3, Func. Count: 31, Neg. LLF: 248.85917050311443
Iteration: 4, Func. Count: 41, Neg. LLF: 200.88034171407452
Iteration: 5, Func. Count: 51, Neg. LLF: 238.6385500841698
Iteration: 6, Func. Count: 61, Neg. LLF: 184.15919394245208
Iteration: 7, Func. Count: 71, Neg. LLF: 181.59260433340913
Iteration: 8, Func. Count: 81, Neg. LLF: 180.58506112438306
Iteration: 9, Func. Count: 91, Neg. LLF: 171.89367334627704
Iteration: 10, Func. Count: 101, Neg. LLF: 171.23861299967686
Iteration: 11, Func. Count: 111, Neg. LLF: 170.48351658450358
Iteration: 12, Func. Count: 121, Neg. LLF: 169.99255002661613
Iteration: 13, Func. Count: 131, Neg. LLF: 168.68899072223462
Iteration: 14, Func. Count: 140, Neg. LLF: 168.9331900624454
Iteration: 15, Func. Count: 150, Neg. LLF: 169.02797793436667
Iteration: 16, Func. Count: 161, Neg. LLF: 168.54886283708015
Iteration: 17, Func. Count: 170, Neg. LLF: 168.53351240514297
Iteration: 18, Func. Count: 179, Neg. LLF: 168.5307345995843
Iteration: 19, Func. Count: 188, Neg. LLF: 168.52550910488412
Iteration: 20, Func. Count: 197, Neg. LLF: 168.52097850521923
Iteration: 21, Func. Count: 206, Neg. LLF: 168.47079601429695
Iteration: 22, Func. Count: 215, Neg. LLF: 168.46691278820822
Iteration: 23, Func. Count: 224, Neg. LLF: 168.46514503304257
Iteration: 24, Func. Count: 233, Neg. LLF: 168.46483143917288
Iteration: 25, Func. Count: 242, Neg. LLF: 168.46335759807553
Iteration: 26, Func. Count: 251, Neg. LLF: 168.4585496622884
Iteration: 27, Func. Count: 260, Neg. LLF: 168.45681766267262
Iteration: 28, Func. Count: 269, Neg. LLF: 168.45674898343322
Iteration: 29, Func. Count: 278, Neg. LLF: 168.45669668741553
Iteration: 30, Func. Count: 287, Neg. LLF: 168.456689654318
Iteration: 31, Func. Count: 296, Neg. LLF: 168.45668468907118
Iteration: 32, Func. Count: 304, Neg. LLF: 168.45668470516597
Optimization terminated successfully (Exit mode 0)
Current function value: 168.45668468907118
Iterations: 32
Function evaluations: 304
Gradient evaluations: 32
Iteration: 1, Func. Count: 11, Neg. LLF: 1853.5792718060927
Iteration: 2, Func. Count: 22, Neg. LLF: 331.013161607089
Iteration: 3, Func. Count: 33, Neg. LLF: 172.54891997915442
Iteration: 4, Func. Count: 44, Neg. LLF: 268.3440588682902
Iteration: 5, Func. Count: 55, Neg. LLF: 167.6111782346547
Iteration: 6, Func. Count: 65, Neg. LLF: 167.8964550265773
Iteration: 7, Func. Count: 76, Neg. LLF: 201.84203836380854
Iteration: 8, Func. Count: 87, Neg. LLF: 166.55909716415985
Iteration: 9, Func. Count: 97, Neg. LLF: 166.42225648124403
Iteration: 10, Func. Count: 107, Neg. LLF: 166.3324280425537
Iteration: 11, Func. Count: 117, Neg. LLF: 166.32317285804123
Iteration: 12, Func. Count: 127, Neg. LLF: 166.31459528718656
Iteration: 13, Func. Count: 137, Neg. LLF: 166.31203128870513
Iteration: 14, Func. Count: 147, Neg. LLF: 166.30928333160654
Iteration: 15, Func. Count: 157, Neg. LLF: 166.30832051839332
Iteration: 16, Func. Count: 167, Neg. LLF: 166.30826187682234
Iteration: 17, Func. Count: 177, Neg. LLF: 166.30826082263238
Iteration: 18, Func. Count: 186, Neg. LLF: 166.30826082264338
Optimization terminated successfully (Exit mode 0)
Current function value: 166.30826082263238
Iterations: 18
Function evaluations: 186
Gradient evaluations: 18
Iteration: 1, Func. Count: 8, Neg. LLF: 173.7428957341189
Iteration: 2, Func. Count: 16, Neg. LLF: 181.03760635680462
Iteration: 3, Func. Count: 24, Neg. LLF: 179.46608588400747
Iteration: 4, Func. Count: 32, Neg. LLF: 171.9703192501847
Iteration: 5, Func. Count: 40, Neg. LLF: 171.42483784597516
Iteration: 6, Func. Count: 47, Neg. LLF: 171.25108098812777
Iteration: 7, Func. Count: 54, Neg. LLF: 171.21132741188802
Iteration: 8, Func. Count: 61, Neg. LLF: 170.93778091305057
Iteration: 9, Func. Count: 68, Neg. LLF: 170.5830690961296
Iteration: 10, Func. Count: 75, Neg. LLF: 169.7542114030198
Iteration: 11, Func. Count: 82, Neg. LLF: 169.22045757801524
Iteration: 12, Func. Count: 89, Neg. LLF: 169.1103590413661
Iteration: 13, Func. Count: 96, Neg. LLF: 168.79972584580918
Iteration: 14, Func. Count: 103, Neg. LLF: 168.7150159109987
Iteration: 15, Func. Count: 110, Neg. LLF: 168.70443063161235
Iteration: 16, Func. Count: 117, Neg. LLF: 168.6940127804772
Iteration: 17, Func. Count: 124, Neg. LLF: 168.69379139536704
Iteration: 18, Func. Count: 131, Neg. LLF: 168.69364822832398
Iteration: 19, Func. Count: 138, Neg. LLF: 168.6935330235414
Iteration: 20, Func. Count: 145, Neg. LLF: 168.69348316329476
Iteration: 21, Func. Count: 152, Neg. LLF: 168.69347685298862
Iteration: 22, Func. Count: 158, Neg. LLF: 168.69347685296475
Optimization terminated successfully (Exit mode 0)
Current function value: 168.69347685298862
Iterations: 22
Function evaluations: 158
Gradient evaluations: 22
Iteration: 1, Func. Count: 9, Neg. LLF: 279.5304753346331
Iteration: 2, Func. Count: 18, Neg. LLF: 186.20618224821752
Iteration: 3, Func. Count: 27, Neg. LLF: 183.714186604216
Iteration: 4, Func. Count: 36, Neg. LLF: 170.30309767642453
Iteration: 5, Func. Count: 44, Neg. LLF: 170.15599665850593
Iteration: 6, Func. Count: 53, Neg. LLF: 173.418720876315
Iteration: 7, Func. Count: 62, Neg. LLF: 168.76739504253973
Iteration: 8, Func. Count: 70, Neg. LLF: 168.38851975423765
Iteration: 9, Func. Count: 78, Neg. LLF: 168.34115054184454
Iteration: 10, Func. Count: 86, Neg. LLF: 168.33525339542064
Iteration: 11, Func. Count: 94, Neg. LLF: 168.32454582887587
Iteration: 12, Func. Count: 102, Neg. LLF: 168.32239521105458
Iteration: 13, Func. Count: 110, Neg. LLF: 168.31720534726497
Iteration: 14, Func. Count: 118, Neg. LLF: 168.3085563237071
Iteration: 15, Func. Count: 126, Neg. LLF: 168.29987572324953
Iteration: 16, Func. Count: 134, Neg. LLF: 168.2966699097597
Iteration: 17, Func. Count: 142, Neg. LLF: 168.2963157077189
Iteration: 18, Func. Count: 150, Neg. LLF: 168.29627925692216
Iteration: 19, Func. Count: 158, Neg. LLF: 168.2962762605272
Iteration: 20, Func. Count: 166, Neg. LLF: 168.29627516681836
Iteration: 21, Func. Count: 173, Neg. LLF: 168.29627516674904
Optimization terminated successfully (Exit mode 0)
Current function value: 168.29627516681836
Iterations: 21
Function evaluations: 173
Gradient evaluations: 21
Iteration: 1, Func. Count: 10, Neg. LLF: 1573.4491734616956
Iteration: 2, Func. Count: 21, Neg. LLF: 261.766057947626
Iteration: 3, Func. Count: 31, Neg. LLF: 214.42951836407786
Iteration: 4, Func. Count: 41, Neg. LLF: 203.46296148777122
Iteration: 5, Func. Count: 51, Neg. LLF: 191.49542237802044
Iteration: 6, Func. Count: 61, Neg. LLF: 175.529775692326
Iteration: 7, Func. Count: 71, Neg. LLF: 178.74568759556286
Iteration: 8, Func. Count: 81, Neg. LLF: 172.4434913727696
Iteration: 9, Func. Count: 91, Neg. LLF: 169.93283515197027
Iteration: 10, Func. Count: 101, Neg. LLF: 169.75485768641886
Iteration: 11, Func. Count: 111, Neg. LLF: 168.30915103658327
Iteration: 12, Func. Count: 121, Neg. LLF: 169.28707653726093
Iteration: 13, Func. Count: 131, Neg. LLF: 167.80473400699037
Iteration: 14, Func. Count: 140, Neg. LLF: 167.7868318639611
Iteration: 15, Func. Count: 149, Neg. LLF: 167.7849790592741
Iteration: 16, Func. Count: 158, Neg. LLF: 167.78372492840387
Iteration: 17, Func. Count: 167, Neg. LLF: 167.7816496801301
Iteration: 18, Func. Count: 176, Neg. LLF: 167.77726837675186
Iteration: 19, Func. Count: 185, Neg. LLF: 167.77379703192605
Iteration: 20, Func. Count: 194, Neg. LLF: 167.7694834204141
Iteration: 21, Func. Count: 203, Neg. LLF: 167.76848178930373
Iteration: 22, Func. Count: 212, Neg. LLF: 167.7683871839026
Iteration: 23, Func. Count: 221, Neg. LLF: 167.7683834317329
Iteration: 24, Func. Count: 229, Neg. LLF: 167.76838337510756
Optimization terminated successfully (Exit mode 0)
Current function value: 167.7683834317329
Iterations: 24
Function evaluations: 229
Gradient evaluations: 24
Iteration: 1, Func. Count: 11, Neg. LLF: 1784.547794970475
Iteration: 2, Func. Count: 23, Neg. LLF: 260.18611286005995
Iteration: 3, Func. Count: 34, Neg. LLF: 187.39565757221965
Iteration: 4, Func. Count: 45, Neg. LLF: 192.437121850244
Iteration: 5, Func. Count: 56, Neg. LLF: 178.37940899230856
Iteration: 6, Func. Count: 67, Neg. LLF: 175.5824647863543
Iteration: 7, Func. Count: 78, Neg. LLF: 172.66757499589752
Iteration: 8, Func. Count: 89, Neg. LLF: 170.3988876735933
Iteration: 9, Func. Count: 100, Neg. LLF: 169.52710101647122
Iteration: 10, Func. Count: 111, Neg. LLF: 169.1069610756503
Iteration: 11, Func. Count: 122, Neg. LLF: 168.0789475132342
Iteration: 12, Func. Count: 133, Neg. LLF: 168.03923553100304
Iteration: 13, Func. Count: 144, Neg. LLF: 167.6728251804379
Iteration: 14, Func. Count: 154, Neg. LLF: 167.66293104714921
Iteration: 15, Func. Count: 164, Neg. LLF: 167.656747013944
Iteration: 16, Func. Count: 174, Neg. LLF: 167.63502931626178
Iteration: 17, Func. Count: 184, Neg. LLF: 167.62266771921176
Iteration: 18, Func. Count: 194, Neg. LLF: 167.61688614921815
Iteration: 19, Func. Count: 204, Neg. LLF: 167.61588640439396
Iteration: 20, Func. Count: 214, Neg. LLF: 167.61548224708454
Iteration: 21, Func. Count: 224, Neg. LLF: 167.61547153969516
Iteration: 22, Func. Count: 233, Neg. LLF: 167.6154714501486
Optimization terminated successfully (Exit mode 0)
Current function value: 167.61547153969516
Iterations: 22
Function evaluations: 233
Gradient evaluations: 22
Iteration: 1, Func. Count: 12, Neg. LLF: 1932.2579495218715
Iteration: 2, Func. Count: 24, Neg. LLF: 295.3112772647612
Iteration: 3, Func. Count: 36, Neg. LLF: 193.31147158605873
Iteration: 4, Func. Count: 48, Neg. LLF: 276.2435333703803
Iteration: 5, Func. Count: 60, Neg. LLF: 182.6694353546658
Iteration: 6, Func. Count: 72, Neg. LLF: 168.7697525297769
Iteration: 7, Func. Count: 83, Neg. LLF: 184.24303370727898
Iteration: 8, Func. Count: 96, Neg. LLF: 208.00883416297097
Iteration: 9, Func. Count: 109, Neg. LLF: 166.0806847577625
Iteration: 10, Func. Count: 120, Neg. LLF: 165.4318476816854
Iteration: 11, Func. Count: 131, Neg. LLF: 165.47196418146922
Iteration: 12, Func. Count: 143, Neg. LLF: 165.22040663367923
Iteration: 13, Func. Count: 154, Neg. LLF: 165.1389148989652
Iteration: 14, Func. Count: 165, Neg. LLF: 165.102952763204
Iteration: 15, Func. Count: 176, Neg. LLF: 165.07928984618917
Iteration: 16, Func. Count: 187, Neg. LLF: 165.07474160389572
Iteration: 17, Func. Count: 198, Neg. LLF: 165.0670375656447
Iteration: 18, Func. Count: 209, Neg. LLF: 165.06581325977857
Iteration: 19, Func. Count: 220, Neg. LLF: 165.06549907770184
Iteration: 20, Func. Count: 231, Neg. LLF: 165.06548977101275
Iteration: 21, Func. Count: 241, Neg. LLF: 165.0654897540844
Optimization terminated successfully (Exit mode 0)
Current function value: 165.06548977101275
Iterations: 21
Function evaluations: 241
Gradient evaluations: 21
Iteration: 1, Func. Count: 9, Neg. LLF: 173.87108638266668
Iteration: 2, Func. Count: 19, Neg. LLF: 176.19004613628056
Iteration: 3, Func. Count: 29, Neg. LLF: 170.2827663287505
Iteration: 4, Func. Count: 37, Neg. LLF: 173.1575334800213
Iteration: 5, Func. Count: 46, Neg. LLF: 170.1961941778872
Iteration: 6, Func. Count: 54, Neg. LLF: 170.16832191910555
Iteration: 7, Func. Count: 62, Neg. LLF: 170.15201190687367
Iteration: 8, Func. Count: 70, Neg. LLF: 170.08780907087936
Iteration: 9, Func. Count: 78, Neg. LLF: 170.02998428071925
Iteration: 10, Func. Count: 86, Neg. LLF: 169.60930973424018
Iteration: 11, Func. Count: 94, Neg. LLF: 170.87895567375335
Iteration: 12, Func. Count: 103, Neg. LLF: 169.15323064855366
Iteration: 13, Func. Count: 111, Neg. LLF: 169.0289665996583
Iteration: 14, Func. Count: 119, Neg. LLF: 168.99674403049715
Iteration: 15, Func. Count: 127, Neg. LLF: 168.99221266691683
Iteration: 16, Func. Count: 135, Neg. LLF: 168.99178655307105
Iteration: 17, Func. Count: 143, Neg. LLF: 168.99144715078077
Iteration: 18, Func. Count: 151, Neg. LLF: 168.991251982426
Iteration: 19, Func. Count: 159, Neg. LLF: 168.9912227009972
Iteration: 20, Func. Count: 167, Neg. LLF: 168.991220937308
Iteration: 21, Func. Count: 174, Neg. LLF: 168.99122093732367
Optimization terminated successfully (Exit mode 0)
Current function value: 168.991220937308
Iterations: 21
Function evaluations: 174
Gradient evaluations: 21
Iteration: 1, Func. Count: 10, Neg. LLF: 280.2708298206108
Iteration: 2, Func. Count: 20, Neg. LLF: 183.77037263192082
Iteration: 3, Func. Count: 30, Neg. LLF: 192.3779166686515
Iteration: 4, Func. Count: 40, Neg. LLF: 171.6702368928451
Iteration: 5, Func. Count: 50, Neg. LLF: 171.69874941322757
Iteration: 6, Func. Count: 60, Neg. LLF: 171.57663468001482
Iteration: 7, Func. Count: 70, Neg. LLF: 169.04049781051057
Iteration: 8, Func. Count: 80, Neg. LLF: 171.06481177100738
Iteration: 9, Func. Count: 90, Neg. LLF: 168.75516143004913
Iteration: 10, Func. Count: 99, Neg. LLF: 168.58768629516052
Iteration: 11, Func. Count: 108, Neg. LLF: 168.4976990426503
Iteration: 12, Func. Count: 117, Neg. LLF: 168.33662823134745
Iteration: 13, Func. Count: 126, Neg. LLF: 168.3272561494178
Iteration: 14, Func. Count: 135, Neg. LLF: 168.31921036080251
Iteration: 15, Func. Count: 144, Neg. LLF: 168.31741589270402
Iteration: 16, Func. Count: 153, Neg. LLF: 168.3103938539774
Iteration: 17, Func. Count: 162, Neg. LLF: 168.30450384005337
Iteration: 18, Func. Count: 171, Neg. LLF: 168.29879692631638
Iteration: 19, Func. Count: 180, Neg. LLF: 168.2966127344939
Iteration: 20, Func. Count: 189, Neg. LLF: 168.2963221577964
Iteration: 21, Func. Count: 198, Neg. LLF: 168.29628743503343
Iteration: 22, Func. Count: 207, Neg. LLF: 168.29627613743665
Iteration: 23, Func. Count: 216, Neg. LLF: 168.296275090547
Iteration: 24, Func. Count: 224, Neg. LLF: 168.29627509056326
Optimization terminated successfully (Exit mode 0)
Current function value: 168.296275090547
Iterations: 24
Function evaluations: 224
Gradient evaluations: 24
Iteration: 1, Func. Count: 11, Neg. LLF: 1589.6386648501673
Iteration: 2, Func. Count: 23, Neg. LLF: 258.9808185905848
Iteration: 3, Func. Count: 34, Neg. LLF: 195.53580455127263
Iteration: 4, Func. Count: 45, Neg. LLF: 205.52540747304775
Iteration: 5, Func. Count: 56, Neg. LLF: 197.682472648566
Iteration: 6, Func. Count: 67, Neg. LLF: 173.59704312354896
Iteration: 7, Func. Count: 78, Neg. LLF: 177.24674428439212
Iteration: 8, Func. Count: 89, Neg. LLF: 171.82857660093165
Iteration: 9, Func. Count: 100, Neg. LLF: 169.82854192562237
Iteration: 10, Func. Count: 111, Neg. LLF: 169.38445094920417
Iteration: 11, Func. Count: 122, Neg. LLF: 168.37971067298182
Iteration: 12, Func. Count: 133, Neg. LLF: 168.05380623884625
Iteration: 13, Func. Count: 144, Neg. LLF: 167.8022086246003
Iteration: 14, Func. Count: 154, Neg. LLF: 167.88525962481577
Iteration: 15, Func. Count: 165, Neg. LLF: 167.78147807450458
Iteration: 16, Func. Count: 175, Neg. LLF: 167.78064998274235
Iteration: 17, Func. Count: 185, Neg. LLF: 167.77834253034848
Iteration: 18, Func. Count: 195, Neg. LLF: 167.7748282198965
Iteration: 19, Func. Count: 205, Neg. LLF: 167.77062833893862
Iteration: 20, Func. Count: 215, Neg. LLF: 167.76889727276674
Iteration: 21, Func. Count: 225, Neg. LLF: 167.76842637435644
Iteration: 22, Func. Count: 235, Neg. LLF: 167.76838444474916
Iteration: 23, Func. Count: 245, Neg. LLF: 167.76838335401817
Iteration: 24, Func. Count: 254, Neg. LLF: 167.76838329735563
Optimization terminated successfully (Exit mode 0)
Current function value: 167.76838335401817
Iterations: 24
Function evaluations: 254
Gradient evaluations: 24
Iteration: 1, Func. Count: 12, Neg. LLF: 1804.6449209636019
Iteration: 2, Func. Count: 24, Neg. LLF: 282.78441981195454
Iteration: 3, Func. Count: 36, Neg. LLF: 199.08562162184413
Iteration: 4, Func. Count: 48, Neg. LLF: 202.80650743888154
Iteration: 5, Func. Count: 60, Neg. LLF: 265.23696169607166
Iteration: 6, Func. Count: 72, Neg. LLF: 220.16927866544566
Iteration: 7, Func. Count: 84, Neg. LLF: 173.8829024787071
Iteration: 8, Func. Count: 96, Neg. LLF: 171.13114209363647
Iteration: 9, Func. Count: 108, Neg. LLF: 170.33152736071355
Iteration: 10, Func. Count: 120, Neg. LLF: 171.13487837877585
Iteration: 11, Func. Count: 132, Neg. LLF: 168.1062667909891
Iteration: 12, Func. Count: 143, Neg. LLF: 168.00090996663428
Iteration: 13, Func. Count: 155, Neg. LLF: 167.6743569656138
Iteration: 14, Func. Count: 166, Neg. LLF: 167.63684421851963
Iteration: 15, Func. Count: 177, Neg. LLF: 167.625328192718
Iteration: 16, Func. Count: 188, Neg. LLF: 167.62278505920878
Iteration: 17, Func. Count: 199, Neg. LLF: 167.61796477997927
Iteration: 18, Func. Count: 210, Neg. LLF: 167.6162399025394
Iteration: 19, Func. Count: 221, Neg. LLF: 167.61551677092584
Iteration: 20, Func. Count: 232, Neg. LLF: 167.61547874838305
Iteration: 21, Func. Count: 243, Neg. LLF: 167.61547145482382
Iteration: 22, Func. Count: 253, Neg. LLF: 167.61547136534483
Optimization terminated successfully (Exit mode 0)
Current function value: 167.61547145482382
Iterations: 22
Function evaluations: 253
Gradient evaluations: 22
Iteration: 1, Func. Count: 13, Neg. LLF: 1942.5796888143145
Iteration: 2, Func. Count: 26, Neg. LLF: 289.6510711653343
Iteration: 3, Func. Count: 39, Neg. LLF: 210.85758403857565
Iteration: 4, Func. Count: 52, Neg. LLF: 204.57138395512703
Iteration: 5, Func. Count: 65, Neg. LLF: 223.93414998066896
Iteration: 6, Func. Count: 78, Neg. LLF: 168.42308069999126
Iteration: 7, Func. Count: 90, Neg. LLF: 172.8387922686909
Iteration: 8, Func. Count: 104, Neg. LLF: 201.0800609696159
Iteration: 9, Func. Count: 118, Neg. LLF: 166.1222728553484
Iteration: 10, Func. Count: 131, Neg. LLF: 166.63851223649957
Iteration: 11, Func. Count: 144, Neg. LLF: 165.32622794818442
Iteration: 12, Func. Count: 156, Neg. LLF: 165.2107056574471
Iteration: 13, Func. Count: 168, Neg. LLF: 165.14271606919252
Iteration: 14, Func. Count: 180, Neg. LLF: 165.08139341939653
Iteration: 15, Func. Count: 192, Neg. LLF: 165.07192824211958
Iteration: 16, Func. Count: 204, Neg. LLF: 165.06898283055918
Iteration: 17, Func. Count: 216, Neg. LLF: 165.0656271510158
Iteration: 18, Func. Count: 228, Neg. LLF: 165.06550555345075
Iteration: 19, Func. Count: 240, Neg. LLF: 165.06549053849926
Iteration: 20, Func. Count: 252, Neg. LLF: 165.06548986460695
Optimization terminated successfully (Exit mode 0)
Current function value: 165.06548986460695
Iterations: 20
Function evaluations: 252
Gradient evaluations: 20
Iteration: 1, Func. Count: 10, Neg. LLF: 173.94221914539128
Iteration: 2, Func. Count: 21, Neg. LLF: 176.62815130177225
Iteration: 3, Func. Count: 32, Neg. LLF: 170.28600669347676
Iteration: 4, Func. Count: 41, Neg. LLF: 173.37308825101476
Iteration: 5, Func. Count: 51, Neg. LLF: 170.19984498955273
Iteration: 6, Func. Count: 60, Neg. LLF: 170.16952343876693
Iteration: 7, Func. Count: 69, Neg. LLF: 170.1518256258385
Iteration: 8, Func. Count: 78, Neg. LLF: 170.08240297534968
Iteration: 9, Func. Count: 87, Neg. LLF: 170.03734845396062
Iteration: 10, Func. Count: 96, Neg. LLF: 169.76177945971514
Iteration: 11, Func. Count: 105, Neg. LLF: 169.42949674465308
Iteration: 12, Func. Count: 114, Neg. LLF: 170.68456688577646
Iteration: 13, Func. Count: 124, Neg. LLF: 205.43812562594815
Iteration: 14, Func. Count: 134, Neg. LLF: 169.79642426003466
Iteration: 15, Func. Count: 144, Neg. LLF: 169.61592943424444
Iteration: 16, Func. Count: 154, Neg. LLF: 168.90903724482007
Iteration: 17, Func. Count: 164, Neg. LLF: 168.7992523547979
Iteration: 18, Func. Count: 174, Neg. LLF: 168.65035463671455
Iteration: 19, Func. Count: 183, Neg. LLF: 168.6002603518804
Iteration: 20, Func. Count: 192, Neg. LLF: 168.54332938205326
Iteration: 21, Func. Count: 201, Neg. LLF: 168.47409279680522
Iteration: 22, Func. Count: 210, Neg. LLF: 168.30325312963464
Iteration: 23, Func. Count: 219, Neg. LLF: 168.29401782408624
Iteration: 24, Func. Count: 228, Neg. LLF: 168.28451544585766
Iteration: 25, Func. Count: 237, Neg. LLF: 168.28189708905612
Iteration: 26, Func. Count: 246, Neg. LLF: 168.28139811335163
Iteration: 27, Func. Count: 255, Neg. LLF: 168.2813758700419
Iteration: 28, Func. Count: 264, Neg. LLF: 168.281375131882
Optimization terminated successfully (Exit mode 0)
Current function value: 168.281375131882
Iterations: 28
Function evaluations: 264
Gradient evaluations: 28
Iteration: 1, Func. Count: 11, Neg. LLF: 281.12511414877235
Iteration: 2, Func. Count: 22, Neg. LLF: 188.01834984511387
Iteration: 3, Func. Count: 33, Neg. LLF: 183.8828249616659
Iteration: 4, Func. Count: 44, Neg. LLF: 172.1195256597164
Iteration: 5, Func. Count: 55, Neg. LLF: 171.26691541292328
Iteration: 6, Func. Count: 66, Neg. LLF: 170.0612233694071
Iteration: 7, Func. Count: 77, Neg. LLF: 169.45894494391305
Iteration: 8, Func. Count: 88, Neg. LLF: 169.06097825757854
Iteration: 9, Func. Count: 99, Neg. LLF: 168.4175270842694
Iteration: 10, Func. Count: 109, Neg. LLF: 168.25678504764772
Iteration: 11, Func. Count: 119, Neg. LLF: 168.22861146851594
Iteration: 12, Func. Count: 129, Neg. LLF: 168.215716045373
Iteration: 13, Func. Count: 139, Neg. LLF: 168.20685571702566
Iteration: 14, Func. Count: 149, Neg. LLF: 168.20158266686187
Iteration: 15, Func. Count: 159, Neg. LLF: 168.1998016693058
Iteration: 16, Func. Count: 169, Neg. LLF: 168.19953463532687
Iteration: 17, Func. Count: 179, Neg. LLF: 168.19949438339052
Iteration: 18, Func. Count: 189, Neg. LLF: 168.19948765400383
Iteration: 19, Func. Count: 199, Neg. LLF: 168.19947362417307
Iteration: 20, Func. Count: 209, Neg. LLF: 168.19945128030457
Iteration: 21, Func. Count: 219, Neg. LLF: 168.19941907570634
Iteration: 22, Func. Count: 229, Neg. LLF: 168.19939765488752
Iteration: 23, Func. Count: 239, Neg. LLF: 168.19939162294523
Iteration: 24, Func. Count: 248, Neg. LLF: 168.19939162305707
Optimization terminated successfully (Exit mode 0)
Current function value: 168.19939162294523
Iterations: 24
Function evaluations: 248
Gradient evaluations: 24
Iteration: 1, Func. Count: 12, Neg. LLF: 410.6183441426106
Iteration: 2, Func. Count: 24, Neg. LLF: 230.39323632330115
Iteration: 3, Func. Count: 36, Neg. LLF: 199.95720577006716
Iteration: 4, Func. Count: 48, Neg. LLF: 175.76805607854791
Iteration: 5, Func. Count: 60, Neg. LLF: 187.35031861991226
Iteration: 6, Func. Count: 72, Neg. LLF: 178.29461181619587
Iteration: 7, Func. Count: 84, Neg. LLF: 170.85591322474892
Iteration: 8, Func. Count: 96, Neg. LLF: 170.79763612528888
Iteration: 9, Func. Count: 108, Neg. LLF: 169.54375012202104
Iteration: 10, Func. Count: 120, Neg. LLF: 168.18840927095005
Iteration: 11, Func. Count: 131, Neg. LLF: 167.90574854950938
Iteration: 12, Func. Count: 142, Neg. LLF: 168.11850313795674
Iteration: 13, Func. Count: 154, Neg. LLF: 167.87453435073567
Iteration: 14, Func. Count: 166, Neg. LLF: 167.78589794720452
Iteration: 15, Func. Count: 177, Neg. LLF: 167.78360211587352
Iteration: 16, Func. Count: 188, Neg. LLF: 167.78250284391453
Iteration: 17, Func. Count: 199, Neg. LLF: 167.7801381992341
Iteration: 18, Func. Count: 210, Neg. LLF: 167.77698246974091
Iteration: 19, Func. Count: 221, Neg. LLF: 167.772419209896
Iteration: 20, Func. Count: 232, Neg. LLF: 167.76940071426642
Iteration: 21, Func. Count: 243, Neg. LLF: 167.76843702189805
Iteration: 22, Func. Count: 254, Neg. LLF: 167.76838584957386
Iteration: 23, Func. Count: 265, Neg. LLF: 167.7683835366615
Iteration: 24, Func. Count: 275, Neg. LLF: 167.76838348005595
Optimization terminated successfully (Exit mode 0)
Current function value: 167.7683835366615
Iterations: 24
Function evaluations: 275
Gradient evaluations: 24
Iteration: 1, Func. Count: 13, Neg. LLF: 1109.7950470489097
Iteration: 2, Func. Count: 26, Neg. LLF: 199.67005290521323
Iteration: 3, Func. Count: 39, Neg. LLF: 186.72260608573717
Iteration: 4, Func. Count: 52, Neg. LLF: 194.37079633059685
Iteration: 5, Func. Count: 65, Neg. LLF: 204.49849718058815
Iteration: 6, Func. Count: 78, Neg. LLF: 176.18057676524438
Iteration: 7, Func. Count: 91, Neg. LLF: 172.63816734669632
Iteration: 8, Func. Count: 104, Neg. LLF: 168.7818939508654
Iteration: 9, Func. Count: 116, Neg. LLF: 170.3184303448399
Iteration: 10, Func. Count: 129, Neg. LLF: 181.71595904855693
Iteration: 11, Func. Count: 143, Neg. LLF: 168.12353360781705
Iteration: 12, Func. Count: 155, Neg. LLF: 167.9143400290479
Iteration: 13, Func. Count: 167, Neg. LLF: 167.90479818727337
Iteration: 14, Func. Count: 180, Neg. LLF: 167.74631965159557
Iteration: 15, Func. Count: 193, Neg. LLF: 167.62445779923846
Iteration: 16, Func. Count: 205, Neg. LLF: 167.62239740863635
Iteration: 17, Func. Count: 217, Neg. LLF: 167.62167697015698
Iteration: 18, Func. Count: 229, Neg. LLF: 167.62032859479717
Iteration: 19, Func. Count: 241, Neg. LLF: 167.61816629643874
Iteration: 20, Func. Count: 253, Neg. LLF: 167.61642945848598
Iteration: 21, Func. Count: 265, Neg. LLF: 167.6156900215846
Iteration: 22, Func. Count: 277, Neg. LLF: 167.61559123441427
Iteration: 23, Func. Count: 289, Neg. LLF: 167.6155824731912
Iteration: 24, Func. Count: 301, Neg. LLF: 167.61557957317717
Iteration: 25, Func. Count: 312, Neg. LLF: 167.6155794983904
Optimization terminated successfully (Exit mode 0)
Current function value: 167.61557957317717
Iterations: 25
Function evaluations: 312
Gradient evaluations: 25
Iteration: 1, Func. Count: 14, Neg. LLF: 1931.4868173174148
Iteration: 2, Func. Count: 28, Neg. LLF: 475.5059213371874
Iteration: 3, Func. Count: 42, Neg. LLF: 227.4732276814217
Iteration: 4, Func. Count: 56, Neg. LLF: 211.28965037429523
Iteration: 5, Func. Count: 70, Neg. LLF: 180.3276997690481
Iteration: 6, Func. Count: 84, Neg. LLF: 167.11839151876353
Iteration: 7, Func. Count: 97, Neg. LLF: 172.504285722882
Iteration: 8, Func. Count: 112, Neg. LLF: 178.4386120642833
Iteration: 9, Func. Count: 127, Neg. LLF: 165.74974617271303
Iteration: 10, Func. Count: 140, Neg. LLF: 165.71267493757006
Iteration: 11, Func. Count: 154, Neg. LLF: 168.28158333755349
Iteration: 12, Func. Count: 168, Neg. LLF: 165.36643856038896
Iteration: 13, Func. Count: 181, Neg. LLF: 165.31957125474798
Iteration: 14, Func. Count: 194, Neg. LLF: 165.29004567911622
Iteration: 15, Func. Count: 207, Neg. LLF: 165.25497868476126
Iteration: 16, Func. Count: 220, Neg. LLF: 165.21377027895502
Iteration: 17, Func. Count: 233, Neg. LLF: 165.20853176945494
Iteration: 18, Func. Count: 247, Neg. LLF: 165.11300096136785
Iteration: 19, Func. Count: 260, Neg. LLF: 165.08598141269417
Iteration: 20, Func. Count: 273, Neg. LLF: 165.08056341373722
Iteration: 21, Func. Count: 286, Neg. LLF: 165.0796807050635
Iteration: 22, Func. Count: 299, Neg. LLF: 165.07936345555092
Iteration: 23, Func. Count: 312, Neg. LLF: 165.0792538524943
Iteration: 24, Func. Count: 325, Neg. LLF: 165.0792462365538
Iteration: 25, Func. Count: 337, Neg. LLF: 165.07924622107322
Optimization terminated successfully (Exit mode 0)
Current function value: 165.0792462365538
Iterations: 25
Function evaluations: 337
Gradient evaluations: 25
Iteration: 1, Func. Count: 7, Neg. LLF: 173.71225609460055
Iteration: 2, Func. Count: 14, Neg. LLF: 176.60276363938735
Iteration: 3, Func. Count: 22, Neg. LLF: 171.56358575682293
Iteration: 4, Func. Count: 28, Neg. LLF: 171.5783367933626
Iteration: 5, Func. Count: 35, Neg. LLF: 171.37729578814293
Iteration: 6, Func. Count: 41, Neg. LLF: 171.32073859685937
Iteration: 7, Func. Count: 47, Neg. LLF: 171.27717942812325
Iteration: 8, Func. Count: 53, Neg. LLF: 170.99971101915125
Iteration: 9, Func. Count: 59, Neg. LLF: 170.3209522563452
Iteration: 10, Func. Count: 65, Neg. LLF: 170.33370703523542
Iteration: 11, Func. Count: 72, Neg. LLF: 169.73094315375317
Iteration: 12, Func. Count: 78, Neg. LLF: 169.5352989752303
Iteration: 13, Func. Count: 84, Neg. LLF: 169.58572052603625
Iteration: 14, Func. Count: 91, Neg. LLF: 169.50919191762924
Iteration: 15, Func. Count: 97, Neg. LLF: 169.501025436017
Iteration: 16, Func. Count: 103, Neg. LLF: 169.49457732830396
Iteration: 17, Func. Count: 109, Neg. LLF: 169.49386290240076
Iteration: 18, Func. Count: 115, Neg. LLF: 169.49380390596295
Iteration: 19, Func. Count: 121, Neg. LLF: 169.49378819444928
Iteration: 20, Func. Count: 127, Neg. LLF: 169.4937874766517
Optimization terminated successfully (Exit mode 0)
Current function value: 169.4937874766517
Iterations: 20
Function evaluations: 127
Gradient evaluations: 20
Iteration: 1, Func. Count: 8, Neg. LLF: 1773.9089173237437
Iteration: 2, Func. Count: 17, Neg. LLF: 287.94583182012633
Iteration: 3, Func. Count: 25, Neg. LLF: 171.1737883007556
Iteration: 4, Func. Count: 32, Neg. LLF: 195.06068278093122
Iteration: 5, Func. Count: 40, Neg. LLF: 172.73668946833283
Iteration: 6, Func. Count: 48, Neg. LLF: 171.78387332399936
Iteration: 7, Func. Count: 56, Neg. LLF: 170.08918653318096
Iteration: 8, Func. Count: 63, Neg. LLF: 169.8893320078471
Iteration: 9, Func. Count: 70, Neg. LLF: 169.66220551061443
Iteration: 10, Func. Count: 77, Neg. LLF: 169.63261252380946
Iteration: 11, Func. Count: 84, Neg. LLF: 169.54958233837934
Iteration: 12, Func. Count: 91, Neg. LLF: 169.5340812776941
Iteration: 13, Func. Count: 98, Neg. LLF: 169.53092273040414
Iteration: 14, Func. Count: 105, Neg. LLF: 169.52978980093633
Iteration: 15, Func. Count: 112, Neg. LLF: 169.52794632469175
Iteration: 16, Func. Count: 119, Neg. LLF: 169.52456182822024
Iteration: 17, Func. Count: 126, Neg. LLF: 169.52275200859913
Iteration: 18, Func. Count: 133, Neg. LLF: 169.5185564009455
Iteration: 19, Func. Count: 140, Neg. LLF: 169.50008026918735
Iteration: 20, Func. Count: 147, Neg. LLF: 169.4949597929971
Iteration: 21, Func. Count: 154, Neg. LLF: 169.4939401124099
Iteration: 22, Func. Count: 161, Neg. LLF: 169.49382638314432
Iteration: 23, Func. Count: 168, Neg. LLF: 169.49378986603156
Iteration: 24, Func. Count: 175, Neg. LLF: 169.49378783130402
Iteration: 25, Func. Count: 181, Neg. LLF: 169.4937878345817
Optimization terminated successfully (Exit mode 0)
Current function value: 169.49378783130402
Iterations: 25
Function evaluations: 181
Gradient evaluations: 25
Iteration: 1, Func. Count: 9, Neg. LLF: 2053.9253274017933
Iteration: 2, Func. Count: 19, Neg. LLF: 362.3755437641311
Iteration: 3, Func. Count: 28, Neg. LLF: 173.77389889656146
Iteration: 4, Func. Count: 37, Neg. LLF: 206.05910776592398
Iteration: 5, Func. Count: 46, Neg. LLF: 180.1528274431886
Iteration: 6, Func. Count: 55, Neg. LLF: 181.3301406073425
Iteration: 7, Func. Count: 64, Neg. LLF: 174.06239177114122
Iteration: 8, Func. Count: 73, Neg. LLF: 169.10933004935282
Iteration: 9, Func. Count: 81, Neg. LLF: 168.98380057092407
Iteration: 10, Func. Count: 89, Neg. LLF: 168.8426720536418
Iteration: 11, Func. Count: 97, Neg. LLF: 168.79759027662575
Iteration: 12, Func. Count: 105, Neg. LLF: 168.7849670287579
Iteration: 13, Func. Count: 113, Neg. LLF: 168.7733094840295
Iteration: 14, Func. Count: 121, Neg. LLF: 168.74921571832243
Iteration: 15, Func. Count: 129, Neg. LLF: 168.7431260941442
Iteration: 16, Func. Count: 137, Neg. LLF: 168.74100863165484
Iteration: 17, Func. Count: 145, Neg. LLF: 168.74033765605398
Iteration: 18, Func. Count: 153, Neg. LLF: 168.74029924166763
Iteration: 19, Func. Count: 161, Neg. LLF: 168.74029866188798
Optimization terminated successfully (Exit mode 0)
Current function value: 168.74029866188798
Iterations: 19
Function evaluations: 161
Gradient evaluations: 19
Iteration: 1, Func. Count: 10, Neg. LLF: 173.67598773291812
Iteration: 2, Func. Count: 19, Neg. LLF: 173.79837182601466
Iteration: 3, Func. Count: 29, Neg. LLF: 184.09454574939542
Iteration: 4, Func. Count: 39, Neg. LLF: 184.27914755530605
Iteration: 5, Func. Count: 49, Neg. LLF: 176.67335672946362
Iteration: 6, Func. Count: 59, Neg. LLF: 172.33295394134925
Iteration: 7, Func. Count: 69, Neg. LLF: 171.40498016747205
Iteration: 8, Func. Count: 78, Neg. LLF: 171.36734446436816
Iteration: 9, Func. Count: 87, Neg. LLF: 171.33051247025801
Iteration: 10, Func. Count: 96, Neg. LLF: 171.12538798047032
Iteration: 11, Func. Count: 105, Neg. LLF: 170.68768890457565
Iteration: 12, Func. Count: 114, Neg. LLF: 170.05105112800936
Iteration: 13, Func. Count: 123, Neg. LLF: 169.70818678275475
Iteration: 14, Func. Count: 132, Neg. LLF: 169.73443133021382
Iteration: 15, Func. Count: 142, Neg. LLF: 184.89365649349506
Iteration: 16, Func. Count: 152, Neg. LLF: 169.51185614454334
Iteration: 17, Func. Count: 162, Neg. LLF: 169.52071101423385
Iteration: 18, Func. Count: 172, Neg. LLF: 169.49380397522125
Iteration: 19, Func. Count: 181, Neg. LLF: 169.49378786725373
Iteration: 20, Func. Count: 189, Neg. LLF: 169.49378789593754
Optimization terminated successfully (Exit mode 0)
Current function value: 169.49378786725373
Iterations: 20
Function evaluations: 189
Gradient evaluations: 20
Iteration: 1, Func. Count: 11, Neg. LLF: 173.6763477292346
Iteration: 2, Func. Count: 21, Neg. LLF: 173.8430632674442
Iteration: 3, Func. Count: 32, Neg. LLF: 184.06726085626104
Iteration: 4, Func. Count: 43, Neg. LLF: 184.27529042142154
Iteration: 5, Func. Count: 54, Neg. LLF: 176.68052060667068
Iteration: 6, Func. Count: 65, Neg. LLF: 172.32117291633563
Iteration: 7, Func. Count: 76, Neg. LLF: 171.40557767749294
Iteration: 8, Func. Count: 86, Neg. LLF: 171.3676045795637
Iteration: 9, Func. Count: 96, Neg. LLF: 171.33149688968834
Iteration: 10, Func. Count: 106, Neg. LLF: 171.11602300341323
Iteration: 11, Func. Count: 116, Neg. LLF: 170.5841830270884
Iteration: 12, Func. Count: 126, Neg. LLF: 169.97103633678927
Iteration: 13, Func. Count: 136, Neg. LLF: 169.4695626355416
Iteration: 14, Func. Count: 146, Neg. LLF: 169.58147679932782
Iteration: 15, Func. Count: 157, Neg. LLF: 177.37500495101978
Iteration: 16, Func. Count: 168, Neg. LLF: 167.45400359546258
Iteration: 17, Func. Count: 178, Neg. LLF: 167.08001960863623
Iteration: 18, Func. Count: 188, Neg. LLF: 166.90484431435036
Iteration: 19, Func. Count: 198, Neg. LLF: 166.8813919870177
Iteration: 20, Func. Count: 208, Neg. LLF: 166.86084342195667
Iteration: 21, Func. Count: 218, Neg. LLF: 166.86000475058552
Iteration: 22, Func. Count: 228, Neg. LLF: 166.85992134706362
Iteration: 23, Func. Count: 238, Neg. LLF: 166.85991663784057
Iteration: 24, Func. Count: 247, Neg. LLF: 166.85991662636124
Optimization terminated successfully (Exit mode 0)
Current function value: 166.85991663784057
Iterations: 24
Function evaluations: 247
Gradient evaluations: 24
Iteration: 1, Func. Count: 8, Neg. LLF: 173.6892287720571
Iteration: 2, Func. Count: 16, Neg. LLF: 172.7227593045136
Iteration: 3, Func. Count: 24, Neg. LLF: 172.0638668191461
Iteration: 4, Func. Count: 32, Neg. LLF: 172.04167528024655
Iteration: 5, Func. Count: 40, Neg. LLF: 171.19314365348131
Iteration: 6, Func. Count: 47, Neg. LLF: 171.1307422556942
Iteration: 7, Func. Count: 54, Neg. LLF: 171.06150803746914
Iteration: 8, Func. Count: 61, Neg. LLF: 170.58281210966487
Iteration: 9, Func. Count: 68, Neg. LLF: 170.0590554656885
Iteration: 10, Func. Count: 75, Neg. LLF: 169.46113301668763
Iteration: 11, Func. Count: 82, Neg. LLF: 169.07641200630678
Iteration: 12, Func. Count: 89, Neg. LLF: 168.90417490656725
Iteration: 13, Func. Count: 96, Neg. LLF: 168.84014458452992
Iteration: 14, Func. Count: 103, Neg. LLF: 168.82560253918297
Iteration: 15, Func. Count: 110, Neg. LLF: 168.82384160858666
Iteration: 16, Func. Count: 117, Neg. LLF: 168.8236280760865
Iteration: 17, Func. Count: 124, Neg. LLF: 168.82361259932938
Iteration: 18, Func. Count: 131, Neg. LLF: 168.82361046209425
Iteration: 19, Func. Count: 137, Neg. LLF: 168.823610462074
Optimization terminated successfully (Exit mode 0)
Current function value: 168.82361046209425
Iterations: 19
Function evaluations: 137
Gradient evaluations: 19
Iteration: 1, Func. Count: 9, Neg. LLF: 183.90324242526486
Iteration: 2, Func. Count: 18, Neg. LLF: 187.50539532456756
Iteration: 3, Func. Count: 27, Neg. LLF: 183.969453187244
Iteration: 4, Func. Count: 36, Neg. LLF: 184.0185264457654
Iteration: 5, Func. Count: 45, Neg. LLF: 183.87270938419246
Iteration: 6, Func. Count: 54, Neg. LLF: 170.51711879705937
Iteration: 7, Func. Count: 63, Neg. LLF: 183.11117309154037
Iteration: 8, Func. Count: 72, Neg. LLF: 170.58565132373468
Iteration: 9, Func. Count: 81, Neg. LLF: 169.4412157107273
Iteration: 10, Func. Count: 90, Neg. LLF: 168.97669301536865
Iteration: 11, Func. Count: 98, Neg. LLF: 168.94634855140407
Iteration: 12, Func. Count: 106, Neg. LLF: 168.93625556078342
Iteration: 13, Func. Count: 114, Neg. LLF: 168.93206405557382
Iteration: 14, Func. Count: 122, Neg. LLF: 168.91084467586006
Iteration: 15, Func. Count: 130, Neg. LLF: 168.83285292217099
Iteration: 16, Func. Count: 138, Neg. LLF: 168.82582056384317
Iteration: 17, Func. Count: 146, Neg. LLF: 168.82363309432364
Iteration: 18, Func. Count: 154, Neg. LLF: 168.82361385309193
Iteration: 19, Func. Count: 162, Neg. LLF: 168.82361059619745
Iteration: 20, Func. Count: 169, Neg. LLF: 168.8236106056534
Optimization terminated successfully (Exit mode 0)
Current function value: 168.82361059619745
Iterations: 20
Function evaluations: 169
Gradient evaluations: 20
Iteration: 1, Func. Count: 10, Neg. LLF: 183.9963841067506
Iteration: 2, Func. Count: 20, Neg. LLF: 188.79905999820207
Iteration: 3, Func. Count: 30, Neg. LLF: 178.47499940483726
Iteration: 4, Func. Count: 40, Neg. LLF: 172.0020078915446
Iteration: 5, Func. Count: 50, Neg. LLF: 174.24913526642732
Iteration: 6, Func. Count: 60, Neg. LLF: 170.005263087251
Iteration: 7, Func. Count: 70, Neg. LLF: 169.93062333669693
Iteration: 8, Func. Count: 80, Neg. LLF: 168.67061777403967
Iteration: 9, Func. Count: 89, Neg. LLF: 168.68267353955733
Iteration: 10, Func. Count: 99, Neg. LLF: 168.59468968614516
Iteration: 11, Func. Count: 108, Neg. LLF: 168.57330834706707
Iteration: 12, Func. Count: 117, Neg. LLF: 168.55082008150626
Iteration: 13, Func. Count: 126, Neg. LLF: 168.50112481531642
Iteration: 14, Func. Count: 135, Neg. LLF: 168.46615461552798
Iteration: 15, Func. Count: 144, Neg. LLF: 168.69812644515505
Iteration: 16, Func. Count: 154, Neg. LLF: 168.44381712603237
Iteration: 17, Func. Count: 163, Neg. LLF: 168.44253538286017
Iteration: 18, Func. Count: 172, Neg. LLF: 168.44233107586572
Iteration: 19, Func. Count: 181, Neg. LLF: 168.44216820431967
Iteration: 20, Func. Count: 190, Neg. LLF: 168.44216017729434
Iteration: 21, Func. Count: 198, Neg. LLF: 168.44216015026632
Optimization terminated successfully (Exit mode 0)
Current function value: 168.44216017729434
Iterations: 21
Function evaluations: 198
Gradient evaluations: 21
Iteration: 1, Func. Count: 11, Neg. LLF: 253.5968586731808
Iteration: 2, Func. Count: 22, Neg. LLF: 1256.1644348391994
Iteration: 3, Func. Count: 34, Neg. LLF: 316.81547280512933
Iteration: 4, Func. Count: 45, Neg. LLF: 244.39767804372678
Iteration: 5, Func. Count: 56, Neg. LLF: 194.4061176900884
Iteration: 6, Func. Count: 67, Neg. LLF: 214.32506332647844
Iteration: 7, Func. Count: 78, Neg. LLF: 188.66309635839153
Iteration: 8, Func. Count: 89, Neg. LLF: 182.5112577261304
Iteration: 9, Func. Count: 100, Neg. LLF: 175.3978829760057
Iteration: 10, Func. Count: 111, Neg. LLF: 171.8272827120053
Iteration: 11, Func. Count: 122, Neg. LLF: 171.28723404053548
Iteration: 12, Func. Count: 133, Neg. LLF: 170.26476610039566
Iteration: 13, Func. Count: 144, Neg. LLF: 170.4623149640398
Iteration: 14, Func. Count: 155, Neg. LLF: 168.7865576992147
Iteration: 15, Func. Count: 166, Neg. LLF: 168.55122915129252
Iteration: 16, Func. Count: 176, Neg. LLF: 168.6665148182334
Iteration: 17, Func. Count: 187, Neg. LLF: 168.559515894854
Iteration: 18, Func. Count: 198, Neg. LLF: 168.53161368475497
Iteration: 19, Func. Count: 208, Neg. LLF: 168.53028709465593
Iteration: 20, Func. Count: 218, Neg. LLF: 168.5274348590906
Iteration: 21, Func. Count: 228, Neg. LLF: 168.51653728298177
Iteration: 22, Func. Count: 238, Neg. LLF: 168.46488813258176
Iteration: 23, Func. Count: 248, Neg. LLF: 168.4596167528315
Iteration: 24, Func. Count: 258, Neg. LLF: 168.4509807544716
Iteration: 25, Func. Count: 268, Neg. LLF: 168.44358562001256
Iteration: 26, Func. Count: 278, Neg. LLF: 168.44328623692024
Iteration: 27, Func. Count: 288, Neg. LLF: 168.44317500616012
Iteration: 28, Func. Count: 298, Neg. LLF: 168.44308831014462
Iteration: 29, Func. Count: 308, Neg. LLF: 168.4430080454289
Iteration: 30, Func. Count: 318, Neg. LLF: 168.44295330965582
Iteration: 31, Func. Count: 328, Neg. LLF: 168.44289458473932
Iteration: 32, Func. Count: 338, Neg. LLF: 168.44279769113956
Iteration: 33, Func. Count: 348, Neg. LLF: 168.44261818818154
Iteration: 34, Func. Count: 358, Neg. LLF: 168.44238217312554
Iteration: 35, Func. Count: 368, Neg. LLF: 168.44220539461563
Iteration: 36, Func. Count: 378, Neg. LLF: 168.44216272568778
Iteration: 37, Func. Count: 388, Neg. LLF: 168.44216258775822
Optimization terminated successfully (Exit mode 0)
Current function value: 168.44216258775822
Iterations: 37
Function evaluations: 388
Gradient evaluations: 37
Iteration: 1, Func. Count: 12, Neg. LLF: 1754.833642148393
Iteration: 2, Func. Count: 25, Neg. LLF: 306.26502611105576
Iteration: 3, Func. Count: 37, Neg. LLF: 169.96413867033084
Iteration: 4, Func. Count: 48, Neg. LLF: 249.67743689962262
Iteration: 5, Func. Count: 60, Neg. LLF: 186.0208917810601
Iteration: 6, Func. Count: 74, Neg. LLF: 167.6935141906108
Iteration: 7, Func. Count: 86, Neg. LLF: 166.50343690589608
Iteration: 8, Func. Count: 97, Neg. LLF: 166.3816840087253
Iteration: 9, Func. Count: 108, Neg. LLF: 166.33735170329948
Iteration: 10, Func. Count: 119, Neg. LLF: 166.32159450197423
Iteration: 11, Func. Count: 130, Neg. LLF: 166.31012321721087
Iteration: 12, Func. Count: 141, Neg. LLF: 166.30959105529197
Iteration: 13, Func. Count: 152, Neg. LLF: 166.3091691051239
Iteration: 14, Func. Count: 163, Neg. LLF: 166.30863512508623
Iteration: 15, Func. Count: 174, Neg. LLF: 166.3083293611258
Iteration: 16, Func. Count: 185, Neg. LLF: 166.30826576379695
Iteration: 17, Func. Count: 196, Neg. LLF: 166.30826094817564
Iteration: 18, Func. Count: 206, Neg. LLF: 166.30826094818684
Optimization terminated successfully (Exit mode 0)
Current function value: 166.30826094817564
Iterations: 18
Function evaluations: 206
Gradient evaluations: 18
Iteration: 1, Func. Count: 9, Neg. LLF: 174.7296055066306
Iteration: 2, Func. Count: 19, Neg. LLF: 176.63880332988663
Iteration: 3, Func. Count: 28, Neg. LLF: 172.48068639640064
Iteration: 4, Func. Count: 37, Neg. LLF: 171.47733601253387
Iteration: 5, Func. Count: 45, Neg. LLF: 171.39389548894346
Iteration: 6, Func. Count: 53, Neg. LLF: 176.0674342268657
Iteration: 7, Func. Count: 63, Neg. LLF: 171.19366025342745
Iteration: 8, Func. Count: 71, Neg. LLF: 171.31225532795062
Iteration: 9, Func. Count: 80, Neg. LLF: 171.11835023043562
Iteration: 10, Func. Count: 88, Neg. LLF: 170.99417331658717
Iteration: 11, Func. Count: 96, Neg. LLF: 170.32343652377514
Iteration: 12, Func. Count: 104, Neg. LLF: 169.88266451908046
Iteration: 13, Func. Count: 112, Neg. LLF: 169.21599480728815
Iteration: 14, Func. Count: 120, Neg. LLF: 168.82173803449638
Iteration: 15, Func. Count: 128, Neg. LLF: 168.70759341204732
Iteration: 16, Func. Count: 136, Neg. LLF: 168.5210541134647
Iteration: 17, Func. Count: 144, Neg. LLF: 168.44570638742564
Iteration: 18, Func. Count: 152, Neg. LLF: 168.39602211097727
Iteration: 19, Func. Count: 160, Neg. LLF: 168.36030683263337
Iteration: 20, Func. Count: 168, Neg. LLF: 168.3524141610361
Iteration: 21, Func. Count: 176, Neg. LLF: 168.35145617777977
Iteration: 22, Func. Count: 184, Neg. LLF: 168.35140399881868
Iteration: 23, Func. Count: 192, Neg. LLF: 168.35139416135044
Iteration: 24, Func. Count: 199, Neg. LLF: 168.35139416129994
Optimization terminated successfully (Exit mode 0)
Current function value: 168.35139416135044
Iterations: 24
Function evaluations: 199
Gradient evaluations: 24
Iteration: 1, Func. Count: 10, Neg. LLF: 262.267384452962
Iteration: 2, Func. Count: 20, Neg. LLF: 183.75281337718508
Iteration: 3, Func. Count: 30, Neg. LLF: 205.32919063895125
Iteration: 4, Func. Count: 40, Neg. LLF: 184.4820174697961
Iteration: 5, Func. Count: 50, Neg. LLF: 170.54901283478975
Iteration: 6, Func. Count: 60, Neg. LLF: 171.26041965130656
Iteration: 7, Func. Count: 70, Neg. LLF: 169.52707433551768
Iteration: 8, Func. Count: 80, Neg. LLF: 168.92327633477726
Iteration: 9, Func. Count: 90, Neg. LLF: 168.37888883416034
Iteration: 10, Func. Count: 99, Neg. LLF: 168.3536279024275
Iteration: 11, Func. Count: 108, Neg. LLF: 168.33621173282324
Iteration: 12, Func. Count: 117, Neg. LLF: 168.33429881666342
Iteration: 13, Func. Count: 126, Neg. LLF: 168.3303925878197
Iteration: 14, Func. Count: 135, Neg. LLF: 168.32379548318963
Iteration: 15, Func. Count: 144, Neg. LLF: 168.31085300259036
Iteration: 16, Func. Count: 153, Neg. LLF: 168.30001707375413
Iteration: 17, Func. Count: 162, Neg. LLF: 168.29655281724035
Iteration: 18, Func. Count: 171, Neg. LLF: 168.29630415298345
Iteration: 19, Func. Count: 180, Neg. LLF: 168.29627535345833
Iteration: 20, Func. Count: 188, Neg. LLF: 168.29627535349016
Optimization terminated successfully (Exit mode 0)
Current function value: 168.29627535345833
Iterations: 20
Function evaluations: 188
Gradient evaluations: 20
Iteration: 1, Func. Count: 11, Neg. LLF: 200.85481843568363
Iteration: 2, Func. Count: 22, Neg. LLF: 183.93367179393317
Iteration: 3, Func. Count: 33, Neg. LLF: 265.78970964722726
Iteration: 4, Func. Count: 44, Neg. LLF: 173.41863909941242
Iteration: 5, Func. Count: 55, Neg. LLF: 170.32722281819994
Iteration: 6, Func. Count: 66, Neg. LLF: 169.02281018450475
Iteration: 7, Func. Count: 77, Neg. LLF: 168.02781391979093
Iteration: 8, Func. Count: 87, Neg. LLF: 167.9788628208773
Iteration: 9, Func. Count: 97, Neg. LLF: 168.15744260716457
Iteration: 10, Func. Count: 108, Neg. LLF: 168.05775864223233
Iteration: 11, Func. Count: 119, Neg. LLF: 167.8753097747499
Iteration: 12, Func. Count: 129, Neg. LLF: 167.8640731236304
Iteration: 13, Func. Count: 139, Neg. LLF: 167.8148208275896
Iteration: 14, Func. Count: 149, Neg. LLF: 167.80186260048228
Iteration: 15, Func. Count: 159, Neg. LLF: 168.1098577913304
Iteration: 16, Func. Count: 170, Neg. LLF: 167.7698884384089
Iteration: 17, Func. Count: 180, Neg. LLF: 167.76852759489682
Iteration: 18, Func. Count: 190, Neg. LLF: 167.76839745866098
Iteration: 19, Func. Count: 200, Neg. LLF: 167.7683842089284
Iteration: 20, Func. Count: 210, Neg. LLF: 167.76838331627414
Optimization terminated successfully (Exit mode 0)
Current function value: 167.76838331627414
Iterations: 20
Function evaluations: 210
Gradient evaluations: 20
Iteration: 1, Func. Count: 12, Neg. LLF: 1717.5496423417464
Iteration: 2, Func. Count: 25, Neg. LLF: 262.80395311609806
Iteration: 3, Func. Count: 37, Neg. LLF: 186.53505368275628
Iteration: 4, Func. Count: 49, Neg. LLF: 194.51298670242255
Iteration: 5, Func. Count: 61, Neg. LLF: 172.32791935189186
Iteration: 6, Func. Count: 73, Neg. LLF: 194.97866678247738
Iteration: 7, Func. Count: 85, Neg. LLF: 168.4860597304444
Iteration: 8, Func. Count: 96, Neg. LLF: 168.5656206363127
Iteration: 9, Func. Count: 109, Neg. LLF: 179.75224298992254
Iteration: 10, Func. Count: 121, Neg. LLF: 167.7534898424054
Iteration: 11, Func. Count: 132, Neg. LLF: 167.67184014889924
Iteration: 12, Func. Count: 143, Neg. LLF: 167.6537481112087
Iteration: 13, Func. Count: 154, Neg. LLF: 167.64182800069023
Iteration: 14, Func. Count: 165, Neg. LLF: 167.6347401219697
Iteration: 15, Func. Count: 176, Neg. LLF: 167.6298661324914
Iteration: 16, Func. Count: 187, Neg. LLF: 167.62166889755648
Iteration: 17, Func. Count: 198, Neg. LLF: 167.61824085520144
Iteration: 18, Func. Count: 209, Neg. LLF: 167.6155246032376
Iteration: 19, Func. Count: 220, Neg. LLF: 167.6154730938751
Iteration: 20, Func. Count: 231, Neg. LLF: 167.6154712393162
Iteration: 21, Func. Count: 241, Neg. LLF: 167.6154711499343
Optimization terminated successfully (Exit mode 0)
Current function value: 167.6154712393162
Iterations: 21
Function evaluations: 241
Gradient evaluations: 21
Iteration: 1, Func. Count: 13, Neg. LLF: 1850.5218077622646
Iteration: 2, Func. Count: 26, Neg. LLF: 288.72817383558095
Iteration: 3, Func. Count: 39, Neg. LLF: 199.5262368252912
Iteration: 4, Func. Count: 52, Neg. LLF: 206.8937982614134
Iteration: 5, Func. Count: 65, Neg. LLF: 256.01952907384253
Iteration: 6, Func. Count: 78, Neg. LLF: 171.02065136466737
Iteration: 7, Func. Count: 91, Neg. LLF: 168.5432265204062
Iteration: 8, Func. Count: 104, Neg. LLF: 166.8544413958429
Iteration: 9, Func. Count: 117, Neg. LLF: 165.8967982996573
Iteration: 10, Func. Count: 130, Neg. LLF: 166.67161599843524
Iteration: 11, Func. Count: 143, Neg. LLF: 165.11134980020415
Iteration: 12, Func. Count: 155, Neg. LLF: 165.14835781854646
Iteration: 13, Func. Count: 168, Neg. LLF: 165.0738167675248
Iteration: 14, Func. Count: 180, Neg. LLF: 165.06911104590793
Iteration: 15, Func. Count: 192, Neg. LLF: 165.0677569279935
Iteration: 16, Func. Count: 204, Neg. LLF: 165.0657964146091
Iteration: 17, Func. Count: 216, Neg. LLF: 165.06551857183686
Iteration: 18, Func. Count: 228, Neg. LLF: 165.06548983308866
Iteration: 19, Func. Count: 239, Neg. LLF: 165.06548981614688
Optimization terminated successfully (Exit mode 0)
Current function value: 165.06548983308866
Iterations: 19
Function evaluations: 239
Gradient evaluations: 19
Iteration: 1, Func. Count: 10, Neg. LLF: 172.8836101118728
Iteration: 2, Func. Count: 20, Neg. LLF: 170.68003369905855
Iteration: 3, Func. Count: 29, Neg. LLF: 175.1459539272017
Iteration: 4, Func. Count: 40, Neg. LLF: 176.46166782035192
Iteration: 5, Func. Count: 50, Neg. LLF: 170.2695731866055
Iteration: 6, Func. Count: 59, Neg. LLF: 173.24098146314248
Iteration: 7, Func. Count: 69, Neg. LLF: 170.1613490710532
Iteration: 8, Func. Count: 78, Neg. LLF: 170.12554099005834
Iteration: 9, Func. Count: 87, Neg. LLF: 170.11290616735994
Iteration: 10, Func. Count: 96, Neg. LLF: 170.08594345833953
Iteration: 11, Func. Count: 105, Neg. LLF: 169.9226908365293
Iteration: 12, Func. Count: 114, Neg. LLF: 169.6487182498236
Iteration: 13, Func. Count: 123, Neg. LLF: 169.29819716216156
Iteration: 14, Func. Count: 132, Neg. LLF: 169.01185806504847
Iteration: 15, Func. Count: 141, Neg. LLF: 168.65408482286043
Iteration: 16, Func. Count: 150, Neg. LLF: 168.6399581357919
Iteration: 17, Func. Count: 160, Neg. LLF: 168.57135504422908
Iteration: 18, Func. Count: 169, Neg. LLF: 168.5660572129263
Iteration: 19, Func. Count: 178, Neg. LLF: 168.56143497814224
Iteration: 20, Func. Count: 187, Neg. LLF: 168.56042109922194
Iteration: 21, Func. Count: 196, Neg. LLF: 168.56025543075148
Iteration: 22, Func. Count: 205, Neg. LLF: 168.56023364683938
Iteration: 23, Func. Count: 214, Neg. LLF: 168.56023024411982
Iteration: 24, Func. Count: 222, Neg. LLF: 168.56023024412437
Optimization terminated successfully (Exit mode 0)
Current function value: 168.56023024411982
Iterations: 24
Function evaluations: 222
Gradient evaluations: 24
Iteration: 1, Func. Count: 11, Neg. LLF: 280.14950941409256
Iteration: 2, Func. Count: 22, Neg. LLF: 183.68777731095972
Iteration: 3, Func. Count: 33, Neg. LLF: 271.7218280762647
Iteration: 4, Func. Count: 44, Neg. LLF: 172.05154355132726
Iteration: 5, Func. Count: 55, Neg. LLF: 171.70329748569398
Iteration: 6, Func. Count: 66, Neg. LLF: 171.1333397636342
Iteration: 7, Func. Count: 77, Neg. LLF: 169.65902068316745
Iteration: 8, Func. Count: 88, Neg. LLF: 168.40704658350268
Iteration: 9, Func. Count: 98, Neg. LLF: 168.3503831094567
Iteration: 10, Func. Count: 108, Neg. LLF: 168.2922091841389
Iteration: 11, Func. Count: 118, Neg. LLF: 168.13602310093802
Iteration: 12, Func. Count: 128, Neg. LLF: 168.09001142255264
Iteration: 13, Func. Count: 138, Neg. LLF: 168.06812141548082
Iteration: 14, Func. Count: 148, Neg. LLF: 168.06408393717825
Iteration: 15, Func. Count: 158, Neg. LLF: 168.0617679950657
Iteration: 16, Func. Count: 168, Neg. LLF: 168.0610221365319
Iteration: 17, Func. Count: 178, Neg. LLF: 168.06082018790147
Iteration: 18, Func. Count: 188, Neg. LLF: 168.06075516427902
Iteration: 19, Func. Count: 198, Neg. LLF: 168.06062577415798
Iteration: 20, Func. Count: 208, Neg. LLF: 168.06042877343592
Iteration: 21, Func. Count: 218, Neg. LLF: 168.0602151627168
Iteration: 22, Func. Count: 228, Neg. LLF: 168.0601228481229
Iteration: 23, Func. Count: 238, Neg. LLF: 168.06011062313823
Iteration: 24, Func. Count: 248, Neg. LLF: 168.06010920914264
Iteration: 25, Func. Count: 257, Neg. LLF: 168.06010926808088
Optimization terminated successfully (Exit mode 0)
Current function value: 168.06010920914264
Iterations: 25
Function evaluations: 257
Gradient evaluations: 25
Iteration: 1, Func. Count: 12, Neg. LLF: 195.77581734359214
Iteration: 2, Func. Count: 24, Neg. LLF: 172.6830487731464
Iteration: 3, Func. Count: 36, Neg. LLF: 170.08460536398286
Iteration: 4, Func. Count: 47, Neg. LLF: 174.6230500696912
Iteration: 5, Func. Count: 59, Neg. LLF: 193.28968898980708
Iteration: 6, Func. Count: 71, Neg. LLF: 175.12258146637106
Iteration: 7, Func. Count: 83, Neg. LLF: 171.45767315750226
Iteration: 8, Func. Count: 95, Neg. LLF: 176.69065565380728
Iteration: 9, Func. Count: 107, Neg. LLF: 169.1078104570792
Iteration: 10, Func. Count: 119, Neg. LLF: 168.90154793714493
Iteration: 11, Func. Count: 130, Neg. LLF: 168.88982760953104
Iteration: 12, Func. Count: 141, Neg. LLF: 168.87267676745608
Iteration: 13, Func. Count: 152, Neg. LLF: 168.84365232171155
Iteration: 14, Func. Count: 163, Neg. LLF: 168.78042203924204
Iteration: 15, Func. Count: 174, Neg. LLF: 168.68814581499834
Iteration: 16, Func. Count: 185, Neg. LLF: 168.63149661406607
Iteration: 17, Func. Count: 196, Neg. LLF: 168.5661291666773
Iteration: 18, Func. Count: 207, Neg. LLF: 168.56181190782019
Iteration: 19, Func. Count: 218, Neg. LLF: 168.58556574394837
Iteration: 20, Func. Count: 230, Neg. LLF: 168.55827729855756
Iteration: 21, Func. Count: 241, Neg. LLF: 168.55612864460153
Iteration: 22, Func. Count: 252, Neg. LLF: 168.55487148438633
Iteration: 23, Func. Count: 263, Neg. LLF: 168.55474041232353
Iteration: 24, Func. Count: 274, Neg. LLF: 168.5547370330629
Iteration: 25, Func. Count: 284, Neg. LLF: 168.5547370920198
Optimization terminated successfully (Exit mode 0)
Current function value: 168.5547370330629
Iterations: 25
Function evaluations: 284
Gradient evaluations: 25
Iteration: 1, Func. Count: 13, Neg. LLF: 1084.5655992042487
Iteration: 2, Func. Count: 26, Neg. LLF: 249.11534688086715
Iteration: 3, Func. Count: 39, Neg. LLF: 193.0183058713992
Iteration: 4, Func. Count: 52, Neg. LLF: 192.81036668865357
Iteration: 5, Func. Count: 65, Neg. LLF: 196.44949680461093
Iteration: 6, Func. Count: 78, Neg. LLF: 181.12240105997267
Iteration: 7, Func. Count: 91, Neg. LLF: 174.8106403953093
Iteration: 8, Func. Count: 104, Neg. LLF: 171.58893421024345
Iteration: 9, Func. Count: 117, Neg. LLF: 171.2597538735354
Iteration: 10, Func. Count: 130, Neg. LLF: 168.74007872212655
Iteration: 11, Func. Count: 142, Neg. LLF: 169.0879906557404
Iteration: 12, Func. Count: 156, Neg. LLF: 206.0826687005722
Iteration: 13, Func. Count: 169, Neg. LLF: 169.56775416124563
Iteration: 14, Func. Count: 182, Neg. LLF: 167.73469934367898
Iteration: 15, Func. Count: 194, Neg. LLF: 167.6970289641628
Iteration: 16, Func. Count: 206, Neg. LLF: 167.6735197691649
Iteration: 17, Func. Count: 218, Neg. LLF: 167.64497413284343
Iteration: 18, Func. Count: 230, Neg. LLF: 167.6387158437789
Iteration: 19, Func. Count: 242, Neg. LLF: 167.63566176345805
Iteration: 20, Func. Count: 254, Neg. LLF: 167.62313304293792
Iteration: 21, Func. Count: 266, Neg. LLF: 167.61748452094562
Iteration: 22, Func. Count: 278, Neg. LLF: 167.61576263493458
Iteration: 23, Func. Count: 290, Neg. LLF: 167.61547517722605
Iteration: 24, Func. Count: 302, Neg. LLF: 167.61547160847465
Iteration: 25, Func. Count: 313, Neg. LLF: 167.61547151881348
Optimization terminated successfully (Exit mode 0)
Current function value: 167.61547160847465
Iterations: 25
Function evaluations: 313
Gradient evaluations: 25
Iteration: 1, Func. Count: 14, Neg. LLF: 1853.8245629944402
Iteration: 2, Func. Count: 28, Neg. LLF: 316.4409003622768
Iteration: 3, Func. Count: 42, Neg. LLF: 199.50264269138003
Iteration: 4, Func. Count: 56, Neg. LLF: 213.31393234664753
Iteration: 5, Func. Count: 70, Neg. LLF: 324.1590747863868
Iteration: 6, Func. Count: 84, Neg. LLF: 170.77353690587384
Iteration: 7, Func. Count: 98, Neg. LLF: 166.5159088148702
Iteration: 8, Func. Count: 111, Neg. LLF: 166.8652959043466
Iteration: 9, Func. Count: 125, Neg. LLF: 165.97927855357628
Iteration: 10, Func. Count: 139, Neg. LLF: 165.4270794336989
Iteration: 11, Func. Count: 152, Neg. LLF: 165.44884920727222
Iteration: 12, Func. Count: 166, Neg. LLF: 165.89293797479587
Iteration: 13, Func. Count: 180, Neg. LLF: 165.31441922903997
Iteration: 14, Func. Count: 193, Neg. LLF: 165.30552466696426
Iteration: 15, Func. Count: 206, Neg. LLF: 165.281885034706
Iteration: 16, Func. Count: 219, Neg. LLF: 165.27027254191992
Iteration: 17, Func. Count: 232, Neg. LLF: 165.251253167055
Iteration: 18, Func. Count: 245, Neg. LLF: 165.1918116109701
Iteration: 19, Func. Count: 258, Neg. LLF: 165.93545551106234
Iteration: 20, Func. Count: 272, Neg. LLF: 165.42739101577294
Iteration: 21, Func. Count: 287, Neg. LLF: 165.09735512781435
Iteration: 22, Func. Count: 300, Neg. LLF: 165.07964572980435
Iteration: 23, Func. Count: 313, Neg. LLF: 165.07922468844401
Iteration: 24, Func. Count: 326, Neg. LLF: 165.07905119665656
Iteration: 25, Func. Count: 339, Neg. LLF: 165.07887983309274
Iteration: 26, Func. Count: 352, Neg. LLF: 165.07507445877488
Iteration: 27, Func. Count: 365, Neg. LLF: 165.0676198257703
Iteration: 28, Func. Count: 378, Neg. LLF: 165.0670230311522
Iteration: 29, Func. Count: 391, Neg. LLF: 165.06558129549214
Iteration: 30, Func. Count: 404, Neg. LLF: 165.06549834595046
Iteration: 31, Func. Count: 417, Neg. LLF: 165.11649011460935
Optimization terminated successfully (Exit mode 0)
Current function value: 165.06549809303863
Iterations: 32
Function evaluations: 420
Gradient evaluations: 31
Iteration: 1, Func. Count: 11, Neg. LLF: 172.92378284865936
Iteration: 2, Func. Count: 22, Neg. LLF: 170.53589327926122
Iteration: 3, Func. Count: 32, Neg. LLF: 179.85982611286232
Iteration: 4, Func. Count: 44, Neg. LLF: 176.44076407000424
Iteration: 5, Func. Count: 55, Neg. LLF: 170.2929721050846
Iteration: 6, Func. Count: 65, Neg. LLF: 172.98147377606233
Iteration: 7, Func. Count: 76, Neg. LLF: 170.1632005625538
Iteration: 8, Func. Count: 86, Neg. LLF: 170.13783963808137
Iteration: 9, Func. Count: 96, Neg. LLF: 170.11029503668223
Iteration: 10, Func. Count: 106, Neg. LLF: 170.09185322623242
Iteration: 11, Func. Count: 116, Neg. LLF: 170.01974347706093
Iteration: 12, Func. Count: 126, Neg. LLF: 169.82356029817564
Iteration: 13, Func. Count: 136, Neg. LLF: 169.46278816615478
Iteration: 14, Func. Count: 146, Neg. LLF: 169.3925656034393
Iteration: 15, Func. Count: 157, Neg. LLF: 168.83585691012598
Iteration: 16, Func. Count: 167, Neg. LLF: 168.63807539536668
Iteration: 17, Func. Count: 177, Neg. LLF: 168.6936093757554
Iteration: 18, Func. Count: 188, Neg. LLF: 168.50276409777842
Iteration: 19, Func. Count: 198, Neg. LLF: 168.55884802187214
Iteration: 20, Func. Count: 209, Neg. LLF: 168.44475566276193
Iteration: 21, Func. Count: 220, Neg. LLF: 168.31587323747723
Iteration: 22, Func. Count: 230, Neg. LLF: 167.9637002856096
Iteration: 23, Func. Count: 240, Neg. LLF: 167.94667025582078
Iteration: 24, Func. Count: 250, Neg. LLF: 167.93747909662247
Iteration: 25, Func. Count: 260, Neg. LLF: 167.92702327640447
Iteration: 26, Func. Count: 270, Neg. LLF: 167.92573552341915
Iteration: 27, Func. Count: 280, Neg. LLF: 167.92568220945364
Iteration: 28, Func. Count: 290, Neg. LLF: 167.92568286843465
Optimization terminated successfully (Exit mode 0)
Current function value: 167.92568286843465
Iterations: 28
Function evaluations: 290
Gradient evaluations: 28
Iteration: 1, Func. Count: 12, Neg. LLF: 279.8604439789401
Iteration: 2, Func. Count: 24, Neg. LLF: 183.73953394150743
Iteration: 3, Func. Count: 36, Neg. LLF: 189.97265306571887
Iteration: 4, Func. Count: 48, Neg. LLF: 172.4380758679416
Iteration: 5, Func. Count: 60, Neg. LLF: 170.90198803375827
Iteration: 6, Func. Count: 72, Neg. LLF: 169.44654624021024
Iteration: 7, Func. Count: 84, Neg. LLF: 169.498137654115
Iteration: 8, Func. Count: 96, Neg. LLF: 168.8224410857206
Iteration: 9, Func. Count: 108, Neg. LLF: 168.3421253046076
Iteration: 10, Func. Count: 119, Neg. LLF: 168.25993217925594
Iteration: 11, Func. Count: 130, Neg. LLF: 168.04011497557403
Iteration: 12, Func. Count: 141, Neg. LLF: 167.97464216318335
Iteration: 13, Func. Count: 152, Neg. LLF: 167.9584118367718
Iteration: 14, Func. Count: 163, Neg. LLF: 167.95340744438522
Iteration: 15, Func. Count: 174, Neg. LLF: 167.94644949545
Iteration: 16, Func. Count: 185, Neg. LLF: 167.9449441486486
Iteration: 17, Func. Count: 196, Neg. LLF: 167.9415038268277
Iteration: 18, Func. Count: 207, Neg. LLF: 167.93735688413855
Iteration: 19, Func. Count: 218, Neg. LLF: 167.931978005103
Iteration: 20, Func. Count: 229, Neg. LLF: 167.92789218642227
Iteration: 21, Func. Count: 240, Neg. LLF: 167.92575199648942
Iteration: 22, Func. Count: 251, Neg. LLF: 167.92569188160513
Iteration: 23, Func. Count: 262, Neg. LLF: 167.9256834903203
Iteration: 24, Func. Count: 272, Neg. LLF: 167.92568356650926
Optimization terminated successfully (Exit mode 0)
Current function value: 167.9256834903203
Iterations: 24
Function evaluations: 272
Gradient evaluations: 24
Iteration: 1, Func. Count: 13, Neg. LLF: 195.758415939793
Iteration: 2, Func. Count: 26, Neg. LLF: 174.32014316517862
Iteration: 3, Func. Count: 39, Neg. LLF: 170.08223202946593
Iteration: 4, Func. Count: 51, Neg. LLF: 175.39473325138033
Iteration: 5, Func. Count: 64, Neg. LLF: 193.84825733267255
Iteration: 6, Func. Count: 77, Neg. LLF: 175.15748135555728
Iteration: 7, Func. Count: 90, Neg. LLF: 171.22628208924482
Iteration: 8, Func. Count: 103, Neg. LLF: 183.1509200677687
Iteration: 9, Func. Count: 116, Neg. LLF: 168.93035682922218
Iteration: 10, Func. Count: 128, Neg. LLF: 168.89520568568892
Iteration: 11, Func. Count: 140, Neg. LLF: 168.88515043666817
Iteration: 12, Func. Count: 152, Neg. LLF: 168.86772607027478
Iteration: 13, Func. Count: 164, Neg. LLF: 168.839604466115
Iteration: 14, Func. Count: 176, Neg. LLF: 168.74560773595195
Iteration: 15, Func. Count: 188, Neg. LLF: 168.6491760207474
Iteration: 16, Func. Count: 200, Neg. LLF: 168.56222826072815
Iteration: 17, Func. Count: 212, Neg. LLF: 175.892690156264
Iteration: 18, Func. Count: 225, Neg. LLF: 168.43928778953185
Iteration: 19, Func. Count: 237, Neg. LLF: 168.39115993904488
Iteration: 20, Func. Count: 249, Neg. LLF: 168.13384941043324
Iteration: 21, Func. Count: 261, Neg. LLF: 168.0800664834777
Iteration: 22, Func. Count: 273, Neg. LLF: 168.0224380977277
Iteration: 23, Func. Count: 285, Neg. LLF: 167.9525822481808
Iteration: 24, Func. Count: 297, Neg. LLF: 167.93635885345208
Iteration: 25, Func. Count: 309, Neg. LLF: 167.92901830265473
Iteration: 26, Func. Count: 321, Neg. LLF: 167.9264562274533
Iteration: 27, Func. Count: 333, Neg. LLF: 167.92581823637497
Iteration: 28, Func. Count: 345, Neg. LLF: 168.0212489723896
Iteration: 29, Func. Count: 359, Neg. LLF: 167.9406364492967
Iteration: 30, Func. Count: 373, Neg. LLF: 167.92605181817524
Iteration: 31, Func. Count: 387, Neg. LLF: 167.92571936406867
Iteration: 32, Func. Count: 400, Neg. LLF: 167.92580259644106
Iteration: 33, Func. Count: 413, Neg. LLF: 167.92570002148688
Iteration: 34, Func. Count: 425, Neg. LLF: 167.92569326817377
Iteration: 35, Func. Count: 437, Neg. LLF: 167.92568735668067
Iteration: 36, Func. Count: 449, Neg. LLF: 167.92568372531608
Iteration: 37, Func. Count: 461, Neg. LLF: 167.9256830785742
Optimization terminated successfully (Exit mode 0)
Current function value: 167.9256830785742
Iterations: 38
Function evaluations: 461
Gradient evaluations: 37
Iteration: 1, Func. Count: 14, Neg. LLF: 1056.24939350406
Iteration: 2, Func. Count: 28, Neg. LLF: 728.7470130201887
Iteration: 3, Func. Count: 42, Neg. LLF: 205.6759414380253
Iteration: 4, Func. Count: 56, Neg. LLF: 195.34228834143377
Iteration: 5, Func. Count: 70, Neg. LLF: 203.57971317942048
Iteration: 6, Func. Count: 84, Neg. LLF: 175.09709945283532
Iteration: 7, Func. Count: 98, Neg. LLF: 181.70161149641916
Iteration: 8, Func. Count: 112, Neg. LLF: 174.1174180454194
Iteration: 9, Func. Count: 126, Neg. LLF: 172.86895021816068
Iteration: 10, Func. Count: 140, Neg. LLF: 171.59784975217036
Iteration: 11, Func. Count: 154, Neg. LLF: 170.88462801439326
Iteration: 12, Func. Count: 168, Neg. LLF: 170.62239072682144
Iteration: 13, Func. Count: 182, Neg. LLF: 170.37585395700003
Iteration: 14, Func. Count: 196, Neg. LLF: 170.18356690723817
Iteration: 15, Func. Count: 210, Neg. LLF: 167.96936637558034
Iteration: 16, Func. Count: 223, Neg. LLF: 167.804167583989
Iteration: 17, Func. Count: 236, Neg. LLF: 168.1948562317707
Iteration: 18, Func. Count: 250, Neg. LLF: 167.71044429838628
Iteration: 19, Func. Count: 263, Neg. LLF: 167.70287722946807
Iteration: 20, Func. Count: 277, Neg. LLF: 167.6685579074312
Iteration: 21, Func. Count: 290, Neg. LLF: 167.65883653527894
Iteration: 22, Func. Count: 303, Neg. LLF: 167.64968992555183
Iteration: 23, Func. Count: 316, Neg. LLF: 167.63666099327045
Iteration: 24, Func. Count: 329, Neg. LLF: 167.63037718198808
Iteration: 25, Func. Count: 342, Neg. LLF: 167.62565865868282
Iteration: 26, Func. Count: 355, Neg. LLF: 167.6199305798475
Iteration: 27, Func. Count: 368, Neg. LLF: 167.61705133295206
Iteration: 28, Func. Count: 381, Neg. LLF: 167.61585500862782
Iteration: 29, Func. Count: 394, Neg. LLF: 167.61552060425748
Iteration: 30, Func. Count: 407, Neg. LLF: 167.615471953938
Iteration: 31, Func. Count: 420, Neg. LLF: 167.61547122690592
Optimization terminated successfully (Exit mode 0)
Current function value: 167.61547122690592
Iterations: 31
Function evaluations: 420
Gradient evaluations: 31
Iteration: 1, Func. Count: 15, Neg. LLF: 1144.3493038336724
Iteration: 2, Func. Count: 30, Neg. LLF: 190.52371103921806
Iteration: 3, Func. Count: 45, Neg. LLF: 190.9310976003897
Iteration: 4, Func. Count: 60, Neg. LLF: 196.84790478756778
Iteration: 5, Func. Count: 75, Neg. LLF: 169.2054243743672
Iteration: 6, Func. Count: 89, Neg. LLF: 177.78271556004256
Iteration: 7, Func. Count: 105, Neg. LLF: 183.78275120775956
Iteration: 8, Func. Count: 121, Neg. LLF: 167.56585963120656
Iteration: 9, Func. Count: 136, Neg. LLF: 166.0270528003081
Iteration: 10, Func. Count: 150, Neg. LLF: 165.64721671527383
Iteration: 11, Func. Count: 164, Neg. LLF: 165.49282414494823
Iteration: 12, Func. Count: 178, Neg. LLF: 165.4235291874681
Iteration: 13, Func. Count: 192, Neg. LLF: 166.05078002699108
Iteration: 14, Func. Count: 207, Neg. LLF: 165.55261585373154
Iteration: 15, Func. Count: 222, Neg. LLF: 165.33586559685315
Iteration: 16, Func. Count: 236, Neg. LLF: 165.3044138360104
Iteration: 17, Func. Count: 250, Neg. LLF: 165.29030315155893
Iteration: 18, Func. Count: 264, Neg. LLF: 165.28185627537917
Iteration: 19, Func. Count: 278, Neg. LLF: 165.2686007225973
Iteration: 20, Func. Count: 292, Neg. LLF: 165.24495639922938
Iteration: 21, Func. Count: 306, Neg. LLF: 165.22671651694472
Iteration: 22, Func. Count: 320, Neg. LLF: 165.13180096957922
Iteration: 23, Func. Count: 334, Neg. LLF: 165.09572127053718
Iteration: 24, Func. Count: 348, Neg. LLF: 165.08184420116248
Iteration: 25, Func. Count: 362, Neg. LLF: 165.07997001320547
Iteration: 26, Func. Count: 376, Neg. LLF: 165.07901298893216
Iteration: 27, Func. Count: 390, Neg. LLF: 165.0787094348385
Iteration: 28, Func. Count: 404, Neg. LLF: 165.0784063953987
Iteration: 29, Func. Count: 418, Neg. LLF: 165.07786641197774
Iteration: 30, Func. Count: 432, Neg. LLF: 165.07321944899255
Iteration: 31, Func. Count: 446, Neg. LLF: 165.07128378547864
Iteration: 32, Func. Count: 460, Neg. LLF: 165.06613566789787
Iteration: 33, Func. Count: 474, Neg. LLF: 165.06555105236734
Iteration: 34, Func. Count: 488, Neg. LLF: 165.06549463007158
Iteration: 35, Func. Count: 502, Neg. LLF: 165.06549314920537
Iteration: 36, Func. Count: 516, Neg. LLF: 165.0654926754941
Optimization terminated successfully (Exit mode 0)
Current function value: 165.0654926754941
Iterations: 36
Function evaluations: 516
Gradient evaluations: 36
Iteration: 1, Func. Count: 8, Neg. LLF: 173.7050574399107
Iteration: 2, Func. Count: 16, Neg. LLF: 176.53887624100437
Iteration: 3, Func. Count: 25, Neg. LLF: 171.5819150575892
Iteration: 4, Func. Count: 32, Neg. LLF: 171.52299437100066
Iteration: 5, Func. Count: 39, Neg. LLF: 171.400579693473
Iteration: 6, Func. Count: 46, Neg. LLF: 171.35588351242424
Iteration: 7, Func. Count: 53, Neg. LLF: 171.28019041036555
Iteration: 8, Func. Count: 60, Neg. LLF: 171.2069718272458
Iteration: 9, Func. Count: 67, Neg. LLF: 170.74819589285855
Iteration: 10, Func. Count: 74, Neg. LLF: 186.4034120481997
Iteration: 11, Func. Count: 82, Neg. LLF: 179.66781221264935
Iteration: 12, Func. Count: 90, Neg. LLF: 182.18168773808293
Iteration: 13, Func. Count: 98, Neg. LLF: 170.42581056246547
Iteration: 14, Func. Count: 106, Neg. LLF: 169.54480359202051
Iteration: 15, Func. Count: 113, Neg. LLF: 169.5194585760009
Iteration: 16, Func. Count: 120, Neg. LLF: 169.49682489582074
Iteration: 17, Func. Count: 127, Neg. LLF: 169.49388965068442
Iteration: 18, Func. Count: 134, Neg. LLF: 169.49380079946124
Iteration: 19, Func. Count: 141, Neg. LLF: 169.4937928828145
Iteration: 20, Func. Count: 148, Neg. LLF: 169.4937874977584
Iteration: 21, Func. Count: 154, Neg. LLF: 169.49378752610772
Optimization terminated successfully (Exit mode 0)
Current function value: 169.4937874977584
Iterations: 21
Function evaluations: 154
Gradient evaluations: 21
Iteration: 1, Func. Count: 9, Neg. LLF: 275.14628670162296
Iteration: 2, Func. Count: 18, Neg. LLF: 904.13537918018
Iteration: 3, Func. Count: 28, Neg. LLF: 273.71234031296524
Iteration: 4, Func. Count: 37, Neg. LLF: 171.06505648437988
Iteration: 5, Func. Count: 45, Neg. LLF: 175.48435235580448
Iteration: 6, Func. Count: 54, Neg. LLF: 211.3321361369451
Iteration: 7, Func. Count: 63, Neg. LLF: 170.65615111883193
Iteration: 8, Func. Count: 72, Neg. LLF: 170.97517759178942
Iteration: 9, Func. Count: 81, Neg. LLF: 169.91913955056907
Iteration: 10, Func. Count: 89, Neg. LLF: 169.80968935244647
Iteration: 11, Func. Count: 97, Neg. LLF: 169.78051537691195
Iteration: 12, Func. Count: 105, Neg. LLF: 169.71108277029379
Iteration: 13, Func. Count: 113, Neg. LLF: 169.56465009130042
Iteration: 14, Func. Count: 121, Neg. LLF: 169.5441247687911
Iteration: 15, Func. Count: 129, Neg. LLF: 169.53511059844155
Iteration: 16, Func. Count: 137, Neg. LLF: 169.53116532009864
Iteration: 17, Func. Count: 145, Neg. LLF: 169.52976227236059
Iteration: 18, Func. Count: 153, Neg. LLF: 169.52955799064682
Iteration: 19, Func. Count: 161, Neg. LLF: 169.52950675561726
Iteration: 20, Func. Count: 169, Neg. LLF: 169.52932185489493
Iteration: 21, Func. Count: 177, Neg. LLF: 169.52207666670998
Iteration: 22, Func. Count: 185, Neg. LLF: 169.51947765476612
Iteration: 23, Func. Count: 193, Neg. LLF: 169.50861090198984
Iteration: 24, Func. Count: 201, Neg. LLF: 169.49922315922672
Iteration: 25, Func. Count: 209, Neg. LLF: 169.49547650759348
Iteration: 26, Func. Count: 217, Neg. LLF: 169.49406511734085
Iteration: 27, Func. Count: 225, Neg. LLF: 169.4938179344558
Iteration: 28, Func. Count: 233, Neg. LLF: 169.49378961304953
Iteration: 29, Func. Count: 241, Neg. LLF: 169.49378772164195
Iteration: 30, Func. Count: 248, Neg. LLF: 169.49378772498454
Optimization terminated successfully (Exit mode 0)
Current function value: 169.49378772164195
Iterations: 30
Function evaluations: 248
Gradient evaluations: 30
Iteration: 1, Func. Count: 10, Neg. LLF: 1985.2942882711343
Iteration: 2, Func. Count: 21, Neg. LLF: 1011.4008827243255
Iteration: 3, Func. Count: 31, Neg. LLF: 172.57445132186854
Iteration: 4, Func. Count: 40, Neg. LLF: 179.45305766544192
Iteration: 5, Func. Count: 50, Neg. LLF: 238.56094523811737
Iteration: 6, Func. Count: 60, Neg. LLF: 171.3757622874449
Iteration: 7, Func. Count: 70, Neg. LLF: 169.49344169852017
Iteration: 8, Func. Count: 79, Neg. LLF: 169.23319524422925
Iteration: 9, Func. Count: 88, Neg. LLF: 169.2155943059053
Iteration: 10, Func. Count: 98, Neg. LLF: 168.81748002825907
Iteration: 11, Func. Count: 107, Neg. LLF: 168.77671927621952
Iteration: 12, Func. Count: 116, Neg. LLF: 168.757477957652
Iteration: 13, Func. Count: 125, Neg. LLF: 168.74385429858594
Iteration: 14, Func. Count: 134, Neg. LLF: 168.74060718758082
Iteration: 15, Func. Count: 143, Neg. LLF: 168.74033420695295
Iteration: 16, Func. Count: 152, Neg. LLF: 168.7403001673888
Iteration: 17, Func. Count: 161, Neg. LLF: 168.74029867432608
Iteration: 18, Func. Count: 169, Neg. LLF: 168.74029859374156
Optimization terminated successfully (Exit mode 0)
Current function value: 168.74029867432608
Iterations: 18
Function evaluations: 169
Gradient evaluations: 18
Iteration: 1, Func. Count: 11, Neg. LLF: 173.67697478906652
Iteration: 2, Func. Count: 21, Neg. LLF: 174.2640677718379
Iteration: 3, Func. Count: 33, Neg. LLF: 184.5623596034972
Iteration: 4, Func. Count: 44, Neg. LLF: 176.61017066009097
Iteration: 5, Func. Count: 55, Neg. LLF: 176.7465317730108
Iteration: 6, Func. Count: 66, Neg. LLF: 171.79889226738413
Iteration: 7, Func. Count: 77, Neg. LLF: 171.41299017098254
Iteration: 8, Func. Count: 87, Neg. LLF: 171.36726140347633
Iteration: 9, Func. Count: 97, Neg. LLF: 171.29809403406284
Iteration: 10, Func. Count: 107, Neg. LLF: 171.1464657552374
Iteration: 11, Func. Count: 117, Neg. LLF: 170.643016153201
Iteration: 12, Func. Count: 127, Neg. LLF: 170.4444470620301
Iteration: 13, Func. Count: 137, Neg. LLF: 169.89728141855343
Iteration: 14, Func. Count: 147, Neg. LLF: 183.17209169088642
Iteration: 15, Func. Count: 159, Neg. LLF: 169.57436640759084
Iteration: 16, Func. Count: 169, Neg. LLF: 169.5273306181171
Iteration: 17, Func. Count: 179, Neg. LLF: 169.507570097122
Iteration: 18, Func. Count: 189, Neg. LLF: 169.4955401638976
Iteration: 19, Func. Count: 199, Neg. LLF: 169.4943931613217
Iteration: 20, Func. Count: 209, Neg. LLF: 169.49381918796615
Iteration: 21, Func. Count: 219, Neg. LLF: 169.49379326373256
Iteration: 22, Func. Count: 229, Neg. LLF: 169.49378776205148
Iteration: 23, Func. Count: 238, Neg. LLF: 169.493787790727
Optimization terminated successfully (Exit mode 0)
Current function value: 169.49378776205148
Iterations: 23
Function evaluations: 238
Gradient evaluations: 23
Iteration: 1, Func. Count: 12, Neg. LLF: 173.67714426369847
Iteration: 2, Func. Count: 23, Neg. LLF: 174.3507067190058
Iteration: 3, Func. Count: 36, Neg. LLF: 184.53415194159288
Iteration: 4, Func. Count: 48, Neg. LLF: 176.5720241916011
Iteration: 5, Func. Count: 60, Neg. LLF: 176.73609084223375
Iteration: 6, Func. Count: 72, Neg. LLF: 171.7874119087548
Iteration: 7, Func. Count: 84, Neg. LLF: 171.41295564025268
Iteration: 8, Func. Count: 95, Neg. LLF: 171.36624085103313
Iteration: 9, Func. Count: 106, Neg. LLF: 171.3075708996576
Iteration: 10, Func. Count: 117, Neg. LLF: 171.1088080398793
Iteration: 11, Func. Count: 128, Neg. LLF: 170.63679311724195
Iteration: 12, Func. Count: 139, Neg. LLF: 170.39123050797832
Iteration: 13, Func. Count: 150, Neg. LLF: 172.62718674658493
Iteration: 14, Func. Count: 162, Neg. LLF: 182.90882985358414
Iteration: 15, Func. Count: 174, Neg. LLF: 168.92735213989215
Iteration: 16, Func. Count: 185, Neg. LLF: 168.24120870592634
Iteration: 17, Func. Count: 196, Neg. LLF: 168.3720597402321
Iteration: 18, Func. Count: 208, Neg. LLF: 167.97377784978713
Iteration: 19, Func. Count: 219, Neg. LLF: 167.84709323965504
Iteration: 20, Func. Count: 230, Neg. LLF: 167.34768313169283
Iteration: 21, Func. Count: 241, Neg. LLF: 167.0950175210309
Iteration: 22, Func. Count: 252, Neg. LLF: 166.90824648866482
Iteration: 23, Func. Count: 263, Neg. LLF: 166.86214988985296
Iteration: 24, Func. Count: 274, Neg. LLF: 166.8603273814717
Iteration: 25, Func. Count: 285, Neg. LLF: 166.8599526042675
Iteration: 26, Func. Count: 296, Neg. LLF: 166.85992386241102
Iteration: 27, Func. Count: 307, Neg. LLF: 166.85991759208176
Iteration: 28, Func. Count: 317, Neg. LLF: 166.85991758066186
Optimization terminated successfully (Exit mode 0)
Current function value: 166.85991759208176
Iterations: 28
Function evaluations: 317
Gradient evaluations: 28
Iteration: 1, Func. Count: 9, Neg. LLF: 173.69197651632825
Iteration: 2, Func. Count: 18, Neg. LLF: 176.39457871266526
Iteration: 3, Func. Count: 28, Neg. LLF: 171.70717050794744
Iteration: 4, Func. Count: 36, Neg. LLF: 171.3754398117643
Iteration: 5, Func. Count: 44, Neg. LLF: 171.62062967124444
Iteration: 6, Func. Count: 53, Neg. LLF: 171.1739237266384
Iteration: 7, Func. Count: 61, Neg. LLF: 171.07827692598138
Iteration: 8, Func. Count: 69, Neg. LLF: 170.99270799765242
Iteration: 9, Func. Count: 77, Neg. LLF: 170.48852901482812
Iteration: 10, Func. Count: 85, Neg. LLF: 170.3420916002465
Iteration: 11, Func. Count: 94, Neg. LLF: 169.11001562273634
Iteration: 12, Func. Count: 102, Neg. LLF: 168.91162385728535
Iteration: 13, Func. Count: 110, Neg. LLF: 168.83807741839192
Iteration: 14, Func. Count: 118, Neg. LLF: 168.8404763293861
Iteration: 15, Func. Count: 127, Neg. LLF: 168.82654084574017
Iteration: 16, Func. Count: 135, Neg. LLF: 168.82400037497638
Iteration: 17, Func. Count: 143, Neg. LLF: 168.82364227364107
Iteration: 18, Func. Count: 151, Neg. LLF: 168.82361164951848
Iteration: 19, Func. Count: 159, Neg. LLF: 168.82361046993395
Iteration: 20, Func. Count: 166, Neg. LLF: 168.82361046992034
Optimization terminated successfully (Exit mode 0)
Current function value: 168.82361046993395
Iterations: 20
Function evaluations: 166
Gradient evaluations: 20
Iteration: 1, Func. Count: 10, Neg. LLF: 170.94612592235805
Iteration: 2, Func. Count: 19, Neg. LLF: 172.0065389934442
Iteration: 3, Func. Count: 29, Neg. LLF: 291.7873139958006
Iteration: 4, Func. Count: 39, Neg. LLF: 170.7446453352564
Iteration: 5, Func. Count: 49, Neg. LLF: 169.0644824512721
Iteration: 6, Func. Count: 58, Neg. LLF: 170.74824023262812
Iteration: 7, Func. Count: 68, Neg. LLF: 169.05841964487993
Iteration: 8, Func. Count: 78, Neg. LLF: 168.96301477799864
Iteration: 9, Func. Count: 87, Neg. LLF: 168.957703768816
Iteration: 10, Func. Count: 96, Neg. LLF: 168.92986180503866
Iteration: 11, Func. Count: 105, Neg. LLF: 168.89624372881823
Iteration: 12, Func. Count: 114, Neg. LLF: 168.85749343616024
Iteration: 13, Func. Count: 123, Neg. LLF: 168.83786078492494
Iteration: 14, Func. Count: 132, Neg. LLF: 168.8253887423101
Iteration: 15, Func. Count: 141, Neg. LLF: 168.8237483571336
Iteration: 16, Func. Count: 150, Neg. LLF: 168.8236164040344
Iteration: 17, Func. Count: 159, Neg. LLF: 168.82361095771344
Iteration: 18, Func. Count: 168, Neg. LLF: 168.82361036703148
Optimization terminated successfully (Exit mode 0)
Current function value: 168.82361036703148
Iterations: 18
Function evaluations: 168
Gradient evaluations: 18
Iteration: 1, Func. Count: 11, Neg. LLF: 248.46288739530672
Iteration: 2, Func. Count: 22, Neg. LLF: 279.858570816081
Iteration: 3, Func. Count: 33, Neg. LLF: 361.256814935693
Iteration: 4, Func. Count: 44, Neg. LLF: 196.79261573706833
Iteration: 5, Func. Count: 55, Neg. LLF: 220.78605399624587
Iteration: 6, Func. Count: 66, Neg. LLF: 179.4823019152201
Iteration: 7, Func. Count: 77, Neg. LLF: 174.13411014941346
Iteration: 8, Func. Count: 88, Neg. LLF: 175.93622891345711
Iteration: 9, Func. Count: 99, Neg. LLF: 170.5854777353228
Iteration: 10, Func. Count: 110, Neg. LLF: 169.33180206121733
Iteration: 11, Func. Count: 121, Neg. LLF: 168.55256011216815
Iteration: 12, Func. Count: 131, Neg. LLF: 168.54607977003073
Iteration: 13, Func. Count: 142, Neg. LLF: 168.45639654216643
Iteration: 14, Func. Count: 152, Neg. LLF: 168.4481272457966
Iteration: 15, Func. Count: 162, Neg. LLF: 168.44790355574662
Iteration: 16, Func. Count: 173, Neg. LLF: 168.44583343910946
Iteration: 17, Func. Count: 183, Neg. LLF: 168.44582405753673
Iteration: 18, Func. Count: 193, Neg. LLF: 168.44577303926488
Iteration: 19, Func. Count: 203, Neg. LLF: 168.4454814227659
Iteration: 20, Func. Count: 213, Neg. LLF: 168.44352192858378
Iteration: 21, Func. Count: 223, Neg. LLF: 168.67450876386056
Iteration: 22, Func. Count: 234, Neg. LLF: 168.44218934281994
Iteration: 23, Func. Count: 244, Neg. LLF: 168.44216414254467
Iteration: 24, Func. Count: 254, Neg. LLF: 168.44216006250147
Iteration: 25, Func. Count: 263, Neg. LLF: 168.44216003546595
Optimization terminated successfully (Exit mode 0)
Current function value: 168.44216006250147
Iterations: 25
Function evaluations: 263
Gradient evaluations: 25
Iteration: 1, Func. Count: 12, Neg. LLF: 254.6258706032474
Iteration: 2, Func. Count: 24, Neg. LLF: 1591.4752887259006
Iteration: 3, Func. Count: 37, Neg. LLF: 1517.6508201736415
Iteration: 4, Func. Count: 49, Neg. LLF: 270.617887902547
Iteration: 5, Func. Count: 61, Neg. LLF: 214.2562957065501
Iteration: 6, Func. Count: 73, Neg. LLF: 202.26951108290177
Iteration: 7, Func. Count: 85, Neg. LLF: 191.6220194046317
Iteration: 8, Func. Count: 97, Neg. LLF: 177.61487648964626
Iteration: 9, Func. Count: 109, Neg. LLF: 177.20415118153795
Iteration: 10, Func. Count: 121, Neg. LLF: 173.27523280815157
Iteration: 11, Func. Count: 133, Neg. LLF: 172.28630669975865
Iteration: 12, Func. Count: 145, Neg. LLF: 170.97170105379018
Iteration: 13, Func. Count: 157, Neg. LLF: 170.62457012828457
Iteration: 14, Func. Count: 169, Neg. LLF: 169.83852851106
Iteration: 15, Func. Count: 181, Neg. LLF: 169.7247831046083
Iteration: 16, Func. Count: 193, Neg. LLF: 168.57396553309886
Iteration: 17, Func. Count: 204, Neg. LLF: 168.57456668268998
Iteration: 18, Func. Count: 216, Neg. LLF: 168.54641871128044
Iteration: 19, Func. Count: 227, Neg. LLF: 168.53998890046216
Iteration: 20, Func. Count: 238, Neg. LLF: 168.53772456768613
Iteration: 21, Func. Count: 249, Neg. LLF: 168.53296576123307
Iteration: 22, Func. Count: 260, Neg. LLF: 168.52684908370014
Iteration: 23, Func. Count: 271, Neg. LLF: 168.52075752584338
Iteration: 24, Func. Count: 282, Neg. LLF: 168.51385449303203
Iteration: 25, Func. Count: 293, Neg. LLF: 168.49201795537704
Iteration: 26, Func. Count: 304, Neg. LLF: 168.4734736852223
Iteration: 27, Func. Count: 315, Neg. LLF: 168.45994138372154
Iteration: 28, Func. Count: 326, Neg. LLF: 168.45520203797182
Iteration: 29, Func. Count: 337, Neg. LLF: 168.44902287912976
Iteration: 30, Func. Count: 348, Neg. LLF: 168.44481004605828
Iteration: 31, Func. Count: 359, Neg. LLF: 168.44241420008453
Iteration: 32, Func. Count: 370, Neg. LLF: 168.44218486506065
Iteration: 33, Func. Count: 381, Neg. LLF: 168.44216625335446
Iteration: 34, Func. Count: 392, Neg. LLF: 168.4421611068941
Iteration: 35, Func. Count: 403, Neg. LLF: 168.4421601554959
Optimization terminated successfully (Exit mode 0)
Current function value: 168.4421601554959
Iterations: 35
Function evaluations: 403
Gradient evaluations: 35
Iteration: 1, Func. Count: 13, Neg. LLF: 322.0213857292853
Iteration: 2, Func. Count: 26, Neg. LLF: 364.3362459483515
Iteration: 3, Func. Count: 39, Neg. LLF: 169.80883001034763
Iteration: 4, Func. Count: 51, Neg. LLF: 1011.1687281033652
Iteration: 5, Func. Count: 64, Neg. LLF: 189.72821929398708
Iteration: 6, Func. Count: 79, Neg. LLF: 170.83663440233025
Iteration: 7, Func. Count: 92, Neg. LLF: 166.70254707660402
Iteration: 8, Func. Count: 104, Neg. LLF: 166.47988520963366
Iteration: 9, Func. Count: 116, Neg. LLF: 166.3559640622113
Iteration: 10, Func. Count: 128, Neg. LLF: 166.32810181836732
Iteration: 11, Func. Count: 140, Neg. LLF: 166.31486411945673
Iteration: 12, Func. Count: 152, Neg. LLF: 166.3131507497342
Iteration: 13, Func. Count: 164, Neg. LLF: 166.3112531560179
Iteration: 14, Func. Count: 176, Neg. LLF: 166.30933852232417
Iteration: 15, Func. Count: 188, Neg. LLF: 166.3084330484525
Iteration: 16, Func. Count: 200, Neg. LLF: 166.30827673470228
Iteration: 17, Func. Count: 212, Neg. LLF: 166.30826104533463
Iteration: 18, Func. Count: 223, Neg. LLF: 166.3082610453169
Optimization terminated successfully (Exit mode 0)
Current function value: 166.30826104533463
Iterations: 18
Function evaluations: 223
Gradient evaluations: 18
Iteration: 1, Func. Count: 10, Neg. LLF: 176.54280526908914
Iteration: 2, Func. Count: 21, Neg. LLF: 177.39822933736974
Iteration: 3, Func. Count: 32, Neg. LLF: 172.78438434495834
Iteration: 4, Func. Count: 42, Neg. LLF: 171.34981896279228
Iteration: 5, Func. Count: 51, Neg. LLF: 171.92031160148875
Iteration: 6, Func. Count: 61, Neg. LLF: 171.34575876740425
Iteration: 7, Func. Count: 71, Neg. LLF: 171.14817997832884
Iteration: 8, Func. Count: 80, Neg. LLF: 171.07286884258514
Iteration: 9, Func. Count: 89, Neg. LLF: 170.51647542573076
Iteration: 10, Func. Count: 98, Neg. LLF: 208.86112329852511
Iteration: 11, Func. Count: 108, Neg. LLF: 216.85410391144404
Iteration: 12, Func. Count: 118, Neg. LLF: 182.60098190554342
Iteration: 13, Func. Count: 128, Neg. LLF: 183.3082112595736
Iteration: 14, Func. Count: 138, Neg. LLF: 169.47712999019734
Iteration: 15, Func. Count: 148, Neg. LLF: 168.43133714009065
Iteration: 16, Func. Count: 157, Neg. LLF: 168.36349372907603
Iteration: 17, Func. Count: 166, Neg. LLF: 168.35290614026994
Iteration: 18, Func. Count: 175, Neg. LLF: 168.3516961865102
Iteration: 19, Func. Count: 184, Neg. LLF: 168.35140227379742
Iteration: 20, Func. Count: 193, Neg. LLF: 168.35139367218676
Iteration: 21, Func. Count: 201, Neg. LLF: 168.35139367216806
Optimization terminated successfully (Exit mode 0)
Current function value: 168.35139367218676
Iterations: 21
Function evaluations: 201
Gradient evaluations: 21
Iteration: 1, Func. Count: 11, Neg. LLF: 280.27698090892613
Iteration: 2, Func. Count: 22, Neg. LLF: 183.70474515287788
Iteration: 3, Func. Count: 33, Neg. LLF: 200.9180208883883
Iteration: 4, Func. Count: 44, Neg. LLF: 170.73596771391817
Iteration: 5, Func. Count: 55, Neg. LLF: 171.80644899438255
Iteration: 6, Func. Count: 66, Neg. LLF: 170.89505755081083
Iteration: 7, Func. Count: 77, Neg. LLF: 168.77753273492954
Iteration: 8, Func. Count: 87, Neg. LLF: 168.50649894486384
Iteration: 9, Func. Count: 97, Neg. LLF: 168.39072963519254
Iteration: 10, Func. Count: 107, Neg. LLF: 168.3478448766103
Iteration: 11, Func. Count: 117, Neg. LLF: 168.34223067506971
Iteration: 12, Func. Count: 127, Neg. LLF: 168.3379142537163
Iteration: 13, Func. Count: 137, Neg. LLF: 168.3263806542354
Iteration: 14, Func. Count: 147, Neg. LLF: 168.31109392341867
Iteration: 15, Func. Count: 157, Neg. LLF: 168.2993295331409
Iteration: 16, Func. Count: 167, Neg. LLF: 168.29665371529026
Iteration: 17, Func. Count: 177, Neg. LLF: 168.29630026877584
Iteration: 18, Func. Count: 187, Neg. LLF: 168.29627584312263
Iteration: 19, Func. Count: 197, Neg. LLF: 168.2962750850133
Optimization terminated successfully (Exit mode 0)
Current function value: 168.2962750850133
Iterations: 19
Function evaluations: 197
Gradient evaluations: 19
Iteration: 1, Func. Count: 12, Neg. LLF: 274.81450128335945
Iteration: 2, Func. Count: 24, Neg. LLF: 247.22092472437438
Iteration: 3, Func. Count: 36, Neg. LLF: 191.4107858864619
Iteration: 4, Func. Count: 48, Neg. LLF: 188.526314768701
Iteration: 5, Func. Count: 60, Neg. LLF: 171.54297201098538
Iteration: 6, Func. Count: 72, Neg. LLF: 172.22878866543925
Iteration: 7, Func. Count: 84, Neg. LLF: 170.45245633234163
Iteration: 8, Func. Count: 96, Neg. LLF: 171.40346670566748
Iteration: 9, Func. Count: 108, Neg. LLF: 168.17276146742293
Iteration: 10, Func. Count: 120, Neg. LLF: 168.7956949140441
Iteration: 11, Func. Count: 132, Neg. LLF: 169.6090464293624
Iteration: 12, Func. Count: 144, Neg. LLF: 167.7942668970404
Iteration: 13, Func. Count: 155, Neg. LLF: 167.79284487227125
Iteration: 14, Func. Count: 166, Neg. LLF: 167.79096029700713
Iteration: 15, Func. Count: 177, Neg. LLF: 167.78053258323504
Iteration: 16, Func. Count: 188, Neg. LLF: 167.76885288281017
Iteration: 17, Func. Count: 199, Neg. LLF: 167.7684327526412
Iteration: 18, Func. Count: 210, Neg. LLF: 167.76838949609484
Iteration: 19, Func. Count: 221, Neg. LLF: 167.7683837749326
Iteration: 20, Func. Count: 231, Neg. LLF: 167.76838371838585
Optimization terminated successfully (Exit mode 0)
Current function value: 167.7683837749326
Iterations: 20
Function evaluations: 231
Gradient evaluations: 20
Iteration: 1, Func. Count: 13, Neg. LLF: 1076.7769365550978
Iteration: 2, Func. Count: 26, Neg. LLF: 202.31624198337843
Iteration: 3, Func. Count: 39, Neg. LLF: 184.69518047123293
Iteration: 4, Func. Count: 52, Neg. LLF: 204.87552201288062
Iteration: 5, Func. Count: 65, Neg. LLF: 188.18850759301472
Iteration: 6, Func. Count: 78, Neg. LLF: 172.2924643465661
Iteration: 7, Func. Count: 91, Neg. LLF: 185.29596134028557
Iteration: 8, Func. Count: 104, Neg. LLF: 171.84282315450722
Iteration: 9, Func. Count: 117, Neg. LLF: 171.74075428270712
Iteration: 10, Func. Count: 130, Neg. LLF: 171.98006176956747
Iteration: 11, Func. Count: 143, Neg. LLF: 170.11948226813485
Iteration: 12, Func. Count: 156, Neg. LLF: 170.6899397444069
Iteration: 13, Func. Count: 169, Neg. LLF: 168.30145164252204
Iteration: 14, Func. Count: 182, Neg. LLF: 169.69821977613307
Iteration: 15, Func. Count: 195, Neg. LLF: 167.80258350679517
Iteration: 16, Func. Count: 207, Neg. LLF: 167.983026085097
Iteration: 17, Func. Count: 220, Neg. LLF: 167.8588458072373
Iteration: 18, Func. Count: 233, Neg. LLF: 167.65217649141667
Iteration: 19, Func. Count: 245, Neg. LLF: 167.6407663191623
Iteration: 20, Func. Count: 257, Neg. LLF: 167.63822458009525
Iteration: 21, Func. Count: 269, Neg. LLF: 167.63043401431113
Iteration: 22, Func. Count: 281, Neg. LLF: 167.62053188340127
Iteration: 23, Func. Count: 293, Neg. LLF: 167.61737127984426
Iteration: 24, Func. Count: 305, Neg. LLF: 167.6155598978771
Iteration: 25, Func. Count: 317, Neg. LLF: 167.61548362478092
Iteration: 26, Func. Count: 329, Neg. LLF: 167.61547238786054
Iteration: 27, Func. Count: 341, Neg. LLF: 167.61547122288098
Iteration: 28, Func. Count: 352, Neg. LLF: 167.61547113348308
Optimization terminated successfully (Exit mode 0)
Current function value: 167.61547122288098
Iterations: 28
Function evaluations: 352
Gradient evaluations: 28
Iteration: 1, Func. Count: 14, Neg. LLF: 1870.030495381895
Iteration: 2, Func. Count: 28, Neg. LLF: 309.07387041494826
Iteration: 3, Func. Count: 42, Neg. LLF: 193.3269756412757
Iteration: 4, Func. Count: 56, Neg. LLF: 282.209062632413
Iteration: 5, Func. Count: 70, Neg. LLF: 223.45015116642338
Iteration: 6, Func. Count: 84, Neg. LLF: 193.08147992660608
Iteration: 7, Func. Count: 98, Neg. LLF: 169.64329046529653
Iteration: 8, Func. Count: 112, Neg. LLF: 167.29091523509535
Iteration: 9, Func. Count: 125, Neg. LLF: 168.30520387719613
Iteration: 10, Func. Count: 139, Neg. LLF: 200.44527638040643
Iteration: 11, Func. Count: 153, Neg. LLF: 165.75045690732762
Iteration: 12, Func. Count: 166, Neg. LLF: 165.64071735083863
Iteration: 13, Func. Count: 180, Neg. LLF: 165.27077531544762
Iteration: 14, Func. Count: 193, Neg. LLF: 165.1132986798605
Iteration: 15, Func. Count: 206, Neg. LLF: 165.0846777630476
Iteration: 16, Func. Count: 219, Neg. LLF: 165.07726375059588
Iteration: 17, Func. Count: 232, Neg. LLF: 165.06821381134483
Iteration: 18, Func. Count: 245, Neg. LLF: 165.06588759446882
Iteration: 19, Func. Count: 258, Neg. LLF: 165.06550685062908
Iteration: 20, Func. Count: 271, Neg. LLF: 165.06549141823692
Iteration: 21, Func. Count: 284, Neg. LLF: 165.0654901127105
Iteration: 22, Func. Count: 296, Neg. LLF: 165.06549009578524
Optimization terminated successfully (Exit mode 0)
Current function value: 165.0654901127105
Iterations: 22
Function evaluations: 296
Gradient evaluations: 22
Iteration: 1, Func. Count: 11, Neg. LLF: 173.42355590695288
Iteration: 2, Func. Count: 22, Neg. LLF: 184.06908971778373
Iteration: 3, Func. Count: 33, Neg. LLF: 170.6316323256568
Iteration: 4, Func. Count: 43, Neg. LLF: 190.11594085741328
Iteration: 5, Func. Count: 55, Neg. LLF: 170.50783872524738
Iteration: 6, Func. Count: 65, Neg. LLF: 182.79783391802954
Iteration: 7, Func. Count: 76, Neg. LLF: 170.15867188029202
Iteration: 8, Func. Count: 86, Neg. LLF: 170.12088012048662
Iteration: 9, Func. Count: 96, Neg. LLF: 170.10548937408717
Iteration: 10, Func. Count: 106, Neg. LLF: 170.07472969902759
Iteration: 11, Func. Count: 116, Neg. LLF: 170.01189986604055
Iteration: 12, Func. Count: 126, Neg. LLF: 169.76665486630117
Iteration: 13, Func. Count: 136, Neg. LLF: 169.41193066704642
Iteration: 14, Func. Count: 146, Neg. LLF: 168.9184646425232
Iteration: 15, Func. Count: 156, Neg. LLF: 168.66803621350877
Iteration: 16, Func. Count: 166, Neg. LLF: 168.59788859728036
Iteration: 17, Func. Count: 176, Neg. LLF: 168.57575832902612
Iteration: 18, Func. Count: 186, Neg. LLF: 168.56493152026178
Iteration: 19, Func. Count: 196, Neg. LLF: 168.5611479721824
Iteration: 20, Func. Count: 206, Neg. LLF: 168.56035357354332
Iteration: 21, Func. Count: 216, Neg. LLF: 168.5602371425259
Iteration: 22, Func. Count: 226, Neg. LLF: 168.5602310387912
Iteration: 23, Func. Count: 236, Neg. LLF: 168.5602302495715
Optimization terminated successfully (Exit mode 0)
Current function value: 168.5602302495715
Iterations: 23
Function evaluations: 236
Gradient evaluations: 23
Iteration: 1, Func. Count: 12, Neg. LLF: 280.19586429315507
Iteration: 2, Func. Count: 24, Neg. LLF: 183.69391069969583
Iteration: 3, Func. Count: 36, Neg. LLF: 211.11294937170598
Iteration: 4, Func. Count: 48, Neg. LLF: 172.467860546337
Iteration: 5, Func. Count: 60, Neg. LLF: 171.54395727829476
Iteration: 6, Func. Count: 72, Neg. LLF: 171.72191332452795
Iteration: 7, Func. Count: 84, Neg. LLF: 169.66966929846734
Iteration: 8, Func. Count: 96, Neg. LLF: 168.37681960724086
Iteration: 9, Func. Count: 107, Neg. LLF: 168.31272035086002
Iteration: 10, Func. Count: 118, Neg. LLF: 168.07482918566618
Iteration: 11, Func. Count: 129, Neg. LLF: 168.07231556610097
Iteration: 12, Func. Count: 140, Neg. LLF: 168.0699804471125
Iteration: 13, Func. Count: 151, Neg. LLF: 168.0671204985291
Iteration: 14, Func. Count: 162, Neg. LLF: 168.06601086441327
Iteration: 15, Func. Count: 173, Neg. LLF: 168.06503428301488
Iteration: 16, Func. Count: 184, Neg. LLF: 168.06354275407898
Iteration: 17, Func. Count: 195, Neg. LLF: 168.0616661817872
Iteration: 18, Func. Count: 206, Neg. LLF: 168.0604067847462
Iteration: 19, Func. Count: 217, Neg. LLF: 168.06013120891316
Iteration: 20, Func. Count: 228, Neg. LLF: 168.06011223760513
Iteration: 21, Func. Count: 239, Neg. LLF: 168.06011095359753
Iteration: 22, Func. Count: 250, Neg. LLF: 168.06011014871925
Optimization terminated successfully (Exit mode 0)
Current function value: 168.06011014871925
Iterations: 22
Function evaluations: 250
Gradient evaluations: 22
Iteration: 1, Func. Count: 13, Neg. LLF: 436.42940240591736
Iteration: 2, Func. Count: 26, Neg. LLF: 229.1571999142929
Iteration: 3, Func. Count: 39, Neg. LLF: 202.8833070406935
Iteration: 4, Func. Count: 52, Neg. LLF: 232.79368760286508
Iteration: 5, Func. Count: 65, Neg. LLF: 175.685331141969
Iteration: 6, Func. Count: 78, Neg. LLF: 178.90641811978008
Iteration: 7, Func. Count: 91, Neg. LLF: 176.58626648033803
Iteration: 8, Func. Count: 104, Neg. LLF: 171.61695574070728
Iteration: 9, Func. Count: 117, Neg. LLF: 171.18078912696816
Iteration: 10, Func. Count: 130, Neg. LLF: 170.93161014741517
Iteration: 11, Func. Count: 143, Neg. LLF: 167.9424353889457
Iteration: 12, Func. Count: 155, Neg. LLF: 168.88364754877685
Iteration: 13, Func. Count: 168, Neg. LLF: 171.1365123493835
Iteration: 14, Func. Count: 182, Neg. LLF: 167.66940500608635
Iteration: 15, Func. Count: 194, Neg. LLF: 167.64584248986813
Iteration: 16, Func. Count: 206, Neg. LLF: 167.64315478201243
Iteration: 17, Func. Count: 218, Neg. LLF: 167.64141881518898
Iteration: 18, Func. Count: 230, Neg. LLF: 167.63740371590106
Iteration: 19, Func. Count: 242, Neg. LLF: 167.62501437758036
Iteration: 20, Func. Count: 254, Neg. LLF: 167.62243672621327
Iteration: 21, Func. Count: 266, Neg. LLF: 167.62115633253265
Iteration: 22, Func. Count: 278, Neg. LLF: 167.62089401114184
Iteration: 23, Func. Count: 290, Neg. LLF: 167.62088242252418
Iteration: 24, Func. Count: 301, Neg. LLF: 167.620882325649
Optimization terminated successfully (Exit mode 0)
Current function value: 167.62088242252418
Iterations: 24
Function evaluations: 301
Gradient evaluations: 24
Iteration: 1, Func. Count: 14, Neg. LLF: 1075.3535849515315
Iteration: 2, Func. Count: 28, Neg. LLF: 721.5772016200435
Iteration: 3, Func. Count: 42, Neg. LLF: 206.66508410601483
Iteration: 4, Func. Count: 56, Neg. LLF: 190.96931362315385
Iteration: 5, Func. Count: 70, Neg. LLF: 204.2208549695505
Iteration: 6, Func. Count: 84, Neg. LLF: 171.277298291251
Iteration: 7, Func. Count: 98, Neg. LLF: 177.2529274191533
Iteration: 8, Func. Count: 112, Neg. LLF: 172.7047793628684
Iteration: 9, Func. Count: 126, Neg. LLF: 172.33361139798356
Iteration: 10, Func. Count: 140, Neg. LLF: 172.0342019497808
Iteration: 11, Func. Count: 154, Neg. LLF: 170.0064398708117
Iteration: 12, Func. Count: 168, Neg. LLF: 169.06213308507301
Iteration: 13, Func. Count: 182, Neg. LLF: 167.89239563691385
Iteration: 14, Func. Count: 195, Neg. LLF: 167.82758201280564
Iteration: 15, Func. Count: 209, Neg. LLF: 168.3390083264365
Iteration: 16, Func. Count: 224, Neg. LLF: 167.74529131774827
Iteration: 17, Func. Count: 238, Neg. LLF: 167.69637069342275
Iteration: 18, Func. Count: 251, Neg. LLF: 167.6575943712337
Iteration: 19, Func. Count: 264, Neg. LLF: 167.63622016115417
Iteration: 20, Func. Count: 277, Neg. LLF: 167.63076429128253
Iteration: 21, Func. Count: 290, Neg. LLF: 167.62774973672967
Iteration: 22, Func. Count: 303, Neg. LLF: 167.62341526267926
Iteration: 23, Func. Count: 316, Neg. LLF: 167.6180167599793
Iteration: 24, Func. Count: 329, Neg. LLF: 167.61619203760355
Iteration: 25, Func. Count: 342, Neg. LLF: 167.6155691938684
Iteration: 26, Func. Count: 355, Neg. LLF: 167.61548190411855
Iteration: 27, Func. Count: 368, Neg. LLF: 167.61547139569123
Iteration: 28, Func. Count: 380, Neg. LLF: 167.61547130620133
Optimization terminated successfully (Exit mode 0)
Current function value: 167.61547139569123
Iterations: 28
Function evaluations: 380
Gradient evaluations: 28
Iteration: 1, Func. Count: 15, Neg. LLF: 1874.672495903868
Iteration: 2, Func. Count: 30, Neg. LLF: 1212.0948374554741
Iteration: 3, Func. Count: 45, Neg. LLF: 206.0834478854509
Iteration: 4, Func. Count: 60, Neg. LLF: 287.5814241297799
Iteration: 5, Func. Count: 75, Neg. LLF: 286.33286929556357
Iteration: 6, Func. Count: 90, Neg. LLF: 169.30357800871238
Iteration: 7, Func. Count: 104, Neg. LLF: 173.4803699285497
Iteration: 8, Func. Count: 120, Neg. LLF: 177.692264431536
Iteration: 9, Func. Count: 136, Neg. LLF: 165.85137554096167
Iteration: 10, Func. Count: 150, Neg. LLF: 166.82267822688354
Iteration: 11, Func. Count: 166, Neg. LLF: 166.46768920094374
Iteration: 12, Func. Count: 181, Neg. LLF: 165.46263026684537
Iteration: 13, Func. Count: 195, Neg. LLF: 165.3602448640503
Iteration: 14, Func. Count: 209, Neg. LLF: 165.3285192092349
Iteration: 15, Func. Count: 223, Neg. LLF: 165.30843365199402
Iteration: 16, Func. Count: 237, Neg. LLF: 165.29158090574796
Iteration: 17, Func. Count: 251, Neg. LLF: 165.27967861783432
Iteration: 18, Func. Count: 265, Neg. LLF: 165.25728641793677
Iteration: 19, Func. Count: 279, Neg. LLF: 165.2501987569742
Iteration: 20, Func. Count: 293, Neg. LLF: 165.2418448240374
Iteration: 21, Func. Count: 307, Neg. LLF: 167.27915193713216
Iteration: 22, Func. Count: 323, Neg. LLF: 165.18586832451615
Iteration: 23, Func. Count: 337, Neg. LLF: 165.09021441427404
Iteration: 24, Func. Count: 351, Neg. LLF: 165.0741644385401
Iteration: 25, Func. Count: 365, Neg. LLF: 165.07078046587395
Iteration: 26, Func. Count: 379, Neg. LLF: 165.06912597531942
Iteration: 27, Func. Count: 393, Neg. LLF: 165.06699961486876
Iteration: 28, Func. Count: 407, Neg. LLF: 165.06567674920882
Iteration: 29, Func. Count: 421, Neg. LLF: 165.06553921761795
Iteration: 30, Func. Count: 435, Neg. LLF: 165.06549005868965
Iteration: 31, Func. Count: 448, Neg. LLF: 165.0654900417782
Optimization terminated successfully (Exit mode 0)
Current function value: 165.06549005868965
Iterations: 31
Function evaluations: 448
Gradient evaluations: 31
Iteration: 1, Func. Count: 12, Neg. LLF: 173.76954225902807
Iteration: 2, Func. Count: 24, Neg. LLF: 184.06867634636527
Iteration: 3, Func. Count: 36, Neg. LLF: 170.67847102240842
Iteration: 4, Func. Count: 47, Neg. LLF: 189.20885954418563
Iteration: 5, Func. Count: 60, Neg. LLF: 170.56831048724814
Iteration: 6, Func. Count: 71, Neg. LLF: 175.03352998223616
Iteration: 7, Func. Count: 83, Neg. LLF: 170.15644463316252
Iteration: 8, Func. Count: 94, Neg. LLF: 170.11094144454827
Iteration: 9, Func. Count: 105, Neg. LLF: 170.0976445121887
Iteration: 10, Func. Count: 116, Neg. LLF: 170.07448825938803
Iteration: 11, Func. Count: 127, Neg. LLF: 169.93446573774958
Iteration: 12, Func. Count: 138, Neg. LLF: 169.64847233826515
Iteration: 13, Func. Count: 149, Neg. LLF: 182.9016827690162
Iteration: 14, Func. Count: 161, Neg. LLF: 173.95997952066247
Iteration: 15, Func. Count: 173, Neg. LLF: 169.32239152963186
Iteration: 16, Func. Count: 185, Neg. LLF: 168.6841963919454
Iteration: 17, Func. Count: 196, Neg. LLF: 169.072453916946
Iteration: 18, Func. Count: 208, Neg. LLF: 169.20463957817734
Iteration: 19, Func. Count: 220, Neg. LLF: 168.47144412923325
Iteration: 20, Func. Count: 231, Neg. LLF: 168.42911393756143
Iteration: 21, Func. Count: 242, Neg. LLF: 168.39806876196675
Iteration: 22, Func. Count: 253, Neg. LLF: 167.99256745438777
Iteration: 23, Func. Count: 264, Neg. LLF: 167.95419896315377
Iteration: 24, Func. Count: 275, Neg. LLF: 167.94160713345278
Iteration: 25, Func. Count: 286, Neg. LLF: 167.9329571995098
Iteration: 26, Func. Count: 297, Neg. LLF: 167.92740891167617
Iteration: 27, Func. Count: 308, Neg. LLF: 167.92592899829816
Iteration: 28, Func. Count: 319, Neg. LLF: 167.92573000476483
Iteration: 29, Func. Count: 330, Neg. LLF: 167.92569051292853
Iteration: 30, Func. Count: 341, Neg. LLF: 167.92568901298526
Iteration: 31, Func. Count: 352, Neg. LLF: 167.92567331905863
Iteration: 32, Func. Count: 363, Neg. LLF: 167.92567773720413
Iteration: 33, Func. Count: 378, Neg. LLF: 167.92568177807786
Iteration: 34, Func. Count: 389, Neg. LLF: 167.92572173742855
Optimization terminated successfully (Exit mode 0)
Current function value: 167.92568178921803
Iterations: 35
Function evaluations: 391
Gradient evaluations: 34
Iteration: 1, Func. Count: 13, Neg. LLF: 279.77020556326545
Iteration: 2, Func. Count: 26, Neg. LLF: 183.68335617131726
Iteration: 3, Func. Count: 39, Neg. LLF: 174.32121801772553
Iteration: 4, Func. Count: 52, Neg. LLF: 173.62324754136847
Iteration: 5, Func. Count: 65, Neg. LLF: 172.57308485584957
Iteration: 6, Func. Count: 78, Neg. LLF: 172.7557254848403
Iteration: 7, Func. Count: 91, Neg. LLF: 169.03379782001977
Iteration: 8, Func. Count: 104, Neg. LLF: 168.945840368542
Iteration: 9, Func. Count: 117, Neg. LLF: 168.5184035731042
Iteration: 10, Func. Count: 129, Neg. LLF: 169.79754920439257
Iteration: 11, Func. Count: 142, Neg. LLF: 168.4281088057647
Iteration: 12, Func. Count: 154, Neg. LLF: 168.39275914777667
Iteration: 13, Func. Count: 166, Neg. LLF: 168.0527862309786
Iteration: 14, Func. Count: 178, Neg. LLF: 167.97804585941364
Iteration: 15, Func. Count: 190, Neg. LLF: 167.9619307033074
Iteration: 16, Func. Count: 202, Neg. LLF: 167.96026400405228
Iteration: 17, Func. Count: 214, Neg. LLF: 167.95390187696202
Iteration: 18, Func. Count: 226, Neg. LLF: 167.94795283425833
Iteration: 19, Func. Count: 238, Neg. LLF: 167.93775191649965
Iteration: 20, Func. Count: 250, Neg. LLF: 167.9298544138398
Iteration: 21, Func. Count: 262, Neg. LLF: 167.92595242909928
Iteration: 22, Func. Count: 274, Neg. LLF: 167.92571306295054
Iteration: 23, Func. Count: 286, Neg. LLF: 167.92568144339126
Iteration: 24, Func. Count: 298, Neg. LLF: 167.92730079727875
Iteration: 25, Func. Count: 312, Neg. LLF: 167.92570837523982
Optimization terminated successfully (Exit mode 0)
Current function value: 167.92568045104312
Iterations: 26
Function evaluations: 314
Gradient evaluations: 25
Iteration: 1, Func. Count: 14, Neg. LLF: 959.9001184298514
Iteration: 2, Func. Count: 28, Neg. LLF: 238.32834857756635
Iteration: 3, Func. Count: 42, Neg. LLF: 197.46043490719367
Iteration: 4, Func. Count: 56, Neg. LLF: 261.8410142062739
Iteration: 5, Func. Count: 70, Neg. LLF: 280.8877092416161
Iteration: 6, Func. Count: 84, Neg. LLF: 177.39001362963143
Iteration: 7, Func. Count: 98, Neg. LLF: 171.8743541132484
Iteration: 8, Func. Count: 112, Neg. LLF: 172.0814461162354
Iteration: 9, Func. Count: 126, Neg. LLF: 168.96764058395442
Iteration: 10, Func. Count: 140, Neg. LLF: 168.58874521148735
Iteration: 11, Func. Count: 153, Neg. LLF: 168.00838737813237
Iteration: 12, Func. Count: 166, Neg. LLF: 182.9128184876643
Iteration: 13, Func. Count: 181, Neg. LLF: 167.6747728500759
Iteration: 14, Func. Count: 194, Neg. LLF: 167.65888772775432
Iteration: 15, Func. Count: 207, Neg. LLF: 167.65568125676091
Iteration: 16, Func. Count: 220, Neg. LLF: 167.65458582227058
Iteration: 17, Func. Count: 233, Neg. LLF: 167.65205205716862
Iteration: 18, Func. Count: 246, Neg. LLF: 167.64763232191814
Iteration: 19, Func. Count: 259, Neg. LLF: 167.63485011770445
Iteration: 20, Func. Count: 272, Neg. LLF: 167.62656009485795
Iteration: 21, Func. Count: 285, Neg. LLF: 167.6209911473017
Iteration: 22, Func. Count: 298, Neg. LLF: 167.62088933872218
Iteration: 23, Func. Count: 311, Neg. LLF: 167.62088216579414
Iteration: 24, Func. Count: 323, Neg. LLF: 167.6208820686827
Optimization terminated successfully (Exit mode 0)
Current function value: 167.62088216579414
Iterations: 24
Function evaluations: 323
Gradient evaluations: 24
Iteration: 1, Func. Count: 15, Neg. LLF: 1059.955970984251
Iteration: 2, Func. Count: 30, Neg. LLF: 204.5710628376017
Iteration: 3, Func. Count: 45, Neg. LLF: 205.33590376334962
Iteration: 4, Func. Count: 60, Neg. LLF: 195.14568573625326
Iteration: 5, Func. Count: 75, Neg. LLF: 215.30278701776524
Iteration: 6, Func. Count: 90, Neg. LLF: 197.58437496450534
Iteration: 7, Func. Count: 105, Neg. LLF: 176.02649106156565
Iteration: 8, Func. Count: 120, Neg. LLF: 173.80759858120578
Iteration: 9, Func. Count: 135, Neg. LLF: 172.03530016860358
Iteration: 10, Func. Count: 150, Neg. LLF: 174.92006344969872
Iteration: 11, Func. Count: 165, Neg. LLF: 171.2224801066992
Iteration: 12, Func. Count: 180, Neg. LLF: 170.00048013443757
Iteration: 13, Func. Count: 195, Neg. LLF: 168.0597581709847
Iteration: 14, Func. Count: 209, Neg. LLF: 170.0885863210052
Iteration: 15, Func. Count: 224, Neg. LLF: 169.00490451552687
Iteration: 16, Func. Count: 240, Neg. LLF: 167.79125813010836
Iteration: 17, Func. Count: 254, Neg. LLF: 167.65861213786337
Iteration: 18, Func. Count: 268, Neg. LLF: 167.63332379021398
Iteration: 19, Func. Count: 282, Neg. LLF: 167.62874020427105
Iteration: 20, Func. Count: 296, Neg. LLF: 167.6260545722666
Iteration: 21, Func. Count: 310, Neg. LLF: 167.62162647166875
Iteration: 22, Func. Count: 324, Neg. LLF: 167.61729766595073
Iteration: 23, Func. Count: 338, Neg. LLF: 167.61563869288395
Iteration: 24, Func. Count: 352, Neg. LLF: 167.61548838004836
Iteration: 25, Func. Count: 366, Neg. LLF: 167.61547370115733
Iteration: 26, Func. Count: 380, Neg. LLF: 167.6154716320127
Iteration: 27, Func. Count: 393, Neg. LLF: 167.61547154267546
Optimization terminated successfully (Exit mode 0)
Current function value: 167.6154716320127
Iterations: 27
Function evaluations: 393
Gradient evaluations: 27
Iteration: 1, Func. Count: 16, Neg. LLF: 1133.4132417911662
Iteration: 2, Func. Count: 32, Neg. LLF: 377.08484681135013
Iteration: 3, Func. Count: 48, Neg. LLF: 183.98730136332856
Iteration: 4, Func. Count: 64, Neg. LLF: 219.78489440170003
Iteration: 5, Func. Count: 80, Neg. LLF: 172.5645578142173
Iteration: 6, Func. Count: 96, Neg. LLF: 338.3124603369929
Iteration: 7, Func. Count: 112, Neg. LLF: 166.35173540146883
Iteration: 8, Func. Count: 127, Neg. LLF: 171.8414146266805
Iteration: 9, Func. Count: 143, Neg. LLF: 200.7645566481244
Iteration: 10, Func. Count: 160, Neg. LLF: 165.44296308577344
Iteration: 11, Func. Count: 175, Neg. LLF: 165.53338742787818
Iteration: 12, Func. Count: 191, Neg. LLF: 165.31908047010222
Iteration: 13, Func. Count: 206, Neg. LLF: 165.3145412449908
Iteration: 14, Func. Count: 222, Neg. LLF: 165.28139120522908
Iteration: 15, Func. Count: 237, Neg. LLF: 165.27507932940233
Iteration: 16, Func. Count: 252, Neg. LLF: 165.27082091408795
Iteration: 17, Func. Count: 267, Neg. LLF: 165.2707630905937
Iteration: 18, Func. Count: 283, Neg. LLF: 165.21068016628644
Iteration: 19, Func. Count: 298, Neg. LLF: 165.28250851622892
Iteration: 20, Func. Count: 314, Neg. LLF: 165.4028136746446
Iteration: 21, Func. Count: 330, Neg. LLF: 165.0944019883279
Iteration: 22, Func. Count: 345, Neg. LLF: 165.08412459129596
Iteration: 23, Func. Count: 360, Neg. LLF: 165.0727724010338
Iteration: 24, Func. Count: 375, Neg. LLF: 165.06867827221419
Iteration: 25, Func. Count: 390, Neg. LLF: 165.0660833077728
Iteration: 26, Func. Count: 405, Neg. LLF: 165.06551546838975
Iteration: 27, Func. Count: 420, Neg. LLF: 165.0654900820775
Iteration: 28, Func. Count: 434, Neg. LLF: 165.06549006511582
Optimization terminated successfully (Exit mode 0)
Current function value: 165.0654900820775
Iterations: 28
Function evaluations: 434
Gradient evaluations: 28
Iteration: 1, Func. Count: 6, Neg. LLF: 173.74116235274383
Iteration: 2, Func. Count: 12, Neg. LLF: 174.53571468454086
Iteration: 3, Func. Count: 19, Neg. LLF: 172.0648346747021
Iteration: 4, Func. Count: 24, Neg. LLF: 172.00856947275565
Iteration: 5, Func. Count: 29, Neg. LLF: 171.88513232669501
Iteration: 6, Func. Count: 34, Neg. LLF: 171.8241045346944
Iteration: 7, Func. Count: 39, Neg. LLF: 171.4731669719205
Iteration: 8, Func. Count: 44, Neg. LLF: 170.2800444505376
Iteration: 9, Func. Count: 49, Neg. LLF: 170.14915823442382
Iteration: 10, Func. Count: 54, Neg. LLF: 170.12208511698785
Iteration: 11, Func. Count: 59, Neg. LLF: 170.09375662238926
Iteration: 12, Func. Count: 64, Neg. LLF: 170.09182729924248
Iteration: 13, Func. Count: 69, Neg. LLF: 170.09065902956763
Iteration: 14, Func. Count: 74, Neg. LLF: 170.09064057216145
Iteration: 15, Func. Count: 79, Neg. LLF: 170.09063449433194
Iteration: 16, Func. Count: 83, Neg. LLF: 170.09063449434356
Optimization terminated successfully (Exit mode 0)
Current function value: 170.09063449433194
Iterations: 16
Function evaluations: 83
Gradient evaluations: 16
Iteration: 1, Func. Count: 5, Neg. LLF: 180.63514945198932
Iteration: 2, Func. Count: 10, Neg. LLF: 179.55511557144214
Iteration: 3, Func. Count: 14, Neg. LLF: 179.45575999709195
Iteration: 4, Func. Count: 18, Neg. LLF: 179.3525674078494
Iteration: 5, Func. Count: 22, Neg. LLF: 179.03169576516703
Iteration: 6, Func. Count: 26, Neg. LLF: 178.66106594307445
Iteration: 7, Func. Count: 30, Neg. LLF: 178.36648183254084
Iteration: 8, Func. Count: 34, Neg. LLF: 178.2342358111782
Iteration: 9, Func. Count: 38, Neg. LLF: 178.18767976378427
Iteration: 10, Func. Count: 42, Neg. LLF: 178.17818389545232
Iteration: 11, Func. Count: 46, Neg. LLF: 178.17435732543353
Iteration: 12, Func. Count: 50, Neg. LLF: 178.17293984675345
Iteration: 13, Func. Count: 54, Neg. LLF: 178.1727673423365
Iteration: 14, Func. Count: 58, Neg. LLF: 178.1727429451507
Iteration: 15, Func. Count: 62, Neg. LLF: 178.17273824794393
Iteration: 16, Func. Count: 65, Neg. LLF: 178.17273824795004
Optimization terminated successfully (Exit mode 0)
Current function value: 178.17273824794393
Iterations: 16
Function evaluations: 65
Gradient evaluations: 16
Iteration: 1, Func. Count: 6, Neg. LLF: 15985945.870672325
Iteration: 2, Func. Count: 13, Neg. LLF: 177.60475466516198
Iteration: 3, Func. Count: 19, Neg. LLF: 178.89501952528076
Iteration: 4, Func. Count: 25, Neg. LLF: 324.32359913001693
Iteration: 5, Func. Count: 31, Neg. LLF: 179.58831025826447
Iteration: 6, Func. Count: 37, Neg. LLF: 177.59309050019434
Iteration: 7, Func. Count: 43, Neg. LLF: 174.26645389506257
Iteration: 8, Func. Count: 49, Neg. LLF: 170.2351365482576
Iteration: 9, Func. Count: 55, Neg. LLF: 169.11054708752118
Iteration: 10, Func. Count: 60, Neg. LLF: 170.30840478419444
Iteration: 11, Func. Count: 66, Neg. LLF: 168.99235458148084
Iteration: 12, Func. Count: 71, Neg. LLF: 168.9641468346614
Iteration: 13, Func. Count: 76, Neg. LLF: 168.96394092965312
Iteration: 14, Func. Count: 81, Neg. LLF: 168.9639324847172
Iteration: 15, Func. Count: 86, Neg. LLF: 168.9639316417153
Optimization terminated successfully (Exit mode 0)
Current function value: 168.9639316417153
Iterations: 15
Function evaluations: 86
Gradient evaluations: 15
Iteration: 1, Func. Count: 7, Neg. LLF: 383.72311310908714
Iteration: 2, Func. Count: 14, Neg. LLF: 178.25876543483005
Iteration: 3, Func. Count: 22, Neg. LLF: 171.00535460647558
Iteration: 4, Func. Count: 28, Neg. LLF: 170.82431149830455
Iteration: 5, Func. Count: 34, Neg. LLF: 170.8012022006437
Iteration: 6, Func. Count: 40, Neg. LLF: 170.78095432523378
Iteration: 7, Func. Count: 46, Neg. LLF: 170.5090344493084
Iteration: 8, Func. Count: 52, Neg. LLF: 169.57746146215194
Iteration: 9, Func. Count: 58, Neg. LLF: 169.41018734172815
Iteration: 10, Func. Count: 64, Neg. LLF: 217.90296192207745
Iteration: 11, Func. Count: 73, Neg. LLF: 169.09262922133715
Iteration: 12, Func. Count: 79, Neg. LLF: 169.04864493147167
Iteration: 13, Func. Count: 85, Neg. LLF: 169.012015869796
Iteration: 14, Func. Count: 91, Neg. LLF: 168.98584903997696
Iteration: 15, Func. Count: 97, Neg. LLF: 168.96557487219474
Iteration: 16, Func. Count: 103, Neg. LLF: 168.96401668693375
Iteration: 17, Func. Count: 109, Neg. LLF: 168.9639374916215
Iteration: 18, Func. Count: 115, Neg. LLF: 168.96393164722193
Iteration: 19, Func. Count: 120, Neg. LLF: 168.96393165160686
Optimization terminated successfully (Exit mode 0)
Current function value: 168.96393164722193
Iterations: 19
Function evaluations: 120
Gradient evaluations: 19
Iteration: 1, Func. Count: 8, Neg. LLF: 383.6484915546809
Iteration: 2, Func. Count: 16, Neg. LLF: 175.637524520864
Iteration: 3, Func. Count: 24, Neg. LLF: 171.12578636351108
Iteration: 4, Func. Count: 31, Neg. LLF: 178.54894760812124
Iteration: 5, Func. Count: 39, Neg. LLF: 171.29164823246475
Iteration: 6, Func. Count: 47, Neg. LLF: 170.85802004458202
Iteration: 7, Func. Count: 55, Neg. LLF: 170.74426869862353
Iteration: 8, Func. Count: 62, Neg. LLF: 170.6882152281078
Iteration: 9, Func. Count: 69, Neg. LLF: 178.32784037288582
Iteration: 10, Func. Count: 77, Neg. LLF: 272.6817684998347
Iteration: 11, Func. Count: 85, Neg. LLF: 247.74414456849664
Iteration: 12, Func. Count: 93, Neg. LLF: 184.45662245894766
Iteration: 13, Func. Count: 101, Neg. LLF: 184.6536450165628
Iteration: 14, Func. Count: 109, Neg. LLF: 174.41168688937748
Iteration: 15, Func. Count: 117, Neg. LLF: 172.1470061276977
Iteration: 16, Func. Count: 125, Neg. LLF: 174.2881627473693
Iteration: 17, Func. Count: 133, Neg. LLF: 172.69616270671207
Iteration: 18, Func. Count: 141, Neg. LLF: 171.47847600181407
Iteration: 19, Func. Count: 149, Neg. LLF: 170.48988109777076
Iteration: 20, Func. Count: 157, Neg. LLF: 169.7499915846126
Iteration: 21, Func. Count: 164, Neg. LLF: 171.39195046403324
Iteration: 22, Func. Count: 173, Neg. LLF: 169.2755849408962
Iteration: 23, Func. Count: 180, Neg. LLF: 169.08389751938367
Iteration: 24, Func. Count: 187, Neg. LLF: 168.9900074597751
Iteration: 25, Func. Count: 194, Neg. LLF: 168.96829024443034
Iteration: 26, Func. Count: 201, Neg. LLF: 168.964040615465
Iteration: 27, Func. Count: 208, Neg. LLF: 168.96394785604903
Iteration: 28, Func. Count: 215, Neg. LLF: 168.96393172566832
Iteration: 29, Func. Count: 221, Neg. LLF: 168.96393173314678
Optimization terminated successfully (Exit mode 0)
Current function value: 168.96393172566832
Iterations: 29
Function evaluations: 221
Gradient evaluations: 29
Iteration: 1, Func. Count: 9, Neg. LLF: 382.76960811654
Iteration: 2, Func. Count: 18, Neg. LLF: 170.9497802357307
Iteration: 3, Func. Count: 26, Neg. LLF: 172.12145393129111
Iteration: 4, Func. Count: 36, Neg. LLF: 172.03793023242042
Iteration: 5, Func. Count: 46, Neg. LLF: 170.84758344699011
Iteration: 6, Func. Count: 55, Neg. LLF: 170.61170966863654
Iteration: 7, Func. Count: 63, Neg. LLF: 169.68302502057114
Iteration: 8, Func. Count: 71, Neg. LLF: 169.37932618652346
Iteration: 9, Func. Count: 79, Neg. LLF: 180.69349776062484
Iteration: 10, Func. Count: 89, Neg. LLF: 169.1880054225036
Iteration: 11, Func. Count: 98, Neg. LLF: 169.0624164664669
Iteration: 12, Func. Count: 106, Neg. LLF: 168.99082550624863
Iteration: 13, Func. Count: 114, Neg. LLF: 168.97871332915267
Iteration: 14, Func. Count: 122, Neg. LLF: 168.9640650400638
Iteration: 15, Func. Count: 130, Neg. LLF: 168.96453638912064
Iteration: 16, Func. Count: 139, Neg. LLF: 168.96393165266338
Iteration: 17, Func. Count: 146, Neg. LLF: 168.9639316602254
Optimization terminated successfully (Exit mode 0)
Current function value: 168.96393165266338
Iterations: 17
Function evaluations: 146
Gradient evaluations: 17
Iteration: 1, Func. Count: 6, Neg. LLF: 184.46928524712743
Iteration: 2, Func. Count: 13, Neg. LLF: 174.30390656158318
Iteration: 3, Func. Count: 19, Neg. LLF: 172.8161002212283
Iteration: 4, Func. Count: 24, Neg. LLF: 172.6952779039216
Iteration: 5, Func. Count: 29, Neg. LLF: 172.68398148063162
Iteration: 6, Func. Count: 34, Neg. LLF: 172.61387001879373
Iteration: 7, Func. Count: 39, Neg. LLF: 172.4934734725851
Iteration: 8, Func. Count: 44, Neg. LLF: 172.39950661912064
Iteration: 9, Func. Count: 49, Neg. LLF: 172.347825745594
Iteration: 10, Func. Count: 54, Neg. LLF: 172.30030633934078
Iteration: 11, Func. Count: 59, Neg. LLF: 172.27516338651498
Iteration: 12, Func. Count: 64, Neg. LLF: 172.2614518974761
Iteration: 13, Func. Count: 69, Neg. LLF: 172.25702528316268
Iteration: 14, Func. Count: 74, Neg. LLF: 172.25673944748152
Iteration: 15, Func. Count: 79, Neg. LLF: 172.25671969992575
Iteration: 16, Func. Count: 84, Neg. LLF: 172.25671871154395
Optimization terminated successfully (Exit mode 0)
Current function value: 172.25671871154395
Iterations: 16
Function evaluations: 84
Gradient evaluations: 16
Iteration: 1, Func. Count: 7, Neg. LLF: 16058788.170006067
Iteration: 2, Func. Count: 15, Neg. LLF: 178.52033352155226
Iteration: 3, Func. Count: 22, Neg. LLF: 179.43515046107126
Iteration: 4, Func. Count: 29, Neg. LLF: 288.3828819588396
Iteration: 5, Func. Count: 36, Neg. LLF: 169.5265368622808
Iteration: 6, Func. Count: 42, Neg. LLF: 169.23983108581737
Iteration: 7, Func. Count: 48, Neg. LLF: 169.0878713581411
Iteration: 8, Func. Count: 54, Neg. LLF: 168.9176608688084
Iteration: 9, Func. Count: 60, Neg. LLF: 168.91011473227167
Iteration: 10, Func. Count: 67, Neg. LLF: 168.89158582643938
Iteration: 11, Func. Count: 73, Neg. LLF: 168.89116332409682
Iteration: 12, Func. Count: 79, Neg. LLF: 168.8908034335664
Iteration: 13, Func. Count: 85, Neg. LLF: 168.89077954756988
Iteration: 14, Func. Count: 91, Neg. LLF: 168.89077897188048
Optimization terminated successfully (Exit mode 0)
Current function value: 168.89077897188048
Iterations: 14
Function evaluations: 91
Gradient evaluations: 14
Iteration: 1, Func. Count: 8, Neg. LLF: 385.0824511271578
Iteration: 2, Func. Count: 16, Neg. LLF: 268.26269902273384
Iteration: 3, Func. Count: 24, Neg. LLF: 170.17718103677805
Iteration: 4, Func. Count: 31, Neg. LLF: 170.103889565427
Iteration: 5, Func. Count: 38, Neg. LLF: 170.08219742567007
Iteration: 6, Func. Count: 45, Neg. LLF: 170.0793978908409
Iteration: 7, Func. Count: 52, Neg. LLF: 170.07597515190147
Iteration: 8, Func. Count: 59, Neg. LLF: 170.0727034442286
Iteration: 9, Func. Count: 66, Neg. LLF: 170.05890824603273
Iteration: 10, Func. Count: 73, Neg. LLF: 169.78609875074415
Iteration: 11, Func. Count: 80, Neg. LLF: 169.9860601592931
Iteration: 12, Func. Count: 89, Neg. LLF: 170.11575201111148
Iteration: 13, Func. Count: 97, Neg. LLF: 168.94388785213897
Iteration: 14, Func. Count: 104, Neg. LLF: 169.7903917831949
Iteration: 15, Func. Count: 112, Neg. LLF: 168.92832321023866
Iteration: 16, Func. Count: 120, Neg. LLF: 168.88178365831766
Iteration: 17, Func. Count: 127, Neg. LLF: 168.88119322307625
Iteration: 18, Func. Count: 134, Neg. LLF: 168.88113798726195
Iteration: 19, Func. Count: 141, Neg. LLF: 168.88112742346487
Iteration: 20, Func. Count: 148, Neg. LLF: 168.8811267786553
Optimization terminated successfully (Exit mode 0)
Current function value: 168.8811267786553
Iterations: 20
Function evaluations: 148
Gradient evaluations: 20
Iteration: 1, Func. Count: 9, Neg. LLF: 384.90764065998513
Iteration: 2, Func. Count: 18, Neg. LLF: 267.59441917614265
Iteration: 3, Func. Count: 27, Neg. LLF: 170.15637082699902
Iteration: 4, Func. Count: 35, Neg. LLF: 169.72349882475444
Iteration: 5, Func. Count: 43, Neg. LLF: 169.6385820406349
Iteration: 6, Func. Count: 51, Neg. LLF: 169.43175670744301
Iteration: 7, Func. Count: 59, Neg. LLF: 177.18548083804794
Iteration: 8, Func. Count: 69, Neg. LLF: 169.62662771616627
Iteration: 9, Func. Count: 78, Neg. LLF: 169.12348749914526
Iteration: 10, Func. Count: 86, Neg. LLF: 169.67700825128293
Iteration: 11, Func. Count: 95, Neg. LLF: 168.81910200241043
Iteration: 12, Func. Count: 103, Neg. LLF: 168.73117924542964
Iteration: 13, Func. Count: 111, Neg. LLF: 168.86973239484843
Iteration: 14, Func. Count: 120, Neg. LLF: 168.61358956064305
Iteration: 15, Func. Count: 128, Neg. LLF: 168.60597825164027
Iteration: 16, Func. Count: 136, Neg. LLF: 168.60444130946522
Iteration: 17, Func. Count: 144, Neg. LLF: 168.6043017372284
Iteration: 18, Func. Count: 152, Neg. LLF: 168.60428934301913
Iteration: 19, Func. Count: 160, Neg. LLF: 168.6042868759114
Iteration: 20, Func. Count: 167, Neg. LLF: 168.60428687612082
Optimization terminated successfully (Exit mode 0)
Current function value: 168.6042868759114
Iterations: 20
Function evaluations: 167
Gradient evaluations: 20
Iteration: 1, Func. Count: 10, Neg. LLF: 192.12216316011887
Iteration: 2, Func. Count: 20, Neg. LLF: 187.80018007859303
Iteration: 3, Func. Count: 30, Neg. LLF: 193.4742104614228
Iteration: 4, Func. Count: 40, Neg. LLF: 179.8165633276748
Iteration: 5, Func. Count: 50, Neg. LLF: 170.78860894083618
Iteration: 6, Func. Count: 59, Neg. LLF: 170.76117162223227
Iteration: 7, Func. Count: 68, Neg. LLF: 170.73821063503465
Iteration: 8, Func. Count: 77, Neg. LLF: 170.65949258745096
Iteration: 9, Func. Count: 86, Neg. LLF: 170.61225749645575
Iteration: 10, Func. Count: 95, Neg. LLF: 170.5099198542411
Iteration: 11, Func. Count: 104, Neg. LLF: 170.3603800230785
Iteration: 12, Func. Count: 113, Neg. LLF: 169.97026244997835
Iteration: 13, Func. Count: 122, Neg. LLF: 222.20998816636703
Iteration: 14, Func. Count: 132, Neg. LLF: 193.29645370962933
Iteration: 15, Func. Count: 142, Neg. LLF: 176.0150397971024
Iteration: 16, Func. Count: 152, Neg. LLF: 170.13861010485158
Iteration: 17, Func. Count: 162, Neg. LLF: 169.85370951911926
Iteration: 18, Func. Count: 172, Neg. LLF: 178.92370262451166
Iteration: 19, Func. Count: 182, Neg. LLF: 169.11413591288795
Iteration: 20, Func. Count: 192, Neg. LLF: 175.3285754268973
Iteration: 21, Func. Count: 202, Neg. LLF: 168.87075116226166
Iteration: 22, Func. Count: 212, Neg. LLF: 168.7336094606464
Iteration: 23, Func. Count: 221, Neg. LLF: 168.68501514800866
Iteration: 24, Func. Count: 230, Neg. LLF: 168.6454978545961
Iteration: 25, Func. Count: 239, Neg. LLF: 168.64337670389924
Iteration: 26, Func. Count: 248, Neg. LLF: 168.64205699932066
Iteration: 27, Func. Count: 257, Neg. LLF: 168.64182393466757
Iteration: 28, Func. Count: 266, Neg. LLF: 168.6417565499919
Iteration: 29, Func. Count: 275, Neg. LLF: 168.64175269947182
Iteration: 30, Func. Count: 283, Neg. LLF: 168.64175269950482
Optimization terminated successfully (Exit mode 0)
Current function value: 168.64175269947182
Iterations: 30
Function evaluations: 283
Gradient evaluations: 30
Iteration: 1, Func. Count: 7, Neg. LLF: 172.26329185568852
Iteration: 2, Func. Count: 14, Neg. LLF: 183.24893898227197
Iteration: 3, Func. Count: 22, Neg. LLF: 170.01223606518215
Iteration: 4, Func. Count: 28, Neg. LLF: 169.9239657755892
Iteration: 5, Func. Count: 34, Neg. LLF: 169.68163543696974
Iteration: 6, Func. Count: 40, Neg. LLF: 169.6036607463039
Iteration: 7, Func. Count: 46, Neg. LLF: 169.55779775342322
Iteration: 8, Func. Count: 52, Neg. LLF: 169.52240289942168
Iteration: 9, Func. Count: 58, Neg. LLF: 169.5111056168726
Iteration: 10, Func. Count: 64, Neg. LLF: 169.4514774729309
Iteration: 11, Func. Count: 70, Neg. LLF: 169.31258560195332
Iteration: 12, Func. Count: 76, Neg. LLF: 169.27658588221797
Iteration: 13, Func. Count: 82, Neg. LLF: 169.26247693993548
Iteration: 14, Func. Count: 88, Neg. LLF: 169.26208710268048
Iteration: 15, Func. Count: 94, Neg. LLF: 169.26207885336706
Iteration: 16, Func. Count: 100, Neg. LLF: 169.26207835054112
Optimization terminated successfully (Exit mode 0)
Current function value: 169.26207835054112
Iterations: 16
Function evaluations: 100
Gradient evaluations: 16
Iteration: 1, Func. Count: 8, Neg. LLF: 16097408.314196527
Iteration: 2, Func. Count: 17, Neg. LLF: 179.20802250865933
Iteration: 3, Func. Count: 25, Neg. LLF: 179.89775325724278
Iteration: 4, Func. Count: 33, Neg. LLF: 2437.2398248875897
Iteration: 5, Func. Count: 41, Neg. LLF: 169.39313773432792
Iteration: 6, Func. Count: 48, Neg. LLF: 169.07178072530178
Iteration: 7, Func. Count: 55, Neg. LLF: 168.9350759564939
Iteration: 8, Func. Count: 62, Neg. LLF: 168.95300645848266
Iteration: 9, Func. Count: 70, Neg. LLF: 168.89212415337406
Iteration: 10, Func. Count: 77, Neg. LLF: 168.89078887491317
Iteration: 11, Func. Count: 84, Neg. LLF: 168.8907830052686
Iteration: 12, Func. Count: 91, Neg. LLF: 168.89077925937272
Iteration: 13, Func. Count: 97, Neg. LLF: 168.89077925926003
Optimization terminated successfully (Exit mode 0)
Current function value: 168.89077925937272
Iterations: 13
Function evaluations: 97
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 385.1080319350355
Iteration: 2, Func. Count: 18, Neg. LLF: 275.02228463263333
Iteration: 3, Func. Count: 27, Neg. LLF: 170.19683663902495
Iteration: 4, Func. Count: 35, Neg. LLF: 171.58818059864439
Iteration: 5, Func. Count: 44, Neg. LLF: 170.56437550219204
Iteration: 6, Func. Count: 53, Neg. LLF: 169.92627059332708
Iteration: 7, Func. Count: 61, Neg. LLF: 169.86917461006388
Iteration: 8, Func. Count: 69, Neg. LLF: 171.49383021208652
Iteration: 9, Func. Count: 78, Neg. LLF: 169.79822409272253
Iteration: 10, Func. Count: 86, Neg. LLF: 169.44892229610423
Iteration: 11, Func. Count: 94, Neg. LLF: 169.35807005984407
Iteration: 12, Func. Count: 102, Neg. LLF: 174.3149635512468
Iteration: 13, Func. Count: 113, Neg. LLF: 169.0753849128553
Iteration: 14, Func. Count: 121, Neg. LLF: 169.0385072831592
Iteration: 15, Func. Count: 130, Neg. LLF: 168.82137127677214
Iteration: 16, Func. Count: 138, Neg. LLF: 168.81257843625528
Iteration: 17, Func. Count: 146, Neg. LLF: 168.80777258040618
Iteration: 18, Func. Count: 154, Neg. LLF: 168.80308516734328
Iteration: 19, Func. Count: 162, Neg. LLF: 168.80247420128362
Iteration: 20, Func. Count: 170, Neg. LLF: 168.80224080356794
Iteration: 21, Func. Count: 178, Neg. LLF: 168.80221843927416
Iteration: 22, Func. Count: 186, Neg. LLF: 168.80221768678297
Optimization terminated successfully (Exit mode 0)
Current function value: 168.80221768678297
Iterations: 22
Function evaluations: 186
Gradient evaluations: 22
Iteration: 1, Func. Count: 10, Neg. LLF: 172.1706731504581
Iteration: 2, Func. Count: 19, Neg. LLF: 208.68765293071635
Iteration: 3, Func. Count: 29, Neg. LLF: 201.44622441680326
Iteration: 4, Func. Count: 39, Neg. LLF: 197.59170943604016
Iteration: 5, Func. Count: 49, Neg. LLF: 194.77199342286522
Iteration: 6, Func. Count: 59, Neg. LLF: 194.11234561425184
Iteration: 7, Func. Count: 69, Neg. LLF: 173.8034885928541
Iteration: 8, Func. Count: 79, Neg. LLF: 172.26052447290067
Iteration: 9, Func. Count: 89, Neg. LLF: 172.00207655638977
Iteration: 10, Func. Count: 99, Neg. LLF: 171.69128858250866
Iteration: 11, Func. Count: 109, Neg. LLF: 169.80682384433265
Iteration: 12, Func. Count: 119, Neg. LLF: 169.35939416101172
Iteration: 13, Func. Count: 129, Neg. LLF: 169.19660128013317
Iteration: 14, Func. Count: 138, Neg. LLF: 169.063770924488
Iteration: 15, Func. Count: 147, Neg. LLF: 169.0369535081399
Iteration: 16, Func. Count: 156, Neg. LLF: 169.0356286294198
Iteration: 17, Func. Count: 165, Neg. LLF: 169.0354788312277
Iteration: 18, Func. Count: 174, Neg. LLF: 169.03546942923103
Iteration: 19, Func. Count: 183, Neg. LLF: 169.03546309361633
Iteration: 20, Func. Count: 192, Neg. LLF: 169.03544435444596
Iteration: 21, Func. Count: 201, Neg. LLF: 169.03540286717208
Iteration: 22, Func. Count: 210, Neg. LLF: 169.03531258900605
Iteration: 23, Func. Count: 219, Neg. LLF: 169.03516897534047
Iteration: 24, Func. Count: 228, Neg. LLF: 169.0350390046125
Iteration: 25, Func. Count: 237, Neg. LLF: 169.03500087109057
Iteration: 26, Func. Count: 246, Neg. LLF: 169.03499670657004
Iteration: 27, Func. Count: 254, Neg. LLF: 169.0349967065733
Optimization terminated successfully (Exit mode 0)
Current function value: 169.03499670657004
Iterations: 27
Function evaluations: 254
Gradient evaluations: 27
Iteration: 1, Func. Count: 11, Neg. LLF: 170.25780778649582
Iteration: 2, Func. Count: 21, Neg. LLF: 199.00264153488678
Iteration: 3, Func. Count: 32, Neg. LLF: 183.10086002362408
Iteration: 4, Func. Count: 43, Neg. LLF: 171.49068916325913
Iteration: 5, Func. Count: 54, Neg. LLF: 170.90628875944347
Iteration: 6, Func. Count: 65, Neg. LLF: 169.57739760245764
Iteration: 7, Func. Count: 76, Neg. LLF: 169.05498329492153
Iteration: 8, Func. Count: 86, Neg. LLF: 169.03945663571758
Iteration: 9, Func. Count: 96, Neg. LLF: 169.0376766150008
Iteration: 10, Func. Count: 106, Neg. LLF: 169.03510687819323
Iteration: 11, Func. Count: 116, Neg. LLF: 169.03509651671354
Iteration: 12, Func. Count: 126, Neg. LLF: 169.03509546643576
Iteration: 13, Func. Count: 136, Neg. LLF: 169.03509416791934
Iteration: 14, Func. Count: 146, Neg. LLF: 169.0350859157449
Iteration: 15, Func. Count: 156, Neg. LLF: 169.0350501294837
Iteration: 16, Func. Count: 166, Neg. LLF: 169.03502370112852
Iteration: 17, Func. Count: 176, Neg. LLF: 169.03500166531362
Iteration: 18, Func. Count: 186, Neg. LLF: 169.0349967667898
Iteration: 19, Func. Count: 195, Neg. LLF: 169.03499681146138
Optimization terminated successfully (Exit mode 0)
Current function value: 169.0349967667898
Iterations: 19
Function evaluations: 195
Gradient evaluations: 19
Iteration: 1, Func. Count: 8, Neg. LLF: 172.37609834495976
Iteration: 2, Func. Count: 16, Neg. LLF: 183.26394211022003
Iteration: 3, Func. Count: 25, Neg. LLF: 169.9990557263068
Iteration: 4, Func. Count: 32, Neg. LLF: 169.92320339194748
Iteration: 5, Func. Count: 39, Neg. LLF: 169.7154297934127
Iteration: 6, Func. Count: 46, Neg. LLF: 169.6258929440077
Iteration: 7, Func. Count: 53, Neg. LLF: 169.54858609042574
Iteration: 8, Func. Count: 60, Neg. LLF: 169.5126128980986
Iteration: 9, Func. Count: 67, Neg. LLF: 169.50015281069392
Iteration: 10, Func. Count: 74, Neg. LLF: 169.45834428308854
Iteration: 11, Func. Count: 81, Neg. LLF: 169.411350684769
Iteration: 12, Func. Count: 88, Neg. LLF: 169.30561133972293
Iteration: 13, Func. Count: 95, Neg. LLF: 169.27613543940294
Iteration: 14, Func. Count: 102, Neg. LLF: 173.89961199370867
Iteration: 15, Func. Count: 111, Neg. LLF: 169.26019607945986
Iteration: 16, Func. Count: 118, Neg. LLF: 169.26005494191324
Iteration: 17, Func. Count: 125, Neg. LLF: 169.26005059823677
Iteration: 18, Func. Count: 132, Neg. LLF: 169.2600499679201
Optimization terminated successfully (Exit mode 0)
Current function value: 169.2600499679201
Iterations: 18
Function evaluations: 132
Gradient evaluations: 18
Iteration: 1, Func. Count: 9, Neg. LLF: 16130731.459559422
Iteration: 2, Func. Count: 19, Neg. LLF: 179.63855375949882
Iteration: 3, Func. Count: 28, Neg. LLF: 182.62446264821847
Iteration: 4, Func. Count: 38, Neg. LLF: 169.84011448581802
Iteration: 5, Func. Count: 46, Neg. LLF: 169.63351979537498
Iteration: 6, Func. Count: 54, Neg. LLF: 169.44511262519097
Iteration: 7, Func. Count: 62, Neg. LLF: 181.79301052627946
Iteration: 8, Func. Count: 71, Neg. LLF: 173.81915962259924
Iteration: 9, Func. Count: 80, Neg. LLF: 170.81228264771053
Iteration: 10, Func. Count: 89, Neg. LLF: 169.7361358345225
Iteration: 11, Func. Count: 98, Neg. LLF: 169.1927546274667
Iteration: 12, Func. Count: 107, Neg. LLF: 168.929223319015
Iteration: 13, Func. Count: 115, Neg. LLF: 168.9817069017323
Iteration: 14, Func. Count: 124, Neg. LLF: 168.89200632084632
Iteration: 15, Func. Count: 132, Neg. LLF: 168.8907994913518
Iteration: 16, Func. Count: 140, Neg. LLF: 168.8907808029224
Iteration: 17, Func. Count: 148, Neg. LLF: 168.89077897372383
Iteration: 18, Func. Count: 155, Neg. LLF: 168.89077897367312
Optimization terminated successfully (Exit mode 0)
Current function value: 168.89077897372383
Iterations: 18
Function evaluations: 155
Gradient evaluations: 18
Iteration: 1, Func. Count: 10, Neg. LLF: 384.74375787014657
Iteration: 2, Func. Count: 20, Neg. LLF: 303.05105719098015
Iteration: 3, Func. Count: 30, Neg. LLF: 172.05895417024345
Iteration: 4, Func. Count: 40, Neg. LLF: 170.18515649541334
Iteration: 5, Func. Count: 49, Neg. LLF: 169.9629619109809
Iteration: 6, Func. Count: 58, Neg. LLF: 169.8865442111847
Iteration: 7, Func. Count: 67, Neg. LLF: 169.92370089309523
Iteration: 8, Func. Count: 77, Neg. LLF: 169.83616757169
Iteration: 9, Func. Count: 86, Neg. LLF: 169.48456333363848
Iteration: 10, Func. Count: 95, Neg. LLF: 169.19760107917912
Iteration: 11, Func. Count: 104, Neg. LLF: 170.30842863819925
Iteration: 12, Func. Count: 114, Neg. LLF: 168.99061215970374
Iteration: 13, Func. Count: 123, Neg. LLF: 168.90537861185243
Iteration: 14, Func. Count: 132, Neg. LLF: 168.8528131279676
Iteration: 15, Func. Count: 141, Neg. LLF: 168.82211106968475
Iteration: 16, Func. Count: 150, Neg. LLF: 168.81366831170402
Iteration: 17, Func. Count: 159, Neg. LLF: 168.81070340932882
Iteration: 18, Func. Count: 168, Neg. LLF: 168.80681781261706
Iteration: 19, Func. Count: 177, Neg. LLF: 168.8038888505217
Iteration: 20, Func. Count: 186, Neg. LLF: 168.8022556144278
Iteration: 21, Func. Count: 195, Neg. LLF: 168.8022347761432
Iteration: 22, Func. Count: 204, Neg. LLF: 168.80221985063028
Iteration: 23, Func. Count: 213, Neg. LLF: 195.34970095366307
Optimization terminated successfully (Exit mode 0)
Current function value: 168.80221900543106
Iterations: 24
Function evaluations: 217
Gradient evaluations: 23
Iteration: 1, Func. Count: 11, Neg. LLF: 384.59401380642714
Iteration: 2, Func. Count: 22, Neg. LLF: 204.77868579473517
Iteration: 3, Func. Count: 33, Neg. LLF: 170.49161404151045
Iteration: 4, Func. Count: 44, Neg. LLF: 168.8943547015169
Iteration: 5, Func. Count: 54, Neg. LLF: 168.8498208760533
Iteration: 6, Func. Count: 64, Neg. LLF: 168.65292613717793
Iteration: 7, Func. Count: 74, Neg. LLF: 168.4209868152246
Iteration: 8, Func. Count: 84, Neg. LLF: 168.33470498379106
Iteration: 9, Func. Count: 94, Neg. LLF: 168.28110606226684
Iteration: 10, Func. Count: 104, Neg. LLF: 168.2484089096579
Iteration: 11, Func. Count: 114, Neg. LLF: 168.19694073271074
Iteration: 12, Func. Count: 124, Neg. LLF: 168.12782729306102
Iteration: 13, Func. Count: 134, Neg. LLF: 168.08381071327665
Iteration: 14, Func. Count: 144, Neg. LLF: 168.0772794455937
Iteration: 15, Func. Count: 154, Neg. LLF: 168.15876363869077
Iteration: 16, Func. Count: 165, Neg. LLF: 168.0856778927141
Iteration: 17, Func. Count: 176, Neg. LLF: 168.06652302718518
Iteration: 18, Func. Count: 186, Neg. LLF: 168.06612824285762
Iteration: 19, Func. Count: 196, Neg. LLF: 168.06612188219626
Iteration: 20, Func. Count: 206, Neg. LLF: 168.06611486073987
Iteration: 21, Func. Count: 215, Neg. LLF: 168.06611486047825
Optimization terminated successfully (Exit mode 0)
Current function value: 168.06611486073987
Iterations: 21
Function evaluations: 215
Gradient evaluations: 21
Iteration: 1, Func. Count: 12, Neg. LLF: 171.7715467903355
Iteration: 2, Func. Count: 23, Neg. LLF: 175.20279307499456
Iteration: 3, Func. Count: 35, Neg. LLF: 197.0849771304533
Iteration: 4, Func. Count: 47, Neg. LLF: 200.37629501871868
Iteration: 5, Func. Count: 59, Neg. LLF: 196.37138474377235
Iteration: 6, Func. Count: 71, Neg. LLF: 184.60962911343623
Iteration: 7, Func. Count: 83, Neg. LLF: 188.16945795986732
Iteration: 8, Func. Count: 95, Neg. LLF: 184.190885822178
Iteration: 9, Func. Count: 107, Neg. LLF: 170.85086499638973
Iteration: 10, Func. Count: 119, Neg. LLF: 171.08179143397018
Iteration: 11, Func. Count: 131, Neg. LLF: 169.21938642924994
Iteration: 12, Func. Count: 142, Neg. LLF: 169.17146406533516
Iteration: 13, Func. Count: 153, Neg. LLF: 169.13347911204897
Iteration: 14, Func. Count: 164, Neg. LLF: 169.07975388277885
Iteration: 15, Func. Count: 175, Neg. LLF: 169.04358145853942
Iteration: 16, Func. Count: 186, Neg. LLF: 169.0361137237562
Iteration: 17, Func. Count: 197, Neg. LLF: 169.03528503760566
Iteration: 18, Func. Count: 208, Neg. LLF: 169.03527553368173
Iteration: 19, Func. Count: 219, Neg. LLF: 169.0352734678346
Iteration: 20, Func. Count: 230, Neg. LLF: 169.035260930652
Iteration: 21, Func. Count: 241, Neg. LLF: 169.03523764654062
Iteration: 22, Func. Count: 252, Neg. LLF: 169.03518489360118
Iteration: 23, Func. Count: 263, Neg. LLF: 169.03510447379938
Iteration: 24, Func. Count: 274, Neg. LLF: 169.03502692427085
Iteration: 25, Func. Count: 285, Neg. LLF: 169.0349990068925
Iteration: 26, Func. Count: 296, Neg. LLF: 169.03499649295136
Iteration: 27, Func. Count: 306, Neg. LLF: 169.03499653757726
Optimization terminated successfully (Exit mode 0)
Current function value: 169.03499649295136
Iterations: 27
Function evaluations: 306
Gradient evaluations: 27
Iteration: 1, Func. Count: 5, Neg. LLF: 183.11905587507454
Iteration: 2, Func. Count: 10, Neg. LLF: 181.9633989256521
Iteration: 3, Func. Count: 14, Neg. LLF: 181.73584758168275
Iteration: 4, Func. Count: 18, Neg. LLF: 181.6272877436651
Iteration: 5, Func. Count: 22, Neg. LLF: 181.45307953518773
Iteration: 6, Func. Count: 26, Neg. LLF: 181.06689128159235
Iteration: 7, Func. Count: 30, Neg. LLF: 180.37015142515506
Iteration: 8, Func. Count: 34, Neg. LLF: 179.7976293134309
Iteration: 9, Func. Count: 38, Neg. LLF: 179.58350119438612
Iteration: 10, Func. Count: 42, Neg. LLF: 179.547478058866
Iteration: 11, Func. Count: 46, Neg. LLF: 179.54187913680366
Iteration: 12, Func. Count: 50, Neg. LLF: 179.53910414278562
Iteration: 13, Func. Count: 54, Neg. LLF: 179.5389864517562
Iteration: 14, Func. Count: 58, Neg. LLF: 179.5389773666182
Iteration: 15, Func. Count: 62, Neg. LLF: 179.53897597790595
Iteration: 16, Func. Count: 65, Neg. LLF: 179.5389759779017
Optimization terminated successfully (Exit mode 0)
Current function value: 179.53897597790595
Iterations: 16
Function evaluations: 65
Gradient evaluations: 16
Iteration: 1, Func. Count: 6, Neg. LLF: 1524.4966068235517
Iteration: 2, Func. Count: 13, Neg. LLF: 202.8845381201311
Iteration: 3, Func. Count: 19, Neg. LLF: 176.7946819778583
Iteration: 4, Func. Count: 25, Neg. LLF: 171.63941150820298
Iteration: 5, Func. Count: 31, Neg. LLF: 174.3653123973155
Iteration: 6, Func. Count: 37, Neg. LLF: 175.92255735263635
Iteration: 7, Func. Count: 43, Neg. LLF: 174.97665045447167
Iteration: 8, Func. Count: 49, Neg. LLF: 192.5664340852233
Iteration: 9, Func. Count: 55, Neg. LLF: 174.06791144824632
Iteration: 10, Func. Count: 61, Neg. LLF: 177.96966945104447
Iteration: 11, Func. Count: 67, Neg. LLF: 173.64352118446803
Iteration: 12, Func. Count: 73, Neg. LLF: 172.41381732215106
Iteration: 13, Func. Count: 79, Neg. LLF: 171.10366822678915
Iteration: 14, Func. Count: 85, Neg. LLF: 169.95705666653376
Iteration: 15, Func. Count: 91, Neg. LLF: 169.49473578607282
Iteration: 16, Func. Count: 96, Neg. LLF: 169.32339735559745
Iteration: 17, Func. Count: 101, Neg. LLF: 169.18679999684468
Iteration: 18, Func. Count: 106, Neg. LLF: 169.18482809737193
Iteration: 19, Func. Count: 111, Neg. LLF: 169.18481964598695
Iteration: 20, Func. Count: 115, Neg. LLF: 169.18481964508456
Optimization terminated successfully (Exit mode 0)
Current function value: 169.18481964598695
Iterations: 20
Function evaluations: 115
Gradient evaluations: 20
Iteration: 1, Func. Count: 7, Neg. LLF: 1940.5761377866668
Iteration: 2, Func. Count: 15, Neg. LLF: 6303.785695051665
Iteration: 3, Func. Count: 22, Neg. LLF: 184.51082608132114
Iteration: 4, Func. Count: 29, Neg. LLF: 174.58625665657917
Iteration: 5, Func. Count: 36, Neg. LLF: 170.1751025691608
Iteration: 6, Func. Count: 42, Neg. LLF: 177.64707726532717
Iteration: 7, Func. Count: 50, Neg. LLF: 169.26611780080822
Iteration: 8, Func. Count: 56, Neg. LLF: 169.1979995733132
Iteration: 9, Func. Count: 62, Neg. LLF: 169.18577087517374
Iteration: 10, Func. Count: 68, Neg. LLF: 169.18482134628505
Iteration: 11, Func. Count: 74, Neg. LLF: 169.18481955450312
Iteration: 12, Func. Count: 79, Neg. LLF: 169.18481955880563
Optimization terminated successfully (Exit mode 0)
Current function value: 169.18481955450312
Iterations: 12
Function evaluations: 79
Gradient evaluations: 12
Iteration: 1, Func. Count: 8, Neg. LLF: 2485.4565342907395
Iteration: 2, Func. Count: 16, Neg. LLF: 5438.951884294056
Iteration: 3, Func. Count: 24, Neg. LLF: 176.9060335179002
Iteration: 4, Func. Count: 32, Neg. LLF: 187.96587809775366
Iteration: 5, Func. Count: 40, Neg. LLF: 170.62082332798641
Iteration: 6, Func. Count: 47, Neg. LLF: 173.77941934575136
Iteration: 7, Func. Count: 55, Neg. LLF: 169.62284556765204
Iteration: 8, Func. Count: 62, Neg. LLF: 169.32195400493868
Iteration: 9, Func. Count: 69, Neg. LLF: 169.29206567728085
Iteration: 10, Func. Count: 76, Neg. LLF: 169.22784639678423
Iteration: 11, Func. Count: 83, Neg. LLF: 169.20331950620678
Iteration: 12, Func. Count: 90, Neg. LLF: 169.1930607820512
Iteration: 13, Func. Count: 97, Neg. LLF: 169.18615314944145
Iteration: 14, Func. Count: 104, Neg. LLF: 169.1851587467201
Iteration: 15, Func. Count: 111, Neg. LLF: 169.18482958994275
Iteration: 16, Func. Count: 118, Neg. LLF: 169.1848197623748
Iteration: 17, Func. Count: 124, Neg. LLF: 169.1848197771808
Optimization terminated successfully (Exit mode 0)
Current function value: 169.1848197623748
Iterations: 17
Function evaluations: 124
Gradient evaluations: 17
Iteration: 1, Func. Count: 9, Neg. LLF: 2672.323091646547
Iteration: 2, Func. Count: 18, Neg. LLF: 13010.055645072272
Iteration: 3, Func. Count: 27, Neg. LLF: 178.14022839948043
Iteration: 4, Func. Count: 36, Neg. LLF: 183.6326542392389
Iteration: 5, Func. Count: 45, Neg. LLF: 171.28368107778016
Iteration: 6, Func. Count: 54, Neg. LLF: 170.8685885613363
Iteration: 7, Func. Count: 63, Neg. LLF: 169.46036355775638
Iteration: 8, Func. Count: 71, Neg. LLF: 169.2474212268595
Iteration: 9, Func. Count: 79, Neg. LLF: 169.18690337134922
Iteration: 10, Func. Count: 87, Neg. LLF: 169.1848221373875
Iteration: 11, Func. Count: 95, Neg. LLF: 169.18481956732043
Iteration: 12, Func. Count: 102, Neg. LLF: 169.18481959537087
Optimization terminated successfully (Exit mode 0)
Current function value: 169.18481956732043
Iterations: 12
Function evaluations: 102
Gradient evaluations: 12
Iteration: 1, Func. Count: 6, Neg. LLF: 181.44074562051586
Iteration: 2, Func. Count: 12, Neg. LLF: 179.53450333601344
Iteration: 3, Func. Count: 17, Neg. LLF: 197.78277024886518
Iteration: 4, Func. Count: 24, Neg. LLF: 179.45775791368735
Iteration: 5, Func. Count: 29, Neg. LLF: 179.2366091551072
Iteration: 6, Func. Count: 34, Neg. LLF: 178.88065142485434
Iteration: 7, Func. Count: 39, Neg. LLF: 178.5973933557292
Iteration: 8, Func. Count: 44, Neg. LLF: 178.2160225856967
Iteration: 9, Func. Count: 49, Neg. LLF: 178.17643469704845
Iteration: 10, Func. Count: 54, Neg. LLF: 178.17280080467475
Iteration: 11, Func. Count: 59, Neg. LLF: 178.1727409245044
Iteration: 12, Func. Count: 64, Neg. LLF: 178.17273843704214
Iteration: 13, Func. Count: 68, Neg. LLF: 178.17273843706624
Optimization terminated successfully (Exit mode 0)
Current function value: 178.17273843704214
Iterations: 13
Function evaluations: 68
Gradient evaluations: 13
Iteration: 1, Func. Count: 7, Neg. LLF: 356.96732539118034
Iteration: 2, Func. Count: 15, Neg. LLF: 173.56943603672124
Iteration: 3, Func. Count: 22, Neg. LLF: 181.78468206524423
Iteration: 4, Func. Count: 29, Neg. LLF: 170.93249801152393
Iteration: 5, Func. Count: 35, Neg. LLF: 170.85291643185442
Iteration: 6, Func. Count: 41, Neg. LLF: 170.8752780002932
Iteration: 7, Func. Count: 48, Neg. LLF: 170.82197578812534
Iteration: 8, Func. Count: 54, Neg. LLF: 170.81385047954183
Iteration: 9, Func. Count: 60, Neg. LLF: 170.75787257559213
Iteration: 10, Func. Count: 66, Neg. LLF: 169.9063431715336
Iteration: 11, Func. Count: 72, Neg. LLF: 171.36218826119102
Iteration: 12, Func. Count: 80, Neg. LLF: 169.07074693709757
Iteration: 13, Func. Count: 86, Neg. LLF: 168.97719551671904
Iteration: 14, Func. Count: 92, Neg. LLF: 168.97653100092424
Iteration: 15, Func. Count: 99, Neg. LLF: 168.96573936227267
Iteration: 16, Func. Count: 105, Neg. LLF: 168.96436266118988
Iteration: 17, Func. Count: 111, Neg. LLF: 168.96396552247856
Iteration: 18, Func. Count: 117, Neg. LLF: 168.96393185636475
Iteration: 19, Func. Count: 122, Neg. LLF: 168.9639318559398
Optimization terminated successfully (Exit mode 0)
Current function value: 168.96393185636475
Iterations: 19
Function evaluations: 122
Gradient evaluations: 19
Iteration: 1, Func. Count: 8, Neg. LLF: 1788.7971684978397
Iteration: 2, Func. Count: 17, Neg. LLF: 218.16082564017927
Iteration: 3, Func. Count: 25, Neg. LLF: 179.7931530198043
Iteration: 4, Func. Count: 33, Neg. LLF: 179.50697084332216
Iteration: 5, Func. Count: 41, Neg. LLF: 177.6457274226571
Iteration: 6, Func. Count: 49, Neg. LLF: 176.0449976824929
Iteration: 7, Func. Count: 57, Neg. LLF: 175.97908007101407
Iteration: 8, Func. Count: 65, Neg. LLF: 172.74367137151674
Iteration: 9, Func. Count: 73, Neg. LLF: 175.8392249835365
Iteration: 10, Func. Count: 81, Neg. LLF: 170.1253741020951
Iteration: 11, Func. Count: 89, Neg. LLF: 169.17193873722087
Iteration: 12, Func. Count: 96, Neg. LLF: 169.1102454400684
Iteration: 13, Func. Count: 104, Neg. LLF: 168.96689240786836
Iteration: 14, Func. Count: 111, Neg. LLF: 168.96522042512015
Iteration: 15, Func. Count: 118, Neg. LLF: 168.96398625304911
Iteration: 16, Func. Count: 125, Neg. LLF: 168.96394266782397
Iteration: 17, Func. Count: 132, Neg. LLF: 168.9639318442502
Iteration: 18, Func. Count: 138, Neg. LLF: 168.96393184856072
Optimization terminated successfully (Exit mode 0)
Current function value: 168.9639318442502
Iterations: 18
Function evaluations: 138
Gradient evaluations: 18
Iteration: 1, Func. Count: 9, Neg. LLF: 1313.3783027185993
Iteration: 2, Func. Count: 19, Neg. LLF: 1192.498805493017
Iteration: 3, Func. Count: 28, Neg. LLF: 190.70765465817314
Iteration: 4, Func. Count: 37, Neg. LLF: 172.73979015285585
Iteration: 5, Func. Count: 46, Neg. LLF: 172.59779852857656
Iteration: 6, Func. Count: 55, Neg. LLF: 173.44748591214932
Iteration: 7, Func. Count: 64, Neg. LLF: 177.04853833612273
Iteration: 8, Func. Count: 73, Neg. LLF: 176.87537401357199
Iteration: 9, Func. Count: 82, Neg. LLF: 185.79085096770794
Iteration: 10, Func. Count: 91, Neg. LLF: 178.96561498336558
Iteration: 11, Func. Count: 100, Neg. LLF: 175.1956666067792
Iteration: 12, Func. Count: 109, Neg. LLF: 170.65412420927152
Iteration: 13, Func. Count: 118, Neg. LLF: 169.71288314764695
Iteration: 14, Func. Count: 127, Neg. LLF: 169.0559797064481
Iteration: 15, Func. Count: 135, Neg. LLF: 169.3014620558719
Iteration: 16, Func. Count: 144, Neg. LLF: 168.9987005785042
Iteration: 17, Func. Count: 152, Neg. LLF: 168.96841664672124
Iteration: 18, Func. Count: 160, Neg. LLF: 168.96401310975475
Iteration: 19, Func. Count: 168, Neg. LLF: 168.96393177552315
Iteration: 20, Func. Count: 175, Neg. LLF: 168.96393178360876
Optimization terminated successfully (Exit mode 0)
Current function value: 168.96393177552315
Iterations: 20
Function evaluations: 175
Gradient evaluations: 20
Iteration: 1, Func. Count: 10, Neg. LLF: 1503.8400521644035
Iteration: 2, Func. Count: 21, Neg. LLF: 6270.289031938834
Iteration: 3, Func. Count: 31, Neg. LLF: 201.85464901474685
Iteration: 4, Func. Count: 41, Neg. LLF: 174.53958816192983
Iteration: 5, Func. Count: 51, Neg. LLF: 174.98572407591786
Iteration: 6, Func. Count: 61, Neg. LLF: 173.1547000934276
Iteration: 7, Func. Count: 71, Neg. LLF: 174.89009338250673
Iteration: 8, Func. Count: 81, Neg. LLF: 174.1536011335865
Iteration: 9, Func. Count: 91, Neg. LLF: 174.33333795578525
Iteration: 10, Func. Count: 101, Neg. LLF: 173.05062149930848
Iteration: 11, Func. Count: 111, Neg. LLF: 169.79506499837962
Iteration: 12, Func. Count: 121, Neg. LLF: 168.9741900399198
Iteration: 13, Func. Count: 130, Neg. LLF: 168.96789562119756
Iteration: 14, Func. Count: 139, Neg. LLF: 168.96942319895825
Iteration: 15, Func. Count: 149, Neg. LLF: 168.96404049242284
Iteration: 16, Func. Count: 158, Neg. LLF: 168.96393252131455
Iteration: 17, Func. Count: 167, Neg. LLF: 168.96393177630392
Optimization terminated successfully (Exit mode 0)
Current function value: 168.96393177630392
Iterations: 17
Function evaluations: 167
Gradient evaluations: 17
Iteration: 1, Func. Count: 7, Neg. LLF: 185.44977029593983
Iteration: 2, Func. Count: 15, Neg. LLF: 174.82514600116463
Iteration: 3, Func. Count: 22, Neg. LLF: 172.8463235435218
Iteration: 4, Func. Count: 28, Neg. LLF: 172.71444105662744
Iteration: 5, Func. Count: 34, Neg. LLF: 172.67727357860025
Iteration: 6, Func. Count: 40, Neg. LLF: 172.64570891494188
Iteration: 7, Func. Count: 46, Neg. LLF: 172.63021291362688
Iteration: 8, Func. Count: 52, Neg. LLF: 172.55168155712147
Iteration: 9, Func. Count: 58, Neg. LLF: 172.4455079169105
Iteration: 10, Func. Count: 64, Neg. LLF: 172.34969221973356
Iteration: 11, Func. Count: 70, Neg. LLF: 172.2828411091733
Iteration: 12, Func. Count: 76, Neg. LLF: 172.26245911562293
Iteration: 13, Func. Count: 82, Neg. LLF: 172.2581029400076
Iteration: 14, Func. Count: 88, Neg. LLF: 172.25685531599376
Iteration: 15, Func. Count: 94, Neg. LLF: 172.25671980855762
Iteration: 16, Func. Count: 100, Neg. LLF: 172.25671872018364
Iteration: 17, Func. Count: 105, Neg. LLF: 172.25671872018026
Optimization terminated successfully (Exit mode 0)
Current function value: 172.25671872018364
Iterations: 17
Function evaluations: 105
Gradient evaluations: 17
Iteration: 1, Func. Count: 8, Neg. LLF: 324.828626498141
Iteration: 2, Func. Count: 17, Neg. LLF: 280.06166027111556
Iteration: 3, Func. Count: 25, Neg. LLF: 170.39054661082997
Iteration: 4, Func. Count: 32, Neg. LLF: 170.29318366888165
Iteration: 5, Func. Count: 40, Neg. LLF: 170.60218095429215
Iteration: 6, Func. Count: 48, Neg. LLF: 170.07839085615902
Iteration: 7, Func. Count: 55, Neg. LLF: 170.07657603254205
Iteration: 8, Func. Count: 62, Neg. LLF: 170.0752152151284
Iteration: 9, Func. Count: 69, Neg. LLF: 170.07449681603708
Iteration: 10, Func. Count: 76, Neg. LLF: 170.07295892819036
Iteration: 11, Func. Count: 83, Neg. LLF: 170.0692771213989
Iteration: 12, Func. Count: 90, Neg. LLF: 170.04925216575714
Iteration: 13, Func. Count: 97, Neg. LLF: 169.77190856954002
Iteration: 14, Func. Count: 104, Neg. LLF: 168.94077055910043
Iteration: 15, Func. Count: 111, Neg. LLF: 171.53217647642572
Iteration: 16, Func. Count: 119, Neg. LLF: 169.4065531592886
Iteration: 17, Func. Count: 127, Neg. LLF: 168.90031279116062
Iteration: 18, Func. Count: 134, Neg. LLF: 168.89129849844534
Iteration: 19, Func. Count: 141, Neg. LLF: 168.8908062663043
Iteration: 20, Func. Count: 148, Neg. LLF: 168.89078218986864
Iteration: 21, Func. Count: 155, Neg. LLF: 168.89077897298174
Iteration: 22, Func. Count: 161, Neg. LLF: 168.89077897300047
Optimization terminated successfully (Exit mode 0)
Current function value: 168.89077897298174
Iterations: 22
Function evaluations: 161
Gradient evaluations: 22
Iteration: 1, Func. Count: 9, Neg. LLF: 1922.8444906334548
Iteration: 2, Func. Count: 19, Neg. LLF: 205.9453745851416
Iteration: 3, Func. Count: 28, Neg. LLF: 179.4676178058448
Iteration: 4, Func. Count: 37, Neg. LLF: 197.285872812134
Iteration: 5, Func. Count: 46, Neg. LLF: 170.4782042839235
Iteration: 6, Func. Count: 55, Neg. LLF: 169.85626910689896
Iteration: 7, Func. Count: 64, Neg. LLF: 169.1772426380427
Iteration: 8, Func. Count: 72, Neg. LLF: 169.0485970339016
Iteration: 9, Func. Count: 80, Neg. LLF: 168.9180846216127
Iteration: 10, Func. Count: 88, Neg. LLF: 168.88979419567795
Iteration: 11, Func. Count: 96, Neg. LLF: 168.89393748214346
Iteration: 12, Func. Count: 105, Neg. LLF: 168.88216787654213
Iteration: 13, Func. Count: 113, Neg. LLF: 168.88118012504316
Iteration: 14, Func. Count: 121, Neg. LLF: 168.8811287918225
Iteration: 15, Func. Count: 129, Neg. LLF: 168.88112646999664
Iteration: 16, Func. Count: 136, Neg. LLF: 168.88112647000816
Optimization terminated successfully (Exit mode 0)
Current function value: 168.88112646999664
Iterations: 16
Function evaluations: 136
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 1351.763774406983
Iteration: 2, Func. Count: 21, Neg. LLF: 216.31631912145494
Iteration: 3, Func. Count: 32, Neg. LLF: 181.44952857335028
Iteration: 4, Func. Count: 42, Neg. LLF: 184.1779005029762
Iteration: 5, Func. Count: 52, Neg. LLF: 180.58326988960644
Iteration: 6, Func. Count: 62, Neg. LLF: 173.6876583830351
Iteration: 7, Func. Count: 72, Neg. LLF: 172.9892442182866
Iteration: 8, Func. Count: 82, Neg. LLF: 172.0477193868884
Iteration: 9, Func. Count: 92, Neg. LLF: 169.3327185244503
Iteration: 10, Func. Count: 101, Neg. LLF: 168.97447822404789
Iteration: 11, Func. Count: 110, Neg. LLF: 168.78939607458219
Iteration: 12, Func. Count: 119, Neg. LLF: 168.79630547499255
Iteration: 13, Func. Count: 129, Neg. LLF: 168.72157545055927
Iteration: 14, Func. Count: 138, Neg. LLF: 168.64703039412132
Iteration: 15, Func. Count: 147, Neg. LLF: 168.61778315699598
Iteration: 16, Func. Count: 156, Neg. LLF: 168.60526971279106
Iteration: 17, Func. Count: 165, Neg. LLF: 168.6046643412564
Iteration: 18, Func. Count: 174, Neg. LLF: 168.60445600305488
Iteration: 19, Func. Count: 183, Neg. LLF: 168.60430035409468
Iteration: 20, Func. Count: 192, Neg. LLF: 168.60428712375594
Iteration: 21, Func. Count: 200, Neg. LLF: 168.60428712357702
Optimization terminated successfully (Exit mode 0)
Current function value: 168.60428712375594
Iterations: 21
Function evaluations: 200
Gradient evaluations: 21
Iteration: 1, Func. Count: 11, Neg. LLF: 1560.035431130996
Iteration: 2, Func. Count: 23, Neg. LLF: 337.23362732617056
Iteration: 3, Func. Count: 34, Neg. LLF: 186.85547510842528
Iteration: 4, Func. Count: 45, Neg. LLF: 176.48005779341156
Iteration: 5, Func. Count: 56, Neg. LLF: 176.9665588617762
Iteration: 6, Func. Count: 67, Neg. LLF: 178.21304198986084
Iteration: 7, Func. Count: 78, Neg. LLF: 170.97426424993424
Iteration: 8, Func. Count: 89, Neg. LLF: 169.8055145387837
Iteration: 9, Func. Count: 100, Neg. LLF: 169.09705529994855
Iteration: 10, Func. Count: 110, Neg. LLF: 168.87945046085892
Iteration: 11, Func. Count: 120, Neg. LLF: 168.71880948237455
Iteration: 12, Func. Count: 130, Neg. LLF: 168.64755450525203
Iteration: 13, Func. Count: 140, Neg. LLF: 168.67071501854582
Iteration: 14, Func. Count: 151, Neg. LLF: 168.61249082023167
Iteration: 15, Func. Count: 161, Neg. LLF: 168.60908495924923
Iteration: 16, Func. Count: 171, Neg. LLF: 168.6059150978755
Iteration: 17, Func. Count: 181, Neg. LLF: 168.6044275327752
Iteration: 18, Func. Count: 191, Neg. LLF: 168.6043204329957
Iteration: 19, Func. Count: 201, Neg. LLF: 168.604289478491
Iteration: 20, Func. Count: 211, Neg. LLF: 168.6042866298418
Iteration: 21, Func. Count: 220, Neg. LLF: 168.6042866321045
Optimization terminated successfully (Exit mode 0)
Current function value: 168.6042866298418
Iterations: 21
Function evaluations: 220
Gradient evaluations: 21
Iteration: 1, Func. Count: 8, Neg. LLF: 172.4336389215292
Iteration: 2, Func. Count: 16, Neg. LLF: 183.23605233470855
Iteration: 3, Func. Count: 25, Neg. LLF: 170.00324921977804
Iteration: 4, Func. Count: 32, Neg. LLF: 169.89517002083574
Iteration: 5, Func. Count: 39, Neg. LLF: 169.64334407340118
Iteration: 6, Func. Count: 46, Neg. LLF: 169.58462233597754
Iteration: 7, Func. Count: 53, Neg. LLF: 169.5575299262204
Iteration: 8, Func. Count: 60, Neg. LLF: 169.54226434419766
Iteration: 9, Func. Count: 67, Neg. LLF: 169.5025133171529
Iteration: 10, Func. Count: 74, Neg. LLF: 169.43310818866487
Iteration: 11, Func. Count: 81, Neg. LLF: 169.35630187188607
Iteration: 12, Func. Count: 88, Neg. LLF: 169.3036784362761
Iteration: 13, Func. Count: 95, Neg. LLF: 169.26445514900203
Iteration: 14, Func. Count: 102, Neg. LLF: 169.26214423559264
Iteration: 15, Func. Count: 109, Neg. LLF: 169.26208015544987
Iteration: 16, Func. Count: 116, Neg. LLF: 169.26207833996105
Iteration: 17, Func. Count: 122, Neg. LLF: 169.26207833995807
Optimization terminated successfully (Exit mode 0)
Current function value: 169.26207833996105
Iterations: 17
Function evaluations: 122
Gradient evaluations: 17
Iteration: 1, Func. Count: 9, Neg. LLF: 273.3092614936891
Iteration: 2, Func. Count: 18, Neg. LLF: 175.31420417115686
Iteration: 3, Func. Count: 28, Neg. LLF: 171.0589135554976
Iteration: 4, Func. Count: 37, Neg. LLF: 170.17132604945698
Iteration: 5, Func. Count: 45, Neg. LLF: 170.28675277047097
Iteration: 6, Func. Count: 54, Neg. LLF: 170.31162804760316
Iteration: 7, Func. Count: 63, Neg. LLF: 170.04980641451147
Iteration: 8, Func. Count: 71, Neg. LLF: 170.0481826032597
Iteration: 9, Func. Count: 79, Neg. LLF: 170.04670693778968
Iteration: 10, Func. Count: 87, Neg. LLF: 170.04619436219312
Iteration: 11, Func. Count: 95, Neg. LLF: 170.04280905280103
Iteration: 12, Func. Count: 103, Neg. LLF: 170.03418717554257
Iteration: 13, Func. Count: 111, Neg. LLF: 170.02169289917478
Iteration: 14, Func. Count: 119, Neg. LLF: 169.94631564633653
Iteration: 15, Func. Count: 127, Neg. LLF: 169.67039463984383
Iteration: 16, Func. Count: 135, Neg. LLF: 169.39927495245414
Iteration: 17, Func. Count: 143, Neg. LLF: 169.40056114056637
Iteration: 18, Func. Count: 152, Neg. LLF: 169.33465829476307
Iteration: 19, Func. Count: 160, Neg. LLF: 169.29636333905185
Iteration: 20, Func. Count: 168, Neg. LLF: 169.27615146641276
Iteration: 21, Func. Count: 176, Neg. LLF: 169.26700430599993
Iteration: 22, Func. Count: 184, Neg. LLF: 169.26428642732992
Iteration: 23, Func. Count: 192, Neg. LLF: 169.2627601715578
Iteration: 24, Func. Count: 200, Neg. LLF: 169.2607099743239
Iteration: 25, Func. Count: 208, Neg. LLF: 169.2593433425339
Iteration: 26, Func. Count: 216, Neg. LLF: 169.25906602590285
Iteration: 27, Func. Count: 224, Neg. LLF: 169.25904786503492
Iteration: 28, Func. Count: 231, Neg. LLF: 169.25904786497554
Optimization terminated successfully (Exit mode 0)
Current function value: 169.25904786503492
Iterations: 28
Function evaluations: 231
Gradient evaluations: 28
Iteration: 1, Func. Count: 10, Neg. LLF: 1954.8107477333174
Iteration: 2, Func. Count: 21, Neg. LLF: 176.18123331895453
Iteration: 3, Func. Count: 31, Neg. LLF: 179.39367854505434
Iteration: 4, Func. Count: 41, Neg. LLF: 174.52229003381083
Iteration: 5, Func. Count: 51, Neg. LLF: 169.67260176050533
Iteration: 6, Func. Count: 60, Neg. LLF: 169.37572605133474
Iteration: 7, Func. Count: 69, Neg. LLF: 170.8327684638795
Iteration: 8, Func. Count: 79, Neg. LLF: 169.56852527349352
Iteration: 9, Func. Count: 89, Neg. LLF: 169.04154324079758
Iteration: 10, Func. Count: 98, Neg. LLF: 169.91932641833324
Iteration: 11, Func. Count: 108, Neg. LLF: 170.28002803062944
Iteration: 12, Func. Count: 118, Neg. LLF: 170.26661413369803
Iteration: 13, Func. Count: 128, Neg. LLF: 169.51684575549953
Iteration: 14, Func. Count: 138, Neg. LLF: 176.31715041039115
Iteration: 15, Func. Count: 149, Neg. LLF: 170.19199995769935
Iteration: 16, Func. Count: 159, Neg. LLF: 168.9703363694011
Iteration: 17, Func. Count: 169, Neg. LLF: 168.84045132387857
Iteration: 18, Func. Count: 178, Neg. LLF: 168.8383770032618
Iteration: 19, Func. Count: 187, Neg. LLF: 168.83701624064082
Iteration: 20, Func. Count: 196, Neg. LLF: 168.83519243490304
Iteration: 21, Func. Count: 205, Neg. LLF: 168.83395477141607
Iteration: 22, Func. Count: 214, Neg. LLF: 168.82911119362257
Iteration: 23, Func. Count: 223, Neg. LLF: 168.82090960443995
Iteration: 24, Func. Count: 232, Neg. LLF: 168.80993322344412
Iteration: 25, Func. Count: 241, Neg. LLF: 168.80344091324756
Iteration: 26, Func. Count: 250, Neg. LLF: 168.8022771769156
Iteration: 27, Func. Count: 259, Neg. LLF: 168.8022406748904
Iteration: 28, Func. Count: 268, Neg. LLF: 168.80222112225223
Iteration: 29, Func. Count: 277, Neg. LLF: 168.80221805405253
Iteration: 30, Func. Count: 285, Neg. LLF: 168.80221805377403
Optimization terminated successfully (Exit mode 0)
Current function value: 168.80221805405253
Iterations: 30
Function evaluations: 285
Gradient evaluations: 30
Iteration: 1, Func. Count: 11, Neg. LLF: 1355.9464344609357
Iteration: 2, Func. Count: 23, Neg. LLF: 426.2605310117942
Iteration: 3, Func. Count: 35, Neg. LLF: 184.4334399095196
Iteration: 4, Func. Count: 46, Neg. LLF: 169.82332686168942
Iteration: 5, Func. Count: 56, Neg. LLF: 169.52936569745376
Iteration: 6, Func. Count: 67, Neg. LLF: 169.36388912041443
Iteration: 7, Func. Count: 78, Neg. LLF: 168.5903693522641
Iteration: 8, Func. Count: 89, Neg. LLF: 168.58723366088455
Iteration: 9, Func. Count: 100, Neg. LLF: 168.15912354806198
Iteration: 10, Func. Count: 111, Neg. LLF: 169.81779833471109
Iteration: 11, Func. Count: 122, Neg. LLF: 168.07856334662475
Iteration: 12, Func. Count: 132, Neg. LLF: 168.06842659721514
Iteration: 13, Func. Count: 142, Neg. LLF: 168.06721287132913
Iteration: 14, Func. Count: 152, Neg. LLF: 168.06681020495654
Iteration: 15, Func. Count: 162, Neg. LLF: 168.06678324540115
Iteration: 16, Func. Count: 172, Neg. LLF: 168.06663429843354
Iteration: 17, Func. Count: 182, Neg. LLF: 168.06619772091153
Iteration: 18, Func. Count: 192, Neg. LLF: 168.06612441559201
Iteration: 19, Func. Count: 202, Neg. LLF: 168.0661152533099
Iteration: 20, Func. Count: 212, Neg. LLF: 168.066114647915
Optimization terminated successfully (Exit mode 0)
Current function value: 168.066114647915
Iterations: 20
Function evaluations: 212
Gradient evaluations: 20
Iteration: 1, Func. Count: 12, Neg. LLF: 1559.1734513428787
Iteration: 2, Func. Count: 25, Neg. LLF: 5886565.702220921
Iteration: 3, Func. Count: 37, Neg. LLF: 187.90730644281328
Iteration: 4, Func. Count: 49, Neg. LLF: 170.1893638607114
Iteration: 5, Func. Count: 60, Neg. LLF: 170.43085682939468
Iteration: 6, Func. Count: 73, Neg. LLF: 173.8904655030234
Iteration: 7, Func. Count: 86, Neg. LLF: 172.20134579783263
Iteration: 8, Func. Count: 98, Neg. LLF: 169.55604217579008
Iteration: 9, Func. Count: 110, Neg. LLF: 168.2813360224299
Iteration: 10, Func. Count: 121, Neg. LLF: 168.1567383896732
Iteration: 11, Func. Count: 132, Neg. LLF: 168.1297937133595
Iteration: 12, Func. Count: 143, Neg. LLF: 168.11031620718595
Iteration: 13, Func. Count: 154, Neg. LLF: 168.08584674333719
Iteration: 14, Func. Count: 165, Neg. LLF: 168.07201549257013
Iteration: 15, Func. Count: 176, Neg. LLF: 168.0446796876188
Iteration: 16, Func. Count: 187, Neg. LLF: 168.04288937461055
Iteration: 17, Func. Count: 198, Neg. LLF: 168.04194577740705
Iteration: 18, Func. Count: 209, Neg. LLF: 168.0361524660273
Iteration: 19, Func. Count: 220, Neg. LLF: 168.03077413409792
Iteration: 20, Func. Count: 231, Neg. LLF: 168.0280784652986
Iteration: 21, Func. Count: 242, Neg. LLF: 168.02660184921845
Iteration: 22, Func. Count: 253, Neg. LLF: 168.02623662916918
Iteration: 23, Func. Count: 264, Neg. LLF: 168.02533950808714
Iteration: 24, Func. Count: 275, Neg. LLF: 168.02521108418887
Iteration: 25, Func. Count: 286, Neg. LLF: 168.0252014104902
Iteration: 26, Func. Count: 297, Neg. LLF: 168.02520047809472
Optimization terminated successfully (Exit mode 0)
Current function value: 168.02520047809472
Iterations: 26
Function evaluations: 297
Gradient evaluations: 26
Iteration: 1, Func. Count: 9, Neg. LLF: 172.61162255112427
Iteration: 2, Func. Count: 18, Neg. LLF: 182.53059188552493
Iteration: 3, Func. Count: 27, Neg. LLF: 170.0419228193105
Iteration: 4, Func. Count: 35, Neg. LLF: 169.90998584609724
Iteration: 5, Func. Count: 43, Neg. LLF: 170.01342613763967
Iteration: 6, Func. Count: 52, Neg. LLF: 169.6545628970203
Iteration: 7, Func. Count: 60, Neg. LLF: 169.57124137652568
Iteration: 8, Func. Count: 68, Neg. LLF: 169.5404409667641
Iteration: 9, Func. Count: 76, Neg. LLF: 169.52529713477574
Iteration: 10, Func. Count: 84, Neg. LLF: 169.49824246479477
Iteration: 11, Func. Count: 92, Neg. LLF: 169.40927574151004
Iteration: 12, Func. Count: 100, Neg. LLF: 169.3283779321901
Iteration: 13, Func. Count: 108, Neg. LLF: 169.27743237169668
Iteration: 14, Func. Count: 116, Neg. LLF: 170.5097629359103
Iteration: 15, Func. Count: 126, Neg. LLF: 169.26128121456296
Iteration: 16, Func. Count: 134, Neg. LLF: 169.260066306092
Iteration: 17, Func. Count: 142, Neg. LLF: 169.26005002268073
Iteration: 18, Func. Count: 149, Neg. LLF: 169.26005002269574
Optimization terminated successfully (Exit mode 0)
Current function value: 169.26005002268073
Iterations: 18
Function evaluations: 149
Gradient evaluations: 18
Iteration: 1, Func. Count: 10, Neg. LLF: 276.9304424071078
Iteration: 2, Func. Count: 20, Neg. LLF: 332.5776442227512
Iteration: 3, Func. Count: 31, Neg. LLF: 170.30208255200446
Iteration: 4, Func. Count: 40, Neg. LLF: 170.32948981344987
Iteration: 5, Func. Count: 50, Neg. LLF: 170.87492385458654
Iteration: 6, Func. Count: 60, Neg. LLF: 170.68310892009004
Iteration: 7, Func. Count: 70, Neg. LLF: 170.04868599552083
Iteration: 8, Func. Count: 79, Neg. LLF: 170.04710347634364
Iteration: 9, Func. Count: 88, Neg. LLF: 170.04576721915743
Iteration: 10, Func. Count: 97, Neg. LLF: 170.044695349476
Iteration: 11, Func. Count: 106, Neg. LLF: 170.04357104946317
Iteration: 12, Func. Count: 115, Neg. LLF: 170.03605775520126
Iteration: 13, Func. Count: 124, Neg. LLF: 169.9953329069368
Iteration: 14, Func. Count: 133, Neg. LLF: 169.69940892984448
Iteration: 15, Func. Count: 142, Neg. LLF: 169.60337495073068
Iteration: 16, Func. Count: 151, Neg. LLF: 169.3601123845285
Iteration: 17, Func. Count: 160, Neg. LLF: 173.4932220783194
Iteration: 18, Func. Count: 171, Neg. LLF: 169.32229199714243
Iteration: 19, Func. Count: 180, Neg. LLF: 169.30969082687855
Iteration: 20, Func. Count: 189, Neg. LLF: 169.28584266448564
Iteration: 21, Func. Count: 198, Neg. LLF: 169.26590525952795
Iteration: 22, Func. Count: 207, Neg. LLF: 169.2596561563146
Iteration: 23, Func. Count: 216, Neg. LLF: 169.25910775070707
Iteration: 24, Func. Count: 225, Neg. LLF: 169.2590531806831
Iteration: 25, Func. Count: 234, Neg. LLF: 169.25904796097805
Iteration: 26, Func. Count: 242, Neg. LLF: 169.25904796105937
Optimization terminated successfully (Exit mode 0)
Current function value: 169.25904796097805
Iterations: 26
Function evaluations: 242
Gradient evaluations: 26
Iteration: 1, Func. Count: 11, Neg. LLF: 2085.1066302548893
Iteration: 2, Func. Count: 23, Neg. LLF: 185.1588859916138
Iteration: 3, Func. Count: 34, Neg. LLF: 195.63207445912673
Iteration: 4, Func. Count: 45, Neg. LLF: 175.93209038322723
Iteration: 5, Func. Count: 56, Neg. LLF: 176.55364465470544
Iteration: 6, Func. Count: 67, Neg. LLF: 172.85895236719134
Iteration: 7, Func. Count: 78, Neg. LLF: 171.7087325050287
Iteration: 8, Func. Count: 89, Neg. LLF: 169.58328567794956
Iteration: 9, Func. Count: 99, Neg. LLF: 169.3682756345169
Iteration: 10, Func. Count: 109, Neg. LLF: 173.18358755403838
Iteration: 11, Func. Count: 122, Neg. LLF: 168.79845069640632
Iteration: 12, Func. Count: 132, Neg. LLF: 168.5400889752975
Iteration: 13, Func. Count: 142, Neg. LLF: 168.32480779529197
Iteration: 14, Func. Count: 152, Neg. LLF: 168.31273470891955
Iteration: 15, Func. Count: 162, Neg. LLF: 15567526.61680163
Iteration: 16, Func. Count: 176, Neg. LLF: 169.78588436736118
Iteration: 17, Func. Count: 188, Neg. LLF: 168.37232469621887
Iteration: 18, Func. Count: 199, Neg. LLF: 168.3101287133268
Optimization terminated successfully (Exit mode 0)
Current function value: 168.3101287133268
Iterations: 19
Function evaluations: 199
Gradient evaluations: 18
Iteration: 1, Func. Count: 12, Neg. LLF: 837.7001526005517
Iteration: 2, Func. Count: 24, Neg. LLF: 178.7599138509296
Iteration: 3, Func. Count: 36, Neg. LLF: 208.53384436080975
Iteration: 4, Func. Count: 48, Neg. LLF: 180.74904709953844
Iteration: 5, Func. Count: 60, Neg. LLF: 186.89310649566804
Iteration: 6, Func. Count: 72, Neg. LLF: 170.77503667604222
Iteration: 7, Func. Count: 84, Neg. LLF: 173.03322749519788
Iteration: 8, Func. Count: 96, Neg. LLF: 168.7140700145776
Iteration: 9, Func. Count: 107, Neg. LLF: 169.00036296493533
Iteration: 10, Func. Count: 119, Neg. LLF: 169.52277966006315
Iteration: 11, Func. Count: 132, Neg. LLF: 168.16455295278837
Iteration: 12, Func. Count: 144, Neg. LLF: 168.0864931080664
Iteration: 13, Func. Count: 155, Neg. LLF: 168.07055780462935
Iteration: 14, Func. Count: 166, Neg. LLF: 168.06913066865826
Iteration: 15, Func. Count: 177, Neg. LLF: 168.06888639838323
Iteration: 16, Func. Count: 188, Neg. LLF: 168.06875645917
Iteration: 17, Func. Count: 199, Neg. LLF: 168.0680100249021
Iteration: 18, Func. Count: 210, Neg. LLF: 168.06688027443806
Iteration: 19, Func. Count: 221, Neg. LLF: 168.06639806181929
Iteration: 20, Func. Count: 232, Neg. LLF: 168.06611923264978
Iteration: 21, Func. Count: 243, Neg. LLF: 168.06611464728894
Iteration: 22, Func. Count: 253, Neg. LLF: 168.06611464724526
Optimization terminated successfully (Exit mode 0)
Current function value: 168.06611464728894
Iterations: 22
Function evaluations: 253
Gradient evaluations: 22
Iteration: 1, Func. Count: 13, Neg. LLF: 1620.4255613997668
Iteration: 2, Func. Count: 26, Neg. LLF: 5915912.418388634
Iteration: 3, Func. Count: 39, Neg. LLF: 184.3487446992018
Iteration: 4, Func. Count: 52, Neg. LLF: 173.90327601757656
Iteration: 5, Func. Count: 65, Neg. LLF: 169.26906287976945
Iteration: 6, Func. Count: 77, Neg. LLF: 169.19502715589852
Iteration: 7, Func. Count: 90, Neg. LLF: 168.7488827753967
Iteration: 8, Func. Count: 103, Neg. LLF: 168.26024520531453
Iteration: 9, Func. Count: 115, Neg. LLF: 169.45412916787672
Iteration: 10, Func. Count: 128, Neg. LLF: 170.1045196323568
Iteration: 11, Func. Count: 142, Neg. LLF: 168.04615207456075
Iteration: 12, Func. Count: 154, Neg. LLF: 168.04055713672133
Iteration: 13, Func. Count: 166, Neg. LLF: 168.03806006909008
Iteration: 14, Func. Count: 178, Neg. LLF: 168.03741616641324
Iteration: 15, Func. Count: 190, Neg. LLF: 168.03435571901113
Iteration: 16, Func. Count: 202, Neg. LLF: 168.02787297636166
Iteration: 17, Func. Count: 214, Neg. LLF: 168.0266535332839
Iteration: 18, Func. Count: 226, Neg. LLF: 168.0261420826872
Iteration: 19, Func. Count: 238, Neg. LLF: 168.02555613258696
Iteration: 20, Func. Count: 250, Neg. LLF: 168.02531691177677
Iteration: 21, Func. Count: 262, Neg. LLF: 168.02520629182692
Iteration: 22, Func. Count: 274, Neg. LLF: 168.0252004524328
Iteration: 23, Func. Count: 285, Neg. LLF: 168.02520045254417
Optimization terminated successfully (Exit mode 0)
Current function value: 168.0252004524328
Iterations: 23
Function evaluations: 285
Gradient evaluations: 23
Iteration: 1, Func. Count: 6, Neg. LLF: 173.47610552091191
Iteration: 2, Func. Count: 12, Neg. LLF: 174.45173604519516
Iteration: 3, Func. Count: 19, Neg. LLF: 172.54693652944204
Iteration: 4, Func. Count: 25, Neg. LLF: 171.6658155038746
Iteration: 5, Func. Count: 30, Neg. LLF: 171.5007848215152
Iteration: 6, Func. Count: 35, Neg. LLF: 171.25819328672372
Iteration: 7, Func. Count: 40, Neg. LLF: 171.08378094749176
Iteration: 8, Func. Count: 45, Neg. LLF: 170.27294865755113
Iteration: 9, Func. Count: 50, Neg. LLF: 169.884581365501
Iteration: 10, Func. Count: 55, Neg. LLF: 169.5875065267714
Iteration: 11, Func. Count: 61, Neg. LLF: 169.04974098489922
Iteration: 12, Func. Count: 66, Neg. LLF: 169.04080510889355
Iteration: 13, Func. Count: 71, Neg. LLF: 169.03999520257784
Iteration: 14, Func. Count: 76, Neg. LLF: 169.03964494056876
Iteration: 15, Func. Count: 81, Neg. LLF: 169.03959442770667
Iteration: 16, Func. Count: 86, Neg. LLF: 169.03956417442961
Iteration: 17, Func. Count: 91, Neg. LLF: 169.03956198198608
Iteration: 18, Func. Count: 95, Neg. LLF: 169.03956198198463
Optimization terminated successfully (Exit mode 0)
Current function value: 169.03956198198608
Iterations: 18
Function evaluations: 95
Gradient evaluations: 18
Iteration: 1, Func. Count: 7, Neg. LLF: 1783.5599971758581
Iteration: 2, Func. Count: 15, Neg. LLF: 181.72400988154214
Iteration: 3, Func. Count: 22, Neg. LLF: 168.52317046425333
Iteration: 4, Func. Count: 28, Neg. LLF: 167.970117407086
Iteration: 5, Func. Count: 34, Neg. LLF: 167.97356804207723
Iteration: 6, Func. Count: 41, Neg. LLF: 167.92661140017904
Iteration: 7, Func. Count: 47, Neg. LLF: 167.83213631812794
Iteration: 8, Func. Count: 53, Neg. LLF: 167.81913573587588
Iteration: 9, Func. Count: 59, Neg. LLF: 167.79499390905042
Iteration: 10, Func. Count: 65, Neg. LLF: 167.79324950727442
Iteration: 11, Func. Count: 71, Neg. LLF: 167.79318183527724
Iteration: 12, Func. Count: 77, Neg. LLF: 167.79318118238086
Optimization terminated successfully (Exit mode 0)
Current function value: 167.79318118238086
Iterations: 12
Function evaluations: 77
Gradient evaluations: 12
Iteration: 1, Func. Count: 8, Neg. LLF: 2514.5639315982758
Iteration: 2, Func. Count: 16, Neg. LLF: 317.8189418379034
Iteration: 3, Func. Count: 24, Neg. LLF: 204.88532402737957
Iteration: 4, Func. Count: 32, Neg. LLF: 189.7410478216034
Iteration: 5, Func. Count: 40, Neg. LLF: 185.79879158414053
Iteration: 6, Func. Count: 48, Neg. LLF: 172.8519343888697
Iteration: 7, Func. Count: 56, Neg. LLF: 169.56888872787385
Iteration: 8, Func. Count: 64, Neg. LLF: 167.7177574037865
Iteration: 9, Func. Count: 72, Neg. LLF: 169.95829010228312
Iteration: 10, Func. Count: 80, Neg. LLF: 166.5010844533293
Iteration: 11, Func. Count: 87, Neg. LLF: 166.04104263779405
Iteration: 12, Func. Count: 94, Neg. LLF: 165.35416719677573
Iteration: 13, Func. Count: 101, Neg. LLF: 165.21816734677301
Iteration: 14, Func. Count: 108, Neg. LLF: 165.18618014535352
Iteration: 15, Func. Count: 115, Neg. LLF: 165.1444867356348
Iteration: 16, Func. Count: 122, Neg. LLF: 165.1340122639873
Iteration: 17, Func. Count: 129, Neg. LLF: 165.12308806576033
Iteration: 18, Func. Count: 136, Neg. LLF: 165.1108821647411
Iteration: 19, Func. Count: 143, Neg. LLF: 165.10157640757123
Iteration: 20, Func. Count: 150, Neg. LLF: 165.10037446217913
Iteration: 21, Func. Count: 157, Neg. LLF: 165.1002009981804
Iteration: 22, Func. Count: 164, Neg. LLF: 165.1001971166107
Iteration: 23, Func. Count: 170, Neg. LLF: 165.10019711653567
Optimization terminated successfully (Exit mode 0)
Current function value: 165.1001971166107
Iterations: 23
Function evaluations: 170
Gradient evaluations: 23
Iteration: 1, Func. Count: 9, Neg. LLF: 2997.934842775928
Iteration: 2, Func. Count: 18, Neg. LLF: 205.18214273340075
Iteration: 3, Func. Count: 27, Neg. LLF: 171.47769259078444
Iteration: 4, Func. Count: 36, Neg. LLF: 169.19416072701554
Iteration: 5, Func. Count: 44, Neg. LLF: 169.3121678814375
Iteration: 6, Func. Count: 53, Neg. LLF: 170.0809877178004
Iteration: 7, Func. Count: 62, Neg. LLF: 169.23845804483386
Iteration: 8, Func. Count: 71, Neg. LLF: 167.79762931531567
Iteration: 9, Func. Count: 80, Neg. LLF: 167.38575503686252
Iteration: 10, Func. Count: 88, Neg. LLF: 167.22638203624524
Iteration: 11, Func. Count: 96, Neg. LLF: 166.282413346939
Iteration: 12, Func. Count: 104, Neg. LLF: 165.93956576101866
Iteration: 13, Func. Count: 112, Neg. LLF: 165.79540032400547
Iteration: 14, Func. Count: 121, Neg. LLF: 165.38696571612113
Iteration: 15, Func. Count: 129, Neg. LLF: 165.1693397169262
Iteration: 16, Func. Count: 137, Neg. LLF: 165.15917055975044
Iteration: 17, Func. Count: 146, Neg. LLF: 165.10672730558528
Iteration: 18, Func. Count: 154, Neg. LLF: 165.10375039118537
Iteration: 19, Func. Count: 162, Neg. LLF: 165.10095897232478
Iteration: 20, Func. Count: 170, Neg. LLF: 165.1003524438382
Iteration: 21, Func. Count: 178, Neg. LLF: 165.10021050679654
Iteration: 22, Func. Count: 186, Neg. LLF: 165.2081782746333
Optimization terminated successfully (Exit mode 0)
Current function value: 165.1002101091563
Iterations: 23
Function evaluations: 189
Gradient evaluations: 22
Iteration: 1, Func. Count: 10, Neg. LLF: 374.15714680178615
Iteration: 2, Func. Count: 20, Neg. LLF: 257.46476713740753
Iteration: 3, Func. Count: 30, Neg. LLF: 188.2132945262927
Iteration: 4, Func. Count: 40, Neg. LLF: 166.75294330973148
Iteration: 5, Func. Count: 49, Neg. LLF: 174.43214939338054
Iteration: 6, Func. Count: 59, Neg. LLF: 169.6311056607639
Iteration: 7, Func. Count: 69, Neg. LLF: 165.68072881055252
Iteration: 8, Func. Count: 78, Neg. LLF: 165.1400299933745
Iteration: 9, Func. Count: 87, Neg. LLF: 164.7618883836673
Iteration: 10, Func. Count: 96, Neg. LLF: 164.762402208153
Iteration: 11, Func. Count: 106, Neg. LLF: 164.0372259304253
Iteration: 12, Func. Count: 115, Neg. LLF: 163.75950322089528
Iteration: 13, Func. Count: 124, Neg. LLF: 163.72171062403058
Iteration: 14, Func. Count: 133, Neg. LLF: 163.7026041367823
Iteration: 15, Func. Count: 142, Neg. LLF: 163.68832706540582
Iteration: 16, Func. Count: 151, Neg. LLF: 163.68502571341574
Iteration: 17, Func. Count: 160, Neg. LLF: 163.68430535298208
Iteration: 18, Func. Count: 169, Neg. LLF: 163.6842600058956
Iteration: 19, Func. Count: 178, Neg. LLF: 163.68425439467723
Iteration: 20, Func. Count: 186, Neg. LLF: 163.68425439467686
Optimization terminated successfully (Exit mode 0)
Current function value: 163.68425439467723
Iterations: 20
Function evaluations: 186
Gradient evaluations: 20
Iteration: 1, Func. Count: 7, Neg. LLF: 173.52849539756104
Iteration: 2, Func. Count: 14, Neg. LLF: 172.32633238238338
Iteration: 3, Func. Count: 21, Neg. LLF: 186.34384569560189
Iteration: 4, Func. Count: 29, Neg. LLF: 171.105401356645
Iteration: 5, Func. Count: 35, Neg. LLF: 171.00683252538963
Iteration: 6, Func. Count: 41, Neg. LLF: 170.71884521842972
Iteration: 7, Func. Count: 47, Neg. LLF: 170.56662104783157
Iteration: 8, Func. Count: 53, Neg. LLF: 169.5043427374244
Iteration: 9, Func. Count: 59, Neg. LLF: 229.76225650865638
Iteration: 10, Func. Count: 66, Neg. LLF: 178.9539727222515
Iteration: 11, Func. Count: 73, Neg. LLF: 169.2484851693795
Iteration: 12, Func. Count: 80, Neg. LLF: 168.17215726684321
Iteration: 13, Func. Count: 86, Neg. LLF: 168.157833580143
Iteration: 14, Func. Count: 92, Neg. LLF: 168.15138139800476
Iteration: 15, Func. Count: 98, Neg. LLF: 168.15127750325868
Iteration: 16, Func. Count: 104, Neg. LLF: 168.1512744780765
Iteration: 17, Func. Count: 110, Neg. LLF: 168.15127090424372
Iteration: 18, Func. Count: 115, Neg. LLF: 168.15127090422595
Optimization terminated successfully (Exit mode 0)
Current function value: 168.15127090424372
Iterations: 18
Function evaluations: 115
Gradient evaluations: 18
Iteration: 1, Func. Count: 8, Neg. LLF: 358.52787832154337
Iteration: 2, Func. Count: 16, Neg. LLF: 183.7870050708644
Iteration: 3, Func. Count: 24, Neg. LLF: 180.33042905246094
Iteration: 4, Func. Count: 32, Neg. LLF: 180.20935177835793
Iteration: 5, Func. Count: 40, Neg. LLF: 179.90618630450464
Iteration: 6, Func. Count: 48, Neg. LLF: 179.81284404417198
Iteration: 7, Func. Count: 56, Neg. LLF: 179.62742205885334
Iteration: 8, Func. Count: 64, Neg. LLF: 170.75472366391597
Iteration: 9, Func. Count: 72, Neg. LLF: 169.30702053104613
Iteration: 10, Func. Count: 80, Neg. LLF: 168.08729535938713
Iteration: 11, Func. Count: 88, Neg. LLF: 168.87185996628378
Iteration: 12, Func. Count: 96, Neg. LLF: 167.5819845633833
Iteration: 13, Func. Count: 103, Neg. LLF: 167.56477334347957
Iteration: 14, Func. Count: 110, Neg. LLF: 167.5626562418347
Iteration: 15, Func. Count: 117, Neg. LLF: 167.5615819096004
Iteration: 16, Func. Count: 124, Neg. LLF: 167.5560677109355
Iteration: 17, Func. Count: 131, Neg. LLF: 167.54937228955285
Iteration: 18, Func. Count: 138, Neg. LLF: 167.54473135089586
Iteration: 19, Func. Count: 145, Neg. LLF: 167.54424350270872
Iteration: 20, Func. Count: 152, Neg. LLF: 167.54421270791337
Iteration: 21, Func. Count: 158, Neg. LLF: 167.54421270426417
Optimization terminated successfully (Exit mode 0)
Current function value: 167.54421270791337
Iterations: 21
Function evaluations: 158
Gradient evaluations: 21
Iteration: 1, Func. Count: 9, Neg. LLF: 361.1823555919842
Iteration: 2, Func. Count: 18, Neg. LLF: 186.79721594174347
Iteration: 3, Func. Count: 27, Neg. LLF: 180.77611273062703
Iteration: 4, Func. Count: 36, Neg. LLF: 170.28607986214016
Iteration: 5, Func. Count: 45, Neg. LLF: 169.2630269043337
Iteration: 6, Func. Count: 54, Neg. LLF: 169.87726230154365
Iteration: 7, Func. Count: 63, Neg. LLF: 168.14859551543128
Iteration: 8, Func. Count: 72, Neg. LLF: 166.66865757484823
Iteration: 9, Func. Count: 80, Neg. LLF: 166.4921764208223
Iteration: 10, Func. Count: 88, Neg. LLF: 166.41938534826582
Iteration: 11, Func. Count: 96, Neg. LLF: 165.8174387006738
Iteration: 12, Func. Count: 104, Neg. LLF: 165.762234759765
Iteration: 13, Func. Count: 112, Neg. LLF: 168.78675181536266
Iteration: 14, Func. Count: 121, Neg. LLF: 166.8372955212636
Iteration: 15, Func. Count: 130, Neg. LLF: 165.70391756667595
Iteration: 16, Func. Count: 139, Neg. LLF: 164.9469858585223
Iteration: 17, Func. Count: 147, Neg. LLF: 164.95125236121362
Iteration: 18, Func. Count: 156, Neg. LLF: 164.9399948514762
Iteration: 19, Func. Count: 164, Neg. LLF: 164.93909133649754
Iteration: 20, Func. Count: 172, Neg. LLF: 164.93908129936037
Iteration: 21, Func. Count: 180, Neg. LLF: 164.93907906425218
Iteration: 22, Func. Count: 187, Neg. LLF: 164.9390790642289
Optimization terminated successfully (Exit mode 0)
Current function value: 164.93907906425218
Iterations: 22
Function evaluations: 187
Gradient evaluations: 22
Iteration: 1, Func. Count: 10, Neg. LLF: 1536.9107302791945
Iteration: 2, Func. Count: 21, Neg. LLF: 449.87637239980484
Iteration: 3, Func. Count: 31, Neg. LLF: 174.29602495547243
Iteration: 4, Func. Count: 41, Neg. LLF: 181.89945971310163
Iteration: 5, Func. Count: 51, Neg. LLF: 186.02998577335768
Iteration: 6, Func. Count: 61, Neg. LLF: 215.0318882294731
Iteration: 7, Func. Count: 71, Neg. LLF: 179.5800637447173
Iteration: 8, Func. Count: 81, Neg. LLF: 230.71260692348733
Iteration: 9, Func. Count: 91, Neg. LLF: 171.71858991581166
Iteration: 10, Func. Count: 101, Neg. LLF: 169.29587308552203
Iteration: 11, Func. Count: 111, Neg. LLF: 167.8179674421202
Iteration: 12, Func. Count: 121, Neg. LLF: 168.17544146930788
Iteration: 13, Func. Count: 131, Neg. LLF: 167.5208926340037
Iteration: 14, Func. Count: 141, Neg. LLF: 166.4051747295869
Iteration: 15, Func. Count: 150, Neg. LLF: 166.28059650109475
Iteration: 16, Func. Count: 159, Neg. LLF: 166.18044312384356
Iteration: 17, Func. Count: 168, Neg. LLF: 166.1204802281102
Iteration: 18, Func. Count: 177, Neg. LLF: 166.0943146924581
Iteration: 19, Func. Count: 186, Neg. LLF: 166.0403971479124
Iteration: 20, Func. Count: 195, Neg. LLF: 165.93500312198228
Iteration: 21, Func. Count: 204, Neg. LLF: 166.1052230179132
Iteration: 22, Func. Count: 214, Neg. LLF: 165.96189532040907
Iteration: 23, Func. Count: 224, Neg. LLF: 165.44756341384874
Iteration: 24, Func. Count: 233, Neg. LLF: 165.72923643092662
Iteration: 25, Func. Count: 243, Neg. LLF: 166.20632536721604
Iteration: 26, Func. Count: 253, Neg. LLF: 164.98717118615008
Iteration: 27, Func. Count: 262, Neg. LLF: 164.94366160725565
Iteration: 28, Func. Count: 271, Neg. LLF: 164.9392542259843
Iteration: 29, Func. Count: 280, Neg. LLF: 164.9390811266489
Iteration: 30, Func. Count: 289, Neg. LLF: 164.9390792039284
Iteration: 31, Func. Count: 297, Neg. LLF: 164.93907964539656
Optimization terminated successfully (Exit mode 0)
Current function value: 164.9390792039284
Iterations: 31
Function evaluations: 297
Gradient evaluations: 31
Iteration: 1, Func. Count: 11, Neg. LLF: 1791.6252055795242
Iteration: 2, Func. Count: 22, Neg. LLF: 4404.587905311567
Iteration: 3, Func. Count: 33, Neg. LLF: 205.44972591673306
Iteration: 4, Func. Count: 44, Neg. LLF: 204.7007727870952
Iteration: 5, Func. Count: 55, Neg. LLF: 199.5851160260327
Iteration: 6, Func. Count: 66, Neg. LLF: 172.44423553864192
Iteration: 7, Func. Count: 77, Neg. LLF: 166.53748252168626
Iteration: 8, Func. Count: 87, Neg. LLF: 165.019293283467
Iteration: 9, Func. Count: 98, Neg. LLF: 182.67510501308874
Iteration: 10, Func. Count: 110, Neg. LLF: 165.62377101945748
Iteration: 11, Func. Count: 121, Neg. LLF: 164.34035997964085
Iteration: 12, Func. Count: 131, Neg. LLF: 164.1029283246977
Iteration: 13, Func. Count: 141, Neg. LLF: 163.91993648571102
Iteration: 14, Func. Count: 151, Neg. LLF: 163.8223725164424
Iteration: 15, Func. Count: 161, Neg. LLF: 163.7299998028985
Iteration: 16, Func. Count: 171, Neg. LLF: 163.68260853448314
Iteration: 17, Func. Count: 181, Neg. LLF: 163.64473481563505
Iteration: 18, Func. Count: 191, Neg. LLF: 163.61307392406053
Iteration: 19, Func. Count: 201, Neg. LLF: 163.4829427225753
Iteration: 20, Func. Count: 211, Neg. LLF: 163.4781892246478
Iteration: 21, Func. Count: 221, Neg. LLF: 163.4739585077218
Iteration: 22, Func. Count: 231, Neg. LLF: 163.47357267632316
Iteration: 23, Func. Count: 241, Neg. LLF: 163.47338671306986
Iteration: 24, Func. Count: 251, Neg. LLF: 163.47321378915208
Iteration: 25, Func. Count: 261, Neg. LLF: 163.47312045241736
Iteration: 26, Func. Count: 271, Neg. LLF: 163.47310746737764
Iteration: 27, Func. Count: 281, Neg. LLF: 163.47310686079786
Optimization terminated successfully (Exit mode 0)
Current function value: 163.47310686079786
Iterations: 27
Function evaluations: 281
Gradient evaluations: 27
Iteration: 1, Func. Count: 8, Neg. LLF: 173.48486335915973
Iteration: 2, Func. Count: 16, Neg. LLF: 179.79907639362244
Iteration: 3, Func. Count: 24, Neg. LLF: 174.8222727308489
Iteration: 4, Func. Count: 32, Neg. LLF: 171.9667260948823
Iteration: 5, Func. Count: 40, Neg. LLF: 171.7485399661536
Iteration: 6, Func. Count: 48, Neg. LLF: 170.78967652454548
Iteration: 7, Func. Count: 55, Neg. LLF: 170.70194430426636
Iteration: 8, Func. Count: 62, Neg. LLF: 170.38859915731388
Iteration: 9, Func. Count: 69, Neg. LLF: 168.74095268060088
Iteration: 10, Func. Count: 76, Neg. LLF: 177.7758902687425
Iteration: 11, Func. Count: 84, Neg. LLF: 171.33882056725895
Iteration: 12, Func. Count: 92, Neg. LLF: 168.0560665034349
Iteration: 13, Func. Count: 100, Neg. LLF: 167.7792883447371
Iteration: 14, Func. Count: 107, Neg. LLF: 167.65898433056782
Iteration: 15, Func. Count: 114, Neg. LLF: 167.60266131547738
Iteration: 16, Func. Count: 121, Neg. LLF: 167.52385545236416
Iteration: 17, Func. Count: 128, Neg. LLF: 167.4683747188185
Iteration: 18, Func. Count: 135, Neg. LLF: 167.47847027581832
Iteration: 19, Func. Count: 143, Neg. LLF: 167.4270584059895
Iteration: 20, Func. Count: 150, Neg. LLF: 167.42677638457855
Iteration: 21, Func. Count: 157, Neg. LLF: 167.42677308475405
Iteration: 22, Func. Count: 163, Neg. LLF: 167.4267730847497
Optimization terminated successfully (Exit mode 0)
Current function value: 167.42677308475405
Iterations: 22
Function evaluations: 163
Gradient evaluations: 22
Iteration: 1, Func. Count: 9, Neg. LLF: 358.8918868973673
Iteration: 2, Func. Count: 18, Neg. LLF: 182.9483914341317
Iteration: 3, Func. Count: 27, Neg. LLF: 168.06201514711086
Iteration: 4, Func. Count: 35, Neg. LLF: 167.05716511480364
Iteration: 5, Func. Count: 44, Neg. LLF: 172.73347776187688
Iteration: 6, Func. Count: 53, Neg. LLF: 166.42121150052822
Iteration: 7, Func. Count: 62, Neg. LLF: 166.3495265711169
Iteration: 8, Func. Count: 70, Neg. LLF: 166.33756822100978
Iteration: 9, Func. Count: 78, Neg. LLF: 166.31840049130494
Iteration: 10, Func. Count: 86, Neg. LLF: 166.300575931697
Iteration: 11, Func. Count: 94, Neg. LLF: 166.27637757648492
Iteration: 12, Func. Count: 102, Neg. LLF: 166.2622438461165
Iteration: 13, Func. Count: 110, Neg. LLF: 166.25598618724894
Iteration: 14, Func. Count: 118, Neg. LLF: 166.25527305135412
Iteration: 15, Func. Count: 126, Neg. LLF: 166.25485872822549
Iteration: 16, Func. Count: 134, Neg. LLF: 166.25446727607647
Iteration: 17, Func. Count: 142, Neg. LLF: 166.25413725386767
Iteration: 18, Func. Count: 150, Neg. LLF: 166.2540426201099
Iteration: 19, Func. Count: 158, Neg. LLF: 166.25403430596606
Iteration: 20, Func. Count: 165, Neg. LLF: 166.2540343058969
Optimization terminated successfully (Exit mode 0)
Current function value: 166.25403430596606
Iterations: 20
Function evaluations: 165
Gradient evaluations: 20
Iteration: 1, Func. Count: 10, Neg. LLF: 361.8447095820991
Iteration: 2, Func. Count: 20, Neg. LLF: 184.8320594643608
Iteration: 3, Func. Count: 30, Neg. LLF: 171.05107484960388
Iteration: 4, Func. Count: 40, Neg. LLF: 179.0015589565729
Iteration: 5, Func. Count: 50, Neg. LLF: 168.31670302035536
Iteration: 6, Func. Count: 60, Neg. LLF: 167.06309722921844
Iteration: 7, Func. Count: 70, Neg. LLF: 166.3998591160992
Iteration: 8, Func. Count: 80, Neg. LLF: 165.48089676474376
Iteration: 9, Func. Count: 89, Neg. LLF: 165.4363442790284
Iteration: 10, Func. Count: 99, Neg. LLF: 165.13982870438025
Iteration: 11, Func. Count: 108, Neg. LLF: 166.04090619722837
Iteration: 12, Func. Count: 118, Neg. LLF: 169.89958480519812
Iteration: 13, Func. Count: 128, Neg. LLF: 165.00232021872347
Iteration: 14, Func. Count: 137, Neg. LLF: 164.95464185045154
Iteration: 15, Func. Count: 146, Neg. LLF: 164.8976493244823
Iteration: 16, Func. Count: 155, Neg. LLF: 164.56704452811076
Iteration: 17, Func. Count: 164, Neg. LLF: 164.52501388813982
Iteration: 18, Func. Count: 174, Neg. LLF: 165.57427015800465
Iteration: 19, Func. Count: 184, Neg. LLF: 164.40234729499215
Iteration: 20, Func. Count: 194, Neg. LLF: 164.29491191222806
Iteration: 21, Func. Count: 204, Neg. LLF: 164.26240978419992
Iteration: 22, Func. Count: 214, Neg. LLF: 164.25322409938235
Iteration: 23, Func. Count: 223, Neg. LLF: 164.25320066730424
Iteration: 24, Func. Count: 232, Neg. LLF: 164.25318526541528
Iteration: 25, Func. Count: 240, Neg. LLF: 164.253185265382
Optimization terminated successfully (Exit mode 0)
Current function value: 164.25318526541528
Iterations: 25
Function evaluations: 240
Gradient evaluations: 25
Iteration: 1, Func. Count: 11, Neg. LLF: 1562.9080404707474
Iteration: 2, Func. Count: 23, Neg. LLF: 220.45271566944245
Iteration: 3, Func. Count: 34, Neg. LLF: 169.32170240044303
Iteration: 4, Func. Count: 44, Neg. LLF: 172.05790402095565
Iteration: 5, Func. Count: 56, Neg. LLF: 171.78903788734888
Iteration: 6, Func. Count: 67, Neg. LLF: 166.00630690540314
Iteration: 7, Func. Count: 78, Neg. LLF: 166.04952285489588
Iteration: 8, Func. Count: 89, Neg. LLF: 165.1893504625472
Iteration: 9, Func. Count: 99, Neg. LLF: 164.9187424207595
Iteration: 10, Func. Count: 109, Neg. LLF: 164.9322692441847
Iteration: 11, Func. Count: 120, Neg. LLF: 164.66972141799735
Iteration: 12, Func. Count: 130, Neg. LLF: 164.5964356165446
Iteration: 13, Func. Count: 140, Neg. LLF: 164.47991251493667
Iteration: 14, Func. Count: 150, Neg. LLF: 164.3779624467224
Iteration: 15, Func. Count: 160, Neg. LLF: 164.37614221545306
Iteration: 16, Func. Count: 171, Neg. LLF: 164.28595727998697
Iteration: 17, Func. Count: 181, Neg. LLF: 164.26792646178123
Iteration: 18, Func. Count: 191, Neg. LLF: 164.25916445907853
Iteration: 19, Func. Count: 201, Neg. LLF: 164.25605620486698
Iteration: 20, Func. Count: 211, Neg. LLF: 164.25376983453887
Iteration: 21, Func. Count: 221, Neg. LLF: 164.25323888544446
Iteration: 22, Func. Count: 231, Neg. LLF: 164.25318689779232
Iteration: 23, Func. Count: 241, Neg. LLF: 164.2531861935629
Optimization terminated successfully (Exit mode 0)
Current function value: 164.2531861935629
Iterations: 23
Function evaluations: 241
Gradient evaluations: 23
Iteration: 1, Func. Count: 12, Neg. LLF: 1828.9838953154133
Iteration: 2, Func. Count: 24, Neg. LLF: 260.20441246424934
Iteration: 3, Func. Count: 36, Neg. LLF: 194.01820627097948
Iteration: 4, Func. Count: 48, Neg. LLF: 166.6734630420001
Iteration: 5, Func. Count: 59, Neg. LLF: 167.34226062394293
Iteration: 6, Func. Count: 72, Neg. LLF: 187.75417044683724
Iteration: 7, Func. Count: 85, Neg. LLF: 190.69982213132738
Iteration: 8, Func. Count: 97, Neg. LLF: 162.61345032246481
Iteration: 9, Func. Count: 108, Neg. LLF: 162.33196819258703
Iteration: 10, Func. Count: 119, Neg. LLF: 162.20348715621796
Iteration: 11, Func. Count: 130, Neg. LLF: 162.17682344858073
Iteration: 12, Func. Count: 141, Neg. LLF: 162.1273118513148
Iteration: 13, Func. Count: 152, Neg. LLF: 162.1170967803808
Iteration: 14, Func. Count: 163, Neg. LLF: 162.11343584411094
Iteration: 15, Func. Count: 174, Neg. LLF: 162.11173314312597
Iteration: 16, Func. Count: 185, Neg. LLF: 162.1073195006894
Iteration: 17, Func. Count: 196, Neg. LLF: 162.10703265936567
Iteration: 18, Func. Count: 207, Neg. LLF: 162.1069594524178
Iteration: 19, Func. Count: 218, Neg. LLF: 162.1069578238848
Iteration: 20, Func. Count: 229, Neg. LLF: 162.10695627560764
Iteration: 21, Func. Count: 240, Neg. LLF: 162.10695397414437
Iteration: 22, Func. Count: 251, Neg. LLF: 162.106952629733
Iteration: 23, Func. Count: 261, Neg. LLF: 162.10695262963827
Optimization terminated successfully (Exit mode 0)
Current function value: 162.106952629733
Iterations: 23
Function evaluations: 261
Gradient evaluations: 23
Iteration: 1, Func. Count: 9, Neg. LLF: 172.26140539725776
Iteration: 2, Func. Count: 18, Neg. LLF: 172.24377372481467
Iteration: 3, Func. Count: 28, Neg. LLF: 169.97049514126093
Iteration: 4, Func. Count: 36, Neg. LLF: 169.81840315527162
Iteration: 5, Func. Count: 44, Neg. LLF: 169.65307869746331
Iteration: 6, Func. Count: 52, Neg. LLF: 169.6299099644689
Iteration: 7, Func. Count: 60, Neg. LLF: 169.6504669498085
Iteration: 8, Func. Count: 69, Neg. LLF: 169.54506257478192
Iteration: 9, Func. Count: 77, Neg. LLF: 169.50923481444886
Iteration: 10, Func. Count: 85, Neg. LLF: 169.45241422911434
Iteration: 11, Func. Count: 93, Neg. LLF: 169.16240559866276
Iteration: 12, Func. Count: 101, Neg. LLF: 168.73912281915298
Iteration: 13, Func. Count: 109, Neg. LLF: 168.2688103171709
Iteration: 14, Func. Count: 117, Neg. LLF: 167.94164355356838
Iteration: 15, Func. Count: 125, Neg. LLF: 168.04642014741458
Iteration: 16, Func. Count: 134, Neg. LLF: 167.54032120520458
Iteration: 17, Func. Count: 142, Neg. LLF: 167.48855609435049
Iteration: 18, Func. Count: 150, Neg. LLF: 167.4611763983922
Iteration: 19, Func. Count: 158, Neg. LLF: 167.44417908785303
Iteration: 20, Func. Count: 166, Neg. LLF: 167.4281942669859
Iteration: 21, Func. Count: 174, Neg. LLF: 167.42688599006405
Iteration: 22, Func. Count: 182, Neg. LLF: 167.42678561967878
Iteration: 23, Func. Count: 190, Neg. LLF: 167.4267739818455
Iteration: 24, Func. Count: 198, Neg. LLF: 167.42677308718012
Optimization terminated successfully (Exit mode 0)
Current function value: 167.42677308718012
Iterations: 24
Function evaluations: 198
Gradient evaluations: 24
Iteration: 1, Func. Count: 10, Neg. LLF: 359.2634200052129
Iteration: 2, Func. Count: 20, Neg. LLF: 185.49334779158806
Iteration: 3, Func. Count: 30, Neg. LLF: 168.99365787195637
Iteration: 4, Func. Count: 39, Neg. LLF: 172.54597354812188
Iteration: 5, Func. Count: 50, Neg. LLF: 174.765247209409
Iteration: 6, Func. Count: 61, Neg. LLF: 169.40484660291548
Iteration: 7, Func. Count: 71, Neg. LLF: 166.42410026693545
Iteration: 8, Func. Count: 80, Neg. LLF: 166.39384666793555
Iteration: 9, Func. Count: 89, Neg. LLF: 166.3737091971219
Iteration: 10, Func. Count: 98, Neg. LLF: 166.3442880848341
Iteration: 11, Func. Count: 107, Neg. LLF: 166.3190910347998
Iteration: 12, Func. Count: 116, Neg. LLF: 166.293260599214
Iteration: 13, Func. Count: 125, Neg. LLF: 166.28152858328014
Iteration: 14, Func. Count: 134, Neg. LLF: 166.26820713517583
Iteration: 15, Func. Count: 143, Neg. LLF: 166.25948637750258
Iteration: 16, Func. Count: 152, Neg. LLF: 166.25660584185945
Iteration: 17, Func. Count: 161, Neg. LLF: 166.2559876152788
Iteration: 18, Func. Count: 170, Neg. LLF: 166.2556676964675
Iteration: 19, Func. Count: 179, Neg. LLF: 166.2551518534887
Iteration: 20, Func. Count: 188, Neg. LLF: 166.25452712560343
Iteration: 21, Func. Count: 197, Neg. LLF: 166.25413634098817
Iteration: 22, Func. Count: 206, Neg. LLF: 166.25403986365455
Iteration: 23, Func. Count: 215, Neg. LLF: 166.25403404896426
Iteration: 24, Func. Count: 223, Neg. LLF: 166.25403404894053
Optimization terminated successfully (Exit mode 0)
Current function value: 166.25403404896426
Iterations: 24
Function evaluations: 223
Gradient evaluations: 24
Iteration: 1, Func. Count: 11, Neg. LLF: 361.903511409169
Iteration: 2, Func. Count: 22, Neg. LLF: 186.76224509772862
Iteration: 3, Func. Count: 33, Neg. LLF: 173.27420399330478
Iteration: 4, Func. Count: 44, Neg. LLF: 174.86150933401504
Iteration: 5, Func. Count: 55, Neg. LLF: 170.0932645098999
Iteration: 6, Func. Count: 66, Neg. LLF: 167.03856336048713
Iteration: 7, Func. Count: 76, Neg. LLF: 168.6599317305109
Iteration: 8, Func. Count: 87, Neg. LLF: 191.32719640758611
Iteration: 9, Func. Count: 99, Neg. LLF: 167.08236153215196
Iteration: 10, Func. Count: 110, Neg. LLF: 166.27941402855265
Iteration: 11, Func. Count: 120, Neg. LLF: 165.67148499410266
Iteration: 12, Func. Count: 130, Neg. LLF: 165.44886829876927
Iteration: 13, Func. Count: 140, Neg. LLF: 165.25761438986598
Iteration: 14, Func. Count: 150, Neg. LLF: 165.4206179447296
Iteration: 15, Func. Count: 161, Neg. LLF: 165.17819716555002
Iteration: 16, Func. Count: 172, Neg. LLF: 164.944640579693
Iteration: 17, Func. Count: 182, Neg. LLF: 164.85569243452719
Iteration: 18, Func. Count: 192, Neg. LLF: 164.74039508529583
Iteration: 19, Func. Count: 202, Neg. LLF: 164.69785440710498
Iteration: 20, Func. Count: 213, Neg. LLF: 166.3791785765691
Iteration: 21, Func. Count: 224, Neg. LLF: 164.58442546162885
Iteration: 22, Func. Count: 235, Neg. LLF: 164.3280381476251
Iteration: 23, Func. Count: 246, Neg. LLF: 164.26684186489388
Iteration: 24, Func. Count: 256, Neg. LLF: 164.2545908074477
Iteration: 25, Func. Count: 266, Neg. LLF: 164.25505573042335
Iteration: 26, Func. Count: 277, Neg. LLF: 164.25318974743868
Iteration: 27, Func. Count: 287, Neg. LLF: 164.25318528468532
Iteration: 28, Func. Count: 296, Neg. LLF: 164.25318528466
Optimization terminated successfully (Exit mode 0)
Current function value: 164.25318528468532
Iterations: 28
Function evaluations: 296
Gradient evaluations: 28
Iteration: 1, Func. Count: 12, Neg. LLF: 1570.1859528024243
Iteration: 2, Func. Count: 24, Neg. LLF: 270.5644935426893
Iteration: 3, Func. Count: 36, Neg. LLF: 216.94770981325476
Iteration: 4, Func. Count: 48, Neg. LLF: 173.70967287053082
Iteration: 5, Func. Count: 60, Neg. LLF: 171.58781373316864
Iteration: 6, Func. Count: 72, Neg. LLF: 172.77141611045403
Iteration: 7, Func. Count: 84, Neg. LLF: 167.62160495796314
Iteration: 8, Func. Count: 96, Neg. LLF: 171.02761561146897
Iteration: 9, Func. Count: 108, Neg. LLF: 168.46344649833853
Iteration: 10, Func. Count: 120, Neg. LLF: 168.77584657347597
Iteration: 11, Func. Count: 132, Neg. LLF: 166.32871902039886
Iteration: 12, Func. Count: 144, Neg. LLF: 166.37814088026957
Iteration: 13, Func. Count: 156, Neg. LLF: 165.44784035902475
Iteration: 14, Func. Count: 168, Neg. LLF: 165.0105181203236
Iteration: 15, Func. Count: 179, Neg. LLF: 164.87381297816665
Iteration: 16, Func. Count: 190, Neg. LLF: 164.60297447987065
Iteration: 17, Func. Count: 201, Neg. LLF: 164.56711436898271
Iteration: 18, Func. Count: 213, Neg. LLF: 164.41784269849657
Iteration: 19, Func. Count: 225, Neg. LLF: 164.64366809753906
Iteration: 20, Func. Count: 237, Neg. LLF: 164.29566273722438
Iteration: 21, Func. Count: 248, Neg. LLF: 164.28576353251478
Iteration: 22, Func. Count: 259, Neg. LLF: 164.28366839591473
Iteration: 23, Func. Count: 270, Neg. LLF: 164.2779999585763
Iteration: 24, Func. Count: 281, Neg. LLF: 164.2680823758277
Iteration: 25, Func. Count: 292, Neg. LLF: 164.25744869353684
Iteration: 26, Func. Count: 303, Neg. LLF: 164.25384144291039
Iteration: 27, Func. Count: 314, Neg. LLF: 164.253249437681
Iteration: 28, Func. Count: 325, Neg. LLF: 164.2531892400831
Iteration: 29, Func. Count: 336, Neg. LLF: 164.25318535246095
Iteration: 30, Func. Count: 346, Neg. LLF: 164.25318579318036
Optimization terminated successfully (Exit mode 0)
Current function value: 164.25318535246095
Iterations: 30
Function evaluations: 346
Gradient evaluations: 30
Iteration: 1, Func. Count: 13, Neg. LLF: 1829.0370883529163
Iteration: 2, Func. Count: 26, Neg. LLF: 220.80842327402868
Iteration: 3, Func. Count: 39, Neg. LLF: 198.33196788913256
Iteration: 4, Func. Count: 52, Neg. LLF: 165.81664648011875
Iteration: 5, Func. Count: 64, Neg. LLF: 166.4884539958488
Iteration: 6, Func. Count: 78, Neg. LLF: 173.0739524144354
Iteration: 7, Func. Count: 93, Neg. LLF: 187.92334501920124
Iteration: 8, Func. Count: 106, Neg. LLF: 162.58270607607764
Iteration: 9, Func. Count: 118, Neg. LLF: 165.25046176474535
Iteration: 10, Func. Count: 131, Neg. LLF: 162.1921865631959
Iteration: 11, Func. Count: 143, Neg. LLF: 162.18623546359566
Iteration: 12, Func. Count: 156, Neg. LLF: 162.11453785953034
Iteration: 13, Func. Count: 168, Neg. LLF: 162.10919803186349
Iteration: 14, Func. Count: 180, Neg. LLF: 162.10841713789392
Iteration: 15, Func. Count: 192, Neg. LLF: 162.10745224549706
Iteration: 16, Func. Count: 204, Neg. LLF: 162.10722068246005
Iteration: 17, Func. Count: 216, Neg. LLF: 162.10704240535532
Iteration: 18, Func. Count: 228, Neg. LLF: 162.10699864283902
Iteration: 19, Func. Count: 240, Neg. LLF: 162.10697246283223
Iteration: 20, Func. Count: 252, Neg. LLF: 162.10695699901783
Iteration: 21, Func. Count: 264, Neg. LLF: 162.10695266489608
Iteration: 22, Func. Count: 275, Neg. LLF: 162.10695266482833
Optimization terminated successfully (Exit mode 0)
Current function value: 162.10695266489608
Iterations: 22
Function evaluations: 275
Gradient evaluations: 22
Iteration: 1, Func. Count: 10, Neg. LLF: 172.31042638296222
Iteration: 2, Func. Count: 20, Neg. LLF: 172.2921654491352
Iteration: 3, Func. Count: 31, Neg. LLF: 169.98478758728044
Iteration: 4, Func. Count: 40, Neg. LLF: 169.85640439190425
Iteration: 5, Func. Count: 49, Neg. LLF: 169.68606391079678
Iteration: 6, Func. Count: 58, Neg. LLF: 169.58477880118303
Iteration: 7, Func. Count: 67, Neg. LLF: 169.5696985869709
Iteration: 8, Func. Count: 76, Neg. LLF: 169.58743612849497
Iteration: 9, Func. Count: 86, Neg. LLF: 169.51362887460294
Iteration: 10, Func. Count: 95, Neg. LLF: 169.4874280221442
Iteration: 11, Func. Count: 104, Neg. LLF: 169.30400645895392
Iteration: 12, Func. Count: 113, Neg. LLF: 168.51373513802656
Iteration: 13, Func. Count: 122, Neg. LLF: 173.8232256674641
Iteration: 14, Func. Count: 132, Neg. LLF: 183.58897926312522
Iteration: 15, Func. Count: 142, Neg. LLF: 211.72328081054417
Iteration: 16, Func. Count: 152, Neg. LLF: 168.22606548184643
Iteration: 17, Func. Count: 162, Neg. LLF: 167.08583014746725
Iteration: 18, Func. Count: 172, Neg. LLF: 166.04817533553782
Iteration: 19, Func. Count: 181, Neg. LLF: 166.0248502431706
Iteration: 20, Func. Count: 190, Neg. LLF: 166.00914684363738
Iteration: 21, Func. Count: 199, Neg. LLF: 166.00657556204263
Iteration: 22, Func. Count: 208, Neg. LLF: 166.00395305774234
Iteration: 23, Func. Count: 217, Neg. LLF: 166.00350768588694
Iteration: 24, Func. Count: 226, Neg. LLF: 166.00340328428462
Iteration: 25, Func. Count: 235, Neg. LLF: 166.00339509248187
Iteration: 26, Func. Count: 243, Neg. LLF: 166.00339509244506
Optimization terminated successfully (Exit mode 0)
Current function value: 166.00339509248187
Iterations: 26
Function evaluations: 243
Gradient evaluations: 26
Iteration: 1, Func. Count: 11, Neg. LLF: 359.68559457133534
Iteration: 2, Func. Count: 22, Neg. LLF: 193.43289397614612
Iteration: 3, Func. Count: 33, Neg. LLF: 176.5685491062438
Iteration: 4, Func. Count: 44, Neg. LLF: 170.6027285894815
Iteration: 5, Func. Count: 55, Neg. LLF: 170.08082833518628
Iteration: 6, Func. Count: 66, Neg. LLF: 167.50859691937433
Iteration: 7, Func. Count: 77, Neg. LLF: 166.87426755884283
Iteration: 8, Func. Count: 88, Neg. LLF: 166.39198327134193
Iteration: 9, Func. Count: 98, Neg. LLF: 166.97606128869447
Iteration: 10, Func. Count: 110, Neg. LLF: 166.33257089288978
Iteration: 11, Func. Count: 120, Neg. LLF: 166.18419645432382
Iteration: 12, Func. Count: 130, Neg. LLF: 166.0698479956212
Iteration: 13, Func. Count: 140, Neg. LLF: 166.0409483675159
Iteration: 14, Func. Count: 150, Neg. LLF: 165.9903371596471
Iteration: 15, Func. Count: 160, Neg. LLF: 165.986208092636
Iteration: 16, Func. Count: 170, Neg. LLF: 165.98376153894313
Iteration: 17, Func. Count: 180, Neg. LLF: 165.9793855317662
Iteration: 18, Func. Count: 190, Neg. LLF: 165.9726316002751
Iteration: 19, Func. Count: 200, Neg. LLF: 165.96687971010445
Iteration: 20, Func. Count: 210, Neg. LLF: 165.96398298551964
Iteration: 21, Func. Count: 220, Neg. LLF: 165.9634223870942
Iteration: 22, Func. Count: 230, Neg. LLF: 165.963380476242
Iteration: 23, Func. Count: 240, Neg. LLF: 165.96336982845224
Iteration: 24, Func. Count: 250, Neg. LLF: 165.96336886419513
Optimization terminated successfully (Exit mode 0)
Current function value: 165.96336886419513
Iterations: 24
Function evaluations: 250
Gradient evaluations: 24
Iteration: 1, Func. Count: 12, Neg. LLF: 1343.906429825737
Iteration: 2, Func. Count: 25, Neg. LLF: 242.57203065990248
Iteration: 3, Func. Count: 37, Neg. LLF: 227.71518946861173
Iteration: 4, Func. Count: 49, Neg. LLF: 173.6938177590048
Iteration: 5, Func. Count: 61, Neg. LLF: 173.32774636077022
Iteration: 6, Func. Count: 73, Neg. LLF: 171.99391313955945
Iteration: 7, Func. Count: 85, Neg. LLF: 167.0484854001656
Iteration: 8, Func. Count: 97, Neg. LLF: 170.1754838981264
Iteration: 9, Func. Count: 109, Neg. LLF: 166.28089188808787
Iteration: 10, Func. Count: 121, Neg. LLF: 166.66013799719724
Iteration: 11, Func. Count: 133, Neg. LLF: 165.25153013786985
Iteration: 12, Func. Count: 144, Neg. LLF: 165.5466999298178
Iteration: 13, Func. Count: 156, Neg. LLF: 165.3684481425104
Iteration: 14, Func. Count: 168, Neg. LLF: 164.7911722168948
Iteration: 15, Func. Count: 179, Neg. LLF: 164.7613639146625
Iteration: 16, Func. Count: 190, Neg. LLF: 164.69225142577824
Iteration: 17, Func. Count: 201, Neg. LLF: 164.56929243956648
Iteration: 18, Func. Count: 212, Neg. LLF: 164.39981597397582
Iteration: 19, Func. Count: 223, Neg. LLF: 164.41572548713043
Iteration: 20, Func. Count: 235, Neg. LLF: 164.26876615522895
Iteration: 21, Func. Count: 246, Neg. LLF: 164.26024303867362
Iteration: 22, Func. Count: 257, Neg. LLF: 164.25654475674787
Iteration: 23, Func. Count: 268, Neg. LLF: 164.25413802980052
Iteration: 24, Func. Count: 279, Neg. LLF: 164.253242652191
Iteration: 25, Func. Count: 290, Neg. LLF: 164.2531886547598
Iteration: 26, Func. Count: 301, Neg. LLF: 164.25318548651975
Iteration: 27, Func. Count: 311, Neg. LLF: 164.25318548664032
Optimization terminated successfully (Exit mode 0)
Current function value: 164.25318548651975
Iterations: 27
Function evaluations: 311
Gradient evaluations: 27
Iteration: 1, Func. Count: 13, Neg. LLF: 1638.8984076353072
Iteration: 2, Func. Count: 26, Neg. LLF: 308.52769389508944
Iteration: 3, Func. Count: 39, Neg. LLF: 214.113512282323
Iteration: 4, Func. Count: 52, Neg. LLF: 169.98826569061896
Iteration: 5, Func. Count: 65, Neg. LLF: 172.3501940699419
Iteration: 6, Func. Count: 78, Neg. LLF: 168.87836236408612
Iteration: 7, Func. Count: 91, Neg. LLF: 167.4102627279033
Iteration: 8, Func. Count: 104, Neg. LLF: 166.1289450028147
Iteration: 9, Func. Count: 117, Neg. LLF: 166.13750913142533
Iteration: 10, Func. Count: 130, Neg. LLF: 165.41390053215437
Iteration: 11, Func. Count: 143, Neg. LLF: 165.2629213228969
Iteration: 12, Func. Count: 156, Neg. LLF: 164.7136600331229
Iteration: 13, Func. Count: 168, Neg. LLF: 164.43876428410118
Iteration: 14, Func. Count: 180, Neg. LLF: 164.81966512950726
Iteration: 15, Func. Count: 193, Neg. LLF: 164.37230236472138
Iteration: 16, Func. Count: 205, Neg. LLF: 164.32891192933363
Iteration: 17, Func. Count: 217, Neg. LLF: 164.31120627798165
Iteration: 18, Func. Count: 229, Neg. LLF: 164.29786617911557
Iteration: 19, Func. Count: 241, Neg. LLF: 164.27272017324015
Iteration: 20, Func. Count: 253, Neg. LLF: 164.25961153936467
Iteration: 21, Func. Count: 265, Neg. LLF: 164.25412531397532
Iteration: 22, Func. Count: 277, Neg. LLF: 164.2532064562928
Iteration: 23, Func. Count: 289, Neg. LLF: 164.2531856080967
Iteration: 24, Func. Count: 300, Neg. LLF: 164.2531860487729
Optimization terminated successfully (Exit mode 0)
Current function value: 164.2531856080967
Iterations: 24
Function evaluations: 300
Gradient evaluations: 24
Iteration: 1, Func. Count: 14, Neg. LLF: 1899.070723610389
Iteration: 2, Func. Count: 28, Neg. LLF: 606.7154394303374
Iteration: 3, Func. Count: 42, Neg. LLF: 209.89139409102086
Iteration: 4, Func. Count: 56, Neg. LLF: 165.58707301438506
Iteration: 5, Func. Count: 69, Neg. LLF: 165.74027621091676
Iteration: 6, Func. Count: 84, Neg. LLF: 170.19616469998985
Iteration: 7, Func. Count: 100, Neg. LLF: 165.0357868324965
Iteration: 8, Func. Count: 114, Neg. LLF: 162.33878142352012
Iteration: 9, Func. Count: 127, Neg. LLF: 162.21813523327302
Iteration: 10, Func. Count: 140, Neg. LLF: 162.27359503802256
Iteration: 11, Func. Count: 154, Neg. LLF: 162.16348488082036
Iteration: 12, Func. Count: 168, Neg. LLF: 162.10851986461083
Iteration: 13, Func. Count: 181, Neg. LLF: 162.1077191363699
Iteration: 14, Func. Count: 194, Neg. LLF: 162.10740427116826
Iteration: 15, Func. Count: 207, Neg. LLF: 162.10704707765373
Iteration: 16, Func. Count: 220, Neg. LLF: 162.10699747526766
Iteration: 17, Func. Count: 233, Neg. LLF: 162.1069671831743
Iteration: 18, Func. Count: 246, Neg. LLF: 162.10695540968516
Iteration: 19, Func. Count: 259, Neg. LLF: 162.10695247440907
Iteration: 20, Func. Count: 271, Neg. LLF: 162.10695247431494
Optimization terminated successfully (Exit mode 0)
Current function value: 162.10695247440907
Iterations: 20
Function evaluations: 271
Gradient evaluations: 20
Iteration: 1, Func. Count: 7, Neg. LLF: 173.45454463604173
Iteration: 2, Func. Count: 14, Neg. LLF: 175.3587091495894
Iteration: 3, Func. Count: 22, Neg. LLF: 170.98254605530042
Iteration: 4, Func. Count: 28, Neg. LLF: 171.0279405380633
Iteration: 5, Func. Count: 35, Neg. LLF: 170.7081633146392
Iteration: 6, Func. Count: 41, Neg. LLF: 170.6361259646569
Iteration: 7, Func. Count: 47, Neg. LLF: 170.56421055080483
Iteration: 8, Func. Count: 53, Neg. LLF: 170.19218620683682
Iteration: 9, Func. Count: 59, Neg. LLF: 169.61244199632438
Iteration: 10, Func. Count: 65, Neg. LLF: 169.17311148400282
Iteration: 11, Func. Count: 71, Neg. LLF: 168.31274059499768
Iteration: 12, Func. Count: 77, Neg. LLF: 168.07860976015098
Iteration: 13, Func. Count: 83, Neg. LLF: 168.59929799383838
Iteration: 14, Func. Count: 91, Neg. LLF: 168.13198334687735
Iteration: 15, Func. Count: 98, Neg. LLF: 167.92721513086235
Iteration: 16, Func. Count: 105, Neg. LLF: 167.89214386240806
Iteration: 17, Func. Count: 112, Neg. LLF: 167.88452562749526
Iteration: 18, Func. Count: 118, Neg. LLF: 167.88407932971674
Iteration: 19, Func. Count: 124, Neg. LLF: 167.88386907642354
Iteration: 20, Func. Count: 130, Neg. LLF: 167.88383897113457
Iteration: 21, Func. Count: 136, Neg. LLF: 167.8838379143922
Iteration: 22, Func. Count: 141, Neg. LLF: 167.88383791426946
Optimization terminated successfully (Exit mode 0)
Current function value: 167.8838379143922
Iterations: 22
Function evaluations: 141
Gradient evaluations: 22
Iteration: 1, Func. Count: 8, Neg. LLF: 1742.6871502720921
Iteration: 2, Func. Count: 17, Neg. LLF: 192.0401169033368
Iteration: 3, Func. Count: 25, Neg. LLF: 168.53731602418404
Iteration: 4, Func. Count: 32, Neg. LLF: 168.2601427094184
Iteration: 5, Func. Count: 39, Neg. LLF: 230.30071667438932
Iteration: 6, Func. Count: 48, Neg. LLF: 168.20946958743198
Iteration: 7, Func. Count: 56, Neg. LLF: 167.88118890701736
Iteration: 8, Func. Count: 63, Neg. LLF: 167.8460670132239
Iteration: 9, Func. Count: 70, Neg. LLF: 167.81983895065238
Iteration: 10, Func. Count: 77, Neg. LLF: 167.80960268135343
Iteration: 11, Func. Count: 84, Neg. LLF: 167.79973288564582
Iteration: 12, Func. Count: 91, Neg. LLF: 167.79548747474954
Iteration: 13, Func. Count: 98, Neg. LLF: 167.79377916688972
Iteration: 14, Func. Count: 105, Neg. LLF: 167.793277036686
Iteration: 15, Func. Count: 112, Neg. LLF: 167.79318941806113
Iteration: 16, Func. Count: 119, Neg. LLF: 167.7931815857663
Iteration: 17, Func. Count: 125, Neg. LLF: 167.7931815755265
Optimization terminated successfully (Exit mode 0)
Current function value: 167.7931815857663
Iterations: 17
Function evaluations: 125
Gradient evaluations: 17
Iteration: 1, Func. Count: 9, Neg. LLF: 2393.357607142716
Iteration: 2, Func. Count: 18, Neg. LLF: 543.9562740168129
Iteration: 3, Func. Count: 27, Neg. LLF: 213.89049706314952
Iteration: 4, Func. Count: 36, Neg. LLF: 196.37399037909304
Iteration: 5, Func. Count: 45, Neg. LLF: 179.61868148949176
Iteration: 6, Func. Count: 54, Neg. LLF: 171.01467419046008
Iteration: 7, Func. Count: 63, Neg. LLF: 168.25298259726054
Iteration: 8, Func. Count: 72, Neg. LLF: 166.76164477055036
Iteration: 9, Func. Count: 80, Neg. LLF: 166.5189361618109
Iteration: 10, Func. Count: 88, Neg. LLF: 172.30694206159748
Iteration: 11, Func. Count: 97, Neg. LLF: 165.51369553132187
Iteration: 12, Func. Count: 105, Neg. LLF: 165.20962126328797
Iteration: 13, Func. Count: 113, Neg. LLF: 167.1345574442925
Iteration: 14, Func. Count: 123, Neg. LLF: 165.11634556558187
Iteration: 15, Func. Count: 131, Neg. LLF: 165.11040096296745
Iteration: 16, Func. Count: 139, Neg. LLF: 165.106909964357
Iteration: 17, Func. Count: 147, Neg. LLF: 165.1024265037171
Iteration: 18, Func. Count: 155, Neg. LLF: 165.10039934223963
Iteration: 19, Func. Count: 163, Neg. LLF: 165.10020173928095
Iteration: 20, Func. Count: 171, Neg. LLF: 165.10019710304238
Iteration: 21, Func. Count: 178, Neg. LLF: 165.10019710305755
Optimization terminated successfully (Exit mode 0)
Current function value: 165.10019710304238
Iterations: 21
Function evaluations: 178
Gradient evaluations: 21
Iteration: 1, Func. Count: 10, Neg. LLF: 2935.382279990736
Iteration: 2, Func. Count: 20, Neg. LLF: 202.6073861044733
Iteration: 3, Func. Count: 30, Neg. LLF: 171.0582486117068
Iteration: 4, Func. Count: 40, Neg. LLF: 168.56500613843576
Iteration: 5, Func. Count: 49, Neg. LLF: 169.1238880710024
Iteration: 6, Func. Count: 59, Neg. LLF: 169.49261841031858
Iteration: 7, Func. Count: 69, Neg. LLF: 168.72194228476454
Iteration: 8, Func. Count: 79, Neg. LLF: 168.38636882011622
Iteration: 9, Func. Count: 89, Neg. LLF: 168.20515134898275
Iteration: 10, Func. Count: 98, Neg. LLF: 168.01637538069164
Iteration: 11, Func. Count: 107, Neg. LLF: 167.846872119462
Iteration: 12, Func. Count: 116, Neg. LLF: 167.78495556699048
Iteration: 13, Func. Count: 125, Neg. LLF: 167.63968632808673
Iteration: 14, Func. Count: 134, Neg. LLF: 167.62827412931279
Iteration: 15, Func. Count: 143, Neg. LLF: 167.50988046449734
Iteration: 16, Func. Count: 152, Neg. LLF: 167.01533846781624
Iteration: 17, Func. Count: 161, Neg. LLF: 166.10838901355066
Iteration: 18, Func. Count: 170, Neg. LLF: 165.94434629896594
Iteration: 19, Func. Count: 179, Neg. LLF: 167.95668529332204
Iteration: 20, Func. Count: 189, Neg. LLF: 185.17441641949299
Iteration: 21, Func. Count: 199, Neg. LLF: 408.7876431462792
Iteration: 22, Func. Count: 209, Neg. LLF: 165.23809115825736
Iteration: 23, Func. Count: 218, Neg. LLF: 165.29377221427245
Iteration: 24, Func. Count: 228, Neg. LLF: 169.65784748903334
Iteration: 25, Func. Count: 238, Neg. LLF: 165.10257236690813
Iteration: 26, Func. Count: 247, Neg. LLF: 165.10828663821837
Iteration: 27, Func. Count: 257, Neg. LLF: 165.1034721667137
Iteration: 28, Func. Count: 267, Neg. LLF: 165.1002267658957
Iteration: 29, Func. Count: 276, Neg. LLF: 165.10019941383732
Iteration: 30, Func. Count: 285, Neg. LLF: 165.10019707575725
Iteration: 31, Func. Count: 293, Neg. LLF: 165.10019746943064
Optimization terminated successfully (Exit mode 0)
Current function value: 165.10019707575725
Iterations: 32
Function evaluations: 293
Gradient evaluations: 31
Iteration: 1, Func. Count: 11, Neg. LLF: 373.5433914740972
Iteration: 2, Func. Count: 22, Neg. LLF: 253.47090112074198
Iteration: 3, Func. Count: 33, Neg. LLF: 189.79348088174956
Iteration: 4, Func. Count: 44, Neg. LLF: 166.7252012394435
Iteration: 5, Func. Count: 54, Neg. LLF: 173.97448448369477
Iteration: 6, Func. Count: 65, Neg. LLF: 170.39525415791113
Iteration: 7, Func. Count: 76, Neg. LLF: 165.70084903958804
Iteration: 8, Func. Count: 86, Neg. LLF: 165.12000060578893
Iteration: 9, Func. Count: 96, Neg. LLF: 164.52945603622044
Iteration: 10, Func. Count: 106, Neg. LLF: 167.24997359979218
Iteration: 11, Func. Count: 117, Neg. LLF: 163.76187986134832
Iteration: 12, Func. Count: 127, Neg. LLF: 163.72790450535484
Iteration: 13, Func. Count: 137, Neg. LLF: 163.7238088499245
Iteration: 14, Func. Count: 148, Neg. LLF: 163.68970185422884
Iteration: 15, Func. Count: 158, Neg. LLF: 163.68469921115232
Iteration: 16, Func. Count: 168, Neg. LLF: 163.68434187851867
Iteration: 17, Func. Count: 178, Neg. LLF: 163.68425481864438
Iteration: 18, Func. Count: 187, Neg. LLF: 163.6842548186945
Optimization terminated successfully (Exit mode 0)
Current function value: 163.68425481864438
Iterations: 18
Function evaluations: 187
Gradient evaluations: 18
Iteration: 1, Func. Count: 8, Neg. LLF: 173.3975602094339
Iteration: 2, Func. Count: 16, Neg. LLF: 174.7670938948429
Iteration: 3, Func. Count: 25, Neg. LLF: 171.08841908987227
Iteration: 4, Func. Count: 32, Neg. LLF: 171.7277814230606
Iteration: 5, Func. Count: 40, Neg. LLF: 171.46427981994276
Iteration: 6, Func. Count: 48, Neg. LLF: 170.73766217029475
Iteration: 7, Func. Count: 55, Neg. LLF: 170.64748232689274
Iteration: 8, Func. Count: 62, Neg. LLF: 170.59073289425478
Iteration: 9, Func. Count: 69, Neg. LLF: 170.28875331172424
Iteration: 10, Func. Count: 76, Neg. LLF: 169.4088545047333
Iteration: 11, Func. Count: 83, Neg. LLF: 175.70227434138306
Iteration: 12, Func. Count: 91, Neg. LLF: 238.71732907747815
Iteration: 13, Func. Count: 99, Neg. LLF: 289.26768833405174
Iteration: 14, Func. Count: 107, Neg. LLF: 245.20724716474888
Iteration: 15, Func. Count: 115, Neg. LLF: 173.8963443837507
Iteration: 16, Func. Count: 123, Neg. LLF: 168.31526147330032
Iteration: 17, Func. Count: 131, Neg. LLF: 167.52732821070566
Iteration: 18, Func. Count: 138, Neg. LLF: 167.50465135698795
Iteration: 19, Func. Count: 145, Neg. LLF: 167.5004337110781
Iteration: 20, Func. Count: 152, Neg. LLF: 167.49718875773573
Iteration: 21, Func. Count: 159, Neg. LLF: 167.49585413374734
Iteration: 22, Func. Count: 166, Neg. LLF: 167.49557186309954
Iteration: 23, Func. Count: 173, Neg. LLF: 167.49556753470637
Iteration: 24, Func. Count: 179, Neg. LLF: 167.49556753449238
Optimization terminated successfully (Exit mode 0)
Current function value: 167.49556753470637
Iterations: 24
Function evaluations: 179
Gradient evaluations: 24
Iteration: 1, Func. Count: 9, Neg. LLF: 357.79612601261897
Iteration: 2, Func. Count: 18, Neg. LLF: 184.95815792449923
Iteration: 3, Func. Count: 27, Neg. LLF: 180.3845063818163
Iteration: 4, Func. Count: 36, Neg. LLF: 180.18962916998953
Iteration: 5, Func. Count: 45, Neg. LLF: 179.9307289470269
Iteration: 6, Func. Count: 54, Neg. LLF: 179.85524395965388
Iteration: 7, Func. Count: 63, Neg. LLF: 177.44236388452416
Iteration: 8, Func. Count: 72, Neg. LLF: 169.9193397972653
Iteration: 9, Func. Count: 81, Neg. LLF: 169.04388725724976
Iteration: 10, Func. Count: 90, Neg. LLF: 169.11983186613924
Iteration: 11, Func. Count: 99, Neg. LLF: 167.59965687640033
Iteration: 12, Func. Count: 107, Neg. LLF: 167.5335818498288
Iteration: 13, Func. Count: 115, Neg. LLF: 167.66875974577277
Iteration: 14, Func. Count: 124, Neg. LLF: 167.5153160589865
Iteration: 15, Func. Count: 132, Neg. LLF: 167.49776253864945
Iteration: 16, Func. Count: 140, Neg. LLF: 167.49594448184646
Iteration: 17, Func. Count: 148, Neg. LLF: 167.49575294734186
Iteration: 18, Func. Count: 156, Neg. LLF: 167.49572701595235
Iteration: 19, Func. Count: 164, Neg. LLF: 167.49568925860282
Iteration: 20, Func. Count: 172, Neg. LLF: 167.49563335270446
Iteration: 21, Func. Count: 180, Neg. LLF: 167.49558577588607
Iteration: 22, Func. Count: 188, Neg. LLF: 167.49556948159574
Iteration: 23, Func. Count: 196, Neg. LLF: 167.49556755931087
Iteration: 24, Func. Count: 203, Neg. LLF: 167.49556756555066
Optimization terminated successfully (Exit mode 0)
Current function value: 167.49556755931087
Iterations: 24
Function evaluations: 203
Gradient evaluations: 24
Iteration: 1, Func. Count: 10, Neg. LLF: 359.7504673835998
Iteration: 2, Func. Count: 20, Neg. LLF: 188.14490927556838
Iteration: 3, Func. Count: 30, Neg. LLF: 181.67212349199147
Iteration: 4, Func. Count: 40, Neg. LLF: 170.2044974980333
Iteration: 5, Func. Count: 50, Neg. LLF: 169.1855058508363
Iteration: 6, Func. Count: 60, Neg. LLF: 169.86716466785745
Iteration: 7, Func. Count: 70, Neg. LLF: 167.3217122109805
Iteration: 8, Func. Count: 79, Neg. LLF: 166.64134866981098
Iteration: 9, Func. Count: 88, Neg. LLF: 166.5766236885576
Iteration: 10, Func. Count: 97, Neg. LLF: 166.12619177080538
Iteration: 11, Func. Count: 106, Neg. LLF: 165.75853661300616
Iteration: 12, Func. Count: 115, Neg. LLF: 165.79045963390465
Iteration: 13, Func. Count: 125, Neg. LLF: 165.2225039288586
Iteration: 14, Func. Count: 134, Neg. LLF: 166.76681950873774
Iteration: 15, Func. Count: 144, Neg. LLF: 164.96892214854222
Iteration: 16, Func. Count: 153, Neg. LLF: 165.11699261997853
Iteration: 17, Func. Count: 163, Neg. LLF: 164.98553546412967
Iteration: 18, Func. Count: 173, Neg. LLF: 164.96683344650663
Iteration: 19, Func. Count: 183, Neg. LLF: 164.93912605376656
Iteration: 20, Func. Count: 192, Neg. LLF: 164.93908168645063
Iteration: 21, Func. Count: 201, Neg. LLF: 164.939079065565
Iteration: 22, Func. Count: 209, Neg. LLF: 164.93907906554668
Optimization terminated successfully (Exit mode 0)
Current function value: 164.939079065565
Iterations: 22
Function evaluations: 209
Gradient evaluations: 22
Iteration: 1, Func. Count: 11, Neg. LLF: 1488.1413263351096
Iteration: 2, Func. Count: 23, Neg. LLF: 597.8093390418679
Iteration: 3, Func. Count: 34, Neg. LLF: 173.19347606321557
Iteration: 4, Func. Count: 45, Neg. LLF: 203.01670313188114
Iteration: 5, Func. Count: 56, Neg. LLF: 203.7844576449462
Iteration: 6, Func. Count: 67, Neg. LLF: 206.74659627991318
Iteration: 7, Func. Count: 78, Neg. LLF: 204.41394414651444
Iteration: 8, Func. Count: 89, Neg. LLF: 171.47561339987365
Iteration: 9, Func. Count: 100, Neg. LLF: 170.51843901062722
Iteration: 10, Func. Count: 111, Neg. LLF: 168.85741183618657
Iteration: 11, Func. Count: 122, Neg. LLF: 169.228730304351
Iteration: 12, Func. Count: 133, Neg. LLF: 168.17076699390896
Iteration: 13, Func. Count: 144, Neg. LLF: 167.13134822918053
Iteration: 14, Func. Count: 155, Neg. LLF: 166.7203281649676
Iteration: 15, Func. Count: 165, Neg. LLF: 166.37382039625658
Iteration: 16, Func. Count: 175, Neg. LLF: 166.14064866093085
Iteration: 17, Func. Count: 185, Neg. LLF: 166.10243571929675
Iteration: 18, Func. Count: 195, Neg. LLF: 166.00525146752625
Iteration: 19, Func. Count: 205, Neg. LLF: 165.72115708710277
Iteration: 20, Func. Count: 215, Neg. LLF: 165.3689823172802
Iteration: 21, Func. Count: 225, Neg. LLF: 179.59875975020006
Iteration: 22, Func. Count: 237, Neg. LLF: 165.55363728128745
Iteration: 23, Func. Count: 248, Neg. LLF: 164.97839867123307
Iteration: 24, Func. Count: 258, Neg. LLF: 165.01357649090008
Iteration: 25, Func. Count: 269, Neg. LLF: 164.9633189558902
Iteration: 26, Func. Count: 280, Neg. LLF: 164.93916115139484
Iteration: 27, Func. Count: 290, Neg. LLF: 164.93908748994102
Iteration: 28, Func. Count: 300, Neg. LLF: 164.93907909190622
Iteration: 29, Func. Count: 309, Neg. LLF: 164.939079533726
Optimization terminated successfully (Exit mode 0)
Current function value: 164.93907909190622
Iterations: 29
Function evaluations: 309
Gradient evaluations: 29
Iteration: 1, Func. Count: 12, Neg. LLF: 1721.481840293036
Iteration: 2, Func. Count: 24, Neg. LLF: 404.6139498712154
Iteration: 3, Func. Count: 36, Neg. LLF: 207.1485594256631
Iteration: 4, Func. Count: 48, Neg. LLF: 204.77946462098845
Iteration: 5, Func. Count: 60, Neg. LLF: 198.8826924602844
Iteration: 6, Func. Count: 72, Neg. LLF: 168.37184745434885
Iteration: 7, Func. Count: 84, Neg. LLF: 166.63081779072687
Iteration: 8, Func. Count: 96, Neg. LLF: 165.04005019681387
Iteration: 9, Func. Count: 107, Neg. LLF: 176.83117708728318
Iteration: 10, Func. Count: 120, Neg. LLF: 167.91971244586642
Iteration: 11, Func. Count: 132, Neg. LLF: 164.3526313991258
Iteration: 12, Func. Count: 143, Neg. LLF: 163.9387928276057
Iteration: 13, Func. Count: 154, Neg. LLF: 163.71689913165497
Iteration: 14, Func. Count: 165, Neg. LLF: 163.699998262741
Iteration: 15, Func. Count: 177, Neg. LLF: 163.63184764514693
Iteration: 16, Func. Count: 188, Neg. LLF: 163.57645374691734
Iteration: 17, Func. Count: 199, Neg. LLF: 163.50779529707387
Iteration: 18, Func. Count: 210, Neg. LLF: 163.4967334804275
Iteration: 19, Func. Count: 221, Neg. LLF: 163.4785294176973
Iteration: 20, Func. Count: 232, Neg. LLF: 163.47456969116803
Iteration: 21, Func. Count: 243, Neg. LLF: 163.47322040432917
Iteration: 22, Func. Count: 254, Neg. LLF: 163.47312530894266
Iteration: 23, Func. Count: 265, Neg. LLF: 163.47310711187956
Iteration: 24, Func. Count: 275, Neg. LLF: 163.47310711202135
Optimization terminated successfully (Exit mode 0)
Current function value: 163.47310711187956
Iterations: 24
Function evaluations: 275
Gradient evaluations: 24
Iteration: 1, Func. Count: 9, Neg. LLF: 173.71308442499097
Iteration: 2, Func. Count: 19, Neg. LLF: 183.98932667118586
Iteration: 3, Func. Count: 29, Neg. LLF: 171.81548945271427
Iteration: 4, Func. Count: 38, Neg. LLF: 171.1168076756725
Iteration: 5, Func. Count: 47, Neg. LLF: 170.82415301183693
Iteration: 6, Func. Count: 55, Neg. LLF: 171.3780419014102
Iteration: 7, Func. Count: 64, Neg. LLF: 170.80370774587732
Iteration: 8, Func. Count: 73, Neg. LLF: 170.58221188893054
Iteration: 9, Func. Count: 81, Neg. LLF: 170.1411181282034
Iteration: 10, Func. Count: 89, Neg. LLF: 168.82890581488616
Iteration: 11, Func. Count: 97, Neg. LLF: 172.8348620114554
Iteration: 12, Func. Count: 106, Neg. LLF: 178.51744744403
Iteration: 13, Func. Count: 115, Neg. LLF: 166.75798115591365
Iteration: 14, Func. Count: 123, Neg. LLF: 166.80449337757412
Iteration: 15, Func. Count: 132, Neg. LLF: 166.42350023680746
Iteration: 16, Func. Count: 140, Neg. LLF: 166.39759405605355
Iteration: 17, Func. Count: 148, Neg. LLF: 166.3931545409991
Iteration: 18, Func. Count: 156, Neg. LLF: 166.39249353071017
Iteration: 19, Func. Count: 164, Neg. LLF: 166.39222654012013
Iteration: 20, Func. Count: 172, Neg. LLF: 166.3921722311075
Iteration: 21, Func. Count: 180, Neg. LLF: 166.3921577181857
Iteration: 22, Func. Count: 188, Neg. LLF: 166.3921568359249
Optimization terminated successfully (Exit mode 0)
Current function value: 166.3921568359249
Iterations: 22
Function evaluations: 188
Gradient evaluations: 22
Iteration: 1, Func. Count: 10, Neg. LLF: 358.2140811829762
Iteration: 2, Func. Count: 20, Neg. LLF: 183.86441690548145
Iteration: 3, Func. Count: 30, Neg. LLF: 168.6570823892319
Iteration: 4, Func. Count: 39, Neg. LLF: 167.227044119174
Iteration: 5, Func. Count: 49, Neg. LLF: 269.4964691246408
Iteration: 6, Func. Count: 59, Neg. LLF: 166.44149515541173
Iteration: 7, Func. Count: 68, Neg. LLF: 166.4069097757713
Iteration: 8, Func. Count: 77, Neg. LLF: 166.66486559186865
Iteration: 9, Func. Count: 87, Neg. LLF: 166.3616716450653
Iteration: 10, Func. Count: 96, Neg. LLF: 166.34608737687356
Iteration: 11, Func. Count: 105, Neg. LLF: 166.32434330282865
Iteration: 12, Func. Count: 114, Neg. LLF: 166.31372501073375
Iteration: 13, Func. Count: 123, Neg. LLF: 166.28828381126448
Iteration: 14, Func. Count: 132, Neg. LLF: 166.27064719587193
Iteration: 15, Func. Count: 141, Neg. LLF: 166.25776458980948
Iteration: 16, Func. Count: 150, Neg. LLF: 166.25440795359782
Iteration: 17, Func. Count: 159, Neg. LLF: 166.25429208014043
Iteration: 18, Func. Count: 168, Neg. LLF: 166.25421708205832
Iteration: 19, Func. Count: 177, Neg. LLF: 166.25415453057178
Iteration: 20, Func. Count: 186, Neg. LLF: 166.254100735064
Iteration: 21, Func. Count: 195, Neg. LLF: 166.25405419398086
Iteration: 22, Func. Count: 204, Neg. LLF: 166.2540367526386
Iteration: 23, Func. Count: 213, Neg. LLF: 166.25403409024605
Iteration: 24, Func. Count: 221, Neg. LLF: 166.25403409026515
Optimization terminated successfully (Exit mode 0)
Current function value: 166.25403409024605
Iterations: 24
Function evaluations: 221
Gradient evaluations: 24
Iteration: 1, Func. Count: 11, Neg. LLF: 360.55501623177094
Iteration: 2, Func. Count: 22, Neg. LLF: 184.97353090983222
Iteration: 3, Func. Count: 33, Neg. LLF: 175.7370384094635
Iteration: 4, Func. Count: 44, Neg. LLF: 168.99895725038613
Iteration: 5, Func. Count: 55, Neg. LLF: 171.5127501238887
Iteration: 6, Func. Count: 66, Neg. LLF: 166.82545949493255
Iteration: 7, Func. Count: 76, Neg. LLF: 167.43276848806698
Iteration: 8, Func. Count: 87, Neg. LLF: 170.29380973329341
Iteration: 9, Func. Count: 98, Neg. LLF: 165.4343781715173
Iteration: 10, Func. Count: 108, Neg. LLF: 165.30049297737784
Iteration: 11, Func. Count: 118, Neg. LLF: 166.5597337823025
Iteration: 12, Func. Count: 129, Neg. LLF: 165.09306224660443
Iteration: 13, Func. Count: 139, Neg. LLF: 165.41639199527486
Iteration: 14, Func. Count: 150, Neg. LLF: 166.30307785403613
Iteration: 15, Func. Count: 161, Neg. LLF: 164.95745274634393
Iteration: 16, Func. Count: 171, Neg. LLF: 164.84900850176902
Iteration: 17, Func. Count: 181, Neg. LLF: 164.68414592867362
Iteration: 18, Func. Count: 191, Neg. LLF: 164.79044581781827
Iteration: 19, Func. Count: 202, Neg. LLF: 164.43728978319396
Iteration: 20, Func. Count: 212, Neg. LLF: 164.98378343285071
Iteration: 21, Func. Count: 223, Neg. LLF: 164.38624392888875
Iteration: 22, Func. Count: 234, Neg. LLF: 164.26420055452652
Iteration: 23, Func. Count: 244, Neg. LLF: 164.25534961481048
Iteration: 24, Func. Count: 254, Neg. LLF: 164.25831809763028
Iteration: 25, Func. Count: 265, Neg. LLF: 164.25333575944668
Iteration: 26, Func. Count: 275, Neg. LLF: 164.25318683639932
Iteration: 27, Func. Count: 285, Neg. LLF: 164.25318521399788
Iteration: 28, Func. Count: 294, Neg. LLF: 164.25318521406612
Optimization terminated successfully (Exit mode 0)
Current function value: 164.25318521399788
Iterations: 28
Function evaluations: 294
Gradient evaluations: 28
Iteration: 1, Func. Count: 12, Neg. LLF: 1516.6067068480588
Iteration: 2, Func. Count: 25, Neg. LLF: 600.3364294033389
Iteration: 3, Func. Count: 37, Neg. LLF: 174.42696917623712
Iteration: 4, Func. Count: 49, Neg. LLF: 171.59810397428268
Iteration: 5, Func. Count: 61, Neg. LLF: 167.09699526584205
Iteration: 6, Func. Count: 72, Neg. LLF: 177.48645698219102
Iteration: 7, Func. Count: 85, Neg. LLF: 174.47314769950538
Iteration: 8, Func. Count: 98, Neg. LLF: 220.84214727632337
Iteration: 9, Func. Count: 110, Neg. LLF: 166.75150873636326
Iteration: 10, Func. Count: 122, Neg. LLF: 165.80893092126695
Iteration: 11, Func. Count: 133, Neg. LLF: 165.65818827053647
Iteration: 12, Func. Count: 144, Neg. LLF: 165.64776111129956
Iteration: 13, Func. Count: 155, Neg. LLF: 165.63600397479044
Iteration: 14, Func. Count: 166, Neg. LLF: 165.63025727879835
Iteration: 15, Func. Count: 177, Neg. LLF: 165.60972799614152
Iteration: 16, Func. Count: 188, Neg. LLF: 165.60386368781747
Iteration: 17, Func. Count: 199, Neg. LLF: 165.60058482098418
Iteration: 18, Func. Count: 210, Neg. LLF: 165.59667246655602
Iteration: 19, Func. Count: 221, Neg. LLF: 165.59517716327406
Iteration: 20, Func. Count: 232, Neg. LLF: 165.59490037891783
Iteration: 21, Func. Count: 243, Neg. LLF: 165.59485047561952
Iteration: 22, Func. Count: 254, Neg. LLF: 165.59481240089468
Iteration: 23, Func. Count: 265, Neg. LLF: 165.59479892301687
Iteration: 24, Func. Count: 276, Neg. LLF: 165.5947970620234
Iteration: 25, Func. Count: 286, Neg. LLF: 165.59479706201236
Optimization terminated successfully (Exit mode 0)
Current function value: 165.5947970620234
Iterations: 25
Function evaluations: 286
Gradient evaluations: 25
Iteration: 1, Func. Count: 13, Neg. LLF: 1762.8989922912917
Iteration: 2, Func. Count: 26, Neg. LLF: 262.78673287180743
Iteration: 3, Func. Count: 39, Neg. LLF: 192.34813255636118
Iteration: 4, Func. Count: 52, Neg. LLF: 167.73644262715658
Iteration: 5, Func. Count: 64, Neg. LLF: 170.81338145978174
Iteration: 6, Func. Count: 78, Neg. LLF: 197.8501819786055
Iteration: 7, Func. Count: 92, Neg. LLF: 183.96007919528634
Iteration: 8, Func. Count: 105, Neg. LLF: 162.67218420742614
Iteration: 9, Func. Count: 117, Neg. LLF: 163.78436926175075
Iteration: 10, Func. Count: 130, Neg. LLF: 162.30370731536834
Iteration: 11, Func. Count: 142, Neg. LLF: 162.30899201778885
Iteration: 12, Func. Count: 155, Neg. LLF: 162.12125708674427
Iteration: 13, Func. Count: 167, Neg. LLF: 162.10868258676086
Iteration: 14, Func. Count: 179, Neg. LLF: 162.1081322712143
Iteration: 15, Func. Count: 191, Neg. LLF: 162.10773969976344
Iteration: 16, Func. Count: 203, Neg. LLF: 162.10750667249098
Iteration: 17, Func. Count: 215, Neg. LLF: 162.10730011697535
Iteration: 18, Func. Count: 227, Neg. LLF: 162.10707009858763
Iteration: 19, Func. Count: 239, Neg. LLF: 162.1070027185844
Iteration: 20, Func. Count: 251, Neg. LLF: 162.10696641772378
Iteration: 21, Func. Count: 263, Neg. LLF: 162.10696187940627
Iteration: 22, Func. Count: 275, Neg. LLF: 162.10695963790266
Iteration: 23, Func. Count: 287, Neg. LLF: 162.10695639209752
Iteration: 24, Func. Count: 299, Neg. LLF: 162.1069535341939
Iteration: 25, Func. Count: 311, Neg. LLF: 162.10695243640325
Iteration: 26, Func. Count: 322, Neg. LLF: 162.10695243644517
Optimization terminated successfully (Exit mode 0)
Current function value: 162.10695243640325
Iterations: 26
Function evaluations: 322
Gradient evaluations: 26
Iteration: 1, Func. Count: 10, Neg. LLF: 171.98814267800324
Iteration: 2, Func. Count: 20, Neg. LLF: 170.63244869300433
Iteration: 3, Func. Count: 30, Neg. LLF: 178.0405751056706
Iteration: 4, Func. Count: 40, Neg. LLF: 182.83862164609886
Iteration: 5, Func. Count: 50, Neg. LLF: 169.62484702643414
Iteration: 6, Func. Count: 59, Neg. LLF: 169.7718551186217
Iteration: 7, Func. Count: 69, Neg. LLF: 169.98578560895612
Iteration: 8, Func. Count: 79, Neg. LLF: 169.53096412629426
Iteration: 9, Func. Count: 88, Neg. LLF: 169.50531268358986
Iteration: 10, Func. Count: 97, Neg. LLF: 169.42923516602153
Iteration: 11, Func. Count: 106, Neg. LLF: 169.24656682515393
Iteration: 12, Func. Count: 115, Neg. LLF: 168.58003261998982
Iteration: 13, Func. Count: 124, Neg. LLF: 167.81851572209018
Iteration: 14, Func. Count: 133, Neg. LLF: 167.1878470614687
Iteration: 15, Func. Count: 142, Neg. LLF: 166.62863728453
Iteration: 16, Func. Count: 151, Neg. LLF: 166.54615829388655
Iteration: 17, Func. Count: 160, Neg. LLF: 166.18281272703598
Iteration: 18, Func. Count: 169, Neg. LLF: 166.07678655675414
Iteration: 19, Func. Count: 178, Neg. LLF: 165.84388720764807
Iteration: 20, Func. Count: 187, Neg. LLF: 165.86139204916222
Iteration: 21, Func. Count: 197, Neg. LLF: 165.78932736907794
Iteration: 22, Func. Count: 206, Neg. LLF: 165.78884675268813
Iteration: 23, Func. Count: 215, Neg. LLF: 165.7887702320392
Iteration: 24, Func. Count: 224, Neg. LLF: 165.7887071955465
Iteration: 25, Func. Count: 233, Neg. LLF: 165.7887033126482
Iteration: 26, Func. Count: 241, Neg. LLF: 165.78870319335542
Optimization terminated successfully (Exit mode 0)
Current function value: 165.7887033126482
Iterations: 26
Function evaluations: 241
Gradient evaluations: 26
Iteration: 1, Func. Count: 11, Neg. LLF: 358.52737857650897
Iteration: 2, Func. Count: 22, Neg. LLF: 188.3048037979045
Iteration: 3, Func. Count: 33, Neg. LLF: 169.84654714803696
Iteration: 4, Func. Count: 44, Neg. LLF: 169.86665819735293
Iteration: 5, Func. Count: 55, Neg. LLF: 171.29849934588648
Iteration: 6, Func. Count: 66, Neg. LLF: 168.6677825773307
Iteration: 7, Func. Count: 77, Neg. LLF: 166.82044508849228
Iteration: 8, Func. Count: 87, Neg. LLF: 166.32062391303108
Iteration: 9, Func. Count: 97, Neg. LLF: 166.11217913233523
Iteration: 10, Func. Count: 107, Neg. LLF: 165.96505118255743
Iteration: 11, Func. Count: 117, Neg. LLF: 165.92346416191197
Iteration: 12, Func. Count: 127, Neg. LLF: 165.89769905382224
Iteration: 13, Func. Count: 137, Neg. LLF: 165.87024280431177
Iteration: 14, Func. Count: 147, Neg. LLF: 165.8335166129596
Iteration: 15, Func. Count: 157, Neg. LLF: 165.80302323715946
Iteration: 16, Func. Count: 167, Neg. LLF: 165.7901457368073
Iteration: 17, Func. Count: 177, Neg. LLF: 165.78908150264593
Iteration: 18, Func. Count: 187, Neg. LLF: 165.78878600989685
Iteration: 19, Func. Count: 197, Neg. LLF: 165.7887158468152
Iteration: 20, Func. Count: 207, Neg. LLF: 165.78870663271923
Iteration: 21, Func. Count: 217, Neg. LLF: 165.78870323078155
Iteration: 22, Func. Count: 226, Neg. LLF: 165.78870331453325
Optimization terminated successfully (Exit mode 0)
Current function value: 165.78870323078155
Iterations: 22
Function evaluations: 226
Gradient evaluations: 22
Iteration: 1, Func. Count: 12, Neg. LLF: 360.61330016742386
Iteration: 2, Func. Count: 24, Neg. LLF: 187.71826804693214
Iteration: 3, Func. Count: 36, Neg. LLF: 169.25878500980062
Iteration: 4, Func. Count: 48, Neg. LLF: 179.76807504713915
Iteration: 5, Func. Count: 60, Neg. LLF: 169.98042717705704
Iteration: 6, Func. Count: 72, Neg. LLF: 167.34537501606974
Iteration: 7, Func. Count: 84, Neg. LLF: 165.95479779797265
Iteration: 8, Func. Count: 95, Neg. LLF: 165.59986982442138
Iteration: 9, Func. Count: 106, Neg. LLF: 165.3904810507027
Iteration: 10, Func. Count: 117, Neg. LLF: 165.25695489442742
Iteration: 11, Func. Count: 128, Neg. LLF: 165.11612693391083
Iteration: 12, Func. Count: 139, Neg. LLF: 165.19885467176806
Iteration: 13, Func. Count: 151, Neg. LLF: 164.87451770567708
Iteration: 14, Func. Count: 162, Neg. LLF: 164.80876198327985
Iteration: 15, Func. Count: 173, Neg. LLF: 164.62477589647975
Iteration: 16, Func. Count: 184, Neg. LLF: 164.6975239436197
Iteration: 17, Func. Count: 196, Neg. LLF: 164.4449533315794
Iteration: 18, Func. Count: 207, Neg. LLF: 164.525198500699
Iteration: 19, Func. Count: 219, Neg. LLF: 164.65591885359126
Iteration: 20, Func. Count: 231, Neg. LLF: 164.34510341895054
Iteration: 21, Func. Count: 243, Neg. LLF: 164.2537702016904
Iteration: 22, Func. Count: 254, Neg. LLF: 164.25332189784282
Iteration: 23, Func. Count: 265, Neg. LLF: 164.25322472108923
Iteration: 24, Func. Count: 276, Neg. LLF: 164.25319107755283
Iteration: 25, Func. Count: 287, Neg. LLF: 164.2531876784188
Iteration: 26, Func. Count: 298, Neg. LLF: 164.2531851767646
Iteration: 27, Func. Count: 308, Neg. LLF: 164.25318517679688
Optimization terminated successfully (Exit mode 0)
Current function value: 164.2531851767646
Iterations: 27
Function evaluations: 308
Gradient evaluations: 27
Iteration: 1, Func. Count: 13, Neg. LLF: 1523.4536321841283
Iteration: 2, Func. Count: 27, Neg. LLF: 238.16779599528996
Iteration: 3, Func. Count: 40, Neg. LLF: 196.91685251070032
Iteration: 4, Func. Count: 53, Neg. LLF: 169.5286744897705
Iteration: 5, Func. Count: 66, Neg. LLF: 166.9281993166402
Iteration: 6, Func. Count: 78, Neg. LLF: 167.16900335190724
Iteration: 7, Func. Count: 91, Neg. LLF: 170.39863729455112
Iteration: 8, Func. Count: 105, Neg. LLF: 166.10960650484722
Iteration: 9, Func. Count: 117, Neg. LLF: 167.09926704534553
Iteration: 10, Func. Count: 130, Neg. LLF: 178.76253864755267
Iteration: 11, Func. Count: 144, Neg. LLF: 165.18085945397272
Iteration: 12, Func. Count: 156, Neg. LLF: 165.58526812416775
Iteration: 13, Func. Count: 169, Neg. LLF: 164.94959994461487
Iteration: 14, Func. Count: 181, Neg. LLF: 164.89566070616064
Iteration: 15, Func. Count: 193, Neg. LLF: 164.83988083965505
Iteration: 16, Func. Count: 205, Neg. LLF: 164.77272538279905
Iteration: 17, Func. Count: 217, Neg. LLF: 164.70818680096895
Iteration: 18, Func. Count: 229, Neg. LLF: 164.53146661360125
Iteration: 19, Func. Count: 241, Neg. LLF: 165.42196785160488
Iteration: 20, Func. Count: 254, Neg. LLF: 164.37531186037367
Iteration: 21, Func. Count: 266, Neg. LLF: 164.32094219435925
Iteration: 22, Func. Count: 278, Neg. LLF: 164.27203076261594
Iteration: 23, Func. Count: 290, Neg. LLF: 164.25614038327055
Iteration: 24, Func. Count: 302, Neg. LLF: 164.25436411255816
Iteration: 25, Func. Count: 314, Neg. LLF: 164.2535503239121
Iteration: 26, Func. Count: 326, Neg. LLF: 164.25324154639688
Iteration: 27, Func. Count: 338, Neg. LLF: 164.25319157041386
Iteration: 28, Func. Count: 350, Neg. LLF: 164.25318608209102
Iteration: 29, Func. Count: 362, Neg. LLF: 164.2531865200691
Optimization terminated successfully (Exit mode 0)
Current function value: 164.25318612456067
Iterations: 29
Function evaluations: 363
Gradient evaluations: 29
Iteration: 1, Func. Count: 14, Neg. LLF: 1764.2716696109867
Iteration: 2, Func. Count: 28, Neg. LLF: 472.5802742565004
Iteration: 3, Func. Count: 42, Neg. LLF: 197.84904834148776
Iteration: 4, Func. Count: 56, Neg. LLF: 166.12451304579574
Iteration: 5, Func. Count: 69, Neg. LLF: 166.3524640592404
Iteration: 6, Func. Count: 84, Neg. LLF: 173.6965944350289
Iteration: 7, Func. Count: 99, Neg. LLF: 186.2681177059853
Iteration: 8, Func. Count: 113, Neg. LLF: 162.44217314901988
Iteration: 9, Func. Count: 126, Neg. LLF: 162.5503821183862
Iteration: 10, Func. Count: 140, Neg. LLF: 162.17955828627507
Iteration: 11, Func. Count: 153, Neg. LLF: 162.15654944189674
Iteration: 12, Func. Count: 166, Neg. LLF: 162.1142133869971
Iteration: 13, Func. Count: 179, Neg. LLF: 162.10810844566657
Iteration: 14, Func. Count: 192, Neg. LLF: 162.10766858530414
Iteration: 15, Func. Count: 205, Neg. LLF: 162.1072540041493
Iteration: 16, Func. Count: 218, Neg. LLF: 162.10716631438962
Iteration: 17, Func. Count: 231, Neg. LLF: 162.10707164032516
Iteration: 18, Func. Count: 244, Neg. LLF: 162.1069767178601
Iteration: 19, Func. Count: 257, Neg. LLF: 162.10696706029228
Iteration: 20, Func. Count: 270, Neg. LLF: 162.10696283329835
Iteration: 21, Func. Count: 283, Neg. LLF: 162.1069582976542
Iteration: 22, Func. Count: 296, Neg. LLF: 162.10695397677677
Iteration: 23, Func. Count: 309, Neg. LLF: 162.10695248203615
Iteration: 24, Func. Count: 321, Neg. LLF: 162.10695248201498
Optimization terminated successfully (Exit mode 0)
Current function value: 162.10695248203615
Iterations: 24
Function evaluations: 321
Gradient evaluations: 24
Iteration: 1, Func. Count: 11, Neg. LLF: 172.18930457425566
Iteration: 2, Func. Count: 22, Neg. LLF: 170.6371945634387
Iteration: 3, Func. Count: 33, Neg. LLF: 173.47735392908595
Iteration: 4, Func. Count: 44, Neg. LLF: 182.87468501831646
Iteration: 5, Func. Count: 55, Neg. LLF: 169.64397960755684
Iteration: 6, Func. Count: 65, Neg. LLF: 169.82442158458795
Iteration: 7, Func. Count: 76, Neg. LLF: 169.94582089565358
Iteration: 8, Func. Count: 87, Neg. LLF: 169.52116233719622
Iteration: 9, Func. Count: 97, Neg. LLF: 169.49913287746804
Iteration: 10, Func. Count: 107, Neg. LLF: 169.39573432058503
Iteration: 11, Func. Count: 117, Neg. LLF: 169.1147741486797
Iteration: 12, Func. Count: 127, Neg. LLF: 168.81293539847036
Iteration: 13, Func. Count: 137, Neg. LLF: 168.00958220871266
Iteration: 14, Func. Count: 147, Neg. LLF: 167.30046731695992
Iteration: 15, Func. Count: 157, Neg. LLF: 349.65541499732217
Iteration: 16, Func. Count: 168, Neg. LLF: 166.04618755888046
Iteration: 17, Func. Count: 178, Neg. LLF: 166.4224555633191
Iteration: 18, Func. Count: 189, Neg. LLF: 166.58651923023265
Iteration: 19, Func. Count: 200, Neg. LLF: 165.80917217309752
Iteration: 20, Func. Count: 210, Neg. LLF: 165.7610710008962
Iteration: 21, Func. Count: 220, Neg. LLF: 165.71159949835535
Iteration: 22, Func. Count: 230, Neg. LLF: 165.61766564254413
Iteration: 23, Func. Count: 240, Neg. LLF: 165.58287802617866
Iteration: 24, Func. Count: 250, Neg. LLF: 165.56950149067237
Iteration: 25, Func. Count: 260, Neg. LLF: 165.55899426073927
Iteration: 26, Func. Count: 270, Neg. LLF: 165.55483356025175
Iteration: 27, Func. Count: 280, Neg. LLF: 165.5540566102657
Iteration: 28, Func. Count: 290, Neg. LLF: 165.55377221649147
Iteration: 29, Func. Count: 300, Neg. LLF: 165.553739456603
Iteration: 30, Func. Count: 310, Neg. LLF: 165.5537214229448
Iteration: 31, Func. Count: 320, Neg. LLF: 165.55369908589785
Iteration: 32, Func. Count: 330, Neg. LLF: 165.55440738082217
Optimization terminated successfully (Exit mode 0)
Current function value: 165.55369897193177
Iterations: 33
Function evaluations: 332
Gradient evaluations: 32
Iteration: 1, Func. Count: 12, Neg. LLF: 358.8829726354689
Iteration: 2, Func. Count: 24, Neg. LLF: 202.20213049374365
Iteration: 3, Func. Count: 36, Neg. LLF: 181.0402092226227
Iteration: 4, Func. Count: 48, Neg. LLF: 170.60677844746817
Iteration: 5, Func. Count: 60, Neg. LLF: 170.8938008930847
Iteration: 6, Func. Count: 72, Neg. LLF: 168.37465275147372
Iteration: 7, Func. Count: 84, Neg. LLF: 167.22899894010104
Iteration: 8, Func. Count: 96, Neg. LLF: 166.7422453412945
Iteration: 9, Func. Count: 108, Neg. LLF: 166.53934965647207
Iteration: 10, Func. Count: 119, Neg. LLF: 166.28357049021417
Iteration: 11, Func. Count: 130, Neg. LLF: 166.18605294055263
Iteration: 12, Func. Count: 141, Neg. LLF: 165.88278312499477
Iteration: 13, Func. Count: 152, Neg. LLF: 165.81978928977819
Iteration: 14, Func. Count: 163, Neg. LLF: 165.75461493542005
Iteration: 15, Func. Count: 174, Neg. LLF: 165.70168628887532
Iteration: 16, Func. Count: 185, Neg. LLF: 165.6478269941019
Iteration: 17, Func. Count: 196, Neg. LLF: 165.61155629333632
Iteration: 18, Func. Count: 207, Neg. LLF: 165.58114187965285
Iteration: 19, Func. Count: 218, Neg. LLF: 165.5607593279631
Iteration: 20, Func. Count: 229, Neg. LLF: 165.5548842847056
Iteration: 21, Func. Count: 240, Neg. LLF: 165.55416351955634
Iteration: 22, Func. Count: 251, Neg. LLF: 165.5538567110691
Iteration: 23, Func. Count: 262, Neg. LLF: 165.55372869161272
Iteration: 24, Func. Count: 273, Neg. LLF: 165.5537085068229
Iteration: 25, Func. Count: 284, Neg. LLF: 165.55370598474573
Iteration: 26, Func. Count: 295, Neg. LLF: 165.553705245983
Optimization terminated successfully (Exit mode 0)
Current function value: 165.553705245983
Iterations: 26
Function evaluations: 295
Gradient evaluations: 26
Iteration: 1, Func. Count: 13, Neg. LLF: 361.06862057623243
Iteration: 2, Func. Count: 26, Neg. LLF: 197.55921706167499
Iteration: 3, Func. Count: 39, Neg. LLF: 180.7616643936897
Iteration: 4, Func. Count: 52, Neg. LLF: 171.75034337237327
Iteration: 5, Func. Count: 65, Neg. LLF: 173.65069186097077
Iteration: 6, Func. Count: 78, Neg. LLF: 166.6664754157788
Iteration: 7, Func. Count: 90, Neg. LLF: 167.85802910192368
Iteration: 8, Func. Count: 103, Neg. LLF: 173.8753395800445
Iteration: 9, Func. Count: 118, Neg. LLF: 165.71925099831535
Iteration: 10, Func. Count: 130, Neg. LLF: 165.5600385680228
Iteration: 11, Func. Count: 142, Neg. LLF: 165.30917659892597
Iteration: 12, Func. Count: 154, Neg. LLF: 165.14263569967972
Iteration: 13, Func. Count: 166, Neg. LLF: 164.97974021140558
Iteration: 14, Func. Count: 178, Neg. LLF: 164.9181705230141
Iteration: 15, Func. Count: 190, Neg. LLF: 164.84554173809008
Iteration: 16, Func. Count: 202, Neg. LLF: 164.7388435911006
Iteration: 17, Func. Count: 214, Neg. LLF: 164.7492416224771
Iteration: 18, Func. Count: 227, Neg. LLF: 164.70094931474435
Iteration: 19, Func. Count: 240, Neg. LLF: 164.4787376668602
Iteration: 20, Func. Count: 253, Neg. LLF: 164.54251889777058
Iteration: 21, Func. Count: 266, Neg. LLF: 164.3583174413037
Iteration: 22, Func. Count: 278, Neg. LLF: 164.55822617555305
Iteration: 23, Func. Count: 291, Neg. LLF: 164.2919167628681
Iteration: 24, Func. Count: 303, Neg. LLF: 164.26004451686944
Iteration: 25, Func. Count: 315, Neg. LLF: 164.2551959871995
Iteration: 26, Func. Count: 327, Neg. LLF: 164.25325003988465
Iteration: 27, Func. Count: 339, Neg. LLF: 164.25320546347555
Iteration: 28, Func. Count: 351, Neg. LLF: 164.2531853615094
Iteration: 29, Func. Count: 362, Neg. LLF: 164.25318536159668
Optimization terminated successfully (Exit mode 0)
Current function value: 164.2531853615094
Iterations: 29
Function evaluations: 362
Gradient evaluations: 29
Iteration: 1, Func. Count: 14, Neg. LLF: 1588.4596729564157
Iteration: 2, Func. Count: 28, Neg. LLF: 351.60830622219123
Iteration: 3, Func. Count: 42, Neg. LLF: 207.12417612132603
Iteration: 4, Func. Count: 56, Neg. LLF: 171.0652308271261
Iteration: 5, Func. Count: 70, Neg. LLF: 168.96362459350243
Iteration: 6, Func. Count: 84, Neg. LLF: 169.67466319815202
Iteration: 7, Func. Count: 98, Neg. LLF: 167.84145415434102
Iteration: 8, Func. Count: 112, Neg. LLF: 167.5702421504887
Iteration: 9, Func. Count: 126, Neg. LLF: 166.73044598599668
Iteration: 10, Func. Count: 140, Neg. LLF: 170.7285316718084
Iteration: 11, Func. Count: 154, Neg. LLF: 166.899034560065
Iteration: 12, Func. Count: 168, Neg. LLF: 165.80746709234793
Iteration: 13, Func. Count: 182, Neg. LLF: 165.21455382114155
Iteration: 14, Func. Count: 195, Neg. LLF: 165.14223419860755
Iteration: 15, Func. Count: 208, Neg. LLF: 165.0665758835431
Iteration: 16, Func. Count: 221, Neg. LLF: 164.97486565639952
Iteration: 17, Func. Count: 234, Neg. LLF: 164.93008333363997
Iteration: 18, Func. Count: 247, Neg. LLF: 164.89392144552022
Iteration: 19, Func. Count: 260, Neg. LLF: 164.8496346159926
Iteration: 20, Func. Count: 273, Neg. LLF: 164.81391350402455
Iteration: 21, Func. Count: 286, Neg. LLF: 164.69301234634216
Iteration: 22, Func. Count: 299, Neg. LLF: 164.46070190981487
Iteration: 23, Func. Count: 312, Neg. LLF: 164.35355717865582
Iteration: 24, Func. Count: 325, Neg. LLF: 164.31791530366723
Iteration: 25, Func. Count: 338, Neg. LLF: 164.54803845234895
Iteration: 26, Func. Count: 352, Neg. LLF: 164.29071776660433
Iteration: 27, Func. Count: 366, Neg. LLF: 164.25659177755304
Iteration: 28, Func. Count: 379, Neg. LLF: 164.25396688934038
Iteration: 29, Func. Count: 392, Neg. LLF: 277.0954965343545
Iteration: 30, Func. Count: 408, Neg. LLF: 164.53724549865973
Iteration: 31, Func. Count: 423, Neg. LLF: 164.2717406523992
Iteration: 32, Func. Count: 438, Neg. LLF: 164.25568124275682
Iteration: 33, Func. Count: 452, Neg. LLF: 164.25320142667826
Iteration: 34, Func. Count: 465, Neg. LLF: 164.25321182252955
Iteration: 35, Func. Count: 479, Neg. LLF: 164.2531886843788
Iteration: 36, Func. Count: 492, Neg. LLF: 164.25318576584633
Optimization terminated successfully (Exit mode 0)
Current function value: 164.2531853250414
Iterations: 37
Function evaluations: 492
Gradient evaluations: 36
Iteration: 1, Func. Count: 15, Neg. LLF: 1830.4772728218422
Iteration: 2, Func. Count: 30, Neg. LLF: 2553.3381423758974
Iteration: 3, Func. Count: 45, Neg. LLF: 204.9606630704138
Iteration: 4, Func. Count: 60, Neg. LLF: 165.57520518554014
Iteration: 5, Func. Count: 74, Neg. LLF: 165.0446646877039
Iteration: 6, Func. Count: 90, Neg. LLF: 170.758304688521
Iteration: 7, Func. Count: 106, Neg. LLF: 166.91617020339305
Iteration: 8, Func. Count: 121, Neg. LLF: 162.7674439180354
Iteration: 9, Func. Count: 135, Neg. LLF: 163.1033671754487
Iteration: 10, Func. Count: 150, Neg. LLF: 162.8063980838669
Iteration: 11, Func. Count: 165, Neg. LLF: 162.2451189199417
Iteration: 12, Func. Count: 179, Neg. LLF: 162.16137001407589
Iteration: 13, Func. Count: 193, Neg. LLF: 162.13231592422608
Iteration: 14, Func. Count: 207, Neg. LLF: 162.1095237365981
Iteration: 15, Func. Count: 221, Neg. LLF: 162.10762816500215
Iteration: 16, Func. Count: 235, Neg. LLF: 162.10734028095908
Iteration: 17, Func. Count: 249, Neg. LLF: 162.10707647570214
Iteration: 18, Func. Count: 263, Neg. LLF: 162.10700547944677
Iteration: 19, Func. Count: 277, Neg. LLF: 162.10697312962537
Iteration: 20, Func. Count: 291, Neg. LLF: 162.10696433101165
Iteration: 21, Func. Count: 305, Neg. LLF: 162.10695710706074
Iteration: 22, Func. Count: 319, Neg. LLF: 162.10695342998264
Iteration: 23, Func. Count: 333, Neg. LLF: 162.10695238416335
Iteration: 24, Func. Count: 346, Neg. LLF: 162.1069523842096
Optimization terminated successfully (Exit mode 0)
Current function value: 162.10695238416335
Iterations: 24
Function evaluations: 346
Gradient evaluations: 24
Iteration: 1, Func. Count: 8, Neg. LLF: 173.43017546274538
Iteration: 2, Func. Count: 16, Neg. LLF: 175.47695644663713
Iteration: 3, Func. Count: 25, Neg. LLF: 170.96502399212358
Iteration: 4, Func. Count: 32, Neg. LLF: 170.78182112271074
Iteration: 5, Func. Count: 39, Neg. LLF: 170.73409645056353
Iteration: 6, Func. Count: 46, Neg. LLF: 170.66154352915385
Iteration: 7, Func. Count: 53, Neg. LLF: 170.42864511260137
Iteration: 8, Func. Count: 60, Neg. LLF: 170.01921716235017
Iteration: 9, Func. Count: 67, Neg. LLF: 169.52243256275628
Iteration: 10, Func. Count: 74, Neg. LLF: 169.03526791227787
Iteration: 11, Func. Count: 81, Neg. LLF: 168.96940102758322
Iteration: 12, Func. Count: 89, Neg. LLF: 174.0387662294853
Iteration: 13, Func. Count: 97, Neg. LLF: 167.8340887217014
Iteration: 14, Func. Count: 104, Neg. LLF: 167.7379657173084
Iteration: 15, Func. Count: 111, Neg. LLF: 167.70186027527038
Iteration: 16, Func. Count: 118, Neg. LLF: 167.5999285593065
Iteration: 17, Func. Count: 125, Neg. LLF: 167.57694179506373
Iteration: 18, Func. Count: 132, Neg. LLF: 167.56320815226894
Iteration: 19, Func. Count: 139, Neg. LLF: 167.5520588949204
Iteration: 20, Func. Count: 146, Neg. LLF: 167.55063368505466
Iteration: 21, Func. Count: 153, Neg. LLF: 167.5505664406218
Iteration: 22, Func. Count: 160, Neg. LLF: 167.55056503156476
Iteration: 23, Func. Count: 166, Neg. LLF: 167.55056500410547
Optimization terminated successfully (Exit mode 0)
Current function value: 167.55056503156476
Iterations: 23
Function evaluations: 166
Gradient evaluations: 23
Iteration: 1, Func. Count: 9, Neg. LLF: 1888.1819843339738
Iteration: 2, Func. Count: 19, Neg. LLF: 214.73727269539023
Iteration: 3, Func. Count: 28, Neg. LLF: 169.42231625540768
Iteration: 4, Func. Count: 36, Neg. LLF: 167.69646656564697
Iteration: 5, Func. Count: 44, Neg. LLF: 170.87278017555298
Iteration: 6, Func. Count: 54, Neg. LLF: 167.6521049352485
Iteration: 7, Func. Count: 62, Neg. LLF: 167.64343630443284
Iteration: 8, Func. Count: 70, Neg. LLF: 167.64302875940197
Iteration: 9, Func. Count: 78, Neg. LLF: 167.64266151625506
Iteration: 10, Func. Count: 86, Neg. LLF: 167.6425947623368
Iteration: 11, Func. Count: 94, Neg. LLF: 167.64255084384914
Iteration: 12, Func. Count: 102, Neg. LLF: 167.6424817276021
Iteration: 13, Func. Count: 110, Neg. LLF: 167.64239690228916
Iteration: 14, Func. Count: 118, Neg. LLF: 167.64234723858272
Iteration: 15, Func. Count: 126, Neg. LLF: 167.64233614855584
Iteration: 16, Func. Count: 134, Neg. LLF: 167.64233539059146
Optimization terminated successfully (Exit mode 0)
Current function value: 167.64233539059146
Iterations: 16
Function evaluations: 134
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 2606.1723032823375
Iteration: 2, Func. Count: 20, Neg. LLF: 1200.8422781894783
Iteration: 3, Func. Count: 30, Neg. LLF: 204.58368341697278
Iteration: 4, Func. Count: 40, Neg. LLF: 175.84074856937187
Iteration: 5, Func. Count: 50, Neg. LLF: 173.7020908706267
Iteration: 6, Func. Count: 60, Neg. LLF: 169.02236970591042
Iteration: 7, Func. Count: 70, Neg. LLF: 167.95768922314372
Iteration: 8, Func. Count: 80, Neg. LLF: 167.4056483595244
Iteration: 9, Func. Count: 90, Neg. LLF: 166.64557480827935
Iteration: 10, Func. Count: 99, Neg. LLF: 166.49197640799375
Iteration: 11, Func. Count: 109, Neg. LLF: 165.7360514190021
Iteration: 12, Func. Count: 118, Neg. LLF: 167.80754942718684
Iteration: 13, Func. Count: 128, Neg. LLF: 165.3886223319658
Iteration: 14, Func. Count: 137, Neg. LLF: 165.1781084346093
Iteration: 15, Func. Count: 146, Neg. LLF: 165.14924503630886
Iteration: 16, Func. Count: 155, Neg. LLF: 165.11272272238097
Iteration: 17, Func. Count: 164, Neg. LLF: 165.10991579734375
Iteration: 18, Func. Count: 173, Neg. LLF: 165.1033516853135
Iteration: 19, Func. Count: 182, Neg. LLF: 165.1007977471726
Iteration: 20, Func. Count: 191, Neg. LLF: 165.10023267869224
Iteration: 21, Func. Count: 200, Neg. LLF: 165.10019847652228
Iteration: 22, Func. Count: 209, Neg. LLF: 165.1001971383658
Iteration: 23, Func. Count: 217, Neg. LLF: 165.10019713839642
Optimization terminated successfully (Exit mode 0)
Current function value: 165.1001971383658
Iterations: 23
Function evaluations: 217
Gradient evaluations: 23
Iteration: 1, Func. Count: 11, Neg. LLF: 3023.675048374591
Iteration: 2, Func. Count: 22, Neg. LLF: 217.9044261452443
Iteration: 3, Func. Count: 33, Neg. LLF: 173.32801218310536
Iteration: 4, Func. Count: 44, Neg. LLF: 167.60395288652668
Iteration: 5, Func. Count: 54, Neg. LLF: 170.1292432299703
Iteration: 6, Func. Count: 66, Neg. LLF: 170.48977158028677
Iteration: 7, Func. Count: 77, Neg. LLF: 167.10016408932364
Iteration: 8, Func. Count: 88, Neg. LLF: 166.6971405311124
Iteration: 9, Func. Count: 99, Neg. LLF: 166.31261746683666
Iteration: 10, Func. Count: 110, Neg. LLF: 165.69981479954149
Iteration: 11, Func. Count: 120, Neg. LLF: 165.5249064483898
Iteration: 12, Func. Count: 130, Neg. LLF: 165.44556013035353
Iteration: 13, Func. Count: 140, Neg. LLF: 165.30092334607886
Iteration: 14, Func. Count: 150, Neg. LLF: 165.2153534104747
Iteration: 15, Func. Count: 160, Neg. LLF: 165.17913018136497
Iteration: 16, Func. Count: 170, Neg. LLF: 165.13906541326648
Iteration: 17, Func. Count: 180, Neg. LLF: 165.10393542756904
Iteration: 18, Func. Count: 190, Neg. LLF: 165.10049725389854
Iteration: 19, Func. Count: 200, Neg. LLF: 165.10019877996547
Iteration: 20, Func. Count: 210, Neg. LLF: 165.10019747239784
Iteration: 21, Func. Count: 219, Neg. LLF: 165.10019786629627
Optimization terminated successfully (Exit mode 0)
Current function value: 165.10019747239784
Iterations: 21
Function evaluations: 219
Gradient evaluations: 21
Iteration: 1, Func. Count: 12, Neg. LLF: 373.5446581351647
Iteration: 2, Func. Count: 24, Neg. LLF: 272.48188329526374
Iteration: 3, Func. Count: 36, Neg. LLF: 196.24019677774533
Iteration: 4, Func. Count: 48, Neg. LLF: 166.271541382003
Iteration: 5, Func. Count: 59, Neg. LLF: 179.0489457597242
Iteration: 6, Func. Count: 71, Neg. LLF: 165.76140522329402
Iteration: 7, Func. Count: 82, Neg. LLF: 164.75050210528386
Iteration: 8, Func. Count: 93, Neg. LLF: 164.1081540429239
Iteration: 9, Func. Count: 104, Neg. LLF: 163.90708714151828
Iteration: 10, Func. Count: 115, Neg. LLF: 163.78573302355943
Iteration: 11, Func. Count: 126, Neg. LLF: 163.89312456550573
Iteration: 12, Func. Count: 138, Neg. LLF: 163.78560555961798
Iteration: 13, Func. Count: 150, Neg. LLF: 163.7014225877044
Iteration: 14, Func. Count: 161, Neg. LLF: 163.68889503946892
Iteration: 15, Func. Count: 172, Neg. LLF: 163.68481111341717
Iteration: 16, Func. Count: 183, Neg. LLF: 163.68425791167996
Iteration: 17, Func. Count: 194, Neg. LLF: 163.684254556822
Iteration: 18, Func. Count: 204, Neg. LLF: 163.68425455696755
Optimization terminated successfully (Exit mode 0)
Current function value: 163.684254556822
Iterations: 18
Function evaluations: 204
Gradient evaluations: 18
Iteration: 1, Func. Count: 9, Neg. LLF: 173.3745997391785
Iteration: 2, Func. Count: 18, Neg. LLF: 175.07582199595245
Iteration: 3, Func. Count: 28, Neg. LLF: 171.05794312161856
Iteration: 4, Func. Count: 36, Neg. LLF: 171.14434106416314
Iteration: 5, Func. Count: 45, Neg. LLF: 170.98267975112404
Iteration: 6, Func. Count: 54, Neg. LLF: 170.69656767486234
Iteration: 7, Func. Count: 62, Neg. LLF: 170.60972454952184
Iteration: 8, Func. Count: 70, Neg. LLF: 170.54089959761444
Iteration: 9, Func. Count: 78, Neg. LLF: 170.1324104974453
Iteration: 10, Func. Count: 86, Neg. LLF: 169.32307597018496
Iteration: 11, Func. Count: 94, Neg. LLF: 185.75422037454624
Iteration: 12, Func. Count: 103, Neg. LLF: 284.87859931858264
Iteration: 13, Func. Count: 112, Neg. LLF: 255.28103372890325
Iteration: 14, Func. Count: 121, Neg. LLF: 233.70392929560748
Iteration: 15, Func. Count: 130, Neg. LLF: 178.49688745898106
Iteration: 16, Func. Count: 139, Neg. LLF: 168.7946053169612
Iteration: 17, Func. Count: 148, Neg. LLF: 167.54837995912985
Iteration: 18, Func. Count: 156, Neg. LLF: 167.5107745687321
Iteration: 19, Func. Count: 164, Neg. LLF: 167.5011181365895
Iteration: 20, Func. Count: 172, Neg. LLF: 167.49921686870144
Iteration: 21, Func. Count: 180, Neg. LLF: 167.496553690834
Iteration: 22, Func. Count: 188, Neg. LLF: 167.49570805007028
Iteration: 23, Func. Count: 196, Neg. LLF: 167.49557172279307
Iteration: 24, Func. Count: 204, Neg. LLF: 167.49556756253702
Iteration: 25, Func. Count: 211, Neg. LLF: 167.4955675623407
Optimization terminated successfully (Exit mode 0)
Current function value: 167.49556756253702
Iterations: 25
Function evaluations: 211
Gradient evaluations: 25
Iteration: 1, Func. Count: 10, Neg. LLF: 359.154160957446
Iteration: 2, Func. Count: 20, Neg. LLF: 186.1294198731005
Iteration: 3, Func. Count: 30, Neg. LLF: 180.68863850298797
Iteration: 4, Func. Count: 40, Neg. LLF: 172.67416503657697
Iteration: 5, Func. Count: 50, Neg. LLF: 174.24779947672155
Iteration: 6, Func. Count: 60, Neg. LLF: 172.26147935204568
Iteration: 7, Func. Count: 70, Neg. LLF: 169.47740445100106
Iteration: 8, Func. Count: 80, Neg. LLF: 168.63758603799803
Iteration: 9, Func. Count: 90, Neg. LLF: 169.18113838824442
Iteration: 10, Func. Count: 100, Neg. LLF: 167.52676283613255
Iteration: 11, Func. Count: 109, Neg. LLF: 167.61314306939875
Iteration: 12, Func. Count: 119, Neg. LLF: 167.50547787940963
Iteration: 13, Func. Count: 128, Neg. LLF: 167.4991955686592
Iteration: 14, Func. Count: 137, Neg. LLF: 167.49825793503035
Iteration: 15, Func. Count: 146, Neg. LLF: 167.49789468857517
Iteration: 16, Func. Count: 155, Neg. LLF: 167.49692120888116
Iteration: 17, Func. Count: 164, Neg. LLF: 167.49609212765878
Iteration: 18, Func. Count: 173, Neg. LLF: 167.49564493717713
Iteration: 19, Func. Count: 182, Neg. LLF: 167.49557175272295
Iteration: 20, Func. Count: 191, Neg. LLF: 167.49556757811587
Iteration: 21, Func. Count: 199, Neg. LLF: 167.495567584348
Optimization terminated successfully (Exit mode 0)
Current function value: 167.49556757811587
Iterations: 21
Function evaluations: 199
Gradient evaluations: 21
Iteration: 1, Func. Count: 11, Neg. LLF: 262.07012661389894
Iteration: 2, Func. Count: 22, Neg. LLF: 299.46880275815306
Iteration: 3, Func. Count: 33, Neg. LLF: 224.68109123690988
Iteration: 4, Func. Count: 44, Neg. LLF: 221.625037361181
Iteration: 5, Func. Count: 55, Neg. LLF: 203.62147701358109
Iteration: 6, Func. Count: 66, Neg. LLF: 200.8251822132271
Iteration: 7, Func. Count: 77, Neg. LLF: 169.65771466414503
Iteration: 8, Func. Count: 88, Neg. LLF: 174.2516555377533
Iteration: 9, Func. Count: 99, Neg. LLF: 167.79803884250393
Iteration: 10, Func. Count: 110, Neg. LLF: 167.09437819975784
Iteration: 11, Func. Count: 121, Neg. LLF: 166.29533109987233
Iteration: 12, Func. Count: 131, Neg. LLF: 192.18293160932123
Iteration: 13, Func. Count: 143, Neg. LLF: 166.11143365887202
Iteration: 14, Func. Count: 153, Neg. LLF: 166.45152779516113
Iteration: 15, Func. Count: 164, Neg. LLF: 165.95174061513458
Iteration: 16, Func. Count: 174, Neg. LLF: 165.79145340031897
Iteration: 17, Func. Count: 184, Neg. LLF: 165.21778135598296
Iteration: 18, Func. Count: 194, Neg. LLF: 165.5457429550224
Iteration: 19, Func. Count: 206, Neg. LLF: 164.96699740834805
Iteration: 20, Func. Count: 216, Neg. LLF: 164.94510652143958
Iteration: 21, Func. Count: 226, Neg. LLF: 164.93976103030693
Iteration: 22, Func. Count: 236, Neg. LLF: 164.93924259157546
Iteration: 23, Func. Count: 246, Neg. LLF: 164.93910737034633
Iteration: 24, Func. Count: 256, Neg. LLF: 164.93908008719959
Iteration: 25, Func. Count: 266, Neg. LLF: 164.9390790710769
Iteration: 26, Func. Count: 275, Neg. LLF: 164.9390790711114
Optimization terminated successfully (Exit mode 0)
Current function value: 164.9390790710769
Iterations: 26
Function evaluations: 275
Gradient evaluations: 26
Iteration: 1, Func. Count: 12, Neg. LLF: 1582.1092878771622
Iteration: 2, Func. Count: 25, Neg. LLF: 1569.4505059292103
Iteration: 3, Func. Count: 37, Neg. LLF: 176.5200518695738
Iteration: 4, Func. Count: 49, Neg. LLF: 197.90723682960308
Iteration: 5, Func. Count: 61, Neg. LLF: 204.64552160525534
Iteration: 6, Func. Count: 73, Neg. LLF: 204.23911082695292
Iteration: 7, Func. Count: 85, Neg. LLF: 203.99399052016165
Iteration: 8, Func. Count: 97, Neg. LLF: 173.25795888962674
Iteration: 9, Func. Count: 109, Neg. LLF: 169.9339529946768
Iteration: 10, Func. Count: 121, Neg. LLF: 168.9296853431494
Iteration: 11, Func. Count: 133, Neg. LLF: 167.66165798136657
Iteration: 12, Func. Count: 145, Neg. LLF: 167.76135536434037
Iteration: 13, Func. Count: 157, Neg. LLF: 166.54370609271731
Iteration: 14, Func. Count: 168, Neg. LLF: 166.14683534214592
Iteration: 15, Func. Count: 179, Neg. LLF: 166.0467649986627
Iteration: 16, Func. Count: 190, Neg. LLF: 165.9320361845565
Iteration: 17, Func. Count: 201, Neg. LLF: 165.9161414751305
Iteration: 18, Func. Count: 213, Neg. LLF: 165.67403253864336
Iteration: 19, Func. Count: 224, Neg. LLF: 165.6903897285529
Iteration: 20, Func. Count: 236, Neg. LLF: 165.53218876708576
Iteration: 21, Func. Count: 248, Neg. LLF: 165.03522018196892
Iteration: 22, Func. Count: 259, Neg. LLF: 167.72319448283721
Iteration: 23, Func. Count: 272, Neg. LLF: 164.9690549532017
Iteration: 24, Func. Count: 283, Neg. LLF: 164.94203428567803
Iteration: 25, Func. Count: 294, Neg. LLF: 164.93921639359345
Iteration: 26, Func. Count: 305, Neg. LLF: 164.93908599164976
Iteration: 27, Func. Count: 316, Neg. LLF: 164.93907920118386
Iteration: 28, Func. Count: 326, Neg. LLF: 164.9390796431662
Optimization terminated successfully (Exit mode 0)
Current function value: 164.93907920118386
Iterations: 28
Function evaluations: 326
Gradient evaluations: 28
Iteration: 1, Func. Count: 13, Neg. LLF: 1818.0940361357477
Iteration: 2, Func. Count: 26, Neg. LLF: 388.4713337404152
Iteration: 3, Func. Count: 39, Neg. LLF: 197.6993109095458
Iteration: 4, Func. Count: 52, Neg. LLF: 193.7127298639044
Iteration: 5, Func. Count: 65, Neg. LLF: 204.48456031736166
Iteration: 6, Func. Count: 78, Neg. LLF: 180.03671287437075
Iteration: 7, Func. Count: 91, Neg. LLF: 167.89638030881102
Iteration: 8, Func. Count: 104, Neg. LLF: 165.10418928031885
Iteration: 9, Func. Count: 116, Neg. LLF: 165.1513673636914
Iteration: 10, Func. Count: 129, Neg. LLF: 222.6145679612157
Iteration: 11, Func. Count: 142, Neg. LLF: 164.6768097772797
Iteration: 12, Func. Count: 155, Neg. LLF: 164.12152162966797
Iteration: 13, Func. Count: 167, Neg. LLF: 163.70833135320592
Iteration: 14, Func. Count: 179, Neg. LLF: 163.68603727813564
Iteration: 15, Func. Count: 192, Neg. LLF: 163.52754422616704
Iteration: 16, Func. Count: 204, Neg. LLF: 163.50073311323584
Iteration: 17, Func. Count: 216, Neg. LLF: 163.48225978369646
Iteration: 18, Func. Count: 228, Neg. LLF: 163.47466667925676
Iteration: 19, Func. Count: 240, Neg. LLF: 163.4738688534722
Iteration: 20, Func. Count: 252, Neg. LLF: 163.47353217652235
Iteration: 21, Func. Count: 264, Neg. LLF: 163.47326478496586
Iteration: 22, Func. Count: 276, Neg. LLF: 163.4731312286572
Iteration: 23, Func. Count: 288, Neg. LLF: 163.47310809960194
Iteration: 24, Func. Count: 300, Neg. LLF: 163.4731068659472
Iteration: 25, Func. Count: 311, Neg. LLF: 163.47310686593693
Optimization terminated successfully (Exit mode 0)
Current function value: 163.4731068659472
Iterations: 25
Function evaluations: 311
Gradient evaluations: 25
Iteration: 1, Func. Count: 10, Neg. LLF: 174.28822116751178
Iteration: 2, Func. Count: 21, Neg. LLF: 181.52067390158217
Iteration: 3, Func. Count: 32, Neg. LLF: 171.1197396113083
Iteration: 4, Func. Count: 41, Neg. LLF: 171.15936238249876
Iteration: 5, Func. Count: 51, Neg. LLF: 171.1601331536107
Iteration: 6, Func. Count: 61, Neg. LLF: 170.72430089961168
Iteration: 7, Func. Count: 70, Neg. LLF: 170.66091935225822
Iteration: 8, Func. Count: 79, Neg. LLF: 170.57194682199258
Iteration: 9, Func. Count: 88, Neg. LLF: 170.4556902797698
Iteration: 10, Func. Count: 97, Neg. LLF: 170.19897204403293
Iteration: 11, Func. Count: 106, Neg. LLF: 169.6555415943421
Iteration: 12, Func. Count: 115, Neg. LLF: 170.05931281956867
Iteration: 13, Func. Count: 125, Neg. LLF: 171.15962877404525
Iteration: 14, Func. Count: 135, Neg. LLF: 172.4025622954975
Iteration: 15, Func. Count: 145, Neg. LLF: 166.58251521465834
Iteration: 16, Func. Count: 154, Neg. LLF: 166.5741322894222
Iteration: 17, Func. Count: 164, Neg. LLF: 166.40333041054393
Iteration: 18, Func. Count: 173, Neg. LLF: 166.3924282563944
Iteration: 19, Func. Count: 182, Neg. LLF: 166.3922582821594
Iteration: 20, Func. Count: 191, Neg. LLF: 166.39221620669537
Iteration: 21, Func. Count: 200, Neg. LLF: 166.39216956249922
Iteration: 22, Func. Count: 209, Neg. LLF: 166.39215857022293
Iteration: 23, Func. Count: 218, Neg. LLF: 166.39215686245805
Iteration: 24, Func. Count: 226, Neg. LLF: 166.3921568624582
Optimization terminated successfully (Exit mode 0)
Current function value: 166.39215686245805
Iterations: 24
Function evaluations: 226
Gradient evaluations: 24
Iteration: 1, Func. Count: 11, Neg. LLF: 359.598552798496
Iteration: 2, Func. Count: 22, Neg. LLF: 189.43173809041764
Iteration: 3, Func. Count: 33, Neg. LLF: 171.40280250894673
Iteration: 4, Func. Count: 44, Neg. LLF: 176.47800871564795
Iteration: 5, Func. Count: 55, Neg. LLF: 169.02007826092105
Iteration: 6, Func. Count: 66, Neg. LLF: 167.85535530339246
Iteration: 7, Func. Count: 77, Neg. LLF: 167.4217291051493
Iteration: 8, Func. Count: 88, Neg. LLF: 166.4888253511941
Iteration: 9, Func. Count: 98, Neg. LLF: 167.8729045451528
Iteration: 10, Func. Count: 109, Neg. LLF: 166.37453431222875
Iteration: 11, Func. Count: 119, Neg. LLF: 166.3640235026117
Iteration: 12, Func. Count: 129, Neg. LLF: 166.35296898801568
Iteration: 13, Func. Count: 139, Neg. LLF: 166.3243811849263
Iteration: 14, Func. Count: 149, Neg. LLF: 166.31787617274338
Iteration: 15, Func. Count: 159, Neg. LLF: 166.2894348938838
Iteration: 16, Func. Count: 169, Neg. LLF: 166.26523286766454
Iteration: 17, Func. Count: 179, Neg. LLF: 166.25934348170227
Iteration: 18, Func. Count: 189, Neg. LLF: 166.2541607621531
Iteration: 19, Func. Count: 199, Neg. LLF: 166.2540379526056
Iteration: 20, Func. Count: 209, Neg. LLF: 166.25403520115907
Iteration: 21, Func. Count: 219, Neg. LLF: 166.25403410346635
Iteration: 22, Func. Count: 228, Neg. LLF: 166.25403410348363
Optimization terminated successfully (Exit mode 0)
Current function value: 166.25403410346635
Iterations: 22
Function evaluations: 228
Gradient evaluations: 22
Iteration: 1, Func. Count: 12, Neg. LLF: 362.2295454522018
Iteration: 2, Func. Count: 24, Neg. LLF: 190.64518930774216
Iteration: 3, Func. Count: 36, Neg. LLF: 169.94366868585175
Iteration: 4, Func. Count: 48, Neg. LLF: 179.47344933396712
Iteration: 5, Func. Count: 60, Neg. LLF: 169.7528692113707
Iteration: 6, Func. Count: 72, Neg. LLF: 166.54845591962604
Iteration: 7, Func. Count: 83, Neg. LLF: 168.10344467329944
Iteration: 8, Func. Count: 95, Neg. LLF: 168.0895905111435
Iteration: 9, Func. Count: 108, Neg. LLF: 167.42475908220902
Iteration: 10, Func. Count: 120, Neg. LLF: 165.4890651494552
Iteration: 11, Func. Count: 131, Neg. LLF: 165.27997366215743
Iteration: 12, Func. Count: 142, Neg. LLF: 165.1499666289017
Iteration: 13, Func. Count: 153, Neg. LLF: 167.30075896011175
Iteration: 14, Func. Count: 165, Neg. LLF: 166.07399816281745
Iteration: 15, Func. Count: 177, Neg. LLF: 166.52660437875795
Iteration: 16, Func. Count: 189, Neg. LLF: 165.18790709087594
Iteration: 17, Func. Count: 201, Neg. LLF: 164.90306495501127
Iteration: 18, Func. Count: 212, Neg. LLF: 164.82468958311105
Iteration: 19, Func. Count: 223, Neg. LLF: 164.64433486980985
Iteration: 20, Func. Count: 234, Neg. LLF: 164.446082785447
Iteration: 21, Func. Count: 245, Neg. LLF: 164.3450506237087
Iteration: 22, Func. Count: 256, Neg. LLF: 164.6642936826305
Iteration: 23, Func. Count: 268, Neg. LLF: 164.30382177097226
Iteration: 24, Func. Count: 280, Neg. LLF: 164.25631866658313
Iteration: 25, Func. Count: 291, Neg. LLF: 164.25349212141955
Iteration: 26, Func. Count: 302, Neg. LLF: 164.2532498505375
Iteration: 27, Func. Count: 313, Neg. LLF: 164.2531904714133
Iteration: 28, Func. Count: 324, Neg. LLF: 164.25318521926914
Iteration: 29, Func. Count: 334, Neg. LLF: 164.25318521934415
Optimization terminated successfully (Exit mode 0)
Current function value: 164.25318521926914
Iterations: 29
Function evaluations: 334
Gradient evaluations: 29
Iteration: 1, Func. Count: 13, Neg. LLF: 1617.753876942447
Iteration: 2, Func. Count: 26, Neg. LLF: 1674.8001806240486
Iteration: 3, Func. Count: 39, Neg. LLF: 219.26516586498346
Iteration: 4, Func. Count: 52, Neg. LLF: 176.49059682193757
Iteration: 5, Func. Count: 65, Neg. LLF: 173.9254571481818
Iteration: 6, Func. Count: 78, Neg. LLF: 169.23029613718046
Iteration: 7, Func. Count: 91, Neg. LLF: 167.40957372019125
Iteration: 8, Func. Count: 104, Neg. LLF: 166.11007148189535
Iteration: 9, Func. Count: 117, Neg. LLF: 165.2084802262453
Iteration: 10, Func. Count: 129, Neg. LLF: 165.24138207968397
Iteration: 11, Func. Count: 142, Neg. LLF: 166.3054692439583
Iteration: 12, Func. Count: 155, Neg. LLF: 164.93760196244176
Iteration: 13, Func. Count: 167, Neg. LLF: 164.86578738123697
Iteration: 14, Func. Count: 179, Neg. LLF: 164.7281051677316
Iteration: 15, Func. Count: 191, Neg. LLF: 164.67487191793893
Iteration: 16, Func. Count: 203, Neg. LLF: 168.13020096637953
Iteration: 17, Func. Count: 216, Neg. LLF: 164.81089095522412
Iteration: 18, Func. Count: 229, Neg. LLF: 164.38935071749944
Iteration: 19, Func. Count: 242, Neg. LLF: 164.27795841116682
Iteration: 20, Func. Count: 255, Neg. LLF: 164.25480473485246
Iteration: 21, Func. Count: 267, Neg. LLF: 164.2536962088275
Iteration: 22, Func. Count: 279, Neg. LLF: 164.2534543407236
Iteration: 23, Func. Count: 291, Neg. LLF: 164.25340697404644
Iteration: 24, Func. Count: 303, Neg. LLF: 164.2533432261233
Iteration: 25, Func. Count: 315, Neg. LLF: 164.2532387965882
Iteration: 26, Func. Count: 327, Neg. LLF: 164.25319426771168
Iteration: 27, Func. Count: 339, Neg. LLF: 164.2531855804894
Iteration: 28, Func. Count: 350, Neg. LLF: 164.25318602152706
Optimization terminated successfully (Exit mode 0)
Current function value: 164.2531855804894
Iterations: 28
Function evaluations: 350
Gradient evaluations: 28
Iteration: 1, Func. Count: 14, Neg. LLF: 1867.3677620601754
Iteration: 2, Func. Count: 28, Neg. LLF: 367.4988939141174
Iteration: 3, Func. Count: 42, Neg. LLF: 194.72724400616588
Iteration: 4, Func. Count: 56, Neg. LLF: 166.7779541136349
Iteration: 5, Func. Count: 69, Neg. LLF: 167.9550321788207
Iteration: 6, Func. Count: 84, Neg. LLF: 192.90458906471648
Iteration: 7, Func. Count: 99, Neg. LLF: 165.03181828729444
Iteration: 8, Func. Count: 113, Neg. LLF: 163.2379187164182
Iteration: 9, Func. Count: 127, Neg. LLF: 162.33862343549163
Iteration: 10, Func. Count: 140, Neg. LLF: 162.1909080870384
Iteration: 11, Func. Count: 153, Neg. LLF: 162.14028406999645
Iteration: 12, Func. Count: 166, Neg. LLF: 162.14397631152266
Iteration: 13, Func. Count: 180, Neg. LLF: 162.10971695385055
Iteration: 14, Func. Count: 194, Neg. LLF: 162.107735817905
Iteration: 15, Func. Count: 207, Neg. LLF: 162.1075142406731
Iteration: 16, Func. Count: 220, Neg. LLF: 162.10722502281624
Iteration: 17, Func. Count: 233, Neg. LLF: 162.1070288429651
Iteration: 18, Func. Count: 246, Neg. LLF: 162.1069756035346
Iteration: 19, Func. Count: 259, Neg. LLF: 162.1069660428937
Iteration: 20, Func. Count: 272, Neg. LLF: 162.1069603033111
Iteration: 21, Func. Count: 285, Neg. LLF: 162.1069545113105
Iteration: 22, Func. Count: 298, Neg. LLF: 162.10695255916886
Iteration: 23, Func. Count: 310, Neg. LLF: 162.1069525591146
Optimization terminated successfully (Exit mode 0)
Current function value: 162.10695255916886
Iterations: 23
Function evaluations: 310
Gradient evaluations: 23
Iteration: 1, Func. Count: 11, Neg. LLF: 172.19991750137436
Iteration: 2, Func. Count: 22, Neg. LLF: 177.37217208377163
Iteration: 3, Func. Count: 34, Neg. LLF: 169.9204627006251
Iteration: 4, Func. Count: 44, Neg. LLF: 219.59157225342875
Iteration: 5, Func. Count: 56, Neg. LLF: 169.70362972478384
Iteration: 6, Func. Count: 66, Neg. LLF: 169.87463533857138
Iteration: 7, Func. Count: 77, Neg. LLF: 170.19938968924183
Iteration: 8, Func. Count: 88, Neg. LLF: 169.51812664905606
Iteration: 9, Func. Count: 98, Neg. LLF: 169.4968042993884
Iteration: 10, Func. Count: 108, Neg. LLF: 169.2739172581133
Iteration: 11, Func. Count: 118, Neg. LLF: 168.36544751396937
Iteration: 12, Func. Count: 128, Neg. LLF: 168.62057296952102
Iteration: 13, Func. Count: 139, Neg. LLF: 167.43094842744657
Iteration: 14, Func. Count: 149, Neg. LLF: 172.1483996539333
Iteration: 15, Func. Count: 160, Neg. LLF: 167.6550994650565
Iteration: 16, Func. Count: 171, Neg. LLF: 165.95377219849715
Iteration: 17, Func. Count: 181, Neg. LLF: 165.87732568531146
Iteration: 18, Func. Count: 191, Neg. LLF: 165.822580337839
Iteration: 19, Func. Count: 201, Neg. LLF: 165.80691137128474
Iteration: 20, Func. Count: 211, Neg. LLF: 165.7923451462174
Iteration: 21, Func. Count: 221, Neg. LLF: 165.7889545980536
Iteration: 22, Func. Count: 231, Neg. LLF: 165.78871297293603
Iteration: 23, Func. Count: 241, Neg. LLF: 165.78870405448137
Iteration: 24, Func. Count: 251, Neg. LLF: 165.78870309961087
Optimization terminated successfully (Exit mode 0)
Current function value: 165.78870309961087
Iterations: 24
Function evaluations: 251
Gradient evaluations: 24
Iteration: 1, Func. Count: 12, Neg. LLF: 359.77890947513805
Iteration: 2, Func. Count: 24, Neg. LLF: 201.3206604303896
Iteration: 3, Func. Count: 36, Neg. LLF: 177.41736673772243
Iteration: 4, Func. Count: 48, Neg. LLF: 170.37726230631026
Iteration: 5, Func. Count: 60, Neg. LLF: 170.7291208465306
Iteration: 6, Func. Count: 72, Neg. LLF: 170.53674849774825
Iteration: 7, Func. Count: 84, Neg. LLF: 166.74852002161296
Iteration: 8, Func. Count: 95, Neg. LLF: 167.63676215927845
Iteration: 9, Func. Count: 107, Neg. LLF: 166.55691629488211
Iteration: 10, Func. Count: 118, Neg. LLF: 166.55540439252883
Iteration: 11, Func. Count: 130, Neg. LLF: 166.34760266242301
Iteration: 12, Func. Count: 141, Neg. LLF: 166.28038760048432
Iteration: 13, Func. Count: 152, Neg. LLF: 165.9889016956869
Iteration: 14, Func. Count: 163, Neg. LLF: 165.92917599373916
Iteration: 15, Func. Count: 174, Neg. LLF: 165.83150113356425
Iteration: 16, Func. Count: 185, Neg. LLF: 165.81940629609292
Iteration: 17, Func. Count: 196, Neg. LLF: 165.8128051103186
Iteration: 18, Func. Count: 207, Neg. LLF: 165.7921730832203
Iteration: 19, Func. Count: 218, Neg. LLF: 165.7894276333421
Iteration: 20, Func. Count: 229, Neg. LLF: 165.78888690665593
Iteration: 21, Func. Count: 240, Neg. LLF: 165.7888326999682
Iteration: 22, Func. Count: 251, Neg. LLF: 165.78873950307812
Iteration: 23, Func. Count: 262, Neg. LLF: 165.78873446598766
Iteration: 24, Func. Count: 273, Neg. LLF: 165.79575205345773
Iteration: 25, Func. Count: 286, Neg. LLF: 165.78871615829172
Iteration: 26, Func. Count: 297, Neg. LLF: 165.78870417045985
Iteration: 27, Func. Count: 308, Neg. LLF: 165.78914662533893
Optimization terminated successfully (Exit mode 0)
Current function value: 165.78870330092587
Iterations: 28
Function evaluations: 310
Gradient evaluations: 27
Iteration: 1, Func. Count: 13, Neg. LLF: 362.1649072902625
Iteration: 2, Func. Count: 26, Neg. LLF: 197.56495317646286
Iteration: 3, Func. Count: 39, Neg. LLF: 173.4809651641517
Iteration: 4, Func. Count: 52, Neg. LLF: 171.17108029236934
Iteration: 5, Func. Count: 65, Neg. LLF: 177.0675550313789
Iteration: 6, Func. Count: 78, Neg. LLF: 166.69259133482134
Iteration: 7, Func. Count: 90, Neg. LLF: 167.07459114666142
Iteration: 8, Func. Count: 103, Neg. LLF: 169.14174206476974
Iteration: 9, Func. Count: 116, Neg. LLF: 166.43575440808678
Iteration: 10, Func. Count: 129, Neg. LLF: 165.5895964352889
Iteration: 11, Func. Count: 141, Neg. LLF: 165.3621390433942
Iteration: 12, Func. Count: 153, Neg. LLF: 165.21003399882332
Iteration: 13, Func. Count: 165, Neg. LLF: 165.0921779899721
Iteration: 14, Func. Count: 177, Neg. LLF: 164.97511187336616
Iteration: 15, Func. Count: 189, Neg. LLF: 164.8129157934784
Iteration: 16, Func. Count: 201, Neg. LLF: 164.69754579929253
Iteration: 17, Func. Count: 213, Neg. LLF: 164.4513344317212
Iteration: 18, Func. Count: 225, Neg. LLF: 164.64923379703473
Iteration: 19, Func. Count: 238, Neg. LLF: 180.53189902474494
Iteration: 20, Func. Count: 251, Neg. LLF: 164.39729239466135
Iteration: 21, Func. Count: 264, Neg. LLF: 164.25377106363442
Iteration: 22, Func. Count: 276, Neg. LLF: 164.2533104319137
Iteration: 23, Func. Count: 288, Neg. LLF: 164.2531966076756
Iteration: 24, Func. Count: 300, Neg. LLF: 164.25319543367516
Iteration: 25, Func. Count: 313, Neg. LLF: 164.25318584771864
Iteration: 26, Func. Count: 325, Neg. LLF: 164.25318516827508
Optimization terminated successfully (Exit mode 0)
Current function value: 164.25318516827508
Iterations: 26
Function evaluations: 325
Gradient evaluations: 26
Iteration: 1, Func. Count: 14, Neg. LLF: 1621.1278904537396
Iteration: 2, Func. Count: 28, Neg. LLF: 777.2817425592457
Iteration: 3, Func. Count: 42, Neg. LLF: 202.25411267108566
Iteration: 4, Func. Count: 56, Neg. LLF: 173.90523444368222
Iteration: 5, Func. Count: 70, Neg. LLF: 170.6689450135004
Iteration: 6, Func. Count: 84, Neg. LLF: 167.56424397440128
Iteration: 7, Func. Count: 98, Neg. LLF: 167.98281086798994
Iteration: 8, Func. Count: 112, Neg. LLF: 166.29034004142326
Iteration: 9, Func. Count: 126, Neg. LLF: 165.61272744654698
Iteration: 10, Func. Count: 140, Neg. LLF: 172.29810079250586
Iteration: 11, Func. Count: 154, Neg. LLF: 165.1154148589297
Iteration: 12, Func. Count: 167, Neg. LLF: 164.8097446230681
Iteration: 13, Func. Count: 180, Neg. LLF: 165.92069784607247
Iteration: 14, Func. Count: 194, Neg. LLF: 164.57602125327625
Iteration: 15, Func. Count: 207, Neg. LLF: 164.49009111942647
Iteration: 16, Func. Count: 221, Neg. LLF: 164.32819690589812
Iteration: 17, Func. Count: 234, Neg. LLF: 164.3065552267366
Iteration: 18, Func. Count: 247, Neg. LLF: 164.26778825822365
Iteration: 19, Func. Count: 260, Neg. LLF: 164.25683638228
Iteration: 20, Func. Count: 273, Neg. LLF: 164.25488880161046
Iteration: 21, Func. Count: 286, Neg. LLF: 164.2546329964349
Iteration: 22, Func. Count: 299, Neg. LLF: 164.25438360755354
Iteration: 23, Func. Count: 312, Neg. LLF: 164.25368508255903
Iteration: 24, Func. Count: 325, Neg. LLF: 164.25331348618136
Iteration: 25, Func. Count: 338, Neg. LLF: 164.25319724760087
Iteration: 26, Func. Count: 351, Neg. LLF: 164.25318555832968
Iteration: 27, Func. Count: 363, Neg. LLF: 164.25318599854498
Optimization terminated successfully (Exit mode 0)
Current function value: 164.25318555832968
Iterations: 27
Function evaluations: 363
Gradient evaluations: 27
Iteration: 1, Func. Count: 15, Neg. LLF: 1865.4999395374068
Iteration: 2, Func. Count: 30, Neg. LLF: 612.7424659651216
Iteration: 3, Func. Count: 45, Neg. LLF: 200.94558573252797
Iteration: 4, Func. Count: 60, Neg. LLF: 165.61428472209448
Iteration: 5, Func. Count: 74, Neg. LLF: 165.71606527079985
Iteration: 6, Func. Count: 90, Neg. LLF: 174.6639302479078
Iteration: 7, Func. Count: 107, Neg. LLF: 163.75075244712025
Iteration: 8, Func. Count: 122, Neg. LLF: 162.64102760616387
Iteration: 9, Func. Count: 136, Neg. LLF: 162.64834855806518
Iteration: 10, Func. Count: 151, Neg. LLF: 164.51829802513532
Iteration: 11, Func. Count: 166, Neg. LLF: 162.36502712279113
Iteration: 12, Func. Count: 180, Neg. LLF: 162.20667650874748
Iteration: 13, Func. Count: 194, Neg. LLF: 162.1552673706305
Iteration: 14, Func. Count: 208, Neg. LLF: 162.1204528135215
Iteration: 15, Func. Count: 222, Neg. LLF: 162.1107114026585
Iteration: 16, Func. Count: 236, Neg. LLF: 162.10909168548773
Iteration: 17, Func. Count: 250, Neg. LLF: 162.10815101657312
Iteration: 18, Func. Count: 264, Neg. LLF: 162.10724224234278
Iteration: 19, Func. Count: 278, Neg. LLF: 162.1069903844699
Iteration: 20, Func. Count: 292, Neg. LLF: 162.1069546853313
Iteration: 21, Func. Count: 306, Neg. LLF: 162.10695337328517
Iteration: 22, Func. Count: 319, Neg. LLF: 162.10695337339797
Optimization terminated successfully (Exit mode 0)
Current function value: 162.10695337328517
Iterations: 22
Function evaluations: 319
Gradient evaluations: 22
Iteration: 1, Func. Count: 12, Neg. LLF: 172.23211245264702
Iteration: 2, Func. Count: 24, Neg. LLF: 178.35512860741255
Iteration: 3, Func. Count: 37, Neg. LLF: 169.92928530739948
Iteration: 4, Func. Count: 48, Neg. LLF: 228.57703748766363
Iteration: 5, Func. Count: 61, Neg. LLF: 169.7354992238542
Iteration: 6, Func. Count: 72, Neg. LLF: 169.86230441545723
Iteration: 7, Func. Count: 84, Neg. LLF: 170.20510318002326
Iteration: 8, Func. Count: 96, Neg. LLF: 169.50879386234433
Iteration: 9, Func. Count: 107, Neg. LLF: 169.4888837769165
Iteration: 10, Func. Count: 118, Neg. LLF: 169.34375560003238
Iteration: 11, Func. Count: 129, Neg. LLF: 168.15953778913374
Iteration: 12, Func. Count: 140, Neg. LLF: 168.47808238601328
Iteration: 13, Func. Count: 152, Neg. LLF: 168.63885471799838
Iteration: 14, Func. Count: 164, Neg. LLF: 190.88890996595228
Iteration: 15, Func. Count: 176, Neg. LLF: 166.13289573171608
Iteration: 16, Func. Count: 187, Neg. LLF: 165.87157546185114
Iteration: 17, Func. Count: 198, Neg. LLF: 228.318662960151
Iteration: 18, Func. Count: 210, Neg. LLF: 165.6168654407078
Iteration: 19, Func. Count: 221, Neg. LLF: 165.60893065204206
Iteration: 20, Func. Count: 233, Neg. LLF: 165.5751133804505
Iteration: 21, Func. Count: 244, Neg. LLF: 165.55864665755192
Iteration: 22, Func. Count: 255, Neg. LLF: 165.5539311330102
Iteration: 23, Func. Count: 266, Neg. LLF: 165.55373006989564
Iteration: 24, Func. Count: 277, Neg. LLF: 165.55371335296726
Iteration: 25, Func. Count: 288, Neg. LLF: 165.5537094793832
Iteration: 26, Func. Count: 299, Neg. LLF: 165.55370540307118
Iteration: 27, Func. Count: 309, Neg. LLF: 165.55370540309423
Optimization terminated successfully (Exit mode 0)
Current function value: 165.55370540307118
Iterations: 27
Function evaluations: 309
Gradient evaluations: 27
Iteration: 1, Func. Count: 13, Neg. LLF: 275.27842464678685
Iteration: 2, Func. Count: 26, Neg. LLF: 181.7316472764998
Iteration: 3, Func. Count: 39, Neg. LLF: 217.51694712309492
Iteration: 4, Func. Count: 52, Neg. LLF: 174.42996266218228
Iteration: 5, Func. Count: 65, Neg. LLF: 171.0807934374415
Iteration: 6, Func. Count: 78, Neg. LLF: 170.61668114444453
Iteration: 7, Func. Count: 91, Neg. LLF: 170.27314242476973
Iteration: 8, Func. Count: 104, Neg. LLF: 167.43662819302682
Iteration: 9, Func. Count: 117, Neg. LLF: 178.62008301096967
Iteration: 10, Func. Count: 130, Neg. LLF: 166.65003897944047
Iteration: 11, Func. Count: 142, Neg. LLF: 166.61883730204173
Iteration: 12, Func. Count: 154, Neg. LLF: 166.80133855296882
Iteration: 13, Func. Count: 167, Neg. LLF: 166.36511058505567
Iteration: 14, Func. Count: 179, Neg. LLF: 166.2438908327114
Iteration: 15, Func. Count: 191, Neg. LLF: 165.87325862971997
Iteration: 16, Func. Count: 203, Neg. LLF: 165.78723700640845
Iteration: 17, Func. Count: 215, Neg. LLF: 165.7035490513497
Iteration: 18, Func. Count: 227, Neg. LLF: 165.63234933247247
Iteration: 19, Func. Count: 239, Neg. LLF: 165.60766969292334
Iteration: 20, Func. Count: 251, Neg. LLF: 165.5757975338552
Iteration: 21, Func. Count: 263, Neg. LLF: 165.56635474586744
Iteration: 22, Func. Count: 275, Neg. LLF: 165.55866672518715
Iteration: 23, Func. Count: 287, Neg. LLF: 165.5563298611687
Iteration: 24, Func. Count: 299, Neg. LLF: 165.55506087196
Iteration: 25, Func. Count: 311, Neg. LLF: 165.55305583175442
Iteration: 26, Func. Count: 323, Neg. LLF: 165.5891412073869
Iteration: 27, Func. Count: 336, Neg. LLF: 165.71916697535997
Iteration: 28, Func. Count: 350, Neg. LLF: 165.56481244736932
Iteration: 29, Func. Count: 364, Neg. LLF: 165.55497521134336
Iteration: 30, Func. Count: 377, Neg. LLF: 165.55444935500964
Iteration: 31, Func. Count: 390, Neg. LLF: 165.55378566279262
Iteration: 32, Func. Count: 402, Neg. LLF: 165.5537536955768
Iteration: 33, Func. Count: 414, Neg. LLF: 165.55372139972496
Iteration: 34, Func. Count: 426, Neg. LLF: 165.55370741602704
Iteration: 35, Func. Count: 438, Neg. LLF: 165.55370527760948
Iteration: 36, Func. Count: 449, Neg. LLF: 165.55370536259423
Optimization terminated successfully (Exit mode 0)
Current function value: 165.55370527760948
Iterations: 37
Function evaluations: 449
Gradient evaluations: 36
Iteration: 1, Func. Count: 14, Neg. LLF: 1387.094121794739
Iteration: 2, Func. Count: 29, Neg. LLF: 386.49846118828646
Iteration: 3, Func. Count: 43, Neg. LLF: 399.5752917497995
Iteration: 4, Func. Count: 57, Neg. LLF: 251.1769960489655
Iteration: 5, Func. Count: 71, Neg. LLF: 178.72905363482295
Iteration: 6, Func. Count: 85, Neg. LLF: 182.88375380508415
Iteration: 7, Func. Count: 99, Neg. LLF: 170.8899196133495
Iteration: 8, Func. Count: 113, Neg. LLF: 168.627457941422
Iteration: 9, Func. Count: 127, Neg. LLF: 168.1929151479641
Iteration: 10, Func. Count: 141, Neg. LLF: 166.7530132984759
Iteration: 11, Func. Count: 155, Neg. LLF: 166.68363214784839
Iteration: 12, Func. Count: 169, Neg. LLF: 165.4498548866247
Iteration: 13, Func. Count: 183, Neg. LLF: 164.88525771169049
Iteration: 14, Func. Count: 196, Neg. LLF: 164.8277458112686
Iteration: 15, Func. Count: 209, Neg. LLF: 164.80638857814068
Iteration: 16, Func. Count: 222, Neg. LLF: 164.68116757712997
Iteration: 17, Func. Count: 235, Neg. LLF: 164.5231785233636
Iteration: 18, Func. Count: 248, Neg. LLF: 164.4275425704582
Iteration: 19, Func. Count: 261, Neg. LLF: 164.47940871810468
Iteration: 20, Func. Count: 275, Neg. LLF: 164.3864591550209
Iteration: 21, Func. Count: 289, Neg. LLF: 164.27172827591204
Iteration: 22, Func. Count: 302, Neg. LLF: 164.2613263630045
Iteration: 23, Func. Count: 315, Neg. LLF: 164.25473404537263
Iteration: 24, Func. Count: 328, Neg. LLF: 164.25362802191393
Iteration: 25, Func. Count: 341, Neg. LLF: 164.25319979387305
Iteration: 26, Func. Count: 354, Neg. LLF: 164.2531860005978
Iteration: 27, Func. Count: 367, Neg. LLF: 164.2531852301078
Optimization terminated successfully (Exit mode 0)
Current function value: 164.2531852301078
Iterations: 27
Function evaluations: 367
Gradient evaluations: 27
Iteration: 1, Func. Count: 15, Neg. LLF: 1682.404938521032
Iteration: 2, Func. Count: 30, Neg. LLF: 1386.016563529008
Iteration: 3, Func. Count: 45, Neg. LLF: 683.6253814085421
Iteration: 4, Func. Count: 60, Neg. LLF: 212.18006914539916
Iteration: 5, Func. Count: 75, Neg. LLF: 181.50645464082916
Iteration: 6, Func. Count: 90, Neg. LLF: 220.32539484534487
Iteration: 7, Func. Count: 105, Neg. LLF: 177.02967154929846
Iteration: 8, Func. Count: 120, Neg. LLF: 179.92182459577884
Iteration: 9, Func. Count: 135, Neg. LLF: 178.28176429110144
Iteration: 10, Func. Count: 150, Neg. LLF: 179.08259532031462
Iteration: 11, Func. Count: 165, Neg. LLF: 173.7354991412906
Iteration: 12, Func. Count: 180, Neg. LLF: 167.49790391300334
Iteration: 13, Func. Count: 195, Neg. LLF: 167.9369617940906
Iteration: 14, Func. Count: 210, Neg. LLF: 166.310084404249
Iteration: 15, Func. Count: 225, Neg. LLF: 167.53257627894632
Iteration: 16, Func. Count: 240, Neg. LLF: 166.24585947289398
Iteration: 17, Func. Count: 255, Neg. LLF: 165.35819524922528
Iteration: 18, Func. Count: 269, Neg. LLF: 165.201264014785
Iteration: 19, Func. Count: 283, Neg. LLF: 165.13428842282156
Iteration: 20, Func. Count: 297, Neg. LLF: 164.9809437547365
Iteration: 21, Func. Count: 311, Neg. LLF: 165.83282858973712
Iteration: 22, Func. Count: 326, Neg. LLF: 165.20085275056667
Iteration: 23, Func. Count: 341, Neg. LLF: 164.56183423121402
Iteration: 24, Func. Count: 355, Neg. LLF: 164.73419891342286
Iteration: 25, Func. Count: 370, Neg. LLF: 164.45550562713558
Iteration: 26, Func. Count: 384, Neg. LLF: 164.59750614374866
Iteration: 27, Func. Count: 399, Neg. LLF: 164.3331676469268
Iteration: 28, Func. Count: 414, Neg. LLF: 164.25562837465208
Iteration: 29, Func. Count: 428, Neg. LLF: 164.2542176872893
Iteration: 30, Func. Count: 442, Neg. LLF: 164.25366179763344
Iteration: 31, Func. Count: 456, Neg. LLF: 164.25329289084843
Iteration: 32, Func. Count: 470, Neg. LLF: 164.25321342227937
Iteration: 33, Func. Count: 484, Neg. LLF: 164.25318678576875
Iteration: 34, Func. Count: 498, Neg. LLF: 164.25318538526705
Iteration: 35, Func. Count: 511, Neg. LLF: 164.25318582569568
Optimization terminated successfully (Exit mode 0)
Current function value: 164.25318538526705
Iterations: 35
Function evaluations: 511
Gradient evaluations: 35
Iteration: 1, Func. Count: 16, Neg. LLF: 1925.7211786276603
Iteration: 2, Func. Count: 32, Neg. LLF: 870.1754374519928
Iteration: 3, Func. Count: 48, Neg. LLF: 238.6397534097646
Iteration: 4, Func. Count: 64, Neg. LLF: 172.53035144692862
Iteration: 5, Func. Count: 80, Neg. LLF: 167.822353530584
Iteration: 6, Func. Count: 96, Neg. LLF: 164.73034091904822
Iteration: 7, Func. Count: 111, Neg. LLF: 164.6562675995288
Iteration: 8, Func. Count: 127, Neg. LLF: 165.9005442604787
Iteration: 9, Func. Count: 143, Neg. LLF: 165.21434473961858
Iteration: 10, Func. Count: 159, Neg. LLF: 164.3426159725295
Iteration: 11, Func. Count: 175, Neg. LLF: 164.44301386396688
Iteration: 12, Func. Count: 191, Neg. LLF: 163.26274812877148
Iteration: 13, Func. Count: 207, Neg. LLF: 162.70280651804492
Iteration: 14, Func. Count: 223, Neg. LLF: 162.2626310155637
Iteration: 15, Func. Count: 238, Neg. LLF: 162.2176356414786
Iteration: 16, Func. Count: 253, Neg. LLF: 162.16091513639586
Iteration: 17, Func. Count: 268, Neg. LLF: 162.1230433875083
Iteration: 18, Func. Count: 283, Neg. LLF: 162.11750927325303
Iteration: 19, Func. Count: 298, Neg. LLF: 162.1146360057659
Iteration: 20, Func. Count: 313, Neg. LLF: 162.10747608793926
Iteration: 21, Func. Count: 328, Neg. LLF: 162.1070205831942
Iteration: 22, Func. Count: 343, Neg. LLF: 162.10696432038517
Iteration: 23, Func. Count: 358, Neg. LLF: 162.10695631848765
Iteration: 24, Func. Count: 373, Neg. LLF: 162.10695284476287
Iteration: 25, Func. Count: 387, Neg. LLF: 162.1069528449305
Optimization terminated successfully (Exit mode 0)
Current function value: 162.10695284476287
Iterations: 25
Function evaluations: 387
Gradient evaluations: 25
Iteration: 1, Func. Count: 8, Neg. LLF: 2514.5639315982758
Iteration: 2, Func. Count: 16, Neg. LLF: 317.8189418379034
Iteration: 3, Func. Count: 24, Neg. LLF: 204.88532402737957
Iteration: 4, Func. Count: 32, Neg. LLF: 189.7410478216034
Iteration: 5, Func. Count: 40, Neg. LLF: 185.79879158414053
Iteration: 6, Func. Count: 48, Neg. LLF: 172.8519343888697
Iteration: 7, Func. Count: 56, Neg. LLF: 169.56888872787385
Iteration: 8, Func. Count: 64, Neg. LLF: 167.7177574037865
Iteration: 9, Func. Count: 72, Neg. LLF: 169.95829010228312
Iteration: 10, Func. Count: 80, Neg. LLF: 166.5010844533293
Iteration: 11, Func. Count: 87, Neg. LLF: 166.04104263779405
Iteration: 12, Func. Count: 94, Neg. LLF: 165.35416719677573
Iteration: 13, Func. Count: 101, Neg. LLF: 165.21816734677301
Iteration: 14, Func. Count: 108, Neg. LLF: 165.18618014535352
Iteration: 15, Func. Count: 115, Neg. LLF: 165.1444867356348
Iteration: 16, Func. Count: 122, Neg. LLF: 165.1340122639873
Iteration: 17, Func. Count: 129, Neg. LLF: 165.12308806576033
Iteration: 18, Func. Count: 136, Neg. LLF: 165.1108821647411
Iteration: 19, Func. Count: 143, Neg. LLF: 165.10157640757123
Iteration: 20, Func. Count: 150, Neg. LLF: 165.10037446217913
Iteration: 21, Func. Count: 157, Neg. LLF: 165.1002009981804
Iteration: 22, Func. Count: 164, Neg. LLF: 165.1001971166107
Iteration: 23, Func. Count: 170, Neg. LLF: 165.10019711653567
Optimization terminated successfully (Exit mode 0)
Current function value: 165.1001971166107
Iterations: 23
Function evaluations: 170
Gradient evaluations: 23
Iteration: 1, Func. Count: 5, Neg. LLF: 168.09762119738173
Iteration: 2, Func. Count: 9, Neg. LLF: 167.95445664870024
Iteration: 3, Func. Count: 14, Neg. LLF: 167.56607887038308
Iteration: 4, Func. Count: 18, Neg. LLF: 167.54415435212698
Iteration: 5, Func. Count: 22, Neg. LLF: 167.5195870593064
Iteration: 6, Func. Count: 26, Neg. LLF: 167.51706027108713
Iteration: 7, Func. Count: 30, Neg. LLF: 167.51458213028621
Iteration: 8, Func. Count: 34, Neg. LLF: 167.50398460420297
Iteration: 9, Func. Count: 38, Neg. LLF: 167.49908570481142
Iteration: 10, Func. Count: 42, Neg. LLF: 167.49771468198412
Iteration: 11, Func. Count: 46, Neg. LLF: 167.49750509192714
Iteration: 12, Func. Count: 50, Neg. LLF: 167.4974964767162
Iteration: 13, Func. Count: 53, Neg. LLF: 167.49749647671686
Optimization terminated successfully (Exit mode 0)
Current function value: 167.4974964767162
Iterations: 13
Function evaluations: 53
Gradient evaluations: 13
Iteration: 1, Func. Count: 6, Neg. LLF: 394.5741953283414
Iteration: 2, Func. Count: 12, Neg. LLF: 167.25031640361973
Iteration: 3, Func. Count: 18, Neg. LLF: 165.78549070338906
Iteration: 4, Func. Count: 24, Neg. LLF: 165.49028933516874
Iteration: 5, Func. Count: 29, Neg. LLF: 165.43225384675554
Iteration: 6, Func. Count: 34, Neg. LLF: 165.135963206909
Iteration: 7, Func. Count: 39, Neg. LLF: 164.59345675335845
Iteration: 8, Func. Count: 44, Neg. LLF: 166.9102300836197
Iteration: 9, Func. Count: 51, Neg. LLF: 164.15816907138873
Iteration: 10, Func. Count: 56, Neg. LLF: 163.92824572561432
Iteration: 11, Func. Count: 61, Neg. LLF: 163.86797613526844
Iteration: 12, Func. Count: 66, Neg. LLF: 163.794465317879
Iteration: 13, Func. Count: 71, Neg. LLF: 163.79254120608942
Iteration: 14, Func. Count: 76, Neg. LLF: 163.79194800178024
Iteration: 15, Func. Count: 81, Neg. LLF: 163.79191959756383
Iteration: 16, Func. Count: 86, Neg. LLF: 163.79191861232187
Optimization terminated successfully (Exit mode 0)
Current function value: 163.79191861232187
Iterations: 16
Function evaluations: 86
Gradient evaluations: 16
Iteration: 1, Func. Count: 7, Neg. LLF: 399.34123230960125
Iteration: 2, Func. Count: 14, Neg. LLF: 165.7512463689572
Iteration: 3, Func. Count: 21, Neg. LLF: 164.93415372153012
Iteration: 4, Func. Count: 27, Neg. LLF: 165.53611007664117
Iteration: 5, Func. Count: 34, Neg. LLF: 164.69342727824127
Iteration: 6, Func. Count: 40, Neg. LLF: 164.52315667549007
Iteration: 7, Func. Count: 46, Neg. LLF: 164.4183496463603
Iteration: 8, Func. Count: 53, Neg. LLF: 166.282311389898
Iteration: 9, Func. Count: 60, Neg. LLF: 163.8161712278448
Iteration: 10, Func. Count: 67, Neg. LLF: 163.68029280506983
Iteration: 11, Func. Count: 73, Neg. LLF: 163.67706195385284
Iteration: 12, Func. Count: 79, Neg. LLF: 163.67709116450254
Iteration: 13, Func. Count: 86, Neg. LLF: 163.67703325674785
Iteration: 14, Func. Count: 92, Neg. LLF: 163.6770311517991
Iteration: 15, Func. Count: 97, Neg. LLF: 163.677031151782
Optimization terminated successfully (Exit mode 0)
Current function value: 163.6770311517991
Iterations: 15
Function evaluations: 97
Gradient evaluations: 15
Iteration: 1, Func. Count: 8, Neg. LLF: 205.89317281216356
Iteration: 2, Func. Count: 16, Neg. LLF: 169.88888562803814
Iteration: 3, Func. Count: 24, Neg. LLF: 167.3442780033979
Iteration: 4, Func. Count: 32, Neg. LLF: 166.7986464336069
Iteration: 5, Func. Count: 39, Neg. LLF: 170.27622303074523
Iteration: 6, Func. Count: 47, Neg. LLF: 166.7786376016454
Iteration: 7, Func. Count: 55, Neg. LLF: 166.69376134259554
Iteration: 8, Func. Count: 62, Neg. LLF: 166.63098581569494
Iteration: 9, Func. Count: 69, Neg. LLF: 166.27652423004304
Iteration: 10, Func. Count: 76, Neg. LLF: 164.85582378751207
Iteration: 11, Func. Count: 83, Neg. LLF: 165.70095864906773
Iteration: 12, Func. Count: 91, Neg. LLF: 185.21209203533735
Iteration: 13, Func. Count: 99, Neg. LLF: 164.60268395918678
Iteration: 14, Func. Count: 107, Neg. LLF: 163.9739342546562
Iteration: 15, Func. Count: 114, Neg. LLF: 163.95981010182524
Iteration: 16, Func. Count: 121, Neg. LLF: 163.9592490311861
Iteration: 17, Func. Count: 128, Neg. LLF: 163.95913880887505
Iteration: 18, Func. Count: 135, Neg. LLF: 163.9591165130537
Iteration: 19, Func. Count: 142, Neg. LLF: 163.95895411865564
Iteration: 20, Func. Count: 149, Neg. LLF: 163.95683950216807
Iteration: 21, Func. Count: 156, Neg. LLF: 163.8854990865815
Iteration: 22, Func. Count: 163, Neg. LLF: 163.79259165701558
Iteration: 23, Func. Count: 170, Neg. LLF: 163.7927490982631
Iteration: 24, Func. Count: 178, Neg. LLF: 163.79191970091827
Iteration: 25, Func. Count: 185, Neg. LLF: 163.79191864262444
Iteration: 26, Func. Count: 191, Neg. LLF: 163.7919186548531
Optimization terminated successfully (Exit mode 0)
Current function value: 163.79191864262444
Iterations: 26
Function evaluations: 191
Gradient evaluations: 26
Iteration: 1, Func. Count: 9, Neg. LLF: 205.88476330087477
Iteration: 2, Func. Count: 18, Neg. LLF: 170.02305683658318
Iteration: 3, Func. Count: 27, Neg. LLF: 167.37625576031928
Iteration: 4, Func. Count: 36, Neg. LLF: 167.2123386252624
Iteration: 5, Func. Count: 45, Neg. LLF: 166.71408545989388
Iteration: 6, Func. Count: 53, Neg. LLF: 166.69774642560722
Iteration: 7, Func. Count: 61, Neg. LLF: 166.65349322653051
Iteration: 8, Func. Count: 69, Neg. LLF: 166.85175644200098
Iteration: 9, Func. Count: 78, Neg. LLF: 167.5205520923362
Iteration: 10, Func. Count: 87, Neg. LLF: 167.05209005389196
Iteration: 11, Func. Count: 96, Neg. LLF: 166.83542908572522
Iteration: 12, Func. Count: 105, Neg. LLF: 175.41899742838729
Iteration: 13, Func. Count: 114, Neg. LLF: 178.35376494974145
Iteration: 14, Func. Count: 123, Neg. LLF: 170.20020453254628
Iteration: 15, Func. Count: 132, Neg. LLF: 168.41708430651929
Iteration: 16, Func. Count: 141, Neg. LLF: 167.2447770710428
Iteration: 17, Func. Count: 150, Neg. LLF: 180.81916865174972
Iteration: 18, Func. Count: 159, Neg. LLF: 164.16749077001657
Iteration: 19, Func. Count: 167, Neg. LLF: 334974765.81053346
Iteration: 20, Func. Count: 177, Neg. LLF: 165.84968008863945
Iteration: 21, Func. Count: 187, Neg. LLF: 163.68786720153474
Iteration: 22, Func. Count: 195, Neg. LLF: 163.6786755415142
Iteration: 23, Func. Count: 203, Neg. LLF: 163.67757311749483
Iteration: 24, Func. Count: 211, Neg. LLF: 163.6770351524738
Iteration: 25, Func. Count: 219, Neg. LLF: 163.67703221306527
Iteration: 26, Func. Count: 227, Neg. LLF: 163.6770316103885
Optimization terminated successfully (Exit mode 0)
Current function value: 163.6770316103885
Iterations: 26
Function evaluations: 227
Gradient evaluations: 26
Iteration: 1, Func. Count: 6, Neg. LLF: 168.29640348042977
Iteration: 2, Func. Count: 11, Neg. LLF: 169.14733140766316
Iteration: 3, Func. Count: 19, Neg. LLF: 186.41457254958502
Iteration: 4, Func. Count: 25, Neg. LLF: 167.31289784196954
Iteration: 5, Func. Count: 30, Neg. LLF: 167.28781761158552
Iteration: 6, Func. Count: 35, Neg. LLF: 167.2497684257887
Iteration: 7, Func. Count: 40, Neg. LLF: 167.23553498339035
Iteration: 8, Func. Count: 45, Neg. LLF: 167.218585029273
Iteration: 9, Func. Count: 50, Neg. LLF: 167.1914685477971
Iteration: 10, Func. Count: 55, Neg. LLF: 167.16331926534082
Iteration: 11, Func. Count: 60, Neg. LLF: 167.11816642924984
Iteration: 12, Func. Count: 65, Neg. LLF: 167.1057222740829
Iteration: 13, Func. Count: 70, Neg. LLF: 167.10374673427327
Iteration: 14, Func. Count: 75, Neg. LLF: 167.10373141553794
Iteration: 15, Func. Count: 79, Neg. LLF: 167.10373141562735
Optimization terminated successfully (Exit mode 0)
Current function value: 167.10373141553794
Iterations: 15
Function evaluations: 79
Gradient evaluations: 15
Iteration: 1, Func. Count: 7, Neg. LLF: 395.9902051569179
Iteration: 2, Func. Count: 14, Neg. LLF: 167.33512527156185
Iteration: 3, Func. Count: 21, Neg. LLF: 165.78424696818894
Iteration: 4, Func. Count: 28, Neg. LLF: 165.5154377698188
Iteration: 5, Func. Count: 35, Neg. LLF: 165.4578142489908
Iteration: 6, Func. Count: 41, Neg. LLF: 165.11960671327193
Iteration: 7, Func. Count: 47, Neg. LLF: 168.91613722176712
Iteration: 8, Func. Count: 54, Neg. LLF: 166.55931016563105
Iteration: 9, Func. Count: 61, Neg. LLF: 165.4626373499023
Iteration: 10, Func. Count: 68, Neg. LLF: 175.8708195954779
Iteration: 11, Func. Count: 75, Neg. LLF: 165.07556446150264
Iteration: 12, Func. Count: 82, Neg. LLF: 164.5765929369558
Iteration: 13, Func. Count: 89, Neg. LLF: 164.02587311286794
Iteration: 14, Func. Count: 95, Neg. LLF: 163.80157883135172
Iteration: 15, Func. Count: 101, Neg. LLF: 163.7950687055007
Iteration: 16, Func. Count: 107, Neg. LLF: 163.79222199856432
Iteration: 17, Func. Count: 113, Neg. LLF: 163.79204584080998
Iteration: 18, Func. Count: 119, Neg. LLF: 163.79192126765128
Iteration: 19, Func. Count: 125, Neg. LLF: 163.79191863641393
Iteration: 20, Func. Count: 130, Neg. LLF: 163.7919186365914
Optimization terminated successfully (Exit mode 0)
Current function value: 163.79191863641393
Iterations: 20
Function evaluations: 130
Gradient evaluations: 20
Iteration: 1, Func. Count: 8, Neg. LLF: 400.4986483059635
Iteration: 2, Func. Count: 16, Neg. LLF: 166.0551062367492
Iteration: 3, Func. Count: 24, Neg. LLF: 165.778743641119
Iteration: 4, Func. Count: 32, Neg. LLF: 164.98152058243184
Iteration: 5, Func. Count: 39, Neg. LLF: 166.1327419085219
Iteration: 6, Func. Count: 47, Neg. LLF: 164.82758841492705
Iteration: 7, Func. Count: 54, Neg. LLF: 164.7498944372853
Iteration: 8, Func. Count: 61, Neg. LLF: 166.84459016811283
Iteration: 9, Func. Count: 69, Neg. LLF: 164.31052945742874
Iteration: 10, Func. Count: 76, Neg. LLF: 164.45785346022546
Iteration: 11, Func. Count: 84, Neg. LLF: 163.81595984693539
Iteration: 12, Func. Count: 91, Neg. LLF: 163.73315697128092
Iteration: 13, Func. Count: 98, Neg. LLF: 163.72434789245182
Iteration: 14, Func. Count: 106, Neg. LLF: 163.67720959403297
Iteration: 15, Func. Count: 113, Neg. LLF: 163.67705739061216
Iteration: 16, Func. Count: 120, Neg. LLF: 163.67703132730017
Iteration: 17, Func. Count: 126, Neg. LLF: 163.67703132757046
Optimization terminated successfully (Exit mode 0)
Current function value: 163.67703132730017
Iterations: 17
Function evaluations: 126
Gradient evaluations: 17
Iteration: 1, Func. Count: 9, Neg. LLF: 205.91622254656303
Iteration: 2, Func. Count: 18, Neg. LLF: 170.31405196243483
Iteration: 3, Func. Count: 27, Neg. LLF: 167.31321386737042
Iteration: 4, Func. Count: 36, Neg. LLF: 166.9158654845692
Iteration: 5, Func. Count: 45, Neg. LLF: 168.99726981590044
Iteration: 6, Func. Count: 54, Neg. LLF: 169.5921043537572
Iteration: 7, Func. Count: 63, Neg. LLF: 168.98382851833418
Iteration: 8, Func. Count: 72, Neg. LLF: 168.91595034215334
Iteration: 9, Func. Count: 81, Neg. LLF: 168.8356123932863
Iteration: 10, Func. Count: 90, Neg. LLF: 166.83087395059556
Iteration: 11, Func. Count: 99, Neg. LLF: 166.7397351368434
Iteration: 12, Func. Count: 108, Neg. LLF: 166.60219159919225
Iteration: 13, Func. Count: 116, Neg. LLF: 166.49983619584293
Iteration: 14, Func. Count: 124, Neg. LLF: 166.0036873215505
Iteration: 15, Func. Count: 132, Neg. LLF: 165.59051820234262
Iteration: 16, Func. Count: 140, Neg. LLF: 166.82110345730536
Iteration: 17, Func. Count: 149, Neg. LLF: 277.54967215551835
Iteration: 18, Func. Count: 158, Neg. LLF: 184.55331751055385
Iteration: 19, Func. Count: 167, Neg. LLF: 174.11359378201922
Iteration: 20, Func. Count: 176, Neg. LLF: 170.13956362596088
Iteration: 21, Func. Count: 185, Neg. LLF: 168.06167822754833
Iteration: 22, Func. Count: 194, Neg. LLF: 164.99885573548937
Iteration: 23, Func. Count: 203, Neg. LLF: 164.08755381020103
Iteration: 24, Func. Count: 211, Neg. LLF: 164.39800111450901
Iteration: 25, Func. Count: 220, Neg. LLF: 164.15933919190724
Iteration: 26, Func. Count: 229, Neg. LLF: 163.9986217967461
Iteration: 27, Func. Count: 237, Neg. LLF: 163.9909931261198
Iteration: 28, Func. Count: 246, Neg. LLF: 163.93201505190942
Iteration: 29, Func. Count: 254, Neg. LLF: 163.9216973353764
Iteration: 30, Func. Count: 262, Neg. LLF: 163.91986205372663
Iteration: 31, Func. Count: 270, Neg. LLF: 163.91705685106513
Iteration: 32, Func. Count: 278, Neg. LLF: 163.91089074790753
Iteration: 33, Func. Count: 286, Neg. LLF: 163.89445787763037
Iteration: 34, Func. Count: 294, Neg. LLF: 163.86298576233946
Iteration: 35, Func. Count: 302, Neg. LLF: 163.82069650234564
Iteration: 36, Func. Count: 310, Neg. LLF: 163.80101137412302
Iteration: 37, Func. Count: 318, Neg. LLF: 163.7925258728118
Iteration: 38, Func. Count: 326, Neg. LLF: 163.79192119691905
Iteration: 39, Func. Count: 334, Neg. LLF: 163.79191859882235
Iteration: 40, Func. Count: 341, Neg. LLF: 163.7919186106828
Optimization terminated successfully (Exit mode 0)
Current function value: 163.79191859882235
Iterations: 40
Function evaluations: 341
Gradient evaluations: 40
Iteration: 1, Func. Count: 10, Neg. LLF: 205.941639608525
Iteration: 2, Func. Count: 20, Neg. LLF: 170.02480735964787
Iteration: 3, Func. Count: 30, Neg. LLF: 167.4266051735434
Iteration: 4, Func. Count: 40, Neg. LLF: 166.7857623233731
Iteration: 5, Func. Count: 49, Neg. LLF: 170.04052407299767
Iteration: 6, Func. Count: 59, Neg. LLF: 168.86176888096486
Iteration: 7, Func. Count: 69, Neg. LLF: 169.2915514197939
Iteration: 8, Func. Count: 79, Neg. LLF: 168.9298368544444
Iteration: 9, Func. Count: 89, Neg. LLF: 166.67929795679015
Iteration: 10, Func. Count: 99, Neg. LLF: 166.59773042568946
Iteration: 11, Func. Count: 108, Neg. LLF: 166.5014369985864
Iteration: 12, Func. Count: 117, Neg. LLF: 165.54491656325476
Iteration: 13, Func. Count: 126, Neg. LLF: 166.714089303931
Iteration: 14, Func. Count: 136, Neg. LLF: 182.74638014057874
Iteration: 15, Func. Count: 146, Neg. LLF: 164.99261354846152
Iteration: 16, Func. Count: 156, Neg. LLF: 170.3941566459542
Iteration: 17, Func. Count: 166, Neg. LLF: 164.2194636363121
Iteration: 18, Func. Count: 176, Neg. LLF: 164.0145932649853
Iteration: 19, Func. Count: 185, Neg. LLF: 163.956347956344
Iteration: 20, Func. Count: 194, Neg. LLF: 163.91861131299765
Iteration: 21, Func. Count: 203, Neg. LLF: 163.78229377436426
Iteration: 22, Func. Count: 212, Neg. LLF: 164.13345977033063
Iteration: 23, Func. Count: 222, Neg. LLF: 163.7216859925748
Iteration: 24, Func. Count: 231, Neg. LLF: 163.68366416759628
Iteration: 25, Func. Count: 240, Neg. LLF: 163.67933108920087
Iteration: 26, Func. Count: 249, Neg. LLF: 163.67767634509303
Iteration: 27, Func. Count: 258, Neg. LLF: 163.67739047361678
Iteration: 28, Func. Count: 267, Neg. LLF: 163.67706041227095
Iteration: 29, Func. Count: 276, Neg. LLF: 163.67703369840893
Iteration: 30, Func. Count: 285, Neg. LLF: 163.6770311568707
Iteration: 31, Func. Count: 293, Neg. LLF: 163.67703116593484
Optimization terminated successfully (Exit mode 0)
Current function value: 163.6770311568707
Iterations: 31
Function evaluations: 293
Gradient evaluations: 31
Iteration: 1, Func. Count: 7, Neg. LLF: 168.89440484424318
Iteration: 2, Func. Count: 14, Neg. LLF: 168.90087018949862
Iteration: 3, Func. Count: 22, Neg. LLF: 167.79265334540122
Iteration: 4, Func. Count: 29, Neg. LLF: 167.96898916941313
Iteration: 5, Func. Count: 36, Neg. LLF: 167.60731599708512
Iteration: 6, Func. Count: 42, Neg. LLF: 167.54190787192883
Iteration: 7, Func. Count: 48, Neg. LLF: 167.50431617706934
Iteration: 8, Func. Count: 54, Neg. LLF: 167.46415599528703
Iteration: 9, Func. Count: 60, Neg. LLF: 167.4310775602354
Iteration: 10, Func. Count: 66, Neg. LLF: 167.41562835544656
Iteration: 11, Func. Count: 72, Neg. LLF: 167.40244674815509
Iteration: 12, Func. Count: 78, Neg. LLF: 167.32306666108846
Iteration: 13, Func. Count: 84, Neg. LLF: 167.5902775634886
Iteration: 14, Func. Count: 91, Neg. LLF: 167.4566141135844
Iteration: 15, Func. Count: 98, Neg. LLF: 167.25269414306652
Iteration: 16, Func. Count: 105, Neg. LLF: 167.16318069784668
Iteration: 17, Func. Count: 111, Neg. LLF: 167.1502605620367
Iteration: 18, Func. Count: 117, Neg. LLF: 167.1417711894016
Iteration: 19, Func. Count: 123, Neg. LLF: 167.12686142354409
Iteration: 20, Func. Count: 129, Neg. LLF: 167.12463037777627
Iteration: 21, Func. Count: 135, Neg. LLF: 167.1223937621024
Iteration: 22, Func. Count: 141, Neg. LLF: 167.11891070420486
Iteration: 23, Func. Count: 147, Neg. LLF: 167.11288621364494
Iteration: 24, Func. Count: 153, Neg. LLF: 167.1069800192178
Iteration: 25, Func. Count: 159, Neg. LLF: 167.10411771749352
Iteration: 26, Func. Count: 165, Neg. LLF: 167.10373917761638
Iteration: 27, Func. Count: 171, Neg. LLF: 167.10373111388066
Iteration: 28, Func. Count: 176, Neg. LLF: 167.10373112331962
Optimization terminated successfully (Exit mode 0)
Current function value: 167.10373111388066
Iterations: 28
Function evaluations: 176
Gradient evaluations: 28
Iteration: 1, Func. Count: 8, Neg. LLF: 396.6514906909011
Iteration: 2, Func. Count: 16, Neg. LLF: 167.50566986744803
Iteration: 3, Func. Count: 24, Neg. LLF: 165.8283956744986
Iteration: 4, Func. Count: 32, Neg. LLF: 167.75927293040195
Iteration: 5, Func. Count: 40, Neg. LLF: 165.55055037003078
Iteration: 6, Func. Count: 48, Neg. LLF: 165.80523657487126
Iteration: 7, Func. Count: 56, Neg. LLF: 165.15803202203475
Iteration: 8, Func. Count: 63, Neg. LLF: 164.83193165838415
Iteration: 9, Func. Count: 70, Neg. LLF: 165.00907459541497
Iteration: 10, Func. Count: 78, Neg. LLF: 164.82990619444587
Iteration: 11, Func. Count: 86, Neg. LLF: 166.6731720583154
Iteration: 12, Func. Count: 94, Neg. LLF: 163.94385312149552
Iteration: 13, Func. Count: 102, Neg. LLF: 163.79551637803777
Iteration: 14, Func. Count: 109, Neg. LLF: 163.7921555447291
Iteration: 15, Func. Count: 116, Neg. LLF: 163.79198432126285
Iteration: 16, Func. Count: 123, Neg. LLF: 163.79192035642774
Iteration: 17, Func. Count: 130, Neg. LLF: 163.7919189501515
Iteration: 18, Func. Count: 136, Neg. LLF: 163.79191894971697
Optimization terminated successfully (Exit mode 0)
Current function value: 163.7919189501515
Iterations: 18
Function evaluations: 136
Gradient evaluations: 18
Iteration: 1, Func. Count: 9, Neg. LLF: 206.01290484959847
Iteration: 2, Func. Count: 18, Neg. LLF: 173.18469386660567
Iteration: 3, Func. Count: 27, Neg. LLF: 169.08661588359365
Iteration: 4, Func. Count: 37, Neg. LLF: 166.53534802865136
Iteration: 5, Func. Count: 45, Neg. LLF: 166.67599750460658
Iteration: 6, Func. Count: 54, Neg. LLF: 168.82047329528876
Iteration: 7, Func. Count: 63, Neg. LLF: 166.42460147368683
Iteration: 8, Func. Count: 72, Neg. LLF: 166.36503610532156
Iteration: 9, Func. Count: 80, Neg. LLF: 166.33623064746888
Iteration: 10, Func. Count: 88, Neg. LLF: 166.1675121703616
Iteration: 11, Func. Count: 96, Neg. LLF: 169.8836493440637
Iteration: 12, Func. Count: 105, Neg. LLF: 512.3541429574982
Iteration: 13, Func. Count: 114, Neg. LLF: 281.11437621111406
Iteration: 14, Func. Count: 123, Neg. LLF: 195.46413617821352
Iteration: 15, Func. Count: 132, Neg. LLF: 179.20040446499274
Iteration: 16, Func. Count: 141, Neg. LLF: 173.3514029590952
Iteration: 17, Func. Count: 150, Neg. LLF: 171.32326827677875
Iteration: 18, Func. Count: 159, Neg. LLF: 170.2733861338927
Iteration: 19, Func. Count: 168, Neg. LLF: 169.46207400833455
Iteration: 20, Func. Count: 177, Neg. LLF: 165.03860220471597
Iteration: 21, Func. Count: 185, Neg. LLF: 14909724.118163422
Iteration: 22, Func. Count: 195, Neg. LLF: 164.00896764039373
Iteration: 23, Func. Count: 203, Neg. LLF: 163.93156147770745
Iteration: 24, Func. Count: 211, Neg. LLF: 163.87953369980693
Iteration: 25, Func. Count: 219, Neg. LLF: 163.84324721495614
Iteration: 26, Func. Count: 227, Neg. LLF: 163.80644995256938
Iteration: 27, Func. Count: 235, Neg. LLF: 163.80830135379563
Iteration: 28, Func. Count: 244, Neg. LLF: 163.7923176980708
Iteration: 29, Func. Count: 252, Neg. LLF: 163.7919297037286
Iteration: 30, Func. Count: 260, Neg. LLF: 163.79191860860388
Iteration: 31, Func. Count: 267, Neg. LLF: 163.7919186134969
Optimization terminated successfully (Exit mode 0)
Current function value: 163.79191860860388
Iterations: 32
Function evaluations: 267
Gradient evaluations: 31
Iteration: 1, Func. Count: 10, Neg. LLF: 206.02623683199081
Iteration: 2, Func. Count: 20, Neg. LLF: 174.22027491377958
Iteration: 3, Func. Count: 30, Neg. LLF: 167.04993986839148
Iteration: 4, Func. Count: 41, Neg. LLF: 166.20887391116594
Iteration: 5, Func. Count: 50, Neg. LLF: 166.40748809520588
Iteration: 6, Func. Count: 60, Neg. LLF: 169.55033201512532
Iteration: 7, Func. Count: 70, Neg. LLF: 166.00229281324968
Iteration: 8, Func. Count: 79, Neg. LLF: 165.96343535912274
Iteration: 9, Func. Count: 88, Neg. LLF: 165.86343905961917
Iteration: 10, Func. Count: 97, Neg. LLF: 165.6928751388162
Iteration: 11, Func. Count: 106, Neg. LLF: 165.23122858401936
Iteration: 12, Func. Count: 115, Neg. LLF: 167.58020429968008
Iteration: 13, Func. Count: 125, Neg. LLF: 171.54805803360105
Iteration: 14, Func. Count: 135, Neg. LLF: 172.0069413280923
Iteration: 15, Func. Count: 145, Neg. LLF: 170.73094547273408
Iteration: 16, Func. Count: 155, Neg. LLF: 172.02122853204608
Iteration: 17, Func. Count: 165, Neg. LLF: 173.31625817469026
Iteration: 18, Func. Count: 175, Neg. LLF: 168.9994563748627
Iteration: 19, Func. Count: 185, Neg. LLF: 164.59398172678098
Iteration: 20, Func. Count: 195, Neg. LLF: 163.82694637255656
Iteration: 21, Func. Count: 204, Neg. LLF: 163.7864998838901
Iteration: 22, Func. Count: 213, Neg. LLF: 163.82695699607666
Iteration: 23, Func. Count: 223, Neg. LLF: 163.75191096654692
Iteration: 24, Func. Count: 232, Neg. LLF: 163.75151217693204
Iteration: 25, Func. Count: 241, Neg. LLF: 163.75148264811304
Iteration: 26, Func. Count: 250, Neg. LLF: 163.75148230243326
Optimization terminated successfully (Exit mode 0)
Current function value: 163.75148230243326
Iterations: 26
Function evaluations: 250
Gradient evaluations: 26
Iteration: 1, Func. Count: 11, Neg. LLF: 206.03964260910246
Iteration: 2, Func. Count: 22, Neg. LLF: 174.511956832438
Iteration: 3, Func. Count: 33, Neg. LLF: 167.43693016623067
Iteration: 4, Func. Count: 45, Neg. LLF: 166.386792853604
Iteration: 5, Func. Count: 55, Neg. LLF: 166.55249883044368
Iteration: 6, Func. Count: 66, Neg. LLF: 168.716204972823
Iteration: 7, Func. Count: 77, Neg. LLF: 166.13273520373332
Iteration: 8, Func. Count: 88, Neg. LLF: 165.93478610942822
Iteration: 9, Func. Count: 98, Neg. LLF: 165.83634608488907
Iteration: 10, Func. Count: 108, Neg. LLF: 165.54013836608746
Iteration: 11, Func. Count: 118, Neg. LLF: 164.90668485607688
Iteration: 12, Func. Count: 128, Neg. LLF: 165.49228244044056
Iteration: 13, Func. Count: 139, Neg. LLF: 180.4279273821498
Iteration: 14, Func. Count: 150, Neg. LLF: 168.5087181764755
Iteration: 15, Func. Count: 161, Neg. LLF: 163.96912490096938
Iteration: 16, Func. Count: 172, Neg. LLF: 166.86240903936843
Iteration: 17, Func. Count: 183, Neg. LLF: 163.75228678234922
Iteration: 18, Func. Count: 193, Neg. LLF: 163.77573478014455
Iteration: 19, Func. Count: 204, Neg. LLF: 163.7514860311744
Iteration: 20, Func. Count: 214, Neg. LLF: 163.75148181337553
Iteration: 21, Func. Count: 223, Neg. LLF: 163.75148188582298
Optimization terminated successfully (Exit mode 0)
Current function value: 163.75148181337553
Iterations: 21
Function evaluations: 223
Gradient evaluations: 21
Iteration: 1, Func. Count: 8, Neg. LLF: 169.03414017523815
Iteration: 2, Func. Count: 17, Neg. LLF: 168.73715043609067
Iteration: 3, Func. Count: 26, Neg. LLF: 167.932787515961
Iteration: 4, Func. Count: 36, Neg. LLF: 167.41487967297078
Iteration: 5, Func. Count: 44, Neg. LLF: 167.41233814725848
Iteration: 6, Func. Count: 52, Neg. LLF: 167.30935521456675
Iteration: 7, Func. Count: 59, Neg. LLF: 167.28443309610125
Iteration: 8, Func. Count: 66, Neg. LLF: 167.26770066285295
Iteration: 9, Func. Count: 73, Neg. LLF: 167.24650247721485
Iteration: 10, Func. Count: 80, Neg. LLF: 167.21811396808314
Iteration: 11, Func. Count: 87, Neg. LLF: 167.15335361206283
Iteration: 12, Func. Count: 94, Neg. LLF: 167.10676527606577
Iteration: 13, Func. Count: 101, Neg. LLF: 167.0804350912327
Iteration: 14, Func. Count: 108, Neg. LLF: 167.06771059041586
Iteration: 15, Func. Count: 115, Neg. LLF: 167.06461122607803
Iteration: 16, Func. Count: 122, Neg. LLF: 167.06414586737685
Iteration: 17, Func. Count: 129, Neg. LLF: 167.06408608018032
Iteration: 18, Func. Count: 136, Neg. LLF: 167.06403568679536
Iteration: 19, Func. Count: 143, Neg. LLF: 167.06393297771945
Iteration: 20, Func. Count: 150, Neg. LLF: 167.0638626822255
Iteration: 21, Func. Count: 157, Neg. LLF: 167.0638327628764
Iteration: 22, Func. Count: 164, Neg. LLF: 167.06382928305632
Iteration: 23, Func. Count: 170, Neg. LLF: 167.06382928304393
Optimization terminated successfully (Exit mode 0)
Current function value: 167.06382928305632
Iterations: 23
Function evaluations: 170
Gradient evaluations: 23
Iteration: 1, Func. Count: 9, Neg. LLF: 397.20392740122287
Iteration: 2, Func. Count: 18, Neg. LLF: 167.49468961556963
Iteration: 3, Func. Count: 27, Neg. LLF: 166.110205113619
Iteration: 4, Func. Count: 36, Neg. LLF: 165.67948463422354
Iteration: 5, Func. Count: 45, Neg. LLF: 165.81647108931568
Iteration: 6, Func. Count: 54, Neg. LLF: 165.96858452769985
Iteration: 7, Func. Count: 63, Neg. LLF: 165.36736688081615
Iteration: 8, Func. Count: 71, Neg. LLF: 165.2749869580681
Iteration: 9, Func. Count: 79, Neg. LLF: 164.54977686334988
Iteration: 10, Func. Count: 87, Neg. LLF: 174.313301954917
Iteration: 11, Func. Count: 96, Neg. LLF: 220.55047872939667
Iteration: 12, Func. Count: 107, Neg. LLF: 164.23511290944353
Iteration: 13, Func. Count: 115, Neg. LLF: 163.8748179536008
Iteration: 14, Func. Count: 123, Neg. LLF: 163.8368331277853
Iteration: 15, Func. Count: 131, Neg. LLF: 163.79339950791967
Iteration: 16, Func. Count: 139, Neg. LLF: 163.79195015751122
Iteration: 17, Func. Count: 147, Neg. LLF: 163.7919194843257
Iteration: 18, Func. Count: 155, Neg. LLF: 163.7919185975268
Optimization terminated successfully (Exit mode 0)
Current function value: 163.7919185975268
Iterations: 18
Function evaluations: 155
Gradient evaluations: 18
Iteration: 1, Func. Count: 10, Neg. LLF: 205.97424004302334
Iteration: 2, Func. Count: 20, Neg. LLF: 173.9293308097655
Iteration: 3, Func. Count: 30, Neg. LLF: 169.95750572006548
Iteration: 4, Func. Count: 41, Neg. LLF: 166.5903636037934
Iteration: 5, Func. Count: 50, Neg. LLF: 166.43382733919339
Iteration: 6, Func. Count: 59, Neg. LLF: 166.62920420151622
Iteration: 7, Func. Count: 69, Neg. LLF: 168.2679608247754
Iteration: 8, Func. Count: 79, Neg. LLF: 166.36846642112477
Iteration: 9, Func. Count: 88, Neg. LLF: 166.34636431183978
Iteration: 10, Func. Count: 97, Neg. LLF: 166.1951599762179
Iteration: 11, Func. Count: 106, Neg. LLF: 165.9740652585573
Iteration: 12, Func. Count: 115, Neg. LLF: 165.13794001745907
Iteration: 13, Func. Count: 124, Neg. LLF: 182.39346203729042
Iteration: 14, Func. Count: 134, Neg. LLF: 164.7136069311375
Iteration: 15, Func. Count: 143, Neg. LLF: 166.4266749641232
Iteration: 16, Func. Count: 153, Neg. LLF: 166.47739486978003
Iteration: 17, Func. Count: 164, Neg. LLF: 164.45719953911023
Iteration: 18, Func. Count: 174, Neg. LLF: 163.90231753788538
Iteration: 19, Func. Count: 183, Neg. LLF: 163.8393937295723
Iteration: 20, Func. Count: 192, Neg. LLF: 163.80339781668502
Iteration: 21, Func. Count: 201, Neg. LLF: 163.79206094933383
Iteration: 22, Func. Count: 210, Neg. LLF: 163.79192782987087
Iteration: 23, Func. Count: 219, Neg. LLF: 163.79191859787292
Iteration: 24, Func. Count: 227, Neg. LLF: 163.79191860276316
Optimization terminated successfully (Exit mode 0)
Current function value: 163.79191859787292
Iterations: 24
Function evaluations: 227
Gradient evaluations: 24
Iteration: 1, Func. Count: 11, Neg. LLF: 205.9706128315575
Iteration: 2, Func. Count: 22, Neg. LLF: 174.94817130849466
Iteration: 3, Func. Count: 33, Neg. LLF: 169.3817206762583
Iteration: 4, Func. Count: 45, Neg. LLF: 166.40261340989852
Iteration: 5, Func. Count: 55, Neg. LLF: 166.2298822007587
Iteration: 6, Func. Count: 65, Neg. LLF: 175.45463950005706
Iteration: 7, Func. Count: 76, Neg. LLF: 165.97802913887736
Iteration: 8, Func. Count: 86, Neg. LLF: 165.88909430292136
Iteration: 9, Func. Count: 96, Neg. LLF: 165.74039900100252
Iteration: 10, Func. Count: 106, Neg. LLF: 167.5120254023519
Iteration: 11, Func. Count: 117, Neg. LLF: 207.70217615156113
Iteration: 12, Func. Count: 128, Neg. LLF: 178.98854759706126
Iteration: 13, Func. Count: 139, Neg. LLF: 170.4337559684792
Iteration: 14, Func. Count: 150, Neg. LLF: 169.92789210125002
Iteration: 15, Func. Count: 161, Neg. LLF: 168.29988716299226
Iteration: 16, Func. Count: 172, Neg. LLF: 171.42359666190188
Iteration: 17, Func. Count: 183, Neg. LLF: 175.40304034903812
Iteration: 18, Func. Count: 194, Neg. LLF: 168.50592608067876
Iteration: 19, Func. Count: 205, Neg. LLF: 164.56259682894043
Iteration: 20, Func. Count: 216, Neg. LLF: 164.1426846923769
Iteration: 21, Func. Count: 227, Neg. LLF: 163.88026710423037
Iteration: 22, Func. Count: 237, Neg. LLF: 163.9694593261316
Iteration: 23, Func. Count: 248, Neg. LLF: 163.77083407000458
Iteration: 24, Func. Count: 258, Neg. LLF: 163.75241753970954
Iteration: 25, Func. Count: 268, Neg. LLF: 163.75150764491718
Iteration: 26, Func. Count: 278, Neg. LLF: 163.75148282081312
Iteration: 27, Func. Count: 288, Neg. LLF: 163.75148173199216
Iteration: 28, Func. Count: 297, Neg. LLF: 163.75148173202155
Optimization terminated successfully (Exit mode 0)
Current function value: 163.75148173199216
Iterations: 28
Function evaluations: 297
Gradient evaluations: 28
Iteration: 1, Func. Count: 12, Neg. LLF: 205.99155769432548
Iteration: 2, Func. Count: 24, Neg. LLF: 175.47853925489488
Iteration: 3, Func. Count: 36, Neg. LLF: 169.64718531073757
Iteration: 4, Func. Count: 49, Neg. LLF: 166.83110710287525
Iteration: 5, Func. Count: 61, Neg. LLF: 166.16250333319505
Iteration: 6, Func. Count: 72, Neg. LLF: 166.60321028827983
Iteration: 7, Func. Count: 84, Neg. LLF: 165.99307311550828
Iteration: 8, Func. Count: 95, Neg. LLF: 166.20324470024812
Iteration: 9, Func. Count: 107, Neg. LLF: 165.7705708019824
Iteration: 10, Func. Count: 118, Neg. LLF: 165.26287213747602
Iteration: 11, Func. Count: 129, Neg. LLF: 178.00768326707652
Iteration: 12, Func. Count: 141, Neg. LLF: 174.7843666837716
Iteration: 13, Func. Count: 153, Neg. LLF: 175.24614194945104
Iteration: 14, Func. Count: 165, Neg. LLF: 180.40472241449336
Iteration: 15, Func. Count: 177, Neg. LLF: 174.00468698422077
Iteration: 16, Func. Count: 189, Neg. LLF: 167.47832899445007
Iteration: 17, Func. Count: 201, Neg. LLF: 170.8108828734235
Iteration: 18, Func. Count: 213, Neg. LLF: 164.1799102479993
Iteration: 19, Func. Count: 224, Neg. LLF: 165.24895680380723
Iteration: 20, Func. Count: 236, Neg. LLF: 165.01317820518173
Iteration: 21, Func. Count: 249, Neg. LLF: 163.89375617641969
Iteration: 22, Func. Count: 260, Neg. LLF: 163.83402086337588
Iteration: 23, Func. Count: 271, Neg. LLF: 163.76626152029263
Iteration: 24, Func. Count: 282, Neg. LLF: 163.75518567769987
Iteration: 25, Func. Count: 293, Neg. LLF: 163.75153124283676
Iteration: 26, Func. Count: 304, Neg. LLF: 163.7514828093962
Iteration: 27, Func. Count: 315, Neg. LLF: 163.75148177518727
Iteration: 28, Func. Count: 325, Neg. LLF: 163.75148184779033
Optimization terminated successfully (Exit mode 0)
Current function value: 163.75148177518727
Iterations: 28
Function evaluations: 325
Gradient evaluations: 28
Iteration: 1, Func. Count: 5, Neg. LLF: 169.13889923209192
Iteration: 2, Func. Count: 9, Neg. LLF: 169.4235660711392
Iteration: 3, Func. Count: 14, Neg. LLF: 168.88965240175887
Iteration: 4, Func. Count: 18, Neg. LLF: 168.7408545937484
Iteration: 5, Func. Count: 22, Neg. LLF: 168.68773133415817
Iteration: 6, Func. Count: 26, Neg. LLF: 168.66731852041985
Iteration: 7, Func. Count: 30, Neg. LLF: 168.5541259300264
Iteration: 8, Func. Count: 34, Neg. LLF: 168.25041529992663
Iteration: 9, Func. Count: 38, Neg. LLF: 168.12800195418367
Iteration: 10, Func. Count: 42, Neg. LLF: 168.05958684244578
Iteration: 11, Func. Count: 46, Neg. LLF: 168.05443685727687
Iteration: 12, Func. Count: 50, Neg. LLF: 168.05428661418858
Iteration: 13, Func. Count: 54, Neg. LLF: 168.05428571864672
Optimization terminated successfully (Exit mode 0)
Current function value: 168.05428571864672
Iterations: 13
Function evaluations: 54
Gradient evaluations: 13
Iteration: 1, Func. Count: 6, Neg. LLF: 368.3351926813131
Iteration: 2, Func. Count: 12, Neg. LLF: 167.89118330947963
Iteration: 3, Func. Count: 18, Neg. LLF: 166.68271919981467
Iteration: 4, Func. Count: 24, Neg. LLF: 166.85310475597223
Iteration: 5, Func. Count: 30, Neg. LLF: 165.6668518513793
Iteration: 6, Func. Count: 36, Neg. LLF: 165.40901347650473
Iteration: 7, Func. Count: 41, Neg. LLF: 165.0411238163862
Iteration: 8, Func. Count: 46, Neg. LLF: 167.7443075018972
Iteration: 9, Func. Count: 52, Neg. LLF: 164.4739296500923
Iteration: 10, Func. Count: 57, Neg. LLF: 166.10985136980918
Iteration: 11, Func. Count: 63, Neg. LLF: 165.73746401472505
Iteration: 12, Func. Count: 69, Neg. LLF: 164.03851873374148
Iteration: 13, Func. Count: 75, Neg. LLF: 163.7925150801915
Iteration: 14, Func. Count: 80, Neg. LLF: 163.79202977006872
Iteration: 15, Func. Count: 85, Neg. LLF: 163.791921884902
Iteration: 16, Func. Count: 90, Neg. LLF: 163.79191864213027
Iteration: 17, Func. Count: 94, Neg. LLF: 163.79191864183207
Optimization terminated successfully (Exit mode 0)
Current function value: 163.79191864213027
Iterations: 17
Function evaluations: 94
Gradient evaluations: 17
Iteration: 1, Func. Count: 7, Neg. LLF: 371.6532811958548
Iteration: 2, Func. Count: 14, Neg. LLF: 169.1294811578254
Iteration: 3, Func. Count: 21, Neg. LLF: 166.625579089148
Iteration: 4, Func. Count: 28, Neg. LLF: 166.4988597228785
Iteration: 5, Func. Count: 35, Neg. LLF: 165.79151384207987
Iteration: 6, Func. Count: 42, Neg. LLF: 165.28696237236875
Iteration: 7, Func. Count: 48, Neg. LLF: 165.10039920768253
Iteration: 8, Func. Count: 54, Neg. LLF: 164.32658403372744
Iteration: 9, Func. Count: 60, Neg. LLF: 164.24696734081954
Iteration: 10, Func. Count: 66, Neg. LLF: 164.349939743615
Iteration: 11, Func. Count: 73, Neg. LLF: 164.32776345425904
Iteration: 12, Func. Count: 80, Neg. LLF: 163.90880221349016
Iteration: 13, Func. Count: 86, Neg. LLF: 163.87607808216703
Iteration: 14, Func. Count: 92, Neg. LLF: 163.83175734380637
Iteration: 15, Func. Count: 98, Neg. LLF: 163.79325500418378
Iteration: 16, Func. Count: 104, Neg. LLF: 163.7919368497409
Iteration: 17, Func. Count: 110, Neg. LLF: 163.79191888431095
Iteration: 18, Func. Count: 115, Neg. LLF: 163.79191889013103
Optimization terminated successfully (Exit mode 0)
Current function value: 163.79191888431095
Iterations: 18
Function evaluations: 115
Gradient evaluations: 18
Iteration: 1, Func. Count: 8, Neg. LLF: 375.94381491965663
Iteration: 2, Func. Count: 16, Neg. LLF: 169.22683451497392
Iteration: 3, Func. Count: 24, Neg. LLF: 166.14982917522175
Iteration: 4, Func. Count: 32, Neg. LLF: 165.52311131064482
Iteration: 5, Func. Count: 40, Neg. LLF: 165.12243630009914
Iteration: 6, Func. Count: 47, Neg. LLF: 164.7726878440302
Iteration: 7, Func. Count: 54, Neg. LLF: 164.2196068352508
Iteration: 8, Func. Count: 61, Neg. LLF: 164.10584735381684
Iteration: 9, Func. Count: 68, Neg. LLF: 164.41745151452392
Iteration: 10, Func. Count: 76, Neg. LLF: 163.9298756705289
Iteration: 11, Func. Count: 83, Neg. LLF: 163.91068176775747
Iteration: 12, Func. Count: 90, Neg. LLF: 163.88136747939475
Iteration: 13, Func. Count: 97, Neg. LLF: 163.82514482154062
Iteration: 14, Func. Count: 104, Neg. LLF: 163.79896687622352
Iteration: 15, Func. Count: 111, Neg. LLF: 163.79260801692303
Iteration: 16, Func. Count: 118, Neg. LLF: 163.7919335002402
Iteration: 17, Func. Count: 125, Neg. LLF: 163.79191902440886
Iteration: 18, Func. Count: 131, Neg. LLF: 163.7919190363158
Optimization terminated successfully (Exit mode 0)
Current function value: 163.79191902440886
Iterations: 18
Function evaluations: 131
Gradient evaluations: 18
Iteration: 1, Func. Count: 9, Neg. LLF: 376.9035024312731
Iteration: 2, Func. Count: 18, Neg. LLF: 176.70759028356278
Iteration: 3, Func. Count: 27, Neg. LLF: 167.6164068490659
Iteration: 4, Func. Count: 36, Neg. LLF: 166.1390373872849
Iteration: 5, Func. Count: 45, Neg. LLF: 165.50105856130605
Iteration: 6, Func. Count: 54, Neg. LLF: 164.7945053068187
Iteration: 7, Func. Count: 62, Neg. LLF: 164.5698983730257
Iteration: 8, Func. Count: 70, Neg. LLF: 164.24806220029527
Iteration: 9, Func. Count: 78, Neg. LLF: 164.70250110606847
Iteration: 10, Func. Count: 87, Neg. LLF: 163.96154349780863
Iteration: 11, Func. Count: 95, Neg. LLF: 163.95598383767899
Iteration: 12, Func. Count: 103, Neg. LLF: 163.95130362787228
Iteration: 13, Func. Count: 111, Neg. LLF: 163.88858979795904
Iteration: 14, Func. Count: 119, Neg. LLF: 163.79235288661408
Iteration: 15, Func. Count: 127, Neg. LLF: 163.7924148011106
Iteration: 16, Func. Count: 136, Neg. LLF: 163.79193322340228
Iteration: 17, Func. Count: 144, Neg. LLF: 163.7919193517478
Iteration: 18, Func. Count: 152, Neg. LLF: 163.79191863011275
Optimization terminated successfully (Exit mode 0)
Current function value: 163.79191863011275
Iterations: 18
Function evaluations: 152
Gradient evaluations: 18
Iteration: 1, Func. Count: 6, Neg. LLF: 169.111182484259
Iteration: 2, Func. Count: 12, Neg. LLF: 169.59967947579244
Iteration: 3, Func. Count: 18, Neg. LLF: 167.65204011772053
Iteration: 4, Func. Count: 23, Neg. LLF: 167.66155180795633
Iteration: 5, Func. Count: 29, Neg. LLF: 167.44969637265618
Iteration: 6, Func. Count: 34, Neg. LLF: 167.3961667338028
Iteration: 7, Func. Count: 39, Neg. LLF: 167.35990257241366
Iteration: 8, Func. Count: 44, Neg. LLF: 167.34186773409004
Iteration: 9, Func. Count: 49, Neg. LLF: 167.3283513810608
Iteration: 10, Func. Count: 54, Neg. LLF: 167.29275088083796
Iteration: 11, Func. Count: 59, Neg. LLF: 167.27666249235256
Iteration: 12, Func. Count: 64, Neg. LLF: 167.21143207908892
Iteration: 13, Func. Count: 69, Neg. LLF: 167.18839468038038
Iteration: 14, Func. Count: 74, Neg. LLF: 167.1834562418709
Iteration: 15, Func. Count: 79, Neg. LLF: 167.1829253937005
Iteration: 16, Func. Count: 84, Neg. LLF: 167.1828816039233
Iteration: 17, Func. Count: 89, Neg. LLF: 167.1828372663607
Iteration: 18, Func. Count: 93, Neg. LLF: 167.18283726635835
Optimization terminated successfully (Exit mode 0)
Current function value: 167.1828372663607
Iterations: 18
Function evaluations: 93
Gradient evaluations: 18
Iteration: 1, Func. Count: 7, Neg. LLF: 361.993716897696
Iteration: 2, Func. Count: 14, Neg. LLF: 166.9130381973475
Iteration: 3, Func. Count: 21, Neg. LLF: 167.06902538687302
Iteration: 4, Func. Count: 28, Neg. LLF: 166.3800780318505
Iteration: 5, Func. Count: 35, Neg. LLF: 175.37298863412136
Iteration: 6, Func. Count: 42, Neg. LLF: 165.59432246825705
Iteration: 7, Func. Count: 49, Neg. LLF: 165.46760147509636
Iteration: 8, Func. Count: 55, Neg. LLF: 165.27293176601773
Iteration: 9, Func. Count: 61, Neg. LLF: 166.16197096872398
Iteration: 10, Func. Count: 68, Neg. LLF: 166.31663183175272
Iteration: 11, Func. Count: 75, Neg. LLF: 165.8617460359612
Iteration: 12, Func. Count: 82, Neg. LLF: 165.13182157600573
Iteration: 13, Func. Count: 89, Neg. LLF: 164.50516923298767
Iteration: 14, Func. Count: 96, Neg. LLF: 164.17194464290935
Iteration: 15, Func. Count: 102, Neg. LLF: 163.81360836152496
Iteration: 16, Func. Count: 108, Neg. LLF: 163.79397514548828
Iteration: 17, Func. Count: 114, Neg. LLF: 163.7923025706919
Iteration: 18, Func. Count: 120, Neg. LLF: 163.79192465955268
Iteration: 19, Func. Count: 126, Neg. LLF: 163.79191886525723
Iteration: 20, Func. Count: 131, Neg. LLF: 163.79191886483653
Optimization terminated successfully (Exit mode 0)
Current function value: 163.79191886525723
Iterations: 20
Function evaluations: 131
Gradient evaluations: 20
Iteration: 1, Func. Count: 8, Neg. LLF: 359.92990518337075
Iteration: 2, Func. Count: 16, Neg. LLF: 169.02815165147734
Iteration: 3, Func. Count: 24, Neg. LLF: 166.81805328351217
Iteration: 4, Func. Count: 32, Neg. LLF: 170.0530881357839
Iteration: 5, Func. Count: 40, Neg. LLF: 165.99789986405307
Iteration: 6, Func. Count: 48, Neg. LLF: 165.38956153647115
Iteration: 7, Func. Count: 55, Neg. LLF: 166.15558351717812
Iteration: 8, Func. Count: 63, Neg. LLF: 165.1346840067068
Iteration: 9, Func. Count: 70, Neg. LLF: 164.7148899501589
Iteration: 10, Func. Count: 77, Neg. LLF: 163.83704417592708
Iteration: 11, Func. Count: 84, Neg. LLF: 163.70846653804645
Iteration: 12, Func. Count: 91, Neg. LLF: 163.98809966385664
Iteration: 13, Func. Count: 99, Neg. LLF: 163.67810526282116
Iteration: 14, Func. Count: 106, Neg. LLF: 163.6774500159226
Iteration: 15, Func. Count: 113, Neg. LLF: 163.67703699777985
Iteration: 16, Func. Count: 120, Neg. LLF: 163.67703129170414
Iteration: 17, Func. Count: 126, Neg. LLF: 163.6770312916689
Optimization terminated successfully (Exit mode 0)
Current function value: 163.67703129170414
Iterations: 17
Function evaluations: 126
Gradient evaluations: 17
Iteration: 1, Func. Count: 9, Neg. LLF: 356.5413394664744
Iteration: 2, Func. Count: 18, Neg. LLF: 167.1458204879545
Iteration: 3, Func. Count: 27, Neg. LLF: 166.35587043187272
Iteration: 4, Func. Count: 36, Neg. LLF: 165.84091059716314
Iteration: 5, Func. Count: 45, Neg. LLF: 165.3811250130186
Iteration: 6, Func. Count: 54, Neg. LLF: 176.62379232435748
Iteration: 7, Func. Count: 63, Neg. LLF: 164.8620522918904
Iteration: 8, Func. Count: 71, Neg. LLF: 164.38895455271245
Iteration: 9, Func. Count: 79, Neg. LLF: 165.2733614645453
Iteration: 10, Func. Count: 88, Neg. LLF: 165.01973305494644
Iteration: 11, Func. Count: 97, Neg. LLF: 164.43291226679963
Iteration: 12, Func. Count: 106, Neg. LLF: 164.01372381547208
Iteration: 13, Func. Count: 114, Neg. LLF: 163.97803468195676
Iteration: 14, Func. Count: 122, Neg. LLF: 163.97382482914466
Iteration: 15, Func. Count: 131, Neg. LLF: 163.94977829247696
Iteration: 16, Func. Count: 139, Neg. LLF: 163.94806575950116
Iteration: 17, Func. Count: 147, Neg. LLF: 163.9339288532623
Iteration: 18, Func. Count: 155, Neg. LLF: 163.80416029499148
Iteration: 19, Func. Count: 163, Neg. LLF: 163.79395137732672
Iteration: 20, Func. Count: 171, Neg. LLF: 163.79201762397463
Iteration: 21, Func. Count: 179, Neg. LLF: 163.79198315692784
Iteration: 22, Func. Count: 187, Neg. LLF: 163.79191869026994
Iteration: 23, Func. Count: 194, Neg. LLF: 163.79191870266547
Optimization terminated successfully (Exit mode 0)
Current function value: 163.79191869026994
Iterations: 23
Function evaluations: 194
Gradient evaluations: 23
Iteration: 1, Func. Count: 10, Neg. LLF: 359.1785211900054
Iteration: 2, Func. Count: 20, Neg. LLF: 168.82620435499723
Iteration: 3, Func. Count: 30, Neg. LLF: 166.66144971961322
Iteration: 4, Func. Count: 40, Neg. LLF: 166.06897925252244
Iteration: 5, Func. Count: 50, Neg. LLF: 165.42226502668532
Iteration: 6, Func. Count: 60, Neg. LLF: 164.99991541628438
Iteration: 7, Func. Count: 69, Neg. LLF: 164.87858656831068
Iteration: 8, Func. Count: 78, Neg. LLF: 164.5896431637631
Iteration: 9, Func. Count: 87, Neg. LLF: 164.25829758757882
Iteration: 10, Func. Count: 96, Neg. LLF: 163.99173331541493
Iteration: 11, Func. Count: 105, Neg. LLF: 163.95482475793244
Iteration: 12, Func. Count: 115, Neg. LLF: 163.7704838072639
Iteration: 13, Func. Count: 124, Neg. LLF: 163.71147312890344
Iteration: 14, Func. Count: 133, Neg. LLF: 163.68122794525803
Iteration: 15, Func. Count: 142, Neg. LLF: 163.67874909622418
Iteration: 16, Func. Count: 151, Neg. LLF: 163.67709292294464
Iteration: 17, Func. Count: 160, Neg. LLF: 163.67704881683113
Iteration: 18, Func. Count: 169, Neg. LLF: 163.67703118344593
Iteration: 19, Func. Count: 177, Neg. LLF: 163.6770311926052
Optimization terminated successfully (Exit mode 0)
Current function value: 163.67703118344593
Iterations: 19
Function evaluations: 177
Gradient evaluations: 19
Iteration: 1, Func. Count: 7, Neg. LLF: 169.02804946117618
Iteration: 2, Func. Count: 13, Neg. LLF: 169.4491167665653
Iteration: 3, Func. Count: 21, Neg. LLF: 185.62106195808275
Iteration: 4, Func. Count: 28, Neg. LLF: 167.3954432287021
Iteration: 5, Func. Count: 34, Neg. LLF: 167.6559343879839
Iteration: 6, Func. Count: 42, Neg. LLF: 167.5311869992116
Iteration: 7, Func. Count: 49, Neg. LLF: 167.3387074387892
Iteration: 8, Func. Count: 56, Neg. LLF: 167.23034399540163
Iteration: 9, Func. Count: 62, Neg. LLF: 167.29646863303608
Iteration: 10, Func. Count: 69, Neg. LLF: 167.17994029512613
Iteration: 11, Func. Count: 75, Neg. LLF: 167.17104971612034
Iteration: 12, Func. Count: 81, Neg. LLF: 167.11604766945615
Iteration: 13, Func. Count: 87, Neg. LLF: 167.040297555687
Iteration: 14, Func. Count: 93, Neg. LLF: 167.02812362280406
Iteration: 15, Func. Count: 99, Neg. LLF: 167.02756574402457
Iteration: 16, Func. Count: 105, Neg. LLF: 167.02753899419437
Iteration: 17, Func. Count: 111, Neg. LLF: 167.0275380818227
Optimization terminated successfully (Exit mode 0)
Current function value: 167.0275380818227
Iterations: 17
Function evaluations: 111
Gradient evaluations: 17
Iteration: 1, Func. Count: 8, Neg. LLF: 362.1751017929589
Iteration: 2, Func. Count: 16, Neg. LLF: 166.9650233930443
Iteration: 3, Func. Count: 24, Neg. LLF: 166.74588200839165
Iteration: 4, Func. Count: 32, Neg. LLF: 165.65737698649474
Iteration: 5, Func. Count: 40, Neg. LLF: 166.1037124782803
Iteration: 6, Func. Count: 48, Neg. LLF: 165.5292234017185
Iteration: 7, Func. Count: 56, Neg. LLF: 165.48910276839803
Iteration: 8, Func. Count: 64, Neg. LLF: 165.4276461405883
Iteration: 9, Func. Count: 72, Neg. LLF: 171.3534683071494
Iteration: 10, Func. Count: 80, Neg. LLF: 168.11797304555023
Iteration: 11, Func. Count: 88, Neg. LLF: 170.10509692175197
Iteration: 12, Func. Count: 96, Neg. LLF: 168.50528768553386
Iteration: 13, Func. Count: 104, Neg. LLF: 167.57063649347856
Iteration: 14, Func. Count: 112, Neg. LLF: 165.54720374359258
Iteration: 15, Func. Count: 120, Neg. LLF: 164.8258459302257
Iteration: 16, Func. Count: 128, Neg. LLF: 164.38380101540304
Iteration: 17, Func. Count: 136, Neg. LLF: 163.92852993205514
Iteration: 18, Func. Count: 143, Neg. LLF: 163.83698404640734
Iteration: 19, Func. Count: 150, Neg. LLF: 163.8303790958092
Iteration: 20, Func. Count: 158, Neg. LLF: 163.7921214159522
Iteration: 21, Func. Count: 165, Neg. LLF: 163.7919270047955
Iteration: 22, Func. Count: 172, Neg. LLF: 163.79191881094215
Iteration: 23, Func. Count: 178, Neg. LLF: 163.7919188117507
Optimization terminated successfully (Exit mode 0)
Current function value: 163.79191881094215
Iterations: 23
Function evaluations: 178
Gradient evaluations: 23
Iteration: 1, Func. Count: 9, Neg. LLF: 360.4965911514366
Iteration: 2, Func. Count: 18, Neg. LLF: 169.00175954767445
Iteration: 3, Func. Count: 27, Neg. LLF: 166.9083118621618
Iteration: 4, Func. Count: 36, Neg. LLF: 168.8965260370968
Iteration: 5, Func. Count: 45, Neg. LLF: 166.11120807834402
Iteration: 6, Func. Count: 54, Neg. LLF: 165.41847776794495
Iteration: 7, Func. Count: 62, Neg. LLF: 166.28186444717213
Iteration: 8, Func. Count: 71, Neg. LLF: 165.2866253878962
Iteration: 9, Func. Count: 79, Neg. LLF: 164.79838327403246
Iteration: 10, Func. Count: 87, Neg. LLF: 163.83918870886095
Iteration: 11, Func. Count: 95, Neg. LLF: 163.68452675461177
Iteration: 12, Func. Count: 103, Neg. LLF: 163.69169262223988
Iteration: 13, Func. Count: 112, Neg. LLF: 163.67721704332416
Iteration: 14, Func. Count: 120, Neg. LLF: 163.6772922541909
Iteration: 15, Func. Count: 129, Neg. LLF: 163.67703146583577
Iteration: 16, Func. Count: 136, Neg. LLF: 163.67703146620283
Optimization terminated successfully (Exit mode 0)
Current function value: 163.67703146583577
Iterations: 16
Function evaluations: 136
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 357.282376506943
Iteration: 2, Func. Count: 20, Neg. LLF: 167.1918452706049
Iteration: 3, Func. Count: 30, Neg. LLF: 166.16386960808669
Iteration: 4, Func. Count: 40, Neg. LLF: 169.28574234609383
Iteration: 5, Func. Count: 50, Neg. LLF: 165.29036034381838
Iteration: 6, Func. Count: 59, Neg. LLF: 164.9634714917721
Iteration: 7, Func. Count: 68, Neg. LLF: 164.84383062933455
Iteration: 8, Func. Count: 77, Neg. LLF: 164.65965113133325
Iteration: 9, Func. Count: 86, Neg. LLF: 164.3645745128594
Iteration: 10, Func. Count: 95, Neg. LLF: 164.14316815957665
Iteration: 11, Func. Count: 104, Neg. LLF: 164.15018486119166
Iteration: 12, Func. Count: 114, Neg. LLF: 163.97993416612488
Iteration: 13, Func. Count: 123, Neg. LLF: 163.95484899960522
Iteration: 14, Func. Count: 132, Neg. LLF: 163.95583923301288
Iteration: 15, Func. Count: 142, Neg. LLF: 163.93371754567008
Iteration: 16, Func. Count: 151, Neg. LLF: 163.85022764744903
Iteration: 17, Func. Count: 160, Neg. LLF: 163.81377840188082
Iteration: 18, Func. Count: 169, Neg. LLF: 163.811799980745
Iteration: 19, Func. Count: 179, Neg. LLF: 163.792124630715
Iteration: 20, Func. Count: 188, Neg. LLF: 163.79191879540426
Iteration: 21, Func. Count: 196, Neg. LLF: 163.79191880731284
Optimization terminated successfully (Exit mode 0)
Current function value: 163.79191879540426
Iterations: 21
Function evaluations: 196
Gradient evaluations: 21
Iteration: 1, Func. Count: 11, Neg. LLF: 359.89638140983925
Iteration: 2, Func. Count: 22, Neg. LLF: 168.95563801174328
Iteration: 3, Func. Count: 33, Neg. LLF: 167.41153245755186
Iteration: 4, Func. Count: 44, Neg. LLF: 166.35357499291948
Iteration: 5, Func. Count: 55, Neg. LLF: 166.34823675390365
Iteration: 6, Func. Count: 66, Neg. LLF: 165.25260878394263
Iteration: 7, Func. Count: 76, Neg. LLF: 164.69431774404347
Iteration: 8, Func. Count: 86, Neg. LLF: 164.7339859158667
Iteration: 9, Func. Count: 97, Neg. LLF: 164.67051174828165
Iteration: 10, Func. Count: 108, Neg. LLF: 164.11676860896463
Iteration: 11, Func. Count: 118, Neg. LLF: 164.06178093610546
Iteration: 12, Func. Count: 128, Neg. LLF: 163.91725800343275
Iteration: 13, Func. Count: 138, Neg. LLF: 163.80504783425334
Iteration: 14, Func. Count: 148, Neg. LLF: 163.82503060011882
Iteration: 15, Func. Count: 159, Neg. LLF: 163.7919817111499
Iteration: 16, Func. Count: 169, Neg. LLF: 163.79191871678003
Iteration: 17, Func. Count: 178, Neg. LLF: 163.7919187376973
Optimization terminated successfully (Exit mode 0)
Current function value: 163.79191871678003
Iterations: 17
Function evaluations: 178
Gradient evaluations: 17
Iteration: 1, Func. Count: 8, Neg. LLF: 169.18873195306128
Iteration: 2, Func. Count: 17, Neg. LLF: 167.55379724436196
Iteration: 3, Func. Count: 25, Neg. LLF: 168.62760330430814
Iteration: 4, Func. Count: 33, Neg. LLF: 167.64804904345593
Iteration: 5, Func. Count: 41, Neg. LLF: 167.47143140260343
Iteration: 6, Func. Count: 49, Neg. LLF: 167.46701501829511
Iteration: 7, Func. Count: 57, Neg. LLF: 167.4307713980157
Iteration: 8, Func. Count: 65, Neg. LLF: 167.37238235416046
Iteration: 9, Func. Count: 73, Neg. LLF: 167.33728693563398
Iteration: 10, Func. Count: 80, Neg. LLF: 167.50787503384316
Iteration: 11, Func. Count: 88, Neg. LLF: 167.78740961721795
Iteration: 12, Func. Count: 96, Neg. LLF: 167.70955359451727
Iteration: 13, Func. Count: 104, Neg. LLF: 167.66572702214728
Iteration: 14, Func. Count: 112, Neg. LLF: 167.46290531466116
Iteration: 15, Func. Count: 120, Neg. LLF: 167.19669308598998
Iteration: 16, Func. Count: 127, Neg. LLF: 167.13677746828643
Iteration: 17, Func. Count: 134, Neg. LLF: 167.10840315856396
Iteration: 18, Func. Count: 141, Neg. LLF: 167.07955178923763
Iteration: 19, Func. Count: 148, Neg. LLF: 167.0551078858161
Iteration: 20, Func. Count: 155, Neg. LLF: 167.0408537895032
Iteration: 21, Func. Count: 162, Neg. LLF: 167.0352705391305
Iteration: 22, Func. Count: 169, Neg. LLF: 167.02914968019735
Iteration: 23, Func. Count: 176, Neg. LLF: 167.02847959741166
Iteration: 24, Func. Count: 183, Neg. LLF: 167.0278423688244
Iteration: 25, Func. Count: 190, Neg. LLF: 167.02772907798683
Iteration: 26, Func. Count: 197, Neg. LLF: 167.0277082137145
Iteration: 27, Func. Count: 204, Neg. LLF: 167.02767134387562
Iteration: 28, Func. Count: 211, Neg. LLF: 167.02761156195513
Iteration: 29, Func. Count: 218, Neg. LLF: 167.0275599225061
Iteration: 30, Func. Count: 225, Neg. LLF: 167.02754048113883
Iteration: 31, Func. Count: 232, Neg. LLF: 167.0275381309206
Iteration: 32, Func. Count: 238, Neg. LLF: 167.02753813628502
Optimization terminated successfully (Exit mode 0)
Current function value: 167.0275381309206
Iterations: 32
Function evaluations: 238
Gradient evaluations: 32
Iteration: 1, Func. Count: 9, Neg. LLF: 362.3279403449453
Iteration: 2, Func. Count: 18, Neg. LLF: 167.00224420396083
Iteration: 3, Func. Count: 27, Neg. LLF: 166.82476944869381
Iteration: 4, Func. Count: 36, Neg. LLF: 166.3713976025432
Iteration: 5, Func. Count: 45, Neg. LLF: 166.6839201872876
Iteration: 6, Func. Count: 54, Neg. LLF: 166.08411794360097
Iteration: 7, Func. Count: 63, Neg. LLF: 165.81062254892328
Iteration: 8, Func. Count: 72, Neg. LLF: 165.7040414246169
Iteration: 9, Func. Count: 81, Neg. LLF: 165.51415092181801
Iteration: 10, Func. Count: 90, Neg. LLF: 165.4548451685841
Iteration: 11, Func. Count: 99, Neg. LLF: 165.3587290999981
Iteration: 12, Func. Count: 107, Neg. LLF: 165.32139041263554
Iteration: 13, Func. Count: 115, Neg. LLF: 165.06414145552424
Iteration: 14, Func. Count: 123, Neg. LLF: 165.70014379645784
Iteration: 15, Func. Count: 132, Neg. LLF: 165.09517004403494
Iteration: 16, Func. Count: 141, Neg. LLF: 167.37156741390962
Iteration: 17, Func. Count: 150, Neg. LLF: 168.20035002624948
Iteration: 18, Func. Count: 159, Neg. LLF: 164.06767343978882
Iteration: 19, Func. Count: 167, Neg. LLF: 164.5794210072071
Iteration: 20, Func. Count: 177, Neg. LLF: 164.4809118957442
Iteration: 21, Func. Count: 186, Neg. LLF: 163.79315905879815
Iteration: 22, Func. Count: 194, Neg. LLF: 163.79192767100014
Iteration: 23, Func. Count: 202, Neg. LLF: 163.7919192368158
Iteration: 24, Func. Count: 210, Neg. LLF: 163.7919185993769
Optimization terminated successfully (Exit mode 0)
Current function value: 163.7919185993769
Iterations: 24
Function evaluations: 210
Gradient evaluations: 24
Iteration: 1, Func. Count: 10, Neg. LLF: 360.54280067259845
Iteration: 2, Func. Count: 20, Neg. LLF: 169.28944671218756
Iteration: 3, Func. Count: 30, Neg. LLF: 167.04643851229628
Iteration: 4, Func. Count: 40, Neg. LLF: 167.03014146683032
Iteration: 5, Func. Count: 50, Neg. LLF: 165.50524584744988
Iteration: 6, Func. Count: 59, Neg. LLF: 180.38569314288438
Iteration: 7, Func. Count: 70, Neg. LLF: 165.4379785440212
Iteration: 8, Func. Count: 80, Neg. LLF: 165.41608288529437
Iteration: 9, Func. Count: 90, Neg. LLF: 165.45704212386576
Iteration: 10, Func. Count: 100, Neg. LLF: 164.81497659547028
Iteration: 11, Func. Count: 109, Neg. LLF: 164.15505264944986
Iteration: 12, Func. Count: 118, Neg. LLF: 164.09330753119846
Iteration: 13, Func. Count: 127, Neg. LLF: 164.02979182884604
Iteration: 14, Func. Count: 136, Neg. LLF: 163.86010151875126
Iteration: 15, Func. Count: 145, Neg. LLF: 163.74053964375622
Iteration: 16, Func. Count: 154, Neg. LLF: 163.6933406649503
Iteration: 17, Func. Count: 163, Neg. LLF: 163.67907163111292
Iteration: 18, Func. Count: 172, Neg. LLF: 163.67733960486146
Iteration: 19, Func. Count: 181, Neg. LLF: 163.67704290878882
Iteration: 20, Func. Count: 190, Neg. LLF: 163.67700225979817
Iteration: 21, Func. Count: 199, Neg. LLF: 163.67700084003545
Iteration: 22, Func. Count: 207, Neg. LLF: 163.6770008400012
Optimization terminated successfully (Exit mode 0)
Current function value: 163.67700084003545
Iterations: 22
Function evaluations: 207
Gradient evaluations: 22
Iteration: 1, Func. Count: 11, Neg. LLF: 357.4285786790292
Iteration: 2, Func. Count: 22, Neg. LLF: 168.31812902257374
Iteration: 3, Func. Count: 33, Neg. LLF: 164.4945677328093
Iteration: 4, Func. Count: 43, Neg. LLF: 170.7340712770431
Iteration: 5, Func. Count: 55, Neg. LLF: 164.4279366891301
Iteration: 6, Func. Count: 66, Neg. LLF: 164.11928752236386
Iteration: 7, Func. Count: 76, Neg. LLF: 163.87491290589472
Iteration: 8, Func. Count: 86, Neg. LLF: 163.80140939350986
Iteration: 9, Func. Count: 96, Neg. LLF: 163.78047971823523
Iteration: 10, Func. Count: 106, Neg. LLF: 163.752891189837
Iteration: 11, Func. Count: 116, Neg. LLF: 163.75151624871435
Iteration: 12, Func. Count: 126, Neg. LLF: 163.7514898733604
Iteration: 13, Func. Count: 136, Neg. LLF: 163.75148178321044
Iteration: 14, Func. Count: 145, Neg. LLF: 163.75148178326396
Optimization terminated successfully (Exit mode 0)
Current function value: 163.75148178321044
Iterations: 14
Function evaluations: 145
Gradient evaluations: 14
Iteration: 1, Func. Count: 12, Neg. LLF: 359.82377451872
Iteration: 2, Func. Count: 24, Neg. LLF: 168.64335920310032
Iteration: 3, Func. Count: 36, Neg. LLF: 167.27493537022073
Iteration: 4, Func. Count: 48, Neg. LLF: 166.2571449317531
Iteration: 5, Func. Count: 60, Neg. LLF: 165.4178386009842
Iteration: 6, Func. Count: 72, Neg. LLF: 164.81712939938325
Iteration: 7, Func. Count: 83, Neg. LLF: 164.9306095779037
Iteration: 8, Func. Count: 95, Neg. LLF: 164.531730589045
Iteration: 9, Func. Count: 106, Neg. LLF: 165.6101941608569
Iteration: 10, Func. Count: 118, Neg. LLF: 164.3926404771253
Iteration: 11, Func. Count: 129, Neg. LLF: 164.23925873414314
Iteration: 12, Func. Count: 140, Neg. LLF: 164.21092660512844
Iteration: 13, Func. Count: 151, Neg. LLF: 164.10795256301017
Iteration: 14, Func. Count: 162, Neg. LLF: 164.04281301634043
Iteration: 15, Func. Count: 173, Neg. LLF: 163.92543283496414
Iteration: 16, Func. Count: 184, Neg. LLF: 163.96791717165874
Iteration: 17, Func. Count: 196, Neg. LLF: 163.80246357429712
Iteration: 18, Func. Count: 207, Neg. LLF: 163.80050955928562
Iteration: 19, Func. Count: 219, Neg. LLF: 163.79202462028653
Iteration: 20, Func. Count: 230, Neg. LLF: 163.79191904969883
Iteration: 21, Func. Count: 240, Neg. LLF: 163.79191906973332
Optimization terminated successfully (Exit mode 0)
Current function value: 163.79191904969883
Iterations: 21
Function evaluations: 240
Gradient evaluations: 21
Iteration: 1, Func. Count: 9, Neg. LLF: 169.31918945898616
Iteration: 2, Func. Count: 19, Neg. LLF: 168.82607071760978
Iteration: 3, Func. Count: 29, Neg. LLF: 167.63597160217566
Iteration: 4, Func. Count: 38, Neg. LLF: 167.5370995658099
Iteration: 5, Func. Count: 47, Neg. LLF: 167.35917544083856
Iteration: 6, Func. Count: 56, Neg. LLF: 167.29217471606796
Iteration: 7, Func. Count: 64, Neg. LLF: 167.2742640536029
Iteration: 8, Func. Count: 72, Neg. LLF: 167.13195683673445
Iteration: 9, Func. Count: 80, Neg. LLF: 170.47802228304496
Iteration: 10, Func. Count: 89, Neg. LLF: 169.55530505014417
Iteration: 11, Func. Count: 98, Neg. LLF: 170.2186303455717
Iteration: 12, Func. Count: 107, Neg. LLF: 168.1143005283621
Iteration: 13, Func. Count: 116, Neg. LLF: 166.7816744929935
Iteration: 14, Func. Count: 125, Neg. LLF: 166.38403373355638
Iteration: 15, Func. Count: 133, Neg. LLF: 166.20835467886073
Iteration: 16, Func. Count: 141, Neg. LLF: 166.09867994323105
Iteration: 17, Func. Count: 149, Neg. LLF: 166.08993195861532
Iteration: 18, Func. Count: 157, Neg. LLF: 166.087783733512
Iteration: 19, Func. Count: 165, Neg. LLF: 166.08753049824887
Iteration: 20, Func. Count: 173, Neg. LLF: 166.08748510092835
Iteration: 21, Func. Count: 180, Neg. LLF: 166.0874851009617
Optimization terminated successfully (Exit mode 0)
Current function value: 166.08748510092835
Iterations: 21
Function evaluations: 180
Gradient evaluations: 21
Iteration: 1, Func. Count: 10, Neg. LLF: 367.1075394466252
Iteration: 2, Func. Count: 20, Neg. LLF: 172.5378326424726
Iteration: 3, Func. Count: 31, Neg. LLF: 165.92184208821618
Iteration: 4, Func. Count: 41, Neg. LLF: 165.65636530664003
Iteration: 5, Func. Count: 51, Neg. LLF: 165.78964090280851
Iteration: 6, Func. Count: 61, Neg. LLF: 165.4814672898782
Iteration: 7, Func. Count: 71, Neg. LLF: 165.5788290764438
Iteration: 8, Func. Count: 81, Neg. LLF: 165.32162363794387
Iteration: 9, Func. Count: 90, Neg. LLF: 165.06479156763302
Iteration: 10, Func. Count: 99, Neg. LLF: 165.9165065146804
Iteration: 11, Func. Count: 109, Neg. LLF: 166.53571554946797
Iteration: 12, Func. Count: 119, Neg. LLF: 172.17666507769528
Iteration: 13, Func. Count: 129, Neg. LLF: 165.8200844612888
Iteration: 14, Func. Count: 139, Neg. LLF: 169.34235713227963
Iteration: 15, Func. Count: 149, Neg. LLF: 166.20919208410083
Iteration: 16, Func. Count: 159, Neg. LLF: 164.83873045821034
Iteration: 17, Func. Count: 169, Neg. LLF: 163.86726317681368
Iteration: 18, Func. Count: 178, Neg. LLF: 163.87616108905584
Iteration: 19, Func. Count: 188, Neg. LLF: 163.79480039737308
Iteration: 20, Func. Count: 197, Neg. LLF: 163.7983016665243
Iteration: 21, Func. Count: 207, Neg. LLF: 163.79192966233683
Iteration: 22, Func. Count: 216, Neg. LLF: 163.7919187777336
Iteration: 23, Func. Count: 224, Neg. LLF: 163.7919187774287
Optimization terminated successfully (Exit mode 0)
Current function value: 163.7919187777336
Iterations: 23
Function evaluations: 224
Gradient evaluations: 23
Iteration: 1, Func. Count: 11, Neg. LLF: 361.1143059338656
Iteration: 2, Func. Count: 22, Neg. LLF: 169.27080027974344
Iteration: 3, Func. Count: 33, Neg. LLF: 165.92602620353748
Iteration: 4, Func. Count: 43, Neg. LLF: 166.49848420606028
Iteration: 5, Func. Count: 54, Neg. LLF: 169.30634355751627
Iteration: 6, Func. Count: 65, Neg. LLF: 165.64362915407762
Iteration: 7, Func. Count: 76, Neg. LLF: 180.06654118355476
Iteration: 8, Func. Count: 87, Neg. LLF: 165.2086356655407
Iteration: 9, Func. Count: 97, Neg. LLF: 165.18610423271957
Iteration: 10, Func. Count: 108, Neg. LLF: 164.77127682283478
Iteration: 11, Func. Count: 118, Neg. LLF: 164.00731207139634
Iteration: 12, Func. Count: 128, Neg. LLF: 168.6030361131928
Iteration: 13, Func. Count: 139, Neg. LLF: 163.94359758066474
Iteration: 14, Func. Count: 150, Neg. LLF: 163.6992166407306
Iteration: 15, Func. Count: 160, Neg. LLF: 163.67853123227604
Iteration: 16, Func. Count: 170, Neg. LLF: 163.67739360405875
Iteration: 17, Func. Count: 180, Neg. LLF: 163.6771564583767
Iteration: 18, Func. Count: 190, Neg. LLF: 163.6770095999803
Iteration: 19, Func. Count: 200, Neg. LLF: 163.67700081579144
Iteration: 20, Func. Count: 209, Neg. LLF: 163.67700081541793
Optimization terminated successfully (Exit mode 0)
Current function value: 163.67700081579144
Iterations: 20
Function evaluations: 209
Gradient evaluations: 20
Iteration: 1, Func. Count: 12, Neg. LLF: 358.1738575711478
Iteration: 2, Func. Count: 24, Neg. LLF: 167.08089049128708
Iteration: 3, Func. Count: 36, Neg. LLF: 165.01973845024452
Iteration: 4, Func. Count: 47, Neg. LLF: 165.405759507174
Iteration: 5, Func. Count: 59, Neg. LLF: 164.67801710681067
Iteration: 6, Func. Count: 70, Neg. LLF: 164.25770525026937
Iteration: 7, Func. Count: 81, Neg. LLF: 164.2617156493122
Iteration: 8, Func. Count: 93, Neg. LLF: 163.98491912411257
Iteration: 9, Func. Count: 104, Neg. LLF: 163.89212438592273
Iteration: 10, Func. Count: 115, Neg. LLF: 163.82399683337152
Iteration: 11, Func. Count: 126, Neg. LLF: 163.77012772986183
Iteration: 12, Func. Count: 137, Neg. LLF: 163.75572639306458
Iteration: 13, Func. Count: 148, Neg. LLF: 163.75179062617167
Iteration: 14, Func. Count: 159, Neg. LLF: 163.75151434174958
Iteration: 15, Func. Count: 170, Neg. LLF: 163.75148179273603
Iteration: 16, Func. Count: 180, Neg. LLF: 163.75148179284085
Optimization terminated successfully (Exit mode 0)
Current function value: 163.75148179273603
Iterations: 16
Function evaluations: 180
Gradient evaluations: 16
Iteration: 1, Func. Count: 13, Neg. LLF: 360.7546945105095
Iteration: 2, Func. Count: 26, Neg. LLF: 166.54906447955548
Iteration: 3, Func. Count: 39, Neg. LLF: 167.1213258424962
Iteration: 4, Func. Count: 52, Neg. LLF: 166.0434373347439
Iteration: 5, Func. Count: 65, Neg. LLF: 164.68497000888237
Iteration: 6, Func. Count: 77, Neg. LLF: 165.88691652234786
Iteration: 7, Func. Count: 90, Neg. LLF: 164.92577317260233
Iteration: 8, Func. Count: 103, Neg. LLF: 164.41883782513662
Iteration: 9, Func. Count: 115, Neg. LLF: 166.2190441569036
Iteration: 10, Func. Count: 128, Neg. LLF: 165.5461721794137
Iteration: 11, Func. Count: 141, Neg. LLF: 164.18267712692014
Iteration: 12, Func. Count: 154, Neg. LLF: 164.0702541934243
Iteration: 13, Func. Count: 166, Neg. LLF: 164.06337961741423
Iteration: 14, Func. Count: 178, Neg. LLF: 164.05881970349742
Iteration: 15, Func. Count: 190, Neg. LLF: 164.0571518491947
Iteration: 16, Func. Count: 202, Neg. LLF: 164.0548203095995
Iteration: 17, Func. Count: 214, Neg. LLF: 163.9700904277691
Iteration: 18, Func. Count: 226, Neg. LLF: 163.81132717180571
Iteration: 19, Func. Count: 238, Neg. LLF: 184.48098597374846
Iteration: 20, Func. Count: 253, Neg. LLF: 164.22249906946428
Iteration: 21, Func. Count: 266, Neg. LLF: 163.79220394914648
Iteration: 22, Func. Count: 278, Neg. LLF: 163.79194623304252
Iteration: 23, Func. Count: 290, Neg. LLF: 163.79191862824598
Iteration: 24, Func. Count: 301, Neg. LLF: 163.7919186489017
Optimization terminated successfully (Exit mode 0)
Current function value: 163.79191862824598
Iterations: 25
Function evaluations: 301
Gradient evaluations: 24
Iteration: 1, Func. Count: 6, Neg. LLF: 167.72573752239668
Iteration: 2, Func. Count: 11, Neg. LLF: 167.51476418706034
Iteration: 3, Func. Count: 16, Neg. LLF: 167.28953375252306
Iteration: 4, Func. Count: 21, Neg. LLF: 167.00907718552378
Iteration: 5, Func. Count: 26, Neg. LLF: 166.94446741736587
Iteration: 6, Func. Count: 31, Neg. LLF: 166.83627193170062
Iteration: 7, Func. Count: 36, Neg. LLF: 166.6570680910389
Iteration: 8, Func. Count: 41, Neg. LLF: 166.24413795881398
Iteration: 9, Func. Count: 46, Neg. LLF: 165.8514345623635
Iteration: 10, Func. Count: 51, Neg. LLF: 165.46838780377396
Iteration: 11, Func. Count: 56, Neg. LLF: 165.4457678316957
Iteration: 12, Func. Count: 61, Neg. LLF: 165.44056061876447
Iteration: 13, Func. Count: 66, Neg. LLF: 165.44051336472802
Iteration: 14, Func. Count: 70, Neg. LLF: 165.4405133647079
Optimization terminated successfully (Exit mode 0)
Current function value: 165.44051336472802
Iterations: 14
Function evaluations: 70
Gradient evaluations: 14
Iteration: 1, Func. Count: 7, Neg. LLF: 369.3058421199048
Iteration: 2, Func. Count: 14, Neg. LLF: 168.38786139924855
Iteration: 3, Func. Count: 21, Neg. LLF: 165.52502893435337
Iteration: 4, Func. Count: 28, Neg. LLF: 165.50481996224394
Iteration: 5, Func. Count: 35, Neg. LLF: 165.33185171999895
Iteration: 6, Func. Count: 41, Neg. LLF: 165.38939098547553
Iteration: 7, Func. Count: 48, Neg. LLF: 165.2808912745015
Iteration: 8, Func. Count: 54, Neg. LLF: 165.14160450266874
Iteration: 9, Func. Count: 60, Neg. LLF: 166.16756276653322
Iteration: 10, Func. Count: 67, Neg. LLF: 166.2479274652891
Iteration: 11, Func. Count: 74, Neg. LLF: 165.45901553316864
Iteration: 12, Func. Count: 81, Neg. LLF: 165.00911400735566
Iteration: 13, Func. Count: 88, Neg. LLF: 164.0587336472743
Iteration: 14, Func. Count: 94, Neg. LLF: 164.3384096238201
Iteration: 15, Func. Count: 101, Neg. LLF: 165.1482102864858
Iteration: 16, Func. Count: 108, Neg. LLF: 163.79759058570258
Iteration: 17, Func. Count: 114, Neg. LLF: 163.79952457116022
Iteration: 18, Func. Count: 121, Neg. LLF: 163.791963970803
Iteration: 19, Func. Count: 127, Neg. LLF: 163.79192119824356
Iteration: 20, Func. Count: 133, Neg. LLF: 163.79191859915522
Iteration: 21, Func. Count: 138, Neg. LLF: 163.79191859917265
Optimization terminated successfully (Exit mode 0)
Current function value: 163.79191859915522
Iterations: 21
Function evaluations: 138
Gradient evaluations: 21
Iteration: 1, Func. Count: 8, Neg. LLF: 374.1636999625573
Iteration: 2, Func. Count: 16, Neg. LLF: 167.3783279588481
Iteration: 3, Func. Count: 24, Neg. LLF: 164.6730076655854
Iteration: 4, Func. Count: 31, Neg. LLF: 166.39031403090223
Iteration: 5, Func. Count: 39, Neg. LLF: 177.37849101612534
Iteration: 6, Func. Count: 47, Neg. LLF: 163.60720252736655
Iteration: 7, Func. Count: 54, Neg. LLF: 163.5250347800643
Iteration: 8, Func. Count: 61, Neg. LLF: 163.50507856176318
Iteration: 9, Func. Count: 68, Neg. LLF: 163.48879916556552
Iteration: 10, Func. Count: 75, Neg. LLF: 163.47702457249403
Iteration: 11, Func. Count: 82, Neg. LLF: 163.47489631132842
Iteration: 12, Func. Count: 89, Neg. LLF: 163.4745652306992
Iteration: 13, Func. Count: 96, Neg. LLF: 163.47452989955696
Iteration: 14, Func. Count: 102, Neg. LLF: 163.47452989961863
Optimization terminated successfully (Exit mode 0)
Current function value: 163.47452989955696
Iterations: 14
Function evaluations: 102
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 376.9029483017661
Iteration: 2, Func. Count: 18, Neg. LLF: 168.84520902580758
Iteration: 3, Func. Count: 27, Neg. LLF: 166.83999387589068
Iteration: 4, Func. Count: 36, Neg. LLF: 166.36786941630206
Iteration: 5, Func. Count: 45, Neg. LLF: 165.71423078216912
Iteration: 6, Func. Count: 54, Neg. LLF: 164.18651249425298
Iteration: 7, Func. Count: 62, Neg. LLF: 163.5825368799564
Iteration: 8, Func. Count: 70, Neg. LLF: 163.5706671766517
Iteration: 9, Func. Count: 78, Neg. LLF: 163.55439759373064
Iteration: 10, Func. Count: 86, Neg. LLF: 163.5309940261123
Iteration: 11, Func. Count: 94, Neg. LLF: 163.5031258157186
Iteration: 12, Func. Count: 102, Neg. LLF: 163.47887586181042
Iteration: 13, Func. Count: 110, Neg. LLF: 163.4746808083993
Iteration: 14, Func. Count: 118, Neg. LLF: 163.47453372447725
Iteration: 15, Func. Count: 126, Neg. LLF: 163.47453119472496
Iteration: 16, Func. Count: 134, Neg. LLF: 163.4745299585762
Iteration: 17, Func. Count: 141, Neg. LLF: 163.47453010402052
Optimization terminated successfully (Exit mode 0)
Current function value: 163.4745299585762
Iterations: 17
Function evaluations: 141
Gradient evaluations: 17
Iteration: 1, Func. Count: 10, Neg. LLF: 378.2063828901662
Iteration: 2, Func. Count: 20, Neg. LLF: 171.9887515712189
Iteration: 3, Func. Count: 30, Neg. LLF: 166.33480062645512
Iteration: 4, Func. Count: 40, Neg. LLF: 165.2648002464378
Iteration: 5, Func. Count: 50, Neg. LLF: 163.77757767452306
Iteration: 6, Func. Count: 59, Neg. LLF: 163.4862339527917
Iteration: 7, Func. Count: 68, Neg. LLF: 163.16733186897696
Iteration: 8, Func. Count: 77, Neg. LLF: 163.10430754097456
Iteration: 9, Func. Count: 86, Neg. LLF: 162.9347109180894
Iteration: 10, Func. Count: 95, Neg. LLF: 162.7915898558071
Iteration: 11, Func. Count: 104, Neg. LLF: 162.64216259514623
Iteration: 12, Func. Count: 113, Neg. LLF: 162.98224422058502
Iteration: 13, Func. Count: 123, Neg. LLF: 162.43346373428687
Iteration: 14, Func. Count: 132, Neg. LLF: 162.38958910595653
Iteration: 15, Func. Count: 141, Neg. LLF: 162.3364483773279
Iteration: 16, Func. Count: 150, Neg. LLF: 162.31182759500183
Iteration: 17, Func. Count: 159, Neg. LLF: 162.28759762519422
Iteration: 18, Func. Count: 168, Neg. LLF: 162.27896733513805
Iteration: 19, Func. Count: 177, Neg. LLF: 162.27682015365798
Iteration: 20, Func. Count: 186, Neg. LLF: 162.27672973901414
Iteration: 21, Func. Count: 195, Neg. LLF: 162.2767246475429
Iteration: 22, Func. Count: 214, Neg. LLF: 162.2767727337578
Iteration: 23, Func. Count: 224, Neg. LLF: 162.276732031682
Iteration: 24, Func. Count: 233, Neg. LLF: 162.27674757313588
Optimization terminated successfully (Exit mode 0)
Current function value: 162.27673137056513
Iterations: 25
Function evaluations: 234
Gradient evaluations: 24
Iteration: 1, Func. Count: 7, Neg. LLF: 168.06964885451413
Iteration: 2, Func. Count: 13, Neg. LLF: 167.56404166656375
Iteration: 3, Func. Count: 19, Neg. LLF: 167.19089874394604
Iteration: 4, Func. Count: 25, Neg. LLF: 167.02668182128673
Iteration: 5, Func. Count: 31, Neg. LLF: 167.0141497931452
Iteration: 6, Func. Count: 37, Neg. LLF: 167.2385629204894
Iteration: 7, Func. Count: 44, Neg. LLF: 166.82428928809088
Iteration: 8, Func. Count: 50, Neg. LLF: 166.53374317418974
Iteration: 9, Func. Count: 56, Neg. LLF: 165.77007779294374
Iteration: 10, Func. Count: 62, Neg. LLF: 165.60410666471765
Iteration: 11, Func. Count: 68, Neg. LLF: 165.52635931021956
Iteration: 12, Func. Count: 74, Neg. LLF: 165.48844029852557
Iteration: 13, Func. Count: 80, Neg. LLF: 165.44664820181308
Iteration: 14, Func. Count: 86, Neg. LLF: 165.42449293182818
Iteration: 15, Func. Count: 92, Neg. LLF: 165.41962929046562
Iteration: 16, Func. Count: 98, Neg. LLF: 165.4165569981671
Iteration: 17, Func. Count: 104, Neg. LLF: 165.4163301042662
Iteration: 18, Func. Count: 110, Neg. LLF: 165.41628799479452
Iteration: 19, Func. Count: 116, Neg. LLF: 165.41628562786917
Iteration: 20, Func. Count: 121, Neg. LLF: 165.41628562784268
Optimization terminated successfully (Exit mode 0)
Current function value: 165.41628562786917
Iterations: 20
Function evaluations: 121
Gradient evaluations: 20
Iteration: 1, Func. Count: 8, Neg. LLF: 357.34282219007025
Iteration: 2, Func. Count: 16, Neg. LLF: 167.89067551342643
Iteration: 3, Func. Count: 24, Neg. LLF: 168.68861631180647
Iteration: 4, Func. Count: 32, Neg. LLF: 165.72639679236664
Iteration: 5, Func. Count: 40, Neg. LLF: 165.9461489951936
Iteration: 6, Func. Count: 48, Neg. LLF: 165.3549150535727
Iteration: 7, Func. Count: 55, Neg. LLF: 166.7956611816182
Iteration: 8, Func. Count: 63, Neg. LLF: 165.31601621403271
Iteration: 9, Func. Count: 70, Neg. LLF: 165.28862440452966
Iteration: 10, Func. Count: 77, Neg. LLF: 164.82009633472455
Iteration: 11, Func. Count: 84, Neg. LLF: 164.7538738001142
Iteration: 12, Func. Count: 92, Neg. LLF: 170.9629637252304
Iteration: 13, Func. Count: 100, Neg. LLF: 164.6997467529705
Iteration: 14, Func. Count: 108, Neg. LLF: 163.8660312882628
Iteration: 15, Func. Count: 115, Neg. LLF: 163.8055511603122
Iteration: 16, Func. Count: 122, Neg. LLF: 163.80215845155226
Iteration: 17, Func. Count: 130, Neg. LLF: 163.7919846152589
Iteration: 18, Func. Count: 137, Neg. LLF: 163.7919186084662
Iteration: 19, Func. Count: 143, Neg. LLF: 163.79191860831966
Optimization terminated successfully (Exit mode 0)
Current function value: 163.7919186084662
Iterations: 19
Function evaluations: 143
Gradient evaluations: 19
Iteration: 1, Func. Count: 9, Neg. LLF: 353.1756275633211
Iteration: 2, Func. Count: 18, Neg. LLF: 167.1748505975788
Iteration: 3, Func. Count: 27, Neg. LLF: 164.6534420498374
Iteration: 4, Func. Count: 35, Neg. LLF: 185.74050401025025
Iteration: 5, Func. Count: 45, Neg. LLF: 164.28366594164564
Iteration: 6, Func. Count: 53, Neg. LLF: 164.27961886763228
Iteration: 7, Func. Count: 62, Neg. LLF: 163.97763903644767
Iteration: 8, Func. Count: 70, Neg. LLF: 163.7358755541195
Iteration: 9, Func. Count: 78, Neg. LLF: 163.67808664119954
Iteration: 10, Func. Count: 86, Neg. LLF: 163.66587060349576
Iteration: 11, Func. Count: 94, Neg. LLF: 163.66140398234003
Iteration: 12, Func. Count: 102, Neg. LLF: 163.6473474433539
Iteration: 13, Func. Count: 110, Neg. LLF: 165.938145503147
Iteration: 14, Func. Count: 119, Neg. LLF: 168.01902081927716
Iteration: 15, Func. Count: 128, Neg. LLF: 167.5700706822382
Iteration: 16, Func. Count: 137, Neg. LLF: 163.72288201530426
Iteration: 17, Func. Count: 146, Neg. LLF: 163.5949606154481
Iteration: 18, Func. Count: 154, Neg. LLF: 163.56990086293197
Iteration: 19, Func. Count: 162, Neg. LLF: 163.54807654208517
Iteration: 20, Func. Count: 170, Neg. LLF: 163.49613308809165
Iteration: 21, Func. Count: 178, Neg. LLF: 163.4803651923813
Iteration: 22, Func. Count: 186, Neg. LLF: 163.47614263845898
Iteration: 23, Func. Count: 194, Neg. LLF: 163.47466597968335
Iteration: 24, Func. Count: 202, Neg. LLF: 163.47454121651606
Iteration: 25, Func. Count: 210, Neg. LLF: 163.47452972093978
Iteration: 26, Func. Count: 217, Neg. LLF: 163.47452972093257
Optimization terminated successfully (Exit mode 0)
Current function value: 163.47452972093978
Iterations: 26
Function evaluations: 217
Gradient evaluations: 26
Iteration: 1, Func. Count: 10, Neg. LLF: 357.9369965038706
Iteration: 2, Func. Count: 20, Neg. LLF: 167.44339246935183
Iteration: 3, Func. Count: 30, Neg. LLF: 165.00000031643046
Iteration: 4, Func. Count: 39, Neg. LLF: 164.36597662200805
Iteration: 5, Func. Count: 48, Neg. LLF: 166.0805194132834
Iteration: 6, Func. Count: 58, Neg. LLF: 177.72820164984685
Iteration: 7, Func. Count: 68, Neg. LLF: 163.89542530092498
Iteration: 8, Func. Count: 77, Neg. LLF: 163.7077904010568
Iteration: 9, Func. Count: 86, Neg. LLF: 163.60855671267956
Iteration: 10, Func. Count: 95, Neg. LLF: 163.59150031826618
Iteration: 11, Func. Count: 104, Neg. LLF: 163.58223239597
Iteration: 12, Func. Count: 113, Neg. LLF: 163.51506788650826
Iteration: 13, Func. Count: 122, Neg. LLF: 165.93309619238818
Iteration: 14, Func. Count: 132, Neg. LLF: 163.49783969635757
Iteration: 15, Func. Count: 142, Neg. LLF: 163.47655051906577
Iteration: 16, Func. Count: 151, Neg. LLF: 163.47526007891958
Iteration: 17, Func. Count: 160, Neg. LLF: 163.47482617996877
Iteration: 18, Func. Count: 169, Neg. LLF: 163.4745372025714
Iteration: 19, Func. Count: 178, Neg. LLF: 163.47452991105047
Iteration: 20, Func. Count: 186, Neg. LLF: 163.47453005618289
Optimization terminated successfully (Exit mode 0)
Current function value: 163.47452991105047
Iterations: 20
Function evaluations: 186
Gradient evaluations: 20
Iteration: 1, Func. Count: 11, Neg. LLF: 361.14876518390173
Iteration: 2, Func. Count: 22, Neg. LLF: 167.12325552111807
Iteration: 3, Func. Count: 33, Neg. LLF: 164.69972982555896
Iteration: 4, Func. Count: 43, Neg. LLF: 164.0798286140733
Iteration: 5, Func. Count: 53, Neg. LLF: 163.19308033110065
Iteration: 6, Func. Count: 63, Neg. LLF: 162.8731436080809
Iteration: 7, Func. Count: 73, Neg. LLF: 163.0091130063652
Iteration: 8, Func. Count: 84, Neg. LLF: 162.67506425420692
Iteration: 9, Func. Count: 94, Neg. LLF: 162.5566874221519
Iteration: 10, Func. Count: 104, Neg. LLF: 162.4972091655875
Iteration: 11, Func. Count: 114, Neg. LLF: 162.41547995438552
Iteration: 12, Func. Count: 124, Neg. LLF: 162.3610372716761
Iteration: 13, Func. Count: 134, Neg. LLF: 162.32548731454625
Iteration: 14, Func. Count: 144, Neg. LLF: 162.309644268605
Iteration: 15, Func. Count: 154, Neg. LLF: 162.28260313399048
Iteration: 16, Func. Count: 164, Neg. LLF: 162.27765046921485
Iteration: 17, Func. Count: 174, Neg. LLF: 162.2767430653454
Iteration: 18, Func. Count: 184, Neg. LLF: 162.2767283114701
Iteration: 19, Func. Count: 193, Neg. LLF: 162.2767282915276
Optimization terminated successfully (Exit mode 0)
Current function value: 162.2767283114701
Iterations: 19
Function evaluations: 193
Gradient evaluations: 19
Iteration: 1, Func. Count: 8, Neg. LLF: 167.0072022838419
Iteration: 2, Func. Count: 15, Neg. LLF: 167.39728813026707
Iteration: 3, Func. Count: 25, Neg. LLF: 179.8860406510638
Iteration: 4, Func. Count: 33, Neg. LLF: 168.37629414835814
Iteration: 5, Func. Count: 41, Neg. LLF: 165.97849377819674
Iteration: 6, Func. Count: 48, Neg. LLF: 165.98416752335856
Iteration: 7, Func. Count: 56, Neg. LLF: 165.68156026556727
Iteration: 8, Func. Count: 63, Neg. LLF: 165.94409403334282
Iteration: 9, Func. Count: 72, Neg. LLF: 165.53033847470022
Iteration: 10, Func. Count: 79, Neg. LLF: 165.415258400868
Iteration: 11, Func. Count: 86, Neg. LLF: 165.25831163251783
Iteration: 12, Func. Count: 93, Neg. LLF: 164.59041429534048
Iteration: 13, Func. Count: 100, Neg. LLF: 164.71409363396057
Iteration: 14, Func. Count: 108, Neg. LLF: 164.22258585507905
Iteration: 15, Func. Count: 115, Neg. LLF: 164.2100062856881
Iteration: 16, Func. Count: 122, Neg. LLF: 164.20865024475205
Iteration: 17, Func. Count: 129, Neg. LLF: 164.20854367382162
Iteration: 18, Func. Count: 136, Neg. LLF: 164.2084551140818
Iteration: 19, Func. Count: 143, Neg. LLF: 164.20827369068837
Iteration: 20, Func. Count: 150, Neg. LLF: 164.20818769199417
Iteration: 21, Func. Count: 157, Neg. LLF: 164.20817567549886
Iteration: 22, Func. Count: 164, Neg. LLF: 164.20817507855193
Optimization terminated successfully (Exit mode 0)
Current function value: 164.20817507855193
Iterations: 22
Function evaluations: 164
Gradient evaluations: 22
Iteration: 1, Func. Count: 9, Neg. LLF: 363.1278436051889
Iteration: 2, Func. Count: 18, Neg. LLF: 166.68144708106863
Iteration: 3, Func. Count: 27, Neg. LLF: 165.08254344755215
Iteration: 4, Func. Count: 35, Neg. LLF: 164.63183262713542
Iteration: 5, Func. Count: 43, Neg. LLF: 178.2406229854467
Iteration: 6, Func. Count: 53, Neg. LLF: 164.1215081991233
Iteration: 7, Func. Count: 61, Neg. LLF: 163.66736837217812
Iteration: 8, Func. Count: 69, Neg. LLF: 163.4430797611724
Iteration: 9, Func. Count: 77, Neg. LLF: 163.43132466509536
Iteration: 10, Func. Count: 85, Neg. LLF: 163.42402169078457
Iteration: 11, Func. Count: 93, Neg. LLF: 163.4212171087711
Iteration: 12, Func. Count: 101, Neg. LLF: 163.42023747415234
Iteration: 13, Func. Count: 109, Neg. LLF: 163.42001414665103
Iteration: 14, Func. Count: 117, Neg. LLF: 163.41994302116868
Iteration: 15, Func. Count: 125, Neg. LLF: 163.41993199450823
Iteration: 16, Func. Count: 133, Neg. LLF: 163.41993091793685
Iteration: 17, Func. Count: 140, Neg. LLF: 163.41993091793475
Optimization terminated successfully (Exit mode 0)
Current function value: 163.41993091793685
Iterations: 17
Function evaluations: 140
Gradient evaluations: 17
Iteration: 1, Func. Count: 10, Neg. LLF: 363.2209215986391
Iteration: 2, Func. Count: 20, Neg. LLF: 167.87794056496446
Iteration: 3, Func. Count: 30, Neg. LLF: 166.46960955300275
Iteration: 4, Func. Count: 40, Neg. LLF: 163.08525245874392
Iteration: 5, Func. Count: 49, Neg. LLF: 163.58200090881044
Iteration: 6, Func. Count: 59, Neg. LLF: 184.07877721879575
Iteration: 7, Func. Count: 70, Neg. LLF: 162.27789859862926
Iteration: 8, Func. Count: 79, Neg. LLF: 162.2611971140079
Iteration: 9, Func. Count: 88, Neg. LLF: 162.2381877592751
Iteration: 10, Func. Count: 97, Neg. LLF: 162.1612367971829
Iteration: 11, Func. Count: 106, Neg. LLF: 162.11224164590172
Iteration: 12, Func. Count: 115, Neg. LLF: 161.94622421303396
Iteration: 13, Func. Count: 124, Neg. LLF: 162.05511770929346
Iteration: 14, Func. Count: 134, Neg. LLF: 161.8879114135545
Iteration: 15, Func. Count: 144, Neg. LLF: 161.8495052267529
Iteration: 16, Func. Count: 153, Neg. LLF: 161.84847166869977
Iteration: 17, Func. Count: 162, Neg. LLF: 161.84846336041358
Iteration: 18, Func. Count: 170, Neg. LLF: 161.8484633605755
Optimization terminated successfully (Exit mode 0)
Current function value: 161.84846336041358
Iterations: 18
Function evaluations: 170
Gradient evaluations: 18
Iteration: 1, Func. Count: 11, Neg. LLF: 358.6020598378651
Iteration: 2, Func. Count: 22, Neg. LLF: 166.57393398288505
Iteration: 3, Func. Count: 33, Neg. LLF: 168.45441862370697
Iteration: 4, Func. Count: 44, Neg. LLF: 163.14164417229708
Iteration: 5, Func. Count: 54, Neg. LLF: 166.3586065142104
Iteration: 6, Func. Count: 66, Neg. LLF: 168.66813957589355
Iteration: 7, Func. Count: 77, Neg. LLF: 162.3431423369909
Iteration: 8, Func. Count: 87, Neg. LLF: 162.2912469513891
Iteration: 9, Func. Count: 97, Neg. LLF: 162.2944317328156
Iteration: 10, Func. Count: 108, Neg. LLF: 162.23055489227343
Iteration: 11, Func. Count: 118, Neg. LLF: 162.2239698428271
Iteration: 12, Func. Count: 129, Neg. LLF: 162.21564494707022
Iteration: 13, Func. Count: 140, Neg. LLF: 162.48410080458467
Iteration: 14, Func. Count: 151, Neg. LLF: 162.15748423305243
Iteration: 15, Func. Count: 162, Neg. LLF: 161.9241560777921
Iteration: 16, Func. Count: 172, Neg. LLF: 161.8777698358143
Iteration: 17, Func. Count: 182, Neg. LLF: 162.037481362397
Iteration: 18, Func. Count: 193, Neg. LLF: 161.8511841502196
Iteration: 19, Func. Count: 203, Neg. LLF: 161.84893721286835
Iteration: 20, Func. Count: 213, Neg. LLF: 161.84854067546837
Iteration: 21, Func. Count: 223, Neg. LLF: 161.84847659419765
Iteration: 22, Func. Count: 233, Neg. LLF: 161.8484637358775
Iteration: 23, Func. Count: 242, Neg. LLF: 161.84846409543206
Optimization terminated successfully (Exit mode 0)
Current function value: 161.8484637358775
Iterations: 23
Function evaluations: 242
Gradient evaluations: 23
Iteration: 1, Func. Count: 12, Neg. LLF: 361.8297532360631
Iteration: 2, Func. Count: 24, Neg. LLF: 165.69394239870883
Iteration: 3, Func. Count: 35, Neg. LLF: 160.74414420860035
Iteration: 4, Func. Count: 46, Neg. LLF: 160.67589982193556
Iteration: 5, Func. Count: 57, Neg. LLF: 160.50532684306
Iteration: 6, Func. Count: 68, Neg. LLF: 160.42999716326793
Iteration: 7, Func. Count: 79, Neg. LLF: 160.50842772137375
Iteration: 8, Func. Count: 91, Neg. LLF: 160.37781556057118
Iteration: 9, Func. Count: 102, Neg. LLF: 160.37410287616422
Iteration: 10, Func. Count: 113, Neg. LLF: 160.37264504468632
Iteration: 11, Func. Count: 124, Neg. LLF: 160.37247859827224
Iteration: 12, Func. Count: 135, Neg. LLF: 160.37238532889288
Iteration: 13, Func. Count: 146, Neg. LLF: 160.3723790796172
Iteration: 14, Func. Count: 156, Neg. LLF: 160.3723790797106
Optimization terminated successfully (Exit mode 0)
Current function value: 160.3723790796172
Iterations: 14
Function evaluations: 156
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 168.9290125957207
Iteration: 2, Func. Count: 19, Neg. LLF: 167.6008007451227
Iteration: 3, Func. Count: 28, Neg. LLF: 167.36262809744198
Iteration: 4, Func. Count: 37, Neg. LLF: 166.55904785158475
Iteration: 5, Func. Count: 45, Neg. LLF: 165.82991770264462
Iteration: 6, Func. Count: 53, Neg. LLF: 166.62604709404232
Iteration: 7, Func. Count: 64, Neg. LLF: 165.69476353020548
Iteration: 8, Func. Count: 72, Neg. LLF: 165.4767767781321
Iteration: 9, Func. Count: 80, Neg. LLF: 165.33389401207305
Iteration: 10, Func. Count: 88, Neg. LLF: 165.23680762874216
Iteration: 11, Func. Count: 96, Neg. LLF: 165.18024864590444
Iteration: 12, Func. Count: 104, Neg. LLF: 164.8030141825646
Iteration: 13, Func. Count: 112, Neg. LLF: 164.32818900467652
Iteration: 14, Func. Count: 120, Neg. LLF: 164.24071262409376
Iteration: 15, Func. Count: 128, Neg. LLF: 164.21989490267
Iteration: 16, Func. Count: 136, Neg. LLF: 164.21644386686899
Iteration: 17, Func. Count: 144, Neg. LLF: 164.21397455887472
Iteration: 18, Func. Count: 152, Neg. LLF: 164.211029139671
Iteration: 19, Func. Count: 160, Neg. LLF: 164.20902703370714
Iteration: 20, Func. Count: 168, Neg. LLF: 164.20843252014507
Iteration: 21, Func. Count: 176, Neg. LLF: 164.20823922371818
Iteration: 22, Func. Count: 184, Neg. LLF: 164.20817904702082
Iteration: 23, Func. Count: 192, Neg. LLF: 164.20817526996606
Iteration: 24, Func. Count: 199, Neg. LLF: 164.2081753426757
Optimization terminated successfully (Exit mode 0)
Current function value: 164.20817526996606
Iterations: 24
Function evaluations: 199
Gradient evaluations: 24
Iteration: 1, Func. Count: 10, Neg. LLF: 363.23098157333635
Iteration: 2, Func. Count: 20, Neg. LLF: 166.6087984015079
Iteration: 3, Func. Count: 30, Neg. LLF: 165.50797778279795
Iteration: 4, Func. Count: 40, Neg. LLF: 164.80708055987608
Iteration: 5, Func. Count: 49, Neg. LLF: 164.31484608489563
Iteration: 6, Func. Count: 58, Neg. LLF: 164.1666411501943
Iteration: 7, Func. Count: 67, Neg. LLF: 163.85933812459783
Iteration: 8, Func. Count: 76, Neg. LLF: 163.63118191499467
Iteration: 9, Func. Count: 85, Neg. LLF: 163.4978533104856
Iteration: 10, Func. Count: 94, Neg. LLF: 163.4598807962012
Iteration: 11, Func. Count: 103, Neg. LLF: 163.42712894163594
Iteration: 12, Func. Count: 112, Neg. LLF: 163.421473308946
Iteration: 13, Func. Count: 121, Neg. LLF: 163.42062603948682
Iteration: 14, Func. Count: 130, Neg. LLF: 163.42001371181385
Iteration: 15, Func. Count: 139, Neg. LLF: 163.4199748844539
Iteration: 16, Func. Count: 148, Neg. LLF: 163.41993150132456
Iteration: 17, Func. Count: 157, Neg. LLF: 163.41993090857372
Optimization terminated successfully (Exit mode 0)
Current function value: 163.41993090857372
Iterations: 17
Function evaluations: 157
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 363.2323043506472
Iteration: 2, Func. Count: 22, Neg. LLF: 166.61933602527822
Iteration: 3, Func. Count: 33, Neg. LLF: 164.54328729655205
Iteration: 4, Func. Count: 44, Neg. LLF: 162.85782603706548
Iteration: 5, Func. Count: 54, Neg. LLF: 163.88132130251395
Iteration: 6, Func. Count: 65, Neg. LLF: 163.1377558357651
Iteration: 7, Func. Count: 76, Neg. LLF: 162.28186976483613
Iteration: 8, Func. Count: 86, Neg. LLF: 162.24289483146015
Iteration: 9, Func. Count: 96, Neg. LLF: 162.21661463282376
Iteration: 10, Func. Count: 106, Neg. LLF: 162.1669678008086
Iteration: 11, Func. Count: 116, Neg. LLF: 162.14312099348243
Iteration: 12, Func. Count: 126, Neg. LLF: 162.1177699957459
Iteration: 13, Func. Count: 136, Neg. LLF: 162.03185361549438
Iteration: 14, Func. Count: 146, Neg. LLF: 161.87568599768224
Iteration: 15, Func. Count: 156, Neg. LLF: 162.0282927016592
Iteration: 16, Func. Count: 167, Neg. LLF: 161.9255183187605
Iteration: 17, Func. Count: 178, Neg. LLF: 161.84907957775346
Iteration: 18, Func. Count: 188, Neg. LLF: 161.8484746074128
Iteration: 19, Func. Count: 198, Neg. LLF: 161.84846316689942
Iteration: 20, Func. Count: 207, Neg. LLF: 161.8484631669792
Optimization terminated successfully (Exit mode 0)
Current function value: 161.84846316689942
Iterations: 20
Function evaluations: 207
Gradient evaluations: 20
Iteration: 1, Func. Count: 12, Neg. LLF: 358.75479664121895
Iteration: 2, Func. Count: 24, Neg. LLF: 166.11668501351895
Iteration: 3, Func. Count: 36, Neg. LLF: 167.74057503044688
Iteration: 4, Func. Count: 48, Neg. LLF: 163.30284072874042
Iteration: 5, Func. Count: 59, Neg. LLF: 168.8638466214681
Iteration: 6, Func. Count: 71, Neg. LLF: 168.6331856227022
Iteration: 7, Func. Count: 83, Neg. LLF: 162.3678723031723
Iteration: 8, Func. Count: 94, Neg. LLF: 162.4056627081095
Iteration: 9, Func. Count: 106, Neg. LLF: 162.26919409328792
Iteration: 10, Func. Count: 117, Neg. LLF: 162.2414286870787
Iteration: 11, Func. Count: 128, Neg. LLF: 162.21202629629886
Iteration: 12, Func. Count: 139, Neg. LLF: 162.14449975572512
Iteration: 13, Func. Count: 150, Neg. LLF: 162.0719011501887
Iteration: 14, Func. Count: 161, Neg. LLF: 162.09282371878828
Iteration: 15, Func. Count: 173, Neg. LLF: 161.89359286139566
Iteration: 16, Func. Count: 184, Neg. LLF: 161.9505716060644
Iteration: 17, Func. Count: 196, Neg. LLF: 161.95237839250208
Iteration: 18, Func. Count: 208, Neg. LLF: 161.84926583243353
Iteration: 19, Func. Count: 219, Neg. LLF: 161.84875911746656
Iteration: 20, Func. Count: 230, Neg. LLF: 161.8484659355361
Iteration: 21, Func. Count: 241, Neg. LLF: 161.84846330104497
Iteration: 22, Func. Count: 251, Neg. LLF: 161.8484636607661
Optimization terminated successfully (Exit mode 0)
Current function value: 161.84846330104497
Iterations: 22
Function evaluations: 251
Gradient evaluations: 22
Iteration: 1, Func. Count: 13, Neg. LLF: 361.77159881412393
Iteration: 2, Func. Count: 26, Neg. LLF: 164.10890098099534
Iteration: 3, Func. Count: 38, Neg. LLF: 164.63305596531072
Iteration: 4, Func. Count: 51, Neg. LLF: 167.91734898352985
Iteration: 5, Func. Count: 64, Neg. LLF: 160.75241669581212
Iteration: 6, Func. Count: 76, Neg. LLF: 160.49980955331782
Iteration: 7, Func. Count: 88, Neg. LLF: 160.4652884138
Iteration: 8, Func. Count: 100, Neg. LLF: 160.4430722812285
Iteration: 9, Func. Count: 112, Neg. LLF: 160.42029726944799
Iteration: 10, Func. Count: 124, Neg. LLF: 160.3947065682831
Iteration: 11, Func. Count: 136, Neg. LLF: 160.38254739619737
Iteration: 12, Func. Count: 148, Neg. LLF: 160.37516168423505
Iteration: 13, Func. Count: 160, Neg. LLF: 160.372846376942
Iteration: 14, Func. Count: 172, Neg. LLF: 160.3726086039787
Iteration: 15, Func. Count: 184, Neg. LLF: 160.37237948240033
Iteration: 16, Func. Count: 196, Neg. LLF: 160.37237883920434
Optimization terminated successfully (Exit mode 0)
Current function value: 160.37237883920434
Iterations: 16
Function evaluations: 196
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 168.99467808198392
Iteration: 2, Func. Count: 21, Neg. LLF: 167.17178043435845
Iteration: 3, Func. Count: 31, Neg. LLF: 166.5577364775247
Iteration: 4, Func. Count: 40, Neg. LLF: 166.1932177668359
Iteration: 5, Func. Count: 49, Neg. LLF: 177.60245487651375
Iteration: 6, Func. Count: 60, Neg. LLF: 166.59013455535782
Iteration: 7, Func. Count: 70, Neg. LLF: 165.5054897604654
Iteration: 8, Func. Count: 79, Neg. LLF: 165.27214636123716
Iteration: 9, Func. Count: 88, Neg. LLF: 165.2468757698446
Iteration: 10, Func. Count: 97, Neg. LLF: 165.1457070255449
Iteration: 11, Func. Count: 106, Neg. LLF: 164.68895124258228
Iteration: 12, Func. Count: 115, Neg. LLF: 163.9699380282533
Iteration: 13, Func. Count: 124, Neg. LLF: 165.12958122581105
Iteration: 14, Func. Count: 134, Neg. LLF: 171.37063552607435
Iteration: 15, Func. Count: 144, Neg. LLF: 163.0740710529587
Iteration: 16, Func. Count: 154, Neg. LLF: 162.78605443014712
Iteration: 17, Func. Count: 163, Neg. LLF: 162.77058781496316
Iteration: 18, Func. Count: 172, Neg. LLF: 162.76817667058688
Iteration: 19, Func. Count: 181, Neg. LLF: 162.76785830732086
Iteration: 20, Func. Count: 190, Neg. LLF: 162.76780268320613
Iteration: 21, Func. Count: 199, Neg. LLF: 162.76779893802723
Iteration: 22, Func. Count: 208, Neg. LLF: 162.76779385745382
Iteration: 23, Func. Count: 217, Neg. LLF: 162.76779304040124
Optimization terminated successfully (Exit mode 0)
Current function value: 162.76779304040124
Iterations: 23
Function evaluations: 217
Gradient evaluations: 23
Iteration: 1, Func. Count: 11, Neg. LLF: 368.0558298047118
Iteration: 2, Func. Count: 22, Neg. LLF: 165.4512613063938
Iteration: 3, Func. Count: 32, Neg. LLF: 164.66146111253863
Iteration: 4, Func. Count: 42, Neg. LLF: 164.7471329868356
Iteration: 5, Func. Count: 53, Neg. LLF: 164.3646084492537
Iteration: 6, Func. Count: 63, Neg. LLF: 163.5938736831169
Iteration: 7, Func. Count: 73, Neg. LLF: 163.1120305636989
Iteration: 8, Func. Count: 83, Neg. LLF: 163.9346523247356
Iteration: 9, Func. Count: 94, Neg. LLF: 162.8732912682683
Iteration: 10, Func. Count: 104, Neg. LLF: 162.83113027085844
Iteration: 11, Func. Count: 114, Neg. LLF: 162.79105517410454
Iteration: 12, Func. Count: 124, Neg. LLF: 162.77914870819936
Iteration: 13, Func. Count: 134, Neg. LLF: 162.77281527040398
Iteration: 14, Func. Count: 144, Neg. LLF: 162.76869155800364
Iteration: 15, Func. Count: 154, Neg. LLF: 162.76825475367517
Iteration: 16, Func. Count: 164, Neg. LLF: 162.76792124599393
Iteration: 17, Func. Count: 174, Neg. LLF: 162.76782087895467
Iteration: 18, Func. Count: 184, Neg. LLF: 162.76779432873903
Iteration: 19, Func. Count: 194, Neg. LLF: 162.7677929919034
Iteration: 20, Func. Count: 203, Neg. LLF: 162.7677930612776
Optimization terminated successfully (Exit mode 0)
Current function value: 162.7677929919034
Iterations: 20
Function evaluations: 203
Gradient evaluations: 20
Iteration: 1, Func. Count: 12, Neg. LLF: 363.7135701469475
Iteration: 2, Func. Count: 24, Neg. LLF: 167.4183689524648
Iteration: 3, Func. Count: 36, Neg. LLF: 166.67958666328335
Iteration: 4, Func. Count: 48, Neg. LLF: 163.02363433653215
Iteration: 5, Func. Count: 59, Neg. LLF: 162.71969091315339
Iteration: 6, Func. Count: 70, Neg. LLF: 177.89419585668114
Iteration: 7, Func. Count: 83, Neg. LLF: 162.51462027503422
Iteration: 8, Func. Count: 94, Neg. LLF: 162.3432717579177
Iteration: 9, Func. Count: 105, Neg. LLF: 162.21571745258507
Iteration: 10, Func. Count: 116, Neg. LLF: 162.19636273362406
Iteration: 11, Func. Count: 127, Neg. LLF: 162.16732807007656
Iteration: 12, Func. Count: 138, Neg. LLF: 162.18789537050415
Iteration: 13, Func. Count: 150, Neg. LLF: 162.05452215938635
Iteration: 14, Func. Count: 161, Neg. LLF: 161.93781750083224
Iteration: 15, Func. Count: 172, Neg. LLF: 162.01625730273167
Iteration: 16, Func. Count: 184, Neg. LLF: 161.86599258228932
Iteration: 17, Func. Count: 196, Neg. LLF: 161.84850542861727
Iteration: 18, Func. Count: 207, Neg. LLF: 161.84846390572872
Iteration: 19, Func. Count: 218, Neg. LLF: 161.8484631367377
Optimization terminated successfully (Exit mode 0)
Current function value: 161.8484631367377
Iterations: 19
Function evaluations: 218
Gradient evaluations: 19
Iteration: 1, Func. Count: 13, Neg. LLF: 359.45219138336563
Iteration: 2, Func. Count: 26, Neg. LLF: 167.90701331193551
Iteration: 3, Func. Count: 39, Neg. LLF: 168.18332397151627
Iteration: 4, Func. Count: 52, Neg. LLF: 164.13064377496943
Iteration: 5, Func. Count: 65, Neg. LLF: 168.0627724077109
Iteration: 6, Func. Count: 78, Neg. LLF: 162.66709112527363
Iteration: 7, Func. Count: 90, Neg. LLF: 179.021267687674
Iteration: 8, Func. Count: 103, Neg. LLF: 162.33767377883345
Iteration: 9, Func. Count: 115, Neg. LLF: 162.28613228845936
Iteration: 10, Func. Count: 127, Neg. LLF: 162.27039850849525
Iteration: 11, Func. Count: 139, Neg. LLF: 162.25629821147433
Iteration: 12, Func. Count: 151, Neg. LLF: 162.22389279406548
Iteration: 13, Func. Count: 163, Neg. LLF: 162.10705456868777
Iteration: 14, Func. Count: 175, Neg. LLF: 169.4092866083111
Iteration: 15, Func. Count: 188, Neg. LLF: 169.65036587602555
Iteration: 16, Func. Count: 201, Neg. LLF: 169.88658922272677
Iteration: 17, Func. Count: 214, Neg. LLF: 165.56842644249573
Iteration: 18, Func. Count: 227, Neg. LLF: 308.13391981330994
Iteration: 19, Func. Count: 240, Neg. LLF: 161.95924952519513
Iteration: 20, Func. Count: 253, Neg. LLF: 161.91760935510194
Iteration: 21, Func. Count: 265, Neg. LLF: 161.90782406739442
Iteration: 22, Func. Count: 277, Neg. LLF: 161.89153678983382
Iteration: 23, Func. Count: 289, Neg. LLF: 161.8632678281006
Iteration: 24, Func. Count: 301, Neg. LLF: 161.8508594426436
Iteration: 25, Func. Count: 313, Neg. LLF: 161.848506277776
Iteration: 26, Func. Count: 325, Neg. LLF: 161.84846707417472
Iteration: 27, Func. Count: 337, Neg. LLF: 161.8484633880904
Iteration: 28, Func. Count: 348, Neg. LLF: 161.84846374797883
Optimization terminated successfully (Exit mode 0)
Current function value: 161.8484633880904
Iterations: 28
Function evaluations: 348
Gradient evaluations: 28
Iteration: 1, Func. Count: 14, Neg. LLF: 362.6101717330841
Iteration: 2, Func. Count: 28, Neg. LLF: 163.91482824609352
Iteration: 3, Func. Count: 41, Neg. LLF: 164.66010652365213
Iteration: 4, Func. Count: 55, Neg. LLF: 167.72306450126231
Iteration: 5, Func. Count: 69, Neg. LLF: 160.8349747617118
Iteration: 6, Func. Count: 82, Neg. LLF: 160.49308311924378
Iteration: 7, Func. Count: 95, Neg. LLF: 160.45937937758396
Iteration: 8, Func. Count: 108, Neg. LLF: 160.43675166865916
Iteration: 9, Func. Count: 121, Neg. LLF: 160.4172003203779
Iteration: 10, Func. Count: 134, Neg. LLF: 160.39420578208816
Iteration: 11, Func. Count: 147, Neg. LLF: 160.38256679461702
Iteration: 12, Func. Count: 160, Neg. LLF: 160.3752609378487
Iteration: 13, Func. Count: 173, Neg. LLF: 160.3729354044781
Iteration: 14, Func. Count: 186, Neg. LLF: 160.3726267554447
Iteration: 15, Func. Count: 199, Neg. LLF: 160.37237889916915
Iteration: 16, Func. Count: 211, Neg. LLF: 160.37237889914132
Optimization terminated successfully (Exit mode 0)
Current function value: 160.37237889916915
Iterations: 16
Function evaluations: 211
Gradient evaluations: 16
Iteration: 1, Func. Count: 7, Neg. LLF: 169.40388058476282
Iteration: 2, Func. Count: 14, Neg. LLF: 168.65467519449567
Iteration: 3, Func. Count: 22, Neg. LLF: 167.48470315444092
Iteration: 4, Func. Count: 28, Neg. LLF: 170.46232908813326
Iteration: 5, Func. Count: 35, Neg. LLF: 168.124953185362
Iteration: 6, Func. Count: 42, Neg. LLF: 167.5958794503282
Iteration: 7, Func. Count: 49, Neg. LLF: 167.08614041430963
Iteration: 8, Func. Count: 56, Neg. LLF: 166.91641579226223
Iteration: 9, Func. Count: 62, Neg. LLF: 166.84466276274298
Iteration: 10, Func. Count: 68, Neg. LLF: 166.56045727484496
Iteration: 11, Func. Count: 74, Neg. LLF: 166.34510662032386
Iteration: 12, Func. Count: 80, Neg. LLF: 166.11424279433544
Iteration: 13, Func. Count: 86, Neg. LLF: 165.6688455839776
Iteration: 14, Func. Count: 92, Neg. LLF: 165.5142355100764
Iteration: 15, Func. Count: 98, Neg. LLF: 165.2674798841983
Iteration: 16, Func. Count: 104, Neg. LLF: 165.2311190790713
Iteration: 17, Func. Count: 110, Neg. LLF: 165.22658031885217
Iteration: 18, Func. Count: 116, Neg. LLF: 165.2260020968242
Iteration: 19, Func. Count: 122, Neg. LLF: 165.22599577211156
Iteration: 20, Func. Count: 128, Neg. LLF: 165.22599433939075
Iteration: 21, Func. Count: 133, Neg. LLF: 165.22599433939024
Optimization terminated successfully (Exit mode 0)
Current function value: 165.22599433939075
Iterations: 21
Function evaluations: 133
Gradient evaluations: 21
Iteration: 1, Func. Count: 8, Neg. LLF: 368.7076167743585
Iteration: 2, Func. Count: 16, Neg. LLF: 168.70849654334168
Iteration: 3, Func. Count: 24, Neg. LLF: 165.6116883218961
Iteration: 4, Func. Count: 31, Neg. LLF: 167.94045876176438
Iteration: 5, Func. Count: 39, Neg. LLF: 167.75768761194627
Iteration: 6, Func. Count: 47, Neg. LLF: 165.347739664836
Iteration: 7, Func. Count: 54, Neg. LLF: 165.30551659691562
Iteration: 8, Func. Count: 61, Neg. LLF: 165.2387309666282
Iteration: 9, Func. Count: 68, Neg. LLF: 164.9923812471108
Iteration: 10, Func. Count: 75, Neg. LLF: 172.7964972954772
Iteration: 11, Func. Count: 83, Neg. LLF: 172.6390864405511
Iteration: 12, Func. Count: 91, Neg. LLF: 168.39952163739966
Iteration: 13, Func. Count: 99, Neg. LLF: 169.09950206801426
Iteration: 14, Func. Count: 107, Neg. LLF: 166.27770703206835
Iteration: 15, Func. Count: 115, Neg. LLF: 165.49239500605034
Iteration: 16, Func. Count: 123, Neg. LLF: 164.54231121461086
Iteration: 17, Func. Count: 131, Neg. LLF: 164.2598962935107
Iteration: 18, Func. Count: 138, Neg. LLF: 163.92652504747008
Iteration: 19, Func. Count: 145, Neg. LLF: 163.79836723760494
Iteration: 20, Func. Count: 152, Neg. LLF: 163.79216460089543
Iteration: 21, Func. Count: 159, Neg. LLF: 163.79192005934198
Iteration: 22, Func. Count: 166, Neg. LLF: 163.7919186228373
Iteration: 23, Func. Count: 172, Neg. LLF: 163.79191862254734
Optimization terminated successfully (Exit mode 0)
Current function value: 163.7919186228373
Iterations: 23
Function evaluations: 172
Gradient evaluations: 23
Iteration: 1, Func. Count: 9, Neg. LLF: 372.8618485158353
Iteration: 2, Func. Count: 18, Neg. LLF: 168.4144607922107
Iteration: 3, Func. Count: 27, Neg. LLF: 166.71565337647584
Iteration: 4, Func. Count: 36, Neg. LLF: 173.42335783272623
Iteration: 5, Func. Count: 45, Neg. LLF: 165.15707571139484
Iteration: 6, Func. Count: 53, Neg. LLF: 165.20737439965137
Iteration: 7, Func. Count: 62, Neg. LLF: 164.86125022628002
Iteration: 8, Func. Count: 70, Neg. LLF: 166.53309049930053
Iteration: 9, Func. Count: 79, Neg. LLF: 164.55238327783454
Iteration: 10, Func. Count: 88, Neg. LLF: 167.487666798028
Iteration: 11, Func. Count: 98, Neg. LLF: 163.6628422465817
Iteration: 12, Func. Count: 106, Neg. LLF: 163.61552861828673
Iteration: 13, Func. Count: 114, Neg. LLF: 163.5634565579305
Iteration: 14, Func. Count: 122, Neg. LLF: 163.52439039073766
Iteration: 15, Func. Count: 130, Neg. LLF: 163.4913586909845
Iteration: 16, Func. Count: 138, Neg. LLF: 163.47540357159312
Iteration: 17, Func. Count: 146, Neg. LLF: 163.47482230558452
Iteration: 18, Func. Count: 154, Neg. LLF: 163.47468186569802
Iteration: 19, Func. Count: 162, Neg. LLF: 163.4745975537877
Iteration: 20, Func. Count: 170, Neg. LLF: 163.4745406857166
Iteration: 21, Func. Count: 178, Neg. LLF: 163.47453048403906
Iteration: 22, Func. Count: 186, Neg. LLF: 163.47452971643116
Optimization terminated successfully (Exit mode 0)
Current function value: 163.47452971643116
Iterations: 22
Function evaluations: 186
Gradient evaluations: 22
Iteration: 1, Func. Count: 10, Neg. LLF: 376.09000663384916
Iteration: 2, Func. Count: 20, Neg. LLF: 167.7551609500257
Iteration: 3, Func. Count: 30, Neg. LLF: 165.29293353533822
Iteration: 4, Func. Count: 40, Neg. LLF: 164.37557952734625
Iteration: 5, Func. Count: 49, Neg. LLF: 164.11548081589353
Iteration: 6, Func. Count: 58, Neg. LLF: 163.834042839653
Iteration: 7, Func. Count: 67, Neg. LLF: 163.74109675838986
Iteration: 8, Func. Count: 76, Neg. LLF: 163.73246807463377
Iteration: 9, Func. Count: 85, Neg. LLF: 163.73217198635166
Iteration: 10, Func. Count: 94, Neg. LLF: 163.73209850251484
Iteration: 11, Func. Count: 103, Neg. LLF: 163.7320463358778
Iteration: 12, Func. Count: 112, Neg. LLF: 163.73204287470014
Iteration: 13, Func. Count: 120, Neg. LLF: 163.7320428748352
Optimization terminated successfully (Exit mode 0)
Current function value: 163.73204287470014
Iterations: 13
Function evaluations: 120
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 377.4031536839866
Iteration: 2, Func. Count: 22, Neg. LLF: 169.73699957835385
Iteration: 3, Func. Count: 33, Neg. LLF: 165.91619008078447
Iteration: 4, Func. Count: 44, Neg. LLF: 164.60806605003154
Iteration: 5, Func. Count: 54, Neg. LLF: 165.47594627278215
Iteration: 6, Func. Count: 66, Neg. LLF: 166.0158303361107
Iteration: 7, Func. Count: 77, Neg. LLF: 163.43431550899783
Iteration: 8, Func. Count: 87, Neg. LLF: 163.37727353045827
Iteration: 9, Func. Count: 97, Neg. LLF: 163.16455426010228
Iteration: 10, Func. Count: 107, Neg. LLF: 170.48899882381883
Iteration: 11, Func. Count: 118, Neg. LLF: 169.7772909185349
Iteration: 12, Func. Count: 129, Neg. LLF: 169.29200929934956
Iteration: 13, Func. Count: 140, Neg. LLF: 164.02311359330866
Iteration: 14, Func. Count: 151, Neg. LLF: 162.80411432449785
Iteration: 15, Func. Count: 161, Neg. LLF: 162.70681453560474
Iteration: 16, Func. Count: 171, Neg. LLF: 162.67172978974074
Iteration: 17, Func. Count: 181, Neg. LLF: 162.5210377337305
Iteration: 18, Func. Count: 191, Neg. LLF: 162.35961430570777
Iteration: 19, Func. Count: 201, Neg. LLF: 162.3039368106564
Iteration: 20, Func. Count: 211, Neg. LLF: 162.284358808931
Iteration: 21, Func. Count: 221, Neg. LLF: 162.27955981527666
Iteration: 22, Func. Count: 231, Neg. LLF: 162.27687163927098
Iteration: 23, Func. Count: 241, Neg. LLF: 162.2767307431769
Iteration: 24, Func. Count: 251, Neg. LLF: 162.27672873714977
Iteration: 25, Func. Count: 260, Neg. LLF: 162.27672871710175
Optimization terminated successfully (Exit mode 0)
Current function value: 162.27672873714977
Iterations: 25
Function evaluations: 260
Gradient evaluations: 25
Iteration: 1, Func. Count: 8, Neg. LLF: 169.47942772091398
Iteration: 2, Func. Count: 17, Neg. LLF: 167.44042440645438
Iteration: 3, Func. Count: 25, Neg. LLF: 167.0330676638204
Iteration: 4, Func. Count: 32, Neg. LLF: 168.7486158994693
Iteration: 5, Func. Count: 40, Neg. LLF: 166.9080148572903
Iteration: 6, Func. Count: 47, Neg. LLF: 166.86312953165825
Iteration: 7, Func. Count: 54, Neg. LLF: 166.74258886669236
Iteration: 8, Func. Count: 61, Neg. LLF: 166.3944343998608
Iteration: 9, Func. Count: 68, Neg. LLF: 165.92654428238575
Iteration: 10, Func. Count: 75, Neg. LLF: 165.41720866642004
Iteration: 11, Func. Count: 82, Neg. LLF: 165.33822502062762
Iteration: 12, Func. Count: 89, Neg. LLF: 165.22483112249807
Iteration: 13, Func. Count: 96, Neg. LLF: 165.20247656253179
Iteration: 14, Func. Count: 103, Neg. LLF: 165.19766115529532
Iteration: 15, Func. Count: 110, Neg. LLF: 165.19730536324153
Iteration: 16, Func. Count: 117, Neg. LLF: 165.1972765448945
Iteration: 17, Func. Count: 123, Neg. LLF: 165.19727654490322
Optimization terminated successfully (Exit mode 0)
Current function value: 165.1972765448945
Iterations: 17
Function evaluations: 123
Gradient evaluations: 17
Iteration: 1, Func. Count: 9, Neg. LLF: 362.25348382873716
Iteration: 2, Func. Count: 18, Neg. LLF: 167.2693340705858
Iteration: 3, Func. Count: 27, Neg. LLF: 167.02396117307768
Iteration: 4, Func. Count: 36, Neg. LLF: 165.37081898125598
Iteration: 5, Func. Count: 44, Neg. LLF: 165.6715360577538
Iteration: 6, Func. Count: 53, Neg. LLF: 165.34291937750504
Iteration: 7, Func. Count: 61, Neg. LLF: 165.29926007709892
Iteration: 8, Func. Count: 69, Neg. LLF: 165.32605717217672
Iteration: 9, Func. Count: 78, Neg. LLF: 165.1822595989889
Iteration: 10, Func. Count: 86, Neg. LLF: 165.88321690245067
Iteration: 11, Func. Count: 95, Neg. LLF: 176.92703066389979
Iteration: 12, Func. Count: 104, Neg. LLF: 171.6758350514212
Iteration: 13, Func. Count: 113, Neg. LLF: 170.20984805933614
Iteration: 14, Func. Count: 122, Neg. LLF: 169.29228514603568
Iteration: 15, Func. Count: 131, Neg. LLF: 166.55488234932196
Iteration: 16, Func. Count: 140, Neg. LLF: 189.4119290203065
Iteration: 17, Func. Count: 149, Neg. LLF: 352.61431327156583
Iteration: 18, Func. Count: 159, Neg. LLF: 164.1977952318703
Iteration: 19, Func. Count: 167, Neg. LLF: 166.4778664029325
Iteration: 20, Func. Count: 176, Neg. LLF: 163.97445892599376
Iteration: 21, Func. Count: 184, Neg. LLF: 163.841158713087
Iteration: 22, Func. Count: 192, Neg. LLF: 163.79743745938734
Iteration: 23, Func. Count: 200, Neg. LLF: 163.79275889758463
Iteration: 24, Func. Count: 208, Neg. LLF: 163.79192954485833
Iteration: 25, Func. Count: 216, Neg. LLF: 163.79191918650972
Iteration: 26, Func. Count: 224, Neg. LLF: 163.79191870845733
Optimization terminated successfully (Exit mode 0)
Current function value: 163.79191870845733
Iterations: 27
Function evaluations: 224
Gradient evaluations: 26
Iteration: 1, Func. Count: 10, Neg. LLF: 361.0844262050716
Iteration: 2, Func. Count: 20, Neg. LLF: 168.4710395195427
Iteration: 3, Func. Count: 30, Neg. LLF: 167.0058177596966
Iteration: 4, Func. Count: 40, Neg. LLF: 166.13191396339698
Iteration: 5, Func. Count: 50, Neg. LLF: 165.22837573044626
Iteration: 6, Func. Count: 59, Neg. LLF: 164.23035005327012
Iteration: 7, Func. Count: 68, Neg. LLF: 164.05179804299686
Iteration: 8, Func. Count: 77, Neg. LLF: 163.89447399910264
Iteration: 9, Func. Count: 86, Neg. LLF: 163.77510129102117
Iteration: 10, Func. Count: 95, Neg. LLF: 164.51902974823625
Iteration: 11, Func. Count: 105, Neg. LLF: 163.66470037467218
Iteration: 12, Func. Count: 115, Neg. LLF: 163.4834564748285
Iteration: 13, Func. Count: 124, Neg. LLF: 163.47660234868277
Iteration: 14, Func. Count: 133, Neg. LLF: 163.4748502223646
Iteration: 15, Func. Count: 142, Neg. LLF: 163.47455603939298
Iteration: 16, Func. Count: 151, Neg. LLF: 163.47452982471162
Iteration: 17, Func. Count: 159, Neg. LLF: 163.47452982470676
Optimization terminated successfully (Exit mode 0)
Current function value: 163.47452982471162
Iterations: 17
Function evaluations: 159
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 356.4970154317743
Iteration: 2, Func. Count: 22, Neg. LLF: 168.0936313076082
Iteration: 3, Func. Count: 33, Neg. LLF: 166.90977432623288
Iteration: 4, Func. Count: 44, Neg. LLF: 165.75218158418627
Iteration: 5, Func. Count: 55, Neg. LLF: 164.90234571803913
Iteration: 6, Func. Count: 65, Neg. LLF: 166.0780546500673
Iteration: 7, Func. Count: 76, Neg. LLF: 164.70848226753617
Iteration: 8, Func. Count: 86, Neg. LLF: 164.3860757697616
Iteration: 9, Func. Count: 96, Neg. LLF: 167.68624220059903
Iteration: 10, Func. Count: 107, Neg. LLF: 164.09557008963998
Iteration: 11, Func. Count: 117, Neg. LLF: 163.76654869599304
Iteration: 12, Func. Count: 127, Neg. LLF: 163.7737444039329
Iteration: 13, Func. Count: 138, Neg. LLF: 163.73515574960794
Iteration: 14, Func. Count: 148, Neg. LLF: 163.73232935532715
Iteration: 15, Func. Count: 158, Neg. LLF: 163.7320674301141
Iteration: 16, Func. Count: 168, Neg. LLF: 163.73204274483763
Iteration: 17, Func. Count: 177, Neg. LLF: 163.73204274481728
Optimization terminated successfully (Exit mode 0)
Current function value: 163.73204274483763
Iterations: 17
Function evaluations: 177
Gradient evaluations: 17
Iteration: 1, Func. Count: 12, Neg. LLF: 359.86082582001166
Iteration: 2, Func. Count: 24, Neg. LLF: 167.6808394944941
Iteration: 3, Func. Count: 36, Neg. LLF: 166.19340743609484
Iteration: 4, Func. Count: 48, Neg. LLF: 165.0170724944023
Iteration: 5, Func. Count: 59, Neg. LLF: 163.883785974124
Iteration: 6, Func. Count: 70, Neg. LLF: 163.4583201242836
Iteration: 7, Func. Count: 81, Neg. LLF: 163.33522923562393
Iteration: 8, Func. Count: 92, Neg. LLF: 163.1089383655748
Iteration: 9, Func. Count: 103, Neg. LLF: 162.84036635266852
Iteration: 10, Func. Count: 114, Neg. LLF: 162.6926773043987
Iteration: 11, Func. Count: 125, Neg. LLF: 162.31279122592434
Iteration: 12, Func. Count: 136, Neg. LLF: 162.28665610622534
Iteration: 13, Func. Count: 147, Neg. LLF: 162.2780602444398
Iteration: 14, Func. Count: 158, Neg. LLF: 162.27724297014097
Iteration: 15, Func. Count: 169, Neg. LLF: 162.2769856319923
Iteration: 16, Func. Count: 180, Neg. LLF: 162.27673667405602
Iteration: 17, Func. Count: 191, Neg. LLF: 162.27672892634243
Iteration: 18, Func. Count: 201, Neg. LLF: 162.2767289062449
Optimization terminated successfully (Exit mode 0)
Current function value: 162.27672892634243
Iterations: 18
Function evaluations: 201
Gradient evaluations: 18
Iteration: 1, Func. Count: 9, Neg. LLF: 169.54310078509621
Iteration: 2, Func. Count: 19, Neg. LLF: 165.93573579308233
Iteration: 3, Func. Count: 27, Neg. LLF: 166.37053328930017
Iteration: 4, Func. Count: 37, Neg. LLF: 165.56791492830342
Iteration: 5, Func. Count: 45, Neg. LLF: 166.99523106965273
Iteration: 6, Func. Count: 55, Neg. LLF: 165.4806793068829
Iteration: 7, Func. Count: 63, Neg. LLF: 165.48705602733304
Iteration: 8, Func. Count: 72, Neg. LLF: 164.86419771499644
Iteration: 9, Func. Count: 80, Neg. LLF: 164.44433802435213
Iteration: 10, Func. Count: 88, Neg. LLF: 163.92615533494424
Iteration: 11, Func. Count: 96, Neg. LLF: 163.77449769442546
Iteration: 12, Func. Count: 104, Neg. LLF: 163.74610979063488
Iteration: 13, Func. Count: 112, Neg. LLF: 163.7303303458222
Iteration: 14, Func. Count: 120, Neg. LLF: 163.71861168065539
Iteration: 15, Func. Count: 128, Neg. LLF: 163.7159956858531
Iteration: 16, Func. Count: 136, Neg. LLF: 163.7149821116743
Iteration: 17, Func. Count: 144, Neg. LLF: 163.71495203468493
Iteration: 18, Func. Count: 152, Neg. LLF: 163.71489417979797
Iteration: 19, Func. Count: 160, Neg. LLF: 163.71487525246118
Iteration: 20, Func. Count: 168, Neg. LLF: 163.71487204983333
Iteration: 21, Func. Count: 175, Neg. LLF: 163.714872049811
Optimization terminated successfully (Exit mode 0)
Current function value: 163.71487204983333
Iterations: 21
Function evaluations: 175
Gradient evaluations: 21
Iteration: 1, Func. Count: 10, Neg. LLF: 362.3969025072603
Iteration: 2, Func. Count: 20, Neg. LLF: 167.17957230743582
Iteration: 3, Func. Count: 30, Neg. LLF: 165.31729575094337
Iteration: 4, Func. Count: 39, Neg. LLF: 164.75776134280505
Iteration: 5, Func. Count: 48, Neg. LLF: 176.47143742933585
Iteration: 6, Func. Count: 58, Neg. LLF: 164.13223326961972
Iteration: 7, Func. Count: 67, Neg. LLF: 163.92528748875
Iteration: 8, Func. Count: 76, Neg. LLF: 163.65757676989875
Iteration: 9, Func. Count: 85, Neg. LLF: 163.4891858422603
Iteration: 10, Func. Count: 94, Neg. LLF: 163.44477806076557
Iteration: 11, Func. Count: 103, Neg. LLF: 163.43495613105176
Iteration: 12, Func. Count: 112, Neg. LLF: 163.4220736188524
Iteration: 13, Func. Count: 121, Neg. LLF: 163.4202241061073
Iteration: 14, Func. Count: 130, Neg. LLF: 163.41996141912392
Iteration: 15, Func. Count: 139, Neg. LLF: 163.41993961418385
Iteration: 16, Func. Count: 148, Neg. LLF: 163.41993174870623
Iteration: 17, Func. Count: 157, Neg. LLF: 163.4199309566067
Optimization terminated successfully (Exit mode 0)
Current function value: 163.4199309566067
Iterations: 17
Function evaluations: 157
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 361.6058318903487
Iteration: 2, Func. Count: 22, Neg. LLF: 166.81142713770433
Iteration: 3, Func. Count: 33, Neg. LLF: 164.05979388169376
Iteration: 4, Func. Count: 43, Neg. LLF: 164.065205956105
Iteration: 5, Func. Count: 54, Neg. LLF: 168.3536873665962
Iteration: 6, Func. Count: 65, Neg. LLF: 162.3757376719586
Iteration: 7, Func. Count: 75, Neg. LLF: 162.30696147518853
Iteration: 8, Func. Count: 85, Neg. LLF: 162.24565679321108
Iteration: 9, Func. Count: 95, Neg. LLF: 162.22751511586299
Iteration: 10, Func. Count: 105, Neg. LLF: 162.21036264717404
Iteration: 11, Func. Count: 115, Neg. LLF: 162.2102504915182
Iteration: 12, Func. Count: 126, Neg. LLF: 162.16980134035464
Iteration: 13, Func. Count: 136, Neg. LLF: 162.09677409914042
Iteration: 14, Func. Count: 146, Neg. LLF: 162.04516085801123
Iteration: 15, Func. Count: 156, Neg. LLF: 161.9892019437301
Iteration: 16, Func. Count: 166, Neg. LLF: 162.0107684886091
Iteration: 17, Func. Count: 177, Neg. LLF: 161.8837598205837
Iteration: 18, Func. Count: 187, Neg. LLF: 161.85158396358807
Iteration: 19, Func. Count: 197, Neg. LLF: 161.84917298391827
Iteration: 20, Func. Count: 207, Neg. LLF: 161.84854185304798
Iteration: 21, Func. Count: 217, Neg. LLF: 161.84846620939348
Iteration: 22, Func. Count: 227, Neg. LLF: 161.8484631855033
Iteration: 23, Func. Count: 236, Neg. LLF: 161.84846318541733
Optimization terminated successfully (Exit mode 0)
Current function value: 161.8484631855033
Iterations: 23
Function evaluations: 236
Gradient evaluations: 23
Iteration: 1, Func. Count: 12, Neg. LLF: 357.2242390715354
Iteration: 2, Func. Count: 24, Neg. LLF: 167.5366447060021
Iteration: 3, Func. Count: 36, Neg. LLF: 168.50572718974553
Iteration: 4, Func. Count: 48, Neg. LLF: 167.09800364330658
Iteration: 5, Func. Count: 60, Neg. LLF: 165.18948277102638
Iteration: 6, Func. Count: 72, Neg. LLF: 163.69002659468526
Iteration: 7, Func. Count: 84, Neg. LLF: 163.21388764434425
Iteration: 8, Func. Count: 95, Neg. LLF: 163.2769977828191
Iteration: 9, Func. Count: 107, Neg. LLF: 206.96882117381818
Iteration: 10, Func. Count: 119, Neg. LLF: 162.45648580521754
Iteration: 11, Func. Count: 130, Neg. LLF: 162.3699657741072
Iteration: 12, Func. Count: 141, Neg. LLF: 162.30515464702148
Iteration: 13, Func. Count: 152, Neg. LLF: 162.2583046942874
Iteration: 14, Func. Count: 163, Neg. LLF: 162.15700084388104
Iteration: 15, Func. Count: 174, Neg. LLF: 162.0892554253779
Iteration: 16, Func. Count: 185, Neg. LLF: 161.95958234540757
Iteration: 17, Func. Count: 196, Neg. LLF: 161.9980038026879
Iteration: 18, Func. Count: 208, Neg. LLF: 161.9078054274177
Iteration: 19, Func. Count: 219, Neg. LLF: 161.86054795852854
Iteration: 20, Func. Count: 230, Neg. LLF: 161.84948095184595
Iteration: 21, Func. Count: 241, Neg. LLF: 161.84849046016046
Iteration: 22, Func. Count: 252, Neg. LLF: 161.84846371280653
Iteration: 23, Func. Count: 263, Neg. LLF: 161.8484631274268
Optimization terminated successfully (Exit mode 0)
Current function value: 161.8484631274268
Iterations: 23
Function evaluations: 263
Gradient evaluations: 23
Iteration: 1, Func. Count: 13, Neg. LLF: 360.5989719181722
Iteration: 2, Func. Count: 26, Neg. LLF: 163.70716965546936
Iteration: 3, Func. Count: 38, Neg. LLF: 164.89182343416542
Iteration: 4, Func. Count: 51, Neg. LLF: 167.2942822296465
Iteration: 5, Func. Count: 64, Neg. LLF: 160.4904834709135
Iteration: 6, Func. Count: 76, Neg. LLF: 160.45020969856816
Iteration: 7, Func. Count: 88, Neg. LLF: 160.4105072919832
Iteration: 8, Func. Count: 100, Neg. LLF: 160.39943538613272
Iteration: 9, Func. Count: 112, Neg. LLF: 160.38815193179795
Iteration: 10, Func. Count: 124, Neg. LLF: 160.3796240597649
Iteration: 11, Func. Count: 136, Neg. LLF: 160.37489077516588
Iteration: 12, Func. Count: 148, Neg. LLF: 160.37315205575234
Iteration: 13, Func. Count: 160, Neg. LLF: 160.3725845290886
Iteration: 14, Func. Count: 172, Neg. LLF: 160.37247150192914
Iteration: 15, Func. Count: 184, Neg. LLF: 160.37238048529107
Iteration: 16, Func. Count: 196, Neg. LLF: 160.3723788258117
Iteration: 17, Func. Count: 207, Neg. LLF: 160.37237882576989
Optimization terminated successfully (Exit mode 0)
Current function value: 160.3723788258117
Iterations: 17
Function evaluations: 207
Gradient evaluations: 17
Iteration: 1, Func. Count: 10, Neg. LLF: 168.60293135774089
Iteration: 2, Func. Count: 21, Neg. LLF: 168.32023618937708
Iteration: 3, Func. Count: 32, Neg. LLF: 167.09469778794625
Iteration: 4, Func. Count: 42, Neg. LLF: 166.38394830459526
Iteration: 5, Func. Count: 52, Neg. LLF: 165.69076631431054
Iteration: 6, Func. Count: 61, Neg. LLF: 181.16659248463574
Iteration: 7, Func. Count: 72, Neg. LLF: 165.37564962861978
Iteration: 8, Func. Count: 81, Neg. LLF: 165.6345805811243
Iteration: 9, Func. Count: 91, Neg. LLF: 165.21596128837282
Iteration: 10, Func. Count: 100, Neg. LLF: 164.8793154275118
Iteration: 11, Func. Count: 109, Neg. LLF: 164.07992474955338
Iteration: 12, Func. Count: 118, Neg. LLF: 163.74536007924522
Iteration: 13, Func. Count: 127, Neg. LLF: 163.71485734455158
Iteration: 14, Func. Count: 136, Neg. LLF: 163.65154340852754
Iteration: 15, Func. Count: 145, Neg. LLF: 163.59018039460017
Iteration: 16, Func. Count: 154, Neg. LLF: 163.5000291824836
Iteration: 17, Func. Count: 163, Neg. LLF: 163.37880220976737
Iteration: 18, Func. Count: 172, Neg. LLF: 163.2723819505488
Iteration: 19, Func. Count: 181, Neg. LLF: 163.20257701082159
Iteration: 20, Func. Count: 190, Neg. LLF: 163.20499752012108
Iteration: 21, Func. Count: 200, Neg. LLF: 163.1734899497989
Iteration: 22, Func. Count: 209, Neg. LLF: 163.17026071829224
Iteration: 23, Func. Count: 218, Neg. LLF: 163.16822237238227
Iteration: 24, Func. Count: 227, Neg. LLF: 163.16733379346482
Iteration: 25, Func. Count: 236, Neg. LLF: 163.16713605832982
Iteration: 26, Func. Count: 245, Neg. LLF: 163.16710374027596
Iteration: 27, Func. Count: 254, Neg. LLF: 163.1671027748197
Optimization terminated successfully (Exit mode 0)
Current function value: 163.1671027748197
Iterations: 27
Function evaluations: 254
Gradient evaluations: 27
Iteration: 1, Func. Count: 11, Neg. LLF: 362.4551606828455
Iteration: 2, Func. Count: 22, Neg. LLF: 167.08119457030887
Iteration: 3, Func. Count: 33, Neg. LLF: 165.32045579373386
Iteration: 4, Func. Count: 43, Neg. LLF: 164.77188503930145
Iteration: 5, Func. Count: 53, Neg. LLF: 176.38802531450295
Iteration: 6, Func. Count: 64, Neg. LLF: 164.13452978269413
Iteration: 7, Func. Count: 74, Neg. LLF: 163.9280987619968
Iteration: 8, Func. Count: 84, Neg. LLF: 163.6544251627813
Iteration: 9, Func. Count: 94, Neg. LLF: 163.4898986834234
Iteration: 10, Func. Count: 104, Neg. LLF: 163.23810510789085
Iteration: 11, Func. Count: 114, Neg. LLF: 163.19567300047444
Iteration: 12, Func. Count: 124, Neg. LLF: 163.17668265009436
Iteration: 13, Func. Count: 134, Neg. LLF: 163.17090915638448
Iteration: 14, Func. Count: 144, Neg. LLF: 163.16904399802368
Iteration: 15, Func. Count: 154, Neg. LLF: 163.1684063131064
Iteration: 16, Func. Count: 164, Neg. LLF: 163.1676091411442
Iteration: 17, Func. Count: 174, Neg. LLF: 163.16736914533126
Iteration: 18, Func. Count: 184, Neg. LLF: 163.16724304437201
Iteration: 19, Func. Count: 194, Neg. LLF: 163.167193096562
Iteration: 20, Func. Count: 204, Neg. LLF: 163.1671351752883
Iteration: 21, Func. Count: 214, Neg. LLF: 163.1671089415581
Iteration: 22, Func. Count: 224, Neg. LLF: 163.16710310915826
Iteration: 23, Func. Count: 233, Neg. LLF: 163.16710316098406
Optimization terminated successfully (Exit mode 0)
Current function value: 163.16710310915826
Iterations: 23
Function evaluations: 233
Gradient evaluations: 23
Iteration: 1, Func. Count: 12, Neg. LLF: 361.60031591397757
Iteration: 2, Func. Count: 24, Neg. LLF: 166.7764097405916
Iteration: 3, Func. Count: 36, Neg. LLF: 163.92440325863026
Iteration: 4, Func. Count: 47, Neg. LLF: 164.16092510890718
Iteration: 5, Func. Count: 59, Neg. LLF: 169.2157223463895
Iteration: 6, Func. Count: 71, Neg. LLF: 162.3578873019594
Iteration: 7, Func. Count: 82, Neg. LLF: 162.37729063319316
Iteration: 8, Func. Count: 94, Neg. LLF: 162.2547725274344
Iteration: 9, Func. Count: 105, Neg. LLF: 162.22485407551144
Iteration: 10, Func. Count: 116, Neg. LLF: 162.21212483658823
Iteration: 11, Func. Count: 127, Neg. LLF: 162.17406812218246
Iteration: 12, Func. Count: 138, Neg. LLF: 162.13073640395197
Iteration: 13, Func. Count: 149, Neg. LLF: 162.0713985897827
Iteration: 14, Func. Count: 160, Neg. LLF: 162.06132497643966
Iteration: 15, Func. Count: 171, Neg. LLF: 161.99464498928023
Iteration: 16, Func. Count: 182, Neg. LLF: 161.91456894474837
Iteration: 17, Func. Count: 193, Neg. LLF: 162.00679283223792
Iteration: 18, Func. Count: 205, Neg. LLF: 161.85361703195017
Iteration: 19, Func. Count: 216, Neg. LLF: 161.84958188765646
Iteration: 20, Func. Count: 227, Neg. LLF: 161.84851877410148
Iteration: 21, Func. Count: 238, Neg. LLF: 161.84847353641925
Iteration: 22, Func. Count: 249, Neg. LLF: 161.84847052139145
Iteration: 23, Func. Count: 261, Neg. LLF: 161.848463254776
Iteration: 24, Func. Count: 271, Neg. LLF: 161.84846325475607
Optimization terminated successfully (Exit mode 0)
Current function value: 161.848463254776
Iterations: 24
Function evaluations: 271
Gradient evaluations: 24
Iteration: 1, Func. Count: 13, Neg. LLF: 357.2898688740326
Iteration: 2, Func. Count: 26, Neg. LLF: 166.9938794926142
Iteration: 3, Func. Count: 39, Neg. LLF: 167.86196415248813
Iteration: 4, Func. Count: 52, Neg. LLF: 166.04794044281172
Iteration: 5, Func. Count: 65, Neg. LLF: 164.49832779130435
Iteration: 6, Func. Count: 78, Neg. LLF: 164.33841464711003
Iteration: 7, Func. Count: 91, Neg. LLF: 163.167253099676
Iteration: 8, Func. Count: 103, Neg. LLF: 163.38680784338698
Iteration: 9, Func. Count: 116, Neg. LLF: 166.3164613651019
Iteration: 10, Func. Count: 129, Neg. LLF: 162.42607375561857
Iteration: 11, Func. Count: 141, Neg. LLF: 162.41159274212694
Iteration: 12, Func. Count: 153, Neg. LLF: 162.33569501389923
Iteration: 13, Func. Count: 165, Neg. LLF: 162.27543281002494
Iteration: 14, Func. Count: 177, Neg. LLF: 162.21867059836117
Iteration: 15, Func. Count: 189, Neg. LLF: 162.17781989990485
Iteration: 16, Func. Count: 201, Neg. LLF: 162.09816960781552
Iteration: 17, Func. Count: 213, Neg. LLF: 162.09521080597025
Iteration: 18, Func. Count: 226, Neg. LLF: 161.87409407982253
Iteration: 19, Func. Count: 238, Neg. LLF: 161.92860582121278
Iteration: 20, Func. Count: 251, Neg. LLF: 161.8687125196938
Iteration: 21, Func. Count: 264, Neg. LLF: 161.8485942572506
Iteration: 22, Func. Count: 276, Neg. LLF: 161.84846791800052
Iteration: 23, Func. Count: 288, Neg. LLF: 161.84846341927638
Iteration: 24, Func. Count: 299, Neg. LLF: 161.84846377882204
Optimization terminated successfully (Exit mode 0)
Current function value: 161.84846341927638
Iterations: 24
Function evaluations: 299
Gradient evaluations: 24
Iteration: 1, Func. Count: 14, Neg. LLF: 360.5043809076563
Iteration: 2, Func. Count: 28, Neg. LLF: 164.03475314340636
Iteration: 3, Func. Count: 41, Neg. LLF: 160.54851011184468
Iteration: 4, Func. Count: 54, Neg. LLF: 160.5575172540673
Iteration: 5, Func. Count: 68, Neg. LLF: 160.4424162889955
Iteration: 6, Func. Count: 81, Neg. LLF: 160.40697205377185
Iteration: 7, Func. Count: 94, Neg. LLF: 160.38026019528795
Iteration: 8, Func. Count: 107, Neg. LLF: 160.37552112047453
Iteration: 9, Func. Count: 120, Neg. LLF: 160.37272625476285
Iteration: 10, Func. Count: 133, Neg. LLF: 160.37248631580093
Iteration: 11, Func. Count: 146, Neg. LLF: 160.37242206062788
Iteration: 12, Func. Count: 159, Neg. LLF: 160.3723804654888
Iteration: 13, Func. Count: 172, Neg. LLF: 160.3723788316052
Iteration: 14, Func. Count: 184, Neg. LLF: 160.3723788315848
Optimization terminated successfully (Exit mode 0)
Current function value: 160.3723788316052
Iterations: 14
Function evaluations: 184
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 168.94375794754225
Iteration: 2, Func. Count: 23, Neg. LLF: 168.041802429076
Iteration: 3, Func. Count: 35, Neg. LLF: 166.95546802043856
Iteration: 4, Func. Count: 46, Neg. LLF: 166.35404521299398
Iteration: 5, Func. Count: 57, Neg. LLF: 165.70903571525807
Iteration: 6, Func. Count: 67, Neg. LLF: 179.9704781015276
Iteration: 7, Func. Count: 79, Neg. LLF: 165.33665942847057
Iteration: 8, Func. Count: 89, Neg. LLF: 167.22110394537077
Iteration: 9, Func. Count: 100, Neg. LLF: 165.1871316139111
Iteration: 10, Func. Count: 110, Neg. LLF: 165.07519094512193
Iteration: 11, Func. Count: 120, Neg. LLF: 165.31924220678872
Iteration: 12, Func. Count: 131, Neg. LLF: 164.72310635980648
Iteration: 13, Func. Count: 141, Neg. LLF: 163.672127742731
Iteration: 14, Func. Count: 151, Neg. LLF: 163.3275987619697
Iteration: 15, Func. Count: 161, Neg. LLF: 163.15869121207055
Iteration: 16, Func. Count: 171, Neg. LLF: 162.9076820362438
Iteration: 17, Func. Count: 181, Neg. LLF: 162.82623080259205
Iteration: 18, Func. Count: 191, Neg. LLF: 162.8063895932214
Iteration: 19, Func. Count: 201, Neg. LLF: 162.83115554130399
Iteration: 20, Func. Count: 212, Neg. LLF: 162.77860547073573
Iteration: 21, Func. Count: 222, Neg. LLF: 162.77724606943514
Iteration: 22, Func. Count: 232, Neg. LLF: 162.77556932725923
Iteration: 23, Func. Count: 242, Neg. LLF: 162.7728560264915
Iteration: 24, Func. Count: 252, Neg. LLF: 162.77086223548395
Iteration: 25, Func. Count: 262, Neg. LLF: 162.7690103916883
Iteration: 26, Func. Count: 272, Neg. LLF: 162.76814045074082
Iteration: 27, Func. Count: 282, Neg. LLF: 162.76782829355855
Iteration: 28, Func. Count: 292, Neg. LLF: 162.76779370523434
Iteration: 29, Func. Count: 302, Neg. LLF: 162.76779299757618
Optimization terminated successfully (Exit mode 0)
Current function value: 162.76779299757618
Iterations: 29
Function evaluations: 302
Gradient evaluations: 29
Iteration: 1, Func. Count: 12, Neg. LLF: 367.41847708080485
Iteration: 2, Func. Count: 24, Neg. LLF: 165.38719314276528
Iteration: 3, Func. Count: 35, Neg. LLF: 164.9334884176462
Iteration: 4, Func. Count: 46, Neg. LLF: 165.95241293103615
Iteration: 5, Func. Count: 58, Neg. LLF: 164.40880096404882
Iteration: 6, Func. Count: 69, Neg. LLF: 163.82489741739656
Iteration: 7, Func. Count: 80, Neg. LLF: 163.21188492550675
Iteration: 8, Func. Count: 91, Neg. LLF: 165.43908668660112
Iteration: 9, Func. Count: 103, Neg. LLF: 163.41677204860466
Iteration: 10, Func. Count: 116, Neg. LLF: 162.8906339144076
Iteration: 11, Func. Count: 127, Neg. LLF: 162.82127928574164
Iteration: 12, Func. Count: 138, Neg. LLF: 162.7885426369361
Iteration: 13, Func. Count: 149, Neg. LLF: 162.77619264622703
Iteration: 14, Func. Count: 160, Neg. LLF: 162.77103379739
Iteration: 15, Func. Count: 171, Neg. LLF: 162.76994211773535
Iteration: 16, Func. Count: 182, Neg. LLF: 162.76890649643394
Iteration: 17, Func. Count: 193, Neg. LLF: 162.76813078872758
Iteration: 18, Func. Count: 204, Neg. LLF: 162.76792226605684
Iteration: 19, Func. Count: 215, Neg. LLF: 162.76785236144534
Iteration: 20, Func. Count: 226, Neg. LLF: 162.76780678894917
Iteration: 21, Func. Count: 237, Neg. LLF: 162.76779456738467
Iteration: 22, Func. Count: 248, Neg. LLF: 162.76779302439408
Iteration: 23, Func. Count: 258, Neg. LLF: 162.76779309379125
Optimization terminated successfully (Exit mode 0)
Current function value: 162.76779302439408
Iterations: 23
Function evaluations: 258
Gradient evaluations: 23
Iteration: 1, Func. Count: 13, Neg. LLF: 362.0731579332754
Iteration: 2, Func. Count: 26, Neg. LLF: 166.25127193682866
Iteration: 3, Func. Count: 39, Neg. LLF: 162.8964313172001
Iteration: 4, Func. Count: 51, Neg. LLF: 162.74811141090882
Iteration: 5, Func. Count: 63, Neg. LLF: 163.3002759295648
Iteration: 6, Func. Count: 77, Neg. LLF: 162.38649151971327
Iteration: 7, Func. Count: 89, Neg. LLF: 162.26211598664884
Iteration: 8, Func. Count: 101, Neg. LLF: 162.23244913295866
Iteration: 9, Func. Count: 113, Neg. LLF: 162.25220230813918
Iteration: 10, Func. Count: 126, Neg. LLF: 162.14131095046926
Iteration: 11, Func. Count: 138, Neg. LLF: 162.10201312643014
Iteration: 12, Func. Count: 150, Neg. LLF: 161.98382259912208
Iteration: 13, Func. Count: 162, Neg. LLF: 167.31513860242092
Iteration: 14, Func. Count: 175, Neg. LLF: 162.48860659689066
Iteration: 15, Func. Count: 188, Neg. LLF: 161.93884611826854
Iteration: 16, Func. Count: 201, Neg. LLF: 161.8507289632665
Iteration: 17, Func. Count: 213, Neg. LLF: 161.84882425672905
Iteration: 18, Func. Count: 225, Neg. LLF: 161.84855437897068
Iteration: 19, Func. Count: 237, Neg. LLF: 161.84847782884736
Iteration: 20, Func. Count: 249, Neg. LLF: 161.84846388465573
Iteration: 21, Func. Count: 261, Neg. LLF: 161.84844762262523
Iteration: 22, Func. Count: 275, Neg. LLF: 161.85147526362152
Optimization terminated successfully (Exit mode 0)
Current function value: 161.84845933503817
Iterations: 23
Function evaluations: 278
Gradient evaluations: 22
Iteration: 1, Func. Count: 14, Neg. LLF: 357.9905481217358
Iteration: 2, Func. Count: 28, Neg. LLF: 166.99141046006113
Iteration: 3, Func. Count: 42, Neg. LLF: 167.81593889601945
Iteration: 4, Func. Count: 56, Neg. LLF: 165.2558529399735
Iteration: 5, Func. Count: 70, Neg. LLF: 164.29824274651648
Iteration: 6, Func. Count: 84, Neg. LLF: 164.9264027904565
Iteration: 7, Func. Count: 98, Neg. LLF: 172.7192357842748
Iteration: 8, Func. Count: 112, Neg. LLF: 163.39860179271517
Iteration: 9, Func. Count: 125, Neg. LLF: 162.83041164529928
Iteration: 10, Func. Count: 138, Neg. LLF: 163.6285952388143
Iteration: 11, Func. Count: 152, Neg. LLF: 162.83299358374748
Iteration: 12, Func. Count: 166, Neg. LLF: 162.33931215738122
Iteration: 13, Func. Count: 179, Neg. LLF: 162.27585362571645
Iteration: 14, Func. Count: 192, Neg. LLF: 162.2149259820204
Iteration: 15, Func. Count: 205, Neg. LLF: 162.17997893888966
Iteration: 16, Func. Count: 218, Neg. LLF: 162.14345595855085
Iteration: 17, Func. Count: 231, Neg. LLF: 162.05706753180942
Iteration: 18, Func. Count: 244, Neg. LLF: 161.92838037967354
Iteration: 19, Func. Count: 257, Neg. LLF: 161.8859046805758
Iteration: 20, Func. Count: 270, Neg. LLF: 162.12389136014684
Iteration: 21, Func. Count: 284, Neg. LLF: 161.8564579108834
Iteration: 22, Func. Count: 297, Neg. LLF: 161.84917180368151
Iteration: 23, Func. Count: 310, Neg. LLF: 161.84857389223095
Iteration: 24, Func. Count: 323, Neg. LLF: 161.84847356646333
Iteration: 25, Func. Count: 336, Neg. LLF: 161.84846403627608
Iteration: 26, Func. Count: 349, Neg. LLF: 161.84846311759796
Optimization terminated successfully (Exit mode 0)
Current function value: 161.84846311759796
Iterations: 26
Function evaluations: 349
Gradient evaluations: 26
Iteration: 1, Func. Count: 15, Neg. LLF: 361.37476207844156
Iteration: 2, Func. Count: 30, Neg. LLF: 163.9189614414521
Iteration: 3, Func. Count: 44, Neg. LLF: 164.77943986936202
Iteration: 4, Func. Count: 59, Neg. LLF: 167.35369575999832
Iteration: 5, Func. Count: 74, Neg. LLF: 160.79732801688482
Iteration: 6, Func. Count: 88, Neg. LLF: 160.48509701220593
Iteration: 7, Func. Count: 102, Neg. LLF: 160.46137647712592
Iteration: 8, Func. Count: 116, Neg. LLF: 160.43441358272534
Iteration: 9, Func. Count: 130, Neg. LLF: 160.41468326512208
Iteration: 10, Func. Count: 144, Neg. LLF: 160.38963661648532
Iteration: 11, Func. Count: 158, Neg. LLF: 160.38021204132295
Iteration: 12, Func. Count: 172, Neg. LLF: 160.3731031342744
Iteration: 13, Func. Count: 186, Neg. LLF: 160.37267171722857
Iteration: 14, Func. Count: 200, Neg. LLF: 160.37241854602829
Iteration: 15, Func. Count: 214, Neg. LLF: 160.37238053358024
Iteration: 16, Func. Count: 228, Neg. LLF: 160.37237880701193
Iteration: 17, Func. Count: 241, Neg. LLF: 160.37237880701971
Optimization terminated successfully (Exit mode 0)
Current function value: 160.37237880701193
Iterations: 17
Function evaluations: 241
Gradient evaluations: 17
Iteration: 1, Func. Count: 8, Neg. LLF: 169.3214110358327
Iteration: 2, Func. Count: 16, Neg. LLF: 168.4957118753626
Iteration: 3, Func. Count: 25, Neg. LLF: 167.53210923292517
Iteration: 4, Func. Count: 32, Neg. LLF: 170.62443534697067
Iteration: 5, Func. Count: 40, Neg. LLF: 168.27868522600943
Iteration: 6, Func. Count: 48, Neg. LLF: 167.68846533693932
Iteration: 7, Func. Count: 56, Neg. LLF: 167.2025553851006
Iteration: 8, Func. Count: 64, Neg. LLF: 166.90916203143138
Iteration: 9, Func. Count: 71, Neg. LLF: 166.84485531280376
Iteration: 10, Func. Count: 78, Neg. LLF: 166.5493976005745
Iteration: 11, Func. Count: 85, Neg. LLF: 166.4054916388035
Iteration: 12, Func. Count: 92, Neg. LLF: 166.14483639685778
Iteration: 13, Func. Count: 99, Neg. LLF: 165.67401874545374
Iteration: 14, Func. Count: 106, Neg. LLF: 166.513085151284
Iteration: 15, Func. Count: 114, Neg. LLF: 166.64297505823657
Iteration: 16, Func. Count: 122, Neg. LLF: 165.20573969802004
Iteration: 17, Func. Count: 130, Neg. LLF: 164.92286957871767
Iteration: 18, Func. Count: 137, Neg. LLF: 164.77313649032692
Iteration: 19, Func. Count: 144, Neg. LLF: 164.77012401446922
Iteration: 20, Func. Count: 152, Neg. LLF: 164.75643109072752
Iteration: 21, Func. Count: 159, Neg. LLF: 164.75637471974682
Iteration: 22, Func. Count: 166, Neg. LLF: 164.75637398207374
Optimization terminated successfully (Exit mode 0)
Current function value: 164.75637398207374
Iterations: 22
Function evaluations: 166
Gradient evaluations: 22
Iteration: 1, Func. Count: 9, Neg. LLF: 370.4858739793173
Iteration: 2, Func. Count: 18, Neg. LLF: 168.7902101840987
Iteration: 3, Func. Count: 27, Neg. LLF: 178.83729565899023
Iteration: 4, Func. Count: 37, Neg. LLF: 165.4003660123201
Iteration: 5, Func. Count: 45, Neg. LLF: 165.37587361694858
Iteration: 6, Func. Count: 53, Neg. LLF: 165.46468461590248
Iteration: 7, Func. Count: 62, Neg. LLF: 165.32228750525235
Iteration: 8, Func. Count: 70, Neg. LLF: 165.28907316726475
Iteration: 9, Func. Count: 78, Neg. LLF: 165.1174572252781
Iteration: 10, Func. Count: 86, Neg. LLF: 169.91170755988605
Iteration: 11, Func. Count: 95, Neg. LLF: 167.58093715464219
Iteration: 12, Func. Count: 104, Neg. LLF: 167.37888417053674
Iteration: 13, Func. Count: 113, Neg. LLF: 167.2932850643094
Iteration: 14, Func. Count: 122, Neg. LLF: 166.85562875373165
Iteration: 15, Func. Count: 131, Neg. LLF: 189.40106446776332
Iteration: 16, Func. Count: 140, Neg. LLF: 164.59142385004606
Iteration: 17, Func. Count: 149, Neg. LLF: 167.18695234056102
Iteration: 18, Func. Count: 158, Neg. LLF: 165.05843202937663
Iteration: 19, Func. Count: 167, Neg. LLF: 164.59454548518255
Iteration: 20, Func. Count: 176, Neg. LLF: 163.83344435255364
Iteration: 21, Func. Count: 184, Neg. LLF: 172.94766635776813
Iteration: 22, Func. Count: 194, Neg. LLF: 163.79962037562635
Iteration: 23, Func. Count: 202, Neg. LLF: 163.7926656936259
Iteration: 24, Func. Count: 210, Neg. LLF: 163.79191966309372
Iteration: 25, Func. Count: 218, Neg. LLF: 163.7919186000049
Iteration: 26, Func. Count: 225, Neg. LLF: 163.7919186000571
Optimization terminated successfully (Exit mode 0)
Current function value: 163.7919186000049
Iterations: 27
Function evaluations: 225
Gradient evaluations: 26
Iteration: 1, Func. Count: 10, Neg. LLF: 374.80054384096195
Iteration: 2, Func. Count: 20, Neg. LLF: 167.5486912198841
Iteration: 3, Func. Count: 30, Neg. LLF: 165.7111090408753
Iteration: 4, Func. Count: 40, Neg. LLF: 164.1965688177012
Iteration: 5, Func. Count: 49, Neg. LLF: 163.77638667179266
Iteration: 6, Func. Count: 58, Neg. LLF: 163.6922050456387
Iteration: 7, Func. Count: 67, Neg. LLF: 163.66825244013486
Iteration: 8, Func. Count: 76, Neg. LLF: 163.60054833058953
Iteration: 9, Func. Count: 85, Neg. LLF: 163.53583841210002
Iteration: 10, Func. Count: 94, Neg. LLF: 163.52255313727008
Iteration: 11, Func. Count: 103, Neg. LLF: 163.49403140020848
Iteration: 12, Func. Count: 112, Neg. LLF: 163.6532509880514
Iteration: 13, Func. Count: 122, Neg. LLF: 163.4751788671669
Iteration: 14, Func. Count: 131, Neg. LLF: 163.47454966766938
Iteration: 15, Func. Count: 140, Neg. LLF: 163.47453073295543
Iteration: 16, Func. Count: 149, Neg. LLF: 163.47452972217482
Iteration: 17, Func. Count: 157, Neg. LLF: 163.47452972216837
Optimization terminated successfully (Exit mode 0)
Current function value: 163.47452972217482
Iterations: 17
Function evaluations: 157
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 377.29134180251816
Iteration: 2, Func. Count: 22, Neg. LLF: 168.5267814149488
Iteration: 3, Func. Count: 33, Neg. LLF: 166.4924202616764
Iteration: 4, Func. Count: 44, Neg. LLF: 167.2529285798184
Iteration: 5, Func. Count: 55, Neg. LLF: 164.88675486754627
Iteration: 6, Func. Count: 65, Neg. LLF: 164.204343887514
Iteration: 7, Func. Count: 75, Neg. LLF: 165.76583988154053
Iteration: 8, Func. Count: 86, Neg. LLF: 163.77228326692452
Iteration: 9, Func. Count: 96, Neg. LLF: 163.73972649758127
Iteration: 10, Func. Count: 106, Neg. LLF: 163.73434056728078
Iteration: 11, Func. Count: 116, Neg. LLF: 163.73385606963492
Iteration: 12, Func. Count: 126, Neg. LLF: 163.73274536141878
Iteration: 13, Func. Count: 136, Neg. LLF: 163.7322203262943
Iteration: 14, Func. Count: 146, Neg. LLF: 163.73204888866314
Iteration: 15, Func. Count: 156, Neg. LLF: 163.7320428329498
Iteration: 16, Func. Count: 165, Neg. LLF: 163.73204283286998
Optimization terminated successfully (Exit mode 0)
Current function value: 163.7320428329498
Iterations: 16
Function evaluations: 165
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 378.3057083506321
Iteration: 2, Func. Count: 24, Neg. LLF: 169.55278679804937
Iteration: 3, Func. Count: 36, Neg. LLF: 165.7441205150083
Iteration: 4, Func. Count: 48, Neg. LLF: 164.24853060893378
Iteration: 5, Func. Count: 59, Neg. LLF: 166.308162900964
Iteration: 6, Func. Count: 72, Neg. LLF: 165.9856838805597
Iteration: 7, Func. Count: 84, Neg. LLF: 163.3725103334195
Iteration: 8, Func. Count: 95, Neg. LLF: 163.32142165611296
Iteration: 9, Func. Count: 106, Neg. LLF: 163.1416845909464
Iteration: 10, Func. Count: 117, Neg. LLF: 174.01020516062124
Iteration: 11, Func. Count: 129, Neg. LLF: 173.10791978203017
Iteration: 12, Func. Count: 141, Neg. LLF: 170.32297679269251
Iteration: 13, Func. Count: 153, Neg. LLF: 163.01326344453346
Iteration: 14, Func. Count: 165, Neg. LLF: 162.72385001737436
Iteration: 15, Func. Count: 176, Neg. LLF: 162.5641410011486
Iteration: 16, Func. Count: 187, Neg. LLF: 162.50776108026247
Iteration: 17, Func. Count: 198, Neg. LLF: 162.45158914344444
Iteration: 18, Func. Count: 209, Neg. LLF: 162.3780897394423
Iteration: 19, Func. Count: 220, Neg. LLF: 162.33100044057764
Iteration: 20, Func. Count: 231, Neg. LLF: 162.28916921768177
Iteration: 21, Func. Count: 242, Neg. LLF: 162.2778699534859
Iteration: 22, Func. Count: 253, Neg. LLF: 162.27675250082962
Iteration: 23, Func. Count: 264, Neg. LLF: 162.27673127697454
Iteration: 24, Func. Count: 275, Neg. LLF: 162.27672878733435
Iteration: 25, Func. Count: 285, Neg. LLF: 162.27672876728352
Optimization terminated successfully (Exit mode 0)
Current function value: 162.27672878733435
Iterations: 25
Function evaluations: 285
Gradient evaluations: 25
Iteration: 1, Func. Count: 9, Neg. LLF: 169.38834774282145
Iteration: 2, Func. Count: 19, Neg. LLF: 167.46432568008026
Iteration: 3, Func. Count: 28, Neg. LLF: 167.04047589251658
Iteration: 4, Func. Count: 36, Neg. LLF: 169.6639410985095
Iteration: 5, Func. Count: 45, Neg. LLF: 166.89910540536474
Iteration: 6, Func. Count: 53, Neg. LLF: 166.84796709389477
Iteration: 7, Func. Count: 61, Neg. LLF: 166.7365033816035
Iteration: 8, Func. Count: 69, Neg. LLF: 166.45119119032532
Iteration: 9, Func. Count: 77, Neg. LLF: 166.20791215840478
Iteration: 10, Func. Count: 85, Neg. LLF: 165.54734268319876
Iteration: 11, Func. Count: 93, Neg. LLF: 164.9123064496585
Iteration: 12, Func. Count: 101, Neg. LLF: 164.98316567622265
Iteration: 13, Func. Count: 110, Neg. LLF: 164.80720230649962
Iteration: 14, Func. Count: 118, Neg. LLF: 164.76106953744002
Iteration: 15, Func. Count: 126, Neg. LLF: 164.75671408032434
Iteration: 16, Func. Count: 134, Neg. LLF: 164.75638064342616
Iteration: 17, Func. Count: 142, Neg. LLF: 164.7563740608381
Iteration: 18, Func. Count: 149, Neg. LLF: 164.75637403729888
Optimization terminated successfully (Exit mode 0)
Current function value: 164.7563740608381
Iterations: 18
Function evaluations: 149
Gradient evaluations: 18
Iteration: 1, Func. Count: 10, Neg. LLF: 358.73577443428746
Iteration: 2, Func. Count: 20, Neg. LLF: 167.55300541554436
Iteration: 3, Func. Count: 30, Neg. LLF: 165.8206542263102
Iteration: 4, Func. Count: 39, Neg. LLF: 175.37835865161
Iteration: 5, Func. Count: 50, Neg. LLF: 166.73428263562866
Iteration: 6, Func. Count: 60, Neg. LLF: 165.44364388605385
Iteration: 7, Func. Count: 69, Neg. LLF: 165.88696237244022
Iteration: 8, Func. Count: 79, Neg. LLF: 165.35194064475758
Iteration: 9, Func. Count: 88, Neg. LLF: 165.3106263971989
Iteration: 10, Func. Count: 97, Neg. LLF: 165.28456937800755
Iteration: 11, Func. Count: 106, Neg. LLF: 165.01666461150566
Iteration: 12, Func. Count: 115, Neg. LLF: 164.26867172127874
Iteration: 13, Func. Count: 124, Neg. LLF: 174.75669555529473
Iteration: 14, Func. Count: 134, Neg. LLF: 164.3376581385383
Iteration: 15, Func. Count: 144, Neg. LLF: 163.8503442178483
Iteration: 16, Func. Count: 153, Neg. LLF: 163.7993676299488
Iteration: 17, Func. Count: 162, Neg. LLF: 163.7923729834668
Iteration: 18, Func. Count: 171, Neg. LLF: 163.79192882915441
Iteration: 19, Func. Count: 180, Neg. LLF: 163.79191860699885
Iteration: 20, Func. Count: 188, Neg. LLF: 163.79191860716656
Optimization terminated successfully (Exit mode 0)
Current function value: 163.79191860699885
Iterations: 20
Function evaluations: 188
Gradient evaluations: 20
Iteration: 1, Func. Count: 11, Neg. LLF: 353.92393309102147
Iteration: 2, Func. Count: 22, Neg. LLF: 167.56051250253898
Iteration: 3, Func. Count: 33, Neg. LLF: 164.6592861695733
Iteration: 4, Func. Count: 43, Neg. LLF: 177.4021928394405
Iteration: 5, Func. Count: 55, Neg. LLF: 164.31143194658472
Iteration: 6, Func. Count: 65, Neg. LLF: 164.11341524672866
Iteration: 7, Func. Count: 75, Neg. LLF: 163.93051346044172
Iteration: 8, Func. Count: 85, Neg. LLF: 163.75683009506736
Iteration: 9, Func. Count: 95, Neg. LLF: 163.66552703987367
Iteration: 10, Func. Count: 105, Neg. LLF: 163.6613555997441
Iteration: 11, Func. Count: 115, Neg. LLF: 163.6111842820812
Iteration: 12, Func. Count: 125, Neg. LLF: 166.3322398664946
Iteration: 13, Func. Count: 136, Neg. LLF: 166.1753793212372
Iteration: 14, Func. Count: 147, Neg. LLF: 165.94733811071504
Iteration: 15, Func. Count: 158, Neg. LLF: 164.34569820661468
Iteration: 16, Func. Count: 169, Neg. LLF: 163.59963589415617
Iteration: 17, Func. Count: 180, Neg. LLF: 163.48682701072553
Iteration: 18, Func. Count: 190, Neg. LLF: 163.47893267155243
Iteration: 19, Func. Count: 200, Neg. LLF: 163.47890515544464
Iteration: 20, Func. Count: 211, Neg. LLF: 163.47481534935443
Iteration: 21, Func. Count: 221, Neg. LLF: 163.47453009632227
Iteration: 22, Func. Count: 230, Neg. LLF: 163.47453009633168
Optimization terminated successfully (Exit mode 0)
Current function value: 163.47453009632227
Iterations: 22
Function evaluations: 230
Gradient evaluations: 22
Iteration: 1, Func. Count: 12, Neg. LLF: 358.4615536828569
Iteration: 2, Func. Count: 24, Neg. LLF: 167.8298151430849
Iteration: 3, Func. Count: 36, Neg. LLF: 166.8275172880833
Iteration: 4, Func. Count: 48, Neg. LLF: 164.46096435200369
Iteration: 5, Func. Count: 59, Neg. LLF: 169.0424710008934
Iteration: 6, Func. Count: 72, Neg. LLF: 165.52902770875232
Iteration: 7, Func. Count: 84, Neg. LLF: 163.9473896055402
Iteration: 8, Func. Count: 95, Neg. LLF: 163.76838860796045
Iteration: 9, Func. Count: 106, Neg. LLF: 163.75334344301868
Iteration: 10, Func. Count: 117, Neg. LLF: 163.69232901325609
Iteration: 11, Func. Count: 128, Neg. LLF: 163.6782201747
Iteration: 12, Func. Count: 139, Neg. LLF: 163.67023547352653
Iteration: 13, Func. Count: 150, Neg. LLF: 164.53592676133852
Iteration: 14, Func. Count: 162, Neg. LLF: 165.27104266947117
Iteration: 15, Func. Count: 174, Neg. LLF: 165.33077208943337
Iteration: 16, Func. Count: 186, Neg. LLF: 163.7450405917598
Iteration: 17, Func. Count: 198, Neg. LLF: 549.1567925425472
Iteration: 18, Func. Count: 211, Neg. LLF: 165.45519619155564
Iteration: 19, Func. Count: 223, Neg. LLF: 163.53048766199294
Iteration: 20, Func. Count: 235, Neg. LLF: 163.49787447470234
Iteration: 21, Func. Count: 246, Neg. LLF: 163.47864952812373
Iteration: 22, Func. Count: 257, Neg. LLF: 163.48213386551402
Iteration: 23, Func. Count: 269, Neg. LLF: 163.4746911396879
Iteration: 24, Func. Count: 280, Neg. LLF: 163.4745307908095
Iteration: 25, Func. Count: 291, Neg. LLF: 163.47452974830102
Iteration: 26, Func. Count: 301, Neg. LLF: 163.47452989362102
Optimization terminated successfully (Exit mode 0)
Current function value: 163.47452974830102
Iterations: 27
Function evaluations: 301
Gradient evaluations: 26
Iteration: 1, Func. Count: 13, Neg. LLF: 361.3708202266555
Iteration: 2, Func. Count: 26, Neg. LLF: 167.35987651738017
Iteration: 3, Func. Count: 39, Neg. LLF: 165.4005304107502
Iteration: 4, Func. Count: 51, Neg. LLF: 163.9238967120009
Iteration: 5, Func. Count: 63, Neg. LLF: 163.1283850727161
Iteration: 6, Func. Count: 75, Neg. LLF: 162.88873165176935
Iteration: 7, Func. Count: 87, Neg. LLF: 163.8932798525936
Iteration: 8, Func. Count: 100, Neg. LLF: 162.91066565435878
Iteration: 9, Func. Count: 113, Neg. LLF: 162.53990383584994
Iteration: 10, Func. Count: 125, Neg. LLF: 162.46931952856852
Iteration: 11, Func. Count: 137, Neg. LLF: 162.3384753603653
Iteration: 12, Func. Count: 149, Neg. LLF: 162.2846659286146
Iteration: 13, Func. Count: 161, Neg. LLF: 162.28093421446403
Iteration: 14, Func. Count: 173, Neg. LLF: 162.27885847110542
Iteration: 15, Func. Count: 185, Neg. LLF: 162.2770827601427
Iteration: 16, Func. Count: 197, Neg. LLF: 162.27675813824865
Iteration: 17, Func. Count: 209, Neg. LLF: 162.27672894631834
Iteration: 18, Func. Count: 220, Neg. LLF: 162.27672892618546
Optimization terminated successfully (Exit mode 0)
Current function value: 162.27672894631834
Iterations: 18
Function evaluations: 220
Gradient evaluations: 18
Iteration: 1, Func. Count: 10, Neg. LLF: 169.43970853756406
Iteration: 2, Func. Count: 21, Neg. LLF: 165.9263976794243
Iteration: 3, Func. Count: 30, Neg. LLF: 166.22500251155893
Iteration: 4, Func. Count: 40, Neg. LLF: 165.585850516752
Iteration: 5, Func. Count: 49, Neg. LLF: 166.5353606310892
Iteration: 6, Func. Count: 60, Neg. LLF: 165.4724867408533
Iteration: 7, Func. Count: 69, Neg. LLF: 165.43306817667874
Iteration: 8, Func. Count: 78, Neg. LLF: 165.27876570101816
Iteration: 9, Func. Count: 87, Neg. LLF: 164.99176350202447
Iteration: 10, Func. Count: 96, Neg. LLF: 164.47736718522577
Iteration: 11, Func. Count: 105, Neg. LLF: 164.97393098147063
Iteration: 12, Func. Count: 115, Neg. LLF: 163.83412872097873
Iteration: 13, Func. Count: 124, Neg. LLF: 163.72706213472827
Iteration: 14, Func. Count: 133, Neg. LLF: 163.71860781128407
Iteration: 15, Func. Count: 142, Neg. LLF: 163.7152097534662
Iteration: 16, Func. Count: 151, Neg. LLF: 163.7149076427866
Iteration: 17, Func. Count: 160, Neg. LLF: 163.7148756416322
Iteration: 18, Func. Count: 169, Neg. LLF: 163.71487424028052
Iteration: 19, Func. Count: 178, Neg. LLF: 163.7148725467521
Iteration: 20, Func. Count: 186, Neg. LLF: 163.71487254680181
Optimization terminated successfully (Exit mode 0)
Current function value: 163.7148725467521
Iterations: 20
Function evaluations: 186
Gradient evaluations: 20
Iteration: 1, Func. Count: 11, Neg. LLF: 359.0222078730601
Iteration: 2, Func. Count: 22, Neg. LLF: 168.5618553854974
Iteration: 3, Func. Count: 33, Neg. LLF: 165.19644794804097
Iteration: 4, Func. Count: 43, Neg. LLF: 165.0348320045082
Iteration: 5, Func. Count: 53, Neg. LLF: 173.44810927795837
Iteration: 6, Func. Count: 64, Neg. LLF: 164.13268393705226
Iteration: 7, Func. Count: 74, Neg. LLF: 163.89475846942028
Iteration: 8, Func. Count: 84, Neg. LLF: 163.63469359192524
Iteration: 9, Func. Count: 94, Neg. LLF: 163.50933787131984
Iteration: 10, Func. Count: 104, Neg. LLF: 163.44758618984096
Iteration: 11, Func. Count: 114, Neg. LLF: 163.43578822673928
Iteration: 12, Func. Count: 124, Neg. LLF: 163.4221136875834
Iteration: 13, Func. Count: 134, Neg. LLF: 163.42020405737168
Iteration: 14, Func. Count: 144, Neg. LLF: 163.41994343089348
Iteration: 15, Func. Count: 154, Neg. LLF: 163.41993228765386
Iteration: 16, Func. Count: 164, Neg. LLF: 163.4199310315603
Iteration: 17, Func. Count: 173, Neg. LLF: 163.41993103154402
Optimization terminated successfully (Exit mode 0)
Current function value: 163.4199310315603
Iterations: 17
Function evaluations: 173
Gradient evaluations: 17
Iteration: 1, Func. Count: 12, Neg. LLF: 354.9916405952333
Iteration: 2, Func. Count: 24, Neg. LLF: 170.98125582151886
Iteration: 3, Func. Count: 36, Neg. LLF: 165.018328329351
Iteration: 4, Func. Count: 48, Neg. LLF: 164.6075915769498
Iteration: 5, Func. Count: 60, Neg. LLF: 162.46640244090554
Iteration: 6, Func. Count: 71, Neg. LLF: 163.65089842801592
Iteration: 7, Func. Count: 83, Neg. LLF: 162.3283928557121
Iteration: 8, Func. Count: 94, Neg. LLF: 162.264605496874
Iteration: 9, Func. Count: 105, Neg. LLF: 162.23737255884828
Iteration: 10, Func. Count: 116, Neg. LLF: 162.1997647354773
Iteration: 11, Func. Count: 127, Neg. LLF: 162.2022772261476
Iteration: 12, Func. Count: 139, Neg. LLF: 162.0786397563524
Iteration: 13, Func. Count: 150, Neg. LLF: 162.1847978062043
Iteration: 14, Func. Count: 162, Neg. LLF: 162.07979662882818
Iteration: 15, Func. Count: 174, Neg. LLF: 161.85125270601685
Iteration: 16, Func. Count: 185, Neg. LLF: 161.84909188479895
Iteration: 17, Func. Count: 196, Neg. LLF: 161.8492968533665
Iteration: 18, Func. Count: 208, Neg. LLF: 161.8484636934496
Iteration: 19, Func. Count: 219, Neg. LLF: 161.84846313194697
Optimization terminated successfully (Exit mode 0)
Current function value: 161.84846313194697
Iterations: 19
Function evaluations: 219
Gradient evaluations: 19
Iteration: 1, Func. Count: 13, Neg. LLF: 359.2120768409045
Iteration: 2, Func. Count: 26, Neg. LLF: 166.2449384852984
Iteration: 3, Func. Count: 39, Neg. LLF: 165.5044478189254
Iteration: 4, Func. Count: 52, Neg. LLF: 163.1516823875739
Iteration: 5, Func. Count: 64, Neg. LLF: 164.13538511852556
Iteration: 6, Func. Count: 77, Neg. LLF: 163.3802120309347
Iteration: 7, Func. Count: 90, Neg. LLF: 162.37455579900202
Iteration: 8, Func. Count: 103, Neg. LLF: 162.24850352573793
Iteration: 9, Func. Count: 115, Neg. LLF: 162.39640164050354
Iteration: 10, Func. Count: 128, Neg. LLF: 162.32253879882225
Iteration: 11, Func. Count: 141, Neg. LLF: 162.2417595877425
Iteration: 12, Func. Count: 154, Neg. LLF: 162.11853859689194
Iteration: 13, Func. Count: 166, Neg. LLF: 162.04417256365053
Iteration: 14, Func. Count: 178, Neg. LLF: 164.30316875045386
Iteration: 15, Func. Count: 191, Neg. LLF: 164.4084101667397
Iteration: 16, Func. Count: 204, Neg. LLF: 162.36999521865616
Iteration: 17, Func. Count: 217, Neg. LLF: 161.9113345969951
Iteration: 18, Func. Count: 230, Neg. LLF: 161.86797803380847
Iteration: 19, Func. Count: 243, Neg. LLF: 161.84858419852011
Iteration: 20, Func. Count: 255, Neg. LLF: 161.84850132350041
Iteration: 21, Func. Count: 267, Neg. LLF: 161.84846328909987
Iteration: 22, Func. Count: 278, Neg. LLF: 161.84846364887056
Optimization terminated successfully (Exit mode 0)
Current function value: 161.84846328909987
Iterations: 22
Function evaluations: 278
Gradient evaluations: 22
Iteration: 1, Func. Count: 14, Neg. LLF: 362.15705007156384
Iteration: 2, Func. Count: 28, Neg. LLF: 164.16274380998826
Iteration: 3, Func. Count: 41, Neg. LLF: 164.9805505267234
Iteration: 4, Func. Count: 55, Neg. LLF: 167.38696643072763
Iteration: 5, Func. Count: 69, Neg. LLF: 160.7100001777851
Iteration: 6, Func. Count: 82, Neg. LLF: 160.51315382570743
Iteration: 7, Func. Count: 95, Neg. LLF: 160.4854952703185
Iteration: 8, Func. Count: 108, Neg. LLF: 160.44840020273114
Iteration: 9, Func. Count: 121, Neg. LLF: 160.4221744932045
Iteration: 10, Func. Count: 134, Neg. LLF: 160.3955081486486
Iteration: 11, Func. Count: 147, Neg. LLF: 160.38394152403018
Iteration: 12, Func. Count: 160, Neg. LLF: 160.37351705803349
Iteration: 13, Func. Count: 173, Neg. LLF: 160.37288600966554
Iteration: 14, Func. Count: 186, Neg. LLF: 160.3724175610529
Iteration: 15, Func. Count: 199, Neg. LLF: 160.37238007900712
Iteration: 16, Func. Count: 212, Neg. LLF: 160.37237881066005
Iteration: 17, Func. Count: 224, Neg. LLF: 160.37237881069385
Optimization terminated successfully (Exit mode 0)
Current function value: 160.37237881066005
Iterations: 17
Function evaluations: 224
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 168.94599544517618
Iteration: 2, Func. Count: 23, Neg. LLF: 168.24923197121038
Iteration: 3, Func. Count: 35, Neg. LLF: 166.92950476922607
Iteration: 4, Func. Count: 45, Neg. LLF: 166.3366714066367
Iteration: 5, Func. Count: 56, Neg. LLF: 166.30280702656128
Iteration: 6, Func. Count: 67, Neg. LLF: 165.54775904104918
Iteration: 7, Func. Count: 77, Neg. LLF: 165.42643738419562
Iteration: 8, Func. Count: 87, Neg. LLF: 165.33599696581905
Iteration: 9, Func. Count: 97, Neg. LLF: 165.442765534655
Iteration: 10, Func. Count: 108, Neg. LLF: 164.97806532047696
Iteration: 11, Func. Count: 118, Neg. LLF: 165.12682700114303
Iteration: 12, Func. Count: 129, Neg. LLF: 164.6657075259777
Iteration: 13, Func. Count: 139, Neg. LLF: 163.89425379249954
Iteration: 14, Func. Count: 149, Neg. LLF: 163.39819684922992
Iteration: 15, Func. Count: 159, Neg. LLF: 163.2855228572107
Iteration: 16, Func. Count: 169, Neg. LLF: 163.2138113213109
Iteration: 17, Func. Count: 179, Neg. LLF: 163.18520846816924
Iteration: 18, Func. Count: 189, Neg. LLF: 163.1720352244552
Iteration: 19, Func. Count: 199, Neg. LLF: 163.16767729041635
Iteration: 20, Func. Count: 209, Neg. LLF: 163.16712940558693
Iteration: 21, Func. Count: 219, Neg. LLF: 163.1671098362077
Iteration: 22, Func. Count: 229, Neg. LLF: 163.16710428447556
Iteration: 23, Func. Count: 239, Neg. LLF: 163.16710325122463
Iteration: 24, Func. Count: 248, Neg. LLF: 163.16710315768594
Optimization terminated successfully (Exit mode 0)
Current function value: 163.16710325122463
Iterations: 24
Function evaluations: 248
Gradient evaluations: 24
Iteration: 1, Func. Count: 12, Neg. LLF: 359.0776727308345
Iteration: 2, Func. Count: 24, Neg. LLF: 168.4965523862534
Iteration: 3, Func. Count: 36, Neg. LLF: 165.15432034410796
Iteration: 4, Func. Count: 47, Neg. LLF: 165.1010897550009
Iteration: 5, Func. Count: 59, Neg. LLF: 170.39053811377144
Iteration: 6, Func. Count: 71, Neg. LLF: 164.07372978609794
Iteration: 7, Func. Count: 82, Neg. LLF: 163.94856731006558
Iteration: 8, Func. Count: 93, Neg. LLF: 163.55522128044908
Iteration: 9, Func. Count: 104, Neg. LLF: 163.27170347980046
Iteration: 10, Func. Count: 115, Neg. LLF: 163.18789256686352
Iteration: 11, Func. Count: 126, Neg. LLF: 163.17341132438153
Iteration: 12, Func. Count: 137, Neg. LLF: 163.16935604634742
Iteration: 13, Func. Count: 148, Neg. LLF: 163.16780921976212
Iteration: 14, Func. Count: 159, Neg. LLF: 163.16757928256072
Iteration: 15, Func. Count: 170, Neg. LLF: 163.16733048970696
Iteration: 16, Func. Count: 181, Neg. LLF: 163.16715255889147
Iteration: 17, Func. Count: 192, Neg. LLF: 163.1671114378263
Iteration: 18, Func. Count: 203, Neg. LLF: 163.1671073837688
Iteration: 19, Func. Count: 214, Neg. LLF: 163.16710623280832
Iteration: 20, Func. Count: 225, Neg. LLF: 163.16710428719185
Iteration: 21, Func. Count: 236, Neg. LLF: 163.16710313817367
Iteration: 22, Func. Count: 246, Neg. LLF: 163.16710318991667
Optimization terminated successfully (Exit mode 0)
Current function value: 163.16710313817367
Iterations: 22
Function evaluations: 246
Gradient evaluations: 22
Iteration: 1, Func. Count: 13, Neg. LLF: 354.91882107004596
Iteration: 2, Func. Count: 26, Neg. LLF: 170.30004241833308
Iteration: 3, Func. Count: 39, Neg. LLF: 164.73982693629694
Iteration: 4, Func. Count: 51, Neg. LLF: 164.44183205996248
Iteration: 5, Func. Count: 64, Neg. LLF: 207.6811014489083
Iteration: 6, Func. Count: 77, Neg. LLF: 162.51462443174
Iteration: 7, Func. Count: 89, Neg. LLF: 163.07213759214122
Iteration: 8, Func. Count: 102, Neg. LLF: 162.3126105128161
Iteration: 9, Func. Count: 114, Neg. LLF: 162.27662882184168
Iteration: 10, Func. Count: 126, Neg. LLF: 162.2668701277556
Iteration: 11, Func. Count: 138, Neg. LLF: 162.25764272566596
Iteration: 12, Func. Count: 150, Neg. LLF: 162.23911555071314
Iteration: 13, Func. Count: 162, Neg. LLF: 162.19749767781028
Iteration: 14, Func. Count: 174, Neg. LLF: 162.03091282973125
Iteration: 15, Func. Count: 186, Neg. LLF: 169.07163965152614
Iteration: 16, Func. Count: 199, Neg. LLF: 161.90415006159378
Iteration: 17, Func. Count: 211, Neg. LLF: 161.89132242915935
Iteration: 18, Func. Count: 223, Neg. LLF: 161.86638211425384
Iteration: 19, Func. Count: 235, Neg. LLF: 161.85732072631455
Iteration: 20, Func. Count: 247, Neg. LLF: 161.85210622308404
Iteration: 21, Func. Count: 259, Neg. LLF: 161.8484970606123
Iteration: 22, Func. Count: 271, Neg. LLF: 161.84846403912692
Iteration: 23, Func. Count: 283, Neg. LLF: 161.84846415249285
Optimization terminated successfully (Exit mode 0)
Current function value: 161.84846415249285
Iterations: 23
Function evaluations: 283
Gradient evaluations: 23
Iteration: 1, Func. Count: 14, Neg. LLF: 359.2149664411578
Iteration: 2, Func. Count: 28, Neg. LLF: 166.7045546594223
Iteration: 3, Func. Count: 42, Neg. LLF: 167.7270152674501
Iteration: 4, Func. Count: 56, Neg. LLF: 165.11014655035646
Iteration: 5, Func. Count: 70, Neg. LLF: 163.63587483399942
Iteration: 6, Func. Count: 83, Neg. LLF: 167.62144110274474
Iteration: 7, Func. Count: 98, Neg. LLF: 171.20803674772012
Iteration: 8, Func. Count: 112, Neg. LLF: 162.77599953808524
Iteration: 9, Func. Count: 125, Neg. LLF: 162.59993297710508
Iteration: 10, Func. Count: 138, Neg. LLF: 162.48791007385887
Iteration: 11, Func. Count: 151, Neg. LLF: 162.29416807569876
Iteration: 12, Func. Count: 164, Neg. LLF: 162.27138036388413
Iteration: 13, Func. Count: 177, Neg. LLF: 162.18302811411607
Iteration: 14, Func. Count: 190, Neg. LLF: 162.13994189359263
Iteration: 15, Func. Count: 203, Neg. LLF: 162.28944668582056
Iteration: 16, Func. Count: 217, Neg. LLF: 163.05079747842072
Iteration: 17, Func. Count: 231, Neg. LLF: 162.23059137878118
Iteration: 18, Func. Count: 245, Neg. LLF: 161.91861025338835
Iteration: 19, Func. Count: 258, Neg. LLF: 162.34386283298494
Iteration: 20, Func. Count: 273, Neg. LLF: 161.90026618923852
Iteration: 21, Func. Count: 287, Neg. LLF: 161.85144942711065
Iteration: 22, Func. Count: 300, Neg. LLF: 161.85132606878918
Iteration: 23, Func. Count: 314, Neg. LLF: 161.84862167739658
Iteration: 24, Func. Count: 327, Neg. LLF: 161.84849895388643
Iteration: 25, Func. Count: 340, Neg. LLF: 161.84846392506705
Iteration: 26, Func. Count: 353, Neg. LLF: 161.84846315114234
Optimization terminated successfully (Exit mode 0)
Current function value: 161.84846315114234
Iterations: 26
Function evaluations: 353
Gradient evaluations: 26
Iteration: 1, Func. Count: 15, Neg. LLF: 362.00839571062426
Iteration: 2, Func. Count: 30, Neg. LLF: 163.69730980919297
Iteration: 3, Func. Count: 44, Neg. LLF: 164.84293995587672
Iteration: 4, Func. Count: 59, Neg. LLF: 167.29266450408525
Iteration: 5, Func. Count: 74, Neg. LLF: 160.88162322806104
Iteration: 6, Func. Count: 88, Neg. LLF: 160.48199792890267
Iteration: 7, Func. Count: 102, Neg. LLF: 160.45536147810637
Iteration: 8, Func. Count: 116, Neg. LLF: 160.42831382263955
Iteration: 9, Func. Count: 130, Neg. LLF: 160.4119157678063
Iteration: 10, Func. Count: 144, Neg. LLF: 160.39122345141573
Iteration: 11, Func. Count: 158, Neg. LLF: 160.3815227772571
Iteration: 12, Func. Count: 172, Neg. LLF: 160.37415897860998
Iteration: 13, Func. Count: 186, Neg. LLF: 160.37287163952573
Iteration: 14, Func. Count: 200, Neg. LLF: 160.37253460068132
Iteration: 15, Func. Count: 214, Neg. LLF: 160.37237966967993
Iteration: 16, Func. Count: 228, Neg. LLF: 160.37237879404773
Optimization terminated successfully (Exit mode 0)
Current function value: 160.37237879404773
Iterations: 16
Function evaluations: 228
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 168.99477170752974
Iteration: 2, Func. Count: 25, Neg. LLF: 168.0342504650723
Iteration: 3, Func. Count: 38, Neg. LLF: 167.0247696643148
Iteration: 4, Func. Count: 50, Neg. LLF: 166.41348317096177
Iteration: 5, Func. Count: 62, Neg. LLF: 165.7712362312894
Iteration: 6, Func. Count: 73, Neg. LLF: 184.5573686689958
Iteration: 7, Func. Count: 86, Neg. LLF: 165.39903014099843
Iteration: 8, Func. Count: 97, Neg. LLF: 166.57769977040942
Iteration: 9, Func. Count: 109, Neg. LLF: 165.44660706250144
Iteration: 10, Func. Count: 121, Neg. LLF: 165.12644628026845
Iteration: 11, Func. Count: 132, Neg. LLF: 165.00117988946585
Iteration: 12, Func. Count: 143, Neg. LLF: 164.5347112593399
Iteration: 13, Func. Count: 154, Neg. LLF: 163.61870854912326
Iteration: 14, Func. Count: 165, Neg. LLF: 163.06370425117024
Iteration: 15, Func. Count: 176, Neg. LLF: 162.91627192544527
Iteration: 16, Func. Count: 187, Neg. LLF: 162.86249453534953
Iteration: 17, Func. Count: 198, Neg. LLF: 162.81508431965474
Iteration: 18, Func. Count: 209, Neg. LLF: 162.81017099775775
Iteration: 19, Func. Count: 220, Neg. LLF: 162.79625804329362
Iteration: 20, Func. Count: 231, Neg. LLF: 162.79309729635946
Iteration: 21, Func. Count: 242, Neg. LLF: 162.7887980910332
Iteration: 22, Func. Count: 253, Neg. LLF: 162.77387520260066
Iteration: 23, Func. Count: 264, Neg. LLF: 162.77022684929304
Iteration: 24, Func. Count: 275, Neg. LLF: 162.76922807745171
Iteration: 25, Func. Count: 286, Neg. LLF: 162.76825540996109
Iteration: 26, Func. Count: 297, Neg. LLF: 162.7678570194966
Iteration: 27, Func. Count: 308, Neg. LLF: 162.76779580067677
Iteration: 28, Func. Count: 319, Neg. LLF: 162.76779298470478
Iteration: 29, Func. Count: 329, Neg. LLF: 162.76779298470717
Optimization terminated successfully (Exit mode 0)
Current function value: 162.76779298470478
Iterations: 29
Function evaluations: 329
Gradient evaluations: 29
Iteration: 1, Func. Count: 13, Neg. LLF: 359.31252474010574
Iteration: 2, Func. Count: 26, Neg. LLF: 182.83356455264078
Iteration: 3, Func. Count: 39, Neg. LLF: 166.19028215232842
Iteration: 4, Func. Count: 52, Neg. LLF: 182.25212571790064
Iteration: 5, Func. Count: 65, Neg. LLF: 165.06028554997175
Iteration: 6, Func. Count: 77, Neg. LLF: 165.62379876258544
Iteration: 7, Func. Count: 90, Neg. LLF: 164.97511654890903
Iteration: 8, Func. Count: 102, Neg. LLF: 164.8526122317176
Iteration: 9, Func. Count: 114, Neg. LLF: 164.58100753548555
Iteration: 10, Func. Count: 126, Neg. LLF: 164.27087343761383
Iteration: 11, Func. Count: 138, Neg. LLF: 164.10936920752482
Iteration: 12, Func. Count: 150, Neg. LLF: 163.77249771078297
Iteration: 13, Func. Count: 162, Neg. LLF: 163.67490784111217
Iteration: 14, Func. Count: 174, Neg. LLF: 163.4164411682958
Iteration: 15, Func. Count: 186, Neg. LLF: 163.33088790102693
Iteration: 16, Func. Count: 198, Neg. LLF: 163.0872054827138
Iteration: 17, Func. Count: 210, Neg. LLF: 163.24429342334648
Iteration: 18, Func. Count: 223, Neg. LLF: 162.89703920439567
Iteration: 19, Func. Count: 235, Neg. LLF: 162.78391337410702
Iteration: 20, Func. Count: 247, Neg. LLF: 162.78229163579513
Iteration: 21, Func. Count: 259, Neg. LLF: 162.7781553913894
Iteration: 22, Func. Count: 271, Neg. LLF: 162.77681706820437
Iteration: 23, Func. Count: 283, Neg. LLF: 162.77392262386377
Iteration: 24, Func. Count: 295, Neg. LLF: 162.77102594561654
Iteration: 25, Func. Count: 307, Neg. LLF: 162.76984721665463
Iteration: 26, Func. Count: 319, Neg. LLF: 162.76937456444503
Iteration: 27, Func. Count: 331, Neg. LLF: 162.7688616490966
Iteration: 28, Func. Count: 343, Neg. LLF: 162.76833354773467
Iteration: 29, Func. Count: 355, Neg. LLF: 162.76784206908948
Iteration: 30, Func. Count: 367, Neg. LLF: 162.76779569768976
Iteration: 31, Func. Count: 379, Neg. LLF: 162.7677931335822
Iteration: 32, Func. Count: 390, Neg. LLF: 162.76779320298928
Optimization terminated successfully (Exit mode 0)
Current function value: 162.7677931335822
Iterations: 32
Function evaluations: 390
Gradient evaluations: 32
Iteration: 1, Func. Count: 14, Neg. LLF: 355.7204110807624
Iteration: 2, Func. Count: 28, Neg. LLF: 187.92412737957082
Iteration: 3, Func. Count: 42, Neg. LLF: 164.68826806120794
Iteration: 4, Func. Count: 55, Neg. LLF: 180.34920460303363
Iteration: 5, Func. Count: 69, Neg. LLF: 190.34838900919422
Iteration: 6, Func. Count: 84, Neg. LLF: 162.7031351203849
Iteration: 7, Func. Count: 97, Neg. LLF: 162.88567687883338
Iteration: 8, Func. Count: 111, Neg. LLF: 162.26310933575303
Iteration: 9, Func. Count: 124, Neg. LLF: 162.236657199546
Iteration: 10, Func. Count: 137, Neg. LLF: 162.22170702604095
Iteration: 11, Func. Count: 150, Neg. LLF: 162.20337519220647
Iteration: 12, Func. Count: 163, Neg. LLF: 162.16271349588865
Iteration: 13, Func. Count: 176, Neg. LLF: 162.08450103642386
Iteration: 14, Func. Count: 189, Neg. LLF: 165.9059816854535
Iteration: 15, Func. Count: 203, Neg. LLF: 162.98835225972627
Iteration: 16, Func. Count: 217, Neg. LLF: 162.41930756906814
Iteration: 17, Func. Count: 231, Neg. LLF: 161.9792021399505
Iteration: 18, Func. Count: 245, Neg. LLF: 161.88085864076913
Iteration: 19, Func. Count: 258, Neg. LLF: 161.85958384340086
Iteration: 20, Func. Count: 271, Neg. LLF: 161.85163979767103
Iteration: 21, Func. Count: 284, Neg. LLF: 161.85016159059887
Iteration: 22, Func. Count: 297, Neg. LLF: 161.84857386690769
Iteration: 23, Func. Count: 310, Neg. LLF: 161.84846814370474
Iteration: 24, Func. Count: 323, Neg. LLF: 161.8484633658854
Iteration: 25, Func. Count: 335, Neg. LLF: 161.84846336594828
Optimization terminated successfully (Exit mode 0)
Current function value: 161.8484633658854
Iterations: 25
Function evaluations: 335
Gradient evaluations: 25
Iteration: 1, Func. Count: 15, Neg. LLF: 359.78324750289835
Iteration: 2, Func. Count: 30, Neg. LLF: 188.00114921680853
Iteration: 3, Func. Count: 45, Neg. LLF: 171.228685032152
Iteration: 4, Func. Count: 60, Neg. LLF: 167.95306690989756
Iteration: 5, Func. Count: 75, Neg. LLF: 165.02226129581024
Iteration: 6, Func. Count: 90, Neg. LLF: 166.10418383568518
Iteration: 7, Func. Count: 105, Neg. LLF: 163.01911867564263
Iteration: 8, Func. Count: 119, Neg. LLF: 162.88304217473228
Iteration: 9, Func. Count: 133, Neg. LLF: 162.47279475713958
Iteration: 10, Func. Count: 147, Neg. LLF: 162.36632138253412
Iteration: 11, Func. Count: 161, Neg. LLF: 162.34498798639189
Iteration: 12, Func. Count: 175, Neg. LLF: 162.31309765015462
Iteration: 13, Func. Count: 189, Neg. LLF: 162.29395526252475
Iteration: 14, Func. Count: 203, Neg. LLF: 162.27943755299293
Iteration: 15, Func. Count: 217, Neg. LLF: 162.26244405987399
Iteration: 16, Func. Count: 231, Neg. LLF: 162.4117138969824
Iteration: 17, Func. Count: 246, Neg. LLF: 162.40318466904705
Iteration: 18, Func. Count: 261, Neg. LLF: 162.33431871890963
Iteration: 19, Func. Count: 276, Neg. LLF: 162.2509871837348
Iteration: 20, Func. Count: 291, Neg. LLF: 162.14494550815286
Iteration: 21, Func. Count: 305, Neg. LLF: 162.01892217527768
Iteration: 22, Func. Count: 319, Neg. LLF: 161.92558692883532
Iteration: 23, Func. Count: 333, Neg. LLF: 161.8716754277932
Iteration: 24, Func. Count: 347, Neg. LLF: 161.94750735650817
Iteration: 25, Func. Count: 362, Neg. LLF: 161.8498692636573
Iteration: 26, Func. Count: 376, Neg. LLF: 161.84856757722642
Iteration: 27, Func. Count: 390, Neg. LLF: 161.84847326127405
Iteration: 28, Func. Count: 404, Neg. LLF: 161.84846353412496
Iteration: 29, Func. Count: 417, Neg. LLF: 161.84846389392123
Optimization terminated successfully (Exit mode 0)
Current function value: 161.84846353412496
Iterations: 29
Function evaluations: 417
Gradient evaluations: 29
Iteration: 1, Func. Count: 16, Neg. LLF: 362.7191246511751
Iteration: 2, Func. Count: 32, Neg. LLF: 163.5198106087673
Iteration: 3, Func. Count: 47, Neg. LLF: 164.926184603517
Iteration: 4, Func. Count: 63, Neg. LLF: 167.38265532972923
Iteration: 5, Func. Count: 79, Neg. LLF: 161.0062904172301
Iteration: 6, Func. Count: 94, Neg. LLF: 160.48623791882184
Iteration: 7, Func. Count: 109, Neg. LLF: 160.460370994533
Iteration: 8, Func. Count: 124, Neg. LLF: 160.42611436283687
Iteration: 9, Func. Count: 139, Neg. LLF: 160.40668729635024
Iteration: 10, Func. Count: 154, Neg. LLF: 160.3868961399117
Iteration: 11, Func. Count: 169, Neg. LLF: 160.37875938157396
Iteration: 12, Func. Count: 184, Neg. LLF: 160.3730452153352
Iteration: 13, Func. Count: 199, Neg. LLF: 160.3726254163016
Iteration: 14, Func. Count: 214, Neg. LLF: 160.37241674258948
Iteration: 15, Func. Count: 229, Neg. LLF: 160.37237983463143
Iteration: 16, Func. Count: 244, Neg. LLF: 160.37237880652887
Iteration: 17, Func. Count: 258, Neg. LLF: 160.37237880655877
Optimization terminated successfully (Exit mode 0)
Current function value: 160.37237880652887
Iterations: 17
Function evaluations: 258
Gradient evaluations: 17
Iteration: 1, Func. Count: 6, Neg. LLF: 394.5741953283414
Iteration: 2, Func. Count: 12, Neg. LLF: 167.25031640361973
Iteration: 3, Func. Count: 18, Neg. LLF: 165.78549070338906
Iteration: 4, Func. Count: 24, Neg. LLF: 165.49028933516874
Iteration: 5, Func. Count: 29, Neg. LLF: 165.43225384675554
Iteration: 6, Func. Count: 34, Neg. LLF: 165.135963206909
Iteration: 7, Func. Count: 39, Neg. LLF: 164.59345675335845
Iteration: 8, Func. Count: 44, Neg. LLF: 166.9102300836197
Iteration: 9, Func. Count: 51, Neg. LLF: 164.15816907138873
Iteration: 10, Func. Count: 56, Neg. LLF: 163.92824572561432
Iteration: 11, Func. Count: 61, Neg. LLF: 163.86797613526844
Iteration: 12, Func. Count: 66, Neg. LLF: 163.794465317879
Iteration: 13, Func. Count: 71, Neg. LLF: 163.79254120608942
Iteration: 14, Func. Count: 76, Neg. LLF: 163.79194800178024
Iteration: 15, Func. Count: 81, Neg. LLF: 163.79191959756383
Iteration: 16, Func. Count: 86, Neg. LLF: 163.79191861232187
Optimization terminated successfully (Exit mode 0)
Current function value: 163.79191861232187
Iterations: 16
Function evaluations: 86
Gradient evaluations: 16
Iteration: 1, Func. Count: 5, Neg. LLF: 161.48918735587793
Iteration: 2, Func. Count: 10, Neg. LLF: 159.23109623752308
Iteration: 3, Func. Count: 14, Neg. LLF: 157.04727809884787
Iteration: 4, Func. Count: 18, Neg. LLF: 156.2322810295663
Iteration: 5, Func. Count: 22, Neg. LLF: 155.92946498867374
Iteration: 6, Func. Count: 26, Neg. LLF: 155.71372962589405
Iteration: 7, Func. Count: 30, Neg. LLF: 155.52605711282104
Iteration: 8, Func. Count: 34, Neg. LLF: 155.526266379795
Iteration: 9, Func. Count: 39, Neg. LLF: 155.51915467064669
Iteration: 10, Func. Count: 43, Neg. LLF: 155.5187851846114
Iteration: 11, Func. Count: 47, Neg. LLF: 155.5187844236302
Optimization terminated successfully (Exit mode 0)
Current function value: 155.5187844236302
Iterations: 11
Function evaluations: 47
Gradient evaluations: 11
Iteration: 1, Func. Count: 6, Neg. LLF: 499.77958057757735
Iteration: 2, Func. Count: 13, Neg. LLF: 154.72290168373738
Iteration: 3, Func. Count: 18, Neg. LLF: 153.884726845471
Iteration: 4, Func. Count: 23, Neg. LLF: 153.9049263456002
Iteration: 5, Func. Count: 29, Neg. LLF: 153.85098502298374
Iteration: 6, Func. Count: 34, Neg. LLF: 153.8505666771094
Iteration: 7, Func. Count: 38, Neg. LLF: 153.85056667721443
Optimization terminated successfully (Exit mode 0)
Current function value: 153.8505666771094
Iterations: 7
Function evaluations: 38
Gradient evaluations: 7
Iteration: 1, Func. Count: 7, Neg. LLF: 558.8242876151915
Iteration: 2, Func. Count: 15, Neg. LLF: 154.31271216191456
Iteration: 3, Func. Count: 21, Neg. LLF: 153.98551683857238
Iteration: 4, Func. Count: 27, Neg. LLF: 153.9180551283934
Iteration: 5, Func. Count: 33, Neg. LLF: 154.5104707748191
Iteration: 6, Func. Count: 40, Neg. LLF: 153.86795283997716
Iteration: 7, Func. Count: 46, Neg. LLF: 153.86782225999752
Iteration: 8, Func. Count: 52, Neg. LLF: 153.86770900181787
Iteration: 9, Func. Count: 58, Neg. LLF: 153.86721084535287
Iteration: 10, Func. Count: 64, Neg. LLF: 153.8662546095609
Iteration: 11, Func. Count: 70, Neg. LLF: 153.8616250608584
Iteration: 12, Func. Count: 76, Neg. LLF: 153.85158787696176
Iteration: 13, Func. Count: 82, Neg. LLF: 153.85086209014165
Iteration: 14, Func. Count: 88, Neg. LLF: 153.8505850434264
Iteration: 15, Func. Count: 94, Neg. LLF: 153.85057066670223
Iteration: 16, Func. Count: 100, Neg. LLF: 154.24931445635045
Optimization terminated successfully (Exit mode 0)
Current function value: 153.85057066559835
Iterations: 17
Function evaluations: 105
Gradient evaluations: 16
Iteration: 1, Func. Count: 8, Neg. LLF: 577.4081279718405
Iteration: 2, Func. Count: 17, Neg. LLF: 154.10817556223046
Iteration: 3, Func. Count: 24, Neg. LLF: 153.8939908374734
Iteration: 4, Func. Count: 31, Neg. LLF: 153.98722966736685
Iteration: 5, Func. Count: 39, Neg. LLF: 153.87380478229662
Iteration: 6, Func. Count: 46, Neg. LLF: 153.8737630568252
Iteration: 7, Func. Count: 53, Neg. LLF: 153.87376080607734
Iteration: 8, Func. Count: 59, Neg. LLF: 153.8737608055371
Optimization terminated successfully (Exit mode 0)
Current function value: 153.87376080607734
Iterations: 8
Function evaluations: 59
Gradient evaluations: 8
Iteration: 1, Func. Count: 9, Neg. LLF: 186.60501428960356
Iteration: 2, Func. Count: 19, Neg. LLF: 154.95934186648634
Iteration: 3, Func. Count: 27, Neg. LLF: 154.93833919759228
Iteration: 4, Func. Count: 35, Neg. LLF: 154.84012304608243
Iteration: 5, Func. Count: 43, Neg. LLF: 154.55210394114425
Iteration: 6, Func. Count: 51, Neg. LLF: 154.22865157771042
Iteration: 7, Func. Count: 59, Neg. LLF: 153.97043907513972
Iteration: 8, Func. Count: 67, Neg. LLF: 159.27042771215335
Iteration: 9, Func. Count: 76, Neg. LLF: 153.91141817541427
Iteration: 10, Func. Count: 84, Neg. LLF: 153.90260274151993
Iteration: 11, Func. Count: 92, Neg. LLF: 153.87474402968658
Iteration: 12, Func. Count: 100, Neg. LLF: 153.86690073973105
Iteration: 13, Func. Count: 108, Neg. LLF: 153.86411851911268
Iteration: 14, Func. Count: 116, Neg. LLF: 153.86320989523102
Iteration: 15, Func. Count: 124, Neg. LLF: 153.86305489307546
Iteration: 16, Func. Count: 132, Neg. LLF: 153.86207127294895
Iteration: 17, Func. Count: 140, Neg. LLF: 153.85439615992135
Iteration: 18, Func. Count: 148, Neg. LLF: 153.8507726081743
Iteration: 19, Func. Count: 156, Neg. LLF: 153.8506607788966
Iteration: 20, Func. Count: 164, Neg. LLF: 153.85056679380386
Iteration: 21, Func. Count: 171, Neg. LLF: 153.85056679784287
Optimization terminated successfully (Exit mode 0)
Current function value: 153.85056679380386
Iterations: 21
Function evaluations: 171
Gradient evaluations: 21
Iteration: 1, Func. Count: 6, Neg. LLF: 160.55923152881053
Iteration: 2, Func. Count: 12, Neg. LLF: 158.9096486242935
Iteration: 3, Func. Count: 17, Neg. LLF: 155.9628376062096
Iteration: 4, Func. Count: 22, Neg. LLF: 156.13132848517463
Iteration: 5, Func. Count: 28, Neg. LLF: 155.66488606693076
Iteration: 6, Func. Count: 33, Neg. LLF: 155.77436773076533
Iteration: 7, Func. Count: 39, Neg. LLF: 155.47630919104623
Iteration: 8, Func. Count: 44, Neg. LLF: 155.47287450731676
Iteration: 9, Func. Count: 49, Neg. LLF: 155.47224186908028
Iteration: 10, Func. Count: 54, Neg. LLF: 155.4722089534203
Iteration: 11, Func. Count: 58, Neg. LLF: 155.472208953351
Optimization terminated successfully (Exit mode 0)
Current function value: 155.4722089534203
Iterations: 11
Function evaluations: 58
Gradient evaluations: 11
Iteration: 1, Func. Count: 7, Neg. LLF: 501.89243801099667
Iteration: 2, Func. Count: 15, Neg. LLF: 154.7210871292342
Iteration: 3, Func. Count: 21, Neg. LLF: 153.8687761099255
Iteration: 4, Func. Count: 27, Neg. LLF: 153.89520305506883
Iteration: 5, Func. Count: 34, Neg. LLF: 153.85174578045772
Iteration: 6, Func. Count: 41, Neg. LLF: 153.85056667418863
Optimization terminated successfully (Exit mode 0)
Current function value: 153.85056667418863
Iterations: 6
Function evaluations: 41
Gradient evaluations: 6
Iteration: 1, Func. Count: 8, Neg. LLF: 563.5832095060266
Iteration: 2, Func. Count: 17, Neg. LLF: 154.29717648976086
Iteration: 3, Func. Count: 24, Neg. LLF: 153.40081339404065
Iteration: 4, Func. Count: 31, Neg. LLF: 154.97002667878402
Iteration: 5, Func. Count: 39, Neg. LLF: 153.14866232101252
Iteration: 6, Func. Count: 46, Neg. LLF: 200.67841120449052
Iteration: 7, Func. Count: 56, Neg. LLF: 153.3273151099411
Iteration: 8, Func. Count: 64, Neg. LLF: 153.05225300539587
Iteration: 9, Func. Count: 71, Neg. LLF: 152.86176467358285
Iteration: 10, Func. Count: 78, Neg. LLF: 152.8013641864719
Iteration: 11, Func. Count: 85, Neg. LLF: 152.768874409191
Iteration: 12, Func. Count: 92, Neg. LLF: 152.7518244240426
Iteration: 13, Func. Count: 99, Neg. LLF: 152.74595127445136
Iteration: 14, Func. Count: 106, Neg. LLF: 152.7453542881466
Iteration: 15, Func. Count: 113, Neg. LLF: 152.74492561445123
Iteration: 16, Func. Count: 120, Neg. LLF: 152.7448550182864
Iteration: 17, Func. Count: 127, Neg. LLF: 152.74484810878988
Iteration: 18, Func. Count: 133, Neg. LLF: 152.74484810894876
Optimization terminated successfully (Exit mode 0)
Current function value: 152.74484810878988
Iterations: 18
Function evaluations: 133
Gradient evaluations: 18
Iteration: 1, Func. Count: 9, Neg. LLF: 580.7460154808969
Iteration: 2, Func. Count: 19, Neg. LLF: 154.10357832406004
Iteration: 3, Func. Count: 27, Neg. LLF: 153.8921798554904
Iteration: 4, Func. Count: 35, Neg. LLF: 153.95935910524582
Iteration: 5, Func. Count: 44, Neg. LLF: 153.87400061311735
Iteration: 6, Func. Count: 52, Neg. LLF: 153.8737839193439
Iteration: 7, Func. Count: 60, Neg. LLF: 153.8737604236397
Iteration: 8, Func. Count: 67, Neg. LLF: 153.8737604236117
Optimization terminated successfully (Exit mode 0)
Current function value: 153.8737604236397
Iterations: 8
Function evaluations: 67
Gradient evaluations: 8
Iteration: 1, Func. Count: 10, Neg. LLF: 186.64882557697794
Iteration: 2, Func. Count: 21, Neg. LLF: 179.19955406395025
Iteration: 3, Func. Count: 32, Neg. LLF: 154.91337523781507
Iteration: 4, Func. Count: 41, Neg. LLF: 154.7360946608445
Iteration: 5, Func. Count: 50, Neg. LLF: 154.5526363185706
Iteration: 6, Func. Count: 59, Neg. LLF: 154.14031352239488
Iteration: 7, Func. Count: 68, Neg. LLF: 153.8360995089527
Iteration: 8, Func. Count: 77, Neg. LLF: 153.59694488571776
Iteration: 9, Func. Count: 86, Neg. LLF: 159.1671980937898
Iteration: 10, Func. Count: 96, Neg. LLF: 156.9911323320998
Iteration: 11, Func. Count: 106, Neg. LLF: 154.52314266916147
Iteration: 12, Func. Count: 116, Neg. LLF: 153.31813115088363
Iteration: 13, Func. Count: 126, Neg. LLF: 153.17088032955027
Iteration: 14, Func. Count: 135, Neg. LLF: 153.02309391493
Iteration: 15, Func. Count: 144, Neg. LLF: 152.97709283088298
Iteration: 16, Func. Count: 153, Neg. LLF: 152.90352628974182
Iteration: 17, Func. Count: 162, Neg. LLF: 152.85749469671515
Iteration: 18, Func. Count: 171, Neg. LLF: 152.81895673653585
Iteration: 19, Func. Count: 180, Neg. LLF: 152.7858065250298
Iteration: 20, Func. Count: 189, Neg. LLF: 152.74700993283588
Iteration: 21, Func. Count: 198, Neg. LLF: 152.74506166591368
Iteration: 22, Func. Count: 207, Neg. LLF: 152.7448483510544
Iteration: 23, Func. Count: 216, Neg. LLF: 153.9138528020767
Optimization terminated successfully (Exit mode 0)
Current function value: 152.7448480251113
Iterations: 24
Function evaluations: 219
Gradient evaluations: 23
Iteration: 1, Func. Count: 7, Neg. LLF: 160.99318791878807
Iteration: 2, Func. Count: 15, Neg. LLF: 158.60260952281345
Iteration: 3, Func. Count: 21, Neg. LLF: 156.54944816204582
Iteration: 4, Func. Count: 27, Neg. LLF: 156.37394881165778
Iteration: 5, Func. Count: 33, Neg. LLF: 155.968884499198
Iteration: 6, Func. Count: 39, Neg. LLF: 155.65854077301327
Iteration: 7, Func. Count: 45, Neg. LLF: 158.09671623680413
Iteration: 8, Func. Count: 52, Neg. LLF: 155.54480074820313
Iteration: 9, Func. Count: 58, Neg. LLF: 155.48543732976893
Iteration: 10, Func. Count: 64, Neg. LLF: 155.4777830057783
Iteration: 11, Func. Count: 70, Neg. LLF: 155.47250850168373
Iteration: 12, Func. Count: 76, Neg. LLF: 155.4722197195232
Iteration: 13, Func. Count: 82, Neg. LLF: 155.47220898217353
Iteration: 14, Func. Count: 87, Neg. LLF: 155.4722090599219
Optimization terminated successfully (Exit mode 0)
Current function value: 155.47220898217353
Iterations: 14
Function evaluations: 87
Gradient evaluations: 14
Iteration: 1, Func. Count: 8, Neg. LLF: 501.4469079043941
Iteration: 2, Func. Count: 17, Neg. LLF: 154.72046218680737
Iteration: 3, Func. Count: 24, Neg. LLF: 153.86616960553297
Iteration: 4, Func. Count: 31, Neg. LLF: 153.88697937601205
Iteration: 5, Func. Count: 39, Neg. LLF: 153.87266563262673
Iteration: 6, Func. Count: 46, Neg. LLF: 153.85056714113404
Optimization terminated successfully (Exit mode 0)
Current function value: 153.85056714031117
Iterations: 6
Function evaluations: 46
Gradient evaluations: 6
Iteration: 1, Func. Count: 9, Neg. LLF: 561.999478891219
Iteration: 2, Func. Count: 19, Neg. LLF: 154.30163697759238
Iteration: 3, Func. Count: 27, Neg. LLF: 153.15215677285718
Iteration: 4, Func. Count: 35, Neg. LLF: 157.66153140076406
Iteration: 5, Func. Count: 46, Neg. LLF: 152.85691247606036
Iteration: 6, Func. Count: 54, Neg. LLF: 152.9064171111442
Iteration: 7, Func. Count: 63, Neg. LLF: 153.09375927591162
Iteration: 8, Func. Count: 72, Neg. LLF: 152.74494861410392
Iteration: 9, Func. Count: 80, Neg. LLF: 152.7448551205973
Iteration: 10, Func. Count: 88, Neg. LLF: 152.74484807304677
Iteration: 11, Func. Count: 95, Neg. LLF: 152.74484807299118
Optimization terminated successfully (Exit mode 0)
Current function value: 152.74484807304677
Iterations: 11
Function evaluations: 95
Gradient evaluations: 11
Iteration: 1, Func. Count: 10, Neg. LLF: 579.3892550459271
Iteration: 2, Func. Count: 21, Neg. LLF: 154.10373784770624
Iteration: 3, Func. Count: 30, Neg. LLF: 153.89297699260092
Iteration: 4, Func. Count: 39, Neg. LLF: 153.9739982503331
Iteration: 5, Func. Count: 49, Neg. LLF: 153.87392947766338
Iteration: 6, Func. Count: 58, Neg. LLF: 153.87379153849142
Iteration: 7, Func. Count: 67, Neg. LLF: 153.8737605839795
Iteration: 8, Func. Count: 75, Neg. LLF: 153.87376058388654
Optimization terminated successfully (Exit mode 0)
Current function value: 153.8737605839795
Iterations: 8
Function evaluations: 75
Gradient evaluations: 8
Iteration: 1, Func. Count: 11, Neg. LLF: 186.62143299535728
Iteration: 2, Func. Count: 23, Neg. LLF: 179.37516761388576
Iteration: 3, Func. Count: 35, Neg. LLF: 154.91185881156144
Iteration: 4, Func. Count: 45, Neg. LLF: 154.7211621450817
Iteration: 5, Func. Count: 55, Neg. LLF: 154.53466905986073
Iteration: 6, Func. Count: 65, Neg. LLF: 154.16859665322494
Iteration: 7, Func. Count: 75, Neg. LLF: 153.882121762062
Iteration: 8, Func. Count: 85, Neg. LLF: 153.65650133389934
Iteration: 9, Func. Count: 95, Neg. LLF: 159.49493219626595
Iteration: 10, Func. Count: 106, Neg. LLF: 157.41706122855928
Iteration: 11, Func. Count: 117, Neg. LLF: 156.33778374477282
Iteration: 12, Func. Count: 128, Neg. LLF: 153.7110362804106
Iteration: 13, Func. Count: 139, Neg. LLF: 153.22079827459342
Iteration: 14, Func. Count: 149, Neg. LLF: 153.15584785349805
Iteration: 15, Func. Count: 159, Neg. LLF: 153.00727832286904
Iteration: 16, Func. Count: 169, Neg. LLF: 153.0223109995631
Iteration: 17, Func. Count: 180, Neg. LLF: 152.84302236423048
Iteration: 18, Func. Count: 190, Neg. LLF: 152.80733310056
Iteration: 19, Func. Count: 200, Neg. LLF: 152.74882562701515
Iteration: 20, Func. Count: 210, Neg. LLF: 152.74528499564695
Iteration: 21, Func. Count: 220, Neg. LLF: 152.74517943068352
Iteration: 22, Func. Count: 230, Neg. LLF: 152.7449116018212
Iteration: 23, Func. Count: 240, Neg. LLF: 152.74492874336244
Iteration: 24, Func. Count: 251, Neg. LLF: 228.66073702349638
Iteration: 25, Func. Count: 264, Neg. LLF: 152.8009512965424
Iteration: 26, Func. Count: 276, Neg. LLF: 152.7448769680768
Iteration: 27, Func. Count: 287, Neg. LLF: 152.7448481916441
Iteration: 28, Func. Count: 296, Neg. LLF: 152.7448481996891
Optimization terminated successfully (Exit mode 0)
Current function value: 152.7448481916441
Iterations: 29
Function evaluations: 296
Gradient evaluations: 28
Iteration: 1, Func. Count: 8, Neg. LLF: 163.2808754015442
Iteration: 2, Func. Count: 17, Neg. LLF: 162.49689394136033
Iteration: 3, Func. Count: 27, Neg. LLF: 159.55229916522782
Iteration: 4, Func. Count: 36, Neg. LLF: 157.18627396576295
Iteration: 5, Func. Count: 43, Neg. LLF: 156.54842113018557
Iteration: 6, Func. Count: 50, Neg. LLF: 155.97454684051095
Iteration: 7, Func. Count: 57, Neg. LLF: 155.70148643403346
Iteration: 8, Func. Count: 64, Neg. LLF: 155.55854215648571
Iteration: 9, Func. Count: 71, Neg. LLF: 155.44554763788136
Iteration: 10, Func. Count: 78, Neg. LLF: 155.43141878593954
Iteration: 11, Func. Count: 85, Neg. LLF: 155.43048319823052
Iteration: 12, Func. Count: 92, Neg. LLF: 155.43040650745905
Iteration: 13, Func. Count: 99, Neg. LLF: 155.43038639893763
Iteration: 14, Func. Count: 106, Neg. LLF: 155.4303848952809
Iteration: 15, Func. Count: 112, Neg. LLF: 155.4303848952838
Optimization terminated successfully (Exit mode 0)
Current function value: 155.4303848952809
Iterations: 15
Function evaluations: 112
Gradient evaluations: 15
Iteration: 1, Func. Count: 9, Neg. LLF: 503.5656552425169
Iteration: 2, Func. Count: 19, Neg. LLF: 154.71888287411662
Iteration: 3, Func. Count: 27, Neg. LLF: 153.86978827545212
Iteration: 4, Func. Count: 35, Neg. LLF: 153.90301453042284
Iteration: 5, Func. Count: 44, Neg. LLF: 153.8586196172739
Iteration: 6, Func. Count: 52, Neg. LLF: 153.85056675364285
Optimization terminated successfully (Exit mode 0)
Current function value: 153.85056675396555
Iterations: 6
Function evaluations: 52
Gradient evaluations: 6
Iteration: 1, Func. Count: 10, Neg. LLF: 564.4620168280778
Iteration: 2, Func. Count: 21, Neg. LLF: 154.2422490877129
Iteration: 3, Func. Count: 30, Neg. LLF: 154.50392387105265
Iteration: 4, Func. Count: 40, Neg. LLF: 153.46481771762805
Iteration: 5, Func. Count: 49, Neg. LLF: 155.54493726896263
Iteration: 6, Func. Count: 60, Neg. LLF: 171.71443067668048
Iteration: 7, Func. Count: 72, Neg. LLF: 154.89066753894605
Iteration: 8, Func. Count: 82, Neg. LLF: 152.88043856905696
Iteration: 9, Func. Count: 91, Neg. LLF: 152.5793115886929
Iteration: 10, Func. Count: 100, Neg. LLF: 152.53969922467445
Iteration: 11, Func. Count: 109, Neg. LLF: 152.51307401663567
Iteration: 12, Func. Count: 118, Neg. LLF: 152.50448931952243
Iteration: 13, Func. Count: 127, Neg. LLF: 152.49772187773013
Iteration: 14, Func. Count: 136, Neg. LLF: 152.49222246367566
Iteration: 15, Func. Count: 145, Neg. LLF: 152.49142129599
Iteration: 16, Func. Count: 154, Neg. LLF: 152.49135863586477
Iteration: 17, Func. Count: 163, Neg. LLF: 152.4913551360441
Iteration: 18, Func. Count: 171, Neg. LLF: 152.4913551360947
Optimization terminated successfully (Exit mode 0)
Current function value: 152.4913551360441
Iterations: 18
Function evaluations: 171
Gradient evaluations: 18
Iteration: 1, Func. Count: 11, Neg. LLF: 580.7989434708081
Iteration: 2, Func. Count: 23, Neg. LLF: 154.10629866017132
Iteration: 3, Func. Count: 33, Neg. LLF: 153.89368811909503
Iteration: 4, Func. Count: 43, Neg. LLF: 153.98519068474917
Iteration: 5, Func. Count: 54, Neg. LLF: 153.8738916946811
Iteration: 6, Func. Count: 64, Neg. LLF: 153.87376580367294
Iteration: 7, Func. Count: 74, Neg. LLF: 153.873760479463
Iteration: 8, Func. Count: 83, Neg. LLF: 153.87376047933023
Optimization terminated successfully (Exit mode 0)
Current function value: 153.873760479463
Iterations: 8
Function evaluations: 83
Gradient evaluations: 8
Iteration: 1, Func. Count: 12, Neg. LLF: 186.6446378347619
Iteration: 2, Func. Count: 25, Neg. LLF: 172.22092535828537
Iteration: 3, Func. Count: 37, Neg. LLF: 153.24298797334995
Iteration: 4, Func. Count: 48, Neg. LLF: 153.47998271419522
Iteration: 5, Func. Count: 60, Neg. LLF: 152.67711734528478
Iteration: 6, Func. Count: 71, Neg. LLF: 153.4426958747097
Iteration: 7, Func. Count: 83, Neg. LLF: 155.8511126886659
Iteration: 8, Func. Count: 96, Neg. LLF: 152.40886106309873
Iteration: 9, Func. Count: 107, Neg. LLF: 152.3559129471116
Iteration: 10, Func. Count: 118, Neg. LLF: 152.2998599640117
Iteration: 11, Func. Count: 129, Neg. LLF: 152.19630946652455
Iteration: 12, Func. Count: 140, Neg. LLF: 152.14595371556175
Iteration: 13, Func. Count: 151, Neg. LLF: 152.1311510569565
Iteration: 14, Func. Count: 162, Neg. LLF: 152.1295265031157
Iteration: 15, Func. Count: 173, Neg. LLF: 152.1271639032113
Iteration: 16, Func. Count: 184, Neg. LLF: 152.12709658057548
Iteration: 17, Func. Count: 195, Neg. LLF: 152.12708436928523
Iteration: 18, Func. Count: 205, Neg. LLF: 152.12708436925013
Optimization terminated successfully (Exit mode 0)
Current function value: 152.12708436928523
Iterations: 18
Function evaluations: 205
Gradient evaluations: 18
Iteration: 1, Func. Count: 5, Neg. LLF: 158.27761926505835
Iteration: 2, Func. Count: 10, Neg. LLF: 157.21666796017638
Iteration: 3, Func. Count: 14, Neg. LLF: 157.22774636015188
Iteration: 4, Func. Count: 19, Neg. LLF: 156.21130858769453
Iteration: 5, Func. Count: 23, Neg. LLF: 155.81348627020432
Iteration: 6, Func. Count: 27, Neg. LLF: 155.6396624641986
Iteration: 7, Func. Count: 31, Neg. LLF: 155.52985686685054
Iteration: 8, Func. Count: 35, Neg. LLF: 155.52338358635342
Iteration: 9, Func. Count: 39, Neg. LLF: 155.52248300951481
Iteration: 10, Func. Count: 43, Neg. LLF: 155.52247991121908
Iteration: 11, Func. Count: 46, Neg. LLF: 155.52247991160272
Optimization terminated successfully (Exit mode 0)
Current function value: 155.52247991121908
Iterations: 11
Function evaluations: 46
Gradient evaluations: 11
Iteration: 1, Func. Count: 6, Neg. LLF: 484.18528906379413
Iteration: 2, Func. Count: 13, Neg. LLF: 154.73791256090493
Iteration: 3, Func. Count: 18, Neg. LLF: 154.18049110134194
Iteration: 4, Func. Count: 23, Neg. LLF: 154.32131408621916
Iteration: 5, Func. Count: 29, Neg. LLF: 153.85070022797015
Iteration: 6, Func. Count: 34, Neg. LLF: 153.85056754971788
Iteration: 7, Func. Count: 39, Neg. LLF: 153.8505666738956
Optimization terminated successfully (Exit mode 0)
Current function value: 153.8505666738956
Iterations: 7
Function evaluations: 39
Gradient evaluations: 7
Iteration: 1, Func. Count: 7, Neg. LLF: 536.1676087644245
Iteration: 2, Func. Count: 15, Neg. LLF: 154.36136650604158
Iteration: 3, Func. Count: 21, Neg. LLF: 154.03604447071055
Iteration: 4, Func. Count: 27, Neg. LLF: 153.97202026740075
Iteration: 5, Func. Count: 34, Neg. LLF: 154.12869659250967
Iteration: 6, Func. Count: 41, Neg. LLF: 153.8731860921939
Iteration: 7, Func. Count: 47, Neg. LLF: 153.87259271777145
Iteration: 8, Func. Count: 53, Neg. LLF: 153.87034699453994
Iteration: 9, Func. Count: 59, Neg. LLF: 153.86866135429884
Iteration: 10, Func. Count: 65, Neg. LLF: 153.866745060539
Iteration: 11, Func. Count: 71, Neg. LLF: 153.86384592396527
Iteration: 12, Func. Count: 77, Neg. LLF: 153.8508240560395
Iteration: 13, Func. Count: 83, Neg. LLF: 153.85065807951193
Iteration: 14, Func. Count: 89, Neg. LLF: 153.85060182058584
Iteration: 15, Func. Count: 95, Neg. LLF: 153.85056667472634
Iteration: 16, Func. Count: 100, Neg. LLF: 153.8505666754828
Optimization terminated successfully (Exit mode 0)
Current function value: 153.85056667472634
Iterations: 16
Function evaluations: 100
Gradient evaluations: 16
Iteration: 1, Func. Count: 8, Neg. LLF: 447.9808733120345
Iteration: 2, Func. Count: 17, Neg. LLF: 154.34076501123175
Iteration: 3, Func. Count: 24, Neg. LLF: 154.14919499052132
Iteration: 4, Func. Count: 31, Neg. LLF: 154.16113523201065
Iteration: 5, Func. Count: 39, Neg. LLF: 153.88713616151045
Iteration: 6, Func. Count: 46, Neg. LLF: 153.8788445820767
Iteration: 7, Func. Count: 53, Neg. LLF: 153.87379248712938
Iteration: 8, Func. Count: 60, Neg. LLF: 153.8737702462717
Iteration: 9, Func. Count: 67, Neg. LLF: 153.87376556438213
Iteration: 10, Func. Count: 74, Neg. LLF: 153.8737632922909
Iteration: 11, Func. Count: 81, Neg. LLF: 153.87376078836726
Iteration: 12, Func. Count: 87, Neg. LLF: 153.87376078795126
Optimization terminated successfully (Exit mode 0)
Current function value: 153.87376078836726
Iterations: 12
Function evaluations: 87
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 551.866057535036
Iteration: 2, Func. Count: 19, Neg. LLF: 154.13665228639658
Iteration: 3, Func. Count: 27, Neg. LLF: 153.9631242040509
Iteration: 4, Func. Count: 35, Neg. LLF: 153.94861200829016
Iteration: 5, Func. Count: 43, Neg. LLF: 153.9277228620777
Iteration: 6, Func. Count: 51, Neg. LLF: 153.92330595417997
Iteration: 7, Func. Count: 59, Neg. LLF: 153.88495305735225
Iteration: 8, Func. Count: 67, Neg. LLF: 153.88100366104408
Iteration: 9, Func. Count: 75, Neg. LLF: 153.88087871746424
Iteration: 10, Func. Count: 83, Neg. LLF: 153.8807364308216
Iteration: 11, Func. Count: 91, Neg. LLF: 153.88072515840622
Iteration: 12, Func. Count: 99, Neg. LLF: 153.88063561163204
Iteration: 13, Func. Count: 107, Neg. LLF: 153.87909987720735
Iteration: 14, Func. Count: 115, Neg. LLF: 153.9204831663106
Iteration: 15, Func. Count: 124, Neg. LLF: 153.911961518972
Iteration: 16, Func. Count: 133, Neg. LLF: 153.89973216780808
Iteration: 17, Func. Count: 142, Neg. LLF: 153.8908505626678
Iteration: 18, Func. Count: 151, Neg. LLF: 153.880208824001
Iteration: 19, Func. Count: 160, Neg. LLF: 153.876189895709
Iteration: 20, Func. Count: 168, Neg. LLF: 153.87474317906558
Iteration: 21, Func. Count: 176, Neg. LLF: 153.871134651553
Iteration: 22, Func. Count: 184, Neg. LLF: 153.86857387622726
Iteration: 23, Func. Count: 192, Neg. LLF: 153.86724635162838
Iteration: 24, Func. Count: 200, Neg. LLF: 153.86529635066458
Iteration: 25, Func. Count: 208, Neg. LLF: 153.8526413296868
Iteration: 26, Func. Count: 216, Neg. LLF: 153.8515196826878
Iteration: 27, Func. Count: 224, Neg. LLF: 153.85086784860266
Iteration: 28, Func. Count: 232, Neg. LLF: 153.85069842054116
Iteration: 29, Func. Count: 240, Neg. LLF: 21913154.44221728
Iteration: 30, Func. Count: 252, Neg. LLF: 153.850567186091
Optimization terminated successfully (Exit mode 0)
Current function value: 153.850567186091
Iterations: 31
Function evaluations: 252
Gradient evaluations: 30
Iteration: 1, Func. Count: 6, Neg. LLF: 158.17051518807483
Iteration: 2, Func. Count: 12, Neg. LLF: 159.0766424300629
Iteration: 3, Func. Count: 18, Neg. LLF: 157.80613134220192
Iteration: 4, Func. Count: 24, Neg. LLF: 156.97948872021055
Iteration: 5, Func. Count: 29, Neg. LLF: 156.56180303528222
Iteration: 6, Func. Count: 34, Neg. LLF: 155.84882098885885
Iteration: 7, Func. Count: 39, Neg. LLF: 155.6225924810451
Iteration: 8, Func. Count: 44, Neg. LLF: 155.52929454984684
Iteration: 9, Func. Count: 49, Neg. LLF: 155.52145203350554
Iteration: 10, Func. Count: 54, Neg. LLF: 155.51897525364663
Iteration: 11, Func. Count: 59, Neg. LLF: 155.5188116482041
Iteration: 12, Func. Count: 64, Neg. LLF: 155.51878446348854
Iteration: 13, Func. Count: 68, Neg. LLF: 155.51878446350088
Optimization terminated successfully (Exit mode 0)
Current function value: 155.51878446348854
Iterations: 13
Function evaluations: 68
Gradient evaluations: 13
Iteration: 1, Func. Count: 7, Neg. LLF: 464.1858466381033
Iteration: 2, Func. Count: 15, Neg. LLF: 167.8277178257314
Iteration: 3, Func. Count: 22, Neg. LLF: 154.70922534761465
Iteration: 4, Func. Count: 28, Neg. LLF: 154.57334872704294
Iteration: 5, Func. Count: 34, Neg. LLF: 154.14510537825856
Iteration: 6, Func. Count: 40, Neg. LLF: 153.9926865711648
Iteration: 7, Func. Count: 46, Neg. LLF: 153.87503152030166
Iteration: 8, Func. Count: 52, Neg. LLF: 153.85397114586058
Iteration: 9, Func. Count: 58, Neg. LLF: 153.8505703376397
Iteration: 10, Func. Count: 64, Neg. LLF: 153.85056709546427
Iteration: 11, Func. Count: 70, Neg. LLF: 154.37035262843244
Optimization terminated successfully (Exit mode 0)
Current function value: 153.8505670945747
Iterations: 12
Function evaluations: 75
Gradient evaluations: 11
Iteration: 1, Func. Count: 8, Neg. LLF: 512.2684610671167
Iteration: 2, Func. Count: 17, Neg. LLF: 156.88740012436912
Iteration: 3, Func. Count: 25, Neg. LLF: 154.45780801908137
Iteration: 4, Func. Count: 32, Neg. LLF: 154.39019891743794
Iteration: 5, Func. Count: 39, Neg. LLF: 154.43009504243912
Iteration: 6, Func. Count: 47, Neg. LLF: 153.864161078977
Iteration: 7, Func. Count: 54, Neg. LLF: 153.8611997319446
Iteration: 8, Func. Count: 61, Neg. LLF: 153.86104358739368
Iteration: 9, Func. Count: 68, Neg. LLF: 153.85990748997904
Iteration: 10, Func. Count: 75, Neg. LLF: 153.85631432400243
Iteration: 11, Func. Count: 82, Neg. LLF: 153.85365680627726
Iteration: 12, Func. Count: 89, Neg. LLF: 153.85066891388033
Iteration: 13, Func. Count: 96, Neg. LLF: 153.85056675396655
Iteration: 14, Func. Count: 102, Neg. LLF: 153.85056675484824
Optimization terminated successfully (Exit mode 0)
Current function value: 153.85056675396655
Iterations: 14
Function evaluations: 102
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 437.3816452563698
Iteration: 2, Func. Count: 19, Neg. LLF: 160.14339297659495
Iteration: 3, Func. Count: 28, Neg. LLF: 154.73865717443124
Iteration: 4, Func. Count: 37, Neg. LLF: 154.06832148328328
Iteration: 5, Func. Count: 45, Neg. LLF: 153.78695484116673
Iteration: 6, Func. Count: 53, Neg. LLF: 153.81262493220325
Iteration: 7, Func. Count: 62, Neg. LLF: 153.70759700362356
Iteration: 8, Func. Count: 70, Neg. LLF: 153.89066866100265
Iteration: 9, Func. Count: 79, Neg. LLF: 153.68938868694065
Iteration: 10, Func. Count: 87, Neg. LLF: 153.68733904864047
Iteration: 11, Func. Count: 95, Neg. LLF: 153.68721864319235
Iteration: 12, Func. Count: 103, Neg. LLF: 153.68719359042095
Iteration: 13, Func. Count: 111, Neg. LLF: 153.6871893196725
Iteration: 14, Func. Count: 118, Neg. LLF: 153.68718931942686
Optimization terminated successfully (Exit mode 0)
Current function value: 153.6871893196725
Iterations: 14
Function evaluations: 118
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 533.6658955411522
Iteration: 2, Func. Count: 21, Neg. LLF: 154.1528980295452
Iteration: 3, Func. Count: 30, Neg. LLF: 154.2283781199067
Iteration: 4, Func. Count: 40, Neg. LLF: 153.99212192498862
Iteration: 5, Func. Count: 49, Neg. LLF: 154.49033345945045
Iteration: 6, Func. Count: 59, Neg. LLF: 153.7877970690434
Iteration: 7, Func. Count: 68, Neg. LLF: 153.71372067067185
Iteration: 8, Func. Count: 77, Neg. LLF: 153.69540072230677
Iteration: 9, Func. Count: 86, Neg. LLF: 153.68945884536782
Iteration: 10, Func. Count: 95, Neg. LLF: 153.68783450182514
Iteration: 11, Func. Count: 104, Neg. LLF: 153.68749019560437
Iteration: 12, Func. Count: 113, Neg. LLF: 153.6872936404822
Iteration: 13, Func. Count: 122, Neg. LLF: 153.68719098919104
Iteration: 14, Func. Count: 131, Neg. LLF: 153.68718903624347
Iteration: 15, Func. Count: 139, Neg. LLF: 153.68718905429355
Optimization terminated successfully (Exit mode 0)
Current function value: 153.68718903624347
Iterations: 15
Function evaluations: 139
Gradient evaluations: 15
Iteration: 1, Func. Count: 7, Neg. LLF: 158.2526740403128
Iteration: 2, Func. Count: 14, Neg. LLF: 159.12796212696867
Iteration: 3, Func. Count: 21, Neg. LLF: 159.14678115042955
Iteration: 4, Func. Count: 28, Neg. LLF: 157.49453825377282
Iteration: 5, Func. Count: 35, Neg. LLF: 156.5793217688289
Iteration: 6, Func. Count: 41, Neg. LLF: 155.9765626400436
Iteration: 7, Func. Count: 47, Neg. LLF: 155.77394476210497
Iteration: 8, Func. Count: 53, Neg. LLF: 155.617118410804
Iteration: 9, Func. Count: 59, Neg. LLF: 155.54399828724692
Iteration: 10, Func. Count: 65, Neg. LLF: 155.49779572639756
Iteration: 11, Func. Count: 71, Neg. LLF: 155.4758969138472
Iteration: 12, Func. Count: 77, Neg. LLF: 155.47275151476464
Iteration: 13, Func. Count: 83, Neg. LLF: 155.47243632878642
Iteration: 14, Func. Count: 89, Neg. LLF: 155.47221163481765
Iteration: 15, Func. Count: 95, Neg. LLF: 155.4722094360472
Iteration: 16, Func. Count: 101, Neg. LLF: 155.472208512524
Optimization terminated successfully (Exit mode 0)
Current function value: 155.472208512524
Iterations: 16
Function evaluations: 101
Gradient evaluations: 16
Iteration: 1, Func. Count: 8, Neg. LLF: 465.9048970655434
Iteration: 2, Func. Count: 17, Neg. LLF: 167.77752039284158
Iteration: 3, Func. Count: 25, Neg. LLF: 154.70578841525307
Iteration: 4, Func. Count: 32, Neg. LLF: 154.5675672012912
Iteration: 5, Func. Count: 39, Neg. LLF: 154.15931629402868
Iteration: 6, Func. Count: 46, Neg. LLF: 153.96401914547025
Iteration: 7, Func. Count: 53, Neg. LLF: 153.8819153756747
Iteration: 8, Func. Count: 60, Neg. LLF: 153.85556091203674
Iteration: 9, Func. Count: 67, Neg. LLF: 153.8505750291895
Iteration: 10, Func. Count: 74, Neg. LLF: 153.85056673604188
Iteration: 11, Func. Count: 80, Neg. LLF: 153.85056673556787
Optimization terminated successfully (Exit mode 0)
Current function value: 153.85056673604188
Iterations: 11
Function evaluations: 80
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 515.8532242168798
Iteration: 2, Func. Count: 19, Neg. LLF: 156.9499594714956
Iteration: 3, Func. Count: 28, Neg. LLF: 154.43876634907392
Iteration: 4, Func. Count: 36, Neg. LLF: 154.3766509032267
Iteration: 5, Func. Count: 44, Neg. LLF: 154.40161509229497
Iteration: 6, Func. Count: 53, Neg. LLF: 153.86437461945593
Iteration: 7, Func. Count: 61, Neg. LLF: 153.8629914443169
Iteration: 8, Func. Count: 69, Neg. LLF: 153.8628551055799
Iteration: 9, Func. Count: 77, Neg. LLF: 153.86244340106168
Iteration: 10, Func. Count: 85, Neg. LLF: 153.86112001299327
Iteration: 11, Func. Count: 93, Neg. LLF: 153.85728655461588
Iteration: 12, Func. Count: 101, Neg. LLF: 153.85486268623754
Iteration: 13, Func. Count: 109, Neg. LLF: 153.85057653132637
Iteration: 14, Func. Count: 117, Neg. LLF: 153.8505667210404
Iteration: 15, Func. Count: 124, Neg. LLF: 153.85056672126007
Optimization terminated successfully (Exit mode 0)
Current function value: 153.8505667210404
Iterations: 15
Function evaluations: 124
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 438.71616670410424
Iteration: 2, Func. Count: 21, Neg. LLF: 160.16811643112683
Iteration: 3, Func. Count: 31, Neg. LLF: 154.71151374427856
Iteration: 4, Func. Count: 41, Neg. LLF: 154.06565377283223
Iteration: 5, Func. Count: 50, Neg. LLF: 154.14734386543705
Iteration: 6, Func. Count: 60, Neg. LLF: 153.9621154399927
Iteration: 7, Func. Count: 70, Neg. LLF: 153.72160387701095
Iteration: 8, Func. Count: 79, Neg. LLF: 153.6911788159411
Iteration: 9, Func. Count: 88, Neg. LLF: 153.68831185962318
Iteration: 10, Func. Count: 97, Neg. LLF: 153.68720735896278
Iteration: 11, Func. Count: 106, Neg. LLF: 153.68719022270298
Iteration: 12, Func. Count: 115, Neg. LLF: 153.6871889755104
Iteration: 13, Func. Count: 123, Neg. LLF: 153.68718897551344
Optimization terminated successfully (Exit mode 0)
Current function value: 153.6871889755104
Iterations: 13
Function evaluations: 123
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 186.5073949913404
Iteration: 2, Func. Count: 23, Neg. LLF: 172.45747350375981
Iteration: 3, Func. Count: 35, Neg. LLF: 155.79343121427334
Iteration: 4, Func. Count: 46, Neg. LLF: 154.95434430602657
Iteration: 5, Func. Count: 56, Neg. LLF: 154.92568880584722
Iteration: 6, Func. Count: 66, Neg. LLF: 154.88757696236928
Iteration: 7, Func. Count: 76, Neg. LLF: 154.74403051354932
Iteration: 8, Func. Count: 86, Neg. LLF: 154.4890119627578
Iteration: 9, Func. Count: 96, Neg. LLF: 154.46323114029582
Iteration: 10, Func. Count: 107, Neg. LLF: 154.375372273433
Iteration: 11, Func. Count: 118, Neg. LLF: 154.13635126264714
Iteration: 12, Func. Count: 128, Neg. LLF: 153.9919130568738
Iteration: 13, Func. Count: 138, Neg. LLF: 153.91653575339157
Iteration: 14, Func. Count: 148, Neg. LLF: 153.83034755843732
Iteration: 15, Func. Count: 158, Neg. LLF: 153.852404762883
Iteration: 16, Func. Count: 169, Neg. LLF: 153.75986838165363
Iteration: 17, Func. Count: 179, Neg. LLF: 153.7277007656702
Iteration: 18, Func. Count: 189, Neg. LLF: 153.70634216521952
Iteration: 19, Func. Count: 199, Neg. LLF: 153.69589682317286
Iteration: 20, Func. Count: 209, Neg. LLF: 153.6916229709569
Iteration: 21, Func. Count: 219, Neg. LLF: 153.68964254047742
Iteration: 22, Func. Count: 229, Neg. LLF: 153.68785531917078
Iteration: 23, Func. Count: 239, Neg. LLF: 153.68734975528614
Iteration: 24, Func. Count: 249, Neg. LLF: 153.6872302976453
Iteration: 25, Func. Count: 259, Neg. LLF: 153.68719662797668
Iteration: 26, Func. Count: 269, Neg. LLF: 153.68718947375763
Iteration: 27, Func. Count: 278, Neg. LLF: 153.68718949199496
Optimization terminated successfully (Exit mode 0)
Current function value: 153.68718947375763
Iterations: 27
Function evaluations: 278
Gradient evaluations: 27
Iteration: 1, Func. Count: 8, Neg. LLF: 158.40917733325875
Iteration: 2, Func. Count: 16, Neg. LLF: 159.2521135926526
Iteration: 3, Func. Count: 24, Neg. LLF: 158.7020367356551
Iteration: 4, Func. Count: 32, Neg. LLF: 157.33576853030362
Iteration: 5, Func. Count: 40, Neg. LLF: 156.6826529564458
Iteration: 6, Func. Count: 47, Neg. LLF: 156.16886640400347
Iteration: 7, Func. Count: 54, Neg. LLF: 160.22925200101903
Iteration: 8, Func. Count: 64, Neg. LLF: 155.80279189775456
Iteration: 9, Func. Count: 71, Neg. LLF: 155.543430166441
Iteration: 10, Func. Count: 78, Neg. LLF: 155.5149564468354
Iteration: 11, Func. Count: 85, Neg. LLF: 155.4780407199967
Iteration: 12, Func. Count: 92, Neg. LLF: 155.47237519988246
Iteration: 13, Func. Count: 99, Neg. LLF: 155.4722212459869
Iteration: 14, Func. Count: 106, Neg. LLF: 155.4722090468139
Iteration: 15, Func. Count: 112, Neg. LLF: 155.47220912456282
Optimization terminated successfully (Exit mode 0)
Current function value: 155.4722090468139
Iterations: 15
Function evaluations: 112
Gradient evaluations: 15
Iteration: 1, Func. Count: 9, Neg. LLF: 466.0014669725627
Iteration: 2, Func. Count: 19, Neg. LLF: 167.73175126235037
Iteration: 3, Func. Count: 28, Neg. LLF: 154.70507409176756
Iteration: 4, Func. Count: 36, Neg. LLF: 154.56451833078268
Iteration: 5, Func. Count: 44, Neg. LLF: 154.15502144752793
Iteration: 6, Func. Count: 52, Neg. LLF: 153.94312173541778
Iteration: 7, Func. Count: 60, Neg. LLF: 153.87534242798594
Iteration: 8, Func. Count: 68, Neg. LLF: 153.85556085358917
Iteration: 9, Func. Count: 76, Neg. LLF: 153.8505773449564
Iteration: 10, Func. Count: 84, Neg. LLF: 153.8505667770006
Iteration: 11, Func. Count: 91, Neg. LLF: 153.85056677630942
Optimization terminated successfully (Exit mode 0)
Current function value: 153.8505667770006
Iterations: 11
Function evaluations: 91
Gradient evaluations: 11
Iteration: 1, Func. Count: 10, Neg. LLF: 514.9038411182637
Iteration: 2, Func. Count: 21, Neg. LLF: 156.78359040610553
Iteration: 3, Func. Count: 31, Neg. LLF: 154.4414007498229
Iteration: 4, Func. Count: 40, Neg. LLF: 154.3685015614858
Iteration: 5, Func. Count: 49, Neg. LLF: 154.58506822901364
Iteration: 6, Func. Count: 59, Neg. LLF: 153.86739532450045
Iteration: 7, Func. Count: 68, Neg. LLF: 153.86318930516882
Iteration: 8, Func. Count: 77, Neg. LLF: 153.86294103651136
Iteration: 9, Func. Count: 86, Neg. LLF: 153.86278729787125
Iteration: 10, Func. Count: 95, Neg. LLF: 153.86177158692502
Iteration: 11, Func. Count: 104, Neg. LLF: 153.85379166958052
Iteration: 12, Func. Count: 113, Neg. LLF: 153.85060206547354
Iteration: 13, Func. Count: 122, Neg. LLF: 153.8505682284079
Iteration: 14, Func. Count: 131, Neg. LLF: 153.85056685593167
Iteration: 15, Func. Count: 139, Neg. LLF: 153.8505668553608
Optimization terminated successfully (Exit mode 0)
Current function value: 153.85056685593167
Iterations: 15
Function evaluations: 139
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 438.490852815495
Iteration: 2, Func. Count: 23, Neg. LLF: 160.06300607498625
Iteration: 3, Func. Count: 34, Neg. LLF: 154.72525048659512
Iteration: 4, Func. Count: 45, Neg. LLF: 154.0640739538698
Iteration: 5, Func. Count: 55, Neg. LLF: 154.19293258420456
Iteration: 6, Func. Count: 66, Neg. LLF: 153.9666812217281
Iteration: 7, Func. Count: 77, Neg. LLF: 153.72427419334926
Iteration: 8, Func. Count: 87, Neg. LLF: 153.69053892065324
Iteration: 9, Func. Count: 97, Neg. LLF: 153.6881463598653
Iteration: 10, Func. Count: 107, Neg. LLF: 153.68719651560883
Iteration: 11, Func. Count: 117, Neg. LLF: 153.68718933847666
Iteration: 12, Func. Count: 126, Neg. LLF: 153.68718933875576
Optimization terminated successfully (Exit mode 0)
Current function value: 153.68718933847666
Iterations: 12
Function evaluations: 126
Gradient evaluations: 12
Iteration: 1, Func. Count: 12, Neg. LLF: 186.48383720014036
Iteration: 2, Func. Count: 25, Neg. LLF: 176.02107754213398
Iteration: 3, Func. Count: 38, Neg. LLF: 155.87683030696027
Iteration: 4, Func. Count: 50, Neg. LLF: 154.95548546373212
Iteration: 5, Func. Count: 61, Neg. LLF: 154.93182742542206
Iteration: 6, Func. Count: 72, Neg. LLF: 154.89066625877592
Iteration: 7, Func. Count: 83, Neg. LLF: 154.81834403122497
Iteration: 8, Func. Count: 94, Neg. LLF: 154.37714645008
Iteration: 9, Func. Count: 105, Neg. LLF: 154.220491423693
Iteration: 10, Func. Count: 116, Neg. LLF: 154.07710462230688
Iteration: 11, Func. Count: 127, Neg. LLF: 153.90898870758195
Iteration: 12, Func. Count: 138, Neg. LLF: 153.9160120401649
Iteration: 13, Func. Count: 150, Neg. LLF: 153.8890487560069
Iteration: 14, Func. Count: 161, Neg. LLF: 153.83417042119882
Iteration: 15, Func. Count: 172, Neg. LLF: 153.75462179920075
Iteration: 16, Func. Count: 183, Neg. LLF: 153.77075205107838
Iteration: 17, Func. Count: 195, Neg. LLF: 153.69271713842588
Iteration: 18, Func. Count: 206, Neg. LLF: 153.6874623465137
Iteration: 19, Func. Count: 217, Neg. LLF: 153.68722929416134
Iteration: 20, Func. Count: 228, Neg. LLF: 153.68719681186056
Iteration: 21, Func. Count: 239, Neg. LLF: 153.68718898800225
Iteration: 22, Func. Count: 249, Neg. LLF: 153.68718900589312
Optimization terminated successfully (Exit mode 0)
Current function value: 153.68718898800225
Iterations: 22
Function evaluations: 249
Gradient evaluations: 22
Iteration: 1, Func. Count: 9, Neg. LLF: 163.65603863013024
Iteration: 2, Func. Count: 19, Neg. LLF: 157.53527001023085
Iteration: 3, Func. Count: 28, Neg. LLF: 157.87246899756963
Iteration: 4, Func. Count: 37, Neg. LLF: 157.08716827892832
Iteration: 5, Func. Count: 46, Neg. LLF: 157.01507134257932
Iteration: 6, Func. Count: 55, Neg. LLF: 156.32948679841905
Iteration: 7, Func. Count: 64, Neg. LLF: 157.5868801531589
Iteration: 8, Func. Count: 73, Neg. LLF: 155.91297841797692
Iteration: 9, Func. Count: 82, Neg. LLF: 155.79514603136627
Iteration: 10, Func. Count: 90, Neg. LLF: 155.70663559350766
Iteration: 11, Func. Count: 98, Neg. LLF: 155.62311378061173
Iteration: 12, Func. Count: 106, Neg. LLF: 155.51794618021742
Iteration: 13, Func. Count: 114, Neg. LLF: 155.4303556603133
Iteration: 14, Func. Count: 122, Neg. LLF: 155.41025574948702
Iteration: 15, Func. Count: 130, Neg. LLF: 155.4079937026304
Iteration: 16, Func. Count: 138, Neg. LLF: 155.40792538002373
Iteration: 17, Func. Count: 146, Neg. LLF: 155.40792342299824
Iteration: 18, Func. Count: 153, Neg. LLF: 155.407923423
Optimization terminated successfully (Exit mode 0)
Current function value: 155.40792342299824
Iterations: 18
Function evaluations: 153
Gradient evaluations: 18
Iteration: 1, Func. Count: 10, Neg. LLF: 467.8003936992964
Iteration: 2, Func. Count: 21, Neg. LLF: 167.7072888647576
Iteration: 3, Func. Count: 31, Neg. LLF: 154.70318186498048
Iteration: 4, Func. Count: 40, Neg. LLF: 154.55844542412058
Iteration: 5, Func. Count: 49, Neg. LLF: 154.16535176050374
Iteration: 6, Func. Count: 58, Neg. LLF: 153.9063378360268
Iteration: 7, Func. Count: 67, Neg. LLF: 153.8523481329296
Iteration: 8, Func. Count: 76, Neg. LLF: 153.85164991692338
Iteration: 9, Func. Count: 85, Neg. LLF: 153.8505670831682
Iteration: 10, Func. Count: 93, Neg. LLF: 153.85056708301704
Optimization terminated successfully (Exit mode 0)
Current function value: 153.8505670831682
Iterations: 10
Function evaluations: 93
Gradient evaluations: 10
Iteration: 1, Func. Count: 11, Neg. LLF: 516.8495481913086
Iteration: 2, Func. Count: 23, Neg. LLF: 156.65185524493245
Iteration: 3, Func. Count: 34, Neg. LLF: 157.36162203765028
Iteration: 4, Func. Count: 46, Neg. LLF: 155.33578089471206
Iteration: 5, Func. Count: 57, Neg. LLF: 154.86784675318006
Iteration: 6, Func. Count: 68, Neg. LLF: 154.5908251812885
Iteration: 7, Func. Count: 79, Neg. LLF: 154.10968808911815
Iteration: 8, Func. Count: 89, Neg. LLF: 153.89746247119135
Iteration: 9, Func. Count: 99, Neg. LLF: 153.86646628179278
Iteration: 10, Func. Count: 109, Neg. LLF: 153.86589075882713
Iteration: 11, Func. Count: 119, Neg. LLF: 153.86582107614947
Iteration: 12, Func. Count: 129, Neg. LLF: 153.86557213136516
Iteration: 13, Func. Count: 139, Neg. LLF: 153.86497937103326
Iteration: 14, Func. Count: 149, Neg. LLF: 153.86300798082019
Iteration: 15, Func. Count: 159, Neg. LLF: 153.85784732515435
Iteration: 16, Func. Count: 169, Neg. LLF: 153.8549524700225
Iteration: 17, Func. Count: 179, Neg. LLF: 153.8505685511883
Iteration: 18, Func. Count: 189, Neg. LLF: 153.8505667808372
Iteration: 19, Func. Count: 198, Neg. LLF: 153.8505667815258
Optimization terminated successfully (Exit mode 0)
Current function value: 153.8505667808372
Iterations: 19
Function evaluations: 198
Gradient evaluations: 19
Iteration: 1, Func. Count: 12, Neg. LLF: 439.16040462207945
Iteration: 2, Func. Count: 25, Neg. LLF: 159.93030788838405
Iteration: 3, Func. Count: 37, Neg. LLF: 154.74122867784865
Iteration: 4, Func. Count: 49, Neg. LLF: 154.06420482612887
Iteration: 5, Func. Count: 60, Neg. LLF: 154.1752012415397
Iteration: 6, Func. Count: 72, Neg. LLF: 153.9526560574656
Iteration: 7, Func. Count: 83, Neg. LLF: 153.7335264230422
Iteration: 8, Func. Count: 94, Neg. LLF: 153.78744254037287
Iteration: 9, Func. Count: 106, Neg. LLF: 153.68838122230727
Iteration: 10, Func. Count: 117, Neg. LLF: 153.68728125947163
Iteration: 11, Func. Count: 128, Neg. LLF: 153.687198995752
Iteration: 12, Func. Count: 139, Neg. LLF: 153.68719015769474
Iteration: 13, Func. Count: 150, Neg. LLF: 153.6871889735675
Iteration: 14, Func. Count: 160, Neg. LLF: 153.68718897355598
Optimization terminated successfully (Exit mode 0)
Current function value: 153.6871889735675
Iterations: 14
Function evaluations: 160
Gradient evaluations: 14
Iteration: 1, Func. Count: 13, Neg. LLF: 186.5078983677148
Iteration: 2, Func. Count: 27, Neg. LLF: 172.4475047190446
Iteration: 3, Func. Count: 40, Neg. LLF: 157.28201509679423
Iteration: 4, Func. Count: 54, Neg. LLF: 156.98471754215714
Iteration: 5, Func. Count: 67, Neg. LLF: 153.52355548817184
Iteration: 6, Func. Count: 79, Neg. LLF: 152.82464353309354
Iteration: 7, Func. Count: 91, Neg. LLF: 152.68791420752956
Iteration: 8, Func. Count: 103, Neg. LLF: 166.16890970817528
Iteration: 9, Func. Count: 116, Neg. LLF: 152.57912756026315
Iteration: 10, Func. Count: 129, Neg. LLF: 152.34339240702096
Iteration: 11, Func. Count: 141, Neg. LLF: 152.27724146239547
Iteration: 12, Func. Count: 153, Neg. LLF: 152.2267594144636
Iteration: 13, Func. Count: 165, Neg. LLF: 152.1796509906698
Iteration: 14, Func. Count: 177, Neg. LLF: 152.19899198160797
Iteration: 15, Func. Count: 190, Neg. LLF: 152.13577196086757
Iteration: 16, Func. Count: 203, Neg. LLF: 152.1273135767478
Iteration: 17, Func. Count: 215, Neg. LLF: 152.12709971712871
Iteration: 18, Func. Count: 227, Neg. LLF: 152.12708506941883
Iteration: 19, Func. Count: 239, Neg. LLF: 152.12708436685415
Optimization terminated successfully (Exit mode 0)
Current function value: 152.12708436685415
Iterations: 19
Function evaluations: 239
Gradient evaluations: 19
Iteration: 1, Func. Count: 6, Neg. LLF: 156.49410727032873
Iteration: 2, Func. Count: 12, Neg. LLF: 155.9139967558291
Iteration: 3, Func. Count: 18, Neg. LLF: 155.5332628224606
Iteration: 4, Func. Count: 23, Neg. LLF: 157.5306260057761
Iteration: 5, Func. Count: 29, Neg. LLF: 155.39486974846847
Iteration: 6, Func. Count: 34, Neg. LLF: 155.3464861512877
Iteration: 7, Func. Count: 39, Neg. LLF: 155.17568533543403
Iteration: 8, Func. Count: 44, Neg. LLF: 155.1263426644225
Iteration: 9, Func. Count: 49, Neg. LLF: 155.12337029730412
Iteration: 10, Func. Count: 54, Neg. LLF: 155.12314908225525
Iteration: 11, Func. Count: 59, Neg. LLF: 155.12313737549147
Iteration: 12, Func. Count: 64, Neg. LLF: 155.1231359547303
Iteration: 13, Func. Count: 68, Neg. LLF: 155.12313595474302
Optimization terminated successfully (Exit mode 0)
Current function value: 155.1231359547303
Iterations: 13
Function evaluations: 68
Gradient evaluations: 13
Iteration: 1, Func. Count: 7, Neg. LLF: 484.7730977309234
Iteration: 2, Func. Count: 15, Neg. LLF: 154.73772229004268
Iteration: 3, Func. Count: 21, Neg. LLF: 154.16827845861687
Iteration: 4, Func. Count: 27, Neg. LLF: 154.3101242929165
Iteration: 5, Func. Count: 34, Neg. LLF: 153.85154562995407
Iteration: 6, Func. Count: 40, Neg. LLF: 153.85056719683107
Iteration: 7, Func. Count: 46, Neg. LLF: 153.8505666786469
Optimization terminated successfully (Exit mode 0)
Current function value: 153.8505666786469
Iterations: 7
Function evaluations: 46
Gradient evaluations: 7
Iteration: 1, Func. Count: 8, Neg. LLF: 541.0536382014168
Iteration: 2, Func. Count: 17, Neg. LLF: 279.8868906822265
Iteration: 3, Func. Count: 26, Neg. LLF: 154.12159237826614
Iteration: 4, Func. Count: 33, Neg. LLF: 153.58585939339625
Iteration: 5, Func. Count: 40, Neg. LLF: 155.01056568180476
Iteration: 6, Func. Count: 50, Neg. LLF: 153.58381951301837
Iteration: 7, Func. Count: 58, Neg. LLF: 153.12071969332501
Iteration: 8, Func. Count: 65, Neg. LLF: 153.99073032150568
Iteration: 9, Func. Count: 73, Neg. LLF: 152.9039971962184
Iteration: 10, Func. Count: 80, Neg. LLF: 152.87631952013678
Iteration: 11, Func. Count: 87, Neg. LLF: 152.8761818520113
Iteration: 12, Func. Count: 94, Neg. LLF: 152.87609247374724
Iteration: 13, Func. Count: 101, Neg. LLF: 152.87606351250068
Iteration: 14, Func. Count: 108, Neg. LLF: 152.87605885078912
Iteration: 15, Func. Count: 114, Neg. LLF: 152.87605885070158
Optimization terminated successfully (Exit mode 0)
Current function value: 152.87605885078912
Iterations: 15
Function evaluations: 114
Gradient evaluations: 15
Iteration: 1, Func. Count: 9, Neg. LLF: 450.01117206661155
Iteration: 2, Func. Count: 19, Neg. LLF: 154.29744356781768
Iteration: 3, Func. Count: 27, Neg. LLF: 154.09536408405577
Iteration: 4, Func. Count: 35, Neg. LLF: 153.94966212165548
Iteration: 5, Func. Count: 43, Neg. LLF: 153.9833626446404
Iteration: 6, Func. Count: 52, Neg. LLF: 153.96867675838186
Iteration: 7, Func. Count: 61, Neg. LLF: 153.87550612504012
Iteration: 8, Func. Count: 69, Neg. LLF: 153.87384995461838
Iteration: 9, Func. Count: 77, Neg. LLF: 153.87382739854124
Iteration: 10, Func. Count: 85, Neg. LLF: 153.87376594837542
Iteration: 11, Func. Count: 93, Neg. LLF: 153.87376046630217
Iteration: 12, Func. Count: 100, Neg. LLF: 153.87376046627594
Optimization terminated successfully (Exit mode 0)
Current function value: 153.87376046630217
Iterations: 12
Function evaluations: 100
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 398.38233439872755
Iteration: 2, Func. Count: 21, Neg. LLF: 154.42458765434995
Iteration: 3, Func. Count: 30, Neg. LLF: 153.87117754750494
Iteration: 4, Func. Count: 39, Neg. LLF: 153.92882933017205
Iteration: 5, Func. Count: 49, Neg. LLF: 153.0826354373465
Iteration: 6, Func. Count: 58, Neg. LLF: 152.98437271558987
Iteration: 7, Func. Count: 67, Neg. LLF: 152.9597125285487
Iteration: 8, Func. Count: 76, Neg. LLF: 152.9585236830308
Iteration: 9, Func. Count: 85, Neg. LLF: 152.95017434283434
Iteration: 10, Func. Count: 94, Neg. LLF: 152.8853228516035
Iteration: 11, Func. Count: 103, Neg. LLF: 152.87675479565243
Iteration: 12, Func. Count: 112, Neg. LLF: 152.8761171868449
Iteration: 13, Func. Count: 121, Neg. LLF: 152.87606523634585
Iteration: 14, Func. Count: 130, Neg. LLF: 152.87605896780212
Iteration: 15, Func. Count: 138, Neg. LLF: 152.87605897723154
Optimization terminated successfully (Exit mode 0)
Current function value: 152.87605896780212
Iterations: 15
Function evaluations: 138
Gradient evaluations: 15
Iteration: 1, Func. Count: 7, Neg. LLF: 157.2994477099277
Iteration: 2, Func. Count: 14, Neg. LLF: 155.71754925474443
Iteration: 3, Func. Count: 20, Neg. LLF: 155.80508821029775
Iteration: 4, Func. Count: 27, Neg. LLF: 162.09097186891526
Iteration: 5, Func. Count: 35, Neg. LLF: 155.52624689461706
Iteration: 6, Func. Count: 41, Neg. LLF: 155.4738077679232
Iteration: 7, Func. Count: 47, Neg. LLF: 155.42842917287368
Iteration: 8, Func. Count: 53, Neg. LLF: 155.29222173074075
Iteration: 9, Func. Count: 59, Neg. LLF: 155.16580479919162
Iteration: 10, Func. Count: 65, Neg. LLF: 155.12996742157364
Iteration: 11, Func. Count: 71, Neg. LLF: 155.123136920204
Iteration: 12, Func. Count: 77, Neg. LLF: 155.12313608821833
Optimization terminated successfully (Exit mode 0)
Current function value: 155.12313608821833
Iterations: 12
Function evaluations: 77
Gradient evaluations: 12
Iteration: 1, Func. Count: 8, Neg. LLF: 464.42766427953285
Iteration: 2, Func. Count: 17, Neg. LLF: 167.910891812834
Iteration: 3, Func. Count: 25, Neg. LLF: 154.70770848694207
Iteration: 4, Func. Count: 32, Neg. LLF: 154.5742424726832
Iteration: 5, Func. Count: 39, Neg. LLF: 154.16239357010815
Iteration: 6, Func. Count: 46, Neg. LLF: 154.00551100196873
Iteration: 7, Func. Count: 53, Neg. LLF: 153.8871456462688
Iteration: 8, Func. Count: 60, Neg. LLF: 153.85391812567042
Iteration: 9, Func. Count: 67, Neg. LLF: 153.85108815800686
Iteration: 10, Func. Count: 74, Neg. LLF: 153.85056830311396
Iteration: 11, Func. Count: 81, Neg. LLF: 153.85056819450116
Optimization terminated successfully (Exit mode 0)
Current function value: 153.85056819450116
Iterations: 11
Function evaluations: 81
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 516.1424007955899
Iteration: 2, Func. Count: 19, Neg. LLF: 158.85851993603072
Iteration: 3, Func. Count: 29, Neg. LLF: 163.44968866721234
Iteration: 4, Func. Count: 38, Neg. LLF: 154.19432867548593
Iteration: 5, Func. Count: 46, Neg. LLF: 153.72296515773948
Iteration: 6, Func. Count: 54, Neg. LLF: 154.56612284479536
Iteration: 7, Func. Count: 64, Neg. LLF: 153.57276173592777
Iteration: 8, Func. Count: 73, Neg. LLF: 153.17999985190124
Iteration: 9, Func. Count: 81, Neg. LLF: 153.106678034909
Iteration: 10, Func. Count: 89, Neg. LLF: 152.9272645458572
Iteration: 11, Func. Count: 97, Neg. LLF: 152.90165825367552
Iteration: 12, Func. Count: 105, Neg. LLF: 152.88004342368285
Iteration: 13, Func. Count: 113, Neg. LLF: 152.8780898029379
Iteration: 14, Func. Count: 121, Neg. LLF: 152.87681075455916
Iteration: 15, Func. Count: 129, Neg. LLF: 152.8763926906342
Iteration: 16, Func. Count: 137, Neg. LLF: 152.87614773055017
Iteration: 17, Func. Count: 145, Neg. LLF: 152.87606885581346
Iteration: 18, Func. Count: 153, Neg. LLF: 152.8760589637985
Iteration: 19, Func. Count: 160, Neg. LLF: 152.87605896403318
Optimization terminated successfully (Exit mode 0)
Current function value: 152.8760589637985
Iterations: 19
Function evaluations: 160
Gradient evaluations: 19
Iteration: 1, Func. Count: 10, Neg. LLF: 438.74563559940844
Iteration: 2, Func. Count: 21, Neg. LLF: 163.99645532882892
Iteration: 3, Func. Count: 31, Neg. LLF: 154.1785759557167
Iteration: 4, Func. Count: 40, Neg. LLF: 154.0639686973888
Iteration: 5, Func. Count: 49, Neg. LLF: 153.81507008585717
Iteration: 6, Func. Count: 58, Neg. LLF: 153.71062302234265
Iteration: 7, Func. Count: 67, Neg. LLF: 153.70628363655217
Iteration: 8, Func. Count: 77, Neg. LLF: 153.68809054805791
Iteration: 9, Func. Count: 86, Neg. LLF: 153.6872437816702
Iteration: 10, Func. Count: 95, Neg. LLF: 153.68718964926984
Iteration: 11, Func. Count: 104, Neg. LLF: 153.68718902362176
Optimization terminated successfully (Exit mode 0)
Current function value: 153.68718902362176
Iterations: 11
Function evaluations: 104
Gradient evaluations: 11
Iteration: 1, Func. Count: 11, Neg. LLF: 392.35057841184073
Iteration: 2, Func. Count: 23, Neg. LLF: 156.8755585319122
Iteration: 3, Func. Count: 34, Neg. LLF: 154.45627470897423
Iteration: 4, Func. Count: 44, Neg. LLF: 154.53870698627233
Iteration: 5, Func. Count: 55, Neg. LLF: 154.03740504455945
Iteration: 6, Func. Count: 65, Neg. LLF: 153.67424378279165
Iteration: 7, Func. Count: 75, Neg. LLF: 173.01393362520267
Iteration: 8, Func. Count: 86, Neg. LLF: 153.01821929849362
Iteration: 9, Func. Count: 96, Neg. LLF: 152.96323691653674
Iteration: 10, Func. Count: 106, Neg. LLF: 152.9883625028614
Iteration: 11, Func. Count: 117, Neg. LLF: 152.8830278457423
Iteration: 12, Func. Count: 127, Neg. LLF: 152.8778305983585
Iteration: 13, Func. Count: 137, Neg. LLF: 152.87616491566163
Iteration: 14, Func. Count: 147, Neg. LLF: 152.8760669393983
Iteration: 15, Func. Count: 157, Neg. LLF: 152.87605916803847
Iteration: 16, Func. Count: 167, Neg. LLF: 152.87605853798954
Optimization terminated successfully (Exit mode 0)
Current function value: 152.87605853798954
Iterations: 16
Function evaluations: 167
Gradient evaluations: 16
Iteration: 1, Func. Count: 8, Neg. LLF: 160.75252122212387
Iteration: 2, Func. Count: 16, Neg. LLF: 157.310844586218
Iteration: 3, Func. Count: 25, Neg. LLF: 156.08717710611577
Iteration: 4, Func. Count: 33, Neg. LLF: 154.87521248422644
Iteration: 5, Func. Count: 40, Neg. LLF: 155.2224689890208
Iteration: 6, Func. Count: 48, Neg. LLF: 155.8347818116468
Iteration: 7, Func. Count: 57, Neg. LLF: 154.2271888889591
Iteration: 8, Func. Count: 64, Neg. LLF: 154.1630162966426
Iteration: 9, Func. Count: 71, Neg. LLF: 154.15520119225104
Iteration: 10, Func. Count: 78, Neg. LLF: 154.14288567854732
Iteration: 11, Func. Count: 85, Neg. LLF: 154.12910306559257
Iteration: 12, Func. Count: 92, Neg. LLF: 154.12278231096013
Iteration: 13, Func. Count: 99, Neg. LLF: 154.12155062065384
Iteration: 14, Func. Count: 106, Neg. LLF: 154.1214651711466
Iteration: 15, Func. Count: 113, Neg. LLF: 154.12145735857774
Iteration: 16, Func. Count: 119, Neg. LLF: 154.12145735864257
Optimization terminated successfully (Exit mode 0)
Current function value: 154.12145735857774
Iterations: 16
Function evaluations: 119
Gradient evaluations: 16
Iteration: 1, Func. Count: 9, Neg. LLF: 466.0498220916487
Iteration: 2, Func. Count: 19, Neg. LLF: 235.86984294920086
Iteration: 3, Func. Count: 29, Neg. LLF: 154.70074733533508
Iteration: 4, Func. Count: 37, Neg. LLF: 154.6717268276749
Iteration: 5, Func. Count: 45, Neg. LLF: 154.47234048925074
Iteration: 6, Func. Count: 53, Neg. LLF: 153.93803728419022
Iteration: 7, Func. Count: 61, Neg. LLF: 153.85406155263118
Iteration: 8, Func. Count: 69, Neg. LLF: 153.85226347908826
Iteration: 9, Func. Count: 77, Neg. LLF: 153.85057145977345
Iteration: 10, Func. Count: 85, Neg. LLF: 153.85056671783303
Iteration: 11, Func. Count: 92, Neg. LLF: 153.85056671799447
Optimization terminated successfully (Exit mode 0)
Current function value: 153.85056671783303
Iterations: 11
Function evaluations: 92
Gradient evaluations: 11
Iteration: 1, Func. Count: 10, Neg. LLF: 519.5752298940706
Iteration: 2, Func. Count: 21, Neg. LLF: 172.24674629909958
Iteration: 3, Func. Count: 31, Neg. LLF: 154.03216531329295
Iteration: 4, Func. Count: 40, Neg. LLF: 154.52676387190417
Iteration: 5, Func. Count: 51, Neg. LLF: 153.5692314992016
Iteration: 6, Func. Count: 60, Neg. LLF: 152.94186040804163
Iteration: 7, Func. Count: 69, Neg. LLF: 152.861555063288
Iteration: 8, Func. Count: 78, Neg. LLF: 152.81490844505646
Iteration: 9, Func. Count: 87, Neg. LLF: 152.80019978266785
Iteration: 10, Func. Count: 96, Neg. LLF: 152.82737999531741
Iteration: 11, Func. Count: 106, Neg. LLF: 152.74709699837507
Iteration: 12, Func. Count: 115, Neg. LLF: 152.74543093950257
Iteration: 13, Func. Count: 124, Neg. LLF: 152.7450371564863
Iteration: 14, Func. Count: 133, Neg. LLF: 152.74485840236335
Iteration: 15, Func. Count: 142, Neg. LLF: 152.74484818190476
Iteration: 16, Func. Count: 150, Neg. LLF: 152.74484818188625
Optimization terminated successfully (Exit mode 0)
Current function value: 152.74484818190476
Iterations: 16
Function evaluations: 150
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 439.7073794326276
Iteration: 2, Func. Count: 23, Neg. LLF: 164.1169156342867
Iteration: 3, Func. Count: 34, Neg. LLF: 154.16570443824114
Iteration: 4, Func. Count: 44, Neg. LLF: 154.5639075859787
Iteration: 5, Func. Count: 55, Neg. LLF: 153.88282557138893
Iteration: 6, Func. Count: 65, Neg. LLF: 153.75903798377934
Iteration: 7, Func. Count: 75, Neg. LLF: 153.68735192443685
Iteration: 8, Func. Count: 85, Neg. LLF: 153.6872670130102
Iteration: 9, Func. Count: 95, Neg. LLF: 153.6871938279466
Iteration: 10, Func. Count: 105, Neg. LLF: 153.6871892818632
Iteration: 11, Func. Count: 114, Neg. LLF: 153.6871892818798
Optimization terminated successfully (Exit mode 0)
Current function value: 153.6871892818632
Iterations: 11
Function evaluations: 114
Gradient evaluations: 11
Iteration: 1, Func. Count: 12, Neg. LLF: 392.85325341266895
Iteration: 2, Func. Count: 25, Neg. LLF: 159.52080617023307
Iteration: 3, Func. Count: 37, Neg. LLF: 155.44025709192985
Iteration: 4, Func. Count: 49, Neg. LLF: 154.82633033355566
Iteration: 5, Func. Count: 61, Neg. LLF: 155.54522090227178
Iteration: 6, Func. Count: 73, Neg. LLF: 153.14244831936935
Iteration: 7, Func. Count: 84, Neg. LLF: 155.22196588885197
Iteration: 8, Func. Count: 96, Neg. LLF: 152.82240190233077
Iteration: 9, Func. Count: 107, Neg. LLF: 152.84335859287262
Iteration: 10, Func. Count: 119, Neg. LLF: 152.89247220769238
Iteration: 11, Func. Count: 131, Neg. LLF: 152.70326615235172
Iteration: 12, Func. Count: 142, Neg. LLF: 152.690450892573
Iteration: 13, Func. Count: 153, Neg. LLF: 152.68597973202077
Iteration: 14, Func. Count: 164, Neg. LLF: 152.68099181462645
Iteration: 15, Func. Count: 175, Neg. LLF: 152.6779150571144
Iteration: 16, Func. Count: 186, Neg. LLF: 152.67593947380095
Iteration: 17, Func. Count: 197, Neg. LLF: 152.67522996766635
Iteration: 18, Func. Count: 208, Neg. LLF: 152.67482556223555
Iteration: 19, Func. Count: 219, Neg. LLF: 152.67467657899718
Iteration: 20, Func. Count: 230, Neg. LLF: 152.6746509381872
Iteration: 21, Func. Count: 241, Neg. LLF: 152.67464859345597
Iteration: 22, Func. Count: 251, Neg. LLF: 152.67464859348652
Optimization terminated successfully (Exit mode 0)
Current function value: 152.67464859345597
Iterations: 22
Function evaluations: 251
Gradient evaluations: 22
Iteration: 1, Func. Count: 9, Neg. LLF: 160.15666936237085
Iteration: 2, Func. Count: 18, Neg. LLF: 157.04233191950436
Iteration: 3, Func. Count: 28, Neg. LLF: 156.2515549934992
Iteration: 4, Func. Count: 37, Neg. LLF: 154.94089046465464
Iteration: 5, Func. Count: 45, Neg. LLF: 154.70219920946707
Iteration: 6, Func. Count: 53, Neg. LLF: 154.58671509934817
Iteration: 7, Func. Count: 62, Neg. LLF: 154.24454135195808
Iteration: 8, Func. Count: 70, Neg. LLF: 154.17698917747
Iteration: 9, Func. Count: 78, Neg. LLF: 154.160055814591
Iteration: 10, Func. Count: 86, Neg. LLF: 154.15341497843528
Iteration: 11, Func. Count: 94, Neg. LLF: 154.12857441318124
Iteration: 12, Func. Count: 102, Neg. LLF: 154.12166206756183
Iteration: 13, Func. Count: 110, Neg. LLF: 154.12146020193907
Iteration: 14, Func. Count: 118, Neg. LLF: 154.1214569303767
Iteration: 15, Func. Count: 125, Neg. LLF: 154.12145707192866
Optimization terminated successfully (Exit mode 0)
Current function value: 154.1214569303767
Iterations: 15
Function evaluations: 125
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 466.13658572803257
Iteration: 2, Func. Count: 21, Neg. LLF: 233.27310813340432
Iteration: 3, Func. Count: 32, Neg. LLF: 154.69851572427922
Iteration: 4, Func. Count: 41, Neg. LLF: 154.668178275491
Iteration: 5, Func. Count: 50, Neg. LLF: 154.44253200003837
Iteration: 6, Func. Count: 59, Neg. LLF: 153.96191362585836
Iteration: 7, Func. Count: 68, Neg. LLF: 153.86585332005552
Iteration: 8, Func. Count: 77, Neg. LLF: 153.85684275581883
Iteration: 9, Func. Count: 86, Neg. LLF: 153.85057430200428
Iteration: 10, Func. Count: 95, Neg. LLF: 153.85056671246957
Iteration: 11, Func. Count: 103, Neg. LLF: 153.85056671251584
Optimization terminated successfully (Exit mode 0)
Current function value: 153.85056671246957
Iterations: 11
Function evaluations: 103
Gradient evaluations: 11
Iteration: 1, Func. Count: 11, Neg. LLF: 518.6782530590524
Iteration: 2, Func. Count: 23, Neg. LLF: 171.98021644604523
Iteration: 3, Func. Count: 34, Neg. LLF: 154.03586457373257
Iteration: 4, Func. Count: 44, Neg. LLF: 154.53040539973875
Iteration: 5, Func. Count: 56, Neg. LLF: 153.5636629939824
Iteration: 6, Func. Count: 66, Neg. LLF: 152.93761487515306
Iteration: 7, Func. Count: 76, Neg. LLF: 152.85728858042734
Iteration: 8, Func. Count: 86, Neg. LLF: 153.03767480732867
Iteration: 9, Func. Count: 97, Neg. LLF: 152.7966332313652
Iteration: 10, Func. Count: 107, Neg. LLF: 152.77593311868932
Iteration: 11, Func. Count: 117, Neg. LLF: 152.74721626321934
Iteration: 12, Func. Count: 127, Neg. LLF: 152.74583189396395
Iteration: 13, Func. Count: 137, Neg. LLF: 152.7451628482319
Iteration: 14, Func. Count: 147, Neg. LLF: 152.74485460939118
Iteration: 15, Func. Count: 157, Neg. LLF: 152.744847892763
Iteration: 16, Func. Count: 166, Neg. LLF: 152.74484789262482
Optimization terminated successfully (Exit mode 0)
Current function value: 152.744847892763
Iterations: 16
Function evaluations: 166
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 439.6227748703994
Iteration: 2, Func. Count: 25, Neg. LLF: 163.84839312826335
Iteration: 3, Func. Count: 37, Neg. LLF: 154.1634269874493
Iteration: 4, Func. Count: 48, Neg. LLF: 154.59330697106356
Iteration: 5, Func. Count: 60, Neg. LLF: 153.88051902754597
Iteration: 6, Func. Count: 71, Neg. LLF: 153.7465220796562
Iteration: 7, Func. Count: 82, Neg. LLF: 153.688328193223
Iteration: 8, Func. Count: 93, Neg. LLF: 153.68786667788956
Iteration: 9, Func. Count: 104, Neg. LLF: 153.68722005886414
Iteration: 10, Func. Count: 115, Neg. LLF: 153.68719202435776
Iteration: 11, Func. Count: 126, Neg. LLF: 153.68718942012012
Iteration: 12, Func. Count: 136, Neg. LLF: 153.68718942035122
Optimization terminated successfully (Exit mode 0)
Current function value: 153.68718942012012
Iterations: 12
Function evaluations: 136
Gradient evaluations: 12
Iteration: 1, Func. Count: 13, Neg. LLF: 392.75620505164363
Iteration: 2, Func. Count: 27, Neg. LLF: 159.3753259240603
Iteration: 3, Func. Count: 40, Neg. LLF: 155.47260264267848
Iteration: 4, Func. Count: 53, Neg. LLF: 154.84191853870198
Iteration: 5, Func. Count: 66, Neg. LLF: 155.52459694815738
Iteration: 6, Func. Count: 79, Neg. LLF: 153.1362788749075
Iteration: 7, Func. Count: 91, Neg. LLF: 156.0338517936604
Iteration: 8, Func. Count: 104, Neg. LLF: 153.50175108273876
Iteration: 9, Func. Count: 117, Neg. LLF: 158.84619721579983
Iteration: 10, Func. Count: 131, Neg. LLF: 152.72558092109517
Iteration: 11, Func. Count: 143, Neg. LLF: 152.71298251570096
Iteration: 12, Func. Count: 155, Neg. LLF: 152.68913520006328
Iteration: 13, Func. Count: 167, Neg. LLF: 152.68245724968585
Iteration: 14, Func. Count: 179, Neg. LLF: 152.67992462840536
Iteration: 15, Func. Count: 191, Neg. LLF: 152.67779010364646
Iteration: 16, Func. Count: 203, Neg. LLF: 152.6764618528328
Iteration: 17, Func. Count: 215, Neg. LLF: 152.67507758295272
Iteration: 18, Func. Count: 227, Neg. LLF: 152.67468973932858
Iteration: 19, Func. Count: 239, Neg. LLF: 152.67464950435365
Iteration: 20, Func. Count: 251, Neg. LLF: 152.67464863464494
Optimization terminated successfully (Exit mode 0)
Current function value: 152.67464863464494
Iterations: 20
Function evaluations: 251
Gradient evaluations: 20
Iteration: 1, Func. Count: 10, Neg. LLF: 156.64093669419756
Iteration: 2, Func. Count: 20, Neg. LLF: 155.87465472747417
Iteration: 3, Func. Count: 30, Neg. LLF: 154.64183681242466
Iteration: 4, Func. Count: 40, Neg. LLF: 154.50237423487025
Iteration: 5, Func. Count: 50, Neg. LLF: 154.407728809077
Iteration: 6, Func. Count: 60, Neg. LLF: 153.46417681587275
Iteration: 7, Func. Count: 69, Neg. LLF: 153.43657562188113
Iteration: 8, Func. Count: 78, Neg. LLF: 153.43222877797518
Iteration: 9, Func. Count: 87, Neg. LLF: 153.4596387074578
Iteration: 10, Func. Count: 97, Neg. LLF: 153.48421123449458
Iteration: 11, Func. Count: 107, Neg. LLF: 153.41170855824132
Iteration: 12, Func. Count: 116, Neg. LLF: 153.4024001870098
Iteration: 13, Func. Count: 125, Neg. LLF: 153.40226839236405
Iteration: 14, Func. Count: 134, Neg. LLF: 153.40222299050498
Iteration: 15, Func. Count: 143, Neg. LLF: 153.40222074168307
Iteration: 16, Func. Count: 151, Neg. LLF: 153.40222074168148
Optimization terminated successfully (Exit mode 0)
Current function value: 153.40222074168307
Iterations: 16
Function evaluations: 151
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 467.92594958579394
Iteration: 2, Func. Count: 23, Neg. LLF: 230.96866985509527
Iteration: 3, Func. Count: 35, Neg. LLF: 154.69662976795175
Iteration: 4, Func. Count: 45, Neg. LLF: 154.66581286535387
Iteration: 5, Func. Count: 55, Neg. LLF: 154.41113230937725
Iteration: 6, Func. Count: 65, Neg. LLF: 153.98363524236922
Iteration: 7, Func. Count: 75, Neg. LLF: 153.85790494487287
Iteration: 8, Func. Count: 85, Neg. LLF: 153.8579969368284
Iteration: 9, Func. Count: 96, Neg. LLF: 153.85057753807754
Iteration: 10, Func. Count: 106, Neg. LLF: 153.85056667577342
Iteration: 11, Func. Count: 115, Neg. LLF: 153.85056667582438
Optimization terminated successfully (Exit mode 0)
Current function value: 153.85056667577342
Iterations: 11
Function evaluations: 115
Gradient evaluations: 11
Iteration: 1, Func. Count: 12, Neg. LLF: 520.6773608982063
Iteration: 2, Func. Count: 25, Neg. LLF: 171.68212698177194
Iteration: 3, Func. Count: 37, Neg. LLF: 154.04698609520034
Iteration: 4, Func. Count: 48, Neg. LLF: 154.92117323753095
Iteration: 5, Func. Count: 61, Neg. LLF: 153.3106465879569
Iteration: 6, Func. Count: 72, Neg. LLF: 152.7028716971908
Iteration: 7, Func. Count: 83, Neg. LLF: 153.02770732404602
Iteration: 8, Func. Count: 95, Neg. LLF: 152.56642278118778
Iteration: 9, Func. Count: 106, Neg. LLF: 154.31851157943402
Iteration: 10, Func. Count: 118, Neg. LLF: 152.4950872498458
Iteration: 11, Func. Count: 129, Neg. LLF: 152.4919565667737
Iteration: 12, Func. Count: 140, Neg. LLF: 152.49139367150426
Iteration: 13, Func. Count: 151, Neg. LLF: 152.4913712202666
Iteration: 14, Func. Count: 162, Neg. LLF: 152.49135936433493
Iteration: 15, Func. Count: 173, Neg. LLF: 152.49135580175167
Iteration: 16, Func. Count: 184, Neg. LLF: 152.49135500860513
Optimization terminated successfully (Exit mode 0)
Current function value: 152.49135500860513
Iterations: 16
Function evaluations: 184
Gradient evaluations: 16
Iteration: 1, Func. Count: 13, Neg. LLF: 440.36912411357196
Iteration: 2, Func. Count: 27, Neg. LLF: 163.38547437044068
Iteration: 3, Func. Count: 40, Neg. LLF: 154.16371433437155
Iteration: 4, Func. Count: 52, Neg. LLF: 154.60896114060245
Iteration: 5, Func. Count: 65, Neg. LLF: 153.88424944338016
Iteration: 6, Func. Count: 77, Neg. LLF: 153.75248510459767
Iteration: 7, Func. Count: 89, Neg. LLF: 153.6879093709427
Iteration: 8, Func. Count: 101, Neg. LLF: 153.68730639693592
Iteration: 9, Func. Count: 113, Neg. LLF: 153.6872687888589
Iteration: 10, Func. Count: 125, Neg. LLF: 153.68719128003522
Iteration: 11, Func. Count: 137, Neg. LLF: 153.68718934011596
Iteration: 12, Func. Count: 148, Neg. LLF: 153.68718934044313
Optimization terminated successfully (Exit mode 0)
Current function value: 153.68718934011596
Iterations: 12
Function evaluations: 148
Gradient evaluations: 12
Iteration: 1, Func. Count: 14, Neg. LLF: 393.39252004688865
Iteration: 2, Func. Count: 29, Neg. LLF: 158.5430238487557
Iteration: 3, Func. Count: 43, Neg. LLF: 157.12106917067055
Iteration: 4, Func. Count: 57, Neg. LLF: 156.02517411453312
Iteration: 5, Func. Count: 71, Neg. LLF: 154.41915767361868
Iteration: 6, Func. Count: 85, Neg. LLF: 156.5559131555095
Iteration: 7, Func. Count: 99, Neg. LLF: 152.94121463296543
Iteration: 8, Func. Count: 112, Neg. LLF: 155.70419751331804
Iteration: 9, Func. Count: 126, Neg. LLF: 165.4631022798986
Iteration: 10, Func. Count: 141, Neg. LLF: 152.32371532797632
Iteration: 11, Func. Count: 154, Neg. LLF: 152.18202742010274
Iteration: 12, Func. Count: 167, Neg. LLF: 152.1156148181174
Iteration: 13, Func. Count: 180, Neg. LLF: 152.09592159154488
Iteration: 14, Func. Count: 193, Neg. LLF: 152.08042840078187
Iteration: 15, Func. Count: 206, Neg. LLF: 152.07815121503305
Iteration: 16, Func. Count: 219, Neg. LLF: 152.07701720993708
Iteration: 17, Func. Count: 232, Neg. LLF: 152.07683889343937
Iteration: 18, Func. Count: 245, Neg. LLF: 152.07656824532285
Iteration: 19, Func. Count: 258, Neg. LLF: 152.07652222743852
Iteration: 20, Func. Count: 271, Neg. LLF: 152.07651056818784
Iteration: 21, Func. Count: 283, Neg. LLF: 152.07651056818816
Optimization terminated successfully (Exit mode 0)
Current function value: 152.07651056818784
Iterations: 21
Function evaluations: 283
Gradient evaluations: 21
Iteration: 1, Func. Count: 7, Neg. LLF: 156.60069006374448
Iteration: 2, Func. Count: 14, Neg. LLF: 161.76485705400654
Iteration: 3, Func. Count: 22, Neg. LLF: 155.91188287262764
Iteration: 4, Func. Count: 29, Neg. LLF: 155.53246836589665
Iteration: 5, Func. Count: 35, Neg. LLF: 155.46293462297402
Iteration: 6, Func. Count: 41, Neg. LLF: 155.39564977139952
Iteration: 7, Func. Count: 47, Neg. LLF: 155.3488421378287
Iteration: 8, Func. Count: 53, Neg. LLF: 155.19912689805906
Iteration: 9, Func. Count: 59, Neg. LLF: 155.1481208282184
Iteration: 10, Func. Count: 65, Neg. LLF: 155.12655042091043
Iteration: 11, Func. Count: 71, Neg. LLF: 155.12336432316553
Iteration: 12, Func. Count: 77, Neg. LLF: 155.1231527816379
Iteration: 13, Func. Count: 83, Neg. LLF: 155.12313753763422
Iteration: 14, Func. Count: 89, Neg. LLF: 155.1231359834376
Iteration: 15, Func. Count: 94, Neg. LLF: 155.12313609665603
Optimization terminated successfully (Exit mode 0)
Current function value: 155.1231359834376
Iterations: 15
Function evaluations: 94
Gradient evaluations: 15
Iteration: 1, Func. Count: 8, Neg. LLF: 482.7248098559684
Iteration: 2, Func. Count: 17, Neg. LLF: 154.73976350480086
Iteration: 3, Func. Count: 24, Neg. LLF: 154.15883269179204
Iteration: 4, Func. Count: 31, Neg. LLF: 154.2761073200022
Iteration: 5, Func. Count: 39, Neg. LLF: 153.85073032060032
Iteration: 6, Func. Count: 46, Neg. LLF: 153.85056717834746
Iteration: 7, Func. Count: 53, Neg. LLF: 153.85056667915063
Optimization terminated successfully (Exit mode 0)
Current function value: 153.85056667915063
Iterations: 7
Function evaluations: 53
Gradient evaluations: 7
Iteration: 1, Func. Count: 9, Neg. LLF: 536.5372213936195
Iteration: 2, Func. Count: 19, Neg. LLF: 307.6135937877617
Iteration: 3, Func. Count: 29, Neg. LLF: 154.1758847770176
Iteration: 4, Func. Count: 37, Neg. LLF: 153.62013028534562
Iteration: 5, Func. Count: 45, Neg. LLF: 154.70331760424003
Iteration: 6, Func. Count: 56, Neg. LLF: 153.67625560516478
Iteration: 7, Func. Count: 65, Neg. LLF: 153.12214396792032
Iteration: 8, Func. Count: 73, Neg. LLF: 154.1379569274469
Iteration: 9, Func. Count: 82, Neg. LLF: 152.9020136725149
Iteration: 10, Func. Count: 90, Neg. LLF: 152.8781576446595
Iteration: 11, Func. Count: 98, Neg. LLF: 152.8773016770608
Iteration: 12, Func. Count: 106, Neg. LLF: 152.8761484004095
Iteration: 13, Func. Count: 114, Neg. LLF: 152.87607505252603
Iteration: 14, Func. Count: 122, Neg. LLF: 152.876065121832
Iteration: 15, Func. Count: 130, Neg. LLF: 152.87606034982036
Iteration: 16, Func. Count: 138, Neg. LLF: 152.87605872357574
Iteration: 17, Func. Count: 145, Neg. LLF: 152.87605872361297
Optimization terminated successfully (Exit mode 0)
Current function value: 152.87605872357574
Iterations: 17
Function evaluations: 145
Gradient evaluations: 17
Iteration: 1, Func. Count: 10, Neg. LLF: 556.1597780165703
Iteration: 2, Func. Count: 21, Neg. LLF: 154.13283456588977
Iteration: 3, Func. Count: 30, Neg. LLF: 153.92098465075847
Iteration: 4, Func. Count: 39, Neg. LLF: 154.07900371339696
Iteration: 5, Func. Count: 49, Neg. LLF: 153.8745247201185
Iteration: 6, Func. Count: 58, Neg. LLF: 153.8738395712768
Iteration: 7, Func. Count: 67, Neg. LLF: 153.87378327448084
Iteration: 8, Func. Count: 76, Neg. LLF: 153.87376115365612
Iteration: 9, Func. Count: 85, Neg. LLF: 153.87376043315834
Optimization terminated successfully (Exit mode 0)
Current function value: 153.87376043315834
Iterations: 9
Function evaluations: 85
Gradient evaluations: 9
Iteration: 1, Func. Count: 11, Neg. LLF: 551.1467674426548
Iteration: 2, Func. Count: 23, Neg. LLF: 283.5034972259797
Iteration: 3, Func. Count: 35, Neg. LLF: 153.97324320188818
Iteration: 4, Func. Count: 45, Neg. LLF: 153.7538646848075
Iteration: 5, Func. Count: 55, Neg. LLF: 153.94738929426777
Iteration: 6, Func. Count: 66, Neg. LLF: 153.57792882743627
Iteration: 7, Func. Count: 76, Neg. LLF: 153.4704515862113
Iteration: 8, Func. Count: 86, Neg. LLF: 153.39568477076068
Iteration: 9, Func. Count: 96, Neg. LLF: 153.31747093820366
Iteration: 10, Func. Count: 106, Neg. LLF: 153.15869710443175
Iteration: 11, Func. Count: 116, Neg. LLF: 152.92955972811575
Iteration: 12, Func. Count: 126, Neg. LLF: 152.8886456416639
Iteration: 13, Func. Count: 136, Neg. LLF: 152.8800409984062
Iteration: 14, Func. Count: 146, Neg. LLF: 152.87702744763126
Iteration: 15, Func. Count: 156, Neg. LLF: 152.87628506707296
Iteration: 16, Func. Count: 166, Neg. LLF: 152.876100064251
Iteration: 17, Func. Count: 176, Neg. LLF: 152.876063493397
Iteration: 18, Func. Count: 186, Neg. LLF: 152.8760596402978
Iteration: 19, Func. Count: 196, Neg. LLF: 152.92306195207382
Optimization terminated successfully (Exit mode 0)
Current function value: 152.87605957337175
Iterations: 20
Function evaluations: 199
Gradient evaluations: 19
Iteration: 1, Func. Count: 8, Neg. LLF: 157.0757784354108
Iteration: 2, Func. Count: 16, Neg. LLF: 155.86346325599834
Iteration: 3, Func. Count: 23, Neg. LLF: 155.60923800433753
Iteration: 4, Func. Count: 30, Neg. LLF: 155.8950596786186
Iteration: 5, Func. Count: 38, Neg. LLF: 159.88010785132954
Iteration: 6, Func. Count: 46, Neg. LLF: 155.49782096999678
Iteration: 7, Func. Count: 53, Neg. LLF: 155.45557244838162
Iteration: 8, Func. Count: 60, Neg. LLF: 155.4032811695709
Iteration: 9, Func. Count: 67, Neg. LLF: 155.261951454689
Iteration: 10, Func. Count: 74, Neg. LLF: 155.14720992691005
Iteration: 11, Func. Count: 81, Neg. LLF: 155.1260041737843
Iteration: 12, Func. Count: 88, Neg. LLF: 155.12333719168515
Iteration: 13, Func. Count: 95, Neg. LLF: 155.12314477538365
Iteration: 14, Func. Count: 102, Neg. LLF: 155.12313617631034
Iteration: 15, Func. Count: 108, Neg. LLF: 155.12313617938847
Optimization terminated successfully (Exit mode 0)
Current function value: 155.12313617631034
Iterations: 15
Function evaluations: 108
Gradient evaluations: 15
Iteration: 1, Func. Count: 9, Neg. LLF: 462.98945222374624
Iteration: 2, Func. Count: 19, Neg. LLF: 167.9639497991768
Iteration: 3, Func. Count: 28, Neg. LLF: 154.71115113442343
Iteration: 4, Func. Count: 36, Neg. LLF: 154.57736770163677
Iteration: 5, Func. Count: 44, Neg. LLF: 154.1452976014165
Iteration: 6, Func. Count: 52, Neg. LLF: 153.99455678723058
Iteration: 7, Func. Count: 60, Neg. LLF: 153.86993032365962
Iteration: 8, Func. Count: 68, Neg. LLF: 153.85106607569008
Iteration: 9, Func. Count: 76, Neg. LLF: 153.85056743393832
Iteration: 10, Func. Count: 83, Neg. LLF: 153.85056743346064
Optimization terminated successfully (Exit mode 0)
Current function value: 153.85056743393832
Iterations: 10
Function evaluations: 83
Gradient evaluations: 10
Iteration: 1, Func. Count: 10, Neg. LLF: 512.3781277224712
Iteration: 2, Func. Count: 21, Neg. LLF: 162.2934946284945
Iteration: 3, Func. Count: 32, Neg. LLF: 169.42285984560368
Iteration: 4, Func. Count: 42, Neg. LLF: 154.43463049841088
Iteration: 5, Func. Count: 51, Neg. LLF: 153.93379950935426
Iteration: 6, Func. Count: 60, Neg. LLF: 153.6454692217907
Iteration: 7, Func. Count: 69, Neg. LLF: 160.78315597823823
Iteration: 8, Func. Count: 81, Neg. LLF: 153.32365569398647
Iteration: 9, Func. Count: 90, Neg. LLF: 153.29585361247916
Iteration: 10, Func. Count: 100, Neg. LLF: 153.16103808950083
Iteration: 11, Func. Count: 109, Neg. LLF: 153.08070466459333
Iteration: 12, Func. Count: 118, Neg. LLF: 152.99757327801595
Iteration: 13, Func. Count: 127, Neg. LLF: 152.92688531858758
Iteration: 14, Func. Count: 136, Neg. LLF: 152.89896594455382
Iteration: 15, Func. Count: 145, Neg. LLF: 152.886945917199
Iteration: 16, Func. Count: 154, Neg. LLF: 152.87929239950435
Iteration: 17, Func. Count: 163, Neg. LLF: 152.8764434224602
Iteration: 18, Func. Count: 172, Neg. LLF: 152.8760846544127
Iteration: 19, Func. Count: 181, Neg. LLF: 152.8760625476949
Iteration: 20, Func. Count: 190, Neg. LLF: 152.8760601210895
Iteration: 21, Func. Count: 199, Neg. LLF: 152.87605876287918
Iteration: 22, Func. Count: 207, Neg. LLF: 152.87605876280634
Optimization terminated successfully (Exit mode 0)
Current function value: 152.87605876287918
Iterations: 22
Function evaluations: 207
Gradient evaluations: 22
Iteration: 1, Func. Count: 11, Neg. LLF: 534.4608692598293
Iteration: 2, Func. Count: 23, Neg. LLF: 162.34288204687826
Iteration: 3, Func. Count: 34, Neg. LLF: 154.017840238831
Iteration: 4, Func. Count: 44, Neg. LLF: 153.98574995149022
Iteration: 5, Func. Count: 55, Neg. LLF: 153.786625938294
Iteration: 6, Func. Count: 65, Neg. LLF: 153.69653360901137
Iteration: 7, Func. Count: 75, Neg. LLF: 153.69493555780875
Iteration: 8, Func. Count: 86, Neg. LLF: 153.6874112532502
Iteration: 9, Func. Count: 96, Neg. LLF: 153.68719079287985
Iteration: 10, Func. Count: 106, Neg. LLF: 153.68718900553628
Iteration: 11, Func. Count: 115, Neg. LLF: 153.68718900550286
Optimization terminated successfully (Exit mode 0)
Current function value: 153.68718900553628
Iterations: 11
Function evaluations: 115
Gradient evaluations: 11
Iteration: 1, Func. Count: 12, Neg. LLF: 186.4751168732675
Iteration: 2, Func. Count: 25, Neg. LLF: 160.13627458438847
Iteration: 3, Func. Count: 38, Neg. LLF: 155.87170142395232
Iteration: 4, Func. Count: 50, Neg. LLF: 153.79153071889783
Iteration: 5, Func. Count: 61, Neg. LLF: 153.87529360713438
Iteration: 6, Func. Count: 73, Neg. LLF: 153.46630881695108
Iteration: 7, Func. Count: 84, Neg. LLF: 153.30606315226441
Iteration: 8, Func. Count: 95, Neg. LLF: 153.22514410611538
Iteration: 9, Func. Count: 106, Neg. LLF: 153.13892321777791
Iteration: 10, Func. Count: 117, Neg. LLF: 153.09655641752477
Iteration: 11, Func. Count: 128, Neg. LLF: 153.0419783791086
Iteration: 12, Func. Count: 139, Neg. LLF: 152.99554357563434
Iteration: 13, Func. Count: 150, Neg. LLF: 152.97131169748147
Iteration: 14, Func. Count: 161, Neg. LLF: 152.96020766381744
Iteration: 15, Func. Count: 172, Neg. LLF: 152.95509987434153
Iteration: 16, Func. Count: 183, Neg. LLF: 152.95055075248177
Iteration: 17, Func. Count: 194, Neg. LLF: 152.8804840693628
Iteration: 18, Func. Count: 205, Neg. LLF: 152.87789038850866
Iteration: 19, Func. Count: 216, Neg. LLF: 152.87608621556248
Iteration: 20, Func. Count: 227, Neg. LLF: 152.87607288192677
Iteration: 21, Func. Count: 238, Neg. LLF: 152.87608171888752
Optimization terminated successfully (Exit mode 0)
Current function value: 152.87607233745118
Iterations: 21
Function evaluations: 239
Gradient evaluations: 21
Iteration: 1, Func. Count: 9, Neg. LLF: 158.87259186299835
Iteration: 2, Func. Count: 18, Neg. LLF: 157.71893687387094
Iteration: 3, Func. Count: 28, Neg. LLF: 155.81761012114188
Iteration: 4, Func. Count: 37, Neg. LLF: 154.63266037352562
Iteration: 5, Func. Count: 45, Neg. LLF: 156.95925384350264
Iteration: 6, Func. Count: 54, Neg. LLF: 154.3000543138188
Iteration: 7, Func. Count: 62, Neg. LLF: 154.20040989438212
Iteration: 8, Func. Count: 70, Neg. LLF: 154.16909272386215
Iteration: 9, Func. Count: 78, Neg. LLF: 154.15871996353107
Iteration: 10, Func. Count: 86, Neg. LLF: 154.14917559897356
Iteration: 11, Func. Count: 94, Neg. LLF: 154.12581185732685
Iteration: 12, Func. Count: 102, Neg. LLF: 154.12194352952014
Iteration: 13, Func. Count: 110, Neg. LLF: 154.12146552679755
Iteration: 14, Func. Count: 118, Neg. LLF: 154.1214572886354
Iteration: 15, Func. Count: 125, Neg. LLF: 154.12145728859159
Optimization terminated successfully (Exit mode 0)
Current function value: 154.1214572886354
Iterations: 15
Function evaluations: 125
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 464.5848326642229
Iteration: 2, Func. Count: 21, Neg. LLF: 235.48243142855384
Iteration: 3, Func. Count: 32, Neg. LLF: 154.71043126818546
Iteration: 4, Func. Count: 41, Neg. LLF: 154.68076119043167
Iteration: 5, Func. Count: 50, Neg. LLF: 154.52473595200323
Iteration: 6, Func. Count: 59, Neg. LLF: 154.02697374424156
Iteration: 7, Func. Count: 68, Neg. LLF: 153.88285057979607
Iteration: 8, Func. Count: 77, Neg. LLF: 154.27558617868888
Iteration: 9, Func. Count: 87, Neg. LLF: 153.85113482624985
Iteration: 10, Func. Count: 96, Neg. LLF: 153.85056678893616
Iteration: 11, Func. Count: 104, Neg. LLF: 153.85056678991816
Optimization terminated successfully (Exit mode 0)
Current function value: 153.85056678893616
Iterations: 11
Function evaluations: 104
Gradient evaluations: 11
Iteration: 1, Func. Count: 11, Neg. LLF: 515.817945881722
Iteration: 2, Func. Count: 23, Neg. LLF: 172.83157674414093
Iteration: 3, Func. Count: 34, Neg. LLF: 154.0441463036208
Iteration: 4, Func. Count: 44, Neg. LLF: 154.55704894337353
Iteration: 5, Func. Count: 56, Neg. LLF: 153.64670195483453
Iteration: 6, Func. Count: 66, Neg. LLF: 152.95362939898493
Iteration: 7, Func. Count: 76, Neg. LLF: 153.05306213016945
Iteration: 8, Func. Count: 87, Neg. LLF: 152.81802978298026
Iteration: 9, Func. Count: 97, Neg. LLF: 152.77882145264175
Iteration: 10, Func. Count: 107, Neg. LLF: 152.7676548187424
Iteration: 11, Func. Count: 117, Neg. LLF: 152.74945448592177
Iteration: 12, Func. Count: 127, Neg. LLF: 152.74650641546376
Iteration: 13, Func. Count: 137, Neg. LLF: 152.74521006284434
Iteration: 14, Func. Count: 147, Neg. LLF: 152.7449567798217
Iteration: 15, Func. Count: 157, Neg. LLF: 152.74484918498894
Iteration: 16, Func. Count: 167, Neg. LLF: 152.74484788822656
Iteration: 17, Func. Count: 176, Neg. LLF: 152.74484788833087
Optimization terminated successfully (Exit mode 0)
Current function value: 152.74484788822656
Iterations: 17
Function evaluations: 176
Gradient evaluations: 17
Iteration: 1, Func. Count: 12, Neg. LLF: 536.9654840316254
Iteration: 2, Func. Count: 25, Neg. LLF: 164.7271045834387
Iteration: 3, Func. Count: 37, Neg. LLF: 154.17931695327314
Iteration: 4, Func. Count: 48, Neg. LLF: 153.95722826121482
Iteration: 5, Func. Count: 59, Neg. LLF: 153.7806639408884
Iteration: 6, Func. Count: 70, Neg. LLF: 153.69534568148325
Iteration: 7, Func. Count: 81, Neg. LLF: 153.6898337487515
Iteration: 8, Func. Count: 92, Neg. LLF: 153.687484027401
Iteration: 9, Func. Count: 103, Neg. LLF: 153.68719115214407
Iteration: 10, Func. Count: 114, Neg. LLF: 153.6871890270053
Iteration: 11, Func. Count: 124, Neg. LLF: 153.68718902687897
Optimization terminated successfully (Exit mode 0)
Current function value: 153.6871890270053
Iterations: 11
Function evaluations: 124
Gradient evaluations: 11
Iteration: 1, Func. Count: 13, Neg. LLF: 165.23062654097023
Iteration: 2, Func. Count: 26, Neg. LLF: 157.94594502458474
Iteration: 3, Func. Count: 39, Neg. LLF: 155.88752851100895
Iteration: 4, Func. Count: 52, Neg. LLF: 154.198759435047
Iteration: 5, Func. Count: 65, Neg. LLF: 161.1343004164339
Iteration: 6, Func. Count: 78, Neg. LLF: 152.88279820362192
Iteration: 7, Func. Count: 90, Neg. LLF: 153.30391318743497
Iteration: 8, Func. Count: 103, Neg. LLF: 152.8380122563789
Iteration: 9, Func. Count: 115, Neg. LLF: 152.7957185299984
Iteration: 10, Func. Count: 127, Neg. LLF: 152.78022694584791
Iteration: 11, Func. Count: 139, Neg. LLF: 152.75117235778322
Iteration: 12, Func. Count: 151, Neg. LLF: 152.7306294474723
Iteration: 13, Func. Count: 163, Neg. LLF: 152.71763729414207
Iteration: 14, Func. Count: 175, Neg. LLF: 152.69280445495173
Iteration: 15, Func. Count: 187, Neg. LLF: 152.67851605927095
Iteration: 16, Func. Count: 199, Neg. LLF: 152.6747472532428
Iteration: 17, Func. Count: 211, Neg. LLF: 152.67465213690895
Iteration: 18, Func. Count: 223, Neg. LLF: 152.67464879082394
Iteration: 19, Func. Count: 234, Neg. LLF: 152.67464879091435
Optimization terminated successfully (Exit mode 0)
Current function value: 152.67464879082394
Iterations: 19
Function evaluations: 234
Gradient evaluations: 19
Iteration: 1, Func. Count: 10, Neg. LLF: 158.66040585631396
Iteration: 2, Func. Count: 20, Neg. LLF: 157.53823512535513
Iteration: 3, Func. Count: 31, Neg. LLF: 157.98598741950119
Iteration: 4, Func. Count: 42, Neg. LLF: 155.31673009971564
Iteration: 5, Func. Count: 51, Neg. LLF: 155.1728636368702
Iteration: 6, Func. Count: 61, Neg. LLF: 165.25945706132453
Iteration: 7, Func. Count: 71, Neg. LLF: 153.98516314096517
Iteration: 8, Func. Count: 80, Neg. LLF: 153.90807943677373
Iteration: 9, Func. Count: 89, Neg. LLF: 153.89611234983096
Iteration: 10, Func. Count: 98, Neg. LLF: 153.89504186337095
Iteration: 11, Func. Count: 107, Neg. LLF: 153.8944432045653
Iteration: 12, Func. Count: 116, Neg. LLF: 153.89391146688726
Iteration: 13, Func. Count: 125, Neg. LLF: 153.89233788634237
Iteration: 14, Func. Count: 134, Neg. LLF: 153.89129511473675
Iteration: 15, Func. Count: 143, Neg. LLF: 153.89087061418516
Iteration: 16, Func. Count: 152, Neg. LLF: 153.89081332594284
Iteration: 17, Func. Count: 161, Neg. LLF: 153.89081123025733
Iteration: 18, Func. Count: 169, Neg. LLF: 153.89081107312978
Optimization terminated successfully (Exit mode 0)
Current function value: 153.89081123025733
Iterations: 18
Function evaluations: 169
Gradient evaluations: 18
Iteration: 1, Func. Count: 11, Neg. LLF: 464.5186509445011
Iteration: 2, Func. Count: 23, Neg. LLF: 232.9932078752078
Iteration: 3, Func. Count: 35, Neg. LLF: 154.70741449548507
Iteration: 4, Func. Count: 45, Neg. LLF: 154.6762769320469
Iteration: 5, Func. Count: 55, Neg. LLF: 154.49991820211196
Iteration: 6, Func. Count: 65, Neg. LLF: 153.9443067016848
Iteration: 7, Func. Count: 75, Neg. LLF: 153.87678746023659
Iteration: 8, Func. Count: 85, Neg. LLF: 154.05140234055176
Iteration: 9, Func. Count: 96, Neg. LLF: 153.85057341376995
Iteration: 10, Func. Count: 106, Neg. LLF: 153.85056667981803
Iteration: 11, Func. Count: 115, Neg. LLF: 153.8505666798742
Optimization terminated successfully (Exit mode 0)
Current function value: 153.85056667981803
Iterations: 11
Function evaluations: 115
Gradient evaluations: 11
Iteration: 1, Func. Count: 12, Neg. LLF: 514.8594902210705
Iteration: 2, Func. Count: 25, Neg. LLF: 172.5402315432315
Iteration: 3, Func. Count: 37, Neg. LLF: 154.0471544050496
Iteration: 4, Func. Count: 48, Neg. LLF: 154.56124520035735
Iteration: 5, Func. Count: 61, Neg. LLF: 153.64150005244386
Iteration: 6, Func. Count: 72, Neg. LLF: 152.95069946828337
Iteration: 7, Func. Count: 83, Neg. LLF: 153.0744014335247
Iteration: 8, Func. Count: 95, Neg. LLF: 152.81350707995588
Iteration: 9, Func. Count: 106, Neg. LLF: 152.77628342280897
Iteration: 10, Func. Count: 117, Neg. LLF: 152.75924809511852
Iteration: 11, Func. Count: 128, Neg. LLF: 152.7481402849178
Iteration: 12, Func. Count: 139, Neg. LLF: 152.7456745355636
Iteration: 13, Func. Count: 150, Neg. LLF: 152.74516509224242
Iteration: 14, Func. Count: 161, Neg. LLF: 152.74486745587373
Iteration: 15, Func. Count: 172, Neg. LLF: 152.74484862972142
Iteration: 16, Func. Count: 183, Neg. LLF: 152.74484793805271
Optimization terminated successfully (Exit mode 0)
Current function value: 152.74484793805271
Iterations: 16
Function evaluations: 183
Gradient evaluations: 16
Iteration: 1, Func. Count: 13, Neg. LLF: 536.083997757528
Iteration: 2, Func. Count: 27, Neg. LLF: 164.58031139790594
Iteration: 3, Func. Count: 40, Neg. LLF: 154.1658144398718
Iteration: 4, Func. Count: 52, Neg. LLF: 153.9395484447811
Iteration: 5, Func. Count: 64, Neg. LLF: 153.75656015168505
Iteration: 6, Func. Count: 76, Neg. LLF: 153.6977274129267
Iteration: 7, Func. Count: 88, Neg. LLF: 153.6900149850364
Iteration: 8, Func. Count: 100, Neg. LLF: 153.69184398299726
Iteration: 9, Func. Count: 113, Neg. LLF: 153.6871899090559
Iteration: 10, Func. Count: 125, Neg. LLF: 153.6871890227091
Optimization terminated successfully (Exit mode 0)
Current function value: 153.6871890227091
Iterations: 10
Function evaluations: 125
Gradient evaluations: 10
Iteration: 1, Func. Count: 14, Neg. LLF: 165.1449308523154
Iteration: 2, Func. Count: 28, Neg. LLF: 157.97628215444485
Iteration: 3, Func. Count: 42, Neg. LLF: 155.9821551218319
Iteration: 4, Func. Count: 56, Neg. LLF: 154.33599710694656
Iteration: 5, Func. Count: 70, Neg. LLF: 159.47709022796406
Iteration: 6, Func. Count: 84, Neg. LLF: 152.8079220230676
Iteration: 7, Func. Count: 97, Neg. LLF: 155.223575234495
Iteration: 8, Func. Count: 111, Neg. LLF: 152.77804732616426
Iteration: 9, Func. Count: 124, Neg. LLF: 152.76404609154986
Iteration: 10, Func. Count: 137, Neg. LLF: 152.72502573430293
Iteration: 11, Func. Count: 150, Neg. LLF: 152.67421762702457
Iteration: 12, Func. Count: 163, Neg. LLF: 152.63425134691155
Iteration: 13, Func. Count: 176, Neg. LLF: 152.61590882475136
Iteration: 14, Func. Count: 189, Neg. LLF: 152.60564337416952
Iteration: 15, Func. Count: 202, Neg. LLF: 152.5894703303517
Iteration: 16, Func. Count: 215, Neg. LLF: 152.5743554854158
Iteration: 17, Func. Count: 228, Neg. LLF: 152.56516573187596
Iteration: 18, Func. Count: 241, Neg. LLF: 152.56306405094463
Iteration: 19, Func. Count: 254, Neg. LLF: 152.56300800794853
Iteration: 20, Func. Count: 267, Neg. LLF: 152.56300429457792
Iteration: 21, Func. Count: 279, Neg. LLF: 152.56300429463553
Optimization terminated successfully (Exit mode 0)
Current function value: 152.56300429457792
Iterations: 21
Function evaluations: 279
Gradient evaluations: 21
Iteration: 1, Func. Count: 11, Neg. LLF: 158.35958298065597
Iteration: 2, Func. Count: 22, Neg. LLF: 157.4460958062877
Iteration: 3, Func. Count: 33, Neg. LLF: 157.7498917328015
Iteration: 4, Func. Count: 45, Neg. LLF: 156.5501854235701
Iteration: 5, Func. Count: 56, Neg. LLF: 155.01975067070376
Iteration: 6, Func. Count: 67, Neg. LLF: 153.63473717038713
Iteration: 7, Func. Count: 77, Neg. LLF: 153.44717059308852
Iteration: 8, Func. Count: 87, Neg. LLF: 153.68242090788806
Iteration: 9, Func. Count: 98, Neg. LLF: 153.44479583801441
Iteration: 10, Func. Count: 109, Neg. LLF: 153.42523883998845
Iteration: 11, Func. Count: 119, Neg. LLF: 153.42129645987168
Iteration: 12, Func. Count: 129, Neg. LLF: 153.40770852583623
Iteration: 13, Func. Count: 139, Neg. LLF: 153.40371832518238
Iteration: 14, Func. Count: 149, Neg. LLF: 153.40234709924223
Iteration: 15, Func. Count: 159, Neg. LLF: 153.4022254958811
Iteration: 16, Func. Count: 169, Neg. LLF: 153.40222101643892
Iteration: 17, Func. Count: 178, Neg. LLF: 153.40222101643732
Optimization terminated successfully (Exit mode 0)
Current function value: 153.40222101643892
Iterations: 17
Function evaluations: 178
Gradient evaluations: 17
Iteration: 1, Func. Count: 12, Neg. LLF: 466.20611892040347
Iteration: 2, Func. Count: 25, Neg. LLF: 230.74970122083405
Iteration: 3, Func. Count: 38, Neg. LLF: 154.70525415067348
Iteration: 4, Func. Count: 49, Neg. LLF: 154.67358257994536
Iteration: 5, Func. Count: 60, Neg. LLF: 154.47488707889988
Iteration: 6, Func. Count: 71, Neg. LLF: 153.94022619109123
Iteration: 7, Func. Count: 82, Neg. LLF: 153.85555780274404
Iteration: 8, Func. Count: 93, Neg. LLF: 153.85470283615152
Iteration: 9, Func. Count: 105, Neg. LLF: 153.85056839604275
Iteration: 10, Func. Count: 116, Neg. LLF: 153.8505666826687
Iteration: 11, Func. Count: 126, Neg. LLF: 153.85056668268012
Optimization terminated successfully (Exit mode 0)
Current function value: 153.8505666826687
Iterations: 11
Function evaluations: 126
Gradient evaluations: 11
Iteration: 1, Func. Count: 13, Neg. LLF: 516.7727511754748
Iteration: 2, Func. Count: 27, Neg. LLF: 172.1961720537188
Iteration: 3, Func. Count: 40, Neg. LLF: 154.05783006110207
Iteration: 4, Func. Count: 52, Neg. LLF: 154.82743459801486
Iteration: 5, Func. Count: 66, Neg. LLF: 153.34630158934408
Iteration: 6, Func. Count: 78, Neg. LLF: 152.68935541724517
Iteration: 7, Func. Count: 90, Neg. LLF: 152.92348134723247
Iteration: 8, Func. Count: 103, Neg. LLF: 152.56004236645163
Iteration: 9, Func. Count: 115, Neg. LLF: 152.9805974821044
Iteration: 10, Func. Count: 128, Neg. LLF: 152.49597564692118
Iteration: 11, Func. Count: 140, Neg. LLF: 152.49192997164292
Iteration: 12, Func. Count: 152, Neg. LLF: 152.49137945701162
Iteration: 13, Func. Count: 164, Neg. LLF: 152.4913554664653
Iteration: 14, Func. Count: 175, Neg. LLF: 152.49135546611998
Optimization terminated successfully (Exit mode 0)
Current function value: 152.4913554664653
Iterations: 14
Function evaluations: 175
Gradient evaluations: 14
Iteration: 1, Func. Count: 14, Neg. LLF: 537.2405250777118
Iteration: 2, Func. Count: 29, Neg. LLF: 164.0307644882745
Iteration: 3, Func. Count: 43, Neg. LLF: 154.1533464218689
Iteration: 4, Func. Count: 56, Neg. LLF: 153.91974778730406
Iteration: 5, Func. Count: 69, Neg. LLF: 153.7680405517204
Iteration: 6, Func. Count: 82, Neg. LLF: 153.71721359576202
Iteration: 7, Func. Count: 95, Neg. LLF: 153.71438900509648
Iteration: 8, Func. Count: 109, Neg. LLF: 153.68771819789504
Iteration: 9, Func. Count: 122, Neg. LLF: 153.6871911626859
Iteration: 10, Func. Count: 135, Neg. LLF: 153.6871890147511
Iteration: 11, Func. Count: 147, Neg. LLF: 153.6871890146921
Optimization terminated successfully (Exit mode 0)
Current function value: 153.6871890147511
Iterations: 11
Function evaluations: 147
Gradient evaluations: 11
Iteration: 1, Func. Count: 15, Neg. LLF: 165.48505116549782
Iteration: 2, Func. Count: 30, Neg. LLF: 158.5960452761175
Iteration: 3, Func. Count: 45, Neg. LLF: 158.79876457579556
Iteration: 4, Func. Count: 61, Neg. LLF: 161.15801341722096
Iteration: 5, Func. Count: 76, Neg. LLF: 153.26969370120418
Iteration: 6, Func. Count: 90, Neg. LLF: 152.94538402980254
Iteration: 7, Func. Count: 105, Neg. LLF: 152.88960231181449
Iteration: 8, Func. Count: 120, Neg. LLF: 152.22736509465471
Iteration: 9, Func. Count: 134, Neg. LLF: 152.18748724755193
Iteration: 10, Func. Count: 148, Neg. LLF: 152.15686197628077
Iteration: 11, Func. Count: 162, Neg. LLF: 152.11501878633732
Iteration: 12, Func. Count: 176, Neg. LLF: 152.10443079721992
Iteration: 13, Func. Count: 190, Neg. LLF: 152.0951129916021
Iteration: 14, Func. Count: 204, Neg. LLF: 152.08827021315602
Iteration: 15, Func. Count: 218, Neg. LLF: 152.0812796962642
Iteration: 16, Func. Count: 232, Neg. LLF: 152.0774406773046
Iteration: 17, Func. Count: 246, Neg. LLF: 152.07665021443253
Iteration: 18, Func. Count: 260, Neg. LLF: 152.07652167309195
Iteration: 19, Func. Count: 274, Neg. LLF: 152.07651089199186
Iteration: 20, Func. Count: 288, Neg. LLF: 152.0765099981043
Optimization terminated successfully (Exit mode 0)
Current function value: 152.0765099981043
Iterations: 20
Function evaluations: 288
Gradient evaluations: 20
Iteration: 1, Func. Count: 8, Neg. LLF: 157.24282271943224
Iteration: 2, Func. Count: 16, Neg. LLF: 156.93991164604958
Iteration: 3, Func. Count: 24, Neg. LLF: 155.0523420205185
Iteration: 4, Func. Count: 31, Neg. LLF: 155.12332321013315
Iteration: 5, Func. Count: 39, Neg. LLF: 155.88373570650344
Iteration: 6, Func. Count: 47, Neg. LLF: 154.9338783407428
Iteration: 7, Func. Count: 54, Neg. LLF: 154.93030065029282
Iteration: 8, Func. Count: 61, Neg. LLF: 154.92251238388064
Iteration: 9, Func. Count: 68, Neg. LLF: 154.91902873411584
Iteration: 10, Func. Count: 75, Neg. LLF: 154.9006080987539
Iteration: 11, Func. Count: 82, Neg. LLF: 154.88102520819334
Iteration: 12, Func. Count: 89, Neg. LLF: 154.86987104036388
Iteration: 13, Func. Count: 96, Neg. LLF: 154.86901580540726
Iteration: 14, Func. Count: 103, Neg. LLF: 154.86900058938173
Iteration: 15, Func. Count: 109, Neg. LLF: 154.86900058935663
Optimization terminated successfully (Exit mode 0)
Current function value: 154.86900058938173
Iterations: 15
Function evaluations: 109
Gradient evaluations: 15
Iteration: 1, Func. Count: 9, Neg. LLF: 485.7244129013456
Iteration: 2, Func. Count: 19, Neg. LLF: 221.8383452257992
Iteration: 3, Func. Count: 29, Neg. LLF: 154.69861999301776
Iteration: 4, Func. Count: 37, Neg. LLF: 154.1522522751641
Iteration: 5, Func. Count: 45, Neg. LLF: 154.02525384606716
Iteration: 6, Func. Count: 53, Neg. LLF: 153.8698677536314
Iteration: 7, Func. Count: 61, Neg. LLF: 153.85084548945613
Iteration: 8, Func. Count: 69, Neg. LLF: 153.85056783219974
Iteration: 9, Func. Count: 77, Neg. LLF: 153.85056667344446
Iteration: 10, Func. Count: 84, Neg. LLF: 153.8505666734544
Optimization terminated successfully (Exit mode 0)
Current function value: 153.85056667344446
Iterations: 10
Function evaluations: 84
Gradient evaluations: 10
Iteration: 1, Func. Count: 10, Neg. LLF: 540.4855911910395
Iteration: 2, Func. Count: 21, Neg. LLF: 5778.947682123205
Iteration: 3, Func. Count: 32, Neg. LLF: 152.78585399499852
Iteration: 4, Func. Count: 41, Neg. LLF: 152.7321611446326
Iteration: 5, Func. Count: 50, Neg. LLF: 152.5509344175112
Iteration: 6, Func. Count: 59, Neg. LLF: 152.54827130006143
Iteration: 7, Func. Count: 68, Neg. LLF: 152.5480041390254
Iteration: 8, Func. Count: 77, Neg. LLF: 154.47300222313996
Iteration: 9, Func. Count: 88, Neg. LLF: 152.5830290363858
Iteration: 10, Func. Count: 99, Neg. LLF: 152.54758065967383
Iteration: 11, Func. Count: 108, Neg. LLF: 152.54758526333518
Iteration: 12, Func. Count: 117, Neg. LLF: 152.54757913740804
Optimization terminated successfully (Exit mode 0)
Current function value: 152.5475791372566
Iterations: 13
Function evaluations: 117
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 558.2269618137965
Iteration: 2, Func. Count: 23, Neg. LLF: 158.82205538766388
Iteration: 3, Func. Count: 35, Neg. LLF: 154.9279292079687
Iteration: 4, Func. Count: 46, Neg. LLF: 154.25404092972872
Iteration: 5, Func. Count: 56, Neg. LLF: 153.8705888436839
Iteration: 6, Func. Count: 66, Neg. LLF: 154.71407393291938
Iteration: 7, Func. Count: 77, Neg. LLF: 155.1034232298376
Iteration: 8, Func. Count: 88, Neg. LLF: 155.22895402026555
Iteration: 9, Func. Count: 99, Neg. LLF: 154.3775958922331
Iteration: 10, Func. Count: 110, Neg. LLF: 21914747.431946214
Iteration: 11, Func. Count: 123, Neg. LLF: 154.3086988377416
Iteration: 12, Func. Count: 134, Neg. LLF: 154.20319583166767
Iteration: 13, Func. Count: 145, Neg. LLF: 156.43762604479076
Iteration: 14, Func. Count: 156, Neg. LLF: 154.1939702754947
Iteration: 15, Func. Count: 167, Neg. LLF: 153.21104521618463
Iteration: 16, Func. Count: 178, Neg. LLF: 153.218124407644
Iteration: 17, Func. Count: 189, Neg. LLF: 152.9342226513993
Iteration: 18, Func. Count: 199, Neg. LLF: 152.5531374472146
Iteration: 19, Func. Count: 209, Neg. LLF: 152.54837201382773
Iteration: 20, Func. Count: 219, Neg. LLF: 152.6162393575063
Iteration: 21, Func. Count: 231, Neg. LLF: 152.54775807711556
Iteration: 22, Func. Count: 241, Neg. LLF: 152.5477168027156
Iteration: 23, Func. Count: 251, Neg. LLF: 152.5476226830665
Iteration: 24, Func. Count: 261, Neg. LLF: 152.54759141932186
Iteration: 25, Func. Count: 271, Neg. LLF: 152.5475813717417
Iteration: 26, Func. Count: 281, Neg. LLF: 152.54757948155287
Iteration: 27, Func. Count: 291, Neg. LLF: 152.54757861385437
Optimization terminated successfully (Exit mode 0)
Current function value: 152.54757861385437
Iterations: 28
Function evaluations: 291
Gradient evaluations: 27
Iteration: 1, Func. Count: 12, Neg. LLF: 457.29852102181957
Iteration: 2, Func. Count: 25, Neg. LLF: 165.19760664733403
Iteration: 3, Func. Count: 38, Neg. LLF: 153.1444165949082
Iteration: 4, Func. Count: 49, Neg. LLF: 154.67682633565545
Iteration: 5, Func. Count: 61, Neg. LLF: 153.3569772654712
Iteration: 6, Func. Count: 73, Neg. LLF: 153.09634463291596
Iteration: 7, Func. Count: 85, Neg. LLF: 152.92378119724964
Iteration: 8, Func. Count: 96, Neg. LLF: 152.8874984345512
Iteration: 9, Func. Count: 107, Neg. LLF: 152.87039112848896
Iteration: 10, Func. Count: 118, Neg. LLF: 152.8679311606928
Iteration: 11, Func. Count: 129, Neg. LLF: 152.86401272939207
Iteration: 12, Func. Count: 140, Neg. LLF: 152.86346235809543
Iteration: 13, Func. Count: 151, Neg. LLF: 152.86343187150183
Iteration: 14, Func. Count: 162, Neg. LLF: 152.86342806142355
Iteration: 15, Func. Count: 173, Neg. LLF: 152.86342598798694
Iteration: 16, Func. Count: 184, Neg. LLF: 152.86342498354205
Iteration: 17, Func. Count: 194, Neg. LLF: 152.86342498349688
Optimization terminated successfully (Exit mode 0)
Current function value: 152.86342498354205
Iterations: 17
Function evaluations: 194
Gradient evaluations: 17
Iteration: 1, Func. Count: 9, Neg. LLF: 157.39633758114957
Iteration: 2, Func. Count: 18, Neg. LLF: 158.88959807540127
Iteration: 3, Func. Count: 28, Neg. LLF: 155.2175831765593
Iteration: 4, Func. Count: 36, Neg. LLF: 155.11796416243706
Iteration: 5, Func. Count: 44, Neg. LLF: 170.50683791399405
Iteration: 6, Func. Count: 54, Neg. LLF: 154.8310158631966
Iteration: 7, Func. Count: 62, Neg. LLF: 154.8088702712191
Iteration: 8, Func. Count: 70, Neg. LLF: 154.8061481367667
Iteration: 9, Func. Count: 78, Neg. LLF: 154.80530732620548
Iteration: 10, Func. Count: 86, Neg. LLF: 154.80505439238007
Iteration: 11, Func. Count: 94, Neg. LLF: 154.80497525819885
Iteration: 12, Func. Count: 102, Neg. LLF: 154.804636510557
Iteration: 13, Func. Count: 110, Neg. LLF: 154.8043288469364
Iteration: 14, Func. Count: 118, Neg. LLF: 154.80382919533315
Iteration: 15, Func. Count: 126, Neg. LLF: 154.80331116871847
Iteration: 16, Func. Count: 134, Neg. LLF: 154.80292261223167
Iteration: 17, Func. Count: 142, Neg. LLF: 154.80279611675965
Iteration: 18, Func. Count: 150, Neg. LLF: 154.8027782918074
Iteration: 19, Func. Count: 158, Neg. LLF: 154.80277727216583
Iteration: 20, Func. Count: 165, Neg. LLF: 154.8027772524102
Optimization terminated successfully (Exit mode 0)
Current function value: 154.80277727216583
Iterations: 20
Function evaluations: 165
Gradient evaluations: 20
Iteration: 1, Func. Count: 10, Neg. LLF: 465.8062815050209
Iteration: 2, Func. Count: 21, Neg. LLF: 177.2289483402837
Iteration: 3, Func. Count: 32, Neg. LLF: 154.712931056978
Iteration: 4, Func. Count: 41, Neg. LLF: 156.73947947125544
Iteration: 5, Func. Count: 51, Neg. LLF: 154.52403310308938
Iteration: 6, Func. Count: 60, Neg. LLF: 154.1769242295226
Iteration: 7, Func. Count: 69, Neg. LLF: 154.04904341793457
Iteration: 8, Func. Count: 78, Neg. LLF: 153.85238891330962
Iteration: 9, Func. Count: 87, Neg. LLF: 153.85092465708502
Iteration: 10, Func. Count: 96, Neg. LLF: 153.85057380719255
Iteration: 11, Func. Count: 105, Neg. LLF: 153.8505667347782
Iteration: 12, Func. Count: 113, Neg. LLF: 153.8505667348511
Optimization terminated successfully (Exit mode 0)
Current function value: 153.8505667347782
Iterations: 12
Function evaluations: 113
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 515.8595508490229
Iteration: 2, Func. Count: 23, Neg. LLF: 463.61944875976593
Iteration: 3, Func. Count: 35, Neg. LLF: 158.31906355331466
Iteration: 4, Func. Count: 47, Neg. LLF: 152.9537768710609
Iteration: 5, Func. Count: 57, Neg. LLF: 152.71452081264985
Iteration: 6, Func. Count: 67, Neg. LLF: 153.22746800922812
Iteration: 7, Func. Count: 78, Neg. LLF: 152.60598584993787
Iteration: 8, Func. Count: 88, Neg. LLF: 152.5497744751396
Iteration: 9, Func. Count: 98, Neg. LLF: 152.54836227473612
Iteration: 10, Func. Count: 108, Neg. LLF: 152.5481030854726
Iteration: 11, Func. Count: 118, Neg. LLF: 152.54759713148994
Iteration: 12, Func. Count: 128, Neg. LLF: 152.5475836221807
Iteration: 13, Func. Count: 138, Neg. LLF: 152.54757849719604
Iteration: 14, Func. Count: 147, Neg. LLF: 152.54757849716373
Optimization terminated successfully (Exit mode 0)
Current function value: 152.54757849719604
Iterations: 14
Function evaluations: 147
Gradient evaluations: 14
Iteration: 1, Func. Count: 12, Neg. LLF: 536.3180874598019
Iteration: 2, Func. Count: 25, Neg. LLF: 165.01749988936126
Iteration: 3, Func. Count: 37, Neg. LLF: 154.12407479257217
Iteration: 4, Func. Count: 48, Neg. LLF: 156.35306105600105
Iteration: 5, Func. Count: 60, Neg. LLF: 153.8820806690366
Iteration: 6, Func. Count: 71, Neg. LLF: 153.7251511550887
Iteration: 7, Func. Count: 82, Neg. LLF: 153.73822169584065
Iteration: 8, Func. Count: 94, Neg. LLF: 153.687812519134
Iteration: 9, Func. Count: 105, Neg. LLF: 153.68763450770322
Iteration: 10, Func. Count: 117, Neg. LLF: 153.6871900331909
Iteration: 11, Func. Count: 128, Neg. LLF: 153.68718903135903
Iteration: 12, Func. Count: 138, Neg. LLF: 153.68718903144227
Optimization terminated successfully (Exit mode 0)
Current function value: 153.68718903135903
Iterations: 12
Function evaluations: 138
Gradient evaluations: 12
Iteration: 1, Func. Count: 13, Neg. LLF: 447.2270183181377
Iteration: 2, Func. Count: 27, Neg. LLF: 161.71922701742662
Iteration: 3, Func. Count: 40, Neg. LLF: 158.233675997905
Iteration: 4, Func. Count: 53, Neg. LLF: 153.84060847716052
Iteration: 5, Func. Count: 65, Neg. LLF: 153.22645388193828
Iteration: 6, Func. Count: 77, Neg. LLF: 154.3133620272223
Iteration: 7, Func. Count: 90, Neg. LLF: 152.99589625668003
Iteration: 8, Func. Count: 102, Neg. LLF: 152.79885804048794
Iteration: 9, Func. Count: 114, Neg. LLF: 152.7879981972192
Iteration: 10, Func. Count: 127, Neg. LLF: 152.57715708245215
Iteration: 11, Func. Count: 139, Neg. LLF: 152.549456064201
Iteration: 12, Func. Count: 151, Neg. LLF: 152.54808906142452
Iteration: 13, Func. Count: 163, Neg. LLF: 152.54773941340918
Iteration: 14, Func. Count: 175, Neg. LLF: 152.5475900529638
Iteration: 15, Func. Count: 187, Neg. LLF: 152.54757857124542
Iteration: 16, Func. Count: 198, Neg. LLF: 152.5475785976258
Optimization terminated successfully (Exit mode 0)
Current function value: 152.54757857124542
Iterations: 16
Function evaluations: 198
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 156.95235470158818
Iteration: 2, Func. Count: 20, Neg. LLF: 157.75930238187402
Iteration: 3, Func. Count: 31, Neg. LLF: 156.6777489176213
Iteration: 4, Func. Count: 41, Neg. LLF: 154.65258612668873
Iteration: 5, Func. Count: 51, Neg. LLF: 154.46670032523423
Iteration: 6, Func. Count: 61, Neg. LLF: 154.06367248577308
Iteration: 7, Func. Count: 70, Neg. LLF: 153.96221135416874
Iteration: 8, Func. Count: 79, Neg. LLF: 153.9329677537356
Iteration: 9, Func. Count: 88, Neg. LLF: 153.91960258314546
Iteration: 10, Func. Count: 97, Neg. LLF: 153.91858491096798
Iteration: 11, Func. Count: 106, Neg. LLF: 153.91831511943568
Iteration: 12, Func. Count: 115, Neg. LLF: 153.91793447270075
Iteration: 13, Func. Count: 124, Neg. LLF: 153.91729654236133
Iteration: 14, Func. Count: 133, Neg. LLF: 153.91668535304984
Iteration: 15, Func. Count: 142, Neg. LLF: 153.9164211237482
Iteration: 16, Func. Count: 151, Neg. LLF: 153.91638040901907
Iteration: 17, Func. Count: 160, Neg. LLF: 153.916378785421
Iteration: 18, Func. Count: 168, Neg. LLF: 153.91637878541852
Optimization terminated successfully (Exit mode 0)
Current function value: 153.916378785421
Iterations: 18
Function evaluations: 168
Gradient evaluations: 18
Iteration: 1, Func. Count: 11, Neg. LLF: 467.39585644994
Iteration: 2, Func. Count: 23, Neg. LLF: 179.24773069501384
Iteration: 3, Func. Count: 35, Neg. LLF: 154.71251133496773
Iteration: 4, Func. Count: 45, Neg. LLF: 155.9770931900987
Iteration: 5, Func. Count: 56, Neg. LLF: 154.55620507820265
Iteration: 6, Func. Count: 66, Neg. LLF: 154.20418668006053
Iteration: 7, Func. Count: 76, Neg. LLF: 154.03007666519824
Iteration: 8, Func. Count: 86, Neg. LLF: 153.8752581928317
Iteration: 9, Func. Count: 96, Neg. LLF: 153.85188137560547
Iteration: 10, Func. Count: 106, Neg. LLF: 153.8505863513821
Iteration: 11, Func. Count: 116, Neg. LLF: 153.8505667998449
Iteration: 12, Func. Count: 125, Neg. LLF: 153.85056679970023
Optimization terminated successfully (Exit mode 0)
Current function value: 153.8505667998449
Iterations: 12
Function evaluations: 125
Gradient evaluations: 12
Iteration: 1, Func. Count: 12, Neg. LLF: 519.3676346866368
Iteration: 2, Func. Count: 25, Neg. LLF: 255.7760773882064
Iteration: 3, Func. Count: 37, Neg. LLF: 160.45252596016084
Iteration: 4, Func. Count: 50, Neg. LLF: 154.19963523121066
Iteration: 5, Func. Count: 61, Neg. LLF: 154.36324895863052
Iteration: 6, Func. Count: 74, Neg. LLF: 153.20163926712138
Iteration: 7, Func. Count: 85, Neg. LLF: 152.61126908075585
Iteration: 8, Func. Count: 96, Neg. LLF: 152.5647928232163
Iteration: 9, Func. Count: 107, Neg. LLF: 152.54522144487714
Iteration: 10, Func. Count: 118, Neg. LLF: 152.54207313041925
Iteration: 11, Func. Count: 129, Neg. LLF: 152.54096165188994
Iteration: 12, Func. Count: 140, Neg. LLF: 152.54069031787103
Iteration: 13, Func. Count: 151, Neg. LLF: 152.540516091237
Iteration: 14, Func. Count: 162, Neg. LLF: 152.5404332031618
Iteration: 15, Func. Count: 173, Neg. LLF: 152.54042001770222
Iteration: 16, Func. Count: 184, Neg. LLF: 152.54041946595257
Optimization terminated successfully (Exit mode 0)
Current function value: 152.54041946595257
Iterations: 16
Function evaluations: 184
Gradient evaluations: 16
Iteration: 1, Func. Count: 13, Neg. LLF: 538.8831964092533
Iteration: 2, Func. Count: 27, Neg. LLF: 162.5439336428851
Iteration: 3, Func. Count: 40, Neg. LLF: 154.1076705481977
Iteration: 4, Func. Count: 52, Neg. LLF: 156.46665239200374
Iteration: 5, Func. Count: 65, Neg. LLF: 153.92365678417096
Iteration: 6, Func. Count: 77, Neg. LLF: 153.7772397740524
Iteration: 7, Func. Count: 89, Neg. LLF: 153.70244049544718
Iteration: 8, Func. Count: 101, Neg. LLF: 153.6999573374183
Iteration: 9, Func. Count: 114, Neg. LLF: 153.68784930247654
Iteration: 10, Func. Count: 126, Neg. LLF: 153.6872665234166
Iteration: 11, Func. Count: 138, Neg. LLF: 153.68718989835162
Iteration: 12, Func. Count: 150, Neg. LLF: 153.6871889732471
Optimization terminated successfully (Exit mode 0)
Current function value: 153.6871889732471
Iterations: 12
Function evaluations: 150
Gradient evaluations: 12
Iteration: 1, Func. Count: 14, Neg. LLF: 448.421461761745
Iteration: 2, Func. Count: 29, Neg. LLF: 163.518671888633
Iteration: 3, Func. Count: 43, Neg. LLF: 154.80325333674506
Iteration: 4, Func. Count: 57, Neg. LLF: 154.22661066462544
Iteration: 5, Func. Count: 71, Neg. LLF: 153.90345541378917
Iteration: 6, Func. Count: 85, Neg. LLF: 155.28267849959337
Iteration: 7, Func. Count: 99, Neg. LLF: 152.92436130622033
Iteration: 8, Func. Count: 112, Neg. LLF: 152.76775080925324
Iteration: 9, Func. Count: 125, Neg. LLF: 152.7145181541385
Iteration: 10, Func. Count: 138, Neg. LLF: 152.70430817344757
Iteration: 11, Func. Count: 151, Neg. LLF: 152.69613541816062
Iteration: 12, Func. Count: 164, Neg. LLF: 152.68478023610967
Iteration: 13, Func. Count: 177, Neg. LLF: 152.68038642014142
Iteration: 14, Func. Count: 190, Neg. LLF: 152.6760254775933
Iteration: 15, Func. Count: 203, Neg. LLF: 152.67546654888616
Iteration: 16, Func. Count: 216, Neg. LLF: 152.67514634658625
Iteration: 17, Func. Count: 229, Neg. LLF: 152.67480911297847
Iteration: 18, Func. Count: 242, Neg. LLF: 152.67467528767423
Iteration: 19, Func. Count: 255, Neg. LLF: 152.67464999824264
Iteration: 20, Func. Count: 268, Neg. LLF: 152.67464856507615
Iteration: 21, Func. Count: 280, Neg. LLF: 152.67464856504807
Optimization terminated successfully (Exit mode 0)
Current function value: 152.67464856507615
Iterations: 21
Function evaluations: 280
Gradient evaluations: 21
Iteration: 1, Func. Count: 11, Neg. LLF: 156.56085302298084
Iteration: 2, Func. Count: 22, Neg. LLF: 157.8730135437493
Iteration: 3, Func. Count: 34, Neg. LLF: 155.86859513898875
Iteration: 4, Func. Count: 45, Neg. LLF: 154.03204593783224
Iteration: 5, Func. Count: 55, Neg. LLF: 154.51439377609827
Iteration: 6, Func. Count: 66, Neg. LLF: 154.00536396891428
Iteration: 7, Func. Count: 77, Neg. LLF: 153.93837905629246
Iteration: 8, Func. Count: 87, Neg. LLF: 153.92064277079098
Iteration: 9, Func. Count: 97, Neg. LLF: 153.91895783690003
Iteration: 10, Func. Count: 107, Neg. LLF: 153.91870184815573
Iteration: 11, Func. Count: 117, Neg. LLF: 153.9181147095017
Iteration: 12, Func. Count: 127, Neg. LLF: 153.91735487445325
Iteration: 13, Func. Count: 137, Neg. LLF: 153.91668160341126
Iteration: 14, Func. Count: 147, Neg. LLF: 153.91642240227628
Iteration: 15, Func. Count: 157, Neg. LLF: 153.91638008135598
Iteration: 16, Func. Count: 167, Neg. LLF: 153.9163787811123
Iteration: 17, Func. Count: 176, Neg. LLF: 153.9163786591297
Optimization terminated successfully (Exit mode 0)
Current function value: 153.9163787811123
Iterations: 17
Function evaluations: 176
Gradient evaluations: 17
Iteration: 1, Func. Count: 12, Neg. LLF: 467.2235574590361
Iteration: 2, Func. Count: 25, Neg. LLF: 178.60128870294525
Iteration: 3, Func. Count: 38, Neg. LLF: 154.7121266179916
Iteration: 4, Func. Count: 49, Neg. LLF: 155.91463028866016
Iteration: 5, Func. Count: 61, Neg. LLF: 154.55295959355567
Iteration: 6, Func. Count: 72, Neg. LLF: 154.1869401937994
Iteration: 7, Func. Count: 83, Neg. LLF: 154.03467237502184
Iteration: 8, Func. Count: 94, Neg. LLF: 153.8737100798756
Iteration: 9, Func. Count: 105, Neg. LLF: 153.85164897599245
Iteration: 10, Func. Count: 116, Neg. LLF: 153.8505768385138
Iteration: 11, Func. Count: 127, Neg. LLF: 153.8505667097152
Iteration: 12, Func. Count: 137, Neg. LLF: 153.85056670962453
Optimization terminated successfully (Exit mode 0)
Current function value: 153.8505667097152
Iterations: 12
Function evaluations: 137
Gradient evaluations: 12
Iteration: 1, Func. Count: 13, Neg. LLF: 518.3217354695746
Iteration: 2, Func. Count: 27, Neg. LLF: 252.17109257047557
Iteration: 3, Func. Count: 40, Neg. LLF: 160.39278497156764
Iteration: 4, Func. Count: 54, Neg. LLF: 154.20272027921402
Iteration: 5, Func. Count: 66, Neg. LLF: 154.36281116778088
Iteration: 6, Func. Count: 80, Neg. LLF: 153.21012259912655
Iteration: 7, Func. Count: 92, Neg. LLF: 152.6117334022627
Iteration: 8, Func. Count: 104, Neg. LLF: 152.5652243498743
Iteration: 9, Func. Count: 116, Neg. LLF: 152.54556150725304
Iteration: 10, Func. Count: 128, Neg. LLF: 152.5422193002239
Iteration: 11, Func. Count: 140, Neg. LLF: 152.5410032906389
Iteration: 12, Func. Count: 152, Neg. LLF: 152.54070444459143
Iteration: 13, Func. Count: 164, Neg. LLF: 152.54053199270976
Iteration: 14, Func. Count: 176, Neg. LLF: 152.54043261151273
Iteration: 15, Func. Count: 188, Neg. LLF: 152.54042000138594
Iteration: 16, Func. Count: 200, Neg. LLF: 152.54041946212647
Optimization terminated successfully (Exit mode 0)
Current function value: 152.54041946212647
Iterations: 16
Function evaluations: 200
Gradient evaluations: 16
Iteration: 1, Func. Count: 14, Neg. LLF: 537.9480096917905
Iteration: 2, Func. Count: 29, Neg. LLF: 162.4023805438181
Iteration: 3, Func. Count: 43, Neg. LLF: 154.11297616911887
Iteration: 4, Func. Count: 56, Neg. LLF: 156.45307431231737
Iteration: 5, Func. Count: 70, Neg. LLF: 153.9210584839392
Iteration: 6, Func. Count: 83, Neg. LLF: 153.83246934990407
Iteration: 7, Func. Count: 96, Neg. LLF: 153.7441796796126
Iteration: 8, Func. Count: 109, Neg. LLF: 154.70416526514785
Iteration: 9, Func. Count: 123, Neg. LLF: 153.69094117116816
Iteration: 10, Func. Count: 136, Neg. LLF: 153.68798704600235
Iteration: 11, Func. Count: 149, Neg. LLF: 153.68725266073733
Iteration: 12, Func. Count: 162, Neg. LLF: 153.68719701408403
Iteration: 13, Func. Count: 175, Neg. LLF: 153.68718910332493
Iteration: 14, Func. Count: 187, Neg. LLF: 153.6871891033315
Optimization terminated successfully (Exit mode 0)
Current function value: 153.68718910332493
Iterations: 14
Function evaluations: 187
Gradient evaluations: 14
Iteration: 1, Func. Count: 15, Neg. LLF: 447.99219261848447
Iteration: 2, Func. Count: 31, Neg. LLF: 163.47507756736582
Iteration: 3, Func. Count: 46, Neg. LLF: 154.77129799283907
Iteration: 4, Func. Count: 61, Neg. LLF: 154.16505609341425
Iteration: 5, Func. Count: 76, Neg. LLF: 155.70516352034727
Iteration: 6, Func. Count: 91, Neg. LLF: 153.72715603790232
Iteration: 7, Func. Count: 106, Neg. LLF: 152.87977750089215
Iteration: 8, Func. Count: 120, Neg. LLF: 152.76087056915225
Iteration: 9, Func. Count: 134, Neg. LLF: 152.7072996683265
Iteration: 10, Func. Count: 148, Neg. LLF: 152.69693397985526
Iteration: 11, Func. Count: 162, Neg. LLF: 152.69019144879252
Iteration: 12, Func. Count: 176, Neg. LLF: 152.66890251774774
Iteration: 13, Func. Count: 190, Neg. LLF: 152.6465825613434
Iteration: 14, Func. Count: 204, Neg. LLF: 153.32644295577364
Iteration: 15, Func. Count: 219, Neg. LLF: 152.60763087917505
Iteration: 16, Func. Count: 233, Neg. LLF: 152.58266260526298
Iteration: 17, Func. Count: 247, Neg. LLF: 152.57173988273237
Iteration: 18, Func. Count: 261, Neg. LLF: 152.56557154899656
Iteration: 19, Func. Count: 275, Neg. LLF: 152.56431959218878
Iteration: 20, Func. Count: 289, Neg. LLF: 152.5633657254324
Iteration: 21, Func. Count: 303, Neg. LLF: 152.56310660250432
Iteration: 22, Func. Count: 317, Neg. LLF: 152.56305155735149
Iteration: 23, Func. Count: 331, Neg. LLF: 152.56303792755048
Iteration: 24, Func. Count: 345, Neg. LLF: 152.56302704057882
Iteration: 25, Func. Count: 359, Neg. LLF: 152.5630164525712
Iteration: 26, Func. Count: 373, Neg. LLF: 152.5630074820201
Iteration: 27, Func. Count: 387, Neg. LLF: 152.5630044567898
Iteration: 28, Func. Count: 400, Neg. LLF: 152.563004456906
Optimization terminated successfully (Exit mode 0)
Current function value: 152.5630044567898
Iterations: 28
Function evaluations: 400
Gradient evaluations: 28
Iteration: 1, Func. Count: 12, Neg. LLF: 158.10480236926577
Iteration: 2, Func. Count: 24, Neg. LLF: 157.1702711494638
Iteration: 3, Func. Count: 37, Neg. LLF: 158.50234049429605
Iteration: 4, Func. Count: 50, Neg. LLF: 156.6263691621921
Iteration: 5, Func. Count: 62, Neg. LLF: 153.69061038858501
Iteration: 6, Func. Count: 73, Neg. LLF: 153.5127057396725
Iteration: 7, Func. Count: 84, Neg. LLF: 153.4591251639097
Iteration: 8, Func. Count: 95, Neg. LLF: 153.43769122236168
Iteration: 9, Func. Count: 106, Neg. LLF: 153.43129431772647
Iteration: 10, Func. Count: 117, Neg. LLF: 153.42924291201
Iteration: 11, Func. Count: 128, Neg. LLF: 153.42117431684167
Iteration: 12, Func. Count: 139, Neg. LLF: 153.41420026444126
Iteration: 13, Func. Count: 150, Neg. LLF: 153.4033325181964
Iteration: 14, Func. Count: 161, Neg. LLF: 153.40228304024993
Iteration: 15, Func. Count: 172, Neg. LLF: 153.40222075242167
Iteration: 16, Func. Count: 182, Neg. LLF: 153.40222075239842
Optimization terminated successfully (Exit mode 0)
Current function value: 153.40222075242167
Iterations: 16
Function evaluations: 182
Gradient evaluations: 16
Iteration: 1, Func. Count: 13, Neg. LLF: 468.8800650434034
Iteration: 2, Func. Count: 27, Neg. LLF: 241.1920386229155
Iteration: 3, Func. Count: 40, Neg. LLF: 154.53268380371293
Iteration: 4, Func. Count: 52, Neg. LLF: 154.2395185646798
Iteration: 5, Func. Count: 64, Neg. LLF: 154.20809084916218
Iteration: 6, Func. Count: 76, Neg. LLF: 154.16626986025204
Iteration: 7, Func. Count: 88, Neg. LLF: 154.141371897325
Iteration: 8, Func. Count: 100, Neg. LLF: 154.13429916625378
Iteration: 9, Func. Count: 112, Neg. LLF: 154.13301474590236
Iteration: 10, Func. Count: 124, Neg. LLF: 154.13258405131936
Iteration: 11, Func. Count: 136, Neg. LLF: 154.13185775882894
Iteration: 12, Func. Count: 148, Neg. LLF: 154.131818694318
Iteration: 13, Func. Count: 160, Neg. LLF: 154.1318166967634
Iteration: 14, Func. Count: 171, Neg. LLF: 154.13181669683402
Optimization terminated successfully (Exit mode 0)
Current function value: 154.1318166967634
Iterations: 14
Function evaluations: 171
Gradient evaluations: 14
Iteration: 1, Func. Count: 14, Neg. LLF: 520.2175532150299
Iteration: 2, Func. Count: 29, Neg. LLF: 283.2470715341129
Iteration: 3, Func. Count: 43, Neg. LLF: 154.18522649295178
Iteration: 4, Func. Count: 56, Neg. LLF: 154.0915841449714
Iteration: 5, Func. Count: 70, Neg. LLF: 152.94089197495478
Iteration: 6, Func. Count: 83, Neg. LLF: 152.75816962004404
Iteration: 7, Func. Count: 96, Neg. LLF: 153.19357386120888
Iteration: 8, Func. Count: 110, Neg. LLF: 152.7125484483488
Iteration: 9, Func. Count: 124, Neg. LLF: 152.57290394912474
Iteration: 10, Func. Count: 137, Neg. LLF: 152.5553642413713
Iteration: 11, Func. Count: 150, Neg. LLF: 152.54517728532295
Iteration: 12, Func. Count: 163, Neg. LLF: 152.54053239869685
Iteration: 13, Func. Count: 176, Neg. LLF: 152.54010083395505
Iteration: 14, Func. Count: 189, Neg. LLF: 152.53989630251334
Iteration: 15, Func. Count: 202, Neg. LLF: 152.5398350818039
Iteration: 16, Func. Count: 215, Neg. LLF: 152.53981944515135
Iteration: 17, Func. Count: 228, Neg. LLF: 152.53981871980207
Optimization terminated successfully (Exit mode 0)
Current function value: 152.53981871980207
Iterations: 17
Function evaluations: 228
Gradient evaluations: 17
Iteration: 1, Func. Count: 15, Neg. LLF: 539.0776019038384
Iteration: 2, Func. Count: 31, Neg. LLF: 178.84207324728607
Iteration: 3, Func. Count: 46, Neg. LLF: 159.9905655159305
Iteration: 4, Func. Count: 61, Neg. LLF: 159.95335745838184
Iteration: 5, Func. Count: 76, Neg. LLF: 160.23833299193927
Iteration: 6, Func. Count: 91, Neg. LLF: 186.9833091336925
Iteration: 7, Func. Count: 106, Neg. LLF: 155.68652840766902
Iteration: 8, Func. Count: 121, Neg. LLF: 154.00274216813438
Iteration: 9, Func. Count: 136, Neg. LLF: 153.67513023856196
Iteration: 10, Func. Count: 150, Neg. LLF: 153.6102613856239
Iteration: 11, Func. Count: 164, Neg. LLF: 153.5875145078328
Iteration: 12, Func. Count: 178, Neg. LLF: 153.51495960020935
Iteration: 13, Func. Count: 192, Neg. LLF: 153.50341712643535
Iteration: 14, Func. Count: 206, Neg. LLF: 153.48382014223097
Iteration: 15, Func. Count: 220, Neg. LLF: 153.02813709300838
Iteration: 16, Func. Count: 234, Neg. LLF: 153.05149569805292
Iteration: 17, Func. Count: 249, Neg. LLF: 153.14051287540622
Iteration: 18, Func. Count: 264, Neg. LLF: 152.6639381755906
Iteration: 19, Func. Count: 278, Neg. LLF: 152.55818341430142
Iteration: 20, Func. Count: 292, Neg. LLF: 152.54660648192316
Iteration: 21, Func. Count: 306, Neg. LLF: 152.54192634803508
Iteration: 22, Func. Count: 320, Neg. LLF: 152.5407418692905
Iteration: 23, Func. Count: 334, Neg. LLF: 152.54016852273287
Iteration: 24, Func. Count: 348, Neg. LLF: 152.5400670733296
Iteration: 25, Func. Count: 362, Neg. LLF: 152.53994209641482
Iteration: 26, Func. Count: 376, Neg. LLF: 152.53985341815067
Iteration: 27, Func. Count: 390, Neg. LLF: 152.53983289484842
Iteration: 28, Func. Count: 404, Neg. LLF: 152.5398206726157
Iteration: 29, Func. Count: 418, Neg. LLF: 152.55000423195185
Optimization terminated successfully (Exit mode 0)
Current function value: 152.53982063972404
Iterations: 30
Function evaluations: 421
Gradient evaluations: 29
Iteration: 1, Func. Count: 16, Neg. LLF: 448.7708769666606
Iteration: 2, Func. Count: 33, Neg. LLF: 172.64641570284886
Iteration: 3, Func. Count: 49, Neg. LLF: 154.095037648992
Iteration: 4, Func. Count: 64, Neg. LLF: 153.97772105799427
Iteration: 5, Func. Count: 80, Neg. LLF: 159.33048459222266
Iteration: 6, Func. Count: 97, Neg. LLF: 530.7594562993894
Iteration: 7, Func. Count: 114, Neg. LLF: 154.27331390666296
Iteration: 8, Func. Count: 130, Neg. LLF: 152.74021087094496
Iteration: 9, Func. Count: 145, Neg. LLF: 152.27524015266675
Iteration: 10, Func. Count: 160, Neg. LLF: 152.16625362144256
Iteration: 11, Func. Count: 175, Neg. LLF: 152.1113632565156
Iteration: 12, Func. Count: 190, Neg. LLF: 152.08266954553517
Iteration: 13, Func. Count: 205, Neg. LLF: 152.0802185668456
Iteration: 14, Func. Count: 220, Neg. LLF: 152.07911446488131
Iteration: 15, Func. Count: 235, Neg. LLF: 152.07804741350668
Iteration: 16, Func. Count: 250, Neg. LLF: 152.0771167196133
Iteration: 17, Func. Count: 265, Neg. LLF: 152.0766915598013
Iteration: 18, Func. Count: 280, Neg. LLF: 152.07654784048398
Iteration: 19, Func. Count: 295, Neg. LLF: 152.07651985231846
Iteration: 20, Func. Count: 310, Neg. LLF: 152.07651211068963
Iteration: 21, Func. Count: 325, Neg. LLF: 152.07651091571347
Iteration: 22, Func. Count: 339, Neg. LLF: 152.07651091580124
Optimization terminated successfully (Exit mode 0)
Current function value: 152.07651091571347
Iterations: 22
Function evaluations: 339
Gradient evaluations: 22
Iteration: 1, Func. Count: 6, Neg. LLF: 484.18528906379413
Iteration: 2, Func. Count: 13, Neg. LLF: 154.73791256090493
Iteration: 3, Func. Count: 18, Neg. LLF: 154.18049110134194
Iteration: 4, Func. Count: 23, Neg. LLF: 154.32131408621916
Iteration: 5, Func. Count: 29, Neg. LLF: 153.85070022797015
Iteration: 6, Func. Count: 34, Neg. LLF: 153.85056754971788
Iteration: 7, Func. Count: 39, Neg. LLF: 153.8505666738956
Optimization terminated successfully (Exit mode 0)
Current function value: 153.8505666738956
Iterations: 7
Function evaluations: 39
Gradient evaluations: 7
Iteration: 1, Func. Count: 5, Neg. LLF: 160.3045580984824
Iteration: 2, Func. Count: 10, Neg. LLF: 155.84255969919985
Iteration: 3, Func. Count: 14, Neg. LLF: 153.1999023973093
Iteration: 4, Func. Count: 18, Neg. LLF: 153.20909468516567
Iteration: 5, Func. Count: 23, Neg. LLF: 152.4563023929075
Iteration: 6, Func. Count: 27, Neg. LLF: 152.22001120070487
Iteration: 7, Func. Count: 31, Neg. LLF: 152.2155911867651
Iteration: 8, Func. Count: 35, Neg. LLF: 152.2144970651529
Iteration: 9, Func. Count: 39, Neg. LLF: 152.21449476066286
Iteration: 10, Func. Count: 42, Neg. LLF: 152.21449477612984
Optimization terminated successfully (Exit mode 0)
Current function value: 152.21449476066286
Iterations: 10
Function evaluations: 42
Gradient evaluations: 10
Iteration: 1, Func. Count: 6, Neg. LLF: 557.7827475369281
Iteration: 2, Func. Count: 13, Neg. LLF: 151.45472228264148
Iteration: 3, Func. Count: 18, Neg. LLF: 150.92976262125043
Iteration: 4, Func. Count: 23, Neg. LLF: 151.86161869888537
Iteration: 5, Func. Count: 29, Neg. LLF: 150.8126310869809
Iteration: 6, Func. Count: 35, Neg. LLF: 150.80111306550862
Iteration: 7, Func. Count: 39, Neg. LLF: 150.80111306489616
Optimization terminated successfully (Exit mode 0)
Current function value: 150.80111306550862
Iterations: 7
Function evaluations: 39
Gradient evaluations: 7
Iteration: 1, Func. Count: 7, Neg. LLF: 678.4230496966804
Iteration: 2, Func. Count: 15, Neg. LLF: 151.10661471124044
Iteration: 3, Func. Count: 21, Neg. LLF: 150.74469787797756
Iteration: 4, Func. Count: 27, Neg. LLF: 150.7647465335238
Iteration: 5, Func. Count: 34, Neg. LLF: 150.73152953028801
Iteration: 6, Func. Count: 40, Neg. LLF: 150.73197325381258
Iteration: 7, Func. Count: 47, Neg. LLF: 150.73127130791613
Iteration: 8, Func. Count: 52, Neg. LLF: 150.73127130756345
Optimization terminated successfully (Exit mode 0)
Current function value: 150.73127130791613
Iterations: 8
Function evaluations: 52
Gradient evaluations: 8
Iteration: 1, Func. Count: 8, Neg. LLF: 723.8838930236309
Iteration: 2, Func. Count: 17, Neg. LLF: 151.03481508616954
Iteration: 3, Func. Count: 24, Neg. LLF: 150.84567360186733
Iteration: 4, Func. Count: 31, Neg. LLF: 150.76916013788082
Iteration: 5, Func. Count: 38, Neg. LLF: 150.75609106495222
Iteration: 6, Func. Count: 45, Neg. LLF: 150.75587549042052
Iteration: 7, Func. Count: 52, Neg. LLF: 150.75577321857847
Iteration: 8, Func. Count: 59, Neg. LLF: 150.75577168376418
Iteration: 9, Func. Count: 65, Neg. LLF: 150.75577168361104
Optimization terminated successfully (Exit mode 0)
Current function value: 150.75577168376418
Iterations: 9
Function evaluations: 65
Gradient evaluations: 9
Iteration: 1, Func. Count: 9, Neg. LLF: 712.8497789877626
Iteration: 2, Func. Count: 19, Neg. LLF: 150.98058586520193
Iteration: 3, Func. Count: 27, Neg. LLF: 150.9099700718771
Iteration: 4, Func. Count: 35, Neg. LLF: 150.8534251552348
Iteration: 5, Func. Count: 43, Neg. LLF: 150.80348110674774
Iteration: 6, Func. Count: 51, Neg. LLF: 150.76669740699649
Iteration: 7, Func. Count: 59, Neg. LLF: 150.74901712136352
Iteration: 8, Func. Count: 67, Neg. LLF: 150.7469363200571
Iteration: 9, Func. Count: 75, Neg. LLF: 150.74246452154551
Iteration: 10, Func. Count: 83, Neg. LLF: 150.79464490485242
Iteration: 11, Func. Count: 92, Neg. LLF: 150.79145673336689
Iteration: 12, Func. Count: 101, Neg. LLF: 150.75133214385073
Iteration: 13, Func. Count: 110, Neg. LLF: 150.73828808700438
Iteration: 14, Func. Count: 118, Neg. LLF: 150.73725187805053
Iteration: 15, Func. Count: 126, Neg. LLF: 150.73694710234403
Iteration: 16, Func. Count: 134, Neg. LLF: 150.73691999592612
Iteration: 17, Func. Count: 141, Neg. LLF: 150.73691999598012
Optimization terminated successfully (Exit mode 0)
Current function value: 150.73691999592612
Iterations: 17
Function evaluations: 141
Gradient evaluations: 17
Iteration: 1, Func. Count: 6, Neg. LLF: 159.6192557623677
Iteration: 2, Func. Count: 13, Neg. LLF: 155.0863951797208
Iteration: 3, Func. Count: 18, Neg. LLF: 152.75134201252314
Iteration: 4, Func. Count: 23, Neg. LLF: 152.7028067196756
Iteration: 5, Func. Count: 29, Neg. LLF: 152.1341098219324
Iteration: 6, Func. Count: 34, Neg. LLF: 152.0379374533912
Iteration: 7, Func. Count: 39, Neg. LLF: 152.01276953500596
Iteration: 8, Func. Count: 44, Neg. LLF: 152.00819774189296
Iteration: 9, Func. Count: 49, Neg. LLF: 152.00717579530635
Iteration: 10, Func. Count: 54, Neg. LLF: 152.00704196749598
Iteration: 11, Func. Count: 59, Neg. LLF: 152.00701092832753
Iteration: 12, Func. Count: 63, Neg. LLF: 152.00701092835342
Optimization terminated successfully (Exit mode 0)
Current function value: 152.00701092832753
Iterations: 12
Function evaluations: 63
Gradient evaluations: 12
Iteration: 1, Func. Count: 7, Neg. LLF: 561.3419032295764
Iteration: 2, Func. Count: 15, Neg. LLF: 151.4529444765944
Iteration: 3, Func. Count: 21, Neg. LLF: 150.9500122565386
Iteration: 4, Func. Count: 27, Neg. LLF: 152.0122345849991
Iteration: 5, Func. Count: 34, Neg. LLF: 150.8572522194614
Iteration: 6, Func. Count: 41, Neg. LLF: 150.80111513120826
Iteration: 7, Func. Count: 47, Neg. LLF: 150.80111299667203
Iteration: 8, Func. Count: 52, Neg. LLF: 150.8011129966537
Optimization terminated successfully (Exit mode 0)
Current function value: 150.80111299667203
Iterations: 8
Function evaluations: 52
Gradient evaluations: 8
Iteration: 1, Func. Count: 8, Neg. LLF: 688.9177452488625
Iteration: 2, Func. Count: 17, Neg. LLF: 151.0971385345408
Iteration: 3, Func. Count: 24, Neg. LLF: 150.7375274411199
Iteration: 4, Func. Count: 31, Neg. LLF: 150.9418163518392
Iteration: 5, Func. Count: 39, Neg. LLF: 150.69250224111286
Iteration: 6, Func. Count: 46, Neg. LLF: 150.67293727987703
Iteration: 7, Func. Count: 53, Neg. LLF: 157.5699890818057
Iteration: 8, Func. Count: 62, Neg. LLF: 151.01247335184334
Iteration: 9, Func. Count: 70, Neg. LLF: 150.63306212930937
Iteration: 10, Func. Count: 77, Neg. LLF: 150.62312392938864
Iteration: 11, Func. Count: 84, Neg. LLF: 150.60826323046663
Iteration: 12, Func. Count: 91, Neg. LLF: 150.60595288495833
Iteration: 13, Func. Count: 98, Neg. LLF: 150.6052945198895
Iteration: 14, Func. Count: 105, Neg. LLF: 150.6052629636737
Iteration: 15, Func. Count: 111, Neg. LLF: 150.60526296369733
Optimization terminated successfully (Exit mode 0)
Current function value: 150.6052629636737
Iterations: 15
Function evaluations: 111
Gradient evaluations: 15
Iteration: 1, Func. Count: 9, Neg. LLF: 732.5269149899565
Iteration: 2, Func. Count: 19, Neg. LLF: 151.0342501571867
Iteration: 3, Func. Count: 27, Neg. LLF: 150.8731274383985
Iteration: 4, Func. Count: 35, Neg. LLF: 150.77454325366176
Iteration: 5, Func. Count: 43, Neg. LLF: 150.75093164766795
Iteration: 6, Func. Count: 51, Neg. LLF: 150.74301956328156
Iteration: 7, Func. Count: 59, Neg. LLF: 150.74383228145888
Iteration: 8, Func. Count: 68, Neg. LLF: 150.74209961502385
Iteration: 9, Func. Count: 75, Neg. LLF: 150.74209961509544
Optimization terminated successfully (Exit mode 0)
Current function value: 150.74209961502385
Iterations: 9
Function evaluations: 75
Gradient evaluations: 9
Iteration: 1, Func. Count: 10, Neg. LLF: 720.3056869510255
Iteration: 2, Func. Count: 21, Neg. LLF: 150.98518711041964
Iteration: 3, Func. Count: 30, Neg. LLF: 150.8957549932648
Iteration: 4, Func. Count: 39, Neg. LLF: 150.82140143873923
Iteration: 5, Func. Count: 48, Neg. LLF: 150.73198774265833
Iteration: 6, Func. Count: 57, Neg. LLF: 150.72795663130518
Iteration: 7, Func. Count: 66, Neg. LLF: 150.72200567806652
Iteration: 8, Func. Count: 75, Neg. LLF: 150.67628814653543
Iteration: 9, Func. Count: 84, Neg. LLF: 151.32081057773527
Iteration: 10, Func. Count: 95, Neg. LLF: 150.91986034219389
Iteration: 11, Func. Count: 105, Neg. LLF: 150.58159541647194
Iteration: 12, Func. Count: 114, Neg. LLF: 22478670.936878383
Iteration: 13, Func. Count: 125, Neg. LLF: 13453412.448198024
Iteration: 14, Func. Count: 136, Neg. LLF: 159.1532964489197
Iteration: 15, Func. Count: 147, Neg. LLF: 150.49344704449
Iteration: 16, Func. Count: 156, Neg. LLF: 150.49342662128683
Iteration: 17, Func. Count: 166, Neg. LLF: 150.49231484148768
Iteration: 18, Func. Count: 175, Neg. LLF: 150.49230866928298
Iteration: 19, Func. Count: 183, Neg. LLF: 150.4923086691281
Optimization terminated successfully (Exit mode 0)
Current function value: 150.49230866928298
Iterations: 20
Function evaluations: 183
Gradient evaluations: 19
Iteration: 1, Func. Count: 7, Neg. LLF: 161.04826062478273
Iteration: 2, Func. Count: 15, Neg. LLF: 156.5168730669611
Iteration: 3, Func. Count: 21, Neg. LLF: 153.35524311576472
Iteration: 4, Func. Count: 27, Neg. LLF: 152.3042362341145
Iteration: 5, Func. Count: 33, Neg. LLF: 152.1069678586443
Iteration: 6, Func. Count: 39, Neg. LLF: 152.02994574250283
Iteration: 7, Func. Count: 45, Neg. LLF: 152.01299960843613
Iteration: 8, Func. Count: 51, Neg. LLF: 152.00748271399988
Iteration: 9, Func. Count: 57, Neg. LLF: 152.0070115917926
Iteration: 10, Func. Count: 63, Neg. LLF: 152.00701043813442
Iteration: 11, Func. Count: 68, Neg. LLF: 152.00701053402733
Optimization terminated successfully (Exit mode 0)
Current function value: 152.00701043813442
Iterations: 11
Function evaluations: 68
Gradient evaluations: 11
Iteration: 1, Func. Count: 8, Neg. LLF: 559.326954772148
Iteration: 2, Func. Count: 17, Neg. LLF: 151.45102524874406
Iteration: 3, Func. Count: 24, Neg. LLF: 150.98002247038346
Iteration: 4, Func. Count: 31, Neg. LLF: 151.95027544019487
Iteration: 5, Func. Count: 39, Neg. LLF: 150.83975733281113
Iteration: 6, Func. Count: 47, Neg. LLF: 150.8011155104412
Iteration: 7, Func. Count: 54, Neg. LLF: 150.80111299608583
Iteration: 8, Func. Count: 60, Neg. LLF: 150.8011129960621
Optimization terminated successfully (Exit mode 0)
Current function value: 150.80111299608583
Iterations: 8
Function evaluations: 60
Gradient evaluations: 8
Iteration: 1, Func. Count: 9, Neg. LLF: 685.0050993478153
Iteration: 2, Func. Count: 19, Neg. LLF: 151.09862000323824
Iteration: 3, Func. Count: 27, Neg. LLF: 150.73715137512838
Iteration: 4, Func. Count: 35, Neg. LLF: 150.9740811754028
Iteration: 5, Func. Count: 44, Neg. LLF: 150.69180056859832
Iteration: 6, Func. Count: 52, Neg. LLF: 150.67801358021595
Iteration: 7, Func. Count: 60, Neg. LLF: 156.15210598143716
Iteration: 8, Func. Count: 70, Neg. LLF: 151.44510540375444
Iteration: 9, Func. Count: 79, Neg. LLF: 150.6354631461911
Iteration: 10, Func. Count: 87, Neg. LLF: 150.7054537121417
Iteration: 11, Func. Count: 96, Neg. LLF: 150.6078181145373
Iteration: 12, Func. Count: 104, Neg. LLF: 150.605392506284
Iteration: 13, Func. Count: 112, Neg. LLF: 150.6053049162014
Iteration: 14, Func. Count: 120, Neg. LLF: 150.60526978213144
Iteration: 15, Func. Count: 128, Neg. LLF: 150.6052638174369
Iteration: 16, Func. Count: 136, Neg. LLF: 150.60526286595334
Optimization terminated successfully (Exit mode 0)
Current function value: 150.60526286595334
Iterations: 16
Function evaluations: 136
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 728.6676160712683
Iteration: 2, Func. Count: 21, Neg. LLF: 151.03599932768577
Iteration: 3, Func. Count: 30, Neg. LLF: 150.87565484339478
Iteration: 4, Func. Count: 39, Neg. LLF: 150.77521031492643
Iteration: 5, Func. Count: 48, Neg. LLF: 150.75207126660587
Iteration: 6, Func. Count: 57, Neg. LLF: 150.7435180529186
Iteration: 7, Func. Count: 66, Neg. LLF: 150.74417890295075
Iteration: 8, Func. Count: 76, Neg. LLF: 150.7420996486984
Iteration: 9, Func. Count: 84, Neg. LLF: 150.74209964874143
Optimization terminated successfully (Exit mode 0)
Current function value: 150.7420996486984
Iterations: 9
Function evaluations: 84
Gradient evaluations: 9
Iteration: 1, Func. Count: 11, Neg. LLF: 716.8469821126811
Iteration: 2, Func. Count: 23, Neg. LLF: 150.98371556528772
Iteration: 3, Func. Count: 33, Neg. LLF: 150.89413040953758
Iteration: 4, Func. Count: 43, Neg. LLF: 150.8197761837148
Iteration: 5, Func. Count: 53, Neg. LLF: 150.73239589476574
Iteration: 6, Func. Count: 63, Neg. LLF: 150.72808632346786
Iteration: 7, Func. Count: 73, Neg. LLF: 150.72275064493576
Iteration: 8, Func. Count: 83, Neg. LLF: 150.6757126394235
Iteration: 9, Func. Count: 93, Neg. LLF: 150.84394450083644
Iteration: 10, Func. Count: 104, Neg. LLF: 13419722.21211907
Iteration: 11, Func. Count: 117, Neg. LLF: 13517971.78354953
Iteration: 12, Func. Count: 129, Neg. LLF: 158.8070731393978
Iteration: 13, Func. Count: 141, Neg. LLF: 150.50000430686586
Iteration: 14, Func. Count: 151, Neg. LLF: 150.49269928495198
Iteration: 15, Func. Count: 161, Neg. LLF: 150.49231329917313
Iteration: 16, Func. Count: 171, Neg. LLF: 150.49230881998946
Iteration: 17, Func. Count: 180, Neg. LLF: 150.49230882000532
Optimization terminated successfully (Exit mode 0)
Current function value: 150.49230881998946
Iterations: 18
Function evaluations: 180
Gradient evaluations: 17
Iteration: 1, Func. Count: 8, Neg. LLF: 161.1606018876289
Iteration: 2, Func. Count: 17, Neg. LLF: 157.5603190359762
Iteration: 3, Func. Count: 26, Neg. LLF: 155.8248680550316
Iteration: 4, Func. Count: 33, Neg. LLF: 152.69899793075777
Iteration: 5, Func. Count: 40, Neg. LLF: 152.6027757705434
Iteration: 6, Func. Count: 48, Neg. LLF: 152.16947508983452
Iteration: 7, Func. Count: 55, Neg. LLF: 152.01419266435187
Iteration: 8, Func. Count: 62, Neg. LLF: 152.00820342798139
Iteration: 9, Func. Count: 69, Neg. LLF: 152.00717980951256
Iteration: 10, Func. Count: 76, Neg. LLF: 152.0070196569658
Iteration: 11, Func. Count: 83, Neg. LLF: 152.00701066369572
Iteration: 12, Func. Count: 89, Neg. LLF: 152.00701068886485
Optimization terminated successfully (Exit mode 0)
Current function value: 152.00701066369572
Iterations: 12
Function evaluations: 89
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 562.4796873304331
Iteration: 2, Func. Count: 19, Neg. LLF: 151.44757158585222
Iteration: 3, Func. Count: 27, Neg. LLF: 150.9427293080771
Iteration: 4, Func. Count: 35, Neg. LLF: 151.89800090742975
Iteration: 5, Func. Count: 44, Neg. LLF: 150.82920757142026
Iteration: 6, Func. Count: 53, Neg. LLF: 150.80111424690065
Iteration: 7, Func. Count: 61, Neg. LLF: 150.80111299778713
Iteration: 8, Func. Count: 68, Neg. LLF: 150.80111299777232
Optimization terminated successfully (Exit mode 0)
Current function value: 150.80111299778713
Iterations: 8
Function evaluations: 68
Gradient evaluations: 8
Iteration: 1, Func. Count: 10, Neg. LLF: 689.4323245267381
Iteration: 2, Func. Count: 21, Neg. LLF: 151.09733005853258
Iteration: 3, Func. Count: 30, Neg. LLF: 150.73490260337394
Iteration: 4, Func. Count: 39, Neg. LLF: 151.007158631588
Iteration: 5, Func. Count: 49, Neg. LLF: 150.69270263356492
Iteration: 6, Func. Count: 58, Neg. LLF: 150.677875839987
Iteration: 7, Func. Count: 67, Neg. LLF: 155.5497646151783
Iteration: 8, Func. Count: 78, Neg. LLF: 153.96381033374206
Iteration: 9, Func. Count: 89, Neg. LLF: 150.63364375268776
Iteration: 10, Func. Count: 98, Neg. LLF: 150.61558839383056
Iteration: 11, Func. Count: 107, Neg. LLF: 150.60661085494598
Iteration: 12, Func. Count: 116, Neg. LLF: 150.60540467126296
Iteration: 13, Func. Count: 125, Neg. LLF: 150.6052950127447
Iteration: 14, Func. Count: 134, Neg. LLF: 150.6052730566273
Iteration: 15, Func. Count: 143, Neg. LLF: 150.60526339361147
Iteration: 16, Func. Count: 151, Neg. LLF: 150.60526339385834
Optimization terminated successfully (Exit mode 0)
Current function value: 150.60526339361147
Iterations: 16
Function evaluations: 151
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 731.6962228516777
Iteration: 2, Func. Count: 23, Neg. LLF: 151.04178980834388
Iteration: 3, Func. Count: 33, Neg. LLF: 150.8794032057518
Iteration: 4, Func. Count: 43, Neg. LLF: 150.7771865568195
Iteration: 5, Func. Count: 53, Neg. LLF: 150.75260335321764
Iteration: 6, Func. Count: 63, Neg. LLF: 150.74392756905144
Iteration: 7, Func. Count: 73, Neg. LLF: 150.74432720331714
Iteration: 8, Func. Count: 84, Neg. LLF: 150.74210007408854
Iteration: 9, Func. Count: 93, Neg. LLF: 150.74210007390494
Optimization terminated successfully (Exit mode 0)
Current function value: 150.74210007408854
Iterations: 9
Function evaluations: 93
Gradient evaluations: 9
Iteration: 1, Func. Count: 12, Neg. LLF: 720.3292869527605
Iteration: 2, Func. Count: 25, Neg. LLF: 150.98427935304986
Iteration: 3, Func. Count: 36, Neg. LLF: 150.87441320356382
Iteration: 4, Func. Count: 47, Neg. LLF: 151.77826400503173
Iteration: 5, Func. Count: 60, Neg. LLF: 150.66652356322908
Iteration: 6, Func. Count: 71, Neg. LLF: 150.90454591193227
Iteration: 7, Func. Count: 83, Neg. LLF: 151.08337555695664
Iteration: 8, Func. Count: 95, Neg. LLF: 151.8691036631685
Iteration: 9, Func. Count: 107, Neg. LLF: 150.64045714117836
Iteration: 10, Func. Count: 119, Neg. LLF: 150.61837571731252
Iteration: 11, Func. Count: 130, Neg. LLF: 150.59808805839623
Iteration: 12, Func. Count: 141, Neg. LLF: 150.55920706546428
Iteration: 13, Func. Count: 152, Neg. LLF: 150.51497794784092
Iteration: 14, Func. Count: 163, Neg. LLF: 150.503671994222
Iteration: 15, Func. Count: 174, Neg. LLF: 150.49571721142595
Iteration: 16, Func. Count: 185, Neg. LLF: 150.49285545025066
Iteration: 17, Func. Count: 196, Neg. LLF: 150.49199276079653
Iteration: 18, Func. Count: 207, Neg. LLF: 150.4917414450457
Iteration: 19, Func. Count: 218, Neg. LLF: 150.49170602691703
Iteration: 20, Func. Count: 229, Neg. LLF: 150.4916803507206
Iteration: 21, Func. Count: 240, Neg. LLF: 150.4916791416653
Iteration: 22, Func. Count: 250, Neg. LLF: 150.4916791417122
Optimization terminated successfully (Exit mode 0)
Current function value: 150.4916791416653
Iterations: 22
Function evaluations: 250
Gradient evaluations: 22
Iteration: 1, Func. Count: 5, Neg. LLF: 154.4432969152087
Iteration: 2, Func. Count: 10, Neg. LLF: 153.47617394049104
Iteration: 3, Func. Count: 15, Neg. LLF: 153.10552321899493
Iteration: 4, Func. Count: 19, Neg. LLF: 152.70340013177858
Iteration: 5, Func. Count: 23, Neg. LLF: 152.49079705394644
Iteration: 6, Func. Count: 27, Neg. LLF: 152.33875450638826
Iteration: 7, Func. Count: 31, Neg. LLF: 152.22638593691298
Iteration: 8, Func. Count: 35, Neg. LLF: 152.20748358571228
Iteration: 9, Func. Count: 39, Neg. LLF: 152.19722067161578
Iteration: 10, Func. Count: 43, Neg. LLF: 152.19536357412875
Iteration: 11, Func. Count: 47, Neg. LLF: 152.19500307934175
Iteration: 12, Func. Count: 51, Neg. LLF: 152.1949943159038
Iteration: 13, Func. Count: 54, Neg. LLF: 152.19499431590833
Optimization terminated successfully (Exit mode 0)
Current function value: 152.1949943159038
Iterations: 13
Function evaluations: 54
Gradient evaluations: 13
Iteration: 1, Func. Count: 6, Neg. LLF: 537.1591761499593
Iteration: 2, Func. Count: 13, Neg. LLF: 151.47682504653417
Iteration: 3, Func. Count: 18, Neg. LLF: 150.8540362738494
Iteration: 4, Func. Count: 23, Neg. LLF: 152.06304840694392
Iteration: 5, Func. Count: 29, Neg. LLF: 150.8236491606829
Iteration: 6, Func. Count: 35, Neg. LLF: 150.80111314939612
Iteration: 7, Func. Count: 39, Neg. LLF: 150.80111315032673
Optimization terminated successfully (Exit mode 0)
Current function value: 150.80111314939612
Iterations: 7
Function evaluations: 39
Gradient evaluations: 7
Iteration: 1, Func. Count: 7, Neg. LLF: 639.2690676698475
Iteration: 2, Func. Count: 15, Neg. LLF: 151.14983309525394
Iteration: 3, Func. Count: 21, Neg. LLF: 150.92231253384497
Iteration: 4, Func. Count: 27, Neg. LLF: 150.88029951990424
Iteration: 5, Func. Count: 34, Neg. LLF: 150.7540473435333
Iteration: 6, Func. Count: 40, Neg. LLF: 150.73167742001147
Iteration: 7, Func. Count: 46, Neg. LLF: 150.73127545261798
Iteration: 8, Func. Count: 52, Neg. LLF: 150.73127124810463
Iteration: 9, Func. Count: 57, Neg. LLF: 150.73127124823546
Optimization terminated successfully (Exit mode 0)
Current function value: 150.73127124810463
Iterations: 9
Function evaluations: 57
Gradient evaluations: 9
Iteration: 1, Func. Count: 8, Neg. LLF: 688.6375557994842
Iteration: 2, Func. Count: 17, Neg. LLF: 151.05573397102913
Iteration: 3, Func. Count: 24, Neg. LLF: 150.81201668997517
Iteration: 4, Func. Count: 31, Neg. LLF: 150.7639499372339
Iteration: 5, Func. Count: 38, Neg. LLF: 150.757677675323
Iteration: 6, Func. Count: 45, Neg. LLF: 150.75578921761496
Iteration: 7, Func. Count: 52, Neg. LLF: 150.75577190363606
Iteration: 8, Func. Count: 58, Neg. LLF: 150.7557719041721
Optimization terminated successfully (Exit mode 0)
Current function value: 150.75577190363606
Iterations: 8
Function evaluations: 58
Gradient evaluations: 8
Iteration: 1, Func. Count: 9, Neg. LLF: 682.6316022277167
Iteration: 2, Func. Count: 19, Neg. LLF: 151.0380661953994
Iteration: 3, Func. Count: 27, Neg. LLF: 150.91943023674642
Iteration: 4, Func. Count: 35, Neg. LLF: 150.8685936156483
Iteration: 5, Func. Count: 43, Neg. LLF: 150.8419936868124
Iteration: 6, Func. Count: 51, Neg. LLF: 150.83542276256594
Iteration: 7, Func. Count: 59, Neg. LLF: 150.83244005327137
Iteration: 8, Func. Count: 67, Neg. LLF: 150.81549281078426
Iteration: 9, Func. Count: 75, Neg. LLF: 150.75746588544115
Iteration: 10, Func. Count: 83, Neg. LLF: 150.74928579118568
Iteration: 11, Func. Count: 91, Neg. LLF: 150.76523190469743
Iteration: 12, Func. Count: 101, Neg. LLF: 150.74753836493176
Iteration: 13, Func. Count: 109, Neg. LLF: 150.8583547559924
Iteration: 14, Func. Count: 119, Neg. LLF: 150.7407835378784
Iteration: 15, Func. Count: 127, Neg. LLF: 11998676.31049629
Iteration: 16, Func. Count: 139, Neg. LLF: 150.74207248772166
Iteration: 17, Func. Count: 148, Neg. LLF: 150.7319184235173
Iteration: 18, Func. Count: 156, Neg. LLF: 150.73127177583905
Iteration: 19, Func. Count: 163, Neg. LLF: 150.73127177705734
Optimization terminated successfully (Exit mode 0)
Current function value: 150.73127177583905
Iterations: 20
Function evaluations: 163
Gradient evaluations: 19
Iteration: 1, Func. Count: 6, Neg. LLF: 154.51289810817423
Iteration: 2, Func. Count: 12, Neg. LLF: 154.87373811217785
Iteration: 3, Func. Count: 18, Neg. LLF: 155.39424438564674
Iteration: 4, Func. Count: 24, Neg. LLF: 153.0490766219158
Iteration: 5, Func. Count: 29, Neg. LLF: 152.84679743818597
Iteration: 6, Func. Count: 34, Neg. LLF: 152.58114909481222
Iteration: 7, Func. Count: 39, Neg. LLF: 152.3429096062488
Iteration: 8, Func. Count: 44, Neg. LLF: 152.20787848556347
Iteration: 9, Func. Count: 49, Neg. LLF: 152.1189812261877
Iteration: 10, Func. Count: 54, Neg. LLF: 152.08038164045567
Iteration: 11, Func. Count: 59, Neg. LLF: 152.06391229905958
Iteration: 12, Func. Count: 64, Neg. LLF: 152.06058612469087
Iteration: 13, Func. Count: 69, Neg. LLF: 152.06043632307978
Iteration: 14, Func. Count: 74, Neg. LLF: 152.0604334491656
Iteration: 15, Func. Count: 78, Neg. LLF: 152.0604334491508
Optimization terminated successfully (Exit mode 0)
Current function value: 152.0604334491656
Iterations: 15
Function evaluations: 78
Gradient evaluations: 15
Iteration: 1, Func. Count: 7, Neg. LLF: 494.049957133553
Iteration: 2, Func. Count: 15, Neg. LLF: 166.54703015027448
Iteration: 3, Func. Count: 22, Neg. LLF: 151.45661660220136
Iteration: 4, Func. Count: 28, Neg. LLF: 151.3506764460628
Iteration: 5, Func. Count: 34, Neg. LLF: 151.22837353732004
Iteration: 6, Func. Count: 40, Neg. LLF: 151.03162359925597
Iteration: 7, Func. Count: 46, Neg. LLF: 151.27620935438995
Iteration: 8, Func. Count: 53, Neg. LLF: 150.809448503529
Iteration: 9, Func. Count: 59, Neg. LLF: 150.81226351143678
Iteration: 10, Func. Count: 66, Neg. LLF: 150.80115508713033
Iteration: 11, Func. Count: 72, Neg. LLF: 150.8011130002646
Iteration: 12, Func. Count: 77, Neg. LLF: 150.80111300025416
Optimization terminated successfully (Exit mode 0)
Current function value: 150.8011130002646
Iterations: 12
Function evaluations: 77
Gradient evaluations: 12
Iteration: 1, Func. Count: 8, Neg. LLF: 583.8377885186748
Iteration: 2, Func. Count: 17, Neg. LLF: 164.27038143290744
Iteration: 3, Func. Count: 25, Neg. LLF: 151.33485351636713
Iteration: 4, Func. Count: 32, Neg. LLF: 151.07535431163473
Iteration: 5, Func. Count: 39, Neg. LLF: 150.83189687848906
Iteration: 6, Func. Count: 46, Neg. LLF: 150.94907957109135
Iteration: 7, Func. Count: 54, Neg. LLF: 150.8123135759371
Iteration: 8, Func. Count: 61, Neg. LLF: 150.8076971813063
Iteration: 9, Func. Count: 68, Neg. LLF: 150.80756000246106
Iteration: 10, Func. Count: 75, Neg. LLF: 150.80678677156976
Iteration: 11, Func. Count: 82, Neg. LLF: 150.8019424156266
Iteration: 12, Func. Count: 89, Neg. LLF: 150.80111346970347
Iteration: 13, Func. Count: 96, Neg. LLF: 150.80878275208806
Optimization terminated successfully (Exit mode 0)
Current function value: 150.80111346943278
Iterations: 14
Function evaluations: 100
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 635.9927312554241
Iteration: 2, Func. Count: 19, Neg. LLF: 183.26118477420675
Iteration: 3, Func. Count: 28, Neg. LLF: 151.0370895778649
Iteration: 4, Func. Count: 36, Neg. LLF: 151.06437952943637
Iteration: 5, Func. Count: 46, Neg. LLF: 151.71827785277827
Iteration: 6, Func. Count: 55, Neg. LLF: 150.67330975378678
Iteration: 7, Func. Count: 63, Neg. LLF: 150.62629487973405
Iteration: 8, Func. Count: 71, Neg. LLF: 150.62072165379507
Iteration: 9, Func. Count: 79, Neg. LLF: 150.6202832862855
Iteration: 10, Func. Count: 87, Neg. LLF: 150.62026976627692
Iteration: 11, Func. Count: 95, Neg. LLF: 150.6202672352255
Iteration: 12, Func. Count: 102, Neg. LLF: 150.62026723522547
Optimization terminated successfully (Exit mode 0)
Current function value: 150.6202672352255
Iterations: 12
Function evaluations: 102
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 639.3002408105004
Iteration: 2, Func. Count: 21, Neg. LLF: 163.08706263709792
Iteration: 3, Func. Count: 31, Neg. LLF: 151.1002831376056
Iteration: 4, Func. Count: 40, Neg. LLF: 150.89073185801982
Iteration: 5, Func. Count: 49, Neg. LLF: 152.17186236120978
Iteration: 6, Func. Count: 60, Neg. LLF: 150.60710889186052
Iteration: 7, Func. Count: 69, Neg. LLF: 150.60654507937318
Iteration: 8, Func. Count: 79, Neg. LLF: 150.58076359245402
Iteration: 9, Func. Count: 88, Neg. LLF: 150.58013645574914
Iteration: 10, Func. Count: 97, Neg. LLF: 150.579925954811
Iteration: 11, Func. Count: 106, Neg. LLF: 150.5798189014357
Iteration: 12, Func. Count: 115, Neg. LLF: 150.57981791984759
Optimization terminated successfully (Exit mode 0)
Current function value: 150.57981791984759
Iterations: 12
Function evaluations: 115
Gradient evaluations: 12
Iteration: 1, Func. Count: 7, Neg. LLF: 155.1853252139139
Iteration: 2, Func. Count: 14, Neg. LLF: 155.72971478152044
Iteration: 3, Func. Count: 21, Neg. LLF: 154.5545413001596
Iteration: 4, Func. Count: 28, Neg. LLF: 153.16265211293677
Iteration: 5, Func. Count: 35, Neg. LLF: 152.18109087608715
Iteration: 6, Func. Count: 41, Neg. LLF: 152.56341327906244
Iteration: 7, Func. Count: 48, Neg. LLF: 152.73515215980768
Iteration: 8, Func. Count: 56, Neg. LLF: 151.803918007637
Iteration: 9, Func. Count: 62, Neg. LLF: 151.72217894384067
Iteration: 10, Func. Count: 68, Neg. LLF: 151.71909662343273
Iteration: 11, Func. Count: 74, Neg. LLF: 151.71887264952173
Iteration: 12, Func. Count: 80, Neg. LLF: 151.71885544332207
Iteration: 13, Func. Count: 86, Neg. LLF: 151.71885191612998
Iteration: 14, Func. Count: 91, Neg. LLF: 151.71885191613669
Optimization terminated successfully (Exit mode 0)
Current function value: 151.71885191612998
Iterations: 14
Function evaluations: 91
Gradient evaluations: 14
Iteration: 1, Func. Count: 8, Neg. LLF: 496.7033560393216
Iteration: 2, Func. Count: 17, Neg. LLF: 166.48250416746828
Iteration: 3, Func. Count: 25, Neg. LLF: 151.45069794106772
Iteration: 4, Func. Count: 32, Neg. LLF: 151.34898590531077
Iteration: 5, Func. Count: 39, Neg. LLF: 151.21882659468116
Iteration: 6, Func. Count: 46, Neg. LLF: 151.04356965659235
Iteration: 7, Func. Count: 53, Neg. LLF: 151.2797354593041
Iteration: 8, Func. Count: 61, Neg. LLF: 150.80974821605017
Iteration: 9, Func. Count: 68, Neg. LLF: 150.81141862455826
Iteration: 10, Func. Count: 76, Neg. LLF: 150.8011141385498
Iteration: 11, Func. Count: 83, Neg. LLF: 150.80111300084195
Iteration: 12, Func. Count: 89, Neg. LLF: 150.8011130007781
Optimization terminated successfully (Exit mode 0)
Current function value: 150.80111300084195
Iterations: 12
Function evaluations: 89
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 590.7684342343781
Iteration: 2, Func. Count: 19, Neg. LLF: 165.9185662453797
Iteration: 3, Func. Count: 28, Neg. LLF: 151.29419048847757
Iteration: 4, Func. Count: 36, Neg. LLF: 151.04246736958027
Iteration: 5, Func. Count: 44, Neg. LLF: 151.32400842973618
Iteration: 6, Func. Count: 53, Neg. LLF: 150.81257685720684
Iteration: 7, Func. Count: 61, Neg. LLF: 150.8238936259043
Iteration: 8, Func. Count: 70, Neg. LLF: 150.80681824065786
Iteration: 9, Func. Count: 78, Neg. LLF: 150.80661565663098
Iteration: 10, Func. Count: 86, Neg. LLF: 150.80521100144588
Iteration: 11, Func. Count: 94, Neg. LLF: 150.8023142420148
Iteration: 12, Func. Count: 102, Neg. LLF: 150.8015818271133
Iteration: 13, Func. Count: 110, Neg. LLF: 150.80111581910285
Iteration: 14, Func. Count: 118, Neg. LLF: 150.80111379613774
Iteration: 15, Func. Count: 126, Neg. LLF: 150.80111310651824
Optimization terminated successfully (Exit mode 0)
Current function value: 150.80111310651824
Iterations: 15
Function evaluations: 126
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 642.2445162020418
Iteration: 2, Func. Count: 21, Neg. LLF: 179.85974252081485
Iteration: 3, Func. Count: 31, Neg. LLF: 152.19307528960752
Iteration: 4, Func. Count: 41, Neg. LLF: 151.91272659460174
Iteration: 5, Func. Count: 51, Neg. LLF: 151.92943322966465
Iteration: 6, Func. Count: 61, Neg. LLF: 151.50073499312873
Iteration: 7, Func. Count: 71, Neg. LLF: 151.0189185417725
Iteration: 8, Func. Count: 81, Neg. LLF: 150.66713745964657
Iteration: 9, Func. Count: 90, Neg. LLF: 150.63426580834985
Iteration: 10, Func. Count: 99, Neg. LLF: 150.63798102163315
Iteration: 11, Func. Count: 109, Neg. LLF: 150.62096116537387
Iteration: 12, Func. Count: 118, Neg. LLF: 150.62017243927139
Iteration: 13, Func. Count: 127, Neg. LLF: 150.61991988233197
Iteration: 14, Func. Count: 136, Neg. LLF: 150.6198810051991
Iteration: 15, Func. Count: 145, Neg. LLF: 150.61987993482856
Iteration: 16, Func. Count: 153, Neg. LLF: 150.6198799347289
Optimization terminated successfully (Exit mode 0)
Current function value: 150.61987993482856
Iterations: 16
Function evaluations: 153
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 645.0168810278238
Iteration: 2, Func. Count: 23, Neg. LLF: 162.90014285920418
Iteration: 3, Func. Count: 34, Neg. LLF: 151.63686238439257
Iteration: 4, Func. Count: 45, Neg. LLF: 152.02064714189902
Iteration: 5, Func. Count: 56, Neg. LLF: 151.25580327773778
Iteration: 6, Func. Count: 67, Neg. LLF: 150.7842328331612
Iteration: 7, Func. Count: 78, Neg. LLF: 150.85036149669165
Iteration: 8, Func. Count: 89, Neg. LLF: 150.58134767724312
Iteration: 9, Func. Count: 99, Neg. LLF: 150.61429350831065
Iteration: 10, Func. Count: 110, Neg. LLF: 150.56917476556336
Iteration: 11, Func. Count: 120, Neg. LLF: 150.56734575848105
Iteration: 12, Func. Count: 130, Neg. LLF: 150.56669242647675
Iteration: 13, Func. Count: 140, Neg. LLF: 150.5666249191808
Iteration: 14, Func. Count: 150, Neg. LLF: 150.56661821548954
Iteration: 15, Func. Count: 159, Neg. LLF: 150.56661821537494
Optimization terminated successfully (Exit mode 0)
Current function value: 150.56661821548954
Iterations: 15
Function evaluations: 159
Gradient evaluations: 15
Iteration: 1, Func. Count: 8, Neg. LLF: 155.77716038363337
Iteration: 2, Func. Count: 16, Neg. LLF: 155.72397979589385
Iteration: 3, Func. Count: 24, Neg. LLF: 154.55885647727413
Iteration: 4, Func. Count: 32, Neg. LLF: 153.16657770185023
Iteration: 5, Func. Count: 40, Neg. LLF: 151.79344392849967
Iteration: 6, Func. Count: 47, Neg. LLF: 152.25306757457938
Iteration: 7, Func. Count: 55, Neg. LLF: 151.73023613394162
Iteration: 8, Func. Count: 62, Neg. LLF: 151.72325488692854
Iteration: 9, Func. Count: 69, Neg. LLF: 151.71964450711158
Iteration: 10, Func. Count: 76, Neg. LLF: 151.71887708450788
Iteration: 11, Func. Count: 83, Neg. LLF: 151.71885213096976
Iteration: 12, Func. Count: 89, Neg. LLF: 151.71885219991
Optimization terminated successfully (Exit mode 0)
Current function value: 151.71885213096976
Iterations: 12
Function evaluations: 89
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 496.0651208791686
Iteration: 2, Func. Count: 19, Neg. LLF: 166.39247408085504
Iteration: 3, Func. Count: 28, Neg. LLF: 151.44695150374494
Iteration: 4, Func. Count: 36, Neg. LLF: 151.34606892829805
Iteration: 5, Func. Count: 44, Neg. LLF: 151.2081489467261
Iteration: 6, Func. Count: 52, Neg. LLF: 151.05653914127456
Iteration: 7, Func. Count: 60, Neg. LLF: 151.2514916123943
Iteration: 8, Func. Count: 69, Neg. LLF: 150.81125376109082
Iteration: 9, Func. Count: 77, Neg. LLF: 150.82000589778733
Iteration: 10, Func. Count: 86, Neg. LLF: 150.80112268100333
Iteration: 11, Func. Count: 94, Neg. LLF: 150.80111300550186
Iteration: 12, Func. Count: 101, Neg. LLF: 150.80111300548378
Optimization terminated successfully (Exit mode 0)
Current function value: 150.80111300550186
Iterations: 12
Function evaluations: 101
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 588.6525990633187
Iteration: 2, Func. Count: 21, Neg. LLF: 165.3884872941426
Iteration: 3, Func. Count: 31, Neg. LLF: 151.29608307767248
Iteration: 4, Func. Count: 40, Neg. LLF: 151.04423838594516
Iteration: 5, Func. Count: 49, Neg. LLF: 151.2991426096385
Iteration: 6, Func. Count: 59, Neg. LLF: 150.8106172913424
Iteration: 7, Func. Count: 68, Neg. LLF: 150.8228535439424
Iteration: 8, Func. Count: 78, Neg. LLF: 150.8068551546232
Iteration: 9, Func. Count: 87, Neg. LLF: 150.80665864710693
Iteration: 10, Func. Count: 96, Neg. LLF: 150.8052800216958
Iteration: 11, Func. Count: 105, Neg. LLF: 150.80135185433838
Iteration: 12, Func. Count: 114, Neg. LLF: 150.80115599616676
Iteration: 13, Func. Count: 123, Neg. LLF: 150.80111341052162
Iteration: 14, Func. Count: 131, Neg. LLF: 150.80111341191989
Optimization terminated successfully (Exit mode 0)
Current function value: 150.80111341052162
Iterations: 14
Function evaluations: 131
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 639.7963440171472
Iteration: 2, Func. Count: 23, Neg. LLF: 177.55560461202572
Iteration: 3, Func. Count: 34, Neg. LLF: 158.51276847888937
Iteration: 4, Func. Count: 45, Neg. LLF: 153.1083475092449
Iteration: 5, Func. Count: 56, Neg. LLF: 151.64781609236215
Iteration: 6, Func. Count: 67, Neg. LLF: 151.6322309027566
Iteration: 7, Func. Count: 78, Neg. LLF: 151.58291674965193
Iteration: 8, Func. Count: 89, Neg. LLF: 150.68567892321755
Iteration: 9, Func. Count: 99, Neg. LLF: 150.64754201723494
Iteration: 10, Func. Count: 109, Neg. LLF: 150.70596288099696
Iteration: 11, Func. Count: 120, Neg. LLF: 150.62574346294596
Iteration: 12, Func. Count: 130, Neg. LLF: 150.62041470680478
Iteration: 13, Func. Count: 140, Neg. LLF: 150.61990785147995
Iteration: 14, Func. Count: 150, Neg. LLF: 150.61988160269084
Iteration: 15, Func. Count: 160, Neg. LLF: 150.61988019946338
Iteration: 16, Func. Count: 169, Neg. LLF: 150.61988019935748
Optimization terminated successfully (Exit mode 0)
Current function value: 150.61988019946338
Iterations: 16
Function evaluations: 169
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 642.6233728291692
Iteration: 2, Func. Count: 25, Neg. LLF: 162.82880396447774
Iteration: 3, Func. Count: 37, Neg. LLF: 157.44334862548462
Iteration: 4, Func. Count: 49, Neg. LLF: 152.6639054252252
Iteration: 5, Func. Count: 61, Neg. LLF: 151.66756473732832
Iteration: 6, Func. Count: 73, Neg. LLF: 151.39316618234238
Iteration: 7, Func. Count: 85, Neg. LLF: 151.172337788641
Iteration: 8, Func. Count: 97, Neg. LLF: 150.62208883894326
Iteration: 9, Func. Count: 108, Neg. LLF: 150.6044003863635
Iteration: 10, Func. Count: 119, Neg. LLF: 150.64466571732177
Iteration: 11, Func. Count: 131, Neg. LLF: 150.5781899657206
Iteration: 12, Func. Count: 142, Neg. LLF: 150.57139736819096
Iteration: 13, Func. Count: 153, Neg. LLF: 150.56740688983277
Iteration: 14, Func. Count: 164, Neg. LLF: 150.56662866435255
Iteration: 15, Func. Count: 175, Neg. LLF: 150.56661838894442
Iteration: 16, Func. Count: 185, Neg. LLF: 150.56661838866324
Optimization terminated successfully (Exit mode 0)
Current function value: 150.56661838894442
Iterations: 16
Function evaluations: 185
Gradient evaluations: 16
Iteration: 1, Func. Count: 9, Neg. LLF: 156.04777283925682
Iteration: 2, Func. Count: 18, Neg. LLF: 154.97174482826907
Iteration: 3, Func. Count: 27, Neg. LLF: 155.9613895809046
Iteration: 4, Func. Count: 36, Neg. LLF: 153.90070075846998
Iteration: 5, Func. Count: 45, Neg. LLF: 152.44467138452694
Iteration: 6, Func. Count: 53, Neg. LLF: 153.46127997127323
Iteration: 7, Func. Count: 63, Neg. LLF: 153.74489039160082
Iteration: 8, Func. Count: 72, Neg. LLF: 152.19901758085646
Iteration: 9, Func. Count: 80, Neg. LLF: 152.20511017204606
Iteration: 10, Func. Count: 89, Neg. LLF: 152.07552123643725
Iteration: 11, Func. Count: 97, Neg. LLF: 151.90268729138637
Iteration: 12, Func. Count: 105, Neg. LLF: 151.7617114009154
Iteration: 13, Func. Count: 113, Neg. LLF: 151.71920224070792
Iteration: 14, Func. Count: 121, Neg. LLF: 151.71501681421205
Iteration: 15, Func. Count: 129, Neg. LLF: 151.71476985867284
Iteration: 16, Func. Count: 137, Neg. LLF: 151.7147514337248
Iteration: 17, Func. Count: 145, Neg. LLF: 151.71475050278622
Optimization terminated successfully (Exit mode 0)
Current function value: 151.71475050278622
Iterations: 17
Function evaluations: 145
Gradient evaluations: 17
Iteration: 1, Func. Count: 10, Neg. LLF: 498.53154553394154
Iteration: 2, Func. Count: 21, Neg. LLF: 166.37718558872024
Iteration: 3, Func. Count: 31, Neg. LLF: 151.44356534634136
Iteration: 4, Func. Count: 40, Neg. LLF: 151.3419169899216
Iteration: 5, Func. Count: 49, Neg. LLF: 151.19242777151825
Iteration: 6, Func. Count: 58, Neg. LLF: 151.04248841244757
Iteration: 7, Func. Count: 67, Neg. LLF: 151.28627021659432
Iteration: 8, Func. Count: 77, Neg. LLF: 150.8055333471882
Iteration: 9, Func. Count: 86, Neg. LLF: 150.80246642967595
Iteration: 10, Func. Count: 95, Neg. LLF: 150.80111343085835
Iteration: 11, Func. Count: 103, Neg. LLF: 150.8011134327874
Optimization terminated successfully (Exit mode 0)
Current function value: 150.80111343085835
Iterations: 11
Function evaluations: 103
Gradient evaluations: 11
Iteration: 1, Func. Count: 11, Neg. LLF: 591.6729488534552
Iteration: 2, Func. Count: 23, Neg. LLF: 165.9136081052423
Iteration: 3, Func. Count: 34, Neg. LLF: 151.28777476192005
Iteration: 4, Func. Count: 44, Neg. LLF: 151.04163971762728
Iteration: 5, Func. Count: 54, Neg. LLF: 151.48226806983445
Iteration: 6, Func. Count: 65, Neg. LLF: 150.8313642440597
Iteration: 7, Func. Count: 75, Neg. LLF: 150.8245425124089
Iteration: 8, Func. Count: 86, Neg. LLF: 150.80677332781582
Iteration: 9, Func. Count: 96, Neg. LLF: 150.8064028266971
Iteration: 10, Func. Count: 106, Neg. LLF: 150.80612698809446
Iteration: 11, Func. Count: 116, Neg. LLF: 150.80434270136092
Iteration: 12, Func. Count: 126, Neg. LLF: 150.80250266889368
Iteration: 13, Func. Count: 136, Neg. LLF: 150.80166970827213
Iteration: 14, Func. Count: 146, Neg. LLF: 150.8011136435367
Iteration: 15, Func. Count: 156, Neg. LLF: 150.80111308287837
Optimization terminated successfully (Exit mode 0)
Current function value: 150.80111308287837
Iterations: 15
Function evaluations: 156
Gradient evaluations: 15
Iteration: 1, Func. Count: 12, Neg. LLF: 641.9827962290682
Iteration: 2, Func. Count: 25, Neg. LLF: 176.80546627865024
Iteration: 3, Func. Count: 37, Neg. LLF: 165.3357780131283
Iteration: 4, Func. Count: 49, Neg. LLF: 153.1102283795672
Iteration: 5, Func. Count: 61, Neg. LLF: 151.63353157912334
Iteration: 6, Func. Count: 73, Neg. LLF: 151.631026477731
Iteration: 7, Func. Count: 85, Neg. LLF: 151.58453256731607
Iteration: 8, Func. Count: 97, Neg. LLF: 150.6698080939645
Iteration: 9, Func. Count: 108, Neg. LLF: 150.6392234323445
Iteration: 10, Func. Count: 119, Neg. LLF: 150.64863329339414
Iteration: 11, Func. Count: 131, Neg. LLF: 150.623408091449
Iteration: 12, Func. Count: 142, Neg. LLF: 150.6201783221933
Iteration: 13, Func. Count: 153, Neg. LLF: 150.619939649408
Iteration: 14, Func. Count: 164, Neg. LLF: 150.61988886822076
Iteration: 15, Func. Count: 175, Neg. LLF: 150.61987997107855
Iteration: 16, Func. Count: 185, Neg. LLF: 150.61987997103023
Optimization terminated successfully (Exit mode 0)
Current function value: 150.61987997107855
Iterations: 16
Function evaluations: 185
Gradient evaluations: 16
Iteration: 1, Func. Count: 13, Neg. LLF: 645.2596810158471
Iteration: 2, Func. Count: 27, Neg. LLF: 163.06281388434326
Iteration: 3, Func. Count: 40, Neg. LLF: 163.94740432208832
Iteration: 4, Func. Count: 54, Neg. LLF: 151.8823414310054
Iteration: 5, Func. Count: 67, Neg. LLF: 151.62006093778234
Iteration: 6, Func. Count: 80, Neg. LLF: 151.36503975923765
Iteration: 7, Func. Count: 93, Neg. LLF: 151.06146906093053
Iteration: 8, Func. Count: 106, Neg. LLF: 150.6329397769183
Iteration: 9, Func. Count: 118, Neg. LLF: 150.59205762420132
Iteration: 10, Func. Count: 130, Neg. LLF: 150.62462940286343
Iteration: 11, Func. Count: 143, Neg. LLF: 150.57936876269872
Iteration: 12, Func. Count: 155, Neg. LLF: 150.57236302760273
Iteration: 13, Func. Count: 167, Neg. LLF: 150.56838807007864
Iteration: 14, Func. Count: 179, Neg. LLF: 150.56680504977862
Iteration: 15, Func. Count: 191, Neg. LLF: 150.56663635125727
Iteration: 16, Func. Count: 203, Neg. LLF: 150.56661817902216
Iteration: 17, Func. Count: 214, Neg. LLF: 150.5666181790113
Optimization terminated successfully (Exit mode 0)
Current function value: 150.56661817902216
Iterations: 17
Function evaluations: 214
Gradient evaluations: 17
Iteration: 1, Func. Count: 6, Neg. LLF: 150.94703595688264
Iteration: 2, Func. Count: 11, Neg. LLF: 154.50607226720842
Iteration: 3, Func. Count: 17, Neg. LLF: 150.47879161966097
Iteration: 4, Func. Count: 22, Neg. LLF: 157.13960946432002
Iteration: 5, Func. Count: 28, Neg. LLF: 151.2542989736791
Iteration: 6, Func. Count: 34, Neg. LLF: 150.19632655966953
Iteration: 7, Func. Count: 39, Neg. LLF: 150.19296294401389
Iteration: 8, Func. Count: 44, Neg. LLF: 150.19084796448104
Iteration: 9, Func. Count: 49, Neg. LLF: 150.1766419475175
Iteration: 10, Func. Count: 54, Neg. LLF: 150.13968784257477
Iteration: 11, Func. Count: 59, Neg. LLF: 150.1051537587191
Iteration: 12, Func. Count: 64, Neg. LLF: 150.10448782098203
Iteration: 13, Func. Count: 69, Neg. LLF: 150.1044468547715
Iteration: 14, Func. Count: 73, Neg. LLF: 150.10444685236698
Optimization terminated successfully (Exit mode 0)
Current function value: 150.1044468547715
Iterations: 14
Function evaluations: 73
Gradient evaluations: 14
Iteration: 1, Func. Count: 7, Neg. LLF: 535.6963960503672
Iteration: 2, Func. Count: 15, Neg. LLF: 151.4790498816918
Iteration: 3, Func. Count: 21, Neg. LLF: 150.84893728152264
Iteration: 4, Func. Count: 27, Neg. LLF: 151.94455244303984
Iteration: 5, Func. Count: 34, Neg. LLF: 150.80653684972881
Iteration: 6, Func. Count: 41, Neg. LLF: 150.8011132903633
Iteration: 7, Func. Count: 46, Neg. LLF: 150.80111328865164
Optimization terminated successfully (Exit mode 0)
Current function value: 150.8011132903633
Iterations: 7
Function evaluations: 46
Gradient evaluations: 7
Iteration: 1, Func. Count: 8, Neg. LLF: 647.6207273443409
Iteration: 2, Func. Count: 17, Neg. LLF: 151.11538397688764
Iteration: 3, Func. Count: 24, Neg. LLF: 150.94597769358998
Iteration: 4, Func. Count: 31, Neg. LLF: 159.6580516552053
Iteration: 5, Func. Count: 41, Neg. LLF: 153.68931976970063
Iteration: 6, Func. Count: 49, Neg. LLF: 149.81082200222536
Iteration: 7, Func. Count: 56, Neg. LLF: 149.7418771847993
Iteration: 8, Func. Count: 63, Neg. LLF: 149.70111953299826
Iteration: 9, Func. Count: 70, Neg. LLF: 149.70024601729065
Iteration: 10, Func. Count: 77, Neg. LLF: 149.70013655019457
Iteration: 11, Func. Count: 84, Neg. LLF: 149.6999026595529
Iteration: 12, Func. Count: 91, Neg. LLF: 149.69974230322947
Iteration: 13, Func. Count: 98, Neg. LLF: 149.69969325847862
Iteration: 14, Func. Count: 105, Neg. LLF: 149.69968853448512
Iteration: 15, Func. Count: 111, Neg. LLF: 149.6996885343162
Optimization terminated successfully (Exit mode 0)
Current function value: 149.69968853448512
Iterations: 15
Function evaluations: 111
Gradient evaluations: 15
Iteration: 1, Func. Count: 9, Neg. LLF: 150.58642502452227
Iteration: 2, Func. Count: 17, Neg. LLF: 150.44915103923105
Iteration: 3, Func. Count: 25, Neg. LLF: 150.5706292724091
Iteration: 4, Func. Count: 34, Neg. LLF: 150.206366054618
Iteration: 5, Func. Count: 42, Neg. LLF: 150.1990702764957
Iteration: 6, Func. Count: 50, Neg. LLF: 150.19672785971972
Iteration: 7, Func. Count: 58, Neg. LLF: 150.18295649180448
Iteration: 8, Func. Count: 66, Neg. LLF: 151.15966824524372
Iteration: 9, Func. Count: 76, Neg. LLF: 150.1558867312644
Iteration: 10, Func. Count: 84, Neg. LLF: 150.13472960921843
Iteration: 11, Func. Count: 92, Neg. LLF: 150.10476818211444
Iteration: 12, Func. Count: 100, Neg. LLF: 150.10447112963496
Iteration: 13, Func. Count: 108, Neg. LLF: 150.1044471048752
Iteration: 14, Func. Count: 115, Neg. LLF: 150.10444748652637
Optimization terminated successfully (Exit mode 0)
Current function value: 150.1044471048752
Iterations: 14
Function evaluations: 115
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 150.58077219663446
Iteration: 2, Func. Count: 19, Neg. LLF: 150.53480219016842
Iteration: 3, Func. Count: 28, Neg. LLF: 150.23013921484633
Iteration: 4, Func. Count: 37, Neg. LLF: 158.36890623148307
Iteration: 5, Func. Count: 47, Neg. LLF: 158.0168349764313
Iteration: 6, Func. Count: 57, Neg. LLF: 156.45577025915324
Iteration: 7, Func. Count: 67, Neg. LLF: 150.07259965744973
Iteration: 8, Func. Count: 77, Neg. LLF: 149.85405303095882
Iteration: 9, Func. Count: 86, Neg. LLF: 149.8301917636949
Iteration: 10, Func. Count: 95, Neg. LLF: 149.76428596384793
Iteration: 11, Func. Count: 104, Neg. LLF: 154.65745145590066
Iteration: 12, Func. Count: 114, Neg. LLF: 152.6513754879172
Iteration: 13, Func. Count: 124, Neg. LLF: 150.75853624125776
Iteration: 14, Func. Count: 134, Neg. LLF: 149.68315525375436
Iteration: 15, Func. Count: 144, Neg. LLF: 149.56593224137274
Iteration: 16, Func. Count: 153, Neg. LLF: 149.55223491029886
Iteration: 17, Func. Count: 162, Neg. LLF: 149.54371865942764
Iteration: 18, Func. Count: 171, Neg. LLF: 149.52859424249033
Iteration: 19, Func. Count: 180, Neg. LLF: 149.52368106667865
Iteration: 20, Func. Count: 189, Neg. LLF: 149.52346210554293
Iteration: 21, Func. Count: 198, Neg. LLF: 149.52345160539332
Iteration: 22, Func. Count: 207, Neg. LLF: 149.5234485941054
Iteration: 23, Func. Count: 216, Neg. LLF: 149.5234480989713
Optimization terminated successfully (Exit mode 0)
Current function value: 149.5234480989713
Iterations: 23
Function evaluations: 216
Gradient evaluations: 23
Iteration: 1, Func. Count: 7, Neg. LLF: 151.13958496774382
Iteration: 2, Func. Count: 13, Neg. LLF: 153.81468610242686
Iteration: 3, Func. Count: 20, Neg. LLF: 150.44875894415642
Iteration: 4, Func. Count: 26, Neg. LLF: 150.27787920080968
Iteration: 5, Func. Count: 32, Neg. LLF: 150.1720123484465
Iteration: 6, Func. Count: 38, Neg. LLF: 150.14226760256764
Iteration: 7, Func. Count: 44, Neg. LLF: 150.1356636746571
Iteration: 8, Func. Count: 50, Neg. LLF: 150.13204762297065
Iteration: 9, Func. Count: 56, Neg. LLF: 150.11435832272235
Iteration: 10, Func. Count: 62, Neg. LLF: 150.08021100540498
Iteration: 11, Func. Count: 68, Neg. LLF: 150.07213101743196
Iteration: 12, Func. Count: 74, Neg. LLF: 150.06668297174613
Iteration: 13, Func. Count: 80, Neg. LLF: 150.07248086278605
Iteration: 14, Func. Count: 87, Neg. LLF: 150.06509974947656
Iteration: 15, Func. Count: 93, Neg. LLF: 150.0650825365907
Iteration: 16, Func. Count: 99, Neg. LLF: 150.065079197047
Iteration: 17, Func. Count: 104, Neg. LLF: 150.06507919757277
Optimization terminated successfully (Exit mode 0)
Current function value: 150.065079197047
Iterations: 17
Function evaluations: 104
Gradient evaluations: 17
Iteration: 1, Func. Count: 8, Neg. LLF: 151.90882724868547
Iteration: 2, Func. Count: 16, Neg. LLF: 151.44599134489744
Iteration: 3, Func. Count: 25, Neg. LLF: 151.86984203540956
Iteration: 4, Func. Count: 33, Neg. LLF: 150.45883470996895
Iteration: 5, Func. Count: 40, Neg. LLF: 152.2621529870415
Iteration: 6, Func. Count: 48, Neg. LLF: 150.41096412658564
Iteration: 7, Func. Count: 56, Neg. LLF: 150.2051281993333
Iteration: 8, Func. Count: 63, Neg. LLF: 150.17952060725543
Iteration: 9, Func. Count: 70, Neg. LLF: 150.1518966033284
Iteration: 10, Func. Count: 77, Neg. LLF: 150.14620643967564
Iteration: 11, Func. Count: 84, Neg. LLF: 150.1419598568821
Iteration: 12, Func. Count: 91, Neg. LLF: 150.11943743941424
Iteration: 13, Func. Count: 98, Neg. LLF: 150.09163603857584
Iteration: 14, Func. Count: 105, Neg. LLF: 150.06748407218285
Iteration: 15, Func. Count: 112, Neg. LLF: 150.06531071367303
Iteration: 16, Func. Count: 119, Neg. LLF: 150.06511845853487
Iteration: 17, Func. Count: 126, Neg. LLF: 150.0650866735931
Iteration: 18, Func. Count: 133, Neg. LLF: 150.06507955011932
Iteration: 19, Func. Count: 139, Neg. LLF: 150.06507980275154
Optimization terminated successfully (Exit mode 0)
Current function value: 150.06507955011932
Iterations: 19
Function evaluations: 139
Gradient evaluations: 19
Iteration: 1, Func. Count: 9, Neg. LLF: 589.7259169669114
Iteration: 2, Func. Count: 19, Neg. LLF: 172.19717030530325
Iteration: 3, Func. Count: 28, Neg. LLF: 153.40621412922755
Iteration: 4, Func. Count: 38, Neg. LLF: 151.5863650827002
Iteration: 5, Func. Count: 47, Neg. LLF: 151.1341717548217
Iteration: 6, Func. Count: 55, Neg. LLF: 150.88331442183195
Iteration: 7, Func. Count: 63, Neg. LLF: 150.81055351814982
Iteration: 8, Func. Count: 71, Neg. LLF: 150.81024710661438
Iteration: 9, Func. Count: 79, Neg. LLF: 150.81018919414277
Iteration: 10, Func. Count: 87, Neg. LLF: 150.8096994198709
Iteration: 11, Func. Count: 95, Neg. LLF: 150.80585228056384
Iteration: 12, Func. Count: 103, Neg. LLF: 150.80155722814607
Iteration: 13, Func. Count: 111, Neg. LLF: 150.80127574146408
Iteration: 14, Func. Count: 119, Neg. LLF: 150.80111299764533
Iteration: 15, Func. Count: 126, Neg. LLF: 150.80111299806077
Optimization terminated successfully (Exit mode 0)
Current function value: 150.80111299764533
Iterations: 15
Function evaluations: 126
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 151.65709804885597
Iteration: 2, Func. Count: 21, Neg. LLF: 155.98772971015134
Iteration: 3, Func. Count: 31, Neg. LLF: 150.58158482405804
Iteration: 4, Func. Count: 40, Neg. LLF: 150.63274071384708
Iteration: 5, Func. Count: 50, Neg. LLF: 150.23562163936285
Iteration: 6, Func. Count: 59, Neg. LLF: 150.19039596907737
Iteration: 7, Func. Count: 68, Neg. LLF: 150.16161943089898
Iteration: 8, Func. Count: 77, Neg. LLF: 150.1540198168388
Iteration: 9, Func. Count: 86, Neg. LLF: 150.15016926438653
Iteration: 10, Func. Count: 95, Neg. LLF: 150.13452003815615
Iteration: 11, Func. Count: 104, Neg. LLF: 150.1083550315157
Iteration: 12, Func. Count: 113, Neg. LLF: 150.07048100968177
Iteration: 13, Func. Count: 122, Neg. LLF: 150.06562423831772
Iteration: 14, Func. Count: 131, Neg. LLF: 150.06519554276886
Iteration: 15, Func. Count: 140, Neg. LLF: 150.0650954097612
Iteration: 16, Func. Count: 149, Neg. LLF: 150.06508372982725
Iteration: 17, Func. Count: 158, Neg. LLF: 150.0650791425449
Iteration: 18, Func. Count: 166, Neg. LLF: 150.0650795380334
Optimization terminated successfully (Exit mode 0)
Current function value: 150.0650791425449
Iterations: 18
Function evaluations: 166
Gradient evaluations: 18
Iteration: 1, Func. Count: 11, Neg. LLF: 151.06995350114178
Iteration: 2, Func. Count: 21, Neg. LLF: 150.65799904311038
Iteration: 3, Func. Count: 31, Neg. LLF: 150.19932176356588
Iteration: 4, Func. Count: 41, Neg. LLF: 157.97116599066987
Iteration: 5, Func. Count: 52, Neg. LLF: 154.57602819051073
Iteration: 6, Func. Count: 63, Neg. LLF: 151.09543999978663
Iteration: 7, Func. Count: 74, Neg. LLF: 149.99670058094244
Iteration: 8, Func. Count: 84, Neg. LLF: 149.96568001074812
Iteration: 9, Func. Count: 94, Neg. LLF: 149.90094691516228
Iteration: 10, Func. Count: 104, Neg. LLF: 149.86162060016244
Iteration: 11, Func. Count: 114, Neg. LLF: 149.80432397149985
Iteration: 12, Func. Count: 124, Neg. LLF: 149.7705540784856
Iteration: 13, Func. Count: 134, Neg. LLF: 151.6100579480862
Iteration: 14, Func. Count: 145, Neg. LLF: 151.43812497944282
Iteration: 15, Func. Count: 156, Neg. LLF: 149.6290946634395
Iteration: 16, Func. Count: 166, Neg. LLF: 149.5978854551636
Iteration: 17, Func. Count: 176, Neg. LLF: 149.59083797555647
Iteration: 18, Func. Count: 187, Neg. LLF: 149.55073508728822
Iteration: 19, Func. Count: 197, Neg. LLF: 149.5338401842502
Iteration: 20, Func. Count: 207, Neg. LLF: 149.52434724012767
Iteration: 21, Func. Count: 217, Neg. LLF: 149.5235056055887
Iteration: 22, Func. Count: 227, Neg. LLF: 149.5234507746873
Iteration: 23, Func. Count: 237, Neg. LLF: 149.5234476216828
Iteration: 24, Func. Count: 246, Neg. LLF: 149.52344762167385
Optimization terminated successfully (Exit mode 0)
Current function value: 149.5234476216828
Iterations: 24
Function evaluations: 246
Gradient evaluations: 24
Iteration: 1, Func. Count: 8, Neg. LLF: 155.85311777641556
Iteration: 2, Func. Count: 16, Neg. LLF: 152.82826460651648
Iteration: 3, Func. Count: 24, Neg. LLF: 149.877102799617
Iteration: 4, Func. Count: 31, Neg. LLF: 150.19966925284612
Iteration: 5, Func. Count: 39, Neg. LLF: 149.9047134866509
Iteration: 6, Func. Count: 47, Neg. LLF: 149.38855295551048
Iteration: 7, Func. Count: 54, Neg. LLF: 149.35282616256316
Iteration: 8, Func. Count: 61, Neg. LLF: 149.3493970239692
Iteration: 9, Func. Count: 68, Neg. LLF: 149.34801482763024
Iteration: 10, Func. Count: 75, Neg. LLF: 149.34691435784333
Iteration: 11, Func. Count: 82, Neg. LLF: 149.34429091756806
Iteration: 12, Func. Count: 89, Neg. LLF: 149.34365440724247
Iteration: 13, Func. Count: 96, Neg. LLF: 149.34352658918706
Iteration: 14, Func. Count: 103, Neg. LLF: 149.34352388007702
Iteration: 15, Func. Count: 109, Neg. LLF: 149.3435238800806
Optimization terminated successfully (Exit mode 0)
Current function value: 149.34352388007702
Iterations: 15
Function evaluations: 109
Gradient evaluations: 15
Iteration: 1, Func. Count: 9, Neg. LLF: 154.71514288275537
Iteration: 2, Func. Count: 18, Neg. LLF: 150.49650195456996
Iteration: 3, Func. Count: 26, Neg. LLF: 152.10351978384023
Iteration: 4, Func. Count: 35, Neg. LLF: 152.16973823300464
Iteration: 5, Func. Count: 45, Neg. LLF: 152.772322469147
Iteration: 6, Func. Count: 54, Neg. LLF: 149.4058994519816
Iteration: 7, Func. Count: 62, Neg. LLF: 149.36688941947574
Iteration: 8, Func. Count: 70, Neg. LLF: 149.34650566135866
Iteration: 9, Func. Count: 78, Neg. LLF: 149.3457053855744
Iteration: 10, Func. Count: 86, Neg. LLF: 149.34529182055266
Iteration: 11, Func. Count: 94, Neg. LLF: 149.3444864499759
Iteration: 12, Func. Count: 102, Neg. LLF: 149.34378232820976
Iteration: 13, Func. Count: 110, Neg. LLF: 149.34355456608276
Iteration: 14, Func. Count: 118, Neg. LLF: 149.3435246112502
Iteration: 15, Func. Count: 126, Neg. LLF: 149.34352387361696
Optimization terminated successfully (Exit mode 0)
Current function value: 149.34352387361696
Iterations: 15
Function evaluations: 126
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 596.3772573743456
Iteration: 2, Func. Count: 21, Neg. LLF: 275.5444192642829
Iteration: 3, Func. Count: 31, Neg. LLF: 149.82036967054387
Iteration: 4, Func. Count: 40, Neg. LLF: 149.4406332959627
Iteration: 5, Func. Count: 49, Neg. LLF: 151.5792248766977
Iteration: 6, Func. Count: 60, Neg. LLF: 149.37605790579497
Iteration: 7, Func. Count: 69, Neg. LLF: 149.27177196517894
Iteration: 8, Func. Count: 78, Neg. LLF: 149.25749070061462
Iteration: 9, Func. Count: 87, Neg. LLF: 149.250950051975
Iteration: 10, Func. Count: 96, Neg. LLF: 149.24686283752675
Iteration: 11, Func. Count: 105, Neg. LLF: 149.24360054610392
Iteration: 12, Func. Count: 114, Neg. LLF: 149.24339109972104
Iteration: 13, Func. Count: 123, Neg. LLF: 149.24338425276395
Iteration: 14, Func. Count: 131, Neg. LLF: 149.24338425269005
Optimization terminated successfully (Exit mode 0)
Current function value: 149.24338425276395
Iterations: 14
Function evaluations: 131
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 154.54122076330447
Iteration: 2, Func. Count: 23, Neg. LLF: 152.01110634878677
Iteration: 3, Func. Count: 34, Neg. LLF: 151.5645670107306
Iteration: 4, Func. Count: 45, Neg. LLF: 149.5722764147073
Iteration: 5, Func. Count: 55, Neg. LLF: 154.85600668639643
Iteration: 6, Func. Count: 67, Neg. LLF: 149.4237768495532
Iteration: 7, Func. Count: 77, Neg. LLF: 149.34799377565145
Iteration: 8, Func. Count: 87, Neg. LLF: 149.34705969485327
Iteration: 9, Func. Count: 97, Neg. LLF: 149.34626226094605
Iteration: 10, Func. Count: 107, Neg. LLF: 149.34498462763398
Iteration: 11, Func. Count: 117, Neg. LLF: 149.34399368351515
Iteration: 12, Func. Count: 127, Neg. LLF: 149.3436197608728
Iteration: 13, Func. Count: 137, Neg. LLF: 149.34355026880007
Iteration: 14, Func. Count: 147, Neg. LLF: 149.343532532944
Iteration: 15, Func. Count: 157, Neg. LLF: 149.34352524692574
Iteration: 16, Func. Count: 167, Neg. LLF: 149.3435239476466
Iteration: 17, Func. Count: 176, Neg. LLF: 149.34352405272276
Optimization terminated successfully (Exit mode 0)
Current function value: 149.3435239476466
Iterations: 17
Function evaluations: 176
Gradient evaluations: 17
Iteration: 1, Func. Count: 12, Neg. LLF: 154.02671868212187
Iteration: 2, Func. Count: 24, Neg. LLF: 150.04157271674916
Iteration: 3, Func. Count: 35, Neg. LLF: 149.50764974163934
Iteration: 4, Func. Count: 46, Neg. LLF: 170.98753379423653
Iteration: 5, Func. Count: 58, Neg. LLF: 149.88641217502862
Iteration: 6, Func. Count: 70, Neg. LLF: 149.21645384293305
Iteration: 7, Func. Count: 82, Neg. LLF: 149.20980408336402
Iteration: 8, Func. Count: 94, Neg. LLF: 149.09101441895854
Iteration: 9, Func. Count: 105, Neg. LLF: 149.00796480293243
Iteration: 10, Func. Count: 116, Neg. LLF: 148.92598534824967
Iteration: 11, Func. Count: 127, Neg. LLF: 148.8682908180834
Iteration: 12, Func. Count: 138, Neg. LLF: 148.79683589297107
Iteration: 13, Func. Count: 149, Neg. LLF: 148.77598653300083
Iteration: 14, Func. Count: 160, Neg. LLF: 148.765326311276
Iteration: 15, Func. Count: 171, Neg. LLF: 148.76125409493997
Iteration: 16, Func. Count: 182, Neg. LLF: 148.7608319908488
Iteration: 17, Func. Count: 193, Neg. LLF: 148.76080724608903
Iteration: 18, Func. Count: 203, Neg. LLF: 148.7608072461031
Optimization terminated successfully (Exit mode 0)
Current function value: 148.76080724608903
Iterations: 18
Function evaluations: 203
Gradient evaluations: 18
Iteration: 1, Func. Count: 9, Neg. LLF: 155.4123627104815
Iteration: 2, Func. Count: 18, Neg. LLF: 152.04581736087164
Iteration: 3, Func. Count: 27, Neg. LLF: 149.7072806158037
Iteration: 4, Func. Count: 35, Neg. LLF: 153.31144448951872
Iteration: 5, Func. Count: 44, Neg. LLF: 149.43319888504644
Iteration: 6, Func. Count: 52, Neg. LLF: 150.54082645936637
Iteration: 7, Func. Count: 61, Neg. LLF: 149.38983410614244
Iteration: 8, Func. Count: 69, Neg. LLF: 149.34683432604965
Iteration: 9, Func. Count: 77, Neg. LLF: 149.34582526247766
Iteration: 10, Func. Count: 85, Neg. LLF: 149.34531356831414
Iteration: 11, Func. Count: 93, Neg. LLF: 149.34464733345857
Iteration: 12, Func. Count: 101, Neg. LLF: 149.34387123608764
Iteration: 13, Func. Count: 109, Neg. LLF: 149.34357680923551
Iteration: 14, Func. Count: 117, Neg. LLF: 149.3435256806767
Iteration: 15, Func. Count: 125, Neg. LLF: 149.3435238839999
Iteration: 16, Func. Count: 132, Neg. LLF: 149.3435240599234
Optimization terminated successfully (Exit mode 0)
Current function value: 149.3435238839999
Iterations: 16
Function evaluations: 132
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 154.70441403979984
Iteration: 2, Func. Count: 20, Neg. LLF: 150.72702395096493
Iteration: 3, Func. Count: 29, Neg. LLF: 152.64269064687988
Iteration: 4, Func. Count: 39, Neg. LLF: 152.69687267874065
Iteration: 5, Func. Count: 49, Neg. LLF: 150.06802891919665
Iteration: 6, Func. Count: 59, Neg. LLF: 149.40704253100844
Iteration: 7, Func. Count: 68, Neg. LLF: 149.35573750692265
Iteration: 8, Func. Count: 77, Neg. LLF: 149.34642103461948
Iteration: 9, Func. Count: 86, Neg. LLF: 149.34493414221177
Iteration: 10, Func. Count: 95, Neg. LLF: 149.34463528521283
Iteration: 11, Func. Count: 104, Neg. LLF: 149.3443834396882
Iteration: 12, Func. Count: 113, Neg. LLF: 149.34379004373733
Iteration: 13, Func. Count: 122, Neg. LLF: 149.34357388372638
Iteration: 14, Func. Count: 131, Neg. LLF: 149.34352681932984
Iteration: 15, Func. Count: 140, Neg. LLF: 149.34352392380757
Iteration: 16, Func. Count: 148, Neg. LLF: 149.34352407468523
Optimization terminated successfully (Exit mode 0)
Current function value: 149.34352392380757
Iterations: 16
Function evaluations: 148
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 594.3727689679025
Iteration: 2, Func. Count: 23, Neg. LLF: 265.06019942989263
Iteration: 3, Func. Count: 34, Neg. LLF: 149.86399305952955
Iteration: 4, Func. Count: 44, Neg. LLF: 149.4394578186523
Iteration: 5, Func. Count: 54, Neg. LLF: 150.50644464588405
Iteration: 6, Func. Count: 66, Neg. LLF: 149.5148815673708
Iteration: 7, Func. Count: 77, Neg. LLF: 149.2669144482137
Iteration: 8, Func. Count: 87, Neg. LLF: 149.25746172216765
Iteration: 9, Func. Count: 97, Neg. LLF: 149.249161232997
Iteration: 10, Func. Count: 107, Neg. LLF: 149.2455683775407
Iteration: 11, Func. Count: 117, Neg. LLF: 149.24338943590158
Iteration: 12, Func. Count: 127, Neg. LLF: 149.2433845449034
Iteration: 13, Func. Count: 137, Neg. LLF: 149.24338405429364
Optimization terminated successfully (Exit mode 0)
Current function value: 149.24338405429364
Iterations: 13
Function evaluations: 137
Gradient evaluations: 13
Iteration: 1, Func. Count: 12, Neg. LLF: 154.53597141302993
Iteration: 2, Func. Count: 24, Neg. LLF: 150.26503997502476
Iteration: 3, Func. Count: 35, Neg. LLF: 152.3481053946917
Iteration: 4, Func. Count: 47, Neg. LLF: 156.38118281962593
Iteration: 5, Func. Count: 59, Neg. LLF: 149.44944153837412
Iteration: 6, Func. Count: 70, Neg. LLF: 150.4250433269373
Iteration: 7, Func. Count: 82, Neg. LLF: 149.35309341885795
Iteration: 8, Func. Count: 93, Neg. LLF: 149.3459864594145
Iteration: 9, Func. Count: 104, Neg. LLF: 149.34516495339884
Iteration: 10, Func. Count: 115, Neg. LLF: 149.34483815814335
Iteration: 11, Func. Count: 126, Neg. LLF: 149.34446837820224
Iteration: 12, Func. Count: 137, Neg. LLF: 149.3439199897501
Iteration: 13, Func. Count: 148, Neg. LLF: 149.34360414048575
Iteration: 14, Func. Count: 159, Neg. LLF: 149.34352933316646
Iteration: 15, Func. Count: 170, Neg. LLF: 149.34352394996284
Iteration: 16, Func. Count: 180, Neg. LLF: 149.34352405501855
Optimization terminated successfully (Exit mode 0)
Current function value: 149.34352394996284
Iterations: 16
Function evaluations: 180
Gradient evaluations: 16
Iteration: 1, Func. Count: 13, Neg. LLF: 153.89475423263187
Iteration: 2, Func. Count: 26, Neg. LLF: 150.01284859024287
Iteration: 3, Func. Count: 38, Neg. LLF: 149.55663452381057
Iteration: 4, Func. Count: 50, Neg. LLF: 168.87308833873843
Iteration: 5, Func. Count: 63, Neg. LLF: 149.79187659068947
Iteration: 6, Func. Count: 76, Neg. LLF: 149.74075932645496
Iteration: 7, Func. Count: 89, Neg. LLF: 149.1156769488734
Iteration: 8, Func. Count: 101, Neg. LLF: 149.0851319628467
Iteration: 9, Func. Count: 113, Neg. LLF: 148.97720839089178
Iteration: 10, Func. Count: 125, Neg. LLF: 148.9058518968042
Iteration: 11, Func. Count: 137, Neg. LLF: 148.84558957030902
Iteration: 12, Func. Count: 149, Neg. LLF: 148.78845234879412
Iteration: 13, Func. Count: 161, Neg. LLF: 148.7711125429269
Iteration: 14, Func. Count: 173, Neg. LLF: 148.76277754513094
Iteration: 15, Func. Count: 185, Neg. LLF: 148.76088022300522
Iteration: 16, Func. Count: 197, Neg. LLF: 148.76081327248932
Iteration: 17, Func. Count: 209, Neg. LLF: 148.7608076252288
Iteration: 18, Func. Count: 221, Neg. LLF: 148.76080720698891
Optimization terminated successfully (Exit mode 0)
Current function value: 148.76080720698891
Iterations: 18
Function evaluations: 221
Gradient evaluations: 18
Iteration: 1, Func. Count: 10, Neg. LLF: 155.32894605700176
Iteration: 2, Func. Count: 20, Neg. LLF: 151.94598319009722
Iteration: 3, Func. Count: 30, Neg. LLF: 149.7316393455476
Iteration: 4, Func. Count: 39, Neg. LLF: 152.70004418982856
Iteration: 5, Func. Count: 49, Neg. LLF: 149.40365657478682
Iteration: 6, Func. Count: 58, Neg. LLF: 150.47841277088594
Iteration: 7, Func. Count: 68, Neg. LLF: 149.35022990312925
Iteration: 8, Func. Count: 77, Neg. LLF: 149.34735489812863
Iteration: 9, Func. Count: 86, Neg. LLF: 149.34638962366145
Iteration: 10, Func. Count: 95, Neg. LLF: 149.34580714594568
Iteration: 11, Func. Count: 104, Neg. LLF: 149.3441119658953
Iteration: 12, Func. Count: 113, Neg. LLF: 149.34363053229674
Iteration: 13, Func. Count: 122, Neg. LLF: 149.3435266754449
Iteration: 14, Func. Count: 131, Neg. LLF: 149.34352389109205
Iteration: 15, Func. Count: 139, Neg. LLF: 149.3435239613754
Optimization terminated successfully (Exit mode 0)
Current function value: 149.34352389109205
Iterations: 15
Function evaluations: 139
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 496.6890829975917
Iteration: 2, Func. Count: 23, Neg. LLF: 225.1887154136924
Iteration: 3, Func. Count: 35, Neg. LLF: 151.44759954795455
Iteration: 4, Func. Count: 45, Neg. LLF: 151.37296662691935
Iteration: 5, Func. Count: 55, Neg. LLF: 151.26100473113613
Iteration: 6, Func. Count: 65, Neg. LLF: 150.8494899176448
Iteration: 7, Func. Count: 75, Neg. LLF: 150.82538284793384
Iteration: 8, Func. Count: 85, Neg. LLF: 150.81205773159377
Iteration: 9, Func. Count: 95, Neg. LLF: 150.8015248337291
Iteration: 10, Func. Count: 105, Neg. LLF: 150.80112113083712
Iteration: 11, Func. Count: 115, Neg. LLF: 150.80111362465266
Iteration: 12, Func. Count: 125, Neg. LLF: 151.34659890718737
Optimization terminated successfully (Exit mode 0)
Current function value: 150.8011136237343
Iterations: 13
Function evaluations: 130
Gradient evaluations: 12
Iteration: 1, Func. Count: 12, Neg. LLF: 597.5096289995115
Iteration: 2, Func. Count: 25, Neg. LLF: 238.70462538068847
Iteration: 3, Func. Count: 37, Neg. LLF: 149.73249497310766
Iteration: 4, Func. Count: 48, Neg. LLF: 149.45480741512225
Iteration: 5, Func. Count: 59, Neg. LLF: 152.72713026147454
Iteration: 6, Func. Count: 72, Neg. LLF: 149.35851194498952
Iteration: 7, Func. Count: 83, Neg. LLF: 149.26650344514601
Iteration: 8, Func. Count: 94, Neg. LLF: 149.25682146583983
Iteration: 9, Func. Count: 105, Neg. LLF: 149.2493418276323
Iteration: 10, Func. Count: 116, Neg. LLF: 149.24615287317968
Iteration: 11, Func. Count: 127, Neg. LLF: 149.24339807839687
Iteration: 12, Func. Count: 138, Neg. LLF: 149.2433845395569
Iteration: 13, Func. Count: 149, Neg. LLF: 149.24338399220701
Optimization terminated successfully (Exit mode 0)
Current function value: 149.24338399220701
Iterations: 13
Function evaluations: 149
Gradient evaluations: 13
Iteration: 1, Func. Count: 13, Neg. LLF: 154.53141556458232
Iteration: 2, Func. Count: 27, Neg. LLF: 152.0043642280743
Iteration: 3, Func. Count: 40, Neg. LLF: 151.55499318540694
Iteration: 4, Func. Count: 53, Neg. LLF: 149.57172456945204
Iteration: 5, Func. Count: 65, Neg. LLF: 154.33517093680425
Iteration: 6, Func. Count: 79, Neg. LLF: 149.42300610849762
Iteration: 7, Func. Count: 91, Neg. LLF: 149.34804251971215
Iteration: 8, Func. Count: 103, Neg. LLF: 149.34709400770856
Iteration: 9, Func. Count: 115, Neg. LLF: 149.3462778072607
Iteration: 10, Func. Count: 127, Neg. LLF: 149.34499901219326
Iteration: 11, Func. Count: 139, Neg. LLF: 149.34402490903068
Iteration: 12, Func. Count: 151, Neg. LLF: 149.34364893158715
Iteration: 13, Func. Count: 163, Neg. LLF: 149.3435640691003
Iteration: 14, Func. Count: 175, Neg. LLF: 149.34353589007466
Iteration: 15, Func. Count: 187, Neg. LLF: 149.34352559772597
Iteration: 16, Func. Count: 199, Neg. LLF: 149.3435239537419
Iteration: 17, Func. Count: 210, Neg. LLF: 149.34352405881032
Optimization terminated successfully (Exit mode 0)
Current function value: 149.3435239537419
Iterations: 17
Function evaluations: 210
Gradient evaluations: 17
Iteration: 1, Func. Count: 14, Neg. LLF: 153.70765386081408
Iteration: 2, Func. Count: 28, Neg. LLF: 149.98355166132768
Iteration: 3, Func. Count: 41, Neg. LLF: 149.96018854584705
Iteration: 4, Func. Count: 55, Neg. LLF: 167.3774753594224
Iteration: 5, Func. Count: 69, Neg. LLF: 149.7706210407616
Iteration: 6, Func. Count: 83, Neg. LLF: 149.16328981291042
Iteration: 7, Func. Count: 96, Neg. LLF: 149.1201914542856
Iteration: 8, Func. Count: 109, Neg. LLF: 149.08651250502987
Iteration: 9, Func. Count: 122, Neg. LLF: 149.02321506758412
Iteration: 10, Func. Count: 135, Neg. LLF: 148.90571989503556
Iteration: 11, Func. Count: 148, Neg. LLF: 148.8330017734283
Iteration: 12, Func. Count: 161, Neg. LLF: 148.7785782244225
Iteration: 13, Func. Count: 174, Neg. LLF: 148.76907018827575
Iteration: 14, Func. Count: 187, Neg. LLF: 148.7619103519604
Iteration: 15, Func. Count: 200, Neg. LLF: 148.76105885809125
Iteration: 16, Func. Count: 213, Neg. LLF: 148.76083684223568
Iteration: 17, Func. Count: 226, Neg. LLF: 148.76080746493557
Iteration: 18, Func. Count: 238, Neg. LLF: 148.76080746484064
Optimization terminated successfully (Exit mode 0)
Current function value: 148.76080746493557
Iterations: 18
Function evaluations: 238
Gradient evaluations: 18
Iteration: 1, Func. Count: 7, Neg. LLF: 150.8365221298436
Iteration: 2, Func. Count: 13, Neg. LLF: 151.05635238546347
Iteration: 3, Func. Count: 20, Neg. LLF: 150.42914312414754
Iteration: 4, Func. Count: 26, Neg. LLF: 154.70789701396257
Iteration: 5, Func. Count: 33, Neg. LLF: 151.07065526602884
Iteration: 6, Func. Count: 40, Neg. LLF: 150.181099687249
Iteration: 7, Func. Count: 46, Neg. LLF: 150.17848950078883
Iteration: 8, Func. Count: 52, Neg. LLF: 150.1759889764917
Iteration: 9, Func. Count: 58, Neg. LLF: 150.16771649479395
Iteration: 10, Func. Count: 64, Neg. LLF: 150.13387562895878
Iteration: 11, Func. Count: 70, Neg. LLF: 150.1166739296425
Iteration: 12, Func. Count: 76, Neg. LLF: 150.10481916897507
Iteration: 13, Func. Count: 82, Neg. LLF: 150.10446507012773
Iteration: 14, Func. Count: 88, Neg. LLF: 150.1044489637764
Iteration: 15, Func. Count: 94, Neg. LLF: 150.104446678621
Iteration: 16, Func. Count: 99, Neg. LLF: 150.10444695289854
Optimization terminated successfully (Exit mode 0)
Current function value: 150.104446678621
Iterations: 16
Function evaluations: 99
Gradient evaluations: 16
Iteration: 1, Func. Count: 8, Neg. LLF: 529.7102454327897
Iteration: 2, Func. Count: 17, Neg. LLF: 151.48041354952343
Iteration: 3, Func. Count: 24, Neg. LLF: 150.9050548660368
Iteration: 4, Func. Count: 31, Neg. LLF: 151.9466261891846
Iteration: 5, Func. Count: 39, Neg. LLF: 150.83735578938598
Iteration: 6, Func. Count: 47, Neg. LLF: 150.80111373308455
Iteration: 7, Func. Count: 54, Neg. LLF: 150.80111300895445
Optimization terminated successfully (Exit mode 0)
Current function value: 150.80111300895445
Iterations: 7
Function evaluations: 54
Gradient evaluations: 7
Iteration: 1, Func. Count: 9, Neg. LLF: 636.0280151777537
Iteration: 2, Func. Count: 19, Neg. LLF: 151.21377668422326
Iteration: 3, Func. Count: 27, Neg. LLF: 151.30029202753468
Iteration: 4, Func. Count: 36, Neg. LLF: 151.74431732076653
Iteration: 5, Func. Count: 45, Neg. LLF: 150.2446812819308
Iteration: 6, Func. Count: 53, Neg. LLF: 157.1707177017438
Iteration: 7, Func. Count: 62, Neg. LLF: 149.85445081114247
Iteration: 8, Func. Count: 70, Neg. LLF: 149.81339561114635
Iteration: 9, Func. Count: 78, Neg. LLF: 149.77360850813918
Iteration: 10, Func. Count: 86, Neg. LLF: 149.7451752451175
Iteration: 11, Func. Count: 94, Neg. LLF: 149.71751602270274
Iteration: 12, Func. Count: 102, Neg. LLF: 149.7055942440995
Iteration: 13, Func. Count: 110, Neg. LLF: 230.9986499136271
Iteration: 14, Func. Count: 121, Neg. LLF: 152.48043598708173
Iteration: 15, Func. Count: 131, Neg. LLF: 149.69982944443873
Iteration: 16, Func. Count: 139, Neg. LLF: 149.69983752328693
Iteration: 17, Func. Count: 148, Neg. LLF: 149.69972924380906
Iteration: 18, Func. Count: 156, Neg. LLF: 149.69969564171745
Iteration: 19, Func. Count: 164, Neg. LLF: 149.69968887285083
Iteration: 20, Func. Count: 172, Neg. LLF: 149.6996883123819
Optimization terminated successfully (Exit mode 0)
Current function value: 149.6996883123819
Iterations: 21
Function evaluations: 172
Gradient evaluations: 20
Iteration: 1, Func. Count: 10, Neg. LLF: 681.1694515098746
Iteration: 2, Func. Count: 21, Neg. LLF: 151.02772595644046
Iteration: 3, Func. Count: 30, Neg. LLF: 150.85010355386578
Iteration: 4, Func. Count: 39, Neg. LLF: 150.7676796043021
Iteration: 5, Func. Count: 48, Neg. LLF: 150.75514963084498
Iteration: 6, Func. Count: 57, Neg. LLF: 150.7518740353581
Iteration: 7, Func. Count: 66, Neg. LLF: 150.75118910470988
Iteration: 8, Func. Count: 75, Neg. LLF: 150.75095038731703
Iteration: 9, Func. Count: 83, Neg. LLF: 150.7509503876163
Optimization terminated successfully (Exit mode 0)
Current function value: 150.75095038731703
Iterations: 9
Function evaluations: 83
Gradient evaluations: 9
Iteration: 1, Func. Count: 11, Neg. LLF: 677.7074762530648
Iteration: 2, Func. Count: 23, Neg. LLF: 162.14912635632044
Iteration: 3, Func. Count: 35, Neg. LLF: 150.69172642519212
Iteration: 4, Func. Count: 45, Neg. LLF: 150.93686427412422
Iteration: 5, Func. Count: 56, Neg. LLF: 151.04522334058112
Iteration: 6, Func. Count: 67, Neg. LLF: 150.88651305694532
Iteration: 7, Func. Count: 78, Neg. LLF: 204.23453967756754
Iteration: 8, Func. Count: 90, Neg. LLF: 150.59701247934953
Iteration: 9, Func. Count: 101, Neg. LLF: 150.05034948291353
Iteration: 10, Func. Count: 111, Neg. LLF: 150.02267344503394
Iteration: 11, Func. Count: 121, Neg. LLF: 150.00676656602158
Iteration: 12, Func. Count: 131, Neg. LLF: 150.00407377059523
Iteration: 13, Func. Count: 141, Neg. LLF: 149.99944045060008
Iteration: 14, Func. Count: 151, Neg. LLF: 149.95525561993537
Iteration: 15, Func. Count: 161, Neg. LLF: 149.8951751526787
Iteration: 16, Func. Count: 171, Neg. LLF: 149.8624307300271
Iteration: 17, Func. Count: 181, Neg. LLF: 149.72888469233953
Iteration: 18, Func. Count: 191, Neg. LLF: 149.67367151046574
Iteration: 19, Func. Count: 201, Neg. LLF: 149.65683923143172
Iteration: 20, Func. Count: 211, Neg. LLF: 149.61750312820323
Iteration: 21, Func. Count: 221, Neg. LLF: 149.5568420658415
Iteration: 22, Func. Count: 231, Neg. LLF: 149.53875152970136
Iteration: 23, Func. Count: 241, Neg. LLF: 149.53551984604394
Iteration: 24, Func. Count: 251, Neg. LLF: 149.53426733145534
Iteration: 25, Func. Count: 261, Neg. LLF: 149.5325057366329
Iteration: 26, Func. Count: 271, Neg. LLF: 149.52826885280032
Iteration: 27, Func. Count: 281, Neg. LLF: 149.52469581537568
Iteration: 28, Func. Count: 291, Neg. LLF: 149.52349052784334
Iteration: 29, Func. Count: 301, Neg. LLF: 149.52345149622084
Iteration: 30, Func. Count: 311, Neg. LLF: 149.5234480368851
Iteration: 31, Func. Count: 320, Neg. LLF: 149.52344803690946
Optimization terminated successfully (Exit mode 0)
Current function value: 149.5234480368851
Iterations: 31
Function evaluations: 320
Gradient evaluations: 31
Iteration: 1, Func. Count: 8, Neg. LLF: 151.75262977206404
Iteration: 2, Func. Count: 15, Neg. LLF: 151.2680312914111
Iteration: 3, Func. Count: 22, Neg. LLF: 150.4992530075474
Iteration: 4, Func. Count: 29, Neg. LLF: 164.84344849428362
Iteration: 5, Func. Count: 37, Neg. LLF: 150.2104581842738
Iteration: 6, Func. Count: 45, Neg. LLF: 150.13677374799033
Iteration: 7, Func. Count: 52, Neg. LLF: 150.13341178158473
Iteration: 8, Func. Count: 59, Neg. LLF: 150.12221465716252
Iteration: 9, Func. Count: 66, Neg. LLF: 150.11139853555497
Iteration: 10, Func. Count: 73, Neg. LLF: 150.0917285000756
Iteration: 11, Func. Count: 80, Neg. LLF: 150.07545684765597
Iteration: 12, Func. Count: 87, Neg. LLF: 150.06641430118137
Iteration: 13, Func. Count: 94, Neg. LLF: 150.0673679144844
Iteration: 14, Func. Count: 102, Neg. LLF: 150.06546459737788
Iteration: 15, Func. Count: 110, Neg. LLF: 150.06508189094586
Iteration: 16, Func. Count: 117, Neg. LLF: 150.06507912772534
Iteration: 17, Func. Count: 123, Neg. LLF: 150.0650791282203
Optimization terminated successfully (Exit mode 0)
Current function value: 150.06507912772534
Iterations: 17
Function evaluations: 123
Gradient evaluations: 17
Iteration: 1, Func. Count: 9, Neg. LLF: 488.30358181148927
Iteration: 2, Func. Count: 19, Neg. LLF: 166.6952131603566
Iteration: 3, Func. Count: 28, Neg. LLF: 151.45474357349804
Iteration: 4, Func. Count: 36, Neg. LLF: 151.3535968813128
Iteration: 5, Func. Count: 44, Neg. LLF: 151.23566303914535
Iteration: 6, Func. Count: 52, Neg. LLF: 151.03227637555204
Iteration: 7, Func. Count: 60, Neg. LLF: 151.2331368039724
Iteration: 8, Func. Count: 69, Neg. LLF: 150.81230441991988
Iteration: 9, Func. Count: 77, Neg. LLF: 150.80472010126445
Iteration: 10, Func. Count: 85, Neg. LLF: 150.80154402704136
Iteration: 11, Func. Count: 93, Neg. LLF: 150.80122678230757
Iteration: 12, Func. Count: 101, Neg. LLF: 150.80111345761483
Iteration: 13, Func. Count: 108, Neg. LLF: 150.80111345952045
Optimization terminated successfully (Exit mode 0)
Current function value: 150.80111345761483
Iterations: 13
Function evaluations: 108
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 580.8768553971413
Iteration: 2, Func. Count: 21, Neg. LLF: 168.0378888660465
Iteration: 3, Func. Count: 31, Neg. LLF: 158.19360498728923
Iteration: 4, Func. Count: 42, Neg. LLF: 151.3441162189019
Iteration: 5, Func. Count: 51, Neg. LLF: 151.10836903808644
Iteration: 6, Func. Count: 60, Neg. LLF: 150.87726045689337
Iteration: 7, Func. Count: 69, Neg. LLF: 151.02218627428098
Iteration: 8, Func. Count: 79, Neg. LLF: 150.81120287033355
Iteration: 9, Func. Count: 88, Neg. LLF: 150.81114804475746
Iteration: 10, Func. Count: 97, Neg. LLF: 150.81077991548352
Iteration: 11, Func. Count: 106, Neg. LLF: 150.80955620706078
Iteration: 12, Func. Count: 115, Neg. LLF: 150.80600950675566
Iteration: 13, Func. Count: 124, Neg. LLF: 150.8044420384707
Iteration: 14, Func. Count: 133, Neg. LLF: 150.80114351478545
Iteration: 15, Func. Count: 142, Neg. LLF: 150.80111334763347
Iteration: 16, Func. Count: 151, Neg. LLF: 150.8011133772084
Optimization terminated successfully (Exit mode 0)
Current function value: 150.8011131020088
Iterations: 16
Function evaluations: 152
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 629.5617235911825
Iteration: 2, Func. Count: 23, Neg. LLF: 174.85854210199574
Iteration: 3, Func. Count: 34, Neg. LLF: 155.64147473467958
Iteration: 4, Func. Count: 46, Neg. LLF: 153.38350805473368
Iteration: 5, Func. Count: 57, Neg. LLF: 151.59704653299087
Iteration: 6, Func. Count: 68, Neg. LLF: 151.40042605198724
Iteration: 7, Func. Count: 79, Neg. LLF: 151.1417475476984
Iteration: 8, Func. Count: 90, Neg. LLF: 150.67268815528732
Iteration: 9, Func. Count: 100, Neg. LLF: 150.63716460758096
Iteration: 10, Func. Count: 110, Neg. LLF: 150.6307790021013
Iteration: 11, Func. Count: 120, Neg. LLF: 150.629670443397
Iteration: 12, Func. Count: 130, Neg. LLF: 150.62803312922617
Iteration: 13, Func. Count: 140, Neg. LLF: 150.62786939151607
Iteration: 14, Func. Count: 150, Neg. LLF: 150.62785744160584
Iteration: 15, Func. Count: 160, Neg. LLF: 150.6278430162195
Iteration: 16, Func. Count: 170, Neg. LLF: 150.6276694686152
Iteration: 17, Func. Count: 180, Neg. LLF: 150.63068232792318
Iteration: 18, Func. Count: 191, Neg. LLF: 150.62745503650356
Iteration: 19, Func. Count: 201, Neg. LLF: 150.62694729522397
Iteration: 20, Func. Count: 211, Neg. LLF: 150.62496782671434
Iteration: 21, Func. Count: 221, Neg. LLF: 150.6214961403574
Iteration: 22, Func. Count: 231, Neg. LLF: 150.62054793659706
Iteration: 23, Func. Count: 241, Neg. LLF: 150.6203587556592
Iteration: 24, Func. Count: 251, Neg. LLF: 150.62026748961048
Iteration: 25, Func. Count: 260, Neg. LLF: 150.62026748965658
Optimization terminated successfully (Exit mode 0)
Current function value: 150.62026748961048
Iterations: 25
Function evaluations: 260
Gradient evaluations: 25
Iteration: 1, Func. Count: 12, Neg. LLF: 634.9236575340078
Iteration: 2, Func. Count: 25, Neg. LLF: 164.81424145748926
Iteration: 3, Func. Count: 37, Neg. LLF: 151.76154979255804
Iteration: 4, Func. Count: 49, Neg. LLF: 151.42688215543197
Iteration: 5, Func. Count: 61, Neg. LLF: 151.08619895782383
Iteration: 6, Func. Count: 73, Neg. LLF: 151.13430590722962
Iteration: 7, Func. Count: 85, Neg. LLF: 150.8875396756415
Iteration: 8, Func. Count: 96, Neg. LLF: 150.86515106581487
Iteration: 9, Func. Count: 107, Neg. LLF: 150.66998782219542
Iteration: 10, Func. Count: 118, Neg. LLF: 150.7539086522302
Iteration: 11, Func. Count: 130, Neg. LLF: 151.11098768623134
Iteration: 12, Func. Count: 142, Neg. LLF: 150.6111110927858
Iteration: 13, Func. Count: 153, Neg. LLF: 150.58890747818248
Iteration: 14, Func. Count: 164, Neg. LLF: 150.58144641825564
Iteration: 15, Func. Count: 175, Neg. LLF: 150.5769032480356
Iteration: 16, Func. Count: 186, Neg. LLF: 150.57633429203386
Iteration: 17, Func. Count: 197, Neg. LLF: 150.57622336249895
Iteration: 18, Func. Count: 208, Neg. LLF: 150.57616401762522
Iteration: 19, Func. Count: 219, Neg. LLF: 150.57616256043764
Iteration: 20, Func. Count: 229, Neg. LLF: 150.57616256039108
Optimization terminated successfully (Exit mode 0)
Current function value: 150.57616256043764
Iterations: 20
Function evaluations: 229
Gradient evaluations: 20
Iteration: 1, Func. Count: 9, Neg. LLF: 154.26840224348754
Iteration: 2, Func. Count: 18, Neg. LLF: 152.84407447963116
Iteration: 3, Func. Count: 27, Neg. LLF: 149.7523296382743
Iteration: 4, Func. Count: 35, Neg. LLF: 149.51717642380692
Iteration: 5, Func. Count: 43, Neg. LLF: 149.6591664412008
Iteration: 6, Func. Count: 52, Neg. LLF: 151.78453608874088
Iteration: 7, Func. Count: 61, Neg. LLF: 149.35588525825904
Iteration: 8, Func. Count: 69, Neg. LLF: 149.35124058487028
Iteration: 9, Func. Count: 77, Neg. LLF: 149.3496105852988
Iteration: 10, Func. Count: 85, Neg. LLF: 149.3481801257102
Iteration: 11, Func. Count: 93, Neg. LLF: 149.34411145300874
Iteration: 12, Func. Count: 101, Neg. LLF: 149.34358226534923
Iteration: 13, Func. Count: 109, Neg. LLF: 149.3435241843897
Iteration: 14, Func. Count: 116, Neg. LLF: 149.3435241844225
Optimization terminated successfully (Exit mode 0)
Current function value: 149.3435241843897
Iterations: 14
Function evaluations: 116
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 490.688544365563
Iteration: 2, Func. Count: 21, Neg. LLF: 239.33310944375742
Iteration: 3, Func. Count: 32, Neg. LLF: 151.4568484699601
Iteration: 4, Func. Count: 41, Neg. LLF: 151.3804002490743
Iteration: 5, Func. Count: 50, Neg. LLF: 151.28527482406037
Iteration: 6, Func. Count: 59, Neg. LLF: 150.8629019572446
Iteration: 7, Func. Count: 68, Neg. LLF: 150.8210061118313
Iteration: 8, Func. Count: 77, Neg. LLF: 150.8083493038794
Iteration: 9, Func. Count: 86, Neg. LLF: 150.8374306193091
Iteration: 10, Func. Count: 96, Neg. LLF: 150.80111543367158
Iteration: 11, Func. Count: 105, Neg. LLF: 150.80111340088845
Iteration: 12, Func. Count: 113, Neg. LLF: 150.8011134008922
Optimization terminated successfully (Exit mode 0)
Current function value: 150.80111340088845
Iterations: 13
Function evaluations: 113
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 587.4380490726525
Iteration: 2, Func. Count: 23, Neg. LLF: 279.15522107804463
Iteration: 3, Func. Count: 34, Neg. LLF: 150.00704080055036
Iteration: 4, Func. Count: 44, Neg. LLF: 149.43388421464854
Iteration: 5, Func. Count: 54, Neg. LLF: 149.79678307753014
Iteration: 6, Func. Count: 66, Neg. LLF: 149.65590513908126
Iteration: 7, Func. Count: 77, Neg. LLF: 149.2889318852997
Iteration: 8, Func. Count: 88, Neg. LLF: 149.25928837376068
Iteration: 9, Func. Count: 98, Neg. LLF: 149.24938239975836
Iteration: 10, Func. Count: 108, Neg. LLF: 149.24547721915482
Iteration: 11, Func. Count: 118, Neg. LLF: 149.24340167112484
Iteration: 12, Func. Count: 128, Neg. LLF: 149.2433846763601
Iteration: 13, Func. Count: 138, Neg. LLF: 149.24338399887083
Optimization terminated successfully (Exit mode 0)
Current function value: 149.24338399887083
Iterations: 13
Function evaluations: 138
Gradient evaluations: 13
Iteration: 1, Func. Count: 12, Neg. LLF: 635.3210608067949
Iteration: 2, Func. Count: 25, Neg. LLF: 171.37303471581203
Iteration: 3, Func. Count: 37, Neg. LLF: 150.8715468275977
Iteration: 4, Func. Count: 48, Neg. LLF: 154.26696652905548
Iteration: 5, Func. Count: 60, Neg. LLF: 151.0391735800895
Iteration: 6, Func. Count: 72, Neg. LLF: 152.97147848628288
Iteration: 7, Func. Count: 85, Neg. LLF: 150.66606869420602
Iteration: 8, Func. Count: 96, Neg. LLF: 150.64013963123708
Iteration: 9, Func. Count: 107, Neg. LLF: 150.63515843713753
Iteration: 10, Func. Count: 118, Neg. LLF: 150.62141315951735
Iteration: 11, Func. Count: 129, Neg. LLF: 150.62007703675522
Iteration: 12, Func. Count: 140, Neg. LLF: 150.6198923660289
Iteration: 13, Func. Count: 151, Neg. LLF: 150.61987992885182
Iteration: 14, Func. Count: 161, Neg. LLF: 150.61987992880825
Optimization terminated successfully (Exit mode 0)
Current function value: 150.61987992885182
Iterations: 14
Function evaluations: 161
Gradient evaluations: 14
Iteration: 1, Func. Count: 13, Neg. LLF: 640.2052616199022
Iteration: 2, Func. Count: 27, Neg. LLF: 317.3727462977326
Iteration: 3, Func. Count: 40, Neg. LLF: 157.30087579195245
Iteration: 4, Func. Count: 54, Neg. LLF: 154.40968865943108
Iteration: 5, Func. Count: 67, Neg. LLF: 154.50093933317896
Iteration: 6, Func. Count: 80, Neg. LLF: 152.9272580231252
Iteration: 7, Func. Count: 93, Neg. LLF: 151.6065698171462
Iteration: 8, Func. Count: 106, Neg. LLF: 150.42899762584213
Iteration: 9, Func. Count: 119, Neg. LLF: 149.92705393996394
Iteration: 10, Func. Count: 131, Neg. LLF: 149.75712687355224
Iteration: 11, Func. Count: 143, Neg. LLF: 154.18346978489885
Iteration: 12, Func. Count: 157, Neg. LLF: 149.50190658706697
Iteration: 13, Func. Count: 169, Neg. LLF: 150.2790990477616
Iteration: 14, Func. Count: 182, Neg. LLF: 148.88663043143345
Iteration: 15, Func. Count: 194, Neg. LLF: 148.80158707161294
Iteration: 16, Func. Count: 206, Neg. LLF: 148.7717913281569
Iteration: 17, Func. Count: 218, Neg. LLF: 148.76517470169517
Iteration: 18, Func. Count: 230, Neg. LLF: 148.7639761835278
Iteration: 19, Func. Count: 242, Neg. LLF: 148.76321101663032
Iteration: 20, Func. Count: 254, Neg. LLF: 148.76246299398545
Iteration: 21, Func. Count: 266, Neg. LLF: 148.76187968261746
Iteration: 22, Func. Count: 278, Neg. LLF: 148.7615815997178
Iteration: 23, Func. Count: 290, Neg. LLF: 148.76136522768707
Iteration: 24, Func. Count: 302, Neg. LLF: 148.76109602570264
Iteration: 25, Func. Count: 314, Neg. LLF: 148.7608888144433
Iteration: 26, Func. Count: 326, Neg. LLF: 148.7608178396506
Iteration: 27, Func. Count: 338, Neg. LLF: 148.76080858402617
Iteration: 28, Func. Count: 350, Neg. LLF: 148.7608075590249
Iteration: 29, Func. Count: 361, Neg. LLF: 148.76080755894958
Optimization terminated successfully (Exit mode 0)
Current function value: 148.7608075590249
Iterations: 29
Function evaluations: 361
Gradient evaluations: 29
Iteration: 1, Func. Count: 10, Neg. LLF: 154.0466197671763
Iteration: 2, Func. Count: 20, Neg. LLF: 152.45025911690502
Iteration: 3, Func. Count: 30, Neg. LLF: 149.87782891879266
Iteration: 4, Func. Count: 39, Neg. LLF: 149.56188283113661
Iteration: 5, Func. Count: 48, Neg. LLF: 149.4171035075235
Iteration: 6, Func. Count: 57, Neg. LLF: 150.43405823401488
Iteration: 7, Func. Count: 67, Neg. LLF: 149.35917714109422
Iteration: 8, Func. Count: 76, Neg. LLF: 149.35052402344033
Iteration: 9, Func. Count: 85, Neg. LLF: 149.3487300686559
Iteration: 10, Func. Count: 94, Neg. LLF: 149.34771794041765
Iteration: 11, Func. Count: 103, Neg. LLF: 149.3445689223212
Iteration: 12, Func. Count: 112, Neg. LLF: 149.34374172161688
Iteration: 13, Func. Count: 121, Neg. LLF: 149.34352984859802
Iteration: 14, Func. Count: 130, Neg. LLF: 149.3435239064286
Iteration: 15, Func. Count: 138, Neg. LLF: 149.34352373050328
Optimization terminated successfully (Exit mode 0)
Current function value: 149.3435239064286
Iterations: 15
Function evaluations: 138
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 489.7814145436235
Iteration: 2, Func. Count: 23, Neg. LLF: 232.2051957161154
Iteration: 3, Func. Count: 35, Neg. LLF: 151.45254656946798
Iteration: 4, Func. Count: 45, Neg. LLF: 151.37592518132888
Iteration: 5, Func. Count: 55, Neg. LLF: 151.27484151812607
Iteration: 6, Func. Count: 65, Neg. LLF: 150.8537286431044
Iteration: 7, Func. Count: 75, Neg. LLF: 150.8221338942178
Iteration: 8, Func. Count: 85, Neg. LLF: 150.81239314551178
Iteration: 9, Func. Count: 95, Neg. LLF: 150.80388325776798
Iteration: 10, Func. Count: 105, Neg. LLF: 150.80112212074283
Iteration: 11, Func. Count: 115, Neg. LLF: 150.80112397771262
Iteration: 12, Func. Count: 126, Neg. LLF: 150.80112233629785
Optimization terminated successfully (Exit mode 0)
Current function value: 150.80112065333304
Iterations: 12
Function evaluations: 127
Gradient evaluations: 12
Iteration: 1, Func. Count: 12, Neg. LLF: 585.3362748136237
Iteration: 2, Func. Count: 25, Neg. LLF: 274.0579079971053
Iteration: 3, Func. Count: 37, Neg. LLF: 150.05074708210861
Iteration: 4, Func. Count: 48, Neg. LLF: 149.43805567631247
Iteration: 5, Func. Count: 59, Neg. LLF: 149.48421301287868
Iteration: 6, Func. Count: 71, Neg. LLF: 149.55411977896563
Iteration: 7, Func. Count: 83, Neg. LLF: 149.36598129282032
Iteration: 8, Func. Count: 95, Neg. LLF: 149.26075082399745
Iteration: 9, Func. Count: 106, Neg. LLF: 149.2524768259119
Iteration: 10, Func. Count: 117, Neg. LLF: 149.24612666945146
Iteration: 11, Func. Count: 128, Neg. LLF: 149.24350973949527
Iteration: 12, Func. Count: 139, Neg. LLF: 149.24339638609828
Iteration: 13, Func. Count: 150, Neg. LLF: 149.2433853932166
Iteration: 14, Func. Count: 161, Neg. LLF: 149.2433842422314
Iteration: 15, Func. Count: 172, Neg. LLF: 149.2452541079279
Optimization terminated successfully (Exit mode 0)
Current function value: 149.2433842378496
Iterations: 16
Function evaluations: 175
Gradient evaluations: 15
Iteration: 1, Func. Count: 13, Neg. LLF: 633.032213451065
Iteration: 2, Func. Count: 27, Neg. LLF: 170.80657926863617
Iteration: 3, Func. Count: 40, Neg. LLF: 150.870190304634
Iteration: 4, Func. Count: 52, Neg. LLF: 154.98022467609186
Iteration: 5, Func. Count: 65, Neg. LLF: 151.03317250232897
Iteration: 6, Func. Count: 78, Neg. LLF: 152.9116715830834
Iteration: 7, Func. Count: 92, Neg. LLF: 150.6652947484178
Iteration: 8, Func. Count: 104, Neg. LLF: 150.63878973051695
Iteration: 9, Func. Count: 116, Neg. LLF: 150.63207293237124
Iteration: 10, Func. Count: 128, Neg. LLF: 150.6210918925732
Iteration: 11, Func. Count: 140, Neg. LLF: 150.62002184688782
Iteration: 12, Func. Count: 152, Neg. LLF: 150.61989010224477
Iteration: 13, Func. Count: 164, Neg. LLF: 150.61987992383422
Iteration: 14, Func. Count: 175, Neg. LLF: 150.61987992384033
Optimization terminated successfully (Exit mode 0)
Current function value: 150.61987992383422
Iterations: 14
Function evaluations: 175
Gradient evaluations: 14
Iteration: 1, Func. Count: 14, Neg. LLF: 637.9727481534139
Iteration: 2, Func. Count: 29, Neg. LLF: 309.8253454570709
Iteration: 3, Func. Count: 43, Neg. LLF: 154.96679616415784
Iteration: 4, Func. Count: 58, Neg. LLF: 152.96998019452644
Iteration: 5, Func. Count: 72, Neg. LLF: 153.29507522879118
Iteration: 6, Func. Count: 86, Neg. LLF: 151.84525811872362
Iteration: 7, Func. Count: 100, Neg. LLF: 150.5904716462285
Iteration: 8, Func. Count: 114, Neg. LLF: 149.99737505219886
Iteration: 9, Func. Count: 127, Neg. LLF: 149.6718143674286
Iteration: 10, Func. Count: 140, Neg. LLF: 154.01411422409595
Iteration: 11, Func. Count: 155, Neg. LLF: 149.56208107470903
Iteration: 12, Func. Count: 168, Neg. LLF: 148.9681437776042
Iteration: 13, Func. Count: 181, Neg. LLF: 148.89699026530096
Iteration: 14, Func. Count: 194, Neg. LLF: 148.8074264664912
Iteration: 15, Func. Count: 207, Neg. LLF: 148.77903758814998
Iteration: 16, Func. Count: 220, Neg. LLF: 148.76147993813385
Iteration: 17, Func. Count: 233, Neg. LLF: 148.7611329845153
Iteration: 18, Func. Count: 246, Neg. LLF: 148.7610463883243
Iteration: 19, Func. Count: 259, Neg. LLF: 148.76097791943062
Iteration: 20, Func. Count: 272, Neg. LLF: 148.76095122152643
Iteration: 21, Func. Count: 285, Neg. LLF: 148.76090914631354
Iteration: 22, Func. Count: 298, Neg. LLF: 148.76085926815844
Iteration: 23, Func. Count: 311, Neg. LLF: 148.76082017911506
Iteration: 24, Func. Count: 324, Neg. LLF: 148.76080856371888
Iteration: 25, Func. Count: 337, Neg. LLF: 148.76080732321495
Iteration: 26, Func. Count: 349, Neg. LLF: 148.76080732322515
Optimization terminated successfully (Exit mode 0)
Current function value: 148.76080732321495
Iterations: 26
Function evaluations: 349
Gradient evaluations: 26
Iteration: 1, Func. Count: 11, Neg. LLF: 153.9539513693068
Iteration: 2, Func. Count: 22, Neg. LLF: 152.19219570157077
Iteration: 3, Func. Count: 33, Neg. LLF: 149.8920059151528
Iteration: 4, Func. Count: 43, Neg. LLF: 149.59269679429684
Iteration: 5, Func. Count: 53, Neg. LLF: 149.42746745654912
Iteration: 6, Func. Count: 63, Neg. LLF: 150.45256703077158
Iteration: 7, Func. Count: 74, Neg. LLF: 149.3752175247397
Iteration: 8, Func. Count: 84, Neg. LLF: 149.35043976083983
Iteration: 9, Func. Count: 94, Neg. LLF: 149.34817959902247
Iteration: 10, Func. Count: 104, Neg. LLF: 149.34715486154383
Iteration: 11, Func. Count: 114, Neg. LLF: 149.34581741793025
Iteration: 12, Func. Count: 124, Neg. LLF: 149.34406431238514
Iteration: 13, Func. Count: 134, Neg. LLF: 149.3436007462198
Iteration: 14, Func. Count: 144, Neg. LLF: 149.34352527957248
Iteration: 15, Func. Count: 154, Neg. LLF: 149.34352387651916
Iteration: 16, Func. Count: 163, Neg. LLF: 149.34352394680275
Optimization terminated successfully (Exit mode 0)
Current function value: 149.34352387651916
Iterations: 16
Function evaluations: 163
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 491.98702262397
Iteration: 2, Func. Count: 25, Neg. LLF: 225.32199087575145
Iteration: 3, Func. Count: 38, Neg. LLF: 151.4488034054101
Iteration: 4, Func. Count: 49, Neg. LLF: 151.37202086871537
Iteration: 5, Func. Count: 60, Neg. LLF: 151.26283161930323
Iteration: 6, Func. Count: 71, Neg. LLF: 150.84848576844777
Iteration: 7, Func. Count: 82, Neg. LLF: 150.8263023145877
Iteration: 8, Func. Count: 93, Neg. LLF: 150.81441876290592
Iteration: 9, Func. Count: 104, Neg. LLF: 150.8015219503544
Iteration: 10, Func. Count: 115, Neg. LLF: 150.80112896552848
Iteration: 11, Func. Count: 126, Neg. LLF: 150.80112456823528
Iteration: 12, Func. Count: 137, Neg. LLF: 150.80111460604516
Iteration: 13, Func. Count: 148, Neg. LLF: 150.80111299745974
Iteration: 14, Func. Count: 158, Neg. LLF: 150.80111299741094
Optimization terminated successfully (Exit mode 0)
Current function value: 150.80111299745974
Iterations: 14
Function evaluations: 158
Gradient evaluations: 14
Iteration: 1, Func. Count: 13, Neg. LLF: 588.2560785680763
Iteration: 2, Func. Count: 27, Neg. LLF: 270.2171317896555
Iteration: 3, Func. Count: 40, Neg. LLF: 149.96941287678234
Iteration: 4, Func. Count: 52, Neg. LLF: 149.44316559218598
Iteration: 5, Func. Count: 64, Neg. LLF: 149.63235239766433
Iteration: 6, Func. Count: 77, Neg. LLF: 149.71102656589977
Iteration: 7, Func. Count: 90, Neg. LLF: 149.31091999215815
Iteration: 8, Func. Count: 103, Neg. LLF: 149.26006694652534
Iteration: 9, Func. Count: 115, Neg. LLF: 149.25280333989815
Iteration: 10, Func. Count: 127, Neg. LLF: 149.24543014263435
Iteration: 11, Func. Count: 139, Neg. LLF: 149.2435907718187
Iteration: 12, Func. Count: 151, Neg. LLF: 149.24339898248977
Iteration: 13, Func. Count: 163, Neg. LLF: 149.24338483531662
Iteration: 14, Func. Count: 175, Neg. LLF: 149.243384435593
Optimization terminated successfully (Exit mode 0)
Current function value: 149.243384435593
Iterations: 14
Function evaluations: 175
Gradient evaluations: 14
Iteration: 1, Func. Count: 14, Neg. LLF: 635.1791865080827
Iteration: 2, Func. Count: 29, Neg. LLF: 170.0224359703473
Iteration: 3, Func. Count: 43, Neg. LLF: 150.8696167194313
Iteration: 4, Func. Count: 56, Neg. LLF: 155.6733454639948
Iteration: 5, Func. Count: 70, Neg. LLF: 151.03772316101626
Iteration: 6, Func. Count: 84, Neg. LLF: 152.75845525591183
Iteration: 7, Func. Count: 99, Neg. LLF: 150.66483501583934
Iteration: 8, Func. Count: 112, Neg. LLF: 150.63723332062514
Iteration: 9, Func. Count: 125, Neg. LLF: 150.62241106566472
Iteration: 10, Func. Count: 138, Neg. LLF: 150.6205688795884
Iteration: 11, Func. Count: 151, Neg. LLF: 150.62003817479496
Iteration: 12, Func. Count: 164, Neg. LLF: 150.6198874847959
Iteration: 13, Func. Count: 177, Neg. LLF: 150.61988008290507
Iteration: 14, Func. Count: 189, Neg. LLF: 150.6198800830566
Optimization terminated successfully (Exit mode 0)
Current function value: 150.61988008290507
Iterations: 14
Function evaluations: 189
Gradient evaluations: 14
Iteration: 1, Func. Count: 15, Neg. LLF: 640.5721504562639
Iteration: 2, Func. Count: 31, Neg. LLF: 304.7935991199548
Iteration: 3, Func. Count: 46, Neg. LLF: 154.25675403990604
Iteration: 4, Func. Count: 62, Neg. LLF: 152.61277467220003
Iteration: 5, Func. Count: 77, Neg. LLF: 152.87861727917021
Iteration: 6, Func. Count: 92, Neg. LLF: 151.4660299843644
Iteration: 7, Func. Count: 107, Neg. LLF: 150.28327144408289
Iteration: 8, Func. Count: 122, Neg. LLF: 149.75563916613703
Iteration: 9, Func. Count: 136, Neg. LLF: 149.5030136555807
Iteration: 10, Func. Count: 150, Neg. LLF: 155.62725720601006
Iteration: 11, Func. Count: 166, Neg. LLF: 149.35681069651622
Iteration: 12, Func. Count: 180, Neg. LLF: 148.8665306386907
Iteration: 13, Func. Count: 194, Neg. LLF: 148.80280993058196
Iteration: 14, Func. Count: 208, Neg. LLF: 148.78075758285945
Iteration: 15, Func. Count: 222, Neg. LLF: 148.76298049178155
Iteration: 16, Func. Count: 236, Neg. LLF: 148.76102237480868
Iteration: 17, Func. Count: 250, Neg. LLF: 148.76093185162696
Iteration: 18, Func. Count: 264, Neg. LLF: 148.76089624536013
Iteration: 19, Func. Count: 278, Neg. LLF: 148.7608594561607
Iteration: 20, Func. Count: 292, Neg. LLF: 148.7608479467986
Iteration: 21, Func. Count: 306, Neg. LLF: 148.76083848650205
Iteration: 22, Func. Count: 320, Neg. LLF: 148.76082933697714
Iteration: 23, Func. Count: 334, Neg. LLF: 148.76081984223336
Iteration: 24, Func. Count: 348, Neg. LLF: 148.76081305944717
Iteration: 25, Func. Count: 362, Neg. LLF: 148.7608091193956
Iteration: 26, Func. Count: 376, Neg. LLF: 148.76080756109252
Iteration: 27, Func. Count: 389, Neg. LLF: 148.76080756103875
Optimization terminated successfully (Exit mode 0)
Current function value: 148.76080756109252
Iterations: 27
Function evaluations: 389
Gradient evaluations: 27
Iteration: 1, Func. Count: 8, Neg. LLF: 150.89320786546782
Iteration: 2, Func. Count: 15, Neg. LLF: 152.12591711529714
Iteration: 3, Func. Count: 23, Neg. LLF: 150.52148003275025
Iteration: 4, Func. Count: 30, Neg. LLF: 150.28761310411792
Iteration: 5, Func. Count: 37, Neg. LLF: 150.20130124891955
Iteration: 6, Func. Count: 44, Neg. LLF: 150.18182267464053
Iteration: 7, Func. Count: 51, Neg. LLF: 151.73979340021
Iteration: 8, Func. Count: 60, Neg. LLF: 150.17697401619196
Iteration: 9, Func. Count: 67, Neg. LLF: 150.1671025919167
Iteration: 10, Func. Count: 74, Neg. LLF: 150.1484133224699
Iteration: 11, Func. Count: 81, Neg. LLF: 150.12183917369066
Iteration: 12, Func. Count: 88, Neg. LLF: 150.10676769879478
Iteration: 13, Func. Count: 95, Neg. LLF: 150.10454186961866
Iteration: 14, Func. Count: 102, Neg. LLF: 150.10445019597753
Iteration: 15, Func. Count: 109, Neg. LLF: 150.10444730117604
Iteration: 16, Func. Count: 116, Neg. LLF: 150.1044466786771
Optimization terminated successfully (Exit mode 0)
Current function value: 150.1044466786771
Iterations: 16
Function evaluations: 116
Gradient evaluations: 16
Iteration: 1, Func. Count: 9, Neg. LLF: 534.527067131262
Iteration: 2, Func. Count: 19, Neg. LLF: 151.47710982683435
Iteration: 3, Func. Count: 27, Neg. LLF: 150.8781050138176
Iteration: 4, Func. Count: 35, Neg. LLF: 151.9841839385595
Iteration: 5, Func. Count: 44, Neg. LLF: 150.83266237490915
Iteration: 6, Func. Count: 53, Neg. LLF: 150.801113391921
Iteration: 7, Func. Count: 60, Neg. LLF: 150.80111339351475
Optimization terminated successfully (Exit mode 0)
Current function value: 150.801113391921
Iterations: 7
Function evaluations: 60
Gradient evaluations: 7
Iteration: 1, Func. Count: 10, Neg. LLF: 643.3908688264671
Iteration: 2, Func. Count: 21, Neg. LLF: 151.19755925987218
Iteration: 3, Func. Count: 30, Neg. LLF: 151.5152802633966
Iteration: 4, Func. Count: 40, Neg. LLF: 159.4442618220701
Iteration: 5, Func. Count: 50, Neg. LLF: 153.9740709341837
Iteration: 6, Func. Count: 60, Neg. LLF: 152.70572281708147
Iteration: 7, Func. Count: 70, Neg. LLF: 156.41667706148385
Iteration: 8, Func. Count: 80, Neg. LLF: 152.40182376510685
Iteration: 9, Func. Count: 90, Neg. LLF: 151.05296656928468
Iteration: 10, Func. Count: 100, Neg. LLF: 151.5445544098552
Iteration: 11, Func. Count: 110, Neg. LLF: 150.20747012166424
Iteration: 12, Func. Count: 119, Neg. LLF: 156.80321900979519
Iteration: 13, Func. Count: 129, Neg. LLF: 149.85098439379868
Iteration: 14, Func. Count: 138, Neg. LLF: 149.71472474489664
Iteration: 15, Func. Count: 147, Neg. LLF: 149.70666531686138
Iteration: 16, Func. Count: 156, Neg. LLF: 149.70033000428168
Iteration: 17, Func. Count: 165, Neg. LLF: 149.6998351239892
Iteration: 18, Func. Count: 174, Neg. LLF: 149.6997465191162
Iteration: 19, Func. Count: 183, Neg. LLF: 149.69970740868132
Iteration: 20, Func. Count: 192, Neg. LLF: 149.69968998087066
Iteration: 21, Func. Count: 201, Neg. LLF: 149.6996883696034
Iteration: 22, Func. Count: 209, Neg. LLF: 149.69968836962286
Optimization terminated successfully (Exit mode 0)
Current function value: 149.6996883696034
Iterations: 23
Function evaluations: 209
Gradient evaluations: 22
Iteration: 1, Func. Count: 11, Neg. LLF: 685.2865000205687
Iteration: 2, Func. Count: 23, Neg. LLF: 151.03550207464082
Iteration: 3, Func. Count: 33, Neg. LLF: 150.91045151839177
Iteration: 4, Func. Count: 43, Neg. LLF: 150.80359856648147
Iteration: 5, Func. Count: 53, Neg. LLF: 150.75615398784652
Iteration: 6, Func. Count: 63, Neg. LLF: 150.7579599979389
Iteration: 7, Func. Count: 74, Neg. LLF: 150.75101515586388
Iteration: 8, Func. Count: 84, Neg. LLF: 150.75095006128444
Iteration: 9, Func. Count: 93, Neg. LLF: 150.75095006123306
Optimization terminated successfully (Exit mode 0)
Current function value: 150.75095006128444
Iterations: 9
Function evaluations: 93
Gradient evaluations: 9
Iteration: 1, Func. Count: 12, Neg. LLF: 682.1504170011214
Iteration: 2, Func. Count: 25, Neg. LLF: 162.18398164067352
Iteration: 3, Func. Count: 38, Neg. LLF: 150.59588191979773
Iteration: 4, Func. Count: 49, Neg. LLF: 151.663455231907
Iteration: 5, Func. Count: 61, Neg. LLF: 151.20030791410042
Iteration: 6, Func. Count: 73, Neg. LLF: 150.46708050878306
Iteration: 7, Func. Count: 85, Neg. LLF: 150.23219965055978
Iteration: 8, Func. Count: 97, Neg. LLF: 149.90785124985211
Iteration: 9, Func. Count: 108, Neg. LLF: 149.73083526564722
Iteration: 10, Func. Count: 119, Neg. LLF: 149.68028812441204
Iteration: 11, Func. Count: 130, Neg. LLF: 149.87601846047778
Iteration: 12, Func. Count: 142, Neg. LLF: 149.59462851645998
Iteration: 13, Func. Count: 153, Neg. LLF: 149.56698546240807
Iteration: 14, Func. Count: 164, Neg. LLF: 149.5464978437969
Iteration: 15, Func. Count: 175, Neg. LLF: 149.52779288051377
Iteration: 16, Func. Count: 186, Neg. LLF: 149.52446675786393
Iteration: 17, Func. Count: 197, Neg. LLF: 149.5240850243233
Iteration: 18, Func. Count: 208, Neg. LLF: 149.52392306542066
Iteration: 19, Func. Count: 219, Neg. LLF: 149.5238033216986
Iteration: 20, Func. Count: 230, Neg. LLF: 149.5235914526624
Iteration: 21, Func. Count: 241, Neg. LLF: 149.52347776239236
Iteration: 22, Func. Count: 252, Neg. LLF: 149.52344942833906
Iteration: 23, Func. Count: 263, Neg. LLF: 149.5234476609028
Iteration: 24, Func. Count: 273, Neg. LLF: 149.52344766095084
Optimization terminated successfully (Exit mode 0)
Current function value: 149.5234476609028
Iterations: 24
Function evaluations: 273
Gradient evaluations: 24
Iteration: 1, Func. Count: 9, Neg. LLF: 151.7590893667259
Iteration: 2, Func. Count: 17, Neg. LLF: 151.22241484191045
Iteration: 3, Func. Count: 25, Neg. LLF: 150.22242451454738
Iteration: 4, Func. Count: 33, Neg. LLF: 157.92965875747922
Iteration: 5, Func. Count: 43, Neg. LLF: 150.1600772960508
Iteration: 6, Func. Count: 51, Neg. LLF: 150.145381722597
Iteration: 7, Func. Count: 59, Neg. LLF: 150.1358760186754
Iteration: 8, Func. Count: 67, Neg. LLF: 150.13314031989873
Iteration: 9, Func. Count: 75, Neg. LLF: 150.12048377003768
Iteration: 10, Func. Count: 83, Neg. LLF: 150.0846185249241
Iteration: 11, Func. Count: 91, Neg. LLF: 150.07324920765504
Iteration: 12, Func. Count: 99, Neg. LLF: 150.07077700057977
Iteration: 13, Func. Count: 107, Neg. LLF: 150.06831859001102
Iteration: 14, Func. Count: 115, Neg. LLF: 150.06521388111517
Iteration: 15, Func. Count: 123, Neg. LLF: 150.065095439038
Iteration: 16, Func. Count: 131, Neg. LLF: 150.06507912717498
Iteration: 17, Func. Count: 138, Neg. LLF: 150.06507912766892
Optimization terminated successfully (Exit mode 0)
Current function value: 150.06507912717498
Iterations: 17
Function evaluations: 138
Gradient evaluations: 17
Iteration: 1, Func. Count: 10, Neg. LLF: 492.53860193903
Iteration: 2, Func. Count: 21, Neg. LLF: 166.76624584174306
Iteration: 3, Func. Count: 31, Neg. LLF: 151.45147335099037
Iteration: 4, Func. Count: 40, Neg. LLF: 151.34923620691063
Iteration: 5, Func. Count: 49, Neg. LLF: 151.22124473253638
Iteration: 6, Func. Count: 58, Neg. LLF: 151.03132670997417
Iteration: 7, Func. Count: 67, Neg. LLF: 151.28383303326422
Iteration: 8, Func. Count: 77, Neg. LLF: 150.80804093971688
Iteration: 9, Func. Count: 86, Neg. LLF: 150.8091163398128
Iteration: 10, Func. Count: 96, Neg. LLF: 150.80112797510301
Iteration: 11, Func. Count: 105, Neg. LLF: 150.80111300746395
Iteration: 12, Func. Count: 113, Neg. LLF: 150.80111300746336
Optimization terminated successfully (Exit mode 0)
Current function value: 150.80111300746395
Iterations: 12
Function evaluations: 113
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 586.8090740409958
Iteration: 2, Func. Count: 23, Neg. LLF: 171.65248978944948
Iteration: 3, Func. Count: 34, Neg. LLF: 157.57619059146663
Iteration: 4, Func. Count: 46, Neg. LLF: 151.35125363466418
Iteration: 5, Func. Count: 56, Neg. LLF: 151.10622207186452
Iteration: 6, Func. Count: 66, Neg. LLF: 150.94749588447422
Iteration: 7, Func. Count: 76, Neg. LLF: 151.0508703741672
Iteration: 8, Func. Count: 87, Neg. LLF: 150.81180603176264
Iteration: 9, Func. Count: 97, Neg. LLF: 150.81172799328624
Iteration: 10, Func. Count: 107, Neg. LLF: 150.81164741171992
Iteration: 11, Func. Count: 117, Neg. LLF: 150.81125579662103
Iteration: 12, Func. Count: 127, Neg. LLF: 150.81028788241872
Iteration: 13, Func. Count: 137, Neg. LLF: 150.80645836728002
Iteration: 14, Func. Count: 147, Neg. LLF: 150.80454147400945
Iteration: 15, Func. Count: 157, Neg. LLF: 150.80125091770745
Iteration: 16, Func. Count: 167, Neg. LLF: 150.80111530592336
Iteration: 17, Func. Count: 177, Neg. LLF: 150.80111316104657
Iteration: 18, Func. Count: 186, Neg. LLF: 150.80111316266894
Optimization terminated successfully (Exit mode 0)
Current function value: 150.80111316104657
Iterations: 18
Function evaluations: 186
Gradient evaluations: 18
Iteration: 1, Func. Count: 12, Neg. LLF: 632.9896605660946
Iteration: 2, Func. Count: 25, Neg. LLF: 171.0242736512026
Iteration: 3, Func. Count: 37, Neg. LLF: 157.56960832585702
Iteration: 4, Func. Count: 50, Neg. LLF: 153.22869639901143
Iteration: 5, Func. Count: 62, Neg. LLF: 151.63915865304566
Iteration: 6, Func. Count: 74, Neg. LLF: 151.40101686934653
Iteration: 7, Func. Count: 86, Neg. LLF: 151.15607199007522
Iteration: 8, Func. Count: 98, Neg. LLF: 150.67730730654003
Iteration: 9, Func. Count: 109, Neg. LLF: 150.63835310765162
Iteration: 10, Func. Count: 120, Neg. LLF: 150.631924426176
Iteration: 11, Func. Count: 131, Neg. LLF: 150.62932379898865
Iteration: 12, Func. Count: 142, Neg. LLF: 150.62800626156786
Iteration: 13, Func. Count: 153, Neg. LLF: 150.62784967688617
Iteration: 14, Func. Count: 164, Neg. LLF: 150.62782106662158
Iteration: 15, Func. Count: 175, Neg. LLF: 150.6277955881795
Iteration: 16, Func. Count: 186, Neg. LLF: 150.62738079334304
Iteration: 17, Func. Count: 197, Neg. LLF: 150.62836660926033
Iteration: 18, Func. Count: 209, Neg. LLF: 150.62582864842003
Iteration: 19, Func. Count: 220, Neg. LLF: 150.62355593773998
Iteration: 20, Func. Count: 231, Neg. LLF: 150.62098539819098
Iteration: 21, Func. Count: 242, Neg. LLF: 150.62048404437257
Iteration: 22, Func. Count: 253, Neg. LLF: 150.62030121881602
Iteration: 23, Func. Count: 264, Neg. LLF: 150.62026881042172
Iteration: 24, Func. Count: 275, Neg. LLF: 150.62026725497276
Iteration: 25, Func. Count: 285, Neg. LLF: 150.6202672550911
Optimization terminated successfully (Exit mode 0)
Current function value: 150.62026725497276
Iterations: 25
Function evaluations: 285
Gradient evaluations: 25
Iteration: 1, Func. Count: 13, Neg. LLF: 638.6950437442226
Iteration: 2, Func. Count: 27, Neg. LLF: 165.02642249180872
Iteration: 3, Func. Count: 40, Neg. LLF: 151.81806208665154
Iteration: 4, Func. Count: 53, Neg. LLF: 151.36013335452162
Iteration: 5, Func. Count: 66, Neg. LLF: 152.12719841585056
Iteration: 6, Func. Count: 79, Neg. LLF: 153.73356643611487
Iteration: 7, Func. Count: 92, Neg. LLF: 153.8122047553373
Iteration: 8, Func. Count: 105, Neg. LLF: 153.741721197038
Iteration: 9, Func. Count: 118, Neg. LLF: 152.0877545083069
Iteration: 10, Func. Count: 131, Neg. LLF: 151.80292799997972
Iteration: 11, Func. Count: 144, Neg. LLF: 151.2472066336119
Iteration: 12, Func. Count: 157, Neg. LLF: 154.14704193543787
Iteration: 13, Func. Count: 170, Neg. LLF: 151.00221777400478
Iteration: 14, Func. Count: 183, Neg. LLF: 153.83453638923368
Iteration: 15, Func. Count: 196, Neg. LLF: 150.38542419977537
Iteration: 16, Func. Count: 208, Neg. LLF: 150.05174269748935
Iteration: 17, Func. Count: 220, Neg. LLF: 149.8868812679497
Iteration: 18, Func. Count: 232, Neg. LLF: 149.83756431141944
Iteration: 19, Func. Count: 244, Neg. LLF: 149.7887556935288
Iteration: 20, Func. Count: 256, Neg. LLF: 149.77575962969468
Iteration: 21, Func. Count: 268, Neg. LLF: 149.72925379170562
Iteration: 22, Func. Count: 280, Neg. LLF: 149.70072495527617
Iteration: 23, Func. Count: 292, Neg. LLF: 149.68410020812968
Iteration: 24, Func. Count: 304, Neg. LLF: 149.66789336324752
Iteration: 25, Func. Count: 316, Neg. LLF: 149.6415731392623
Iteration: 26, Func. Count: 328, Neg. LLF: 149.63043712374994
Iteration: 27, Func. Count: 340, Neg. LLF: 149.58770690130572
Iteration: 28, Func. Count: 352, Neg. LLF: 149.5536799466843
Iteration: 29, Func. Count: 364, Neg. LLF: 149.54664590365243
Iteration: 30, Func. Count: 376, Neg. LLF: 149.5312449094511
Iteration: 31, Func. Count: 388, Neg. LLF: 149.52862875839753
Iteration: 32, Func. Count: 400, Neg. LLF: 149.52405248713552
Iteration: 33, Func. Count: 412, Neg. LLF: 149.5238190153324
Iteration: 34, Func. Count: 424, Neg. LLF: 149.5237099382299
Iteration: 35, Func. Count: 436, Neg. LLF: 149.52356423410777
Iteration: 36, Func. Count: 448, Neg. LLF: 149.52347269366845
Iteration: 37, Func. Count: 460, Neg. LLF: 149.52344886942456
Iteration: 38, Func. Count: 472, Neg. LLF: 149.52344745481585
Iteration: 39, Func. Count: 483, Neg. LLF: 149.523447454827
Optimization terminated successfully (Exit mode 0)
Current function value: 149.52344745481585
Iterations: 39
Function evaluations: 483
Gradient evaluations: 39
Iteration: 1, Func. Count: 10, Neg. LLF: 154.36020395687387
Iteration: 2, Func. Count: 20, Neg. LLF: 152.51046874631473
Iteration: 3, Func. Count: 30, Neg. LLF: 149.61859982175804
Iteration: 4, Func. Count: 39, Neg. LLF: 151.8588763122849
Iteration: 5, Func. Count: 49, Neg. LLF: 149.42577376264683
Iteration: 6, Func. Count: 58, Neg. LLF: 149.37481355605902
Iteration: 7, Func. Count: 67, Neg. LLF: 149.37281117971037
Iteration: 8, Func. Count: 77, Neg. LLF: 149.35322305897182
Iteration: 9, Func. Count: 86, Neg. LLF: 149.3516867565951
Iteration: 10, Func. Count: 95, Neg. LLF: 149.34571359294412
Iteration: 11, Func. Count: 104, Neg. LLF: 149.34353331016595
Iteration: 12, Func. Count: 113, Neg. LLF: 149.34352404881463
Iteration: 13, Func. Count: 121, Neg. LLF: 149.34352404884524
Optimization terminated successfully (Exit mode 0)
Current function value: 149.34352404881463
Iterations: 13
Function evaluations: 121
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 494.9121271775976
Iteration: 2, Func. Count: 23, Neg. LLF: 230.70012686030773
Iteration: 3, Func. Count: 35, Neg. LLF: 151.45314717165684
Iteration: 4, Func. Count: 45, Neg. LLF: 151.37651665671427
Iteration: 5, Func. Count: 55, Neg. LLF: 151.27382146985502
Iteration: 6, Func. Count: 65, Neg. LLF: 150.85933177891826
Iteration: 7, Func. Count: 75, Neg. LLF: 150.8251518069595
Iteration: 8, Func. Count: 85, Neg. LLF: 150.80839235817186
Iteration: 9, Func. Count: 95, Neg. LLF: 150.8091095076067
Iteration: 10, Func. Count: 106, Neg. LLF: 150.80111823232477
Iteration: 11, Func. Count: 116, Neg. LLF: 150.80111525498126
Iteration: 12, Func. Count: 126, Neg. LLF: 150.80111450364495
Optimization terminated successfully (Exit mode 0)
Current function value: 150.80111450364495
Iterations: 12
Function evaluations: 126
Gradient evaluations: 12
Iteration: 1, Func. Count: 12, Neg. LLF: 593.5538142348562
Iteration: 2, Func. Count: 25, Neg. LLF: 275.18338680108576
Iteration: 3, Func. Count: 37, Neg. LLF: 149.82837121524238
Iteration: 4, Func. Count: 48, Neg. LLF: 149.44752073825077
Iteration: 5, Func. Count: 59, Neg. LLF: 151.16666971547082
Iteration: 6, Func. Count: 72, Neg. LLF: 149.42926575104906
Iteration: 7, Func. Count: 84, Neg. LLF: 149.26413168414575
Iteration: 8, Func. Count: 95, Neg. LLF: 149.25701032188906
Iteration: 9, Func. Count: 106, Neg. LLF: 149.24702281777832
Iteration: 10, Func. Count: 117, Neg. LLF: 149.24430604205787
Iteration: 11, Func. Count: 128, Neg. LLF: 149.2433917140072
Iteration: 12, Func. Count: 139, Neg. LLF: 149.24338429087777
Iteration: 13, Func. Count: 149, Neg. LLF: 149.24338429092566
Optimization terminated successfully (Exit mode 0)
Current function value: 149.24338429087777
Iterations: 13
Function evaluations: 149
Gradient evaluations: 13
Iteration: 1, Func. Count: 13, Neg. LLF: 638.9050940931259
Iteration: 2, Func. Count: 27, Neg. LLF: 170.69009661711965
Iteration: 3, Func. Count: 40, Neg. LLF: 150.87267112120512
Iteration: 4, Func. Count: 52, Neg. LLF: 154.9651423714014
Iteration: 5, Func. Count: 65, Neg. LLF: 151.04807451317424
Iteration: 6, Func. Count: 78, Neg. LLF: 152.6295690180172
Iteration: 7, Func. Count: 92, Neg. LLF: 150.66414632184225
Iteration: 8, Func. Count: 104, Neg. LLF: 150.63760291004053
Iteration: 9, Func. Count: 116, Neg. LLF: 150.62872213404992
Iteration: 10, Func. Count: 128, Neg. LLF: 150.62068074410323
Iteration: 11, Func. Count: 140, Neg. LLF: 150.61994822680614
Iteration: 12, Func. Count: 152, Neg. LLF: 150.61988215706842
Iteration: 13, Func. Count: 164, Neg. LLF: 150.61987994286505
Iteration: 14, Func. Count: 175, Neg. LLF: 150.61987994285886
Optimization terminated successfully (Exit mode 0)
Current function value: 150.61987994286505
Iterations: 14
Function evaluations: 175
Gradient evaluations: 14
Iteration: 1, Func. Count: 14, Neg. LLF: 644.1169282667312
Iteration: 2, Func. Count: 29, Neg. LLF: 314.9436381759521
Iteration: 3, Func. Count: 43, Neg. LLF: 156.996944735423
Iteration: 4, Func. Count: 58, Neg. LLF: 154.21206204075852
Iteration: 5, Func. Count: 72, Neg. LLF: 154.58868523165015
Iteration: 6, Func. Count: 86, Neg. LLF: 152.85844668111602
Iteration: 7, Func. Count: 100, Neg. LLF: 151.55200980725667
Iteration: 8, Func. Count: 114, Neg. LLF: 150.4070409823797
Iteration: 9, Func. Count: 128, Neg. LLF: 149.91373755687806
Iteration: 10, Func. Count: 141, Neg. LLF: 149.80444866826488
Iteration: 11, Func. Count: 154, Neg. LLF: 154.47629901543408
Iteration: 12, Func. Count: 169, Neg. LLF: 149.57953904839067
Iteration: 13, Func. Count: 182, Neg. LLF: 150.0589496890577
Iteration: 14, Func. Count: 196, Neg. LLF: 148.99516683791614
Iteration: 15, Func. Count: 209, Neg. LLF: 148.8210584399825
Iteration: 16, Func. Count: 222, Neg. LLF: 148.77955581364927
Iteration: 17, Func. Count: 235, Neg. LLF: 148.76990470578713
Iteration: 18, Func. Count: 248, Neg. LLF: 148.7671889914042
Iteration: 19, Func. Count: 261, Neg. LLF: 148.76630984151686
Iteration: 20, Func. Count: 274, Neg. LLF: 148.76463615061138
Iteration: 21, Func. Count: 287, Neg. LLF: 148.76283990468684
Iteration: 22, Func. Count: 300, Neg. LLF: 148.7615552082406
Iteration: 23, Func. Count: 313, Neg. LLF: 148.76115231579547
Iteration: 24, Func. Count: 326, Neg. LLF: 148.76102509805744
Iteration: 25, Func. Count: 339, Neg. LLF: 148.76091475859155
Iteration: 26, Func. Count: 352, Neg. LLF: 148.76083910055647
Iteration: 27, Func. Count: 365, Neg. LLF: 148.76081126837755
Iteration: 28, Func. Count: 378, Neg. LLF: 148.76080740454506
Iteration: 29, Func. Count: 390, Neg. LLF: 148.76080740456092
Optimization terminated successfully (Exit mode 0)
Current function value: 148.76080740454506
Iterations: 29
Function evaluations: 390
Gradient evaluations: 29
Iteration: 1, Func. Count: 11, Neg. LLF: 153.88969394734838
Iteration: 2, Func. Count: 22, Neg. LLF: 151.81600937141403
Iteration: 3, Func. Count: 33, Neg. LLF: 149.7812299153329
Iteration: 4, Func. Count: 43, Neg. LLF: 149.58659415092438
Iteration: 5, Func. Count: 53, Neg. LLF: 149.39376536260065
Iteration: 6, Func. Count: 63, Neg. LLF: 150.4262030497482
Iteration: 7, Func. Count: 74, Neg. LLF: 149.35021547729085
Iteration: 8, Func. Count: 84, Neg. LLF: 149.34899097931307
Iteration: 9, Func. Count: 94, Neg. LLF: 149.34784944014663
Iteration: 10, Func. Count: 104, Neg. LLF: 149.3459307415346
Iteration: 11, Func. Count: 114, Neg. LLF: 149.34398307446548
Iteration: 12, Func. Count: 124, Neg. LLF: 149.3435689578562
Iteration: 13, Func. Count: 134, Neg. LLF: 149.34352444343597
Iteration: 14, Func. Count: 144, Neg. LLF: 149.34352387189642
Optimization terminated successfully (Exit mode 0)
Current function value: 149.34352387189642
Iterations: 14
Function evaluations: 144
Gradient evaluations: 14
Iteration: 1, Func. Count: 12, Neg. LLF: 493.7888560536729
Iteration: 2, Func. Count: 25, Neg. LLF: 225.82401706766188
Iteration: 3, Func. Count: 38, Neg. LLF: 151.4489133451482
Iteration: 4, Func. Count: 49, Neg. LLF: 151.3721326923873
Iteration: 5, Func. Count: 60, Neg. LLF: 151.2621339457643
Iteration: 6, Func. Count: 71, Neg. LLF: 150.8503901448674
Iteration: 7, Func. Count: 82, Neg. LLF: 150.831074750012
Iteration: 8, Func. Count: 93, Neg. LLF: 150.8150662072183
Iteration: 9, Func. Count: 104, Neg. LLF: 150.8025952325228
Iteration: 10, Func. Count: 115, Neg. LLF: 150.80120285627024
Iteration: 11, Func. Count: 126, Neg. LLF: 153.038735881337
Iteration: 12, Func. Count: 140, Neg. LLF: 150.80111316344957
Iteration: 13, Func. Count: 150, Neg. LLF: 150.801113163449
Optimization terminated successfully (Exit mode 0)
Current function value: 150.80111316344957
Iterations: 14
Function evaluations: 150
Gradient evaluations: 13
Iteration: 1, Func. Count: 13, Neg. LLF: 591.2483482089897
Iteration: 2, Func. Count: 27, Neg. LLF: 270.38997407215925
Iteration: 3, Func. Count: 40, Neg. LLF: 149.87276476368396
Iteration: 4, Func. Count: 52, Neg. LLF: 149.44700654972925
Iteration: 5, Func. Count: 64, Neg. LLF: 150.21551594601462
Iteration: 6, Func. Count: 78, Neg. LLF: 149.6215906822588
Iteration: 7, Func. Count: 91, Neg. LLF: 149.27276699780523
Iteration: 8, Func. Count: 103, Neg. LLF: 149.2584812971782
Iteration: 9, Func. Count: 115, Neg. LLF: 149.25107739586025
Iteration: 10, Func. Count: 127, Neg. LLF: 149.24685434946716
Iteration: 11, Func. Count: 139, Neg. LLF: 149.2434033346403
Iteration: 12, Func. Count: 151, Neg. LLF: 149.24338568937293
Iteration: 13, Func. Count: 163, Neg. LLF: 149.2433839787123
Iteration: 14, Func. Count: 174, Neg. LLF: 149.24338397869897
Optimization terminated successfully (Exit mode 0)
Current function value: 149.2433839787123
Iterations: 14
Function evaluations: 174
Gradient evaluations: 14
Iteration: 1, Func. Count: 14, Neg. LLF: 636.4712854340961
Iteration: 2, Func. Count: 29, Neg. LLF: 170.18138050713992
Iteration: 3, Func. Count: 43, Neg. LLF: 150.8712391285087
Iteration: 4, Func. Count: 56, Neg. LLF: 155.8978502122135
Iteration: 5, Func. Count: 70, Neg. LLF: 151.0454109825164
Iteration: 6, Func. Count: 84, Neg. LLF: 152.530000486106
Iteration: 7, Func. Count: 99, Neg. LLF: 150.66387724966194
Iteration: 8, Func. Count: 112, Neg. LLF: 150.63720675076382
Iteration: 9, Func. Count: 125, Neg. LLF: 150.62861930041944
Iteration: 10, Func. Count: 138, Neg. LLF: 150.6205527411732
Iteration: 11, Func. Count: 151, Neg. LLF: 150.61992940345206
Iteration: 12, Func. Count: 164, Neg. LLF: 150.61988186231048
Iteration: 13, Func. Count: 177, Neg. LLF: 150.6198799497426
Iteration: 14, Func. Count: 189, Neg. LLF: 150.61987994975746
Optimization terminated successfully (Exit mode 0)
Current function value: 150.6198799497426
Iterations: 14
Function evaluations: 189
Gradient evaluations: 14
Iteration: 1, Func. Count: 15, Neg. LLF: 641.7667516701543
Iteration: 2, Func. Count: 31, Neg. LLF: 307.5474390563704
Iteration: 3, Func. Count: 46, Neg. LLF: 154.2504661304655
Iteration: 4, Func. Count: 62, Neg. LLF: 152.72541726806003
Iteration: 5, Func. Count: 77, Neg. LLF: 152.99781438048674
Iteration: 6, Func. Count: 92, Neg. LLF: 151.5836061899796
Iteration: 7, Func. Count: 107, Neg. LLF: 150.37057848530236
Iteration: 8, Func. Count: 122, Neg. LLF: 149.83345366232226
Iteration: 9, Func. Count: 136, Neg. LLF: 149.54650120933644
Iteration: 10, Func. Count: 150, Neg. LLF: 153.93184854294591
Iteration: 11, Func. Count: 166, Neg. LLF: 149.38648075498236
Iteration: 12, Func. Count: 180, Neg. LLF: 148.8675003740974
Iteration: 13, Func. Count: 194, Neg. LLF: 148.81665645230632
Iteration: 14, Func. Count: 208, Neg. LLF: 148.78910887406153
Iteration: 15, Func. Count: 222, Neg. LLF: 148.76483866602712
Iteration: 16, Func. Count: 236, Neg. LLF: 148.7610871515317
Iteration: 17, Func. Count: 250, Neg. LLF: 148.76093264950427
Iteration: 18, Func. Count: 264, Neg. LLF: 148.76086385842675
Iteration: 19, Func. Count: 278, Neg. LLF: 148.7608144801469
Iteration: 20, Func. Count: 292, Neg. LLF: 148.76080861606044
Iteration: 21, Func. Count: 305, Neg. LLF: 148.7608086159046
Optimization terminated successfully (Exit mode 0)
Current function value: 148.76080861606044
Iterations: 21
Function evaluations: 305
Gradient evaluations: 21
Iteration: 1, Func. Count: 12, Neg. LLF: 153.30032925989428
Iteration: 2, Func. Count: 24, Neg. LLF: 152.8506566932173
Iteration: 3, Func. Count: 36, Neg. LLF: 149.89191990356835
Iteration: 4, Func. Count: 47, Neg. LLF: 149.52162935994866
Iteration: 5, Func. Count: 58, Neg. LLF: 149.39857235436736
Iteration: 6, Func. Count: 69, Neg. LLF: 150.38755687192034
Iteration: 7, Func. Count: 81, Neg. LLF: 149.36156287022882
Iteration: 8, Func. Count: 92, Neg. LLF: 149.35518739073086
Iteration: 9, Func. Count: 103, Neg. LLF: 149.35315573486804
Iteration: 10, Func. Count: 114, Neg. LLF: 149.34518121284555
Iteration: 11, Func. Count: 125, Neg. LLF: 149.34375013795216
Iteration: 12, Func. Count: 136, Neg. LLF: 149.34352889119876
Iteration: 13, Func. Count: 147, Neg. LLF: 149.34352387899935
Iteration: 14, Func. Count: 157, Neg. LLF: 149.3435239492846
Optimization terminated successfully (Exit mode 0)
Current function value: 149.34352387899935
Iterations: 14
Function evaluations: 157
Gradient evaluations: 14
Iteration: 1, Func. Count: 13, Neg. LLF: 495.93885435347414
Iteration: 2, Func. Count: 27, Neg. LLF: 498.78819275237834
Iteration: 3, Func. Count: 40, Neg. LLF: 151.692339942934
Iteration: 4, Func. Count: 53, Neg. LLF: 150.9376782648187
Iteration: 5, Func. Count: 65, Neg. LLF: 150.91774600657442
Iteration: 6, Func. Count: 77, Neg. LLF: 150.90579489665194
Iteration: 7, Func. Count: 89, Neg. LLF: 150.9027972450208
Iteration: 8, Func. Count: 101, Neg. LLF: 150.89974445199599
Iteration: 9, Func. Count: 113, Neg. LLF: 150.8985238405728
Iteration: 10, Func. Count: 125, Neg. LLF: 150.89807458145853
Iteration: 11, Func. Count: 137, Neg. LLF: 150.8976456783108
Iteration: 12, Func. Count: 149, Neg. LLF: 150.89745009625884
Iteration: 13, Func. Count: 161, Neg. LLF: 150.89741751876082
Iteration: 14, Func. Count: 173, Neg. LLF: 150.8974158677266
Iteration: 15, Func. Count: 184, Neg. LLF: 150.8974158677289
Optimization terminated successfully (Exit mode 0)
Current function value: 150.8974158677266
Iterations: 15
Function evaluations: 184
Gradient evaluations: 15
Iteration: 1, Func. Count: 14, Neg. LLF: 594.1379174763656
Iteration: 2, Func. Count: 29, Neg. LLF: 362.21643258394107
Iteration: 3, Func. Count: 43, Neg. LLF: 149.94259610131093
Iteration: 4, Func. Count: 56, Neg. LLF: 150.82255599862398
Iteration: 5, Func. Count: 72, Neg. LLF: 152.60270486270187
Iteration: 6, Func. Count: 86, Neg. LLF: 149.13176146683725
Iteration: 7, Func. Count: 99, Neg. LLF: 149.0927864875566
Iteration: 8, Func. Count: 112, Neg. LLF: 149.08259095680205
Iteration: 9, Func. Count: 125, Neg. LLF: 149.08068477242176
Iteration: 10, Func. Count: 138, Neg. LLF: 149.07974057784153
Iteration: 11, Func. Count: 151, Neg. LLF: 149.07913923236546
Iteration: 12, Func. Count: 164, Neg. LLF: 149.0788465747152
Iteration: 13, Func. Count: 177, Neg. LLF: 149.07865914759708
Iteration: 14, Func. Count: 190, Neg. LLF: 149.07854505608736
Iteration: 15, Func. Count: 203, Neg. LLF: 149.07852566578072
Iteration: 16, Func. Count: 216, Neg. LLF: 149.0785242560426
Iteration: 17, Func. Count: 228, Neg. LLF: 149.07852425600828
Optimization terminated successfully (Exit mode 0)
Current function value: 149.0785242560426
Iterations: 17
Function evaluations: 228
Gradient evaluations: 17
Iteration: 1, Func. Count: 15, Neg. LLF: 638.5643947780148
Iteration: 2, Func. Count: 31, Neg. LLF: 232.24967337420316
Iteration: 3, Func. Count: 46, Neg. LLF: 152.68329144359106
Iteration: 4, Func. Count: 61, Neg. LLF: 157.03733860045406
Iteration: 5, Func. Count: 76, Neg. LLF: 153.94582596931554
Iteration: 6, Func. Count: 91, Neg. LLF: 152.33812782866931
Iteration: 7, Func. Count: 106, Neg. LLF: 151.6265478831573
Iteration: 8, Func. Count: 121, Neg. LLF: 151.24164254757582
Iteration: 9, Func. Count: 136, Neg. LLF: 151.1707255242436
Iteration: 10, Func. Count: 151, Neg. LLF: 150.98578824973376
Iteration: 11, Func. Count: 166, Neg. LLF: 150.4151119913605
Iteration: 12, Func. Count: 181, Neg. LLF: 156.33393440842664
Iteration: 13, Func. Count: 196, Neg. LLF: 149.9335171811264
Iteration: 14, Func. Count: 211, Neg. LLF: 152.41419729449075
Iteration: 15, Func. Count: 226, Neg. LLF: 149.5750608742718
Iteration: 16, Func. Count: 240, Neg. LLF: 149.4351955507812
Iteration: 17, Func. Count: 254, Neg. LLF: 149.36960918197295
Iteration: 18, Func. Count: 268, Neg. LLF: 149.28377929906085
Iteration: 19, Func. Count: 282, Neg. LLF: 149.15644970614414
Iteration: 20, Func. Count: 296, Neg. LLF: 149.14147935078722
Iteration: 21, Func. Count: 310, Neg. LLF: 149.0927513116379
Iteration: 22, Func. Count: 324, Neg. LLF: 149.0827656314555
Iteration: 23, Func. Count: 338, Neg. LLF: 149.08614773341057
Iteration: 24, Func. Count: 353, Neg. LLF: 149.07855048122417
Iteration: 25, Func. Count: 367, Neg. LLF: 149.07852450756198
Iteration: 26, Func. Count: 380, Neg. LLF: 149.07852459871557
Optimization terminated successfully (Exit mode 0)
Current function value: 149.07852450756198
Iterations: 26
Function evaluations: 380
Gradient evaluations: 26
Iteration: 1, Func. Count: 16, Neg. LLF: 644.3173279616449
Iteration: 2, Func. Count: 33, Neg. LLF: 201.76356103987644
Iteration: 3, Func. Count: 49, Neg. LLF: 150.80685829831796
Iteration: 4, Func. Count: 64, Neg. LLF: 151.50660902413148
Iteration: 5, Func. Count: 81, Neg. LLF: 157.8614841600606
Iteration: 6, Func. Count: 97, Neg. LLF: 149.19484559218327
Iteration: 7, Func. Count: 112, Neg. LLF: 149.93113324095745
Iteration: 8, Func. Count: 128, Neg. LLF: 149.1317475596598
Iteration: 9, Func. Count: 144, Neg. LLF: 148.9053422579298
Iteration: 10, Func. Count: 159, Neg. LLF: 148.84742199972794
Iteration: 11, Func. Count: 174, Neg. LLF: 148.8211732615645
Iteration: 12, Func. Count: 189, Neg. LLF: 148.79721374251147
Iteration: 13, Func. Count: 204, Neg. LLF: 148.7715167313539
Iteration: 14, Func. Count: 219, Neg. LLF: 148.7661376333795
Iteration: 15, Func. Count: 234, Neg. LLF: 148.76302012359028
Iteration: 16, Func. Count: 249, Neg. LLF: 148.7620772982651
Iteration: 17, Func. Count: 264, Neg. LLF: 148.76171263236088
Iteration: 18, Func. Count: 279, Neg. LLF: 148.76157301566568
Iteration: 19, Func. Count: 294, Neg. LLF: 148.7613500679427
Iteration: 20, Func. Count: 309, Neg. LLF: 148.7610888634005
Iteration: 21, Func. Count: 324, Neg. LLF: 148.7608732056058
Iteration: 22, Func. Count: 339, Neg. LLF: 148.7608129438194
Iteration: 23, Func. Count: 354, Neg. LLF: 148.76080729322456
Iteration: 24, Func. Count: 368, Neg. LLF: 148.76080729317218
Optimization terminated successfully (Exit mode 0)
Current function value: 148.76080729322456
Iterations: 24
Function evaluations: 368
Gradient evaluations: 24
Iteration: 1, Func. Count: 6, Neg. LLF: 150.94703595688264
Iteration: 2, Func. Count: 11, Neg. LLF: 154.50607226720842
Iteration: 3, Func. Count: 17, Neg. LLF: 150.47879161966097
Iteration: 4, Func. Count: 22, Neg. LLF: 157.13960946432002
Iteration: 5, Func. Count: 28, Neg. LLF: 151.2542989736791
Iteration: 6, Func. Count: 34, Neg. LLF: 150.19632655966953
Iteration: 7, Func. Count: 39, Neg. LLF: 150.19296294401389
Iteration: 8, Func. Count: 44, Neg. LLF: 150.19084796448104
Iteration: 9, Func. Count: 49, Neg. LLF: 150.1766419475175
Iteration: 10, Func. Count: 54, Neg. LLF: 150.13968784257477
Iteration: 11, Func. Count: 59, Neg. LLF: 150.1051537587191
Iteration: 12, Func. Count: 64, Neg. LLF: 150.10448782098203
Iteration: 13, Func. Count: 69, Neg. LLF: 150.1044468547715
Iteration: 14, Func. Count: 73, Neg. LLF: 150.10444685236698
Optimization terminated successfully (Exit mode 0)
Current function value: 150.1044468547715
Iterations: 14
Function evaluations: 73
Gradient evaluations: 14
Iteration: 1, Func. Count: 5, Neg. LLF: 160.11721319387337
Iteration: 2, Func. Count: 10, Neg. LLF: 158.10485152969022
Iteration: 3, Func. Count: 14, Neg. LLF: 156.7908502168508
Iteration: 4, Func. Count: 18, Neg. LLF: 155.9182406584021
Iteration: 5, Func. Count: 22, Neg. LLF: 154.72909584530888
Iteration: 6, Func. Count: 26, Neg. LLF: 154.3571675362366
Iteration: 7, Func. Count: 30, Neg. LLF: 154.2286215839203
Iteration: 8, Func. Count: 34, Neg. LLF: 154.21433585094613
Iteration: 9, Func. Count: 38, Neg. LLF: 154.2042826947876
Iteration: 10, Func. Count: 42, Neg. LLF: 154.20087531618663
Iteration: 11, Func. Count: 46, Neg. LLF: 154.2003440729955
Iteration: 12, Func. Count: 50, Neg. LLF: 154.20031302558618
Iteration: 13, Func. Count: 54, Neg. LLF: 154.20031216651188
Optimization terminated successfully (Exit mode 0)
Current function value: 154.20031216651188
Iterations: 13
Function evaluations: 54
Gradient evaluations: 13
Iteration: 1, Func. Count: 6, Neg. LLF: 455.9540704587702
Iteration: 2, Func. Count: 13, Neg. LLF: 153.62582038982356
Iteration: 3, Func. Count: 18, Neg. LLF: 153.5964383092485
Iteration: 4, Func. Count: 23, Neg. LLF: 153.57210536422198
Iteration: 5, Func. Count: 28, Neg. LLF: 153.55846625989975
Iteration: 6, Func. Count: 33, Neg. LLF: 153.55563607505246
Iteration: 7, Func. Count: 38, Neg. LLF: 153.55521913683685
Iteration: 8, Func. Count: 43, Neg. LLF: 153.55508155070106
Iteration: 9, Func. Count: 48, Neg. LLF: 153.55507905551664
Iteration: 10, Func. Count: 52, Neg. LLF: 153.5550790555701
Optimization terminated successfully (Exit mode 0)
Current function value: 153.55507905551664
Iterations: 10
Function evaluations: 52
Gradient evaluations: 10
Iteration: 1, Func. Count: 7, Neg. LLF: 468.0717173996585
Iteration: 2, Func. Count: 15, Neg. LLF: 153.59599856553533
Iteration: 3, Func. Count: 21, Neg. LLF: 153.57999256298314
Iteration: 4, Func. Count: 27, Neg. LLF: 153.57848902226314
Iteration: 5, Func. Count: 33, Neg. LLF: 153.57559972684183
Iteration: 6, Func. Count: 39, Neg. LLF: 153.57283932012072
Iteration: 7, Func. Count: 45, Neg. LLF: 153.56881258091227
Iteration: 8, Func. Count: 51, Neg. LLF: 153.56007356947433
Iteration: 9, Func. Count: 57, Neg. LLF: 153.55732383605013
Iteration: 10, Func. Count: 63, Neg. LLF: 153.55546849683424
Iteration: 11, Func. Count: 69, Neg. LLF: 153.55508812524843
Iteration: 12, Func. Count: 75, Neg. LLF: 153.55507910370977
Iteration: 13, Func. Count: 80, Neg. LLF: 153.55507910444283
Optimization terminated successfully (Exit mode 0)
Current function value: 153.55507910370977
Iterations: 13
Function evaluations: 80
Gradient evaluations: 13
Iteration: 1, Func. Count: 8, Neg. LLF: 185.01928925046903
Iteration: 2, Func. Count: 17, Neg. LLF: 153.78730517628645
Iteration: 3, Func. Count: 24, Neg. LLF: 153.77445616480523
Iteration: 4, Func. Count: 31, Neg. LLF: 153.76706366916585
Iteration: 5, Func. Count: 38, Neg. LLF: 153.74632972929157
Iteration: 6, Func. Count: 45, Neg. LLF: 153.7296457567618
Iteration: 7, Func. Count: 52, Neg. LLF: 153.63614483849472
Iteration: 8, Func. Count: 59, Neg. LLF: 154.43478058739575
Iteration: 9, Func. Count: 67, Neg. LLF: 153.63949985763333
Iteration: 10, Func. Count: 75, Neg. LLF: 153.61007071484323
Iteration: 11, Func. Count: 83, Neg. LLF: 153.59120862017397
Iteration: 12, Func. Count: 90, Neg. LLF: 153.56720423246492
Iteration: 13, Func. Count: 97, Neg. LLF: 153.5564013836751
Iteration: 14, Func. Count: 104, Neg. LLF: 153.55522770330796
Iteration: 15, Func. Count: 111, Neg. LLF: 153.5551157328322
Iteration: 16, Func. Count: 118, Neg. LLF: 153.5551216920304
Iteration: 17, Func. Count: 126, Neg. LLF: 153.55508758430472
Iteration: 18, Func. Count: 133, Neg. LLF: 153.5550792611555
Iteration: 19, Func. Count: 139, Neg. LLF: 153.5550792633693
Optimization terminated successfully (Exit mode 0)
Current function value: 153.5550792611555
Iterations: 19
Function evaluations: 139
Gradient evaluations: 19
Iteration: 1, Func. Count: 9, Neg. LLF: 185.31733755673534
Iteration: 2, Func. Count: 19, Neg. LLF: 153.6817669092675
Iteration: 3, Func. Count: 27, Neg. LLF: 153.67029446073977
Iteration: 4, Func. Count: 35, Neg. LLF: 153.66512224185493
Iteration: 5, Func. Count: 43, Neg. LLF: 153.65960474247774
Iteration: 6, Func. Count: 51, Neg. LLF: 153.6416304054206
Iteration: 7, Func. Count: 59, Neg. LLF: 153.62188750640723
Iteration: 8, Func. Count: 67, Neg. LLF: 153.61103755821023
Iteration: 9, Func. Count: 75, Neg. LLF: 153.60462154921353
Iteration: 10, Func. Count: 83, Neg. LLF: 153.60444939846332
Iteration: 11, Func. Count: 91, Neg. LLF: 153.6043521183207
Iteration: 12, Func. Count: 99, Neg. LLF: 153.60427170762853
Iteration: 13, Func. Count: 107, Neg. LLF: 153.6042508818982
Iteration: 14, Func. Count: 115, Neg. LLF: 153.60424679576158
Iteration: 15, Func. Count: 122, Neg. LLF: 153.6042467959572
Optimization terminated successfully (Exit mode 0)
Current function value: 153.60424679576158
Iterations: 15
Function evaluations: 122
Gradient evaluations: 15
Iteration: 1, Func. Count: 6, Neg. LLF: 159.8416837450835
Iteration: 2, Func. Count: 12, Neg. LLF: 158.8310821463422
Iteration: 3, Func. Count: 18, Neg. LLF: 156.7850623297376
Iteration: 4, Func. Count: 23, Neg. LLF: 154.66511430880286
Iteration: 5, Func. Count: 28, Neg. LLF: 154.46216670168866
Iteration: 6, Func. Count: 33, Neg. LLF: 155.74870429505182
Iteration: 7, Func. Count: 39, Neg. LLF: 154.2037595604138
Iteration: 8, Func. Count: 44, Neg. LLF: 154.17691257336685
Iteration: 9, Func. Count: 49, Neg. LLF: 154.16753963936006
Iteration: 10, Func. Count: 54, Neg. LLF: 154.16631429478596
Iteration: 11, Func. Count: 59, Neg. LLF: 154.16609604292321
Iteration: 12, Func. Count: 64, Neg. LLF: 154.1660954384069
Optimization terminated successfully (Exit mode 0)
Current function value: 154.1660954384069
Iterations: 12
Function evaluations: 64
Gradient evaluations: 12
Iteration: 1, Func. Count: 7, Neg. LLF: 456.95183629405255
Iteration: 2, Func. Count: 15, Neg. LLF: 153.63070660109307
Iteration: 3, Func. Count: 21, Neg. LLF: 153.59618145746245
Iteration: 4, Func. Count: 27, Neg. LLF: 153.57404789284698
Iteration: 5, Func. Count: 33, Neg. LLF: 153.55901872476687
Iteration: 6, Func. Count: 39, Neg. LLF: 153.55580976093515
Iteration: 7, Func. Count: 45, Neg. LLF: 153.5552529617687
Iteration: 8, Func. Count: 51, Neg. LLF: 153.55508320304796
Iteration: 9, Func. Count: 57, Neg. LLF: 153.55507906414857
Iteration: 10, Func. Count: 62, Neg. LLF: 153.55507906423958
Optimization terminated successfully (Exit mode 0)
Current function value: 153.55507906414857
Iterations: 10
Function evaluations: 62
Gradient evaluations: 10
Iteration: 1, Func. Count: 8, Neg. LLF: 471.15492214082246
Iteration: 2, Func. Count: 17, Neg. LLF: 153.60219926198394
Iteration: 3, Func. Count: 24, Neg. LLF: 153.580690080318
Iteration: 4, Func. Count: 31, Neg. LLF: 153.57939767450918
Iteration: 5, Func. Count: 38, Neg. LLF: 153.57537714262858
Iteration: 6, Func. Count: 45, Neg. LLF: 153.57070299104248
Iteration: 7, Func. Count: 52, Neg. LLF: 153.5613312380651
Iteration: 8, Func. Count: 59, Neg. LLF: 153.5567050509536
Iteration: 9, Func. Count: 66, Neg. LLF: 153.55521933230855
Iteration: 10, Func. Count: 73, Neg. LLF: 153.55507936384245
Iteration: 11, Func. Count: 79, Neg. LLF: 153.55507936473154
Optimization terminated successfully (Exit mode 0)
Current function value: 153.55507936384245
Iterations: 11
Function evaluations: 79
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 185.08420227460388
Iteration: 2, Func. Count: 19, Neg. LLF: 153.78690537502982
Iteration: 3, Func. Count: 27, Neg. LLF: 153.77556411751843
Iteration: 4, Func. Count: 35, Neg. LLF: 153.7693832693244
Iteration: 5, Func. Count: 43, Neg. LLF: 153.7531581676116
Iteration: 6, Func. Count: 51, Neg. LLF: 153.71168403056217
Iteration: 7, Func. Count: 59, Neg. LLF: 153.67066232150185
Iteration: 8, Func. Count: 67, Neg. LLF: 153.8160950913488
Iteration: 9, Func. Count: 76, Neg. LLF: 153.60580887786057
Iteration: 10, Func. Count: 84, Neg. LLF: 153.59321830279092
Iteration: 11, Func. Count: 92, Neg. LLF: 153.58468728104873
Iteration: 12, Func. Count: 100, Neg. LLF: 153.57706977447316
Iteration: 13, Func. Count: 108, Neg. LLF: 153.5699156983954
Iteration: 14, Func. Count: 116, Neg. LLF: 153.56960556791552
Iteration: 15, Func. Count: 125, Neg. LLF: 153.566816664123
Iteration: 16, Func. Count: 133, Neg. LLF: 153.5602636914176
Iteration: 17, Func. Count: 141, Neg. LLF: 153.55629099652526
Iteration: 18, Func. Count: 149, Neg. LLF: 153.55508847356086
Iteration: 19, Func. Count: 157, Neg. LLF: 153.55507946210676
Iteration: 20, Func. Count: 164, Neg. LLF: 153.55507946438595
Optimization terminated successfully (Exit mode 0)
Current function value: 153.55507946210676
Iterations: 20
Function evaluations: 164
Gradient evaluations: 20
Iteration: 1, Func. Count: 10, Neg. LLF: 185.3822518558921
Iteration: 2, Func. Count: 21, Neg. LLF: 153.68509179465468
Iteration: 3, Func. Count: 30, Neg. LLF: 153.66999223822438
Iteration: 4, Func. Count: 39, Neg. LLF: 153.66581999230314
Iteration: 5, Func. Count: 48, Neg. LLF: 153.65710147254313
Iteration: 6, Func. Count: 57, Neg. LLF: 153.6287894903554
Iteration: 7, Func. Count: 66, Neg. LLF: 153.59050866932645
Iteration: 8, Func. Count: 75, Neg. LLF: 153.48968028713134
Iteration: 9, Func. Count: 84, Neg. LLF: 153.15161943485919
Iteration: 10, Func. Count: 93, Neg. LLF: 153.18538420415845
Iteration: 11, Func. Count: 103, Neg. LLF: 153.1238630289677
Iteration: 12, Func. Count: 112, Neg. LLF: 153.14509874927
Iteration: 13, Func. Count: 122, Neg. LLF: 153.13343259380446
Iteration: 14, Func. Count: 132, Neg. LLF: 26065945.918654818
Iteration: 15, Func. Count: 144, Neg. LLF: 154.09232231339305
Iteration: 16, Func. Count: 154, Neg. LLF: 153.3087249775536
Iteration: 17, Func. Count: 164, Neg. LLF: 153.11898713152627
Iteration: 18, Func. Count: 173, Neg. LLF: 153.11861589959167
Iteration: 19, Func. Count: 182, Neg. LLF: 153.11852057177848
Iteration: 20, Func. Count: 191, Neg. LLF: 153.11851488417213
Iteration: 21, Func. Count: 199, Neg. LLF: 153.1185148841834
Optimization terminated successfully (Exit mode 0)
Current function value: 153.11851488417213
Iterations: 22
Function evaluations: 199
Gradient evaluations: 21
Iteration: 1, Func. Count: 7, Neg. LLF: 160.04414240409784
Iteration: 2, Func. Count: 14, Neg. LLF: 159.1457802079265
Iteration: 3, Func. Count: 21, Neg. LLF: 156.82290708985653
Iteration: 4, Func. Count: 27, Neg. LLF: 155.2858385407607
Iteration: 5, Func. Count: 33, Neg. LLF: 154.32778522400525
Iteration: 6, Func. Count: 39, Neg. LLF: 154.78379412433856
Iteration: 7, Func. Count: 47, Neg. LLF: 154.21138683073963
Iteration: 8, Func. Count: 53, Neg. LLF: 154.1731237465077
Iteration: 9, Func. Count: 59, Neg. LLF: 154.16847061253165
Iteration: 10, Func. Count: 65, Neg. LLF: 154.16613009813213
Iteration: 11, Func. Count: 71, Neg. LLF: 154.16610177584462
Iteration: 12, Func. Count: 77, Neg. LLF: 154.1660955307726
Iteration: 13, Func. Count: 82, Neg. LLF: 154.16609570345267
Optimization terminated successfully (Exit mode 0)
Current function value: 154.1660955307726
Iterations: 13
Function evaluations: 82
Gradient evaluations: 13
Iteration: 1, Func. Count: 8, Neg. LLF: 455.65172832784083
Iteration: 2, Func. Count: 17, Neg. LLF: 153.62971318200727
Iteration: 3, Func. Count: 24, Neg. LLF: 153.59548767917937
Iteration: 4, Func. Count: 31, Neg. LLF: 153.57260181626594
Iteration: 5, Func. Count: 38, Neg. LLF: 153.55817090031695
Iteration: 6, Func. Count: 45, Neg. LLF: 153.5555959201165
Iteration: 7, Func. Count: 52, Neg. LLF: 153.55519851879953
Iteration: 8, Func. Count: 59, Neg. LLF: 153.55508167862024
Iteration: 9, Func. Count: 66, Neg. LLF: 153.55507905758802
Iteration: 10, Func. Count: 72, Neg. LLF: 153.55507905762857
Optimization terminated successfully (Exit mode 0)
Current function value: 153.55507905758802
Iterations: 10
Function evaluations: 72
Gradient evaluations: 10
Iteration: 1, Func. Count: 9, Neg. LLF: 469.6792171413204
Iteration: 2, Func. Count: 19, Neg. LLF: 153.60247367019545
Iteration: 3, Func. Count: 27, Neg. LLF: 153.58044401909694
Iteration: 4, Func. Count: 35, Neg. LLF: 153.57919089027877
Iteration: 5, Func. Count: 43, Neg. LLF: 153.5753892656584
Iteration: 6, Func. Count: 51, Neg. LLF: 153.57057846401125
Iteration: 7, Func. Count: 59, Neg. LLF: 153.56111915782608
Iteration: 8, Func. Count: 67, Neg. LLF: 153.55675069758502
Iteration: 9, Func. Count: 75, Neg. LLF: 153.55510058841836
Iteration: 10, Func. Count: 83, Neg. LLF: 153.55507930800295
Iteration: 11, Func. Count: 90, Neg. LLF: 153.55507930826346
Optimization terminated successfully (Exit mode 0)
Current function value: 153.55507930800295
Iterations: 11
Function evaluations: 90
Gradient evaluations: 11
Iteration: 1, Func. Count: 10, Neg. LLF: 185.03700451532697
Iteration: 2, Func. Count: 21, Neg. LLF: 153.7878622595696
Iteration: 3, Func. Count: 30, Neg. LLF: 153.77499186756043
Iteration: 4, Func. Count: 39, Neg. LLF: 153.76933192795187
Iteration: 5, Func. Count: 48, Neg. LLF: 153.747065087709
Iteration: 6, Func. Count: 57, Neg. LLF: 153.70082884449448
Iteration: 7, Func. Count: 66, Neg. LLF: 153.66074279493506
Iteration: 8, Func. Count: 75, Neg. LLF: 153.66644413040788
Iteration: 9, Func. Count: 85, Neg. LLF: 153.6013502041867
Iteration: 10, Func. Count: 94, Neg. LLF: 153.59262480335502
Iteration: 11, Func. Count: 103, Neg. LLF: 153.5734775807041
Iteration: 12, Func. Count: 112, Neg. LLF: 153.57044528372916
Iteration: 13, Func. Count: 121, Neg. LLF: 153.56702652066693
Iteration: 14, Func. Count: 130, Neg. LLF: 153.56611981724794
Iteration: 15, Func. Count: 139, Neg. LLF: 153.56073103014586
Iteration: 16, Func. Count: 148, Neg. LLF: 153.55548159313278
Iteration: 17, Func. Count: 157, Neg. LLF: 153.55520263936992
Iteration: 18, Func. Count: 166, Neg. LLF: 153.55508735727625
Iteration: 19, Func. Count: 175, Neg. LLF: 153.55507906406444
Iteration: 20, Func. Count: 183, Neg. LLF: 153.55507906642526
Optimization terminated successfully (Exit mode 0)
Current function value: 153.55507906406444
Iterations: 20
Function evaluations: 183
Gradient evaluations: 20
Iteration: 1, Func. Count: 11, Neg. LLF: 185.33713576767187
Iteration: 2, Func. Count: 23, Neg. LLF: 153.6871686693581
Iteration: 3, Func. Count: 33, Neg. LLF: 153.6700800517831
Iteration: 4, Func. Count: 43, Neg. LLF: 153.66576616840123
Iteration: 5, Func. Count: 53, Neg. LLF: 153.65834873458013
Iteration: 6, Func. Count: 63, Neg. LLF: 153.6432229266408
Iteration: 7, Func. Count: 73, Neg. LLF: 153.59826600198411
Iteration: 8, Func. Count: 83, Neg. LLF: 153.54924742870926
Iteration: 9, Func. Count: 93, Neg. LLF: 153.4071259079693
Iteration: 10, Func. Count: 103, Neg. LLF: 153.1873486825656
Iteration: 11, Func. Count: 113, Neg. LLF: 26142.209488364686
Iteration: 12, Func. Count: 125, Neg. LLF: 154.72014531518343
Iteration: 13, Func. Count: 136, Neg. LLF: 154.21256982161805
Iteration: 14, Func. Count: 147, Neg. LLF: 153.26478491999598
Iteration: 15, Func. Count: 158, Neg. LLF: 153.1216726021431
Iteration: 16, Func. Count: 168, Neg. LLF: 153.118683143167
Iteration: 17, Func. Count: 178, Neg. LLF: 153.1185234352977
Iteration: 18, Func. Count: 188, Neg. LLF: 153.11851557506498
Iteration: 19, Func. Count: 198, Neg. LLF: 153.1185148373841
Optimization terminated successfully (Exit mode 0)
Current function value: 153.1185148373841
Iterations: 20
Function evaluations: 198
Gradient evaluations: 19
Iteration: 1, Func. Count: 8, Neg. LLF: 159.75729588139583
Iteration: 2, Func. Count: 16, Neg. LLF: 158.98357945083185
Iteration: 3, Func. Count: 24, Neg. LLF: 156.78602374172974
Iteration: 4, Func. Count: 31, Neg. LLF: 155.38181430979898
Iteration: 5, Func. Count: 38, Neg. LLF: 154.19720964606455
Iteration: 6, Func. Count: 45, Neg. LLF: 154.2311757840672
Iteration: 7, Func. Count: 53, Neg. LLF: 154.1704176843433
Iteration: 8, Func. Count: 60, Neg. LLF: 154.16677077968464
Iteration: 9, Func. Count: 67, Neg. LLF: 154.16621573048258
Iteration: 10, Func. Count: 74, Neg. LLF: 154.16610106511584
Iteration: 11, Func. Count: 81, Neg. LLF: 154.16609555769676
Iteration: 12, Func. Count: 87, Neg. LLF: 154.16609566310677
Optimization terminated successfully (Exit mode 0)
Current function value: 154.16609555769676
Iterations: 12
Function evaluations: 87
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 457.8175791077745
Iteration: 2, Func. Count: 19, Neg. LLF: 153.6283783508219
Iteration: 3, Func. Count: 27, Neg. LLF: 153.59440124996263
Iteration: 4, Func. Count: 35, Neg. LLF: 153.57123885406577
Iteration: 5, Func. Count: 43, Neg. LLF: 153.55789103817025
Iteration: 6, Func. Count: 51, Neg. LLF: 153.55551620277532
Iteration: 7, Func. Count: 59, Neg. LLF: 153.55518893312018
Iteration: 8, Func. Count: 67, Neg. LLF: 153.5550810827339
Iteration: 9, Func. Count: 75, Neg. LLF: 153.55507905413032
Iteration: 10, Func. Count: 82, Neg. LLF: 153.55507905416744
Optimization terminated successfully (Exit mode 0)
Current function value: 153.55507905413032
Iterations: 10
Function evaluations: 82
Gradient evaluations: 10
Iteration: 1, Func. Count: 10, Neg. LLF: 471.22868400492547
Iteration: 2, Func. Count: 21, Neg. LLF: 153.60211848239138
Iteration: 3, Func. Count: 30, Neg. LLF: 153.58036479947987
Iteration: 4, Func. Count: 39, Neg. LLF: 153.57913948223472
Iteration: 5, Func. Count: 48, Neg. LLF: 153.5749943626877
Iteration: 6, Func. Count: 57, Neg. LLF: 153.57001125279643
Iteration: 7, Func. Count: 66, Neg. LLF: 153.56017029268082
Iteration: 8, Func. Count: 75, Neg. LLF: 153.55649976251624
Iteration: 9, Func. Count: 84, Neg. LLF: 153.5550841595076
Iteration: 10, Func. Count: 93, Neg. LLF: 153.5550791147229
Iteration: 11, Func. Count: 101, Neg. LLF: 153.5550791153282
Optimization terminated successfully (Exit mode 0)
Current function value: 153.5550791147229
Iterations: 11
Function evaluations: 101
Gradient evaluations: 11
Iteration: 1, Func. Count: 11, Neg. LLF: 185.04275400554005
Iteration: 2, Func. Count: 23, Neg. LLF: 153.78765083310097
Iteration: 3, Func. Count: 33, Neg. LLF: 153.77490925195073
Iteration: 4, Func. Count: 43, Neg. LLF: 153.76917655325667
Iteration: 5, Func. Count: 53, Neg. LLF: 153.74737419432586
Iteration: 6, Func. Count: 63, Neg. LLF: 153.70179020501325
Iteration: 7, Func. Count: 73, Neg. LLF: 153.661270001343
Iteration: 8, Func. Count: 83, Neg. LLF: 153.676340452206
Iteration: 9, Func. Count: 94, Neg. LLF: 153.6008025406388
Iteration: 10, Func. Count: 104, Neg. LLF: 153.592960864608
Iteration: 11, Func. Count: 114, Neg. LLF: 153.5730681663092
Iteration: 12, Func. Count: 124, Neg. LLF: 153.5767451368821
Iteration: 13, Func. Count: 135, Neg. LLF: 153.56878294084763
Iteration: 14, Func. Count: 145, Neg. LLF: 153.56611599646558
Iteration: 15, Func. Count: 155, Neg. LLF: 153.56278392662333
Iteration: 16, Func. Count: 165, Neg. LLF: 153.55703250607328
Iteration: 17, Func. Count: 175, Neg. LLF: 153.5558760338715
Iteration: 18, Func. Count: 185, Neg. LLF: 153.55528670948027
Iteration: 19, Func. Count: 195, Neg. LLF: 153.55508210195134
Iteration: 20, Func. Count: 205, Neg. LLF: 153.5550790516212
Iteration: 21, Func. Count: 214, Neg. LLF: 153.55507905385136
Optimization terminated successfully (Exit mode 0)
Current function value: 153.5550790516212
Iterations: 21
Function evaluations: 214
Gradient evaluations: 21
Iteration: 1, Func. Count: 12, Neg. LLF: 185.34438341405323
Iteration: 2, Func. Count: 25, Neg. LLF: 153.68724480105337
Iteration: 3, Func. Count: 36, Neg. LLF: 153.6698147092719
Iteration: 4, Func. Count: 47, Neg. LLF: 153.66581254511655
Iteration: 5, Func. Count: 58, Neg. LLF: 153.65613851091027
Iteration: 6, Func. Count: 69, Neg. LLF: 153.62693702322335
Iteration: 7, Func. Count: 80, Neg. LLF: 153.58902294396523
Iteration: 8, Func. Count: 91, Neg. LLF: 153.3112376473496
Iteration: 9, Func. Count: 102, Neg. LLF: 17227958.819940973
Iteration: 10, Func. Count: 115, Neg. LLF: 154.0179836692
Iteration: 11, Func. Count: 127, Neg. LLF: 168.87626362342897
Iteration: 12, Func. Count: 140, Neg. LLF: 153.16125140806952
Iteration: 13, Func. Count: 152, Neg. LLF: 153.1558316200809
Iteration: 14, Func. Count: 164, Neg. LLF: 153.0456331854351
Iteration: 15, Func. Count: 175, Neg. LLF: 153.045485664282
Iteration: 16, Func. Count: 186, Neg. LLF: 153.045484153978
Iteration: 17, Func. Count: 196, Neg. LLF: 153.04548415395925
Optimization terminated successfully (Exit mode 0)
Current function value: 153.045484153978
Iterations: 18
Function evaluations: 196
Gradient evaluations: 17
Iteration: 1, Func. Count: 5, Neg. LLF: 155.13300582400825
Iteration: 2, Func. Count: 9, Neg. LLF: 156.68148059353825
Iteration: 3, Func. Count: 14, Neg. LLF: 154.68239730828424
Iteration: 4, Func. Count: 18, Neg. LLF: 154.66743359929745
Iteration: 5, Func. Count: 22, Neg. LLF: 154.66465615219536
Iteration: 6, Func. Count: 26, Neg. LLF: 154.66151013491273
Iteration: 7, Func. Count: 30, Neg. LLF: 154.65106932110314
Iteration: 8, Func. Count: 34, Neg. LLF: 154.6416413217473
Iteration: 9, Func. Count: 38, Neg. LLF: 154.6335405758513
Iteration: 10, Func. Count: 42, Neg. LLF: 154.63129786902888
Iteration: 11, Func. Count: 46, Neg. LLF: 154.63081646293642
Iteration: 12, Func. Count: 50, Neg. LLF: 154.63009981174747
Iteration: 13, Func. Count: 54, Neg. LLF: 154.5704888718894
Iteration: 14, Func. Count: 58, Neg. LLF: 154.28796360110184
Iteration: 15, Func. Count: 62, Neg. LLF: 154.25988829279896
Iteration: 16, Func. Count: 66, Neg. LLF: 154.20221681811196
Iteration: 17, Func. Count: 70, Neg. LLF: 154.2004208162529
Iteration: 18, Func. Count: 74, Neg. LLF: 154.2003244808918
Iteration: 19, Func. Count: 78, Neg. LLF: 154.20031288160965
Iteration: 20, Func. Count: 82, Neg. LLF: 154.2003121777615
Optimization terminated successfully (Exit mode 0)
Current function value: 154.2003121777615
Iterations: 20
Function evaluations: 82
Gradient evaluations: 20
Iteration: 1, Func. Count: 6, Neg. LLF: 440.75846778153124
Iteration: 2, Func. Count: 13, Neg. LLF: 153.62304870456464
Iteration: 3, Func. Count: 18, Neg. LLF: 153.5992103148202
Iteration: 4, Func. Count: 23, Neg. LLF: 153.5719711491008
Iteration: 5, Func. Count: 28, Neg. LLF: 153.55810190900274
Iteration: 6, Func. Count: 33, Neg. LLF: 153.5554433411414
Iteration: 7, Func. Count: 38, Neg. LLF: 153.55517348687818
Iteration: 8, Func. Count: 43, Neg. LLF: 153.5550899564315
Iteration: 9, Func. Count: 48, Neg. LLF: 153.5550792151787
Iteration: 10, Func. Count: 52, Neg. LLF: 153.55507921524304
Optimization terminated successfully (Exit mode 0)
Current function value: 153.5550792151787
Iterations: 10
Function evaluations: 52
Gradient evaluations: 10
Iteration: 1, Func. Count: 7, Neg. LLF: 453.40811723253785
Iteration: 2, Func. Count: 15, Neg. LLF: 153.5913011556759
Iteration: 3, Func. Count: 21, Neg. LLF: 153.5804153307793
Iteration: 4, Func. Count: 27, Neg. LLF: 153.5782434622415
Iteration: 5, Func. Count: 33, Neg. LLF: 153.57534382755003
Iteration: 6, Func. Count: 39, Neg. LLF: 153.5734744942107
Iteration: 7, Func. Count: 45, Neg. LLF: 153.57070731993412
Iteration: 8, Func. Count: 51, Neg. LLF: 153.5640086562819
Iteration: 9, Func. Count: 57, Neg. LLF: 153.55732395808357
Iteration: 10, Func. Count: 63, Neg. LLF: 153.5554141209404
Iteration: 11, Func. Count: 69, Neg. LLF: 153.555348905055
Iteration: 12, Func. Count: 76, Neg. LLF: 153.5550800966771
Iteration: 13, Func. Count: 82, Neg. LLF: 153.55507917215263
Optimization terminated successfully (Exit mode 0)
Current function value: 153.55507917215263
Iterations: 13
Function evaluations: 82
Gradient evaluations: 13
Iteration: 1, Func. Count: 8, Neg. LLF: 184.9684165020076
Iteration: 2, Func. Count: 17, Neg. LLF: 153.7864312076744
Iteration: 3, Func. Count: 24, Neg. LLF: 153.77433940417373
Iteration: 4, Func. Count: 31, Neg. LLF: 153.76655819308277
Iteration: 5, Func. Count: 38, Neg. LLF: 153.7473348136031
Iteration: 6, Func. Count: 45, Neg. LLF: 153.7302199800071
Iteration: 7, Func. Count: 52, Neg. LLF: 153.62961750103776
Iteration: 8, Func. Count: 59, Neg. LLF: 154.02553426840282
Iteration: 9, Func. Count: 67, Neg. LLF: 153.68901476972036
Iteration: 10, Func. Count: 75, Neg. LLF: 153.62171775168986
Iteration: 11, Func. Count: 83, Neg. LLF: 153.59055906853322
Iteration: 12, Func. Count: 90, Neg. LLF: 153.57807643481271
Iteration: 13, Func. Count: 97, Neg. LLF: 153.55954012414134
Iteration: 14, Func. Count: 104, Neg. LLF: 153.56141351959653
Iteration: 15, Func. Count: 112, Neg. LLF: 153.55586488168348
Iteration: 16, Func. Count: 119, Neg. LLF: 153.55554746381048
Iteration: 17, Func. Count: 126, Neg. LLF: 153.55532164590184
Iteration: 18, Func. Count: 133, Neg. LLF: 153.5550804911123
Iteration: 19, Func. Count: 140, Neg. LLF: 153.55507920674708
Iteration: 20, Func. Count: 146, Neg. LLF: 153.55507920942875
Optimization terminated successfully (Exit mode 0)
Current function value: 153.55507920674708
Iterations: 20
Function evaluations: 146
Gradient evaluations: 20
Iteration: 1, Func. Count: 9, Neg. LLF: 185.24094469241697
Iteration: 2, Func. Count: 19, Neg. LLF: 153.69061740546715
Iteration: 3, Func. Count: 27, Neg. LLF: 153.6738758891237
Iteration: 4, Func. Count: 35, Neg. LLF: 153.6640041710025
Iteration: 5, Func. Count: 43, Neg. LLF: 153.65819665394207
Iteration: 6, Func. Count: 51, Neg. LLF: 153.65215679355518
Iteration: 7, Func. Count: 59, Neg. LLF: 153.62299871141425
Iteration: 8, Func. Count: 67, Neg. LLF: 153.60894796020335
Iteration: 9, Func. Count: 75, Neg. LLF: 153.60668335119473
Iteration: 10, Func. Count: 83, Neg. LLF: 153.6047808990632
Iteration: 11, Func. Count: 91, Neg. LLF: 153.60420607251527
Iteration: 12, Func. Count: 99, Neg. LLF: 153.60418421685884
Iteration: 13, Func. Count: 107, Neg. LLF: 153.60414749093138
Iteration: 14, Func. Count: 115, Neg. LLF: 153.60344112781826
Iteration: 15, Func. Count: 123, Neg. LLF: 153.5921413008092
Iteration: 16, Func. Count: 131, Neg. LLF: 153.5882056391753
Iteration: 17, Func. Count: 139, Neg. LLF: 153.5850591060285
Iteration: 18, Func. Count: 147, Neg. LLF: 153.56046614695055
Iteration: 19, Func. Count: 155, Neg. LLF: 434.7510651565559
Iteration: 20, Func. Count: 167, Neg. LLF: 153.55764506586297
Iteration: 21, Func. Count: 175, Neg. LLF: 153.55690920569754
Iteration: 22, Func. Count: 183, Neg. LLF: 153.55524060714177
Iteration: 23, Func. Count: 191, Neg. LLF: 153.55510529616845
Iteration: 24, Func. Count: 199, Neg. LLF: 153.55507914705024
Iteration: 25, Func. Count: 206, Neg. LLF: 153.5550791517209
Optimization terminated successfully (Exit mode 0)
Current function value: 153.55507914705024
Iterations: 26
Function evaluations: 206
Gradient evaluations: 25
Iteration: 1, Func. Count: 6, Neg. LLF: 155.60961565203758
Iteration: 2, Func. Count: 11, Neg. LLF: 156.29320470171405
Iteration: 3, Func. Count: 17, Neg. LLF: 154.89866935708682
Iteration: 4, Func. Count: 23, Neg. LLF: 154.66708057490217
Iteration: 5, Func. Count: 28, Neg. LLF: 154.66328662987667
Iteration: 6, Func. Count: 33, Neg. LLF: 154.65793913038905
Iteration: 7, Func. Count: 38, Neg. LLF: 154.65277041869282
Iteration: 8, Func. Count: 43, Neg. LLF: 154.63894754795126
Iteration: 9, Func. Count: 48, Neg. LLF: 154.6248746561063
Iteration: 10, Func. Count: 53, Neg. LLF: 154.60503948189373
Iteration: 11, Func. Count: 58, Neg. LLF: 154.13435392248053
Iteration: 12, Func. Count: 63, Neg. LLF: 154.01063696729182
Iteration: 13, Func. Count: 68, Neg. LLF: 154.00532830021012
Iteration: 14, Func. Count: 73, Neg. LLF: 154.00492748897054
Iteration: 15, Func. Count: 78, Neg. LLF: 154.0049141722106
Iteration: 16, Func. Count: 82, Neg. LLF: 154.00491411764324
Optimization terminated successfully (Exit mode 0)
Current function value: 154.0049141722106
Iterations: 16
Function evaluations: 82
Gradient evaluations: 16
Iteration: 1, Func. Count: 7, Neg. LLF: 157.46005460361334
Iteration: 2, Func. Count: 14, Neg. LLF: 162.5122449409088
Iteration: 3, Func. Count: 22, Neg. LLF: 153.7759945989683
Iteration: 4, Func. Count: 28, Neg. LLF: 153.71762593807628
Iteration: 5, Func. Count: 34, Neg. LLF: 153.71704820978186
Iteration: 6, Func. Count: 40, Neg. LLF: 153.71400394206188
Iteration: 7, Func. Count: 46, Neg. LLF: 153.70533170596607
Iteration: 8, Func. Count: 52, Neg. LLF: 153.6977538938603
Iteration: 9, Func. Count: 58, Neg. LLF: 153.68209735505687
Iteration: 10, Func. Count: 64, Neg. LLF: 153.66440467926105
Iteration: 11, Func. Count: 70, Neg. LLF: 153.59327954448023
Iteration: 12, Func. Count: 76, Neg. LLF: 154.237662605972
Iteration: 13, Func. Count: 83, Neg. LLF: 156.10081218470276
Iteration: 14, Func. Count: 90, Neg. LLF: 156.95863704909846
Iteration: 15, Func. Count: 97, Neg. LLF: 154.50388554034947
Iteration: 16, Func. Count: 104, Neg. LLF: 157.70272187127577
Iteration: 17, Func. Count: 111, Neg. LLF: 154.37084371619304
Iteration: 18, Func. Count: 118, Neg. LLF: 153.89507064606065
Iteration: 19, Func. Count: 125, Neg. LLF: 153.51692620280724
Iteration: 20, Func. Count: 132, Neg. LLF: 153.44385210155954
Iteration: 21, Func. Count: 138, Neg. LLF: 153.4424868006121
Iteration: 22, Func. Count: 144, Neg. LLF: 153.4423898141053
Iteration: 23, Func. Count: 150, Neg. LLF: 153.44238244974736
Iteration: 24, Func. Count: 156, Neg. LLF: 153.44238137740444
Iteration: 25, Func. Count: 161, Neg. LLF: 153.44238137732538
Optimization terminated successfully (Exit mode 0)
Current function value: 153.44238137740444
Iterations: 25
Function evaluations: 161
Gradient evaluations: 25
Iteration: 1, Func. Count: 8, Neg. LLF: 168.56284023706996
Iteration: 2, Func. Count: 16, Neg. LLF: 155.23594220374048
Iteration: 3, Func. Count: 25, Neg. LLF: 153.67283835122896
Iteration: 4, Func. Count: 32, Neg. LLF: 153.63591087166952
Iteration: 5, Func. Count: 39, Neg. LLF: 153.63406516951207
Iteration: 6, Func. Count: 46, Neg. LLF: 153.6335626040796
Iteration: 7, Func. Count: 53, Neg. LLF: 153.63255378415587
Iteration: 8, Func. Count: 60, Neg. LLF: 153.6299854158185
Iteration: 9, Func. Count: 67, Neg. LLF: 153.62142106188767
Iteration: 10, Func. Count: 74, Neg. LLF: 153.70706628898765
Iteration: 11, Func. Count: 82, Neg. LLF: 153.67087588236822
Iteration: 12, Func. Count: 90, Neg. LLF: 153.67824199303482
Iteration: 13, Func. Count: 98, Neg. LLF: 153.82718097193302
Iteration: 14, Func. Count: 106, Neg. LLF: 154.74515530392583
Iteration: 15, Func. Count: 114, Neg. LLF: 154.11973339745575
Iteration: 16, Func. Count: 122, Neg. LLF: 158.54324839417626
Iteration: 17, Func. Count: 130, Neg. LLF: 153.52940700021625
Iteration: 18, Func. Count: 138, Neg. LLF: 153.45540570683843
Iteration: 19, Func. Count: 145, Neg. LLF: 153.45466471610465
Iteration: 20, Func. Count: 153, Neg. LLF: 153.447379635486
Iteration: 21, Func. Count: 160, Neg. LLF: 153.4450792482624
Iteration: 22, Func. Count: 167, Neg. LLF: 153.44379740783526
Iteration: 23, Func. Count: 174, Neg. LLF: 153.44254408300958
Iteration: 24, Func. Count: 181, Neg. LLF: 153.44239042574077
Iteration: 25, Func. Count: 188, Neg. LLF: 153.44238142082824
Iteration: 26, Func. Count: 194, Neg. LLF: 153.44238142095793
Optimization terminated successfully (Exit mode 0)
Current function value: 153.44238142082824
Iterations: 26
Function evaluations: 194
Gradient evaluations: 26
Iteration: 1, Func. Count: 9, Neg. LLF: 169.40636120830362
Iteration: 2, Func. Count: 18, Neg. LLF: 156.64879413389804
Iteration: 3, Func. Count: 28, Neg. LLF: 153.5225434965209
Iteration: 4, Func. Count: 36, Neg. LLF: 153.67651620156033
Iteration: 5, Func. Count: 45, Neg. LLF: 153.50082286257557
Iteration: 6, Func. Count: 53, Neg. LLF: 153.48307515517243
Iteration: 7, Func. Count: 61, Neg. LLF: 153.47801708328703
Iteration: 8, Func. Count: 69, Neg. LLF: 153.46854830851095
Iteration: 9, Func. Count: 77, Neg. LLF: 153.43512508750683
Iteration: 10, Func. Count: 85, Neg. LLF: 153.40332106193517
Iteration: 11, Func. Count: 93, Neg. LLF: 153.37817659281694
Iteration: 12, Func. Count: 101, Neg. LLF: 153.366438192398
Iteration: 13, Func. Count: 109, Neg. LLF: 153.36329387780668
Iteration: 14, Func. Count: 117, Neg. LLF: 153.36300147359302
Iteration: 15, Func. Count: 125, Neg. LLF: 153.36299299875708
Iteration: 16, Func. Count: 132, Neg. LLF: 153.3629929987752
Optimization terminated successfully (Exit mode 0)
Current function value: 153.36299299875708
Iterations: 16
Function evaluations: 132
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 184.99374363852004
Iteration: 2, Func. Count: 21, Neg. LLF: 159.54870466768287
Iteration: 3, Func. Count: 31, Neg. LLF: 153.69552851193419
Iteration: 4, Func. Count: 40, Neg. LLF: 153.6564569600387
Iteration: 5, Func. Count: 49, Neg. LLF: 153.6033712206805
Iteration: 6, Func. Count: 58, Neg. LLF: 153.58685006570292
Iteration: 7, Func. Count: 67, Neg. LLF: 153.51026629295168
Iteration: 8, Func. Count: 76, Neg. LLF: 153.4916375448922
Iteration: 9, Func. Count: 85, Neg. LLF: 153.46773302753414
Iteration: 10, Func. Count: 94, Neg. LLF: 153.4560412264687
Iteration: 11, Func. Count: 103, Neg. LLF: 153.44273695034946
Iteration: 12, Func. Count: 112, Neg. LLF: 153.42541502256094
Iteration: 13, Func. Count: 121, Neg. LLF: 153.39788347503816
Iteration: 14, Func. Count: 130, Neg. LLF: 153.379001838751
Iteration: 15, Func. Count: 139, Neg. LLF: 153.36439171365163
Iteration: 16, Func. Count: 148, Neg. LLF: 153.36329234823776
Iteration: 17, Func. Count: 157, Neg. LLF: 153.36300306334692
Iteration: 18, Func. Count: 166, Neg. LLF: 153.36299353301646
Iteration: 19, Func. Count: 175, Neg. LLF: 153.36299304333977
Optimization terminated successfully (Exit mode 0)
Current function value: 153.36299304333977
Iterations: 19
Function evaluations: 175
Gradient evaluations: 19
Iteration: 1, Func. Count: 7, Neg. LLF: 154.80204937637933
Iteration: 2, Func. Count: 13, Neg. LLF: 154.88497282312272
Iteration: 3, Func. Count: 20, Neg. LLF: 154.9668800897692
Iteration: 4, Func. Count: 27, Neg. LLF: 154.67070054103053
Iteration: 5, Func. Count: 33, Neg. LLF: 154.66205943703332
Iteration: 6, Func. Count: 39, Neg. LLF: 154.65566385096932
Iteration: 7, Func. Count: 45, Neg. LLF: 154.651710347982
Iteration: 8, Func. Count: 51, Neg. LLF: 154.64532167209032
Iteration: 9, Func. Count: 57, Neg. LLF: 154.63749039402845
Iteration: 10, Func. Count: 63, Neg. LLF: 154.62475206770372
Iteration: 11, Func. Count: 69, Neg. LLF: 154.60064217637392
Iteration: 12, Func. Count: 75, Neg. LLF: 154.088193251306
Iteration: 13, Func. Count: 81, Neg. LLF: 153.99486203155888
Iteration: 14, Func. Count: 87, Neg. LLF: 153.9814342924035
Iteration: 15, Func. Count: 93, Neg. LLF: 153.97202275168283
Iteration: 16, Func. Count: 99, Neg. LLF: 153.96694067312959
Iteration: 17, Func. Count: 105, Neg. LLF: 153.96548091747422
Iteration: 18, Func. Count: 111, Neg. LLF: 153.94481890094596
Iteration: 19, Func. Count: 117, Neg. LLF: 153.92738152190051
Iteration: 20, Func. Count: 123, Neg. LLF: 153.91393565925293
Iteration: 21, Func. Count: 129, Neg. LLF: 153.90229180561977
Iteration: 22, Func. Count: 135, Neg. LLF: 153.90476492820972
Iteration: 23, Func. Count: 141, Neg. LLF: 153.90632342684208
Iteration: 24, Func. Count: 157, Neg. LLF: 153.9091824490253
Iteration: 25, Func. Count: 164, Neg. LLF: 153.9078462157358
Iteration: 26, Func. Count: 171, Neg. LLF: 153.90782532465334
Iteration: 27, Func. Count: 178, Neg. LLF: 153.90781396197997
Iteration: 28, Func. Count: 183, Neg. LLF: 153.9078139619736
Optimization terminated successfully (Exit mode 0)
Current function value: 153.90781396197997
Iterations: 29
Function evaluations: 183
Gradient evaluations: 28
Iteration: 1, Func. Count: 8, Neg. LLF: 157.47931442624875
Iteration: 2, Func. Count: 16, Neg. LLF: 162.66020394388482
Iteration: 3, Func. Count: 25, Neg. LLF: 153.76864318174475
Iteration: 4, Func. Count: 32, Neg. LLF: 153.7176589806123
Iteration: 5, Func. Count: 39, Neg. LLF: 153.71707006625635
Iteration: 6, Func. Count: 46, Neg. LLF: 153.71396177250804
Iteration: 7, Func. Count: 53, Neg. LLF: 153.70721571257667
Iteration: 8, Func. Count: 60, Neg. LLF: 153.69951916054632
Iteration: 9, Func. Count: 67, Neg. LLF: 153.68517806395775
Iteration: 10, Func. Count: 74, Neg. LLF: 153.6687589298898
Iteration: 11, Func. Count: 81, Neg. LLF: 153.6096858313054
Iteration: 12, Func. Count: 88, Neg. LLF: 154.95429793179756
Iteration: 13, Func. Count: 96, Neg. LLF: 155.97001978821254
Iteration: 14, Func. Count: 104, Neg. LLF: 155.88720337034712
Iteration: 15, Func. Count: 112, Neg. LLF: 178.5353761544948
Iteration: 16, Func. Count: 121, Neg. LLF: 153.54565114104065
Iteration: 17, Func. Count: 128, Neg. LLF: 153.59997581564167
Iteration: 18, Func. Count: 136, Neg. LLF: 153.53641712367292
Iteration: 19, Func. Count: 143, Neg. LLF: 153.48069191760447
Iteration: 20, Func. Count: 150, Neg. LLF: 155.3896172656929
Iteration: 21, Func. Count: 158, Neg. LLF: 153.78250938005155
Iteration: 22, Func. Count: 166, Neg. LLF: 153.4555068372341
Iteration: 23, Func. Count: 174, Neg. LLF: 153.44265459720148
Iteration: 24, Func. Count: 181, Neg. LLF: 153.44251109085766
Iteration: 25, Func. Count: 188, Neg. LLF: 153.44239624299558
Iteration: 26, Func. Count: 195, Neg. LLF: 153.4423817154685
Iteration: 27, Func. Count: 201, Neg. LLF: 153.44238171574327
Optimization terminated successfully (Exit mode 0)
Current function value: 153.4423817154685
Iterations: 28
Function evaluations: 201
Gradient evaluations: 27
Iteration: 1, Func. Count: 9, Neg. LLF: 168.6431262414403
Iteration: 2, Func. Count: 18, Neg. LLF: 155.37069059121794
Iteration: 3, Func. Count: 28, Neg. LLF: 153.66320191889048
Iteration: 4, Func. Count: 36, Neg. LLF: 153.63471014502912
Iteration: 5, Func. Count: 44, Neg. LLF: 153.63347782380814
Iteration: 6, Func. Count: 52, Neg. LLF: 153.6329095322468
Iteration: 7, Func. Count: 60, Neg. LLF: 153.63194101479334
Iteration: 8, Func. Count: 68, Neg. LLF: 153.6291605303156
Iteration: 9, Func. Count: 76, Neg. LLF: 153.62051261615667
Iteration: 10, Func. Count: 84, Neg. LLF: 153.68755358551556
Iteration: 11, Func. Count: 93, Neg. LLF: 153.74797871759282
Iteration: 12, Func. Count: 102, Neg. LLF: 154.06286682148803
Iteration: 13, Func. Count: 111, Neg. LLF: 165.36472206336447
Iteration: 14, Func. Count: 120, Neg. LLF: 156.77870884500035
Iteration: 15, Func. Count: 129, Neg. LLF: 154.37866888439214
Iteration: 16, Func. Count: 138, Neg. LLF: 154.30164247637467
Iteration: 17, Func. Count: 147, Neg. LLF: 153.7099551231434
Iteration: 18, Func. Count: 156, Neg. LLF: 153.5220402110249
Iteration: 19, Func. Count: 164, Neg. LLF: 153.4820818629156
Iteration: 20, Func. Count: 172, Neg. LLF: 153.47882382821928
Iteration: 21, Func. Count: 181, Neg. LLF: 153.44379842696887
Iteration: 22, Func. Count: 189, Neg. LLF: 153.44307600891236
Iteration: 23, Func. Count: 197, Neg. LLF: 153.44247573963216
Iteration: 24, Func. Count: 205, Neg. LLF: 153.44241081689688
Iteration: 25, Func. Count: 213, Neg. LLF: 153.44238139745556
Iteration: 26, Func. Count: 220, Neg. LLF: 153.44238139764659
Optimization terminated successfully (Exit mode 0)
Current function value: 153.44238139745556
Iterations: 26
Function evaluations: 220
Gradient evaluations: 26
Iteration: 1, Func. Count: 10, Neg. LLF: 169.55509192398114
Iteration: 2, Func. Count: 20, Neg. LLF: 156.7550171235988
Iteration: 3, Func. Count: 31, Neg. LLF: 153.5157245601827
Iteration: 4, Func. Count: 40, Neg. LLF: 153.64773334756217
Iteration: 5, Func. Count: 50, Neg. LLF: 153.49585199261202
Iteration: 6, Func. Count: 59, Neg. LLF: 153.48378483796856
Iteration: 7, Func. Count: 68, Neg. LLF: 153.47869240094676
Iteration: 8, Func. Count: 77, Neg. LLF: 153.4665493930958
Iteration: 9, Func. Count: 86, Neg. LLF: 153.4312363453145
Iteration: 10, Func. Count: 95, Neg. LLF: 153.39831158624955
Iteration: 11, Func. Count: 104, Neg. LLF: 153.3752650148926
Iteration: 12, Func. Count: 113, Neg. LLF: 153.36506557013763
Iteration: 13, Func. Count: 122, Neg. LLF: 153.36325855826183
Iteration: 14, Func. Count: 131, Neg. LLF: 153.36299728287662
Iteration: 15, Func. Count: 140, Neg. LLF: 153.36299287306468
Iteration: 16, Func. Count: 148, Neg. LLF: 153.36299287305877
Optimization terminated successfully (Exit mode 0)
Current function value: 153.36299287306468
Iterations: 16
Function evaluations: 148
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 185.05350283459612
Iteration: 2, Func. Count: 23, Neg. LLF: 159.80423777287842
Iteration: 3, Func. Count: 34, Neg. LLF: 153.6942542071633
Iteration: 4, Func. Count: 44, Neg. LLF: 153.65887851380378
Iteration: 5, Func. Count: 54, Neg. LLF: 153.6244464954053
Iteration: 6, Func. Count: 64, Neg. LLF: 153.53300169052875
Iteration: 7, Func. Count: 74, Neg. LLF: 153.51266345465814
Iteration: 8, Func. Count: 84, Neg. LLF: 153.4826282613983
Iteration: 9, Func. Count: 94, Neg. LLF: 153.46706159089666
Iteration: 10, Func. Count: 104, Neg. LLF: 153.45862926915052
Iteration: 11, Func. Count: 114, Neg. LLF: 153.43760019803733
Iteration: 12, Func. Count: 124, Neg. LLF: 153.4113442849383
Iteration: 13, Func. Count: 134, Neg. LLF: 153.3888629682607
Iteration: 14, Func. Count: 144, Neg. LLF: 153.37132975989118
Iteration: 15, Func. Count: 154, Neg. LLF: 153.36390286715397
Iteration: 16, Func. Count: 164, Neg. LLF: 153.36309177141007
Iteration: 17, Func. Count: 174, Neg. LLF: 153.3630008826303
Iteration: 18, Func. Count: 184, Neg. LLF: 153.36299301899
Iteration: 19, Func. Count: 193, Neg. LLF: 153.36299304751483
Optimization terminated successfully (Exit mode 0)
Current function value: 153.36299301899
Iterations: 19
Function evaluations: 193
Gradient evaluations: 19
Iteration: 1, Func. Count: 8, Neg. LLF: 162.8979230123209
Iteration: 2, Func. Count: 17, Neg. LLF: 155.35447026458175
Iteration: 3, Func. Count: 24, Neg. LLF: 155.66594145402462
Iteration: 4, Func. Count: 32, Neg. LLF: 159.21098106635546
Iteration: 5, Func. Count: 42, Neg. LLF: 154.90898239379763
Iteration: 6, Func. Count: 49, Neg. LLF: 154.53230269681433
Iteration: 7, Func. Count: 56, Neg. LLF: 154.4351783003208
Iteration: 8, Func. Count: 63, Neg. LLF: 153.99543837277278
Iteration: 9, Func. Count: 70, Neg. LLF: 154.06658720798555
Iteration: 10, Func. Count: 78, Neg. LLF: 153.92408140392337
Iteration: 11, Func. Count: 85, Neg. LLF: 153.91320295632212
Iteration: 12, Func. Count: 92, Neg. LLF: 153.9096033817101
Iteration: 13, Func. Count: 99, Neg. LLF: 153.90791180389252
Iteration: 14, Func. Count: 106, Neg. LLF: 153.9078135458725
Iteration: 15, Func. Count: 113, Neg. LLF: 153.90780835930818
Iteration: 16, Func. Count: 119, Neg. LLF: 153.90780852681445
Optimization terminated successfully (Exit mode 0)
Current function value: 153.90780835930818
Iterations: 16
Function evaluations: 119
Gradient evaluations: 16
Iteration: 1, Func. Count: 9, Neg. LLF: 403.3907561951414
Iteration: 2, Func. Count: 19, Neg. LLF: 158.44380970968376
Iteration: 3, Func. Count: 29, Neg. LLF: 153.44963366533767
Iteration: 4, Func. Count: 37, Neg. LLF: 153.446969564976
Iteration: 5, Func. Count: 45, Neg. LLF: 153.44563076519452
Iteration: 6, Func. Count: 53, Neg. LLF: 153.44490773956244
Iteration: 7, Func. Count: 61, Neg. LLF: 153.44383963232514
Iteration: 8, Func. Count: 69, Neg. LLF: 153.4427540659779
Iteration: 9, Func. Count: 77, Neg. LLF: 153.4424284668568
Iteration: 10, Func. Count: 85, Neg. LLF: 153.4423827677192
Iteration: 11, Func. Count: 93, Neg. LLF: 153.44238146177602
Iteration: 12, Func. Count: 100, Neg. LLF: 153.44238146179882
Optimization terminated successfully (Exit mode 0)
Current function value: 153.44238146177602
Iterations: 12
Function evaluations: 100
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 168.56701257931485
Iteration: 2, Func. Count: 20, Neg. LLF: 155.3250344375121
Iteration: 3, Func. Count: 31, Neg. LLF: 153.66457134270183
Iteration: 4, Func. Count: 40, Neg. LLF: 153.63570976979426
Iteration: 5, Func. Count: 49, Neg. LLF: 153.63414123459128
Iteration: 6, Func. Count: 58, Neg. LLF: 153.63349229269892
Iteration: 7, Func. Count: 67, Neg. LLF: 153.63277386630006
Iteration: 8, Func. Count: 76, Neg. LLF: 153.6297139573879
Iteration: 9, Func. Count: 85, Neg. LLF: 153.62129306224
Iteration: 10, Func. Count: 94, Neg. LLF: 153.70195729561794
Iteration: 11, Func. Count: 104, Neg. LLF: 153.65972826607674
Iteration: 12, Func. Count: 114, Neg. LLF: 153.6551857259915
Iteration: 13, Func. Count: 124, Neg. LLF: 153.85843215177715
Iteration: 14, Func. Count: 134, Neg. LLF: 154.78634272827637
Iteration: 15, Func. Count: 144, Neg. LLF: 154.2064504633289
Iteration: 16, Func. Count: 154, Neg. LLF: 154.8595583309701
Iteration: 17, Func. Count: 164, Neg. LLF: 153.58019307351114
Iteration: 18, Func. Count: 174, Neg. LLF: 153.4519859760303
Iteration: 19, Func. Count: 183, Neg. LLF: 153.44908705105962
Iteration: 20, Func. Count: 192, Neg. LLF: 153.4454478895171
Iteration: 21, Func. Count: 201, Neg. LLF: 153.44444011176645
Iteration: 22, Func. Count: 210, Neg. LLF: 153.44256120632252
Iteration: 23, Func. Count: 219, Neg. LLF: 153.4424129625734
Iteration: 24, Func. Count: 228, Neg. LLF: 153.442382707948
Iteration: 25, Func. Count: 237, Neg. LLF: 153.44238136858047
Iteration: 26, Func. Count: 245, Neg. LLF: 153.44238136887992
Optimization terminated successfully (Exit mode 0)
Current function value: 153.44238136858047
Iterations: 26
Function evaluations: 245
Gradient evaluations: 26
Iteration: 1, Func. Count: 11, Neg. LLF: 169.40368444268668
Iteration: 2, Func. Count: 22, Neg. LLF: 156.38598986922477
Iteration: 3, Func. Count: 34, Neg. LLF: 153.5092484360878
Iteration: 4, Func. Count: 44, Neg. LLF: 153.57213258773956
Iteration: 5, Func. Count: 55, Neg. LLF: 153.49373682401193
Iteration: 6, Func. Count: 65, Neg. LLF: 153.48095426688351
Iteration: 7, Func. Count: 75, Neg. LLF: 153.47543087530084
Iteration: 8, Func. Count: 85, Neg. LLF: 153.45391434644603
Iteration: 9, Func. Count: 95, Neg. LLF: 153.4237592192052
Iteration: 10, Func. Count: 105, Neg. LLF: 153.39546303562486
Iteration: 11, Func. Count: 115, Neg. LLF: 153.37268706366632
Iteration: 12, Func. Count: 125, Neg. LLF: 153.36514975847427
Iteration: 13, Func. Count: 135, Neg. LLF: 153.3632096601237
Iteration: 14, Func. Count: 145, Neg. LLF: 153.36303005770094
Iteration: 15, Func. Count: 155, Neg. LLF: 153.36299353046823
Iteration: 16, Func. Count: 165, Neg. LLF: 153.36299277925454
Optimization terminated successfully (Exit mode 0)
Current function value: 153.36299277925454
Iterations: 16
Function evaluations: 165
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 185.00955659976233
Iteration: 2, Func. Count: 25, Neg. LLF: 159.69713647781586
Iteration: 3, Func. Count: 37, Neg. LLF: 153.69478682390366
Iteration: 4, Func. Count: 48, Neg. LLF: 153.66369396651683
Iteration: 5, Func. Count: 59, Neg. LLF: 153.62922545768225
Iteration: 6, Func. Count: 70, Neg. LLF: 153.52009500622506
Iteration: 7, Func. Count: 81, Neg. LLF: 153.524034718986
Iteration: 8, Func. Count: 93, Neg. LLF: 153.48196188301836
Iteration: 9, Func. Count: 104, Neg. LLF: 153.46455298661337
Iteration: 10, Func. Count: 115, Neg. LLF: 153.45544173634434
Iteration: 11, Func. Count: 126, Neg. LLF: 153.43891404543243
Iteration: 12, Func. Count: 137, Neg. LLF: 153.4142474558612
Iteration: 13, Func. Count: 148, Neg. LLF: 153.38351319307787
Iteration: 14, Func. Count: 159, Neg. LLF: 153.3670510220995
Iteration: 15, Func. Count: 170, Neg. LLF: 153.36327388778085
Iteration: 16, Func. Count: 181, Neg. LLF: 153.3630545178521
Iteration: 17, Func. Count: 192, Neg. LLF: 153.3629977298249
Iteration: 18, Func. Count: 203, Neg. LLF: 153.36299328203475
Iteration: 19, Func. Count: 214, Neg. LLF: 153.3629927764546
Optimization terminated successfully (Exit mode 0)
Current function value: 153.3629927764546
Iterations: 19
Function evaluations: 214
Gradient evaluations: 19
Iteration: 1, Func. Count: 9, Neg. LLF: 163.25275618407014
Iteration: 2, Func. Count: 19, Neg. LLF: 155.37507128704218
Iteration: 3, Func. Count: 27, Neg. LLF: 155.73675326677954
Iteration: 4, Func. Count: 36, Neg. LLF: 161.96177289401905
Iteration: 5, Func. Count: 47, Neg. LLF: 155.11110152673817
Iteration: 6, Func. Count: 56, Neg. LLF: 155.73443209892918
Iteration: 7, Func. Count: 65, Neg. LLF: 154.55664660139652
Iteration: 8, Func. Count: 73, Neg. LLF: 154.382612203978
Iteration: 9, Func. Count: 81, Neg. LLF: 154.21821776376797
Iteration: 10, Func. Count: 89, Neg. LLF: 154.11449955901784
Iteration: 11, Func. Count: 97, Neg. LLF: 154.1049802271956
Iteration: 12, Func. Count: 106, Neg. LLF: 153.94514623242554
Iteration: 13, Func. Count: 114, Neg. LLF: 153.9118253520502
Iteration: 14, Func. Count: 122, Neg. LLF: 153.90847822369503
Iteration: 15, Func. Count: 130, Neg. LLF: 153.9079526550887
Iteration: 16, Func. Count: 138, Neg. LLF: 153.90784182373005
Iteration: 17, Func. Count: 146, Neg. LLF: 153.90781400231705
Iteration: 18, Func. Count: 154, Neg. LLF: 153.90780883966193
Iteration: 19, Func. Count: 161, Neg. LLF: 153.90780893902598
Optimization terminated successfully (Exit mode 0)
Current function value: 153.90780883966193
Iterations: 19
Function evaluations: 161
Gradient evaluations: 19
Iteration: 1, Func. Count: 10, Neg. LLF: 404.830579678672
Iteration: 2, Func. Count: 21, Neg. LLF: 158.43082043230416
Iteration: 3, Func. Count: 32, Neg. LLF: 153.44936351093511
Iteration: 4, Func. Count: 41, Neg. LLF: 153.44681560796053
Iteration: 5, Func. Count: 50, Neg. LLF: 153.44553445526438
Iteration: 6, Func. Count: 59, Neg. LLF: 153.4448035535332
Iteration: 7, Func. Count: 68, Neg. LLF: 153.44363130133584
Iteration: 8, Func. Count: 77, Neg. LLF: 153.44266104908021
Iteration: 9, Func. Count: 86, Neg. LLF: 153.44241176307722
Iteration: 10, Func. Count: 95, Neg. LLF: 153.44238195251353
Iteration: 11, Func. Count: 104, Neg. LLF: 153.44238133961113
Optimization terminated successfully (Exit mode 0)
Current function value: 153.44238133961113
Iterations: 11
Function evaluations: 104
Gradient evaluations: 11
Iteration: 1, Func. Count: 11, Neg. LLF: 168.5865590622141
Iteration: 2, Func. Count: 22, Neg. LLF: 155.34764165803085
Iteration: 3, Func. Count: 34, Neg. LLF: 153.66404706558606
Iteration: 4, Func. Count: 44, Neg. LLF: 153.63498697650763
Iteration: 5, Func. Count: 54, Neg. LLF: 153.633785499521
Iteration: 6, Func. Count: 64, Neg. LLF: 153.63315697362194
Iteration: 7, Func. Count: 74, Neg. LLF: 153.6323196892631
Iteration: 8, Func. Count: 84, Neg. LLF: 153.6290918033269
Iteration: 9, Func. Count: 94, Neg. LLF: 153.61982312461322
Iteration: 10, Func. Count: 104, Neg. LLF: 153.6957472073045
Iteration: 11, Func. Count: 115, Neg. LLF: 153.65133743967672
Iteration: 12, Func. Count: 126, Neg. LLF: 153.66509334298397
Iteration: 13, Func. Count: 137, Neg. LLF: 154.2666952267283
Iteration: 14, Func. Count: 148, Neg. LLF: 154.6463255717801
Iteration: 15, Func. Count: 159, Neg. LLF: 154.2005994298656
Iteration: 16, Func. Count: 170, Neg. LLF: 153.5692571257554
Iteration: 17, Func. Count: 181, Neg. LLF: 153.7996095222071
Iteration: 18, Func. Count: 193, Neg. LLF: 153.4479627982045
Iteration: 19, Func. Count: 203, Neg. LLF: 153.44531948308662
Iteration: 20, Func. Count: 213, Neg. LLF: 153.44377756632056
Iteration: 21, Func. Count: 223, Neg. LLF: 153.4432504261064
Iteration: 22, Func. Count: 233, Neg. LLF: 153.4424059815229
Iteration: 23, Func. Count: 243, Neg. LLF: 153.4423837053364
Iteration: 24, Func. Count: 253, Neg. LLF: 153.44238136031132
Iteration: 25, Func. Count: 262, Neg. LLF: 153.44238136061065
Optimization terminated successfully (Exit mode 0)
Current function value: 153.44238136031132
Iterations: 25
Function evaluations: 262
Gradient evaluations: 25
Iteration: 1, Func. Count: 12, Neg. LLF: 169.44749540242654
Iteration: 2, Func. Count: 24, Neg. LLF: 156.4386390436294
Iteration: 3, Func. Count: 37, Neg. LLF: 153.50929577600192
Iteration: 4, Func. Count: 48, Neg. LLF: 153.57970166053485
Iteration: 5, Func. Count: 60, Neg. LLF: 153.49386217927076
Iteration: 6, Func. Count: 71, Neg. LLF: 153.48109436888492
Iteration: 7, Func. Count: 82, Neg. LLF: 153.47575897200275
Iteration: 8, Func. Count: 93, Neg. LLF: 153.45889084864467
Iteration: 9, Func. Count: 104, Neg. LLF: 153.41998877703202
Iteration: 10, Func. Count: 115, Neg. LLF: 153.39415108255423
Iteration: 11, Func. Count: 126, Neg. LLF: 153.37043465010987
Iteration: 12, Func. Count: 137, Neg. LLF: 153.3637439644668
Iteration: 13, Func. Count: 148, Neg. LLF: 153.36306718186066
Iteration: 14, Func. Count: 159, Neg. LLF: 153.36300133042303
Iteration: 15, Func. Count: 170, Neg. LLF: 153.3629942592681
Iteration: 16, Func. Count: 181, Neg. LLF: 153.36299278161715
Iteration: 17, Func. Count: 191, Neg. LLF: 153.36299278162198
Optimization terminated successfully (Exit mode 0)
Current function value: 153.36299278161715
Iterations: 17
Function evaluations: 191
Gradient evaluations: 17
Iteration: 1, Func. Count: 13, Neg. LLF: 185.0160943927187
Iteration: 2, Func. Count: 27, Neg. LLF: 159.81367709114124
Iteration: 3, Func. Count: 40, Neg. LLF: 153.6939147190382
Iteration: 4, Func. Count: 52, Neg. LLF: 153.6616916875147
Iteration: 5, Func. Count: 64, Neg. LLF: 153.62857652226324
Iteration: 6, Func. Count: 76, Neg. LLF: 153.52113040181797
Iteration: 7, Func. Count: 88, Neg. LLF: 153.52412685718895
Iteration: 8, Func. Count: 101, Neg. LLF: 153.480967695603
Iteration: 9, Func. Count: 113, Neg. LLF: 153.46437346116056
Iteration: 10, Func. Count: 125, Neg. LLF: 153.4553176526417
Iteration: 11, Func. Count: 137, Neg. LLF: 153.43862824061188
Iteration: 12, Func. Count: 149, Neg. LLF: 153.4133420262206
Iteration: 13, Func. Count: 161, Neg. LLF: 153.3825797105896
Iteration: 14, Func. Count: 173, Neg. LLF: 153.36622082983175
Iteration: 15, Func. Count: 185, Neg. LLF: 153.36326654474703
Iteration: 16, Func. Count: 197, Neg. LLF: 153.36304598140285
Iteration: 17, Func. Count: 209, Neg. LLF: 153.36299766333343
Iteration: 18, Func. Count: 221, Neg. LLF: 153.36299328658313
Iteration: 19, Func. Count: 233, Neg. LLF: 153.36299277710717
Optimization terminated successfully (Exit mode 0)
Current function value: 153.36299277710717
Iterations: 19
Function evaluations: 233
Gradient evaluations: 19
Iteration: 1, Func. Count: 6, Neg. LLF: 152.83079569826526
Iteration: 2, Func. Count: 11, Neg. LLF: 153.40457009597662
Iteration: 3, Func. Count: 17, Neg. LLF: 152.64657346209944
Iteration: 4, Func. Count: 22, Neg. LLF: 152.29231996412065
Iteration: 5, Func. Count: 27, Neg. LLF: 152.11063123548934
Iteration: 6, Func. Count: 32, Neg. LLF: 151.9322190372703
Iteration: 7, Func. Count: 37, Neg. LLF: 151.92175325715743
Iteration: 8, Func. Count: 42, Neg. LLF: 151.92100794194565
Iteration: 9, Func. Count: 47, Neg. LLF: 151.92100322265026
Iteration: 10, Func. Count: 51, Neg. LLF: 151.9210032641345
Optimization terminated successfully (Exit mode 0)
Current function value: 151.92100322265026
Iterations: 10
Function evaluations: 51
Gradient evaluations: 10
Iteration: 1, Func. Count: 7, Neg. LLF: 440.66580111403925
Iteration: 2, Func. Count: 15, Neg. LLF: 153.62944880699723
Iteration: 3, Func. Count: 21, Neg. LLF: 153.59924703777187
Iteration: 4, Func. Count: 27, Neg. LLF: 153.57660114830108
Iteration: 5, Func. Count: 33, Neg. LLF: 153.5591316948924
Iteration: 6, Func. Count: 39, Neg. LLF: 153.55581436006742
Iteration: 7, Func. Count: 45, Neg. LLF: 153.55530636380524
Iteration: 8, Func. Count: 51, Neg. LLF: 153.55508617211066
Iteration: 9, Func. Count: 57, Neg. LLF: 153.5550790860375
Iteration: 10, Func. Count: 62, Neg. LLF: 153.555079086127
Optimization terminated successfully (Exit mode 0)
Current function value: 153.5550790860375
Iterations: 10
Function evaluations: 62
Gradient evaluations: 10
Iteration: 1, Func. Count: 8, Neg. LLF: 455.2700109778165
Iteration: 2, Func. Count: 17, Neg. LLF: 153.59904124289844
Iteration: 3, Func. Count: 24, Neg. LLF: 153.58114022236222
Iteration: 4, Func. Count: 31, Neg. LLF: 153.5798145362442
Iteration: 5, Func. Count: 38, Neg. LLF: 153.5748924925757
Iteration: 6, Func. Count: 45, Neg. LLF: 153.57157576333506
Iteration: 7, Func. Count: 52, Neg. LLF: 153.56437270710813
Iteration: 8, Func. Count: 59, Neg. LLF: 153.55731190012276
Iteration: 9, Func. Count: 66, Neg. LLF: 153.55543413576936
Iteration: 10, Func. Count: 73, Neg. LLF: 153.55508012885633
Iteration: 11, Func. Count: 80, Neg. LLF: 153.5550790672396
Iteration: 12, Func. Count: 86, Neg. LLF: 153.55507906808307
Optimization terminated successfully (Exit mode 0)
Current function value: 153.5550790672396
Iterations: 12
Function evaluations: 86
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 185.02673461423598
Iteration: 2, Func. Count: 19, Neg. LLF: 153.788571451574
Iteration: 3, Func. Count: 27, Neg. LLF: 153.77446641959827
Iteration: 4, Func. Count: 35, Neg. LLF: 153.76883826365406
Iteration: 5, Func. Count: 43, Neg. LLF: 153.73808434687777
Iteration: 6, Func. Count: 51, Neg. LLF: 153.6953373948071
Iteration: 7, Func. Count: 59, Neg. LLF: 153.66838854968546
Iteration: 8, Func. Count: 67, Neg. LLF: 153.6354951616023
Iteration: 9, Func. Count: 75, Neg. LLF: 153.61700817810345
Iteration: 10, Func. Count: 83, Neg. LLF: 153.59998257381366
Iteration: 11, Func. Count: 91, Neg. LLF: 153.59125921184796
Iteration: 12, Func. Count: 99, Neg. LLF: 153.56945316689198
Iteration: 13, Func. Count: 107, Neg. LLF: 153.5662696446944
Iteration: 14, Func. Count: 115, Neg. LLF: 153.5647083885153
Iteration: 15, Func. Count: 123, Neg. LLF: 153.55756460031225
Iteration: 16, Func. Count: 131, Neg. LLF: 153.5553071304035
Iteration: 17, Func. Count: 139, Neg. LLF: 153.55511875077394
Iteration: 18, Func. Count: 147, Neg. LLF: 153.55508237550293
Iteration: 19, Func. Count: 155, Neg. LLF: 153.55508170328784
Optimization terminated successfully (Exit mode 0)
Current function value: 153.55508170328784
Iterations: 19
Function evaluations: 155
Gradient evaluations: 19
Iteration: 1, Func. Count: 10, Neg. LLF: 185.31640794659023
Iteration: 2, Func. Count: 21, Neg. LLF: 153.68850910994394
Iteration: 3, Func. Count: 30, Neg. LLF: 153.64693651671587
Iteration: 4, Func. Count: 39, Neg. LLF: 152.94938553085333
Iteration: 5, Func. Count: 48, Neg. LLF: 152.79113004474493
Iteration: 6, Func. Count: 57, Neg. LLF: 152.69495339872114
Iteration: 7, Func. Count: 66, Neg. LLF: 152.55384934872907
Iteration: 8, Func. Count: 75, Neg. LLF: 152.48716882392696
Iteration: 9, Func. Count: 84, Neg. LLF: 152.44782729032232
Iteration: 10, Func. Count: 93, Neg. LLF: 152.4321389096874
Iteration: 11, Func. Count: 102, Neg. LLF: 152.42728213117132
Iteration: 12, Func. Count: 111, Neg. LLF: 152.42122262522315
Iteration: 13, Func. Count: 120, Neg. LLF: 152.4074196395286
Iteration: 14, Func. Count: 129, Neg. LLF: 152.39706502266563
Iteration: 15, Func. Count: 138, Neg. LLF: 152.394729306347
Iteration: 16, Func. Count: 147, Neg. LLF: 152.39402072676458
Iteration: 17, Func. Count: 156, Neg. LLF: 152.393822044277
Iteration: 18, Func. Count: 165, Neg. LLF: 152.44672444703272
Optimization terminated successfully (Exit mode 0)
Current function value: 152.3938212888843
Iterations: 19
Function evaluations: 168
Gradient evaluations: 18
Iteration: 1, Func. Count: 7, Neg. LLF: 153.93656048733524
Iteration: 2, Func. Count: 13, Neg. LLF: 153.80358943460388
Iteration: 3, Func. Count: 20, Neg. LLF: 152.80856576754377
Iteration: 4, Func. Count: 26, Neg. LLF: 152.71115984558153
Iteration: 5, Func. Count: 32, Neg. LLF: 152.51438178104183
Iteration: 6, Func. Count: 38, Neg. LLF: 152.47821035912062
Iteration: 7, Func. Count: 44, Neg. LLF: 152.37764258330444
Iteration: 8, Func. Count: 50, Neg. LLF: 152.15788932075503
Iteration: 9, Func. Count: 56, Neg. LLF: 151.95069454271442
Iteration: 10, Func. Count: 62, Neg. LLF: 151.84081655927503
Iteration: 11, Func. Count: 68, Neg. LLF: 151.81588851722773
Iteration: 12, Func. Count: 74, Neg. LLF: 151.8095634345819
Iteration: 13, Func. Count: 80, Neg. LLF: 151.80862469024927
Iteration: 14, Func. Count: 86, Neg. LLF: 151.80861797753101
Iteration: 15, Func. Count: 91, Neg. LLF: 151.80861787359234
Optimization terminated successfully (Exit mode 0)
Current function value: 151.80861797753101
Iterations: 15
Function evaluations: 91
Gradient evaluations: 15
Iteration: 1, Func. Count: 8, Neg. LLF: 157.48961412874914
Iteration: 2, Func. Count: 16, Neg. LLF: 155.04512220789297
Iteration: 3, Func. Count: 25, Neg. LLF: 153.75842582759634
Iteration: 4, Func. Count: 32, Neg. LLF: 153.72122400556646
Iteration: 5, Func. Count: 39, Neg. LLF: 154.25987570260241
Iteration: 6, Func. Count: 48, Neg. LLF: 153.71676313764576
Iteration: 7, Func. Count: 55, Neg. LLF: 153.71638525039185
Iteration: 8, Func. Count: 62, Neg. LLF: 153.71410697589616
Iteration: 9, Func. Count: 69, Neg. LLF: 153.7033183220972
Iteration: 10, Func. Count: 76, Neg. LLF: 153.68450875461815
Iteration: 11, Func. Count: 83, Neg. LLF: 153.67574151121391
Iteration: 12, Func. Count: 90, Neg. LLF: 153.64449201712998
Iteration: 13, Func. Count: 97, Neg. LLF: 168.3632537544356
Iteration: 14, Func. Count: 105, Neg. LLF: 163.80527789753106
Iteration: 15, Func. Count: 113, Neg. LLF: 162.10326340123876
Iteration: 16, Func. Count: 121, Neg. LLF: 160.8487431573026
Iteration: 17, Func. Count: 129, Neg. LLF: 178.47711586704952
Iteration: 18, Func. Count: 138, Neg. LLF: 153.92129826411104
Iteration: 19, Func. Count: 146, Neg. LLF: 153.54800941141224
Iteration: 20, Func. Count: 153, Neg. LLF: 153.54418149044432
Iteration: 21, Func. Count: 160, Neg. LLF: 153.535031511454
Iteration: 22, Func. Count: 167, Neg. LLF: 153.49477069295781
Iteration: 23, Func. Count: 174, Neg. LLF: 153.4722146243885
Iteration: 24, Func. Count: 181, Neg. LLF: 153.44971456141528
Iteration: 25, Func. Count: 188, Neg. LLF: 153.44760548174327
Iteration: 26, Func. Count: 196, Neg. LLF: 153.44265991205515
Iteration: 27, Func. Count: 203, Neg. LLF: 153.4424713445574
Iteration: 28, Func. Count: 210, Neg. LLF: 153.4424131355926
Iteration: 29, Func. Count: 217, Neg. LLF: 153.4423817235881
Iteration: 30, Func. Count: 223, Neg. LLF: 153.44238172383893
Optimization terminated successfully (Exit mode 0)
Current function value: 153.4423817235881
Iterations: 31
Function evaluations: 223
Gradient evaluations: 30
Iteration: 1, Func. Count: 9, Neg. LLF: 168.63225800589862
Iteration: 2, Func. Count: 18, Neg. LLF: 155.37803936962015
Iteration: 3, Func. Count: 28, Neg. LLF: 153.66340333623128
Iteration: 4, Func. Count: 36, Neg. LLF: 153.63569519688073
Iteration: 5, Func. Count: 44, Neg. LLF: 153.63396578906554
Iteration: 6, Func. Count: 52, Neg. LLF: 153.63329937346109
Iteration: 7, Func. Count: 60, Neg. LLF: 153.63261154803544
Iteration: 8, Func. Count: 68, Neg. LLF: 153.62982803758317
Iteration: 9, Func. Count: 76, Neg. LLF: 153.62242394270737
Iteration: 10, Func. Count: 84, Neg. LLF: 153.66591078619447
Iteration: 11, Func. Count: 93, Neg. LLF: 153.67220314337177
Iteration: 12, Func. Count: 102, Neg. LLF: 153.66897623098055
Iteration: 13, Func. Count: 111, Neg. LLF: 154.6222166174763
Iteration: 14, Func. Count: 120, Neg. LLF: 154.85492252390367
Iteration: 15, Func. Count: 129, Neg. LLF: 154.6111114373939
Iteration: 16, Func. Count: 138, Neg. LLF: 153.66726695140648
Iteration: 17, Func. Count: 147, Neg. LLF: 153.50835462563415
Iteration: 18, Func. Count: 156, Neg. LLF: 153.57182854281447
Iteration: 19, Func. Count: 165, Neg. LLF: 153.4737690469712
Iteration: 20, Func. Count: 174, Neg. LLF: 153.44657915109443
Iteration: 21, Func. Count: 182, Neg. LLF: 153.4441736961199
Iteration: 22, Func. Count: 190, Neg. LLF: 153.44366587470216
Iteration: 23, Func. Count: 198, Neg. LLF: 153.4426399242628
Iteration: 24, Func. Count: 206, Neg. LLF: 153.44242803216576
Iteration: 25, Func. Count: 214, Neg. LLF: 153.44238146752718
Iteration: 26, Func. Count: 221, Neg. LLF: 153.44238146769908
Optimization terminated successfully (Exit mode 0)
Current function value: 153.44238146752718
Iterations: 26
Function evaluations: 221
Gradient evaluations: 26
Iteration: 1, Func. Count: 10, Neg. LLF: 169.4166649751438
Iteration: 2, Func. Count: 20, Neg. LLF: 156.34121291434806
Iteration: 3, Func. Count: 31, Neg. LLF: 153.51233775217855
Iteration: 4, Func. Count: 40, Neg. LLF: 153.61077603542552
Iteration: 5, Func. Count: 50, Neg. LLF: 153.49631401468633
Iteration: 6, Func. Count: 59, Neg. LLF: 153.48097804848942
Iteration: 7, Func. Count: 68, Neg. LLF: 153.4758865692116
Iteration: 8, Func. Count: 77, Neg. LLF: 153.45648754466654
Iteration: 9, Func. Count: 86, Neg. LLF: 153.42471887238887
Iteration: 10, Func. Count: 95, Neg. LLF: 153.39653469076333
Iteration: 11, Func. Count: 104, Neg. LLF: 153.37408891802056
Iteration: 12, Func. Count: 113, Neg. LLF: 153.36411005303893
Iteration: 13, Func. Count: 122, Neg. LLF: 153.3630956842969
Iteration: 14, Func. Count: 131, Neg. LLF: 153.36300646329428
Iteration: 15, Func. Count: 140, Neg. LLF: 153.36299625656864
Iteration: 16, Func. Count: 149, Neg. LLF: 153.3629927704048
Iteration: 17, Func. Count: 157, Neg. LLF: 153.36299277040547
Optimization terminated successfully (Exit mode 0)
Current function value: 153.3629927704048
Iterations: 17
Function evaluations: 157
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 185.06728760149068
Iteration: 2, Func. Count: 23, Neg. LLF: 161.3841975110537
Iteration: 3, Func. Count: 34, Neg. LLF: 153.68599404897327
Iteration: 4, Func. Count: 44, Neg. LLF: 153.63656060050073
Iteration: 5, Func. Count: 54, Neg. LLF: 153.56732376326332
Iteration: 6, Func. Count: 64, Neg. LLF: 153.5611932021876
Iteration: 7, Func. Count: 75, Neg. LLF: 153.49338991911063
Iteration: 8, Func. Count: 85, Neg. LLF: 153.4756657857459
Iteration: 9, Func. Count: 95, Neg. LLF: 153.46652977905467
Iteration: 10, Func. Count: 105, Neg. LLF: 153.45449985979772
Iteration: 11, Func. Count: 115, Neg. LLF: 153.4356925169537
Iteration: 12, Func. Count: 125, Neg. LLF: 153.4097538742259
Iteration: 13, Func. Count: 135, Neg. LLF: 153.38776927432005
Iteration: 14, Func. Count: 145, Neg. LLF: 153.3677436061518
Iteration: 15, Func. Count: 155, Neg. LLF: 153.3634819566331
Iteration: 16, Func. Count: 165, Neg. LLF: 153.36302756551407
Iteration: 17, Func. Count: 175, Neg. LLF: 153.36299599780526
Iteration: 18, Func. Count: 185, Neg. LLF: 153.362992817264
Iteration: 19, Func. Count: 194, Neg. LLF: 153.36299284573295
Optimization terminated successfully (Exit mode 0)
Current function value: 153.362992817264
Iterations: 19
Function evaluations: 194
Gradient evaluations: 19
Iteration: 1, Func. Count: 8, Neg. LLF: 156.40484694145226
Iteration: 2, Func. Count: 16, Neg. LLF: 154.51828976384172
Iteration: 3, Func. Count: 24, Neg. LLF: 152.6006003256031
Iteration: 4, Func. Count: 31, Neg. LLF: 152.51979783034704
Iteration: 5, Func. Count: 38, Neg. LLF: 152.48336447710483
Iteration: 6, Func. Count: 45, Neg. LLF: 152.4205490350005
Iteration: 7, Func. Count: 52, Neg. LLF: 152.31674895901733
Iteration: 8, Func. Count: 59, Neg. LLF: 151.93180916112055
Iteration: 9, Func. Count: 66, Neg. LLF: 151.8266294610822
Iteration: 10, Func. Count: 73, Neg. LLF: 151.7975740297927
Iteration: 11, Func. Count: 80, Neg. LLF: 151.79623051886296
Iteration: 12, Func. Count: 87, Neg. LLF: 151.79622212451952
Iteration: 13, Func. Count: 93, Neg. LLF: 151.796222144892
Optimization terminated successfully (Exit mode 0)
Current function value: 151.79622212451952
Iterations: 13
Function evaluations: 93
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 156.47978656927447
Iteration: 2, Func. Count: 18, Neg. LLF: 155.23216671759084
Iteration: 3, Func. Count: 27, Neg. LLF: 170.75275617543693
Iteration: 4, Func. Count: 37, Neg. LLF: 153.4847684315915
Iteration: 5, Func. Count: 46, Neg. LLF: 152.98616958202584
Iteration: 6, Func. Count: 54, Neg. LLF: 152.9397407681967
Iteration: 7, Func. Count: 62, Neg. LLF: 152.93156238554477
Iteration: 8, Func. Count: 70, Neg. LLF: 152.9296784976519
Iteration: 9, Func. Count: 78, Neg. LLF: 152.92272942639906
Iteration: 10, Func. Count: 86, Neg. LLF: 152.91761032356078
Iteration: 11, Func. Count: 94, Neg. LLF: 152.88539462193623
Iteration: 12, Func. Count: 102, Neg. LLF: 152.85903242495178
Iteration: 13, Func. Count: 110, Neg. LLF: 152.83890141596524
Iteration: 14, Func. Count: 118, Neg. LLF: 152.7821643689972
Iteration: 15, Func. Count: 126, Neg. LLF: 152.7324170180407
Iteration: 16, Func. Count: 134, Neg. LLF: 152.23070105275679
Iteration: 17, Func. Count: 142, Neg. LLF: 151.82385755389546
Iteration: 18, Func. Count: 150, Neg. LLF: 151.84864240970217
Iteration: 19, Func. Count: 159, Neg. LLF: 151.7970083250424
Iteration: 20, Func. Count: 167, Neg. LLF: 151.7961528739208
Iteration: 21, Func. Count: 175, Neg. LLF: 151.80612471322272
Iteration: 22, Func. Count: 184, Neg. LLF: 151.79645097030934
Iteration: 23, Func. Count: 193, Neg. LLF: 151.79624090727418
Iteration: 24, Func. Count: 201, Neg. LLF: 151.79623385271736
Iteration: 25, Func. Count: 209, Neg. LLF: 151.79622557010748
Iteration: 26, Func. Count: 217, Neg. LLF: 151.79622240749393
Iteration: 27, Func. Count: 224, Neg. LLF: 151.79622279772707
Optimization terminated successfully (Exit mode 0)
Current function value: 151.79622240749393
Iterations: 28
Function evaluations: 224
Gradient evaluations: 27
Iteration: 1, Func. Count: 10, Neg. LLF: 161.50526308764006
Iteration: 2, Func. Count: 20, Neg. LLF: 169.97065268272593
Iteration: 3, Func. Count: 30, Neg. LLF: 153.62458095328833
Iteration: 4, Func. Count: 39, Neg. LLF: 153.09025256043714
Iteration: 5, Func. Count: 48, Neg. LLF: 153.29492151687842
Iteration: 6, Func. Count: 58, Neg. LLF: 152.9910140408005
Iteration: 7, Func. Count: 67, Neg. LLF: 152.98354731573667
Iteration: 8, Func. Count: 76, Neg. LLF: 152.98225526743093
Iteration: 9, Func. Count: 85, Neg. LLF: 152.97589369518326
Iteration: 10, Func. Count: 94, Neg. LLF: 152.94790414468716
Iteration: 11, Func. Count: 103, Neg. LLF: 152.97704142221173
Iteration: 12, Func. Count: 113, Neg. LLF: 152.9124865299212
Iteration: 13, Func. Count: 122, Neg. LLF: 152.9117790527602
Iteration: 14, Func. Count: 131, Neg. LLF: 152.91171278347997
Iteration: 15, Func. Count: 140, Neg. LLF: 152.91166907028116
Iteration: 16, Func. Count: 149, Neg. LLF: 152.91166412291284
Iteration: 17, Func. Count: 158, Neg. LLF: 152.91166410459988
Optimization terminated successfully (Exit mode 0)
Current function value: 152.91166373033656
Iterations: 17
Function evaluations: 159
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 162.85736048007925
Iteration: 2, Func. Count: 22, Neg. LLF: 155.9167380361626
Iteration: 3, Func. Count: 34, Neg. LLF: 153.478623966273
Iteration: 4, Func. Count: 44, Neg. LLF: 153.03457773855808
Iteration: 5, Func. Count: 54, Neg. LLF: 153.01333356605102
Iteration: 6, Func. Count: 64, Neg. LLF: 152.99391208609202
Iteration: 7, Func. Count: 74, Neg. LLF: 152.9834380771395
Iteration: 8, Func. Count: 84, Neg. LLF: 152.98053601767003
Iteration: 9, Func. Count: 94, Neg. LLF: 152.97810941348484
Iteration: 10, Func. Count: 104, Neg. LLF: 152.97069479541614
Iteration: 11, Func. Count: 114, Neg. LLF: 152.95632299507886
Iteration: 12, Func. Count: 124, Neg. LLF: 152.93530563693832
Iteration: 13, Func. Count: 134, Neg. LLF: 152.92105860573074
Iteration: 14, Func. Count: 144, Neg. LLF: 152.91191088112194
Iteration: 15, Func. Count: 154, Neg. LLF: 152.91174995522704
Iteration: 16, Func. Count: 164, Neg. LLF: 152.91169087294566
Iteration: 17, Func. Count: 174, Neg. LLF: 152.91167632004598
Iteration: 18, Func. Count: 184, Neg. LLF: 152.9620553398237
Optimization terminated successfully (Exit mode 0)
Current function value: 152.91167601110956
Iterations: 19
Function evaluations: 187
Gradient evaluations: 18
Iteration: 1, Func. Count: 12, Neg. LLF: 165.02166634411896
Iteration: 2, Func. Count: 24, Neg. LLF: 162.76280752087743
Iteration: 3, Func. Count: 37, Neg. LLF: 152.55760089362158
Iteration: 4, Func. Count: 48, Neg. LLF: 152.76754465186383
Iteration: 5, Func. Count: 62, Neg. LLF: 152.52050147168728
Iteration: 6, Func. Count: 73, Neg. LLF: 152.4383280414793
Iteration: 7, Func. Count: 84, Neg. LLF: 152.50730799742882
Iteration: 8, Func. Count: 96, Neg. LLF: 152.4143385897182
Iteration: 9, Func. Count: 107, Neg. LLF: 152.38434213155998
Iteration: 10, Func. Count: 118, Neg. LLF: 152.3737464393251
Iteration: 11, Func. Count: 129, Neg. LLF: 152.36548649333466
Iteration: 12, Func. Count: 140, Neg. LLF: 152.35247539853415
Iteration: 13, Func. Count: 151, Neg. LLF: 152.33031046374478
Iteration: 14, Func. Count: 162, Neg. LLF: 152.30837753013822
Iteration: 15, Func. Count: 173, Neg. LLF: 152.29899859636046
Iteration: 16, Func. Count: 184, Neg. LLF: 152.29824555160505
Iteration: 17, Func. Count: 195, Neg. LLF: 152.29821814912017
Iteration: 18, Func. Count: 206, Neg. LLF: 152.29821638062552
Iteration: 19, Func. Count: 216, Neg. LLF: 152.2982163807199
Optimization terminated successfully (Exit mode 0)
Current function value: 152.29821638062552
Iterations: 19
Function evaluations: 216
Gradient evaluations: 19
Iteration: 1, Func. Count: 9, Neg. LLF: 156.522202770611
Iteration: 2, Func. Count: 18, Neg. LLF: 153.71121325004657
Iteration: 3, Func. Count: 27, Neg. LLF: 152.58263973163656
Iteration: 4, Func. Count: 35, Neg. LLF: 152.56047601633026
Iteration: 5, Func. Count: 43, Neg. LLF: 152.7453036609637
Iteration: 6, Func. Count: 52, Neg. LLF: 152.4587602325762
Iteration: 7, Func. Count: 60, Neg. LLF: 152.4048019108835
Iteration: 8, Func. Count: 68, Neg. LLF: 152.2323854585693
Iteration: 9, Func. Count: 76, Neg. LLF: 151.94695761746323
Iteration: 10, Func. Count: 84, Neg. LLF: 151.80615983591053
Iteration: 11, Func. Count: 92, Neg. LLF: 151.7970800208414
Iteration: 12, Func. Count: 100, Neg. LLF: 151.7962493607838
Iteration: 13, Func. Count: 108, Neg. LLF: 151.79622231926928
Iteration: 14, Func. Count: 115, Neg. LLF: 151.79622266850635
Optimization terminated successfully (Exit mode 0)
Current function value: 151.79622231926928
Iterations: 14
Function evaluations: 115
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 403.12117643955673
Iteration: 2, Func. Count: 21, Neg. LLF: 205.65958808426527
Iteration: 3, Func. Count: 31, Neg. LLF: 153.469656555824
Iteration: 4, Func. Count: 40, Neg. LLF: 153.4896122617076
Iteration: 5, Func. Count: 50, Neg. LLF: 153.45000159329484
Iteration: 6, Func. Count: 59, Neg. LLF: 153.44805415524846
Iteration: 7, Func. Count: 68, Neg. LLF: 153.44414888305167
Iteration: 8, Func. Count: 77, Neg. LLF: 153.44301958763748
Iteration: 9, Func. Count: 86, Neg. LLF: 153.44238764741925
Iteration: 10, Func. Count: 95, Neg. LLF: 153.44238167514087
Iteration: 11, Func. Count: 103, Neg. LLF: 153.44238167504494
Optimization terminated successfully (Exit mode 0)
Current function value: 153.44238167514087
Iterations: 11
Function evaluations: 103
Gradient evaluations: 11
Iteration: 1, Func. Count: 11, Neg. LLF: 161.5356024424869
Iteration: 2, Func. Count: 22, Neg. LLF: 169.0121917159084
Iteration: 3, Func. Count: 33, Neg. LLF: 153.6377346687295
Iteration: 4, Func. Count: 43, Neg. LLF: 153.1026408000498
Iteration: 5, Func. Count: 53, Neg. LLF: 153.3758472919991
Iteration: 6, Func. Count: 64, Neg. LLF: 152.98743453257114
Iteration: 7, Func. Count: 74, Neg. LLF: 152.98317005805663
Iteration: 8, Func. Count: 84, Neg. LLF: 152.98163321423374
Iteration: 9, Func. Count: 94, Neg. LLF: 152.97275164521912
Iteration: 10, Func. Count: 104, Neg. LLF: 152.93732882439704
Iteration: 11, Func. Count: 114, Neg. LLF: 152.92622538427136
Iteration: 12, Func. Count: 124, Neg. LLF: 152.9176194238111
Iteration: 13, Func. Count: 134, Neg. LLF: 152.91339299850299
Iteration: 14, Func. Count: 144, Neg. LLF: 152.91176268845712
Iteration: 15, Func. Count: 154, Neg. LLF: 152.9116664096952
Iteration: 16, Func. Count: 164, Neg. LLF: 152.91166371860592
Iteration: 17, Func. Count: 173, Neg. LLF: 152.91166371861993
Optimization terminated successfully (Exit mode 0)
Current function value: 152.91166371860592
Iterations: 17
Function evaluations: 173
Gradient evaluations: 17
Iteration: 1, Func. Count: 12, Neg. LLF: 162.64393387343586
Iteration: 2, Func. Count: 24, Neg. LLF: 155.822621131967
Iteration: 3, Func. Count: 37, Neg. LLF: 153.4236518685509
Iteration: 4, Func. Count: 48, Neg. LLF: 153.0083704930858
Iteration: 5, Func. Count: 59, Neg. LLF: 152.997691771507
Iteration: 6, Func. Count: 70, Neg. LLF: 152.9866803807134
Iteration: 7, Func. Count: 81, Neg. LLF: 152.9823159757962
Iteration: 8, Func. Count: 92, Neg. LLF: 152.97957953026778
Iteration: 9, Func. Count: 103, Neg. LLF: 152.97614342125217
Iteration: 10, Func. Count: 114, Neg. LLF: 152.96656499364073
Iteration: 11, Func. Count: 125, Neg. LLF: 152.94831486649431
Iteration: 12, Func. Count: 136, Neg. LLF: 152.92946736696086
Iteration: 13, Func. Count: 147, Neg. LLF: 152.91758248080865
Iteration: 14, Func. Count: 158, Neg. LLF: 152.91195782338926
Iteration: 15, Func. Count: 169, Neg. LLF: 152.91176964311524
Iteration: 16, Func. Count: 180, Neg. LLF: 152.91169379163543
Iteration: 17, Func. Count: 191, Neg. LLF: 152.91168437512235
Iteration: 18, Func. Count: 202, Neg. LLF: 152.91168409986625
Optimization terminated successfully (Exit mode 0)
Current function value: 152.91168409986625
Iterations: 18
Function evaluations: 202
Gradient evaluations: 18
Iteration: 1, Func. Count: 13, Neg. LLF: 164.83571132953816
Iteration: 2, Func. Count: 26, Neg. LLF: 162.73820406822736
Iteration: 3, Func. Count: 40, Neg. LLF: 152.55370205940434
Iteration: 4, Func. Count: 52, Neg. LLF: 152.79310106690312
Iteration: 5, Func. Count: 66, Neg. LLF: 152.777765357162
Iteration: 6, Func. Count: 79, Neg. LLF: 152.47452516085394
Iteration: 7, Func. Count: 91, Neg. LLF: 152.43040139787018
Iteration: 8, Func. Count: 103, Neg. LLF: 152.40897378503283
Iteration: 9, Func. Count: 115, Neg. LLF: 152.39885090829594
Iteration: 10, Func. Count: 127, Neg. LLF: 152.37964969185444
Iteration: 11, Func. Count: 139, Neg. LLF: 152.36920800503287
Iteration: 12, Func. Count: 151, Neg. LLF: 152.35732562142215
Iteration: 13, Func. Count: 163, Neg. LLF: 152.340854713073
Iteration: 14, Func. Count: 175, Neg. LLF: 152.317682292591
Iteration: 15, Func. Count: 187, Neg. LLF: 152.30254258606178
Iteration: 16, Func. Count: 199, Neg. LLF: 152.29842012945844
Iteration: 17, Func. Count: 211, Neg. LLF: 152.29827627381297
Iteration: 18, Func. Count: 223, Neg. LLF: 152.2982166446546
Iteration: 19, Func. Count: 235, Neg. LLF: 152.29821574261916
Optimization terminated successfully (Exit mode 0)
Current function value: 152.29821574261916
Iterations: 19
Function evaluations: 235
Gradient evaluations: 19
Iteration: 1, Func. Count: 10, Neg. LLF: 156.51260938360818
Iteration: 2, Func. Count: 20, Neg. LLF: 153.68412267795938
Iteration: 3, Func. Count: 30, Neg. LLF: 152.58078154959796
Iteration: 4, Func. Count: 39, Neg. LLF: 152.55398297613417
Iteration: 5, Func. Count: 48, Neg. LLF: 152.7387086149283
Iteration: 6, Func. Count: 58, Neg. LLF: 152.45679022633672
Iteration: 7, Func. Count: 67, Neg. LLF: 152.39367482637573
Iteration: 8, Func. Count: 76, Neg. LLF: 152.2442911209426
Iteration: 9, Func. Count: 85, Neg. LLF: 151.9538229618357
Iteration: 10, Func. Count: 94, Neg. LLF: 151.81042181146074
Iteration: 11, Func. Count: 103, Neg. LLF: 151.7970268062037
Iteration: 12, Func. Count: 112, Neg. LLF: 151.79627563504636
Iteration: 13, Func. Count: 121, Neg. LLF: 151.79622222929055
Iteration: 14, Func. Count: 129, Neg. LLF: 151.7962224457742
Optimization terminated successfully (Exit mode 0)
Current function value: 151.79622222929055
Iterations: 14
Function evaluations: 129
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 404.56270899608296
Iteration: 2, Func. Count: 23, Neg. LLF: 205.03161267417232
Iteration: 3, Func. Count: 34, Neg. LLF: 153.46947419766556
Iteration: 4, Func. Count: 44, Neg. LLF: 153.4898260361626
Iteration: 5, Func. Count: 55, Neg. LLF: 153.44986200223585
Iteration: 6, Func. Count: 65, Neg. LLF: 153.44789366631625
Iteration: 7, Func. Count: 75, Neg. LLF: 153.4440458537
Iteration: 8, Func. Count: 85, Neg. LLF: 153.44297956343453
Iteration: 9, Func. Count: 95, Neg. LLF: 153.44238694853172
Iteration: 10, Func. Count: 105, Neg. LLF: 153.44238155434968
Iteration: 11, Func. Count: 114, Neg. LLF: 153.442381554262
Optimization terminated successfully (Exit mode 0)
Current function value: 153.44238155434968
Iterations: 11
Function evaluations: 114
Gradient evaluations: 11
Iteration: 1, Func. Count: 12, Neg. LLF: 161.52414978155355
Iteration: 2, Func. Count: 24, Neg. LLF: 169.30406360740128
Iteration: 3, Func. Count: 36, Neg. LLF: 153.6188077123233
Iteration: 4, Func. Count: 47, Neg. LLF: 153.08247726526432
Iteration: 5, Func. Count: 58, Neg. LLF: 153.358586127938
Iteration: 6, Func. Count: 70, Neg. LLF: 152.98863729132248
Iteration: 7, Func. Count: 82, Neg. LLF: 152.98313254764847
Iteration: 8, Func. Count: 93, Neg. LLF: 152.97629397892342
Iteration: 9, Func. Count: 104, Neg. LLF: 152.9477209203224
Iteration: 10, Func. Count: 115, Neg. LLF: 152.92859883426627
Iteration: 11, Func. Count: 126, Neg. LLF: 152.92733178819125
Iteration: 12, Func. Count: 138, Neg. LLF: 152.91424073967636
Iteration: 13, Func. Count: 149, Neg. LLF: 152.91222511290857
Iteration: 14, Func. Count: 160, Neg. LLF: 152.91168194702075
Iteration: 15, Func. Count: 171, Neg. LLF: 152.91166655594878
Iteration: 16, Func. Count: 182, Neg. LLF: 152.91166370811814
Iteration: 17, Func. Count: 192, Neg. LLF: 152.91166370812792
Optimization terminated successfully (Exit mode 0)
Current function value: 152.91166370811814
Iterations: 17
Function evaluations: 192
Gradient evaluations: 17
Iteration: 1, Func. Count: 13, Neg. LLF: 162.76219762630816
Iteration: 2, Func. Count: 26, Neg. LLF: 155.83705695330207
Iteration: 3, Func. Count: 40, Neg. LLF: 153.45582440252667
Iteration: 4, Func. Count: 52, Neg. LLF: 153.02877567006988
Iteration: 5, Func. Count: 64, Neg. LLF: 153.04043224152852
Iteration: 6, Func. Count: 77, Neg. LLF: 152.99077493865136
Iteration: 7, Func. Count: 89, Neg. LLF: 152.98076169292358
Iteration: 8, Func. Count: 101, Neg. LLF: 152.9792647488909
Iteration: 9, Func. Count: 113, Neg. LLF: 152.97045101847937
Iteration: 10, Func. Count: 125, Neg. LLF: 152.93204513293358
Iteration: 11, Func. Count: 137, Neg. LLF: 152.92936678432028
Iteration: 12, Func. Count: 150, Neg. LLF: 152.9119986887025
Iteration: 13, Func. Count: 162, Neg. LLF: 152.91186050287368
Iteration: 14, Func. Count: 174, Neg. LLF: 152.91169726309232
Iteration: 15, Func. Count: 186, Neg. LLF: 152.9116719016967
Iteration: 16, Func. Count: 198, Neg. LLF: 152.91168216409255
Optimization terminated successfully (Exit mode 0)
Current function value: 152.91167097491615
Iterations: 17
Function evaluations: 199
Gradient evaluations: 16
Iteration: 1, Func. Count: 14, Neg. LLF: 165.01200983766202
Iteration: 2, Func. Count: 28, Neg. LLF: 162.74676951283126
Iteration: 3, Func. Count: 43, Neg. LLF: 152.55714324476074
Iteration: 4, Func. Count: 56, Neg. LLF: 152.7676405864708
Iteration: 5, Func. Count: 72, Neg. LLF: 152.4944824920675
Iteration: 6, Func. Count: 85, Neg. LLF: 152.4325245212781
Iteration: 7, Func. Count: 98, Neg. LLF: 152.47173751135173
Iteration: 8, Func. Count: 112, Neg. LLF: 152.41078659733296
Iteration: 9, Func. Count: 125, Neg. LLF: 152.38516549948164
Iteration: 10, Func. Count: 138, Neg. LLF: 152.37398976051156
Iteration: 11, Func. Count: 151, Neg. LLF: 152.3658567656842
Iteration: 12, Func. Count: 164, Neg. LLF: 152.35144202944974
Iteration: 13, Func. Count: 177, Neg. LLF: 152.32783707510035
Iteration: 14, Func. Count: 190, Neg. LLF: 152.3061434133892
Iteration: 15, Func. Count: 203, Neg. LLF: 152.29888485881295
Iteration: 16, Func. Count: 216, Neg. LLF: 152.29831929977175
Iteration: 17, Func. Count: 229, Neg. LLF: 152.29824338393914
Iteration: 18, Func. Count: 242, Neg. LLF: 152.29821706005873
Iteration: 19, Func. Count: 255, Neg. LLF: 152.29821576116163
Iteration: 20, Func. Count: 267, Neg. LLF: 152.29821576112644
Optimization terminated successfully (Exit mode 0)
Current function value: 152.29821576116163
Iterations: 20
Function evaluations: 267
Gradient evaluations: 20
Iteration: 1, Func. Count: 7, Neg. LLF: 153.01267627304534
Iteration: 2, Func. Count: 13, Neg. LLF: 155.28609003166537
Iteration: 3, Func. Count: 20, Neg. LLF: 152.68270611376033
Iteration: 4, Func. Count: 26, Neg. LLF: 152.3160084817585
Iteration: 5, Func. Count: 32, Neg. LLF: 152.13229902655235
Iteration: 6, Func. Count: 38, Neg. LLF: 151.93727209533813
Iteration: 7, Func. Count: 44, Neg. LLF: 151.9224965821667
Iteration: 8, Func. Count: 50, Neg. LLF: 151.92104853852658
Iteration: 9, Func. Count: 56, Neg. LLF: 151.92102024078912
Iteration: 10, Func. Count: 62, Neg. LLF: 151.92100320826717
Iteration: 11, Func. Count: 67, Neg. LLF: 151.92100362047356
Optimization terminated successfully (Exit mode 0)
Current function value: 151.92100320826717
Iterations: 11
Function evaluations: 67
Gradient evaluations: 11
Iteration: 1, Func. Count: 8, Neg. LLF: 439.1709738873572
Iteration: 2, Func. Count: 17, Neg. LLF: 153.6271892954217
Iteration: 3, Func. Count: 24, Neg. LLF: 153.59858728879303
Iteration: 4, Func. Count: 31, Neg. LLF: 153.57430096159004
Iteration: 5, Func. Count: 38, Neg. LLF: 153.5583639414484
Iteration: 6, Func. Count: 45, Neg. LLF: 153.55555752870683
Iteration: 7, Func. Count: 52, Neg. LLF: 153.55522918693956
Iteration: 8, Func. Count: 59, Neg. LLF: 153.55509022294146
Iteration: 9, Func. Count: 66, Neg. LLF: 153.55507933057376
Iteration: 10, Func. Count: 72, Neg. LLF: 153.55507933059945
Optimization terminated successfully (Exit mode 0)
Current function value: 153.55507933057376
Iterations: 10
Function evaluations: 72
Gradient evaluations: 10
Iteration: 1, Func. Count: 9, Neg. LLF: 453.6814029657184
Iteration: 2, Func. Count: 19, Neg. LLF: 153.59796587282582
Iteration: 3, Func. Count: 27, Neg. LLF: 153.58067914626903
Iteration: 4, Func. Count: 35, Neg. LLF: 153.57924823588857
Iteration: 5, Func. Count: 43, Neg. LLF: 153.5758873168657
Iteration: 6, Func. Count: 51, Neg. LLF: 153.57278852089448
Iteration: 7, Func. Count: 59, Neg. LLF: 153.56843782082478
Iteration: 8, Func. Count: 67, Neg. LLF: 153.5591186840065
Iteration: 9, Func. Count: 75, Neg. LLF: 153.55626069119958
Iteration: 10, Func. Count: 83, Neg. LLF: 153.55544045920675
Iteration: 11, Func. Count: 91, Neg. LLF: 153.5550877041816
Iteration: 12, Func. Count: 99, Neg. LLF: 153.55507910235048
Iteration: 13, Func. Count: 106, Neg. LLF: 153.5550791031811
Optimization terminated successfully (Exit mode 0)
Current function value: 153.55507910235048
Iterations: 13
Function evaluations: 106
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 184.9723093798998
Iteration: 2, Func. Count: 21, Neg. LLF: 153.78762389531252
Iteration: 3, Func. Count: 30, Neg. LLF: 153.77512765983434
Iteration: 4, Func. Count: 39, Neg. LLF: 153.76926177704757
Iteration: 5, Func. Count: 48, Neg. LLF: 153.74992921758957
Iteration: 6, Func. Count: 57, Neg. LLF: 153.70817602641614
Iteration: 7, Func. Count: 66, Neg. LLF: 153.66291760712755
Iteration: 8, Func. Count: 75, Neg. LLF: 153.71618630221653
Iteration: 9, Func. Count: 85, Neg. LLF: 153.60116560147668
Iteration: 10, Func. Count: 94, Neg. LLF: 153.59376747859454
Iteration: 11, Func. Count: 103, Neg. LLF: 153.58721740590312
Iteration: 12, Func. Count: 112, Neg. LLF: 153.5705070184937
Iteration: 13, Func. Count: 121, Neg. LLF: 153.56970210360143
Iteration: 14, Func. Count: 130, Neg. LLF: 153.56795869464202
Iteration: 15, Func. Count: 139, Neg. LLF: 153.55840028504463
Iteration: 16, Func. Count: 148, Neg. LLF: 153.55584512814877
Iteration: 17, Func. Count: 157, Neg. LLF: 153.55537192893763
Iteration: 18, Func. Count: 166, Neg. LLF: 153.5551169691813
Iteration: 19, Func. Count: 175, Neg. LLF: 153.55507936252994
Iteration: 20, Func. Count: 183, Neg. LLF: 153.5550793653226
Optimization terminated successfully (Exit mode 0)
Current function value: 153.55507936252994
Iterations: 20
Function evaluations: 183
Gradient evaluations: 20
Iteration: 1, Func. Count: 11, Neg. LLF: 185.2618641421023
Iteration: 2, Func. Count: 23, Neg. LLF: 153.68545147621805
Iteration: 3, Func. Count: 33, Neg. LLF: 153.67054247374617
Iteration: 4, Func. Count: 43, Neg. LLF: 153.1594901301948
Iteration: 5, Func. Count: 53, Neg. LLF: 152.80862588099188
Iteration: 6, Func. Count: 63, Neg. LLF: 152.57467302034192
Iteration: 7, Func. Count: 73, Neg. LLF: 152.50630239751462
Iteration: 8, Func. Count: 83, Neg. LLF: 152.45626796350814
Iteration: 9, Func. Count: 93, Neg. LLF: 152.43567318821877
Iteration: 10, Func. Count: 103, Neg. LLF: 152.42965787653253
Iteration: 11, Func. Count: 113, Neg. LLF: 152.42409835367755
Iteration: 12, Func. Count: 123, Neg. LLF: 152.4105027216762
Iteration: 13, Func. Count: 133, Neg. LLF: 152.39743770070623
Iteration: 14, Func. Count: 143, Neg. LLF: 152.39428652996142
Iteration: 15, Func. Count: 153, Neg. LLF: 152.393827813899
Iteration: 16, Func. Count: 163, Neg. LLF: 152.43651640742922
Optimization terminated successfully (Exit mode 0)
Current function value: 152.3938270971753
Iterations: 17
Function evaluations: 166
Gradient evaluations: 16
Iteration: 1, Func. Count: 8, Neg. LLF: 153.96107250284413
Iteration: 2, Func. Count: 15, Neg. LLF: 153.973219606177
Iteration: 3, Func. Count: 23, Neg. LLF: 152.87336508082112
Iteration: 4, Func. Count: 30, Neg. LLF: 152.5425461122843
Iteration: 5, Func. Count: 37, Neg. LLF: 153.85658038325812
Iteration: 6, Func. Count: 46, Neg. LLF: 152.46669437552146
Iteration: 7, Func. Count: 53, Neg. LLF: 152.29428032465728
Iteration: 8, Func. Count: 60, Neg. LLF: 151.948687818612
Iteration: 9, Func. Count: 67, Neg. LLF: 151.8180517862062
Iteration: 10, Func. Count: 74, Neg. LLF: 151.80949352795068
Iteration: 11, Func. Count: 81, Neg. LLF: 151.80871042205354
Iteration: 12, Func. Count: 88, Neg. LLF: 151.8086180281337
Iteration: 13, Func. Count: 94, Neg. LLF: 151.80861792419347
Optimization terminated successfully (Exit mode 0)
Current function value: 151.8086180281337
Iterations: 13
Function evaluations: 94
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 402.2519883351393
Iteration: 2, Func. Count: 19, Neg. LLF: 158.57260275726682
Iteration: 3, Func. Count: 29, Neg. LLF: 153.44985291879152
Iteration: 4, Func. Count: 37, Neg. LLF: 153.44721681630392
Iteration: 5, Func. Count: 45, Neg. LLF: 153.4456406121125
Iteration: 6, Func. Count: 53, Neg. LLF: 153.44500892617427
Iteration: 7, Func. Count: 61, Neg. LLF: 153.4431709066441
Iteration: 8, Func. Count: 69, Neg. LLF: 153.44251093748085
Iteration: 9, Func. Count: 77, Neg. LLF: 153.44238905679342
Iteration: 10, Func. Count: 85, Neg. LLF: 153.4423813782611
Iteration: 11, Func. Count: 92, Neg. LLF: 153.44238137832238
Optimization terminated successfully (Exit mode 0)
Current function value: 153.4423813782611
Iterations: 11
Function evaluations: 92
Gradient evaluations: 11
Iteration: 1, Func. Count: 10, Neg. LLF: 168.4762665108695
Iteration: 2, Func. Count: 20, Neg. LLF: 155.34971796726487
Iteration: 3, Func. Count: 31, Neg. LLF: 153.68031967719176
Iteration: 4, Func. Count: 40, Neg. LLF: 153.64009396704756
Iteration: 5, Func. Count: 49, Neg. LLF: 153.63524637658557
Iteration: 6, Func. Count: 58, Neg. LLF: 153.63440566024906
Iteration: 7, Func. Count: 67, Neg. LLF: 153.63385444130793
Iteration: 8, Func. Count: 76, Neg. LLF: 153.63138912404298
Iteration: 9, Func. Count: 85, Neg. LLF: 153.62560571723833
Iteration: 10, Func. Count: 94, Neg. LLF: 153.6327376056047
Iteration: 11, Func. Count: 104, Neg. LLF: 153.66355108195768
Iteration: 12, Func. Count: 114, Neg. LLF: 153.61766639110394
Iteration: 13, Func. Count: 124, Neg. LLF: 154.03111345381922
Iteration: 14, Func. Count: 134, Neg. LLF: 154.4104291954064
Iteration: 15, Func. Count: 144, Neg. LLF: 154.30629586744672
Iteration: 16, Func. Count: 154, Neg. LLF: 153.63370050387385
Iteration: 17, Func. Count: 164, Neg. LLF: 153.49313907855398
Iteration: 18, Func. Count: 174, Neg. LLF: 153.45613819306783
Iteration: 19, Func. Count: 184, Neg. LLF: 153.44547121315347
Iteration: 20, Func. Count: 193, Neg. LLF: 153.443405444482
Iteration: 21, Func. Count: 202, Neg. LLF: 153.44298529939255
Iteration: 22, Func. Count: 211, Neg. LLF: 153.4424027788066
Iteration: 23, Func. Count: 220, Neg. LLF: 153.44238210905192
Iteration: 24, Func. Count: 229, Neg. LLF: 153.44238137584324
Optimization terminated successfully (Exit mode 0)
Current function value: 153.44238137584324
Iterations: 24
Function evaluations: 229
Gradient evaluations: 24
Iteration: 1, Func. Count: 11, Neg. LLF: 169.1560633460758
Iteration: 2, Func. Count: 22, Neg. LLF: 156.35799913564367
Iteration: 3, Func. Count: 34, Neg. LLF: 153.5209100770464
Iteration: 4, Func. Count: 44, Neg. LLF: 153.68640333893492
Iteration: 5, Func. Count: 55, Neg. LLF: 153.49689390414017
Iteration: 6, Func. Count: 65, Neg. LLF: 153.4842295990419
Iteration: 7, Func. Count: 75, Neg. LLF: 153.4792167411382
Iteration: 8, Func. Count: 85, Neg. LLF: 153.45828886278838
Iteration: 9, Func. Count: 95, Neg. LLF: 153.43332226520073
Iteration: 10, Func. Count: 105, Neg. LLF: 153.40397452299732
Iteration: 11, Func. Count: 115, Neg. LLF: 153.38188313638332
Iteration: 12, Func. Count: 125, Neg. LLF: 153.38013172511114
Iteration: 13, Func. Count: 136, Neg. LLF: 153.3648112318348
Iteration: 14, Func. Count: 147, Neg. LLF: 153.36300337984775
Iteration: 15, Func. Count: 157, Neg. LLF: 153.36299318371982
Iteration: 16, Func. Count: 166, Neg. LLF: 153.36299318389177
Optimization terminated successfully (Exit mode 0)
Current function value: 153.36299318371982
Iterations: 16
Function evaluations: 166
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 185.01301809559433
Iteration: 2, Func. Count: 25, Neg. LLF: 160.73487503182972
Iteration: 3, Func. Count: 37, Neg. LLF: 153.68885662294187
Iteration: 4, Func. Count: 48, Neg. LLF: 153.65019662619576
Iteration: 5, Func. Count: 59, Neg. LLF: 153.61152053472276
Iteration: 6, Func. Count: 70, Neg. LLF: 153.55601276094944
Iteration: 7, Func. Count: 81, Neg. LLF: 153.5140731623243
Iteration: 8, Func. Count: 92, Neg. LLF: 153.4877334023633
Iteration: 9, Func. Count: 103, Neg. LLF: 153.45746924572197
Iteration: 10, Func. Count: 114, Neg. LLF: 153.44578359569925
Iteration: 11, Func. Count: 125, Neg. LLF: 153.43679845971923
Iteration: 12, Func. Count: 136, Neg. LLF: 153.40786021111032
Iteration: 13, Func. Count: 147, Neg. LLF: 153.38514102453226
Iteration: 14, Func. Count: 158, Neg. LLF: 153.3667249813647
Iteration: 15, Func. Count: 169, Neg. LLF: 153.3631787125798
Iteration: 16, Func. Count: 180, Neg. LLF: 153.3630143042895
Iteration: 17, Func. Count: 191, Neg. LLF: 153.36299848589132
Iteration: 18, Func. Count: 202, Neg. LLF: 153.36299286060975
Iteration: 19, Func. Count: 212, Neg. LLF: 153.36299288912812
Optimization terminated successfully (Exit mode 0)
Current function value: 153.36299286060975
Iterations: 19
Function evaluations: 212
Gradient evaluations: 19
Iteration: 1, Func. Count: 9, Neg. LLF: 156.41487486098382
Iteration: 2, Func. Count: 18, Neg. LLF: 153.91459020738455
Iteration: 3, Func. Count: 26, Neg. LLF: 153.48671987615882
Iteration: 4, Func. Count: 35, Neg. LLF: 152.63676779723625
Iteration: 5, Func. Count: 43, Neg. LLF: 152.54066666278212
Iteration: 6, Func. Count: 51, Neg. LLF: 152.48881145609434
Iteration: 7, Func. Count: 59, Neg. LLF: 152.4318458593427
Iteration: 8, Func. Count: 67, Neg. LLF: 152.34113699565603
Iteration: 9, Func. Count: 75, Neg. LLF: 151.92183455363005
Iteration: 10, Func. Count: 83, Neg. LLF: 151.80701711230006
Iteration: 11, Func. Count: 91, Neg. LLF: 151.79629797440242
Iteration: 12, Func. Count: 99, Neg. LLF: 151.79624409481698
Iteration: 13, Func. Count: 107, Neg. LLF: 151.79622268848092
Iteration: 14, Func. Count: 115, Neg. LLF: 151.7962219480776
Optimization terminated successfully (Exit mode 0)
Current function value: 151.7962219480776
Iterations: 14
Function evaluations: 115
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 402.8683418711942
Iteration: 2, Func. Count: 21, Neg. LLF: 206.28024723152578
Iteration: 3, Func. Count: 31, Neg. LLF: 153.46959939920694
Iteration: 4, Func. Count: 40, Neg. LLF: 153.48945240804954
Iteration: 5, Func. Count: 50, Neg. LLF: 153.45006095215982
Iteration: 6, Func. Count: 59, Neg. LLF: 153.44809648994908
Iteration: 7, Func. Count: 68, Neg. LLF: 153.44413356760248
Iteration: 8, Func. Count: 77, Neg. LLF: 153.443008738073
Iteration: 9, Func. Count: 86, Neg. LLF: 153.4423878117098
Iteration: 10, Func. Count: 95, Neg. LLF: 153.44238169143193
Iteration: 11, Func. Count: 103, Neg. LLF: 153.4423816913262
Optimization terminated successfully (Exit mode 0)
Current function value: 153.44238169143193
Iterations: 11
Function evaluations: 103
Gradient evaluations: 11
Iteration: 1, Func. Count: 11, Neg. LLF: 161.59349807570476
Iteration: 2, Func. Count: 22, Neg. LLF: 167.8644822111159
Iteration: 3, Func. Count: 33, Neg. LLF: 153.68774599365463
Iteration: 4, Func. Count: 43, Neg. LLF: 153.28391182402703
Iteration: 5, Func. Count: 53, Neg. LLF: 153.266369941266
Iteration: 6, Func. Count: 64, Neg. LLF: 152.99335259127903
Iteration: 7, Func. Count: 74, Neg. LLF: 152.9860316544927
Iteration: 8, Func. Count: 84, Neg. LLF: 152.98084964989448
Iteration: 9, Func. Count: 94, Neg. LLF: 152.97882396234849
Iteration: 10, Func. Count: 104, Neg. LLF: 152.9731011297781
Iteration: 11, Func. Count: 114, Neg. LLF: 152.96747256579047
Iteration: 12, Func. Count: 124, Neg. LLF: 152.94427233331635
Iteration: 13, Func. Count: 134, Neg. LLF: 152.91854357237062
Iteration: 14, Func. Count: 144, Neg. LLF: 152.91649205234498
Iteration: 15, Func. Count: 154, Neg. LLF: 152.9118265285401
Iteration: 16, Func. Count: 164, Neg. LLF: 152.91182055701776
Iteration: 17, Func. Count: 175, Neg. LLF: 152.91166473534176
Iteration: 18, Func. Count: 185, Neg. LLF: 152.91166432863977
Optimization terminated successfully (Exit mode 0)
Current function value: 152.91166432863977
Iterations: 18
Function evaluations: 185
Gradient evaluations: 18
Iteration: 1, Func. Count: 12, Neg. LLF: 162.45791389404215
Iteration: 2, Func. Count: 24, Neg. LLF: 155.94405338209648
Iteration: 3, Func. Count: 37, Neg. LLF: 153.44757384084173
Iteration: 4, Func. Count: 48, Neg. LLF: 153.01881614870976
Iteration: 5, Func. Count: 59, Neg. LLF: 152.99542524373712
Iteration: 6, Func. Count: 70, Neg. LLF: 152.98176134991144
Iteration: 7, Func. Count: 81, Neg. LLF: 152.97994615978325
Iteration: 8, Func. Count: 92, Neg. LLF: 152.9754463787081
Iteration: 9, Func. Count: 103, Neg. LLF: 152.97021676751558
Iteration: 10, Func. Count: 114, Neg. LLF: 152.95410964722066
Iteration: 11, Func. Count: 125, Neg. LLF: 152.93114717491423
Iteration: 12, Func. Count: 136, Neg. LLF: 152.91847222582692
Iteration: 13, Func. Count: 147, Neg. LLF: 152.91237216786982
Iteration: 14, Func. Count: 158, Neg. LLF: 152.9117922774269
Iteration: 15, Func. Count: 169, Neg. LLF: 152.91174230771693
Iteration: 16, Func. Count: 180, Neg. LLF: 152.91170146532176
Iteration: 17, Func. Count: 191, Neg. LLF: 152.91429624998813
Optimization terminated successfully (Exit mode 0)
Current function value: 152.9117012343093
Iterations: 18
Function evaluations: 193
Gradient evaluations: 17
Iteration: 1, Func. Count: 13, Neg. LLF: 164.57007096168456
Iteration: 2, Func. Count: 26, Neg. LLF: 162.65245076395223
Iteration: 3, Func. Count: 40, Neg. LLF: 152.54670665504486
Iteration: 4, Func. Count: 52, Neg. LLF: 152.76132741285133
Iteration: 5, Func. Count: 66, Neg. LLF: 154.4795562856931
Iteration: 6, Func. Count: 79, Neg. LLF: 152.47054561708157
Iteration: 7, Func. Count: 91, Neg. LLF: 152.4214816204909
Iteration: 8, Func. Count: 103, Neg. LLF: 152.40636636288625
Iteration: 9, Func. Count: 115, Neg. LLF: 152.39778556955457
Iteration: 10, Func. Count: 127, Neg. LLF: 152.3784578760463
Iteration: 11, Func. Count: 139, Neg. LLF: 152.36770097263803
Iteration: 12, Func. Count: 151, Neg. LLF: 152.34945756220287
Iteration: 13, Func. Count: 163, Neg. LLF: 152.3311321989723
Iteration: 14, Func. Count: 175, Neg. LLF: 152.3111589526639
Iteration: 15, Func. Count: 187, Neg. LLF: 152.30015221321295
Iteration: 16, Func. Count: 199, Neg. LLF: 152.2983125545762
Iteration: 17, Func. Count: 211, Neg. LLF: 152.2982269786584
Iteration: 18, Func. Count: 223, Neg. LLF: 152.29821574300604
Iteration: 19, Func. Count: 234, Neg. LLF: 152.2982157430431
Optimization terminated successfully (Exit mode 0)
Current function value: 152.29821574300604
Iterations: 19
Function evaluations: 234
Gradient evaluations: 19
Iteration: 1, Func. Count: 10, Neg. LLF: 156.83465678165211
Iteration: 2, Func. Count: 20, Neg. LLF: 153.35327117789276
Iteration: 3, Func. Count: 29, Neg. LLF: 154.85528861404453
Iteration: 4, Func. Count: 39, Neg. LLF: 152.7100755442817
Iteration: 5, Func. Count: 48, Neg. LLF: 152.8524721439444
Iteration: 6, Func. Count: 58, Neg. LLF: 152.40343918941994
Iteration: 7, Func. Count: 67, Neg. LLF: 152.35589225594472
Iteration: 8, Func. Count: 76, Neg. LLF: 152.24018438399787
Iteration: 9, Func. Count: 85, Neg. LLF: 152.0732897777493
Iteration: 10, Func. Count: 94, Neg. LLF: 151.92023506187184
Iteration: 11, Func. Count: 103, Neg. LLF: 151.82678912712652
Iteration: 12, Func. Count: 112, Neg. LLF: 151.79784670384544
Iteration: 13, Func. Count: 121, Neg. LLF: 151.79626931936238
Iteration: 14, Func. Count: 130, Neg. LLF: 151.79622416278255
Iteration: 15, Func. Count: 139, Neg. LLF: 151.79622196417023
Iteration: 16, Func. Count: 147, Neg. LLF: 151.79622161491872
Optimization terminated successfully (Exit mode 0)
Current function value: 151.79622196417023
Iterations: 16
Function evaluations: 147
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 401.9803318508687
Iteration: 2, Func. Count: 23, Neg. LLF: 172.48570501730813
Iteration: 3, Func. Count: 35, Neg. LLF: 153.4585337247781
Iteration: 4, Func. Count: 45, Neg. LLF: 153.45871673788355
Iteration: 5, Func. Count: 56, Neg. LLF: 153.44881858715493
Iteration: 6, Func. Count: 66, Neg. LLF: 153.4454019488156
Iteration: 7, Func. Count: 76, Neg. LLF: 153.44272893407248
Iteration: 8, Func. Count: 86, Neg. LLF: 153.44242392868443
Iteration: 9, Func. Count: 96, Neg. LLF: 153.44238442186222
Iteration: 10, Func. Count: 106, Neg. LLF: 153.44238144221293
Iteration: 11, Func. Count: 115, Neg. LLF: 153.44238144203058
Optimization terminated successfully (Exit mode 0)
Current function value: 153.44238144221293
Iterations: 11
Function evaluations: 115
Gradient evaluations: 11
Iteration: 1, Func. Count: 12, Neg. LLF: 161.62749481842738
Iteration: 2, Func. Count: 24, Neg. LLF: 167.1230218797815
Iteration: 3, Func. Count: 36, Neg. LLF: 153.75826997863004
Iteration: 4, Func. Count: 47, Neg. LLF: 153.43084797965813
Iteration: 5, Func. Count: 58, Neg. LLF: 153.45631003241124
Iteration: 6, Func. Count: 70, Neg. LLF: 153.03075450775947
Iteration: 7, Func. Count: 81, Neg. LLF: 153.01881320757772
Iteration: 8, Func. Count: 92, Neg. LLF: 152.9879169556203
Iteration: 9, Func. Count: 103, Neg. LLF: 152.98184532537192
Iteration: 10, Func. Count: 114, Neg. LLF: 152.97886913221836
Iteration: 11, Func. Count: 125, Neg. LLF: 152.9766161585647
Iteration: 12, Func. Count: 136, Neg. LLF: 152.9699173709324
Iteration: 13, Func. Count: 147, Neg. LLF: 152.9563902721059
Iteration: 14, Func. Count: 158, Neg. LLF: 152.93655294232593
Iteration: 15, Func. Count: 169, Neg. LLF: 152.9210689453936
Iteration: 16, Func. Count: 180, Neg. LLF: 152.9119623454646
Iteration: 17, Func. Count: 191, Neg. LLF: 152.9117078149104
Iteration: 18, Func. Count: 202, Neg. LLF: 152.91168136491618
Iteration: 19, Func. Count: 213, Neg. LLF: 152.91166496302858
Iteration: 20, Func. Count: 224, Neg. LLF: 152.91166516645674
Optimization terminated successfully (Exit mode 0)
Current function value: 152.91166404567355
Iterations: 20
Function evaluations: 225
Gradient evaluations: 20
Iteration: 1, Func. Count: 13, Neg. LLF: 162.30147096587774
Iteration: 2, Func. Count: 26, Neg. LLF: 154.8197717519338
Iteration: 3, Func. Count: 40, Neg. LLF: 159.12233139316658
Iteration: 4, Func. Count: 53, Neg. LLF: 153.0597106768148
Iteration: 5, Func. Count: 65, Neg. LLF: 152.95463984009507
Iteration: 6, Func. Count: 77, Neg. LLF: 153.25015268108942
Iteration: 7, Func. Count: 90, Neg. LLF: 152.71915437787655
Iteration: 8, Func. Count: 102, Neg. LLF: 152.70319837009097
Iteration: 9, Func. Count: 114, Neg. LLF: 152.69497306183578
Iteration: 10, Func. Count: 126, Neg. LLF: 152.6770568268947
Iteration: 11, Func. Count: 138, Neg. LLF: 152.669763450038
Iteration: 12, Func. Count: 150, Neg. LLF: 152.65797537770587
Iteration: 13, Func. Count: 162, Neg. LLF: 152.65280800148608
Iteration: 14, Func. Count: 174, Neg. LLF: 152.65061399839524
Iteration: 15, Func. Count: 186, Neg. LLF: 152.6493424523571
Iteration: 16, Func. Count: 198, Neg. LLF: 152.64704379964388
Iteration: 17, Func. Count: 210, Neg. LLF: 152.61464889369714
Iteration: 18, Func. Count: 222, Neg. LLF: 152.60881100830926
Iteration: 19, Func. Count: 234, Neg. LLF: 152.47051999937017
Iteration: 20, Func. Count: 246, Neg. LLF: 152.4130359754258
Iteration: 21, Func. Count: 258, Neg. LLF: 152.38228754567044
Iteration: 22, Func. Count: 270, Neg. LLF: 152.35276844189326
Iteration: 23, Func. Count: 282, Neg. LLF: 152.30739452432493
Iteration: 24, Func. Count: 294, Neg. LLF: 152.26321341295014
Iteration: 25, Func. Count: 306, Neg. LLF: 152.2254094393033
Iteration: 26, Func. Count: 318, Neg. LLF: 152.21973631985475
Iteration: 27, Func. Count: 330, Neg. LLF: 152.21921546398227
Iteration: 28, Func. Count: 342, Neg. LLF: 152.2189894762042
Iteration: 29, Func. Count: 354, Neg. LLF: 152.21888026366724
Iteration: 30, Func. Count: 366, Neg. LLF: 152.2187539738076
Iteration: 31, Func. Count: 378, Neg. LLF: 152.2187262337775
Iteration: 32, Func. Count: 390, Neg. LLF: 152.2187233176987
Iteration: 33, Func. Count: 401, Neg. LLF: 152.2187234322919
Optimization terminated successfully (Exit mode 0)
Current function value: 152.2187233176987
Iterations: 33
Function evaluations: 401
Gradient evaluations: 33
Iteration: 1, Func. Count: 14, Neg. LLF: 164.40612035026427
Iteration: 2, Func. Count: 28, Neg. LLF: 162.22471113418476
Iteration: 3, Func. Count: 43, Neg. LLF: 152.14416111006724
Iteration: 4, Func. Count: 56, Neg. LLF: 151.93826074449117
Iteration: 5, Func. Count: 69, Neg. LLF: 151.8312327831156
Iteration: 6, Func. Count: 82, Neg. LLF: 151.82151755678197
Iteration: 7, Func. Count: 96, Neg. LLF: 152.6283578816067
Iteration: 8, Func. Count: 110, Neg. LLF: 151.8424178186842
Iteration: 9, Func. Count: 124, Neg. LLF: 151.68262932917267
Iteration: 10, Func. Count: 137, Neg. LLF: 151.54883999721955
Iteration: 11, Func. Count: 150, Neg. LLF: 151.5397195935454
Iteration: 12, Func. Count: 163, Neg. LLF: 151.53704985466672
Iteration: 13, Func. Count: 176, Neg. LLF: 151.5358392536693
Iteration: 14, Func. Count: 189, Neg. LLF: 151.53479952442757
Iteration: 15, Func. Count: 202, Neg. LLF: 151.5326872499456
Iteration: 16, Func. Count: 215, Neg. LLF: 151.52992739014763
Iteration: 17, Func. Count: 228, Neg. LLF: 151.52720080026907
Iteration: 18, Func. Count: 241, Neg. LLF: 151.5264346054096
Iteration: 19, Func. Count: 254, Neg. LLF: 151.52641035713035
Iteration: 20, Func. Count: 266, Neg. LLF: 151.52641035168133
Optimization terminated successfully (Exit mode 0)
Current function value: 151.52641035713035
Iterations: 20
Function evaluations: 266
Gradient evaluations: 20
Iteration: 1, Func. Count: 11, Neg. LLF: 156.83213166937477
Iteration: 2, Func. Count: 22, Neg. LLF: 153.3322859268614
Iteration: 3, Func. Count: 32, Neg. LLF: 154.85012252465532
Iteration: 4, Func. Count: 43, Neg. LLF: 152.71137059974444
Iteration: 5, Func. Count: 53, Neg. LLF: 152.90400099469332
Iteration: 6, Func. Count: 64, Neg. LLF: 152.40276678469328
Iteration: 7, Func. Count: 74, Neg. LLF: 152.35384784782113
Iteration: 8, Func. Count: 84, Neg. LLF: 152.24366764192158
Iteration: 9, Func. Count: 94, Neg. LLF: 152.07985128612947
Iteration: 10, Func. Count: 104, Neg. LLF: 151.92327756773273
Iteration: 11, Func. Count: 114, Neg. LLF: 151.8260574824845
Iteration: 12, Func. Count: 124, Neg. LLF: 151.79751570044428
Iteration: 13, Func. Count: 134, Neg. LLF: 151.7963460303058
Iteration: 14, Func. Count: 144, Neg. LLF: 151.79622592057595
Iteration: 15, Func. Count: 154, Neg. LLF: 151.79622258270157
Iteration: 16, Func. Count: 164, Neg. LLF: 151.7962219256514
Optimization terminated successfully (Exit mode 0)
Current function value: 151.7962219256514
Iterations: 16
Function evaluations: 164
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 403.3705753793934
Iteration: 2, Func. Count: 25, Neg. LLF: 171.35281048377112
Iteration: 3, Func. Count: 38, Neg. LLF: 153.45844915148018
Iteration: 4, Func. Count: 49, Neg. LLF: 153.4596648368509
Iteration: 5, Func. Count: 61, Neg. LLF: 153.44868109035178
Iteration: 6, Func. Count: 72, Neg. LLF: 153.44519749913638
Iteration: 7, Func. Count: 83, Neg. LLF: 153.4427203290284
Iteration: 8, Func. Count: 94, Neg. LLF: 153.4424225913418
Iteration: 9, Func. Count: 105, Neg. LLF: 153.44238437261842
Iteration: 10, Func. Count: 116, Neg. LLF: 153.4423814174452
Iteration: 11, Func. Count: 126, Neg. LLF: 153.442381417304
Optimization terminated successfully (Exit mode 0)
Current function value: 153.4423814174452
Iterations: 11
Function evaluations: 126
Gradient evaluations: 11
Iteration: 1, Func. Count: 13, Neg. LLF: 161.61617755209815
Iteration: 2, Func. Count: 26, Neg. LLF: 167.39923723497134
Iteration: 3, Func. Count: 39, Neg. LLF: 153.73590087559398
Iteration: 4, Func. Count: 51, Neg. LLF: 153.3960051429477
Iteration: 5, Func. Count: 63, Neg. LLF: 153.6845530978219
Iteration: 6, Func. Count: 76, Neg. LLF: 153.00855891885197
Iteration: 7, Func. Count: 88, Neg. LLF: 152.9942047534398
Iteration: 8, Func. Count: 100, Neg. LLF: 152.98415536627047
Iteration: 9, Func. Count: 112, Neg. LLF: 152.98071826946747
Iteration: 10, Func. Count: 124, Neg. LLF: 152.97831442083603
Iteration: 11, Func. Count: 136, Neg. LLF: 152.97464888195694
Iteration: 12, Func. Count: 148, Neg. LLF: 152.96551167190813
Iteration: 13, Func. Count: 160, Neg. LLF: 152.9490808106136
Iteration: 14, Func. Count: 172, Neg. LLF: 152.93001606231786
Iteration: 15, Func. Count: 184, Neg. LLF: 152.91576599041053
Iteration: 16, Func. Count: 196, Neg. LLF: 152.91285289445742
Iteration: 17, Func. Count: 208, Neg. LLF: 152.91176802842125
Iteration: 18, Func. Count: 220, Neg. LLF: 152.91167518145792
Iteration: 19, Func. Count: 232, Neg. LLF: 152.91167321397924
Iteration: 20, Func. Count: 245, Neg. LLF: 152.91166414873845
Optimization terminated successfully (Exit mode 0)
Current function value: 152.91166414873845
Iterations: 20
Function evaluations: 245
Gradient evaluations: 20
Iteration: 1, Func. Count: 14, Neg. LLF: 162.3832347020247
Iteration: 2, Func. Count: 28, Neg. LLF: 154.75143294816604
Iteration: 3, Func. Count: 43, Neg. LLF: 157.6043715057431
Iteration: 4, Func. Count: 57, Neg. LLF: 153.0602183575423
Iteration: 5, Func. Count: 70, Neg. LLF: 152.97601087616272
Iteration: 6, Func. Count: 83, Neg. LLF: 153.6010108047111
Iteration: 7, Func. Count: 97, Neg. LLF: 152.73706914927496
Iteration: 8, Func. Count: 110, Neg. LLF: 152.8385186842982
Iteration: 9, Func. Count: 124, Neg. LLF: 152.6916405599445
Iteration: 10, Func. Count: 137, Neg. LLF: 152.6812089556494
Iteration: 11, Func. Count: 150, Neg. LLF: 152.66926908574558
Iteration: 12, Func. Count: 163, Neg. LLF: 152.65905049621256
Iteration: 13, Func. Count: 176, Neg. LLF: 152.65338033803894
Iteration: 14, Func. Count: 189, Neg. LLF: 152.65110886424563
Iteration: 15, Func. Count: 202, Neg. LLF: 152.6496497559201
Iteration: 16, Func. Count: 215, Neg. LLF: 152.64787013757885
Iteration: 17, Func. Count: 228, Neg. LLF: 152.6420471332991
Iteration: 18, Func. Count: 241, Neg. LLF: 152.5653161694679
Iteration: 19, Func. Count: 254, Neg. LLF: 152.55338324770486
Iteration: 20, Func. Count: 267, Neg. LLF: 152.49826146193112
Iteration: 21, Func. Count: 280, Neg. LLF: 152.36624486111953
Iteration: 22, Func. Count: 293, Neg. LLF: 152.3383256903587
Iteration: 23, Func. Count: 306, Neg. LLF: 152.31538967078185
Iteration: 24, Func. Count: 319, Neg. LLF: 152.24989994396634
Iteration: 25, Func. Count: 332, Neg. LLF: 152.23711147619824
Iteration: 26, Func. Count: 345, Neg. LLF: 152.2997190803997
Iteration: 27, Func. Count: 359, Neg. LLF: 152.23200046623435
Iteration: 28, Func. Count: 373, Neg. LLF: 152.22262205447026
Iteration: 29, Func. Count: 386, Neg. LLF: 152.22166475526103
Iteration: 30, Func. Count: 399, Neg. LLF: 152.22077947151053
Iteration: 31, Func. Count: 412, Neg. LLF: 152.21899605049785
Iteration: 32, Func. Count: 425, Neg. LLF: 152.21874185263255
Iteration: 33, Func. Count: 438, Neg. LLF: 152.21872349991415
Iteration: 34, Func. Count: 450, Neg. LLF: 152.21872361458335
Optimization terminated successfully (Exit mode 0)
Current function value: 152.21872349991415
Iterations: 35
Function evaluations: 450
Gradient evaluations: 34
Iteration: 1, Func. Count: 15, Neg. LLF: 164.55459781266057
Iteration: 2, Func. Count: 30, Neg. LLF: 162.52886455046595
Iteration: 3, Func. Count: 46, Neg. LLF: 152.14848498991282
Iteration: 4, Func. Count: 60, Neg. LLF: 151.95483879925357
Iteration: 5, Func. Count: 74, Neg. LLF: 151.83113530952323
Iteration: 6, Func. Count: 88, Neg. LLF: 151.87249023760887
Iteration: 7, Func. Count: 103, Neg. LLF: 151.78744681148572
Iteration: 8, Func. Count: 118, Neg. LLF: 151.7437286924233
Iteration: 9, Func. Count: 132, Neg. LLF: 151.7028725645518
Iteration: 10, Func. Count: 146, Neg. LLF: 151.61314438613044
Iteration: 11, Func. Count: 160, Neg. LLF: 151.54601794579372
Iteration: 12, Func. Count: 174, Neg. LLF: 151.53931328284804
Iteration: 13, Func. Count: 188, Neg. LLF: 151.53618765641272
Iteration: 14, Func. Count: 202, Neg. LLF: 151.53549106245015
Iteration: 15, Func. Count: 216, Neg. LLF: 151.53323612774992
Iteration: 16, Func. Count: 230, Neg. LLF: 151.53170462258035
Iteration: 17, Func. Count: 244, Neg. LLF: 151.528102850545
Iteration: 18, Func. Count: 258, Neg. LLF: 151.52659278084346
Iteration: 19, Func. Count: 272, Neg. LLF: 151.5264172257365
Iteration: 20, Func. Count: 286, Neg. LLF: 151.52641051061985
Iteration: 21, Func. Count: 300, Neg. LLF: 151.52640983470025
Optimization terminated successfully (Exit mode 0)
Current function value: 151.52640983470025
Iterations: 21
Function evaluations: 300
Gradient evaluations: 21
Iteration: 1, Func. Count: 8, Neg. LLF: 153.1455243628386
Iteration: 2, Func. Count: 15, Neg. LLF: 156.4087536688404
Iteration: 3, Func. Count: 23, Neg. LLF: 152.68283537496762
Iteration: 4, Func. Count: 30, Neg. LLF: 152.35261298579405
Iteration: 5, Func. Count: 37, Neg. LLF: 152.18679191311253
Iteration: 6, Func. Count: 44, Neg. LLF: 151.9467293077995
Iteration: 7, Func. Count: 51, Neg. LLF: 151.9216499254735
Iteration: 8, Func. Count: 58, Neg. LLF: 151.92105668673395
Iteration: 9, Func. Count: 65, Neg. LLF: 151.9210112791814
Iteration: 10, Func. Count: 72, Neg. LLF: 151.92100320821984
Iteration: 11, Func. Count: 78, Neg. LLF: 151.921003476374
Optimization terminated successfully (Exit mode 0)
Current function value: 151.92100320821984
Iterations: 11
Function evaluations: 78
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 440.99854530412847
Iteration: 2, Func. Count: 19, Neg. LLF: 153.62580665779606
Iteration: 3, Func. Count: 27, Neg. LLF: 153.59779183493177
Iteration: 4, Func. Count: 35, Neg. LLF: 153.5731466694273
Iteration: 5, Func. Count: 43, Neg. LLF: 153.5581971859384
Iteration: 6, Func. Count: 51, Neg. LLF: 153.55551656388045
Iteration: 7, Func. Count: 59, Neg. LLF: 153.55521756530257
Iteration: 8, Func. Count: 67, Neg. LLF: 153.55508795337263
Iteration: 9, Func. Count: 75, Neg. LLF: 153.5550791828967
Iteration: 10, Func. Count: 82, Neg. LLF: 153.55507918295942
Optimization terminated successfully (Exit mode 0)
Current function value: 153.5550791828967
Iterations: 10
Function evaluations: 82
Gradient evaluations: 10
Iteration: 1, Func. Count: 10, Neg. LLF: 455.2282921014806
Iteration: 2, Func. Count: 21, Neg. LLF: 153.59826218783857
Iteration: 3, Func. Count: 30, Neg. LLF: 153.58091179929536
Iteration: 4, Func. Count: 39, Neg. LLF: 153.57962051082663
Iteration: 5, Func. Count: 48, Neg. LLF: 153.57499189383603
Iteration: 6, Func. Count: 57, Neg. LLF: 153.57133214248003
Iteration: 7, Func. Count: 66, Neg. LLF: 153.56440593198442
Iteration: 8, Func. Count: 75, Neg. LLF: 153.55737502984
Iteration: 9, Func. Count: 84, Neg. LLF: 153.55538945592627
Iteration: 10, Func. Count: 93, Neg. LLF: 153.55509217633778
Iteration: 11, Func. Count: 102, Neg. LLF: 153.555079726765
Iteration: 12, Func. Count: 111, Neg. LLF: 153.55507906379205
Optimization terminated successfully (Exit mode 0)
Current function value: 153.55507906379205
Iterations: 12
Function evaluations: 111
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 184.9823121813735
Iteration: 2, Func. Count: 23, Neg. LLF: 153.78769217631162
Iteration: 3, Func. Count: 33, Neg. LLF: 153.77457780791195
Iteration: 4, Func. Count: 43, Neg. LLF: 153.76904041729514
Iteration: 5, Func. Count: 53, Neg. LLF: 153.73561860356486
Iteration: 6, Func. Count: 63, Neg. LLF: 153.6837357180546
Iteration: 7, Func. Count: 73, Neg. LLF: 153.64707347455226
Iteration: 8, Func. Count: 83, Neg. LLF: 153.62180053350147
Iteration: 9, Func. Count: 93, Neg. LLF: 153.603883431046
Iteration: 10, Func. Count: 103, Neg. LLF: 153.59403338549694
Iteration: 11, Func. Count: 113, Neg. LLF: 153.5811401098919
Iteration: 12, Func. Count: 123, Neg. LLF: 153.56441818171442
Iteration: 13, Func. Count: 133, Neg. LLF: 153.56187113044615
Iteration: 14, Func. Count: 143, Neg. LLF: 153.55732105964114
Iteration: 15, Func. Count: 153, Neg. LLF: 153.55598091279458
Iteration: 16, Func. Count: 163, Neg. LLF: 153.55520446894428
Iteration: 17, Func. Count: 173, Neg. LLF: 165.41304366293693
Iteration: 18, Func. Count: 186, Neg. LLF: 153.5550834296615
Iteration: 19, Func. Count: 196, Neg. LLF: 153.55508004225706
Iteration: 20, Func. Count: 206, Neg. LLF: 153.55507917732257
Optimization terminated successfully (Exit mode 0)
Current function value: 153.55507917732257
Iterations: 21
Function evaluations: 206
Gradient evaluations: 20
Iteration: 1, Func. Count: 12, Neg. LLF: 185.2745388468071
Iteration: 2, Func. Count: 25, Neg. LLF: 153.68975042480415
Iteration: 3, Func. Count: 36, Neg. LLF: 153.65157999378638
Iteration: 4, Func. Count: 47, Neg. LLF: 152.94090792401678
Iteration: 5, Func. Count: 58, Neg. LLF: 152.7148254671361
Iteration: 6, Func. Count: 69, Neg. LLF: 152.66028698181526
Iteration: 7, Func. Count: 80, Neg. LLF: 152.54844248614316
Iteration: 8, Func. Count: 91, Neg. LLF: 152.508663572776
Iteration: 9, Func. Count: 102, Neg. LLF: 152.4446271563512
Iteration: 10, Func. Count: 113, Neg. LLF: 152.43144610699554
Iteration: 11, Func. Count: 124, Neg. LLF: 152.4267927782488
Iteration: 12, Func. Count: 135, Neg. LLF: 152.4179814468734
Iteration: 13, Func. Count: 146, Neg. LLF: 152.40295926084812
Iteration: 14, Func. Count: 157, Neg. LLF: 152.39585196010748
Iteration: 15, Func. Count: 168, Neg. LLF: 152.39470303407435
Iteration: 16, Func. Count: 179, Neg. LLF: 152.39382232454017
Iteration: 17, Func. Count: 190, Neg. LLF: 152.39382005350254
Iteration: 18, Func. Count: 200, Neg. LLF: 152.3938200534683
Optimization terminated successfully (Exit mode 0)
Current function value: 152.39382005350254
Iterations: 18
Function evaluations: 200
Gradient evaluations: 18
Iteration: 1, Func. Count: 9, Neg. LLF: 153.98620144668698
Iteration: 2, Func. Count: 17, Neg. LLF: 154.1277267516943
Iteration: 3, Func. Count: 26, Neg. LLF: 153.12408713086367
Iteration: 4, Func. Count: 34, Neg. LLF: 152.53977303563244
Iteration: 5, Func. Count: 42, Neg. LLF: 153.65636300772587
Iteration: 6, Func. Count: 51, Neg. LLF: 152.46168805653562
Iteration: 7, Func. Count: 59, Neg. LLF: 152.30026985360115
Iteration: 8, Func. Count: 67, Neg. LLF: 152.04477171256923
Iteration: 9, Func. Count: 75, Neg. LLF: 151.88099196407546
Iteration: 10, Func. Count: 83, Neg. LLF: 151.8123777640365
Iteration: 11, Func. Count: 91, Neg. LLF: 151.8087640566761
Iteration: 12, Func. Count: 99, Neg. LLF: 151.80862281654578
Iteration: 13, Func. Count: 107, Neg. LLF: 151.8086181866776
Iteration: 14, Func. Count: 114, Neg. LLF: 151.80861808273417
Optimization terminated successfully (Exit mode 0)
Current function value: 151.8086181866776
Iterations: 14
Function evaluations: 114
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 403.66176661492557
Iteration: 2, Func. Count: 21, Neg. LLF: 158.55534565074902
Iteration: 3, Func. Count: 32, Neg. LLF: 153.44948371096294
Iteration: 4, Func. Count: 41, Neg. LLF: 153.446950666641
Iteration: 5, Func. Count: 50, Neg. LLF: 153.4456187516098
Iteration: 6, Func. Count: 59, Neg. LLF: 153.44489232312154
Iteration: 7, Func. Count: 68, Neg. LLF: 153.44336802406806
Iteration: 8, Func. Count: 77, Neg. LLF: 153.44256178585348
Iteration: 9, Func. Count: 86, Neg. LLF: 153.4423960880246
Iteration: 10, Func. Count: 95, Neg. LLF: 153.44238141658224
Iteration: 11, Func. Count: 103, Neg. LLF: 153.44238141655248
Optimization terminated successfully (Exit mode 0)
Current function value: 153.44238141658224
Iterations: 11
Function evaluations: 103
Gradient evaluations: 11
Iteration: 1, Func. Count: 11, Neg. LLF: 168.53460449086583
Iteration: 2, Func. Count: 22, Neg. LLF: 155.26220643313567
Iteration: 3, Func. Count: 34, Neg. LLF: 153.67769069018664
Iteration: 4, Func. Count: 44, Neg. LLF: 153.63918505951247
Iteration: 5, Func. Count: 54, Neg. LLF: 153.6349099543557
Iteration: 6, Func. Count: 64, Neg. LLF: 153.63417471926635
Iteration: 7, Func. Count: 74, Neg. LLF: 153.6335616836388
Iteration: 8, Func. Count: 84, Neg. LLF: 153.63071754685245
Iteration: 9, Func. Count: 94, Neg. LLF: 153.62361132949684
Iteration: 10, Func. Count: 104, Neg. LLF: 153.67218190232217
Iteration: 11, Func. Count: 115, Neg. LLF: 153.6603189463027
Iteration: 12, Func. Count: 126, Neg. LLF: 153.62872866831188
Iteration: 13, Func. Count: 137, Neg. LLF: 153.88119990445028
Iteration: 14, Func. Count: 148, Neg. LLF: 155.1090889253768
Iteration: 15, Func. Count: 159, Neg. LLF: 154.09506036309085
Iteration: 16, Func. Count: 170, Neg. LLF: 154.52004986191875
Iteration: 17, Func. Count: 181, Neg. LLF: 153.5511519001783
Iteration: 18, Func. Count: 192, Neg. LLF: 153.45567847360343
Iteration: 19, Func. Count: 202, Neg. LLF: 153.44605050629963
Iteration: 20, Func. Count: 212, Neg. LLF: 153.44497158638185
Iteration: 21, Func. Count: 222, Neg. LLF: 153.44307344192214
Iteration: 22, Func. Count: 232, Neg. LLF: 153.44245987103199
Iteration: 23, Func. Count: 242, Neg. LLF: 153.44238158976827
Iteration: 24, Func. Count: 251, Neg. LLF: 153.44238158997848
Optimization terminated successfully (Exit mode 0)
Current function value: 153.44238158976827
Iterations: 24
Function evaluations: 251
Gradient evaluations: 24
Iteration: 1, Func. Count: 12, Neg. LLF: 169.2196266810062
Iteration: 2, Func. Count: 24, Neg. LLF: 156.14842420763972
Iteration: 3, Func. Count: 37, Neg. LLF: 153.51275185892246
Iteration: 4, Func. Count: 48, Neg. LLF: 153.61316898774663
Iteration: 5, Func. Count: 60, Neg. LLF: 153.49510767116632
Iteration: 6, Func. Count: 71, Neg. LLF: 153.4829161163938
Iteration: 7, Func. Count: 82, Neg. LLF: 153.47726520623345
Iteration: 8, Func. Count: 93, Neg. LLF: 153.4602574014658
Iteration: 9, Func. Count: 104, Neg. LLF: 153.43383156574507
Iteration: 10, Func. Count: 115, Neg. LLF: 153.4049486993188
Iteration: 11, Func. Count: 126, Neg. LLF: 153.38315740571107
Iteration: 12, Func. Count: 137, Neg. LLF: 153.36500164460298
Iteration: 13, Func. Count: 148, Neg. LLF: 153.3631011186767
Iteration: 14, Func. Count: 159, Neg. LLF: 153.36300025436904
Iteration: 15, Func. Count: 170, Neg. LLF: 153.3629958266265
Iteration: 16, Func. Count: 181, Neg. LLF: 153.36299277764397
Iteration: 17, Func. Count: 191, Neg. LLF: 153.3629927776308
Optimization terminated successfully (Exit mode 0)
Current function value: 153.36299277764397
Iterations: 17
Function evaluations: 191
Gradient evaluations: 17
Iteration: 1, Func. Count: 13, Neg. LLF: 185.02559673629045
Iteration: 2, Func. Count: 27, Neg. LLF: 161.0766592771038
Iteration: 3, Func. Count: 40, Neg. LLF: 153.68809755098732
Iteration: 4, Func. Count: 52, Neg. LLF: 153.64942029195205
Iteration: 5, Func. Count: 64, Neg. LLF: 153.61391063783594
Iteration: 6, Func. Count: 76, Neg. LLF: 153.548852655472
Iteration: 7, Func. Count: 88, Neg. LLF: 153.521668699172
Iteration: 8, Func. Count: 100, Neg. LLF: 153.4871315370022
Iteration: 9, Func. Count: 112, Neg. LLF: 153.45428233803318
Iteration: 10, Func. Count: 124, Neg. LLF: 153.4458488362058
Iteration: 11, Func. Count: 136, Neg. LLF: 153.42963167957276
Iteration: 12, Func. Count: 148, Neg. LLF: 153.41067775621943
Iteration: 13, Func. Count: 160, Neg. LLF: 153.38811863468194
Iteration: 14, Func. Count: 172, Neg. LLF: 153.37176635087326
Iteration: 15, Func. Count: 184, Neg. LLF: 153.36347155746444
Iteration: 16, Func. Count: 196, Neg. LLF: 153.36304858426809
Iteration: 17, Func. Count: 208, Neg. LLF: 153.36300311566498
Iteration: 18, Func. Count: 220, Neg. LLF: 153.3629930768027
Iteration: 19, Func. Count: 231, Neg. LLF: 153.36299310532144
Optimization terminated successfully (Exit mode 0)
Current function value: 153.3629930768027
Iterations: 19
Function evaluations: 231
Gradient evaluations: 19
Iteration: 1, Func. Count: 10, Neg. LLF: 156.4901718967229
Iteration: 2, Func. Count: 20, Neg. LLF: 153.46699204287142
Iteration: 3, Func. Count: 29, Neg. LLF: 153.21355837754828
Iteration: 4, Func. Count: 39, Neg. LLF: 152.55715281558355
Iteration: 5, Func. Count: 48, Neg. LLF: 152.50821918101516
Iteration: 6, Func. Count: 57, Neg. LLF: 152.44261765526153
Iteration: 7, Func. Count: 66, Neg. LLF: 152.2618572597306
Iteration: 8, Func. Count: 75, Neg. LLF: 151.9581305160278
Iteration: 9, Func. Count: 84, Neg. LLF: 151.86370768524355
Iteration: 10, Func. Count: 93, Neg. LLF: 151.86997339243007
Iteration: 11, Func. Count: 103, Neg. LLF: 151.79734352720942
Iteration: 12, Func. Count: 112, Neg. LLF: 151.79626342134537
Iteration: 13, Func. Count: 121, Neg. LLF: 151.79622254529198
Iteration: 14, Func. Count: 130, Neg. LLF: 151.79622193088593
Optimization terminated successfully (Exit mode 0)
Current function value: 151.79622193088593
Iterations: 14
Function evaluations: 130
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 404.27025430115555
Iteration: 2, Func. Count: 23, Neg. LLF: 205.3172670978206
Iteration: 3, Func. Count: 34, Neg. LLF: 153.46947897376435
Iteration: 4, Func. Count: 44, Neg. LLF: 153.49035412265397
Iteration: 5, Func. Count: 55, Neg. LLF: 153.4499268956539
Iteration: 6, Func. Count: 65, Neg. LLF: 153.44793912870645
Iteration: 7, Func. Count: 75, Neg. LLF: 153.44391330549598
Iteration: 8, Func. Count: 85, Neg. LLF: 153.4429182500996
Iteration: 9, Func. Count: 95, Neg. LLF: 153.44238762015704
Iteration: 10, Func. Count: 105, Neg. LLF: 153.44238147910733
Iteration: 11, Func. Count: 114, Neg. LLF: 153.44238147899142
Optimization terminated successfully (Exit mode 0)
Current function value: 153.44238147910733
Iterations: 11
Function evaluations: 114
Gradient evaluations: 11
Iteration: 1, Func. Count: 12, Neg. LLF: 161.55309066361957
Iteration: 2, Func. Count: 24, Neg. LLF: 168.64992535481693
Iteration: 3, Func. Count: 36, Neg. LLF: 153.63126385157017
Iteration: 4, Func. Count: 47, Neg. LLF: 153.07969877778535
Iteration: 5, Func. Count: 58, Neg. LLF: 153.37138937061366
Iteration: 6, Func. Count: 70, Neg. LLF: 152.9880217705612
Iteration: 7, Func. Count: 81, Neg. LLF: 152.983418880721
Iteration: 8, Func. Count: 92, Neg. LLF: 152.98125505433893
Iteration: 9, Func. Count: 103, Neg. LLF: 152.9750222903254
Iteration: 10, Func. Count: 114, Neg. LLF: 152.96921843828224
Iteration: 11, Func. Count: 125, Neg. LLF: 152.952788804589
Iteration: 12, Func. Count: 136, Neg. LLF: 152.93427627858708
Iteration: 13, Func. Count: 147, Neg. LLF: 152.91905448963175
Iteration: 14, Func. Count: 158, Neg. LLF: 152.9126099839257
Iteration: 15, Func. Count: 169, Neg. LLF: 152.91203000273873
Iteration: 16, Func. Count: 180, Neg. LLF: 152.91166877732653
Iteration: 17, Func. Count: 191, Neg. LLF: 152.91166578299857
Iteration: 18, Func. Count: 202, Neg. LLF: 152.91166370284702
Iteration: 19, Func. Count: 212, Neg. LLF: 152.9116637028542
Optimization terminated successfully (Exit mode 0)
Current function value: 152.91166370284702
Iterations: 19
Function evaluations: 212
Gradient evaluations: 19
Iteration: 1, Func. Count: 13, Neg. LLF: 162.68096839135495
Iteration: 2, Func. Count: 26, Neg. LLF: 155.85525290640248
Iteration: 3, Func. Count: 40, Neg. LLF: 153.45120561909405
Iteration: 4, Func. Count: 52, Neg. LLF: 153.01518582875042
Iteration: 5, Func. Count: 64, Neg. LLF: 152.99628322053047
Iteration: 6, Func. Count: 76, Neg. LLF: 152.98202952824877
Iteration: 7, Func. Count: 88, Neg. LLF: 152.98046685116478
Iteration: 8, Func. Count: 100, Neg. LLF: 152.9744805667398
Iteration: 9, Func. Count: 112, Neg. LLF: 152.9652076341581
Iteration: 10, Func. Count: 124, Neg. LLF: 152.94302822121332
Iteration: 11, Func. Count: 136, Neg. LLF: 152.92167847179945
Iteration: 12, Func. Count: 148, Neg. LLF: 152.9145923867331
Iteration: 13, Func. Count: 160, Neg. LLF: 152.91214072620892
Iteration: 14, Func. Count: 172, Neg. LLF: 152.9119858596435
Iteration: 15, Func. Count: 184, Neg. LLF: 152.9116666479913
Iteration: 16, Func. Count: 195, Neg. LLF: 152.91166673421375
Optimization terminated successfully (Exit mode 0)
Current function value: 152.9116666479913
Iterations: 16
Function evaluations: 195
Gradient evaluations: 16
Iteration: 1, Func. Count: 14, Neg. LLF: 164.887430156016
Iteration: 2, Func. Count: 28, Neg. LLF: 162.7456402254591
Iteration: 3, Func. Count: 43, Neg. LLF: 152.55554310856425
Iteration: 4, Func. Count: 56, Neg. LLF: 152.64677145223624
Iteration: 5, Func. Count: 72, Neg. LLF: 152.50026021100024
Iteration: 6, Func. Count: 85, Neg. LLF: 152.5274640975813
Iteration: 7, Func. Count: 99, Neg. LLF: 152.43439758987745
Iteration: 8, Func. Count: 112, Neg. LLF: 152.41183917139742
Iteration: 9, Func. Count: 125, Neg. LLF: 152.400893300004
Iteration: 10, Func. Count: 138, Neg. LLF: 152.38152951231808
Iteration: 11, Func. Count: 151, Neg. LLF: 152.36885495787612
Iteration: 12, Func. Count: 164, Neg. LLF: 152.35838313698892
Iteration: 13, Func. Count: 177, Neg. LLF: 152.34443247086395
Iteration: 14, Func. Count: 190, Neg. LLF: 152.3217644918484
Iteration: 15, Func. Count: 203, Neg. LLF: 152.30422189601438
Iteration: 16, Func. Count: 216, Neg. LLF: 152.29864676269213
Iteration: 17, Func. Count: 229, Neg. LLF: 152.29830523528653
Iteration: 18, Func. Count: 242, Neg. LLF: 152.2982290566623
Iteration: 19, Func. Count: 255, Neg. LLF: 152.29821622450754
Iteration: 20, Func. Count: 268, Neg. LLF: 152.29821574974005
Optimization terminated successfully (Exit mode 0)
Current function value: 152.29821574974005
Iterations: 20
Function evaluations: 268
Gradient evaluations: 20
Iteration: 1, Func. Count: 11, Neg. LLF: 157.099132634905
Iteration: 2, Func. Count: 22, Neg. LLF: 152.96981641287968
Iteration: 3, Func. Count: 32, Neg. LLF: 153.3227608905007
Iteration: 4, Func. Count: 43, Neg. LLF: 152.7157012901566
Iteration: 5, Func. Count: 53, Neg. LLF: 160.19914154562525
Iteration: 6, Func. Count: 64, Neg. LLF: 152.5727784046409
Iteration: 7, Func. Count: 75, Neg. LLF: 152.27641925037886
Iteration: 8, Func. Count: 85, Neg. LLF: 152.04234373053418
Iteration: 9, Func. Count: 95, Neg. LLF: 151.85484419913968
Iteration: 10, Func. Count: 105, Neg. LLF: 151.80830672805445
Iteration: 11, Func. Count: 115, Neg. LLF: 151.7964791398752
Iteration: 12, Func. Count: 125, Neg. LLF: 151.79627553130294
Iteration: 13, Func. Count: 135, Neg. LLF: 151.79622433720334
Iteration: 14, Func. Count: 145, Neg. LLF: 151.79622227498584
Iteration: 15, Func. Count: 154, Neg. LLF: 151.79622192570685
Optimization terminated successfully (Exit mode 0)
Current function value: 151.79622227498584
Iterations: 15
Function evaluations: 154
Gradient evaluations: 15
Iteration: 1, Func. Count: 12, Neg. LLF: 403.32076795473597
Iteration: 2, Func. Count: 25, Neg. LLF: 171.0766428308848
Iteration: 3, Func. Count: 38, Neg. LLF: 153.45855491911416
Iteration: 4, Func. Count: 49, Neg. LLF: 153.4599335833087
Iteration: 5, Func. Count: 61, Neg. LLF: 153.44869758154385
Iteration: 6, Func. Count: 72, Neg. LLF: 153.44496097010799
Iteration: 7, Func. Count: 83, Neg. LLF: 153.44268230908324
Iteration: 8, Func. Count: 94, Neg. LLF: 153.44241624352784
Iteration: 9, Func. Count: 105, Neg. LLF: 153.44238374052338
Iteration: 10, Func. Count: 116, Neg. LLF: 153.44238141965533
Iteration: 11, Func. Count: 126, Neg. LLF: 153.44238141950774
Optimization terminated successfully (Exit mode 0)
Current function value: 153.44238141965533
Iterations: 11
Function evaluations: 126
Gradient evaluations: 11
Iteration: 1, Func. Count: 13, Neg. LLF: 161.58720076972142
Iteration: 2, Func. Count: 26, Neg. LLF: 167.86816667336873
Iteration: 3, Func. Count: 39, Neg. LLF: 153.66340881060455
Iteration: 4, Func. Count: 51, Neg. LLF: 153.16419247372247
Iteration: 5, Func. Count: 63, Neg. LLF: 153.77864906688404
Iteration: 6, Func. Count: 76, Neg. LLF: 152.99127368822514
Iteration: 7, Func. Count: 88, Neg. LLF: 152.98310184478328
Iteration: 8, Func. Count: 100, Neg. LLF: 152.9792903887021
Iteration: 9, Func. Count: 112, Neg. LLF: 152.97739138978073
Iteration: 10, Func. Count: 124, Neg. LLF: 152.97101019518297
Iteration: 11, Func. Count: 136, Neg. LLF: 152.96001013276933
Iteration: 12, Func. Count: 148, Neg. LLF: 152.941436578032
Iteration: 13, Func. Count: 160, Neg. LLF: 152.9173143509642
Iteration: 14, Func. Count: 172, Neg. LLF: 152.91299098252588
Iteration: 15, Func. Count: 184, Neg. LLF: 152.91171297663664
Iteration: 16, Func. Count: 196, Neg. LLF: 152.9116970038883
Iteration: 17, Func. Count: 208, Neg. LLF: 152.91167071383285
Iteration: 18, Func. Count: 220, Neg. LLF: 152.91166693243065
Iteration: 19, Func. Count: 232, Neg. LLF: 152.91186666096803
Optimization terminated successfully (Exit mode 0)
Current function value: 152.9116669111149
Iterations: 20
Function evaluations: 234
Gradient evaluations: 19
Iteration: 1, Func. Count: 14, Neg. LLF: 162.48640281101586
Iteration: 2, Func. Count: 28, Neg. LLF: 154.7369705890998
Iteration: 3, Func. Count: 43, Neg. LLF: 158.16400358412437
Iteration: 4, Func. Count: 57, Neg. LLF: 153.05191781142824
Iteration: 5, Func. Count: 70, Neg. LLF: 152.9319820847926
Iteration: 6, Func. Count: 83, Neg. LLF: 153.60497986554773
Iteration: 7, Func. Count: 97, Neg. LLF: 152.72109206759868
Iteration: 8, Func. Count: 110, Neg. LLF: 152.69681786254907
Iteration: 9, Func. Count: 123, Neg. LLF: 152.6948153479055
Iteration: 10, Func. Count: 137, Neg. LLF: 152.67676472448775
Iteration: 11, Func. Count: 150, Neg. LLF: 152.6576360249671
Iteration: 12, Func. Count: 163, Neg. LLF: 152.65350087334733
Iteration: 13, Func. Count: 176, Neg. LLF: 152.65124356820732
Iteration: 14, Func. Count: 189, Neg. LLF: 152.64966021398843
Iteration: 15, Func. Count: 202, Neg. LLF: 152.64751419864007
Iteration: 16, Func. Count: 215, Neg. LLF: 152.621934271574
Iteration: 17, Func. Count: 228, Neg. LLF: 152.43972520262648
Iteration: 18, Func. Count: 241, Neg. LLF: 152.38253738505688
Iteration: 19, Func. Count: 254, Neg. LLF: 152.3455431150168
Iteration: 20, Func. Count: 267, Neg. LLF: 152.31430098577889
Iteration: 21, Func. Count: 280, Neg. LLF: 152.2849747207686
Iteration: 22, Func. Count: 293, Neg. LLF: 152.25018990728879
Iteration: 23, Func. Count: 306, Neg. LLF: 152.23035891769845
Iteration: 24, Func. Count: 319, Neg. LLF: 152.22455983142686
Iteration: 25, Func. Count: 332, Neg. LLF: 152.22394092769437
Iteration: 26, Func. Count: 346, Neg. LLF: 152.22024613053404
Iteration: 27, Func. Count: 359, Neg. LLF: 152.22008579309232
Iteration: 28, Func. Count: 372, Neg. LLF: 152.21950891675237
Iteration: 29, Func. Count: 385, Neg. LLF: 152.21922669168026
Iteration: 30, Func. Count: 398, Neg. LLF: 152.2188042356961
Iteration: 31, Func. Count: 411, Neg. LLF: 152.21873093908417
Iteration: 32, Func. Count: 424, Neg. LLF: 152.21872328141464
Iteration: 33, Func. Count: 436, Neg. LLF: 152.2187233960553
Optimization terminated successfully (Exit mode 0)
Current function value: 152.21872328141464
Iterations: 34
Function evaluations: 436
Gradient evaluations: 33
Iteration: 1, Func. Count: 15, Neg. LLF: 164.6992950202057
Iteration: 2, Func. Count: 30, Neg. LLF: 162.72314090771985
Iteration: 3, Func. Count: 46, Neg. LLF: 152.13047700548236
Iteration: 4, Func. Count: 60, Neg. LLF: 151.96048980744962
Iteration: 5, Func. Count: 74, Neg. LLF: 151.8391896743155
Iteration: 6, Func. Count: 88, Neg. LLF: 151.82451972424863
Iteration: 7, Func. Count: 103, Neg. LLF: 152.65609273336582
Iteration: 8, Func. Count: 118, Neg. LLF: 151.82604098989506
Iteration: 9, Func. Count: 133, Neg. LLF: 151.68509180670958
Iteration: 10, Func. Count: 147, Neg. LLF: 151.54591618935913
Iteration: 11, Func. Count: 161, Neg. LLF: 151.53780756336008
Iteration: 12, Func. Count: 175, Neg. LLF: 151.5352026066354
Iteration: 13, Func. Count: 189, Neg. LLF: 151.53419579149838
Iteration: 14, Func. Count: 203, Neg. LLF: 151.5333290341607
Iteration: 15, Func. Count: 217, Neg. LLF: 151.53199025631628
Iteration: 16, Func. Count: 231, Neg. LLF: 151.52992804032488
Iteration: 17, Func. Count: 245, Neg. LLF: 151.52752327096175
Iteration: 18, Func. Count: 259, Neg. LLF: 151.52647983113442
Iteration: 19, Func. Count: 273, Neg. LLF: 151.526413603106
Iteration: 20, Func. Count: 287, Neg. LLF: 151.526410192387
Iteration: 21, Func. Count: 300, Neg. LLF: 151.52641018700672
Optimization terminated successfully (Exit mode 0)
Current function value: 151.526410192387
Iterations: 21
Function evaluations: 300
Gradient evaluations: 21
Iteration: 1, Func. Count: 12, Neg. LLF: 156.31001070662444
Iteration: 2, Func. Count: 24, Neg. LLF: 153.8114922018558
Iteration: 3, Func. Count: 35, Neg. LLF: 154.46680807225752
Iteration: 4, Func. Count: 47, Neg. LLF: 152.79553527344012
Iteration: 5, Func. Count: 58, Neg. LLF: 152.52010218517142
Iteration: 6, Func. Count: 69, Neg. LLF: 152.4249327036075
Iteration: 7, Func. Count: 80, Neg. LLF: 152.38100673760934
Iteration: 8, Func. Count: 91, Neg. LLF: 152.11662983516302
Iteration: 9, Func. Count: 102, Neg. LLF: 151.8739655289797
Iteration: 10, Func. Count: 113, Neg. LLF: 151.80900970044664
Iteration: 11, Func. Count: 124, Neg. LLF: 151.79637062202707
Iteration: 12, Func. Count: 135, Neg. LLF: 151.79623102507597
Iteration: 13, Func. Count: 146, Neg. LLF: 151.79622323354118
Iteration: 14, Func. Count: 157, Neg. LLF: 151.79622195296133
Iteration: 15, Func. Count: 167, Neg. LLF: 151.79622173645063
Optimization terminated successfully (Exit mode 0)
Current function value: 151.79622195296133
Iterations: 15
Function evaluations: 167
Gradient evaluations: 15
Iteration: 1, Func. Count: 13, Neg. LLF: 404.7182234317641
Iteration: 2, Func. Count: 27, Neg. LLF: 170.0857657791449
Iteration: 3, Func. Count: 41, Neg. LLF: 153.45540946227632
Iteration: 4, Func. Count: 53, Neg. LLF: 153.45644431765325
Iteration: 5, Func. Count: 66, Neg. LLF: 153.44781980062734
Iteration: 6, Func. Count: 78, Neg. LLF: 153.44350526273203
Iteration: 7, Func. Count: 90, Neg. LLF: 153.44248991501885
Iteration: 8, Func. Count: 102, Neg. LLF: 153.44238392913704
Iteration: 9, Func. Count: 114, Neg. LLF: 153.44238174746957
Iteration: 10, Func. Count: 125, Neg. LLF: 153.4423817477074
Optimization terminated successfully (Exit mode 0)
Current function value: 153.44238174746957
Iterations: 10
Function evaluations: 125
Gradient evaluations: 10
Iteration: 1, Func. Count: 14, Neg. LLF: 156.87149605201304
Iteration: 2, Func. Count: 29, Neg. LLF: 166.92836667507987
Iteration: 3, Func. Count: 43, Neg. LLF: 153.00803676871868
Iteration: 4, Func. Count: 56, Neg. LLF: 152.85673640880202
Iteration: 5, Func. Count: 69, Neg. LLF: 152.827092525013
Iteration: 6, Func. Count: 82, Neg. LLF: 152.81138977404763
Iteration: 7, Func. Count: 95, Neg. LLF: 152.80995566724698
Iteration: 8, Func. Count: 108, Neg. LLF: 152.8089987858461
Iteration: 9, Func. Count: 121, Neg. LLF: 152.8063828392084
Iteration: 10, Func. Count: 134, Neg. LLF: 152.80194689372317
Iteration: 11, Func. Count: 147, Neg. LLF: 152.7932317671345
Iteration: 12, Func. Count: 160, Neg. LLF: 152.78296276205185
Iteration: 13, Func. Count: 173, Neg. LLF: 152.78019293580775
Iteration: 14, Func. Count: 186, Neg. LLF: 152.7797269970311
Iteration: 15, Func. Count: 199, Neg. LLF: 152.77972150300187
Iteration: 16, Func. Count: 211, Neg. LLF: 152.77972150305945
Optimization terminated successfully (Exit mode 0)
Current function value: 152.77972150300187
Iterations: 16
Function evaluations: 211
Gradient evaluations: 16
Iteration: 1, Func. Count: 15, Neg. LLF: 158.2369416151226
Iteration: 2, Func. Count: 31, Neg. LLF: 184.03830919691134
Iteration: 3, Func. Count: 47, Neg. LLF: 153.76928832097812
Iteration: 4, Func. Count: 62, Neg. LLF: 152.87020342568937
Iteration: 5, Func. Count: 76, Neg. LLF: 152.83182347908817
Iteration: 6, Func. Count: 90, Neg. LLF: 152.82526814971567
Iteration: 7, Func. Count: 104, Neg. LLF: 152.81934482163442
Iteration: 8, Func. Count: 118, Neg. LLF: 152.81267857239712
Iteration: 9, Func. Count: 132, Neg. LLF: 152.81072462382417
Iteration: 10, Func. Count: 146, Neg. LLF: 152.8093949584305
Iteration: 11, Func. Count: 160, Neg. LLF: 152.80782294439942
Iteration: 12, Func. Count: 174, Neg. LLF: 152.80304723332824
Iteration: 13, Func. Count: 188, Neg. LLF: 152.7947489855748
Iteration: 14, Func. Count: 202, Neg. LLF: 152.78568082221207
Iteration: 15, Func. Count: 216, Neg. LLF: 152.7812120564172
Iteration: 16, Func. Count: 230, Neg. LLF: 152.77994363631473
Iteration: 17, Func. Count: 244, Neg. LLF: 152.77985296124078
Iteration: 18, Func. Count: 258, Neg. LLF: 152.77972222438075
Iteration: 19, Func. Count: 272, Neg. LLF: 152.77972149598452
Optimization terminated successfully (Exit mode 0)
Current function value: 152.77972149598452
Iterations: 19
Function evaluations: 272
Gradient evaluations: 19
Iteration: 1, Func. Count: 16, Neg. LLF: 161.08311933023464
Iteration: 2, Func. Count: 32, Neg. LLF: 156.47883956471793
Iteration: 3, Func. Count: 49, Neg. LLF: 152.82132315486035
Iteration: 4, Func. Count: 64, Neg. LLF: 154.02659318886344
Iteration: 5, Func. Count: 80, Neg. LLF: 152.66809662585064
Iteration: 6, Func. Count: 96, Neg. LLF: 152.35009601584724
Iteration: 7, Func. Count: 111, Neg. LLF: 151.85413935836937
Iteration: 8, Func. Count: 126, Neg. LLF: 151.80851907685167
Iteration: 9, Func. Count: 141, Neg. LLF: 151.63362180042955
Iteration: 10, Func. Count: 156, Neg. LLF: 151.59440026309846
Iteration: 11, Func. Count: 171, Neg. LLF: 151.6205842457848
Iteration: 12, Func. Count: 187, Neg. LLF: 151.5432847873389
Iteration: 13, Func. Count: 202, Neg. LLF: 151.52820106362304
Iteration: 14, Func. Count: 217, Neg. LLF: 151.52724357698233
Iteration: 15, Func. Count: 232, Neg. LLF: 151.5268387204858
Iteration: 16, Func. Count: 247, Neg. LLF: 151.52658256289635
Iteration: 17, Func. Count: 262, Neg. LLF: 151.5265172051485
Iteration: 18, Func. Count: 277, Neg. LLF: 151.52650476545298
Iteration: 19, Func. Count: 292, Neg. LLF: 151.52649969862009
Iteration: 20, Func. Count: 307, Neg. LLF: 151.52648171130036
Iteration: 21, Func. Count: 322, Neg. LLF: 151.52645545121507
Iteration: 22, Func. Count: 337, Neg. LLF: 151.5264259409009
Iteration: 23, Func. Count: 352, Neg. LLF: 151.52641567564942
Iteration: 24, Func. Count: 367, Neg. LLF: 151.52641045333374
Iteration: 25, Func. Count: 382, Neg. LLF: 151.52644973814708
Optimization terminated successfully (Exit mode 0)
Current function value: 151.5264103839646
Iterations: 26
Function evaluations: 384
Gradient evaluations: 25
Iteration: 1, Func. Count: 6, Neg. LLF: 152.83079569826526
Iteration: 2, Func. Count: 11, Neg. LLF: 153.40457009597662
Iteration: 3, Func. Count: 17, Neg. LLF: 152.64657346209944
Iteration: 4, Func. Count: 22, Neg. LLF: 152.29231996412065
Iteration: 5, Func. Count: 27, Neg. LLF: 152.11063123548934
Iteration: 6, Func. Count: 32, Neg. LLF: 151.9322190372703
Iteration: 7, Func. Count: 37, Neg. LLF: 151.92175325715743
Iteration: 8, Func. Count: 42, Neg. LLF: 151.92100794194565
Iteration: 9, Func. Count: 47, Neg. LLF: 151.92100322265026
Iteration: 10, Func. Count: 51, Neg. LLF: 151.9210032641345
Optimization terminated successfully (Exit mode 0)
Current function value: 151.92100322265026
Iterations: 10
Function evaluations: 51
Gradient evaluations: 10
Iteration: 1, Func. Count: 5, Neg. LLF: 158.4579107854388
Iteration: 2, Func. Count: 10, Neg. LLF: 156.2343943243979
Iteration: 3, Func. Count: 14, Neg. LLF: 154.54064849082025
Iteration: 4, Func. Count: 18, Neg. LLF: 152.63082031243658
Iteration: 5, Func. Count: 22, Neg. LLF: 152.2833837300137
Iteration: 6, Func. Count: 26, Neg. LLF: 152.14461388040425
Iteration: 7, Func. Count: 30, Neg. LLF: 152.08798605133742
Iteration: 8, Func. Count: 34, Neg. LLF: 152.03990275236168
Iteration: 9, Func. Count: 38, Neg. LLF: 152.02331904070118
Iteration: 10, Func. Count: 42, Neg. LLF: 152.02063754320582
Iteration: 11, Func. Count: 46, Neg. LLF: 152.02040267809087
Iteration: 12, Func. Count: 50, Neg. LLF: 152.0203896399001
Iteration: 13, Func. Count: 53, Neg. LLF: 152.02038972382027
Optimization terminated successfully (Exit mode 0)
Current function value: 152.0203896399001
Iterations: 13
Function evaluations: 53
Gradient evaluations: 13
Iteration: 1, Func. Count: 6, Neg. LLF: 184.8575099806516
Iteration: 2, Func. Count: 13, Neg. LLF: 151.14049412196061
Iteration: 3, Func. Count: 18, Neg. LLF: 151.09422417538084
Iteration: 4, Func. Count: 23, Neg. LLF: 150.79324930317097
Iteration: 5, Func. Count: 28, Neg. LLF: 150.87845606218667
Iteration: 6, Func. Count: 34, Neg. LLF: 150.7401408985048
Iteration: 7, Func. Count: 40, Neg. LLF: 150.7148982246209
Iteration: 8, Func. Count: 45, Neg. LLF: 150.71457611275483
Iteration: 9, Func. Count: 50, Neg. LLF: 150.71457191731443
Iteration: 10, Func. Count: 54, Neg. LLF: 150.7145719173988
Optimization terminated successfully (Exit mode 0)
Current function value: 150.71457191731443
Iterations: 10
Function evaluations: 54
Gradient evaluations: 10
Iteration: 1, Func. Count: 7, Neg. LLF: 185.44166026402957
Iteration: 2, Func. Count: 14, Neg. LLF: 150.81845350020632
Iteration: 3, Func. Count: 20, Neg. LLF: 150.7394609994121
Iteration: 4, Func. Count: 26, Neg. LLF: 150.72123435585397
Iteration: 5, Func. Count: 32, Neg. LLF: 150.7024559423476
Iteration: 6, Func. Count: 38, Neg. LLF: 150.68808817575896
Iteration: 7, Func. Count: 44, Neg. LLF: 150.6709042708794
Iteration: 8, Func. Count: 50, Neg. LLF: 150.65311287811195
Iteration: 9, Func. Count: 56, Neg. LLF: 150.6416943374055
Iteration: 10, Func. Count: 62, Neg. LLF: 150.63913778002322
Iteration: 11, Func. Count: 68, Neg. LLF: 150.63873958433996
Iteration: 12, Func. Count: 74, Neg. LLF: 150.6387309451465
Iteration: 13, Func. Count: 79, Neg. LLF: 150.6387309451376
Optimization terminated successfully (Exit mode 0)
Current function value: 150.6387309451465
Iterations: 13
Function evaluations: 79
Gradient evaluations: 13
Iteration: 1, Func. Count: 8, Neg. LLF: 185.5707755118648
Iteration: 2, Func. Count: 16, Neg. LLF: 150.85081987581185
Iteration: 3, Func. Count: 23, Neg. LLF: 150.82035702121712
Iteration: 4, Func. Count: 30, Neg. LLF: 150.72657201030623
Iteration: 5, Func. Count: 37, Neg. LLF: 150.7081713927879
Iteration: 6, Func. Count: 44, Neg. LLF: 150.68771332021993
Iteration: 7, Func. Count: 51, Neg. LLF: 150.67900962468497
Iteration: 8, Func. Count: 58, Neg. LLF: 150.64858288799084
Iteration: 9, Func. Count: 65, Neg. LLF: 150.63945042239553
Iteration: 10, Func. Count: 72, Neg. LLF: 150.63874593806509
Iteration: 11, Func. Count: 79, Neg. LLF: 150.6387311628555
Iteration: 12, Func. Count: 85, Neg. LLF: 150.63873117776808
Optimization terminated successfully (Exit mode 0)
Current function value: 150.6387311628555
Iterations: 12
Function evaluations: 85
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 185.60385639875307
Iteration: 2, Func. Count: 18, Neg. LLF: 150.86588694655794
Iteration: 3, Func. Count: 26, Neg. LLF: 150.8277798943514
Iteration: 4, Func. Count: 34, Neg. LLF: 150.74101565953868
Iteration: 5, Func. Count: 42, Neg. LLF: 150.71019956150644
Iteration: 6, Func. Count: 50, Neg. LLF: 150.67383015915024
Iteration: 7, Func. Count: 58, Neg. LLF: 150.6659806560815
Iteration: 8, Func. Count: 66, Neg. LLF: 150.65518208845313
Iteration: 9, Func. Count: 74, Neg. LLF: 150.64091716884923
Iteration: 10, Func. Count: 82, Neg. LLF: 150.63878477996667
Iteration: 11, Func. Count: 90, Neg. LLF: 150.6387379110635
Iteration: 12, Func. Count: 98, Neg. LLF: 150.63873272334598
Iteration: 13, Func. Count: 106, Neg. LLF: 150.63873079128916
Iteration: 14, Func. Count: 113, Neg. LLF: 150.63873079813777
Optimization terminated successfully (Exit mode 0)
Current function value: 150.63873079128916
Iterations: 14
Function evaluations: 113
Gradient evaluations: 14
Iteration: 1, Func. Count: 6, Neg. LLF: 151.5743046388052
Iteration: 2, Func. Count: 11, Neg. LLF: 156.95719480149242
Iteration: 3, Func. Count: 17, Neg. LLF: 150.75308594658102
Iteration: 4, Func. Count: 22, Neg. LLF: 150.6944281963996
Iteration: 5, Func. Count: 27, Neg. LLF: 150.67305698925324
Iteration: 6, Func. Count: 32, Neg. LLF: 150.66676204375275
Iteration: 7, Func. Count: 37, Neg. LLF: 150.6645706512455
Iteration: 8, Func. Count: 42, Neg. LLF: 150.66258791830768
Iteration: 9, Func. Count: 47, Neg. LLF: 150.66149677979908
Iteration: 10, Func. Count: 52, Neg. LLF: 150.66118163034687
Iteration: 11, Func. Count: 57, Neg. LLF: 150.66115159153534
Iteration: 12, Func. Count: 62, Neg. LLF: 150.66115072668813
Optimization terminated successfully (Exit mode 0)
Current function value: 150.66115072668813
Iterations: 12
Function evaluations: 62
Gradient evaluations: 12
Iteration: 1, Func. Count: 7, Neg. LLF: 184.88280092915517
Iteration: 2, Func. Count: 15, Neg. LLF: 151.14083914913203
Iteration: 3, Func. Count: 21, Neg. LLF: 154.01824642008108
Iteration: 4, Func. Count: 28, Neg. LLF: 151.34679421867034
Iteration: 5, Func. Count: 35, Neg. LLF: 155.14105935809025
Iteration: 6, Func. Count: 42, Neg. LLF: 154.93197495713193
Iteration: 7, Func. Count: 49, Neg. LLF: 150.9859733863014
Iteration: 8, Func. Count: 56, Neg. LLF: 150.7194614606598
Iteration: 9, Func. Count: 62, Neg. LLF: 150.71528004076703
Iteration: 10, Func. Count: 68, Neg. LLF: 150.7148739328633
Iteration: 11, Func. Count: 74, Neg. LLF: 150.71460676903928
Iteration: 12, Func. Count: 80, Neg. LLF: 150.71457319709944
Iteration: 13, Func. Count: 86, Neg. LLF: 150.71457189571254
Iteration: 14, Func. Count: 91, Neg. LLF: 150.7145718956786
Optimization terminated successfully (Exit mode 0)
Current function value: 150.71457189571254
Iterations: 14
Function evaluations: 91
Gradient evaluations: 14
Iteration: 1, Func. Count: 8, Neg. LLF: 185.51433879030955
Iteration: 2, Func. Count: 16, Neg. LLF: 150.7721370516651
Iteration: 3, Func. Count: 23, Neg. LLF: 150.7312096320155
Iteration: 4, Func. Count: 30, Neg. LLF: 150.71006575807226
Iteration: 5, Func. Count: 37, Neg. LLF: 150.63904497450403
Iteration: 6, Func. Count: 44, Neg. LLF: 150.6339404265474
Iteration: 7, Func. Count: 51, Neg. LLF: 150.630791037922
Iteration: 8, Func. Count: 58, Neg. LLF: 150.62885184573278
Iteration: 9, Func. Count: 65, Neg. LLF: 150.62741115174805
Iteration: 10, Func. Count: 72, Neg. LLF: 150.62602462107276
Iteration: 11, Func. Count: 79, Neg. LLF: 150.62556762742216
Iteration: 12, Func. Count: 86, Neg. LLF: 150.625502014066
Iteration: 13, Func. Count: 93, Neg. LLF: 150.62549838695634
Iteration: 14, Func. Count: 100, Neg. LLF: 150.62549682262306
Iteration: 15, Func. Count: 106, Neg. LLF: 150.6254968226278
Optimization terminated successfully (Exit mode 0)
Current function value: 150.62549682262306
Iterations: 15
Function evaluations: 106
Gradient evaluations: 15
Iteration: 1, Func. Count: 9, Neg. LLF: 185.63924904305105
Iteration: 2, Func. Count: 18, Neg. LLF: 150.8453367780388
Iteration: 3, Func. Count: 26, Neg. LLF: 150.81036376917143
Iteration: 4, Func. Count: 34, Neg. LLF: 150.7180766473263
Iteration: 5, Func. Count: 42, Neg. LLF: 150.76867850273277
Iteration: 6, Func. Count: 51, Neg. LLF: 150.68322609646498
Iteration: 7, Func. Count: 59, Neg. LLF: 150.67485494383044
Iteration: 8, Func. Count: 67, Neg. LLF: 150.66605577576615
Iteration: 9, Func. Count: 75, Neg. LLF: 150.64335782609487
Iteration: 10, Func. Count: 83, Neg. LLF: 150.63158149851367
Iteration: 11, Func. Count: 91, Neg. LLF: 150.6262106678468
Iteration: 12, Func. Count: 99, Neg. LLF: 150.62550094238273
Iteration: 13, Func. Count: 107, Neg. LLF: 150.6254968653969
Iteration: 14, Func. Count: 114, Neg. LLF: 150.62549690530432
Optimization terminated successfully (Exit mode 0)
Current function value: 150.6254968653969
Iterations: 14
Function evaluations: 114
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 185.66963138322674
Iteration: 2, Func. Count: 20, Neg. LLF: 150.85720247515675
Iteration: 3, Func. Count: 29, Neg. LLF: 150.7981733352616
Iteration: 4, Func. Count: 38, Neg. LLF: 150.7191938936832
Iteration: 5, Func. Count: 47, Neg. LLF: 150.7020339435085
Iteration: 6, Func. Count: 56, Neg. LLF: 150.65413983336924
Iteration: 7, Func. Count: 65, Neg. LLF: 150.6460670485635
Iteration: 8, Func. Count: 74, Neg. LLF: 150.63856337646317
Iteration: 9, Func. Count: 83, Neg. LLF: 150.63386107562533
Iteration: 10, Func. Count: 92, Neg. LLF: 150.62658222884758
Iteration: 11, Func. Count: 101, Neg. LLF: 150.62556392940016
Iteration: 12, Func. Count: 110, Neg. LLF: 150.62550038544714
Iteration: 13, Func. Count: 119, Neg. LLF: 150.62549683828965
Iteration: 14, Func. Count: 128, Neg. LLF: 150.63012950407588
Optimization terminated successfully (Exit mode 0)
Current function value: 150.625496818309
Iterations: 15
Function evaluations: 131
Gradient evaluations: 14
Iteration: 1, Func. Count: 7, Neg. LLF: 151.18348353489637
Iteration: 2, Func. Count: 13, Neg. LLF: 155.44989445343649
Iteration: 3, Func. Count: 20, Neg. LLF: 150.7484681842143
Iteration: 4, Func. Count: 26, Neg. LLF: 150.68585870598133
Iteration: 5, Func. Count: 32, Neg. LLF: 150.6753035357385
Iteration: 6, Func. Count: 38, Neg. LLF: 150.67121856825958
Iteration: 7, Func. Count: 44, Neg. LLF: 150.66743299315786
Iteration: 8, Func. Count: 50, Neg. LLF: 150.66346647072254
Iteration: 9, Func. Count: 56, Neg. LLF: 150.66164240505253
Iteration: 10, Func. Count: 62, Neg. LLF: 150.66117090065168
Iteration: 11, Func. Count: 68, Neg. LLF: 150.66115093782994
Iteration: 12, Func. Count: 73, Neg. LLF: 150.66115111329506
Optimization terminated successfully (Exit mode 0)
Current function value: 150.66115093782994
Iterations: 12
Function evaluations: 73
Gradient evaluations: 12
Iteration: 1, Func. Count: 8, Neg. LLF: 184.81620821093773
Iteration: 2, Func. Count: 17, Neg. LLF: 151.14075785411245
Iteration: 3, Func. Count: 24, Neg. LLF: 151.11981362928435
Iteration: 4, Func. Count: 31, Neg. LLF: 150.95974956055696
Iteration: 5, Func. Count: 38, Neg. LLF: 163.62447149751563
Iteration: 6, Func. Count: 46, Neg. LLF: 151.60751771878856
Iteration: 7, Func. Count: 54, Neg. LLF: 150.91496259300408
Iteration: 8, Func. Count: 62, Neg. LLF: 150.71836198399853
Iteration: 9, Func. Count: 69, Neg. LLF: 150.7252984875636
Iteration: 10, Func. Count: 77, Neg. LLF: 150.7146260959456
Iteration: 11, Func. Count: 84, Neg. LLF: 150.71457193298625
Iteration: 12, Func. Count: 90, Neg. LLF: 150.71457193303908
Optimization terminated successfully (Exit mode 0)
Current function value: 150.71457193298625
Iterations: 12
Function evaluations: 90
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 185.46076725128043
Iteration: 2, Func. Count: 18, Neg. LLF: 150.77063826922614
Iteration: 3, Func. Count: 26, Neg. LLF: 150.73252375097618
Iteration: 4, Func. Count: 34, Neg. LLF: 150.71377611795023
Iteration: 5, Func. Count: 42, Neg. LLF: 150.64905706744474
Iteration: 6, Func. Count: 50, Neg. LLF: 150.6401998686359
Iteration: 7, Func. Count: 58, Neg. LLF: 150.6353071788265
Iteration: 8, Func. Count: 66, Neg. LLF: 150.63164055850726
Iteration: 9, Func. Count: 74, Neg. LLF: 150.62765302943376
Iteration: 10, Func. Count: 82, Neg. LLF: 150.6258214690905
Iteration: 11, Func. Count: 90, Neg. LLF: 150.6255072571194
Iteration: 12, Func. Count: 98, Neg. LLF: 150.62549702099795
Iteration: 13, Func. Count: 105, Neg. LLF: 150.62549702104442
Optimization terminated successfully (Exit mode 0)
Current function value: 150.62549702099795
Iterations: 13
Function evaluations: 105
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 185.58962252069506
Iteration: 2, Func. Count: 20, Neg. LLF: 150.844043990242
Iteration: 3, Func. Count: 29, Neg. LLF: 150.8080056101566
Iteration: 4, Func. Count: 38, Neg. LLF: 150.7171806275489
Iteration: 5, Func. Count: 47, Neg. LLF: 150.83179435118043
Iteration: 6, Func. Count: 57, Neg. LLF: 150.69368935050989
Iteration: 7, Func. Count: 66, Neg. LLF: 150.68015019682983
Iteration: 8, Func. Count: 75, Neg. LLF: 150.67166763717796
Iteration: 9, Func. Count: 84, Neg. LLF: 150.6518377852569
Iteration: 10, Func. Count: 93, Neg. LLF: 150.63737287077024
Iteration: 11, Func. Count: 102, Neg. LLF: 150.626425418236
Iteration: 12, Func. Count: 111, Neg. LLF: 150.62551753108445
Iteration: 13, Func. Count: 120, Neg. LLF: 150.62549711860984
Iteration: 14, Func. Count: 128, Neg. LLF: 150.62549715874678
Optimization terminated successfully (Exit mode 0)
Current function value: 150.62549711860984
Iterations: 14
Function evaluations: 128
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 185.6246857629083
Iteration: 2, Func. Count: 22, Neg. LLF: 150.8584915154978
Iteration: 3, Func. Count: 32, Neg. LLF: 150.80324580141573
Iteration: 4, Func. Count: 42, Neg. LLF: 150.7223282622274
Iteration: 5, Func. Count: 52, Neg. LLF: 150.6856277824013
Iteration: 6, Func. Count: 62, Neg. LLF: 150.6436635820389
Iteration: 7, Func. Count: 72, Neg. LLF: 150.63953542366437
Iteration: 8, Func. Count: 82, Neg. LLF: 150.63468221832065
Iteration: 9, Func. Count: 92, Neg. LLF: 150.62607327372356
Iteration: 10, Func. Count: 102, Neg. LLF: 150.62552774677354
Iteration: 11, Func. Count: 112, Neg. LLF: 150.62550211704857
Iteration: 12, Func. Count: 122, Neg. LLF: 150.62549683932616
Iteration: 13, Func. Count: 131, Neg. LLF: 150.62549684450272
Optimization terminated successfully (Exit mode 0)
Current function value: 150.62549683932616
Iterations: 13
Function evaluations: 131
Gradient evaluations: 13
Iteration: 1, Func. Count: 8, Neg. LLF: 151.29276573494485
Iteration: 2, Func. Count: 15, Neg. LLF: 156.4093213744766
Iteration: 3, Func. Count: 23, Neg. LLF: 150.7520037418465
Iteration: 4, Func. Count: 30, Neg. LLF: 150.6920182131598
Iteration: 5, Func. Count: 37, Neg. LLF: 150.67849131832875
Iteration: 6, Func. Count: 44, Neg. LLF: 150.67366900959212
Iteration: 7, Func. Count: 51, Neg. LLF: 150.6698185138661
Iteration: 8, Func. Count: 58, Neg. LLF: 150.66493294329322
Iteration: 9, Func. Count: 65, Neg. LLF: 150.66216235349626
Iteration: 10, Func. Count: 72, Neg. LLF: 150.66123789203758
Iteration: 11, Func. Count: 79, Neg. LLF: 150.66115166918507
Iteration: 12, Func. Count: 86, Neg. LLF: 150.66115073993132
Optimization terminated successfully (Exit mode 0)
Current function value: 150.66115073993132
Iterations: 12
Function evaluations: 86
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 184.8201239162718
Iteration: 2, Func. Count: 19, Neg. LLF: 151.14037045270769
Iteration: 3, Func. Count: 27, Neg. LLF: 151.11912813858225
Iteration: 4, Func. Count: 35, Neg. LLF: 150.89074122556454
Iteration: 5, Func. Count: 43, Neg. LLF: 150.74196196546202
Iteration: 6, Func. Count: 51, Neg. LLF: 150.75781737929327
Iteration: 7, Func. Count: 60, Neg. LLF: 150.73190162603754
Iteration: 8, Func. Count: 69, Neg. LLF: 150.71477796606135
Iteration: 9, Func. Count: 77, Neg. LLF: 150.71457238808404
Iteration: 10, Func. Count: 85, Neg. LLF: 150.71457189038006
Optimization terminated successfully (Exit mode 0)
Current function value: 150.71457189038006
Iterations: 10
Function evaluations: 85
Gradient evaluations: 10
Iteration: 1, Func. Count: 10, Neg. LLF: 185.47545207095308
Iteration: 2, Func. Count: 20, Neg. LLF: 150.75850133805312
Iteration: 3, Func. Count: 29, Neg. LLF: 150.73829263134982
Iteration: 4, Func. Count: 38, Neg. LLF: 150.71742925667414
Iteration: 5, Func. Count: 47, Neg. LLF: 150.68688097077
Iteration: 6, Func. Count: 56, Neg. LLF: 150.66160279084096
Iteration: 7, Func. Count: 65, Neg. LLF: 150.64033602893446
Iteration: 8, Func. Count: 74, Neg. LLF: 150.6372763499308
Iteration: 9, Func. Count: 83, Neg. LLF: 150.63172032221857
Iteration: 10, Func. Count: 92, Neg. LLF: 150.62714634550827
Iteration: 11, Func. Count: 101, Neg. LLF: 150.62566858119953
Iteration: 12, Func. Count: 110, Neg. LLF: 150.62551293910502
Iteration: 13, Func. Count: 119, Neg. LLF: 150.62549697174
Iteration: 14, Func. Count: 127, Neg. LLF: 150.62549697173915
Optimization terminated successfully (Exit mode 0)
Current function value: 150.62549697174
Iterations: 14
Function evaluations: 127
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 185.60019111529286
Iteration: 2, Func. Count: 22, Neg. LLF: 150.84428439789176
Iteration: 3, Func. Count: 32, Neg. LLF: 150.80844290022668
Iteration: 4, Func. Count: 42, Neg. LLF: 150.71715334158813
Iteration: 5, Func. Count: 52, Neg. LLF: 151.06709402748854
Iteration: 6, Func. Count: 63, Neg. LLF: 150.69024681549064
Iteration: 7, Func. Count: 73, Neg. LLF: 150.6784261046129
Iteration: 8, Func. Count: 83, Neg. LLF: 150.67072617856095
Iteration: 9, Func. Count: 93, Neg. LLF: 150.6472859209644
Iteration: 10, Func. Count: 103, Neg. LLF: 150.63427680318867
Iteration: 11, Func. Count: 113, Neg. LLF: 150.6260715583097
Iteration: 12, Func. Count: 123, Neg. LLF: 150.62550635903835
Iteration: 13, Func. Count: 133, Neg. LLF: 151.62831181174397
Iteration: 14, Func. Count: 146, Neg. LLF: 150.6289598584982
Optimization terminated successfully (Exit mode 0)
Current function value: 150.62550022596756
Iterations: 15
Function evaluations: 148
Gradient evaluations: 14
Iteration: 1, Func. Count: 12, Neg. LLF: 185.63604489016
Iteration: 2, Func. Count: 24, Neg. LLF: 150.8570149673909
Iteration: 3, Func. Count: 35, Neg. LLF: 150.79417085907784
Iteration: 4, Func. Count: 46, Neg. LLF: 150.73871711959643
Iteration: 5, Func. Count: 57, Neg. LLF: 150.69036978030627
Iteration: 6, Func. Count: 68, Neg. LLF: 150.68829015956408
Iteration: 7, Func. Count: 80, Neg. LLF: 150.643436157107
Iteration: 8, Func. Count: 91, Neg. LLF: 150.63692517469318
Iteration: 9, Func. Count: 102, Neg. LLF: 150.6297184795999
Iteration: 10, Func. Count: 113, Neg. LLF: 150.6268097409937
Iteration: 11, Func. Count: 124, Neg. LLF: 150.6258002632725
Iteration: 12, Func. Count: 135, Neg. LLF: 150.62553237783854
Iteration: 13, Func. Count: 146, Neg. LLF: 150.62550045975408
Iteration: 14, Func. Count: 157, Neg. LLF: 150.62549687297087
Iteration: 15, Func. Count: 168, Neg. LLF: 150.62710043517694
Optimization terminated successfully (Exit mode 0)
Current function value: 150.6254968649423
Iterations: 16
Function evaluations: 171
Gradient evaluations: 15
Iteration: 1, Func. Count: 5, Neg. LLF: 152.55734369155167
Iteration: 2, Func. Count: 9, Neg. LLF: 153.6773117877898
Iteration: 3, Func. Count: 14, Neg. LLF: 152.30156191098794
Iteration: 4, Func. Count: 18, Neg. LLF: 152.27386541916576
Iteration: 5, Func. Count: 22, Neg. LLF: 152.26864062738997
Iteration: 6, Func. Count: 26, Neg. LLF: 152.26086822268496
Iteration: 7, Func. Count: 30, Neg. LLF: 152.24431233558315
Iteration: 8, Func. Count: 34, Neg. LLF: 152.23285551711044
Iteration: 9, Func. Count: 38, Neg. LLF: 152.2272486348512
Iteration: 10, Func. Count: 42, Neg. LLF: 152.22659329161513
Iteration: 11, Func. Count: 46, Neg. LLF: 152.22647441824788
Iteration: 12, Func. Count: 50, Neg. LLF: 152.22643825855613
Iteration: 13, Func. Count: 54, Neg. LLF: 152.22643601929744
Iteration: 14, Func. Count: 57, Neg. LLF: 152.226436019291
Optimization terminated successfully (Exit mode 0)
Current function value: 152.22643601929744
Iterations: 14
Function evaluations: 57
Gradient evaluations: 14
Iteration: 1, Func. Count: 6, Neg. LLF: 184.7451594846612
Iteration: 2, Func. Count: 13, Neg. LLF: 151.14225834265764
Iteration: 3, Func. Count: 18, Neg. LLF: 151.0747430733919
Iteration: 4, Func. Count: 23, Neg. LLF: 150.75568289027004
Iteration: 5, Func. Count: 28, Neg. LLF: 150.84675852181056
Iteration: 6, Func. Count: 34, Neg. LLF: 150.7198976434383
Iteration: 7, Func. Count: 39, Neg. LLF: 150.71600706903018
Iteration: 8, Func. Count: 44, Neg. LLF: 150.71463984884497
Iteration: 9, Func. Count: 49, Neg. LLF: 150.7145729600084
Iteration: 10, Func. Count: 54, Neg. LLF: 150.71457192317695
Iteration: 11, Func. Count: 58, Neg. LLF: 150.71457192312423
Optimization terminated successfully (Exit mode 0)
Current function value: 150.71457192317695
Iterations: 11
Function evaluations: 58
Gradient evaluations: 11
Iteration: 1, Func. Count: 7, Neg. LLF: 185.3223815473027
Iteration: 2, Func. Count: 14, Neg. LLF: 150.8261853698495
Iteration: 3, Func. Count: 20, Neg. LLF: 150.7449919761455
Iteration: 4, Func. Count: 26, Neg. LLF: 150.72703082420378
Iteration: 5, Func. Count: 32, Neg. LLF: 150.66385930439372
Iteration: 6, Func. Count: 38, Neg. LLF: 150.65621556103844
Iteration: 7, Func. Count: 44, Neg. LLF: 150.64583358803284
Iteration: 8, Func. Count: 50, Neg. LLF: 150.64154704796795
Iteration: 9, Func. Count: 56, Neg. LLF: 150.63876658534585
Iteration: 10, Func. Count: 62, Neg. LLF: 150.63873286033362
Iteration: 11, Func. Count: 68, Neg. LLF: 150.63873097891135
Iteration: 12, Func. Count: 73, Neg. LLF: 150.63873097893836
Optimization terminated successfully (Exit mode 0)
Current function value: 150.63873097891135
Iterations: 12
Function evaluations: 73
Gradient evaluations: 12
Iteration: 1, Func. Count: 8, Neg. LLF: 185.46041772915913
Iteration: 2, Func. Count: 16, Neg. LLF: 150.850921125806
Iteration: 3, Func. Count: 23, Neg. LLF: 150.82131555739218
Iteration: 4, Func. Count: 30, Neg. LLF: 150.73211298315323
Iteration: 5, Func. Count: 37, Neg. LLF: 150.71163793175722
Iteration: 6, Func. Count: 44, Neg. LLF: 150.68904029822656
Iteration: 7, Func. Count: 51, Neg. LLF: 150.6780702162595
Iteration: 8, Func. Count: 58, Neg. LLF: 150.64591787931715
Iteration: 9, Func. Count: 65, Neg. LLF: 150.6388530775956
Iteration: 10, Func. Count: 72, Neg. LLF: 150.63873324388044
Iteration: 11, Func. Count: 79, Neg. LLF: 150.63873094216544
Iteration: 12, Func. Count: 85, Neg. LLF: 150.6387309570227
Optimization terminated successfully (Exit mode 0)
Current function value: 150.63873094216544
Iterations: 12
Function evaluations: 85
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 185.49445656518256
Iteration: 2, Func. Count: 18, Neg. LLF: 150.86357557446206
Iteration: 3, Func. Count: 26, Neg. LLF: 150.82280751706
Iteration: 4, Func. Count: 34, Neg. LLF: 150.73952737360946
Iteration: 5, Func. Count: 42, Neg. LLF: 150.7139938909855
Iteration: 6, Func. Count: 50, Neg. LLF: 150.68244704862332
Iteration: 7, Func. Count: 58, Neg. LLF: 150.67372390246484
Iteration: 8, Func. Count: 66, Neg. LLF: 150.6452514753531
Iteration: 9, Func. Count: 74, Neg. LLF: 150.63923746763328
Iteration: 10, Func. Count: 82, Neg. LLF: 150.6387409600717
Iteration: 11, Func. Count: 90, Neg. LLF: 150.63873465639972
Iteration: 12, Func. Count: 98, Neg. LLF: 150.63873132486376
Iteration: 13, Func. Count: 106, Neg. LLF: 150.63876487294868
Optimization terminated successfully (Exit mode 0)
Current function value: 150.63873132175524
Iterations: 14
Function evaluations: 108
Gradient evaluations: 13
Iteration: 1, Func. Count: 6, Neg. LLF: 153.03380367899243
Iteration: 2, Func. Count: 11, Neg. LLF: 154.070056148145
Iteration: 3, Func. Count: 17, Neg. LLF: 152.34338431316053
Iteration: 4, Func. Count: 23, Neg. LLF: 152.2769668565844
Iteration: 5, Func. Count: 28, Neg. LLF: 152.2589702429985
Iteration: 6, Func. Count: 33, Neg. LLF: 152.2482865289076
Iteration: 7, Func. Count: 38, Neg. LLF: 152.19255625851778
Iteration: 8, Func. Count: 43, Neg. LLF: 151.52849041938956
Iteration: 9, Func. Count: 48, Neg. LLF: 151.4289003733478
Iteration: 10, Func. Count: 53, Neg. LLF: 151.41201723061616
Iteration: 11, Func. Count: 58, Neg. LLF: 151.41151065452496
Iteration: 12, Func. Count: 63, Neg. LLF: 151.41139488793692
Iteration: 13, Func. Count: 68, Neg. LLF: 151.41136359388918
Iteration: 14, Func. Count: 73, Neg. LLF: 151.41135863092907
Iteration: 15, Func. Count: 77, Neg. LLF: 151.41135856325496
Optimization terminated successfully (Exit mode 0)
Current function value: 151.41135863092907
Iterations: 15
Function evaluations: 77
Gradient evaluations: 15
Iteration: 1, Func. Count: 7, Neg. LLF: 184.36357748172765
Iteration: 2, Func. Count: 15, Neg. LLF: 154.53302455941176
Iteration: 3, Func. Count: 22, Neg. LLF: 150.95837449214903
Iteration: 4, Func. Count: 28, Neg. LLF: 150.87019703686946
Iteration: 5, Func. Count: 34, Neg. LLF: 150.8657056297947
Iteration: 6, Func. Count: 40, Neg. LLF: 150.8568801968217
Iteration: 7, Func. Count: 46, Neg. LLF: 150.85551645657713
Iteration: 8, Func. Count: 52, Neg. LLF: 150.8553967550395
Iteration: 9, Func. Count: 58, Neg. LLF: 150.85536335352958
Iteration: 10, Func. Count: 64, Neg. LLF: 150.85521106024186
Iteration: 11, Func. Count: 70, Neg. LLF: 150.8549175679474
Iteration: 12, Func. Count: 76, Neg. LLF: 150.8537521309793
Iteration: 13, Func. Count: 82, Neg. LLF: 150.81410277531424
Iteration: 14, Func. Count: 88, Neg. LLF: 150.8530057687827
Iteration: 15, Func. Count: 96, Neg. LLF: 150.7231964611706
Iteration: 16, Func. Count: 102, Neg. LLF: 150.6813944125451
Iteration: 17, Func. Count: 108, Neg. LLF: 150.679753920153
Iteration: 18, Func. Count: 114, Neg. LLF: 150.67900550074
Iteration: 19, Func. Count: 120, Neg. LLF: 150.67896755224743
Iteration: 20, Func. Count: 127, Neg. LLF: 150.67872230582122
Iteration: 21, Func. Count: 133, Neg. LLF: 150.6787189592648
Iteration: 22, Func. Count: 138, Neg. LLF: 150.6787189592558
Optimization terminated successfully (Exit mode 0)
Current function value: 150.6787189592648
Iterations: 22
Function evaluations: 138
Gradient evaluations: 22
Iteration: 1, Func. Count: 8, Neg. LLF: 184.9078379893123
Iteration: 2, Func. Count: 16, Neg. LLF: 154.24419649867227
Iteration: 3, Func. Count: 24, Neg. LLF: 150.7888934240483
Iteration: 4, Func. Count: 31, Neg. LLF: 150.7877552818743
Iteration: 5, Func. Count: 39, Neg. LLF: 150.72716151650474
Iteration: 6, Func. Count: 46, Neg. LLF: 150.69444686825673
Iteration: 7, Func. Count: 53, Neg. LLF: 150.68182300167788
Iteration: 8, Func. Count: 60, Neg. LLF: 150.6474992461606
Iteration: 9, Func. Count: 67, Neg. LLF: 150.63034160175823
Iteration: 10, Func. Count: 74, Neg. LLF: 150.60028867529724
Iteration: 11, Func. Count: 81, Neg. LLF: 150.5776315067289
Iteration: 12, Func. Count: 88, Neg. LLF: 150.5606677052809
Iteration: 13, Func. Count: 95, Neg. LLF: 150.73543622322387
Iteration: 14, Func. Count: 103, Neg. LLF: 150.6326338303215
Iteration: 15, Func. Count: 111, Neg. LLF: 150.5395369981258
Iteration: 16, Func. Count: 118, Neg. LLF: 150.53855449368874
Iteration: 17, Func. Count: 125, Neg. LLF: 150.5379771528646
Iteration: 18, Func. Count: 132, Neg. LLF: 150.5378548417004
Iteration: 19, Func. Count: 139, Neg. LLF: 150.53785129148577
Iteration: 20, Func. Count: 146, Neg. LLF: 150.53785066992947
Optimization terminated successfully (Exit mode 0)
Current function value: 150.53785066992947
Iterations: 20
Function evaluations: 146
Gradient evaluations: 20
Iteration: 1, Func. Count: 9, Neg. LLF: 185.08410222795575
Iteration: 2, Func. Count: 18, Neg. LLF: 154.9343077482612
Iteration: 3, Func. Count: 28, Neg. LLF: 150.72170882679686
Iteration: 4, Func. Count: 36, Neg. LLF: 150.70821695707681
Iteration: 5, Func. Count: 44, Neg. LLF: 150.69024622495857
Iteration: 6, Func. Count: 52, Neg. LLF: 150.67314761517423
Iteration: 7, Func. Count: 60, Neg. LLF: 150.64949385352054
Iteration: 8, Func. Count: 68, Neg. LLF: 150.6040219880505
Iteration: 9, Func. Count: 76, Neg. LLF: 150.57875683562702
Iteration: 10, Func. Count: 84, Neg. LLF: 150.57641860845698
Iteration: 11, Func. Count: 92, Neg. LLF: 150.575976790658
Iteration: 12, Func. Count: 100, Neg. LLF: 150.574745630089
Iteration: 13, Func. Count: 108, Neg. LLF: 150.57458040477306
Iteration: 14, Func. Count: 116, Neg. LLF: 150.57450343851278
Iteration: 15, Func. Count: 124, Neg. LLF: 150.57450273255296
Optimization terminated successfully (Exit mode 0)
Current function value: 150.57450273255296
Iterations: 15
Function evaluations: 124
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 185.14502914286706
Iteration: 2, Func. Count: 20, Neg. LLF: 155.24650342041653
Iteration: 3, Func. Count: 31, Neg. LLF: 150.7107268878309
Iteration: 4, Func. Count: 40, Neg. LLF: 150.70016427781098
Iteration: 5, Func. Count: 49, Neg. LLF: 150.68380602150285
Iteration: 6, Func. Count: 58, Neg. LLF: 150.64896134230946
Iteration: 7, Func. Count: 67, Neg. LLF: 150.62185360143886
Iteration: 8, Func. Count: 76, Neg. LLF: 150.58225496314554
Iteration: 9, Func. Count: 85, Neg. LLF: 150.57716754392393
Iteration: 10, Func. Count: 94, Neg. LLF: 150.57519006085798
Iteration: 11, Func. Count: 103, Neg. LLF: 150.57465171364984
Iteration: 12, Func. Count: 112, Neg. LLF: 150.57457594178112
Iteration: 13, Func. Count: 121, Neg. LLF: 150.57453037329995
Iteration: 14, Func. Count: 130, Neg. LLF: 150.57450817749645
Iteration: 15, Func. Count: 139, Neg. LLF: 150.5745030515228
Iteration: 16, Func. Count: 147, Neg. LLF: 150.5745030688479
Optimization terminated successfully (Exit mode 0)
Current function value: 150.5745030515228
Iterations: 16
Function evaluations: 147
Gradient evaluations: 16
Iteration: 1, Func. Count: 7, Neg. LLF: 152.02679891801367
Iteration: 2, Func. Count: 13, Neg. LLF: 153.43098958265446
Iteration: 3, Func. Count: 21, Neg. LLF: 153.1018660784874
Iteration: 4, Func. Count: 28, Neg. LLF: 150.8474531696854
Iteration: 5, Func. Count: 34, Neg. LLF: 150.6897966090498
Iteration: 6, Func. Count: 40, Neg. LLF: 150.543369082736
Iteration: 7, Func. Count: 46, Neg. LLF: 150.51723273427322
Iteration: 8, Func. Count: 52, Neg. LLF: 150.48267608325583
Iteration: 9, Func. Count: 58, Neg. LLF: 150.47260955095567
Iteration: 10, Func. Count: 64, Neg. LLF: 150.4649075378729
Iteration: 11, Func. Count: 70, Neg. LLF: 150.45681056032123
Iteration: 12, Func. Count: 76, Neg. LLF: 150.45249704892606
Iteration: 13, Func. Count: 82, Neg. LLF: 150.45073289337415
Iteration: 14, Func. Count: 88, Neg. LLF: 150.45041891859927
Iteration: 15, Func. Count: 94, Neg. LLF: 150.45040208453673
Iteration: 16, Func. Count: 100, Neg. LLF: 150.45040141792006
Optimization terminated successfully (Exit mode 0)
Current function value: 150.45040141792006
Iterations: 16
Function evaluations: 100
Gradient evaluations: 16
Iteration: 1, Func. Count: 8, Neg. LLF: 184.38371950147825
Iteration: 2, Func. Count: 17, Neg. LLF: 154.56731395047694
Iteration: 3, Func. Count: 25, Neg. LLF: 150.95896978657908
Iteration: 4, Func. Count: 32, Neg. LLF: 150.8706450283507
Iteration: 5, Func. Count: 39, Neg. LLF: 150.866060213677
Iteration: 6, Func. Count: 46, Neg. LLF: 150.85671425703399
Iteration: 7, Func. Count: 53, Neg. LLF: 150.85553204265543
Iteration: 8, Func. Count: 60, Neg. LLF: 150.85543044702524
Iteration: 9, Func. Count: 67, Neg. LLF: 150.855394060733
Iteration: 10, Func. Count: 74, Neg. LLF: 150.8552598010062
Iteration: 11, Func. Count: 81, Neg. LLF: 150.85499145736242
Iteration: 12, Func. Count: 88, Neg. LLF: 150.85404562405878
Iteration: 13, Func. Count: 95, Neg. LLF: 150.7865593399674
Iteration: 14, Func. Count: 102, Neg. LLF: 151.03407829918876
Iteration: 15, Func. Count: 110, Neg. LLF: 151.41069661564308
Iteration: 16, Func. Count: 118, Neg. LLF: 150.9170615410599
Iteration: 17, Func. Count: 126, Neg. LLF: 151.52263248981825
Iteration: 18, Func. Count: 134, Neg. LLF: 150.78912950238058
Iteration: 19, Func. Count: 142, Neg. LLF: 150.6807370412958
Iteration: 20, Func. Count: 149, Neg. LLF: 150.6793703889008
Iteration: 21, Func. Count: 156, Neg. LLF: 150.67878789403727
Iteration: 22, Func. Count: 163, Neg. LLF: 150.6787206223847
Iteration: 23, Func. Count: 170, Neg. LLF: 150.67871896111748
Iteration: 24, Func. Count: 176, Neg. LLF: 150.6787189611727
Optimization terminated successfully (Exit mode 0)
Current function value: 150.67871896111748
Iterations: 24
Function evaluations: 176
Gradient evaluations: 24
Iteration: 1, Func. Count: 9, Neg. LLF: 184.97233885929302
Iteration: 2, Func. Count: 18, Neg. LLF: 154.22430327775317
Iteration: 3, Func. Count: 27, Neg. LLF: 150.7822176111924
Iteration: 4, Func. Count: 35, Neg. LLF: 150.77700337406858
Iteration: 5, Func. Count: 44, Neg. LLF: 150.71579547919447
Iteration: 6, Func. Count: 52, Neg. LLF: 150.73732376374704
Iteration: 7, Func. Count: 61, Neg. LLF: 150.6417345799625
Iteration: 8, Func. Count: 69, Neg. LLF: 150.61516290446565
Iteration: 9, Func. Count: 77, Neg. LLF: 150.58799420446755
Iteration: 10, Func. Count: 85, Neg. LLF: 150.567530806447
Iteration: 11, Func. Count: 93, Neg. LLF: 150.55541353360016
Iteration: 12, Func. Count: 101, Neg. LLF: 150.5387509180653
Iteration: 13, Func. Count: 109, Neg. LLF: 150.5261477005023
Iteration: 14, Func. Count: 117, Neg. LLF: 150.51748219782928
Iteration: 15, Func. Count: 125, Neg. LLF: 150.51677091528327
Iteration: 16, Func. Count: 133, Neg. LLF: 150.51675663392345
Iteration: 17, Func. Count: 142, Neg. LLF: 150.5167107399972
Iteration: 18, Func. Count: 150, Neg. LLF: 150.51670944808325
Iteration: 19, Func. Count: 157, Neg. LLF: 150.51670944809086
Optimization terminated successfully (Exit mode 0)
Current function value: 150.51670944808325
Iterations: 19
Function evaluations: 157
Gradient evaluations: 19
Iteration: 1, Func. Count: 10, Neg. LLF: 185.14511300887833
Iteration: 2, Func. Count: 20, Neg. LLF: 154.52599759655726
Iteration: 3, Func. Count: 31, Neg. LLF: 150.72393222490123
Iteration: 4, Func. Count: 40, Neg. LLF: 150.71000050340567
Iteration: 5, Func. Count: 49, Neg. LLF: 150.6912583791785
Iteration: 6, Func. Count: 58, Neg. LLF: 150.6748030782667
Iteration: 7, Func. Count: 67, Neg. LLF: 150.6546915463311
Iteration: 8, Func. Count: 76, Neg. LLF: 150.60009460807322
Iteration: 9, Func. Count: 85, Neg. LLF: 150.5818611470213
Iteration: 10, Func. Count: 94, Neg. LLF: 150.5755936380268
Iteration: 11, Func. Count: 103, Neg. LLF: 150.57497509719747
Iteration: 12, Func. Count: 112, Neg. LLF: 150.574641872644
Iteration: 13, Func. Count: 121, Neg. LLF: 150.57450459868943
Iteration: 14, Func. Count: 130, Neg. LLF: 150.57450277867554
Iteration: 15, Func. Count: 138, Neg. LLF: 150.57450277863614
Optimization terminated successfully (Exit mode 0)
Current function value: 150.57450277867554
Iterations: 15
Function evaluations: 138
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 185.20340225521474
Iteration: 2, Func. Count: 22, Neg. LLF: 154.72787146739202
Iteration: 3, Func. Count: 34, Neg. LLF: 150.71067147982393
Iteration: 4, Func. Count: 44, Neg. LLF: 150.69837457163374
Iteration: 5, Func. Count: 54, Neg. LLF: 150.68350812362274
Iteration: 6, Func. Count: 64, Neg. LLF: 150.62763039485472
Iteration: 7, Func. Count: 74, Neg. LLF: 150.5922733602266
Iteration: 8, Func. Count: 84, Neg. LLF: 150.5895088844038
Iteration: 9, Func. Count: 95, Neg. LLF: 150.57565381754264
Iteration: 10, Func. Count: 105, Neg. LLF: 150.57487442329807
Iteration: 11, Func. Count: 115, Neg. LLF: 150.57463234832656
Iteration: 12, Func. Count: 125, Neg. LLF: 150.57456034530384
Iteration: 13, Func. Count: 135, Neg. LLF: 150.5745079586601
Iteration: 14, Func. Count: 145, Neg. LLF: 150.5745029960139
Iteration: 15, Func. Count: 154, Neg. LLF: 150.57450301330107
Optimization terminated successfully (Exit mode 0)
Current function value: 150.5745029960139
Iterations: 15
Function evaluations: 154
Gradient evaluations: 15
Iteration: 1, Func. Count: 8, Neg. LLF: 151.54401057227705
Iteration: 2, Func. Count: 15, Neg. LLF: 153.178127527381
Iteration: 3, Func. Count: 23, Neg. LLF: 150.9149232664382
Iteration: 4, Func. Count: 30, Neg. LLF: 150.75618365935887
Iteration: 5, Func. Count: 38, Neg. LLF: 150.5251981156083
Iteration: 6, Func. Count: 45, Neg. LLF: 150.50124708642355
Iteration: 7, Func. Count: 52, Neg. LLF: 150.4684690944238
Iteration: 8, Func. Count: 59, Neg. LLF: 150.46133545221986
Iteration: 9, Func. Count: 66, Neg. LLF: 150.45548470228525
Iteration: 10, Func. Count: 73, Neg. LLF: 150.45106496053603
Iteration: 11, Func. Count: 80, Neg. LLF: 150.4506252022213
Iteration: 12, Func. Count: 87, Neg. LLF: 150.4504822600425
Iteration: 13, Func. Count: 94, Neg. LLF: 150.45042838317528
Iteration: 14, Func. Count: 101, Neg. LLF: 150.45040517104977
Iteration: 15, Func. Count: 108, Neg. LLF: 150.45040164371403
Iteration: 16, Func. Count: 114, Neg. LLF: 150.45040182305448
Optimization terminated successfully (Exit mode 0)
Current function value: 150.45040164371403
Iterations: 16
Function evaluations: 114
Gradient evaluations: 16
Iteration: 1, Func. Count: 9, Neg. LLF: 184.32359075050312
Iteration: 2, Func. Count: 19, Neg. LLF: 154.52005857652847
Iteration: 3, Func. Count: 28, Neg. LLF: 150.95336367851266
Iteration: 4, Func. Count: 36, Neg. LLF: 150.87002942284045
Iteration: 5, Func. Count: 44, Neg. LLF: 150.86562547303632
Iteration: 6, Func. Count: 52, Neg. LLF: 150.8568557270772
Iteration: 7, Func. Count: 60, Neg. LLF: 150.85556308375095
Iteration: 8, Func. Count: 68, Neg. LLF: 150.85545015257495
Iteration: 9, Func. Count: 76, Neg. LLF: 150.8554155543373
Iteration: 10, Func. Count: 84, Neg. LLF: 150.85526283594947
Iteration: 11, Func. Count: 92, Neg. LLF: 150.8549708840096
Iteration: 12, Func. Count: 100, Neg. LLF: 150.85388841057468
Iteration: 13, Func. Count: 108, Neg. LLF: 150.79057578353124
Iteration: 14, Func. Count: 116, Neg. LLF: 150.84845352560902
Iteration: 15, Func. Count: 126, Neg. LLF: 150.73955576757066
Iteration: 16, Func. Count: 134, Neg. LLF: 150.69426101776887
Iteration: 17, Func. Count: 142, Neg. LLF: 150.68210121459808
Iteration: 18, Func. Count: 150, Neg. LLF: 150.67942076670028
Iteration: 19, Func. Count: 158, Neg. LLF: 150.67875818101845
Iteration: 20, Func. Count: 166, Neg. LLF: 150.67874363339453
Iteration: 21, Func. Count: 174, Neg. LLF: 150.67872062796312
Iteration: 22, Func. Count: 182, Neg. LLF: 150.67871961933145
Iteration: 23, Func. Count: 190, Neg. LLF: 150.67871895457245
Optimization terminated successfully (Exit mode 0)
Current function value: 150.67871895457245
Iterations: 23
Function evaluations: 190
Gradient evaluations: 23
Iteration: 1, Func. Count: 10, Neg. LLF: 184.92116919296043
Iteration: 2, Func. Count: 20, Neg. LLF: 154.21118357971403
Iteration: 3, Func. Count: 30, Neg. LLF: 150.7799506918028
Iteration: 4, Func. Count: 39, Neg. LLF: 150.7762664317955
Iteration: 5, Func. Count: 49, Neg. LLF: 150.713322331397
Iteration: 6, Func. Count: 58, Neg. LLF: 150.77512850748826
Iteration: 7, Func. Count: 68, Neg. LLF: 150.64237455221593
Iteration: 8, Func. Count: 77, Neg. LLF: 150.6193957592515
Iteration: 9, Func. Count: 86, Neg. LLF: 150.59747202449572
Iteration: 10, Func. Count: 95, Neg. LLF: 150.57569174366205
Iteration: 11, Func. Count: 104, Neg. LLF: 150.5556009028686
Iteration: 12, Func. Count: 113, Neg. LLF: 150.53802057656836
Iteration: 13, Func. Count: 122, Neg. LLF: 150.52283350940294
Iteration: 14, Func. Count: 131, Neg. LLF: 150.5176927665813
Iteration: 15, Func. Count: 140, Neg. LLF: 150.51677829457554
Iteration: 16, Func. Count: 149, Neg. LLF: 150.51671255670632
Iteration: 17, Func. Count: 158, Neg. LLF: 150.5167096024501
Iteration: 18, Func. Count: 166, Neg. LLF: 150.51670960249498
Optimization terminated successfully (Exit mode 0)
Current function value: 150.5167096024501
Iterations: 18
Function evaluations: 166
Gradient evaluations: 18
Iteration: 1, Func. Count: 11, Neg. LLF: 185.09599568758958
Iteration: 2, Func. Count: 22, Neg. LLF: 154.40185336806914
Iteration: 3, Func. Count: 34, Neg. LLF: 150.72444068424622
Iteration: 4, Func. Count: 44, Neg. LLF: 150.71122274778617
Iteration: 5, Func. Count: 54, Neg. LLF: 150.69208305737553
Iteration: 6, Func. Count: 64, Neg. LLF: 150.6759697706931
Iteration: 7, Func. Count: 74, Neg. LLF: 150.65717155396126
Iteration: 8, Func. Count: 84, Neg. LLF: 150.6020945399238
Iteration: 9, Func. Count: 94, Neg. LLF: 150.58087848451842
Iteration: 10, Func. Count: 104, Neg. LLF: 150.57532103337766
Iteration: 11, Func. Count: 114, Neg. LLF: 150.57483804517148
Iteration: 12, Func. Count: 124, Neg. LLF: 150.57458052800337
Iteration: 13, Func. Count: 134, Neg. LLF: 150.5745098453142
Iteration: 14, Func. Count: 144, Neg. LLF: 150.5745029156424
Iteration: 15, Func. Count: 153, Neg. LLF: 150.57450291570362
Optimization terminated successfully (Exit mode 0)
Current function value: 150.5745029156424
Iterations: 15
Function evaluations: 153
Gradient evaluations: 15
Iteration: 1, Func. Count: 12, Neg. LLF: 185.15809346931886
Iteration: 2, Func. Count: 24, Neg. LLF: 154.73992599541566
Iteration: 3, Func. Count: 37, Neg. LLF: 150.70898478224933
Iteration: 4, Func. Count: 48, Neg. LLF: 150.69753265077466
Iteration: 5, Func. Count: 59, Neg. LLF: 150.68254728338763
Iteration: 6, Func. Count: 70, Neg. LLF: 150.6211516037299
Iteration: 7, Func. Count: 81, Neg. LLF: 150.5878662463066
Iteration: 8, Func. Count: 92, Neg. LLF: 150.57841755069614
Iteration: 9, Func. Count: 103, Neg. LLF: 150.57605409165924
Iteration: 10, Func. Count: 114, Neg. LLF: 150.57479584483085
Iteration: 11, Func. Count: 125, Neg. LLF: 150.5746429338777
Iteration: 12, Func. Count: 136, Neg. LLF: 150.57455493930186
Iteration: 13, Func. Count: 147, Neg. LLF: 150.57450712211644
Iteration: 14, Func. Count: 158, Neg. LLF: 150.57450293812508
Iteration: 15, Func. Count: 168, Neg. LLF: 150.57450295546693
Optimization terminated successfully (Exit mode 0)
Current function value: 150.57450293812508
Iterations: 15
Function evaluations: 168
Gradient evaluations: 15
Iteration: 1, Func. Count: 9, Neg. LLF: 152.74346341133014
Iteration: 2, Func. Count: 17, Neg. LLF: 151.75093549902508
Iteration: 3, Func. Count: 26, Neg. LLF: 152.8288401847676
Iteration: 4, Func. Count: 35, Neg. LLF: 150.71810990623314
Iteration: 5, Func. Count: 43, Neg. LLF: 150.56694779036027
Iteration: 6, Func. Count: 51, Neg. LLF: 150.48978148113497
Iteration: 7, Func. Count: 59, Neg. LLF: 150.46883892330828
Iteration: 8, Func. Count: 67, Neg. LLF: 150.46673864660434
Iteration: 9, Func. Count: 76, Neg. LLF: 150.45877561074812
Iteration: 10, Func. Count: 84, Neg. LLF: 150.45203120048706
Iteration: 11, Func. Count: 92, Neg. LLF: 150.45057199687363
Iteration: 12, Func. Count: 100, Neg. LLF: 150.45040624960356
Iteration: 13, Func. Count: 108, Neg. LLF: 150.45040152198672
Iteration: 14, Func. Count: 115, Neg. LLF: 150.4504015752376
Optimization terminated successfully (Exit mode 0)
Current function value: 150.45040152198672
Iterations: 14
Function evaluations: 115
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 184.32760913300038
Iteration: 2, Func. Count: 21, Neg. LLF: 154.4931921870486
Iteration: 3, Func. Count: 31, Neg. LLF: 150.95236611605696
Iteration: 4, Func. Count: 40, Neg. LLF: 150.8698824694033
Iteration: 5, Func. Count: 49, Neg. LLF: 150.86550894843606
Iteration: 6, Func. Count: 58, Neg. LLF: 150.85683937356274
Iteration: 7, Func. Count: 67, Neg. LLF: 150.85555270583768
Iteration: 8, Func. Count: 76, Neg. LLF: 150.8554376867957
Iteration: 9, Func. Count: 85, Neg. LLF: 150.85540342375947
Iteration: 10, Func. Count: 94, Neg. LLF: 150.8552498173047
Iteration: 11, Func. Count: 103, Neg. LLF: 150.85495187058496
Iteration: 12, Func. Count: 112, Neg. LLF: 150.8538180405362
Iteration: 13, Func. Count: 121, Neg. LLF: 150.80159365554042
Iteration: 14, Func. Count: 130, Neg. LLF: 150.8526525156463
Iteration: 15, Func. Count: 141, Neg. LLF: 150.72734311295616
Iteration: 16, Func. Count: 150, Neg. LLF: 150.6838052328819
Iteration: 17, Func. Count: 159, Neg. LLF: 150.67945428832755
Iteration: 18, Func. Count: 168, Neg. LLF: 150.67916504504996
Iteration: 19, Func. Count: 177, Neg. LLF: 150.67884227315992
Iteration: 20, Func. Count: 186, Neg. LLF: 150.678764450601
Iteration: 21, Func. Count: 195, Neg. LLF: 150.67871930796443
Iteration: 22, Func. Count: 203, Neg. LLF: 150.67871930810927
Optimization terminated successfully (Exit mode 0)
Current function value: 150.67871930796443
Iterations: 22
Function evaluations: 203
Gradient evaluations: 22
Iteration: 1, Func. Count: 11, Neg. LLF: 184.93432863249393
Iteration: 2, Func. Count: 22, Neg. LLF: 154.203150791712
Iteration: 3, Func. Count: 33, Neg. LLF: 150.77962715264815
Iteration: 4, Func. Count: 43, Neg. LLF: 150.77943830699613
Iteration: 5, Func. Count: 54, Neg. LLF: 150.71177950289666
Iteration: 6, Func. Count: 64, Neg. LLF: 150.7702701421693
Iteration: 7, Func. Count: 75, Neg. LLF: 150.6384459229467
Iteration: 8, Func. Count: 85, Neg. LLF: 150.61857856756208
Iteration: 9, Func. Count: 95, Neg. LLF: 150.59944003670378
Iteration: 10, Func. Count: 105, Neg. LLF: 150.57391959662314
Iteration: 11, Func. Count: 115, Neg. LLF: 150.55417388868884
Iteration: 12, Func. Count: 125, Neg. LLF: 150.53705762654423
Iteration: 13, Func. Count: 135, Neg. LLF: 150.52336729633808
Iteration: 14, Func. Count: 145, Neg. LLF: 150.51843558631558
Iteration: 15, Func. Count: 155, Neg. LLF: 150.516771651722
Iteration: 16, Func. Count: 165, Neg. LLF: 150.51671074049557
Iteration: 17, Func. Count: 175, Neg. LLF: 150.51670954532133
Iteration: 18, Func. Count: 184, Neg. LLF: 150.51670954537593
Optimization terminated successfully (Exit mode 0)
Current function value: 150.51670954532133
Iterations: 18
Function evaluations: 184
Gradient evaluations: 18
Iteration: 1, Func. Count: 12, Neg. LLF: 185.105583184745
Iteration: 2, Func. Count: 24, Neg. LLF: 154.4285254859435
Iteration: 3, Func. Count: 37, Neg. LLF: 150.72349579110667
Iteration: 4, Func. Count: 48, Neg. LLF: 150.71012614580516
Iteration: 5, Func. Count: 59, Neg. LLF: 150.69114969750638
Iteration: 6, Func. Count: 70, Neg. LLF: 150.67479111913173
Iteration: 7, Func. Count: 81, Neg. LLF: 150.65427421507968
Iteration: 8, Func. Count: 92, Neg. LLF: 150.6068023369122
Iteration: 9, Func. Count: 103, Neg. LLF: 150.58683362172246
Iteration: 10, Func. Count: 114, Neg. LLF: 150.57663318819016
Iteration: 11, Func. Count: 125, Neg. LLF: 150.57491717370644
Iteration: 12, Func. Count: 136, Neg. LLF: 150.5746599647764
Iteration: 13, Func. Count: 147, Neg. LLF: 150.57452773311647
Iteration: 14, Func. Count: 158, Neg. LLF: 150.57450548642848
Iteration: 15, Func. Count: 169, Neg. LLF: 150.57450280141063
Iteration: 16, Func. Count: 179, Neg. LLF: 150.57450280134228
Optimization terminated successfully (Exit mode 0)
Current function value: 150.57450280141063
Iterations: 16
Function evaluations: 179
Gradient evaluations: 16
Iteration: 1, Func. Count: 13, Neg. LLF: 185.16834681877765
Iteration: 2, Func. Count: 26, Neg. LLF: 154.810601926095
Iteration: 3, Func. Count: 40, Neg. LLF: 150.70964801385696
Iteration: 4, Func. Count: 52, Neg. LLF: 150.6977281232266
Iteration: 5, Func. Count: 64, Neg. LLF: 150.68271757454815
Iteration: 6, Func. Count: 76, Neg. LLF: 150.62495000010463
Iteration: 7, Func. Count: 88, Neg. LLF: 150.58821461627412
Iteration: 8, Func. Count: 100, Neg. LLF: 150.58176152794894
Iteration: 9, Func. Count: 112, Neg. LLF: 150.57583181253193
Iteration: 10, Func. Count: 124, Neg. LLF: 150.57508565227823
Iteration: 11, Func. Count: 136, Neg. LLF: 150.57467989857716
Iteration: 12, Func. Count: 148, Neg. LLF: 150.5745693017997
Iteration: 13, Func. Count: 160, Neg. LLF: 150.5745046001884
Iteration: 14, Func. Count: 172, Neg. LLF: 150.5745027629865
Iteration: 15, Func. Count: 183, Neg. LLF: 150.5745027802466
Optimization terminated successfully (Exit mode 0)
Current function value: 150.5745027629865
Iterations: 15
Function evaluations: 183
Gradient evaluations: 15
Iteration: 1, Func. Count: 6, Neg. LLF: 149.45925486010955
Iteration: 2, Func. Count: 11, Neg. LLF: 149.45323252631349
Iteration: 3, Func. Count: 17, Neg. LLF: 148.99186327526093
Iteration: 4, Func. Count: 22, Neg. LLF: 149.06049487564326
Iteration: 5, Func. Count: 28, Neg. LLF: 148.33049442615913
Iteration: 6, Func. Count: 33, Neg. LLF: 148.29716176274252
Iteration: 7, Func. Count: 38, Neg. LLF: 148.29648382544983
Iteration: 8, Func. Count: 43, Neg. LLF: 148.29645654967533
Iteration: 9, Func. Count: 48, Neg. LLF: 148.2964357822583
Iteration: 10, Func. Count: 52, Neg. LLF: 148.29643583207096
Optimization terminated successfully (Exit mode 0)
Current function value: 148.2964357822583
Iterations: 10
Function evaluations: 52
Gradient evaluations: 10
Iteration: 1, Func. Count: 7, Neg. LLF: 184.75334306958558
Iteration: 2, Func. Count: 15, Neg. LLF: 151.1418921791659
Iteration: 3, Func. Count: 21, Neg. LLF: 151.0616736869064
Iteration: 4, Func. Count: 27, Neg. LLF: 151.59492727909532
Iteration: 5, Func. Count: 34, Neg. LLF: 159.867661192107
Iteration: 6, Func. Count: 41, Neg. LLF: 154.19873916681658
Iteration: 7, Func. Count: 48, Neg. LLF: 152.69419859880287
Iteration: 8, Func. Count: 55, Neg. LLF: 150.95623597859762
Iteration: 9, Func. Count: 62, Neg. LLF: 150.72041620343327
Iteration: 10, Func. Count: 68, Neg. LLF: 150.7148859369213
Iteration: 11, Func. Count: 74, Neg. LLF: 150.71489012533397
Iteration: 12, Func. Count: 81, Neg. LLF: 150.71458050339245
Iteration: 13, Func. Count: 87, Neg. LLF: 150.71457189454617
Iteration: 14, Func. Count: 92, Neg. LLF: 150.71457189455734
Optimization terminated successfully (Exit mode 0)
Current function value: 150.71457189454617
Iterations: 14
Function evaluations: 92
Gradient evaluations: 14
Iteration: 1, Func. Count: 8, Neg. LLF: 185.37938648196655
Iteration: 2, Func. Count: 16, Neg. LLF: 150.77743046876498
Iteration: 3, Func. Count: 23, Neg. LLF: 150.73485329243715
Iteration: 4, Func. Count: 30, Neg. LLF: 150.7157111158314
Iteration: 5, Func. Count: 37, Neg. LLF: 150.8360023567924
Iteration: 6, Func. Count: 45, Neg. LLF: 150.6581355644486
Iteration: 7, Func. Count: 52, Neg. LLF: 150.6497656314464
Iteration: 8, Func. Count: 59, Neg. LLF: 150.64515683465905
Iteration: 9, Func. Count: 66, Neg. LLF: 150.6410838208436
Iteration: 10, Func. Count: 73, Neg. LLF: 150.63921757652378
Iteration: 11, Func. Count: 80, Neg. LLF: 150.6381730469252
Iteration: 12, Func. Count: 87, Neg. LLF: 150.63812570356006
Iteration: 13, Func. Count: 93, Neg. LLF: 150.63812570361415
Optimization terminated successfully (Exit mode 0)
Current function value: 150.63812570356006
Iterations: 13
Function evaluations: 93
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 185.50676740727167
Iteration: 2, Func. Count: 18, Neg. LLF: 150.84495948494646
Iteration: 3, Func. Count: 26, Neg. LLF: 150.81011350513737
Iteration: 4, Func. Count: 34, Neg. LLF: 150.72504429429944
Iteration: 5, Func. Count: 42, Neg. LLF: 150.90656747648444
Iteration: 6, Func. Count: 51, Neg. LLF: 150.6988706148449
Iteration: 7, Func. Count: 59, Neg. LLF: 150.69153208138144
Iteration: 8, Func. Count: 67, Neg. LLF: 150.68230342156465
Iteration: 9, Func. Count: 75, Neg. LLF: 150.6710013176359
Iteration: 10, Func. Count: 83, Neg. LLF: 150.65286237610957
Iteration: 11, Func. Count: 91, Neg. LLF: 150.64065497814744
Iteration: 12, Func. Count: 99, Neg. LLF: 150.6382332624513
Iteration: 13, Func. Count: 107, Neg. LLF: 150.63812697809198
Iteration: 14, Func. Count: 115, Neg. LLF: 150.63812543132633
Iteration: 15, Func. Count: 122, Neg. LLF: 150.638125449861
Optimization terminated successfully (Exit mode 0)
Current function value: 150.63812543132633
Iterations: 15
Function evaluations: 122
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 185.5424634566602
Iteration: 2, Func. Count: 20, Neg. LLF: 150.85393680863763
Iteration: 3, Func. Count: 29, Neg. LLF: 150.7812161979043
Iteration: 4, Func. Count: 38, Neg. LLF: 150.7479712753824
Iteration: 5, Func. Count: 47, Neg. LLF: 150.69396076468664
Iteration: 6, Func. Count: 56, Neg. LLF: 150.67671312747265
Iteration: 7, Func. Count: 65, Neg. LLF: 150.6643294863386
Iteration: 8, Func. Count: 74, Neg. LLF: 150.6558445210616
Iteration: 9, Func. Count: 83, Neg. LLF: 150.64078939871496
Iteration: 10, Func. Count: 92, Neg. LLF: 150.63846423109993
Iteration: 11, Func. Count: 101, Neg. LLF: 150.63817167185638
Iteration: 12, Func. Count: 110, Neg. LLF: 150.63813411346837
Iteration: 13, Func. Count: 119, Neg. LLF: 150.63812532325775
Iteration: 14, Func. Count: 127, Neg. LLF: 150.63812532987282
Optimization terminated successfully (Exit mode 0)
Current function value: 150.63812532325775
Iterations: 14
Function evaluations: 127
Gradient evaluations: 14
Iteration: 1, Func. Count: 7, Neg. LLF: 150.24173995296
Iteration: 2, Func. Count: 13, Neg. LLF: 149.93375435730943
Iteration: 3, Func. Count: 19, Neg. LLF: 149.34895393914536
Iteration: 4, Func. Count: 25, Neg. LLF: 149.06618882708315
Iteration: 5, Func. Count: 31, Neg. LLF: 148.8362925455721
Iteration: 6, Func. Count: 37, Neg. LLF: 148.49504017560974
Iteration: 7, Func. Count: 43, Neg. LLF: 156.44696887497435
Iteration: 8, Func. Count: 50, Neg. LLF: 148.28971757058542
Iteration: 9, Func. Count: 56, Neg. LLF: 148.2579648012622
Iteration: 10, Func. Count: 62, Neg. LLF: 148.24911600890977
Iteration: 11, Func. Count: 68, Neg. LLF: 148.24887782603827
Iteration: 12, Func. Count: 74, Neg. LLF: 148.24887175296524
Iteration: 13, Func. Count: 79, Neg. LLF: 148.24887163438578
Optimization terminated successfully (Exit mode 0)
Current function value: 148.24887175296524
Iterations: 13
Function evaluations: 79
Gradient evaluations: 13
Iteration: 1, Func. Count: 8, Neg. LLF: 184.36788621202368
Iteration: 2, Func. Count: 17, Neg. LLF: 154.75050349648973
Iteration: 3, Func. Count: 25, Neg. LLF: 150.95965787477874
Iteration: 4, Func. Count: 32, Neg. LLF: 150.87155250763888
Iteration: 5, Func. Count: 39, Neg. LLF: 150.8667413947474
Iteration: 6, Func. Count: 46, Neg. LLF: 150.85689767241143
Iteration: 7, Func. Count: 53, Neg. LLF: 150.85549799283024
Iteration: 8, Func. Count: 60, Neg. LLF: 150.85537965987632
Iteration: 9, Func. Count: 67, Neg. LLF: 150.85534581235657
Iteration: 10, Func. Count: 74, Neg. LLF: 150.85521084110593
Iteration: 11, Func. Count: 81, Neg. LLF: 150.85495134535816
Iteration: 12, Func. Count: 88, Neg. LLF: 150.85400336497372
Iteration: 13, Func. Count: 95, Neg. LLF: 150.7855626861526
Iteration: 14, Func. Count: 102, Neg. LLF: 151.1563908784372
Iteration: 15, Func. Count: 110, Neg. LLF: 151.02704091465225
Iteration: 16, Func. Count: 118, Neg. LLF: 150.80879715788814
Iteration: 17, Func. Count: 126, Neg. LLF: 151.7485780627046
Iteration: 18, Func. Count: 134, Neg. LLF: 150.68411317377672
Iteration: 19, Func. Count: 141, Neg. LLF: 150.68036993794405
Iteration: 20, Func. Count: 148, Neg. LLF: 150.67879803261783
Iteration: 21, Func. Count: 155, Neg. LLF: 150.67872284379368
Iteration: 22, Func. Count: 162, Neg. LLF: 150.67871898284176
Iteration: 23, Func. Count: 168, Neg. LLF: 150.67871898293274
Optimization terminated successfully (Exit mode 0)
Current function value: 150.67871898284176
Iterations: 23
Function evaluations: 168
Gradient evaluations: 23
Iteration: 1, Func. Count: 9, Neg. LLF: 184.9591658892314
Iteration: 2, Func. Count: 18, Neg. LLF: 154.38778592648433
Iteration: 3, Func. Count: 27, Neg. LLF: 150.7819345749464
Iteration: 4, Func. Count: 35, Neg. LLF: 150.77943787873693
Iteration: 5, Func. Count: 44, Neg. LLF: 151.0213825614041
Iteration: 6, Func. Count: 54, Neg. LLF: 150.6906417110205
Iteration: 7, Func. Count: 62, Neg. LLF: 150.67637062137553
Iteration: 8, Func. Count: 70, Neg. LLF: 150.65725858128621
Iteration: 9, Func. Count: 78, Neg. LLF: 150.64907721198958
Iteration: 10, Func. Count: 86, Neg. LLF: 150.63111029898727
Iteration: 11, Func. Count: 94, Neg. LLF: 150.60488682228618
Iteration: 12, Func. Count: 102, Neg. LLF: 150.57196647574833
Iteration: 13, Func. Count: 110, Neg. LLF: 150.53987346552648
Iteration: 14, Func. Count: 118, Neg. LLF: 150.5316623850069
Iteration: 15, Func. Count: 126, Neg. LLF: 150.5308915017286
Iteration: 16, Func. Count: 134, Neg. LLF: 150.53041840185665
Iteration: 17, Func. Count: 142, Neg. LLF: 150.53033938113367
Iteration: 18, Func. Count: 150, Neg. LLF: 150.5303366810184
Iteration: 19, Func. Count: 157, Neg. LLF: 150.53033668107
Optimization terminated successfully (Exit mode 0)
Current function value: 150.5303366810184
Iterations: 19
Function evaluations: 157
Gradient evaluations: 19
Iteration: 1, Func. Count: 10, Neg. LLF: 185.12525510686532
Iteration: 2, Func. Count: 20, Neg. LLF: 154.76024386155652
Iteration: 3, Func. Count: 31, Neg. LLF: 150.72455066183483
Iteration: 4, Func. Count: 40, Neg. LLF: 150.71134204113272
Iteration: 5, Func. Count: 49, Neg. LLF: 150.69214568686326
Iteration: 6, Func. Count: 58, Neg. LLF: 150.6765096698664
Iteration: 7, Func. Count: 67, Neg. LLF: 150.6570802556711
Iteration: 8, Func. Count: 76, Neg. LLF: 150.60330451097298
Iteration: 9, Func. Count: 85, Neg. LLF: 150.58061527186445
Iteration: 10, Func. Count: 94, Neg. LLF: 150.57585310650333
Iteration: 11, Func. Count: 103, Neg. LLF: 150.57509546554303
Iteration: 12, Func. Count: 112, Neg. LLF: 150.57464935616056
Iteration: 13, Func. Count: 121, Neg. LLF: 150.57452128467244
Iteration: 14, Func. Count: 130, Neg. LLF: 150.57450322454793
Iteration: 15, Func. Count: 138, Neg. LLF: 150.57450322461222
Optimization terminated successfully (Exit mode 0)
Current function value: 150.57450322454793
Iterations: 15
Function evaluations: 138
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 185.18853983929628
Iteration: 2, Func. Count: 22, Neg. LLF: 155.29085994307124
Iteration: 3, Func. Count: 34, Neg. LLF: 150.7130481651746
Iteration: 4, Func. Count: 44, Neg. LLF: 150.70012944369907
Iteration: 5, Func. Count: 54, Neg. LLF: 150.68492615524914
Iteration: 6, Func. Count: 64, Neg. LLF: 150.63596850082047
Iteration: 7, Func. Count: 74, Neg. LLF: 150.59964188792304
Iteration: 8, Func. Count: 84, Neg. LLF: 150.5832022791643
Iteration: 9, Func. Count: 94, Neg. LLF: 150.57602043161626
Iteration: 10, Func. Count: 104, Neg. LLF: 150.57523200950737
Iteration: 11, Func. Count: 114, Neg. LLF: 150.57466949337248
Iteration: 12, Func. Count: 124, Neg. LLF: 150.57457646505947
Iteration: 13, Func. Count: 134, Neg. LLF: 150.5745085572074
Iteration: 14, Func. Count: 144, Neg. LLF: 150.57450273711075
Iteration: 15, Func. Count: 153, Neg. LLF: 150.57450275441272
Optimization terminated successfully (Exit mode 0)
Current function value: 150.57450273711075
Iterations: 15
Function evaluations: 153
Gradient evaluations: 15
Iteration: 1, Func. Count: 8, Neg. LLF: 153.0905922480224
Iteration: 2, Func. Count: 16, Neg. LLF: 149.82683052204473
Iteration: 3, Func. Count: 23, Neg. LLF: 150.50421418406626
Iteration: 4, Func. Count: 31, Neg. LLF: 149.1201080137523
Iteration: 5, Func. Count: 38, Neg. LLF: 148.88983174670304
Iteration: 6, Func. Count: 45, Neg. LLF: 148.63507781718977
Iteration: 7, Func. Count: 52, Neg. LLF: 148.33188708892888
Iteration: 8, Func. Count: 59, Neg. LLF: 148.14272316090663
Iteration: 9, Func. Count: 66, Neg. LLF: 148.132356835796
Iteration: 10, Func. Count: 73, Neg. LLF: 148.1264859749166
Iteration: 11, Func. Count: 80, Neg. LLF: 148.1264342437015
Iteration: 12, Func. Count: 86, Neg. LLF: 148.1264342200276
Optimization terminated successfully (Exit mode 0)
Current function value: 148.1264342437015
Iterations: 12
Function evaluations: 86
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 184.39033747887362
Iteration: 2, Func. Count: 19, Neg. LLF: 156.5911439300558
Iteration: 3, Func. Count: 28, Neg. LLF: 150.89534410456116
Iteration: 4, Func. Count: 36, Neg. LLF: 150.6254197734037
Iteration: 5, Func. Count: 44, Neg. LLF: 152.50041698575376
Iteration: 6, Func. Count: 53, Neg. LLF: 150.38717772416715
Iteration: 7, Func. Count: 61, Neg. LLF: 150.17272166581117
Iteration: 8, Func. Count: 69, Neg. LLF: 150.10095837088565
Iteration: 9, Func. Count: 77, Neg. LLF: 150.09445628052498
Iteration: 10, Func. Count: 85, Neg. LLF: 150.08981280908347
Iteration: 11, Func. Count: 93, Neg. LLF: 150.08894704460715
Iteration: 12, Func. Count: 101, Neg. LLF: 150.08873586084198
Iteration: 13, Func. Count: 109, Neg. LLF: 150.0884424181263
Iteration: 14, Func. Count: 117, Neg. LLF: 150.08772364699567
Iteration: 15, Func. Count: 125, Neg. LLF: 150.0869065169888
Iteration: 16, Func. Count: 133, Neg. LLF: 150.08645055530522
Iteration: 17, Func. Count: 141, Neg. LLF: 150.08637486944536
Iteration: 18, Func. Count: 149, Neg. LLF: 150.0863660742505
Iteration: 19, Func. Count: 156, Neg. LLF: 150.08636607426607
Optimization terminated successfully (Exit mode 0)
Current function value: 150.0863660742505
Iterations: 19
Function evaluations: 156
Gradient evaluations: 19
Iteration: 1, Func. Count: 10, Neg. LLF: 185.02418131451316
Iteration: 2, Func. Count: 20, Neg. LLF: 153.50595032792583
Iteration: 3, Func. Count: 30, Neg. LLF: 150.84611581192934
Iteration: 4, Func. Count: 39, Neg. LLF: 152.00660393254333
Iteration: 5, Func. Count: 49, Neg. LLF: 150.7701950181887
Iteration: 6, Func. Count: 59, Neg. LLF: 150.70369044875454
Iteration: 7, Func. Count: 68, Neg. LLF: 151.09649908243293
Iteration: 8, Func. Count: 78, Neg. LLF: 150.67448050403738
Iteration: 9, Func. Count: 87, Neg. LLF: 150.65768877576323
Iteration: 10, Func. Count: 96, Neg. LLF: 150.6546698092812
Iteration: 11, Func. Count: 106, Neg. LLF: 150.62686559933323
Iteration: 12, Func. Count: 115, Neg. LLF: 150.5897482577009
Iteration: 13, Func. Count: 124, Neg. LLF: 150.54850690974123
Iteration: 14, Func. Count: 133, Neg. LLF: 150.52390086966417
Iteration: 15, Func. Count: 142, Neg. LLF: 150.51748149802634
Iteration: 16, Func. Count: 151, Neg. LLF: 150.51728100695703
Iteration: 17, Func. Count: 161, Neg. LLF: 150.5167409751905
Iteration: 18, Func. Count: 170, Neg. LLF: 150.51671841807453
Iteration: 19, Func. Count: 179, Neg. LLF: 150.516711280248
Iteration: 20, Func. Count: 188, Neg. LLF: 150.51670956429564
Iteration: 21, Func. Count: 196, Neg. LLF: 150.5167095643224
Optimization terminated successfully (Exit mode 0)
Current function value: 150.51670956429564
Iterations: 21
Function evaluations: 196
Gradient evaluations: 21
Iteration: 1, Func. Count: 11, Neg. LLF: 185.1868116456213
Iteration: 2, Func. Count: 22, Neg. LLF: 154.4249721646242
Iteration: 3, Func. Count: 34, Neg. LLF: 150.72682581958014
Iteration: 4, Func. Count: 44, Neg. LLF: 150.84940558491903
Iteration: 5, Func. Count: 55, Neg. LLF: 150.717070392221
Iteration: 6, Func. Count: 66, Neg. LLF: 150.67675207155975
Iteration: 7, Func. Count: 76, Neg. LLF: 150.66527871855294
Iteration: 8, Func. Count: 86, Neg. LLF: 150.621391762809
Iteration: 9, Func. Count: 96, Neg. LLF: 150.58285986744804
Iteration: 10, Func. Count: 106, Neg. LLF: 150.60647867898533
Iteration: 11, Func. Count: 117, Neg. LLF: 150.55546317112496
Iteration: 12, Func. Count: 127, Neg. LLF: 150.54401963615146
Iteration: 13, Func. Count: 137, Neg. LLF: 150.5190106989936
Iteration: 14, Func. Count: 147, Neg. LLF: 150.51719142974147
Iteration: 15, Func. Count: 157, Neg. LLF: 150.51672039234887
Iteration: 16, Func. Count: 167, Neg. LLF: 150.51671874707358
Iteration: 17, Func. Count: 177, Neg. LLF: 150.5167086882436
Iteration: 18, Func. Count: 187, Neg. LLF: 150.67129610491554
Optimization terminated successfully (Exit mode 0)
Current function value: 150.5167081920005
Iterations: 19
Function evaluations: 190
Gradient evaluations: 18
Iteration: 1, Func. Count: 12, Neg. LLF: 185.24826079776972
Iteration: 2, Func. Count: 24, Neg. LLF: 154.54755884291333
Iteration: 3, Func. Count: 37, Neg. LLF: 150.71978262015958
Iteration: 4, Func. Count: 48, Neg. LLF: 150.85690321164688
Iteration: 5, Func. Count: 60, Neg. LLF: 150.70669516884627
Iteration: 6, Func. Count: 71, Neg. LLF: 150.66244878501715
Iteration: 7, Func. Count: 82, Neg. LLF: 150.85857698661584
Iteration: 8, Func. Count: 94, Neg. LLF: 150.6339933118828
Iteration: 9, Func. Count: 105, Neg. LLF: 150.59618081553
Iteration: 10, Func. Count: 116, Neg. LLF: 150.5752697206741
Iteration: 11, Func. Count: 127, Neg. LLF: 150.54973881835403
Iteration: 12, Func. Count: 138, Neg. LLF: 150.53309840723156
Iteration: 13, Func. Count: 149, Neg. LLF: 150.52156927498115
Iteration: 14, Func. Count: 160, Neg. LLF: 150.51801048237442
Iteration: 15, Func. Count: 171, Neg. LLF: 150.51679473590096
Iteration: 16, Func. Count: 182, Neg. LLF: 150.51672215117947
Iteration: 17, Func. Count: 193, Neg. LLF: 150.51671095086022
Iteration: 18, Func. Count: 204, Neg. LLF: 150.5167095510173
Iteration: 19, Func. Count: 214, Neg. LLF: 150.51670955163192
Optimization terminated successfully (Exit mode 0)
Current function value: 150.5167095510173
Iterations: 19
Function evaluations: 214
Gradient evaluations: 19
Iteration: 1, Func. Count: 9, Neg. LLF: 150.29446794434838
Iteration: 2, Func. Count: 17, Neg. LLF: 150.4352897171226
Iteration: 3, Func. Count: 26, Neg. LLF: 149.07569649522603
Iteration: 4, Func. Count: 34, Neg. LLF: 152.6685582674438
Iteration: 5, Func. Count: 43, Neg. LLF: 148.7930130203997
Iteration: 6, Func. Count: 51, Neg. LLF: 148.5521604564773
Iteration: 7, Func. Count: 59, Neg. LLF: 148.326842848553
Iteration: 8, Func. Count: 67, Neg. LLF: 148.24377335538156
Iteration: 9, Func. Count: 75, Neg. LLF: 148.14655999454206
Iteration: 10, Func. Count: 83, Neg. LLF: 148.1282748906569
Iteration: 11, Func. Count: 91, Neg. LLF: 148.12657947851773
Iteration: 12, Func. Count: 99, Neg. LLF: 148.12644420654433
Iteration: 13, Func. Count: 107, Neg. LLF: 148.12643444152022
Iteration: 14, Func. Count: 114, Neg. LLF: 148.12643477715227
Optimization terminated successfully (Exit mode 0)
Current function value: 148.12643444152022
Iterations: 14
Function evaluations: 114
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 184.33246763248718
Iteration: 2, Func. Count: 21, Neg. LLF: 156.31522934199234
Iteration: 3, Func. Count: 31, Neg. LLF: 150.87832808250965
Iteration: 4, Func. Count: 40, Neg. LLF: 150.61492071624346
Iteration: 5, Func. Count: 49, Neg. LLF: 152.50160384371392
Iteration: 6, Func. Count: 59, Neg. LLF: 150.5166159232907
Iteration: 7, Func. Count: 68, Neg. LLF: 150.1637304241027
Iteration: 8, Func. Count: 77, Neg. LLF: 150.10249674529427
Iteration: 9, Func. Count: 86, Neg. LLF: 150.09583581348167
Iteration: 10, Func. Count: 95, Neg. LLF: 150.0893903705353
Iteration: 11, Func. Count: 104, Neg. LLF: 150.08904524625714
Iteration: 12, Func. Count: 113, Neg. LLF: 150.08881671068968
Iteration: 13, Func. Count: 122, Neg. LLF: 150.08823022631404
Iteration: 14, Func. Count: 131, Neg. LLF: 150.08735726679154
Iteration: 15, Func. Count: 140, Neg. LLF: 150.08661266587848
Iteration: 16, Func. Count: 149, Neg. LLF: 150.08640844975804
Iteration: 17, Func. Count: 158, Neg. LLF: 150.08636983243986
Iteration: 18, Func. Count: 167, Neg. LLF: 150.08636564970394
Iteration: 19, Func. Count: 175, Neg. LLF: 150.08636564971658
Optimization terminated successfully (Exit mode 0)
Current function value: 150.08636564970394
Iterations: 19
Function evaluations: 175
Gradient evaluations: 19
Iteration: 1, Func. Count: 11, Neg. LLF: 184.97529509084237
Iteration: 2, Func. Count: 22, Neg. LLF: 153.47558436536187
Iteration: 3, Func. Count: 33, Neg. LLF: 150.84625691457282
Iteration: 4, Func. Count: 43, Neg. LLF: 152.18474292733939
Iteration: 5, Func. Count: 54, Neg. LLF: 150.89699522060232
Iteration: 6, Func. Count: 65, Neg. LLF: 151.15790169814392
Iteration: 7, Func. Count: 76, Neg. LLF: 150.69301808431246
Iteration: 8, Func. Count: 86, Neg. LLF: 150.68017454076522
Iteration: 9, Func. Count: 96, Neg. LLF: 150.65851720494507
Iteration: 10, Func. Count: 106, Neg. LLF: 150.64927180306768
Iteration: 11, Func. Count: 116, Neg. LLF: 150.63307201602143
Iteration: 12, Func. Count: 126, Neg. LLF: 150.61951781860512
Iteration: 13, Func. Count: 136, Neg. LLF: 150.5625594782829
Iteration: 14, Func. Count: 146, Neg. LLF: 150.52416141211293
Iteration: 15, Func. Count: 156, Neg. LLF: 150.52018431506792
Iteration: 16, Func. Count: 166, Neg. LLF: 150.5170073222861
Iteration: 17, Func. Count: 176, Neg. LLF: 150.5170870028215
Iteration: 18, Func. Count: 187, Neg. LLF: 150.5167106268844
Iteration: 19, Func. Count: 197, Neg. LLF: 150.51670957015733
Iteration: 20, Func. Count: 206, Neg. LLF: 150.5167095701528
Optimization terminated successfully (Exit mode 0)
Current function value: 150.51670957015733
Iterations: 20
Function evaluations: 206
Gradient evaluations: 20
Iteration: 1, Func. Count: 12, Neg. LLF: 185.1402855488552
Iteration: 2, Func. Count: 24, Neg. LLF: 154.32814286522452
Iteration: 3, Func. Count: 37, Neg. LLF: 150.72712994143993
Iteration: 4, Func. Count: 48, Neg. LLF: 150.87751708067046
Iteration: 5, Func. Count: 60, Neg. LLF: 150.7033062286876
Iteration: 6, Func. Count: 71, Neg. LLF: 150.76352543874526
Iteration: 7, Func. Count: 83, Neg. LLF: 150.6747879003421
Iteration: 8, Func. Count: 94, Neg. LLF: 150.64689888020118
Iteration: 9, Func. Count: 105, Neg. LLF: 150.63061463925985
Iteration: 10, Func. Count: 116, Neg. LLF: 150.59417537219534
Iteration: 11, Func. Count: 127, Neg. LLF: 150.56727139789731
Iteration: 12, Func. Count: 138, Neg. LLF: 150.54507652612244
Iteration: 13, Func. Count: 149, Neg. LLF: 150.53348572791487
Iteration: 14, Func. Count: 160, Neg. LLF: 150.5183785181589
Iteration: 15, Func. Count: 171, Neg. LLF: 150.51686868204106
Iteration: 16, Func. Count: 182, Neg. LLF: 150.51675450198994
Iteration: 17, Func. Count: 193, Neg. LLF: 150.5167105281384
Iteration: 18, Func. Count: 204, Neg. LLF: 150.51670962455174
Optimization terminated successfully (Exit mode 0)
Current function value: 150.51670962455174
Iterations: 18
Function evaluations: 204
Gradient evaluations: 18
Iteration: 1, Func. Count: 13, Neg. LLF: 185.20546927034763
Iteration: 2, Func. Count: 26, Neg. LLF: 154.64375151975136
Iteration: 3, Func. Count: 40, Neg. LLF: 150.71732819873156
Iteration: 4, Func. Count: 52, Neg. LLF: 150.81817532035672
Iteration: 5, Func. Count: 65, Neg. LLF: 150.71261083678309
Iteration: 6, Func. Count: 78, Neg. LLF: 150.6887242851052
Iteration: 7, Func. Count: 90, Neg. LLF: 150.6041256229056
Iteration: 8, Func. Count: 102, Neg. LLF: 150.94315523761912
Iteration: 9, Func. Count: 115, Neg. LLF: 150.59431781255626
Iteration: 10, Func. Count: 128, Neg. LLF: 152.27916926876568
Iteration: 11, Func. Count: 141, Neg. LLF: 150.5529613440714
Iteration: 12, Func. Count: 154, Neg. LLF: 150.53821027697296
Iteration: 13, Func. Count: 166, Neg. LLF: 150.52873352750592
Iteration: 14, Func. Count: 178, Neg. LLF: 150.51951450094347
Iteration: 15, Func. Count: 190, Neg. LLF: 150.5175429069789
Iteration: 16, Func. Count: 202, Neg. LLF: 150.51671299678725
Iteration: 17, Func. Count: 214, Neg. LLF: 150.51670959125659
Iteration: 18, Func. Count: 225, Neg. LLF: 150.51670959183534
Optimization terminated successfully (Exit mode 0)
Current function value: 150.51670959125659
Iterations: 18
Function evaluations: 225
Gradient evaluations: 18
Iteration: 1, Func. Count: 10, Neg. LLF: 150.2522164836863
Iteration: 2, Func. Count: 19, Neg. LLF: 150.257252328284
Iteration: 3, Func. Count: 29, Neg. LLF: 149.07082113000206
Iteration: 4, Func. Count: 38, Neg. LLF: 153.3220160300049
Iteration: 5, Func. Count: 48, Neg. LLF: 148.7405534218346
Iteration: 6, Func. Count: 57, Neg. LLF: 148.49239730106814
Iteration: 7, Func. Count: 66, Neg. LLF: 148.271449910668
Iteration: 8, Func. Count: 75, Neg. LLF: 148.1791407366914
Iteration: 9, Func. Count: 84, Neg. LLF: 148.12956784459462
Iteration: 10, Func. Count: 93, Neg. LLF: 148.12686989755142
Iteration: 11, Func. Count: 102, Neg. LLF: 148.12644212240895
Iteration: 12, Func. Count: 111, Neg. LLF: 148.1264349198905
Iteration: 13, Func. Count: 120, Neg. LLF: 148.12643403234958
Optimization terminated successfully (Exit mode 0)
Current function value: 148.12643403234958
Iterations: 13
Function evaluations: 120
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 184.3367752821428
Iteration: 2, Func. Count: 23, Neg. LLF: 156.1331872786018
Iteration: 3, Func. Count: 34, Neg. LLF: 150.87368619253246
Iteration: 4, Func. Count: 44, Neg. LLF: 150.61222760942303
Iteration: 5, Func. Count: 54, Neg. LLF: 152.50859296954525
Iteration: 6, Func. Count: 65, Neg. LLF: 150.5551056610686
Iteration: 7, Func. Count: 76, Neg. LLF: 150.1811241135269
Iteration: 8, Func. Count: 86, Neg. LLF: 150.10405198195963
Iteration: 9, Func. Count: 96, Neg. LLF: 150.09520143154668
Iteration: 10, Func. Count: 106, Neg. LLF: 150.08959699321295
Iteration: 11, Func. Count: 116, Neg. LLF: 150.08903167590765
Iteration: 12, Func. Count: 126, Neg. LLF: 150.08882582874267
Iteration: 13, Func. Count: 136, Neg. LLF: 150.0883814032295
Iteration: 14, Func. Count: 146, Neg. LLF: 150.087609578101
Iteration: 15, Func. Count: 156, Neg. LLF: 150.08676174792896
Iteration: 16, Func. Count: 166, Neg. LLF: 150.08642989761898
Iteration: 17, Func. Count: 176, Neg. LLF: 150.0863738519066
Iteration: 18, Func. Count: 186, Neg. LLF: 150.08636579446525
Iteration: 19, Func. Count: 195, Neg. LLF: 150.08636579450157
Optimization terminated successfully (Exit mode 0)
Current function value: 150.08636579446525
Iterations: 19
Function evaluations: 195
Gradient evaluations: 19
Iteration: 1, Func. Count: 12, Neg. LLF: 184.98895447975255
Iteration: 2, Func. Count: 24, Neg. LLF: 153.5120277453802
Iteration: 3, Func. Count: 36, Neg. LLF: 150.83911876117074
Iteration: 4, Func. Count: 47, Neg. LLF: 152.18982855045795
Iteration: 5, Func. Count: 59, Neg. LLF: 150.89996453110786
Iteration: 6, Func. Count: 71, Neg. LLF: 151.2512125428731
Iteration: 7, Func. Count: 83, Neg. LLF: 150.6922863641817
Iteration: 8, Func. Count: 94, Neg. LLF: 150.67897030669263
Iteration: 9, Func. Count: 105, Neg. LLF: 150.6573207436012
Iteration: 10, Func. Count: 116, Neg. LLF: 150.6455378087175
Iteration: 11, Func. Count: 127, Neg. LLF: 150.63112312222444
Iteration: 12, Func. Count: 138, Neg. LLF: 150.61638382134785
Iteration: 13, Func. Count: 149, Neg. LLF: 150.5416599776643
Iteration: 14, Func. Count: 160, Neg. LLF: 150.52489223234437
Iteration: 15, Func. Count: 171, Neg. LLF: 150.518011153902
Iteration: 16, Func. Count: 182, Neg. LLF: 150.51677576926102
Iteration: 17, Func. Count: 193, Neg. LLF: 150.516716398516
Iteration: 18, Func. Count: 204, Neg. LLF: 150.5167139091575
Iteration: 19, Func. Count: 215, Neg. LLF: 150.516709604044
Iteration: 20, Func. Count: 225, Neg. LLF: 150.51670960401464
Optimization terminated successfully (Exit mode 0)
Current function value: 150.516709604044
Iterations: 20
Function evaluations: 225
Gradient evaluations: 20
Iteration: 1, Func. Count: 13, Neg. LLF: 185.15035210072514
Iteration: 2, Func. Count: 26, Neg. LLF: 154.3441746296333
Iteration: 3, Func. Count: 40, Neg. LLF: 150.7263338529504
Iteration: 4, Func. Count: 52, Neg. LLF: 150.8686605869742
Iteration: 5, Func. Count: 65, Neg. LLF: 150.70497870881985
Iteration: 6, Func. Count: 78, Neg. LLF: 150.70835477775663
Iteration: 7, Func. Count: 91, Neg. LLF: 150.65197608319565
Iteration: 8, Func. Count: 103, Neg. LLF: 150.62764429252724
Iteration: 9, Func. Count: 115, Neg. LLF: 150.60521134026231
Iteration: 10, Func. Count: 127, Neg. LLF: 150.5727627097683
Iteration: 11, Func. Count: 139, Neg. LLF: 150.5316941213485
Iteration: 12, Func. Count: 151, Neg. LLF: 150.52044353237054
Iteration: 13, Func. Count: 163, Neg. LLF: 150.51770312325397
Iteration: 14, Func. Count: 175, Neg. LLF: 150.51675734284277
Iteration: 15, Func. Count: 187, Neg. LLF: 150.5167171243782
Iteration: 16, Func. Count: 199, Neg. LLF: 150.51670984486685
Iteration: 17, Func. Count: 210, Neg. LLF: 150.51670987910302
Optimization terminated successfully (Exit mode 0)
Current function value: 150.51670984486685
Iterations: 17
Function evaluations: 210
Gradient evaluations: 17
Iteration: 1, Func. Count: 14, Neg. LLF: 185.21605484074468
Iteration: 2, Func. Count: 28, Neg. LLF: 154.88873127265205
Iteration: 3, Func. Count: 43, Neg. LLF: 150.71710344171635
Iteration: 4, Func. Count: 56, Neg. LLF: 150.82305914746905
Iteration: 5, Func. Count: 70, Neg. LLF: 150.71028970789584
Iteration: 6, Func. Count: 84, Neg. LLF: 150.68308618044466
Iteration: 7, Func. Count: 97, Neg. LLF: 150.62809136594845
Iteration: 8, Func. Count: 110, Neg. LLF: 151.96431909020956
Iteration: 9, Func. Count: 124, Neg. LLF: 150.66269138297633
Iteration: 10, Func. Count: 138, Neg. LLF: 150.55377212104807
Iteration: 11, Func. Count: 152, Neg. LLF: 150.5311089839865
Iteration: 12, Func. Count: 165, Neg. LLF: 150.52473123174204
Iteration: 13, Func. Count: 178, Neg. LLF: 150.5217654820192
Iteration: 14, Func. Count: 191, Neg. LLF: 150.51992330065855
Iteration: 15, Func. Count: 204, Neg. LLF: 150.5189304991102
Iteration: 16, Func. Count: 217, Neg. LLF: 150.51695911339414
Iteration: 17, Func. Count: 230, Neg. LLF: 150.51673012678143
Iteration: 18, Func. Count: 243, Neg. LLF: 150.51671193228464
Iteration: 19, Func. Count: 256, Neg. LLF: 150.51670877006754
Iteration: 20, Func. Count: 269, Neg. LLF: 150.51710032434832
Optimization terminated successfully (Exit mode 0)
Current function value: 150.51670876519017
Iterations: 21
Function evaluations: 272
Gradient evaluations: 20
Iteration: 1, Func. Count: 7, Neg. LLF: 149.9634235713176
Iteration: 2, Func. Count: 13, Neg. LLF: 153.8753211959581
Iteration: 3, Func. Count: 20, Neg. LLF: 149.28208309375273
Iteration: 4, Func. Count: 26, Neg. LLF: 148.56823623753945
Iteration: 5, Func. Count: 32, Neg. LLF: 149.18686944437914
Iteration: 6, Func. Count: 39, Neg. LLF: 148.30338978289143
Iteration: 7, Func. Count: 45, Neg. LLF: 148.29653976996255
Iteration: 8, Func. Count: 51, Neg. LLF: 148.2964364668179
Iteration: 9, Func. Count: 57, Neg. LLF: 148.2964360583843
Optimization terminated successfully (Exit mode 0)
Current function value: 148.2964360583843
Iterations: 9
Function evaluations: 57
Gradient evaluations: 9
Iteration: 1, Func. Count: 8, Neg. LLF: 184.66822459244014
Iteration: 2, Func. Count: 17, Neg. LLF: 151.14181749310197
Iteration: 3, Func. Count: 24, Neg. LLF: 151.1232554744768
Iteration: 4, Func. Count: 31, Neg. LLF: 151.02691898793935
Iteration: 5, Func. Count: 38, Neg. LLF: 160.60642688115146
Iteration: 6, Func. Count: 46, Neg. LLF: 155.06053436897852
Iteration: 7, Func. Count: 54, Neg. LLF: 152.8241418933679
Iteration: 8, Func. Count: 62, Neg. LLF: 151.7458313641716
Iteration: 9, Func. Count: 70, Neg. LLF: 150.97002503655284
Iteration: 10, Func. Count: 78, Neg. LLF: 150.7227481133268
Iteration: 11, Func. Count: 85, Neg. LLF: 150.72830074447202
Iteration: 12, Func. Count: 93, Neg. LLF: 150.7164591431861
Iteration: 13, Func. Count: 100, Neg. LLF: 150.71459096885394
Iteration: 14, Func. Count: 107, Neg. LLF: 150.71457201891943
Iteration: 15, Func. Count: 113, Neg. LLF: 150.71457201890388
Optimization terminated successfully (Exit mode 0)
Current function value: 150.71457201891943
Iterations: 15
Function evaluations: 113
Gradient evaluations: 15
Iteration: 1, Func. Count: 9, Neg. LLF: 185.31717402445096
Iteration: 2, Func. Count: 18, Neg. LLF: 150.77496661141743
Iteration: 3, Func. Count: 26, Neg. LLF: 150.7372985512122
Iteration: 4, Func. Count: 34, Neg. LLF: 150.72184013225626
Iteration: 5, Func. Count: 42, Neg. LLF: 150.67148708675896
Iteration: 6, Func. Count: 50, Neg. LLF: 150.65980070276544
Iteration: 7, Func. Count: 58, Neg. LLF: 150.65067219243713
Iteration: 8, Func. Count: 66, Neg. LLF: 150.64130490140747
Iteration: 9, Func. Count: 74, Neg. LLF: 150.63854941330456
Iteration: 10, Func. Count: 82, Neg. LLF: 150.6381534862534
Iteration: 11, Func. Count: 90, Neg. LLF: 150.63812605677452
Iteration: 12, Func. Count: 98, Neg. LLF: 150.63812528296518
Optimization terminated successfully (Exit mode 0)
Current function value: 150.63812528296518
Iterations: 12
Function evaluations: 98
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 185.46171647565762
Iteration: 2, Func. Count: 20, Neg. LLF: 150.84600654495546
Iteration: 3, Func. Count: 29, Neg. LLF: 150.8114106217216
Iteration: 4, Func. Count: 38, Neg. LLF: 150.72375730127095
Iteration: 5, Func. Count: 47, Neg. LLF: 151.12257363738442
Iteration: 6, Func. Count: 57, Neg. LLF: 150.70019671726826
Iteration: 7, Func. Count: 66, Neg. LLF: 150.69288520865726
Iteration: 8, Func. Count: 75, Neg. LLF: 150.68338676799675
Iteration: 9, Func. Count: 84, Neg. LLF: 150.67413931259762
Iteration: 10, Func. Count: 93, Neg. LLF: 150.65544530200046
Iteration: 11, Func. Count: 102, Neg. LLF: 150.64248995428642
Iteration: 12, Func. Count: 111, Neg. LLF: 150.63825610561935
Iteration: 13, Func. Count: 120, Neg. LLF: 150.6381328256728
Iteration: 14, Func. Count: 129, Neg. LLF: 150.6381253098435
Iteration: 15, Func. Count: 138, Neg. LLF: 150.64274855307133
Optimization terminated successfully (Exit mode 0)
Current function value: 150.63812529759613
Iterations: 16
Function evaluations: 141
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 185.5092496973538
Iteration: 2, Func. Count: 22, Neg. LLF: 150.85983563142972
Iteration: 3, Func. Count: 32, Neg. LLF: 150.80410990951415
Iteration: 4, Func. Count: 42, Neg. LLF: 150.73902627002383
Iteration: 5, Func. Count: 52, Neg. LLF: 150.6938798909493
Iteration: 6, Func. Count: 62, Neg. LLF: 150.6987719527336
Iteration: 7, Func. Count: 73, Neg. LLF: 150.6542399074053
Iteration: 8, Func. Count: 83, Neg. LLF: 150.6419691070339
Iteration: 9, Func. Count: 93, Neg. LLF: 150.63862678940814
Iteration: 10, Func. Count: 103, Neg. LLF: 150.6382310507278
Iteration: 11, Func. Count: 113, Neg. LLF: 150.63813863837808
Iteration: 12, Func. Count: 123, Neg. LLF: 150.63812585252816
Iteration: 13, Func. Count: 133, Neg. LLF: 150.74878834910228
Optimization terminated successfully (Exit mode 0)
Current function value: 150.63812524457185
Iterations: 14
Function evaluations: 136
Gradient evaluations: 13
Iteration: 1, Func. Count: 8, Neg. LLF: 151.19145958683487
Iteration: 2, Func. Count: 15, Neg. LLF: 152.1273199188171
Iteration: 3, Func. Count: 23, Neg. LLF: 149.35161060194042
Iteration: 4, Func. Count: 30, Neg. LLF: 149.21299810160687
Iteration: 5, Func. Count: 37, Neg. LLF: 148.98756031999537
Iteration: 6, Func. Count: 44, Neg. LLF: 148.49767180705825
Iteration: 7, Func. Count: 51, Neg. LLF: 148.42918822662713
Iteration: 8, Func. Count: 58, Neg. LLF: 148.2607481471444
Iteration: 9, Func. Count: 65, Neg. LLF: 148.25370184207125
Iteration: 10, Func. Count: 72, Neg. LLF: 148.24924427837203
Iteration: 11, Func. Count: 79, Neg. LLF: 148.24887346872313
Iteration: 12, Func. Count: 86, Neg. LLF: 148.24887160406806
Iteration: 13, Func. Count: 92, Neg. LLF: 148.24887148548888
Optimization terminated successfully (Exit mode 0)
Current function value: 148.24887160406806
Iterations: 13
Function evaluations: 92
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 184.28861687163942
Iteration: 2, Func. Count: 19, Neg. LLF: 154.8251325307694
Iteration: 3, Func. Count: 28, Neg. LLF: 150.9537849660738
Iteration: 4, Func. Count: 36, Neg. LLF: 150.87162201158515
Iteration: 5, Func. Count: 44, Neg. LLF: 150.86675299239144
Iteration: 6, Func. Count: 52, Neg. LLF: 150.8575043298441
Iteration: 7, Func. Count: 60, Neg. LLF: 150.85556678128384
Iteration: 8, Func. Count: 68, Neg. LLF: 150.85537937010045
Iteration: 9, Func. Count: 76, Neg. LLF: 150.85534849174218
Iteration: 10, Func. Count: 84, Neg. LLF: 150.85520817339147
Iteration: 11, Func. Count: 92, Neg. LLF: 150.8549377812713
Iteration: 12, Func. Count: 100, Neg. LLF: 150.85392050746188
Iteration: 13, Func. Count: 108, Neg. LLF: 150.784031687291
Iteration: 14, Func. Count: 116, Neg. LLF: 150.75805295944747
Iteration: 15, Func. Count: 124, Neg. LLF: 163.4016762191035
Iteration: 16, Func. Count: 133, Neg. LLF: 150.69928351765645
Iteration: 17, Func. Count: 141, Neg. LLF: 150.77044770017636
Iteration: 18, Func. Count: 150, Neg. LLF: 150.72714174104925
Iteration: 19, Func. Count: 159, Neg. LLF: 150.67884461679137
Iteration: 20, Func. Count: 167, Neg. LLF: 150.67872388380746
Iteration: 21, Func. Count: 175, Neg. LLF: 150.6787197809229
Iteration: 22, Func. Count: 183, Neg. LLF: 150.67871896332292
Optimization terminated successfully (Exit mode 0)
Current function value: 150.67871896332292
Iterations: 22
Function evaluations: 183
Gradient evaluations: 22
Iteration: 1, Func. Count: 10, Neg. LLF: 184.8994261921195
Iteration: 2, Func. Count: 20, Neg. LLF: 154.47362752420975
Iteration: 3, Func. Count: 30, Neg. LLF: 150.77965661226727
Iteration: 4, Func. Count: 39, Neg. LLF: 150.77887081831497
Iteration: 5, Func. Count: 49, Neg. LLF: 151.14468931327107
Iteration: 6, Func. Count: 60, Neg. LLF: 150.68987429380297
Iteration: 7, Func. Count: 69, Neg. LLF: 150.6743414213226
Iteration: 8, Func. Count: 78, Neg. LLF: 150.65568017521002
Iteration: 9, Func. Count: 87, Neg. LLF: 150.64716228392248
Iteration: 10, Func. Count: 96, Neg. LLF: 150.6290481815213
Iteration: 11, Func. Count: 105, Neg. LLF: 150.5993668670498
Iteration: 12, Func. Count: 114, Neg. LLF: 150.56830853781622
Iteration: 13, Func. Count: 123, Neg. LLF: 150.53841864640378
Iteration: 14, Func. Count: 132, Neg. LLF: 150.5310610997839
Iteration: 15, Func. Count: 141, Neg. LLF: 150.53041368925076
Iteration: 16, Func. Count: 150, Neg. LLF: 150.53039993695415
Iteration: 17, Func. Count: 160, Neg. LLF: 150.53033927202458
Iteration: 18, Func. Count: 169, Neg. LLF: 150.53033670237696
Iteration: 19, Func. Count: 177, Neg. LLF: 150.53033670236056
Optimization terminated successfully (Exit mode 0)
Current function value: 150.53033670237696
Iterations: 19
Function evaluations: 177
Gradient evaluations: 19
Iteration: 1, Func. Count: 11, Neg. LLF: 185.0813901155543
Iteration: 2, Func. Count: 22, Neg. LLF: 154.9663655665942
Iteration: 3, Func. Count: 34, Neg. LLF: 150.72205345973688
Iteration: 4, Func. Count: 44, Neg. LLF: 150.7099855154058
Iteration: 5, Func. Count: 54, Neg. LLF: 150.69136389012493
Iteration: 6, Func. Count: 64, Neg. LLF: 150.67443630354134
Iteration: 7, Func. Count: 74, Neg. LLF: 150.65226729241445
Iteration: 8, Func. Count: 84, Neg. LLF: 150.6076617087473
Iteration: 9, Func. Count: 94, Neg. LLF: 150.59007420344363
Iteration: 10, Func. Count: 104, Neg. LLF: 150.57754707370435
Iteration: 11, Func. Count: 114, Neg. LLF: 150.57541872136855
Iteration: 12, Func. Count: 124, Neg. LLF: 150.57487433093974
Iteration: 13, Func. Count: 134, Neg. LLF: 150.57456261311785
Iteration: 14, Func. Count: 144, Neg. LLF: 150.57450846631014
Iteration: 15, Func. Count: 154, Neg. LLF: 150.57450289847586
Iteration: 16, Func. Count: 163, Neg. LLF: 150.57450289842774
Optimization terminated successfully (Exit mode 0)
Current function value: 150.57450289847586
Iterations: 16
Function evaluations: 163
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 185.15589982821484
Iteration: 2, Func. Count: 24, Neg. LLF: 155.97289511465118
Iteration: 3, Func. Count: 37, Neg. LLF: 150.71090972604054
Iteration: 4, Func. Count: 48, Neg. LLF: 150.69921496136706
Iteration: 5, Func. Count: 59, Neg. LLF: 150.6827950385614
Iteration: 6, Func. Count: 70, Neg. LLF: 150.623471122888
Iteration: 7, Func. Count: 81, Neg. LLF: 150.59561684990578
Iteration: 8, Func. Count: 92, Neg. LLF: 150.58933659943824
Iteration: 9, Func. Count: 103, Neg. LLF: 150.57707587257437
Iteration: 10, Func. Count: 114, Neg. LLF: 150.5752681680994
Iteration: 11, Func. Count: 125, Neg. LLF: 150.5747823197205
Iteration: 12, Func. Count: 136, Neg. LLF: 150.57465596623572
Iteration: 13, Func. Count: 147, Neg. LLF: 150.57451853244152
Iteration: 14, Func. Count: 158, Neg. LLF: 150.57450344392163
Iteration: 15, Func. Count: 169, Neg. LLF: 150.5745027182013
Optimization terminated successfully (Exit mode 0)
Current function value: 150.5745027182013
Iterations: 15
Function evaluations: 169
Gradient evaluations: 15
Iteration: 1, Func. Count: 9, Neg. LLF: 153.49623004660765
Iteration: 2, Func. Count: 18, Neg. LLF: 149.6809897403253
Iteration: 3, Func. Count: 26, Neg. LLF: 150.33401232845046
Iteration: 4, Func. Count: 35, Neg. LLF: 149.0805077141063
Iteration: 5, Func. Count: 43, Neg. LLF: 149.67433584649746
Iteration: 6, Func. Count: 52, Neg. LLF: 148.58822512804912
Iteration: 7, Func. Count: 60, Neg. LLF: 148.2910701081402
Iteration: 8, Func. Count: 68, Neg. LLF: 148.15920015199737
Iteration: 9, Func. Count: 76, Neg. LLF: 148.13088573423815
Iteration: 10, Func. Count: 84, Neg. LLF: 148.12665516794445
Iteration: 11, Func. Count: 92, Neg. LLF: 148.1264464950022
Iteration: 12, Func. Count: 100, Neg. LLF: 148.1264349309696
Iteration: 13, Func. Count: 108, Neg. LLF: 148.12643402642075
Optimization terminated successfully (Exit mode 0)
Current function value: 148.12643402642075
Iterations: 13
Function evaluations: 108
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 184.3128155801606
Iteration: 2, Func. Count: 21, Neg. LLF: 156.70951618544115
Iteration: 3, Func. Count: 31, Neg. LLF: 150.88186861951547
Iteration: 4, Func. Count: 40, Neg. LLF: 150.61944321086057
Iteration: 5, Func. Count: 49, Neg. LLF: 152.47721033434536
Iteration: 6, Func. Count: 59, Neg. LLF: 150.53496334710607
Iteration: 7, Func. Count: 68, Neg. LLF: 150.17483184044423
Iteration: 8, Func. Count: 77, Neg. LLF: 150.101448678745
Iteration: 9, Func. Count: 86, Neg. LLF: 150.0955067964559
Iteration: 10, Func. Count: 95, Neg. LLF: 150.08955765353443
Iteration: 11, Func. Count: 104, Neg. LLF: 150.08920070306294
Iteration: 12, Func. Count: 113, Neg. LLF: 150.08895391599387
Iteration: 13, Func. Count: 122, Neg. LLF: 150.08834580100137
Iteration: 14, Func. Count: 131, Neg. LLF: 150.08742558963593
Iteration: 15, Func. Count: 140, Neg. LLF: 150.08663227393117
Iteration: 16, Func. Count: 149, Neg. LLF: 150.08641145822494
Iteration: 17, Func. Count: 158, Neg. LLF: 150.08637033984368
Iteration: 18, Func. Count: 167, Neg. LLF: 150.0863656575512
Iteration: 19, Func. Count: 175, Neg. LLF: 150.086365657565
Optimization terminated successfully (Exit mode 0)
Current function value: 150.0863656575512
Iterations: 19
Function evaluations: 175
Gradient evaluations: 19
Iteration: 1, Func. Count: 11, Neg. LLF: 184.96648400034772
Iteration: 2, Func. Count: 22, Neg. LLF: 153.62556133446486
Iteration: 3, Func. Count: 33, Neg. LLF: 150.84522443002845
Iteration: 4, Func. Count: 43, Neg. LLF: 152.1054495859076
Iteration: 5, Func. Count: 54, Neg. LLF: 150.94552815571805
Iteration: 6, Func. Count: 65, Neg. LLF: 151.50746186078516
Iteration: 7, Func. Count: 76, Neg. LLF: 150.69084928197643
Iteration: 8, Func. Count: 86, Neg. LLF: 150.678674862854
Iteration: 9, Func. Count: 96, Neg. LLF: 150.64918845971715
Iteration: 10, Func. Count: 106, Neg. LLF: 150.6377923654939
Iteration: 11, Func. Count: 116, Neg. LLF: 150.62245402146377
Iteration: 12, Func. Count: 126, Neg. LLF: 150.58096182003956
Iteration: 13, Func. Count: 136, Neg. LLF: 150.53982540595854
Iteration: 14, Func. Count: 146, Neg. LLF: 150.5247979963146
Iteration: 15, Func. Count: 156, Neg. LLF: 150.51984198248527
Iteration: 16, Func. Count: 166, Neg. LLF: 150.51696365180007
Iteration: 17, Func. Count: 176, Neg. LLF: 150.51673913303355
Iteration: 18, Func. Count: 186, Neg. LLF: 150.51671243347226
Iteration: 19, Func. Count: 196, Neg. LLF: 150.5167097520661
Iteration: 20, Func. Count: 205, Neg. LLF: 150.51670975203916
Optimization terminated successfully (Exit mode 0)
Current function value: 150.5167097520661
Iterations: 20
Function evaluations: 205
Gradient evaluations: 20
Iteration: 1, Func. Count: 12, Neg. LLF: 185.14543351455583
Iteration: 2, Func. Count: 24, Neg. LLF: 154.6086617829061
Iteration: 3, Func. Count: 37, Neg. LLF: 150.72440396007025
Iteration: 4, Func. Count: 48, Neg. LLF: 150.85425283173794
Iteration: 5, Func. Count: 60, Neg. LLF: 150.7146361727752
Iteration: 6, Func. Count: 72, Neg. LLF: 150.67159294869805
Iteration: 7, Func. Count: 83, Neg. LLF: 150.66014751802288
Iteration: 8, Func. Count: 94, Neg. LLF: 150.64333412077121
Iteration: 9, Func. Count: 105, Neg. LLF: 150.62919705166843
Iteration: 10, Func. Count: 116, Neg. LLF: 150.61142131530357
Iteration: 11, Func. Count: 127, Neg. LLF: 150.5854967382552
Iteration: 12, Func. Count: 138, Neg. LLF: 150.56987668780133
Iteration: 13, Func. Count: 149, Neg. LLF: 150.52637428271942
Iteration: 14, Func. Count: 160, Neg. LLF: 150.51732945230623
Iteration: 15, Func. Count: 171, Neg. LLF: 150.5168266690441
Iteration: 16, Func. Count: 182, Neg. LLF: 150.51674535299935
Iteration: 17, Func. Count: 193, Neg. LLF: 150.51671136281738
Iteration: 18, Func. Count: 204, Neg. LLF: 150.516709116526
Iteration: 19, Func. Count: 214, Neg. LLF: 150.51670915046827
Optimization terminated successfully (Exit mode 0)
Current function value: 150.516709116526
Iterations: 19
Function evaluations: 214
Gradient evaluations: 19
Iteration: 1, Func. Count: 13, Neg. LLF: 185.21801599018548
Iteration: 2, Func. Count: 26, Neg. LLF: 155.2279321608293
Iteration: 3, Func. Count: 40, Neg. LLF: 150.71648965226385
Iteration: 4, Func. Count: 52, Neg. LLF: 150.74634059756934
Iteration: 5, Func. Count: 65, Neg. LLF: 150.7181405675748
Iteration: 6, Func. Count: 78, Neg. LLF: 150.68541969256418
Iteration: 7, Func. Count: 90, Neg. LLF: 150.62055171862878
Iteration: 8, Func. Count: 102, Neg. LLF: 150.59855797952108
Iteration: 9, Func. Count: 114, Neg. LLF: 150.58021632475925
Iteration: 10, Func. Count: 126, Neg. LLF: 150.5771675853265
Iteration: 11, Func. Count: 138, Neg. LLF: 150.57527280518104
Iteration: 12, Func. Count: 150, Neg. LLF: 150.57470285997738
Iteration: 13, Func. Count: 162, Neg. LLF: 150.57455199981834
Iteration: 14, Func. Count: 174, Neg. LLF: 150.5745280163572
Iteration: 15, Func. Count: 186, Neg. LLF: 150.5745050649978
Iteration: 16, Func. Count: 198, Neg. LLF: 150.57450273576802
Iteration: 17, Func. Count: 209, Neg. LLF: 150.57450275305285
Optimization terminated successfully (Exit mode 0)
Current function value: 150.57450273576802
Iterations: 17
Function evaluations: 209
Gradient evaluations: 17
Iteration: 1, Func. Count: 10, Neg. LLF: 153.5996183359766
Iteration: 2, Func. Count: 20, Neg. LLF: 150.59100885831973
Iteration: 3, Func. Count: 30, Neg. LLF: 149.77412462221346
Iteration: 4, Func. Count: 39, Neg. LLF: 151.02222289686162
Iteration: 5, Func. Count: 49, Neg. LLF: 148.8878303585318
Iteration: 6, Func. Count: 58, Neg. LLF: 148.5972149248058
Iteration: 7, Func. Count: 67, Neg. LLF: 148.50039435150447
Iteration: 8, Func. Count: 76, Neg. LLF: 148.2421621186372
Iteration: 9, Func. Count: 85, Neg. LLF: 148.16884939052676
Iteration: 10, Func. Count: 94, Neg. LLF: 148.1472993898758
Iteration: 11, Func. Count: 103, Neg. LLF: 148.12344028151395
Iteration: 12, Func. Count: 112, Neg. LLF: 148.10388523578922
Iteration: 13, Func. Count: 121, Neg. LLF: 148.09650218375373
Iteration: 14, Func. Count: 130, Neg. LLF: 148.09344425430777
Iteration: 15, Func. Count: 139, Neg. LLF: 148.0914299371443
Iteration: 16, Func. Count: 148, Neg. LLF: 148.09005401622622
Iteration: 17, Func. Count: 157, Neg. LLF: 148.08939390257555
Iteration: 18, Func. Count: 166, Neg. LLF: 148.089305432888
Iteration: 19, Func. Count: 175, Neg. LLF: 148.0893014340961
Iteration: 20, Func. Count: 183, Neg. LLF: 148.08930110224634
Optimization terminated successfully (Exit mode 0)
Current function value: 148.0893014340961
Iterations: 20
Function evaluations: 183
Gradient evaluations: 20
Iteration: 1, Func. Count: 11, Neg. LLF: 184.25373142254935
Iteration: 2, Func. Count: 23, Neg. LLF: 156.43652745841877
Iteration: 3, Func. Count: 34, Neg. LLF: 149.61223030088723
Iteration: 4, Func. Count: 44, Neg. LLF: 149.0859258799585
Iteration: 5, Func. Count: 54, Neg. LLF: 152.38566646324858
Iteration: 6, Func. Count: 67, Neg. LLF: 148.74768383623177
Iteration: 7, Func. Count: 77, Neg. LLF: 148.54266870857103
Iteration: 8, Func. Count: 87, Neg. LLF: 148.24723780231326
Iteration: 9, Func. Count: 97, Neg. LLF: 148.14265656122618
Iteration: 10, Func. Count: 107, Neg. LLF: 148.10940480810984
Iteration: 11, Func. Count: 117, Neg. LLF: 148.09684055760204
Iteration: 12, Func. Count: 127, Neg. LLF: 148.0910141359052
Iteration: 13, Func. Count: 137, Neg. LLF: 148.08970834785492
Iteration: 14, Func. Count: 147, Neg. LLF: 148.08945270616368
Iteration: 15, Func. Count: 157, Neg. LLF: 148.08938086560258
Iteration: 16, Func. Count: 167, Neg. LLF: 148.08934686537845
Iteration: 17, Func. Count: 177, Neg. LLF: 148.08932252728073
Iteration: 18, Func. Count: 187, Neg. LLF: 148.08930727405007
Iteration: 19, Func. Count: 197, Neg. LLF: 148.0893021197608
Iteration: 20, Func. Count: 207, Neg. LLF: 148.0893014381604
Optimization terminated successfully (Exit mode 0)
Current function value: 148.0893014381604
Iterations: 20
Function evaluations: 207
Gradient evaluations: 20
Iteration: 1, Func. Count: 12, Neg. LLF: 184.9177349766307
Iteration: 2, Func. Count: 24, Neg. LLF: 153.5723648134558
Iteration: 3, Func. Count: 36, Neg. LLF: 153.35388094276294
Iteration: 4, Func. Count: 48, Neg. LLF: 149.28070139212156
Iteration: 5, Func. Count: 59, Neg. LLF: 149.17341042450178
Iteration: 6, Func. Count: 71, Neg. LLF: 148.69439346009963
Iteration: 7, Func. Count: 82, Neg. LLF: 148.42350666212496
Iteration: 8, Func. Count: 93, Neg. LLF: 149.80428802525955
Iteration: 9, Func. Count: 105, Neg. LLF: 148.231333989939
Iteration: 10, Func. Count: 116, Neg. LLF: 148.17492327637947
Iteration: 11, Func. Count: 127, Neg. LLF: 148.12543192033405
Iteration: 12, Func. Count: 138, Neg. LLF: 148.1123898127527
Iteration: 13, Func. Count: 149, Neg. LLF: 148.094312366068
Iteration: 14, Func. Count: 160, Neg. LLF: 148.09263747810314
Iteration: 15, Func. Count: 171, Neg. LLF: 148.08964646531072
Iteration: 16, Func. Count: 182, Neg. LLF: 148.0893315494676
Iteration: 17, Func. Count: 193, Neg. LLF: 148.08930333630718
Iteration: 18, Func. Count: 204, Neg. LLF: 148.08930183730135
Iteration: 19, Func. Count: 214, Neg. LLF: 148.08930202079887
Optimization terminated successfully (Exit mode 0)
Current function value: 148.08930183730135
Iterations: 19
Function evaluations: 214
Gradient evaluations: 19
Iteration: 1, Func. Count: 13, Neg. LLF: 185.0997167070408
Iteration: 2, Func. Count: 26, Neg. LLF: 153.41732743958866
Iteration: 3, Func. Count: 39, Neg. LLF: 153.9145977668918
Iteration: 4, Func. Count: 52, Neg. LLF: 149.31397134860174
Iteration: 5, Func. Count: 64, Neg. LLF: 150.47738713261046
Iteration: 6, Func. Count: 77, Neg. LLF: 149.07583686873156
Iteration: 7, Func. Count: 90, Neg. LLF: 148.34886088724068
Iteration: 8, Func. Count: 102, Neg. LLF: 148.13509865698904
Iteration: 9, Func. Count: 114, Neg. LLF: 148.09833420117403
Iteration: 10, Func. Count: 126, Neg. LLF: 148.095946887377
Iteration: 11, Func. Count: 138, Neg. LLF: 148.09250819100677
Iteration: 12, Func. Count: 150, Neg. LLF: 148.09081638024222
Iteration: 13, Func. Count: 162, Neg. LLF: 148.0897126038237
Iteration: 14, Func. Count: 174, Neg. LLF: 148.08947416524595
Iteration: 15, Func. Count: 186, Neg. LLF: 148.08937993160157
Iteration: 16, Func. Count: 198, Neg. LLF: 148.089340436533
Iteration: 17, Func. Count: 210, Neg. LLF: 148.08931914250957
Iteration: 18, Func. Count: 222, Neg. LLF: 148.08930711817547
Iteration: 19, Func. Count: 234, Neg. LLF: 148.08930222027533
Iteration: 20, Func. Count: 246, Neg. LLF: 148.08930143885453
Optimization terminated successfully (Exit mode 0)
Current function value: 148.08930143885453
Iterations: 20
Function evaluations: 246
Gradient evaluations: 20
Iteration: 1, Func. Count: 14, Neg. LLF: 185.17644812244185
Iteration: 2, Func. Count: 28, Neg. LLF: 154.06810462449943
Iteration: 3, Func. Count: 42, Neg. LLF: 152.49368772721564
Iteration: 4, Func. Count: 56, Neg. LLF: 149.51023156776785
Iteration: 5, Func. Count: 69, Neg. LLF: 149.53484019980618
Iteration: 6, Func. Count: 83, Neg. LLF: 151.14999977453473
Iteration: 7, Func. Count: 97, Neg. LLF: 148.18503220977516
Iteration: 8, Func. Count: 111, Neg. LLF: 148.03320641505232
Iteration: 9, Func. Count: 124, Neg. LLF: 148.01036551351393
Iteration: 10, Func. Count: 137, Neg. LLF: 147.99038287954198
Iteration: 11, Func. Count: 150, Neg. LLF: 147.98359128743027
Iteration: 12, Func. Count: 163, Neg. LLF: 147.97799969169768
Iteration: 13, Func. Count: 176, Neg. LLF: 147.97586811871878
Iteration: 14, Func. Count: 189, Neg. LLF: 147.9757703212186
Iteration: 15, Func. Count: 202, Neg. LLF: 147.97575222539814
Iteration: 16, Func. Count: 215, Neg. LLF: 147.97574478824708
Iteration: 17, Func. Count: 228, Neg. LLF: 147.97574278571065
Iteration: 18, Func. Count: 240, Neg. LLF: 147.9757427631052
Optimization terminated successfully (Exit mode 0)
Current function value: 147.97574278571065
Iterations: 18
Function evaluations: 240
Gradient evaluations: 18
Iteration: 1, Func. Count: 11, Neg. LLF: 151.51756783555055
Iteration: 2, Func. Count: 21, Neg. LLF: 149.84591839884854
Iteration: 3, Func. Count: 31, Neg. LLF: 148.79572093904812
Iteration: 4, Func. Count: 41, Neg. LLF: 148.53232465139084
Iteration: 5, Func. Count: 51, Neg. LLF: 148.46422740017985
Iteration: 6, Func. Count: 61, Neg. LLF: 148.31477037085853
Iteration: 7, Func. Count: 71, Neg. LLF: 148.16673917796015
Iteration: 8, Func. Count: 81, Neg. LLF: 148.09537403237454
Iteration: 9, Func. Count: 91, Neg. LLF: 148.08952718243498
Iteration: 10, Func. Count: 101, Neg. LLF: 148.0893198013903
Iteration: 11, Func. Count: 111, Neg. LLF: 148.08930195245082
Iteration: 12, Func. Count: 121, Neg. LLF: 148.08930141647
Optimization terminated successfully (Exit mode 0)
Current function value: 148.08930141647
Iterations: 12
Function evaluations: 121
Gradient evaluations: 12
Iteration: 1, Func. Count: 12, Neg. LLF: 184.25700985842792
Iteration: 2, Func. Count: 25, Neg. LLF: 156.25264053373732
Iteration: 3, Func. Count: 37, Neg. LLF: 149.63987847504134
Iteration: 4, Func. Count: 48, Neg. LLF: 149.11196066559975
Iteration: 5, Func. Count: 59, Neg. LLF: 152.66964562242143
Iteration: 6, Func. Count: 73, Neg. LLF: 148.74114401339514
Iteration: 7, Func. Count: 84, Neg. LLF: 148.51069893324097
Iteration: 8, Func. Count: 95, Neg. LLF: 148.30073859070268
Iteration: 9, Func. Count: 106, Neg. LLF: 148.15175901342806
Iteration: 10, Func. Count: 117, Neg. LLF: 148.1138199512513
Iteration: 11, Func. Count: 128, Neg. LLF: 148.0981515953058
Iteration: 12, Func. Count: 139, Neg. LLF: 148.09146792302107
Iteration: 13, Func. Count: 150, Neg. LLF: 148.08975801500654
Iteration: 14, Func. Count: 161, Neg. LLF: 148.08947162040712
Iteration: 15, Func. Count: 172, Neg. LLF: 148.08937703917965
Iteration: 16, Func. Count: 183, Neg. LLF: 148.08934091340367
Iteration: 17, Func. Count: 194, Neg. LLF: 148.0893224771913
Iteration: 18, Func. Count: 205, Neg. LLF: 148.0893097676243
Iteration: 19, Func. Count: 216, Neg. LLF: 148.0893031179684
Iteration: 20, Func. Count: 227, Neg. LLF: 148.08930154166217
Iteration: 21, Func. Count: 237, Neg. LLF: 148.08930160031335
Optimization terminated successfully (Exit mode 0)
Current function value: 148.08930154166217
Iterations: 21
Function evaluations: 237
Gradient evaluations: 21
Iteration: 1, Func. Count: 13, Neg. LLF: 184.93075597308336
Iteration: 2, Func. Count: 26, Neg. LLF: 153.58094998194073
Iteration: 3, Func. Count: 39, Neg. LLF: 153.19331084819024
Iteration: 4, Func. Count: 52, Neg. LLF: 149.28193570713057
Iteration: 5, Func. Count: 64, Neg. LLF: 149.1691213335684
Iteration: 6, Func. Count: 77, Neg. LLF: 148.70224303058913
Iteration: 7, Func. Count: 90, Neg. LLF: 148.4318528242561
Iteration: 8, Func. Count: 102, Neg. LLF: 148.43724446738446
Iteration: 9, Func. Count: 115, Neg. LLF: 148.2122790865428
Iteration: 10, Func. Count: 127, Neg. LLF: 148.1512653037064
Iteration: 11, Func. Count: 139, Neg. LLF: 148.12426883491574
Iteration: 12, Func. Count: 151, Neg. LLF: 148.10588089790448
Iteration: 13, Func. Count: 163, Neg. LLF: 148.09777897507828
Iteration: 14, Func. Count: 175, Neg. LLF: 148.09337134240562
Iteration: 15, Func. Count: 187, Neg. LLF: 148.09145862742008
Iteration: 16, Func. Count: 199, Neg. LLF: 148.08982302139722
Iteration: 17, Func. Count: 211, Neg. LLF: 148.08936186367472
Iteration: 18, Func. Count: 223, Neg. LLF: 148.08930627330122
Iteration: 19, Func. Count: 235, Neg. LLF: 148.0893029592607
Iteration: 20, Func. Count: 246, Neg. LLF: 148.08930314278552
Optimization terminated successfully (Exit mode 0)
Current function value: 148.0893029592607
Iterations: 20
Function evaluations: 246
Gradient evaluations: 20
Iteration: 1, Func. Count: 14, Neg. LLF: 185.1091838707689
Iteration: 2, Func. Count: 28, Neg. LLF: 153.40480032130208
Iteration: 3, Func. Count: 42, Neg. LLF: 153.9321091620585
Iteration: 4, Func. Count: 56, Neg. LLF: 149.3206258530374
Iteration: 5, Func. Count: 69, Neg. LLF: 150.48553320817817
Iteration: 6, Func. Count: 83, Neg. LLF: 149.09525492303186
Iteration: 7, Func. Count: 97, Neg. LLF: 148.36212759146753
Iteration: 8, Func. Count: 110, Neg. LLF: 148.13563091748847
Iteration: 9, Func. Count: 123, Neg. LLF: 148.0986264323772
Iteration: 10, Func. Count: 136, Neg. LLF: 148.0960497744415
Iteration: 11, Func. Count: 149, Neg. LLF: 148.09265680157833
Iteration: 12, Func. Count: 162, Neg. LLF: 148.09092592177214
Iteration: 13, Func. Count: 175, Neg. LLF: 148.08976796405068
Iteration: 14, Func. Count: 188, Neg. LLF: 148.08948649316906
Iteration: 15, Func. Count: 201, Neg. LLF: 148.08938117122676
Iteration: 16, Func. Count: 214, Neg. LLF: 148.08934223954796
Iteration: 17, Func. Count: 227, Neg. LLF: 148.08932126611353
Iteration: 18, Func. Count: 240, Neg. LLF: 148.08930781287606
Iteration: 19, Func. Count: 253, Neg. LLF: 148.08930231434934
Iteration: 20, Func. Count: 266, Neg. LLF: 148.08930144939927
Optimization terminated successfully (Exit mode 0)
Current function value: 148.08930144939927
Iterations: 20
Function evaluations: 266
Gradient evaluations: 20
Iteration: 1, Func. Count: 15, Neg. LLF: 185.18661180757528
Iteration: 2, Func. Count: 30, Neg. LLF: 154.03014165263266
Iteration: 3, Func. Count: 45, Neg. LLF: 152.44155648209212
Iteration: 4, Func. Count: 60, Neg. LLF: 149.51333713613158
Iteration: 5, Func. Count: 74, Neg. LLF: 149.5479291149511
Iteration: 6, Func. Count: 89, Neg. LLF: 151.18501763155436
Iteration: 7, Func. Count: 104, Neg. LLF: 148.18106363813237
Iteration: 8, Func. Count: 118, Neg. LLF: 148.02879877318952
Iteration: 9, Func. Count: 132, Neg. LLF: 148.00979240693889
Iteration: 10, Func. Count: 146, Neg. LLF: 147.9885671277531
Iteration: 11, Func. Count: 160, Neg. LLF: 147.98352203000556
Iteration: 12, Func. Count: 174, Neg. LLF: 147.97591204478593
Iteration: 13, Func. Count: 188, Neg. LLF: 147.97578226304046
Iteration: 14, Func. Count: 202, Neg. LLF: 147.97576314291067
Iteration: 15, Func. Count: 216, Neg. LLF: 147.9757479392932
Iteration: 16, Func. Count: 230, Neg. LLF: 147.97574248590155
Iteration: 17, Func. Count: 244, Neg. LLF: 147.975741871859
Optimization terminated successfully (Exit mode 0)
Current function value: 147.975741871859
Iterations: 17
Function evaluations: 244
Gradient evaluations: 17
Iteration: 1, Func. Count: 8, Neg. LLF: 149.72535643590874
Iteration: 2, Func. Count: 15, Neg. LLF: 152.42345088071093
Iteration: 3, Func. Count: 23, Neg. LLF: 149.28221582462095
Iteration: 4, Func. Count: 30, Neg. LLF: 148.54096148135133
Iteration: 5, Func. Count: 37, Neg. LLF: 149.12768617814805
Iteration: 6, Func. Count: 45, Neg. LLF: 148.30253283202563
Iteration: 7, Func. Count: 52, Neg. LLF: 148.29652993741752
Iteration: 8, Func. Count: 59, Neg. LLF: 148.29643661596123
Iteration: 9, Func. Count: 66, Neg. LLF: 148.2964362711219
Optimization terminated successfully (Exit mode 0)
Current function value: 148.2964362711219
Iterations: 9
Function evaluations: 66
Gradient evaluations: 9
Iteration: 1, Func. Count: 9, Neg. LLF: 184.6453510402285
Iteration: 2, Func. Count: 19, Neg. LLF: 151.1416613301572
Iteration: 3, Func. Count: 27, Neg. LLF: 151.11813729965922
Iteration: 4, Func. Count: 35, Neg. LLF: 151.02650185706347
Iteration: 5, Func. Count: 43, Neg. LLF: 161.95287400783747
Iteration: 6, Func. Count: 52, Neg. LLF: 155.43577813875987
Iteration: 7, Func. Count: 61, Neg. LLF: 152.93227877998916
Iteration: 8, Func. Count: 70, Neg. LLF: 151.75408368178066
Iteration: 9, Func. Count: 79, Neg. LLF: 150.97130629034572
Iteration: 10, Func. Count: 88, Neg. LLF: 150.72415156827614
Iteration: 11, Func. Count: 96, Neg. LLF: 150.72813143757858
Iteration: 12, Func. Count: 105, Neg. LLF: 150.71691167323303
Iteration: 13, Func. Count: 113, Neg. LLF: 150.71459892933962
Iteration: 14, Func. Count: 121, Neg. LLF: 150.71457212528247
Iteration: 15, Func. Count: 128, Neg. LLF: 150.71457212519482
Optimization terminated successfully (Exit mode 0)
Current function value: 150.71457212528247
Iterations: 15
Function evaluations: 128
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 185.3181537037144
Iteration: 2, Func. Count: 20, Neg. LLF: 150.7540034448115
Iteration: 3, Func. Count: 29, Neg. LLF: 150.75525047651098
Iteration: 4, Func. Count: 39, Neg. LLF: 150.7280506457301
Iteration: 5, Func. Count: 48, Neg. LLF: 150.69739507259288
Iteration: 6, Func. Count: 57, Neg. LLF: 150.67668832896396
Iteration: 7, Func. Count: 66, Neg. LLF: 150.66518652974386
Iteration: 8, Func. Count: 75, Neg. LLF: 150.65461641531553
Iteration: 9, Func. Count: 84, Neg. LLF: 150.63995627019528
Iteration: 10, Func. Count: 93, Neg. LLF: 150.6382075301784
Iteration: 11, Func. Count: 102, Neg. LLF: 150.63812577317614
Iteration: 12, Func. Count: 111, Neg. LLF: 150.63812521076838
Optimization terminated successfully (Exit mode 0)
Current function value: 150.63812521076838
Iterations: 12
Function evaluations: 111
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 185.459367890774
Iteration: 2, Func. Count: 22, Neg. LLF: 150.84577346022354
Iteration: 3, Func. Count: 32, Neg. LLF: 150.8111555811512
Iteration: 4, Func. Count: 42, Neg. LLF: 150.72430465293743
Iteration: 5, Func. Count: 52, Neg. LLF: 150.99093236157708
Iteration: 6, Func. Count: 63, Neg. LLF: 150.69911005622814
Iteration: 7, Func. Count: 73, Neg. LLF: 150.6923803177588
Iteration: 8, Func. Count: 83, Neg. LLF: 150.6815588033209
Iteration: 9, Func. Count: 93, Neg. LLF: 150.67120146776978
Iteration: 10, Func. Count: 103, Neg. LLF: 150.6515283296945
Iteration: 11, Func. Count: 113, Neg. LLF: 150.64084298068676
Iteration: 12, Func. Count: 123, Neg. LLF: 150.6381465031871
Iteration: 13, Func. Count: 133, Neg. LLF: 150.6381258094349
Iteration: 14, Func. Count: 142, Neg. LLF: 150.6381258278259
Optimization terminated successfully (Exit mode 0)
Current function value: 150.6381258094349
Iterations: 14
Function evaluations: 142
Gradient evaluations: 14
Iteration: 1, Func. Count: 12, Neg. LLF: 185.51025843478845
Iteration: 2, Func. Count: 24, Neg. LLF: 150.85969343455247
Iteration: 3, Func. Count: 35, Neg. LLF: 150.80046272241432
Iteration: 4, Func. Count: 46, Neg. LLF: 150.7538428151574
Iteration: 5, Func. Count: 57, Neg. LLF: 150.69987257259234
Iteration: 6, Func. Count: 68, Neg. LLF: 150.6754476326785
Iteration: 7, Func. Count: 79, Neg. LLF: 150.665048688703
Iteration: 8, Func. Count: 90, Neg. LLF: 150.65524086835083
Iteration: 9, Func. Count: 101, Neg. LLF: 150.64316167120035
Iteration: 10, Func. Count: 112, Neg. LLF: 150.6388971840104
Iteration: 11, Func. Count: 123, Neg. LLF: 150.63813605105446
Iteration: 12, Func. Count: 134, Neg. LLF: 150.63812597565345
Iteration: 13, Func. Count: 145, Neg. LLF: 150.6381252158143
Optimization terminated successfully (Exit mode 0)
Current function value: 150.6381252158143
Iterations: 13
Function evaluations: 145
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 150.96679409802684
Iteration: 2, Func. Count: 17, Neg. LLF: 151.57697437053292
Iteration: 3, Func. Count: 26, Neg. LLF: 149.3691829217811
Iteration: 4, Func. Count: 34, Neg. LLF: 149.2518055820343
Iteration: 5, Func. Count: 42, Neg. LLF: 149.0145320403765
Iteration: 6, Func. Count: 50, Neg. LLF: 148.63515395883496
Iteration: 7, Func. Count: 58, Neg. LLF: 148.35982363439248
Iteration: 8, Func. Count: 66, Neg. LLF: 148.28923920404782
Iteration: 9, Func. Count: 74, Neg. LLF: 148.2740079279166
Iteration: 10, Func. Count: 82, Neg. LLF: 148.25028067546455
Iteration: 11, Func. Count: 90, Neg. LLF: 148.24889154129696
Iteration: 12, Func. Count: 98, Neg. LLF: 148.24887178598757
Iteration: 13, Func. Count: 105, Neg. LLF: 148.24887166740717
Optimization terminated successfully (Exit mode 0)
Current function value: 148.24887178598757
Iterations: 13
Function evaluations: 105
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 184.26639003945547
Iteration: 2, Func. Count: 21, Neg. LLF: 154.82575695178505
Iteration: 3, Func. Count: 31, Neg. LLF: 150.9520947604821
Iteration: 4, Func. Count: 40, Neg. LLF: 150.8716900337246
Iteration: 5, Func. Count: 49, Neg. LLF: 150.86677811292935
Iteration: 6, Func. Count: 58, Neg. LLF: 150.8577059348045
Iteration: 7, Func. Count: 67, Neg. LLF: 150.85558821821553
Iteration: 8, Func. Count: 76, Neg. LLF: 150.85535995770786
Iteration: 9, Func. Count: 85, Neg. LLF: 150.85532900693738
Iteration: 10, Func. Count: 94, Neg. LLF: 150.85520912006436
Iteration: 11, Func. Count: 103, Neg. LLF: 150.85496180533625
Iteration: 12, Func. Count: 112, Neg. LLF: 150.8540906245063
Iteration: 13, Func. Count: 121, Neg. LLF: 150.7885241408907
Iteration: 14, Func. Count: 130, Neg. LLF: 151.04642142713976
Iteration: 15, Func. Count: 140, Neg. LLF: 152.32367874897471
Iteration: 16, Func. Count: 150, Neg. LLF: 150.90561808319256
Iteration: 17, Func. Count: 160, Neg. LLF: 151.3853069818162
Iteration: 18, Func. Count: 171, Neg. LLF: 150.80034240593014
Iteration: 19, Func. Count: 181, Neg. LLF: 150.6812094109143
Iteration: 20, Func. Count: 191, Neg. LLF: 150.67909550288192
Iteration: 21, Func. Count: 200, Neg. LLF: 150.6787475681521
Iteration: 22, Func. Count: 209, Neg. LLF: 150.67872211714038
Iteration: 23, Func. Count: 218, Neg. LLF: 150.67871898275322
Iteration: 24, Func. Count: 226, Neg. LLF: 150.67871898274754
Optimization terminated successfully (Exit mode 0)
Current function value: 150.67871898275322
Iterations: 24
Function evaluations: 226
Gradient evaluations: 24
Iteration: 1, Func. Count: 11, Neg. LLF: 184.89913785241686
Iteration: 2, Func. Count: 22, Neg. LLF: 154.49706598961106
Iteration: 3, Func. Count: 33, Neg. LLF: 150.77914541081816
Iteration: 4, Func. Count: 43, Neg. LLF: 150.87972730351225
Iteration: 5, Func. Count: 54, Neg. LLF: 151.09385323852445
Iteration: 6, Func. Count: 65, Neg. LLF: 150.6885397245413
Iteration: 7, Func. Count: 75, Neg. LLF: 150.65848544808898
Iteration: 8, Func. Count: 85, Neg. LLF: 150.65166003357132
Iteration: 9, Func. Count: 95, Neg. LLF: 150.63876302378026
Iteration: 10, Func. Count: 105, Neg. LLF: 150.62535258480358
Iteration: 11, Func. Count: 115, Neg. LLF: 150.54540317601038
Iteration: 12, Func. Count: 125, Neg. LLF: 150.54530621754427
Iteration: 13, Func. Count: 136, Neg. LLF: 150.53096238397492
Iteration: 14, Func. Count: 146, Neg. LLF: 150.53041750548132
Iteration: 15, Func. Count: 156, Neg. LLF: 150.5303517092522
Iteration: 16, Func. Count: 166, Neg. LLF: 150.53033697228187
Iteration: 17, Func. Count: 175, Neg. LLF: 150.5303369722887
Optimization terminated successfully (Exit mode 0)
Current function value: 150.53033697228187
Iterations: 17
Function evaluations: 175
Gradient evaluations: 17
Iteration: 1, Func. Count: 12, Neg. LLF: 185.0780895837476
Iteration: 2, Func. Count: 24, Neg. LLF: 154.98465968851337
Iteration: 3, Func. Count: 37, Neg. LLF: 150.72204182048864
Iteration: 4, Func. Count: 48, Neg. LLF: 150.7101511053557
Iteration: 5, Func. Count: 59, Neg. LLF: 150.69100799554658
Iteration: 6, Func. Count: 70, Neg. LLF: 150.6745177905435
Iteration: 7, Func. Count: 81, Neg. LLF: 150.6518043987496
Iteration: 8, Func. Count: 92, Neg. LLF: 150.60909075772014
Iteration: 9, Func. Count: 103, Neg. LLF: 150.59435032443514
Iteration: 10, Func. Count: 114, Neg. LLF: 150.5790358692108
Iteration: 11, Func. Count: 125, Neg. LLF: 150.57577530789558
Iteration: 12, Func. Count: 136, Neg. LLF: 150.5749383994117
Iteration: 13, Func. Count: 147, Neg. LLF: 150.574633534491
Iteration: 14, Func. Count: 158, Neg. LLF: 150.5745185742161
Iteration: 15, Func. Count: 169, Neg. LLF: 150.57450334919736
Iteration: 16, Func. Count: 180, Neg. LLF: 150.57450273012523
Optimization terminated successfully (Exit mode 0)
Current function value: 150.57450273012523
Iterations: 16
Function evaluations: 180
Gradient evaluations: 16
Iteration: 1, Func. Count: 13, Neg. LLF: 185.1558079429161
Iteration: 2, Func. Count: 26, Neg. LLF: 156.16125064343134
Iteration: 3, Func. Count: 40, Neg. LLF: 150.71136745000553
Iteration: 4, Func. Count: 52, Neg. LLF: 150.69945112189083
Iteration: 5, Func. Count: 64, Neg. LLF: 150.68319863706094
Iteration: 6, Func. Count: 76, Neg. LLF: 150.6244059394865
Iteration: 7, Func. Count: 88, Neg. LLF: 150.59727798986708
Iteration: 8, Func. Count: 100, Neg. LLF: 150.59073631561984
Iteration: 9, Func. Count: 112, Neg. LLF: 150.57730437324585
Iteration: 10, Func. Count: 124, Neg. LLF: 150.57521660332506
Iteration: 11, Func. Count: 136, Neg. LLF: 150.5747522240261
Iteration: 12, Func. Count: 148, Neg. LLF: 150.57464432260858
Iteration: 13, Func. Count: 160, Neg. LLF: 150.57451288473743
Iteration: 14, Func. Count: 172, Neg. LLF: 150.57450375507858
Iteration: 15, Func. Count: 184, Neg. LLF: 150.57450276165537
Optimization terminated successfully (Exit mode 0)
Current function value: 150.57450276165537
Iterations: 15
Function evaluations: 184
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 153.2286727707478
Iteration: 2, Func. Count: 20, Neg. LLF: 149.89870171962804
Iteration: 3, Func. Count: 29, Neg. LLF: 150.29981312728256
Iteration: 4, Func. Count: 39, Neg. LLF: 149.1391323855825
Iteration: 5, Func. Count: 48, Neg. LLF: 149.04950310870763
Iteration: 6, Func. Count: 57, Neg. LLF: 148.89231862770205
Iteration: 7, Func. Count: 66, Neg. LLF: 148.39348712802948
Iteration: 8, Func. Count: 75, Neg. LLF: 148.3574837948227
Iteration: 9, Func. Count: 85, Neg. LLF: 148.1413351615438
Iteration: 10, Func. Count: 94, Neg. LLF: 148.12719299717406
Iteration: 11, Func. Count: 103, Neg. LLF: 148.1265346725437
Iteration: 12, Func. Count: 112, Neg. LLF: 148.12644905991678
Iteration: 13, Func. Count: 121, Neg. LLF: 148.1264340397197
Iteration: 14, Func. Count: 129, Neg. LLF: 148.1264340160339
Optimization terminated successfully (Exit mode 0)
Current function value: 148.1264340397197
Iterations: 14
Function evaluations: 129
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 184.290328683732
Iteration: 2, Func. Count: 23, Neg. LLF: 156.4480984624085
Iteration: 3, Func. Count: 34, Neg. LLF: 150.87245022413705
Iteration: 4, Func. Count: 44, Neg. LLF: 150.61383958797148
Iteration: 5, Func. Count: 54, Neg. LLF: 152.48372220729897
Iteration: 6, Func. Count: 65, Neg. LLF: 150.66928607207686
Iteration: 7, Func. Count: 76, Neg. LLF: 150.19148280616062
Iteration: 8, Func. Count: 86, Neg. LLF: 150.1014033813973
Iteration: 9, Func. Count: 96, Neg. LLF: 150.09449214476328
Iteration: 10, Func. Count: 106, Neg. LLF: 150.08983392563246
Iteration: 11, Func. Count: 116, Neg. LLF: 150.08930500164203
Iteration: 12, Func. Count: 126, Neg. LLF: 150.08906570895786
Iteration: 13, Func. Count: 136, Neg. LLF: 150.088569040543
Iteration: 14, Func. Count: 146, Neg. LLF: 150.08770381547708
Iteration: 15, Func. Count: 156, Neg. LLF: 150.08678178004487
Iteration: 16, Func. Count: 166, Neg. LLF: 150.08643121501404
Iteration: 17, Func. Count: 176, Neg. LLF: 150.08637391215888
Iteration: 18, Func. Count: 186, Neg. LLF: 150.08636581728314
Iteration: 19, Func. Count: 195, Neg. LLF: 150.08636581732557
Optimization terminated successfully (Exit mode 0)
Current function value: 150.08636581728314
Iterations: 19
Function evaluations: 195
Gradient evaluations: 19
Iteration: 1, Func. Count: 12, Neg. LLF: 184.96680425769804
Iteration: 2, Func. Count: 24, Neg. LLF: 153.60596390124297
Iteration: 3, Func. Count: 36, Neg. LLF: 150.83844472143446
Iteration: 4, Func. Count: 47, Neg. LLF: 152.21493633996772
Iteration: 5, Func. Count: 59, Neg. LLF: 150.9730723153296
Iteration: 6, Func. Count: 71, Neg. LLF: 151.91515403945303
Iteration: 7, Func. Count: 83, Neg. LLF: 150.6893857350011
Iteration: 8, Func. Count: 94, Neg. LLF: 150.67744749451214
Iteration: 9, Func. Count: 105, Neg. LLF: 150.64476814869693
Iteration: 10, Func. Count: 116, Neg. LLF: 150.6308771977232
Iteration: 11, Func. Count: 127, Neg. LLF: 150.60407222819828
Iteration: 12, Func. Count: 138, Neg. LLF: 150.5629879276664
Iteration: 13, Func. Count: 149, Neg. LLF: 150.53600387424427
Iteration: 14, Func. Count: 160, Neg. LLF: 150.526729281521
Iteration: 15, Func. Count: 171, Neg. LLF: 150.53042490143466
Iteration: 16, Func. Count: 183, Neg. LLF: 150.51752538064838
Iteration: 17, Func. Count: 194, Neg. LLF: 150.51699956879816
Iteration: 18, Func. Count: 205, Neg. LLF: 150.51677845192268
Iteration: 19, Func. Count: 216, Neg. LLF: 150.5167106420373
Iteration: 20, Func. Count: 227, Neg. LLF: 150.51670959398524
Iteration: 21, Func. Count: 237, Neg. LLF: 150.516709593963
Optimization terminated successfully (Exit mode 0)
Current function value: 150.51670959398524
Iterations: 21
Function evaluations: 237
Gradient evaluations: 21
Iteration: 1, Func. Count: 13, Neg. LLF: 185.142567365842
Iteration: 2, Func. Count: 26, Neg. LLF: 154.6204509939668
Iteration: 3, Func. Count: 40, Neg. LLF: 150.72440142204667
Iteration: 4, Func. Count: 52, Neg. LLF: 150.85217963985482
Iteration: 5, Func. Count: 65, Neg. LLF: 150.71605541436173
Iteration: 6, Func. Count: 78, Neg. LLF: 150.67037615733867
Iteration: 7, Func. Count: 90, Neg. LLF: 150.66057852006992
Iteration: 8, Func. Count: 102, Neg. LLF: 150.64655370141043
Iteration: 9, Func. Count: 114, Neg. LLF: 150.63291671945825
Iteration: 10, Func. Count: 126, Neg. LLF: 150.59837295549286
Iteration: 11, Func. Count: 138, Neg. LLF: 150.58418682867074
Iteration: 12, Func. Count: 150, Neg. LLF: 150.5395630636826
Iteration: 13, Func. Count: 162, Neg. LLF: 150.52259452742808
Iteration: 14, Func. Count: 174, Neg. LLF: 150.51700734946263
Iteration: 15, Func. Count: 186, Neg. LLF: 150.51671733405647
Iteration: 16, Func. Count: 198, Neg. LLF: 150.516711421994
Iteration: 17, Func. Count: 210, Neg. LLF: 150.51670943686318
Iteration: 18, Func. Count: 221, Neg. LLF: 150.51670947096778
Optimization terminated successfully (Exit mode 0)
Current function value: 150.51670943686318
Iterations: 18
Function evaluations: 221
Gradient evaluations: 18
Iteration: 1, Func. Count: 14, Neg. LLF: 185.2182716190724
Iteration: 2, Func. Count: 28, Neg. LLF: 155.46863251915607
Iteration: 3, Func. Count: 43, Neg. LLF: 150.71559882640796
Iteration: 4, Func. Count: 56, Neg. LLF: 150.72228938219575
Iteration: 5, Func. Count: 70, Neg. LLF: 150.70008826468091
Iteration: 6, Func. Count: 83, Neg. LLF: 150.67125689532327
Iteration: 7, Func. Count: 96, Neg. LLF: 150.62421376508325
Iteration: 8, Func. Count: 109, Neg. LLF: 150.58553891965752
Iteration: 9, Func. Count: 122, Neg. LLF: 150.57749496229636
Iteration: 10, Func. Count: 135, Neg. LLF: 150.57491076328267
Iteration: 11, Func. Count: 148, Neg. LLF: 150.57459015202528
Iteration: 12, Func. Count: 161, Neg. LLF: 150.57453849364114
Iteration: 13, Func. Count: 174, Neg. LLF: 150.57451680877492
Iteration: 14, Func. Count: 187, Neg. LLF: 150.57450889649854
Iteration: 15, Func. Count: 200, Neg. LLF: 150.57450298014626
Iteration: 16, Func. Count: 212, Neg. LLF: 150.57450299727728
Optimization terminated successfully (Exit mode 0)
Current function value: 150.57450298014626
Iterations: 16
Function evaluations: 212
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 150.00495716769822
Iteration: 2, Func. Count: 21, Neg. LLF: 150.38030265626142
Iteration: 3, Func. Count: 32, Neg. LLF: 148.75212505824535
Iteration: 4, Func. Count: 42, Neg. LLF: 148.44585931604146
Iteration: 5, Func. Count: 52, Neg. LLF: 148.3880349853882
Iteration: 6, Func. Count: 62, Neg. LLF: 148.31904060118626
Iteration: 7, Func. Count: 72, Neg. LLF: 148.2180475028328
Iteration: 8, Func. Count: 82, Neg. LLF: 148.10023734808948
Iteration: 9, Func. Count: 92, Neg. LLF: 148.09137760630492
Iteration: 10, Func. Count: 102, Neg. LLF: 148.08947044179578
Iteration: 11, Func. Count: 112, Neg. LLF: 148.08932972300167
Iteration: 12, Func. Count: 122, Neg. LLF: 148.0893042219427
Iteration: 13, Func. Count: 132, Neg. LLF: 148.08930142770802
Iteration: 14, Func. Count: 141, Neg. LLF: 148.0893010958424
Optimization terminated successfully (Exit mode 0)
Current function value: 148.08930142770802
Iterations: 14
Function evaluations: 141
Gradient evaluations: 14
Iteration: 1, Func. Count: 12, Neg. LLF: 184.22968611806823
Iteration: 2, Func. Count: 25, Neg. LLF: 156.2016269019207
Iteration: 3, Func. Count: 37, Neg. LLF: 149.65459504821612
Iteration: 4, Func. Count: 48, Neg. LLF: 149.12512930175967
Iteration: 5, Func. Count: 59, Neg. LLF: 152.79234031930477
Iteration: 6, Func. Count: 73, Neg. LLF: 148.73686036522045
Iteration: 7, Func. Count: 84, Neg. LLF: 148.47184611801654
Iteration: 8, Func. Count: 95, Neg. LLF: 148.41241353070677
Iteration: 9, Func. Count: 106, Neg. LLF: 148.14952155382508
Iteration: 10, Func. Count: 117, Neg. LLF: 148.11816538410213
Iteration: 11, Func. Count: 128, Neg. LLF: 148.0980640070312
Iteration: 12, Func. Count: 139, Neg. LLF: 148.0914195117434
Iteration: 13, Func. Count: 150, Neg. LLF: 148.0896976115798
Iteration: 14, Func. Count: 161, Neg. LLF: 148.0894614121445
Iteration: 15, Func. Count: 172, Neg. LLF: 148.0893743430267
Iteration: 16, Func. Count: 183, Neg. LLF: 148.08933676100875
Iteration: 17, Func. Count: 194, Neg. LLF: 148.0893202047733
Iteration: 18, Func. Count: 205, Neg. LLF: 148.08930984911248
Iteration: 19, Func. Count: 216, Neg. LLF: 148.0893035323031
Iteration: 20, Func. Count: 227, Neg. LLF: 148.08930162688102
Iteration: 21, Func. Count: 237, Neg. LLF: 148.08930168553727
Optimization terminated successfully (Exit mode 0)
Current function value: 148.08930162688102
Iterations: 21
Function evaluations: 237
Gradient evaluations: 21
Iteration: 1, Func. Count: 13, Neg. LLF: 184.91692886064777
Iteration: 2, Func. Count: 26, Neg. LLF: 153.6512597127682
Iteration: 3, Func. Count: 39, Neg. LLF: 153.10522010230258
Iteration: 4, Func. Count: 52, Neg. LLF: 149.27751608975805
Iteration: 5, Func. Count: 64, Neg. LLF: 149.18977826118922
Iteration: 6, Func. Count: 77, Neg. LLF: 148.70071389425212
Iteration: 7, Func. Count: 90, Neg. LLF: 148.42074252174132
Iteration: 8, Func. Count: 102, Neg. LLF: 148.52619411058225
Iteration: 9, Func. Count: 115, Neg. LLF: 148.20790785203005
Iteration: 10, Func. Count: 127, Neg. LLF: 148.14737898725048
Iteration: 11, Func. Count: 139, Neg. LLF: 148.12381927428336
Iteration: 12, Func. Count: 151, Neg. LLF: 148.102878235075
Iteration: 13, Func. Count: 163, Neg. LLF: 148.09659186732003
Iteration: 14, Func. Count: 175, Neg. LLF: 148.09288171375084
Iteration: 15, Func. Count: 187, Neg. LLF: 148.09114449166432
Iteration: 16, Func. Count: 199, Neg. LLF: 148.0896003410602
Iteration: 17, Func. Count: 211, Neg. LLF: 148.08933266706043
Iteration: 18, Func. Count: 223, Neg. LLF: 148.08930733624254
Iteration: 19, Func. Count: 235, Neg. LLF: 148.08930632688384
Iteration: 20, Func. Count: 247, Neg. LLF: 148.08930359062458
Iteration: 21, Func. Count: 259, Neg. LLF: 148.0893024672365
Iteration: 22, Func. Count: 271, Neg. LLF: 148.0893012225133
Iteration: 23, Func. Count: 282, Neg. LLF: 148.0893014059348
Optimization terminated successfully (Exit mode 0)
Current function value: 148.0893012225133
Iterations: 23
Function evaluations: 282
Gradient evaluations: 23
Iteration: 1, Func. Count: 14, Neg. LLF: 185.09592315311977
Iteration: 2, Func. Count: 28, Neg. LLF: 153.45698106021464
Iteration: 3, Func. Count: 42, Neg. LLF: 153.94075495862768
Iteration: 4, Func. Count: 56, Neg. LLF: 149.3204536727728
Iteration: 5, Func. Count: 69, Neg. LLF: 150.48388283813983
Iteration: 6, Func. Count: 83, Neg. LLF: 149.0892853067516
Iteration: 7, Func. Count: 97, Neg. LLF: 148.3587336381482
Iteration: 8, Func. Count: 110, Neg. LLF: 148.13297307352536
Iteration: 9, Func. Count: 123, Neg. LLF: 148.09835440703785
Iteration: 10, Func. Count: 136, Neg. LLF: 148.0959357043387
Iteration: 11, Func. Count: 149, Neg. LLF: 148.09255627915402
Iteration: 12, Func. Count: 162, Neg. LLF: 148.09078378754364
Iteration: 13, Func. Count: 175, Neg. LLF: 148.0897098402398
Iteration: 14, Func. Count: 188, Neg. LLF: 148.08947795939198
Iteration: 15, Func. Count: 201, Neg. LLF: 148.0893864770232
Iteration: 16, Func. Count: 214, Neg. LLF: 148.08934343197038
Iteration: 17, Func. Count: 227, Neg. LLF: 148.08931998637595
Iteration: 18, Func. Count: 240, Neg. LLF: 148.0893071345462
Iteration: 19, Func. Count: 253, Neg. LLF: 148.08930221973992
Iteration: 20, Func. Count: 266, Neg. LLF: 148.08930146044622
Optimization terminated successfully (Exit mode 0)
Current function value: 148.08930146044622
Iterations: 20
Function evaluations: 266
Gradient evaluations: 20
Iteration: 1, Func. Count: 15, Neg. LLF: 185.17589821443195
Iteration: 2, Func. Count: 30, Neg. LLF: 154.09676495748332
Iteration: 3, Func. Count: 45, Neg. LLF: 152.63810750936366
Iteration: 4, Func. Count: 60, Neg. LLF: 149.51895714749912
Iteration: 5, Func. Count: 74, Neg. LLF: 149.45286587614206
Iteration: 6, Func. Count: 89, Neg. LLF: 151.21040423694785
Iteration: 7, Func. Count: 104, Neg. LLF: 148.17930143575254
Iteration: 8, Func. Count: 118, Neg. LLF: 148.02849915330168
Iteration: 9, Func. Count: 132, Neg. LLF: 148.00918040361432
Iteration: 10, Func. Count: 146, Neg. LLF: 147.98890218654367
Iteration: 11, Func. Count: 160, Neg. LLF: 147.9837848937942
Iteration: 12, Func. Count: 174, Neg. LLF: 147.9758742821075
Iteration: 13, Func. Count: 188, Neg. LLF: 147.9757536032267
Iteration: 14, Func. Count: 202, Neg. LLF: 147.97574715880936
Iteration: 15, Func. Count: 216, Neg. LLF: 147.9757445238557
Iteration: 16, Func. Count: 230, Neg. LLF: 147.97574211108778
Iteration: 17, Func. Count: 243, Neg. LLF: 147.9757420884758
Optimization terminated successfully (Exit mode 0)
Current function value: 147.97574211108778
Iterations: 17
Function evaluations: 243
Gradient evaluations: 17
Iteration: 1, Func. Count: 12, Neg. LLF: 149.94628912568177
Iteration: 2, Func. Count: 23, Neg. LLF: 150.38887130030275
Iteration: 3, Func. Count: 35, Neg. LLF: 148.71537487630422
Iteration: 4, Func. Count: 46, Neg. LLF: 148.45865907134475
Iteration: 5, Func. Count: 57, Neg. LLF: 148.51074540667597
Iteration: 6, Func. Count: 69, Neg. LLF: 148.28858376566845
Iteration: 7, Func. Count: 80, Neg. LLF: 148.20069149547302
Iteration: 8, Func. Count: 91, Neg. LLF: 148.1265301357754
Iteration: 9, Func. Count: 102, Neg. LLF: 148.10076436403367
Iteration: 10, Func. Count: 113, Neg. LLF: 148.09001404166426
Iteration: 11, Func. Count: 124, Neg. LLF: 148.089314221356
Iteration: 12, Func. Count: 135, Neg. LLF: 148.08930174362735
Iteration: 13, Func. Count: 145, Neg. LLF: 148.08930188733717
Optimization terminated successfully (Exit mode 0)
Current function value: 148.08930174362735
Iterations: 13
Function evaluations: 145
Gradient evaluations: 13
Iteration: 1, Func. Count: 13, Neg. LLF: 184.23275483528914
Iteration: 2, Func. Count: 27, Neg. LLF: 156.0383534059483
Iteration: 3, Func. Count: 40, Neg. LLF: 149.68572765198385
Iteration: 4, Func. Count: 52, Neg. LLF: 149.15547820273008
Iteration: 5, Func. Count: 64, Neg. LLF: 153.10495656454728
Iteration: 6, Func. Count: 79, Neg. LLF: 148.73200459233564
Iteration: 7, Func. Count: 91, Neg. LLF: 148.49928925872564
Iteration: 8, Func. Count: 103, Neg. LLF: 148.26890578759247
Iteration: 9, Func. Count: 115, Neg. LLF: 148.160440952366
Iteration: 10, Func. Count: 127, Neg. LLF: 148.11125256347907
Iteration: 11, Func. Count: 139, Neg. LLF: 148.0950269065603
Iteration: 12, Func. Count: 151, Neg. LLF: 148.0914089777504
Iteration: 13, Func. Count: 163, Neg. LLF: 148.0899058476958
Iteration: 14, Func. Count: 175, Neg. LLF: 148.08937161717543
Iteration: 15, Func. Count: 187, Neg. LLF: 148.08930708817854
Iteration: 16, Func. Count: 199, Neg. LLF: 148.08930338045968
Iteration: 17, Func. Count: 210, Neg. LLF: 148.08930343898433
Optimization terminated successfully (Exit mode 0)
Current function value: 148.08930338045968
Iterations: 17
Function evaluations: 210
Gradient evaluations: 17
Iteration: 1, Func. Count: 14, Neg. LLF: 184.9298394381634
Iteration: 2, Func. Count: 28, Neg. LLF: 153.79706773928334
Iteration: 3, Func. Count: 42, Neg. LLF: 152.92128397244423
Iteration: 4, Func. Count: 56, Neg. LLF: 149.31028438087156
Iteration: 5, Func. Count: 69, Neg. LLF: 149.11858921703418
Iteration: 6, Func. Count: 83, Neg. LLF: 148.5298571122299
Iteration: 7, Func. Count: 96, Neg. LLF: 148.2544733101939
Iteration: 8, Func. Count: 109, Neg. LLF: 148.18091395479956
Iteration: 9, Func. Count: 122, Neg. LLF: 148.1345149895028
Iteration: 10, Func. Count: 135, Neg. LLF: 148.12156523267427
Iteration: 11, Func. Count: 148, Neg. LLF: 148.0994600358876
Iteration: 12, Func. Count: 161, Neg. LLF: 148.09658371730563
Iteration: 13, Func. Count: 174, Neg. LLF: 148.09231835619903
Iteration: 14, Func. Count: 187, Neg. LLF: 148.09051931601735
Iteration: 15, Func. Count: 200, Neg. LLF: 148.08943076458894
Iteration: 16, Func. Count: 213, Neg. LLF: 148.0893237790184
Iteration: 17, Func. Count: 226, Neg. LLF: 148.089311635484
Iteration: 18, Func. Count: 239, Neg. LLF: 148.08930630057284
Iteration: 19, Func. Count: 252, Neg. LLF: 148.08930249398634
Iteration: 20, Func. Count: 265, Neg. LLF: 148.08930235802487
Optimization terminated successfully (Exit mode 0)
Current function value: 148.08930235802487
Iterations: 20
Function evaluations: 265
Gradient evaluations: 20
Iteration: 1, Func. Count: 15, Neg. LLF: 185.10552847167537
Iteration: 2, Func. Count: 30, Neg. LLF: 153.44415590864534
Iteration: 3, Func. Count: 45, Neg. LLF: 153.95901482802932
Iteration: 4, Func. Count: 60, Neg. LLF: 149.32740782475275
Iteration: 5, Func. Count: 74, Neg. LLF: 150.49260664510462
Iteration: 6, Func. Count: 89, Neg. LLF: 149.10940271615507
Iteration: 7, Func. Count: 104, Neg. LLF: 148.3719608944808
Iteration: 8, Func. Count: 118, Neg. LLF: 148.13390199107775
Iteration: 9, Func. Count: 132, Neg. LLF: 148.09865770488562
Iteration: 10, Func. Count: 146, Neg. LLF: 148.09604908106874
Iteration: 11, Func. Count: 160, Neg. LLF: 148.0927180460624
Iteration: 12, Func. Count: 174, Neg. LLF: 148.09089738237594
Iteration: 13, Func. Count: 188, Neg. LLF: 148.08976410809174
Iteration: 14, Func. Count: 202, Neg. LLF: 148.08948868115934
Iteration: 15, Func. Count: 216, Neg. LLF: 148.08938700584528
Iteration: 16, Func. Count: 230, Neg. LLF: 148.08934537776213
Iteration: 17, Func. Count: 244, Neg. LLF: 148.08932240336347
Iteration: 18, Func. Count: 258, Neg. LLF: 148.0893079768449
Iteration: 19, Func. Count: 272, Neg. LLF: 148.0893023462044
Iteration: 20, Func. Count: 286, Neg. LLF: 148.08930144264858
Optimization terminated successfully (Exit mode 0)
Current function value: 148.08930144264858
Iterations: 20
Function evaluations: 286
Gradient evaluations: 20
Iteration: 1, Func. Count: 16, Neg. LLF: 185.18618180336375
Iteration: 2, Func. Count: 32, Neg. LLF: 154.05816513971823
Iteration: 3, Func. Count: 48, Neg. LLF: 152.57774779888788
Iteration: 4, Func. Count: 64, Neg. LLF: 149.5233160568437
Iteration: 5, Func. Count: 79, Neg. LLF: 149.46755815139142
Iteration: 6, Func. Count: 95, Neg. LLF: 151.25057420446083
Iteration: 7, Func. Count: 111, Neg. LLF: 148.17576758526292
Iteration: 8, Func. Count: 126, Neg. LLF: 148.02789886576352
Iteration: 9, Func. Count: 141, Neg. LLF: 148.00858126280153
Iteration: 10, Func. Count: 156, Neg. LLF: 147.98872496570766
Iteration: 11, Func. Count: 171, Neg. LLF: 147.98367646504317
Iteration: 12, Func. Count: 186, Neg. LLF: 147.97586264971594
Iteration: 13, Func. Count: 201, Neg. LLF: 147.9757577551046
Iteration: 14, Func. Count: 216, Neg. LLF: 147.97575024997568
Iteration: 15, Func. Count: 231, Neg. LLF: 147.97574495309917
Iteration: 16, Func. Count: 246, Neg. LLF: 147.97574221184783
Iteration: 17, Func. Count: 260, Neg. LLF: 147.9757421892526
Optimization terminated successfully (Exit mode 0)
Current function value: 147.97574221184783
Iterations: 17
Function evaluations: 260
Gradient evaluations: 17
Iteration: 1, Func. Count: 6, Neg. LLF: 149.45925486010955
Iteration: 2, Func. Count: 11, Neg. LLF: 149.45323252631349
Iteration: 3, Func. Count: 17, Neg. LLF: 148.99186327526093
Iteration: 4, Func. Count: 22, Neg. LLF: 149.06049487564326
Iteration: 5, Func. Count: 28, Neg. LLF: 148.33049442615913
Iteration: 6, Func. Count: 33, Neg. LLF: 148.29716176274252
Iteration: 7, Func. Count: 38, Neg. LLF: 148.29648382544983
Iteration: 8, Func. Count: 43, Neg. LLF: 148.29645654967533
Iteration: 9, Func. Count: 48, Neg. LLF: 148.2964357822583
Iteration: 10, Func. Count: 52, Neg. LLF: 148.29643583207096
Optimization terminated successfully (Exit mode 0)
Current function value: 148.2964357822583
Iterations: 10
Function evaluations: 52
Gradient evaluations: 10
Iteration: 1, Func. Count: 5, Neg. LLF: 151.47491287671878
Iteration: 2, Func. Count: 10, Neg. LLF: 148.93922452033954
Iteration: 3, Func. Count: 15, Neg. LLF: 146.6030097369453
Iteration: 4, Func. Count: 19, Neg. LLF: 145.5463769290746
Iteration: 5, Func. Count: 23, Neg. LLF: 144.82375887941816
Iteration: 6, Func. Count: 27, Neg. LLF: 144.79979548344318
Iteration: 7, Func. Count: 31, Neg. LLF: 144.73765913212185
Iteration: 8, Func. Count: 35, Neg. LLF: 144.7283723913644
Iteration: 9, Func. Count: 39, Neg. LLF: 144.72818560391937
Iteration: 10, Func. Count: 43, Neg. LLF: 144.72817769460477
Iteration: 11, Func. Count: 47, Neg. LLF: 144.7281726641207
Iteration: 12, Func. Count: 50, Neg. LLF: 144.7281727605231
Optimization terminated successfully (Exit mode 0)
Current function value: 144.7281726641207
Iterations: 12
Function evaluations: 50
Gradient evaluations: 12
Iteration: 1, Func. Count: 6, Neg. LLF: 157.7777647003572
Iteration: 2, Func. Count: 13, Neg. LLF: 144.72499245769265
Iteration: 3, Func. Count: 18, Neg. LLF: 144.72532223927774
Iteration: 4, Func. Count: 24, Neg. LLF: 144.72476571550564
Iteration: 5, Func. Count: 29, Neg. LLF: 144.72476377765835
Iteration: 6, Func. Count: 33, Neg. LLF: 144.7247637776416
Optimization terminated successfully (Exit mode 0)
Current function value: 144.72476377765835
Iterations: 6
Function evaluations: 33
Gradient evaluations: 6
Iteration: 1, Func. Count: 7, Neg. LLF: 176.97640298764105
Iteration: 2, Func. Count: 15, Neg. LLF: 144.72373855727622
Iteration: 3, Func. Count: 21, Neg. LLF: 144.72400195287847
Iteration: 4, Func. Count: 28, Neg. LLF: 144.7234718378826
Iteration: 5, Func. Count: 34, Neg. LLF: 144.72341504809592
Iteration: 6, Func. Count: 40, Neg. LLF: 144.72304836898005
Iteration: 7, Func. Count: 46, Neg. LLF: 144.71940633593758
Iteration: 8, Func. Count: 52, Neg. LLF: 144.71935339867366
Iteration: 9, Func. Count: 58, Neg. LLF: 144.71932096151818
Iteration: 10, Func. Count: 64, Neg. LLF: 144.71932012688393
Optimization terminated successfully (Exit mode 0)
Current function value: 144.71932012688393
Iterations: 10
Function evaluations: 64
Gradient evaluations: 10
Iteration: 1, Func. Count: 8, Neg. LLF: 171.72759182291242
Iteration: 2, Func. Count: 17, Neg. LLF: 144.7242329852288
Iteration: 3, Func. Count: 24, Neg. LLF: 144.72452671182918
Iteration: 4, Func. Count: 32, Neg. LLF: 144.72405880134582
Iteration: 5, Func. Count: 39, Neg. LLF: 144.72405735595618
Iteration: 6, Func. Count: 46, Neg. LLF: 144.72405389537067
Iteration: 7, Func. Count: 53, Neg. LLF: 144.7240465501013
Iteration: 8, Func. Count: 60, Neg. LLF: 144.72403410317892
Iteration: 9, Func. Count: 67, Neg. LLF: 144.7240226234266
Iteration: 10, Func. Count: 74, Neg. LLF: 144.7240167512224
Iteration: 11, Func. Count: 81, Neg. LLF: 144.72401577697332
Optimization terminated successfully (Exit mode 0)
Current function value: 144.72401577697332
Iterations: 11
Function evaluations: 81
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 167.8116156788221
Iteration: 2, Func. Count: 19, Neg. LLF: 144.72328450363835
Iteration: 3, Func. Count: 27, Neg. LLF: 144.72327681513804
Iteration: 4, Func. Count: 36, Neg. LLF: 144.72297854387594
Iteration: 5, Func. Count: 44, Neg. LLF: 144.72160467133446
Iteration: 6, Func. Count: 52, Neg. LLF: 144.7208343219997
Iteration: 7, Func. Count: 60, Neg. LLF: 144.7205667703149
Iteration: 8, Func. Count: 68, Neg. LLF: 144.71883533473002
Iteration: 9, Func. Count: 76, Neg. LLF: 144.71732663363102
Iteration: 10, Func. Count: 84, Neg. LLF: 144.71727532273593
Iteration: 11, Func. Count: 92, Neg. LLF: 144.71698672337064
Iteration: 12, Func. Count: 100, Neg. LLF: 144.71501307134866
Iteration: 13, Func. Count: 108, Neg. LLF: 144.71457457779223
Iteration: 14, Func. Count: 116, Neg. LLF: 144.71456896385848
Iteration: 15, Func. Count: 124, Neg. LLF: 144.71454906131737
Iteration: 16, Func. Count: 132, Neg. LLF: 144.71453461799285
Iteration: 17, Func. Count: 140, Neg. LLF: 144.71450106715173
Iteration: 18, Func. Count: 148, Neg. LLF: 144.71442347472916
Iteration: 19, Func. Count: 156, Neg. LLF: 144.7142322748234
Iteration: 20, Func. Count: 164, Neg. LLF: 144.71376248701705
Iteration: 21, Func. Count: 172, Neg. LLF: 144.7125851570416
Iteration: 22, Func. Count: 180, Neg. LLF: 144.71071942680157
Iteration: 23, Func. Count: 188, Neg. LLF: 144.70556651067787
Iteration: 24, Func. Count: 196, Neg. LLF: 144.7040900755744
Iteration: 25, Func. Count: 204, Neg. LLF: 144.70370836276666
Iteration: 26, Func. Count: 212, Neg. LLF: 144.70365343706064
Iteration: 27, Func. Count: 220, Neg. LLF: 144.70364956717466
Iteration: 28, Func. Count: 229, Neg. LLF: 144.70360885466224
Iteration: 29, Func. Count: 237, Neg. LLF: 144.70360820713265
Optimization terminated successfully (Exit mode 0)
Current function value: 144.70360820713265
Iterations: 29
Function evaluations: 237
Gradient evaluations: 29
Iteration: 1, Func. Count: 6, Neg. LLF: 151.87487402600988
Iteration: 2, Func. Count: 12, Neg. LLF: 151.72934040603263
Iteration: 3, Func. Count: 18, Neg. LLF: 146.10363596879426
Iteration: 4, Func. Count: 23, Neg. LLF: 145.5511689156525
Iteration: 5, Func. Count: 28, Neg. LLF: 145.26699952436238
Iteration: 6, Func. Count: 33, Neg. LLF: 144.76595510445398
Iteration: 7, Func. Count: 38, Neg. LLF: 144.74885480824682
Iteration: 8, Func. Count: 43, Neg. LLF: 144.730373613423
Iteration: 9, Func. Count: 48, Neg. LLF: 144.72946512909607
Iteration: 10, Func. Count: 53, Neg. LLF: 144.72828610909374
Iteration: 11, Func. Count: 58, Neg. LLF: 144.7281803504831
Iteration: 12, Func. Count: 63, Neg. LLF: 144.7281724394799
Iteration: 13, Func. Count: 67, Neg. LLF: 144.72817248871934
Optimization terminated successfully (Exit mode 0)
Current function value: 144.7281724394799
Iterations: 13
Function evaluations: 67
Gradient evaluations: 13
Iteration: 1, Func. Count: 7, Neg. LLF: 156.94915334491816
Iteration: 2, Func. Count: 15, Neg. LLF: 144.72532138563082
Iteration: 3, Func. Count: 21, Neg. LLF: 144.72525955345202
Iteration: 4, Func. Count: 28, Neg. LLF: 144.72482535200868
Iteration: 5, Func. Count: 34, Neg. LLF: 144.72477749579053
Iteration: 6, Func. Count: 39, Neg. LLF: 144.72477749571385
Optimization terminated successfully (Exit mode 0)
Current function value: 144.72477749579053
Iterations: 6
Function evaluations: 39
Gradient evaluations: 6
Iteration: 1, Func. Count: 8, Neg. LLF: 176.66209027398622
Iteration: 2, Func. Count: 17, Neg. LLF: 144.72371199572058
Iteration: 3, Func. Count: 24, Neg. LLF: 144.72353560692426
Iteration: 4, Func. Count: 31, Neg. LLF: 144.72322575856606
Iteration: 5, Func. Count: 38, Neg. LLF: 144.72318781584082
Iteration: 6, Func. Count: 45, Neg. LLF: 144.72311095441296
Iteration: 7, Func. Count: 52, Neg. LLF: 144.72299861819607
Iteration: 8, Func. Count: 59, Neg. LLF: 144.72096263829675
Iteration: 9, Func. Count: 66, Neg. LLF: 144.720098488357
Iteration: 10, Func. Count: 73, Neg. LLF: 144.71956650890382
Iteration: 11, Func. Count: 80, Neg. LLF: 144.71910444196905
Iteration: 12, Func. Count: 86, Neg. LLF: 144.71910444188018
Optimization terminated successfully (Exit mode 0)
Current function value: 144.71910444196905
Iterations: 12
Function evaluations: 86
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 171.38181330742088
Iteration: 2, Func. Count: 19, Neg. LLF: 144.72423421003
Iteration: 3, Func. Count: 27, Neg. LLF: 144.72437080003903
Iteration: 4, Func. Count: 36, Neg. LLF: 144.72403108426087
Iteration: 5, Func. Count: 43, Neg. LLF: 144.72403108422887
Optimization terminated successfully (Exit mode 0)
Current function value: 144.72403108426087
Iterations: 5
Function evaluations: 43
Gradient evaluations: 5
Iteration: 1, Func. Count: 10, Neg. LLF: 167.43879719568375
Iteration: 2, Func. Count: 21, Neg. LLF: 144.72292066782572
Iteration: 3, Func. Count: 30, Neg. LLF: 144.7228622552619
Iteration: 4, Func. Count: 40, Neg. LLF: 144.72216693056686
Iteration: 5, Func. Count: 49, Neg. LLF: 144.72042310565135
Iteration: 6, Func. Count: 58, Neg. LLF: 144.71990110891187
Iteration: 7, Func. Count: 67, Neg. LLF: 144.7175410721351
Iteration: 8, Func. Count: 76, Neg. LLF: 144.71603911708408
Iteration: 9, Func. Count: 85, Neg. LLF: 144.71483287210796
Iteration: 10, Func. Count: 94, Neg. LLF: 144.71482788235355
Iteration: 11, Func. Count: 103, Neg. LLF: 144.71481818926313
Iteration: 12, Func. Count: 112, Neg. LLF: 144.71480394808714
Iteration: 13, Func. Count: 121, Neg. LLF: 144.71476466196634
Iteration: 14, Func. Count: 130, Neg. LLF: 144.7146684950777
Iteration: 15, Func. Count: 139, Neg. LLF: 144.71441336282365
Iteration: 16, Func. Count: 148, Neg. LLF: 144.71362729546738
Iteration: 17, Func. Count: 157, Neg. LLF: 144.7116706725471
Iteration: 18, Func. Count: 166, Neg. LLF: 144.70981438512365
Iteration: 19, Func. Count: 175, Neg. LLF: 144.70587752253556
Iteration: 20, Func. Count: 184, Neg. LLF: 144.70654672568998
Iteration: 21, Func. Count: 194, Neg. LLF: 144.70384755544987
Iteration: 22, Func. Count: 204, Neg. LLF: 145.27012106804602
Iteration: 23, Func. Count: 216, Neg. LLF: 144.7036113220641
Iteration: 24, Func. Count: 224, Neg. LLF: 144.70361132206384
Optimization terminated successfully (Exit mode 0)
Current function value: 144.7036113220641
Iterations: 25
Function evaluations: 224
Gradient evaluations: 24
Iteration: 1, Func. Count: 7, Neg. LLF: 149.26193943331327
Iteration: 2, Func. Count: 13, Neg. LLF: 153.07002965367965
Iteration: 3, Func. Count: 20, Neg. LLF: 146.31078589727963
Iteration: 4, Func. Count: 26, Neg. LLF: 145.3971477570753
Iteration: 5, Func. Count: 32, Neg. LLF: 145.08680768250792
Iteration: 6, Func. Count: 38, Neg. LLF: 144.77601951612175
Iteration: 7, Func. Count: 44, Neg. LLF: 144.74685528355647
Iteration: 8, Func. Count: 50, Neg. LLF: 144.73430423597867
Iteration: 9, Func. Count: 56, Neg. LLF: 144.72932483340884
Iteration: 10, Func. Count: 62, Neg. LLF: 144.72826336160614
Iteration: 11, Func. Count: 68, Neg. LLF: 144.72817574025595
Iteration: 12, Func. Count: 74, Neg. LLF: 144.72817237486106
Iteration: 13, Func. Count: 79, Neg. LLF: 144.72817254828928
Optimization terminated successfully (Exit mode 0)
Current function value: 144.72817237486106
Iterations: 13
Function evaluations: 79
Gradient evaluations: 13
Iteration: 1, Func. Count: 8, Neg. LLF: 172.49203895136984
Iteration: 2, Func. Count: 17, Neg. LLF: 144.7260273032562
Iteration: 3, Func. Count: 24, Neg. LLF: 144.72562720815753
Iteration: 4, Func. Count: 31, Neg. LLF: 144.72538936680917
Iteration: 5, Func. Count: 38, Neg. LLF: 144.72483163853354
Iteration: 6, Func. Count: 45, Neg. LLF: 144.724821539068
Iteration: 7, Func. Count: 51, Neg. LLF: 144.72482153903036
Optimization terminated successfully (Exit mode 0)
Current function value: 144.724821539068
Iterations: 7
Function evaluations: 51
Gradient evaluations: 7
Iteration: 1, Func. Count: 9, Neg. LLF: 176.6039822985364
Iteration: 2, Func. Count: 19, Neg. LLF: 144.7241872275854
Iteration: 3, Func. Count: 27, Neg. LLF: 144.72358608263463
Iteration: 4, Func. Count: 35, Neg. LLF: 144.72318364084467
Iteration: 5, Func. Count: 43, Neg. LLF: 144.72275882952687
Iteration: 6, Func. Count: 51, Neg. LLF: 144.72270213207872
Iteration: 7, Func. Count: 59, Neg. LLF: 144.72224272553063
Iteration: 8, Func. Count: 67, Neg. LLF: 144.719859792827
Iteration: 9, Func. Count: 75, Neg. LLF: 144.71959101545886
Iteration: 10, Func. Count: 83, Neg. LLF: 144.71918150694708
Iteration: 11, Func. Count: 91, Neg. LLF: 144.7191648997828
Iteration: 12, Func. Count: 99, Neg. LLF: 144.7191637716416
Iteration: 13, Func. Count: 107, Neg. LLF: 144.71916286473686
Optimization terminated successfully (Exit mode 0)
Current function value: 144.71916286473686
Iterations: 13
Function evaluations: 107
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 171.4035987782833
Iteration: 2, Func. Count: 21, Neg. LLF: 144.72466994678754
Iteration: 3, Func. Count: 30, Neg. LLF: 144.7242607090442
Iteration: 4, Func. Count: 39, Neg. LLF: 144.7240275058186
Iteration: 5, Func. Count: 47, Neg. LLF: 144.72402750572115
Optimization terminated successfully (Exit mode 0)
Current function value: 144.7240275058186
Iterations: 5
Function evaluations: 47
Gradient evaluations: 5
Iteration: 1, Func. Count: 11, Neg. LLF: 167.3936216871798
Iteration: 2, Func. Count: 23, Neg. LLF: 144.72328917784415
Iteration: 3, Func. Count: 33, Neg. LLF: 144.72333048242652
Iteration: 4, Func. Count: 44, Neg. LLF: 144.72199707094595
Iteration: 5, Func. Count: 54, Neg. LLF: 144.72052858318622
Iteration: 6, Func. Count: 64, Neg. LLF: 144.72001451587067
Iteration: 7, Func. Count: 74, Neg. LLF: 144.71764168385167
Iteration: 8, Func. Count: 84, Neg. LLF: 144.71631771042678
Iteration: 9, Func. Count: 94, Neg. LLF: 144.7148366046626
Iteration: 10, Func. Count: 104, Neg. LLF: 144.71483117259677
Iteration: 11, Func. Count: 114, Neg. LLF: 144.71482450961298
Iteration: 12, Func. Count: 124, Neg. LLF: 144.7148075117618
Iteration: 13, Func. Count: 134, Neg. LLF: 144.7147665582643
Iteration: 14, Func. Count: 144, Neg. LLF: 144.71467683151312
Iteration: 15, Func. Count: 154, Neg. LLF: 144.7144377715715
Iteration: 16, Func. Count: 164, Neg. LLF: 144.7136474158011
Iteration: 17, Func. Count: 174, Neg. LLF: 144.71226066476407
Iteration: 18, Func. Count: 184, Neg. LLF: 144.70971423528474
Iteration: 19, Func. Count: 194, Neg. LLF: 144.72010060913692
Iteration: 20, Func. Count: 205, Neg. LLF: 144.70411689144802
Iteration: 21, Func. Count: 215, Neg. LLF: 144.7036431355414
Iteration: 22, Func. Count: 225, Neg. LLF: 144.70362500328733
Iteration: 23, Func. Count: 235, Neg. LLF: 145.45775327164856
Iteration: 24, Func. Count: 248, Neg. LLF: 144.70361552830346
Iteration: 25, Func. Count: 258, Neg. LLF: 144.70361405339872
Iteration: 26, Func. Count: 267, Neg. LLF: 144.70361405339892
Optimization terminated successfully (Exit mode 0)
Current function value: 144.70361405339872
Iterations: 27
Function evaluations: 267
Gradient evaluations: 26
Iteration: 1, Func. Count: 8, Neg. LLF: 148.16106021660286
Iteration: 2, Func. Count: 15, Neg. LLF: 154.4808715282925
Iteration: 3, Func. Count: 23, Neg. LLF: 146.39578562849377
Iteration: 4, Func. Count: 30, Neg. LLF: 145.18666341077068
Iteration: 5, Func. Count: 37, Neg. LLF: 144.89063650388576
Iteration: 6, Func. Count: 44, Neg. LLF: 144.7564604362118
Iteration: 7, Func. Count: 51, Neg. LLF: 144.74277587053928
Iteration: 8, Func. Count: 58, Neg. LLF: 144.73263535626916
Iteration: 9, Func. Count: 65, Neg. LLF: 144.72884436343543
Iteration: 10, Func. Count: 72, Neg. LLF: 144.72821205724537
Iteration: 11, Func. Count: 79, Neg. LLF: 144.72817347942757
Iteration: 12, Func. Count: 86, Neg. LLF: 144.7281723485511
Iteration: 13, Func. Count: 92, Neg. LLF: 144.72817247031765
Optimization terminated successfully (Exit mode 0)
Current function value: 144.7281723485511
Iterations: 13
Function evaluations: 92
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 177.97232084849384
Iteration: 2, Func. Count: 19, Neg. LLF: 144.72602406964984
Iteration: 3, Func. Count: 27, Neg. LLF: 144.72557210753442
Iteration: 4, Func. Count: 35, Neg. LLF: 144.7252485935163
Iteration: 5, Func. Count: 43, Neg. LLF: 144.7248004434137
Iteration: 6, Func. Count: 50, Neg. LLF: 144.72480044332673
Optimization terminated successfully (Exit mode 0)
Current function value: 144.7248004434137
Iterations: 6
Function evaluations: 50
Gradient evaluations: 6
Iteration: 1, Func. Count: 10, Neg. LLF: 176.58090164065217
Iteration: 2, Func. Count: 21, Neg. LLF: 144.72425589415795
Iteration: 3, Func. Count: 30, Neg. LLF: 144.72346250305128
Iteration: 4, Func. Count: 39, Neg. LLF: 144.7230596795407
Iteration: 5, Func. Count: 48, Neg. LLF: 144.72290827431473
Iteration: 6, Func. Count: 57, Neg. LLF: 144.7228452544214
Iteration: 7, Func. Count: 66, Neg. LLF: 144.7222761650732
Iteration: 8, Func. Count: 75, Neg. LLF: 144.7197055809681
Iteration: 9, Func. Count: 84, Neg. LLF: 144.71951841797133
Iteration: 10, Func. Count: 93, Neg. LLF: 144.7192043070076
Iteration: 11, Func. Count: 102, Neg. LLF: 144.7191888479307
Iteration: 12, Func. Count: 111, Neg. LLF: 144.7191870993282
Iteration: 13, Func. Count: 119, Neg. LLF: 144.71918709930202
Optimization terminated successfully (Exit mode 0)
Current function value: 144.7191870993282
Iterations: 13
Function evaluations: 119
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 171.3344826085344
Iteration: 2, Func. Count: 23, Neg. LLF: 144.72481224917632
Iteration: 3, Func. Count: 33, Neg. LLF: 144.72431411203502
Iteration: 4, Func. Count: 43, Neg. LLF: 144.7240269476042
Iteration: 5, Func. Count: 52, Neg. LLF: 144.72402694761672
Optimization terminated successfully (Exit mode 0)
Current function value: 144.7240269476042
Iterations: 5
Function evaluations: 52
Gradient evaluations: 5
Iteration: 1, Func. Count: 12, Neg. LLF: 167.46651026169357
Iteration: 2, Func. Count: 25, Neg. LLF: 144.7235143840673
Iteration: 3, Func. Count: 36, Neg. LLF: 144.7232701304615
Iteration: 4, Func. Count: 48, Neg. LLF: 144.72212338285766
Iteration: 5, Func. Count: 59, Neg. LLF: 144.72083863141123
Iteration: 6, Func. Count: 70, Neg. LLF: 144.7203775813304
Iteration: 7, Func. Count: 81, Neg. LLF: 144.7175757196341
Iteration: 8, Func. Count: 92, Neg. LLF: 144.71623327230185
Iteration: 9, Func. Count: 103, Neg. LLF: 144.71483094461857
Iteration: 10, Func. Count: 114, Neg. LLF: 144.71482544855326
Iteration: 11, Func. Count: 125, Neg. LLF: 144.71481560156911
Iteration: 12, Func. Count: 136, Neg. LLF: 144.71480806545372
Iteration: 13, Func. Count: 147, Neg. LLF: 144.71478961830235
Iteration: 14, Func. Count: 158, Neg. LLF: 144.71469542975865
Iteration: 15, Func. Count: 169, Neg. LLF: 144.7145090244313
Iteration: 16, Func. Count: 180, Neg. LLF: 144.7139673289023
Iteration: 17, Func. Count: 191, Neg. LLF: 144.71258379851267
Iteration: 18, Func. Count: 202, Neg. LLF: 144.71095919378658
Iteration: 19, Func. Count: 213, Neg. LLF: 144.70723472057082
Iteration: 20, Func. Count: 224, Neg. LLF: 144.704579746405
Iteration: 21, Func. Count: 235, Neg. LLF: 144.70362017108866
Iteration: 22, Func. Count: 246, Neg. LLF: 144.70361657585966
Iteration: 23, Func. Count: 257, Neg. LLF: 146.41572021149227
Iteration: 24, Func. Count: 270, Neg. LLF: 144.70360725022732
Optimization terminated successfully (Exit mode 0)
Current function value: 144.70360725022758
Iterations: 25
Function evaluations: 270
Gradient evaluations: 24
Iteration: 1, Func. Count: 5, Neg. LLF: 148.3962942017895
Iteration: 2, Func. Count: 9, Neg. LLF: 148.40469420140707
Iteration: 3, Func. Count: 14, Neg. LLF: 146.39810852220026
Iteration: 4, Func. Count: 18, Neg. LLF: 146.17320843619254
Iteration: 5, Func. Count: 22, Neg. LLF: 145.41348572931935
Iteration: 6, Func. Count: 26, Neg. LLF: 144.89225074730783
Iteration: 7, Func. Count: 30, Neg. LLF: 144.7344595130303
Iteration: 8, Func. Count: 34, Neg. LLF: 144.72854272158241
Iteration: 9, Func. Count: 38, Neg. LLF: 144.7281898564143
Iteration: 10, Func. Count: 42, Neg. LLF: 144.7281736997776
Iteration: 11, Func. Count: 46, Neg. LLF: 144.72817235487727
Iteration: 12, Func. Count: 49, Neg. LLF: 144.7281724158774
Optimization terminated successfully (Exit mode 0)
Current function value: 144.72817235487727
Iterations: 12
Function evaluations: 49
Gradient evaluations: 12
Iteration: 1, Func. Count: 6, Neg. LLF: 150.0588763839755
Iteration: 2, Func. Count: 13, Neg. LLF: 144.72476403465035
Iteration: 3, Func. Count: 18, Neg. LLF: 144.7247656030571
Iteration: 4, Func. Count: 24, Neg. LLF: 144.7247615899808
Iteration: 5, Func. Count: 29, Neg. LLF: 144.72475994527895
Iteration: 6, Func. Count: 33, Neg. LLF: 144.7247599450725
Optimization terminated successfully (Exit mode 0)
Current function value: 144.72475994527895
Iterations: 6
Function evaluations: 33
Gradient evaluations: 6
Iteration: 1, Func. Count: 7, Neg. LLF: 177.1152476241941
Iteration: 2, Func. Count: 15, Neg. LLF: 144.7235895122584
Iteration: 3, Func. Count: 21, Neg. LLF: 144.72368226137522
Iteration: 4, Func. Count: 28, Neg. LLF: 144.7235414586792
Iteration: 5, Func. Count: 34, Neg. LLF: 144.7235147612223
Iteration: 6, Func. Count: 40, Neg. LLF: 144.72336808566968
Iteration: 7, Func. Count: 46, Neg. LLF: 144.72200822844695
Iteration: 8, Func. Count: 52, Neg. LLF: 144.71941782502333
Iteration: 9, Func. Count: 58, Neg. LLF: 144.71938579092838
Iteration: 10, Func. Count: 64, Neg. LLF: 144.71936098575836
Iteration: 11, Func. Count: 69, Neg. LLF: 144.71936098578848
Optimization terminated successfully (Exit mode 0)
Current function value: 144.71936098575836
Iterations: 11
Function evaluations: 69
Gradient evaluations: 11
Iteration: 1, Func. Count: 8, Neg. LLF: 171.90224428744568
Iteration: 2, Func. Count: 17, Neg. LLF: 144.72422885288105
Iteration: 3, Func. Count: 24, Neg. LLF: 144.7243294547166
Iteration: 4, Func. Count: 32, Neg. LLF: 144.72407272033078
Iteration: 5, Func. Count: 39, Neg. LLF: 144.72407175816832
Optimization terminated successfully (Exit mode 0)
Current function value: 144.72407175816832
Iterations: 5
Function evaluations: 39
Gradient evaluations: 5
Iteration: 1, Func. Count: 9, Neg. LLF: 168.39112480281815
Iteration: 2, Func. Count: 19, Neg. LLF: 144.7241153802943
Iteration: 3, Func. Count: 27, Neg. LLF: 144.72377270620242
Iteration: 4, Func. Count: 35, Neg. LLF: 144.7236051708442
Iteration: 5, Func. Count: 43, Neg. LLF: 144.7233898034765
Iteration: 6, Func. Count: 51, Neg. LLF: 144.72278808724087
Iteration: 7, Func. Count: 59, Neg. LLF: 144.72132523656575
Iteration: 8, Func. Count: 67, Neg. LLF: 144.72089436310307
Iteration: 9, Func. Count: 75, Neg. LLF: 144.71954539386138
Iteration: 10, Func. Count: 83, Neg. LLF: 144.71893895152098
Iteration: 11, Func. Count: 91, Neg. LLF: 144.71852207802203
Iteration: 12, Func. Count: 99, Neg. LLF: 144.71671525893854
Iteration: 13, Func. Count: 107, Neg. LLF: 144.71596238117084
Iteration: 14, Func. Count: 115, Neg. LLF: 144.71495876722915
Iteration: 15, Func. Count: 123, Neg. LLF: 144.73070126597412
Iteration: 16, Func. Count: 133, Neg. LLF: 144.71504482487475
Iteration: 17, Func. Count: 142, Neg. LLF: 144.71493628436252
Iteration: 18, Func. Count: 150, Neg. LLF: 144.71492040634976
Iteration: 19, Func. Count: 158, Neg. LLF: 144.71484045873288
Iteration: 20, Func. Count: 166, Neg. LLF: 144.71442897245504
Iteration: 21, Func. Count: 174, Neg. LLF: 144.71202227461845
Iteration: 22, Func. Count: 182, Neg. LLF: 144.7220470851295
Iteration: 23, Func. Count: 191, Neg. LLF: 144.71397203799066
Iteration: 24, Func. Count: 200, Neg. LLF: 144.70469448036786
Iteration: 25, Func. Count: 209, Neg. LLF: 144.70394442846697
Iteration: 26, Func. Count: 218, Neg. LLF: 144.70360677549763
Iteration: 27, Func. Count: 225, Neg. LLF: 144.70360677542823
Optimization terminated successfully (Exit mode 0)
Current function value: 144.70360677549763
Iterations: 28
Function evaluations: 225
Gradient evaluations: 27
Iteration: 1, Func. Count: 6, Neg. LLF: 150.72639050195707
Iteration: 2, Func. Count: 12, Neg. LLF: 148.23174369313102
Iteration: 3, Func. Count: 18, Neg. LLF: 146.82562973493555
Iteration: 4, Func. Count: 23, Neg. LLF: 146.28052711196503
Iteration: 5, Func. Count: 28, Neg. LLF: 145.9693280885585
Iteration: 6, Func. Count: 33, Neg. LLF: 144.73886497624798
Iteration: 7, Func. Count: 38, Neg. LLF: 144.68355747659157
Iteration: 8, Func. Count: 43, Neg. LLF: 144.67852336156884
Iteration: 9, Func. Count: 48, Neg. LLF: 144.67641700452452
Iteration: 10, Func. Count: 53, Neg. LLF: 144.67580884231097
Iteration: 11, Func. Count: 58, Neg. LLF: 144.6754793679513
Iteration: 12, Func. Count: 63, Neg. LLF: 144.67547071620777
Iteration: 13, Func. Count: 67, Neg. LLF: 144.67547062030798
Optimization terminated successfully (Exit mode 0)
Current function value: 144.67547071620777
Iterations: 13
Function evaluations: 67
Gradient evaluations: 13
Iteration: 1, Func. Count: 7, Neg. LLF: 147.80782262553495
Iteration: 2, Func. Count: 15, Neg. LLF: 150.64734408929434
Iteration: 3, Func. Count: 22, Neg. LLF: 144.5928084082901
Iteration: 4, Func. Count: 28, Neg. LLF: 144.5779746915854
Iteration: 5, Func. Count: 34, Neg. LLF: 144.5745125862167
Iteration: 6, Func. Count: 40, Neg. LLF: 144.5744484043379
Iteration: 7, Func. Count: 46, Neg. LLF: 144.5743761527404
Iteration: 8, Func. Count: 52, Neg. LLF: 144.5741318716649
Iteration: 9, Func. Count: 58, Neg. LLF: 144.57371023960707
Iteration: 10, Func. Count: 64, Neg. LLF: 144.57307570181695
Iteration: 11, Func. Count: 70, Neg. LLF: 144.5725353727466
Iteration: 12, Func. Count: 76, Neg. LLF: 144.5722725801011
Iteration: 13, Func. Count: 82, Neg. LLF: 144.572252203081
Iteration: 14, Func. Count: 87, Neg. LLF: 144.57225220308914
Optimization terminated successfully (Exit mode 0)
Current function value: 144.572252203081
Iterations: 14
Function evaluations: 87
Gradient evaluations: 14
Iteration: 1, Func. Count: 8, Neg. LLF: 148.0303060151196
Iteration: 2, Func. Count: 17, Neg. LLF: 150.54662749665624
Iteration: 3, Func. Count: 25, Neg. LLF: 144.63412510022397
Iteration: 4, Func. Count: 32, Neg. LLF: 144.5802507587111
Iteration: 5, Func. Count: 39, Neg. LLF: 144.57498401955107
Iteration: 6, Func. Count: 46, Neg. LLF: 144.57473647586852
Iteration: 7, Func. Count: 53, Neg. LLF: 144.57467273620094
Iteration: 8, Func. Count: 60, Neg. LLF: 144.5744859965969
Iteration: 9, Func. Count: 67, Neg. LLF: 144.57428719005802
Iteration: 10, Func. Count: 74, Neg. LLF: 144.57383935223302
Iteration: 11, Func. Count: 81, Neg. LLF: 144.57323647471793
Iteration: 12, Func. Count: 88, Neg. LLF: 144.57264082878226
Iteration: 13, Func. Count: 95, Neg. LLF: 144.57230984397816
Iteration: 14, Func. Count: 102, Neg. LLF: 144.57225329329367
Iteration: 15, Func. Count: 109, Neg. LLF: 144.5722520682778
Iteration: 16, Func. Count: 115, Neg. LLF: 144.57225207493966
Optimization terminated successfully (Exit mode 0)
Current function value: 144.5722520682778
Iterations: 16
Function evaluations: 115
Gradient evaluations: 16
Iteration: 1, Func. Count: 9, Neg. LLF: 148.61751713477162
Iteration: 2, Func. Count: 19, Neg. LLF: 150.4740449426111
Iteration: 3, Func. Count: 28, Neg. LLF: 144.6630060217978
Iteration: 4, Func. Count: 36, Neg. LLF: 144.64136377578635
Iteration: 5, Func. Count: 44, Neg. LLF: 144.62236610045426
Iteration: 6, Func. Count: 52, Neg. LLF: 144.60032014047272
Iteration: 7, Func. Count: 60, Neg. LLF: 144.57541334895978
Iteration: 8, Func. Count: 68, Neg. LLF: 144.57506915491786
Iteration: 9, Func. Count: 76, Neg. LLF: 144.57469050375303
Iteration: 10, Func. Count: 84, Neg. LLF: 144.57463981895913
Iteration: 11, Func. Count: 92, Neg. LLF: 144.57434887868834
Iteration: 12, Func. Count: 100, Neg. LLF: 144.57354434597812
Iteration: 13, Func. Count: 108, Neg. LLF: 144.57298918623118
Iteration: 14, Func. Count: 116, Neg. LLF: 144.572435353694
Iteration: 15, Func. Count: 124, Neg. LLF: 144.57228818384283
Iteration: 16, Func. Count: 132, Neg. LLF: 144.57225361998314
Iteration: 17, Func. Count: 140, Neg. LLF: 144.5722521571656
Iteration: 18, Func. Count: 147, Neg. LLF: 144.57225217513385
Optimization terminated successfully (Exit mode 0)
Current function value: 144.5722521571656
Iterations: 18
Function evaluations: 147
Gradient evaluations: 18
Iteration: 1, Func. Count: 10, Neg. LLF: 150.7245693766223
Iteration: 2, Func. Count: 21, Neg. LLF: 150.39776907952614
Iteration: 3, Func. Count: 32, Neg. LLF: 144.66699509936782
Iteration: 4, Func. Count: 41, Neg. LLF: 144.65068861475376
Iteration: 5, Func. Count: 50, Neg. LLF: 144.63541374464424
Iteration: 6, Func. Count: 59, Neg. LLF: 144.62742882243876
Iteration: 7, Func. Count: 68, Neg. LLF: 144.57543989522878
Iteration: 8, Func. Count: 77, Neg. LLF: 144.57526319156094
Iteration: 9, Func. Count: 86, Neg. LLF: 144.57506946287026
Iteration: 10, Func. Count: 95, Neg. LLF: 144.57501565474504
Iteration: 11, Func. Count: 104, Neg. LLF: 144.57469356723473
Iteration: 12, Func. Count: 113, Neg. LLF: 144.57449630328512
Iteration: 13, Func. Count: 122, Neg. LLF: 144.57417798436194
Iteration: 14, Func. Count: 131, Neg. LLF: 144.57385891015213
Iteration: 15, Func. Count: 140, Neg. LLF: 144.57343182257583
Iteration: 16, Func. Count: 149, Neg. LLF: 144.57287842374691
Iteration: 17, Func. Count: 158, Neg. LLF: 144.5725427684814
Iteration: 18, Func. Count: 167, Neg. LLF: 144.57243325064766
Iteration: 19, Func. Count: 176, Neg. LLF: 144.57255471993562
Iteration: 20, Func. Count: 186, Neg. LLF: 144.57502907594545
Iteration: 21, Func. Count: 196, Neg. LLF: 144.5722754548894
Iteration: 22, Func. Count: 205, Neg. LLF: 144.57230407265706
Iteration: 23, Func. Count: 215, Neg. LLF: 144.57225310786288
Iteration: 24, Func. Count: 224, Neg. LLF: 144.57225249105076
Optimization terminated successfully (Exit mode 0)
Current function value: 144.57225249105076
Iterations: 25
Function evaluations: 224
Gradient evaluations: 24
Iteration: 1, Func. Count: 7, Neg. LLF: 151.93800252834973
Iteration: 2, Func. Count: 14, Neg. LLF: 147.18870254476093
Iteration: 3, Func. Count: 20, Neg. LLF: 146.04263596982457
Iteration: 4, Func. Count: 26, Neg. LLF: 145.8678314121687
Iteration: 5, Func. Count: 33, Neg. LLF: 145.2624401062224
Iteration: 6, Func. Count: 39, Neg. LLF: 145.16856402146797
Iteration: 7, Func. Count: 45, Neg. LLF: 145.10182673087013
Iteration: 8, Func. Count: 51, Neg. LLF: 144.82006193040058
Iteration: 9, Func. Count: 57, Neg. LLF: 144.79087922471862
Iteration: 10, Func. Count: 63, Neg. LLF: 144.70265733923594
Iteration: 11, Func. Count: 69, Neg. LLF: 144.6760867176908
Iteration: 12, Func. Count: 75, Neg. LLF: 144.6755892836971
Iteration: 13, Func. Count: 81, Neg. LLF: 144.67549700608282
Iteration: 14, Func. Count: 87, Neg. LLF: 144.6754732566268
Iteration: 15, Func. Count: 93, Neg. LLF: 144.67547110251036
Iteration: 16, Func. Count: 98, Neg. LLF: 144.6754711490431
Optimization terminated successfully (Exit mode 0)
Current function value: 144.67547110251036
Iterations: 16
Function evaluations: 98
Gradient evaluations: 16
Iteration: 1, Func. Count: 8, Neg. LLF: 147.82272133516815
Iteration: 2, Func. Count: 17, Neg. LLF: 150.6394062942617
Iteration: 3, Func. Count: 25, Neg. LLF: 144.59158152002112
Iteration: 4, Func. Count: 32, Neg. LLF: 144.57723216064423
Iteration: 5, Func. Count: 39, Neg. LLF: 144.57449350268354
Iteration: 6, Func. Count: 46, Neg. LLF: 144.57444713292105
Iteration: 7, Func. Count: 53, Neg. LLF: 144.57432777200123
Iteration: 8, Func. Count: 60, Neg. LLF: 144.57400078503446
Iteration: 9, Func. Count: 67, Neg. LLF: 144.5734522868042
Iteration: 10, Func. Count: 74, Neg. LLF: 144.5728169963932
Iteration: 11, Func. Count: 81, Neg. LLF: 144.57238663672604
Iteration: 12, Func. Count: 88, Neg. LLF: 144.57225504550183
Iteration: 13, Func. Count: 95, Neg. LLF: 144.57225204975694
Iteration: 14, Func. Count: 101, Neg. LLF: 144.57225204975526
Optimization terminated successfully (Exit mode 0)
Current function value: 144.57225204975694
Iterations: 14
Function evaluations: 101
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 148.03836110281475
Iteration: 2, Func. Count: 19, Neg. LLF: 150.54913402710196
Iteration: 3, Func. Count: 28, Neg. LLF: 144.63799091585358
Iteration: 4, Func. Count: 36, Neg. LLF: 144.59048756913668
Iteration: 5, Func. Count: 44, Neg. LLF: 144.5753583430132
Iteration: 6, Func. Count: 52, Neg. LLF: 144.57493930699434
Iteration: 7, Func. Count: 60, Neg. LLF: 144.5746301785093
Iteration: 8, Func. Count: 68, Neg. LLF: 144.57458048999547
Iteration: 9, Func. Count: 76, Neg. LLF: 144.5742775863417
Iteration: 10, Func. Count: 84, Neg. LLF: 144.57348336370717
Iteration: 11, Func. Count: 92, Neg. LLF: 144.57289412367592
Iteration: 12, Func. Count: 100, Neg. LLF: 144.57238806173598
Iteration: 13, Func. Count: 108, Neg. LLF: 144.57225701107308
Iteration: 14, Func. Count: 116, Neg. LLF: 144.5722520492442
Iteration: 15, Func. Count: 123, Neg. LLF: 144.57225205590615
Optimization terminated successfully (Exit mode 0)
Current function value: 144.5722520492442
Iterations: 15
Function evaluations: 123
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 148.58146277910535
Iteration: 2, Func. Count: 21, Neg. LLF: 150.48046997477556
Iteration: 3, Func. Count: 31, Neg. LLF: 144.66468512252433
Iteration: 4, Func. Count: 40, Neg. LLF: 144.6427553958519
Iteration: 5, Func. Count: 49, Neg. LLF: 144.62716794190106
Iteration: 6, Func. Count: 58, Neg. LLF: 144.61564542585026
Iteration: 7, Func. Count: 67, Neg. LLF: 144.57776176958947
Iteration: 8, Func. Count: 76, Neg. LLF: 144.57587227661824
Iteration: 9, Func. Count: 85, Neg. LLF: 144.5747918032039
Iteration: 10, Func. Count: 94, Neg. LLF: 144.57465371970284
Iteration: 11, Func. Count: 103, Neg. LLF: 144.57453091914704
Iteration: 12, Func. Count: 112, Neg. LLF: 144.57445536299767
Iteration: 13, Func. Count: 121, Neg. LLF: 144.57411633801348
Iteration: 14, Func. Count: 130, Neg. LLF: 144.57357769542068
Iteration: 15, Func. Count: 139, Neg. LLF: 144.5727970604149
Iteration: 16, Func. Count: 148, Neg. LLF: 144.57235913986614
Iteration: 17, Func. Count: 157, Neg. LLF: 144.5722604914637
Iteration: 18, Func. Count: 166, Neg. LLF: 144.57225211305567
Iteration: 19, Func. Count: 174, Neg. LLF: 144.57225213105784
Optimization terminated successfully (Exit mode 0)
Current function value: 144.57225211305567
Iterations: 19
Function evaluations: 174
Gradient evaluations: 19
Iteration: 1, Func. Count: 11, Neg. LLF: 150.62026313718832
Iteration: 2, Func. Count: 23, Neg. LLF: 150.40466458200078
Iteration: 3, Func. Count: 35, Neg. LLF: 144.6670271192851
Iteration: 4, Func. Count: 45, Neg. LLF: 144.65513353133886
Iteration: 5, Func. Count: 55, Neg. LLF: 144.63920157532326
Iteration: 6, Func. Count: 65, Neg. LLF: 144.63525585299317
Iteration: 7, Func. Count: 75, Neg. LLF: 144.62354362056317
Iteration: 8, Func. Count: 85, Neg. LLF: 144.58061040514275
Iteration: 9, Func. Count: 95, Neg. LLF: 144.57735633743115
Iteration: 10, Func. Count: 105, Neg. LLF: 144.57523765927033
Iteration: 11, Func. Count: 115, Neg. LLF: 145.09565542879997
Iteration: 12, Func. Count: 127, Neg. LLF: 144.5766017126985
Iteration: 13, Func. Count: 138, Neg. LLF: 144.57507724070587
Iteration: 14, Func. Count: 148, Neg. LLF: 144.57458545751473
Iteration: 15, Func. Count: 158, Neg. LLF: 144.57244409458406
Iteration: 16, Func. Count: 168, Neg. LLF: 144.5722598296683
Iteration: 17, Func. Count: 178, Neg. LLF: 144.5722521064451
Iteration: 18, Func. Count: 187, Neg. LLF: 144.57225212195377
Optimization terminated successfully (Exit mode 0)
Current function value: 144.5722521064451
Iterations: 19
Function evaluations: 187
Gradient evaluations: 18
Iteration: 1, Func. Count: 8, Neg. LLF: 150.98092704703387
Iteration: 2, Func. Count: 16, Neg. LLF: 147.92591508352356
Iteration: 3, Func. Count: 24, Neg. LLF: 145.89792489496492
Iteration: 4, Func. Count: 31, Neg. LLF: 145.54148571266924
Iteration: 5, Func. Count: 38, Neg. LLF: 145.39444597062663
Iteration: 6, Func. Count: 45, Neg. LLF: 145.37516990696602
Iteration: 7, Func. Count: 53, Neg. LLF: 145.12234484990486
Iteration: 8, Func. Count: 60, Neg. LLF: 144.77270000414677
Iteration: 9, Func. Count: 67, Neg. LLF: 144.6812154452522
Iteration: 10, Func. Count: 74, Neg. LLF: 144.67593039525246
Iteration: 11, Func. Count: 81, Neg. LLF: 144.67556822899257
Iteration: 12, Func. Count: 88, Neg. LLF: 144.67551588256234
Iteration: 13, Func. Count: 95, Neg. LLF: 144.6754712714535
Iteration: 14, Func. Count: 102, Neg. LLF: 144.67547060460336
Optimization terminated successfully (Exit mode 0)
Current function value: 144.67547060460336
Iterations: 14
Function evaluations: 102
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 147.84686546674294
Iteration: 2, Func. Count: 19, Neg. LLF: 150.6181250063947
Iteration: 3, Func. Count: 28, Neg. LLF: 144.59021822844701
Iteration: 4, Func. Count: 36, Neg. LLF: 144.57682946136745
Iteration: 5, Func. Count: 44, Neg. LLF: 144.57449313103857
Iteration: 6, Func. Count: 52, Neg. LLF: 144.57444517720248
Iteration: 7, Func. Count: 60, Neg. LLF: 144.57433970831121
Iteration: 8, Func. Count: 68, Neg. LLF: 144.5740188334215
Iteration: 9, Func. Count: 76, Neg. LLF: 144.57348561125113
Iteration: 10, Func. Count: 84, Neg. LLF: 144.57284710486127
Iteration: 11, Func. Count: 92, Neg. LLF: 144.5724017846765
Iteration: 12, Func. Count: 100, Neg. LLF: 144.5722559459704
Iteration: 13, Func. Count: 108, Neg. LLF: 144.57225204109145
Iteration: 14, Func. Count: 115, Neg. LLF: 144.57225204108994
Optimization terminated successfully (Exit mode 0)
Current function value: 144.57225204109145
Iterations: 14
Function evaluations: 115
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 148.05954600705672
Iteration: 2, Func. Count: 21, Neg. LLF: 150.53135655433246
Iteration: 3, Func. Count: 31, Neg. LLF: 144.63722299128688
Iteration: 4, Func. Count: 40, Neg. LLF: 144.59650076156467
Iteration: 5, Func. Count: 49, Neg. LLF: 144.5763833360811
Iteration: 6, Func. Count: 58, Neg. LLF: 144.57527948372547
Iteration: 7, Func. Count: 67, Neg. LLF: 144.574682130654
Iteration: 8, Func. Count: 76, Neg. LLF: 144.57459960793307
Iteration: 9, Func. Count: 85, Neg. LLF: 144.5745220204836
Iteration: 10, Func. Count: 94, Neg. LLF: 144.57428974728745
Iteration: 11, Func. Count: 103, Neg. LLF: 144.57383705407645
Iteration: 12, Func. Count: 112, Neg. LLF: 144.57311124954018
Iteration: 13, Func. Count: 121, Neg. LLF: 144.57249761749387
Iteration: 14, Func. Count: 130, Neg. LLF: 144.57227979486126
Iteration: 15, Func. Count: 139, Neg. LLF: 144.57225283852296
Iteration: 16, Func. Count: 148, Neg. LLF: 144.5722520238847
Optimization terminated successfully (Exit mode 0)
Current function value: 144.5722520238847
Iterations: 16
Function evaluations: 148
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 148.58723885068378
Iteration: 2, Func. Count: 23, Neg. LLF: 150.46113468933478
Iteration: 3, Func. Count: 34, Neg. LLF: 144.6609413489112
Iteration: 4, Func. Count: 44, Neg. LLF: 144.643386670679
Iteration: 5, Func. Count: 54, Neg. LLF: 144.62782030405504
Iteration: 6, Func. Count: 64, Neg. LLF: 144.61791438344747
Iteration: 7, Func. Count: 74, Neg. LLF: 144.5786174297512
Iteration: 8, Func. Count: 84, Neg. LLF: 144.57610170254813
Iteration: 9, Func. Count: 94, Neg. LLF: 144.57481182758366
Iteration: 10, Func. Count: 104, Neg. LLF: 144.57465597324216
Iteration: 11, Func. Count: 114, Neg. LLF: 144.57453178766085
Iteration: 12, Func. Count: 124, Neg. LLF: 144.57446053911062
Iteration: 13, Func. Count: 134, Neg. LLF: 144.57415240700644
Iteration: 14, Func. Count: 144, Neg. LLF: 144.57365380803964
Iteration: 15, Func. Count: 154, Neg. LLF: 144.57287550913833
Iteration: 16, Func. Count: 164, Neg. LLF: 144.57239617190947
Iteration: 17, Func. Count: 174, Neg. LLF: 144.572265846347
Iteration: 18, Func. Count: 184, Neg. LLF: 144.5722522125922
Iteration: 19, Func. Count: 193, Neg. LLF: 144.5722522305884
Optimization terminated successfully (Exit mode 0)
Current function value: 144.5722522125922
Iterations: 19
Function evaluations: 193
Gradient evaluations: 19
Iteration: 1, Func. Count: 12, Neg. LLF: 150.78611698104223
Iteration: 2, Func. Count: 25, Neg. LLF: 150.38180607286859
Iteration: 3, Func. Count: 38, Neg. LLF: 144.66579884845694
Iteration: 4, Func. Count: 49, Neg. LLF: 144.65382890924178
Iteration: 5, Func. Count: 60, Neg. LLF: 144.638387452082
Iteration: 6, Func. Count: 71, Neg. LLF: 144.63544562461385
Iteration: 7, Func. Count: 82, Neg. LLF: 144.62619531246446
Iteration: 8, Func. Count: 93, Neg. LLF: 144.58520232736836
Iteration: 9, Func. Count: 104, Neg. LLF: 144.57817029783197
Iteration: 10, Func. Count: 115, Neg. LLF: 144.5752788860239
Iteration: 11, Func. Count: 126, Neg. LLF: 144.5752042207841
Iteration: 12, Func. Count: 137, Neg. LLF: 144.5752199551691
Iteration: 13, Func. Count: 149, Neg. LLF: 144.57482873651597
Iteration: 14, Func. Count: 160, Neg. LLF: 144.57470104380252
Iteration: 15, Func. Count: 171, Neg. LLF: 144.57416126872064
Iteration: 16, Func. Count: 182, Neg. LLF: 144.57344023302227
Iteration: 17, Func. Count: 193, Neg. LLF: 144.572611677618
Iteration: 18, Func. Count: 204, Neg. LLF: 144.57236530496505
Iteration: 19, Func. Count: 215, Neg. LLF: 144.5722515953614
Iteration: 20, Func. Count: 226, Neg. LLF: 144.57225021225912
Iteration: 21, Func. Count: 237, Neg. LLF: 144.57224736546698
Optimization terminated successfully (Exit mode 0)
Current function value: 144.57225021168864
Iterations: 21
Function evaluations: 247
Gradient evaluations: 21
Iteration: 1, Func. Count: 9, Neg. LLF: 150.94974651346286
Iteration: 2, Func. Count: 18, Neg. LLF: 147.943559942107
Iteration: 3, Func. Count: 27, Neg. LLF: 145.89815074247156
Iteration: 4, Func. Count: 35, Neg. LLF: 145.53620521161812
Iteration: 5, Func. Count: 43, Neg. LLF: 145.385421660408
Iteration: 6, Func. Count: 51, Neg. LLF: 145.41716516987321
Iteration: 7, Func. Count: 60, Neg. LLF: 144.926268426936
Iteration: 8, Func. Count: 68, Neg. LLF: 144.72926607815003
Iteration: 9, Func. Count: 76, Neg. LLF: 144.6985498604422
Iteration: 10, Func. Count: 84, Neg. LLF: 144.68323690250088
Iteration: 11, Func. Count: 92, Neg. LLF: 144.67858336936803
Iteration: 12, Func. Count: 100, Neg. LLF: 144.677002823054
Iteration: 13, Func. Count: 108, Neg. LLF: 144.675472308645
Iteration: 14, Func. Count: 116, Neg. LLF: 144.67547059047652
Iteration: 15, Func. Count: 123, Neg. LLF: 144.67547071414367
Optimization terminated successfully (Exit mode 0)
Current function value: 144.67547059047652
Iterations: 15
Function evaluations: 123
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 147.84786616595585
Iteration: 2, Func. Count: 21, Neg. LLF: 150.61784012495198
Iteration: 3, Func. Count: 31, Neg. LLF: 144.59029222870885
Iteration: 4, Func. Count: 40, Neg. LLF: 144.5766421970556
Iteration: 5, Func. Count: 49, Neg. LLF: 144.57447742873373
Iteration: 6, Func. Count: 58, Neg. LLF: 144.57443384197828
Iteration: 7, Func. Count: 67, Neg. LLF: 144.57427964504757
Iteration: 8, Func. Count: 76, Neg. LLF: 144.57394801883055
Iteration: 9, Func. Count: 85, Neg. LLF: 144.57336790582355
Iteration: 10, Func. Count: 94, Neg. LLF: 144.57272706671085
Iteration: 11, Func. Count: 103, Neg. LLF: 144.5723413979907
Iteration: 12, Func. Count: 112, Neg. LLF: 144.57225364734606
Iteration: 13, Func. Count: 121, Neg. LLF: 144.57225202091252
Iteration: 14, Func. Count: 129, Neg. LLF: 144.5722520209085
Optimization terminated successfully (Exit mode 0)
Current function value: 144.57225202091252
Iterations: 14
Function evaluations: 129
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 148.0625519798927
Iteration: 2, Func. Count: 23, Neg. LLF: 150.53068171046766
Iteration: 3, Func. Count: 34, Neg. LLF: 144.63738062232292
Iteration: 4, Func. Count: 44, Neg. LLF: 144.5985663502681
Iteration: 5, Func. Count: 54, Neg. LLF: 144.57680568099477
Iteration: 6, Func. Count: 64, Neg. LLF: 144.57544827863714
Iteration: 7, Func. Count: 74, Neg. LLF: 144.5747922902367
Iteration: 8, Func. Count: 84, Neg. LLF: 144.5745840529256
Iteration: 9, Func. Count: 94, Neg. LLF: 144.57453187666206
Iteration: 10, Func. Count: 104, Neg. LLF: 144.57426906734935
Iteration: 11, Func. Count: 114, Neg. LLF: 144.5738465498779
Iteration: 12, Func. Count: 124, Neg. LLF: 144.57308814348227
Iteration: 13, Func. Count: 134, Neg. LLF: 144.57248653518909
Iteration: 14, Func. Count: 144, Neg. LLF: 144.5722802873688
Iteration: 15, Func. Count: 154, Neg. LLF: 144.57225298465698
Iteration: 16, Func. Count: 164, Neg. LLF: 144.57225201891748
Optimization terminated successfully (Exit mode 0)
Current function value: 144.57225201891748
Iterations: 16
Function evaluations: 164
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 148.60273501378273
Iteration: 2, Func. Count: 25, Neg. LLF: 150.45973031995837
Iteration: 3, Func. Count: 37, Neg. LLF: 144.66160169289563
Iteration: 4, Func. Count: 48, Neg. LLF: 144.64433819434538
Iteration: 5, Func. Count: 59, Neg. LLF: 144.6283719837394
Iteration: 6, Func. Count: 70, Neg. LLF: 144.618827730853
Iteration: 7, Func. Count: 81, Neg. LLF: 144.57930584429587
Iteration: 8, Func. Count: 92, Neg. LLF: 144.57637242679743
Iteration: 9, Func. Count: 103, Neg. LLF: 144.57485020204388
Iteration: 10, Func. Count: 114, Neg. LLF: 144.57464991915015
Iteration: 11, Func. Count: 125, Neg. LLF: 144.574521301022
Iteration: 12, Func. Count: 136, Neg. LLF: 144.57445682736088
Iteration: 13, Func. Count: 147, Neg. LLF: 144.57417254924775
Iteration: 14, Func. Count: 158, Neg. LLF: 144.57370783738955
Iteration: 15, Func. Count: 169, Neg. LLF: 144.57294975279018
Iteration: 16, Func. Count: 180, Neg. LLF: 144.57242261127897
Iteration: 17, Func. Count: 191, Neg. LLF: 144.57226929273216
Iteration: 18, Func. Count: 202, Neg. LLF: 144.57225236032556
Iteration: 19, Func. Count: 212, Neg. LLF: 144.57225237831503
Optimization terminated successfully (Exit mode 0)
Current function value: 144.57225236032556
Iterations: 19
Function evaluations: 212
Gradient evaluations: 19
Iteration: 1, Func. Count: 13, Neg. LLF: 150.80699414439243
Iteration: 2, Func. Count: 27, Neg. LLF: 150.37964860666034
Iteration: 3, Func. Count: 41, Neg. LLF: 144.66502923288675
Iteration: 4, Func. Count: 53, Neg. LLF: 144.654197795947
Iteration: 5, Func. Count: 65, Neg. LLF: 144.63849310693885
Iteration: 6, Func. Count: 77, Neg. LLF: 144.6358636860381
Iteration: 7, Func. Count: 89, Neg. LLF: 144.62833994405406
Iteration: 8, Func. Count: 101, Neg. LLF: 144.6034849611695
Iteration: 9, Func. Count: 113, Neg. LLF: 144.5787255801774
Iteration: 10, Func. Count: 125, Neg. LLF: 144.60412485559385
Iteration: 11, Func. Count: 138, Neg. LLF: 144.96483946647504
Iteration: 12, Func. Count: 152, Neg. LLF: 144.74383055301
Iteration: 13, Func. Count: 165, Neg. LLF: 144.57791806930572
Iteration: 14, Func. Count: 178, Neg. LLF: 144.57521735285852
Iteration: 15, Func. Count: 190, Neg. LLF: 144.57505714864743
Iteration: 16, Func. Count: 202, Neg. LLF: 144.57466122148233
Iteration: 17, Func. Count: 214, Neg. LLF: 144.5738854320642
Iteration: 18, Func. Count: 226, Neg. LLF: 144.57290223129257
Iteration: 19, Func. Count: 238, Neg. LLF: 144.57240327276855
Iteration: 20, Func. Count: 250, Neg. LLF: 144.57226763814734
Iteration: 21, Func. Count: 262, Neg. LLF: 144.57225206031572
Iteration: 22, Func. Count: 273, Neg. LLF: 144.5722520758205
Optimization terminated successfully (Exit mode 0)
Current function value: 144.57225206031572
Iterations: 23
Function evaluations: 273
Gradient evaluations: 22
Iteration: 1, Func. Count: 6, Neg. LLF: 144.47283523804742
Iteration: 2, Func. Count: 11, Neg. LLF: 150.1324339434962
Iteration: 3, Func. Count: 17, Neg. LLF: 143.87587944624357
Iteration: 4, Func. Count: 22, Neg. LLF: 143.35431181020007
Iteration: 5, Func. Count: 27, Neg. LLF: 143.348821304308
Iteration: 6, Func. Count: 32, Neg. LLF: 143.34472177535824
Iteration: 7, Func. Count: 37, Neg. LLF: 143.34470023566467
Iteration: 8, Func. Count: 42, Neg. LLF: 143.34469976548516
Optimization terminated successfully (Exit mode 0)
Current function value: 143.34469976548516
Iterations: 8
Function evaluations: 42
Gradient evaluations: 8
Iteration: 1, Func. Count: 7, Neg. LLF: 148.65397298409923
Iteration: 2, Func. Count: 15, Neg. LLF: 144.7252856627574
Iteration: 3, Func. Count: 21, Neg. LLF: 144.72545992476788
Iteration: 4, Func. Count: 28, Neg. LLF: 144.72480573159507
Iteration: 5, Func. Count: 34, Neg. LLF: 144.72477531942172
Iteration: 6, Func. Count: 39, Neg. LLF: 144.7247753193456
Optimization terminated successfully (Exit mode 0)
Current function value: 144.72477531942172
Iterations: 6
Function evaluations: 39
Gradient evaluations: 6
Iteration: 1, Func. Count: 8, Neg. LLF: 176.79047611043177
Iteration: 2, Func. Count: 17, Neg. LLF: 144.72361899438562
Iteration: 3, Func. Count: 24, Neg. LLF: 144.72366006567242
Iteration: 4, Func. Count: 32, Neg. LLF: 144.72335459974764
Iteration: 5, Func. Count: 39, Neg. LLF: 144.72323582190833
Iteration: 6, Func. Count: 46, Neg. LLF: 144.72307823943558
Iteration: 7, Func. Count: 53, Neg. LLF: 144.72014470903085
Iteration: 8, Func. Count: 60, Neg. LLF: 144.7197927303845
Iteration: 9, Func. Count: 67, Neg. LLF: 144.71921524310807
Iteration: 10, Func. Count: 74, Neg. LLF: 144.7192132412291
Iteration: 11, Func. Count: 80, Neg. LLF: 144.71921324117227
Optimization terminated successfully (Exit mode 0)
Current function value: 144.7192132412291
Iterations: 11
Function evaluations: 80
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 171.61204342046716
Iteration: 2, Func. Count: 19, Neg. LLF: 144.7241122615076
Iteration: 3, Func. Count: 27, Neg. LLF: 144.7242483416087
Iteration: 4, Func. Count: 36, Neg. LLF: 144.72403419523263
Optimization terminated successfully (Exit mode 0)
Current function value: 144.72403419523263
Iterations: 4
Function evaluations: 36
Gradient evaluations: 4
Iteration: 1, Func. Count: 10, Neg. LLF: 167.96671231004296
Iteration: 2, Func. Count: 21, Neg. LLF: 144.72331002447342
Iteration: 3, Func. Count: 30, Neg. LLF: 144.72328314328627
Iteration: 4, Func. Count: 39, Neg. LLF: 144.7231335667313
Iteration: 5, Func. Count: 48, Neg. LLF: 144.7224701956583
Iteration: 6, Func. Count: 57, Neg. LLF: 144.7217853765153
Iteration: 7, Func. Count: 66, Neg. LLF: 144.72150981083036
Iteration: 8, Func. Count: 75, Neg. LLF: 144.72024519773302
Iteration: 9, Func. Count: 84, Neg. LLF: 144.71900611611568
Iteration: 10, Func. Count: 93, Neg. LLF: 144.71868366320328
Iteration: 11, Func. Count: 102, Neg. LLF: 144.71818467292337
Iteration: 12, Func. Count: 111, Neg. LLF: 144.71808785461812
Iteration: 13, Func. Count: 120, Neg. LLF: 144.7174426225445
Iteration: 14, Func. Count: 129, Neg. LLF: 144.71562621278252
Iteration: 15, Func. Count: 138, Neg. LLF: 144.7152647907747
Iteration: 16, Func. Count: 147, Neg. LLF: 144.71438868676853
Iteration: 17, Func. Count: 156, Neg. LLF: 144.71433451616798
Iteration: 18, Func. Count: 164, Neg. LLF: 144.7143345160423
Optimization terminated successfully (Exit mode 0)
Current function value: 144.71433451616798
Iterations: 18
Function evaluations: 164
Gradient evaluations: 18
Iteration: 1, Func. Count: 7, Neg. LLF: 145.95445605734398
Iteration: 2, Func. Count: 13, Neg. LLF: 145.7138843788562
Iteration: 3, Func. Count: 20, Neg. LLF: 144.2859051140092
Iteration: 4, Func. Count: 27, Neg. LLF: 143.8958301353016
Iteration: 5, Func. Count: 33, Neg. LLF: 143.6670883278463
Iteration: 6, Func. Count: 39, Neg. LLF: 143.64747552719996
Iteration: 7, Func. Count: 46, Neg. LLF: 143.39023284189497
Iteration: 8, Func. Count: 52, Neg. LLF: 143.31550728473078
Iteration: 9, Func. Count: 58, Neg. LLF: 143.27802934954462
Iteration: 10, Func. Count: 64, Neg. LLF: 143.27683260778656
Iteration: 11, Func. Count: 70, Neg. LLF: 143.2768100815303
Iteration: 12, Func. Count: 76, Neg. LLF: 143.27680581316991
Iteration: 13, Func. Count: 81, Neg. LLF: 143.27680569479577
Optimization terminated successfully (Exit mode 0)
Current function value: 143.27680581316991
Iterations: 13
Function evaluations: 81
Gradient evaluations: 13
Iteration: 1, Func. Count: 8, Neg. LLF: 147.84688794273737
Iteration: 2, Func. Count: 17, Neg. LLF: 150.65276400311157
Iteration: 3, Func. Count: 25, Neg. LLF: 144.5923149901219
Iteration: 4, Func. Count: 32, Neg. LLF: 144.57741785551514
Iteration: 5, Func. Count: 39, Neg. LLF: 144.57448501915957
Iteration: 6, Func. Count: 46, Neg. LLF: 144.57443291722086
Iteration: 7, Func. Count: 53, Neg. LLF: 144.57434502032228
Iteration: 8, Func. Count: 60, Neg. LLF: 144.574036187777
Iteration: 9, Func. Count: 67, Neg. LLF: 144.57353248222677
Iteration: 10, Func. Count: 74, Neg. LLF: 144.57289040923004
Iteration: 11, Func. Count: 81, Neg. LLF: 144.5724276225557
Iteration: 12, Func. Count: 88, Neg. LLF: 144.57225799468318
Iteration: 13, Func. Count: 95, Neg. LLF: 144.57225209363472
Iteration: 14, Func. Count: 101, Neg. LLF: 144.57225209363483
Optimization terminated successfully (Exit mode 0)
Current function value: 144.57225209363472
Iterations: 14
Function evaluations: 101
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 148.07066166495298
Iteration: 2, Func. Count: 19, Neg. LLF: 150.55856176746542
Iteration: 3, Func. Count: 28, Neg. LLF: 144.6387390740879
Iteration: 4, Func. Count: 36, Neg. LLF: 144.58970629594353
Iteration: 5, Func. Count: 44, Neg. LLF: 144.5750484224404
Iteration: 6, Func. Count: 52, Neg. LLF: 144.5748186662804
Iteration: 7, Func. Count: 60, Neg. LLF: 144.57462203826603
Iteration: 8, Func. Count: 68, Neg. LLF: 144.57454631152865
Iteration: 9, Func. Count: 76, Neg. LLF: 144.57438718820447
Iteration: 10, Func. Count: 84, Neg. LLF: 144.57412196122294
Iteration: 11, Func. Count: 92, Neg. LLF: 144.57358624454824
Iteration: 12, Func. Count: 100, Neg. LLF: 144.5729186623701
Iteration: 13, Func. Count: 108, Neg. LLF: 144.57241271532834
Iteration: 14, Func. Count: 116, Neg. LLF: 144.57225769277616
Iteration: 15, Func. Count: 124, Neg. LLF: 144.57225208112246
Iteration: 16, Func. Count: 131, Neg. LLF: 144.5722520877723
Optimization terminated successfully (Exit mode 0)
Current function value: 144.57225208112246
Iterations: 16
Function evaluations: 131
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 148.61654027971198
Iteration: 2, Func. Count: 21, Neg. LLF: 150.4919342802829
Iteration: 3, Func. Count: 31, Neg. LLF: 144.6601388123481
Iteration: 4, Func. Count: 40, Neg. LLF: 144.63881102595317
Iteration: 5, Func. Count: 49, Neg. LLF: 144.62618164936217
Iteration: 6, Func. Count: 58, Neg. LLF: 144.6123666510207
Iteration: 7, Func. Count: 67, Neg. LLF: 144.5767972802105
Iteration: 8, Func. Count: 76, Neg. LLF: 144.57566980301655
Iteration: 9, Func. Count: 85, Neg. LLF: 144.57472417269403
Iteration: 10, Func. Count: 94, Neg. LLF: 144.57463384784796
Iteration: 11, Func. Count: 103, Neg. LLF: 144.57450300474346
Iteration: 12, Func. Count: 112, Neg. LLF: 144.57440132219784
Iteration: 13, Func. Count: 121, Neg. LLF: 144.57400814065417
Iteration: 14, Func. Count: 130, Neg. LLF: 144.57340119678702
Iteration: 15, Func. Count: 139, Neg. LLF: 144.57265113684983
Iteration: 16, Func. Count: 148, Neg. LLF: 144.57232578525506
Iteration: 17, Func. Count: 157, Neg. LLF: 144.57225655661952
Iteration: 18, Func. Count: 166, Neg. LLF: 144.57225202998015
Iteration: 19, Func. Count: 174, Neg. LLF: 144.57225204798283
Optimization terminated successfully (Exit mode 0)
Current function value: 144.57225202998015
Iterations: 19
Function evaluations: 174
Gradient evaluations: 19
Iteration: 1, Func. Count: 11, Neg. LLF: 149.5875059996433
Iteration: 2, Func. Count: 23, Neg. LLF: 150.43308039820766
Iteration: 3, Func. Count: 35, Neg. LLF: 144.66447044759207
Iteration: 4, Func. Count: 45, Neg. LLF: 144.64712980018442
Iteration: 5, Func. Count: 55, Neg. LLF: 144.6383070156136
Iteration: 6, Func. Count: 65, Neg. LLF: 144.63379216880057
Iteration: 7, Func. Count: 75, Neg. LLF: 144.60493982022751
Iteration: 8, Func. Count: 85, Neg. LLF: 144.5779261082378
Iteration: 9, Func. Count: 95, Neg. LLF: 155.13524981272923
Iteration: 10, Func. Count: 107, Neg. LLF: 144.59351808862576
Iteration: 11, Func. Count: 118, Neg. LLF: 144.57964155099978
Iteration: 12, Func. Count: 129, Neg. LLF: 144.57521199645478
Iteration: 13, Func. Count: 139, Neg. LLF: 144.5750421583131
Iteration: 14, Func. Count: 149, Neg. LLF: 144.57464974118514
Iteration: 15, Func. Count: 159, Neg. LLF: 144.5738607824397
Iteration: 16, Func. Count: 169, Neg. LLF: 144.5728952805963
Iteration: 17, Func. Count: 179, Neg. LLF: 144.5723999033214
Iteration: 18, Func. Count: 189, Neg. LLF: 144.5722658701389
Iteration: 19, Func. Count: 199, Neg. LLF: 144.57225208327256
Iteration: 20, Func. Count: 208, Neg. LLF: 144.57225209877765
Optimization terminated successfully (Exit mode 0)
Current function value: 144.57225208327256
Iterations: 21
Function evaluations: 208
Gradient evaluations: 20
Iteration: 1, Func. Count: 8, Neg. LLF: 145.80348061633887
Iteration: 2, Func. Count: 15, Neg. LLF: 147.73059359484543
Iteration: 3, Func. Count: 23, Neg. LLF: 143.82224714131002
Iteration: 4, Func. Count: 30, Neg. LLF: 143.62738171417084
Iteration: 5, Func. Count: 37, Neg. LLF: 143.48766827043806
Iteration: 6, Func. Count: 44, Neg. LLF: 143.30030645158013
Iteration: 7, Func. Count: 51, Neg. LLF: 143.21683415029423
Iteration: 8, Func. Count: 58, Neg. LLF: 143.2102668129105
Iteration: 9, Func. Count: 65, Neg. LLF: 143.20968249216747
Iteration: 10, Func. Count: 72, Neg. LLF: 143.20948118619344
Iteration: 11, Func. Count: 79, Neg. LLF: 143.20948070267733
Optimization terminated successfully (Exit mode 0)
Current function value: 143.20948070267733
Iterations: 11
Function evaluations: 79
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 149.0155146831546
Iteration: 2, Func. Count: 18, Neg. LLF: 148.3301887982636
Iteration: 3, Func. Count: 27, Neg. LLF: 145.40920823486238
Iteration: 4, Func. Count: 36, Neg. LLF: 144.37225026477577
Iteration: 5, Func. Count: 44, Neg. LLF: 144.24555681028698
Iteration: 6, Func. Count: 52, Neg. LLF: 144.22442080765964
Iteration: 7, Func. Count: 60, Neg. LLF: 144.21787458516278
Iteration: 8, Func. Count: 68, Neg. LLF: 144.21580211506225
Iteration: 9, Func. Count: 76, Neg. LLF: 144.21507070081557
Iteration: 10, Func. Count: 84, Neg. LLF: 144.2147928767185
Iteration: 11, Func. Count: 92, Neg. LLF: 144.21477590044998
Iteration: 12, Func. Count: 100, Neg. LLF: 144.21472696266667
Iteration: 13, Func. Count: 108, Neg. LLF: 144.2146574905943
Iteration: 14, Func. Count: 116, Neg. LLF: 144.21458520682327
Iteration: 15, Func. Count: 124, Neg. LLF: 144.21455584652182
Iteration: 16, Func. Count: 132, Neg. LLF: 144.2145523083599
Iteration: 17, Func. Count: 139, Neg. LLF: 144.21455230836963
Optimization terminated successfully (Exit mode 0)
Current function value: 144.2145523083599
Iterations: 17
Function evaluations: 139
Gradient evaluations: 17
Iteration: 1, Func. Count: 10, Neg. LLF: 147.5461485337844
Iteration: 2, Func. Count: 21, Neg. LLF: 148.23987365019534
Iteration: 3, Func. Count: 31, Neg. LLF: 144.57289440838642
Iteration: 4, Func. Count: 40, Neg. LLF: 144.4488483081006
Iteration: 5, Func. Count: 49, Neg. LLF: 145.4628303187856
Iteration: 6, Func. Count: 59, Neg. LLF: 144.23166098091326
Iteration: 7, Func. Count: 68, Neg. LLF: 144.22133565151367
Iteration: 8, Func. Count: 77, Neg. LLF: 144.215638166099
Iteration: 9, Func. Count: 86, Neg. LLF: 144.2152784226705
Iteration: 10, Func. Count: 95, Neg. LLF: 144.21518696453427
Iteration: 11, Func. Count: 104, Neg. LLF: 144.21512552088302
Iteration: 12, Func. Count: 113, Neg. LLF: 144.21500263508463
Iteration: 13, Func. Count: 122, Neg. LLF: 144.21488437068754
Iteration: 14, Func. Count: 131, Neg. LLF: 144.21472274192115
Iteration: 15, Func. Count: 140, Neg. LLF: 144.21460594496736
Iteration: 16, Func. Count: 149, Neg. LLF: 144.2145582622874
Iteration: 17, Func. Count: 158, Neg. LLF: 144.214552395093
Iteration: 18, Func. Count: 166, Neg. LLF: 144.2145524686337
Optimization terminated successfully (Exit mode 0)
Current function value: 144.214552395093
Iterations: 18
Function evaluations: 166
Gradient evaluations: 18
Iteration: 1, Func. Count: 11, Neg. LLF: 148.06712257850256
Iteration: 2, Func. Count: 24, Neg. LLF: 148.1643815769263
Iteration: 3, Func. Count: 35, Neg. LLF: 144.6736297677065
Iteration: 4, Func. Count: 45, Neg. LLF: 144.4489368240109
Iteration: 5, Func. Count: 55, Neg. LLF: 144.37432076931842
Iteration: 6, Func. Count: 65, Neg. LLF: 144.33699237284932
Iteration: 7, Func. Count: 75, Neg. LLF: 144.28856792228376
Iteration: 8, Func. Count: 85, Neg. LLF: 144.26075004695488
Iteration: 9, Func. Count: 95, Neg. LLF: 144.2200117918637
Iteration: 10, Func. Count: 105, Neg. LLF: 144.21638913454447
Iteration: 11, Func. Count: 115, Neg. LLF: 144.21594302647262
Iteration: 12, Func. Count: 125, Neg. LLF: 144.21582960822985
Iteration: 13, Func. Count: 135, Neg. LLF: 144.21567792296776
Iteration: 14, Func. Count: 145, Neg. LLF: 144.21534344300952
Iteration: 15, Func. Count: 155, Neg. LLF: 144.2149657703313
Iteration: 16, Func. Count: 165, Neg. LLF: 144.21469087348936
Iteration: 17, Func. Count: 175, Neg. LLF: 144.21459034072464
Iteration: 18, Func. Count: 185, Neg. LLF: 144.21456509065538
Iteration: 19, Func. Count: 195, Neg. LLF: 144.21455566033603
Iteration: 20, Func. Count: 205, Neg. LLF: 144.21455253892913
Iteration: 21, Func. Count: 214, Neg. LLF: 144.21455262590203
Optimization terminated successfully (Exit mode 0)
Current function value: 144.21455253892913
Iterations: 21
Function evaluations: 214
Gradient evaluations: 21
Iteration: 1, Func. Count: 12, Neg. LLF: 149.0517650590715
Iteration: 2, Func. Count: 25, Neg. LLF: 147.9363935374731
Iteration: 3, Func. Count: 37, Neg. LLF: 144.67865409484614
Iteration: 4, Func. Count: 48, Neg. LLF: 144.44355565820018
Iteration: 5, Func. Count: 59, Neg. LLF: 144.45298364970154
Iteration: 6, Func. Count: 71, Neg. LLF: 144.29445929320707
Iteration: 7, Func. Count: 82, Neg. LLF: 144.23962948339312
Iteration: 8, Func. Count: 93, Neg. LLF: 144.22061793250745
Iteration: 9, Func. Count: 104, Neg. LLF: 144.2154737395471
Iteration: 10, Func. Count: 115, Neg. LLF: 144.21503340079815
Iteration: 11, Func. Count: 126, Neg. LLF: 144.21498952217263
Iteration: 12, Func. Count: 137, Neg. LLF: 144.21495056026652
Iteration: 13, Func. Count: 148, Neg. LLF: 144.21479874817456
Iteration: 14, Func. Count: 159, Neg. LLF: 144.21469770467195
Iteration: 15, Func. Count: 170, Neg. LLF: 144.21460467629623
Iteration: 16, Func. Count: 181, Neg. LLF: 144.21456528993352
Iteration: 17, Func. Count: 192, Neg. LLF: 144.2145534606836
Iteration: 18, Func. Count: 203, Neg. LLF: 144.21455224968506
Iteration: 19, Func. Count: 213, Neg. LLF: 144.21455227149048
Optimization terminated successfully (Exit mode 0)
Current function value: 144.21455224968506
Iterations: 19
Function evaluations: 213
Gradient evaluations: 19
Iteration: 1, Func. Count: 9, Neg. LLF: 144.48928120129494
Iteration: 2, Func. Count: 17, Neg. LLF: 148.81823202157162
Iteration: 3, Func. Count: 26, Neg. LLF: 143.86092114709373
Iteration: 4, Func. Count: 34, Neg. LLF: 146.5651944177313
Iteration: 5, Func. Count: 43, Neg. LLF: 143.4492447828694
Iteration: 6, Func. Count: 51, Neg. LLF: 143.26369694131986
Iteration: 7, Func. Count: 59, Neg. LLF: 143.23276591202082
Iteration: 8, Func. Count: 67, Neg. LLF: 143.21000501312136
Iteration: 9, Func. Count: 75, Neg. LLF: 143.20948577478254
Iteration: 10, Func. Count: 83, Neg. LLF: 143.20948060690225
Iteration: 11, Func. Count: 90, Neg. LLF: 143.20948093457645
Optimization terminated successfully (Exit mode 0)
Current function value: 143.20948060690225
Iterations: 11
Function evaluations: 90
Gradient evaluations: 11
Iteration: 1, Func. Count: 10, Neg. LLF: 149.02557281576327
Iteration: 2, Func. Count: 20, Neg. LLF: 148.30878759465176
Iteration: 3, Func. Count: 30, Neg. LLF: 145.44433858617765
Iteration: 4, Func. Count: 40, Neg. LLF: 144.36793799826287
Iteration: 5, Func. Count: 49, Neg. LLF: 144.24579618814633
Iteration: 6, Func. Count: 58, Neg. LLF: 144.2246234160623
Iteration: 7, Func. Count: 67, Neg. LLF: 144.21798489396065
Iteration: 8, Func. Count: 76, Neg. LLF: 144.21582953213596
Iteration: 9, Func. Count: 85, Neg. LLF: 144.21507922047553
Iteration: 10, Func. Count: 94, Neg. LLF: 144.21478697407267
Iteration: 11, Func. Count: 103, Neg. LLF: 144.21477043391408
Iteration: 12, Func. Count: 112, Neg. LLF: 144.21472339725813
Iteration: 13, Func. Count: 121, Neg. LLF: 144.2146561554638
Iteration: 14, Func. Count: 130, Neg. LLF: 144.21458516092818
Iteration: 15, Func. Count: 139, Neg. LLF: 144.21455594639107
Iteration: 16, Func. Count: 148, Neg. LLF: 144.21455231550678
Iteration: 17, Func. Count: 156, Neg. LLF: 144.2145523155184
Optimization terminated successfully (Exit mode 0)
Current function value: 144.21455231550678
Iterations: 17
Function evaluations: 156
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 147.37278327089004
Iteration: 2, Func. Count: 23, Neg. LLF: 148.22590717107417
Iteration: 3, Func. Count: 34, Neg. LLF: 144.59527354516567
Iteration: 4, Func. Count: 44, Neg. LLF: 144.45176228044812
Iteration: 5, Func. Count: 54, Neg. LLF: 145.684172586179
Iteration: 6, Func. Count: 65, Neg. LLF: 144.2310135957973
Iteration: 7, Func. Count: 75, Neg. LLF: 144.22110039137243
Iteration: 8, Func. Count: 85, Neg. LLF: 144.21557147409777
Iteration: 9, Func. Count: 95, Neg. LLF: 144.2152239640089
Iteration: 10, Func. Count: 105, Neg. LLF: 144.2151426114616
Iteration: 11, Func. Count: 115, Neg. LLF: 144.21509342604182
Iteration: 12, Func. Count: 125, Neg. LLF: 144.2149131003499
Iteration: 13, Func. Count: 135, Neg. LLF: 144.21481726757287
Iteration: 14, Func. Count: 145, Neg. LLF: 144.21464256294462
Iteration: 15, Func. Count: 155, Neg. LLF: 144.21457043444278
Iteration: 16, Func. Count: 165, Neg. LLF: 144.214552812233
Iteration: 17, Func. Count: 175, Neg. LLF: 144.21455219583055
Optimization terminated successfully (Exit mode 0)
Current function value: 144.21455219583055
Iterations: 17
Function evaluations: 175
Gradient evaluations: 17
Iteration: 1, Func. Count: 12, Neg. LLF: 147.8937362088161
Iteration: 2, Func. Count: 26, Neg. LLF: 148.1401325178261
Iteration: 3, Func. Count: 38, Neg. LLF: 144.67777471232165
Iteration: 4, Func. Count: 49, Neg. LLF: 144.4663523296505
Iteration: 5, Func. Count: 60, Neg. LLF: 144.36834609556888
Iteration: 6, Func. Count: 71, Neg. LLF: 144.3310053772418
Iteration: 7, Func. Count: 82, Neg. LLF: 144.27992137418082
Iteration: 8, Func. Count: 93, Neg. LLF: 144.23954244374275
Iteration: 9, Func. Count: 104, Neg. LLF: 144.21789158045763
Iteration: 10, Func. Count: 115, Neg. LLF: 144.21594191211952
Iteration: 11, Func. Count: 126, Neg. LLF: 144.2156481724754
Iteration: 12, Func. Count: 137, Neg. LLF: 144.21557451755376
Iteration: 13, Func. Count: 148, Neg. LLF: 144.21528569729355
Iteration: 14, Func. Count: 159, Neg. LLF: 144.21504068441936
Iteration: 15, Func. Count: 170, Neg. LLF: 144.21480160112742
Iteration: 16, Func. Count: 181, Neg. LLF: 144.21465453543988
Iteration: 17, Func. Count: 192, Neg. LLF: 144.21458114840584
Iteration: 18, Func. Count: 203, Neg. LLF: 144.21455686731122
Iteration: 19, Func. Count: 214, Neg. LLF: 144.21455252061196
Iteration: 20, Func. Count: 224, Neg. LLF: 144.21455260755118
Optimization terminated successfully (Exit mode 0)
Current function value: 144.21455252061196
Iterations: 20
Function evaluations: 224
Gradient evaluations: 20
Iteration: 1, Func. Count: 13, Neg. LLF: 148.88735392565408
Iteration: 2, Func. Count: 27, Neg. LLF: 147.90987271373234
Iteration: 3, Func. Count: 40, Neg. LLF: 144.68011977599568
Iteration: 4, Func. Count: 52, Neg. LLF: 144.45492858780983
Iteration: 5, Func. Count: 64, Neg. LLF: 144.43119466290798
Iteration: 6, Func. Count: 76, Neg. LLF: 144.28954539428014
Iteration: 7, Func. Count: 88, Neg. LLF: 144.2476590257863
Iteration: 8, Func. Count: 100, Neg. LLF: 144.22268751925387
Iteration: 9, Func. Count: 112, Neg. LLF: 144.21576730352655
Iteration: 10, Func. Count: 124, Neg. LLF: 144.21513771362584
Iteration: 11, Func. Count: 136, Neg. LLF: 144.21503323296105
Iteration: 12, Func. Count: 148, Neg. LLF: 144.21498062279497
Iteration: 13, Func. Count: 160, Neg. LLF: 144.2149145380824
Iteration: 14, Func. Count: 172, Neg. LLF: 144.21484577271673
Iteration: 15, Func. Count: 184, Neg. LLF: 144.2147268800297
Iteration: 16, Func. Count: 196, Neg. LLF: 144.21461586855372
Iteration: 17, Func. Count: 208, Neg. LLF: 144.21456265774418
Iteration: 18, Func. Count: 220, Neg. LLF: 144.2145526965803
Iteration: 19, Func. Count: 231, Neg. LLF: 144.2145527184018
Optimization terminated successfully (Exit mode 0)
Current function value: 144.2145526965803
Iterations: 19
Function evaluations: 231
Gradient evaluations: 19
Iteration: 1, Func. Count: 10, Neg. LLF: 144.47739135351256
Iteration: 2, Func. Count: 19, Neg. LLF: 148.78740050836197
Iteration: 3, Func. Count: 29, Neg. LLF: 143.85863316413926
Iteration: 4, Func. Count: 38, Neg. LLF: 146.80177364518727
Iteration: 5, Func. Count: 48, Neg. LLF: 143.45366754037337
Iteration: 6, Func. Count: 57, Neg. LLF: 143.26574431203753
Iteration: 7, Func. Count: 66, Neg. LLF: 143.22701176380562
Iteration: 8, Func. Count: 75, Neg. LLF: 143.209927372849
Iteration: 9, Func. Count: 84, Neg. LLF: 143.20948567209948
Iteration: 10, Func. Count: 93, Neg. LLF: 143.2094817952554
Iteration: 11, Func. Count: 102, Neg. LLF: 143.2094805847339
Iteration: 12, Func. Count: 110, Neg. LLF: 143.2094807667213
Optimization terminated successfully (Exit mode 0)
Current function value: 143.2094805847339
Iterations: 12
Function evaluations: 110
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 149.0262085269532
Iteration: 2, Func. Count: 22, Neg. LLF: 148.30835893803714
Iteration: 3, Func. Count: 33, Neg. LLF: 145.45688967268373
Iteration: 4, Func. Count: 44, Neg. LLF: 144.36783550756275
Iteration: 5, Func. Count: 54, Neg. LLF: 144.24592034083526
Iteration: 6, Func. Count: 64, Neg. LLF: 144.22468069379025
Iteration: 7, Func. Count: 74, Neg. LLF: 144.21800206457982
Iteration: 8, Func. Count: 84, Neg. LLF: 144.21583677788956
Iteration: 9, Func. Count: 94, Neg. LLF: 144.215080550404
Iteration: 10, Func. Count: 104, Neg. LLF: 144.2147887032247
Iteration: 11, Func. Count: 114, Neg. LLF: 144.2147720229048
Iteration: 12, Func. Count: 124, Neg. LLF: 144.21472462845085
Iteration: 13, Func. Count: 134, Neg. LLF: 144.21465668034557
Iteration: 14, Func. Count: 144, Neg. LLF: 144.21458549323845
Iteration: 15, Func. Count: 154, Neg. LLF: 144.21455592946126
Iteration: 16, Func. Count: 164, Neg. LLF: 144.21455231938748
Iteration: 17, Func. Count: 173, Neg. LLF: 144.21455231939947
Optimization terminated successfully (Exit mode 0)
Current function value: 144.21455231938748
Iterations: 17
Function evaluations: 173
Gradient evaluations: 17
Iteration: 1, Func. Count: 12, Neg. LLF: 147.25542726939537
Iteration: 2, Func. Count: 25, Neg. LLF: 148.23675456242694
Iteration: 3, Func. Count: 37, Neg. LLF: 144.61128274005918
Iteration: 4, Func. Count: 48, Neg. LLF: 144.4540231026476
Iteration: 5, Func. Count: 59, Neg. LLF: 145.79141770171785
Iteration: 6, Func. Count: 71, Neg. LLF: 144.230820444608
Iteration: 7, Func. Count: 82, Neg. LLF: 144.22099037201917
Iteration: 8, Func. Count: 93, Neg. LLF: 144.21557033961298
Iteration: 9, Func. Count: 104, Neg. LLF: 144.21517875816417
Iteration: 10, Func. Count: 115, Neg. LLF: 144.21511691513953
Iteration: 11, Func. Count: 126, Neg. LLF: 144.21506602334682
Iteration: 12, Func. Count: 137, Neg. LLF: 144.21491286583537
Iteration: 13, Func. Count: 148, Neg. LLF: 144.21481549717208
Iteration: 14, Func. Count: 159, Neg. LLF: 144.2146551879552
Iteration: 15, Func. Count: 170, Neg. LLF: 144.21457582443048
Iteration: 16, Func. Count: 181, Neg. LLF: 144.21455348668246
Iteration: 17, Func. Count: 192, Neg. LLF: 144.2145522112978
Iteration: 18, Func. Count: 202, Neg. LLF: 144.21455228484476
Optimization terminated successfully (Exit mode 0)
Current function value: 144.2145522112978
Iterations: 18
Function evaluations: 202
Gradient evaluations: 18
Iteration: 1, Func. Count: 13, Neg. LLF: 147.95761027987422
Iteration: 2, Func. Count: 28, Neg. LLF: 148.14289392930863
Iteration: 3, Func. Count: 41, Neg. LLF: 144.67949079672567
Iteration: 4, Func. Count: 53, Neg. LLF: 144.47211510900854
Iteration: 5, Func. Count: 65, Neg. LLF: 144.36671802575466
Iteration: 6, Func. Count: 77, Neg. LLF: 144.3312468730572
Iteration: 7, Func. Count: 89, Neg. LLF: 144.27886738983278
Iteration: 8, Func. Count: 101, Neg. LLF: 144.23660466778657
Iteration: 9, Func. Count: 113, Neg. LLF: 144.2178627416601
Iteration: 10, Func. Count: 125, Neg. LLF: 144.21584616137602
Iteration: 11, Func. Count: 137, Neg. LLF: 144.21560280692793
Iteration: 12, Func. Count: 149, Neg. LLF: 144.21553037367644
Iteration: 13, Func. Count: 161, Neg. LLF: 144.21525969310093
Iteration: 14, Func. Count: 173, Neg. LLF: 144.21501941254357
Iteration: 15, Func. Count: 185, Neg. LLF: 144.21478291934554
Iteration: 16, Func. Count: 197, Neg. LLF: 144.21464462366347
Iteration: 17, Func. Count: 209, Neg. LLF: 144.214578850499
Iteration: 18, Func. Count: 221, Neg. LLF: 144.2145569564072
Iteration: 19, Func. Count: 233, Neg. LLF: 144.21455255257922
Iteration: 20, Func. Count: 244, Neg. LLF: 144.21455263951685
Optimization terminated successfully (Exit mode 0)
Current function value: 144.21455255257922
Iterations: 20
Function evaluations: 244
Gradient evaluations: 20
Iteration: 1, Func. Count: 14, Neg. LLF: 148.68851853505217
Iteration: 2, Func. Count: 29, Neg. LLF: 147.90324333157392
Iteration: 3, Func. Count: 43, Neg. LLF: 144.68517101651454
Iteration: 4, Func. Count: 56, Neg. LLF: 144.47033349203542
Iteration: 5, Func. Count: 69, Neg. LLF: 144.42814034161506
Iteration: 6, Func. Count: 82, Neg. LLF: 144.28614857371443
Iteration: 7, Func. Count: 95, Neg. LLF: 144.24220375810526
Iteration: 8, Func. Count: 108, Neg. LLF: 144.2230318909631
Iteration: 9, Func. Count: 121, Neg. LLF: 144.21569154092273
Iteration: 10, Func. Count: 134, Neg. LLF: 144.21507528750837
Iteration: 11, Func. Count: 147, Neg. LLF: 144.21498766836092
Iteration: 12, Func. Count: 160, Neg. LLF: 144.2149384863801
Iteration: 13, Func. Count: 173, Neg. LLF: 144.21488237085316
Iteration: 14, Func. Count: 186, Neg. LLF: 144.21480758249822
Iteration: 15, Func. Count: 199, Neg. LLF: 144.21470095512439
Iteration: 16, Func. Count: 212, Neg. LLF: 144.21460440400278
Iteration: 17, Func. Count: 225, Neg. LLF: 144.21456072719715
Iteration: 18, Func. Count: 238, Neg. LLF: 144.2145526429619
Iteration: 19, Func. Count: 250, Neg. LLF: 144.21455266477346
Optimization terminated successfully (Exit mode 0)
Current function value: 144.2145526429619
Iterations: 19
Function evaluations: 250
Gradient evaluations: 19
Iteration: 1, Func. Count: 7, Neg. LLF: 144.83401010399203
Iteration: 2, Func. Count: 13, Neg. LLF: 151.45389738454267
Iteration: 3, Func. Count: 20, Neg. LLF: 143.91928334257116
Iteration: 4, Func. Count: 26, Neg. LLF: 143.35262806466065
Iteration: 5, Func. Count: 32, Neg. LLF: 143.34893267015084
Iteration: 6, Func. Count: 38, Neg. LLF: 143.3447188836895
Iteration: 7, Func. Count: 44, Neg. LLF: 143.34470000787613
Iteration: 8, Func. Count: 49, Neg. LLF: 143.34470035280992
Optimization terminated successfully (Exit mode 0)
Current function value: 143.34470000787613
Iterations: 8
Function evaluations: 49
Gradient evaluations: 8
Iteration: 1, Func. Count: 8, Neg. LLF: 155.30207204179356
Iteration: 2, Func. Count: 17, Neg. LLF: 144.7255388361362
Iteration: 3, Func. Count: 24, Neg. LLF: 144.725373545179
Iteration: 4, Func. Count: 32, Neg. LLF: 144.72484143167577
Iteration: 5, Func. Count: 39, Neg. LLF: 144.72478173045556
Iteration: 6, Func. Count: 45, Neg. LLF: 144.72478173038013
Optimization terminated successfully (Exit mode 0)
Current function value: 144.72478173045556
Iterations: 6
Function evaluations: 45
Gradient evaluations: 6
Iteration: 1, Func. Count: 9, Neg. LLF: 176.69486998171874
Iteration: 2, Func. Count: 19, Neg. LLF: 144.72377705416892
Iteration: 3, Func. Count: 27, Neg. LLF: 144.7236195815675
Iteration: 4, Func. Count: 36, Neg. LLF: 144.72325061196813
Iteration: 5, Func. Count: 44, Neg. LLF: 144.72317880579178
Iteration: 6, Func. Count: 52, Neg. LLF: 144.7231298150072
Iteration: 7, Func. Count: 60, Neg. LLF: 144.7227059360111
Iteration: 8, Func. Count: 68, Neg. LLF: 144.72001118680984
Iteration: 9, Func. Count: 76, Neg. LLF: 144.71981658009295
Iteration: 10, Func. Count: 84, Neg. LLF: 144.71918992676717
Iteration: 11, Func. Count: 92, Neg. LLF: 144.7191188467459
Iteration: 12, Func. Count: 100, Neg. LLF: 144.71911792713217
Optimization terminated successfully (Exit mode 0)
Current function value: 144.71911792713217
Iterations: 12
Function evaluations: 100
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 171.48701567754253
Iteration: 2, Func. Count: 21, Neg. LLF: 144.72433251483451
Iteration: 3, Func. Count: 30, Neg. LLF: 144.72429180001023
Iteration: 4, Func. Count: 40, Neg. LLF: 144.7240335154248
Iteration: 5, Func. Count: 49, Neg. LLF: 144.72403244786432
Iteration: 6, Func. Count: 57, Neg. LLF: 144.72403244787546
Optimization terminated successfully (Exit mode 0)
Current function value: 144.72403244786432
Iterations: 6
Function evaluations: 57
Gradient evaluations: 6
Iteration: 1, Func. Count: 11, Neg. LLF: 167.45105885635178
Iteration: 2, Func. Count: 23, Neg. LLF: 144.72304798729124
Iteration: 3, Func. Count: 33, Neg. LLF: 144.72317454413988
Iteration: 4, Func. Count: 44, Neg. LLF: 144.72203908033683
Iteration: 5, Func. Count: 54, Neg. LLF: 144.71974463255944
Iteration: 6, Func. Count: 64, Neg. LLF: 144.71907311837805
Iteration: 7, Func. Count: 74, Neg. LLF: 144.7162275902486
Iteration: 8, Func. Count: 84, Neg. LLF: 144.71484781961115
Iteration: 9, Func. Count: 94, Neg. LLF: 144.71483919267038
Iteration: 10, Func. Count: 104, Neg. LLF: 144.7148332571768
Iteration: 11, Func. Count: 114, Neg. LLF: 144.7148222188191
Iteration: 12, Func. Count: 124, Neg. LLF: 144.71479274870688
Iteration: 13, Func. Count: 134, Neg. LLF: 144.7147179326598
Iteration: 14, Func. Count: 144, Neg. LLF: 144.71451763582064
Iteration: 15, Func. Count: 154, Neg. LLF: 144.71392306834156
Iteration: 16, Func. Count: 164, Neg. LLF: 144.71188379054107
Iteration: 17, Func. Count: 174, Neg. LLF: 144.7316092716803
Iteration: 18, Func. Count: 185, Neg. LLF: 144.71110112126442
Iteration: 19, Func. Count: 196, Neg. LLF: 144.70711106307624
Iteration: 20, Func. Count: 206, Neg. LLF: 144.70406700138685
Iteration: 21, Func. Count: 216, Neg. LLF: 144.7041113181067
Iteration: 22, Func. Count: 227, Neg. LLF: 144.70340562798242
Iteration: 23, Func. Count: 237, Neg. LLF: 144.70301681136175
Iteration: 24, Func. Count: 247, Neg. LLF: 144.68490472360634
Iteration: 25, Func. Count: 257, Neg. LLF: 335.6732822600071
Iteration: 26, Func. Count: 269, Neg. LLF: 144.6137539539113
Iteration: 27, Func. Count: 279, Neg. LLF: 144.61628793037423
Iteration: 28, Func. Count: 290, Neg. LLF: 144.61334633106935
Iteration: 29, Func. Count: 300, Neg. LLF: 144.61334093961145
Iteration: 30, Func. Count: 309, Neg. LLF: 144.6133409326969
Optimization terminated successfully (Exit mode 0)
Current function value: 144.61334093961145
Iterations: 31
Function evaluations: 309
Gradient evaluations: 30
Iteration: 1, Func. Count: 8, Neg. LLF: 144.8375123579269
Iteration: 2, Func. Count: 15, Neg. LLF: 143.95283490285874
Iteration: 3, Func. Count: 22, Neg. LLF: 144.2059479129522
Iteration: 4, Func. Count: 30, Neg. LLF: 144.36862113167115
Iteration: 5, Func. Count: 39, Neg. LLF: 143.53768340962438
Iteration: 6, Func. Count: 46, Neg. LLF: 143.54785127286215
Iteration: 7, Func. Count: 54, Neg. LLF: 143.27777665982475
Iteration: 8, Func. Count: 61, Neg. LLF: 143.27680820528124
Iteration: 9, Func. Count: 68, Neg. LLF: 143.27680584361124
Iteration: 10, Func. Count: 74, Neg. LLF: 143.27680572523457
Optimization terminated successfully (Exit mode 0)
Current function value: 143.27680584361124
Iterations: 10
Function evaluations: 74
Gradient evaluations: 10
Iteration: 1, Func. Count: 9, Neg. LLF: 147.86178522673214
Iteration: 2, Func. Count: 19, Neg. LLF: 150.65008142150913
Iteration: 3, Func. Count: 28, Neg. LLF: 144.59260535458847
Iteration: 4, Func. Count: 36, Neg. LLF: 144.57749962811576
Iteration: 5, Func. Count: 44, Neg. LLF: 144.57448574696772
Iteration: 6, Func. Count: 52, Neg. LLF: 144.57442523145426
Iteration: 7, Func. Count: 60, Neg. LLF: 144.57435837306605
Iteration: 8, Func. Count: 68, Neg. LLF: 144.57399762771323
Iteration: 9, Func. Count: 76, Neg. LLF: 144.57348496330334
Iteration: 10, Func. Count: 84, Neg. LLF: 144.5728375661573
Iteration: 11, Func. Count: 92, Neg. LLF: 144.57240495329026
Iteration: 12, Func. Count: 100, Neg. LLF: 144.5722556837405
Iteration: 13, Func. Count: 108, Neg. LLF: 144.57225206341298
Iteration: 14, Func. Count: 115, Neg. LLF: 144.57225206341226
Optimization terminated successfully (Exit mode 0)
Current function value: 144.57225206341298
Iterations: 14
Function evaluations: 115
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 148.08570010805312
Iteration: 2, Func. Count: 21, Neg. LLF: 150.55933111953848
Iteration: 3, Func. Count: 31, Neg. LLF: 144.64123399950404
Iteration: 4, Func. Count: 40, Neg. LLF: 144.59424955879953
Iteration: 5, Func. Count: 49, Neg. LLF: 144.5752953954602
Iteration: 6, Func. Count: 58, Neg. LLF: 144.5749127714966
Iteration: 7, Func. Count: 67, Neg. LLF: 144.5745944871537
Iteration: 8, Func. Count: 76, Neg. LLF: 144.5745383088492
Iteration: 9, Func. Count: 85, Neg. LLF: 144.57433951567057
Iteration: 10, Func. Count: 94, Neg. LLF: 144.57402722803704
Iteration: 11, Func. Count: 103, Neg. LLF: 144.57338625033836
Iteration: 12, Func. Count: 112, Neg. LLF: 144.57271701490072
Iteration: 13, Func. Count: 121, Neg. LLF: 144.5723246784118
Iteration: 14, Func. Count: 130, Neg. LLF: 144.57225397829657
Iteration: 15, Func. Count: 139, Neg. LLF: 144.5722520421638
Iteration: 16, Func. Count: 147, Neg. LLF: 144.5722520488166
Optimization terminated successfully (Exit mode 0)
Current function value: 144.5722520421638
Iterations: 16
Function evaluations: 147
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 148.64766017694922
Iteration: 2, Func. Count: 23, Neg. LLF: 150.49154559228305
Iteration: 3, Func. Count: 34, Neg. LLF: 144.66110487005014
Iteration: 4, Func. Count: 44, Neg. LLF: 144.63879499754714
Iteration: 5, Func. Count: 54, Neg. LLF: 144.62662289028924
Iteration: 6, Func. Count: 64, Neg. LLF: 144.61370305927483
Iteration: 7, Func. Count: 74, Neg. LLF: 144.57683480943066
Iteration: 8, Func. Count: 84, Neg. LLF: 144.5756653176784
Iteration: 9, Func. Count: 94, Neg. LLF: 144.57472338545247
Iteration: 10, Func. Count: 104, Neg. LLF: 144.5746115740246
Iteration: 11, Func. Count: 114, Neg. LLF: 144.5744985861725
Iteration: 12, Func. Count: 124, Neg. LLF: 144.57440746118087
Iteration: 13, Func. Count: 134, Neg. LLF: 144.5740602098579
Iteration: 14, Func. Count: 144, Neg. LLF: 144.57349846525568
Iteration: 15, Func. Count: 154, Neg. LLF: 144.5727389551326
Iteration: 16, Func. Count: 164, Neg. LLF: 144.57234296567822
Iteration: 17, Func. Count: 174, Neg. LLF: 144.57225900489004
Iteration: 18, Func. Count: 184, Neg. LLF: 144.572252072745
Iteration: 19, Func. Count: 193, Neg. LLF: 144.5722520907481
Optimization terminated successfully (Exit mode 0)
Current function value: 144.572252072745
Iterations: 19
Function evaluations: 193
Gradient evaluations: 19
Iteration: 1, Func. Count: 12, Neg. LLF: 149.3432861649447
Iteration: 2, Func. Count: 25, Neg. LLF: 150.43911357737798
Iteration: 3, Func. Count: 38, Neg. LLF: 144.6667313550402
Iteration: 4, Func. Count: 49, Neg. LLF: 144.6532710351573
Iteration: 5, Func. Count: 60, Neg. LLF: 144.64273239134857
Iteration: 6, Func. Count: 71, Neg. LLF: 144.63862345195608
Iteration: 7, Func. Count: 82, Neg. LLF: 144.62567660528956
Iteration: 8, Func. Count: 93, Neg. LLF: 144.58042142304922
Iteration: 9, Func. Count: 104, Neg. LLF: 144.57706311313405
Iteration: 10, Func. Count: 115, Neg. LLF: 144.57529032117068
Iteration: 11, Func. Count: 126, Neg. LLF: 144.5751479489899
Iteration: 12, Func. Count: 137, Neg. LLF: 144.57483967177203
Iteration: 13, Func. Count: 148, Neg. LLF: 144.57429421517233
Iteration: 14, Func. Count: 159, Neg. LLF: 144.57378431532365
Iteration: 15, Func. Count: 170, Neg. LLF: 144.5731699982226
Iteration: 16, Func. Count: 181, Neg. LLF: 144.57266844084364
Iteration: 17, Func. Count: 192, Neg. LLF: 144.57239688544558
Iteration: 18, Func. Count: 203, Neg. LLF: 144.57225689172225
Iteration: 19, Func. Count: 214, Neg. LLF: 144.57224902922303
Iteration: 20, Func. Count: 225, Neg. LLF: 144.57224607343034
Iteration: 21, Func. Count: 236, Neg. LLF: 144.5722481330214
Iteration: 22, Func. Count: 247, Neg. LLF: 144.5722453065485
Optimization terminated successfully (Exit mode 0)
Current function value: 144.57224813196996
Iterations: 22
Function evaluations: 257
Gradient evaluations: 22
Iteration: 1, Func. Count: 9, Neg. LLF: 148.25973508187766
Iteration: 2, Func. Count: 18, Neg. LLF: 144.33190248596398
Iteration: 3, Func. Count: 26, Neg. LLF: 146.95995286435635
Iteration: 4, Func. Count: 35, Neg. LLF: 144.82621503441547
Iteration: 5, Func. Count: 45, Neg. LLF: 143.75563286819244
Iteration: 6, Func. Count: 53, Neg. LLF: 143.47440809808856
Iteration: 7, Func. Count: 61, Neg. LLF: 143.24501718159422
Iteration: 8, Func. Count: 69, Neg. LLF: 143.2187117028165
Iteration: 9, Func. Count: 77, Neg. LLF: 143.21042081831357
Iteration: 10, Func. Count: 85, Neg. LLF: 143.20959261559182
Iteration: 11, Func. Count: 93, Neg. LLF: 143.20948509287797
Iteration: 12, Func. Count: 101, Neg. LLF: 143.20948060966705
Iteration: 13, Func. Count: 108, Neg. LLF: 143.20948059460108
Optimization terminated successfully (Exit mode 0)
Current function value: 143.20948060966705
Iterations: 13
Function evaluations: 108
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 149.01634135358208
Iteration: 2, Func. Count: 20, Neg. LLF: 148.33650236232302
Iteration: 3, Func. Count: 30, Neg. LLF: 145.482283222802
Iteration: 4, Func. Count: 40, Neg. LLF: 144.3713729747391
Iteration: 5, Func. Count: 49, Neg. LLF: 144.24734474964774
Iteration: 6, Func. Count: 58, Neg. LLF: 144.225316093988
Iteration: 7, Func. Count: 67, Neg. LLF: 144.21826818918765
Iteration: 8, Func. Count: 76, Neg. LLF: 144.21595629914023
Iteration: 9, Func. Count: 85, Neg. LLF: 144.21512502418528
Iteration: 10, Func. Count: 94, Neg. LLF: 144.21481333389457
Iteration: 11, Func. Count: 103, Neg. LLF: 144.2147947669428
Iteration: 12, Func. Count: 112, Neg. LLF: 144.21474418484667
Iteration: 13, Func. Count: 121, Neg. LLF: 144.2146688122842
Iteration: 14, Func. Count: 130, Neg. LLF: 144.21459008296327
Iteration: 15, Func. Count: 139, Neg. LLF: 144.2145565617962
Iteration: 16, Func. Count: 148, Neg. LLF: 144.21455233623266
Iteration: 17, Func. Count: 156, Neg. LLF: 144.2145523362478
Optimization terminated successfully (Exit mode 0)
Current function value: 144.21455233623266
Iterations: 17
Function evaluations: 156
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 147.92491133093648
Iteration: 2, Func. Count: 23, Neg. LLF: 148.25672409063463
Iteration: 3, Func. Count: 34, Neg. LLF: 144.57013472563082
Iteration: 4, Func. Count: 44, Neg. LLF: 144.47041012735139
Iteration: 5, Func. Count: 54, Neg. LLF: 144.9999536641135
Iteration: 6, Func. Count: 65, Neg. LLF: 144.23451351066592
Iteration: 7, Func. Count: 75, Neg. LLF: 144.22235498482604
Iteration: 8, Func. Count: 85, Neg. LLF: 144.21612726587946
Iteration: 9, Func. Count: 95, Neg. LLF: 144.21540569575987
Iteration: 10, Func. Count: 105, Neg. LLF: 144.21527262364933
Iteration: 11, Func. Count: 115, Neg. LLF: 144.21520786238364
Iteration: 12, Func. Count: 125, Neg. LLF: 144.21506137909157
Iteration: 13, Func. Count: 135, Neg. LLF: 144.21496478342698
Iteration: 14, Func. Count: 145, Neg. LLF: 144.21473669854345
Iteration: 15, Func. Count: 155, Neg. LLF: 144.21460494973698
Iteration: 16, Func. Count: 165, Neg. LLF: 144.21455586076686
Iteration: 17, Func. Count: 175, Neg. LLF: 144.21455224137847
Iteration: 18, Func. Count: 184, Neg. LLF: 144.2145523149411
Optimization terminated successfully (Exit mode 0)
Current function value: 144.21455224137847
Iterations: 18
Function evaluations: 184
Gradient evaluations: 18
Iteration: 1, Func. Count: 12, Neg. LLF: 148.4333256811549
Iteration: 2, Func. Count: 25, Neg. LLF: 148.24966554432345
Iteration: 3, Func. Count: 37, Neg. LLF: 144.78718724674533
Iteration: 4, Func. Count: 48, Neg. LLF: 144.61456638922814
Iteration: 5, Func. Count: 59, Neg. LLF: 144.93258514355568
Iteration: 6, Func. Count: 71, Neg. LLF: 144.3025541838739
Iteration: 7, Func. Count: 82, Neg. LLF: 144.26580489701132
Iteration: 8, Func. Count: 93, Neg. LLF: 144.2399217965365
Iteration: 9, Func. Count: 104, Neg. LLF: 144.22466231228813
Iteration: 10, Func. Count: 115, Neg. LLF: 144.21755335392604
Iteration: 11, Func. Count: 126, Neg. LLF: 144.21567189313922
Iteration: 12, Func. Count: 137, Neg. LLF: 144.2155054005019
Iteration: 13, Func. Count: 148, Neg. LLF: 144.21541645699875
Iteration: 14, Func. Count: 159, Neg. LLF: 144.21528734727082
Iteration: 15, Func. Count: 170, Neg. LLF: 144.21509081737088
Iteration: 16, Func. Count: 181, Neg. LLF: 144.2148531597595
Iteration: 17, Func. Count: 192, Neg. LLF: 144.21465713300736
Iteration: 18, Func. Count: 203, Neg. LLF: 144.21457121862335
Iteration: 19, Func. Count: 214, Neg. LLF: 144.21455377548062
Iteration: 20, Func. Count: 225, Neg. LLF: 144.21455232177857
Iteration: 21, Func. Count: 235, Neg. LLF: 144.21455240874246
Optimization terminated successfully (Exit mode 0)
Current function value: 144.21455232177857
Iterations: 21
Function evaluations: 235
Gradient evaluations: 21
Iteration: 1, Func. Count: 13, Neg. LLF: 149.39619216073768
Iteration: 2, Func. Count: 27, Neg. LLF: 147.94697564083484
Iteration: 3, Func. Count: 40, Neg. LLF: 144.68407532822758
Iteration: 4, Func. Count: 52, Neg. LLF: 144.44497050459378
Iteration: 5, Func. Count: 64, Neg. LLF: 144.45122129120398
Iteration: 6, Func. Count: 77, Neg. LLF: 144.29061639796564
Iteration: 7, Func. Count: 89, Neg. LLF: 144.23785823731288
Iteration: 8, Func. Count: 101, Neg. LLF: 144.21976527784915
Iteration: 9, Func. Count: 113, Neg. LLF: 144.21537958369694
Iteration: 10, Func. Count: 125, Neg. LLF: 144.21500925365976
Iteration: 11, Func. Count: 137, Neg. LLF: 144.21496681333267
Iteration: 12, Func. Count: 149, Neg. LLF: 144.21492199650993
Iteration: 13, Func. Count: 161, Neg. LLF: 144.2148290971881
Iteration: 14, Func. Count: 173, Neg. LLF: 144.21473239150362
Iteration: 15, Func. Count: 185, Neg. LLF: 144.21463195625515
Iteration: 16, Func. Count: 197, Neg. LLF: 144.21457361202374
Iteration: 17, Func. Count: 209, Neg. LLF: 144.2145546262532
Iteration: 18, Func. Count: 221, Neg. LLF: 144.21455228723374
Iteration: 19, Func. Count: 232, Neg. LLF: 144.21455230903257
Optimization terminated successfully (Exit mode 0)
Current function value: 144.21455228723374
Iterations: 19
Function evaluations: 232
Gradient evaluations: 19
Iteration: 1, Func. Count: 10, Neg. LLF: 144.6798726068411
Iteration: 2, Func. Count: 19, Neg. LLF: 147.7445403892109
Iteration: 3, Func. Count: 29, Neg. LLF: 143.0837568874279
Iteration: 4, Func. Count: 38, Neg. LLF: 142.81420799004937
Iteration: 5, Func. Count: 47, Neg. LLF: 142.76343197266678
Iteration: 6, Func. Count: 56, Neg. LLF: 142.72677290157762
Iteration: 7, Func. Count: 65, Neg. LLF: 142.6850679550054
Iteration: 8, Func. Count: 74, Neg. LLF: 142.62655859810064
Iteration: 9, Func. Count: 83, Neg. LLF: 142.5915948927517
Iteration: 10, Func. Count: 92, Neg. LLF: 142.57827989681303
Iteration: 11, Func. Count: 101, Neg. LLF: 142.57457448812667
Iteration: 12, Func. Count: 110, Neg. LLF: 142.57444812065063
Iteration: 13, Func. Count: 119, Neg. LLF: 142.57440487592746
Iteration: 14, Func. Count: 128, Neg. LLF: 142.57440362912914
Iteration: 15, Func. Count: 136, Neg. LLF: 142.57440334167873
Optimization terminated successfully (Exit mode 0)
Current function value: 142.57440362912914
Iterations: 15
Function evaluations: 136
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 149.0263096860696
Iteration: 2, Func. Count: 22, Neg. LLF: 142.770122263779
Iteration: 3, Func. Count: 32, Neg. LLF: 143.13776960860568
Iteration: 4, Func. Count: 43, Neg. LLF: 142.69372824182932
Iteration: 5, Func. Count: 53, Neg. LLF: 142.68001441436965
Iteration: 6, Func. Count: 63, Neg. LLF: 142.65975909261581
Iteration: 7, Func. Count: 73, Neg. LLF: 142.57599185912534
Iteration: 8, Func. Count: 83, Neg. LLF: 142.57447579220468
Iteration: 9, Func. Count: 93, Neg. LLF: 142.5744090995248
Iteration: 10, Func. Count: 103, Neg. LLF: 142.57440589952438
Iteration: 11, Func. Count: 113, Neg. LLF: 142.5744036168824
Iteration: 12, Func. Count: 122, Neg. LLF: 142.57440368800954
Optimization terminated successfully (Exit mode 0)
Current function value: 142.5744036168824
Iterations: 12
Function evaluations: 122
Gradient evaluations: 12
Iteration: 1, Func. Count: 12, Neg. LLF: 146.62033582235972
Iteration: 2, Func. Count: 25, Neg. LLF: 143.20438226137995
Iteration: 3, Func. Count: 36, Neg. LLF: 143.2925512524036
Iteration: 4, Func. Count: 48, Neg. LLF: 143.90332909050042
Iteration: 5, Func. Count: 60, Neg. LLF: 143.00340451054902
Iteration: 6, Func. Count: 72, Neg. LLF: 142.89376791746318
Iteration: 7, Func. Count: 83, Neg. LLF: 142.81687278857353
Iteration: 8, Func. Count: 94, Neg. LLF: 142.73639828503127
Iteration: 9, Func. Count: 105, Neg. LLF: 142.70539632839126
Iteration: 10, Func. Count: 116, Neg. LLF: 142.68267577181163
Iteration: 11, Func. Count: 127, Neg. LLF: 142.65244337866278
Iteration: 12, Func. Count: 138, Neg. LLF: 142.62080181133186
Iteration: 13, Func. Count: 149, Neg. LLF: 142.57956765363213
Iteration: 14, Func. Count: 160, Neg. LLF: 142.57554653687754
Iteration: 15, Func. Count: 171, Neg. LLF: 142.57452975368676
Iteration: 16, Func. Count: 182, Neg. LLF: 142.57440626006442
Iteration: 17, Func. Count: 193, Neg. LLF: 142.57440226601554
Iteration: 18, Func. Count: 204, Neg. LLF: 142.57440550701102
Iteration: 19, Func. Count: 216, Neg. LLF: 142.5744051087231
Iteration: 20, Func. Count: 228, Neg. LLF: 142.5744034904305
Optimization terminated successfully (Exit mode 0)
Current function value: 142.57440280479597
Iterations: 21
Function evaluations: 229
Gradient evaluations: 20
Iteration: 1, Func. Count: 13, Neg. LLF: 143.6741735078924
Iteration: 2, Func. Count: 25, Neg. LLF: 143.31469576617198
Iteration: 3, Func. Count: 37, Neg. LLF: 143.27798616196577
Iteration: 4, Func. Count: 50, Neg. LLF: 142.80262061161238
Iteration: 5, Func. Count: 62, Neg. LLF: 142.7201305594545
Iteration: 6, Func. Count: 74, Neg. LLF: 142.68096817615574
Iteration: 7, Func. Count: 86, Neg. LLF: 142.6562381663048
Iteration: 8, Func. Count: 98, Neg. LLF: 142.63604889920978
Iteration: 9, Func. Count: 110, Neg. LLF: 142.57633974434785
Iteration: 10, Func. Count: 122, Neg. LLF: 142.57454351302948
Iteration: 11, Func. Count: 134, Neg. LLF: 142.57441100096744
Iteration: 12, Func. Count: 146, Neg. LLF: 142.5744035147859
Iteration: 13, Func. Count: 157, Neg. LLF: 142.5744036851764
Optimization terminated successfully (Exit mode 0)
Current function value: 142.5744035147859
Iterations: 13
Function evaluations: 157
Gradient evaluations: 13
Iteration: 1, Func. Count: 14, Neg. LLF: 143.0875285544816
Iteration: 2, Func. Count: 27, Neg. LLF: 142.9277526287358
Iteration: 3, Func. Count: 40, Neg. LLF: 142.730648941467
Iteration: 4, Func. Count: 53, Neg. LLF: 142.70349854293113
Iteration: 5, Func. Count: 66, Neg. LLF: 142.66273466400176
Iteration: 6, Func. Count: 79, Neg. LLF: 142.63330337896394
Iteration: 7, Func. Count: 92, Neg. LLF: 142.61653615827984
Iteration: 8, Func. Count: 105, Neg. LLF: 142.5748821516003
Iteration: 9, Func. Count: 118, Neg. LLF: 142.57440485381062
Iteration: 10, Func. Count: 131, Neg. LLF: 142.57440409184633
Optimization terminated successfully (Exit mode 0)
Current function value: 142.57440409184633
Iterations: 10
Function evaluations: 131
Gradient evaluations: 10
Iteration: 1, Func. Count: 11, Neg. LLF: 144.70586501951655
Iteration: 2, Func. Count: 21, Neg. LLF: 147.73458359909523
Iteration: 3, Func. Count: 32, Neg. LLF: 143.08405847276777
Iteration: 4, Func. Count: 42, Neg. LLF: 142.8142289099077
Iteration: 5, Func. Count: 52, Neg. LLF: 142.76301896678876
Iteration: 6, Func. Count: 62, Neg. LLF: 142.7268654143419
Iteration: 7, Func. Count: 72, Neg. LLF: 142.68322333881557
Iteration: 8, Func. Count: 82, Neg. LLF: 142.62742822357345
Iteration: 9, Func. Count: 92, Neg. LLF: 142.59085727806067
Iteration: 10, Func. Count: 102, Neg. LLF: 142.57648492317486
Iteration: 11, Func. Count: 112, Neg. LLF: 142.57447486616527
Iteration: 12, Func. Count: 122, Neg. LLF: 142.5744172799082
Iteration: 13, Func. Count: 132, Neg. LLF: 142.5744043844524
Iteration: 14, Func. Count: 142, Neg. LLF: 142.57440357873438
Optimization terminated successfully (Exit mode 0)
Current function value: 142.57440357873438
Iterations: 14
Function evaluations: 142
Gradient evaluations: 14
Iteration: 1, Func. Count: 12, Neg. LLF: 149.02693841826263
Iteration: 2, Func. Count: 24, Neg. LLF: 142.76837237085073
Iteration: 3, Func. Count: 35, Neg. LLF: 143.12445213196392
Iteration: 4, Func. Count: 47, Neg. LLF: 142.69331853374464
Iteration: 5, Func. Count: 58, Neg. LLF: 142.679490905576
Iteration: 6, Func. Count: 69, Neg. LLF: 142.65974702345787
Iteration: 7, Func. Count: 80, Neg. LLF: 142.57600042987286
Iteration: 8, Func. Count: 91, Neg. LLF: 142.57447818242994
Iteration: 9, Func. Count: 102, Neg. LLF: 142.5744060370533
Iteration: 10, Func. Count: 113, Neg. LLF: 142.57440470923913
Iteration: 11, Func. Count: 124, Neg. LLF: 142.57440341559678
Iteration: 12, Func. Count: 134, Neg. LLF: 142.57440348669545
Optimization terminated successfully (Exit mode 0)
Current function value: 142.57440341559678
Iterations: 12
Function evaluations: 134
Gradient evaluations: 12
Iteration: 1, Func. Count: 13, Neg. LLF: 146.47243830064656
Iteration: 2, Func. Count: 28, Neg. LLF: 143.61786148790077
Iteration: 3, Func. Count: 40, Neg. LLF: 146.05976301727017
Iteration: 4, Func. Count: 53, Neg. LLF: 143.52297116245867
Iteration: 5, Func. Count: 66, Neg. LLF: 143.6579538568077
Iteration: 6, Func. Count: 79, Neg. LLF: 143.17493954152997
Iteration: 7, Func. Count: 91, Neg. LLF: 142.84227122828042
Iteration: 8, Func. Count: 103, Neg. LLF: 142.77058763347833
Iteration: 9, Func. Count: 115, Neg. LLF: 142.74147886181368
Iteration: 10, Func. Count: 127, Neg. LLF: 142.72025419878642
Iteration: 11, Func. Count: 139, Neg. LLF: 142.68100137345237
Iteration: 12, Func. Count: 151, Neg. LLF: 142.65186370663372
Iteration: 13, Func. Count: 163, Neg. LLF: 142.59242813394903
Iteration: 14, Func. Count: 175, Neg. LLF: 142.58473357258947
Iteration: 15, Func. Count: 187, Neg. LLF: 142.5780873589396
Iteration: 16, Func. Count: 199, Neg. LLF: 142.5746575819542
Iteration: 17, Func. Count: 211, Neg. LLF: 142.57444294956937
Iteration: 18, Func. Count: 223, Neg. LLF: 142.57441542151832
Iteration: 19, Func. Count: 235, Neg. LLF: 142.57440738049195
Iteration: 20, Func. Count: 247, Neg. LLF: 142.57440431989033
Iteration: 21, Func. Count: 259, Neg. LLF: 142.57440351302486
Optimization terminated successfully (Exit mode 0)
Current function value: 142.57440351302486
Iterations: 22
Function evaluations: 259
Gradient evaluations: 21
Iteration: 1, Func. Count: 14, Neg. LLF: 143.6564388967557
Iteration: 2, Func. Count: 27, Neg. LLF: 143.29609816798032
Iteration: 3, Func. Count: 40, Neg. LLF: 143.25114588452846
Iteration: 4, Func. Count: 54, Neg. LLF: 142.77181985179192
Iteration: 5, Func. Count: 67, Neg. LLF: 142.7154921404049
Iteration: 6, Func. Count: 80, Neg. LLF: 142.67885540776086
Iteration: 7, Func. Count: 93, Neg. LLF: 142.65492510416732
Iteration: 8, Func. Count: 106, Neg. LLF: 142.63286678686634
Iteration: 9, Func. Count: 119, Neg. LLF: 142.57468335806342
Iteration: 10, Func. Count: 132, Neg. LLF: 142.57441954814516
Iteration: 11, Func. Count: 145, Neg. LLF: 142.57440381461205
Iteration: 12, Func. Count: 157, Neg. LLF: 142.57440398499241
Optimization terminated successfully (Exit mode 0)
Current function value: 142.57440381461205
Iterations: 12
Function evaluations: 157
Gradient evaluations: 12
Iteration: 1, Func. Count: 15, Neg. LLF: 143.096218174223
Iteration: 2, Func. Count: 29, Neg. LLF: 142.9310242916781
Iteration: 3, Func. Count: 43, Neg. LLF: 142.732223400051
Iteration: 4, Func. Count: 57, Neg. LLF: 142.70506979706184
Iteration: 5, Func. Count: 71, Neg. LLF: 142.66540228822672
Iteration: 6, Func. Count: 85, Neg. LLF: 142.63462097463642
Iteration: 7, Func. Count: 99, Neg. LLF: 142.61810488896947
Iteration: 8, Func. Count: 113, Neg. LLF: 142.57488167599496
Iteration: 9, Func. Count: 127, Neg. LLF: 142.5744046837278
Iteration: 10, Func. Count: 141, Neg. LLF: 142.5744034945384
Iteration: 11, Func. Count: 154, Neg. LLF: 142.57440354850797
Optimization terminated successfully (Exit mode 0)
Current function value: 142.5744034945384
Iterations: 11
Function evaluations: 154
Gradient evaluations: 11
Iteration: 1, Func. Count: 8, Neg. LLF: 144.88294261002875
Iteration: 2, Func. Count: 15, Neg. LLF: 151.1965109782895
Iteration: 3, Func. Count: 23, Neg. LLF: 143.9428846396934
Iteration: 4, Func. Count: 30, Neg. LLF: 143.34917214984722
Iteration: 5, Func. Count: 37, Neg. LLF: 143.34725944207023
Iteration: 6, Func. Count: 44, Neg. LLF: 143.34470595334363
Iteration: 7, Func. Count: 51, Neg. LLF: 143.3446996997528
Iteration: 8, Func. Count: 57, Neg. LLF: 143.34469998638534
Optimization terminated successfully (Exit mode 0)
Current function value: 143.3446996997528
Iterations: 8
Function evaluations: 57
Gradient evaluations: 8
Iteration: 1, Func. Count: 9, Neg. LLF: 166.02823315478815
Iteration: 2, Func. Count: 19, Neg. LLF: 144.7252485978443
Iteration: 3, Func. Count: 27, Neg. LLF: 144.7253469971397
Iteration: 4, Func. Count: 36, Neg. LLF: 144.72479152219051
Iteration: 5, Func. Count: 44, Neg. LLF: 144.72477366989543
Iteration: 6, Func. Count: 51, Neg. LLF: 144.7247736698226
Optimization terminated successfully (Exit mode 0)
Current function value: 144.72477366989543
Iterations: 6
Function evaluations: 51
Gradient evaluations: 6
Iteration: 1, Func. Count: 10, Neg. LLF: 176.55774391239635
Iteration: 2, Func. Count: 21, Neg. LLF: 144.72360022335127
Iteration: 3, Func. Count: 30, Neg. LLF: 144.72359412795032
Iteration: 4, Func. Count: 40, Neg. LLF: 144.7231465946685
Iteration: 5, Func. Count: 49, Neg. LLF: 144.72311446449592
Iteration: 6, Func. Count: 58, Neg. LLF: 144.72307429682297
Iteration: 7, Func. Count: 67, Neg. LLF: 144.72287536516575
Iteration: 8, Func. Count: 76, Neg. LLF: 144.7204978057396
Iteration: 9, Func. Count: 85, Neg. LLF: 144.7201857550766
Iteration: 10, Func. Count: 94, Neg. LLF: 144.7192379327876
Iteration: 11, Func. Count: 103, Neg. LLF: 144.7190580986694
Iteration: 12, Func. Count: 111, Neg. LLF: 144.71905809861835
Optimization terminated successfully (Exit mode 0)
Current function value: 144.7190580986694
Iterations: 12
Function evaluations: 111
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 171.20868577964978
Iteration: 2, Func. Count: 23, Neg. LLF: 144.724337051739
Iteration: 3, Func. Count: 33, Neg. LLF: 144.72459276067048
Iteration: 4, Func. Count: 44, Neg. LLF: 144.7240268690291
Iteration: 5, Func. Count: 53, Neg. LLF: 144.7240268690358
Optimization terminated successfully (Exit mode 0)
Current function value: 144.7240268690291
Iterations: 5
Function evaluations: 53
Gradient evaluations: 5
Iteration: 1, Func. Count: 12, Neg. LLF: 167.1465818636063
Iteration: 2, Func. Count: 25, Neg. LLF: 144.72274815721005
Iteration: 3, Func. Count: 36, Neg. LLF: 144.72290568249315
Iteration: 4, Func. Count: 48, Neg. LLF: 144.72153153928338
Iteration: 5, Func. Count: 59, Neg. LLF: 144.72033848655775
Iteration: 6, Func. Count: 70, Neg. LLF: 144.71960207205532
Iteration: 7, Func. Count: 81, Neg. LLF: 144.718170746922
Iteration: 8, Func. Count: 92, Neg. LLF: 144.71685673124384
Iteration: 9, Func. Count: 103, Neg. LLF: 144.71482966629387
Iteration: 10, Func. Count: 114, Neg. LLF: 144.71482936458946
Optimization terminated successfully (Exit mode 0)
Current function value: 144.7148286986286
Iterations: 10
Function evaluations: 115
Gradient evaluations: 10
Iteration: 1, Func. Count: 9, Neg. LLF: 145.68156621953182
Iteration: 2, Func. Count: 17, Neg. LLF: 144.5448539321787
Iteration: 3, Func. Count: 25, Neg. LLF: 143.92673440237454
Iteration: 4, Func. Count: 33, Neg. LLF: 143.85107383923346
Iteration: 5, Func. Count: 41, Neg. LLF: 144.0049774303208
Iteration: 6, Func. Count: 50, Neg. LLF: 143.4413468635987
Iteration: 7, Func. Count: 58, Neg. LLF: 143.31460317121739
Iteration: 8, Func. Count: 66, Neg. LLF: 143.28474311872804
Iteration: 9, Func. Count: 74, Neg. LLF: 143.2779283696868
Iteration: 10, Func. Count: 82, Neg. LLF: 143.27683051226535
Iteration: 11, Func. Count: 90, Neg. LLF: 143.2768059319407
Iteration: 12, Func. Count: 97, Neg. LLF: 143.276805813569
Optimization terminated successfully (Exit mode 0)
Current function value: 143.2768059319407
Iterations: 12
Function evaluations: 97
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 147.85635607334467
Iteration: 2, Func. Count: 21, Neg. LLF: 150.65034775783042
Iteration: 3, Func. Count: 31, Neg. LLF: 144.59425113929836
Iteration: 4, Func. Count: 40, Neg. LLF: 144.57743006518612
Iteration: 5, Func. Count: 49, Neg. LLF: 144.57446957865147
Iteration: 6, Func. Count: 58, Neg. LLF: 144.5744169894338
Iteration: 7, Func. Count: 67, Neg. LLF: 144.57432973954124
Iteration: 8, Func. Count: 76, Neg. LLF: 144.57404825018037
Iteration: 9, Func. Count: 85, Neg. LLF: 144.57356749999025
Iteration: 10, Func. Count: 94, Neg. LLF: 144.57289989754977
Iteration: 11, Func. Count: 103, Neg. LLF: 144.5724265655306
Iteration: 12, Func. Count: 112, Neg. LLF: 144.57226050125936
Iteration: 13, Func. Count: 121, Neg. LLF: 144.57225211500912
Iteration: 14, Func. Count: 129, Neg. LLF: 144.5722521150016
Optimization terminated successfully (Exit mode 0)
Current function value: 144.57225211500912
Iterations: 14
Function evaluations: 129
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 148.08339699639683
Iteration: 2, Func. Count: 23, Neg. LLF: 150.56112357330113
Iteration: 3, Func. Count: 34, Neg. LLF: 144.64562987607658
Iteration: 4, Func. Count: 44, Neg. LLF: 144.6038702483598
Iteration: 5, Func. Count: 54, Neg. LLF: 144.5771946775207
Iteration: 6, Func. Count: 64, Neg. LLF: 144.57608707765604
Iteration: 7, Func. Count: 74, Neg. LLF: 144.57522368436074
Iteration: 8, Func. Count: 84, Neg. LLF: 144.5745179320764
Iteration: 9, Func. Count: 94, Neg. LLF: 144.57447396617806
Iteration: 10, Func. Count: 104, Neg. LLF: 144.5742143743927
Iteration: 11, Func. Count: 114, Neg. LLF: 144.57321595202208
Iteration: 12, Func. Count: 124, Neg. LLF: 144.57269188480657
Iteration: 13, Func. Count: 134, Neg. LLF: 144.57229156160977
Iteration: 14, Func. Count: 144, Neg. LLF: 144.57225332156813
Iteration: 15, Func. Count: 154, Neg. LLF: 144.57225201343192
Iteration: 16, Func. Count: 163, Neg. LLF: 144.57225202008976
Optimization terminated successfully (Exit mode 0)
Current function value: 144.57225201343192
Iterations: 16
Function evaluations: 163
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 148.67118386720583
Iteration: 2, Func. Count: 25, Neg. LLF: 150.4927313969257
Iteration: 3, Func. Count: 37, Neg. LLF: 144.6670139242773
Iteration: 4, Func. Count: 48, Neg. LLF: 144.6417901714525
Iteration: 5, Func. Count: 59, Neg. LLF: 144.62892247912725
Iteration: 6, Func. Count: 70, Neg. LLF: 144.6194916089131
Iteration: 7, Func. Count: 81, Neg. LLF: 144.57832101744532
Iteration: 8, Func. Count: 92, Neg. LLF: 144.57615688068242
Iteration: 9, Func. Count: 103, Neg. LLF: 144.57485355347708
Iteration: 10, Func. Count: 114, Neg. LLF: 144.57460106850687
Iteration: 11, Func. Count: 125, Neg. LLF: 144.57450227531544
Iteration: 12, Func. Count: 136, Neg. LLF: 144.57442998107604
Iteration: 13, Func. Count: 147, Neg. LLF: 144.57419929642472
Iteration: 14, Func. Count: 158, Neg. LLF: 144.57377166241508
Iteration: 15, Func. Count: 169, Neg. LLF: 144.57306237062014
Iteration: 16, Func. Count: 180, Neg. LLF: 144.57246712771013
Iteration: 17, Func. Count: 191, Neg. LLF: 144.57227248521676
Iteration: 18, Func. Count: 202, Neg. LLF: 144.57225255618138
Iteration: 19, Func. Count: 213, Neg. LLF: 144.5722520121447
Optimization terminated successfully (Exit mode 0)
Current function value: 144.5722520121447
Iterations: 19
Function evaluations: 213
Gradient evaluations: 19
Iteration: 1, Func. Count: 13, Neg. LLF: 149.26407075195013
Iteration: 2, Func. Count: 27, Neg. LLF: 150.44167544984808
Iteration: 3, Func. Count: 41, Neg. LLF: 144.67096756677353
Iteration: 4, Func. Count: 53, Neg. LLF: 144.65955497246722
Iteration: 5, Func. Count: 65, Neg. LLF: 144.64407125677045
Iteration: 6, Func. Count: 77, Neg. LLF: 144.6383000316669
Iteration: 7, Func. Count: 89, Neg. LLF: 144.63063978004786
Iteration: 8, Func. Count: 101, Neg. LLF: 144.6164856811788
Iteration: 9, Func. Count: 113, Neg. LLF: 144.5790435480777
Iteration: 10, Func. Count: 125, Neg. LLF: 144.57844847290892
Iteration: 11, Func. Count: 137, Neg. LLF: 144.58153223177564
Iteration: 12, Func. Count: 150, Neg. LLF: 144.5757341008898
Iteration: 13, Func. Count: 162, Neg. LLF: 148.72308204644176
Iteration: 14, Func. Count: 176, Neg. LLF: 144.58923882524007
Iteration: 15, Func. Count: 189, Neg. LLF: 144.57488965258554
Iteration: 16, Func. Count: 202, Neg. LLF: 144.5746175313747
Iteration: 17, Func. Count: 214, Neg. LLF: 144.57435909209
Iteration: 18, Func. Count: 226, Neg. LLF: 144.5738786240745
Iteration: 19, Func. Count: 238, Neg. LLF: 144.573053671468
Iteration: 20, Func. Count: 250, Neg. LLF: 144.57246114244464
Iteration: 21, Func. Count: 262, Neg. LLF: 144.5722867427439
Iteration: 22, Func. Count: 274, Neg. LLF: 144.5722526023854
Iteration: 23, Func. Count: 286, Neg. LLF: 144.5722520096216
Optimization terminated successfully (Exit mode 0)
Current function value: 144.5722520096216
Iterations: 24
Function evaluations: 286
Gradient evaluations: 23
Iteration: 1, Func. Count: 10, Neg. LLF: 148.3767301609229
Iteration: 2, Func. Count: 20, Neg. LLF: 144.29430894336426
Iteration: 3, Func. Count: 29, Neg. LLF: 147.54786958625726
Iteration: 4, Func. Count: 39, Neg. LLF: 144.61704082245524
Iteration: 5, Func. Count: 50, Neg. LLF: 143.78957926652873
Iteration: 6, Func. Count: 59, Neg. LLF: 143.52819441437506
Iteration: 7, Func. Count: 68, Neg. LLF: 143.23257642675543
Iteration: 8, Func. Count: 77, Neg. LLF: 143.21202031880884
Iteration: 9, Func. Count: 86, Neg. LLF: 143.20985193339263
Iteration: 10, Func. Count: 95, Neg. LLF: 143.20949594958512
Iteration: 11, Func. Count: 104, Neg. LLF: 143.2094824178946
Iteration: 12, Func. Count: 113, Neg. LLF: 143.20948061837925
Iteration: 13, Func. Count: 121, Neg. LLF: 143.20948060331295
Optimization terminated successfully (Exit mode 0)
Current function value: 143.20948061837925
Iterations: 13
Function evaluations: 121
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 149.00713831296005
Iteration: 2, Func. Count: 22, Neg. LLF: 148.34216530458866
Iteration: 3, Func. Count: 33, Neg. LLF: 145.5243338191171
Iteration: 4, Func. Count: 44, Neg. LLF: 144.3718593203761
Iteration: 5, Func. Count: 54, Neg. LLF: 144.24820056451924
Iteration: 6, Func. Count: 64, Neg. LLF: 144.22583260091332
Iteration: 7, Func. Count: 74, Neg. LLF: 144.2184872328699
Iteration: 8, Func. Count: 84, Neg. LLF: 144.21603277311672
Iteration: 9, Func. Count: 94, Neg. LLF: 144.2151312693604
Iteration: 10, Func. Count: 104, Neg. LLF: 144.21481974488609
Iteration: 11, Func. Count: 114, Neg. LLF: 144.21480065795436
Iteration: 12, Func. Count: 124, Neg. LLF: 144.21474892009655
Iteration: 13, Func. Count: 134, Neg. LLF: 144.21467349857022
Iteration: 14, Func. Count: 144, Neg. LLF: 144.21459172550735
Iteration: 15, Func. Count: 154, Neg. LLF: 144.21455686417144
Iteration: 16, Func. Count: 164, Neg. LLF: 144.21455235409144
Iteration: 17, Func. Count: 173, Neg. LLF: 144.21455235410752
Optimization terminated successfully (Exit mode 0)
Current function value: 144.21455235409144
Iterations: 17
Function evaluations: 173
Gradient evaluations: 17
Iteration: 1, Func. Count: 12, Neg. LLF: 147.5629478384022
Iteration: 2, Func. Count: 25, Neg. LLF: 148.3001966177812
Iteration: 3, Func. Count: 37, Neg. LLF: 144.63498167376548
Iteration: 4, Func. Count: 48, Neg. LLF: 144.44849866004384
Iteration: 5, Func. Count: 59, Neg. LLF: 145.43008299274788
Iteration: 6, Func. Count: 71, Neg. LLF: 144.231775514367
Iteration: 7, Func. Count: 82, Neg. LLF: 144.22161966649887
Iteration: 8, Func. Count: 93, Neg. LLF: 144.2156594345997
Iteration: 9, Func. Count: 104, Neg. LLF: 144.21523120887107
Iteration: 10, Func. Count: 115, Neg. LLF: 144.2151576544913
Iteration: 11, Func. Count: 126, Neg. LLF: 144.21510700951347
Iteration: 12, Func. Count: 137, Neg. LLF: 144.21494793025653
Iteration: 13, Func. Count: 148, Neg. LLF: 144.21483375764902
Iteration: 14, Func. Count: 159, Neg. LLF: 144.2146498158879
Iteration: 15, Func. Count: 170, Neg. LLF: 144.21457111265514
Iteration: 16, Func. Count: 181, Neg. LLF: 144.21455291541085
Iteration: 17, Func. Count: 192, Neg. LLF: 144.21455219740005
Optimization terminated successfully (Exit mode 0)
Current function value: 144.21455219740005
Iterations: 17
Function evaluations: 192
Gradient evaluations: 17
Iteration: 1, Func. Count: 13, Neg. LLF: 148.5362168768224
Iteration: 2, Func. Count: 27, Neg. LLF: 148.28886517897345
Iteration: 3, Func. Count: 40, Neg. LLF: 144.78909376459086
Iteration: 4, Func. Count: 52, Neg. LLF: 144.61806307514956
Iteration: 5, Func. Count: 64, Neg. LLF: 144.88587810899898
Iteration: 6, Func. Count: 77, Neg. LLF: 144.30500257119903
Iteration: 7, Func. Count: 89, Neg. LLF: 144.26891728920947
Iteration: 8, Func. Count: 101, Neg. LLF: 144.2456516106782
Iteration: 9, Func. Count: 113, Neg. LLF: 144.22933023222575
Iteration: 10, Func. Count: 125, Neg. LLF: 144.21997368095538
Iteration: 11, Func. Count: 137, Neg. LLF: 144.2159374323714
Iteration: 12, Func. Count: 149, Neg. LLF: 144.2156901691084
Iteration: 13, Func. Count: 161, Neg. LLF: 144.2155891160181
Iteration: 14, Func. Count: 173, Neg. LLF: 144.21544087169215
Iteration: 15, Func. Count: 185, Neg. LLF: 144.21522287958766
Iteration: 16, Func. Count: 197, Neg. LLF: 144.2149541087486
Iteration: 17, Func. Count: 209, Neg. LLF: 144.214728050099
Iteration: 18, Func. Count: 221, Neg. LLF: 144.21460314130212
Iteration: 19, Func. Count: 233, Neg. LLF: 144.21456092489728
Iteration: 20, Func. Count: 245, Neg. LLF: 144.21455331513815
Iteration: 21, Func. Count: 257, Neg. LLF: 144.21455227396024
Iteration: 22, Func. Count: 268, Neg. LLF: 144.2145523609548
Optimization terminated successfully (Exit mode 0)
Current function value: 144.21455227396024
Iterations: 22
Function evaluations: 268
Gradient evaluations: 22
Iteration: 1, Func. Count: 14, Neg. LLF: 149.32485309011284
Iteration: 2, Func. Count: 29, Neg. LLF: 147.9412083884468
Iteration: 3, Func. Count: 43, Neg. LLF: 144.71126365673595
Iteration: 4, Func. Count: 56, Neg. LLF: 144.47540540535485
Iteration: 5, Func. Count: 69, Neg. LLF: 144.44700416930365
Iteration: 6, Func. Count: 82, Neg. LLF: 144.29633381501137
Iteration: 7, Func. Count: 95, Neg. LLF: 144.2459630328766
Iteration: 8, Func. Count: 108, Neg. LLF: 144.2256071231429
Iteration: 9, Func. Count: 121, Neg. LLF: 144.21593351424406
Iteration: 10, Func. Count: 134, Neg. LLF: 144.21510190266287
Iteration: 11, Func. Count: 147, Neg. LLF: 144.21500847252733
Iteration: 12, Func. Count: 160, Neg. LLF: 144.21496431994586
Iteration: 13, Func. Count: 173, Neg. LLF: 144.2148986986313
Iteration: 14, Func. Count: 186, Neg. LLF: 144.21481503121552
Iteration: 15, Func. Count: 199, Neg. LLF: 144.2146999616749
Iteration: 16, Func. Count: 212, Neg. LLF: 144.21460263689153
Iteration: 17, Func. Count: 225, Neg. LLF: 144.21456052861762
Iteration: 18, Func. Count: 238, Neg. LLF: 144.21455258901327
Iteration: 19, Func. Count: 250, Neg. LLF: 144.2145526108157
Optimization terminated successfully (Exit mode 0)
Current function value: 144.21455258901327
Iterations: 19
Function evaluations: 250
Gradient evaluations: 19
Iteration: 1, Func. Count: 11, Neg. LLF: 144.07255686902613
Iteration: 2, Func. Count: 21, Neg. LLF: 149.11195028218603
Iteration: 3, Func. Count: 32, Neg. LLF: 142.96443819712684
Iteration: 4, Func. Count: 42, Neg. LLF: 142.81914780951186
Iteration: 5, Func. Count: 52, Neg. LLF: 142.70047174158682
Iteration: 6, Func. Count: 62, Neg. LLF: 142.6600588249198
Iteration: 7, Func. Count: 72, Neg. LLF: 142.641349108935
Iteration: 8, Func. Count: 82, Neg. LLF: 142.59337737105238
Iteration: 9, Func. Count: 92, Neg. LLF: 142.57734821949145
Iteration: 10, Func. Count: 102, Neg. LLF: 142.57444907854733
Iteration: 11, Func. Count: 112, Neg. LLF: 142.57440395034382
Iteration: 12, Func. Count: 122, Neg. LLF: 142.57440342767663
Optimization terminated successfully (Exit mode 0)
Current function value: 142.57440342767663
Iterations: 12
Function evaluations: 122
Gradient evaluations: 12
Iteration: 1, Func. Count: 12, Neg. LLF: 149.016872038079
Iteration: 2, Func. Count: 24, Neg. LLF: 142.76698071274708
Iteration: 3, Func. Count: 35, Neg. LLF: 143.07705678636063
Iteration: 4, Func. Count: 47, Neg. LLF: 142.69210088008657
Iteration: 5, Func. Count: 58, Neg. LLF: 142.67811083137713
Iteration: 6, Func. Count: 69, Neg. LLF: 142.66014484367653
Iteration: 7, Func. Count: 80, Neg. LLF: 142.57925092281587
Iteration: 8, Func. Count: 91, Neg. LLF: 142.57525647331715
Iteration: 9, Func. Count: 102, Neg. LLF: 142.57440890177912
Iteration: 10, Func. Count: 113, Neg. LLF: 142.57440596577555
Iteration: 11, Func. Count: 124, Neg. LLF: 142.57440344230994
Iteration: 12, Func. Count: 134, Neg. LLF: 142.57440351341285
Optimization terminated successfully (Exit mode 0)
Current function value: 142.57440344230994
Iterations: 12
Function evaluations: 134
Gradient evaluations: 12
Iteration: 1, Func. Count: 13, Neg. LLF: 146.4202630737519
Iteration: 2, Func. Count: 28, Neg. LLF: 143.63325862548103
Iteration: 3, Func. Count: 40, Neg. LLF: 146.09984557111827
Iteration: 4, Func. Count: 53, Neg. LLF: 143.57325454308292
Iteration: 5, Func. Count: 66, Neg. LLF: 143.70088325995948
Iteration: 6, Func. Count: 79, Neg. LLF: 143.14590202789108
Iteration: 7, Func. Count: 91, Neg. LLF: 142.83784477499776
Iteration: 8, Func. Count: 103, Neg. LLF: 142.76828667897124
Iteration: 9, Func. Count: 115, Neg. LLF: 142.74010757289216
Iteration: 10, Func. Count: 127, Neg. LLF: 142.7185728783287
Iteration: 11, Func. Count: 139, Neg. LLF: 142.67846282619718
Iteration: 12, Func. Count: 151, Neg. LLF: 142.65111380459092
Iteration: 13, Func. Count: 163, Neg. LLF: 142.59193985258898
Iteration: 14, Func. Count: 175, Neg. LLF: 142.58483042756095
Iteration: 15, Func. Count: 187, Neg. LLF: 142.57713193128302
Iteration: 16, Func. Count: 199, Neg. LLF: 142.57465567714945
Iteration: 17, Func. Count: 211, Neg. LLF: 142.5744455839456
Iteration: 18, Func. Count: 223, Neg. LLF: 142.5744199015703
Iteration: 19, Func. Count: 235, Neg. LLF: 142.57440423394664
Iteration: 20, Func. Count: 246, Neg. LLF: 142.57440440262266
Optimization terminated successfully (Exit mode 0)
Current function value: 142.57440423394664
Iterations: 20
Function evaluations: 246
Gradient evaluations: 20
Iteration: 1, Func. Count: 14, Neg. LLF: 143.64604248514271
Iteration: 2, Func. Count: 27, Neg. LLF: 143.29060801626161
Iteration: 3, Func. Count: 40, Neg. LLF: 143.24399033129987
Iteration: 4, Func. Count: 54, Neg. LLF: 142.7498888703468
Iteration: 5, Func. Count: 67, Neg. LLF: 142.712027692231
Iteration: 6, Func. Count: 80, Neg. LLF: 142.677995278527
Iteration: 7, Func. Count: 93, Neg. LLF: 142.65443296894009
Iteration: 8, Func. Count: 106, Neg. LLF: 142.62885241340726
Iteration: 9, Func. Count: 119, Neg. LLF: 142.57743422179672
Iteration: 10, Func. Count: 132, Neg. LLF: 142.5745142268899
Iteration: 11, Func. Count: 145, Neg. LLF: 142.57440646876427
Iteration: 12, Func. Count: 158, Neg. LLF: 142.5744037647203
Iteration: 13, Func. Count: 170, Neg. LLF: 142.5744039351859
Optimization terminated successfully (Exit mode 0)
Current function value: 142.5744037647203
Iterations: 13
Function evaluations: 170
Gradient evaluations: 13
Iteration: 1, Func. Count: 15, Neg. LLF: 143.09722810007915
Iteration: 2, Func. Count: 29, Neg. LLF: 142.9631621888307
Iteration: 3, Func. Count: 43, Neg. LLF: 142.7320362415265
Iteration: 4, Func. Count: 57, Neg. LLF: 142.70605860364802
Iteration: 5, Func. Count: 71, Neg. LLF: 142.66655695179782
Iteration: 6, Func. Count: 85, Neg. LLF: 142.63422519944942
Iteration: 7, Func. Count: 99, Neg. LLF: 142.6183893954462
Iteration: 8, Func. Count: 113, Neg. LLF: 142.57489044412048
Iteration: 9, Func. Count: 127, Neg. LLF: 142.57441025843582
Iteration: 10, Func. Count: 141, Neg. LLF: 142.5744036709904
Iteration: 11, Func. Count: 154, Neg. LLF: 142.57440372485857
Optimization terminated successfully (Exit mode 0)
Current function value: 142.5744036709904
Iterations: 11
Function evaluations: 154
Gradient evaluations: 11
Iteration: 1, Func. Count: 12, Neg. LLF: 144.07932900975172
Iteration: 2, Func. Count: 23, Neg. LLF: 149.18434578462657
Iteration: 3, Func. Count: 35, Neg. LLF: 142.96410626828904
Iteration: 4, Func. Count: 46, Neg. LLF: 142.81857668162934
Iteration: 5, Func. Count: 57, Neg. LLF: 142.69956805034633
Iteration: 6, Func. Count: 68, Neg. LLF: 142.66012557883863
Iteration: 7, Func. Count: 79, Neg. LLF: 142.64130385025575
Iteration: 8, Func. Count: 90, Neg. LLF: 142.59085611673308
Iteration: 9, Func. Count: 101, Neg. LLF: 142.57729265797497
Iteration: 10, Func. Count: 112, Neg. LLF: 142.57446897966219
Iteration: 11, Func. Count: 123, Neg. LLF: 142.5744047097716
Iteration: 12, Func. Count: 134, Neg. LLF: 142.57440342968306
Iteration: 13, Func. Count: 144, Neg. LLF: 142.57440357710058
Optimization terminated successfully (Exit mode 0)
Current function value: 142.57440342968306
Iterations: 13
Function evaluations: 144
Gradient evaluations: 13
Iteration: 1, Func. Count: 13, Neg. LLF: 149.0173692891088
Iteration: 2, Func. Count: 26, Neg. LLF: 142.76606182001154
Iteration: 3, Func. Count: 38, Neg. LLF: 143.06301304639044
Iteration: 4, Func. Count: 51, Neg. LLF: 142.69178217228398
Iteration: 5, Func. Count: 63, Neg. LLF: 142.67764456872663
Iteration: 6, Func. Count: 75, Neg. LLF: 142.6601396800462
Iteration: 7, Func. Count: 87, Neg. LLF: 142.5803013676759
Iteration: 8, Func. Count: 99, Neg. LLF: 142.57511727868052
Iteration: 9, Func. Count: 111, Neg. LLF: 142.57440556631363
Iteration: 10, Func. Count: 123, Neg. LLF: 142.5744036985896
Iteration: 11, Func. Count: 134, Neg. LLF: 142.57440376973614
Optimization terminated successfully (Exit mode 0)
Current function value: 142.5744036985896
Iterations: 11
Function evaluations: 134
Gradient evaluations: 11
Iteration: 1, Func. Count: 14, Neg. LLF: 146.29063805327655
Iteration: 2, Func. Count: 30, Neg. LLF: 143.61907910372076
Iteration: 3, Func. Count: 43, Neg. LLF: 146.00732133069747
Iteration: 4, Func. Count: 57, Neg. LLF: 143.57344345493166
Iteration: 5, Func. Count: 71, Neg. LLF: 143.67709279931637
Iteration: 6, Func. Count: 85, Neg. LLF: 143.1334251880889
Iteration: 7, Func. Count: 98, Neg. LLF: 142.83593228119872
Iteration: 8, Func. Count: 111, Neg. LLF: 142.7682594709842
Iteration: 9, Func. Count: 124, Neg. LLF: 142.74055580771866
Iteration: 10, Func. Count: 137, Neg. LLF: 142.7187819435227
Iteration: 11, Func. Count: 150, Neg. LLF: 142.67800466731867
Iteration: 12, Func. Count: 163, Neg. LLF: 142.65095743040294
Iteration: 13, Func. Count: 176, Neg. LLF: 142.5917990252236
Iteration: 14, Func. Count: 189, Neg. LLF: 142.58482574131935
Iteration: 15, Func. Count: 202, Neg. LLF: 142.57651778212949
Iteration: 16, Func. Count: 215, Neg. LLF: 142.57462216632007
Iteration: 17, Func. Count: 228, Neg. LLF: 142.57444944522788
Iteration: 18, Func. Count: 241, Neg. LLF: 142.57442097691592
Iteration: 19, Func. Count: 254, Neg. LLF: 142.5744047425939
Iteration: 20, Func. Count: 267, Neg. LLF: 142.57440540419282
Optimization terminated successfully (Exit mode 0)
Current function value: 142.57440433802952
Iterations: 21
Function evaluations: 268
Gradient evaluations: 20
Iteration: 1, Func. Count: 15, Neg. LLF: 143.6291582141829
Iteration: 2, Func. Count: 29, Neg. LLF: 143.27395588786038
Iteration: 3, Func. Count: 43, Neg. LLF: 143.2175258466823
Iteration: 4, Func. Count: 58, Neg. LLF: 142.73805440703796
Iteration: 5, Func. Count: 72, Neg. LLF: 142.70588181234442
Iteration: 6, Func. Count: 86, Neg. LLF: 142.6760226369465
Iteration: 7, Func. Count: 100, Neg. LLF: 142.65137519954882
Iteration: 8, Func. Count: 114, Neg. LLF: 142.62308505938424
Iteration: 9, Func. Count: 128, Neg. LLF: 142.57744095072104
Iteration: 10, Func. Count: 142, Neg. LLF: 142.57457942903034
Iteration: 11, Func. Count: 156, Neg. LLF: 142.57440728211327
Iteration: 12, Func. Count: 170, Neg. LLF: 142.57440362652883
Iteration: 13, Func. Count: 183, Neg. LLF: 142.57440379700347
Optimization terminated successfully (Exit mode 0)
Current function value: 142.57440362652883
Iterations: 13
Function evaluations: 183
Gradient evaluations: 13
Iteration: 1, Func. Count: 16, Neg. LLF: 143.1061293012455
Iteration: 2, Func. Count: 31, Neg. LLF: 142.9667220484991
Iteration: 3, Func. Count: 46, Neg. LLF: 142.7335523856935
Iteration: 4, Func. Count: 61, Neg. LLF: 142.70769363125464
Iteration: 5, Func. Count: 76, Neg. LLF: 142.66908184054742
Iteration: 6, Func. Count: 91, Neg. LLF: 142.63557025258882
Iteration: 7, Func. Count: 106, Neg. LLF: 142.61978287237537
Iteration: 8, Func. Count: 121, Neg. LLF: 142.57485113522685
Iteration: 9, Func. Count: 136, Neg. LLF: 142.57441218035436
Iteration: 10, Func. Count: 151, Neg. LLF: 142.57440418005723
Iteration: 11, Func. Count: 166, Neg. LLF: 142.5744033090522
Optimization terminated successfully (Exit mode 0)
Current function value: 142.5744033090522
Iterations: 11
Function evaluations: 166
Gradient evaluations: 11
Iteration: 1, Func. Count: 6, Neg. LLF: 144.47283523804742
Iteration: 2, Func. Count: 11, Neg. LLF: 150.1324339434962
Iteration: 3, Func. Count: 17, Neg. LLF: 143.87587944624357
Iteration: 4, Func. Count: 22, Neg. LLF: 143.35431181020007
Iteration: 5, Func. Count: 27, Neg. LLF: 143.348821304308
Iteration: 6, Func. Count: 32, Neg. LLF: 143.34472177535824
Iteration: 7, Func. Count: 37, Neg. LLF: 143.34470023566467
Iteration: 8, Func. Count: 42, Neg. LLF: 143.34469976548516
Optimization terminated successfully (Exit mode 0)
Current function value: 143.34469976548516
Iterations: 8
Function evaluations: 42
Gradient evaluations: 8
Iteration: 1, Func. Count: 5, Neg. LLF: 149.49998286753873
Iteration: 2, Func. Count: 10, Neg. LLF: 147.90883576066906
Iteration: 3, Func. Count: 15, Neg. LLF: 144.45313518472315
Iteration: 4, Func. Count: 19, Neg. LLF: 143.32308519018054
Iteration: 5, Func. Count: 23, Neg. LLF: 142.7591093698169
Iteration: 6, Func. Count: 27, Neg. LLF: 142.73515306714134
Iteration: 7, Func. Count: 31, Neg. LLF: 142.6776527248108
Iteration: 8, Func. Count: 35, Neg. LLF: 142.67220138596414
Iteration: 9, Func. Count: 39, Neg. LLF: 142.67210812023478
Iteration: 10, Func. Count: 43, Neg. LLF: 142.67210428548972
Iteration: 11, Func. Count: 47, Neg. LLF: 142.67210122225907
Iteration: 12, Func. Count: 50, Neg. LLF: 142.6721013202725
Optimization terminated successfully (Exit mode 0)
Current function value: 142.67210122225907
Iterations: 12
Function evaluations: 50
Gradient evaluations: 12
Iteration: 1, Func. Count: 6, Neg. LLF: 144.78534900473596
Iteration: 2, Func. Count: 13, Neg. LLF: 142.6724300861985
Iteration: 3, Func. Count: 18, Neg. LLF: 142.67356078883807
Iteration: 4, Func. Count: 24, Neg. LLF: 142.6719866392927
Iteration: 5, Func. Count: 29, Neg. LLF: 142.67198035915106
Iteration: 6, Func. Count: 33, Neg. LLF: 142.67198035916317
Optimization terminated successfully (Exit mode 0)
Current function value: 142.67198035915106
Iterations: 6
Function evaluations: 33
Gradient evaluations: 6
Iteration: 1, Func. Count: 7, Neg. LLF: 143.7077858108246
Iteration: 2, Func. Count: 14, Neg. LLF: 142.67303616101592
Iteration: 3, Func. Count: 20, Neg. LLF: 142.6757447998408
Iteration: 4, Func. Count: 27, Neg. LLF: 142.67223271049733
Iteration: 5, Func. Count: 33, Neg. LLF: 142.6722280753213
Iteration: 6, Func. Count: 38, Neg. LLF: 142.67222807533304
Optimization terminated successfully (Exit mode 0)
Current function value: 142.6722280753213
Iterations: 6
Function evaluations: 38
Gradient evaluations: 6
Iteration: 1, Func. Count: 8, Neg. LLF: 163.29281971761483
Iteration: 2, Func. Count: 17, Neg. LLF: 142.6727170347583
Iteration: 3, Func. Count: 24, Neg. LLF: 142.67308375904042
Iteration: 4, Func. Count: 32, Neg. LLF: 142.67215207224712
Iteration: 5, Func. Count: 39, Neg. LLF: 142.6721504115064
Iteration: 6, Func. Count: 45, Neg. LLF: 142.67215041154205
Optimization terminated successfully (Exit mode 0)
Current function value: 142.6721504115064
Iterations: 6
Function evaluations: 45
Gradient evaluations: 6
Iteration: 1, Func. Count: 9, Neg. LLF: 166.2905191525835
Iteration: 2, Func. Count: 19, Neg. LLF: 142.67245999948972
Iteration: 3, Func. Count: 27, Neg. LLF: 142.67298013978012
Iteration: 4, Func. Count: 36, Neg. LLF: 142.67218362606582
Iteration: 5, Func. Count: 44, Neg. LLF: 142.6721827554562
Optimization terminated successfully (Exit mode 0)
Current function value: 142.6721827554562
Iterations: 5
Function evaluations: 44
Gradient evaluations: 5
Iteration: 1, Func. Count: 6, Neg. LLF: 148.5849945513638
Iteration: 2, Func. Count: 12, Neg. LLF: 153.97907265494192
Iteration: 3, Func. Count: 18, Neg. LLF: 143.2139051793548
Iteration: 4, Func. Count: 23, Neg. LLF: 143.03951890180423
Iteration: 5, Func. Count: 28, Neg. LLF: 142.9563913181563
Iteration: 6, Func. Count: 33, Neg. LLF: 142.94055184711556
Iteration: 7, Func. Count: 38, Neg. LLF: 142.9360547019896
Iteration: 8, Func. Count: 43, Neg. LLF: 142.9339859341729
Iteration: 9, Func. Count: 48, Neg. LLF: 142.93303688054496
Iteration: 10, Func. Count: 53, Neg. LLF: 142.93279390446057
Iteration: 11, Func. Count: 58, Neg. LLF: 142.9327525974412
Iteration: 12, Func. Count: 63, Neg. LLF: 142.93275004691708
Iteration: 13, Func. Count: 67, Neg. LLF: 142.93275004691486
Optimization terminated successfully (Exit mode 0)
Current function value: 142.93275004691708
Iterations: 13
Function evaluations: 67
Gradient evaluations: 13
Iteration: 1, Func. Count: 7, Neg. LLF: 144.20957364181353
Iteration: 2, Func. Count: 14, Neg. LLF: 142.67289267383237
Iteration: 3, Func. Count: 20, Neg. LLF: 142.67567527062
Iteration: 4, Func. Count: 27, Neg. LLF: 142.67198227887
Iteration: 5, Func. Count: 33, Neg. LLF: 142.67198059743998
Iteration: 6, Func. Count: 38, Neg. LLF: 142.67198059744106
Optimization terminated successfully (Exit mode 0)
Current function value: 142.67198059743998
Iterations: 6
Function evaluations: 38
Gradient evaluations: 6
Iteration: 1, Func. Count: 8, Neg. LLF: 142.75178542598633
Iteration: 2, Func. Count: 15, Neg. LLF: 142.67474661053174
Iteration: 3, Func. Count: 22, Neg. LLF: 142.70434330662516
Iteration: 4, Func. Count: 30, Neg. LLF: 142.6722423917072
Iteration: 5, Func. Count: 36, Neg. LLF: 142.67224239164923
Optimization terminated successfully (Exit mode 0)
Current function value: 142.6722423917072
Iterations: 5
Function evaluations: 36
Gradient evaluations: 5
Iteration: 1, Func. Count: 9, Neg. LLF: 147.89589867696276
Iteration: 2, Func. Count: 19, Neg. LLF: 142.6727517622935
Iteration: 3, Func. Count: 27, Neg. LLF: 142.67295421467298
Iteration: 4, Func. Count: 36, Neg. LLF: 142.67215920288706
Iteration: 5, Func. Count: 44, Neg. LLF: 142.67215578325977
Iteration: 6, Func. Count: 51, Neg. LLF: 142.6721557832639
Optimization terminated successfully (Exit mode 0)
Current function value: 142.67215578325977
Iterations: 6
Function evaluations: 51
Gradient evaluations: 6
Iteration: 1, Func. Count: 10, Neg. LLF: 151.14328603253816
Iteration: 2, Func. Count: 21, Neg. LLF: 142.67254450349984
Iteration: 3, Func. Count: 30, Neg. LLF: 142.67304801392257
Iteration: 4, Func. Count: 40, Neg. LLF: 142.67218245181138
Iteration: 5, Func. Count: 48, Neg. LLF: 142.67218245182008
Optimization terminated successfully (Exit mode 0)
Current function value: 142.67218245181138
Iterations: 5
Function evaluations: 48
Gradient evaluations: 5
Iteration: 1, Func. Count: 7, Neg. LLF: 145.8375431106762
Iteration: 2, Func. Count: 13, Neg. LLF: 151.9430890080264
Iteration: 3, Func. Count: 20, Neg. LLF: 143.30328997927455
Iteration: 4, Func. Count: 26, Neg. LLF: 143.00418523979477
Iteration: 5, Func. Count: 32, Neg. LLF: 142.96973238568822
Iteration: 6, Func. Count: 38, Neg. LLF: 142.94341048432864
Iteration: 7, Func. Count: 44, Neg. LLF: 142.93977483169675
Iteration: 8, Func. Count: 50, Neg. LLF: 142.93358367161477
Iteration: 9, Func. Count: 56, Neg. LLF: 142.93282692819858
Iteration: 10, Func. Count: 62, Neg. LLF: 142.93275092357433
Iteration: 11, Func. Count: 68, Neg. LLF: 142.93274992550135
Optimization terminated successfully (Exit mode 0)
Current function value: 142.93274992550135
Iterations: 11
Function evaluations: 68
Gradient evaluations: 11
Iteration: 1, Func. Count: 8, Neg. LLF: 147.64911060468924
Iteration: 2, Func. Count: 17, Neg. LLF: 142.67376360981842
Iteration: 3, Func. Count: 24, Neg. LLF: 142.67296820913057
Iteration: 4, Func. Count: 31, Neg. LLF: 142.6720857219115
Iteration: 5, Func. Count: 38, Neg. LLF: 142.6719827770281
Iteration: 6, Func. Count: 45, Neg. LLF: 142.67197923595663
Iteration: 7, Func. Count: 51, Neg. LLF: 142.67197923597556
Optimization terminated successfully (Exit mode 0)
Current function value: 142.67197923595663
Iterations: 7
Function evaluations: 51
Gradient evaluations: 7
Iteration: 1, Func. Count: 9, Neg. LLF: 145.98503557859314
Iteration: 2, Func. Count: 19, Neg. LLF: 142.673805250974
Iteration: 3, Func. Count: 27, Neg. LLF: 142.6735518884026
Iteration: 4, Func. Count: 36, Neg. LLF: 142.67228981926024
Iteration: 5, Func. Count: 44, Neg. LLF: 142.672247695219
Iteration: 6, Func. Count: 51, Neg. LLF: 142.67224769522412
Optimization terminated successfully (Exit mode 0)
Current function value: 142.672247695219
Iterations: 6
Function evaluations: 51
Gradient evaluations: 6
Iteration: 1, Func. Count: 10, Neg. LLF: 169.64263471884132
Iteration: 2, Func. Count: 21, Neg. LLF: 142.67334074719813
Iteration: 3, Func. Count: 30, Neg. LLF: 142.67241981203378
Iteration: 4, Func. Count: 39, Neg. LLF: 142.67216301694887
Iteration: 5, Func. Count: 48, Neg. LLF: 142.67216099253815
Iteration: 6, Func. Count: 57, Neg. LLF: 142.67215996315593
Iteration: 7, Func. Count: 66, Neg. LLF: 142.67215325063137
Iteration: 8, Func. Count: 75, Neg. LLF: 142.67213398601126
Iteration: 9, Func. Count: 84, Neg. LLF: 142.67206154551747
Iteration: 10, Func. Count: 93, Neg. LLF: 142.672010610635
Iteration: 11, Func. Count: 102, Neg. LLF: 142.6719614586574
Iteration: 12, Func. Count: 111, Neg. LLF: 142.67188995937042
Iteration: 13, Func. Count: 120, Neg. LLF: 142.67188670793917
Iteration: 14, Func. Count: 129, Neg. LLF: 142.67186858150083
Iteration: 15, Func. Count: 138, Neg. LLF: 142.67176164191355
Iteration: 16, Func. Count: 147, Neg. LLF: 142.67156710097694
Iteration: 17, Func. Count: 156, Neg. LLF: 142.671566532763
Optimization terminated successfully (Exit mode 0)
Current function value: 142.671566532763
Iterations: 17
Function evaluations: 156
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 165.74084948276123
Iteration: 2, Func. Count: 23, Neg. LLF: 142.6732449181211
Iteration: 3, Func. Count: 33, Neg. LLF: 142.67314668271808
Iteration: 4, Func. Count: 44, Neg. LLF: 142.67218384560874
Iteration: 5, Func. Count: 53, Neg. LLF: 142.6721838456625
Optimization terminated successfully (Exit mode 0)
Current function value: 142.67218384560874
Iterations: 5
Function evaluations: 53
Gradient evaluations: 5
Iteration: 1, Func. Count: 8, Neg. LLF: 144.31804662020133
Iteration: 2, Func. Count: 15, Neg. LLF: 152.46094660711216
Iteration: 3, Func. Count: 23, Neg. LLF: 143.33461344365278
Iteration: 4, Func. Count: 30, Neg. LLF: 142.98361484457578
Iteration: 5, Func. Count: 37, Neg. LLF: 142.95527645629804
Iteration: 6, Func. Count: 44, Neg. LLF: 142.93804809987574
Iteration: 7, Func. Count: 51, Neg. LLF: 142.9352723401782
Iteration: 8, Func. Count: 58, Neg. LLF: 142.93432395692278
Iteration: 9, Func. Count: 65, Neg. LLF: 142.9329592363243
Iteration: 10, Func. Count: 72, Neg. LLF: 142.93276759208132
Iteration: 11, Func. Count: 79, Neg. LLF: 142.93275016359038
Iteration: 12, Func. Count: 85, Neg. LLF: 142.9327503202461
Optimization terminated successfully (Exit mode 0)
Current function value: 142.93275016359038
Iterations: 12
Function evaluations: 85
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 149.70448771418748
Iteration: 2, Func. Count: 19, Neg. LLF: 142.6738029176105
Iteration: 3, Func. Count: 27, Neg. LLF: 142.67278409588806
Iteration: 4, Func. Count: 35, Neg. LLF: 142.67206863207187
Iteration: 5, Func. Count: 43, Neg. LLF: 142.67197982490313
Iteration: 6, Func. Count: 50, Neg. LLF: 142.67197982491598
Optimization terminated successfully (Exit mode 0)
Current function value: 142.67197982490313
Iterations: 6
Function evaluations: 50
Gradient evaluations: 6
Iteration: 1, Func. Count: 10, Neg. LLF: 149.12291696354458
Iteration: 2, Func. Count: 21, Neg. LLF: 142.6739610235793
Iteration: 3, Func. Count: 30, Neg. LLF: 142.6729345717718
Iteration: 4, Func. Count: 39, Neg. LLF: 142.67228130909578
Iteration: 5, Func. Count: 48, Neg. LLF: 142.67224878215848
Iteration: 6, Func. Count: 56, Neg. LLF: 142.6722487821643
Optimization terminated successfully (Exit mode 0)
Current function value: 142.67224878215848
Iterations: 6
Function evaluations: 56
Gradient evaluations: 6
Iteration: 1, Func. Count: 11, Neg. LLF: 169.54150413528936
Iteration: 2, Func. Count: 23, Neg. LLF: 142.67367305328796
Iteration: 3, Func. Count: 33, Neg. LLF: 142.67237687790546
Iteration: 4, Func. Count: 43, Neg. LLF: 142.67215373225469
Iteration: 5, Func. Count: 53, Neg. LLF: 142.67215273995276
Optimization terminated successfully (Exit mode 0)
Current function value: 142.67215273995276
Iterations: 5
Function evaluations: 53
Gradient evaluations: 5
Iteration: 1, Func. Count: 12, Neg. LLF: 165.8164143288311
Iteration: 2, Func. Count: 25, Neg. LLF: 142.67357388619922
Iteration: 3, Func. Count: 36, Neg. LLF: 142.67268192763584
Iteration: 4, Func. Count: 47, Neg. LLF: 142.67217853024346
Iteration: 5, Func. Count: 58, Neg. LLF: 142.67217770420797
Optimization terminated successfully (Exit mode 0)
Current function value: 142.67217770420797
Iterations: 5
Function evaluations: 58
Gradient evaluations: 5
Iteration: 1, Func. Count: 5, Neg. LLF: 145.61304596055444
Iteration: 2, Func. Count: 10, Neg. LLF: 148.0381564376542
Iteration: 3, Func. Count: 15, Neg. LLF: 143.97495790463535
Iteration: 4, Func. Count: 19, Neg. LLF: 143.20112101005685
Iteration: 5, Func. Count: 23, Neg. LLF: 142.78599140365114
Iteration: 6, Func. Count: 27, Neg. LLF: 145.2521883931352
Iteration: 7, Func. Count: 32, Neg. LLF: 142.67373442797674
Iteration: 8, Func. Count: 36, Neg. LLF: 142.67266640254527
Iteration: 9, Func. Count: 40, Neg. LLF: 142.6722151183093
Iteration: 10, Func. Count: 44, Neg. LLF: 142.67210874114085
Iteration: 11, Func. Count: 48, Neg. LLF: 142.67210123950056
Iteration: 12, Func. Count: 51, Neg. LLF: 142.67210126358282
Optimization terminated successfully (Exit mode 0)
Current function value: 142.67210123950056
Iterations: 12
Function evaluations: 51
Gradient evaluations: 12
Iteration: 1, Func. Count: 6, Neg. LLF: 142.71436213659516
Iteration: 2, Func. Count: 11, Neg. LLF: 142.672059435368
Iteration: 3, Func. Count: 16, Neg. LLF: 142.67225208104276
Iteration: 4, Func. Count: 22, Neg. LLF: 142.67198024053283
Iteration: 5, Func. Count: 26, Neg. LLF: 142.67198024050606
Optimization terminated successfully (Exit mode 0)
Current function value: 142.67198024053283
Iterations: 5
Function evaluations: 26
Gradient evaluations: 5
Iteration: 1, Func. Count: 7, Neg. LLF: 143.88081551465513
Iteration: 2, Func. Count: 15, Neg. LLF: 142.67224312791285
Iteration: 3, Func. Count: 21, Neg. LLF: 142.67224168347423
Iteration: 4, Func. Count: 27, Neg. LLF: 142.67224082061904
Optimization terminated successfully (Exit mode 0)
Current function value: 142.67224082061904
Iterations: 4
Function evaluations: 27
Gradient evaluations: 4
Iteration: 1, Func. Count: 8, Neg. LLF: 142.9982547487502
Iteration: 2, Func. Count: 16, Neg. LLF: 142.6721998938818
Iteration: 3, Func. Count: 23, Neg. LLF: 142.67221581139069
Iteration: 4, Func. Count: 30, Neg. LLF: 142.67219572786829
Optimization terminated successfully (Exit mode 0)
Current function value: 142.67219572787755
Iterations: 4
Function evaluations: 30
Gradient evaluations: 4
Iteration: 1, Func. Count: 9, Neg. LLF: 143.50061666267038
Iteration: 2, Func. Count: 18, Neg. LLF: 142.67239192133752
Iteration: 3, Func. Count: 26, Neg. LLF: 142.67295772037835
Iteration: 4, Func. Count: 35, Neg. LLF: 142.67222093093542
Iteration: 5, Func. Count: 42, Neg. LLF: 142.67222093094867
Optimization terminated successfully (Exit mode 0)
Current function value: 142.67222093093542
Iterations: 5
Function evaluations: 42
Gradient evaluations: 5
Iteration: 1, Func. Count: 6, Neg. LLF: 147.82045540605674
Iteration: 2, Func. Count: 12, Neg. LLF: 145.95332036050388
Iteration: 3, Func. Count: 18, Neg. LLF: 143.86579280535824
Iteration: 4, Func. Count: 23, Neg. LLF: 143.64898747465125
Iteration: 5, Func. Count: 28, Neg. LLF: 143.2448553578179
Iteration: 6, Func. Count: 33, Neg. LLF: 142.50246948625684
Iteration: 7, Func. Count: 38, Neg. LLF: 142.48817085174113
Iteration: 8, Func. Count: 43, Neg. LLF: 142.47521874072288
Iteration: 9, Func. Count: 48, Neg. LLF: 142.47452148396627
Iteration: 10, Func. Count: 53, Neg. LLF: 142.47399721109696
Iteration: 11, Func. Count: 58, Neg. LLF: 142.4738828781591
Iteration: 12, Func. Count: 63, Neg. LLF: 142.4738735707786
Iteration: 13, Func. Count: 67, Neg. LLF: 142.47387347425268
Optimization terminated successfully (Exit mode 0)
Current function value: 142.4738735707786
Iterations: 13
Function evaluations: 67
Gradient evaluations: 13
Iteration: 1, Func. Count: 7, Neg. LLF: 145.36482006808086
Iteration: 2, Func. Count: 15, Neg. LLF: 148.27267320063515
Iteration: 3, Func. Count: 22, Neg. LLF: 142.43579607387298
Iteration: 4, Func. Count: 28, Neg. LLF: 142.35718219285744
Iteration: 5, Func. Count: 34, Neg. LLF: 142.35487389117594
Iteration: 6, Func. Count: 40, Neg. LLF: 142.35290820882327
Iteration: 7, Func. Count: 46, Neg. LLF: 142.35158958013113
Iteration: 8, Func. Count: 52, Neg. LLF: 142.35034707496033
Iteration: 9, Func. Count: 58, Neg. LLF: 142.34733427037898
Iteration: 10, Func. Count: 64, Neg. LLF: 142.34087577283566
Iteration: 11, Func. Count: 70, Neg. LLF: 142.32385856931046
Iteration: 12, Func. Count: 76, Neg. LLF: 141.68050939540922
Iteration: 13, Func. Count: 82, Neg. LLF: 141.62447019305569
Iteration: 14, Func. Count: 88, Neg. LLF: 145.4791385440944
Iteration: 15, Func. Count: 95, Neg. LLF: 141.58046148171016
Iteration: 16, Func. Count: 101, Neg. LLF: 141.571716340382
Iteration: 17, Func. Count: 107, Neg. LLF: 141.57025682702914
Iteration: 18, Func. Count: 113, Neg. LLF: 141.5697563022647
Iteration: 19, Func. Count: 119, Neg. LLF: 141.56975649021908
Optimization terminated successfully (Exit mode 0)
Current function value: 141.56975649021908
Iterations: 19
Function evaluations: 119
Gradient evaluations: 19
Iteration: 1, Func. Count: 8, Neg. LLF: 145.53444089244812
Iteration: 2, Func. Count: 17, Neg. LLF: 148.29299594047936
Iteration: 3, Func. Count: 25, Neg. LLF: 142.07722915646244
Iteration: 4, Func. Count: 32, Neg. LLF: 142.0125877180326
Iteration: 5, Func. Count: 39, Neg. LLF: 141.90386627028167
Iteration: 6, Func. Count: 46, Neg. LLF: 141.8783794665884
Iteration: 7, Func. Count: 53, Neg. LLF: 141.73329031996946
Iteration: 8, Func. Count: 60, Neg. LLF: 141.93529109897656
Iteration: 9, Func. Count: 68, Neg. LLF: 141.59137571857335
Iteration: 10, Func. Count: 75, Neg. LLF: 141.47439535773802
Iteration: 11, Func. Count: 82, Neg. LLF: 141.52279348519136
Iteration: 12, Func. Count: 90, Neg. LLF: 141.8504926007707
Iteration: 13, Func. Count: 98, Neg. LLF: 145.4746984649807
Iteration: 14, Func. Count: 106, Neg. LLF: 142.00600810327134
Iteration: 15, Func. Count: 114, Neg. LLF: 141.3542861246011
Iteration: 16, Func. Count: 122, Neg. LLF: 141.2285531427876
Iteration: 17, Func. Count: 129, Neg. LLF: 142.95308600842282
Iteration: 18, Func. Count: 137, Neg. LLF: 141.25613555669077
Iteration: 19, Func. Count: 145, Neg. LLF: 141.33094507510225
Iteration: 20, Func. Count: 153, Neg. LLF: 141.18774114603974
Iteration: 21, Func. Count: 160, Neg. LLF: 141.1868830876506
Iteration: 22, Func. Count: 167, Neg. LLF: 141.18685912963522
Iteration: 23, Func. Count: 174, Neg. LLF: 141.18685384500645
Iteration: 24, Func. Count: 180, Neg. LLF: 141.1868538449546
Optimization terminated successfully (Exit mode 0)
Current function value: 141.18685384500645
Iterations: 24
Function evaluations: 180
Gradient evaluations: 24
Iteration: 1, Func. Count: 9, Neg. LLF: 146.0153297544434
Iteration: 2, Func. Count: 19, Neg. LLF: 148.06835071988465
Iteration: 3, Func. Count: 28, Neg. LLF: 142.16144715013849
Iteration: 4, Func. Count: 36, Neg. LLF: 142.08530787561455
Iteration: 5, Func. Count: 44, Neg. LLF: 142.028789344176
Iteration: 6, Func. Count: 52, Neg. LLF: 141.85386012927896
Iteration: 7, Func. Count: 60, Neg. LLF: 141.7804965681949
Iteration: 8, Func. Count: 68, Neg. LLF: 141.70621072185529
Iteration: 9, Func. Count: 76, Neg. LLF: 141.6718380790402
Iteration: 10, Func. Count: 84, Neg. LLF: 141.56806265188504
Iteration: 11, Func. Count: 92, Neg. LLF: 141.45958889815853
Iteration: 12, Func. Count: 100, Neg. LLF: 141.69419777900987
Iteration: 13, Func. Count: 109, Neg. LLF: 141.46439903244632
Iteration: 14, Func. Count: 118, Neg. LLF: 158.14254990262617
Iteration: 15, Func. Count: 127, Neg. LLF: 143.20934085241763
Iteration: 16, Func. Count: 136, Neg. LLF: 141.22008574280613
Iteration: 17, Func. Count: 144, Neg. LLF: 144.00513724883282
Iteration: 18, Func. Count: 154, Neg. LLF: 141.25062418800937
Iteration: 19, Func. Count: 163, Neg. LLF: 141.14728903125985
Iteration: 20, Func. Count: 171, Neg. LLF: 141.14728476852508
Iteration: 21, Func. Count: 178, Neg. LLF: 141.1472847683696
Optimization terminated successfully (Exit mode 0)
Current function value: 141.14728476852508
Iterations: 21
Function evaluations: 178
Gradient evaluations: 21
Iteration: 1, Func. Count: 10, Neg. LLF: 146.20813697172403
Iteration: 2, Func. Count: 21, Neg. LLF: 148.03690763091797
Iteration: 3, Func. Count: 31, Neg. LLF: 142.24320137625105
Iteration: 4, Func. Count: 40, Neg. LLF: 142.08557483780316
Iteration: 5, Func. Count: 49, Neg. LLF: 141.9923615947104
Iteration: 6, Func. Count: 58, Neg. LLF: 141.9175920349988
Iteration: 7, Func. Count: 67, Neg. LLF: 141.85502671517136
Iteration: 8, Func. Count: 76, Neg. LLF: 141.78875465967374
Iteration: 9, Func. Count: 85, Neg. LLF: 141.75347117902368
Iteration: 10, Func. Count: 94, Neg. LLF: 141.69703173645576
Iteration: 11, Func. Count: 103, Neg. LLF: 141.56397105023228
Iteration: 12, Func. Count: 112, Neg. LLF: 141.417844110254
Iteration: 13, Func. Count: 121, Neg. LLF: 141.36879391184704
Iteration: 14, Func. Count: 130, Neg. LLF: 141.31232427856506
Iteration: 15, Func. Count: 139, Neg. LLF: 154.31615185433162
Iteration: 16, Func. Count: 149, Neg. LLF: 141.58027603734
Iteration: 17, Func. Count: 159, Neg. LLF: 141.2600737400056
Iteration: 18, Func. Count: 169, Neg. LLF: 141.67905741497387
Iteration: 19, Func. Count: 179, Neg. LLF: 141.182705971191
Iteration: 20, Func. Count: 189, Neg. LLF: 141.1484315700362
Iteration: 21, Func. Count: 198, Neg. LLF: 141.14739045710658
Iteration: 22, Func. Count: 207, Neg. LLF: 141.14729033315342
Iteration: 23, Func. Count: 216, Neg. LLF: 141.1472850715582
Iteration: 24, Func. Count: 224, Neg. LLF: 141.14728508004777
Optimization terminated successfully (Exit mode 0)
Current function value: 141.1472850715582
Iterations: 24
Function evaluations: 224
Gradient evaluations: 24
Iteration: 1, Func. Count: 7, Neg. LLF: 148.76844265797945
Iteration: 2, Func. Count: 14, Neg. LLF: 144.56801367196016
Iteration: 3, Func. Count: 21, Neg. LLF: 142.54111836442627
Iteration: 4, Func. Count: 27, Neg. LLF: 142.35949875610726
Iteration: 5, Func. Count: 33, Neg. LLF: 142.32659710170526
Iteration: 6, Func. Count: 39, Neg. LLF: 142.27373740489
Iteration: 7, Func. Count: 45, Neg. LLF: 142.26903562235137
Iteration: 8, Func. Count: 51, Neg. LLF: 142.2685004405802
Iteration: 9, Func. Count: 57, Neg. LLF: 142.2684972783941
Iteration: 10, Func. Count: 62, Neg. LLF: 142.26849727837572
Optimization terminated successfully (Exit mode 0)
Current function value: 142.2684972783941
Iterations: 10
Function evaluations: 62
Gradient evaluations: 10
Iteration: 1, Func. Count: 8, Neg. LLF: 145.38286946973705
Iteration: 2, Func. Count: 17, Neg. LLF: 148.26072911653506
Iteration: 3, Func. Count: 25, Neg. LLF: 142.43229891667087
Iteration: 4, Func. Count: 32, Neg. LLF: 142.35693903645358
Iteration: 5, Func. Count: 39, Neg. LLF: 142.35491771292672
Iteration: 6, Func. Count: 46, Neg. LLF: 142.35259249458292
Iteration: 7, Func. Count: 53, Neg. LLF: 142.3515293761392
Iteration: 8, Func. Count: 60, Neg. LLF: 142.35002843851584
Iteration: 9, Func. Count: 67, Neg. LLF: 142.34677625544504
Iteration: 10, Func. Count: 74, Neg. LLF: 142.3391574323291
Iteration: 11, Func. Count: 81, Neg. LLF: 142.31665191978243
Iteration: 12, Func. Count: 88, Neg. LLF: 141.67121698273155
Iteration: 13, Func. Count: 95, Neg. LLF: 141.61114427010534
Iteration: 14, Func. Count: 102, Neg. LLF: 144.37066868473946
Iteration: 15, Func. Count: 110, Neg. LLF: 141.57859458451603
Iteration: 16, Func. Count: 117, Neg. LLF: 141.5723449987691
Iteration: 17, Func. Count: 124, Neg. LLF: 141.56991769449718
Iteration: 18, Func. Count: 131, Neg. LLF: 141.56974998216933
Iteration: 19, Func. Count: 138, Neg. LLF: 141.56974352467276
Iteration: 20, Func. Count: 146, Neg. LLF: 141.569745670995
Iteration: 21, Func. Count: 163, Neg. LLF: 141.56992914293303
Iteration: 22, Func. Count: 172, Neg. LLF: 141.56976118151854
Iteration: 23, Func. Count: 181, Neg. LLF: 141.56975314909883
Iteration: 24, Func. Count: 189, Neg. LLF: 141.56975320025884
Iteration: 25, Func. Count: 197, Neg. LLF: 141.56975304689973
Iteration: 26, Func. Count: 203, Neg. LLF: 141.56975303931227
Optimization terminated successfully (Exit mode 0)
Current function value: 141.56975304689973
Iterations: 27
Function evaluations: 203
Gradient evaluations: 26
Iteration: 1, Func. Count: 9, Neg. LLF: 145.53457758818988
Iteration: 2, Func. Count: 19, Neg. LLF: 148.29801373466339
Iteration: 3, Func. Count: 28, Neg. LLF: 142.06651104131842
Iteration: 4, Func. Count: 36, Neg. LLF: 142.00619186901594
Iteration: 5, Func. Count: 44, Neg. LLF: 141.90202148820688
Iteration: 6, Func. Count: 52, Neg. LLF: 141.87576294999403
Iteration: 7, Func. Count: 60, Neg. LLF: 141.727724877315
Iteration: 8, Func. Count: 68, Neg. LLF: 141.81045241473598
Iteration: 9, Func. Count: 77, Neg. LLF: 141.5745724344954
Iteration: 10, Func. Count: 85, Neg. LLF: 141.4353389382876
Iteration: 11, Func. Count: 93, Neg. LLF: 141.3804783041521
Iteration: 12, Func. Count: 101, Neg. LLF: 141.3023610955274
Iteration: 13, Func. Count: 109, Neg. LLF: 141.30913685644168
Iteration: 14, Func. Count: 118, Neg. LLF: 141.3867077033995
Iteration: 15, Func. Count: 127, Neg. LLF: 141.2149830079804
Iteration: 16, Func. Count: 135, Neg. LLF: 141.2092565940188
Iteration: 17, Func. Count: 144, Neg. LLF: 141.28426172625336
Iteration: 18, Func. Count: 154, Neg. LLF: 141.1947589199555
Iteration: 19, Func. Count: 163, Neg. LLF: 141.18685488250122
Iteration: 20, Func. Count: 171, Neg. LLF: 141.18685390610665
Optimization terminated successfully (Exit mode 0)
Current function value: 141.18685390610665
Iterations: 20
Function evaluations: 171
Gradient evaluations: 20
Iteration: 1, Func. Count: 10, Neg. LLF: 145.99873101220402
Iteration: 2, Func. Count: 21, Neg. LLF: 148.0789097547968
Iteration: 3, Func. Count: 31, Neg. LLF: 142.14819453441064
Iteration: 4, Func. Count: 40, Neg. LLF: 142.07384314843685
Iteration: 5, Func. Count: 49, Neg. LLF: 142.01946105118714
Iteration: 6, Func. Count: 58, Neg. LLF: 141.84460217514155
Iteration: 7, Func. Count: 67, Neg. LLF: 141.77131535069353
Iteration: 8, Func. Count: 76, Neg. LLF: 141.7031412953617
Iteration: 9, Func. Count: 85, Neg. LLF: 141.6688268708383
Iteration: 10, Func. Count: 94, Neg. LLF: 141.557125307662
Iteration: 11, Func. Count: 103, Neg. LLF: 141.44333628113088
Iteration: 12, Func. Count: 112, Neg. LLF: 141.53113517708385
Iteration: 13, Func. Count: 122, Neg. LLF: 141.3258819585832
Iteration: 14, Func. Count: 131, Neg. LLF: 141.60474703828334
Iteration: 15, Func. Count: 141, Neg. LLF: 141.57730979698889
Iteration: 16, Func. Count: 151, Neg. LLF: 141.18046044359818
Iteration: 17, Func. Count: 160, Neg. LLF: 142.51260658467297
Iteration: 18, Func. Count: 170, Neg. LLF: 141.23090837048795
Iteration: 19, Func. Count: 180, Neg. LLF: 141.1481902919998
Iteration: 20, Func. Count: 189, Neg. LLF: 141.1473510892877
Iteration: 21, Func. Count: 198, Neg. LLF: 141.14728500042963
Iteration: 22, Func. Count: 206, Neg. LLF: 141.14728500057635
Optimization terminated successfully (Exit mode 0)
Current function value: 141.14728500042963
Iterations: 22
Function evaluations: 206
Gradient evaluations: 22
Iteration: 1, Func. Count: 11, Neg. LLF: 146.2175732399166
Iteration: 2, Func. Count: 23, Neg. LLF: 148.04513404375473
Iteration: 3, Func. Count: 34, Neg. LLF: 142.227704088399
Iteration: 4, Func. Count: 44, Neg. LLF: 142.0801780105436
Iteration: 5, Func. Count: 54, Neg. LLF: 141.99197428921028
Iteration: 6, Func. Count: 64, Neg. LLF: 141.91486207828447
Iteration: 7, Func. Count: 74, Neg. LLF: 141.85113358998808
Iteration: 8, Func. Count: 84, Neg. LLF: 141.7843044364215
Iteration: 9, Func. Count: 94, Neg. LLF: 141.74976555078504
Iteration: 10, Func. Count: 104, Neg. LLF: 141.68902868313575
Iteration: 11, Func. Count: 114, Neg. LLF: 141.54946844860757
Iteration: 12, Func. Count: 124, Neg. LLF: 141.4823753480496
Iteration: 13, Func. Count: 134, Neg. LLF: 141.39538521051045
Iteration: 14, Func. Count: 144, Neg. LLF: 141.3980759680653
Iteration: 15, Func. Count: 155, Neg. LLF: 143.28507863144964
Iteration: 16, Func. Count: 166, Neg. LLF: 142.63796806773453
Iteration: 17, Func. Count: 177, Neg. LLF: 142.96056426361977
Iteration: 18, Func. Count: 188, Neg. LLF: 141.5630498336249
Iteration: 19, Func. Count: 199, Neg. LLF: 141.20686821442945
Iteration: 20, Func. Count: 210, Neg. LLF: 141.15481730008383
Iteration: 21, Func. Count: 220, Neg. LLF: 141.15055599886998
Iteration: 22, Func. Count: 230, Neg. LLF: 141.14817826390723
Iteration: 23, Func. Count: 240, Neg. LLF: 141.1473182754899
Iteration: 24, Func. Count: 250, Neg. LLF: 141.1472853116006
Iteration: 25, Func. Count: 260, Neg. LLF: 141.14728477855732
Optimization terminated successfully (Exit mode 0)
Current function value: 141.14728477855732
Iterations: 25
Function evaluations: 260
Gradient evaluations: 25
Iteration: 1, Func. Count: 8, Neg. LLF: 147.81493983839894
Iteration: 2, Func. Count: 16, Neg. LLF: 144.22856318488593
Iteration: 3, Func. Count: 24, Neg. LLF: 142.50517909921314
Iteration: 4, Func. Count: 31, Neg. LLF: 142.44727800700076
Iteration: 5, Func. Count: 38, Neg. LLF: 142.3138308669111
Iteration: 6, Func. Count: 45, Neg. LLF: 142.29582986769321
Iteration: 7, Func. Count: 52, Neg. LLF: 142.27429215368937
Iteration: 8, Func. Count: 59, Neg. LLF: 142.26965635847165
Iteration: 9, Func. Count: 66, Neg. LLF: 142.26880350158248
Iteration: 10, Func. Count: 73, Neg. LLF: 142.26855734645727
Iteration: 11, Func. Count: 80, Neg. LLF: 142.2685022079164
Iteration: 12, Func. Count: 87, Neg. LLF: 142.2684969233441
Iteration: 13, Func. Count: 93, Neg. LLF: 142.2684971332496
Optimization terminated successfully (Exit mode 0)
Current function value: 142.2684969233441
Iterations: 13
Function evaluations: 93
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 145.4152800648105
Iteration: 2, Func. Count: 19, Neg. LLF: 148.22877326176507
Iteration: 3, Func. Count: 28, Neg. LLF: 142.43038814286828
Iteration: 4, Func. Count: 36, Neg. LLF: 142.35700464909252
Iteration: 5, Func. Count: 44, Neg. LLF: 142.3549648556782
Iteration: 6, Func. Count: 52, Neg. LLF: 142.3525462234763
Iteration: 7, Func. Count: 60, Neg. LLF: 142.3515503827377
Iteration: 8, Func. Count: 68, Neg. LLF: 142.34997270710468
Iteration: 9, Func. Count: 76, Neg. LLF: 142.34663450922346
Iteration: 10, Func. Count: 84, Neg. LLF: 142.3386317729515
Iteration: 11, Func. Count: 92, Neg. LLF: 142.31328033168532
Iteration: 12, Func. Count: 100, Neg. LLF: 141.66818980097406
Iteration: 13, Func. Count: 108, Neg. LLF: 141.60272865268308
Iteration: 14, Func. Count: 116, Neg. LLF: 143.83685670705984
Iteration: 15, Func. Count: 125, Neg. LLF: 141.57819954170967
Iteration: 16, Func. Count: 133, Neg. LLF: 141.5704616922764
Iteration: 17, Func. Count: 141, Neg. LLF: 141.5697602615664
Iteration: 18, Func. Count: 149, Neg. LLF: 141.5697400189512
Iteration: 19, Func. Count: 157, Neg. LLF: 141.5697326134732
Iteration: 20, Func. Count: 175, Neg. LLF: 141.56976317353082
Iteration: 21, Func. Count: 184, Neg. LLF: 141.5697710066516
Iteration: 22, Func. Count: 194, Neg. LLF: 141.5697532720344
Iteration: 23, Func. Count: 203, Neg. LLF: 141.56975304425328
Iteration: 24, Func. Count: 212, Neg. LLF: 141.5697530646059
Iteration: 25, Func. Count: 221, Neg. LLF: 141.56975304628654
Iteration: 26, Func. Count: 230, Neg. LLF: 141.56975304159167
Iteration: 27, Func. Count: 237, Neg. LLF: 141.56975303397027
Optimization terminated successfully (Exit mode 0)
Current function value: 141.56975304159167
Iterations: 28
Function evaluations: 237
Gradient evaluations: 27
Iteration: 1, Func. Count: 10, Neg. LLF: 145.5557320951297
Iteration: 2, Func. Count: 21, Neg. LLF: 148.27648497202634
Iteration: 3, Func. Count: 31, Neg. LLF: 142.06156979177487
Iteration: 4, Func. Count: 40, Neg. LLF: 142.00373948326578
Iteration: 5, Func. Count: 49, Neg. LLF: 141.89991727167288
Iteration: 6, Func. Count: 58, Neg. LLF: 141.87331112021602
Iteration: 7, Func. Count: 67, Neg. LLF: 141.72366430580402
Iteration: 8, Func. Count: 76, Neg. LLF: 141.79538501994784
Iteration: 9, Func. Count: 86, Neg. LLF: 141.56735661066054
Iteration: 10, Func. Count: 95, Neg. LLF: 141.42534334577593
Iteration: 11, Func. Count: 104, Neg. LLF: 141.3701003610901
Iteration: 12, Func. Count: 113, Neg. LLF: 141.29136438355576
Iteration: 13, Func. Count: 122, Neg. LLF: 141.3012051933582
Iteration: 14, Func. Count: 132, Neg. LLF: 141.21503075078945
Iteration: 15, Func. Count: 141, Neg. LLF: 141.23760216419987
Iteration: 16, Func. Count: 151, Neg. LLF: 141.28947312402835
Iteration: 17, Func. Count: 161, Neg. LLF: 141.1870484207795
Iteration: 18, Func. Count: 170, Neg. LLF: 141.18698757344077
Iteration: 19, Func. Count: 179, Neg. LLF: 141.186947032072
Iteration: 20, Func. Count: 189, Neg. LLF: 141.1868553899753
Iteration: 21, Func. Count: 198, Neg. LLF: 141.18685384053575
Iteration: 22, Func. Count: 206, Neg. LLF: 141.18685384052165
Optimization terminated successfully (Exit mode 0)
Current function value: 141.18685384053575
Iterations: 22
Function evaluations: 206
Gradient evaluations: 22
Iteration: 1, Func. Count: 11, Neg. LLF: 146.0025545478765
Iteration: 2, Func. Count: 23, Neg. LLF: 148.0571691680036
Iteration: 3, Func. Count: 34, Neg. LLF: 142.13680210693028
Iteration: 4, Func. Count: 44, Neg. LLF: 142.06259594484288
Iteration: 5, Func. Count: 54, Neg. LLF: 142.01263553405536
Iteration: 6, Func. Count: 64, Neg. LLF: 141.83453973563383
Iteration: 7, Func. Count: 74, Neg. LLF: 141.7474687446872
Iteration: 8, Func. Count: 84, Neg. LLF: 141.70535151572363
Iteration: 9, Func. Count: 94, Neg. LLF: 141.66259634178832
Iteration: 10, Func. Count: 104, Neg. LLF: 141.5772768587168
Iteration: 11, Func. Count: 114, Neg. LLF: 141.4401151899065
Iteration: 12, Func. Count: 124, Neg. LLF: 141.43350002029925
Iteration: 13, Func. Count: 135, Neg. LLF: 141.32427371565325
Iteration: 14, Func. Count: 145, Neg. LLF: 142.42475907895832
Iteration: 15, Func. Count: 156, Neg. LLF: 144.40021122119376
Iteration: 16, Func. Count: 168, Neg. LLF: 141.2609216408358
Iteration: 17, Func. Count: 179, Neg. LLF: 141.1887862898418
Iteration: 18, Func. Count: 190, Neg. LLF: 141.1482990218372
Iteration: 19, Func. Count: 200, Neg. LLF: 141.14769144711303
Iteration: 20, Func. Count: 210, Neg. LLF: 141.14732680529448
Iteration: 21, Func. Count: 220, Neg. LLF: 141.14728753105402
Iteration: 22, Func. Count: 230, Neg. LLF: 141.1472848580581
Iteration: 23, Func. Count: 239, Neg. LLF: 141.14728485791605
Optimization terminated successfully (Exit mode 0)
Current function value: 141.1472848580581
Iterations: 23
Function evaluations: 239
Gradient evaluations: 23
Iteration: 1, Func. Count: 12, Neg. LLF: 146.23732626524483
Iteration: 2, Func. Count: 25, Neg. LLF: 148.02023164514884
Iteration: 3, Func. Count: 37, Neg. LLF: 142.20602357667536
Iteration: 4, Func. Count: 48, Neg. LLF: 142.07677556800695
Iteration: 5, Func. Count: 59, Neg. LLF: 141.99518011724376
Iteration: 6, Func. Count: 70, Neg. LLF: 141.9083931602984
Iteration: 7, Func. Count: 81, Neg. LLF: 141.84458565599752
Iteration: 8, Func. Count: 92, Neg. LLF: 141.77864750322374
Iteration: 9, Func. Count: 103, Neg. LLF: 141.7452472752787
Iteration: 10, Func. Count: 114, Neg. LLF: 141.67832563028657
Iteration: 11, Func. Count: 125, Neg. LLF: 141.53093437549606
Iteration: 12, Func. Count: 136, Neg. LLF: 141.6774817952273
Iteration: 13, Func. Count: 148, Neg. LLF: 144.3646967559624
Iteration: 14, Func. Count: 160, Neg. LLF: 142.95511612982108
Iteration: 15, Func. Count: 172, Neg. LLF: 141.95001678611507
Iteration: 16, Func. Count: 184, Neg. LLF: 141.56374057563133
Iteration: 17, Func. Count: 196, Neg. LLF: 141.75991697690836
Iteration: 18, Func. Count: 208, Neg. LLF: 141.16841731939382
Iteration: 19, Func. Count: 219, Neg. LLF: 141.15611522222707
Iteration: 20, Func. Count: 230, Neg. LLF: 141.14866030663842
Iteration: 21, Func. Count: 241, Neg. LLF: 141.14740658971607
Iteration: 22, Func. Count: 252, Neg. LLF: 141.14736710265348
Iteration: 23, Func. Count: 263, Neg. LLF: 141.14728501881453
Iteration: 24, Func. Count: 273, Neg. LLF: 141.14728502704622
Optimization terminated successfully (Exit mode 0)
Current function value: 141.14728501881453
Iterations: 24
Function evaluations: 273
Gradient evaluations: 24
Iteration: 1, Func. Count: 9, Neg. LLF: 147.2696556350733
Iteration: 2, Func. Count: 18, Neg. LLF: 145.46150061816337
Iteration: 3, Func. Count: 27, Neg. LLF: 142.50936329005003
Iteration: 4, Func. Count: 35, Neg. LLF: 142.3930425420103
Iteration: 5, Func. Count: 43, Neg. LLF: 142.34608435805498
Iteration: 6, Func. Count: 51, Neg. LLF: 142.3003213520273
Iteration: 7, Func. Count: 59, Neg. LLF: 142.28324244660004
Iteration: 8, Func. Count: 67, Neg. LLF: 142.27308603108145
Iteration: 9, Func. Count: 75, Neg. LLF: 142.27071607886785
Iteration: 10, Func. Count: 83, Neg. LLF: 142.2686085189852
Iteration: 11, Func. Count: 91, Neg. LLF: 142.2685588119005
Iteration: 12, Func. Count: 99, Neg. LLF: 142.2685137563444
Iteration: 13, Func. Count: 107, Neg. LLF: 142.26849948482976
Iteration: 14, Func. Count: 115, Neg. LLF: 142.268496987621
Iteration: 15, Func. Count: 122, Neg. LLF: 142.2684971484111
Optimization terminated successfully (Exit mode 0)
Current function value: 142.268496987621
Iterations: 15
Function evaluations: 122
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 145.41963927478702
Iteration: 2, Func. Count: 21, Neg. LLF: 148.22419278111644
Iteration: 3, Func. Count: 31, Neg. LLF: 142.43073356242823
Iteration: 4, Func. Count: 40, Neg. LLF: 142.3569653855371
Iteration: 5, Func. Count: 49, Neg. LLF: 142.35496432385986
Iteration: 6, Func. Count: 58, Neg. LLF: 142.35245968577772
Iteration: 7, Func. Count: 67, Neg. LLF: 142.35152731633121
Iteration: 8, Func. Count: 76, Neg. LLF: 142.34979596253854
Iteration: 9, Func. Count: 85, Neg. LLF: 142.34628882526528
Iteration: 10, Func. Count: 94, Neg. LLF: 142.33764807452079
Iteration: 11, Func. Count: 103, Neg. LLF: 142.3057824133225
Iteration: 12, Func. Count: 112, Neg. LLF: 141.66393726860392
Iteration: 13, Func. Count: 121, Neg. LLF: 141.61873097903555
Iteration: 14, Func. Count: 130, Neg. LLF: 145.10414662045852
Iteration: 15, Func. Count: 141, Neg. LLF: 141.66740439616652
Iteration: 16, Func. Count: 151, Neg. LLF: 141.5912254298134
Iteration: 17, Func. Count: 160, Neg. LLF: 147.06203448480287
Iteration: 18, Func. Count: 170, Neg. LLF: 141.58544461758018
Iteration: 19, Func. Count: 180, Neg. LLF: 141.56999476910897
Iteration: 20, Func. Count: 189, Neg. LLF: 141.56975573227564
Iteration: 21, Func. Count: 198, Neg. LLF: 141.5697530734401
Iteration: 22, Func. Count: 206, Neg. LLF: 141.56975306562524
Optimization terminated successfully (Exit mode 0)
Current function value: 141.5697530734401
Iterations: 22
Function evaluations: 206
Gradient evaluations: 22
Iteration: 1, Func. Count: 11, Neg. LLF: 145.5625976518003
Iteration: 2, Func. Count: 23, Neg. LLF: 148.27136102082594
Iteration: 3, Func. Count: 34, Neg. LLF: 142.06148312545145
Iteration: 4, Func. Count: 44, Neg. LLF: 142.00466676133252
Iteration: 5, Func. Count: 54, Neg. LLF: 141.89825168770133
Iteration: 6, Func. Count: 64, Neg. LLF: 141.8714888839749
Iteration: 7, Func. Count: 74, Neg. LLF: 141.7208282833989
Iteration: 8, Func. Count: 84, Neg. LLF: 141.81139445191113
Iteration: 9, Func. Count: 95, Neg. LLF: 141.56576671120533
Iteration: 10, Func. Count: 105, Neg. LLF: 141.42675413666407
Iteration: 11, Func. Count: 115, Neg. LLF: 141.37902266495726
Iteration: 12, Func. Count: 125, Neg. LLF: 141.29943644155284
Iteration: 13, Func. Count: 135, Neg. LLF: 141.33257625546239
Iteration: 14, Func. Count: 146, Neg. LLF: 141.26381619651042
Iteration: 15, Func. Count: 157, Neg. LLF: 141.20406717199805
Iteration: 16, Func. Count: 168, Neg. LLF: 141.19108999541172
Iteration: 17, Func. Count: 179, Neg. LLF: 141.35592400318234
Iteration: 18, Func. Count: 190, Neg. LLF: 141.19094708408
Iteration: 19, Func. Count: 201, Neg. LLF: 141.18688905715726
Iteration: 20, Func. Count: 211, Neg. LLF: 141.18685392376443
Iteration: 21, Func. Count: 220, Neg. LLF: 141.18685392369372
Optimization terminated successfully (Exit mode 0)
Current function value: 141.18685392376443
Iterations: 21
Function evaluations: 220
Gradient evaluations: 21
Iteration: 1, Func. Count: 12, Neg. LLF: 146.03230431396793
Iteration: 2, Func. Count: 25, Neg. LLF: 148.04971262481797
Iteration: 3, Func. Count: 37, Neg. LLF: 142.13486629647633
Iteration: 4, Func. Count: 48, Neg. LLF: 142.0599270632874
Iteration: 5, Func. Count: 59, Neg. LLF: 142.010812181113
Iteration: 6, Func. Count: 70, Neg. LLF: 141.83560460519303
Iteration: 7, Func. Count: 81, Neg. LLF: 141.7400088161146
Iteration: 8, Func. Count: 92, Neg. LLF: 141.70411413905703
Iteration: 9, Func. Count: 103, Neg. LLF: 141.65563194994454
Iteration: 10, Func. Count: 114, Neg. LLF: 141.576215338433
Iteration: 11, Func. Count: 125, Neg. LLF: 141.42999991867947
Iteration: 12, Func. Count: 136, Neg. LLF: 141.36252246931076
Iteration: 13, Func. Count: 147, Neg. LLF: 141.30770533096592
Iteration: 14, Func. Count: 158, Neg. LLF: 141.87912334633452
Iteration: 15, Func. Count: 170, Neg. LLF: 141.1602865406609
Iteration: 16, Func. Count: 181, Neg. LLF: 141.20599639040307
Iteration: 17, Func. Count: 193, Neg. LLF: 141.1773406536499
Iteration: 18, Func. Count: 205, Neg. LLF: 141.1475402463403
Iteration: 19, Func. Count: 216, Neg. LLF: 141.14728487656902
Iteration: 20, Func. Count: 226, Neg. LLF: 141.14728487676416
Optimization terminated successfully (Exit mode 0)
Current function value: 141.14728487656902
Iterations: 20
Function evaluations: 226
Gradient evaluations: 20
Iteration: 1, Func. Count: 13, Neg. LLF: 146.23000573131213
Iteration: 2, Func. Count: 27, Neg. LLF: 148.013650424249
Iteration: 3, Func. Count: 40, Neg. LLF: 142.19887948174411
Iteration: 4, Func. Count: 52, Neg. LLF: 142.07624389477974
Iteration: 5, Func. Count: 64, Neg. LLF: 141.99668261859532
Iteration: 6, Func. Count: 76, Neg. LLF: 141.9056700209269
Iteration: 7, Func. Count: 88, Neg. LLF: 141.84146223890332
Iteration: 8, Func. Count: 100, Neg. LLF: 141.7756200388766
Iteration: 9, Func. Count: 112, Neg. LLF: 141.7426288115582
Iteration: 10, Func. Count: 124, Neg. LLF: 141.6726750617182
Iteration: 11, Func. Count: 136, Neg. LLF: 141.52286208943204
Iteration: 12, Func. Count: 148, Neg. LLF: 141.84806594434525
Iteration: 13, Func. Count: 161, Neg. LLF: 149.10195709160107
Iteration: 14, Func. Count: 174, Neg. LLF: 145.92982591109887
Iteration: 15, Func. Count: 187, Neg. LLF: 141.96752459145657
Iteration: 16, Func. Count: 200, Neg. LLF: 141.60193855726916
Iteration: 17, Func. Count: 213, Neg. LLF: 146.5603001239369
Iteration: 18, Func. Count: 226, Neg. LLF: 141.17800988057192
Iteration: 19, Func. Count: 238, Neg. LLF: 141.1661826301322
Iteration: 20, Func. Count: 250, Neg. LLF: 141.14985575091632
Iteration: 21, Func. Count: 262, Neg. LLF: 141.147739261315
Iteration: 22, Func. Count: 274, Neg. LLF: 141.14731223057134
Iteration: 23, Func. Count: 286, Neg. LLF: 141.14728757346575
Iteration: 24, Func. Count: 298, Neg. LLF: 141.14728473875556
Iteration: 25, Func. Count: 309, Neg. LLF: 141.14728474699163
Optimization terminated successfully (Exit mode 0)
Current function value: 141.14728473875556
Iterations: 25
Function evaluations: 309
Gradient evaluations: 25
Iteration: 1, Func. Count: 6, Neg. LLF: 143.65934327233418
Iteration: 2, Func. Count: 11, Neg. LLF: 148.83831562841158
Iteration: 3, Func. Count: 17, Neg. LLF: 142.0219763066647
Iteration: 4, Func. Count: 22, Neg. LLF: 141.63309374009938
Iteration: 5, Func. Count: 27, Neg. LLF: 141.50384376620707
Iteration: 6, Func. Count: 32, Neg. LLF: 141.47764694271027
Iteration: 7, Func. Count: 37, Neg. LLF: 141.47752589758153
Iteration: 8, Func. Count: 42, Neg. LLF: 141.47751937257001
Iteration: 9, Func. Count: 47, Neg. LLF: 141.47751851940149
Optimization terminated successfully (Exit mode 0)
Current function value: 141.47751851940149
Iterations: 9
Function evaluations: 47
Gradient evaluations: 9
Iteration: 1, Func. Count: 7, Neg. LLF: 142.84451945989727
Iteration: 2, Func. Count: 14, Neg. LLF: 142.67233269704926
Iteration: 3, Func. Count: 20, Neg. LLF: 142.67378681751737
Iteration: 4, Func. Count: 26, Neg. LLF: 142.67198044911845
Optimization terminated successfully (Exit mode 0)
Current function value: 142.6719804491903
Iterations: 4
Function evaluations: 26
Gradient evaluations: 4
Iteration: 1, Func. Count: 8, Neg. LLF: 142.88077121115612
Iteration: 2, Func. Count: 16, Neg. LLF: 142.67248045836752
Iteration: 3, Func. Count: 23, Neg. LLF: 142.67360121295067
Iteration: 4, Func. Count: 30, Neg. LLF: 142.67223895104087
Optimization terminated successfully (Exit mode 0)
Current function value: 142.67223895094824
Iterations: 4
Function evaluations: 30
Gradient evaluations: 4
Iteration: 1, Func. Count: 9, Neg. LLF: 145.08750471158422
Iteration: 2, Func. Count: 19, Neg. LLF: 142.6722546354718
Iteration: 3, Func. Count: 27, Neg. LLF: 142.67250009188854
Iteration: 4, Func. Count: 36, Neg. LLF: 142.6721753740036
Iteration: 5, Func. Count: 44, Neg. LLF: 142.67217217114478
Iteration: 6, Func. Count: 51, Neg. LLF: 142.6721721712512
Optimization terminated successfully (Exit mode 0)
Current function value: 142.67217217114478
Iterations: 6
Function evaluations: 51
Gradient evaluations: 6
Iteration: 1, Func. Count: 10, Neg. LLF: 147.08663418407454
Iteration: 2, Func. Count: 21, Neg. LLF: 142.67221654937362
Iteration: 3, Func. Count: 30, Neg. LLF: 142.67226556613835
Iteration: 4, Func. Count: 40, Neg. LLF: 142.67220179513075
Optimization terminated successfully (Exit mode 0)
Current function value: 142.67220179513075
Iterations: 4
Function evaluations: 40
Gradient evaluations: 4
Iteration: 1, Func. Count: 7, Neg. LLF: 144.6797803705497
Iteration: 2, Func. Count: 14, Neg. LLF: 142.979319129758
Iteration: 3, Func. Count: 20, Neg. LLF: 142.40009263433035
Iteration: 4, Func. Count: 26, Neg. LLF: 143.90421320153877
Iteration: 5, Func. Count: 34, Neg. LLF: 141.64125993755542
Iteration: 6, Func. Count: 40, Neg. LLF: 141.49888278619116
Iteration: 7, Func. Count: 46, Neg. LLF: 141.25830464498992
Iteration: 8, Func. Count: 52, Neg. LLF: 141.1105661824072
Iteration: 9, Func. Count: 58, Neg. LLF: 141.029059365906
Iteration: 10, Func. Count: 64, Neg. LLF: 141.0244171144697
Iteration: 11, Func. Count: 70, Neg. LLF: 141.02407330804172
Iteration: 12, Func. Count: 76, Neg. LLF: 141.02396209066575
Iteration: 13, Func. Count: 82, Neg. LLF: 141.02395462572076
Iteration: 14, Func. Count: 87, Neg. LLF: 141.02395449520546
Optimization terminated successfully (Exit mode 0)
Current function value: 141.02395462572076
Iterations: 14
Function evaluations: 87
Gradient evaluations: 14
Iteration: 1, Func. Count: 8, Neg. LLF: 145.4082389927565
Iteration: 2, Func. Count: 17, Neg. LLF: 148.29344576767195
Iteration: 3, Func. Count: 25, Neg. LLF: 142.4370327441927
Iteration: 4, Func. Count: 32, Neg. LLF: 142.3571071365554
Iteration: 5, Func. Count: 39, Neg. LLF: 142.35499009738456
Iteration: 6, Func. Count: 46, Neg. LLF: 142.35247413800553
Iteration: 7, Func. Count: 53, Neg. LLF: 142.3513643612426
Iteration: 8, Func. Count: 60, Neg. LLF: 142.34996158151648
Iteration: 9, Func. Count: 67, Neg. LLF: 142.34696093573743
Iteration: 10, Func. Count: 74, Neg. LLF: 142.33999641148534
Iteration: 11, Func. Count: 81, Neg. LLF: 142.32121714472314
Iteration: 12, Func. Count: 88, Neg. LLF: 141.68356084746233
Iteration: 13, Func. Count: 95, Neg. LLF: 141.61631687179556
Iteration: 14, Func. Count: 102, Neg. LLF: 143.918544666129
Iteration: 15, Func. Count: 110, Neg. LLF: 141.5787600526337
Iteration: 16, Func. Count: 117, Neg. LLF: 141.57191601394652
Iteration: 17, Func. Count: 124, Neg. LLF: 141.57011364322707
Iteration: 18, Func. Count: 131, Neg. LLF: 141.56976525717891
Iteration: 19, Func. Count: 138, Neg. LLF: 141.56973927545482
Iteration: 20, Func. Count: 145, Neg. LLF: 141.56974589737789
Iteration: 21, Func. Count: 162, Neg. LLF: 141.56977494971233
Iteration: 22, Func. Count: 171, Neg. LLF: 141.5697530927639
Iteration: 23, Func. Count: 178, Neg. LLF: 141.57024542506034
Optimization terminated successfully (Exit mode 0)
Current function value: 141.56975308544335
Iterations: 24
Function evaluations: 181
Gradient evaluations: 23
Iteration: 1, Func. Count: 9, Neg. LLF: 145.5665948871109
Iteration: 2, Func. Count: 19, Neg. LLF: 148.318395344561
Iteration: 3, Func. Count: 28, Neg. LLF: 142.08351553219106
Iteration: 4, Func. Count: 36, Neg. LLF: 142.02505546277817
Iteration: 5, Func. Count: 44, Neg. LLF: 141.8976737634229
Iteration: 6, Func. Count: 52, Neg. LLF: 141.8720126217704
Iteration: 7, Func. Count: 60, Neg. LLF: 141.72188905537317
Iteration: 8, Func. Count: 68, Neg. LLF: 142.89178259740163
Iteration: 9, Func. Count: 77, Neg. LLF: 141.6424588327674
Iteration: 10, Func. Count: 85, Neg. LLF: 141.52492830282512
Iteration: 11, Func. Count: 93, Neg. LLF: 141.44706325712102
Iteration: 12, Func. Count: 101, Neg. LLF: 143.70450974843942
Iteration: 13, Func. Count: 110, Neg. LLF: 177.4710560690672
Iteration: 14, Func. Count: 119, Neg. LLF: 143.80021086717477
Iteration: 15, Func. Count: 128, Neg. LLF: 141.92685111254144
Iteration: 16, Func. Count: 137, Neg. LLF: 141.55154291343618
Iteration: 17, Func. Count: 146, Neg. LLF: 141.29249062778266
Iteration: 18, Func. Count: 155, Neg. LLF: 143.6274144368991
Iteration: 19, Func. Count: 164, Neg. LLF: 141.22067109532736
Iteration: 20, Func. Count: 173, Neg. LLF: 141.1947435503646
Iteration: 21, Func. Count: 181, Neg. LLF: 141.20674208576298
Iteration: 22, Func. Count: 190, Neg. LLF: 141.1888369643387
Iteration: 23, Func. Count: 198, Neg. LLF: 141.18685937347936
Iteration: 24, Func. Count: 206, Neg. LLF: 141.18685396256865
Iteration: 25, Func. Count: 213, Neg. LLF: 141.18685396252212
Optimization terminated successfully (Exit mode 0)
Current function value: 141.18685396256865
Iterations: 25
Function evaluations: 213
Gradient evaluations: 25
Iteration: 1, Func. Count: 10, Neg. LLF: 146.10355399768068
Iteration: 2, Func. Count: 21, Neg. LLF: 148.09879317020898
Iteration: 3, Func. Count: 31, Neg. LLF: 142.18866375405824
Iteration: 4, Func. Count: 40, Neg. LLF: 142.13182662783368
Iteration: 5, Func. Count: 49, Neg. LLF: 142.0729598418038
Iteration: 6, Func. Count: 58, Neg. LLF: 141.90995069573995
Iteration: 7, Func. Count: 67, Neg. LLF: 141.80383567625194
Iteration: 8, Func. Count: 76, Neg. LLF: 141.69572273692742
Iteration: 9, Func. Count: 85, Neg. LLF: 141.63150389185148
Iteration: 10, Func. Count: 94, Neg. LLF: 141.57783920171408
Iteration: 11, Func. Count: 103, Neg. LLF: 141.52347493534302
Iteration: 12, Func. Count: 112, Neg. LLF: 141.39316417590254
Iteration: 13, Func. Count: 121, Neg. LLF: 141.3313971003674
Iteration: 14, Func. Count: 130, Neg. LLF: 141.2698680288255
Iteration: 15, Func. Count: 139, Neg. LLF: 142.11706207820856
Iteration: 16, Func. Count: 150, Neg. LLF: 141.15969007208344
Iteration: 17, Func. Count: 159, Neg. LLF: 141.65200818866137
Iteration: 18, Func. Count: 169, Neg. LLF: 141.1679786539791
Iteration: 19, Func. Count: 179, Neg. LLF: 141.14728667854445
Iteration: 20, Func. Count: 188, Neg. LLF: 141.14728472233077
Iteration: 21, Func. Count: 196, Neg. LLF: 141.1472847223324
Optimization terminated successfully (Exit mode 0)
Current function value: 141.14728472233077
Iterations: 21
Function evaluations: 196
Gradient evaluations: 21
Iteration: 1, Func. Count: 11, Neg. LLF: 146.38334058548213
Iteration: 2, Func. Count: 23, Neg. LLF: 148.06446068851997
Iteration: 3, Func. Count: 34, Neg. LLF: 142.28960927372404
Iteration: 4, Func. Count: 44, Neg. LLF: 142.0796139330291
Iteration: 5, Func. Count: 54, Neg. LLF: 141.98653285015516
Iteration: 6, Func. Count: 64, Neg. LLF: 141.9198799808227
Iteration: 7, Func. Count: 74, Neg. LLF: 141.85620427743754
Iteration: 8, Func. Count: 84, Neg. LLF: 141.79382212806908
Iteration: 9, Func. Count: 94, Neg. LLF: 141.75813260967826
Iteration: 10, Func. Count: 104, Neg. LLF: 141.69947627095289
Iteration: 11, Func. Count: 114, Neg. LLF: 141.60269814688758
Iteration: 12, Func. Count: 124, Neg. LLF: 141.37388930421585
Iteration: 13, Func. Count: 134, Neg. LLF: 141.40770410491277
Iteration: 14, Func. Count: 145, Neg. LLF: 141.22518878145308
Iteration: 15, Func. Count: 155, Neg. LLF: 171.5989727965236
Iteration: 16, Func. Count: 167, Neg. LLF: 145.22352008533153
Iteration: 17, Func. Count: 178, Neg. LLF: 141.14748693495127
Iteration: 18, Func. Count: 188, Neg. LLF: 141.14733442859065
Iteration: 19, Func. Count: 198, Neg. LLF: 141.14728504089808
Iteration: 20, Func. Count: 207, Neg. LLF: 141.14728504907657
Optimization terminated successfully (Exit mode 0)
Current function value: 141.14728504089808
Iterations: 20
Function evaluations: 207
Gradient evaluations: 20
Iteration: 1, Func. Count: 8, Neg. LLF: 145.4032045698896
Iteration: 2, Func. Count: 16, Neg. LLF: 143.0821034593699
Iteration: 3, Func. Count: 24, Neg. LLF: 142.27943984713747
Iteration: 4, Func. Count: 32, Neg. LLF: 141.2515186644203
Iteration: 5, Func. Count: 39, Neg. LLF: 141.06857908952335
Iteration: 6, Func. Count: 46, Neg. LLF: 140.91832189815358
Iteration: 7, Func. Count: 53, Neg. LLF: 140.72165780840615
Iteration: 8, Func. Count: 60, Neg. LLF: 140.69693462023056
Iteration: 9, Func. Count: 67, Neg. LLF: 140.695991051368
Iteration: 10, Func. Count: 74, Neg. LLF: 140.69582930707466
Iteration: 11, Func. Count: 81, Neg. LLF: 140.6958172916988
Iteration: 12, Func. Count: 88, Neg. LLF: 140.69581556834524
Iteration: 13, Func. Count: 94, Neg. LLF: 140.69581555587587
Optimization terminated successfully (Exit mode 0)
Current function value: 140.69581556834524
Iterations: 13
Function evaluations: 94
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 143.74105800051964
Iteration: 2, Func. Count: 18, Neg. LLF: 149.02289623160044
Iteration: 3, Func. Count: 27, Neg. LLF: 149.74215046521778
Iteration: 4, Func. Count: 36, Neg. LLF: 142.01028173546615
Iteration: 5, Func. Count: 44, Neg. LLF: 141.92418851187935
Iteration: 6, Func. Count: 52, Neg. LLF: 141.88903382840073
Iteration: 7, Func. Count: 60, Neg. LLF: 141.8323836322733
Iteration: 8, Func. Count: 68, Neg. LLF: 141.78395837379722
Iteration: 9, Func. Count: 76, Neg. LLF: 141.69462500656059
Iteration: 10, Func. Count: 84, Neg. LLF: 141.62141733373508
Iteration: 11, Func. Count: 92, Neg. LLF: 141.59452800369027
Iteration: 12, Func. Count: 100, Neg. LLF: 141.5915147511719
Iteration: 13, Func. Count: 108, Neg. LLF: 141.59117457652263
Iteration: 14, Func. Count: 116, Neg. LLF: 141.59116708521975
Iteration: 15, Func. Count: 123, Neg. LLF: 141.59116707344032
Optimization terminated successfully (Exit mode 0)
Current function value: 141.59116708521975
Iterations: 15
Function evaluations: 123
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 145.41302973125846
Iteration: 2, Func. Count: 21, Neg. LLF: 148.33934277672228
Iteration: 3, Func. Count: 31, Neg. LLF: 142.07964940823067
Iteration: 4, Func. Count: 40, Neg. LLF: 142.0271141171921
Iteration: 5, Func. Count: 49, Neg. LLF: 141.89613700871956
Iteration: 6, Func. Count: 58, Neg. LLF: 141.86503612679354
Iteration: 7, Func. Count: 67, Neg. LLF: 141.7770736143298
Iteration: 8, Func. Count: 76, Neg. LLF: 141.69974428647214
Iteration: 9, Func. Count: 85, Neg. LLF: 141.56672571025348
Iteration: 10, Func. Count: 94, Neg. LLF: 141.41989499145132
Iteration: 11, Func. Count: 103, Neg. LLF: 141.33579729834875
Iteration: 12, Func. Count: 112, Neg. LLF: 141.38111384286228
Iteration: 13, Func. Count: 122, Neg. LLF: 141.67617315424164
Iteration: 14, Func. Count: 132, Neg. LLF: 141.19136580273616
Iteration: 15, Func. Count: 141, Neg. LLF: 143.34035846631005
Iteration: 16, Func. Count: 153, Neg. LLF: 141.1946972982729
Iteration: 17, Func. Count: 163, Neg. LLF: 141.19164620528946
Iteration: 18, Func. Count: 173, Neg. LLF: 141.18685839154483
Iteration: 19, Func. Count: 182, Neg. LLF: 141.18685385731692
Iteration: 20, Func. Count: 190, Neg. LLF: 141.18685385726795
Optimization terminated successfully (Exit mode 0)
Current function value: 141.18685385731692
Iterations: 20
Function evaluations: 190
Gradient evaluations: 20
Iteration: 1, Func. Count: 11, Neg. LLF: 145.97292998806356
Iteration: 2, Func. Count: 23, Neg. LLF: 148.115934328183
Iteration: 3, Func. Count: 34, Neg. LLF: 142.18884064416096
Iteration: 4, Func. Count: 44, Neg. LLF: 142.1404140074721
Iteration: 5, Func. Count: 54, Neg. LLF: 142.08338129909657
Iteration: 6, Func. Count: 64, Neg. LLF: 141.92991993301553
Iteration: 7, Func. Count: 74, Neg. LLF: 141.80505500768976
Iteration: 8, Func. Count: 84, Neg. LLF: 141.69297120230087
Iteration: 9, Func. Count: 94, Neg. LLF: 141.61330221450456
Iteration: 10, Func. Count: 104, Neg. LLF: 141.55535712330277
Iteration: 11, Func. Count: 114, Neg. LLF: 141.51040523956252
Iteration: 12, Func. Count: 124, Neg. LLF: 141.39583199884282
Iteration: 13, Func. Count: 134, Neg. LLF: 141.32660656896462
Iteration: 14, Func. Count: 144, Neg. LLF: 141.27747393228745
Iteration: 15, Func. Count: 154, Neg. LLF: 141.96733843796127
Iteration: 16, Func. Count: 166, Neg. LLF: 141.1724875801184
Iteration: 17, Func. Count: 176, Neg. LLF: 142.22718108760438
Iteration: 18, Func. Count: 187, Neg. LLF: 141.1579031899503
Iteration: 19, Func. Count: 198, Neg. LLF: 141.14729219844057
Iteration: 20, Func. Count: 208, Neg. LLF: 141.14728478885533
Iteration: 21, Func. Count: 217, Neg. LLF: 141.1472847887987
Optimization terminated successfully (Exit mode 0)
Current function value: 141.14728478885533
Iterations: 21
Function evaluations: 217
Gradient evaluations: 21
Iteration: 1, Func. Count: 12, Neg. LLF: 145.89208519039298
Iteration: 2, Func. Count: 25, Neg. LLF: 148.0930362805935
Iteration: 3, Func. Count: 37, Neg. LLF: 142.38956884300765
Iteration: 4, Func. Count: 48, Neg. LLF: 142.07090249298403
Iteration: 5, Func. Count: 59, Neg. LLF: 141.97767497884468
Iteration: 6, Func. Count: 70, Neg. LLF: 141.92044420298694
Iteration: 7, Func. Count: 81, Neg. LLF: 141.8596901128076
Iteration: 8, Func. Count: 92, Neg. LLF: 141.80328107557958
Iteration: 9, Func. Count: 103, Neg. LLF: 141.76666046573362
Iteration: 10, Func. Count: 114, Neg. LLF: 141.70480653507607
Iteration: 11, Func. Count: 125, Neg. LLF: 141.68519910154842
Iteration: 12, Func. Count: 137, Neg. LLF: 144.25516742295687
Iteration: 13, Func. Count: 149, Neg. LLF: 150.55650450723851
Iteration: 14, Func. Count: 161, Neg. LLF: 158.63876202217511
Iteration: 15, Func. Count: 173, Neg. LLF: 162.59313243174785
Iteration: 16, Func. Count: 185, Neg. LLF: 149.47015762190662
Iteration: 17, Func. Count: 197, Neg. LLF: 143.0172454045831
Iteration: 18, Func. Count: 209, Neg. LLF: 141.46976540228923
Iteration: 19, Func. Count: 221, Neg. LLF: 141.54157146311698
Iteration: 20, Func. Count: 233, Neg. LLF: 141.98509936803015
Iteration: 21, Func. Count: 245, Neg. LLF: 141.21020378873882
Iteration: 22, Func. Count: 256, Neg. LLF: 141.16448478427338
Iteration: 23, Func. Count: 267, Neg. LLF: 141.15003280146266
Iteration: 24, Func. Count: 278, Neg. LLF: 141.14738912119452
Iteration: 25, Func. Count: 289, Neg. LLF: 141.1473177137684
Iteration: 26, Func. Count: 300, Neg. LLF: 141.14728557999086
Iteration: 27, Func. Count: 311, Neg. LLF: 141.1472847459773
Optimization terminated successfully (Exit mode 0)
Current function value: 141.1472847459773
Iterations: 27
Function evaluations: 311
Gradient evaluations: 27
Iteration: 1, Func. Count: 9, Neg. LLF: 144.1701875904659
Iteration: 2, Func. Count: 17, Neg. LLF: 145.7365862223668
Iteration: 3, Func. Count: 26, Neg. LLF: 141.9479908037393
Iteration: 4, Func. Count: 35, Neg. LLF: 141.47322880275152
Iteration: 5, Func. Count: 43, Neg. LLF: 141.20745720102894
Iteration: 6, Func. Count: 51, Neg. LLF: 140.92309877760405
Iteration: 7, Func. Count: 59, Neg. LLF: 140.74818865237333
Iteration: 8, Func. Count: 67, Neg. LLF: 140.6985586349584
Iteration: 9, Func. Count: 75, Neg. LLF: 140.6961952899228
Iteration: 10, Func. Count: 83, Neg. LLF: 140.69585245229584
Iteration: 11, Func. Count: 91, Neg. LLF: 140.6958292466298
Iteration: 12, Func. Count: 99, Neg. LLF: 140.69581553864214
Iteration: 13, Func. Count: 106, Neg. LLF: 140.69581582306344
Optimization terminated successfully (Exit mode 0)
Current function value: 140.69581553864214
Iterations: 13
Function evaluations: 106
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 143.72281812478187
Iteration: 2, Func. Count: 20, Neg. LLF: 149.00688271057933
Iteration: 3, Func. Count: 30, Neg. LLF: 149.92148235777583
Iteration: 4, Func. Count: 40, Neg. LLF: 142.009466387741
Iteration: 5, Func. Count: 49, Neg. LLF: 141.92429147690527
Iteration: 6, Func. Count: 58, Neg. LLF: 141.88892550543022
Iteration: 7, Func. Count: 67, Neg. LLF: 141.83299410494055
Iteration: 8, Func. Count: 76, Neg. LLF: 141.78367222211844
Iteration: 9, Func. Count: 85, Neg. LLF: 141.69664780904992
Iteration: 10, Func. Count: 94, Neg. LLF: 141.62191291590028
Iteration: 11, Func. Count: 103, Neg. LLF: 141.59502412798682
Iteration: 12, Func. Count: 112, Neg. LLF: 141.59151043936708
Iteration: 13, Func. Count: 121, Neg. LLF: 141.59117314436773
Iteration: 14, Func. Count: 130, Neg. LLF: 141.59116706810772
Iteration: 15, Func. Count: 138, Neg. LLF: 141.59116705633855
Optimization terminated successfully (Exit mode 0)
Current function value: 141.59116706810772
Iterations: 15
Function evaluations: 138
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 145.50483803556813
Iteration: 2, Func. Count: 23, Neg. LLF: 148.31087907352253
Iteration: 3, Func. Count: 34, Neg. LLF: 142.07157136060854
Iteration: 4, Func. Count: 44, Neg. LLF: 142.02007952400862
Iteration: 5, Func. Count: 54, Neg. LLF: 141.89395511606142
Iteration: 6, Func. Count: 64, Neg. LLF: 141.8634023609371
Iteration: 7, Func. Count: 74, Neg. LLF: 141.766344057378
Iteration: 8, Func. Count: 84, Neg. LLF: 141.6863716675111
Iteration: 9, Func. Count: 94, Neg. LLF: 141.55427203379867
Iteration: 10, Func. Count: 104, Neg. LLF: 141.44165489545477
Iteration: 11, Func. Count: 114, Neg. LLF: 141.3466951269498
Iteration: 12, Func. Count: 124, Neg. LLF: 142.72305667237467
Iteration: 13, Func. Count: 135, Neg. LLF: 141.50153170258616
Iteration: 14, Func. Count: 146, Neg. LLF: 141.23613419908725
Iteration: 15, Func. Count: 156, Neg. LLF: 148.90170385403815
Iteration: 16, Func. Count: 168, Neg. LLF: 141.38521634659767
Iteration: 17, Func. Count: 179, Neg. LLF: 141.29821175481916
Iteration: 18, Func. Count: 190, Neg. LLF: 141.1894802208237
Iteration: 19, Func. Count: 200, Neg. LLF: 141.18713741333832
Iteration: 20, Func. Count: 210, Neg. LLF: 141.18687625593708
Iteration: 21, Func. Count: 220, Neg. LLF: 141.1868551285022
Iteration: 22, Func. Count: 230, Neg. LLF: 141.18685389681386
Iteration: 23, Func. Count: 239, Neg. LLF: 141.18685389689898
Optimization terminated successfully (Exit mode 0)
Current function value: 141.18685389681386
Iterations: 23
Function evaluations: 239
Gradient evaluations: 23
Iteration: 1, Func. Count: 12, Neg. LLF: 146.0310806572019
Iteration: 2, Func. Count: 25, Neg. LLF: 148.09143994182637
Iteration: 3, Func. Count: 37, Neg. LLF: 142.16941523383235
Iteration: 4, Func. Count: 48, Neg. LLF: 142.11202185518798
Iteration: 5, Func. Count: 59, Neg. LLF: 142.0566157708024
Iteration: 6, Func. Count: 70, Neg. LLF: 141.89007062860884
Iteration: 7, Func. Count: 81, Neg. LLF: 141.78805020701472
Iteration: 8, Func. Count: 92, Neg. LLF: 141.68369751766417
Iteration: 9, Func. Count: 103, Neg. LLF: 141.62587408843297
Iteration: 10, Func. Count: 114, Neg. LLF: 141.56907026580512
Iteration: 11, Func. Count: 125, Neg. LLF: 141.5106822726961
Iteration: 12, Func. Count: 136, Neg. LLF: 141.38323256979714
Iteration: 13, Func. Count: 147, Neg. LLF: 141.31374475907342
Iteration: 14, Func. Count: 158, Neg. LLF: 142.71720565576757
Iteration: 15, Func. Count: 170, Neg. LLF: 141.62401602199913
Iteration: 16, Func. Count: 182, Neg. LLF: 141.15018909825056
Iteration: 17, Func. Count: 193, Neg. LLF: 141.17834061009455
Iteration: 18, Func. Count: 205, Neg. LLF: 141.14744720101532
Iteration: 19, Func. Count: 216, Neg. LLF: 141.14728814933517
Iteration: 20, Func. Count: 227, Neg. LLF: 141.14728800770055
Iteration: 21, Func. Count: 238, Neg. LLF: 141.1472848659995
Optimization terminated successfully (Exit mode 0)
Current function value: 141.14728486584718
Iterations: 21
Function evaluations: 238
Gradient evaluations: 21
Iteration: 1, Func. Count: 13, Neg. LLF: 145.93671988716707
Iteration: 2, Func. Count: 27, Neg. LLF: 148.06581749525668
Iteration: 3, Func. Count: 40, Neg. LLF: 142.350903768986
Iteration: 4, Func. Count: 52, Neg. LLF: 142.06897858394623
Iteration: 5, Func. Count: 64, Neg. LLF: 141.9780996986941
Iteration: 6, Func. Count: 76, Neg. LLF: 141.91791110395823
Iteration: 7, Func. Count: 88, Neg. LLF: 141.85797333627843
Iteration: 8, Func. Count: 100, Neg. LLF: 141.80199716819132
Iteration: 9, Func. Count: 112, Neg. LLF: 141.76556975775924
Iteration: 10, Func. Count: 124, Neg. LLF: 141.70257886863573
Iteration: 11, Func. Count: 136, Neg. LLF: 141.65857389519894
Iteration: 12, Func. Count: 148, Neg. LLF: 141.34758867944626
Iteration: 13, Func. Count: 160, Neg. LLF: 141.54307068236477
Iteration: 14, Func. Count: 173, Neg. LLF: 141.75542729842613
Iteration: 15, Func. Count: 186, Neg. LLF: 141.16612215272028
Iteration: 16, Func. Count: 198, Neg. LLF: 141.1624679567831
Iteration: 17, Func. Count: 211, Neg. LLF: 141.15360386339532
Iteration: 18, Func. Count: 224, Neg. LLF: 141.14735494181656
Iteration: 19, Func. Count: 236, Neg. LLF: 141.14728496321
Iteration: 20, Func. Count: 247, Neg. LLF: 141.14728497153462
Optimization terminated successfully (Exit mode 0)
Current function value: 141.14728496321
Iterations: 20
Function evaluations: 247
Gradient evaluations: 20
Iteration: 1, Func. Count: 10, Neg. LLF: 144.12915142694635
Iteration: 2, Func. Count: 19, Neg. LLF: 145.78026022000225
Iteration: 3, Func. Count: 29, Neg. LLF: 141.93346212229224
Iteration: 4, Func. Count: 39, Neg. LLF: 141.4997608470675
Iteration: 5, Func. Count: 48, Neg. LLF: 141.2477685115504
Iteration: 6, Func. Count: 57, Neg. LLF: 140.95238432723335
Iteration: 7, Func. Count: 66, Neg. LLF: 140.7668928931351
Iteration: 8, Func. Count: 75, Neg. LLF: 140.71292667263256
Iteration: 9, Func. Count: 84, Neg. LLF: 140.69677811888252
Iteration: 10, Func. Count: 93, Neg. LLF: 140.6959198136268
Iteration: 11, Func. Count: 102, Neg. LLF: 140.6958476057048
Iteration: 12, Func. Count: 111, Neg. LLF: 140.69581548417443
Iteration: 13, Func. Count: 119, Neg. LLF: 140.69581573504772
Optimization terminated successfully (Exit mode 0)
Current function value: 140.69581548417443
Iterations: 13
Function evaluations: 119
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 143.6811909166861
Iteration: 2, Func. Count: 22, Neg. LLF: 149.0125556606955
Iteration: 3, Func. Count: 33, Neg. LLF: 149.9991668613166
Iteration: 4, Func. Count: 44, Neg. LLF: 142.01099025930148
Iteration: 5, Func. Count: 54, Neg. LLF: 141.92413606456535
Iteration: 6, Func. Count: 64, Neg. LLF: 141.88851087019
Iteration: 7, Func. Count: 74, Neg. LLF: 141.83327128475102
Iteration: 8, Func. Count: 84, Neg. LLF: 141.7840914509343
Iteration: 9, Func. Count: 94, Neg. LLF: 141.6977405773164
Iteration: 10, Func. Count: 104, Neg. LLF: 141.6213605380306
Iteration: 11, Func. Count: 114, Neg. LLF: 141.59531815065446
Iteration: 12, Func. Count: 124, Neg. LLF: 141.5915040514454
Iteration: 13, Func. Count: 134, Neg. LLF: 141.59117258993004
Iteration: 14, Func. Count: 144, Neg. LLF: 141.5911671033545
Iteration: 15, Func. Count: 153, Neg. LLF: 141.59116709158693
Optimization terminated successfully (Exit mode 0)
Current function value: 141.5911671033545
Iterations: 15
Function evaluations: 153
Gradient evaluations: 15
Iteration: 1, Func. Count: 12, Neg. LLF: 145.58412603110176
Iteration: 2, Func. Count: 25, Neg. LLF: 148.2996882868491
Iteration: 3, Func. Count: 37, Neg. LLF: 142.06805594186554
Iteration: 4, Func. Count: 48, Neg. LLF: 142.01642908240765
Iteration: 5, Func. Count: 59, Neg. LLF: 141.89262828175808
Iteration: 6, Func. Count: 70, Neg. LLF: 141.86320681557746
Iteration: 7, Func. Count: 81, Neg. LLF: 141.75577996006228
Iteration: 8, Func. Count: 92, Neg. LLF: 141.6720869799692
Iteration: 9, Func. Count: 103, Neg. LLF: 141.59213047387263
Iteration: 10, Func. Count: 114, Neg. LLF: 143.53230708973476
Iteration: 11, Func. Count: 126, Neg. LLF: 141.5199130590768
Iteration: 12, Func. Count: 138, Neg. LLF: 141.35487428684743
Iteration: 13, Func. Count: 149, Neg. LLF: 141.299054419679
Iteration: 14, Func. Count: 160, Neg. LLF: 142.63265503120823
Iteration: 15, Func. Count: 172, Neg. LLF: 141.28776532347533
Iteration: 16, Func. Count: 184, Neg. LLF: 141.19793578013346
Iteration: 17, Func. Count: 195, Neg. LLF: 141.19523005352713
Iteration: 18, Func. Count: 206, Neg. LLF: 141.2016428314385
Iteration: 19, Func. Count: 218, Neg. LLF: 141.18742616947995
Iteration: 20, Func. Count: 229, Neg. LLF: 141.18686669118557
Iteration: 21, Func. Count: 240, Neg. LLF: 141.18685448431197
Iteration: 22, Func. Count: 251, Neg. LLF: 141.18685386422894
Optimization terminated successfully (Exit mode 0)
Current function value: 141.18685386422894
Iterations: 22
Function evaluations: 251
Gradient evaluations: 22
Iteration: 1, Func. Count: 13, Neg. LLF: 146.1047035614068
Iteration: 2, Func. Count: 27, Neg. LLF: 148.08227960390136
Iteration: 3, Func. Count: 40, Neg. LLF: 142.1612376374587
Iteration: 4, Func. Count: 52, Neg. LLF: 142.09820521394522
Iteration: 5, Func. Count: 64, Neg. LLF: 142.0436414556224
Iteration: 6, Func. Count: 76, Neg. LLF: 141.86787872240654
Iteration: 7, Func. Count: 88, Neg. LLF: 141.77629147071985
Iteration: 8, Func. Count: 100, Neg. LLF: 141.68028486418405
Iteration: 9, Func. Count: 112, Neg. LLF: 141.63488656530893
Iteration: 10, Func. Count: 124, Neg. LLF: 141.56874990105717
Iteration: 11, Func. Count: 136, Neg. LLF: 141.49338412685213
Iteration: 12, Func. Count: 148, Neg. LLF: 141.43173712393224
Iteration: 13, Func. Count: 160, Neg. LLF: 141.38465463406357
Iteration: 14, Func. Count: 172, Neg. LLF: 145.1777337443689
Iteration: 15, Func. Count: 186, Neg. LLF: 141.29272836055128
Iteration: 16, Func. Count: 198, Neg. LLF: 141.84813606330104
Iteration: 17, Func. Count: 211, Neg. LLF: 141.19527661601603
Iteration: 18, Func. Count: 223, Neg. LLF: 141.24897838036364
Iteration: 19, Func. Count: 236, Neg. LLF: 141.50152620338383
Iteration: 20, Func. Count: 249, Neg. LLF: 141.1482322139808
Iteration: 21, Func. Count: 261, Neg. LLF: 141.14728935960977
Iteration: 22, Func. Count: 273, Neg. LLF: 141.14728499937075
Iteration: 23, Func. Count: 284, Neg. LLF: 141.14728499955743
Optimization terminated successfully (Exit mode 0)
Current function value: 141.14728499937075
Iterations: 23
Function evaluations: 284
Gradient evaluations: 23
Iteration: 1, Func. Count: 14, Neg. LLF: 145.9352734524447
Iteration: 2, Func. Count: 29, Neg. LLF: 148.05833241625646
Iteration: 3, Func. Count: 43, Neg. LLF: 142.33702184336195
Iteration: 4, Func. Count: 56, Neg. LLF: 142.06833519958516
Iteration: 5, Func. Count: 69, Neg. LLF: 141.9781576645089
Iteration: 6, Func. Count: 82, Neg. LLF: 141.91687241301938
Iteration: 7, Func. Count: 95, Neg. LLF: 141.85712057026169
Iteration: 8, Func. Count: 108, Neg. LLF: 141.8011026271629
Iteration: 9, Func. Count: 121, Neg. LLF: 141.76465685658496
Iteration: 10, Func. Count: 134, Neg. LLF: 141.70099294174096
Iteration: 11, Func. Count: 147, Neg. LLF: 141.65017405715767
Iteration: 12, Func. Count: 160, Neg. LLF: 141.3576292809389
Iteration: 13, Func. Count: 173, Neg. LLF: 141.6068918582787
Iteration: 14, Func. Count: 187, Neg. LLF: 141.5716949570537
Iteration: 15, Func. Count: 201, Neg. LLF: 141.15887764653905
Iteration: 16, Func. Count: 214, Neg. LLF: 141.47545520024323
Iteration: 17, Func. Count: 229, Neg. LLF: 141.15694961818627
Iteration: 18, Func. Count: 243, Neg. LLF: 141.14755996809532
Iteration: 19, Func. Count: 256, Neg. LLF: 141.1472885233551
Iteration: 20, Func. Count: 269, Neg. LLF: 141.14728475887588
Iteration: 21, Func. Count: 281, Neg. LLF: 141.1472847670939
Optimization terminated successfully (Exit mode 0)
Current function value: 141.14728475887588
Iterations: 21
Function evaluations: 281
Gradient evaluations: 21
Iteration: 1, Func. Count: 7, Neg. LLF: 143.03784563665462
Iteration: 2, Func. Count: 13, Neg. LLF: 150.7641430213029
Iteration: 3, Func. Count: 20, Neg. LLF: 142.05647082456127
Iteration: 4, Func. Count: 26, Neg. LLF: 141.55909877642534
Iteration: 5, Func. Count: 32, Neg. LLF: 141.5114776500357
Iteration: 6, Func. Count: 38, Neg. LLF: 141.47894466504678
Iteration: 7, Func. Count: 44, Neg. LLF: 141.4775526605592
Iteration: 8, Func. Count: 50, Neg. LLF: 141.47751869647118
Iteration: 9, Func. Count: 55, Neg. LLF: 141.47751899370502
Optimization terminated successfully (Exit mode 0)
Current function value: 141.47751869647118
Iterations: 9
Function evaluations: 55
Gradient evaluations: 9
Iteration: 1, Func. Count: 8, Neg. LLF: 143.86612081420907
Iteration: 2, Func. Count: 16, Neg. LLF: 142.67317635315797
Iteration: 3, Func. Count: 23, Neg. LLF: 142.6761940061195
Iteration: 4, Func. Count: 31, Neg. LLF: 142.67199088703893
Iteration: 5, Func. Count: 38, Neg. LLF: 142.67198017969937
Iteration: 6, Func. Count: 44, Neg. LLF: 142.6719801797016
Optimization terminated successfully (Exit mode 0)
Current function value: 142.67198017969937
Iterations: 6
Function evaluations: 44
Gradient evaluations: 6
Iteration: 1, Func. Count: 9, Neg. LLF: 142.90449811124114
Iteration: 2, Func. Count: 18, Neg. LLF: 142.67414853443157
Iteration: 3, Func. Count: 26, Neg. LLF: 142.68177827435784
Iteration: 4, Func. Count: 35, Neg. LLF: 142.67225020917172
Iteration: 5, Func. Count: 43, Neg. LLF: 142.67224868856653
Iteration: 6, Func. Count: 50, Neg. LLF: 142.67224868856937
Optimization terminated successfully (Exit mode 0)
Current function value: 142.67224868856653
Iterations: 6
Function evaluations: 50
Gradient evaluations: 6
Iteration: 1, Func. Count: 10, Neg. LLF: 151.90379009817357
Iteration: 2, Func. Count: 21, Neg. LLF: 142.67298206677972
Iteration: 3, Func. Count: 30, Neg. LLF: 142.67251326017856
Iteration: 4, Func. Count: 39, Neg. LLF: 142.6721617352218
Iteration: 5, Func. Count: 48, Neg. LLF: 142.67215955157127
Iteration: 6, Func. Count: 57, Neg. LLF: 142.67215847312016
Iteration: 7, Func. Count: 66, Neg. LLF: 142.67215371260775
Iteration: 8, Func. Count: 75, Neg. LLF: 142.67214170779997
Iteration: 9, Func. Count: 84, Neg. LLF: 142.6721018154031
Iteration: 10, Func. Count: 93, Neg. LLF: 142.672019454009
Iteration: 11, Func. Count: 102, Neg. LLF: 142.67197764034535
Iteration: 12, Func. Count: 111, Neg. LLF: 142.67189007981466
Iteration: 13, Func. Count: 120, Neg. LLF: 142.67188592241286
Iteration: 14, Func. Count: 129, Neg. LLF: 142.67187666657725
Iteration: 15, Func. Count: 138, Neg. LLF: 142.67184775178828
Iteration: 16, Func. Count: 147, Neg. LLF: 142.67176381994832
Iteration: 17, Func. Count: 156, Neg. LLF: 142.6716872891513
Iteration: 18, Func. Count: 165, Neg. LLF: 142.67158013904603
Iteration: 19, Func. Count: 174, Neg. LLF: 142.67156173349647
Iteration: 20, Func. Count: 182, Neg. LLF: 142.67156173350048
Optimization terminated successfully (Exit mode 0)
Current function value: 142.67156173349647
Iterations: 20
Function evaluations: 182
Gradient evaluations: 20
Iteration: 1, Func. Count: 11, Neg. LLF: 152.62264351466578
Iteration: 2, Func. Count: 23, Neg. LLF: 142.67325468044695
Iteration: 3, Func. Count: 33, Neg. LLF: 142.6742949375826
Iteration: 4, Func. Count: 44, Neg. LLF: 142.67220442837086
Iteration: 5, Func. Count: 53, Neg. LLF: 142.6722044284155
Optimization terminated successfully (Exit mode 0)
Current function value: 142.67220442837086
Iterations: 5
Function evaluations: 53
Gradient evaluations: 5
Iteration: 1, Func. Count: 8, Neg. LLF: 142.85790100439397
Iteration: 2, Func. Count: 15, Neg. LLF: 142.63862336448133
Iteration: 3, Func. Count: 22, Neg. LLF: 141.9077963333921
Iteration: 4, Func. Count: 29, Neg. LLF: 142.03445336898065
Iteration: 5, Func. Count: 37, Neg. LLF: 141.59277620294495
Iteration: 6, Func. Count: 44, Neg. LLF: 141.34858079355357
Iteration: 7, Func. Count: 51, Neg. LLF: 141.25563704678615
Iteration: 8, Func. Count: 58, Neg. LLF: 141.06383491140195
Iteration: 9, Func. Count: 65, Neg. LLF: 141.02951815725206
Iteration: 10, Func. Count: 72, Neg. LLF: 141.02420017593244
Iteration: 11, Func. Count: 79, Neg. LLF: 141.0239921029699
Iteration: 12, Func. Count: 86, Neg. LLF: 141.0239606651485
Iteration: 13, Func. Count: 93, Neg. LLF: 141.02395440418462
Iteration: 14, Func. Count: 99, Neg. LLF: 141.02395427366335
Optimization terminated successfully (Exit mode 0)
Current function value: 141.02395440418462
Iterations: 14
Function evaluations: 99
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 145.45084039905743
Iteration: 2, Func. Count: 19, Neg. LLF: 148.27985920610567
Iteration: 3, Func. Count: 28, Neg. LLF: 142.4335924551695
Iteration: 4, Func. Count: 36, Neg. LLF: 142.3573288549862
Iteration: 5, Func. Count: 44, Neg. LLF: 142.35511865596217
Iteration: 6, Func. Count: 52, Neg. LLF: 142.3524105713724
Iteration: 7, Func. Count: 60, Neg. LLF: 142.3513204881508
Iteration: 8, Func. Count: 68, Neg. LLF: 142.34993290676974
Iteration: 9, Func. Count: 76, Neg. LLF: 142.34704595238497
Iteration: 10, Func. Count: 84, Neg. LLF: 142.34029080047728
Iteration: 11, Func. Count: 92, Neg. LLF: 142.32275098125658
Iteration: 12, Func. Count: 100, Neg. LLF: 141.69467486182134
Iteration: 13, Func. Count: 108, Neg. LLF: 141.58601089136036
Iteration: 14, Func. Count: 116, Neg. LLF: 142.84018953533612
Iteration: 15, Func. Count: 126, Neg. LLF: 141.57780302472193
Iteration: 16, Func. Count: 134, Neg. LLF: 141.57167931193874
Iteration: 17, Func. Count: 142, Neg. LLF: 141.5702420616272
Iteration: 18, Func. Count: 150, Neg. LLF: 141.5697701761463
Iteration: 19, Func. Count: 158, Neg. LLF: 141.56974732159884
Iteration: 20, Func. Count: 166, Neg. LLF: 141.5697531733766
Iteration: 21, Func. Count: 175, Neg. LLF: 141.56975312014242
Iteration: 22, Func. Count: 185, Neg. LLF: 141.569755260694
Iteration: 23, Func. Count: 195, Neg. LLF: 141.56975304418197
Iteration: 24, Func. Count: 202, Neg. LLF: 141.56975303657248
Optimization terminated successfully (Exit mode 0)
Current function value: 141.56975304418197
Iterations: 25
Function evaluations: 202
Gradient evaluations: 24
Iteration: 1, Func. Count: 10, Neg. LLF: 145.59744489266467
Iteration: 2, Func. Count: 21, Neg. LLF: 148.31281541000308
Iteration: 3, Func. Count: 31, Neg. LLF: 142.07350058644016
Iteration: 4, Func. Count: 40, Neg. LLF: 142.01704052392623
Iteration: 5, Func. Count: 49, Neg. LLF: 141.8976529262463
Iteration: 6, Func. Count: 58, Neg. LLF: 141.87122885720075
Iteration: 7, Func. Count: 67, Neg. LLF: 141.71710100657864
Iteration: 8, Func. Count: 76, Neg. LLF: 142.50632206731692
Iteration: 9, Func. Count: 86, Neg. LLF: 141.60122521332806
Iteration: 10, Func. Count: 95, Neg. LLF: 141.50043008982698
Iteration: 11, Func. Count: 104, Neg. LLF: 141.38987234465299
Iteration: 12, Func. Count: 113, Neg. LLF: 142.99775171059702
Iteration: 13, Func. Count: 123, Neg. LLF: 144.35399536050437
Iteration: 14, Func. Count: 133, Neg. LLF: 141.8787949032778
Iteration: 15, Func. Count: 143, Neg. LLF: 141.40351550883895
Iteration: 16, Func. Count: 153, Neg. LLF: 141.49248451509806
Iteration: 17, Func. Count: 163, Neg. LLF: 141.43040348299093
Iteration: 18, Func. Count: 173, Neg. LLF: 141.19439545527428
Iteration: 19, Func. Count: 182, Neg. LLF: 142.06203849356118
Iteration: 20, Func. Count: 192, Neg. LLF: 141.18734493533188
Iteration: 21, Func. Count: 201, Neg. LLF: 141.18707442106114
Iteration: 22, Func. Count: 210, Neg. LLF: 141.1868728837044
Iteration: 23, Func. Count: 219, Neg. LLF: 141.18685616021244
Iteration: 24, Func. Count: 228, Neg. LLF: 141.18685390059983
Iteration: 25, Func. Count: 236, Neg. LLF: 141.1868539005741
Optimization terminated successfully (Exit mode 0)
Current function value: 141.18685390059983
Iterations: 25
Function evaluations: 236
Gradient evaluations: 25
Iteration: 1, Func. Count: 11, Neg. LLF: 146.15184419344342
Iteration: 2, Func. Count: 23, Neg. LLF: 148.09494366072457
Iteration: 3, Func. Count: 34, Neg. LLF: 142.1775777404644
Iteration: 4, Func. Count: 44, Neg. LLF: 142.11852136587788
Iteration: 5, Func. Count: 54, Neg. LLF: 142.0613935019585
Iteration: 6, Func. Count: 64, Neg. LLF: 141.89317526100683
Iteration: 7, Func. Count: 74, Neg. LLF: 141.7927409849181
Iteration: 8, Func. Count: 84, Neg. LLF: 141.6866866955462
Iteration: 9, Func. Count: 94, Neg. LLF: 141.63004311432698
Iteration: 10, Func. Count: 104, Neg. LLF: 141.57368486414785
Iteration: 11, Func. Count: 114, Neg. LLF: 141.51486511666755
Iteration: 12, Func. Count: 124, Neg. LLF: 141.38648218377762
Iteration: 13, Func. Count: 134, Neg. LLF: 141.31272274570156
Iteration: 14, Func. Count: 144, Neg. LLF: 143.24404234034915
Iteration: 15, Func. Count: 155, Neg. LLF: 141.60843684594195
Iteration: 16, Func. Count: 166, Neg. LLF: 141.15144574244025
Iteration: 17, Func. Count: 176, Neg. LLF: 141.18079785958707
Iteration: 18, Func. Count: 187, Neg. LLF: 141.14847369290084
Iteration: 19, Func. Count: 197, Neg. LLF: 141.14740045672153
Iteration: 20, Func. Count: 207, Neg. LLF: 141.14729728678603
Iteration: 21, Func. Count: 217, Neg. LLF: 141.14728476596764
Iteration: 22, Func. Count: 226, Neg. LLF: 141.14728476603057
Optimization terminated successfully (Exit mode 0)
Current function value: 141.14728476596764
Iterations: 22
Function evaluations: 226
Gradient evaluations: 22
Iteration: 1, Func. Count: 12, Neg. LLF: 146.59629915477043
Iteration: 2, Func. Count: 25, Neg. LLF: 148.05754589378316
Iteration: 3, Func. Count: 37, Neg. LLF: 142.25996290572988
Iteration: 4, Func. Count: 48, Neg. LLF: 142.08039559174537
Iteration: 5, Func. Count: 59, Neg. LLF: 141.9910742447454
Iteration: 6, Func. Count: 70, Neg. LLF: 141.9161949736908
Iteration: 7, Func. Count: 81, Neg. LLF: 141.85110079646512
Iteration: 8, Func. Count: 92, Neg. LLF: 141.78724745937623
Iteration: 9, Func. Count: 103, Neg. LLF: 141.7523412446924
Iteration: 10, Func. Count: 114, Neg. LLF: 141.6919617254322
Iteration: 11, Func. Count: 125, Neg. LLF: 141.57367316559657
Iteration: 12, Func. Count: 136, Neg. LLF: 141.4067397053986
Iteration: 13, Func. Count: 147, Neg. LLF: 141.42127172300016
Iteration: 14, Func. Count: 159, Neg. LLF: 141.24943776508962
Iteration: 15, Func. Count: 170, Neg. LLF: 150.2090354419164
Iteration: 16, Func. Count: 182, Neg. LLF: 142.30438586684298
Iteration: 17, Func. Count: 194, Neg. LLF: 141.14857515526677
Iteration: 18, Func. Count: 205, Neg. LLF: 141.14790273855803
Iteration: 19, Func. Count: 216, Neg. LLF: 141.14729560302393
Iteration: 20, Func. Count: 227, Neg. LLF: 141.1472851499266
Iteration: 21, Func. Count: 237, Neg. LLF: 141.14728515821903
Optimization terminated successfully (Exit mode 0)
Current function value: 141.1472851499266
Iterations: 21
Function evaluations: 237
Gradient evaluations: 21
Iteration: 1, Func. Count: 9, Neg. LLF: 146.1652654302787
Iteration: 2, Func. Count: 18, Neg. LLF: 141.7233218459247
Iteration: 3, Func. Count: 26, Neg. LLF: 141.46446359867366
Iteration: 4, Func. Count: 34, Neg. LLF: 141.45611757084646
Iteration: 5, Func. Count: 43, Neg. LLF: 142.3627410952769
Iteration: 6, Func. Count: 52, Neg. LLF: 141.45829144126907
Iteration: 7, Func. Count: 61, Neg. LLF: 140.81349341778653
Iteration: 8, Func. Count: 69, Neg. LLF: 140.72216610730473
Iteration: 9, Func. Count: 77, Neg. LLF: 140.69687089757738
Iteration: 10, Func. Count: 85, Neg. LLF: 140.69586802737723
Iteration: 11, Func. Count: 93, Neg. LLF: 140.695823657066
Iteration: 12, Func. Count: 101, Neg. LLF: 140.69581604341155
Iteration: 13, Func. Count: 109, Neg. LLF: 140.6958154754934
Optimization terminated successfully (Exit mode 0)
Current function value: 140.6958154754934
Iterations: 13
Function evaluations: 109
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 143.8432256347675
Iteration: 2, Func. Count: 20, Neg. LLF: 149.0672058614241
Iteration: 3, Func. Count: 30, Neg. LLF: 149.82291037255234
Iteration: 4, Func. Count: 40, Neg. LLF: 142.008432297519
Iteration: 5, Func. Count: 49, Neg. LLF: 141.92545981304943
Iteration: 6, Func. Count: 58, Neg. LLF: 141.8887845009316
Iteration: 7, Func. Count: 67, Neg. LLF: 141.8335831318744
Iteration: 8, Func. Count: 76, Neg. LLF: 141.78533045456265
Iteration: 9, Func. Count: 85, Neg. LLF: 141.70144045208164
Iteration: 10, Func. Count: 94, Neg. LLF: 141.62407853574447
Iteration: 11, Func. Count: 103, Neg. LLF: 141.5962423126247
Iteration: 12, Func. Count: 112, Neg. LLF: 141.59156332679228
Iteration: 13, Func. Count: 121, Neg. LLF: 141.59117336905553
Iteration: 14, Func. Count: 130, Neg. LLF: 141.59116712604944
Iteration: 15, Func. Count: 138, Neg. LLF: 141.5911671142774
Optimization terminated successfully (Exit mode 0)
Current function value: 141.59116712604944
Iterations: 15
Function evaluations: 138
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 145.3585133791316
Iteration: 2, Func. Count: 23, Neg. LLF: 148.3419790699844
Iteration: 3, Func. Count: 34, Neg. LLF: 142.0736210428509
Iteration: 4, Func. Count: 44, Neg. LLF: 142.02392091556996
Iteration: 5, Func. Count: 54, Neg. LLF: 141.89546077145036
Iteration: 6, Func. Count: 64, Neg. LLF: 141.86204184458705
Iteration: 7, Func. Count: 74, Neg. LLF: 141.78229495724366
Iteration: 8, Func. Count: 84, Neg. LLF: 141.70577207227134
Iteration: 9, Func. Count: 94, Neg. LLF: 141.58069632259293
Iteration: 10, Func. Count: 104, Neg. LLF: 141.40715884626337
Iteration: 11, Func. Count: 114, Neg. LLF: 141.3534448418355
Iteration: 12, Func. Count: 124, Neg. LLF: 141.3597658558319
Iteration: 13, Func. Count: 135, Neg. LLF: 143.4604062902951
Iteration: 14, Func. Count: 146, Neg. LLF: 141.49957890625132
Iteration: 15, Func. Count: 157, Neg. LLF: 141.2100940064454
Iteration: 16, Func. Count: 167, Neg. LLF: 141.822623335792
Iteration: 17, Func. Count: 178, Neg. LLF: 141.28137487130692
Iteration: 18, Func. Count: 189, Neg. LLF: 141.2029429537429
Iteration: 19, Func. Count: 200, Neg. LLF: 141.18689863268656
Iteration: 20, Func. Count: 210, Neg. LLF: 141.18685400629977
Iteration: 21, Func. Count: 219, Neg. LLF: 141.186854005998
Optimization terminated successfully (Exit mode 0)
Current function value: 141.18685400629977
Iterations: 21
Function evaluations: 219
Gradient evaluations: 21
Iteration: 1, Func. Count: 12, Neg. LLF: 145.9264491061408
Iteration: 2, Func. Count: 25, Neg. LLF: 148.11613537809964
Iteration: 3, Func. Count: 37, Neg. LLF: 142.1898644393787
Iteration: 4, Func. Count: 48, Neg. LLF: 142.14471110985647
Iteration: 5, Func. Count: 59, Neg. LLF: 142.08820613175376
Iteration: 6, Func. Count: 70, Neg. LLF: 141.9384129674582
Iteration: 7, Func. Count: 81, Neg. LLF: 141.80719048905246
Iteration: 8, Func. Count: 92, Neg. LLF: 141.69318743256437
Iteration: 9, Func. Count: 103, Neg. LLF: 141.60788750486125
Iteration: 10, Func. Count: 114, Neg. LLF: 141.54693709910168
Iteration: 11, Func. Count: 125, Neg. LLF: 141.5043609497851
Iteration: 12, Func. Count: 136, Neg. LLF: 141.394036149469
Iteration: 13, Func. Count: 147, Neg. LLF: 141.32080353827624
Iteration: 14, Func. Count: 158, Neg. LLF: 141.26195186682662
Iteration: 15, Func. Count: 169, Neg. LLF: 141.74447972375793
Iteration: 16, Func. Count: 182, Neg. LLF: 141.1686711346862
Iteration: 17, Func. Count: 193, Neg. LLF: 148.26219564438568
Iteration: 18, Func. Count: 206, Neg. LLF: 141.15728678184774
Iteration: 19, Func. Count: 218, Neg. LLF: 141.14735110000228
Iteration: 20, Func. Count: 229, Neg. LLF: 141.14728492876208
Iteration: 21, Func. Count: 239, Neg. LLF: 141.14728492916123
Optimization terminated successfully (Exit mode 0)
Current function value: 141.14728492876208
Iterations: 21
Function evaluations: 239
Gradient evaluations: 21
Iteration: 1, Func. Count: 13, Neg. LLF: 146.09799505941183
Iteration: 2, Func. Count: 27, Neg. LLF: 148.08637962843665
Iteration: 3, Func. Count: 40, Neg. LLF: 142.35041208637256
Iteration: 4, Func. Count: 52, Neg. LLF: 142.0734578593794
Iteration: 5, Func. Count: 64, Neg. LLF: 141.98088328930191
Iteration: 6, Func. Count: 76, Neg. LLF: 141.91888296639266
Iteration: 7, Func. Count: 88, Neg. LLF: 141.85713189397535
Iteration: 8, Func. Count: 100, Neg. LLF: 141.79984579732195
Iteration: 9, Func. Count: 112, Neg. LLF: 141.7637642372827
Iteration: 10, Func. Count: 124, Neg. LLF: 141.7029064842092
Iteration: 11, Func. Count: 136, Neg. LLF: 141.65178459467904
Iteration: 12, Func. Count: 148, Neg. LLF: 141.33462916290202
Iteration: 13, Func. Count: 160, Neg. LLF: 141.39502616990424
Iteration: 14, Func. Count: 173, Neg. LLF: 141.9068857335075
Iteration: 15, Func. Count: 186, Neg. LLF: 141.16665197705922
Iteration: 16, Func. Count: 198, Neg. LLF: 141.15038504609632
Iteration: 17, Func. Count: 210, Neg. LLF: 141.1555898506776
Iteration: 18, Func. Count: 223, Neg. LLF: 141.14736975843928
Iteration: 19, Func. Count: 235, Neg. LLF: 141.1472854127656
Iteration: 20, Func. Count: 247, Neg. LLF: 141.14728477110364
Optimization terminated successfully (Exit mode 0)
Current function value: 141.14728477110364
Iterations: 20
Function evaluations: 247
Gradient evaluations: 20
Iteration: 1, Func. Count: 10, Neg. LLF: 141.2842528165639
Iteration: 2, Func. Count: 19, Neg. LLF: 142.50852507293848
Iteration: 3, Func. Count: 29, Neg. LLF: 140.02530848741517
Iteration: 4, Func. Count: 39, Neg. LLF: 139.67407002931023
Iteration: 5, Func. Count: 48, Neg. LLF: 139.33857162530012
Iteration: 6, Func. Count: 57, Neg. LLF: 163.7680819098616
Iteration: 7, Func. Count: 69, Neg. LLF: 139.23823383719053
Iteration: 8, Func. Count: 78, Neg. LLF: 139.21594529521118
Iteration: 9, Func. Count: 87, Neg. LLF: 139.21492468586237
Iteration: 10, Func. Count: 96, Neg. LLF: 139.2147987452139
Iteration: 11, Func. Count: 105, Neg. LLF: 139.21479300870564
Iteration: 12, Func. Count: 113, Neg. LLF: 139.2147927389061
Optimization terminated successfully (Exit mode 0)
Current function value: 139.21479300870564
Iterations: 12
Function evaluations: 113
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 140.32788395789987
Iteration: 2, Func. Count: 21, Neg. LLF: 141.63238597925155
Iteration: 3, Func. Count: 32, Neg. LLF: 139.46545205915447
Iteration: 4, Func. Count: 42, Neg. LLF: 139.4383374860774
Iteration: 5, Func. Count: 52, Neg. LLF: 139.35024321009703
Iteration: 6, Func. Count: 62, Neg. LLF: 139.28701965741226
Iteration: 7, Func. Count: 72, Neg. LLF: 139.23512579055566
Iteration: 8, Func. Count: 82, Neg. LLF: 140.99827903129292
Iteration: 9, Func. Count: 94, Neg. LLF: 139.2155006136417
Iteration: 10, Func. Count: 104, Neg. LLF: 139.21482285074632
Iteration: 11, Func. Count: 114, Neg. LLF: 139.21479345921284
Iteration: 12, Func. Count: 124, Neg. LLF: 139.2147926446381
Optimization terminated successfully (Exit mode 0)
Current function value: 139.2147926446381
Iterations: 12
Function evaluations: 124
Gradient evaluations: 12
Iteration: 1, Func. Count: 12, Neg. LLF: 141.27934940880576
Iteration: 2, Func. Count: 23, Neg. LLF: 140.1412594116639
Iteration: 3, Func. Count: 34, Neg. LLF: 141.84573409131428
Iteration: 4, Func. Count: 46, Neg. LLF: 139.48351807284112
Iteration: 5, Func. Count: 57, Neg. LLF: 139.3934530315379
Iteration: 6, Func. Count: 68, Neg. LLF: 139.34668524891975
Iteration: 7, Func. Count: 79, Neg. LLF: 139.25856526279958
Iteration: 8, Func. Count: 90, Neg. LLF: 139.87110842173706
Iteration: 9, Func. Count: 102, Neg. LLF: 139.3006874640834
Iteration: 10, Func. Count: 114, Neg. LLF: 139.21483494540436
Iteration: 11, Func. Count: 125, Neg. LLF: 139.21479550412943
Iteration: 12, Func. Count: 136, Neg. LLF: 139.21479346089046
Iteration: 13, Func. Count: 147, Neg. LLF: 139.21479262585686
Optimization terminated successfully (Exit mode 0)
Current function value: 139.21479262585686
Iterations: 13
Function evaluations: 147
Gradient evaluations: 13
Iteration: 1, Func. Count: 13, Neg. LLF: 141.26831807410818
Iteration: 2, Func. Count: 25, Neg. LLF: 139.93922154651875
Iteration: 3, Func. Count: 37, Neg. LLF: 142.23567388217108
Iteration: 4, Func. Count: 50, Neg. LLF: 139.514119712712
Iteration: 5, Func. Count: 63, Neg. LLF: 139.39574472295644
Iteration: 6, Func. Count: 75, Neg. LLF: 139.2726584487923
Iteration: 7, Func. Count: 87, Neg. LLF: 166.509834223766
Iteration: 8, Func. Count: 102, Neg. LLF: 139.23293940601113
Iteration: 9, Func. Count: 114, Neg. LLF: 139.2162491128364
Iteration: 10, Func. Count: 126, Neg. LLF: 139.21515553414767
Iteration: 11, Func. Count: 138, Neg. LLF: 139.2148678754588
Iteration: 12, Func. Count: 150, Neg. LLF: 139.21479690829233
Iteration: 13, Func. Count: 162, Neg. LLF: 139.21479267712934
Iteration: 14, Func. Count: 173, Neg. LLF: 139.2147928283347
Optimization terminated successfully (Exit mode 0)
Current function value: 139.21479267712934
Iterations: 14
Function evaluations: 173
Gradient evaluations: 14
Iteration: 1, Func. Count: 14, Neg. LLF: 141.262132448221
Iteration: 2, Func. Count: 27, Neg. LLF: 139.85774713204722
Iteration: 3, Func. Count: 40, Neg. LLF: 142.4837273220094
Iteration: 4, Func. Count: 54, Neg. LLF: 139.43484885769837
Iteration: 5, Func. Count: 67, Neg. LLF: 139.39367711104944
Iteration: 6, Func. Count: 80, Neg. LLF: 139.25666710236047
Iteration: 7, Func. Count: 93, Neg. LLF: 139.28925095107024
Iteration: 8, Func. Count: 107, Neg. LLF: 139.28684099396128
Iteration: 9, Func. Count: 121, Neg. LLF: 139.21502581749428
Iteration: 10, Func. Count: 134, Neg. LLF: 139.21480219451757
Iteration: 11, Func. Count: 147, Neg. LLF: 139.2147931196515
Iteration: 12, Func. Count: 159, Neg. LLF: 139.21479313780895
Optimization terminated successfully (Exit mode 0)
Current function value: 139.2147931196515
Iterations: 12
Function evaluations: 159
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 141.32283209557852
Iteration: 2, Func. Count: 21, Neg. LLF: 142.62677390013923
Iteration: 3, Func. Count: 32, Neg. LLF: 140.02751098985766
Iteration: 4, Func. Count: 43, Neg. LLF: 139.6814387640141
Iteration: 5, Func. Count: 53, Neg. LLF: 139.34781586117927
Iteration: 6, Func. Count: 63, Neg. LLF: 160.4897288921762
Iteration: 7, Func. Count: 75, Neg. LLF: 139.32248753857218
Iteration: 8, Func. Count: 85, Neg. LLF: 139.2181888476838
Iteration: 9, Func. Count: 95, Neg. LLF: 139.21500108269987
Iteration: 10, Func. Count: 105, Neg. LLF: 139.21480877451438
Iteration: 11, Func. Count: 115, Neg. LLF: 139.21479341657192
Iteration: 12, Func. Count: 125, Neg. LLF: 139.21479262499892
Optimization terminated successfully (Exit mode 0)
Current function value: 139.21479262499892
Iterations: 12
Function evaluations: 125
Gradient evaluations: 12
Iteration: 1, Func. Count: 12, Neg. LLF: 140.33256071660867
Iteration: 2, Func. Count: 23, Neg. LLF: 141.6330707646295
Iteration: 3, Func. Count: 35, Neg. LLF: 139.47330562626243
Iteration: 4, Func. Count: 46, Neg. LLF: 139.44505760597164
Iteration: 5, Func. Count: 57, Neg. LLF: 139.3521934721602
Iteration: 6, Func. Count: 68, Neg. LLF: 139.2921430011501
Iteration: 7, Func. Count: 79, Neg. LLF: 139.23633718294144
Iteration: 8, Func. Count: 90, Neg. LLF: 140.64024377788158
Iteration: 9, Func. Count: 103, Neg. LLF: 139.21566670528173
Iteration: 10, Func. Count: 114, Neg. LLF: 139.21483371783748
Iteration: 11, Func. Count: 125, Neg. LLF: 139.21479370676775
Iteration: 12, Func. Count: 136, Neg. LLF: 139.2147926518131
Iteration: 13, Func. Count: 146, Neg. LLF: 139.21479273609046
Optimization terminated successfully (Exit mode 0)
Current function value: 139.2147926518131
Iterations: 13
Function evaluations: 146
Gradient evaluations: 13
Iteration: 1, Func. Count: 13, Neg. LLF: 141.28494362153015
Iteration: 2, Func. Count: 25, Neg. LLF: 140.14798246496315
Iteration: 3, Func. Count: 37, Neg. LLF: 141.85648949313466
Iteration: 4, Func. Count: 50, Neg. LLF: 139.4826097524954
Iteration: 5, Func. Count: 62, Neg. LLF: 139.39355483910325
Iteration: 6, Func. Count: 74, Neg. LLF: 139.34596052865558
Iteration: 7, Func. Count: 86, Neg. LLF: 139.2584896731978
Iteration: 8, Func. Count: 98, Neg. LLF: 139.81766698613956
Iteration: 9, Func. Count: 111, Neg. LLF: 139.30315595093373
Iteration: 10, Func. Count: 124, Neg. LLF: 139.21483944546813
Iteration: 11, Func. Count: 136, Neg. LLF: 139.21479574889946
Iteration: 12, Func. Count: 148, Neg. LLF: 139.2147935264835
Iteration: 13, Func. Count: 160, Neg. LLF: 139.21479262731017
Optimization terminated successfully (Exit mode 0)
Current function value: 139.21479262731017
Iterations: 13
Function evaluations: 160
Gradient evaluations: 13
Iteration: 1, Func. Count: 14, Neg. LLF: 141.27627356750068
Iteration: 2, Func. Count: 27, Neg. LLF: 139.9465857677405
Iteration: 3, Func. Count: 40, Neg. LLF: 142.22844564627667
Iteration: 4, Func. Count: 54, Neg. LLF: 139.5115654134059
Iteration: 5, Func. Count: 68, Neg. LLF: 139.39515475656953
Iteration: 6, Func. Count: 81, Neg. LLF: 139.2716540610866
Iteration: 7, Func. Count: 94, Neg. LLF: 166.57345788264402
Iteration: 8, Func. Count: 110, Neg. LLF: 139.23460488299426
Iteration: 9, Func. Count: 123, Neg. LLF: 139.21637047034537
Iteration: 10, Func. Count: 136, Neg. LLF: 139.21521851427028
Iteration: 11, Func. Count: 149, Neg. LLF: 139.21486906936775
Iteration: 12, Func. Count: 162, Neg. LLF: 139.2148013253233
Iteration: 13, Func. Count: 175, Neg. LLF: 139.2147927216166
Iteration: 14, Func. Count: 187, Neg. LLF: 139.21479287283674
Optimization terminated successfully (Exit mode 0)
Current function value: 139.2147927216166
Iterations: 14
Function evaluations: 187
Gradient evaluations: 14
Iteration: 1, Func. Count: 15, Neg. LLF: 141.27094843161447
Iteration: 2, Func. Count: 29, Neg. LLF: 139.86566461771253
Iteration: 3, Func. Count: 43, Neg. LLF: 142.49476250587043
Iteration: 4, Func. Count: 58, Neg. LLF: 139.4354242557149
Iteration: 5, Func. Count: 72, Neg. LLF: 139.39574750735855
Iteration: 6, Func. Count: 86, Neg. LLF: 139.2595683030915
Iteration: 7, Func. Count: 100, Neg. LLF: 139.26036547851956
Iteration: 8, Func. Count: 115, Neg. LLF: 139.27124018716046
Iteration: 9, Func. Count: 130, Neg. LLF: 139.21504819757914
Iteration: 10, Func. Count: 144, Neg. LLF: 139.21480926060286
Iteration: 11, Func. Count: 158, Neg. LLF: 139.21479492059444
Iteration: 12, Func. Count: 172, Neg. LLF: 139.2147932296428
Iteration: 13, Func. Count: 186, Neg. LLF: 139.214792655881
Optimization terminated successfully (Exit mode 0)
Current function value: 139.214792655881
Iterations: 13
Function evaluations: 186
Gradient evaluations: 13
Iteration: 1, Func. Count: 8, Neg. LLF: 144.39587533993785
Iteration: 2, Func. Count: 15, Neg. LLF: 148.56805872875313
Iteration: 3, Func. Count: 23, Neg. LLF: 142.17406759516945
Iteration: 4, Func. Count: 30, Neg. LLF: 141.82689358479251
Iteration: 5, Func. Count: 37, Neg. LLF: 141.6033169547275
Iteration: 6, Func. Count: 44, Neg. LLF: 141.497055999507
Iteration: 7, Func. Count: 51, Neg. LLF: 141.47963118694733
Iteration: 8, Func. Count: 58, Neg. LLF: 141.47754395982946
Iteration: 9, Func. Count: 65, Neg. LLF: 141.47751860164396
Iteration: 10, Func. Count: 71, Neg. LLF: 141.47751894774385
Optimization terminated successfully (Exit mode 0)
Current function value: 141.47751860164396
Iterations: 10
Function evaluations: 71
Gradient evaluations: 10
Iteration: 1, Func. Count: 9, Neg. LLF: 149.185616261572
Iteration: 2, Func. Count: 19, Neg. LLF: 142.67294352813914
Iteration: 3, Func. Count: 27, Neg. LLF: 142.67324674903563
Iteration: 4, Func. Count: 36, Neg. LLF: 142.6721024612503
Iteration: 5, Func. Count: 44, Neg. LLF: 142.67197794492364
Iteration: 6, Func. Count: 51, Neg. LLF: 142.67197794492702
Optimization terminated successfully (Exit mode 0)
Current function value: 142.67197794492364
Iterations: 6
Function evaluations: 51
Gradient evaluations: 6
Iteration: 1, Func. Count: 10, Neg. LLF: 151.1755813633944
Iteration: 2, Func. Count: 21, Neg. LLF: 142.67331515247918
Iteration: 3, Func. Count: 30, Neg. LLF: 142.67292033495755
Iteration: 4, Func. Count: 39, Neg. LLF: 142.67236415479593
Iteration: 5, Func. Count: 48, Neg. LLF: 142.67227102032325
Iteration: 6, Func. Count: 57, Neg. LLF: 142.6722544720373
Iteration: 7, Func. Count: 65, Neg. LLF: 142.67225447207417
Optimization terminated successfully (Exit mode 0)
Current function value: 142.6722544720373
Iterations: 7
Function evaluations: 65
Gradient evaluations: 7
Iteration: 1, Func. Count: 11, Neg. LLF: 169.28258746669485
Iteration: 2, Func. Count: 23, Neg. LLF: 142.6732450094019
Iteration: 3, Func. Count: 33, Neg. LLF: 142.67309024165397
Iteration: 4, Func. Count: 44, Neg. LLF: 142.67214458994684
Iteration: 5, Func. Count: 54, Neg. LLF: 142.67214349718242
Iteration: 6, Func. Count: 64, Neg. LLF: 142.6721373876473
Iteration: 7, Func. Count: 74, Neg. LLF: 142.67210276835968
Iteration: 8, Func. Count: 84, Neg. LLF: 142.67179099487683
Iteration: 9, Func. Count: 94, Neg. LLF: 142.6717842271629
Iteration: 10, Func. Count: 104, Neg. LLF: 142.6717422284077
Iteration: 11, Func. Count: 114, Neg. LLF: 142.67163716032545
Iteration: 12, Func. Count: 124, Neg. LLF: 142.6716032143983
Iteration: 13, Func. Count: 134, Neg. LLF: 142.6715659512033
Iteration: 14, Func. Count: 143, Neg. LLF: 142.67156595120403
Optimization terminated successfully (Exit mode 0)
Current function value: 142.6715659512033
Iterations: 14
Function evaluations: 143
Gradient evaluations: 14
Iteration: 1, Func. Count: 12, Neg. LLF: 165.28688493417062
Iteration: 2, Func. Count: 25, Neg. LLF: 142.6733828783205
Iteration: 3, Func. Count: 36, Neg. LLF: 142.67453859496248
Iteration: 4, Func. Count: 48, Neg. LLF: 142.67217462557682
Iteration: 5, Func. Count: 58, Neg. LLF: 142.6721746256151
Optimization terminated successfully (Exit mode 0)
Current function value: 142.67217462557682
Iterations: 5
Function evaluations: 58
Gradient evaluations: 5
Iteration: 1, Func. Count: 9, Neg. LLF: 143.1042423475683
Iteration: 2, Func. Count: 17, Neg. LLF: 145.74894943570422
Iteration: 3, Func. Count: 26, Neg. LLF: 142.30704145770196
Iteration: 4, Func. Count: 34, Neg. LLF: 141.90001442054722
Iteration: 5, Func. Count: 42, Neg. LLF: 141.82128541608796
Iteration: 6, Func. Count: 51, Neg. LLF: 141.29732565679365
Iteration: 7, Func. Count: 59, Neg. LLF: 141.03699927935455
Iteration: 8, Func. Count: 67, Neg. LLF: 141.02909240996468
Iteration: 9, Func. Count: 75, Neg. LLF: 141.0240386578607
Iteration: 10, Func. Count: 83, Neg. LLF: 141.0239730452823
Iteration: 11, Func. Count: 91, Neg. LLF: 141.02395546789
Iteration: 12, Func. Count: 99, Neg. LLF: 141.0239545712225
Optimization terminated successfully (Exit mode 0)
Current function value: 141.0239545712225
Iterations: 12
Function evaluations: 99
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 145.45673851317065
Iteration: 2, Func. Count: 21, Neg. LLF: 148.27647900254016
Iteration: 3, Func. Count: 31, Neg. LLF: 142.43799966595984
Iteration: 4, Func. Count: 40, Neg. LLF: 142.35757989603368
Iteration: 5, Func. Count: 49, Neg. LLF: 142.35526636569833
Iteration: 6, Func. Count: 58, Neg. LLF: 142.35229759425349
Iteration: 7, Func. Count: 67, Neg. LLF: 142.35129568784657
Iteration: 8, Func. Count: 76, Neg. LLF: 142.3498503880275
Iteration: 9, Func. Count: 85, Neg. LLF: 142.34697693301072
Iteration: 10, Func. Count: 94, Neg. LLF: 142.33992998889994
Iteration: 11, Func. Count: 103, Neg. LLF: 142.32133652583514
Iteration: 12, Func. Count: 112, Neg. LLF: 141.69323345255353
Iteration: 13, Func. Count: 121, Neg. LLF: 141.61085289924947
Iteration: 14, Func. Count: 130, Neg. LLF: 142.97517575874085
Iteration: 15, Func. Count: 140, Neg. LLF: 141.57733445614986
Iteration: 16, Func. Count: 149, Neg. LLF: 141.57157024847493
Iteration: 17, Func. Count: 158, Neg. LLF: 141.56989586634012
Iteration: 18, Func. Count: 167, Neg. LLF: 141.56978574170614
Iteration: 19, Func. Count: 176, Neg. LLF: 141.56972443066385
Iteration: 20, Func. Count: 185, Neg. LLF: 141.56975155187092
Iteration: 21, Func. Count: 195, Neg. LLF: 141.5697557944964
Iteration: 22, Func. Count: 205, Neg. LLF: 141.56975303265685
Iteration: 23, Func. Count: 213, Neg. LLF: 141.56975302507968
Optimization terminated successfully (Exit mode 0)
Current function value: 141.56975303265685
Iterations: 23
Function evaluations: 213
Gradient evaluations: 23
Iteration: 1, Func. Count: 11, Neg. LLF: 145.60465675830392
Iteration: 2, Func. Count: 23, Neg. LLF: 148.3095560100963
Iteration: 3, Func. Count: 34, Neg. LLF: 142.0755822612413
Iteration: 4, Func. Count: 44, Neg. LLF: 142.02321046891635
Iteration: 5, Func. Count: 54, Neg. LLF: 141.894170132505
Iteration: 6, Func. Count: 64, Neg. LLF: 141.8637028616946
Iteration: 7, Func. Count: 74, Neg. LLF: 141.76377070408265
Iteration: 8, Func. Count: 84, Neg. LLF: 141.6840286986367
Iteration: 9, Func. Count: 94, Neg. LLF: 141.55441950904083
Iteration: 10, Func. Count: 104, Neg. LLF: 141.45422109534482
Iteration: 11, Func. Count: 114, Neg. LLF: 141.3575742018297
Iteration: 12, Func. Count: 124, Neg. LLF: 143.44878060629782
Iteration: 13, Func. Count: 135, Neg. LLF: 142.30831843530066
Iteration: 14, Func. Count: 146, Neg. LLF: 141.38436801678145
Iteration: 15, Func. Count: 157, Neg. LLF: 141.21354801830847
Iteration: 16, Func. Count: 167, Neg. LLF: 141.2537221942832
Iteration: 17, Func. Count: 178, Neg. LLF: 141.34673941487313
Iteration: 18, Func. Count: 189, Neg. LLF: 141.87546317855998
Iteration: 19, Func. Count: 200, Neg. LLF: 141.18691666158833
Iteration: 20, Func. Count: 210, Neg. LLF: 141.1868543203166
Iteration: 21, Func. Count: 219, Neg. LLF: 141.18685432002357
Optimization terminated successfully (Exit mode 0)
Current function value: 141.1868543203166
Iterations: 21
Function evaluations: 219
Gradient evaluations: 21
Iteration: 1, Func. Count: 12, Neg. LLF: 146.20557708063396
Iteration: 2, Func. Count: 25, Neg. LLF: 148.08745074042858
Iteration: 3, Func. Count: 37, Neg. LLF: 142.18661538294782
Iteration: 4, Func. Count: 48, Neg. LLF: 142.13184485338726
Iteration: 5, Func. Count: 59, Neg. LLF: 142.07728514591935
Iteration: 6, Func. Count: 70, Neg. LLF: 141.9028516460192
Iteration: 7, Func. Count: 81, Neg. LLF: 141.79030992207896
Iteration: 8, Func. Count: 92, Neg. LLF: 141.68092030481137
Iteration: 9, Func. Count: 103, Neg. LLF: 141.61571682328085
Iteration: 10, Func. Count: 114, Neg. LLF: 141.5601543673469
Iteration: 11, Func. Count: 125, Neg. LLF: 141.509822576839
Iteration: 12, Func. Count: 136, Neg. LLF: 141.3781237751458
Iteration: 13, Func. Count: 147, Neg. LLF: 141.31670530230002
Iteration: 14, Func. Count: 158, Neg. LLF: 142.25209206454767
Iteration: 15, Func. Count: 170, Neg. LLF: 164.21489783273623
Iteration: 16, Func. Count: 183, Neg. LLF: 141.16170823625657
Iteration: 17, Func. Count: 194, Neg. LLF: 141.154610632706
Iteration: 18, Func. Count: 205, Neg. LLF: 141.1550614371225
Iteration: 19, Func. Count: 217, Neg. LLF: 141.1505774754188
Iteration: 20, Func. Count: 229, Neg. LLF: 141.14728488445516
Iteration: 21, Func. Count: 239, Neg. LLF: 141.14728488425874
Optimization terminated successfully (Exit mode 0)
Current function value: 141.14728488445516
Iterations: 21
Function evaluations: 239
Gradient evaluations: 21
Iteration: 1, Func. Count: 13, Neg. LLF: 146.63905026254605
Iteration: 2, Func. Count: 27, Neg. LLF: 148.04988491971272
Iteration: 3, Func. Count: 40, Neg. LLF: 142.27606442812964
Iteration: 4, Func. Count: 52, Neg. LLF: 142.08177687861644
Iteration: 5, Func. Count: 64, Neg. LLF: 141.99065154497515
Iteration: 6, Func. Count: 76, Neg. LLF: 141.91688005668792
Iteration: 7, Func. Count: 88, Neg. LLF: 141.85263470851743
Iteration: 8, Func. Count: 100, Neg. LLF: 141.79035729968342
Iteration: 9, Func. Count: 112, Neg. LLF: 141.75506981997478
Iteration: 10, Func. Count: 124, Neg. LLF: 141.69632439118206
Iteration: 11, Func. Count: 136, Neg. LLF: 141.5897305566083
Iteration: 12, Func. Count: 148, Neg. LLF: 141.37096167131492
Iteration: 13, Func. Count: 160, Neg. LLF: 141.3967556384001
Iteration: 14, Func. Count: 173, Neg. LLF: 141.21935980584226
Iteration: 15, Func. Count: 185, Neg. LLF: 177.68296347645096
Iteration: 16, Func. Count: 199, Neg. LLF: 143.8657014122598
Iteration: 17, Func. Count: 212, Neg. LLF: 141.1475731061325
Iteration: 18, Func. Count: 224, Neg. LLF: 141.14737185077618
Iteration: 19, Func. Count: 236, Neg. LLF: 141.14728493716802
Iteration: 20, Func. Count: 247, Neg. LLF: 141.1472849455158
Optimization terminated successfully (Exit mode 0)
Current function value: 141.14728493716802
Iterations: 20
Function evaluations: 247
Gradient evaluations: 20
Iteration: 1, Func. Count: 10, Neg. LLF: 145.91069512970182
Iteration: 2, Func. Count: 20, Neg. LLF: 142.2984525259205
Iteration: 3, Func. Count: 29, Neg. LLF: 141.81764168089575
Iteration: 4, Func. Count: 38, Neg. LLF: 143.2172771126371
Iteration: 5, Func. Count: 48, Neg. LLF: 141.3784001079175
Iteration: 6, Func. Count: 57, Neg. LLF: 141.10873466691828
Iteration: 7, Func. Count: 66, Neg. LLF: 140.8532873552973
Iteration: 8, Func. Count: 75, Neg. LLF: 141.04520152404754
Iteration: 9, Func. Count: 85, Neg. LLF: 140.7089277046934
Iteration: 10, Func. Count: 94, Neg. LLF: 140.69890846796275
Iteration: 11, Func. Count: 103, Neg. LLF: 140.6958348746064
Iteration: 12, Func. Count: 112, Neg. LLF: 140.69581654460958
Iteration: 13, Func. Count: 121, Neg. LLF: 140.69581547454501
Iteration: 14, Func. Count: 129, Neg. LLF: 140.6958154620653
Optimization terminated successfully (Exit mode 0)
Current function value: 140.69581547454501
Iterations: 14
Function evaluations: 129
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 143.82869722503844
Iteration: 2, Func. Count: 22, Neg. LLF: 149.1018730594761
Iteration: 3, Func. Count: 33, Neg. LLF: 149.8281289607595
Iteration: 4, Func. Count: 44, Neg. LLF: 142.00692522954247
Iteration: 5, Func. Count: 54, Neg. LLF: 141.9257234301868
Iteration: 6, Func. Count: 64, Neg. LLF: 141.88818679790586
Iteration: 7, Func. Count: 74, Neg. LLF: 141.83380530111071
Iteration: 8, Func. Count: 84, Neg. LLF: 141.78538587121045
Iteration: 9, Func. Count: 94, Neg. LLF: 141.7024394311542
Iteration: 10, Func. Count: 104, Neg. LLF: 141.62450038920332
Iteration: 11, Func. Count: 114, Neg. LLF: 141.59659215955784
Iteration: 12, Func. Count: 124, Neg. LLF: 141.59154324548314
Iteration: 13, Func. Count: 134, Neg. LLF: 141.5911716175037
Iteration: 14, Func. Count: 144, Neg. LLF: 141.59116706397535
Iteration: 15, Func. Count: 153, Neg. LLF: 141.59116705221456
Optimization terminated successfully (Exit mode 0)
Current function value: 141.59116706397535
Iterations: 15
Function evaluations: 153
Gradient evaluations: 15
Iteration: 1, Func. Count: 12, Neg. LLF: 145.40494854693605
Iteration: 2, Func. Count: 25, Neg. LLF: 148.335436580861
Iteration: 3, Func. Count: 37, Neg. LLF: 142.0733555885412
Iteration: 4, Func. Count: 48, Neg. LLF: 142.0270589764165
Iteration: 5, Func. Count: 59, Neg. LLF: 141.89641784064742
Iteration: 6, Func. Count: 70, Neg. LLF: 141.85353381346562
Iteration: 7, Func. Count: 81, Neg. LLF: 141.79806506103617
Iteration: 8, Func. Count: 92, Neg. LLF: 141.72497145309157
Iteration: 9, Func. Count: 103, Neg. LLF: 141.61807299709895
Iteration: 10, Func. Count: 114, Neg. LLF: 141.40523708025427
Iteration: 11, Func. Count: 125, Neg. LLF: 141.34012798473884
Iteration: 12, Func. Count: 136, Neg. LLF: 141.3600389374493
Iteration: 13, Func. Count: 148, Neg. LLF: 147.31925052226867
Iteration: 14, Func. Count: 160, Neg. LLF: 141.25499083516948
Iteration: 15, Func. Count: 172, Neg. LLF: 141.19064878266934
Iteration: 16, Func. Count: 183, Neg. LLF: 141.35546123267787
Iteration: 17, Func. Count: 195, Neg. LLF: 141.23220010550858
Iteration: 18, Func. Count: 207, Neg. LLF: 141.187227829204
Iteration: 19, Func. Count: 218, Neg. LLF: 141.18685492171758
Iteration: 20, Func. Count: 229, Neg. LLF: 141.18685384213174
Iteration: 21, Func. Count: 239, Neg. LLF: 141.18685384215365
Optimization terminated successfully (Exit mode 0)
Current function value: 141.18685384213174
Iterations: 21
Function evaluations: 239
Gradient evaluations: 21
Iteration: 1, Func. Count: 13, Neg. LLF: 145.99715528655884
Iteration: 2, Func. Count: 27, Neg. LLF: 148.10787548164598
Iteration: 3, Func. Count: 40, Neg. LLF: 142.1959723661447
Iteration: 4, Func. Count: 52, Neg. LLF: 142.14174534434162
Iteration: 5, Func. Count: 64, Neg. LLF: 142.07296309207905
Iteration: 6, Func. Count: 76, Neg. LLF: 141.92730575122275
Iteration: 7, Func. Count: 88, Neg. LLF: 141.82381574496802
Iteration: 8, Func. Count: 100, Neg. LLF: 141.7170634428207
Iteration: 9, Func. Count: 112, Neg. LLF: 141.64337159284017
Iteration: 10, Func. Count: 124, Neg. LLF: 141.59254287082865
Iteration: 11, Func. Count: 136, Neg. LLF: 141.53315948009197
Iteration: 12, Func. Count: 148, Neg. LLF: 141.41438558694296
Iteration: 13, Func. Count: 160, Neg. LLF: 141.37574283609743
Iteration: 14, Func. Count: 172, Neg. LLF: 141.31953281686432
Iteration: 15, Func. Count: 184, Neg. LLF: 142.63792017903668
Iteration: 16, Func. Count: 198, Neg. LLF: 141.28801804411788
Iteration: 17, Func. Count: 210, Neg. LLF: 141.3602626501908
Iteration: 18, Func. Count: 223, Neg. LLF: 141.20494927711252
Iteration: 19, Func. Count: 235, Neg. LLF: 141.18360674994221
Iteration: 20, Func. Count: 247, Neg. LLF: 141.19752978998324
Iteration: 21, Func. Count: 260, Neg. LLF: 141.149636108936
Iteration: 22, Func. Count: 272, Neg. LLF: 141.1476704389437
Iteration: 23, Func. Count: 284, Neg. LLF: 141.14778350715156
Iteration: 24, Func. Count: 297, Neg. LLF: 141.14728627948278
Iteration: 25, Func. Count: 309, Neg. LLF: 141.14728477493205
Iteration: 26, Func. Count: 320, Neg. LLF: 141.14728477491064
Optimization terminated successfully (Exit mode 0)
Current function value: 141.14728477493205
Iterations: 26
Function evaluations: 320
Gradient evaluations: 26
Iteration: 1, Func. Count: 14, Neg. LLF: 146.14396125488045
Iteration: 2, Func. Count: 29, Neg. LLF: 148.07805157687625
Iteration: 3, Func. Count: 43, Neg. LLF: 142.36588329631226
Iteration: 4, Func. Count: 56, Neg. LLF: 142.07477124131032
Iteration: 5, Func. Count: 69, Neg. LLF: 141.98101007365605
Iteration: 6, Func. Count: 82, Neg. LLF: 141.91910520811635
Iteration: 7, Func. Count: 95, Neg. LLF: 141.85781536115599
Iteration: 8, Func. Count: 108, Neg. LLF: 141.80117714807045
Iteration: 9, Func. Count: 121, Neg. LLF: 141.76486126587395
Iteration: 10, Func. Count: 134, Neg. LLF: 141.7051366745872
Iteration: 11, Func. Count: 147, Neg. LLF: 141.6667053044898
Iteration: 12, Func. Count: 160, Neg. LLF: 141.32551041605154
Iteration: 13, Func. Count: 173, Neg. LLF: 141.32554036480872
Iteration: 14, Func. Count: 187, Neg. LLF: 142.29915630185255
Iteration: 15, Func. Count: 201, Neg. LLF: 141.18357303251173
Iteration: 16, Func. Count: 214, Neg. LLF: 141.1643942498475
Iteration: 17, Func. Count: 227, Neg. LLF: 141.32969926235816
Iteration: 18, Func. Count: 242, Neg. LLF: 141.1508925570617
Iteration: 19, Func. Count: 255, Neg. LLF: 141.1473338661417
Iteration: 20, Func. Count: 268, Neg. LLF: 141.14728694920436
Iteration: 21, Func. Count: 281, Neg. LLF: 141.14728484873305
Iteration: 22, Func. Count: 293, Neg. LLF: 141.14728485680763
Optimization terminated successfully (Exit mode 0)
Current function value: 141.14728484873305
Iterations: 22
Function evaluations: 293
Gradient evaluations: 22
Iteration: 1, Func. Count: 11, Neg. LLF: 142.16091348237953
Iteration: 2, Func. Count: 21, Neg. LLF: 145.81543911489823
Iteration: 3, Func. Count: 32, Neg. LLF: 140.09357818690896
Iteration: 4, Func. Count: 43, Neg. LLF: 139.7868722334567
Iteration: 5, Func. Count: 53, Neg. LLF: 139.56964565744983
Iteration: 6, Func. Count: 63, Neg. LLF: 139.42549676849504
Iteration: 7, Func. Count: 73, Neg. LLF: 139.25645337144763
Iteration: 8, Func. Count: 83, Neg. LLF: 141.37923080368915
Iteration: 9, Func. Count: 95, Neg. LLF: 139.22160716631998
Iteration: 10, Func. Count: 105, Neg. LLF: 139.21491887489947
Iteration: 11, Func. Count: 115, Neg. LLF: 139.21479533902473
Iteration: 12, Func. Count: 125, Neg. LLF: 139.2147927341064
Iteration: 13, Func. Count: 134, Neg. LLF: 139.21479246433245
Optimization terminated successfully (Exit mode 0)
Current function value: 139.2147927341064
Iterations: 13
Function evaluations: 134
Gradient evaluations: 13
Iteration: 1, Func. Count: 12, Neg. LLF: 140.33092823650915
Iteration: 2, Func. Count: 23, Neg. LLF: 141.73062268139796
Iteration: 3, Func. Count: 35, Neg. LLF: 139.4751735306931
Iteration: 4, Func. Count: 46, Neg. LLF: 139.4469089113675
Iteration: 5, Func. Count: 57, Neg. LLF: 139.3533060846647
Iteration: 6, Func. Count: 68, Neg. LLF: 139.29297961337983
Iteration: 7, Func. Count: 79, Neg. LLF: 139.23645487089527
Iteration: 8, Func. Count: 90, Neg. LLF: 140.63628329719108
Iteration: 9, Func. Count: 103, Neg. LLF: 139.21567475282555
Iteration: 10, Func. Count: 114, Neg. LLF: 139.2148361036872
Iteration: 11, Func. Count: 125, Neg. LLF: 139.21479371146307
Iteration: 12, Func. Count: 136, Neg. LLF: 139.21479265017967
Iteration: 13, Func. Count: 146, Neg. LLF: 139.21479273445752
Optimization terminated successfully (Exit mode 0)
Current function value: 139.21479265017967
Iterations: 13
Function evaluations: 146
Gradient evaluations: 13
Iteration: 1, Func. Count: 13, Neg. LLF: 141.2835882248491
Iteration: 2, Func. Count: 25, Neg. LLF: 140.15888451522056
Iteration: 3, Func. Count: 37, Neg. LLF: 141.8570070747142
Iteration: 4, Func. Count: 50, Neg. LLF: 139.48459171384712
Iteration: 5, Func. Count: 62, Neg. LLF: 139.3947269886983
Iteration: 6, Func. Count: 74, Neg. LLF: 139.34673732439154
Iteration: 7, Func. Count: 86, Neg. LLF: 139.25892282590306
Iteration: 8, Func. Count: 98, Neg. LLF: 139.83759375576912
Iteration: 9, Func. Count: 111, Neg. LLF: 139.3082068851161
Iteration: 10, Func. Count: 124, Neg. LLF: 139.21483409718263
Iteration: 11, Func. Count: 136, Neg. LLF: 139.21479321234017
Iteration: 12, Func. Count: 148, Neg. LLF: 139.21479265602215
Optimization terminated successfully (Exit mode 0)
Current function value: 139.21479265602215
Iterations: 12
Function evaluations: 148
Gradient evaluations: 12
Iteration: 1, Func. Count: 14, Neg. LLF: 141.27653034897781
Iteration: 2, Func. Count: 27, Neg. LLF: 139.9624196716853
Iteration: 3, Func. Count: 40, Neg. LLF: 142.23186881236205
Iteration: 4, Func. Count: 54, Neg. LLF: 139.50607384077665
Iteration: 5, Func. Count: 68, Neg. LLF: 139.3957245653463
Iteration: 6, Func. Count: 81, Neg. LLF: 139.27443059859982
Iteration: 7, Func. Count: 94, Neg. LLF: 167.36829912644276
Iteration: 8, Func. Count: 110, Neg. LLF: 139.2219226410403
Iteration: 9, Func. Count: 123, Neg. LLF: 139.216390761435
Iteration: 10, Func. Count: 136, Neg. LLF: 139.21492578794715
Iteration: 11, Func. Count: 149, Neg. LLF: 139.21482909265623
Iteration: 12, Func. Count: 162, Neg. LLF: 139.2147926864024
Iteration: 13, Func. Count: 174, Neg. LLF: 139.2147928375649
Optimization terminated successfully (Exit mode 0)
Current function value: 139.2147926864024
Iterations: 13
Function evaluations: 174
Gradient evaluations: 13
Iteration: 1, Func. Count: 15, Neg. LLF: 141.2694021450206
Iteration: 2, Func. Count: 29, Neg. LLF: 139.87789323868992
Iteration: 3, Func. Count: 43, Neg. LLF: 142.52302346302702
Iteration: 4, Func. Count: 58, Neg. LLF: 139.43681156622588
Iteration: 5, Func. Count: 72, Neg. LLF: 139.3962605592866
Iteration: 6, Func. Count: 86, Neg. LLF: 139.2598689098878
Iteration: 7, Func. Count: 100, Neg. LLF: 139.26796899848873
Iteration: 8, Func. Count: 115, Neg. LLF: 139.27811531494535
Iteration: 9, Func. Count: 130, Neg. LLF: 139.215094615001
Iteration: 10, Func. Count: 144, Neg. LLF: 139.21481717290234
Iteration: 11, Func. Count: 158, Neg. LLF: 139.21479729700803
Iteration: 12, Func. Count: 172, Neg. LLF: 139.21479367682906
Iteration: 13, Func. Count: 186, Neg. LLF: 139.21479264795042
Iteration: 14, Func. Count: 199, Neg. LLF: 139.2147926660921
Optimization terminated successfully (Exit mode 0)
Current function value: 139.21479264795042
Iterations: 14
Function evaluations: 199
Gradient evaluations: 14
Iteration: 1, Func. Count: 12, Neg. LLF: 142.2081455441009
Iteration: 2, Func. Count: 23, Neg. LLF: 145.96137074089762
Iteration: 3, Func. Count: 35, Neg. LLF: 140.0948266233398
Iteration: 4, Func. Count: 47, Neg. LLF: 139.7919683840819
Iteration: 5, Func. Count: 58, Neg. LLF: 139.58008036642
Iteration: 6, Func. Count: 69, Neg. LLF: 139.43236600440213
Iteration: 7, Func. Count: 80, Neg. LLF: 139.26315535791107
Iteration: 8, Func. Count: 91, Neg. LLF: 141.1848863383136
Iteration: 9, Func. Count: 104, Neg. LLF: 139.23070843182833
Iteration: 10, Func. Count: 115, Neg. LLF: 139.21511857511396
Iteration: 11, Func. Count: 126, Neg. LLF: 139.21479794474877
Iteration: 12, Func. Count: 137, Neg. LLF: 139.2147927602064
Iteration: 13, Func. Count: 147, Neg. LLF: 139.2147929425979
Optimization terminated successfully (Exit mode 0)
Current function value: 139.2147927602064
Iterations: 13
Function evaluations: 147
Gradient evaluations: 13
Iteration: 1, Func. Count: 13, Neg. LLF: 140.33546429080232
Iteration: 2, Func. Count: 25, Neg. LLF: 141.7312747510089
Iteration: 3, Func. Count: 38, Neg. LLF: 139.48343354636378
Iteration: 4, Func. Count: 50, Neg. LLF: 139.4533063147986
Iteration: 5, Func. Count: 62, Neg. LLF: 139.35503401428093
Iteration: 6, Func. Count: 74, Neg. LLF: 139.29757802784735
Iteration: 7, Func. Count: 86, Neg. LLF: 139.23741839440663
Iteration: 8, Func. Count: 98, Neg. LLF: 140.48952994531663
Iteration: 9, Func. Count: 112, Neg. LLF: 139.21575665512358
Iteration: 10, Func. Count: 124, Neg. LLF: 139.21483636698454
Iteration: 11, Func. Count: 136, Neg. LLF: 139.21479389431255
Iteration: 12, Func. Count: 148, Neg. LLF: 139.21479265677732
Iteration: 13, Func. Count: 159, Neg. LLF: 139.2147927410548
Optimization terminated successfully (Exit mode 0)
Current function value: 139.21479265677732
Iterations: 13
Function evaluations: 159
Gradient evaluations: 13
Iteration: 1, Func. Count: 14, Neg. LLF: 141.28881607356527
Iteration: 2, Func. Count: 27, Neg. LLF: 140.16556458676206
Iteration: 3, Func. Count: 40, Neg. LLF: 141.86728737094995
Iteration: 4, Func. Count: 54, Neg. LLF: 139.48373603518587
Iteration: 5, Func. Count: 67, Neg. LLF: 139.3948222325362
Iteration: 6, Func. Count: 80, Neg. LLF: 139.34600741620065
Iteration: 7, Func. Count: 93, Neg. LLF: 139.25880160005806
Iteration: 8, Func. Count: 106, Neg. LLF: 139.79264434035994
Iteration: 9, Func. Count: 120, Neg. LLF: 139.3099381030998
Iteration: 10, Func. Count: 134, Neg. LLF: 139.21483760972737
Iteration: 11, Func. Count: 147, Neg. LLF: 139.2147932308341
Iteration: 12, Func. Count: 160, Neg. LLF: 139.21479264265093
Optimization terminated successfully (Exit mode 0)
Current function value: 139.21479264265093
Iterations: 12
Function evaluations: 160
Gradient evaluations: 12
Iteration: 1, Func. Count: 15, Neg. LLF: 141.28417672540138
Iteration: 2, Func. Count: 29, Neg. LLF: 139.96960600107244
Iteration: 3, Func. Count: 43, Neg. LLF: 142.2239100911828
Iteration: 4, Func. Count: 58, Neg. LLF: 139.50420863684752
Iteration: 5, Func. Count: 73, Neg. LLF: 139.39510863950065
Iteration: 6, Func. Count: 87, Neg. LLF: 139.27372681445834
Iteration: 7, Func. Count: 101, Neg. LLF: 167.27845178058084
Iteration: 8, Func. Count: 118, Neg. LLF: 139.2246910350408
Iteration: 9, Func. Count: 132, Neg. LLF: 139.21633189804018
Iteration: 10, Func. Count: 146, Neg. LLF: 139.21492543536874
Iteration: 11, Func. Count: 160, Neg. LLF: 139.2148288591617
Iteration: 12, Func. Count: 174, Neg. LLF: 139.21479306561227
Iteration: 13, Func. Count: 187, Neg. LLF: 139.21479321684816
Optimization terminated successfully (Exit mode 0)
Current function value: 139.21479306561227
Iterations: 13
Function evaluations: 187
Gradient evaluations: 13
Iteration: 1, Func. Count: 16, Neg. LLF: 141.27790236730425
Iteration: 2, Func. Count: 31, Neg. LLF: 139.88587434464617
Iteration: 3, Func. Count: 46, Neg. LLF: 142.5321927055777
Iteration: 4, Func. Count: 62, Neg. LLF: 139.43739181215406
Iteration: 5, Func. Count: 77, Neg. LLF: 139.39790199439778
Iteration: 6, Func. Count: 92, Neg. LLF: 139.2624030520728
Iteration: 7, Func. Count: 107, Neg. LLF: 139.25214088459643
Iteration: 8, Func. Count: 123, Neg. LLF: 139.26764963667728
Iteration: 9, Func. Count: 139, Neg. LLF: 139.21515546313213
Iteration: 10, Func. Count: 154, Neg. LLF: 139.21483474148667
Iteration: 11, Func. Count: 169, Neg. LLF: 139.2148017829225
Iteration: 12, Func. Count: 184, Neg. LLF: 139.2147944012456
Iteration: 13, Func. Count: 199, Neg. LLF: 139.21479267450897
Iteration: 14, Func. Count: 213, Neg. LLF: 139.21479269264424
Optimization terminated successfully (Exit mode 0)
Current function value: 139.21479267450897
Iterations: 14
Function evaluations: 213
Gradient evaluations: 14
Iteration: 1, Func. Count: 6, Neg. LLF: 143.65934327233418
Iteration: 2, Func. Count: 11, Neg. LLF: 148.83831562841158
Iteration: 3, Func. Count: 17, Neg. LLF: 142.0219763066647
Iteration: 4, Func. Count: 22, Neg. LLF: 141.63309374009938
Iteration: 5, Func. Count: 27, Neg. LLF: 141.50384376620707
Iteration: 6, Func. Count: 32, Neg. LLF: 141.47764694271027
Iteration: 7, Func. Count: 37, Neg. LLF: 141.47752589758153
Iteration: 8, Func. Count: 42, Neg. LLF: 141.47751937257001
Iteration: 9, Func. Count: 47, Neg. LLF: 141.47751851940149
Optimization terminated successfully (Exit mode 0)
Current function value: 141.47751851940149
Iterations: 9
Function evaluations: 47
Gradient evaluations: 9
Iteration: 1, Func. Count: 5, Neg. LLF: 146.22249736747332
Iteration: 2, Func. Count: 10, Neg. LLF: 149.76554740386388
Iteration: 3, Func. Count: 15, Neg. LLF: 141.2402232922501
Iteration: 4, Func. Count: 19, Neg. LLF: 140.83337209292142
Iteration: 5, Func. Count: 23, Neg. LLF: 140.11699043405378
Iteration: 6, Func. Count: 27, Neg. LLF: 140.07510234383366
Iteration: 7, Func. Count: 31, Neg. LLF: 140.05767607229325
Iteration: 8, Func. Count: 35, Neg. LLF: 140.0569324299657
Iteration: 9, Func. Count: 39, Neg. LLF: 140.05625225394283
Iteration: 10, Func. Count: 43, Neg. LLF: 140.05617336575148
Iteration: 11, Func. Count: 47, Neg. LLF: 140.05616743928664
Iteration: 12, Func. Count: 50, Neg. LLF: 140.05616752750126
Optimization terminated successfully (Exit mode 0)
Current function value: 140.05616743928664
Iterations: 12
Function evaluations: 50
Gradient evaluations: 12
Iteration: 1, Func. Count: 6, Neg. LLF: 179.43224689308144
Iteration: 2, Func. Count: 13, Neg. LLF: 140.0441905026048
Iteration: 3, Func. Count: 18, Neg. LLF: 140.04441219432988
Iteration: 4, Func. Count: 24, Neg. LLF: 140.0436656042905
Iteration: 5, Func. Count: 29, Neg. LLF: 140.04364422519149
Iteration: 6, Func. Count: 34, Neg. LLF: 140.04362506634195
Iteration: 7, Func. Count: 39, Neg. LLF: 140.04353572142648
Iteration: 8, Func. Count: 44, Neg. LLF: 140.04333657306324
Iteration: 9, Func. Count: 49, Neg. LLF: 140.04277104893637
Iteration: 10, Func. Count: 54, Neg. LLF: 140.0412991414737
Iteration: 11, Func. Count: 59, Neg. LLF: 140.0390752669909
Iteration: 12, Func. Count: 64, Neg. LLF: 140.03082167045883
Iteration: 13, Func. Count: 69, Neg. LLF: 140.27868121753642
Iteration: 14, Func. Count: 75, Neg. LLF: 140.79701781362766
Iteration: 15, Func. Count: 81, Neg. LLF: 140.05536534530387
Iteration: 16, Func. Count: 87, Neg. LLF: 140.03575605719212
Iteration: 17, Func. Count: 93, Neg. LLF: 140.0095981243289
Iteration: 18, Func. Count: 98, Neg. LLF: 140.0094843559475
Iteration: 19, Func. Count: 103, Neg. LLF: 140.0094701180838
Iteration: 20, Func. Count: 108, Neg. LLF: 140.0094695149108
Optimization terminated successfully (Exit mode 0)
Current function value: 140.0094695149108
Iterations: 20
Function evaluations: 108
Gradient evaluations: 20
Iteration: 1, Func. Count: 7, Neg. LLF: 172.21758177958444
Iteration: 2, Func. Count: 15, Neg. LLF: 140.0381263804384
Iteration: 3, Func. Count: 21, Neg. LLF: 140.03825978596493
Iteration: 4, Func. Count: 28, Neg. LLF: 140.03740700477942
Iteration: 5, Func. Count: 34, Neg. LLF: 140.0365281677459
Iteration: 6, Func. Count: 40, Neg. LLF: 140.03149270289725
Iteration: 7, Func. Count: 46, Neg. LLF: 140.02966691527723
Iteration: 8, Func. Count: 52, Neg. LLF: 140.0296337890809
Iteration: 9, Func. Count: 58, Neg. LLF: 140.02947758910597
Iteration: 10, Func. Count: 64, Neg. LLF: 140.02886795971605
Iteration: 11, Func. Count: 70, Neg. LLF: 140.02811938035532
Iteration: 12, Func. Count: 76, Neg. LLF: 140.0270124489863
Iteration: 13, Func. Count: 82, Neg. LLF: 140.02387563510135
Iteration: 14, Func. Count: 88, Neg. LLF: 140.01912085290945
Iteration: 15, Func. Count: 94, Neg. LLF: 140.02198030221942
Iteration: 16, Func. Count: 101, Neg. LLF: 140.0112458071369
Iteration: 17, Func. Count: 107, Neg. LLF: 140.01096810227713
Iteration: 18, Func. Count: 113, Neg. LLF: 140.01083548825605
Iteration: 19, Func. Count: 119, Neg. LLF: 140.01082248981945
Iteration: 20, Func. Count: 124, Neg. LLF: 140.01082248977175
Optimization terminated successfully (Exit mode 0)
Current function value: 140.01082248981945
Iterations: 20
Function evaluations: 124
Gradient evaluations: 20
Iteration: 1, Func. Count: 8, Neg. LLF: 167.27181339571982
Iteration: 2, Func. Count: 17, Neg. LLF: 140.0335376227672
Iteration: 3, Func. Count: 24, Neg. LLF: 140.03368207845318
Iteration: 4, Func. Count: 32, Neg. LLF: 140.0321251594893
Iteration: 5, Func. Count: 39, Neg. LLF: 140.02932590176945
Iteration: 6, Func. Count: 46, Neg. LLF: 140.02771103093437
Iteration: 7, Func. Count: 53, Neg. LLF: 140.0276714446412
Iteration: 8, Func. Count: 60, Neg. LLF: 140.02744524888922
Iteration: 9, Func. Count: 67, Neg. LLF: 140.0264012868448
Iteration: 10, Func. Count: 74, Neg. LLF: 140.02538401485677
Iteration: 11, Func. Count: 81, Neg. LLF: 140.0250955824101
Iteration: 12, Func. Count: 88, Neg. LLF: 140.02483056909387
Iteration: 13, Func. Count: 95, Neg. LLF: 140.02464879916195
Iteration: 14, Func. Count: 102, Neg. LLF: 140.02381560473702
Iteration: 15, Func. Count: 109, Neg. LLF: 140.02280708743442
Iteration: 16, Func. Count: 116, Neg. LLF: 140.0209044732963
Iteration: 17, Func. Count: 123, Neg. LLF: 140.01798848883914
Iteration: 18, Func. Count: 130, Neg. LLF: 140.0142872580201
Iteration: 19, Func. Count: 137, Neg. LLF: 140.01371430080872
Iteration: 20, Func. Count: 144, Neg. LLF: 140.01379456389793
Iteration: 21, Func. Count: 152, Neg. LLF: 140.01356324786687
Iteration: 22, Func. Count: 159, Neg. LLF: 140.01170386936244
Iteration: 23, Func. Count: 166, Neg. LLF: 163.1352198120724
Iteration: 24, Func. Count: 177, Neg. LLF: 162.03883706730116
Optimization terminated successfully (Exit mode 0)
Current function value: 140.01170262443983
Iterations: 24
Function evaluations: 182
Gradient evaluations: 24
Iteration: 1, Func. Count: 9, Neg. LLF: 163.38083274889956
Iteration: 2, Func. Count: 19, Neg. LLF: 140.0290507780707
Iteration: 3, Func. Count: 27, Neg. LLF: 140.0290865718825
Iteration: 4, Func. Count: 36, Neg. LLF: 140.02715627712064
Iteration: 5, Func. Count: 44, Neg. LLF: 140.02426712955236
Iteration: 6, Func. Count: 52, Neg. LLF: 140.02410237059283
Iteration: 7, Func. Count: 60, Neg. LLF: 140.02301099138435
Iteration: 8, Func. Count: 68, Neg. LLF: 140.0218148138528
Iteration: 9, Func. Count: 76, Neg. LLF: 140.0216651694185
Iteration: 10, Func. Count: 84, Neg. LLF: 140.0212619851978
Iteration: 11, Func. Count: 92, Neg. LLF: 140.02120242831185
Iteration: 12, Func. Count: 100, Neg. LLF: 140.02116569551885
Iteration: 13, Func. Count: 108, Neg. LLF: 140.0211506721738
Iteration: 14, Func. Count: 116, Neg. LLF: 140.02109116321176
Iteration: 15, Func. Count: 124, Neg. LLF: 140.02097178422193
Iteration: 16, Func. Count: 132, Neg. LLF: 140.02070926261763
Iteration: 17, Func. Count: 140, Neg. LLF: 140.02033900195894
Iteration: 18, Func. Count: 148, Neg. LLF: 140.02003610774275
Iteration: 19, Func. Count: 156, Neg. LLF: 140.01990915018246
Iteration: 20, Func. Count: 164, Neg. LLF: 140.01990020263796
Iteration: 21, Func. Count: 171, Neg. LLF: 140.0199002026387
Optimization terminated successfully (Exit mode 0)
Current function value: 140.01990020263796
Iterations: 21
Function evaluations: 171
Gradient evaluations: 21
Iteration: 1, Func. Count: 6, Neg. LLF: 145.44243910674012
Iteration: 2, Func. Count: 12, Neg. LLF: 156.26837865821085
Iteration: 3, Func. Count: 18, Neg. LLF: 139.72545938583752
Iteration: 4, Func. Count: 23, Neg. LLF: 139.66449764140367
Iteration: 5, Func. Count: 28, Neg. LLF: 139.62080599122334
Iteration: 6, Func. Count: 33, Neg. LLF: 139.61879333364035
Iteration: 7, Func. Count: 38, Neg. LLF: 139.61874340677713
Iteration: 8, Func. Count: 42, Neg. LLF: 139.61874340681342
Optimization terminated successfully (Exit mode 0)
Current function value: 139.61874340677713
Iterations: 8
Function evaluations: 42
Gradient evaluations: 8
Iteration: 1, Func. Count: 7, Neg. LLF: 179.43294205768038
Iteration: 2, Func. Count: 15, Neg. LLF: 140.04426596717244
Iteration: 3, Func. Count: 21, Neg. LLF: 140.04403445630516
Iteration: 4, Func. Count: 27, Neg. LLF: 140.04372052562906
Iteration: 5, Func. Count: 33, Neg. LLF: 140.04370351005014
Iteration: 6, Func. Count: 39, Neg. LLF: 140.04368604891755
Iteration: 7, Func. Count: 45, Neg. LLF: 140.04366758043471
Iteration: 8, Func. Count: 51, Neg. LLF: 140.0435936508768
Iteration: 9, Func. Count: 57, Neg. LLF: 140.0434230650259
Iteration: 10, Func. Count: 63, Neg. LLF: 140.04293503409366
Iteration: 11, Func. Count: 69, Neg. LLF: 140.0416363978045
Iteration: 12, Func. Count: 75, Neg. LLF: 140.0392606115456
Iteration: 13, Func. Count: 81, Neg. LLF: 140.03213283533555
Iteration: 14, Func. Count: 87, Neg. LLF: 140.25014720066216
Iteration: 15, Func. Count: 94, Neg. LLF: 140.0281384539614
Iteration: 16, Func. Count: 101, Neg. LLF: 141.43240287627273
Iteration: 17, Func. Count: 110, Neg. LLF: 140.01298946132545
Iteration: 18, Func. Count: 117, Neg. LLF: 140.00948590668776
Iteration: 19, Func. Count: 123, Neg. LLF: 140.0094697095181
Iteration: 20, Func. Count: 128, Neg. LLF: 140.00946970958148
Optimization terminated successfully (Exit mode 0)
Current function value: 140.0094697095181
Iterations: 20
Function evaluations: 128
Gradient evaluations: 20
Iteration: 1, Func. Count: 8, Neg. LLF: 171.94955144659073
Iteration: 2, Func. Count: 17, Neg. LLF: 140.03747221174808
Iteration: 3, Func. Count: 24, Neg. LLF: 140.03690733305106
Iteration: 4, Func. Count: 31, Neg. LLF: 140.03616145490625
Iteration: 5, Func. Count: 38, Neg. LLF: 140.03498886608583
Iteration: 6, Func. Count: 45, Neg. LLF: 140.03173410376067
Iteration: 7, Func. Count: 52, Neg. LLF: 140.0297770843005
Iteration: 8, Func. Count: 59, Neg. LLF: 140.02897574584708
Iteration: 9, Func. Count: 66, Neg. LLF: 140.02834014115658
Iteration: 10, Func. Count: 73, Neg. LLF: 140.02830811646123
Iteration: 11, Func. Count: 80, Neg. LLF: 140.0281404230771
Iteration: 12, Func. Count: 87, Neg. LLF: 140.0272923983095
Iteration: 13, Func. Count: 94, Neg. LLF: 140.02287394755533
Iteration: 14, Func. Count: 101, Neg. LLF: 140.02560955015466
Iteration: 15, Func. Count: 109, Neg. LLF: 140.080355320315
Iteration: 16, Func. Count: 117, Neg. LLF: 140.01130874392607
Iteration: 17, Func. Count: 124, Neg. LLF: 140.01085731851757
Iteration: 18, Func. Count: 131, Neg. LLF: 140.0108434951674
Iteration: 19, Func. Count: 138, Neg. LLF: 140.0108225360735
Iteration: 20, Func. Count: 144, Neg. LLF: 140.01082253598437
Optimization terminated successfully (Exit mode 0)
Current function value: 140.0108225360735
Iterations: 20
Function evaluations: 144
Gradient evaluations: 20
Iteration: 1, Func. Count: 9, Neg. LLF: 166.7153693239446
Iteration: 2, Func. Count: 19, Neg. LLF: 140.03215890520661
Iteration: 3, Func. Count: 27, Neg. LLF: 140.03198521598912
Iteration: 4, Func. Count: 36, Neg. LLF: 140.030538753943
Iteration: 5, Func. Count: 44, Neg. LLF: 140.02798326132773
Iteration: 6, Func. Count: 52, Neg. LLF: 140.02786934842393
Iteration: 7, Func. Count: 60, Neg. LLF: 140.0277808424922
Iteration: 8, Func. Count: 68, Neg. LLF: 140.02758507414993
Iteration: 9, Func. Count: 76, Neg. LLF: 140.0271843721451
Iteration: 10, Func. Count: 84, Neg. LLF: 140.02654876777598
Iteration: 11, Func. Count: 92, Neg. LLF: 140.02615165644966
Iteration: 12, Func. Count: 100, Neg. LLF: 140.02590840568416
Iteration: 13, Func. Count: 108, Neg. LLF: 140.0257471367737
Iteration: 14, Func. Count: 116, Neg. LLF: 140.02554823120704
Iteration: 15, Func. Count: 124, Neg. LLF: 140.0248839759789
Iteration: 16, Func. Count: 132, Neg. LLF: 140.0236386141714
Iteration: 17, Func. Count: 140, Neg. LLF: 140.0212386745213
Iteration: 18, Func. Count: 148, Neg. LLF: 140.0170514751881
Iteration: 19, Func. Count: 156, Neg. LLF: 140.01178700127798
Iteration: 20, Func. Count: 164, Neg. LLF: 140.0257568500573
Iteration: 21, Func. Count: 173, Neg. LLF: 140.01111346537988
Iteration: 22, Func. Count: 182, Neg. LLF: 140.10688569684436
Iteration: 23, Func. Count: 193, Neg. LLF: 140.01106111385732
Iteration: 24, Func. Count: 201, Neg. LLF: 140.01103437857518
Iteration: 25, Func. Count: 209, Neg. LLF: 140.01093097858995
Iteration: 26, Func. Count: 217, Neg. LLF: 140.0108226963655
Iteration: 27, Func. Count: 225, Neg. LLF: 140.0108220674546
Optimization terminated successfully (Exit mode 0)
Current function value: 140.0108220674546
Iterations: 28
Function evaluations: 225
Gradient evaluations: 27
Iteration: 1, Func. Count: 10, Neg. LLF: 162.9644733319178
Iteration: 2, Func. Count: 21, Neg. LLF: 140.02806298241467
Iteration: 3, Func. Count: 30, Neg. LLF: 140.02766845441553
Iteration: 4, Func. Count: 39, Neg. LLF: 140.0251672978603
Iteration: 5, Func. Count: 48, Neg. LLF: 140.02394918633576
Iteration: 6, Func. Count: 57, Neg. LLF: 140.02260123445853
Iteration: 7, Func. Count: 66, Neg. LLF: 140.02236617981558
Iteration: 8, Func. Count: 75, Neg. LLF: 140.02181748241415
Iteration: 9, Func. Count: 84, Neg. LLF: 140.02177161061877
Iteration: 10, Func. Count: 93, Neg. LLF: 140.021727867162
Iteration: 11, Func. Count: 102, Neg. LLF: 140.02167753785196
Iteration: 12, Func. Count: 111, Neg. LLF: 140.0216336562255
Iteration: 13, Func. Count: 120, Neg. LLF: 140.02155371464553
Iteration: 14, Func. Count: 129, Neg. LLF: 140.02138684915147
Iteration: 15, Func. Count: 138, Neg. LLF: 140.02103343816614
Iteration: 16, Func. Count: 147, Neg. LLF: 140.02052884976476
Iteration: 17, Func. Count: 156, Neg. LLF: 140.0201096458339
Iteration: 18, Func. Count: 165, Neg. LLF: 140.01991279155644
Iteration: 19, Func. Count: 174, Neg. LLF: 140.01990023913768
Iteration: 20, Func. Count: 182, Neg. LLF: 140.01990023917736
Optimization terminated successfully (Exit mode 0)
Current function value: 140.01990023913768
Iterations: 20
Function evaluations: 182
Gradient evaluations: 20
Iteration: 1, Func. Count: 7, Neg. LLF: 143.6602099249603
Iteration: 2, Func. Count: 14, Neg. LLF: 152.3246691091154
Iteration: 3, Func. Count: 21, Neg. LLF: 139.69544393881458
Iteration: 4, Func. Count: 27, Neg. LLF: 139.6743715129582
Iteration: 5, Func. Count: 33, Neg. LLF: 139.62147277978283
Iteration: 6, Func. Count: 39, Neg. LLF: 139.61901723155086
Iteration: 7, Func. Count: 45, Neg. LLF: 139.6188436368145
Iteration: 8, Func. Count: 51, Neg. LLF: 139.61879848515483
Iteration: 9, Func. Count: 57, Neg. LLF: 139.61875163109562
Iteration: 10, Func. Count: 63, Neg. LLF: 139.6187427844369
Iteration: 11, Func. Count: 69, Neg. LLF: 139.6187419033903
Optimization terminated successfully (Exit mode 0)
Current function value: 139.6187419033903
Iterations: 11
Function evaluations: 69
Gradient evaluations: 11
Iteration: 1, Func. Count: 8, Neg. LLF: 179.45666614822403
Iteration: 2, Func. Count: 17, Neg. LLF: 140.04489822201523
Iteration: 3, Func. Count: 24, Neg. LLF: 140.0443227108959
Iteration: 4, Func. Count: 31, Neg. LLF: 140.04406510527508
Iteration: 5, Func. Count: 38, Neg. LLF: 140.0438281014991
Iteration: 6, Func. Count: 45, Neg. LLF: 140.04381893639308
Iteration: 7, Func. Count: 52, Neg. LLF: 140.043774153621
Iteration: 8, Func. Count: 59, Neg. LLF: 140.0436863140908
Iteration: 9, Func. Count: 66, Neg. LLF: 140.04341868090313
Iteration: 10, Func. Count: 73, Neg. LLF: 140.0426710398322
Iteration: 11, Func. Count: 80, Neg. LLF: 140.03982341403662
Iteration: 12, Func. Count: 87, Neg. LLF: 141.23259962586926
Iteration: 13, Func. Count: 95, Neg. LLF: 140.68716928204515
Iteration: 14, Func. Count: 103, Neg. LLF: 169.75912174713247
Iteration: 15, Func. Count: 115, Neg. LLF: 140.7410328063803
Iteration: 16, Func. Count: 124, Neg. LLF: 150.92393396783265
Iteration: 17, Func. Count: 133, Neg. LLF: 140.02807696808065
Iteration: 18, Func. Count: 140, Neg. LLF: 140.02763436967086
Iteration: 19, Func. Count: 147, Neg. LLF: 140.02522429276993
Iteration: 20, Func. Count: 154, Neg. LLF: 140.01213077755503
Iteration: 21, Func. Count: 161, Neg. LLF: 140.2183669658645
Iteration: 22, Func. Count: 169, Neg. LLF: 140.0119285255035
Iteration: 23, Func. Count: 177, Neg. LLF: 140.009503264366
Iteration: 24, Func. Count: 184, Neg. LLF: 140.0094696750475
Iteration: 25, Func. Count: 190, Neg. LLF: 140.0094696748537
Optimization terminated successfully (Exit mode 0)
Current function value: 140.0094696750475
Iterations: 26
Function evaluations: 190
Gradient evaluations: 25
Iteration: 1, Func. Count: 9, Neg. LLF: 171.78423040590081
Iteration: 2, Func. Count: 19, Neg. LLF: 140.03744693412312
Iteration: 3, Func. Count: 27, Neg. LLF: 140.03595475316206
Iteration: 4, Func. Count: 35, Neg. LLF: 140.03479694588637
Iteration: 5, Func. Count: 43, Neg. LLF: 140.0325999986058
Iteration: 6, Func. Count: 51, Neg. LLF: 140.03099849700806
Iteration: 7, Func. Count: 59, Neg. LLF: 140.02997103732864
Iteration: 8, Func. Count: 67, Neg. LLF: 140.02843254841716
Iteration: 9, Func. Count: 75, Neg. LLF: 140.02839020200005
Iteration: 10, Func. Count: 83, Neg. LLF: 140.02814604669882
Iteration: 11, Func. Count: 91, Neg. LLF: 140.0268902005768
Iteration: 12, Func. Count: 99, Neg. LLF: 140.0247319752388
Iteration: 13, Func. Count: 107, Neg. LLF: 140.0216594690415
Iteration: 14, Func. Count: 115, Neg. LLF: 140.01676714222205
Iteration: 15, Func. Count: 123, Neg. LLF: 140.012360726668
Iteration: 16, Func. Count: 131, Neg. LLF: 140.01114128691523
Iteration: 17, Func. Count: 139, Neg. LLF: 140.01082537914155
Iteration: 18, Func. Count: 147, Neg. LLF: 140.01082207897838
Iteration: 19, Func. Count: 154, Neg. LLF: 140.01082207896195
Optimization terminated successfully (Exit mode 0)
Current function value: 140.01082207897838
Iterations: 19
Function evaluations: 154
Gradient evaluations: 19
Iteration: 1, Func. Count: 10, Neg. LLF: 166.6765951664237
Iteration: 2, Func. Count: 21, Neg. LLF: 140.0323363357232
Iteration: 3, Func. Count: 30, Neg. LLF: 140.03117412076574
Iteration: 4, Func. Count: 39, Neg. LLF: 140.0298724100435
Iteration: 5, Func. Count: 48, Neg. LLF: 140.02844844199862
Iteration: 6, Func. Count: 57, Neg. LLF: 140.02806800829762
Iteration: 7, Func. Count: 66, Neg. LLF: 140.0279493681065
Iteration: 8, Func. Count: 75, Neg. LLF: 140.0278441723073
Iteration: 9, Func. Count: 84, Neg. LLF: 140.02753325759875
Iteration: 10, Func. Count: 93, Neg. LLF: 140.0270470670753
Iteration: 11, Func. Count: 102, Neg. LLF: 140.0265021396349
Iteration: 12, Func. Count: 111, Neg. LLF: 140.02619955765778
Iteration: 13, Func. Count: 120, Neg. LLF: 140.02590146703622
Iteration: 14, Func. Count: 129, Neg. LLF: 140.02571697081757
Iteration: 15, Func. Count: 138, Neg. LLF: 140.02453651403994
Iteration: 16, Func. Count: 147, Neg. LLF: 140.0229140903093
Iteration: 17, Func. Count: 156, Neg. LLF: 140.02094185647576
Iteration: 18, Func. Count: 165, Neg. LLF: 140.01814361086667
Iteration: 19, Func. Count: 174, Neg. LLF: 140.01438058381984
Iteration: 20, Func. Count: 183, Neg. LLF: 140.01292473171728
Iteration: 21, Func. Count: 192, Neg. LLF: 140.01118607882782
Iteration: 22, Func. Count: 201, Neg. LLF: 140.01092292230373
Iteration: 23, Func. Count: 210, Neg. LLF: 140.0108524009521
Iteration: 24, Func. Count: 219, Neg. LLF: 140.0117369817098
Iteration: 25, Func. Count: 230, Neg. LLF: 140.01123982518254
Optimization terminated successfully (Exit mode 0)
Current function value: 140.01085105641278
Iterations: 25
Function evaluations: 232
Gradient evaluations: 25
Iteration: 1, Func. Count: 11, Neg. LLF: 162.76734015776913
Iteration: 2, Func. Count: 23, Neg. LLF: 140.0279155671779
Iteration: 3, Func. Count: 33, Neg. LLF: 140.028220226988
Iteration: 4, Func. Count: 44, Neg. LLF: 140.0248997123553
Iteration: 5, Func. Count: 54, Neg. LLF: 140.0242374325747
Iteration: 6, Func. Count: 64, Neg. LLF: 140.02257195226443
Iteration: 7, Func. Count: 74, Neg. LLF: 140.0222944189135
Iteration: 8, Func. Count: 84, Neg. LLF: 140.02190535241735
Iteration: 9, Func. Count: 94, Neg. LLF: 140.02187323933907
Iteration: 10, Func. Count: 104, Neg. LLF: 140.02176531473128
Iteration: 11, Func. Count: 114, Neg. LLF: 140.02172628587678
Iteration: 12, Func. Count: 124, Neg. LLF: 140.02167644066037
Iteration: 13, Func. Count: 134, Neg. LLF: 140.0215161965009
Iteration: 14, Func. Count: 144, Neg. LLF: 140.0212007045982
Iteration: 15, Func. Count: 154, Neg. LLF: 140.02065013353152
Iteration: 16, Func. Count: 164, Neg. LLF: 140.02013039914544
Iteration: 17, Func. Count: 174, Neg. LLF: 140.01992515452488
Iteration: 18, Func. Count: 184, Neg. LLF: 140.01990018272582
Iteration: 19, Func. Count: 193, Neg. LLF: 140.01990018273673
Optimization terminated successfully (Exit mode 0)
Current function value: 140.01990018272582
Iterations: 19
Function evaluations: 193
Gradient evaluations: 19
Iteration: 1, Func. Count: 8, Neg. LLF: 141.83202228895794
Iteration: 2, Func. Count: 15, Neg. LLF: 153.11886946925827
Iteration: 3, Func. Count: 23, Neg. LLF: 140.03847487988895
Iteration: 4, Func. Count: 30, Neg. LLF: 139.68157278077246
Iteration: 5, Func. Count: 37, Neg. LLF: 139.65666769277732
Iteration: 6, Func. Count: 44, Neg. LLF: 139.63080556817374
Iteration: 7, Func. Count: 51, Neg. LLF: 139.62169926509316
Iteration: 8, Func. Count: 58, Neg. LLF: 139.61939688582308
Iteration: 9, Func. Count: 65, Neg. LLF: 139.61875100111246
Iteration: 10, Func. Count: 72, Neg. LLF: 139.61874247016507
Iteration: 11, Func. Count: 79, Neg. LLF: 139.6187418911848
Optimization terminated successfully (Exit mode 0)
Current function value: 139.6187418911848
Iterations: 11
Function evaluations: 79
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 179.4646370745548
Iteration: 2, Func. Count: 19, Neg. LLF: 140.04489253489612
Iteration: 3, Func. Count: 27, Neg. LLF: 140.04438667104884
Iteration: 4, Func. Count: 35, Neg. LLF: 140.04413364638293
Iteration: 5, Func. Count: 43, Neg. LLF: 140.04383749729445
Iteration: 6, Func. Count: 51, Neg. LLF: 140.04381722138984
Iteration: 7, Func. Count: 59, Neg. LLF: 140.04380074005962
Iteration: 8, Func. Count: 67, Neg. LLF: 140.04376010481005
Iteration: 9, Func. Count: 75, Neg. LLF: 140.04365400084234
Iteration: 10, Func. Count: 83, Neg. LLF: 140.04335687681214
Iteration: 11, Func. Count: 91, Neg. LLF: 140.04248848226118
Iteration: 12, Func. Count: 99, Neg. LLF: 140.03895759965997
Iteration: 13, Func. Count: 107, Neg. LLF: 140.91851511640695
Iteration: 14, Func. Count: 116, Neg. LLF: 140.10608298115676
Iteration: 15, Func. Count: 125, Neg. LLF: 169.56297686240615
Iteration: 16, Func. Count: 135, Neg. LLF: 140.22875466382175
Iteration: 17, Func. Count: 144, Neg. LLF: 140.0255912427096
Iteration: 18, Func. Count: 152, Neg. LLF: 140.02502091403463
Iteration: 19, Func. Count: 160, Neg. LLF: 140.023889390833
Iteration: 20, Func. Count: 168, Neg. LLF: 140.0213887047542
Iteration: 21, Func. Count: 176, Neg. LLF: 140.017674727108
Iteration: 22, Func. Count: 184, Neg. LLF: 140.01382877783763
Iteration: 23, Func. Count: 192, Neg. LLF: 140.010551449124
Iteration: 24, Func. Count: 200, Neg. LLF: 140.00968920109338
Iteration: 25, Func. Count: 208, Neg. LLF: 140.0094746452297
Iteration: 26, Func. Count: 216, Neg. LLF: 140.0094697564019
Iteration: 27, Func. Count: 223, Neg. LLF: 140.00946975615324
Optimization terminated successfully (Exit mode 0)
Current function value: 140.0094697564019
Iterations: 28
Function evaluations: 223
Gradient evaluations: 27
Iteration: 1, Func. Count: 10, Neg. LLF: 171.7958394891043
Iteration: 2, Func. Count: 21, Neg. LLF: 140.037603942354
Iteration: 3, Func. Count: 30, Neg. LLF: 140.0361332504435
Iteration: 4, Func. Count: 39, Neg. LLF: 140.0345630525006
Iteration: 5, Func. Count: 48, Neg. LLF: 140.03074186645387
Iteration: 6, Func. Count: 57, Neg. LLF: 140.03027484757868
Iteration: 7, Func. Count: 66, Neg. LLF: 140.02930903955416
Iteration: 8, Func. Count: 75, Neg. LLF: 140.0288401552882
Iteration: 9, Func. Count: 84, Neg. LLF: 140.02861258699687
Iteration: 10, Func. Count: 93, Neg. LLF: 140.02853484820437
Iteration: 11, Func. Count: 102, Neg. LLF: 140.0283783570255
Iteration: 12, Func. Count: 111, Neg. LLF: 140.0280147876313
Iteration: 13, Func. Count: 120, Neg. LLF: 140.02703371357956
Iteration: 14, Func. Count: 129, Neg. LLF: 140.02450759154854
Iteration: 15, Func. Count: 138, Neg. LLF: 140.01880032362635
Iteration: 16, Func. Count: 147, Neg. LLF: 140.0188419926174
Iteration: 17, Func. Count: 157, Neg. LLF: 140.0112753470205
Iteration: 18, Func. Count: 166, Neg. LLF: 140.0109541855329
Iteration: 19, Func. Count: 175, Neg. LLF: 140.0108238984918
Iteration: 20, Func. Count: 184, Neg. LLF: 140.01082207640954
Iteration: 21, Func. Count: 192, Neg. LLF: 140.01082207643086
Optimization terminated successfully (Exit mode 0)
Current function value: 140.01082207640954
Iterations: 21
Function evaluations: 192
Gradient evaluations: 21
Iteration: 1, Func. Count: 11, Neg. LLF: 166.5655613696187
Iteration: 2, Func. Count: 23, Neg. LLF: 140.03237098328782
Iteration: 3, Func. Count: 33, Neg. LLF: 140.03136667458418
Iteration: 4, Func. Count: 43, Neg. LLF: 140.02974827371102
Iteration: 5, Func. Count: 53, Neg. LLF: 140.02847674823892
Iteration: 6, Func. Count: 63, Neg. LLF: 140.02803516053314
Iteration: 7, Func. Count: 73, Neg. LLF: 140.02793061414403
Iteration: 8, Func. Count: 83, Neg. LLF: 140.02773115752603
Iteration: 9, Func. Count: 93, Neg. LLF: 140.0273438627599
Iteration: 10, Func. Count: 103, Neg. LLF: 140.02672612683367
Iteration: 11, Func. Count: 113, Neg. LLF: 140.02625435139365
Iteration: 12, Func. Count: 123, Neg. LLF: 140.02582754283316
Iteration: 13, Func. Count: 133, Neg. LLF: 140.02542526000246
Iteration: 14, Func. Count: 143, Neg. LLF: 140.02498250055214
Iteration: 15, Func. Count: 153, Neg. LLF: 140.02358197384459
Iteration: 16, Func. Count: 163, Neg. LLF: 140.02174933785753
Iteration: 17, Func. Count: 173, Neg. LLF: 140.0188512055844
Iteration: 18, Func. Count: 183, Neg. LLF: 140.01423752598413
Iteration: 19, Func. Count: 193, Neg. LLF: 140.0114695743757
Iteration: 20, Func. Count: 203, Neg. LLF: 140.01144828408331
Iteration: 21, Func. Count: 214, Neg. LLF: 140.0111552277455
Iteration: 22, Func. Count: 224, Neg. LLF: 140.0110109916812
Iteration: 23, Func. Count: 234, Neg. LLF: 140.0109060022315
Iteration: 24, Func. Count: 244, Neg. LLF: 140.01176444861744
Iteration: 25, Func. Count: 256, Neg. LLF: 140.01086063698042
Iteration: 26, Func. Count: 266, Neg. LLF: 140.01209785219524
Optimization terminated successfully (Exit mode 0)
Current function value: 140.0108603631709
Iterations: 26
Function evaluations: 268
Gradient evaluations: 26
Iteration: 1, Func. Count: 12, Neg. LLF: 162.83953381580974
Iteration: 2, Func. Count: 25, Neg. LLF: 140.02825375501118
Iteration: 3, Func. Count: 36, Neg. LLF: 140.02817488639266
Iteration: 4, Func. Count: 48, Neg. LLF: 140.02513473416465
Iteration: 5, Func. Count: 59, Neg. LLF: 140.02453784706972
Iteration: 6, Func. Count: 70, Neg. LLF: 140.0229691148597
Iteration: 7, Func. Count: 81, Neg. LLF: 140.02248435799174
Iteration: 8, Func. Count: 92, Neg. LLF: 140.0218777885881
Iteration: 9, Func. Count: 103, Neg. LLF: 140.02181469555507
Iteration: 10, Func. Count: 114, Neg. LLF: 140.02176928757234
Iteration: 11, Func. Count: 125, Neg. LLF: 140.02171177131515
Iteration: 12, Func. Count: 136, Neg. LLF: 140.02167147883443
Iteration: 13, Func. Count: 147, Neg. LLF: 140.02160457744907
Iteration: 14, Func. Count: 158, Neg. LLF: 140.02146531212483
Iteration: 15, Func. Count: 169, Neg. LLF: 140.0211573200767
Iteration: 16, Func. Count: 180, Neg. LLF: 140.02066509313073
Iteration: 17, Func. Count: 191, Neg. LLF: 140.0201954041338
Iteration: 18, Func. Count: 202, Neg. LLF: 140.0199312276631
Iteration: 19, Func. Count: 213, Neg. LLF: 140.01990035456788
Iteration: 20, Func. Count: 223, Neg. LLF: 140.01990035456868
Optimization terminated successfully (Exit mode 0)
Current function value: 140.01990035456788
Iterations: 20
Function evaluations: 223
Gradient evaluations: 20
Iteration: 1, Func. Count: 5, Neg. LLF: 141.20604685593383
Iteration: 2, Func. Count: 9, Neg. LLF: 145.1643670172728
Iteration: 3, Func. Count: 14, Neg. LLF: 139.78246077635922
Iteration: 4, Func. Count: 18, Neg. LLF: 139.74650793627842
Iteration: 5, Func. Count: 22, Neg. LLF: 139.72695455943716
Iteration: 6, Func. Count: 26, Neg. LLF: 139.7262077281403
Iteration: 7, Func. Count: 30, Neg. LLF: 139.72606754603277
Iteration: 8, Func. Count: 34, Neg. LLF: 139.7258559252559
Iteration: 9, Func. Count: 38, Neg. LLF: 139.72575961465841
Iteration: 10, Func. Count: 42, Neg. LLF: 139.72574042281758
Iteration: 11, Func. Count: 46, Neg. LLF: 139.72573935467
Iteration: 12, Func. Count: 49, Neg. LLF: 139.72573935466724
Optimization terminated successfully (Exit mode 0)
Current function value: 139.72573935467
Iterations: 12
Function evaluations: 49
Gradient evaluations: 12
Iteration: 1, Func. Count: 6, Neg. LLF: 179.3788189455881
Iteration: 2, Func. Count: 13, Neg. LLF: 140.04367811643283
Iteration: 3, Func. Count: 18, Neg. LLF: 140.04380433287477
Iteration: 4, Func. Count: 24, Neg. LLF: 140.04362751980892
Iteration: 5, Func. Count: 29, Neg. LLF: 140.04360575124448
Iteration: 6, Func. Count: 34, Neg. LLF: 140.04349621435864
Iteration: 7, Func. Count: 39, Neg. LLF: 140.04293032215665
Iteration: 8, Func. Count: 44, Neg. LLF: 140.0395691311924
Iteration: 9, Func. Count: 49, Neg. LLF: 140.04925471250738
Iteration: 10, Func. Count: 55, Neg. LLF: 140.9566532943152
Iteration: 11, Func. Count: 61, Neg. LLF: 140.5511725512106
Iteration: 12, Func. Count: 67, Neg. LLF: 144.69322097398413
Iteration: 13, Func. Count: 75, Neg. LLF: 140.02141507961807
Iteration: 14, Func. Count: 80, Neg. LLF: 140.0209644665516
Iteration: 15, Func. Count: 85, Neg. LLF: 140.01849509321727
Iteration: 16, Func. Count: 90, Neg. LLF: 140.01031731678205
Iteration: 17, Func. Count: 95, Neg. LLF: 140.01062234905413
Iteration: 18, Func. Count: 101, Neg. LLF: 140.00948606547118
Iteration: 19, Func. Count: 106, Neg. LLF: 140.00947084964434
Iteration: 20, Func. Count: 111, Neg. LLF: 140.0094695118845
Iteration: 21, Func. Count: 115, Neg. LLF: 140.00946951185983
Optimization terminated successfully (Exit mode 0)
Current function value: 140.0094695118845
Iterations: 22
Function evaluations: 115
Gradient evaluations: 21
Iteration: 1, Func. Count: 7, Neg. LLF: 171.64573538763108
Iteration: 2, Func. Count: 15, Neg. LLF: 140.0365507643907
Iteration: 3, Func. Count: 21, Neg. LLF: 140.03642024209987
Iteration: 4, Func. Count: 28, Neg. LLF: 140.03564189981722
Iteration: 5, Func. Count: 34, Neg. LLF: 140.03360085888252
Iteration: 6, Func. Count: 40, Neg. LLF: 140.02771811282145
Iteration: 7, Func. Count: 46, Neg. LLF: 140.02761262813777
Iteration: 8, Func. Count: 52, Neg. LLF: 140.02753579320046
Iteration: 9, Func. Count: 58, Neg. LLF: 140.02739852708277
Iteration: 10, Func. Count: 64, Neg. LLF: 140.02696161779895
Iteration: 11, Func. Count: 70, Neg. LLF: 140.02587641462188
Iteration: 12, Func. Count: 76, Neg. LLF: 140.02316415812655
Iteration: 13, Func. Count: 82, Neg. LLF: 140.0201151624613
Iteration: 14, Func. Count: 88, Neg. LLF: 140.0161069913137
Iteration: 15, Func. Count: 94, Neg. LLF: 140.01092999667796
Iteration: 16, Func. Count: 100, Neg. LLF: 140.01086890917838
Iteration: 17, Func. Count: 106, Neg. LLF: 140.01075495890208
Iteration: 18, Func. Count: 112, Neg. LLF: 140.01069924139722
Iteration: 19, Func. Count: 118, Neg. LLF: 140.01023228850426
Iteration: 20, Func. Count: 124, Neg. LLF: 140.0057077945939
Iteration: 21, Func. Count: 130, Neg. LLF: 140.74084239089518
Iteration: 22, Func. Count: 138, Neg. LLF: 142.96635660765125
Iteration: 23, Func. Count: 146, Neg. LLF: 139.98065954770163
Iteration: 24, Func. Count: 152, Neg. LLF: 139.98115606527415
Iteration: 25, Func. Count: 159, Neg. LLF: 139.9760061332934
Iteration: 26, Func. Count: 165, Neg. LLF: 139.9598456473027
Iteration: 27, Func. Count: 171, Neg. LLF: 139.95818117489247
Iteration: 28, Func. Count: 178, Neg. LLF: 139.94609584807725
Iteration: 29, Func. Count: 184, Neg. LLF: 139.94551993188128
Iteration: 30, Func. Count: 190, Neg. LLF: 139.94546134595447
Iteration: 31, Func. Count: 195, Neg. LLF: 139.94546134604158
Optimization terminated successfully (Exit mode 0)
Current function value: 139.94546134595447
Iterations: 32
Function evaluations: 195
Gradient evaluations: 31
Iteration: 1, Func. Count: 8, Neg. LLF: 167.0523517952282
Iteration: 2, Func. Count: 17, Neg. LLF: 140.03247450393215
Iteration: 3, Func. Count: 24, Neg. LLF: 140.03164025129263
Iteration: 4, Func. Count: 31, Neg. LLF: 140.02978823298028
Iteration: 5, Func. Count: 38, Neg. LLF: 140.02846582607782
Iteration: 6, Func. Count: 45, Neg. LLF: 140.0284228447799
Iteration: 7, Func. Count: 52, Neg. LLF: 140.0283324312749
Iteration: 8, Func. Count: 59, Neg. LLF: 140.0281155493233
Iteration: 9, Func. Count: 66, Neg. LLF: 140.0275563701413
Iteration: 10, Func. Count: 73, Neg. LLF: 140.02633649857862
Iteration: 11, Func. Count: 80, Neg. LLF: 140.02446165026126
Iteration: 12, Func. Count: 87, Neg. LLF: 140.0225232025655
Iteration: 13, Func. Count: 94, Neg. LLF: 140.0211404923877
Iteration: 14, Func. Count: 101, Neg. LLF: 140.02099779697687
Iteration: 15, Func. Count: 108, Neg. LLF: 140.020941257457
Iteration: 16, Func. Count: 115, Neg. LLF: 140.02076616252268
Iteration: 17, Func. Count: 122, Neg. LLF: 140.0197889677962
Iteration: 18, Func. Count: 129, Neg. LLF: 140.0177454573902
Iteration: 19, Func. Count: 136, Neg. LLF: 140.01146087464414
Iteration: 20, Func. Count: 143, Neg. LLF: 140.0111582988451
Iteration: 21, Func. Count: 150, Neg. LLF: 140.01086320392506
Iteration: 22, Func. Count: 157, Neg. LLF: 140.0108293534811
Iteration: 23, Func. Count: 164, Neg. LLF: 140.01071632742762
Iteration: 24, Func. Count: 171, Neg. LLF: 140.01064180523736
Iteration: 25, Func. Count: 178, Neg. LLF: 142.90867317331964
Iteration: 26, Func. Count: 187, Neg. LLF: 142.08071507380163
Iteration: 27, Func. Count: 195, Neg. LLF: 139.98191977854722
Iteration: 28, Func. Count: 202, Neg. LLF: 139.97750240368308
Iteration: 29, Func. Count: 209, Neg. LLF: 139.97731832367788
Iteration: 30, Func. Count: 217, Neg. LLF: 139.97311640812913
Iteration: 31, Func. Count: 224, Neg. LLF: 139.964703858009
Iteration: 32, Func. Count: 231, Neg. LLF: 139.95667494421664
Iteration: 33, Func. Count: 238, Neg. LLF: 139.94730933768273
Iteration: 34, Func. Count: 245, Neg. LLF: 139.94549539700608
Iteration: 35, Func. Count: 252, Neg. LLF: 139.94546206710757
Iteration: 36, Func. Count: 259, Neg. LLF: 139.94546127496437
Optimization terminated successfully (Exit mode 0)
Current function value: 139.94546127496437
Iterations: 37
Function evaluations: 259
Gradient evaluations: 36
Iteration: 1, Func. Count: 9, Neg. LLF: 163.3799704497484
Iteration: 2, Func. Count: 19, Neg. LLF: 140.0284056722818
Iteration: 3, Func. Count: 27, Neg. LLF: 140.0267776859296
Iteration: 4, Func. Count: 35, Neg. LLF: 140.02539498735686
Iteration: 5, Func. Count: 43, Neg. LLF: 140.02481860995042
Iteration: 6, Func. Count: 51, Neg. LLF: 140.02333980709915
Iteration: 7, Func. Count: 59, Neg. LLF: 140.02308746480838
Iteration: 8, Func. Count: 67, Neg. LLF: 140.02216161646814
Iteration: 9, Func. Count: 75, Neg. LLF: 140.02207042396267
Iteration: 10, Func. Count: 83, Neg. LLF: 140.02186210456665
Iteration: 11, Func. Count: 91, Neg. LLF: 140.0213863751696
Iteration: 12, Func. Count: 99, Neg. LLF: 140.02135684873974
Iteration: 13, Func. Count: 107, Neg. LLF: 140.021336586779
Iteration: 14, Func. Count: 115, Neg. LLF: 140.02120829825196
Iteration: 15, Func. Count: 123, Neg. LLF: 140.02065501565244
Iteration: 16, Func. Count: 131, Neg. LLF: 140.02026404939858
Iteration: 17, Func. Count: 139, Neg. LLF: 140.01995084454703
Iteration: 18, Func. Count: 147, Neg. LLF: 140.01990283030997
Iteration: 19, Func. Count: 155, Neg. LLF: 140.0199001748623
Iteration: 20, Func. Count: 162, Neg. LLF: 140.01990017487927
Optimization terminated successfully (Exit mode 0)
Current function value: 140.0199001748623
Iterations: 20
Function evaluations: 162
Gradient evaluations: 20
Iteration: 1, Func. Count: 6, Neg. LLF: 141.97340232022748
Iteration: 2, Func. Count: 12, Neg. LLF: 144.73428540496042
Iteration: 3, Func. Count: 18, Neg. LLF: 139.65283955699388
Iteration: 4, Func. Count: 23, Neg. LLF: 139.62579813984107
Iteration: 5, Func. Count: 28, Neg. LLF: 139.62331718906785
Iteration: 6, Func. Count: 33, Neg. LLF: 139.6219831395564
Iteration: 7, Func. Count: 38, Neg. LLF: 139.6202782171783
Iteration: 8, Func. Count: 43, Neg. LLF: 139.61994659186823
Iteration: 9, Func. Count: 48, Neg. LLF: 139.6198964564773
Iteration: 10, Func. Count: 53, Neg. LLF: 139.61988980462203
Iteration: 11, Func. Count: 58, Neg. LLF: 139.61988916258414
Optimization terminated successfully (Exit mode 0)
Current function value: 139.61988916258414
Iterations: 11
Function evaluations: 58
Gradient evaluations: 11
Iteration: 1, Func. Count: 7, Neg. LLF: 142.13768316876573
Iteration: 2, Func. Count: 15, Neg. LLF: 144.57736367170196
Iteration: 3, Func. Count: 22, Neg. LLF: 139.5071114940479
Iteration: 4, Func. Count: 28, Neg. LLF: 139.48767300686325
Iteration: 5, Func. Count: 34, Neg. LLF: 139.48160471023198
Iteration: 6, Func. Count: 40, Neg. LLF: 139.476385168582
Iteration: 7, Func. Count: 46, Neg. LLF: 139.4363989859322
Iteration: 8, Func. Count: 52, Neg. LLF: 138.68726663779944
Iteration: 9, Func. Count: 58, Neg. LLF: 138.72312925380623
Iteration: 10, Func. Count: 65, Neg. LLF: 138.2655038375093
Iteration: 11, Func. Count: 71, Neg. LLF: 138.20119832716975
Iteration: 12, Func. Count: 77, Neg. LLF: 138.0977074255111
Iteration: 13, Func. Count: 83, Neg. LLF: 138.02593039535287
Iteration: 14, Func. Count: 89, Neg. LLF: 138.49976494001072
Iteration: 15, Func. Count: 96, Neg. LLF: 137.99057901319185
Iteration: 16, Func. Count: 102, Neg. LLF: 137.97552559088695
Iteration: 17, Func. Count: 108, Neg. LLF: 137.97216286928625
Iteration: 18, Func. Count: 114, Neg. LLF: 137.9715828983647
Iteration: 19, Func. Count: 120, Neg. LLF: 137.97152885684682
Iteration: 20, Func. Count: 126, Neg. LLF: 137.97152278855782
Iteration: 21, Func. Count: 132, Neg. LLF: 137.97152221657322
Optimization terminated successfully (Exit mode 0)
Current function value: 137.97152221657322
Iterations: 21
Function evaluations: 132
Gradient evaluations: 21
Iteration: 1, Func. Count: 8, Neg. LLF: 141.97766521796046
Iteration: 2, Func. Count: 17, Neg. LLF: 144.78359407091548
Iteration: 3, Func. Count: 25, Neg. LLF: 138.24925891381793
Iteration: 4, Func. Count: 32, Neg. LLF: 138.42553253063113
Iteration: 5, Func. Count: 40, Neg. LLF: 137.95729593693034
Iteration: 6, Func. Count: 47, Neg. LLF: 137.3712262559743
Iteration: 7, Func. Count: 54, Neg. LLF: 137.25381282446503
Iteration: 8, Func. Count: 61, Neg. LLF: 137.0958331148588
Iteration: 9, Func. Count: 68, Neg. LLF: 137.0440349534125
Iteration: 10, Func. Count: 75, Neg. LLF: 137.00132822998322
Iteration: 11, Func. Count: 82, Neg. LLF: 136.94904594170146
Iteration: 12, Func. Count: 89, Neg. LLF: 136.719106850677
Iteration: 13, Func. Count: 96, Neg. LLF: 137.3556389360613
Iteration: 14, Func. Count: 104, Neg. LLF: 136.68484154184267
Iteration: 15, Func. Count: 112, Neg. LLF: 137.59942467915636
Iteration: 16, Func. Count: 120, Neg. LLF: 136.6821658392849
Iteration: 17, Func. Count: 128, Neg. LLF: 136.65691782305132
Iteration: 18, Func. Count: 135, Neg. LLF: 136.65675014594288
Iteration: 19, Func. Count: 142, Neg. LLF: 136.65673862460525
Iteration: 20, Func. Count: 149, Neg. LLF: 136.6567365243375
Iteration: 21, Func. Count: 155, Neg. LLF: 136.65673652428262
Optimization terminated successfully (Exit mode 0)
Current function value: 136.6567365243375
Iterations: 21
Function evaluations: 155
Gradient evaluations: 21
Iteration: 1, Func. Count: 9, Neg. LLF: 142.3788845384212
Iteration: 2, Func. Count: 19, Neg. LLF: 144.56387381300618
Iteration: 3, Func. Count: 28, Neg. LLF: 138.66512859926664
Iteration: 4, Func. Count: 36, Neg. LLF: 138.37011327717673
Iteration: 5, Func. Count: 44, Neg. LLF: 137.92303929194173
Iteration: 6, Func. Count: 52, Neg. LLF: 137.70139781832756
Iteration: 7, Func. Count: 60, Neg. LLF: 136.7997749724627
Iteration: 8, Func. Count: 68, Neg. LLF: 136.84768421589314
Iteration: 9, Func. Count: 77, Neg. LLF: 136.72501734405887
Iteration: 10, Func. Count: 85, Neg. LLF: 136.70661362464358
Iteration: 11, Func. Count: 93, Neg. LLF: 136.69542205751517
Iteration: 12, Func. Count: 101, Neg. LLF: 136.6961695602437
Iteration: 13, Func. Count: 110, Neg. LLF: 162.1289557239573
Iteration: 14, Func. Count: 119, Neg. LLF: 136.6400791597924
Iteration: 15, Func. Count: 127, Neg. LLF: 136.62923343228974
Iteration: 16, Func. Count: 135, Neg. LLF: 136.6271855594261
Iteration: 17, Func. Count: 143, Neg. LLF: 136.62691695988408
Iteration: 18, Func. Count: 151, Neg. LLF: 136.62687598659863
Iteration: 19, Func. Count: 159, Neg. LLF: 136.6268739797403
Iteration: 20, Func. Count: 166, Neg. LLF: 136.6268739798685
Optimization terminated successfully (Exit mode 0)
Current function value: 136.6268739797403
Iterations: 20
Function evaluations: 166
Gradient evaluations: 20
Iteration: 1, Func. Count: 10, Neg. LLF: 142.38851238133174
Iteration: 2, Func. Count: 21, Neg. LLF: 144.59471764723247
Iteration: 3, Func. Count: 31, Neg. LLF: 139.55143450093982
Iteration: 4, Func. Count: 41, Neg. LLF: 138.2591751271202
Iteration: 5, Func. Count: 50, Neg. LLF: 137.96194221353446
Iteration: 6, Func. Count: 59, Neg. LLF: 137.51357623139637
Iteration: 7, Func. Count: 68, Neg. LLF: 137.2351525489286
Iteration: 8, Func. Count: 77, Neg. LLF: 137.77967934987691
Iteration: 9, Func. Count: 87, Neg. LLF: 144.4038459044127
Iteration: 10, Func. Count: 97, Neg. LLF: 136.84015838696087
Iteration: 11, Func. Count: 106, Neg. LLF: 136.77700120629817
Iteration: 12, Func. Count: 115, Neg. LLF: 136.75498005218566
Iteration: 13, Func. Count: 124, Neg. LLF: 136.67572157348175
Iteration: 14, Func. Count: 133, Neg. LLF: 136.86481057400803
Iteration: 15, Func. Count: 143, Neg. LLF: 136.71384152926584
Iteration: 16, Func. Count: 153, Neg. LLF: 136.6397829688398
Iteration: 17, Func. Count: 162, Neg. LLF: 136.6303970362053
Iteration: 18, Func. Count: 171, Neg. LLF: 136.6310074163697
Iteration: 19, Func. Count: 181, Neg. LLF: 136.62694947860177
Iteration: 20, Func. Count: 190, Neg. LLF: 136.62687796184727
Iteration: 21, Func. Count: 199, Neg. LLF: 136.62687366749384
Iteration: 22, Func. Count: 207, Neg. LLF: 136.62687367399718
Optimization terminated successfully (Exit mode 0)
Current function value: 136.62687366749384
Iterations: 22
Function evaluations: 207
Gradient evaluations: 22
Iteration: 1, Func. Count: 7, Neg. LLF: 140.91049784767853
Iteration: 2, Func. Count: 14, Neg. LLF: 141.9952874127974
Iteration: 3, Func. Count: 21, Neg. LLF: 138.1316521858558
Iteration: 4, Func. Count: 27, Neg. LLF: 138.1001272928144
Iteration: 5, Func. Count: 33, Neg. LLF: 138.08386959851543
Iteration: 6, Func. Count: 39, Neg. LLF: 138.08096376900616
Iteration: 7, Func. Count: 45, Neg. LLF: 138.0805400862446
Iteration: 8, Func. Count: 51, Neg. LLF: 138.08029423748965
Iteration: 9, Func. Count: 57, Neg. LLF: 138.08026940698255
Iteration: 10, Func. Count: 63, Neg. LLF: 138.08025473167666
Iteration: 11, Func. Count: 69, Neg. LLF: 138.08025233982562
Iteration: 12, Func. Count: 74, Neg. LLF: 138.08025233982724
Optimization terminated successfully (Exit mode 0)
Current function value: 138.08025233982562
Iterations: 12
Function evaluations: 74
Gradient evaluations: 12
Iteration: 1, Func. Count: 8, Neg. LLF: 142.14218543620527
Iteration: 2, Func. Count: 17, Neg. LLF: 144.57586368580294
Iteration: 3, Func. Count: 25, Neg. LLF: 139.50553534329936
Iteration: 4, Func. Count: 32, Neg. LLF: 139.48673488456143
Iteration: 5, Func. Count: 39, Neg. LLF: 139.48188306766366
Iteration: 6, Func. Count: 46, Neg. LLF: 139.47533830816897
Iteration: 7, Func. Count: 53, Neg. LLF: 139.4263424515264
Iteration: 8, Func. Count: 60, Neg. LLF: 139.03505497152085
Iteration: 9, Func. Count: 67, Neg. LLF: 139.3606607960772
Iteration: 10, Func. Count: 76, Neg. LLF: 138.65493844532205
Iteration: 11, Func. Count: 83, Neg. LLF: 138.28951185036422
Iteration: 12, Func. Count: 90, Neg. LLF: 138.03482689894076
Iteration: 13, Func. Count: 97, Neg. LLF: 137.98995032020008
Iteration: 14, Func. Count: 104, Neg. LLF: 137.98680552773865
Iteration: 15, Func. Count: 112, Neg. LLF: 137.9864324697081
Iteration: 16, Func. Count: 120, Neg. LLF: 137.97152546035224
Iteration: 17, Func. Count: 127, Neg. LLF: 137.97152251710747
Iteration: 18, Func. Count: 133, Neg. LLF: 137.97152250683553
Optimization terminated successfully (Exit mode 0)
Current function value: 137.97152251710747
Iterations: 18
Function evaluations: 133
Gradient evaluations: 18
Iteration: 1, Func. Count: 9, Neg. LLF: 141.92412205522223
Iteration: 2, Func. Count: 19, Neg. LLF: 144.80881593025435
Iteration: 3, Func. Count: 28, Neg. LLF: 138.23401482740312
Iteration: 4, Func. Count: 36, Neg. LLF: 138.44099743344483
Iteration: 5, Func. Count: 45, Neg. LLF: 137.96331952533544
Iteration: 6, Func. Count: 53, Neg. LLF: 137.39199399611843
Iteration: 7, Func. Count: 61, Neg. LLF: 137.26761033172002
Iteration: 8, Func. Count: 69, Neg. LLF: 137.1038117581144
Iteration: 9, Func. Count: 77, Neg. LLF: 137.04575586246563
Iteration: 10, Func. Count: 85, Neg. LLF: 137.00482785301904
Iteration: 11, Func. Count: 93, Neg. LLF: 136.95819276426158
Iteration: 12, Func. Count: 101, Neg. LLF: 136.71858251503315
Iteration: 13, Func. Count: 109, Neg. LLF: 137.3289765227493
Iteration: 14, Func. Count: 118, Neg. LLF: 136.69140558383432
Iteration: 15, Func. Count: 127, Neg. LLF: 136.70425697665436
Iteration: 16, Func. Count: 136, Neg. LLF: 136.6588295553499
Iteration: 17, Func. Count: 144, Neg. LLF: 136.6567711118989
Iteration: 18, Func. Count: 152, Neg. LLF: 136.65674669330662
Iteration: 19, Func. Count: 160, Neg. LLF: 136.6567364990692
Iteration: 20, Func. Count: 167, Neg. LLF: 136.6567364990595
Optimization terminated successfully (Exit mode 0)
Current function value: 136.6567364990692
Iterations: 20
Function evaluations: 167
Gradient evaluations: 20
Iteration: 1, Func. Count: 10, Neg. LLF: 142.29399245950418
Iteration: 2, Func. Count: 21, Neg. LLF: 144.59562661110323
Iteration: 3, Func. Count: 31, Neg. LLF: 138.64648835257162
Iteration: 4, Func. Count: 40, Neg. LLF: 138.35532801810484
Iteration: 5, Func. Count: 49, Neg. LLF: 137.88240315406608
Iteration: 6, Func. Count: 58, Neg. LLF: 137.68646943578457
Iteration: 7, Func. Count: 67, Neg. LLF: 136.8383358542245
Iteration: 8, Func. Count: 76, Neg. LLF: 137.08072076041
Iteration: 9, Func. Count: 86, Neg. LLF: 136.72513718699634
Iteration: 10, Func. Count: 95, Neg. LLF: 136.70506496498288
Iteration: 11, Func. Count: 104, Neg. LLF: 136.69560612290664
Iteration: 12, Func. Count: 113, Neg. LLF: 136.68543482224527
Iteration: 13, Func. Count: 122, Neg. LLF: 150.87220474379123
Iteration: 14, Func. Count: 132, Neg. LLF: 136.6734602353182
Iteration: 15, Func. Count: 142, Neg. LLF: 136.63003452505367
Iteration: 16, Func. Count: 151, Neg. LLF: 136.6273251663163
Iteration: 17, Func. Count: 160, Neg. LLF: 136.62688599647757
Iteration: 18, Func. Count: 169, Neg. LLF: 136.6268756067865
Iteration: 19, Func. Count: 178, Neg. LLF: 136.62687369843965
Iteration: 20, Func. Count: 186, Neg. LLF: 136.6268736985286
Optimization terminated successfully (Exit mode 0)
Current function value: 136.62687369843965
Iterations: 20
Function evaluations: 186
Gradient evaluations: 20
Iteration: 1, Func. Count: 11, Neg. LLF: 142.33387131875602
Iteration: 2, Func. Count: 23, Neg. LLF: 144.6203568285404
Iteration: 3, Func. Count: 34, Neg. LLF: 139.56383116934458
Iteration: 4, Func. Count: 45, Neg. LLF: 138.25174153239016
Iteration: 5, Func. Count: 55, Neg. LLF: 137.9554482924605
Iteration: 6, Func. Count: 65, Neg. LLF: 137.5231678478181
Iteration: 7, Func. Count: 75, Neg. LLF: 137.2407436527778
Iteration: 8, Func. Count: 85, Neg. LLF: 136.84109640361459
Iteration: 9, Func. Count: 95, Neg. LLF: 137.2486748308202
Iteration: 10, Func. Count: 106, Neg. LLF: 136.8389392350677
Iteration: 11, Func. Count: 117, Neg. LLF: 136.7598387874704
Iteration: 12, Func. Count: 127, Neg. LLF: 136.71111649779596
Iteration: 13, Func. Count: 137, Neg. LLF: 136.65768900839956
Iteration: 14, Func. Count: 147, Neg. LLF: 136.64350063049716
Iteration: 15, Func. Count: 157, Neg. LLF: 136.63595199505718
Iteration: 16, Func. Count: 167, Neg. LLF: 136.63321729845524
Iteration: 17, Func. Count: 177, Neg. LLF: 136.62985518991806
Iteration: 18, Func. Count: 187, Neg. LLF: 136.62781135079385
Iteration: 19, Func. Count: 197, Neg. LLF: 136.62689625672684
Iteration: 20, Func. Count: 207, Neg. LLF: 136.62687900360976
Iteration: 21, Func. Count: 217, Neg. LLF: 136.62687364419244
Iteration: 22, Func. Count: 226, Neg. LLF: 136.62687365059227
Optimization terminated successfully (Exit mode 0)
Current function value: 136.62687364419244
Iterations: 22
Function evaluations: 226
Gradient evaluations: 22
Iteration: 1, Func. Count: 8, Neg. LLF: 140.37421688937576
Iteration: 2, Func. Count: 15, Neg. LLF: 141.025004701576
Iteration: 3, Func. Count: 23, Neg. LLF: 138.21445438365006
Iteration: 4, Func. Count: 30, Neg. LLF: 138.2085430314593
Iteration: 5, Func. Count: 38, Neg. LLF: 138.0863561442638
Iteration: 6, Func. Count: 45, Neg. LLF: 138.08179342540174
Iteration: 7, Func. Count: 52, Neg. LLF: 138.08061034757836
Iteration: 8, Func. Count: 59, Neg. LLF: 138.08027366848097
Iteration: 9, Func. Count: 66, Neg. LLF: 138.08025237806754
Iteration: 10, Func. Count: 72, Neg. LLF: 138.0802525861529
Optimization terminated successfully (Exit mode 0)
Current function value: 138.08025237806754
Iterations: 10
Function evaluations: 72
Gradient evaluations: 10
Iteration: 1, Func. Count: 9, Neg. LLF: 142.1721623412114
Iteration: 2, Func. Count: 19, Neg. LLF: 144.54194761397912
Iteration: 3, Func. Count: 28, Neg. LLF: 139.50670308194242
Iteration: 4, Func. Count: 36, Neg. LLF: 139.48663868952428
Iteration: 5, Func. Count: 44, Neg. LLF: 139.48204519346604
Iteration: 6, Func. Count: 52, Neg. LLF: 139.4754590036872
Iteration: 7, Func. Count: 60, Neg. LLF: 139.4258929850634
Iteration: 8, Func. Count: 68, Neg. LLF: 139.38969094598306
Iteration: 9, Func. Count: 76, Neg. LLF: 139.39169197792103
Iteration: 10, Func. Count: 86, Neg. LLF: 138.74937388369935
Iteration: 11, Func. Count: 94, Neg. LLF: 138.44207794054577
Iteration: 12, Func. Count: 102, Neg. LLF: 138.166936015846
Iteration: 13, Func. Count: 110, Neg. LLF: 138.0460289725772
Iteration: 14, Func. Count: 118, Neg. LLF: 137.98571904622708
Iteration: 15, Func. Count: 126, Neg. LLF: 137.97533717998368
Iteration: 16, Func. Count: 134, Neg. LLF: 137.98035735487406
Iteration: 17, Func. Count: 143, Neg. LLF: 137.97171473327276
Iteration: 18, Func. Count: 151, Neg. LLF: 137.9715472617537
Iteration: 19, Func. Count: 159, Neg. LLF: 137.97152225482552
Iteration: 20, Func. Count: 166, Neg. LLF: 137.97152224455937
Optimization terminated successfully (Exit mode 0)
Current function value: 137.97152225482552
Iterations: 20
Function evaluations: 166
Gradient evaluations: 20
Iteration: 1, Func. Count: 10, Neg. LLF: 141.90729425465872
Iteration: 2, Func. Count: 21, Neg. LLF: 144.795552443698
Iteration: 3, Func. Count: 31, Neg. LLF: 138.22711763557598
Iteration: 4, Func. Count: 40, Neg. LLF: 138.39442897617312
Iteration: 5, Func. Count: 50, Neg. LLF: 137.95387590716726
Iteration: 6, Func. Count: 59, Neg. LLF: 137.3908242246767
Iteration: 7, Func. Count: 68, Neg. LLF: 137.26484023597487
Iteration: 8, Func. Count: 77, Neg. LLF: 137.10444918490705
Iteration: 9, Func. Count: 86, Neg. LLF: 137.04823872579223
Iteration: 10, Func. Count: 95, Neg. LLF: 137.00718659956075
Iteration: 11, Func. Count: 104, Neg. LLF: 136.95900229171144
Iteration: 12, Func. Count: 113, Neg. LLF: 136.7224636075927
Iteration: 13, Func. Count: 122, Neg. LLF: 137.96162056561198
Iteration: 14, Func. Count: 132, Neg. LLF: 136.68726543933946
Iteration: 15, Func. Count: 141, Neg. LLF: 136.68832512508703
Iteration: 16, Func. Count: 151, Neg. LLF: 136.65958525321855
Iteration: 17, Func. Count: 160, Neg. LLF: 136.65678198813507
Iteration: 18, Func. Count: 169, Neg. LLF: 136.65676557767475
Iteration: 19, Func. Count: 178, Neg. LLF: 136.65673663096553
Iteration: 20, Func. Count: 186, Neg. LLF: 136.6567366310535
Optimization terminated successfully (Exit mode 0)
Current function value: 136.65673663096553
Iterations: 20
Function evaluations: 186
Gradient evaluations: 20
Iteration: 1, Func. Count: 11, Neg. LLF: 142.26232339769712
Iteration: 2, Func. Count: 23, Neg. LLF: 144.57719143036903
Iteration: 3, Func. Count: 34, Neg. LLF: 138.63718069068813
Iteration: 4, Func. Count: 44, Neg. LLF: 138.36968468604312
Iteration: 5, Func. Count: 54, Neg. LLF: 137.90969463726339
Iteration: 6, Func. Count: 64, Neg. LLF: 137.80053826426942
Iteration: 7, Func. Count: 75, Neg. LLF: 137.58834184536624
Iteration: 8, Func. Count: 86, Neg. LLF: 138.5253954813149
Iteration: 9, Func. Count: 97, Neg. LLF: 137.3967474429975
Iteration: 10, Func. Count: 108, Neg. LLF: 136.68818610451135
Iteration: 11, Func. Count: 118, Neg. LLF: 136.67738180574582
Iteration: 12, Func. Count: 128, Neg. LLF: 136.71327092177097
Iteration: 13, Func. Count: 139, Neg. LLF: 136.66601121893743
Iteration: 14, Func. Count: 149, Neg. LLF: 136.63580689773005
Iteration: 15, Func. Count: 159, Neg. LLF: 136.63011672208063
Iteration: 16, Func. Count: 169, Neg. LLF: 136.6270044316169
Iteration: 17, Func. Count: 179, Neg. LLF: 136.62692923823684
Iteration: 18, Func. Count: 189, Neg. LLF: 136.62687528260747
Iteration: 19, Func. Count: 199, Neg. LLF: 136.62687385269555
Iteration: 20, Func. Count: 208, Neg. LLF: 136.62687385256456
Optimization terminated successfully (Exit mode 0)
Current function value: 136.62687385269555
Iterations: 20
Function evaluations: 208
Gradient evaluations: 20
Iteration: 1, Func. Count: 12, Neg. LLF: 142.28604141835072
Iteration: 2, Func. Count: 25, Neg. LLF: 144.6002066008042
Iteration: 3, Func. Count: 37, Neg. LLF: 139.5692420677319
Iteration: 4, Func. Count: 49, Neg. LLF: 138.2395043035209
Iteration: 5, Func. Count: 60, Neg. LLF: 137.94989494218984
Iteration: 6, Func. Count: 71, Neg. LLF: 137.5036452003364
Iteration: 7, Func. Count: 82, Neg. LLF: 137.20863775406687
Iteration: 8, Func. Count: 93, Neg. LLF: 136.93627969658482
Iteration: 9, Func. Count: 104, Neg. LLF: 140.2340668515125
Iteration: 10, Func. Count: 116, Neg. LLF: 136.79953858042236
Iteration: 11, Func. Count: 127, Neg. LLF: 136.7736081966622
Iteration: 12, Func. Count: 138, Neg. LLF: 136.68193214971353
Iteration: 13, Func. Count: 149, Neg. LLF: 136.72308280899588
Iteration: 14, Func. Count: 161, Neg. LLF: 136.77095210752208
Iteration: 15, Func. Count: 173, Neg. LLF: 136.6375147999775
Iteration: 16, Func. Count: 184, Neg. LLF: 136.64361722239698
Iteration: 17, Func. Count: 196, Neg. LLF: 136.63442554157007
Iteration: 18, Func. Count: 208, Neg. LLF: 136.62718865144618
Iteration: 19, Func. Count: 220, Neg. LLF: 136.6268813431113
Iteration: 20, Func. Count: 231, Neg. LLF: 136.62687372912512
Iteration: 21, Func. Count: 241, Neg. LLF: 136.62687373570841
Optimization terminated successfully (Exit mode 0)
Current function value: 136.62687372912512
Iterations: 21
Function evaluations: 241
Gradient evaluations: 21
Iteration: 1, Func. Count: 9, Neg. LLF: 141.8628368705338
Iteration: 2, Func. Count: 18, Neg. LLF: 140.31412507281004
Iteration: 3, Func. Count: 27, Neg. LLF: 139.39651691292633
Iteration: 4, Func. Count: 36, Neg. LLF: 138.1389802414454
Iteration: 5, Func. Count: 44, Neg. LLF: 138.1032979991016
Iteration: 6, Func. Count: 52, Neg. LLF: 138.08509491664498
Iteration: 7, Func. Count: 60, Neg. LLF: 138.08078581701332
Iteration: 8, Func. Count: 68, Neg. LLF: 138.08038282327522
Iteration: 9, Func. Count: 76, Neg. LLF: 138.0803015810324
Iteration: 10, Func. Count: 84, Neg. LLF: 138.0802706877851
Iteration: 11, Func. Count: 92, Neg. LLF: 138.08025522889528
Iteration: 12, Func. Count: 100, Neg. LLF: 138.08025242566242
Iteration: 13, Func. Count: 107, Neg. LLF: 138.08025261475717
Optimization terminated successfully (Exit mode 0)
Current function value: 138.08025242566242
Iterations: 13
Function evaluations: 107
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 142.1769376152161
Iteration: 2, Func. Count: 21, Neg. LLF: 144.5351181695655
Iteration: 3, Func. Count: 31, Neg. LLF: 139.50746916598746
Iteration: 4, Func. Count: 40, Neg. LLF: 139.4865373746797
Iteration: 5, Func. Count: 49, Neg. LLF: 139.48209846426198
Iteration: 6, Func. Count: 58, Neg. LLF: 139.4754075063541
Iteration: 7, Func. Count: 67, Neg. LLF: 139.42511288865788
Iteration: 8, Func. Count: 76, Neg. LLF: 139.65020744308725
Iteration: 9, Func. Count: 86, Neg. LLF: 139.05035749078672
Iteration: 10, Func. Count: 95, Neg. LLF: 139.72204376502884
Iteration: 11, Func. Count: 105, Neg. LLF: 138.30966405223973
Iteration: 12, Func. Count: 114, Neg. LLF: 138.04443423944215
Iteration: 13, Func. Count: 123, Neg. LLF: 143.95207634516984
Iteration: 14, Func. Count: 134, Neg. LLF: 138.03236278027774
Iteration: 15, Func. Count: 144, Neg. LLF: 137.9773957874232
Iteration: 16, Func. Count: 153, Neg. LLF: 137.9720930623625
Iteration: 17, Func. Count: 162, Neg. LLF: 137.97152687772328
Iteration: 18, Func. Count: 171, Neg. LLF: 137.9715244821723
Iteration: 19, Func. Count: 180, Neg. LLF: 137.9715222421371
Iteration: 20, Func. Count: 188, Neg. LLF: 137.9715222319298
Optimization terminated successfully (Exit mode 0)
Current function value: 137.9715222421371
Iterations: 20
Function evaluations: 188
Gradient evaluations: 20
Iteration: 1, Func. Count: 11, Neg. LLF: 141.9184968237854
Iteration: 2, Func. Count: 23, Neg. LLF: 144.78629480284962
Iteration: 3, Func. Count: 34, Neg. LLF: 138.2298742244268
Iteration: 4, Func. Count: 44, Neg. LLF: 138.36824992152913
Iteration: 5, Func. Count: 55, Neg. LLF: 137.94737323565354
Iteration: 6, Func. Count: 65, Neg. LLF: 137.3821860343298
Iteration: 7, Func. Count: 75, Neg. LLF: 137.2584758562064
Iteration: 8, Func. Count: 85, Neg. LLF: 137.101890802239
Iteration: 9, Func. Count: 95, Neg. LLF: 137.04845576295742
Iteration: 10, Func. Count: 105, Neg. LLF: 137.00669598294513
Iteration: 11, Func. Count: 115, Neg. LLF: 136.9561077703752
Iteration: 12, Func. Count: 125, Neg. LLF: 136.7250031024613
Iteration: 13, Func. Count: 135, Neg. LLF: 139.4236852423827
Iteration: 14, Func. Count: 146, Neg. LLF: 136.68252137659107
Iteration: 15, Func. Count: 156, Neg. LLF: 136.68745239184682
Iteration: 16, Func. Count: 167, Neg. LLF: 136.66032942835062
Iteration: 17, Func. Count: 178, Neg. LLF: 136.65674724958885
Iteration: 18, Func. Count: 188, Neg. LLF: 136.6567365024209
Iteration: 19, Func. Count: 197, Neg. LLF: 136.6567365023979
Optimization terminated successfully (Exit mode 0)
Current function value: 136.6567365024209
Iterations: 19
Function evaluations: 197
Gradient evaluations: 19
Iteration: 1, Func. Count: 12, Neg. LLF: 142.29689855665472
Iteration: 2, Func. Count: 25, Neg. LLF: 144.56418723788386
Iteration: 3, Func. Count: 37, Neg. LLF: 138.65436004904586
Iteration: 4, Func. Count: 48, Neg. LLF: 138.41253477264675
Iteration: 5, Func. Count: 59, Neg. LLF: 137.983019751588
Iteration: 6, Func. Count: 70, Neg. LLF: 137.79652333866778
Iteration: 7, Func. Count: 81, Neg. LLF: 136.93266784589406
Iteration: 8, Func. Count: 92, Neg. LLF: 162.3588456693688
Iteration: 9, Func. Count: 105, Neg. LLF: 137.35726939653912
Iteration: 10, Func. Count: 117, Neg. LLF: 136.67854751708342
Iteration: 11, Func. Count: 128, Neg. LLF: 136.68680088682305
Iteration: 12, Func. Count: 140, Neg. LLF: 136.66443458092587
Iteration: 13, Func. Count: 151, Neg. LLF: 136.65855325276092
Iteration: 14, Func. Count: 162, Neg. LLF: 136.6428910048101
Iteration: 15, Func. Count: 173, Neg. LLF: 136.6367523565264
Iteration: 16, Func. Count: 184, Neg. LLF: 136.62957218929802
Iteration: 17, Func. Count: 195, Neg. LLF: 136.6269058573591
Iteration: 18, Func. Count: 206, Neg. LLF: 136.62687755431577
Iteration: 19, Func. Count: 217, Neg. LLF: 136.62687380802163
Iteration: 20, Func. Count: 227, Neg. LLF: 136.6268738081148
Optimization terminated successfully (Exit mode 0)
Current function value: 136.62687380802163
Iterations: 20
Function evaluations: 227
Gradient evaluations: 20
Iteration: 1, Func. Count: 13, Neg. LLF: 142.31017675138847
Iteration: 2, Func. Count: 27, Neg. LLF: 144.58753849700258
Iteration: 3, Func. Count: 40, Neg. LLF: 139.57177173341606
Iteration: 4, Func. Count: 53, Neg. LLF: 138.2413596905831
Iteration: 5, Func. Count: 65, Neg. LLF: 137.95099481823738
Iteration: 6, Func. Count: 77, Neg. LLF: 137.50259640771512
Iteration: 7, Func. Count: 89, Neg. LLF: 137.21019681390263
Iteration: 8, Func. Count: 101, Neg. LLF: 137.001642957483
Iteration: 9, Func. Count: 113, Neg. LLF: 141.39008886260842
Iteration: 10, Func. Count: 126, Neg. LLF: 136.80764406807612
Iteration: 11, Func. Count: 138, Neg. LLF: 136.77596808477705
Iteration: 12, Func. Count: 150, Neg. LLF: 136.7306246391884
Iteration: 13, Func. Count: 162, Neg. LLF: 136.68885178225096
Iteration: 14, Func. Count: 174, Neg. LLF: 137.06388852815064
Iteration: 15, Func. Count: 187, Neg. LLF: 137.16809444736748
Iteration: 16, Func. Count: 200, Neg. LLF: 136.63702451446127
Iteration: 17, Func. Count: 212, Neg. LLF: 136.64456574672144
Iteration: 18, Func. Count: 225, Neg. LLF: 136.6302794816754
Iteration: 19, Func. Count: 238, Neg. LLF: 136.6269067445985
Iteration: 20, Func. Count: 250, Neg. LLF: 136.62687372078247
Iteration: 21, Func. Count: 261, Neg. LLF: 136.62687372729926
Optimization terminated successfully (Exit mode 0)
Current function value: 136.62687372078247
Iterations: 21
Function evaluations: 261
Gradient evaluations: 21
Iteration: 1, Func. Count: 6, Neg. LLF: 142.2539135066082
Iteration: 2, Func. Count: 12, Neg. LLF: 150.49030944557103
Iteration: 3, Func. Count: 18, Neg. LLF: 139.74927980819967
Iteration: 4, Func. Count: 23, Neg. LLF: 139.74692232684822
Iteration: 5, Func. Count: 29, Neg. LLF: 139.7279501234569
Iteration: 6, Func. Count: 34, Neg. LLF: 139.72692824714022
Iteration: 7, Func. Count: 39, Neg. LLF: 139.72667014158267
Iteration: 8, Func. Count: 44, Neg. LLF: 139.72596373177285
Iteration: 9, Func. Count: 49, Neg. LLF: 139.72577188854302
Iteration: 10, Func. Count: 54, Neg. LLF: 139.7257405011963
Iteration: 11, Func. Count: 59, Neg. LLF: 139.72573937296895
Iteration: 12, Func. Count: 63, Neg. LLF: 139.72573940650992
Optimization terminated successfully (Exit mode 0)
Current function value: 139.72573937296895
Iterations: 12
Function evaluations: 63
Gradient evaluations: 12
Iteration: 1, Func. Count: 7, Neg. LLF: 179.4083673820766
Iteration: 2, Func. Count: 15, Neg. LLF: 140.04412685624692
Iteration: 3, Func. Count: 21, Neg. LLF: 140.0439235266286
Iteration: 4, Func. Count: 27, Neg. LLF: 140.04368661437383
Iteration: 5, Func. Count: 33, Neg. LLF: 140.04368009142001
Iteration: 6, Func. Count: 39, Neg. LLF: 140.043641454269
Iteration: 7, Func. Count: 45, Neg. LLF: 140.04350185187877
Iteration: 8, Func. Count: 51, Neg. LLF: 140.0432641222873
Iteration: 9, Func. Count: 57, Neg. LLF: 140.04247321418973
Iteration: 10, Func. Count: 63, Neg. LLF: 140.04067888279144
Iteration: 11, Func. Count: 69, Neg. LLF: 140.0383540647204
Iteration: 12, Func. Count: 75, Neg. LLF: 140.02631881628994
Iteration: 13, Func. Count: 81, Neg. LLF: 140.0326693551675
Iteration: 14, Func. Count: 88, Neg. LLF: 140.05699752408395
Iteration: 15, Func. Count: 95, Neg. LLF: 140.01071009716514
Iteration: 16, Func. Count: 102, Neg. LLF: 140.0094811705852
Iteration: 17, Func. Count: 108, Neg. LLF: 140.00946970181212
Iteration: 18, Func. Count: 113, Neg. LLF: 140.0094697019075
Optimization terminated successfully (Exit mode 0)
Current function value: 140.00946970181212
Iterations: 18
Function evaluations: 113
Gradient evaluations: 18
Iteration: 1, Func. Count: 8, Neg. LLF: 171.93732523774835
Iteration: 2, Func. Count: 17, Neg. LLF: 140.0373393799626
Iteration: 3, Func. Count: 24, Neg. LLF: 140.0366902479027
Iteration: 4, Func. Count: 31, Neg. LLF: 140.03611719102958
Iteration: 5, Func. Count: 38, Neg. LLF: 140.03449850310452
Iteration: 6, Func. Count: 45, Neg. LLF: 140.0302880905407
Iteration: 7, Func. Count: 52, Neg. LLF: 140.0289190237644
Iteration: 8, Func. Count: 59, Neg. LLF: 140.02803864612903
Iteration: 9, Func. Count: 66, Neg. LLF: 140.02800420409102
Iteration: 10, Func. Count: 73, Neg. LLF: 140.02780310419882
Iteration: 11, Func. Count: 80, Neg. LLF: 140.026710289027
Iteration: 12, Func. Count: 87, Neg. LLF: 140.02070522214308
Iteration: 13, Func. Count: 94, Neg. LLF: 140.2063281851046
Iteration: 14, Func. Count: 102, Neg. LLF: 140.4473734611661
Iteration: 15, Func. Count: 110, Neg. LLF: 140.0440946386579
Iteration: 16, Func. Count: 118, Neg. LLF: 140.01137316939014
Iteration: 17, Func. Count: 125, Neg. LLF: 140.0106109063989
Iteration: 18, Func. Count: 132, Neg. LLF: 140.01053771528098
Iteration: 19, Func. Count: 139, Neg. LLF: 140.01043710774314
Iteration: 20, Func. Count: 146, Neg. LLF: 140.01033110250197
Iteration: 21, Func. Count: 153, Neg. LLF: 140.00966652121966
Iteration: 22, Func. Count: 160, Neg. LLF: 140.0078560587972
Iteration: 23, Func. Count: 167, Neg. LLF: 140.00526272839133
Iteration: 24, Func. Count: 174, Neg. LLF: 139.99890283197573
Iteration: 25, Func. Count: 181, Neg. LLF: 139.96353707645125
Iteration: 26, Func. Count: 188, Neg. LLF: 139.96775498050422
Iteration: 27, Func. Count: 196, Neg. LLF: 139.95700368096843
Iteration: 28, Func. Count: 204, Neg. LLF: 210.84299650683818
Iteration: 29, Func. Count: 214, Neg. LLF: 139.95353496513994
Iteration: 30, Func. Count: 222, Neg. LLF: 139.961132607005
Iteration: 31, Func. Count: 231, Neg. LLF: 139.9458904629037
Iteration: 32, Func. Count: 238, Neg. LLF: 139.94565472501463
Iteration: 33, Func. Count: 245, Neg. LLF: 139.94546240908082
Iteration: 34, Func. Count: 252, Neg. LLF: 139.9454612522187
Iteration: 35, Func. Count: 258, Neg. LLF: 139.94546125221575
Optimization terminated successfully (Exit mode 0)
Current function value: 139.9454612522187
Iterations: 36
Function evaluations: 258
Gradient evaluations: 35
Iteration: 1, Func. Count: 9, Neg. LLF: 166.83076215226342
Iteration: 2, Func. Count: 19, Neg. LLF: 140.03219365977125
Iteration: 3, Func. Count: 27, Neg. LLF: 140.0319731751924
Iteration: 4, Func. Count: 36, Neg. LLF: 140.03083704765916
Iteration: 5, Func. Count: 44, Neg. LLF: 140.02799032648346
Iteration: 6, Func. Count: 52, Neg. LLF: 140.02782897156058
Iteration: 7, Func. Count: 60, Neg. LLF: 140.02773644197168
Iteration: 8, Func. Count: 68, Neg. LLF: 140.02734824424292
Iteration: 9, Func. Count: 76, Neg. LLF: 140.026739192389
Iteration: 10, Func. Count: 84, Neg. LLF: 140.02603412873478
Iteration: 11, Func. Count: 92, Neg. LLF: 140.02572078154049
Iteration: 12, Func. Count: 100, Neg. LLF: 140.02554965860324
Iteration: 13, Func. Count: 108, Neg. LLF: 140.02548795155388
Iteration: 14, Func. Count: 116, Neg. LLF: 140.02509271734223
Iteration: 15, Func. Count: 124, Neg. LLF: 140.02317120322854
Iteration: 16, Func. Count: 132, Neg. LLF: 140.02242493718916
Iteration: 17, Func. Count: 141, Neg. LLF: 140.0191123175113
Iteration: 18, Func. Count: 149, Neg. LLF: 140.015481648844
Iteration: 19, Func. Count: 157, Neg. LLF: 140.0109299918987
Iteration: 20, Func. Count: 165, Neg. LLF: 140.01564309899166
Iteration: 21, Func. Count: 174, Neg. LLF: 140.01091463800395
Iteration: 22, Func. Count: 183, Neg. LLF: 143.35682918307833
Iteration: 23, Func. Count: 194, Neg. LLF: 141.46730403718598
Iteration: 24, Func. Count: 203, Neg. LLF: 141.05676504115803
Iteration: 25, Func. Count: 213, Neg. LLF: 139.9821149920097
Iteration: 26, Func. Count: 221, Neg. LLF: 139.9783839981512
Iteration: 27, Func. Count: 229, Neg. LLF: 139.97477701277606
Iteration: 28, Func. Count: 237, Neg. LLF: 139.96889732464206
Iteration: 29, Func. Count: 245, Neg. LLF: 139.97043771659776
Iteration: 30, Func. Count: 254, Neg. LLF: 139.94804381638323
Iteration: 31, Func. Count: 262, Neg. LLF: 139.9456781391311
Iteration: 32, Func. Count: 270, Neg. LLF: 139.94546550593816
Iteration: 33, Func. Count: 278, Neg. LLF: 139.94546167693247
Iteration: 34, Func. Count: 285, Neg. LLF: 139.94546175354589
Optimization terminated successfully (Exit mode 0)
Current function value: 139.94546167693247
Iterations: 35
Function evaluations: 285
Gradient evaluations: 34
Iteration: 1, Func. Count: 10, Neg. LLF: 163.34973976254193
Iteration: 2, Func. Count: 21, Neg. LLF: 140.0286922279994
Iteration: 3, Func. Count: 30, Neg. LLF: 140.0275557238984
Iteration: 4, Func. Count: 39, Neg. LLF: 140.02472082066217
Iteration: 5, Func. Count: 48, Neg. LLF: 140.02420938544327
Iteration: 6, Func. Count: 57, Neg. LLF: 140.02328673463344
Iteration: 7, Func. Count: 66, Neg. LLF: 140.02221946166446
Iteration: 8, Func. Count: 75, Neg. LLF: 140.02181905386226
Iteration: 9, Func. Count: 84, Neg. LLF: 140.02158114840668
Iteration: 10, Func. Count: 93, Neg. LLF: 140.02156886630215
Iteration: 11, Func. Count: 102, Neg. LLF: 140.0215046145063
Iteration: 12, Func. Count: 111, Neg. LLF: 140.02123896333813
Iteration: 13, Func. Count: 120, Neg. LLF: 140.02083373503186
Iteration: 14, Func. Count: 129, Neg. LLF: 140.02074930419434
Iteration: 15, Func. Count: 138, Neg. LLF: 140.02033143492116
Iteration: 16, Func. Count: 147, Neg. LLF: 140.01993723876924
Iteration: 17, Func. Count: 156, Neg. LLF: 140.01990120268846
Iteration: 18, Func. Count: 165, Neg. LLF: 140.01990018129462
Iteration: 19, Func. Count: 173, Neg. LLF: 140.01990018131292
Optimization terminated successfully (Exit mode 0)
Current function value: 140.01990018129462
Iterations: 19
Function evaluations: 173
Gradient evaluations: 19
Iteration: 1, Func. Count: 7, Neg. LLF: 142.8180545430464
Iteration: 2, Func. Count: 14, Neg. LLF: 149.5266578153873
Iteration: 3, Func. Count: 21, Neg. LLF: 139.67567350825243
Iteration: 4, Func. Count: 27, Neg. LLF: 139.627317376293
Iteration: 5, Func. Count: 33, Neg. LLF: 139.6251267789783
Iteration: 6, Func. Count: 39, Neg. LLF: 139.6233000886737
Iteration: 7, Func. Count: 45, Neg. LLF: 139.6205876374527
Iteration: 8, Func. Count: 51, Neg. LLF: 139.62016531180512
Iteration: 9, Func. Count: 57, Neg. LLF: 139.61996964679278
Iteration: 10, Func. Count: 63, Neg. LLF: 139.61990103444856
Iteration: 11, Func. Count: 69, Neg. LLF: 139.61988969289976
Iteration: 12, Func. Count: 75, Neg. LLF: 139.61988914948216
Optimization terminated successfully (Exit mode 0)
Current function value: 139.61988914948216
Iterations: 12
Function evaluations: 75
Gradient evaluations: 12
Iteration: 1, Func. Count: 8, Neg. LLF: 142.17611716141522
Iteration: 2, Func. Count: 17, Neg. LLF: 144.61399101531327
Iteration: 3, Func. Count: 25, Neg. LLF: 139.50558945058827
Iteration: 4, Func. Count: 32, Neg. LLF: 139.48671454028198
Iteration: 5, Func. Count: 39, Neg. LLF: 139.4818491499233
Iteration: 6, Func. Count: 46, Neg. LLF: 139.47544765703552
Iteration: 7, Func. Count: 53, Neg. LLF: 139.42642905637686
Iteration: 8, Func. Count: 60, Neg. LLF: 139.03514632340168
Iteration: 9, Func. Count: 67, Neg. LLF: 139.36458151666895
Iteration: 10, Func. Count: 76, Neg. LLF: 138.60152559010697
Iteration: 11, Func. Count: 83, Neg. LLF: 138.27112271791094
Iteration: 12, Func. Count: 90, Neg. LLF: 138.03311437827514
Iteration: 13, Func. Count: 97, Neg. LLF: 138.23286110652114
Iteration: 14, Func. Count: 105, Neg. LLF: 137.9738229510928
Iteration: 15, Func. Count: 112, Neg. LLF: 137.9720052393492
Iteration: 16, Func. Count: 119, Neg. LLF: 137.9716689363583
Iteration: 17, Func. Count: 126, Neg. LLF: 137.97152230364753
Iteration: 18, Func. Count: 132, Neg. LLF: 137.97152229334569
Optimization terminated successfully (Exit mode 0)
Current function value: 137.97152230364753
Iterations: 18
Function evaluations: 132
Gradient evaluations: 18
Iteration: 1, Func. Count: 9, Neg. LLF: 142.05253606357383
Iteration: 2, Func. Count: 19, Neg. LLF: 144.8026193150635
Iteration: 3, Func. Count: 28, Neg. LLF: 138.27304598642093
Iteration: 4, Func. Count: 36, Neg. LLF: 138.4528448027767
Iteration: 5, Func. Count: 45, Neg. LLF: 137.9685080949016
Iteration: 6, Func. Count: 53, Neg. LLF: 137.35788539940728
Iteration: 7, Func. Count: 61, Neg. LLF: 137.25112966274295
Iteration: 8, Func. Count: 69, Neg. LLF: 137.08511345980952
Iteration: 9, Func. Count: 77, Neg. LLF: 137.03448019554637
Iteration: 10, Func. Count: 85, Neg. LLF: 136.9917388328978
Iteration: 11, Func. Count: 93, Neg. LLF: 136.94048137520159
Iteration: 12, Func. Count: 101, Neg. LLF: 136.71090485094822
Iteration: 13, Func. Count: 109, Neg. LLF: 136.7675441939333
Iteration: 14, Func. Count: 118, Neg. LLF: 136.69833091871072
Iteration: 15, Func. Count: 127, Neg. LLF: 136.66174114554656
Iteration: 16, Func. Count: 136, Neg. LLF: 136.65679450002798
Iteration: 17, Func. Count: 144, Neg. LLF: 136.65673947413316
Iteration: 18, Func. Count: 152, Neg. LLF: 136.6567367661589
Iteration: 19, Func. Count: 159, Neg. LLF: 136.65673676611146
Optimization terminated successfully (Exit mode 0)
Current function value: 136.6567367661589
Iterations: 19
Function evaluations: 159
Gradient evaluations: 19
Iteration: 1, Func. Count: 10, Neg. LLF: 142.5307750197427
Iteration: 2, Func. Count: 21, Neg. LLF: 144.59148658134825
Iteration: 3, Func. Count: 31, Neg. LLF: 138.75655863348783
Iteration: 4, Func. Count: 40, Neg. LLF: 138.58962231919276
Iteration: 5, Func. Count: 49, Neg. LLF: 138.26412090966906
Iteration: 6, Func. Count: 58, Neg. LLF: 137.98365413997473
Iteration: 7, Func. Count: 67, Neg. LLF: 136.82496554345494
Iteration: 8, Func. Count: 76, Neg. LLF: 142.71614008575543
Iteration: 9, Func. Count: 87, Neg. LLF: 137.9084309915999
Iteration: 10, Func. Count: 98, Neg. LLF: 136.65020320191272
Iteration: 11, Func. Count: 107, Neg. LLF: 136.69774272106088
Iteration: 12, Func. Count: 117, Neg. LLF: 136.62775541376445
Iteration: 13, Func. Count: 126, Neg. LLF: 136.62688755596633
Iteration: 14, Func. Count: 135, Neg. LLF: 136.62687382221029
Iteration: 15, Func. Count: 143, Neg. LLF: 136.62687382239886
Optimization terminated successfully (Exit mode 0)
Current function value: 136.62687382221029
Iterations: 15
Function evaluations: 143
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 142.7150091567846
Iteration: 2, Func. Count: 23, Neg. LLF: 144.60559902905783
Iteration: 3, Func. Count: 34, Neg. LLF: 139.7596418937166
Iteration: 4, Func. Count: 45, Neg. LLF: 138.2882775211103
Iteration: 5, Func. Count: 55, Neg. LLF: 138.00970272374957
Iteration: 6, Func. Count: 65, Neg. LLF: 137.61702247220666
Iteration: 7, Func. Count: 75, Neg. LLF: 137.30692236781206
Iteration: 8, Func. Count: 85, Neg. LLF: 137.02738670790873
Iteration: 9, Func. Count: 95, Neg. LLF: 139.98141984891004
Iteration: 10, Func. Count: 106, Neg. LLF: 137.55783963559998
Iteration: 11, Func. Count: 117, Neg. LLF: 136.765726993044
Iteration: 12, Func. Count: 127, Neg. LLF: 136.74198343724993
Iteration: 13, Func. Count: 137, Neg. LLF: 136.72063723996837
Iteration: 14, Func. Count: 147, Neg. LLF: 136.68103917839392
Iteration: 15, Func. Count: 157, Neg. LLF: 136.78538276126773
Iteration: 16, Func. Count: 168, Neg. LLF: 136.65374253452654
Iteration: 17, Func. Count: 178, Neg. LLF: 136.64657958219883
Iteration: 18, Func. Count: 189, Neg. LLF: 136.6299792720488
Iteration: 19, Func. Count: 200, Neg. LLF: 136.6268821746321
Iteration: 20, Func. Count: 210, Neg. LLF: 136.62687404253498
Iteration: 21, Func. Count: 220, Neg. LLF: 136.62687383520753
Optimization terminated successfully (Exit mode 0)
Current function value: 136.62687383520753
Iterations: 21
Function evaluations: 220
Gradient evaluations: 21
Iteration: 1, Func. Count: 8, Neg. LLF: 141.89330842331344
Iteration: 2, Func. Count: 16, Neg. LLF: 143.55963346580657
Iteration: 3, Func. Count: 24, Neg. LLF: 138.28570633476258
Iteration: 4, Func. Count: 31, Neg. LLF: 138.38337850656484
Iteration: 5, Func. Count: 40, Neg. LLF: 142.45791941998755
Iteration: 6, Func. Count: 48, Neg. LLF: 138.06100215362554
Iteration: 7, Func. Count: 55, Neg. LLF: 138.05419099853367
Iteration: 8, Func. Count: 62, Neg. LLF: 138.05083874169068
Iteration: 9, Func. Count: 69, Neg. LLF: 138.0501602745652
Iteration: 10, Func. Count: 76, Neg. LLF: 138.0496844477203
Iteration: 11, Func. Count: 83, Neg. LLF: 138.0489951117277
Iteration: 12, Func. Count: 90, Neg. LLF: 138.04880458383536
Iteration: 13, Func. Count: 97, Neg. LLF: 138.0487853975408
Iteration: 14, Func. Count: 104, Neg. LLF: 138.0487837154866
Iteration: 15, Func. Count: 110, Neg. LLF: 138.04878371548523
Optimization terminated successfully (Exit mode 0)
Current function value: 138.0487837154866
Iterations: 15
Function evaluations: 110
Gradient evaluations: 15
Iteration: 1, Func. Count: 9, Neg. LLF: 142.0904597050056
Iteration: 2, Func. Count: 19, Neg. LLF: 144.62400156366127
Iteration: 3, Func. Count: 28, Neg. LLF: 139.48365600090656
Iteration: 4, Func. Count: 36, Neg. LLF: 139.48860801629652
Iteration: 5, Func. Count: 45, Neg. LLF: 139.43280988445144
Iteration: 6, Func. Count: 53, Neg. LLF: 139.37990582744868
Iteration: 7, Func. Count: 61, Neg. LLF: 139.0460092475149
Iteration: 8, Func. Count: 69, Neg. LLF: 138.90264576005464
Iteration: 9, Func. Count: 77, Neg. LLF: 138.8403596443469
Iteration: 10, Func. Count: 85, Neg. LLF: 138.82296679326862
Iteration: 11, Func. Count: 93, Neg. LLF: 138.80824759544834
Iteration: 12, Func. Count: 101, Neg. LLF: 138.73058287552303
Iteration: 13, Func. Count: 109, Neg. LLF: 138.66602813930854
Iteration: 14, Func. Count: 117, Neg. LLF: 137.98761790484977
Iteration: 15, Func. Count: 125, Neg. LLF: 138.2206358700575
Iteration: 16, Func. Count: 134, Neg. LLF: 137.9740050482438
Iteration: 17, Func. Count: 142, Neg. LLF: 137.9852076464633
Iteration: 18, Func. Count: 151, Neg. LLF: 137.97225381933066
Iteration: 19, Func. Count: 159, Neg. LLF: 137.97152896980108
Iteration: 20, Func. Count: 167, Neg. LLF: 137.98258224318087
Iteration: 21, Func. Count: 177, Neg. LLF: 137.97157933467304
Iteration: 22, Func. Count: 186, Neg. LLF: 137.97152305538583
Iteration: 23, Func. Count: 194, Neg. LLF: 137.97152223311576
Optimization terminated successfully (Exit mode 0)
Current function value: 137.97152223311576
Iterations: 24
Function evaluations: 194
Gradient evaluations: 23
Iteration: 1, Func. Count: 10, Neg. LLF: 141.99961458027312
Iteration: 2, Func. Count: 21, Neg. LLF: 144.8291273576413
Iteration: 3, Func. Count: 31, Neg. LLF: 138.25673186847484
Iteration: 4, Func. Count: 40, Neg. LLF: 138.48145956131106
Iteration: 5, Func. Count: 50, Neg. LLF: 137.97691249820363
Iteration: 6, Func. Count: 59, Neg. LLF: 137.38544138906047
Iteration: 7, Func. Count: 68, Neg. LLF: 137.26800086391052
Iteration: 8, Func. Count: 77, Neg. LLF: 137.0959469357709
Iteration: 9, Func. Count: 86, Neg. LLF: 137.03669465046522
Iteration: 10, Func. Count: 95, Neg. LLF: 136.99535315439795
Iteration: 11, Func. Count: 104, Neg. LLF: 136.9519745798654
Iteration: 12, Func. Count: 113, Neg. LLF: 136.72604958653955
Iteration: 13, Func. Count: 122, Neg. LLF: 167.8447672587156
Iteration: 14, Func. Count: 132, Neg. LLF: 136.72087636278877
Iteration: 15, Func. Count: 142, Neg. LLF: 136.66560744681985
Iteration: 16, Func. Count: 152, Neg. LLF: 136.6569349043347
Iteration: 17, Func. Count: 161, Neg. LLF: 136.65673735921305
Iteration: 18, Func. Count: 170, Neg. LLF: 136.65673718939945
Optimization terminated successfully (Exit mode 0)
Current function value: 136.65673649798256
Iterations: 18
Function evaluations: 171
Gradient evaluations: 18
Iteration: 1, Func. Count: 11, Neg. LLF: 142.4392009053857
Iteration: 2, Func. Count: 23, Neg. LLF: 144.6249508016114
Iteration: 3, Func. Count: 34, Neg. LLF: 138.73777143642448
Iteration: 4, Func. Count: 44, Neg. LLF: 138.56675178162885
Iteration: 5, Func. Count: 54, Neg. LLF: 138.21655979138046
Iteration: 6, Func. Count: 64, Neg. LLF: 137.71297712547064
Iteration: 7, Func. Count: 74, Neg. LLF: 137.81945832195964
Iteration: 8, Func. Count: 85, Neg. LLF: 139.80049345457283
Iteration: 9, Func. Count: 96, Neg. LLF: 137.14424163247378
Iteration: 10, Func. Count: 107, Neg. LLF: 136.690498807428
Iteration: 11, Func. Count: 118, Neg. LLF: 136.71647634392875
Iteration: 12, Func. Count: 129, Neg. LLF: 136.6283275190063
Iteration: 13, Func. Count: 139, Neg. LLF: 136.62731732738166
Iteration: 14, Func. Count: 149, Neg. LLF: 136.627224637715
Iteration: 15, Func. Count: 159, Neg. LLF: 136.62716201509534
Iteration: 16, Func. Count: 169, Neg. LLF: 136.62698149583426
Iteration: 17, Func. Count: 179, Neg. LLF: 136.62688540868947
Iteration: 18, Func. Count: 189, Neg. LLF: 136.6268740819319
Iteration: 19, Func. Count: 198, Neg. LLF: 136.62687408193204
Optimization terminated successfully (Exit mode 0)
Current function value: 136.6268740819319
Iterations: 19
Function evaluations: 198
Gradient evaluations: 19
Iteration: 1, Func. Count: 12, Neg. LLF: 142.65386146663715
Iteration: 2, Func. Count: 25, Neg. LLF: 144.63264278225373
Iteration: 3, Func. Count: 37, Neg. LLF: 139.78643053291117
Iteration: 4, Func. Count: 49, Neg. LLF: 138.28176097556454
Iteration: 5, Func. Count: 60, Neg. LLF: 138.0050887420695
Iteration: 6, Func. Count: 71, Neg. LLF: 137.68117321871574
Iteration: 7, Func. Count: 82, Neg. LLF: 137.30973050140534
Iteration: 8, Func. Count: 93, Neg. LLF: 137.07269316875406
Iteration: 9, Func. Count: 104, Neg. LLF: 137.6746378135701
Iteration: 10, Func. Count: 116, Neg. LLF: 139.07274081097216
Iteration: 11, Func. Count: 128, Neg. LLF: 136.79224795150643
Iteration: 12, Func. Count: 139, Neg. LLF: 136.74955234060457
Iteration: 13, Func. Count: 150, Neg. LLF: 136.73425949357542
Iteration: 14, Func. Count: 161, Neg. LLF: 136.67429797832153
Iteration: 15, Func. Count: 172, Neg. LLF: 136.66392945945722
Iteration: 16, Func. Count: 183, Neg. LLF: 136.6389685087139
Iteration: 17, Func. Count: 194, Neg. LLF: 136.64641671084598
Iteration: 18, Func. Count: 206, Neg. LLF: 136.62889708488495
Iteration: 19, Func. Count: 217, Neg. LLF: 136.6273491362718
Iteration: 20, Func. Count: 228, Neg. LLF: 136.62691308374733
Iteration: 21, Func. Count: 239, Neg. LLF: 136.6268741917199
Iteration: 22, Func. Count: 250, Neg. LLF: 136.6268736469905
Optimization terminated successfully (Exit mode 0)
Current function value: 136.6268736469905
Iterations: 22
Function evaluations: 250
Gradient evaluations: 22
Iteration: 1, Func. Count: 9, Neg. LLF: 141.14149489037666
Iteration: 2, Func. Count: 18, Neg. LLF: 143.9262066612429
Iteration: 3, Func. Count: 27, Neg. LLF: 138.23003948343322
Iteration: 4, Func. Count: 35, Neg. LLF: 138.48278149064794
Iteration: 5, Func. Count: 45, Neg. LLF: 140.4363979582881
Iteration: 6, Func. Count: 54, Neg. LLF: 138.06610126635107
Iteration: 7, Func. Count: 62, Neg. LLF: 138.052041969289
Iteration: 8, Func. Count: 70, Neg. LLF: 138.05082675429435
Iteration: 9, Func. Count: 78, Neg. LLF: 138.04986579732386
Iteration: 10, Func. Count: 86, Neg. LLF: 138.0493550221809
Iteration: 11, Func. Count: 94, Neg. LLF: 138.04893424403502
Iteration: 12, Func. Count: 102, Neg. LLF: 138.04881693580992
Iteration: 13, Func. Count: 110, Neg. LLF: 138.04879094609316
Iteration: 14, Func. Count: 118, Neg. LLF: 138.04878382201858
Iteration: 15, Func. Count: 125, Neg. LLF: 138.04878403061642
Optimization terminated successfully (Exit mode 0)
Current function value: 138.04878382201858
Iterations: 15
Function evaluations: 125
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 142.12178951281177
Iteration: 2, Func. Count: 21, Neg. LLF: 144.5906612530552
Iteration: 3, Func. Count: 31, Neg. LLF: 139.4851620348017
Iteration: 4, Func. Count: 40, Neg. LLF: 139.48912570689856
Iteration: 5, Func. Count: 50, Neg. LLF: 139.43326475555136
Iteration: 6, Func. Count: 59, Neg. LLF: 139.38277329302687
Iteration: 7, Func. Count: 68, Neg. LLF: 139.0392065459169
Iteration: 8, Func. Count: 77, Neg. LLF: 138.90093896829447
Iteration: 9, Func. Count: 86, Neg. LLF: 138.83724119352942
Iteration: 10, Func. Count: 95, Neg. LLF: 138.8226562942451
Iteration: 11, Func. Count: 104, Neg. LLF: 138.8042175319183
Iteration: 12, Func. Count: 113, Neg. LLF: 138.73118586794493
Iteration: 13, Func. Count: 122, Neg. LLF: 138.662747039808
Iteration: 14, Func. Count: 131, Neg. LLF: 138.05436449329494
Iteration: 15, Func. Count: 140, Neg. LLF: 153.21269921777767
Iteration: 16, Func. Count: 150, Neg. LLF: 141.3327331319618
Iteration: 17, Func. Count: 161, Neg. LLF: 137.99436661770997
Iteration: 18, Func. Count: 170, Neg. LLF: 137.97386146399182
Iteration: 19, Func. Count: 179, Neg. LLF: 137.97172321440254
Iteration: 20, Func. Count: 188, Neg. LLF: 137.97153755612922
Iteration: 21, Func. Count: 197, Neg. LLF: 137.97152308294588
Iteration: 22, Func. Count: 205, Neg. LLF: 137.97152307230166
Optimization terminated successfully (Exit mode 0)
Current function value: 137.97152308294588
Iterations: 22
Function evaluations: 205
Gradient evaluations: 22
Iteration: 1, Func. Count: 11, Neg. LLF: 141.9891471111279
Iteration: 2, Func. Count: 23, Neg. LLF: 144.81459541801163
Iteration: 3, Func. Count: 34, Neg. LLF: 138.25100885707428
Iteration: 4, Func. Count: 44, Neg. LLF: 138.43035099943538
Iteration: 5, Func. Count: 55, Neg. LLF: 137.96708591217947
Iteration: 6, Func. Count: 65, Neg. LLF: 137.38068926776697
Iteration: 7, Func. Count: 75, Neg. LLF: 137.2630101815075
Iteration: 8, Func. Count: 85, Neg. LLF: 137.09470131478625
Iteration: 9, Func. Count: 95, Neg. LLF: 137.0380291690047
Iteration: 10, Func. Count: 105, Neg. LLF: 136.99665075235848
Iteration: 11, Func. Count: 115, Neg. LLF: 136.95131527358274
Iteration: 12, Func. Count: 125, Neg. LLF: 136.730710540756
Iteration: 13, Func. Count: 135, Neg. LLF: 162.21162961336617
Iteration: 14, Func. Count: 146, Neg. LLF: 136.71189810408274
Iteration: 15, Func. Count: 157, Neg. LLF: 136.66769230086652
Iteration: 16, Func. Count: 168, Neg. LLF: 136.65696627504565
Iteration: 17, Func. Count: 178, Neg. LLF: 136.65673905132243
Iteration: 18, Func. Count: 188, Neg. LLF: 136.65673881295416
Iteration: 19, Func. Count: 198, Neg. LLF: 136.65673651937183
Optimization terminated successfully (Exit mode 0)
Current function value: 136.65673651934705
Iterations: 19
Function evaluations: 198
Gradient evaluations: 19
Iteration: 1, Func. Count: 12, Neg. LLF: 142.40824930464424
Iteration: 2, Func. Count: 25, Neg. LLF: 144.60519389194948
Iteration: 3, Func. Count: 37, Neg. LLF: 138.73103960426758
Iteration: 4, Func. Count: 48, Neg. LLF: 138.53529563689514
Iteration: 5, Func. Count: 59, Neg. LLF: 138.11429087961133
Iteration: 6, Func. Count: 70, Neg. LLF: 137.56335945986703
Iteration: 7, Func. Count: 81, Neg. LLF: 138.1681025165826
Iteration: 8, Func. Count: 93, Neg. LLF: 138.9296014723828
Iteration: 9, Func. Count: 105, Neg. LLF: 137.22874378167484
Iteration: 10, Func. Count: 117, Neg. LLF: 136.6604061649936
Iteration: 11, Func. Count: 128, Neg. LLF: 136.82607787772412
Iteration: 12, Func. Count: 140, Neg. LLF: 136.65507852339172
Iteration: 13, Func. Count: 151, Neg. LLF: 136.64928127660457
Iteration: 14, Func. Count: 162, Neg. LLF: 136.6426648493504
Iteration: 15, Func. Count: 173, Neg. LLF: 136.63318294438895
Iteration: 16, Func. Count: 184, Neg. LLF: 136.62823434582225
Iteration: 17, Func. Count: 195, Neg. LLF: 136.62704586353618
Iteration: 18, Func. Count: 206, Neg. LLF: 136.62690447019537
Iteration: 19, Func. Count: 217, Neg. LLF: 136.62687579867358
Iteration: 20, Func. Count: 228, Neg. LLF: 136.6268741727688
Iteration: 21, Func. Count: 238, Neg. LLF: 136.6268741729144
Optimization terminated successfully (Exit mode 0)
Current function value: 136.6268741727688
Iterations: 21
Function evaluations: 238
Gradient evaluations: 21
Iteration: 1, Func. Count: 13, Neg. LLF: 142.61887368625617
Iteration: 2, Func. Count: 27, Neg. LLF: 144.60974519952555
Iteration: 3, Func. Count: 40, Neg. LLF: 139.7941816807794
Iteration: 4, Func. Count: 53, Neg. LLF: 138.2717317970393
Iteration: 5, Func. Count: 65, Neg. LLF: 137.9967004087608
Iteration: 6, Func. Count: 77, Neg. LLF: 137.63478373957707
Iteration: 7, Func. Count: 89, Neg. LLF: 137.3156351166499
Iteration: 8, Func. Count: 101, Neg. LLF: 137.03152699487785
Iteration: 9, Func. Count: 113, Neg. LLF: 140.38387547943697
Iteration: 10, Func. Count: 126, Neg. LLF: 137.57559088287658
Iteration: 11, Func. Count: 139, Neg. LLF: 136.75833961589217
Iteration: 12, Func. Count: 151, Neg. LLF: 136.73475412505323
Iteration: 13, Func. Count: 163, Neg. LLF: 136.7176772717885
Iteration: 14, Func. Count: 175, Neg. LLF: 136.67977132129465
Iteration: 15, Func. Count: 187, Neg. LLF: 136.81733428819055
Iteration: 16, Func. Count: 200, Neg. LLF: 136.64976045041834
Iteration: 17, Func. Count: 212, Neg. LLF: 136.63918391464452
Iteration: 18, Func. Count: 224, Neg. LLF: 136.63472390956022
Iteration: 19, Func. Count: 236, Neg. LLF: 136.62714359145093
Iteration: 20, Func. Count: 248, Neg. LLF: 136.62689393723343
Iteration: 21, Func. Count: 260, Neg. LLF: 136.62687875350156
Iteration: 22, Func. Count: 272, Neg. LLF: 136.62687374192586
Iteration: 23, Func. Count: 283, Neg. LLF: 136.62687374821752
Optimization terminated successfully (Exit mode 0)
Current function value: 136.62687374192586
Iterations: 23
Function evaluations: 283
Gradient evaluations: 23
Iteration: 1, Func. Count: 10, Neg. LLF: 140.02038662172816
Iteration: 2, Func. Count: 19, Neg. LLF: 145.6576413428738
Iteration: 3, Func. Count: 29, Neg. LLF: 138.29151789251915
Iteration: 4, Func. Count: 38, Neg. LLF: 139.64039798279524
Iteration: 5, Func. Count: 48, Neg. LLF: 140.22258278169656
Iteration: 6, Func. Count: 58, Neg. LLF: 138.14772768055406
Iteration: 7, Func. Count: 68, Neg. LLF: 138.09303333050858
Iteration: 8, Func. Count: 78, Neg. LLF: 138.05568902444213
Iteration: 9, Func. Count: 87, Neg. LLF: 138.05113062890976
Iteration: 10, Func. Count: 96, Neg. LLF: 138.0492925141366
Iteration: 11, Func. Count: 105, Neg. LLF: 138.04886485332798
Iteration: 12, Func. Count: 114, Neg. LLF: 138.0487863922467
Iteration: 13, Func. Count: 123, Neg. LLF: 138.04878341682308
Iteration: 14, Func. Count: 131, Neg. LLF: 138.04878361436826
Optimization terminated successfully (Exit mode 0)
Current function value: 138.04878341682308
Iterations: 14
Function evaluations: 131
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 142.15188138822006
Iteration: 2, Func. Count: 23, Neg. LLF: 144.58137931429474
Iteration: 3, Func. Count: 34, Neg. LLF: 139.48653885331453
Iteration: 4, Func. Count: 44, Neg. LLF: 139.48866187073517
Iteration: 5, Func. Count: 55, Neg. LLF: 139.43366721988284
Iteration: 6, Func. Count: 65, Neg. LLF: 139.38479857057314
Iteration: 7, Func. Count: 75, Neg. LLF: 139.04513106627206
Iteration: 8, Func. Count: 85, Neg. LLF: 138.9054025065081
Iteration: 9, Func. Count: 95, Neg. LLF: 138.84065681094083
Iteration: 10, Func. Count: 105, Neg. LLF: 138.82446403265433
Iteration: 11, Func. Count: 115, Neg. LLF: 138.81169888253243
Iteration: 12, Func. Count: 125, Neg. LLF: 138.73051780045577
Iteration: 13, Func. Count: 135, Neg. LLF: 138.64574936220473
Iteration: 14, Func. Count: 145, Neg. LLF: 139.15042925530688
Iteration: 15, Func. Count: 156, Neg. LLF: 140.82471901744177
Iteration: 16, Func. Count: 167, Neg. LLF: 138.70879519884076
Iteration: 17, Func. Count: 178, Neg. LLF: 139.77792629061574
Iteration: 18, Func. Count: 189, Neg. LLF: 138.47563951939333
Iteration: 19, Func. Count: 200, Neg. LLF: 138.0597231261891
Iteration: 20, Func. Count: 210, Neg. LLF: 138.00544975550582
Iteration: 21, Func. Count: 220, Neg. LLF: 137.97988152088203
Iteration: 22, Func. Count: 230, Neg. LLF: 137.97303233434656
Iteration: 23, Func. Count: 240, Neg. LLF: 137.97161588419783
Iteration: 24, Func. Count: 250, Neg. LLF: 137.97152645761108
Iteration: 25, Func. Count: 260, Neg. LLF: 137.97152243232193
Iteration: 26, Func. Count: 269, Neg. LLF: 137.97152242194093
Optimization terminated successfully (Exit mode 0)
Current function value: 137.97152243232193
Iterations: 26
Function evaluations: 269
Gradient evaluations: 26
Iteration: 1, Func. Count: 12, Neg. LLF: 141.99899770128974
Iteration: 2, Func. Count: 25, Neg. LLF: 144.8061861609576
Iteration: 3, Func. Count: 37, Neg. LLF: 138.253781063657
Iteration: 4, Func. Count: 48, Neg. LLF: 138.40151609047845
Iteration: 5, Func. Count: 60, Neg. LLF: 137.96034344280645
Iteration: 6, Func. Count: 71, Neg. LLF: 137.37053464160093
Iteration: 7, Func. Count: 82, Neg. LLF: 137.25587611036923
Iteration: 8, Func. Count: 93, Neg. LLF: 137.0912949571333
Iteration: 9, Func. Count: 104, Neg. LLF: 137.03795806989757
Iteration: 10, Func. Count: 115, Neg. LLF: 136.99612920646584
Iteration: 11, Func. Count: 126, Neg. LLF: 136.94791960320708
Iteration: 12, Func. Count: 137, Neg. LLF: 136.72663453386429
Iteration: 13, Func. Count: 148, Neg. LLF: 161.17732235184997
Iteration: 14, Func. Count: 160, Neg. LLF: 136.71322539890684
Iteration: 15, Func. Count: 172, Neg. LLF: 136.6667241856299
Iteration: 16, Func. Count: 184, Neg. LLF: 136.65686179187057
Iteration: 17, Func. Count: 195, Neg. LLF: 136.65673813650494
Iteration: 18, Func. Count: 206, Neg. LLF: 136.65673823644363
Iteration: 19, Func. Count: 217, Neg. LLF: 136.65673654670758
Optimization terminated successfully (Exit mode 0)
Current function value: 136.65673654668274
Iterations: 19
Function evaluations: 217
Gradient evaluations: 19
Iteration: 1, Func. Count: 13, Neg. LLF: 142.44160596580662
Iteration: 2, Func. Count: 27, Neg. LLF: 144.59302108268867
Iteration: 3, Func. Count: 40, Neg. LLF: 138.74674381968072
Iteration: 4, Func. Count: 52, Neg. LLF: 138.53247541318524
Iteration: 5, Func. Count: 64, Neg. LLF: 138.06750594141351
Iteration: 6, Func. Count: 76, Neg. LLF: 137.55301290687407
Iteration: 7, Func. Count: 88, Neg. LLF: 138.5101565917654
Iteration: 8, Func. Count: 101, Neg. LLF: 138.58089624023538
Iteration: 9, Func. Count: 114, Neg. LLF: 146.13297386383195
Iteration: 10, Func. Count: 127, Neg. LLF: 136.68047815619263
Iteration: 11, Func. Count: 139, Neg. LLF: 136.69210326643162
Iteration: 12, Func. Count: 152, Neg. LLF: 136.66312262921238
Iteration: 13, Func. Count: 164, Neg. LLF: 136.6529501618902
Iteration: 14, Func. Count: 176, Neg. LLF: 136.64321176946288
Iteration: 15, Func. Count: 188, Neg. LLF: 136.63173733854893
Iteration: 16, Func. Count: 200, Neg. LLF: 136.62783716630727
Iteration: 17, Func. Count: 212, Neg. LLF: 136.62692309860603
Iteration: 18, Func. Count: 224, Neg. LLF: 136.6268791346535
Iteration: 19, Func. Count: 236, Neg. LLF: 136.6268738316363
Iteration: 20, Func. Count: 247, Neg. LLF: 136.62687383163373
Optimization terminated successfully (Exit mode 0)
Current function value: 136.6268738316363
Iterations: 20
Function evaluations: 247
Gradient evaluations: 20
Iteration: 1, Func. Count: 14, Neg. LLF: 142.62122099519564
Iteration: 2, Func. Count: 29, Neg. LLF: 144.5989905225891
Iteration: 3, Func. Count: 43, Neg. LLF: 139.80443660400164
Iteration: 4, Func. Count: 57, Neg. LLF: 138.27196750883317
Iteration: 5, Func. Count: 70, Neg. LLF: 137.9974163005701
Iteration: 6, Func. Count: 83, Neg. LLF: 137.63770099134265
Iteration: 7, Func. Count: 96, Neg. LLF: 137.31307572831648
Iteration: 8, Func. Count: 109, Neg. LLF: 137.03862072809378
Iteration: 9, Func. Count: 122, Neg. LLF: 139.73589560553648
Iteration: 10, Func. Count: 136, Neg. LLF: 137.60206324922902
Iteration: 11, Func. Count: 150, Neg. LLF: 136.76140903313345
Iteration: 12, Func. Count: 163, Neg. LLF: 136.73649157733706
Iteration: 13, Func. Count: 176, Neg. LLF: 136.71909989235715
Iteration: 14, Func. Count: 189, Neg. LLF: 136.68008289529368
Iteration: 15, Func. Count: 202, Neg. LLF: 136.7813323000439
Iteration: 16, Func. Count: 216, Neg. LLF: 136.65318764451683
Iteration: 17, Func. Count: 229, Neg. LLF: 136.64156636648084
Iteration: 18, Func. Count: 242, Neg. LLF: 136.63715178201264
Iteration: 19, Func. Count: 255, Neg. LLF: 136.62727987297464
Iteration: 20, Func. Count: 268, Neg. LLF: 136.6269002065917
Iteration: 21, Func. Count: 281, Neg. LLF: 136.62687811655627
Iteration: 22, Func. Count: 294, Neg. LLF: 136.62687391540098
Iteration: 23, Func. Count: 306, Neg. LLF: 136.62687392163267
Optimization terminated successfully (Exit mode 0)
Current function value: 136.62687391540098
Iterations: 23
Function evaluations: 306
Gradient evaluations: 23
Iteration: 1, Func. Count: 7, Neg. LLF: 140.18249062782138
Iteration: 2, Func. Count: 13, Neg. LLF: 143.6355949717863
Iteration: 3, Func. Count: 20, Neg. LLF: 139.85223805485936
Iteration: 4, Func. Count: 26, Neg. LLF: 139.75801496222059
Iteration: 5, Func. Count: 32, Neg. LLF: 139.73917711979348
Iteration: 6, Func. Count: 38, Neg. LLF: 139.73578266179643
Iteration: 7, Func. Count: 44, Neg. LLF: 139.72714085642883
Iteration: 8, Func. Count: 50, Neg. LLF: 139.72596644574799
Iteration: 9, Func. Count: 56, Neg. LLF: 139.725739977612
Iteration: 10, Func. Count: 62, Neg. LLF: 139.72573934633675
Optimization terminated successfully (Exit mode 0)
Current function value: 139.72573934633675
Iterations: 10
Function evaluations: 62
Gradient evaluations: 10
Iteration: 1, Func. Count: 8, Neg. LLF: 179.42869436793606
Iteration: 2, Func. Count: 17, Neg. LLF: 140.04521887767822
Iteration: 3, Func. Count: 24, Neg. LLF: 140.04425358369463
Iteration: 4, Func. Count: 31, Neg. LLF: 140.04391690079296
Iteration: 5, Func. Count: 38, Neg. LLF: 140.04382951118598
Iteration: 6, Func. Count: 45, Neg. LLF: 140.0438212233423
Iteration: 7, Func. Count: 52, Neg. LLF: 140.0437687571015
Iteration: 8, Func. Count: 59, Neg. LLF: 140.04347576592818
Iteration: 9, Func. Count: 66, Neg. LLF: 140.041782277625
Iteration: 10, Func. Count: 73, Neg. LLF: 140.02762612715296
Iteration: 11, Func. Count: 80, Neg. LLF: 141.09196748281045
Iteration: 12, Func. Count: 88, Neg. LLF: 272.5861360815907
Iteration: 13, Func. Count: 97, Neg. LLF: 140.50246798486938
Iteration: 14, Func. Count: 105, Neg. LLF: 140.02140247663536
Iteration: 15, Func. Count: 113, Neg. LLF: 140.01135427929327
Iteration: 16, Func. Count: 120, Neg. LLF: 140.18165978946897
Iteration: 17, Func. Count: 130, Neg. LLF: 140.01387856055632
Iteration: 18, Func. Count: 138, Neg. LLF: 140.00947538797735
Iteration: 19, Func. Count: 145, Neg. LLF: 140.00946959853687
Iteration: 20, Func. Count: 151, Neg. LLF: 140.00946959843625
Optimization terminated successfully (Exit mode 0)
Current function value: 140.00946959853687
Iterations: 20
Function evaluations: 151
Gradient evaluations: 20
Iteration: 1, Func. Count: 9, Neg. LLF: 171.62184854980669
Iteration: 2, Func. Count: 19, Neg. LLF: 140.0374777565415
Iteration: 3, Func. Count: 27, Neg. LLF: 140.0349134126991
Iteration: 4, Func. Count: 35, Neg. LLF: 140.03380854563227
Iteration: 5, Func. Count: 43, Neg. LLF: 140.0310572294293
Iteration: 6, Func. Count: 51, Neg. LLF: 140.03001135138692
Iteration: 7, Func. Count: 59, Neg. LLF: 140.02889785025258
Iteration: 8, Func. Count: 67, Neg. LLF: 140.02882472764938
Iteration: 9, Func. Count: 75, Neg. LLF: 140.02865679632208
Iteration: 10, Func. Count: 83, Neg. LLF: 140.02831041702214
Iteration: 11, Func. Count: 91, Neg. LLF: 140.0273104752076
Iteration: 12, Func. Count: 99, Neg. LLF: 140.02484572122572
Iteration: 13, Func. Count: 107, Neg. LLF: 140.01938891810167
Iteration: 14, Func. Count: 115, Neg. LLF: 140.01772486362924
Iteration: 15, Func. Count: 123, Neg. LLF: 140.01161284423
Iteration: 16, Func. Count: 131, Neg. LLF: 140.01090317015
Iteration: 17, Func. Count: 139, Neg. LLF: 140.01076831047757
Iteration: 18, Func. Count: 147, Neg. LLF: 140.01072094587602
Iteration: 19, Func. Count: 155, Neg. LLF: 140.0103703706116
Iteration: 20, Func. Count: 163, Neg. LLF: 140.00750360484503
Iteration: 21, Func. Count: 171, Neg. LLF: 139.9678404772791
Iteration: 22, Func. Count: 179, Neg. LLF: 207.4339718215806
Iteration: 23, Func. Count: 191, Neg. LLF: 186.8507296460639
Iteration: 24, Func. Count: 202, Neg. LLF: 157.77471287789464
Iteration: 25, Func. Count: 212, Neg. LLF: 146.16441395685803
Iteration: 26, Func. Count: 222, Neg. LLF: 139.9562354438737
Iteration: 27, Func. Count: 231, Neg. LLF: 139.94575769221726
Iteration: 28, Func. Count: 239, Neg. LLF: 139.94570463488864
Iteration: 29, Func. Count: 247, Neg. LLF: 139.94564058487597
Iteration: 30, Func. Count: 255, Neg. LLF: 139.94553286181434
Iteration: 31, Func. Count: 263, Neg. LLF: 139.9454761164821
Iteration: 32, Func. Count: 271, Neg. LLF: 139.94546207867015
Iteration: 33, Func. Count: 279, Neg. LLF: 139.945461259632
Optimization terminated successfully (Exit mode 0)
Current function value: 139.945461259632
Iterations: 34
Function evaluations: 279
Gradient evaluations: 33
Iteration: 1, Func. Count: 10, Neg. LLF: 166.49403585153706
Iteration: 2, Func. Count: 21, Neg. LLF: 140.03230935174716
Iteration: 3, Func. Count: 30, Neg. LLF: 140.0305056595444
Iteration: 4, Func. Count: 39, Neg. LLF: 140.02912521900856
Iteration: 5, Func. Count: 48, Neg. LLF: 140.02810050051446
Iteration: 6, Func. Count: 57, Neg. LLF: 140.02804966825013
Iteration: 7, Func. Count: 66, Neg. LLF: 140.02778495526314
Iteration: 8, Func. Count: 75, Neg. LLF: 140.02677699343695
Iteration: 9, Func. Count: 84, Neg. LLF: 140.02643430680382
Iteration: 10, Func. Count: 93, Neg. LLF: 140.02620980467935
Iteration: 11, Func. Count: 102, Neg. LLF: 140.02606172122648
Iteration: 12, Func. Count: 111, Neg. LLF: 140.0253212241358
Iteration: 13, Func. Count: 120, Neg. LLF: 140.02224586659386
Iteration: 14, Func. Count: 129, Neg. LLF: 140.02187377810858
Iteration: 15, Func. Count: 139, Neg. LLF: 140.01904681419273
Iteration: 16, Func. Count: 148, Neg. LLF: 140.01444075261887
Iteration: 17, Func. Count: 157, Neg. LLF: 140.01326083984216
Iteration: 18, Func. Count: 166, Neg. LLF: 140.01168813079948
Iteration: 19, Func. Count: 175, Neg. LLF: 140.01124762065504
Iteration: 20, Func. Count: 184, Neg. LLF: 140.01141270171988
Iteration: 21, Func. Count: 194, Neg. LLF: 140.01082953689072
Iteration: 22, Func. Count: 203, Neg. LLF: 143.12006496635632
Iteration: 23, Func. Count: 214, Neg. LLF: 141.75005464029365
Iteration: 24, Func. Count: 224, Neg. LLF: 139.98546150516256
Iteration: 25, Func. Count: 234, Neg. LLF: 139.98127596986222
Iteration: 26, Func. Count: 243, Neg. LLF: 139.9775954516965
Iteration: 27, Func. Count: 252, Neg. LLF: 139.97516409543428
Iteration: 28, Func. Count: 261, Neg. LLF: 139.96714236993702
Iteration: 29, Func. Count: 270, Neg. LLF: 139.95695432276904
Iteration: 30, Func. Count: 279, Neg. LLF: 139.9488266257528
Iteration: 31, Func. Count: 288, Neg. LLF: 139.9457169816384
Iteration: 32, Func. Count: 297, Neg. LLF: 139.94547048229822
Iteration: 33, Func. Count: 306, Neg. LLF: 139.94546191732425
Iteration: 34, Func. Count: 315, Neg. LLF: 139.94546128213892
Optimization terminated successfully (Exit mode 0)
Current function value: 139.94546128213892
Iterations: 35
Function evaluations: 315
Gradient evaluations: 34
Iteration: 1, Func. Count: 11, Neg. LLF: 162.39866145845735
Iteration: 2, Func. Count: 23, Neg. LLF: 140.02756715885502
Iteration: 3, Func. Count: 33, Neg. LLF: 140.0289446737308
Iteration: 4, Func. Count: 44, Neg. LLF: 140.02394253744205
Iteration: 5, Func. Count: 54, Neg. LLF: 140.0227563689848
Iteration: 6, Func. Count: 64, Neg. LLF: 140.01270011796043
Iteration: 7, Func. Count: 74, Neg. LLF: 140.00000773381208
Iteration: 8, Func. Count: 84, Neg. LLF: 139.9773382310341
Iteration: 9, Func. Count: 94, Neg. LLF: 139.8618542007123
Iteration: 10, Func. Count: 104, Neg. LLF: 141.90296508936163
Iteration: 11, Func. Count: 115, Neg. LLF: 194.4791779329162
Iteration: 12, Func. Count: 127, Neg. LLF: 147.1542480225646
Iteration: 13, Func. Count: 138, Neg. LLF: 150.5389284126271
Iteration: 14, Func. Count: 149, Neg. LLF: 139.2026167785542
Iteration: 15, Func. Count: 160, Neg. LLF: 139.30083778946215
Iteration: 16, Func. Count: 171, Neg. LLF: 139.96699690984073
Iteration: 17, Func. Count: 183, Neg. LLF: 138.8494736534539
Iteration: 18, Func. Count: 193, Neg. LLF: 138.631193456408
Iteration: 19, Func. Count: 203, Neg. LLF: 138.65699163138544
Iteration: 20, Func. Count: 214, Neg. LLF: 138.5218107038079
Iteration: 21, Func. Count: 224, Neg. LLF: 138.514143122023
Iteration: 22, Func. Count: 234, Neg. LLF: 138.51374913518572
Iteration: 23, Func. Count: 244, Neg. LLF: 138.51370732361937
Iteration: 24, Func. Count: 254, Neg. LLF: 138.51370621134404
Iteration: 25, Func. Count: 263, Neg. LLF: 138.51370621131642
Optimization terminated successfully (Exit mode 0)
Current function value: 138.51370621134404
Iterations: 26
Function evaluations: 263
Gradient evaluations: 25
Iteration: 1, Func. Count: 8, Neg. LLF: 140.55373817472247
Iteration: 2, Func. Count: 15, Neg. LLF: 141.9459836469103
Iteration: 3, Func. Count: 23, Neg. LLF: 140.62402649013515
Iteration: 4, Func. Count: 31, Neg. LLF: 139.49252181626764
Iteration: 5, Func. Count: 38, Neg. LLF: 139.20450822965125
Iteration: 6, Func. Count: 45, Neg. LLF: 140.3275044667124
Iteration: 7, Func. Count: 54, Neg. LLF: 139.12787012245008
Iteration: 8, Func. Count: 61, Neg. LLF: 139.10915249386068
Iteration: 9, Func. Count: 68, Neg. LLF: 139.09373721311132
Iteration: 10, Func. Count: 75, Neg. LLF: 139.07644673272017
Iteration: 11, Func. Count: 82, Neg. LLF: 139.0728798197746
Iteration: 12, Func. Count: 89, Neg. LLF: 139.07250138672234
Iteration: 13, Func. Count: 96, Neg. LLF: 139.0724992070941
Iteration: 14, Func. Count: 102, Neg. LLF: 139.0724990779565
Optimization terminated successfully (Exit mode 0)
Current function value: 139.0724992070941
Iterations: 14
Function evaluations: 102
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 142.2189832100372
Iteration: 2, Func. Count: 19, Neg. LLF: 144.60582608673553
Iteration: 3, Func. Count: 28, Neg. LLF: 139.50388699082498
Iteration: 4, Func. Count: 36, Neg. LLF: 139.4868924487284
Iteration: 5, Func. Count: 44, Neg. LLF: 139.48202615036746
Iteration: 6, Func. Count: 52, Neg. LLF: 139.47559864081626
Iteration: 7, Func. Count: 60, Neg. LLF: 139.42689961562783
Iteration: 8, Func. Count: 68, Neg. LLF: 139.15780641269995
Iteration: 9, Func. Count: 76, Neg. LLF: 139.3814625080855
Iteration: 10, Func. Count: 86, Neg. LLF: 138.66364603716693
Iteration: 11, Func. Count: 94, Neg. LLF: 138.33724737203798
Iteration: 12, Func. Count: 102, Neg. LLF: 138.10648189334233
Iteration: 13, Func. Count: 110, Neg. LLF: 138.08083731266134
Iteration: 14, Func. Count: 119, Neg. LLF: 137.98156390174987
Iteration: 15, Func. Count: 127, Neg. LLF: 137.97273409437918
Iteration: 16, Func. Count: 135, Neg. LLF: 137.97169208422775
Iteration: 17, Func. Count: 143, Neg. LLF: 137.971525792127
Iteration: 18, Func. Count: 151, Neg. LLF: 137.97152252628817
Iteration: 19, Func. Count: 158, Neg. LLF: 137.97152251674635
Optimization terminated successfully (Exit mode 0)
Current function value: 137.97152252628817
Iterations: 19
Function evaluations: 158
Gradient evaluations: 19
Iteration: 1, Func. Count: 10, Neg. LLF: 142.03105330165016
Iteration: 2, Func. Count: 21, Neg. LLF: 144.81664969772535
Iteration: 3, Func. Count: 31, Neg. LLF: 138.26544378762114
Iteration: 4, Func. Count: 40, Neg. LLF: 138.4201233531816
Iteration: 5, Func. Count: 50, Neg. LLF: 137.97183983173719
Iteration: 6, Func. Count: 59, Neg. LLF: 137.36823799378604
Iteration: 7, Func. Count: 68, Neg. LLF: 137.25844361620833
Iteration: 8, Func. Count: 77, Neg. LLF: 137.0867556438036
Iteration: 9, Func. Count: 86, Neg. LLF: 137.03031424097412
Iteration: 10, Func. Count: 95, Neg. LLF: 136.98818343003668
Iteration: 11, Func. Count: 104, Neg. LLF: 136.9436272415589
Iteration: 12, Func. Count: 113, Neg. LLF: 136.72816769315511
Iteration: 13, Func. Count: 122, Neg. LLF: 165.76919414285769
Iteration: 14, Func. Count: 132, Neg. LLF: 136.70893067992867
Iteration: 15, Func. Count: 142, Neg. LLF: 136.6641496518768
Iteration: 16, Func. Count: 152, Neg. LLF: 136.6569442499127
Iteration: 17, Func. Count: 161, Neg. LLF: 136.65673840654028
Iteration: 18, Func. Count: 170, Neg. LLF: 136.65673882520545
Iteration: 19, Func. Count: 179, Neg. LLF: 136.65673650140351
Optimization terminated successfully (Exit mode 0)
Current function value: 136.6567365013578
Iterations: 19
Function evaluations: 179
Gradient evaluations: 19
Iteration: 1, Func. Count: 11, Neg. LLF: 142.5368974267295
Iteration: 2, Func. Count: 23, Neg. LLF: 144.598804252659
Iteration: 3, Func. Count: 34, Neg. LLF: 138.75724484388095
Iteration: 4, Func. Count: 44, Neg. LLF: 138.56909035515957
Iteration: 5, Func. Count: 54, Neg. LLF: 138.16842323253863
Iteration: 6, Func. Count: 64, Neg. LLF: 137.6917279114105
Iteration: 7, Func. Count: 74, Neg. LLF: 137.83481859195365
Iteration: 8, Func. Count: 85, Neg. LLF: 139.43775750812222
Iteration: 9, Func. Count: 97, Neg. LLF: 136.90810944065532
Iteration: 10, Func. Count: 108, Neg. LLF: 136.8971527599277
Iteration: 11, Func. Count: 119, Neg. LLF: 136.66137344297974
Iteration: 12, Func. Count: 130, Neg. LLF: 136.6444574241878
Iteration: 13, Func. Count: 140, Neg. LLF: 136.6355157240267
Iteration: 14, Func. Count: 150, Neg. LLF: 136.62948047817972
Iteration: 15, Func. Count: 160, Neg. LLF: 136.62724935106357
Iteration: 16, Func. Count: 170, Neg. LLF: 136.62695416803484
Iteration: 17, Func. Count: 180, Neg. LLF: 136.62688745212773
Iteration: 18, Func. Count: 190, Neg. LLF: 136.62687380904111
Iteration: 19, Func. Count: 199, Neg. LLF: 136.62687380895676
Optimization terminated successfully (Exit mode 0)
Current function value: 136.62687380904111
Iterations: 19
Function evaluations: 199
Gradient evaluations: 19
Iteration: 1, Func. Count: 12, Neg. LLF: 142.89251557286545
Iteration: 2, Func. Count: 25, Neg. LLF: 144.60423860362917
Iteration: 3, Func. Count: 37, Neg. LLF: 139.7499447313629
Iteration: 4, Func. Count: 49, Neg. LLF: 138.29207103968056
Iteration: 5, Func. Count: 60, Neg. LLF: 138.01516105559054
Iteration: 6, Func. Count: 71, Neg. LLF: 137.62349490368413
Iteration: 7, Func. Count: 82, Neg. LLF: 137.3231512393033
Iteration: 8, Func. Count: 93, Neg. LLF: 136.96938728154504
Iteration: 9, Func. Count: 104, Neg. LLF: 141.22715739865063
Iteration: 10, Func. Count: 116, Neg. LLF: 137.3122411732316
Iteration: 11, Func. Count: 128, Neg. LLF: 136.7447624129937
Iteration: 12, Func. Count: 139, Neg. LLF: 136.7302644825196
Iteration: 13, Func. Count: 150, Neg. LLF: 136.68419261116128
Iteration: 14, Func. Count: 161, Neg. LLF: 136.670876416302
Iteration: 15, Func. Count: 172, Neg. LLF: 136.88436386767518
Iteration: 16, Func. Count: 184, Neg. LLF: 136.65383958127302
Iteration: 17, Func. Count: 195, Neg. LLF: 136.64424541505713
Iteration: 18, Func. Count: 206, Neg. LLF: 136.63920954159937
Iteration: 19, Func. Count: 218, Neg. LLF: 136.62698129052168
Iteration: 20, Func. Count: 229, Neg. LLF: 136.6268888464434
Iteration: 21, Func. Count: 240, Neg. LLF: 136.6268784816579
Iteration: 22, Func. Count: 251, Neg. LLF: 136.62687367302465
Iteration: 23, Func. Count: 261, Neg. LLF: 136.6268736795288
Optimization terminated successfully (Exit mode 0)
Current function value: 136.62687367302465
Iterations: 23
Function evaluations: 261
Gradient evaluations: 23
Iteration: 1, Func. Count: 9, Neg. LLF: 138.7980499301179
Iteration: 2, Func. Count: 17, Neg. LLF: 140.97216868321004
Iteration: 3, Func. Count: 26, Neg. LLF: 138.65622612786063
Iteration: 4, Func. Count: 35, Neg. LLF: 142.68208838209358
Iteration: 5, Func. Count: 44, Neg. LLF: 140.43146996434183
Iteration: 6, Func. Count: 53, Neg. LLF: 140.2478006386403
Iteration: 7, Func. Count: 62, Neg. LLF: 139.33754478446457
Iteration: 8, Func. Count: 71, Neg. LLF: 138.14144902402884
Iteration: 9, Func. Count: 80, Neg. LLF: 138.04952345208815
Iteration: 10, Func. Count: 88, Neg. LLF: 138.04884399117867
Iteration: 11, Func. Count: 96, Neg. LLF: 138.04878982156774
Iteration: 12, Func. Count: 104, Neg. LLF: 138.04878712951347
Iteration: 13, Func. Count: 111, Neg. LLF: 138.04878712952075
Optimization terminated successfully (Exit mode 0)
Current function value: 138.04878712951347
Iterations: 13
Function evaluations: 111
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 142.08196200258402
Iteration: 2, Func. Count: 21, Neg. LLF: 144.62202251959584
Iteration: 3, Func. Count: 31, Neg. LLF: 139.48117751175528
Iteration: 4, Func. Count: 40, Neg. LLF: 139.48866929872239
Iteration: 5, Func. Count: 50, Neg. LLF: 139.43276428863817
Iteration: 6, Func. Count: 59, Neg. LLF: 139.3737798959878
Iteration: 7, Func. Count: 68, Neg. LLF: 139.0625917066608
Iteration: 8, Func. Count: 77, Neg. LLF: 138.90477571874789
Iteration: 9, Func. Count: 86, Neg. LLF: 138.8571830269534
Iteration: 10, Func. Count: 95, Neg. LLF: 138.81788632922542
Iteration: 11, Func. Count: 104, Neg. LLF: 138.79995179779087
Iteration: 12, Func. Count: 113, Neg. LLF: 138.71381973102868
Iteration: 13, Func. Count: 122, Neg. LLF: 138.63799468588766
Iteration: 14, Func. Count: 131, Neg. LLF: 139.3514774831098
Iteration: 15, Func. Count: 141, Neg. LLF: 140.31034046519596
Iteration: 16, Func. Count: 151, Neg. LLF: 139.06507077686902
Iteration: 17, Func. Count: 161, Neg. LLF: 154.526600706929
Iteration: 18, Func. Count: 171, Neg. LLF: 140.66634413295134
Iteration: 19, Func. Count: 181, Neg. LLF: 138.3358278150981
Iteration: 20, Func. Count: 191, Neg. LLF: 138.00783519485103
Iteration: 21, Func. Count: 200, Neg. LLF: 137.98614908649418
Iteration: 22, Func. Count: 209, Neg. LLF: 137.97512641024335
Iteration: 23, Func. Count: 218, Neg. LLF: 137.97227468852014
Iteration: 24, Func. Count: 227, Neg. LLF: 137.97160805346357
Iteration: 25, Func. Count: 236, Neg. LLF: 137.97153359978026
Iteration: 26, Func. Count: 245, Neg. LLF: 137.97152273597504
Iteration: 27, Func. Count: 253, Neg. LLF: 137.97152272582113
Optimization terminated successfully (Exit mode 0)
Current function value: 137.97152273597504
Iterations: 27
Function evaluations: 253
Gradient evaluations: 27
Iteration: 1, Func. Count: 11, Neg. LLF: 141.97466242979152
Iteration: 2, Func. Count: 23, Neg. LLF: 144.84404423933503
Iteration: 3, Func. Count: 34, Neg. LLF: 138.2499041534293
Iteration: 4, Func. Count: 44, Neg. LLF: 138.44783414153045
Iteration: 5, Func. Count: 55, Neg. LLF: 137.98026176891872
Iteration: 6, Func. Count: 65, Neg. LLF: 137.3941613986297
Iteration: 7, Func. Count: 75, Neg. LLF: 137.27957386503593
Iteration: 8, Func. Count: 85, Neg. LLF: 137.09856185126458
Iteration: 9, Func. Count: 95, Neg. LLF: 137.03404270641255
Iteration: 10, Func. Count: 105, Neg. LLF: 136.99245211088723
Iteration: 11, Func. Count: 115, Neg. LLF: 136.95262981304586
Iteration: 12, Func. Count: 125, Neg. LLF: 136.70391636664192
Iteration: 13, Func. Count: 135, Neg. LLF: 137.21039041622575
Iteration: 14, Func. Count: 146, Neg. LLF: 136.6743868766867
Iteration: 15, Func. Count: 156, Neg. LLF: 136.6775941556179
Iteration: 16, Func. Count: 167, Neg. LLF: 136.65720943592618
Iteration: 17, Func. Count: 177, Neg. LLF: 136.65673958580777
Iteration: 18, Func. Count: 187, Neg. LLF: 136.65673677416126
Iteration: 19, Func. Count: 196, Neg. LLF: 136.65673677431613
Optimization terminated successfully (Exit mode 0)
Current function value: 136.65673677416126
Iterations: 19
Function evaluations: 196
Gradient evaluations: 19
Iteration: 1, Func. Count: 12, Neg. LLF: 142.43906492035026
Iteration: 2, Func. Count: 25, Neg. LLF: 144.63273651564444
Iteration: 3, Func. Count: 37, Neg. LLF: 138.73693220002946
Iteration: 4, Func. Count: 48, Neg. LLF: 138.54828759690554
Iteration: 5, Func. Count: 59, Neg. LLF: 138.13262615938874
Iteration: 6, Func. Count: 70, Neg. LLF: 137.51669376152194
Iteration: 7, Func. Count: 81, Neg. LLF: 138.38571003585957
Iteration: 8, Func. Count: 93, Neg. LLF: 138.58010744698493
Iteration: 9, Func. Count: 105, Neg. LLF: 140.16525040318675
Iteration: 10, Func. Count: 117, Neg. LLF: 136.6627901752105
Iteration: 11, Func. Count: 128, Neg. LLF: 136.788677567354
Iteration: 12, Func. Count: 140, Neg. LLF: 136.73019063092786
Iteration: 13, Func. Count: 152, Neg. LLF: 136.64580555543554
Iteration: 14, Func. Count: 163, Neg. LLF: 136.63884968498857
Iteration: 15, Func. Count: 174, Neg. LLF: 136.6319087327403
Iteration: 16, Func. Count: 185, Neg. LLF: 136.62856789795603
Iteration: 17, Func. Count: 196, Neg. LLF: 136.62711748224322
Iteration: 18, Func. Count: 207, Neg. LLF: 136.62690629480852
Iteration: 19, Func. Count: 218, Neg. LLF: 136.62688018603095
Iteration: 20, Func. Count: 229, Neg. LLF: 136.62687377455305
Iteration: 21, Func. Count: 239, Neg. LLF: 136.62687377468458
Optimization terminated successfully (Exit mode 0)
Current function value: 136.62687377455305
Iterations: 21
Function evaluations: 239
Gradient evaluations: 21
Iteration: 1, Func. Count: 13, Neg. LLF: 142.79894922910222
Iteration: 2, Func. Count: 27, Neg. LLF: 144.63199775156923
Iteration: 3, Func. Count: 40, Neg. LLF: 139.7781876304759
Iteration: 4, Func. Count: 53, Neg. LLF: 138.2854459435778
Iteration: 5, Func. Count: 65, Neg. LLF: 138.00961051110124
Iteration: 6, Func. Count: 77, Neg. LLF: 137.65673061632927
Iteration: 7, Func. Count: 89, Neg. LLF: 137.32940044675792
Iteration: 8, Func. Count: 101, Neg. LLF: 137.03740982438114
Iteration: 9, Func. Count: 113, Neg. LLF: 140.54883142400396
Iteration: 10, Func. Count: 126, Neg. LLF: 137.68263056987757
Iteration: 11, Func. Count: 139, Neg. LLF: 136.75616657832188
Iteration: 12, Func. Count: 151, Neg. LLF: 136.73061108177993
Iteration: 13, Func. Count: 163, Neg. LLF: 136.71710228781077
Iteration: 14, Func. Count: 175, Neg. LLF: 136.67855984779044
Iteration: 15, Func. Count: 187, Neg. LLF: 136.95380115216594
Iteration: 16, Func. Count: 200, Neg. LLF: 136.64917989258618
Iteration: 17, Func. Count: 212, Neg. LLF: 136.63321843547203
Iteration: 18, Func. Count: 224, Neg. LLF: 136.62965701586623
Iteration: 19, Func. Count: 236, Neg. LLF: 136.62691684041553
Iteration: 20, Func. Count: 248, Neg. LLF: 136.6268799727558
Iteration: 21, Func. Count: 260, Neg. LLF: 136.6268746416644
Iteration: 22, Func. Count: 272, Neg. LLF: 136.62687366533942
Optimization terminated successfully (Exit mode 0)
Current function value: 136.62687366533942
Iterations: 22
Function evaluations: 272
Gradient evaluations: 22
Iteration: 1, Func. Count: 10, Neg. LLF: 136.40841166676975
Iteration: 2, Func. Count: 19, Neg. LLF: 140.49169077890383
Iteration: 3, Func. Count: 29, Neg. LLF: 136.15540864038417
Iteration: 4, Func. Count: 38, Neg. LLF: 136.02445403779936
Iteration: 5, Func. Count: 47, Neg. LLF: 136.00392350600944
Iteration: 6, Func. Count: 56, Neg. LLF: 135.9976194753092
Iteration: 7, Func. Count: 65, Neg. LLF: 135.98095638265804
Iteration: 8, Func. Count: 74, Neg. LLF: 135.9782124541702
Iteration: 9, Func. Count: 83, Neg. LLF: 135.97757693644755
Iteration: 10, Func. Count: 92, Neg. LLF: 135.9775412914442
Iteration: 11, Func. Count: 101, Neg. LLF: 135.9775345169411
Iteration: 12, Func. Count: 109, Neg. LLF: 135.97753432615838
Optimization terminated successfully (Exit mode 0)
Current function value: 135.9775345169411
Iterations: 12
Function evaluations: 109
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 136.7701495880965
Iteration: 2, Func. Count: 21, Neg. LLF: 141.2312631803375
Iteration: 3, Func. Count: 32, Neg. LLF: 136.0127578359631
Iteration: 4, Func. Count: 42, Neg. LLF: 135.99529987796544
Iteration: 5, Func. Count: 52, Neg. LLF: 135.981263732772
Iteration: 6, Func. Count: 62, Neg. LLF: 135.97953602570473
Iteration: 7, Func. Count: 72, Neg. LLF: 135.9781506861269
Iteration: 8, Func. Count: 82, Neg. LLF: 135.9775963386579
Iteration: 9, Func. Count: 92, Neg. LLF: 135.97753669218568
Iteration: 10, Func. Count: 102, Neg. LLF: 135.9775345377358
Iteration: 11, Func. Count: 111, Neg. LLF: 135.97753465480676
Optimization terminated successfully (Exit mode 0)
Current function value: 135.9775345377358
Iterations: 11
Function evaluations: 111
Gradient evaluations: 11
Iteration: 1, Func. Count: 12, Neg. LLF: 136.7584847155046
Iteration: 2, Func. Count: 23, Neg. LLF: 143.57464481012175
Iteration: 3, Func. Count: 35, Neg. LLF: 136.01974415118931
Iteration: 4, Func. Count: 46, Neg. LLF: 135.99905055371786
Iteration: 5, Func. Count: 57, Neg. LLF: 135.98382870616012
Iteration: 6, Func. Count: 68, Neg. LLF: 135.97988596949833
Iteration: 7, Func. Count: 79, Neg. LLF: 135.97880964163738
Iteration: 8, Func. Count: 90, Neg. LLF: 135.97759008335836
Iteration: 9, Func. Count: 101, Neg. LLF: 135.977536074514
Iteration: 10, Func. Count: 112, Neg. LLF: 135.97753452033592
Iteration: 11, Func. Count: 122, Neg. LLF: 135.9775345972567
Optimization terminated successfully (Exit mode 0)
Current function value: 135.97753452033592
Iterations: 11
Function evaluations: 122
Gradient evaluations: 11
Iteration: 1, Func. Count: 13, Neg. LLF: 136.74503334024485
Iteration: 2, Func. Count: 25, Neg. LLF: 143.78919660041163
Iteration: 3, Func. Count: 38, Neg. LLF: 136.02869542105012
Iteration: 4, Func. Count: 50, Neg. LLF: 136.0023334626431
Iteration: 5, Func. Count: 62, Neg. LLF: 135.9854357177811
Iteration: 6, Func. Count: 74, Neg. LLF: 135.98014051158677
Iteration: 7, Func. Count: 86, Neg. LLF: 135.97897821001087
Iteration: 8, Func. Count: 98, Neg. LLF: 135.97767875505318
Iteration: 9, Func. Count: 110, Neg. LLF: 135.9775403022841
Iteration: 10, Func. Count: 122, Neg. LLF: 135.9775345810573
Iteration: 11, Func. Count: 133, Neg. LLF: 135.97753469966173
Optimization terminated successfully (Exit mode 0)
Current function value: 135.9775345810573
Iterations: 11
Function evaluations: 133
Gradient evaluations: 11
Iteration: 1, Func. Count: 14, Neg. LLF: 136.73575214743985
Iteration: 2, Func. Count: 27, Neg. LLF: 144.960437981549
Iteration: 3, Func. Count: 41, Neg. LLF: 136.03573864238135
Iteration: 4, Func. Count: 54, Neg. LLF: 136.00659548975537
Iteration: 5, Func. Count: 67, Neg. LLF: 135.98632721655835
Iteration: 6, Func. Count: 80, Neg. LLF: 135.9805277455914
Iteration: 7, Func. Count: 93, Neg. LLF: 135.97909393372987
Iteration: 8, Func. Count: 106, Neg. LLF: 135.9778921466177
Iteration: 9, Func. Count: 119, Neg. LLF: 135.97755591474652
Iteration: 10, Func. Count: 132, Neg. LLF: 135.977535042983
Iteration: 11, Func. Count: 144, Neg. LLF: 135.97753508013344
Optimization terminated successfully (Exit mode 0)
Current function value: 135.977535042983
Iterations: 11
Function evaluations: 144
Gradient evaluations: 11
Iteration: 1, Func. Count: 11, Neg. LLF: 137.09209567579117
Iteration: 2, Func. Count: 21, Neg. LLF: 148.63953241029705
Iteration: 3, Func. Count: 32, Neg. LLF: 136.17837697318157
Iteration: 4, Func. Count: 42, Neg. LLF: 136.04137640894248
Iteration: 5, Func. Count: 52, Neg. LLF: 136.00434054405414
Iteration: 6, Func. Count: 62, Neg. LLF: 135.99330710173913
Iteration: 7, Func. Count: 72, Neg. LLF: 135.9881164454124
Iteration: 8, Func. Count: 82, Neg. LLF: 135.97837584537243
Iteration: 9, Func. Count: 92, Neg. LLF: 135.97763504040918
Iteration: 10, Func. Count: 102, Neg. LLF: 135.97754052415183
Iteration: 11, Func. Count: 112, Neg. LLF: 135.9775345513863
Iteration: 12, Func. Count: 121, Neg. LLF: 135.97753472521075
Optimization terminated successfully (Exit mode 0)
Current function value: 135.9775345513863
Iterations: 12
Function evaluations: 121
Gradient evaluations: 12
Iteration: 1, Func. Count: 12, Neg. LLF: 136.77330423890788
Iteration: 2, Func. Count: 23, Neg. LLF: 141.24043588151306
Iteration: 3, Func. Count: 35, Neg. LLF: 136.0129197321916
Iteration: 4, Func. Count: 46, Neg. LLF: 135.9953287770886
Iteration: 5, Func. Count: 57, Neg. LLF: 135.98126823496486
Iteration: 6, Func. Count: 68, Neg. LLF: 135.9795369325847
Iteration: 7, Func. Count: 79, Neg. LLF: 135.97815432886097
Iteration: 8, Func. Count: 90, Neg. LLF: 135.97759901425124
Iteration: 9, Func. Count: 101, Neg. LLF: 135.9775368438968
Iteration: 10, Func. Count: 112, Neg. LLF: 135.97753454255678
Iteration: 11, Func. Count: 122, Neg. LLF: 135.97753465962975
Optimization terminated successfully (Exit mode 0)
Current function value: 135.97753454255678
Iterations: 11
Function evaluations: 122
Gradient evaluations: 11
Iteration: 1, Func. Count: 13, Neg. LLF: 136.76738097108444
Iteration: 2, Func. Count: 25, Neg. LLF: 143.58257090882145
Iteration: 3, Func. Count: 38, Neg. LLF: 136.0198767207688
Iteration: 4, Func. Count: 50, Neg. LLF: 135.99909900820063
Iteration: 5, Func. Count: 62, Neg. LLF: 135.9838076586523
Iteration: 6, Func. Count: 74, Neg. LLF: 135.97989163730261
Iteration: 7, Func. Count: 86, Neg. LLF: 135.97881286656377
Iteration: 8, Func. Count: 98, Neg. LLF: 135.97759177326685
Iteration: 9, Func. Count: 110, Neg. LLF: 135.97753615603915
Iteration: 10, Func. Count: 122, Neg. LLF: 135.97753452054377
Iteration: 11, Func. Count: 133, Neg. LLF: 135.97753459746463
Optimization terminated successfully (Exit mode 0)
Current function value: 135.97753452054377
Iterations: 11
Function evaluations: 133
Gradient evaluations: 11
Iteration: 1, Func. Count: 14, Neg. LLF: 136.75663369451388
Iteration: 2, Func. Count: 27, Neg. LLF: 143.79111894937606
Iteration: 3, Func. Count: 41, Neg. LLF: 136.0287299097762
Iteration: 4, Func. Count: 54, Neg. LLF: 136.00237595266628
Iteration: 5, Func. Count: 67, Neg. LLF: 135.98536600014975
Iteration: 6, Func. Count: 80, Neg. LLF: 135.98014484002118
Iteration: 7, Func. Count: 93, Neg. LLF: 135.97897844439484
Iteration: 8, Func. Count: 106, Neg. LLF: 135.9776810739715
Iteration: 9, Func. Count: 119, Neg. LLF: 135.97754046950575
Iteration: 10, Func. Count: 132, Neg. LLF: 135.97753458532017
Iteration: 11, Func. Count: 144, Neg. LLF: 135.97753470392456
Optimization terminated successfully (Exit mode 0)
Current function value: 135.97753458532017
Iterations: 11
Function evaluations: 144
Gradient evaluations: 11
Iteration: 1, Func. Count: 15, Neg. LLF: 136.74736045534777
Iteration: 2, Func. Count: 29, Neg. LLF: 144.9838610098769
Iteration: 3, Func. Count: 44, Neg. LLF: 136.03579212987236
Iteration: 4, Func. Count: 58, Neg. LLF: 136.00670298987544
Iteration: 5, Func. Count: 72, Neg. LLF: 135.9862625735062
Iteration: 6, Func. Count: 86, Neg. LLF: 135.9805373167087
Iteration: 7, Func. Count: 100, Neg. LLF: 135.9790947897802
Iteration: 8, Func. Count: 114, Neg. LLF: 135.97789664668477
Iteration: 9, Func. Count: 128, Neg. LLF: 135.9775561741224
Iteration: 10, Func. Count: 142, Neg. LLF: 135.97753505511957
Iteration: 11, Func. Count: 156, Neg. LLF: 135.9775345139954
Optimization terminated successfully (Exit mode 0)
Current function value: 135.9775345139954
Iterations: 11
Function evaluations: 156
Gradient evaluations: 11
Iteration: 1, Func. Count: 8, Neg. LLF: 141.16143545247198
Iteration: 2, Func. Count: 15, Neg. LLF: 147.46840746080903
Iteration: 3, Func. Count: 23, Neg. LLF: 139.87905743831624
Iteration: 4, Func. Count: 30, Neg. LLF: 139.76451085554677
Iteration: 5, Func. Count: 37, Neg. LLF: 139.7323870041558
Iteration: 6, Func. Count: 44, Neg. LLF: 139.72946550964156
Iteration: 7, Func. Count: 51, Neg. LLF: 139.7279388279465
Iteration: 8, Func. Count: 58, Neg. LLF: 139.7264875887511
Iteration: 9, Func. Count: 65, Neg. LLF: 139.72582769180207
Iteration: 10, Func. Count: 72, Neg. LLF: 139.72574106131555
Iteration: 11, Func. Count: 79, Neg. LLF: 139.72573936738468
Iteration: 12, Func. Count: 85, Neg. LLF: 139.72573969005768
Optimization terminated successfully (Exit mode 0)
Current function value: 139.72573936738468
Iterations: 12
Function evaluations: 85
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 179.4597836783134
Iteration: 2, Func. Count: 19, Neg. LLF: 140.0450968790117
Iteration: 3, Func. Count: 27, Neg. LLF: 140.04424590210274
Iteration: 4, Func. Count: 35, Neg. LLF: 140.04393543293642
Iteration: 5, Func. Count: 43, Neg. LLF: 140.04378142137287
Iteration: 6, Func. Count: 51, Neg. LLF: 140.0437634849887
Iteration: 7, Func. Count: 59, Neg. LLF: 140.0437431037938
Iteration: 8, Func. Count: 67, Neg. LLF: 140.0436910574449
Iteration: 9, Func. Count: 75, Neg. LLF: 140.0435509960705
Iteration: 10, Func. Count: 83, Neg. LLF: 140.04316497822524
Iteration: 11, Func. Count: 91, Neg. LLF: 140.04199360980175
Iteration: 12, Func. Count: 99, Neg. LLF: 140.03593614611634
Iteration: 13, Func. Count: 107, Neg. LLF: 141.21699687855508
Iteration: 14, Func. Count: 116, Neg. LLF: 141.166620110363
Iteration: 15, Func. Count: 125, Neg. LLF: 141.79638243689305
Iteration: 16, Func. Count: 134, Neg. LLF: 140.27574376663364
Iteration: 17, Func. Count: 143, Neg. LLF: 141.37507832080632
Iteration: 18, Func. Count: 152, Neg. LLF: 140.02432805638048
Iteration: 19, Func. Count: 161, Neg. LLF: 144.55940485058176
Iteration: 20, Func. Count: 171, Neg. LLF: 140.01136846536156
Iteration: 21, Func. Count: 179, Neg. LLF: 140.0097985281685
Iteration: 22, Func. Count: 187, Neg. LLF: 140.00951535975528
Iteration: 23, Func. Count: 195, Neg. LLF: 140.00947002523603
Iteration: 24, Func. Count: 202, Neg. LLF: 140.0094700249602
Optimization terminated successfully (Exit mode 0)
Current function value: 140.00947002523603
Iterations: 24
Function evaluations: 202
Gradient evaluations: 24
Iteration: 1, Func. Count: 10, Neg. LLF: 171.5775531760932
Iteration: 2, Func. Count: 21, Neg. LLF: 140.03749463920468
Iteration: 3, Func. Count: 30, Neg. LLF: 140.03486072423834
Iteration: 4, Func. Count: 39, Neg. LLF: 140.03391275913333
Iteration: 5, Func. Count: 48, Neg. LLF: 140.03021453376314
Iteration: 6, Func. Count: 57, Neg. LLF: 140.02946376918587
Iteration: 7, Func. Count: 66, Neg. LLF: 140.02894080605915
Iteration: 8, Func. Count: 75, Neg. LLF: 140.0288093076036
Iteration: 9, Func. Count: 84, Neg. LLF: 140.0286830419225
Iteration: 10, Func. Count: 93, Neg. LLF: 140.02847419517775
Iteration: 11, Func. Count: 102, Neg. LLF: 140.02786796733398
Iteration: 12, Func. Count: 111, Neg. LLF: 140.0263470855083
Iteration: 13, Func. Count: 120, Neg. LLF: 140.02230111153048
Iteration: 14, Func. Count: 129, Neg. LLF: 140.02052062690936
Iteration: 15, Func. Count: 138, Neg. LLF: 140.01441542078533
Iteration: 16, Func. Count: 147, Neg. LLF: 140.01142223789606
Iteration: 17, Func. Count: 156, Neg. LLF: 140.01080169798766
Iteration: 18, Func. Count: 165, Neg. LLF: 140.01053203156286
Iteration: 19, Func. Count: 174, Neg. LLF: 140.01045247666426
Iteration: 20, Func. Count: 183, Neg. LLF: 140.00992033291425
Iteration: 21, Func. Count: 192, Neg. LLF: 140.00776337746737
Iteration: 22, Func. Count: 201, Neg. LLF: 140.00355345512122
Iteration: 23, Func. Count: 210, Neg. LLF: 139.99457571724167
Iteration: 24, Func. Count: 219, Neg. LLF: 139.97790287385166
Iteration: 25, Func. Count: 228, Neg. LLF: 139.98099455478047
Iteration: 26, Func. Count: 238, Neg. LLF: 140.0161611633473
Iteration: 27, Func. Count: 248, Neg. LLF: 139.9463382962589
Iteration: 28, Func. Count: 257, Neg. LLF: 139.946145049224
Iteration: 29, Func. Count: 266, Neg. LLF: 139.94570242827908
Iteration: 30, Func. Count: 275, Neg. LLF: 172.2967943140321
Iteration: 31, Func. Count: 287, Neg. LLF: 139.957144267585
Iteration: 32, Func. Count: 298, Neg. LLF: 139.94555772580858
Iteration: 33, Func. Count: 308, Neg. LLF: 139.94547928832094
Iteration: 34, Func. Count: 317, Neg. LLF: 139.9454685791849
Iteration: 35, Func. Count: 326, Neg. LLF: 139.94546125255977
Iteration: 36, Func. Count: 334, Neg. LLF: 139.94546125256088
Optimization terminated successfully (Exit mode 0)
Current function value: 139.94546125255977
Iterations: 37
Function evaluations: 334
Gradient evaluations: 36
Iteration: 1, Func. Count: 11, Neg. LLF: 166.17004919360292
Iteration: 2, Func. Count: 23, Neg. LLF: 140.03216430003366
Iteration: 3, Func. Count: 33, Neg. LLF: 140.03202743406914
Iteration: 4, Func. Count: 44, Neg. LLF: 140.02897543982448
Iteration: 5, Func. Count: 54, Neg. LLF: 140.02805323244715
Iteration: 6, Func. Count: 64, Neg. LLF: 140.02800035200661
Iteration: 7, Func. Count: 74, Neg. LLF: 140.02771091739564
Iteration: 8, Func. Count: 84, Neg. LLF: 140.02707095844403
Iteration: 9, Func. Count: 94, Neg. LLF: 140.0265282332985
Iteration: 10, Func. Count: 104, Neg. LLF: 140.0260156564919
Iteration: 11, Func. Count: 114, Neg. LLF: 140.02554765385943
Iteration: 12, Func. Count: 124, Neg. LLF: 140.0251430205186
Iteration: 13, Func. Count: 134, Neg. LLF: 140.0242482249538
Iteration: 14, Func. Count: 144, Neg. LLF: 140.02262138851387
Iteration: 15, Func. Count: 154, Neg. LLF: 140.0206658711367
Iteration: 16, Func. Count: 164, Neg. LLF: 140.017751091455
Iteration: 17, Func. Count: 174, Neg. LLF: 140.0112400527061
Iteration: 18, Func. Count: 184, Neg. LLF: 140.0109621489228
Iteration: 19, Func. Count: 194, Neg. LLF: 140.01083251499747
Iteration: 20, Func. Count: 204, Neg. LLF: 140.01081299792983
Iteration: 21, Func. Count: 214, Neg. LLF: 140.0107148995505
Iteration: 22, Func. Count: 224, Neg. LLF: 140.01029839054087
Iteration: 23, Func. Count: 234, Neg. LLF: 140.00954026459348
Iteration: 24, Func. Count: 244, Neg. LLF: 140.00725890819672
Iteration: 25, Func. Count: 254, Neg. LLF: 140.01396732734352
Iteration: 26, Func. Count: 265, Neg. LLF: 140.1000760050856
Iteration: 27, Func. Count: 277, Neg. LLF: 167.15063936563672
Iteration: 28, Func. Count: 290, Neg. LLF: 148.69197420731763
Iteration: 29, Func. Count: 302, Neg. LLF: 139.99641389000703
Iteration: 30, Func. Count: 313, Neg. LLF: 139.94640379528778
Iteration: 31, Func. Count: 323, Neg. LLF: 139.94615896902374
Iteration: 32, Func. Count: 333, Neg. LLF: 139.94603322166552
Iteration: 33, Func. Count: 343, Neg. LLF: 139.94585042562878
Iteration: 34, Func. Count: 353, Neg. LLF: 139.94562915321006
Iteration: 35, Func. Count: 363, Neg. LLF: 139.94549467784228
Iteration: 36, Func. Count: 373, Neg. LLF: 139.94546353627746
Iteration: 37, Func. Count: 383, Neg. LLF: 139.9454612721666
Iteration: 38, Func. Count: 392, Neg. LLF: 139.94546134892997
Optimization terminated successfully (Exit mode 0)
Current function value: 139.9454612721666
Iterations: 39
Function evaluations: 392
Gradient evaluations: 38
Iteration: 1, Func. Count: 12, Neg. LLF: 162.13607047448247
Iteration: 2, Func. Count: 25, Neg. LLF: 140.0274185216336
Iteration: 3, Func. Count: 36, Neg. LLF: 140.0290423824114
Iteration: 4, Func. Count: 48, Neg. LLF: 140.02423964336086
Iteration: 5, Func. Count: 59, Neg. LLF: 140.0230640894625
Iteration: 6, Func. Count: 70, Neg. LLF: 140.0215204252939
Iteration: 7, Func. Count: 81, Neg. LLF: 140.01772786729413
Iteration: 8, Func. Count: 92, Neg. LLF: 139.99639034049503
Iteration: 9, Func. Count: 103, Neg. LLF: 139.99298314242893
Iteration: 10, Func. Count: 114, Neg. LLF: 139.97545657418658
Iteration: 11, Func. Count: 125, Neg. LLF: 145.43670155865343
Iteration: 12, Func. Count: 137, Neg. LLF: 144.53073524198524
Iteration: 13, Func. Count: 149, Neg. LLF: 146.03615548444472
Iteration: 14, Func. Count: 161, Neg. LLF: 140.82739617695486
Iteration: 15, Func. Count: 173, Neg. LLF: 139.08515260206207
Iteration: 16, Func. Count: 184, Neg. LLF: 139.0064656039926
Iteration: 17, Func. Count: 195, Neg. LLF: 138.89138748070874
Iteration: 18, Func. Count: 206, Neg. LLF: 138.78553381477786
Iteration: 19, Func. Count: 217, Neg. LLF: 138.80993332973446
Iteration: 20, Func. Count: 229, Neg. LLF: 140.9699801512997
Iteration: 21, Func. Count: 242, Neg. LLF: 138.53590064350084
Iteration: 22, Func. Count: 253, Neg. LLF: 138.51638602593135
Iteration: 23, Func. Count: 264, Neg. LLF: 138.51413650272025
Iteration: 24, Func. Count: 275, Neg. LLF: 138.5137099016777
Iteration: 25, Func. Count: 286, Neg. LLF: 138.51370658167227
Iteration: 26, Func. Count: 297, Neg. LLF: 138.51370602336377
Optimization terminated successfully (Exit mode 0)
Current function value: 138.51370602336377
Iterations: 27
Function evaluations: 297
Gradient evaluations: 26
Iteration: 1, Func. Count: 9, Neg. LLF: 139.78644658335585
Iteration: 2, Func. Count: 17, Neg. LLF: 142.36058830933885
Iteration: 3, Func. Count: 26, Neg. LLF: 142.4635253501623
Iteration: 4, Func. Count: 35, Neg. LLF: 139.1924812839845
Iteration: 5, Func. Count: 43, Neg. LLF: 139.10584380595796
Iteration: 6, Func. Count: 51, Neg. LLF: 139.08971974871156
Iteration: 7, Func. Count: 59, Neg. LLF: 139.08361296133407
Iteration: 8, Func. Count: 67, Neg. LLF: 139.07717901612293
Iteration: 9, Func. Count: 75, Neg. LLF: 139.07288552900363
Iteration: 10, Func. Count: 83, Neg. LLF: 139.07250610782353
Iteration: 11, Func. Count: 91, Neg. LLF: 139.0724992849605
Iteration: 12, Func. Count: 98, Neg. LLF: 139.07249915582403
Optimization terminated successfully (Exit mode 0)
Current function value: 139.0724992849605
Iterations: 12
Function evaluations: 98
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 142.22920774553455
Iteration: 2, Func. Count: 21, Neg. LLF: 144.59486242199029
Iteration: 3, Func. Count: 31, Neg. LLF: 139.5051321429048
Iteration: 4, Func. Count: 40, Neg. LLF: 139.48699718191986
Iteration: 5, Func. Count: 49, Neg. LLF: 139.482202894657
Iteration: 6, Func. Count: 58, Neg. LLF: 139.47617121429982
Iteration: 7, Func. Count: 67, Neg. LLF: 139.43092545055933
Iteration: 8, Func. Count: 76, Neg. LLF: 139.18707123681222
Iteration: 9, Func. Count: 85, Neg. LLF: 139.3859863860371
Iteration: 10, Func. Count: 96, Neg. LLF: 138.56209467224585
Iteration: 11, Func. Count: 105, Neg. LLF: 138.36620879409875
Iteration: 12, Func. Count: 114, Neg. LLF: 138.15731330251023
Iteration: 13, Func. Count: 123, Neg. LLF: 138.05949016806338
Iteration: 14, Func. Count: 132, Neg. LLF: 138.00664657645066
Iteration: 15, Func. Count: 141, Neg. LLF: 137.98212780853524
Iteration: 16, Func. Count: 150, Neg. LLF: 137.9831881701194
Iteration: 17, Func. Count: 160, Neg. LLF: 137.971585691723
Iteration: 18, Func. Count: 169, Neg. LLF: 137.9715231371419
Iteration: 19, Func. Count: 178, Neg. LLF: 137.97152245284929
Optimization terminated successfully (Exit mode 0)
Current function value: 137.97152245284929
Iterations: 19
Function evaluations: 178
Gradient evaluations: 19
Iteration: 1, Func. Count: 11, Neg. LLF: 142.0353130788759
Iteration: 2, Func. Count: 23, Neg. LLF: 144.80761443212762
Iteration: 3, Func. Count: 34, Neg. LLF: 138.26809185777543
Iteration: 4, Func. Count: 44, Neg. LLF: 138.38770023260952
Iteration: 5, Func. Count: 55, Neg. LLF: 137.96460129306305
Iteration: 6, Func. Count: 65, Neg. LLF: 137.3577303652488
Iteration: 7, Func. Count: 75, Neg. LLF: 137.25228007274404
Iteration: 8, Func. Count: 85, Neg. LLF: 137.0838458316021
Iteration: 9, Func. Count: 95, Neg. LLF: 137.03339065363332
Iteration: 10, Func. Count: 105, Neg. LLF: 136.99117552268862
Iteration: 11, Func. Count: 115, Neg. LLF: 136.94123718893633
Iteration: 12, Func. Count: 125, Neg. LLF: 136.7116508907439
Iteration: 13, Func. Count: 135, Neg. LLF: 136.85034323072261
Iteration: 14, Func. Count: 146, Neg. LLF: 136.69624544603172
Iteration: 15, Func. Count: 157, Neg. LLF: 136.66149447753028
Iteration: 16, Func. Count: 168, Neg. LLF: 136.65679702967128
Iteration: 17, Func. Count: 178, Neg. LLF: 136.65673810783824
Iteration: 18, Func. Count: 188, Neg. LLF: 136.656736692761
Iteration: 19, Func. Count: 197, Neg. LLF: 136.6567366926945
Optimization terminated successfully (Exit mode 0)
Current function value: 136.656736692761
Iterations: 19
Function evaluations: 197
Gradient evaluations: 19
Iteration: 1, Func. Count: 12, Neg. LLF: 142.59762547510385
Iteration: 2, Func. Count: 25, Neg. LLF: 144.58503178010673
Iteration: 3, Func. Count: 37, Neg. LLF: 138.79985323929762
Iteration: 4, Func. Count: 48, Neg. LLF: 138.55639032660252
Iteration: 5, Func. Count: 59, Neg. LLF: 138.0349804800402
Iteration: 6, Func. Count: 70, Neg. LLF: 137.56498020744453
Iteration: 7, Func. Count: 81, Neg. LLF: 137.10073489188372
Iteration: 8, Func. Count: 92, Neg. LLF: 137.07661223248695
Iteration: 9, Func. Count: 104, Neg. LLF: 136.7482277337334
Iteration: 10, Func. Count: 115, Neg. LLF: 136.7012613528398
Iteration: 11, Func. Count: 126, Neg. LLF: 136.68932954419063
Iteration: 12, Func. Count: 137, Neg. LLF: 136.8233550333091
Iteration: 13, Func. Count: 149, Neg. LLF: 154.37360250062383
Iteration: 14, Func. Count: 161, Neg. LLF: 136.64904165079383
Iteration: 15, Func. Count: 172, Neg. LLF: 136.6337642164367
Iteration: 16, Func. Count: 183, Neg. LLF: 136.6271067678274
Iteration: 17, Func. Count: 194, Neg. LLF: 136.6269010033462
Iteration: 18, Func. Count: 205, Neg. LLF: 136.6269076251346
Iteration: 19, Func. Count: 217, Neg. LLF: 136.6268737030011
Optimization terminated successfully (Exit mode 0)
Current function value: 136.6268737030011
Iterations: 19
Function evaluations: 217
Gradient evaluations: 19
Iteration: 1, Func. Count: 13, Neg. LLF: 142.98950088110553
Iteration: 2, Func. Count: 27, Neg. LLF: 144.5877183859341
Iteration: 3, Func. Count: 40, Neg. LLF: 139.84125469619795
Iteration: 4, Func. Count: 53, Neg. LLF: 138.30093671579917
Iteration: 5, Func. Count: 65, Neg. LLF: 138.02887452512525
Iteration: 6, Func. Count: 77, Neg. LLF: 137.65436913533486
Iteration: 7, Func. Count: 89, Neg. LLF: 137.32371909178366
Iteration: 8, Func. Count: 101, Neg. LLF: 137.04332403507894
Iteration: 9, Func. Count: 113, Neg. LLF: 139.73351045091547
Iteration: 10, Func. Count: 126, Neg. LLF: 137.6980540496424
Iteration: 11, Func. Count: 139, Neg. LLF: 136.7653744113182
Iteration: 12, Func. Count: 151, Neg. LLF: 136.73902999926682
Iteration: 13, Func. Count: 163, Neg. LLF: 136.72334722392566
Iteration: 14, Func. Count: 175, Neg. LLF: 136.6805493547597
Iteration: 15, Func. Count: 187, Neg. LLF: 136.81127233334675
Iteration: 16, Func. Count: 200, Neg. LLF: 136.65231009099585
Iteration: 17, Func. Count: 212, Neg. LLF: 136.63779440330947
Iteration: 18, Func. Count: 224, Neg. LLF: 136.63433688956553
Iteration: 19, Func. Count: 236, Neg. LLF: 136.62715193663254
Iteration: 20, Func. Count: 248, Neg. LLF: 136.62690646296338
Iteration: 21, Func. Count: 260, Neg. LLF: 136.62687938972655
Iteration: 22, Func. Count: 272, Neg. LLF: 136.6268738429128
Iteration: 23, Func. Count: 283, Neg. LLF: 136.6268738491738
Optimization terminated successfully (Exit mode 0)
Current function value: 136.6268738429128
Iterations: 23
Function evaluations: 283
Gradient evaluations: 23
Iteration: 1, Func. Count: 10, Neg. LLF: 138.70309785051518
Iteration: 2, Func. Count: 19, Neg. LLF: 138.68259132366117
Iteration: 3, Func. Count: 28, Neg. LLF: 139.82146017062524
Iteration: 4, Func. Count: 39, Neg. LLF: 138.66614284712233
Iteration: 5, Func. Count: 49, Neg. LLF: 138.8680574030435
Iteration: 6, Func. Count: 59, Neg. LLF: 138.09927296823554
Iteration: 7, Func. Count: 68, Neg. LLF: 138.06298070345426
Iteration: 8, Func. Count: 77, Neg. LLF: 138.0550656252228
Iteration: 9, Func. Count: 86, Neg. LLF: 138.0535252120122
Iteration: 10, Func. Count: 95, Neg. LLF: 138.0528622589721
Iteration: 11, Func. Count: 104, Neg. LLF: 138.05117059159645
Iteration: 12, Func. Count: 113, Neg. LLF: 138.05039107852053
Iteration: 13, Func. Count: 122, Neg. LLF: 138.04934225971277
Iteration: 14, Func. Count: 131, Neg. LLF: 138.0489307446716
Iteration: 15, Func. Count: 140, Neg. LLF: 138.04879426921337
Iteration: 16, Func. Count: 149, Neg. LLF: 138.04878340842416
Iteration: 17, Func. Count: 157, Neg. LLF: 138.0487834084275
Optimization terminated successfully (Exit mode 0)
Current function value: 138.04878340842416
Iterations: 17
Function evaluations: 157
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 142.06652823157307
Iteration: 2, Func. Count: 23, Neg. LLF: 144.61412877555944
Iteration: 3, Func. Count: 34, Neg. LLF: 139.4821821092327
Iteration: 4, Func. Count: 44, Neg. LLF: 139.4960054185625
Iteration: 5, Func. Count: 55, Neg. LLF: 139.4332188702708
Iteration: 6, Func. Count: 65, Neg. LLF: 139.3773806806885
Iteration: 7, Func. Count: 75, Neg. LLF: 139.04581387118338
Iteration: 8, Func. Count: 85, Neg. LLF: 138.8908815270459
Iteration: 9, Func. Count: 95, Neg. LLF: 138.83524677915847
Iteration: 10, Func. Count: 105, Neg. LLF: 138.80456218949323
Iteration: 11, Func. Count: 115, Neg. LLF: 138.759068742332
Iteration: 12, Func. Count: 125, Neg. LLF: 138.68458806304898
Iteration: 13, Func. Count: 135, Neg. LLF: 138.40622699329373
Iteration: 14, Func. Count: 145, Neg. LLF: 186.87702103638622
Iteration: 15, Func. Count: 156, Neg. LLF: 154.39552100299665
Iteration: 16, Func. Count: 167, Neg. LLF: 152.96651414365664
Iteration: 17, Func. Count: 178, Neg. LLF: 164.58249858643194
Iteration: 18, Func. Count: 189, Neg. LLF: 138.0825983299294
Iteration: 19, Func. Count: 199, Neg. LLF: 138.02456346595545
Iteration: 20, Func. Count: 209, Neg. LLF: 141.69004779213967
Iteration: 21, Func. Count: 221, Neg. LLF: 161.07903556677036
Iteration: 22, Func. Count: 232, Neg. LLF: 138.00534128465986
Iteration: 23, Func. Count: 243, Neg. LLF: 138.1168210798479
Iteration: 24, Func. Count: 254, Neg. LLF: 137.9716551406441
Iteration: 25, Func. Count: 264, Neg. LLF: 137.97153312544512
Iteration: 26, Func. Count: 274, Neg. LLF: 137.97152254646625
Iteration: 27, Func. Count: 283, Neg. LLF: 137.97152253602334
Optimization terminated successfully (Exit mode 0)
Current function value: 137.97152254646625
Iterations: 28
Function evaluations: 283
Gradient evaluations: 27
Iteration: 1, Func. Count: 12, Neg. LLF: 141.97604837099746
Iteration: 2, Func. Count: 25, Neg. LLF: 144.83592339491491
Iteration: 3, Func. Count: 37, Neg. LLF: 138.25143431589564
Iteration: 4, Func. Count: 48, Neg. LLF: 138.42064200390124
Iteration: 5, Func. Count: 60, Neg. LLF: 137.97470429887719
Iteration: 6, Func. Count: 71, Neg. LLF: 137.39119429642136
Iteration: 7, Func. Count: 82, Neg. LLF: 137.27314930885873
Iteration: 8, Func. Count: 93, Neg. LLF: 137.09751176551245
Iteration: 9, Func. Count: 104, Neg. LLF: 137.03704170700456
Iteration: 10, Func. Count: 115, Neg. LLF: 136.9962430663454
Iteration: 11, Func. Count: 126, Neg. LLF: 136.95477352060854
Iteration: 12, Func. Count: 137, Neg. LLF: 136.72329213716628
Iteration: 13, Func. Count: 148, Neg. LLF: 169.02633977925447
Iteration: 14, Func. Count: 160, Neg. LLF: 136.71192970155482
Iteration: 15, Func. Count: 172, Neg. LLF: 136.66569281518085
Iteration: 16, Func. Count: 184, Neg. LLF: 136.65694415333212
Iteration: 17, Func. Count: 195, Neg. LLF: 136.65673665098277
Iteration: 18, Func. Count: 205, Neg. LLF: 136.65673665111373
Optimization terminated successfully (Exit mode 0)
Current function value: 136.65673665098277
Iterations: 18
Function evaluations: 205
Gradient evaluations: 18
Iteration: 1, Func. Count: 13, Neg. LLF: 142.48770096529725
Iteration: 2, Func. Count: 27, Neg. LLF: 144.6198435883609
Iteration: 3, Func. Count: 40, Neg. LLF: 138.77544863178005
Iteration: 4, Func. Count: 52, Neg. LLF: 138.53602379377264
Iteration: 5, Func. Count: 64, Neg. LLF: 138.0007308477005
Iteration: 6, Func. Count: 76, Neg. LLF: 137.46639793967793
Iteration: 7, Func. Count: 88, Neg. LLF: 137.58881746965508
Iteration: 8, Func. Count: 101, Neg. LLF: 136.77709822950226
Iteration: 9, Func. Count: 113, Neg. LLF: 136.7216079143096
Iteration: 10, Func. Count: 125, Neg. LLF: 136.6892999479288
Iteration: 11, Func. Count: 137, Neg. LLF: 136.67742007770184
Iteration: 12, Func. Count: 149, Neg. LLF: 136.80990413022468
Iteration: 13, Func. Count: 162, Neg. LLF: 136.67947167396326
Iteration: 14, Func. Count: 175, Neg. LLF: 136.6325408032832
Iteration: 15, Func. Count: 187, Neg. LLF: 136.62725666544324
Iteration: 16, Func. Count: 199, Neg. LLF: 136.62698429481298
Iteration: 17, Func. Count: 211, Neg. LLF: 136.6268788626852
Iteration: 18, Func. Count: 223, Neg. LLF: 136.62687444238463
Iteration: 19, Func. Count: 235, Neg. LLF: 136.62687364174374
Optimization terminated successfully (Exit mode 0)
Current function value: 136.62687364174374
Iterations: 19
Function evaluations: 235
Gradient evaluations: 19
Iteration: 1, Func. Count: 14, Neg. LLF: 142.83598730284547
Iteration: 2, Func. Count: 29, Neg. LLF: 144.61868057150122
Iteration: 3, Func. Count: 43, Neg. LLF: 139.87404810811614
Iteration: 4, Func. Count: 57, Neg. LLF: 138.29243960683237
Iteration: 5, Func. Count: 70, Neg. LLF: 138.02278257860934
Iteration: 6, Func. Count: 83, Neg. LLF: 137.71677918245612
Iteration: 7, Func. Count: 96, Neg. LLF: 137.32441364152865
Iteration: 8, Func. Count: 109, Neg. LLF: 137.07799268617148
Iteration: 9, Func. Count: 122, Neg. LLF: 137.7670112164016
Iteration: 10, Func. Count: 136, Neg. LLF: 138.98727505939482
Iteration: 11, Func. Count: 150, Neg. LLF: 136.79215595317274
Iteration: 12, Func. Count: 163, Neg. LLF: 136.74702811698901
Iteration: 13, Func. Count: 176, Neg. LLF: 136.73315491589196
Iteration: 14, Func. Count: 189, Neg. LLF: 136.68137049489434
Iteration: 15, Func. Count: 202, Neg. LLF: 136.67484913923306
Iteration: 16, Func. Count: 216, Neg. LLF: 136.6941904442553
Iteration: 17, Func. Count: 230, Neg. LLF: 136.63051881065428
Iteration: 18, Func. Count: 243, Neg. LLF: 136.63911716064956
Iteration: 19, Func. Count: 257, Neg. LLF: 136.6269499161545
Iteration: 20, Func. Count: 270, Neg. LLF: 136.62687663931138
Iteration: 21, Func. Count: 283, Neg. LLF: 136.62687439957213
Iteration: 22, Func. Count: 296, Neg. LLF: 136.626873636344
Optimization terminated successfully (Exit mode 0)
Current function value: 136.626873636344
Iterations: 22
Function evaluations: 296
Gradient evaluations: 22
Iteration: 1, Func. Count: 11, Neg. LLF: 136.39431737560272
Iteration: 2, Func. Count: 21, Neg. LLF: 139.96551698069598
Iteration: 3, Func. Count: 32, Neg. LLF: 136.15608038780735
Iteration: 4, Func. Count: 42, Neg. LLF: 136.02856944388384
Iteration: 5, Func. Count: 52, Neg. LLF: 136.004543769356
Iteration: 6, Func. Count: 62, Neg. LLF: 135.99894755604146
Iteration: 7, Func. Count: 72, Neg. LLF: 135.98491089401142
Iteration: 8, Func. Count: 82, Neg. LLF: 135.97950645106252
Iteration: 9, Func. Count: 92, Neg. LLF: 135.9775743040966
Iteration: 10, Func. Count: 102, Neg. LLF: 135.97754103729585
Iteration: 11, Func. Count: 112, Neg. LLF: 135.97753452574568
Iteration: 12, Func. Count: 121, Neg. LLF: 135.9775343349577
Optimization terminated successfully (Exit mode 0)
Current function value: 135.97753452574568
Iterations: 12
Function evaluations: 121
Gradient evaluations: 12
Iteration: 1, Func. Count: 12, Neg. LLF: 136.7715679841861
Iteration: 2, Func. Count: 23, Neg. LLF: 141.36789187767513
Iteration: 3, Func. Count: 35, Neg. LLF: 136.01338167410182
Iteration: 4, Func. Count: 46, Neg. LLF: 135.99562352139887
Iteration: 5, Func. Count: 57, Neg. LLF: 135.98134315174087
Iteration: 6, Func. Count: 68, Neg. LLF: 135.9795567146748
Iteration: 7, Func. Count: 79, Neg. LLF: 135.9781916509446
Iteration: 8, Func. Count: 90, Neg. LLF: 135.97761128425037
Iteration: 9, Func. Count: 101, Neg. LLF: 135.97753762517385
Iteration: 10, Func. Count: 112, Neg. LLF: 135.9775345578074
Iteration: 11, Func. Count: 122, Neg. LLF: 135.97753467488434
Optimization terminated successfully (Exit mode 0)
Current function value: 135.9775345578074
Iterations: 11
Function evaluations: 122
Gradient evaluations: 11
Iteration: 1, Func. Count: 13, Neg. LLF: 136.7688066095462
Iteration: 2, Func. Count: 25, Neg. LLF: 143.65407140225315
Iteration: 3, Func. Count: 38, Neg. LLF: 136.02016417386244
Iteration: 4, Func. Count: 50, Neg. LLF: 135.99934858338295
Iteration: 5, Func. Count: 62, Neg. LLF: 135.98399912361685
Iteration: 6, Func. Count: 74, Neg. LLF: 135.97992664188044
Iteration: 7, Func. Count: 86, Neg. LLF: 135.97885042320758
Iteration: 8, Func. Count: 98, Neg. LLF: 135.9775897264769
Iteration: 9, Func. Count: 110, Neg. LLF: 135.97753601746913
Iteration: 10, Func. Count: 122, Neg. LLF: 135.9775345196549
Iteration: 11, Func. Count: 133, Neg. LLF: 135.9775345965757
Optimization terminated successfully (Exit mode 0)
Current function value: 135.9775345196549
Iterations: 11
Function evaluations: 133
Gradient evaluations: 11
Iteration: 1, Func. Count: 14, Neg. LLF: 136.7610448480919
Iteration: 2, Func. Count: 27, Neg. LLF: 143.85347661420812
Iteration: 3, Func. Count: 41, Neg. LLF: 136.0288343425651
Iteration: 4, Func. Count: 54, Neg. LLF: 136.00261397608077
Iteration: 5, Func. Count: 67, Neg. LLF: 135.98554507282185
Iteration: 6, Func. Count: 80, Neg. LLF: 135.98018620592833
Iteration: 7, Func. Count: 93, Neg. LLF: 135.97901181811994
Iteration: 8, Func. Count: 106, Neg. LLF: 135.9776849719418
Iteration: 9, Func. Count: 119, Neg. LLF: 135.97754064692808
Iteration: 10, Func. Count: 132, Neg. LLF: 135.97753458798405
Iteration: 11, Func. Count: 144, Neg. LLF: 135.97753470658992
Optimization terminated successfully (Exit mode 0)
Current function value: 135.97753458798405
Iterations: 11
Function evaluations: 144
Gradient evaluations: 11
Iteration: 1, Func. Count: 15, Neg. LLF: 136.74909965153765
Iteration: 2, Func. Count: 29, Neg. LLF: 145.02800954387652
Iteration: 3, Func. Count: 44, Neg. LLF: 136.03587027422344
Iteration: 4, Func. Count: 58, Neg. LLF: 136.00690146837385
Iteration: 5, Func. Count: 72, Neg. LLF: 135.98645738009589
Iteration: 6, Func. Count: 86, Neg. LLF: 135.98058742979353
Iteration: 7, Func. Count: 100, Neg. LLF: 135.97913534294966
Iteration: 8, Func. Count: 114, Neg. LLF: 135.9779016704194
Iteration: 9, Func. Count: 128, Neg. LLF: 135.97755685976685
Iteration: 10, Func. Count: 142, Neg. LLF: 135.97753506885212
Iteration: 11, Func. Count: 156, Neg. LLF: 135.97753451318835
Optimization terminated successfully (Exit mode 0)
Current function value: 135.97753451318835
Iterations: 11
Function evaluations: 156
Gradient evaluations: 11
Iteration: 1, Func. Count: 12, Neg. LLF: 138.44878022814277
Iteration: 2, Func. Count: 23, Neg. LLF: 153.05691394338206
Iteration: 3, Func. Count: 35, Neg. LLF: 136.2094704648938
Iteration: 4, Func. Count: 46, Neg. LLF: 136.0817504698699
Iteration: 5, Func. Count: 57, Neg. LLF: 136.00715259901622
Iteration: 6, Func. Count: 68, Neg. LLF: 135.9956605312803
Iteration: 7, Func. Count: 79, Neg. LLF: 135.9892606625439
Iteration: 8, Func. Count: 90, Neg. LLF: 135.97979151737425
Iteration: 9, Func. Count: 101, Neg. LLF: 135.97783973725882
Iteration: 10, Func. Count: 112, Neg. LLF: 135.97755078233843
Iteration: 11, Func. Count: 123, Neg. LLF: 135.97753803902842
Iteration: 12, Func. Count: 134, Neg. LLF: 135.97753455369966
Iteration: 13, Func. Count: 144, Neg. LLF: 135.97753437987794
Optimization terminated successfully (Exit mode 0)
Current function value: 135.97753455369966
Iterations: 13
Function evaluations: 144
Gradient evaluations: 13
Iteration: 1, Func. Count: 13, Neg. LLF: 136.77420112553875
Iteration: 2, Func. Count: 25, Neg. LLF: 141.378404827043
Iteration: 3, Func. Count: 38, Neg. LLF: 136.01355620436377
Iteration: 4, Func. Count: 50, Neg. LLF: 135.9956616116166
Iteration: 5, Func. Count: 62, Neg. LLF: 135.98136019890867
Iteration: 6, Func. Count: 74, Neg. LLF: 135.97955793459795
Iteration: 7, Func. Count: 86, Neg. LLF: 135.9782056712046
Iteration: 8, Func. Count: 98, Neg. LLF: 135.97761450612253
Iteration: 9, Func. Count: 110, Neg. LLF: 135.97753784714197
Iteration: 10, Func. Count: 122, Neg. LLF: 135.9775345609468
Iteration: 11, Func. Count: 133, Neg. LLF: 135.97753467802406
Optimization terminated successfully (Exit mode 0)
Current function value: 135.9775345609468
Iterations: 11
Function evaluations: 133
Gradient evaluations: 11
Iteration: 1, Func. Count: 14, Neg. LLF: 136.77718329043313
Iteration: 2, Func. Count: 27, Neg. LLF: 143.66241339225687
Iteration: 3, Func. Count: 41, Neg. LLF: 136.02030465630423
Iteration: 4, Func. Count: 54, Neg. LLF: 135.99940356291066
Iteration: 5, Func. Count: 67, Neg. LLF: 135.98398380321282
Iteration: 6, Func. Count: 80, Neg. LLF: 135.97993277088153
Iteration: 7, Func. Count: 93, Neg. LLF: 135.97885426413134
Iteration: 8, Func. Count: 106, Neg. LLF: 135.9775912942435
Iteration: 9, Func. Count: 119, Neg. LLF: 135.9775360873773
Iteration: 10, Func. Count: 132, Neg. LLF: 135.9775345204729
Iteration: 11, Func. Count: 144, Neg. LLF: 135.97753459739397
Optimization terminated successfully (Exit mode 0)
Current function value: 135.9775345204729
Iterations: 11
Function evaluations: 144
Gradient evaluations: 11
Iteration: 1, Func. Count: 15, Neg. LLF: 136.77219003150822
Iteration: 2, Func. Count: 29, Neg. LLF: 143.85497026933072
Iteration: 3, Func. Count: 44, Neg. LLF: 136.02887691138412
Iteration: 4, Func. Count: 58, Neg. LLF: 136.00265967477173
Iteration: 5, Func. Count: 72, Neg. LLF: 135.98547958533788
Iteration: 6, Func. Count: 86, Neg. LLF: 135.98019026289427
Iteration: 7, Func. Count: 100, Neg. LLF: 135.97901228417248
Iteration: 8, Func. Count: 114, Neg. LLF: 135.9776869830539
Iteration: 9, Func. Count: 128, Neg. LLF: 135.9775407916032
Iteration: 10, Func. Count: 142, Neg. LLF: 135.97753458973827
Iteration: 11, Func. Count: 155, Neg. LLF: 135.97753470834337
Optimization terminated successfully (Exit mode 0)
Current function value: 135.97753458973827
Iterations: 11
Function evaluations: 155
Gradient evaluations: 11
Iteration: 1, Func. Count: 16, Neg. LLF: 136.76025251551584
Iteration: 2, Func. Count: 31, Neg. LLF: 145.05011468723632
Iteration: 3, Func. Count: 47, Neg. LLF: 136.03593068001547
Iteration: 4, Func. Count: 62, Neg. LLF: 136.00700979084368
Iteration: 5, Func. Count: 77, Neg. LLF: 135.98639569832756
Iteration: 6, Func. Count: 92, Neg. LLF: 135.9805970738457
Iteration: 7, Func. Count: 107, Neg. LLF: 135.97913665072525
Iteration: 8, Func. Count: 122, Neg. LLF: 135.9779060110413
Iteration: 9, Func. Count: 137, Neg. LLF: 135.97755715624237
Iteration: 10, Func. Count: 152, Neg. LLF: 135.9775350806402
Iteration: 11, Func. Count: 167, Neg. LLF: 135.97753451421673
Optimization terminated successfully (Exit mode 0)
Current function value: 135.97753451421673
Iterations: 11
Function evaluations: 167
Gradient evaluations: 11
Iteration: 1, Func. Count: 8, Neg. LLF: 141.97766521796046
Iteration: 2, Func. Count: 17, Neg. LLF: 144.78359407091548
Iteration: 3, Func. Count: 25, Neg. LLF: 138.24925891381793
Iteration: 4, Func. Count: 32, Neg. LLF: 138.42553253063113
Iteration: 5, Func. Count: 40, Neg. LLF: 137.95729593693034
Iteration: 6, Func. Count: 47, Neg. LLF: 137.3712262559743
Iteration: 7, Func. Count: 54, Neg. LLF: 137.25381282446503
Iteration: 8, Func. Count: 61, Neg. LLF: 137.0958331148588
Iteration: 9, Func. Count: 68, Neg. LLF: 137.0440349534125
Iteration: 10, Func. Count: 75, Neg. LLF: 137.00132822998322
Iteration: 11, Func. Count: 82, Neg. LLF: 136.94904594170146
Iteration: 12, Func. Count: 89, Neg. LLF: 136.719106850677
Iteration: 13, Func. Count: 96, Neg. LLF: 137.3556389360613
Iteration: 14, Func. Count: 104, Neg. LLF: 136.68484154184267
Iteration: 15, Func. Count: 112, Neg. LLF: 137.59942467915636
Iteration: 16, Func. Count: 120, Neg. LLF: 136.6821658392849
Iteration: 17, Func. Count: 128, Neg. LLF: 136.65691782305132
Iteration: 18, Func. Count: 135, Neg. LLF: 136.65675014594288
Iteration: 19, Func. Count: 142, Neg. LLF: 136.65673862460525
Iteration: 20, Func. Count: 149, Neg. LLF: 136.6567365243375
Iteration: 21, Func. Count: 155, Neg. LLF: 136.65673652428262
Optimization terminated successfully (Exit mode 0)
Current function value: 136.6567365243375
Iterations: 21
Function evaluations: 155
Gradient evaluations: 21
Iteration: 1, Func. Count: 5, Neg. LLF: 145.98640635373033
Iteration: 2, Func. Count: 10, Neg. LLF: 151.05913217583662
Iteration: 3, Func. Count: 15, Neg. LLF: 140.44444845686317
Iteration: 4, Func. Count: 19, Neg. LLF: 140.18230985382897
Iteration: 5, Func. Count: 23, Neg. LLF: 140.060427113401
Iteration: 6, Func. Count: 27, Neg. LLF: 139.84967421916133
Iteration: 7, Func. Count: 31, Neg. LLF: 139.56318932497288
Iteration: 8, Func. Count: 35, Neg. LLF: 139.56164302967966
Iteration: 9, Func. Count: 39, Neg. LLF: 139.55753479539123
Iteration: 10, Func. Count: 43, Neg. LLF: 139.55701726580665
Iteration: 11, Func. Count: 47, Neg. LLF: 139.55701266032463
Iteration: 12, Func. Count: 51, Neg. LLF: 139.55700707268298
Iteration: 13, Func. Count: 54, Neg. LLF: 139.55700715543222
Optimization terminated successfully (Exit mode 0)
Current function value: 139.55700707268298
Iterations: 13
Function evaluations: 54
Gradient evaluations: 13
Iteration: 1, Func. Count: 6, Neg. LLF: 157.3894888517337
Iteration: 2, Func. Count: 13, Neg. LLF: 139.6045117261567
Iteration: 3, Func. Count: 18, Neg. LLF: 139.60323261063246
Iteration: 4, Func. Count: 23, Neg. LLF: 139.6028748036262
Iteration: 5, Func. Count: 28, Neg. LLF: 139.60278710900238
Iteration: 6, Func. Count: 33, Neg. LLF: 139.60277868281725
Iteration: 7, Func. Count: 38, Neg. LLF: 139.6027499056004
Iteration: 8, Func. Count: 43, Neg. LLF: 139.60268749680853
Iteration: 9, Func. Count: 48, Neg. LLF: 139.60250293282596
Iteration: 10, Func. Count: 53, Neg. LLF: 139.60197025650106
Iteration: 11, Func. Count: 58, Neg. LLF: 139.60028009463545
Iteration: 12, Func. Count: 63, Neg. LLF: 139.59648888238442
Iteration: 13, Func. Count: 68, Neg. LLF: 139.5911451681972
Iteration: 14, Func. Count: 73, Neg. LLF: 139.5706272060298
Iteration: 15, Func. Count: 78, Neg. LLF: 139.55989481337872
Iteration: 16, Func. Count: 83, Neg. LLF: 139.55868387679902
Iteration: 17, Func. Count: 88, Neg. LLF: 139.5570085591731
Iteration: 18, Func. Count: 93, Neg. LLF: 139.55700688298145
Iteration: 19, Func. Count: 97, Neg. LLF: 139.55700688450207
Optimization terminated successfully (Exit mode 0)
Current function value: 139.55700688298145
Iterations: 19
Function evaluations: 97
Gradient evaluations: 19
Iteration: 1, Func. Count: 7, Neg. LLF: 172.83399304943563
Iteration: 2, Func. Count: 15, Neg. LLF: 139.59693487902473
Iteration: 3, Func. Count: 21, Neg. LLF: 139.5949423303222
Iteration: 4, Func. Count: 27, Neg. LLF: 139.58897006545473
Iteration: 5, Func. Count: 33, Neg. LLF: 139.58064824586236
Iteration: 6, Func. Count: 39, Neg. LLF: 139.57501792154102
Iteration: 7, Func. Count: 45, Neg. LLF: 139.57248534577246
Iteration: 8, Func. Count: 51, Neg. LLF: 139.5718876642436
Iteration: 9, Func. Count: 57, Neg. LLF: 139.57187053425955
Iteration: 10, Func. Count: 63, Neg. LLF: 139.57177895872985
Iteration: 11, Func. Count: 69, Neg. LLF: 139.5712789535163
Iteration: 12, Func. Count: 75, Neg. LLF: 139.56728801468742
Iteration: 13, Func. Count: 81, Neg. LLF: 139.10090258355032
Iteration: 14, Func. Count: 87, Neg. LLF: 156.98718168295764
Iteration: 15, Func. Count: 94, Neg. LLF: 22827496.19515252
Iteration: 16, Func. Count: 102, Neg. LLF: 137.92748002790213
Iteration: 17, Func. Count: 108, Neg. LLF: 137.85760390408768
Iteration: 18, Func. Count: 114, Neg. LLF: 137.81152931361711
Iteration: 19, Func. Count: 120, Neg. LLF: 137.7751705249849
Iteration: 20, Func. Count: 126, Neg. LLF: 137.7732976291346
Iteration: 21, Func. Count: 132, Neg. LLF: 137.77329128825681
Iteration: 22, Func. Count: 137, Neg. LLF: 137.77329128826793
Optimization terminated successfully (Exit mode 0)
Current function value: 137.77329128825681
Iterations: 23
Function evaluations: 137
Gradient evaluations: 22
Iteration: 1, Func. Count: 8, Neg. LLF: 22885605.661421623
Iteration: 2, Func. Count: 17, Neg. LLF: 138.37504838418553
Iteration: 3, Func. Count: 24, Neg. LLF: 138.00234278682746
Iteration: 4, Func. Count: 31, Neg. LLF: 138.06824351998128
Iteration: 5, Func. Count: 39, Neg. LLF: 137.87224723723952
Iteration: 6, Func. Count: 47, Neg. LLF: 137.84778925718146
Iteration: 7, Func. Count: 54, Neg. LLF: 137.8434304885284
Iteration: 8, Func. Count: 61, Neg. LLF: 137.83272879477218
Iteration: 9, Func. Count: 68, Neg. LLF: 137.8023219367011
Iteration: 10, Func. Count: 75, Neg. LLF: 137.79838221503144
Iteration: 11, Func. Count: 82, Neg. LLF: 137.78930389513698
Iteration: 12, Func. Count: 89, Neg. LLF: 137.78321173147185
Iteration: 13, Func. Count: 96, Neg. LLF: 137.80174825077225
Iteration: 14, Func. Count: 105, Neg. LLF: 137.78262729030465
Iteration: 15, Func. Count: 112, Neg. LLF: 137.78144334572727
Iteration: 16, Func. Count: 119, Neg. LLF: 137.78159036599905
Optimization terminated successfully (Exit mode 0)
Current function value: 137.78144303879304
Iterations: 16
Function evaluations: 120
Gradient evaluations: 16
Iteration: 1, Func. Count: 9, Neg. LLF: 22867747.09172558
Iteration: 2, Func. Count: 19, Neg. LLF: 138.23981176255026
Iteration: 3, Func. Count: 27, Neg. LLF: 137.92773112876873
Iteration: 4, Func. Count: 35, Neg. LLF: 139.11245186224144
Iteration: 5, Func. Count: 44, Neg. LLF: 137.81261450671172
Iteration: 6, Func. Count: 52, Neg. LLF: 137.80948117862653
Iteration: 7, Func. Count: 60, Neg. LLF: 137.80936875261898
Iteration: 8, Func. Count: 68, Neg. LLF: 137.80936418103224
Iteration: 9, Func. Count: 76, Neg. LLF: 137.80935216349198
Iteration: 10, Func. Count: 84, Neg. LLF: 137.80935147060595
Optimization terminated successfully (Exit mode 0)
Current function value: 137.80935147060595
Iterations: 10
Function evaluations: 84
Gradient evaluations: 10
Iteration: 1, Func. Count: 6, Neg. LLF: 145.51300500559262
Iteration: 2, Func. Count: 12, Neg. LLF: 157.7371769229013
Iteration: 3, Func. Count: 18, Neg. LLF: 138.91219783493628
Iteration: 4, Func. Count: 23, Neg. LLF: 138.87278550904784
Iteration: 5, Func. Count: 28, Neg. LLF: 138.83905000748547
Iteration: 6, Func. Count: 33, Neg. LLF: 138.83793709131604
Iteration: 7, Func. Count: 38, Neg. LLF: 138.83791110096007
Iteration: 8, Func. Count: 43, Neg. LLF: 138.8379080371364
Iteration: 9, Func. Count: 48, Neg. LLF: 138.83790311681804
Iteration: 10, Func. Count: 52, Neg. LLF: 138.83790311680738
Optimization terminated successfully (Exit mode 0)
Current function value: 138.83790311681804
Iterations: 10
Function evaluations: 52
Gradient evaluations: 10
Iteration: 1, Func. Count: 7, Neg. LLF: 153.94896331571707
Iteration: 2, Func. Count: 15, Neg. LLF: 139.6048660734458
Iteration: 3, Func. Count: 21, Neg. LLF: 139.60347323875968
Iteration: 4, Func. Count: 27, Neg. LLF: 139.602840854219
Iteration: 5, Func. Count: 33, Neg. LLF: 139.60279883957463
Iteration: 6, Func. Count: 39, Neg. LLF: 139.60278142324282
Iteration: 7, Func. Count: 45, Neg. LLF: 139.60266961530158
Iteration: 8, Func. Count: 51, Neg. LLF: 139.60237951271037
Iteration: 9, Func. Count: 57, Neg. LLF: 139.60146684735096
Iteration: 10, Func. Count: 63, Neg. LLF: 139.59668989830965
Iteration: 11, Func. Count: 69, Neg. LLF: 139.5851751610881
Iteration: 12, Func. Count: 75, Neg. LLF: 139.58050279040216
Iteration: 13, Func. Count: 81, Neg. LLF: 139.57052244494236
Iteration: 14, Func. Count: 87, Neg. LLF: 139.565745033512
Iteration: 15, Func. Count: 93, Neg. LLF: 139.5584535659893
Iteration: 16, Func. Count: 99, Neg. LLF: 139.5571538349516
Iteration: 17, Func. Count: 105, Neg. LLF: 139.55700793674933
Iteration: 18, Func. Count: 111, Neg. LLF: 139.55700688489816
Iteration: 19, Func. Count: 116, Neg. LLF: 139.55700688641147
Optimization terminated successfully (Exit mode 0)
Current function value: 139.55700688489816
Iterations: 19
Function evaluations: 116
Gradient evaluations: 19
Iteration: 1, Func. Count: 8, Neg. LLF: 10581.165871122284
Iteration: 2, Func. Count: 17, Neg. LLF: 138.3634347132611
Iteration: 3, Func. Count: 24, Neg. LLF: 138.14469567788453
Iteration: 4, Func. Count: 31, Neg. LLF: 137.85559198410496
Iteration: 5, Func. Count: 38, Neg. LLF: 137.7850587894787
Iteration: 6, Func. Count: 45, Neg. LLF: 137.77612878345695
Iteration: 7, Func. Count: 52, Neg. LLF: 137.77329768588635
Iteration: 8, Func. Count: 59, Neg. LLF: 137.7732948806131
Iteration: 9, Func. Count: 66, Neg. LLF: 137.77742797785777
Optimization terminated successfully (Exit mode 0)
Current function value: 137.77329487952917
Iterations: 10
Function evaluations: 69
Gradient evaluations: 9
Iteration: 1, Func. Count: 9, Neg. LLF: 22880076.61737061
Iteration: 2, Func. Count: 19, Neg. LLF: 138.3565273487024
Iteration: 3, Func. Count: 27, Neg. LLF: 137.9845035167914
Iteration: 4, Func. Count: 35, Neg. LLF: 138.05098762069366
Iteration: 5, Func. Count: 44, Neg. LLF: 137.86889052316593
Iteration: 6, Func. Count: 53, Neg. LLF: 137.8483670070343
Iteration: 7, Func. Count: 61, Neg. LLF: 137.84546713511605
Iteration: 8, Func. Count: 69, Neg. LLF: 137.8325903538755
Iteration: 9, Func. Count: 77, Neg. LLF: 137.80384990495781
Iteration: 10, Func. Count: 85, Neg. LLF: 137.79950222773232
Iteration: 11, Func. Count: 93, Neg. LLF: 137.7933606433704
Iteration: 12, Func. Count: 101, Neg. LLF: 137.78964487407748
Iteration: 13, Func. Count: 109, Neg. LLF: 137.79225827845138
Iteration: 14, Func. Count: 118, Neg. LLF: 137.7845501778851
Iteration: 15, Func. Count: 126, Neg. LLF: 22924186.478168
Iteration: 16, Func. Count: 138, Neg. LLF: 137.8256943467323
Iteration: 17, Func. Count: 146, Neg. LLF: 137.7814285193139
Optimization terminated successfully (Exit mode 0)
Current function value: 137.78142851658197
Iterations: 18
Function evaluations: 146
Gradient evaluations: 17
Iteration: 1, Func. Count: 10, Neg. LLF: 22865834.138321612
Iteration: 2, Func. Count: 21, Neg. LLF: 138.24456609358145
Iteration: 3, Func. Count: 30, Neg. LLF: 137.8884878925773
Iteration: 4, Func. Count: 39, Neg. LLF: 138.52569094180294
Iteration: 5, Func. Count: 49, Neg. LLF: 137.81879398087386
Iteration: 6, Func. Count: 58, Neg. LLF: 137.79802979454814
Iteration: 7, Func. Count: 67, Neg. LLF: 137.77730470264655
Iteration: 8, Func. Count: 76, Neg. LLF: 137.77659017970817
Iteration: 9, Func. Count: 85, Neg. LLF: 137.77604315640852
Iteration: 10, Func. Count: 94, Neg. LLF: 137.77603748951321
Iteration: 11, Func. Count: 103, Neg. LLF: 137.77603347079716
Iteration: 12, Func. Count: 111, Neg. LLF: 137.77603347083343
Optimization terminated successfully (Exit mode 0)
Current function value: 137.77603347079716
Iterations: 12
Function evaluations: 111
Gradient evaluations: 12
Iteration: 1, Func. Count: 7, Neg. LLF: 143.49130895108763
Iteration: 2, Func. Count: 14, Neg. LLF: 154.29714433281828
Iteration: 3, Func. Count: 21, Neg. LLF: 138.88602096580857
Iteration: 4, Func. Count: 27, Neg. LLF: 138.87294544739342
Iteration: 5, Func. Count: 33, Neg. LLF: 138.84853698619156
Iteration: 6, Func. Count: 39, Neg. LLF: 138.8396140451903
Iteration: 7, Func. Count: 45, Neg. LLF: 138.83809029797877
Iteration: 8, Func. Count: 51, Neg. LLF: 138.83797930132212
Iteration: 9, Func. Count: 57, Neg. LLF: 138.83794794832886
Iteration: 10, Func. Count: 63, Neg. LLF: 138.83791670577503
Iteration: 11, Func. Count: 69, Neg. LLF: 138.83790480844056
Iteration: 12, Func. Count: 75, Neg. LLF: 138.83790281203497
Iteration: 13, Func. Count: 80, Neg. LLF: 138.83790301407257
Optimization terminated successfully (Exit mode 0)
Current function value: 138.83790281203497
Iterations: 13
Function evaluations: 80
Gradient evaluations: 13
Iteration: 1, Func. Count: 8, Neg. LLF: 180.13932948732088
Iteration: 2, Func. Count: 17, Neg. LLF: 139.60631691179
Iteration: 3, Func. Count: 24, Neg. LLF: 139.60352334704965
Iteration: 4, Func. Count: 31, Neg. LLF: 139.60287125585435
Iteration: 5, Func. Count: 38, Neg. LLF: 139.6028581630343
Iteration: 6, Func. Count: 45, Neg. LLF: 139.60278518259736
Iteration: 7, Func. Count: 52, Neg. LLF: 139.60240353708582
Iteration: 8, Func. Count: 59, Neg. LLF: 139.600087065289
Iteration: 9, Func. Count: 66, Neg. LLF: 139.57727062312577
Iteration: 10, Func. Count: 73, Neg. LLF: 139.55731678719698
Iteration: 11, Func. Count: 80, Neg. LLF: 139.55711355544412
Iteration: 12, Func. Count: 87, Neg. LLF: 139.5570392266804
Iteration: 13, Func. Count: 94, Neg. LLF: 139.5570138819712
Iteration: 14, Func. Count: 101, Neg. LLF: 139.5570084518794
Iteration: 15, Func. Count: 108, Neg. LLF: 139.55700739121437
Iteration: 16, Func. Count: 114, Neg. LLF: 139.5570073927332
Optimization terminated successfully (Exit mode 0)
Current function value: 139.55700739121437
Iterations: 16
Function evaluations: 114
Gradient evaluations: 16
Iteration: 1, Func. Count: 9, Neg. LLF: 8260.239324574983
Iteration: 2, Func. Count: 19, Neg. LLF: 138.37408129129795
Iteration: 3, Func. Count: 27, Neg. LLF: 138.1892052768907
Iteration: 4, Func. Count: 35, Neg. LLF: 137.93267919874228
Iteration: 5, Func. Count: 43, Neg. LLF: 137.80046835125628
Iteration: 6, Func. Count: 51, Neg. LLF: 137.78224061678398
Iteration: 7, Func. Count: 59, Neg. LLF: 137.77330174302182
Iteration: 8, Func. Count: 67, Neg. LLF: 137.7732939671599
Iteration: 9, Func. Count: 75, Neg. LLF: 137.850411024142
Optimization terminated successfully (Exit mode 0)
Current function value: 137.77329396358698
Iterations: 10
Function evaluations: 79
Gradient evaluations: 9
Iteration: 1, Func. Count: 10, Neg. LLF: 22885095.80517815
Iteration: 2, Func. Count: 21, Neg. LLF: 138.38373018564266
Iteration: 3, Func. Count: 30, Neg. LLF: 137.96953563628077
Iteration: 4, Func. Count: 39, Neg. LLF: 137.949742552793
Iteration: 5, Func. Count: 49, Neg. LLF: 137.8717930360375
Iteration: 6, Func. Count: 59, Neg. LLF: 137.84663273627473
Iteration: 7, Func. Count: 68, Neg. LLF: 137.83628880831623
Iteration: 8, Func. Count: 77, Neg. LLF: 137.8025284357508
Iteration: 9, Func. Count: 86, Neg. LLF: 137.80295552190503
Iteration: 10, Func. Count: 96, Neg. LLF: 137.80158560118852
Iteration: 11, Func. Count: 105, Neg. LLF: 137.796133481232
Iteration: 12, Func. Count: 114, Neg. LLF: 137.7828299662122
Iteration: 13, Func. Count: 123, Neg. LLF: 13844931.217000946
Iteration: 14, Func. Count: 137, Neg. LLF: 137.78160804267392
Iteration: 15, Func. Count: 146, Neg. LLF: 137.7814314552892
Iteration: 16, Func. Count: 155, Neg. LLF: 137.78142836318037
Iteration: 17, Func. Count: 163, Neg. LLF: 137.78142836686757
Optimization terminated successfully (Exit mode 0)
Current function value: 137.78142836318037
Iterations: 18
Function evaluations: 163
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 22872407.146605656
Iteration: 2, Func. Count: 23, Neg. LLF: 138.28504060914798
Iteration: 3, Func. Count: 33, Neg. LLF: 137.87227959065734
Iteration: 4, Func. Count: 43, Neg. LLF: 138.351356070218
Iteration: 5, Func. Count: 54, Neg. LLF: 137.7950846107375
Iteration: 6, Func. Count: 64, Neg. LLF: 137.78421879889422
Iteration: 7, Func. Count: 74, Neg. LLF: 137.780739349389
Iteration: 8, Func. Count: 84, Neg. LLF: 137.77618411281082
Iteration: 9, Func. Count: 94, Neg. LLF: 137.77608217375794
Iteration: 10, Func. Count: 104, Neg. LLF: 137.77603356659296
Iteration: 11, Func. Count: 113, Neg. LLF: 137.77603356630493
Optimization terminated successfully (Exit mode 0)
Current function value: 137.77603356659296
Iterations: 11
Function evaluations: 113
Gradient evaluations: 11
Iteration: 1, Func. Count: 8, Neg. LLF: 140.66062495244105
Iteration: 2, Func. Count: 15, Neg. LLF: 152.72201089275399
Iteration: 3, Func. Count: 23, Neg. LLF: 139.2012372056605
Iteration: 4, Func. Count: 30, Neg. LLF: 138.94175396106834
Iteration: 5, Func. Count: 37, Neg. LLF: 138.88659170605544
Iteration: 6, Func. Count: 44, Neg. LLF: 138.84883717626403
Iteration: 7, Func. Count: 51, Neg. LLF: 138.83833445841614
Iteration: 8, Func. Count: 58, Neg. LLF: 138.8379106399632
Iteration: 9, Func. Count: 65, Neg. LLF: 138.83790297227844
Iteration: 10, Func. Count: 71, Neg. LLF: 138.83790319782312
Optimization terminated successfully (Exit mode 0)
Current function value: 138.83790297227844
Iterations: 10
Function evaluations: 71
Gradient evaluations: 10
Iteration: 1, Func. Count: 9, Neg. LLF: 180.14887642216732
Iteration: 2, Func. Count: 19, Neg. LLF: 139.60673279899652
Iteration: 3, Func. Count: 27, Neg. LLF: 139.60347537412719
Iteration: 4, Func. Count: 35, Neg. LLF: 139.60289407596787
Iteration: 5, Func. Count: 43, Neg. LLF: 139.60288091285386
Iteration: 6, Func. Count: 51, Neg. LLF: 139.60279445169215
Iteration: 7, Func. Count: 59, Neg. LLF: 139.60230660699722
Iteration: 8, Func. Count: 67, Neg. LLF: 139.5991073051105
Iteration: 9, Func. Count: 75, Neg. LLF: 139.55784446936596
Iteration: 10, Func. Count: 83, Neg. LLF: 139.55754773607939
Iteration: 11, Func. Count: 91, Neg. LLF: 139.55752943245568
Iteration: 12, Func. Count: 99, Neg. LLF: 139.55743636095178
Iteration: 13, Func. Count: 107, Neg. LLF: 139.55702515905
Iteration: 14, Func. Count: 115, Neg. LLF: 139.55701923259508
Iteration: 15, Func. Count: 123, Neg. LLF: 139.55700839445166
Iteration: 16, Func. Count: 131, Neg. LLF: 139.55700708567795
Iteration: 17, Func. Count: 138, Neg. LLF: 139.5570070872111
Optimization terminated successfully (Exit mode 0)
Current function value: 139.55700708567795
Iterations: 17
Function evaluations: 138
Gradient evaluations: 17
Iteration: 1, Func. Count: 10, Neg. LLF: 8285.898503542863
Iteration: 2, Func. Count: 21, Neg. LLF: 138.3712576288463
Iteration: 3, Func. Count: 30, Neg. LLF: 138.2410867824875
Iteration: 4, Func. Count: 39, Neg. LLF: 138.01244021838795
Iteration: 5, Func. Count: 48, Neg. LLF: 137.83916064155412
Iteration: 6, Func. Count: 57, Neg. LLF: 137.80412193515346
Iteration: 7, Func. Count: 66, Neg. LLF: 137.77339388040542
Iteration: 8, Func. Count: 75, Neg. LLF: 137.7732913526674
Iteration: 9, Func. Count: 84, Neg. LLF: 137.957391126383
Optimization terminated successfully (Exit mode 0)
Current function value: 137.77329134613646
Iterations: 10
Function evaluations: 88
Gradient evaluations: 9
Iteration: 1, Func. Count: 11, Neg. LLF: 22888513.628737185
Iteration: 2, Func. Count: 23, Neg. LLF: 138.40344967785276
Iteration: 3, Func. Count: 33, Neg. LLF: 137.96698901285734
Iteration: 4, Func. Count: 43, Neg. LLF: 137.9667995723705
Iteration: 5, Func. Count: 54, Neg. LLF: 137.87362386725934
Iteration: 6, Func. Count: 65, Neg. LLF: 137.84642148646736
Iteration: 7, Func. Count: 75, Neg. LLF: 137.83354424881722
Iteration: 8, Func. Count: 85, Neg. LLF: 137.80497876861207
Iteration: 9, Func. Count: 95, Neg. LLF: 137.80350950047102
Iteration: 10, Func. Count: 105, Neg. LLF: 137.80192513676147
Iteration: 11, Func. Count: 115, Neg. LLF: 137.79982954989705
Iteration: 12, Func. Count: 125, Neg. LLF: 137.7974003642639
Iteration: 13, Func. Count: 135, Neg. LLF: 137.7884402835111
Iteration: 14, Func. Count: 145, Neg. LLF: 140.16889010330092
Iteration: 15, Func. Count: 157, Neg. LLF: 6705.763745831559
Iteration: 16, Func. Count: 170, Neg. LLF: 137.78142821154046
Iteration: 17, Func. Count: 179, Neg. LLF: 137.78142821517898
Optimization terminated successfully (Exit mode 0)
Current function value: 137.78142821154046
Iterations: 18
Function evaluations: 179
Gradient evaluations: 17
Iteration: 1, Func. Count: 12, Neg. LLF: 22876164.86214197
Iteration: 2, Func. Count: 25, Neg. LLF: 138.31687129334276
Iteration: 3, Func. Count: 36, Neg. LLF: 137.8495421137403
Iteration: 4, Func. Count: 47, Neg. LLF: 137.9696037316167
Iteration: 5, Func. Count: 59, Neg. LLF: 137.77817135005301
Iteration: 6, Func. Count: 70, Neg. LLF: 137.77677269641146
Iteration: 7, Func. Count: 81, Neg. LLF: 137.77604861506887
Iteration: 8, Func. Count: 92, Neg. LLF: 137.77603416853614
Iteration: 9, Func. Count: 103, Neg. LLF: 137.77603322556968
Optimization terminated successfully (Exit mode 0)
Current function value: 137.77603322556968
Iterations: 9
Function evaluations: 103
Gradient evaluations: 9
Iteration: 1, Func. Count: 5, Neg. LLF: 140.5697327212079
Iteration: 2, Func. Count: 10, Neg. LLF: 148.11412143191765
Iteration: 3, Func. Count: 15, Neg. LLF: 138.728351242122
Iteration: 4, Func. Count: 19, Neg. LLF: 138.6925610245082
Iteration: 5, Func. Count: 23, Neg. LLF: 138.6843926631429
Iteration: 6, Func. Count: 27, Neg. LLF: 138.68242583709517
Iteration: 7, Func. Count: 31, Neg. LLF: 138.68154660058102
Iteration: 8, Func. Count: 35, Neg. LLF: 138.6814097831405
Iteration: 9, Func. Count: 39, Neg. LLF: 138.68140666973716
Iteration: 10, Func. Count: 42, Neg. LLF: 138.68140666973653
Optimization terminated successfully (Exit mode 0)
Current function value: 138.68140666973716
Iterations: 10
Function evaluations: 42
Gradient evaluations: 10
Iteration: 1, Func. Count: 6, Neg. LLF: 732.575005230947
Iteration: 2, Func. Count: 13, Neg. LLF: 139.36260397580617
Iteration: 3, Func. Count: 18, Neg. LLF: 138.34804863925223
Iteration: 4, Func. Count: 23, Neg. LLF: 146.2047992457575
Iteration: 5, Func. Count: 29, Neg. LLF: 137.83982358626352
Iteration: 6, Func. Count: 34, Neg. LLF: 137.79358756545798
Iteration: 7, Func. Count: 39, Neg. LLF: 137.78157921779064
Iteration: 8, Func. Count: 44, Neg. LLF: 137.78142844259457
Iteration: 9, Func. Count: 48, Neg. LLF: 137.78142844124443
Optimization terminated successfully (Exit mode 0)
Current function value: 137.78142844259457
Iterations: 9
Function evaluations: 48
Gradient evaluations: 9
Iteration: 1, Func. Count: 7, Neg. LLF: 22879607.993985694
Iteration: 2, Func. Count: 15, Neg. LLF: 138.50986705855595
Iteration: 3, Func. Count: 21, Neg. LLF: 137.95370889701738
Iteration: 4, Func. Count: 27, Neg. LLF: 138.631808454696
Iteration: 5, Func. Count: 34, Neg. LLF: 137.7736080555946
Iteration: 6, Func. Count: 40, Neg. LLF: 137.77329197707408
Iteration: 7, Func. Count: 46, Neg. LLF: 137.7732912826895
Optimization terminated successfully (Exit mode 0)
Current function value: 137.7732912826895
Iterations: 7
Function evaluations: 46
Gradient evaluations: 7
Iteration: 1, Func. Count: 8, Neg. LLF: 22859703.541957412
Iteration: 2, Func. Count: 17, Neg. LLF: 138.4388541506344
Iteration: 3, Func. Count: 24, Neg. LLF: 137.9207098062629
Iteration: 4, Func. Count: 31, Neg. LLF: 137.93236264124235
Iteration: 5, Func. Count: 39, Neg. LLF: 137.85167732811274
Iteration: 6, Func. Count: 46, Neg. LLF: 137.84933983367512
Iteration: 7, Func. Count: 53, Neg. LLF: 137.8478782021117
Iteration: 8, Func. Count: 60, Neg. LLF: 137.843484979234
Iteration: 9, Func. Count: 67, Neg. LLF: 137.8298191621261
Iteration: 10, Func. Count: 74, Neg. LLF: 137.8077188728248
Iteration: 11, Func. Count: 81, Neg. LLF: 137.80728902201892
Iteration: 12, Func. Count: 88, Neg. LLF: 137.8072256254166
Iteration: 13, Func. Count: 95, Neg. LLF: 137.80719165893842
Iteration: 14, Func. Count: 102, Neg. LLF: 137.80710868992324
Iteration: 15, Func. Count: 109, Neg. LLF: 137.80656258429863
Iteration: 16, Func. Count: 116, Neg. LLF: 137.80826700727104
Iteration: 17, Func. Count: 124, Neg. LLF: 137.8058973181894
Iteration: 18, Func. Count: 131, Neg. LLF: 137.80194108296004
Iteration: 19, Func. Count: 138, Neg. LLF: 137.7817041877433
Iteration: 20, Func. Count: 145, Neg. LLF: 137.781468786838
Iteration: 21, Func. Count: 152, Neg. LLF: 137.78143141438971
Iteration: 22, Func. Count: 159, Neg. LLF: 137.78142851980797
Iteration: 23, Func. Count: 165, Neg. LLF: 137.7814285237655
Optimization terminated successfully (Exit mode 0)
Current function value: 137.78142851980797
Iterations: 23
Function evaluations: 165
Gradient evaluations: 23
Iteration: 1, Func. Count: 9, Neg. LLF: 22836798.61811762
Iteration: 2, Func. Count: 19, Neg. LLF: 138.29306296146441
Iteration: 3, Func. Count: 27, Neg. LLF: 137.83221796186004
Iteration: 4, Func. Count: 35, Neg. LLF: 137.90141632488857
Iteration: 5, Func. Count: 44, Neg. LLF: 137.77631072860822
Iteration: 6, Func. Count: 52, Neg. LLF: 137.77611923855918
Iteration: 7, Func. Count: 60, Neg. LLF: 137.77603466282713
Iteration: 8, Func. Count: 68, Neg. LLF: 137.77603325611258
Iteration: 9, Func. Count: 75, Neg. LLF: 137.77603325604142
Optimization terminated successfully (Exit mode 0)
Current function value: 137.77603325611258
Iterations: 9
Function evaluations: 75
Gradient evaluations: 9
Iteration: 1, Func. Count: 6, Neg. LLF: 141.52792661178938
Iteration: 2, Func. Count: 12, Neg. LLF: 143.29587171570205
Iteration: 3, Func. Count: 18, Neg. LLF: 138.53601911185223
Iteration: 4, Func. Count: 23, Neg. LLF: 138.47720893606723
Iteration: 5, Func. Count: 28, Neg. LLF: 138.4689130636931
Iteration: 6, Func. Count: 33, Neg. LLF: 138.45975889158765
Iteration: 7, Func. Count: 38, Neg. LLF: 138.45798721213825
Iteration: 8, Func. Count: 43, Neg. LLF: 138.4573126829888
Iteration: 9, Func. Count: 48, Neg. LLF: 138.45731140080076
Iteration: 10, Func. Count: 52, Neg. LLF: 138.4573114004733
Optimization terminated successfully (Exit mode 0)
Current function value: 138.45731140080076
Iterations: 10
Function evaluations: 52
Gradient evaluations: 10
Iteration: 1, Func. Count: 7, Neg. LLF: 139.43799979568172
Iteration: 2, Func. Count: 14, Neg. LLF: 139.5218061533062
Iteration: 3, Func. Count: 21, Neg. LLF: 138.48279660019998
Iteration: 4, Func. Count: 27, Neg. LLF: 143.0310869192424
Iteration: 5, Func. Count: 34, Neg. LLF: 138.4801101651223
Iteration: 6, Func. Count: 41, Neg. LLF: 138.46526405931283
Iteration: 7, Func. Count: 47, Neg. LLF: 138.4574158483806
Iteration: 8, Func. Count: 53, Neg. LLF: 138.45284308666862
Iteration: 9, Func. Count: 59, Neg. LLF: 138.4462691497249
Iteration: 10, Func. Count: 65, Neg. LLF: 138.44571351201952
Iteration: 11, Func. Count: 71, Neg. LLF: 138.445671557629
Iteration: 12, Func. Count: 77, Neg. LLF: 138.44567067541428
Optimization terminated successfully (Exit mode 0)
Current function value: 138.44567067541428
Iterations: 12
Function evaluations: 77
Gradient evaluations: 12
Iteration: 1, Func. Count: 8, Neg. LLF: 141.39621318148215
Iteration: 2, Func. Count: 17, Neg. LLF: 144.74107010560348
Iteration: 3, Func. Count: 25, Neg. LLF: 137.47625619208267
Iteration: 4, Func. Count: 32, Neg. LLF: 137.81699894110386
Iteration: 5, Func. Count: 40, Neg. LLF: 136.94540615621491
Iteration: 6, Func. Count: 47, Neg. LLF: 135.5843898437418
Iteration: 7, Func. Count: 54, Neg. LLF: 135.8904702213925
Iteration: 8, Func. Count: 62, Neg. LLF: 135.018278955263
Iteration: 9, Func. Count: 69, Neg. LLF: 134.8597053633721
Iteration: 10, Func. Count: 76, Neg. LLF: 135.3891576169899
Iteration: 11, Func. Count: 84, Neg. LLF: 149.86831004804577
Iteration: 12, Func. Count: 92, Neg. LLF: 134.86843983361828
Iteration: 13, Func. Count: 100, Neg. LLF: 134.56940217471515
Iteration: 14, Func. Count: 108, Neg. LLF: 134.30399187324906
Iteration: 15, Func. Count: 115, Neg. LLF: 134.23027866449698
Iteration: 16, Func. Count: 122, Neg. LLF: 134.2208917813834
Iteration: 17, Func. Count: 129, Neg. LLF: 134.2219023807186
Iteration: 18, Func. Count: 137, Neg. LLF: 134.21444783956622
Iteration: 19, Func. Count: 145, Neg. LLF: 134.211281237119
Iteration: 20, Func. Count: 151, Neg. LLF: 134.21128123717432
Optimization terminated successfully (Exit mode 0)
Current function value: 134.211281237119
Iterations: 20
Function evaluations: 151
Gradient evaluations: 20
Iteration: 1, Func. Count: 9, Neg. LLF: 141.83664039900646
Iteration: 2, Func. Count: 19, Neg. LLF: 144.51868051056147
Iteration: 3, Func. Count: 28, Neg. LLF: 137.9434282703832
Iteration: 4, Func. Count: 36, Neg. LLF: 137.61430262840776
Iteration: 5, Func. Count: 44, Neg. LLF: 137.10500591422115
Iteration: 6, Func. Count: 52, Neg. LLF: 135.85021790020812
Iteration: 7, Func. Count: 60, Neg. LLF: 147.28382242106363
Iteration: 8, Func. Count: 70, Neg. LLF: 136.56097006508952
Iteration: 9, Func. Count: 79, Neg. LLF: 134.93637970034501
Iteration: 10, Func. Count: 87, Neg. LLF: 134.90060300314494
Iteration: 11, Func. Count: 96, Neg. LLF: 134.2693028858377
Iteration: 12, Func. Count: 104, Neg. LLF: 134.1568297289676
Iteration: 13, Func. Count: 112, Neg. LLF: 134.145164947928
Iteration: 14, Func. Count: 120, Neg. LLF: 134.13462576540996
Iteration: 15, Func. Count: 128, Neg. LLF: 134.13305927960226
Iteration: 16, Func. Count: 136, Neg. LLF: 134.13192638465395
Iteration: 17, Func. Count: 144, Neg. LLF: 134.13145433884844
Iteration: 18, Func. Count: 152, Neg. LLF: 134.13145125324198
Iteration: 19, Func. Count: 160, Neg. LLF: 134.13145072734764
Optimization terminated successfully (Exit mode 0)
Current function value: 134.13145072734764
Iterations: 19
Function evaluations: 160
Gradient evaluations: 19
Iteration: 1, Func. Count: 10, Neg. LLF: 11679989.75486922
Iteration: 2, Func. Count: 20, Neg. LLF: 139.2896050560464
Iteration: 3, Func. Count: 30, Neg. LLF: 145.47279018695903
Iteration: 4, Func. Count: 40, Neg. LLF: 137.15132454799962
Iteration: 5, Func. Count: 50, Neg. LLF: 135.85710292444452
Iteration: 6, Func. Count: 60, Neg. LLF: 148.44083175259075
Iteration: 7, Func. Count: 70, Neg. LLF: 134.6284420439153
Iteration: 8, Func. Count: 79, Neg. LLF: 139.13458629235106
Iteration: 9, Func. Count: 89, Neg. LLF: 135.70778037713978
Iteration: 10, Func. Count: 101, Neg. LLF: 134.4534072946862
Iteration: 11, Func. Count: 111, Neg. LLF: 134.1354648948423
Iteration: 12, Func. Count: 120, Neg. LLF: 134.13215994476388
Iteration: 13, Func. Count: 129, Neg. LLF: 134.1314813424891
Iteration: 14, Func. Count: 138, Neg. LLF: 134.13145629559077
Iteration: 15, Func. Count: 147, Neg. LLF: 134.1314516715946
Iteration: 16, Func. Count: 156, Neg. LLF: 134.1314508479079
Optimization terminated successfully (Exit mode 0)
Current function value: 134.1314508479079
Iterations: 16
Function evaluations: 156
Gradient evaluations: 16
Iteration: 1, Func. Count: 7, Neg. LLF: 141.67286958048825
Iteration: 2, Func. Count: 14, Neg. LLF: 141.6021707480274
Iteration: 3, Func. Count: 21, Neg. LLF: 137.26398837157296
Iteration: 4, Func. Count: 27, Neg. LLF: 137.21189564599183
Iteration: 5, Func. Count: 33, Neg. LLF: 137.19715514797988
Iteration: 6, Func. Count: 39, Neg. LLF: 137.18710205010146
Iteration: 7, Func. Count: 45, Neg. LLF: 137.18328734579163
Iteration: 8, Func. Count: 51, Neg. LLF: 137.18248758823066
Iteration: 9, Func. Count: 57, Neg. LLF: 137.18216009587096
Iteration: 10, Func. Count: 63, Neg. LLF: 137.18210984332885
Iteration: 11, Func. Count: 69, Neg. LLF: 137.182100741311
Iteration: 12, Func. Count: 75, Neg. LLF: 137.1820970104789
Iteration: 13, Func. Count: 80, Neg. LLF: 137.1820970104798
Optimization terminated successfully (Exit mode 0)
Current function value: 137.1820970104789
Iterations: 13
Function evaluations: 80
Gradient evaluations: 13
Iteration: 1, Func. Count: 8, Neg. LLF: 140.48552805343124
Iteration: 2, Func. Count: 17, Neg. LLF: 144.00546556308288
Iteration: 3, Func. Count: 25, Neg. LLF: 138.75355197473428
Iteration: 4, Func. Count: 32, Neg. LLF: 138.69419846280056
Iteration: 5, Func. Count: 39, Neg. LLF: 138.63604971645344
Iteration: 6, Func. Count: 46, Neg. LLF: 138.54388539781849
Iteration: 7, Func. Count: 53, Neg. LLF: 138.48188453623658
Iteration: 8, Func. Count: 60, Neg. LLF: 138.47350654022028
Iteration: 9, Func. Count: 67, Neg. LLF: 138.45669312986422
Iteration: 10, Func. Count: 74, Neg. LLF: 138.44425197850532
Iteration: 11, Func. Count: 81, Neg. LLF: 138.43610994700495
Iteration: 12, Func. Count: 88, Neg. LLF: 138.43373585420034
Iteration: 13, Func. Count: 95, Neg. LLF: 138.43106038137853
Iteration: 14, Func. Count: 102, Neg. LLF: 138.4309482652523
Iteration: 15, Func. Count: 109, Neg. LLF: 138.43088573171755
Iteration: 16, Func. Count: 116, Neg. LLF: 138.4308846281181
Iteration: 17, Func. Count: 122, Neg. LLF: 138.43088465318766
Optimization terminated successfully (Exit mode 0)
Current function value: 138.4308846281181
Iterations: 17
Function evaluations: 122
Gradient evaluations: 17
Iteration: 1, Func. Count: 9, Neg. LLF: 141.34633363035232
Iteration: 2, Func. Count: 19, Neg. LLF: 144.7679379303665
Iteration: 3, Func. Count: 28, Neg. LLF: 137.45914286301684
Iteration: 4, Func. Count: 36, Neg. LLF: 137.84290086806112
Iteration: 5, Func. Count: 45, Neg. LLF: 136.95034468798886
Iteration: 6, Func. Count: 53, Neg. LLF: 135.58709127175055
Iteration: 7, Func. Count: 61, Neg. LLF: 135.95697652104928
Iteration: 8, Func. Count: 70, Neg. LLF: 135.02002458221384
Iteration: 9, Func. Count: 78, Neg. LLF: 134.86423588994998
Iteration: 10, Func. Count: 86, Neg. LLF: 135.9026253074698
Iteration: 11, Func. Count: 95, Neg. LLF: 152.6752667606278
Iteration: 12, Func. Count: 104, Neg. LLF: 137.61064431136538
Iteration: 13, Func. Count: 113, Neg. LLF: 135.39049258886786
Iteration: 14, Func. Count: 122, Neg. LLF: 134.52637239632656
Iteration: 15, Func. Count: 131, Neg. LLF: 134.2435082326771
Iteration: 16, Func. Count: 139, Neg. LLF: 137.23930069725915
Iteration: 17, Func. Count: 149, Neg. LLF: 134.2537669829233
Iteration: 18, Func. Count: 158, Neg. LLF: 134.2118704560256
Iteration: 19, Func. Count: 166, Neg. LLF: 134.21177244269083
Iteration: 20, Func. Count: 175, Neg. LLF: 134.21128117746443
Iteration: 21, Func. Count: 182, Neg. LLF: 134.2112811775598
Optimization terminated successfully (Exit mode 0)
Current function value: 134.21128117746443
Iterations: 21
Function evaluations: 182
Gradient evaluations: 21
Iteration: 1, Func. Count: 10, Neg. LLF: 141.7503982761678
Iteration: 2, Func. Count: 21, Neg. LLF: 144.5566604823582
Iteration: 3, Func. Count: 31, Neg. LLF: 137.92734987607184
Iteration: 4, Func. Count: 40, Neg. LLF: 137.60428643583296
Iteration: 5, Func. Count: 49, Neg. LLF: 136.5928720457243
Iteration: 6, Func. Count: 58, Neg. LLF: 136.05057686528383
Iteration: 7, Func. Count: 67, Neg. LLF: 183.77118476608007
Iteration: 8, Func. Count: 77, Neg. LLF: 138.88035959883962
Iteration: 9, Func. Count: 89, Neg. LLF: 134.71774413407928
Iteration: 10, Func. Count: 98, Neg. LLF: 134.4906114222149
Iteration: 11, Func. Count: 107, Neg. LLF: 134.34674278315916
Iteration: 12, Func. Count: 116, Neg. LLF: 134.24204937421385
Iteration: 13, Func. Count: 125, Neg. LLF: 134.18510144382392
Iteration: 14, Func. Count: 134, Neg. LLF: 134.1422389229438
Iteration: 15, Func. Count: 143, Neg. LLF: 134.13330993652454
Iteration: 16, Func. Count: 152, Neg. LLF: 134.13156268416625
Iteration: 17, Func. Count: 161, Neg. LLF: 134.1314523799004
Iteration: 18, Func. Count: 170, Neg. LLF: 134.13145064153744
Iteration: 19, Func. Count: 178, Neg. LLF: 134.1314506414767
Optimization terminated successfully (Exit mode 0)
Current function value: 134.13145064153744
Iterations: 19
Function evaluations: 178
Gradient evaluations: 19
Iteration: 1, Func. Count: 11, Neg. LLF: 11678345.295663284
Iteration: 2, Func. Count: 22, Neg. LLF: 139.18610067632738
Iteration: 3, Func. Count: 33, Neg. LLF: 145.60345406677843
Iteration: 4, Func. Count: 44, Neg. LLF: 137.1419646555145
Iteration: 5, Func. Count: 55, Neg. LLF: 135.8444211526897
Iteration: 6, Func. Count: 66, Neg. LLF: 147.59643650690188
Iteration: 7, Func. Count: 77, Neg. LLF: 134.62288719357946
Iteration: 8, Func. Count: 87, Neg. LLF: 139.14600927874633
Iteration: 9, Func. Count: 98, Neg. LLF: 135.70512374155783
Iteration: 10, Func. Count: 111, Neg. LLF: 134.44266438912115
Iteration: 11, Func. Count: 122, Neg. LLF: 134.1351030726929
Iteration: 12, Func. Count: 132, Neg. LLF: 134.13204159585342
Iteration: 13, Func. Count: 142, Neg. LLF: 134.13147235774971
Iteration: 14, Func. Count: 152, Neg. LLF: 134.13145359084692
Iteration: 15, Func. Count: 162, Neg. LLF: 134.1314510920874
Iteration: 16, Func. Count: 171, Neg. LLF: 134.1314511012747
Optimization terminated successfully (Exit mode 0)
Current function value: 134.1314510920874
Iterations: 16
Function evaluations: 171
Gradient evaluations: 16
Iteration: 1, Func. Count: 8, Neg. LLF: 141.6758086473408
Iteration: 2, Func. Count: 16, Neg. LLF: 141.6499070459208
Iteration: 3, Func. Count: 24, Neg. LLF: 137.21431005898023
Iteration: 4, Func. Count: 31, Neg. LLF: 137.19732975759788
Iteration: 5, Func. Count: 38, Neg. LLF: 137.18945333700432
Iteration: 6, Func. Count: 45, Neg. LLF: 137.18541104755724
Iteration: 7, Func. Count: 52, Neg. LLF: 137.18408615419165
Iteration: 8, Func. Count: 59, Neg. LLF: 137.18230187111658
Iteration: 9, Func. Count: 66, Neg. LLF: 137.18211209168314
Iteration: 10, Func. Count: 73, Neg. LLF: 137.1820991734666
Iteration: 11, Func. Count: 80, Neg. LLF: 137.18209753355495
Iteration: 12, Func. Count: 87, Neg. LLF: 137.18209672656832
Optimization terminated successfully (Exit mode 0)
Current function value: 137.18209672656832
Iterations: 12
Function evaluations: 87
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 140.4983747856358
Iteration: 2, Func. Count: 19, Neg. LLF: 143.92223275345876
Iteration: 3, Func. Count: 28, Neg. LLF: 138.74943614664357
Iteration: 4, Func. Count: 36, Neg. LLF: 138.69083299372272
Iteration: 5, Func. Count: 44, Neg. LLF: 138.6315329128896
Iteration: 6, Func. Count: 52, Neg. LLF: 138.54310421374197
Iteration: 7, Func. Count: 60, Neg. LLF: 138.48243205940165
Iteration: 8, Func. Count: 68, Neg. LLF: 138.4724896661052
Iteration: 9, Func. Count: 76, Neg. LLF: 138.4555266656332
Iteration: 10, Func. Count: 84, Neg. LLF: 138.4418974035972
Iteration: 11, Func. Count: 92, Neg. LLF: 138.43583908249246
Iteration: 12, Func. Count: 100, Neg. LLF: 138.43344137231935
Iteration: 13, Func. Count: 108, Neg. LLF: 138.4310658122889
Iteration: 14, Func. Count: 116, Neg. LLF: 138.43094251472877
Iteration: 15, Func. Count: 124, Neg. LLF: 138.43088613751257
Iteration: 16, Func. Count: 132, Neg. LLF: 138.43088476741158
Iteration: 17, Func. Count: 139, Neg. LLF: 138.43088479247237
Optimization terminated successfully (Exit mode 0)
Current function value: 138.43088476741158
Iterations: 17
Function evaluations: 139
Gradient evaluations: 17
Iteration: 1, Func. Count: 10, Neg. LLF: 141.3222978175912
Iteration: 2, Func. Count: 21, Neg. LLF: 144.75937043789838
Iteration: 3, Func. Count: 31, Neg. LLF: 137.4509738676321
Iteration: 4, Func. Count: 40, Neg. LLF: 137.69242882671162
Iteration: 5, Func. Count: 50, Neg. LLF: 136.91494299705857
Iteration: 6, Func. Count: 59, Neg. LLF: 135.52081772416238
Iteration: 7, Func. Count: 68, Neg. LLF: 135.84433212422203
Iteration: 8, Func. Count: 78, Neg. LLF: 135.01133684584488
Iteration: 9, Func. Count: 87, Neg. LLF: 134.85954455079923
Iteration: 10, Func. Count: 96, Neg. LLF: 135.85338426145097
Iteration: 11, Func. Count: 106, Neg. LLF: 204.5347431206924
Iteration: 12, Func. Count: 116, Neg. LLF: 139.5859465363193
Iteration: 13, Func. Count: 126, Neg. LLF: 134.54188070835758
Iteration: 14, Func. Count: 136, Neg. LLF: 134.2421498190926
Iteration: 15, Func. Count: 145, Neg. LLF: 134.6313867141792
Iteration: 16, Func. Count: 155, Neg. LLF: 134.19111749789707
Iteration: 17, Func. Count: 164, Neg. LLF: 134.1867718172519
Iteration: 18, Func. Count: 173, Neg. LLF: 134.18668313207195
Iteration: 19, Func. Count: 183, Neg. LLF: 134.1863642409316
Iteration: 20, Func. Count: 192, Neg. LLF: 134.18636331026096
Optimization terminated successfully (Exit mode 0)
Current function value: 134.18636331026096
Iterations: 20
Function evaluations: 192
Gradient evaluations: 20
Iteration: 1, Func. Count: 11, Neg. LLF: 11621069.593019867
Iteration: 2, Func. Count: 22, Neg. LLF: 140.59932394670722
Iteration: 3, Func. Count: 33, Neg. LLF: 144.93825005497467
Iteration: 4, Func. Count: 44, Neg. LLF: 136.09726354475126
Iteration: 5, Func. Count: 55, Neg. LLF: 136.2438086024091
Iteration: 6, Func. Count: 66, Neg. LLF: 134.4550547323239
Iteration: 7, Func. Count: 76, Neg. LLF: 134.31535604324316
Iteration: 8, Func. Count: 86, Neg. LLF: 134.49183051352455
Iteration: 9, Func. Count: 97, Neg. LLF: 134.98513470768967
Iteration: 10, Func. Count: 108, Neg. LLF: 134.13434028029144
Iteration: 11, Func. Count: 118, Neg. LLF: 134.1384045392127
Iteration: 12, Func. Count: 129, Neg. LLF: 134.1315263218743
Iteration: 13, Func. Count: 139, Neg. LLF: 134.1314566355828
Iteration: 14, Func. Count: 149, Neg. LLF: 134.13145080960686
Iteration: 15, Func. Count: 158, Neg. LLF: 134.13145080946998
Optimization terminated successfully (Exit mode 0)
Current function value: 134.13145080960686
Iterations: 15
Function evaluations: 158
Gradient evaluations: 15
Iteration: 1, Func. Count: 12, Neg. LLF: 11686167.763197469
Iteration: 2, Func. Count: 24, Neg. LLF: 139.28604963891974
Iteration: 3, Func. Count: 36, Neg. LLF: 145.79591143855106
Iteration: 4, Func. Count: 48, Neg. LLF: 137.2922592522133
Iteration: 5, Func. Count: 60, Neg. LLF: 135.9039829688673
Iteration: 6, Func. Count: 72, Neg. LLF: 147.753333557674
Iteration: 7, Func. Count: 84, Neg. LLF: 134.6289753311091
Iteration: 8, Func. Count: 95, Neg. LLF: 139.24928307877707
Iteration: 9, Func. Count: 107, Neg. LLF: 135.69567085962328
Iteration: 10, Func. Count: 121, Neg. LLF: 134.39582605749743
Iteration: 11, Func. Count: 133, Neg. LLF: 134.1354390619647
Iteration: 12, Func. Count: 144, Neg. LLF: 134.1320097609527
Iteration: 13, Func. Count: 155, Neg. LLF: 134.13146732949616
Iteration: 14, Func. Count: 166, Neg. LLF: 134.1314548024329
Iteration: 15, Func. Count: 177, Neg. LLF: 134.13145099677442
Iteration: 16, Func. Count: 187, Neg. LLF: 134.131451005998
Optimization terminated successfully (Exit mode 0)
Current function value: 134.13145099677442
Iterations: 16
Function evaluations: 187
Gradient evaluations: 16
Iteration: 1, Func. Count: 9, Neg. LLF: 141.56031032022148
Iteration: 2, Func. Count: 18, Neg. LLF: 140.03934059172218
Iteration: 3, Func. Count: 27, Neg. LLF: 138.47065397892143
Iteration: 4, Func. Count: 36, Neg. LLF: 137.24310732668337
Iteration: 5, Func. Count: 44, Neg. LLF: 137.1973349748493
Iteration: 6, Func. Count: 52, Neg. LLF: 137.18596555632263
Iteration: 7, Func. Count: 60, Neg. LLF: 137.18270135255077
Iteration: 8, Func. Count: 68, Neg. LLF: 137.18241618394808
Iteration: 9, Func. Count: 76, Neg. LLF: 137.18219532003096
Iteration: 10, Func. Count: 84, Neg. LLF: 137.18211355079728
Iteration: 11, Func. Count: 92, Neg. LLF: 137.18209729246038
Iteration: 12, Func. Count: 99, Neg. LLF: 137.18209754519285
Optimization terminated successfully (Exit mode 0)
Current function value: 137.18209729246038
Iterations: 12
Function evaluations: 99
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 140.5516066226248
Iteration: 2, Func. Count: 21, Neg. LLF: 143.8681467633766
Iteration: 3, Func. Count: 31, Neg. LLF: 138.7581565011025
Iteration: 4, Func. Count: 40, Neg. LLF: 138.68780632040884
Iteration: 5, Func. Count: 49, Neg. LLF: 138.64139806596097
Iteration: 6, Func. Count: 58, Neg. LLF: 138.5526241245892
Iteration: 7, Func. Count: 67, Neg. LLF: 138.48509396842908
Iteration: 8, Func. Count: 76, Neg. LLF: 138.47619687581394
Iteration: 9, Func. Count: 85, Neg. LLF: 138.4578373302717
Iteration: 10, Func. Count: 94, Neg. LLF: 138.44477400673654
Iteration: 11, Func. Count: 103, Neg. LLF: 138.43662996124522
Iteration: 12, Func. Count: 112, Neg. LLF: 138.43409541860078
Iteration: 13, Func. Count: 121, Neg. LLF: 138.4310319640147
Iteration: 14, Func. Count: 130, Neg. LLF: 138.4309279413685
Iteration: 15, Func. Count: 139, Neg. LLF: 138.43088532118685
Iteration: 16, Func. Count: 148, Neg. LLF: 138.43088456502133
Optimization terminated successfully (Exit mode 0)
Current function value: 138.43088456502133
Iterations: 16
Function evaluations: 148
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 141.34980007551204
Iteration: 2, Func. Count: 23, Neg. LLF: 144.73997796251143
Iteration: 3, Func. Count: 34, Neg. LLF: 137.45953897239326
Iteration: 4, Func. Count: 44, Neg. LLF: 137.57487212160052
Iteration: 5, Func. Count: 55, Neg. LLF: 136.88474709001045
Iteration: 6, Func. Count: 65, Neg. LLF: 135.46612056044782
Iteration: 7, Func. Count: 75, Neg. LLF: 135.66352701169512
Iteration: 8, Func. Count: 86, Neg. LLF: 134.98371667617755
Iteration: 9, Func. Count: 96, Neg. LLF: 134.8312928760255
Iteration: 10, Func. Count: 106, Neg. LLF: 139.87045641478903
Iteration: 11, Func. Count: 117, Neg. LLF: 166.3082542319204
Iteration: 12, Func. Count: 128, Neg. LLF: 135.4963521277499
Iteration: 13, Func. Count: 139, Neg. LLF: 134.78335176780834
Iteration: 14, Func. Count: 150, Neg. LLF: 134.37474121567186
Iteration: 15, Func. Count: 161, Neg. LLF: 134.2710398854304
Iteration: 16, Func. Count: 171, Neg. LLF: 134.4580740329704
Iteration: 17, Func. Count: 182, Neg. LLF: 134.19995034173823
Iteration: 18, Func. Count: 192, Neg. LLF: 134.19132825574349
Iteration: 19, Func. Count: 202, Neg. LLF: 134.18672211852368
Iteration: 20, Func. Count: 212, Neg. LLF: 134.18637057203455
Iteration: 21, Func. Count: 222, Neg. LLF: 134.18636405668715
Iteration: 22, Func. Count: 232, Neg. LLF: 134.18636329825114
Optimization terminated successfully (Exit mode 0)
Current function value: 134.18636329825114
Iterations: 22
Function evaluations: 232
Gradient evaluations: 22
Iteration: 1, Func. Count: 12, Neg. LLF: 11584619.833510652
Iteration: 2, Func. Count: 24, Neg. LLF: 140.65347349016503
Iteration: 3, Func. Count: 36, Neg. LLF: 144.96168871882674
Iteration: 4, Func. Count: 48, Neg. LLF: 136.11111912167337
Iteration: 5, Func. Count: 60, Neg. LLF: 136.24941843451
Iteration: 6, Func. Count: 72, Neg. LLF: 134.45952768855204
Iteration: 7, Func. Count: 83, Neg. LLF: 134.32025948290106
Iteration: 8, Func. Count: 94, Neg. LLF: 134.50067479055255
Iteration: 9, Func. Count: 106, Neg. LLF: 134.7481513460691
Iteration: 10, Func. Count: 118, Neg. LLF: 134.13490341273697
Iteration: 11, Func. Count: 129, Neg. LLF: 134.13898987708114
Iteration: 12, Func. Count: 141, Neg. LLF: 134.1315087774838
Iteration: 13, Func. Count: 152, Neg. LLF: 134.13145820735767
Iteration: 14, Func. Count: 163, Neg. LLF: 134.13145105269518
Iteration: 15, Func. Count: 173, Neg. LLF: 134.13145105235705
Optimization terminated successfully (Exit mode 0)
Current function value: 134.13145105269518
Iterations: 15
Function evaluations: 173
Gradient evaluations: 15
Iteration: 1, Func. Count: 13, Neg. LLF: 11690678.179153707
Iteration: 2, Func. Count: 26, Neg. LLF: 139.3586666689322
Iteration: 3, Func. Count: 39, Neg. LLF: 145.82926569868386
Iteration: 4, Func. Count: 52, Neg. LLF: 137.33699150945037
Iteration: 5, Func. Count: 65, Neg. LLF: 135.91241205439195
Iteration: 6, Func. Count: 78, Neg. LLF: 147.6144202042477
Iteration: 7, Func. Count: 91, Neg. LLF: 134.62766460127912
Iteration: 8, Func. Count: 103, Neg. LLF: 139.26372204029167
Iteration: 9, Func. Count: 116, Neg. LLF: 135.691776979937
Iteration: 10, Func. Count: 131, Neg. LLF: 134.38362197809843
Iteration: 11, Func. Count: 144, Neg. LLF: 134.1355407699359
Iteration: 12, Func. Count: 156, Neg. LLF: 134.1320150190677
Iteration: 13, Func. Count: 168, Neg. LLF: 134.13147354574608
Iteration: 14, Func. Count: 180, Neg. LLF: 134.1314578000305
Iteration: 15, Func. Count: 192, Neg. LLF: 134.1314509787428
Iteration: 16, Func. Count: 203, Neg. LLF: 134.13145098795616
Optimization terminated successfully (Exit mode 0)
Current function value: 134.1314509787428
Iterations: 16
Function evaluations: 203
Gradient evaluations: 16
Iteration: 1, Func. Count: 6, Neg. LLF: 141.5349873294212
Iteration: 2, Func. Count: 12, Neg. LLF: 150.46914852393402
Iteration: 3, Func. Count: 18, Neg. LLF: 138.74969016805179
Iteration: 4, Func. Count: 23, Neg. LLF: 138.76189238156533
Iteration: 5, Func. Count: 29, Neg. LLF: 138.68931623662522
Iteration: 6, Func. Count: 34, Neg. LLF: 138.68461141399047
Iteration: 7, Func. Count: 39, Neg. LLF: 138.68596192948758
Iteration: 8, Func. Count: 45, Neg. LLF: 138.6832394244127
Iteration: 9, Func. Count: 51, Neg. LLF: 138.68093906875498
Iteration: 10, Func. Count: 56, Neg. LLF: 138.6808280666067
Iteration: 11, Func. Count: 60, Neg. LLF: 138.6808280666233
Optimization terminated successfully (Exit mode 0)
Current function value: 138.6808280666067
Iterations: 11
Function evaluations: 60
Gradient evaluations: 11
Iteration: 1, Func. Count: 7, Neg. LLF: 719.2305153769388
Iteration: 2, Func. Count: 15, Neg. LLF: 139.37791010027823
Iteration: 3, Func. Count: 21, Neg. LLF: 138.31618259551752
Iteration: 4, Func. Count: 27, Neg. LLF: 147.26072622498575
Iteration: 5, Func. Count: 34, Neg. LLF: 137.83111838418156
Iteration: 6, Func. Count: 40, Neg. LLF: 137.79289444570205
Iteration: 7, Func. Count: 46, Neg. LLF: 137.7815246140891
Iteration: 8, Func. Count: 52, Neg. LLF: 137.7814283363144
Iteration: 9, Func. Count: 57, Neg. LLF: 137.7814283352979
Optimization terminated successfully (Exit mode 0)
Current function value: 137.7814283363144
Iterations: 9
Function evaluations: 57
Gradient evaluations: 9
Iteration: 1, Func. Count: 8, Neg. LLF: 22884317.702212535
Iteration: 2, Func. Count: 17, Neg. LLF: 138.55239266226712
Iteration: 3, Func. Count: 24, Neg. LLF: 137.98221481964734
Iteration: 4, Func. Count: 31, Neg. LLF: 138.75812553600232
Iteration: 5, Func. Count: 39, Neg. LLF: 137.77350447496397
Iteration: 6, Func. Count: 46, Neg. LLF: 137.77329593694148
Iteration: 7, Func. Count: 53, Neg. LLF: 137.7732913049474
Iteration: 8, Func. Count: 59, Neg. LLF: 137.7732913048397
Optimization terminated successfully (Exit mode 0)
Current function value: 137.7732913049474
Iterations: 8
Function evaluations: 59
Gradient evaluations: 8
Iteration: 1, Func. Count: 9, Neg. LLF: 22858266.11536515
Iteration: 2, Func. Count: 19, Neg. LLF: 138.42284017579144
Iteration: 3, Func. Count: 27, Neg. LLF: 137.93079026518316
Iteration: 4, Func. Count: 35, Neg. LLF: 137.9319385335455
Iteration: 5, Func. Count: 44, Neg. LLF: 137.8604333376389
Iteration: 6, Func. Count: 53, Neg. LLF: 137.84742993022908
Iteration: 7, Func. Count: 61, Neg. LLF: 137.8381191963063
Iteration: 8, Func. Count: 69, Neg. LLF: 137.82327106366233
Iteration: 9, Func. Count: 77, Neg. LLF: 137.8122355317795
Iteration: 10, Func. Count: 85, Neg. LLF: 137.80816317223238
Iteration: 11, Func. Count: 93, Neg. LLF: 137.80650921725677
Iteration: 12, Func. Count: 101, Neg. LLF: 137.80635770292326
Iteration: 13, Func. Count: 109, Neg. LLF: 137.80610757339164
Iteration: 14, Func. Count: 117, Neg. LLF: 137.80367204394054
Iteration: 15, Func. Count: 125, Neg. LLF: 137.80400896689326
Iteration: 16, Func. Count: 134, Neg. LLF: 137.7965156788157
Iteration: 17, Func. Count: 142, Neg. LLF: 137.78419083306161
Iteration: 18, Func. Count: 150, Neg. LLF: 137.78143196242743
Iteration: 19, Func. Count: 158, Neg. LLF: 137.78142884982043
Iteration: 20, Func. Count: 166, Neg. LLF: 137.78143734431038
Optimization terminated successfully (Exit mode 0)
Current function value: 137.78142884343137
Iterations: 20
Function evaluations: 168
Gradient evaluations: 20
Iteration: 1, Func. Count: 10, Neg. LLF: 22838547.08726641
Iteration: 2, Func. Count: 21, Neg. LLF: 138.2839019734591
Iteration: 3, Func. Count: 30, Neg. LLF: 137.8460150223626
Iteration: 4, Func. Count: 39, Neg. LLF: 137.89503225863217
Iteration: 5, Func. Count: 49, Neg. LLF: 137.77632852453317
Iteration: 6, Func. Count: 58, Neg. LLF: 137.77614271404175
Iteration: 7, Func. Count: 67, Neg. LLF: 137.77603387937245
Iteration: 8, Func. Count: 76, Neg. LLF: 137.7760332373039
Optimization terminated successfully (Exit mode 0)
Current function value: 137.7760332373039
Iterations: 8
Function evaluations: 76
Gradient evaluations: 8
Iteration: 1, Func. Count: 7, Neg. LLF: 142.2975947136016
Iteration: 2, Func. Count: 14, Neg. LLF: 149.03657797356928
Iteration: 3, Func. Count: 21, Neg. LLF: 138.53242223240574
Iteration: 4, Func. Count: 27, Neg. LLF: 138.483147296479
Iteration: 5, Func. Count: 33, Neg. LLF: 138.4726707960794
Iteration: 6, Func. Count: 39, Neg. LLF: 139.15631438459087
Iteration: 7, Func. Count: 48, Neg. LLF: 138.46680167971914
Iteration: 8, Func. Count: 54, Neg. LLF: 138.45382365450328
Iteration: 9, Func. Count: 60, Neg. LLF: 138.45377425470133
Iteration: 10, Func. Count: 66, Neg. LLF: 138.45376969040822
Iteration: 11, Func. Count: 72, Neg. LLF: 138.4537671576832
Iteration: 12, Func. Count: 77, Neg. LLF: 138.45376715697296
Optimization terminated successfully (Exit mode 0)
Current function value: 138.4537671576832
Iterations: 12
Function evaluations: 77
Gradient evaluations: 12
Iteration: 1, Func. Count: 8, Neg. LLF: 141.676050680819
Iteration: 2, Func. Count: 17, Neg. LLF: 144.36710468806882
Iteration: 3, Func. Count: 25, Neg. LLF: 138.9694186257716
Iteration: 4, Func. Count: 32, Neg. LLF: 138.955304124207
Iteration: 5, Func. Count: 39, Neg. LLF: 138.93679518312646
Iteration: 6, Func. Count: 46, Neg. LLF: 138.78791996179643
Iteration: 7, Func. Count: 53, Neg. LLF: 138.1204572219884
Iteration: 8, Func. Count: 60, Neg. LLF: 138.69796200678988
Iteration: 9, Func. Count: 69, Neg. LLF: 136.9225685727556
Iteration: 10, Func. Count: 76, Neg. LLF: 137.28870269322917
Iteration: 11, Func. Count: 84, Neg. LLF: 138.4355071027315
Iteration: 12, Func. Count: 92, Neg. LLF: 136.1380856495255
Iteration: 13, Func. Count: 100, Neg. LLF: 135.53679285051982
Iteration: 14, Func. Count: 107, Neg. LLF: 135.47973322718266
Iteration: 15, Func. Count: 114, Neg. LLF: 135.47158202271902
Iteration: 16, Func. Count: 121, Neg. LLF: 135.4629075598815
Iteration: 17, Func. Count: 128, Neg. LLF: 135.46261716830762
Iteration: 18, Func. Count: 135, Neg. LLF: 135.4626147669514
Iteration: 19, Func. Count: 141, Neg. LLF: 135.4626147667162
Optimization terminated successfully (Exit mode 0)
Current function value: 135.4626147669514
Iterations: 19
Function evaluations: 141
Gradient evaluations: 19
Iteration: 1, Func. Count: 9, Neg. LLF: 141.49194073341087
Iteration: 2, Func. Count: 19, Neg. LLF: 144.74440365476698
Iteration: 3, Func. Count: 28, Neg. LLF: 137.5119396042038
Iteration: 4, Func. Count: 36, Neg. LLF: 137.7998271385282
Iteration: 5, Func. Count: 45, Neg. LLF: 136.9517545775348
Iteration: 6, Func. Count: 53, Neg. LLF: 135.5343527667592
Iteration: 7, Func. Count: 61, Neg. LLF: 135.80241428190038
Iteration: 8, Func. Count: 70, Neg. LLF: 135.00560514968018
Iteration: 9, Func. Count: 78, Neg. LLF: 134.86478885332787
Iteration: 10, Func. Count: 86, Neg. LLF: 134.86986582745772
Iteration: 11, Func. Count: 95, Neg. LLF: 145.4393965332374
Iteration: 12, Func. Count: 104, Neg. LLF: 134.41910773855687
Iteration: 13, Func. Count: 112, Neg. LLF: 134.24434564444914
Iteration: 14, Func. Count: 120, Neg. LLF: 136.02643089617132
Iteration: 15, Func. Count: 129, Neg. LLF: 134.22498757862203
Iteration: 16, Func. Count: 138, Neg. LLF: 134.21143511648776
Iteration: 17, Func. Count: 146, Neg. LLF: 134.21128140569346
Iteration: 18, Func. Count: 153, Neg. LLF: 134.2112814058325
Optimization terminated successfully (Exit mode 0)
Current function value: 134.21128140569346
Iterations: 18
Function evaluations: 153
Gradient evaluations: 18
Iteration: 1, Func. Count: 10, Neg. LLF: 11620644.050241193
Iteration: 2, Func. Count: 20, Neg. LLF: 140.65947692452417
Iteration: 3, Func. Count: 30, Neg. LLF: 143.93022161046494
Iteration: 4, Func. Count: 40, Neg. LLF: 135.85355469432494
Iteration: 5, Func. Count: 49, Neg. LLF: 134.95918651249946
Iteration: 6, Func. Count: 59, Neg. LLF: 135.98054451982992
Iteration: 7, Func. Count: 70, Neg. LLF: 134.92292155895834
Iteration: 8, Func. Count: 79, Neg. LLF: 134.6734102877902
Iteration: 9, Func. Count: 88, Neg. LLF: 134.52482216775147
Iteration: 10, Func. Count: 97, Neg. LLF: 134.72293393705996
Iteration: 11, Func. Count: 107, Neg. LLF: 134.15366656613134
Iteration: 12, Func. Count: 116, Neg. LLF: 134.13610154561312
Iteration: 13, Func. Count: 125, Neg. LLF: 134.13174788178807
Iteration: 14, Func. Count: 134, Neg. LLF: 134.13148851349573
Iteration: 15, Func. Count: 143, Neg. LLF: 134.13145155065138
Iteration: 16, Func. Count: 152, Neg. LLF: 134.13145079556662
Optimization terminated successfully (Exit mode 0)
Current function value: 134.13145079556662
Iterations: 16
Function evaluations: 152
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 11683464.87261867
Iteration: 2, Func. Count: 22, Neg. LLF: 139.2392067874165
Iteration: 3, Func. Count: 33, Neg. LLF: 144.45417860714562
Iteration: 4, Func. Count: 44, Neg. LLF: 136.84144700192326
Iteration: 5, Func. Count: 55, Neg. LLF: 135.74933568069926
Iteration: 6, Func. Count: 66, Neg. LLF: 161.72394139834535
Iteration: 7, Func. Count: 77, Neg. LLF: 134.570031743802
Iteration: 8, Func. Count: 87, Neg. LLF: 134.6501052342716
Iteration: 9, Func. Count: 98, Neg. LLF: 135.7836200237345
Iteration: 10, Func. Count: 111, Neg. LLF: 134.43516624041104
Iteration: 11, Func. Count: 122, Neg. LLF: 134.13885864322782
Iteration: 12, Func. Count: 132, Neg. LLF: 134.1321238696315
Iteration: 13, Func. Count: 142, Neg. LLF: 134.13147887825988
Iteration: 14, Func. Count: 152, Neg. LLF: 134.13145197424717
Iteration: 15, Func. Count: 162, Neg. LLF: 134.13145078045739
Iteration: 16, Func. Count: 171, Neg. LLF: 134.13145078971763
Optimization terminated successfully (Exit mode 0)
Current function value: 134.13145078045739
Iterations: 16
Function evaluations: 171
Gradient evaluations: 16
Iteration: 1, Func. Count: 8, Neg. LLF: 141.63445931926313
Iteration: 2, Func. Count: 16, Neg. LLF: 142.20903752240642
Iteration: 3, Func. Count: 24, Neg. LLF: 137.64145967600896
Iteration: 4, Func. Count: 32, Neg. LLF: 137.19489072975645
Iteration: 5, Func. Count: 39, Neg. LLF: 154.91872296609768
Iteration: 6, Func. Count: 48, Neg. LLF: 137.15992876855708
Iteration: 7, Func. Count: 55, Neg. LLF: 137.15038336015746
Iteration: 8, Func. Count: 62, Neg. LLF: 137.14861770495673
Iteration: 9, Func. Count: 69, Neg. LLF: 137.14780492555974
Iteration: 10, Func. Count: 76, Neg. LLF: 137.1471054017103
Iteration: 11, Func. Count: 83, Neg. LLF: 137.14694557946544
Iteration: 12, Func. Count: 90, Neg. LLF: 137.14692912712354
Iteration: 13, Func. Count: 97, Neg. LLF: 137.14692750979788
Iteration: 14, Func. Count: 103, Neg. LLF: 137.14692750980177
Optimization terminated successfully (Exit mode 0)
Current function value: 137.14692750979788
Iterations: 14
Function evaluations: 103
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 140.14912578622136
Iteration: 2, Func. Count: 19, Neg. LLF: 144.6822621924436
Iteration: 3, Func. Count: 28, Neg. LLF: 138.8891452646721
Iteration: 4, Func. Count: 36, Neg. LLF: 138.89078263199127
Iteration: 5, Func. Count: 45, Neg. LLF: 138.73953951238602
Iteration: 6, Func. Count: 53, Neg. LLF: 138.36361850193708
Iteration: 7, Func. Count: 61, Neg. LLF: 137.6219650815658
Iteration: 8, Func. Count: 69, Neg. LLF: 139.63549317644444
Iteration: 9, Func. Count: 78, Neg. LLF: 138.17824407551043
Iteration: 10, Func. Count: 87, Neg. LLF: 137.47441589721373
Iteration: 11, Func. Count: 96, Neg. LLF: 136.67533068443413
Iteration: 12, Func. Count: 104, Neg. LLF: 135.6572211691632
Iteration: 13, Func. Count: 112, Neg. LLF: 136.86934905269393
Iteration: 14, Func. Count: 121, Neg. LLF: 135.94338881571466
Iteration: 15, Func. Count: 130, Neg. LLF: 135.54785381280254
Iteration: 16, Func. Count: 139, Neg. LLF: 135.46594231126502
Iteration: 17, Func. Count: 147, Neg. LLF: 135.4620477330863
Iteration: 18, Func. Count: 155, Neg. LLF: 135.45765220433572
Iteration: 19, Func. Count: 163, Neg. LLF: 135.4569240985502
Iteration: 20, Func. Count: 171, Neg. LLF: 135.45691120543182
Iteration: 21, Func. Count: 178, Neg. LLF: 135.45691120548327
Optimization terminated successfully (Exit mode 0)
Current function value: 135.45691120543182
Iterations: 21
Function evaluations: 178
Gradient evaluations: 21
Iteration: 1, Func. Count: 10, Neg. LLF: 141.4420448145325
Iteration: 2, Func. Count: 21, Neg. LLF: 144.7723809184845
Iteration: 3, Func. Count: 31, Neg. LLF: 137.49329145242837
Iteration: 4, Func. Count: 40, Neg. LLF: 137.85612558159227
Iteration: 5, Func. Count: 50, Neg. LLF: 136.9638033126838
Iteration: 6, Func. Count: 59, Neg. LLF: 135.5726738611809
Iteration: 7, Func. Count: 68, Neg. LLF: 136.00429699313926
Iteration: 8, Func. Count: 78, Neg. LLF: 135.00831490826099
Iteration: 9, Func. Count: 87, Neg. LLF: 134.8684468036683
Iteration: 10, Func. Count: 96, Neg. LLF: 135.2458385412367
Iteration: 11, Func. Count: 106, Neg. LLF: 150.83690630663713
Iteration: 12, Func. Count: 116, Neg. LLF: 136.75829674926868
Iteration: 13, Func. Count: 126, Neg. LLF: 134.93096544415704
Iteration: 14, Func. Count: 136, Neg. LLF: 134.2561785022079
Iteration: 15, Func. Count: 145, Neg. LLF: 134.24740962334133
Iteration: 16, Func. Count: 155, Neg. LLF: 134.45443173182142
Iteration: 17, Func. Count: 165, Neg. LLF: 134.2113844016604
Iteration: 18, Func. Count: 174, Neg. LLF: 134.21143383175183
Iteration: 19, Func. Count: 184, Neg. LLF: 134.21128106154327
Iteration: 20, Func. Count: 192, Neg. LLF: 134.21128106178787
Optimization terminated successfully (Exit mode 0)
Current function value: 134.21128106154327
Iterations: 20
Function evaluations: 192
Gradient evaluations: 20
Iteration: 1, Func. Count: 11, Neg. LLF: 7304330.127644516
Iteration: 2, Func. Count: 22, Neg. LLF: 135.97061634000013
Iteration: 3, Func. Count: 32, Neg. LLF: 143.48058057246467
Iteration: 4, Func. Count: 43, Neg. LLF: 231.19380661452942
Iteration: 5, Func. Count: 54, Neg. LLF: 139.33013278835642
Iteration: 6, Func. Count: 65, Neg. LLF: 138.0056806272928
Iteration: 7, Func. Count: 76, Neg. LLF: 136.532685252731
Iteration: 8, Func. Count: 87, Neg. LLF: 134.33623274111966
Iteration: 9, Func. Count: 98, Neg. LLF: 134.1740039484243
Iteration: 10, Func. Count: 108, Neg. LLF: 134.17889608678706
Iteration: 11, Func. Count: 119, Neg. LLF: 134.13436197885872
Iteration: 12, Func. Count: 129, Neg. LLF: 134.13152730483066
Iteration: 13, Func. Count: 139, Neg. LLF: 134.1314530337478
Iteration: 14, Func. Count: 149, Neg. LLF: 134.13145161110774
Iteration: 15, Func. Count: 159, Neg. LLF: 134.13145073352305
Optimization terminated successfully (Exit mode 0)
Current function value: 134.13145073352305
Iterations: 15
Function evaluations: 159
Gradient evaluations: 15
Iteration: 1, Func. Count: 12, Neg. LLF: 11680764.80124417
Iteration: 2, Func. Count: 24, Neg. LLF: 139.29971044343145
Iteration: 3, Func. Count: 36, Neg. LLF: 144.0415900465076
Iteration: 4, Func. Count: 48, Neg. LLF: 136.47334898739427
Iteration: 5, Func. Count: 60, Neg. LLF: 135.4343468959915
Iteration: 6, Func. Count: 72, Neg. LLF: 147.38620824263072
Iteration: 7, Func. Count: 84, Neg. LLF: 134.55172867180156
Iteration: 8, Func. Count: 95, Neg. LLF: 135.0771891242718
Iteration: 9, Func. Count: 107, Neg. LLF: 135.75990831305216
Iteration: 10, Func. Count: 119, Neg. LLF: 134.24692627676458
Iteration: 11, Func. Count: 131, Neg. LLF: 134.1347819460072
Iteration: 12, Func. Count: 142, Neg. LLF: 134.13174771875163
Iteration: 13, Func. Count: 153, Neg. LLF: 134.1314521493775
Iteration: 14, Func. Count: 164, Neg. LLF: 134.13145077223282
Iteration: 15, Func. Count: 174, Neg. LLF: 134.13145078135037
Optimization terminated successfully (Exit mode 0)
Current function value: 134.13145077223282
Iterations: 15
Function evaluations: 174
Gradient evaluations: 15
Iteration: 1, Func. Count: 9, Neg. LLF: 140.7995525066832
Iteration: 2, Func. Count: 18, Neg. LLF: 142.76457726510617
Iteration: 3, Func. Count: 27, Neg. LLF: 137.57499817937622
Iteration: 4, Func. Count: 35, Neg. LLF: 137.24120184399098
Iteration: 5, Func. Count: 43, Neg. LLF: 138.05377380585992
Iteration: 6, Func. Count: 53, Neg. LLF: 137.18488294035367
Iteration: 7, Func. Count: 61, Neg. LLF: 137.1578416816026
Iteration: 8, Func. Count: 69, Neg. LLF: 137.15049802138412
Iteration: 9, Func. Count: 77, Neg. LLF: 137.14912231145618
Iteration: 10, Func. Count: 85, Neg. LLF: 137.14744853117924
Iteration: 11, Func. Count: 93, Neg. LLF: 137.1470253517231
Iteration: 12, Func. Count: 101, Neg. LLF: 137.14693125132573
Iteration: 13, Func. Count: 109, Neg. LLF: 137.14692746145116
Iteration: 14, Func. Count: 116, Neg. LLF: 137.14692767663718
Optimization terminated successfully (Exit mode 0)
Current function value: 137.14692746145116
Iterations: 14
Function evaluations: 116
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 140.18554415103137
Iteration: 2, Func. Count: 21, Neg. LLF: 144.6418246668148
Iteration: 3, Func. Count: 31, Neg. LLF: 138.88940716204561
Iteration: 4, Func. Count: 40, Neg. LLF: 138.86456791684788
Iteration: 5, Func. Count: 49, Neg. LLF: 138.7731676940355
Iteration: 6, Func. Count: 58, Neg. LLF: 138.42072221786572
Iteration: 7, Func. Count: 67, Neg. LLF: 138.067688052034
Iteration: 8, Func. Count: 76, Neg. LLF: 138.2061887580887
Iteration: 9, Func. Count: 86, Neg. LLF: 137.31869594290987
Iteration: 10, Func. Count: 95, Neg. LLF: 136.134168263306
Iteration: 11, Func. Count: 104, Neg. LLF: 141.30597133876748
Iteration: 12, Func. Count: 114, Neg. LLF: 138.21534158795546
Iteration: 13, Func. Count: 124, Neg. LLF: 150.35396829842347
Iteration: 14, Func. Count: 134, Neg. LLF: 135.67574794434654
Iteration: 15, Func. Count: 144, Neg. LLF: 135.50935636650155
Iteration: 16, Func. Count: 154, Neg. LLF: 135.45819287494402
Iteration: 17, Func. Count: 164, Neg. LLF: 135.4572599853391
Iteration: 18, Func. Count: 174, Neg. LLF: 135.45691120358342
Iteration: 19, Func. Count: 182, Neg. LLF: 135.4569112031887
Optimization terminated successfully (Exit mode 0)
Current function value: 135.45691120358342
Iterations: 19
Function evaluations: 182
Gradient evaluations: 19
Iteration: 1, Func. Count: 11, Neg. LLF: 141.42598841935472
Iteration: 2, Func. Count: 23, Neg. LLF: 144.76158776361802
Iteration: 3, Func. Count: 34, Neg. LLF: 137.48675204644795
Iteration: 4, Func. Count: 44, Neg. LLF: 137.69234907334663
Iteration: 5, Func. Count: 55, Neg. LLF: 136.9257633800651
Iteration: 6, Func. Count: 65, Neg. LLF: 135.50158689179736
Iteration: 7, Func. Count: 75, Neg. LLF: 135.86409825730235
Iteration: 8, Func. Count: 86, Neg. LLF: 134.99467407616945
Iteration: 9, Func. Count: 96, Neg. LLF: 134.86178056036817
Iteration: 10, Func. Count: 106, Neg. LLF: 135.91474221366968
Iteration: 11, Func. Count: 117, Neg. LLF: 161.39302303618865
Iteration: 12, Func. Count: 128, Neg. LLF: 135.2434343269216
Iteration: 13, Func. Count: 139, Neg. LLF: 134.7064730341947
Iteration: 14, Func. Count: 150, Neg. LLF: 134.3036993483676
Iteration: 15, Func. Count: 160, Neg. LLF: 134.21680190905192
Iteration: 16, Func. Count: 170, Neg. LLF: 134.37737734224012
Iteration: 17, Func. Count: 181, Neg. LLF: 134.18766029520543
Iteration: 18, Func. Count: 191, Neg. LLF: 134.18662453427672
Iteration: 19, Func. Count: 201, Neg. LLF: 134.1863744375048
Iteration: 20, Func. Count: 211, Neg. LLF: 134.18636330250348
Iteration: 21, Func. Count: 220, Neg. LLF: 134.1863633024953
Optimization terminated successfully (Exit mode 0)
Current function value: 134.18636330250348
Iterations: 21
Function evaluations: 220
Gradient evaluations: 21
Iteration: 1, Func. Count: 12, Neg. LLF: 7299542.543249394
Iteration: 2, Func. Count: 24, Neg. LLF: 135.34061177738636
Iteration: 3, Func. Count: 35, Neg. LLF: 136.5175070252846
Iteration: 4, Func. Count: 47, Neg. LLF: 161.10537699177107
Iteration: 5, Func. Count: 60, Neg. LLF: 135.63409309760962
Iteration: 6, Func. Count: 72, Neg. LLF: 134.49277073626982
Iteration: 7, Func. Count: 84, Neg. LLF: 134.24901154096068
Iteration: 8, Func. Count: 95, Neg. LLF: 134.1514382742636
Iteration: 9, Func. Count: 106, Neg. LLF: 134.16213530506664
Iteration: 10, Func. Count: 118, Neg. LLF: 134.1317201815502
Iteration: 11, Func. Count: 129, Neg. LLF: 134.13153782495127
Iteration: 12, Func. Count: 140, Neg. LLF: 134.1314507682062
Iteration: 13, Func. Count: 150, Neg. LLF: 134.13145076815138
Optimization terminated successfully (Exit mode 0)
Current function value: 134.1314507682062
Iterations: 13
Function evaluations: 150
Gradient evaluations: 13
Iteration: 1, Func. Count: 13, Neg. LLF: 11688855.276994366
Iteration: 2, Func. Count: 26, Neg. LLF: 139.41769050001258
Iteration: 3, Func. Count: 39, Neg. LLF: 144.1047793950576
Iteration: 4, Func. Count: 52, Neg. LLF: 136.53627136301185
Iteration: 5, Func. Count: 65, Neg. LLF: 135.45433953982064
Iteration: 6, Func. Count: 78, Neg. LLF: 146.80137436885016
Iteration: 7, Func. Count: 91, Neg. LLF: 134.51669638254475
Iteration: 8, Func. Count: 103, Neg. LLF: 135.01666198585647
Iteration: 9, Func. Count: 116, Neg. LLF: 135.5448600121584
Iteration: 10, Func. Count: 129, Neg. LLF: 134.2630485256189
Iteration: 11, Func. Count: 142, Neg. LLF: 134.13439781400214
Iteration: 12, Func. Count: 154, Neg. LLF: 134.1316853778491
Iteration: 13, Func. Count: 166, Neg. LLF: 134.13145144761663
Iteration: 14, Func. Count: 178, Neg. LLF: 134.13145080772503
Optimization terminated successfully (Exit mode 0)
Current function value: 134.13145080772503
Iterations: 14
Function evaluations: 178
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 139.61993616324108
Iteration: 2, Func. Count: 19, Neg. LLF: 145.06984315377815
Iteration: 3, Func. Count: 29, Neg. LLF: 137.34163710746225
Iteration: 4, Func. Count: 38, Neg. LLF: 138.88507504804454
Iteration: 5, Func. Count: 49, Neg. LLF: 137.2813260787789
Iteration: 6, Func. Count: 59, Neg. LLF: 137.1760511420895
Iteration: 7, Func. Count: 69, Neg. LLF: 137.15666937757942
Iteration: 8, Func. Count: 78, Neg. LLF: 137.14870294303415
Iteration: 9, Func. Count: 87, Neg. LLF: 137.14736347634835
Iteration: 10, Func. Count: 96, Neg. LLF: 137.14695756104288
Iteration: 11, Func. Count: 105, Neg. LLF: 137.14692743500083
Iteration: 12, Func. Count: 113, Neg. LLF: 137.14692769477563
Optimization terminated successfully (Exit mode 0)
Current function value: 137.14692743500083
Iterations: 12
Function evaluations: 113
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 140.2146421078519
Iteration: 2, Func. Count: 23, Neg. LLF: 144.62334609488613
Iteration: 3, Func. Count: 34, Neg. LLF: 138.88927934407144
Iteration: 4, Func. Count: 44, Neg. LLF: 138.84830341087078
Iteration: 5, Func. Count: 54, Neg. LLF: 139.0410694531788
Iteration: 6, Func. Count: 65, Neg. LLF: 138.4114270727553
Iteration: 7, Func. Count: 75, Neg. LLF: 137.58688397587068
Iteration: 8, Func. Count: 85, Neg. LLF: 139.4625586392778
Iteration: 9, Func. Count: 96, Neg. LLF: 138.14686519075403
Iteration: 10, Func. Count: 107, Neg. LLF: 137.29911070641435
Iteration: 11, Func. Count: 118, Neg. LLF: 136.48082237593744
Iteration: 12, Func. Count: 128, Neg. LLF: 137.24175124434475
Iteration: 13, Func. Count: 139, Neg. LLF: 135.6536223168438
Iteration: 14, Func. Count: 149, Neg. LLF: 145.3537058723295
Iteration: 15, Func. Count: 160, Neg. LLF: 135.9884575518406
Iteration: 16, Func. Count: 171, Neg. LLF: 163.73950285767728
Iteration: 17, Func. Count: 182, Neg. LLF: 135.46650792109867
Iteration: 18, Func. Count: 192, Neg. LLF: 135.46582660212414
Iteration: 19, Func. Count: 203, Neg. LLF: 135.45698684114038
Iteration: 20, Func. Count: 213, Neg. LLF: 135.4569121883296
Iteration: 21, Func. Count: 223, Neg. LLF: 135.45691111102127
Iteration: 22, Func. Count: 232, Neg. LLF: 135.45691111120496
Optimization terminated successfully (Exit mode 0)
Current function value: 135.45691111102127
Iterations: 22
Function evaluations: 232
Gradient evaluations: 22
Iteration: 1, Func. Count: 12, Neg. LLF: 141.45130416417578
Iteration: 2, Func. Count: 25, Neg. LLF: 144.74379760252228
Iteration: 3, Func. Count: 37, Neg. LLF: 137.4954113172799
Iteration: 4, Func. Count: 48, Neg. LLF: 137.5692792306567
Iteration: 5, Func. Count: 60, Neg. LLF: 136.89346039962766
Iteration: 6, Func. Count: 71, Neg. LLF: 135.43553018760423
Iteration: 7, Func. Count: 82, Neg. LLF: 135.5869751407453
Iteration: 8, Func. Count: 94, Neg. LLF: 134.97175413740362
Iteration: 9, Func. Count: 105, Neg. LLF: 134.8279841165602
Iteration: 10, Func. Count: 116, Neg. LLF: 140.25091255788922
Iteration: 11, Func. Count: 128, Neg. LLF: 145.77225258816424
Iteration: 12, Func. Count: 140, Neg. LLF: 136.22566661639294
Iteration: 13, Func. Count: 152, Neg. LLF: 135.05786549249459
Iteration: 14, Func. Count: 164, Neg. LLF: 134.4793726517567
Iteration: 15, Func. Count: 176, Neg. LLF: 134.57462389550574
Iteration: 16, Func. Count: 188, Neg. LLF: 134.3009663178119
Iteration: 17, Func. Count: 200, Neg. LLF: 134.23393993434345
Iteration: 18, Func. Count: 211, Neg. LLF: 134.1922600059972
Iteration: 19, Func. Count: 222, Neg. LLF: 134.1878055160973
Iteration: 20, Func. Count: 233, Neg. LLF: 134.1867276021851
Iteration: 21, Func. Count: 244, Neg. LLF: 134.1863640956905
Iteration: 22, Func. Count: 255, Neg. LLF: 134.18636329125087
Optimization terminated successfully (Exit mode 0)
Current function value: 134.18636329125087
Iterations: 22
Function evaluations: 255
Gradient evaluations: 22
Iteration: 1, Func. Count: 13, Neg. LLF: 7297324.723428654
Iteration: 2, Func. Count: 26, Neg. LLF: 135.37486770112963
Iteration: 3, Func. Count: 38, Neg. LLF: 136.15537205932668
Iteration: 4, Func. Count: 51, Neg. LLF: 158.91207310769843
Iteration: 5, Func. Count: 65, Neg. LLF: 135.7371601489306
Iteration: 6, Func. Count: 78, Neg. LLF: 134.31249064942554
Iteration: 7, Func. Count: 90, Neg. LLF: 134.23883497353933
Iteration: 8, Func. Count: 102, Neg. LLF: 134.32212860956767
Iteration: 9, Func. Count: 115, Neg. LLF: 134.1398903278912
Iteration: 10, Func. Count: 127, Neg. LLF: 134.14516442982438
Iteration: 11, Func. Count: 140, Neg. LLF: 134.1315177447165
Iteration: 12, Func. Count: 152, Neg. LLF: 134.131450772536
Iteration: 13, Func. Count: 163, Neg. LLF: 134.13145077235743
Optimization terminated successfully (Exit mode 0)
Current function value: 134.131450772536
Iterations: 13
Function evaluations: 163
Gradient evaluations: 13
Iteration: 1, Func. Count: 14, Neg. LLF: 11693494.556813456
Iteration: 2, Func. Count: 28, Neg. LLF: 139.50017311585847
Iteration: 3, Func. Count: 42, Neg. LLF: 144.07507297871234
Iteration: 4, Func. Count: 56, Neg. LLF: 136.5421388843831
Iteration: 5, Func. Count: 70, Neg. LLF: 135.438891302008
Iteration: 6, Func. Count: 84, Neg. LLF: 146.1696417475413
Iteration: 7, Func. Count: 98, Neg. LLF: 134.50413461393597
Iteration: 8, Func. Count: 111, Neg. LLF: 135.02514111129904
Iteration: 9, Func. Count: 125, Neg. LLF: 135.61314659882052
Iteration: 10, Func. Count: 139, Neg. LLF: 134.28741744875066
Iteration: 11, Func. Count: 153, Neg. LLF: 134.13499370060893
Iteration: 12, Func. Count: 166, Neg. LLF: 134.13171304994484
Iteration: 13, Func. Count: 179, Neg. LLF: 134.13145794120513
Iteration: 14, Func. Count: 192, Neg. LLF: 134.1314515448342
Iteration: 15, Func. Count: 205, Neg. LLF: 134.1314507723035
Optimization terminated successfully (Exit mode 0)
Current function value: 134.1314507723035
Iterations: 15
Function evaluations: 205
Gradient evaluations: 15
Iteration: 1, Func. Count: 7, Neg. LLF: 139.1329400488469
Iteration: 2, Func. Count: 13, Neg. LLF: 142.25823342724186
Iteration: 3, Func. Count: 20, Neg. LLF: 138.79599337447792
Iteration: 4, Func. Count: 26, Neg. LLF: 138.73135147254615
Iteration: 5, Func. Count: 32, Neg. LLF: 138.68228747863938
Iteration: 6, Func. Count: 38, Neg. LLF: 138.99027580597078
Iteration: 7, Func. Count: 46, Neg. LLF: 138.68183151480167
Iteration: 8, Func. Count: 52, Neg. LLF: 138.6813116885974
Iteration: 9, Func. Count: 58, Neg. LLF: 138.680898607249
Iteration: 10, Func. Count: 64, Neg. LLF: 138.6808326231428
Iteration: 11, Func. Count: 70, Neg. LLF: 138.68082801482157
Iteration: 12, Func. Count: 75, Neg. LLF: 138.68082811670138
Optimization terminated successfully (Exit mode 0)
Current function value: 138.68082801482157
Iterations: 12
Function evaluations: 75
Gradient evaluations: 12
Iteration: 1, Func. Count: 8, Neg. LLF: 727.032144978283
Iteration: 2, Func. Count: 17, Neg. LLF: 139.39150647060825
Iteration: 3, Func. Count: 24, Neg. LLF: 138.2691515550007
Iteration: 4, Func. Count: 31, Neg. LLF: 149.3244130735373
Iteration: 5, Func. Count: 39, Neg. LLF: 137.83771378163573
Iteration: 6, Func. Count: 46, Neg. LLF: 137.79406274606268
Iteration: 7, Func. Count: 53, Neg. LLF: 137.78159072014446
Iteration: 8, Func. Count: 60, Neg. LLF: 137.7814969609702
Iteration: 9, Func. Count: 67, Neg. LLF: 140.02080980281417
Optimization terminated successfully (Exit mode 0)
Current function value: 137.78149661497704
Iterations: 10
Function evaluations: 71
Gradient evaluations: 9
Iteration: 1, Func. Count: 9, Neg. LLF: 22891461.54105222
Iteration: 2, Func. Count: 19, Neg. LLF: 138.6107922459343
Iteration: 3, Func. Count: 27, Neg. LLF: 137.93602099105198
Iteration: 4, Func. Count: 35, Neg. LLF: 138.80682689061987
Iteration: 5, Func. Count: 44, Neg. LLF: 137.77336669546608
Iteration: 6, Func. Count: 52, Neg. LLF: 137.7732971279611
Iteration: 7, Func. Count: 60, Neg. LLF: 137.77329128432206
Iteration: 8, Func. Count: 67, Neg. LLF: 137.77329128428505
Optimization terminated successfully (Exit mode 0)
Current function value: 137.77329128432206
Iterations: 8
Function evaluations: 67
Gradient evaluations: 8
Iteration: 1, Func. Count: 10, Neg. LLF: 22866244.593202766
Iteration: 2, Func. Count: 21, Neg. LLF: 138.49751138526398
Iteration: 3, Func. Count: 30, Neg. LLF: 137.90622878228007
Iteration: 4, Func. Count: 39, Neg. LLF: 137.89802049232867
Iteration: 5, Func. Count: 49, Neg. LLF: 137.85666448517287
Iteration: 6, Func. Count: 58, Neg. LLF: 137.84874980681485
Iteration: 7, Func. Count: 67, Neg. LLF: 137.84725212898874
Iteration: 8, Func. Count: 76, Neg. LLF: 137.83137101800693
Iteration: 9, Func. Count: 85, Neg. LLF: 137.81194945234463
Iteration: 10, Func. Count: 94, Neg. LLF: 137.8093552708405
Iteration: 11, Func. Count: 103, Neg. LLF: 137.80688193503153
Iteration: 12, Func. Count: 112, Neg. LLF: 137.80567174551246
Iteration: 13, Func. Count: 121, Neg. LLF: 137.80544062656193
Iteration: 14, Func. Count: 130, Neg. LLF: 137.80346143588284
Iteration: 15, Func. Count: 139, Neg. LLF: 137.7830781232197
Iteration: 16, Func. Count: 148, Neg. LLF: 22790664.947572168
Iteration: 17, Func. Count: 161, Neg. LLF: 137.80079394955567
Iteration: 18, Func. Count: 171, Neg. LLF: 137.78142826135624
Iteration: 19, Func. Count: 179, Neg. LLF: 137.78142826504865
Optimization terminated successfully (Exit mode 0)
Current function value: 137.78142826135624
Iterations: 20
Function evaluations: 179
Gradient evaluations: 19
Iteration: 1, Func. Count: 11, Neg. LLF: 22848608.957025565
Iteration: 2, Func. Count: 23, Neg. LLF: 138.33670124754892
Iteration: 3, Func. Count: 33, Neg. LLF: 137.47272962349183
Iteration: 4, Func. Count: 43, Neg. LLF: 138.2581731333859
Iteration: 5, Func. Count: 54, Neg. LLF: 136.22766634063802
Iteration: 6, Func. Count: 64, Neg. LLF: 136.04730979956057
Iteration: 7, Func. Count: 74, Neg. LLF: 135.5694196453166
Iteration: 8, Func. Count: 84, Neg. LLF: 135.17295798808334
Iteration: 9, Func. Count: 94, Neg. LLF: 134.97742986177897
Iteration: 10, Func. Count: 104, Neg. LLF: 134.8700209907019
Iteration: 11, Func. Count: 114, Neg. LLF: 134.8197325090868
Iteration: 12, Func. Count: 124, Neg. LLF: 134.80568348213617
Iteration: 13, Func. Count: 134, Neg. LLF: 134.79459808909064
Iteration: 14, Func. Count: 144, Neg. LLF: 134.79405296069913
Iteration: 15, Func. Count: 154, Neg. LLF: 134.79363408658807
Iteration: 16, Func. Count: 164, Neg. LLF: 134.79348502356385
Iteration: 17, Func. Count: 174, Neg. LLF: 134.79344885014592
Iteration: 18, Func. Count: 184, Neg. LLF: 134.7934464948558
Iteration: 19, Func. Count: 194, Neg. LLF: 135.01361823823086
Optimization terminated successfully (Exit mode 0)
Current function value: 134.79344641164636
Iterations: 20
Function evaluations: 197
Gradient evaluations: 19
Iteration: 1, Func. Count: 8, Neg. LLF: 139.77298827421757
Iteration: 2, Func. Count: 15, Neg. LLF: 142.42950729449035
Iteration: 3, Func. Count: 23, Neg. LLF: 139.9199386685208
Iteration: 4, Func. Count: 31, Neg. LLF: 138.840074809984
Iteration: 5, Func. Count: 38, Neg. LLF: 138.58450014779245
Iteration: 6, Func. Count: 45, Neg. LLF: 138.4970109840909
Iteration: 7, Func. Count: 52, Neg. LLF: 139.28623818681757
Iteration: 8, Func. Count: 61, Neg. LLF: 138.4647267118062
Iteration: 9, Func. Count: 68, Neg. LLF: 138.45457171480172
Iteration: 10, Func. Count: 75, Neg. LLF: 138.45418668943478
Iteration: 11, Func. Count: 82, Neg. LLF: 138.45389833810745
Iteration: 12, Func. Count: 89, Neg. LLF: 138.45377975639136
Iteration: 13, Func. Count: 96, Neg. LLF: 138.453767590296
Iteration: 14, Func. Count: 102, Neg. LLF: 138.45376758958298
Optimization terminated successfully (Exit mode 0)
Current function value: 138.453767590296
Iterations: 14
Function evaluations: 102
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 141.7280846442614
Iteration: 2, Func. Count: 19, Neg. LLF: 144.35476717326773
Iteration: 3, Func. Count: 28, Neg. LLF: 138.96861530954396
Iteration: 4, Func. Count: 36, Neg. LLF: 138.95565690750806
Iteration: 5, Func. Count: 44, Neg. LLF: 138.93790958277765
Iteration: 6, Func. Count: 52, Neg. LLF: 138.7972303472912
Iteration: 7, Func. Count: 60, Neg. LLF: 137.41449431475598
Iteration: 8, Func. Count: 68, Neg. LLF: 138.53686736504727
Iteration: 9, Func. Count: 78, Neg. LLF: 136.4410510559659
Iteration: 10, Func. Count: 86, Neg. LLF: 138.77654180848225
Iteration: 11, Func. Count: 95, Neg. LLF: 136.08903502661693
Iteration: 12, Func. Count: 104, Neg. LLF: 135.52694961984062
Iteration: 13, Func. Count: 112, Neg. LLF: 135.4806833500082
Iteration: 14, Func. Count: 120, Neg. LLF: 135.4687542280409
Iteration: 15, Func. Count: 128, Neg. LLF: 135.46361411660206
Iteration: 16, Func. Count: 136, Neg. LLF: 135.4626324322963
Iteration: 17, Func. Count: 144, Neg. LLF: 135.462615668177
Iteration: 18, Func. Count: 152, Neg. LLF: 135.46261485610873
Optimization terminated successfully (Exit mode 0)
Current function value: 135.46261485610873
Iterations: 18
Function evaluations: 152
Gradient evaluations: 18
Iteration: 1, Func. Count: 10, Neg. LLF: 141.4656935818661
Iteration: 2, Func. Count: 21, Neg. LLF: 144.76568864740182
Iteration: 3, Func. Count: 31, Neg. LLF: 137.50330929282936
Iteration: 4, Func. Count: 40, Neg. LLF: 137.69744277590925
Iteration: 5, Func. Count: 50, Neg. LLF: 136.93835980236065
Iteration: 6, Func. Count: 59, Neg. LLF: 135.49805092355825
Iteration: 7, Func. Count: 68, Neg. LLF: 135.92543758116
Iteration: 8, Func. Count: 78, Neg. LLF: 134.9931596216585
Iteration: 9, Func. Count: 87, Neg. LLF: 134.80610500918826
Iteration: 10, Func. Count: 96, Neg. LLF: 137.5824756541858
Iteration: 11, Func. Count: 106, Neg. LLF: 150.33760956995695
Iteration: 12, Func. Count: 116, Neg. LLF: 137.32564083941958
Iteration: 13, Func. Count: 126, Neg. LLF: 134.7842748111237
Iteration: 14, Func. Count: 136, Neg. LLF: 134.23404300114345
Iteration: 15, Func. Count: 145, Neg. LLF: 134.83054744107002
Iteration: 16, Func. Count: 155, Neg. LLF: 134.23096291707745
Iteration: 17, Func. Count: 165, Neg. LLF: 134.15580484139966
Iteration: 18, Func. Count: 174, Neg. LLF: 134.1482703672792
Iteration: 19, Func. Count: 183, Neg. LLF: 134.1481955625313
Iteration: 20, Func. Count: 192, Neg. LLF: 134.14819453020945
Iteration: 21, Func. Count: 200, Neg. LLF: 134.14819453004273
Optimization terminated successfully (Exit mode 0)
Current function value: 134.14819453020945
Iterations: 21
Function evaluations: 200
Gradient evaluations: 21
Iteration: 1, Func. Count: 11, Neg. LLF: 11531117.209554385
Iteration: 2, Func. Count: 22, Neg. LLF: 140.77998304861353
Iteration: 3, Func. Count: 33, Neg. LLF: 143.52447425927306
Iteration: 4, Func. Count: 44, Neg. LLF: 135.82851541766183
Iteration: 5, Func. Count: 54, Neg. LLF: 134.95357093084075
Iteration: 6, Func. Count: 65, Neg. LLF: 135.9753824980709
Iteration: 7, Func. Count: 77, Neg. LLF: 134.9126328356378
Iteration: 8, Func. Count: 87, Neg. LLF: 134.72107969680937
Iteration: 9, Func. Count: 97, Neg. LLF: 134.51840618574147
Iteration: 10, Func. Count: 107, Neg. LLF: 134.838168412364
Iteration: 11, Func. Count: 118, Neg. LLF: 134.2124707732369
Iteration: 12, Func. Count: 128, Neg. LLF: 134.1423694982836
Iteration: 13, Func. Count: 138, Neg. LLF: 134.13267844944139
Iteration: 14, Func. Count: 148, Neg. LLF: 134.13164606040934
Iteration: 15, Func. Count: 158, Neg. LLF: 134.1314782815115
Iteration: 16, Func. Count: 168, Neg. LLF: 134.13145163733444
Iteration: 17, Func. Count: 178, Neg. LLF: 134.13145072596942
Optimization terminated successfully (Exit mode 0)
Current function value: 134.13145072596942
Iterations: 17
Function evaluations: 178
Gradient evaluations: 17
Iteration: 1, Func. Count: 12, Neg. LLF: 11698317.756151743
Iteration: 2, Func. Count: 24, Neg. LLF: 139.36157481635817
Iteration: 3, Func. Count: 36, Neg. LLF: 143.8214638784466
Iteration: 4, Func. Count: 48, Neg. LLF: 136.81804528136792
Iteration: 5, Func. Count: 60, Neg. LLF: 135.73194466928518
Iteration: 6, Func. Count: 72, Neg. LLF: 167.9924335385972
Iteration: 7, Func. Count: 84, Neg. LLF: 134.6848236886203
Iteration: 8, Func. Count: 96, Neg. LLF: 134.46170934137658
Iteration: 9, Func. Count: 108, Neg. LLF: 134.26993322958563
Iteration: 10, Func. Count: 120, Neg. LLF: 134.14878647602927
Iteration: 11, Func. Count: 131, Neg. LLF: 134.13212559538212
Iteration: 12, Func. Count: 142, Neg. LLF: 134.13157363940408
Iteration: 13, Func. Count: 153, Neg. LLF: 134.13150164444954
Iteration: 14, Func. Count: 164, Neg. LLF: 134.13145082337374
Iteration: 15, Func. Count: 174, Neg. LLF: 134.13145083264607
Optimization terminated successfully (Exit mode 0)
Current function value: 134.13145082337374
Iterations: 15
Function evaluations: 174
Gradient evaluations: 15
Iteration: 1, Func. Count: 9, Neg. LLF: 138.11134920148174
Iteration: 2, Func. Count: 17, Neg. LLF: 141.89564554006387
Iteration: 3, Func. Count: 26, Neg. LLF: 137.69704417743827
Iteration: 4, Func. Count: 34, Neg. LLF: 140.09678993477561
Iteration: 5, Func. Count: 43, Neg. LLF: 139.55652257467605
Iteration: 6, Func. Count: 52, Neg. LLF: 139.49175771864134
Iteration: 7, Func. Count: 61, Neg. LLF: 137.53458084739424
Iteration: 8, Func. Count: 70, Neg. LLF: 137.15966108436288
Iteration: 9, Func. Count: 78, Neg. LLF: 137.14872657360797
Iteration: 10, Func. Count: 86, Neg. LLF: 137.14747225791126
Iteration: 11, Func. Count: 94, Neg. LLF: 137.14696676739356
Iteration: 12, Func. Count: 102, Neg. LLF: 137.14695299290415
Iteration: 13, Func. Count: 110, Neg. LLF: 137.14694156025425
Iteration: 14, Func. Count: 118, Neg. LLF: 137.14692901479282
Iteration: 15, Func. Count: 126, Neg. LLF: 137.14692711527525
Iteration: 16, Func. Count: 133, Neg. LLF: 137.1469271152787
Optimization terminated successfully (Exit mode 0)
Current function value: 137.14692711527525
Iterations: 16
Function evaluations: 133
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 140.17461691883625
Iteration: 2, Func. Count: 21, Neg. LLF: 144.67796512571095
Iteration: 3, Func. Count: 31, Neg. LLF: 138.8888286887093
Iteration: 4, Func. Count: 40, Neg. LLF: 138.90167981210544
Iteration: 5, Func. Count: 50, Neg. LLF: 138.74378461284192
Iteration: 6, Func. Count: 59, Neg. LLF: 138.37356399851294
Iteration: 7, Func. Count: 68, Neg. LLF: 137.89734535713413
Iteration: 8, Func. Count: 77, Neg. LLF: 140.04311382700428
Iteration: 9, Func. Count: 87, Neg. LLF: 139.3070132809855
Iteration: 10, Func. Count: 97, Neg. LLF: 138.69748485021077
Iteration: 11, Func. Count: 107, Neg. LLF: 136.8093742612821
Iteration: 12, Func. Count: 116, Neg. LLF: 136.74732582972857
Iteration: 13, Func. Count: 125, Neg. LLF: 136.48608377585123
Iteration: 14, Func. Count: 134, Neg. LLF: 136.10214870889254
Iteration: 15, Func. Count: 143, Neg. LLF: 135.57223000593012
Iteration: 16, Func. Count: 152, Neg. LLF: 148.55957928986714
Iteration: 17, Func. Count: 162, Neg. LLF: 135.75172276817284
Iteration: 18, Func. Count: 172, Neg. LLF: 135.52163420464592
Iteration: 19, Func. Count: 182, Neg. LLF: 135.73196821959644
Iteration: 20, Func. Count: 193, Neg. LLF: 135.45729676995737
Iteration: 21, Func. Count: 203, Neg. LLF: 135.45691357362074
Iteration: 22, Func. Count: 212, Neg. LLF: 135.4569110722657
Iteration: 23, Func. Count: 220, Neg. LLF: 135.45691107221484
Optimization terminated successfully (Exit mode 0)
Current function value: 135.4569110722657
Iterations: 23
Function evaluations: 220
Gradient evaluations: 23
Iteration: 1, Func. Count: 11, Neg. LLF: 141.41327354003064
Iteration: 2, Func. Count: 23, Neg. LLF: 144.7946227116585
Iteration: 3, Func. Count: 34, Neg. LLF: 137.4852570114373
Iteration: 4, Func. Count: 44, Neg. LLF: 137.7578305730358
Iteration: 5, Func. Count: 55, Neg. LLF: 136.9515754830605
Iteration: 6, Func. Count: 65, Neg. LLF: 135.52023256292335
Iteration: 7, Func. Count: 75, Neg. LLF: 136.0656984329772
Iteration: 8, Func. Count: 86, Neg. LLF: 134.99764762408122
Iteration: 9, Func. Count: 96, Neg. LLF: 134.80665836679688
Iteration: 10, Func. Count: 106, Neg. LLF: 138.75297754551582
Iteration: 11, Func. Count: 117, Neg. LLF: 144.00026349014746
Iteration: 12, Func. Count: 128, Neg. LLF: 140.48382585961983
Iteration: 13, Func. Count: 139, Neg. LLF: 150.46761923545446
Iteration: 14, Func. Count: 150, Neg. LLF: 134.71735576595424
Iteration: 15, Func. Count: 161, Neg. LLF: 134.35426192961208
Iteration: 16, Func. Count: 172, Neg. LLF: 134.2174482813835
Iteration: 17, Func. Count: 182, Neg. LLF: 134.1570208155274
Iteration: 18, Func. Count: 192, Neg. LLF: 134.14939510538085
Iteration: 19, Func. Count: 202, Neg. LLF: 134.1486607775259
Iteration: 20, Func. Count: 212, Neg. LLF: 134.1483161079812
Iteration: 21, Func. Count: 222, Neg. LLF: 134.14820939015686
Iteration: 22, Func. Count: 232, Neg. LLF: 134.14819462481097
Iteration: 23, Func. Count: 241, Neg. LLF: 134.14819462472764
Optimization terminated successfully (Exit mode 0)
Current function value: 134.14819462481097
Iterations: 23
Function evaluations: 241
Gradient evaluations: 23
Iteration: 1, Func. Count: 12, Neg. LLF: 7283845.585223747
Iteration: 2, Func. Count: 24, Neg. LLF: 136.6660913969977
Iteration: 3, Func. Count: 35, Neg. LLF: 140.2588397106257
Iteration: 4, Func. Count: 47, Neg. LLF: 233.06583130785114
Iteration: 5, Func. Count: 59, Neg. LLF: 137.40480157331433
Iteration: 6, Func. Count: 71, Neg. LLF: 151.63149190457406
Iteration: 7, Func. Count: 83, Neg. LLF: 135.62264308938344
Iteration: 8, Func. Count: 95, Neg. LLF: 134.28239870457855
Iteration: 9, Func. Count: 107, Neg. LLF: 134.16485124539557
Iteration: 10, Func. Count: 118, Neg. LLF: 134.39762719232974
Iteration: 11, Func. Count: 130, Neg. LLF: 134.1435077146335
Iteration: 12, Func. Count: 141, Neg. LLF: 134.13399995844006
Iteration: 13, Func. Count: 152, Neg. LLF: 134.1325231866547
Iteration: 14, Func. Count: 163, Neg. LLF: 134.13175103833635
Iteration: 15, Func. Count: 174, Neg. LLF: 134.13146821770664
Iteration: 16, Func. Count: 185, Neg. LLF: 134.13145083706638
Iteration: 17, Func. Count: 195, Neg. LLF: 134.1314508368248
Optimization terminated successfully (Exit mode 0)
Current function value: 134.13145083706638
Iterations: 17
Function evaluations: 195
Gradient evaluations: 17
Iteration: 1, Func. Count: 13, Neg. LLF: 11695739.80150248
Iteration: 2, Func. Count: 26, Neg. LLF: 139.3226611307711
Iteration: 3, Func. Count: 39, Neg. LLF: 143.66794889123835
Iteration: 4, Func. Count: 52, Neg. LLF: 136.57530105589856
Iteration: 5, Func. Count: 65, Neg. LLF: 135.54868526748592
Iteration: 6, Func. Count: 78, Neg. LLF: 155.3446074900883
Iteration: 7, Func. Count: 91, Neg. LLF: 134.7236343677657
Iteration: 8, Func. Count: 104, Neg. LLF: 134.41716121884804
Iteration: 9, Func. Count: 117, Neg. LLF: 134.14499831122058
Iteration: 10, Func. Count: 129, Neg. LLF: 134.16758777982483
Iteration: 11, Func. Count: 142, Neg. LLF: 134.14109868429392
Iteration: 12, Func. Count: 155, Neg. LLF: 134.13163251793893
Iteration: 13, Func. Count: 167, Neg. LLF: 134.13145786815122
Iteration: 14, Func. Count: 179, Neg. LLF: 134.1314507571664
Iteration: 15, Func. Count: 190, Neg. LLF: 134.13145076630093
Optimization terminated successfully (Exit mode 0)
Current function value: 134.1314507571664
Iterations: 15
Function evaluations: 190
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 135.37974524941185
Iteration: 2, Func. Count: 19, Neg. LLF: 136.3749058056066
Iteration: 3, Func. Count: 29, Neg. LLF: 135.21388879820975
Iteration: 4, Func. Count: 38, Neg. LLF: 135.10776862783064
Iteration: 5, Func. Count: 47, Neg. LLF: 135.08197929954628
Iteration: 6, Func. Count: 56, Neg. LLF: 135.078275597051
Iteration: 7, Func. Count: 65, Neg. LLF: 135.07213898105397
Iteration: 8, Func. Count: 74, Neg. LLF: 135.06855896295642
Iteration: 9, Func. Count: 83, Neg. LLF: 135.06691228530977
Iteration: 10, Func. Count: 92, Neg. LLF: 135.06676790560175
Iteration: 11, Func. Count: 101, Neg. LLF: 135.0667596046412
Iteration: 12, Func. Count: 110, Neg. LLF: 135.0667577940074
Iteration: 13, Func. Count: 118, Neg. LLF: 135.0667576006159
Optimization terminated successfully (Exit mode 0)
Current function value: 135.0667577940074
Iterations: 13
Function evaluations: 118
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 135.91357430538628
Iteration: 2, Func. Count: 21, Neg. LLF: 143.14862018768076
Iteration: 3, Func. Count: 32, Neg. LLF: 135.09986686649805
Iteration: 4, Func. Count: 42, Neg. LLF: 135.08081138167316
Iteration: 5, Func. Count: 52, Neg. LLF: 135.069124615733
Iteration: 6, Func. Count: 62, Neg. LLF: 135.0680892492745
Iteration: 7, Func. Count: 72, Neg. LLF: 135.0672683672414
Iteration: 8, Func. Count: 82, Neg. LLF: 135.06679989576878
Iteration: 9, Func. Count: 92, Neg. LLF: 135.0667613628476
Iteration: 10, Func. Count: 102, Neg. LLF: 135.0667578573539
Iteration: 11, Func. Count: 111, Neg. LLF: 135.06675792846002
Optimization terminated successfully (Exit mode 0)
Current function value: 135.0667578573539
Iterations: 11
Function evaluations: 111
Gradient evaluations: 11
Iteration: 1, Func. Count: 12, Neg. LLF: 135.94886638257063
Iteration: 2, Func. Count: 23, Neg. LLF: 145.35436417169132
Iteration: 3, Func. Count: 35, Neg. LLF: 135.1012855254531
Iteration: 4, Func. Count: 46, Neg. LLF: 135.08353078001176
Iteration: 5, Func. Count: 57, Neg. LLF: 135.06990192010161
Iteration: 6, Func. Count: 68, Neg. LLF: 135.06855609625367
Iteration: 7, Func. Count: 79, Neg. LLF: 135.06747460131606
Iteration: 8, Func. Count: 90, Neg. LLF: 135.06680950405632
Iteration: 9, Func. Count: 101, Neg. LLF: 135.066760200041
Iteration: 10, Func. Count: 112, Neg. LLF: 135.06675782291978
Iteration: 11, Func. Count: 122, Neg. LLF: 135.06675785987287
Optimization terminated successfully (Exit mode 0)
Current function value: 135.06675782291978
Iterations: 11
Function evaluations: 122
Gradient evaluations: 11
Iteration: 1, Func. Count: 13, Neg. LLF: 981992.3581265609
Iteration: 2, Func. Count: 26, Neg. LLF: 6977496.385189228
Iteration: 3, Func. Count: 40, Neg. LLF: 156.87572605557776
Iteration: 4, Func. Count: 53, Neg. LLF: 135.60161912624238
Iteration: 5, Func. Count: 65, Neg. LLF: 141.3183505303221
Iteration: 6, Func. Count: 80, Neg. LLF: 142.5414165598989
Iteration: 7, Func. Count: 93, Neg. LLF: 134.35963552577047
Iteration: 8, Func. Count: 105, Neg. LLF: 136.28257465439788
Iteration: 9, Func. Count: 118, Neg. LLF: 134.1807410357119
Iteration: 10, Func. Count: 130, Neg. LLF: 134.1062036979191
Iteration: 11, Func. Count: 142, Neg. LLF: 134.06010758893888
Iteration: 12, Func. Count: 154, Neg. LLF: 134.02329706526956
Iteration: 13, Func. Count: 166, Neg. LLF: 134.01408333582594
Iteration: 14, Func. Count: 178, Neg. LLF: 134.01087914003602
Iteration: 15, Func. Count: 190, Neg. LLF: 134.01066528912148
Iteration: 16, Func. Count: 202, Neg. LLF: 134.01045390766168
Iteration: 17, Func. Count: 214, Neg. LLF: 134.010438812615
Iteration: 18, Func. Count: 226, Neg. LLF: 134.01043279514164
Iteration: 19, Func. Count: 237, Neg. LLF: 134.0104327951705
Optimization terminated successfully (Exit mode 0)
Current function value: 134.01043279514164
Iterations: 19
Function evaluations: 237
Gradient evaluations: 19
Iteration: 1, Func. Count: 14, Neg. LLF: 1259815.5089344827
Iteration: 2, Func. Count: 28, Neg. LLF: 7399928.316461148
Iteration: 3, Func. Count: 42, Neg. LLF: 163.31647662214274
Iteration: 4, Func. Count: 56, Neg. LLF: 137.6653520238624
Iteration: 5, Func. Count: 70, Neg. LLF: 135.20662818396463
Iteration: 6, Func. Count: 84, Neg. LLF: 135.3065737732416
Iteration: 7, Func. Count: 98, Neg. LLF: 134.36460296707892
Iteration: 8, Func. Count: 112, Neg. LLF: 134.57199842630587
Iteration: 9, Func. Count: 126, Neg. LLF: 132.34524481425186
Iteration: 10, Func. Count: 139, Neg. LLF: 132.26056101225882
Iteration: 11, Func. Count: 152, Neg. LLF: 132.26434989913045
Iteration: 12, Func. Count: 166, Neg. LLF: 132.61106522996857
Iteration: 13, Func. Count: 180, Neg. LLF: 132.2455386944946
Iteration: 14, Func. Count: 193, Neg. LLF: 132.24501739477301
Iteration: 15, Func. Count: 206, Neg. LLF: 132.2449869980043
Iteration: 16, Func. Count: 219, Neg. LLF: 132.2449775715338
Iteration: 17, Func. Count: 232, Neg. LLF: 132.2449618793796
Iteration: 18, Func. Count: 245, Neg. LLF: 132.2449609754432
Optimization terminated successfully (Exit mode 0)
Current function value: 132.2449609754432
Iterations: 18
Function evaluations: 245
Gradient evaluations: 18
Iteration: 1, Func. Count: 11, Neg. LLF: 136.15150556307034
Iteration: 2, Func. Count: 21, Neg. LLF: 148.1778093301125
Iteration: 3, Func. Count: 32, Neg. LLF: 135.2739247648278
Iteration: 4, Func. Count: 42, Neg. LLF: 135.11481378855396
Iteration: 5, Func. Count: 52, Neg. LLF: 135.08239403855183
Iteration: 6, Func. Count: 62, Neg. LLF: 135.07637398294807
Iteration: 7, Func. Count: 72, Neg. LLF: 135.07355877125406
Iteration: 8, Func. Count: 82, Neg. LLF: 135.06723657827783
Iteration: 9, Func. Count: 92, Neg. LLF: 135.06680247556935
Iteration: 10, Func. Count: 102, Neg. LLF: 135.0667606727755
Iteration: 11, Func. Count: 112, Neg. LLF: 135.06675782699688
Iteration: 12, Func. Count: 121, Neg. LLF: 135.0667580694789
Optimization terminated successfully (Exit mode 0)
Current function value: 135.06675782699688
Iterations: 12
Function evaluations: 121
Gradient evaluations: 12
Iteration: 1, Func. Count: 12, Neg. LLF: 135.92629604720852
Iteration: 2, Func. Count: 23, Neg. LLF: 143.1310127501444
Iteration: 3, Func. Count: 35, Neg. LLF: 135.10003040889129
Iteration: 4, Func. Count: 46, Neg. LLF: 135.08085264338578
Iteration: 5, Func. Count: 57, Neg. LLF: 135.06911044114568
Iteration: 6, Func. Count: 68, Neg. LLF: 135.06807945727226
Iteration: 7, Func. Count: 79, Neg. LLF: 135.06726980580856
Iteration: 8, Func. Count: 90, Neg. LLF: 135.0667996071897
Iteration: 9, Func. Count: 101, Neg. LLF: 135.06676143108072
Iteration: 10, Func. Count: 112, Neg. LLF: 135.06675786138507
Iteration: 11, Func. Count: 122, Neg. LLF: 135.06675793249073
Optimization terminated successfully (Exit mode 0)
Current function value: 135.06675786138507
Iterations: 11
Function evaluations: 122
Gradient evaluations: 11
Iteration: 1, Func. Count: 13, Neg. LLF: 135.96889404843265
Iteration: 2, Func. Count: 25, Neg. LLF: 145.35099187933247
Iteration: 3, Func. Count: 38, Neg. LLF: 135.10142253009727
Iteration: 4, Func. Count: 50, Neg. LLF: 135.08358524029114
Iteration: 5, Func. Count: 62, Neg. LLF: 135.0698732527172
Iteration: 6, Func. Count: 74, Neg. LLF: 135.06853913789206
Iteration: 7, Func. Count: 86, Neg. LLF: 135.06747376872707
Iteration: 8, Func. Count: 98, Neg. LLF: 135.06680873936205
Iteration: 9, Func. Count: 110, Neg. LLF: 135.06676023251728
Iteration: 10, Func. Count: 122, Neg. LLF: 135.0667578209605
Iteration: 11, Func. Count: 133, Neg. LLF: 135.0667578579134
Optimization terminated successfully (Exit mode 0)
Current function value: 135.0667578209605
Iterations: 11
Function evaluations: 133
Gradient evaluations: 11
Iteration: 1, Func. Count: 14, Neg. LLF: 979535.7964174168
Iteration: 2, Func. Count: 28, Neg. LLF: 6961021.18399045
Iteration: 3, Func. Count: 43, Neg. LLF: 156.65102704376994
Iteration: 4, Func. Count: 57, Neg. LLF: 135.60572142902532
Iteration: 5, Func. Count: 70, Neg. LLF: 141.26583419894308
Iteration: 6, Func. Count: 86, Neg. LLF: 142.58978806862035
Iteration: 7, Func. Count: 100, Neg. LLF: 134.39184628302164
Iteration: 8, Func. Count: 113, Neg. LLF: 136.2200165149239
Iteration: 9, Func. Count: 127, Neg. LLF: 134.18777525283372
Iteration: 10, Func. Count: 140, Neg. LLF: 134.11048022872376
Iteration: 11, Func. Count: 153, Neg. LLF: 134.0634509509778
Iteration: 12, Func. Count: 166, Neg. LLF: 134.0238717370287
Iteration: 13, Func. Count: 179, Neg. LLF: 134.01453144355938
Iteration: 14, Func. Count: 192, Neg. LLF: 134.01054997197494
Iteration: 15, Func. Count: 205, Neg. LLF: 134.01049094314857
Iteration: 16, Func. Count: 218, Neg. LLF: 134.0104387629124
Iteration: 17, Func. Count: 231, Neg. LLF: 134.01043290666792
Iteration: 18, Func. Count: 243, Neg. LLF: 134.01043290659922
Optimization terminated successfully (Exit mode 0)
Current function value: 134.01043290666792
Iterations: 18
Function evaluations: 243
Gradient evaluations: 18
Iteration: 1, Func. Count: 15, Neg. LLF: 1155084.3285705496
Iteration: 2, Func. Count: 30, Neg. LLF: 7389829.327908751
Iteration: 3, Func. Count: 45, Neg. LLF: 162.9332405284346
Iteration: 4, Func. Count: 60, Neg. LLF: 137.60323353069302
Iteration: 5, Func. Count: 75, Neg. LLF: 135.19618498966835
Iteration: 6, Func. Count: 90, Neg. LLF: 135.36591455501022
Iteration: 7, Func. Count: 105, Neg. LLF: 134.4502912471549
Iteration: 8, Func. Count: 120, Neg. LLF: 134.59126345962008
Iteration: 9, Func. Count: 135, Neg. LLF: 132.353452203877
Iteration: 10, Func. Count: 149, Neg. LLF: 132.26271243239333
Iteration: 11, Func. Count: 163, Neg. LLF: 132.6275047752656
Iteration: 12, Func. Count: 179, Neg. LLF: 132.27822568261456
Iteration: 13, Func. Count: 194, Neg. LLF: 132.2457671375981
Iteration: 14, Func. Count: 208, Neg. LLF: 132.24499927738623
Iteration: 15, Func. Count: 222, Neg. LLF: 132.24498697226622
Iteration: 16, Func. Count: 236, Neg. LLF: 132.24496808820763
Iteration: 17, Func. Count: 250, Neg. LLF: 132.2449617566617
Iteration: 18, Func. Count: 264, Neg. LLF: 132.24496095371526
Optimization terminated successfully (Exit mode 0)
Current function value: 132.24496095371526
Iterations: 18
Function evaluations: 264
Gradient evaluations: 18
Iteration: 1, Func. Count: 8, Neg. LLF: 141.00664532524192
Iteration: 2, Func. Count: 15, Neg. LLF: 146.45993199611272
Iteration: 3, Func. Count: 23, Neg. LLF: 138.85333215376286
Iteration: 4, Func. Count: 30, Neg. LLF: 138.7361103577314
Iteration: 5, Func. Count: 37, Neg. LLF: 138.6966897008743
Iteration: 6, Func. Count: 44, Neg. LLF: 138.6901624293492
Iteration: 7, Func. Count: 51, Neg. LLF: 138.95701651855387
Iteration: 8, Func. Count: 60, Neg. LLF: 138.7074539600259
Iteration: 9, Func. Count: 68, Neg. LLF: 138.68119849464557
Iteration: 10, Func. Count: 75, Neg. LLF: 138.6808287236092
Iteration: 11, Func. Count: 82, Neg. LLF: 138.6808280014182
Optimization terminated successfully (Exit mode 0)
Current function value: 138.6808280014182
Iterations: 11
Function evaluations: 82
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 722.1602245331488
Iteration: 2, Func. Count: 19, Neg. LLF: 139.38488270418875
Iteration: 3, Func. Count: 27, Neg. LLF: 138.28182132290405
Iteration: 4, Func. Count: 35, Neg. LLF: 148.41298003909463
Iteration: 5, Func. Count: 44, Neg. LLF: 137.834107558323
Iteration: 6, Func. Count: 52, Neg. LLF: 137.79434728789357
Iteration: 7, Func. Count: 60, Neg. LLF: 137.78159596801353
Iteration: 8, Func. Count: 68, Neg. LLF: 137.78160154697827
Iteration: 9, Func. Count: 77, Neg. LLF: 137.78142821615654
Iteration: 10, Func. Count: 84, Neg. LLF: 137.78142821635865
Optimization terminated successfully (Exit mode 0)
Current function value: 137.78142821615654
Iterations: 10
Function evaluations: 84
Gradient evaluations: 10
Iteration: 1, Func. Count: 10, Neg. LLF: 22892939.881596982
Iteration: 2, Func. Count: 21, Neg. LLF: 138.62603678936847
Iteration: 3, Func. Count: 30, Neg. LLF: 137.9463300287277
Iteration: 4, Func. Count: 39, Neg. LLF: 138.87100314508666
Iteration: 5, Func. Count: 49, Neg. LLF: 137.77334328664992
Iteration: 6, Func. Count: 58, Neg. LLF: 137.773297166024
Iteration: 7, Func. Count: 67, Neg. LLF: 137.77329128175393
Iteration: 8, Func. Count: 75, Neg. LLF: 137.7732912817443
Optimization terminated successfully (Exit mode 0)
Current function value: 137.77329128175393
Iterations: 8
Function evaluations: 75
Gradient evaluations: 8
Iteration: 1, Func. Count: 11, Neg. LLF: 22870026.962822314
Iteration: 2, Func. Count: 23, Neg. LLF: 138.51911646899825
Iteration: 3, Func. Count: 33, Neg. LLF: 137.9100793475335
Iteration: 4, Func. Count: 43, Neg. LLF: 137.90224954372556
Iteration: 5, Func. Count: 54, Neg. LLF: 137.8586607691079
Iteration: 6, Func. Count: 65, Neg. LLF: 137.84800826253624
Iteration: 7, Func. Count: 75, Neg. LLF: 137.84086949830856
Iteration: 8, Func. Count: 85, Neg. LLF: 137.8320481590404
Iteration: 9, Func. Count: 95, Neg. LLF: 137.8111602232176
Iteration: 10, Func. Count: 105, Neg. LLF: 137.80781187480642
Iteration: 11, Func. Count: 115, Neg. LLF: 137.80708402572523
Iteration: 12, Func. Count: 125, Neg. LLF: 137.80698508206203
Iteration: 13, Func. Count: 135, Neg. LLF: 137.80692839505303
Iteration: 14, Func. Count: 145, Neg. LLF: 137.80638631488281
Iteration: 15, Func. Count: 155, Neg. LLF: 137.79909783760513
Iteration: 16, Func. Count: 165, Neg. LLF: 137.79284463076067
Iteration: 17, Func. Count: 175, Neg. LLF: 137.78178693156616
Iteration: 18, Func. Count: 185, Neg. LLF: 137.78145654538926
Iteration: 19, Func. Count: 195, Neg. LLF: 137.78145033559133
Iteration: 20, Func. Count: 205, Neg. LLF: 137.78143673474906
Iteration: 21, Func. Count: 215, Neg. LLF: 137.84383044802837
Optimization terminated successfully (Exit mode 0)
Current function value: 137.7814367345789
Iterations: 21
Function evaluations: 219
Gradient evaluations: 21
Iteration: 1, Func. Count: 12, Neg. LLF: 22852013.31343999
Iteration: 2, Func. Count: 25, Neg. LLF: 138.36694473487887
Iteration: 3, Func. Count: 36, Neg. LLF: 137.82241966388048
Iteration: 4, Func. Count: 47, Neg. LLF: 141.90084513301383
Iteration: 5, Func. Count: 59, Neg. LLF: 136.44020988621799
Iteration: 6, Func. Count: 70, Neg. LLF: 171.0082434484997
Iteration: 7, Func. Count: 82, Neg. LLF: 135.3915522659095
Iteration: 8, Func. Count: 93, Neg. LLF: 135.08834615432164
Iteration: 9, Func. Count: 104, Neg. LLF: 134.91571559701933
Iteration: 10, Func. Count: 115, Neg. LLF: 134.82601483440916
Iteration: 11, Func. Count: 126, Neg. LLF: 134.80352389290425
Iteration: 12, Func. Count: 137, Neg. LLF: 134.7942797767531
Iteration: 13, Func. Count: 148, Neg. LLF: 134.79352570732866
Iteration: 14, Func. Count: 159, Neg. LLF: 134.79344825425937
Iteration: 15, Func. Count: 170, Neg. LLF: 134.7934466337159
Iteration: 16, Func. Count: 180, Neg. LLF: 134.7934466337223
Optimization terminated successfully (Exit mode 0)
Current function value: 134.7934466337159
Iterations: 16
Function evaluations: 180
Gradient evaluations: 16
Iteration: 1, Func. Count: 9, Neg. LLF: 139.77146945702813
Iteration: 2, Func. Count: 17, Neg. LLF: 142.35583677799093
Iteration: 3, Func. Count: 26, Neg. LLF: 140.7951870335529
Iteration: 4, Func. Count: 35, Neg. LLF: 138.53625810859012
Iteration: 5, Func. Count: 43, Neg. LLF: 138.4384317994298
Iteration: 6, Func. Count: 51, Neg. LLF: 138.42840131259112
Iteration: 7, Func. Count: 59, Neg. LLF: 138.41439527776762
Iteration: 8, Func. Count: 67, Neg. LLF: 138.41187766384172
Iteration: 9, Func. Count: 75, Neg. LLF: 138.41104744776018
Iteration: 10, Func. Count: 83, Neg. LLF: 138.41067552392718
Iteration: 11, Func. Count: 91, Neg. LLF: 138.41039243699947
Iteration: 12, Func. Count: 99, Neg. LLF: 138.41035899384724
Iteration: 13, Func. Count: 107, Neg. LLF: 138.4103569710947
Iteration: 14, Func. Count: 114, Neg. LLF: 138.41035684781022
Optimization terminated successfully (Exit mode 0)
Current function value: 138.4103569710947
Iterations: 14
Function evaluations: 114
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 141.7472235628404
Iteration: 2, Func. Count: 21, Neg. LLF: 144.33974983059468
Iteration: 3, Func. Count: 31, Neg. LLF: 138.96972382746415
Iteration: 4, Func. Count: 40, Neg. LLF: 138.95644681461033
Iteration: 5, Func. Count: 49, Neg. LLF: 138.93970905270263
Iteration: 6, Func. Count: 58, Neg. LLF: 138.81699921806256
Iteration: 7, Func. Count: 67, Neg. LLF: 141.04970869483878
Iteration: 8, Func. Count: 77, Neg. LLF: 140.39308496211
Iteration: 9, Func. Count: 87, Neg. LLF: 140.0222248383017
Iteration: 10, Func. Count: 97, Neg. LLF: 190.41275968719424
Iteration: 11, Func. Count: 107, Neg. LLF: 140.94855091240956
Iteration: 12, Func. Count: 117, Neg. LLF: 304.08518918415444
Iteration: 13, Func. Count: 128, Neg. LLF: 137.96845549759345
Iteration: 14, Func. Count: 137, Neg. LLF: 137.42006048752458
Iteration: 15, Func. Count: 146, Neg. LLF: 138.2668070658902
Iteration: 16, Func. Count: 156, Neg. LLF: 1096.2106092896713
Iteration: 17, Func. Count: 166, Neg. LLF: 137.26530390330578
Iteration: 18, Func. Count: 176, Neg. LLF: 139.43156419503543
Iteration: 19, Func. Count: 186, Neg. LLF: 174.16268835858676
Iteration: 20, Func. Count: 196, Neg. LLF: 144.6006254389968
Iteration: 21, Func. Count: 206, Neg. LLF: 136.79472333357822
Iteration: 22, Func. Count: 216, Neg. LLF: 135.67278544034906
Iteration: 23, Func. Count: 225, Neg. LLF: 136.31807835289894
Iteration: 24, Func. Count: 235, Neg. LLF: 135.46982991336964
Iteration: 25, Func. Count: 244, Neg. LLF: 135.46321725763045
Iteration: 26, Func. Count: 253, Neg. LLF: 135.4626398782183
Iteration: 27, Func. Count: 262, Neg. LLF: 135.4626151106557
Iteration: 28, Func. Count: 270, Neg. LLF: 135.46261511019802
Optimization terminated successfully (Exit mode 0)
Current function value: 135.4626151106557
Iterations: 29
Function evaluations: 270
Gradient evaluations: 28
Iteration: 1, Func. Count: 11, Neg. LLF: 141.48794924960094
Iteration: 2, Func. Count: 23, Neg. LLF: 144.74842176840968
Iteration: 3, Func. Count: 34, Neg. LLF: 137.51293658078777
Iteration: 4, Func. Count: 44, Neg. LLF: 137.56205729564266
Iteration: 5, Func. Count: 55, Neg. LLF: 136.9044541499545
Iteration: 6, Func. Count: 65, Neg. LLF: 135.42962244152525
Iteration: 7, Func. Count: 75, Neg. LLF: 135.5594861053877
Iteration: 8, Func. Count: 86, Neg. LLF: 134.97351471756423
Iteration: 9, Func. Count: 96, Neg. LLF: 134.77555799826214
Iteration: 10, Func. Count: 106, Neg. LLF: 137.73468558670558
Iteration: 11, Func. Count: 117, Neg. LLF: 181.53040505082933
Iteration: 12, Func. Count: 128, Neg. LLF: 136.15132949766524
Iteration: 13, Func. Count: 139, Neg. LLF: 134.38742499339108
Iteration: 14, Func. Count: 149, Neg. LLF: 134.2380982916062
Iteration: 15, Func. Count: 159, Neg. LLF: 134.94566912369353
Iteration: 16, Func. Count: 170, Neg. LLF: 134.61544001827744
Iteration: 17, Func. Count: 181, Neg. LLF: 134.17572613071093
Iteration: 18, Func. Count: 191, Neg. LLF: 134.1507333101701
Iteration: 19, Func. Count: 201, Neg. LLF: 134.1484141674016
Iteration: 20, Func. Count: 211, Neg. LLF: 134.1481992856843
Iteration: 21, Func. Count: 221, Neg. LLF: 134.14819431069682
Iteration: 22, Func. Count: 230, Neg. LLF: 134.14819431075097
Optimization terminated successfully (Exit mode 0)
Current function value: 134.14819431069682
Iterations: 22
Function evaluations: 230
Gradient evaluations: 22
Iteration: 1, Func. Count: 12, Neg. LLF: 11529378.690023744
Iteration: 2, Func. Count: 24, Neg. LLF: 140.88705692165638
Iteration: 3, Func. Count: 37, Neg. LLF: 144.6369556787583
Iteration: 4, Func. Count: 49, Neg. LLF: 137.19013800165175
Iteration: 5, Func. Count: 61, Neg. LLF: 136.85066625298734
Iteration: 6, Func. Count: 73, Neg. LLF: 136.36715189515792
Iteration: 7, Func. Count: 85, Neg. LLF: 134.7815999877406
Iteration: 8, Func. Count: 96, Neg. LLF: 134.51890064882937
Iteration: 9, Func. Count: 107, Neg. LLF: 134.40710885502995
Iteration: 10, Func. Count: 118, Neg. LLF: 134.75920725303507
Iteration: 11, Func. Count: 130, Neg. LLF: 134.26199421250092
Iteration: 12, Func. Count: 141, Neg. LLF: 134.18360121141893
Iteration: 13, Func. Count: 152, Neg. LLF: 134.15451647367826
Iteration: 14, Func. Count: 163, Neg. LLF: 134.23976742836774
Iteration: 15, Func. Count: 175, Neg. LLF: 134.23744685336794
Iteration: 16, Func. Count: 187, Neg. LLF: 134.13180273426482
Iteration: 17, Func. Count: 198, Neg. LLF: 134.13155703111357
Iteration: 18, Func. Count: 209, Neg. LLF: 134.1314573345174
Iteration: 19, Func. Count: 220, Neg. LLF: 134.13145121481685
Iteration: 20, Func. Count: 231, Neg. LLF: 134.1314507392305
Optimization terminated successfully (Exit mode 0)
Current function value: 134.1314507392305
Iterations: 20
Function evaluations: 231
Gradient evaluations: 20
Iteration: 1, Func. Count: 13, Neg. LLF: 11703005.769642044
Iteration: 2, Func. Count: 26, Neg. LLF: 139.46352630512433
Iteration: 3, Func. Count: 39, Neg. LLF: 143.65085582752033
Iteration: 4, Func. Count: 52, Neg. LLF: 136.81080902864292
Iteration: 5, Func. Count: 65, Neg. LLF: 135.72742794961476
Iteration: 6, Func. Count: 78, Neg. LLF: 170.90578386767382
Iteration: 7, Func. Count: 91, Neg. LLF: 134.77055872159485
Iteration: 8, Func. Count: 104, Neg. LLF: 134.44270202299282
Iteration: 9, Func. Count: 117, Neg. LLF: 134.2259113427247
Iteration: 10, Func. Count: 129, Neg. LLF: 134.1681251633242
Iteration: 11, Func. Count: 141, Neg. LLF: 134.1445231619865
Iteration: 12, Func. Count: 153, Neg. LLF: 134.14188779669436
Iteration: 13, Func. Count: 166, Neg. LLF: 134.13164567016617
Iteration: 14, Func. Count: 178, Neg. LLF: 134.13147079816613
Iteration: 15, Func. Count: 190, Neg. LLF: 134.13145845533532
Iteration: 16, Func. Count: 202, Neg. LLF: 134.13145077741254
Iteration: 17, Func. Count: 213, Neg. LLF: 134.13145078653744
Optimization terminated successfully (Exit mode 0)
Current function value: 134.13145077741254
Iterations: 17
Function evaluations: 213
Gradient evaluations: 17
Iteration: 1, Func. Count: 10, Neg. LLF: 137.8993907674309
Iteration: 2, Func. Count: 19, Neg. LLF: 138.09866300291674
Iteration: 3, Func. Count: 29, Neg. LLF: 137.63672017407598
Iteration: 4, Func. Count: 38, Neg. LLF: 140.9871497912945
Iteration: 5, Func. Count: 48, Neg. LLF: 140.03312235144196
Iteration: 6, Func. Count: 58, Neg. LLF: 137.54189396135095
Iteration: 7, Func. Count: 68, Neg. LLF: 137.18404852239516
Iteration: 8, Func. Count: 78, Neg. LLF: 137.15947691695345
Iteration: 9, Func. Count: 87, Neg. LLF: 137.15053478182426
Iteration: 10, Func. Count: 96, Neg. LLF: 137.14730632102777
Iteration: 11, Func. Count: 105, Neg. LLF: 137.1469449892675
Iteration: 12, Func. Count: 114, Neg. LLF: 137.14692782610584
Iteration: 13, Func. Count: 123, Neg. LLF: 137.14692705973454
Optimization terminated successfully (Exit mode 0)
Current function value: 137.14692705973454
Iterations: 13
Function evaluations: 123
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 140.18053323928913
Iteration: 2, Func. Count: 23, Neg. LLF: 144.66724909785052
Iteration: 3, Func. Count: 34, Neg. LLF: 138.88914454868873
Iteration: 4, Func. Count: 44, Neg. LLF: 138.88002218981035
Iteration: 5, Func. Count: 54, Neg. LLF: 138.74409873520037
Iteration: 6, Func. Count: 64, Neg. LLF: 138.45074117885872
Iteration: 7, Func. Count: 74, Neg. LLF: 138.1250941921353
Iteration: 8, Func. Count: 84, Neg. LLF: 137.83767041035816
Iteration: 9, Func. Count: 94, Neg. LLF: 136.90997130910458
Iteration: 10, Func. Count: 104, Neg. LLF: 136.0784884336878
Iteration: 11, Func. Count: 114, Neg. LLF: 140.33668395927717
Iteration: 12, Func. Count: 125, Neg. LLF: 140.6572615810283
Iteration: 13, Func. Count: 136, Neg. LLF: 136.09153924354274
Iteration: 14, Func. Count: 147, Neg. LLF: 135.7240961936794
Iteration: 15, Func. Count: 158, Neg. LLF: 135.45977317448188
Iteration: 16, Func. Count: 168, Neg. LLF: 135.46782546230975
Iteration: 17, Func. Count: 179, Neg. LLF: 135.45694772957387
Iteration: 18, Func. Count: 189, Neg. LLF: 135.45691099222586
Iteration: 19, Func. Count: 198, Neg. LLF: 135.45691099226505
Optimization terminated successfully (Exit mode 0)
Current function value: 135.45691099222586
Iterations: 19
Function evaluations: 198
Gradient evaluations: 19
Iteration: 1, Func. Count: 12, Neg. LLF: 141.4332327771668
Iteration: 2, Func. Count: 25, Neg. LLF: 144.77830447394766
Iteration: 3, Func. Count: 37, Neg. LLF: 137.49340699196074
Iteration: 4, Func. Count: 48, Neg. LLF: 137.63285953755377
Iteration: 5, Func. Count: 60, Neg. LLF: 136.92298159589194
Iteration: 6, Func. Count: 71, Neg. LLF: 135.47265766579113
Iteration: 7, Func. Count: 82, Neg. LLF: 135.88459350156086
Iteration: 8, Func. Count: 94, Neg. LLF: 134.98324925903412
Iteration: 9, Func. Count: 105, Neg. LLF: 134.79408813086476
Iteration: 10, Func. Count: 116, Neg. LLF: 137.37154969138356
Iteration: 11, Func. Count: 128, Neg. LLF: 153.435639630847
Iteration: 12, Func. Count: 140, Neg. LLF: 137.3474435084943
Iteration: 13, Func. Count: 152, Neg. LLF: 135.37643730990342
Iteration: 14, Func. Count: 164, Neg. LLF: 134.84244707102076
Iteration: 15, Func. Count: 176, Neg. LLF: 134.21365180334686
Iteration: 16, Func. Count: 187, Neg. LLF: 134.1566323559409
Iteration: 17, Func. Count: 198, Neg. LLF: 134.14983033442414
Iteration: 18, Func. Count: 209, Neg. LLF: 134.14897655895072
Iteration: 19, Func. Count: 220, Neg. LLF: 134.14831456974812
Iteration: 20, Func. Count: 231, Neg. LLF: 134.14819555240638
Iteration: 21, Func. Count: 242, Neg. LLF: 134.1481943397301
Iteration: 22, Func. Count: 252, Neg. LLF: 134.1481943397206
Optimization terminated successfully (Exit mode 0)
Current function value: 134.1481943397301
Iterations: 22
Function evaluations: 252
Gradient evaluations: 22
Iteration: 1, Func. Count: 13, Neg. LLF: 7055524.671386031
Iteration: 2, Func. Count: 26, Neg. LLF: 136.06492233713325
Iteration: 3, Func. Count: 38, Neg. LLF: 142.65900345867198
Iteration: 4, Func. Count: 51, Neg. LLF: 230.28222061124157
Iteration: 5, Func. Count: 64, Neg. LLF: 139.2934624807905
Iteration: 6, Func. Count: 77, Neg. LLF: 138.72974169050454
Iteration: 7, Func. Count: 90, Neg. LLF: 136.63736821727858
Iteration: 8, Func. Count: 103, Neg. LLF: 134.19642484617373
Iteration: 9, Func. Count: 115, Neg. LLF: 134.15958425555505
Iteration: 10, Func. Count: 127, Neg. LLF: 134.1726800865471
Iteration: 11, Func. Count: 140, Neg. LLF: 134.19973659510055
Iteration: 12, Func. Count: 153, Neg. LLF: 134.13875408907657
Iteration: 13, Func. Count: 165, Neg. LLF: 134.1354947553508
Iteration: 14, Func. Count: 177, Neg. LLF: 134.13322113470886
Iteration: 15, Func. Count: 189, Neg. LLF: 134.13204007228796
Iteration: 16, Func. Count: 201, Neg. LLF: 134.1314766249002
Iteration: 17, Func. Count: 213, Neg. LLF: 134.1314523051057
Iteration: 18, Func. Count: 225, Neg. LLF: 134.13145080800473
Iteration: 19, Func. Count: 236, Neg. LLF: 134.13145080782752
Optimization terminated successfully (Exit mode 0)
Current function value: 134.13145080800473
Iterations: 19
Function evaluations: 236
Gradient evaluations: 19
Iteration: 1, Func. Count: 14, Neg. LLF: 11700444.170492735
Iteration: 2, Func. Count: 28, Neg. LLF: 139.4342110715742
Iteration: 3, Func. Count: 42, Neg. LLF: 143.4741245566628
Iteration: 4, Func. Count: 56, Neg. LLF: 136.54550879381478
Iteration: 5, Func. Count: 70, Neg. LLF: 135.52553182599362
Iteration: 6, Func. Count: 84, Neg. LLF: 156.2004362732896
Iteration: 7, Func. Count: 98, Neg. LLF: 134.78660773411264
Iteration: 8, Func. Count: 112, Neg. LLF: 134.40774511169616
Iteration: 9, Func. Count: 126, Neg. LLF: 134.15037620621632
Iteration: 10, Func. Count: 139, Neg. LLF: 134.2015422481703
Iteration: 11, Func. Count: 153, Neg. LLF: 134.13334063066154
Iteration: 12, Func. Count: 166, Neg. LLF: 134.13158100545948
Iteration: 13, Func. Count: 179, Neg. LLF: 134.13147300086143
Iteration: 14, Func. Count: 192, Neg. LLF: 134.13145073753697
Iteration: 15, Func. Count: 204, Neg. LLF: 134.13145074687162
Optimization terminated successfully (Exit mode 0)
Current function value: 134.13145073753697
Iterations: 15
Function evaluations: 204
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 135.70452119513598
Iteration: 2, Func. Count: 21, Neg. LLF: 143.42425231570058
Iteration: 3, Func. Count: 32, Neg. LLF: 135.2568170655559
Iteration: 4, Func. Count: 42, Neg. LLF: 135.10870212393456
Iteration: 5, Func. Count: 52, Neg. LLF: 135.085850072009
Iteration: 6, Func. Count: 62, Neg. LLF: 135.08159746957224
Iteration: 7, Func. Count: 72, Neg. LLF: 135.07427722437282
Iteration: 8, Func. Count: 82, Neg. LLF: 135.06918180986167
Iteration: 9, Func. Count: 92, Neg. LLF: 135.067071309644
Iteration: 10, Func. Count: 102, Neg. LLF: 135.0667702063794
Iteration: 11, Func. Count: 112, Neg. LLF: 135.06676315102942
Iteration: 12, Func. Count: 122, Neg. LLF: 135.06675779519503
Iteration: 13, Func. Count: 131, Neg. LLF: 135.06675760180343
Optimization terminated successfully (Exit mode 0)
Current function value: 135.06675779519503
Iterations: 13
Function evaluations: 131
Gradient evaluations: 13
Iteration: 1, Func. Count: 12, Neg. LLF: 135.9260401842398
Iteration: 2, Func. Count: 23, Neg. LLF: 143.2563476201881
Iteration: 3, Func. Count: 35, Neg. LLF: 135.10053302310928
Iteration: 4, Func. Count: 46, Neg. LLF: 135.0811877299413
Iteration: 5, Func. Count: 57, Neg. LLF: 135.06917809624852
Iteration: 6, Func. Count: 68, Neg. LLF: 135.06812638616407
Iteration: 7, Func. Count: 79, Neg. LLF: 135.06729473052687
Iteration: 8, Func. Count: 90, Neg. LLF: 135.06680330451414
Iteration: 9, Func. Count: 101, Neg. LLF: 135.0667613716312
Iteration: 10, Func. Count: 112, Neg. LLF: 135.06675784836142
Iteration: 11, Func. Count: 122, Neg. LLF: 135.06675791946907
Optimization terminated successfully (Exit mode 0)
Current function value: 135.06675784836142
Iterations: 11
Function evaluations: 122
Gradient evaluations: 11
Iteration: 1, Func. Count: 13, Neg. LLF: 135.9720677209126
Iteration: 2, Func. Count: 25, Neg. LLF: 145.42938752648536
Iteration: 3, Func. Count: 38, Neg. LLF: 135.10174542615727
Iteration: 4, Func. Count: 50, Neg. LLF: 135.08382869058613
Iteration: 5, Func. Count: 62, Neg. LLF: 135.06993918546345
Iteration: 6, Func. Count: 74, Neg. LLF: 135.06858714685254
Iteration: 7, Func. Count: 86, Neg. LLF: 135.0674994252444
Iteration: 8, Func. Count: 98, Neg. LLF: 135.06681035511323
Iteration: 9, Func. Count: 110, Neg. LLF: 135.06676019048334
Iteration: 10, Func. Count: 122, Neg. LLF: 135.06675782181938
Iteration: 11, Func. Count: 133, Neg. LLF: 135.06675785877235
Optimization terminated successfully (Exit mode 0)
Current function value: 135.06675782181938
Iterations: 11
Function evaluations: 133
Gradient evaluations: 11
Iteration: 1, Func. Count: 14, Neg. LLF: 979469.6184611149
Iteration: 2, Func. Count: 28, Neg. LLF: 6948065.905627318
Iteration: 3, Func. Count: 43, Neg. LLF: 156.2406698966963
Iteration: 4, Func. Count: 57, Neg. LLF: 135.61054149592024
Iteration: 5, Func. Count: 70, Neg. LLF: 140.92539594799342
Iteration: 6, Func. Count: 86, Neg. LLF: 142.77636567905247
Iteration: 7, Func. Count: 100, Neg. LLF: 134.4378590746055
Iteration: 8, Func. Count: 113, Neg. LLF: 136.1894335353879
Iteration: 9, Func. Count: 127, Neg. LLF: 134.19978235738395
Iteration: 10, Func. Count: 140, Neg. LLF: 134.11922718630407
Iteration: 11, Func. Count: 153, Neg. LLF: 134.07031085206899
Iteration: 12, Func. Count: 166, Neg. LLF: 134.02574439736432
Iteration: 13, Func. Count: 179, Neg. LLF: 134.0158921090858
Iteration: 14, Func. Count: 192, Neg. LLF: 134.01224216635012
Iteration: 15, Func. Count: 205, Neg. LLF: 134.01059559059271
Iteration: 16, Func. Count: 218, Neg. LLF: 134.01045279418673
Iteration: 17, Func. Count: 231, Neg. LLF: 134.01043865458985
Iteration: 18, Func. Count: 244, Neg. LLF: 134.01043324732595
Iteration: 19, Func. Count: 256, Neg. LLF: 134.01043324726692
Optimization terminated successfully (Exit mode 0)
Current function value: 134.01043324732595
Iterations: 19
Function evaluations: 256
Gradient evaluations: 19
Iteration: 1, Func. Count: 15, Neg. LLF: 1153793.3549375387
Iteration: 2, Func. Count: 30, Neg. LLF: 7274240.956270304
Iteration: 3, Func. Count: 45, Neg. LLF: 162.1555727817764
Iteration: 4, Func. Count: 60, Neg. LLF: 137.66030464023038
Iteration: 5, Func. Count: 75, Neg. LLF: 135.18880710554973
Iteration: 6, Func. Count: 90, Neg. LLF: 135.35603605501558
Iteration: 7, Func. Count: 105, Neg. LLF: 134.45212498259198
Iteration: 8, Func. Count: 120, Neg. LLF: 134.58738654748817
Iteration: 9, Func. Count: 135, Neg. LLF: 132.35465720010717
Iteration: 10, Func. Count: 149, Neg. LLF: 132.3767396559954
Iteration: 11, Func. Count: 164, Neg. LLF: 132.41381941795163
Iteration: 12, Func. Count: 179, Neg. LLF: 132.25528472030686
Iteration: 13, Func. Count: 194, Neg. LLF: 132.2495586110841
Iteration: 14, Func. Count: 209, Neg. LLF: 132.2450823206571
Iteration: 15, Func. Count: 223, Neg. LLF: 132.2450342049163
Iteration: 16, Func. Count: 237, Neg. LLF: 132.24499867759977
Iteration: 17, Func. Count: 251, Neg. LLF: 132.24496568019165
Iteration: 18, Func. Count: 265, Neg. LLF: 132.24496126349658
Iteration: 19, Func. Count: 278, Neg. LLF: 132.24496126353603
Optimization terminated successfully (Exit mode 0)
Current function value: 132.24496126349658
Iterations: 19
Function evaluations: 278
Gradient evaluations: 19
Iteration: 1, Func. Count: 12, Neg. LLF: 138.51353378239622
Iteration: 2, Func. Count: 23, Neg. LLF: 153.4354275780898
Iteration: 3, Func. Count: 35, Neg. LLF: 135.31171244210492
Iteration: 4, Func. Count: 46, Neg. LLF: 135.16514647662387
Iteration: 5, Func. Count: 57, Neg. LLF: 135.0840044599303
Iteration: 6, Func. Count: 68, Neg. LLF: 135.0756352530313
Iteration: 7, Func. Count: 79, Neg. LLF: 135.07305374146793
Iteration: 8, Func. Count: 90, Neg. LLF: 135.06684125865473
Iteration: 9, Func. Count: 101, Neg. LLF: 135.0667641373448
Iteration: 10, Func. Count: 112, Neg. LLF: 135.06675843772578
Iteration: 11, Func. Count: 123, Neg. LLF: 135.0667577965121
Optimization terminated successfully (Exit mode 0)
Current function value: 135.0667577965121
Iterations: 11
Function evaluations: 123
Gradient evaluations: 11
Iteration: 1, Func. Count: 13, Neg. LLF: 135.9382180642378
Iteration: 2, Func. Count: 25, Neg. LLF: 143.24030502726754
Iteration: 3, Func. Count: 38, Neg. LLF: 135.10070184866797
Iteration: 4, Func. Count: 50, Neg. LLF: 135.0812346671603
Iteration: 5, Func. Count: 62, Neg. LLF: 135.06916495112392
Iteration: 6, Func. Count: 74, Neg. LLF: 135.06811708484167
Iteration: 7, Func. Count: 86, Neg. LLF: 135.06729617983873
Iteration: 8, Func. Count: 98, Neg. LLF: 135.0668031333929
Iteration: 9, Func. Count: 110, Neg. LLF: 135.0667614375561
Iteration: 10, Func. Count: 122, Neg. LLF: 135.06675784929826
Iteration: 11, Func. Count: 133, Neg. LLF: 135.06675792040616
Optimization terminated successfully (Exit mode 0)
Current function value: 135.06675784929826
Iterations: 11
Function evaluations: 133
Gradient evaluations: 11
Iteration: 1, Func. Count: 14, Neg. LLF: 135.99159739848352
Iteration: 2, Func. Count: 27, Neg. LLF: 145.4249975798712
Iteration: 3, Func. Count: 41, Neg. LLF: 135.1018866527422
Iteration: 4, Func. Count: 54, Neg. LLF: 135.08388683491418
Iteration: 5, Func. Count: 67, Neg. LLF: 135.0699117542522
Iteration: 6, Func. Count: 80, Neg. LLF: 135.06857056926611
Iteration: 7, Func. Count: 93, Neg. LLF: 135.0674982585416
Iteration: 8, Func. Count: 106, Neg. LLF: 135.06680960072322
Iteration: 9, Func. Count: 119, Neg. LLF: 135.0667602574991
Iteration: 10, Func. Count: 132, Neg. LLF: 135.066757820714
Iteration: 11, Func. Count: 144, Neg. LLF: 135.06675785766694
Optimization terminated successfully (Exit mode 0)
Current function value: 135.066757820714
Iterations: 11
Function evaluations: 144
Gradient evaluations: 11
Iteration: 1, Func. Count: 15, Neg. LLF: 979987.9809019472
Iteration: 2, Func. Count: 30, Neg. LLF: 6938364.110503956
Iteration: 3, Func. Count: 46, Neg. LLF: 156.03247605026152
Iteration: 4, Func. Count: 61, Neg. LLF: 135.61490271530045
Iteration: 5, Func. Count: 75, Neg. LLF: 142.0690282393235
Iteration: 6, Func. Count: 92, Neg. LLF: 141.68959840255772
Iteration: 7, Func. Count: 107, Neg. LLF: 134.18481733934846
Iteration: 8, Func. Count: 121, Neg. LLF: 134.6966888852774
Iteration: 9, Func. Count: 136, Neg. LLF: 134.08516389000076
Iteration: 10, Func. Count: 150, Neg. LLF: 134.04286815042477
Iteration: 11, Func. Count: 164, Neg. LLF: 134.0225858930133
Iteration: 12, Func. Count: 178, Neg. LLF: 134.01315897964267
Iteration: 13, Func. Count: 192, Neg. LLF: 134.01073504783653
Iteration: 14, Func. Count: 206, Neg. LLF: 134.01053665930692
Iteration: 15, Func. Count: 220, Neg. LLF: 134.01045236669793
Iteration: 16, Func. Count: 234, Neg. LLF: 134.0104339523157
Iteration: 17, Func. Count: 248, Neg. LLF: 134.01043278263987
Iteration: 18, Func. Count: 261, Neg. LLF: 134.01043278272004
Optimization terminated successfully (Exit mode 0)
Current function value: 134.01043278263987
Iterations: 18
Function evaluations: 261
Gradient evaluations: 18
Iteration: 1, Func. Count: 16, Neg. LLF: 1100022.0158110007
Iteration: 2, Func. Count: 32, Neg. LLF: 7183898.690436025
Iteration: 3, Func. Count: 48, Neg. LLF: 162.0371902102443
Iteration: 4, Func. Count: 64, Neg. LLF: 137.59392099632677
Iteration: 5, Func. Count: 80, Neg. LLF: 135.18099696756155
Iteration: 6, Func. Count: 96, Neg. LLF: 135.43435667168762
Iteration: 7, Func. Count: 112, Neg. LLF: 134.53599799205531
Iteration: 8, Func. Count: 128, Neg. LLF: 134.60504475593686
Iteration: 9, Func. Count: 144, Neg. LLF: 132.36279343252846
Iteration: 10, Func. Count: 159, Neg. LLF: 132.30904204870737
Iteration: 11, Func. Count: 174, Neg. LLF: 132.3355068118565
Iteration: 12, Func. Count: 190, Neg. LLF: 132.25424672975717
Iteration: 13, Func. Count: 205, Neg. LLF: 132.51906452524835
Iteration: 14, Func. Count: 221, Neg. LLF: 132.239584937554
Iteration: 15, Func. Count: 236, Neg. LLF: 132.2340041089211
Iteration: 16, Func. Count: 251, Neg. LLF: 132.2327074182947
Iteration: 17, Func. Count: 266, Neg. LLF: 132.23256386291666
Iteration: 18, Func. Count: 281, Neg. LLF: 132.232561851804
Iteration: 19, Func. Count: 296, Neg. LLF: 132.23255908644572
Iteration: 20, Func. Count: 311, Neg. LLF: 132.23255785631372
Iteration: 21, Func. Count: 325, Neg. LLF: 132.23255785637895
Optimization terminated successfully (Exit mode 0)
Current function value: 132.23255785631372
Iterations: 21
Function evaluations: 325
Gradient evaluations: 21
Iteration: 1, Func. Count: 8, Neg. LLF: 141.39621318148215
Iteration: 2, Func. Count: 17, Neg. LLF: 144.74107010560348
Iteration: 3, Func. Count: 25, Neg. LLF: 137.47625619208267
Iteration: 4, Func. Count: 32, Neg. LLF: 137.81699894110386
Iteration: 5, Func. Count: 40, Neg. LLF: 136.94540615621491
Iteration: 6, Func. Count: 47, Neg. LLF: 135.5843898437418
Iteration: 7, Func. Count: 54, Neg. LLF: 135.8904702213925
Iteration: 8, Func. Count: 62, Neg. LLF: 135.018278955263
Iteration: 9, Func. Count: 69, Neg. LLF: 134.8597053633721
Iteration: 10, Func. Count: 76, Neg. LLF: 135.3891576169899
Iteration: 11, Func. Count: 84, Neg. LLF: 149.86831004804577
Iteration: 12, Func. Count: 92, Neg. LLF: 134.86843983361828
Iteration: 13, Func. Count: 100, Neg. LLF: 134.56940217471515
Iteration: 14, Func. Count: 108, Neg. LLF: 134.30399187324906
Iteration: 15, Func. Count: 115, Neg. LLF: 134.23027866449698
Iteration: 16, Func. Count: 122, Neg. LLF: 134.2208917813834
Iteration: 17, Func. Count: 129, Neg. LLF: 134.2219023807186
Iteration: 18, Func. Count: 137, Neg. LLF: 134.21444783956622
Iteration: 19, Func. Count: 145, Neg. LLF: 134.211281237119
Iteration: 20, Func. Count: 151, Neg. LLF: 134.21128123717432
Optimization terminated successfully (Exit mode 0)
Current function value: 134.211281237119
Iterations: 20
Function evaluations: 151
Gradient evaluations: 20
Iteration: 1, Func. Count: 5, Neg. LLF: 142.82829011058647
Iteration: 2, Func. Count: 10, Neg. LLF: 149.44770128321915
Iteration: 3, Func. Count: 15, Neg. LLF: 139.00955196501653
Iteration: 4, Func. Count: 19, Neg. LLF: 138.63856310466682
Iteration: 5, Func. Count: 23, Neg. LLF: 137.97253581750488
Iteration: 6, Func. Count: 27, Neg. LLF: 137.95542255913966
Iteration: 7, Func. Count: 31, Neg. LLF: 137.9434603939992
Iteration: 8, Func. Count: 35, Neg. LLF: 137.94293550454674
Iteration: 9, Func. Count: 39, Neg. LLF: 137.94249267608473
Iteration: 10, Func. Count: 43, Neg. LLF: 137.94246089591095
Iteration: 11, Func. Count: 47, Neg. LLF: 137.94245904967076
Iteration: 12, Func. Count: 50, Neg. LLF: 137.94245913714258
Optimization terminated successfully (Exit mode 0)
Current function value: 137.94245904967076
Iterations: 12
Function evaluations: 50
Gradient evaluations: 12
Iteration: 1, Func. Count: 6, Neg. LLF: 21897450.07564331
Iteration: 2, Func. Count: 13, Neg. LLF: 137.66528850772013
Iteration: 3, Func. Count: 19, Neg. LLF: 135.76901354434452
Iteration: 4, Func. Count: 24, Neg. LLF: 135.9121025937874
Iteration: 5, Func. Count: 30, Neg. LLF: 135.23756673578507
Iteration: 6, Func. Count: 35, Neg. LLF: 135.21810058581644
Iteration: 7, Func. Count: 40, Neg. LLF: 135.21795653103914
Iteration: 8, Func. Count: 44, Neg. LLF: 135.21795653178918
Optimization terminated successfully (Exit mode 0)
Current function value: 135.21795653103914
Iterations: 8
Function evaluations: 44
Gradient evaluations: 8
Iteration: 1, Func. Count: 7, Neg. LLF: 21881615.853712652
Iteration: 2, Func. Count: 15, Neg. LLF: 137.20643686679153
Iteration: 3, Func. Count: 22, Neg. LLF: 135.79778623448286
Iteration: 4, Func. Count: 28, Neg. LLF: 135.91107540108172
Iteration: 5, Func. Count: 35, Neg. LLF: 135.29355846816054
Iteration: 6, Func. Count: 42, Neg. LLF: 135.25221462033306
Iteration: 7, Func. Count: 48, Neg. LLF: 135.2522295136411
Iteration: 8, Func. Count: 55, Neg. LLF: 135.25162826307357
Iteration: 9, Func. Count: 61, Neg. LLF: 135.25158410987743
Iteration: 10, Func. Count: 67, Neg. LLF: 135.25140605327454
Iteration: 11, Func. Count: 73, Neg. LLF: 135.24841856042252
Iteration: 12, Func. Count: 79, Neg. LLF: 135.21947482339937
Iteration: 13, Func. Count: 85, Neg. LLF: 135.2182081894229
Iteration: 14, Func. Count: 91, Neg. LLF: 135.21824984007378
Optimization terminated successfully (Exit mode 0)
Current function value: 135.21820783990594
Iterations: 14
Function evaluations: 92
Gradient evaluations: 14
Iteration: 1, Func. Count: 8, Neg. LLF: 21861314.459320802
Iteration: 2, Func. Count: 17, Neg. LLF: 136.6193218482197
Iteration: 3, Func. Count: 24, Neg. LLF: 135.5361967567032
Iteration: 4, Func. Count: 31, Neg. LLF: 135.44207841423992
Iteration: 5, Func. Count: 38, Neg. LLF: 135.82277292578422
Iteration: 6, Func. Count: 46, Neg. LLF: 135.30319370434748
Iteration: 7, Func. Count: 53, Neg. LLF: 135.27034494773383
Iteration: 8, Func. Count: 60, Neg. LLF: 135.25367323008112
Iteration: 9, Func. Count: 67, Neg. LLF: 135.25232425352775
Iteration: 10, Func. Count: 74, Neg. LLF: 135.2519945311618
Iteration: 11, Func. Count: 81, Neg. LLF: 135.25195122837852
Iteration: 12, Func. Count: 88, Neg. LLF: 135.25173511465002
Iteration: 13, Func. Count: 95, Neg. LLF: 135.2515293639706
Iteration: 14, Func. Count: 102, Neg. LLF: 135.2512310145747
Iteration: 15, Func. Count: 109, Neg. LLF: 135.24209805900497
Iteration: 16, Func. Count: 116, Neg. LLF: 135.22917344931562
Iteration: 17, Func. Count: 123, Neg. LLF: 135.22521434936007
Iteration: 18, Func. Count: 130, Neg. LLF: 21760894.06213295
Iteration: 19, Func. Count: 140, Neg. LLF: 135.21818044046856
Iteration: 20, Func. Count: 148, Neg. LLF: 135.21827308836853
Iteration: 21, Func. Count: 155, Neg. LLF: 135.21795620814112
Optimization terminated successfully (Exit mode 0)
Current function value: 135.2179562037742
Iterations: 22
Function evaluations: 155
Gradient evaluations: 21
Iteration: 1, Func. Count: 9, Neg. LLF: 21835303.303285513
Iteration: 2, Func. Count: 19, Neg. LLF: 136.4141603092838
Iteration: 3, Func. Count: 27, Neg. LLF: 135.54482613904884
Iteration: 4, Func. Count: 35, Neg. LLF: 135.40614202741546
Iteration: 5, Func. Count: 43, Neg. LLF: 135.33537369193922
Iteration: 6, Func. Count: 51, Neg. LLF: 135.29158576804224
Iteration: 7, Func. Count: 59, Neg. LLF: 135.2542263018998
Iteration: 8, Func. Count: 67, Neg. LLF: 135.25147150691916
Iteration: 9, Func. Count: 75, Neg. LLF: 135.2447507610711
Iteration: 10, Func. Count: 83, Neg. LLF: 135.24142845942558
Iteration: 11, Func. Count: 91, Neg. LLF: 135.23973177924518
Iteration: 12, Func. Count: 99, Neg. LLF: 135.23940211023503
Iteration: 13, Func. Count: 106, Neg. LLF: 135.23940212174713
Optimization terminated successfully (Exit mode 0)
Current function value: 135.23940211023503
Iterations: 13
Function evaluations: 106
Gradient evaluations: 13
Iteration: 1, Func. Count: 6, Neg. LLF: 141.9525166808497
Iteration: 2, Func. Count: 12, Neg. LLF: 153.78072530667995
Iteration: 3, Func. Count: 18, Neg. LLF: 137.0358774109768
Iteration: 4, Func. Count: 23, Neg. LLF: 137.03425006780373
Iteration: 5, Func. Count: 28, Neg. LLF: 137.0313927387375
Iteration: 6, Func. Count: 33, Neg. LLF: 137.02965006598365
Iteration: 7, Func. Count: 38, Neg. LLF: 137.02855126583933
Iteration: 8, Func. Count: 43, Neg. LLF: 137.02822366003906
Iteration: 9, Func. Count: 48, Neg. LLF: 137.02807266668185
Iteration: 10, Func. Count: 53, Neg. LLF: 137.0280177496338
Iteration: 11, Func. Count: 58, Neg. LLF: 137.0280074079302
Iteration: 12, Func. Count: 63, Neg. LLF: 137.0280067485351
Optimization terminated successfully (Exit mode 0)
Current function value: 137.0280067485351
Iterations: 12
Function evaluations: 63
Gradient evaluations: 12
Iteration: 1, Func. Count: 7, Neg. LLF: 21897302.88607437
Iteration: 2, Func. Count: 15, Neg. LLF: 137.70352780760868
Iteration: 3, Func. Count: 22, Neg. LLF: 135.80863978095744
Iteration: 4, Func. Count: 28, Neg. LLF: 136.0287920256187
Iteration: 5, Func. Count: 35, Neg. LLF: 135.22726666015396
Iteration: 6, Func. Count: 41, Neg. LLF: 135.2180284194984
Iteration: 7, Func. Count: 47, Neg. LLF: 135.21795651759493
Iteration: 8, Func. Count: 52, Neg. LLF: 135.21795651684158
Optimization terminated successfully (Exit mode 0)
Current function value: 135.21795651759493
Iterations: 8
Function evaluations: 52
Gradient evaluations: 8
Iteration: 1, Func. Count: 8, Neg. LLF: 21877658.827331197
Iteration: 2, Func. Count: 17, Neg. LLF: 137.1873523908646
Iteration: 3, Func. Count: 25, Neg. LLF: 135.78003924622902
Iteration: 4, Func. Count: 32, Neg. LLF: 135.91443327203055
Iteration: 5, Func. Count: 40, Neg. LLF: 135.31131864574382
Iteration: 6, Func. Count: 48, Neg. LLF: 135.25198492522267
Iteration: 7, Func. Count: 55, Neg. LLF: 135.25177110224493
Iteration: 8, Func. Count: 62, Neg. LLF: 135.25166558725775
Iteration: 9, Func. Count: 69, Neg. LLF: 135.25162636192334
Iteration: 10, Func. Count: 76, Neg. LLF: 135.25150754249987
Iteration: 11, Func. Count: 83, Neg. LLF: 135.25117091952922
Iteration: 12, Func. Count: 90, Neg. LLF: 135.23876329019825
Iteration: 13, Func. Count: 97, Neg. LLF: 135.21862377469856
Iteration: 14, Func. Count: 104, Neg. LLF: 21789519.308384016
Iteration: 15, Func. Count: 115, Neg. LLF: 135.22931978472732
Iteration: 16, Func. Count: 123, Neg. LLF: 135.21795620211668
Iteration: 17, Func. Count: 129, Neg. LLF: 135.21795620350616
Optimization terminated successfully (Exit mode 0)
Current function value: 135.21795620211668
Iterations: 18
Function evaluations: 129
Gradient evaluations: 17
Iteration: 1, Func. Count: 9, Neg. LLF: 21852911.177850634
Iteration: 2, Func. Count: 19, Neg. LLF: 136.56604895083902
Iteration: 3, Func. Count: 27, Neg. LLF: 135.54696281164914
Iteration: 4, Func. Count: 35, Neg. LLF: 135.44182005513912
Iteration: 5, Func. Count: 43, Neg. LLF: 135.8112951275155
Iteration: 6, Func. Count: 52, Neg. LLF: 135.30850862494128
Iteration: 7, Func. Count: 60, Neg. LLF: 135.2738564006839
Iteration: 8, Func. Count: 68, Neg. LLF: 135.25396032921938
Iteration: 9, Func. Count: 76, Neg. LLF: 135.25252482808745
Iteration: 10, Func. Count: 84, Neg. LLF: 135.25185913241398
Iteration: 11, Func. Count: 92, Neg. LLF: 135.25183568095355
Iteration: 12, Func. Count: 100, Neg. LLF: 135.25173631874713
Iteration: 13, Func. Count: 108, Neg. LLF: 135.25149871630867
Iteration: 14, Func. Count: 116, Neg. LLF: 135.25115936828965
Iteration: 15, Func. Count: 124, Neg. LLF: 135.23885443616228
Iteration: 16, Func. Count: 132, Neg. LLF: 138.92944299147177
Iteration: 17, Func. Count: 143, Neg. LLF: 137.0961553661068
Iteration: 18, Func. Count: 154, Neg. LLF: 135.22865445612987
Iteration: 19, Func. Count: 162, Neg. LLF: 3847448.015886424
Iteration: 20, Func. Count: 175, Neg. LLF: 135.22530797243974
Iteration: 21, Func. Count: 183, Neg. LLF: 135.21980335487555
Iteration: 22, Func. Count: 191, Neg. LLF: 135.21826432579658
Iteration: 23, Func. Count: 199, Neg. LLF: 135.2179564006243
Iteration: 24, Func. Count: 206, Neg. LLF: 135.21795640426575
Optimization terminated successfully (Exit mode 0)
Current function value: 135.2179564006243
Iterations: 25
Function evaluations: 206
Gradient evaluations: 24
Iteration: 1, Func. Count: 10, Neg. LLF: 21830926.944162186
Iteration: 2, Func. Count: 21, Neg. LLF: 136.36938917315703
Iteration: 3, Func. Count: 30, Neg. LLF: 135.53996438758145
Iteration: 4, Func. Count: 39, Neg. LLF: 135.42166471193048
Iteration: 5, Func. Count: 48, Neg. LLF: 135.3211892818031
Iteration: 6, Func. Count: 57, Neg. LLF: 135.29004027336072
Iteration: 7, Func. Count: 66, Neg. LLF: 135.27869548629263
Iteration: 8, Func. Count: 75, Neg. LLF: 135.2736631587622
Iteration: 9, Func. Count: 84, Neg. LLF: 135.27288067183008
Iteration: 10, Func. Count: 93, Neg. LLF: 135.27286374428851
Iteration: 11, Func. Count: 101, Neg. LLF: 135.27286374425083
Optimization terminated successfully (Exit mode 0)
Current function value: 135.27286374428851
Iterations: 11
Function evaluations: 101
Gradient evaluations: 11
Iteration: 1, Func. Count: 7, Neg. LLF: 139.42740243572484
Iteration: 2, Func. Count: 13, Neg. LLF: 150.17676021230628
Iteration: 3, Func. Count: 20, Neg. LLF: 137.38011872358732
Iteration: 4, Func. Count: 26, Neg. LLF: 137.10079517425714
Iteration: 5, Func. Count: 32, Neg. LLF: 137.05164120988957
Iteration: 6, Func. Count: 38, Neg. LLF: 137.0385831959429
Iteration: 7, Func. Count: 44, Neg. LLF: 137.02990756822035
Iteration: 8, Func. Count: 50, Neg. LLF: 137.02822289187975
Iteration: 9, Func. Count: 56, Neg. LLF: 137.02800732717117
Iteration: 10, Func. Count: 62, Neg. LLF: 137.0280067427096
Optimization terminated successfully (Exit mode 0)
Current function value: 137.0280067427096
Iterations: 10
Function evaluations: 62
Gradient evaluations: 10
Iteration: 1, Func. Count: 8, Neg. LLF: 21902474.455137644
Iteration: 2, Func. Count: 17, Neg. LLF: 137.7698876990255
Iteration: 3, Func. Count: 25, Neg. LLF: 135.90547089137706
Iteration: 4, Func. Count: 32, Neg. LLF: 136.37852036408816
Iteration: 5, Func. Count: 40, Neg. LLF: 135.22027594293033
Iteration: 6, Func. Count: 47, Neg. LLF: 135.21801823457898
Iteration: 7, Func. Count: 54, Neg. LLF: 135.21795629198752
Iteration: 8, Func. Count: 60, Neg. LLF: 135.21795629155457
Optimization terminated successfully (Exit mode 0)
Current function value: 135.21795629198752
Iterations: 8
Function evaluations: 60
Gradient evaluations: 8
Iteration: 1, Func. Count: 9, Neg. LLF: 21880317.48507018
Iteration: 2, Func. Count: 19, Neg. LLF: 137.2173800215344
Iteration: 3, Func. Count: 28, Neg. LLF: 135.78683272681795
Iteration: 4, Func. Count: 36, Neg. LLF: 136.02496956023046
Iteration: 5, Func. Count: 45, Neg. LLF: 135.32011049679772
Iteration: 6, Func. Count: 54, Neg. LLF: 135.25223730333423
Iteration: 7, Func. Count: 62, Neg. LLF: 135.25213708033527
Iteration: 8, Func. Count: 71, Neg. LLF: 135.25169127785503
Iteration: 9, Func. Count: 79, Neg. LLF: 135.25162636411787
Iteration: 10, Func. Count: 87, Neg. LLF: 135.25147012574615
Iteration: 11, Func. Count: 95, Neg. LLF: 135.25024928086762
Iteration: 12, Func. Count: 103, Neg. LLF: 135.21814780238086
Iteration: 13, Func. Count: 111, Neg. LLF: 135.6412269517687
Iteration: 14, Func. Count: 121, Neg. LLF: 2381.445944516566
Optimization terminated successfully (Exit mode 0)
Current function value: 135.21810695178758
Iterations: 15
Function evaluations: 126
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 21857254.421132527
Iteration: 2, Func. Count: 21, Neg. LLF: 136.62203352261022
Iteration: 3, Func. Count: 30, Neg. LLF: 135.5509351373485
Iteration: 4, Func. Count: 39, Neg. LLF: 135.4607706046737
Iteration: 5, Func. Count: 48, Neg. LLF: 135.94792360745137
Iteration: 6, Func. Count: 58, Neg. LLF: 135.29860428668044
Iteration: 7, Func. Count: 67, Neg. LLF: 135.2689091000692
Iteration: 8, Func. Count: 76, Neg. LLF: 135.25347659766842
Iteration: 9, Func. Count: 85, Neg. LLF: 135.25230744289087
Iteration: 10, Func. Count: 94, Neg. LLF: 135.2520108519156
Iteration: 11, Func. Count: 103, Neg. LLF: 135.2519647410256
Iteration: 12, Func. Count: 112, Neg. LLF: 135.25174572940227
Iteration: 13, Func. Count: 121, Neg. LLF: 135.25153334990904
Iteration: 14, Func. Count: 130, Neg. LLF: 135.25125726867782
Iteration: 15, Func. Count: 139, Neg. LLF: 135.24379327730094
Iteration: 16, Func. Count: 148, Neg. LLF: 135.21832641569543
Iteration: 17, Func. Count: 157, Neg. LLF: 21765402.751437854
Iteration: 18, Func. Count: 170, Neg. LLF: 135.21815966149714
Iteration: 19, Func. Count: 179, Neg. LLF: 135.21795623091984
Iteration: 20, Func. Count: 187, Neg. LLF: 135.21795623521768
Optimization terminated successfully (Exit mode 0)
Current function value: 135.21795623091984
Iterations: 21
Function evaluations: 187
Gradient evaluations: 20
Iteration: 1, Func. Count: 11, Neg. LLF: 21836272.41564163
Iteration: 2, Func. Count: 23, Neg. LLF: 136.42501290817353
Iteration: 3, Func. Count: 33, Neg. LLF: 135.5434288945607
Iteration: 4, Func. Count: 43, Neg. LLF: 135.422677474625
Iteration: 5, Func. Count: 53, Neg. LLF: 135.315989262021
Iteration: 6, Func. Count: 63, Neg. LLF: 135.27788013664718
Iteration: 7, Func. Count: 73, Neg. LLF: 135.27485889759495
Iteration: 8, Func. Count: 83, Neg. LLF: 135.27292950697773
Iteration: 9, Func. Count: 93, Neg. LLF: 135.27286376680416
Iteration: 10, Func. Count: 102, Neg. LLF: 135.27286376663704
Optimization terminated successfully (Exit mode 0)
Current function value: 135.27286376680416
Iterations: 10
Function evaluations: 102
Gradient evaluations: 10
Iteration: 1, Func. Count: 8, Neg. LLF: 137.89594849147133
Iteration: 2, Func. Count: 15, Neg. LLF: 144.57680153288183
Iteration: 3, Func. Count: 23, Neg. LLF: 137.3784263955951
Iteration: 4, Func. Count: 30, Neg. LLF: 137.2406475476862
Iteration: 5, Func. Count: 37, Neg. LLF: 137.10427485275244
Iteration: 6, Func. Count: 44, Neg. LLF: 137.07657057860888
Iteration: 7, Func. Count: 51, Neg. LLF: 137.0442240407869
Iteration: 8, Func. Count: 58, Neg. LLF: 137.03388587117252
Iteration: 9, Func. Count: 65, Neg. LLF: 137.02804137793743
Iteration: 10, Func. Count: 72, Neg. LLF: 137.02800687423118
Iteration: 11, Func. Count: 78, Neg. LLF: 137.02800716826403
Optimization terminated successfully (Exit mode 0)
Current function value: 137.02800687423118
Iterations: 11
Function evaluations: 78
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 21898885.118579853
Iteration: 2, Func. Count: 19, Neg. LLF: 137.77205648919858
Iteration: 3, Func. Count: 28, Neg. LLF: 135.8951839545462
Iteration: 4, Func. Count: 36, Neg. LLF: 136.38104558802198
Iteration: 5, Func. Count: 45, Neg. LLF: 135.219980692383
Iteration: 6, Func. Count: 53, Neg. LLF: 135.21800564941998
Iteration: 7, Func. Count: 61, Neg. LLF: 135.21795635258587
Iteration: 8, Func. Count: 68, Neg. LLF: 135.2179563523973
Optimization terminated successfully (Exit mode 0)
Current function value: 135.21795635258587
Iterations: 8
Function evaluations: 68
Gradient evaluations: 8
Iteration: 1, Func. Count: 10, Neg. LLF: 21880645.5800846
Iteration: 2, Func. Count: 21, Neg. LLF: 137.23210728344225
Iteration: 3, Func. Count: 31, Neg. LLF: 135.79825932076488
Iteration: 4, Func. Count: 40, Neg. LLF: 135.839073697611
Iteration: 5, Func. Count: 50, Neg. LLF: 135.30904992847698
Iteration: 6, Func. Count: 60, Neg. LLF: 135.25199464694725
Iteration: 7, Func. Count: 69, Neg. LLF: 135.25170846903785
Iteration: 8, Func. Count: 78, Neg. LLF: 135.2516709962435
Iteration: 9, Func. Count: 87, Neg. LLF: 135.25160419772922
Iteration: 10, Func. Count: 96, Neg. LLF: 135.25136883477563
Iteration: 11, Func. Count: 105, Neg. LLF: 135.2473108222981
Iteration: 12, Func. Count: 114, Neg. LLF: 135.2180953028861
Iteration: 13, Func. Count: 123, Neg. LLF: 21763258.718282606
Iteration: 14, Func. Count: 136, Neg. LLF: 135.21797207234172
Optimization terminated successfully (Exit mode 0)
Current function value: 135.21795629394987
Iterations: 15
Function evaluations: 137
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 21858797.48597786
Iteration: 2, Func. Count: 23, Neg. LLF: 136.63727859830382
Iteration: 3, Func. Count: 33, Neg. LLF: 135.55627016349175
Iteration: 4, Func. Count: 43, Neg. LLF: 135.46040932538477
Iteration: 5, Func. Count: 53, Neg. LLF: 135.96223888919803
Iteration: 6, Func. Count: 64, Neg. LLF: 135.29901332649808
Iteration: 7, Func. Count: 74, Neg. LLF: 135.26837737671644
Iteration: 8, Func. Count: 84, Neg. LLF: 135.25344341339863
Iteration: 9, Func. Count: 94, Neg. LLF: 135.2523325387404
Iteration: 10, Func. Count: 104, Neg. LLF: 135.25206716727317
Iteration: 11, Func. Count: 114, Neg. LLF: 135.2520102108152
Iteration: 12, Func. Count: 124, Neg. LLF: 135.25175229970057
Iteration: 13, Func. Count: 134, Neg. LLF: 135.25154470423564
Iteration: 14, Func. Count: 144, Neg. LLF: 135.251281232988
Iteration: 15, Func. Count: 154, Neg. LLF: 135.24462550238295
Iteration: 16, Func. Count: 164, Neg. LLF: 135.21829978903398
Iteration: 17, Func. Count: 174, Neg. LLF: 21768069.999519654
Iteration: 18, Func. Count: 188, Neg. LLF: 135.21876236839793
Iteration: 19, Func. Count: 199, Neg. LLF: 135.21795620237498
Iteration: 20, Func. Count: 208, Neg. LLF: 135.2179562066536
Optimization terminated successfully (Exit mode 0)
Current function value: 135.21795620237498
Iterations: 21
Function evaluations: 208
Gradient evaluations: 20
Iteration: 1, Func. Count: 12, Neg. LLF: 21838348.526265286
Iteration: 2, Func. Count: 25, Neg. LLF: 136.4294514981675
Iteration: 3, Func. Count: 36, Neg. LLF: 135.5196456923792
Iteration: 4, Func. Count: 47, Neg. LLF: 135.41088420450382
Iteration: 5, Func. Count: 58, Neg. LLF: 135.30215699557482
Iteration: 6, Func. Count: 69, Neg. LLF: 135.2741721310632
Iteration: 7, Func. Count: 80, Neg. LLF: 135.27296914496145
Iteration: 8, Func. Count: 91, Neg. LLF: 135.27286386136234
Iteration: 9, Func. Count: 101, Neg. LLF: 135.27286386114824
Optimization terminated successfully (Exit mode 0)
Current function value: 135.27286386136234
Iterations: 9
Function evaluations: 101
Gradient evaluations: 9
Iteration: 1, Func. Count: 5, Neg. LLF: 136.66696467211807
Iteration: 2, Func. Count: 9, Neg. LLF: 140.98148951733347
Iteration: 3, Func. Count: 14, Neg. LLF: 135.9268807303529
Iteration: 4, Func. Count: 18, Neg. LLF: 135.96869900237695
Iteration: 5, Func. Count: 23, Neg. LLF: 135.60914914349652
Iteration: 6, Func. Count: 27, Neg. LLF: 135.60577364161216
Iteration: 7, Func. Count: 31, Neg. LLF: 135.60575494607826
Iteration: 8, Func. Count: 35, Neg. LLF: 135.6057533137045
Iteration: 9, Func. Count: 38, Neg. LLF: 135.60575332213216
Optimization terminated successfully (Exit mode 0)
Current function value: 135.6057533137045
Iterations: 9
Function evaluations: 38
Gradient evaluations: 9
Iteration: 1, Func. Count: 6, Neg. LLF: 135.96555574882416
Iteration: 2, Func. Count: 11, Neg. LLF: 136.96887358707392
Iteration: 3, Func. Count: 17, Neg. LLF: 135.86698053166046
Iteration: 4, Func. Count: 22, Neg. LLF: 138.70897492643888
Iteration: 5, Func. Count: 30, Neg. LLF: 135.7337331075739
Iteration: 6, Func. Count: 35, Neg. LLF: 135.64874678349105
Iteration: 7, Func. Count: 40, Neg. LLF: 135.57145454164956
Iteration: 8, Func. Count: 45, Neg. LLF: 135.54957112223113
Iteration: 9, Func. Count: 50, Neg. LLF: 135.54788659973428
Iteration: 10, Func. Count: 55, Neg. LLF: 135.54786301602843
Iteration: 11, Func. Count: 59, Neg. LLF: 135.54786300412317
Optimization terminated successfully (Exit mode 0)
Current function value: 135.54786301602843
Iterations: 11
Function evaluations: 59
Gradient evaluations: 11
Iteration: 1, Func. Count: 7, Neg. LLF: 136.10462309090636
Iteration: 2, Func. Count: 13, Neg. LLF: 137.21463479531593
Iteration: 3, Func. Count: 20, Neg. LLF: 136.16772780766675
Iteration: 4, Func. Count: 27, Neg. LLF: 138.55009935234662
Iteration: 5, Func. Count: 36, Neg. LLF: 135.7410898757085
Iteration: 6, Func. Count: 42, Neg. LLF: 135.54848327814614
Iteration: 7, Func. Count: 48, Neg. LLF: 135.54791814747674
Iteration: 8, Func. Count: 54, Neg. LLF: 135.547863113592
Iteration: 9, Func. Count: 59, Neg. LLF: 135.54786311237444
Optimization terminated successfully (Exit mode 0)
Current function value: 135.547863113592
Iterations: 9
Function evaluations: 59
Gradient evaluations: 9
Iteration: 1, Func. Count: 8, Neg. LLF: 21803078.64855989
Iteration: 2, Func. Count: 17, Neg. LLF: 136.62336658420745
Iteration: 3, Func. Count: 24, Neg. LLF: 135.6572547423227
Iteration: 4, Func. Count: 31, Neg. LLF: 135.67294790800503
Iteration: 5, Func. Count: 39, Neg. LLF: 135.28864033029234
Iteration: 6, Func. Count: 46, Neg. LLF: 135.25235436533757
Iteration: 7, Func. Count: 53, Neg. LLF: 135.24111576921416
Iteration: 8, Func. Count: 60, Neg. LLF: 135.23967487152365
Iteration: 9, Func. Count: 67, Neg. LLF: 135.23943341747355
Iteration: 10, Func. Count: 74, Neg. LLF: 135.23940247999118
Iteration: 11, Func. Count: 81, Neg. LLF: 135.2394018646081
Optimization terminated successfully (Exit mode 0)
Current function value: 135.2394018646081
Iterations: 11
Function evaluations: 81
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 21784001.9361916
Iteration: 2, Func. Count: 19, Neg. LLF: 136.20840774728214
Iteration: 3, Func. Count: 27, Neg. LLF: 135.52045650803643
Iteration: 4, Func. Count: 35, Neg. LLF: 135.4286237711784
Iteration: 5, Func. Count: 43, Neg. LLF: 135.31362672058833
Iteration: 6, Func. Count: 51, Neg. LLF: 135.2762500283649
Iteration: 7, Func. Count: 59, Neg. LLF: 135.27372892817067
Iteration: 8, Func. Count: 67, Neg. LLF: 135.27287174838875
Iteration: 9, Func. Count: 75, Neg. LLF: 135.27286372791062
Iteration: 10, Func. Count: 82, Neg. LLF: 135.2728637279388
Optimization terminated successfully (Exit mode 0)
Current function value: 135.27286372791062
Iterations: 10
Function evaluations: 82
Gradient evaluations: 10
Iteration: 1, Func. Count: 6, Neg. LLF: 136.48266830080036
Iteration: 2, Func. Count: 11, Neg. LLF: 141.09388005778558
Iteration: 3, Func. Count: 17, Neg. LLF: 135.80348978025123
Iteration: 4, Func. Count: 22, Neg. LLF: 136.16372250752366
Iteration: 5, Func. Count: 28, Neg. LLF: 135.5075742048582
Iteration: 6, Func. Count: 33, Neg. LLF: 135.49639376553722
Iteration: 7, Func. Count: 38, Neg. LLF: 135.49637542113274
Iteration: 8, Func. Count: 43, Neg. LLF: 135.49637422465588
Iteration: 9, Func. Count: 47, Neg. LLF: 135.4963742188248
Optimization terminated successfully (Exit mode 0)
Current function value: 135.49637422465588
Iterations: 9
Function evaluations: 47
Gradient evaluations: 9
Iteration: 1, Func. Count: 7, Neg. LLF: 135.9878162536725
Iteration: 2, Func. Count: 13, Neg. LLF: 137.38367087724015
Iteration: 3, Func. Count: 20, Neg. LLF: 135.74251067517122
Iteration: 4, Func. Count: 26, Neg. LLF: 152.7742676820703
Iteration: 5, Func. Count: 33, Neg. LLF: 135.6841492226219
Iteration: 6, Func. Count: 40, Neg. LLF: 135.41960777896475
Iteration: 7, Func. Count: 46, Neg. LLF: 135.41222237877747
Iteration: 8, Func. Count: 52, Neg. LLF: 135.41154721682642
Iteration: 9, Func. Count: 58, Neg. LLF: 135.4115431117248
Iteration: 10, Func. Count: 64, Neg. LLF: 135.41154226420593
Optimization terminated successfully (Exit mode 0)
Current function value: 135.41154226420593
Iterations: 10
Function evaluations: 64
Gradient evaluations: 10
Iteration: 1, Func. Count: 8, Neg. LLF: 139.81381791948291
Iteration: 2, Func. Count: 16, Neg. LLF: 138.39670150960967
Iteration: 3, Func. Count: 24, Neg. LLF: 134.24643890207466
Iteration: 4, Func. Count: 31, Neg. LLF: 133.21768519229911
Iteration: 5, Func. Count: 38, Neg. LLF: 132.44560717729416
Iteration: 6, Func. Count: 45, Neg. LLF: 131.92695738506453
Iteration: 7, Func. Count: 52, Neg. LLF: 132.0362723306094
Iteration: 8, Func. Count: 60, Neg. LLF: 131.53868860481447
Iteration: 9, Func. Count: 67, Neg. LLF: 131.5127846512609
Iteration: 10, Func. Count: 74, Neg. LLF: 131.51002135522637
Iteration: 11, Func. Count: 81, Neg. LLF: 131.50976392313345
Iteration: 12, Func. Count: 88, Neg. LLF: 131.50976279085975
Iteration: 13, Func. Count: 94, Neg. LLF: 131.50976279085222
Optimization terminated successfully (Exit mode 0)
Current function value: 131.50976279085975
Iterations: 13
Function evaluations: 94
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 138.49541273570338
Iteration: 2, Func. Count: 18, Neg. LLF: 136.98335223218632
Iteration: 3, Func. Count: 27, Neg. LLF: 137.3932581681225
Iteration: 4, Func. Count: 36, Neg. LLF: 133.1441789203306
Iteration: 5, Func. Count: 44, Neg. LLF: 132.67488873020127
Iteration: 6, Func. Count: 52, Neg. LLF: 138.64025232141577
Iteration: 7, Func. Count: 61, Neg. LLF: 168.3926435227072
Iteration: 8, Func. Count: 70, Neg. LLF: 134.9501456277727
Iteration: 9, Func. Count: 79, Neg. LLF: 131.91769844980377
Iteration: 10, Func. Count: 88, Neg. LLF: 131.57530050074328
Iteration: 11, Func. Count: 96, Neg. LLF: 131.5122062475429
Iteration: 12, Func. Count: 104, Neg. LLF: 131.51007738531544
Iteration: 13, Func. Count: 112, Neg. LLF: 131.5097743130137
Iteration: 14, Func. Count: 120, Neg. LLF: 131.50976279375095
Iteration: 15, Func. Count: 127, Neg. LLF: 131.50976285770724
Optimization terminated successfully (Exit mode 0)
Current function value: 131.50976279375095
Iterations: 15
Function evaluations: 127
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 264.5976445161294
Iteration: 2, Func. Count: 20, Neg. LLF: 138.53764443433775
Iteration: 3, Func. Count: 30, Neg. LLF: 134.5309850787626
Iteration: 4, Func. Count: 39, Neg. LLF: 145.85580085705092
Iteration: 5, Func. Count: 50, Neg. LLF: 168.84398699573697
Iteration: 6, Func. Count: 61, Neg. LLF: 131.92055788943523
Iteration: 7, Func. Count: 71, Neg. LLF: 131.59354665764192
Iteration: 8, Func. Count: 80, Neg. LLF: 131.54740637300947
Iteration: 9, Func. Count: 89, Neg. LLF: 131.5203994656407
Iteration: 10, Func. Count: 98, Neg. LLF: 131.51666830774198
Iteration: 11, Func. Count: 107, Neg. LLF: 131.51010274816988
Iteration: 12, Func. Count: 116, Neg. LLF: 131.50985091469232
Iteration: 13, Func. Count: 125, Neg. LLF: 131.50978023176174
Iteration: 14, Func. Count: 134, Neg. LLF: 131.50976513418777
Iteration: 15, Func. Count: 143, Neg. LLF: 131.509762826948
Iteration: 16, Func. Count: 151, Neg. LLF: 131.50976287871197
Optimization terminated successfully (Exit mode 0)
Current function value: 131.509762826948
Iterations: 16
Function evaluations: 151
Gradient evaluations: 16
Iteration: 1, Func. Count: 7, Neg. LLF: 135.2936027342264
Iteration: 2, Func. Count: 13, Neg. LLF: 138.1251100435463
Iteration: 3, Func. Count: 20, Neg. LLF: 134.1631462310872
Iteration: 4, Func. Count: 26, Neg. LLF: 134.23780222839048
Iteration: 5, Func. Count: 33, Neg. LLF: 133.7775886805242
Iteration: 6, Func. Count: 39, Neg. LLF: 133.75433066071534
Iteration: 7, Func. Count: 45, Neg. LLF: 133.74753984232004
Iteration: 8, Func. Count: 51, Neg. LLF: 133.74749451049271
Iteration: 9, Func. Count: 57, Neg. LLF: 133.74748876328096
Iteration: 10, Func. Count: 62, Neg. LLF: 133.7474887628073
Optimization terminated successfully (Exit mode 0)
Current function value: 133.74748876328096
Iterations: 10
Function evaluations: 62
Gradient evaluations: 10
Iteration: 1, Func. Count: 8, Neg. LLF: 139.37288642083587
Iteration: 2, Func. Count: 16, Neg. LLF: 139.26988440836442
Iteration: 3, Func. Count: 24, Neg. LLF: 136.90756615100187
Iteration: 4, Func. Count: 31, Neg. LLF: 137.0932609671162
Iteration: 5, Func. Count: 39, Neg. LLF: 137.01495654705383
Iteration: 6, Func. Count: 47, Neg. LLF: 136.5814760964392
Iteration: 7, Func. Count: 54, Neg. LLF: 136.5029032865576
Iteration: 8, Func. Count: 61, Neg. LLF: 136.49833929630145
Iteration: 9, Func. Count: 69, Neg. LLF: 136.86666565930915
Iteration: 10, Func. Count: 77, Neg. LLF: 136.2553247635774
Iteration: 11, Func. Count: 84, Neg. LLF: 136.1718051725362
Iteration: 12, Func. Count: 91, Neg. LLF: 135.83637429302286
Iteration: 13, Func. Count: 98, Neg. LLF: 135.82154778800708
Iteration: 14, Func. Count: 106, Neg. LLF: 135.44384393044243
Iteration: 15, Func. Count: 113, Neg. LLF: 135.38999605065598
Iteration: 16, Func. Count: 120, Neg. LLF: 135.36125115471313
Iteration: 17, Func. Count: 127, Neg. LLF: 135.35475652011883
Iteration: 18, Func. Count: 134, Neg. LLF: 135.34702859238843
Iteration: 19, Func. Count: 141, Neg. LLF: 135.33446725686383
Iteration: 20, Func. Count: 148, Neg. LLF: 135.32867209812835
Iteration: 21, Func. Count: 155, Neg. LLF: 135.32451524857183
Iteration: 22, Func. Count: 162, Neg. LLF: 135.32411075331478
Iteration: 23, Func. Count: 169, Neg. LLF: 135.32410173509692
Iteration: 24, Func. Count: 175, Neg. LLF: 135.32410179085682
Optimization terminated successfully (Exit mode 0)
Current function value: 135.32410173509692
Iterations: 24
Function evaluations: 175
Gradient evaluations: 24
Iteration: 1, Func. Count: 9, Neg. LLF: 139.8078850284114
Iteration: 2, Func. Count: 18, Neg. LLF: 138.31828650432806
Iteration: 3, Func. Count: 27, Neg. LLF: 134.23393079928724
Iteration: 4, Func. Count: 35, Neg. LLF: 133.20492907774525
Iteration: 5, Func. Count: 43, Neg. LLF: 132.4441901133827
Iteration: 6, Func. Count: 51, Neg. LLF: 131.9198260008791
Iteration: 7, Func. Count: 59, Neg. LLF: 131.91289463689907
Iteration: 8, Func. Count: 68, Neg. LLF: 131.54651697686126
Iteration: 9, Func. Count: 76, Neg. LLF: 131.51128731173986
Iteration: 10, Func. Count: 84, Neg. LLF: 131.5098902445006
Iteration: 11, Func. Count: 92, Neg. LLF: 131.50976290783802
Iteration: 12, Func. Count: 99, Neg. LLF: 131.50976290788438
Optimization terminated successfully (Exit mode 0)
Current function value: 131.50976290783802
Iterations: 12
Function evaluations: 99
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 10823766.60401428
Iteration: 2, Func. Count: 20, Neg. LLF: 133.69409494807644
Iteration: 3, Func. Count: 29, Neg. LLF: 133.31515938894975
Iteration: 4, Func. Count: 39, Neg. LLF: 132.01933580438188
Iteration: 5, Func. Count: 49, Neg. LLF: 131.53417263767628
Iteration: 6, Func. Count: 58, Neg. LLF: 131.5247065243196
Iteration: 7, Func. Count: 67, Neg. LLF: 131.51414487952064
Iteration: 8, Func. Count: 76, Neg. LLF: 131.51000207722734
Iteration: 9, Func. Count: 85, Neg. LLF: 131.50976915731738
Iteration: 10, Func. Count: 94, Neg. LLF: 131.50976279205918
Iteration: 11, Func. Count: 102, Neg. LLF: 131.50976285598077
Optimization terminated successfully (Exit mode 0)
Current function value: 131.50976279205918
Iterations: 11
Function evaluations: 102
Gradient evaluations: 11
Iteration: 1, Func. Count: 11, Neg. LLF: 265.04692232656186
Iteration: 2, Func. Count: 22, Neg. LLF: 138.3546301511661
Iteration: 3, Func. Count: 33, Neg. LLF: 134.51221327463955
Iteration: 4, Func. Count: 43, Neg. LLF: 145.87932882686718
Iteration: 5, Func. Count: 55, Neg. LLF: 227.31329601236408
Iteration: 6, Func. Count: 67, Neg. LLF: 131.82821885882606
Iteration: 7, Func. Count: 77, Neg. LLF: 131.67433862702111
Iteration: 8, Func. Count: 87, Neg. LLF: 131.5213223137942
Iteration: 9, Func. Count: 97, Neg. LLF: 131.51378946369604
Iteration: 10, Func. Count: 107, Neg. LLF: 131.51111912408786
Iteration: 11, Func. Count: 117, Neg. LLF: 131.5104364393053
Iteration: 12, Func. Count: 127, Neg. LLF: 131.5097963997621
Iteration: 13, Func. Count: 137, Neg. LLF: 131.5097643174003
Iteration: 14, Func. Count: 147, Neg. LLF: 131.5097627756172
Iteration: 15, Func. Count: 156, Neg. LLF: 131.50976282737298
Optimization terminated successfully (Exit mode 0)
Current function value: 131.5097627756172
Iterations: 15
Function evaluations: 156
Gradient evaluations: 15
Iteration: 1, Func. Count: 8, Neg. LLF: 134.916316320277
Iteration: 2, Func. Count: 15, Neg. LLF: 134.43780210576722
Iteration: 3, Func. Count: 22, Neg. LLF: 140.28491372459803
Iteration: 4, Func. Count: 30, Neg. LLF: 133.99903447340571
Iteration: 5, Func. Count: 37, Neg. LLF: 133.7992050682204
Iteration: 6, Func. Count: 44, Neg. LLF: 133.75591798354787
Iteration: 7, Func. Count: 51, Neg. LLF: 133.74940992299247
Iteration: 8, Func. Count: 58, Neg. LLF: 133.74782699321835
Iteration: 9, Func. Count: 65, Neg. LLF: 133.74750139800642
Iteration: 10, Func. Count: 72, Neg. LLF: 133.74748888044823
Iteration: 11, Func. Count: 78, Neg. LLF: 133.74748906658496
Optimization terminated successfully (Exit mode 0)
Current function value: 133.74748888044823
Iterations: 11
Function evaluations: 78
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 138.8925887345659
Iteration: 2, Func. Count: 18, Neg. LLF: 138.29658625660358
Iteration: 3, Func. Count: 27, Neg. LLF: 136.16465384683207
Iteration: 4, Func. Count: 35, Neg. LLF: 135.86130093956967
Iteration: 5, Func. Count: 43, Neg. LLF: 143.43702643721764
Iteration: 6, Func. Count: 54, Neg. LLF: 135.6427989476618
Iteration: 7, Func. Count: 62, Neg. LLF: 135.35274858791436
Iteration: 8, Func. Count: 70, Neg. LLF: 135.32833902861455
Iteration: 9, Func. Count: 78, Neg. LLF: 135.3259361058611
Iteration: 10, Func. Count: 86, Neg. LLF: 135.3245128700151
Iteration: 11, Func. Count: 94, Neg. LLF: 135.32413999476796
Iteration: 12, Func. Count: 102, Neg. LLF: 135.32410815964738
Iteration: 13, Func. Count: 110, Neg. LLF: 135.32410305484123
Iteration: 14, Func. Count: 118, Neg. LLF: 135.32410145333714
Iteration: 15, Func. Count: 125, Neg. LLF: 135.32410150897675
Optimization terminated successfully (Exit mode 0)
Current function value: 135.32410145333714
Iterations: 15
Function evaluations: 125
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 139.81858517576424
Iteration: 2, Func. Count: 20, Neg. LLF: 138.52434453472227
Iteration: 3, Func. Count: 30, Neg. LLF: 134.27400387949478
Iteration: 4, Func. Count: 39, Neg. LLF: 133.21063309026525
Iteration: 5, Func. Count: 48, Neg. LLF: 132.47144281634237
Iteration: 6, Func. Count: 57, Neg. LLF: 131.93539851352665
Iteration: 7, Func. Count: 66, Neg. LLF: 131.96621105375164
Iteration: 8, Func. Count: 76, Neg. LLF: 131.53856832216374
Iteration: 9, Func. Count: 85, Neg. LLF: 131.5119411179591
Iteration: 10, Func. Count: 94, Neg. LLF: 131.50991221815102
Iteration: 11, Func. Count: 103, Neg. LLF: 131.50976313255939
Iteration: 12, Func. Count: 111, Neg. LLF: 131.50976313263203
Optimization terminated successfully (Exit mode 0)
Current function value: 131.50976313255939
Iterations: 12
Function evaluations: 111
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 10831772.527893996
Iteration: 2, Func. Count: 22, Neg. LLF: 133.75069756236584
Iteration: 3, Func. Count: 32, Neg. LLF: 133.33063735187753
Iteration: 4, Func. Count: 43, Neg. LLF: 132.03391212116796
Iteration: 5, Func. Count: 54, Neg. LLF: 131.53401676073764
Iteration: 6, Func. Count: 64, Neg. LLF: 131.52467474358133
Iteration: 7, Func. Count: 74, Neg. LLF: 131.51441037906326
Iteration: 8, Func. Count: 84, Neg. LLF: 131.51002701285438
Iteration: 9, Func. Count: 94, Neg. LLF: 131.50977022380593
Iteration: 10, Func. Count: 104, Neg. LLF: 131.50976279838147
Iteration: 11, Func. Count: 113, Neg. LLF: 131.50976286229908
Optimization terminated successfully (Exit mode 0)
Current function value: 131.50976279838147
Iterations: 11
Function evaluations: 113
Gradient evaluations: 11
Iteration: 1, Func. Count: 12, Neg. LLF: 264.20624889378223
Iteration: 2, Func. Count: 24, Neg. LLF: 138.54151842189827
Iteration: 3, Func. Count: 36, Neg. LLF: 134.595899684391
Iteration: 4, Func. Count: 47, Neg. LLF: 145.805404362014
Iteration: 5, Func. Count: 60, Neg. LLF: 237.83003701790585
Iteration: 6, Func. Count: 73, Neg. LLF: 131.8395868824075
Iteration: 7, Func. Count: 84, Neg. LLF: 131.68333196224503
Iteration: 8, Func. Count: 95, Neg. LLF: 131.5210744448764
Iteration: 9, Func. Count: 106, Neg. LLF: 131.51408713088733
Iteration: 10, Func. Count: 117, Neg. LLF: 131.5111910111992
Iteration: 11, Func. Count: 128, Neg. LLF: 131.5104669066547
Iteration: 12, Func. Count: 139, Neg. LLF: 131.5097972638024
Iteration: 13, Func. Count: 150, Neg. LLF: 131.50976449487618
Iteration: 14, Func. Count: 161, Neg. LLF: 131.50976284671376
Iteration: 15, Func. Count: 171, Neg. LLF: 131.509762898428
Optimization terminated successfully (Exit mode 0)
Current function value: 131.50976284671376
Iterations: 15
Function evaluations: 171
Gradient evaluations: 15
Iteration: 1, Func. Count: 9, Neg. LLF: 137.25979596056487
Iteration: 2, Func. Count: 18, Neg. LLF: 135.38827390619718
Iteration: 3, Func. Count: 27, Neg. LLF: 141.06167878901198
Iteration: 4, Func. Count: 36, Neg. LLF: 134.05645782681788
Iteration: 5, Func. Count: 44, Neg. LLF: 133.97998890633485
Iteration: 6, Func. Count: 53, Neg. LLF: 133.76180814311667
Iteration: 7, Func. Count: 61, Neg. LLF: 133.7549943644632
Iteration: 8, Func. Count: 69, Neg. LLF: 133.7476309755927
Iteration: 9, Func. Count: 77, Neg. LLF: 133.74758377703347
Iteration: 10, Func. Count: 85, Neg. LLF: 133.7475252667005
Iteration: 11, Func. Count: 93, Neg. LLF: 133.7474919895018
Iteration: 12, Func. Count: 101, Neg. LLF: 133.74748889806958
Iteration: 13, Func. Count: 108, Neg. LLF: 133.7474892617593
Optimization terminated successfully (Exit mode 0)
Current function value: 133.74748889806958
Iterations: 13
Function evaluations: 108
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 138.7420008790994
Iteration: 2, Func. Count: 20, Neg. LLF: 138.0662997166256
Iteration: 3, Func. Count: 30, Neg. LLF: 136.1548460275611
Iteration: 4, Func. Count: 39, Neg. LLF: 135.84202836136657
Iteration: 5, Func. Count: 48, Neg. LLF: 145.13062810898356
Iteration: 6, Func. Count: 60, Neg. LLF: 135.61858544404734
Iteration: 7, Func. Count: 69, Neg. LLF: 135.3519795481625
Iteration: 8, Func. Count: 78, Neg. LLF: 135.32843680537334
Iteration: 9, Func. Count: 87, Neg. LLF: 135.32552834394986
Iteration: 10, Func. Count: 96, Neg. LLF: 135.32462135542866
Iteration: 11, Func. Count: 105, Neg. LLF: 135.3241108165825
Iteration: 12, Func. Count: 114, Neg. LLF: 135.32410260660956
Iteration: 13, Func. Count: 123, Neg. LLF: 135.32410167887255
Optimization terminated successfully (Exit mode 0)
Current function value: 135.32410167887255
Iterations: 13
Function evaluations: 123
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 139.83187764249345
Iteration: 2, Func. Count: 22, Neg. LLF: 138.5866123258505
Iteration: 3, Func. Count: 33, Neg. LLF: 134.30647708583462
Iteration: 4, Func. Count: 43, Neg. LLF: 133.21370984329565
Iteration: 5, Func. Count: 53, Neg. LLF: 132.49376446306545
Iteration: 6, Func. Count: 63, Neg. LLF: 131.94815783256274
Iteration: 7, Func. Count: 73, Neg. LLF: 131.999255422669
Iteration: 8, Func. Count: 84, Neg. LLF: 131.53334423262862
Iteration: 9, Func. Count: 94, Neg. LLF: 131.5122880738361
Iteration: 10, Func. Count: 104, Neg. LLF: 131.50989733846157
Iteration: 11, Func. Count: 114, Neg. LLF: 131.5097632280802
Iteration: 12, Func. Count: 124, Neg. LLF: 131.5097627746598
Optimization terminated successfully (Exit mode 0)
Current function value: 131.5097627746598
Iterations: 12
Function evaluations: 124
Gradient evaluations: 12
Iteration: 1, Func. Count: 12, Neg. LLF: 10835020.90757625
Iteration: 2, Func. Count: 24, Neg. LLF: 133.79052110770556
Iteration: 3, Func. Count: 35, Neg. LLF: 133.29867356779084
Iteration: 4, Func. Count: 47, Neg. LLF: 132.05403730010121
Iteration: 5, Func. Count: 59, Neg. LLF: 131.5336189685367
Iteration: 6, Func. Count: 70, Neg. LLF: 131.52439074039918
Iteration: 7, Func. Count: 81, Neg. LLF: 131.51473910961766
Iteration: 8, Func. Count: 92, Neg. LLF: 131.51003230875534
Iteration: 9, Func. Count: 103, Neg. LLF: 131.5097709245094
Iteration: 10, Func. Count: 114, Neg. LLF: 131.50976279968168
Iteration: 11, Func. Count: 124, Neg. LLF: 131.50976286359816
Optimization terminated successfully (Exit mode 0)
Current function value: 131.50976279968168
Iterations: 11
Function evaluations: 124
Gradient evaluations: 11
Iteration: 1, Func. Count: 13, Neg. LLF: 263.7512206446888
Iteration: 2, Func. Count: 26, Neg. LLF: 138.68544326400044
Iteration: 3, Func. Count: 39, Neg. LLF: 134.6220282909099
Iteration: 4, Func. Count: 51, Neg. LLF: 145.7978342525382
Iteration: 5, Func. Count: 65, Neg. LLF: 244.08191386307215
Iteration: 6, Func. Count: 79, Neg. LLF: 131.85001278609883
Iteration: 7, Func. Count: 91, Neg. LLF: 131.68239942102457
Iteration: 8, Func. Count: 103, Neg. LLF: 131.51864282496445
Iteration: 9, Func. Count: 115, Neg. LLF: 131.51388006792206
Iteration: 10, Func. Count: 127, Neg. LLF: 131.51110332711113
Iteration: 11, Func. Count: 139, Neg. LLF: 131.5103193982132
Iteration: 12, Func. Count: 151, Neg. LLF: 131.50979206879828
Iteration: 13, Func. Count: 163, Neg. LLF: 131.50976460737834
Iteration: 14, Func. Count: 175, Neg. LLF: 131.50976310273873
Iteration: 15, Func. Count: 186, Neg. LLF: 131.50976315440187
Optimization terminated successfully (Exit mode 0)
Current function value: 131.50976310273873
Iterations: 15
Function evaluations: 186
Gradient evaluations: 15
Iteration: 1, Func. Count: 6, Neg. LLF: 141.39397671000228
Iteration: 2, Func. Count: 12, Neg. LLF: 151.32830548014982
Iteration: 3, Func. Count: 18, Neg. LLF: 135.93750113124113
Iteration: 4, Func. Count: 23, Neg. LLF: 135.6695507086157
Iteration: 5, Func. Count: 28, Neg. LLF: 136.80776836984532
Iteration: 6, Func. Count: 34, Neg. LLF: 135.5491641211347
Iteration: 7, Func. Count: 39, Neg. LLF: 135.54917182209346
Iteration: 8, Func. Count: 45, Neg. LLF: 135.54885203573633
Iteration: 9, Func. Count: 50, Neg. LLF: 135.54885128955095
Optimization terminated successfully (Exit mode 0)
Current function value: 135.54885128955095
Iterations: 9
Function evaluations: 50
Gradient evaluations: 9
Iteration: 1, Func. Count: 7, Neg. LLF: 21855848.756813765
Iteration: 2, Func. Count: 15, Neg. LLF: 138.29452729285822
Iteration: 3, Func. Count: 22, Neg. LLF: 136.4255308775598
Iteration: 4, Func. Count: 28, Neg. LLF: 139.66335924503906
Iteration: 5, Func. Count: 35, Neg. LLF: 135.28962894334458
Iteration: 6, Func. Count: 41, Neg. LLF: 135.22103241821705
Iteration: 7, Func. Count: 47, Neg. LLF: 135.21810046934385
Iteration: 8, Func. Count: 53, Neg. LLF: 135.2179562401547
Iteration: 9, Func. Count: 58, Neg. LLF: 135.21795623978218
Optimization terminated successfully (Exit mode 0)
Current function value: 135.2179562401547
Iterations: 9
Function evaluations: 58
Gradient evaluations: 9
Iteration: 1, Func. Count: 8, Neg. LLF: 21822358.525415525
Iteration: 2, Func. Count: 17, Neg. LLF: 137.3084153461295
Iteration: 3, Func. Count: 25, Neg. LLF: 135.99399303210873
Iteration: 4, Func. Count: 32, Neg. LLF: 135.73048753490775
Iteration: 5, Func. Count: 39, Neg. LLF: 136.4890622651573
Iteration: 6, Func. Count: 47, Neg. LLF: 135.28549529199188
Iteration: 7, Func. Count: 54, Neg. LLF: 135.22844917620847
Iteration: 8, Func. Count: 61, Neg. LLF: 135.213691728134
Iteration: 9, Func. Count: 68, Neg. LLF: 135.18883494176234
Iteration: 10, Func. Count: 75, Neg. LLF: 135.18326381286693
Iteration: 11, Func. Count: 82, Neg. LLF: 135.18203211082138
Iteration: 12, Func. Count: 89, Neg. LLF: 135.18195165540286
Iteration: 13, Func. Count: 96, Neg. LLF: 135.18194072182598
Iteration: 14, Func. Count: 102, Neg. LLF: 135.18194072138712
Optimization terminated successfully (Exit mode 0)
Current function value: 135.18194072182598
Iterations: 14
Function evaluations: 102
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 21797683.976584718
Iteration: 2, Func. Count: 19, Neg. LLF: 136.49862183197538
Iteration: 3, Func. Count: 27, Neg. LLF: 135.62594687914788
Iteration: 4, Func. Count: 35, Neg. LLF: 139.53882686129455
Iteration: 5, Func. Count: 45, Neg. LLF: 135.3649573575304
Iteration: 6, Func. Count: 53, Neg. LLF: 135.16440654385042
Iteration: 7, Func. Count: 61, Neg. LLF: 135.1370679472227
Iteration: 8, Func. Count: 69, Neg. LLF: 135.13508906226656
Iteration: 9, Func. Count: 77, Neg. LLF: 135.13495027485789
Iteration: 10, Func. Count: 85, Neg. LLF: 135.1349482989404
Iteration: 11, Func. Count: 92, Neg. LLF: 135.134948298881
Optimization terminated successfully (Exit mode 0)
Current function value: 135.1349482989404
Iterations: 11
Function evaluations: 92
Gradient evaluations: 11
Iteration: 1, Func. Count: 10, Neg. LLF: 21780926.970832016
Iteration: 2, Func. Count: 21, Neg. LLF: 136.15886016822176
Iteration: 3, Func. Count: 30, Neg. LLF: 135.48931771783245
Iteration: 4, Func. Count: 39, Neg. LLF: 135.4286181290265
Iteration: 5, Func. Count: 49, Neg. LLF: 135.28900898170033
Iteration: 6, Func. Count: 58, Neg. LLF: 135.27304364917882
Iteration: 7, Func. Count: 67, Neg. LLF: 135.27286874551385
Iteration: 8, Func. Count: 76, Neg. LLF: 135.2728637347904
Iteration: 9, Func. Count: 84, Neg. LLF: 135.27286373474226
Optimization terminated successfully (Exit mode 0)
Current function value: 135.2728637347904
Iterations: 9
Function evaluations: 84
Gradient evaluations: 9
Iteration: 1, Func. Count: 7, Neg. LLF: 140.7173956812879
Iteration: 2, Func. Count: 14, Neg. LLF: 150.47481217291454
Iteration: 3, Func. Count: 21, Neg. LLF: 135.828038332848
Iteration: 4, Func. Count: 27, Neg. LLF: 135.73174048341804
Iteration: 5, Func. Count: 33, Neg. LLF: 147.21031946382183
Iteration: 6, Func. Count: 40, Neg. LLF: 135.51006460977644
Iteration: 7, Func. Count: 46, Neg. LLF: 135.43830683975477
Iteration: 8, Func. Count: 52, Neg. LLF: 135.43675556677923
Iteration: 9, Func. Count: 58, Neg. LLF: 135.43658088254196
Iteration: 10, Func. Count: 64, Neg. LLF: 135.43649785826358
Iteration: 11, Func. Count: 70, Neg. LLF: 135.43647470979852
Iteration: 12, Func. Count: 75, Neg. LLF: 135.43647470217073
Optimization terminated successfully (Exit mode 0)
Current function value: 135.43647470979852
Iterations: 12
Function evaluations: 75
Gradient evaluations: 12
Iteration: 1, Func. Count: 8, Neg. LLF: 10940441.271334691
Iteration: 2, Func. Count: 16, Neg. LLF: 138.68258522205397
Iteration: 3, Func. Count: 25, Neg. LLF: 144.0940202856164
Iteration: 4, Func. Count: 33, Neg. LLF: 134.45952944733492
Iteration: 5, Func. Count: 40, Neg. LLF: 134.32396925825677
Iteration: 6, Func. Count: 48, Neg. LLF: 134.06713142290948
Iteration: 7, Func. Count: 55, Neg. LLF: 133.95747468818715
Iteration: 8, Func. Count: 62, Neg. LLF: 133.93065454127108
Iteration: 9, Func. Count: 69, Neg. LLF: 133.94805166888082
Iteration: 10, Func. Count: 77, Neg. LLF: 133.92025566412806
Iteration: 11, Func. Count: 84, Neg. LLF: 133.9200991964649
Iteration: 12, Func. Count: 91, Neg. LLF: 133.9200218316529
Iteration: 13, Func. Count: 98, Neg. LLF: 133.92001897787088
Iteration: 14, Func. Count: 104, Neg. LLF: 133.9200189779399
Optimization terminated successfully (Exit mode 0)
Current function value: 133.92001897787088
Iterations: 14
Function evaluations: 104
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 10883849.0858921
Iteration: 2, Func. Count: 18, Neg. LLF: 134.68768986387016
Iteration: 3, Func. Count: 27, Neg. LLF: 147.24799086591176
Iteration: 4, Func. Count: 36, Neg. LLF: 132.31001612011272
Iteration: 5, Func. Count: 44, Neg. LLF: 132.0795630534057
Iteration: 6, Func. Count: 52, Neg. LLF: 131.8409555166396
Iteration: 7, Func. Count: 60, Neg. LLF: 131.63093905941395
Iteration: 8, Func. Count: 68, Neg. LLF: 131.52122171337368
Iteration: 9, Func. Count: 76, Neg. LLF: 131.51037048936604
Iteration: 10, Func. Count: 84, Neg. LLF: 131.50983333751375
Iteration: 11, Func. Count: 92, Neg. LLF: 131.50979257837116
Iteration: 12, Func. Count: 100, Neg. LLF: 131.5097691234822
Iteration: 13, Func. Count: 108, Neg. LLF: 131.50976382413285
Iteration: 14, Func. Count: 116, Neg. LLF: 131.50976279891316
Iteration: 15, Func. Count: 123, Neg. LLF: 131.50976279889184
Optimization terminated successfully (Exit mode 0)
Current function value: 131.50976279891316
Iterations: 15
Function evaluations: 123
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 10825337.381449243
Iteration: 2, Func. Count: 20, Neg. LLF: 133.68392980277528
Iteration: 3, Func. Count: 29, Neg. LLF: 133.09856885373563
Iteration: 4, Func. Count: 39, Neg. LLF: 131.80720626516555
Iteration: 5, Func. Count: 49, Neg. LLF: 131.54250178009724
Iteration: 6, Func. Count: 58, Neg. LLF: 131.52745507256103
Iteration: 7, Func. Count: 67, Neg. LLF: 131.51079655475468
Iteration: 8, Func. Count: 76, Neg. LLF: 131.50978611997067
Iteration: 9, Func. Count: 85, Neg. LLF: 131.5097629889707
Iteration: 10, Func. Count: 93, Neg. LLF: 131.50976305279195
Optimization terminated successfully (Exit mode 0)
Current function value: 131.5097629889707
Iterations: 10
Function evaluations: 93
Gradient evaluations: 10
Iteration: 1, Func. Count: 11, Neg. LLF: 21859322.62307831
Iteration: 2, Func. Count: 23, Neg. LLF: 175.25917565842113
Iteration: 3, Func. Count: 34, Neg. LLF: 149.91860660378828
Iteration: 4, Func. Count: 45, Neg. LLF: 136.98746990034104
Iteration: 5, Func. Count: 56, Neg. LLF: 133.77588073598756
Iteration: 6, Func. Count: 67, Neg. LLF: 132.4222242379191
Iteration: 7, Func. Count: 77, Neg. LLF: 133.3547583747906
Iteration: 8, Func. Count: 88, Neg. LLF: 132.48296105315652
Iteration: 9, Func. Count: 99, Neg. LLF: 132.07445999442214
Iteration: 10, Func. Count: 109, Neg. LLF: 132.010884861614
Iteration: 11, Func. Count: 119, Neg. LLF: 131.9062288417614
Iteration: 12, Func. Count: 129, Neg. LLF: 131.6730385653516
Iteration: 13, Func. Count: 139, Neg. LLF: 131.5639913181044
Iteration: 14, Func. Count: 149, Neg. LLF: 131.52432147697345
Iteration: 15, Func. Count: 159, Neg. LLF: 131.5107347667437
Iteration: 16, Func. Count: 169, Neg. LLF: 131.5100222748104
Iteration: 17, Func. Count: 179, Neg. LLF: 131.50990072079682
Iteration: 18, Func. Count: 189, Neg. LLF: 131.5097827738639
Iteration: 19, Func. Count: 199, Neg. LLF: 131.50976423124865
Iteration: 20, Func. Count: 209, Neg. LLF: 131.50976278955895
Iteration: 21, Func. Count: 218, Neg. LLF: 131.50976284131184
Optimization terminated successfully (Exit mode 0)
Current function value: 131.50976278955895
Iterations: 21
Function evaluations: 218
Gradient evaluations: 21
Iteration: 1, Func. Count: 8, Neg. LLF: 140.61490795550108
Iteration: 2, Func. Count: 16, Neg. LLF: 145.97610288160337
Iteration: 3, Func. Count: 24, Neg. LLF: 134.27993352365792
Iteration: 4, Func. Count: 31, Neg. LLF: 133.9822177786334
Iteration: 5, Func. Count: 38, Neg. LLF: 139.19609998329946
Iteration: 6, Func. Count: 47, Neg. LLF: 135.45900938441136
Iteration: 7, Func. Count: 55, Neg. LLF: 133.65526809026093
Iteration: 8, Func. Count: 62, Neg. LLF: 133.64645452384673
Iteration: 9, Func. Count: 69, Neg. LLF: 133.6461226036736
Iteration: 10, Func. Count: 76, Neg. LLF: 133.64608440823866
Iteration: 11, Func. Count: 83, Neg. LLF: 133.64606926486127
Iteration: 12, Func. Count: 90, Neg. LLF: 133.64606863759124
Optimization terminated successfully (Exit mode 0)
Current function value: 133.64606863759124
Iterations: 12
Function evaluations: 90
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 7792791.565749576
Iteration: 2, Func. Count: 18, Neg. LLF: 135.00146902533
Iteration: 3, Func. Count: 26, Neg. LLF: 134.8801891668965
Iteration: 4, Func. Count: 35, Neg. LLF: 1076.9844973049742
Iteration: 5, Func. Count: 44, Neg. LLF: 134.07309785906511
Iteration: 6, Func. Count: 52, Neg. LLF: 134.0031942323473
Iteration: 7, Func. Count: 60, Neg. LLF: 134.29532778978643
Iteration: 8, Func. Count: 69, Neg. LLF: 133.95839423505373
Iteration: 9, Func. Count: 77, Neg. LLF: 133.93680195541057
Iteration: 10, Func. Count: 85, Neg. LLF: 133.92641991015037
Iteration: 11, Func. Count: 93, Neg. LLF: 133.9213462156009
Iteration: 12, Func. Count: 101, Neg. LLF: 133.92003660117751
Iteration: 13, Func. Count: 109, Neg. LLF: 133.92001971036962
Iteration: 14, Func. Count: 117, Neg. LLF: 133.92001904148782
Optimization terminated successfully (Exit mode 0)
Current function value: 133.92001904148782
Iterations: 14
Function evaluations: 117
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 10877279.836565986
Iteration: 2, Func. Count: 20, Neg. LLF: 134.5684541720105
Iteration: 3, Func. Count: 30, Neg. LLF: 147.26161121223126
Iteration: 4, Func. Count: 40, Neg. LLF: 132.30267697847444
Iteration: 5, Func. Count: 49, Neg. LLF: 132.07047657561967
Iteration: 6, Func. Count: 58, Neg. LLF: 131.83442508870468
Iteration: 7, Func. Count: 67, Neg. LLF: 131.61598420928343
Iteration: 8, Func. Count: 76, Neg. LLF: 131.51995269498056
Iteration: 9, Func. Count: 85, Neg. LLF: 131.51032499550757
Iteration: 10, Func. Count: 94, Neg. LLF: 131.50983913187218
Iteration: 11, Func. Count: 103, Neg. LLF: 131.50979619657377
Iteration: 12, Func. Count: 112, Neg. LLF: 131.50976884601303
Iteration: 13, Func. Count: 121, Neg. LLF: 131.5097636007949
Iteration: 14, Func. Count: 130, Neg. LLF: 131.50976278800954
Optimization terminated successfully (Exit mode 0)
Current function value: 131.50976278800954
Iterations: 14
Function evaluations: 130
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 10811348.8822946
Iteration: 2, Func. Count: 22, Neg. LLF: 133.51363986716646
Iteration: 3, Func. Count: 32, Neg. LLF: 133.2478636154126
Iteration: 4, Func. Count: 43, Neg. LLF: 131.81486589440107
Iteration: 5, Func. Count: 54, Neg. LLF: 131.54095534148786
Iteration: 6, Func. Count: 64, Neg. LLF: 131.52744304074454
Iteration: 7, Func. Count: 74, Neg. LLF: 131.51069924736802
Iteration: 8, Func. Count: 84, Neg. LLF: 131.5097842697139
Iteration: 9, Func. Count: 94, Neg. LLF: 131.50976290850244
Iteration: 10, Func. Count: 103, Neg. LLF: 131.50976297234985
Optimization terminated successfully (Exit mode 0)
Current function value: 131.50976290850244
Iterations: 10
Function evaluations: 103
Gradient evaluations: 10
Iteration: 1, Func. Count: 12, Neg. LLF: 21853834.819716256
Iteration: 2, Func. Count: 25, Neg. LLF: 690.6915280712001
Iteration: 3, Func. Count: 37, Neg. LLF: 151.89916803053373
Iteration: 4, Func. Count: 49, Neg. LLF: 138.45778926554433
Iteration: 5, Func. Count: 61, Neg. LLF: 137.23349446445917
Iteration: 6, Func. Count: 73, Neg. LLF: 132.71364827028833
Iteration: 7, Func. Count: 84, Neg. LLF: 134.416757696374
Iteration: 8, Func. Count: 97, Neg. LLF: 135.78833303142014
Iteration: 9, Func. Count: 109, Neg. LLF: 131.67056539853465
Iteration: 10, Func. Count: 120, Neg. LLF: 131.55491771759853
Iteration: 11, Func. Count: 131, Neg. LLF: 131.51935268346728
Iteration: 12, Func. Count: 142, Neg. LLF: 131.51354240851225
Iteration: 13, Func. Count: 153, Neg. LLF: 131.51280111762603
Iteration: 14, Func. Count: 164, Neg. LLF: 131.51149983247575
Iteration: 15, Func. Count: 175, Neg. LLF: 131.51047527106917
Iteration: 16, Func. Count: 186, Neg. LLF: 131.50985847166507
Iteration: 17, Func. Count: 197, Neg. LLF: 131.5097677126052
Iteration: 18, Func. Count: 208, Neg. LLF: 131.50976284705902
Iteration: 19, Func. Count: 218, Neg. LLF: 131.50976289879154
Optimization terminated successfully (Exit mode 0)
Current function value: 131.50976284705902
Iterations: 19
Function evaluations: 218
Gradient evaluations: 19
Iteration: 1, Func. Count: 9, Neg. LLF: 138.63894279868776
Iteration: 2, Func. Count: 18, Neg. LLF: 147.64360476628084
Iteration: 3, Func. Count: 27, Neg. LLF: 134.27835903595562
Iteration: 4, Func. Count: 35, Neg. LLF: 133.98431964485732
Iteration: 5, Func. Count: 43, Neg. LLF: 138.38032866172605
Iteration: 6, Func. Count: 52, Neg. LLF: 134.27352915249475
Iteration: 7, Func. Count: 61, Neg. LLF: 133.71587568671177
Iteration: 8, Func. Count: 69, Neg. LLF: 133.6578589465684
Iteration: 9, Func. Count: 77, Neg. LLF: 133.6470371871427
Iteration: 10, Func. Count: 85, Neg. LLF: 133.64614138479917
Iteration: 11, Func. Count: 93, Neg. LLF: 133.64607313172502
Iteration: 12, Func. Count: 101, Neg. LLF: 133.64606984349643
Iteration: 13, Func. Count: 109, Neg. LLF: 133.64606863636865
Iteration: 14, Func. Count: 116, Neg. LLF: 133.64606882018268
Optimization terminated successfully (Exit mode 0)
Current function value: 133.64606863636865
Iterations: 14
Function evaluations: 116
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 7794314.5363486195
Iteration: 2, Func. Count: 20, Neg. LLF: 134.96740578399513
Iteration: 3, Func. Count: 29, Neg. LLF: 134.8699240707965
Iteration: 4, Func. Count: 39, Neg. LLF: 1571.574228396855
Iteration: 5, Func. Count: 49, Neg. LLF: 134.06358526714288
Iteration: 6, Func. Count: 58, Neg. LLF: 133.99748211276355
Iteration: 7, Func. Count: 67, Neg. LLF: 134.42899892505773
Iteration: 8, Func. Count: 77, Neg. LLF: 133.94432163951643
Iteration: 9, Func. Count: 86, Neg. LLF: 133.93093150960763
Iteration: 10, Func. Count: 95, Neg. LLF: 133.9222008040504
Iteration: 11, Func. Count: 104, Neg. LLF: 133.9203249172833
Iteration: 12, Func. Count: 113, Neg. LLF: 133.92003329284472
Iteration: 13, Func. Count: 122, Neg. LLF: 133.92002169460767
Iteration: 14, Func. Count: 131, Neg. LLF: 133.92001872692842
Iteration: 15, Func. Count: 139, Neg. LLF: 133.92001872694382
Optimization terminated successfully (Exit mode 0)
Current function value: 133.92001872692842
Iterations: 15
Function evaluations: 139
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 10883088.542332571
Iteration: 2, Func. Count: 22, Neg. LLF: 134.59644575948695
Iteration: 3, Func. Count: 33, Neg. LLF: 147.31579767508248
Iteration: 4, Func. Count: 44, Neg. LLF: 132.31647412116135
Iteration: 5, Func. Count: 54, Neg. LLF: 132.07725005628276
Iteration: 6, Func. Count: 64, Neg. LLF: 131.83909635167458
Iteration: 7, Func. Count: 74, Neg. LLF: 131.6284843622641
Iteration: 8, Func. Count: 84, Neg. LLF: 131.52117453529712
Iteration: 9, Func. Count: 94, Neg. LLF: 131.51036776309556
Iteration: 10, Func. Count: 104, Neg. LLF: 131.5098679556584
Iteration: 11, Func. Count: 114, Neg. LLF: 131.50980680850435
Iteration: 12, Func. Count: 124, Neg. LLF: 131.50977221313306
Iteration: 13, Func. Count: 134, Neg. LLF: 131.50976400105188
Iteration: 14, Func. Count: 144, Neg. LLF: 131.50976280438368
Iteration: 15, Func. Count: 153, Neg. LLF: 131.50976280435785
Optimization terminated successfully (Exit mode 0)
Current function value: 131.50976280438368
Iterations: 15
Function evaluations: 153
Gradient evaluations: 15
Iteration: 1, Func. Count: 12, Neg. LLF: 10819709.044396363
Iteration: 2, Func. Count: 24, Neg. LLF: 133.56816134519045
Iteration: 3, Func. Count: 35, Neg. LLF: 133.25379856208923
Iteration: 4, Func. Count: 47, Neg. LLF: 131.82666599159677
Iteration: 5, Func. Count: 59, Neg. LLF: 131.54069188877455
Iteration: 6, Func. Count: 70, Neg. LLF: 131.5274938745584
Iteration: 7, Func. Count: 81, Neg. LLF: 131.51083595392512
Iteration: 8, Func. Count: 92, Neg. LLF: 131.5097893879184
Iteration: 9, Func. Count: 103, Neg. LLF: 131.50976295717484
Iteration: 10, Func. Count: 113, Neg. LLF: 131.50976302100622
Optimization terminated successfully (Exit mode 0)
Current function value: 131.50976295717484
Iterations: 10
Function evaluations: 113
Gradient evaluations: 10
Iteration: 1, Func. Count: 13, Neg. LLF: 21860641.809248403
Iteration: 2, Func. Count: 27, Neg. LLF: 719.9799790043392
Iteration: 3, Func. Count: 40, Neg. LLF: 152.15325519281276
Iteration: 4, Func. Count: 53, Neg. LLF: 138.59337978518977
Iteration: 5, Func. Count: 66, Neg. LLF: 137.3657399528225
Iteration: 6, Func. Count: 79, Neg. LLF: 132.72846349510243
Iteration: 7, Func. Count: 91, Neg. LLF: 134.3648774527153
Iteration: 8, Func. Count: 105, Neg. LLF: 135.73986000024394
Iteration: 9, Func. Count: 118, Neg. LLF: 131.66655702389423
Iteration: 10, Func. Count: 130, Neg. LLF: 131.54595876226375
Iteration: 11, Func. Count: 142, Neg. LLF: 131.5192176667369
Iteration: 12, Func. Count: 154, Neg. LLF: 131.51395962024696
Iteration: 13, Func. Count: 166, Neg. LLF: 131.51292660133325
Iteration: 14, Func. Count: 178, Neg. LLF: 131.51183513664913
Iteration: 15, Func. Count: 190, Neg. LLF: 131.51073390002617
Iteration: 16, Func. Count: 202, Neg. LLF: 131.5099467918232
Iteration: 17, Func. Count: 214, Neg. LLF: 131.5097744272402
Iteration: 18, Func. Count: 226, Neg. LLF: 131.50976303225386
Iteration: 19, Func. Count: 237, Neg. LLF: 131.50976308396474
Optimization terminated successfully (Exit mode 0)
Current function value: 131.50976303225386
Iterations: 19
Function evaluations: 237
Gradient evaluations: 19
Iteration: 1, Func. Count: 10, Neg. LLF: 137.50266670028188
Iteration: 2, Func. Count: 19, Neg. LLF: 143.88861663137413
Iteration: 3, Func. Count: 29, Neg. LLF: 134.44043913674042
Iteration: 4, Func. Count: 38, Neg. LLF: 144.62951190593904
Iteration: 5, Func. Count: 48, Neg. LLF: 2448179.248267323
Iteration: 6, Func. Count: 58, Neg. LLF: 133.9072577671658
Iteration: 7, Func. Count: 68, Neg. LLF: 133.66466114719643
Iteration: 8, Func. Count: 77, Neg. LLF: 133.64631514673962
Iteration: 9, Func. Count: 86, Neg. LLF: 133.6461229577156
Iteration: 10, Func. Count: 95, Neg. LLF: 133.6460704025814
Iteration: 11, Func. Count: 104, Neg. LLF: 133.6460689204503
Iteration: 12, Func. Count: 112, Neg. LLF: 133.64606929401208
Optimization terminated successfully (Exit mode 0)
Current function value: 133.6460689204503
Iterations: 12
Function evaluations: 112
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 7793966.39687253
Iteration: 2, Func. Count: 22, Neg. LLF: 135.00333028713465
Iteration: 3, Func. Count: 32, Neg. LLF: 134.91716272417437
Iteration: 4, Func. Count: 43, Neg. LLF: 596.057585368287
Iteration: 5, Func. Count: 54, Neg. LLF: 134.0835541909345
Iteration: 6, Func. Count: 64, Neg. LLF: 134.00562496820635
Iteration: 7, Func. Count: 74, Neg. LLF: 134.2500138978985
Iteration: 8, Func. Count: 85, Neg. LLF: 133.97472159611078
Iteration: 9, Func. Count: 95, Neg. LLF: 133.94210747324453
Iteration: 10, Func. Count: 105, Neg. LLF: 133.92976358913262
Iteration: 11, Func. Count: 115, Neg. LLF: 133.9229899820098
Iteration: 12, Func. Count: 125, Neg. LLF: 133.92022216947439
Iteration: 13, Func. Count: 135, Neg. LLF: 133.9200550345642
Iteration: 14, Func. Count: 145, Neg. LLF: 133.92002185160118
Iteration: 15, Func. Count: 155, Neg. LLF: 133.92001872506165
Iteration: 16, Func. Count: 164, Neg. LLF: 133.92001872505423
Optimization terminated successfully (Exit mode 0)
Current function value: 133.92001872506165
Iterations: 16
Function evaluations: 164
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 10885029.306901643
Iteration: 2, Func. Count: 24, Neg. LLF: 134.6083965707087
Iteration: 3, Func. Count: 36, Neg. LLF: 147.24532136339457
Iteration: 4, Func. Count: 48, Neg. LLF: 132.3172800210284
Iteration: 5, Func. Count: 59, Neg. LLF: 132.07506389184377
Iteration: 6, Func. Count: 70, Neg. LLF: 131.83807626287083
Iteration: 7, Func. Count: 81, Neg. LLF: 131.6251523801834
Iteration: 8, Func. Count: 92, Neg. LLF: 131.52100008747976
Iteration: 9, Func. Count: 103, Neg. LLF: 131.510359709498
Iteration: 10, Func. Count: 114, Neg. LLF: 131.50987727029306
Iteration: 11, Func. Count: 125, Neg. LLF: 131.5098116533974
Iteration: 12, Func. Count: 136, Neg. LLF: 131.50977227711402
Iteration: 13, Func. Count: 147, Neg. LLF: 131.50976392450346
Iteration: 14, Func. Count: 158, Neg. LLF: 131.50976279896904
Iteration: 15, Func. Count: 168, Neg. LLF: 131.50976279894402
Optimization terminated successfully (Exit mode 0)
Current function value: 131.50976279896904
Iterations: 15
Function evaluations: 168
Gradient evaluations: 15
Iteration: 1, Func. Count: 13, Neg. LLF: 10823087.241897957
Iteration: 2, Func. Count: 26, Neg. LLF: 133.60551816500654
Iteration: 3, Func. Count: 38, Neg. LLF: 133.2157717750038
Iteration: 4, Func. Count: 51, Neg. LLF: 131.8431679887496
Iteration: 5, Func. Count: 64, Neg. LLF: 131.5401528560931
Iteration: 6, Func. Count: 76, Neg. LLF: 131.52720281099337
Iteration: 7, Func. Count: 88, Neg. LLF: 131.51111923168284
Iteration: 8, Func. Count: 100, Neg. LLF: 131.50979933012474
Iteration: 9, Func. Count: 112, Neg. LLF: 131.5097631082927
Iteration: 10, Func. Count: 123, Neg. LLF: 131.50976317208298
Optimization terminated successfully (Exit mode 0)
Current function value: 131.5097631082927
Iterations: 10
Function evaluations: 123
Gradient evaluations: 10
Iteration: 1, Func. Count: 14, Neg. LLF: 21863529.88815028
Iteration: 2, Func. Count: 29, Neg. LLF: 734.5508389303785
Iteration: 3, Func. Count: 43, Neg. LLF: 152.10926195395817
Iteration: 4, Func. Count: 57, Neg. LLF: 138.5583130421215
Iteration: 5, Func. Count: 71, Neg. LLF: 137.33719858288848
Iteration: 6, Func. Count: 85, Neg. LLF: 132.72978707795795
Iteration: 7, Func. Count: 98, Neg. LLF: 134.40801862473467
Iteration: 8, Func. Count: 113, Neg. LLF: 136.15619812387618
Iteration: 9, Func. Count: 127, Neg. LLF: 131.66734579886963
Iteration: 10, Func. Count: 140, Neg. LLF: 131.54904638691954
Iteration: 11, Func. Count: 153, Neg. LLF: 131.51969904506655
Iteration: 12, Func. Count: 166, Neg. LLF: 131.5141053330595
Iteration: 13, Func. Count: 179, Neg. LLF: 131.51314924031664
Iteration: 14, Func. Count: 192, Neg. LLF: 131.51172249489613
Iteration: 15, Func. Count: 205, Neg. LLF: 131.51058032454108
Iteration: 16, Func. Count: 218, Neg. LLF: 131.50987577496792
Iteration: 17, Func. Count: 231, Neg. LLF: 131.50976863918797
Iteration: 18, Func. Count: 244, Neg. LLF: 131.50976286179792
Iteration: 19, Func. Count: 256, Neg. LLF: 131.5097629135268
Optimization terminated successfully (Exit mode 0)
Current function value: 131.50976286179792
Iterations: 19
Function evaluations: 256
Gradient evaluations: 19
Iteration: 1, Func. Count: 7, Neg. LLF: 136.50961384730712
Iteration: 2, Func. Count: 13, Neg. LLF: 138.34295819853926
Iteration: 3, Func. Count: 20, Neg. LLF: 135.81509419378085
Iteration: 4, Func. Count: 26, Neg. LLF: 164.56607535795595
Iteration: 5, Func. Count: 33, Neg. LLF: 135.72945215837183
Iteration: 6, Func. Count: 40, Neg. LLF: 135.55617509871058
Iteration: 7, Func. Count: 46, Neg. LLF: 135.54941121593075
Iteration: 8, Func. Count: 52, Neg. LLF: 135.54892023619126
Iteration: 9, Func. Count: 58, Neg. LLF: 135.5488620463981
Iteration: 10, Func. Count: 64, Neg. LLF: 135.54885129235493
Iteration: 11, Func. Count: 69, Neg. LLF: 135.54885128397012
Optimization terminated successfully (Exit mode 0)
Current function value: 135.54885129235493
Iterations: 11
Function evaluations: 69
Gradient evaluations: 11
Iteration: 1, Func. Count: 8, Neg. LLF: 21866384.388283346
Iteration: 2, Func. Count: 17, Neg. LLF: 138.51712111431831
Iteration: 3, Func. Count: 25, Neg. LLF: 136.69614755839538
Iteration: 4, Func. Count: 32, Neg. LLF: 140.7154416599175
Iteration: 5, Func. Count: 40, Neg. LLF: 138.35747109411605
Iteration: 6, Func. Count: 49, Neg. LLF: 135.2467353039532
Iteration: 7, Func. Count: 56, Neg. LLF: 135.22051252524182
Iteration: 8, Func. Count: 63, Neg. LLF: 135.2184643313288
Iteration: 9, Func. Count: 70, Neg. LLF: 135.2179564634472
Iteration: 10, Func. Count: 76, Neg. LLF: 135.21795646285076
Optimization terminated successfully (Exit mode 0)
Current function value: 135.2179564634472
Iterations: 10
Function evaluations: 76
Gradient evaluations: 10
Iteration: 1, Func. Count: 9, Neg. LLF: 21828209.048478942
Iteration: 2, Func. Count: 19, Neg. LLF: 137.40754444031137
Iteration: 3, Func. Count: 28, Neg. LLF: 136.01097394765472
Iteration: 4, Func. Count: 36, Neg. LLF: 135.74649011366682
Iteration: 5, Func. Count: 44, Neg. LLF: 136.35469920489402
Iteration: 6, Func. Count: 53, Neg. LLF: 135.29081481664383
Iteration: 7, Func. Count: 61, Neg. LLF: 135.23281297825204
Iteration: 8, Func. Count: 69, Neg. LLF: 135.2081714160245
Iteration: 9, Func. Count: 77, Neg. LLF: 135.24669828260315
Iteration: 10, Func. Count: 86, Neg. LLF: 135.18353294601795
Iteration: 11, Func. Count: 94, Neg. LLF: 135.18200565962644
Iteration: 12, Func. Count: 102, Neg. LLF: 135.18196058298165
Iteration: 13, Func. Count: 110, Neg. LLF: 135.181941001712
Iteration: 14, Func. Count: 118, Neg. LLF: 135.18194057514702
Optimization terminated successfully (Exit mode 0)
Current function value: 135.18194057514702
Iterations: 14
Function evaluations: 118
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 21803858.059521645
Iteration: 2, Func. Count: 21, Neg. LLF: 136.6072090405415
Iteration: 3, Func. Count: 30, Neg. LLF: 135.65080136599835
Iteration: 4, Func. Count: 39, Neg. LLF: 140.08002363640395
Iteration: 5, Func. Count: 50, Neg. LLF: 135.39218631545106
Iteration: 6, Func. Count: 59, Neg. LLF: 135.17352975644405
Iteration: 7, Func. Count: 68, Neg. LLF: 135.13768893070713
Iteration: 8, Func. Count: 77, Neg. LLF: 135.13504643539696
Iteration: 9, Func. Count: 86, Neg. LLF: 135.13494936509034
Iteration: 10, Func. Count: 95, Neg. LLF: 135.1349482766017
Iteration: 11, Func. Count: 103, Neg. LLF: 135.13494827656368
Optimization terminated successfully (Exit mode 0)
Current function value: 135.1349482766017
Iterations: 11
Function evaluations: 103
Gradient evaluations: 11
Iteration: 1, Func. Count: 11, Neg. LLF: 21786970.11136021
Iteration: 2, Func. Count: 23, Neg. LLF: 136.28460549726398
Iteration: 3, Func. Count: 33, Neg. LLF: 134.6143515557833
Iteration: 4, Func. Count: 43, Neg. LLF: 139.61944737340949
Iteration: 5, Func. Count: 54, Neg. LLF: 133.28293821355362
Iteration: 6, Func. Count: 64, Neg. LLF: 133.2824619958496
Iteration: 7, Func. Count: 75, Neg. LLF: 133.25345390306057
Iteration: 8, Func. Count: 85, Neg. LLF: 133.2423198163274
Iteration: 9, Func. Count: 95, Neg. LLF: 133.2367520064684
Iteration: 10, Func. Count: 105, Neg. LLF: 133.23610117365533
Iteration: 11, Func. Count: 115, Neg. LLF: 133.2360637000067
Iteration: 12, Func. Count: 125, Neg. LLF: 133.23606178329266
Iteration: 13, Func. Count: 134, Neg. LLF: 133.23606178329163
Optimization terminated successfully (Exit mode 0)
Current function value: 133.23606178329266
Iterations: 14
Function evaluations: 134
Gradient evaluations: 13
Iteration: 1, Func. Count: 8, Neg. LLF: 135.14147319124257
Iteration: 2, Func. Count: 15, Neg. LLF: 138.29678319418585
Iteration: 3, Func. Count: 23, Neg. LLF: 139.3089761485457
Iteration: 4, Func. Count: 31, Neg. LLF: 134.28462014631356
Iteration: 5, Func. Count: 38, Neg. LLF: 133.910969816748
Iteration: 6, Func. Count: 45, Neg. LLF: 133.77857668192345
Iteration: 7, Func. Count: 52, Neg. LLF: 133.67634671304282
Iteration: 8, Func. Count: 59, Neg. LLF: 133.6191094061802
Iteration: 9, Func. Count: 66, Neg. LLF: 133.61254483568644
Iteration: 10, Func. Count: 73, Neg. LLF: 133.61244516931367
Iteration: 11, Func. Count: 80, Neg. LLF: 133.61243972111305
Iteration: 12, Func. Count: 86, Neg. LLF: 133.61243986892364
Optimization terminated successfully (Exit mode 0)
Current function value: 133.61243972111305
Iterations: 12
Function evaluations: 86
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 10963173.602985896
Iteration: 2, Func. Count: 18, Neg. LLF: 138.7956946810172
Iteration: 3, Func. Count: 28, Neg. LLF: 143.74477929965445
Iteration: 4, Func. Count: 37, Neg. LLF: 134.44705525118823
Iteration: 5, Func. Count: 45, Neg. LLF: 134.31990584871662
Iteration: 6, Func. Count: 54, Neg. LLF: 134.06160068882815
Iteration: 7, Func. Count: 62, Neg. LLF: 133.94387374647485
Iteration: 8, Func. Count: 70, Neg. LLF: 133.9378815802842
Iteration: 9, Func. Count: 79, Neg. LLF: 133.93610648263626
Iteration: 10, Func. Count: 88, Neg. LLF: 133.92026065974227
Iteration: 11, Func. Count: 96, Neg. LLF: 133.92004335020323
Iteration: 12, Func. Count: 104, Neg. LLF: 133.9200188587789
Iteration: 13, Func. Count: 111, Neg. LLF: 133.92001885889675
Optimization terminated successfully (Exit mode 0)
Current function value: 133.9200188587789
Iterations: 13
Function evaluations: 111
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 10898231.291790169
Iteration: 2, Func. Count: 20, Neg. LLF: 134.6978432482273
Iteration: 3, Func. Count: 30, Neg. LLF: 146.94291807266265
Iteration: 4, Func. Count: 40, Neg. LLF: 132.30297833066433
Iteration: 5, Func. Count: 49, Neg. LLF: 132.0841676109794
Iteration: 6, Func. Count: 58, Neg. LLF: 131.84174040764734
Iteration: 7, Func. Count: 67, Neg. LLF: 131.63886240747934
Iteration: 8, Func. Count: 76, Neg. LLF: 131.52093751101935
Iteration: 9, Func. Count: 85, Neg. LLF: 131.51028333044417
Iteration: 10, Func. Count: 94, Neg. LLF: 131.5097989988539
Iteration: 11, Func. Count: 103, Neg. LLF: 131.5097725971619
Iteration: 12, Func. Count: 112, Neg. LLF: 131.5097660893561
Iteration: 13, Func. Count: 121, Neg. LLF: 131.50976347950774
Iteration: 14, Func. Count: 130, Neg. LLF: 131.50976280906423
Optimization terminated successfully (Exit mode 0)
Current function value: 131.50976280906423
Iterations: 14
Function evaluations: 130
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 10841830.828044191
Iteration: 2, Func. Count: 22, Neg. LLF: 133.67948787973648
Iteration: 3, Func. Count: 32, Neg. LLF: 132.95223660613212
Iteration: 4, Func. Count: 42, Neg. LLF: 133.10913867531661
Iteration: 5, Func. Count: 53, Neg. LLF: 132.00566893278344
Iteration: 6, Func. Count: 63, Neg. LLF: 131.58594098475325
Iteration: 7, Func. Count: 73, Neg. LLF: 131.53508840086909
Iteration: 8, Func. Count: 83, Neg. LLF: 131.52332044399577
Iteration: 9, Func. Count: 93, Neg. LLF: 131.51760509941684
Iteration: 10, Func. Count: 103, Neg. LLF: 131.50976953924277
Iteration: 11, Func. Count: 113, Neg. LLF: 131.50976277950363
Iteration: 12, Func. Count: 122, Neg. LLF: 131.5097628434481
Optimization terminated successfully (Exit mode 0)
Current function value: 131.50976277950363
Iterations: 12
Function evaluations: 122
Gradient evaluations: 12
Iteration: 1, Func. Count: 12, Neg. LLF: 21871621.23643997
Iteration: 2, Func. Count: 25, Neg. LLF: 174.788225179162
Iteration: 3, Func. Count: 37, Neg. LLF: 151.1528855031807
Iteration: 4, Func. Count: 49, Neg. LLF: 137.31244085711768
Iteration: 5, Func. Count: 61, Neg. LLF: 134.05266544596742
Iteration: 6, Func. Count: 73, Neg. LLF: 132.49619126811038
Iteration: 7, Func. Count: 84, Neg. LLF: 132.84514904814918
Iteration: 8, Func. Count: 96, Neg. LLF: 132.75383382132767
Iteration: 9, Func. Count: 108, Neg. LLF: 132.08916590434868
Iteration: 10, Func. Count: 119, Neg. LLF: 132.01169687430036
Iteration: 11, Func. Count: 130, Neg. LLF: 131.92519419465017
Iteration: 12, Func. Count: 141, Neg. LLF: 131.7002105040858
Iteration: 13, Func. Count: 152, Neg. LLF: 131.57310490911604
Iteration: 14, Func. Count: 163, Neg. LLF: 131.51911936277816
Iteration: 15, Func. Count: 174, Neg. LLF: 131.51022111634438
Iteration: 16, Func. Count: 185, Neg. LLF: 131.50986126993416
Iteration: 17, Func. Count: 196, Neg. LLF: 131.5098153208809
Iteration: 18, Func. Count: 207, Neg. LLF: 131.50976783528068
Iteration: 19, Func. Count: 218, Neg. LLF: 131.50976307407728
Iteration: 20, Func. Count: 228, Neg. LLF: 131.50976312587576
Optimization terminated successfully (Exit mode 0)
Current function value: 131.50976307407728
Iterations: 20
Function evaluations: 228
Gradient evaluations: 20
Iteration: 1, Func. Count: 9, Neg. LLF: 135.4484903494865
Iteration: 2, Func. Count: 17, Neg. LLF: 141.96980011243207
Iteration: 3, Func. Count: 26, Neg. LLF: 139.21964613622617
Iteration: 4, Func. Count: 35, Neg. LLF: 134.53526625038367
Iteration: 5, Func. Count: 44, Neg. LLF: 134.44905382397454
Iteration: 6, Func. Count: 54, Neg. LLF: 213.80433964286436
Iteration: 7, Func. Count: 63, Neg. LLF: 133.75010641044872
Iteration: 8, Func. Count: 71, Neg. LLF: 133.62116928811554
Iteration: 9, Func. Count: 79, Neg. LLF: 133.6074491066521
Iteration: 10, Func. Count: 87, Neg. LLF: 133.60673913697372
Iteration: 11, Func. Count: 95, Neg. LLF: 133.60669865530738
Iteration: 12, Func. Count: 103, Neg. LLF: 133.60669805843978
Optimization terminated successfully (Exit mode 0)
Current function value: 133.60669805843978
Iterations: 12
Function evaluations: 103
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 7795958.438012083
Iteration: 2, Func. Count: 20, Neg. LLF: 135.0051185389236
Iteration: 3, Func. Count: 29, Neg. LLF: 134.9089560637791
Iteration: 4, Func. Count: 39, Neg. LLF: 610.3721885143341
Iteration: 5, Func. Count: 49, Neg. LLF: 134.08136489055897
Iteration: 6, Func. Count: 58, Neg. LLF: 134.00456258338212
Iteration: 7, Func. Count: 67, Neg. LLF: 134.2901018697638
Iteration: 8, Func. Count: 77, Neg. LLF: 133.96612870533562
Iteration: 9, Func. Count: 86, Neg. LLF: 133.9401185075892
Iteration: 10, Func. Count: 95, Neg. LLF: 133.9287951893153
Iteration: 11, Func. Count: 104, Neg. LLF: 133.92220885605903
Iteration: 12, Func. Count: 113, Neg. LLF: 133.92010390765452
Iteration: 13, Func. Count: 122, Neg. LLF: 133.92003261536382
Iteration: 14, Func. Count: 131, Neg. LLF: 133.92002011928682
Iteration: 15, Func. Count: 140, Neg. LLF: 133.9200187244075
Iteration: 16, Func. Count: 148, Neg. LLF: 133.920018724399
Optimization terminated successfully (Exit mode 0)
Current function value: 133.9200187244075
Iterations: 16
Function evaluations: 148
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 10891760.252467928
Iteration: 2, Func. Count: 22, Neg. LLF: 134.57746230973143
Iteration: 3, Func. Count: 33, Neg. LLF: 146.94592385121288
Iteration: 4, Func. Count: 44, Neg. LLF: 132.29569136893448
Iteration: 5, Func. Count: 54, Neg. LLF: 132.07473874814676
Iteration: 6, Func. Count: 64, Neg. LLF: 131.8349488515864
Iteration: 7, Func. Count: 74, Neg. LLF: 131.62285196283486
Iteration: 8, Func. Count: 84, Neg. LLF: 131.51968258591157
Iteration: 9, Func. Count: 94, Neg. LLF: 131.5102295530207
Iteration: 10, Func. Count: 104, Neg. LLF: 131.50980011808426
Iteration: 11, Func. Count: 114, Neg. LLF: 131.5097747543364
Iteration: 12, Func. Count: 124, Neg. LLF: 131.50976655326187
Iteration: 13, Func. Count: 134, Neg. LLF: 131.50976341247755
Iteration: 14, Func. Count: 144, Neg. LLF: 131.50976279812284
Optimization terminated successfully (Exit mode 0)
Current function value: 131.50976279812284
Iterations: 14
Function evaluations: 144
Gradient evaluations: 14
Iteration: 1, Func. Count: 12, Neg. LLF: 10827921.803785909
Iteration: 2, Func. Count: 24, Neg. LLF: 133.50891252409662
Iteration: 3, Func. Count: 35, Neg. LLF: 133.08805842583718
Iteration: 4, Func. Count: 47, Neg. LLF: 131.75761228164686
Iteration: 5, Func. Count: 59, Neg. LLF: 131.54295040805403
Iteration: 6, Func. Count: 70, Neg. LLF: 131.5265493747917
Iteration: 7, Func. Count: 81, Neg. LLF: 131.51026922284296
Iteration: 8, Func. Count: 92, Neg. LLF: 131.5097720049982
Iteration: 9, Func. Count: 103, Neg. LLF: 131.5097628180773
Iteration: 10, Func. Count: 113, Neg. LLF: 131.50976288197248
Optimization terminated successfully (Exit mode 0)
Current function value: 131.5097628180773
Iterations: 10
Function evaluations: 113
Gradient evaluations: 10
Iteration: 1, Func. Count: 13, Neg. LLF: 21865997.280601453
Iteration: 2, Func. Count: 27, Neg. LLF: 758.3204948168799
Iteration: 3, Func. Count: 40, Neg. LLF: 152.6327373772546
Iteration: 4, Func. Count: 53, Neg. LLF: 138.52700833657704
Iteration: 5, Func. Count: 66, Neg. LLF: 137.38214675008814
Iteration: 6, Func. Count: 79, Neg. LLF: 132.8408712135035
Iteration: 7, Func. Count: 91, Neg. LLF: 134.39623083399783
Iteration: 8, Func. Count: 105, Neg. LLF: 136.84249077642357
Iteration: 9, Func. Count: 118, Neg. LLF: 131.84778264082442
Iteration: 10, Func. Count: 130, Neg. LLF: 131.67633784047544
Iteration: 11, Func. Count: 142, Neg. LLF: 131.51173833518197
Iteration: 12, Func. Count: 154, Neg. LLF: 131.51099880772128
Iteration: 13, Func. Count: 166, Neg. LLF: 131.51044586396887
Iteration: 14, Func. Count: 178, Neg. LLF: 131.51022643150935
Iteration: 15, Func. Count: 190, Neg. LLF: 131.51003167201398
Iteration: 16, Func. Count: 202, Neg. LLF: 131.50995322380743
Iteration: 17, Func. Count: 214, Neg. LLF: 131.5098558511967
Iteration: 18, Func. Count: 226, Neg. LLF: 131.50979036069918
Iteration: 19, Func. Count: 238, Neg. LLF: 131.50976558876462
Iteration: 20, Func. Count: 250, Neg. LLF: 131.50976286379435
Iteration: 21, Func. Count: 261, Neg. LLF: 131.509762915546
Optimization terminated successfully (Exit mode 0)
Current function value: 131.50976286379435
Iterations: 21
Function evaluations: 261
Gradient evaluations: 21
Iteration: 1, Func. Count: 10, Neg. LLF: 132.694004458054
Iteration: 2, Func. Count: 19, Neg. LLF: 155.22241908982156
Iteration: 3, Func. Count: 29, Neg. LLF: 130.89642664075183
Iteration: 4, Func. Count: 38, Neg. LLF: 306976.73820962914
Iteration: 5, Func. Count: 48, Neg. LLF: 1214132.7344365641
Iteration: 6, Func. Count: 58, Neg. LLF: 130.67180218998604
Iteration: 7, Func. Count: 68, Neg. LLF: 129.97359740314388
Iteration: 8, Func. Count: 78, Neg. LLF: 129.88871929792722
Iteration: 9, Func. Count: 88, Neg. LLF: 129.86869184833702
Iteration: 10, Func. Count: 97, Neg. LLF: 129.86756352808496
Iteration: 11, Func. Count: 106, Neg. LLF: 129.8675333166258
Iteration: 12, Func. Count: 115, Neg. LLF: 129.86753219840867
Iteration: 13, Func. Count: 123, Neg. LLF: 129.86753204572858
Optimization terminated successfully (Exit mode 0)
Current function value: 129.86753219840867
Iterations: 13
Function evaluations: 123
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 1381485.8052539239
Iteration: 2, Func. Count: 22, Neg. LLF: 10569707.178224938
Iteration: 3, Func. Count: 34, Neg. LLF: 143.88142090710247
Iteration: 4, Func. Count: 45, Neg. LLF: 136.45519141042104
Iteration: 5, Func. Count: 56, Neg. LLF: 134.09327188299423
Iteration: 6, Func. Count: 66, Neg. LLF: 133.65850825596993
Iteration: 7, Func. Count: 76, Neg. LLF: 133.65687544273055
Iteration: 8, Func. Count: 86, Neg. LLF: 133.65474453246844
Iteration: 9, Func. Count: 96, Neg. LLF: 133.6529383274019
Iteration: 10, Func. Count: 106, Neg. LLF: 133.65272693009888
Iteration: 11, Func. Count: 116, Neg. LLF: 133.65271558542122
Iteration: 12, Func. Count: 125, Neg. LLF: 133.65271557559842
Optimization terminated successfully (Exit mode 0)
Current function value: 133.65271558542122
Iterations: 12
Function evaluations: 125
Gradient evaluations: 12
Iteration: 1, Func. Count: 12, Neg. LLF: 1335275.2236683944
Iteration: 2, Func. Count: 24, Neg. LLF: 17688748.949794937
Iteration: 3, Func. Count: 37, Neg. LLF: 155.92631063022677
Iteration: 4, Func. Count: 49, Neg. LLF: 140.25894411838965
Iteration: 5, Func. Count: 61, Neg. LLF: 137.24596636887395
Iteration: 6, Func. Count: 73, Neg. LLF: 133.64021061346125
Iteration: 7, Func. Count: 85, Neg. LLF: 132.63446489956158
Iteration: 8, Func. Count: 96, Neg. LLF: 133.09938338483215
Iteration: 9, Func. Count: 108, Neg. LLF: 133.04589659234165
Iteration: 10, Func. Count: 120, Neg. LLF: 132.17595705470507
Iteration: 11, Func. Count: 131, Neg. LLF: 131.99909089272668
Iteration: 12, Func. Count: 142, Neg. LLF: 131.79736564568884
Iteration: 13, Func. Count: 153, Neg. LLF: 131.36871713322014
Iteration: 14, Func. Count: 164, Neg. LLF: 131.48149042546504
Iteration: 15, Func. Count: 176, Neg. LLF: 130.97146608588528
Iteration: 16, Func. Count: 187, Neg. LLF: 130.51416873712424
Iteration: 17, Func. Count: 198, Neg. LLF: 133.02297363610018
Iteration: 18, Func. Count: 210, Neg. LLF: 130.0953677874192
Iteration: 19, Func. Count: 221, Neg. LLF: 130.05712442129285
Iteration: 20, Func. Count: 232, Neg. LLF: 130.01474393247904
Iteration: 21, Func. Count: 243, Neg. LLF: 129.93815612425527
Iteration: 22, Func. Count: 254, Neg. LLF: 129.87553587653434
Iteration: 23, Func. Count: 265, Neg. LLF: 129.87308491566856
Iteration: 24, Func. Count: 276, Neg. LLF: 129.87208588243914
Iteration: 25, Func. Count: 287, Neg. LLF: 129.87021735026084
Iteration: 26, Func. Count: 298, Neg. LLF: 129.868743738884
Iteration: 27, Func. Count: 309, Neg. LLF: 129.86775869154613
Iteration: 28, Func. Count: 320, Neg. LLF: 129.86755197567507
Iteration: 29, Func. Count: 331, Neg. LLF: 129.8675327680617
Iteration: 30, Func. Count: 342, Neg. LLF: 129.86753204119307
Optimization terminated successfully (Exit mode 0)
Current function value: 129.86753204119307
Iterations: 30
Function evaluations: 342
Gradient evaluations: 30
Iteration: 1, Func. Count: 13, Neg. LLF: 1297183.7428726077
Iteration: 2, Func. Count: 26, Neg. LLF: 34384735.043137796
Iteration: 3, Func. Count: 40, Neg. LLF: 170.50957508888766
Iteration: 4, Func. Count: 53, Neg. LLF: 138.40194805210763
Iteration: 5, Func. Count: 66, Neg. LLF: 152.8673876309564
Iteration: 6, Func. Count: 79, Neg. LLF: 133.11792786252357
Iteration: 7, Func. Count: 92, Neg. LLF: 132.16245876974955
Iteration: 8, Func. Count: 104, Neg. LLF: 131.96950284743954
Iteration: 9, Func. Count: 116, Neg. LLF: 132.78965366073288
Iteration: 10, Func. Count: 129, Neg. LLF: 131.78321015415943
Iteration: 11, Func. Count: 141, Neg. LLF: 131.6626411153722
Iteration: 12, Func. Count: 153, Neg. LLF: 131.1597962842566
Iteration: 13, Func. Count: 165, Neg. LLF: 130.62350798901466
Iteration: 14, Func. Count: 177, Neg. LLF: 130.09028854364695
Iteration: 15, Func. Count: 189, Neg. LLF: 129.92689031445863
Iteration: 16, Func. Count: 201, Neg. LLF: 129.90991912454749
Iteration: 17, Func. Count: 213, Neg. LLF: 129.89852547460615
Iteration: 18, Func. Count: 225, Neg. LLF: 129.8966104490143
Iteration: 19, Func. Count: 237, Neg. LLF: 129.88170397112611
Iteration: 20, Func. Count: 249, Neg. LLF: 130.04500824539548
Iteration: 21, Func. Count: 262, Neg. LLF: 130.05265537405364
Iteration: 22, Func. Count: 275, Neg. LLF: 130.03733398234635
Iteration: 23, Func. Count: 289, Neg. LLF: 129.86755571458724
Iteration: 24, Func. Count: 301, Neg. LLF: 129.86753622724913
Iteration: 25, Func. Count: 313, Neg. LLF: 129.86753196169508
Iteration: 26, Func. Count: 324, Neg. LLF: 129.86753209896474
Optimization terminated successfully (Exit mode 0)
Current function value: 129.86753196169508
Iterations: 27
Function evaluations: 324
Gradient evaluations: 26
Iteration: 1, Func. Count: 14, Neg. LLF: 5130293.876735985
Iteration: 2, Func. Count: 28, Neg. LLF: 873535.7205934032
Iteration: 3, Func. Count: 42, Neg. LLF: 138.13842348341933
Iteration: 4, Func. Count: 56, Neg. LLF: 133.44154486177618
Iteration: 5, Func. Count: 69, Neg. LLF: 136.7912213060359
Iteration: 6, Func. Count: 84, Neg. LLF: 829.9103387840955
Iteration: 7, Func. Count: 99, Neg. LLF: 136.6250966852026
Iteration: 8, Func. Count: 113, Neg. LLF: 135.4629762184983
Iteration: 9, Func. Count: 127, Neg. LLF: 132.1304982628309
Iteration: 10, Func. Count: 140, Neg. LLF: 132.52738323787688
Iteration: 11, Func. Count: 154, Neg. LLF: 132.05003986328452
Iteration: 12, Func. Count: 168, Neg. LLF: 131.99413268726306
Iteration: 13, Func. Count: 181, Neg. LLF: 131.91523761144066
Iteration: 14, Func. Count: 194, Neg. LLF: 131.7273221388938
Iteration: 15, Func. Count: 207, Neg. LLF: 130.80269701754082
Iteration: 16, Func. Count: 220, Neg. LLF: 130.557933406447
Iteration: 17, Func. Count: 233, Neg. LLF: 130.0470670753027
Iteration: 18, Func. Count: 246, Neg. LLF: 129.99769274781747
Iteration: 19, Func. Count: 259, Neg. LLF: 129.91446826679095
Iteration: 20, Func. Count: 272, Neg. LLF: 129.90033242931673
Iteration: 21, Func. Count: 285, Neg. LLF: 129.8826466586362
Iteration: 22, Func. Count: 298, Neg. LLF: 129.8802555768337
Iteration: 23, Func. Count: 311, Neg. LLF: 129.8749562709549
Iteration: 24, Func. Count: 324, Neg. LLF: 129.87252632504251
Iteration: 25, Func. Count: 337, Neg. LLF: 129.8702107636253
Iteration: 26, Func. Count: 350, Neg. LLF: 129.86852464542304
Iteration: 27, Func. Count: 363, Neg. LLF: 129.8676757891882
Iteration: 28, Func. Count: 376, Neg. LLF: 129.86756378861807
Iteration: 29, Func. Count: 389, Neg. LLF: 129.8675326738015
Iteration: 30, Func. Count: 402, Neg. LLF: 129.88994136550662
Optimization terminated successfully (Exit mode 0)
Current function value: 129.86753257810216
Iterations: 31
Function evaluations: 405
Gradient evaluations: 30
Iteration: 1, Func. Count: 11, Neg. LLF: 132.79655249961948
Iteration: 2, Func. Count: 21, Neg. LLF: 155.86263543490256
Iteration: 3, Func. Count: 32, Neg. LLF: 130.90139660031164
Iteration: 4, Func. Count: 42, Neg. LLF: 308501.9840555947
Iteration: 5, Func. Count: 53, Neg. LLF: 1205648.9100213738
Iteration: 6, Func. Count: 64, Neg. LLF: 130.6741032642032
Iteration: 7, Func. Count: 75, Neg. LLF: 129.9743231362644
Iteration: 8, Func. Count: 86, Neg. LLF: 129.89177436423492
Iteration: 9, Func. Count: 97, Neg. LLF: 129.86894527515446
Iteration: 10, Func. Count: 107, Neg. LLF: 129.86757848766788
Iteration: 11, Func. Count: 117, Neg. LLF: 129.86753535089676
Iteration: 12, Func. Count: 127, Neg. LLF: 129.8675325312338
Iteration: 13, Func. Count: 136, Neg. LLF: 129.86753289111365
Optimization terminated successfully (Exit mode 0)
Current function value: 129.8675325312338
Iterations: 13
Function evaluations: 136
Gradient evaluations: 13
Iteration: 1, Func. Count: 12, Neg. LLF: 1379697.2050778226
Iteration: 2, Func. Count: 24, Neg. LLF: 10374594.730102865
Iteration: 3, Func. Count: 37, Neg. LLF: 143.98052365697015
Iteration: 4, Func. Count: 49, Neg. LLF: 136.44929033829402
Iteration: 5, Func. Count: 61, Neg. LLF: 134.09680805481136
Iteration: 6, Func. Count: 72, Neg. LLF: 133.6585001868097
Iteration: 7, Func. Count: 83, Neg. LLF: 133.65687209131582
Iteration: 8, Func. Count: 94, Neg. LLF: 133.6547775401853
Iteration: 9, Func. Count: 105, Neg. LLF: 133.65292419917492
Iteration: 10, Func. Count: 116, Neg. LLF: 133.65272578384938
Iteration: 11, Func. Count: 127, Neg. LLF: 133.65271554218873
Iteration: 12, Func. Count: 137, Neg. LLF: 133.65271553235638
Optimization terminated successfully (Exit mode 0)
Current function value: 133.65271554218873
Iterations: 12
Function evaluations: 137
Gradient evaluations: 12
Iteration: 1, Func. Count: 13, Neg. LLF: 1336371.3699314487
Iteration: 2, Func. Count: 26, Neg. LLF: 17822536.87427866
Iteration: 3, Func. Count: 40, Neg. LLF: 156.1349500424
Iteration: 4, Func. Count: 53, Neg. LLF: 140.37502521835427
Iteration: 5, Func. Count: 66, Neg. LLF: 137.41476420875952
Iteration: 6, Func. Count: 79, Neg. LLF: 133.64887658607816
Iteration: 7, Func. Count: 92, Neg. LLF: 132.64830239679526
Iteration: 8, Func. Count: 104, Neg. LLF: 133.09360654760627
Iteration: 9, Func. Count: 117, Neg. LLF: 133.2086819849033
Iteration: 10, Func. Count: 130, Neg. LLF: 132.18763119312916
Iteration: 11, Func. Count: 142, Neg. LLF: 132.02337201367718
Iteration: 12, Func. Count: 154, Neg. LLF: 131.80569858604537
Iteration: 13, Func. Count: 166, Neg. LLF: 131.4091366106244
Iteration: 14, Func. Count: 178, Neg. LLF: 131.26472240507206
Iteration: 15, Func. Count: 190, Neg. LLF: 130.85961636298552
Iteration: 16, Func. Count: 202, Neg. LLF: 134.6767657842909
Iteration: 17, Func. Count: 215, Neg. LLF: 130.17809853911024
Iteration: 18, Func. Count: 227, Neg. LLF: 130.12247228466114
Iteration: 19, Func. Count: 239, Neg. LLF: 130.06820278693257
Iteration: 20, Func. Count: 251, Neg. LLF: 130.0138356545224
Iteration: 21, Func. Count: 263, Neg. LLF: 129.96389599640594
Iteration: 22, Func. Count: 275, Neg. LLF: 129.91015190181218
Iteration: 23, Func. Count: 287, Neg. LLF: 129.8843989898828
Iteration: 24, Func. Count: 299, Neg. LLF: 129.87843902349792
Iteration: 25, Func. Count: 311, Neg. LLF: 129.87428451040714
Iteration: 26, Func. Count: 323, Neg. LLF: 129.87212769700915
Iteration: 27, Func. Count: 335, Neg. LLF: 129.87097522288323
Iteration: 28, Func. Count: 347, Neg. LLF: 129.86896887551904
Iteration: 29, Func. Count: 359, Neg. LLF: 129.8679750384593
Iteration: 30, Func. Count: 371, Neg. LLF: 129.86757799821336
Iteration: 31, Func. Count: 383, Neg. LLF: 129.8675337748382
Iteration: 32, Func. Count: 395, Neg. LLF: 129.86753198602614
Iteration: 33, Func. Count: 406, Neg. LLF: 129.86753206318028
Optimization terminated successfully (Exit mode 0)
Current function value: 129.86753198602614
Iterations: 33
Function evaluations: 406
Gradient evaluations: 33
Iteration: 1, Func. Count: 14, Neg. LLF: 1299281.3042559028
Iteration: 2, Func. Count: 28, Neg. LLF: 34418892.976463675
Iteration: 3, Func. Count: 43, Neg. LLF: 171.00050886722204
Iteration: 4, Func. Count: 57, Neg. LLF: 138.51504892046236
Iteration: 5, Func. Count: 71, Neg. LLF: 152.48635924532724
Iteration: 6, Func. Count: 85, Neg. LLF: 133.26032930805823
Iteration: 7, Func. Count: 99, Neg. LLF: 132.1513604073731
Iteration: 8, Func. Count: 112, Neg. LLF: 131.95660041747166
Iteration: 9, Func. Count: 125, Neg. LLF: 132.41936332980796
Iteration: 10, Func. Count: 139, Neg. LLF: 131.77473607775738
Iteration: 11, Func. Count: 152, Neg. LLF: 131.59047327308957
Iteration: 12, Func. Count: 165, Neg. LLF: 131.124353769888
Iteration: 13, Func. Count: 178, Neg. LLF: 130.63215071661992
Iteration: 14, Func. Count: 191, Neg. LLF: 130.12683777481044
Iteration: 15, Func. Count: 204, Neg. LLF: 129.95976013096586
Iteration: 16, Func. Count: 217, Neg. LLF: 129.93361697111837
Iteration: 17, Func. Count: 230, Neg. LLF: 129.90162818139285
Iteration: 18, Func. Count: 243, Neg. LLF: 129.88796414290618
Iteration: 19, Func. Count: 256, Neg. LLF: 129.88071899293382
Iteration: 20, Func. Count: 269, Neg. LLF: 129.87576032337194
Iteration: 21, Func. Count: 282, Neg. LLF: 129.9536418754298
Iteration: 22, Func. Count: 296, Neg. LLF: 129.9490956532965
Iteration: 23, Func. Count: 310, Neg. LLF: 129.9316284463961
Iteration: 24, Func. Count: 324, Neg. LLF: 129.87223142214054
Iteration: 25, Func. Count: 338, Neg. LLF: 129.867538959911
Iteration: 26, Func. Count: 351, Neg. LLF: 129.8675321631094
Iteration: 27, Func. Count: 363, Neg. LLF: 129.867532300464
Optimization terminated successfully (Exit mode 0)
Current function value: 129.8675321631094
Iterations: 28
Function evaluations: 363
Gradient evaluations: 27
Iteration: 1, Func. Count: 15, Neg. LLF: 5128414.580539631
Iteration: 2, Func. Count: 30, Neg. LLF: 881270.2521567417
Iteration: 3, Func. Count: 45, Neg. LLF: 138.13600272159914
Iteration: 4, Func. Count: 60, Neg. LLF: 133.66217651557412
Iteration: 5, Func. Count: 74, Neg. LLF: 136.76855799187598
Iteration: 6, Func. Count: 90, Neg. LLF: 490.042591588197
Iteration: 7, Func. Count: 105, Neg. LLF: 135.12334329799518
Iteration: 8, Func. Count: 120, Neg. LLF: 163.27641377877598
Iteration: 9, Func. Count: 135, Neg. LLF: 132.22976276361933
Iteration: 10, Func. Count: 149, Neg. LLF: 164.31331034935945
Iteration: 11, Func. Count: 165, Neg. LLF: 132.02290765993283
Iteration: 12, Func. Count: 179, Neg. LLF: 131.9832090421014
Iteration: 13, Func. Count: 193, Neg. LLF: 131.94855705678808
Iteration: 14, Func. Count: 207, Neg. LLF: 131.82241528989596
Iteration: 15, Func. Count: 221, Neg. LLF: 130.3598559580263
Iteration: 16, Func. Count: 235, Neg. LLF: 130.18848609621992
Iteration: 17, Func. Count: 249, Neg. LLF: 130.11155287898777
Iteration: 18, Func. Count: 263, Neg. LLF: 130.0417142783638
Iteration: 19, Func. Count: 277, Neg. LLF: 129.9488615249364
Iteration: 20, Func. Count: 291, Neg. LLF: 129.8949531270177
Iteration: 21, Func. Count: 305, Neg. LLF: 129.88376360788698
Iteration: 22, Func. Count: 319, Neg. LLF: 129.8816438762702
Iteration: 23, Func. Count: 333, Neg. LLF: 129.8749850708947
Iteration: 24, Func. Count: 347, Neg. LLF: 129.87046741896123
Iteration: 25, Func. Count: 361, Neg. LLF: 129.8685159702166
Iteration: 26, Func. Count: 375, Neg. LLF: 129.86813512272218
Iteration: 27, Func. Count: 389, Neg. LLF: 129.8678532840325
Iteration: 28, Func. Count: 403, Neg. LLF: 129.8676372747552
Iteration: 29, Func. Count: 417, Neg. LLF: 129.86756440373773
Iteration: 30, Func. Count: 431, Neg. LLF: 129.86753301629096
Iteration: 31, Func. Count: 445, Neg. LLF: 129.8675320454209
Optimization terminated successfully (Exit mode 0)
Current function value: 129.8675320454209
Iterations: 31
Function evaluations: 445
Gradient evaluations: 31
Iteration: 1, Func. Count: 8, Neg. LLF: 139.20309063710502
Iteration: 2, Func. Count: 16, Neg. LLF: 142.84624815956764
Iteration: 3, Func. Count: 25, Neg. LLF: 136.09800199426448
Iteration: 4, Func. Count: 32, Neg. LLF: 135.51420003164134
Iteration: 5, Func. Count: 39, Neg. LLF: 136.2315380155339
Iteration: 6, Func. Count: 48, Neg. LLF: 135.43812744559105
Iteration: 7, Func. Count: 55, Neg. LLF: 135.43915316164936
Iteration: 8, Func. Count: 63, Neg. LLF: 135.43197297784593
Iteration: 9, Func. Count: 70, Neg. LLF: 135.43187758056408
Iteration: 10, Func. Count: 77, Neg. LLF: 135.43186158977718
Iteration: 11, Func. Count: 84, Neg. LLF: 135.43186104695593
Optimization terminated successfully (Exit mode 0)
Current function value: 135.43186104695593
Iterations: 11
Function evaluations: 84
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 21863591.123621847
Iteration: 2, Func. Count: 19, Neg. LLF: 138.55047262673042
Iteration: 3, Func. Count: 28, Neg. LLF: 136.7110053322671
Iteration: 4, Func. Count: 36, Neg. LLF: 140.76102588288592
Iteration: 5, Func. Count: 45, Neg. LLF: 138.44528292461462
Iteration: 6, Func. Count: 55, Neg. LLF: 135.24794336997758
Iteration: 7, Func. Count: 63, Neg. LLF: 135.22003134698357
Iteration: 8, Func. Count: 71, Neg. LLF: 135.2183648366144
Iteration: 9, Func. Count: 79, Neg. LLF: 135.21795956548897
Iteration: 10, Func. Count: 87, Neg. LLF: 135.21795622974494
Iteration: 11, Func. Count: 94, Neg. LLF: 135.2179562299372
Optimization terminated successfully (Exit mode 0)
Current function value: 135.21795622974494
Iterations: 11
Function evaluations: 94
Gradient evaluations: 11
Iteration: 1, Func. Count: 10, Neg. LLF: 21829550.118975632
Iteration: 2, Func. Count: 21, Neg. LLF: 137.44415115668238
Iteration: 3, Func. Count: 31, Neg. LLF: 136.00914564398195
Iteration: 4, Func. Count: 40, Neg. LLF: 135.69834152031285
Iteration: 5, Func. Count: 49, Neg. LLF: 136.35209822784043
Iteration: 6, Func. Count: 59, Neg. LLF: 135.31123598865804
Iteration: 7, Func. Count: 68, Neg. LLF: 135.23534669737163
Iteration: 8, Func. Count: 77, Neg. LLF: 135.21332610772873
Iteration: 9, Func. Count: 86, Neg. LLF: 135.392847626151
Iteration: 10, Func. Count: 96, Neg. LLF: 135.1829069733338
Iteration: 11, Func. Count: 105, Neg. LLF: 135.1820199295938
Iteration: 12, Func. Count: 114, Neg. LLF: 135.18196775786524
Iteration: 13, Func. Count: 123, Neg. LLF: 135.18194060652914
Iteration: 14, Func. Count: 131, Neg. LLF: 135.18194060596835
Optimization terminated successfully (Exit mode 0)
Current function value: 135.18194060652914
Iterations: 14
Function evaluations: 131
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 21806063.37894128
Iteration: 2, Func. Count: 23, Neg. LLF: 136.6406504321351
Iteration: 3, Func. Count: 33, Neg. LLF: 135.6552840449589
Iteration: 4, Func. Count: 43, Neg. LLF: 140.29262473670735
Iteration: 5, Func. Count: 55, Neg. LLF: 135.39819884120698
Iteration: 6, Func. Count: 65, Neg. LLF: 135.17591566445836
Iteration: 7, Func. Count: 75, Neg. LLF: 135.13747478085222
Iteration: 8, Func. Count: 85, Neg. LLF: 135.1350352184599
Iteration: 9, Func. Count: 95, Neg. LLF: 135.13494910107528
Iteration: 10, Func. Count: 105, Neg. LLF: 135.13494828038785
Optimization terminated successfully (Exit mode 0)
Current function value: 135.13494828038785
Iterations: 10
Function evaluations: 105
Gradient evaluations: 10
Iteration: 1, Func. Count: 12, Neg. LLF: 21790381.876284186
Iteration: 2, Func. Count: 25, Neg. LLF: 136.31586586589182
Iteration: 3, Func. Count: 36, Neg. LLF: 135.00761219767426
Iteration: 4, Func. Count: 47, Neg. LLF: 139.7942739309663
Iteration: 5, Func. Count: 59, Neg. LLF: 133.4439483472907
Iteration: 6, Func. Count: 70, Neg. LLF: 133.26241246834815
Iteration: 7, Func. Count: 81, Neg. LLF: 133.2489916419068
Iteration: 8, Func. Count: 92, Neg. LLF: 133.24302163299222
Iteration: 9, Func. Count: 103, Neg. LLF: 133.2365065983669
Iteration: 10, Func. Count: 114, Neg. LLF: 133.2360946546294
Iteration: 11, Func. Count: 125, Neg. LLF: 133.23606771362236
Iteration: 12, Func. Count: 136, Neg. LLF: 133.68265462933016
Optimization terminated successfully (Exit mode 0)
Current function value: 133.23606756848872
Iterations: 13
Function evaluations: 139
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 137.02829333691233
Iteration: 2, Func. Count: 17, Neg. LLF: 147.60978100635603
Iteration: 3, Func. Count: 26, Neg. LLF: 138.71129823170966
Iteration: 4, Func. Count: 35, Neg. LLF: 134.56597347446618
Iteration: 5, Func. Count: 44, Neg. LLF: 133.98726650814967
Iteration: 6, Func. Count: 52, Neg. LLF: 133.77786110348342
Iteration: 7, Func. Count: 60, Neg. LLF: 133.61504613584358
Iteration: 8, Func. Count: 68, Neg. LLF: 133.6125561979683
Iteration: 9, Func. Count: 76, Neg. LLF: 133.61246441440395
Iteration: 10, Func. Count: 84, Neg. LLF: 133.61244155210747
Iteration: 11, Func. Count: 92, Neg. LLF: 133.6124393451674
Iteration: 12, Func. Count: 99, Neg. LLF: 133.61243949297088
Optimization terminated successfully (Exit mode 0)
Current function value: 133.6124393451674
Iterations: 12
Function evaluations: 99
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 10960864.727541277
Iteration: 2, Func. Count: 20, Neg. LLF: 138.8552502073033
Iteration: 3, Func. Count: 31, Neg. LLF: 143.60199750253827
Iteration: 4, Func. Count: 41, Neg. LLF: 134.4524506809419
Iteration: 5, Func. Count: 50, Neg. LLF: 134.3362703043041
Iteration: 6, Func. Count: 60, Neg. LLF: 134.06116609492625
Iteration: 7, Func. Count: 69, Neg. LLF: 133.9481176309934
Iteration: 8, Func. Count: 78, Neg. LLF: 133.92597642958955
Iteration: 9, Func. Count: 87, Neg. LLF: 133.92801200119183
Iteration: 10, Func. Count: 97, Neg. LLF: 133.9205518341465
Iteration: 11, Func. Count: 106, Neg. LLF: 133.92007243862597
Iteration: 12, Func. Count: 115, Neg. LLF: 133.92002564618764
Iteration: 13, Func. Count: 124, Neg. LLF: 133.920018954042
Iteration: 14, Func. Count: 132, Neg. LLF: 133.92001895420876
Optimization terminated successfully (Exit mode 0)
Current function value: 133.920018954042
Iterations: 14
Function evaluations: 132
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 10902012.606960261
Iteration: 2, Func. Count: 22, Neg. LLF: 134.78212277322777
Iteration: 3, Func. Count: 33, Neg. LLF: 146.94419970992638
Iteration: 4, Func. Count: 44, Neg. LLF: 132.30710569409172
Iteration: 5, Func. Count: 54, Neg. LLF: 132.09249365396326
Iteration: 6, Func. Count: 64, Neg. LLF: 131.84741904093332
Iteration: 7, Func. Count: 74, Neg. LLF: 131.6506290631734
Iteration: 8, Func. Count: 84, Neg. LLF: 131.52174253492265
Iteration: 9, Func. Count: 94, Neg. LLF: 131.5103430596628
Iteration: 10, Func. Count: 104, Neg. LLF: 131.50978918124778
Iteration: 11, Func. Count: 114, Neg. LLF: 131.50976587389675
Iteration: 12, Func. Count: 124, Neg. LLF: 131.50976369271393
Iteration: 13, Func. Count: 133, Neg. LLF: 131.50976369288043
Optimization terminated successfully (Exit mode 0)
Current function value: 131.50976369271393
Iterations: 13
Function evaluations: 133
Gradient evaluations: 13
Iteration: 1, Func. Count: 12, Neg. LLF: 10847342.697602905
Iteration: 2, Func. Count: 24, Neg. LLF: 133.76908236052898
Iteration: 3, Func. Count: 35, Neg. LLF: 132.87192250241904
Iteration: 4, Func. Count: 46, Neg. LLF: 133.04409764513213
Iteration: 5, Func. Count: 58, Neg. LLF: 131.9694742231162
Iteration: 6, Func. Count: 69, Neg. LLF: 131.5829102578182
Iteration: 7, Func. Count: 80, Neg. LLF: 131.53496625200097
Iteration: 8, Func. Count: 91, Neg. LLF: 131.52356112151705
Iteration: 9, Func. Count: 102, Neg. LLF: 131.51735975417597
Iteration: 10, Func. Count: 113, Neg. LLF: 131.50976569391503
Iteration: 11, Func. Count: 124, Neg. LLF: 131.50976277321078
Iteration: 12, Func. Count: 134, Neg. LLF: 131.5097628371605
Optimization terminated successfully (Exit mode 0)
Current function value: 131.50976277321078
Iterations: 12
Function evaluations: 134
Gradient evaluations: 12
Iteration: 1, Func. Count: 13, Neg. LLF: 21878032.321946487
Iteration: 2, Func. Count: 27, Neg. LLF: 174.64995696762082
Iteration: 3, Func. Count: 40, Neg. LLF: 151.38923100485314
Iteration: 4, Func. Count: 53, Neg. LLF: 137.2864830433261
Iteration: 5, Func. Count: 66, Neg. LLF: 134.0753415464758
Iteration: 6, Func. Count: 79, Neg. LLF: 132.5119655131392
Iteration: 7, Func. Count: 91, Neg. LLF: 132.88915491078137
Iteration: 8, Func. Count: 104, Neg. LLF: 132.93474172469539
Iteration: 9, Func. Count: 117, Neg. LLF: 132.09519273474172
Iteration: 10, Func. Count: 129, Neg. LLF: 132.01979525961198
Iteration: 11, Func. Count: 141, Neg. LLF: 131.94198695996334
Iteration: 12, Func. Count: 153, Neg. LLF: 131.71321057227405
Iteration: 13, Func. Count: 165, Neg. LLF: 131.57327082503022
Iteration: 14, Func. Count: 177, Neg. LLF: 131.5199976873359
Iteration: 15, Func. Count: 189, Neg. LLF: 131.51040137170492
Iteration: 16, Func. Count: 201, Neg. LLF: 131.50995437331477
Iteration: 17, Func. Count: 213, Neg. LLF: 131.50985806227857
Iteration: 18, Func. Count: 225, Neg. LLF: 131.50977272971244
Iteration: 19, Func. Count: 237, Neg. LLF: 131.50976335351584
Iteration: 20, Func. Count: 249, Neg. LLF: 131.50976277392604
Optimization terminated successfully (Exit mode 0)
Current function value: 131.50976277392604
Iterations: 20
Function evaluations: 249
Gradient evaluations: 20
Iteration: 1, Func. Count: 10, Neg. LLF: 135.10222019167287
Iteration: 2, Func. Count: 19, Neg. LLF: 136.7505374209498
Iteration: 3, Func. Count: 29, Neg. LLF: 139.67369413732806
Iteration: 4, Func. Count: 39, Neg. LLF: 134.81693973381283
Iteration: 5, Func. Count: 49, Neg. LLF: 144.79823449599155
Iteration: 6, Func. Count: 60, Neg. LLF: 133.99427615234234
Iteration: 7, Func. Count: 70, Neg. LLF: 133.7384423684088
Iteration: 8, Func. Count: 79, Neg. LLF: 133.62002263945712
Iteration: 9, Func. Count: 88, Neg. LLF: 133.60912966321956
Iteration: 10, Func. Count: 97, Neg. LLF: 133.60676275670684
Iteration: 11, Func. Count: 106, Neg. LLF: 133.60671714920542
Iteration: 12, Func. Count: 115, Neg. LLF: 133.60669810857112
Iteration: 13, Func. Count: 123, Neg. LLF: 133.60669810864735
Optimization terminated successfully (Exit mode 0)
Current function value: 133.60669810857112
Iterations: 13
Function evaluations: 123
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 7795612.921672427
Iteration: 2, Func. Count: 22, Neg. LLF: 134.980858203887
Iteration: 3, Func. Count: 32, Neg. LLF: 134.9311339345737
Iteration: 4, Func. Count: 43, Neg. LLF: 447.84399233668177
Iteration: 5, Func. Count: 54, Neg. LLF: 134.08203022436385
Iteration: 6, Func. Count: 64, Neg. LLF: 134.00360261742242
Iteration: 7, Func. Count: 74, Neg. LLF: 134.3800794017085
Iteration: 8, Func. Count: 85, Neg. LLF: 133.95562751571072
Iteration: 9, Func. Count: 95, Neg. LLF: 133.9373280106699
Iteration: 10, Func. Count: 105, Neg. LLF: 133.92712817447267
Iteration: 11, Func. Count: 115, Neg. LLF: 133.92117532884876
Iteration: 12, Func. Count: 125, Neg. LLF: 133.92003497799337
Iteration: 13, Func. Count: 135, Neg. LLF: 133.92001908484448
Iteration: 14, Func. Count: 145, Neg. LLF: 133.92001893398418
Optimization terminated successfully (Exit mode 0)
Current function value: 133.92001893398418
Iterations: 14
Function evaluations: 145
Gradient evaluations: 14
Iteration: 1, Func. Count: 12, Neg. LLF: 10895429.724706946
Iteration: 2, Func. Count: 24, Neg. LLF: 134.6601313046494
Iteration: 3, Func. Count: 36, Neg. LLF: 146.94268562636012
Iteration: 4, Func. Count: 48, Neg. LLF: 132.30001683924692
Iteration: 5, Func. Count: 59, Neg. LLF: 132.0830562097476
Iteration: 6, Func. Count: 70, Neg. LLF: 131.84066496705898
Iteration: 7, Func. Count: 81, Neg. LLF: 131.63345176710152
Iteration: 8, Func. Count: 92, Neg. LLF: 131.52039290163503
Iteration: 9, Func. Count: 103, Neg. LLF: 131.51027672985825
Iteration: 10, Func. Count: 114, Neg. LLF: 131.50978667115803
Iteration: 11, Func. Count: 125, Neg. LLF: 131.5097667721653
Iteration: 12, Func. Count: 136, Neg. LLF: 131.50976417136548
Iteration: 13, Func. Count: 147, Neg. LLF: 131.50976315919448
Iteration: 14, Func. Count: 157, Neg. LLF: 131.50976315926678
Optimization terminated successfully (Exit mode 0)
Current function value: 131.50976315919448
Iterations: 14
Function evaluations: 157
Gradient evaluations: 14
Iteration: 1, Func. Count: 13, Neg. LLF: 10833416.920300165
Iteration: 2, Func. Count: 26, Neg. LLF: 133.59602024199214
Iteration: 3, Func. Count: 38, Neg. LLF: 132.99365899578657
Iteration: 4, Func. Count: 51, Neg. LLF: 131.7368100030512
Iteration: 5, Func. Count: 64, Neg. LLF: 131.54449222582738
Iteration: 6, Func. Count: 76, Neg. LLF: 131.5258305933498
Iteration: 7, Func. Count: 88, Neg. LLF: 131.5101919636622
Iteration: 8, Func. Count: 100, Neg. LLF: 131.50977113856896
Iteration: 9, Func. Count: 112, Neg. LLF: 131.50976281158756
Iteration: 10, Func. Count: 123, Neg. LLF: 131.50976287549196
Optimization terminated successfully (Exit mode 0)
Current function value: 131.50976281158756
Iterations: 10
Function evaluations: 123
Gradient evaluations: 10
Iteration: 1, Func. Count: 14, Neg. LLF: 21872310.38201247
Iteration: 2, Func. Count: 29, Neg. LLF: 916.799415792799
Iteration: 3, Func. Count: 43, Neg. LLF: 152.3761698884928
Iteration: 4, Func. Count: 57, Neg. LLF: 138.53373367924073
Iteration: 5, Func. Count: 71, Neg. LLF: 137.39463507862334
Iteration: 6, Func. Count: 85, Neg. LLF: 132.85304344332653
Iteration: 7, Func. Count: 98, Neg. LLF: 134.4362897032254
Iteration: 8, Func. Count: 113, Neg. LLF: 136.96023972760347
Iteration: 9, Func. Count: 127, Neg. LLF: 131.85786283892162
Iteration: 10, Func. Count: 140, Neg. LLF: 131.6825932867763
Iteration: 11, Func. Count: 153, Neg. LLF: 131.5120568532375
Iteration: 12, Func. Count: 166, Neg. LLF: 131.51126592859018
Iteration: 13, Func. Count: 179, Neg. LLF: 131.51053908743407
Iteration: 14, Func. Count: 192, Neg. LLF: 131.51029227807132
Iteration: 15, Func. Count: 205, Neg. LLF: 131.51009267362883
Iteration: 16, Func. Count: 218, Neg. LLF: 131.50999072250912
Iteration: 17, Func. Count: 231, Neg. LLF: 131.5098546085144
Iteration: 18, Func. Count: 244, Neg. LLF: 131.5097829060666
Iteration: 19, Func. Count: 257, Neg. LLF: 131.50976409634745
Iteration: 20, Func. Count: 270, Neg. LLF: 131.50976281755052
Iteration: 21, Func. Count: 282, Neg. LLF: 131.5097628693055
Optimization terminated successfully (Exit mode 0)
Current function value: 131.50976281755052
Iterations: 21
Function evaluations: 282
Gradient evaluations: 21
Iteration: 1, Func. Count: 11, Neg. LLF: 136.9400326318621
Iteration: 2, Func. Count: 22, Neg. LLF: 174.51140085794873
Iteration: 3, Func. Count: 33, Neg. LLF: 130.80720316728568
Iteration: 4, Func. Count: 43, Neg. LLF: 136.86404565378945
Iteration: 5, Func. Count: 55, Neg. LLF: 133.58639091676613
Iteration: 6, Func. Count: 66, Neg. LLF: 132.83548956205865
Iteration: 7, Func. Count: 77, Neg. LLF: 130.04575353352874
Iteration: 8, Func. Count: 87, Neg. LLF: 129.9869936457123
Iteration: 9, Func. Count: 97, Neg. LLF: 129.89540039538318
Iteration: 10, Func. Count: 107, Neg. LLF: 129.87082482453
Iteration: 11, Func. Count: 117, Neg. LLF: 129.86806359712446
Iteration: 12, Func. Count: 127, Neg. LLF: 129.86754829992464
Iteration: 13, Func. Count: 137, Neg. LLF: 129.86753239587895
Iteration: 14, Func. Count: 146, Neg. LLF: 129.86753224317172
Optimization terminated successfully (Exit mode 0)
Current function value: 129.86753239587895
Iterations: 14
Function evaluations: 146
Gradient evaluations: 14
Iteration: 1, Func. Count: 12, Neg. LLF: 1379790.5510715032
Iteration: 2, Func. Count: 24, Neg. LLF: 11261822.491235126
Iteration: 3, Func. Count: 37, Neg. LLF: 144.0307395132674
Iteration: 4, Func. Count: 49, Neg. LLF: 136.4347377891233
Iteration: 5, Func. Count: 61, Neg. LLF: 134.11616411055755
Iteration: 6, Func. Count: 72, Neg. LLF: 133.65811110196938
Iteration: 7, Func. Count: 83, Neg. LLF: 133.65677972552285
Iteration: 8, Func. Count: 94, Neg. LLF: 133.65440550824093
Iteration: 9, Func. Count: 105, Neg. LLF: 133.65283684323586
Iteration: 10, Func. Count: 116, Neg. LLF: 133.6527192403402
Iteration: 11, Func. Count: 127, Neg. LLF: 133.65271552626925
Iteration: 12, Func. Count: 137, Neg. LLF: 133.65271551643767
Optimization terminated successfully (Exit mode 0)
Current function value: 133.65271552626925
Iterations: 12
Function evaluations: 137
Gradient evaluations: 12
Iteration: 1, Func. Count: 13, Neg. LLF: 1337475.1608193608
Iteration: 2, Func. Count: 26, Neg. LLF: 20069959.55897105
Iteration: 3, Func. Count: 40, Neg. LLF: 156.8926789409024
Iteration: 4, Func. Count: 53, Neg. LLF: 140.46655006666106
Iteration: 5, Func. Count: 66, Neg. LLF: 137.57591251574777
Iteration: 6, Func. Count: 79, Neg. LLF: 133.67385317215061
Iteration: 7, Func. Count: 92, Neg. LLF: 132.661514373159
Iteration: 8, Func. Count: 104, Neg. LLF: 133.0906846574393
Iteration: 9, Func. Count: 117, Neg. LLF: 133.36232303037872
Iteration: 10, Func. Count: 130, Neg. LLF: 132.19960015755288
Iteration: 11, Func. Count: 142, Neg. LLF: 132.04500943562428
Iteration: 12, Func. Count: 154, Neg. LLF: 131.8219991573376
Iteration: 13, Func. Count: 166, Neg. LLF: 131.4674436069283
Iteration: 14, Func. Count: 178, Neg. LLF: 131.2326549560453
Iteration: 15, Func. Count: 190, Neg. LLF: 130.92879662168423
Iteration: 16, Func. Count: 202, Neg. LLF: 130.72535419028213
Iteration: 17, Func. Count: 214, Neg. LLF: 134.43324127948276
Iteration: 18, Func. Count: 227, Neg. LLF: 130.02552430891075
Iteration: 19, Func. Count: 239, Neg. LLF: 129.99201296875202
Iteration: 20, Func. Count: 251, Neg. LLF: 129.94156299176177
Iteration: 21, Func. Count: 263, Neg. LLF: 129.8871525868537
Iteration: 22, Func. Count: 275, Neg. LLF: 129.87009739693778
Iteration: 23, Func. Count: 287, Neg. LLF: 129.86904107738206
Iteration: 24, Func. Count: 299, Neg. LLF: 129.86878979221575
Iteration: 25, Func. Count: 311, Neg. LLF: 129.8684673234003
Iteration: 26, Func. Count: 323, Neg. LLF: 129.8680518764433
Iteration: 27, Func. Count: 335, Neg. LLF: 129.8676980766057
Iteration: 28, Func. Count: 347, Neg. LLF: 129.86755237223878
Iteration: 29, Func. Count: 359, Neg. LLF: 129.86753274511187
Iteration: 30, Func. Count: 371, Neg. LLF: 129.86753197623463
Optimization terminated successfully (Exit mode 0)
Current function value: 129.86753197623463
Iterations: 30
Function evaluations: 371
Gradient evaluations: 30
Iteration: 1, Func. Count: 14, Neg. LLF: 1300647.349224044
Iteration: 2, Func. Count: 28, Neg. LLF: 34695628.4671448
Iteration: 3, Func. Count: 43, Neg. LLF: 171.76371106410832
Iteration: 4, Func. Count: 57, Neg. LLF: 138.65289666527678
Iteration: 5, Func. Count: 71, Neg. LLF: 152.5645669761076
Iteration: 6, Func. Count: 85, Neg. LLF: 133.2595580106308
Iteration: 7, Func. Count: 99, Neg. LLF: 132.15676126303993
Iteration: 8, Func. Count: 112, Neg. LLF: 131.9601087094714
Iteration: 9, Func. Count: 125, Neg. LLF: 132.3983189875852
Iteration: 10, Func. Count: 139, Neg. LLF: 131.77769796733313
Iteration: 11, Func. Count: 152, Neg. LLF: 131.5974664407221
Iteration: 12, Func. Count: 165, Neg. LLF: 131.12568305150953
Iteration: 13, Func. Count: 178, Neg. LLF: 130.63524751021475
Iteration: 14, Func. Count: 191, Neg. LLF: 130.1163908887848
Iteration: 15, Func. Count: 204, Neg. LLF: 129.96087031420973
Iteration: 16, Func. Count: 217, Neg. LLF: 129.94711367697187
Iteration: 17, Func. Count: 230, Neg. LLF: 129.90975130467302
Iteration: 18, Func. Count: 243, Neg. LLF: 129.89212063996212
Iteration: 19, Func. Count: 256, Neg. LLF: 129.89071142550287
Iteration: 20, Func. Count: 269, Neg. LLF: 129.87780889589087
Iteration: 21, Func. Count: 282, Neg. LLF: 129.8752947915324
Iteration: 22, Func. Count: 295, Neg. LLF: 129.86834774952754
Iteration: 23, Func. Count: 308, Neg. LLF: 129.8677702813023
Iteration: 24, Func. Count: 321, Neg. LLF: 129.95491233680406
Iteration: 25, Func. Count: 336, Neg. LLF: 129.93597985064244
Iteration: 26, Func. Count: 351, Neg. LLF: 129.86940722398927
Iteration: 27, Func. Count: 365, Neg. LLF: 129.86753202575474
Iteration: 28, Func. Count: 377, Neg. LLF: 129.86753216306025
Optimization terminated successfully (Exit mode 0)
Current function value: 129.86753202575474
Iterations: 29
Function evaluations: 377
Gradient evaluations: 28
Iteration: 1, Func. Count: 15, Neg. LLF: 5126326.149330979
Iteration: 2, Func. Count: 30, Neg. LLF: 889493.822108896
Iteration: 3, Func. Count: 45, Neg. LLF: 138.2575910916969
Iteration: 4, Func. Count: 60, Neg. LLF: 133.89491127674506
Iteration: 5, Func. Count: 75, Neg. LLF: 159.99849557395072
Iteration: 6, Func. Count: 90, Neg. LLF: 133.76155936251732
Iteration: 7, Func. Count: 105, Neg. LLF: 139.7040245277878
Iteration: 8, Func. Count: 120, Neg. LLF: 132.12925539328606
Iteration: 9, Func. Count: 134, Neg. LLF: 132.00623129559264
Iteration: 10, Func. Count: 148, Neg. LLF: 131.91489990934306
Iteration: 11, Func. Count: 162, Neg. LLF: 131.85551240606208
Iteration: 12, Func. Count: 176, Neg. LLF: 131.81631155218392
Iteration: 13, Func. Count: 190, Neg. LLF: 131.75159356612997
Iteration: 14, Func. Count: 204, Neg. LLF: 131.67258168568796
Iteration: 15, Func. Count: 218, Neg. LLF: 130.92770328909202
Iteration: 16, Func. Count: 232, Neg. LLF: 130.44432691198108
Iteration: 17, Func. Count: 246, Neg. LLF: 130.36133529131118
Iteration: 18, Func. Count: 260, Neg. LLF: 130.363032548024
Iteration: 19, Func. Count: 275, Neg. LLF: 130.1814187581757
Iteration: 20, Func. Count: 289, Neg. LLF: 130.06207156848845
Iteration: 21, Func. Count: 303, Neg. LLF: 129.95827492009454
Iteration: 22, Func. Count: 317, Neg. LLF: 129.87870894811186
Iteration: 23, Func. Count: 331, Neg. LLF: 129.8695843001007
Iteration: 24, Func. Count: 345, Neg. LLF: 129.86826028085335
Iteration: 25, Func. Count: 359, Neg. LLF: 129.8679065666815
Iteration: 26, Func. Count: 373, Neg. LLF: 129.86780879080044
Iteration: 27, Func. Count: 387, Neg. LLF: 129.86757523138152
Iteration: 28, Func. Count: 401, Neg. LLF: 129.8675391246091
Iteration: 29, Func. Count: 415, Neg. LLF: 129.86753210079357
Iteration: 30, Func. Count: 428, Neg. LLF: 129.8675321503956
Optimization terminated successfully (Exit mode 0)
Current function value: 129.86753210079357
Iterations: 30
Function evaluations: 428
Gradient evaluations: 30
Iteration: 1, Func. Count: 12, Neg. LLF: 137.0743143380582
Iteration: 2, Func. Count: 24, Neg. LLF: 175.70818709401058
Iteration: 3, Func. Count: 36, Neg. LLF: 130.81412179181638
Iteration: 4, Func. Count: 47, Neg. LLF: 136.37078463779017
Iteration: 5, Func. Count: 60, Neg. LLF: 133.44219106554118
Iteration: 6, Func. Count: 72, Neg. LLF: 132.84444240030896
Iteration: 7, Func. Count: 84, Neg. LLF: 130.04236233829
Iteration: 8, Func. Count: 95, Neg. LLF: 129.98528988478458
Iteration: 9, Func. Count: 106, Neg. LLF: 129.89263765192425
Iteration: 10, Func. Count: 117, Neg. LLF: 129.87018948008142
Iteration: 11, Func. Count: 128, Neg. LLF: 129.86793776859227
Iteration: 12, Func. Count: 139, Neg. LLF: 129.8675495199551
Iteration: 13, Func. Count: 150, Neg. LLF: 129.8675322782711
Iteration: 14, Func. Count: 160, Neg. LLF: 129.8675326381351
Optimization terminated successfully (Exit mode 0)
Current function value: 129.8675322782711
Iterations: 14
Function evaluations: 160
Gradient evaluations: 14
Iteration: 1, Func. Count: 13, Neg. LLF: 1377659.0279878974
Iteration: 2, Func. Count: 26, Neg. LLF: 10978940.744508792
Iteration: 3, Func. Count: 40, Neg. LLF: 144.1330321783272
Iteration: 4, Func. Count: 53, Neg. LLF: 136.42958109464948
Iteration: 5, Func. Count: 66, Neg. LLF: 134.11972812460237
Iteration: 6, Func. Count: 78, Neg. LLF: 133.6580878676
Iteration: 7, Func. Count: 90, Neg. LLF: 133.65674733004332
Iteration: 8, Func. Count: 102, Neg. LLF: 133.6543667664277
Iteration: 9, Func. Count: 114, Neg. LLF: 133.65283320195852
Iteration: 10, Func. Count: 126, Neg. LLF: 133.65271859339143
Iteration: 11, Func. Count: 138, Neg. LLF: 133.6527154883775
Iteration: 12, Func. Count: 149, Neg. LLF: 133.6527154785397
Optimization terminated successfully (Exit mode 0)
Current function value: 133.6527154883775
Iterations: 12
Function evaluations: 149
Gradient evaluations: 12
Iteration: 1, Func. Count: 14, Neg. LLF: 1338327.543743041
Iteration: 2, Func. Count: 28, Neg. LLF: 20270708.30900592
Iteration: 3, Func. Count: 43, Neg. LLF: 157.11873931681617
Iteration: 4, Func. Count: 57, Neg. LLF: 140.60309073310964
Iteration: 5, Func. Count: 71, Neg. LLF: 137.7299998662395
Iteration: 6, Func. Count: 85, Neg. LLF: 133.6806673434632
Iteration: 7, Func. Count: 99, Neg. LLF: 132.6740142573242
Iteration: 8, Func. Count: 112, Neg. LLF: 133.08906270221033
Iteration: 9, Func. Count: 126, Neg. LLF: 133.5885309078619
Iteration: 10, Func. Count: 140, Neg. LLF: 132.20972446468244
Iteration: 11, Func. Count: 153, Neg. LLF: 132.06367855099788
Iteration: 12, Func. Count: 166, Neg. LLF: 131.833390109092
Iteration: 13, Func. Count: 179, Neg. LLF: 131.51890457700298
Iteration: 14, Func. Count: 192, Neg. LLF: 131.25722389907975
Iteration: 15, Func. Count: 205, Neg. LLF: 130.8403364006056
Iteration: 16, Func. Count: 218, Neg. LLF: 131.53271160700453
Iteration: 17, Func. Count: 232, Neg. LLF: 130.14069568669666
Iteration: 18, Func. Count: 245, Neg. LLF: 130.08097605019125
Iteration: 19, Func. Count: 258, Neg. LLF: 130.02528602703342
Iteration: 20, Func. Count: 271, Neg. LLF: 129.9897214036574
Iteration: 21, Func. Count: 285, Neg. LLF: 129.9248532070349
Iteration: 22, Func. Count: 298, Neg. LLF: 129.8861902975336
Iteration: 23, Func. Count: 311, Neg. LLF: 129.87433437564334
Iteration: 24, Func. Count: 324, Neg. LLF: 129.8702101260394
Iteration: 25, Func. Count: 337, Neg. LLF: 129.8694075584469
Iteration: 26, Func. Count: 350, Neg. LLF: 129.86899879785435
Iteration: 27, Func. Count: 363, Neg. LLF: 129.86862343227452
Iteration: 28, Func. Count: 376, Neg. LLF: 129.86819184132113
Iteration: 29, Func. Count: 389, Neg. LLF: 129.867779450956
Iteration: 30, Func. Count: 402, Neg. LLF: 129.86756784035265
Iteration: 31, Func. Count: 415, Neg. LLF: 129.867533655283
Iteration: 32, Func. Count: 428, Neg. LLF: 129.86753202031198
Iteration: 33, Func. Count: 440, Neg. LLF: 129.86753209746175
Optimization terminated successfully (Exit mode 0)
Current function value: 129.86753202031198
Iterations: 33
Function evaluations: 440
Gradient evaluations: 33
Iteration: 1, Func. Count: 15, Neg. LLF: 1302540.5279177697
Iteration: 2, Func. Count: 30, Neg. LLF: 34698861.3604727
Iteration: 3, Func. Count: 46, Neg. LLF: 172.3094893462845
Iteration: 4, Func. Count: 61, Neg. LLF: 138.78497153644116
Iteration: 5, Func. Count: 76, Neg. LLF: 152.20258362268578
Iteration: 6, Func. Count: 91, Neg. LLF: 133.4244713263117
Iteration: 7, Func. Count: 106, Neg. LLF: 132.1473500361003
Iteration: 8, Func. Count: 120, Neg. LLF: 131.94732873371998
Iteration: 9, Func. Count: 134, Neg. LLF: 132.06514335482376
Iteration: 10, Func. Count: 149, Neg. LLF: 131.76601921176007
Iteration: 11, Func. Count: 163, Neg. LLF: 131.4970287931752
Iteration: 12, Func. Count: 177, Neg. LLF: 130.96982347918308
Iteration: 13, Func. Count: 191, Neg. LLF: 130.49725862880098
Iteration: 14, Func. Count: 205, Neg. LLF: 129.9928045740719
Iteration: 15, Func. Count: 219, Neg. LLF: 129.92831536627975
Iteration: 16, Func. Count: 233, Neg. LLF: 129.89136182212536
Iteration: 17, Func. Count: 247, Neg. LLF: 130.2647176321405
Iteration: 18, Func. Count: 262, Neg. LLF: 130.080743179801
Iteration: 19, Func. Count: 277, Neg. LLF: 129.9771663044872
Iteration: 20, Func. Count: 292, Neg. LLF: 129.86775360489398
Iteration: 21, Func. Count: 306, Neg. LLF: 129.8675474511841
Iteration: 22, Func. Count: 320, Neg. LLF: 129.8675343473744
Iteration: 23, Func. Count: 334, Neg. LLF: 129.86753196510242
Iteration: 24, Func. Count: 347, Neg. LLF: 129.86753210236873
Optimization terminated successfully (Exit mode 0)
Current function value: 129.86753196510242
Iterations: 25
Function evaluations: 347
Gradient evaluations: 24
Iteration: 1, Func. Count: 16, Neg. LLF: 5124696.104065119
Iteration: 2, Func. Count: 32, Neg. LLF: 896419.8749821652
Iteration: 3, Func. Count: 48, Neg. LLF: 138.43261810268194
Iteration: 4, Func. Count: 64, Neg. LLF: 133.95816786261838
Iteration: 5, Func. Count: 80, Neg. LLF: 152.54991698190983
Iteration: 6, Func. Count: 96, Neg. LLF: 132.32239513596883
Iteration: 7, Func. Count: 111, Neg. LLF: 141.84177928463555
Iteration: 8, Func. Count: 127, Neg. LLF: 134.08135147380722
Iteration: 9, Func. Count: 144, Neg. LLF: 132.34490753601887
Iteration: 10, Func. Count: 160, Neg. LLF: 131.23683334413838
Iteration: 11, Func. Count: 175, Neg. LLF: 131.06197380410882
Iteration: 12, Func. Count: 190, Neg. LLF: 130.89767965375466
Iteration: 13, Func. Count: 205, Neg. LLF: 130.80584391494122
Iteration: 14, Func. Count: 220, Neg. LLF: 130.75517476596306
Iteration: 15, Func. Count: 235, Neg. LLF: 130.7427892421613
Iteration: 16, Func. Count: 250, Neg. LLF: 130.72817489816487
Iteration: 17, Func. Count: 265, Neg. LLF: 130.7059383485995
Iteration: 18, Func. Count: 280, Neg. LLF: 130.65736400806082
Iteration: 19, Func. Count: 295, Neg. LLF: 130.63790118662087
Iteration: 20, Func. Count: 310, Neg. LLF: 130.6295830771019
Iteration: 21, Func. Count: 325, Neg. LLF: 130.62814633142477
Iteration: 22, Func. Count: 340, Neg. LLF: 130.62720856184174
Iteration: 23, Func. Count: 355, Neg. LLF: 130.62718285786633
Iteration: 24, Func. Count: 369, Neg. LLF: 130.62718282431703
Optimization terminated successfully (Exit mode 0)
Current function value: 130.62718285786633
Iterations: 24
Function evaluations: 369
Gradient evaluations: 24
Iteration: 1, Func. Count: 8, Neg. LLF: 139.81381791948291
Iteration: 2, Func. Count: 16, Neg. LLF: 138.39670150960967
Iteration: 3, Func. Count: 24, Neg. LLF: 134.24643890207466
Iteration: 4, Func. Count: 31, Neg. LLF: 133.21768519229911
Iteration: 5, Func. Count: 38, Neg. LLF: 132.44560717729416
Iteration: 6, Func. Count: 45, Neg. LLF: 131.92695738506453
Iteration: 7, Func. Count: 52, Neg. LLF: 132.0362723306094
Iteration: 8, Func. Count: 60, Neg. LLF: 131.53868860481447
Iteration: 9, Func. Count: 67, Neg. LLF: 131.5127846512609
Iteration: 10, Func. Count: 74, Neg. LLF: 131.51002135522637
Iteration: 11, Func. Count: 81, Neg. LLF: 131.50976392313345
Iteration: 12, Func. Count: 88, Neg. LLF: 131.50976279085975
Iteration: 13, Func. Count: 94, Neg. LLF: 131.50976279085222
Optimization terminated successfully (Exit mode 0)
Current function value: 131.50976279085975
Iterations: 13
Function evaluations: 94
Gradient evaluations: 13
Iteration: 1, Func. Count: 5, Neg. LLF: 138.0278273484318
Iteration: 2, Func. Count: 9, Neg. LLF: 151.63559574570536
Iteration: 3, Func. Count: 14, Neg. LLF: 136.90334569021843
Iteration: 4, Func. Count: 18, Neg. LLF: 136.866783814855
Iteration: 5, Func. Count: 22, Neg. LLF: 136.8645589294512
Iteration: 6, Func. Count: 26, Neg. LLF: 136.8645069889807
Iteration: 7, Func. Count: 30, Neg. LLF: 136.86449388242005
Iteration: 8, Func. Count: 34, Neg. LLF: 136.8644619017813
Iteration: 9, Func. Count: 38, Neg. LLF: 136.86445407929702
Iteration: 10, Func. Count: 42, Neg. LLF: 136.86445281129562
Iteration: 11, Func. Count: 45, Neg. LLF: 136.86445281129372
Optimization terminated successfully (Exit mode 0)
Current function value: 136.86445281129562
Iterations: 11
Function evaluations: 45
Gradient evaluations: 11
Iteration: 1, Func. Count: 6, Neg. LLF: 19617491.85781767
Iteration: 2, Func. Count: 13, Neg. LLF: 159.37395716878663
Iteration: 3, Func. Count: 19, Neg. LLF: 149.0850325475953
Iteration: 4, Func. Count: 25, Neg. LLF: 136.60475539760907
Iteration: 5, Func. Count: 31, Neg. LLF: 149.4080913908131
Iteration: 6, Func. Count: 37, Neg. LLF: 138.04938630176505
Iteration: 7, Func. Count: 43, Neg. LLF: 138.67367884054352
Iteration: 8, Func. Count: 49, Neg. LLF: 134.8579361043582
Iteration: 9, Func. Count: 54, Neg. LLF: 134.65521898185094
Iteration: 10, Func. Count: 59, Neg. LLF: 134.4021241917895
Iteration: 11, Func. Count: 64, Neg. LLF: 134.12152733714217
Iteration: 12, Func. Count: 69, Neg. LLF: 134.07785020286065
Iteration: 13, Func. Count: 74, Neg. LLF: 134.0315444930484
Iteration: 14, Func. Count: 79, Neg. LLF: 134.02674949695069
Iteration: 15, Func. Count: 84, Neg. LLF: 134.0263782046451
Iteration: 16, Func. Count: 89, Neg. LLF: 134.02637677539465
Iteration: 17, Func. Count: 93, Neg. LLF: 134.0263767753746
Optimization terminated successfully (Exit mode 0)
Current function value: 134.02637677539465
Iterations: 17
Function evaluations: 93
Gradient evaluations: 17
Iteration: 1, Func. Count: 7, Neg. LLF: 19563660.187537704
Iteration: 2, Func. Count: 15, Neg. LLF: 141.2079268469349
Iteration: 3, Func. Count: 22, Neg. LLF: 137.37272051954727
Iteration: 4, Func. Count: 29, Neg. LLF: 134.52128513899294
Iteration: 5, Func. Count: 35, Neg. LLF: 134.26441771145667
Iteration: 6, Func. Count: 41, Neg. LLF: 134.13159379678055
Iteration: 7, Func. Count: 47, Neg. LLF: 134.04306684340227
Iteration: 8, Func. Count: 53, Neg. LLF: 134.0337813669497
Iteration: 9, Func. Count: 59, Neg. LLF: 134.03242745502985
Iteration: 10, Func. Count: 65, Neg. LLF: 134.03241694409954
Iteration: 11, Func. Count: 70, Neg. LLF: 134.03241694467212
Optimization terminated successfully (Exit mode 0)
Current function value: 134.03241694409954
Iterations: 11
Function evaluations: 70
Gradient evaluations: 11
Iteration: 1, Func. Count: 8, Neg. LLF: 194.10192520969287
Iteration: 2, Func. Count: 16, Neg. LLF: 135.536867254178
Iteration: 3, Func. Count: 23, Neg. LLF: 134.39923816252528
Iteration: 4, Func. Count: 30, Neg. LLF: 142.38239398178322
Iteration: 5, Func. Count: 39, Neg. LLF: 139.9439222781619
Iteration: 6, Func. Count: 47, Neg. LLF: 133.96025761311137
Iteration: 7, Func. Count: 54, Neg. LLF: 133.95100888827156
Iteration: 8, Func. Count: 61, Neg. LLF: 133.95062906437965
Iteration: 9, Func. Count: 68, Neg. LLF: 133.95060857539121
Iteration: 10, Func. Count: 74, Neg. LLF: 133.95060857543527
Optimization terminated successfully (Exit mode 0)
Current function value: 133.95060857539121
Iterations: 10
Function evaluations: 74
Gradient evaluations: 10
Iteration: 1, Func. Count: 9, Neg. LLF: 198.02415772029386
Iteration: 2, Func. Count: 18, Neg. LLF: 141.0302973557861
Iteration: 3, Func. Count: 27, Neg. LLF: 136.22967673742426
Iteration: 4, Func. Count: 36, Neg. LLF: 138.30241688116834
Iteration: 5, Func. Count: 45, Neg. LLF: 134.69476331240458
Iteration: 6, Func. Count: 53, Neg. LLF: 134.00454283961184
Iteration: 7, Func. Count: 61, Neg. LLF: 133.9902717781288
Iteration: 8, Func. Count: 69, Neg. LLF: 133.98418211307984
Iteration: 9, Func. Count: 77, Neg. LLF: 133.98395875738143
Iteration: 10, Func. Count: 85, Neg. LLF: 133.98395684623978
Iteration: 11, Func. Count: 92, Neg. LLF: 133.98395684623202
Optimization terminated successfully (Exit mode 0)
Current function value: 133.98395684623978
Iterations: 11
Function evaluations: 92
Gradient evaluations: 11
Iteration: 1, Func. Count: 6, Neg. LLF: 136.2994467058298
Iteration: 2, Func. Count: 11, Neg. LLF: 149.74763800226697
Iteration: 3, Func. Count: 17, Neg. LLF: 134.18313386686182
Iteration: 4, Func. Count: 22, Neg. LLF: 134.9946480981057
Iteration: 5, Func. Count: 28, Neg. LLF: 133.6297630801799
Iteration: 6, Func. Count: 34, Neg. LLF: 133.5593475790392
Iteration: 7, Func. Count: 39, Neg. LLF: 133.55933242809908
Iteration: 8, Func. Count: 43, Neg. LLF: 133.5593324314897
Optimization terminated successfully (Exit mode 0)
Current function value: 133.55933242809908
Iterations: 8
Function evaluations: 43
Gradient evaluations: 8
Iteration: 1, Func. Count: 7, Neg. LLF: 19614081.21784725
Iteration: 2, Func. Count: 15, Neg. LLF: 159.6404057320853
Iteration: 3, Func. Count: 22, Neg. LLF: 149.24848686185874
Iteration: 4, Func. Count: 29, Neg. LLF: 136.4977655677757
Iteration: 5, Func. Count: 36, Neg. LLF: 150.03890836932698
Iteration: 6, Func. Count: 43, Neg. LLF: 137.74554540053947
Iteration: 7, Func. Count: 50, Neg. LLF: 138.33077220690083
Iteration: 8, Func. Count: 57, Neg. LLF: 134.80768830976643
Iteration: 9, Func. Count: 63, Neg. LLF: 134.6072931418301
Iteration: 10, Func. Count: 69, Neg. LLF: 134.1770773268161
Iteration: 11, Func. Count: 75, Neg. LLF: 134.05906373932046
Iteration: 12, Func. Count: 81, Neg. LLF: 134.04264729749494
Iteration: 13, Func. Count: 87, Neg. LLF: 134.02751031390073
Iteration: 14, Func. Count: 93, Neg. LLF: 134.02644403615326
Iteration: 15, Func. Count: 99, Neg. LLF: 134.02637720246236
Iteration: 16, Func. Count: 104, Neg. LLF: 134.02637720243092
Optimization terminated successfully (Exit mode 0)
Current function value: 134.02637720246236
Iterations: 16
Function evaluations: 104
Gradient evaluations: 16
Iteration: 1, Func. Count: 8, Neg. LLF: 19558333.593030386
Iteration: 2, Func. Count: 17, Neg. LLF: 141.23217557160316
Iteration: 3, Func. Count: 25, Neg. LLF: 137.38054810462262
Iteration: 4, Func. Count: 33, Neg. LLF: 134.52274321475394
Iteration: 5, Func. Count: 40, Neg. LLF: 134.25930728444564
Iteration: 6, Func. Count: 47, Neg. LLF: 134.12962276229433
Iteration: 7, Func. Count: 54, Neg. LLF: 134.04352419672642
Iteration: 8, Func. Count: 61, Neg. LLF: 134.03375952644336
Iteration: 9, Func. Count: 68, Neg. LLF: 134.0324272979242
Iteration: 10, Func. Count: 75, Neg. LLF: 134.03241681087954
Iteration: 11, Func. Count: 81, Neg. LLF: 134.0324168113121
Optimization terminated successfully (Exit mode 0)
Current function value: 134.03241681087954
Iterations: 11
Function evaluations: 81
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 194.4254339855648
Iteration: 2, Func. Count: 18, Neg. LLF: 135.46667854663977
Iteration: 3, Func. Count: 26, Neg. LLF: 134.3158557439851
Iteration: 4, Func. Count: 34, Neg. LLF: 141.7556133495273
Iteration: 5, Func. Count: 44, Neg. LLF: 137.94244486051332
Iteration: 6, Func. Count: 53, Neg. LLF: 133.9567628495226
Iteration: 7, Func. Count: 61, Neg. LLF: 133.95090143154428
Iteration: 8, Func. Count: 69, Neg. LLF: 133.95062093713884
Iteration: 9, Func. Count: 77, Neg. LLF: 133.95060858354938
Iteration: 10, Func. Count: 84, Neg. LLF: 133.95060858363428
Optimization terminated successfully (Exit mode 0)
Current function value: 133.95060858354938
Iterations: 10
Function evaluations: 84
Gradient evaluations: 10
Iteration: 1, Func. Count: 10, Neg. LLF: 198.34720819374286
Iteration: 2, Func. Count: 20, Neg. LLF: 141.12192638923025
Iteration: 3, Func. Count: 30, Neg. LLF: 136.20144884475954
Iteration: 4, Func. Count: 40, Neg. LLF: 136.93383259654098
Iteration: 5, Func. Count: 50, Neg. LLF: 134.70317093713672
Iteration: 6, Func. Count: 60, Neg. LLF: 134.0319844993323
Iteration: 7, Func. Count: 69, Neg. LLF: 133.9918557336028
Iteration: 8, Func. Count: 78, Neg. LLF: 133.98435384639714
Iteration: 9, Func. Count: 87, Neg. LLF: 133.98396012022243
Iteration: 10, Func. Count: 96, Neg. LLF: 133.9839568390907
Iteration: 11, Func. Count: 104, Neg. LLF: 133.9839568391081
Optimization terminated successfully (Exit mode 0)
Current function value: 133.9839568390907
Iterations: 11
Function evaluations: 104
Gradient evaluations: 11
Iteration: 1, Func. Count: 7, Neg. LLF: 135.07056689067508
Iteration: 2, Func. Count: 13, Neg. LLF: 140.32354184120302
Iteration: 3, Func. Count: 20, Neg. LLF: 134.11651649326868
Iteration: 4, Func. Count: 26, Neg. LLF: 139.6897156910893
Iteration: 5, Func. Count: 33, Neg. LLF: 133.80061357902383
Iteration: 6, Func. Count: 40, Neg. LLF: 133.55994343891732
Iteration: 7, Func. Count: 46, Neg. LLF: 133.55933302012198
Iteration: 8, Func. Count: 52, Neg. LLF: 133.55933214155496
Optimization terminated successfully (Exit mode 0)
Current function value: 133.55933214155496
Iterations: 8
Function evaluations: 52
Gradient evaluations: 8
Iteration: 1, Func. Count: 8, Neg. LLF: 19615366.193821564
Iteration: 2, Func. Count: 17, Neg. LLF: 159.93507563728255
Iteration: 3, Func. Count: 25, Neg. LLF: 149.26688012345772
Iteration: 4, Func. Count: 33, Neg. LLF: 136.26960541036198
Iteration: 5, Func. Count: 41, Neg. LLF: 152.30295709783854
Iteration: 6, Func. Count: 49, Neg. LLF: 135.74945772848358
Iteration: 7, Func. Count: 57, Neg. LLF: 136.86900192382035
Iteration: 8, Func. Count: 65, Neg. LLF: 134.73793894559705
Iteration: 9, Func. Count: 72, Neg. LLF: 134.32605825894697
Iteration: 10, Func. Count: 79, Neg. LLF: 134.49107335358462
Iteration: 11, Func. Count: 87, Neg. LLF: 134.08252490552366
Iteration: 12, Func. Count: 95, Neg. LLF: 134.028324936272
Iteration: 13, Func. Count: 102, Neg. LLF: 134.0266910357543
Iteration: 14, Func. Count: 109, Neg. LLF: 134.02637726340794
Iteration: 15, Func. Count: 115, Neg. LLF: 134.0263772627994
Optimization terminated successfully (Exit mode 0)
Current function value: 134.02637726340794
Iterations: 15
Function evaluations: 115
Gradient evaluations: 15
Iteration: 1, Func. Count: 9, Neg. LLF: 19558485.32264537
Iteration: 2, Func. Count: 19, Neg. LLF: 141.30389157522782
Iteration: 3, Func. Count: 28, Neg. LLF: 137.4263237175236
Iteration: 4, Func. Count: 37, Neg. LLF: 134.52415870520403
Iteration: 5, Func. Count: 45, Neg. LLF: 134.2619450742677
Iteration: 6, Func. Count: 53, Neg. LLF: 134.12723374039382
Iteration: 7, Func. Count: 61, Neg. LLF: 134.04375494543106
Iteration: 8, Func. Count: 69, Neg. LLF: 134.03377625206164
Iteration: 9, Func. Count: 77, Neg. LLF: 134.03242744612254
Iteration: 10, Func. Count: 85, Neg. LLF: 134.03241681253596
Iteration: 11, Func. Count: 92, Neg. LLF: 134.03241681297047
Optimization terminated successfully (Exit mode 0)
Current function value: 134.03241681253596
Iterations: 11
Function evaluations: 92
Gradient evaluations: 11
Iteration: 1, Func. Count: 10, Neg. LLF: 194.250047086802
Iteration: 2, Func. Count: 20, Neg. LLF: 135.5522646921981
Iteration: 3, Func. Count: 29, Neg. LLF: 134.30830769537747
Iteration: 4, Func. Count: 38, Neg. LLF: 139.07372259615823
Iteration: 5, Func. Count: 49, Neg. LLF: 145.09563379154545
Iteration: 6, Func. Count: 59, Neg. LLF: 133.9562533259674
Iteration: 7, Func. Count: 68, Neg. LLF: 133.95073665721918
Iteration: 8, Func. Count: 77, Neg. LLF: 133.9506110528515
Iteration: 9, Func. Count: 86, Neg. LLF: 133.95060846562606
Iteration: 10, Func. Count: 94, Neg. LLF: 133.950608465657
Optimization terminated successfully (Exit mode 0)
Current function value: 133.95060846562606
Iterations: 10
Function evaluations: 94
Gradient evaluations: 10
Iteration: 1, Func. Count: 11, Neg. LLF: 198.21021347382077
Iteration: 2, Func. Count: 22, Neg. LLF: 141.33539148608145
Iteration: 3, Func. Count: 33, Neg. LLF: 136.45288038589234
Iteration: 4, Func. Count: 44, Neg. LLF: 136.88570121509585
Iteration: 5, Func. Count: 55, Neg. LLF: 135.2062851812113
Iteration: 6, Func. Count: 66, Neg. LLF: 134.0582924671106
Iteration: 7, Func. Count: 76, Neg. LLF: 134.0147904816989
Iteration: 8, Func. Count: 86, Neg. LLF: 133.98526374631305
Iteration: 9, Func. Count: 96, Neg. LLF: 133.9841261907854
Iteration: 10, Func. Count: 106, Neg. LLF: 133.98395933473265
Iteration: 11, Func. Count: 116, Neg. LLF: 133.98395685281506
Iteration: 12, Func. Count: 125, Neg. LLF: 133.98395685278584
Optimization terminated successfully (Exit mode 0)
Current function value: 133.98395685281506
Iterations: 12
Function evaluations: 125
Gradient evaluations: 12
Iteration: 1, Func. Count: 8, Neg. LLF: 135.00994700781973
Iteration: 2, Func. Count: 15, Neg. LLF: 135.73730360109414
Iteration: 3, Func. Count: 23, Neg. LLF: 133.74678026234278
Iteration: 4, Func. Count: 30, Neg. LLF: 134.14356130308784
Iteration: 5, Func. Count: 38, Neg. LLF: 133.56162577540601
Iteration: 6, Func. Count: 45, Neg. LLF: 133.55938029625983
Iteration: 7, Func. Count: 52, Neg. LLF: 133.559343562231
Iteration: 8, Func. Count: 59, Neg. LLF: 133.5593321443182
Iteration: 9, Func. Count: 65, Neg. LLF: 133.55933244862067
Optimization terminated successfully (Exit mode 0)
Current function value: 133.5593321443182
Iterations: 9
Function evaluations: 65
Gradient evaluations: 9
Iteration: 1, Func. Count: 9, Neg. LLF: 19608966.40654708
Iteration: 2, Func. Count: 19, Neg. LLF: 160.0974533282019
Iteration: 3, Func. Count: 28, Neg. LLF: 149.5749071174397
Iteration: 4, Func. Count: 37, Neg. LLF: 136.396428231695
Iteration: 5, Func. Count: 46, Neg. LLF: 150.9673635708319
Iteration: 6, Func. Count: 55, Neg. LLF: 136.4157337869563
Iteration: 7, Func. Count: 64, Neg. LLF: 137.17414342482118
Iteration: 8, Func. Count: 73, Neg. LLF: 134.75024245546714
Iteration: 9, Func. Count: 81, Neg. LLF: 134.45020600174595
Iteration: 10, Func. Count: 89, Neg. LLF: 134.2512012834147
Iteration: 11, Func. Count: 97, Neg. LLF: 134.12246326135903
Iteration: 12, Func. Count: 105, Neg. LLF: 134.04009149888196
Iteration: 13, Func. Count: 113, Neg. LLF: 134.02677575772742
Iteration: 14, Func. Count: 121, Neg. LLF: 134.0263793312021
Iteration: 15, Func. Count: 129, Neg. LLF: 134.0263767795432
Iteration: 16, Func. Count: 136, Neg. LLF: 134.026376779515
Optimization terminated successfully (Exit mode 0)
Current function value: 134.0263767795432
Iterations: 16
Function evaluations: 136
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 19556812.73855547
Iteration: 2, Func. Count: 21, Neg. LLF: 141.3116134840327
Iteration: 3, Func. Count: 31, Neg. LLF: 137.4309880087703
Iteration: 4, Func. Count: 41, Neg. LLF: 134.53229521450677
Iteration: 5, Func. Count: 50, Neg. LLF: 134.26091407870064
Iteration: 6, Func. Count: 59, Neg. LLF: 134.12965515090016
Iteration: 7, Func. Count: 68, Neg. LLF: 134.0441410278829
Iteration: 8, Func. Count: 77, Neg. LLF: 134.03385438748347
Iteration: 9, Func. Count: 86, Neg. LLF: 134.0324287263378
Iteration: 10, Func. Count: 95, Neg. LLF: 134.0324168084037
Iteration: 11, Func. Count: 103, Neg. LLF: 134.03241680883772
Optimization terminated successfully (Exit mode 0)
Current function value: 134.0324168084037
Iterations: 11
Function evaluations: 103
Gradient evaluations: 11
Iteration: 1, Func. Count: 11, Neg. LLF: 194.22825770298996
Iteration: 2, Func. Count: 22, Neg. LLF: 135.56281755912545
Iteration: 3, Func. Count: 32, Neg. LLF: 134.27287605922206
Iteration: 4, Func. Count: 42, Neg. LLF: 137.97673464595889
Iteration: 5, Func. Count: 53, Neg. LLF: 158.00441060324258
Iteration: 6, Func. Count: 64, Neg. LLF: 134.06817020709695
Iteration: 7, Func. Count: 75, Neg. LLF: 133.9511682127711
Iteration: 8, Func. Count: 85, Neg. LLF: 133.95064758775888
Iteration: 9, Func. Count: 95, Neg. LLF: 133.9506089055734
Iteration: 10, Func. Count: 104, Neg. LLF: 133.9506089055311
Optimization terminated successfully (Exit mode 0)
Current function value: 133.9506089055734
Iterations: 10
Function evaluations: 104
Gradient evaluations: 10
Iteration: 1, Func. Count: 12, Neg. LLF: 198.1465319839767
Iteration: 2, Func. Count: 24, Neg. LLF: 141.48101131207946
Iteration: 3, Func. Count: 36, Neg. LLF: 136.5277633158855
Iteration: 4, Func. Count: 48, Neg. LLF: 136.03374753317635
Iteration: 5, Func. Count: 60, Neg. LLF: 135.56537348722972
Iteration: 6, Func. Count: 72, Neg. LLF: 134.11931052235263
Iteration: 7, Func. Count: 83, Neg. LLF: 133.99413074160066
Iteration: 8, Func. Count: 94, Neg. LLF: 133.98784079536716
Iteration: 9, Func. Count: 105, Neg. LLF: 133.9840269177754
Iteration: 10, Func. Count: 116, Neg. LLF: 133.98396207235092
Iteration: 11, Func. Count: 127, Neg. LLF: 133.98395684042833
Iteration: 12, Func. Count: 137, Neg. LLF: 133.98395684045335
Optimization terminated successfully (Exit mode 0)
Current function value: 133.98395684042833
Iterations: 12
Function evaluations: 137
Gradient evaluations: 12
Iteration: 1, Func. Count: 5, Neg. LLF: 139.3995161549603
Iteration: 2, Func. Count: 10, Neg. LLF: 149.40233562335587
Iteration: 3, Func. Count: 15, Neg. LLF: 136.3620393500899
Iteration: 4, Func. Count: 19, Neg. LLF: 136.1791052202552
Iteration: 5, Func. Count: 23, Neg. LLF: 136.17861718618417
Iteration: 6, Func. Count: 27, Neg. LLF: 136.17850969244674
Iteration: 7, Func. Count: 31, Neg. LLF: 136.17850916054374
Optimization terminated successfully (Exit mode 0)
Current function value: 136.17850916054374
Iterations: 7
Function evaluations: 31
Gradient evaluations: 7
Iteration: 1, Func. Count: 6, Neg. LLF: 19463283.05507543
Iteration: 2, Func. Count: 13, Neg. LLF: 135.0729442776041
Iteration: 3, Func. Count: 18, Neg. LLF: 134.39534206479902
Iteration: 4, Func. Count: 23, Neg. LLF: 152.6013326641771
Iteration: 5, Func. Count: 29, Neg. LLF: 134.25515008722178
Iteration: 6, Func. Count: 35, Neg. LLF: 134.57555859134024
Iteration: 7, Func. Count: 41, Neg. LLF: 134.02731475120856
Iteration: 8, Func. Count: 46, Neg. LLF: 134.0270914335905
Iteration: 9, Func. Count: 52, Neg. LLF: 134.0263990222979
Iteration: 10, Func. Count: 57, Neg. LLF: 134.02637705705524
Iteration: 11, Func. Count: 61, Neg. LLF: 134.0263770573118
Optimization terminated successfully (Exit mode 0)
Current function value: 134.02637705705524
Iterations: 11
Function evaluations: 61
Gradient evaluations: 11
Iteration: 1, Func. Count: 7, Neg. LLF: 19548120.16131032
Iteration: 2, Func. Count: 15, Neg. LLF: 151.28249881965786
Iteration: 3, Func. Count: 22, Neg. LLF: 144.03696338754773
Iteration: 4, Func. Count: 29, Neg. LLF: 138.74020088352924
Iteration: 5, Func. Count: 36, Neg. LLF: 136.69391717454977
Iteration: 6, Func. Count: 43, Neg. LLF: 134.47238512283064
Iteration: 7, Func. Count: 49, Neg. LLF: 136.88372234535464
Iteration: 8, Func. Count: 56, Neg. LLF: 137.79292659618173
Iteration: 9, Func. Count: 64, Neg. LLF: 134.23102296528631
Iteration: 10, Func. Count: 70, Neg. LLF: 134.10565092298972
Iteration: 11, Func. Count: 76, Neg. LLF: 134.08714712920172
Iteration: 12, Func. Count: 82, Neg. LLF: 134.04593669864454
Iteration: 13, Func. Count: 88, Neg. LLF: 134.03474069991256
Iteration: 14, Func. Count: 94, Neg. LLF: 134.03265783724297
Iteration: 15, Func. Count: 100, Neg. LLF: 134.03245019937117
Iteration: 16, Func. Count: 106, Neg. LLF: 134.03241846023693
Iteration: 17, Func. Count: 112, Neg. LLF: 134.03241672590042
Iteration: 18, Func. Count: 117, Neg. LLF: 134.03241672600487
Optimization terminated successfully (Exit mode 0)
Current function value: 134.03241672590042
Iterations: 18
Function evaluations: 117
Gradient evaluations: 18
Iteration: 1, Func. Count: 8, Neg. LLF: 19451655.721744683
Iteration: 2, Func. Count: 17, Neg. LLF: 135.8778340449632
Iteration: 3, Func. Count: 24, Neg. LLF: 135.0172676442956
Iteration: 4, Func. Count: 31, Neg. LLF: 134.65367831733303
Iteration: 5, Func. Count: 38, Neg. LLF: 134.58999433376542
Iteration: 6, Func. Count: 45, Neg. LLF: 134.5917479705317
Iteration: 7, Func. Count: 53, Neg. LLF: 134.41595008007857
Iteration: 8, Func. Count: 60, Neg. LLF: 137.2781267358667
Iteration: 9, Func. Count: 68, Neg. LLF: 135.17839926838866
Iteration: 10, Func. Count: 76, Neg. LLF: 134.516321091425
Iteration: 11, Func. Count: 84, Neg. LLF: 134.13963750122406
Iteration: 12, Func. Count: 91, Neg. LLF: 134.5258094931759
Iteration: 13, Func. Count: 99, Neg. LLF: 134.03353401038183
Iteration: 14, Func. Count: 106, Neg. LLF: 134.03248351489572
Iteration: 15, Func. Count: 113, Neg. LLF: 134.0324234949223
Iteration: 16, Func. Count: 120, Neg. LLF: 134.03241667989033
Iteration: 17, Func. Count: 126, Neg. LLF: 134.0324166990829
Optimization terminated successfully (Exit mode 0)
Current function value: 134.03241667989033
Iterations: 17
Function evaluations: 126
Gradient evaluations: 17
Iteration: 1, Func. Count: 9, Neg. LLF: 1192.9598094188302
Iteration: 2, Func. Count: 19, Neg. LLF: 155.25951396357945
Iteration: 3, Func. Count: 28, Neg. LLF: 146.6349913098157
Iteration: 4, Func. Count: 37, Neg. LLF: 139.31641314084797
Iteration: 5, Func. Count: 46, Neg. LLF: 140.82363798389633
Iteration: 6, Func. Count: 55, Neg. LLF: 134.09701707796765
Iteration: 7, Func. Count: 63, Neg. LLF: 134.1182734765725
Iteration: 8, Func. Count: 72, Neg. LLF: 134.0331583830127
Iteration: 9, Func. Count: 81, Neg. LLF: 134.03243057289353
Iteration: 10, Func. Count: 89, Neg. LLF: 134.03241667403958
Iteration: 11, Func. Count: 96, Neg. LLF: 134.03241667789214
Optimization terminated successfully (Exit mode 0)
Current function value: 134.03241667403958
Iterations: 11
Function evaluations: 96
Gradient evaluations: 11
Iteration: 1, Func. Count: 6, Neg. LLF: 139.36704119098803
Iteration: 2, Func. Count: 12, Neg. LLF: 140.84198769399094
Iteration: 3, Func. Count: 18, Neg. LLF: 135.73367472551448
Iteration: 4, Func. Count: 23, Neg. LLF: 135.4447951836655
Iteration: 5, Func. Count: 28, Neg. LLF: 135.38119712284964
Iteration: 6, Func. Count: 33, Neg. LLF: 135.3687300402483
Iteration: 7, Func. Count: 38, Neg. LLF: 135.36648259780165
Iteration: 8, Func. Count: 43, Neg. LLF: 135.36577854670804
Iteration: 9, Func. Count: 48, Neg. LLF: 135.36537434009716
Iteration: 10, Func. Count: 53, Neg. LLF: 135.36536747465047
Iteration: 11, Func. Count: 57, Neg. LLF: 135.36536747183465
Optimization terminated successfully (Exit mode 0)
Current function value: 135.36536747465047
Iterations: 11
Function evaluations: 57
Gradient evaluations: 11
Iteration: 1, Func. Count: 7, Neg. LLF: 19514262.053552125
Iteration: 2, Func. Count: 15, Neg. LLF: 136.73101966169978
Iteration: 3, Func. Count: 22, Neg. LLF: 154.94855983957308
Iteration: 4, Func. Count: 29, Neg. LLF: 134.24057403291147
Iteration: 5, Func. Count: 35, Neg. LLF: 133.96870585805584
Iteration: 6, Func. Count: 41, Neg. LLF: 133.6062223441421
Iteration: 7, Func. Count: 47, Neg. LLF: 133.512712874741
Iteration: 8, Func. Count: 53, Neg. LLF: 133.57678156485076
Iteration: 9, Func. Count: 60, Neg. LLF: 133.43119729158835
Iteration: 10, Func. Count: 66, Neg. LLF: 133.42008059758646
Iteration: 11, Func. Count: 72, Neg. LLF: 133.41822681545082
Iteration: 12, Func. Count: 78, Neg. LLF: 133.4181276769134
Iteration: 13, Func. Count: 84, Neg. LLF: 133.4181241868393
Iteration: 14, Func. Count: 89, Neg. LLF: 133.418124186853
Optimization terminated successfully (Exit mode 0)
Current function value: 133.4181241868393
Iterations: 14
Function evaluations: 89
Gradient evaluations: 14
Iteration: 1, Func. Count: 8, Neg. LLF: 9213604.539155187
Iteration: 2, Func. Count: 17, Neg. LLF: 136.26480560360002
Iteration: 3, Func. Count: 25, Neg. LLF: 157.6948197665598
Iteration: 4, Func. Count: 33, Neg. LLF: 131.85302918937475
Iteration: 5, Func. Count: 40, Neg. LLF: 131.68402927568948
Iteration: 6, Func. Count: 47, Neg. LLF: 131.72498136619953
Iteration: 7, Func. Count: 55, Neg. LLF: 131.65857918481552
Iteration: 8, Func. Count: 62, Neg. LLF: 131.6358303442242
Iteration: 9, Func. Count: 69, Neg. LLF: 131.62975078523786
Iteration: 10, Func. Count: 76, Neg. LLF: 131.58793541463757
Iteration: 11, Func. Count: 83, Neg. LLF: 131.5597805406642
Iteration: 12, Func. Count: 90, Neg. LLF: 131.55505259382343
Iteration: 13, Func. Count: 97, Neg. LLF: 131.554361868833
Iteration: 14, Func. Count: 104, Neg. LLF: 131.55431089921612
Iteration: 15, Func. Count: 111, Neg. LLF: 131.55430688416752
Iteration: 16, Func. Count: 117, Neg. LLF: 131.55430688424755
Optimization terminated successfully (Exit mode 0)
Current function value: 131.55430688416752
Iterations: 16
Function evaluations: 117
Gradient evaluations: 16
Iteration: 1, Func. Count: 9, Neg. LLF: 8976558.263171075
Iteration: 2, Func. Count: 19, Neg. LLF: 132.94777184976155
Iteration: 3, Func. Count: 27, Neg. LLF: 132.42132619772994
Iteration: 4, Func. Count: 35, Neg. LLF: 139.3510101269307
Iteration: 5, Func. Count: 46, Neg. LLF: 135.21990833546226
Iteration: 6, Func. Count: 55, Neg. LLF: 131.68986776826617
Iteration: 7, Func. Count: 64, Neg. LLF: 131.63369299811615
Iteration: 8, Func. Count: 72, Neg. LLF: 131.6202968732004
Iteration: 9, Func. Count: 80, Neg. LLF: 131.55913249033046
Iteration: 10, Func. Count: 88, Neg. LLF: 131.55624256321258
Iteration: 11, Func. Count: 96, Neg. LLF: 131.55505834453186
Iteration: 12, Func. Count: 104, Neg. LLF: 131.55472948854805
Iteration: 13, Func. Count: 112, Neg. LLF: 131.55437370850117
Iteration: 14, Func. Count: 120, Neg. LLF: 131.55431374599232
Iteration: 15, Func. Count: 128, Neg. LLF: 131.5543067755008
Iteration: 16, Func. Count: 135, Neg. LLF: 131.55430683008007
Optimization terminated successfully (Exit mode 0)
Current function value: 131.5543067755008
Iterations: 16
Function evaluations: 135
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 995.8237480008072
Iteration: 2, Func. Count: 21, Neg. LLF: 133.67593168387882
Iteration: 3, Func. Count: 30, Neg. LLF: 133.7960403639729
Iteration: 4, Func. Count: 40, Neg. LLF: 135.32243984938722
Iteration: 5, Func. Count: 50, Neg. LLF: 135.74839341983838
Iteration: 6, Func. Count: 60, Neg. LLF: 131.79608020665748
Iteration: 7, Func. Count: 69, Neg. LLF: 131.76840939839613
Iteration: 8, Func. Count: 79, Neg. LLF: 131.63365844820933
Iteration: 9, Func. Count: 88, Neg. LLF: 131.61850070225702
Iteration: 10, Func. Count: 97, Neg. LLF: 131.5982962535386
Iteration: 11, Func. Count: 106, Neg. LLF: 131.56129527514616
Iteration: 12, Func. Count: 115, Neg. LLF: 131.55684248786895
Iteration: 13, Func. Count: 124, Neg. LLF: 131.5550864318678
Iteration: 14, Func. Count: 133, Neg. LLF: 131.5543407148448
Iteration: 15, Func. Count: 142, Neg. LLF: 131.55431119680028
Iteration: 16, Func. Count: 151, Neg. LLF: 131.554308285037
Iteration: 17, Func. Count: 160, Neg. LLF: 131.5543070388455
Iteration: 18, Func. Count: 168, Neg. LLF: 131.55430707451646
Optimization terminated successfully (Exit mode 0)
Current function value: 131.5543070388455
Iterations: 18
Function evaluations: 168
Gradient evaluations: 18
Iteration: 1, Func. Count: 7, Neg. LLF: 140.7378611274125
Iteration: 2, Func. Count: 14, Neg. LLF: 138.36083393325757
Iteration: 3, Func. Count: 21, Neg. LLF: 133.65478695999778
Iteration: 4, Func. Count: 27, Neg. LLF: 134.76904044219697
Iteration: 5, Func. Count: 34, Neg. LLF: 133.18668957894513
Iteration: 6, Func. Count: 40, Neg. LLF: 133.0736178517323
Iteration: 7, Func. Count: 46, Neg. LLF: 133.04994392511875
Iteration: 8, Func. Count: 52, Neg. LLF: 133.0965364416117
Iteration: 9, Func. Count: 59, Neg. LLF: 133.04775010127372
Iteration: 10, Func. Count: 65, Neg. LLF: 133.04757126095552
Iteration: 11, Func. Count: 71, Neg. LLF: 133.04750453871793
Iteration: 12, Func. Count: 76, Neg. LLF: 133.04750453524417
Optimization terminated successfully (Exit mode 0)
Current function value: 133.04750453871793
Iterations: 12
Function evaluations: 76
Gradient evaluations: 12
Iteration: 1, Func. Count: 8, Neg. LLF: 19510306.79049781
Iteration: 2, Func. Count: 17, Neg. LLF: 136.6967790116301
Iteration: 3, Func. Count: 25, Neg. LLF: 154.4985674454982
Iteration: 4, Func. Count: 33, Neg. LLF: 134.24023576463415
Iteration: 5, Func. Count: 40, Neg. LLF: 133.969796621839
Iteration: 6, Func. Count: 47, Neg. LLF: 133.6089283142716
Iteration: 7, Func. Count: 54, Neg. LLF: 133.50498989971427
Iteration: 8, Func. Count: 61, Neg. LLF: 133.57593968867215
Iteration: 9, Func. Count: 69, Neg. LLF: 133.43076478538478
Iteration: 10, Func. Count: 76, Neg. LLF: 133.41980658844437
Iteration: 11, Func. Count: 83, Neg. LLF: 133.4182076595309
Iteration: 12, Func. Count: 90, Neg. LLF: 133.41812660673418
Iteration: 13, Func. Count: 97, Neg. LLF: 133.4181242726278
Iteration: 14, Func. Count: 103, Neg. LLF: 133.41812427272416
Optimization terminated successfully (Exit mode 0)
Current function value: 133.4181242726278
Iterations: 14
Function evaluations: 103
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 9204471.130982844
Iteration: 2, Func. Count: 19, Neg. LLF: 136.26763158230895
Iteration: 3, Func. Count: 28, Neg. LLF: 158.90801198709718
Iteration: 4, Func. Count: 37, Neg. LLF: 131.85306644711395
Iteration: 5, Func. Count: 45, Neg. LLF: 131.6793287053741
Iteration: 6, Func. Count: 53, Neg. LLF: 131.66513675232775
Iteration: 7, Func. Count: 61, Neg. LLF: 131.64545415006006
Iteration: 8, Func. Count: 69, Neg. LLF: 131.6504725647944
Iteration: 9, Func. Count: 78, Neg. LLF: 131.62906049093712
Iteration: 10, Func. Count: 86, Neg. LLF: 131.60034635747593
Iteration: 11, Func. Count: 94, Neg. LLF: 131.57271359362232
Iteration: 12, Func. Count: 102, Neg. LLF: 131.56198812887655
Iteration: 13, Func. Count: 110, Neg. LLF: 131.55639400493558
Iteration: 14, Func. Count: 118, Neg. LLF: 131.55430837555087
Iteration: 15, Func. Count: 126, Neg. LLF: 131.5543067075431
Iteration: 16, Func. Count: 133, Neg. LLF: 131.55430670752833
Optimization terminated successfully (Exit mode 0)
Current function value: 131.5543067075431
Iterations: 16
Function evaluations: 133
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 19467043.890682947
Iteration: 2, Func. Count: 21, Neg. LLF: 132.8784735063904
Iteration: 3, Func. Count: 30, Neg. LLF: 132.4451059028798
Iteration: 4, Func. Count: 39, Neg. LLF: 139.39222150616513
Iteration: 5, Func. Count: 51, Neg. LLF: 135.2624364116699
Iteration: 6, Func. Count: 61, Neg. LLF: 131.71510149250182
Iteration: 7, Func. Count: 71, Neg. LLF: 131.6342303532427
Iteration: 8, Func. Count: 80, Neg. LLF: 131.6212568014963
Iteration: 9, Func. Count: 89, Neg. LLF: 131.55867975343503
Iteration: 10, Func. Count: 98, Neg. LLF: 131.5558089133129
Iteration: 11, Func. Count: 107, Neg. LLF: 131.55484012653562
Iteration: 12, Func. Count: 116, Neg. LLF: 131.55462466958852
Iteration: 13, Func. Count: 125, Neg. LLF: 131.55435406510648
Iteration: 14, Func. Count: 134, Neg. LLF: 131.55431148696263
Iteration: 15, Func. Count: 143, Neg. LLF: 131.55430672328242
Iteration: 16, Func. Count: 151, Neg. LLF: 131.55430677785444
Optimization terminated successfully (Exit mode 0)
Current function value: 131.55430672328242
Iterations: 16
Function evaluations: 151
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 1003.3188907502346
Iteration: 2, Func. Count: 23, Neg. LLF: 133.60873181019065
Iteration: 3, Func. Count: 33, Neg. LLF: 133.83206075481726
Iteration: 4, Func. Count: 44, Neg. LLF: 135.5211533523613
Iteration: 5, Func. Count: 55, Neg. LLF: 136.20722024642203
Iteration: 6, Func. Count: 66, Neg. LLF: 131.75396277687702
Iteration: 7, Func. Count: 76, Neg. LLF: 131.77485624129665
Iteration: 8, Func. Count: 87, Neg. LLF: 131.62717391257667
Iteration: 9, Func. Count: 97, Neg. LLF: 131.6153934992728
Iteration: 10, Func. Count: 107, Neg. LLF: 131.5820869095104
Iteration: 11, Func. Count: 117, Neg. LLF: 131.56054157506503
Iteration: 12, Func. Count: 127, Neg. LLF: 131.55591124955617
Iteration: 13, Func. Count: 137, Neg. LLF: 131.55460116865922
Iteration: 14, Func. Count: 147, Neg. LLF: 131.5543686355128
Iteration: 15, Func. Count: 157, Neg. LLF: 131.55430844835806
Iteration: 16, Func. Count: 167, Neg. LLF: 131.55430667807227
Iteration: 17, Func. Count: 176, Neg. LLF: 131.55430671388416
Optimization terminated successfully (Exit mode 0)
Current function value: 131.55430667807227
Iterations: 17
Function evaluations: 176
Gradient evaluations: 17
Iteration: 1, Func. Count: 8, Neg. LLF: 139.07902141465178
Iteration: 2, Func. Count: 16, Neg. LLF: 140.45134097158797
Iteration: 3, Func. Count: 24, Neg. LLF: 133.6699616237219
Iteration: 4, Func. Count: 31, Neg. LLF: 133.8491197310505
Iteration: 5, Func. Count: 39, Neg. LLF: 133.27878016450245
Iteration: 6, Func. Count: 46, Neg. LLF: 133.16119606797088
Iteration: 7, Func. Count: 53, Neg. LLF: 133.06630705561486
Iteration: 8, Func. Count: 60, Neg. LLF: 133.051068708732
Iteration: 9, Func. Count: 67, Neg. LLF: 133.1255112234991
Iteration: 10, Func. Count: 75, Neg. LLF: 133.04806315509256
Iteration: 11, Func. Count: 82, Neg. LLF: 133.04753390646252
Iteration: 12, Func. Count: 89, Neg. LLF: 133.0475066140256
Iteration: 13, Func. Count: 96, Neg. LLF: 133.04750450117163
Iteration: 14, Func. Count: 102, Neg. LLF: 133.0475046835831
Optimization terminated successfully (Exit mode 0)
Current function value: 133.04750450117163
Iterations: 14
Function evaluations: 102
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 19515857.02103428
Iteration: 2, Func. Count: 19, Neg. LLF: 136.72607176067245
Iteration: 3, Func. Count: 28, Neg. LLF: 155.07291469069347
Iteration: 4, Func. Count: 37, Neg. LLF: 134.23713322687715
Iteration: 5, Func. Count: 45, Neg. LLF: 133.96949936193664
Iteration: 6, Func. Count: 53, Neg. LLF: 133.6163682373628
Iteration: 7, Func. Count: 61, Neg. LLF: 133.4900700761119
Iteration: 8, Func. Count: 69, Neg. LLF: 133.55298904277984
Iteration: 9, Func. Count: 78, Neg. LLF: 133.44893387936463
Iteration: 10, Func. Count: 86, Neg. LLF: 133.42087995002132
Iteration: 11, Func. Count: 94, Neg. LLF: 133.41832052915797
Iteration: 12, Func. Count: 102, Neg. LLF: 133.41812536134452
Iteration: 13, Func. Count: 110, Neg. LLF: 133.4181242082334
Iteration: 14, Func. Count: 117, Neg. LLF: 133.4181242081993
Optimization terminated successfully (Exit mode 0)
Current function value: 133.4181242082334
Iterations: 14
Function evaluations: 117
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 9210963.366210189
Iteration: 2, Func. Count: 21, Neg. LLF: 136.21071948117984
Iteration: 3, Func. Count: 31, Neg. LLF: 157.7315488624865
Iteration: 4, Func. Count: 41, Neg. LLF: 131.85404020816887
Iteration: 5, Func. Count: 50, Neg. LLF: 131.6787939407981
Iteration: 6, Func. Count: 59, Neg. LLF: 131.66473506176052
Iteration: 7, Func. Count: 68, Neg. LLF: 131.638378180291
Iteration: 8, Func. Count: 77, Neg. LLF: 131.64382468581547
Iteration: 9, Func. Count: 87, Neg. LLF: 131.6269109204286
Iteration: 10, Func. Count: 96, Neg. LLF: 131.57322858199984
Iteration: 11, Func. Count: 105, Neg. LLF: 131.55819491875368
Iteration: 12, Func. Count: 114, Neg. LLF: 131.55465782388393
Iteration: 13, Func. Count: 123, Neg. LLF: 131.55438097919298
Iteration: 14, Func. Count: 132, Neg. LLF: 131.5543069870729
Iteration: 15, Func. Count: 140, Neg. LLF: 131.55430698703182
Optimization terminated successfully (Exit mode 0)
Current function value: 131.5543069870729
Iterations: 15
Function evaluations: 140
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 8952594.940381978
Iteration: 2, Func. Count: 23, Neg. LLF: 132.85303185331588
Iteration: 3, Func. Count: 33, Neg. LLF: 132.40119239462115
Iteration: 4, Func. Count: 43, Neg. LLF: 139.30226436761012
Iteration: 5, Func. Count: 56, Neg. LLF: 135.30132318452038
Iteration: 6, Func. Count: 67, Neg. LLF: 131.73084367661275
Iteration: 7, Func. Count: 78, Neg. LLF: 131.634481390952
Iteration: 8, Func. Count: 88, Neg. LLF: 131.62198811477117
Iteration: 9, Func. Count: 98, Neg. LLF: 131.55699086857484
Iteration: 10, Func. Count: 108, Neg. LLF: 131.5550551185316
Iteration: 11, Func. Count: 118, Neg. LLF: 131.55449844911325
Iteration: 12, Func. Count: 128, Neg. LLF: 131.55442709853918
Iteration: 13, Func. Count: 138, Neg. LLF: 131.5543217586539
Iteration: 14, Func. Count: 148, Neg. LLF: 131.55430808563688
Iteration: 15, Func. Count: 158, Neg. LLF: 131.55430666216765
Iteration: 16, Func. Count: 167, Neg. LLF: 131.55430671670192
Optimization terminated successfully (Exit mode 0)
Current function value: 131.55430666216765
Iterations: 16
Function evaluations: 167
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 991.0007352669979
Iteration: 2, Func. Count: 25, Neg. LLF: 133.58035948649487
Iteration: 3, Func. Count: 36, Neg. LLF: 133.63894722178364
Iteration: 4, Func. Count: 48, Neg. LLF: 135.08976299419066
Iteration: 5, Func. Count: 60, Neg. LLF: 132.47397161058552
Iteration: 6, Func. Count: 72, Neg. LLF: 131.84850718344174
Iteration: 7, Func. Count: 83, Neg. LLF: 131.74828316270577
Iteration: 8, Func. Count: 94, Neg. LLF: 131.85814141627984
Iteration: 9, Func. Count: 106, Neg. LLF: 131.6291984064539
Iteration: 10, Func. Count: 117, Neg. LLF: 131.6179180968971
Iteration: 11, Func. Count: 128, Neg. LLF: 131.56228729564103
Iteration: 12, Func. Count: 139, Neg. LLF: 131.5581871213691
Iteration: 13, Func. Count: 150, Neg. LLF: 131.55482472974222
Iteration: 14, Func. Count: 161, Neg. LLF: 131.55447878058797
Iteration: 15, Func. Count: 172, Neg. LLF: 131.55431538486974
Iteration: 16, Func. Count: 183, Neg. LLF: 131.55430732011123
Iteration: 17, Func. Count: 194, Neg. LLF: 131.55430670254987
Optimization terminated successfully (Exit mode 0)
Current function value: 131.55430670254987
Iterations: 17
Function evaluations: 194
Gradient evaluations: 17
Iteration: 1, Func. Count: 9, Neg. LLF: 136.6913908230632
Iteration: 2, Func. Count: 17, Neg. LLF: 141.32143979808745
Iteration: 3, Func. Count: 26, Neg. LLF: 133.9787297661703
Iteration: 4, Func. Count: 34, Neg. LLF: 133.538104653631
Iteration: 5, Func. Count: 42, Neg. LLF: 133.14239633334964
Iteration: 6, Func. Count: 50, Neg. LLF: 133.04942756911936
Iteration: 7, Func. Count: 58, Neg. LLF: 133.15746635765896
Iteration: 8, Func. Count: 68, Neg. LLF: 133.05018709309377
Iteration: 9, Func. Count: 77, Neg. LLF: 133.04750600432527
Iteration: 10, Func. Count: 85, Neg. LLF: 133.04750455328207
Iteration: 11, Func. Count: 92, Neg. LLF: 133.04750488333144
Optimization terminated successfully (Exit mode 0)
Current function value: 133.04750455328207
Iterations: 11
Function evaluations: 92
Gradient evaluations: 11
Iteration: 1, Func. Count: 10, Neg. LLF: 19516253.26802087
Iteration: 2, Func. Count: 21, Neg. LLF: 136.7236720376244
Iteration: 3, Func. Count: 31, Neg. LLF: 155.08077068148785
Iteration: 4, Func. Count: 41, Neg. LLF: 134.23332466833185
Iteration: 5, Func. Count: 50, Neg. LLF: 133.97055235206147
Iteration: 6, Func. Count: 59, Neg. LLF: 133.62605705067875
Iteration: 7, Func. Count: 68, Neg. LLF: 133.48625448253534
Iteration: 8, Func. Count: 77, Neg. LLF: 133.45218703864234
Iteration: 9, Func. Count: 86, Neg. LLF: 133.4431170377786
Iteration: 10, Func. Count: 95, Neg. LLF: 133.43624021581732
Iteration: 11, Func. Count: 105, Neg. LLF: 133.41876022435423
Iteration: 12, Func. Count: 114, Neg. LLF: 133.41815146060787
Iteration: 13, Func. Count: 123, Neg. LLF: 133.41812405822571
Iteration: 14, Func. Count: 131, Neg. LLF: 133.41812405806286
Optimization terminated successfully (Exit mode 0)
Current function value: 133.41812405822571
Iterations: 14
Function evaluations: 131
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 9215262.37569449
Iteration: 2, Func. Count: 23, Neg. LLF: 136.27632537702394
Iteration: 3, Func. Count: 34, Neg. LLF: 157.80461410287145
Iteration: 4, Func. Count: 45, Neg. LLF: 131.8561025202926
Iteration: 5, Func. Count: 55, Neg. LLF: 131.67973124454605
Iteration: 6, Func. Count: 65, Neg. LLF: 131.67416517613736
Iteration: 7, Func. Count: 75, Neg. LLF: 131.645620605694
Iteration: 8, Func. Count: 85, Neg. LLF: 131.63538131331546
Iteration: 9, Func. Count: 95, Neg. LLF: 131.62617523953082
Iteration: 10, Func. Count: 105, Neg. LLF: 131.5911450321524
Iteration: 11, Func. Count: 115, Neg. LLF: 131.57282025464409
Iteration: 12, Func. Count: 125, Neg. LLF: 131.55497124059886
Iteration: 13, Func. Count: 135, Neg. LLF: 131.55440759203321
Iteration: 14, Func. Count: 145, Neg. LLF: 131.55431588741797
Iteration: 15, Func. Count: 155, Neg. LLF: 131.55430692084062
Iteration: 16, Func. Count: 164, Neg. LLF: 131.55430692085665
Optimization terminated successfully (Exit mode 0)
Current function value: 131.55430692084062
Iterations: 16
Function evaluations: 164
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 19471095.56952478
Iteration: 2, Func. Count: 25, Neg. LLF: 132.8643011338776
Iteration: 3, Func. Count: 36, Neg. LLF: 132.4099639566479
Iteration: 4, Func. Count: 47, Neg. LLF: 139.58312766103367
Iteration: 5, Func. Count: 61, Neg. LLF: 135.28610269505376
Iteration: 6, Func. Count: 73, Neg. LLF: 131.72068783544472
Iteration: 7, Func. Count: 85, Neg. LLF: 131.6344199543444
Iteration: 8, Func. Count: 96, Neg. LLF: 131.62203358675478
Iteration: 9, Func. Count: 107, Neg. LLF: 131.55729395858165
Iteration: 10, Func. Count: 118, Neg. LLF: 131.55518968711507
Iteration: 11, Func. Count: 129, Neg. LLF: 131.554544747757
Iteration: 12, Func. Count: 140, Neg. LLF: 131.5544566502319
Iteration: 13, Func. Count: 151, Neg. LLF: 131.55432498414777
Iteration: 14, Func. Count: 162, Neg. LLF: 131.55430834631898
Iteration: 15, Func. Count: 173, Neg. LLF: 131.5543066732461
Iteration: 16, Func. Count: 183, Neg. LLF: 131.5543067277808
Optimization terminated successfully (Exit mode 0)
Current function value: 131.5543066732461
Iterations: 16
Function evaluations: 183
Gradient evaluations: 16
Iteration: 1, Func. Count: 13, Neg. LLF: 993.7290180931542
Iteration: 2, Func. Count: 27, Neg. LLF: 133.5602094146296
Iteration: 3, Func. Count: 39, Neg. LLF: 133.5614401537732
Iteration: 4, Func. Count: 52, Neg. LLF: 134.96434039503268
Iteration: 5, Func. Count: 65, Neg. LLF: 132.10296001949348
Iteration: 6, Func. Count: 78, Neg. LLF: 132.90788099850576
Iteration: 7, Func. Count: 91, Neg. LLF: 131.63997767308155
Iteration: 8, Func. Count: 103, Neg. LLF: 131.64940351230013
Iteration: 9, Func. Count: 116, Neg. LLF: 131.61231011067
Iteration: 10, Func. Count: 128, Neg. LLF: 131.57535625996528
Iteration: 11, Func. Count: 140, Neg. LLF: 131.55687354212606
Iteration: 12, Func. Count: 152, Neg. LLF: 131.55464460265807
Iteration: 13, Func. Count: 164, Neg. LLF: 131.55441199206092
Iteration: 14, Func. Count: 176, Neg. LLF: 131.55432756013204
Iteration: 15, Func. Count: 188, Neg. LLF: 131.55430848614802
Iteration: 16, Func. Count: 200, Neg. LLF: 131.5543067612481
Iteration: 17, Func. Count: 211, Neg. LLF: 131.55430679711745
Optimization terminated successfully (Exit mode 0)
Current function value: 131.5543067612481
Iterations: 17
Function evaluations: 211
Gradient evaluations: 17
Iteration: 1, Func. Count: 6, Neg. LLF: 141.9677163222297
Iteration: 2, Func. Count: 12, Neg. LLF: 149.4717375103138
Iteration: 3, Func. Count: 18, Neg. LLF: 136.38186676020587
Iteration: 4, Func. Count: 23, Neg. LLF: 136.23199606643374
Iteration: 5, Func. Count: 28, Neg. LLF: 136.14221941972878
Iteration: 6, Func. Count: 33, Neg. LLF: 136.18092895443885
Iteration: 7, Func. Count: 39, Neg. LLF: 136.1147365842484
Iteration: 8, Func. Count: 44, Neg. LLF: 136.1122493099071
Iteration: 9, Func. Count: 49, Neg. LLF: 136.1120995462989
Iteration: 10, Func. Count: 54, Neg. LLF: 136.11209778945732
Iteration: 11, Func. Count: 58, Neg. LLF: 136.11209778602935
Optimization terminated successfully (Exit mode 0)
Current function value: 136.11209778945732
Iterations: 11
Function evaluations: 58
Gradient evaluations: 11
Iteration: 1, Func. Count: 7, Neg. LLF: 19515332.065934233
Iteration: 2, Func. Count: 15, Neg. LLF: 135.2855224069474
Iteration: 3, Func. Count: 21, Neg. LLF: 135.1283473487051
Iteration: 4, Func. Count: 27, Neg. LLF: 142.62948065905326
Iteration: 5, Func. Count: 34, Neg. LLF: 136.88267147308966
Iteration: 6, Func. Count: 41, Neg. LLF: 134.72350154932303
Iteration: 7, Func. Count: 48, Neg. LLF: 134.06408846775898
Iteration: 8, Func. Count: 54, Neg. LLF: 134.04251385881568
Iteration: 9, Func. Count: 60, Neg. LLF: 134.02803831435048
Iteration: 10, Func. Count: 66, Neg. LLF: 134.02665955028647
Iteration: 11, Func. Count: 72, Neg. LLF: 134.02637801205847
Iteration: 12, Func. Count: 78, Neg. LLF: 134.02637677572494
Iteration: 13, Func. Count: 83, Neg. LLF: 134.02637677567859
Optimization terminated successfully (Exit mode 0)
Current function value: 134.02637677572494
Iterations: 13
Function evaluations: 83
Gradient evaluations: 13
Iteration: 1, Func. Count: 8, Neg. LLF: 19566245.90127336
Iteration: 2, Func. Count: 17, Neg. LLF: 149.54421283959618
Iteration: 3, Func. Count: 25, Neg. LLF: 143.30990853240357
Iteration: 4, Func. Count: 33, Neg. LLF: 138.49502717291446
Iteration: 5, Func. Count: 41, Neg. LLF: 136.48630939276345
Iteration: 6, Func. Count: 49, Neg. LLF: 134.59930186626235
Iteration: 7, Func. Count: 56, Neg. LLF: 134.6310748723196
Iteration: 8, Func. Count: 64, Neg. LLF: 221.7956723984172
Iteration: 9, Func. Count: 73, Neg. LLF: 136.6123133276781
Iteration: 10, Func. Count: 81, Neg. LLF: 134.10650036689987
Iteration: 11, Func. Count: 88, Neg. LLF: 134.08612468535688
Iteration: 12, Func. Count: 95, Neg. LLF: 134.05948432715647
Iteration: 13, Func. Count: 102, Neg. LLF: 134.0331834191855
Iteration: 14, Func. Count: 109, Neg. LLF: 134.03250243073725
Iteration: 15, Func. Count: 116, Neg. LLF: 134.03241839326697
Iteration: 16, Func. Count: 123, Neg. LLF: 134.0324167522164
Iteration: 17, Func. Count: 129, Neg. LLF: 134.03241675238883
Optimization terminated successfully (Exit mode 0)
Current function value: 134.0324167522164
Iterations: 17
Function evaluations: 129
Gradient evaluations: 17
Iteration: 1, Func. Count: 9, Neg. LLF: 19487081.47559709
Iteration: 2, Func. Count: 19, Neg. LLF: 142.57604006763896
Iteration: 3, Func. Count: 28, Neg. LLF: 137.76645347612677
Iteration: 4, Func. Count: 37, Neg. LLF: 135.46862658195928
Iteration: 5, Func. Count: 46, Neg. LLF: 134.20093541325315
Iteration: 6, Func. Count: 54, Neg. LLF: 134.47067145409878
Iteration: 7, Func. Count: 63, Neg. LLF: 133.96706722346295
Iteration: 8, Func. Count: 71, Neg. LLF: 133.95400391792685
Iteration: 9, Func. Count: 79, Neg. LLF: 133.95127374099573
Iteration: 10, Func. Count: 87, Neg. LLF: 133.95063603103267
Iteration: 11, Func. Count: 95, Neg. LLF: 133.9506088433457
Iteration: 12, Func. Count: 102, Neg. LLF: 133.95060884283234
Optimization terminated successfully (Exit mode 0)
Current function value: 133.9506088433457
Iterations: 12
Function evaluations: 102
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 923.472666905281
Iteration: 2, Func. Count: 21, Neg. LLF: 143.44120592782156
Iteration: 3, Func. Count: 31, Neg. LLF: 139.5807437217846
Iteration: 4, Func. Count: 41, Neg. LLF: 136.09187432276786
Iteration: 5, Func. Count: 51, Neg. LLF: 134.85590405308432
Iteration: 6, Func. Count: 60, Neg. LLF: 134.55428097597184
Iteration: 7, Func. Count: 69, Neg. LLF: 134.15586894331184
Iteration: 8, Func. Count: 78, Neg. LLF: 134.012607656405
Iteration: 9, Func. Count: 87, Neg. LLF: 134.0167988889874
Iteration: 10, Func. Count: 97, Neg. LLF: 133.99354159904408
Iteration: 11, Func. Count: 106, Neg. LLF: 133.98737945646332
Iteration: 12, Func. Count: 115, Neg. LLF: 133.98421035856606
Iteration: 13, Func. Count: 124, Neg. LLF: 1802.3623931221966
Iteration: 14, Func. Count: 136, Neg. LLF: 133.9841286987882
Iteration: 15, Func. Count: 146, Neg. LLF: 133.98398959097472
Iteration: 16, Func. Count: 155, Neg. LLF: 133.98395703450856
Optimization terminated successfully (Exit mode 0)
Current function value: 133.98395703446892
Iterations: 17
Function evaluations: 155
Gradient evaluations: 16
Iteration: 1, Func. Count: 7, Neg. LLF: 139.92716220925436
Iteration: 2, Func. Count: 14, Neg. LLF: 143.6227484643485
Iteration: 3, Func. Count: 21, Neg. LLF: 135.48786086599011
Iteration: 4, Func. Count: 27, Neg. LLF: 137.53890413683303
Iteration: 5, Func. Count: 35, Neg. LLF: 139.27120503823983
Iteration: 6, Func. Count: 42, Neg. LLF: 135.3483068235281
Iteration: 7, Func. Count: 48, Neg. LLF: 135.3336815514354
Iteration: 8, Func. Count: 54, Neg. LLF: 135.32346276593134
Iteration: 9, Func. Count: 60, Neg. LLF: 135.3183374220856
Iteration: 10, Func. Count: 66, Neg. LLF: 135.31766638153104
Iteration: 11, Func. Count: 72, Neg. LLF: 135.31760321273495
Iteration: 12, Func. Count: 78, Neg. LLF: 135.31760086287235
Iteration: 13, Func. Count: 83, Neg. LLF: 135.31760085907212
Optimization terminated successfully (Exit mode 0)
Current function value: 135.31760086287235
Iterations: 13
Function evaluations: 83
Gradient evaluations: 13
Iteration: 1, Func. Count: 8, Neg. LLF: 19601414.45612301
Iteration: 2, Func. Count: 17, Neg. LLF: 137.3378650390861
Iteration: 3, Func. Count: 25, Neg. LLF: 163.30182513299718
Iteration: 4, Func. Count: 33, Neg. LLF: 134.28206025723063
Iteration: 5, Func. Count: 40, Neg. LLF: 133.8531886730625
Iteration: 6, Func. Count: 47, Neg. LLF: 133.8072360343981
Iteration: 7, Func. Count: 55, Neg. LLF: 133.47738991873186
Iteration: 8, Func. Count: 63, Neg. LLF: 133.4837245428952
Iteration: 9, Func. Count: 71, Neg. LLF: 133.4192018883317
Iteration: 10, Func. Count: 78, Neg. LLF: 133.41842511241325
Iteration: 11, Func. Count: 85, Neg. LLF: 133.4182100164582
Iteration: 12, Func. Count: 92, Neg. LLF: 133.41812795929775
Iteration: 13, Func. Count: 99, Neg. LLF: 133.41812412255206
Iteration: 14, Func. Count: 105, Neg. LLF: 133.41812412234628
Optimization terminated successfully (Exit mode 0)
Current function value: 133.41812412255206
Iterations: 14
Function evaluations: 105
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 9247868.621941883
Iteration: 2, Func. Count: 18, Neg. LLF: 133.5969084161196
Iteration: 3, Func. Count: 26, Neg. LLF: 133.5964332038711
Iteration: 4, Func. Count: 35, Neg. LLF: 132.87883972611803
Iteration: 5, Func. Count: 44, Neg. LLF: 131.5815233346427
Iteration: 6, Func. Count: 52, Neg. LLF: 131.5697164774443
Iteration: 7, Func. Count: 60, Neg. LLF: 131.56045888441093
Iteration: 8, Func. Count: 68, Neg. LLF: 131.55470795810456
Iteration: 9, Func. Count: 76, Neg. LLF: 131.55432315592955
Iteration: 10, Func. Count: 84, Neg. LLF: 131.55430677414205
Iteration: 11, Func. Count: 91, Neg. LLF: 131.55430677417172
Optimization terminated successfully (Exit mode 0)
Current function value: 131.55430677414205
Iterations: 11
Function evaluations: 91
Gradient evaluations: 11
Iteration: 1, Func. Count: 10, Neg. LLF: 19547803.06462132
Iteration: 2, Func. Count: 21, Neg. LLF: 141.94728034097886
Iteration: 3, Func. Count: 31, Neg. LLF: 177.62544766189265
Iteration: 4, Func. Count: 41, Neg. LLF: 149.32878307832803
Iteration: 5, Func. Count: 51, Neg. LLF: 133.99064628060233
Iteration: 6, Func. Count: 60, Neg. LLF: 137.3411691201108
Iteration: 7, Func. Count: 70, Neg. LLF: 134.19742920139169
Iteration: 8, Func. Count: 80, Neg. LLF: 132.2617814438244
Iteration: 9, Func. Count: 89, Neg. LLF: 131.85921015132004
Iteration: 10, Func. Count: 98, Neg. LLF: 132.12672020044872
Iteration: 11, Func. Count: 108, Neg. LLF: 131.7189427688842
Iteration: 12, Func. Count: 117, Neg. LLF: 131.65265722874082
Iteration: 13, Func. Count: 126, Neg. LLF: 131.64599899102654
Iteration: 14, Func. Count: 135, Neg. LLF: 131.64557658654635
Iteration: 15, Func. Count: 144, Neg. LLF: 131.6450847421454
Iteration: 16, Func. Count: 153, Neg. LLF: 131.64485028020258
Iteration: 17, Func. Count: 162, Neg. LLF: 131.6434373660537
Iteration: 18, Func. Count: 171, Neg. LLF: 131.63793302244102
Iteration: 19, Func. Count: 180, Neg. LLF: 131.58192771100892
Iteration: 20, Func. Count: 189, Neg. LLF: 131.55700459633712
Iteration: 21, Func. Count: 198, Neg. LLF: 131.55513784202145
Iteration: 22, Func. Count: 207, Neg. LLF: 131.55452475854023
Iteration: 23, Func. Count: 216, Neg. LLF: 131.5543338129311
Iteration: 24, Func. Count: 225, Neg. LLF: 131.55432173657098
Iteration: 25, Func. Count: 234, Neg. LLF: 131.5543078874051
Iteration: 26, Func. Count: 243, Neg. LLF: 131.55430705167353
Optimization terminated successfully (Exit mode 0)
Current function value: 131.55430705167353
Iterations: 26
Function evaluations: 243
Gradient evaluations: 26
Iteration: 1, Func. Count: 11, Neg. LLF: 481.98880988336646
Iteration: 2, Func. Count: 23, Neg. LLF: 149.63430602764305
Iteration: 3, Func. Count: 34, Neg. LLF: 144.2523655664238
Iteration: 4, Func. Count: 45, Neg. LLF: 140.55858656293634
Iteration: 5, Func. Count: 56, Neg. LLF: 144.78819288326216
Iteration: 6, Func. Count: 67, Neg. LLF: 142.10499554706055
Iteration: 7, Func. Count: 78, Neg. LLF: 135.29668958705813
Iteration: 8, Func. Count: 89, Neg. LLF: 134.43064265586554
Iteration: 9, Func. Count: 100, Neg. LLF: 133.104583228036
Iteration: 10, Func. Count: 110, Neg. LLF: 132.97937621271328
Iteration: 11, Func. Count: 121, Neg. LLF: 153.9229100122211
Iteration: 12, Func. Count: 133, Neg. LLF: 132.49828735199821
Iteration: 13, Func. Count: 143, Neg. LLF: 132.49165553929967
Iteration: 14, Func. Count: 153, Neg. LLF: 132.48222552443943
Iteration: 15, Func. Count: 163, Neg. LLF: 132.43396441268072
Iteration: 16, Func. Count: 173, Neg. LLF: 132.28474426137947
Iteration: 17, Func. Count: 183, Neg. LLF: 131.872632671664
Iteration: 18, Func. Count: 193, Neg. LLF: 132.12455431589117
Iteration: 19, Func. Count: 205, Neg. LLF: 131.70688294354028
Iteration: 20, Func. Count: 215, Neg. LLF: 131.6402438130235
Iteration: 21, Func. Count: 225, Neg. LLF: 131.62506981762374
Iteration: 22, Func. Count: 235, Neg. LLF: 131.58185328188486
Iteration: 23, Func. Count: 245, Neg. LLF: 131.56216822724997
Iteration: 24, Func. Count: 255, Neg. LLF: 131.56048500658133
Iteration: 25, Func. Count: 265, Neg. LLF: 131.5561602190634
Iteration: 26, Func. Count: 275, Neg. LLF: 131.55482796955818
Iteration: 27, Func. Count: 285, Neg. LLF: 131.5543670713059
Iteration: 28, Func. Count: 295, Neg. LLF: 131.55431696879612
Iteration: 29, Func. Count: 305, Neg. LLF: 131.55430809792577
Iteration: 30, Func. Count: 315, Neg. LLF: 131.55430674873364
Iteration: 31, Func. Count: 324, Neg. LLF: 131.55430678456207
Optimization terminated successfully (Exit mode 0)
Current function value: 131.55430674873364
Iterations: 31
Function evaluations: 324
Gradient evaluations: 31
Iteration: 1, Func. Count: 8, Neg. LLF: 140.9312827416362
Iteration: 2, Func. Count: 16, Neg. LLF: 139.1316612507857
Iteration: 3, Func. Count: 24, Neg. LLF: 133.76227592323218
Iteration: 4, Func. Count: 31, Neg. LLF: 133.28603842008252
Iteration: 5, Func. Count: 38, Neg. LLF: 133.23760150545098
Iteration: 6, Func. Count: 46, Neg. LLF: 133.09949318650058
Iteration: 7, Func. Count: 54, Neg. LLF: 132.8879705872971
Iteration: 8, Func. Count: 61, Neg. LLF: 132.86802581887721
Iteration: 9, Func. Count: 68, Neg. LLF: 132.8674844715384
Iteration: 10, Func. Count: 75, Neg. LLF: 132.86726148898865
Iteration: 11, Func. Count: 82, Neg. LLF: 132.86725508611076
Iteration: 12, Func. Count: 89, Neg. LLF: 132.8672541494122
Optimization terminated successfully (Exit mode 0)
Current function value: 132.8672541494122
Iterations: 12
Function evaluations: 89
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 19594197.733764246
Iteration: 2, Func. Count: 19, Neg. LLF: 158.53614857415903
Iteration: 3, Func. Count: 28, Neg. LLF: 151.33637866195576
Iteration: 4, Func. Count: 37, Neg. LLF: 134.23865608238162
Iteration: 5, Func. Count: 45, Neg. LLF: 134.14510813593458
Iteration: 6, Func. Count: 53, Neg. LLF: 133.83467639607974
Iteration: 7, Func. Count: 61, Neg. LLF: 133.64822948078512
Iteration: 8, Func. Count: 69, Neg. LLF: 136.09128454705564
Iteration: 9, Func. Count: 78, Neg. LLF: 133.48247640313448
Iteration: 10, Func. Count: 86, Neg. LLF: 133.43468757576719
Iteration: 11, Func. Count: 94, Neg. LLF: 133.42454851210434
Iteration: 12, Func. Count: 102, Neg. LLF: 133.41827295248223
Iteration: 13, Func. Count: 110, Neg. LLF: 133.41812580558178
Iteration: 14, Func. Count: 118, Neg. LLF: 133.41812491602371
Optimization terminated successfully (Exit mode 0)
Current function value: 133.41812491602371
Iterations: 14
Function evaluations: 118
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 9233452.402256448
Iteration: 2, Func. Count: 20, Neg. LLF: 133.6377549675866
Iteration: 3, Func. Count: 29, Neg. LLF: 137.32605253341544
Iteration: 4, Func. Count: 39, Neg. LLF: 131.81561211487085
Iteration: 5, Func. Count: 48, Neg. LLF: 131.61243447997717
Iteration: 6, Func. Count: 57, Neg. LLF: 131.56678303068827
Iteration: 7, Func. Count: 66, Neg. LLF: 131.56197944469668
Iteration: 8, Func. Count: 75, Neg. LLF: 131.5565571046734
Iteration: 9, Func. Count: 84, Neg. LLF: 131.55442731810007
Iteration: 10, Func. Count: 93, Neg. LLF: 131.55430916773165
Iteration: 11, Func. Count: 102, Neg. LLF: 131.55430664957214
Iteration: 12, Func. Count: 110, Neg. LLF: 131.55430664958448
Optimization terminated successfully (Exit mode 0)
Current function value: 131.55430664957214
Iterations: 12
Function evaluations: 110
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 19536519.376996554
Iteration: 2, Func. Count: 23, Neg. LLF: 141.9651443835819
Iteration: 3, Func. Count: 34, Neg. LLF: 177.4573870994336
Iteration: 4, Func. Count: 45, Neg. LLF: 148.78861441224703
Iteration: 5, Func. Count: 56, Neg. LLF: 133.83947102277244
Iteration: 6, Func. Count: 66, Neg. LLF: 136.35910058389805
Iteration: 7, Func. Count: 77, Neg. LLF: 133.25468226343514
Iteration: 8, Func. Count: 88, Neg. LLF: 132.21918301727564
Iteration: 9, Func. Count: 98, Neg. LLF: 131.88150540537356
Iteration: 10, Func. Count: 108, Neg. LLF: 132.04010851102504
Iteration: 11, Func. Count: 119, Neg. LLF: 131.7271356187852
Iteration: 12, Func. Count: 129, Neg. LLF: 131.65427166224376
Iteration: 13, Func. Count: 139, Neg. LLF: 131.64977255319167
Iteration: 14, Func. Count: 149, Neg. LLF: 131.64439977999103
Iteration: 15, Func. Count: 159, Neg. LLF: 131.64413264986737
Iteration: 16, Func. Count: 169, Neg. LLF: 131.6439212049003
Iteration: 17, Func. Count: 179, Neg. LLF: 131.64268541632538
Iteration: 18, Func. Count: 189, Neg. LLF: 131.63716172314827
Iteration: 19, Func. Count: 199, Neg. LLF: 131.6010145430843
Iteration: 20, Func. Count: 209, Neg. LLF: 131.55665588012118
Iteration: 21, Func. Count: 219, Neg. LLF: 131.55530266995123
Iteration: 22, Func. Count: 229, Neg. LLF: 131.5545391215841
Iteration: 23, Func. Count: 239, Neg. LLF: 131.55436405203767
Iteration: 24, Func. Count: 249, Neg. LLF: 131.55431229773586
Iteration: 25, Func. Count: 259, Neg. LLF: 131.55430880396744
Iteration: 26, Func. Count: 269, Neg. LLF: 131.55764058171255
Optimization terminated successfully (Exit mode 0)
Current function value: 131.5543086186211
Iterations: 27
Function evaluations: 271
Gradient evaluations: 26
Iteration: 1, Func. Count: 12, Neg. LLF: 485.8193634652974
Iteration: 2, Func. Count: 25, Neg. LLF: 150.4340218163769
Iteration: 3, Func. Count: 37, Neg. LLF: 146.47265546532284
Iteration: 4, Func. Count: 49, Neg. LLF: 142.29742911434911
Iteration: 5, Func. Count: 61, Neg. LLF: 136.29941864408477
Iteration: 6, Func. Count: 73, Neg. LLF: 132.09884150165095
Iteration: 7, Func. Count: 84, Neg. LLF: 150.2318992181528
Iteration: 8, Func. Count: 97, Neg. LLF: 165.80948148398477
Iteration: 9, Func. Count: 109, Neg. LLF: 132.55508233935532
Iteration: 10, Func. Count: 121, Neg. LLF: 131.69421705129858
Iteration: 11, Func. Count: 132, Neg. LLF: 131.68607075737995
Iteration: 12, Func. Count: 144, Neg. LLF: 131.6458532993505
Iteration: 13, Func. Count: 155, Neg. LLF: 131.64512179803307
Iteration: 14, Func. Count: 166, Neg. LLF: 131.6450454281014
Iteration: 15, Func. Count: 177, Neg. LLF: 131.64494436566378
Iteration: 16, Func. Count: 188, Neg. LLF: 131.64471085657854
Iteration: 17, Func. Count: 199, Neg. LLF: 131.64419961221537
Iteration: 18, Func. Count: 210, Neg. LLF: 131.64289016415088
Iteration: 19, Func. Count: 221, Neg. LLF: 131.62797182419806
Iteration: 20, Func. Count: 232, Neg. LLF: 131.61319564077195
Iteration: 21, Func. Count: 243, Neg. LLF: 131.57588212160118
Iteration: 22, Func. Count: 254, Neg. LLF: 131.56862847108786
Iteration: 23, Func. Count: 265, Neg. LLF: 131.5575285556486
Iteration: 24, Func. Count: 276, Neg. LLF: 131.5556041796646
Iteration: 25, Func. Count: 287, Neg. LLF: 131.55441573205545
Iteration: 26, Func. Count: 298, Neg. LLF: 131.5543137777952
Iteration: 27, Func. Count: 309, Neg. LLF: 131.55430867984364
Iteration: 28, Func. Count: 320, Neg. LLF: 131.55430679644238
Iteration: 29, Func. Count: 330, Neg. LLF: 131.55430683226183
Optimization terminated successfully (Exit mode 0)
Current function value: 131.55430679644238
Iterations: 29
Function evaluations: 330
Gradient evaluations: 29
Iteration: 1, Func. Count: 9, Neg. LLF: 140.012770326752
Iteration: 2, Func. Count: 18, Neg. LLF: 138.32647937167562
Iteration: 3, Func. Count: 27, Neg. LLF: 133.58909723746794
Iteration: 4, Func. Count: 35, Neg. LLF: 134.8927663330547
Iteration: 5, Func. Count: 44, Neg. LLF: 133.51438071522887
Iteration: 6, Func. Count: 53, Neg. LLF: 132.9985898857073
Iteration: 7, Func. Count: 61, Neg. LLF: 132.88065479168418
Iteration: 8, Func. Count: 69, Neg. LLF: 132.86820442750607
Iteration: 9, Func. Count: 77, Neg. LLF: 132.86733684458198
Iteration: 10, Func. Count: 85, Neg. LLF: 132.8672586126799
Iteration: 11, Func. Count: 93, Neg. LLF: 132.86725421260425
Iteration: 12, Func. Count: 100, Neg. LLF: 132.86725440458437
Optimization terminated successfully (Exit mode 0)
Current function value: 132.86725421260425
Iterations: 12
Function evaluations: 100
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 19601908.670197144
Iteration: 2, Func. Count: 21, Neg. LLF: 158.51910816570995
Iteration: 3, Func. Count: 31, Neg. LLF: 151.67491293350048
Iteration: 4, Func. Count: 41, Neg. LLF: 134.23456581736355
Iteration: 5, Func. Count: 50, Neg. LLF: 134.14442757066698
Iteration: 6, Func. Count: 59, Neg. LLF: 133.8282654141076
Iteration: 7, Func. Count: 68, Neg. LLF: 133.63964061985664
Iteration: 8, Func. Count: 77, Neg. LLF: 135.89855353417187
Iteration: 9, Func. Count: 87, Neg. LLF: 133.47523179809426
Iteration: 10, Func. Count: 96, Neg. LLF: 133.4310056325389
Iteration: 11, Func. Count: 105, Neg. LLF: 133.4199514512902
Iteration: 12, Func. Count: 114, Neg. LLF: 133.41887664993192
Iteration: 13, Func. Count: 123, Neg. LLF: 133.41812952453103
Iteration: 14, Func. Count: 132, Neg. LLF: 133.41812438494642
Iteration: 15, Func. Count: 140, Neg. LLF: 133.41812438494537
Optimization terminated successfully (Exit mode 0)
Current function value: 133.41812438494642
Iterations: 15
Function evaluations: 140
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 9242300.327982267
Iteration: 2, Func. Count: 22, Neg. LLF: 133.5903025475559
Iteration: 3, Func. Count: 32, Neg. LLF: 138.26148214358722
Iteration: 4, Func. Count: 43, Neg. LLF: 131.61817821506523
Iteration: 5, Func. Count: 53, Neg. LLF: 131.75891444757772
Iteration: 6, Func. Count: 64, Neg. LLF: 131.5661061935508
Iteration: 7, Func. Count: 74, Neg. LLF: 131.55936896440045
Iteration: 8, Func. Count: 84, Neg. LLF: 131.55541920015008
Iteration: 9, Func. Count: 94, Neg. LLF: 131.5543501881063
Iteration: 10, Func. Count: 104, Neg. LLF: 131.55430749827374
Iteration: 11, Func. Count: 114, Neg. LLF: 131.55430664369638
Optimization terminated successfully (Exit mode 0)
Current function value: 131.55430664369638
Iterations: 11
Function evaluations: 114
Gradient evaluations: 11
Iteration: 1, Func. Count: 12, Neg. LLF: 19542185.666300558
Iteration: 2, Func. Count: 25, Neg. LLF: 141.94978469767207
Iteration: 3, Func. Count: 37, Neg. LLF: 177.81820245754693
Iteration: 4, Func. Count: 49, Neg. LLF: 149.12206934737856
Iteration: 5, Func. Count: 61, Neg. LLF: 133.88309935913077
Iteration: 6, Func. Count: 72, Neg. LLF: 136.86235825767054
Iteration: 7, Func. Count: 84, Neg. LLF: 133.95593292439682
Iteration: 8, Func. Count: 96, Neg. LLF: 132.27006296588291
Iteration: 9, Func. Count: 107, Neg. LLF: 131.85399408284616
Iteration: 10, Func. Count: 118, Neg. LLF: 132.12459975045877
Iteration: 11, Func. Count: 130, Neg. LLF: 131.69967505622938
Iteration: 12, Func. Count: 141, Neg. LLF: 131.64862065849638
Iteration: 13, Func. Count: 152, Neg. LLF: 131.64578128751842
Iteration: 14, Func. Count: 163, Neg. LLF: 131.64539764779212
Iteration: 15, Func. Count: 174, Neg. LLF: 131.64512219725032
Iteration: 16, Func. Count: 185, Neg. LLF: 131.64457036822938
Iteration: 17, Func. Count: 196, Neg. LLF: 131.64301671696865
Iteration: 18, Func. Count: 207, Neg. LLF: 131.62809004330413
Iteration: 19, Func. Count: 218, Neg. LLF: 131.61249520222182
Iteration: 20, Func. Count: 229, Neg. LLF: 131.57226195137608
Iteration: 21, Func. Count: 240, Neg. LLF: 131.56390229636375
Iteration: 22, Func. Count: 251, Neg. LLF: 131.5550072944151
Iteration: 23, Func. Count: 262, Neg. LLF: 131.5544222182245
Iteration: 24, Func. Count: 273, Neg. LLF: 131.55434324916425
Iteration: 25, Func. Count: 284, Neg. LLF: 131.5543093551722
Iteration: 26, Func. Count: 295, Neg. LLF: 131.55430672552637
Iteration: 27, Func. Count: 306, Neg. LLF: 131.55438095017533
Optimization terminated successfully (Exit mode 0)
Current function value: 131.55430671158877
Iterations: 28
Function evaluations: 308
Gradient evaluations: 27
Iteration: 1, Func. Count: 13, Neg. LLF: 480.11318135654074
Iteration: 2, Func. Count: 27, Neg. LLF: 149.7359729051317
Iteration: 3, Func. Count: 40, Neg. LLF: 144.51134548292612
Iteration: 4, Func. Count: 53, Neg. LLF: 140.6835867653251
Iteration: 5, Func. Count: 66, Neg. LLF: 144.9219140875641
Iteration: 6, Func. Count: 79, Neg. LLF: 141.75255846593808
Iteration: 7, Func. Count: 92, Neg. LLF: 135.41639101790207
Iteration: 8, Func. Count: 105, Neg. LLF: 134.26139902519475
Iteration: 9, Func. Count: 118, Neg. LLF: 132.93529975773023
Iteration: 10, Func. Count: 130, Neg. LLF: 132.97583911859311
Iteration: 11, Func. Count: 143, Neg. LLF: 145.28699997266918
Iteration: 12, Func. Count: 157, Neg. LLF: 132.52073044011016
Iteration: 13, Func. Count: 169, Neg. LLF: 132.5012716996758
Iteration: 14, Func. Count: 181, Neg. LLF: 132.49145715437643
Iteration: 15, Func. Count: 193, Neg. LLF: 132.469721967092
Iteration: 16, Func. Count: 205, Neg. LLF: 132.45127793599661
Iteration: 17, Func. Count: 217, Neg. LLF: 132.41608046027574
Iteration: 18, Func. Count: 229, Neg. LLF: 132.36047046574834
Iteration: 19, Func. Count: 241, Neg. LLF: 131.9411952925161
Iteration: 20, Func. Count: 253, Neg. LLF: 131.74907926478647
Iteration: 21, Func. Count: 265, Neg. LLF: 131.70827849912
Iteration: 22, Func. Count: 277, Neg. LLF: 131.63935965705542
Iteration: 23, Func. Count: 289, Neg. LLF: 131.6305162878446
Iteration: 24, Func. Count: 301, Neg. LLF: 131.6231674142274
Iteration: 25, Func. Count: 313, Neg. LLF: 131.6104088890557
Iteration: 26, Func. Count: 325, Neg. LLF: 131.56228415280276
Iteration: 27, Func. Count: 337, Neg. LLF: 131.55897627243039
Iteration: 28, Func. Count: 349, Neg. LLF: 131.55446294022187
Iteration: 29, Func. Count: 361, Neg. LLF: 131.55437296566305
Iteration: 30, Func. Count: 373, Neg. LLF: 131.5543071969361
Iteration: 31, Func. Count: 384, Neg. LLF: 131.55430723269671
Optimization terminated successfully (Exit mode 0)
Current function value: 131.5543071969361
Iterations: 31
Function evaluations: 384
Gradient evaluations: 31
Iteration: 1, Func. Count: 10, Neg. LLF: 138.07057249784552
Iteration: 2, Func. Count: 20, Neg. LLF: 139.7887723794492
Iteration: 3, Func. Count: 30, Neg. LLF: 133.60887939631715
Iteration: 4, Func. Count: 39, Neg. LLF: 135.74520003253872
Iteration: 5, Func. Count: 49, Neg. LLF: 133.7908360438282
Iteration: 6, Func. Count: 59, Neg. LLF: 132.95101885092126
Iteration: 7, Func. Count: 68, Neg. LLF: 132.87555798221635
Iteration: 8, Func. Count: 77, Neg. LLF: 132.8679186858599
Iteration: 9, Func. Count: 86, Neg. LLF: 132.86735643056895
Iteration: 10, Func. Count: 95, Neg. LLF: 132.86725563827505
Iteration: 11, Func. Count: 104, Neg. LLF: 132.86725418192813
Iteration: 12, Func. Count: 112, Neg. LLF: 132.86725453124023
Optimization terminated successfully (Exit mode 0)
Current function value: 132.86725418192813
Iterations: 12
Function evaluations: 112
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 19602330.543964308
Iteration: 2, Func. Count: 23, Neg. LLF: 158.45561441853158
Iteration: 3, Func. Count: 34, Neg. LLF: 151.68659803612124
Iteration: 4, Func. Count: 45, Neg. LLF: 134.23061085687414
Iteration: 5, Func. Count: 55, Neg. LLF: 134.14318965916237
Iteration: 6, Func. Count: 65, Neg. LLF: 133.82693360507233
Iteration: 7, Func. Count: 75, Neg. LLF: 133.63472834862856
Iteration: 8, Func. Count: 85, Neg. LLF: 135.87976551998077
Iteration: 9, Func. Count: 96, Neg. LLF: 133.47172410380273
Iteration: 10, Func. Count: 106, Neg. LLF: 133.42852121430676
Iteration: 11, Func. Count: 116, Neg. LLF: 133.4191281431475
Iteration: 12, Func. Count: 126, Neg. LLF: 133.41894270187257
Iteration: 13, Func. Count: 137, Neg. LLF: 133.4181265137965
Iteration: 14, Func. Count: 147, Neg. LLF: 133.41812504818955
Iteration: 15, Func. Count: 157, Neg. LLF: 133.41812454044634
Optimization terminated successfully (Exit mode 0)
Current function value: 133.41812454044634
Iterations: 15
Function evaluations: 157
Gradient evaluations: 15
Iteration: 1, Func. Count: 12, Neg. LLF: 9247161.357923744
Iteration: 2, Func. Count: 24, Neg. LLF: 133.67561240334828
Iteration: 3, Func. Count: 35, Neg. LLF: 138.35811807347935
Iteration: 4, Func. Count: 47, Neg. LLF: 131.60970240370438
Iteration: 5, Func. Count: 58, Neg. LLF: 131.77359378952744
Iteration: 6, Func. Count: 70, Neg. LLF: 131.5663985327697
Iteration: 7, Func. Count: 81, Neg. LLF: 131.55884987194463
Iteration: 8, Func. Count: 92, Neg. LLF: 131.5551924060943
Iteration: 9, Func. Count: 103, Neg. LLF: 131.55433373767127
Iteration: 10, Func. Count: 114, Neg. LLF: 131.55430708796217
Iteration: 11, Func. Count: 124, Neg. LLF: 131.554307088019
Optimization terminated successfully (Exit mode 0)
Current function value: 131.55430708796217
Iterations: 11
Function evaluations: 124
Gradient evaluations: 11
Iteration: 1, Func. Count: 13, Neg. LLF: 19544967.471107032
Iteration: 2, Func. Count: 27, Neg. LLF: 141.9451249265508
Iteration: 3, Func. Count: 40, Neg. LLF: 177.69653330397298
Iteration: 4, Func. Count: 53, Neg. LLF: 149.31648212143386
Iteration: 5, Func. Count: 66, Neg. LLF: 133.9464352166416
Iteration: 6, Func. Count: 78, Neg. LLF: 137.38125814766852
Iteration: 7, Func. Count: 91, Neg. LLF: 134.15003572391387
Iteration: 8, Func. Count: 104, Neg. LLF: 132.23901766042312
Iteration: 9, Func. Count: 116, Neg. LLF: 131.84380634072093
Iteration: 10, Func. Count: 128, Neg. LLF: 132.15143334069282
Iteration: 11, Func. Count: 141, Neg. LLF: 131.6961932352537
Iteration: 12, Func. Count: 153, Neg. LLF: 131.6490423556554
Iteration: 13, Func. Count: 165, Neg. LLF: 131.6459896716508
Iteration: 14, Func. Count: 177, Neg. LLF: 131.64560973202157
Iteration: 15, Func. Count: 189, Neg. LLF: 131.6453147091301
Iteration: 16, Func. Count: 201, Neg. LLF: 131.644661412205
Iteration: 17, Func. Count: 213, Neg. LLF: 131.6430483164402
Iteration: 18, Func. Count: 225, Neg. LLF: 131.63554361269397
Iteration: 19, Func. Count: 237, Neg. LLF: 131.56656605831566
Iteration: 20, Func. Count: 249, Neg. LLF: 131.5570592167174
Iteration: 21, Func. Count: 261, Neg. LLF: 131.55556957939808
Iteration: 22, Func. Count: 273, Neg. LLF: 131.55433133043337
Iteration: 23, Func. Count: 285, Neg. LLF: 131.55431211687
Iteration: 24, Func. Count: 297, Neg. LLF: 131.55430784642178
Iteration: 25, Func. Count: 309, Neg. LLF: 131.55430666493413
Iteration: 26, Func. Count: 320, Neg. LLF: 131.55430671942594
Optimization terminated successfully (Exit mode 0)
Current function value: 131.55430666493413
Iterations: 26
Function evaluations: 320
Gradient evaluations: 26
Iteration: 1, Func. Count: 14, Neg. LLF: 480.9777302334674
Iteration: 2, Func. Count: 29, Neg. LLF: 149.45899226347208
Iteration: 3, Func. Count: 43, Neg. LLF: 144.0377506853526
Iteration: 4, Func. Count: 57, Neg. LLF: 140.36548790476002
Iteration: 5, Func. Count: 71, Neg. LLF: 143.0151446832524
Iteration: 6, Func. Count: 85, Neg. LLF: 136.74088133858285
Iteration: 7, Func. Count: 99, Neg. LLF: 133.85584113820707
Iteration: 8, Func. Count: 113, Neg. LLF: 138.47911141348737
Iteration: 9, Func. Count: 127, Neg. LLF: 132.26014770410524
Iteration: 10, Func. Count: 140, Neg. LLF: 132.41896698540515
Iteration: 11, Func. Count: 154, Neg. LLF: 132.07703588942698
Iteration: 12, Func. Count: 168, Neg. LLF: 131.83109165646295
Iteration: 13, Func. Count: 181, Neg. LLF: 132.68547290408264
Iteration: 14, Func. Count: 195, Neg. LLF: 131.6556412839686
Iteration: 15, Func. Count: 208, Neg. LLF: 131.65070275739743
Iteration: 16, Func. Count: 221, Neg. LLF: 131.6484547032952
Iteration: 17, Func. Count: 234, Neg. LLF: 131.64428555873835
Iteration: 18, Func. Count: 247, Neg. LLF: 131.64147873134294
Iteration: 19, Func. Count: 260, Neg. LLF: 131.60492650810508
Iteration: 20, Func. Count: 273, Neg. LLF: 131.56229766313885
Iteration: 21, Func. Count: 286, Neg. LLF: 131.55803186682488
Iteration: 22, Func. Count: 299, Neg. LLF: 131.55626450262946
Iteration: 23, Func. Count: 312, Neg. LLF: 131.5545176205185
Iteration: 24, Func. Count: 325, Neg. LLF: 131.55444381860676
Iteration: 25, Func. Count: 338, Neg. LLF: 131.5543391333881
Iteration: 26, Func. Count: 351, Neg. LLF: 131.5543071035906
Iteration: 27, Func. Count: 364, Neg. LLF: 131.55432096272185
Optimization terminated successfully (Exit mode 0)
Current function value: 131.5543070963977
Iterations: 28
Function evaluations: 366
Gradient evaluations: 27
Iteration: 1, Func. Count: 7, Neg. LLF: 136.6810703574088
Iteration: 2, Func. Count: 14, Neg. LLF: 135.53833429455193
Iteration: 3, Func. Count: 20, Neg. LLF: 135.46931667351035
Iteration: 4, Func. Count: 26, Neg. LLF: 135.45623054904794
Iteration: 5, Func. Count: 32, Neg. LLF: 135.44780197008063
Iteration: 6, Func. Count: 38, Neg. LLF: 135.4474835425054
Iteration: 7, Func. Count: 44, Neg. LLF: 135.44746164912357
Iteration: 8, Func. Count: 49, Neg. LLF: 135.44746164909364
Optimization terminated successfully (Exit mode 0)
Current function value: 135.44746164912357
Iterations: 8
Function evaluations: 49
Gradient evaluations: 8
Iteration: 1, Func. Count: 8, Neg. LLF: 19663658.58701688
Iteration: 2, Func. Count: 17, Neg. LLF: 135.6405440583549
Iteration: 3, Func. Count: 24, Neg. LLF: 135.13709885146224
Iteration: 4, Func. Count: 31, Neg. LLF: 146.6213009931928
Iteration: 5, Func. Count: 42, Neg. LLF: 134.12977557502043
Iteration: 6, Func. Count: 49, Neg. LLF: 134.23783349555032
Iteration: 7, Func. Count: 57, Neg. LLF: 134.0358064971669
Iteration: 8, Func. Count: 64, Neg. LLF: 134.0288830381149
Iteration: 9, Func. Count: 71, Neg. LLF: 134.02702217126136
Iteration: 10, Func. Count: 78, Neg. LLF: 134.02638355491996
Iteration: 11, Func. Count: 85, Neg. LLF: 134.02637687805364
Iteration: 12, Func. Count: 91, Neg. LLF: 134.02637687870407
Optimization terminated successfully (Exit mode 0)
Current function value: 134.02637687805364
Iterations: 12
Function evaluations: 91
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 19684701.31142689
Iteration: 2, Func. Count: 19, Neg. LLF: 155.00405358845714
Iteration: 3, Func. Count: 28, Neg. LLF: 144.08543213396973
Iteration: 4, Func. Count: 37, Neg. LLF: 139.1284345894114
Iteration: 5, Func. Count: 46, Neg. LLF: 136.5518181117764
Iteration: 6, Func. Count: 55, Neg. LLF: 134.7234008688785
Iteration: 7, Func. Count: 63, Neg. LLF: 134.81999432913892
Iteration: 8, Func. Count: 72, Neg. LLF: 138.83002081901884
Iteration: 9, Func. Count: 82, Neg. LLF: 134.10480969632343
Iteration: 10, Func. Count: 90, Neg. LLF: 134.0590139086735
Iteration: 11, Func. Count: 98, Neg. LLF: 134.04249881080204
Iteration: 12, Func. Count: 106, Neg. LLF: 134.03195619957464
Iteration: 13, Func. Count: 114, Neg. LLF: 134.03000553334758
Iteration: 14, Func. Count: 122, Neg. LLF: 134.0297403916656
Iteration: 15, Func. Count: 130, Neg. LLF: 134.0293253022033
Iteration: 16, Func. Count: 138, Neg. LLF: 134.02882554338794
Iteration: 17, Func. Count: 146, Neg. LLF: 134.02861122715558
Iteration: 18, Func. Count: 154, Neg. LLF: 134.02858279723947
Iteration: 19, Func. Count: 162, Neg. LLF: 134.02858066360784
Iteration: 20, Func. Count: 169, Neg. LLF: 134.02858066361435
Optimization terminated successfully (Exit mode 0)
Current function value: 134.02858066360784
Iterations: 20
Function evaluations: 169
Gradient evaluations: 20
Iteration: 1, Func. Count: 10, Neg. LLF: 904.855186861539
Iteration: 2, Func. Count: 21, Neg. LLF: 148.97551997585103
Iteration: 3, Func. Count: 31, Neg. LLF: 141.97705946392543
Iteration: 4, Func. Count: 41, Neg. LLF: 137.03191358127813
Iteration: 5, Func. Count: 51, Neg. LLF: 135.93665542433567
Iteration: 6, Func. Count: 61, Neg. LLF: 134.3896745833262
Iteration: 7, Func. Count: 70, Neg. LLF: 139.2878484356996
Iteration: 8, Func. Count: 81, Neg. LLF: 134.06934379015726
Iteration: 9, Func. Count: 90, Neg. LLF: 135.76682213365692
Iteration: 10, Func. Count: 100, Neg. LLF: 133.96144359969816
Iteration: 11, Func. Count: 109, Neg. LLF: 133.95431974610383
Iteration: 12, Func. Count: 118, Neg. LLF: 133.95182332523157
Iteration: 13, Func. Count: 127, Neg. LLF: 133.95107353087408
Iteration: 14, Func. Count: 136, Neg. LLF: 1430.68968845807
Iteration: 15, Func. Count: 148, Neg. LLF: 133.95061291781485
Iteration: 16, Func. Count: 157, Neg. LLF: 133.9506726327049
Iteration: 17, Func. Count: 166, Neg. LLF: 133.95060887841368
Optimization terminated successfully (Exit mode 0)
Current function value: 133.95060887793238
Iterations: 18
Function evaluations: 166
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 1695.7341745811123
Iteration: 2, Func. Count: 23, Neg. LLF: 136.53411617187913
Iteration: 3, Func. Count: 34, Neg. LLF: 136.84577805987465
Iteration: 4, Func. Count: 45, Neg. LLF: 137.47417296039714
Iteration: 5, Func. Count: 56, Neg. LLF: 134.9343303434292
Iteration: 6, Func. Count: 67, Neg. LLF: 138.18883272403568
Iteration: 7, Func. Count: 79, Neg. LLF: 133.66702673449063
Iteration: 8, Func. Count: 89, Neg. LLF: 133.49825305450076
Iteration: 9, Func. Count: 99, Neg. LLF: 133.4099751354898
Iteration: 10, Func. Count: 109, Neg. LLF: 133.39921489704074
Iteration: 11, Func. Count: 119, Neg. LLF: 133.3961362663028
Iteration: 12, Func. Count: 129, Neg. LLF: 133.3944772576778
Iteration: 13, Func. Count: 139, Neg. LLF: 133.3943478278298
Iteration: 14, Func. Count: 149, Neg. LLF: 133.3943144518816
Iteration: 15, Func. Count: 158, Neg. LLF: 133.39431445190598
Optimization terminated successfully (Exit mode 0)
Current function value: 133.3943144518816
Iterations: 15
Function evaluations: 158
Gradient evaluations: 15
Iteration: 1, Func. Count: 8, Neg. LLF: 135.513000165129
Iteration: 2, Func. Count: 15, Neg. LLF: 141.732123123552
Iteration: 3, Func. Count: 23, Neg. LLF: 134.46309727514515
Iteration: 4, Func. Count: 30, Neg. LLF: 139.18071461159602
Iteration: 5, Func. Count: 38, Neg. LLF: 134.18913026616033
Iteration: 6, Func. Count: 46, Neg. LLF: 133.93897098504385
Iteration: 7, Func. Count: 53, Neg. LLF: 133.88246324943955
Iteration: 8, Func. Count: 60, Neg. LLF: 133.86593108189717
Iteration: 9, Func. Count: 67, Neg. LLF: 133.86319784472522
Iteration: 10, Func. Count: 74, Neg. LLF: 133.863142373886
Iteration: 11, Func. Count: 81, Neg. LLF: 133.86313796054884
Iteration: 12, Func. Count: 87, Neg. LLF: 133.86313780941668
Optimization terminated successfully (Exit mode 0)
Current function value: 133.86313796054884
Iterations: 12
Function evaluations: 87
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 19826940.20671142
Iteration: 2, Func. Count: 19, Neg. LLF: 139.15767263282245
Iteration: 3, Func. Count: 29, Neg. LLF: 152.00385582089208
Iteration: 4, Func. Count: 38, Neg. LLF: 134.12292465107342
Iteration: 5, Func. Count: 46, Neg. LLF: 133.7193949605816
Iteration: 6, Func. Count: 54, Neg. LLF: 133.4680384315679
Iteration: 7, Func. Count: 62, Neg. LLF: 133.43002176915888
Iteration: 8, Func. Count: 70, Neg. LLF: 133.4260201353894
Iteration: 9, Func. Count: 78, Neg. LLF: 133.419217633174
Iteration: 10, Func. Count: 86, Neg. LLF: 133.41822065974844
Iteration: 11, Func. Count: 94, Neg. LLF: 133.41812546730657
Iteration: 12, Func. Count: 102, Neg. LLF: 133.41812418438212
Iteration: 13, Func. Count: 109, Neg. LLF: 133.41812418428356
Optimization terminated successfully (Exit mode 0)
Current function value: 133.41812418438212
Iterations: 13
Function evaluations: 109
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 9444038.001487086
Iteration: 2, Func. Count: 21, Neg. LLF: 137.91552103025933
Iteration: 3, Func. Count: 31, Neg. LLF: 156.7282728730302
Iteration: 4, Func. Count: 41, Neg. LLF: 132.42121725058155
Iteration: 5, Func. Count: 50, Neg. LLF: 140.84616749068408
Iteration: 6, Func. Count: 61, Neg. LLF: 133.88713345397073
Iteration: 7, Func. Count: 71, Neg. LLF: 131.67636098986048
Iteration: 8, Func. Count: 80, Neg. LLF: 131.66708035000462
Iteration: 9, Func. Count: 89, Neg. LLF: 131.64879797382326
Iteration: 10, Func. Count: 98, Neg. LLF: 131.64337443089136
Iteration: 11, Func. Count: 107, Neg. LLF: 131.62458917137724
Iteration: 12, Func. Count: 116, Neg. LLF: 131.58381316962303
Iteration: 13, Func. Count: 125, Neg. LLF: 131.55644553161866
Iteration: 14, Func. Count: 134, Neg. LLF: 131.55459031165648
Iteration: 15, Func. Count: 143, Neg. LLF: 131.55430810560208
Iteration: 16, Func. Count: 152, Neg. LLF: 131.5543070228473
Iteration: 17, Func. Count: 160, Neg. LLF: 131.55430702269766
Optimization terminated successfully (Exit mode 0)
Current function value: 131.5543070228473
Iterations: 17
Function evaluations: 160
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 451.63760902070277
Iteration: 2, Func. Count: 22, Neg. LLF: 135.50414743002727
Iteration: 3, Func. Count: 32, Neg. LLF: 131.9380549763678
Iteration: 4, Func. Count: 42, Neg. LLF: 174.49155741843256
Iteration: 5, Func. Count: 54, Neg. LLF: 131.56759449303777
Iteration: 6, Func. Count: 64, Neg. LLF: 131.5544023661401
Iteration: 7, Func. Count: 74, Neg. LLF: 131.5543091951975
Iteration: 8, Func. Count: 84, Neg. LLF: 131.55430699863518
Iteration: 9, Func. Count: 93, Neg. LLF: 131.55430705325844
Optimization terminated successfully (Exit mode 0)
Current function value: 131.55430699863518
Iterations: 9
Function evaluations: 93
Gradient evaluations: 9
Iteration: 1, Func. Count: 12, Neg. LLF: 1316.9150164800037
Iteration: 2, Func. Count: 25, Neg. LLF: 150.13326228990388
Iteration: 3, Func. Count: 37, Neg. LLF: 149.77349380593753
Iteration: 4, Func. Count: 49, Neg. LLF: 144.61296047147945
Iteration: 5, Func. Count: 61, Neg. LLF: 140.33102073125863
Iteration: 6, Func. Count: 73, Neg. LLF: 136.44828751335703
Iteration: 7, Func. Count: 85, Neg. LLF: 132.36138303191044
Iteration: 8, Func. Count: 96, Neg. LLF: 135.54516439395644
Iteration: 9, Func. Count: 109, Neg. LLF: 181.96079645862903
Iteration: 10, Func. Count: 122, Neg. LLF: 131.70864596645345
Iteration: 11, Func. Count: 134, Neg. LLF: 131.66609824281986
Iteration: 12, Func. Count: 145, Neg. LLF: 131.6573954564117
Iteration: 13, Func. Count: 156, Neg. LLF: 131.65242552003943
Iteration: 14, Func. Count: 167, Neg. LLF: 131.6514748611682
Iteration: 15, Func. Count: 178, Neg. LLF: 131.65103973503253
Iteration: 16, Func. Count: 189, Neg. LLF: 131.6493872621179
Iteration: 17, Func. Count: 200, Neg. LLF: 131.64747096870224
Iteration: 18, Func. Count: 211, Neg. LLF: 131.64453736737116
Iteration: 19, Func. Count: 222, Neg. LLF: 131.6385415876402
Iteration: 20, Func. Count: 233, Neg. LLF: 131.59501967023039
Iteration: 21, Func. Count: 244, Neg. LLF: 131.55795827430478
Iteration: 22, Func. Count: 255, Neg. LLF: 131.55688008867114
Iteration: 23, Func. Count: 266, Neg. LLF: 131.55581427884786
Iteration: 24, Func. Count: 277, Neg. LLF: 131.55499872757932
Iteration: 25, Func. Count: 288, Neg. LLF: 131.5598647734642
Iteration: 26, Func. Count: 300, Neg. LLF: 131.61842772652918
Iteration: 27, Func. Count: 313, Neg. LLF: 131.55430724851968
Iteration: 28, Func. Count: 324, Neg. LLF: 131.55430668846458
Optimization terminated successfully (Exit mode 0)
Current function value: 131.55430668846458
Iterations: 29
Function evaluations: 324
Gradient evaluations: 28
Iteration: 1, Func. Count: 9, Neg. LLF: 135.0520319386564
Iteration: 2, Func. Count: 17, Neg. LLF: 134.77401794013284
Iteration: 3, Func. Count: 25, Neg. LLF: 135.12602165080176
Iteration: 4, Func. Count: 34, Neg. LLF: 137.4334009170504
Iteration: 5, Func. Count: 43, Neg. LLF: 144.8585530712132
Iteration: 6, Func. Count: 53, Neg. LLF: 134.39134627430371
Iteration: 7, Func. Count: 62, Neg. LLF: 133.92622430056775
Iteration: 8, Func. Count: 70, Neg. LLF: 133.89529522653802
Iteration: 9, Func. Count: 78, Neg. LLF: 133.8611584177956
Iteration: 10, Func. Count: 86, Neg. LLF: 133.85750016993157
Iteration: 11, Func. Count: 94, Neg. LLF: 133.85732377077153
Iteration: 12, Func. Count: 102, Neg. LLF: 133.85731860399633
Iteration: 13, Func. Count: 109, Neg. LLF: 133.8573186040862
Optimization terminated successfully (Exit mode 0)
Current function value: 133.85731860399633
Iterations: 13
Function evaluations: 109
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 19814031.22917923
Iteration: 2, Func. Count: 21, Neg. LLF: 159.1466195400191
Iteration: 3, Func. Count: 32, Neg. LLF: 148.04455176136025
Iteration: 4, Func. Count: 42, Neg. LLF: 134.87647466818746
Iteration: 5, Func. Count: 51, Neg. LLF: 133.98565938326166
Iteration: 6, Func. Count: 60, Neg. LLF: 133.78666932875524
Iteration: 7, Func. Count: 69, Neg. LLF: 134.17875912082536
Iteration: 8, Func. Count: 79, Neg. LLF: 133.58219598831755
Iteration: 9, Func. Count: 88, Neg. LLF: 133.4482639983752
Iteration: 10, Func. Count: 97, Neg. LLF: 133.42108877620146
Iteration: 11, Func. Count: 106, Neg. LLF: 133.41822531515098
Iteration: 12, Func. Count: 115, Neg. LLF: 133.41813099111974
Iteration: 13, Func. Count: 124, Neg. LLF: 133.41812421842377
Iteration: 14, Func. Count: 132, Neg. LLF: 133.41812421863258
Optimization terminated successfully (Exit mode 0)
Current function value: 133.41812421842377
Iterations: 14
Function evaluations: 132
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 9428127.076795068
Iteration: 2, Func. Count: 23, Neg. LLF: 137.77374901071042
Iteration: 3, Func. Count: 34, Neg. LLF: 155.7930501003226
Iteration: 4, Func. Count: 45, Neg. LLF: 132.27430245164294
Iteration: 5, Func. Count: 55, Neg. LLF: 136.7095855856484
Iteration: 6, Func. Count: 67, Neg. LLF: 133.86402243727954
Iteration: 7, Func. Count: 78, Neg. LLF: 131.67613653737916
Iteration: 8, Func. Count: 88, Neg. LLF: 131.6654006908696
Iteration: 9, Func. Count: 98, Neg. LLF: 131.64854119120128
Iteration: 10, Func. Count: 108, Neg. LLF: 131.64273891520716
Iteration: 11, Func. Count: 118, Neg. LLF: 131.6285480601398
Iteration: 12, Func. Count: 128, Neg. LLF: 131.58528255837513
Iteration: 13, Func. Count: 138, Neg. LLF: 131.55799679836574
Iteration: 14, Func. Count: 148, Neg. LLF: 131.55475378460474
Iteration: 15, Func. Count: 158, Neg. LLF: 131.5543153659099
Iteration: 16, Func. Count: 168, Neg. LLF: 131.55430862877088
Iteration: 17, Func. Count: 178, Neg. LLF: 131.554306685719
Iteration: 18, Func. Count: 187, Neg. LLF: 131.55430668568414
Optimization terminated successfully (Exit mode 0)
Current function value: 131.554306685719
Iterations: 18
Function evaluations: 187
Gradient evaluations: 18
Iteration: 1, Func. Count: 12, Neg. LLF: 454.5767972449719
Iteration: 2, Func. Count: 24, Neg. LLF: 135.54761219291683
Iteration: 3, Func. Count: 35, Neg. LLF: 131.97431453515676
Iteration: 4, Func. Count: 46, Neg. LLF: 180.64095032227723
Iteration: 5, Func. Count: 59, Neg. LLF: 131.57316389430588
Iteration: 6, Func. Count: 70, Neg. LLF: 131.55546789543374
Iteration: 7, Func. Count: 81, Neg. LLF: 131.5543437253315
Iteration: 8, Func. Count: 92, Neg. LLF: 131.55431477092105
Iteration: 9, Func. Count: 103, Neg. LLF: 131.55430743815032
Iteration: 10, Func. Count: 114, Neg. LLF: 131.55430666706712
Optimization terminated successfully (Exit mode 0)
Current function value: 131.55430666706712
Iterations: 10
Function evaluations: 114
Gradient evaluations: 10
Iteration: 1, Func. Count: 13, Neg. LLF: 1330.649783120198
Iteration: 2, Func. Count: 27, Neg. LLF: 150.09479160612344
Iteration: 3, Func. Count: 40, Neg. LLF: 149.9792157501948
Iteration: 4, Func. Count: 53, Neg. LLF: 144.8948385093813
Iteration: 5, Func. Count: 66, Neg. LLF: 140.53024890175865
Iteration: 6, Func. Count: 79, Neg. LLF: 136.63102153427204
Iteration: 7, Func. Count: 92, Neg. LLF: 132.48520445097682
Iteration: 8, Func. Count: 104, Neg. LLF: 134.87708358672094
Iteration: 9, Func. Count: 117, Neg. LLF: 182.20798925449992
Iteration: 10, Func. Count: 130, Neg. LLF: 132.1809854374006
Iteration: 11, Func. Count: 143, Neg. LLF: 131.8451076018556
Iteration: 12, Func. Count: 156, Neg. LLF: 131.677894552345
Iteration: 13, Func. Count: 168, Neg. LLF: 131.67094142338016
Iteration: 14, Func. Count: 180, Neg. LLF: 131.66096677484262
Iteration: 15, Func. Count: 192, Neg. LLF: 131.6529482712846
Iteration: 16, Func. Count: 204, Neg. LLF: 131.6492173306866
Iteration: 17, Func. Count: 216, Neg. LLF: 131.64861711228156
Iteration: 18, Func. Count: 228, Neg. LLF: 131.64833574955873
Iteration: 19, Func. Count: 240, Neg. LLF: 131.6478291398518
Iteration: 20, Func. Count: 252, Neg. LLF: 131.6465807607895
Iteration: 21, Func. Count: 264, Neg. LLF: 131.64438749848694
Iteration: 22, Func. Count: 276, Neg. LLF: 131.63717326858236
Iteration: 23, Func. Count: 288, Neg. LLF: 131.59751862103914
Iteration: 24, Func. Count: 300, Neg. LLF: 131.57032886533517
Iteration: 25, Func. Count: 312, Neg. LLF: 131.56211931225073
Iteration: 26, Func. Count: 324, Neg. LLF: 131.55870001858753
Iteration: 27, Func. Count: 336, Neg. LLF: 131.55475654306505
Iteration: 28, Func. Count: 348, Neg. LLF: 131.55443466090674
Iteration: 29, Func. Count: 360, Neg. LLF: 131.55431132323932
Iteration: 30, Func. Count: 372, Neg. LLF: 131.55430986061907
Iteration: 31, Func. Count: 384, Neg. LLF: 131.56094698358075
Iteration: 32, Func. Count: 398, Neg. LLF: 131.55430679699847
Optimization terminated successfully (Exit mode 0)
Current function value: 131.55430679699847
Iterations: 33
Function evaluations: 398
Gradient evaluations: 32
Iteration: 1, Func. Count: 10, Neg. LLF: 131.74569005597476
Iteration: 2, Func. Count: 19, Neg. LLF: 147.8556356218525
Iteration: 3, Func. Count: 29, Neg. LLF: 130.34912220859377
Iteration: 4, Func. Count: 38, Neg. LLF: 2827811.86894082
Iteration: 5, Func. Count: 48, Neg. LLF: 130.753959017788
Iteration: 6, Func. Count: 58, Neg. LLF: 129.83253602707302
Iteration: 7, Func. Count: 67, Neg. LLF: 129.79419602108268
Iteration: 8, Func. Count: 76, Neg. LLF: 129.7639107059975
Iteration: 9, Func. Count: 85, Neg. LLF: 129.7284256111198
Iteration: 10, Func. Count: 94, Neg. LLF: 129.71965048484853
Iteration: 11, Func. Count: 103, Neg. LLF: 129.7189100227633
Iteration: 12, Func. Count: 112, Neg. LLF: 129.71886451629692
Iteration: 13, Func. Count: 121, Neg. LLF: 129.71886198340687
Iteration: 14, Func. Count: 129, Neg. LLF: 129.71886213938353
Optimization terminated successfully (Exit mode 0)
Current function value: 129.71886198340687
Iterations: 14
Function evaluations: 129
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 4243618.11663808
Iteration: 2, Func. Count: 23, Neg. LLF: 140.01694862085128
Iteration: 3, Func. Count: 35, Neg. LLF: 208.11626072797435
Iteration: 4, Func. Count: 46, Neg. LLF: 132.94863268303783
Iteration: 5, Func. Count: 56, Neg. LLF: 132.6258276226871
Iteration: 6, Func. Count: 66, Neg. LLF: 132.5763510148327
Iteration: 7, Func. Count: 76, Neg. LLF: 132.49626475537485
Iteration: 8, Func. Count: 86, Neg. LLF: 132.3911561997932
Iteration: 9, Func. Count: 96, Neg. LLF: 131.43929885071066
Iteration: 10, Func. Count: 106, Neg. LLF: 130.98674865141697
Iteration: 11, Func. Count: 116, Neg. LLF: 130.70136047468628
Iteration: 12, Func. Count: 127, Neg. LLF: 130.0849293590305
Iteration: 13, Func. Count: 137, Neg. LLF: 130.08297374579084
Iteration: 14, Func. Count: 148, Neg. LLF: 130.05348079478654
Iteration: 15, Func. Count: 159, Neg. LLF: 129.97514292622012
Iteration: 16, Func. Count: 169, Neg. LLF: 129.94029904111753
Iteration: 17, Func. Count: 179, Neg. LLF: 129.92598630730353
Iteration: 18, Func. Count: 189, Neg. LLF: 129.91087979861476
Iteration: 19, Func. Count: 199, Neg. LLF: 129.89930646306078
Iteration: 20, Func. Count: 209, Neg. LLF: 129.87995256134144
Iteration: 21, Func. Count: 219, Neg. LLF: 129.85978002380136
Iteration: 22, Func. Count: 229, Neg. LLF: 129.82751701222074
Iteration: 23, Func. Count: 239, Neg. LLF: 129.78407628139968
Iteration: 24, Func. Count: 249, Neg. LLF: 129.7432012086208
Iteration: 25, Func. Count: 259, Neg. LLF: 129.72205056513738
Iteration: 26, Func. Count: 269, Neg. LLF: 129.7190361260379
Iteration: 27, Func. Count: 279, Neg. LLF: 129.7188634273717
Iteration: 28, Func. Count: 289, Neg. LLF: 129.7188627904448
Optimization terminated successfully (Exit mode 0)
Current function value: 129.7188627904448
Iterations: 28
Function evaluations: 289
Gradient evaluations: 28
Iteration: 1, Func. Count: 12, Neg. LLF: 1522089.5943749591
Iteration: 2, Func. Count: 24, Neg. LLF: 133.5026433678031
Iteration: 3, Func. Count: 35, Neg. LLF: 133.3258329222136
Iteration: 4, Func. Count: 47, Neg. LLF: 152.307037330353
Iteration: 5, Func. Count: 60, Neg. LLF: 135.19936123036675
Iteration: 6, Func. Count: 72, Neg. LLF: 130.39136904515271
Iteration: 7, Func. Count: 83, Neg. LLF: 129.84530629535678
Iteration: 8, Func. Count: 94, Neg. LLF: 130.00447485826302
Iteration: 9, Func. Count: 106, Neg. LLF: 129.75161589195815
Iteration: 10, Func. Count: 117, Neg. LLF: 129.73939242742796
Iteration: 11, Func. Count: 128, Neg. LLF: 129.72554932132687
Iteration: 12, Func. Count: 139, Neg. LLF: 129.72262650643154
Iteration: 13, Func. Count: 150, Neg. LLF: 129.719070179346
Iteration: 14, Func. Count: 161, Neg. LLF: 129.71890491979156
Iteration: 15, Func. Count: 172, Neg. LLF: 129.71886386847123
Iteration: 16, Func. Count: 183, Neg. LLF: 129.71886256185954
Iteration: 17, Func. Count: 194, Neg. LLF: 129.71886198876894
Optimization terminated successfully (Exit mode 0)
Current function value: 129.71886198876894
Iterations: 17
Function evaluations: 194
Gradient evaluations: 17
Iteration: 1, Func. Count: 13, Neg. LLF: 179.11130188226684
Iteration: 2, Func. Count: 26, Neg. LLF: 140.21616956411063
Iteration: 3, Func. Count: 39, Neg. LLF: 132.52959284075965
Iteration: 4, Func. Count: 51, Neg. LLF: 132.7518274634873
Iteration: 5, Func. Count: 64, Neg. LLF: 133.2631932186021
Iteration: 6, Func. Count: 77, Neg. LLF: 131.16852248185296
Iteration: 7, Func. Count: 89, Neg. LLF: 131.01043171874238
Iteration: 8, Func. Count: 102, Neg. LLF: 130.21356693452068
Iteration: 9, Func. Count: 114, Neg. LLF: 129.89760155370666
Iteration: 10, Func. Count: 126, Neg. LLF: 129.87854773387608
Iteration: 11, Func. Count: 139, Neg. LLF: 129.76234578725354
Iteration: 12, Func. Count: 151, Neg. LLF: 129.73920643881237
Iteration: 13, Func. Count: 163, Neg. LLF: 129.72844541977875
Iteration: 14, Func. Count: 175, Neg. LLF: 129.72226435133453
Iteration: 15, Func. Count: 187, Neg. LLF: 129.71918532106636
Iteration: 16, Func. Count: 199, Neg. LLF: 129.71890221108004
Iteration: 17, Func. Count: 211, Neg. LLF: 129.71886952569824
Iteration: 18, Func. Count: 223, Neg. LLF: 129.7188623258738
Iteration: 19, Func. Count: 234, Neg. LLF: 129.71886245590278
Optimization terminated successfully (Exit mode 0)
Current function value: 129.7188623258738
Iterations: 19
Function evaluations: 234
Gradient evaluations: 19
Iteration: 1, Func. Count: 14, Neg. LLF: 419.1981878775816
Iteration: 2, Func. Count: 28, Neg. LLF: 132.8410912670273
Iteration: 3, Func. Count: 41, Neg. LLF: 130.12659098546052
Iteration: 4, Func. Count: 54, Neg. LLF: 161.02560302219257
Iteration: 5, Func. Count: 70, Neg. LLF: 131.52108339532896
Iteration: 6, Func. Count: 85, Neg. LLF: 129.93646374892478
Iteration: 7, Func. Count: 99, Neg. LLF: 129.87807663669338
Iteration: 8, Func. Count: 113, Neg. LLF: 129.74013082990297
Iteration: 9, Func. Count: 126, Neg. LLF: 129.72891233544485
Iteration: 10, Func. Count: 139, Neg. LLF: 129.72087482937357
Iteration: 11, Func. Count: 152, Neg. LLF: 129.7193481479047
Iteration: 12, Func. Count: 165, Neg. LLF: 129.71887138229704
Iteration: 13, Func. Count: 178, Neg. LLF: 129.71886205081728
Iteration: 14, Func. Count: 190, Neg. LLF: 129.71886210567672
Optimization terminated successfully (Exit mode 0)
Current function value: 129.71886205081728
Iterations: 14
Function evaluations: 190
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 132.36881088921825
Iteration: 2, Func. Count: 21, Neg. LLF: 150.6192830858884
Iteration: 3, Func. Count: 32, Neg. LLF: 130.47932821902668
Iteration: 4, Func. Count: 42, Neg. LLF: 2789341.2967318636
Iteration: 5, Func. Count: 53, Neg. LLF: 135.68020851853154
Iteration: 6, Func. Count: 64, Neg. LLF: 129.9310598257384
Iteration: 7, Func. Count: 74, Neg. LLF: 130.19287664829022
Iteration: 8, Func. Count: 86, Neg. LLF: 129.9394699979133
Iteration: 9, Func. Count: 97, Neg. LLF: 129.7494384534272
Iteration: 10, Func. Count: 107, Neg. LLF: 129.71929161973293
Iteration: 11, Func. Count: 117, Neg. LLF: 129.71894799443453
Iteration: 12, Func. Count: 127, Neg. LLF: 129.71888772531292
Iteration: 13, Func. Count: 137, Neg. LLF: 129.7188676670289
Iteration: 14, Func. Count: 147, Neg. LLF: 129.71886204615407
Iteration: 15, Func. Count: 156, Neg. LLF: 129.71886235624996
Optimization terminated successfully (Exit mode 0)
Current function value: 129.71886204615407
Iterations: 15
Function evaluations: 156
Gradient evaluations: 15
Iteration: 1, Func. Count: 12, Neg. LLF: 4243685.063516418
Iteration: 2, Func. Count: 25, Neg. LLF: 139.7416446886724
Iteration: 3, Func. Count: 38, Neg. LLF: 203.67116112230502
Iteration: 4, Func. Count: 50, Neg. LLF: 132.94287329935005
Iteration: 5, Func. Count: 61, Neg. LLF: 132.60910650059878
Iteration: 6, Func. Count: 72, Neg. LLF: 132.5633065889412
Iteration: 7, Func. Count: 83, Neg. LLF: 132.49436772280083
Iteration: 8, Func. Count: 94, Neg. LLF: 132.35718152517978
Iteration: 9, Func. Count: 105, Neg. LLF: 131.35687729803806
Iteration: 10, Func. Count: 116, Neg. LLF: 130.94227956282197
Iteration: 11, Func. Count: 127, Neg. LLF: 130.51921823800808
Iteration: 12, Func. Count: 138, Neg. LLF: 130.09685838889746
Iteration: 13, Func. Count: 149, Neg. LLF: 130.05066914193944
Iteration: 14, Func. Count: 160, Neg. LLF: 130.03910680199238
Iteration: 15, Func. Count: 172, Neg. LLF: 129.97116274331222
Iteration: 16, Func. Count: 183, Neg. LLF: 129.92245617383116
Iteration: 17, Func. Count: 194, Neg. LLF: 129.91276311795949
Iteration: 18, Func. Count: 205, Neg. LLF: 129.89656116553002
Iteration: 19, Func. Count: 216, Neg. LLF: 129.8852797538369
Iteration: 20, Func. Count: 227, Neg. LLF: 129.86098456202788
Iteration: 21, Func. Count: 238, Neg. LLF: 129.8435858623388
Iteration: 22, Func. Count: 249, Neg. LLF: 129.81967275567158
Iteration: 23, Func. Count: 260, Neg. LLF: 129.78854505121075
Iteration: 24, Func. Count: 271, Neg. LLF: 129.74999747338592
Iteration: 25, Func. Count: 282, Neg. LLF: 129.72513001723107
Iteration: 26, Func. Count: 293, Neg. LLF: 129.71997230817837
Iteration: 27, Func. Count: 304, Neg. LLF: 129.71886553834403
Iteration: 28, Func. Count: 315, Neg. LLF: 129.71886185162538
Iteration: 29, Func. Count: 325, Neg. LLF: 129.71886202553932
Optimization terminated successfully (Exit mode 0)
Current function value: 129.71886185162538
Iterations: 29
Function evaluations: 325
Gradient evaluations: 29
Iteration: 1, Func. Count: 13, Neg. LLF: 1524802.935500689
Iteration: 2, Func. Count: 26, Neg. LLF: 133.49899101936145
Iteration: 3, Func. Count: 38, Neg. LLF: 133.38348636089825
Iteration: 4, Func. Count: 51, Neg. LLF: 151.94715084835917
Iteration: 5, Func. Count: 65, Neg. LLF: 135.2311375434335
Iteration: 6, Func. Count: 78, Neg. LLF: 130.378609896269
Iteration: 7, Func. Count: 90, Neg. LLF: 129.83680059506804
Iteration: 8, Func. Count: 102, Neg. LLF: 129.97259086419382
Iteration: 9, Func. Count: 115, Neg. LLF: 129.74780253428642
Iteration: 10, Func. Count: 127, Neg. LLF: 129.7369938923485
Iteration: 11, Func. Count: 139, Neg. LLF: 129.72504322575975
Iteration: 12, Func. Count: 151, Neg. LLF: 129.72210959093493
Iteration: 13, Func. Count: 163, Neg. LLF: 129.71905064948373
Iteration: 14, Func. Count: 175, Neg. LLF: 129.71889975645894
Iteration: 15, Func. Count: 187, Neg. LLF: 129.71886309947087
Iteration: 16, Func. Count: 198, Neg. LLF: 129.71886314751438
Optimization terminated successfully (Exit mode 0)
Current function value: 129.71886309947087
Iterations: 16
Function evaluations: 198
Gradient evaluations: 16
Iteration: 1, Func. Count: 14, Neg. LLF: 179.43234192588884
Iteration: 2, Func. Count: 28, Neg. LLF: 140.09638751573397
Iteration: 3, Func. Count: 42, Neg. LLF: 132.5323326060164
Iteration: 4, Func. Count: 55, Neg. LLF: 132.78760280852904
Iteration: 5, Func. Count: 69, Neg. LLF: 133.2747508347613
Iteration: 6, Func. Count: 83, Neg. LLF: 131.16641984977164
Iteration: 7, Func. Count: 96, Neg. LLF: 131.03650337729542
Iteration: 8, Func. Count: 110, Neg. LLF: 130.21629146584812
Iteration: 9, Func. Count: 123, Neg. LLF: 129.9484060607052
Iteration: 10, Func. Count: 136, Neg. LLF: 129.87680936207403
Iteration: 11, Func. Count: 149, Neg. LLF: 129.81407790848428
Iteration: 12, Func. Count: 162, Neg. LLF: 129.75800933492206
Iteration: 13, Func. Count: 175, Neg. LLF: 129.73325282376751
Iteration: 14, Func. Count: 188, Neg. LLF: 129.72412593764054
Iteration: 15, Func. Count: 201, Neg. LLF: 129.7205408460303
Iteration: 16, Func. Count: 214, Neg. LLF: 129.71917140590563
Iteration: 17, Func. Count: 227, Neg. LLF: 129.7188971597626
Iteration: 18, Func. Count: 240, Neg. LLF: 129.7188653182088
Iteration: 19, Func. Count: 253, Neg. LLF: 129.7188620453153
Iteration: 20, Func. Count: 265, Neg. LLF: 129.71886217531676
Optimization terminated successfully (Exit mode 0)
Current function value: 129.7188620453153
Iterations: 20
Function evaluations: 265
Gradient evaluations: 20
Iteration: 1, Func. Count: 15, Neg. LLF: 420.16870687874615
Iteration: 2, Func. Count: 30, Neg. LLF: 132.87570688853134
Iteration: 3, Func. Count: 44, Neg. LLF: 130.21088113122687
Iteration: 4, Func. Count: 58, Neg. LLF: 160.09583357609125
Iteration: 5, Func. Count: 74, Neg. LLF: 134.94082019285287
Iteration: 6, Func. Count: 90, Neg. LLF: 130.89864307575613
Iteration: 7, Func. Count: 105, Neg. LLF: 129.78634540796622
Iteration: 8, Func. Count: 119, Neg. LLF: 129.74493114101932
Iteration: 9, Func. Count: 133, Neg. LLF: 129.7288706557842
Iteration: 10, Func. Count: 147, Neg. LLF: 129.72572004673754
Iteration: 11, Func. Count: 161, Neg. LLF: 129.72071084496966
Iteration: 12, Func. Count: 175, Neg. LLF: 129.7191388217569
Iteration: 13, Func. Count: 189, Neg. LLF: 129.71887049521632
Iteration: 14, Func. Count: 203, Neg. LLF: 129.71886249358602
Iteration: 15, Func. Count: 216, Neg. LLF: 129.71886254847203
Optimization terminated successfully (Exit mode 0)
Current function value: 129.71886249358602
Iterations: 15
Function evaluations: 216
Gradient evaluations: 15
Iteration: 1, Func. Count: 8, Neg. LLF: 137.58931246195127
Iteration: 2, Func. Count: 16, Neg. LLF: 142.60732299527623
Iteration: 3, Func. Count: 24, Neg. LLF: 135.4881507929836
Iteration: 4, Func. Count: 31, Neg. LLF: 135.46747776071956
Iteration: 5, Func. Count: 38, Neg. LLF: 135.44762524212706
Iteration: 6, Func. Count: 45, Neg. LLF: 135.4474942100978
Iteration: 7, Func. Count: 52, Neg. LLF: 135.44748733405007
Iteration: 8, Func. Count: 59, Neg. LLF: 135.4474649347271
Iteration: 9, Func. Count: 66, Neg. LLF: 135.44746151274498
Iteration: 10, Func. Count: 72, Neg. LLF: 135.4474617508556
Optimization terminated successfully (Exit mode 0)
Current function value: 135.44746151274498
Iterations: 10
Function evaluations: 72
Gradient evaluations: 10
Iteration: 1, Func. Count: 9, Neg. LLF: 19749938.427020602
Iteration: 2, Func. Count: 19, Neg. LLF: 136.06544155026612
Iteration: 3, Func. Count: 27, Neg. LLF: 137.93103034925127
Iteration: 4, Func. Count: 37, Neg. LLF: 1317.4937127409887
Iteration: 5, Func. Count: 47, Neg. LLF: 134.24912770675607
Iteration: 6, Func. Count: 55, Neg. LLF: 135.92744164511922
Iteration: 7, Func. Count: 64, Neg. LLF: 134.1509394466191
Iteration: 8, Func. Count: 73, Neg. LLF: 134.02689749092664
Iteration: 9, Func. Count: 81, Neg. LLF: 134.02637810089627
Iteration: 10, Func. Count: 89, Neg. LLF: 134.02637677870305
Iteration: 11, Func. Count: 96, Neg. LLF: 134.02637677864948
Optimization terminated successfully (Exit mode 0)
Current function value: 134.02637677870305
Iterations: 11
Function evaluations: 96
Gradient evaluations: 11
Iteration: 1, Func. Count: 10, Neg. LLF: 19783514.60812479
Iteration: 2, Func. Count: 21, Neg. LLF: 160.24517863296776
Iteration: 3, Func. Count: 31, Neg. LLF: 145.51258829180722
Iteration: 4, Func. Count: 41, Neg. LLF: 137.82478920493597
Iteration: 5, Func. Count: 51, Neg. LLF: 135.30439735194545
Iteration: 6, Func. Count: 61, Neg. LLF: 134.61967011650617
Iteration: 7, Func. Count: 70, Neg. LLF: 134.67758134211127
Iteration: 8, Func. Count: 80, Neg. LLF: 136.2631687658767
Iteration: 9, Func. Count: 90, Neg. LLF: 134.03696965960043
Iteration: 10, Func. Count: 99, Neg. LLF: 134.0350798384111
Iteration: 11, Func. Count: 108, Neg. LLF: 134.03200314880525
Iteration: 12, Func. Count: 117, Neg. LLF: 134.03031534569084
Iteration: 13, Func. Count: 126, Neg. LLF: 134.02866395497165
Iteration: 14, Func. Count: 135, Neg. LLF: 134.02858226205805
Iteration: 15, Func. Count: 144, Neg. LLF: 134.02858067221086
Iteration: 16, Func. Count: 152, Neg. LLF: 134.02858067215007
Optimization terminated successfully (Exit mode 0)
Current function value: 134.02858067221086
Iterations: 16
Function evaluations: 152
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 1015.716352577718
Iteration: 2, Func. Count: 23, Neg. LLF: 144.20839258661195
Iteration: 3, Func. Count: 34, Neg. LLF: 135.82050892284943
Iteration: 4, Func. Count: 44, Neg. LLF: 138.51621534899434
Iteration: 5, Func. Count: 56, Neg. LLF: 136.86039280650576
Iteration: 6, Func. Count: 68, Neg. LLF: 134.58742418491002
Iteration: 7, Func. Count: 78, Neg. LLF: 134.26636490438318
Iteration: 8, Func. Count: 88, Neg. LLF: 136.33432839097398
Iteration: 9, Func. Count: 99, Neg. LLF: 134.15889430734504
Iteration: 10, Func. Count: 109, Neg. LLF: 134.11264636974698
Iteration: 11, Func. Count: 119, Neg. LLF: 133.96791381189976
Iteration: 12, Func. Count: 129, Neg. LLF: 133.96154077170044
Iteration: 13, Func. Count: 139, Neg. LLF: 133.95370431485472
Iteration: 14, Func. Count: 149, Neg. LLF: 133.95123151936133
Iteration: 15, Func. Count: 159, Neg. LLF: 133.9506223340361
Iteration: 16, Func. Count: 169, Neg. LLF: 133.95060905623822
Iteration: 17, Func. Count: 179, Neg. LLF: 133.96207063281142
Optimization terminated successfully (Exit mode 0)
Current function value: 133.95060905439098
Iterations: 18
Function evaluations: 182
Gradient evaluations: 17
Iteration: 1, Func. Count: 12, Neg. LLF: 2237.837175795269
Iteration: 2, Func. Count: 25, Neg. LLF: 144.32580524927917
Iteration: 3, Func. Count: 37, Neg. LLF: 135.72850707197898
Iteration: 4, Func. Count: 48, Neg. LLF: 133.7445535966799
Iteration: 5, Func. Count: 59, Neg. LLF: 141.67380840116033
Iteration: 6, Func. Count: 73, Neg. LLF: 133.45685438233932
Iteration: 7, Func. Count: 84, Neg. LLF: 133.4397323596526
Iteration: 8, Func. Count: 95, Neg. LLF: 133.42220937588837
Iteration: 9, Func. Count: 106, Neg. LLF: 133.4081892775801
Iteration: 10, Func. Count: 117, Neg. LLF: 133.39651124679443
Iteration: 11, Func. Count: 128, Neg. LLF: 133.39489947683919
Iteration: 12, Func. Count: 139, Neg. LLF: 133.3943183635404
Iteration: 13, Func. Count: 150, Neg. LLF: 133.39431437606368
Iteration: 14, Func. Count: 160, Neg. LLF: 133.39431437612708
Optimization terminated successfully (Exit mode 0)
Current function value: 133.39431437606368
Iterations: 14
Function evaluations: 160
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 137.21317066147387
Iteration: 2, Func. Count: 18, Neg. LLF: 143.30094932420897
Iteration: 3, Func. Count: 27, Neg. LLF: 134.58776713904788
Iteration: 4, Func. Count: 35, Neg. LLF: 134.18083861729147
Iteration: 5, Func. Count: 43, Neg. LLF: 134.0065498279508
Iteration: 6, Func. Count: 51, Neg. LLF: 133.95867233297093
Iteration: 7, Func. Count: 59, Neg. LLF: 133.90224670547406
Iteration: 8, Func. Count: 67, Neg. LLF: 133.88231221611377
Iteration: 9, Func. Count: 75, Neg. LLF: 133.86553230579818
Iteration: 10, Func. Count: 83, Neg. LLF: 133.86337607529816
Iteration: 11, Func. Count: 91, Neg. LLF: 133.86315512614195
Iteration: 12, Func. Count: 99, Neg. LLF: 133.86313930318607
Iteration: 13, Func. Count: 107, Neg. LLF: 133.86313788471023
Iteration: 14, Func. Count: 114, Neg. LLF: 133.8631377335758
Optimization terminated successfully (Exit mode 0)
Current function value: 133.86313788471023
Iterations: 14
Function evaluations: 114
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 19959106.919201124
Iteration: 2, Func. Count: 21, Neg. LLF: 140.59292430453354
Iteration: 3, Func. Count: 32, Neg. LLF: 157.46297607166156
Iteration: 4, Func. Count: 42, Neg. LLF: 135.22625324110982
Iteration: 5, Func. Count: 51, Neg. LLF: 133.91737026370544
Iteration: 6, Func. Count: 60, Neg. LLF: 133.71242587881724
Iteration: 7, Func. Count: 69, Neg. LLF: 134.59280781301098
Iteration: 8, Func. Count: 79, Neg. LLF: 133.52372513823948
Iteration: 9, Func. Count: 88, Neg. LLF: 133.43610592434172
Iteration: 10, Func. Count: 97, Neg. LLF: 133.4193814287502
Iteration: 11, Func. Count: 106, Neg. LLF: 133.4182545538859
Iteration: 12, Func. Count: 115, Neg. LLF: 133.4181314620783
Iteration: 13, Func. Count: 124, Neg. LLF: 133.4181242184354
Iteration: 14, Func. Count: 132, Neg. LLF: 133.41812421845822
Optimization terminated successfully (Exit mode 0)
Current function value: 133.4181242184354
Iterations: 14
Function evaluations: 132
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 8935039.318543034
Iteration: 2, Func. Count: 22, Neg. LLF: 138.99576092234108
Iteration: 3, Func. Count: 33, Neg. LLF: 151.81466079553832
Iteration: 4, Func. Count: 44, Neg. LLF: 131.8771887144188
Iteration: 5, Func. Count: 54, Neg. LLF: 131.77953971364707
Iteration: 6, Func. Count: 64, Neg. LLF: 132.13021129442407
Iteration: 7, Func. Count: 75, Neg. LLF: 131.6702521627855
Iteration: 8, Func. Count: 85, Neg. LLF: 131.6619636381553
Iteration: 9, Func. Count: 95, Neg. LLF: 131.65714655324913
Iteration: 10, Func. Count: 105, Neg. LLF: 131.64580458393772
Iteration: 11, Func. Count: 115, Neg. LLF: 131.62222631830838
Iteration: 12, Func. Count: 125, Neg. LLF: 131.5679082168691
Iteration: 13, Func. Count: 135, Neg. LLF: 131.55706819044528
Iteration: 14, Func. Count: 145, Neg. LLF: 131.55567701056628
Iteration: 15, Func. Count: 155, Neg. LLF: 131.5544361619107
Iteration: 16, Func. Count: 165, Neg. LLF: 131.55433313999973
Iteration: 17, Func. Count: 175, Neg. LLF: 131.55430915457643
Iteration: 18, Func. Count: 185, Neg. LLF: 131.5543068202584
Iteration: 19, Func. Count: 194, Neg. LLF: 131.55430682021196
Optimization terminated successfully (Exit mode 0)
Current function value: 131.5543068202584
Iterations: 19
Function evaluations: 194
Gradient evaluations: 19
Iteration: 1, Func. Count: 12, Neg. LLF: 486.40170802858694
Iteration: 2, Func. Count: 24, Neg. LLF: 135.48036770496114
Iteration: 3, Func. Count: 35, Neg. LLF: 131.8061726760935
Iteration: 4, Func. Count: 46, Neg. LLF: 131.60226014914414
Iteration: 5, Func. Count: 57, Neg. LLF: 131.57462496049195
Iteration: 6, Func. Count: 68, Neg. LLF: 131.55642383169635
Iteration: 7, Func. Count: 79, Neg. LLF: 131.55571839795755
Iteration: 8, Func. Count: 90, Neg. LLF: 131.55457730469064
Iteration: 9, Func. Count: 101, Neg. LLF: 131.55437232244864
Iteration: 10, Func. Count: 112, Neg. LLF: 131.55430865302063
Iteration: 11, Func. Count: 123, Neg. LLF: 131.5543067649625
Iteration: 12, Func. Count: 133, Neg. LLF: 131.55430681957327
Optimization terminated successfully (Exit mode 0)
Current function value: 131.5543067649625
Iterations: 12
Function evaluations: 133
Gradient evaluations: 12
Iteration: 1, Func. Count: 13, Neg. LLF: 985.2488980358033
Iteration: 2, Func. Count: 26, Neg. LLF: 140.66812858071557
Iteration: 3, Func. Count: 39, Neg. LLF: 152.21678336291865
Iteration: 4, Func. Count: 52, Neg. LLF: 131.965585657398
Iteration: 5, Func. Count: 64, Neg. LLF: 133.44324785164366
Iteration: 6, Func. Count: 78, Neg. LLF: 134.8569288954426
Iteration: 7, Func. Count: 91, Neg. LLF: 132.01251060519232
Iteration: 8, Func. Count: 104, Neg. LLF: 131.64752939183242
Iteration: 9, Func. Count: 116, Neg. LLF: 131.64605687874456
Iteration: 10, Func. Count: 128, Neg. LLF: 131.64541480778396
Iteration: 11, Func. Count: 140, Neg. LLF: 131.64498851644413
Iteration: 12, Func. Count: 152, Neg. LLF: 131.64375602172262
Iteration: 13, Func. Count: 164, Neg. LLF: 131.63859938723692
Iteration: 14, Func. Count: 176, Neg. LLF: 131.59937356328837
Iteration: 15, Func. Count: 188, Neg. LLF: 131.5660997870877
Iteration: 16, Func. Count: 200, Neg. LLF: 131.76880769786587
Iteration: 17, Func. Count: 213, Neg. LLF: 131.5928785709525
Iteration: 18, Func. Count: 226, Neg. LLF: 131.55504959459273
Iteration: 19, Func. Count: 238, Neg. LLF: 131.55430698193578
Iteration: 20, Func. Count: 249, Neg. LLF: 131.55430701767
Optimization terminated successfully (Exit mode 0)
Current function value: 131.55430698193578
Iterations: 21
Function evaluations: 249
Gradient evaluations: 20
Iteration: 1, Func. Count: 10, Neg. LLF: 135.36856694354935
Iteration: 2, Func. Count: 19, Neg. LLF: 141.28961034059645
Iteration: 3, Func. Count: 29, Neg. LLF: 134.4683758213846
Iteration: 4, Func. Count: 38, Neg. LLF: 136.98086872287783
Iteration: 5, Func. Count: 48, Neg. LLF: 174.2617122386304
Iteration: 6, Func. Count: 58, Neg. LLF: 134.1207875350333
Iteration: 7, Func. Count: 68, Neg. LLF: 133.9185526846005
Iteration: 8, Func. Count: 77, Neg. LLF: 133.8890450503866
Iteration: 9, Func. Count: 86, Neg. LLF: 133.86477007985232
Iteration: 10, Func. Count: 95, Neg. LLF: 133.85800792609749
Iteration: 11, Func. Count: 104, Neg. LLF: 133.85734045421478
Iteration: 12, Func. Count: 113, Neg. LLF: 133.85731869348484
Iteration: 13, Func. Count: 121, Neg. LLF: 133.85731869348336
Optimization terminated successfully (Exit mode 0)
Current function value: 133.85731869348484
Iterations: 13
Function evaluations: 121
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 19943380.538769934
Iteration: 2, Func. Count: 23, Neg. LLF: 153.50988757363027
Iteration: 3, Func. Count: 35, Neg. LLF: 152.11818525093264
Iteration: 4, Func. Count: 46, Neg. LLF: 135.02794849352313
Iteration: 5, Func. Count: 56, Neg. LLF: 134.03761203247927
Iteration: 6, Func. Count: 66, Neg. LLF: 133.89430478943686
Iteration: 7, Func. Count: 76, Neg. LLF: 133.6906905938114
Iteration: 8, Func. Count: 86, Neg. LLF: 133.48922170365734
Iteration: 9, Func. Count: 96, Neg. LLF: 133.425713385637
Iteration: 10, Func. Count: 106, Neg. LLF: 133.41892512224845
Iteration: 11, Func. Count: 116, Neg. LLF: 133.418154387414
Iteration: 12, Func. Count: 126, Neg. LLF: 133.41812948737962
Iteration: 13, Func. Count: 136, Neg. LLF: 133.41812417686958
Iteration: 14, Func. Count: 145, Neg. LLF: 133.4181241771658
Optimization terminated successfully (Exit mode 0)
Current function value: 133.41812417686958
Iterations: 14
Function evaluations: 145
Gradient evaluations: 14
Iteration: 1, Func. Count: 12, Neg. LLF: 8925972.224132985
Iteration: 2, Func. Count: 24, Neg. LLF: 138.33350071481416
Iteration: 3, Func. Count: 36, Neg. LLF: 147.99385086572025
Iteration: 4, Func. Count: 48, Neg. LLF: 132.06732636227017
Iteration: 5, Func. Count: 59, Neg. LLF: 138.04680906269652
Iteration: 6, Func. Count: 71, Neg. LLF: 131.68684394255084
Iteration: 7, Func. Count: 82, Neg. LLF: 131.66822727131432
Iteration: 8, Func. Count: 93, Neg. LLF: 131.66247419127436
Iteration: 9, Func. Count: 104, Neg. LLF: 131.65422688693073
Iteration: 10, Func. Count: 115, Neg. LLF: 131.6374511963752
Iteration: 11, Func. Count: 126, Neg. LLF: 131.5835776160165
Iteration: 12, Func. Count: 137, Neg. LLF: 131.565584476064
Iteration: 13, Func. Count: 148, Neg. LLF: 131.55518877645136
Iteration: 14, Func. Count: 159, Neg. LLF: 131.55445257754278
Iteration: 15, Func. Count: 170, Neg. LLF: 131.554309623481
Iteration: 16, Func. Count: 181, Neg. LLF: 131.554306736702
Iteration: 17, Func. Count: 191, Neg. LLF: 131.55430673678018
Optimization terminated successfully (Exit mode 0)
Current function value: 131.554306736702
Iterations: 17
Function evaluations: 191
Gradient evaluations: 17
Iteration: 1, Func. Count: 13, Neg. LLF: 489.5820596252413
Iteration: 2, Func. Count: 26, Neg. LLF: 135.43943982017566
Iteration: 3, Func. Count: 38, Neg. LLF: 131.7692901887121
Iteration: 4, Func. Count: 50, Neg. LLF: 131.58403345922412
Iteration: 5, Func. Count: 62, Neg. LLF: 131.55905303099829
Iteration: 6, Func. Count: 74, Neg. LLF: 131.56755749448345
Iteration: 7, Func. Count: 87, Neg. LLF: 131.55472075628666
Iteration: 8, Func. Count: 99, Neg. LLF: 131.55440571305596
Iteration: 9, Func. Count: 111, Neg. LLF: 131.55431370105677
Iteration: 10, Func. Count: 123, Neg. LLF: 131.55430699134018
Iteration: 11, Func. Count: 134, Neg. LLF: 131.55430704562755
Optimization terminated successfully (Exit mode 0)
Current function value: 131.55430699134018
Iterations: 11
Function evaluations: 134
Gradient evaluations: 11
Iteration: 1, Func. Count: 14, Neg. LLF: 1026.5365887379037
Iteration: 2, Func. Count: 28, Neg. LLF: 142.68254515620424
Iteration: 3, Func. Count: 42, Neg. LLF: 147.79612144946063
Iteration: 4, Func. Count: 56, Neg. LLF: 132.14758476962845
Iteration: 5, Func. Count: 69, Neg. LLF: 132.8394217724023
Iteration: 6, Func. Count: 83, Neg. LLF: 132.68879495330256
Iteration: 7, Func. Count: 97, Neg. LLF: 131.7326108152775
Iteration: 8, Func. Count: 110, Neg. LLF: 131.79427433377901
Iteration: 9, Func. Count: 124, Neg. LLF: 131.7907566019509
Iteration: 10, Func. Count: 138, Neg. LLF: 131.64816619550814
Iteration: 11, Func. Count: 151, Neg. LLF: 131.64710751736422
Iteration: 12, Func. Count: 164, Neg. LLF: 131.64675521470497
Iteration: 13, Func. Count: 177, Neg. LLF: 131.6457385024729
Iteration: 14, Func. Count: 190, Neg. LLF: 131.64472289648387
Iteration: 15, Func. Count: 203, Neg. LLF: 131.64239198105443
Iteration: 16, Func. Count: 216, Neg. LLF: 131.61530330084278
Iteration: 17, Func. Count: 229, Neg. LLF: 131.5736805292723
Iteration: 18, Func. Count: 242, Neg. LLF: 131.5706451049328
Iteration: 19, Func. Count: 255, Neg. LLF: 131.56962289781438
Iteration: 20, Func. Count: 268, Neg. LLF: 131.6142655521062
Iteration: 21, Func. Count: 282, Neg. LLF: 131.57054753516846
Iteration: 22, Func. Count: 296, Neg. LLF: 131.55749518237138
Iteration: 23, Func. Count: 309, Neg. LLF: 131.55432121751784
Iteration: 24, Func. Count: 322, Neg. LLF: 131.554309956847
Iteration: 25, Func. Count: 335, Neg. LLF: 131.55430667347684
Iteration: 26, Func. Count: 347, Neg. LLF: 131.5543067093059
Optimization terminated successfully (Exit mode 0)
Current function value: 131.55430667347684
Iterations: 27
Function evaluations: 347
Gradient evaluations: 26
Iteration: 1, Func. Count: 11, Neg. LLF: 134.04796050649594
Iteration: 2, Func. Count: 21, Neg. LLF: 143.9773225401866
Iteration: 3, Func. Count: 32, Neg. LLF: 130.51392077752095
Iteration: 4, Func. Count: 42, Neg. LLF: 135.07396385870243
Iteration: 5, Func. Count: 53, Neg. LLF: 133.66764915190848
Iteration: 6, Func. Count: 64, Neg. LLF: 129.83750326903098
Iteration: 7, Func. Count: 74, Neg. LLF: 129.79572153815843
Iteration: 8, Func. Count: 84, Neg. LLF: 129.9735280813476
Iteration: 9, Func. Count: 95, Neg. LLF: 129.71906618506154
Iteration: 10, Func. Count: 105, Neg. LLF: 129.7189320558726
Iteration: 11, Func. Count: 115, Neg. LLF: 129.71887158276567
Iteration: 12, Func. Count: 125, Neg. LLF: 129.71886215545038
Iteration: 13, Func. Count: 134, Neg. LLF: 129.7188623114074
Optimization terminated successfully (Exit mode 0)
Current function value: 129.71886215545038
Iterations: 13
Function evaluations: 134
Gradient evaluations: 13
Iteration: 1, Func. Count: 12, Neg. LLF: 4225486.289506874
Iteration: 2, Func. Count: 25, Neg. LLF: 142.15855400678848
Iteration: 3, Func. Count: 38, Neg. LLF: 251.4958573086821
Iteration: 4, Func. Count: 50, Neg. LLF: 132.99759431889225
Iteration: 5, Func. Count: 61, Neg. LLF: 132.619907375332
Iteration: 6, Func. Count: 72, Neg. LLF: 132.6669585971651
Iteration: 7, Func. Count: 84, Neg. LLF: 132.53477974831256
Iteration: 8, Func. Count: 95, Neg. LLF: 132.43795773249897
Iteration: 9, Func. Count: 106, Neg. LLF: 131.52372720424796
Iteration: 10, Func. Count: 117, Neg. LLF: 131.28345788106887
Iteration: 11, Func. Count: 128, Neg. LLF: 130.6057024307528
Iteration: 12, Func. Count: 139, Neg. LLF: 130.24473065962198
Iteration: 13, Func. Count: 150, Neg. LLF: 131.33190107352763
Iteration: 14, Func. Count: 162, Neg. LLF: 134.96550945504382
Iteration: 15, Func. Count: 174, Neg. LLF: 129.86783264230033
Iteration: 16, Func. Count: 185, Neg. LLF: 129.9578621553906
Iteration: 17, Func. Count: 198, Neg. LLF: 134.71202956415274
Iteration: 18, Func. Count: 210, Neg. LLF: 129.73672955359314
Iteration: 19, Func. Count: 221, Neg. LLF: 129.72061083579248
Iteration: 20, Func. Count: 232, Neg. LLF: 129.71886204765377
Iteration: 21, Func. Count: 242, Neg. LLF: 129.71886222157298
Optimization terminated successfully (Exit mode 0)
Current function value: 129.71886204765377
Iterations: 22
Function evaluations: 242
Gradient evaluations: 21
Iteration: 1, Func. Count: 13, Neg. LLF: 962847.4125087799
Iteration: 2, Func. Count: 26, Neg. LLF: 135.3831725030548
Iteration: 3, Func. Count: 39, Neg. LLF: 133.54656431997765
Iteration: 4, Func. Count: 52, Neg. LLF: 134.59301507750146
Iteration: 5, Func. Count: 65, Neg. LLF: 135.6487218785885
Iteration: 6, Func. Count: 78, Neg. LLF: 131.7530028274366
Iteration: 7, Func. Count: 90, Neg. LLF: 143.30247902776844
Iteration: 8, Func. Count: 104, Neg. LLF: 131.60640020058906
Iteration: 9, Func. Count: 116, Neg. LLF: 131.42440041849423
Iteration: 10, Func. Count: 128, Neg. LLF: 130.797270769197
Iteration: 11, Func. Count: 140, Neg. LLF: 130.55318790117013
Iteration: 12, Func. Count: 152, Neg. LLF: 129.84290764705804
Iteration: 13, Func. Count: 164, Neg. LLF: 129.81229217214522
Iteration: 14, Func. Count: 177, Neg. LLF: 129.7588454189161
Iteration: 15, Func. Count: 189, Neg. LLF: 129.74096977712023
Iteration: 16, Func. Count: 201, Neg. LLF: 129.73170216665406
Iteration: 17, Func. Count: 213, Neg. LLF: 129.71889194586032
Iteration: 18, Func. Count: 225, Neg. LLF: 129.7188725478789
Iteration: 19, Func. Count: 237, Neg. LLF: 129.71886292447408
Iteration: 20, Func. Count: 249, Neg. LLF: 129.71886205770232
Optimization terminated successfully (Exit mode 0)
Current function value: 129.71886205770232
Iterations: 20
Function evaluations: 249
Gradient evaluations: 20
Iteration: 1, Func. Count: 14, Neg. LLF: 184.99184234198285
Iteration: 2, Func. Count: 28, Neg. LLF: 267.60217145450014
Iteration: 3, Func. Count: 42, Neg. LLF: 137.8992268419695
Iteration: 4, Func. Count: 56, Neg. LLF: 132.24455688948484
Iteration: 5, Func. Count: 69, Neg. LLF: 136.57726565316372
Iteration: 6, Func. Count: 84, Neg. LLF: 132.28421747581098
Iteration: 7, Func. Count: 98, Neg. LLF: 134.49131078669527
Iteration: 8, Func. Count: 112, Neg. LLF: 131.04037830057985
Iteration: 9, Func. Count: 125, Neg. LLF: 130.56431928036076
Iteration: 10, Func. Count: 138, Neg. LLF: 130.18330948278307
Iteration: 11, Func. Count: 151, Neg. LLF: 130.23052273368253
Iteration: 12, Func. Count: 165, Neg. LLF: 129.94443383386545
Iteration: 13, Func. Count: 178, Neg. LLF: 129.8114342554396
Iteration: 14, Func. Count: 191, Neg. LLF: 129.76767564308162
Iteration: 15, Func. Count: 204, Neg. LLF: 129.73180610500123
Iteration: 16, Func. Count: 217, Neg. LLF: 129.72433758007213
Iteration: 17, Func. Count: 230, Neg. LLF: 129.72221966696736
Iteration: 18, Func. Count: 243, Neg. LLF: 129.71918471386002
Iteration: 19, Func. Count: 256, Neg. LLF: 129.71888373710706
Iteration: 20, Func. Count: 269, Neg. LLF: 129.71886391840096
Iteration: 21, Func. Count: 282, Neg. LLF: 129.71886267014628
Iteration: 22, Func. Count: 294, Neg. LLF: 129.718862800014
Optimization terminated successfully (Exit mode 0)
Current function value: 129.71886267014628
Iterations: 22
Function evaluations: 294
Gradient evaluations: 22
Iteration: 1, Func. Count: 15, Neg. LLF: 292.76871173379226
Iteration: 2, Func. Count: 30, Neg. LLF: 134.54215756364349
Iteration: 3, Func. Count: 45, Neg. LLF: 156.58856158886258
Iteration: 4, Func. Count: 60, Neg. LLF: 135.51150205196657
Iteration: 5, Func. Count: 75, Neg. LLF: 131.3126471955018
Iteration: 6, Func. Count: 89, Neg. LLF: 134.4692183692982
Iteration: 7, Func. Count: 104, Neg. LLF: 131.278036285234
Iteration: 8, Func. Count: 119, Neg. LLF: 131.06242529738876
Iteration: 9, Func. Count: 133, Neg. LLF: 130.97295337150283
Iteration: 10, Func. Count: 147, Neg. LLF: 130.1236661915021
Iteration: 11, Func. Count: 161, Neg. LLF: 129.92605690184445
Iteration: 12, Func. Count: 175, Neg. LLF: 129.85624037934593
Iteration: 13, Func. Count: 189, Neg. LLF: 129.80058487071392
Iteration: 14, Func. Count: 203, Neg. LLF: 129.75912269130114
Iteration: 15, Func. Count: 217, Neg. LLF: 129.72799914040942
Iteration: 16, Func. Count: 231, Neg. LLF: 129.72047079844796
Iteration: 17, Func. Count: 245, Neg. LLF: 129.71904017398535
Iteration: 18, Func. Count: 259, Neg. LLF: 129.71892250955395
Iteration: 19, Func. Count: 273, Neg. LLF: 129.71886361220083
Iteration: 20, Func. Count: 287, Neg. LLF: 129.71886165710407
Iteration: 21, Func. Count: 300, Neg. LLF: 129.7188617119446
Optimization terminated successfully (Exit mode 0)
Current function value: 129.71886165710407
Iterations: 21
Function evaluations: 300
Gradient evaluations: 21
Iteration: 1, Func. Count: 12, Neg. LLF: 135.58842929719944
Iteration: 2, Func. Count: 23, Neg. LLF: 142.00521122474834
Iteration: 3, Func. Count: 35, Neg. LLF: 130.85170437288832
Iteration: 4, Func. Count: 46, Neg. LLF: 130.18041011788205
Iteration: 5, Func. Count: 57, Neg. LLF: 156.30091361742956
Iteration: 6, Func. Count: 71, Neg. LLF: 129.7934576108157
Iteration: 7, Func. Count: 82, Neg. LLF: 129.74656859317398
Iteration: 8, Func. Count: 93, Neg. LLF: 129.71999107569815
Iteration: 9, Func. Count: 104, Neg. LLF: 129.71888693198318
Iteration: 10, Func. Count: 115, Neg. LLF: 129.71886222875116
Iteration: 11, Func. Count: 125, Neg. LLF: 129.71886253884406
Optimization terminated successfully (Exit mode 0)
Current function value: 129.71886222875116
Iterations: 11
Function evaluations: 125
Gradient evaluations: 11
Iteration: 1, Func. Count: 13, Neg. LLF: 4225620.553822476
Iteration: 2, Func. Count: 27, Neg. LLF: 141.62848697070473
Iteration: 3, Func. Count: 41, Neg. LLF: 282.73650317859597
Iteration: 4, Func. Count: 54, Neg. LLF: 133.0042021890081
Iteration: 5, Func. Count: 66, Neg. LLF: 132.58926028401243
Iteration: 6, Func. Count: 78, Neg. LLF: 132.5889361339669
Iteration: 7, Func. Count: 91, Neg. LLF: 132.5240085331897
Iteration: 8, Func. Count: 103, Neg. LLF: 132.22727423164307
Iteration: 9, Func. Count: 115, Neg. LLF: 131.1690175937956
Iteration: 10, Func. Count: 127, Neg. LLF: 130.29950600407125
Iteration: 11, Func. Count: 139, Neg. LLF: 130.03687607223844
Iteration: 12, Func. Count: 151, Neg. LLF: 130.01248053820018
Iteration: 13, Func. Count: 163, Neg. LLF: 129.94101338084957
Iteration: 14, Func. Count: 175, Neg. LLF: 129.9232171191774
Iteration: 15, Func. Count: 187, Neg. LLF: 129.90904861079784
Iteration: 16, Func. Count: 199, Neg. LLF: 129.8945653777528
Iteration: 17, Func. Count: 211, Neg. LLF: 129.8567100624372
Iteration: 18, Func. Count: 223, Neg. LLF: 129.7994357823729
Iteration: 19, Func. Count: 235, Neg. LLF: 129.77223270693418
Iteration: 20, Func. Count: 247, Neg. LLF: 129.76746781615796
Iteration: 21, Func. Count: 259, Neg. LLF: 129.76550417892173
Iteration: 22, Func. Count: 271, Neg. LLF: 129.76502903037826
Iteration: 23, Func. Count: 284, Neg. LLF: 129.73471252596676
Iteration: 24, Func. Count: 296, Neg. LLF: 129.72451025660962
Iteration: 25, Func. Count: 308, Neg. LLF: 129.71954019172514
Iteration: 26, Func. Count: 320, Neg. LLF: 129.71869681343753
Iteration: 27, Func. Count: 332, Neg. LLF: 129.7187672334312
Iteration: 28, Func. Count: 344, Neg. LLF: 129.71882196924741
Iteration: 29, Func. Count: 356, Neg. LLF: 129.71879549722922
Iteration: 30, Func. Count: 378, Neg. LLF: 129.71917212974688
Iteration: 31, Func. Count: 392, Neg. LLF: 129.71898935283062
Iteration: 32, Func. Count: 405, Neg. LLF: 129.71886203716653
Iteration: 33, Func. Count: 416, Neg. LLF: 129.71886221108755
Optimization terminated successfully (Exit mode 0)
Current function value: 129.71886203716653
Iterations: 34
Function evaluations: 416
Gradient evaluations: 33
Iteration: 1, Func. Count: 14, Neg. LLF: 963520.1835616243
Iteration: 2, Func. Count: 28, Neg. LLF: 135.25258480909406
Iteration: 3, Func. Count: 42, Neg. LLF: 133.58264315657055
Iteration: 4, Func. Count: 56, Neg. LLF: 134.56067846626567
Iteration: 5, Func. Count: 70, Neg. LLF: 135.77558906455903
Iteration: 6, Func. Count: 84, Neg. LLF: 131.7584039351809
Iteration: 7, Func. Count: 97, Neg. LLF: 144.36497261218577
Iteration: 8, Func. Count: 111, Neg. LLF: 131.60375279589857
Iteration: 9, Func. Count: 124, Neg. LLF: 131.46585366503695
Iteration: 10, Func. Count: 137, Neg. LLF: 130.8670382942822
Iteration: 11, Func. Count: 150, Neg. LLF: 130.3583548488698
Iteration: 12, Func. Count: 163, Neg. LLF: 129.935641437772
Iteration: 13, Func. Count: 176, Neg. LLF: 129.8303726154067
Iteration: 14, Func. Count: 189, Neg. LLF: 129.77143286337056
Iteration: 15, Func. Count: 202, Neg. LLF: 129.7505846363996
Iteration: 16, Func. Count: 215, Neg. LLF: 129.73141640748884
Iteration: 17, Func. Count: 228, Neg. LLF: 129.72285427942222
Iteration: 18, Func. Count: 241, Neg. LLF: 129.71907856281763
Iteration: 19, Func. Count: 254, Neg. LLF: 129.71887376466816
Iteration: 20, Func. Count: 267, Neg. LLF: 129.7188622042518
Iteration: 21, Func. Count: 279, Neg. LLF: 129.7188622522126
Optimization terminated successfully (Exit mode 0)
Current function value: 129.7188622042518
Iterations: 21
Function evaluations: 279
Gradient evaluations: 21
Iteration: 1, Func. Count: 15, Neg. LLF: 185.3620499496931
Iteration: 2, Func. Count: 30, Neg. LLF: 261.91614576480504
Iteration: 3, Func. Count: 45, Neg. LLF: 137.31726856349866
Iteration: 4, Func. Count: 60, Neg. LLF: 132.22847342173569
Iteration: 5, Func. Count: 74, Neg. LLF: 136.88564588636245
Iteration: 6, Func. Count: 90, Neg. LLF: 132.261271547995
Iteration: 7, Func. Count: 105, Neg. LLF: 135.23707119685744
Iteration: 8, Func. Count: 120, Neg. LLF: 131.02202976331935
Iteration: 9, Func. Count: 134, Neg. LLF: 130.5566396993677
Iteration: 10, Func. Count: 148, Neg. LLF: 130.17950527672207
Iteration: 11, Func. Count: 162, Neg. LLF: 130.11987678243216
Iteration: 12, Func. Count: 177, Neg. LLF: 129.93978978318947
Iteration: 13, Func. Count: 191, Neg. LLF: 129.8050612369917
Iteration: 14, Func. Count: 205, Neg. LLF: 129.75981272964725
Iteration: 15, Func. Count: 219, Neg. LLF: 129.72749424313136
Iteration: 16, Func. Count: 233, Neg. LLF: 129.72013668260422
Iteration: 17, Func. Count: 247, Neg. LLF: 129.71919034340195
Iteration: 18, Func. Count: 261, Neg. LLF: 129.71888878292586
Iteration: 19, Func. Count: 275, Neg. LLF: 129.71887037374904
Iteration: 20, Func. Count: 289, Neg. LLF: 129.71886224675373
Iteration: 21, Func. Count: 302, Neg. LLF: 129.71886237663963
Optimization terminated successfully (Exit mode 0)
Current function value: 129.71886224675373
Iterations: 21
Function evaluations: 302
Gradient evaluations: 21
Iteration: 1, Func. Count: 16, Neg. LLF: 294.68869792458366
Iteration: 2, Func. Count: 32, Neg. LLF: 134.5353389052423
Iteration: 3, Func. Count: 48, Neg. LLF: 156.47969907506643
Iteration: 4, Func. Count: 64, Neg. LLF: 135.53566618260606
Iteration: 5, Func. Count: 80, Neg. LLF: 131.3111547413508
Iteration: 6, Func. Count: 95, Neg. LLF: 135.9918148608915
Iteration: 7, Func. Count: 111, Neg. LLF: 131.20754718788444
Iteration: 8, Func. Count: 127, Neg. LLF: 131.07283252778996
Iteration: 9, Func. Count: 142, Neg. LLF: 131.0392597462285
Iteration: 10, Func. Count: 157, Neg. LLF: 131.01681136797907
Iteration: 11, Func. Count: 172, Neg. LLF: 131.0095811963631
Iteration: 12, Func. Count: 187, Neg. LLF: 130.9954708533852
Iteration: 13, Func. Count: 202, Neg. LLF: 130.83385745817904
Iteration: 14, Func. Count: 217, Neg. LLF: 130.66138582413842
Iteration: 15, Func. Count: 232, Neg. LLF: 137.74939419409313
Iteration: 16, Func. Count: 249, Neg. LLF: 129.792500592508
Iteration: 17, Func. Count: 264, Neg. LLF: 129.74999817854786
Iteration: 18, Func. Count: 279, Neg. LLF: 129.7974239940231
Iteration: 19, Func. Count: 295, Neg. LLF: 129.72362679105947
Iteration: 20, Func. Count: 311, Neg. LLF: 129.71922241859875
Iteration: 21, Func. Count: 326, Neg. LLF: 129.71888397852587
Iteration: 22, Func. Count: 341, Neg. LLF: 129.71886482728416
Iteration: 23, Func. Count: 356, Neg. LLF: 129.71886300408855
Iteration: 24, Func. Count: 371, Neg. LLF: 129.718862341913
Optimization terminated successfully (Exit mode 0)
Current function value: 129.718862341913
Iterations: 24
Function evaluations: 371
Gradient evaluations: 24
Iteration: 1, Func. Count: 8, Neg. LLF: 9213604.539155187
Iteration: 2, Func. Count: 17, Neg. LLF: 136.26480560360002
Iteration: 3, Func. Count: 25, Neg. LLF: 157.6948197665598
Iteration: 4, Func. Count: 33, Neg. LLF: 131.85302918937475
Iteration: 5, Func. Count: 40, Neg. LLF: 131.68402927568948
Iteration: 6, Func. Count: 47, Neg. LLF: 131.72498136619953
Iteration: 7, Func. Count: 55, Neg. LLF: 131.65857918481552
Iteration: 8, Func. Count: 62, Neg. LLF: 131.6358303442242
Iteration: 9, Func. Count: 69, Neg. LLF: 131.62975078523786
Iteration: 10, Func. Count: 76, Neg. LLF: 131.58793541463757
Iteration: 11, Func. Count: 83, Neg. LLF: 131.5597805406642
Iteration: 12, Func. Count: 90, Neg. LLF: 131.55505259382343
Iteration: 13, Func. Count: 97, Neg. LLF: 131.554361868833
Iteration: 14, Func. Count: 104, Neg. LLF: 131.55431089921612
Iteration: 15, Func. Count: 111, Neg. LLF: 131.55430688416752
Iteration: 16, Func. Count: 117, Neg. LLF: 131.55430688424755
Optimization terminated successfully (Exit mode 0)
Current function value: 131.55430688416752
Iterations: 16
Function evaluations: 117
Gradient evaluations: 16
Iteration: 1, Func. Count: 5, Neg. LLF: 145.68130419707333
Iteration: 2, Func. Count: 10, Neg. LLF: 144.07456840244984
Iteration: 3, Func. Count: 15, Neg. LLF: 140.41932757072993
Iteration: 4, Func. Count: 19, Neg. LLF: 138.77384869415565
Iteration: 5, Func. Count: 23, Neg. LLF: 138.64727612731187
Iteration: 6, Func. Count: 27, Neg. LLF: 138.6022150265765
Iteration: 7, Func. Count: 31, Neg. LLF: 138.56536795584108
Iteration: 8, Func. Count: 35, Neg. LLF: 138.55450313022538
Iteration: 9, Func. Count: 39, Neg. LLF: 138.55321142794892
Iteration: 10, Func. Count: 43, Neg. LLF: 138.55314195931862
Iteration: 11, Func. Count: 47, Neg. LLF: 138.55313905672853
Iteration: 12, Func. Count: 50, Neg. LLF: 138.55313915297182
Optimization terminated successfully (Exit mode 0)
Current function value: 138.55313905672853
Iterations: 12
Function evaluations: 50
Gradient evaluations: 12
Iteration: 1, Func. Count: 6, Neg. LLF: 28284435.497786943
Iteration: 2, Func. Count: 13, Neg. LLF: 138.15775836348817
Iteration: 3, Func. Count: 18, Neg. LLF: 138.12214501053987
Iteration: 4, Func. Count: 23, Neg. LLF: 138.3027171469368
Iteration: 5, Func. Count: 29, Neg. LLF: 138.09292832029666
Iteration: 6, Func. Count: 34, Neg. LLF: 138.09153466392848
Iteration: 7, Func. Count: 39, Neg. LLF: 138.09147155053645
Iteration: 8, Func. Count: 44, Neg. LLF: 138.091464048749
Iteration: 9, Func. Count: 49, Neg. LLF: 138.09146233807283
Iteration: 10, Func. Count: 53, Neg. LLF: 138.0914623378524
Optimization terminated successfully (Exit mode 0)
Current function value: 138.09146233807283
Iterations: 10
Function evaluations: 53
Gradient evaluations: 10
Iteration: 1, Func. Count: 7, Neg. LLF: 170.73208192476255
Iteration: 2, Func. Count: 15, Neg. LLF: 138.37834738566085
Iteration: 3, Func. Count: 21, Neg. LLF: 138.32971821074298
Iteration: 4, Func. Count: 27, Neg. LLF: 138.2994769657888
Iteration: 5, Func. Count: 33, Neg. LLF: 138.17106299997775
Iteration: 6, Func. Count: 39, Neg. LLF: 138.16240601686067
Iteration: 7, Func. Count: 46, Neg. LLF: 138.109503409092
Iteration: 8, Func. Count: 52, Neg. LLF: 138.10851937107745
Iteration: 9, Func. Count: 58, Neg. LLF: 138.10532773310703
Iteration: 10, Func. Count: 64, Neg. LLF: 138.10391258720676
Iteration: 11, Func. Count: 70, Neg. LLF: 138.10225097282074
Iteration: 12, Func. Count: 76, Neg. LLF: 138.09147113000432
Iteration: 13, Func. Count: 82, Neg. LLF: 138.09146626473776
Iteration: 14, Func. Count: 88, Neg. LLF: 138.09146360435454
Iteration: 15, Func. Count: 94, Neg. LLF: 138.09146309126373
Optimization terminated successfully (Exit mode 0)
Current function value: 138.09146309126373
Iterations: 15
Function evaluations: 94
Gradient evaluations: 15
Iteration: 1, Func. Count: 8, Neg. LLF: 172.82278962266258
Iteration: 2, Func. Count: 17, Neg. LLF: 138.27676882495106
Iteration: 3, Func. Count: 24, Neg. LLF: 138.26252556517218
Iteration: 4, Func. Count: 31, Neg. LLF: 138.22499755617798
Iteration: 5, Func. Count: 38, Neg. LLF: 138.2236886468692
Iteration: 6, Func. Count: 46, Neg. LLF: 138.1319856832236
Iteration: 7, Func. Count: 54, Neg. LLF: 138.1126043906603
Iteration: 8, Func. Count: 61, Neg. LLF: 138.1113673564461
Iteration: 9, Func. Count: 68, Neg. LLF: 138.1109925327925
Iteration: 10, Func. Count: 75, Neg. LLF: 138.11097955978644
Iteration: 11, Func. Count: 82, Neg. LLF: 138.11097828741813
Iteration: 12, Func. Count: 88, Neg. LLF: 138.1109782874153
Optimization terminated successfully (Exit mode 0)
Current function value: 138.11097828741813
Iterations: 12
Function evaluations: 88
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 174.56187462513768
Iteration: 2, Func. Count: 19, Neg. LLF: 138.08108614829604
Iteration: 3, Func. Count: 27, Neg. LLF: 138.08462424408336
Iteration: 4, Func. Count: 36, Neg. LLF: 138.06082830713595
Iteration: 5, Func. Count: 44, Neg. LLF: 138.05394617959828
Iteration: 6, Func. Count: 52, Neg. LLF: 138.04778819573448
Iteration: 7, Func. Count: 60, Neg. LLF: 138.04664939547376
Iteration: 8, Func. Count: 68, Neg. LLF: 138.04638226384307
Iteration: 9, Func. Count: 76, Neg. LLF: 138.04636229614704
Iteration: 10, Func. Count: 83, Neg. LLF: 138.04636229618472
Optimization terminated successfully (Exit mode 0)
Current function value: 138.04636229614704
Iterations: 10
Function evaluations: 83
Gradient evaluations: 10
Iteration: 1, Func. Count: 6, Neg. LLF: 147.9080206524789
Iteration: 2, Func. Count: 12, Neg. LLF: 143.4692335466817
Iteration: 3, Func. Count: 18, Neg. LLF: 139.74542093378903
Iteration: 4, Func. Count: 23, Neg. LLF: 138.91593625790796
Iteration: 5, Func. Count: 28, Neg. LLF: 139.1572550919805
Iteration: 6, Func. Count: 35, Neg. LLF: 138.5753560863974
Iteration: 7, Func. Count: 40, Neg. LLF: 138.55591971285972
Iteration: 8, Func. Count: 45, Neg. LLF: 138.55168476532955
Iteration: 9, Func. Count: 50, Neg. LLF: 138.55067909664257
Iteration: 10, Func. Count: 55, Neg. LLF: 138.55007848902136
Iteration: 11, Func. Count: 60, Neg. LLF: 138.5500715952834
Iteration: 12, Func. Count: 65, Neg. LLF: 138.5500710006433
Optimization terminated successfully (Exit mode 0)
Current function value: 138.5500710006433
Iterations: 12
Function evaluations: 65
Gradient evaluations: 12
Iteration: 1, Func. Count: 7, Neg. LLF: 28289656.083152957
Iteration: 2, Func. Count: 15, Neg. LLF: 138.16325897970927
Iteration: 3, Func. Count: 21, Neg. LLF: 138.12073298226696
Iteration: 4, Func. Count: 27, Neg. LLF: 138.22514948548329
Iteration: 5, Func. Count: 34, Neg. LLF: 138.09316460854905
Iteration: 6, Func. Count: 40, Neg. LLF: 138.0915920370939
Iteration: 7, Func. Count: 46, Neg. LLF: 138.09150294805818
Iteration: 8, Func. Count: 52, Neg. LLF: 138.09146277898736
Iteration: 9, Func. Count: 58, Neg. LLF: 138.09146209399557
Optimization terminated successfully (Exit mode 0)
Current function value: 138.09146209399557
Iterations: 9
Function evaluations: 58
Gradient evaluations: 9
Iteration: 1, Func. Count: 8, Neg. LLF: 170.8534978391677
Iteration: 2, Func. Count: 17, Neg. LLF: 138.37810505721927
Iteration: 3, Func. Count: 24, Neg. LLF: 138.3305012887516
Iteration: 4, Func. Count: 31, Neg. LLF: 138.3038358777975
Iteration: 5, Func. Count: 38, Neg. LLF: 138.21476154546434
Iteration: 6, Func. Count: 45, Neg. LLF: 138.19263302755624
Iteration: 7, Func. Count: 53, Neg. LLF: 138.1103710982752
Iteration: 8, Func. Count: 60, Neg. LLF: 138.1072690546003
Iteration: 9, Func. Count: 67, Neg. LLF: 138.10542133730326
Iteration: 10, Func. Count: 74, Neg. LLF: 138.1033047910684
Iteration: 11, Func. Count: 81, Neg. LLF: 138.10090482191055
Iteration: 12, Func. Count: 88, Neg. LLF: 138.09496035804864
Iteration: 13, Func. Count: 95, Neg. LLF: 138.09296442202634
Iteration: 14, Func. Count: 102, Neg. LLF: 138.09172702315823
Iteration: 15, Func. Count: 109, Neg. LLF: 138.09151530616148
Iteration: 16, Func. Count: 116, Neg. LLF: 138.09146216769176
Iteration: 17, Func. Count: 122, Neg. LLF: 138.09146216860125
Optimization terminated successfully (Exit mode 0)
Current function value: 138.09146216769176
Iterations: 17
Function evaluations: 122
Gradient evaluations: 17
Iteration: 1, Func. Count: 9, Neg. LLF: 173.01024195626897
Iteration: 2, Func. Count: 19, Neg. LLF: 138.2745417861691
Iteration: 3, Func. Count: 27, Neg. LLF: 138.26453296622262
Iteration: 4, Func. Count: 35, Neg. LLF: 138.22293130820842
Iteration: 5, Func. Count: 43, Neg. LLF: 138.13598303838694
Iteration: 6, Func. Count: 51, Neg. LLF: 138.12780711020963
Iteration: 7, Func. Count: 59, Neg. LLF: 138.11323781859562
Iteration: 8, Func. Count: 67, Neg. LLF: 138.1130093320803
Iteration: 9, Func. Count: 76, Neg. LLF: 138.11100712688364
Iteration: 10, Func. Count: 84, Neg. LLF: 138.1109787219736
Iteration: 11, Func. Count: 91, Neg. LLF: 138.1109787219705
Optimization terminated successfully (Exit mode 0)
Current function value: 138.1109787219736
Iterations: 11
Function evaluations: 91
Gradient evaluations: 11
Iteration: 1, Func. Count: 10, Neg. LLF: 174.74324743907994
Iteration: 2, Func. Count: 21, Neg. LLF: 138.08451708152754
Iteration: 3, Func. Count: 30, Neg. LLF: 138.07286601503836
Iteration: 4, Func. Count: 39, Neg. LLF: 138.05877795094148
Iteration: 5, Func. Count: 48, Neg. LLF: 138.05449685570693
Iteration: 6, Func. Count: 57, Neg. LLF: 138.04689651456698
Iteration: 7, Func. Count: 66, Neg. LLF: 138.04638001708372
Iteration: 8, Func. Count: 75, Neg. LLF: 138.04636249672467
Iteration: 9, Func. Count: 83, Neg. LLF: 138.04636249676443
Optimization terminated successfully (Exit mode 0)
Current function value: 138.04636249672467
Iterations: 9
Function evaluations: 83
Gradient evaluations: 9
Iteration: 1, Func. Count: 7, Neg. LLF: 144.2254801648634
Iteration: 2, Func. Count: 14, Neg. LLF: 142.82362538352632
Iteration: 3, Func. Count: 21, Neg. LLF: 139.74887628982663
Iteration: 4, Func. Count: 27, Neg. LLF: 138.76725235846573
Iteration: 5, Func. Count: 33, Neg. LLF: 139.26519848073232
Iteration: 6, Func. Count: 42, Neg. LLF: 138.57251236800616
Iteration: 7, Func. Count: 48, Neg. LLF: 138.56045022206476
Iteration: 8, Func. Count: 54, Neg. LLF: 138.55232995085802
Iteration: 9, Func. Count: 60, Neg. LLF: 138.55022744396143
Iteration: 10, Func. Count: 66, Neg. LLF: 138.55007657778557
Iteration: 11, Func. Count: 72, Neg. LLF: 138.55007099877196
Iteration: 12, Func. Count: 77, Neg. LLF: 138.55007109301476
Optimization terminated successfully (Exit mode 0)
Current function value: 138.55007099877196
Iterations: 12
Function evaluations: 77
Gradient evaluations: 12
Iteration: 1, Func. Count: 8, Neg. LLF: 28295857.845406227
Iteration: 2, Func. Count: 17, Neg. LLF: 138.17003064832295
Iteration: 3, Func. Count: 24, Neg. LLF: 138.12061133773736
Iteration: 4, Func. Count: 31, Neg. LLF: 138.1819731526396
Iteration: 5, Func. Count: 39, Neg. LLF: 138.0934339830757
Iteration: 6, Func. Count: 46, Neg. LLF: 138.09156118513246
Iteration: 7, Func. Count: 53, Neg. LLF: 138.09148127580178
Iteration: 8, Func. Count: 60, Neg. LLF: 138.09146237377396
Iteration: 9, Func. Count: 66, Neg. LLF: 138.0914623740021
Optimization terminated successfully (Exit mode 0)
Current function value: 138.09146237377396
Iterations: 9
Function evaluations: 66
Gradient evaluations: 9
Iteration: 1, Func. Count: 9, Neg. LLF: 170.79480591368159
Iteration: 2, Func. Count: 19, Neg. LLF: 138.37848341028499
Iteration: 3, Func. Count: 27, Neg. LLF: 138.334063158597
Iteration: 4, Func. Count: 35, Neg. LLF: 138.31244610716442
Iteration: 5, Func. Count: 43, Neg. LLF: 138.15655845889012
Iteration: 6, Func. Count: 51, Neg. LLF: 138.60241364748785
Iteration: 7, Func. Count: 60, Neg. LLF: 138.13340246454518
Iteration: 8, Func. Count: 68, Neg. LLF: 138.11190928687333
Iteration: 9, Func. Count: 76, Neg. LLF: 138.1095805112109
Iteration: 10, Func. Count: 84, Neg. LLF: 138.10659615688596
Iteration: 11, Func. Count: 92, Neg. LLF: 138.1051219378006
Iteration: 12, Func. Count: 100, Neg. LLF: 138.103308510315
Iteration: 13, Func. Count: 108, Neg. LLF: 138.10039766997897
Iteration: 14, Func. Count: 116, Neg. LLF: 138.09152803334212
Iteration: 15, Func. Count: 124, Neg. LLF: 138.0915649609721
Iteration: 16, Func. Count: 133, Neg. LLF: 138.09146738333095
Iteration: 17, Func. Count: 142, Neg. LLF: 138.0916503983234
Optimization terminated successfully (Exit mode 0)
Current function value: 138.09146520339763
Iterations: 17
Function evaluations: 144
Gradient evaluations: 17
Iteration: 1, Func. Count: 10, Neg. LLF: 172.97031453237597
Iteration: 2, Func. Count: 21, Neg. LLF: 138.27594626818842
Iteration: 3, Func. Count: 30, Neg. LLF: 138.2648121606784
Iteration: 4, Func. Count: 39, Neg. LLF: 138.22799143982354
Iteration: 5, Func. Count: 48, Neg. LLF: 138.13919688438511
Iteration: 6, Func. Count: 57, Neg. LLF: 138.12459640673342
Iteration: 7, Func. Count: 66, Neg. LLF: 138.11543225198125
Iteration: 8, Func. Count: 75, Neg. LLF: 138.11274207667577
Iteration: 9, Func. Count: 84, Neg. LLF: 138.11105743723527
Iteration: 10, Func. Count: 93, Neg. LLF: 138.11098321910666
Iteration: 11, Func. Count: 102, Neg. LLF: 138.1109784576256
Iteration: 12, Func. Count: 110, Neg. LLF: 138.11097845775618
Optimization terminated successfully (Exit mode 0)
Current function value: 138.1109784576256
Iterations: 12
Function evaluations: 110
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 174.72965818529997
Iteration: 2, Func. Count: 23, Neg. LLF: 138.08735386973936
Iteration: 3, Func. Count: 33, Neg. LLF: 138.06954801065152
Iteration: 4, Func. Count: 43, Neg. LLF: 138.05814902913795
Iteration: 5, Func. Count: 53, Neg. LLF: 138.0535873196782
Iteration: 6, Func. Count: 63, Neg. LLF: 138.04708237335547
Iteration: 7, Func. Count: 73, Neg. LLF: 138.04644187250898
Iteration: 8, Func. Count: 83, Neg. LLF: 138.04636235394844
Iteration: 9, Func. Count: 92, Neg. LLF: 138.04636235387886
Optimization terminated successfully (Exit mode 0)
Current function value: 138.04636235394844
Iterations: 9
Function evaluations: 92
Gradient evaluations: 9
Iteration: 1, Func. Count: 8, Neg. LLF: 141.56257373333943
Iteration: 2, Func. Count: 15, Neg. LLF: 144.3818485372623
Iteration: 3, Func. Count: 23, Neg. LLF: 140.77078075359046
Iteration: 4, Func. Count: 30, Neg. LLF: 138.74726140653883
Iteration: 5, Func. Count: 37, Neg. LLF: 140.1540439271258
Iteration: 6, Func. Count: 48, Neg. LLF: 138.58457543708798
Iteration: 7, Func. Count: 55, Neg. LLF: 138.55838748418927
Iteration: 8, Func. Count: 62, Neg. LLF: 138.55449635576426
Iteration: 9, Func. Count: 69, Neg. LLF: 138.55032947086912
Iteration: 10, Func. Count: 76, Neg. LLF: 138.55008755352782
Iteration: 11, Func. Count: 83, Neg. LLF: 138.5500711107057
Iteration: 12, Func. Count: 89, Neg. LLF: 138.55007128728377
Optimization terminated successfully (Exit mode 0)
Current function value: 138.5500711107057
Iterations: 12
Function evaluations: 89
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 28295459.42958428
Iteration: 2, Func. Count: 19, Neg. LLF: 138.16961982302877
Iteration: 3, Func. Count: 27, Neg. LLF: 138.12037776708902
Iteration: 4, Func. Count: 35, Neg. LLF: 138.1834641358132
Iteration: 5, Func. Count: 44, Neg. LLF: 138.09339581629115
Iteration: 6, Func. Count: 52, Neg. LLF: 138.09157778273453
Iteration: 7, Func. Count: 60, Neg. LLF: 138.09147974939415
Iteration: 8, Func. Count: 68, Neg. LLF: 138.09146244091988
Iteration: 9, Func. Count: 75, Neg. LLF: 138.09146244113393
Optimization terminated successfully (Exit mode 0)
Current function value: 138.09146244091988
Iterations: 9
Function evaluations: 75
Gradient evaluations: 9
Iteration: 1, Func. Count: 10, Neg. LLF: 28285511.872716907
Iteration: 2, Func. Count: 21, Neg. LLF: 138.14273512003552
Iteration: 3, Func. Count: 30, Neg. LLF: 138.12053895674532
Iteration: 4, Func. Count: 39, Neg. LLF: 138.15641244064318
Iteration: 5, Func. Count: 49, Neg. LLF: 138.10437801048815
Iteration: 6, Func. Count: 58, Neg. LLF: 138.1041198182711
Iteration: 7, Func. Count: 67, Neg. LLF: 138.10339010286893
Iteration: 8, Func. Count: 76, Neg. LLF: 138.10239613915917
Iteration: 9, Func. Count: 85, Neg. LLF: 138.09335835788215
Iteration: 10, Func. Count: 94, Neg. LLF: 138.0919833681917
Iteration: 11, Func. Count: 103, Neg. LLF: 138.09151759812184
Iteration: 12, Func. Count: 112, Neg. LLF: 138.09157435230296
Iteration: 13, Func. Count: 121, Neg. LLF: 138.09146240554915
Optimization terminated successfully (Exit mode 0)
Current function value: 138.0914624046223
Iterations: 13
Function evaluations: 121
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 172.88413411280078
Iteration: 2, Func. Count: 23, Neg. LLF: 138.27941696815293
Iteration: 3, Func. Count: 33, Neg. LLF: 138.26637842898674
Iteration: 4, Func. Count: 43, Neg. LLF: 138.231213758754
Iteration: 5, Func. Count: 53, Neg. LLF: 138.15267146846998
Iteration: 6, Func. Count: 63, Neg. LLF: 138.1327414884331
Iteration: 7, Func. Count: 73, Neg. LLF: 138.11872030107244
Iteration: 8, Func. Count: 83, Neg. LLF: 138.11334396299162
Iteration: 9, Func. Count: 93, Neg. LLF: 138.11126898408457
Iteration: 10, Func. Count: 103, Neg. LLF: 138.11113965410215
Iteration: 11, Func. Count: 113, Neg. LLF: 138.11112901267754
Iteration: 12, Func. Count: 123, Neg. LLF: 138.1111235608833
Iteration: 13, Func. Count: 133, Neg. LLF: 138.1111133579473
Iteration: 14, Func. Count: 143, Neg. LLF: 138.11103807724444
Iteration: 15, Func. Count: 153, Neg. LLF: 138.11100831624765
Iteration: 16, Func. Count: 163, Neg. LLF: 138.11097830549912
Iteration: 17, Func. Count: 172, Neg. LLF: 138.11097830543042
Optimization terminated successfully (Exit mode 0)
Current function value: 138.11097830549912
Iterations: 17
Function evaluations: 172
Gradient evaluations: 17
Iteration: 1, Func. Count: 12, Neg. LLF: 174.63772804544777
Iteration: 2, Func. Count: 25, Neg. LLF: 138.09210041649453
Iteration: 3, Func. Count: 36, Neg. LLF: 138.06503808685048
Iteration: 4, Func. Count: 47, Neg. LLF: 138.05752355370268
Iteration: 5, Func. Count: 58, Neg. LLF: 138.05233367686657
Iteration: 6, Func. Count: 69, Neg. LLF: 138.04721030198496
Iteration: 7, Func. Count: 80, Neg. LLF: 138.04645302785266
Iteration: 8, Func. Count: 91, Neg. LLF: 138.046362616317
Iteration: 9, Func. Count: 102, Neg. LLF: 138.04636222183095
Optimization terminated successfully (Exit mode 0)
Current function value: 138.04636222183095
Iterations: 9
Function evaluations: 102
Gradient evaluations: 9
Iteration: 1, Func. Count: 5, Neg. LLF: 145.41252557026226
Iteration: 2, Func. Count: 10, Neg. LLF: 145.06417417029985
Iteration: 3, Func. Count: 15, Neg. LLF: 139.94846545260347
Iteration: 4, Func. Count: 19, Neg. LLF: 138.9246093529974
Iteration: 5, Func. Count: 23, Neg. LLF: 138.6944165522184
Iteration: 6, Func. Count: 27, Neg. LLF: 138.56845735837106
Iteration: 7, Func. Count: 31, Neg. LLF: 138.5539601039504
Iteration: 8, Func. Count: 35, Neg. LLF: 138.5531826758895
Iteration: 9, Func. Count: 39, Neg. LLF: 138.55314404100264
Iteration: 10, Func. Count: 43, Neg. LLF: 138.5531391152112
Iteration: 11, Func. Count: 46, Neg. LLF: 138.553139263361
Optimization terminated successfully (Exit mode 0)
Current function value: 138.5531391152112
Iterations: 11
Function evaluations: 46
Gradient evaluations: 11
Iteration: 1, Func. Count: 6, Neg. LLF: 2972.808667790064
Iteration: 2, Func. Count: 13, Neg. LLF: 138.13595752031299
Iteration: 3, Func. Count: 18, Neg. LLF: 138.124037912961
Iteration: 4, Func. Count: 23, Neg. LLF: 138.10665081543533
Iteration: 5, Func. Count: 28, Neg. LLF: 138.10105110656417
Iteration: 6, Func. Count: 33, Neg. LLF: 138.09451122224723
Iteration: 7, Func. Count: 38, Neg. LLF: 138.09222020464145
Iteration: 8, Func. Count: 43, Neg. LLF: 138.0915115722663
Iteration: 9, Func. Count: 48, Neg. LLF: 138.0914633796436
Iteration: 10, Func. Count: 53, Neg. LLF: 138.09146246223364
Optimization terminated successfully (Exit mode 0)
Current function value: 138.09146246223364
Iterations: 10
Function evaluations: 53
Gradient evaluations: 10
Iteration: 1, Func. Count: 7, Neg. LLF: 15455.140879179708
Iteration: 2, Func. Count: 15, Neg. LLF: 138.13764376301472
Iteration: 3, Func. Count: 21, Neg. LLF: 138.1127722093526
Iteration: 4, Func. Count: 27, Neg. LLF: 138.17677039062696
Iteration: 5, Func. Count: 34, Neg. LLF: 138.1040836811757
Iteration: 6, Func. Count: 40, Neg. LLF: 138.10385766546628
Iteration: 7, Func. Count: 46, Neg. LLF: 138.10326174530516
Iteration: 8, Func. Count: 52, Neg. LLF: 138.10214259815896
Iteration: 9, Func. Count: 58, Neg. LLF: 138.09393202626762
Iteration: 10, Func. Count: 64, Neg. LLF: 138.09152579665715
Iteration: 11, Func. Count: 70, Neg. LLF: 138.0915561860133
Iteration: 12, Func. Count: 77, Neg. LLF: 138.0914632230971
Iteration: 13, Func. Count: 83, Neg. LLF: 138.09146207601898
Iteration: 14, Func. Count: 88, Neg. LLF: 138.0914620766951
Optimization terminated successfully (Exit mode 0)
Current function value: 138.09146207601898
Iterations: 14
Function evaluations: 88
Gradient evaluations: 14
Iteration: 1, Func. Count: 8, Neg. LLF: 172.42417569938794
Iteration: 2, Func. Count: 17, Neg. LLF: 138.26538153344592
Iteration: 3, Func. Count: 24, Neg. LLF: 138.24657775186807
Iteration: 4, Func. Count: 31, Neg. LLF: 138.1448174108779
Iteration: 5, Func. Count: 38, Neg. LLF: 138.392453427038
Iteration: 6, Func. Count: 46, Neg. LLF: 138.1141578014971
Iteration: 7, Func. Count: 53, Neg. LLF: 138.11158475342478
Iteration: 8, Func. Count: 60, Neg. LLF: 138.11106115540628
Iteration: 9, Func. Count: 67, Neg. LLF: 138.1109872945881
Iteration: 10, Func. Count: 74, Neg. LLF: 138.1109788558201
Iteration: 11, Func. Count: 81, Neg. LLF: 138.11097832342472
Optimization terminated successfully (Exit mode 0)
Current function value: 138.11097832342472
Iterations: 11
Function evaluations: 81
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 173.9987792570794
Iteration: 2, Func. Count: 19, Neg. LLF: 138.12239087970687
Iteration: 3, Func. Count: 27, Neg. LLF: 138.0600967593886
Iteration: 4, Func. Count: 35, Neg. LLF: 138.0566631429718
Iteration: 5, Func. Count: 43, Neg. LLF: 138.05185854440597
Iteration: 6, Func. Count: 51, Neg. LLF: 138.04760761182416
Iteration: 7, Func. Count: 59, Neg. LLF: 138.04652377600962
Iteration: 8, Func. Count: 67, Neg. LLF: 138.04636830432813
Iteration: 9, Func. Count: 75, Neg. LLF: 138.04636227168365
Iteration: 10, Func. Count: 82, Neg. LLF: 138.04636227165247
Optimization terminated successfully (Exit mode 0)
Current function value: 138.04636227168365
Iterations: 10
Function evaluations: 82
Gradient evaluations: 10
Iteration: 1, Func. Count: 6, Neg. LLF: 152.13279898555936
Iteration: 2, Func. Count: 12, Neg. LLF: 142.5844928517281
Iteration: 3, Func. Count: 18, Neg. LLF: 140.71942407531904
Iteration: 4, Func. Count: 23, Neg. LLF: 138.73161712995866
Iteration: 5, Func. Count: 28, Neg. LLF: 138.56358353282715
Iteration: 6, Func. Count: 33, Neg. LLF: 138.55320641895665
Iteration: 7, Func. Count: 38, Neg. LLF: 138.55316827952274
Iteration: 8, Func. Count: 43, Neg. LLF: 138.553157572485
Iteration: 9, Func. Count: 48, Neg. LLF: 138.5531411544447
Iteration: 10, Func. Count: 53, Neg. LLF: 138.55313918987946
Iteration: 11, Func. Count: 57, Neg. LLF: 138.5531390936331
Optimization terminated successfully (Exit mode 0)
Current function value: 138.55313918987946
Iterations: 11
Function evaluations: 57
Gradient evaluations: 11
Iteration: 1, Func. Count: 7, Neg. LLF: 597.2442798002071
Iteration: 2, Func. Count: 15, Neg. LLF: 140.68350635309622
Iteration: 3, Func. Count: 22, Neg. LLF: 150.59326595356387
Iteration: 4, Func. Count: 29, Neg. LLF: 135.98633022174948
Iteration: 5, Func. Count: 35, Neg. LLF: 136.29437712625338
Iteration: 6, Func. Count: 42, Neg. LLF: 135.85221944144416
Iteration: 7, Func. Count: 48, Neg. LLF: 135.85179619399688
Iteration: 8, Func. Count: 54, Neg. LLF: 135.85171559552234
Iteration: 9, Func. Count: 60, Neg. LLF: 135.8517139978538
Iteration: 10, Func. Count: 65, Neg. LLF: 135.8517138858916
Optimization terminated successfully (Exit mode 0)
Current function value: 135.8517139978538
Iterations: 10
Function evaluations: 65
Gradient evaluations: 10
Iteration: 1, Func. Count: 8, Neg. LLF: 166.30572827528158
Iteration: 2, Func. Count: 16, Neg. LLF: 138.33293571044496
Iteration: 3, Func. Count: 24, Neg. LLF: 143.44311573183225
Iteration: 4, Func. Count: 32, Neg. LLF: 137.69719740874712
Iteration: 5, Func. Count: 40, Neg. LLF: 136.92399197213763
Iteration: 6, Func. Count: 47, Neg. LLF: 136.4785134871564
Iteration: 7, Func. Count: 54, Neg. LLF: 136.38539912502645
Iteration: 8, Func. Count: 61, Neg. LLF: 136.32604486602912
Iteration: 9, Func. Count: 69, Neg. LLF: 136.18572785087014
Iteration: 10, Func. Count: 76, Neg. LLF: 136.16013508023772
Iteration: 11, Func. Count: 83, Neg. LLF: 136.14611314590672
Iteration: 12, Func. Count: 90, Neg. LLF: 136.11909633798507
Iteration: 13, Func. Count: 97, Neg. LLF: 135.87372574301793
Iteration: 14, Func. Count: 104, Neg. LLF: 135.85692072438601
Iteration: 15, Func. Count: 111, Neg. LLF: 135.8520539990773
Iteration: 16, Func. Count: 118, Neg. LLF: 135.85178122870687
Iteration: 17, Func. Count: 125, Neg. LLF: 135.85171436137628
Iteration: 18, Func. Count: 131, Neg. LLF: 135.85171427818713
Optimization terminated successfully (Exit mode 0)
Current function value: 135.85171436137628
Iterations: 18
Function evaluations: 131
Gradient evaluations: 18
Iteration: 1, Func. Count: 9, Neg. LLF: 167.76718192984836
Iteration: 2, Func. Count: 18, Neg. LLF: 137.34092343230384
Iteration: 3, Func. Count: 26, Neg. LLF: 136.69437555004035
Iteration: 4, Func. Count: 34, Neg. LLF: 145.94337761439448
Iteration: 5, Func. Count: 43, Neg. LLF: 135.91423786336793
Iteration: 6, Func. Count: 51, Neg. LLF: 135.7521100903786
Iteration: 7, Func. Count: 59, Neg. LLF: 136.34646554820833
Iteration: 8, Func. Count: 68, Neg. LLF: 135.35005386042474
Iteration: 9, Func. Count: 76, Neg. LLF: 135.34709895790303
Iteration: 10, Func. Count: 85, Neg. LLF: 135.325826748018
Iteration: 11, Func. Count: 93, Neg. LLF: 135.3258186935277
Iteration: 12, Func. Count: 100, Neg. LLF: 135.3258186010327
Optimization terminated successfully (Exit mode 0)
Current function value: 135.3258186935277
Iterations: 12
Function evaluations: 100
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 173.02076443699445
Iteration: 2, Func. Count: 21, Neg. LLF: 138.72442101388526
Iteration: 3, Func. Count: 31, Neg. LLF: 137.793208028201
Iteration: 4, Func. Count: 40, Neg. LLF: 137.6211477141385
Iteration: 5, Func. Count: 49, Neg. LLF: 137.1208580314837
Iteration: 6, Func. Count: 58, Neg. LLF: 136.73143353134304
Iteration: 7, Func. Count: 67, Neg. LLF: 138.28248917814253
Iteration: 8, Func. Count: 77, Neg. LLF: 136.45614336937751
Iteration: 9, Func. Count: 86, Neg. LLF: 136.3515768638093
Iteration: 10, Func. Count: 95, Neg. LLF: 136.24109551126017
Iteration: 11, Func. Count: 104, Neg. LLF: 136.197251358936
Iteration: 12, Func. Count: 113, Neg. LLF: 136.13503991395405
Iteration: 13, Func. Count: 122, Neg. LLF: 136.0559199518399
Iteration: 14, Func. Count: 131, Neg. LLF: 135.8912137111286
Iteration: 15, Func. Count: 140, Neg. LLF: 135.88199954798083
Iteration: 16, Func. Count: 149, Neg. LLF: 135.86319944627488
Iteration: 17, Func. Count: 158, Neg. LLF: 135.8531618506675
Iteration: 18, Func. Count: 167, Neg. LLF: 135.85111471568072
Iteration: 19, Func. Count: 176, Neg. LLF: 135.85144932407184
Iteration: 20, Func. Count: 185, Neg. LLF: 135.85163597576835
Iteration: 21, Func. Count: 204, Neg. LLF: 135.85226740472794
Iteration: 22, Func. Count: 215, Neg. LLF: 135.8517144450032
Iteration: 23, Func. Count: 225, Neg. LLF: 135.85171469002245
Iteration: 24, Func. Count: 235, Neg. LLF: 135.85171398178502
Iteration: 25, Func. Count: 245, Neg. LLF: 135.851713982683
Iteration: 26, Func. Count: 253, Neg. LLF: 135.8517140352172
Optimization terminated successfully (Exit mode 0)
Current function value: 135.851713982683
Iterations: 27
Function evaluations: 253
Gradient evaluations: 26
Iteration: 1, Func. Count: 7, Neg. LLF: 152.87228248867729
Iteration: 2, Func. Count: 14, Neg. LLF: 141.31330017743468
Iteration: 3, Func. Count: 20, Neg. LLF: 147.66423144334
Iteration: 4, Func. Count: 29, Neg. LLF: 140.66324477113767
Iteration: 5, Func. Count: 35, Neg. LLF: 139.69568188250824
Iteration: 6, Func. Count: 41, Neg. LLF: 138.56496136215503
Iteration: 7, Func. Count: 47, Neg. LLF: 138.56052614372948
Iteration: 8, Func. Count: 53, Neg. LLF: 138.55051457872975
Iteration: 9, Func. Count: 59, Neg. LLF: 138.55008075277792
Iteration: 10, Func. Count: 65, Neg. LLF: 138.55007329637553
Iteration: 11, Func. Count: 71, Neg. LLF: 138.55007095584276
Iteration: 12, Func. Count: 76, Neg. LLF: 138.5500709557933
Optimization terminated successfully (Exit mode 0)
Current function value: 138.55007095584276
Iterations: 12
Function evaluations: 76
Gradient evaluations: 12
Iteration: 1, Func. Count: 8, Neg. LLF: 602.4139923784522
Iteration: 2, Func. Count: 17, Neg. LLF: 140.74319604385323
Iteration: 3, Func. Count: 25, Neg. LLF: 151.0008447998071
Iteration: 4, Func. Count: 33, Neg. LLF: 135.99248043628302
Iteration: 5, Func. Count: 40, Neg. LLF: 136.29721339620946
Iteration: 6, Func. Count: 48, Neg. LLF: 135.85226804406622
Iteration: 7, Func. Count: 55, Neg. LLF: 135.85180597090147
Iteration: 8, Func. Count: 62, Neg. LLF: 135.8517155545978
Iteration: 9, Func. Count: 69, Neg. LLF: 135.85171399594725
Iteration: 10, Func. Count: 75, Neg. LLF: 135.85171388398206
Optimization terminated successfully (Exit mode 0)
Current function value: 135.85171399594725
Iterations: 10
Function evaluations: 75
Gradient evaluations: 10
Iteration: 1, Func. Count: 9, Neg. LLF: 166.3920684500468
Iteration: 2, Func. Count: 18, Neg. LLF: 138.34403238948406
Iteration: 3, Func. Count: 27, Neg. LLF: 143.4192397077956
Iteration: 4, Func. Count: 36, Neg. LLF: 137.67080365694878
Iteration: 5, Func. Count: 45, Neg. LLF: 136.9269044805156
Iteration: 6, Func. Count: 53, Neg. LLF: 136.47969906496542
Iteration: 7, Func. Count: 61, Neg. LLF: 136.4321321979232
Iteration: 8, Func. Count: 70, Neg. LLF: 136.18652357080512
Iteration: 9, Func. Count: 78, Neg. LLF: 136.15000190385558
Iteration: 10, Func. Count: 86, Neg. LLF: 136.1301354881668
Iteration: 11, Func. Count: 94, Neg. LLF: 135.94976632306847
Iteration: 12, Func. Count: 102, Neg. LLF: 135.85275124865763
Iteration: 13, Func. Count: 110, Neg. LLF: 135.8523641141799
Iteration: 14, Func. Count: 118, Neg. LLF: 135.85188050110483
Iteration: 15, Func. Count: 126, Neg. LLF: 135.85177359394527
Iteration: 16, Func. Count: 134, Neg. LLF: 135.8517076459278
Iteration: 17, Func. Count: 142, Neg. LLF: 135.85172606129598
Iteration: 18, Func. Count: 151, Neg. LLF: 135.85171062709085
Iteration: 19, Func. Count: 159, Neg. LLF: 135.85170262190553
Optimization terminated successfully (Exit mode 0)
Current function value: 135.8517106192737
Iterations: 19
Function evaluations: 169
Gradient evaluations: 19
Iteration: 1, Func. Count: 10, Neg. LLF: 167.89356534704243
Iteration: 2, Func. Count: 20, Neg. LLF: 137.25000897128564
Iteration: 3, Func. Count: 29, Neg. LLF: 136.59714093353682
Iteration: 4, Func. Count: 38, Neg. LLF: 144.69370098059468
Iteration: 5, Func. Count: 48, Neg. LLF: 135.89846308397512
Iteration: 6, Func. Count: 57, Neg. LLF: 135.6919712877975
Iteration: 7, Func. Count: 66, Neg. LLF: 137.60881294556458
Iteration: 8, Func. Count: 76, Neg. LLF: 135.85325543284372
Iteration: 9, Func. Count: 86, Neg. LLF: 135.34121271157738
Iteration: 10, Func. Count: 95, Neg. LLF: 135.32724945491688
Iteration: 11, Func. Count: 104, Neg. LLF: 135.32585034558952
Iteration: 12, Func. Count: 113, Neg. LLF: 135.32581881277466
Iteration: 13, Func. Count: 121, Neg. LLF: 135.32581872020782
Optimization terminated successfully (Exit mode 0)
Current function value: 135.32581881277466
Iterations: 13
Function evaluations: 121
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 173.18652669369862
Iteration: 2, Func. Count: 23, Neg. LLF: 138.71423378651951
Iteration: 3, Func. Count: 34, Neg. LLF: 137.76819469984974
Iteration: 4, Func. Count: 44, Neg. LLF: 137.6460017464823
Iteration: 5, Func. Count: 55, Neg. LLF: 136.46721448239626
Iteration: 6, Func. Count: 65, Neg. LLF: 136.38534299028578
Iteration: 7, Func. Count: 76, Neg. LLF: 135.45291857778392
Iteration: 8, Func. Count: 86, Neg. LLF: 135.4148491059739
Iteration: 9, Func. Count: 96, Neg. LLF: 135.36038130233422
Iteration: 10, Func. Count: 106, Neg. LLF: 135.34456652021953
Iteration: 11, Func. Count: 116, Neg. LLF: 135.3260052017794
Iteration: 12, Func. Count: 126, Neg. LLF: 135.32581968089013
Iteration: 13, Func. Count: 136, Neg. LLF: 135.325818750658
Optimization terminated successfully (Exit mode 0)
Current function value: 135.325818750658
Iterations: 13
Function evaluations: 136
Gradient evaluations: 13
Iteration: 1, Func. Count: 8, Neg. LLF: 152.2816334081347
Iteration: 2, Func. Count: 16, Neg. LLF: 141.70264323201388
Iteration: 3, Func. Count: 23, Neg. LLF: 139.06947896475708
Iteration: 4, Func. Count: 30, Neg. LLF: 138.965098472922
Iteration: 5, Func. Count: 38, Neg. LLF: 138.6874701035353
Iteration: 6, Func. Count: 45, Neg. LLF: 138.56178559242863
Iteration: 7, Func. Count: 52, Neg. LLF: 138.55375014119386
Iteration: 8, Func. Count: 59, Neg. LLF: 138.55014831085487
Iteration: 9, Func. Count: 66, Neg. LLF: 138.550074404084
Iteration: 10, Func. Count: 73, Neg. LLF: 138.55007130924227
Iteration: 11, Func. Count: 79, Neg. LLF: 138.55007140348684
Optimization terminated successfully (Exit mode 0)
Current function value: 138.55007130924227
Iterations: 11
Function evaluations: 79
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 593.9184502021508
Iteration: 2, Func. Count: 19, Neg. LLF: 140.81231670207757
Iteration: 3, Func. Count: 28, Neg. LLF: 151.2465491086927
Iteration: 4, Func. Count: 37, Neg. LLF: 135.99502067520913
Iteration: 5, Func. Count: 45, Neg. LLF: 136.27537106668518
Iteration: 6, Func. Count: 54, Neg. LLF: 135.8522772371228
Iteration: 7, Func. Count: 62, Neg. LLF: 135.8518078373322
Iteration: 8, Func. Count: 70, Neg. LLF: 135.85171551768403
Iteration: 9, Func. Count: 78, Neg. LLF: 135.8517139961456
Iteration: 10, Func. Count: 85, Neg. LLF: 135.85171388417936
Optimization terminated successfully (Exit mode 0)
Current function value: 135.8517139961456
Iterations: 10
Function evaluations: 85
Gradient evaluations: 10
Iteration: 1, Func. Count: 10, Neg. LLF: 166.37067017980687
Iteration: 2, Func. Count: 20, Neg. LLF: 138.39905998758326
Iteration: 3, Func. Count: 30, Neg. LLF: 143.19548820087633
Iteration: 4, Func. Count: 40, Neg. LLF: 137.6314249901859
Iteration: 5, Func. Count: 50, Neg. LLF: 136.9325585971529
Iteration: 6, Func. Count: 59, Neg. LLF: 136.47340651246083
Iteration: 7, Func. Count: 68, Neg. LLF: 136.31826364501373
Iteration: 8, Func. Count: 77, Neg. LLF: 136.34746372306736
Iteration: 9, Func. Count: 87, Neg. LLF: 136.16549171082366
Iteration: 10, Func. Count: 96, Neg. LLF: 136.14858771955562
Iteration: 11, Func. Count: 105, Neg. LLF: 136.13903114154172
Iteration: 12, Func. Count: 114, Neg. LLF: 136.0878365388953
Iteration: 13, Func. Count: 123, Neg. LLF: 135.87417382192473
Iteration: 14, Func. Count: 132, Neg. LLF: 135.85638525860338
Iteration: 15, Func. Count: 141, Neg. LLF: 135.85218298256504
Iteration: 16, Func. Count: 150, Neg. LLF: 135.85170383711875
Iteration: 17, Func. Count: 159, Neg. LLF: 135.8517173029287
Iteration: 18, Func. Count: 168, Neg. LLF: 135.85173657916192
Optimization terminated successfully (Exit mode 0)
Current function value: 135.85171702612024
Iterations: 19
Function evaluations: 169
Gradient evaluations: 18
Iteration: 1, Func. Count: 11, Neg. LLF: 167.88330046879668
Iteration: 2, Func. Count: 22, Neg. LLF: 137.36548394150245
Iteration: 3, Func. Count: 32, Neg. LLF: 136.65988236494547
Iteration: 4, Func. Count: 42, Neg. LLF: 145.7050272963007
Iteration: 5, Func. Count: 53, Neg. LLF: 135.90340102752492
Iteration: 6, Func. Count: 63, Neg. LLF: 135.8059448268711
Iteration: 7, Func. Count: 73, Neg. LLF: 136.20329502456454
Iteration: 8, Func. Count: 84, Neg. LLF: 135.56025650320643
Iteration: 9, Func. Count: 95, Neg. LLF: 135.32971295594285
Iteration: 10, Func. Count: 105, Neg. LLF: 135.32600115867544
Iteration: 11, Func. Count: 115, Neg. LLF: 135.32584348770575
Iteration: 12, Func. Count: 125, Neg. LLF: 135.32581905712823
Iteration: 13, Func. Count: 134, Neg. LLF: 135.32581896465518
Optimization terminated successfully (Exit mode 0)
Current function value: 135.32581905712823
Iterations: 13
Function evaluations: 134
Gradient evaluations: 13
Iteration: 1, Func. Count: 12, Neg. LLF: 173.17507953448705
Iteration: 2, Func. Count: 25, Neg. LLF: 138.73680521698392
Iteration: 3, Func. Count: 37, Neg. LLF: 137.8185226098905
Iteration: 4, Func. Count: 48, Neg. LLF: 137.64109127736143
Iteration: 5, Func. Count: 59, Neg. LLF: 137.1968959544953
Iteration: 6, Func. Count: 70, Neg. LLF: 137.19253361788856
Iteration: 7, Func. Count: 82, Neg. LLF: 136.31117822718846
Iteration: 8, Func. Count: 93, Neg. LLF: 136.21041116266872
Iteration: 9, Func. Count: 104, Neg. LLF: 136.1894999908511
Iteration: 10, Func. Count: 115, Neg. LLF: 136.1610363895432
Iteration: 11, Func. Count: 126, Neg. LLF: 136.13593494195305
Iteration: 12, Func. Count: 137, Neg. LLF: 136.07140207231612
Iteration: 13, Func. Count: 148, Neg. LLF: 135.86952987046527
Iteration: 14, Func. Count: 159, Neg. LLF: 135.86644232528073
Iteration: 15, Func. Count: 170, Neg. LLF: 135.86050112838242
Iteration: 16, Func. Count: 181, Neg. LLF: 135.8286060658009
Iteration: 17, Func. Count: 193, Neg. LLF: 135.8258570997807
Iteration: 18, Func. Count: 214, Neg. LLF: 135.8411698099119
Iteration: 19, Func. Count: 225, Neg. LLF: 135.8450907074199
Iteration: 20, Func. Count: 246, Neg. LLF: 135.82037824538924
Iteration: 21, Func. Count: 267, Neg. LLF: 136.58641619072748
Iteration: 22, Func. Count: 280, Neg. LLF: 135.8519594175735
Iteration: 23, Func. Count: 292, Neg. LLF: 135.85196562919467
Iteration: 24, Func. Count: 304, Neg. LLF: 135.85171599172213
Iteration: 25, Func. Count: 316, Neg. LLF: 135.85172571864058
Iteration: 26, Func. Count: 328, Neg. LLF: 135.85171401410534
Iteration: 27, Func. Count: 338, Neg. LLF: 135.8517140666714
Optimization terminated successfully (Exit mode 0)
Current function value: 135.85171401410534
Iterations: 28
Function evaluations: 338
Gradient evaluations: 27
Iteration: 1, Func. Count: 9, Neg. LLF: 148.547973776669
Iteration: 2, Func. Count: 18, Neg. LLF: 141.73805253682073
Iteration: 3, Func. Count: 26, Neg. LLF: 139.75671513939096
Iteration: 4, Func. Count: 34, Neg. LLF: 138.93752201834835
Iteration: 5, Func. Count: 42, Neg. LLF: 139.26159381507463
Iteration: 6, Func. Count: 52, Neg. LLF: 138.60122277638533
Iteration: 7, Func. Count: 60, Neg. LLF: 138.5586616352742
Iteration: 8, Func. Count: 68, Neg. LLF: 138.5529471429524
Iteration: 9, Func. Count: 76, Neg. LLF: 138.55098821439043
Iteration: 10, Func. Count: 84, Neg. LLF: 138.55007877742653
Iteration: 11, Func. Count: 92, Neg. LLF: 138.550071069465
Iteration: 12, Func. Count: 99, Neg. LLF: 138.55007124604725
Optimization terminated successfully (Exit mode 0)
Current function value: 138.550071069465
Iterations: 12
Function evaluations: 99
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 587.1390264237125
Iteration: 2, Func. Count: 21, Neg. LLF: 140.8261154822681
Iteration: 3, Func. Count: 31, Neg. LLF: 151.0998804235432
Iteration: 4, Func. Count: 41, Neg. LLF: 135.9924417773768
Iteration: 5, Func. Count: 50, Neg. LLF: 136.26096572134486
Iteration: 6, Func. Count: 60, Neg. LLF: 135.85227923114937
Iteration: 7, Func. Count: 69, Neg. LLF: 135.85180618329102
Iteration: 8, Func. Count: 78, Neg. LLF: 135.8517156014802
Iteration: 9, Func. Count: 87, Neg. LLF: 135.85171399702497
Iteration: 10, Func. Count: 95, Neg. LLF: 135.8517138850613
Optimization terminated successfully (Exit mode 0)
Current function value: 135.85171399702497
Iterations: 10
Function evaluations: 95
Gradient evaluations: 10
Iteration: 1, Func. Count: 11, Neg. LLF: 166.3178350454252
Iteration: 2, Func. Count: 22, Neg. LLF: 138.4370164978995
Iteration: 3, Func. Count: 33, Neg. LLF: 143.0197625184186
Iteration: 4, Func. Count: 44, Neg. LLF: 137.64375996262655
Iteration: 5, Func. Count: 55, Neg. LLF: 136.93171668135201
Iteration: 6, Func. Count: 65, Neg. LLF: 136.47039670047917
Iteration: 7, Func. Count: 75, Neg. LLF: 136.34217909458027
Iteration: 8, Func. Count: 85, Neg. LLF: 136.3557913823643
Iteration: 9, Func. Count: 96, Neg. LLF: 136.17166209629454
Iteration: 10, Func. Count: 106, Neg. LLF: 136.15044779318237
Iteration: 11, Func. Count: 116, Neg. LLF: 136.1415511842154
Iteration: 12, Func. Count: 126, Neg. LLF: 136.09734620399564
Iteration: 13, Func. Count: 136, Neg. LLF: 135.87385768903454
Iteration: 14, Func. Count: 146, Neg. LLF: 135.85639511599442
Iteration: 15, Func. Count: 156, Neg. LLF: 135.85209699914716
Iteration: 16, Func. Count: 166, Neg. LLF: 135.8517546569142
Iteration: 17, Func. Count: 176, Neg. LLF: 135.851713034388
Iteration: 18, Func. Count: 186, Neg. LLF: 135.85168418045913
Optimization terminated successfully (Exit mode 0)
Current function value: 135.85171300533997
Iterations: 18
Function evaluations: 196
Gradient evaluations: 18
Iteration: 1, Func. Count: 12, Neg. LLF: 167.83599312366664
Iteration: 2, Func. Count: 24, Neg. LLF: 137.39399143792588
Iteration: 3, Func. Count: 35, Neg. LLF: 136.64284579564847
Iteration: 4, Func. Count: 46, Neg. LLF: 145.24656281955274
Iteration: 5, Func. Count: 58, Neg. LLF: 135.90701928528628
Iteration: 6, Func. Count: 69, Neg. LLF: 136.22268390885415
Iteration: 7, Func. Count: 81, Neg. LLF: 135.48816241101787
Iteration: 8, Func. Count: 92, Neg. LLF: 135.42813272205856
Iteration: 9, Func. Count: 103, Neg. LLF: 135.3408756846691
Iteration: 10, Func. Count: 114, Neg. LLF: 135.32725217038728
Iteration: 11, Func. Count: 125, Neg. LLF: 135.32587669642072
Iteration: 12, Func. Count: 136, Neg. LLF: 135.3258194825295
Iteration: 13, Func. Count: 147, Neg. LLF: 135.3258186881099
Optimization terminated successfully (Exit mode 0)
Current function value: 135.3258186881099
Iterations: 13
Function evaluations: 147
Gradient evaluations: 13
Iteration: 1, Func. Count: 13, Neg. LLF: 173.09222583386003
Iteration: 2, Func. Count: 27, Neg. LLF: 138.73892979319936
Iteration: 3, Func. Count: 40, Neg. LLF: 137.8147992465452
Iteration: 4, Func. Count: 52, Neg. LLF: 137.67213822493162
Iteration: 5, Func. Count: 64, Neg. LLF: 136.85651154330938
Iteration: 6, Func. Count: 76, Neg. LLF: 136.77803892187345
Iteration: 7, Func. Count: 89, Neg. LLF: 135.6884876451296
Iteration: 8, Func. Count: 101, Neg. LLF: 135.66915701389385
Iteration: 9, Func. Count: 114, Neg. LLF: 135.39347715778362
Iteration: 10, Func. Count: 126, Neg. LLF: 135.36619947076642
Iteration: 11, Func. Count: 138, Neg. LLF: 135.32640510512957
Iteration: 12, Func. Count: 150, Neg. LLF: 135.32584845978408
Iteration: 13, Func. Count: 162, Neg. LLF: 135.3258195582506
Iteration: 14, Func. Count: 174, Neg. LLF: 135.32581866656008
Optimization terminated successfully (Exit mode 0)
Current function value: 135.32581866656008
Iterations: 14
Function evaluations: 174
Gradient evaluations: 14
Iteration: 1, Func. Count: 6, Neg. LLF: 145.65910151733544
Iteration: 2, Func. Count: 12, Neg. LLF: 145.72048875515134
Iteration: 3, Func. Count: 18, Neg. LLF: 140.52102081964767
Iteration: 4, Func. Count: 23, Neg. LLF: 139.06097593608686
Iteration: 5, Func. Count: 28, Neg. LLF: 140.98704101739415
Iteration: 6, Func. Count: 34, Neg. LLF: 138.56181513815554
Iteration: 7, Func. Count: 39, Neg. LLF: 138.5553536090701
Iteration: 8, Func. Count: 44, Neg. LLF: 138.55345521396245
Iteration: 9, Func. Count: 49, Neg. LLF: 138.55326775118738
Iteration: 10, Func. Count: 54, Neg. LLF: 138.55313918496077
Iteration: 11, Func. Count: 58, Neg. LLF: 138.55313922358246
Optimization terminated successfully (Exit mode 0)
Current function value: 138.55313918496077
Iterations: 11
Function evaluations: 58
Gradient evaluations: 11
Iteration: 1, Func. Count: 7, Neg. LLF: 4159.370333527468
Iteration: 2, Func. Count: 15, Neg. LLF: 138.14565579141404
Iteration: 3, Func. Count: 21, Neg. LLF: 138.13278824027378
Iteration: 4, Func. Count: 27, Neg. LLF: 138.1075596163016
Iteration: 5, Func. Count: 33, Neg. LLF: 138.09885587739794
Iteration: 6, Func. Count: 39, Neg. LLF: 138.09173764455673
Iteration: 7, Func. Count: 45, Neg. LLF: 138.09147375488436
Iteration: 8, Func. Count: 51, Neg. LLF: 138.09146302579913
Iteration: 9, Func. Count: 57, Neg. LLF: 138.09146207185535
Optimization terminated successfully (Exit mode 0)
Current function value: 138.09146207185535
Iterations: 9
Function evaluations: 57
Gradient evaluations: 9
Iteration: 1, Func. Count: 8, Neg. LLF: 28264578.35152234
Iteration: 2, Func. Count: 17, Neg. LLF: 138.1433260019273
Iteration: 3, Func. Count: 24, Neg. LLF: 138.1147070364919
Iteration: 4, Func. Count: 31, Neg. LLF: 138.1906104762567
Iteration: 5, Func. Count: 39, Neg. LLF: 138.10377064111208
Iteration: 6, Func. Count: 46, Neg. LLF: 138.10359101732607
Iteration: 7, Func. Count: 53, Neg. LLF: 138.1030299073959
Iteration: 8, Func. Count: 60, Neg. LLF: 138.10201974772446
Iteration: 9, Func. Count: 67, Neg. LLF: 138.0949035798852
Iteration: 10, Func. Count: 74, Neg. LLF: 138.09193979193344
Iteration: 11, Func. Count: 81, Neg. LLF: 138.09149508987113
Iteration: 12, Func. Count: 88, Neg. LLF: 138.09155831918218
Iteration: 13, Func. Count: 95, Neg. LLF: 138.09146231619016
Optimization terminated successfully (Exit mode 0)
Current function value: 138.0914623158449
Iterations: 13
Function evaluations: 95
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 172.61686266881998
Iteration: 2, Func. Count: 19, Neg. LLF: 138.27211429901286
Iteration: 3, Func. Count: 27, Neg. LLF: 138.24756949938822
Iteration: 4, Func. Count: 35, Neg. LLF: 138.18136912707888
Iteration: 5, Func. Count: 43, Neg. LLF: 139.34330585895503
Iteration: 6, Func. Count: 52, Neg. LLF: 138.1795279108625
Iteration: 7, Func. Count: 61, Neg. LLF: 138.12199283028318
Iteration: 8, Func. Count: 69, Neg. LLF: 138.11423682475885
Iteration: 9, Func. Count: 77, Neg. LLF: 138.11119936072637
Iteration: 10, Func. Count: 85, Neg. LLF: 138.1107663125506
Iteration: 11, Func. Count: 93, Neg. LLF: 138.11054467645744
Iteration: 12, Func. Count: 101, Neg. LLF: 138.11002285565695
Iteration: 13, Func. Count: 109, Neg. LLF: 138.1047956005723
Iteration: 14, Func. Count: 117, Neg. LLF: 138.1036924991191
Iteration: 15, Func. Count: 125, Neg. LLF: 138.10252687453522
Iteration: 16, Func. Count: 133, Neg. LLF: 138.09154921077078
Iteration: 17, Func. Count: 141, Neg. LLF: 138.10923077912943
Iteration: 18, Func. Count: 151, Neg. LLF: 138.09979955336402
Optimization terminated successfully (Exit mode 0)
Current function value: 138.0915278655094
Iterations: 18
Function evaluations: 154
Gradient evaluations: 18
Iteration: 1, Func. Count: 10, Neg. LLF: 174.1951005229096
Iteration: 2, Func. Count: 21, Neg. LLF: 138.11574830441108
Iteration: 3, Func. Count: 30, Neg. LLF: 138.06462055529255
Iteration: 4, Func. Count: 39, Neg. LLF: 138.07772183280463
Iteration: 5, Func. Count: 49, Neg. LLF: 138.05517165425366
Iteration: 6, Func. Count: 58, Neg. LLF: 138.04688542332693
Iteration: 7, Func. Count: 67, Neg. LLF: 138.04649175284382
Iteration: 8, Func. Count: 76, Neg. LLF: 138.04636365216905
Iteration: 9, Func. Count: 85, Neg. LLF: 138.04636223500097
Iteration: 10, Func. Count: 93, Neg. LLF: 138.04636223506216
Optimization terminated successfully (Exit mode 0)
Current function value: 138.04636223500097
Iterations: 10
Function evaluations: 93
Gradient evaluations: 10
Iteration: 1, Func. Count: 7, Neg. LLF: 149.98412120483277
Iteration: 2, Func. Count: 14, Neg. LLF: 142.71845140857985
Iteration: 3, Func. Count: 21, Neg. LLF: 140.6730614262085
Iteration: 4, Func. Count: 27, Neg. LLF: 139.0113726784561
Iteration: 5, Func. Count: 33, Neg. LLF: 138.61041147013677
Iteration: 6, Func. Count: 39, Neg. LLF: 138.58294385123233
Iteration: 7, Func. Count: 45, Neg. LLF: 138.56306058218286
Iteration: 8, Func. Count: 51, Neg. LLF: 138.55498638941114
Iteration: 9, Func. Count: 57, Neg. LLF: 138.55327230178537
Iteration: 10, Func. Count: 63, Neg. LLF: 138.55314450210557
Iteration: 11, Func. Count: 69, Neg. LLF: 138.55313911239142
Iteration: 12, Func. Count: 74, Neg. LLF: 138.5531392086359
Optimization terminated successfully (Exit mode 0)
Current function value: 138.55313911239142
Iterations: 12
Function evaluations: 74
Gradient evaluations: 12
Iteration: 1, Func. Count: 8, Neg. LLF: 149.35053648327494
Iteration: 2, Func. Count: 17, Neg. LLF: 138.6361831984684
Iteration: 3, Func. Count: 24, Neg. LLF: 138.59570314124494
Iteration: 4, Func. Count: 31, Neg. LLF: 138.5931592895437
Iteration: 5, Func. Count: 38, Neg. LLF: 138.64603024742382
Iteration: 6, Func. Count: 46, Neg. LLF: 138.53195232748624
Iteration: 7, Func. Count: 53, Neg. LLF: 136.9963754361844
Iteration: 8, Func. Count: 60, Neg. LLF: 136.40092912001393
Iteration: 9, Func. Count: 67, Neg. LLF: 136.83266977566134
Iteration: 10, Func. Count: 75, Neg. LLF: 135.87346992786388
Iteration: 11, Func. Count: 82, Neg. LLF: 136.0578462294119
Iteration: 12, Func. Count: 90, Neg. LLF: 135.85435713869597
Iteration: 13, Func. Count: 97, Neg. LLF: 135.85172119702483
Iteration: 14, Func. Count: 104, Neg. LLF: 135.8517141040274
Iteration: 15, Func. Count: 110, Neg. LLF: 135.85171399219777
Optimization terminated successfully (Exit mode 0)
Current function value: 135.8517141040274
Iterations: 15
Function evaluations: 110
Gradient evaluations: 15
Iteration: 1, Func. Count: 9, Neg. LLF: 166.4771005851497
Iteration: 2, Func. Count: 18, Neg. LLF: 138.35749736822814
Iteration: 3, Func. Count: 27, Neg. LLF: 143.33270346415765
Iteration: 4, Func. Count: 36, Neg. LLF: 137.61817659328213
Iteration: 5, Func. Count: 45, Neg. LLF: 136.92770676000387
Iteration: 6, Func. Count: 53, Neg. LLF: 136.47332188506917
Iteration: 7, Func. Count: 61, Neg. LLF: 136.34090947697976
Iteration: 8, Func. Count: 69, Neg. LLF: 136.35932800367985
Iteration: 9, Func. Count: 78, Neg. LLF: 136.16837353674438
Iteration: 10, Func. Count: 86, Neg. LLF: 136.1491422329512
Iteration: 11, Func. Count: 94, Neg. LLF: 136.1402967263588
Iteration: 12, Func. Count: 102, Neg. LLF: 136.09089834051844
Iteration: 13, Func. Count: 110, Neg. LLF: 135.87452686516892
Iteration: 14, Func. Count: 118, Neg. LLF: 135.856358352833
Iteration: 15, Func. Count: 126, Neg. LLF: 135.8521560616903
Iteration: 16, Func. Count: 134, Neg. LLF: 135.8517227376771
Iteration: 17, Func. Count: 142, Neg. LLF: 135.85171360379076
Iteration: 18, Func. Count: 150, Neg. LLF: 135.85171184620745
Optimization terminated successfully (Exit mode 0)
Current function value: 135.85171306146938
Iterations: 18
Function evaluations: 152
Gradient evaluations: 18
Iteration: 1, Func. Count: 10, Neg. LLF: 167.90746985754822
Iteration: 2, Func. Count: 20, Neg. LLF: 137.37242281334008
Iteration: 3, Func. Count: 29, Neg. LLF: 136.70000682943123
Iteration: 4, Func. Count: 38, Neg. LLF: 146.6557191626424
Iteration: 5, Func. Count: 48, Neg. LLF: 135.9228144645493
Iteration: 6, Func. Count: 57, Neg. LLF: 135.77133789718354
Iteration: 7, Func. Count: 66, Neg. LLF: 135.6846885240875
Iteration: 8, Func. Count: 76, Neg. LLF: 135.33313349978312
Iteration: 9, Func. Count: 85, Neg. LLF: 135.33026849147976
Iteration: 10, Func. Count: 94, Neg. LLF: 135.3258831822955
Iteration: 11, Func. Count: 103, Neg. LLF: 135.32581979206043
Iteration: 12, Func. Count: 112, Neg. LLF: 135.32581867656793
Iteration: 13, Func. Count: 120, Neg. LLF: 135.32581858404012
Optimization terminated successfully (Exit mode 0)
Current function value: 135.32581867656793
Iterations: 13
Function evaluations: 120
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 173.20666397218463
Iteration: 2, Func. Count: 23, Neg. LLF: 138.76855618290176
Iteration: 3, Func. Count: 34, Neg. LLF: 137.8498910876271
Iteration: 4, Func. Count: 44, Neg. LLF: 137.42459575289922
Iteration: 5, Func. Count: 54, Neg. LLF: 136.99514398896693
Iteration: 6, Func. Count: 64, Neg. LLF: 136.75900806567753
Iteration: 7, Func. Count: 74, Neg. LLF: 136.58182585777124
Iteration: 8, Func. Count: 84, Neg. LLF: 136.49819674038403
Iteration: 9, Func. Count: 94, Neg. LLF: 136.38629836341522
Iteration: 10, Func. Count: 104, Neg. LLF: 136.36854116539845
Iteration: 11, Func. Count: 114, Neg. LLF: 136.3598420860228
Iteration: 12, Func. Count: 124, Neg. LLF: 136.35942543161056
Iteration: 13, Func. Count: 134, Neg. LLF: 136.35940693762137
Iteration: 14, Func. Count: 143, Neg. LLF: 136.359406936435
Optimization terminated successfully (Exit mode 0)
Current function value: 136.35940693762137
Iterations: 14
Function evaluations: 143
Gradient evaluations: 14
Iteration: 1, Func. Count: 8, Neg. LLF: 152.95988137353655
Iteration: 2, Func. Count: 16, Neg. LLF: 143.0282225802281
Iteration: 3, Func. Count: 24, Neg. LLF: 139.9772957922154
Iteration: 4, Func. Count: 31, Neg. LLF: 139.29920310680194
Iteration: 5, Func. Count: 38, Neg. LLF: 138.65500985425527
Iteration: 6, Func. Count: 45, Neg. LLF: 143.16488367620164
Iteration: 7, Func. Count: 54, Neg. LLF: 138.56088795084239
Iteration: 8, Func. Count: 61, Neg. LLF: 138.5537302073595
Iteration: 9, Func. Count: 68, Neg. LLF: 138.55170088575008
Iteration: 10, Func. Count: 75, Neg. LLF: 138.55050006493903
Iteration: 11, Func. Count: 82, Neg. LLF: 138.55007498666748
Iteration: 12, Func. Count: 89, Neg. LLF: 138.55007093852046
Iteration: 13, Func. Count: 95, Neg. LLF: 138.55007093848593
Optimization terminated successfully (Exit mode 0)
Current function value: 138.55007093852046
Iterations: 13
Function evaluations: 95
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 139.74032310110607
Iteration: 2, Func. Count: 18, Neg. LLF: 149.45051690252356
Iteration: 3, Func. Count: 27, Neg. LLF: 153.99891412458155
Iteration: 4, Func. Count: 36, Neg. LLF: 136.88685202365372
Iteration: 5, Func. Count: 44, Neg. LLF: 136.2736286309793
Iteration: 6, Func. Count: 52, Neg. LLF: 135.6569878025631
Iteration: 7, Func. Count: 60, Neg. LLF: 134.7057594174021
Iteration: 8, Func. Count: 68, Neg. LLF: 134.493328546198
Iteration: 9, Func. Count: 76, Neg. LLF: 134.41819959940966
Iteration: 10, Func. Count: 84, Neg. LLF: 134.38835841670442
Iteration: 11, Func. Count: 92, Neg. LLF: 134.38464317158457
Iteration: 12, Func. Count: 100, Neg. LLF: 134.38411802532065
Iteration: 13, Func. Count: 108, Neg. LLF: 134.38410424388883
Iteration: 14, Func. Count: 115, Neg. LLF: 134.38410415606882
Optimization terminated successfully (Exit mode 0)
Current function value: 134.38410424388883
Iterations: 14
Function evaluations: 115
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 161.14611954167447
Iteration: 2, Func. Count: 20, Neg. LLF: 137.8192136102926
Iteration: 3, Func. Count: 30, Neg. LLF: 135.51448261046536
Iteration: 4, Func. Count: 39, Neg. LLF: 136.0202723357637
Iteration: 5, Func. Count: 49, Neg. LLF: 134.94732077795416
Iteration: 6, Func. Count: 58, Neg. LLF: 134.56348319260482
Iteration: 7, Func. Count: 67, Neg. LLF: 134.586807279124
Iteration: 8, Func. Count: 77, Neg. LLF: 134.45864846880903
Iteration: 9, Func. Count: 87, Neg. LLF: 134.38414177917213
Iteration: 10, Func. Count: 96, Neg. LLF: 134.38410426016304
Iteration: 11, Func. Count: 104, Neg. LLF: 134.38410422298267
Optimization terminated successfully (Exit mode 0)
Current function value: 134.38410426016304
Iterations: 11
Function evaluations: 104
Gradient evaluations: 11
Iteration: 1, Func. Count: 11, Neg. LLF: 162.16041847000068
Iteration: 2, Func. Count: 22, Neg. LLF: 136.7528526526723
Iteration: 3, Func. Count: 32, Neg. LLF: 136.92587208846842
Iteration: 4, Func. Count: 43, Neg. LLF: 143.0663019917675
Iteration: 5, Func. Count: 54, Neg. LLF: 136.1766168351994
Iteration: 6, Func. Count: 64, Neg. LLF: 136.57374151963006
Iteration: 7, Func. Count: 75, Neg. LLF: 135.90269558820356
Iteration: 8, Func. Count: 85, Neg. LLF: 135.87606028569803
Iteration: 9, Func. Count: 95, Neg. LLF: 135.84701973161881
Iteration: 10, Func. Count: 105, Neg. LLF: 135.84308873155717
Iteration: 11, Func. Count: 115, Neg. LLF: 135.842676159917
Iteration: 12, Func. Count: 125, Neg. LLF: 135.84267341514365
Iteration: 13, Func. Count: 134, Neg. LLF: 135.84267339319013
Optimization terminated successfully (Exit mode 0)
Current function value: 135.84267341514365
Iterations: 13
Function evaluations: 134
Gradient evaluations: 13
Iteration: 1, Func. Count: 12, Neg. LLF: 173.3491543061963
Iteration: 2, Func. Count: 25, Neg. LLF: 140.0534759904462
Iteration: 3, Func. Count: 37, Neg. LLF: 137.70653891861926
Iteration: 4, Func. Count: 48, Neg. LLF: 139.13052528363409
Iteration: 5, Func. Count: 60, Neg. LLF: 135.8968142198663
Iteration: 6, Func. Count: 71, Neg. LLF: 136.74840668119705
Iteration: 7, Func. Count: 83, Neg. LLF: 135.79539303953095
Iteration: 8, Func. Count: 95, Neg. LLF: 135.3488550081719
Iteration: 9, Func. Count: 106, Neg. LLF: 135.32914093148577
Iteration: 10, Func. Count: 117, Neg. LLF: 135.3261856285523
Iteration: 11, Func. Count: 128, Neg. LLF: 135.32586111409077
Iteration: 12, Func. Count: 139, Neg. LLF: 135.32581866978296
Iteration: 13, Func. Count: 149, Neg. LLF: 135.32581867905483
Optimization terminated successfully (Exit mode 0)
Current function value: 135.32581866978296
Iterations: 13
Function evaluations: 149
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 152.11564528946852
Iteration: 2, Func. Count: 18, Neg. LLF: 141.6050215558421
Iteration: 3, Func. Count: 26, Neg. LLF: 139.77831495292938
Iteration: 4, Func. Count: 34, Neg. LLF: 139.01543266249794
Iteration: 5, Func. Count: 42, Neg. LLF: 139.1844405131937
Iteration: 6, Func. Count: 51, Neg. LLF: 138.7181014262258
Iteration: 7, Func. Count: 59, Neg. LLF: 138.5746356134793
Iteration: 8, Func. Count: 67, Neg. LLF: 138.55971239959595
Iteration: 9, Func. Count: 75, Neg. LLF: 138.5508348353823
Iteration: 10, Func. Count: 83, Neg. LLF: 138.55008937271
Iteration: 11, Func. Count: 91, Neg. LLF: 138.55007519672967
Iteration: 12, Func. Count: 99, Neg. LLF: 138.5500710532111
Iteration: 13, Func. Count: 106, Neg. LLF: 138.55007114744438
Optimization terminated successfully (Exit mode 0)
Current function value: 138.5500710532111
Iterations: 13
Function evaluations: 106
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 435.9967053936085
Iteration: 2, Func. Count: 20, Neg. LLF: 139.32581577306232
Iteration: 3, Func. Count: 30, Neg. LLF: 135.24843594685214
Iteration: 4, Func. Count: 39, Neg. LLF: 150.3285955096459
Iteration: 5, Func. Count: 49, Neg. LLF: 134.48118852081038
Iteration: 6, Func. Count: 58, Neg. LLF: 134.40017376688112
Iteration: 7, Func. Count: 67, Neg. LLF: 134.38636889281733
Iteration: 8, Func. Count: 76, Neg. LLF: 134.38459572319337
Iteration: 9, Func. Count: 85, Neg. LLF: 134.38418086676862
Iteration: 10, Func. Count: 94, Neg. LLF: 134.38410418940498
Iteration: 11, Func. Count: 102, Neg. LLF: 134.38410410150055
Optimization terminated successfully (Exit mode 0)
Current function value: 134.38410418940498
Iterations: 11
Function evaluations: 102
Gradient evaluations: 11
Iteration: 1, Func. Count: 11, Neg. LLF: 161.13722002810056
Iteration: 2, Func. Count: 22, Neg. LLF: 137.65643994762155
Iteration: 3, Func. Count: 33, Neg. LLF: 213.1890478116792
Iteration: 4, Func. Count: 45, Neg. LLF: 135.1544886499336
Iteration: 5, Func. Count: 55, Neg. LLF: 134.92039417078976
Iteration: 6, Func. Count: 65, Neg. LLF: 134.48057899488654
Iteration: 7, Func. Count: 75, Neg. LLF: 135.63322534636472
Iteration: 8, Func. Count: 86, Neg. LLF: 134.41692601173577
Iteration: 9, Func. Count: 97, Neg. LLF: 134.38412239813005
Iteration: 10, Func. Count: 107, Neg. LLF: 134.38410451678135
Iteration: 11, Func. Count: 116, Neg. LLF: 134.38410447963128
Optimization terminated successfully (Exit mode 0)
Current function value: 134.38410451678135
Iterations: 11
Function evaluations: 116
Gradient evaluations: 11
Iteration: 1, Func. Count: 12, Neg. LLF: 162.14228812985004
Iteration: 2, Func. Count: 24, Neg. LLF: 136.73948737053792
Iteration: 3, Func. Count: 35, Neg. LLF: 136.75692779768377
Iteration: 4, Func. Count: 47, Neg. LLF: 144.82170819829713
Iteration: 5, Func. Count: 59, Neg. LLF: 136.34230203658953
Iteration: 6, Func. Count: 70, Neg. LLF: 136.29690818475567
Iteration: 7, Func. Count: 82, Neg. LLF: 135.9906819384334
Iteration: 8, Func. Count: 93, Neg. LLF: 135.86065958747983
Iteration: 9, Func. Count: 104, Neg. LLF: 135.86188043504544
Iteration: 10, Func. Count: 116, Neg. LLF: 135.84345038716734
Iteration: 11, Func. Count: 127, Neg. LLF: 135.94785794673618
Iteration: 12, Func. Count: 139, Neg. LLF: 136.74925127251757
Iteration: 13, Func. Count: 151, Neg. LLF: 136.09712555904105
Iteration: 14, Func. Count: 163, Neg. LLF: 135.95326793422046
Iteration: 15, Func. Count: 175, Neg. LLF: 136.02052241812103
Iteration: 16, Func. Count: 187, Neg. LLF: 136.16458463238803
Iteration: 17, Func. Count: 199, Neg. LLF: 136.05445977657033
Iteration: 18, Func. Count: 211, Neg. LLF: 135.7385159432667
Iteration: 19, Func. Count: 223, Neg. LLF: 135.65838552705497
Iteration: 20, Func. Count: 235, Neg. LLF: 135.4546337743189
Iteration: 21, Func. Count: 246, Neg. LLF: 135.0435192630518
Iteration: 22, Func. Count: 257, Neg. LLF: 134.50689711042136
Iteration: 23, Func. Count: 268, Neg. LLF: 134.3903692125488
Iteration: 24, Func. Count: 279, Neg. LLF: 134.38659859811884
Iteration: 25, Func. Count: 290, Neg. LLF: 134.38507904274314
Iteration: 26, Func. Count: 301, Neg. LLF: 134.3841844303948
Iteration: 27, Func. Count: 312, Neg. LLF: 134.38411137205128
Iteration: 28, Func. Count: 323, Neg. LLF: 134.38410480236976
Iteration: 29, Func. Count: 334, Neg. LLF: 134.38410411005395
Optimization terminated successfully (Exit mode 0)
Current function value: 134.38410411005395
Iterations: 29
Function evaluations: 334
Gradient evaluations: 29
Iteration: 1, Func. Count: 13, Neg. LLF: 173.34903747166882
Iteration: 2, Func. Count: 27, Neg. LLF: 140.0955048436969
Iteration: 3, Func. Count: 40, Neg. LLF: 137.75820967957233
Iteration: 4, Func. Count: 52, Neg. LLF: 138.88630009875632
Iteration: 5, Func. Count: 65, Neg. LLF: 136.55656587353036
Iteration: 6, Func. Count: 77, Neg. LLF: 135.7520763333473
Iteration: 7, Func. Count: 89, Neg. LLF: 136.10850920512576
Iteration: 8, Func. Count: 102, Neg. LLF: 135.83385888092204
Iteration: 9, Func. Count: 115, Neg. LLF: 135.3575965116004
Iteration: 10, Func. Count: 127, Neg. LLF: 135.3345257529486
Iteration: 11, Func. Count: 139, Neg. LLF: 135.32727639058544
Iteration: 12, Func. Count: 151, Neg. LLF: 135.3259631581748
Iteration: 13, Func. Count: 163, Neg. LLF: 135.32583715760268
Iteration: 14, Func. Count: 175, Neg. LLF: 135.32581907225799
Iteration: 15, Func. Count: 186, Neg. LLF: 135.3258190816691
Optimization terminated successfully (Exit mode 0)
Current function value: 135.32581907225799
Iterations: 15
Function evaluations: 186
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 148.0259061038853
Iteration: 2, Func. Count: 20, Neg. LLF: 145.84011913503892
Iteration: 3, Func. Count: 30, Neg. LLF: 140.09952447714042
Iteration: 4, Func. Count: 39, Neg. LLF: 138.96907699144896
Iteration: 5, Func. Count: 48, Neg. LLF: 139.26978132633369
Iteration: 6, Func. Count: 59, Neg. LLF: 138.56582248392058
Iteration: 7, Func. Count: 68, Neg. LLF: 138.55512093117346
Iteration: 8, Func. Count: 77, Neg. LLF: 138.55064169084156
Iteration: 9, Func. Count: 86, Neg. LLF: 138.5501226085894
Iteration: 10, Func. Count: 95, Neg. LLF: 138.55008596733103
Iteration: 11, Func. Count: 104, Neg. LLF: 138.55007553308542
Iteration: 12, Func. Count: 113, Neg. LLF: 138.5500709515157
Iteration: 13, Func. Count: 121, Neg. LLF: 138.55007112812004
Optimization terminated successfully (Exit mode 0)
Current function value: 138.5500709515157
Iterations: 13
Function evaluations: 121
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 431.49690029097115
Iteration: 2, Func. Count: 22, Neg. LLF: 139.21871436860835
Iteration: 3, Func. Count: 33, Neg. LLF: 135.2589886490122
Iteration: 4, Func. Count: 43, Neg. LLF: 149.59848157832184
Iteration: 5, Func. Count: 54, Neg. LLF: 134.49270483708236
Iteration: 6, Func. Count: 64, Neg. LLF: 134.402047614605
Iteration: 7, Func. Count: 74, Neg. LLF: 134.38653534962376
Iteration: 8, Func. Count: 84, Neg. LLF: 134.3846367566201
Iteration: 9, Func. Count: 94, Neg. LLF: 134.38419822562796
Iteration: 10, Func. Count: 104, Neg. LLF: 134.38410417578308
Iteration: 11, Func. Count: 113, Neg. LLF: 134.38410408789156
Optimization terminated successfully (Exit mode 0)
Current function value: 134.38410417578308
Iterations: 11
Function evaluations: 113
Gradient evaluations: 11
Iteration: 1, Func. Count: 12, Neg. LLF: 161.10548540236513
Iteration: 2, Func. Count: 24, Neg. LLF: 137.62871987104305
Iteration: 3, Func. Count: 36, Neg. LLF: 216.9388007307002
Iteration: 4, Func. Count: 49, Neg. LLF: 135.14569214745373
Iteration: 5, Func. Count: 60, Neg. LLF: 134.9156055811524
Iteration: 6, Func. Count: 71, Neg. LLF: 134.47931926444386
Iteration: 7, Func. Count: 82, Neg. LLF: 135.62896254061025
Iteration: 8, Func. Count: 94, Neg. LLF: 134.4073639909211
Iteration: 9, Func. Count: 105, Neg. LLF: 134.3858992952696
Iteration: 10, Func. Count: 116, Neg. LLF: 134.38479201968528
Iteration: 11, Func. Count: 127, Neg. LLF: 134.3841151517739
Iteration: 12, Func. Count: 138, Neg. LLF: 134.38410419278964
Iteration: 13, Func. Count: 148, Neg. LLF: 134.38410415562305
Optimization terminated successfully (Exit mode 0)
Current function value: 134.38410419278964
Iterations: 13
Function evaluations: 148
Gradient evaluations: 13
Iteration: 1, Func. Count: 13, Neg. LLF: 162.09412767603172
Iteration: 2, Func. Count: 26, Neg. LLF: 136.73143811385242
Iteration: 3, Func. Count: 38, Neg. LLF: 136.62916581772598
Iteration: 4, Func. Count: 50, Neg. LLF: 153.70063428950598
Iteration: 5, Func. Count: 63, Neg. LLF: 137.5372421088201
Iteration: 6, Func. Count: 76, Neg. LLF: 136.09966174290494
Iteration: 7, Func. Count: 88, Neg. LLF: 135.9226469407784
Iteration: 8, Func. Count: 100, Neg. LLF: 135.84482634141622
Iteration: 9, Func. Count: 112, Neg. LLF: 135.84314434538538
Iteration: 10, Func. Count: 124, Neg. LLF: 135.842688281378
Iteration: 11, Func. Count: 136, Neg. LLF: 135.84270525919075
Iteration: 12, Func. Count: 148, Neg. LLF: 135.84267354322702
Optimization terminated successfully (Exit mode 0)
Current function value: 135.84267356520175
Iterations: 12
Function evaluations: 148
Gradient evaluations: 12
Iteration: 1, Func. Count: 14, Neg. LLF: 173.27190446234408
Iteration: 2, Func. Count: 29, Neg. LLF: 140.09127048031868
Iteration: 3, Func. Count: 43, Neg. LLF: 137.7518163391439
Iteration: 4, Func. Count: 56, Neg. LLF: 139.10704624927448
Iteration: 5, Func. Count: 70, Neg. LLF: 136.23571893159342
Iteration: 6, Func. Count: 83, Neg. LLF: 135.8996085632865
Iteration: 7, Func. Count: 96, Neg. LLF: 137.45978476100635
Iteration: 8, Func. Count: 110, Neg. LLF: 135.3762571133137
Iteration: 9, Func. Count: 123, Neg. LLF: 135.3298101514602
Iteration: 10, Func. Count: 136, Neg. LLF: 135.3263617891437
Iteration: 11, Func. Count: 149, Neg. LLF: 135.3258621444739
Iteration: 12, Func. Count: 162, Neg. LLF: 135.3258206561236
Iteration: 13, Func. Count: 175, Neg. LLF: 135.32581866146825
Iteration: 14, Func. Count: 187, Neg. LLF: 135.32581867071897
Optimization terminated successfully (Exit mode 0)
Current function value: 135.32581866146825
Iterations: 14
Function evaluations: 187
Gradient evaluations: 14
Iteration: 1, Func. Count: 7, Neg. LLF: 138.72566697633988
Iteration: 2, Func. Count: 14, Neg. LLF: 138.8064289463778
Iteration: 3, Func. Count: 21, Neg. LLF: 137.52993331397894
Iteration: 4, Func. Count: 27, Neg. LLF: 140.67103215751223
Iteration: 5, Func. Count: 34, Neg. LLF: 137.2971627706721
Iteration: 6, Func. Count: 40, Neg. LLF: 137.28200318131266
Iteration: 7, Func. Count: 46, Neg. LLF: 137.28071444699114
Iteration: 8, Func. Count: 52, Neg. LLF: 137.28028682931492
Iteration: 9, Func. Count: 58, Neg. LLF: 137.2802421130922
Iteration: 10, Func. Count: 64, Neg. LLF: 137.28024129546816
Optimization terminated successfully (Exit mode 0)
Current function value: 137.28024129546816
Iterations: 10
Function evaluations: 64
Gradient evaluations: 10
Iteration: 1, Func. Count: 8, Neg. LLF: 4910.514186733097
Iteration: 2, Func. Count: 17, Neg. LLF: 138.157938535734
Iteration: 3, Func. Count: 24, Neg. LLF: 138.12497427409622
Iteration: 4, Func. Count: 31, Neg. LLF: 138.09648173696849
Iteration: 5, Func. Count: 38, Neg. LLF: 138.09711087665318
Iteration: 6, Func. Count: 46, Neg. LLF: 138.09294243078728
Iteration: 7, Func. Count: 54, Neg. LLF: 138.09146230059673
Iteration: 8, Func. Count: 60, Neg. LLF: 138.0914623004372
Optimization terminated successfully (Exit mode 0)
Current function value: 138.09146230059673
Iterations: 8
Function evaluations: 60
Gradient evaluations: 8
Iteration: 1, Func. Count: 9, Neg. LLF: 28267306.759566434
Iteration: 2, Func. Count: 19, Neg. LLF: 138.14813909366688
Iteration: 3, Func. Count: 27, Neg. LLF: 138.11888497773492
Iteration: 4, Func. Count: 35, Neg. LLF: 138.185732567147
Iteration: 5, Func. Count: 44, Neg. LLF: 138.1038670169753
Iteration: 6, Func. Count: 52, Neg. LLF: 138.10368290224812
Iteration: 7, Func. Count: 60, Neg. LLF: 138.10306491043582
Iteration: 8, Func. Count: 68, Neg. LLF: 138.10205142691265
Iteration: 9, Func. Count: 76, Neg. LLF: 138.09430482146277
Iteration: 10, Func. Count: 84, Neg. LLF: 138.09209699081777
Iteration: 11, Func. Count: 92, Neg. LLF: 138.09150098448785
Iteration: 12, Func. Count: 100, Neg. LLF: 138.09157997158763
Iteration: 13, Func. Count: 108, Neg. LLF: 138.09146254723836
Optimization terminated successfully (Exit mode 0)
Current function value: 138.0914625466513
Iterations: 13
Function evaluations: 108
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 172.83686716727496
Iteration: 2, Func. Count: 21, Neg. LLF: 144.8388817459762
Iteration: 3, Func. Count: 31, Neg. LLF: 147.47465549679248
Iteration: 4, Func. Count: 41, Neg. LLF: 138.45946806699808
Iteration: 5, Func. Count: 51, Neg. LLF: 138.13300100110388
Iteration: 6, Func. Count: 61, Neg. LLF: 137.3378854344532
Iteration: 7, Func. Count: 70, Neg. LLF: 140.5358920541226
Iteration: 8, Func. Count: 80, Neg. LLF: 137.2453620874807
Iteration: 9, Func. Count: 89, Neg. LLF: 137.2303401685472
Iteration: 10, Func. Count: 98, Neg. LLF: 137.22999179221807
Iteration: 11, Func. Count: 107, Neg. LLF: 137.2285957450908
Iteration: 12, Func. Count: 116, Neg. LLF: 137.22636322993833
Iteration: 13, Func. Count: 125, Neg. LLF: 137.21883128112117
Iteration: 14, Func. Count: 134, Neg. LLF: 137.20626113916458
Iteration: 15, Func. Count: 143, Neg. LLF: 137.1886424329755
Iteration: 16, Func. Count: 152, Neg. LLF: 137.15233412760642
Iteration: 17, Func. Count: 161, Neg. LLF: 137.14557129003813
Iteration: 18, Func. Count: 170, Neg. LLF: 137.14522046709476
Iteration: 19, Func. Count: 179, Neg. LLF: 137.1452016285858
Iteration: 20, Func. Count: 187, Neg. LLF: 137.14520164385303
Optimization terminated successfully (Exit mode 0)
Current function value: 137.1452016285858
Iterations: 20
Function evaluations: 187
Gradient evaluations: 20
Iteration: 1, Func. Count: 11, Neg. LLF: 174.44493171376487
Iteration: 2, Func. Count: 23, Neg. LLF: 146.3852931646139
Iteration: 3, Func. Count: 34, Neg. LLF: 139.4323420777014
Iteration: 4, Func. Count: 45, Neg. LLF: 137.4642438645418
Iteration: 5, Func. Count: 55, Neg. LLF: 137.32642321860166
Iteration: 6, Func. Count: 65, Neg. LLF: 137.2281181966239
Iteration: 7, Func. Count: 75, Neg. LLF: 143.16956235510767
Iteration: 8, Func. Count: 87, Neg. LLF: 137.19381392727195
Iteration: 9, Func. Count: 97, Neg. LLF: 137.1862409737879
Iteration: 10, Func. Count: 107, Neg. LLF: 137.18165033811508
Iteration: 11, Func. Count: 117, Neg. LLF: 137.17284218064373
Iteration: 12, Func. Count: 127, Neg. LLF: 137.16053570335512
Iteration: 13, Func. Count: 137, Neg. LLF: 137.13903065387058
Iteration: 14, Func. Count: 147, Neg. LLF: 137.1230491386817
Iteration: 15, Func. Count: 157, Neg. LLF: 137.11801985788728
Iteration: 16, Func. Count: 167, Neg. LLF: 137.11656827541532
Iteration: 17, Func. Count: 177, Neg. LLF: 137.11546217404964
Iteration: 18, Func. Count: 187, Neg. LLF: 137.11533142789074
Iteration: 19, Func. Count: 197, Neg. LLF: 137.1153130439324
Iteration: 20, Func. Count: 206, Neg. LLF: 137.11531304376408
Optimization terminated successfully (Exit mode 0)
Current function value: 137.1153130439324
Iterations: 20
Function evaluations: 206
Gradient evaluations: 20
Iteration: 1, Func. Count: 8, Neg. LLF: 138.7231098457917
Iteration: 2, Func. Count: 15, Neg. LLF: 138.53081481485347
Iteration: 3, Func. Count: 22, Neg. LLF: 145.2615294529974
Iteration: 4, Func. Count: 30, Neg. LLF: 145.2695211127154
Iteration: 5, Func. Count: 38, Neg. LLF: 140.6837213255127
Iteration: 6, Func. Count: 46, Neg. LLF: 137.62286557375276
Iteration: 7, Func. Count: 54, Neg. LLF: 137.42601577647466
Iteration: 8, Func. Count: 61, Neg. LLF: 137.32215398782643
Iteration: 9, Func. Count: 68, Neg. LLF: 137.81483736450505
Iteration: 10, Func. Count: 76, Neg. LLF: 137.28237113176812
Iteration: 11, Func. Count: 83, Neg. LLF: 137.28028176912164
Iteration: 12, Func. Count: 90, Neg. LLF: 137.28024440240026
Iteration: 13, Func. Count: 97, Neg. LLF: 137.28024133586203
Iteration: 14, Func. Count: 103, Neg. LLF: 137.28024121208296
Optimization terminated successfully (Exit mode 0)
Current function value: 137.28024133586203
Iterations: 14
Function evaluations: 103
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 139.4360426573613
Iteration: 2, Func. Count: 18, Neg. LLF: 138.45875705919318
Iteration: 3, Func. Count: 27, Neg. LLF: 141.71951205200372
Iteration: 4, Func. Count: 36, Neg. LLF: 137.7101378980543
Iteration: 5, Func. Count: 45, Neg. LLF: 137.27223206967471
Iteration: 6, Func. Count: 53, Neg. LLF: 138.6590595292675
Iteration: 7, Func. Count: 63, Neg. LLF: 137.26826921197883
Iteration: 8, Func. Count: 71, Neg. LLF: 137.2659870927029
Iteration: 9, Func. Count: 79, Neg. LLF: 137.26581608817207
Iteration: 10, Func. Count: 87, Neg. LLF: 137.2647110900753
Iteration: 11, Func. Count: 95, Neg. LLF: 137.26230331929185
Iteration: 12, Func. Count: 103, Neg. LLF: 137.25787133984727
Iteration: 13, Func. Count: 111, Neg. LLF: 137.24006133108304
Iteration: 14, Func. Count: 119, Neg. LLF: 137.1693652657672
Iteration: 15, Func. Count: 127, Neg. LLF: 137.1909929046011
Iteration: 16, Func. Count: 136, Neg. LLF: 137.1496800052759
Iteration: 17, Func. Count: 144, Neg. LLF: 137.14609969054135
Iteration: 18, Func. Count: 152, Neg. LLF: 137.14521944490957
Iteration: 19, Func. Count: 160, Neg. LLF: 137.1452031259579
Iteration: 20, Func. Count: 168, Neg. LLF: 137.14520122323538
Iteration: 21, Func. Count: 175, Neg. LLF: 137.1452012176485
Optimization terminated successfully (Exit mode 0)
Current function value: 137.14520122323538
Iterations: 21
Function evaluations: 175
Gradient evaluations: 21
Iteration: 1, Func. Count: 10, Neg. LLF: 142.56939108810485
Iteration: 2, Func. Count: 20, Neg. LLF: 168.58384606352422
Iteration: 3, Func. Count: 31, Neg. LLF: 141.45004310607618
Iteration: 4, Func. Count: 41, Neg. LLF: 137.22460394936925
Iteration: 5, Func. Count: 50, Neg. LLF: 137.07940519462775
Iteration: 6, Func. Count: 59, Neg. LLF: 136.8956098036299
Iteration: 7, Func. Count: 68, Neg. LLF: 136.60323970583917
Iteration: 8, Func. Count: 77, Neg. LLF: 136.45469168330138
Iteration: 9, Func. Count: 86, Neg. LLF: 136.3989192240436
Iteration: 10, Func. Count: 95, Neg. LLF: 136.38878962549018
Iteration: 11, Func. Count: 105, Neg. LLF: 136.36177535012243
Iteration: 12, Func. Count: 114, Neg. LLF: 136.35940802316517
Iteration: 13, Func. Count: 123, Neg. LLF: 136.35941267502307
Optimization terminated successfully (Exit mode 0)
Current function value: 136.35940825803942
Iterations: 13
Function evaluations: 124
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 168.1012801993503
Iteration: 2, Func. Count: 22, Neg. LLF: 142.2485187522388
Iteration: 3, Func. Count: 33, Neg. LLF: 137.17650917614992
Iteration: 4, Func. Count: 43, Neg. LLF: 137.2661886175997
Iteration: 5, Func. Count: 54, Neg. LLF: 136.6748066445411
Iteration: 6, Func. Count: 64, Neg. LLF: 135.72790815514148
Iteration: 7, Func. Count: 74, Neg. LLF: 135.4432591371529
Iteration: 8, Func. Count: 84, Neg. LLF: 135.37055272191932
Iteration: 9, Func. Count: 94, Neg. LLF: 135.3354796016249
Iteration: 10, Func. Count: 104, Neg. LLF: 135.32616326940794
Iteration: 11, Func. Count: 114, Neg. LLF: 135.32583783520735
Iteration: 12, Func. Count: 124, Neg. LLF: 135.3258191240328
Iteration: 13, Func. Count: 133, Neg. LLF: 135.32581903154764
Optimization terminated successfully (Exit mode 0)
Current function value: 135.3258191240328
Iterations: 13
Function evaluations: 133
Gradient evaluations: 13
Iteration: 1, Func. Count: 12, Neg. LLF: 173.46329879345538
Iteration: 2, Func. Count: 25, Neg. LLF: 146.1352229154015
Iteration: 3, Func. Count: 37, Neg. LLF: 138.9911537867459
Iteration: 4, Func. Count: 49, Neg. LLF: 137.386362424013
Iteration: 5, Func. Count: 60, Neg. LLF: 137.524756397004
Iteration: 6, Func. Count: 72, Neg. LLF: 137.20663006524438
Iteration: 7, Func. Count: 83, Neg. LLF: 141.91912695421576
Iteration: 8, Func. Count: 96, Neg. LLF: 137.18923294825768
Iteration: 9, Func. Count: 107, Neg. LLF: 137.18181477179502
Iteration: 10, Func. Count: 118, Neg. LLF: 137.17424506641942
Iteration: 11, Func. Count: 129, Neg. LLF: 137.16822499951894
Iteration: 12, Func. Count: 140, Neg. LLF: 137.1553706712898
Iteration: 13, Func. Count: 151, Neg. LLF: 137.1322636352089
Iteration: 14, Func. Count: 162, Neg. LLF: 137.12027213893126
Iteration: 15, Func. Count: 173, Neg. LLF: 137.11570990835915
Iteration: 16, Func. Count: 184, Neg. LLF: 137.1155697131943
Iteration: 17, Func. Count: 195, Neg. LLF: 137.11533659189584
Iteration: 18, Func. Count: 206, Neg. LLF: 137.11531434294292
Iteration: 19, Func. Count: 217, Neg. LLF: 137.11531272075985
Iteration: 20, Func. Count: 227, Neg. LLF: 137.11531272075115
Optimization terminated successfully (Exit mode 0)
Current function value: 137.11531272075985
Iterations: 20
Function evaluations: 227
Gradient evaluations: 20
Iteration: 1, Func. Count: 9, Neg. LLF: 138.7233807212265
Iteration: 2, Func. Count: 17, Neg. LLF: 139.82752416729005
Iteration: 3, Func. Count: 28, Neg. LLF: 139.43983588914796
Iteration: 4, Func. Count: 37, Neg. LLF: 141.28251439659337
Iteration: 5, Func. Count: 46, Neg. LLF: 137.81596626947578
Iteration: 6, Func. Count: 55, Neg. LLF: 137.29706159384986
Iteration: 7, Func. Count: 63, Neg. LLF: 137.27237526037035
Iteration: 8, Func. Count: 71, Neg. LLF: 137.2666203558076
Iteration: 9, Func. Count: 79, Neg. LLF: 137.26469225299286
Iteration: 10, Func. Count: 87, Neg. LLF: 137.2645463167354
Iteration: 11, Func. Count: 95, Neg. LLF: 137.26452897229854
Iteration: 12, Func. Count: 102, Neg. LLF: 137.26452897230075
Optimization terminated successfully (Exit mode 0)
Current function value: 137.26452897229854
Iterations: 12
Function evaluations: 102
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 140.67828032138246
Iteration: 2, Func. Count: 20, Neg. LLF: 148.19274166657112
Iteration: 3, Func. Count: 30, Neg. LLF: 151.77863697742026
Iteration: 4, Func. Count: 40, Neg. LLF: 137.1534054875965
Iteration: 5, Func. Count: 49, Neg. LLF: 136.9015378082027
Iteration: 6, Func. Count: 58, Neg. LLF: 136.0016189945357
Iteration: 7, Func. Count: 67, Neg. LLF: 134.8696154266131
Iteration: 8, Func. Count: 76, Neg. LLF: 134.62715773836663
Iteration: 9, Func. Count: 85, Neg. LLF: 134.48689436751883
Iteration: 10, Func. Count: 94, Neg. LLF: 134.43816594838398
Iteration: 11, Func. Count: 103, Neg. LLF: 134.4095744714558
Iteration: 12, Func. Count: 112, Neg. LLF: 134.39375766258647
Iteration: 13, Func. Count: 121, Neg. LLF: 134.38559427132196
Iteration: 14, Func. Count: 130, Neg. LLF: 134.38411453714855
Iteration: 15, Func. Count: 139, Neg. LLF: 134.38410537011464
Iteration: 16, Func. Count: 148, Neg. LLF: 134.38410342159776
Iteration: 17, Func. Count: 157, Neg. LLF: 134.3841041191006
Optimization terminated successfully (Exit mode 0)
Current function value: 134.38410348743332
Iterations: 18
Function evaluations: 158
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 161.28266126898535
Iteration: 2, Func. Count: 22, Neg. LLF: 144.00542812328663
Iteration: 3, Func. Count: 33, Neg. LLF: 137.21919514082194
Iteration: 4, Func. Count: 44, Neg. LLF: 135.68618572559208
Iteration: 5, Func. Count: 54, Neg. LLF: 136.74548961610128
Iteration: 6, Func. Count: 65, Neg. LLF: 134.92169190276954
Iteration: 7, Func. Count: 75, Neg. LLF: 134.40989727541444
Iteration: 8, Func. Count: 85, Neg. LLF: 134.53425873119417
Iteration: 9, Func. Count: 96, Neg. LLF: 134.38442590048007
Iteration: 10, Func. Count: 106, Neg. LLF: 134.3841112074005
Iteration: 11, Func. Count: 116, Neg. LLF: 134.38410410270595
Iteration: 12, Func. Count: 125, Neg. LLF: 134.3841040655131
Optimization terminated successfully (Exit mode 0)
Current function value: 134.38410410270595
Iterations: 12
Function evaluations: 125
Gradient evaluations: 12
Iteration: 1, Func. Count: 12, Neg. LLF: 162.274918735949
Iteration: 2, Func. Count: 24, Neg. LLF: 137.90001986274794
Iteration: 3, Func. Count: 35, Neg. LLF: 137.32777554297377
Iteration: 4, Func. Count: 46, Neg. LLF: 139.78801762288614
Iteration: 5, Func. Count: 58, Neg. LLF: 140.69823655617293
Iteration: 6, Func. Count: 70, Neg. LLF: 136.31260256710527
Iteration: 7, Func. Count: 81, Neg. LLF: 136.088753749599
Iteration: 8, Func. Count: 92, Neg. LLF: 135.89591538630046
Iteration: 9, Func. Count: 103, Neg. LLF: 135.85084083507945
Iteration: 10, Func. Count: 114, Neg. LLF: 135.8505920942382
Iteration: 11, Func. Count: 126, Neg. LLF: 135.84417213259883
Iteration: 12, Func. Count: 138, Neg. LLF: 135.84267425865488
Iteration: 13, Func. Count: 149, Neg. LLF: 135.84267327866797
Optimization terminated successfully (Exit mode 0)
Current function value: 135.84267327866797
Iterations: 13
Function evaluations: 149
Gradient evaluations: 13
Iteration: 1, Func. Count: 13, Neg. LLF: 173.61793486474355
Iteration: 2, Func. Count: 27, Neg. LLF: 146.2859798179097
Iteration: 3, Func. Count: 40, Neg. LLF: 139.61977945130127
Iteration: 4, Func. Count: 53, Neg. LLF: 137.37944628196277
Iteration: 5, Func. Count: 65, Neg. LLF: 137.35711467402714
Iteration: 6, Func. Count: 78, Neg. LLF: 141.1321051448839
Iteration: 7, Func. Count: 92, Neg. LLF: 140.24167675846954
Iteration: 8, Func. Count: 105, Neg. LLF: 137.18491124023316
Iteration: 9, Func. Count: 117, Neg. LLF: 137.173184908388
Iteration: 10, Func. Count: 129, Neg. LLF: 137.16901023841248
Iteration: 11, Func. Count: 141, Neg. LLF: 137.16316940825632
Iteration: 12, Func. Count: 153, Neg. LLF: 137.1530574141061
Iteration: 13, Func. Count: 165, Neg. LLF: 137.12859195180462
Iteration: 14, Func. Count: 177, Neg. LLF: 137.1195166258635
Iteration: 15, Func. Count: 189, Neg. LLF: 137.11591172127407
Iteration: 16, Func. Count: 201, Neg. LLF: 137.11574414583993
Iteration: 17, Func. Count: 214, Neg. LLF: 137.11530543768322
Iteration: 18, Func. Count: 226, Neg. LLF: 137.115283151264
Iteration: 19, Func. Count: 238, Neg. LLF: 137.11527784235116
Iteration: 20, Func. Count: 249, Neg. LLF: 137.1152778423685
Optimization terminated successfully (Exit mode 0)
Current function value: 137.11527784235116
Iterations: 20
Function evaluations: 249
Gradient evaluations: 20
Iteration: 1, Func. Count: 10, Neg. LLF: 139.83042414944327
Iteration: 2, Func. Count: 20, Neg. LLF: 136.6105934640014
Iteration: 3, Func. Count: 29, Neg. LLF: 138.54969648748065
Iteration: 4, Func. Count: 40, Neg. LLF: 144.52542456411265
Iteration: 5, Func. Count: 50, Neg. LLF: 135.9838266002445
Iteration: 6, Func. Count: 59, Neg. LLF: 135.9416472266318
Iteration: 7, Func. Count: 68, Neg. LLF: 135.93714399195707
Iteration: 8, Func. Count: 77, Neg. LLF: 135.9367001660669
Iteration: 9, Func. Count: 86, Neg. LLF: 135.93597240323808
Iteration: 10, Func. Count: 95, Neg. LLF: 135.9356669099102
Iteration: 11, Func. Count: 104, Neg. LLF: 135.93555670458582
Iteration: 12, Func. Count: 113, Neg. LLF: 135.9355498089747
Iteration: 13, Func. Count: 121, Neg. LLF: 135.93554971932417
Optimization terminated successfully (Exit mode 0)
Current function value: 135.9355498089747
Iterations: 13
Function evaluations: 121
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 139.52642066434032
Iteration: 2, Func. Count: 22, Neg. LLF: 157.64511356947554
Iteration: 3, Func. Count: 33, Neg. LLF: 139.1627964281899
Iteration: 4, Func. Count: 44, Neg. LLF: 133.84651687748212
Iteration: 5, Func. Count: 54, Neg. LLF: 133.42412071098366
Iteration: 6, Func. Count: 64, Neg. LLF: 132.505676427775
Iteration: 7, Func. Count: 74, Neg. LLF: 132.27626331746
Iteration: 8, Func. Count: 85, Neg. LLF: 131.8197866140466
Iteration: 9, Func. Count: 95, Neg. LLF: 131.74327750403927
Iteration: 10, Func. Count: 105, Neg. LLF: 131.67303150036835
Iteration: 11, Func. Count: 115, Neg. LLF: 131.63556425611517
Iteration: 12, Func. Count: 125, Neg. LLF: 131.62670569775773
Iteration: 13, Func. Count: 135, Neg. LLF: 131.62620212184507
Iteration: 14, Func. Count: 145, Neg. LLF: 131.62618879308914
Iteration: 15, Func. Count: 154, Neg. LLF: 131.62618873168984
Optimization terminated successfully (Exit mode 0)
Current function value: 131.62618879308914
Iterations: 15
Function evaluations: 154
Gradient evaluations: 15
Iteration: 1, Func. Count: 12, Neg. LLF: 142.8903843875031
Iteration: 2, Func. Count: 24, Neg. LLF: 187.13265546563838
Iteration: 3, Func. Count: 36, Neg. LLF: 135.7287993022617
Iteration: 4, Func. Count: 48, Neg. LLF: 132.77402652808146
Iteration: 5, Func. Count: 59, Neg. LLF: 132.33204411116677
Iteration: 6, Func. Count: 70, Neg. LLF: 131.96995360551236
Iteration: 7, Func. Count: 81, Neg. LLF: 131.80979994720118
Iteration: 8, Func. Count: 92, Neg. LLF: 131.7336628256542
Iteration: 9, Func. Count: 103, Neg. LLF: 131.66941712587226
Iteration: 10, Func. Count: 114, Neg. LLF: 131.63718250406745
Iteration: 11, Func. Count: 125, Neg. LLF: 131.62708358765462
Iteration: 12, Func. Count: 136, Neg. LLF: 131.6262116684381
Iteration: 13, Func. Count: 147, Neg. LLF: 131.62618873411265
Iteration: 14, Func. Count: 157, Neg. LLF: 131.62618873214362
Optimization terminated successfully (Exit mode 0)
Current function value: 131.62618873411265
Iterations: 14
Function evaluations: 157
Gradient evaluations: 14
Iteration: 1, Func. Count: 13, Neg. LLF: 143.79586053994402
Iteration: 2, Func. Count: 26, Neg. LLF: 175.76401311912284
Iteration: 3, Func. Count: 39, Neg. LLF: 136.67333427262005
Iteration: 4, Func. Count: 52, Neg. LLF: 132.822930964716
Iteration: 5, Func. Count: 64, Neg. LLF: 132.7741285824459
Iteration: 6, Func. Count: 77, Neg. LLF: 131.97587130610987
Iteration: 7, Func. Count: 89, Neg. LLF: 131.80922007513175
Iteration: 8, Func. Count: 101, Neg. LLF: 131.743972521246
Iteration: 9, Func. Count: 113, Neg. LLF: 131.69303126243688
Iteration: 10, Func. Count: 125, Neg. LLF: 131.65912687335594
Iteration: 11, Func. Count: 137, Neg. LLF: 131.6262404377764
Iteration: 12, Func. Count: 149, Neg. LLF: 131.62618873156356
Iteration: 13, Func. Count: 160, Neg. LLF: 131.62618873027864
Optimization terminated successfully (Exit mode 0)
Current function value: 131.62618873156356
Iterations: 13
Function evaluations: 160
Gradient evaluations: 13
Iteration: 1, Func. Count: 14, Neg. LLF: 151.6869063447357
Iteration: 2, Func. Count: 28, Neg. LLF: 135.5273144220568
Iteration: 3, Func. Count: 42, Neg. LLF: 142.16591432378283
Iteration: 4, Func. Count: 56, Neg. LLF: 132.7276431401677
Iteration: 5, Func. Count: 69, Neg. LLF: 132.2677709978295
Iteration: 6, Func. Count: 82, Neg. LLF: 131.9406672546006
Iteration: 7, Func. Count: 95, Neg. LLF: 131.79646385228253
Iteration: 8, Func. Count: 108, Neg. LLF: 131.70107722308967
Iteration: 9, Func. Count: 121, Neg. LLF: 131.67312490376742
Iteration: 10, Func. Count: 134, Neg. LLF: 131.63118108960438
Iteration: 11, Func. Count: 147, Neg. LLF: 131.62748887741483
Iteration: 12, Func. Count: 160, Neg. LLF: 131.62623817966636
Iteration: 13, Func. Count: 173, Neg. LLF: 131.62619272162635
Iteration: 14, Func. Count: 186, Neg. LLF: 131.62618868974164
Iteration: 15, Func. Count: 198, Neg. LLF: 131.6261886609451
Optimization terminated successfully (Exit mode 0)
Current function value: 131.62618868974164
Iterations: 15
Function evaluations: 198
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 139.8133441617816
Iteration: 2, Func. Count: 22, Neg. LLF: 136.69894735187702
Iteration: 3, Func. Count: 32, Neg. LLF: 138.59141340574322
Iteration: 4, Func. Count: 45, Neg. LLF: 149.89961576280675
Iteration: 5, Func. Count: 56, Neg. LLF: 135.96259563378425
Iteration: 6, Func. Count: 66, Neg. LLF: 135.93857355459076
Iteration: 7, Func. Count: 76, Neg. LLF: 135.93745820296417
Iteration: 8, Func. Count: 86, Neg. LLF: 135.93677300503026
Iteration: 9, Func. Count: 96, Neg. LLF: 135.9359014189439
Iteration: 10, Func. Count: 106, Neg. LLF: 135.93562082490192
Iteration: 11, Func. Count: 116, Neg. LLF: 135.935553507946
Iteration: 12, Func. Count: 126, Neg. LLF: 135.93554976589672
Iteration: 13, Func. Count: 135, Neg. LLF: 135.93554999496138
Optimization terminated successfully (Exit mode 0)
Current function value: 135.93554976589672
Iterations: 13
Function evaluations: 135
Gradient evaluations: 13
Iteration: 1, Func. Count: 12, Neg. LLF: 248.9041280037634
Iteration: 2, Func. Count: 24, Neg. LLF: 191.66613778027738
Iteration: 3, Func. Count: 36, Neg. LLF: 132.0684939475447
Iteration: 4, Func. Count: 47, Neg. LLF: 237.26347575896065
Iteration: 5, Func. Count: 60, Neg. LLF: 131.76866273722456
Iteration: 6, Func. Count: 71, Neg. LLF: 131.62885785644792
Iteration: 7, Func. Count: 82, Neg. LLF: 131.62656215740213
Iteration: 8, Func. Count: 93, Neg. LLF: 131.62639428793378
Iteration: 9, Func. Count: 104, Neg. LLF: 131.62619281833227
Iteration: 10, Func. Count: 115, Neg. LLF: 131.626188804391
Iteration: 11, Func. Count: 125, Neg. LLF: 131.6261887431364
Optimization terminated successfully (Exit mode 0)
Current function value: 131.626188804391
Iterations: 11
Function evaluations: 125
Gradient evaluations: 11
Iteration: 1, Func. Count: 13, Neg. LLF: 142.9200488467905
Iteration: 2, Func. Count: 26, Neg. LLF: 186.73591697650158
Iteration: 3, Func. Count: 39, Neg. LLF: 135.75762773331783
Iteration: 4, Func. Count: 52, Neg. LLF: 132.77665887261378
Iteration: 5, Func. Count: 64, Neg. LLF: 132.33767213782232
Iteration: 6, Func. Count: 76, Neg. LLF: 131.97570266733544
Iteration: 7, Func. Count: 88, Neg. LLF: 131.81039724306768
Iteration: 8, Func. Count: 100, Neg. LLF: 131.73410595096237
Iteration: 9, Func. Count: 112, Neg. LLF: 131.669408006884
Iteration: 10, Func. Count: 124, Neg. LLF: 131.63487419310428
Iteration: 11, Func. Count: 136, Neg. LLF: 131.62694126280442
Iteration: 12, Func. Count: 148, Neg. LLF: 131.62620192737012
Iteration: 13, Func. Count: 160, Neg. LLF: 131.62618871401997
Iteration: 14, Func. Count: 171, Neg. LLF: 131.62618871206482
Optimization terminated successfully (Exit mode 0)
Current function value: 131.62618871401997
Iterations: 14
Function evaluations: 171
Gradient evaluations: 14
Iteration: 1, Func. Count: 14, Neg. LLF: 143.78267266040478
Iteration: 2, Func. Count: 28, Neg. LLF: 174.16764726309475
Iteration: 3, Func. Count: 42, Neg. LLF: 136.5878236350535
Iteration: 4, Func. Count: 56, Neg. LLF: 132.82265335261795
Iteration: 5, Func. Count: 69, Neg. LLF: 132.8409971770304
Iteration: 6, Func. Count: 83, Neg. LLF: 131.9384128433382
Iteration: 7, Func. Count: 96, Neg. LLF: 131.80115715502293
Iteration: 8, Func. Count: 109, Neg. LLF: 131.74013950602196
Iteration: 9, Func. Count: 122, Neg. LLF: 131.6887195711325
Iteration: 10, Func. Count: 135, Neg. LLF: 131.6536261959989
Iteration: 11, Func. Count: 148, Neg. LLF: 131.6264540525469
Iteration: 12, Func. Count: 161, Neg. LLF: 131.6262052392754
Iteration: 13, Func. Count: 174, Neg. LLF: 131.62618960052018
Iteration: 14, Func. Count: 187, Neg. LLF: 131.62618869304188
Optimization terminated successfully (Exit mode 0)
Current function value: 131.62618869304188
Iterations: 14
Function evaluations: 187
Gradient evaluations: 14
Iteration: 1, Func. Count: 15, Neg. LLF: 151.65959508495956
Iteration: 2, Func. Count: 30, Neg. LLF: 135.54536904757356
Iteration: 3, Func. Count: 45, Neg. LLF: 142.4027682853122
Iteration: 4, Func. Count: 60, Neg. LLF: 132.73457037525523
Iteration: 5, Func. Count: 74, Neg. LLF: 132.27069538980209
Iteration: 6, Func. Count: 88, Neg. LLF: 131.95587544753528
Iteration: 7, Func. Count: 102, Neg. LLF: 131.8041409920692
Iteration: 8, Func. Count: 116, Neg. LLF: 131.70191342937525
Iteration: 9, Func. Count: 130, Neg. LLF: 131.67444147986006
Iteration: 10, Func. Count: 144, Neg. LLF: 131.6311597242765
Iteration: 11, Func. Count: 158, Neg. LLF: 131.62756846926644
Iteration: 12, Func. Count: 172, Neg. LLF: 131.62624044087826
Iteration: 13, Func. Count: 186, Neg. LLF: 131.6261930354897
Iteration: 14, Func. Count: 200, Neg. LLF: 131.6261886897729
Iteration: 15, Func. Count: 213, Neg. LLF: 131.62618866097637
Optimization terminated successfully (Exit mode 0)
Current function value: 131.6261886897729
Iterations: 15
Function evaluations: 213
Gradient evaluations: 15
Iteration: 1, Func. Count: 8, Neg. LLF: 140.77833605124485
Iteration: 2, Func. Count: 16, Neg. LLF: 148.16127733464037
Iteration: 3, Func. Count: 24, Neg. LLF: 140.74220133394786
Iteration: 4, Func. Count: 32, Neg. LLF: 135.52198256783672
Iteration: 5, Func. Count: 39, Neg. LLF: 135.9750414188746
Iteration: 6, Func. Count: 47, Neg. LLF: 161.12942584839737
Iteration: 7, Func. Count: 55, Neg. LLF: 136.79708366493722
Iteration: 8, Func. Count: 63, Neg. LLF: 135.0076339339508
Iteration: 9, Func. Count: 70, Neg. LLF: 134.975759221765
Iteration: 10, Func. Count: 77, Neg. LLF: 135.75213243675768
Iteration: 11, Func. Count: 85, Neg. LLF: 134.9577251338358
Iteration: 12, Func. Count: 92, Neg. LLF: 134.95677108089538
Iteration: 13, Func. Count: 99, Neg. LLF: 134.95659520322198
Iteration: 14, Func. Count: 106, Neg. LLF: 134.95657862786373
Iteration: 15, Func. Count: 112, Neg. LLF: 134.95657862520443
Optimization terminated successfully (Exit mode 0)
Current function value: 134.95657862786373
Iterations: 15
Function evaluations: 112
Gradient evaluations: 15
Iteration: 1, Func. Count: 9, Neg. LLF: 4266.313803412115
Iteration: 2, Func. Count: 19, Neg. LLF: 138.16034926672927
Iteration: 3, Func. Count: 27, Neg. LLF: 138.12597555958874
Iteration: 4, Func. Count: 35, Neg. LLF: 138.09751446220446
Iteration: 5, Func. Count: 43, Neg. LLF: 138.10458617838356
Iteration: 6, Func. Count: 52, Neg. LLF: 138.0919581981664
Iteration: 7, Func. Count: 60, Neg. LLF: 138.09146226925384
Iteration: 8, Func. Count: 67, Neg. LLF: 138.09146226950799
Optimization terminated successfully (Exit mode 0)
Current function value: 138.09146226925384
Iterations: 8
Function evaluations: 67
Gradient evaluations: 8
Iteration: 1, Func. Count: 10, Neg. LLF: 28269117.427178316
Iteration: 2, Func. Count: 21, Neg. LLF: 138.1487117004221
Iteration: 3, Func. Count: 30, Neg. LLF: 138.12093045211958
Iteration: 4, Func. Count: 39, Neg. LLF: 138.16588351470156
Iteration: 5, Func. Count: 49, Neg. LLF: 138.10390626673933
Iteration: 6, Func. Count: 58, Neg. LLF: 138.10371763128805
Iteration: 7, Func. Count: 67, Neg. LLF: 138.10309899771391
Iteration: 8, Func. Count: 76, Neg. LLF: 138.10210289826446
Iteration: 9, Func. Count: 85, Neg. LLF: 138.09425709011776
Iteration: 10, Func. Count: 94, Neg. LLF: 138.09207615317627
Iteration: 11, Func. Count: 103, Neg. LLF: 138.09150467929874
Iteration: 12, Func. Count: 112, Neg. LLF: 138.091580897906
Iteration: 13, Func. Count: 121, Neg. LLF: 138.0914622866789
Optimization terminated successfully (Exit mode 0)
Current function value: 138.09146228617317
Iterations: 13
Function evaluations: 121
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 172.8722676122391
Iteration: 2, Func. Count: 23, Neg. LLF: 145.07537699342254
Iteration: 3, Func. Count: 34, Neg. LLF: 148.05502495565827
Iteration: 4, Func. Count: 45, Neg. LLF: 141.47823164172968
Iteration: 5, Func. Count: 56, Neg. LLF: 141.5402385956712
Iteration: 6, Func. Count: 67, Neg. LLF: 137.36678061124132
Iteration: 7, Func. Count: 77, Neg. LLF: 137.24392709483277
Iteration: 8, Func. Count: 87, Neg. LLF: 137.09532822068957
Iteration: 9, Func. Count: 97, Neg. LLF: 137.27723490602622
Iteration: 10, Func. Count: 108, Neg. LLF: 136.9354442213757
Iteration: 11, Func. Count: 118, Neg. LLF: 136.8523039690328
Iteration: 12, Func. Count: 128, Neg. LLF: 136.81170053750262
Iteration: 13, Func. Count: 138, Neg. LLF: 136.78526669052243
Iteration: 14, Func. Count: 148, Neg. LLF: 136.68218640567935
Iteration: 15, Func. Count: 158, Neg. LLF: 136.43021157898193
Iteration: 16, Func. Count: 168, Neg. LLF: 137.06632374104746
Iteration: 17, Func. Count: 179, Neg. LLF: 137.20990033990978
Iteration: 18, Func. Count: 190, Neg. LLF: 136.2761911260383
Iteration: 19, Func. Count: 201, Neg. LLF: 136.0084664858552
Iteration: 20, Func. Count: 212, Neg. LLF: 136.32357648987912
Iteration: 21, Func. Count: 223, Neg. LLF: 135.3628296853767
Iteration: 22, Func. Count: 233, Neg. LLF: 135.09818208065374
Iteration: 23, Func. Count: 243, Neg. LLF: 136.76602834741664
Iteration: 24, Func. Count: 254, Neg. LLF: 135.00503960649203
Iteration: 25, Func. Count: 265, Neg. LLF: 134.86155453753778
Iteration: 26, Func. Count: 275, Neg. LLF: 134.8518321095657
Iteration: 27, Func. Count: 285, Neg. LLF: 134.85136628303428
Iteration: 28, Func. Count: 295, Neg. LLF: 134.85133381360083
Iteration: 29, Func. Count: 305, Neg. LLF: 134.85132993938421
Iteration: 30, Func. Count: 315, Neg. LLF: 134.85132722174725
Iteration: 31, Func. Count: 324, Neg. LLF: 134.85132721297302
Optimization terminated successfully (Exit mode 0)
Current function value: 134.85132722174725
Iterations: 31
Function evaluations: 324
Gradient evaluations: 31
Iteration: 1, Func. Count: 12, Neg. LLF: 174.51412890594128
Iteration: 2, Func. Count: 25, Neg. LLF: 146.75924211930962
Iteration: 3, Func. Count: 37, Neg. LLF: 142.66540390684182
Iteration: 4, Func. Count: 49, Neg. LLF: 142.3460388779292
Iteration: 5, Func. Count: 61, Neg. LLF: 138.5876010258218
Iteration: 6, Func. Count: 73, Neg. LLF: 137.59580317552178
Iteration: 7, Func. Count: 84, Neg. LLF: 138.35087169780874
Iteration: 8, Func. Count: 96, Neg. LLF: 137.43120286801985
Iteration: 9, Func. Count: 108, Neg. LLF: 137.0527560939931
Iteration: 10, Func. Count: 119, Neg. LLF: 136.90722449751067
Iteration: 11, Func. Count: 130, Neg. LLF: 136.77724687474728
Iteration: 12, Func. Count: 141, Neg. LLF: 136.65110668849326
Iteration: 13, Func. Count: 152, Neg. LLF: 136.55469480733163
Iteration: 14, Func. Count: 163, Neg. LLF: 136.44455421275575
Iteration: 15, Func. Count: 174, Neg. LLF: 136.23019585344653
Iteration: 16, Func. Count: 185, Neg. LLF: 140.84692602370032
Iteration: 17, Func. Count: 197, Neg. LLF: 138.38587432360123
Iteration: 18, Func. Count: 209, Neg. LLF: 135.27209366760619
Iteration: 19, Func. Count: 220, Neg. LLF: 135.31999356999322
Iteration: 20, Func. Count: 232, Neg. LLF: 135.04060016968836
Iteration: 21, Func. Count: 243, Neg. LLF: 135.20752983241366
Iteration: 22, Func. Count: 255, Neg. LLF: 134.9524303998304
Iteration: 23, Func. Count: 266, Neg. LLF: 134.84177779353084
Iteration: 24, Func. Count: 277, Neg. LLF: 134.81845802461925
Iteration: 25, Func. Count: 288, Neg. LLF: 134.88029829736845
Iteration: 26, Func. Count: 300, Neg. LLF: 134.91832598468756
Iteration: 27, Func. Count: 312, Neg. LLF: 134.68812798731477
Iteration: 28, Func. Count: 323, Neg. LLF: 134.65595584109653
Iteration: 29, Func. Count: 334, Neg. LLF: 134.6493927302867
Iteration: 30, Func. Count: 345, Neg. LLF: 134.65067604994545
Iteration: 31, Func. Count: 357, Neg. LLF: 134.64796670059405
Iteration: 32, Func. Count: 368, Neg. LLF: 134.6470383999749
Iteration: 33, Func. Count: 379, Neg. LLF: 134.64691805022468
Iteration: 34, Func. Count: 390, Neg. LLF: 134.64685117409323
Iteration: 35, Func. Count: 401, Neg. LLF: 134.64679946563467
Iteration: 36, Func. Count: 412, Neg. LLF: 134.64670948012815
Iteration: 37, Func. Count: 423, Neg. LLF: 134.64665707945
Iteration: 38, Func. Count: 434, Neg. LLF: 134.64664148284717
Iteration: 39, Func. Count: 445, Neg. LLF: 134.64664150853898
Optimization terminated successfully (Exit mode 0)
Current function value: 134.64664150853898
Iterations: 39
Function evaluations: 445
Gradient evaluations: 39
Iteration: 1, Func. Count: 9, Neg. LLF: 140.64640331639274
Iteration: 2, Func. Count: 18, Neg. LLF: 148.53858368396524
Iteration: 3, Func. Count: 27, Neg. LLF: 140.52993086568708
Iteration: 4, Func. Count: 36, Neg. LLF: 135.5053976536793
Iteration: 5, Func. Count: 44, Neg. LLF: 135.94492107548274
Iteration: 6, Func. Count: 53, Neg. LLF: 179.85119134913916
Iteration: 7, Func. Count: 62, Neg. LLF: 137.33561087067739
Iteration: 8, Func. Count: 71, Neg. LLF: 136.0909106372556
Iteration: 9, Func. Count: 80, Neg. LLF: 135.01335070997473
Iteration: 10, Func. Count: 89, Neg. LLF: 134.9216973821549
Iteration: 11, Func. Count: 97, Neg. LLF: 134.92025477932822
Iteration: 12, Func. Count: 105, Neg. LLF: 134.92009074125056
Iteration: 13, Func. Count: 113, Neg. LLF: 134.92006856201306
Iteration: 14, Func. Count: 121, Neg. LLF: 134.92006732015327
Iteration: 15, Func. Count: 128, Neg. LLF: 134.92006731146574
Optimization terminated successfully (Exit mode 0)
Current function value: 134.92006732015327
Iterations: 15
Function evaluations: 128
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 139.47275713113035
Iteration: 2, Func. Count: 20, Neg. LLF: 138.45667789977497
Iteration: 3, Func. Count: 30, Neg. LLF: 141.78132732637218
Iteration: 4, Func. Count: 40, Neg. LLF: 136.46303489450966
Iteration: 5, Func. Count: 49, Neg. LLF: 135.71486525706584
Iteration: 6, Func. Count: 59, Neg. LLF: 136.93051349250797
Iteration: 7, Func. Count: 70, Neg. LLF: 137.3085194750596
Iteration: 8, Func. Count: 80, Neg. LLF: 135.018709055506
Iteration: 9, Func. Count: 89, Neg. LLF: 135.01494180884285
Iteration: 10, Func. Count: 99, Neg. LLF: 136.08798538741286
Iteration: 11, Func. Count: 109, Neg. LLF: 134.92875097433043
Iteration: 12, Func. Count: 118, Neg. LLF: 134.92374832316472
Iteration: 13, Func. Count: 127, Neg. LLF: 134.92266251977665
Iteration: 14, Func. Count: 136, Neg. LLF: 134.92020594733842
Iteration: 15, Func. Count: 145, Neg. LLF: 134.92007941868295
Iteration: 16, Func. Count: 154, Neg. LLF: 134.92006723524025
Iteration: 17, Func. Count: 162, Neg. LLF: 134.92006733613732
Optimization terminated successfully (Exit mode 0)
Current function value: 134.92006723524025
Iterations: 17
Function evaluations: 162
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 142.63816245784466
Iteration: 2, Func. Count: 22, Neg. LLF: 168.53928722958358
Iteration: 3, Func. Count: 34, Neg. LLF: 141.81745467751446
Iteration: 4, Func. Count: 45, Neg. LLF: 137.2344927902986
Iteration: 5, Func. Count: 55, Neg. LLF: 137.07567485045567
Iteration: 6, Func. Count: 65, Neg. LLF: 136.9056934570967
Iteration: 7, Func. Count: 75, Neg. LLF: 136.59915771770102
Iteration: 8, Func. Count: 85, Neg. LLF: 136.47322214109585
Iteration: 9, Func. Count: 95, Neg. LLF: 136.47826250962413
Iteration: 10, Func. Count: 106, Neg. LLF: 136.36851882956537
Iteration: 11, Func. Count: 116, Neg. LLF: 136.35978531948493
Iteration: 12, Func. Count: 126, Neg. LLF: 136.35952866327221
Iteration: 13, Func. Count: 136, Neg. LLF: 136.35940051163965
Iteration: 14, Func. Count: 146, Neg. LLF: 136.3594905216951
Iteration: 15, Func. Count: 158, Neg. LLF: 136.35940764438857
Iteration: 16, Func. Count: 169, Neg. LLF: 136.35940692813017
Iteration: 17, Func. Count: 178, Neg. LLF: 136.35940689958156
Optimization terminated successfully (Exit mode 0)
Current function value: 136.35940692813017
Iterations: 18
Function evaluations: 178
Gradient evaluations: 17
Iteration: 1, Func. Count: 12, Neg. LLF: 168.152470993079
Iteration: 2, Func. Count: 24, Neg. LLF: 142.44744863496817
Iteration: 3, Func. Count: 36, Neg. LLF: 137.18585201742545
Iteration: 4, Func. Count: 47, Neg. LLF: 137.29858276540574
Iteration: 5, Func. Count: 59, Neg. LLF: 136.65310009454444
Iteration: 6, Func. Count: 70, Neg. LLF: 135.73371745330522
Iteration: 7, Func. Count: 81, Neg. LLF: 135.44334206995947
Iteration: 8, Func. Count: 92, Neg. LLF: 135.37122760737935
Iteration: 9, Func. Count: 103, Neg. LLF: 135.33479381448842
Iteration: 10, Func. Count: 114, Neg. LLF: 135.32628422954048
Iteration: 11, Func. Count: 125, Neg. LLF: 135.32584346596616
Iteration: 12, Func. Count: 136, Neg. LLF: 135.32581897565638
Iteration: 13, Func. Count: 146, Neg. LLF: 135.3258188831701
Optimization terminated successfully (Exit mode 0)
Current function value: 135.32581897565638
Iterations: 13
Function evaluations: 146
Gradient evaluations: 13
Iteration: 1, Func. Count: 13, Neg. LLF: 173.54923443620632
Iteration: 2, Func. Count: 27, Neg. LLF: 146.51697395499514
Iteration: 3, Func. Count: 40, Neg. LLF: 141.20891256080984
Iteration: 4, Func. Count: 53, Neg. LLF: 140.80011461584752
Iteration: 5, Func. Count: 66, Neg. LLF: 138.82312124916038
Iteration: 6, Func. Count: 79, Neg. LLF: 137.5164144783854
Iteration: 7, Func. Count: 91, Neg. LLF: 137.84285708331032
Iteration: 8, Func. Count: 104, Neg. LLF: 141.1660029832098
Iteration: 9, Func. Count: 118, Neg. LLF: 137.38575527967302
Iteration: 10, Func. Count: 131, Neg. LLF: 136.68900757744285
Iteration: 11, Func. Count: 143, Neg. LLF: 136.4097623992196
Iteration: 12, Func. Count: 155, Neg. LLF: 136.08592290056671
Iteration: 13, Func. Count: 167, Neg. LLF: 135.5826522072414
Iteration: 14, Func. Count: 179, Neg. LLF: 135.35580695274902
Iteration: 15, Func. Count: 191, Neg. LLF: 136.35393947560462
Iteration: 16, Func. Count: 204, Neg. LLF: 135.21802886490627
Iteration: 17, Func. Count: 216, Neg. LLF: 134.99865154190044
Iteration: 18, Func. Count: 228, Neg. LLF: 134.93715653287595
Iteration: 19, Func. Count: 240, Neg. LLF: 135.03253281984578
Iteration: 20, Func. Count: 253, Neg. LLF: 134.87519425216723
Iteration: 21, Func. Count: 265, Neg. LLF: 134.845923218527
Iteration: 22, Func. Count: 277, Neg. LLF: 134.828286769946
Iteration: 23, Func. Count: 289, Neg. LLF: 134.66282890773823
Iteration: 24, Func. Count: 301, Neg. LLF: 134.65064985598352
Iteration: 25, Func. Count: 313, Neg. LLF: 134.64610917995148
Iteration: 26, Func. Count: 325, Neg. LLF: 134.64479975463613
Iteration: 27, Func. Count: 337, Neg. LLF: 134.64430389073058
Iteration: 28, Func. Count: 349, Neg. LLF: 134.64410414375894
Iteration: 29, Func. Count: 361, Neg. LLF: 134.64405473167724
Iteration: 30, Func. Count: 373, Neg. LLF: 134.6440376934053
Iteration: 31, Func. Count: 385, Neg. LLF: 134.64403591739574
Iteration: 32, Func. Count: 396, Neg. LLF: 134.64403589603347
Optimization terminated successfully (Exit mode 0)
Current function value: 134.64403591739574
Iterations: 32
Function evaluations: 396
Gradient evaluations: 32
Iteration: 1, Func. Count: 10, Neg. LLF: 140.0360279433346
Iteration: 2, Func. Count: 20, Neg. LLF: 150.22261121862664
Iteration: 3, Func. Count: 30, Neg. LLF: 138.72435007787334
Iteration: 4, Func. Count: 40, Neg. LLF: 135.50222926063458
Iteration: 5, Func. Count: 49, Neg. LLF: 136.14289252661777
Iteration: 6, Func. Count: 60, Neg. LLF: 141.74042673013088
Iteration: 7, Func. Count: 71, Neg. LLF: 135.16563957050522
Iteration: 8, Func. Count: 81, Neg. LLF: 135.4153748326413
Iteration: 9, Func. Count: 91, Neg. LLF: 134.92052812897282
Iteration: 10, Func. Count: 100, Neg. LLF: 134.9644599644306
Iteration: 11, Func. Count: 110, Neg. LLF: 134.92894149035533
Iteration: 12, Func. Count: 120, Neg. LLF: 134.90900339375068
Iteration: 13, Func. Count: 129, Neg. LLF: 134.90891968519082
Iteration: 14, Func. Count: 138, Neg. LLF: 134.90891304272674
Iteration: 15, Func. Count: 147, Neg. LLF: 134.90891223030545
Optimization terminated successfully (Exit mode 0)
Current function value: 134.90891223030545
Iterations: 15
Function evaluations: 147
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 140.72405122128234
Iteration: 2, Func. Count: 22, Neg. LLF: 148.19624551161223
Iteration: 3, Func. Count: 33, Neg. LLF: 152.90514133453306
Iteration: 4, Func. Count: 45, Neg. LLF: 137.15932330295254
Iteration: 5, Func. Count: 55, Neg. LLF: 136.88116648175117
Iteration: 6, Func. Count: 65, Neg. LLF: 136.19950533933923
Iteration: 7, Func. Count: 75, Neg. LLF: 135.26352680739265
Iteration: 8, Func. Count: 85, Neg. LLF: 135.27041565537218
Iteration: 9, Func. Count: 96, Neg. LLF: 134.74704925608734
Iteration: 10, Func. Count: 106, Neg. LLF: 134.5619220339526
Iteration: 11, Func. Count: 116, Neg. LLF: 134.46979596443026
Iteration: 12, Func. Count: 126, Neg. LLF: 134.39063296285386
Iteration: 13, Func. Count: 136, Neg. LLF: 134.38795888327064
Iteration: 14, Func. Count: 146, Neg. LLF: 134.38445828175406
Iteration: 15, Func. Count: 156, Neg. LLF: 134.38419664816283
Iteration: 16, Func. Count: 166, Neg. LLF: 134.38406420171094
Iteration: 17, Func. Count: 176, Neg. LLF: 134.38408487305898
Iteration: 18, Func. Count: 196, Neg. LLF: 134.38410340303165
Iteration: 19, Func. Count: 212, Neg. LLF: 134.38410476613737
Iteration: 20, Func. Count: 223, Neg. LLF: 134.38410410160967
Iteration: 21, Func. Count: 234, Neg. LLF: 134.3841040838438
Iteration: 22, Func. Count: 245, Neg. LLF: 134.3841040808461
Iteration: 23, Func. Count: 256, Neg. LLF: 134.3841040972174
Iteration: 24, Func. Count: 267, Neg. LLF: 134.38410409531937
Iteration: 25, Func. Count: 279, Neg. LLF: 134.38410408079392
Iteration: 26, Func. Count: 290, Neg. LLF: 134.3841040806144
Iteration: 27, Func. Count: 299, Neg. LLF: 134.3841039928184
Optimization terminated successfully (Exit mode 0)
Current function value: 134.3841040806144
Iterations: 29
Function evaluations: 299
Gradient evaluations: 27
Iteration: 1, Func. Count: 12, Neg. LLF: 161.2832675173463
Iteration: 2, Func. Count: 24, Neg. LLF: 143.69256934989303
Iteration: 3, Func. Count: 36, Neg. LLF: 137.17619105837989
Iteration: 4, Func. Count: 48, Neg. LLF: 135.68488255724247
Iteration: 5, Func. Count: 59, Neg. LLF: 136.99539417749665
Iteration: 6, Func. Count: 71, Neg. LLF: 134.92394598740358
Iteration: 7, Func. Count: 82, Neg. LLF: 134.42293418068795
Iteration: 8, Func. Count: 93, Neg. LLF: 134.74550318131367
Iteration: 9, Func. Count: 105, Neg. LLF: 134.38556566725745
Iteration: 10, Func. Count: 116, Neg. LLF: 134.38412620191758
Iteration: 11, Func. Count: 127, Neg. LLF: 134.38410413184144
Iteration: 12, Func. Count: 137, Neg. LLF: 134.3841040946497
Optimization terminated successfully (Exit mode 0)
Current function value: 134.38410413184144
Iterations: 12
Function evaluations: 137
Gradient evaluations: 12
Iteration: 1, Func. Count: 13, Neg. LLF: 162.29750553474412
Iteration: 2, Func. Count: 26, Neg. LLF: 138.19867115607076
Iteration: 3, Func. Count: 39, Neg. LLF: 137.04676863250796
Iteration: 4, Func. Count: 51, Neg. LLF: 136.91319057916124
Iteration: 5, Func. Count: 63, Neg. LLF: 137.40816395412162
Iteration: 6, Func. Count: 76, Neg. LLF: 135.9791565183308
Iteration: 7, Func. Count: 88, Neg. LLF: 137.52024014367223
Iteration: 8, Func. Count: 101, Neg. LLF: 135.90453036980688
Iteration: 9, Func. Count: 113, Neg. LLF: 135.85852367171597
Iteration: 10, Func. Count: 125, Neg. LLF: 135.77890566960275
Iteration: 11, Func. Count: 137, Neg. LLF: 135.42942975240112
Iteration: 12, Func. Count: 149, Neg. LLF: 135.12413399538912
Iteration: 13, Func. Count: 161, Neg. LLF: 134.75420900319705
Iteration: 14, Func. Count: 173, Neg. LLF: 134.40549084885157
Iteration: 15, Func. Count: 185, Neg. LLF: 134.393337816626
Iteration: 16, Func. Count: 197, Neg. LLF: 134.38655509679356
Iteration: 17, Func. Count: 209, Neg. LLF: 134.38445603904918
Iteration: 18, Func. Count: 221, Neg. LLF: 134.3841387485458
Iteration: 19, Func. Count: 233, Neg. LLF: 134.38410685402877
Iteration: 20, Func. Count: 245, Neg. LLF: 134.38410559951728
Iteration: 21, Func. Count: 257, Neg. LLF: 134.3841019263481
Iteration: 22, Func. Count: 269, Neg. LLF: 134.38410316054953
Iteration: 23, Func. Count: 281, Neg. LLF: 134.3841040808011
Optimization terminated successfully (Exit mode 0)
Current function value: 134.3841040808011
Iterations: 24
Function evaluations: 281
Gradient evaluations: 23
Iteration: 1, Func. Count: 14, Neg. LLF: 173.7085168238073
Iteration: 2, Func. Count: 29, Neg. LLF: 146.68359043389268
Iteration: 3, Func. Count: 43, Neg. LLF: 141.33403955609293
Iteration: 4, Func. Count: 57, Neg. LLF: 141.0379249763001
Iteration: 5, Func. Count: 71, Neg. LLF: 138.87784616964677
Iteration: 6, Func. Count: 85, Neg. LLF: 137.54120730217855
Iteration: 7, Func. Count: 98, Neg. LLF: 137.89515176328908
Iteration: 8, Func. Count: 112, Neg. LLF: 141.34433585053162
Iteration: 9, Func. Count: 127, Neg. LLF: 139.3949162234123
Iteration: 10, Func. Count: 141, Neg. LLF: 136.7811299289449
Iteration: 11, Func. Count: 154, Neg. LLF: 136.78555983966385
Iteration: 12, Func. Count: 168, Neg. LLF: 136.46407548746376
Iteration: 13, Func. Count: 181, Neg. LLF: 136.10505149672443
Iteration: 14, Func. Count: 194, Neg. LLF: 135.87899656715655
Iteration: 15, Func. Count: 207, Neg. LLF: 135.61512848771795
Iteration: 16, Func. Count: 220, Neg. LLF: 135.37110256646716
Iteration: 17, Func. Count: 233, Neg. LLF: 139.10614160447153
Iteration: 18, Func. Count: 247, Neg. LLF: 135.78018078095252
Iteration: 19, Func. Count: 261, Neg. LLF: 135.33600223960173
Iteration: 20, Func. Count: 275, Neg. LLF: 134.89190994624093
Iteration: 21, Func. Count: 288, Neg. LLF: 134.85784387608194
Iteration: 22, Func. Count: 301, Neg. LLF: 134.82215619534705
Iteration: 23, Func. Count: 314, Neg. LLF: 134.66834632774902
Iteration: 24, Func. Count: 327, Neg. LLF: 134.65786851536305
Iteration: 25, Func. Count: 340, Neg. LLF: 134.7686703235599
Iteration: 26, Func. Count: 354, Neg. LLF: 134.62520112174866
Iteration: 27, Func. Count: 367, Neg. LLF: 134.62164637570146
Iteration: 28, Func. Count: 380, Neg. LLF: 134.6330951583875
Iteration: 29, Func. Count: 394, Neg. LLF: 134.6195700508394
Iteration: 30, Func. Count: 407, Neg. LLF: 134.61918992885822
Iteration: 31, Func. Count: 420, Neg. LLF: 134.6191579341515
Iteration: 32, Func. Count: 433, Neg. LLF: 134.61915644426062
Iteration: 33, Func. Count: 445, Neg. LLF: 134.61915642402644
Optimization terminated successfully (Exit mode 0)
Current function value: 134.61915644426062
Iterations: 33
Function evaluations: 445
Gradient evaluations: 33
Iteration: 1, Func. Count: 11, Neg. LLF: 138.01152970372854
Iteration: 2, Func. Count: 22, Neg. LLF: 151.41491149439804
Iteration: 3, Func. Count: 33, Neg. LLF: 134.63008543345066
Iteration: 4, Func. Count: 43, Neg. LLF: 135.0921321028649
Iteration: 5, Func. Count: 54, Neg. LLF: 7412.733792408748
Iteration: 6, Func. Count: 65, Neg. LLF: 136.83233839814483
Iteration: 7, Func. Count: 76, Neg. LLF: 7830316.39757972
Iteration: 8, Func. Count: 87, Neg. LLF: 135.51414318419936
Iteration: 9, Func. Count: 98, Neg. LLF: 133.84235608425445
Iteration: 10, Func. Count: 108, Neg. LLF: 134.12341506815198
Iteration: 11, Func. Count: 119, Neg. LLF: 133.7193646895265
Iteration: 12, Func. Count: 129, Neg. LLF: 133.6775293290603
Iteration: 13, Func. Count: 139, Neg. LLF: 133.67599773332097
Iteration: 14, Func. Count: 149, Neg. LLF: 133.67467640392027
Iteration: 15, Func. Count: 159, Neg. LLF: 133.6746592435061
Iteration: 16, Func. Count: 169, Neg. LLF: 133.6746570070709
Iteration: 17, Func. Count: 178, Neg. LLF: 133.6746570125244
Optimization terminated successfully (Exit mode 0)
Current function value: 133.6746570070709
Iterations: 17
Function evaluations: 178
Gradient evaluations: 17
Iteration: 1, Func. Count: 12, Neg. LLF: 139.59748697139725
Iteration: 2, Func. Count: 24, Neg. LLF: 157.67471052653576
Iteration: 3, Func. Count: 36, Neg. LLF: 139.1888205698864
Iteration: 4, Func. Count: 48, Neg. LLF: 133.85082515623156
Iteration: 5, Func. Count: 59, Neg. LLF: 133.43169909861172
Iteration: 6, Func. Count: 70, Neg. LLF: 132.49484906958781
Iteration: 7, Func. Count: 81, Neg. LLF: 132.28400696988894
Iteration: 8, Func. Count: 93, Neg. LLF: 131.81617576186426
Iteration: 9, Func. Count: 104, Neg. LLF: 131.7429835313597
Iteration: 10, Func. Count: 115, Neg. LLF: 131.6737126519598
Iteration: 11, Func. Count: 126, Neg. LLF: 131.63431058825958
Iteration: 12, Func. Count: 137, Neg. LLF: 131.62669863395783
Iteration: 13, Func. Count: 148, Neg. LLF: 131.6261962155167
Iteration: 14, Func. Count: 159, Neg. LLF: 131.62618873519523
Iteration: 15, Func. Count: 169, Neg. LLF: 131.62618867380402
Optimization terminated successfully (Exit mode 0)
Current function value: 131.62618873519523
Iterations: 15
Function evaluations: 169
Gradient evaluations: 15
Iteration: 1, Func. Count: 13, Neg. LLF: 142.89525745188303
Iteration: 2, Func. Count: 26, Neg. LLF: 187.00938761352404
Iteration: 3, Func. Count: 39, Neg. LLF: 135.75117314022668
Iteration: 4, Func. Count: 52, Neg. LLF: 132.77447898744853
Iteration: 5, Func. Count: 64, Neg. LLF: 132.33426937928843
Iteration: 6, Func. Count: 76, Neg. LLF: 131.96888117287628
Iteration: 7, Func. Count: 88, Neg. LLF: 131.8239816159612
Iteration: 8, Func. Count: 100, Neg. LLF: 131.73812141151518
Iteration: 9, Func. Count: 112, Neg. LLF: 131.6813097815613
Iteration: 10, Func. Count: 124, Neg. LLF: 131.65792723964918
Iteration: 11, Func. Count: 136, Neg. LLF: 131.62880716399877
Iteration: 12, Func. Count: 148, Neg. LLF: 131.6263706783309
Iteration: 13, Func. Count: 160, Neg. LLF: 131.62619038079956
Iteration: 14, Func. Count: 172, Neg. LLF: 131.62618869900072
Iteration: 15, Func. Count: 183, Neg. LLF: 131.62618869710482
Optimization terminated successfully (Exit mode 0)
Current function value: 131.62618869900072
Iterations: 15
Function evaluations: 183
Gradient evaluations: 15
Iteration: 1, Func. Count: 14, Neg. LLF: 143.8413815691031
Iteration: 2, Func. Count: 28, Neg. LLF: 181.62645964583916
Iteration: 3, Func. Count: 42, Neg. LLF: 136.9462190589193
Iteration: 4, Func. Count: 56, Neg. LLF: 132.8235916842746
Iteration: 5, Func. Count: 69, Neg. LLF: 132.54523922161587
Iteration: 6, Func. Count: 82, Neg. LLF: 131.9537035873652
Iteration: 7, Func. Count: 95, Neg. LLF: 132.41262536749664
Iteration: 8, Func. Count: 109, Neg. LLF: 131.75273024531518
Iteration: 9, Func. Count: 122, Neg. LLF: 131.70914749584773
Iteration: 10, Func. Count: 135, Neg. LLF: 131.65233614063672
Iteration: 11, Func. Count: 148, Neg. LLF: 131.63159708755822
Iteration: 12, Func. Count: 161, Neg. LLF: 131.62653255238752
Iteration: 13, Func. Count: 174, Neg. LLF: 131.6261969589186
Iteration: 14, Func. Count: 187, Neg. LLF: 131.62618869978866
Iteration: 15, Func. Count: 199, Neg. LLF: 131.6261886985136
Optimization terminated successfully (Exit mode 0)
Current function value: 131.62618869978866
Iterations: 15
Function evaluations: 199
Gradient evaluations: 15
Iteration: 1, Func. Count: 15, Neg. LLF: 151.74692266319698
Iteration: 2, Func. Count: 30, Neg. LLF: 135.55145237352988
Iteration: 3, Func. Count: 45, Neg. LLF: 142.8226503504455
Iteration: 4, Func. Count: 60, Neg. LLF: 132.7390381678065
Iteration: 5, Func. Count: 74, Neg. LLF: 132.26980970172409
Iteration: 6, Func. Count: 88, Neg. LLF: 131.97148792940942
Iteration: 7, Func. Count: 102, Neg. LLF: 131.81546529865614
Iteration: 8, Func. Count: 116, Neg. LLF: 131.70316157769074
Iteration: 9, Func. Count: 130, Neg. LLF: 131.67600907254277
Iteration: 10, Func. Count: 144, Neg. LLF: 131.62952267873428
Iteration: 11, Func. Count: 158, Neg. LLF: 131.62724290296654
Iteration: 12, Func. Count: 172, Neg. LLF: 131.62621643166273
Iteration: 13, Func. Count: 186, Neg. LLF: 131.6261910983008
Iteration: 14, Func. Count: 200, Neg. LLF: 131.6261886898405
Iteration: 15, Func. Count: 213, Neg. LLF: 131.6261886610397
Optimization terminated successfully (Exit mode 0)
Current function value: 131.6261886898405
Iterations: 15
Function evaluations: 213
Gradient evaluations: 15
Iteration: 1, Func. Count: 12, Neg. LLF: 137.17461245687173
Iteration: 2, Func. Count: 24, Neg. LLF: 169.76907667867007
Iteration: 3, Func. Count: 36, Neg. LLF: 131.35633448333274
Iteration: 4, Func. Count: 47, Neg. LLF: 132.7278663508376
Iteration: 5, Func. Count: 60, Neg. LLF: 149.25499231406914
Iteration: 6, Func. Count: 73, Neg. LLF: 135.24239046542922
Iteration: 7, Func. Count: 85, Neg. LLF: 131.41427687534872
Iteration: 8, Func. Count: 97, Neg. LLF: 130.69850869908743
Iteration: 9, Func. Count: 108, Neg. LLF: 140.8832997594376
Iteration: 10, Func. Count: 120, Neg. LLF: 130.5629901918213
Iteration: 11, Func. Count: 131, Neg. LLF: 130.51582064728993
Iteration: 12, Func. Count: 142, Neg. LLF: 130.49950843951984
Iteration: 13, Func. Count: 153, Neg. LLF: 130.48716813087808
Iteration: 14, Func. Count: 164, Neg. LLF: 130.48613128550735
Iteration: 15, Func. Count: 175, Neg. LLF: 130.48609359074607
Iteration: 16, Func. Count: 186, Neg. LLF: 130.48609220780406
Iteration: 17, Func. Count: 196, Neg. LLF: 130.48609259763134
Optimization terminated successfully (Exit mode 0)
Current function value: 130.48609220780406
Iterations: 17
Function evaluations: 196
Gradient evaluations: 17
Iteration: 1, Func. Count: 13, Neg. LLF: 246.5946870543706
Iteration: 2, Func. Count: 26, Neg. LLF: 227.05837940857666
Iteration: 3, Func. Count: 39, Neg. LLF: 130.92006218154134
Iteration: 4, Func. Count: 51, Neg. LLF: 133.21613691621093
Iteration: 5, Func. Count: 64, Neg. LLF: 144.5190323341493
Iteration: 6, Func. Count: 79, Neg. LLF: 130.5132602641948
Iteration: 7, Func. Count: 92, Neg. LLF: 129.93404054794584
Iteration: 8, Func. Count: 104, Neg. LLF: 129.81150263341806
Iteration: 9, Func. Count: 116, Neg. LLF: 129.79858829579797
Iteration: 10, Func. Count: 128, Neg. LLF: 129.79620002032925
Iteration: 11, Func. Count: 140, Neg. LLF: 129.79648358673808
Iteration: 12, Func. Count: 153, Neg. LLF: 129.7925616763555
Iteration: 13, Func. Count: 165, Neg. LLF: 129.79248821523507
Iteration: 14, Func. Count: 177, Neg. LLF: 129.79248738093136
Optimization terminated successfully (Exit mode 0)
Current function value: 129.79248738093136
Iterations: 14
Function evaluations: 177
Gradient evaluations: 14
Iteration: 1, Func. Count: 14, Neg. LLF: 134.08993001260077
Iteration: 2, Func. Count: 27, Neg. LLF: 137.44767739953238
Iteration: 3, Func. Count: 41, Neg. LLF: 140.17489523039742
Iteration: 4, Func. Count: 56, Neg. LLF: 131.71536940919086
Iteration: 5, Func. Count: 70, Neg. LLF: 133.76016897377826
Iteration: 6, Func. Count: 84, Neg. LLF: 131.4068023430235
Iteration: 7, Func. Count: 98, Neg. LLF: 136.21129892799257
Iteration: 8, Func. Count: 112, Neg. LLF: 133.82114243801095
Iteration: 9, Func. Count: 126, Neg. LLF: 130.26083694355128
Iteration: 10, Func. Count: 139, Neg. LLF: 130.61480494033134
Iteration: 11, Func. Count: 153, Neg. LLF: 134.27043011944235
Iteration: 12, Func. Count: 167, Neg. LLF: 129.82932072378176
Iteration: 13, Func. Count: 180, Neg. LLF: 129.8068420364724
Iteration: 14, Func. Count: 193, Neg. LLF: 129.79523840713935
Iteration: 15, Func. Count: 206, Neg. LLF: 129.79256749951892
Iteration: 16, Func. Count: 219, Neg. LLF: 129.79249247051453
Iteration: 17, Func. Count: 232, Neg. LLF: 129.79248756442604
Iteration: 18, Func. Count: 244, Neg. LLF: 129.79248757331234
Optimization terminated successfully (Exit mode 0)
Current function value: 129.79248756442604
Iterations: 18
Function evaluations: 244
Gradient evaluations: 18
Iteration: 1, Func. Count: 15, Neg. LLF: 134.11880060064553
Iteration: 2, Func. Count: 29, Neg. LLF: 136.59167151444154
Iteration: 3, Func. Count: 44, Neg. LLF: 140.75389500173912
Iteration: 4, Func. Count: 60, Neg. LLF: 132.091624342705
Iteration: 5, Func. Count: 75, Neg. LLF: 133.75660255040515
Iteration: 6, Func. Count: 90, Neg. LLF: 131.8437576300151
Iteration: 7, Func. Count: 105, Neg. LLF: 139.15551635405174
Iteration: 8, Func. Count: 120, Neg. LLF: 130.50226620690708
Iteration: 9, Func. Count: 135, Neg. LLF: 130.01351744782517
Iteration: 10, Func. Count: 149, Neg. LLF: 132.3229597401344
Iteration: 11, Func. Count: 165, Neg. LLF: 130.26139732853375
Iteration: 12, Func. Count: 180, Neg. LLF: 129.81381436654897
Iteration: 13, Func. Count: 194, Neg. LLF: 129.80022992422022
Iteration: 14, Func. Count: 208, Neg. LLF: 129.79710772273245
Iteration: 15, Func. Count: 223, Neg. LLF: 129.78393210716817
Iteration: 16, Func. Count: 237, Neg. LLF: 129.75196392764911
Iteration: 17, Func. Count: 251, Neg. LLF: 129.7401543872868
Iteration: 18, Func. Count: 265, Neg. LLF: 129.73253550892173
Iteration: 19, Func. Count: 279, Neg. LLF: 129.7326646980253
Iteration: 20, Func. Count: 294, Neg. LLF: 129.73173872742365
Iteration: 21, Func. Count: 308, Neg. LLF: 129.73173473146417
Iteration: 22, Func. Count: 321, Neg. LLF: 129.7317346939001
Optimization terminated successfully (Exit mode 0)
Current function value: 129.73173473146417
Iterations: 22
Function evaluations: 321
Gradient evaluations: 22
Iteration: 1, Func. Count: 16, Neg. LLF: 134.15155127491158
Iteration: 2, Func. Count: 31, Neg. LLF: 136.03618012221264
Iteration: 3, Func. Count: 48, Neg. LLF: 142.5113985045809
Iteration: 4, Func. Count: 64, Neg. LLF: 130.8692415241551
Iteration: 5, Func. Count: 79, Neg. LLF: 137.88648567062594
Iteration: 6, Func. Count: 95, Neg. LLF: 141.99599747541734
Iteration: 7, Func. Count: 111, Neg. LLF: 130.7558260344204
Iteration: 8, Func. Count: 127, Neg. LLF: 129.97616443870496
Iteration: 9, Func. Count: 142, Neg. LLF: 130.15009922038905
Iteration: 10, Func. Count: 158, Neg. LLF: 130.06989212013417
Iteration: 11, Func. Count: 174, Neg. LLF: 129.81074690612485
Iteration: 12, Func. Count: 189, Neg. LLF: 129.86434808131253
Iteration: 13, Func. Count: 205, Neg. LLF: 129.79568352845914
Iteration: 14, Func. Count: 220, Neg. LLF: 129.77951533929988
Iteration: 15, Func. Count: 235, Neg. LLF: 130.10488308403217
Iteration: 16, Func. Count: 251, Neg. LLF: 129.96636625984917
Iteration: 17, Func. Count: 267, Neg. LLF: 129.73366558158605
Iteration: 18, Func. Count: 282, Neg. LLF: 129.73190094008402
Iteration: 19, Func. Count: 297, Neg. LLF: 129.73174476762745
Iteration: 20, Func. Count: 312, Neg. LLF: 129.73173498189223
Iteration: 21, Func. Count: 326, Neg. LLF: 129.7317349845576
Optimization terminated successfully (Exit mode 0)
Current function value: 129.73173498189223
Iterations: 21
Function evaluations: 326
Gradient evaluations: 21
Iteration: 1, Func. Count: 12, Neg. LLF: 137.17461245687173
Iteration: 2, Func. Count: 24, Neg. LLF: 169.76907667867007
Iteration: 3, Func. Count: 36, Neg. LLF: 131.35633448333274
Iteration: 4, Func. Count: 47, Neg. LLF: 132.7278663508376
Iteration: 5, Func. Count: 60, Neg. LLF: 149.25499231406914
Iteration: 6, Func. Count: 73, Neg. LLF: 135.24239046542922
Iteration: 7, Func. Count: 85, Neg. LLF: 131.41427687534872
Iteration: 8, Func. Count: 97, Neg. LLF: 130.69850869908743
Iteration: 9, Func. Count: 108, Neg. LLF: 140.8832997594376
Iteration: 10, Func. Count: 120, Neg. LLF: 130.5629901918213
Iteration: 11, Func. Count: 131, Neg. LLF: 130.51582064728993
Iteration: 12, Func. Count: 142, Neg. LLF: 130.49950843951984
Iteration: 13, Func. Count: 153, Neg. LLF: 130.48716813087808
Iteration: 14, Func. Count: 164, Neg. LLF: 130.48613128550735
Iteration: 15, Func. Count: 175, Neg. LLF: 130.48609359074607
Iteration: 16, Func. Count: 186, Neg. LLF: 130.48609220780406
Iteration: 17, Func. Count: 196, Neg. LLF: 130.48609259763134
Optimization terminated successfully (Exit mode 0)
Current function value: 130.48609220780406
Iterations: 17
Function evaluations: 196
Gradient evaluations: 17
Iteration: 1, Func. Count: 5, Neg. LLF: 143.5924698195163
Iteration: 2, Func. Count: 10, Neg. LLF: 144.99219055409117
Iteration: 3, Func. Count: 15, Neg. LLF: 137.43866816915573
Iteration: 4, Func. Count: 19, Neg. LLF: 137.2240293758112
Iteration: 5, Func. Count: 23, Neg. LLF: 137.08795511107067
Iteration: 6, Func. Count: 27, Neg. LLF: 136.27119218336352
Iteration: 7, Func. Count: 31, Neg. LLF: 136.25260592828383
Iteration: 8, Func. Count: 35, Neg. LLF: 136.25014566243473
Iteration: 9, Func. Count: 39, Neg. LLF: 136.24999423757725
Iteration: 10, Func. Count: 43, Neg. LLF: 136.2498441555346
Iteration: 11, Func. Count: 47, Neg. LLF: 136.24983996913738
Iteration: 12, Func. Count: 50, Neg. LLF: 136.2498400575367
Optimization terminated successfully (Exit mode 0)
Current function value: 136.24983996913738
Iterations: 12
Function evaluations: 50
Gradient evaluations: 12
Iteration: 1, Func. Count: 6, Neg. LLF: 190.7937920697203
Iteration: 2, Func. Count: 12, Neg. LLF: 134.88861556946605
Iteration: 3, Func. Count: 17, Neg. LLF: 136.78384890290525
Iteration: 4, Func. Count: 23, Neg. LLF: 135.1793999678386
Iteration: 5, Func. Count: 29, Neg. LLF: 147.42959300098454
Iteration: 6, Func. Count: 35, Neg. LLF: 134.5143181403441
Iteration: 7, Func. Count: 41, Neg. LLF: 134.45199410715728
Iteration: 8, Func. Count: 46, Neg. LLF: 134.45073466620636
Iteration: 9, Func. Count: 51, Neg. LLF: 134.4506718083152
Iteration: 10, Func. Count: 56, Neg. LLF: 134.45066083364242
Iteration: 11, Func. Count: 60, Neg. LLF: 134.45066083374724
Optimization terminated successfully (Exit mode 0)
Current function value: 134.45066083364242
Iterations: 11
Function evaluations: 60
Gradient evaluations: 11
Iteration: 1, Func. Count: 7, Neg. LLF: 194.6973489138892
Iteration: 2, Func. Count: 14, Neg. LLF: 134.5777335852151
Iteration: 3, Func. Count: 20, Neg. LLF: 134.4045793523859
Iteration: 4, Func. Count: 26, Neg. LLF: 134.38633156956982
Iteration: 5, Func. Count: 32, Neg. LLF: 134.3814652451814
Iteration: 6, Func. Count: 38, Neg. LLF: 134.38014264736535
Iteration: 7, Func. Count: 44, Neg. LLF: 134.38012332512946
Iteration: 8, Func. Count: 50, Neg. LLF: 134.3801212453783
Iteration: 9, Func. Count: 55, Neg. LLF: 134.38012124531022
Optimization terminated successfully (Exit mode 0)
Current function value: 134.3801212453783
Iterations: 9
Function evaluations: 55
Gradient evaluations: 9
Iteration: 1, Func. Count: 8, Neg. LLF: 194.1745621910868
Iteration: 2, Func. Count: 16, Neg. LLF: 134.63207955426844
Iteration: 3, Func. Count: 23, Neg. LLF: 134.38521547128263
Iteration: 4, Func. Count: 30, Neg. LLF: 134.38867848820124
Iteration: 5, Func. Count: 38, Neg. LLF: 134.38014557911256
Iteration: 6, Func. Count: 45, Neg. LLF: 134.3801220311357
Iteration: 7, Func. Count: 52, Neg. LLF: 134.3801212280596
Optimization terminated successfully (Exit mode 0)
Current function value: 134.3801212280596
Iterations: 7
Function evaluations: 52
Gradient evaluations: 7
Iteration: 1, Func. Count: 9, Neg. LLF: 193.0096628256108
Iteration: 2, Func. Count: 18, Neg. LLF: 134.60506542866108
Iteration: 3, Func. Count: 26, Neg. LLF: 134.3826857162447
Iteration: 4, Func. Count: 34, Neg. LLF: 134.3856581529879
Iteration: 5, Func. Count: 43, Neg. LLF: 134.38014794832205
Iteration: 6, Func. Count: 51, Neg. LLF: 134.3801212721963
Iteration: 7, Func. Count: 58, Neg. LLF: 134.38012128513444
Optimization terminated successfully (Exit mode 0)
Current function value: 134.3801212721963
Iterations: 7
Function evaluations: 58
Gradient evaluations: 7
Iteration: 1, Func. Count: 6, Neg. LLF: 140.62753822080697
Iteration: 2, Func. Count: 12, Neg. LLF: 149.2062973697775
Iteration: 3, Func. Count: 18, Neg. LLF: 136.51467330878506
Iteration: 4, Func. Count: 23, Neg. LLF: 136.32166111676668
Iteration: 5, Func. Count: 28, Neg. LLF: 136.2429046506077
Iteration: 6, Func. Count: 33, Neg. LLF: 136.19608966911167
Iteration: 7, Func. Count: 38, Neg. LLF: 136.291974720928
Iteration: 8, Func. Count: 44, Neg. LLF: 136.2895675535759
Iteration: 9, Func. Count: 50, Neg. LLF: 136.288105480021
Iteration: 10, Func. Count: 56, Neg. LLF: 136.28687839947423
Iteration: 11, Func. Count: 62, Neg. LLF: 136.26095658500688
Iteration: 12, Func. Count: 68, Neg. LLF: 136.25369329685518
Iteration: 13, Func. Count: 74, Neg. LLF: 136.17323014181696
Iteration: 14, Func. Count: 80, Neg. LLF: 136.15653095387265
Iteration: 15, Func. Count: 85, Neg. LLF: 136.15629987294537
Iteration: 16, Func. Count: 90, Neg. LLF: 136.15629571690945
Iteration: 17, Func. Count: 95, Neg. LLF: 136.15629370922144
Iteration: 18, Func. Count: 100, Neg. LLF: 136.15629352014943
Optimization terminated successfully (Exit mode 0)
Current function value: 136.15629352014943
Iterations: 18
Function evaluations: 100
Gradient evaluations: 18
Iteration: 1, Func. Count: 7, Neg. LLF: 190.84768749603558
Iteration: 2, Func. Count: 14, Neg. LLF: 134.87378813785583
Iteration: 3, Func. Count: 20, Neg. LLF: 137.8366086253134
Iteration: 4, Func. Count: 27, Neg. LLF: 135.33039063363026
Iteration: 5, Func. Count: 34, Neg. LLF: 143.36504790387275
Iteration: 6, Func. Count: 41, Neg. LLF: 134.59055473502664
Iteration: 7, Func. Count: 48, Neg. LLF: 134.45194595657674
Iteration: 8, Func. Count: 54, Neg. LLF: 134.45072937851415
Iteration: 9, Func. Count: 60, Neg. LLF: 134.45070690877958
Iteration: 10, Func. Count: 67, Neg. LLF: 134.4506608139951
Iteration: 11, Func. Count: 72, Neg. LLF: 134.45066081403732
Optimization terminated successfully (Exit mode 0)
Current function value: 134.4506608139951
Iterations: 11
Function evaluations: 72
Gradient evaluations: 11
Iteration: 1, Func. Count: 8, Neg. LLF: 194.78875870446913
Iteration: 2, Func. Count: 16, Neg. LLF: 134.5488028092627
Iteration: 3, Func. Count: 23, Neg. LLF: 134.40456696337714
Iteration: 4, Func. Count: 30, Neg. LLF: 134.3872480161815
Iteration: 5, Func. Count: 37, Neg. LLF: 134.38136220151867
Iteration: 6, Func. Count: 44, Neg. LLF: 134.3801452351587
Iteration: 7, Func. Count: 51, Neg. LLF: 134.3801236430001
Iteration: 8, Func. Count: 58, Neg. LLF: 134.3801212577443
Iteration: 9, Func. Count: 64, Neg. LLF: 134.38012125766988
Optimization terminated successfully (Exit mode 0)
Current function value: 134.3801212577443
Iterations: 9
Function evaluations: 64
Gradient evaluations: 9
Iteration: 1, Func. Count: 9, Neg. LLF: 194.3635914468497
Iteration: 2, Func. Count: 18, Neg. LLF: 134.62520739304378
Iteration: 3, Func. Count: 26, Neg. LLF: 134.3842889394618
Iteration: 4, Func. Count: 34, Neg. LLF: 134.39041153372122
Iteration: 5, Func. Count: 43, Neg. LLF: 134.3801247719387
Iteration: 6, Func. Count: 51, Neg. LLF: 134.3801214482099
Iteration: 7, Func. Count: 58, Neg. LLF: 134.38012145275474
Optimization terminated successfully (Exit mode 0)
Current function value: 134.3801214482099
Iterations: 7
Function evaluations: 58
Gradient evaluations: 7
Iteration: 1, Func. Count: 10, Neg. LLF: 193.2042886825403
Iteration: 2, Func. Count: 20, Neg. LLF: 134.59521873912988
Iteration: 3, Func. Count: 29, Neg. LLF: 134.38340492747528
Iteration: 4, Func. Count: 38, Neg. LLF: 134.38910738421123
Iteration: 5, Func. Count: 48, Neg. LLF: 134.38014852267221
Iteration: 6, Func. Count: 57, Neg. LLF: 134.38012212959933
Iteration: 7, Func. Count: 66, Neg. LLF: 134.38012119621803
Optimization terminated successfully (Exit mode 0)
Current function value: 134.38012119621803
Iterations: 7
Function evaluations: 66
Gradient evaluations: 7
Iteration: 1, Func. Count: 7, Neg. LLF: 136.28335119032428
Iteration: 2, Func. Count: 13, Neg. LLF: 143.4584179643623
Iteration: 3, Func. Count: 20, Neg. LLF: 134.79870415284145
Iteration: 4, Func. Count: 26, Neg. LLF: 2576572.6465707617
Iteration: 5, Func. Count: 33, Neg. LLF: 134.46388108568945
Iteration: 6, Func. Count: 39, Neg. LLF: 184.41077761877236
Iteration: 7, Func. Count: 48, Neg. LLF: 134.4544132543611
Iteration: 8, Func. Count: 54, Neg. LLF: 134.45168519849796
Iteration: 9, Func. Count: 60, Neg. LLF: 134.45094756938985
Iteration: 10, Func. Count: 66, Neg. LLF: 134.45070742385943
Iteration: 11, Func. Count: 72, Neg. LLF: 134.45068980969955
Iteration: 12, Func. Count: 77, Neg. LLF: 134.4506898096919
Optimization terminated successfully (Exit mode 0)
Current function value: 134.45068980969955
Iterations: 12
Function evaluations: 77
Gradient evaluations: 12
Iteration: 1, Func. Count: 8, Neg. LLF: 190.54349080762842
Iteration: 2, Func. Count: 16, Neg. LLF: 134.86288819678995
Iteration: 3, Func. Count: 23, Neg. LLF: 138.53579678323496
Iteration: 4, Func. Count: 31, Neg. LLF: 135.320787876638
Iteration: 5, Func. Count: 39, Neg. LLF: 141.44789489149372
Iteration: 6, Func. Count: 47, Neg. LLF: 134.64339171009266
Iteration: 7, Func. Count: 55, Neg. LLF: 134.45227627826674
Iteration: 8, Func. Count: 62, Neg. LLF: 134.4507102418081
Iteration: 9, Func. Count: 69, Neg. LLF: 134.45069969436182
Iteration: 10, Func. Count: 77, Neg. LLF: 134.45066090044958
Iteration: 11, Func. Count: 83, Neg. LLF: 134.45066090061545
Optimization terminated successfully (Exit mode 0)
Current function value: 134.45066090044958
Iterations: 11
Function evaluations: 83
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 194.66486507088743
Iteration: 2, Func. Count: 18, Neg. LLF: 134.52583638792157
Iteration: 3, Func. Count: 26, Neg. LLF: 134.41385760072492
Iteration: 4, Func. Count: 34, Neg. LLF: 134.38850328901964
Iteration: 5, Func. Count: 42, Neg. LLF: 134.38209056776165
Iteration: 6, Func. Count: 50, Neg. LLF: 134.38016140736514
Iteration: 7, Func. Count: 58, Neg. LLF: 134.38012568227052
Iteration: 8, Func. Count: 66, Neg. LLF: 134.38012125806335
Iteration: 9, Func. Count: 73, Neg. LLF: 134.38012125798303
Optimization terminated successfully (Exit mode 0)
Current function value: 134.38012125806335
Iterations: 9
Function evaluations: 73
Gradient evaluations: 9
Iteration: 1, Func. Count: 10, Neg. LLF: 194.33329458796385
Iteration: 2, Func. Count: 20, Neg. LLF: 134.6026982109929
Iteration: 3, Func. Count: 29, Neg. LLF: 134.38659355450451
Iteration: 4, Func. Count: 38, Neg. LLF: 134.3948374001457
Iteration: 5, Func. Count: 48, Neg. LLF: 134.3801294062522
Iteration: 6, Func. Count: 57, Neg. LLF: 134.38012149234015
Iteration: 7, Func. Count: 65, Neg. LLF: 134.38012149689138
Optimization terminated successfully (Exit mode 0)
Current function value: 134.38012149234015
Iterations: 7
Function evaluations: 65
Gradient evaluations: 7
Iteration: 1, Func. Count: 11, Neg. LLF: 193.23793209852732
Iteration: 2, Func. Count: 22, Neg. LLF: 134.56937504880634
Iteration: 3, Func. Count: 32, Neg. LLF: 134.3845272232176
Iteration: 4, Func. Count: 42, Neg. LLF: 134.3987465268501
Iteration: 5, Func. Count: 53, Neg. LLF: 134.3801501461757
Iteration: 6, Func. Count: 63, Neg. LLF: 134.3801217269259
Iteration: 7, Func. Count: 72, Neg. LLF: 134.38012173985524
Optimization terminated successfully (Exit mode 0)
Current function value: 134.3801217269259
Iterations: 7
Function evaluations: 72
Gradient evaluations: 7
Iteration: 1, Func. Count: 8, Neg. LLF: 135.11206910563268
Iteration: 2, Func. Count: 15, Neg. LLF: 137.59427527478667
Iteration: 3, Func. Count: 25, Neg. LLF: 140.61982473297329
Iteration: 4, Func. Count: 33, Neg. LLF: 134.6366480852814
Iteration: 5, Func. Count: 40, Neg. LLF: 106656.98818999938
Iteration: 6, Func. Count: 49, Neg. LLF: 135.2944528351303
Iteration: 7, Func. Count: 57, Neg. LLF: 134.4594211954825
Iteration: 8, Func. Count: 64, Neg. LLF: 134.45312210314222
Iteration: 9, Func. Count: 71, Neg. LLF: 134.45113754130145
Iteration: 10, Func. Count: 78, Neg. LLF: 134.45082577357502
Iteration: 11, Func. Count: 85, Neg. LLF: 134.45074036929933
Iteration: 12, Func. Count: 92, Neg. LLF: 134.45068937976797
Iteration: 13, Func. Count: 98, Neg. LLF: 134.45068959751808
Optimization terminated successfully (Exit mode 0)
Current function value: 134.45068937976797
Iterations: 13
Function evaluations: 98
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 190.13809380268773
Iteration: 2, Func. Count: 18, Neg. LLF: 134.85984942386574
Iteration: 3, Func. Count: 26, Neg. LLF: 138.09908589512634
Iteration: 4, Func. Count: 35, Neg. LLF: 135.18990803805661
Iteration: 5, Func. Count: 44, Neg. LLF: 141.61317029612746
Iteration: 6, Func. Count: 53, Neg. LLF: 134.62499527819446
Iteration: 7, Func. Count: 62, Neg. LLF: 134.45204246759766
Iteration: 8, Func. Count: 70, Neg. LLF: 134.4507323936038
Iteration: 9, Func. Count: 78, Neg. LLF: 134.4506988734596
Iteration: 10, Func. Count: 86, Neg. LLF: 134.45066086106738
Iteration: 11, Func. Count: 93, Neg. LLF: 134.45066086118962
Optimization terminated successfully (Exit mode 0)
Current function value: 134.45066086106738
Iterations: 11
Function evaluations: 93
Gradient evaluations: 11
Iteration: 1, Func. Count: 10, Neg. LLF: 194.32779508122624
Iteration: 2, Func. Count: 20, Neg. LLF: 134.508565004157
Iteration: 3, Func. Count: 29, Neg. LLF: 134.41858846962975
Iteration: 4, Func. Count: 38, Neg. LLF: 134.38780044931974
Iteration: 5, Func. Count: 47, Neg. LLF: 134.38266907251813
Iteration: 6, Func. Count: 56, Neg. LLF: 134.38016759137986
Iteration: 7, Func. Count: 65, Neg. LLF: 134.3801267905554
Iteration: 8, Func. Count: 74, Neg. LLF: 134.38012125705941
Iteration: 9, Func. Count: 82, Neg. LLF: 134.38012125697787
Optimization terminated successfully (Exit mode 0)
Current function value: 134.38012125705941
Iterations: 9
Function evaluations: 82
Gradient evaluations: 9
Iteration: 1, Func. Count: 11, Neg. LLF: 194.05928904794493
Iteration: 2, Func. Count: 22, Neg. LLF: 134.58213070533859
Iteration: 3, Func. Count: 32, Neg. LLF: 134.38810141378744
Iteration: 4, Func. Count: 42, Neg. LLF: 134.3966203223398
Iteration: 5, Func. Count: 53, Neg. LLF: 134.3801392352963
Iteration: 6, Func. Count: 63, Neg. LLF: 134.38012125114494
Iteration: 7, Func. Count: 72, Neg. LLF: 134.38012125575708
Optimization terminated successfully (Exit mode 0)
Current function value: 134.38012125114494
Iterations: 7
Function evaluations: 72
Gradient evaluations: 7
Iteration: 1, Func. Count: 12, Neg. LLF: 193.00681038279563
Iteration: 2, Func. Count: 24, Neg. LLF: 134.55369552869
Iteration: 3, Func. Count: 35, Neg. LLF: 134.3851624539335
Iteration: 4, Func. Count: 46, Neg. LLF: 134.40419109550186
Iteration: 5, Func. Count: 58, Neg. LLF: 134.38013159616472
Iteration: 6, Func. Count: 69, Neg. LLF: 134.38012157545452
Iteration: 7, Func. Count: 79, Neg. LLF: 134.38012158833263
Optimization terminated successfully (Exit mode 0)
Current function value: 134.38012157545452
Iterations: 7
Function evaluations: 79
Gradient evaluations: 7
Iteration: 1, Func. Count: 5, Neg. LLF: 146.2202600713192
Iteration: 2, Func. Count: 10, Neg. LLF: 142.32085867735034
Iteration: 3, Func. Count: 15, Neg. LLF: 137.80049771843554
Iteration: 4, Func. Count: 19, Neg. LLF: 136.62903738601221
Iteration: 5, Func. Count: 23, Neg. LLF: 136.4477253209052
Iteration: 6, Func. Count: 27, Neg. LLF: 136.2626280311956
Iteration: 7, Func. Count: 31, Neg. LLF: 136.25050988397174
Iteration: 8, Func. Count: 35, Neg. LLF: 136.2498829421171
Iteration: 9, Func. Count: 39, Neg. LLF: 136.2498536945373
Iteration: 10, Func. Count: 43, Neg. LLF: 136.24984055265946
Iteration: 11, Func. Count: 47, Neg. LLF: 136.2498398452664
Optimization terminated successfully (Exit mode 0)
Current function value: 136.2498398452664
Iterations: 11
Function evaluations: 47
Gradient evaluations: 11
Iteration: 1, Func. Count: 6, Neg. LLF: 189.65424131896344
Iteration: 2, Func. Count: 12, Neg. LLF: 134.94403503890982
Iteration: 3, Func. Count: 17, Neg. LLF: 135.59534752765722
Iteration: 4, Func. Count: 23, Neg. LLF: 134.64417079979907
Iteration: 5, Func. Count: 28, Neg. LLF: 134.587304767952
Iteration: 6, Func. Count: 34, Neg. LLF: 134.4539235561583
Iteration: 7, Func. Count: 39, Neg. LLF: 134.4509930309138
Iteration: 8, Func. Count: 44, Neg. LLF: 134.4507932310829
Iteration: 9, Func. Count: 49, Neg. LLF: 134.45066352621916
Iteration: 10, Func. Count: 54, Neg. LLF: 134.4506608835287
Iteration: 11, Func. Count: 58, Neg. LLF: 134.45066088351652
Optimization terminated successfully (Exit mode 0)
Current function value: 134.4506608835287
Iterations: 11
Function evaluations: 58
Gradient evaluations: 11
Iteration: 1, Func. Count: 7, Neg. LLF: 193.4345294915136
Iteration: 2, Func. Count: 14, Neg. LLF: 134.7114722398622
Iteration: 3, Func. Count: 20, Neg. LLF: 134.39089650292087
Iteration: 4, Func. Count: 26, Neg. LLF: 134.38127031258531
Iteration: 5, Func. Count: 32, Neg. LLF: 134.38087508252107
Iteration: 6, Func. Count: 39, Neg. LLF: 134.38012153059807
Iteration: 7, Func. Count: 44, Neg. LLF: 134.38012153052455
Optimization terminated successfully (Exit mode 0)
Current function value: 134.38012153059807
Iterations: 7
Function evaluations: 44
Gradient evaluations: 7
Iteration: 1, Func. Count: 8, Neg. LLF: 193.24141446228222
Iteration: 2, Func. Count: 16, Neg. LLF: 134.82809024850758
Iteration: 3, Func. Count: 24, Neg. LLF: 134.40950585721998
Iteration: 4, Func. Count: 31, Neg. LLF: 134.40755695182736
Iteration: 5, Func. Count: 39, Neg. LLF: 134.3802786827277
Iteration: 6, Func. Count: 46, Neg. LLF: 134.38012515863258
Iteration: 7, Func. Count: 53, Neg. LLF: 134.38012137339157
Iteration: 8, Func. Count: 59, Neg. LLF: 134.38012137798978
Optimization terminated successfully (Exit mode 0)
Current function value: 134.38012137339157
Iterations: 8
Function evaluations: 59
Gradient evaluations: 8
Iteration: 1, Func. Count: 9, Neg. LLF: 191.99296197662986
Iteration: 2, Func. Count: 18, Neg. LLF: 134.78255278024386
Iteration: 3, Func. Count: 26, Neg. LLF: 134.40645340808874
Iteration: 4, Func. Count: 34, Neg. LLF: 134.3819696713467
Iteration: 5, Func. Count: 42, Neg. LLF: 134.38045000817922
Iteration: 6, Func. Count: 50, Neg. LLF: 134.38012630799506
Iteration: 7, Func. Count: 58, Neg. LLF: 134.3801213083536
Iteration: 8, Func. Count: 65, Neg. LLF: 134.38012132121673
Optimization terminated successfully (Exit mode 0)
Current function value: 134.3801213083536
Iterations: 8
Function evaluations: 65
Gradient evaluations: 8
Iteration: 1, Func. Count: 6, Neg. LLF: 155.30754268958339
Iteration: 2, Func. Count: 12, Neg. LLF: 138.9064895263532
Iteration: 3, Func. Count: 18, Neg. LLF: 137.57773177436766
Iteration: 4, Func. Count: 23, Neg. LLF: 137.29375904725035
Iteration: 5, Func. Count: 28, Neg. LLF: 137.2135860527761
Iteration: 6, Func. Count: 33, Neg. LLF: 136.3068998243239
Iteration: 7, Func. Count: 38, Neg. LLF: 136.25900469783974
Iteration: 8, Func. Count: 43, Neg. LLF: 136.24998596782208
Iteration: 9, Func. Count: 48, Neg. LLF: 136.24987420625254
Iteration: 10, Func. Count: 53, Neg. LLF: 136.24984924188976
Iteration: 11, Func. Count: 58, Neg. LLF: 136.24984021500717
Iteration: 12, Func. Count: 62, Neg. LLF: 136.24984012659888
Optimization terminated successfully (Exit mode 0)
Current function value: 136.24984021500717
Iterations: 12
Function evaluations: 62
Gradient evaluations: 12
Iteration: 1, Func. Count: 7, Neg. LLF: 187.56865309415778
Iteration: 2, Func. Count: 14, Neg. LLF: 134.92083453443698
Iteration: 3, Func. Count: 20, Neg. LLF: 136.69110643259327
Iteration: 4, Func. Count: 27, Neg. LLF: 135.4318458797591
Iteration: 5, Func. Count: 34, Neg. LLF: 134.19377355499233
Iteration: 6, Func. Count: 40, Neg. LLF: 357.295126702918
Iteration: 7, Func. Count: 47, Neg. LLF: 136.95562604514686
Iteration: 8, Func. Count: 54, Neg. LLF: 133.46395393430961
Iteration: 9, Func. Count: 60, Neg. LLF: 133.14595016073852
Iteration: 10, Func. Count: 66, Neg. LLF: 133.10085061971293
Iteration: 11, Func. Count: 72, Neg. LLF: 133.08168291405602
Iteration: 12, Func. Count: 78, Neg. LLF: 133.07918302508688
Iteration: 13, Func. Count: 84, Neg. LLF: 133.07905955416993
Iteration: 14, Func. Count: 90, Neg. LLF: 133.07905824146218
Iteration: 15, Func. Count: 95, Neg. LLF: 133.07905816049055
Optimization terminated successfully (Exit mode 0)
Current function value: 133.07905824146218
Iterations: 15
Function evaluations: 95
Gradient evaluations: 15
Iteration: 1, Func. Count: 8, Neg. LLF: 191.1485980989173
Iteration: 2, Func. Count: 16, Neg. LLF: 134.56454173693817
Iteration: 3, Func. Count: 23, Neg. LLF: 134.38667822543692
Iteration: 4, Func. Count: 30, Neg. LLF: 134.38023760948914
Iteration: 5, Func. Count: 37, Neg. LLF: 134.38015338545304
Iteration: 6, Func. Count: 44, Neg. LLF: 134.3801255108184
Iteration: 7, Func. Count: 51, Neg. LLF: 134.3801212036981
Iteration: 8, Func. Count: 57, Neg. LLF: 134.38012120369774
Optimization terminated successfully (Exit mode 0)
Current function value: 134.3801212036981
Iterations: 8
Function evaluations: 57
Gradient evaluations: 8
Iteration: 1, Func. Count: 9, Neg. LLF: 190.99578646028988
Iteration: 2, Func. Count: 18, Neg. LLF: 134.76441872006532
Iteration: 3, Func. Count: 26, Neg. LLF: 134.50619472691363
Iteration: 4, Func. Count: 34, Neg. LLF: 134.4878684324414
Iteration: 5, Func. Count: 42, Neg. LLF: 134.40460708683088
Iteration: 6, Func. Count: 50, Neg. LLF: 134.39203608562048
Iteration: 7, Func. Count: 58, Neg. LLF: 134.38089222361552
Iteration: 8, Func. Count: 66, Neg. LLF: 134.380152584698
Iteration: 9, Func. Count: 74, Neg. LLF: 134.38012183547133
Iteration: 10, Func. Count: 82, Neg. LLF: 134.38012120086324
Optimization terminated successfully (Exit mode 0)
Current function value: 134.38012120086324
Iterations: 10
Function evaluations: 82
Gradient evaluations: 10
Iteration: 1, Func. Count: 10, Neg. LLF: 189.9141721207783
Iteration: 2, Func. Count: 20, Neg. LLF: 134.6202305637824
Iteration: 3, Func. Count: 29, Neg. LLF: 134.3892288365191
Iteration: 4, Func. Count: 38, Neg. LLF: 134.3813514907796
Iteration: 5, Func. Count: 47, Neg. LLF: 134.382949003155
Iteration: 6, Func. Count: 57, Neg. LLF: 134.38012179558524
Iteration: 7, Func. Count: 65, Neg. LLF: 134.38012180838615
Optimization terminated successfully (Exit mode 0)
Current function value: 134.38012179558524
Iterations: 7
Function evaluations: 65
Gradient evaluations: 7
Iteration: 1, Func. Count: 7, Neg. LLF: 152.32193544801024
Iteration: 2, Func. Count: 14, Neg. LLF: 140.72795953829038
Iteration: 3, Func. Count: 21, Neg. LLF: 136.6679239023134
Iteration: 4, Func. Count: 27, Neg. LLF: 136.39646573385332
Iteration: 5, Func. Count: 33, Neg. LLF: 136.24391005063228
Iteration: 6, Func. Count: 39, Neg. LLF: 136.21170404898552
Iteration: 7, Func. Count: 45, Neg. LLF: 136.1745457775176
Iteration: 8, Func. Count: 51, Neg. LLF: 136.23898809042663
Iteration: 9, Func. Count: 58, Neg. LLF: 136.16580796091293
Iteration: 10, Func. Count: 64, Neg. LLF: 136.15802314289718
Iteration: 11, Func. Count: 70, Neg. LLF: 136.15670488731837
Iteration: 12, Func. Count: 76, Neg. LLF: 136.15632127740167
Iteration: 13, Func. Count: 82, Neg. LLF: 136.15629445418287
Iteration: 14, Func. Count: 88, Neg. LLF: 136.15629337814394
Iteration: 15, Func. Count: 93, Neg. LLF: 136.1562933781429
Optimization terminated successfully (Exit mode 0)
Current function value: 136.15629337814394
Iterations: 15
Function evaluations: 93
Gradient evaluations: 15
Iteration: 1, Func. Count: 8, Neg. LLF: 187.61055425406636
Iteration: 2, Func. Count: 16, Neg. LLF: 134.9070086590516
Iteration: 3, Func. Count: 23, Neg. LLF: 137.01491492674648
Iteration: 4, Func. Count: 31, Neg. LLF: 135.664401999369
Iteration: 5, Func. Count: 39, Neg. LLF: 134.3993841624626
Iteration: 6, Func. Count: 46, Neg. LLF: 204.99682629327236
Iteration: 7, Func. Count: 54, Neg. LLF: 136.2703841312425
Iteration: 8, Func. Count: 62, Neg. LLF: 133.47863219908686
Iteration: 9, Func. Count: 69, Neg. LLF: 133.2140997157818
Iteration: 10, Func. Count: 76, Neg. LLF: 133.16454594053428
Iteration: 11, Func. Count: 84, Neg. LLF: 133.08061060510514
Iteration: 12, Func. Count: 91, Neg. LLF: 133.07908488454513
Iteration: 13, Func. Count: 98, Neg. LLF: 133.0790586296607
Iteration: 14, Func. Count: 104, Neg. LLF: 133.07905854867258
Optimization terminated successfully (Exit mode 0)
Current function value: 133.0790586296607
Iterations: 14
Function evaluations: 104
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 191.23337360253154
Iteration: 2, Func. Count: 18, Neg. LLF: 134.54079520546452
Iteration: 3, Func. Count: 26, Neg. LLF: 134.38617492676647
Iteration: 4, Func. Count: 34, Neg. LLF: 134.3803088666308
Iteration: 5, Func. Count: 42, Neg. LLF: 134.3802639658306
Iteration: 6, Func. Count: 51, Neg. LLF: 134.38012445428674
Iteration: 7, Func. Count: 59, Neg. LLF: 134.38012119594703
Iteration: 8, Func. Count: 66, Neg. LLF: 134.38012119594907
Optimization terminated successfully (Exit mode 0)
Current function value: 134.38012119594703
Iterations: 8
Function evaluations: 66
Gradient evaluations: 8
Iteration: 1, Func. Count: 10, Neg. LLF: 191.17689337114686
Iteration: 2, Func. Count: 20, Neg. LLF: 134.75482559175884
Iteration: 3, Func. Count: 29, Neg. LLF: 134.53704335731632
Iteration: 4, Func. Count: 38, Neg. LLF: 136.28546665386423
Iteration: 5, Func. Count: 48, Neg. LLF: 134.1168215806926
Iteration: 6, Func. Count: 57, Neg. LLF: 132.93843985405704
Iteration: 7, Func. Count: 66, Neg. LLF: 133.8715685055665
Iteration: 8, Func. Count: 76, Neg. LLF: 134.25342514209404
Iteration: 9, Func. Count: 86, Neg. LLF: 132.48089831700307
Iteration: 10, Func. Count: 95, Neg. LLF: 132.37500502543264
Iteration: 11, Func. Count: 104, Neg. LLF: 132.5700425281185
Iteration: 12, Func. Count: 114, Neg. LLF: 132.34813764874707
Iteration: 13, Func. Count: 123, Neg. LLF: 132.34749537068103
Iteration: 14, Func. Count: 132, Neg. LLF: 132.3460289217564
Iteration: 15, Func. Count: 141, Neg. LLF: 132.34601364411705
Iteration: 16, Func. Count: 150, Neg. LLF: 132.3460128599279
Optimization terminated successfully (Exit mode 0)
Current function value: 132.3460128599279
Iterations: 16
Function evaluations: 150
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 190.10410496676195
Iteration: 2, Func. Count: 22, Neg. LLF: 134.61493147375174
Iteration: 3, Func. Count: 32, Neg. LLF: 134.39942073814805
Iteration: 4, Func. Count: 42, Neg. LLF: 134.38042572810684
Iteration: 5, Func. Count: 52, Neg. LLF: 134.3812560694477
Iteration: 6, Func. Count: 63, Neg. LLF: 134.38012139049172
Iteration: 7, Func. Count: 72, Neg. LLF: 134.38012140337213
Optimization terminated successfully (Exit mode 0)
Current function value: 134.38012139049172
Iterations: 7
Function evaluations: 72
Gradient evaluations: 7
Iteration: 1, Func. Count: 8, Neg. LLF: 144.55122562578745
Iteration: 2, Func. Count: 16, Neg. LLF: 143.51236838635702
Iteration: 3, Func. Count: 24, Neg. LLF: 134.79380577483823
Iteration: 4, Func. Count: 31, Neg. LLF: 134.6531944572273
Iteration: 5, Func. Count: 38, Neg. LLF: 135.0148386128495
Iteration: 6, Func. Count: 47, Neg. LLF: 134.53801930843386
Iteration: 7, Func. Count: 55, Neg. LLF: 134.48129029889702
Iteration: 8, Func. Count: 63, Neg. LLF: 134.45735763775954
Iteration: 9, Func. Count: 70, Neg. LLF: 134.45173274154118
Iteration: 10, Func. Count: 77, Neg. LLF: 134.45071042362397
Iteration: 11, Func. Count: 84, Neg. LLF: 134.4506903752887
Iteration: 12, Func. Count: 91, Neg. LLF: 134.45068953501206
Optimization terminated successfully (Exit mode 0)
Current function value: 134.45068953501206
Iterations: 12
Function evaluations: 91
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 187.38394436046414
Iteration: 2, Func. Count: 18, Neg. LLF: 134.89627470928053
Iteration: 3, Func. Count: 26, Neg. LLF: 137.3121344788326
Iteration: 4, Func. Count: 35, Neg. LLF: 135.91998630460435
Iteration: 5, Func. Count: 44, Neg. LLF: 134.5546199767054
Iteration: 6, Func. Count: 53, Neg. LLF: 170.70625349323805
Iteration: 7, Func. Count: 62, Neg. LLF: 133.5826317713182
Iteration: 8, Func. Count: 70, Neg. LLF: 133.16290687563952
Iteration: 9, Func. Count: 78, Neg. LLF: 133.08403984247263
Iteration: 10, Func. Count: 86, Neg. LLF: 133.082300145688
Iteration: 11, Func. Count: 94, Neg. LLF: 133.07980188869377
Iteration: 12, Func. Count: 102, Neg. LLF: 133.0790928199603
Iteration: 13, Func. Count: 110, Neg. LLF: 133.07905869346325
Iteration: 14, Func. Count: 118, Neg. LLF: 133.07905823368512
Optimization terminated successfully (Exit mode 0)
Current function value: 133.07905823368512
Iterations: 14
Function evaluations: 118
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 191.1389685403698
Iteration: 2, Func. Count: 20, Neg. LLF: 134.52206705372095
Iteration: 3, Func. Count: 29, Neg. LLF: 134.39058418106438
Iteration: 4, Func. Count: 38, Neg. LLF: 134.38057659562304
Iteration: 5, Func. Count: 47, Neg. LLF: 134.38052813556436
Iteration: 6, Func. Count: 57, Neg. LLF: 134.38012978710768
Iteration: 7, Func. Count: 66, Neg. LLF: 134.38012119653942
Iteration: 8, Func. Count: 74, Neg. LLF: 134.3801211965473
Optimization terminated successfully (Exit mode 0)
Current function value: 134.38012119653942
Iterations: 8
Function evaluations: 74
Gradient evaluations: 8
Iteration: 1, Func. Count: 11, Neg. LLF: 191.1605423483348
Iteration: 2, Func. Count: 22, Neg. LLF: 134.713058040872
Iteration: 3, Func. Count: 32, Neg. LLF: 134.5312984089468
Iteration: 4, Func. Count: 42, Neg. LLF: 135.5900339534572
Iteration: 5, Func. Count: 53, Neg. LLF: 134.4926480930688
Iteration: 6, Func. Count: 63, Neg. LLF: 133.76862364976486
Iteration: 7, Func. Count: 73, Neg. LLF: 139.40883004850082
Iteration: 8, Func. Count: 84, Neg. LLF: 137.92010280791544
Iteration: 9, Func. Count: 95, Neg. LLF: 132.86036015115278
Iteration: 10, Func. Count: 105, Neg. LLF: 132.8892619400531
Iteration: 11, Func. Count: 116, Neg. LLF: 132.4176252532211
Iteration: 12, Func. Count: 126, Neg. LLF: 132.36951175486394
Iteration: 13, Func. Count: 136, Neg. LLF: 132.3498380926356
Iteration: 14, Func. Count: 146, Neg. LLF: 132.35352284178398
Iteration: 15, Func. Count: 157, Neg. LLF: 132.3467167383121
Iteration: 16, Func. Count: 167, Neg. LLF: 132.3460165549562
Iteration: 17, Func. Count: 177, Neg. LLF: 132.34601304151312
Iteration: 18, Func. Count: 186, Neg. LLF: 132.34601302216842
Optimization terminated successfully (Exit mode 0)
Current function value: 132.34601304151312
Iterations: 18
Function evaluations: 186
Gradient evaluations: 18
Iteration: 1, Func. Count: 12, Neg. LLF: 190.14213341986786
Iteration: 2, Func. Count: 24, Neg. LLF: 134.5928889343671
Iteration: 3, Func. Count: 35, Neg. LLF: 134.4018243105357
Iteration: 4, Func. Count: 46, Neg. LLF: 134.38121984225643
Iteration: 5, Func. Count: 57, Neg. LLF: 134.38311233440993
Iteration: 6, Func. Count: 69, Neg. LLF: 134.38012124176967
Iteration: 7, Func. Count: 79, Neg. LLF: 134.38012125460878
Optimization terminated successfully (Exit mode 0)
Current function value: 134.38012124176967
Iterations: 7
Function evaluations: 79
Gradient evaluations: 7
Iteration: 1, Func. Count: 9, Neg. LLF: 140.8171714126937
Iteration: 2, Func. Count: 18, Neg. LLF: 143.639048152939
Iteration: 3, Func. Count: 27, Neg. LLF: 134.63323838964786
Iteration: 4, Func. Count: 35, Neg. LLF: 134.79244969615408
Iteration: 5, Func. Count: 44, Neg. LLF: 135.4524299051843
Iteration: 6, Func. Count: 55, Neg. LLF: 134.64858145203095
Iteration: 7, Func. Count: 64, Neg. LLF: 134.46594676816227
Iteration: 8, Func. Count: 72, Neg. LLF: 134.45414338410217
Iteration: 9, Func. Count: 80, Neg. LLF: 134.4517875695393
Iteration: 10, Func. Count: 88, Neg. LLF: 134.45090171876433
Iteration: 11, Func. Count: 96, Neg. LLF: 134.45070642507767
Iteration: 12, Func. Count: 104, Neg. LLF: 134.4506898249094
Iteration: 13, Func. Count: 111, Neg. LLF: 134.45069004262348
Optimization terminated successfully (Exit mode 0)
Current function value: 134.4506898249094
Iterations: 13
Function evaluations: 111
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 187.05291293726907
Iteration: 2, Func. Count: 20, Neg. LLF: 134.89210565048563
Iteration: 3, Func. Count: 29, Neg. LLF: 137.43274465950188
Iteration: 4, Func. Count: 39, Neg. LLF: 136.06409547750928
Iteration: 5, Func. Count: 49, Neg. LLF: 134.60555537809063
Iteration: 6, Func. Count: 59, Neg. LLF: 161.71834180830078
Iteration: 7, Func. Count: 69, Neg. LLF: 133.59440907987332
Iteration: 8, Func. Count: 78, Neg. LLF: 133.28186460334632
Iteration: 9, Func. Count: 87, Neg. LLF: 133.73241342030954
Iteration: 10, Func. Count: 97, Neg. LLF: 133.0835809437267
Iteration: 11, Func. Count: 106, Neg. LLF: 133.07909433890515
Iteration: 12, Func. Count: 115, Neg. LLF: 133.07905852909425
Iteration: 13, Func. Count: 123, Neg. LLF: 133.07905844805046
Optimization terminated successfully (Exit mode 0)
Current function value: 133.07905852909425
Iterations: 13
Function evaluations: 123
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 190.85427685566216
Iteration: 2, Func. Count: 22, Neg. LLF: 134.5067685837349
Iteration: 3, Func. Count: 32, Neg. LLF: 134.3930052194491
Iteration: 4, Func. Count: 42, Neg. LLF: 134.3805255456651
Iteration: 5, Func. Count: 52, Neg. LLF: 134.38044697338051
Iteration: 6, Func. Count: 63, Neg. LLF: 134.38012996051455
Iteration: 7, Func. Count: 73, Neg. LLF: 134.380121199881
Iteration: 8, Func. Count: 82, Neg. LLF: 134.3801211998885
Optimization terminated successfully (Exit mode 0)
Current function value: 134.380121199881
Iterations: 8
Function evaluations: 82
Gradient evaluations: 8
Iteration: 1, Func. Count: 12, Neg. LLF: 190.92396004605715
Iteration: 2, Func. Count: 24, Neg. LLF: 134.6833342405064
Iteration: 3, Func. Count: 35, Neg. LLF: 134.5363097476157
Iteration: 4, Func. Count: 46, Neg. LLF: 135.81383428710166
Iteration: 5, Func. Count: 58, Neg. LLF: 134.30120462616824
Iteration: 6, Func. Count: 69, Neg. LLF: 133.02002874334997
Iteration: 7, Func. Count: 80, Neg. LLF: 132.8980538523529
Iteration: 8, Func. Count: 91, Neg. LLF: 147.7351251728872
Iteration: 9, Func. Count: 104, Neg. LLF: 135.8013818834602
Iteration: 10, Func. Count: 116, Neg. LLF: 132.3745807719455
Iteration: 11, Func. Count: 127, Neg. LLF: 132.4366222850317
Iteration: 12, Func. Count: 139, Neg. LLF: 132.35384751418653
Iteration: 13, Func. Count: 150, Neg. LLF: 132.346880315285
Iteration: 14, Func. Count: 161, Neg. LLF: 132.34631361601788
Iteration: 15, Func. Count: 172, Neg. LLF: 132.3460966129237
Iteration: 16, Func. Count: 183, Neg. LLF: 132.3460219178038
Iteration: 17, Func. Count: 194, Neg. LLF: 132.34601314345136
Iteration: 18, Func. Count: 204, Neg. LLF: 132.34601312413014
Optimization terminated successfully (Exit mode 0)
Current function value: 132.34601314345136
Iterations: 18
Function evaluations: 204
Gradient evaluations: 18
Iteration: 1, Func. Count: 13, Neg. LLF: 189.93816713755677
Iteration: 2, Func. Count: 26, Neg. LLF: 134.58010201650575
Iteration: 3, Func. Count: 38, Neg. LLF: 134.4086357989636
Iteration: 4, Func. Count: 50, Neg. LLF: 134.38276002837782
Iteration: 5, Func. Count: 62, Neg. LLF: 134.38334738804076
Iteration: 6, Func. Count: 75, Neg. LLF: 134.3801224880626
Iteration: 7, Func. Count: 87, Neg. LLF: 134.38012122340461
Iteration: 8, Func. Count: 98, Neg. LLF: 134.38012123634635
Optimization terminated successfully (Exit mode 0)
Current function value: 134.38012122340461
Iterations: 8
Function evaluations: 98
Gradient evaluations: 8
Iteration: 1, Func. Count: 6, Neg. LLF: 137.9095055365547
Iteration: 2, Func. Count: 12, Neg. LLF: 149.4918952801829
Iteration: 3, Func. Count: 18, Neg. LLF: 135.48855141642215
Iteration: 4, Func. Count: 23, Neg. LLF: 135.47884313156337
Iteration: 5, Func. Count: 28, Neg. LLF: 135.46267110772982
Iteration: 6, Func. Count: 33, Neg. LLF: 135.46088895599402
Iteration: 7, Func. Count: 38, Neg. LLF: 135.46087403507872
Iteration: 8, Func. Count: 43, Neg. LLF: 135.4608706185775
Iteration: 9, Func. Count: 48, Neg. LLF: 135.46086980330355
Optimization terminated successfully (Exit mode 0)
Current function value: 135.46086980330355
Iterations: 9
Function evaluations: 48
Gradient evaluations: 9
Iteration: 1, Func. Count: 7, Neg. LLF: 190.073335346607
Iteration: 2, Func. Count: 14, Neg. LLF: 134.90507577082138
Iteration: 3, Func. Count: 20, Neg. LLF: 136.18818123735858
Iteration: 4, Func. Count: 27, Neg. LLF: 134.98743769557248
Iteration: 5, Func. Count: 34, Neg. LLF: 139.7099305110286
Iteration: 6, Func. Count: 41, Neg. LLF: 134.46889434778936
Iteration: 7, Func. Count: 47, Neg. LLF: 134.4563833327753
Iteration: 8, Func. Count: 53, Neg. LLF: 134.45170761290507
Iteration: 9, Func. Count: 59, Neg. LLF: 134.45074670522663
Iteration: 10, Func. Count: 65, Neg. LLF: 134.45066310922158
Iteration: 11, Func. Count: 71, Neg. LLF: 134.4506608410605
Iteration: 12, Func. Count: 76, Neg. LLF: 134.4506608410782
Optimization terminated successfully (Exit mode 0)
Current function value: 134.4506608410605
Iterations: 12
Function evaluations: 76
Gradient evaluations: 12
Iteration: 1, Func. Count: 8, Neg. LLF: 194.0244188647436
Iteration: 2, Func. Count: 16, Neg. LLF: 134.6475029802699
Iteration: 3, Func. Count: 23, Neg. LLF: 134.39918043451007
Iteration: 4, Func. Count: 30, Neg. LLF: 134.3860312635782
Iteration: 5, Func. Count: 37, Neg. LLF: 134.38091204142603
Iteration: 6, Func. Count: 44, Neg. LLF: 134.38013440196008
Iteration: 7, Func. Count: 51, Neg. LLF: 134.3801223934794
Iteration: 8, Func. Count: 58, Neg. LLF: 134.38012123845232
Iteration: 9, Func. Count: 64, Neg. LLF: 134.3801212383977
Optimization terminated successfully (Exit mode 0)
Current function value: 134.38012123845232
Iterations: 9
Function evaluations: 64
Gradient evaluations: 9
Iteration: 1, Func. Count: 9, Neg. LLF: 193.62817214984435
Iteration: 2, Func. Count: 18, Neg. LLF: 134.7415707286045
Iteration: 3, Func. Count: 26, Neg. LLF: 134.38330046733515
Iteration: 4, Func. Count: 34, Neg. LLF: 134.38387967631832
Iteration: 5, Func. Count: 43, Neg. LLF: 134.38014739946394
Iteration: 6, Func. Count: 51, Neg. LLF: 134.38012246134983
Iteration: 7, Func. Count: 59, Neg. LLF: 134.3801212068135
Iteration: 8, Func. Count: 66, Neg. LLF: 134.38012121143944
Optimization terminated successfully (Exit mode 0)
Current function value: 134.3801212068135
Iterations: 8
Function evaluations: 66
Gradient evaluations: 8
Iteration: 1, Func. Count: 10, Neg. LLF: 192.36460915292946
Iteration: 2, Func. Count: 20, Neg. LLF: 134.70987404830788
Iteration: 3, Func. Count: 29, Neg. LLF: 134.38267659775067
Iteration: 4, Func. Count: 38, Neg. LLF: 134.38065308143405
Iteration: 5, Func. Count: 47, Neg. LLF: 134.3809932327444
Iteration: 6, Func. Count: 57, Neg. LLF: 134.38012123979212
Iteration: 7, Func. Count: 65, Neg. LLF: 134.38012125275972
Optimization terminated successfully (Exit mode 0)
Current function value: 134.38012123979212
Iterations: 7
Function evaluations: 65
Gradient evaluations: 7
Iteration: 1, Func. Count: 7, Neg. LLF: 141.36249848742733
Iteration: 2, Func. Count: 14, Neg. LLF: 144.04020706573635
Iteration: 3, Func. Count: 21, Neg. LLF: 135.48676812057292
Iteration: 4, Func. Count: 27, Neg. LLF: 135.47497911232708
Iteration: 5, Func. Count: 33, Neg. LLF: 135.46452422469372
Iteration: 6, Func. Count: 39, Neg. LLF: 135.46131686647095
Iteration: 7, Func. Count: 45, Neg. LLF: 135.46089961138688
Iteration: 8, Func. Count: 51, Neg. LLF: 135.4608744627884
Iteration: 9, Func. Count: 57, Neg. LLF: 135.46087038325874
Iteration: 10, Func. Count: 63, Neg. LLF: 135.46086979973262
Optimization terminated successfully (Exit mode 0)
Current function value: 135.46086979973262
Iterations: 10
Function evaluations: 63
Gradient evaluations: 10
Iteration: 1, Func. Count: 8, Neg. LLF: 187.9880669828831
Iteration: 2, Func. Count: 16, Neg. LLF: 134.89734167452
Iteration: 3, Func. Count: 23, Neg. LLF: 137.04502057391272
Iteration: 4, Func. Count: 31, Neg. LLF: 135.82335826019025
Iteration: 5, Func. Count: 39, Neg. LLF: 134.46655575845284
Iteration: 6, Func. Count: 46, Neg. LLF: 162.49032465511493
Iteration: 7, Func. Count: 54, Neg. LLF: 140.53805152508653
Iteration: 8, Func. Count: 62, Neg. LLF: 133.35499491068097
Iteration: 9, Func. Count: 69, Neg. LLF: 133.18679985704398
Iteration: 10, Func. Count: 76, Neg. LLF: 133.39468283444876
Iteration: 11, Func. Count: 84, Neg. LLF: 133.07997949350272
Iteration: 12, Func. Count: 91, Neg. LLF: 133.07923021903707
Iteration: 13, Func. Count: 98, Neg. LLF: 133.07906068991167
Iteration: 14, Func. Count: 105, Neg. LLF: 133.0790587114219
Iteration: 15, Func. Count: 111, Neg. LLF: 133.0790586306598
Optimization terminated successfully (Exit mode 0)
Current function value: 133.0790587114219
Iterations: 15
Function evaluations: 111
Gradient evaluations: 15
Iteration: 1, Func. Count: 9, Neg. LLF: 191.73897813232858
Iteration: 2, Func. Count: 18, Neg. LLF: 134.52624054512427
Iteration: 3, Func. Count: 26, Neg. LLF: 134.39436340868804
Iteration: 4, Func. Count: 34, Neg. LLF: 134.38206641265432
Iteration: 5, Func. Count: 42, Neg. LLF: 134.3811799199641
Iteration: 6, Func. Count: 50, Neg. LLF: 134.3801413815687
Iteration: 7, Func. Count: 58, Neg. LLF: 134.3801236112234
Iteration: 8, Func. Count: 66, Neg. LLF: 134.38012119601223
Iteration: 9, Func. Count: 73, Neg. LLF: 134.38012119601018
Optimization terminated successfully (Exit mode 0)
Current function value: 134.38012119601223
Iterations: 9
Function evaluations: 73
Gradient evaluations: 9
Iteration: 1, Func. Count: 10, Neg. LLF: 191.38688403270376
Iteration: 2, Func. Count: 20, Neg. LLF: 134.80825621716136
Iteration: 3, Func. Count: 29, Neg. LLF: 134.46234562108086
Iteration: 4, Func. Count: 38, Neg. LLF: 134.41971191031513
Iteration: 5, Func. Count: 47, Neg. LLF: 134.39084074186943
Iteration: 6, Func. Count: 56, Neg. LLF: 134.38060867489477
Iteration: 7, Func. Count: 65, Neg. LLF: 134.3801595329438
Iteration: 8, Func. Count: 74, Neg. LLF: 134.38012182263714
Iteration: 9, Func. Count: 83, Neg. LLF: 134.38012120299496
Optimization terminated successfully (Exit mode 0)
Current function value: 134.38012120299496
Iterations: 9
Function evaluations: 83
Gradient evaluations: 9
Iteration: 1, Func. Count: 11, Neg. LLF: 190.2930761678604
Iteration: 2, Func. Count: 22, Neg. LLF: 134.57248936591867
Iteration: 3, Func. Count: 32, Neg. LLF: 134.38439876480987
Iteration: 4, Func. Count: 42, Neg. LLF: 134.38272596956978
Iteration: 5, Func. Count: 52, Neg. LLF: 134.38043639865916
Iteration: 6, Func. Count: 62, Neg. LLF: 134.38012784799577
Iteration: 7, Func. Count: 72, Neg. LLF: 134.38012128348262
Iteration: 8, Func. Count: 81, Neg. LLF: 134.38012129644895
Optimization terminated successfully (Exit mode 0)
Current function value: 134.38012128348262
Iterations: 8
Function evaluations: 81
Gradient evaluations: 8
Iteration: 1, Func. Count: 8, Neg. LLF: 138.60580416759905
Iteration: 2, Func. Count: 16, Neg. LLF: 144.48482553347986
Iteration: 3, Func. Count: 24, Neg. LLF: 134.34715492011563
Iteration: 4, Func. Count: 31, Neg. LLF: 135.3222526781836
Iteration: 5, Func. Count: 41, Neg. LLF: 133.92547132051797
Iteration: 6, Func. Count: 48, Neg. LLF: 133.91715708574216
Iteration: 7, Func. Count: 55, Neg. LLF: 133.90781188111038
Iteration: 8, Func. Count: 62, Neg. LLF: 133.90735435731693
Iteration: 9, Func. Count: 69, Neg. LLF: 133.9072907599589
Iteration: 10, Func. Count: 76, Neg. LLF: 133.90725763154066
Iteration: 11, Func. Count: 83, Neg. LLF: 133.90725584257726
Iteration: 12, Func. Count: 89, Neg. LLF: 133.90725584259835
Optimization terminated successfully (Exit mode 0)
Current function value: 133.90725584257726
Iterations: 12
Function evaluations: 89
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 147.18060605060947
Iteration: 2, Func. Count: 18, Neg. LLF: 132.37826963110976
Iteration: 3, Func. Count: 26, Neg. LLF: 134.03143340337652
Iteration: 4, Func. Count: 35, Neg. LLF: 131.97161072293812
Iteration: 5, Func. Count: 43, Neg. LLF: 133.32316674455913
Iteration: 6, Func. Count: 52, Neg. LLF: 132.63881654665764
Iteration: 7, Func. Count: 61, Neg. LLF: 132.11625739297645
Iteration: 8, Func. Count: 70, Neg. LLF: 131.32081341292428
Iteration: 9, Func. Count: 78, Neg. LLF: 131.30168637761884
Iteration: 10, Func. Count: 86, Neg. LLF: 131.29584279328876
Iteration: 11, Func. Count: 94, Neg. LLF: 131.28330320854036
Iteration: 12, Func. Count: 102, Neg. LLF: 131.28325995462774
Iteration: 13, Func. Count: 110, Neg. LLF: 131.28325765399532
Iteration: 14, Func. Count: 117, Neg. LLF: 131.28325755765488
Optimization terminated successfully (Exit mode 0)
Current function value: 131.28325765399532
Iterations: 14
Function evaluations: 117
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 148.60077849536398
Iteration: 2, Func. Count: 20, Neg. LLF: 131.83635476503295
Iteration: 3, Func. Count: 29, Neg. LLF: 132.17459638846518
Iteration: 4, Func. Count: 39, Neg. LLF: 150.7984549728464
Iteration: 5, Func. Count: 50, Neg. LLF: 130.9811109339495
Iteration: 6, Func. Count: 59, Neg. LLF: 131.12449435293138
Iteration: 7, Func. Count: 69, Neg. LLF: 130.75247094478289
Iteration: 8, Func. Count: 78, Neg. LLF: 130.74197771044277
Iteration: 9, Func. Count: 87, Neg. LLF: 130.74144312171987
Iteration: 10, Func. Count: 96, Neg. LLF: 130.74130877422547
Iteration: 11, Func. Count: 105, Neg. LLF: 130.74127434168508
Iteration: 12, Func. Count: 114, Neg. LLF: 130.74127201023958
Iteration: 13, Func. Count: 122, Neg. LLF: 130.74127195974484
Optimization terminated successfully (Exit mode 0)
Current function value: 130.74127201023958
Iterations: 13
Function evaluations: 122
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 188.95681799920595
Iteration: 2, Func. Count: 22, Neg. LLF: 133.6238689928229
Iteration: 3, Func. Count: 32, Neg. LLF: 149.37857469340412
Iteration: 4, Func. Count: 43, Neg. LLF: 143.51252478350384
Iteration: 5, Func. Count: 57, Neg. LLF: 135.99203452613327
Iteration: 6, Func. Count: 68, Neg. LLF: 135.5553415113221
Iteration: 7, Func. Count: 79, Neg. LLF: 130.46724945401394
Iteration: 8, Func. Count: 89, Neg. LLF: 130.24444153682626
Iteration: 9, Func. Count: 99, Neg. LLF: 130.16952934487128
Iteration: 10, Func. Count: 109, Neg. LLF: 130.159821354431
Iteration: 11, Func. Count: 119, Neg. LLF: 130.15930352479475
Iteration: 12, Func. Count: 129, Neg. LLF: 130.15908481979653
Iteration: 13, Func. Count: 139, Neg. LLF: 130.1590698308401
Iteration: 14, Func. Count: 149, Neg. LLF: 130.1590684206753
Iteration: 15, Func. Count: 158, Neg. LLF: 130.15906835330864
Optimization terminated successfully (Exit mode 0)
Current function value: 130.1590684206753
Iterations: 15
Function evaluations: 158
Gradient evaluations: 15
Iteration: 1, Func. Count: 12, Neg. LLF: 190.43484841787907
Iteration: 2, Func. Count: 24, Neg. LLF: 132.86490607911904
Iteration: 3, Func. Count: 35, Neg. LLF: 147.39696610848446
Iteration: 4, Func. Count: 47, Neg. LLF: 158.69698560509082
Iteration: 5, Func. Count: 62, Neg. LLF: 136.87375830903548
Iteration: 6, Func. Count: 74, Neg. LLF: 132.92148264059045
Iteration: 7, Func. Count: 86, Neg. LLF: 130.33851298582226
Iteration: 8, Func. Count: 97, Neg. LLF: 130.21708365328988
Iteration: 9, Func. Count: 108, Neg. LLF: 130.16582704995335
Iteration: 10, Func. Count: 119, Neg. LLF: 130.15928883747603
Iteration: 11, Func. Count: 130, Neg. LLF: 130.15908877489275
Iteration: 12, Func. Count: 141, Neg. LLF: 130.15907444661295
Iteration: 13, Func. Count: 152, Neg. LLF: 130.1590687608365
Iteration: 14, Func. Count: 162, Neg. LLF: 130.15906882303128
Optimization terminated successfully (Exit mode 0)
Current function value: 130.1590687608365
Iterations: 14
Function evaluations: 162
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 136.59800330434032
Iteration: 2, Func. Count: 17, Neg. LLF: 136.94625082375836
Iteration: 3, Func. Count: 27, Neg. LLF: 152.61109420619974
Iteration: 4, Func. Count: 36, Neg. LLF: 135.0736380502581
Iteration: 5, Func. Count: 44, Neg. LLF: 133.91979965476926
Iteration: 6, Func. Count: 52, Neg. LLF: 133.93844085211128
Iteration: 7, Func. Count: 61, Neg. LLF: 133.90884534878072
Iteration: 8, Func. Count: 69, Neg. LLF: 133.90726350424535
Iteration: 9, Func. Count: 77, Neg. LLF: 133.90725578236876
Iteration: 10, Func. Count: 84, Neg. LLF: 133.9072558262209
Optimization terminated successfully (Exit mode 0)
Current function value: 133.90725578236876
Iterations: 10
Function evaluations: 84
Gradient evaluations: 10
Iteration: 1, Func. Count: 10, Neg. LLF: 147.17070644397128
Iteration: 2, Func. Count: 20, Neg. LLF: 132.3528330632569
Iteration: 3, Func. Count: 29, Neg. LLF: 133.66623200803528
Iteration: 4, Func. Count: 39, Neg. LLF: 131.95184726616452
Iteration: 5, Func. Count: 48, Neg. LLF: 133.18927772964477
Iteration: 6, Func. Count: 58, Neg. LLF: 132.48493833231782
Iteration: 7, Func. Count: 68, Neg. LLF: 132.04934303045243
Iteration: 8, Func. Count: 78, Neg. LLF: 131.31828229117247
Iteration: 9, Func. Count: 87, Neg. LLF: 131.2898275546424
Iteration: 10, Func. Count: 96, Neg. LLF: 131.29858030143325
Iteration: 11, Func. Count: 106, Neg. LLF: 131.28329496831728
Iteration: 12, Func. Count: 115, Neg. LLF: 131.28325876091145
Iteration: 13, Func. Count: 124, Neg. LLF: 131.2832576519875
Iteration: 14, Func. Count: 132, Neg. LLF: 131.2832575556374
Optimization terminated successfully (Exit mode 0)
Current function value: 131.2832576519875
Iterations: 14
Function evaluations: 132
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 148.6286105640181
Iteration: 2, Func. Count: 22, Neg. LLF: 131.77411963123146
Iteration: 3, Func. Count: 32, Neg. LLF: 132.23206046346485
Iteration: 4, Func. Count: 44, Neg. LLF: 158.38198701336822
Iteration: 5, Func. Count: 56, Neg. LLF: 130.82713255230948
Iteration: 6, Func. Count: 66, Neg. LLF: 130.80861001091347
Iteration: 7, Func. Count: 77, Neg. LLF: 130.7453769293549
Iteration: 8, Func. Count: 87, Neg. LLF: 130.7427614131924
Iteration: 9, Func. Count: 97, Neg. LLF: 130.74152537042283
Iteration: 10, Func. Count: 107, Neg. LLF: 130.74127627149662
Iteration: 11, Func. Count: 117, Neg. LLF: 130.7412724102399
Iteration: 12, Func. Count: 126, Neg. LLF: 130.74127235980907
Optimization terminated successfully (Exit mode 0)
Current function value: 130.7412724102399
Iterations: 12
Function evaluations: 126
Gradient evaluations: 12
Iteration: 1, Func. Count: 12, Neg. LLF: 190.2557516182266
Iteration: 2, Func. Count: 24, Neg. LLF: 133.5405791548077
Iteration: 3, Func. Count: 35, Neg. LLF: 153.45857660182173
Iteration: 4, Func. Count: 47, Neg. LLF: 157.38288839689125
Iteration: 5, Func. Count: 62, Neg. LLF: 137.93786468335873
Iteration: 6, Func. Count: 75, Neg. LLF: 134.36609271686902
Iteration: 7, Func. Count: 87, Neg. LLF: 130.4208982922041
Iteration: 8, Func. Count: 98, Neg. LLF: 130.18687939211358
Iteration: 9, Func. Count: 109, Neg. LLF: 130.16034295236835
Iteration: 10, Func. Count: 120, Neg. LLF: 130.15934884540448
Iteration: 11, Func. Count: 131, Neg. LLF: 130.1591728936379
Iteration: 12, Func. Count: 142, Neg. LLF: 130.15907061950068
Iteration: 13, Func. Count: 153, Neg. LLF: 130.15906850683248
Iteration: 14, Func. Count: 163, Neg. LLF: 130.15906843941534
Optimization terminated successfully (Exit mode 0)
Current function value: 130.15906850683248
Iterations: 14
Function evaluations: 163
Gradient evaluations: 14
Iteration: 1, Func. Count: 13, Neg. LLF: 190.49251665253973
Iteration: 2, Func. Count: 26, Neg. LLF: 132.8786992939477
Iteration: 3, Func. Count: 38, Neg. LLF: 145.6329169573423
Iteration: 4, Func. Count: 51, Neg. LLF: 167.6826429863356
Iteration: 5, Func. Count: 67, Neg. LLF: 135.8089970662893
Iteration: 6, Func. Count: 80, Neg. LLF: 133.65254283718437
Iteration: 7, Func. Count: 93, Neg. LLF: 130.33846724215942
Iteration: 8, Func. Count: 105, Neg. LLF: 130.22349136698705
Iteration: 9, Func. Count: 117, Neg. LLF: 130.16618771527442
Iteration: 10, Func. Count: 129, Neg. LLF: 130.15933111227974
Iteration: 11, Func. Count: 141, Neg. LLF: 130.15908546683755
Iteration: 12, Func. Count: 153, Neg. LLF: 130.1590731917888
Iteration: 13, Func. Count: 165, Neg. LLF: 130.15906862717785
Iteration: 14, Func. Count: 176, Neg. LLF: 130.1590686894023
Optimization terminated successfully (Exit mode 0)
Current function value: 130.15906862717785
Iterations: 14
Function evaluations: 176
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 135.66563314026482
Iteration: 2, Func. Count: 19, Neg. LLF: 136.18394356475432
Iteration: 3, Func. Count: 32, Neg. LLF: 139.15468657479366
Iteration: 4, Func. Count: 42, Neg. LLF: 136.08516568377615
Iteration: 5, Func. Count: 52, Neg. LLF: 134.45816944802672
Iteration: 6, Func. Count: 61, Neg. LLF: 133.91582578223947
Iteration: 7, Func. Count: 70, Neg. LLF: 133.9123085088853
Iteration: 8, Func. Count: 79, Neg. LLF: 133.90732715011163
Iteration: 9, Func. Count: 88, Neg. LLF: 133.90729036151356
Iteration: 10, Func. Count: 97, Neg. LLF: 133.9072595153607
Iteration: 11, Func. Count: 106, Neg. LLF: 133.9072560665549
Iteration: 12, Func. Count: 114, Neg. LLF: 133.90725622205807
Optimization terminated successfully (Exit mode 0)
Current function value: 133.9072560665549
Iterations: 12
Function evaluations: 114
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 147.09629937690576
Iteration: 2, Func. Count: 22, Neg. LLF: 132.34333512277792
Iteration: 3, Func. Count: 32, Neg. LLF: 133.39404465967064
Iteration: 4, Func. Count: 43, Neg. LLF: 131.93558519758125
Iteration: 5, Func. Count: 53, Neg. LLF: 133.10110196407066
Iteration: 6, Func. Count: 64, Neg. LLF: 132.35146742234187
Iteration: 7, Func. Count: 75, Neg. LLF: 132.00067258180735
Iteration: 8, Func. Count: 86, Neg. LLF: 131.34810313686071
Iteration: 9, Func. Count: 97, Neg. LLF: 131.3024674126321
Iteration: 10, Func. Count: 108, Neg. LLF: 131.28338345548656
Iteration: 11, Func. Count: 118, Neg. LLF: 131.2832576687777
Iteration: 12, Func. Count: 127, Neg. LLF: 131.28325757238295
Optimization terminated successfully (Exit mode 0)
Current function value: 131.2832576687777
Iterations: 12
Function evaluations: 127
Gradient evaluations: 12
Iteration: 1, Func. Count: 12, Neg. LLF: 148.4246343373595
Iteration: 2, Func. Count: 24, Neg. LLF: 131.74631220318147
Iteration: 3, Func. Count: 35, Neg. LLF: 132.21082140748885
Iteration: 4, Func. Count: 48, Neg. LLF: 157.83946251604223
Iteration: 5, Func. Count: 61, Neg. LLF: 130.82745370925002
Iteration: 6, Func. Count: 72, Neg. LLF: 130.80783045813888
Iteration: 7, Func. Count: 84, Neg. LLF: 130.74473148337435
Iteration: 8, Func. Count: 95, Neg. LLF: 130.74241961756815
Iteration: 9, Func. Count: 106, Neg. LLF: 130.7415858307024
Iteration: 10, Func. Count: 117, Neg. LLF: 130.74127507778374
Iteration: 11, Func. Count: 128, Neg. LLF: 130.74127329164125
Iteration: 12, Func. Count: 139, Neg. LLF: 130.74127199636555
Iteration: 13, Func. Count: 149, Neg. LLF: 130.74127194588795
Optimization terminated successfully (Exit mode 0)
Current function value: 130.74127199636555
Iterations: 13
Function evaluations: 149
Gradient evaluations: 13
Iteration: 1, Func. Count: 13, Neg. LLF: 186.95467799761767
Iteration: 2, Func. Count: 26, Neg. LLF: 133.680770242729
Iteration: 3, Func. Count: 38, Neg. LLF: 150.85567034185672
Iteration: 4, Func. Count: 51, Neg. LLF: 148.94572394253225
Iteration: 5, Func. Count: 67, Neg. LLF: 136.9503623087263
Iteration: 6, Func. Count: 80, Neg. LLF: 134.81394327959146
Iteration: 7, Func. Count: 93, Neg. LLF: 130.4667339234743
Iteration: 8, Func. Count: 105, Neg. LLF: 130.23924142696518
Iteration: 9, Func. Count: 117, Neg. LLF: 130.17672143996847
Iteration: 10, Func. Count: 129, Neg. LLF: 130.15959123264588
Iteration: 11, Func. Count: 141, Neg. LLF: 130.15919299731377
Iteration: 12, Func. Count: 153, Neg. LLF: 130.15909292064495
Iteration: 13, Func. Count: 165, Neg. LLF: 130.15907171161325
Iteration: 14, Func. Count: 177, Neg. LLF: 130.15906875206585
Iteration: 15, Func. Count: 188, Neg. LLF: 130.15906868469736
Optimization terminated successfully (Exit mode 0)
Current function value: 130.15906875206585
Iterations: 15
Function evaluations: 188
Gradient evaluations: 15
Iteration: 1, Func. Count: 14, Neg. LLF: 190.2975743884524
Iteration: 2, Func. Count: 28, Neg. LLF: 132.886792203946
Iteration: 3, Func. Count: 41, Neg. LLF: 144.27145073334182
Iteration: 4, Func. Count: 55, Neg. LLF: 175.75411354449082
Iteration: 5, Func. Count: 72, Neg. LLF: 135.19309773909313
Iteration: 6, Func. Count: 86, Neg. LLF: 134.51563567296014
Iteration: 7, Func. Count: 100, Neg. LLF: 130.34353595586228
Iteration: 8, Func. Count: 113, Neg. LLF: 130.23025400233303
Iteration: 9, Func. Count: 126, Neg. LLF: 130.16735506297977
Iteration: 10, Func. Count: 139, Neg. LLF: 130.15940378472024
Iteration: 11, Func. Count: 152, Neg. LLF: 130.15908646306346
Iteration: 12, Func. Count: 165, Neg. LLF: 130.15907267756702
Iteration: 13, Func. Count: 178, Neg. LLF: 130.15906870660686
Iteration: 14, Func. Count: 190, Neg. LLF: 130.15906876883426
Optimization terminated successfully (Exit mode 0)
Current function value: 130.15906870660686
Iterations: 14
Function evaluations: 190
Gradient evaluations: 14
Iteration: 1, Func. Count: 7, Neg. LLF: 137.51644463864258
Iteration: 2, Func. Count: 14, Neg. LLF: 148.51917717134887
Iteration: 3, Func. Count: 21, Neg. LLF: 135.48903038672952
Iteration: 4, Func. Count: 27, Neg. LLF: 135.48922201511286
Iteration: 5, Func. Count: 34, Neg. LLF: 135.46960940852202
Iteration: 6, Func. Count: 40, Neg. LLF: 135.4609148374026
Iteration: 7, Func. Count: 46, Neg. LLF: 135.46088052974565
Iteration: 8, Func. Count: 52, Neg. LLF: 135.46087181063183
Iteration: 9, Func. Count: 58, Neg. LLF: 135.4608698433312
Iteration: 10, Func. Count: 63, Neg. LLF: 135.4608699313147
Optimization terminated successfully (Exit mode 0)
Current function value: 135.4608698433312
Iterations: 10
Function evaluations: 63
Gradient evaluations: 10
Iteration: 1, Func. Count: 8, Neg. LLF: 189.98908362199265
Iteration: 2, Func. Count: 16, Neg. LLF: 134.8832702266671
Iteration: 3, Func. Count: 23, Neg. LLF: 136.8855842927762
Iteration: 4, Func. Count: 31, Neg. LLF: 135.17241257352396
Iteration: 5, Func. Count: 39, Neg. LLF: 147.9614129243911
Iteration: 6, Func. Count: 47, Neg. LLF: 134.51210664225832
Iteration: 7, Func. Count: 55, Neg. LLF: 134.45164450313663
Iteration: 8, Func. Count: 62, Neg. LLF: 134.4507276036863
Iteration: 9, Func. Count: 69, Neg. LLF: 134.45067029405826
Iteration: 10, Func. Count: 76, Neg. LLF: 134.45066083943834
Iteration: 11, Func. Count: 82, Neg. LLF: 134.45066083954836
Optimization terminated successfully (Exit mode 0)
Current function value: 134.45066083943834
Iterations: 11
Function evaluations: 82
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 193.85276870894393
Iteration: 2, Func. Count: 18, Neg. LLF: 134.60518056718246
Iteration: 3, Func. Count: 26, Neg. LLF: 134.40321476831883
Iteration: 4, Func. Count: 34, Neg. LLF: 134.3866985383118
Iteration: 5, Func. Count: 42, Neg. LLF: 134.38120077461178
Iteration: 6, Func. Count: 50, Neg. LLF: 134.38013837821984
Iteration: 7, Func. Count: 58, Neg. LLF: 134.3801228182983
Iteration: 8, Func. Count: 66, Neg. LLF: 134.38012124630646
Iteration: 9, Func. Count: 73, Neg. LLF: 134.38012124624402
Optimization terminated successfully (Exit mode 0)
Current function value: 134.38012124630646
Iterations: 9
Function evaluations: 73
Gradient evaluations: 9
Iteration: 1, Func. Count: 10, Neg. LLF: 193.444016041331
Iteration: 2, Func. Count: 20, Neg. LLF: 134.6988241238218
Iteration: 3, Func. Count: 29, Neg. LLF: 134.38299743241643
Iteration: 4, Func. Count: 38, Neg. LLF: 134.38522251057094
Iteration: 5, Func. Count: 48, Neg. LLF: 134.38012675668134
Iteration: 6, Func. Count: 57, Neg. LLF: 134.38012154082256
Iteration: 7, Func. Count: 65, Neg. LLF: 134.38012154535542
Optimization terminated successfully (Exit mode 0)
Current function value: 134.38012154082256
Iterations: 7
Function evaluations: 65
Gradient evaluations: 7
Iteration: 1, Func. Count: 11, Neg. LLF: 192.2542693840023
Iteration: 2, Func. Count: 22, Neg. LLF: 134.65417265160025
Iteration: 3, Func. Count: 32, Neg. LLF: 134.38209493498286
Iteration: 4, Func. Count: 42, Neg. LLF: 134.38240963386218
Iteration: 5, Func. Count: 53, Neg. LLF: 134.38014018402254
Iteration: 6, Func. Count: 63, Neg. LLF: 134.38012149128372
Iteration: 7, Func. Count: 72, Neg. LLF: 134.3801215042339
Optimization terminated successfully (Exit mode 0)
Current function value: 134.38012149128372
Iterations: 7
Function evaluations: 72
Gradient evaluations: 7
Iteration: 1, Func. Count: 8, Neg. LLF: 141.18524424629555
Iteration: 2, Func. Count: 16, Neg. LLF: 143.79693386199355
Iteration: 3, Func. Count: 24, Neg. LLF: 135.48975946185092
Iteration: 4, Func. Count: 31, Neg. LLF: 135.476445068975
Iteration: 5, Func. Count: 38, Neg. LLF: 135.46861067047294
Iteration: 6, Func. Count: 45, Neg. LLF: 135.46099130388188
Iteration: 7, Func. Count: 52, Neg. LLF: 135.4608867643416
Iteration: 8, Func. Count: 59, Neg. LLF: 135.46087248690162
Iteration: 9, Func. Count: 66, Neg. LLF: 135.46086988829927
Iteration: 10, Func. Count: 72, Neg. LLF: 135.46086981665965
Optimization terminated successfully (Exit mode 0)
Current function value: 135.46086988829927
Iterations: 10
Function evaluations: 72
Gradient evaluations: 10
Iteration: 1, Func. Count: 9, Neg. LLF: 187.98577356760524
Iteration: 2, Func. Count: 18, Neg. LLF: 134.8841803217107
Iteration: 3, Func. Count: 26, Neg. LLF: 137.325588376409
Iteration: 4, Func. Count: 35, Neg. LLF: 136.12880065481227
Iteration: 5, Func. Count: 44, Neg. LLF: 134.61251575786466
Iteration: 6, Func. Count: 53, Neg. LLF: 161.4032606900479
Iteration: 7, Func. Count: 62, Neg. LLF: 133.62348909624853
Iteration: 8, Func. Count: 70, Neg. LLF: 133.34891305703286
Iteration: 9, Func. Count: 78, Neg. LLF: 133.79910029717533
Iteration: 10, Func. Count: 87, Neg. LLF: 133.0840539093966
Iteration: 11, Func. Count: 95, Neg. LLF: 133.07915701622946
Iteration: 12, Func. Count: 103, Neg. LLF: 133.07905959153373
Iteration: 13, Func. Count: 111, Neg. LLF: 133.0790582267225
Iteration: 14, Func. Count: 118, Neg. LLF: 133.07905814581392
Optimization terminated successfully (Exit mode 0)
Current function value: 133.0790582267225
Iterations: 14
Function evaluations: 118
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 191.60805205578058
Iteration: 2, Func. Count: 20, Neg. LLF: 134.50454200440115
Iteration: 3, Func. Count: 29, Neg. LLF: 134.39670873536966
Iteration: 4, Func. Count: 38, Neg. LLF: 134.38205954031335
Iteration: 5, Func. Count: 47, Neg. LLF: 134.38134499472858
Iteration: 6, Func. Count: 56, Neg. LLF: 134.3801469135497
Iteration: 7, Func. Count: 65, Neg. LLF: 134.3801242746801
Iteration: 8, Func. Count: 74, Neg. LLF: 134.38012119619341
Iteration: 9, Func. Count: 82, Neg. LLF: 134.38012119619182
Optimization terminated successfully (Exit mode 0)
Current function value: 134.38012119619341
Iterations: 9
Function evaluations: 82
Gradient evaluations: 9
Iteration: 1, Func. Count: 11, Neg. LLF: 191.2316457159392
Iteration: 2, Func. Count: 22, Neg. LLF: 134.81653364645967
Iteration: 3, Func. Count: 32, Neg. LLF: 134.47718848311084
Iteration: 4, Func. Count: 42, Neg. LLF: 134.45776200177255
Iteration: 5, Func. Count: 52, Neg. LLF: 134.3925634416294
Iteration: 6, Func. Count: 62, Neg. LLF: 134.3991200681255
Iteration: 7, Func. Count: 73, Neg. LLF: 134.3801269895267
Iteration: 8, Func. Count: 83, Neg. LLF: 134.38012128239805
Iteration: 9, Func. Count: 92, Neg. LLF: 134.38012128709812
Optimization terminated successfully (Exit mode 0)
Current function value: 134.38012128239805
Iterations: 9
Function evaluations: 92
Gradient evaluations: 9
Iteration: 1, Func. Count: 12, Neg. LLF: 190.20540423439556
Iteration: 2, Func. Count: 24, Neg. LLF: 134.5454840421556
Iteration: 3, Func. Count: 35, Neg. LLF: 134.38527317916217
Iteration: 4, Func. Count: 46, Neg. LLF: 134.3871335290647
Iteration: 5, Func. Count: 58, Neg. LLF: 134.3802520726598
Iteration: 6, Func. Count: 69, Neg. LLF: 134.38012330787592
Iteration: 7, Func. Count: 80, Neg. LLF: 134.38012123635744
Iteration: 8, Func. Count: 90, Neg. LLF: 134.38012124924907
Optimization terminated successfully (Exit mode 0)
Current function value: 134.38012123635744
Iterations: 8
Function evaluations: 90
Gradient evaluations: 8
Iteration: 1, Func. Count: 9, Neg. LLF: 136.64871079520188
Iteration: 2, Func. Count: 17, Neg. LLF: 139.8612598222548
Iteration: 3, Func. Count: 26, Neg. LLF: 134.1979478275544
Iteration: 4, Func. Count: 34, Neg. LLF: 134.158665421707
Iteration: 5, Func. Count: 43, Neg. LLF: 133.92240854489492
Iteration: 6, Func. Count: 51, Neg. LLF: 133.9118212568979
Iteration: 7, Func. Count: 59, Neg. LLF: 133.90765746598407
Iteration: 8, Func. Count: 67, Neg. LLF: 133.9074427335087
Iteration: 9, Func. Count: 75, Neg. LLF: 133.90730022129384
Iteration: 10, Func. Count: 83, Neg. LLF: 133.90725992371316
Iteration: 11, Func. Count: 91, Neg. LLF: 133.90725586614394
Iteration: 12, Func. Count: 98, Neg. LLF: 133.90725586606808
Optimization terminated successfully (Exit mode 0)
Current function value: 133.90725586614394
Iterations: 12
Function evaluations: 98
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 147.25288515882568
Iteration: 2, Func. Count: 20, Neg. LLF: 132.34986567001718
Iteration: 3, Func. Count: 29, Neg. LLF: 133.64645696118512
Iteration: 4, Func. Count: 39, Neg. LLF: 131.9505116617698
Iteration: 5, Func. Count: 48, Neg. LLF: 133.18692092364034
Iteration: 6, Func. Count: 58, Neg. LLF: 132.46641992563605
Iteration: 7, Func. Count: 68, Neg. LLF: 132.04075727993103
Iteration: 8, Func. Count: 78, Neg. LLF: 131.32409363604174
Iteration: 9, Func. Count: 87, Neg. LLF: 131.29623783421206
Iteration: 10, Func. Count: 96, Neg. LLF: 131.30398512311646
Iteration: 11, Func. Count: 106, Neg. LLF: 131.28332825945606
Iteration: 12, Func. Count: 115, Neg. LLF: 131.28326140002338
Iteration: 13, Func. Count: 124, Neg. LLF: 131.2832576580564
Iteration: 14, Func. Count: 132, Neg. LLF: 131.2832575617121
Optimization terminated successfully (Exit mode 0)
Current function value: 131.2832576580564
Iterations: 14
Function evaluations: 132
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 148.59775166598416
Iteration: 2, Func. Count: 22, Neg. LLF: 131.7690769696119
Iteration: 3, Func. Count: 32, Neg. LLF: 132.23375050965535
Iteration: 4, Func. Count: 44, Neg. LLF: 158.36424766732674
Iteration: 5, Func. Count: 56, Neg. LLF: 130.82744200164382
Iteration: 6, Func. Count: 66, Neg. LLF: 130.80796390906363
Iteration: 7, Func. Count: 77, Neg. LLF: 130.7450985585183
Iteration: 8, Func. Count: 87, Neg. LLF: 130.74265905198192
Iteration: 9, Func. Count: 97, Neg. LLF: 130.7415288967983
Iteration: 10, Func. Count: 107, Neg. LLF: 130.7412771975147
Iteration: 11, Func. Count: 117, Neg. LLF: 130.74127274297715
Iteration: 12, Func. Count: 127, Neg. LLF: 130.7412719970365
Optimization terminated successfully (Exit mode 0)
Current function value: 130.7412719970365
Iterations: 12
Function evaluations: 127
Gradient evaluations: 12
Iteration: 1, Func. Count: 12, Neg. LLF: 188.18956705741368
Iteration: 2, Func. Count: 24, Neg. LLF: 133.65158488677503
Iteration: 3, Func. Count: 35, Neg. LLF: 150.01466605928618
Iteration: 4, Func. Count: 47, Neg. LLF: 146.8485364839928
Iteration: 5, Func. Count: 62, Neg. LLF: 136.65046380517072
Iteration: 6, Func. Count: 74, Neg. LLF: 135.28566648222284
Iteration: 7, Func. Count: 86, Neg. LLF: 130.48912835758284
Iteration: 8, Func. Count: 97, Neg. LLF: 130.24537313165888
Iteration: 9, Func. Count: 108, Neg. LLF: 130.18342397089327
Iteration: 10, Func. Count: 119, Neg. LLF: 130.15986149663973
Iteration: 11, Func. Count: 130, Neg. LLF: 130.1592747752036
Iteration: 12, Func. Count: 141, Neg. LLF: 130.15910382051896
Iteration: 13, Func. Count: 152, Neg. LLF: 130.15907214382003
Iteration: 14, Func. Count: 163, Neg. LLF: 130.1590687683287
Iteration: 15, Func. Count: 173, Neg. LLF: 130.15906870092596
Optimization terminated successfully (Exit mode 0)
Current function value: 130.1590687683287
Iterations: 15
Function evaluations: 173
Gradient evaluations: 15
Iteration: 1, Func. Count: 13, Neg. LLF: 190.36448320279936
Iteration: 2, Func. Count: 26, Neg. LLF: 132.87702042249947
Iteration: 3, Func. Count: 38, Neg. LLF: 145.6465655659606
Iteration: 4, Func. Count: 51, Neg. LLF: 166.15313267819934
Iteration: 5, Func. Count: 67, Neg. LLF: 136.07218380468396
Iteration: 6, Func. Count: 80, Neg. LLF: 133.51499690260104
Iteration: 7, Func. Count: 93, Neg. LLF: 130.3441391005189
Iteration: 8, Func. Count: 105, Neg. LLF: 130.22319374012176
Iteration: 9, Func. Count: 117, Neg. LLF: 130.16778151085143
Iteration: 10, Func. Count: 129, Neg. LLF: 130.15937749838346
Iteration: 11, Func. Count: 141, Neg. LLF: 130.1590871405732
Iteration: 12, Func. Count: 153, Neg. LLF: 130.15907292698918
Iteration: 13, Func. Count: 165, Neg. LLF: 130.15906884076077
Iteration: 14, Func. Count: 176, Neg. LLF: 130.15906890297427
Optimization terminated successfully (Exit mode 0)
Current function value: 130.15906884076077
Iterations: 14
Function evaluations: 176
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 137.36091786309626
Iteration: 2, Func. Count: 20, Neg. LLF: 142.25285098689105
Iteration: 3, Func. Count: 30, Neg. LLF: 135.13284936734178
Iteration: 4, Func. Count: 39, Neg. LLF: 136.2244687420091
Iteration: 5, Func. Count: 49, Neg. LLF: 147.87498195051006
Iteration: 6, Func. Count: 61, Neg. LLF: 136.95654424690557
Iteration: 7, Func. Count: 71, Neg. LLF: 134.8818411455059
Iteration: 8, Func. Count: 80, Neg. LLF: 134.58223722196362
Iteration: 9, Func. Count: 89, Neg. LLF: 134.14808777060983
Iteration: 10, Func. Count: 98, Neg. LLF: 133.96984285428397
Iteration: 11, Func. Count: 107, Neg. LLF: 152.08332776274477
Iteration: 12, Func. Count: 119, Neg. LLF: 133.91572329167622
Iteration: 13, Func. Count: 128, Neg. LLF: 133.90862886799403
Iteration: 14, Func. Count: 137, Neg. LLF: 133.90738073215422
Iteration: 15, Func. Count: 146, Neg. LLF: 133.90726442165226
Iteration: 16, Func. Count: 155, Neg. LLF: 133.9072557417622
Iteration: 17, Func. Count: 163, Neg. LLF: 133.90725578562228
Optimization terminated successfully (Exit mode 0)
Current function value: 133.9072557417622
Iterations: 17
Function evaluations: 163
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 143.47630677488817
Iteration: 2, Func. Count: 22, Neg. LLF: 234.2198718385637
Iteration: 3, Func. Count: 33, Neg. LLF: 131.53171045844394
Iteration: 4, Func. Count: 43, Neg. LLF: 130.7914599608552
Iteration: 5, Func. Count: 53, Neg. LLF: 130.4700239067363
Iteration: 6, Func. Count: 63, Neg. LLF: 130.13999686632695
Iteration: 7, Func. Count: 73, Neg. LLF: 129.8379471481888
Iteration: 8, Func. Count: 83, Neg. LLF: 129.86734777948067
Iteration: 9, Func. Count: 94, Neg. LLF: 129.81803045309067
Iteration: 10, Func. Count: 104, Neg. LLF: 129.81560892772256
Iteration: 11, Func. Count: 114, Neg. LLF: 129.81560605693818
Iteration: 12, Func. Count: 123, Neg. LLF: 129.81560593521075
Optimization terminated successfully (Exit mode 0)
Current function value: 129.81560605693818
Iterations: 12
Function evaluations: 123
Gradient evaluations: 12
Iteration: 1, Func. Count: 12, Neg. LLF: 148.61420507271438
Iteration: 2, Func. Count: 24, Neg. LLF: 131.35330665137644
Iteration: 3, Func. Count: 35, Neg. LLF: 135.54349356899067
Iteration: 4, Func. Count: 47, Neg. LLF: 132.36333680768257
Iteration: 5, Func. Count: 60, Neg. LLF: 130.81626797659797
Iteration: 6, Func. Count: 71, Neg. LLF: 130.77246550047633
Iteration: 7, Func. Count: 82, Neg. LLF: 130.74935081053903
Iteration: 8, Func. Count: 93, Neg. LLF: 130.74153698857236
Iteration: 9, Func. Count: 104, Neg. LLF: 130.7413200993283
Iteration: 10, Func. Count: 115, Neg. LLF: 130.74127375097308
Iteration: 11, Func. Count: 126, Neg. LLF: 130.74127232468095
Iteration: 12, Func. Count: 136, Neg. LLF: 130.74127227423435
Optimization terminated successfully (Exit mode 0)
Current function value: 130.74127232468095
Iterations: 12
Function evaluations: 136
Gradient evaluations: 12
Iteration: 1, Func. Count: 13, Neg. LLF: 189.23933440110744
Iteration: 2, Func. Count: 26, Neg. LLF: 134.1369067987429
Iteration: 3, Func. Count: 38, Neg. LLF: 138.3104772894725
Iteration: 4, Func. Count: 51, Neg. LLF: 146.1899578767057
Iteration: 5, Func. Count: 64, Neg. LLF: 177.13409174147802
Iteration: 6, Func. Count: 77, Neg. LLF: 130.42464065253336
Iteration: 7, Func. Count: 89, Neg. LLF: 130.22991261666468
Iteration: 8, Func. Count: 101, Neg. LLF: 130.16309143622857
Iteration: 9, Func. Count: 113, Neg. LLF: 130.15917329233153
Iteration: 10, Func. Count: 125, Neg. LLF: 130.15908013307825
Iteration: 11, Func. Count: 137, Neg. LLF: 130.1590692248715
Iteration: 12, Func. Count: 149, Neg. LLF: 130.15906882967616
Optimization terminated successfully (Exit mode 0)
Current function value: 130.15906882967616
Iterations: 12
Function evaluations: 149
Gradient evaluations: 12
Iteration: 1, Func. Count: 14, Neg. LLF: 190.40510668370183
Iteration: 2, Func. Count: 28, Neg. LLF: 132.89772667405077
Iteration: 3, Func. Count: 41, Neg. LLF: 144.16137794392102
Iteration: 4, Func. Count: 55, Neg. LLF: 176.98468111395513
Iteration: 5, Func. Count: 72, Neg. LLF: 135.18976054960825
Iteration: 6, Func. Count: 86, Neg. LLF: 134.64499106133343
Iteration: 7, Func. Count: 100, Neg. LLF: 130.34465548688388
Iteration: 8, Func. Count: 113, Neg. LLF: 130.23059636327642
Iteration: 9, Func. Count: 126, Neg. LLF: 130.1672671368808
Iteration: 10, Func. Count: 139, Neg. LLF: 130.1593979534345
Iteration: 11, Func. Count: 152, Neg. LLF: 130.15908397671532
Iteration: 12, Func. Count: 165, Neg. LLF: 130.1590718034107
Iteration: 13, Func. Count: 178, Neg. LLF: 130.15906869608708
Iteration: 14, Func. Count: 190, Neg. LLF: 130.15906875831334
Optimization terminated successfully (Exit mode 0)
Current function value: 130.15906869608708
Iterations: 14
Function evaluations: 190
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 135.99187544793827
Iteration: 2, Func. Count: 21, Neg. LLF: 136.73484973739372
Iteration: 3, Func. Count: 34, Neg. LLF: 155.3931358113389
Iteration: 4, Func. Count: 45, Neg. LLF: 135.5471499215027
Iteration: 5, Func. Count: 56, Neg. LLF: 134.10955312335983
Iteration: 6, Func. Count: 66, Neg. LLF: 133.90855254407862
Iteration: 7, Func. Count: 76, Neg. LLF: 133.90770602807805
Iteration: 8, Func. Count: 86, Neg. LLF: 133.90748826360732
Iteration: 9, Func. Count: 96, Neg. LLF: 133.90725635698698
Iteration: 10, Func. Count: 106, Neg. LLF: 133.90725572917518
Optimization terminated successfully (Exit mode 0)
Current function value: 133.90725572917518
Iterations: 10
Function evaluations: 106
Gradient evaluations: 10
Iteration: 1, Func. Count: 12, Neg. LLF: 143.44327875942196
Iteration: 2, Func. Count: 24, Neg. LLF: 232.74040665576263
Iteration: 3, Func. Count: 36, Neg. LLF: 131.5399113455434
Iteration: 4, Func. Count: 47, Neg. LLF: 130.79989768235657
Iteration: 5, Func. Count: 58, Neg. LLF: 130.49083825965005
Iteration: 6, Func. Count: 69, Neg. LLF: 130.16848919026714
Iteration: 7, Func. Count: 80, Neg. LLF: 129.8518407267929
Iteration: 8, Func. Count: 91, Neg. LLF: 129.88821745017745
Iteration: 9, Func. Count: 103, Neg. LLF: 129.81777439298105
Iteration: 10, Func. Count: 114, Neg. LLF: 129.81562188175508
Iteration: 11, Func. Count: 125, Neg. LLF: 129.81560647187845
Iteration: 12, Func. Count: 135, Neg. LLF: 129.8156063504662
Optimization terminated successfully (Exit mode 0)
Current function value: 129.81560647187845
Iterations: 12
Function evaluations: 135
Gradient evaluations: 12
Iteration: 1, Func. Count: 13, Neg. LLF: 148.41244420357745
Iteration: 2, Func. Count: 26, Neg. LLF: 131.3391436463191
Iteration: 3, Func. Count: 38, Neg. LLF: 135.49774738007403
Iteration: 4, Func. Count: 51, Neg. LLF: 132.37009665449378
Iteration: 5, Func. Count: 65, Neg. LLF: 130.81595630791765
Iteration: 6, Func. Count: 77, Neg. LLF: 130.7718758733757
Iteration: 7, Func. Count: 89, Neg. LLF: 130.75008877486496
Iteration: 8, Func. Count: 101, Neg. LLF: 130.7416424430854
Iteration: 9, Func. Count: 113, Neg. LLF: 130.74134025166973
Iteration: 10, Func. Count: 125, Neg. LLF: 130.74127317135446
Iteration: 11, Func. Count: 137, Neg. LLF: 130.74127245234044
Optimization terminated successfully (Exit mode 0)
Current function value: 130.74127245234044
Iterations: 11
Function evaluations: 137
Gradient evaluations: 11
Iteration: 1, Func. Count: 14, Neg. LLF: 186.01498054218862
Iteration: 2, Func. Count: 28, Neg. LLF: 133.98402346710043
Iteration: 3, Func. Count: 41, Neg. LLF: 139.2036341803281
Iteration: 4, Func. Count: 55, Neg. LLF: 146.90224075909848
Iteration: 5, Func. Count: 69, Neg. LLF: 171.8482810483065
Iteration: 6, Func. Count: 83, Neg. LLF: 130.3539837847601
Iteration: 7, Func. Count: 96, Neg. LLF: 130.2198667100353
Iteration: 8, Func. Count: 109, Neg. LLF: 130.16031886864283
Iteration: 9, Func. Count: 122, Neg. LLF: 130.15946171487832
Iteration: 10, Func. Count: 135, Neg. LLF: 130.15909195353123
Iteration: 11, Func. Count: 148, Neg. LLF: 130.15906932370575
Iteration: 12, Func. Count: 161, Neg. LLF: 130.15906843203476
Optimization terminated successfully (Exit mode 0)
Current function value: 130.15906843203476
Iterations: 12
Function evaluations: 161
Gradient evaluations: 12
Iteration: 1, Func. Count: 15, Neg. LLF: 190.21083935842572
Iteration: 2, Func. Count: 30, Neg. LLF: 132.91362666180254
Iteration: 3, Func. Count: 44, Neg. LLF: 142.99616507544383
Iteration: 4, Func. Count: 59, Neg. LLF: 186.95575974036853
Iteration: 5, Func. Count: 76, Neg. LLF: 136.40923153406328
Iteration: 6, Func. Count: 91, Neg. LLF: 134.23480714722194
Iteration: 7, Func. Count: 106, Neg. LLF: 130.40770154832137
Iteration: 8, Func. Count: 120, Neg. LLF: 130.20347414756947
Iteration: 9, Func. Count: 134, Neg. LLF: 130.194876769048
Iteration: 10, Func. Count: 149, Neg. LLF: 130.15951588062163
Iteration: 11, Func. Count: 163, Neg. LLF: 130.1590708296596
Iteration: 12, Func. Count: 177, Neg. LLF: 130.1590683524115
Iteration: 13, Func. Count: 190, Neg. LLF: 130.15906841460807
Optimization terminated successfully (Exit mode 0)
Current function value: 130.1590683524115
Iterations: 13
Function evaluations: 190
Gradient evaluations: 13
Iteration: 1, Func. Count: 8, Neg. LLF: 133.47802582572947
Iteration: 2, Func. Count: 15, Neg. LLF: 133.32419423461954
Iteration: 3, Func. Count: 22, Neg. LLF: 138.38456306499816
Iteration: 4, Func. Count: 30, Neg. LLF: 176.3736331033059
Iteration: 5, Func. Count: 38, Neg. LLF: 161.1565137661872
Iteration: 6, Func. Count: 46, Neg. LLF: 545.3568905715181
Iteration: 7, Func. Count: 54, Neg. LLF: 142.3029670402003
Iteration: 8, Func. Count: 62, Neg. LLF: 131.4082235299768
Iteration: 9, Func. Count: 70, Neg. LLF: 131.13557460820726
Iteration: 10, Func. Count: 77, Neg. LLF: 131.25343628170717
Iteration: 11, Func. Count: 85, Neg. LLF: 131.15036881025557
Iteration: 12, Func. Count: 93, Neg. LLF: 131.1277972839102
Iteration: 13, Func. Count: 100, Neg. LLF: 131.12726689694878
Iteration: 14, Func. Count: 107, Neg. LLF: 131.12721938979064
Iteration: 15, Func. Count: 114, Neg. LLF: 131.12720585181847
Iteration: 16, Func. Count: 120, Neg. LLF: 131.127205851801
Optimization terminated successfully (Exit mode 0)
Current function value: 131.12720585181847
Iterations: 16
Function evaluations: 120
Gradient evaluations: 16
Iteration: 1, Func. Count: 9, Neg. LLF: 190.0124319207865
Iteration: 2, Func. Count: 18, Neg. LLF: 134.86797675629862
Iteration: 3, Func. Count: 26, Neg. LLF: 137.69568136110274
Iteration: 4, Func. Count: 35, Neg. LLF: 135.43266211958402
Iteration: 5, Func. Count: 44, Neg. LLF: 144.62685007586478
Iteration: 6, Func. Count: 53, Neg. LLF: 134.6317078997213
Iteration: 7, Func. Count: 62, Neg. LLF: 134.45190357119995
Iteration: 8, Func. Count: 70, Neg. LLF: 134.4507362760883
Iteration: 9, Func. Count: 78, Neg. LLF: 134.4506975264115
Iteration: 10, Func. Count: 86, Neg. LLF: 134.45066081321391
Iteration: 11, Func. Count: 93, Neg. LLF: 134.45066081321568
Optimization terminated successfully (Exit mode 0)
Current function value: 134.45066081321391
Iterations: 11
Function evaluations: 93
Gradient evaluations: 11
Iteration: 1, Func. Count: 10, Neg. LLF: 194.01042930697702
Iteration: 2, Func. Count: 20, Neg. LLF: 134.5725821859399
Iteration: 3, Func. Count: 29, Neg. LLF: 134.4084436830296
Iteration: 4, Func. Count: 38, Neg. LLF: 134.39027697991628
Iteration: 5, Func. Count: 47, Neg. LLF: 134.38122777046274
Iteration: 6, Func. Count: 56, Neg. LLF: 134.38014915973855
Iteration: 7, Func. Count: 65, Neg. LLF: 134.38012394352396
Iteration: 8, Func. Count: 74, Neg. LLF: 134.38012129216423
Iteration: 9, Func. Count: 82, Neg. LLF: 134.38012129208283
Optimization terminated successfully (Exit mode 0)
Current function value: 134.38012129216423
Iterations: 9
Function evaluations: 82
Gradient evaluations: 9
Iteration: 1, Func. Count: 11, Neg. LLF: 193.70250661321356
Iteration: 2, Func. Count: 22, Neg. LLF: 134.6638432009897
Iteration: 3, Func. Count: 32, Neg. LLF: 134.38556376397594
Iteration: 4, Func. Count: 42, Neg. LLF: 134.39240652605196
Iteration: 5, Func. Count: 53, Neg. LLF: 134.38012704865704
Iteration: 6, Func. Count: 63, Neg. LLF: 134.38012165239127
Iteration: 7, Func. Count: 72, Neg. LLF: 134.38012165691978
Optimization terminated successfully (Exit mode 0)
Current function value: 134.38012165239127
Iterations: 7
Function evaluations: 72
Gradient evaluations: 7
Iteration: 1, Func. Count: 12, Neg. LLF: 192.5627730620015
Iteration: 2, Func. Count: 24, Neg. LLF: 134.6254087797478
Iteration: 3, Func. Count: 35, Neg. LLF: 134.38291160909296
Iteration: 4, Func. Count: 46, Neg. LLF: 134.38861961694045
Iteration: 5, Func. Count: 58, Neg. LLF: 134.38014884600003
Iteration: 6, Func. Count: 69, Neg. LLF: 134.38012168760912
Iteration: 7, Func. Count: 79, Neg. LLF: 134.38012170059983
Optimization terminated successfully (Exit mode 0)
Current function value: 134.38012168760912
Iterations: 7
Function evaluations: 79
Gradient evaluations: 7
Iteration: 1, Func. Count: 9, Neg. LLF: 133.71700549027398
Iteration: 2, Func. Count: 17, Neg. LLF: 145.17631412593263
Iteration: 3, Func. Count: 26, Neg. LLF: 132.05621643046547
Iteration: 4, Func. Count: 34, Neg. LLF: 190.35330900940534
Iteration: 5, Func. Count: 43, Neg. LLF: 281.02299933965236
Iteration: 6, Func. Count: 52, Neg. LLF: 133.23719982498827
Iteration: 7, Func. Count: 61, Neg. LLF: 151.4351515282568
Iteration: 8, Func. Count: 70, Neg. LLF: 131.5058911648665
Iteration: 9, Func. Count: 79, Neg. LLF: 131.0787193935127
Iteration: 10, Func. Count: 87, Neg. LLF: 131.07272336106922
Iteration: 11, Func. Count: 95, Neg. LLF: 131.07898060828998
Iteration: 12, Func. Count: 104, Neg. LLF: 131.07774262539687
Iteration: 13, Func. Count: 113, Neg. LLF: 131.07238821664134
Iteration: 14, Func. Count: 121, Neg. LLF: 131.07238487628499
Iteration: 15, Func. Count: 129, Neg. LLF: 131.07238112169364
Iteration: 16, Func. Count: 137, Neg. LLF: 131.07238067757632
Optimization terminated successfully (Exit mode 0)
Current function value: 131.07238067757632
Iterations: 16
Function evaluations: 137
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 188.07537283814997
Iteration: 2, Func. Count: 20, Neg. LLF: 134.873957860897
Iteration: 3, Func. Count: 29, Neg. LLF: 137.53134649341968
Iteration: 4, Func. Count: 39, Neg. LLF: 136.4911483509802
Iteration: 5, Func. Count: 49, Neg. LLF: 134.71291848462286
Iteration: 6, Func. Count: 59, Neg. LLF: 149.81049671050388
Iteration: 7, Func. Count: 69, Neg. LLF: 133.778041852312
Iteration: 8, Func. Count: 78, Neg. LLF: 133.94866211356901
Iteration: 9, Func. Count: 88, Neg. LLF: 133.15633866311077
Iteration: 10, Func. Count: 97, Neg. LLF: 133.11723903773998
Iteration: 11, Func. Count: 106, Neg. LLF: 133.08036959737066
Iteration: 12, Func. Count: 115, Neg. LLF: 133.07915162769015
Iteration: 13, Func. Count: 124, Neg. LLF: 133.079071965001
Iteration: 14, Func. Count: 133, Neg. LLF: 133.0790588666537
Iteration: 15, Func. Count: 142, Neg. LLF: 133.07905835477848
Optimization terminated successfully (Exit mode 0)
Current function value: 133.07905835477848
Iterations: 15
Function evaluations: 142
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 191.81119520255146
Iteration: 2, Func. Count: 22, Neg. LLF: 134.4845683444797
Iteration: 3, Func. Count: 32, Neg. LLF: 134.40048676604135
Iteration: 4, Func. Count: 42, Neg. LLF: 134.38376758428154
Iteration: 5, Func. Count: 52, Neg. LLF: 134.38165758899675
Iteration: 6, Func. Count: 62, Neg. LLF: 134.38016120747133
Iteration: 7, Func. Count: 72, Neg. LLF: 134.38012675891127
Iteration: 8, Func. Count: 82, Neg. LLF: 134.38012119624523
Iteration: 9, Func. Count: 91, Neg. LLF: 134.38012119624256
Optimization terminated successfully (Exit mode 0)
Current function value: 134.38012119624523
Iterations: 9
Function evaluations: 91
Gradient evaluations: 9
Iteration: 1, Func. Count: 12, Neg. LLF: 191.52504336946865
Iteration: 2, Func. Count: 24, Neg. LLF: 134.71762745014792
Iteration: 3, Func. Count: 35, Neg. LLF: 134.46334031666345
Iteration: 4, Func. Count: 46, Neg. LLF: 134.4297780198117
Iteration: 5, Func. Count: 57, Neg. LLF: 134.38874038878106
Iteration: 6, Func. Count: 68, Neg. LLF: 134.38193448968423
Iteration: 7, Func. Count: 79, Neg. LLF: 134.3801471327151
Iteration: 8, Func. Count: 90, Neg. LLF: 134.38012136479065
Iteration: 9, Func. Count: 100, Neg. LLF: 134.3801213695063
Optimization terminated successfully (Exit mode 0)
Current function value: 134.38012136479065
Iterations: 9
Function evaluations: 100
Gradient evaluations: 9
Iteration: 1, Func. Count: 13, Neg. LLF: 190.53921489509625
Iteration: 2, Func. Count: 26, Neg. LLF: 134.5304765854289
Iteration: 3, Func. Count: 38, Neg. LLF: 134.38800146808376
Iteration: 4, Func. Count: 50, Neg. LLF: 134.4030953301256
Iteration: 5, Func. Count: 63, Neg. LLF: 134.38014415168192
Iteration: 6, Func. Count: 75, Neg. LLF: 134.3801224654803
Iteration: 7, Func. Count: 87, Neg. LLF: 134.38012119771545
Iteration: 8, Func. Count: 98, Neg. LLF: 134.38012121061428
Optimization terminated successfully (Exit mode 0)
Current function value: 134.38012119771545
Iterations: 8
Function evaluations: 98
Gradient evaluations: 8
Iteration: 1, Func. Count: 10, Neg. LLF: 133.23254364225414
Iteration: 2, Func. Count: 19, Neg. LLF: 135.31545586998385
Iteration: 3, Func. Count: 29, Neg. LLF: 131.6302423074933
Iteration: 4, Func. Count: 38, Neg. LLF: 150.84526185176162
Iteration: 5, Func. Count: 48, Neg. LLF: 1589.5579351169383
Iteration: 6, Func. Count: 59, Neg. LLF: 141.26500000339914
Iteration: 7, Func. Count: 69, Neg. LLF: 139.48700463305389
Iteration: 8, Func. Count: 79, Neg. LLF: 131.6071277373977
Iteration: 9, Func. Count: 89, Neg. LLF: 131.29161650241565
Iteration: 10, Func. Count: 99, Neg. LLF: 131.03308755752857
Iteration: 11, Func. Count: 108, Neg. LLF: 131.02276846057123
Iteration: 12, Func. Count: 117, Neg. LLF: 131.02276978257393
Iteration: 13, Func. Count: 127, Neg. LLF: 131.02082426794922
Iteration: 14, Func. Count: 136, Neg. LLF: 131.0205185396817
Iteration: 15, Func. Count: 145, Neg. LLF: 131.02051761372618
Optimization terminated successfully (Exit mode 0)
Current function value: 131.02051761372618
Iterations: 15
Function evaluations: 145
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 147.34450214638343
Iteration: 2, Func. Count: 22, Neg. LLF: 132.33420122343534
Iteration: 3, Func. Count: 32, Neg. LLF: 133.3461251214107
Iteration: 4, Func. Count: 43, Neg. LLF: 131.9395102572007
Iteration: 5, Func. Count: 53, Neg. LLF: 133.09953022198965
Iteration: 6, Func. Count: 64, Neg. LLF: 132.28711369399483
Iteration: 7, Func. Count: 75, Neg. LLF: 131.80139630279902
Iteration: 8, Func. Count: 86, Neg. LLF: 131.40349976479308
Iteration: 9, Func. Count: 97, Neg. LLF: 131.29136355455555
Iteration: 10, Func. Count: 107, Neg. LLF: 131.28355699377929
Iteration: 11, Func. Count: 117, Neg. LLF: 131.28326914477356
Iteration: 12, Func. Count: 127, Neg. LLF: 131.28325766329144
Iteration: 13, Func. Count: 136, Neg. LLF: 131.28325756691802
Optimization terminated successfully (Exit mode 0)
Current function value: 131.28325766329144
Iterations: 13
Function evaluations: 136
Gradient evaluations: 13
Iteration: 1, Func. Count: 12, Neg. LLF: 148.98157540230528
Iteration: 2, Func. Count: 24, Neg. LLF: 131.71498041194147
Iteration: 3, Func. Count: 35, Neg. LLF: 132.67075505120818
Iteration: 4, Func. Count: 48, Neg. LLF: 158.17520661681473
Iteration: 5, Func. Count: 61, Neg. LLF: 130.82317077138876
Iteration: 6, Func. Count: 72, Neg. LLF: 130.7645017489294
Iteration: 7, Func. Count: 83, Neg. LLF: 130.74883472905438
Iteration: 8, Func. Count: 94, Neg. LLF: 130.74411671782994
Iteration: 9, Func. Count: 105, Neg. LLF: 130.74161989929303
Iteration: 10, Func. Count: 116, Neg. LLF: 130.7412876305994
Iteration: 11, Func. Count: 127, Neg. LLF: 130.74127201466538
Iteration: 12, Func. Count: 137, Neg. LLF: 130.74127196418445
Optimization terminated successfully (Exit mode 0)
Current function value: 130.74127201466538
Iterations: 12
Function evaluations: 137
Gradient evaluations: 12
Iteration: 1, Func. Count: 13, Neg. LLF: 191.68683853724914
Iteration: 2, Func. Count: 26, Neg. LLF: 133.51448145274512
Iteration: 3, Func. Count: 38, Neg. LLF: 157.62734898575764
Iteration: 4, Func. Count: 51, Neg. LLF: 179.1389418267256
Iteration: 5, Func. Count: 67, Neg. LLF: 137.9038936839569
Iteration: 6, Func. Count: 81, Neg. LLF: 134.340541771677
Iteration: 7, Func. Count: 94, Neg. LLF: 130.4114503646815
Iteration: 8, Func. Count: 106, Neg. LLF: 130.1838011654379
Iteration: 9, Func. Count: 118, Neg. LLF: 130.1616345939242
Iteration: 10, Func. Count: 130, Neg. LLF: 130.15961859682756
Iteration: 11, Func. Count: 142, Neg. LLF: 130.15929804283854
Iteration: 12, Func. Count: 154, Neg. LLF: 130.1590920062794
Iteration: 13, Func. Count: 166, Neg. LLF: 130.15906940212292
Iteration: 14, Func. Count: 178, Neg. LLF: 130.15906834913707
Iteration: 15, Func. Count: 189, Neg. LLF: 130.15906828178976
Optimization terminated successfully (Exit mode 0)
Current function value: 130.15906834913707
Iterations: 15
Function evaluations: 189
Gradient evaluations: 15
Iteration: 1, Func. Count: 14, Neg. LLF: 190.70764423215132
Iteration: 2, Func. Count: 28, Neg. LLF: 132.92002369007554
Iteration: 3, Func. Count: 41, Neg. LLF: 143.8346779389828
Iteration: 4, Func. Count: 55, Neg. LLF: 175.20676147750171
Iteration: 5, Func. Count: 72, Neg. LLF: 134.87885489416064
Iteration: 6, Func. Count: 86, Neg. LLF: 135.05683860203
Iteration: 7, Func. Count: 100, Neg. LLF: 130.3376166716763
Iteration: 8, Func. Count: 113, Neg. LLF: 130.22856722090975
Iteration: 9, Func. Count: 126, Neg. LLF: 130.16465968145584
Iteration: 10, Func. Count: 139, Neg. LLF: 130.15929020743042
Iteration: 11, Func. Count: 152, Neg. LLF: 130.15907603941832
Iteration: 12, Func. Count: 165, Neg. LLF: 130.15907010138466
Iteration: 13, Func. Count: 178, Neg. LLF: 130.15906851686108
Iteration: 14, Func. Count: 190, Neg. LLF: 130.1590685790891
Optimization terminated successfully (Exit mode 0)
Current function value: 130.15906851686108
Iterations: 14
Function evaluations: 190
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 133.21477499696113
Iteration: 2, Func. Count: 21, Neg. LLF: 136.42086073606558
Iteration: 3, Func. Count: 32, Neg. LLF: 140.43192576661323
Iteration: 4, Func. Count: 44, Neg. LLF: 860.099695686652
Iteration: 5, Func. Count: 55, Neg. LLF: 215.2730309211474
Iteration: 6, Func. Count: 66, Neg. LLF: 2374.8357596733545
Iteration: 7, Func. Count: 77, Neg. LLF: 133.4176492350787
Iteration: 8, Func. Count: 88, Neg. LLF: 132.03127344929575
Iteration: 9, Func. Count: 99, Neg. LLF: 131.91640940021136
Iteration: 10, Func. Count: 110, Neg. LLF: 131.23348537100404
Iteration: 11, Func. Count: 121, Neg. LLF: 131.05720412064898
Iteration: 12, Func. Count: 132, Neg. LLF: 130.99342079768712
Iteration: 13, Func. Count: 142, Neg. LLF: 130.97701851943302
Iteration: 14, Func. Count: 152, Neg. LLF: 130.99912074825585
Iteration: 15, Func. Count: 163, Neg. LLF: 131.02084436881592
Iteration: 16, Func. Count: 174, Neg. LLF: 130.97423434782218
Iteration: 17, Func. Count: 184, Neg. LLF: 130.97422757642045
Iteration: 18, Func. Count: 194, Neg. LLF: 130.97422606166452
Iteration: 19, Func. Count: 203, Neg. LLF: 130.9742260616407
Optimization terminated successfully (Exit mode 0)
Current function value: 130.97422606166452
Iterations: 19
Function evaluations: 203
Gradient evaluations: 19
Iteration: 1, Func. Count: 12, Neg. LLF: 143.54076708352986
Iteration: 2, Func. Count: 24, Neg. LLF: 232.43709323330893
Iteration: 3, Func. Count: 36, Neg. LLF: 131.54286643270854
Iteration: 4, Func. Count: 47, Neg. LLF: 130.79430743847755
Iteration: 5, Func. Count: 58, Neg. LLF: 130.43185278450466
Iteration: 6, Func. Count: 69, Neg. LLF: 130.07242368843666
Iteration: 7, Func. Count: 80, Neg. LLF: 129.83220552761978
Iteration: 8, Func. Count: 91, Neg. LLF: 129.8342106659024
Iteration: 9, Func. Count: 103, Neg. LLF: 129.81593809280497
Iteration: 10, Func. Count: 114, Neg. LLF: 129.81560673057857
Iteration: 11, Func. Count: 125, Neg. LLF: 129.81560605471793
Optimization terminated successfully (Exit mode 0)
Current function value: 129.81560605471793
Iterations: 11
Function evaluations: 125
Gradient evaluations: 11
Iteration: 1, Func. Count: 13, Neg. LLF: 148.99545945413644
Iteration: 2, Func. Count: 26, Neg. LLF: 131.28449822222785
Iteration: 3, Func. Count: 38, Neg. LLF: 135.7115030043123
Iteration: 4, Func. Count: 51, Neg. LLF: 132.37649594255691
Iteration: 5, Func. Count: 65, Neg. LLF: 130.8151225818571
Iteration: 6, Func. Count: 77, Neg. LLF: 130.77348367864207
Iteration: 7, Func. Count: 89, Neg. LLF: 130.74807435308497
Iteration: 8, Func. Count: 101, Neg. LLF: 130.7416331724998
Iteration: 9, Func. Count: 113, Neg. LLF: 130.74129250538007
Iteration: 10, Func. Count: 125, Neg. LLF: 130.7412720462901
Iteration: 11, Func. Count: 136, Neg. LLF: 130.74127199583668
Optimization terminated successfully (Exit mode 0)
Current function value: 130.7412720462901
Iterations: 11
Function evaluations: 136
Gradient evaluations: 11
Iteration: 1, Func. Count: 14, Neg. LLF: 191.6728887716641
Iteration: 2, Func. Count: 28, Neg. LLF: 134.04648437013324
Iteration: 3, Func. Count: 41, Neg. LLF: 139.92977502291384
Iteration: 4, Func. Count: 55, Neg. LLF: 145.71642532811964
Iteration: 5, Func. Count: 69, Neg. LLF: 140.31019951941508
Iteration: 6, Func. Count: 83, Neg. LLF: 130.29477853703003
Iteration: 7, Func. Count: 96, Neg. LLF: 130.20109646758942
Iteration: 8, Func. Count: 109, Neg. LLF: 130.16962291530237
Iteration: 9, Func. Count: 122, Neg. LLF: 130.15930730343197
Iteration: 10, Func. Count: 135, Neg. LLF: 130.15906983516402
Iteration: 11, Func. Count: 148, Neg. LLF: 130.15906835037813
Iteration: 12, Func. Count: 160, Neg. LLF: 130.159068283039
Optimization terminated successfully (Exit mode 0)
Current function value: 130.15906835037813
Iterations: 12
Function evaluations: 160
Gradient evaluations: 12
Iteration: 1, Func. Count: 15, Neg. LLF: 190.7495357712576
Iteration: 2, Func. Count: 30, Neg. LLF: 132.95310634663915
Iteration: 3, Func. Count: 44, Neg. LLF: 142.5720980197563
Iteration: 4, Func. Count: 59, Neg. LLF: 187.85617672506075
Iteration: 5, Func. Count: 76, Neg. LLF: 136.05984834759153
Iteration: 6, Func. Count: 91, Neg. LLF: 135.03305300264185
Iteration: 7, Func. Count: 106, Neg. LLF: 130.39546814961597
Iteration: 8, Func. Count: 120, Neg. LLF: 130.20397446554657
Iteration: 9, Func. Count: 134, Neg. LLF: 130.18415342395434
Iteration: 10, Func. Count: 148, Neg. LLF: 130.15959272682585
Iteration: 11, Func. Count: 162, Neg. LLF: 130.159126071438
Iteration: 12, Func. Count: 176, Neg. LLF: 130.1590697907072
Iteration: 13, Func. Count: 190, Neg. LLF: 130.15906835468013
Iteration: 14, Func. Count: 203, Neg. LLF: 130.1590684168572
Optimization terminated successfully (Exit mode 0)
Current function value: 130.15906835468013
Iterations: 14
Function evaluations: 203
Gradient evaluations: 14
Iteration: 1, Func. Count: 12, Neg. LLF: 132.6305512267007
Iteration: 2, Func. Count: 23, Neg. LLF: 151.40596872034217
Iteration: 3, Func. Count: 35, Neg. LLF: 136.67725667724872
Iteration: 4, Func. Count: 49, Neg. LLF: 128.9318737120522
Iteration: 5, Func. Count: 60, Neg. LLF: 130.5115724706061
Iteration: 6, Func. Count: 74, Neg. LLF: 129.75803905122186
Iteration: 7, Func. Count: 86, Neg. LLF: 128.93742137993777
Iteration: 8, Func. Count: 98, Neg. LLF: 128.83577595883042
Iteration: 9, Func. Count: 110, Neg. LLF: 128.95634213024
Iteration: 10, Func. Count: 122, Neg. LLF: 128.6763362489482
Iteration: 11, Func. Count: 133, Neg. LLF: 128.67170559865679
Iteration: 12, Func. Count: 144, Neg. LLF: 128.67079481927746
Iteration: 13, Func. Count: 155, Neg. LLF: 128.67077825595183
Iteration: 14, Func. Count: 166, Neg. LLF: 128.67077709965488
Iteration: 15, Func. Count: 176, Neg. LLF: 128.67077737777612
Optimization terminated successfully (Exit mode 0)
Current function value: 128.67077709965488
Iterations: 15
Function evaluations: 176
Gradient evaluations: 15
Iteration: 1, Func. Count: 13, Neg. LLF: 132.5553564754314
Iteration: 2, Func. Count: 25, Neg. LLF: 138.4429279967039
Iteration: 3, Func. Count: 39, Neg. LLF: 170.3420394460459
Iteration: 4, Func. Count: 52, Neg. LLF: 135.21682763898073
Iteration: 5, Func. Count: 65, Neg. LLF: 127.02049780364042
Iteration: 6, Func. Count: 77, Neg. LLF: 126.03746912341713
Iteration: 7, Func. Count: 89, Neg. LLF: 125.80959291266598
Iteration: 8, Func. Count: 101, Neg. LLF: 125.63079025657768
Iteration: 9, Func. Count: 113, Neg. LLF: 125.6475305817403
Iteration: 10, Func. Count: 126, Neg. LLF: 125.6129481924745
Iteration: 11, Func. Count: 138, Neg. LLF: 125.6129179479989
Iteration: 12, Func. Count: 150, Neg. LLF: 125.61291107309097
Iteration: 13, Func. Count: 161, Neg. LLF: 125.61291100647067
Optimization terminated successfully (Exit mode 0)
Current function value: 125.61291107309097
Iterations: 13
Function evaluations: 161
Gradient evaluations: 13
Iteration: 1, Func. Count: 14, Neg. LLF: 133.79290784004698
Iteration: 2, Func. Count: 28, Neg. LLF: 223.78031394868873
Iteration: 3, Func. Count: 42, Neg. LLF: 127.83021188317014
Iteration: 4, Func. Count: 55, Neg. LLF: 127.08557269925402
Iteration: 5, Func. Count: 68, Neg. LLF: 160.6692660518993
Iteration: 6, Func. Count: 82, Neg. LLF: 126.34543412052436
Iteration: 7, Func. Count: 95, Neg. LLF: 126.1124217246391
Iteration: 8, Func. Count: 108, Neg. LLF: 125.66556777231564
Iteration: 9, Func. Count: 121, Neg. LLF: 125.94462894761692
Iteration: 10, Func. Count: 135, Neg. LLF: 125.61268463540088
Iteration: 11, Func. Count: 148, Neg. LLF: 125.61249645362544
Iteration: 12, Func. Count: 162, Neg. LLF: 125.61175602813887
Iteration: 13, Func. Count: 175, Neg. LLF: 125.61174826943214
Iteration: 14, Func. Count: 187, Neg. LLF: 125.61174820343182
Optimization terminated successfully (Exit mode 0)
Current function value: 125.61174826943214
Iterations: 14
Function evaluations: 187
Gradient evaluations: 14
Iteration: 1, Func. Count: 15, Neg. LLF: 135.3281496921014
Iteration: 2, Func. Count: 30, Neg. LLF: 135.51649339005783
Iteration: 3, Func. Count: 45, Neg. LLF: 127.69288191093693
Iteration: 4, Func. Count: 59, Neg. LLF: 127.35926855777254
Iteration: 5, Func. Count: 74, Neg. LLF: 157.56298300212143
Iteration: 6, Func. Count: 89, Neg. LLF: 127.23851623890833
Iteration: 7, Func. Count: 104, Neg. LLF: 125.67280959660003
Iteration: 8, Func. Count: 119, Neg. LLF: 125.61347284822075
Iteration: 9, Func. Count: 133, Neg. LLF: 125.62903947993051
Iteration: 10, Func. Count: 148, Neg. LLF: 125.6120631907659
Iteration: 11, Func. Count: 162, Neg. LLF: 125.61181803924315
Iteration: 12, Func. Count: 176, Neg. LLF: 125.6117558398879
Iteration: 13, Func. Count: 190, Neg. LLF: 125.61174818546873
Iteration: 14, Func. Count: 203, Neg. LLF: 125.6117481221987
Optimization terminated successfully (Exit mode 0)
Current function value: 125.61174818546873
Iterations: 14
Function evaluations: 203
Gradient evaluations: 14
Iteration: 1, Func. Count: 16, Neg. LLF: 135.22150262765874
Iteration: 2, Func. Count: 32, Neg. LLF: 132.11716744006029
Iteration: 3, Func. Count: 48, Neg. LLF: 127.9089337583201
Iteration: 4, Func. Count: 63, Neg. LLF: 126.1326755892611
Iteration: 5, Func. Count: 78, Neg. LLF: 147.01480315126048
Iteration: 6, Func. Count: 94, Neg. LLF: 125.76412969768916
Iteration: 7, Func. Count: 109, Neg. LLF: 126.3984496389354
Iteration: 8, Func. Count: 125, Neg. LLF: 125.5424787204177
Iteration: 9, Func. Count: 140, Neg. LLF: 125.49937596243105
Iteration: 10, Func. Count: 155, Neg. LLF: 125.49280968449902
Iteration: 11, Func. Count: 170, Neg. LLF: 125.49133194773094
Iteration: 12, Func. Count: 185, Neg. LLF: 125.49122297227764
Iteration: 13, Func. Count: 200, Neg. LLF: 125.49122161944395
Iteration: 14, Func. Count: 214, Neg. LLF: 125.49122165266837
Optimization terminated successfully (Exit mode 0)
Current function value: 125.49122161944395
Iterations: 14
Function evaluations: 214
Gradient evaluations: 14
Iteration: 1, Func. Count: 13, Neg. LLF: 132.5553564754314
Iteration: 2, Func. Count: 25, Neg. LLF: 138.4429279967039
Iteration: 3, Func. Count: 39, Neg. LLF: 170.3420394460459
Iteration: 4, Func. Count: 52, Neg. LLF: 135.21682763898073
Iteration: 5, Func. Count: 65, Neg. LLF: 127.02049780364042
Iteration: 6, Func. Count: 77, Neg. LLF: 126.03746912341713
Iteration: 7, Func. Count: 89, Neg. LLF: 125.80959291266598
Iteration: 8, Func. Count: 101, Neg. LLF: 125.63079025657768
Iteration: 9, Func. Count: 113, Neg. LLF: 125.6475305817403
Iteration: 10, Func. Count: 126, Neg. LLF: 125.6129481924745
Iteration: 11, Func. Count: 138, Neg. LLF: 125.6129179479989
Iteration: 12, Func. Count: 150, Neg. LLF: 125.61291107309097
Iteration: 13, Func. Count: 161, Neg. LLF: 125.61291100647067
Optimization terminated successfully (Exit mode 0)
Current function value: 125.61291107309097
Iterations: 13
Function evaluations: 161
Gradient evaluations: 13
Iteration: 1, Func. Count: 5, Neg. LLF: 131.49255012452127
Iteration: 2, Func. Count: 10, Neg. LLF: 137.63508863768706
Iteration: 3, Func. Count: 15, Neg. LLF: 126.57106433586031
Iteration: 4, Func. Count: 19, Neg. LLF: 127.07921614724349
Iteration: 5, Func. Count: 25, Neg. LLF: 126.52112644612896
Iteration: 6, Func. Count: 29, Neg. LLF: 126.44221520506123
Iteration: 7, Func. Count: 33, Neg. LLF: 126.43692378016955
Iteration: 8, Func. Count: 37, Neg. LLF: 126.43337749667519
Iteration: 9, Func. Count: 41, Neg. LLF: 126.43323619244315
Iteration: 10, Func. Count: 45, Neg. LLF: 126.43323267399734
Iteration: 11, Func. Count: 48, Neg. LLF: 126.43323267402806
Optimization terminated successfully (Exit mode 0)
Current function value: 126.43323267399734
Iterations: 11
Function evaluations: 48
Gradient evaluations: 11
Iteration: 1, Func. Count: 6, Neg. LLF: 143.5730375082005
Iteration: 2, Func. Count: 13, Neg. LLF: 126.39358027332403
Iteration: 3, Func. Count: 19, Neg. LLF: 126.37839895704052
Iteration: 4, Func. Count: 25, Neg. LLF: 126.37622321623407
Iteration: 5, Func. Count: 30, Neg. LLF: 126.37613581946927
Iteration: 6, Func. Count: 35, Neg. LLF: 126.37567652226991
Iteration: 7, Func. Count: 40, Neg. LLF: 126.37340881978226
Iteration: 8, Func. Count: 45, Neg. LLF: 126.35860257890361
Iteration: 9, Func. Count: 50, Neg. LLF: 126.34464422016148
Iteration: 10, Func. Count: 55, Neg. LLF: 126.30823252214364
Iteration: 11, Func. Count: 60, Neg. LLF: 126.4592107069061
Iteration: 12, Func. Count: 67, Neg. LLF: 126.45741344887485
Iteration: 13, Func. Count: 76, Neg. LLF: 126.2603185987619
Iteration: 14, Func. Count: 81, Neg. LLF: 126.25942588221378
Iteration: 15, Func. Count: 86, Neg. LLF: 126.25926919934292
Iteration: 16, Func. Count: 91, Neg. LLF: 126.25926558847083
Iteration: 17, Func. Count: 95, Neg. LLF: 126.25926558742582
Optimization terminated successfully (Exit mode 0)
Current function value: 126.25926558847083
Iterations: 17
Function evaluations: 95
Gradient evaluations: 17
Iteration: 1, Func. Count: 7, Neg. LLF: 158.2636733700764
Iteration: 2, Func. Count: 15, Neg. LLF: 126.37810269074537
Iteration: 3, Func. Count: 21, Neg. LLF: 126.38666897285408
Iteration: 4, Func. Count: 28, Neg. LLF: 126.37652469915844
Iteration: 5, Func. Count: 34, Neg. LLF: 126.37342157651923
Iteration: 6, Func. Count: 40, Neg. LLF: 126.3726354181334
Iteration: 7, Func. Count: 46, Neg. LLF: 126.37203528835325
Iteration: 8, Func. Count: 52, Neg. LLF: 126.3682821991045
Iteration: 9, Func. Count: 58, Neg. LLF: 126.34209186002376
Iteration: 10, Func. Count: 64, Neg. LLF: 126.30725905346151
Iteration: 11, Func. Count: 70, Neg. LLF: 126.33487977303251
Iteration: 12, Func. Count: 77, Neg. LLF: 126.41749963100983
Iteration: 13, Func. Count: 85, Neg. LLF: 126.27197034512768
Iteration: 14, Func. Count: 91, Neg. LLF: 126.27367745032616
Iteration: 15, Func. Count: 98, Neg. LLF: 126.26571704316471
Iteration: 16, Func. Count: 104, Neg. LLF: 126.26389463954004
Iteration: 17, Func. Count: 110, Neg. LLF: 126.26127090800999
Iteration: 18, Func. Count: 116, Neg. LLF: 126.25938044528837
Iteration: 19, Func. Count: 122, Neg. LLF: 126.25937921565219
Iteration: 20, Func. Count: 129, Neg. LLF: 126.25926542910683
Iteration: 21, Func. Count: 134, Neg. LLF: 126.25926542996568
Optimization terminated successfully (Exit mode 0)
Current function value: 126.25926542910683
Iterations: 21
Function evaluations: 134
Gradient evaluations: 21
Iteration: 1, Func. Count: 8, Neg. LLF: 154.05613532391277
Iteration: 2, Func. Count: 17, Neg. LLF: 126.37496602304307
Iteration: 3, Func. Count: 24, Neg. LLF: 126.3750486278388
Iteration: 4, Func. Count: 32, Neg. LLF: 126.36928825476636
Iteration: 5, Func. Count: 39, Neg. LLF: 126.36283189225662
Iteration: 6, Func. Count: 46, Neg. LLF: 126.3605477959336
Iteration: 7, Func. Count: 53, Neg. LLF: 126.35897229922094
Iteration: 8, Func. Count: 60, Neg. LLF: 126.35527389505239
Iteration: 9, Func. Count: 67, Neg. LLF: 126.3413326252405
Iteration: 10, Func. Count: 74, Neg. LLF: 126.42183433077102
Iteration: 11, Func. Count: 82, Neg. LLF: 126.38248009727964
Iteration: 12, Func. Count: 90, Neg. LLF: 128.9525454952462
Iteration: 13, Func. Count: 98, Neg. LLF: 126.35885642829761
Iteration: 14, Func. Count: 106, Neg. LLF: 126.31737324434054
Iteration: 15, Func. Count: 114, Neg. LLF: 126.29688629368542
Iteration: 16, Func. Count: 122, Neg. LLF: 126.28248170447876
Iteration: 17, Func. Count: 130, Neg. LLF: 126.26999157787714
Iteration: 18, Func. Count: 137, Neg. LLF: 126.26978636307194
Iteration: 19, Func. Count: 144, Neg. LLF: 126.26828767296489
Iteration: 20, Func. Count: 151, Neg. LLF: 126.26471198458387
Iteration: 21, Func. Count: 158, Neg. LLF: 126.26394581707619
Iteration: 22, Func. Count: 165, Neg. LLF: 126.26380022577682
Iteration: 23, Func. Count: 172, Neg. LLF: 126.26379825387122
Iteration: 24, Func. Count: 179, Neg. LLF: 126.26379788044046
Optimization terminated successfully (Exit mode 0)
Current function value: 126.26379788044046
Iterations: 24
Function evaluations: 179
Gradient evaluations: 24
Iteration: 1, Func. Count: 9, Neg. LLF: 150.98530068456927
Iteration: 2, Func. Count: 19, Neg. LLF: 126.37542925891083
Iteration: 3, Func. Count: 27, Neg. LLF: 126.38129708697873
Iteration: 4, Func. Count: 36, Neg. LLF: 126.37222114229303
Iteration: 5, Func. Count: 44, Neg. LLF: 126.36197685271645
Iteration: 6, Func. Count: 52, Neg. LLF: 126.35759371249276
Iteration: 7, Func. Count: 60, Neg. LLF: 126.35604930673857
Iteration: 8, Func. Count: 68, Neg. LLF: 126.35171968282643
Iteration: 9, Func. Count: 76, Neg. LLF: 126.3219235221232
Iteration: 10, Func. Count: 84, Neg. LLF: 126.37667567172491
Iteration: 11, Func. Count: 93, Neg. LLF: 126.30441884516753
Iteration: 12, Func. Count: 102, Neg. LLF: 126.27695732197844
Iteration: 13, Func. Count: 111, Neg. LLF: 126.27347114394249
Iteration: 14, Func. Count: 119, Neg. LLF: 126.2729777415073
Iteration: 15, Func. Count: 127, Neg. LLF: 126.27204450369037
Iteration: 16, Func. Count: 135, Neg. LLF: 126.27188053386865
Iteration: 17, Func. Count: 143, Neg. LLF: 126.27183975278466
Iteration: 18, Func. Count: 151, Neg. LLF: 126.27183582252069
Iteration: 19, Func. Count: 159, Neg. LLF: 126.27183109323524
Iteration: 20, Func. Count: 167, Neg. LLF: 126.27170249652592
Iteration: 21, Func. Count: 175, Neg. LLF: 126.27017924612468
Iteration: 22, Func. Count: 183, Neg. LLF: 126.26960818158315
Iteration: 23, Func. Count: 191, Neg. LLF: 126.26894643463291
Iteration: 24, Func. Count: 199, Neg. LLF: 126.26827466594968
Iteration: 25, Func. Count: 207, Neg. LLF: 126.26738899676769
Iteration: 26, Func. Count: 215, Neg. LLF: 126.25960508232897
Iteration: 27, Func. Count: 223, Neg. LLF: 127.27204400913858
Optimization terminated successfully (Exit mode 0)
Current function value: 126.2596049874187
Iterations: 28
Function evaluations: 227
Gradient evaluations: 27
Iteration: 1, Func. Count: 6, Neg. LLF: 136.0064810622418
Iteration: 2, Func. Count: 12, Neg. LLF: 140.0729722050788
Iteration: 3, Func. Count: 18, Neg. LLF: 126.50251863644446
Iteration: 4, Func. Count: 23, Neg. LLF: 127.01341254134316
Iteration: 5, Func. Count: 30, Neg. LLF: 129.829069880025
Iteration: 6, Func. Count: 38, Neg. LLF: 126.4224193439912
Iteration: 7, Func. Count: 43, Neg. LLF: 126.40888443367521
Iteration: 8, Func. Count: 48, Neg. LLF: 126.40600056258691
Iteration: 9, Func. Count: 53, Neg. LLF: 126.40447750604322
Iteration: 10, Func. Count: 58, Neg. LLF: 126.4043607615869
Iteration: 11, Func. Count: 63, Neg. LLF: 126.40435957993458
Iteration: 12, Func. Count: 67, Neg. LLF: 126.40435957995702
Optimization terminated successfully (Exit mode 0)
Current function value: 126.40435957993458
Iterations: 12
Function evaluations: 67
Gradient evaluations: 12
Iteration: 1, Func. Count: 7, Neg. LLF: 134.22557136764087
Iteration: 2, Func. Count: 16, Neg. LLF: 126.42579797873559
Iteration: 3, Func. Count: 23, Neg. LLF: 126.37693568194739
Iteration: 4, Func. Count: 30, Neg. LLF: 126.37620855318964
Iteration: 5, Func. Count: 37, Neg. LLF: 126.37507885105609
Iteration: 6, Func. Count: 43, Neg. LLF: 126.37505783750537
Optimization terminated successfully (Exit mode 0)
Current function value: 126.37505783757588
Iterations: 6
Function evaluations: 43
Gradient evaluations: 6
Iteration: 1, Func. Count: 8, Neg. LLF: 158.40779154898235
Iteration: 2, Func. Count: 17, Neg. LLF: 126.3790066470389
Iteration: 3, Func. Count: 24, Neg. LLF: 126.38338137272626
Iteration: 4, Func. Count: 32, Neg. LLF: 126.37653377546584
Iteration: 5, Func. Count: 39, Neg. LLF: 126.37334652076552
Iteration: 6, Func. Count: 46, Neg. LLF: 126.37292534158155
Iteration: 7, Func. Count: 53, Neg. LLF: 126.37110855961728
Iteration: 8, Func. Count: 60, Neg. LLF: 126.36442476529163
Iteration: 9, Func. Count: 67, Neg. LLF: 126.98926135002854
Iteration: 10, Func. Count: 75, Neg. LLF: 126.67818144505983
Iteration: 11, Func. Count: 83, Neg. LLF: 126.59204925778221
Iteration: 12, Func. Count: 91, Neg. LLF: 126.5679343693087
Iteration: 13, Func. Count: 99, Neg. LLF: 132.37823884277523
Iteration: 14, Func. Count: 109, Neg. LLF: 143.43289881398624
Iteration: 15, Func. Count: 119, Neg. LLF: 126.37110209855638
Iteration: 16, Func. Count: 127, Neg. LLF: 126.33464327205111
Iteration: 17, Func. Count: 134, Neg. LLF: 126.32596178133083
Iteration: 18, Func. Count: 141, Neg. LLF: 126.27109456329597
Iteration: 19, Func. Count: 148, Neg. LLF: 126.38988965882581
Iteration: 20, Func. Count: 156, Neg. LLF: 126.30712494070056
Iteration: 21, Func. Count: 164, Neg. LLF: 126.27936422500524
Iteration: 22, Func. Count: 172, Neg. LLF: 126.26463113771955
Iteration: 23, Func. Count: 179, Neg. LLF: 126.26455318204412
Iteration: 24, Func. Count: 186, Neg. LLF: 126.2640434289836
Iteration: 25, Func. Count: 193, Neg. LLF: 126.26280727835947
Iteration: 26, Func. Count: 200, Neg. LLF: 126.26029494818593
Iteration: 27, Func. Count: 207, Neg. LLF: 126.25937060693607
Iteration: 28, Func. Count: 214, Neg. LLF: 126.2592786319895
Iteration: 29, Func. Count: 221, Neg. LLF: 126.25928109010984
Iteration: 30, Func. Count: 229, Neg. LLF: 126.259265562872
Iteration: 31, Func. Count: 235, Neg. LLF: 126.2592655638549
Optimization terminated successfully (Exit mode 0)
Current function value: 126.259265562872
Iterations: 32
Function evaluations: 235
Gradient evaluations: 31
Iteration: 1, Func. Count: 9, Neg. LLF: 153.93363956164734
Iteration: 2, Func. Count: 19, Neg. LLF: 126.37608962118811
Iteration: 3, Func. Count: 27, Neg. LLF: 126.37923123344179
Iteration: 4, Func. Count: 36, Neg. LLF: 126.37143177335378
Iteration: 5, Func. Count: 44, Neg. LLF: 126.36433602422822
Iteration: 6, Func. Count: 52, Neg. LLF: 126.36358196670275
Iteration: 7, Func. Count: 60, Neg. LLF: 126.35920546920157
Iteration: 8, Func. Count: 68, Neg. LLF: 126.35230282892402
Iteration: 9, Func. Count: 76, Neg. LLF: 126.3493546446289
Iteration: 10, Func. Count: 84, Neg. LLF: 126.32914894420814
Iteration: 11, Func. Count: 92, Neg. LLF: 126.27060299765937
Iteration: 12, Func. Count: 100, Neg. LLF: 126.28770889098222
Iteration: 13, Func. Count: 109, Neg. LLF: 126.26215924632562
Iteration: 14, Func. Count: 118, Neg. LLF: 126.25599476952789
Iteration: 15, Func. Count: 126, Neg. LLF: 126.25584704299109
Iteration: 16, Func. Count: 134, Neg. LLF: 126.25584639788198
Optimization terminated successfully (Exit mode 0)
Current function value: 126.25584639788198
Iterations: 16
Function evaluations: 134
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 150.59103905386274
Iteration: 2, Func. Count: 21, Neg. LLF: 126.37728870475425
Iteration: 3, Func. Count: 30, Neg. LLF: 126.37818143600259
Iteration: 4, Func. Count: 40, Neg. LLF: 126.37134741029372
Iteration: 5, Func. Count: 49, Neg. LLF: 126.3629328243023
Iteration: 6, Func. Count: 58, Neg. LLF: 126.36002748829884
Iteration: 7, Func. Count: 67, Neg. LLF: 126.35616973812108
Iteration: 8, Func. Count: 76, Neg. LLF: 126.35491863294618
Iteration: 9, Func. Count: 85, Neg. LLF: 126.34803425055325
Iteration: 10, Func. Count: 94, Neg. LLF: 126.29756456478522
Iteration: 11, Func. Count: 103, Neg. LLF: 126.32329874061
Iteration: 12, Func. Count: 113, Neg. LLF: 126.28407845095525
Iteration: 13, Func. Count: 123, Neg. LLF: 126.28057346535962
Iteration: 14, Func. Count: 133, Neg. LLF: 126.27375396062065
Iteration: 15, Func. Count: 142, Neg. LLF: 126.2724814340952
Iteration: 16, Func. Count: 151, Neg. LLF: 126.27206161104063
Iteration: 17, Func. Count: 160, Neg. LLF: 126.27184765885819
Iteration: 18, Func. Count: 169, Neg. LLF: 126.27183873741559
Iteration: 19, Func. Count: 178, Neg. LLF: 126.27183417799438
Iteration: 20, Func. Count: 187, Neg. LLF: 126.27143482855173
Iteration: 21, Func. Count: 196, Neg. LLF: 126.27178538096572
Iteration: 22, Func. Count: 206, Neg. LLF: 126.27111250718886
Iteration: 23, Func. Count: 215, Neg. LLF: 126.27092782766701
Iteration: 24, Func. Count: 224, Neg. LLF: 126.27026481690635
Iteration: 25, Func. Count: 233, Neg. LLF: 126.26933113131558
Iteration: 26, Func. Count: 242, Neg. LLF: 126.26852510192941
Iteration: 27, Func. Count: 251, Neg. LLF: 126.26255104319388
Iteration: 28, Func. Count: 260, Neg. LLF: 126.27024341056965
Iteration: 29, Func. Count: 270, Neg. LLF: 126.26067516934907
Iteration: 30, Func. Count: 279, Neg. LLF: 126.25972963450498
Iteration: 31, Func. Count: 288, Neg. LLF: 126.2593901592001
Iteration: 32, Func. Count: 297, Neg. LLF: 126.25927001472877
Iteration: 33, Func. Count: 306, Neg. LLF: 126.25926580920195
Iteration: 34, Func. Count: 314, Neg. LLF: 126.259265809033
Optimization terminated successfully (Exit mode 0)
Current function value: 126.25926580920195
Iterations: 34
Function evaluations: 314
Gradient evaluations: 34
Iteration: 1, Func. Count: 7, Neg. LLF: 137.20915827849655
Iteration: 2, Func. Count: 14, Neg. LLF: 140.5988072516381
Iteration: 3, Func. Count: 21, Neg. LLF: 126.83421729056991
Iteration: 4, Func. Count: 28, Neg. LLF: 126.8423585739675
Iteration: 5, Func. Count: 35, Neg. LLF: 127.3160468941865
Iteration: 6, Func. Count: 42, Neg. LLF: 126.3983741653951
Iteration: 7, Func. Count: 49, Neg. LLF: 126.2623083210777
Iteration: 8, Func. Count: 56, Neg. LLF: 126.21416135092632
Iteration: 9, Func. Count: 63, Neg. LLF: 126.16895283598664
Iteration: 10, Func. Count: 69, Neg. LLF: 126.16839859953686
Iteration: 11, Func. Count: 75, Neg. LLF: 126.16834797296637
Iteration: 12, Func. Count: 81, Neg. LLF: 126.16832782607189
Iteration: 13, Func. Count: 86, Neg. LLF: 126.16832782605422
Optimization terminated successfully (Exit mode 0)
Current function value: 126.16832782607189
Iterations: 13
Function evaluations: 86
Gradient evaluations: 13
Iteration: 1, Func. Count: 8, Neg. LLF: 131.2899667563169
Iteration: 2, Func. Count: 18, Neg. LLF: 126.47711470521517
Iteration: 3, Func. Count: 26, Neg. LLF: 126.37696456525515
Iteration: 4, Func. Count: 33, Neg. LLF: 126.38263232724711
Iteration: 5, Func. Count: 41, Neg. LLF: 126.38239875991644
Iteration: 6, Func. Count: 49, Neg. LLF: 126.37699077667367
Iteration: 7, Func. Count: 57, Neg. LLF: 126.37506078810738
Optimization terminated successfully (Exit mode 0)
Current function value: 126.37506078810738
Iterations: 7
Function evaluations: 57
Gradient evaluations: 7
Iteration: 1, Func. Count: 9, Neg. LLF: 158.32036265374134
Iteration: 2, Func. Count: 19, Neg. LLF: 126.37780411884476
Iteration: 3, Func. Count: 27, Neg. LLF: 126.3765058690986
Iteration: 4, Func. Count: 35, Neg. LLF: 126.37474034255342
Iteration: 5, Func. Count: 43, Neg. LLF: 126.37293510514516
Iteration: 6, Func. Count: 51, Neg. LLF: 126.37250648907148
Iteration: 7, Func. Count: 59, Neg. LLF: 126.3694260076785
Iteration: 8, Func. Count: 67, Neg. LLF: 126.34588696071772
Iteration: 9, Func. Count: 75, Neg. LLF: 126.28832890373772
Iteration: 10, Func. Count: 83, Neg. LLF: 126.32598778849658
Iteration: 11, Func. Count: 92, Neg. LLF: 126.26765618355829
Iteration: 12, Func. Count: 100, Neg. LLF: 126.313117664517
Iteration: 13, Func. Count: 109, Neg. LLF: 126.26407673287267
Iteration: 14, Func. Count: 117, Neg. LLF: 126.26380028192567
Iteration: 15, Func. Count: 125, Neg. LLF: 126.26379680278643
Iteration: 16, Func. Count: 132, Neg. LLF: 126.26379680290164
Optimization terminated successfully (Exit mode 0)
Current function value: 126.26379680278643
Iterations: 16
Function evaluations: 132
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 153.5478325405475
Iteration: 2, Func. Count: 21, Neg. LLF: 126.37375856535456
Iteration: 3, Func. Count: 30, Neg. LLF: 126.37188917793274
Iteration: 4, Func. Count: 39, Neg. LLF: 126.36431557448844
Iteration: 5, Func. Count: 48, Neg. LLF: 126.36282900331582
Iteration: 6, Func. Count: 57, Neg. LLF: 126.36047906901236
Iteration: 7, Func. Count: 66, Neg. LLF: 126.35542137884106
Iteration: 8, Func. Count: 75, Neg. LLF: 126.35190370918247
Iteration: 9, Func. Count: 84, Neg. LLF: 126.3401906067246
Iteration: 10, Func. Count: 93, Neg. LLF: 126.64276462367597
Iteration: 11, Func. Count: 103, Neg. LLF: 126.64632804525958
Iteration: 12, Func. Count: 113, Neg. LLF: 126.57727640054195
Iteration: 13, Func. Count: 123, Neg. LLF: 126.51175515362009
Iteration: 14, Func. Count: 133, Neg. LLF: 126.35844163244352
Iteration: 15, Func. Count: 143, Neg. LLF: 126.29504243795712
Iteration: 16, Func. Count: 152, Neg. LLF: 126.28433635934739
Iteration: 17, Func. Count: 161, Neg. LLF: 126.28050366980611
Iteration: 18, Func. Count: 171, Neg. LLF: 126.25762213308076
Iteration: 19, Func. Count: 180, Neg. LLF: 126.25653669924642
Iteration: 20, Func. Count: 189, Neg. LLF: 126.25588558646363
Iteration: 21, Func. Count: 198, Neg. LLF: 126.25584657366593
Iteration: 22, Func. Count: 206, Neg. LLF: 126.25584657341192
Optimization terminated successfully (Exit mode 0)
Current function value: 126.25584657366593
Iterations: 22
Function evaluations: 206
Gradient evaluations: 22
Iteration: 1, Func. Count: 11, Neg. LLF: 150.15707706177236
Iteration: 2, Func. Count: 23, Neg. LLF: 126.37364111526847
Iteration: 3, Func. Count: 33, Neg. LLF: 126.3741129647266
Iteration: 4, Func. Count: 44, Neg. LLF: 126.36950745612303
Iteration: 5, Func. Count: 54, Neg. LLF: 126.36291477720826
Iteration: 6, Func. Count: 64, Neg. LLF: 126.35904897063956
Iteration: 7, Func. Count: 74, Neg. LLF: 126.35505304647485
Iteration: 8, Func. Count: 84, Neg. LLF: 126.35317232035183
Iteration: 9, Func. Count: 94, Neg. LLF: 126.34241357278115
Iteration: 10, Func. Count: 104, Neg. LLF: 126.27843071289486
Iteration: 11, Func. Count: 114, Neg. LLF: 126.41562870198452
Iteration: 12, Func. Count: 125, Neg. LLF: 126.27572766059511
Iteration: 13, Func. Count: 135, Neg. LLF: 126.27576503918675
Iteration: 14, Func. Count: 146, Neg. LLF: 126.26699335292003
Iteration: 15, Func. Count: 156, Neg. LLF: 126.26174556277752
Iteration: 16, Func. Count: 166, Neg. LLF: 126.2613126743319
Iteration: 17, Func. Count: 176, Neg. LLF: 126.26122912124181
Iteration: 18, Func. Count: 186, Neg. LLF: 126.26500380972726
Optimization terminated successfully (Exit mode 0)
Current function value: 126.26122911256088
Iterations: 19
Function evaluations: 189
Gradient evaluations: 18
Iteration: 1, Func. Count: 8, Neg. LLF: 132.07640700116346
Iteration: 2, Func. Count: 16, Neg. LLF: 135.1773806990324
Iteration: 3, Func. Count: 25, Neg. LLF: 129.12197726784305
Iteration: 4, Func. Count: 33, Neg. LLF: 127.78335713077779
Iteration: 5, Func. Count: 43, Neg. LLF: 126.46879114566953
Iteration: 6, Func. Count: 50, Neg. LLF: 126.3144769867153
Iteration: 7, Func. Count: 57, Neg. LLF: 126.20757075392468
Iteration: 8, Func. Count: 64, Neg. LLF: 126.17269496666174
Iteration: 9, Func. Count: 71, Neg. LLF: 126.16861963098596
Iteration: 10, Func. Count: 78, Neg. LLF: 126.16833206362712
Iteration: 11, Func. Count: 85, Neg. LLF: 126.16832806832561
Iteration: 12, Func. Count: 91, Neg. LLF: 126.16832815047403
Optimization terminated successfully (Exit mode 0)
Current function value: 126.16832806832561
Iterations: 12
Function evaluations: 91
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 133.3242274126323
Iteration: 2, Func. Count: 20, Neg. LLF: 126.5549456074769
Iteration: 3, Func. Count: 29, Neg. LLF: 126.37733650189907
Iteration: 4, Func. Count: 37, Neg. LLF: 126.39883275899109
Iteration: 5, Func. Count: 46, Neg. LLF: 126.3763211890771
Iteration: 6, Func. Count: 55, Neg. LLF: 126.40543491746357
Iteration: 7, Func. Count: 64, Neg. LLF: 126.37506085758429
Iteration: 8, Func. Count: 71, Neg. LLF: 126.3750608575734
Optimization terminated successfully (Exit mode 0)
Current function value: 126.37506085758429
Iterations: 8
Function evaluations: 71
Gradient evaluations: 8
Iteration: 1, Func. Count: 10, Neg. LLF: 158.24744402504894
Iteration: 2, Func. Count: 21, Neg. LLF: 126.37896585150077
Iteration: 3, Func. Count: 30, Neg. LLF: 126.3779225031434
Iteration: 4, Func. Count: 39, Neg. LLF: 126.37675866270726
Iteration: 5, Func. Count: 48, Neg. LLF: 126.37568305066661
Iteration: 6, Func. Count: 57, Neg. LLF: 126.37262609764323
Iteration: 7, Func. Count: 66, Neg. LLF: 126.36987869773114
Iteration: 8, Func. Count: 75, Neg. LLF: 126.3677910480239
Iteration: 9, Func. Count: 84, Neg. LLF: 126.36446023740547
Iteration: 10, Func. Count: 93, Neg. LLF: 126.35980185636566
Iteration: 11, Func. Count: 102, Neg. LLF: 126.31763410132994
Iteration: 12, Func. Count: 111, Neg. LLF: 126.35179335304045
Iteration: 13, Func. Count: 122, Neg. LLF: 126.32905219362688
Iteration: 14, Func. Count: 132, Neg. LLF: 126.26445114722384
Iteration: 15, Func. Count: 141, Neg. LLF: 126.26382826026455
Iteration: 16, Func. Count: 150, Neg. LLF: 126.26379768768628
Iteration: 17, Func. Count: 159, Neg. LLF: 126.26379679164815
Optimization terminated successfully (Exit mode 0)
Current function value: 126.26379679164815
Iterations: 17
Function evaluations: 159
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 153.42509197349398
Iteration: 2, Func. Count: 23, Neg. LLF: 126.3742263404388
Iteration: 3, Func. Count: 33, Neg. LLF: 126.37337070770758
Iteration: 4, Func. Count: 43, Neg. LLF: 126.37161810318521
Iteration: 5, Func. Count: 53, Neg. LLF: 126.36628590841856
Iteration: 6, Func. Count: 63, Neg. LLF: 126.36319695629695
Iteration: 7, Func. Count: 73, Neg. LLF: 126.35973170009879
Iteration: 8, Func. Count: 83, Neg. LLF: 126.35208214875311
Iteration: 9, Func. Count: 93, Neg. LLF: 126.34649327508937
Iteration: 10, Func. Count: 103, Neg. LLF: 126.33456412700072
Iteration: 11, Func. Count: 113, Neg. LLF: 126.28554095575213
Iteration: 12, Func. Count: 123, Neg. LLF: 126.86648792733051
Iteration: 13, Func. Count: 134, Neg. LLF: 126.36256429805941
Iteration: 14, Func. Count: 146, Neg. LLF: 126.25640282773054
Iteration: 15, Func. Count: 156, Neg. LLF: 126.25588011377842
Iteration: 16, Func. Count: 166, Neg. LLF: 126.25584957685145
Iteration: 17, Func. Count: 176, Neg. LLF: 126.25584756166738
Iteration: 18, Func. Count: 186, Neg. LLF: 126.25584643894082
Iteration: 19, Func. Count: 195, Neg. LLF: 126.2558464388719
Optimization terminated successfully (Exit mode 0)
Current function value: 126.25584643894082
Iterations: 19
Function evaluations: 195
Gradient evaluations: 19
Iteration: 1, Func. Count: 12, Neg. LLF: 149.8082296315202
Iteration: 2, Func. Count: 25, Neg. LLF: 126.37295623624848
Iteration: 3, Func. Count: 36, Neg. LLF: 126.37212402286659
Iteration: 4, Func. Count: 47, Neg. LLF: 126.36783188545236
Iteration: 5, Func. Count: 58, Neg. LLF: 126.36335830102661
Iteration: 6, Func. Count: 69, Neg. LLF: 126.35881419538717
Iteration: 7, Func. Count: 80, Neg. LLF: 126.35726404165415
Iteration: 8, Func. Count: 91, Neg. LLF: 126.34820298608122
Iteration: 9, Func. Count: 102, Neg. LLF: 126.29388045411015
Iteration: 10, Func. Count: 113, Neg. LLF: 126.49117660216538
Iteration: 11, Func. Count: 125, Neg. LLF: 126.28107759293174
Iteration: 12, Func. Count: 137, Neg. LLF: 126.27856044445524
Iteration: 13, Func. Count: 149, Neg. LLF: 126.27218455159269
Iteration: 14, Func. Count: 160, Neg. LLF: 126.2720568776149
Iteration: 15, Func. Count: 171, Neg. LLF: 126.2719791635905
Iteration: 16, Func. Count: 182, Neg. LLF: 126.27190593740819
Iteration: 17, Func. Count: 193, Neg. LLF: 126.271868726844
Iteration: 18, Func. Count: 204, Neg. LLF: 126.2718431837123
Iteration: 19, Func. Count: 215, Neg. LLF: 126.27183209625224
Iteration: 20, Func. Count: 226, Neg. LLF: 126.27160393317139
Iteration: 21, Func. Count: 237, Neg. LLF: 126.27099541454211
Iteration: 22, Func. Count: 248, Neg. LLF: 126.27092970359945
Iteration: 23, Func. Count: 259, Neg. LLF: 126.27057792753128
Iteration: 24, Func. Count: 270, Neg. LLF: 126.26929452650546
Iteration: 25, Func. Count: 281, Neg. LLF: 126.26862271225498
Iteration: 26, Func. Count: 292, Neg. LLF: 126.26834532646424
Iteration: 27, Func. Count: 303, Neg. LLF: 126.26487506449453
Iteration: 28, Func. Count: 314, Neg. LLF: 126.26807557538643
Iteration: 29, Func. Count: 326, Neg. LLF: 126.2612517516078
Iteration: 30, Func. Count: 337, Neg. LLF: 126.30316685408326
Iteration: 31, Func. Count: 349, Neg. LLF: 126.25973309756156
Iteration: 32, Func. Count: 360, Neg. LLF: 126.25934866503601
Iteration: 33, Func. Count: 371, Neg. LLF: 126.25928866198844
Iteration: 34, Func. Count: 382, Neg. LLF: 126.25927535543576
Iteration: 35, Func. Count: 393, Neg. LLF: 126.25926697264546
Iteration: 36, Func. Count: 403, Neg. LLF: 126.25926697543466
Optimization terminated successfully (Exit mode 0)
Current function value: 126.25926697264546
Iterations: 36
Function evaluations: 403
Gradient evaluations: 36
Iteration: 1, Func. Count: 5, Neg. LLF: 132.1845409027865
Iteration: 2, Func. Count: 10, Neg. LLF: 128.28772539503748
Iteration: 3, Func. Count: 14, Neg. LLF: 126.47012176635185
Iteration: 4, Func. Count: 18, Neg. LLF: 126.44854700434217
Iteration: 5, Func. Count: 22, Neg. LLF: 126.43805708731533
Iteration: 6, Func. Count: 26, Neg. LLF: 126.43735824321602
Iteration: 7, Func. Count: 30, Neg. LLF: 126.43734439287446
Iteration: 8, Func. Count: 33, Neg. LLF: 126.43734440942302
Optimization terminated successfully (Exit mode 0)
Current function value: 126.43734439287446
Iterations: 8
Function evaluations: 33
Gradient evaluations: 8
Iteration: 1, Func. Count: 6, Neg. LLF: 129.0964692976987
Iteration: 2, Func. Count: 13, Neg. LLF: 126.39558688471219
Iteration: 3, Func. Count: 19, Neg. LLF: 126.35222095970849
Iteration: 4, Func. Count: 25, Neg. LLF: 126.3462770683597
Iteration: 5, Func. Count: 31, Neg. LLF: 126.33660491196345
Iteration: 6, Func. Count: 36, Neg. LLF: 126.33638794102846
Iteration: 7, Func. Count: 41, Neg. LLF: 126.33617547231488
Iteration: 8, Func. Count: 46, Neg. LLF: 126.33607337086787
Iteration: 9, Func. Count: 51, Neg. LLF: 126.33605142371204
Iteration: 10, Func. Count: 56, Neg. LLF: 126.33605032031068
Iteration: 11, Func. Count: 60, Neg. LLF: 126.33605032029917
Optimization terminated successfully (Exit mode 0)
Current function value: 126.33605032031068
Iterations: 11
Function evaluations: 60
Gradient evaluations: 11
Iteration: 1, Func. Count: 7, Neg. LLF: 158.76184260376226
Iteration: 2, Func. Count: 15, Neg. LLF: 126.38300443006791
Iteration: 3, Func. Count: 22, Neg. LLF: 126.3845049631897
Iteration: 4, Func. Count: 29, Neg. LLF: 126.36759650445737
Iteration: 5, Func. Count: 35, Neg. LLF: 126.36468158655128
Iteration: 6, Func. Count: 41, Neg. LLF: 126.3614533508065
Iteration: 7, Func. Count: 47, Neg. LLF: 126.35803418574656
Iteration: 8, Func. Count: 53, Neg. LLF: 126.34281080518224
Iteration: 9, Func. Count: 59, Neg. LLF: 126.34099245233175
Iteration: 10, Func. Count: 65, Neg. LLF: 126.33734557906358
Iteration: 11, Func. Count: 71, Neg. LLF: 126.33660695317637
Iteration: 12, Func. Count: 77, Neg. LLF: 126.33617868955079
Iteration: 13, Func. Count: 83, Neg. LLF: 126.33605270217376
Iteration: 14, Func. Count: 89, Neg. LLF: 126.33605035714383
Iteration: 15, Func. Count: 94, Neg. LLF: 126.33605035950458
Optimization terminated successfully (Exit mode 0)
Current function value: 126.33605035714383
Iterations: 15
Function evaluations: 94
Gradient evaluations: 15
Iteration: 1, Func. Count: 8, Neg. LLF: 151.4676350049875
Iteration: 2, Func. Count: 17, Neg. LLF: 126.37450585145105
Iteration: 3, Func. Count: 25, Neg. LLF: 126.34009367264288
Iteration: 4, Func. Count: 32, Neg. LLF: 126.29363077644452
Iteration: 5, Func. Count: 39, Neg. LLF: 126.2407593587281
Iteration: 6, Func. Count: 46, Neg. LLF: 126.15304703952566
Iteration: 7, Func. Count: 53, Neg. LLF: 126.10305757371198
Iteration: 8, Func. Count: 60, Neg. LLF: 125.893737831325
Iteration: 9, Func. Count: 67, Neg. LLF: 125.45183224298458
Iteration: 10, Func. Count: 74, Neg. LLF: 125.32015405579695
Iteration: 11, Func. Count: 81, Neg. LLF: 125.17148647190537
Iteration: 12, Func. Count: 88, Neg. LLF: 125.07202640703129
Iteration: 13, Func. Count: 95, Neg. LLF: 125.04080312152328
Iteration: 14, Func. Count: 102, Neg. LLF: 125.03766449550393
Iteration: 15, Func. Count: 109, Neg. LLF: 125.03752650536666
Iteration: 16, Func. Count: 116, Neg. LLF: 125.03752541112809
Iteration: 17, Func. Count: 123, Neg. LLF: 125.03752332879041
Iteration: 18, Func. Count: 129, Neg. LLF: 125.03752331141729
Optimization terminated successfully (Exit mode 0)
Current function value: 125.03752332879041
Iterations: 18
Function evaluations: 129
Gradient evaluations: 18
Iteration: 1, Func. Count: 9, Neg. LLF: 150.41157051678772
Iteration: 2, Func. Count: 19, Neg. LLF: 126.37780168758326
Iteration: 3, Func. Count: 27, Neg. LLF: 126.37048639303337
Iteration: 4, Func. Count: 35, Neg. LLF: 126.26706658047478
Iteration: 5, Func. Count: 43, Neg. LLF: 126.2080440163922
Iteration: 6, Func. Count: 51, Neg. LLF: 126.03561934568063
Iteration: 7, Func. Count: 59, Neg. LLF: 125.85787697211946
Iteration: 8, Func. Count: 67, Neg. LLF: 125.42784242779369
Iteration: 9, Func. Count: 75, Neg. LLF: 125.12676418213206
Iteration: 10, Func. Count: 83, Neg. LLF: 125.06088053640566
Iteration: 11, Func. Count: 91, Neg. LLF: 125.05081569004498
Iteration: 12, Func. Count: 99, Neg. LLF: 125.03780713439467
Iteration: 13, Func. Count: 107, Neg. LLF: 125.0375441451604
Iteration: 14, Func. Count: 115, Neg. LLF: 125.03752310659276
Iteration: 15, Func. Count: 123, Neg. LLF: 125.03764555626842
Optimization terminated successfully (Exit mode 0)
Current function value: 125.03752290232887
Iterations: 16
Function evaluations: 125
Gradient evaluations: 15
Iteration: 1, Func. Count: 6, Neg. LLF: 131.51497852281733
Iteration: 2, Func. Count: 12, Neg. LLF: 126.64624790067393
Iteration: 3, Func. Count: 17, Neg. LLF: 127.4981290381639
Iteration: 4, Func. Count: 24, Neg. LLF: 126.81513277764235
Iteration: 5, Func. Count: 30, Neg. LLF: 126.43525349872795
Iteration: 6, Func. Count: 35, Neg. LLF: 126.43422298428938
Iteration: 7, Func. Count: 40, Neg. LLF: 126.43325164108651
Iteration: 8, Func. Count: 45, Neg. LLF: 126.43323296525027
Iteration: 9, Func. Count: 49, Neg. LLF: 126.43323296518258
Optimization terminated successfully (Exit mode 0)
Current function value: 126.43323296525027
Iterations: 9
Function evaluations: 49
Gradient evaluations: 9
Iteration: 1, Func. Count: 7, Neg. LLF: 140.32938152485892
Iteration: 2, Func. Count: 15, Neg. LLF: 127.15225927475392
Iteration: 3, Func. Count: 22, Neg. LLF: 126.38767725147541
Iteration: 4, Func. Count: 29, Neg. LLF: 126.40349893171542
Iteration: 5, Func. Count: 36, Neg. LLF: 128.2390162081297
Iteration: 6, Func. Count: 43, Neg. LLF: 127.32345937404043
Iteration: 7, Func. Count: 50, Neg. LLF: 126.58719733933091
Iteration: 8, Func. Count: 57, Neg. LLF: 124.66241037466915
Iteration: 9, Func. Count: 63, Neg. LLF: 124.40603162046463
Iteration: 10, Func. Count: 69, Neg. LLF: 124.00878075029505
Iteration: 11, Func. Count: 75, Neg. LLF: 123.98104590249743
Iteration: 12, Func. Count: 82, Neg. LLF: 123.83098621000956
Iteration: 13, Func. Count: 88, Neg. LLF: 123.8273021940677
Iteration: 14, Func. Count: 94, Neg. LLF: 123.82599842570552
Iteration: 15, Func. Count: 100, Neg. LLF: 123.82599709222133
Iteration: 16, Func. Count: 105, Neg. LLF: 123.8259969970411
Optimization terminated successfully (Exit mode 0)
Current function value: 123.82599709222133
Iterations: 16
Function evaluations: 105
Gradient evaluations: 16
Iteration: 1, Func. Count: 8, Neg. LLF: 142.2771777211724
Iteration: 2, Func. Count: 17, Neg. LLF: 127.43275752942594
Iteration: 3, Func. Count: 25, Neg. LLF: 126.50094178102762
Iteration: 4, Func. Count: 33, Neg. LLF: 126.37979863861163
Iteration: 5, Func. Count: 41, Neg. LLF: 126.26342137315089
Iteration: 6, Func. Count: 48, Neg. LLF: 125.8246684170113
Iteration: 7, Func. Count: 55, Neg. LLF: 125.37794761692219
Iteration: 8, Func. Count: 62, Neg. LLF: 155.91173776621122
Iteration: 9, Func. Count: 71, Neg. LLF: 125.7397886044635
Iteration: 10, Func. Count: 79, Neg. LLF: 124.54535931857288
Iteration: 11, Func. Count: 86, Neg. LLF: 176.03834133692166
Iteration: 12, Func. Count: 95, Neg. LLF: 124.05958931963347
Iteration: 13, Func. Count: 102, Neg. LLF: 123.86641716483312
Iteration: 14, Func. Count: 109, Neg. LLF: 123.83326414258451
Iteration: 15, Func. Count: 116, Neg. LLF: 123.82876618898077
Iteration: 16, Func. Count: 123, Neg. LLF: 123.82631573060112
Iteration: 17, Func. Count: 130, Neg. LLF: 123.8260649431067
Iteration: 18, Func. Count: 137, Neg. LLF: 123.82599738863858
Iteration: 19, Func. Count: 143, Neg. LLF: 123.82599731285028
Optimization terminated successfully (Exit mode 0)
Current function value: 123.82599738863858
Iterations: 19
Function evaluations: 143
Gradient evaluations: 19
Iteration: 1, Func. Count: 9, Neg. LLF: 128.86070976097366
Iteration: 2, Func. Count: 19, Neg. LLF: 137.1819121437229
Iteration: 3, Func. Count: 28, Neg. LLF: 142.56457966527893
Iteration: 4, Func. Count: 37, Neg. LLF: 126.76562692619854
Iteration: 5, Func. Count: 46, Neg. LLF: 129.32368999976686
Iteration: 6, Func. Count: 55, Neg. LLF: 132.14605448320933
Iteration: 7, Func. Count: 64, Neg. LLF: 128.5923853111654
Iteration: 8, Func. Count: 73, Neg. LLF: 129.17274652694363
Iteration: 9, Func. Count: 82, Neg. LLF: 122.85618770350959
Iteration: 10, Func. Count: 90, Neg. LLF: 129.8074697141557
Iteration: 11, Func. Count: 99, Neg. LLF: 122.69087460465488
Iteration: 12, Func. Count: 108, Neg. LLF: 121.72534692796333
Iteration: 13, Func. Count: 116, Neg. LLF: 121.61934638425402
Iteration: 14, Func. Count: 124, Neg. LLF: 121.60534238052071
Iteration: 15, Func. Count: 132, Neg. LLF: 121.60344231406845
Iteration: 16, Func. Count: 140, Neg. LLF: 121.60258885943092
Iteration: 17, Func. Count: 148, Neg. LLF: 121.60222738523679
Iteration: 18, Func. Count: 156, Neg. LLF: 121.60206838478278
Iteration: 19, Func. Count: 164, Neg. LLF: 121.6020606784879
Iteration: 20, Func. Count: 171, Neg. LLF: 121.602060647259
Optimization terminated successfully (Exit mode 0)
Current function value: 121.6020606784879
Iterations: 20
Function evaluations: 171
Gradient evaluations: 20
Iteration: 1, Func. Count: 10, Neg. LLF: 128.66899453612587
Iteration: 2, Func. Count: 21, Neg. LLF: 135.16293918887027
Iteration: 3, Func. Count: 31, Neg. LLF: 129.73262482023637
Iteration: 4, Func. Count: 41, Neg. LLF: 127.11187708997629
Iteration: 5, Func. Count: 51, Neg. LLF: 130.62992725173834
Iteration: 6, Func. Count: 61, Neg. LLF: 133.5481494250516
Iteration: 7, Func. Count: 71, Neg. LLF: 127.05950227846216
Iteration: 8, Func. Count: 81, Neg. LLF: 123.8910443642425
Iteration: 9, Func. Count: 91, Neg. LLF: 123.22597024111454
Iteration: 10, Func. Count: 101, Neg. LLF: 124.04686159591512
Iteration: 11, Func. Count: 111, Neg. LLF: 121.74637342397195
Iteration: 12, Func. Count: 120, Neg. LLF: 124.2793857573118
Iteration: 13, Func. Count: 130, Neg. LLF: 121.61980054373689
Iteration: 14, Func. Count: 139, Neg. LLF: 121.60537931832121
Iteration: 15, Func. Count: 148, Neg. LLF: 121.6118302967849
Iteration: 16, Func. Count: 158, Neg. LLF: 121.60208519802298
Iteration: 17, Func. Count: 167, Neg. LLF: 121.6020608975564
Iteration: 18, Func. Count: 175, Neg. LLF: 121.60206089853547
Optimization terminated successfully (Exit mode 0)
Current function value: 121.6020608975564
Iterations: 18
Function evaluations: 175
Gradient evaluations: 18
Iteration: 1, Func. Count: 7, Neg. LLF: 132.84299654810363
Iteration: 2, Func. Count: 14, Neg. LLF: 130.38529549999666
Iteration: 3, Func. Count: 21, Neg. LLF: 126.5805745393411
Iteration: 4, Func. Count: 27, Neg. LLF: 145.30798653794443
Iteration: 5, Func. Count: 35, Neg. LLF: 132.71982676663777
Iteration: 6, Func. Count: 44, Neg. LLF: 126.45306475007997
Iteration: 7, Func. Count: 50, Neg. LLF: 126.40755952999777
Iteration: 8, Func. Count: 56, Neg. LLF: 126.40455619232408
Iteration: 9, Func. Count: 62, Neg. LLF: 126.40435990223187
Iteration: 10, Func. Count: 67, Neg. LLF: 126.40435990211982
Optimization terminated successfully (Exit mode 0)
Current function value: 126.40435990223187
Iterations: 10
Function evaluations: 67
Gradient evaluations: 10
Iteration: 1, Func. Count: 8, Neg. LLF: 139.69671602315617
Iteration: 2, Func. Count: 17, Neg. LLF: 127.31410684478806
Iteration: 3, Func. Count: 25, Neg. LLF: 126.38930339851173
Iteration: 4, Func. Count: 33, Neg. LLF: 133.48333983888918
Iteration: 5, Func. Count: 42, Neg. LLF: 126.33355328322635
Iteration: 6, Func. Count: 49, Neg. LLF: 131.91414104140324
Iteration: 7, Func. Count: 57, Neg. LLF: 131.17767704703775
Iteration: 8, Func. Count: 65, Neg. LLF: 129.13280148657486
Iteration: 9, Func. Count: 73, Neg. LLF: 130.101059832148
Iteration: 10, Func. Count: 81, Neg. LLF: 126.1639991459662
Iteration: 11, Func. Count: 88, Neg. LLF: 126.04946017089631
Iteration: 12, Func. Count: 95, Neg. LLF: 128.52711634730287
Iteration: 13, Func. Count: 103, Neg. LLF: 125.06477246044012
Iteration: 14, Func. Count: 110, Neg. LLF: 140.36300267892153
Iteration: 15, Func. Count: 118, Neg. LLF: 127.17985068967016
Iteration: 16, Func. Count: 127, Neg. LLF: 124.02604121589331
Iteration: 17, Func. Count: 134, Neg. LLF: 123.8733212613685
Iteration: 18, Func. Count: 141, Neg. LLF: 123.83854913519431
Iteration: 19, Func. Count: 148, Neg. LLF: 123.83217760987462
Iteration: 20, Func. Count: 155, Neg. LLF: 123.82623330436492
Iteration: 21, Func. Count: 162, Neg. LLF: 123.82599939426845
Iteration: 22, Func. Count: 169, Neg. LLF: 123.82599718089838
Iteration: 23, Func. Count: 175, Neg. LLF: 123.8259970856931
Optimization terminated successfully (Exit mode 0)
Current function value: 123.82599718089838
Iterations: 23
Function evaluations: 175
Gradient evaluations: 23
Iteration: 1, Func. Count: 9, Neg. LLF: 141.69800787277367
Iteration: 2, Func. Count: 19, Neg. LLF: 127.5734413487955
Iteration: 3, Func. Count: 28, Neg. LLF: 126.50353149234923
Iteration: 4, Func. Count: 37, Neg. LLF: 126.39672830295927
Iteration: 5, Func. Count: 46, Neg. LLF: 126.270373253267
Iteration: 6, Func. Count: 54, Neg. LLF: 125.84276094131314
Iteration: 7, Func. Count: 62, Neg. LLF: 125.38031690984879
Iteration: 8, Func. Count: 70, Neg. LLF: 204.21216366317392
Iteration: 9, Func. Count: 79, Neg. LLF: 125.2626794117861
Iteration: 10, Func. Count: 88, Neg. LLF: 124.20874018672323
Iteration: 11, Func. Count: 96, Neg. LLF: 123.87984099432394
Iteration: 12, Func. Count: 104, Neg. LLF: 123.93146663400616
Iteration: 13, Func. Count: 113, Neg. LLF: 123.83073176557455
Iteration: 14, Func. Count: 121, Neg. LLF: 123.82602065206528
Iteration: 15, Func. Count: 129, Neg. LLF: 123.82599777729486
Iteration: 16, Func. Count: 137, Neg. LLF: 123.82599717409089
Optimization terminated successfully (Exit mode 0)
Current function value: 123.82599717409089
Iterations: 16
Function evaluations: 137
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 128.6688501620165
Iteration: 2, Func. Count: 21, Neg. LLF: 136.8367265996717
Iteration: 3, Func. Count: 31, Neg. LLF: 148.13245355709046
Iteration: 4, Func. Count: 41, Neg. LLF: 126.08856415842321
Iteration: 5, Func. Count: 51, Neg. LLF: 128.1024406430885
Iteration: 6, Func. Count: 61, Neg. LLF: 128.5445560574674
Iteration: 7, Func. Count: 71, Neg. LLF: 125.26209694528433
Iteration: 8, Func. Count: 81, Neg. LLF: 414.8197838685387
Iteration: 9, Func. Count: 91, Neg. LLF: 128.42079228669434
Iteration: 10, Func. Count: 101, Neg. LLF: 122.48963250335147
Iteration: 11, Func. Count: 111, Neg. LLF: 121.64851191791712
Iteration: 12, Func. Count: 120, Neg. LLF: 125.78793337425716
Iteration: 13, Func. Count: 131, Neg. LLF: 121.57495784643962
Iteration: 14, Func. Count: 140, Neg. LLF: 121.56724722647854
Iteration: 15, Func. Count: 149, Neg. LLF: 121.5634803829126
Iteration: 16, Func. Count: 158, Neg. LLF: 121.56341469554262
Iteration: 17, Func. Count: 167, Neg. LLF: 121.56340896668365
Iteration: 18, Func. Count: 175, Neg. LLF: 121.56340893663102
Optimization terminated successfully (Exit mode 0)
Current function value: 121.56340896668365
Iterations: 18
Function evaluations: 175
Gradient evaluations: 18
Iteration: 1, Func. Count: 11, Neg. LLF: 128.50594555902697
Iteration: 2, Func. Count: 23, Neg. LLF: 134.91696290456952
Iteration: 3, Func. Count: 34, Neg. LLF: 128.1088731702728
Iteration: 4, Func. Count: 45, Neg. LLF: 125.9399347896868
Iteration: 5, Func. Count: 56, Neg. LLF: 128.51304414766815
Iteration: 6, Func. Count: 67, Neg. LLF: 125.66794595823208
Iteration: 7, Func. Count: 78, Neg. LLF: 293.3145208297487
Iteration: 8, Func. Count: 89, Neg. LLF: 121.74557746666824
Iteration: 9, Func. Count: 99, Neg. LLF: 121.87677756547751
Iteration: 10, Func. Count: 110, Neg. LLF: 121.5776031284026
Iteration: 11, Func. Count: 121, Neg. LLF: 121.56475323263807
Iteration: 12, Func. Count: 131, Neg. LLF: 121.56359093533534
Iteration: 13, Func. Count: 141, Neg. LLF: 121.56343600890347
Iteration: 14, Func. Count: 151, Neg. LLF: 121.5634112957151
Iteration: 15, Func. Count: 161, Neg. LLF: 121.56340908559679
Iteration: 16, Func. Count: 170, Neg. LLF: 121.56340908528131
Optimization terminated successfully (Exit mode 0)
Current function value: 121.56340908559679
Iterations: 16
Function evaluations: 170
Gradient evaluations: 16
Iteration: 1, Func. Count: 8, Neg. LLF: 134.63511483139285
Iteration: 2, Func. Count: 16, Neg. LLF: 145.4815622616547
Iteration: 3, Func. Count: 24, Neg. LLF: 126.98581393428259
Iteration: 4, Func. Count: 32, Neg. LLF: 126.69789526566062
Iteration: 5, Func. Count: 40, Neg. LLF: 127.76979571528223
Iteration: 6, Func. Count: 48, Neg. LLF: 126.31536705230506
Iteration: 7, Func. Count: 56, Neg. LLF: 127.32427789140363
Iteration: 8, Func. Count: 64, Neg. LLF: 126.20737094541909
Iteration: 9, Func. Count: 71, Neg. LLF: 126.23488462526858
Iteration: 10, Func. Count: 79, Neg. LLF: 126.17650522319127
Iteration: 11, Func. Count: 86, Neg. LLF: 126.16878944494275
Iteration: 12, Func. Count: 93, Neg. LLF: 126.16834507751373
Iteration: 13, Func. Count: 100, Neg. LLF: 126.16832751301763
Iteration: 14, Func. Count: 106, Neg. LLF: 126.16832751301115
Optimization terminated successfully (Exit mode 0)
Current function value: 126.16832751301763
Iterations: 14
Function evaluations: 106
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 139.52439284743255
Iteration: 2, Func. Count: 19, Neg. LLF: 127.36893825929378
Iteration: 3, Func. Count: 28, Neg. LLF: 126.87187298630738
Iteration: 4, Func. Count: 38, Neg. LLF: 126.487843053888
Iteration: 5, Func. Count: 47, Neg. LLF: 126.33854054187712
Iteration: 6, Func. Count: 55, Neg. LLF: 132.94437114197743
Iteration: 7, Func. Count: 64, Neg. LLF: 131.11729825873795
Iteration: 8, Func. Count: 73, Neg. LLF: 128.01329862879987
Iteration: 9, Func. Count: 82, Neg. LLF: 130.1691351169786
Iteration: 10, Func. Count: 91, Neg. LLF: 126.28581666317272
Iteration: 11, Func. Count: 100, Neg. LLF: 126.11288121927475
Iteration: 12, Func. Count: 108, Neg. LLF: 125.727232066204
Iteration: 13, Func. Count: 116, Neg. LLF: 126.5349895472359
Iteration: 14, Func. Count: 125, Neg. LLF: 136.7870392655847
Iteration: 15, Func. Count: 134, Neg. LLF: 124.9361770548754
Iteration: 16, Func. Count: 143, Neg. LLF: 124.12483759407137
Iteration: 17, Func. Count: 151, Neg. LLF: 123.9319374866114
Iteration: 18, Func. Count: 159, Neg. LLF: 123.83285843627786
Iteration: 19, Func. Count: 167, Neg. LLF: 123.82624995125805
Iteration: 20, Func. Count: 175, Neg. LLF: 123.82599940774521
Iteration: 21, Func. Count: 183, Neg. LLF: 123.82599719093868
Iteration: 22, Func. Count: 190, Neg. LLF: 123.82599709584672
Optimization terminated successfully (Exit mode 0)
Current function value: 123.82599719093868
Iterations: 22
Function evaluations: 190
Gradient evaluations: 22
Iteration: 1, Func. Count: 10, Neg. LLF: 141.50963646578373
Iteration: 2, Func. Count: 21, Neg. LLF: 127.65607683584786
Iteration: 3, Func. Count: 31, Neg. LLF: 126.50055329951438
Iteration: 4, Func. Count: 41, Neg. LLF: 126.37121187838507
Iteration: 5, Func. Count: 51, Neg. LLF: 126.26766407956909
Iteration: 6, Func. Count: 60, Neg. LLF: 125.79126260926627
Iteration: 7, Func. Count: 69, Neg. LLF: 124.88778389943033
Iteration: 8, Func. Count: 78, Neg. LLF: 124.760944886765
Iteration: 9, Func. Count: 88, Neg. LLF: 123.8552064381916
Iteration: 10, Func. Count: 97, Neg. LLF: 123.82663794425812
Iteration: 11, Func. Count: 106, Neg. LLF: 123.82770319354589
Iteration: 12, Func. Count: 116, Neg. LLF: 123.82599921897918
Iteration: 13, Func. Count: 125, Neg. LLF: 123.82599717556108
Iteration: 14, Func. Count: 133, Neg. LLF: 123.82599709998223
Optimization terminated successfully (Exit mode 0)
Current function value: 123.82599717556108
Iterations: 14
Function evaluations: 133
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 128.62977367536365
Iteration: 2, Func. Count: 23, Neg. LLF: 136.56224283059024
Iteration: 3, Func. Count: 34, Neg. LLF: 148.0780660603126
Iteration: 4, Func. Count: 45, Neg. LLF: 125.76641480909049
Iteration: 5, Func. Count: 56, Neg. LLF: 127.11842618128065
Iteration: 6, Func. Count: 67, Neg. LLF: 125.59426053877144
Iteration: 7, Func. Count: 78, Neg. LLF: 123.53952069900716
Iteration: 8, Func. Count: 89, Neg. LLF: 602.5276644835872
Iteration: 9, Func. Count: 100, Neg. LLF: 121.84979158846261
Iteration: 10, Func. Count: 110, Neg. LLF: 121.98528557094998
Iteration: 11, Func. Count: 121, Neg. LLF: 121.74657173610841
Iteration: 12, Func. Count: 132, Neg. LLF: 121.56898014807233
Iteration: 13, Func. Count: 142, Neg. LLF: 121.56380139386766
Iteration: 14, Func. Count: 152, Neg. LLF: 121.56345716314918
Iteration: 15, Func. Count: 162, Neg. LLF: 121.56341451107666
Iteration: 16, Func. Count: 172, Neg. LLF: 121.56340929869579
Iteration: 17, Func. Count: 181, Neg. LLF: 121.56340926867439
Optimization terminated successfully (Exit mode 0)
Current function value: 121.56340929869579
Iterations: 17
Function evaluations: 181
Gradient evaluations: 17
Iteration: 1, Func. Count: 12, Neg. LLF: 128.472854373015
Iteration: 2, Func. Count: 25, Neg. LLF: 134.72701872555342
Iteration: 3, Func. Count: 37, Neg. LLF: 126.84542158517051
Iteration: 4, Func. Count: 49, Neg. LLF: 125.02584705394247
Iteration: 5, Func. Count: 60, Neg. LLF: 136.3998928565985
Iteration: 6, Func. Count: 73, Neg. LLF: 1018760.108166701
Iteration: 7, Func. Count: 85, Neg. LLF: 131.66146196509865
Iteration: 8, Func. Count: 98, Neg. LLF: 122.93591478731659
Iteration: 9, Func. Count: 109, Neg. LLF: 123.28523042044988
Iteration: 10, Func. Count: 121, Neg. LLF: 122.7290614047371
Iteration: 11, Func. Count: 133, Neg. LLF: 121.75849106811116
Iteration: 12, Func. Count: 144, Neg. LLF: 121.93763789353353
Iteration: 13, Func. Count: 156, Neg. LLF: 121.69890921089963
Iteration: 14, Func. Count: 168, Neg. LLF: 121.5675903669098
Iteration: 15, Func. Count: 179, Neg. LLF: 121.56402243005127
Iteration: 16, Func. Count: 190, Neg. LLF: 121.56346638078207
Iteration: 17, Func. Count: 201, Neg. LLF: 121.56342012736711
Iteration: 18, Func. Count: 212, Neg. LLF: 121.56340936366949
Iteration: 19, Func. Count: 222, Neg. LLF: 121.56340936347404
Optimization terminated successfully (Exit mode 0)
Current function value: 121.56340936366949
Iterations: 19
Function evaluations: 222
Gradient evaluations: 19
Iteration: 1, Func. Count: 9, Neg. LLF: 131.07705708501194
Iteration: 2, Func. Count: 18, Neg. LLF: 135.97502674543978
Iteration: 3, Func. Count: 28, Neg. LLF: 127.74340887167256
Iteration: 4, Func. Count: 37, Neg. LLF: 126.55625083428811
Iteration: 5, Func. Count: 45, Neg. LLF: 126.47217975649161
Iteration: 6, Func. Count: 54, Neg. LLF: 134.8760338972159
Iteration: 7, Func. Count: 64, Neg. LLF: 126.3844736262772
Iteration: 8, Func. Count: 73, Neg. LLF: 126.50782258982694
Iteration: 9, Func. Count: 82, Neg. LLF: 126.19058143194019
Iteration: 10, Func. Count: 90, Neg. LLF: 126.17739802850771
Iteration: 11, Func. Count: 98, Neg. LLF: 126.17102651057247
Iteration: 12, Func. Count: 106, Neg. LLF: 126.1688477155615
Iteration: 13, Func. Count: 114, Neg. LLF: 126.16835641988527
Iteration: 14, Func. Count: 122, Neg. LLF: 126.16832900348824
Iteration: 15, Func. Count: 130, Neg. LLF: 126.16832742014545
Iteration: 16, Func. Count: 137, Neg. LLF: 126.16832750231279
Optimization terminated successfully (Exit mode 0)
Current function value: 126.16832742014545
Iterations: 16
Function evaluations: 137
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 136.1032588686078
Iteration: 2, Func. Count: 21, Neg. LLF: 127.45199622571745
Iteration: 3, Func. Count: 31, Neg. LLF: 126.39009677094641
Iteration: 4, Func. Count: 40, Neg. LLF: 131.62870382216246
Iteration: 5, Func. Count: 51, Neg. LLF: 126.36518755940587
Iteration: 6, Func. Count: 60, Neg. LLF: 126.31420704328903
Iteration: 7, Func. Count: 69, Neg. LLF: 129.65442767229754
Iteration: 8, Func. Count: 79, Neg. LLF: 125.707412751265
Iteration: 9, Func. Count: 88, Neg. LLF: 125.11526341846907
Iteration: 10, Func. Count: 97, Neg. LLF: 124.85548332175486
Iteration: 11, Func. Count: 106, Neg. LLF: 131.65920086642447
Iteration: 12, Func. Count: 117, Neg. LLF: 124.14754261291938
Iteration: 13, Func. Count: 126, Neg. LLF: 123.84977665136167
Iteration: 14, Func. Count: 135, Neg. LLF: 123.82705972811472
Iteration: 15, Func. Count: 144, Neg. LLF: 123.82604846191994
Iteration: 16, Func. Count: 153, Neg. LLF: 123.82599780319681
Iteration: 17, Func. Count: 162, Neg. LLF: 123.82599717742494
Optimization terminated successfully (Exit mode 0)
Current function value: 123.82599717742494
Iterations: 17
Function evaluations: 162
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 141.91888097036934
Iteration: 2, Func. Count: 23, Neg. LLF: 127.58935472333816
Iteration: 3, Func. Count: 34, Neg. LLF: 126.49889527660999
Iteration: 4, Func. Count: 45, Neg. LLF: 126.3383064552089
Iteration: 5, Func. Count: 55, Neg. LLF: 126.25544335615321
Iteration: 6, Func. Count: 65, Neg. LLF: 127.27972463448147
Iteration: 7, Func. Count: 76, Neg. LLF: 125.51815593158979
Iteration: 8, Func. Count: 86, Neg. LLF: 189.57361324695646
Iteration: 9, Func. Count: 97, Neg. LLF: 123.99515124059546
Iteration: 10, Func. Count: 107, Neg. LLF: 123.9143488873773
Iteration: 11, Func. Count: 117, Neg. LLF: 123.84956926203083
Iteration: 12, Func. Count: 127, Neg. LLF: 123.829406218447
Iteration: 13, Func. Count: 137, Neg. LLF: 123.82629778181295
Iteration: 14, Func. Count: 147, Neg. LLF: 123.82600066968335
Iteration: 15, Func. Count: 157, Neg. LLF: 123.82599719822728
Iteration: 16, Func. Count: 166, Neg. LLF: 123.82599712264631
Optimization terminated successfully (Exit mode 0)
Current function value: 123.82599719822728
Iterations: 16
Function evaluations: 166
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 128.69539973378033
Iteration: 2, Func. Count: 24, Neg. LLF: 134.44862510757937
Iteration: 3, Func. Count: 36, Neg. LLF: 150.35986919131858
Iteration: 4, Func. Count: 48, Neg. LLF: 123.41667573630936
Iteration: 5, Func. Count: 59, Neg. LLF: 133.30542561366647
Iteration: 6, Func. Count: 71, Neg. LLF: 123.38883174705914
Iteration: 7, Func. Count: 83, Neg. LLF: 121.93456523860024
Iteration: 8, Func. Count: 94, Neg. LLF: 122.24652548575469
Iteration: 9, Func. Count: 106, Neg. LLF: 121.6480859882192
Iteration: 10, Func. Count: 117, Neg. LLF: 121.58328227060701
Iteration: 11, Func. Count: 128, Neg. LLF: 121.57072039245168
Iteration: 12, Func. Count: 139, Neg. LLF: 121.60182189603441
Iteration: 13, Func. Count: 151, Neg. LLF: 121.5638824219917
Iteration: 14, Func. Count: 162, Neg. LLF: 121.56342328234747
Iteration: 15, Func. Count: 173, Neg. LLF: 121.56340925432718
Iteration: 16, Func. Count: 183, Neg. LLF: 121.56340922433137
Optimization terminated successfully (Exit mode 0)
Current function value: 121.56340925432718
Iterations: 16
Function evaluations: 183
Gradient evaluations: 16
Iteration: 1, Func. Count: 13, Neg. LLF: 128.54972600899598
Iteration: 2, Func. Count: 27, Neg. LLF: 134.69620128315188
Iteration: 3, Func. Count: 40, Neg. LLF: 126.92146274804556
Iteration: 4, Func. Count: 53, Neg. LLF: 125.06289885472779
Iteration: 5, Func. Count: 65, Neg. LLF: 137.89133684805543
Iteration: 6, Func. Count: 79, Neg. LLF: 2560744.016362182
Iteration: 7, Func. Count: 93, Neg. LLF: 142.77810053117224
Iteration: 8, Func. Count: 106, Neg. LLF: 122.70372958733827
Iteration: 9, Func. Count: 118, Neg. LLF: 122.33262303019646
Iteration: 10, Func. Count: 131, Neg. LLF: 121.76059088900172
Iteration: 11, Func. Count: 143, Neg. LLF: 121.65237912667918
Iteration: 12, Func. Count: 155, Neg. LLF: 121.56915442035394
Iteration: 13, Func. Count: 167, Neg. LLF: 121.56506278018644
Iteration: 14, Func. Count: 179, Neg. LLF: 121.56351362704339
Iteration: 15, Func. Count: 191, Neg. LLF: 121.56343462112044
Iteration: 16, Func. Count: 203, Neg. LLF: 121.56341072611382
Iteration: 17, Func. Count: 215, Neg. LLF: 121.56340899994584
Iteration: 18, Func. Count: 226, Neg. LLF: 121.56340899967942
Optimization terminated successfully (Exit mode 0)
Current function value: 121.56340899994584
Iterations: 18
Function evaluations: 226
Gradient evaluations: 18
Iteration: 1, Func. Count: 6, Neg. LLF: 129.80355036604277
Iteration: 2, Func. Count: 12, Neg. LLF: 126.42527592607154
Iteration: 3, Func. Count: 17, Neg. LLF: 126.97179603429835
Iteration: 4, Func. Count: 23, Neg. LLF: 126.7704738134692
Iteration: 5, Func. Count: 30, Neg. LLF: 126.37123224052107
Iteration: 6, Func. Count: 35, Neg. LLF: 126.37074974265542
Iteration: 7, Func. Count: 40, Neg. LLF: 126.37074076731554
Iteration: 8, Func. Count: 44, Neg. LLF: 126.37074076724032
Optimization terminated successfully (Exit mode 0)
Current function value: 126.37074076731554
Iterations: 8
Function evaluations: 44
Gradient evaluations: 8
Iteration: 1, Func. Count: 7, Neg. LLF: 129.149835810299
Iteration: 2, Func. Count: 15, Neg. LLF: 133.7960600013701
Iteration: 3, Func. Count: 23, Neg. LLF: 126.29237805010845
Iteration: 4, Func. Count: 30, Neg. LLF: 126.2159296325347
Iteration: 5, Func. Count: 36, Neg. LLF: 126.20828903656619
Iteration: 6, Func. Count: 42, Neg. LLF: 126.19927235525553
Iteration: 7, Func. Count: 48, Neg. LLF: 126.19793288794241
Iteration: 8, Func. Count: 54, Neg. LLF: 126.19777421125804
Iteration: 9, Func. Count: 60, Neg. LLF: 126.19777018454155
Iteration: 10, Func. Count: 65, Neg. LLF: 126.19777018441421
Optimization terminated successfully (Exit mode 0)
Current function value: 126.19777018454155
Iterations: 10
Function evaluations: 65
Gradient evaluations: 10
Iteration: 1, Func. Count: 8, Neg. LLF: 129.55166027161613
Iteration: 2, Func. Count: 17, Neg. LLF: 129.5269289828748
Iteration: 3, Func. Count: 25, Neg. LLF: 126.1442334181377
Iteration: 4, Func. Count: 32, Neg. LLF: 125.85992968437539
Iteration: 5, Func. Count: 39, Neg. LLF: 126.45902271210775
Iteration: 6, Func. Count: 48, Neg. LLF: 129.102505378564
Iteration: 7, Func. Count: 56, Neg. LLF: 125.76970436938308
Iteration: 8, Func. Count: 63, Neg. LLF: 125.74247195595547
Iteration: 9, Func. Count: 70, Neg. LLF: 125.73093086229007
Iteration: 10, Func. Count: 77, Neg. LLF: 125.72508551466457
Iteration: 11, Func. Count: 84, Neg. LLF: 125.7249036598135
Iteration: 12, Func. Count: 91, Neg. LLF: 125.72490273067433
Optimization terminated successfully (Exit mode 0)
Current function value: 125.72490273067433
Iterations: 12
Function evaluations: 91
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 128.7670407124618
Iteration: 2, Func. Count: 19, Neg. LLF: 125.95418833199113
Iteration: 3, Func. Count: 27, Neg. LLF: 127.34225815810305
Iteration: 4, Func. Count: 36, Neg. LLF: 125.82975749477139
Iteration: 5, Func. Count: 44, Neg. LLF: 126.22497195627719
Iteration: 6, Func. Count: 53, Neg. LLF: 127.2552632013128
Iteration: 7, Func. Count: 62, Neg. LLF: 125.732050448971
Iteration: 8, Func. Count: 70, Neg. LLF: 125.72973135541592
Iteration: 9, Func. Count: 78, Neg. LLF: 125.72659865165977
Iteration: 10, Func. Count: 86, Neg. LLF: 125.72496922537745
Iteration: 11, Func. Count: 94, Neg. LLF: 125.7249038748071
Iteration: 12, Func. Count: 102, Neg. LLF: 125.72490273060293
Iteration: 13, Func. Count: 109, Neg. LLF: 125.72490277794513
Optimization terminated successfully (Exit mode 0)
Current function value: 125.72490273060293
Iterations: 13
Function evaluations: 109
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 129.52393838331685
Iteration: 2, Func. Count: 22, Neg. LLF: 127.58650031091989
Iteration: 3, Func. Count: 32, Neg. LLF: 126.05801832758765
Iteration: 4, Func. Count: 41, Neg. LLF: 126.37370381705388
Iteration: 5, Func. Count: 51, Neg. LLF: 125.92184289590102
Iteration: 6, Func. Count: 60, Neg. LLF: 125.9297451063282
Iteration: 7, Func. Count: 70, Neg. LLF: 125.93331532181017
Iteration: 8, Func. Count: 80, Neg. LLF: 125.80529229679124
Iteration: 9, Func. Count: 89, Neg. LLF: 126.38193814967362
Iteration: 10, Func. Count: 99, Neg. LLF: 125.72594607299325
Iteration: 11, Func. Count: 108, Neg. LLF: 125.72508841249424
Iteration: 12, Func. Count: 117, Neg. LLF: 125.7250275124342
Iteration: 13, Func. Count: 126, Neg. LLF: 125.72490617286209
Iteration: 14, Func. Count: 135, Neg. LLF: 125.72490281011292
Iteration: 15, Func. Count: 143, Neg. LLF: 125.72490290115071
Optimization terminated successfully (Exit mode 0)
Current function value: 125.72490281011292
Iterations: 15
Function evaluations: 143
Gradient evaluations: 15
Iteration: 1, Func. Count: 7, Neg. LLF: 129.84851241158964
Iteration: 2, Func. Count: 14, Neg. LLF: 127.02537597619072
Iteration: 3, Func. Count: 20, Neg. LLF: 126.46310911154934
Iteration: 4, Func. Count: 26, Neg. LLF: 149.1239641721754
Iteration: 5, Func. Count: 34, Neg. LLF: 131.641220464857
Iteration: 6, Func. Count: 43, Neg. LLF: 126.37151398891022
Iteration: 7, Func. Count: 49, Neg. LLF: 126.36695961047518
Iteration: 8, Func. Count: 55, Neg. LLF: 126.36666499121704
Iteration: 9, Func. Count: 61, Neg. LLF: 126.36654335354434
Iteration: 10, Func. Count: 67, Neg. LLF: 126.36654235510694
Optimization terminated successfully (Exit mode 0)
Current function value: 126.36654235510694
Iterations: 10
Function evaluations: 67
Gradient evaluations: 10
Iteration: 1, Func. Count: 8, Neg. LLF: 129.11639528916294
Iteration: 2, Func. Count: 17, Neg. LLF: 126.24279271851032
Iteration: 3, Func. Count: 24, Neg. LLF: 126.41888030706144
Iteration: 4, Func. Count: 32, Neg. LLF: 126.69329871624362
Iteration: 5, Func. Count: 40, Neg. LLF: 126.22234501112693
Iteration: 6, Func. Count: 47, Neg. LLF: 126.20532364993836
Iteration: 7, Func. Count: 54, Neg. LLF: 125.91207548914404
Iteration: 8, Func. Count: 61, Neg. LLF: 124.26913710581098
Iteration: 9, Func. Count: 68, Neg. LLF: 243.2626230096127
Iteration: 10, Func. Count: 77, Neg. LLF: 123.82823189664266
Iteration: 11, Func. Count: 84, Neg. LLF: 123.82605134346342
Iteration: 12, Func. Count: 91, Neg. LLF: 123.82599762852738
Iteration: 13, Func. Count: 97, Neg. LLF: 123.82599753321354
Optimization terminated successfully (Exit mode 0)
Current function value: 123.82599762852738
Iterations: 13
Function evaluations: 97
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 129.5590892771252
Iteration: 2, Func. Count: 19, Neg. LLF: 129.4912453213937
Iteration: 3, Func. Count: 28, Neg. LLF: 126.1723391855949
Iteration: 4, Func. Count: 36, Neg. LLF: 125.86014981411302
Iteration: 5, Func. Count: 44, Neg. LLF: 133.3324425921083
Iteration: 6, Func. Count: 55, Neg. LLF: 125.77448314676347
Iteration: 7, Func. Count: 63, Neg. LLF: 125.75040849425487
Iteration: 8, Func. Count: 71, Neg. LLF: 125.72804589243148
Iteration: 9, Func. Count: 79, Neg. LLF: 125.7149564210707
Iteration: 10, Func. Count: 87, Neg. LLF: 125.70922699628335
Iteration: 11, Func. Count: 95, Neg. LLF: 125.70877207076627
Iteration: 12, Func. Count: 103, Neg. LLF: 125.70876687847668
Iteration: 13, Func. Count: 110, Neg. LLF: 125.70876687847488
Optimization terminated successfully (Exit mode 0)
Current function value: 125.70876687847668
Iterations: 13
Function evaluations: 110
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 129.6579102362498
Iteration: 2, Func. Count: 21, Neg. LLF: 135.15749410917726
Iteration: 3, Func. Count: 31, Neg. LLF: 128.5335194327501
Iteration: 4, Func. Count: 41, Neg. LLF: 134.08004062243435
Iteration: 5, Func. Count: 51, Neg. LLF: 133.84479045706152
Iteration: 6, Func. Count: 61, Neg. LLF: 126.56763028374056
Iteration: 7, Func. Count: 71, Neg. LLF: 125.9909256629827
Iteration: 8, Func. Count: 81, Neg. LLF: 128.76758247909726
Iteration: 9, Func. Count: 91, Neg. LLF: 123.71683628757825
Iteration: 10, Func. Count: 100, Neg. LLF: 123.17582784590924
Iteration: 11, Func. Count: 109, Neg. LLF: 122.44810760723546
Iteration: 12, Func. Count: 118, Neg. LLF: 123.12529333148512
Iteration: 13, Func. Count: 128, Neg. LLF: 137.11396160647055
Iteration: 14, Func. Count: 138, Neg. LLF: 121.8013464700222
Iteration: 15, Func. Count: 147, Neg. LLF: 121.62817330092088
Iteration: 16, Func. Count: 156, Neg. LLF: 121.83548731803904
Iteration: 17, Func. Count: 166, Neg. LLF: 121.57079524685822
Iteration: 18, Func. Count: 175, Neg. LLF: 121.56961756775912
Iteration: 19, Func. Count: 184, Neg. LLF: 121.56950772233435
Iteration: 20, Func. Count: 193, Neg. LLF: 121.56949317449383
Iteration: 21, Func. Count: 202, Neg. LLF: 121.56949222652288
Optimization terminated successfully (Exit mode 0)
Current function value: 121.56949222652288
Iterations: 21
Function evaluations: 202
Gradient evaluations: 21
Iteration: 1, Func. Count: 11, Neg. LLF: 130.3017244455008
Iteration: 2, Func. Count: 23, Neg. LLF: 134.73228235978812
Iteration: 3, Func. Count: 34, Neg. LLF: 124.10365310243905
Iteration: 4, Func. Count: 44, Neg. LLF: 123.28752694220562
Iteration: 5, Func. Count: 54, Neg. LLF: 124.0204213500679
Iteration: 6, Func. Count: 65, Neg. LLF: 125.7251606228638
Iteration: 7, Func. Count: 76, Neg. LLF: 155.60016709972842
Iteration: 8, Func. Count: 87, Neg. LLF: 122.61213253798816
Iteration: 9, Func. Count: 98, Neg. LLF: 129.62010011566863
Iteration: 10, Func. Count: 109, Neg. LLF: 121.81282275641507
Iteration: 11, Func. Count: 119, Neg. LLF: 121.65616399742208
Iteration: 12, Func. Count: 129, Neg. LLF: 121.60083214230193
Iteration: 13, Func. Count: 139, Neg. LLF: 121.57367078821821
Iteration: 14, Func. Count: 149, Neg. LLF: 121.57127159858769
Iteration: 15, Func. Count: 159, Neg. LLF: 121.57010831939968
Iteration: 16, Func. Count: 169, Neg. LLF: 121.56972941438012
Iteration: 17, Func. Count: 179, Neg. LLF: 121.5695066944742
Iteration: 18, Func. Count: 189, Neg. LLF: 121.56949284340342
Iteration: 19, Func. Count: 199, Neg. LLF: 121.56949207953944
Optimization terminated successfully (Exit mode 0)
Current function value: 121.56949207953944
Iterations: 19
Function evaluations: 199
Gradient evaluations: 19
Iteration: 1, Func. Count: 8, Neg. LLF: 129.07610925724396
Iteration: 2, Func. Count: 16, Neg. LLF: 127.09870901487407
Iteration: 3, Func. Count: 23, Neg. LLF: 127.45354816896456
Iteration: 4, Func. Count: 32, Neg. LLF: 142.43228690142195
Iteration: 5, Func. Count: 43, Neg. LLF: 142.06879379984957
Iteration: 6, Func. Count: 51, Neg. LLF: 126.18309489277979
Iteration: 7, Func. Count: 58, Neg. LLF: 127.90070170644617
Iteration: 8, Func. Count: 66, Neg. LLF: 126.1228718957041
Iteration: 9, Func. Count: 73, Neg. LLF: 126.11100658833736
Iteration: 10, Func. Count: 80, Neg. LLF: 126.10493464824472
Iteration: 11, Func. Count: 87, Neg. LLF: 126.1029646075957
Iteration: 12, Func. Count: 94, Neg. LLF: 126.10239730068805
Iteration: 13, Func. Count: 101, Neg. LLF: 126.10233400780506
Iteration: 14, Func. Count: 108, Neg. LLF: 126.10229977956752
Iteration: 15, Func. Count: 114, Neg. LLF: 126.10229977963415
Optimization terminated successfully (Exit mode 0)
Current function value: 126.10229977956752
Iterations: 15
Function evaluations: 114
Gradient evaluations: 15
Iteration: 1, Func. Count: 9, Neg. LLF: 128.62885968574318
Iteration: 2, Func. Count: 18, Neg. LLF: 132.20135026857045
Iteration: 3, Func. Count: 27, Neg. LLF: 142.5709975506089
Iteration: 4, Func. Count: 37, Neg. LLF: 126.32538750778085
Iteration: 5, Func. Count: 46, Neg. LLF: 435.7673548733865
Iteration: 6, Func. Count: 55, Neg. LLF: 132.70372419102063
Iteration: 7, Func. Count: 64, Neg. LLF: 125.58521606388794
Iteration: 8, Func. Count: 73, Neg. LLF: 123.73056559356537
Iteration: 9, Func. Count: 81, Neg. LLF: 123.60416302946724
Iteration: 10, Func. Count: 89, Neg. LLF: 128.8079330646759
Iteration: 11, Func. Count: 98, Neg. LLF: 123.57753872808767
Iteration: 12, Func. Count: 107, Neg. LLF: 123.06704166551393
Iteration: 13, Func. Count: 115, Neg. LLF: 123.03941320277823
Iteration: 14, Func. Count: 123, Neg. LLF: 123.03774645577548
Iteration: 15, Func. Count: 131, Neg. LLF: 123.03770449795657
Iteration: 16, Func. Count: 139, Neg. LLF: 123.03770186103462
Iteration: 17, Func. Count: 146, Neg. LLF: 123.03770179515303
Optimization terminated successfully (Exit mode 0)
Current function value: 123.03770186103462
Iterations: 17
Function evaluations: 146
Gradient evaluations: 17
Iteration: 1, Func. Count: 10, Neg. LLF: 128.0572974197493
Iteration: 2, Func. Count: 20, Neg. LLF: 134.31360608143285
Iteration: 3, Func. Count: 30, Neg. LLF: 137.98650106684977
Iteration: 4, Func. Count: 40, Neg. LLF: 126.14993638433056
Iteration: 5, Func. Count: 50, Neg. LLF: 286.35753436136145
Iteration: 6, Func. Count: 60, Neg. LLF: 126.81682644676356
Iteration: 7, Func. Count: 70, Neg. LLF: 125.26556786244652
Iteration: 8, Func. Count: 80, Neg. LLF: 123.37843808365142
Iteration: 9, Func. Count: 90, Neg. LLF: 123.0027813146372
Iteration: 10, Func. Count: 99, Neg. LLF: 123.70424350901138
Iteration: 11, Func. Count: 109, Neg. LLF: 124.1028392479842
Iteration: 12, Func. Count: 120, Neg. LLF: 122.63397595676382
Iteration: 13, Func. Count: 129, Neg. LLF: 122.63128366242873
Iteration: 14, Func. Count: 138, Neg. LLF: 122.63091191356034
Iteration: 15, Func. Count: 147, Neg. LLF: 122.63086567619537
Iteration: 16, Func. Count: 156, Neg. LLF: 122.63085872022376
Iteration: 17, Func. Count: 164, Neg. LLF: 122.63085868473448
Optimization terminated successfully (Exit mode 0)
Current function value: 122.63085872022376
Iterations: 17
Function evaluations: 164
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 129.58279033336078
Iteration: 2, Func. Count: 22, Neg. LLF: 131.22263040447194
Iteration: 3, Func. Count: 33, Neg. LLF: 139.09625459255452
Iteration: 4, Func. Count: 44, Neg. LLF: 130.76833902034727
Iteration: 5, Func. Count: 55, Neg. LLF: 138.59912291185427
Iteration: 6, Func. Count: 66, Neg. LLF: 127.442355959624
Iteration: 7, Func. Count: 77, Neg. LLF: 163.9911696752255
Iteration: 8, Func. Count: 88, Neg. LLF: 122.47459553087828
Iteration: 9, Func. Count: 98, Neg. LLF: 123.12688482315579
Iteration: 10, Func. Count: 109, Neg. LLF: 124.82077337046161
Iteration: 11, Func. Count: 120, Neg. LLF: 122.12577262773426
Iteration: 12, Func. Count: 131, Neg. LLF: 122.0458631957839
Iteration: 13, Func. Count: 141, Neg. LLF: 122.03063673533993
Iteration: 14, Func. Count: 151, Neg. LLF: 122.02026184903194
Iteration: 15, Func. Count: 161, Neg. LLF: 122.01412192254458
Iteration: 16, Func. Count: 171, Neg. LLF: 122.01304171869188
Iteration: 17, Func. Count: 181, Neg. LLF: 122.01284523233016
Iteration: 18, Func. Count: 191, Neg. LLF: 122.01284282725061
Iteration: 19, Func. Count: 200, Neg. LLF: 122.01284277997519
Optimization terminated successfully (Exit mode 0)
Current function value: 122.01284282725061
Iterations: 19
Function evaluations: 200
Gradient evaluations: 19
Iteration: 1, Func. Count: 12, Neg. LLF: 129.423042560212
Iteration: 2, Func. Count: 24, Neg. LLF: 130.10652200366243
Iteration: 3, Func. Count: 36, Neg. LLF: 149.27613648770708
Iteration: 4, Func. Count: 48, Neg. LLF: 129.30357426222616
Iteration: 5, Func. Count: 61, Neg. LLF: 158.5392136906003
Iteration: 6, Func. Count: 73, Neg. LLF: 188.735947524956
Iteration: 7, Func. Count: 85, Neg. LLF: 152.7329133255528
Iteration: 8, Func. Count: 97, Neg. LLF: 149.3661127135997
Iteration: 9, Func. Count: 109, Neg. LLF: 123.25770740595307
Iteration: 10, Func. Count: 120, Neg. LLF: 124.8135172194527
Iteration: 11, Func. Count: 132, Neg. LLF: 141.3990624920632
Iteration: 12, Func. Count: 145, Neg. LLF: 123.988257928217
Iteration: 13, Func. Count: 157, Neg. LLF: 122.08176395163399
Iteration: 14, Func. Count: 168, Neg. LLF: 122.03823617187399
Iteration: 15, Func. Count: 179, Neg. LLF: 122.02987261860349
Iteration: 16, Func. Count: 190, Neg. LLF: 122.01672052245324
Iteration: 17, Func. Count: 201, Neg. LLF: 122.01403265044011
Iteration: 18, Func. Count: 212, Neg. LLF: 122.01291047214002
Iteration: 19, Func. Count: 223, Neg. LLF: 122.01284419792623
Iteration: 20, Func. Count: 234, Neg. LLF: 122.01284279870724
Iteration: 21, Func. Count: 244, Neg. LLF: 122.01284287994045
Optimization terminated successfully (Exit mode 0)
Current function value: 122.01284279870724
Iterations: 21
Function evaluations: 244
Gradient evaluations: 21
Iteration: 1, Func. Count: 9, Neg. LLF: 129.3325906145054
Iteration: 2, Func. Count: 18, Neg. LLF: 128.14719153177538
Iteration: 3, Func. Count: 27, Neg. LLF: 126.77336516632471
Iteration: 4, Func. Count: 36, Neg. LLF: 126.76979579951062
Iteration: 5, Func. Count: 45, Neg. LLF: 126.72261534677062
Iteration: 6, Func. Count: 54, Neg. LLF: 126.33530040100587
Iteration: 7, Func. Count: 63, Neg. LLF: 126.17989120528472
Iteration: 8, Func. Count: 72, Neg. LLF: 126.17011495510965
Iteration: 9, Func. Count: 81, Neg. LLF: 126.13346809566754
Iteration: 10, Func. Count: 90, Neg. LLF: 126.57707523513952
Iteration: 11, Func. Count: 99, Neg. LLF: 126.02329124538394
Iteration: 12, Func. Count: 108, Neg. LLF: 126.00763658980753
Iteration: 13, Func. Count: 116, Neg. LLF: 126.0068158709681
Iteration: 14, Func. Count: 124, Neg. LLF: 126.00663312045484
Iteration: 15, Func. Count: 132, Neg. LLF: 126.00660148835472
Iteration: 16, Func. Count: 140, Neg. LLF: 126.00659689532718
Iteration: 17, Func. Count: 148, Neg. LLF: 126.00659556586065
Iteration: 18, Func. Count: 155, Neg. LLF: 126.00659556587232
Optimization terminated successfully (Exit mode 0)
Current function value: 126.00659556586065
Iterations: 18
Function evaluations: 155
Gradient evaluations: 18
Iteration: 1, Func. Count: 10, Neg. LLF: 128.63993134608998
Iteration: 2, Func. Count: 20, Neg. LLF: 132.19923281523245
Iteration: 3, Func. Count: 30, Neg. LLF: 145.19064891489495
Iteration: 4, Func. Count: 41, Neg. LLF: 126.2712103075862
Iteration: 5, Func. Count: 51, Neg. LLF: 312.287478445542
Iteration: 6, Func. Count: 61, Neg. LLF: 132.2831943802952
Iteration: 7, Func. Count: 71, Neg. LLF: 125.33096603791003
Iteration: 8, Func. Count: 81, Neg. LLF: 123.71133441186552
Iteration: 9, Func. Count: 90, Neg. LLF: 123.34685014449997
Iteration: 10, Func. Count: 99, Neg. LLF: 134.14061524183523
Iteration: 11, Func. Count: 110, Neg. LLF: 123.13233661325638
Iteration: 12, Func. Count: 119, Neg. LLF: 123.05714563326542
Iteration: 13, Func. Count: 128, Neg. LLF: 123.05953454112978
Iteration: 14, Func. Count: 138, Neg. LLF: 123.03777130606701
Iteration: 15, Func. Count: 147, Neg. LLF: 123.03770217222323
Iteration: 16, Func. Count: 155, Neg. LLF: 123.03770210635383
Optimization terminated successfully (Exit mode 0)
Current function value: 123.03770217222323
Iterations: 16
Function evaluations: 155
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 128.01490246616297
Iteration: 2, Func. Count: 22, Neg. LLF: 134.36172385991938
Iteration: 3, Func. Count: 33, Neg. LLF: 138.03410269858492
Iteration: 4, Func. Count: 44, Neg. LLF: 125.79409020389619
Iteration: 5, Func. Count: 55, Neg. LLF: 295.7844282976515
Iteration: 6, Func. Count: 66, Neg. LLF: 126.05098854846659
Iteration: 7, Func. Count: 77, Neg. LLF: 123.67387199794075
Iteration: 8, Func. Count: 88, Neg. LLF: 124.47471707197245
Iteration: 9, Func. Count: 99, Neg. LLF: 123.11928845991774
Iteration: 10, Func. Count: 110, Neg. LLF: 122.79625963005682
Iteration: 11, Func. Count: 120, Neg. LLF: 126.18679955510665
Iteration: 12, Func. Count: 132, Neg. LLF: 122.6483480536427
Iteration: 13, Func. Count: 142, Neg. LLF: 122.63179053655088
Iteration: 14, Func. Count: 152, Neg. LLF: 122.63094998933869
Iteration: 15, Func. Count: 162, Neg. LLF: 122.63086257767294
Iteration: 16, Func. Count: 172, Neg. LLF: 122.63085859573809
Iteration: 17, Func. Count: 181, Neg. LLF: 122.63085856004855
Optimization terminated successfully (Exit mode 0)
Current function value: 122.63085859573809
Iterations: 17
Function evaluations: 181
Gradient evaluations: 17
Iteration: 1, Func. Count: 12, Neg. LLF: 129.60369049301352
Iteration: 2, Func. Count: 24, Neg. LLF: 131.18585482165284
Iteration: 3, Func. Count: 36, Neg. LLF: 139.18199079238073
Iteration: 4, Func. Count: 48, Neg. LLF: 130.87258894481457
Iteration: 5, Func. Count: 60, Neg. LLF: 136.73606927523355
Iteration: 6, Func. Count: 72, Neg. LLF: 131.84428934233296
Iteration: 7, Func. Count: 84, Neg. LLF: 160.65117556023964
Iteration: 8, Func. Count: 96, Neg. LLF: 122.84498325964049
Iteration: 9, Func. Count: 107, Neg. LLF: 122.68679047164161
Iteration: 10, Func. Count: 119, Neg. LLF: 124.41517986555313
Iteration: 11, Func. Count: 132, Neg. LLF: 122.05506304799802
Iteration: 12, Func. Count: 143, Neg. LLF: 122.03475471213926
Iteration: 13, Func. Count: 154, Neg. LLF: 122.019885003335
Iteration: 14, Func. Count: 165, Neg. LLF: 122.01460627433738
Iteration: 15, Func. Count: 176, Neg. LLF: 122.01306495429068
Iteration: 16, Func. Count: 187, Neg. LLF: 122.01285379675741
Iteration: 17, Func. Count: 198, Neg. LLF: 122.01284289273367
Iteration: 18, Func. Count: 208, Neg. LLF: 122.0128428455004
Optimization terminated successfully (Exit mode 0)
Current function value: 122.01284289273367
Iterations: 18
Function evaluations: 208
Gradient evaluations: 18
Iteration: 1, Func. Count: 13, Neg. LLF: 129.52514735624368
Iteration: 2, Func. Count: 26, Neg. LLF: 130.07675462080348
Iteration: 3, Func. Count: 39, Neg. LLF: 149.5897199688093
Iteration: 4, Func. Count: 52, Neg. LLF: 133.46862281335254
Iteration: 5, Func. Count: 66, Neg. LLF: 163.27194848763125
Iteration: 6, Func. Count: 79, Neg. LLF: 174.02759815222504
Iteration: 7, Func. Count: 92, Neg. LLF: 154.38730248354182
Iteration: 8, Func. Count: 105, Neg. LLF: 149.3012436312133
Iteration: 9, Func. Count: 118, Neg. LLF: 145.34085518166677
Iteration: 10, Func. Count: 131, Neg. LLF: 123.07992429746689
Iteration: 11, Func. Count: 143, Neg. LLF: 148.2472403689875
Iteration: 12, Func. Count: 156, Neg. LLF: 136.69369592277698
Iteration: 13, Func. Count: 169, Neg. LLF: 128.28623657120986
Iteration: 14, Func. Count: 182, Neg. LLF: 122.15256894075593
Iteration: 15, Func. Count: 194, Neg. LLF: 122.07189771959007
Iteration: 16, Func. Count: 206, Neg. LLF: 122.05298514992737
Iteration: 17, Func. Count: 218, Neg. LLF: 122.04050968884842
Iteration: 18, Func. Count: 230, Neg. LLF: 122.02311107570266
Iteration: 19, Func. Count: 242, Neg. LLF: 122.01488294680394
Iteration: 20, Func. Count: 254, Neg. LLF: 122.01290798093395
Iteration: 21, Func. Count: 266, Neg. LLF: 122.01284312991201
Iteration: 22, Func. Count: 277, Neg. LLF: 122.01284321107276
Optimization terminated successfully (Exit mode 0)
Current function value: 122.01284312991201
Iterations: 22
Function evaluations: 277
Gradient evaluations: 22
Iteration: 1, Func. Count: 10, Neg. LLF: 128.43987603693512
Iteration: 2, Func. Count: 20, Neg. LLF: 127.86911362702313
Iteration: 3, Func. Count: 30, Neg. LLF: 126.72244062014282
Iteration: 4, Func. Count: 40, Neg. LLF: 127.04387006144826
Iteration: 5, Func. Count: 50, Neg. LLF: 127.03741386353674
Iteration: 6, Func. Count: 60, Neg. LLF: 126.16359210910392
Iteration: 7, Func. Count: 69, Neg. LLF: 126.1022293221532
Iteration: 8, Func. Count: 78, Neg. LLF: 126.08517238368471
Iteration: 9, Func. Count: 88, Neg. LLF: 126.10711441416096
Iteration: 10, Func. Count: 98, Neg. LLF: 126.10962250200379
Iteration: 11, Func. Count: 108, Neg. LLF: 126.00984014607108
Iteration: 12, Func. Count: 117, Neg. LLF: 126.00732073810839
Iteration: 13, Func. Count: 126, Neg. LLF: 126.00744547484298
Iteration: 14, Func. Count: 136, Neg. LLF: 126.00660721932054
Iteration: 15, Func. Count: 145, Neg. LLF: 126.00659670997715
Iteration: 16, Func. Count: 154, Neg. LLF: 126.00659558409038
Iteration: 17, Func. Count: 162, Neg. LLF: 126.00659566589903
Optimization terminated successfully (Exit mode 0)
Current function value: 126.00659558409038
Iterations: 17
Function evaluations: 162
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 128.72294696086934
Iteration: 2, Func. Count: 22, Neg. LLF: 132.07849931102743
Iteration: 3, Func. Count: 33, Neg. LLF: 148.88661321977517
Iteration: 4, Func. Count: 45, Neg. LLF: 126.2078355523335
Iteration: 5, Func. Count: 56, Neg. LLF: 334.76868209359066
Iteration: 6, Func. Count: 67, Neg. LLF: 132.1157125580291
Iteration: 7, Func. Count: 78, Neg. LLF: 125.08578084207345
Iteration: 8, Func. Count: 89, Neg. LLF: 123.80963580595102
Iteration: 9, Func. Count: 99, Neg. LLF: 123.49129116185252
Iteration: 10, Func. Count: 109, Neg. LLF: 134.3785158896627
Iteration: 11, Func. Count: 121, Neg. LLF: 123.2460967194725
Iteration: 12, Func. Count: 131, Neg. LLF: 123.4541139148554
Iteration: 13, Func. Count: 142, Neg. LLF: 123.06641066373533
Iteration: 14, Func. Count: 152, Neg. LLF: 123.04002561674923
Iteration: 15, Func. Count: 162, Neg. LLF: 123.03796981076594
Iteration: 16, Func. Count: 172, Neg. LLF: 123.0377146699439
Iteration: 17, Func. Count: 182, Neg. LLF: 123.03770234210658
Iteration: 18, Func. Count: 192, Neg. LLF: 123.03770175796312
Optimization terminated successfully (Exit mode 0)
Current function value: 123.03770175796312
Iterations: 18
Function evaluations: 192
Gradient evaluations: 18
Iteration: 1, Func. Count: 12, Neg. LLF: 128.09198984511684
Iteration: 2, Func. Count: 24, Neg. LLF: 134.12368607817842
Iteration: 3, Func. Count: 36, Neg. LLF: 138.72721867090073
Iteration: 4, Func. Count: 48, Neg. LLF: 125.28303615674653
Iteration: 5, Func. Count: 60, Neg. LLF: 305.6363140104769
Iteration: 6, Func. Count: 72, Neg. LLF: 125.4871691047268
Iteration: 7, Func. Count: 84, Neg. LLF: 123.57148707505009
Iteration: 8, Func. Count: 96, Neg. LLF: 122.96077132975141
Iteration: 9, Func. Count: 107, Neg. LLF: 124.33652904010968
Iteration: 10, Func. Count: 119, Neg. LLF: 122.99997054574315
Iteration: 11, Func. Count: 131, Neg. LLF: 122.68496007196828
Iteration: 12, Func. Count: 143, Neg. LLF: 122.63972407144603
Iteration: 13, Func. Count: 154, Neg. LLF: 122.63087914879469
Iteration: 14, Func. Count: 165, Neg. LLF: 122.63085969136007
Iteration: 15, Func. Count: 176, Neg. LLF: 122.63085860498252
Iteration: 16, Func. Count: 186, Neg. LLF: 122.63085856936628
Optimization terminated successfully (Exit mode 0)
Current function value: 122.63085860498252
Iterations: 16
Function evaluations: 186
Gradient evaluations: 16
Iteration: 1, Func. Count: 13, Neg. LLF: 129.64191312021038
Iteration: 2, Func. Count: 26, Neg. LLF: 131.23144132432228
Iteration: 3, Func. Count: 39, Neg. LLF: 138.81737751737919
Iteration: 4, Func. Count: 52, Neg. LLF: 130.76380344497423
Iteration: 5, Func. Count: 65, Neg. LLF: 135.9694970086095
Iteration: 6, Func. Count: 78, Neg. LLF: 146.05732836445188
Iteration: 7, Func. Count: 91, Neg. LLF: 160.12169220215125
Iteration: 8, Func. Count: 104, Neg. LLF: 123.47201914438742
Iteration: 9, Func. Count: 116, Neg. LLF: 122.96240896763658
Iteration: 10, Func. Count: 129, Neg. LLF: 123.57607569925656
Iteration: 11, Func. Count: 142, Neg. LLF: 124.36689696555017
Iteration: 12, Func. Count: 155, Neg. LLF: 122.07431656438916
Iteration: 13, Func. Count: 167, Neg. LLF: 122.05271631531912
Iteration: 14, Func. Count: 179, Neg. LLF: 122.0221371763142
Iteration: 15, Func. Count: 191, Neg. LLF: 122.01627283498493
Iteration: 16, Func. Count: 203, Neg. LLF: 122.01309167917388
Iteration: 17, Func. Count: 215, Neg. LLF: 122.01284569666359
Iteration: 18, Func. Count: 227, Neg. LLF: 122.01284283468304
Iteration: 19, Func. Count: 238, Neg. LLF: 122.01284278747015
Optimization terminated successfully (Exit mode 0)
Current function value: 122.01284283468304
Iterations: 19
Function evaluations: 238
Gradient evaluations: 19
Iteration: 1, Func. Count: 14, Neg. LLF: 129.51077135302592
Iteration: 2, Func. Count: 28, Neg. LLF: 130.104833873968
Iteration: 3, Func. Count: 42, Neg. LLF: 148.57312885037229
Iteration: 4, Func. Count: 56, Neg. LLF: 135.98247891910782
Iteration: 5, Func. Count: 71, Neg. LLF: 169.6266562817287
Iteration: 6, Func. Count: 85, Neg. LLF: 184.97184987393945
Iteration: 7, Func. Count: 99, Neg. LLF: 156.81843885483528
Iteration: 8, Func. Count: 113, Neg. LLF: 149.48833089820886
Iteration: 9, Func. Count: 127, Neg. LLF: 146.12265294123688
Iteration: 10, Func. Count: 141, Neg. LLF: 123.11754970642959
Iteration: 11, Func. Count: 154, Neg. LLF: 152.74380016317835
Iteration: 12, Func. Count: 168, Neg. LLF: 141.74861519793174
Iteration: 13, Func. Count: 182, Neg. LLF: 124.29116641939487
Iteration: 14, Func. Count: 196, Neg. LLF: 122.11442182514745
Iteration: 15, Func. Count: 209, Neg. LLF: 122.06158012504852
Iteration: 16, Func. Count: 222, Neg. LLF: 122.046974420073
Iteration: 17, Func. Count: 235, Neg. LLF: 122.02717208231881
Iteration: 18, Func. Count: 248, Neg. LLF: 122.01660621952506
Iteration: 19, Func. Count: 261, Neg. LLF: 122.01304036896627
Iteration: 20, Func. Count: 274, Neg. LLF: 122.01284693395644
Iteration: 21, Func. Count: 287, Neg. LLF: 122.0128430771377
Iteration: 22, Func. Count: 299, Neg. LLF: 122.01284315836988
Optimization terminated successfully (Exit mode 0)
Current function value: 122.0128430771377
Iterations: 22
Function evaluations: 299
Gradient evaluations: 22
Iteration: 1, Func. Count: 7, Neg. LLF: 131.59213162044577
Iteration: 2, Func. Count: 14, Neg. LLF: 135.1246127862888
Iteration: 3, Func. Count: 21, Neg. LLF: 126.43980751444752
Iteration: 4, Func. Count: 27, Neg. LLF: 127.05176025692803
Iteration: 5, Func. Count: 35, Neg. LLF: 126.37491151351907
Iteration: 6, Func. Count: 41, Neg. LLF: 126.37117146000476
Iteration: 7, Func. Count: 47, Neg. LLF: 126.37075316749728
Iteration: 8, Func. Count: 53, Neg. LLF: 126.37074131014009
Iteration: 9, Func. Count: 59, Neg. LLF: 126.37074063960442
Optimization terminated successfully (Exit mode 0)
Current function value: 126.37074063960442
Iterations: 9
Function evaluations: 59
Gradient evaluations: 9
Iteration: 1, Func. Count: 8, Neg. LLF: 133.72030477232445
Iteration: 2, Func. Count: 16, Neg. LLF: 137.22866288175268
Iteration: 3, Func. Count: 24, Neg. LLF: 125.99507238913984
Iteration: 4, Func. Count: 32, Neg. LLF: 126.07786318410453
Iteration: 5, Func. Count: 40, Neg. LLF: 127.43327130547247
Iteration: 6, Func. Count: 48, Neg. LLF: 125.86097244394011
Iteration: 7, Func. Count: 55, Neg. LLF: 125.91060186063756
Iteration: 8, Func. Count: 63, Neg. LLF: 125.85757700744793
Iteration: 9, Func. Count: 70, Neg. LLF: 125.85747191128971
Iteration: 10, Func. Count: 76, Neg. LLF: 125.85747191145202
Optimization terminated successfully (Exit mode 0)
Current function value: 125.85747191128971
Iterations: 10
Function evaluations: 76
Gradient evaluations: 10
Iteration: 1, Func. Count: 9, Neg. LLF: 129.6185773254445
Iteration: 2, Func. Count: 19, Neg. LLF: 129.72549052019582
Iteration: 3, Func. Count: 28, Neg. LLF: 126.25799949759084
Iteration: 4, Func. Count: 37, Neg. LLF: 125.87247368116627
Iteration: 5, Func. Count: 45, Neg. LLF: 125.79533427811779
Iteration: 6, Func. Count: 53, Neg. LLF: 125.76958694905483
Iteration: 7, Func. Count: 61, Neg. LLF: 130.41486548846515
Iteration: 8, Func. Count: 71, Neg. LLF: 125.74701603560479
Iteration: 9, Func. Count: 79, Neg. LLF: 125.72968283762137
Iteration: 10, Func. Count: 87, Neg. LLF: 125.725606224766
Iteration: 11, Func. Count: 95, Neg. LLF: 125.72495164005439
Iteration: 12, Func. Count: 103, Neg. LLF: 125.72490313169722
Iteration: 13, Func. Count: 110, Neg. LLF: 125.72490313179453
Optimization terminated successfully (Exit mode 0)
Current function value: 125.72490313169722
Iterations: 13
Function evaluations: 110
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 129.559768104393
Iteration: 2, Func. Count: 22, Neg. LLF: 129.92065363712894
Iteration: 3, Func. Count: 33, Neg. LLF: 126.11918135473684
Iteration: 4, Func. Count: 42, Neg. LLF: 126.07673171436394
Iteration: 5, Func. Count: 51, Neg. LLF: 126.01489060705968
Iteration: 6, Func. Count: 60, Neg. LLF: 125.93901496674334
Iteration: 7, Func. Count: 69, Neg. LLF: 125.85989875146731
Iteration: 8, Func. Count: 78, Neg. LLF: 125.8173304779789
Iteration: 9, Func. Count: 87, Neg. LLF: 125.75603031987977
Iteration: 10, Func. Count: 96, Neg. LLF: 125.74129065547442
Iteration: 11, Func. Count: 105, Neg. LLF: 125.73145807998742
Iteration: 12, Func. Count: 114, Neg. LLF: 125.72687209845657
Iteration: 13, Func. Count: 123, Neg. LLF: 125.72509516093933
Iteration: 14, Func. Count: 132, Neg. LLF: 125.7249047159815
Iteration: 15, Func. Count: 141, Neg. LLF: 125.72490274182306
Iteration: 16, Func. Count: 149, Neg. LLF: 125.72490278916355
Optimization terminated successfully (Exit mode 0)
Current function value: 125.72490274182306
Iterations: 16
Function evaluations: 149
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 129.53929421377902
Iteration: 2, Func. Count: 24, Neg. LLF: 127.54244912207213
Iteration: 3, Func. Count: 35, Neg. LLF: 126.09263582981154
Iteration: 4, Func. Count: 45, Neg. LLF: 126.21625890158563
Iteration: 5, Func. Count: 56, Neg. LLF: 125.922637743488
Iteration: 6, Func. Count: 66, Neg. LLF: 126.86712414557627
Iteration: 7, Func. Count: 78, Neg. LLF: 126.3250471344268
Iteration: 8, Func. Count: 89, Neg. LLF: 125.82372085618147
Iteration: 9, Func. Count: 99, Neg. LLF: 125.73721124827142
Iteration: 10, Func. Count: 109, Neg. LLF: 125.72536518997424
Iteration: 11, Func. Count: 119, Neg. LLF: 125.7249675034055
Iteration: 12, Func. Count: 129, Neg. LLF: 125.7249250750957
Iteration: 13, Func. Count: 139, Neg. LLF: 125.72491694366488
Iteration: 14, Func. Count: 149, Neg. LLF: 125.72490555554755
Iteration: 15, Func. Count: 159, Neg. LLF: 125.72490293360646
Iteration: 16, Func. Count: 168, Neg. LLF: 125.72490302457331
Optimization terminated successfully (Exit mode 0)
Current function value: 125.72490293360646
Iterations: 16
Function evaluations: 168
Gradient evaluations: 16
Iteration: 1, Func. Count: 8, Neg. LLF: 131.22462460272735
Iteration: 2, Func. Count: 16, Neg. LLF: 133.87479527959712
Iteration: 3, Func. Count: 24, Neg. LLF: 126.44003444327407
Iteration: 4, Func. Count: 31, Neg. LLF: 127.07720836337575
Iteration: 5, Func. Count: 40, Neg. LLF: 128.7555500437095
Iteration: 6, Func. Count: 50, Neg. LLF: 126.37066452952368
Iteration: 7, Func. Count: 57, Neg. LLF: 126.36704227824367
Iteration: 8, Func. Count: 64, Neg. LLF: 126.36655734967698
Iteration: 9, Func. Count: 71, Neg. LLF: 126.36654241238939
Iteration: 10, Func. Count: 77, Neg. LLF: 126.36654241235529
Optimization terminated successfully (Exit mode 0)
Current function value: 126.36654241238939
Iterations: 10
Function evaluations: 77
Gradient evaluations: 10
Iteration: 1, Func. Count: 9, Neg. LLF: 130.49999193476435
Iteration: 2, Func. Count: 19, Neg. LLF: 131.1662046880176
Iteration: 3, Func. Count: 28, Neg. LLF: 131.47437126083162
Iteration: 4, Func. Count: 38, Neg. LLF: 126.07557246913183
Iteration: 5, Func. Count: 46, Neg. LLF: 126.01783422276483
Iteration: 6, Func. Count: 54, Neg. LLF: 126.02294023434521
Iteration: 7, Func. Count: 63, Neg. LLF: 125.82765377605185
Iteration: 8, Func. Count: 71, Neg. LLF: 125.78054330892277
Iteration: 9, Func. Count: 79, Neg. LLF: 125.72789240595023
Iteration: 10, Func. Count: 87, Neg. LLF: 125.70564082491171
Iteration: 11, Func. Count: 95, Neg. LLF: 125.6916043726547
Iteration: 12, Func. Count: 103, Neg. LLF: 125.51245235577098
Iteration: 13, Func. Count: 111, Neg. LLF: 124.00019861629016
Iteration: 14, Func. Count: 119, Neg. LLF: 124.79332524871336
Iteration: 15, Func. Count: 128, Neg. LLF: 123.8702378751014
Iteration: 16, Func. Count: 137, Neg. LLF: 123.82622414343524
Iteration: 17, Func. Count: 145, Neg. LLF: 123.82599875213336
Iteration: 18, Func. Count: 153, Neg. LLF: 123.82599710093814
Iteration: 19, Func. Count: 160, Neg. LLF: 123.82599700578861
Optimization terminated successfully (Exit mode 0)
Current function value: 123.82599710093814
Iterations: 19
Function evaluations: 160
Gradient evaluations: 19
Iteration: 1, Func. Count: 10, Neg. LLF: 129.61544812751163
Iteration: 2, Func. Count: 21, Neg. LLF: 129.6765039822108
Iteration: 3, Func. Count: 31, Neg. LLF: 126.2474371244271
Iteration: 4, Func. Count: 41, Neg. LLF: 125.86290253795326
Iteration: 5, Func. Count: 50, Neg. LLF: 128.80155870618526
Iteration: 6, Func. Count: 61, Neg. LLF: 125.7799663940917
Iteration: 7, Func. Count: 70, Neg. LLF: 125.74435105534499
Iteration: 8, Func. Count: 79, Neg. LLF: 125.72935454260184
Iteration: 9, Func. Count: 88, Neg. LLF: 125.71400997646882
Iteration: 10, Func. Count: 97, Neg. LLF: 125.7097596467663
Iteration: 11, Func. Count: 106, Neg. LLF: 125.70877744799974
Iteration: 12, Func. Count: 115, Neg. LLF: 125.70876713169206
Iteration: 13, Func. Count: 123, Neg. LLF: 125.70876713175244
Optimization terminated successfully (Exit mode 0)
Current function value: 125.70876713169206
Iterations: 13
Function evaluations: 123
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 130.48964384360528
Iteration: 2, Func. Count: 23, Neg. LLF: 135.49733634758493
Iteration: 3, Func. Count: 34, Neg. LLF: 125.59001666765904
Iteration: 4, Func. Count: 44, Neg. LLF: 123.45440673194281
Iteration: 5, Func. Count: 54, Neg. LLF: 175.27524659823104
Iteration: 6, Func. Count: 66, Neg. LLF: 121.74507485195934
Iteration: 7, Func. Count: 76, Neg. LLF: 121.67184045986068
Iteration: 8, Func. Count: 86, Neg. LLF: 123.05639738994239
Iteration: 9, Func. Count: 97, Neg. LLF: 121.5938410749781
Iteration: 10, Func. Count: 107, Neg. LLF: 121.61003889632434
Iteration: 11, Func. Count: 118, Neg. LLF: 121.62217065030826
Iteration: 12, Func. Count: 129, Neg. LLF: 121.57068467498551
Iteration: 13, Func. Count: 139, Neg. LLF: 121.56950225797851
Iteration: 14, Func. Count: 149, Neg. LLF: 121.56949214976295
Iteration: 15, Func. Count: 158, Neg. LLF: 121.56949211894032
Optimization terminated successfully (Exit mode 0)
Current function value: 121.56949214976295
Iterations: 15
Function evaluations: 158
Gradient evaluations: 15
Iteration: 1, Func. Count: 12, Neg. LLF: 130.17328629824826
Iteration: 2, Func. Count: 25, Neg. LLF: 134.69131699990766
Iteration: 3, Func. Count: 37, Neg. LLF: 124.0500119465803
Iteration: 4, Func. Count: 48, Neg. LLF: 127.84658860624451
Iteration: 5, Func. Count: 60, Neg. LLF: 123.53989710015625
Iteration: 6, Func. Count: 72, Neg. LLF: 121.96978440895587
Iteration: 7, Func. Count: 83, Neg. LLF: 149.58942344350677
Iteration: 8, Func. Count: 95, Neg. LLF: 123.56634850931997
Iteration: 9, Func. Count: 107, Neg. LLF: 121.63240298659476
Iteration: 10, Func. Count: 118, Neg. LLF: 121.60310560788038
Iteration: 11, Func. Count: 129, Neg. LLF: 121.61284224295873
Iteration: 12, Func. Count: 141, Neg. LLF: 121.57544162255206
Iteration: 13, Func. Count: 152, Neg. LLF: 121.56987587395217
Iteration: 14, Func. Count: 163, Neg. LLF: 121.5695162873003
Iteration: 15, Func. Count: 174, Neg. LLF: 121.56949217257483
Iteration: 16, Func. Count: 184, Neg. LLF: 121.56949217278085
Optimization terminated successfully (Exit mode 0)
Current function value: 121.56949217257483
Iterations: 16
Function evaluations: 184
Gradient evaluations: 16
Iteration: 1, Func. Count: 9, Neg. LLF: 130.0069445089117
Iteration: 2, Func. Count: 18, Neg. LLF: 131.40990603841607
Iteration: 3, Func. Count: 29, Neg. LLF: 130.85598211720065
Iteration: 4, Func. Count: 38, Neg. LLF: 126.23340028712109
Iteration: 5, Func. Count: 46, Neg. LLF: 126.72313251821568
Iteration: 6, Func. Count: 55, Neg. LLF: 126.57789133321884
Iteration: 7, Func. Count: 65, Neg. LLF: 126.20895443744195
Iteration: 8, Func. Count: 74, Neg. LLF: 126.15918704555185
Iteration: 9, Func. Count: 83, Neg. LLF: 126.10485279627179
Iteration: 10, Func. Count: 91, Neg. LLF: 126.10265465633327
Iteration: 11, Func. Count: 99, Neg. LLF: 126.10238022764759
Iteration: 12, Func. Count: 107, Neg. LLF: 126.10223276826792
Iteration: 13, Func. Count: 115, Neg. LLF: 126.1021763944364
Iteration: 14, Func. Count: 123, Neg. LLF: 126.10217361577479
Iteration: 15, Func. Count: 131, Neg. LLF: 126.10217300218764
Optimization terminated successfully (Exit mode 0)
Current function value: 126.10217300218764
Iterations: 15
Function evaluations: 131
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 129.56735199909266
Iteration: 2, Func. Count: 21, Neg. LLF: 130.46591697721524
Iteration: 3, Func. Count: 31, Neg. LLF: 125.53599304676843
Iteration: 4, Func. Count: 40, Neg. LLF: 125.17496980727444
Iteration: 5, Func. Count: 49, Neg. LLF: 130.59309789061928
Iteration: 6, Func. Count: 59, Neg. LLF: 124.50433563233462
Iteration: 7, Func. Count: 69, Neg. LLF: 123.82630986345983
Iteration: 8, Func. Count: 79, Neg. LLF: 123.08647886553608
Iteration: 9, Func. Count: 88, Neg. LLF: 123.0575689209481
Iteration: 10, Func. Count: 97, Neg. LLF: 123.04424752325357
Iteration: 11, Func. Count: 106, Neg. LLF: 123.04711391928649
Iteration: 12, Func. Count: 116, Neg. LLF: 123.037732047723
Iteration: 13, Func. Count: 125, Neg. LLF: 123.03770176941197
Iteration: 14, Func. Count: 133, Neg. LLF: 123.03770170363254
Optimization terminated successfully (Exit mode 0)
Current function value: 123.03770176941197
Iterations: 14
Function evaluations: 133
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 128.49518555502328
Iteration: 2, Func. Count: 22, Neg. LLF: 137.320942601198
Iteration: 3, Func. Count: 33, Neg. LLF: 139.0664215687535
Iteration: 4, Func. Count: 44, Neg. LLF: 125.71022726132782
Iteration: 5, Func. Count: 55, Neg. LLF: 215.80792954855062
Iteration: 6, Func. Count: 66, Neg. LLF: 141.78167418514505
Iteration: 7, Func. Count: 77, Neg. LLF: 129.0003377334704
Iteration: 8, Func. Count: 88, Neg. LLF: 122.78823776168173
Iteration: 9, Func. Count: 98, Neg. LLF: 123.92990700784222
Iteration: 10, Func. Count: 109, Neg. LLF: 122.79079992390986
Iteration: 11, Func. Count: 120, Neg. LLF: 122.70062412104753
Iteration: 12, Func. Count: 131, Neg. LLF: 122.63106665114631
Iteration: 13, Func. Count: 141, Neg. LLF: 122.63095191895007
Iteration: 14, Func. Count: 151, Neg. LLF: 122.6308587968832
Iteration: 15, Func. Count: 160, Neg. LLF: 122.63085876119094
Optimization terminated successfully (Exit mode 0)
Current function value: 122.6308587968832
Iterations: 15
Function evaluations: 160
Gradient evaluations: 15
Iteration: 1, Func. Count: 12, Neg. LLF: 129.55430322435004
Iteration: 2, Func. Count: 24, Neg. LLF: 131.44797468373653
Iteration: 3, Func. Count: 37, Neg. LLF: 161.95958416136324
Iteration: 4, Func. Count: 49, Neg. LLF: 127.88651863609697
Iteration: 5, Func. Count: 61, Neg. LLF: 126.0368434766632
Iteration: 6, Func. Count: 73, Neg. LLF: 128.68774307292966
Iteration: 7, Func. Count: 85, Neg. LLF: 150.19010413133708
Iteration: 8, Func. Count: 97, Neg. LLF: 123.72948544953992
Iteration: 9, Func. Count: 109, Neg. LLF: 122.16401947180661
Iteration: 10, Func. Count: 120, Neg. LLF: 122.2631593462685
Iteration: 11, Func. Count: 132, Neg. LLF: 122.3576677021547
Iteration: 12, Func. Count: 144, Neg. LLF: 122.01367158073354
Iteration: 13, Func. Count: 155, Neg. LLF: 122.01319023289524
Iteration: 14, Func. Count: 166, Neg. LLF: 122.01286431758322
Iteration: 15, Func. Count: 177, Neg. LLF: 122.0128434720948
Iteration: 16, Func. Count: 188, Neg. LLF: 122.01284281448707
Optimization terminated successfully (Exit mode 0)
Current function value: 122.01284281448707
Iterations: 16
Function evaluations: 188
Gradient evaluations: 16
Iteration: 1, Func. Count: 13, Neg. LLF: 129.50126203896662
Iteration: 2, Func. Count: 26, Neg. LLF: 130.09928354933183
Iteration: 3, Func. Count: 39, Neg. LLF: 149.18678933521284
Iteration: 4, Func. Count: 52, Neg. LLF: 133.56691343921392
Iteration: 5, Func. Count: 66, Neg. LLF: 163.38854036260764
Iteration: 6, Func. Count: 79, Neg. LLF: 174.86261969174205
Iteration: 7, Func. Count: 92, Neg. LLF: 154.4456891217034
Iteration: 8, Func. Count: 105, Neg. LLF: 149.2395051300557
Iteration: 9, Func. Count: 118, Neg. LLF: 145.35951991159504
Iteration: 10, Func. Count: 131, Neg. LLF: 123.04156709133258
Iteration: 11, Func. Count: 143, Neg. LLF: 148.47545365317038
Iteration: 12, Func. Count: 156, Neg. LLF: 137.01506319893647
Iteration: 13, Func. Count: 169, Neg. LLF: 127.96492478640975
Iteration: 14, Func. Count: 182, Neg. LLF: 122.1458696224578
Iteration: 15, Func. Count: 194, Neg. LLF: 122.06891888194872
Iteration: 16, Func. Count: 206, Neg. LLF: 122.05147062209502
Iteration: 17, Func. Count: 218, Neg. LLF: 122.03919186194766
Iteration: 18, Func. Count: 230, Neg. LLF: 122.0213318995728
Iteration: 19, Func. Count: 242, Neg. LLF: 122.01446127018075
Iteration: 20, Func. Count: 254, Neg. LLF: 122.01288007420652
Iteration: 21, Func. Count: 266, Neg. LLF: 122.0128429407008
Iteration: 22, Func. Count: 277, Neg. LLF: 122.01284302189654
Optimization terminated successfully (Exit mode 0)
Current function value: 122.0128429407008
Iterations: 22
Function evaluations: 277
Gradient evaluations: 22
Iteration: 1, Func. Count: 10, Neg. LLF: 132.9038178459015
Iteration: 2, Func. Count: 20, Neg. LLF: 136.48377788881203
Iteration: 3, Func. Count: 30, Neg. LLF: 126.88418703435389
Iteration: 4, Func. Count: 40, Neg. LLF: 128.10146311539822
Iteration: 5, Func. Count: 50, Neg. LLF: 127.32837847485752
Iteration: 6, Func. Count: 60, Neg. LLF: 126.96885261824687
Iteration: 7, Func. Count: 70, Neg. LLF: 126.06219318959114
Iteration: 8, Func. Count: 79, Neg. LLF: 126.12298336211266
Iteration: 9, Func. Count: 89, Neg. LLF: 126.63565916999531
Iteration: 10, Func. Count: 100, Neg. LLF: 126.01045774294843
Iteration: 11, Func. Count: 109, Neg. LLF: 126.00714352736072
Iteration: 12, Func. Count: 118, Neg. LLF: 126.0066339764995
Iteration: 13, Func. Count: 127, Neg. LLF: 126.00660241761976
Iteration: 14, Func. Count: 136, Neg. LLF: 126.0065958333807
Iteration: 15, Func. Count: 144, Neg. LLF: 126.00659583335818
Optimization terminated successfully (Exit mode 0)
Current function value: 126.0065958333807
Iterations: 15
Function evaluations: 144
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 130.80326247040972
Iteration: 2, Func. Count: 22, Neg. LLF: 129.0219446276311
Iteration: 3, Func. Count: 33, Neg. LLF: 229.89627355238878
Iteration: 4, Func. Count: 45, Neg. LLF: 126.74660112543162
Iteration: 5, Func. Count: 57, Neg. LLF: 124.30870510201382
Iteration: 6, Func. Count: 67, Neg. LLF: 125.75939196358418
Iteration: 7, Func. Count: 79, Neg. LLF: 124.86091489123446
Iteration: 8, Func. Count: 90, Neg. LLF: 122.13507554933248
Iteration: 9, Func. Count: 100, Neg. LLF: 122.03777154318186
Iteration: 10, Func. Count: 110, Neg. LLF: 121.90146009000257
Iteration: 11, Func. Count: 120, Neg. LLF: 121.8440410836205
Iteration: 12, Func. Count: 130, Neg. LLF: 121.8376608273283
Iteration: 13, Func. Count: 140, Neg. LLF: 121.83601643969573
Iteration: 14, Func. Count: 150, Neg. LLF: 121.83598350445969
Iteration: 15, Func. Count: 159, Neg. LLF: 121.83598346697022
Optimization terminated successfully (Exit mode 0)
Current function value: 121.83598350445969
Iterations: 15
Function evaluations: 159
Gradient evaluations: 15
Iteration: 1, Func. Count: 12, Neg. LLF: 128.51404529133325
Iteration: 2, Func. Count: 24, Neg. LLF: 140.1287803872738
Iteration: 3, Func. Count: 36, Neg. LLF: 132.76698715360007
Iteration: 4, Func. Count: 48, Neg. LLF: 124.00757862870027
Iteration: 5, Func. Count: 59, Neg. LLF: 221.0946116498615
Iteration: 6, Func. Count: 71, Neg. LLF: 127.55971465218255
Iteration: 7, Func. Count: 84, Neg. LLF: 126.20623154462926
Iteration: 8, Func. Count: 96, Neg. LLF: 122.8180924807074
Iteration: 9, Func. Count: 107, Neg. LLF: 122.6542868305536
Iteration: 10, Func. Count: 118, Neg. LLF: 123.12369731519213
Iteration: 11, Func. Count: 130, Neg. LLF: 122.63155727664412
Iteration: 12, Func. Count: 141, Neg. LLF: 122.6309419322562
Iteration: 13, Func. Count: 152, Neg. LLF: 122.63086205107398
Iteration: 14, Func. Count: 163, Neg. LLF: 122.63085842069658
Iteration: 15, Func. Count: 173, Neg. LLF: 122.63085838510642
Optimization terminated successfully (Exit mode 0)
Current function value: 122.63085842069658
Iterations: 15
Function evaluations: 173
Gradient evaluations: 15
Iteration: 1, Func. Count: 13, Neg. LLF: 129.59884401223366
Iteration: 2, Func. Count: 26, Neg. LLF: 132.15212385216972
Iteration: 3, Func. Count: 40, Neg. LLF: 186.98256408840135
Iteration: 4, Func. Count: 53, Neg. LLF: 128.37180168130774
Iteration: 5, Func. Count: 66, Neg. LLF: 124.19906422698189
Iteration: 6, Func. Count: 78, Neg. LLF: 142.69560358228176
Iteration: 7, Func. Count: 91, Neg. LLF: 130.07442473845947
Iteration: 8, Func. Count: 106, Neg. LLF: 124.9587364095091
Iteration: 9, Func. Count: 119, Neg. LLF: 123.07147748187066
Iteration: 10, Func. Count: 131, Neg. LLF: 122.19986396988617
Iteration: 11, Func. Count: 143, Neg. LLF: 122.34192654361244
Iteration: 12, Func. Count: 156, Neg. LLF: 122.0343669761425
Iteration: 13, Func. Count: 168, Neg. LLF: 122.02022929747105
Iteration: 14, Func. Count: 180, Neg. LLF: 122.01304336544719
Iteration: 15, Func. Count: 192, Neg. LLF: 122.01287006185879
Iteration: 16, Func. Count: 204, Neg. LLF: 122.01284385084526
Iteration: 17, Func. Count: 216, Neg. LLF: 122.01284286171659
Optimization terminated successfully (Exit mode 0)
Current function value: 122.01284286171659
Iterations: 17
Function evaluations: 216
Gradient evaluations: 17
Iteration: 1, Func. Count: 14, Neg. LLF: 129.5528815811114
Iteration: 2, Func. Count: 28, Neg. LLF: 130.0747470661406
Iteration: 3, Func. Count: 42, Neg. LLF: 149.03139688323958
Iteration: 4, Func. Count: 56, Neg. LLF: 138.22164481537467
Iteration: 5, Func. Count: 71, Neg. LLF: 171.9357815585357
Iteration: 6, Func. Count: 85, Neg. LLF: 181.7524205698448
Iteration: 7, Func. Count: 99, Neg. LLF: 156.8573666903826
Iteration: 8, Func. Count: 113, Neg. LLF: 149.00405408837838
Iteration: 9, Func. Count: 127, Neg. LLF: 146.95677681557217
Iteration: 10, Func. Count: 141, Neg. LLF: 123.1999221089392
Iteration: 11, Func. Count: 154, Neg. LLF: 157.48990166889476
Iteration: 12, Func. Count: 168, Neg. LLF: 147.77703403537117
Iteration: 13, Func. Count: 182, Neg. LLF: 122.22347486649916
Iteration: 14, Func. Count: 195, Neg. LLF: 122.31822493498399
Iteration: 15, Func. Count: 209, Neg. LLF: 122.06573491721184
Iteration: 16, Func. Count: 222, Neg. LLF: 122.04870769674025
Iteration: 17, Func. Count: 235, Neg. LLF: 122.02847100420861
Iteration: 18, Func. Count: 248, Neg. LLF: 122.01521736061764
Iteration: 19, Func. Count: 261, Neg. LLF: 122.01293945941407
Iteration: 20, Func. Count: 274, Neg. LLF: 122.01284404473905
Iteration: 21, Func. Count: 287, Neg. LLF: 122.01284279370579
Iteration: 22, Func. Count: 299, Neg. LLF: 122.01284287494998
Optimization terminated successfully (Exit mode 0)
Current function value: 122.01284279370579
Iterations: 22
Function evaluations: 299
Gradient evaluations: 22
Iteration: 1, Func. Count: 11, Neg. LLF: 130.30392020917446
Iteration: 2, Func. Count: 22, Neg. LLF: 133.50504825169418
Iteration: 3, Func. Count: 33, Neg. LLF: 126.86627938386891
Iteration: 4, Func. Count: 44, Neg. LLF: 127.1019851556421
Iteration: 5, Func. Count: 55, Neg. LLF: 126.65881568003867
Iteration: 6, Func. Count: 66, Neg. LLF: 127.03500351574547
Iteration: 7, Func. Count: 77, Neg. LLF: 126.18698923099281
Iteration: 8, Func. Count: 88, Neg. LLF: 126.19191819267039
Iteration: 9, Func. Count: 99, Neg. LLF: 126.32901942481782
Iteration: 10, Func. Count: 111, Neg. LLF: 126.00818805432516
Iteration: 11, Func. Count: 121, Neg. LLF: 126.00688987035177
Iteration: 12, Func. Count: 131, Neg. LLF: 126.00662947037924
Iteration: 13, Func. Count: 141, Neg. LLF: 126.00659648758652
Iteration: 14, Func. Count: 151, Neg. LLF: 126.00659564752046
Optimization terminated successfully (Exit mode 0)
Current function value: 126.00659564752046
Iterations: 14
Function evaluations: 151
Gradient evaluations: 14
Iteration: 1, Func. Count: 12, Neg. LLF: 130.82746177706665
Iteration: 2, Func. Count: 24, Neg. LLF: 128.99448884414213
Iteration: 3, Func. Count: 36, Neg. LLF: 225.0561349579108
Iteration: 4, Func. Count: 49, Neg. LLF: 128.96017532110235
Iteration: 5, Func. Count: 62, Neg. LLF: 123.10956706768678
Iteration: 6, Func. Count: 73, Neg. LLF: 124.93310552709653
Iteration: 7, Func. Count: 85, Neg. LLF: 127.93554124883062
Iteration: 8, Func. Count: 97, Neg. LLF: 121.9123010768231
Iteration: 9, Func. Count: 108, Neg. LLF: 121.85909108752453
Iteration: 10, Func. Count: 119, Neg. LLF: 121.85242738581344
Iteration: 11, Func. Count: 130, Neg. LLF: 121.8366576062518
Iteration: 12, Func. Count: 141, Neg. LLF: 121.83599633028693
Iteration: 13, Func. Count: 152, Neg. LLF: 121.8359842580283
Iteration: 14, Func. Count: 163, Neg. LLF: 121.83598301597392
Iteration: 15, Func. Count: 173, Neg. LLF: 121.83598297829954
Optimization terminated successfully (Exit mode 0)
Current function value: 121.83598301597392
Iterations: 15
Function evaluations: 173
Gradient evaluations: 15
Iteration: 1, Func. Count: 13, Neg. LLF: 128.57293294886205
Iteration: 2, Func. Count: 26, Neg. LLF: 140.21524187290998
Iteration: 3, Func. Count: 39, Neg. LLF: 133.87551421985714
Iteration: 4, Func. Count: 52, Neg. LLF: 124.10159802803258
Iteration: 5, Func. Count: 64, Neg. LLF: 215.95022658498394
Iteration: 6, Func. Count: 77, Neg. LLF: 127.9090495838662
Iteration: 7, Func. Count: 91, Neg. LLF: 132.56489621122438
Iteration: 8, Func. Count: 104, Neg. LLF: 123.72258978314306
Iteration: 9, Func. Count: 117, Neg. LLF: 123.06141232322824
Iteration: 10, Func. Count: 129, Neg. LLF: 122.85926962499867
Iteration: 11, Func. Count: 141, Neg. LLF: 123.36293315668395
Iteration: 12, Func. Count: 154, Neg. LLF: 122.65578914496292
Iteration: 13, Func. Count: 166, Neg. LLF: 122.6327416333283
Iteration: 14, Func. Count: 178, Neg. LLF: 122.63093558659813
Iteration: 15, Func. Count: 190, Neg. LLF: 122.63086066203992
Iteration: 16, Func. Count: 202, Neg. LLF: 122.63085846568201
Iteration: 17, Func. Count: 213, Neg. LLF: 122.63085843007477
Optimization terminated successfully (Exit mode 0)
Current function value: 122.63085846568201
Iterations: 17
Function evaluations: 213
Gradient evaluations: 17
Iteration: 1, Func. Count: 14, Neg. LLF: 129.64863593867318
Iteration: 2, Func. Count: 28, Neg. LLF: 132.81712463235442
Iteration: 3, Func. Count: 43, Neg. LLF: 204.86093486141363
Iteration: 4, Func. Count: 57, Neg. LLF: 128.94673017937234
Iteration: 5, Func. Count: 71, Neg. LLF: 124.05011347923605
Iteration: 6, Func. Count: 84, Neg. LLF: 149.38557920852116
Iteration: 7, Func. Count: 99, Neg. LLF: 126.95129517394913
Iteration: 8, Func. Count: 114, Neg. LLF: 128.6679133511575
Iteration: 9, Func. Count: 128, Neg. LLF: 124.60301027834296
Iteration: 10, Func. Count: 142, Neg. LLF: 122.37741830379652
Iteration: 11, Func. Count: 155, Neg. LLF: 122.08779253169986
Iteration: 12, Func. Count: 168, Neg. LLF: 122.02827285206887
Iteration: 13, Func. Count: 181, Neg. LLF: 122.02369405805668
Iteration: 14, Func. Count: 194, Neg. LLF: 122.01360704364681
Iteration: 15, Func. Count: 207, Neg. LLF: 122.01314294197631
Iteration: 16, Func. Count: 220, Neg. LLF: 122.01285861937689
Iteration: 17, Func. Count: 233, Neg. LLF: 122.01284403256605
Iteration: 18, Func. Count: 246, Neg. LLF: 122.01284279352689
Iteration: 19, Func. Count: 258, Neg. LLF: 122.0128427462865
Optimization terminated successfully (Exit mode 0)
Current function value: 122.01284279352689
Iterations: 19
Function evaluations: 258
Gradient evaluations: 19
Iteration: 1, Func. Count: 15, Neg. LLF: 129.59660236049868
Iteration: 2, Func. Count: 30, Neg. LLF: 130.09257334044955
Iteration: 3, Func. Count: 45, Neg. LLF: 148.49107254672208
Iteration: 4, Func. Count: 60, Neg. LLF: 139.3100165583861
Iteration: 5, Func. Count: 76, Neg. LLF: 170.50028022400411
Iteration: 6, Func. Count: 91, Neg. LLF: 185.31676843758865
Iteration: 7, Func. Count: 106, Neg. LLF: 157.52980586439656
Iteration: 8, Func. Count: 121, Neg. LLF: 149.37513874487806
Iteration: 9, Func. Count: 136, Neg. LLF: 145.83062027974756
Iteration: 10, Func. Count: 151, Neg. LLF: 123.12065392281444
Iteration: 11, Func. Count: 165, Neg. LLF: 154.3065520270565
Iteration: 12, Func. Count: 180, Neg. LLF: 144.71069388245468
Iteration: 13, Func. Count: 195, Neg. LLF: 123.21228816750532
Iteration: 14, Func. Count: 210, Neg. LLF: 122.09452349860088
Iteration: 15, Func. Count: 224, Neg. LLF: 122.06604527358039
Iteration: 16, Func. Count: 238, Neg. LLF: 122.04877831784988
Iteration: 17, Func. Count: 252, Neg. LLF: 122.02685297513011
Iteration: 18, Func. Count: 266, Neg. LLF: 122.0177695234195
Iteration: 19, Func. Count: 280, Neg. LLF: 122.0130321274978
Iteration: 20, Func. Count: 294, Neg. LLF: 122.01284543691914
Iteration: 21, Func. Count: 308, Neg. LLF: 122.01284282732946
Iteration: 22, Func. Count: 321, Neg. LLF: 122.01284290858078
Optimization terminated successfully (Exit mode 0)
Current function value: 122.01284282732946
Iterations: 22
Function evaluations: 321
Gradient evaluations: 22
Iteration: 1, Func. Count: 8, Neg. LLF: 125.81237681506674
Iteration: 2, Func. Count: 16, Neg. LLF: 193.844903017003
Iteration: 3, Func. Count: 24, Neg. LLF: 124.00837677459808
Iteration: 4, Func. Count: 32, Neg. LLF: 136.34216331286567
Iteration: 5, Func. Count: 40, Neg. LLF: 128.24108705572712
Iteration: 6, Func. Count: 48, Neg. LLF: 128.5918053503148
Iteration: 7, Func. Count: 56, Neg. LLF: 130.52240492176347
Iteration: 8, Func. Count: 64, Neg. LLF: 126.40514284002505
Iteration: 9, Func. Count: 72, Neg. LLF: 120.88440855336633
Iteration: 10, Func. Count: 79, Neg. LLF: 120.84992355025727
Iteration: 11, Func. Count: 86, Neg. LLF: 120.84556370170694
Iteration: 12, Func. Count: 93, Neg. LLF: 120.84521813649968
Iteration: 13, Func. Count: 100, Neg. LLF: 120.8452080461041
Iteration: 14, Func. Count: 107, Neg. LLF: 120.84519338465856
Iteration: 15, Func. Count: 114, Neg. LLF: 120.84518976803932
Iteration: 16, Func. Count: 121, Neg. LLF: 120.84518851457368
Iteration: 17, Func. Count: 127, Neg. LLF: 120.84518851456885
Optimization terminated successfully (Exit mode 0)
Current function value: 120.84518851457368
Iterations: 17
Function evaluations: 127
Gradient evaluations: 17
Iteration: 1, Func. Count: 9, Neg. LLF: 124.33895937401739
Iteration: 2, Func. Count: 18, Neg. LLF: 125.87044086280073
Iteration: 3, Func. Count: 27, Neg. LLF: 124.07765633198345
Iteration: 4, Func. Count: 36, Neg. LLF: 189.73436400882886
Iteration: 5, Func. Count: 45, Neg. LLF: 147.2075397023263
Iteration: 6, Func. Count: 54, Neg. LLF: 132.30655739710562
Iteration: 7, Func. Count: 63, Neg. LLF: 125.24821653636938
Iteration: 8, Func. Count: 72, Neg. LLF: 139.29242818368027
Iteration: 9, Func. Count: 81, Neg. LLF: 120.86854903982778
Iteration: 10, Func. Count: 89, Neg. LLF: 120.84878942281281
Iteration: 11, Func. Count: 97, Neg. LLF: 120.84582970602166
Iteration: 12, Func. Count: 105, Neg. LLF: 120.84523924999243
Iteration: 13, Func. Count: 113, Neg. LLF: 120.84519377964403
Iteration: 14, Func. Count: 121, Neg. LLF: 120.8451887429705
Iteration: 15, Func. Count: 128, Neg. LLF: 120.84518878271358
Optimization terminated successfully (Exit mode 0)
Current function value: 120.8451887429705
Iterations: 15
Function evaluations: 128
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 124.33260380446438
Iteration: 2, Func. Count: 20, Neg. LLF: 127.94055817777225
Iteration: 3, Func. Count: 30, Neg. LLF: 122.94411206841828
Iteration: 4, Func. Count: 40, Neg. LLF: 177.93700976533353
Iteration: 5, Func. Count: 50, Neg. LLF: 880.0982092297633
Iteration: 6, Func. Count: 60, Neg. LLF: 205.67233414087153
Iteration: 7, Func. Count: 71, Neg. LLF: 138.2876704542138
Iteration: 8, Func. Count: 81, Neg. LLF: 120.97756313606688
Iteration: 9, Func. Count: 90, Neg. LLF: 120.86708804743148
Iteration: 10, Func. Count: 99, Neg. LLF: 120.85096114593436
Iteration: 11, Func. Count: 108, Neg. LLF: 120.84593973413133
Iteration: 12, Func. Count: 117, Neg. LLF: 120.84537489027448
Iteration: 13, Func. Count: 126, Neg. LLF: 120.84520407625664
Iteration: 14, Func. Count: 135, Neg. LLF: 120.8451887635909
Iteration: 15, Func. Count: 143, Neg. LLF: 120.8451888306051
Optimization terminated successfully (Exit mode 0)
Current function value: 120.8451887635909
Iterations: 15
Function evaluations: 143
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 124.3422495093052
Iteration: 2, Func. Count: 22, Neg. LLF: 127.33942190383304
Iteration: 3, Func. Count: 33, Neg. LLF: 123.04729674072571
Iteration: 4, Func. Count: 44, Neg. LLF: 131.79295175298705
Iteration: 5, Func. Count: 55, Neg. LLF: 287.69714123474506
Iteration: 6, Func. Count: 66, Neg. LLF: 141.86509067052089
Iteration: 7, Func. Count: 77, Neg. LLF: 120.97647936778027
Iteration: 8, Func. Count: 87, Neg. LLF: 128.57227611827804
Iteration: 9, Func. Count: 98, Neg. LLF: 121.28582498535432
Iteration: 10, Func. Count: 109, Neg. LLF: 120.84802214771071
Iteration: 11, Func. Count: 119, Neg. LLF: 120.8459389829541
Iteration: 12, Func. Count: 129, Neg. LLF: 120.84528731316632
Iteration: 13, Func. Count: 139, Neg. LLF: 120.84520231628397
Iteration: 14, Func. Count: 149, Neg. LLF: 120.84518911246894
Iteration: 15, Func. Count: 159, Neg. LLF: 120.84518847919315
Optimization terminated successfully (Exit mode 0)
Current function value: 120.84518847919315
Iterations: 15
Function evaluations: 159
Gradient evaluations: 15
Iteration: 1, Func. Count: 12, Neg. LLF: 124.10978455803104
Iteration: 2, Func. Count: 23, Neg. LLF: 134.67688605792665
Iteration: 3, Func. Count: 35, Neg. LLF: 124.94697945185814
Iteration: 4, Func. Count: 47, Neg. LLF: 203.45379687799465
Iteration: 5, Func. Count: 59, Neg. LLF: 754.45569846972
Iteration: 6, Func. Count: 71, Neg. LLF: 654.7051303965941
Iteration: 7, Func. Count: 84, Neg. LLF: 137.9175936517018
Iteration: 8, Func. Count: 96, Neg. LLF: 131.94682158619
Iteration: 9, Func. Count: 108, Neg. LLF: 123.31406594209288
Iteration: 10, Func. Count: 120, Neg. LLF: 121.16329756231093
Iteration: 11, Func. Count: 132, Neg. LLF: 120.84987916649494
Iteration: 12, Func. Count: 143, Neg. LLF: 120.84545378246656
Iteration: 13, Func. Count: 154, Neg. LLF: 120.8452378508304
Iteration: 14, Func. Count: 165, Neg. LLF: 120.84519733995948
Iteration: 15, Func. Count: 176, Neg. LLF: 120.84518954219436
Iteration: 16, Func. Count: 187, Neg. LLF: 120.84518848603479
Iteration: 17, Func. Count: 197, Neg. LLF: 120.8451886084093
Optimization terminated successfully (Exit mode 0)
Current function value: 120.84518848603479
Iterations: 17
Function evaluations: 197
Gradient evaluations: 17
Iteration: 1, Func. Count: 9, Neg. LLF: 125.85808103281404
Iteration: 2, Func. Count: 18, Neg. LLF: 198.49722626428706
Iteration: 3, Func. Count: 27, Neg. LLF: 123.68854123372063
Iteration: 4, Func. Count: 36, Neg. LLF: 134.11908323540086
Iteration: 5, Func. Count: 45, Neg. LLF: 127.75712155644715
Iteration: 6, Func. Count: 54, Neg. LLF: 134.9440331534498
Iteration: 7, Func. Count: 63, Neg. LLF: 127.8149709228154
Iteration: 8, Func. Count: 72, Neg. LLF: 133.45394977408336
Iteration: 9, Func. Count: 81, Neg. LLF: 120.92349842630355
Iteration: 10, Func. Count: 89, Neg. LLF: 120.87039540574541
Iteration: 11, Func. Count: 97, Neg. LLF: 120.86385399094478
Iteration: 12, Func. Count: 105, Neg. LLF: 120.84939218082674
Iteration: 13, Func. Count: 113, Neg. LLF: 120.84642953603665
Iteration: 14, Func. Count: 121, Neg. LLF: 120.84485593752522
Iteration: 15, Func. Count: 129, Neg. LLF: 120.8439955658786
Iteration: 16, Func. Count: 137, Neg. LLF: 120.84385353787742
Iteration: 17, Func. Count: 145, Neg. LLF: 120.84379190897369
Iteration: 18, Func. Count: 153, Neg. LLF: 120.84377764948319
Iteration: 19, Func. Count: 161, Neg. LLF: 120.84377656080122
Iteration: 20, Func. Count: 168, Neg. LLF: 120.84377656080719
Optimization terminated successfully (Exit mode 0)
Current function value: 120.84377656080122
Iterations: 20
Function evaluations: 168
Gradient evaluations: 20
Iteration: 1, Func. Count: 10, Neg. LLF: 124.43225767953662
Iteration: 2, Func. Count: 20, Neg. LLF: 126.50482626925624
Iteration: 3, Func. Count: 30, Neg. LLF: 123.69838391251314
Iteration: 4, Func. Count: 40, Neg. LLF: 184.81827746823947
Iteration: 5, Func. Count: 50, Neg. LLF: 140.18050449567147
Iteration: 6, Func. Count: 60, Neg. LLF: 134.50525721732524
Iteration: 7, Func. Count: 70, Neg. LLF: 141.51927485395007
Iteration: 8, Func. Count: 80, Neg. LLF: 122.86240817055487
Iteration: 9, Func. Count: 90, Neg. LLF: 121.5401121457872
Iteration: 10, Func. Count: 100, Neg. LLF: 120.92663205987525
Iteration: 11, Func. Count: 109, Neg. LLF: 120.8499742128219
Iteration: 12, Func. Count: 118, Neg. LLF: 120.84609389826203
Iteration: 13, Func. Count: 127, Neg. LLF: 120.84454946041271
Iteration: 14, Func. Count: 136, Neg. LLF: 120.84389381179714
Iteration: 15, Func. Count: 145, Neg. LLF: 120.84378610463023
Iteration: 16, Func. Count: 154, Neg. LLF: 120.84377772147174
Iteration: 17, Func. Count: 163, Neg. LLF: 120.84377659720604
Iteration: 18, Func. Count: 171, Neg. LLF: 120.84377663663452
Optimization terminated successfully (Exit mode 0)
Current function value: 120.84377659720604
Iterations: 18
Function evaluations: 171
Gradient evaluations: 18
Iteration: 1, Func. Count: 11, Neg. LLF: 124.44131566611343
Iteration: 2, Func. Count: 22, Neg. LLF: 128.83457483361678
Iteration: 3, Func. Count: 33, Neg. LLF: 122.77666013401054
Iteration: 4, Func. Count: 44, Neg. LLF: 173.7704700737959
Iteration: 5, Func. Count: 55, Neg. LLF: 879.5391539198332
Iteration: 6, Func. Count: 66, Neg. LLF: 188.79726602284427
Iteration: 7, Func. Count: 78, Neg. LLF: 141.58694181436033
Iteration: 8, Func. Count: 89, Neg. LLF: 122.25630534059533
Iteration: 9, Func. Count: 100, Neg. LLF: 121.33620952148141
Iteration: 10, Func. Count: 111, Neg. LLF: 120.8557806656363
Iteration: 11, Func. Count: 121, Neg. LLF: 120.8473884101461
Iteration: 12, Func. Count: 131, Neg. LLF: 120.8450805574779
Iteration: 13, Func. Count: 141, Neg. LLF: 120.84400571400023
Iteration: 14, Func. Count: 151, Neg. LLF: 120.84378206434384
Iteration: 15, Func. Count: 161, Neg. LLF: 120.84377657303334
Iteration: 16, Func. Count: 170, Neg. LLF: 120.84377663865202
Optimization terminated successfully (Exit mode 0)
Current function value: 120.84377657303334
Iterations: 16
Function evaluations: 170
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 124.48564697309455
Iteration: 2, Func. Count: 24, Neg. LLF: 128.52264981210715
Iteration: 3, Func. Count: 36, Neg. LLF: 122.80114026788915
Iteration: 4, Func. Count: 48, Neg. LLF: 166.17069125496863
Iteration: 5, Func. Count: 60, Neg. LLF: 405.5485590222704
Iteration: 6, Func. Count: 72, Neg. LLF: 137.2877638138872
Iteration: 7, Func. Count: 84, Neg. LLF: 121.10103611323579
Iteration: 8, Func. Count: 95, Neg. LLF: 127.44432905885368
Iteration: 9, Func. Count: 107, Neg. LLF: 122.58280282320383
Iteration: 10, Func. Count: 120, Neg. LLF: 120.9608966824947
Iteration: 11, Func. Count: 132, Neg. LLF: 120.96220109358727
Iteration: 12, Func. Count: 144, Neg. LLF: 120.84685534827045
Iteration: 13, Func. Count: 155, Neg. LLF: 120.84412409611875
Iteration: 14, Func. Count: 166, Neg. LLF: 120.84380843943669
Iteration: 15, Func. Count: 177, Neg. LLF: 120.84377749688879
Iteration: 16, Func. Count: 188, Neg. LLF: 120.84377663491469
Optimization terminated successfully (Exit mode 0)
Current function value: 120.84377663491469
Iterations: 16
Function evaluations: 188
Gradient evaluations: 16
Iteration: 1, Func. Count: 13, Neg. LLF: 124.23968780904384
Iteration: 2, Func. Count: 25, Neg. LLF: 136.2826635143506
Iteration: 3, Func. Count: 38, Neg. LLF: 123.77561637243413
Iteration: 4, Func. Count: 51, Neg. LLF: 198.41783149738416
Iteration: 5, Func. Count: 64, Neg. LLF: 500.9601486701716
Iteration: 6, Func. Count: 77, Neg. LLF: 746.9166403280943
Iteration: 7, Func. Count: 91, Neg. LLF: 145.41196876331674
Iteration: 8, Func. Count: 104, Neg. LLF: 126.19889742915281
Iteration: 9, Func. Count: 117, Neg. LLF: 123.26556928783742
Iteration: 10, Func. Count: 130, Neg. LLF: 130.00632729484502
Iteration: 11, Func. Count: 143, Neg. LLF: 121.00597090844752
Iteration: 12, Func. Count: 156, Neg. LLF: 120.84491114152945
Iteration: 13, Func. Count: 168, Neg. LLF: 120.8439364832451
Iteration: 14, Func. Count: 180, Neg. LLF: 120.84380832272605
Iteration: 15, Func. Count: 192, Neg. LLF: 120.84379575895899
Iteration: 16, Func. Count: 204, Neg. LLF: 120.84378492806718
Iteration: 17, Func. Count: 216, Neg. LLF: 120.84377700233937
Iteration: 18, Func. Count: 227, Neg. LLF: 120.84377712715896
Optimization terminated successfully (Exit mode 0)
Current function value: 120.84377700233937
Iterations: 18
Function evaluations: 227
Gradient evaluations: 18
Iteration: 1, Func. Count: 10, Neg. LLF: 125.69911876430574
Iteration: 2, Func. Count: 20, Neg. LLF: 182.32553388852622
Iteration: 3, Func. Count: 30, Neg. LLF: 124.34924602609067
Iteration: 4, Func. Count: 40, Neg. LLF: 133.75358882741244
Iteration: 5, Func. Count: 50, Neg. LLF: 127.42652991025271
Iteration: 6, Func. Count: 60, Neg. LLF: 138.4401949582623
Iteration: 7, Func. Count: 70, Neg. LLF: 125.70329927800576
Iteration: 8, Func. Count: 80, Neg. LLF: 132.81983229547996
Iteration: 9, Func. Count: 90, Neg. LLF: 120.99743575572792
Iteration: 10, Func. Count: 100, Neg. LLF: 123.82188074061496
Iteration: 11, Func. Count: 110, Neg. LLF: 120.89129206893233
Iteration: 12, Func. Count: 120, Neg. LLF: 120.8223806621124
Iteration: 13, Func. Count: 129, Neg. LLF: 120.81829394046169
Iteration: 14, Func. Count: 138, Neg. LLF: 120.81545744148191
Iteration: 15, Func. Count: 147, Neg. LLF: 120.81506948357854
Iteration: 16, Func. Count: 156, Neg. LLF: 120.81494574051452
Iteration: 17, Func. Count: 165, Neg. LLF: 120.81492524071744
Iteration: 18, Func. Count: 174, Neg. LLF: 120.81491352722554
Iteration: 19, Func. Count: 183, Neg. LLF: 120.81491296723442
Optimization terminated successfully (Exit mode 0)
Current function value: 120.81491296723442
Iterations: 19
Function evaluations: 183
Gradient evaluations: 19
Iteration: 1, Func. Count: 11, Neg. LLF: 124.35771989221672
Iteration: 2, Func. Count: 22, Neg. LLF: 126.12033917212345
Iteration: 3, Func. Count: 33, Neg. LLF: 123.86383564454859
Iteration: 4, Func. Count: 44, Neg. LLF: 186.67895451999624
Iteration: 5, Func. Count: 55, Neg. LLF: 148.69715064815364
Iteration: 6, Func. Count: 66, Neg. LLF: 147.66661663436042
Iteration: 7, Func. Count: 77, Neg. LLF: 151.27962707147393
Iteration: 8, Func. Count: 88, Neg. LLF: 134.96697919965487
Iteration: 9, Func. Count: 99, Neg. LLF: 121.32533576503006
Iteration: 10, Func. Count: 110, Neg. LLF: 122.23628499657818
Iteration: 11, Func. Count: 121, Neg. LLF: 120.84143859598039
Iteration: 12, Func. Count: 131, Neg. LLF: 120.82183357813412
Iteration: 13, Func. Count: 141, Neg. LLF: 120.81716663215276
Iteration: 14, Func. Count: 151, Neg. LLF: 120.81560988060147
Iteration: 15, Func. Count: 161, Neg. LLF: 120.81507181729432
Iteration: 16, Func. Count: 171, Neg. LLF: 120.81492799662121
Iteration: 17, Func. Count: 181, Neg. LLF: 120.81491384219223
Iteration: 18, Func. Count: 191, Neg. LLF: 120.81491294582018
Optimization terminated successfully (Exit mode 0)
Current function value: 120.81491294582018
Iterations: 18
Function evaluations: 191
Gradient evaluations: 18
Iteration: 1, Func. Count: 12, Neg. LLF: 124.37331177446603
Iteration: 2, Func. Count: 24, Neg. LLF: 128.40909717650334
Iteration: 3, Func. Count: 36, Neg. LLF: 122.82961711440875
Iteration: 4, Func. Count: 48, Neg. LLF: 175.2428858032138
Iteration: 5, Func. Count: 60, Neg. LLF: 407.2191874186818
Iteration: 6, Func. Count: 72, Neg. LLF: 134.7272364618459
Iteration: 7, Func. Count: 85, Neg. LLF: 138.3473767571597
Iteration: 8, Func. Count: 97, Neg. LLF: 144.35327594052578
Iteration: 9, Func. Count: 109, Neg. LLF: 121.83061808322097
Iteration: 10, Func. Count: 121, Neg. LLF: 123.47336641476885
Iteration: 11, Func. Count: 133, Neg. LLF: 120.82817146552776
Iteration: 12, Func. Count: 144, Neg. LLF: 120.81855934288475
Iteration: 13, Func. Count: 155, Neg. LLF: 120.81620770378466
Iteration: 14, Func. Count: 166, Neg. LLF: 120.8153240435453
Iteration: 15, Func. Count: 177, Neg. LLF: 120.81496053653542
Iteration: 16, Func. Count: 188, Neg. LLF: 120.81492454519102
Iteration: 17, Func. Count: 199, Neg. LLF: 120.81491325817775
Iteration: 18, Func. Count: 209, Neg. LLF: 120.81491332254963
Optimization terminated successfully (Exit mode 0)
Current function value: 120.81491325817775
Iterations: 18
Function evaluations: 209
Gradient evaluations: 18
Iteration: 1, Func. Count: 13, Neg. LLF: 124.39768027422703
Iteration: 2, Func. Count: 26, Neg. LLF: 127.93729213130246
Iteration: 3, Func. Count: 39, Neg. LLF: 122.88916913457189
Iteration: 4, Func. Count: 52, Neg. LLF: 138.12371538074765
Iteration: 5, Func. Count: 65, Neg. LLF: 1029.9719679773045
Iteration: 6, Func. Count: 78, Neg. LLF: 139.34441145461088
Iteration: 7, Func. Count: 92, Neg. LLF: 152.60813645731906
Iteration: 8, Func. Count: 105, Neg. LLF: 123.95609024079072
Iteration: 9, Func. Count: 118, Neg. LLF: 126.45323128817175
Iteration: 10, Func. Count: 131, Neg. LLF: 121.0586839863527
Iteration: 11, Func. Count: 144, Neg. LLF: 121.32877053107794
Iteration: 12, Func. Count: 157, Neg. LLF: 120.81875982088795
Iteration: 13, Func. Count: 169, Neg. LLF: 120.81625816168757
Iteration: 14, Func. Count: 181, Neg. LLF: 120.81508336668998
Iteration: 15, Func. Count: 193, Neg. LLF: 120.81492377343113
Iteration: 16, Func. Count: 205, Neg. LLF: 120.81491335972534
Iteration: 17, Func. Count: 216, Neg. LLF: 120.81491340111755
Optimization terminated successfully (Exit mode 0)
Current function value: 120.81491335972534
Iterations: 17
Function evaluations: 216
Gradient evaluations: 17
Iteration: 1, Func. Count: 14, Neg. LLF: 124.16007177151525
Iteration: 2, Func. Count: 27, Neg. LLF: 135.48961805563118
Iteration: 3, Func. Count: 41, Neg. LLF: 124.09804895380299
Iteration: 4, Func. Count: 55, Neg. LLF: 201.9414252167352
Iteration: 5, Func. Count: 69, Neg. LLF: 202.2736229617629
Iteration: 6, Func. Count: 83, Neg. LLF: 1713.6747786658607
Iteration: 7, Func. Count: 97, Neg. LLF: 124.70338190002482
Iteration: 8, Func. Count: 111, Neg. LLF: 129.49806496125598
Iteration: 9, Func. Count: 125, Neg. LLF: 172.80141681689278
Iteration: 10, Func. Count: 139, Neg. LLF: 123.04223705634509
Iteration: 11, Func. Count: 153, Neg. LLF: 124.88321372716366
Iteration: 12, Func. Count: 167, Neg. LLF: 120.87141666737432
Iteration: 13, Func. Count: 180, Neg. LLF: 120.83970258466799
Iteration: 14, Func. Count: 193, Neg. LLF: 120.82387525241478
Iteration: 15, Func. Count: 206, Neg. LLF: 120.81618218233625
Iteration: 16, Func. Count: 219, Neg. LLF: 120.81556493562447
Iteration: 17, Func. Count: 232, Neg. LLF: 120.81524730266588
Iteration: 18, Func. Count: 245, Neg. LLF: 120.81500565780863
Iteration: 19, Func. Count: 258, Neg. LLF: 120.81491663304621
Iteration: 20, Func. Count: 271, Neg. LLF: 120.81491298043463
Iteration: 21, Func. Count: 283, Neg. LLF: 120.81491310308145
Optimization terminated successfully (Exit mode 0)
Current function value: 120.81491298043463
Iterations: 21
Function evaluations: 283
Gradient evaluations: 21
Iteration: 1, Func. Count: 11, Neg. LLF: 124.27506048077247
Iteration: 2, Func. Count: 22, Neg. LLF: 126.97778862749753
Iteration: 3, Func. Count: 33, Neg. LLF: 3992.2902377446358
Iteration: 4, Func. Count: 44, Neg. LLF: 138.88608622224575
Iteration: 5, Func. Count: 55, Neg. LLF: 125.92873303110828
Iteration: 6, Func. Count: 66, Neg. LLF: 142.3643021118079
Iteration: 7, Func. Count: 77, Neg. LLF: 422.4383105570068
Iteration: 8, Func. Count: 88, Neg. LLF: 132.72724433361785
Iteration: 9, Func. Count: 99, Neg. LLF: 125.8772242367515
Iteration: 10, Func. Count: 110, Neg. LLF: 120.7764751698115
Iteration: 11, Func. Count: 121, Neg. LLF: 126.47508798312474
Iteration: 12, Func. Count: 133, Neg. LLF: 120.72758847980244
Iteration: 13, Func. Count: 144, Neg. LLF: 120.70794356476023
Iteration: 14, Func. Count: 154, Neg. LLF: 120.70171779435368
Iteration: 15, Func. Count: 164, Neg. LLF: 120.70146169235215
Iteration: 16, Func. Count: 174, Neg. LLF: 120.70137267861386
Iteration: 17, Func. Count: 184, Neg. LLF: 120.70136745248374
Iteration: 18, Func. Count: 193, Neg. LLF: 120.7013674524128
Optimization terminated successfully (Exit mode 0)
Current function value: 120.70136745248374
Iterations: 18
Function evaluations: 193
Gradient evaluations: 18
Iteration: 1, Func. Count: 12, Neg. LLF: 124.35902772788499
Iteration: 2, Func. Count: 24, Neg. LLF: 126.0255285689802
Iteration: 3, Func. Count: 36, Neg. LLF: 123.02297770892766
Iteration: 4, Func. Count: 48, Neg. LLF: 18395.58841709562
Iteration: 5, Func. Count: 60, Neg. LLF: 139.901820716489
Iteration: 6, Func. Count: 72, Neg. LLF: 134.4985294220517
Iteration: 7, Func. Count: 84, Neg. LLF: 209.2274485977337
Iteration: 8, Func. Count: 96, Neg. LLF: 122.51693077678566
Iteration: 9, Func. Count: 108, Neg. LLF: 121.39676778938801
Iteration: 10, Func. Count: 120, Neg. LLF: 121.79720218911935
Iteration: 11, Func. Count: 132, Neg. LLF: 120.76641629780843
Iteration: 12, Func. Count: 143, Neg. LLF: 121.29875682515446
Iteration: 13, Func. Count: 155, Neg. LLF: 120.80793593795849
Iteration: 14, Func. Count: 167, Neg. LLF: 120.70435410955149
Iteration: 15, Func. Count: 178, Neg. LLF: 120.7019164405245
Iteration: 16, Func. Count: 189, Neg. LLF: 120.7016314891217
Iteration: 17, Func. Count: 200, Neg. LLF: 120.70139696504361
Iteration: 18, Func. Count: 211, Neg. LLF: 120.70137061471453
Iteration: 19, Func. Count: 222, Neg. LLF: 120.70136721127412
Iteration: 20, Func. Count: 232, Neg. LLF: 120.70136724477771
Optimization terminated successfully (Exit mode 0)
Current function value: 120.70136721127412
Iterations: 20
Function evaluations: 232
Gradient evaluations: 20
Iteration: 1, Func. Count: 13, Neg. LLF: 124.36254891918271
Iteration: 2, Func. Count: 26, Neg. LLF: 128.19652950077014
Iteration: 3, Func. Count: 39, Neg. LLF: 122.87370356785436
Iteration: 4, Func. Count: 52, Neg. LLF: 751.222040653164
Iteration: 5, Func. Count: 65, Neg. LLF: 335.2366184333018
Iteration: 6, Func. Count: 78, Neg. LLF: 141.45926450869578
Iteration: 7, Func. Count: 91, Neg. LLF: 132.5775075704395
Iteration: 8, Func. Count: 105, Neg. LLF: 144.91885559135736
Iteration: 9, Func. Count: 118, Neg. LLF: 120.95579332479372
Iteration: 10, Func. Count: 131, Neg. LLF: 121.06342928371807
Iteration: 11, Func. Count: 144, Neg. LLF: 120.8712852261197
Iteration: 12, Func. Count: 157, Neg. LLF: 120.70422568809872
Iteration: 13, Func. Count: 169, Neg. LLF: 120.70187955562062
Iteration: 14, Func. Count: 181, Neg. LLF: 120.70149113189812
Iteration: 15, Func. Count: 193, Neg. LLF: 120.70137558828685
Iteration: 16, Func. Count: 205, Neg. LLF: 120.70136885043854
Iteration: 17, Func. Count: 217, Neg. LLF: 120.70136752484494
Iteration: 18, Func. Count: 228, Neg. LLF: 120.70136760182638
Optimization terminated successfully (Exit mode 0)
Current function value: 120.70136752484494
Iterations: 18
Function evaluations: 228
Gradient evaluations: 18
Iteration: 1, Func. Count: 14, Neg. LLF: 124.37983567625089
Iteration: 2, Func. Count: 28, Neg. LLF: 127.67533555811744
Iteration: 3, Func. Count: 42, Neg. LLF: 122.94828744829861
Iteration: 4, Func. Count: 56, Neg. LLF: 1121.4276059186295
Iteration: 5, Func. Count: 70, Neg. LLF: 329.32124940130217
Iteration: 6, Func. Count: 84, Neg. LLF: 131.94287940304434
Iteration: 7, Func. Count: 98, Neg. LLF: 153.3700031988177
Iteration: 8, Func. Count: 112, Neg. LLF: 121.79339171206455
Iteration: 9, Func. Count: 126, Neg. LLF: 129.60943729410985
Iteration: 10, Func. Count: 141, Neg. LLF: 120.72606168239527
Iteration: 11, Func. Count: 154, Neg. LLF: 121.4592459147905
Iteration: 12, Func. Count: 168, Neg. LLF: 120.70617125000084
Iteration: 13, Func. Count: 181, Neg. LLF: 120.70193109554079
Iteration: 14, Func. Count: 194, Neg. LLF: 120.70155915272174
Iteration: 15, Func. Count: 207, Neg. LLF: 120.70140199728901
Iteration: 16, Func. Count: 220, Neg. LLF: 120.70137014466367
Iteration: 17, Func. Count: 233, Neg. LLF: 120.7013677613612
Iteration: 18, Func. Count: 245, Neg. LLF: 120.70136780488059
Optimization terminated successfully (Exit mode 0)
Current function value: 120.7013677613612
Iterations: 18
Function evaluations: 245
Gradient evaluations: 18
Iteration: 1, Func. Count: 15, Neg. LLF: 124.14541739806167
Iteration: 2, Func. Count: 29, Neg. LLF: 125.62038449536729
Iteration: 3, Func. Count: 44, Neg. LLF: 140.07708196839175
Iteration: 4, Func. Count: 59, Neg. LLF: 446.49597940673124
Iteration: 5, Func. Count: 74, Neg. LLF: 4850345.023173494
Iteration: 6, Func. Count: 89, Neg. LLF: 175.4424161035047
Iteration: 7, Func. Count: 104, Neg. LLF: 140.02399557889987
Iteration: 8, Func. Count: 119, Neg. LLF: 229.99685807163385
Iteration: 9, Func. Count: 134, Neg. LLF: 126.37070028899544
Iteration: 10, Func. Count: 149, Neg. LLF: 122.87249791558537
Iteration: 11, Func. Count: 164, Neg. LLF: 121.66255874096636
Iteration: 12, Func. Count: 179, Neg. LLF: 120.85977590832837
Iteration: 13, Func. Count: 194, Neg. LLF: 120.72819693928201
Iteration: 14, Func. Count: 209, Neg. LLF: 120.81675571068749
Iteration: 15, Func. Count: 224, Neg. LLF: 120.70154234822519
Iteration: 16, Func. Count: 238, Neg. LLF: 120.70138371229524
Iteration: 17, Func. Count: 252, Neg. LLF: 120.70137342679413
Iteration: 18, Func. Count: 266, Neg. LLF: 120.70136836620014
Iteration: 19, Func. Count: 280, Neg. LLF: 120.70136710752975
Iteration: 20, Func. Count: 293, Neg. LLF: 120.7013672262173
Optimization terminated successfully (Exit mode 0)
Current function value: 120.70136710752975
Iterations: 20
Function evaluations: 293
Gradient evaluations: 20
Iteration: 1, Func. Count: 12, Neg. LLF: 126.97418177564604
Iteration: 2, Func. Count: 24, Neg. LLF: 211.96932127375433
Iteration: 3, Func. Count: 36, Neg. LLF: 121.36538974009245
Iteration: 4, Func. Count: 47, Neg. LLF: 672.2416612503764
Iteration: 5, Func. Count: 59, Neg. LLF: 126.97878925793357
Iteration: 6, Func. Count: 72, Neg. LLF: 125.84007114230356
Iteration: 7, Func. Count: 87, Neg. LLF: 121.10035112734865
Iteration: 8, Func. Count: 99, Neg. LLF: 120.44472058817462
Iteration: 9, Func. Count: 111, Neg. LLF: 119.81729953950936
Iteration: 10, Func. Count: 123, Neg. LLF: 119.79539190561249
Iteration: 11, Func. Count: 135, Neg. LLF: 119.58702130512835
Iteration: 12, Func. Count: 146, Neg. LLF: 119.54028413812335
Iteration: 13, Func. Count: 157, Neg. LLF: 119.9542713960624
Iteration: 14, Func. Count: 170, Neg. LLF: 119.58549343640931
Iteration: 15, Func. Count: 182, Neg. LLF: 119.51835056081919
Iteration: 16, Func. Count: 193, Neg. LLF: 119.51409098602386
Iteration: 17, Func. Count: 204, Neg. LLF: 119.50924853553335
Iteration: 18, Func. Count: 215, Neg. LLF: 119.50678455503778
Iteration: 19, Func. Count: 226, Neg. LLF: 119.50646730945707
Iteration: 20, Func. Count: 237, Neg. LLF: 119.50640443318738
Iteration: 21, Func. Count: 248, Neg. LLF: 119.50632620469352
Iteration: 22, Func. Count: 259, Neg. LLF: 119.50620199237119
Iteration: 23, Func. Count: 270, Neg. LLF: 119.50608067305195
Iteration: 24, Func. Count: 281, Neg. LLF: 119.5060257443713
Iteration: 25, Func. Count: 292, Neg. LLF: 119.50601806861059
Iteration: 26, Func. Count: 302, Neg. LLF: 119.50601803014497
Optimization terminated successfully (Exit mode 0)
Current function value: 119.50601806861059
Iterations: 26
Function evaluations: 302
Gradient evaluations: 26
Iteration: 1, Func. Count: 13, Neg. LLF: 127.14664501658865
Iteration: 2, Func. Count: 26, Neg. LLF: 158.2634950003444
Iteration: 3, Func. Count: 39, Neg. LLF: 122.72158646687143
Iteration: 4, Func. Count: 52, Neg. LLF: 3146092.093874663
Iteration: 5, Func. Count: 65, Neg. LLF: 164.25361332530954
Iteration: 6, Func. Count: 78, Neg. LLF: 161.45027942022438
Iteration: 7, Func. Count: 91, Neg. LLF: 119.45799591550002
Iteration: 8, Func. Count: 103, Neg. LLF: 119.72750859818616
Iteration: 9, Func. Count: 116, Neg. LLF: 118.74691466634265
Iteration: 10, Func. Count: 129, Neg. LLF: 118.36871057579405
Iteration: 11, Func. Count: 142, Neg. LLF: 118.15197386340994
Iteration: 12, Func. Count: 154, Neg. LLF: 118.52286139294517
Iteration: 13, Func. Count: 167, Neg. LLF: 118.32622579806325
Iteration: 14, Func. Count: 180, Neg. LLF: 118.03462659197507
Iteration: 15, Func. Count: 192, Neg. LLF: 118.0316240986929
Iteration: 16, Func. Count: 204, Neg. LLF: 118.0302197108538
Iteration: 17, Func. Count: 216, Neg. LLF: 118.02880154991391
Iteration: 18, Func. Count: 228, Neg. LLF: 118.02851472527409
Iteration: 19, Func. Count: 240, Neg. LLF: 118.0284427178422
Iteration: 20, Func. Count: 252, Neg. LLF: 118.02843780752002
Iteration: 21, Func. Count: 263, Neg. LLF: 118.02843780758444
Optimization terminated successfully (Exit mode 0)
Current function value: 118.02843780752002
Iterations: 21
Function evaluations: 263
Gradient evaluations: 21
Iteration: 1, Func. Count: 14, Neg. LLF: 127.53018719986981
Iteration: 2, Func. Count: 28, Neg. LLF: 154.53267723430213
Iteration: 3, Func. Count: 42, Neg. LLF: 122.30234598135361
Iteration: 4, Func. Count: 56, Neg. LLF: 270.82353354046876
Iteration: 5, Func. Count: 70, Neg. LLF: 217.62460005957035
Iteration: 6, Func. Count: 84, Neg. LLF: 137.90576887255668
Iteration: 7, Func. Count: 98, Neg. LLF: 122.00056114409065
Iteration: 8, Func. Count: 112, Neg. LLF: 123.41939202649588
Iteration: 9, Func. Count: 126, Neg. LLF: 118.62394553733496
Iteration: 10, Func. Count: 140, Neg. LLF: 118.85486819599808
Iteration: 11, Func. Count: 154, Neg. LLF: 118.36150868355892
Iteration: 12, Func. Count: 168, Neg. LLF: 118.46231556559553
Iteration: 13, Func. Count: 182, Neg. LLF: 118.05969635896632
Iteration: 14, Func. Count: 195, Neg. LLF: 118.09809684578484
Iteration: 15, Func. Count: 209, Neg. LLF: 118.0419445487539
Iteration: 16, Func. Count: 222, Neg. LLF: 118.03599259793852
Iteration: 17, Func. Count: 235, Neg. LLF: 118.03264259018344
Iteration: 18, Func. Count: 248, Neg. LLF: 118.0294732751157
Iteration: 19, Func. Count: 261, Neg. LLF: 118.02855428576815
Iteration: 20, Func. Count: 274, Neg. LLF: 118.0284391226569
Iteration: 21, Func. Count: 287, Neg. LLF: 118.02843791843945
Iteration: 22, Func. Count: 299, Neg. LLF: 118.02843793486193
Optimization terminated successfully (Exit mode 0)
Current function value: 118.02843791843945
Iterations: 22
Function evaluations: 299
Gradient evaluations: 22
Iteration: 1, Func. Count: 15, Neg. LLF: 127.53699731795739
Iteration: 2, Func. Count: 30, Neg. LLF: 157.52859338544795
Iteration: 3, Func. Count: 45, Neg. LLF: 122.40182541649888
Iteration: 4, Func. Count: 60, Neg. LLF: 4801178.770796739
Iteration: 5, Func. Count: 75, Neg. LLF: 347.9840799812292
Iteration: 6, Func. Count: 90, Neg. LLF: 127.7226162852368
Iteration: 7, Func. Count: 105, Neg. LLF: 122.61608583029842
Iteration: 8, Func. Count: 120, Neg. LLF: 118.52057927697982
Iteration: 9, Func. Count: 134, Neg. LLF: 119.07253632386426
Iteration: 10, Func. Count: 149, Neg. LLF: 129.30002171773498
Iteration: 11, Func. Count: 164, Neg. LLF: 118.39530572299995
Iteration: 12, Func. Count: 179, Neg. LLF: 118.53899058532414
Iteration: 13, Func. Count: 194, Neg. LLF: 117.97225179997294
Iteration: 14, Func. Count: 208, Neg. LLF: 118.06522490607507
Iteration: 15, Func. Count: 223, Neg. LLF: 117.95082846807664
Iteration: 16, Func. Count: 237, Neg. LLF: 117.94745457166866
Iteration: 17, Func. Count: 251, Neg. LLF: 117.94702596456472
Iteration: 18, Func. Count: 265, Neg. LLF: 117.94688063214831
Iteration: 19, Func. Count: 279, Neg. LLF: 117.94686813758048
Iteration: 20, Func. Count: 293, Neg. LLF: 117.94686740365123
Optimization terminated successfully (Exit mode 0)
Current function value: 117.94686740365123
Iterations: 20
Function evaluations: 293
Gradient evaluations: 20
Iteration: 1, Func. Count: 16, Neg. LLF: 126.65547678636905
Iteration: 2, Func. Count: 32, Neg. LLF: 159.10073458936216
Iteration: 3, Func. Count: 48, Neg. LLF: 122.29993308154572
Iteration: 4, Func. Count: 64, Neg. LLF: 4802576.417610028
Iteration: 5, Func. Count: 80, Neg. LLF: 275.05998349876364
Iteration: 6, Func. Count: 96, Neg. LLF: 143.0275416516878
Iteration: 7, Func. Count: 112, Neg. LLF: 122.37716146571951
Iteration: 8, Func. Count: 128, Neg. LLF: 119.20379684137868
Iteration: 9, Func. Count: 144, Neg. LLF: 119.09715298975676
Iteration: 10, Func. Count: 160, Neg. LLF: 119.43400149380032
Iteration: 11, Func. Count: 176, Neg. LLF: 118.20729073144948
Iteration: 12, Func. Count: 192, Neg. LLF: 118.04486486707702
Iteration: 13, Func. Count: 207, Neg. LLF: 118.45991026578817
Iteration: 14, Func. Count: 223, Neg. LLF: 118.8630875603551
Iteration: 15, Func. Count: 239, Neg. LLF: 117.95611877773496
Iteration: 16, Func. Count: 254, Neg. LLF: 117.94896096257051
Iteration: 17, Func. Count: 269, Neg. LLF: 117.94743986936719
Iteration: 18, Func. Count: 284, Neg. LLF: 117.94700999478287
Iteration: 19, Func. Count: 299, Neg. LLF: 117.94695894511072
Iteration: 20, Func. Count: 314, Neg. LLF: 117.94692434934001
Iteration: 21, Func. Count: 329, Neg. LLF: 117.9468772265288
Iteration: 22, Func. Count: 344, Neg. LLF: 117.94686775828599
Iteration: 23, Func. Count: 359, Neg. LLF: 117.94686667898712
Iteration: 24, Func. Count: 373, Neg. LLF: 117.9468666970341
Optimization terminated successfully (Exit mode 0)
Current function value: 117.94686667898712
Iterations: 24
Function evaluations: 373
Gradient evaluations: 24
Iteration: 1, Func. Count: 8, Neg. LLF: 125.81237681506674
Iteration: 2, Func. Count: 16, Neg. LLF: 193.844903017003
Iteration: 3, Func. Count: 24, Neg. LLF: 124.00837677459808
Iteration: 4, Func. Count: 32, Neg. LLF: 136.34216331286567
Iteration: 5, Func. Count: 40, Neg. LLF: 128.24108705572712
Iteration: 6, Func. Count: 48, Neg. LLF: 128.5918053503148
Iteration: 7, Func. Count: 56, Neg. LLF: 130.52240492176347
Iteration: 8, Func. Count: 64, Neg. LLF: 126.40514284002505
Iteration: 9, Func. Count: 72, Neg. LLF: 120.88440855336633
Iteration: 10, Func. Count: 79, Neg. LLF: 120.84992355025727
Iteration: 11, Func. Count: 86, Neg. LLF: 120.84556370170694
Iteration: 12, Func. Count: 93, Neg. LLF: 120.84521813649968
Iteration: 13, Func. Count: 100, Neg. LLF: 120.8452080461041
Iteration: 14, Func. Count: 107, Neg. LLF: 120.84519338465856
Iteration: 15, Func. Count: 114, Neg. LLF: 120.84518976803932
Iteration: 16, Func. Count: 121, Neg. LLF: 120.84518851457368
Iteration: 17, Func. Count: 127, Neg. LLF: 120.84518851456885
Optimization terminated successfully (Exit mode 0)
Current function value: 120.84518851457368
Iterations: 17
Function evaluations: 127
Gradient evaluations: 17
Iteration: 1, Func. Count: 5, Neg. LLF: 134.40599881830855
Iteration: 2, Func. Count: 10, Neg. LLF: 142.5322015323588
Iteration: 3, Func. Count: 15, Neg. LLF: 128.7388853239813
Iteration: 4, Func. Count: 19, Neg. LLF: 128.5053194241888
Iteration: 5, Func. Count: 23, Neg. LLF: 128.569654513134
Iteration: 6, Func. Count: 29, Neg. LLF: 128.48727230639835
Iteration: 7, Func. Count: 33, Neg. LLF: 128.48238271524556
Iteration: 8, Func. Count: 37, Neg. LLF: 128.480399592737
Iteration: 9, Func. Count: 41, Neg. LLF: 128.4803137353203
Iteration: 10, Func. Count: 45, Neg. LLF: 128.48031257814313
Iteration: 11, Func. Count: 48, Neg. LLF: 128.48031257814625
Optimization terminated successfully (Exit mode 0)
Current function value: 128.48031257814313
Iterations: 11
Function evaluations: 48
Gradient evaluations: 11
Iteration: 1, Func. Count: 6, Neg. LLF: 132.95585117753706
Iteration: 2, Func. Count: 13, Neg. LLF: 128.48648380352907
Iteration: 3, Func. Count: 19, Neg. LLF: 128.5013631040699
Iteration: 4, Func. Count: 26, Neg. LLF: 128.48327796094514
Iteration: 5, Func. Count: 31, Neg. LLF: 128.4829008014856
Iteration: 6, Func. Count: 36, Neg. LLF: 128.48121294402307
Iteration: 7, Func. Count: 41, Neg. LLF: 128.47870530896188
Iteration: 8, Func. Count: 46, Neg. LLF: 128.47841386069553
Iteration: 9, Func. Count: 51, Neg. LLF: 128.47833912872156
Iteration: 10, Func. Count: 56, Neg. LLF: 128.478317696046
Iteration: 11, Func. Count: 61, Neg. LLF: 128.47831523607707
Iteration: 12, Func. Count: 65, Neg. LLF: 128.47831523607158
Optimization terminated successfully (Exit mode 0)
Current function value: 128.47831523607707
Iterations: 12
Function evaluations: 65
Gradient evaluations: 12
Iteration: 1, Func. Count: 7, Neg. LLF: 136.4663378881183
Iteration: 2, Func. Count: 15, Neg. LLF: 128.48898389675287
Iteration: 3, Func. Count: 21, Neg. LLF: 128.49231219185748
Iteration: 4, Func. Count: 28, Neg. LLF: 128.48868038073613
Iteration: 5, Func. Count: 35, Neg. LLF: 128.48863909731824
Iteration: 6, Func. Count: 41, Neg. LLF: 128.4885818581121
Iteration: 7, Func. Count: 47, Neg. LLF: 128.48714007109612
Iteration: 8, Func. Count: 53, Neg. LLF: 128.4821069114429
Iteration: 9, Func. Count: 59, Neg. LLF: 128.48155530700717
Iteration: 10, Func. Count: 65, Neg. LLF: 128.47981977608396
Iteration: 11, Func. Count: 71, Neg. LLF: 128.47949482318253
Iteration: 12, Func. Count: 77, Neg. LLF: 128.47940220058385
Iteration: 13, Func. Count: 83, Neg. LLF: 128.47926280490546
Iteration: 14, Func. Count: 89, Neg. LLF: 128.479071380534
Iteration: 15, Func. Count: 95, Neg. LLF: 128.4787305587289
Iteration: 16, Func. Count: 101, Neg. LLF: 128.47843302622306
Iteration: 17, Func. Count: 107, Neg. LLF: 128.47833560225885
Iteration: 18, Func. Count: 113, Neg. LLF: 128.47831850742276
Iteration: 19, Func. Count: 119, Neg. LLF: 128.47831565536964
Iteration: 20, Func. Count: 124, Neg. LLF: 128.4783156558542
Optimization terminated successfully (Exit mode 0)
Current function value: 128.47831565536964
Iterations: 20
Function evaluations: 124
Gradient evaluations: 20
Iteration: 1, Func. Count: 8, Neg. LLF: 136.41622353361055
Iteration: 2, Func. Count: 17, Neg. LLF: 128.48872683665473
Iteration: 3, Func. Count: 24, Neg. LLF: 128.48910270671712
Iteration: 4, Func. Count: 32, Neg. LLF: 128.48869677136818
Iteration: 5, Func. Count: 39, Neg. LLF: 128.48868303941467
Iteration: 6, Func. Count: 46, Neg. LLF: 128.48861650931917
Iteration: 7, Func. Count: 53, Neg. LLF: 128.4884484728792
Iteration: 8, Func. Count: 60, Neg. LLF: 128.48818090968462
Iteration: 9, Func. Count: 67, Neg. LLF: 128.48801793220628
Iteration: 10, Func. Count: 74, Neg. LLF: 128.48788510739016
Iteration: 11, Func. Count: 81, Neg. LLF: 128.48788221299657
Iteration: 12, Func. Count: 88, Neg. LLF: 128.48786788763218
Iteration: 13, Func. Count: 95, Neg. LLF: 128.48782038725665
Iteration: 14, Func. Count: 102, Neg. LLF: 128.48778168013072
Iteration: 15, Func. Count: 109, Neg. LLF: 128.48752131413107
Iteration: 16, Func. Count: 116, Neg. LLF: 128.48715580801874
Iteration: 17, Func. Count: 123, Neg. LLF: 128.48715280440067
Iteration: 18, Func. Count: 130, Neg. LLF: 128.48713772072009
Iteration: 19, Func. Count: 137, Neg. LLF: 128.48711360419662
Iteration: 20, Func. Count: 144, Neg. LLF: 128.48701832937167
Iteration: 21, Func. Count: 151, Neg. LLF: 128.48672292627117
Iteration: 22, Func. Count: 158, Neg. LLF: 128.48637303041698
Iteration: 23, Func. Count: 165, Neg. LLF: 128.48489733068115
Iteration: 24, Func. Count: 172, Neg. LLF: 128.4806488628889
Iteration: 25, Func. Count: 179, Neg. LLF: 128.5447327179019
Iteration: 26, Func. Count: 187, Neg. LLF: 164.58377170008083
Iteration: 27, Func. Count: 196, Neg. LLF: 128.4748998164907
Iteration: 28, Func. Count: 204, Neg. LLF: 128.4740791605647
Iteration: 29, Func. Count: 212, Neg. LLF: 128.47345151625612
Iteration: 30, Func. Count: 219, Neg. LLF: 128.47264880444342
Iteration: 31, Func. Count: 226, Neg. LLF: 128.46837122711534
Iteration: 32, Func. Count: 233, Neg. LLF: 128.46718304063225
Iteration: 33, Func. Count: 241, Neg. LLF: 128.46749783935977
Iteration: 34, Func. Count: 249, Neg. LLF: 128.4554266654255
Iteration: 35, Func. Count: 256, Neg. LLF: 128.45544667010228
Iteration: 36, Func. Count: 264, Neg. LLF: 128.4553467510335
Iteration: 37, Func. Count: 271, Neg. LLF: 128.45533526377756
Iteration: 38, Func. Count: 277, Neg. LLF: 128.4553352638347
Optimization terminated successfully (Exit mode 0)
Current function value: 128.45533526377756
Iterations: 39
Function evaluations: 277
Gradient evaluations: 38
Iteration: 1, Func. Count: 9, Neg. LLF: 136.35389000246855
Iteration: 2, Func. Count: 19, Neg. LLF: 128.48836444830474
Iteration: 3, Func. Count: 27, Neg. LLF: 128.49010466753808
Iteration: 4, Func. Count: 36, Neg. LLF: 128.48819118398447
Iteration: 5, Func. Count: 44, Neg. LLF: 128.4877002623908
Iteration: 6, Func. Count: 52, Neg. LLF: 128.48627133679022
Iteration: 7, Func. Count: 60, Neg. LLF: 128.486248484169
Iteration: 8, Func. Count: 68, Neg. LLF: 128.48619183570156
Iteration: 9, Func. Count: 76, Neg. LLF: 128.4861156712322
Iteration: 10, Func. Count: 84, Neg. LLF: 128.48592107945106
Iteration: 11, Func. Count: 92, Neg. LLF: 128.48577192556147
Iteration: 12, Func. Count: 100, Neg. LLF: 128.48554776921299
Iteration: 13, Func. Count: 108, Neg. LLF: 128.48524979504893
Iteration: 14, Func. Count: 116, Neg. LLF: 128.48514949928878
Iteration: 15, Func. Count: 124, Neg. LLF: 128.48469667155956
Iteration: 16, Func. Count: 132, Neg. LLF: 128.48368014195447
Iteration: 17, Func. Count: 140, Neg. LLF: 128.48201572121337
Iteration: 18, Func. Count: 148, Neg. LLF: 128.4726891949881
Iteration: 19, Func. Count: 156, Neg. LLF: 128.4641759831872
Iteration: 20, Func. Count: 164, Neg. LLF: 128.48541125012474
Iteration: 21, Func. Count: 175, Neg. LLF: 128.47710195050342
Iteration: 22, Func. Count: 184, Neg. LLF: 128.46793943581287
Iteration: 23, Func. Count: 193, Neg. LLF: 128.457957658523
Iteration: 24, Func. Count: 201, Neg. LLF: 128.45785895852117
Iteration: 25, Func. Count: 209, Neg. LLF: 128.45770501969628
Iteration: 26, Func. Count: 217, Neg. LLF: 128.4577024749888
Iteration: 27, Func. Count: 225, Neg. LLF: 128.45769622903455
Iteration: 28, Func. Count: 233, Neg. LLF: 128.45769108101652
Iteration: 29, Func. Count: 241, Neg. LLF: 128.4576890283033
Iteration: 30, Func. Count: 248, Neg. LLF: 128.45768902823025
Optimization terminated successfully (Exit mode 0)
Current function value: 128.4576890283033
Iterations: 30
Function evaluations: 248
Gradient evaluations: 30
Iteration: 1, Func. Count: 6, Neg. LLF: 138.05282153016037
Iteration: 2, Func. Count: 12, Neg. LLF: 143.54932849081536
Iteration: 3, Func. Count: 18, Neg. LLF: 128.87970051870118
Iteration: 4, Func. Count: 23, Neg. LLF: 128.49088169783715
Iteration: 5, Func. Count: 28, Neg. LLF: 128.72546767053106
Iteration: 6, Func. Count: 35, Neg. LLF: 128.92679783198608
Iteration: 7, Func. Count: 42, Neg. LLF: 128.47834732504558
Iteration: 8, Func. Count: 47, Neg. LLF: 128.4780107424882
Iteration: 9, Func. Count: 52, Neg. LLF: 128.47786676942084
Iteration: 10, Func. Count: 57, Neg. LLF: 128.4777605899837
Iteration: 11, Func. Count: 61, Neg. LLF: 128.47776058988404
Optimization terminated successfully (Exit mode 0)
Current function value: 128.4777605899837
Iterations: 11
Function evaluations: 61
Gradient evaluations: 11
Iteration: 1, Func. Count: 7, Neg. LLF: 133.80444069181914
Iteration: 2, Func. Count: 15, Neg. LLF: 129.4980150904941
Iteration: 3, Func. Count: 23, Neg. LLF: 128.48282075444018
Iteration: 4, Func. Count: 30, Neg. LLF: 128.48316795056797
Iteration: 5, Func. Count: 37, Neg. LLF: 128.4813071017792
Iteration: 6, Func. Count: 43, Neg. LLF: 128.48066301608253
Iteration: 7, Func. Count: 49, Neg. LLF: 128.47654688478943
Iteration: 8, Func. Count: 55, Neg. LLF: 128.47264363861305
Iteration: 9, Func. Count: 61, Neg. LLF: 128.47068217740534
Iteration: 10, Func. Count: 67, Neg. LLF: 128.46897738673374
Iteration: 11, Func. Count: 73, Neg. LLF: 128.46784252814217
Iteration: 12, Func. Count: 79, Neg. LLF: 128.4675909090328
Iteration: 13, Func. Count: 85, Neg. LLF: 128.46757503842636
Iteration: 14, Func. Count: 91, Neg. LLF: 128.4675736369552
Iteration: 15, Func. Count: 96, Neg. LLF: 128.46757363701423
Optimization terminated successfully (Exit mode 0)
Current function value: 128.4675736369552
Iterations: 15
Function evaluations: 96
Gradient evaluations: 15
Iteration: 1, Func. Count: 8, Neg. LLF: 136.44780174588746
Iteration: 2, Func. Count: 17, Neg. LLF: 128.48886052798105
Iteration: 3, Func. Count: 24, Neg. LLF: 128.49131908121942
Iteration: 4, Func. Count: 32, Neg. LLF: 128.49039135285454
Iteration: 5, Func. Count: 40, Neg. LLF: 128.4884541651001
Iteration: 6, Func. Count: 47, Neg. LLF: 128.48236369875906
Iteration: 7, Func. Count: 54, Neg. LLF: 128.4819876216139
Iteration: 8, Func. Count: 61, Neg. LLF: 128.48109065259595
Iteration: 9, Func. Count: 68, Neg. LLF: 128.47927207993177
Iteration: 10, Func. Count: 75, Neg. LLF: 128.47620668357433
Iteration: 11, Func. Count: 82, Neg. LLF: 128.47356163571632
Iteration: 12, Func. Count: 89, Neg. LLF: 128.47238361959623
Iteration: 13, Func. Count: 96, Neg. LLF: 128.47181199692443
Iteration: 14, Func. Count: 103, Neg. LLF: 128.4716285986777
Iteration: 15, Func. Count: 110, Neg. LLF: 128.4710159765796
Iteration: 16, Func. Count: 117, Neg. LLF: 128.47013704986767
Iteration: 17, Func. Count: 124, Neg. LLF: 128.46868001932754
Iteration: 18, Func. Count: 131, Neg. LLF: 128.46779930033955
Iteration: 19, Func. Count: 138, Neg. LLF: 128.46762703584284
Iteration: 20, Func. Count: 145, Neg. LLF: 128.46758124627584
Iteration: 21, Func. Count: 152, Neg. LLF: 128.46757377044688
Iteration: 22, Func. Count: 158, Neg. LLF: 128.46757377316428
Optimization terminated successfully (Exit mode 0)
Current function value: 128.46757377044688
Iterations: 22
Function evaluations: 158
Gradient evaluations: 22
Iteration: 1, Func. Count: 9, Neg. LLF: 136.40199679800617
Iteration: 2, Func. Count: 19, Neg. LLF: 128.48896238897606
Iteration: 3, Func. Count: 27, Neg. LLF: 128.49193953301221
Iteration: 4, Func. Count: 36, Neg. LLF: 128.4887766614647
Iteration: 5, Func. Count: 44, Neg. LLF: 128.48876323781965
Iteration: 6, Func. Count: 52, Neg. LLF: 128.48871456152355
Iteration: 7, Func. Count: 60, Neg. LLF: 128.48857029194286
Iteration: 8, Func. Count: 68, Neg. LLF: 128.4882323775981
Iteration: 9, Func. Count: 76, Neg. LLF: 128.48810242926024
Iteration: 10, Func. Count: 84, Neg. LLF: 128.48785002670104
Iteration: 11, Func. Count: 92, Neg. LLF: 128.4878477438493
Iteration: 12, Func. Count: 100, Neg. LLF: 128.48784564954047
Iteration: 13, Func. Count: 108, Neg. LLF: 128.4878378373957
Iteration: 14, Func. Count: 116, Neg. LLF: 128.48782562473272
Iteration: 15, Func. Count: 124, Neg. LLF: 128.48780700749023
Iteration: 16, Func. Count: 132, Neg. LLF: 128.48778924608135
Iteration: 17, Func. Count: 140, Neg. LLF: 128.48776526179716
Iteration: 18, Func. Count: 148, Neg. LLF: 128.48733942848858
Iteration: 19, Func. Count: 156, Neg. LLF: 128.48733075561682
Iteration: 20, Func. Count: 164, Neg. LLF: 128.48729269027672
Iteration: 21, Func. Count: 172, Neg. LLF: 128.48724600239822
Iteration: 22, Func. Count: 180, Neg. LLF: 128.48716032271335
Iteration: 23, Func. Count: 188, Neg. LLF: 128.48681808082085
Iteration: 24, Func. Count: 196, Neg. LLF: 128.50055795694286
Iteration: 25, Func. Count: 205, Neg. LLF: 128.86804044398906
Iteration: 26, Func. Count: 214, Neg. LLF: 128.50909968698846
Iteration: 27, Func. Count: 223, Neg. LLF: 128.48809074618293
Iteration: 28, Func. Count: 232, Neg. LLF: 128.48582311294
Iteration: 29, Func. Count: 241, Neg. LLF: 128.48125748563004
Iteration: 30, Func. Count: 249, Neg. LLF: 128.46908526527676
Iteration: 31, Func. Count: 257, Neg. LLF: 133.76867061276687
Iteration: 32, Func. Count: 267, Neg. LLF: 129.09997324532713
Iteration: 33, Func. Count: 277, Neg. LLF: 128.45551025395062
Iteration: 34, Func. Count: 285, Neg. LLF: 128.45534840335404
Iteration: 35, Func. Count: 293, Neg. LLF: 128.45533629541956
Iteration: 36, Func. Count: 301, Neg. LLF: 128.45533539140095
Optimization terminated successfully (Exit mode 0)
Current function value: 128.45533539140095
Iterations: 37
Function evaluations: 301
Gradient evaluations: 36
Iteration: 1, Func. Count: 10, Neg. LLF: 136.34872083438407
Iteration: 2, Func. Count: 21, Neg. LLF: 128.48863025881076
Iteration: 3, Func. Count: 30, Neg. LLF: 128.49374686990296
Iteration: 4, Func. Count: 40, Neg. LLF: 128.48819670427065
Iteration: 5, Func. Count: 49, Neg. LLF: 128.4878740811483
Iteration: 6, Func. Count: 58, Neg. LLF: 128.4862896860781
Iteration: 7, Func. Count: 67, Neg. LLF: 128.48626661825688
Iteration: 8, Func. Count: 76, Neg. LLF: 128.4862308478389
Iteration: 9, Func. Count: 85, Neg. LLF: 128.48609311503733
Iteration: 10, Func. Count: 94, Neg. LLF: 128.4858482592901
Iteration: 11, Func. Count: 103, Neg. LLF: 128.48563266485905
Iteration: 12, Func. Count: 112, Neg. LLF: 128.48533122330895
Iteration: 13, Func. Count: 121, Neg. LLF: 128.48514923164285
Iteration: 14, Func. Count: 130, Neg. LLF: 128.48506516237393
Iteration: 15, Func. Count: 139, Neg. LLF: 128.4845643813587
Iteration: 16, Func. Count: 148, Neg. LLF: 128.48348013172117
Iteration: 17, Func. Count: 157, Neg. LLF: 128.4767554339201
Iteration: 18, Func. Count: 166, Neg. LLF: 128.47863698460932
Iteration: 19, Func. Count: 176, Neg. LLF: 128.52635032598013
Iteration: 20, Func. Count: 186, Neg. LLF: 128.4768932215017
Iteration: 21, Func. Count: 196, Neg. LLF: 128.47293157337424
Iteration: 22, Func. Count: 208, Neg. LLF: 128.46586779024312
Iteration: 23, Func. Count: 218, Neg. LLF: 128.45791358669754
Iteration: 24, Func. Count: 227, Neg. LLF: 128.45782895896272
Iteration: 25, Func. Count: 236, Neg. LLF: 128.4577743796542
Iteration: 26, Func. Count: 245, Neg. LLF: 128.45769847572586
Iteration: 27, Func. Count: 254, Neg. LLF: 128.4576918042594
Iteration: 28, Func. Count: 262, Neg. LLF: 128.45769180416102
Optimization terminated successfully (Exit mode 0)
Current function value: 128.4576918042594
Iterations: 28
Function evaluations: 262
Gradient evaluations: 28
Iteration: 1, Func. Count: 7, Neg. LLF: 137.14871311276755
Iteration: 2, Func. Count: 14, Neg. LLF: 160.24676285017262
Iteration: 3, Func. Count: 21, Neg. LLF: 127.59734292744609
Iteration: 4, Func. Count: 28, Neg. LLF: 150.37480143245955
Iteration: 5, Func. Count: 36, Neg. LLF: 127.74395134032139
Iteration: 6, Func. Count: 44, Neg. LLF: 127.46187891359929
Iteration: 7, Func. Count: 50, Neg. LLF: 127.45075651175036
Iteration: 8, Func. Count: 56, Neg. LLF: 127.45045624630583
Iteration: 9, Func. Count: 62, Neg. LLF: 127.45044322172495
Iteration: 10, Func. Count: 68, Neg. LLF: 127.45044111241411
Iteration: 11, Func. Count: 73, Neg. LLF: 127.45044111241057
Optimization terminated successfully (Exit mode 0)
Current function value: 127.45044111241411
Iterations: 11
Function evaluations: 73
Gradient evaluations: 11
Iteration: 1, Func. Count: 8, Neg. LLF: 132.64748244861136
Iteration: 2, Func. Count: 17, Neg. LLF: 129.35085331292808
Iteration: 3, Func. Count: 27, Neg. LLF: 128.48381610789747
Iteration: 4, Func. Count: 35, Neg. LLF: 128.52395542997735
Iteration: 5, Func. Count: 43, Neg. LLF: 128.47555789454884
Iteration: 6, Func. Count: 50, Neg. LLF: 128.3701009729302
Iteration: 7, Func. Count: 57, Neg. LLF: 128.1564412810076
Iteration: 8, Func. Count: 64, Neg. LLF: 128.1332196290077
Iteration: 9, Func. Count: 72, Neg. LLF: 128.05720194724873
Iteration: 10, Func. Count: 79, Neg. LLF: 128.03640594725232
Iteration: 11, Func. Count: 86, Neg. LLF: 127.9789912019695
Iteration: 12, Func. Count: 93, Neg. LLF: 127.68046436927932
Iteration: 13, Func. Count: 100, Neg. LLF: 127.57374005312708
Iteration: 14, Func. Count: 107, Neg. LLF: 127.46129642563366
Iteration: 15, Func. Count: 114, Neg. LLF: 127.45153015811246
Iteration: 16, Func. Count: 121, Neg. LLF: 127.45070258319672
Iteration: 17, Func. Count: 128, Neg. LLF: 127.45060582966865
Iteration: 18, Func. Count: 135, Neg. LLF: 127.45048106834687
Iteration: 19, Func. Count: 142, Neg. LLF: 127.45044953749621
Iteration: 20, Func. Count: 149, Neg. LLF: 127.4504413528878
Iteration: 21, Func. Count: 155, Neg. LLF: 127.4504413824805
Optimization terminated successfully (Exit mode 0)
Current function value: 127.4504413528878
Iterations: 21
Function evaluations: 155
Gradient evaluations: 21
Iteration: 1, Func. Count: 9, Neg. LLF: 136.46165695404392
Iteration: 2, Func. Count: 19, Neg. LLF: 128.48888391069957
Iteration: 3, Func. Count: 27, Neg. LLF: 128.48699232941738
Iteration: 4, Func. Count: 35, Neg. LLF: 128.4853732807473
Iteration: 5, Func. Count: 43, Neg. LLF: 128.56181132388772
Iteration: 6, Func. Count: 52, Neg. LLF: 128.47722695749826
Iteration: 7, Func. Count: 60, Neg. LLF: 128.46810962852712
Iteration: 8, Func. Count: 68, Neg. LLF: 128.43868008931545
Iteration: 9, Func. Count: 76, Neg. LLF: 128.30214539971155
Iteration: 10, Func. Count: 84, Neg. LLF: 128.21436575873773
Iteration: 11, Func. Count: 92, Neg. LLF: 128.17466564149694
Iteration: 12, Func. Count: 100, Neg. LLF: 128.1055090937101
Iteration: 13, Func. Count: 108, Neg. LLF: 128.04069671275218
Iteration: 14, Func. Count: 116, Neg. LLF: 127.9783028844904
Iteration: 15, Func. Count: 124, Neg. LLF: 127.91200795583907
Iteration: 16, Func. Count: 132, Neg. LLF: 127.74797656691376
Iteration: 17, Func. Count: 140, Neg. LLF: 127.61072608238777
Iteration: 18, Func. Count: 148, Neg. LLF: 127.48092985742765
Iteration: 19, Func. Count: 156, Neg. LLF: 127.45634396186348
Iteration: 20, Func. Count: 164, Neg. LLF: 127.4531383936773
Iteration: 21, Func. Count: 172, Neg. LLF: 127.45172006449133
Iteration: 22, Func. Count: 180, Neg. LLF: 127.45048625997704
Iteration: 23, Func. Count: 188, Neg. LLF: 127.45044222389599
Iteration: 24, Func. Count: 196, Neg. LLF: 127.45044104874208
Iteration: 25, Func. Count: 203, Neg. LLF: 127.45044110977562
Optimization terminated successfully (Exit mode 0)
Current function value: 127.45044104874208
Iterations: 25
Function evaluations: 203
Gradient evaluations: 25
Iteration: 1, Func. Count: 10, Neg. LLF: 136.42891811558968
Iteration: 2, Func. Count: 21, Neg. LLF: 128.48896497315616
Iteration: 3, Func. Count: 30, Neg. LLF: 128.50294697112025
Iteration: 4, Func. Count: 40, Neg. LLF: 128.49058272197888
Iteration: 5, Func. Count: 50, Neg. LLF: 128.48592964699324
Iteration: 6, Func. Count: 59, Neg. LLF: 128.4828023587778
Iteration: 7, Func. Count: 68, Neg. LLF: 128.47158755560204
Iteration: 8, Func. Count: 77, Neg. LLF: 128.46716103645596
Iteration: 9, Func. Count: 86, Neg. LLF: 128.43432620294743
Iteration: 10, Func. Count: 95, Neg. LLF: 128.17953093505366
Iteration: 11, Func. Count: 104, Neg. LLF: 128.15115760413923
Iteration: 12, Func. Count: 113, Neg. LLF: 128.12695645075246
Iteration: 13, Func. Count: 122, Neg. LLF: 128.117790302886
Iteration: 14, Func. Count: 131, Neg. LLF: 128.08340675399256
Iteration: 15, Func. Count: 140, Neg. LLF: 128.0568855176661
Iteration: 16, Func. Count: 149, Neg. LLF: 128.05336244929453
Iteration: 17, Func. Count: 159, Neg. LLF: 128.01818065456897
Iteration: 18, Func. Count: 168, Neg. LLF: 127.84518539897387
Iteration: 19, Func. Count: 177, Neg. LLF: 127.89069567483614
Iteration: 20, Func. Count: 187, Neg. LLF: 127.67401775310026
Iteration: 21, Func. Count: 196, Neg. LLF: 127.62544534189712
Iteration: 22, Func. Count: 205, Neg. LLF: 127.60838761554083
Iteration: 23, Func. Count: 214, Neg. LLF: 130.38772731722796
Iteration: 24, Func. Count: 226, Neg. LLF: 127.79933837773022
Iteration: 25, Func. Count: 236, Neg. LLF: 127.58296551966512
Iteration: 26, Func. Count: 246, Neg. LLF: 130.3297998649134
Iteration: 27, Func. Count: 257, Neg. LLF: 127.46513164576999
Iteration: 28, Func. Count: 266, Neg. LLF: 127.45564850195174
Iteration: 29, Func. Count: 275, Neg. LLF: 127.45206279945657
Iteration: 30, Func. Count: 284, Neg. LLF: 127.45051666016325
Iteration: 31, Func. Count: 293, Neg. LLF: 127.45044172656027
Iteration: 32, Func. Count: 302, Neg. LLF: 127.45044105033071
Optimization terminated successfully (Exit mode 0)
Current function value: 127.45044105033071
Iterations: 33
Function evaluations: 302
Gradient evaluations: 32
Iteration: 1, Func. Count: 11, Neg. LLF: 136.38138834477613
Iteration: 2, Func. Count: 23, Neg. LLF: 128.4882075421405
Iteration: 3, Func. Count: 33, Neg. LLF: 128.51715461558874
Iteration: 4, Func. Count: 45, Neg. LLF: 128.4878707526459
Iteration: 5, Func. Count: 56, Neg. LLF: 128.48706776660924
Iteration: 6, Func. Count: 66, Neg. LLF: 128.47964255641762
Iteration: 7, Func. Count: 76, Neg. LLF: 128.47073394523647
Iteration: 8, Func. Count: 86, Neg. LLF: 128.45934456930254
Iteration: 9, Func. Count: 96, Neg. LLF: 128.43877125851995
Iteration: 10, Func. Count: 106, Neg. LLF: 128.23960698275943
Iteration: 11, Func. Count: 116, Neg. LLF: 128.17354503767424
Iteration: 12, Func. Count: 126, Neg. LLF: 128.22168374469751
Iteration: 13, Func. Count: 137, Neg. LLF: 128.227786531612
Iteration: 14, Func. Count: 148, Neg. LLF: 127.94055599184838
Iteration: 15, Func. Count: 158, Neg. LLF: 176.58048817456785
Iteration: 16, Func. Count: 169, Neg. LLF: 131.6251336436611
Iteration: 17, Func. Count: 180, Neg. LLF: 127.66596499180507
Iteration: 18, Func. Count: 191, Neg. LLF: 136.63209624655
Iteration: 19, Func. Count: 203, Neg. LLF: 127.45681897577228
Iteration: 20, Func. Count: 213, Neg. LLF: 127.45333256584783
Iteration: 21, Func. Count: 223, Neg. LLF: 127.45071778181439
Iteration: 22, Func. Count: 233, Neg. LLF: 127.4504492362176
Iteration: 23, Func. Count: 243, Neg. LLF: 127.45044116502855
Iteration: 24, Func. Count: 252, Neg. LLF: 127.45044132009222
Optimization terminated successfully (Exit mode 0)
Current function value: 127.45044116502855
Iterations: 25
Function evaluations: 252
Gradient evaluations: 24
Iteration: 1, Func. Count: 8, Neg. LLF: 132.35251600682355
Iteration: 2, Func. Count: 16, Neg. LLF: 146.2902229512042
Iteration: 3, Func. Count: 24, Neg. LLF: 127.70077875865394
Iteration: 4, Func. Count: 32, Neg. LLF: 128.18691963657187
Iteration: 5, Func. Count: 41, Neg. LLF: 127.54155730835005
Iteration: 6, Func. Count: 49, Neg. LLF: 127.59735613750948
Iteration: 7, Func. Count: 57, Neg. LLF: 127.46242896013723
Iteration: 8, Func. Count: 64, Neg. LLF: 127.45278992450783
Iteration: 9, Func. Count: 71, Neg. LLF: 127.45058356929731
Iteration: 10, Func. Count: 78, Neg. LLF: 127.45044313567578
Iteration: 11, Func. Count: 85, Neg. LLF: 127.4504410359973
Iteration: 12, Func. Count: 91, Neg. LLF: 127.45044106492634
Optimization terminated successfully (Exit mode 0)
Current function value: 127.4504410359973
Iterations: 12
Function evaluations: 91
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 130.5002276018346
Iteration: 2, Func. Count: 20, Neg. LLF: 133.50891834712056
Iteration: 3, Func. Count: 30, Neg. LLF: 128.48602103657146
Iteration: 4, Func. Count: 38, Neg. LLF: 128.57032488381728
Iteration: 5, Func. Count: 47, Neg. LLF: 128.48652551222625
Iteration: 6, Func. Count: 56, Neg. LLF: 128.47776852342403
Iteration: 7, Func. Count: 65, Neg. LLF: 128.43952512777702
Iteration: 8, Func. Count: 73, Neg. LLF: 128.27048789166727
Iteration: 9, Func. Count: 81, Neg. LLF: 128.22883234056567
Iteration: 10, Func. Count: 89, Neg. LLF: 128.1388065117849
Iteration: 11, Func. Count: 97, Neg. LLF: 128.11305583301714
Iteration: 12, Func. Count: 105, Neg. LLF: 127.99897122281759
Iteration: 13, Func. Count: 113, Neg. LLF: 127.85091937408653
Iteration: 14, Func. Count: 121, Neg. LLF: 127.70225537086186
Iteration: 15, Func. Count: 129, Neg. LLF: 127.56612650704545
Iteration: 16, Func. Count: 137, Neg. LLF: 127.5171483251864
Iteration: 17, Func. Count: 145, Neg. LLF: 127.481083098957
Iteration: 18, Func. Count: 153, Neg. LLF: 127.4660852394798
Iteration: 19, Func. Count: 161, Neg. LLF: 127.45559370793173
Iteration: 20, Func. Count: 169, Neg. LLF: 127.45067282645235
Iteration: 21, Func. Count: 177, Neg. LLF: 127.4504542479927
Iteration: 22, Func. Count: 185, Neg. LLF: 127.45044109114605
Iteration: 23, Func. Count: 192, Neg. LLF: 127.45044112071423
Optimization terminated successfully (Exit mode 0)
Current function value: 127.45044109114605
Iterations: 23
Function evaluations: 192
Gradient evaluations: 23
Iteration: 1, Func. Count: 10, Neg. LLF: 136.41392919676028
Iteration: 2, Func. Count: 21, Neg. LLF: 128.49091432499733
Iteration: 3, Func. Count: 30, Neg. LLF: 128.61111942296992
Iteration: 4, Func. Count: 41, Neg. LLF: 128.49173102666182
Iteration: 5, Func. Count: 51, Neg. LLF: 128.48680401963284
Iteration: 6, Func. Count: 60, Neg. LLF: 128.48778406606672
Iteration: 7, Func. Count: 70, Neg. LLF: 128.47249800797968
Iteration: 8, Func. Count: 79, Neg. LLF: 128.46738065100337
Iteration: 9, Func. Count: 88, Neg. LLF: 128.43350167213418
Iteration: 10, Func. Count: 97, Neg. LLF: 128.32240516784518
Iteration: 11, Func. Count: 106, Neg. LLF: 128.10240254413898
Iteration: 12, Func. Count: 115, Neg. LLF: 128.10878429827176
Iteration: 13, Func. Count: 125, Neg. LLF: 128.0669083397512
Iteration: 14, Func. Count: 134, Neg. LLF: 128.03248622582683
Iteration: 15, Func. Count: 143, Neg. LLF: 127.99414810898236
Iteration: 16, Func. Count: 152, Neg. LLF: 127.80414784832213
Iteration: 17, Func. Count: 161, Neg. LLF: 127.62603070951796
Iteration: 18, Func. Count: 170, Neg. LLF: 127.57023302499822
Iteration: 19, Func. Count: 179, Neg. LLF: 127.51656669107496
Iteration: 20, Func. Count: 188, Neg. LLF: 127.48111704157154
Iteration: 21, Func. Count: 197, Neg. LLF: 127.45907787009969
Iteration: 22, Func. Count: 206, Neg. LLF: 127.45096079314865
Iteration: 23, Func. Count: 215, Neg. LLF: 127.45077872902897
Iteration: 24, Func. Count: 224, Neg. LLF: 127.57892072815267
Iteration: 25, Func. Count: 235, Neg. LLF: 127.4648598524945
Iteration: 26, Func. Count: 246, Neg. LLF: 127.47957311339788
Iteration: 27, Func. Count: 257, Neg. LLF: 127.45048888065219
Iteration: 28, Func. Count: 266, Neg. LLF: 127.45045082717677
Iteration: 29, Func. Count: 275, Neg. LLF: 127.45044103553114
Iteration: 30, Func. Count: 283, Neg. LLF: 127.45044109656197
Optimization terminated successfully (Exit mode 0)
Current function value: 127.45044103553114
Iterations: 31
Function evaluations: 283
Gradient evaluations: 30
Iteration: 1, Func. Count: 11, Neg. LLF: 136.38709373115984
Iteration: 2, Func. Count: 23, Neg. LLF: 128.50889340345304
Iteration: 3, Func. Count: 33, Neg. LLF: 128.53491283514563
Iteration: 4, Func. Count: 44, Neg. LLF: 128.49887025986914
Iteration: 5, Func. Count: 55, Neg. LLF: 128.48530893695118
Iteration: 6, Func. Count: 65, Neg. LLF: 128.48068612348362
Iteration: 7, Func. Count: 75, Neg. LLF: 128.46835163654427
Iteration: 8, Func. Count: 85, Neg. LLF: 128.46050837800988
Iteration: 9, Func. Count: 95, Neg. LLF: 128.35696321655305
Iteration: 10, Func. Count: 105, Neg. LLF: 128.12167995119538
Iteration: 11, Func. Count: 115, Neg. LLF: 128.11484286651572
Iteration: 12, Func. Count: 125, Neg. LLF: 128.07000679308297
Iteration: 13, Func. Count: 135, Neg. LLF: 128.01643108132646
Iteration: 14, Func. Count: 145, Neg. LLF: 128.05929076058905
Iteration: 15, Func. Count: 156, Neg. LLF: 128.01946237697925
Iteration: 16, Func. Count: 167, Neg. LLF: 127.9821120712882
Iteration: 17, Func. Count: 177, Neg. LLF: 127.86533875208806
Iteration: 18, Func. Count: 187, Neg. LLF: 127.98050229616007
Iteration: 19, Func. Count: 198, Neg. LLF: 127.79098683367319
Iteration: 20, Func. Count: 208, Neg. LLF: 132.80571645757306
Iteration: 21, Func. Count: 221, Neg. LLF: 128.1271097943323
Iteration: 22, Func. Count: 232, Neg. LLF: 130.47653745693717
Iteration: 23, Func. Count: 244, Neg. LLF: 130.16951792464175
Iteration: 24, Func. Count: 255, Neg. LLF: 127.54091680399675
Iteration: 25, Func. Count: 265, Neg. LLF: 127.46686690932484
Iteration: 26, Func. Count: 275, Neg. LLF: 127.45135198055885
Iteration: 27, Func. Count: 285, Neg. LLF: 127.4504481659698
Iteration: 28, Func. Count: 295, Neg. LLF: 127.45044114032198
Iteration: 29, Func. Count: 304, Neg. LLF: 127.45044126324608
Optimization terminated successfully (Exit mode 0)
Current function value: 127.45044114032198
Iterations: 30
Function evaluations: 304
Gradient evaluations: 29
Iteration: 1, Func. Count: 12, Neg. LLF: 136.3443332932337
Iteration: 2, Func. Count: 25, Neg. LLF: 128.56348929162863
Iteration: 3, Func. Count: 37, Neg. LLF: 128.49300884973613
Iteration: 4, Func. Count: 48, Neg. LLF: 128.49564336138357
Iteration: 5, Func. Count: 60, Neg. LLF: 128.48725978525113
Iteration: 6, Func. Count: 71, Neg. LLF: 128.48649321577963
Iteration: 7, Func. Count: 82, Neg. LLF: 128.48530262749637
Iteration: 8, Func. Count: 93, Neg. LLF: 128.47766418032296
Iteration: 9, Func. Count: 104, Neg. LLF: 128.47357448100738
Iteration: 10, Func. Count: 115, Neg. LLF: 128.44892826979694
Iteration: 11, Func. Count: 126, Neg. LLF: 128.41716129596819
Iteration: 12, Func. Count: 137, Neg. LLF: 128.1881755805993
Iteration: 13, Func. Count: 148, Neg. LLF: 128.19237074784556
Iteration: 14, Func. Count: 160, Neg. LLF: 130.1413816514528
Iteration: 15, Func. Count: 173, Neg. LLF: 128.91512370793967
Iteration: 16, Func. Count: 185, Neg. LLF: 127.87618403053114
Iteration: 17, Func. Count: 196, Neg. LLF: 127.63332932351065
Iteration: 18, Func. Count: 207, Neg. LLF: 131.29987085119785
Iteration: 19, Func. Count: 220, Neg. LLF: 127.88862356499413
Iteration: 20, Func. Count: 232, Neg. LLF: 127.46742462407754
Iteration: 21, Func. Count: 243, Neg. LLF: 127.45231161404908
Iteration: 22, Func. Count: 254, Neg. LLF: 127.45063396553297
Iteration: 23, Func. Count: 265, Neg. LLF: 127.45048193777684
Iteration: 24, Func. Count: 276, Neg. LLF: 127.45044320648829
Iteration: 25, Func. Count: 287, Neg. LLF: 127.45044117843359
Iteration: 26, Func. Count: 297, Neg. LLF: 127.45044133358495
Optimization terminated successfully (Exit mode 0)
Current function value: 127.45044117843359
Iterations: 27
Function evaluations: 297
Gradient evaluations: 26
Iteration: 1, Func. Count: 5, Neg. LLF: 136.5560214258976
Iteration: 2, Func. Count: 10, Neg. LLF: 130.1628195614277
Iteration: 3, Func. Count: 14, Neg. LLF: 128.55192881567683
Iteration: 4, Func. Count: 18, Neg. LLF: 128.49382337586056
Iteration: 5, Func. Count: 22, Neg. LLF: 128.4856964297967
Iteration: 6, Func. Count: 26, Neg. LLF: 128.48115921115192
Iteration: 7, Func. Count: 30, Neg. LLF: 128.48114049674965
Iteration: 8, Func. Count: 33, Neg. LLF: 128.48114054610707
Optimization terminated successfully (Exit mode 0)
Current function value: 128.48114049674965
Iterations: 8
Function evaluations: 33
Gradient evaluations: 8
Iteration: 1, Func. Count: 6, Neg. LLF: 150.5456728735538
Iteration: 2, Func. Count: 14, Neg. LLF: 128.492689798575
Iteration: 3, Func. Count: 19, Neg. LLF: 128.50141670642736
Iteration: 4, Func. Count: 25, Neg. LLF: 128.50302402145272
Iteration: 5, Func. Count: 31, Neg. LLF: 128.49089117684503
Iteration: 6, Func. Count: 36, Neg. LLF: 128.4908752874024
Iteration: 7, Func. Count: 41, Neg. LLF: 128.490793196225
Iteration: 8, Func. Count: 46, Neg. LLF: 128.49056459141931
Iteration: 9, Func. Count: 51, Neg. LLF: 128.48983348138086
Iteration: 10, Func. Count: 56, Neg. LLF: 128.48975097222447
Iteration: 11, Func. Count: 61, Neg. LLF: 128.48971873273817
Iteration: 12, Func. Count: 66, Neg. LLF: 128.4896798433166
Iteration: 13, Func. Count: 71, Neg. LLF: 128.4886866334474
Iteration: 14, Func. Count: 76, Neg. LLF: 128.48740084441908
Iteration: 15, Func. Count: 81, Neg. LLF: 128.4832422167426
Iteration: 16, Func. Count: 86, Neg. LLF: 128.4826981356218
Iteration: 17, Func. Count: 91, Neg. LLF: 128.48232311856376
Iteration: 18, Func. Count: 96, Neg. LLF: 128.48129462933903
Iteration: 19, Func. Count: 101, Neg. LLF: 128.48114052585518
Iteration: 20, Func. Count: 105, Neg. LLF: 128.48114052599473
Optimization terminated successfully (Exit mode 0)
Current function value: 128.48114052585518
Iterations: 20
Function evaluations: 105
Gradient evaluations: 20
Iteration: 1, Func. Count: 7, Neg. LLF: 131.8531071798207
Iteration: 2, Func. Count: 15, Neg. LLF: 128.49483477120774
Iteration: 3, Func. Count: 21, Neg. LLF: 128.49049589961507
Iteration: 4, Func. Count: 27, Neg. LLF: 128.48867480713926
Iteration: 5, Func. Count: 33, Neg. LLF: 128.48867160848513
Iteration: 6, Func. Count: 39, Neg. LLF: 128.48865068017082
Iteration: 7, Func. Count: 45, Neg. LLF: 128.48853060876587
Iteration: 8, Func. Count: 51, Neg. LLF: 128.48762369911972
Iteration: 9, Func. Count: 57, Neg. LLF: 128.48683635523292
Iteration: 10, Func. Count: 63, Neg. LLF: 128.48680626824574
Iteration: 11, Func. Count: 69, Neg. LLF: 128.48665618537612
Iteration: 12, Func. Count: 75, Neg. LLF: 128.4859389857929
Iteration: 13, Func. Count: 81, Neg. LLF: 128.48330736244208
Iteration: 14, Func. Count: 87, Neg. LLF: 128.4817932813569
Iteration: 15, Func. Count: 93, Neg. LLF: 128.48162293120944
Iteration: 16, Func. Count: 99, Neg. LLF: 128.4811792477448
Iteration: 17, Func. Count: 105, Neg. LLF: 128.48114047485146
Iteration: 18, Func. Count: 110, Neg. LLF: 128.48114047497194
Optimization terminated successfully (Exit mode 0)
Current function value: 128.48114047485146
Iterations: 18
Function evaluations: 110
Gradient evaluations: 18
Iteration: 1, Func. Count: 8, Neg. LLF: 135.70580504016232
Iteration: 2, Func. Count: 18, Neg. LLF: 128.49166839836514
Iteration: 3, Func. Count: 25, Neg. LLF: 128.49462342971768
Iteration: 4, Func. Count: 33, Neg. LLF: 128.48873226472458
Iteration: 5, Func. Count: 40, Neg. LLF: 128.48864456606904
Iteration: 6, Func. Count: 47, Neg. LLF: 128.48248634226678
Iteration: 7, Func. Count: 54, Neg. LLF: 128.4028916863143
Iteration: 8, Func. Count: 61, Neg. LLF: 128.3119529960944
Iteration: 9, Func. Count: 68, Neg. LLF: 128.17181970037316
Iteration: 10, Func. Count: 75, Neg. LLF: 128.05938222149376
Iteration: 11, Func. Count: 82, Neg. LLF: 127.85745661485397
Iteration: 12, Func. Count: 89, Neg. LLF: 127.77530503743826
Iteration: 13, Func. Count: 96, Neg. LLF: 127.74614438039912
Iteration: 14, Func. Count: 104, Neg. LLF: 127.6589649677435
Iteration: 15, Func. Count: 111, Neg. LLF: 127.65116225823871
Iteration: 16, Func. Count: 118, Neg. LLF: 127.64555420131147
Iteration: 17, Func. Count: 125, Neg. LLF: 127.6427533451401
Iteration: 18, Func. Count: 132, Neg. LLF: 127.64166360060305
Iteration: 19, Func. Count: 139, Neg. LLF: 127.64166580262267
Iteration: 20, Func. Count: 147, Neg. LLF: 127.64157841089566
Iteration: 21, Func. Count: 153, Neg. LLF: 127.64157841091807
Optimization terminated successfully (Exit mode 0)
Current function value: 127.64157841089566
Iterations: 21
Function evaluations: 153
Gradient evaluations: 21
Iteration: 1, Func. Count: 9, Neg. LLF: 132.57164886565576
Iteration: 2, Func. Count: 19, Neg. LLF: 128.49578416593016
Iteration: 3, Func. Count: 27, Neg. LLF: 128.51076926622036
Iteration: 4, Func. Count: 36, Neg. LLF: 128.4788941632664
Iteration: 5, Func. Count: 44, Neg. LLF: 128.40852322800188
Iteration: 6, Func. Count: 52, Neg. LLF: 128.38723057997825
Iteration: 7, Func. Count: 60, Neg. LLF: 128.29838815504004
Iteration: 8, Func. Count: 68, Neg. LLF: 127.98187149330442
Iteration: 9, Func. Count: 76, Neg. LLF: 128.51047177505345
Iteration: 10, Func. Count: 85, Neg. LLF: 127.88437116538847
Iteration: 11, Func. Count: 94, Neg. LLF: 127.66306862038411
Iteration: 12, Func. Count: 102, Neg. LLF: 127.65748139577656
Iteration: 13, Func. Count: 110, Neg. LLF: 127.64910026249417
Iteration: 14, Func. Count: 118, Neg. LLF: 127.64355975438272
Iteration: 15, Func. Count: 126, Neg. LLF: 127.6421161567341
Iteration: 16, Func. Count: 134, Neg. LLF: 127.64202905871166
Iteration: 17, Func. Count: 142, Neg. LLF: 127.64404221553009
Iteration: 18, Func. Count: 151, Neg. LLF: 127.64599791801567
Iteration: 19, Func. Count: 160, Neg. LLF: 127.64158130622909
Iteration: 20, Func. Count: 168, Neg. LLF: 127.64162146759813
Iteration: 21, Func. Count: 177, Neg. LLF: 127.64157840399388
Optimization terminated successfully (Exit mode 0)
Current function value: 127.64157840399388
Iterations: 22
Function evaluations: 177
Gradient evaluations: 21
Iteration: 1, Func. Count: 6, Neg. LLF: 136.03380836750938
Iteration: 2, Func. Count: 12, Neg. LLF: 132.52203938873896
Iteration: 3, Func. Count: 18, Neg. LLF: 128.665819353565
Iteration: 4, Func. Count: 23, Neg. LLF: 129.01233260197733
Iteration: 5, Func. Count: 30, Neg. LLF: 128.53539804237192
Iteration: 6, Func. Count: 35, Neg. LLF: 128.48213153168325
Iteration: 7, Func. Count: 40, Neg. LLF: 128.48084688260266
Iteration: 8, Func. Count: 45, Neg. LLF: 128.4803262628275
Iteration: 9, Func. Count: 50, Neg. LLF: 128.48031269191387
Iteration: 10, Func. Count: 54, Neg. LLF: 128.4803126918612
Optimization terminated successfully (Exit mode 0)
Current function value: 128.48031269191387
Iterations: 10
Function evaluations: 54
Gradient evaluations: 10
Iteration: 1, Func. Count: 7, Neg. LLF: 128.9350382112209
Iteration: 2, Func. Count: 15, Neg. LLF: 128.5167713015477
Iteration: 3, Func. Count: 22, Neg. LLF: 128.49176004528482
Iteration: 4, Func. Count: 28, Neg. LLF: 128.5642529988957
Iteration: 5, Func. Count: 35, Neg. LLF: 128.4904726592511
Iteration: 6, Func. Count: 42, Neg. LLF: 128.48328269476306
Iteration: 7, Func. Count: 48, Neg. LLF: 128.48316717939477
Iteration: 8, Func. Count: 54, Neg. LLF: 128.4829102583555
Iteration: 9, Func. Count: 60, Neg. LLF: 128.4821934195616
Iteration: 10, Func. Count: 66, Neg. LLF: 128.48059362703185
Iteration: 11, Func. Count: 72, Neg. LLF: 128.4788641846044
Iteration: 12, Func. Count: 78, Neg. LLF: 128.47850980507988
Iteration: 13, Func. Count: 84, Neg. LLF: 128.47841868515087
Iteration: 14, Func. Count: 90, Neg. LLF: 128.47833764650107
Iteration: 15, Func. Count: 96, Neg. LLF: 128.47831760795842
Iteration: 16, Func. Count: 102, Neg. LLF: 128.47831541431535
Iteration: 17, Func. Count: 107, Neg. LLF: 128.47831541437685
Optimization terminated successfully (Exit mode 0)
Current function value: 128.47831541431535
Iterations: 17
Function evaluations: 107
Gradient evaluations: 17
Iteration: 1, Func. Count: 8, Neg. LLF: 133.47238675705643
Iteration: 2, Func. Count: 17, Neg. LLF: 128.4965939094539
Iteration: 3, Func. Count: 24, Neg. LLF: 128.49675226311007
Iteration: 4, Func. Count: 32, Neg. LLF: 128.5258046045528
Iteration: 5, Func. Count: 41, Neg. LLF: 128.4885204747874
Iteration: 6, Func. Count: 48, Neg. LLF: 128.48804827003113
Iteration: 7, Func. Count: 55, Neg. LLF: 128.48239727311775
Iteration: 8, Func. Count: 62, Neg. LLF: 128.48222538221802
Iteration: 9, Func. Count: 69, Neg. LLF: 128.4821456849579
Iteration: 10, Func. Count: 76, Neg. LLF: 128.48196380327755
Iteration: 11, Func. Count: 83, Neg. LLF: 128.48155511429334
Iteration: 12, Func. Count: 90, Neg. LLF: 128.48083312842968
Iteration: 13, Func. Count: 97, Neg. LLF: 128.48001424020717
Iteration: 14, Func. Count: 104, Neg. LLF: 128.47909262639607
Iteration: 15, Func. Count: 111, Neg. LLF: 128.4784185038894
Iteration: 16, Func. Count: 118, Neg. LLF: 128.47832199065155
Iteration: 17, Func. Count: 125, Neg. LLF: 128.47831585439891
Iteration: 18, Func. Count: 132, Neg. LLF: 128.47831522755396
Optimization terminated successfully (Exit mode 0)
Current function value: 128.47831522755396
Iterations: 18
Function evaluations: 132
Gradient evaluations: 18
Iteration: 1, Func. Count: 9, Neg. LLF: 136.25001210465717
Iteration: 2, Func. Count: 19, Neg. LLF: 128.78532214668414
Iteration: 3, Func. Count: 29, Neg. LLF: 127.09752621008452
Iteration: 4, Func. Count: 37, Neg. LLF: 137.64171522017145
Iteration: 5, Func. Count: 47, Neg. LLF: 127.31459940215696
Iteration: 6, Func. Count: 56, Neg. LLF: 126.4409828210425
Iteration: 7, Func. Count: 64, Neg. LLF: 126.33735618311316
Iteration: 8, Func. Count: 72, Neg. LLF: 126.25465753190036
Iteration: 9, Func. Count: 80, Neg. LLF: 126.19590879147272
Iteration: 10, Func. Count: 88, Neg. LLF: 126.1168701598488
Iteration: 11, Func. Count: 96, Neg. LLF: 126.08823013922364
Iteration: 12, Func. Count: 104, Neg. LLF: 126.0783485774158
Iteration: 13, Func. Count: 112, Neg. LLF: 126.08027638836124
Iteration: 14, Func. Count: 121, Neg. LLF: 126.07386240469381
Iteration: 15, Func. Count: 129, Neg. LLF: 126.07319572358954
Iteration: 16, Func. Count: 137, Neg. LLF: 126.07262795506841
Iteration: 17, Func. Count: 145, Neg. LLF: 126.07249321439929
Iteration: 18, Func. Count: 153, Neg. LLF: 126.07243254838968
Iteration: 19, Func. Count: 161, Neg. LLF: 126.07240498957886
Iteration: 20, Func. Count: 169, Neg. LLF: 126.07173707126374
Iteration: 21, Func. Count: 177, Neg. LLF: 126.04135469732587
Iteration: 22, Func. Count: 185, Neg. LLF: 131.00167572637503
Iteration: 23, Func. Count: 195, Neg. LLF: 129.75366331711268
Iteration: 24, Func. Count: 213, Neg. LLF: 152.47525621436117
Iteration: 25, Func. Count: 224, Neg. LLF: 9749.155610183612
Iteration: 26, Func. Count: 234, Neg. LLF: 143.85002378406915
Iteration: 27, Func. Count: 244, Neg. LLF: 126.04774562768611
Iteration: 28, Func. Count: 253, Neg. LLF: 126.03453862475673
Iteration: 29, Func. Count: 262, Neg. LLF: 126.03047222779524
Iteration: 30, Func. Count: 271, Neg. LLF: 126.03044488466021
Iteration: 31, Func. Count: 279, Neg. LLF: 126.03042030353522
Iteration: 32, Func. Count: 287, Neg. LLF: 126.03041263538483
Iteration: 33, Func. Count: 294, Neg. LLF: 126.03041261373859
Optimization terminated successfully (Exit mode 0)
Current function value: 126.03041263538483
Iterations: 34
Function evaluations: 294
Gradient evaluations: 33
Iteration: 1, Func. Count: 10, Neg. LLF: 131.53164542695202
Iteration: 2, Func. Count: 21, Neg. LLF: 128.44490987593323
Iteration: 3, Func. Count: 30, Neg. LLF: 128.42582043611674
Iteration: 4, Func. Count: 39, Neg. LLF: 128.23113754055146
Iteration: 5, Func. Count: 48, Neg. LLF: 128.04340321259482
Iteration: 6, Func. Count: 57, Neg. LLF: 128.3104490393485
Iteration: 7, Func. Count: 67, Neg. LLF: 127.60713485738361
Iteration: 8, Func. Count: 76, Neg. LLF: 127.39789279775404
Iteration: 9, Func. Count: 85, Neg. LLF: 126.52651719219764
Iteration: 10, Func. Count: 94, Neg. LLF: 126.77552465510868
Iteration: 11, Func. Count: 104, Neg. LLF: 126.57108518083865
Iteration: 12, Func. Count: 114, Neg. LLF: 126.13144125415964
Iteration: 13, Func. Count: 123, Neg. LLF: 126.09859274524518
Iteration: 14, Func. Count: 132, Neg. LLF: 126.08687813448668
Iteration: 15, Func. Count: 141, Neg. LLF: 126.08025884560516
Iteration: 16, Func. Count: 150, Neg. LLF: 126.07473781867469
Iteration: 17, Func. Count: 159, Neg. LLF: 126.07276890958859
Iteration: 18, Func. Count: 168, Neg. LLF: 126.07262386375386
Iteration: 19, Func. Count: 177, Neg. LLF: 126.07257386019135
Iteration: 20, Func. Count: 186, Neg. LLF: 126.07249225907462
Iteration: 21, Func. Count: 195, Neg. LLF: 126.1441495315812
Iteration: 22, Func. Count: 206, Neg. LLF: 126.09795578805638
Iteration: 23, Func. Count: 217, Neg. LLF: 126.07326576159987
Iteration: 24, Func. Count: 227, Neg. LLF: 126.07247967917301
Iteration: 25, Func. Count: 237, Neg. LLF: 126.07247386853417
Iteration: 26, Func. Count: 246, Neg. LLF: 126.07246534983136
Iteration: 27, Func. Count: 255, Neg. LLF: 126.0724466002264
Iteration: 28, Func. Count: 264, Neg. LLF: 126.0724230934182
Iteration: 29, Func. Count: 273, Neg. LLF: 126.07235003851767
Iteration: 30, Func. Count: 282, Neg. LLF: 126.04186277981414
Iteration: 31, Func. Count: 291, Neg. LLF: 126.04319275730688
Iteration: 32, Func. Count: 301, Neg. LLF: 126.03510214568826
Iteration: 33, Func. Count: 311, Neg. LLF: 126.03046628911655
Iteration: 34, Func. Count: 320, Neg. LLF: 126.0304099582151
Iteration: 35, Func. Count: 329, Neg. LLF: 126.03120523251704
Iteration: 36, Func. Count: 340, Neg. LLF: 126.0355094413299
Iteration: 37, Func. Count: 351, Neg. LLF: 126.03045472127806
Iteration: 38, Func. Count: 361, Neg. LLF: 126.03041212419603
Iteration: 39, Func. Count: 369, Neg. LLF: 126.03041221255343
Optimization terminated successfully (Exit mode 0)
Current function value: 126.03041212419603
Iterations: 41
Function evaluations: 369
Gradient evaluations: 39
Iteration: 1, Func. Count: 7, Neg. LLF: 140.2707399667244
Iteration: 2, Func. Count: 14, Neg. LLF: 131.7886112388749
Iteration: 3, Func. Count: 21, Neg. LLF: 128.6837973867353
Iteration: 4, Func. Count: 27, Neg. LLF: 129.11751433666205
Iteration: 5, Func. Count: 35, Neg. LLF: 129.438372227374
Iteration: 6, Func. Count: 43, Neg. LLF: 128.5386031142468
Iteration: 7, Func. Count: 49, Neg. LLF: 128.48086402205394
Iteration: 8, Func. Count: 55, Neg. LLF: 128.48860965297612
Iteration: 9, Func. Count: 62, Neg. LLF: 128.4778664691262
Iteration: 10, Func. Count: 68, Neg. LLF: 128.4777615193981
Iteration: 11, Func. Count: 74, Neg. LLF: 128.4777601788874
Iteration: 12, Func. Count: 79, Neg. LLF: 128.4777601788746
Optimization terminated successfully (Exit mode 0)
Current function value: 128.4777601788874
Iterations: 12
Function evaluations: 79
Gradient evaluations: 12
Iteration: 1, Func. Count: 8, Neg. LLF: 129.34446363977844
Iteration: 2, Func. Count: 17, Neg. LLF: 128.50323609630166
Iteration: 3, Func. Count: 25, Neg. LLF: 128.49535499702517
Iteration: 4, Func. Count: 33, Neg. LLF: 128.9019145904201
Iteration: 5, Func. Count: 42, Neg. LLF: 128.4822074761799
Iteration: 6, Func. Count: 49, Neg. LLF: 128.49966938080297
Iteration: 7, Func. Count: 57, Neg. LLF: 128.48135559520682
Iteration: 8, Func. Count: 64, Neg. LLF: 128.48111034571647
Iteration: 9, Func. Count: 71, Neg. LLF: 128.4794847902146
Iteration: 10, Func. Count: 78, Neg. LLF: 128.47209539990936
Iteration: 11, Func. Count: 85, Neg. LLF: 128.46880679232024
Iteration: 12, Func. Count: 92, Neg. LLF: 128.4676666946102
Iteration: 13, Func. Count: 99, Neg. LLF: 128.4675797496617
Iteration: 14, Func. Count: 106, Neg. LLF: 128.46757603691012
Iteration: 15, Func. Count: 113, Neg. LLF: 128.46757353405974
Iteration: 16, Func. Count: 119, Neg. LLF: 128.46757353404277
Optimization terminated successfully (Exit mode 0)
Current function value: 128.46757353405974
Iterations: 16
Function evaluations: 119
Gradient evaluations: 16
Iteration: 1, Func. Count: 9, Neg. LLF: 133.59056017313955
Iteration: 2, Func. Count: 19, Neg. LLF: 128.49733630769484
Iteration: 3, Func. Count: 27, Neg. LLF: 128.4981553954068
Iteration: 4, Func. Count: 36, Neg. LLF: 128.5289295962013
Iteration: 5, Func. Count: 45, Neg. LLF: 128.4879019954867
Iteration: 6, Func. Count: 53, Neg. LLF: 128.48456274346586
Iteration: 7, Func. Count: 61, Neg. LLF: 128.48382908489168
Iteration: 8, Func. Count: 69, Neg. LLF: 128.48102417919148
Iteration: 9, Func. Count: 77, Neg. LLF: 128.4789380453405
Iteration: 10, Func. Count: 85, Neg. LLF: 128.4773435729622
Iteration: 11, Func. Count: 93, Neg. LLF: 128.47686363272965
Iteration: 12, Func. Count: 101, Neg. LLF: 128.47640529821498
Iteration: 13, Func. Count: 109, Neg. LLF: 128.47523275057588
Iteration: 14, Func. Count: 117, Neg. LLF: 128.47318862033472
Iteration: 15, Func. Count: 125, Neg. LLF: 128.4696488296176
Iteration: 16, Func. Count: 133, Neg. LLF: 128.4680140023289
Iteration: 17, Func. Count: 141, Neg. LLF: 128.4676047616538
Iteration: 18, Func. Count: 149, Neg. LLF: 128.46757560078035
Iteration: 19, Func. Count: 157, Neg. LLF: 128.46757361704655
Iteration: 20, Func. Count: 164, Neg. LLF: 128.46757361981614
Optimization terminated successfully (Exit mode 0)
Current function value: 128.46757361704655
Iterations: 20
Function evaluations: 164
Gradient evaluations: 20
Iteration: 1, Func. Count: 10, Neg. LLF: 136.23198986257614
Iteration: 2, Func. Count: 21, Neg. LLF: 128.69921914119038
Iteration: 3, Func. Count: 32, Neg. LLF: 127.10828508040562
Iteration: 4, Func. Count: 41, Neg. LLF: 137.837312164752
Iteration: 5, Func. Count: 52, Neg. LLF: 127.90278107840446
Iteration: 6, Func. Count: 62, Neg. LLF: 126.57833830859941
Iteration: 7, Func. Count: 71, Neg. LLF: 126.47412740805404
Iteration: 8, Func. Count: 80, Neg. LLF: 126.31579986722943
Iteration: 9, Func. Count: 89, Neg. LLF: 126.26714896337528
Iteration: 10, Func. Count: 98, Neg. LLF: 126.28834207171083
Iteration: 11, Func. Count: 108, Neg. LLF: 126.65591193353609
Iteration: 12, Func. Count: 118, Neg. LLF: 126.12345548935349
Iteration: 13, Func. Count: 127, Neg. LLF: 126.09325908411063
Iteration: 14, Func. Count: 136, Neg. LLF: 126.08601443111783
Iteration: 15, Func. Count: 145, Neg. LLF: 126.0769463804572
Iteration: 16, Func. Count: 154, Neg. LLF: 126.07460266416771
Iteration: 17, Func. Count: 163, Neg. LLF: 126.07341143600638
Iteration: 18, Func. Count: 172, Neg. LLF: 126.07288364357831
Iteration: 19, Func. Count: 181, Neg. LLF: 126.07252669719442
Iteration: 20, Func. Count: 190, Neg. LLF: 126.07245250523081
Iteration: 21, Func. Count: 199, Neg. LLF: 126.07241727718635
Iteration: 22, Func. Count: 208, Neg. LLF: 126.07236519238774
Iteration: 23, Func. Count: 217, Neg. LLF: 126.0573979700938
Iteration: 24, Func. Count: 226, Neg. LLF: 126.03221373505785
Iteration: 25, Func. Count: 235, Neg. LLF: 126.02966299785155
Iteration: 26, Func. Count: 245, Neg. LLF: 130.2689056917517
Iteration: 27, Func. Count: 256, Neg. LLF: 126.05031564107884
Iteration: 28, Func. Count: 266, Neg. LLF: 126.03070746343313
Iteration: 29, Func. Count: 275, Neg. LLF: 126.03287138179658
Iteration: 30, Func. Count: 285, Neg. LLF: 126.03042303628466
Iteration: 31, Func. Count: 294, Neg. LLF: 126.03041349775293
Iteration: 32, Func. Count: 303, Neg. LLF: 126.03041210686492
Iteration: 33, Func. Count: 311, Neg. LLF: 126.03041208534869
Optimization terminated successfully (Exit mode 0)
Current function value: 126.03041210686492
Iterations: 34
Function evaluations: 311
Gradient evaluations: 33
Iteration: 1, Func. Count: 11, Neg. LLF: 132.73853551705753
Iteration: 2, Func. Count: 23, Neg. LLF: 128.44297550289704
Iteration: 3, Func. Count: 33, Neg. LLF: 128.4180976401066
Iteration: 4, Func. Count: 43, Neg. LLF: 128.30196581145148
Iteration: 5, Func. Count: 53, Neg. LLF: 127.84426409172274
Iteration: 6, Func. Count: 63, Neg. LLF: 127.66942623609685
Iteration: 7, Func. Count: 73, Neg. LLF: 127.002603843694
Iteration: 8, Func. Count: 83, Neg. LLF: 127.07997597763898
Iteration: 9, Func. Count: 94, Neg. LLF: 127.7022322569203
Iteration: 10, Func. Count: 105, Neg. LLF: 126.48394185862242
Iteration: 11, Func. Count: 116, Neg. LLF: 126.15909470528308
Iteration: 12, Func. Count: 126, Neg. LLF: 126.11127647669645
Iteration: 13, Func. Count: 136, Neg. LLF: 126.10587220581172
Iteration: 14, Func. Count: 146, Neg. LLF: 126.09395383769396
Iteration: 15, Func. Count: 156, Neg. LLF: 126.08080465182698
Iteration: 16, Func. Count: 166, Neg. LLF: 126.07537477198136
Iteration: 17, Func. Count: 176, Neg. LLF: 126.07301653255277
Iteration: 18, Func. Count: 186, Neg. LLF: 126.07278387370405
Iteration: 19, Func. Count: 196, Neg. LLF: 126.07247414862074
Iteration: 20, Func. Count: 206, Neg. LLF: 126.07248030856569
Iteration: 21, Func. Count: 217, Neg. LLF: 126.15339699390206
Optimization terminated successfully (Exit mode 0)
Current function value: 126.07247200544396
Iterations: 22
Function evaluations: 220
Gradient evaluations: 21
Iteration: 1, Func. Count: 8, Neg. LLF: 139.73548179529178
Iteration: 2, Func. Count: 16, Neg. LLF: 149.68266425671248
Iteration: 3, Func. Count: 24, Neg. LLF: 127.75236093099791
Iteration: 4, Func. Count: 32, Neg. LLF: 128.10411010886006
Iteration: 5, Func. Count: 40, Neg. LLF: 127.58342932093662
Iteration: 6, Func. Count: 48, Neg. LLF: 128.39617762816425
Iteration: 7, Func. Count: 56, Neg. LLF: 127.456630231936
Iteration: 8, Func. Count: 63, Neg. LLF: 127.45088350036868
Iteration: 9, Func. Count: 70, Neg. LLF: 127.4505410299668
Iteration: 10, Func. Count: 77, Neg. LLF: 127.45048662314724
Iteration: 11, Func. Count: 84, Neg. LLF: 127.4504519875787
Iteration: 12, Func. Count: 91, Neg. LLF: 127.45044109163499
Iteration: 13, Func. Count: 97, Neg. LLF: 127.45044109163472
Optimization terminated successfully (Exit mode 0)
Current function value: 127.45044109163499
Iterations: 13
Function evaluations: 97
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 129.5014087261842
Iteration: 2, Func. Count: 19, Neg. LLF: 128.7376815735105
Iteration: 3, Func. Count: 29, Neg. LLF: 128.48633143475215
Iteration: 4, Func. Count: 37, Neg. LLF: 128.48154928294235
Iteration: 5, Func. Count: 45, Neg. LLF: 128.50662606858447
Iteration: 6, Func. Count: 54, Neg. LLF: 128.48184341886926
Iteration: 7, Func. Count: 63, Neg. LLF: 128.47702680219703
Iteration: 8, Func. Count: 71, Neg. LLF: 128.46778219625065
Iteration: 9, Func. Count: 79, Neg. LLF: 128.42452198386363
Iteration: 10, Func. Count: 87, Neg. LLF: 128.2781155301053
Iteration: 11, Func. Count: 95, Neg. LLF: 128.2385048288938
Iteration: 12, Func. Count: 103, Neg. LLF: 128.15011056480975
Iteration: 13, Func. Count: 111, Neg. LLF: 128.07041735990347
Iteration: 14, Func. Count: 119, Neg. LLF: 127.91673674259701
Iteration: 15, Func. Count: 127, Neg. LLF: 129.28574851404375
Iteration: 16, Func. Count: 136, Neg. LLF: 127.95181434720381
Iteration: 17, Func. Count: 145, Neg. LLF: 127.55998761813572
Iteration: 18, Func. Count: 153, Neg. LLF: 127.4930234798903
Iteration: 19, Func. Count: 161, Neg. LLF: 127.46069441196988
Iteration: 20, Func. Count: 169, Neg. LLF: 127.452857339155
Iteration: 21, Func. Count: 177, Neg. LLF: 127.45075495517128
Iteration: 22, Func. Count: 185, Neg. LLF: 127.45046559850203
Iteration: 23, Func. Count: 193, Neg. LLF: 127.45044245610087
Iteration: 24, Func. Count: 201, Neg. LLF: 127.450441031473
Iteration: 25, Func. Count: 208, Neg. LLF: 127.45044106102462
Optimization terminated successfully (Exit mode 0)
Current function value: 127.450441031473
Iterations: 25
Function evaluations: 208
Gradient evaluations: 25
Iteration: 1, Func. Count: 10, Neg. LLF: 134.9668704731545
Iteration: 2, Func. Count: 21, Neg. LLF: 128.49221007386814
Iteration: 3, Func. Count: 30, Neg. LLF: 128.49065969058177
Iteration: 4, Func. Count: 40, Neg. LLF: 128.53347844711755
Iteration: 5, Func. Count: 51, Neg. LLF: 128.49221144544646
Iteration: 6, Func. Count: 61, Neg. LLF: 128.4783472530761
Iteration: 7, Func. Count: 70, Neg. LLF: 128.4748156016093
Iteration: 8, Func. Count: 79, Neg. LLF: 128.47048871558016
Iteration: 9, Func. Count: 88, Neg. LLF: 128.46109810209163
Iteration: 10, Func. Count: 97, Neg. LLF: 128.35974070768128
Iteration: 11, Func. Count: 106, Neg. LLF: 128.2507502320332
Iteration: 12, Func. Count: 115, Neg. LLF: 128.1870403752133
Iteration: 13, Func. Count: 124, Neg. LLF: 128.14562187951023
Iteration: 14, Func. Count: 133, Neg. LLF: 128.12109521007454
Iteration: 15, Func. Count: 142, Neg. LLF: 128.07037692076986
Iteration: 16, Func. Count: 151, Neg. LLF: 127.8093520391729
Iteration: 17, Func. Count: 160, Neg. LLF: 127.88632397157357
Iteration: 18, Func. Count: 170, Neg. LLF: 127.46920956881083
Iteration: 19, Func. Count: 179, Neg. LLF: 127.45475525065511
Iteration: 20, Func. Count: 188, Neg. LLF: 127.45253061750371
Iteration: 21, Func. Count: 197, Neg. LLF: 127.45121000635889
Iteration: 22, Func. Count: 206, Neg. LLF: 127.45077326148252
Iteration: 23, Func. Count: 215, Neg. LLF: 127.45060997879577
Iteration: 24, Func. Count: 224, Neg. LLF: 127.45045275829767
Iteration: 25, Func. Count: 233, Neg. LLF: 127.45044118182055
Iteration: 26, Func. Count: 241, Neg. LLF: 127.45044124287142
Optimization terminated successfully (Exit mode 0)
Current function value: 127.45044118182055
Iterations: 26
Function evaluations: 241
Gradient evaluations: 26
Iteration: 1, Func. Count: 11, Neg. LLF: 136.25340775702938
Iteration: 2, Func. Count: 23, Neg. LLF: 128.49939632748027
Iteration: 3, Func. Count: 35, Neg. LLF: 127.11264639894365
Iteration: 4, Func. Count: 45, Neg. LLF: 138.3765554647575
Iteration: 5, Func. Count: 57, Neg. LLF: 128.57320952006813
Iteration: 6, Func. Count: 69, Neg. LLF: 141.00079117925026
Iteration: 7, Func. Count: 80, Neg. LLF: 126.76256753477972
Iteration: 8, Func. Count: 90, Neg. LLF: 126.48054768160208
Iteration: 9, Func. Count: 100, Neg. LLF: 126.32842854853418
Iteration: 10, Func. Count: 110, Neg. LLF: 126.26618760213326
Iteration: 11, Func. Count: 120, Neg. LLF: 126.22304552151208
Iteration: 12, Func. Count: 130, Neg. LLF: 126.35418698772983
Iteration: 13, Func. Count: 141, Neg. LLF: 126.12455921592708
Iteration: 14, Func. Count: 151, Neg. LLF: 126.09184389217016
Iteration: 15, Func. Count: 161, Neg. LLF: 126.0799509912134
Iteration: 16, Func. Count: 171, Neg. LLF: 126.07487675973506
Iteration: 17, Func. Count: 181, Neg. LLF: 126.07394452705245
Iteration: 18, Func. Count: 191, Neg. LLF: 126.07304483660738
Iteration: 19, Func. Count: 201, Neg. LLF: 126.07264802461218
Iteration: 20, Func. Count: 211, Neg. LLF: 126.0724729209011
Iteration: 21, Func. Count: 221, Neg. LLF: 126.07243840281733
Iteration: 22, Func. Count: 231, Neg. LLF: 126.07240545316597
Iteration: 23, Func. Count: 241, Neg. LLF: 126.07211288097382
Iteration: 24, Func. Count: 251, Neg. LLF: 126.04295051074429
Iteration: 25, Func. Count: 261, Neg. LLF: 126.05176985131381
Iteration: 26, Func. Count: 272, Neg. LLF: 126.02988336929957
Iteration: 27, Func. Count: 282, Neg. LLF: 126.02936390884666
Iteration: 28, Func. Count: 292, Neg. LLF: 126.02621273814212
Iteration: 29, Func. Count: 312, Neg. LLF: 126.00575612753249
Iteration: 30, Func. Count: 332, Neg. LLF: 126.05127260684522
Iteration: 31, Func. Count: 344, Neg. LLF: 126.12978266085447
Iteration: 32, Func. Count: 356, Neg. LLF: 126.0305865664838
Iteration: 33, Func. Count: 367, Neg. LLF: 126.0304441006025
Iteration: 34, Func. Count: 378, Neg. LLF: 126.03041571110906
Iteration: 35, Func. Count: 388, Neg. LLF: 126.03042467940858
Iteration: 36, Func. Count: 398, Neg. LLF: 126.03041293509861
Optimization terminated successfully (Exit mode 0)
Current function value: 126.03041295657464
Iterations: 37
Function evaluations: 398
Gradient evaluations: 36
Iteration: 1, Func. Count: 12, Neg. LLF: 135.60709721063137
Iteration: 2, Func. Count: 25, Neg. LLF: 128.43726298922653
Iteration: 3, Func. Count: 36, Neg. LLF: 128.33195283972375
Iteration: 4, Func. Count: 47, Neg. LLF: 128.03658773443536
Iteration: 5, Func. Count: 58, Neg. LLF: 127.86521475452935
Iteration: 6, Func. Count: 69, Neg. LLF: 129.28791491918867
Iteration: 7, Func. Count: 81, Neg. LLF: 127.49690279770951
Iteration: 8, Func. Count: 92, Neg. LLF: 126.92713165116045
Iteration: 9, Func. Count: 103, Neg. LLF: 126.50639528767621
Iteration: 10, Func. Count: 114, Neg. LLF: 126.32210162325093
Iteration: 11, Func. Count: 125, Neg. LLF: 126.34893156226917
Iteration: 12, Func. Count: 137, Neg. LLF: 126.16227116936608
Iteration: 13, Func. Count: 148, Neg. LLF: 126.09238050769339
Iteration: 14, Func. Count: 159, Neg. LLF: 126.08794370241131
Iteration: 15, Func. Count: 170, Neg. LLF: 126.07652870701024
Iteration: 16, Func. Count: 181, Neg. LLF: 126.07338907350855
Iteration: 17, Func. Count: 192, Neg. LLF: 126.07273319814203
Iteration: 18, Func. Count: 203, Neg. LLF: 126.07256323320455
Iteration: 19, Func. Count: 214, Neg. LLF: 126.07246989184604
Iteration: 20, Func. Count: 225, Neg. LLF: 126.07242087461111
Iteration: 21, Func. Count: 236, Neg. LLF: 126.07238454808505
Iteration: 22, Func. Count: 247, Neg. LLF: 126.06883549207153
Iteration: 23, Func. Count: 258, Neg. LLF: 127.96737528735912
Iteration: 24, Func. Count: 271, Neg. LLF: 126.33871577266652
Iteration: 25, Func. Count: 284, Neg. LLF: 126.06780948911516
Iteration: 26, Func. Count: 295, Neg. LLF: 126.0698405693302
Iteration: 27, Func. Count: 307, Neg. LLF: 126.05603643418748
Iteration: 28, Func. Count: 318, Neg. LLF: 126.04781786031039
Iteration: 29, Func. Count: 329, Neg. LLF: 126.03754568155463
Iteration: 30, Func. Count: 340, Neg. LLF: 126.03309098541807
Iteration: 31, Func. Count: 351, Neg. LLF: 126.03045116600121
Iteration: 32, Func. Count: 362, Neg. LLF: 126.03042075845477
Iteration: 33, Func. Count: 373, Neg. LLF: 126.03041211119165
Iteration: 34, Func. Count: 383, Neg. LLF: 126.03041219958736
Optimization terminated successfully (Exit mode 0)
Current function value: 126.03041211119165
Iterations: 35
Function evaluations: 383
Gradient evaluations: 34
Iteration: 1, Func. Count: 9, Neg. LLF: 135.98638372520423
Iteration: 2, Func. Count: 18, Neg. LLF: 156.8810653624359
Iteration: 3, Func. Count: 27, Neg. LLF: 128.0571691116388
Iteration: 4, Func. Count: 36, Neg. LLF: 128.0062090286009
Iteration: 5, Func. Count: 45, Neg. LLF: 127.62003401484662
Iteration: 6, Func. Count: 54, Neg. LLF: 127.58749345069883
Iteration: 7, Func. Count: 63, Neg. LLF: 127.4859313001178
Iteration: 8, Func. Count: 71, Neg. LLF: 127.45170494482292
Iteration: 9, Func. Count: 79, Neg. LLF: 127.45111006281198
Iteration: 10, Func. Count: 87, Neg. LLF: 127.45071895459034
Iteration: 11, Func. Count: 95, Neg. LLF: 127.45054507415311
Iteration: 12, Func. Count: 103, Neg. LLF: 127.45044374078427
Iteration: 13, Func. Count: 111, Neg. LLF: 127.45044106567497
Iteration: 14, Func. Count: 118, Neg. LLF: 127.45044109461645
Optimization terminated successfully (Exit mode 0)
Current function value: 127.45044106567497
Iterations: 14
Function evaluations: 118
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 128.65300763368865
Iteration: 2, Func. Count: 22, Neg. LLF: 130.92140397864432
Iteration: 3, Func. Count: 33, Neg. LLF: 128.48234910625504
Iteration: 4, Func. Count: 42, Neg. LLF: 128.49539356187856
Iteration: 5, Func. Count: 52, Neg. LLF: 128.48298574362855
Iteration: 6, Func. Count: 62, Neg. LLF: 128.48261118762815
Iteration: 7, Func. Count: 72, Neg. LLF: 128.46977190505186
Iteration: 8, Func. Count: 81, Neg. LLF: 128.43922866915173
Iteration: 9, Func. Count: 90, Neg. LLF: 128.3713986704374
Iteration: 10, Func. Count: 99, Neg. LLF: 128.12892326562377
Iteration: 11, Func. Count: 108, Neg. LLF: 128.0694126652143
Iteration: 12, Func. Count: 117, Neg. LLF: 128.02676012271175
Iteration: 13, Func. Count: 126, Neg. LLF: 127.83484932642989
Iteration: 14, Func. Count: 135, Neg. LLF: 127.58524935386615
Iteration: 15, Func. Count: 144, Neg. LLF: 127.48511832031575
Iteration: 16, Func. Count: 153, Neg. LLF: 127.45617464357139
Iteration: 17, Func. Count: 162, Neg. LLF: 127.45414655851603
Iteration: 18, Func. Count: 171, Neg. LLF: 127.4504781986012
Iteration: 19, Func. Count: 180, Neg. LLF: 127.45044520344824
Iteration: 20, Func. Count: 189, Neg. LLF: 127.4504412201834
Iteration: 21, Func. Count: 197, Neg. LLF: 127.4504412497217
Optimization terminated successfully (Exit mode 0)
Current function value: 127.4504412201834
Iterations: 21
Function evaluations: 197
Gradient evaluations: 21
Iteration: 1, Func. Count: 11, Neg. LLF: 133.7196157098877
Iteration: 2, Func. Count: 23, Neg. LLF: 128.489502189719
Iteration: 3, Func. Count: 33, Neg. LLF: 128.51440352161154
Iteration: 4, Func. Count: 45, Neg. LLF: 128.54405773431202
Iteration: 5, Func. Count: 56, Neg. LLF: 128.47788110929957
Iteration: 6, Func. Count: 66, Neg. LLF: 128.4754852976343
Iteration: 7, Func. Count: 76, Neg. LLF: 128.47551015721666
Iteration: 8, Func. Count: 87, Neg. LLF: 128.46585646398955
Iteration: 9, Func. Count: 97, Neg. LLF: 128.3994450757133
Iteration: 10, Func. Count: 107, Neg. LLF: 128.279628922347
Iteration: 11, Func. Count: 117, Neg. LLF: 128.20816976946114
Iteration: 12, Func. Count: 127, Neg. LLF: 128.1665801237957
Iteration: 13, Func. Count: 137, Neg. LLF: 128.13793182000526
Iteration: 14, Func. Count: 147, Neg. LLF: 128.08961438872228
Iteration: 15, Func. Count: 157, Neg. LLF: 128.04731427172163
Iteration: 16, Func. Count: 167, Neg. LLF: 128.02522805540346
Iteration: 17, Func. Count: 177, Neg. LLF: 127.90349538676914
Iteration: 18, Func. Count: 187, Neg. LLF: 127.61541184494725
Iteration: 19, Func. Count: 197, Neg. LLF: 127.48872248970672
Iteration: 20, Func. Count: 207, Neg. LLF: 127.45978125989464
Iteration: 21, Func. Count: 217, Neg. LLF: 127.4517747329398
Iteration: 22, Func. Count: 227, Neg. LLF: 127.45054422583814
Iteration: 23, Func. Count: 237, Neg. LLF: 127.45044175027711
Iteration: 24, Func. Count: 247, Neg. LLF: 127.45044138226959
Optimization terminated successfully (Exit mode 0)
Current function value: 127.45044138226959
Iterations: 24
Function evaluations: 247
Gradient evaluations: 24
Iteration: 1, Func. Count: 12, Neg. LLF: 136.26523559778283
Iteration: 2, Func. Count: 25, Neg. LLF: 128.71943564832708
Iteration: 3, Func. Count: 38, Neg. LLF: 127.13867671334438
Iteration: 4, Func. Count: 49, Neg. LLF: 139.3483466215154
Iteration: 5, Func. Count: 62, Neg. LLF: 128.46785065247326
Iteration: 6, Func. Count: 74, Neg. LLF: 126.42093645897656
Iteration: 7, Func. Count: 85, Neg. LLF: 139.82786469152333
Iteration: 8, Func. Count: 98, Neg. LLF: 126.31934545560493
Iteration: 9, Func. Count: 109, Neg. LLF: 126.24249412429052
Iteration: 10, Func. Count: 120, Neg. LLF: 126.28180911482096
Iteration: 11, Func. Count: 132, Neg. LLF: 126.37217044941039
Iteration: 12, Func. Count: 144, Neg. LLF: 126.18339608360573
Iteration: 13, Func. Count: 155, Neg. LLF: 126.11225201069195
Iteration: 14, Func. Count: 166, Neg. LLF: 126.08461514232118
Iteration: 15, Func. Count: 177, Neg. LLF: 126.07817588935917
Iteration: 16, Func. Count: 188, Neg. LLF: 126.074912809131
Iteration: 17, Func. Count: 199, Neg. LLF: 126.07311500337495
Iteration: 18, Func. Count: 210, Neg. LLF: 126.07262233656881
Iteration: 19, Func. Count: 221, Neg. LLF: 126.0724752348841
Iteration: 20, Func. Count: 232, Neg. LLF: 126.07243441128817
Iteration: 21, Func. Count: 243, Neg. LLF: 126.07240329545624
Iteration: 22, Func. Count: 254, Neg. LLF: 126.07106769284927
Iteration: 23, Func. Count: 265, Neg. LLF: 126.04020854298957
Iteration: 24, Func. Count: 276, Neg. LLF: 151.32551563833766
Iteration: 25, Func. Count: 290, Neg. LLF: 152.4536773454347
Iteration: 26, Func. Count: 311, Neg. LLF: 140.22894458917972
Iteration: 27, Func. Count: 324, Neg. LLF: 128.54688017860738
Iteration: 28, Func. Count: 337, Neg. LLF: 126.03305691369441
Iteration: 29, Func. Count: 349, Neg. LLF: 126.03160052526472
Iteration: 30, Func. Count: 361, Neg. LLF: 126.03045632305816
Iteration: 31, Func. Count: 372, Neg. LLF: 126.03049968420122
Iteration: 32, Func. Count: 384, Neg. LLF: 126.03041752650608
Iteration: 33, Func. Count: 395, Neg. LLF: 126.03041210711619
Iteration: 34, Func. Count: 405, Neg. LLF: 126.03041208559226
Optimization terminated successfully (Exit mode 0)
Current function value: 126.03041210711619
Iterations: 35
Function evaluations: 405
Gradient evaluations: 34
Iteration: 1, Func. Count: 13, Neg. LLF: 133.65199087841913
Iteration: 2, Func. Count: 27, Neg. LLF: 128.48609303460398
Iteration: 3, Func. Count: 39, Neg. LLF: 128.4138699717436
Iteration: 4, Func. Count: 51, Neg. LLF: 128.53921499498728
Iteration: 5, Func. Count: 64, Neg. LLF: 127.91803323695122
Iteration: 6, Func. Count: 76, Neg. LLF: 131.42681979056516
Iteration: 7, Func. Count: 90, Neg. LLF: 134.5678586940078
Iteration: 8, Func. Count: 104, Neg. LLF: 127.84780933962159
Iteration: 9, Func. Count: 116, Neg. LLF: 127.44742998920513
Iteration: 10, Func. Count: 128, Neg. LLF: 127.24687091622351
Iteration: 11, Func. Count: 140, Neg. LLF: 127.06785907605892
Iteration: 12, Func. Count: 152, Neg. LLF: 127.03177852054557
Iteration: 13, Func. Count: 164, Neg. LLF: 126.94753951023601
Iteration: 14, Func. Count: 176, Neg. LLF: 126.6973132573725
Iteration: 15, Func. Count: 188, Neg. LLF: 126.28378699595369
Iteration: 16, Func. Count: 200, Neg. LLF: 127.45450926988195
Iteration: 17, Func. Count: 213, Neg. LLF: 126.68479490029254
Iteration: 18, Func. Count: 226, Neg. LLF: 149.72784486234215
Iteration: 19, Func. Count: 240, Neg. LLF: 127.21610008623179
Iteration: 20, Func. Count: 254, Neg. LLF: 126.07156116598497
Iteration: 21, Func. Count: 266, Neg. LLF: 126.07131480847058
Iteration: 22, Func. Count: 278, Neg. LLF: 126.07047049229384
Iteration: 23, Func. Count: 290, Neg. LLF: 126.05982239264274
Iteration: 24, Func. Count: 302, Neg. LLF: 126.05453334454295
Iteration: 25, Func. Count: 314, Neg. LLF: 126.0375073836442
Iteration: 26, Func. Count: 326, Neg. LLF: 126.03227946055361
Iteration: 27, Func. Count: 338, Neg. LLF: 126.03045670640934
Iteration: 28, Func. Count: 350, Neg. LLF: 126.03042204849243
Iteration: 29, Func. Count: 362, Neg. LLF: 126.03041174065433
Iteration: 30, Func. Count: 373, Neg. LLF: 126.03041182906958
Optimization terminated successfully (Exit mode 0)
Current function value: 126.03041174065433
Iterations: 31
Function evaluations: 373
Gradient evaluations: 30
Iteration: 1, Func. Count: 6, Neg. LLF: 132.55099165391408
Iteration: 2, Func. Count: 12, Neg. LLF: 128.843266800439
Iteration: 3, Func. Count: 17, Neg. LLF: 128.75113329863336
Iteration: 4, Func. Count: 23, Neg. LLF: 129.74276015333737
Iteration: 5, Func. Count: 30, Neg. LLF: 128.47370505477795
Iteration: 6, Func. Count: 35, Neg. LLF: 128.47319930636928
Iteration: 7, Func. Count: 40, Neg. LLF: 128.47313081168994
Iteration: 8, Func. Count: 45, Neg. LLF: 128.47311993919857
Iteration: 9, Func. Count: 49, Neg. LLF: 128.47311993917734
Optimization terminated successfully (Exit mode 0)
Current function value: 128.47311993919857
Iterations: 9
Function evaluations: 49
Gradient evaluations: 9
Iteration: 1, Func. Count: 7, Neg. LLF: 134.767857183459
Iteration: 2, Func. Count: 15, Neg. LLF: 140.1800475613192
Iteration: 3, Func. Count: 23, Neg. LLF: 128.389073979701
Iteration: 4, Func. Count: 29, Neg. LLF: 128.34177973928763
Iteration: 5, Func. Count: 35, Neg. LLF: 128.33878922290856
Iteration: 6, Func. Count: 41, Neg. LLF: 128.3330497718031
Iteration: 7, Func. Count: 47, Neg. LLF: 128.33174106915172
Iteration: 8, Func. Count: 53, Neg. LLF: 128.33158810327245
Iteration: 9, Func. Count: 59, Neg. LLF: 128.33158656781853
Iteration: 10, Func. Count: 64, Neg. LLF: 128.33158656781464
Optimization terminated successfully (Exit mode 0)
Current function value: 128.33158656781853
Iterations: 10
Function evaluations: 64
Gradient evaluations: 10
Iteration: 1, Func. Count: 8, Neg. LLF: 133.16575229678293
Iteration: 2, Func. Count: 17, Neg. LLF: 132.53382601352413
Iteration: 3, Func. Count: 25, Neg. LLF: 128.174760057471
Iteration: 4, Func. Count: 32, Neg. LLF: 128.19720112669398
Iteration: 5, Func. Count: 40, Neg. LLF: 128.14924587506925
Iteration: 6, Func. Count: 47, Neg. LLF: 128.14888608416624
Iteration: 7, Func. Count: 54, Neg. LLF: 128.14863695666153
Iteration: 8, Func. Count: 61, Neg. LLF: 128.14839184395382
Iteration: 9, Func. Count: 68, Neg. LLF: 128.14831618386083
Iteration: 10, Func. Count: 75, Neg. LLF: 128.14830477390723
Iteration: 11, Func. Count: 81, Neg. LLF: 128.14830477391232
Optimization terminated successfully (Exit mode 0)
Current function value: 128.14830477390723
Iterations: 11
Function evaluations: 81
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 133.26019785576645
Iteration: 2, Func. Count: 20, Neg. LLF: 132.91167735732796
Iteration: 3, Func. Count: 30, Neg. LLF: 128.25490729602026
Iteration: 4, Func. Count: 38, Neg. LLF: 128.19078386193476
Iteration: 5, Func. Count: 46, Neg. LLF: 128.16095783409017
Iteration: 6, Func. Count: 54, Neg. LLF: 128.1532303915999
Iteration: 7, Func. Count: 62, Neg. LLF: 128.14912052927474
Iteration: 8, Func. Count: 70, Neg. LLF: 128.14888228246312
Iteration: 9, Func. Count: 78, Neg. LLF: 128.14851991363219
Iteration: 10, Func. Count: 86, Neg. LLF: 128.14836848596926
Iteration: 11, Func. Count: 94, Neg. LLF: 128.14830822471396
Iteration: 12, Func. Count: 102, Neg. LLF: 128.1483045536632
Iteration: 13, Func. Count: 109, Neg. LLF: 128.14830457425447
Optimization terminated successfully (Exit mode 0)
Current function value: 128.1483045536632
Iterations: 13
Function evaluations: 109
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 136.37051129663203
Iteration: 2, Func. Count: 22, Neg. LLF: 128.48918194009602
Iteration: 3, Func. Count: 31, Neg. LLF: 128.460179806067
Iteration: 4, Func. Count: 40, Neg. LLF: 128.23963544849926
Iteration: 5, Func. Count: 49, Neg. LLF: 128.2407475661623
Iteration: 6, Func. Count: 59, Neg. LLF: 128.2021136344634
Iteration: 7, Func. Count: 68, Neg. LLF: 128.15877797981554
Iteration: 8, Func. Count: 77, Neg. LLF: 128.15266390258412
Iteration: 9, Func. Count: 86, Neg. LLF: 128.15034708036583
Iteration: 10, Func. Count: 95, Neg. LLF: 128.14979175220745
Iteration: 11, Func. Count: 104, Neg. LLF: 128.1487361037196
Iteration: 12, Func. Count: 113, Neg. LLF: 128.14839236865225
Iteration: 13, Func. Count: 122, Neg. LLF: 128.1483067088241
Iteration: 14, Func. Count: 131, Neg. LLF: 128.14830448683477
Iteration: 15, Func. Count: 139, Neg. LLF: 128.14830454136006
Optimization terminated successfully (Exit mode 0)
Current function value: 128.14830448683477
Iterations: 15
Function evaluations: 139
Gradient evaluations: 15
Iteration: 1, Func. Count: 7, Neg. LLF: 132.1978632720751
Iteration: 2, Func. Count: 14, Neg. LLF: 128.64937839934572
Iteration: 3, Func. Count: 20, Neg. LLF: 128.61863497306447
Iteration: 4, Func. Count: 27, Neg. LLF: 128.49810150259844
Iteration: 5, Func. Count: 33, Neg. LLF: 128.51557070946583
Iteration: 6, Func. Count: 40, Neg. LLF: 128.56673844127707
Iteration: 7, Func. Count: 48, Neg. LLF: 128.89018749458393
Iteration: 8, Func. Count: 55, Neg. LLF: 128.47307351607782
Iteration: 9, Func. Count: 61, Neg. LLF: 128.47224059330944
Iteration: 10, Func. Count: 67, Neg. LLF: 128.47221459644032
Iteration: 11, Func. Count: 73, Neg. LLF: 128.47221301287357
Iteration: 12, Func. Count: 78, Neg. LLF: 128.47221301287098
Optimization terminated successfully (Exit mode 0)
Current function value: 128.47221301287357
Iterations: 12
Function evaluations: 78
Gradient evaluations: 12
Iteration: 1, Func. Count: 8, Neg. LLF: 133.22048257712325
Iteration: 2, Func. Count: 17, Neg. LLF: 133.25137953251118
Iteration: 3, Func. Count: 26, Neg. LLF: 128.37704872956817
Iteration: 4, Func. Count: 33, Neg. LLF: 128.44008551372485
Iteration: 5, Func. Count: 41, Neg. LLF: 128.3658941920218
Iteration: 6, Func. Count: 48, Neg. LLF: 128.36100851039612
Iteration: 7, Func. Count: 55, Neg. LLF: 128.33793930588186
Iteration: 8, Func. Count: 62, Neg. LLF: 128.33471669988432
Iteration: 9, Func. Count: 69, Neg. LLF: 128.33164709614826
Iteration: 10, Func. Count: 76, Neg. LLF: 128.33158866292558
Iteration: 11, Func. Count: 83, Neg. LLF: 128.33158693218343
Iteration: 12, Func. Count: 89, Neg. LLF: 128.3315869320346
Optimization terminated successfully (Exit mode 0)
Current function value: 128.33158693218343
Iterations: 12
Function evaluations: 89
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 133.2443178990404
Iteration: 2, Func. Count: 19, Neg. LLF: 132.88712139452272
Iteration: 3, Func. Count: 28, Neg. LLF: 128.3590594127761
Iteration: 4, Func. Count: 37, Neg. LLF: 128.1717097687466
Iteration: 5, Func. Count: 45, Neg. LLF: 129.48049293164885
Iteration: 6, Func. Count: 55, Neg. LLF: 128.12030172520096
Iteration: 7, Func. Count: 63, Neg. LLF: 128.11373276560582
Iteration: 8, Func. Count: 71, Neg. LLF: 128.11296669242782
Iteration: 9, Func. Count: 79, Neg. LLF: 128.1125375379149
Iteration: 10, Func. Count: 87, Neg. LLF: 128.11240017108287
Iteration: 11, Func. Count: 95, Neg. LLF: 128.11230980536038
Iteration: 12, Func. Count: 103, Neg. LLF: 128.11226274485983
Iteration: 13, Func. Count: 111, Neg. LLF: 128.11225560504894
Iteration: 14, Func. Count: 118, Neg. LLF: 128.11225560510124
Optimization terminated successfully (Exit mode 0)
Current function value: 128.11225560504894
Iterations: 14
Function evaluations: 118
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 133.12071010007924
Iteration: 2, Func. Count: 21, Neg. LLF: 134.0222670344449
Iteration: 3, Func. Count: 31, Neg. LLF: 128.70453855626548
Iteration: 4, Func. Count: 41, Neg. LLF: 128.23289743426278
Iteration: 5, Func. Count: 50, Neg. LLF: 127.35683068166749
Iteration: 6, Func. Count: 59, Neg. LLF: 127.06812664737647
Iteration: 7, Func. Count: 68, Neg. LLF: 126.28285562345678
Iteration: 8, Func. Count: 77, Neg. LLF: 126.47526023849396
Iteration: 9, Func. Count: 88, Neg. LLF: 128.76910290444906
Iteration: 10, Func. Count: 98, Neg. LLF: 126.12383299090003
Iteration: 11, Func. Count: 107, Neg. LLF: 126.08166031348892
Iteration: 12, Func. Count: 116, Neg. LLF: 126.07695129403982
Iteration: 13, Func. Count: 125, Neg. LLF: 126.07630646363708
Iteration: 14, Func. Count: 134, Neg. LLF: 126.07612707999552
Iteration: 15, Func. Count: 143, Neg. LLF: 126.07498944625202
Iteration: 16, Func. Count: 152, Neg. LLF: 126.07315383340499
Iteration: 17, Func. Count: 161, Neg. LLF: 126.07269739527025
Iteration: 18, Func. Count: 170, Neg. LLF: 126.0724836892863
Iteration: 19, Func. Count: 179, Neg. LLF: 126.07243805149558
Iteration: 20, Func. Count: 188, Neg. LLF: 126.07240682743806
Iteration: 21, Func. Count: 197, Neg. LLF: 126.07209427509464
Iteration: 22, Func. Count: 206, Neg. LLF: 126.04179191919579
Iteration: 23, Func. Count: 215, Neg. LLF: 224.81755754468335
Iteration: 24, Func. Count: 227, Neg. LLF: 208.63120493289972
Iteration: 25, Func. Count: 238, Neg. LLF: 131.31496190175503
Iteration: 26, Func. Count: 249, Neg. LLF: 126.04215796014215
Iteration: 27, Func. Count: 259, Neg. LLF: 126.03162488542603
Iteration: 28, Func. Count: 269, Neg. LLF: 126.0304270937546
Iteration: 29, Func. Count: 278, Neg. LLF: 126.03158852984384
Iteration: 30, Func. Count: 288, Neg. LLF: 126.03041601732602
Iteration: 31, Func. Count: 297, Neg. LLF: 126.03041245622155
Iteration: 32, Func. Count: 305, Neg. LLF: 126.03041243461604
Optimization terminated successfully (Exit mode 0)
Current function value: 126.03041245622155
Iterations: 33
Function evaluations: 305
Gradient evaluations: 32
Iteration: 1, Func. Count: 11, Neg. LLF: 135.1151876871818
Iteration: 2, Func. Count: 23, Neg. LLF: 128.50242605429614
Iteration: 3, Func. Count: 33, Neg. LLF: 128.41968470358105
Iteration: 4, Func. Count: 43, Neg. LLF: 128.33321700333232
Iteration: 5, Func. Count: 53, Neg. LLF: 128.1790861738898
Iteration: 6, Func. Count: 63, Neg. LLF: 129.92637748583516
Iteration: 7, Func. Count: 76, Neg. LLF: 128.15426628857196
Iteration: 8, Func. Count: 86, Neg. LLF: 128.13161338240369
Iteration: 9, Func. Count: 96, Neg. LLF: 128.12125454434408
Iteration: 10, Func. Count: 106, Neg. LLF: 128.11492017683275
Iteration: 11, Func. Count: 116, Neg. LLF: 128.11390103401814
Iteration: 12, Func. Count: 126, Neg. LLF: 128.11305669450184
Iteration: 13, Func. Count: 136, Neg. LLF: 128.1124796716215
Iteration: 14, Func. Count: 146, Neg. LLF: 128.11229119139222
Iteration: 15, Func. Count: 156, Neg. LLF: 128.11225873705413
Iteration: 16, Func. Count: 166, Neg. LLF: 128.11225557355252
Iteration: 17, Func. Count: 175, Neg. LLF: 128.1122556409105
Optimization terminated successfully (Exit mode 0)
Current function value: 128.11225557355252
Iterations: 17
Function evaluations: 175
Gradient evaluations: 17
Iteration: 1, Func. Count: 8, Neg. LLF: 131.18801121974693
Iteration: 2, Func. Count: 16, Neg. LLF: 136.51743015086925
Iteration: 3, Func. Count: 24, Neg. LLF: 129.33645113743643
Iteration: 4, Func. Count: 32, Neg. LLF: 128.83284311473335
Iteration: 5, Func. Count: 39, Neg. LLF: 128.9855599474701
Iteration: 6, Func. Count: 47, Neg. LLF: 128.5419982525567
Iteration: 7, Func. Count: 54, Neg. LLF: 142.75634212013227
Iteration: 8, Func. Count: 63, Neg. LLF: 128.49269981415918
Iteration: 9, Func. Count: 70, Neg. LLF: 128.45644834611804
Iteration: 10, Func. Count: 77, Neg. LLF: 128.44953913899434
Iteration: 11, Func. Count: 84, Neg. LLF: 128.448715452166
Iteration: 12, Func. Count: 91, Neg. LLF: 128.44861878662348
Iteration: 13, Func. Count: 98, Neg. LLF: 128.44860292507798
Iteration: 14, Func. Count: 105, Neg. LLF: 128.44859674263785
Iteration: 15, Func. Count: 111, Neg. LLF: 128.44859674269495
Optimization terminated successfully (Exit mode 0)
Current function value: 128.44859674263785
Iterations: 15
Function evaluations: 111
Gradient evaluations: 15
Iteration: 1, Func. Count: 9, Neg. LLF: 130.1876153641675
Iteration: 2, Func. Count: 19, Neg. LLF: 133.71052893331665
Iteration: 3, Func. Count: 28, Neg. LLF: 128.12587468860707
Iteration: 4, Func. Count: 36, Neg. LLF: 128.93984354524434
Iteration: 5, Func. Count: 45, Neg. LLF: 129.06848374775703
Iteration: 6, Func. Count: 54, Neg. LLF: 128.94321400847844
Iteration: 7, Func. Count: 63, Neg. LLF: 141.0465697102633
Iteration: 8, Func. Count: 72, Neg. LLF: 128.54576758026332
Iteration: 9, Func. Count: 81, Neg. LLF: 127.43075272366592
Iteration: 10, Func. Count: 90, Neg. LLF: 127.29498311293521
Iteration: 11, Func. Count: 98, Neg. LLF: 127.2707009518225
Iteration: 12, Func. Count: 106, Neg. LLF: 127.27044811788076
Iteration: 13, Func. Count: 114, Neg. LLF: 127.2704285297919
Iteration: 14, Func. Count: 121, Neg. LLF: 127.2704285296967
Optimization terminated successfully (Exit mode 0)
Current function value: 127.2704285297919
Iterations: 14
Function evaluations: 121
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 132.07736460694545
Iteration: 2, Func. Count: 20, Neg. LLF: 131.48669893258474
Iteration: 3, Func. Count: 30, Neg. LLF: 127.38681697483378
Iteration: 4, Func. Count: 39, Neg. LLF: 135.23892032761867
Iteration: 5, Func. Count: 50, Neg. LLF: 129.83174620699617
Iteration: 6, Func. Count: 60, Neg. LLF: 126.87086971166413
Iteration: 7, Func. Count: 69, Neg. LLF: 132.5061847944118
Iteration: 8, Func. Count: 80, Neg. LLF: 126.8962898216429
Iteration: 9, Func. Count: 90, Neg. LLF: 126.82369388244649
Iteration: 10, Func. Count: 99, Neg. LLF: 126.81649445140732
Iteration: 11, Func. Count: 108, Neg. LLF: 126.81440875277865
Iteration: 12, Func. Count: 117, Neg. LLF: 126.81373433902992
Iteration: 13, Func. Count: 126, Neg. LLF: 126.81360795904565
Iteration: 14, Func. Count: 135, Neg. LLF: 126.81359660296232
Iteration: 15, Func. Count: 144, Neg. LLF: 126.81358785945362
Iteration: 16, Func. Count: 152, Neg. LLF: 126.81358785946905
Optimization terminated successfully (Exit mode 0)
Current function value: 126.81358785945362
Iterations: 16
Function evaluations: 152
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 131.96203523093595
Iteration: 2, Func. Count: 22, Neg. LLF: 133.74407439075594
Iteration: 3, Func. Count: 33, Neg. LLF: 128.72580091170738
Iteration: 4, Func. Count: 44, Neg. LLF: 127.19763773362367
Iteration: 5, Func. Count: 54, Neg. LLF: 202.4908866475246
Iteration: 6, Func. Count: 65, Neg. LLF: 126.76747341775263
Iteration: 7, Func. Count: 75, Neg. LLF: 131.61457547990247
Iteration: 8, Func. Count: 87, Neg. LLF: 126.96437842281101
Iteration: 9, Func. Count: 98, Neg. LLF: 126.64887594752139
Iteration: 10, Func. Count: 108, Neg. LLF: 126.63593860054893
Iteration: 11, Func. Count: 118, Neg. LLF: 126.63166159878836
Iteration: 12, Func. Count: 128, Neg. LLF: 126.62989120446346
Iteration: 13, Func. Count: 138, Neg. LLF: 126.62954464128238
Iteration: 14, Func. Count: 148, Neg. LLF: 126.62948283769266
Iteration: 15, Func. Count: 158, Neg. LLF: 126.62948215152302
Optimization terminated successfully (Exit mode 0)
Current function value: 126.62948215152302
Iterations: 15
Function evaluations: 158
Gradient evaluations: 15
Iteration: 1, Func. Count: 12, Neg. LLF: 131.33393400514748
Iteration: 2, Func. Count: 24, Neg. LLF: 132.0143437006895
Iteration: 3, Func. Count: 36, Neg. LLF: 127.2337824644378
Iteration: 4, Func. Count: 47, Neg. LLF: 168.6368122616495
Iteration: 5, Func. Count: 60, Neg. LLF: 127.16315722127905
Iteration: 6, Func. Count: 72, Neg. LLF: 128.9559943454812
Iteration: 7, Func. Count: 84, Neg. LLF: 126.75493390312099
Iteration: 8, Func. Count: 95, Neg. LLF: 126.71257543976661
Iteration: 9, Func. Count: 106, Neg. LLF: 126.66373932651106
Iteration: 10, Func. Count: 117, Neg. LLF: 126.64588614269782
Iteration: 11, Func. Count: 128, Neg. LLF: 126.63252723634764
Iteration: 12, Func. Count: 139, Neg. LLF: 126.63032738802066
Iteration: 13, Func. Count: 150, Neg. LLF: 126.62955780211853
Iteration: 14, Func. Count: 161, Neg. LLF: 126.62950646024979
Iteration: 15, Func. Count: 172, Neg. LLF: 126.62948234802379
Iteration: 16, Func. Count: 182, Neg. LLF: 126.62948242779648
Optimization terminated successfully (Exit mode 0)
Current function value: 126.62948234802379
Iterations: 16
Function evaluations: 182
Gradient evaluations: 16
Iteration: 1, Func. Count: 9, Neg. LLF: 131.26846344695093
Iteration: 2, Func. Count: 18, Neg. LLF: 133.36157068211466
Iteration: 3, Func. Count: 27, Neg. LLF: 127.64883751905087
Iteration: 4, Func. Count: 35, Neg. LLF: 127.70832386998427
Iteration: 5, Func. Count: 44, Neg. LLF: 132.24608884907124
Iteration: 6, Func. Count: 56, Neg. LLF: 127.47169677997724
Iteration: 7, Func. Count: 64, Neg. LLF: 127.45749793683723
Iteration: 8, Func. Count: 72, Neg. LLF: 127.4516549938833
Iteration: 9, Func. Count: 80, Neg. LLF: 127.45088844217715
Iteration: 10, Func. Count: 88, Neg. LLF: 127.45053720582598
Iteration: 11, Func. Count: 96, Neg. LLF: 127.450457132766
Iteration: 12, Func. Count: 104, Neg. LLF: 127.45044138501362
Iteration: 13, Func. Count: 111, Neg. LLF: 127.45044138501031
Optimization terminated successfully (Exit mode 0)
Current function value: 127.45044138501362
Iterations: 13
Function evaluations: 111
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 130.57465197643043
Iteration: 2, Func. Count: 21, Neg. LLF: 133.6039351261597
Iteration: 3, Func. Count: 31, Neg. LLF: 128.578894166
Iteration: 4, Func. Count: 42, Neg. LLF: 128.05137465193062
Iteration: 5, Func. Count: 51, Neg. LLF: 128.78830970204876
Iteration: 6, Func. Count: 61, Neg. LLF: 128.75801136084095
Iteration: 7, Func. Count: 71, Neg. LLF: 129.1109442759331
Iteration: 8, Func. Count: 81, Neg. LLF: 140.40892818398345
Iteration: 9, Func. Count: 91, Neg. LLF: 130.87813566665065
Iteration: 10, Func. Count: 101, Neg. LLF: 127.71581732391732
Iteration: 11, Func. Count: 111, Neg. LLF: 127.31640103170513
Iteration: 12, Func. Count: 120, Neg. LLF: 127.28656295041428
Iteration: 13, Func. Count: 129, Neg. LLF: 127.28145509587578
Iteration: 14, Func. Count: 138, Neg. LLF: 127.27056697333789
Iteration: 15, Func. Count: 147, Neg. LLF: 127.27043984742954
Iteration: 16, Func. Count: 156, Neg. LLF: 127.27042861973545
Iteration: 17, Func. Count: 164, Neg. LLF: 127.27042861973965
Optimization terminated successfully (Exit mode 0)
Current function value: 127.27042861973545
Iterations: 17
Function evaluations: 164
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 132.09435239241841
Iteration: 2, Func. Count: 22, Neg. LLF: 130.15164998924942
Iteration: 3, Func. Count: 35, Neg. LLF: 135.0845806144492
Iteration: 4, Func. Count: 46, Neg. LLF: 127.15742865954591
Iteration: 5, Func. Count: 56, Neg. LLF: 128.3357154981409
Iteration: 6, Func. Count: 68, Neg. LLF: 145.2144317999512
Iteration: 7, Func. Count: 79, Neg. LLF: 127.06666209666474
Iteration: 8, Func. Count: 90, Neg. LLF: 126.94163657989371
Iteration: 9, Func. Count: 100, Neg. LLF: 126.88146574840171
Iteration: 10, Func. Count: 110, Neg. LLF: 126.92544187124915
Iteration: 11, Func. Count: 121, Neg. LLF: 127.34594071733132
Iteration: 12, Func. Count: 132, Neg. LLF: 126.83655537851195
Iteration: 13, Func. Count: 142, Neg. LLF: 126.82295949158834
Iteration: 14, Func. Count: 152, Neg. LLF: 126.81470411342846
Iteration: 15, Func. Count: 162, Neg. LLF: 126.81374378231529
Iteration: 16, Func. Count: 172, Neg. LLF: 126.81361471543916
Iteration: 17, Func. Count: 182, Neg. LLF: 126.81359068053763
Iteration: 18, Func. Count: 192, Neg. LLF: 126.81358785574284
Iteration: 19, Func. Count: 201, Neg. LLF: 126.813587855738
Optimization terminated successfully (Exit mode 0)
Current function value: 126.81358785574284
Iterations: 19
Function evaluations: 201
Gradient evaluations: 19
Iteration: 1, Func. Count: 12, Neg. LLF: 131.96675663046562
Iteration: 2, Func. Count: 24, Neg. LLF: 130.15793456296834
Iteration: 3, Func. Count: 38, Neg. LLF: 131.2762141537836
Iteration: 4, Func. Count: 50, Neg. LLF: 127.79575074469696
Iteration: 5, Func. Count: 61, Neg. LLF: 127.60586862000368
Iteration: 6, Func. Count: 73, Neg. LLF: 168.5002978383541
Iteration: 7, Func. Count: 85, Neg. LLF: 129.12000795527464
Iteration: 8, Func. Count: 98, Neg. LLF: 126.94937388093686
Iteration: 9, Func. Count: 109, Neg. LLF: 126.7138798831517
Iteration: 10, Func. Count: 120, Neg. LLF: 126.68890942062976
Iteration: 11, Func. Count: 131, Neg. LLF: 126.64757928807472
Iteration: 12, Func. Count: 142, Neg. LLF: 126.63423619662629
Iteration: 13, Func. Count: 153, Neg. LLF: 126.63125193191487
Iteration: 14, Func. Count: 164, Neg. LLF: 126.62959355267452
Iteration: 15, Func. Count: 175, Neg. LLF: 126.62948913303407
Iteration: 16, Func. Count: 186, Neg. LLF: 126.62948241141737
Iteration: 17, Func. Count: 196, Neg. LLF: 126.62948241143347
Optimization terminated successfully (Exit mode 0)
Current function value: 126.62948241141737
Iterations: 17
Function evaluations: 196
Gradient evaluations: 17
Iteration: 1, Func. Count: 13, Neg. LLF: 132.03239374047232
Iteration: 2, Func. Count: 26, Neg. LLF: 128.9625953211475
Iteration: 3, Func. Count: 40, Neg. LLF: 127.64783140416128
Iteration: 4, Func. Count: 52, Neg. LLF: 129.29925941453234
Iteration: 5, Func. Count: 65, Neg. LLF: 133.87306859829886
Iteration: 6, Func. Count: 78, Neg. LLF: 129.87133172037053
Iteration: 7, Func. Count: 91, Neg. LLF: 129.37037659222094
Iteration: 8, Func. Count: 104, Neg. LLF: 126.88656799597572
Iteration: 9, Func. Count: 116, Neg. LLF: 126.77356123941459
Iteration: 10, Func. Count: 128, Neg. LLF: 126.8986845030575
Iteration: 11, Func. Count: 141, Neg. LLF: 126.66812901035271
Iteration: 12, Func. Count: 153, Neg. LLF: 126.6420475322384
Iteration: 13, Func. Count: 165, Neg. LLF: 126.63082398730711
Iteration: 14, Func. Count: 177, Neg. LLF: 126.62956594200723
Iteration: 15, Func. Count: 189, Neg. LLF: 126.62968225610696
Iteration: 16, Func. Count: 202, Neg. LLF: 126.62948268553937
Iteration: 17, Func. Count: 213, Neg. LLF: 126.62948276528978
Optimization terminated successfully (Exit mode 0)
Current function value: 126.62948268553937
Iterations: 17
Function evaluations: 213
Gradient evaluations: 17
Iteration: 1, Func. Count: 10, Neg. LLF: 129.57154913161796
Iteration: 2, Func. Count: 20, Neg. LLF: 128.85401055258447
Iteration: 3, Func. Count: 30, Neg. LLF: 127.65548349358517
Iteration: 4, Func. Count: 39, Neg. LLF: 127.81194838301124
Iteration: 5, Func. Count: 49, Neg. LLF: 144.90034819336194
Iteration: 6, Func. Count: 62, Neg. LLF: 127.5268303518073
Iteration: 7, Func. Count: 72, Neg. LLF: 127.45913230453675
Iteration: 8, Func. Count: 81, Neg. LLF: 127.45194816076614
Iteration: 9, Func. Count: 90, Neg. LLF: 127.45122188415014
Iteration: 10, Func. Count: 99, Neg. LLF: 127.45045047622814
Iteration: 11, Func. Count: 108, Neg. LLF: 127.45044319086868
Iteration: 12, Func. Count: 117, Neg. LLF: 127.45044105122835
Iteration: 13, Func. Count: 125, Neg. LLF: 127.45044108015244
Optimization terminated successfully (Exit mode 0)
Current function value: 127.45044105122835
Iterations: 13
Function evaluations: 125
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 131.12862076706838
Iteration: 2, Func. Count: 23, Neg. LLF: 133.33533302816673
Iteration: 3, Func. Count: 34, Neg. LLF: 128.18367169753026
Iteration: 4, Func. Count: 44, Neg. LLF: 129.25399729195746
Iteration: 5, Func. Count: 55, Neg. LLF: 128.36801513720786
Iteration: 6, Func. Count: 66, Neg. LLF: 128.1452922811999
Iteration: 7, Func. Count: 77, Neg. LLF: 139.5588197799513
Iteration: 8, Func. Count: 88, Neg. LLF: 130.056503875039
Iteration: 9, Func. Count: 99, Neg. LLF: 127.64067387022493
Iteration: 10, Func. Count: 110, Neg. LLF: 127.30811020381833
Iteration: 11, Func. Count: 120, Neg. LLF: 127.31118762507316
Iteration: 12, Func. Count: 131, Neg. LLF: 127.27394375301469
Iteration: 13, Func. Count: 141, Neg. LLF: 127.27057445308256
Iteration: 14, Func. Count: 151, Neg. LLF: 127.27043049490982
Iteration: 15, Func. Count: 161, Neg. LLF: 127.27042833877616
Iteration: 16, Func. Count: 170, Neg. LLF: 127.27042833874933
Optimization terminated successfully (Exit mode 0)
Current function value: 127.27042833877616
Iterations: 16
Function evaluations: 170
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 132.08801321728527
Iteration: 2, Func. Count: 24, Neg. LLF: 130.17258018972416
Iteration: 3, Func. Count: 38, Neg. LLF: 135.14880135217035
Iteration: 4, Func. Count: 50, Neg. LLF: 127.18565687497053
Iteration: 5, Func. Count: 61, Neg. LLF: 128.57719952754292
Iteration: 6, Func. Count: 74, Neg. LLF: 142.10440987986948
Iteration: 7, Func. Count: 86, Neg. LLF: 127.5965757910743
Iteration: 8, Func. Count: 99, Neg. LLF: 127.16086305299456
Iteration: 9, Func. Count: 111, Neg. LLF: 126.88405148226032
Iteration: 10, Func. Count: 122, Neg. LLF: 126.86079661513489
Iteration: 11, Func. Count: 133, Neg. LLF: 127.32517436466462
Iteration: 12, Func. Count: 146, Neg. LLF: 126.83625809503542
Iteration: 13, Func. Count: 157, Neg. LLF: 126.81986968209561
Iteration: 14, Func. Count: 168, Neg. LLF: 126.81498035179914
Iteration: 15, Func. Count: 179, Neg. LLF: 126.81378888859123
Iteration: 16, Func. Count: 190, Neg. LLF: 126.81364080324175
Iteration: 17, Func. Count: 201, Neg. LLF: 126.81359328039123
Iteration: 18, Func. Count: 212, Neg. LLF: 126.8135880719062
Iteration: 19, Func. Count: 222, Neg. LLF: 126.81358807190456
Optimization terminated successfully (Exit mode 0)
Current function value: 126.8135880719062
Iterations: 19
Function evaluations: 222
Gradient evaluations: 19
Iteration: 1, Func. Count: 13, Neg. LLF: 131.99201187431532
Iteration: 2, Func. Count: 26, Neg. LLF: 130.1470795810731
Iteration: 3, Func. Count: 41, Neg. LLF: 131.1507373310909
Iteration: 4, Func. Count: 54, Neg. LLF: 127.98914445417034
Iteration: 5, Func. Count: 67, Neg. LLF: 127.09992281613509
Iteration: 6, Func. Count: 79, Neg. LLF: 152.93821077138213
Iteration: 7, Func. Count: 92, Neg. LLF: 127.61358544796644
Iteration: 8, Func. Count: 105, Neg. LLF: 126.92748115837875
Iteration: 9, Func. Count: 118, Neg. LLF: 126.74759463467835
Iteration: 10, Func. Count: 130, Neg. LLF: 126.69587365408191
Iteration: 11, Func. Count: 142, Neg. LLF: 126.66066239768381
Iteration: 12, Func. Count: 154, Neg. LLF: 126.65886296887913
Iteration: 13, Func. Count: 167, Neg. LLF: 126.63275951301465
Iteration: 14, Func. Count: 179, Neg. LLF: 126.62966119637775
Iteration: 15, Func. Count: 191, Neg. LLF: 126.62948841987516
Iteration: 16, Func. Count: 203, Neg. LLF: 126.62948278662915
Iteration: 17, Func. Count: 215, Neg. LLF: 126.62948212920585
Optimization terminated successfully (Exit mode 0)
Current function value: 126.62948212920585
Iterations: 17
Function evaluations: 215
Gradient evaluations: 17
Iteration: 1, Func. Count: 14, Neg. LLF: 132.02855410482846
Iteration: 2, Func. Count: 28, Neg. LLF: 128.93588566436034
Iteration: 3, Func. Count: 43, Neg. LLF: 127.76083049210814
Iteration: 4, Func. Count: 56, Neg. LLF: 129.82095167630064
Iteration: 5, Func. Count: 70, Neg. LLF: 134.33073006940919
Iteration: 6, Func. Count: 84, Neg. LLF: 128.9830075954033
Iteration: 7, Func. Count: 98, Neg. LLF: 129.11344405495285
Iteration: 8, Func. Count: 112, Neg. LLF: 127.00266473627757
Iteration: 9, Func. Count: 126, Neg. LLF: 126.85000165490662
Iteration: 10, Func. Count: 140, Neg. LLF: 126.69772737566637
Iteration: 11, Func. Count: 153, Neg. LLF: 126.72353488369379
Iteration: 12, Func. Count: 167, Neg. LLF: 126.63460132207504
Iteration: 13, Func. Count: 180, Neg. LLF: 126.63011248892781
Iteration: 14, Func. Count: 193, Neg. LLF: 126.62953083043787
Iteration: 15, Func. Count: 206, Neg. LLF: 126.62949905423002
Iteration: 16, Func. Count: 219, Neg. LLF: 126.62948233734728
Iteration: 17, Func. Count: 231, Neg. LLF: 126.62948241704721
Optimization terminated successfully (Exit mode 0)
Current function value: 126.62948233734728
Iterations: 17
Function evaluations: 231
Gradient evaluations: 17
Iteration: 1, Func. Count: 7, Neg. LLF: 133.16591283132718
Iteration: 2, Func. Count: 14, Neg. LLF: 137.6662701027992
Iteration: 3, Func. Count: 21, Neg. LLF: 128.50194806249232
Iteration: 4, Func. Count: 27, Neg. LLF: 128.82126476976438
Iteration: 5, Func. Count: 35, Neg. LLF: 129.50754559804852
Iteration: 6, Func. Count: 43, Neg. LLF: 128.4717690234915
Iteration: 7, Func. Count: 49, Neg. LLF: 128.47106925740798
Iteration: 8, Func. Count: 55, Neg. LLF: 128.47105123267505
Iteration: 9, Func. Count: 61, Neg. LLF: 128.47104565650915
Iteration: 10, Func. Count: 67, Neg. LLF: 128.47104496314643
Optimization terminated successfully (Exit mode 0)
Current function value: 128.47104496314643
Iterations: 10
Function evaluations: 67
Gradient evaluations: 10
Iteration: 1, Func. Count: 8, Neg. LLF: 133.13700941438321
Iteration: 2, Func. Count: 16, Neg. LLF: 136.67404180139948
Iteration: 3, Func. Count: 24, Neg. LLF: 126.49662038637867
Iteration: 4, Func. Count: 31, Neg. LLF: 126.48495618849796
Iteration: 5, Func. Count: 39, Neg. LLF: 127.06293582014831
Iteration: 6, Func. Count: 47, Neg. LLF: 126.44602549588024
Iteration: 7, Func. Count: 55, Neg. LLF: 126.4300179814167
Iteration: 8, Func. Count: 62, Neg. LLF: 126.42908192518101
Iteration: 9, Func. Count: 69, Neg. LLF: 126.42906691457357
Iteration: 10, Func. Count: 76, Neg. LLF: 126.42906542002171
Iteration: 11, Func. Count: 82, Neg. LLF: 126.42906538178907
Optimization terminated successfully (Exit mode 0)
Current function value: 126.42906542002171
Iterations: 11
Function evaluations: 82
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 133.25306449723567
Iteration: 2, Func. Count: 19, Neg. LLF: 132.71504780433014
Iteration: 3, Func. Count: 28, Neg. LLF: 128.21316720945555
Iteration: 4, Func. Count: 36, Neg. LLF: 128.16734108661208
Iteration: 5, Func. Count: 44, Neg. LLF: 128.1495660127944
Iteration: 6, Func. Count: 52, Neg. LLF: 128.1490368243186
Iteration: 7, Func. Count: 60, Neg. LLF: 128.24225190053986
Iteration: 8, Func. Count: 70, Neg. LLF: 128.14869360410893
Iteration: 9, Func. Count: 78, Neg. LLF: 128.14841278384432
Iteration: 10, Func. Count: 86, Neg. LLF: 128.1482724275144
Iteration: 11, Func. Count: 94, Neg. LLF: 128.1482499769237
Iteration: 12, Func. Count: 102, Neg. LLF: 128.14824870236538
Iteration: 13, Func. Count: 109, Neg. LLF: 128.14824870236671
Optimization terminated successfully (Exit mode 0)
Current function value: 128.14824870236538
Iterations: 13
Function evaluations: 109
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 133.27653105043515
Iteration: 2, Func. Count: 22, Neg. LLF: 132.96144664972232
Iteration: 3, Func. Count: 33, Neg. LLF: 128.2828327575654
Iteration: 4, Func. Count: 42, Neg. LLF: 128.17574573471236
Iteration: 5, Func. Count: 51, Neg. LLF: 128.16203299615756
Iteration: 6, Func. Count: 60, Neg. LLF: 128.18821432402183
Iteration: 7, Func. Count: 70, Neg. LLF: 128.14948436082298
Iteration: 8, Func. Count: 79, Neg. LLF: 128.1521686356995
Iteration: 9, Func. Count: 89, Neg. LLF: 128.14893863659034
Iteration: 10, Func. Count: 98, Neg. LLF: 128.14856489325223
Iteration: 11, Func. Count: 107, Neg. LLF: 128.1482564733706
Iteration: 12, Func. Count: 116, Neg. LLF: 128.14824902740608
Iteration: 13, Func. Count: 124, Neg. LLF: 128.14824904816518
Optimization terminated successfully (Exit mode 0)
Current function value: 128.14824902740608
Iterations: 13
Function evaluations: 124
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 136.37019758000997
Iteration: 2, Func. Count: 23, Neg. LLF: 128.48862440725037
Iteration: 3, Func. Count: 33, Neg. LLF: 128.443804713378
Iteration: 4, Func. Count: 43, Neg. LLF: 128.45088306371687
Iteration: 5, Func. Count: 54, Neg. LLF: 128.332034096886
Iteration: 6, Func. Count: 64, Neg. LLF: 128.1283353772352
Iteration: 7, Func. Count: 74, Neg. LLF: 128.06484788500865
Iteration: 8, Func. Count: 84, Neg. LLF: 127.84047664293871
Iteration: 9, Func. Count: 94, Neg. LLF: 127.60181638174025
Iteration: 10, Func. Count: 104, Neg. LLF: 127.3198203444758
Iteration: 11, Func. Count: 114, Neg. LLF: 127.04441330922788
Iteration: 12, Func. Count: 124, Neg. LLF: 126.61704945712157
Iteration: 13, Func. Count: 134, Neg. LLF: 126.64941768715391
Iteration: 14, Func. Count: 146, Neg. LLF: 301.1554822065049
Iteration: 15, Func. Count: 157, Neg. LLF: 126.78684127793844
Iteration: 16, Func. Count: 168, Neg. LLF: 131.16912791289897
Iteration: 17, Func. Count: 180, Neg. LLF: 126.61514331014489
Iteration: 18, Func. Count: 191, Neg. LLF: 126.43837940221074
Iteration: 19, Func. Count: 201, Neg. LLF: 126.42990823317795
Iteration: 20, Func. Count: 211, Neg. LLF: 126.42909802835983
Iteration: 21, Func. Count: 221, Neg. LLF: 126.4290654887137
Iteration: 22, Func. Count: 230, Neg. LLF: 126.42906571080758
Optimization terminated successfully (Exit mode 0)
Current function value: 126.4290654887137
Iterations: 23
Function evaluations: 230
Gradient evaluations: 22
Iteration: 1, Func. Count: 8, Neg. LLF: 133.06062702870148
Iteration: 2, Func. Count: 16, Neg. LLF: 131.86216342008467
Iteration: 3, Func. Count: 24, Neg. LLF: 128.49870828659462
Iteration: 4, Func. Count: 31, Neg. LLF: 128.85260720165942
Iteration: 5, Func. Count: 40, Neg. LLF: 128.65844589982282
Iteration: 6, Func. Count: 49, Neg. LLF: 128.48431173047769
Iteration: 7, Func. Count: 57, Neg. LLF: 128.4790868700096
Iteration: 8, Func. Count: 65, Neg. LLF: 128.4728298592482
Iteration: 9, Func. Count: 72, Neg. LLF: 128.47056637746698
Iteration: 10, Func. Count: 79, Neg. LLF: 128.4705401253297
Iteration: 11, Func. Count: 85, Neg. LLF: 128.47054012536816
Optimization terminated successfully (Exit mode 0)
Current function value: 128.4705401253297
Iterations: 11
Function evaluations: 85
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 133.0493055159578
Iteration: 2, Func. Count: 18, Neg. LLF: 136.6102023918165
Iteration: 3, Func. Count: 27, Neg. LLF: 126.54826047842333
Iteration: 4, Func. Count: 35, Neg. LLF: 127.29166549927112
Iteration: 5, Func. Count: 44, Neg. LLF: 126.66083532112394
Iteration: 6, Func. Count: 53, Neg. LLF: 126.53666406628642
Iteration: 7, Func. Count: 62, Neg. LLF: 126.42924472823876
Iteration: 8, Func. Count: 70, Neg. LLF: 126.42908537951347
Iteration: 9, Func. Count: 78, Neg. LLF: 126.42906608519876
Iteration: 10, Func. Count: 86, Neg. LLF: 126.42906539416589
Optimization terminated successfully (Exit mode 0)
Current function value: 126.42906539416589
Iterations: 10
Function evaluations: 86
Gradient evaluations: 10
Iteration: 1, Func. Count: 10, Neg. LLF: 133.2261301433942
Iteration: 2, Func. Count: 21, Neg. LLF: 132.66215005372504
Iteration: 3, Func. Count: 31, Neg. LLF: 128.2075184366356
Iteration: 4, Func. Count: 40, Neg. LLF: 128.17876299915733
Iteration: 5, Func. Count: 49, Neg. LLF: 129.21752292422744
Iteration: 6, Func. Count: 60, Neg. LLF: 128.11665482845166
Iteration: 7, Func. Count: 69, Neg. LLF: 128.1147142816759
Iteration: 8, Func. Count: 78, Neg. LLF: 128.11343312503473
Iteration: 9, Func. Count: 87, Neg. LLF: 128.11282631994342
Iteration: 10, Func. Count: 96, Neg. LLF: 128.11241299515584
Iteration: 11, Func. Count: 105, Neg. LLF: 128.11229145465867
Iteration: 12, Func. Count: 114, Neg. LLF: 128.11225765499435
Iteration: 13, Func. Count: 123, Neg. LLF: 128.11225542781017
Iteration: 14, Func. Count: 131, Neg. LLF: 128.11225542782847
Optimization terminated successfully (Exit mode 0)
Current function value: 128.11225542781017
Iterations: 14
Function evaluations: 131
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 133.10984965781
Iteration: 2, Func. Count: 23, Neg. LLF: 133.9064816297688
Iteration: 3, Func. Count: 34, Neg. LLF: 128.836222430933
Iteration: 4, Func. Count: 45, Neg. LLF: 128.26393903301044
Iteration: 5, Func. Count: 55, Neg. LLF: 127.41640865441295
Iteration: 6, Func. Count: 65, Neg. LLF: 127.09798032792982
Iteration: 7, Func. Count: 75, Neg. LLF: 126.29516471393706
Iteration: 8, Func. Count: 85, Neg. LLF: 126.80592706973643
Iteration: 9, Func. Count: 97, Neg. LLF: 128.87648810964103
Iteration: 10, Func. Count: 108, Neg. LLF: 126.09947315441879
Iteration: 11, Func. Count: 118, Neg. LLF: 126.08925567705958
Iteration: 12, Func. Count: 128, Neg. LLF: 126.08024014217246
Iteration: 13, Func. Count: 138, Neg. LLF: 126.07983533769266
Iteration: 14, Func. Count: 148, Neg. LLF: 126.07804683006158
Iteration: 15, Func. Count: 158, Neg. LLF: 126.07540269921725
Iteration: 16, Func. Count: 168, Neg. LLF: 126.0732803164776
Iteration: 17, Func. Count: 178, Neg. LLF: 126.07258413076632
Iteration: 18, Func. Count: 188, Neg. LLF: 126.0724835099328
Iteration: 19, Func. Count: 198, Neg. LLF: 126.07243902455426
Iteration: 20, Func. Count: 208, Neg. LLF: 126.07240531707203
Iteration: 21, Func. Count: 218, Neg. LLF: 126.07200997549933
Iteration: 22, Func. Count: 228, Neg. LLF: 126.0439774942147
Iteration: 23, Func. Count: 238, Neg. LLF: 165.7714027519154
Iteration: 24, Func. Count: 252, Neg. LLF: 245.36926900960478
Iteration: 25, Func. Count: 265, Neg. LLF: 126.1517597695186
Iteration: 26, Func. Count: 277, Neg. LLF: 126.03255766248347
Iteration: 27, Func. Count: 288, Neg. LLF: 126.03046152741994
Iteration: 28, Func. Count: 298, Neg. LLF: 126.03041218090883
Iteration: 29, Func. Count: 307, Neg. LLF: 126.03041215948542
Optimization terminated successfully (Exit mode 0)
Current function value: 126.03041218090883
Iterations: 30
Function evaluations: 307
Gradient evaluations: 29
Iteration: 1, Func. Count: 12, Neg. LLF: 136.2804780037453
Iteration: 2, Func. Count: 25, Neg. LLF: 128.51656216816562
Iteration: 3, Func. Count: 36, Neg. LLF: 128.38444171774572
Iteration: 4, Func. Count: 47, Neg. LLF: 129.03655699022656
Iteration: 5, Func. Count: 59, Neg. LLF: 128.55408158009308
Iteration: 6, Func. Count: 71, Neg. LLF: 128.30558170140696
Iteration: 7, Func. Count: 82, Neg. LLF: 128.1834683556219
Iteration: 8, Func. Count: 93, Neg. LLF: 128.1610918670208
Iteration: 9, Func. Count: 104, Neg. LLF: 128.15062046314776
Iteration: 10, Func. Count: 115, Neg. LLF: 128.13763581799498
Iteration: 11, Func. Count: 126, Neg. LLF: 128.12973858170668
Iteration: 12, Func. Count: 137, Neg. LLF: 128.1228076040854
Iteration: 13, Func. Count: 148, Neg. LLF: 128.1177593371028
Iteration: 14, Func. Count: 159, Neg. LLF: 128.11347295006806
Iteration: 15, Func. Count: 170, Neg. LLF: 128.11232938543336
Iteration: 16, Func. Count: 181, Neg. LLF: 128.11226438991392
Iteration: 17, Func. Count: 192, Neg. LLF: 128.1122586661914
Iteration: 18, Func. Count: 203, Neg. LLF: 128.11225772624314
Optimization terminated successfully (Exit mode 0)
Current function value: 128.11225772624314
Iterations: 18
Function evaluations: 203
Gradient evaluations: 18
Iteration: 1, Func. Count: 9, Neg. LLF: 132.01298326175552
Iteration: 2, Func. Count: 18, Neg. LLF: 131.61770366463
Iteration: 3, Func. Count: 27, Neg. LLF: 129.18351547525108
Iteration: 4, Func. Count: 35, Neg. LLF: 128.88193773303627
Iteration: 5, Func. Count: 44, Neg. LLF: 128.78973801187067
Iteration: 6, Func. Count: 53, Neg. LLF: 131.61478340208714
Iteration: 7, Func. Count: 62, Neg. LLF: 128.53676354835082
Iteration: 8, Func. Count: 71, Neg. LLF: 128.48690120545606
Iteration: 9, Func. Count: 79, Neg. LLF: 128.48121733155406
Iteration: 10, Func. Count: 88, Neg. LLF: 128.55332944553788
Iteration: 11, Func. Count: 97, Neg. LLF: 128.44570241760604
Iteration: 12, Func. Count: 105, Neg. LLF: 128.4454093253824
Iteration: 13, Func. Count: 113, Neg. LLF: 128.44519571354138
Iteration: 14, Func. Count: 121, Neg. LLF: 128.4451949509477
Optimization terminated successfully (Exit mode 0)
Current function value: 128.4451949509477
Iterations: 14
Function evaluations: 121
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 133.54466606454005
Iteration: 2, Func. Count: 20, Neg. LLF: 128.1509028921298
Iteration: 3, Func. Count: 30, Neg. LLF: 143.93028972966928
Iteration: 4, Func. Count: 41, Neg. LLF: 126.95474442568914
Iteration: 5, Func. Count: 50, Neg. LLF: 3450.963061430962
Iteration: 6, Func. Count: 60, Neg. LLF: 126.58069561864936
Iteration: 7, Func. Count: 69, Neg. LLF: 126.41658020022089
Iteration: 8, Func. Count: 78, Neg. LLF: 126.40606802419813
Iteration: 9, Func. Count: 87, Neg. LLF: 126.4039465865037
Iteration: 10, Func. Count: 96, Neg. LLF: 126.40377116138104
Iteration: 11, Func. Count: 105, Neg. LLF: 126.40373824565594
Iteration: 12, Func. Count: 114, Neg. LLF: 126.40373757305233
Optimization terminated successfully (Exit mode 0)
Current function value: 126.40373757305233
Iterations: 12
Function evaluations: 114
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 130.2219023619484
Iteration: 2, Func. Count: 23, Neg. LLF: 134.32285478997392
Iteration: 3, Func. Count: 34, Neg. LLF: 127.80955892847578
Iteration: 4, Func. Count: 45, Neg. LLF: 131.58146110289897
Iteration: 5, Func. Count: 56, Neg. LLF: 133.31594621274272
Iteration: 6, Func. Count: 67, Neg. LLF: 126.92950558925838
Iteration: 7, Func. Count: 78, Neg. LLF: 132.71918853981458
Iteration: 8, Func. Count: 89, Neg. LLF: 126.81410733802711
Iteration: 9, Func. Count: 99, Neg. LLF: 126.81372782633868
Iteration: 10, Func. Count: 109, Neg. LLF: 126.81363355143283
Iteration: 11, Func. Count: 119, Neg. LLF: 126.81359217251264
Iteration: 12, Func. Count: 129, Neg. LLF: 126.81358772383425
Iteration: 13, Func. Count: 138, Neg. LLF: 126.81358772388378
Optimization terminated successfully (Exit mode 0)
Current function value: 126.81358772383425
Iterations: 13
Function evaluations: 138
Gradient evaluations: 13
Iteration: 1, Func. Count: 12, Neg. LLF: 131.99442401539432
Iteration: 2, Func. Count: 24, Neg. LLF: 133.7423128008354
Iteration: 3, Func. Count: 36, Neg. LLF: 128.87842717722754
Iteration: 4, Func. Count: 48, Neg. LLF: 127.08190148007623
Iteration: 5, Func. Count: 59, Neg. LLF: 252.41619982171642
Iteration: 6, Func. Count: 71, Neg. LLF: 126.77916278475197
Iteration: 7, Func. Count: 82, Neg. LLF: 139.85004343644988
Iteration: 8, Func. Count: 94, Neg. LLF: 126.69359735665859
Iteration: 9, Func. Count: 105, Neg. LLF: 126.64039838088162
Iteration: 10, Func. Count: 116, Neg. LLF: 126.63358110478617
Iteration: 11, Func. Count: 127, Neg. LLF: 126.63121063633012
Iteration: 12, Func. Count: 138, Neg. LLF: 126.62992381560893
Iteration: 13, Func. Count: 149, Neg. LLF: 126.62953179863273
Iteration: 14, Func. Count: 160, Neg. LLF: 126.62948783942498
Iteration: 15, Func. Count: 171, Neg. LLF: 126.62948222225657
Iteration: 16, Func. Count: 181, Neg. LLF: 126.62948222219775
Optimization terminated successfully (Exit mode 0)
Current function value: 126.62948222225657
Iterations: 16
Function evaluations: 181
Gradient evaluations: 16
Iteration: 1, Func. Count: 13, Neg. LLF: 131.87277788442302
Iteration: 2, Func. Count: 26, Neg. LLF: 132.2482827487902
Iteration: 3, Func. Count: 39, Neg. LLF: 127.18749709673358
Iteration: 4, Func. Count: 51, Neg. LLF: 167.21736647334137
Iteration: 5, Func. Count: 65, Neg. LLF: 127.11807058706891
Iteration: 6, Func. Count: 78, Neg. LLF: 131.6719163015927
Iteration: 7, Func. Count: 91, Neg. LLF: 126.76357797977323
Iteration: 8, Func. Count: 103, Neg. LLF: 126.71732832297572
Iteration: 9, Func. Count: 115, Neg. LLF: 126.66905590482695
Iteration: 10, Func. Count: 127, Neg. LLF: 126.64675997050702
Iteration: 11, Func. Count: 139, Neg. LLF: 126.63477340157907
Iteration: 12, Func. Count: 151, Neg. LLF: 126.63129748367098
Iteration: 13, Func. Count: 163, Neg. LLF: 126.62958223251128
Iteration: 14, Func. Count: 175, Neg. LLF: 126.62948617913803
Iteration: 15, Func. Count: 187, Neg. LLF: 126.62948229738595
Iteration: 16, Func. Count: 198, Neg. LLF: 126.62948237715104
Optimization terminated successfully (Exit mode 0)
Current function value: 126.62948229738595
Iterations: 16
Function evaluations: 198
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 133.69948173520808
Iteration: 2, Func. Count: 20, Neg. LLF: 137.8487399593911
Iteration: 3, Func. Count: 30, Neg. LLF: 127.6732737683422
Iteration: 4, Func. Count: 39, Neg. LLF: 127.76232596476459
Iteration: 5, Func. Count: 49, Neg. LLF: 132.68698470628615
Iteration: 6, Func. Count: 62, Neg. LLF: 127.4752698267288
Iteration: 7, Func. Count: 71, Neg. LLF: 127.4623461712812
Iteration: 8, Func. Count: 80, Neg. LLF: 127.45163163656083
Iteration: 9, Func. Count: 89, Neg. LLF: 127.45065011868121
Iteration: 10, Func. Count: 98, Neg. LLF: 127.45048333746101
Iteration: 11, Func. Count: 107, Neg. LLF: 127.45044997099725
Iteration: 12, Func. Count: 116, Neg. LLF: 127.45044128801604
Iteration: 13, Func. Count: 124, Neg. LLF: 127.45044128801698
Optimization terminated successfully (Exit mode 0)
Current function value: 127.45044128801604
Iterations: 13
Function evaluations: 124
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 138.16085648866377
Iteration: 2, Func. Count: 22, Neg. LLF: 130.29102739962315
Iteration: 3, Func. Count: 33, Neg. LLF: 127.48022803413973
Iteration: 4, Func. Count: 44, Neg. LLF: 134.50847746424637
Iteration: 5, Func. Count: 55, Neg. LLF: 132.47937797180302
Iteration: 6, Func. Count: 66, Neg. LLF: 126.81488562173975
Iteration: 7, Func. Count: 77, Neg. LLF: 125.40304914414523
Iteration: 8, Func. Count: 87, Neg. LLF: 125.6704865202591
Iteration: 9, Func. Count: 98, Neg. LLF: 125.34701240737421
Iteration: 10, Func. Count: 108, Neg. LLF: 125.32746248277418
Iteration: 11, Func. Count: 118, Neg. LLF: 125.3259491876932
Iteration: 12, Func. Count: 128, Neg. LLF: 125.32549633337894
Iteration: 13, Func. Count: 138, Neg. LLF: 125.32529110719223
Iteration: 14, Func. Count: 148, Neg. LLF: 125.3252883971471
Iteration: 15, Func. Count: 157, Neg. LLF: 125.32528839715366
Optimization terminated successfully (Exit mode 0)
Current function value: 125.3252883971471
Iterations: 15
Function evaluations: 157
Gradient evaluations: 15
Iteration: 1, Func. Count: 12, Neg. LLF: 130.83198954254615
Iteration: 2, Func. Count: 25, Neg. LLF: 134.695122943155
Iteration: 3, Func. Count: 37, Neg. LLF: 139.45058144256132
Iteration: 4, Func. Count: 50, Neg. LLF: 127.16271713801962
Iteration: 5, Func. Count: 61, Neg. LLF: 128.32907383636552
Iteration: 6, Func. Count: 73, Neg. LLF: 133.97741022431458
Iteration: 7, Func. Count: 86, Neg. LLF: 127.2720999602937
Iteration: 8, Func. Count: 98, Neg. LLF: 126.8189520928563
Iteration: 9, Func. Count: 109, Neg. LLF: 126.81380277015259
Iteration: 10, Func. Count: 120, Neg. LLF: 126.81360330721874
Iteration: 11, Func. Count: 131, Neg. LLF: 126.81358820313088
Iteration: 12, Func. Count: 142, Neg. LLF: 126.81358761728379
Optimization terminated successfully (Exit mode 0)
Current function value: 126.81358761728379
Iterations: 12
Function evaluations: 142
Gradient evaluations: 12
Iteration: 1, Func. Count: 13, Neg. LLF: 132.00119464831792
Iteration: 2, Func. Count: 26, Neg. LLF: 130.17400323395884
Iteration: 3, Func. Count: 41, Neg. LLF: 131.06064552894404
Iteration: 4, Func. Count: 54, Neg. LLF: 127.96265909778606
Iteration: 5, Func. Count: 67, Neg. LLF: 127.0778737198559
Iteration: 6, Func. Count: 79, Neg. LLF: 170.78382460898771
Iteration: 7, Func. Count: 92, Neg. LLF: 127.44342789724614
Iteration: 8, Func. Count: 105, Neg. LLF: 126.96870902575422
Iteration: 9, Func. Count: 118, Neg. LLF: 126.7381738128409
Iteration: 10, Func. Count: 130, Neg. LLF: 126.68510485019054
Iteration: 11, Func. Count: 142, Neg. LLF: 126.65444093320103
Iteration: 12, Func. Count: 154, Neg. LLF: 126.6447160226742
Iteration: 13, Func. Count: 166, Neg. LLF: 126.63306712302936
Iteration: 14, Func. Count: 178, Neg. LLF: 126.63061405380556
Iteration: 15, Func. Count: 190, Neg. LLF: 126.62960432919249
Iteration: 16, Func. Count: 202, Neg. LLF: 126.6294978875712
Iteration: 17, Func. Count: 214, Neg. LLF: 126.62948246894389
Iteration: 18, Func. Count: 225, Neg. LLF: 126.62948246898863
Optimization terminated successfully (Exit mode 0)
Current function value: 126.62948246894389
Iterations: 18
Function evaluations: 225
Gradient evaluations: 18
Iteration: 1, Func. Count: 14, Neg. LLF: 132.03942019673823
Iteration: 2, Func. Count: 28, Neg. LLF: 129.1223502257603
Iteration: 3, Func. Count: 43, Neg. LLF: 127.48004229236035
Iteration: 4, Func. Count: 56, Neg. LLF: 128.95846598926198
Iteration: 5, Func. Count: 70, Neg. LLF: 132.45694868366695
Iteration: 6, Func. Count: 84, Neg. LLF: 130.6815522379694
Iteration: 7, Func. Count: 98, Neg. LLF: 128.2063508436099
Iteration: 8, Func. Count: 112, Neg. LLF: 126.79757157657656
Iteration: 9, Func. Count: 125, Neg. LLF: 126.71054672861135
Iteration: 10, Func. Count: 138, Neg. LLF: 126.64376973527156
Iteration: 11, Func. Count: 151, Neg. LLF: 126.67297618999396
Iteration: 12, Func. Count: 165, Neg. LLF: 126.63398364615625
Iteration: 13, Func. Count: 179, Neg. LLF: 126.62953243988001
Iteration: 14, Func. Count: 192, Neg. LLF: 126.62948375325062
Iteration: 15, Func. Count: 205, Neg. LLF: 126.62948216838876
Iteration: 16, Func. Count: 217, Neg. LLF: 126.62948224812831
Optimization terminated successfully (Exit mode 0)
Current function value: 126.62948216838876
Iterations: 16
Function evaluations: 217
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 131.58821424415362
Iteration: 2, Func. Count: 22, Neg. LLF: 134.6810697120066
Iteration: 3, Func. Count: 33, Neg. LLF: 127.66140238969581
Iteration: 4, Func. Count: 43, Neg. LLF: 127.72483657955709
Iteration: 5, Func. Count: 54, Neg. LLF: 133.0891162432926
Iteration: 6, Func. Count: 68, Neg. LLF: 127.4766820161766
Iteration: 7, Func. Count: 78, Neg. LLF: 127.46252144298916
Iteration: 8, Func. Count: 88, Neg. LLF: 127.45218643013467
Iteration: 9, Func. Count: 98, Neg. LLF: 127.45096816493235
Iteration: 10, Func. Count: 108, Neg. LLF: 127.45054495707221
Iteration: 11, Func. Count: 118, Neg. LLF: 127.45045884247924
Iteration: 12, Func. Count: 128, Neg. LLF: 127.45044135922613
Iteration: 13, Func. Count: 137, Neg. LLF: 127.45044138818147
Optimization terminated successfully (Exit mode 0)
Current function value: 127.45044135922613
Iterations: 13
Function evaluations: 137
Gradient evaluations: 13
Iteration: 1, Func. Count: 12, Neg. LLF: 138.16031650513213
Iteration: 2, Func. Count: 24, Neg. LLF: 130.9903196111036
Iteration: 3, Func. Count: 36, Neg. LLF: 128.50457222939326
Iteration: 4, Func. Count: 48, Neg. LLF: 125.54614152562212
Iteration: 5, Func. Count: 59, Neg. LLF: 143.93913087409936
Iteration: 6, Func. Count: 71, Neg. LLF: 130.22240567972054
Iteration: 7, Func. Count: 84, Neg. LLF: 125.48223467903941
Iteration: 8, Func. Count: 96, Neg. LLF: 125.33103715304296
Iteration: 9, Func. Count: 107, Neg. LLF: 125.3271893957605
Iteration: 10, Func. Count: 118, Neg. LLF: 125.32535279485926
Iteration: 11, Func. Count: 129, Neg. LLF: 125.32530553768058
Iteration: 12, Func. Count: 140, Neg. LLF: 125.3252910017602
Iteration: 13, Func. Count: 151, Neg. LLF: 125.32528832865034
Iteration: 14, Func. Count: 161, Neg. LLF: 125.32528832864203
Optimization terminated successfully (Exit mode 0)
Current function value: 125.32528832865034
Iterations: 14
Function evaluations: 161
Gradient evaluations: 14
Iteration: 1, Func. Count: 13, Neg. LLF: 130.884517075031
Iteration: 2, Func. Count: 27, Neg. LLF: 134.6427205427767
Iteration: 3, Func. Count: 40, Neg. LLF: 140.25644215389104
Iteration: 4, Func. Count: 54, Neg. LLF: 127.15853543873175
Iteration: 5, Func. Count: 66, Neg. LLF: 128.333330789608
Iteration: 6, Func. Count: 79, Neg. LLF: 134.09673535210928
Iteration: 7, Func. Count: 93, Neg. LLF: 127.20395649331032
Iteration: 8, Func. Count: 106, Neg. LLF: 126.81776093383367
Iteration: 9, Func. Count: 118, Neg. LLF: 126.81371449386897
Iteration: 10, Func. Count: 130, Neg. LLF: 126.81359758974784
Iteration: 11, Func. Count: 142, Neg. LLF: 126.81358774089477
Iteration: 12, Func. Count: 153, Neg. LLF: 126.81358774084015
Optimization terminated successfully (Exit mode 0)
Current function value: 126.81358774089477
Iterations: 12
Function evaluations: 153
Gradient evaluations: 12
Iteration: 1, Func. Count: 14, Neg. LLF: 132.03029846106796
Iteration: 2, Func. Count: 28, Neg. LLF: 130.1615291318289
Iteration: 3, Func. Count: 44, Neg. LLF: 130.9146403591644
Iteration: 4, Func. Count: 58, Neg. LLF: 128.19681719067225
Iteration: 5, Func. Count: 72, Neg. LLF: 127.04220668177321
Iteration: 6, Func. Count: 85, Neg. LLF: 160.36771258950824
Iteration: 7, Func. Count: 99, Neg. LLF: 127.13111994543742
Iteration: 8, Func. Count: 113, Neg. LLF: 126.96350468648316
Iteration: 9, Func. Count: 127, Neg. LLF: 126.73233593903896
Iteration: 10, Func. Count: 140, Neg. LLF: 126.67019709882598
Iteration: 11, Func. Count: 153, Neg. LLF: 126.64752209663791
Iteration: 12, Func. Count: 166, Neg. LLF: 126.6355651718258
Iteration: 13, Func. Count: 179, Neg. LLF: 126.6310156694275
Iteration: 14, Func. Count: 192, Neg. LLF: 126.62981712418654
Iteration: 15, Func. Count: 205, Neg. LLF: 126.62949864763095
Iteration: 16, Func. Count: 218, Neg. LLF: 126.62948305241466
Iteration: 17, Func. Count: 231, Neg. LLF: 126.62948213132816
Optimization terminated successfully (Exit mode 0)
Current function value: 126.62948213132816
Iterations: 17
Function evaluations: 231
Gradient evaluations: 17
Iteration: 1, Func. Count: 15, Neg. LLF: 132.0384752621668
Iteration: 2, Func. Count: 30, Neg. LLF: 129.06910116929822
Iteration: 3, Func. Count: 46, Neg. LLF: 127.56258414836236
Iteration: 4, Func. Count: 60, Neg. LLF: 129.23414550191353
Iteration: 5, Func. Count: 75, Neg. LLF: 132.74578220494064
Iteration: 6, Func. Count: 90, Neg. LLF: 130.8197020767545
Iteration: 7, Func. Count: 105, Neg. LLF: 128.92807204568726
Iteration: 8, Func. Count: 120, Neg. LLF: 126.80695451934638
Iteration: 9, Func. Count: 134, Neg. LLF: 126.75654573092305
Iteration: 10, Func. Count: 148, Neg. LLF: 126.69638445091158
Iteration: 11, Func. Count: 162, Neg. LLF: 126.64594729969144
Iteration: 12, Func. Count: 176, Neg. LLF: 126.63492738865291
Iteration: 13, Func. Count: 190, Neg. LLF: 126.62990066994962
Iteration: 14, Func. Count: 204, Neg. LLF: 126.62954147241581
Iteration: 15, Func. Count: 218, Neg. LLF: 126.6294835907945
Iteration: 16, Func. Count: 232, Neg. LLF: 126.629482209048
Iteration: 17, Func. Count: 245, Neg. LLF: 126.62948228875229
Optimization terminated successfully (Exit mode 0)
Current function value: 126.629482209048
Iterations: 17
Function evaluations: 245
Gradient evaluations: 17
Iteration: 1, Func. Count: 8, Neg. LLF: 126.57171718272924
Iteration: 2, Func. Count: 16, Neg. LLF: 142.44447275512158
Iteration: 3, Func. Count: 24, Neg. LLF: 135.6137353484088
Iteration: 4, Func. Count: 32, Neg. LLF: 131.8115784656981
Iteration: 5, Func. Count: 40, Neg. LLF: 129.68937548336265
Iteration: 6, Func. Count: 48, Neg. LLF: 137.26569546651692
Iteration: 7, Func. Count: 56, Neg. LLF: 126.46294719875446
Iteration: 8, Func. Count: 64, Neg. LLF: 123.6675460311439
Iteration: 9, Func. Count: 72, Neg. LLF: 122.88839327071501
Iteration: 10, Func. Count: 80, Neg. LLF: 123.78561989803218
Iteration: 11, Func. Count: 88, Neg. LLF: 122.84272550104745
Iteration: 12, Func. Count: 95, Neg. LLF: 122.83442264049653
Iteration: 13, Func. Count: 102, Neg. LLF: 122.83301513476096
Iteration: 14, Func. Count: 109, Neg. LLF: 122.83265275490767
Iteration: 15, Func. Count: 116, Neg. LLF: 122.83260030092188
Iteration: 16, Func. Count: 123, Neg. LLF: 122.83259336890723
Iteration: 17, Func. Count: 130, Neg. LLF: 122.8325921504057
Iteration: 18, Func. Count: 136, Neg. LLF: 122.83259215040556
Optimization terminated successfully (Exit mode 0)
Current function value: 122.8325921504057
Iterations: 18
Function evaluations: 136
Gradient evaluations: 18
Iteration: 1, Func. Count: 9, Neg. LLF: 125.30411867014007
Iteration: 2, Func. Count: 17, Neg. LLF: 129.20825175470344
Iteration: 3, Func. Count: 26, Neg. LLF: 146.07800124820608
Iteration: 4, Func. Count: 35, Neg. LLF: 218.84384449096706
Iteration: 5, Func. Count: 44, Neg. LLF: 144.0404346313314
Iteration: 6, Func. Count: 53, Neg. LLF: 257.8212217285599
Iteration: 7, Func. Count: 62, Neg. LLF: 133.79990469661192
Iteration: 8, Func. Count: 71, Neg. LLF: 126.65197625469912
Iteration: 9, Func. Count: 80, Neg. LLF: 124.93240216101589
Iteration: 10, Func. Count: 89, Neg. LLF: 122.85725211278638
Iteration: 11, Func. Count: 97, Neg. LLF: 122.86081504836821
Iteration: 12, Func. Count: 106, Neg. LLF: 122.86044828539744
Iteration: 13, Func. Count: 115, Neg. LLF: 122.8327750536306
Iteration: 14, Func. Count: 123, Neg. LLF: 122.83263033719895
Iteration: 15, Func. Count: 131, Neg. LLF: 122.8326009203746
Iteration: 16, Func. Count: 139, Neg. LLF: 122.83259250617127
Iteration: 17, Func. Count: 146, Neg. LLF: 122.83259253413907
Optimization terminated successfully (Exit mode 0)
Current function value: 122.83259250617127
Iterations: 17
Function evaluations: 146
Gradient evaluations: 17
Iteration: 1, Func. Count: 10, Neg. LLF: 125.36718935947486
Iteration: 2, Func. Count: 19, Neg. LLF: 131.3129439324527
Iteration: 3, Func. Count: 29, Neg. LLF: 130.69140434614073
Iteration: 4, Func. Count: 39, Neg. LLF: 222.58487123766326
Iteration: 5, Func. Count: 49, Neg. LLF: 140.99831021827612
Iteration: 6, Func. Count: 59, Neg. LLF: 205.31485951425162
Iteration: 7, Func. Count: 69, Neg. LLF: 131.61729607412707
Iteration: 8, Func. Count: 79, Neg. LLF: 124.00938227453948
Iteration: 9, Func. Count: 89, Neg. LLF: 123.52606592655668
Iteration: 10, Func. Count: 99, Neg. LLF: 122.84686549361324
Iteration: 11, Func. Count: 108, Neg. LLF: 122.84468813711037
Iteration: 12, Func. Count: 118, Neg. LLF: 122.87750124811242
Iteration: 13, Func. Count: 128, Neg. LLF: 122.83280885808182
Iteration: 14, Func. Count: 137, Neg. LLF: 122.83264687619534
Iteration: 15, Func. Count: 146, Neg. LLF: 122.83259287772627
Iteration: 16, Func. Count: 155, Neg. LLF: 122.8325921718969
Optimization terminated successfully (Exit mode 0)
Current function value: 122.8325921718969
Iterations: 16
Function evaluations: 155
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 125.43111523284685
Iteration: 2, Func. Count: 21, Neg. LLF: 133.2339968169162
Iteration: 3, Func. Count: 32, Neg. LLF: 127.44577408291816
Iteration: 4, Func. Count: 43, Neg. LLF: 237.16194033347813
Iteration: 5, Func. Count: 54, Neg. LLF: 142.01733577750989
Iteration: 6, Func. Count: 66, Neg. LLF: 160.40326437310026
Iteration: 7, Func. Count: 77, Neg. LLF: 129.94986958882566
Iteration: 8, Func. Count: 88, Neg. LLF: 123.81329748254765
Iteration: 9, Func. Count: 99, Neg. LLF: 123.55562901860627
Iteration: 10, Func. Count: 110, Neg. LLF: 122.83879198728211
Iteration: 11, Func. Count: 120, Neg. LLF: 122.857845366885
Iteration: 12, Func. Count: 131, Neg. LLF: 122.83448427243258
Iteration: 13, Func. Count: 142, Neg. LLF: 122.83261505860426
Iteration: 14, Func. Count: 152, Neg. LLF: 122.83260019286729
Iteration: 15, Func. Count: 162, Neg. LLF: 122.832592315072
Iteration: 16, Func. Count: 171, Neg. LLF: 122.83259238285576
Optimization terminated successfully (Exit mode 0)
Current function value: 122.832592315072
Iterations: 16
Function evaluations: 171
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 125.37053843928842
Iteration: 2, Func. Count: 23, Neg. LLF: 133.54725418611145
Iteration: 3, Func. Count: 35, Neg. LLF: 125.86427739758227
Iteration: 4, Func. Count: 47, Neg. LLF: 255.30109359104702
Iteration: 5, Func. Count: 59, Neg. LLF: 147.1707335105653
Iteration: 6, Func. Count: 72, Neg. LLF: 147.4805186935091
Iteration: 7, Func. Count: 84, Neg. LLF: 131.72936624473704
Iteration: 8, Func. Count: 96, Neg. LLF: 123.24478913980599
Iteration: 9, Func. Count: 108, Neg. LLF: 122.9632127545145
Iteration: 10, Func. Count: 120, Neg. LLF: 122.83905154303794
Iteration: 11, Func. Count: 131, Neg. LLF: 122.83903027454055
Iteration: 12, Func. Count: 143, Neg. LLF: 122.83302953271867
Iteration: 13, Func. Count: 154, Neg. LLF: 122.83261408783495
Iteration: 14, Func. Count: 165, Neg. LLF: 122.83260106974008
Iteration: 15, Func. Count: 176, Neg. LLF: 122.8325928894105
Iteration: 16, Func. Count: 187, Neg. LLF: 122.83259216703432
Optimization terminated successfully (Exit mode 0)
Current function value: 122.83259216703432
Iterations: 16
Function evaluations: 187
Gradient evaluations: 16
Iteration: 1, Func. Count: 9, Neg. LLF: 126.54978285385951
Iteration: 2, Func. Count: 18, Neg. LLF: 151.37547359715592
Iteration: 3, Func. Count: 27, Neg. LLF: 124.24105698335228
Iteration: 4, Func. Count: 36, Neg. LLF: 132.8342271067359
Iteration: 5, Func. Count: 45, Neg. LLF: 130.42147377047522
Iteration: 6, Func. Count: 54, Neg. LLF: 129.2623848140013
Iteration: 7, Func. Count: 63, Neg. LLF: 123.76543812865299
Iteration: 8, Func. Count: 72, Neg. LLF: 122.81766536787728
Iteration: 9, Func. Count: 81, Neg. LLF: 122.81057713740924
Iteration: 10, Func. Count: 90, Neg. LLF: 122.79637316025546
Iteration: 11, Func. Count: 98, Neg. LLF: 122.7943292690296
Iteration: 12, Func. Count: 106, Neg. LLF: 122.78988986503893
Iteration: 13, Func. Count: 114, Neg. LLF: 122.79094343048703
Iteration: 14, Func. Count: 123, Neg. LLF: 122.86059338527929
Iteration: 15, Func. Count: 132, Neg. LLF: 122.78742723612662
Iteration: 16, Func. Count: 141, Neg. LLF: 122.78549383012395
Iteration: 17, Func. Count: 149, Neg. LLF: 122.7854631327952
Iteration: 18, Func. Count: 157, Neg. LLF: 122.78545901061577
Iteration: 19, Func. Count: 165, Neg. LLF: 122.78545702363243
Iteration: 20, Func. Count: 172, Neg. LLF: 122.78545702362311
Optimization terminated successfully (Exit mode 0)
Current function value: 122.78545702363243
Iterations: 20
Function evaluations: 172
Gradient evaluations: 20
Iteration: 1, Func. Count: 10, Neg. LLF: 125.30697281654729
Iteration: 2, Func. Count: 19, Neg. LLF: 129.48727376533512
Iteration: 3, Func. Count: 29, Neg. LLF: 145.9079581177493
Iteration: 4, Func. Count: 39, Neg. LLF: 213.63983960505917
Iteration: 5, Func. Count: 49, Neg. LLF: 168.93537127247927
Iteration: 6, Func. Count: 59, Neg. LLF: 123.9655225204327
Iteration: 7, Func. Count: 69, Neg. LLF: 140.0160233308047
Iteration: 8, Func. Count: 79, Neg. LLF: 126.3694670391655
Iteration: 9, Func. Count: 89, Neg. LLF: 124.0339320214005
Iteration: 10, Func. Count: 99, Neg. LLF: 122.84641219705506
Iteration: 11, Func. Count: 109, Neg. LLF: 122.86554967424988
Iteration: 12, Func. Count: 119, Neg. LLF: 122.78640017047964
Iteration: 13, Func. Count: 128, Neg. LLF: 122.78576490680817
Iteration: 14, Func. Count: 137, Neg. LLF: 122.78559064433388
Iteration: 15, Func. Count: 146, Neg. LLF: 122.78552594151945
Iteration: 16, Func. Count: 155, Neg. LLF: 122.78549514163565
Iteration: 17, Func. Count: 164, Neg. LLF: 122.78545850382184
Iteration: 18, Func. Count: 173, Neg. LLF: 122.7854570195096
Iteration: 19, Func. Count: 181, Neg. LLF: 122.78545704151486
Optimization terminated successfully (Exit mode 0)
Current function value: 122.7854570195096
Iterations: 19
Function evaluations: 181
Gradient evaluations: 19
Iteration: 1, Func. Count: 11, Neg. LLF: 125.37727116559418
Iteration: 2, Func. Count: 21, Neg. LLF: 131.66320533857674
Iteration: 3, Func. Count: 32, Neg. LLF: 129.16260202895307
Iteration: 4, Func. Count: 43, Neg. LLF: 227.2523986915145
Iteration: 5, Func. Count: 54, Neg. LLF: 170.27607043551376
Iteration: 6, Func. Count: 65, Neg. LLF: 123.11297611275211
Iteration: 7, Func. Count: 75, Neg. LLF: 124.56835316987909
Iteration: 8, Func. Count: 86, Neg. LLF: 124.39308019267796
Iteration: 9, Func. Count: 97, Neg. LLF: 123.37755915978536
Iteration: 10, Func. Count: 108, Neg. LLF: 122.84169968228848
Iteration: 11, Func. Count: 118, Neg. LLF: 123.02117558711416
Iteration: 12, Func. Count: 129, Neg. LLF: 122.79010898393378
Iteration: 13, Func. Count: 139, Neg. LLF: 122.78563910197786
Iteration: 14, Func. Count: 149, Neg. LLF: 122.78553917170616
Iteration: 15, Func. Count: 159, Neg. LLF: 122.78550567350622
Iteration: 16, Func. Count: 169, Neg. LLF: 122.78547453995162
Iteration: 17, Func. Count: 179, Neg. LLF: 122.78546448949544
Iteration: 18, Func. Count: 189, Neg. LLF: 122.78545756400662
Iteration: 19, Func. Count: 199, Neg. LLF: 122.78545697524063
Optimization terminated successfully (Exit mode 0)
Current function value: 122.78545697524063
Iterations: 19
Function evaluations: 199
Gradient evaluations: 19
Iteration: 1, Func. Count: 12, Neg. LLF: 125.46239441426282
Iteration: 2, Func. Count: 23, Neg. LLF: 133.79330701011634
Iteration: 3, Func. Count: 35, Neg. LLF: 126.52203687688305
Iteration: 4, Func. Count: 47, Neg. LLF: 239.12993790406037
Iteration: 5, Func. Count: 59, Neg. LLF: 176.71955279050937
Iteration: 6, Func. Count: 71, Neg. LLF: 122.85720138501162
Iteration: 7, Func. Count: 82, Neg. LLF: 151.81023154683962
Iteration: 8, Func. Count: 95, Neg. LLF: 128.07738959482032
Iteration: 9, Func. Count: 108, Neg. LLF: 122.81222088952403
Iteration: 10, Func. Count: 119, Neg. LLF: 122.79063574086068
Iteration: 11, Func. Count: 130, Neg. LLF: 122.7883184533125
Iteration: 12, Func. Count: 141, Neg. LLF: 122.78767034112398
Iteration: 13, Func. Count: 152, Neg. LLF: 122.78749391329426
Iteration: 14, Func. Count: 163, Neg. LLF: 122.78706227581567
Iteration: 15, Func. Count: 174, Neg. LLF: 122.78626155987757
Iteration: 16, Func. Count: 185, Neg. LLF: 122.78583485992692
Iteration: 17, Func. Count: 196, Neg. LLF: 122.78552514019388
Iteration: 18, Func. Count: 207, Neg. LLF: 122.78549540079453
Iteration: 19, Func. Count: 218, Neg. LLF: 122.78545762864768
Iteration: 20, Func. Count: 229, Neg. LLF: 122.78545696018227
Optimization terminated successfully (Exit mode 0)
Current function value: 122.78545696018227
Iterations: 20
Function evaluations: 229
Gradient evaluations: 20
Iteration: 1, Func. Count: 13, Neg. LLF: 125.40312546712721
Iteration: 2, Func. Count: 25, Neg. LLF: 134.12112050952237
Iteration: 3, Func. Count: 38, Neg. LLF: 125.35290424807727
Iteration: 4, Func. Count: 51, Neg. LLF: 256.66073009129553
Iteration: 5, Func. Count: 64, Neg. LLF: 192.0375489925087
Iteration: 6, Func. Count: 77, Neg. LLF: 123.31573673144901
Iteration: 7, Func. Count: 90, Neg. LLF: 132.43346676941613
Iteration: 8, Func. Count: 103, Neg. LLF: 123.83538156264763
Iteration: 9, Func. Count: 116, Neg. LLF: 123.10832280290995
Iteration: 10, Func. Count: 129, Neg. LLF: 123.08755063016346
Iteration: 11, Func. Count: 142, Neg. LLF: 122.79114639440363
Iteration: 12, Func. Count: 154, Neg. LLF: 122.78827993271788
Iteration: 13, Func. Count: 166, Neg. LLF: 122.78761025482771
Iteration: 14, Func. Count: 178, Neg. LLF: 122.78738421993191
Iteration: 15, Func. Count: 190, Neg. LLF: 122.78699293802033
Iteration: 16, Func. Count: 202, Neg. LLF: 122.78618890315677
Iteration: 17, Func. Count: 214, Neg. LLF: 122.78575597735112
Iteration: 18, Func. Count: 226, Neg. LLF: 122.78548845314424
Iteration: 19, Func. Count: 238, Neg. LLF: 122.78547770008396
Iteration: 20, Func. Count: 251, Neg. LLF: 122.7854569583449
Optimization terminated successfully (Exit mode 0)
Current function value: 122.7854569583449
Iterations: 20
Function evaluations: 251
Gradient evaluations: 20
Iteration: 1, Func. Count: 10, Neg. LLF: 125.97039832997221
Iteration: 2, Func. Count: 20, Neg. LLF: 124.40054027860872
Iteration: 3, Func. Count: 30, Neg. LLF: 131.32576013635548
Iteration: 4, Func. Count: 40, Neg. LLF: 181.51480089473645
Iteration: 5, Func. Count: 50, Neg. LLF: 153.85281593723602
Iteration: 6, Func. Count: 60, Neg. LLF: 136.11388089389465
Iteration: 7, Func. Count: 70, Neg. LLF: 128.9549312941411
Iteration: 8, Func. Count: 81, Neg. LLF: 123.59339719498236
Iteration: 9, Func. Count: 91, Neg. LLF: 122.79508590613436
Iteration: 10, Func. Count: 100, Neg. LLF: 122.7785429331546
Iteration: 11, Func. Count: 109, Neg. LLF: 122.7690689990156
Iteration: 12, Func. Count: 118, Neg. LLF: 122.77335460230387
Iteration: 13, Func. Count: 128, Neg. LLF: 122.78467719103094
Iteration: 14, Func. Count: 138, Neg. LLF: 122.76662576180168
Iteration: 15, Func. Count: 147, Neg. LLF: 122.7650368469032
Iteration: 16, Func. Count: 156, Neg. LLF: 122.76469791094044
Iteration: 17, Func. Count: 165, Neg. LLF: 122.76467490216349
Iteration: 18, Func. Count: 174, Neg. LLF: 122.76467400170218
Optimization terminated successfully (Exit mode 0)
Current function value: 122.76467400170218
Iterations: 18
Function evaluations: 174
Gradient evaluations: 18
Iteration: 1, Func. Count: 11, Neg. LLF: 125.29502534256582
Iteration: 2, Func. Count: 21, Neg. LLF: 129.42978305164536
Iteration: 3, Func. Count: 32, Neg. LLF: 145.93351284211371
Iteration: 4, Func. Count: 43, Neg. LLF: 214.2927485858004
Iteration: 5, Func. Count: 54, Neg. LLF: 165.1760029919781
Iteration: 6, Func. Count: 65, Neg. LLF: 124.3821075265296
Iteration: 7, Func. Count: 76, Neg. LLF: 144.24577311828486
Iteration: 8, Func. Count: 87, Neg. LLF: 125.6382179068427
Iteration: 9, Func. Count: 98, Neg. LLF: 126.97329840883611
Iteration: 10, Func. Count: 109, Neg. LLF: 122.90308303616114
Iteration: 11, Func. Count: 120, Neg. LLF: 122.86117013847186
Iteration: 12, Func. Count: 131, Neg. LLF: 122.77734046476724
Iteration: 13, Func. Count: 141, Neg. LLF: 122.77565984048643
Iteration: 14, Func. Count: 151, Neg. LLF: 122.77430906746717
Iteration: 15, Func. Count: 161, Neg. LLF: 122.77278028538949
Iteration: 16, Func. Count: 171, Neg. LLF: 122.76820669457075
Iteration: 17, Func. Count: 181, Neg. LLF: 122.76613932309455
Iteration: 18, Func. Count: 191, Neg. LLF: 122.76600922926363
Iteration: 19, Func. Count: 202, Neg. LLF: 122.76487772270669
Iteration: 20, Func. Count: 212, Neg. LLF: 122.76467882027245
Iteration: 21, Func. Count: 222, Neg. LLF: 122.76467411586799
Iteration: 22, Func. Count: 231, Neg. LLF: 122.7646741322865
Optimization terminated successfully (Exit mode 0)
Current function value: 122.76467411586799
Iterations: 22
Function evaluations: 231
Gradient evaluations: 22
Iteration: 1, Func. Count: 12, Neg. LLF: 125.37105680814298
Iteration: 2, Func. Count: 23, Neg. LLF: 131.60984636286915
Iteration: 3, Func. Count: 35, Neg. LLF: 129.23461718221827
Iteration: 4, Func. Count: 47, Neg. LLF: 226.60491991337278
Iteration: 5, Func. Count: 59, Neg. LLF: 167.05869901284493
Iteration: 6, Func. Count: 71, Neg. LLF: 123.97264264197946
Iteration: 7, Func. Count: 83, Neg. LLF: 134.8693039076513
Iteration: 8, Func. Count: 95, Neg. LLF: 135.34444432155453
Iteration: 9, Func. Count: 107, Neg. LLF: 126.58037340461475
Iteration: 10, Func. Count: 119, Neg. LLF: 123.12055236155808
Iteration: 11, Func. Count: 131, Neg. LLF: 122.8357384299234
Iteration: 12, Func. Count: 143, Neg. LLF: 122.78623543543807
Iteration: 13, Func. Count: 155, Neg. LLF: 122.77528419157647
Iteration: 14, Func. Count: 166, Neg. LLF: 122.77454224736755
Iteration: 15, Func. Count: 177, Neg. LLF: 122.77307322010495
Iteration: 16, Func. Count: 188, Neg. LLF: 122.76838178661562
Iteration: 17, Func. Count: 199, Neg. LLF: 122.76628857463288
Iteration: 18, Func. Count: 210, Neg. LLF: 122.76542474058957
Iteration: 19, Func. Count: 221, Neg. LLF: 122.76485394732447
Iteration: 20, Func. Count: 232, Neg. LLF: 122.76467746637633
Iteration: 21, Func. Count: 243, Neg. LLF: 122.76467409527736
Iteration: 22, Func. Count: 253, Neg. LLF: 122.76467416214041
Optimization terminated successfully (Exit mode 0)
Current function value: 122.76467409527736
Iterations: 22
Function evaluations: 253
Gradient evaluations: 22
Iteration: 1, Func. Count: 13, Neg. LLF: 125.4451000845752
Iteration: 2, Func. Count: 25, Neg. LLF: 133.62764224000617
Iteration: 3, Func. Count: 38, Neg. LLF: 126.63947651328624
Iteration: 4, Func. Count: 51, Neg. LLF: 239.74829827308565
Iteration: 5, Func. Count: 64, Neg. LLF: 173.35620933917198
Iteration: 6, Func. Count: 77, Neg. LLF: 130.04907679881475
Iteration: 7, Func. Count: 91, Neg. LLF: 123.12670552471707
Iteration: 8, Func. Count: 104, Neg. LLF: 135.42359411047076
Iteration: 9, Func. Count: 118, Neg. LLF: 142.13077266800042
Iteration: 10, Func. Count: 132, Neg. LLF: 122.81141002229498
Iteration: 11, Func. Count: 145, Neg. LLF: 122.77983547789721
Iteration: 12, Func. Count: 157, Neg. LLF: 122.77288436087552
Iteration: 13, Func. Count: 169, Neg. LLF: 122.7712319523018
Iteration: 14, Func. Count: 181, Neg. LLF: 122.77001374836316
Iteration: 15, Func. Count: 193, Neg. LLF: 122.7657216905367
Iteration: 16, Func. Count: 205, Neg. LLF: 122.76529706377042
Iteration: 17, Func. Count: 217, Neg. LLF: 122.7646809935919
Iteration: 18, Func. Count: 229, Neg. LLF: 122.76467835936376
Iteration: 19, Func. Count: 241, Neg. LLF: 122.76467395985166
Iteration: 20, Func. Count: 252, Neg. LLF: 122.76467403352868
Optimization terminated successfully (Exit mode 0)
Current function value: 122.76467395985166
Iterations: 20
Function evaluations: 252
Gradient evaluations: 20
Iteration: 1, Func. Count: 14, Neg. LLF: 125.38641321314178
Iteration: 2, Func. Count: 27, Neg. LLF: 133.93334587216063
Iteration: 3, Func. Count: 41, Neg. LLF: 125.43741704863864
Iteration: 4, Func. Count: 55, Neg. LLF: 258.3210639518107
Iteration: 5, Func. Count: 69, Neg. LLF: 189.11760960146015
Iteration: 6, Func. Count: 83, Neg. LLF: 134.3893687510921
Iteration: 7, Func. Count: 98, Neg. LLF: 122.94922645245568
Iteration: 8, Func. Count: 111, Neg. LLF: 133.09882520472954
Iteration: 9, Func. Count: 126, Neg. LLF: 739.2628483201756
Iteration: 10, Func. Count: 140, Neg. LLF: 123.04754632665185
Iteration: 11, Func. Count: 154, Neg. LLF: 122.7835687250863
Iteration: 12, Func. Count: 167, Neg. LLF: 122.93443502445803
Iteration: 13, Func. Count: 181, Neg. LLF: 122.77507816762753
Iteration: 14, Func. Count: 194, Neg. LLF: 122.7732449773918
Iteration: 15, Func. Count: 207, Neg. LLF: 122.77237020983505
Iteration: 16, Func. Count: 220, Neg. LLF: 122.76900819091757
Iteration: 17, Func. Count: 233, Neg. LLF: 122.76716341667053
Iteration: 18, Func. Count: 246, Neg. LLF: 122.76516188366152
Iteration: 19, Func. Count: 259, Neg. LLF: 122.76471714413518
Iteration: 20, Func. Count: 272, Neg. LLF: 122.76467582863043
Iteration: 21, Func. Count: 285, Neg. LLF: 122.76467401803973
Iteration: 22, Func. Count: 297, Neg. LLF: 122.76467420497045
Optimization terminated successfully (Exit mode 0)
Current function value: 122.76467401803973
Iterations: 22
Function evaluations: 297
Gradient evaluations: 22
Iteration: 1, Func. Count: 11, Neg. LLF: 125.83647229319979
Iteration: 2, Func. Count: 22, Neg. LLF: 142.46853432408446
Iteration: 3, Func. Count: 33, Neg. LLF: 127.7387897906499
Iteration: 4, Func. Count: 44, Neg. LLF: 196.5639561515858
Iteration: 5, Func. Count: 55, Neg. LLF: 146.7670160335187
Iteration: 6, Func. Count: 66, Neg. LLF: 204.1903491985695
Iteration: 7, Func. Count: 77, Neg. LLF: 124.01230197623549
Iteration: 8, Func. Count: 88, Neg. LLF: 123.34906132511286
Iteration: 9, Func. Count: 99, Neg. LLF: 122.79802252433213
Iteration: 10, Func. Count: 110, Neg. LLF: 123.1045961947025
Iteration: 11, Func. Count: 121, Neg. LLF: 122.6047152218761
Iteration: 12, Func. Count: 132, Neg. LLF: 122.59103694359482
Iteration: 13, Func. Count: 143, Neg. LLF: 122.5614639131435
Iteration: 14, Func. Count: 153, Neg. LLF: 122.55722806990596
Iteration: 15, Func. Count: 163, Neg. LLF: 122.55623680525854
Iteration: 16, Func. Count: 173, Neg. LLF: 122.55616833088163
Iteration: 17, Func. Count: 183, Neg. LLF: 122.55616465950344
Iteration: 18, Func. Count: 192, Neg. LLF: 122.55616465950295
Optimization terminated successfully (Exit mode 0)
Current function value: 122.55616465950344
Iterations: 18
Function evaluations: 192
Gradient evaluations: 18
Iteration: 1, Func. Count: 12, Neg. LLF: 125.30344095374404
Iteration: 2, Func. Count: 23, Neg. LLF: 124.96052690064658
Iteration: 3, Func. Count: 35, Neg. LLF: 140.9505411328002
Iteration: 4, Func. Count: 47, Neg. LLF: 21208344.248510957
Iteration: 5, Func. Count: 59, Neg. LLF: 5963761.637317626
Iteration: 6, Func. Count: 71, Neg. LLF: 210.66202281507015
Iteration: 7, Func. Count: 83, Neg. LLF: 153.942625108133
Iteration: 8, Func. Count: 95, Neg. LLF: 127.47858687347524
Iteration: 9, Func. Count: 107, Neg. LLF: 123.42797759864641
Iteration: 10, Func. Count: 119, Neg. LLF: 122.61843284062583
Iteration: 11, Func. Count: 131, Neg. LLF: 122.60178773774021
Iteration: 12, Func. Count: 143, Neg. LLF: 122.57195202086703
Iteration: 13, Func. Count: 154, Neg. LLF: 122.57782587826806
Iteration: 14, Func. Count: 166, Neg. LLF: 122.56265441771208
Iteration: 15, Func. Count: 177, Neg. LLF: 122.5606959129901
Iteration: 16, Func. Count: 188, Neg. LLF: 122.55767694008622
Iteration: 17, Func. Count: 199, Neg. LLF: 122.55646831923448
Iteration: 18, Func. Count: 210, Neg. LLF: 122.5561824319935
Iteration: 19, Func. Count: 221, Neg. LLF: 122.55616497371916
Iteration: 20, Func. Count: 231, Neg. LLF: 122.55616498949827
Optimization terminated successfully (Exit mode 0)
Current function value: 122.55616497371916
Iterations: 20
Function evaluations: 231
Gradient evaluations: 20
Iteration: 1, Func. Count: 13, Neg. LLF: 125.37268037224857
Iteration: 2, Func. Count: 25, Neg. LLF: 125.07497911817175
Iteration: 3, Func. Count: 38, Neg. LLF: 141.81368061316587
Iteration: 4, Func. Count: 51, Neg. LLF: 19908932.08786246
Iteration: 5, Func. Count: 64, Neg. LLF: 5925901.508763375
Iteration: 6, Func. Count: 77, Neg. LLF: 243.8772612895236
Iteration: 7, Func. Count: 90, Neg. LLF: 149.7881460629785
Iteration: 8, Func. Count: 103, Neg. LLF: 138.02420167312212
Iteration: 9, Func. Count: 116, Neg. LLF: 123.69308897625744
Iteration: 10, Func. Count: 129, Neg. LLF: 122.58694999772996
Iteration: 11, Func. Count: 141, Neg. LLF: 122.57656033915815
Iteration: 12, Func. Count: 153, Neg. LLF: 122.58437852363474
Iteration: 13, Func. Count: 166, Neg. LLF: 122.56145982434418
Iteration: 14, Func. Count: 178, Neg. LLF: 122.55883847649771
Iteration: 15, Func. Count: 190, Neg. LLF: 122.55817052342657
Iteration: 16, Func. Count: 202, Neg. LLF: 122.55634381115868
Iteration: 17, Func. Count: 214, Neg. LLF: 122.55617856761108
Iteration: 18, Func. Count: 226, Neg. LLF: 122.55616481093823
Iteration: 19, Func. Count: 237, Neg. LLF: 122.55616490025861
Optimization terminated successfully (Exit mode 0)
Current function value: 122.55616481093823
Iterations: 19
Function evaluations: 237
Gradient evaluations: 19
Iteration: 1, Func. Count: 14, Neg. LLF: 125.44336800684476
Iteration: 2, Func. Count: 27, Neg. LLF: 125.26370515367466
Iteration: 3, Func. Count: 41, Neg. LLF: 140.7714962182867
Iteration: 4, Func. Count: 55, Neg. LLF: 21559332.11618815
Iteration: 5, Func. Count: 69, Neg. LLF: 5946862.665698803
Iteration: 6, Func. Count: 83, Neg. LLF: 244.27313521337774
Iteration: 7, Func. Count: 97, Neg. LLF: 152.27167305420593
Iteration: 8, Func. Count: 111, Neg. LLF: 140.21064365201389
Iteration: 9, Func. Count: 125, Neg. LLF: 123.65457753544956
Iteration: 10, Func. Count: 139, Neg. LLF: 122.5906748582798
Iteration: 11, Func. Count: 152, Neg. LLF: 122.56468530574628
Iteration: 12, Func. Count: 165, Neg. LLF: 122.57306205855566
Iteration: 13, Func. Count: 179, Neg. LLF: 122.56410920322436
Iteration: 14, Func. Count: 193, Neg. LLF: 122.56000852243834
Iteration: 15, Func. Count: 206, Neg. LLF: 122.55728798695469
Iteration: 16, Func. Count: 219, Neg. LLF: 122.55622615422763
Iteration: 17, Func. Count: 232, Neg. LLF: 122.55616573389874
Iteration: 18, Func. Count: 245, Neg. LLF: 122.5561646773017
Iteration: 19, Func. Count: 257, Neg. LLF: 122.55616474203579
Optimization terminated successfully (Exit mode 0)
Current function value: 122.5561646773017
Iterations: 19
Function evaluations: 257
Gradient evaluations: 19
Iteration: 1, Func. Count: 15, Neg. LLF: 125.38404643348672
Iteration: 2, Func. Count: 29, Neg. LLF: 125.40129423259691
Iteration: 3, Func. Count: 44, Neg. LLF: 139.8647111448801
Iteration: 4, Func. Count: 59, Neg. LLF: 36275304.7370093
Iteration: 5, Func. Count: 74, Neg. LLF: 194.01307286463404
Iteration: 6, Func. Count: 89, Neg. LLF: 217.7284821388544
Iteration: 7, Func. Count: 104, Neg. LLF: 156.3544750022986
Iteration: 8, Func. Count: 119, Neg. LLF: 128.15292949001153
Iteration: 9, Func. Count: 134, Neg. LLF: 123.91708080727724
Iteration: 10, Func. Count: 149, Neg. LLF: 122.58896628154314
Iteration: 11, Func. Count: 163, Neg. LLF: 122.60725227320914
Iteration: 12, Func. Count: 178, Neg. LLF: 122.58106621478565
Iteration: 13, Func. Count: 193, Neg. LLF: 122.56200171250863
Iteration: 14, Func. Count: 207, Neg. LLF: 122.55989043420696
Iteration: 15, Func. Count: 221, Neg. LLF: 122.5585927669057
Iteration: 16, Func. Count: 235, Neg. LLF: 122.55637773839116
Iteration: 17, Func. Count: 249, Neg. LLF: 122.55618100641811
Iteration: 18, Func. Count: 263, Neg. LLF: 122.556165640092
Iteration: 19, Func. Count: 277, Neg. LLF: 122.55616465896642
Optimization terminated successfully (Exit mode 0)
Current function value: 122.55616465896642
Iterations: 19
Function evaluations: 277
Gradient evaluations: 19
Iteration: 1, Func. Count: 12, Neg. LLF: 125.90940857422544
Iteration: 2, Func. Count: 24, Neg. LLF: 127.34362284630092
Iteration: 3, Func. Count: 36, Neg. LLF: 123.90493342166887
Iteration: 4, Func. Count: 48, Neg. LLF: 133.9002104254552
Iteration: 5, Func. Count: 60, Neg. LLF: 184.15859298450067
Iteration: 6, Func. Count: 72, Neg. LLF: 132.5886868986658
Iteration: 7, Func. Count: 84, Neg. LLF: 125.67413926434558
Iteration: 8, Func. Count: 96, Neg. LLF: 128.0614831520721
Iteration: 9, Func. Count: 108, Neg. LLF: 123.65375177044325
Iteration: 10, Func. Count: 120, Neg. LLF: 122.6379697757975
Iteration: 11, Func. Count: 132, Neg. LLF: 123.11647953264247
Iteration: 12, Func. Count: 144, Neg. LLF: 122.50593918081648
Iteration: 13, Func. Count: 155, Neg. LLF: 123.04601150985187
Iteration: 14, Func. Count: 167, Neg. LLF: 122.49788583157037
Iteration: 15, Func. Count: 178, Neg. LLF: 122.49670750788623
Iteration: 16, Func. Count: 189, Neg. LLF: 122.4917873222103
Iteration: 17, Func. Count: 200, Neg. LLF: 122.49046656958382
Iteration: 18, Func. Count: 211, Neg. LLF: 122.4902693288402
Iteration: 19, Func. Count: 222, Neg. LLF: 122.49011175778706
Iteration: 20, Func. Count: 233, Neg. LLF: 122.48995794192051
Iteration: 21, Func. Count: 244, Neg. LLF: 122.48990261483209
Iteration: 22, Func. Count: 255, Neg. LLF: 122.48989667480332
Iteration: 23, Func. Count: 265, Neg. LLF: 122.48989667481139
Optimization terminated successfully (Exit mode 0)
Current function value: 122.48989667480332
Iterations: 23
Function evaluations: 265
Gradient evaluations: 23
Iteration: 1, Func. Count: 13, Neg. LLF: 126.42310360717141
Iteration: 2, Func. Count: 26, Neg. LLF: 147.94116445820364
Iteration: 3, Func. Count: 39, Neg. LLF: 125.34654711356089
Iteration: 4, Func. Count: 52, Neg. LLF: 3258.3020690069843
Iteration: 5, Func. Count: 65, Neg. LLF: 214.45114909195848
Iteration: 6, Func. Count: 78, Neg. LLF: 476.41575928109717
Iteration: 7, Func. Count: 91, Neg. LLF: 122.70893901934568
Iteration: 8, Func. Count: 104, Neg. LLF: 121.24385661154075
Iteration: 9, Func. Count: 116, Neg. LLF: 123.07613964501193
Iteration: 10, Func. Count: 129, Neg. LLF: 123.23040823540433
Iteration: 11, Func. Count: 143, Neg. LLF: 121.09170689831335
Iteration: 12, Func. Count: 155, Neg. LLF: 121.13321048671366
Iteration: 13, Func. Count: 168, Neg. LLF: 121.08491164008451
Iteration: 14, Func. Count: 181, Neg. LLF: 121.07257056072153
Iteration: 15, Func. Count: 193, Neg. LLF: 121.07135173193976
Iteration: 16, Func. Count: 205, Neg. LLF: 121.07036045198988
Iteration: 17, Func. Count: 217, Neg. LLF: 121.07020727344828
Iteration: 18, Func. Count: 229, Neg. LLF: 121.0701803878309
Iteration: 19, Func. Count: 241, Neg. LLF: 121.07017613012808
Iteration: 20, Func. Count: 252, Neg. LLF: 121.07017613017801
Optimization terminated successfully (Exit mode 0)
Current function value: 121.07017613012808
Iterations: 20
Function evaluations: 252
Gradient evaluations: 20
Iteration: 1, Func. Count: 14, Neg. LLF: 129.46539915520916
Iteration: 2, Func. Count: 28, Neg. LLF: 140.52952280243912
Iteration: 3, Func. Count: 42, Neg. LLF: 124.2788683937715
Iteration: 4, Func. Count: 55, Neg. LLF: 128.8776538793033
Iteration: 5, Func. Count: 70, Neg. LLF: 128.52944154523743
Iteration: 6, Func. Count: 85, Neg. LLF: 126.94279834496943
Iteration: 7, Func. Count: 100, Neg. LLF: 125.351955829813
Iteration: 8, Func. Count: 114, Neg. LLF: 139.8133264019525
Iteration: 9, Func. Count: 128, Neg. LLF: 122.79300633342272
Iteration: 10, Func. Count: 142, Neg. LLF: 121.8598204559602
Iteration: 11, Func. Count: 156, Neg. LLF: 121.24768449319781
Iteration: 12, Func. Count: 169, Neg. LLF: 121.13333071532571
Iteration: 13, Func. Count: 182, Neg. LLF: 121.11858879605502
Iteration: 14, Func. Count: 195, Neg. LLF: 121.08921895866052
Iteration: 15, Func. Count: 208, Neg. LLF: 121.07482117636948
Iteration: 16, Func. Count: 221, Neg. LLF: 121.07344811780176
Iteration: 17, Func. Count: 234, Neg. LLF: 121.07213234876137
Iteration: 18, Func. Count: 247, Neg. LLF: 121.07170701565866
Iteration: 19, Func. Count: 260, Neg. LLF: 121.07148787162012
Iteration: 20, Func. Count: 273, Neg. LLF: 121.07124508622535
Iteration: 21, Func. Count: 286, Neg. LLF: 121.07080861497955
Iteration: 22, Func. Count: 299, Neg. LLF: 121.07039483319241
Iteration: 23, Func. Count: 312, Neg. LLF: 121.07021324679141
Iteration: 24, Func. Count: 325, Neg. LLF: 121.07017695829958
Iteration: 25, Func. Count: 338, Neg. LLF: 121.0701756384557
Iteration: 26, Func. Count: 350, Neg. LLF: 121.07017573262162
Optimization terminated successfully (Exit mode 0)
Current function value: 121.0701756384557
Iterations: 26
Function evaluations: 350
Gradient evaluations: 26
Iteration: 1, Func. Count: 15, Neg. LLF: 128.86922874704192
Iteration: 2, Func. Count: 30, Neg. LLF: 143.152011084091
Iteration: 3, Func. Count: 45, Neg. LLF: 124.18851382765781
Iteration: 4, Func. Count: 59, Neg. LLF: 128.39724949248898
Iteration: 5, Func. Count: 75, Neg. LLF: 128.99174973986658
Iteration: 6, Func. Count: 91, Neg. LLF: 130.48226391724967
Iteration: 7, Func. Count: 108, Neg. LLF: 133.79696577038834
Iteration: 8, Func. Count: 123, Neg. LLF: 142.65017071433013
Iteration: 9, Func. Count: 138, Neg. LLF: 144.0015793477845
Iteration: 10, Func. Count: 153, Neg. LLF: 123.83242174101655
Iteration: 11, Func. Count: 168, Neg. LLF: 122.60045202011722
Iteration: 12, Func. Count: 183, Neg. LLF: 121.22803574320052
Iteration: 13, Func. Count: 197, Neg. LLF: 121.12115597709509
Iteration: 14, Func. Count: 211, Neg. LLF: 121.12461471261959
Iteration: 15, Func. Count: 226, Neg. LLF: 121.09633298297574
Iteration: 16, Func. Count: 240, Neg. LLF: 121.0867665894815
Iteration: 17, Func. Count: 254, Neg. LLF: 121.07490504812154
Iteration: 18, Func. Count: 268, Neg. LLF: 121.07256102478364
Iteration: 19, Func. Count: 282, Neg. LLF: 121.07153326936225
Iteration: 20, Func. Count: 296, Neg. LLF: 121.07130164877226
Iteration: 21, Func. Count: 310, Neg. LLF: 121.07117166300874
Iteration: 22, Func. Count: 324, Neg. LLF: 121.07094637806635
Iteration: 23, Func. Count: 338, Neg. LLF: 121.07059541992933
Iteration: 24, Func. Count: 352, Neg. LLF: 121.0702989401126
Iteration: 25, Func. Count: 366, Neg. LLF: 121.07019116229203
Iteration: 26, Func. Count: 380, Neg. LLF: 121.07017593933061
Iteration: 27, Func. Count: 393, Neg. LLF: 121.07017599847389
Optimization terminated successfully (Exit mode 0)
Current function value: 121.07017593933061
Iterations: 27
Function evaluations: 393
Gradient evaluations: 27
Iteration: 1, Func. Count: 16, Neg. LLF: 127.38221372743679
Iteration: 2, Func. Count: 32, Neg. LLF: 142.15902952362018
Iteration: 3, Func. Count: 48, Neg. LLF: 124.2251931904707
Iteration: 4, Func. Count: 64, Neg. LLF: 137.4001277965818
Iteration: 5, Func. Count: 80, Neg. LLF: 142.31901444391835
Iteration: 6, Func. Count: 96, Neg. LLF: 121.5863419739615
Iteration: 7, Func. Count: 111, Neg. LLF: 122.91156324168533
Iteration: 8, Func. Count: 128, Neg. LLF: 123.97440190176629
Iteration: 9, Func. Count: 145, Neg. LLF: 121.15312850534907
Iteration: 10, Func. Count: 160, Neg. LLF: 121.12300822562517
Iteration: 11, Func. Count: 175, Neg. LLF: 121.10059708843718
Iteration: 12, Func. Count: 190, Neg. LLF: 121.08981740534736
Iteration: 13, Func. Count: 205, Neg. LLF: 121.07587902607024
Iteration: 14, Func. Count: 220, Neg. LLF: 121.07208603643109
Iteration: 15, Func. Count: 235, Neg. LLF: 121.07165291453988
Iteration: 16, Func. Count: 250, Neg. LLF: 121.07138713027393
Iteration: 17, Func. Count: 265, Neg. LLF: 121.07082911737433
Iteration: 18, Func. Count: 280, Neg. LLF: 121.0703786945782
Iteration: 19, Func. Count: 295, Neg. LLF: 121.07020511883107
Iteration: 20, Func. Count: 310, Neg. LLF: 121.07017631899714
Iteration: 21, Func. Count: 325, Neg. LLF: 121.07064691857053
Optimization terminated successfully (Exit mode 0)
Current function value: 121.07017623481107
Iterations: 21
Function evaluations: 327
Gradient evaluations: 21
Iteration: 1, Func. Count: 8, Neg. LLF: 126.57171718272924
Iteration: 2, Func. Count: 16, Neg. LLF: 142.44447275512158
Iteration: 3, Func. Count: 24, Neg. LLF: 135.6137353484088
Iteration: 4, Func. Count: 32, Neg. LLF: 131.8115784656981
Iteration: 5, Func. Count: 40, Neg. LLF: 129.68937548336265
Iteration: 6, Func. Count: 48, Neg. LLF: 137.26569546651692
Iteration: 7, Func. Count: 56, Neg. LLF: 126.46294719875446
Iteration: 8, Func. Count: 64, Neg. LLF: 123.6675460311439
Iteration: 9, Func. Count: 72, Neg. LLF: 122.88839327071501
Iteration: 10, Func. Count: 80, Neg. LLF: 123.78561989803218
Iteration: 11, Func. Count: 88, Neg. LLF: 122.84272550104745
Iteration: 12, Func. Count: 95, Neg. LLF: 122.83442264049653
Iteration: 13, Func. Count: 102, Neg. LLF: 122.83301513476096
Iteration: 14, Func. Count: 109, Neg. LLF: 122.83265275490767
Iteration: 15, Func. Count: 116, Neg. LLF: 122.83260030092188
Iteration: 16, Func. Count: 123, Neg. LLF: 122.83259336890723
Iteration: 17, Func. Count: 130, Neg. LLF: 122.8325921504057
Iteration: 18, Func. Count: 136, Neg. LLF: 122.83259215040556
Optimization terminated successfully (Exit mode 0)
Current function value: 122.8325921504057
Iterations: 18
Function evaluations: 136
Gradient evaluations: 18
Iteration: 1, Func. Count: 5, Neg. LLF: 135.05188013611811
Iteration: 2, Func. Count: 10, Neg. LLF: 139.85566899597256
Iteration: 3, Func. Count: 15, Neg. LLF: 128.55203776576576
Iteration: 4, Func. Count: 19, Neg. LLF: 128.50597593209574
Iteration: 5, Func. Count: 23, Neg. LLF: 128.45812218406454
Iteration: 6, Func. Count: 27, Neg. LLF: 128.4537081952027
Iteration: 7, Func. Count: 31, Neg. LLF: 128.4523474973385
Iteration: 8, Func. Count: 35, Neg. LLF: 128.45212987709317
Iteration: 9, Func. Count: 39, Neg. LLF: 128.45211058847408
Iteration: 10, Func. Count: 42, Neg. LLF: 128.45211064360618
Optimization terminated successfully (Exit mode 0)
Current function value: 128.45211058847408
Iterations: 10
Function evaluations: 42
Gradient evaluations: 10
Iteration: 1, Func. Count: 6, Neg. LLF: 145.8209565307306
Iteration: 2, Func. Count: 13, Neg. LLF: 128.43904717234182
Iteration: 3, Func. Count: 18, Neg. LLF: 128.43626815946658
Iteration: 4, Func. Count: 23, Neg. LLF: 128.43470499827956
Iteration: 5, Func. Count: 28, Neg. LLF: 128.43468369052513
Iteration: 6, Func. Count: 33, Neg. LLF: 128.43456689778583
Iteration: 7, Func. Count: 38, Neg. LLF: 128.43394939078397
Iteration: 8, Func. Count: 43, Neg. LLF: 128.4295819937028
Iteration: 9, Func. Count: 48, Neg. LLF: 128.37109077125018
Iteration: 10, Func. Count: 53, Neg. LLF: 128.42752386561014
Iteration: 11, Func. Count: 60, Neg. LLF: 128.32400072386224
Iteration: 12, Func. Count: 66, Neg. LLF: 128.37072057223756
Iteration: 13, Func. Count: 72, Neg. LLF: 128.31388862395187
Iteration: 14, Func. Count: 77, Neg. LLF: 128.3137894247959
Iteration: 15, Func. Count: 82, Neg. LLF: 128.31378817674118
Iteration: 16, Func. Count: 86, Neg. LLF: 128.31378817658802
Optimization terminated successfully (Exit mode 0)
Current function value: 128.31378817674118
Iterations: 16
Function evaluations: 86
Gradient evaluations: 16
Iteration: 1, Func. Count: 7, Neg. LLF: 160.271395516366
Iteration: 2, Func. Count: 15, Neg. LLF: 128.43366912354355
Iteration: 3, Func. Count: 21, Neg. LLF: 128.43284550189875
Iteration: 4, Func. Count: 27, Neg. LLF: 128.43108364505977
Iteration: 5, Func. Count: 33, Neg. LLF: 128.43056395555556
Iteration: 6, Func. Count: 39, Neg. LLF: 128.42614692265667
Iteration: 7, Func. Count: 45, Neg. LLF: 128.4203585382594
Iteration: 8, Func. Count: 51, Neg. LLF: 128.4197318040918
Iteration: 9, Func. Count: 57, Neg. LLF: 128.41727616868067
Iteration: 10, Func. Count: 63, Neg. LLF: 128.41433583876224
Iteration: 11, Func. Count: 69, Neg. LLF: 128.39451030384234
Iteration: 12, Func. Count: 75, Neg. LLF: 128.3884112819572
Iteration: 13, Func. Count: 81, Neg. LLF: 128.37194991617736
Iteration: 14, Func. Count: 87, Neg. LLF: 128.37217829957476
Iteration: 15, Func. Count: 94, Neg. LLF: 128.38996965698735
Iteration: 16, Func. Count: 101, Neg. LLF: 128.31667316418984
Iteration: 17, Func. Count: 107, Neg. LLF: 128.31498935055825
Iteration: 18, Func. Count: 113, Neg. LLF: 128.31463731506585
Iteration: 19, Func. Count: 119, Neg. LLF: 128.31462452986332
Iteration: 20, Func. Count: 124, Neg. LLF: 128.31462452949947
Optimization terminated successfully (Exit mode 0)
Current function value: 128.31462452986332
Iterations: 20
Function evaluations: 124
Gradient evaluations: 20
Iteration: 1, Func. Count: 8, Neg. LLF: 155.63847898064506
Iteration: 2, Func. Count: 17, Neg. LLF: 128.42869233408152
Iteration: 3, Func. Count: 24, Neg. LLF: 128.4271692867713
Iteration: 4, Func. Count: 31, Neg. LLF: 128.4243581535897
Iteration: 5, Func. Count: 38, Neg. LLF: 128.42031451653145
Iteration: 6, Func. Count: 45, Neg. LLF: 128.41479536677585
Iteration: 7, Func. Count: 52, Neg. LLF: 128.41069855246744
Iteration: 8, Func. Count: 59, Neg. LLF: 128.40542055551768
Iteration: 9, Func. Count: 66, Neg. LLF: 128.40239815763485
Iteration: 10, Func. Count: 73, Neg. LLF: 128.38592582441265
Iteration: 11, Func. Count: 80, Neg. LLF: 128.43910489963653
Iteration: 12, Func. Count: 88, Neg. LLF: 128.4105344464374
Iteration: 13, Func. Count: 96, Neg. LLF: 128.3433913889487
Iteration: 14, Func. Count: 103, Neg. LLF: 128.40878875684518
Iteration: 15, Func. Count: 111, Neg. LLF: 128.32692166773867
Iteration: 16, Func. Count: 118, Neg. LLF: 128.32105025271218
Iteration: 17, Func. Count: 125, Neg. LLF: 128.31756090885355
Iteration: 18, Func. Count: 132, Neg. LLF: 128.3174771995297
Iteration: 19, Func. Count: 139, Neg. LLF: 128.31729046562756
Iteration: 20, Func. Count: 146, Neg. LLF: 128.31707273864623
Iteration: 21, Func. Count: 153, Neg. LLF: 128.31512874692055
Iteration: 22, Func. Count: 160, Neg. LLF: 128.3145192330387
Iteration: 23, Func. Count: 167, Neg. LLF: 128.31380578684283
Iteration: 24, Func. Count: 174, Neg. LLF: 128.31379328706618
Iteration: 25, Func. Count: 181, Neg. LLF: 128.31378838093536
Iteration: 26, Func. Count: 187, Neg. LLF: 128.31378838091007
Optimization terminated successfully (Exit mode 0)
Current function value: 128.31378838093536
Iterations: 26
Function evaluations: 187
Gradient evaluations: 26
Iteration: 1, Func. Count: 9, Neg. LLF: 152.39119726640243
Iteration: 2, Func. Count: 19, Neg. LLF: 128.42046218570002
Iteration: 3, Func. Count: 27, Neg. LLF: 128.41613823393698
Iteration: 4, Func. Count: 35, Neg. LLF: 128.4080047888447
Iteration: 5, Func. Count: 43, Neg. LLF: 128.39182400741194
Iteration: 6, Func. Count: 51, Neg. LLF: 128.38539240245996
Iteration: 7, Func. Count: 59, Neg. LLF: 128.37691032277982
Iteration: 8, Func. Count: 67, Neg. LLF: 128.3760327617135
Iteration: 9, Func. Count: 75, Neg. LLF: 128.37127170126266
Iteration: 10, Func. Count: 83, Neg. LLF: 128.345854347704
Iteration: 11, Func. Count: 91, Neg. LLF: 128.34978650319573
Iteration: 12, Func. Count: 100, Neg. LLF: 128.3188339711543
Iteration: 13, Func. Count: 109, Neg. LLF: 128.31586813665612
Iteration: 14, Func. Count: 118, Neg. LLF: 128.3153766047859
Iteration: 15, Func. Count: 126, Neg. LLF: 128.31537410071118
Iteration: 16, Func. Count: 133, Neg. LLF: 128.3153741007195
Optimization terminated successfully (Exit mode 0)
Current function value: 128.31537410071118
Iterations: 16
Function evaluations: 133
Gradient evaluations: 16
Iteration: 1, Func. Count: 6, Neg. LLF: 143.60148572280045
Iteration: 2, Func. Count: 12, Neg. LLF: 132.92794745271846
Iteration: 3, Func. Count: 18, Neg. LLF: 128.53561437586484
Iteration: 4, Func. Count: 23, Neg. LLF: 129.1122590156919
Iteration: 5, Func. Count: 30, Neg. LLF: 128.39521109702778
Iteration: 6, Func. Count: 35, Neg. LLF: 128.39014136657195
Iteration: 7, Func. Count: 40, Neg. LLF: 128.3885552983143
Iteration: 8, Func. Count: 45, Neg. LLF: 128.38845741563105
Iteration: 9, Func. Count: 50, Neg. LLF: 128.38841940683497
Iteration: 10, Func. Count: 55, Neg. LLF: 128.38841602363513
Iteration: 11, Func. Count: 59, Neg. LLF: 128.38841602366247
Optimization terminated successfully (Exit mode 0)
Current function value: 128.38841602363513
Iterations: 11
Function evaluations: 59
Gradient evaluations: 11
Iteration: 1, Func. Count: 7, Neg. LLF: 138.0350436073876
Iteration: 2, Func. Count: 16, Neg. LLF: 134.4987350276337
Iteration: 3, Func. Count: 24, Neg. LLF: 128.3893849298484
Iteration: 4, Func. Count: 31, Neg. LLF: 128.35960644715158
Iteration: 5, Func. Count: 37, Neg. LLF: 128.35749672069133
Iteration: 6, Func. Count: 43, Neg. LLF: 128.34530569670935
Iteration: 7, Func. Count: 49, Neg. LLF: 128.33275797999588
Iteration: 8, Func. Count: 55, Neg. LLF: 128.32932994412502
Iteration: 9, Func. Count: 61, Neg. LLF: 128.32827721793043
Iteration: 10, Func. Count: 67, Neg. LLF: 128.328015500055
Iteration: 11, Func. Count: 73, Neg. LLF: 128.3279887241919
Iteration: 12, Func. Count: 79, Neg. LLF: 128.32798637107933
Iteration: 13, Func. Count: 84, Neg. LLF: 128.32798637113981
Optimization terminated successfully (Exit mode 0)
Current function value: 128.32798637107933
Iterations: 13
Function evaluations: 84
Gradient evaluations: 13
Iteration: 1, Func. Count: 8, Neg. LLF: 134.61409162551405
Iteration: 2, Func. Count: 17, Neg. LLF: 129.5310382135932
Iteration: 3, Func. Count: 26, Neg. LLF: 128.4291163202959
Iteration: 4, Func. Count: 33, Neg. LLF: 128.38304551201566
Iteration: 5, Func. Count: 40, Neg. LLF: 128.35945297945437
Iteration: 6, Func. Count: 47, Neg. LLF: 128.35729563668153
Iteration: 7, Func. Count: 54, Neg. LLF: 128.34820263590024
Iteration: 8, Func. Count: 61, Neg. LLF: 128.34194624600408
Iteration: 9, Func. Count: 68, Neg. LLF: 128.3380013242828
Iteration: 10, Func. Count: 75, Neg. LLF: 128.33368205793124
Iteration: 11, Func. Count: 82, Neg. LLF: 128.32918684994422
Iteration: 12, Func. Count: 89, Neg. LLF: 128.32799234173117
Iteration: 13, Func. Count: 96, Neg. LLF: 128.32798613539825
Iteration: 14, Func. Count: 102, Neg. LLF: 128.3279861432585
Optimization terminated successfully (Exit mode 0)
Current function value: 128.32798613539825
Iterations: 14
Function evaluations: 102
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 155.78580833668826
Iteration: 2, Func. Count: 19, Neg. LLF: 128.4340806940055
Iteration: 3, Func. Count: 27, Neg. LLF: 128.4277146346953
Iteration: 4, Func. Count: 35, Neg. LLF: 128.42901391445048
Iteration: 5, Func. Count: 44, Neg. LLF: 128.42490725695345
Iteration: 6, Func. Count: 52, Neg. LLF: 128.42320706214798
Iteration: 7, Func. Count: 60, Neg. LLF: 128.41378376337508
Iteration: 8, Func. Count: 68, Neg. LLF: 128.41134801290616
Iteration: 9, Func. Count: 76, Neg. LLF: 128.4069305895421
Iteration: 10, Func. Count: 84, Neg. LLF: 128.4019251225654
Iteration: 11, Func. Count: 92, Neg. LLF: 128.39323371672015
Iteration: 12, Func. Count: 100, Neg. LLF: 128.35212285303044
Iteration: 13, Func. Count: 108, Neg. LLF: 128.41478252427
Iteration: 14, Func. Count: 117, Neg. LLF: 128.33487983852143
Iteration: 15, Func. Count: 125, Neg. LLF: 128.33212792688246
Iteration: 16, Func. Count: 133, Neg. LLF: 128.36904339464843
Iteration: 17, Func. Count: 142, Neg. LLF: 128.326593287294
Iteration: 18, Func. Count: 150, Neg. LLF: 128.32622282916958
Iteration: 19, Func. Count: 158, Neg. LLF: 128.32556085564445
Iteration: 20, Func. Count: 166, Neg. LLF: 128.32409143242467
Iteration: 21, Func. Count: 174, Neg. LLF: 128.31954954295708
Iteration: 22, Func. Count: 182, Neg. LLF: 128.3154157285608
Iteration: 23, Func. Count: 190, Neg. LLF: 128.31416949153112
Iteration: 24, Func. Count: 198, Neg. LLF: 128.31472449035383
Iteration: 25, Func. Count: 207, Neg. LLF: 128.3137936383734
Iteration: 26, Func. Count: 215, Neg. LLF: 128.31378816340109
Iteration: 27, Func. Count: 222, Neg. LLF: 128.3137881638298
Optimization terminated successfully (Exit mode 0)
Current function value: 128.31378816340109
Iterations: 27
Function evaluations: 222
Gradient evaluations: 27
Iteration: 1, Func. Count: 10, Neg. LLF: 152.19035390543718
Iteration: 2, Func. Count: 21, Neg. LLF: 128.4243908173354
Iteration: 3, Func. Count: 30, Neg. LLF: 128.4148979475086
Iteration: 4, Func. Count: 39, Neg. LLF: 128.4080567765877
Iteration: 5, Func. Count: 48, Neg. LLF: 128.39056411930292
Iteration: 6, Func. Count: 57, Neg. LLF: 128.37957201588873
Iteration: 7, Func. Count: 66, Neg. LLF: 128.3784995111189
Iteration: 8, Func. Count: 75, Neg. LLF: 128.37140765636838
Iteration: 9, Func. Count: 84, Neg. LLF: 128.3619213326514
Iteration: 10, Func. Count: 93, Neg. LLF: 128.3428252412825
Iteration: 11, Func. Count: 102, Neg. LLF: 128.33119387418571
Iteration: 12, Func. Count: 111, Neg. LLF: 128.31859352897152
Iteration: 13, Func. Count: 120, Neg. LLF: 128.3156372458332
Iteration: 14, Func. Count: 129, Neg. LLF: 128.31543337154582
Iteration: 15, Func. Count: 138, Neg. LLF: 128.31547172074903
Iteration: 16, Func. Count: 148, Neg. LLF: 128.3153739704178
Iteration: 17, Func. Count: 156, Neg. LLF: 128.31537397039185
Optimization terminated successfully (Exit mode 0)
Current function value: 128.3153739704178
Iterations: 17
Function evaluations: 156
Gradient evaluations: 17
Iteration: 1, Func. Count: 7, Neg. LLF: 139.44849227598718
Iteration: 2, Func. Count: 14, Neg. LLF: 137.90837113640026
Iteration: 3, Func. Count: 21, Neg. LLF: 128.57959827145942
Iteration: 4, Func. Count: 27, Neg. LLF: 128.2533955354405
Iteration: 5, Func. Count: 33, Neg. LLF: 128.04183932405346
Iteration: 6, Func. Count: 39, Neg. LLF: 128.1178161835879
Iteration: 7, Func. Count: 46, Neg. LLF: 127.97441564130474
Iteration: 8, Func. Count: 52, Neg. LLF: 127.97022097351572
Iteration: 9, Func. Count: 58, Neg. LLF: 127.9694902889574
Iteration: 10, Func. Count: 64, Neg. LLF: 127.96928728885212
Iteration: 11, Func. Count: 70, Neg. LLF: 127.9692265603874
Iteration: 12, Func. Count: 76, Neg. LLF: 127.96920116889594
Iteration: 13, Func. Count: 82, Neg. LLF: 127.96920044632772
Optimization terminated successfully (Exit mode 0)
Current function value: 127.96920044632772
Iterations: 13
Function evaluations: 82
Gradient evaluations: 13
Iteration: 1, Func. Count: 8, Neg. LLF: 138.02093068439035
Iteration: 2, Func. Count: 18, Neg. LLF: 134.53222380053333
Iteration: 3, Func. Count: 27, Neg. LLF: 128.3811964129306
Iteration: 4, Func. Count: 35, Neg. LLF: 128.35904186466647
Iteration: 5, Func. Count: 42, Neg. LLF: 128.3570330474711
Iteration: 6, Func. Count: 49, Neg. LLF: 128.3760797837647
Iteration: 7, Func. Count: 57, Neg. LLF: 128.36790124032748
Iteration: 8, Func. Count: 65, Neg. LLF: 128.24666540346934
Iteration: 9, Func. Count: 72, Neg. LLF: 128.17181810498792
Iteration: 10, Func. Count: 79, Neg. LLF: 128.14836981898196
Iteration: 11, Func. Count: 86, Neg. LLF: 128.14450730848887
Iteration: 12, Func. Count: 93, Neg. LLF: 128.12736124618237
Iteration: 13, Func. Count: 100, Neg. LLF: 128.1077103743068
Iteration: 14, Func. Count: 107, Neg. LLF: 128.0468259005495
Iteration: 15, Func. Count: 114, Neg. LLF: 128.28176691202728
Iteration: 16, Func. Count: 122, Neg. LLF: 128.119568003397
Iteration: 17, Func. Count: 130, Neg. LLF: 127.9871839585591
Iteration: 18, Func. Count: 138, Neg. LLF: 127.9544675183709
Iteration: 19, Func. Count: 145, Neg. LLF: 127.93688075634819
Iteration: 20, Func. Count: 152, Neg. LLF: 127.9363406958749
Iteration: 21, Func. Count: 159, Neg. LLF: 127.93630644229637
Iteration: 22, Func. Count: 166, Neg. LLF: 127.93630583768673
Optimization terminated successfully (Exit mode 0)
Current function value: 127.93630583768673
Iterations: 22
Function evaluations: 166
Gradient evaluations: 22
Iteration: 1, Func. Count: 9, Neg. LLF: 133.61909616884543
Iteration: 2, Func. Count: 19, Neg. LLF: 131.4855181718641
Iteration: 3, Func. Count: 29, Neg. LLF: 128.41703578203948
Iteration: 4, Func. Count: 37, Neg. LLF: 128.3805900825368
Iteration: 5, Func. Count: 45, Neg. LLF: 128.37080990610139
Iteration: 6, Func. Count: 53, Neg. LLF: 128.3671435479959
Iteration: 7, Func. Count: 61, Neg. LLF: 128.34649762022076
Iteration: 8, Func. Count: 69, Neg. LLF: 128.32965439877938
Iteration: 9, Func. Count: 77, Neg. LLF: 128.2643553397716
Iteration: 10, Func. Count: 85, Neg. LLF: 128.22254962791544
Iteration: 11, Func. Count: 93, Neg. LLF: 128.16280965854483
Iteration: 12, Func. Count: 101, Neg. LLF: 128.15902423636882
Iteration: 13, Func. Count: 110, Neg. LLF: 128.11951006751917
Iteration: 14, Func. Count: 118, Neg. LLF: 128.11399194991697
Iteration: 15, Func. Count: 126, Neg. LLF: 128.1119339146884
Iteration: 16, Func. Count: 134, Neg. LLF: 128.11000950431173
Iteration: 17, Func. Count: 142, Neg. LLF: 128.10688396327438
Iteration: 18, Func. Count: 150, Neg. LLF: 128.098171061201
Iteration: 19, Func. Count: 158, Neg. LLF: 128.07502564255194
Iteration: 20, Func. Count: 166, Neg. LLF: 128.03998121462845
Iteration: 21, Func. Count: 174, Neg. LLF: 128.10142392920105
Iteration: 22, Func. Count: 183, Neg. LLF: 127.94954009016695
Iteration: 23, Func. Count: 191, Neg. LLF: 127.93714494070585
Iteration: 24, Func. Count: 199, Neg. LLF: 127.93655107299668
Iteration: 25, Func. Count: 207, Neg. LLF: 127.93636725550112
Iteration: 26, Func. Count: 215, Neg. LLF: 127.93631143576616
Iteration: 27, Func. Count: 223, Neg. LLF: 127.93630627888396
Iteration: 28, Func. Count: 231, Neg. LLF: 127.93630589204258
Optimization terminated successfully (Exit mode 0)
Current function value: 127.93630589204258
Iterations: 28
Function evaluations: 231
Gradient evaluations: 28
Iteration: 1, Func. Count: 10, Neg. LLF: 155.5722065055708
Iteration: 2, Func. Count: 21, Neg. LLF: 128.42814599167346
Iteration: 3, Func. Count: 30, Neg. LLF: 128.42719024748183
Iteration: 4, Func. Count: 39, Neg. LLF: 128.68027943311492
Iteration: 5, Func. Count: 50, Neg. LLF: 128.42403787766165
Iteration: 6, Func. Count: 59, Neg. LLF: 128.42111771212302
Iteration: 7, Func. Count: 68, Neg. LLF: 128.41509080030679
Iteration: 8, Func. Count: 77, Neg. LLF: 128.41205320204205
Iteration: 9, Func. Count: 86, Neg. LLF: 128.40534608575726
Iteration: 10, Func. Count: 95, Neg. LLF: 128.40345015888678
Iteration: 11, Func. Count: 104, Neg. LLF: 128.39330700155097
Iteration: 12, Func. Count: 113, Neg. LLF: 128.33810561870638
Iteration: 13, Func. Count: 122, Neg. LLF: 128.73527070890984
Iteration: 14, Func. Count: 132, Neg. LLF: 128.32777620165044
Iteration: 15, Func. Count: 141, Neg. LLF: 128.326207715841
Iteration: 16, Func. Count: 150, Neg. LLF: 128.33044356726424
Iteration: 17, Func. Count: 160, Neg. LLF: 128.37376849520044
Iteration: 18, Func. Count: 170, Neg. LLF: 128.31863371993515
Iteration: 19, Func. Count: 179, Neg. LLF: 128.3185743171166
Iteration: 20, Func. Count: 188, Neg. LLF: 128.31856067322775
Iteration: 21, Func. Count: 197, Neg. LLF: 128.31847639254883
Iteration: 22, Func. Count: 206, Neg. LLF: 128.31781574502338
Iteration: 23, Func. Count: 215, Neg. LLF: 128.31537906201294
Iteration: 24, Func. Count: 224, Neg. LLF: 128.31495086240005
Iteration: 25, Func. Count: 233, Neg. LLF: 128.31392877591932
Iteration: 26, Func. Count: 242, Neg. LLF: 128.31381347067088
Iteration: 27, Func. Count: 251, Neg. LLF: 128.31380135867704
Iteration: 28, Func. Count: 260, Neg. LLF: 128.31378883380063
Iteration: 29, Func. Count: 269, Neg. LLF: 128.3137887110049
Optimization terminated successfully (Exit mode 0)
Current function value: 128.31378838806486
Iterations: 29
Function evaluations: 270
Gradient evaluations: 29
Iteration: 1, Func. Count: 11, Neg. LLF: 151.7985604887162
Iteration: 2, Func. Count: 23, Neg. LLF: 128.41653515687273
Iteration: 3, Func. Count: 33, Neg. LLF: 128.4111411953832
Iteration: 4, Func. Count: 43, Neg. LLF: 128.46784580890468
Iteration: 5, Func. Count: 55, Neg. LLF: 128.38738675376308
Iteration: 6, Func. Count: 65, Neg. LLF: 128.38131516171237
Iteration: 7, Func. Count: 75, Neg. LLF: 128.37895011771954
Iteration: 8, Func. Count: 85, Neg. LLF: 128.37771329729264
Iteration: 9, Func. Count: 95, Neg. LLF: 128.37466542598054
Iteration: 10, Func. Count: 105, Neg. LLF: 128.36525116997757
Iteration: 11, Func. Count: 115, Neg. LLF: 128.29513617005026
Iteration: 12, Func. Count: 125, Neg. LLF: 128.27037988919162
Iteration: 13, Func. Count: 135, Neg. LLF: 128.26184445806857
Iteration: 14, Func. Count: 145, Neg. LLF: 153.153792860936
Iteration: 15, Func. Count: 158, Neg. LLF: 128.78343437881244
Iteration: 16, Func. Count: 169, Neg. LLF: 131.3944089269177
Iteration: 17, Func. Count: 181, Neg. LLF: 128.25665721862444
Iteration: 18, Func. Count: 191, Neg. LLF: 128.25657783948634
Iteration: 19, Func. Count: 201, Neg. LLF: 128.25657732752813
Optimization terminated successfully (Exit mode 0)
Current function value: 128.25657732752813
Iterations: 20
Function evaluations: 201
Gradient evaluations: 19
Iteration: 1, Func. Count: 8, Neg. LLF: 135.90398684653928
Iteration: 2, Func. Count: 16, Neg. LLF: 138.5970496467604
Iteration: 3, Func. Count: 24, Neg. LLF: 128.62317634645234
Iteration: 4, Func. Count: 32, Neg. LLF: 128.15964169511705
Iteration: 5, Func. Count: 39, Neg. LLF: 128.61704812833648
Iteration: 6, Func. Count: 47, Neg. LLF: 130.57478802612425
Iteration: 7, Func. Count: 57, Neg. LLF: 128.0314644675079
Iteration: 8, Func. Count: 65, Neg. LLF: 127.91736531807892
Iteration: 9, Func. Count: 72, Neg. LLF: 128.16096458493362
Iteration: 10, Func. Count: 80, Neg. LLF: 127.9082397955644
Iteration: 11, Func. Count: 87, Neg. LLF: 127.90788923061537
Iteration: 12, Func. Count: 94, Neg. LLF: 127.90787920525484
Iteration: 13, Func. Count: 101, Neg. LLF: 127.90787619975681
Iteration: 14, Func. Count: 108, Neg. LLF: 127.90787560354742
Optimization terminated successfully (Exit mode 0)
Current function value: 127.90787560354742
Iterations: 14
Function evaluations: 108
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 138.01444034193702
Iteration: 2, Func. Count: 20, Neg. LLF: 134.52030768468424
Iteration: 3, Func. Count: 30, Neg. LLF: 128.37780109009924
Iteration: 4, Func. Count: 38, Neg. LLF: 128.3590415584306
Iteration: 5, Func. Count: 46, Neg. LLF: 128.36190688663328
Iteration: 6, Func. Count: 55, Neg. LLF: 128.3800038425708
Iteration: 7, Func. Count: 64, Neg. LLF: 128.34964442912232
Iteration: 8, Func. Count: 72, Neg. LLF: 128.2918032576171
Iteration: 9, Func. Count: 80, Neg. LLF: 128.16454404436098
Iteration: 10, Func. Count: 88, Neg. LLF: 128.14823663294757
Iteration: 11, Func. Count: 96, Neg. LLF: 128.14382968672845
Iteration: 12, Func. Count: 104, Neg. LLF: 128.13558747179306
Iteration: 13, Func. Count: 112, Neg. LLF: 128.13150326221893
Iteration: 14, Func. Count: 120, Neg. LLF: 128.11928961290164
Iteration: 15, Func. Count: 128, Neg. LLF: 128.08157430000108
Iteration: 16, Func. Count: 136, Neg. LLF: 128.10245791969865
Iteration: 17, Func. Count: 145, Neg. LLF: 128.2155711505858
Iteration: 18, Func. Count: 154, Neg. LLF: 128.48008424913934
Iteration: 19, Func. Count: 163, Neg. LLF: 127.98385541388652
Iteration: 20, Func. Count: 172, Neg. LLF: 127.920685605393
Iteration: 21, Func. Count: 180, Neg. LLF: 127.91535608152337
Iteration: 22, Func. Count: 188, Neg. LLF: 127.91013233754013
Iteration: 23, Func. Count: 196, Neg. LLF: 127.90920050962292
Iteration: 24, Func. Count: 204, Neg. LLF: 127.90791133431333
Iteration: 25, Func. Count: 212, Neg. LLF: 127.90787650665389
Iteration: 26, Func. Count: 220, Neg. LLF: 127.90787560224399
Optimization terminated successfully (Exit mode 0)
Current function value: 127.90787560224399
Iterations: 26
Function evaluations: 220
Gradient evaluations: 26
Iteration: 1, Func. Count: 10, Neg. LLF: 132.9826953347828
Iteration: 2, Func. Count: 22, Neg. LLF: 130.88443688242936
Iteration: 3, Func. Count: 33, Neg. LLF: 128.41591235760558
Iteration: 4, Func. Count: 42, Neg. LLF: 128.37279964972927
Iteration: 5, Func. Count: 51, Neg. LLF: 128.35947595633945
Iteration: 6, Func. Count: 60, Neg. LLF: 128.37803743195303
Iteration: 7, Func. Count: 70, Neg. LLF: 128.36518075758806
Iteration: 8, Func. Count: 80, Neg. LLF: 128.34874058285686
Iteration: 9, Func. Count: 89, Neg. LLF: 128.32152595150473
Iteration: 10, Func. Count: 98, Neg. LLF: 128.17096208175548
Iteration: 11, Func. Count: 107, Neg. LLF: 128.1534128142372
Iteration: 12, Func. Count: 116, Neg. LLF: 128.1490270400838
Iteration: 13, Func. Count: 125, Neg. LLF: 128.14148632674588
Iteration: 14, Func. Count: 134, Neg. LLF: 128.1332703079661
Iteration: 15, Func. Count: 143, Neg. LLF: 128.10867603004144
Iteration: 16, Func. Count: 152, Neg. LLF: 128.06304012722433
Iteration: 17, Func. Count: 161, Neg. LLF: 128.0373881556277
Iteration: 18, Func. Count: 170, Neg. LLF: 127.99525929055159
Iteration: 19, Func. Count: 179, Neg. LLF: 131.77456117274306
Iteration: 20, Func. Count: 189, Neg. LLF: 128.18393409065342
Iteration: 21, Func. Count: 199, Neg. LLF: 127.93521370495911
Iteration: 22, Func. Count: 208, Neg. LLF: 127.93801539484494
Iteration: 23, Func. Count: 218, Neg. LLF: 127.9266819124944
Iteration: 24, Func. Count: 228, Neg. LLF: 127.92081709056355
Iteration: 25, Func. Count: 237, Neg. LLF: 127.91737832853188
Iteration: 26, Func. Count: 246, Neg. LLF: 127.91609462789482
Iteration: 27, Func. Count: 255, Neg. LLF: 127.91403182266392
Iteration: 28, Func. Count: 264, Neg. LLF: 127.91163900225911
Iteration: 29, Func. Count: 273, Neg. LLF: 127.90851666252523
Iteration: 30, Func. Count: 282, Neg. LLF: 127.90796593433001
Iteration: 31, Func. Count: 291, Neg. LLF: 127.90787964945288
Iteration: 32, Func. Count: 300, Neg. LLF: 127.90787563018169
Iteration: 33, Func. Count: 308, Neg. LLF: 127.9078757112133
Optimization terminated successfully (Exit mode 0)
Current function value: 127.90787563018169
Iterations: 33
Function evaluations: 308
Gradient evaluations: 33
Iteration: 1, Func. Count: 11, Neg. LLF: 151.99559400286364
Iteration: 2, Func. Count: 23, Neg. LLF: 128.42608603271194
Iteration: 3, Func. Count: 33, Neg. LLF: 128.42617391489563
Iteration: 4, Func. Count: 44, Neg. LLF: 128.4738616283168
Iteration: 5, Func. Count: 56, Neg. LLF: 128.42271965970625
Iteration: 6, Func. Count: 66, Neg. LLF: 128.41462241321733
Iteration: 7, Func. Count: 76, Neg. LLF: 128.41321794405638
Iteration: 8, Func. Count: 86, Neg. LLF: 128.40354247631564
Iteration: 9, Func. Count: 96, Neg. LLF: 128.3995410267553
Iteration: 10, Func. Count: 106, Neg. LLF: 128.38326703317446
Iteration: 11, Func. Count: 116, Neg. LLF: 128.39189734787112
Iteration: 12, Func. Count: 127, Neg. LLF: 128.41401647887085
Iteration: 13, Func. Count: 138, Neg. LLF: 128.36295540622712
Iteration: 14, Func. Count: 149, Neg. LLF: 128.3434926446257
Iteration: 15, Func. Count: 159, Neg. LLF: 128.3795858676115
Iteration: 16, Func. Count: 170, Neg. LLF: 128.32707641936068
Iteration: 17, Func. Count: 180, Neg. LLF: 128.32540892356016
Iteration: 18, Func. Count: 190, Neg. LLF: 128.3237943621412
Iteration: 19, Func. Count: 200, Neg. LLF: 128.32023531722322
Iteration: 20, Func. Count: 210, Neg. LLF: 128.3160797852368
Iteration: 21, Func. Count: 220, Neg. LLF: 128.315907578938
Iteration: 22, Func. Count: 230, Neg. LLF: 128.31442429613944
Iteration: 23, Func. Count: 240, Neg. LLF: 128.3147501761442
Iteration: 24, Func. Count: 251, Neg. LLF: 128.31379788559235
Iteration: 25, Func. Count: 261, Neg. LLF: 128.3137910219918
Iteration: 26, Func. Count: 271, Neg. LLF: 129.67735727555288
Optimization terminated successfully (Exit mode 0)
Current function value: 128.31379094164072
Iterations: 27
Function evaluations: 275
Gradient evaluations: 26
Iteration: 1, Func. Count: 12, Neg. LLF: 149.80774826101512
Iteration: 2, Func. Count: 25, Neg. LLF: 128.4129027946002
Iteration: 3, Func. Count: 36, Neg. LLF: 128.4136862851727
Iteration: 4, Func. Count: 48, Neg. LLF: 128.39188969145
Iteration: 5, Func. Count: 59, Neg. LLF: 128.61309500094066
Iteration: 6, Func. Count: 71, Neg. LLF: 128.38319480194733
Iteration: 7, Func. Count: 82, Neg. LLF: 128.38214282747046
Iteration: 8, Func. Count: 93, Neg. LLF: 128.3806802807464
Iteration: 9, Func. Count: 104, Neg. LLF: 128.37842363524513
Iteration: 10, Func. Count: 115, Neg. LLF: 128.37218718464334
Iteration: 11, Func. Count: 126, Neg. LLF: 128.35754477037477
Iteration: 12, Func. Count: 137, Neg. LLF: 128.34424454422822
Iteration: 13, Func. Count: 148, Neg. LLF: 128.2739999711675
Iteration: 14, Func. Count: 159, Neg. LLF: 128.34647626776257
Iteration: 15, Func. Count: 171, Neg. LLF: 128.255610380529
Iteration: 16, Func. Count: 182, Neg. LLF: 563.738359645199
Iteration: 17, Func. Count: 196, Neg. LLF: 128.8703091011794
Iteration: 18, Func. Count: 209, Neg. LLF: 128.2610075129454
Iteration: 19, Func. Count: 221, Neg. LLF: 128.2566003255314
Iteration: 20, Func. Count: 232, Neg. LLF: 128.25657897153266
Iteration: 21, Func. Count: 243, Neg. LLF: 128.25657734162687
Iteration: 22, Func. Count: 253, Neg. LLF: 128.25657733514234
Optimization terminated successfully (Exit mode 0)
Current function value: 128.25657734162687
Iterations: 23
Function evaluations: 253
Gradient evaluations: 22
Iteration: 1, Func. Count: 5, Neg. LLF: 135.6733731400952
Iteration: 2, Func. Count: 10, Neg. LLF: 132.38750735986548
Iteration: 3, Func. Count: 15, Neg. LLF: 128.55327997050415
Iteration: 4, Func. Count: 19, Neg. LLF: 128.48671319267305
Iteration: 5, Func. Count: 23, Neg. LLF: 128.4542804250419
Iteration: 6, Func. Count: 27, Neg. LLF: 128.4522163817261
Iteration: 7, Func. Count: 31, Neg. LLF: 128.4521124997221
Iteration: 8, Func. Count: 35, Neg. LLF: 128.45211023067844
Iteration: 9, Func. Count: 38, Neg. LLF: 128.4521103405937
Optimization terminated successfully (Exit mode 0)
Current function value: 128.45211023067844
Iterations: 9
Function evaluations: 38
Gradient evaluations: 9
Iteration: 1, Func. Count: 6, Neg. LLF: 158.42037852746333
Iteration: 2, Func. Count: 13, Neg. LLF: 128.42393540884225
Iteration: 3, Func. Count: 18, Neg. LLF: 128.41851012355616
Iteration: 4, Func. Count: 23, Neg. LLF: 128.4164096777981
Iteration: 5, Func. Count: 28, Neg. LLF: 128.4157383348845
Iteration: 6, Func. Count: 33, Neg. LLF: 128.41047575729993
Iteration: 7, Func. Count: 38, Neg. LLF: 128.32697417142063
Iteration: 8, Func. Count: 43, Neg. LLF: 128.66157980692998
Iteration: 9, Func. Count: 49, Neg. LLF: 128.43805515988493
Iteration: 10, Func. Count: 55, Neg. LLF: 129.3090735149882
Iteration: 11, Func. Count: 61, Neg. LLF: 128.31383232362913
Iteration: 12, Func. Count: 66, Neg. LLF: 128.31378934618013
Iteration: 13, Func. Count: 71, Neg. LLF: 128.31378816244455
Iteration: 14, Func. Count: 75, Neg. LLF: 128.31378816241875
Optimization terminated successfully (Exit mode 0)
Current function value: 128.31378816244455
Iterations: 14
Function evaluations: 75
Gradient evaluations: 14
Iteration: 1, Func. Count: 7, Neg. LLF: 152.75057533848053
Iteration: 2, Func. Count: 15, Neg. LLF: 128.4081882238336
Iteration: 3, Func. Count: 21, Neg. LLF: 128.40166076113772
Iteration: 4, Func. Count: 27, Neg. LLF: 128.39380531865325
Iteration: 5, Func. Count: 33, Neg. LLF: 128.3740859393351
Iteration: 6, Func. Count: 39, Neg. LLF: 128.35579255889112
Iteration: 7, Func. Count: 45, Neg. LLF: 128.34679938579254
Iteration: 8, Func. Count: 51, Neg. LLF: 128.32502512576272
Iteration: 9, Func. Count: 57, Neg. LLF: 128.32024259988043
Iteration: 10, Func. Count: 63, Neg. LLF: 128.32317798753002
Iteration: 11, Func. Count: 70, Neg. LLF: 128.31569901783308
Iteration: 12, Func. Count: 77, Neg. LLF: 128.31462672071586
Iteration: 13, Func. Count: 83, Neg. LLF: 128.3146242275036
Iteration: 14, Func. Count: 88, Neg. LLF: 128.31462422745847
Optimization terminated successfully (Exit mode 0)
Current function value: 128.3146242275036
Iterations: 14
Function evaluations: 88
Gradient evaluations: 14
Iteration: 1, Func. Count: 8, Neg. LLF: 147.41335366724272
Iteration: 2, Func. Count: 17, Neg. LLF: 128.39052381673682
Iteration: 3, Func. Count: 24, Neg. LLF: 128.37409663007608
Iteration: 4, Func. Count: 31, Neg. LLF: 128.36661243463513
Iteration: 5, Func. Count: 38, Neg. LLF: 128.35517093030617
Iteration: 6, Func. Count: 45, Neg. LLF: 128.34855120400414
Iteration: 7, Func. Count: 52, Neg. LLF: 128.33542343670263
Iteration: 8, Func. Count: 59, Neg. LLF: 128.32806187315845
Iteration: 9, Func. Count: 66, Neg. LLF: 128.32654615669082
Iteration: 10, Func. Count: 73, Neg. LLF: 128.3257569339758
Iteration: 11, Func. Count: 80, Neg. LLF: 128.3225353877723
Iteration: 12, Func. Count: 87, Neg. LLF: 128.31901540819862
Iteration: 13, Func. Count: 94, Neg. LLF: 128.31851626446047
Iteration: 14, Func. Count: 101, Neg. LLF: 128.3185026522414
Iteration: 15, Func. Count: 108, Neg. LLF: 128.31849198290288
Iteration: 16, Func. Count: 115, Neg. LLF: 128.3184644378618
Iteration: 17, Func. Count: 122, Neg. LLF: 128.31837239338384
Iteration: 18, Func. Count: 129, Neg. LLF: 128.31808600276764
Iteration: 19, Func. Count: 136, Neg. LLF: 128.31793891949204
Iteration: 20, Func. Count: 143, Neg. LLF: 128.31657102717529
Iteration: 21, Func. Count: 150, Neg. LLF: 128.31391725042297
Iteration: 22, Func. Count: 157, Neg. LLF: 128.31379963350088
Iteration: 23, Func. Count: 164, Neg. LLF: 128.31379576514573
Iteration: 24, Func. Count: 171, Neg. LLF: 128.31378825333192
Iteration: 25, Func. Count: 177, Neg. LLF: 128.31378825381518
Optimization terminated successfully (Exit mode 0)
Current function value: 128.31378825333192
Iterations: 25
Function evaluations: 177
Gradient evaluations: 25
Iteration: 1, Func. Count: 9, Neg. LLF: 145.29271348729173
Iteration: 2, Func. Count: 19, Neg. LLF: 128.40879605508115
Iteration: 3, Func. Count: 27, Neg. LLF: 128.37281466762386
Iteration: 4, Func. Count: 35, Neg. LLF: 128.3578162669845
Iteration: 5, Func. Count: 43, Neg. LLF: 128.34586849269039
Iteration: 6, Func. Count: 51, Neg. LLF: 128.3342282674409
Iteration: 7, Func. Count: 59, Neg. LLF: 128.32319469041985
Iteration: 8, Func. Count: 67, Neg. LLF: 128.32294941363887
Iteration: 9, Func. Count: 75, Neg. LLF: 128.32270371139586
Iteration: 10, Func. Count: 83, Neg. LLF: 128.32257504994874
Iteration: 11, Func. Count: 91, Neg. LLF: 128.32249827950884
Iteration: 12, Func. Count: 99, Neg. LLF: 128.32249033111518
Iteration: 13, Func. Count: 106, Neg. LLF: 128.32249033077517
Optimization terminated successfully (Exit mode 0)
Current function value: 128.32249033111518
Iterations: 13
Function evaluations: 106
Gradient evaluations: 13
Iteration: 1, Func. Count: 6, Neg. LLF: 132.1431909385754
Iteration: 2, Func. Count: 11, Neg. LLF: 136.96861556035276
Iteration: 3, Func. Count: 17, Neg. LLF: 128.5456907656687
Iteration: 4, Func. Count: 22, Neg. LLF: 128.4664095582731
Iteration: 5, Func. Count: 27, Neg. LLF: 128.4545972824223
Iteration: 6, Func. Count: 32, Neg. LLF: 128.45211308312005
Iteration: 7, Func. Count: 37, Neg. LLF: 128.4521102386149
Iteration: 8, Func. Count: 41, Neg. LLF: 128.4521102937431
Optimization terminated successfully (Exit mode 0)
Current function value: 128.4521102386149
Iterations: 8
Function evaluations: 41
Gradient evaluations: 8
Iteration: 1, Func. Count: 7, Neg. LLF: 131.22148173055044
Iteration: 2, Func. Count: 15, Neg. LLF: 156.03294446403441
Iteration: 3, Func. Count: 23, Neg. LLF: 128.42257398256578
Iteration: 4, Func. Count: 30, Neg. LLF: 128.2376463356796
Iteration: 5, Func. Count: 36, Neg. LLF: 131.08031922587776
Iteration: 6, Func. Count: 43, Neg. LLF: 128.75345546018698
Iteration: 7, Func. Count: 50, Neg. LLF: 128.40025191119543
Iteration: 8, Func. Count: 57, Neg. LLF: 128.02913236132716
Iteration: 9, Func. Count: 64, Neg. LLF: 128.01419651899803
Iteration: 10, Func. Count: 71, Neg. LLF: 128.00909403001637
Iteration: 11, Func. Count: 77, Neg. LLF: 128.0089187314677
Iteration: 12, Func. Count: 83, Neg. LLF: 128.00888183783823
Iteration: 13, Func. Count: 89, Neg. LLF: 128.00887839467174
Iteration: 14, Func. Count: 94, Neg. LLF: 128.00887839459938
Optimization terminated successfully (Exit mode 0)
Current function value: 128.00887839467174
Iterations: 14
Function evaluations: 94
Gradient evaluations: 14
Iteration: 1, Func. Count: 8, Neg. LLF: 161.08587109092923
Iteration: 2, Func. Count: 17, Neg. LLF: 128.4442711153672
Iteration: 3, Func. Count: 24, Neg. LLF: 128.4405630691382
Iteration: 4, Func. Count: 32, Neg. LLF: 128.4324975247336
Iteration: 5, Func. Count: 39, Neg. LLF: 128.43078780155895
Iteration: 6, Func. Count: 46, Neg. LLF: 128.4246652662114
Iteration: 7, Func. Count: 53, Neg. LLF: 128.42244396175147
Iteration: 8, Func. Count: 60, Neg. LLF: 128.41874829417793
Iteration: 9, Func. Count: 67, Neg. LLF: 128.418230917814
Iteration: 10, Func. Count: 74, Neg. LLF: 128.4154191119659
Iteration: 11, Func. Count: 81, Neg. LLF: 128.3951928472441
Iteration: 12, Func. Count: 88, Neg. LLF: 128.38981684381505
Iteration: 13, Func. Count: 96, Neg. LLF: 128.35289978587562
Iteration: 14, Func. Count: 104, Neg. LLF: 128.4376234112279
Iteration: 15, Func. Count: 112, Neg. LLF: 128.31362270264816
Iteration: 16, Func. Count: 119, Neg. LLF: 128.3085814574974
Iteration: 17, Func. Count: 126, Neg. LLF: 128.3012789857425
Iteration: 18, Func. Count: 133, Neg. LLF: 128.26010771439508
Iteration: 19, Func. Count: 140, Neg. LLF: 128.2230096839073
Iteration: 20, Func. Count: 147, Neg. LLF: 128.4478464362215
Iteration: 21, Func. Count: 156, Neg. LLF: 128.1756282380801
Iteration: 22, Func. Count: 163, Neg. LLF: 128.1690884289515
Iteration: 23, Func. Count: 170, Neg. LLF: 128.16777481225128
Iteration: 24, Func. Count: 177, Neg. LLF: 128.16754347220314
Iteration: 25, Func. Count: 184, Neg. LLF: 128.1675212310742
Iteration: 26, Func. Count: 191, Neg. LLF: 128.16751200563925
Iteration: 27, Func. Count: 197, Neg. LLF: 128.16751200565366
Optimization terminated successfully (Exit mode 0)
Current function value: 128.16751200563925
Iterations: 28
Function evaluations: 197
Gradient evaluations: 27
Iteration: 1, Func. Count: 9, Neg. LLF: 139.2607654945765
Iteration: 2, Func. Count: 19, Neg. LLF: 133.35199056214515
Iteration: 3, Func. Count: 28, Neg. LLF: 127.16458753756658
Iteration: 4, Func. Count: 36, Neg. LLF: 127.60179054211372
Iteration: 5, Func. Count: 45, Neg. LLF: 126.84815656449858
Iteration: 6, Func. Count: 53, Neg. LLF: 126.81323277129253
Iteration: 7, Func. Count: 62, Neg. LLF: 126.66601623192058
Iteration: 8, Func. Count: 70, Neg. LLF: 126.52256364883465
Iteration: 9, Func. Count: 78, Neg. LLF: 126.48092229344189
Iteration: 10, Func. Count: 86, Neg. LLF: 126.47171593015689
Iteration: 11, Func. Count: 94, Neg. LLF: 126.4689594893906
Iteration: 12, Func. Count: 102, Neg. LLF: 126.46790978225357
Iteration: 13, Func. Count: 110, Neg. LLF: 126.467582708116
Iteration: 14, Func. Count: 118, Neg. LLF: 126.46753566271227
Iteration: 15, Func. Count: 125, Neg. LLF: 126.46753566278412
Optimization terminated successfully (Exit mode 0)
Current function value: 126.46753566271227
Iterations: 15
Function evaluations: 125
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 153.33366999939747
Iteration: 2, Func. Count: 21, Neg. LLF: 128.3322919775728
Iteration: 3, Func. Count: 30, Neg. LLF: 127.94934108637499
Iteration: 4, Func. Count: 39, Neg. LLF: 127.62532715037375
Iteration: 5, Func. Count: 48, Neg. LLF: 126.97118031936299
Iteration: 6, Func. Count: 57, Neg. LLF: 126.66792761829576
Iteration: 7, Func. Count: 66, Neg. LLF: 126.59717038566424
Iteration: 8, Func. Count: 75, Neg. LLF: 126.54686521522612
Iteration: 9, Func. Count: 84, Neg. LLF: 126.50615800338485
Iteration: 10, Func. Count: 93, Neg. LLF: 126.4816912403802
Iteration: 11, Func. Count: 102, Neg. LLF: 126.470852524546
Iteration: 12, Func. Count: 111, Neg. LLF: 126.46782466702568
Iteration: 13, Func. Count: 120, Neg. LLF: 126.46755393294004
Iteration: 14, Func. Count: 129, Neg. LLF: 126.4675361491082
Iteration: 15, Func. Count: 138, Neg. LLF: 126.4675353889796
Optimization terminated successfully (Exit mode 0)
Current function value: 126.4675353889796
Iterations: 15
Function evaluations: 138
Gradient evaluations: 15
Iteration: 1, Func. Count: 7, Neg. LLF: 144.11701964994816
Iteration: 2, Func. Count: 14, Neg. LLF: 129.66017561663548
Iteration: 3, Func. Count: 20, Neg. LLF: 128.4940257951792
Iteration: 4, Func. Count: 26, Neg. LLF: 133.4624396727183
Iteration: 5, Func. Count: 34, Neg. LLF: 128.40491888703698
Iteration: 6, Func. Count: 40, Neg. LLF: 128.39052952607992
Iteration: 7, Func. Count: 46, Neg. LLF: 128.3891100303632
Iteration: 8, Func. Count: 52, Neg. LLF: 128.3884299873395
Iteration: 9, Func. Count: 58, Neg. LLF: 128.3884179935954
Iteration: 10, Func. Count: 64, Neg. LLF: 128.38841615461465
Iteration: 11, Func. Count: 69, Neg. LLF: 128.3884161545639
Optimization terminated successfully (Exit mode 0)
Current function value: 128.38841615461465
Iterations: 11
Function evaluations: 69
Gradient evaluations: 11
Iteration: 1, Func. Count: 8, Neg. LLF: 137.94516132704405
Iteration: 2, Func. Count: 18, Neg. LLF: 132.89882168849292
Iteration: 3, Func. Count: 27, Neg. LLF: 128.42545716725004
Iteration: 4, Func. Count: 34, Neg. LLF: 128.361235219538
Iteration: 5, Func. Count: 41, Neg. LLF: 128.35928350180566
Iteration: 6, Func. Count: 48, Neg. LLF: 128.35052526166692
Iteration: 7, Func. Count: 55, Neg. LLF: 128.3388110719573
Iteration: 8, Func. Count: 62, Neg. LLF: 128.33060750274387
Iteration: 9, Func. Count: 69, Neg. LLF: 128.32896952860676
Iteration: 10, Func. Count: 76, Neg. LLF: 128.32808688077975
Iteration: 11, Func. Count: 83, Neg. LLF: 128.3280030013842
Iteration: 12, Func. Count: 90, Neg. LLF: 128.3279872295563
Iteration: 13, Func. Count: 97, Neg. LLF: 128.32798616045744
Iteration: 14, Func. Count: 103, Neg. LLF: 128.32798616047975
Optimization terminated successfully (Exit mode 0)
Current function value: 128.32798616045744
Iterations: 14
Function evaluations: 103
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 136.75018823461983
Iteration: 2, Func. Count: 19, Neg. LLF: 128.48582018658277
Iteration: 3, Func. Count: 28, Neg. LLF: 128.58632656119184
Iteration: 4, Func. Count: 37, Neg. LLF: 128.4096324324743
Iteration: 5, Func. Count: 45, Neg. LLF: 128.3621682845301
Iteration: 6, Func. Count: 53, Neg. LLF: 128.3579598349514
Iteration: 7, Func. Count: 61, Neg. LLF: 128.35542202367043
Iteration: 8, Func. Count: 69, Neg. LLF: 128.34777187364844
Iteration: 9, Func. Count: 77, Neg. LLF: 128.33904172837558
Iteration: 10, Func. Count: 85, Neg. LLF: 128.33435034261416
Iteration: 11, Func. Count: 93, Neg. LLF: 128.3300870835717
Iteration: 12, Func. Count: 101, Neg. LLF: 128.32803579415082
Iteration: 13, Func. Count: 109, Neg. LLF: 128.3279888170173
Iteration: 14, Func. Count: 117, Neg. LLF: 128.32798656351045
Iteration: 15, Func. Count: 124, Neg. LLF: 128.32798657144184
Optimization terminated successfully (Exit mode 0)
Current function value: 128.32798656351045
Iterations: 15
Function evaluations: 124
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 138.71778129111811
Iteration: 2, Func. Count: 21, Neg. LLF: 133.91039813399908
Iteration: 3, Func. Count: 31, Neg. LLF: 127.17528227999212
Iteration: 4, Func. Count: 40, Neg. LLF: 143.57283433144457
Iteration: 5, Func. Count: 51, Neg. LLF: 128.30648841989654
Iteration: 6, Func. Count: 61, Neg. LLF: 126.69622452149254
Iteration: 7, Func. Count: 70, Neg. LLF: 126.54004590545284
Iteration: 8, Func. Count: 79, Neg. LLF: 126.40966664434039
Iteration: 9, Func. Count: 88, Neg. LLF: 130.2095280826843
Iteration: 10, Func. Count: 99, Neg. LLF: 126.37665244467293
Iteration: 11, Func. Count: 108, Neg. LLF: 126.36963089099545
Iteration: 12, Func. Count: 117, Neg. LLF: 126.3533816609463
Iteration: 13, Func. Count: 126, Neg. LLF: 126.3472603366388
Iteration: 14, Func. Count: 135, Neg. LLF: 126.34591395402342
Iteration: 15, Func. Count: 144, Neg. LLF: 126.34584334232926
Iteration: 16, Func. Count: 153, Neg. LLF: 126.3458319297785
Iteration: 17, Func. Count: 162, Neg. LLF: 126.345831337857
Optimization terminated successfully (Exit mode 0)
Current function value: 126.345831337857
Iterations: 17
Function evaluations: 162
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 152.52902497650504
Iteration: 2, Func. Count: 23, Neg. LLF: 128.3254676536139
Iteration: 3, Func. Count: 33, Neg. LLF: 128.15150836416663
Iteration: 4, Func. Count: 43, Neg. LLF: 127.5295765083481
Iteration: 5, Func. Count: 53, Neg. LLF: 144.23669248856254
Iteration: 6, Func. Count: 65, Neg. LLF: 127.67743176339525
Iteration: 7, Func. Count: 76, Neg. LLF: 126.48851450685653
Iteration: 8, Func. Count: 86, Neg. LLF: 126.8827472318403
Iteration: 9, Func. Count: 97, Neg. LLF: 126.77666877584477
Iteration: 10, Func. Count: 108, Neg. LLF: 126.348623418736
Iteration: 11, Func. Count: 118, Neg. LLF: 126.34882085886703
Iteration: 12, Func. Count: 129, Neg. LLF: 126.3471798420964
Iteration: 13, Func. Count: 139, Neg. LLF: 126.34665225673933
Iteration: 14, Func. Count: 149, Neg. LLF: 126.34595739965461
Iteration: 15, Func. Count: 159, Neg. LLF: 126.34586603097021
Iteration: 16, Func. Count: 169, Neg. LLF: 126.34583156193476
Iteration: 17, Func. Count: 178, Neg. LLF: 126.34583160663416
Optimization terminated successfully (Exit mode 0)
Current function value: 126.34583156193476
Iterations: 17
Function evaluations: 178
Gradient evaluations: 17
Iteration: 1, Func. Count: 8, Neg. LLF: 140.45834340248544
Iteration: 2, Func. Count: 16, Neg. LLF: 136.09642704102
Iteration: 3, Func. Count: 24, Neg. LLF: 128.48719372504482
Iteration: 4, Func. Count: 31, Neg. LLF: 128.3224127469869
Iteration: 5, Func. Count: 39, Neg. LLF: 128.03390136205005
Iteration: 6, Func. Count: 46, Neg. LLF: 128.66118936979913
Iteration: 7, Func. Count: 55, Neg. LLF: 128.1453948417663
Iteration: 8, Func. Count: 63, Neg. LLF: 127.96955588215852
Iteration: 9, Func. Count: 70, Neg. LLF: 127.96935883352917
Iteration: 10, Func. Count: 77, Neg. LLF: 127.96920420121344
Iteration: 11, Func. Count: 84, Neg. LLF: 127.96920192605923
Iteration: 12, Func. Count: 91, Neg. LLF: 127.96920030300821
Iteration: 13, Func. Count: 97, Neg. LLF: 127.96920030300934
Optimization terminated successfully (Exit mode 0)
Current function value: 127.96920030300821
Iterations: 13
Function evaluations: 97
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 135.67130333735017
Iteration: 2, Func. Count: 20, Neg. LLF: 134.3385313128046
Iteration: 3, Func. Count: 30, Neg. LLF: 128.39711636657796
Iteration: 4, Func. Count: 38, Neg. LLF: 128.36023482867918
Iteration: 5, Func. Count: 46, Neg. LLF: 128.35835945512525
Iteration: 6, Func. Count: 54, Neg. LLF: 128.3736319243583
Iteration: 7, Func. Count: 63, Neg. LLF: 128.33143903281066
Iteration: 8, Func. Count: 71, Neg. LLF: 128.27007262673092
Iteration: 9, Func. Count: 79, Neg. LLF: 128.21790574052704
Iteration: 10, Func. Count: 87, Neg. LLF: 128.18178161735278
Iteration: 11, Func. Count: 95, Neg. LLF: 128.15954725738348
Iteration: 12, Func. Count: 103, Neg. LLF: 128.14606064039606
Iteration: 13, Func. Count: 111, Neg. LLF: 128.13916134095138
Iteration: 14, Func. Count: 119, Neg. LLF: 128.12935516610779
Iteration: 15, Func. Count: 127, Neg. LLF: 128.10447501163642
Iteration: 16, Func. Count: 135, Neg. LLF: 128.0411652526658
Iteration: 17, Func. Count: 143, Neg. LLF: 128.0195246848061
Iteration: 18, Func. Count: 151, Neg. LLF: 128.02345939951942
Iteration: 19, Func. Count: 160, Neg. LLF: 127.99697816907015
Iteration: 20, Func. Count: 169, Neg. LLF: 127.9420496196673
Iteration: 21, Func. Count: 177, Neg. LLF: 127.93810421271084
Iteration: 22, Func. Count: 185, Neg. LLF: 127.93650837163067
Iteration: 23, Func. Count: 193, Neg. LLF: 127.93632048010342
Iteration: 24, Func. Count: 201, Neg. LLF: 127.93630762408948
Iteration: 25, Func. Count: 209, Neg. LLF: 127.93630632622592
Iteration: 26, Func. Count: 216, Neg. LLF: 127.93630632620388
Optimization terminated successfully (Exit mode 0)
Current function value: 127.93630632622592
Iterations: 26
Function evaluations: 216
Gradient evaluations: 26
Iteration: 1, Func. Count: 10, Neg. LLF: 135.00548376762845
Iteration: 2, Func. Count: 21, Neg. LLF: 128.48867265680914
Iteration: 3, Func. Count: 31, Neg. LLF: 128.5314037081499
Iteration: 4, Func. Count: 41, Neg. LLF: 128.41056538206212
Iteration: 5, Func. Count: 50, Neg. LLF: 128.386682930125
Iteration: 6, Func. Count: 59, Neg. LLF: 128.42486551658527
Iteration: 7, Func. Count: 69, Neg. LLF: 128.35688005167043
Iteration: 8, Func. Count: 78, Neg. LLF: 128.35253388674843
Iteration: 9, Func. Count: 87, Neg. LLF: 128.32685492277005
Iteration: 10, Func. Count: 96, Neg. LLF: 128.25039880804738
Iteration: 11, Func. Count: 105, Neg. LLF: 128.19953220079108
Iteration: 12, Func. Count: 114, Neg. LLF: 128.13461004676037
Iteration: 13, Func. Count: 123, Neg. LLF: 128.12262803963625
Iteration: 14, Func. Count: 132, Neg. LLF: 128.11926271154542
Iteration: 15, Func. Count: 141, Neg. LLF: 128.11669474317574
Iteration: 16, Func. Count: 150, Neg. LLF: 128.11281612587499
Iteration: 17, Func. Count: 159, Neg. LLF: 128.10428084865362
Iteration: 18, Func. Count: 168, Neg. LLF: 128.08981911306185
Iteration: 19, Func. Count: 177, Neg. LLF: 128.0661654473705
Iteration: 20, Func. Count: 186, Neg. LLF: 128.04356556693827
Iteration: 21, Func. Count: 195, Neg. LLF: 128.0815373419487
Iteration: 22, Func. Count: 205, Neg. LLF: 127.97429403705743
Iteration: 23, Func. Count: 214, Neg. LLF: 127.9485928441634
Iteration: 24, Func. Count: 223, Neg. LLF: 127.93677179151337
Iteration: 25, Func. Count: 232, Neg. LLF: 127.93632343050456
Iteration: 26, Func. Count: 241, Neg. LLF: 127.93630996607843
Iteration: 27, Func. Count: 250, Neg. LLF: 127.93630606850596
Iteration: 28, Func. Count: 258, Neg. LLF: 127.93630614546751
Optimization terminated successfully (Exit mode 0)
Current function value: 127.93630606850596
Iterations: 28
Function evaluations: 258
Gradient evaluations: 28
Iteration: 1, Func. Count: 11, Neg. LLF: 138.5808333695381
Iteration: 2, Func. Count: 23, Neg. LLF: 133.43832901460064
Iteration: 3, Func. Count: 34, Neg. LLF: 127.1518305762289
Iteration: 4, Func. Count: 44, Neg. LLF: 142.8209989633389
Iteration: 5, Func. Count: 56, Neg. LLF: 128.98292327975184
Iteration: 6, Func. Count: 68, Neg. LLF: 130.884230585728
Iteration: 7, Func. Count: 79, Neg. LLF: 126.52498250862492
Iteration: 8, Func. Count: 89, Neg. LLF: 126.6147870212502
Iteration: 9, Func. Count: 100, Neg. LLF: 126.40636436302461
Iteration: 10, Func. Count: 110, Neg. LLF: 126.41548707834119
Iteration: 11, Func. Count: 121, Neg. LLF: 126.40017292152696
Iteration: 12, Func. Count: 132, Neg. LLF: 126.35678084789208
Iteration: 13, Func. Count: 142, Neg. LLF: 126.35360965230112
Iteration: 14, Func. Count: 152, Neg. LLF: 126.34731659558727
Iteration: 15, Func. Count: 162, Neg. LLF: 126.34592117854372
Iteration: 16, Func. Count: 172, Neg. LLF: 126.34548667639315
Iteration: 17, Func. Count: 182, Neg. LLF: 126.34547077584341
Iteration: 18, Func. Count: 192, Neg. LLF: 126.34546912298323
Iteration: 19, Func. Count: 201, Neg. LLF: 126.3454691228895
Optimization terminated successfully (Exit mode 0)
Current function value: 126.34546912298323
Iterations: 19
Function evaluations: 201
Gradient evaluations: 19
Iteration: 1, Func. Count: 12, Neg. LLF: 151.8562515707367
Iteration: 2, Func. Count: 25, Neg. LLF: 128.27255909781655
Iteration: 3, Func. Count: 36, Neg. LLF: 127.75329430940582
Iteration: 4, Func. Count: 47, Neg. LLF: 138.69348940391447
Iteration: 5, Func. Count: 59, Neg. LLF: 130.3660140063163
Iteration: 6, Func. Count: 71, Neg. LLF: 126.7837328380058
Iteration: 7, Func. Count: 82, Neg. LLF: 126.49314834387381
Iteration: 8, Func. Count: 93, Neg. LLF: 127.77314585269258
Iteration: 9, Func. Count: 105, Neg. LLF: 128.28481820815983
Iteration: 10, Func. Count: 117, Neg. LLF: 126.48520025774224
Iteration: 11, Func. Count: 129, Neg. LLF: 126.35156288456932
Iteration: 12, Func. Count: 140, Neg. LLF: 126.37597696528675
Iteration: 13, Func. Count: 152, Neg. LLF: 126.40349267711557
Iteration: 14, Func. Count: 164, Neg. LLF: 126.34674256132676
Iteration: 15, Func. Count: 175, Neg. LLF: 126.34606296182933
Iteration: 16, Func. Count: 186, Neg. LLF: 126.34579416661495
Iteration: 17, Func. Count: 197, Neg. LLF: 126.34552718319831
Iteration: 18, Func. Count: 208, Neg. LLF: 126.34547461965927
Iteration: 19, Func. Count: 219, Neg. LLF: 126.34546907499077
Iteration: 20, Func. Count: 229, Neg. LLF: 126.34546911932824
Optimization terminated successfully (Exit mode 0)
Current function value: 126.34546907499077
Iterations: 20
Function evaluations: 229
Gradient evaluations: 20
Iteration: 1, Func. Count: 9, Neg. LLF: 137.226114574624
Iteration: 2, Func. Count: 18, Neg. LLF: 137.8464594388267
Iteration: 3, Func. Count: 27, Neg. LLF: 128.59429641557298
Iteration: 4, Func. Count: 35, Neg. LLF: 128.1746657617914
Iteration: 5, Func. Count: 43, Neg. LLF: 128.17676114622773
Iteration: 6, Func. Count: 52, Neg. LLF: 128.3317260442823
Iteration: 7, Func. Count: 61, Neg. LLF: 127.98819975097142
Iteration: 8, Func. Count: 70, Neg. LLF: 127.96384259076454
Iteration: 9, Func. Count: 79, Neg. LLF: 127.90813757396202
Iteration: 10, Func. Count: 87, Neg. LLF: 127.90799051888655
Iteration: 11, Func. Count: 95, Neg. LLF: 127.90789986826469
Iteration: 12, Func. Count: 103, Neg. LLF: 127.90788533903196
Iteration: 13, Func. Count: 111, Neg. LLF: 127.90787935863449
Iteration: 14, Func. Count: 119, Neg. LLF: 127.90787622578333
Iteration: 15, Func. Count: 127, Neg. LLF: 127.90787562873534
Optimization terminated successfully (Exit mode 0)
Current function value: 127.90787562873534
Iterations: 15
Function evaluations: 127
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 135.65972389412974
Iteration: 2, Func. Count: 22, Neg. LLF: 134.32561485519847
Iteration: 3, Func. Count: 33, Neg. LLF: 128.3914498489484
Iteration: 4, Func. Count: 42, Neg. LLF: 128.3595024927985
Iteration: 5, Func. Count: 51, Neg. LLF: 128.35768932044164
Iteration: 6, Func. Count: 60, Neg. LLF: 128.35737363223345
Iteration: 7, Func. Count: 70, Neg. LLF: 128.35565681168322
Iteration: 8, Func. Count: 80, Neg. LLF: 128.22316487638005
Iteration: 9, Func. Count: 89, Neg. LLF: 128.39768303716951
Iteration: 10, Func. Count: 99, Neg. LLF: 128.15765388896176
Iteration: 11, Func. Count: 108, Neg. LLF: 128.141518936946
Iteration: 12, Func. Count: 117, Neg. LLF: 128.13421678862775
Iteration: 13, Func. Count: 126, Neg. LLF: 128.12785007736915
Iteration: 14, Func. Count: 135, Neg. LLF: 128.10383137186346
Iteration: 15, Func. Count: 144, Neg. LLF: 128.01949197727785
Iteration: 16, Func. Count: 153, Neg. LLF: 128.3614639687932
Iteration: 17, Func. Count: 163, Neg. LLF: 127.96304606904545
Iteration: 18, Func. Count: 172, Neg. LLF: 127.93900161444267
Iteration: 19, Func. Count: 181, Neg. LLF: 127.94463664370936
Iteration: 20, Func. Count: 191, Neg. LLF: 127.91132583641377
Iteration: 21, Func. Count: 200, Neg. LLF: 127.90854965022913
Iteration: 22, Func. Count: 209, Neg. LLF: 127.90814327075117
Iteration: 23, Func. Count: 218, Neg. LLF: 127.90787810412188
Iteration: 24, Func. Count: 227, Neg. LLF: 127.90787564029534
Iteration: 25, Func. Count: 235, Neg. LLF: 127.90787564740276
Optimization terminated successfully (Exit mode 0)
Current function value: 127.90787564029534
Iterations: 25
Function evaluations: 235
Gradient evaluations: 25
Iteration: 1, Func. Count: 11, Neg. LLF: 134.10191882521414
Iteration: 2, Func. Count: 23, Neg. LLF: 128.49911163830072
Iteration: 3, Func. Count: 34, Neg. LLF: 128.51468034329494
Iteration: 4, Func. Count: 45, Neg. LLF: 128.4363296604973
Iteration: 5, Func. Count: 56, Neg. LLF: 128.68792844533783
Iteration: 6, Func. Count: 68, Neg. LLF: 128.35925028586823
Iteration: 7, Func. Count: 78, Neg. LLF: 128.35569966254542
Iteration: 8, Func. Count: 88, Neg. LLF: 128.3507370419221
Iteration: 9, Func. Count: 98, Neg. LLF: 128.33875506032592
Iteration: 10, Func. Count: 108, Neg. LLF: 128.31587594246105
Iteration: 11, Func. Count: 118, Neg. LLF: 128.29021732662605
Iteration: 12, Func. Count: 128, Neg. LLF: 128.17545529205435
Iteration: 13, Func. Count: 138, Neg. LLF: 128.15830705149259
Iteration: 14, Func. Count: 148, Neg. LLF: 128.14767400618476
Iteration: 15, Func. Count: 158, Neg. LLF: 128.1401177464616
Iteration: 16, Func. Count: 168, Neg. LLF: 128.13607506188987
Iteration: 17, Func. Count: 178, Neg. LLF: 128.1306809647254
Iteration: 18, Func. Count: 188, Neg. LLF: 128.11490518416292
Iteration: 19, Func. Count: 198, Neg. LLF: 128.05610134424415
Iteration: 20, Func. Count: 208, Neg. LLF: 128.10228884571387
Iteration: 21, Func. Count: 219, Neg. LLF: 129.1232381995532
Iteration: 22, Func. Count: 230, Neg. LLF: 129.00626348515647
Iteration: 23, Func. Count: 241, Neg. LLF: 127.93412896392792
Iteration: 24, Func. Count: 251, Neg. LLF: 127.9207201339171
Iteration: 25, Func. Count: 261, Neg. LLF: 127.91748478049986
Iteration: 26, Func. Count: 271, Neg. LLF: 127.91205334669591
Iteration: 27, Func. Count: 281, Neg. LLF: 127.90991712490087
Iteration: 28, Func. Count: 291, Neg. LLF: 127.90876256426797
Iteration: 29, Func. Count: 301, Neg. LLF: 127.90815701323048
Iteration: 30, Func. Count: 311, Neg. LLF: 127.90793516098829
Iteration: 31, Func. Count: 321, Neg. LLF: 127.90787885680739
Iteration: 32, Func. Count: 331, Neg. LLF: 127.90787570529905
Iteration: 33, Func. Count: 340, Neg. LLF: 127.90787578635604
Optimization terminated successfully (Exit mode 0)
Current function value: 127.90787570529905
Iterations: 33
Function evaluations: 340
Gradient evaluations: 33
Iteration: 1, Func. Count: 12, Neg. LLF: 138.76752731430662
Iteration: 2, Func. Count: 25, Neg. LLF: 132.95146059877635
Iteration: 3, Func. Count: 37, Neg. LLF: 127.14707083848084
Iteration: 4, Func. Count: 48, Neg. LLF: 142.29675176852766
Iteration: 5, Func. Count: 61, Neg. LLF: 129.4646979075456
Iteration: 6, Func. Count: 74, Neg. LLF: 130.99162051834807
Iteration: 7, Func. Count: 86, Neg. LLF: 126.49335843628434
Iteration: 8, Func. Count: 97, Neg. LLF: 126.61374555081788
Iteration: 9, Func. Count: 109, Neg. LLF: 126.41258468430412
Iteration: 10, Func. Count: 120, Neg. LLF: 126.91666351530439
Iteration: 11, Func. Count: 132, Neg. LLF: 126.37152150417111
Iteration: 12, Func. Count: 143, Neg. LLF: 126.357605185962
Iteration: 13, Func. Count: 154, Neg. LLF: 126.34968736482435
Iteration: 14, Func. Count: 165, Neg. LLF: 126.3462472663316
Iteration: 15, Func. Count: 176, Neg. LLF: 126.34547628319285
Iteration: 16, Func. Count: 187, Neg. LLF: 126.34547007392061
Iteration: 17, Func. Count: 198, Neg. LLF: 126.345469048536
Iteration: 18, Func. Count: 208, Neg. LLF: 126.34546904850149
Optimization terminated successfully (Exit mode 0)
Current function value: 126.345469048536
Iterations: 18
Function evaluations: 208
Gradient evaluations: 18
Iteration: 1, Func. Count: 13, Neg. LLF: 151.365711377394
Iteration: 2, Func. Count: 27, Neg. LLF: 128.28381784895868
Iteration: 3, Func. Count: 39, Neg. LLF: 127.55830915223235
Iteration: 4, Func. Count: 51, Neg. LLF: 134.97652109662843
Iteration: 5, Func. Count: 64, Neg. LLF: 130.47544363346447
Iteration: 6, Func. Count: 77, Neg. LLF: 126.74030890377323
Iteration: 7, Func. Count: 89, Neg. LLF: 128.18879921767223
Iteration: 8, Func. Count: 103, Neg. LLF: 126.37248166632746
Iteration: 9, Func. Count: 115, Neg. LLF: 127.47145836342918
Iteration: 10, Func. Count: 129, Neg. LLF: 126.60409160744899
Iteration: 11, Func. Count: 142, Neg. LLF: 126.35067356311679
Iteration: 12, Func. Count: 154, Neg. LLF: 126.34764600068733
Iteration: 13, Func. Count: 166, Neg. LLF: 126.34670042565088
Iteration: 14, Func. Count: 178, Neg. LLF: 126.34601934776093
Iteration: 15, Func. Count: 190, Neg. LLF: 126.34556219478586
Iteration: 16, Func. Count: 202, Neg. LLF: 126.34547058655447
Iteration: 17, Func. Count: 214, Neg. LLF: 126.34546894395993
Iteration: 18, Func. Count: 225, Neg. LLF: 126.34546898830159
Optimization terminated successfully (Exit mode 0)
Current function value: 126.34546894395993
Iterations: 18
Function evaluations: 225
Gradient evaluations: 18
Iteration: 1, Func. Count: 6, Neg. LLF: 133.0920448966069
Iteration: 2, Func. Count: 12, Neg. LLF: 130.83961852884403
Iteration: 3, Func. Count: 18, Neg. LLF: 128.5292173041313
Iteration: 4, Func. Count: 23, Neg. LLF: 128.60951505883236
Iteration: 5, Func. Count: 29, Neg. LLF: 128.38710736687872
Iteration: 6, Func. Count: 34, Neg. LLF: 128.35976833833118
Iteration: 7, Func. Count: 39, Neg. LLF: 128.3584549202033
Iteration: 8, Func. Count: 44, Neg. LLF: 128.35840945933785
Iteration: 9, Func. Count: 49, Neg. LLF: 128.35840844864188
Iteration: 10, Func. Count: 53, Neg. LLF: 128.35840844862634
Optimization terminated successfully (Exit mode 0)
Current function value: 128.35840844864188
Iterations: 10
Function evaluations: 53
Gradient evaluations: 10
Iteration: 1, Func. Count: 7, Neg. LLF: 137.93023028790958
Iteration: 2, Func. Count: 14, Neg. LLF: 139.97661179752257
Iteration: 3, Func. Count: 22, Neg. LLF: 127.99333585204897
Iteration: 4, Func. Count: 28, Neg. LLF: 128.00166911660233
Iteration: 5, Func. Count: 35, Neg. LLF: 127.99193085493565
Iteration: 6, Func. Count: 42, Neg. LLF: 127.99065100036607
Iteration: 7, Func. Count: 48, Neg. LLF: 127.99062266028265
Iteration: 8, Func. Count: 54, Neg. LLF: 127.99058134111124
Iteration: 9, Func. Count: 59, Neg. LLF: 127.99058134113989
Optimization terminated successfully (Exit mode 0)
Current function value: 127.99058134111124
Iterations: 9
Function evaluations: 59
Gradient evaluations: 9
Iteration: 1, Func. Count: 8, Neg. LLF: 137.72332967332855
Iteration: 2, Func. Count: 16, Neg. LLF: 139.444038701897
Iteration: 3, Func. Count: 24, Neg. LLF: 128.23279632448777
Iteration: 4, Func. Count: 32, Neg. LLF: 127.83370871085586
Iteration: 5, Func. Count: 39, Neg. LLF: 127.715773216111
Iteration: 6, Func. Count: 46, Neg. LLF: 128.38883803328463
Iteration: 7, Func. Count: 55, Neg. LLF: 127.65277653438707
Iteration: 8, Func. Count: 62, Neg. LLF: 127.62954163602564
Iteration: 9, Func. Count: 69, Neg. LLF: 127.62084937282988
Iteration: 10, Func. Count: 76, Neg. LLF: 127.62048337808721
Iteration: 11, Func. Count: 83, Neg. LLF: 127.62043459548856
Iteration: 12, Func. Count: 90, Neg. LLF: 127.62043288809959
Iteration: 13, Func. Count: 96, Neg. LLF: 127.62043288807786
Optimization terminated successfully (Exit mode 0)
Current function value: 127.62043288809959
Iterations: 13
Function evaluations: 96
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 130.07016575530122
Iteration: 2, Func. Count: 19, Neg. LLF: 129.50975726160502
Iteration: 3, Func. Count: 28, Neg. LLF: 127.7851483617612
Iteration: 4, Func. Count: 36, Neg. LLF: 127.86879721945954
Iteration: 5, Func. Count: 45, Neg. LLF: 127.88362440979785
Iteration: 6, Func. Count: 54, Neg. LLF: 128.13308572978556
Iteration: 7, Func. Count: 64, Neg. LLF: 127.64729294058289
Iteration: 8, Func. Count: 72, Neg. LLF: 127.63046582701145
Iteration: 9, Func. Count: 80, Neg. LLF: 127.62714501362488
Iteration: 10, Func. Count: 88, Neg. LLF: 127.62523167471807
Iteration: 11, Func. Count: 96, Neg. LLF: 127.62273400913564
Iteration: 12, Func. Count: 104, Neg. LLF: 127.6210200054806
Iteration: 13, Func. Count: 112, Neg. LLF: 127.62048778590302
Iteration: 14, Func. Count: 120, Neg. LLF: 127.62043526831418
Iteration: 15, Func. Count: 128, Neg. LLF: 127.62043287930473
Iteration: 16, Func. Count: 135, Neg. LLF: 127.62043290577233
Optimization terminated successfully (Exit mode 0)
Current function value: 127.62043287930473
Iterations: 16
Function evaluations: 135
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 145.6254047965823
Iteration: 2, Func. Count: 21, Neg. LLF: 128.39225415451057
Iteration: 3, Func. Count: 30, Neg. LLF: 128.3650018620997
Iteration: 4, Func. Count: 39, Neg. LLF: 128.35336700455179
Iteration: 5, Func. Count: 48, Neg. LLF: 128.33467268164114
Iteration: 6, Func. Count: 57, Neg. LLF: 128.33245774720854
Iteration: 7, Func. Count: 66, Neg. LLF: 128.33150457569283
Iteration: 8, Func. Count: 75, Neg. LLF: 128.3252124818927
Iteration: 9, Func. Count: 84, Neg. LLF: 128.32331441318598
Iteration: 10, Func. Count: 93, Neg. LLF: 128.31680540330203
Iteration: 11, Func. Count: 102, Neg. LLF: 128.31598861681226
Iteration: 12, Func. Count: 111, Neg. LLF: 128.31544809698948
Iteration: 13, Func. Count: 120, Neg. LLF: 128.31542046298821
Iteration: 14, Func. Count: 129, Neg. LLF: 128.31539120786445
Iteration: 15, Func. Count: 138, Neg. LLF: 128.31537895741107
Iteration: 16, Func. Count: 147, Neg. LLF: 128.3153741410813
Iteration: 17, Func. Count: 155, Neg. LLF: 128.31537414115994
Optimization terminated successfully (Exit mode 0)
Current function value: 128.3153741410813
Iterations: 17
Function evaluations: 155
Gradient evaluations: 17
Iteration: 1, Func. Count: 7, Neg. LLF: 133.10744447755104
Iteration: 2, Func. Count: 14, Neg. LLF: 131.4173949085689
Iteration: 3, Func. Count: 21, Neg. LLF: 128.51006670459228
Iteration: 4, Func. Count: 27, Neg. LLF: 128.59835260959315
Iteration: 5, Func. Count: 34, Neg. LLF: 128.38608021407657
Iteration: 6, Func. Count: 40, Neg. LLF: 128.35988574997614
Iteration: 7, Func. Count: 46, Neg. LLF: 128.3584330298378
Iteration: 8, Func. Count: 52, Neg. LLF: 128.35840849139737
Iteration: 9, Func. Count: 57, Neg. LLF: 128.35840844181678
Optimization terminated successfully (Exit mode 0)
Current function value: 128.35840849139737
Iterations: 9
Function evaluations: 57
Gradient evaluations: 9
Iteration: 1, Func. Count: 8, Neg. LLF: 137.62215729346855
Iteration: 2, Func. Count: 16, Neg. LLF: 139.51992237531613
Iteration: 3, Func. Count: 25, Neg. LLF: 127.99418343381312
Iteration: 4, Func. Count: 32, Neg. LLF: 128.01438312393498
Iteration: 5, Func. Count: 40, Neg. LLF: 127.99139731440737
Iteration: 6, Func. Count: 47, Neg. LLF: 127.99058483084853
Iteration: 7, Func. Count: 54, Neg. LLF: 127.9905829174736
Iteration: 8, Func. Count: 60, Neg. LLF: 127.99058291745898
Optimization terminated successfully (Exit mode 0)
Current function value: 127.9905829174736
Iterations: 8
Function evaluations: 60
Gradient evaluations: 8
Iteration: 1, Func. Count: 9, Neg. LLF: 132.77908871358832
Iteration: 2, Func. Count: 19, Neg. LLF: 132.01060357422728
Iteration: 3, Func. Count: 28, Neg. LLF: 127.69351964462493
Iteration: 4, Func. Count: 36, Neg. LLF: 127.69609665723688
Iteration: 5, Func. Count: 45, Neg. LLF: 127.72923518938312
Iteration: 6, Func. Count: 54, Neg. LLF: 127.62347820059261
Iteration: 7, Func. Count: 62, Neg. LLF: 127.62058355743315
Iteration: 8, Func. Count: 70, Neg. LLF: 127.62044437071495
Iteration: 9, Func. Count: 78, Neg. LLF: 127.62043286995952
Iteration: 10, Func. Count: 85, Neg. LLF: 127.62043286996403
Optimization terminated successfully (Exit mode 0)
Current function value: 127.62043286995952
Iterations: 10
Function evaluations: 85
Gradient evaluations: 10
Iteration: 1, Func. Count: 10, Neg. LLF: 132.75492044256893
Iteration: 2, Func. Count: 21, Neg. LLF: 131.58385691084567
Iteration: 3, Func. Count: 31, Neg. LLF: 127.68777482166432
Iteration: 4, Func. Count: 40, Neg. LLF: 127.63811377209129
Iteration: 5, Func. Count: 49, Neg. LLF: 127.73078405754791
Iteration: 6, Func. Count: 59, Neg. LLF: 127.62699914981162
Iteration: 7, Func. Count: 68, Neg. LLF: 127.62237168774924
Iteration: 8, Func. Count: 77, Neg. LLF: 127.62054190996584
Iteration: 9, Func. Count: 86, Neg. LLF: 127.62043962849644
Iteration: 10, Func. Count: 95, Neg. LLF: 127.62043286108447
Iteration: 11, Func. Count: 103, Neg. LLF: 127.62043288752726
Optimization terminated successfully (Exit mode 0)
Current function value: 127.62043286108447
Iterations: 11
Function evaluations: 103
Gradient evaluations: 11
Iteration: 1, Func. Count: 11, Neg. LLF: 132.70060008076425
Iteration: 2, Func. Count: 24, Neg. LLF: 129.36784283092172
Iteration: 3, Func. Count: 35, Neg. LLF: 127.86897523857768
Iteration: 4, Func. Count: 45, Neg. LLF: 128.15537781973197
Iteration: 5, Func. Count: 56, Neg. LLF: 127.65709018701364
Iteration: 6, Func. Count: 66, Neg. LLF: 127.63095712149553
Iteration: 7, Func. Count: 76, Neg. LLF: 127.62639914050199
Iteration: 8, Func. Count: 86, Neg. LLF: 127.62162446096795
Iteration: 9, Func. Count: 96, Neg. LLF: 127.62074680934477
Iteration: 10, Func. Count: 106, Neg. LLF: 127.62053360092708
Iteration: 11, Func. Count: 116, Neg. LLF: 127.62048181752105
Iteration: 12, Func. Count: 126, Neg. LLF: 127.62043753218043
Iteration: 13, Func. Count: 136, Neg. LLF: 127.62043310163234
Iteration: 14, Func. Count: 145, Neg. LLF: 127.62043317594937
Optimization terminated successfully (Exit mode 0)
Current function value: 127.62043310163234
Iterations: 14
Function evaluations: 145
Gradient evaluations: 14
Iteration: 1, Func. Count: 8, Neg. LLF: 133.8600570467908
Iteration: 2, Func. Count: 16, Neg. LLF: 136.28409664092325
Iteration: 3, Func. Count: 24, Neg. LLF: 128.99898450117408
Iteration: 4, Func. Count: 31, Neg. LLF: 129.77615363809343
Iteration: 5, Func. Count: 39, Neg. LLF: 128.55385981251902
Iteration: 6, Func. Count: 46, Neg. LLF: 128.39826842567277
Iteration: 7, Func. Count: 53, Neg. LLF: 128.3686575964332
Iteration: 8, Func. Count: 60, Neg. LLF: 128.35498300180168
Iteration: 9, Func. Count: 67, Neg. LLF: 128.35491501024418
Iteration: 10, Func. Count: 74, Neg. LLF: 128.35490529448225
Iteration: 11, Func. Count: 81, Neg. LLF: 128.3549038810522
Iteration: 12, Func. Count: 87, Neg. LLF: 128.35490388105748
Optimization terminated successfully (Exit mode 0)
Current function value: 128.3549038810522
Iterations: 12
Function evaluations: 87
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 134.4331327924409
Iteration: 2, Func. Count: 19, Neg. LLF: 139.13164154526453
Iteration: 3, Func. Count: 29, Neg. LLF: 148.49680693396226
Iteration: 4, Func. Count: 39, Neg. LLF: 129.8734893329938
Iteration: 5, Func. Count: 48, Neg. LLF: 127.60265955449724
Iteration: 6, Func. Count: 56, Neg. LLF: 127.56619196174967
Iteration: 7, Func. Count: 64, Neg. LLF: 127.56035730124952
Iteration: 8, Func. Count: 72, Neg. LLF: 127.55962412462465
Iteration: 9, Func. Count: 80, Neg. LLF: 127.55938772053734
Iteration: 10, Func. Count: 88, Neg. LLF: 127.5593730899512
Iteration: 11, Func. Count: 95, Neg. LLF: 127.55937308987843
Optimization terminated successfully (Exit mode 0)
Current function value: 127.5593730899512
Iterations: 11
Function evaluations: 95
Gradient evaluations: 11
Iteration: 1, Func. Count: 10, Neg. LLF: 132.76692175903042
Iteration: 2, Func. Count: 21, Neg. LLF: 134.4186531063654
Iteration: 3, Func. Count: 31, Neg. LLF: 127.47408650075728
Iteration: 4, Func. Count: 40, Neg. LLF: 127.4137370734523
Iteration: 5, Func. Count: 50, Neg. LLF: 133.78750395233277
Iteration: 6, Func. Count: 62, Neg. LLF: 127.772105196091
Iteration: 7, Func. Count: 72, Neg. LLF: 127.20640465095254
Iteration: 8, Func. Count: 82, Neg. LLF: 127.14311523935322
Iteration: 9, Func. Count: 92, Neg. LLF: 127.12220300305145
Iteration: 10, Func. Count: 101, Neg. LLF: 127.11017759451676
Iteration: 11, Func. Count: 110, Neg. LLF: 127.10871305463635
Iteration: 12, Func. Count: 119, Neg. LLF: 127.1086761009854
Iteration: 13, Func. Count: 128, Neg. LLF: 127.10867447851867
Iteration: 14, Func. Count: 136, Neg. LLF: 127.10867447851804
Optimization terminated successfully (Exit mode 0)
Current function value: 127.10867447851867
Iterations: 14
Function evaluations: 136
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 130.7680356535378
Iteration: 2, Func. Count: 23, Neg. LLF: 134.63704837473227
Iteration: 3, Func. Count: 34, Neg. LLF: 135.80746577000315
Iteration: 4, Func. Count: 45, Neg. LLF: 128.88558782894498
Iteration: 5, Func. Count: 56, Neg. LLF: 127.65523937977385
Iteration: 6, Func. Count: 67, Neg. LLF: 127.03923182032959
Iteration: 7, Func. Count: 77, Neg. LLF: 127.41003531125185
Iteration: 8, Func. Count: 88, Neg. LLF: 127.03084313306421
Iteration: 9, Func. Count: 98, Neg. LLF: 127.02974730990972
Iteration: 10, Func. Count: 108, Neg. LLF: 127.02950186941383
Iteration: 11, Func. Count: 118, Neg. LLF: 127.02946944915149
Iteration: 12, Func. Count: 128, Neg. LLF: 127.02946374123164
Iteration: 13, Func. Count: 137, Neg. LLF: 127.02946374126547
Optimization terminated successfully (Exit mode 0)
Current function value: 127.02946374123164
Iterations: 13
Function evaluations: 137
Gradient evaluations: 13
Iteration: 1, Func. Count: 12, Neg. LLF: 131.67240980389775
Iteration: 2, Func. Count: 25, Neg. LLF: 133.89787744427338
Iteration: 3, Func. Count: 37, Neg. LLF: 127.72964791618166
Iteration: 4, Func. Count: 48, Neg. LLF: 130.3966183123522
Iteration: 5, Func. Count: 60, Neg. LLF: 134.7453250250126
Iteration: 6, Func. Count: 72, Neg. LLF: 129.33278830345762
Iteration: 7, Func. Count: 84, Neg. LLF: 127.26361918086172
Iteration: 8, Func. Count: 96, Neg. LLF: 127.03862489295278
Iteration: 9, Func. Count: 107, Neg. LLF: 127.71491747566309
Iteration: 10, Func. Count: 119, Neg. LLF: 127.0302807010752
Iteration: 11, Func. Count: 130, Neg. LLF: 127.02947938692812
Iteration: 12, Func. Count: 141, Neg. LLF: 127.02946444956416
Iteration: 13, Func. Count: 152, Neg. LLF: 127.02946372336902
Optimization terminated successfully (Exit mode 0)
Current function value: 127.02946372336902
Iterations: 13
Function evaluations: 152
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 133.1157238914701
Iteration: 2, Func. Count: 18, Neg. LLF: 134.0406336257863
Iteration: 3, Func. Count: 27, Neg. LLF: 128.34238645679017
Iteration: 4, Func. Count: 35, Neg. LLF: 128.2668189477664
Iteration: 5, Func. Count: 44, Neg. LLF: 129.4603553345341
Iteration: 6, Func. Count: 55, Neg. LLF: 127.99106224853176
Iteration: 7, Func. Count: 63, Neg. LLF: 128.3610959712779
Iteration: 8, Func. Count: 72, Neg. LLF: 127.96909721846383
Iteration: 9, Func. Count: 80, Neg. LLF: 127.96701854771592
Iteration: 10, Func. Count: 88, Neg. LLF: 127.96700268848906
Iteration: 11, Func. Count: 96, Neg. LLF: 127.96699741345446
Iteration: 12, Func. Count: 104, Neg. LLF: 127.96699622254528
Iteration: 13, Func. Count: 111, Neg. LLF: 127.96699622254143
Optimization terminated successfully (Exit mode 0)
Current function value: 127.96699622254528
Iterations: 13
Function evaluations: 111
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 134.48270677235237
Iteration: 2, Func. Count: 21, Neg. LLF: 139.1700438072228
Iteration: 3, Func. Count: 32, Neg. LLF: 148.17322643267534
Iteration: 4, Func. Count: 43, Neg. LLF: 129.89304694784076
Iteration: 5, Func. Count: 53, Neg. LLF: 127.60359159755535
Iteration: 6, Func. Count: 62, Neg. LLF: 127.56647472554869
Iteration: 7, Func. Count: 71, Neg. LLF: 127.56039898912104
Iteration: 8, Func. Count: 80, Neg. LLF: 127.5596584055977
Iteration: 9, Func. Count: 89, Neg. LLF: 127.55938886913174
Iteration: 10, Func. Count: 98, Neg. LLF: 127.55937310217571
Iteration: 11, Func. Count: 106, Neg. LLF: 127.55937310208019
Optimization terminated successfully (Exit mode 0)
Current function value: 127.55937310217571
Iterations: 11
Function evaluations: 106
Gradient evaluations: 11
Iteration: 1, Func. Count: 11, Neg. LLF: 132.8091287735242
Iteration: 2, Func. Count: 23, Neg. LLF: 134.42689882893694
Iteration: 3, Func. Count: 34, Neg. LLF: 127.4863178040734
Iteration: 4, Func. Count: 44, Neg. LLF: 129.5682046441681
Iteration: 5, Func. Count: 56, Neg. LLF: 828.9976151411695
Iteration: 6, Func. Count: 68, Neg. LLF: 129.78670134170054
Iteration: 7, Func. Count: 80, Neg. LLF: 127.1424102460322
Iteration: 8, Func. Count: 91, Neg. LLF: 127.08101443287022
Iteration: 9, Func. Count: 101, Neg. LLF: 127.17793109232274
Iteration: 10, Func. Count: 112, Neg. LLF: 127.06978691455045
Iteration: 11, Func. Count: 122, Neg. LLF: 127.0660243597409
Iteration: 12, Func. Count: 132, Neg. LLF: 127.06553131324765
Iteration: 13, Func. Count: 142, Neg. LLF: 127.06539042113651
Iteration: 14, Func. Count: 152, Neg. LLF: 127.06538908601246
Iteration: 15, Func. Count: 161, Neg. LLF: 127.06538908602272
Optimization terminated successfully (Exit mode 0)
Current function value: 127.06538908601246
Iterations: 15
Function evaluations: 161
Gradient evaluations: 15
Iteration: 1, Func. Count: 12, Neg. LLF: 130.82330248692475
Iteration: 2, Func. Count: 25, Neg. LLF: 134.57662114475437
Iteration: 3, Func. Count: 37, Neg. LLF: 134.01032296948276
Iteration: 4, Func. Count: 49, Neg. LLF: 129.7520477678313
Iteration: 5, Func. Count: 61, Neg. LLF: 128.2207914619055
Iteration: 6, Func. Count: 73, Neg. LLF: 127.23938928717227
Iteration: 7, Func. Count: 85, Neg. LLF: 127.7605432225545
Iteration: 8, Func. Count: 97, Neg. LLF: 127.04076178305594
Iteration: 9, Func. Count: 108, Neg. LLF: 127.55685100901124
Iteration: 10, Func. Count: 120, Neg. LLF: 127.01578051890169
Iteration: 11, Func. Count: 131, Neg. LLF: 127.00154999484805
Iteration: 12, Func. Count: 142, Neg. LLF: 127.00140647623917
Iteration: 13, Func. Count: 153, Neg. LLF: 127.00134940668899
Iteration: 14, Func. Count: 164, Neg. LLF: 127.00134038920217
Iteration: 15, Func. Count: 175, Neg. LLF: 127.0013391037297
Iteration: 16, Func. Count: 185, Neg. LLF: 127.00133910371639
Optimization terminated successfully (Exit mode 0)
Current function value: 127.0013391037297
Iterations: 16
Function evaluations: 185
Gradient evaluations: 16
Iteration: 1, Func. Count: 13, Neg. LLF: 131.7481678993305
Iteration: 2, Func. Count: 27, Neg. LLF: 133.87222081676464
Iteration: 3, Func. Count: 40, Neg. LLF: 132.32483490985572
Iteration: 4, Func. Count: 54, Neg. LLF: 129.70593767595352
Iteration: 5, Func. Count: 67, Neg. LLF: 133.97872852022974
Iteration: 6, Func. Count: 80, Neg. LLF: 128.38604908990038
Iteration: 7, Func. Count: 93, Neg. LLF: 127.8986343270634
Iteration: 8, Func. Count: 106, Neg. LLF: 127.4113643759019
Iteration: 9, Func. Count: 119, Neg. LLF: 127.01863277394956
Iteration: 10, Func. Count: 131, Neg. LLF: 127.00272444479812
Iteration: 11, Func. Count: 143, Neg. LLF: 127.00179387428656
Iteration: 12, Func. Count: 155, Neg. LLF: 127.00134432896607
Iteration: 13, Func. Count: 167, Neg. LLF: 127.0013393851737
Iteration: 14, Func. Count: 178, Neg. LLF: 127.00133946306866
Optimization terminated successfully (Exit mode 0)
Current function value: 127.0013393851737
Iterations: 14
Function evaluations: 178
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 132.01988180098914
Iteration: 2, Func. Count: 20, Neg. LLF: 132.05939817297934
Iteration: 3, Func. Count: 30, Neg. LLF: 128.49174952828912
Iteration: 4, Func. Count: 39, Neg. LLF: 128.33174852036967
Iteration: 5, Func. Count: 49, Neg. LLF: 128.48919410398358
Iteration: 6, Func. Count: 60, Neg. LLF: 127.9345514575367
Iteration: 7, Func. Count: 70, Neg. LLF: 128.10582328357734
Iteration: 8, Func. Count: 80, Neg. LLF: 127.90151911254806
Iteration: 9, Func. Count: 89, Neg. LLF: 127.90041310292719
Iteration: 10, Func. Count: 98, Neg. LLF: 127.90021625539775
Iteration: 11, Func. Count: 107, Neg. LLF: 127.89996785445734
Iteration: 12, Func. Count: 116, Neg. LLF: 127.89996053179948
Iteration: 13, Func. Count: 125, Neg. LLF: 127.89995630063113
Iteration: 14, Func. Count: 133, Neg. LLF: 127.89995630062997
Optimization terminated successfully (Exit mode 0)
Current function value: 127.89995630063113
Iterations: 14
Function evaluations: 133
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 134.414109604548
Iteration: 2, Func. Count: 23, Neg. LLF: 139.11728859850373
Iteration: 3, Func. Count: 35, Neg. LLF: 147.76060997703038
Iteration: 4, Func. Count: 47, Neg. LLF: 129.8936015526776
Iteration: 5, Func. Count: 58, Neg. LLF: 127.60495074817194
Iteration: 6, Func. Count: 68, Neg. LLF: 127.56680349016996
Iteration: 7, Func. Count: 78, Neg. LLF: 127.56038200845349
Iteration: 8, Func. Count: 88, Neg. LLF: 127.55968105259743
Iteration: 9, Func. Count: 98, Neg. LLF: 127.55939501771051
Iteration: 10, Func. Count: 108, Neg. LLF: 127.55937317799375
Iteration: 11, Func. Count: 117, Neg. LLF: 127.55937317786493
Optimization terminated successfully (Exit mode 0)
Current function value: 127.55937317799375
Iterations: 11
Function evaluations: 117
Gradient evaluations: 11
Iteration: 1, Func. Count: 12, Neg. LLF: 132.82487960838543
Iteration: 2, Func. Count: 25, Neg. LLF: 134.3987110915524
Iteration: 3, Func. Count: 37, Neg. LLF: 127.49404452908409
Iteration: 4, Func. Count: 48, Neg. LLF: 129.72780198303607
Iteration: 5, Func. Count: 61, Neg. LLF: 814.0096582137586
Iteration: 6, Func. Count: 74, Neg. LLF: 130.36705542804162
Iteration: 7, Func. Count: 87, Neg. LLF: 127.14401723549061
Iteration: 8, Func. Count: 99, Neg. LLF: 127.08189346216555
Iteration: 9, Func. Count: 110, Neg. LLF: 127.18080412892361
Iteration: 10, Func. Count: 122, Neg. LLF: 127.06935334565428
Iteration: 11, Func. Count: 133, Neg. LLF: 127.06605078140764
Iteration: 12, Func. Count: 144, Neg. LLF: 127.06553080548163
Iteration: 13, Func. Count: 155, Neg. LLF: 127.06539133318958
Iteration: 14, Func. Count: 166, Neg. LLF: 127.06538921216179
Iteration: 15, Func. Count: 176, Neg. LLF: 127.06538921217546
Optimization terminated successfully (Exit mode 0)
Current function value: 127.06538921216179
Iterations: 15
Function evaluations: 176
Gradient evaluations: 15
Iteration: 1, Func. Count: 13, Neg. LLF: 130.5911392524603
Iteration: 2, Func. Count: 27, Neg. LLF: 134.61802092424833
Iteration: 3, Func. Count: 40, Neg. LLF: 132.26488887454974
Iteration: 4, Func. Count: 53, Neg. LLF: 127.24378086943547
Iteration: 5, Func. Count: 65, Neg. LLF: 128.86845748423303
Iteration: 6, Func. Count: 78, Neg. LLF: 133.53520346161466
Iteration: 7, Func. Count: 92, Neg. LLF: 128.08082225351004
Iteration: 8, Func. Count: 105, Neg. LLF: 127.21101444492861
Iteration: 9, Func. Count: 118, Neg. LLF: 127.04369056597893
Iteration: 10, Func. Count: 131, Neg. LLF: 127.00268075535568
Iteration: 11, Func. Count: 143, Neg. LLF: 127.00141136497996
Iteration: 12, Func. Count: 155, Neg. LLF: 127.0013430201478
Iteration: 13, Func. Count: 167, Neg. LLF: 127.00134016647694
Iteration: 14, Func. Count: 179, Neg. LLF: 127.00133931678762
Optimization terminated successfully (Exit mode 0)
Current function value: 127.00133931678762
Iterations: 14
Function evaluations: 179
Gradient evaluations: 14
Iteration: 1, Func. Count: 14, Neg. LLF: 131.53946500568262
Iteration: 2, Func. Count: 29, Neg. LLF: 133.8405621530312
Iteration: 3, Func. Count: 43, Neg. LLF: 129.8597058467172
Iteration: 4, Func. Count: 57, Neg. LLF: 128.5577653427311
Iteration: 5, Func. Count: 71, Neg. LLF: 131.0142885496353
Iteration: 6, Func. Count: 85, Neg. LLF: 127.63836692210732
Iteration: 7, Func. Count: 99, Neg. LLF: 127.13044587003053
Iteration: 8, Func. Count: 112, Neg. LLF: 127.23707520558065
Iteration: 9, Func. Count: 126, Neg. LLF: 127.29735339923327
Iteration: 10, Func. Count: 140, Neg. LLF: 127.04306402073766
Iteration: 11, Func. Count: 154, Neg. LLF: 127.00169808213454
Iteration: 12, Func. Count: 167, Neg. LLF: 127.00135066133673
Iteration: 13, Func. Count: 180, Neg. LLF: 127.00134486524168
Iteration: 14, Func. Count: 193, Neg. LLF: 127.00133946208688
Iteration: 15, Func. Count: 205, Neg. LLF: 127.0013395398995
Optimization terminated successfully (Exit mode 0)
Current function value: 127.00133946208688
Iterations: 15
Function evaluations: 205
Gradient evaluations: 15
Iteration: 1, Func. Count: 7, Neg. LLF: 132.76916012171048
Iteration: 2, Func. Count: 14, Neg. LLF: 130.28492538579783
Iteration: 3, Func. Count: 21, Neg. LLF: 128.59732378569183
Iteration: 4, Func. Count: 27, Neg. LLF: 128.58952855589155
Iteration: 5, Func. Count: 34, Neg. LLF: 128.395336412991
Iteration: 6, Func. Count: 40, Neg. LLF: 128.36021648959064
Iteration: 7, Func. Count: 46, Neg. LLF: 128.39803686924094
Iteration: 8, Func. Count: 54, Neg. LLF: 128.3905851592559
Iteration: 9, Func. Count: 61, Neg. LLF: 128.3583832850474
Iteration: 10, Func. Count: 66, Neg. LLF: 128.35838328503584
Optimization terminated successfully (Exit mode 0)
Current function value: 128.3583832850474
Iterations: 10
Function evaluations: 66
Gradient evaluations: 10
Iteration: 1, Func. Count: 8, Neg. LLF: 134.3964546565708
Iteration: 2, Func. Count: 16, Neg. LLF: 138.99039396439383
Iteration: 3, Func. Count: 24, Neg. LLF: 126.83545686025903
Iteration: 4, Func. Count: 31, Neg. LLF: 127.38032442720737
Iteration: 5, Func. Count: 39, Neg. LLF: 140.864816960882
Iteration: 6, Func. Count: 48, Neg. LLF: 126.3932650961832
Iteration: 7, Func. Count: 56, Neg. LLF: 126.29805320903105
Iteration: 8, Func. Count: 63, Neg. LLF: 126.2974485508106
Iteration: 9, Func. Count: 70, Neg. LLF: 126.29723275852942
Iteration: 10, Func. Count: 77, Neg. LLF: 126.29722995563847
Iteration: 11, Func. Count: 83, Neg. LLF: 126.2972299136939
Optimization terminated successfully (Exit mode 0)
Current function value: 126.29722995563847
Iterations: 11
Function evaluations: 83
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 132.8227003441283
Iteration: 2, Func. Count: 19, Neg. LLF: 131.87959652996048
Iteration: 3, Func. Count: 28, Neg. LLF: 127.67488643433825
Iteration: 4, Func. Count: 36, Neg. LLF: 127.78909827795995
Iteration: 5, Func. Count: 45, Neg. LLF: 128.67017852084388
Iteration: 6, Func. Count: 55, Neg. LLF: 127.65706110067637
Iteration: 7, Func. Count: 64, Neg. LLF: 127.62247599611075
Iteration: 8, Func. Count: 72, Neg. LLF: 127.6196274374033
Iteration: 9, Func. Count: 80, Neg. LLF: 127.61951582042867
Iteration: 10, Func. Count: 88, Neg. LLF: 127.61950148125132
Iteration: 11, Func. Count: 95, Neg. LLF: 127.61950148124883
Optimization terminated successfully (Exit mode 0)
Current function value: 127.61950148125132
Iterations: 11
Function evaluations: 95
Gradient evaluations: 11
Iteration: 1, Func. Count: 10, Neg. LLF: 130.22096069300034
Iteration: 2, Func. Count: 22, Neg. LLF: 128.05675224626634
Iteration: 3, Func. Count: 31, Neg. LLF: 128.02180003229887
Iteration: 4, Func. Count: 40, Neg. LLF: 128.38401032074748
Iteration: 5, Func. Count: 50, Neg. LLF: 128.12344229655633
Iteration: 6, Func. Count: 60, Neg. LLF: 127.64981610664404
Iteration: 7, Func. Count: 69, Neg. LLF: 127.62615198682985
Iteration: 8, Func. Count: 78, Neg. LLF: 127.62178928806335
Iteration: 9, Func. Count: 87, Neg. LLF: 127.6195595861234
Iteration: 10, Func. Count: 96, Neg. LLF: 127.61952364881604
Iteration: 11, Func. Count: 105, Neg. LLF: 127.61951456980502
Iteration: 12, Func. Count: 114, Neg. LLF: 127.6195053148182
Iteration: 13, Func. Count: 123, Neg. LLF: 127.61950204777501
Iteration: 14, Func. Count: 131, Neg. LLF: 127.61950207542614
Optimization terminated successfully (Exit mode 0)
Current function value: 127.61950204777501
Iterations: 14
Function evaluations: 131
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 132.7784225690908
Iteration: 2, Func. Count: 24, Neg. LLF: 131.52122410337404
Iteration: 3, Func. Count: 36, Neg. LLF: 127.7347410776816
Iteration: 4, Func. Count: 46, Neg. LLF: 127.89353145858021
Iteration: 5, Func. Count: 57, Neg. LLF: 128.0424652526122
Iteration: 6, Func. Count: 69, Neg. LLF: 127.66407029768676
Iteration: 7, Func. Count: 79, Neg. LLF: 127.63499608939276
Iteration: 8, Func. Count: 89, Neg. LLF: 127.62839985856267
Iteration: 9, Func. Count: 99, Neg. LLF: 127.62070962610679
Iteration: 10, Func. Count: 109, Neg. LLF: 127.62003657934117
Iteration: 11, Func. Count: 119, Neg. LLF: 127.61965359806764
Iteration: 12, Func. Count: 129, Neg. LLF: 127.61953516335058
Iteration: 13, Func. Count: 139, Neg. LLF: 127.61950251545979
Iteration: 14, Func. Count: 149, Neg. LLF: 127.61950150369685
Iteration: 15, Func. Count: 158, Neg. LLF: 127.6195015789003
Optimization terminated successfully (Exit mode 0)
Current function value: 127.61950150369685
Iterations: 15
Function evaluations: 158
Gradient evaluations: 15
Iteration: 1, Func. Count: 8, Neg. LLF: 132.83680682355862
Iteration: 2, Func. Count: 16, Neg. LLF: 130.58708982024658
Iteration: 3, Func. Count: 24, Neg. LLF: 128.57776928539465
Iteration: 4, Func. Count: 31, Neg. LLF: 128.58399983091778
Iteration: 5, Func. Count: 39, Neg. LLF: 128.39487393676075
Iteration: 6, Func. Count: 46, Neg. LLF: 128.3601586259602
Iteration: 7, Func. Count: 53, Neg. LLF: 128.54208119239254
Iteration: 8, Func. Count: 62, Neg. LLF: 128.359922124706
Iteration: 9, Func. Count: 70, Neg. LLF: 128.3583836445967
Iteration: 10, Func. Count: 77, Neg. LLF: 128.35838308051345
Optimization terminated successfully (Exit mode 0)
Current function value: 128.35838308051345
Iterations: 10
Function evaluations: 77
Gradient evaluations: 10
Iteration: 1, Func. Count: 9, Neg. LLF: 134.22606212450626
Iteration: 2, Func. Count: 18, Neg. LLF: 138.9098190925933
Iteration: 3, Func. Count: 27, Neg. LLF: 126.74142360862359
Iteration: 4, Func. Count: 35, Neg. LLF: 127.1378722819669
Iteration: 5, Func. Count: 44, Neg. LLF: 140.78658377234242
Iteration: 6, Func. Count: 54, Neg. LLF: 126.35444559824461
Iteration: 7, Func. Count: 63, Neg. LLF: 126.29758162249341
Iteration: 8, Func. Count: 71, Neg. LLF: 126.29725207689191
Iteration: 9, Func. Count: 79, Neg. LLF: 126.29723295851805
Iteration: 10, Func. Count: 87, Neg. LLF: 126.29722986995506
Iteration: 11, Func. Count: 94, Neg. LLF: 126.29722982800985
Optimization terminated successfully (Exit mode 0)
Current function value: 126.29722986995506
Iterations: 11
Function evaluations: 94
Gradient evaluations: 11
Iteration: 1, Func. Count: 10, Neg. LLF: 132.77868977090253
Iteration: 2, Func. Count: 21, Neg. LLF: 131.8237537005465
Iteration: 3, Func. Count: 31, Neg. LLF: 127.67780350911937
Iteration: 4, Func. Count: 40, Neg. LLF: 127.81089196684228
Iteration: 5, Func. Count: 50, Neg. LLF: 128.85433337748665
Iteration: 6, Func. Count: 61, Neg. LLF: 127.64903830895776
Iteration: 7, Func. Count: 71, Neg. LLF: 127.62250933333222
Iteration: 8, Func. Count: 80, Neg. LLF: 127.61975157847708
Iteration: 9, Func. Count: 89, Neg. LLF: 127.61953344645039
Iteration: 10, Func. Count: 98, Neg. LLF: 127.61950148671835
Iteration: 11, Func. Count: 106, Neg. LLF: 127.61950148672155
Optimization terminated successfully (Exit mode 0)
Current function value: 127.61950148671835
Iterations: 11
Function evaluations: 106
Gradient evaluations: 11
Iteration: 1, Func. Count: 11, Neg. LLF: 132.78604402999014
Iteration: 2, Func. Count: 23, Neg. LLF: 131.6045494234974
Iteration: 3, Func. Count: 34, Neg. LLF: 127.69203242907167
Iteration: 4, Func. Count: 44, Neg. LLF: 127.6348351886651
Iteration: 5, Func. Count: 54, Neg. LLF: 127.92384267794988
Iteration: 6, Func. Count: 66, Neg. LLF: 127.6871479759029
Iteration: 7, Func. Count: 77, Neg. LLF: 127.62539669923072
Iteration: 8, Func. Count: 87, Neg. LLF: 127.62148171595592
Iteration: 9, Func. Count: 97, Neg. LLF: 127.61952866073837
Iteration: 10, Func. Count: 107, Neg. LLF: 127.61950218163784
Iteration: 11, Func. Count: 117, Neg. LLF: 127.6195014939264
Optimization terminated successfully (Exit mode 0)
Current function value: 127.6195014939264
Iterations: 11
Function evaluations: 117
Gradient evaluations: 11
Iteration: 1, Func. Count: 12, Neg. LLF: 132.7337548985277
Iteration: 2, Func. Count: 26, Neg. LLF: 130.849683615195
Iteration: 3, Func. Count: 38, Neg. LLF: 127.75868899479556
Iteration: 4, Func. Count: 49, Neg. LLF: 128.20715092903862
Iteration: 5, Func. Count: 61, Neg. LLF: 128.51031739019373
Iteration: 6, Func. Count: 74, Neg. LLF: 127.64723735485222
Iteration: 7, Func. Count: 85, Neg. LLF: 127.63178358028951
Iteration: 8, Func. Count: 96, Neg. LLF: 127.62648432106388
Iteration: 9, Func. Count: 107, Neg. LLF: 127.62018550067216
Iteration: 10, Func. Count: 118, Neg. LLF: 127.61958171295603
Iteration: 11, Func. Count: 129, Neg. LLF: 127.61952180357936
Iteration: 12, Func. Count: 140, Neg. LLF: 127.61951184558023
Iteration: 13, Func. Count: 151, Neg. LLF: 127.61950169398138
Iteration: 14, Func. Count: 161, Neg. LLF: 127.61950176913756
Optimization terminated successfully (Exit mode 0)
Current function value: 127.61950169398138
Iterations: 14
Function evaluations: 161
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 132.64754720938015
Iteration: 2, Func. Count: 18, Neg. LLF: 137.94912208477206
Iteration: 3, Func. Count: 27, Neg. LLF: 129.56847478196954
Iteration: 4, Func. Count: 35, Neg. LLF: 128.9596311470304
Iteration: 5, Func. Count: 43, Neg. LLF: 130.46376446952235
Iteration: 6, Func. Count: 53, Neg. LLF: 128.5883756512395
Iteration: 7, Func. Count: 61, Neg. LLF: 128.44474929375545
Iteration: 8, Func. Count: 69, Neg. LLF: 128.49310308325383
Iteration: 9, Func. Count: 78, Neg. LLF: 128.36231358705405
Iteration: 10, Func. Count: 86, Neg. LLF: 128.35595360082323
Iteration: 11, Func. Count: 94, Neg. LLF: 128.3552025303678
Iteration: 12, Func. Count: 102, Neg. LLF: 128.35481333154874
Iteration: 13, Func. Count: 110, Neg. LLF: 128.3547029362533
Iteration: 14, Func. Count: 118, Neg. LLF: 128.35466850226388
Iteration: 15, Func. Count: 126, Neg. LLF: 128.35466457791014
Iteration: 16, Func. Count: 133, Neg. LLF: 128.35466457790403
Optimization terminated successfully (Exit mode 0)
Current function value: 128.35466457791014
Iterations: 16
Function evaluations: 133
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 134.7319775793068
Iteration: 2, Func. Count: 20, Neg. LLF: 128.58125148204107
Iteration: 3, Func. Count: 30, Neg. LLF: 128.07761065612274
Iteration: 4, Func. Count: 40, Neg. LLF: 127.36159040274343
Iteration: 5, Func. Count: 49, Neg. LLF: 147.2259459959837
Iteration: 6, Func. Count: 59, Neg. LLF: 130.02319015348291
Iteration: 7, Func. Count: 69, Neg. LLF: 126.40561053987524
Iteration: 8, Func. Count: 78, Neg. LLF: 126.36961083599088
Iteration: 9, Func. Count: 88, Neg. LLF: 126.25525523840363
Iteration: 10, Func. Count: 98, Neg. LLF: 126.22109772885484
Iteration: 11, Func. Count: 107, Neg. LLF: 126.21988547077879
Iteration: 12, Func. Count: 116, Neg. LLF: 126.21987760977929
Iteration: 13, Func. Count: 124, Neg. LLF: 126.21987756557103
Optimization terminated successfully (Exit mode 0)
Current function value: 126.21987760977929
Iterations: 13
Function evaluations: 124
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 130.64678518137305
Iteration: 2, Func. Count: 23, Neg. LLF: 134.9298455538371
Iteration: 3, Func. Count: 34, Neg. LLF: 128.10390650773252
Iteration: 4, Func. Count: 45, Neg. LLF: 128.26411635998306
Iteration: 5, Func. Count: 56, Neg. LLF: 136.07977204705796
Iteration: 6, Func. Count: 67, Neg. LLF: 127.1489006599653
Iteration: 7, Func. Count: 77, Neg. LLF: 132.78627033675735
Iteration: 8, Func. Count: 89, Neg. LLF: 127.16912716286909
Iteration: 9, Func. Count: 100, Neg. LLF: 127.26376465155539
Iteration: 10, Func. Count: 111, Neg. LLF: 127.10157428330459
Iteration: 11, Func. Count: 121, Neg. LLF: 127.10132586963171
Iteration: 12, Func. Count: 131, Neg. LLF: 127.10124003974505
Iteration: 13, Func. Count: 141, Neg. LLF: 127.10121596088594
Iteration: 14, Func. Count: 151, Neg. LLF: 127.10121192737166
Iteration: 15, Func. Count: 160, Neg. LLF: 127.1012119273399
Optimization terminated successfully (Exit mode 0)
Current function value: 127.10121192737166
Iterations: 15
Function evaluations: 160
Gradient evaluations: 15
Iteration: 1, Func. Count: 12, Neg. LLF: 131.1545704615033
Iteration: 2, Func. Count: 25, Neg. LLF: 134.52862551967354
Iteration: 3, Func. Count: 37, Neg. LLF: 135.4337473553614
Iteration: 4, Func. Count: 49, Neg. LLF: 128.78778445232481
Iteration: 5, Func. Count: 61, Neg. LLF: 127.7113396523378
Iteration: 6, Func. Count: 73, Neg. LLF: 127.19222766312853
Iteration: 7, Func. Count: 85, Neg. LLF: 128.14588479454676
Iteration: 8, Func. Count: 97, Neg. LLF: 127.03572469434249
Iteration: 9, Func. Count: 108, Neg. LLF: 127.03173523523967
Iteration: 10, Func. Count: 119, Neg. LLF: 127.02966949800769
Iteration: 11, Func. Count: 130, Neg. LLF: 127.02950967753364
Iteration: 12, Func. Count: 141, Neg. LLF: 127.02947467993096
Iteration: 13, Func. Count: 152, Neg. LLF: 127.02946383091054
Iteration: 14, Func. Count: 162, Neg. LLF: 127.02946383082026
Optimization terminated successfully (Exit mode 0)
Current function value: 127.02946383091054
Iterations: 14
Function evaluations: 162
Gradient evaluations: 14
Iteration: 1, Func. Count: 13, Neg. LLF: 131.78323707265594
Iteration: 2, Func. Count: 27, Neg. LLF: 133.83146318537138
Iteration: 3, Func. Count: 40, Neg. LLF: 128.52157746469555
Iteration: 4, Func. Count: 53, Neg. LLF: 128.94002996335072
Iteration: 5, Func. Count: 66, Neg. LLF: 129.16866225978356
Iteration: 6, Func. Count: 79, Neg. LLF: 129.59596794673806
Iteration: 7, Func. Count: 92, Neg. LLF: 127.62002464978534
Iteration: 8, Func. Count: 105, Neg. LLF: 127.04933554695242
Iteration: 9, Func. Count: 117, Neg. LLF: 127.03476078318963
Iteration: 10, Func. Count: 129, Neg. LLF: 127.02960434632874
Iteration: 11, Func. Count: 141, Neg. LLF: 127.02949523492725
Iteration: 12, Func. Count: 153, Neg. LLF: 127.02946569015981
Iteration: 13, Func. Count: 165, Neg. LLF: 127.0294645572739
Iteration: 14, Func. Count: 177, Neg. LLF: 127.02946364813052
Optimization terminated successfully (Exit mode 0)
Current function value: 127.02946364813052
Iterations: 14
Function evaluations: 177
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 134.8621818649714
Iteration: 2, Func. Count: 20, Neg. LLF: 133.7416976124686
Iteration: 3, Func. Count: 30, Neg. LLF: 128.44015251147417
Iteration: 4, Func. Count: 39, Neg. LLF: 128.349597982896
Iteration: 5, Func. Count: 49, Neg. LLF: 127.98630449930188
Iteration: 6, Func. Count: 58, Neg. LLF: 127.97667965070714
Iteration: 7, Func. Count: 67, Neg. LLF: 127.97089926910452
Iteration: 8, Func. Count: 76, Neg. LLF: 127.96738422068447
Iteration: 9, Func. Count: 85, Neg. LLF: 127.9670635383659
Iteration: 10, Func. Count: 94, Neg. LLF: 127.96701239856439
Iteration: 11, Func. Count: 103, Neg. LLF: 127.9669981445301
Iteration: 12, Func. Count: 112, Neg. LLF: 127.96699641896137
Iteration: 13, Func. Count: 120, Neg. LLF: 127.96699641897591
Optimization terminated successfully (Exit mode 0)
Current function value: 127.96699641896137
Iterations: 13
Function evaluations: 120
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 141.125332237819
Iteration: 2, Func. Count: 23, Neg. LLF: 152.41594616670176
Iteration: 3, Func. Count: 34, Neg. LLF: 162.87959262332572
Iteration: 4, Func. Count: 45, Neg. LLF: 130.69966231920756
Iteration: 5, Func. Count: 56, Neg. LLF: 125.66109744248837
Iteration: 6, Func. Count: 66, Neg. LLF: 125.53857734296291
Iteration: 7, Func. Count: 76, Neg. LLF: 125.42405377626956
Iteration: 8, Func. Count: 86, Neg. LLF: 125.39715834744334
Iteration: 9, Func. Count: 96, Neg. LLF: 125.38578933918821
Iteration: 10, Func. Count: 106, Neg. LLF: 125.38214618745164
Iteration: 11, Func. Count: 116, Neg. LLF: 125.37801741618122
Iteration: 12, Func. Count: 126, Neg. LLF: 125.37787489830433
Iteration: 13, Func. Count: 136, Neg. LLF: 125.37786914771617
Iteration: 14, Func. Count: 145, Neg. LLF: 125.37786914769646
Optimization terminated successfully (Exit mode 0)
Current function value: 125.37786914771617
Iterations: 14
Function evaluations: 145
Gradient evaluations: 14
Iteration: 1, Func. Count: 12, Neg. LLF: 130.78755823319233
Iteration: 2, Func. Count: 25, Neg. LLF: 134.96725690370997
Iteration: 3, Func. Count: 37, Neg. LLF: 129.08012034673945
Iteration: 4, Func. Count: 49, Neg. LLF: 127.64537516066461
Iteration: 5, Func. Count: 60, Neg. LLF: 142.61145846825443
Iteration: 6, Func. Count: 72, Neg. LLF: 138.25752858581876
Iteration: 7, Func. Count: 84, Neg. LLF: 127.71315162147049
Iteration: 8, Func. Count: 96, Neg. LLF: 127.1171193802761
Iteration: 9, Func. Count: 107, Neg. LLF: 127.17041702758493
Iteration: 10, Func. Count: 119, Neg. LLF: 127.07585842422225
Iteration: 11, Func. Count: 130, Neg. LLF: 127.0690205732158
Iteration: 12, Func. Count: 141, Neg. LLF: 127.06652987344248
Iteration: 13, Func. Count: 152, Neg. LLF: 127.06569801784973
Iteration: 14, Func. Count: 163, Neg. LLF: 127.06541999652163
Iteration: 15, Func. Count: 174, Neg. LLF: 127.06539472485979
Iteration: 16, Func. Count: 185, Neg. LLF: 127.06538939194623
Iteration: 17, Func. Count: 195, Neg. LLF: 127.06538939198258
Optimization terminated successfully (Exit mode 0)
Current function value: 127.06538939194623
Iterations: 17
Function evaluations: 195
Gradient evaluations: 17
Iteration: 1, Func. Count: 13, Neg. LLF: 130.81906654433473
Iteration: 2, Func. Count: 27, Neg. LLF: 134.62141225482839
Iteration: 3, Func. Count: 40, Neg. LLF: 131.65288749229325
Iteration: 4, Func. Count: 53, Neg. LLF: 127.27143315887842
Iteration: 5, Func. Count: 65, Neg. LLF: 128.6430463734153
Iteration: 6, Func. Count: 78, Neg. LLF: 130.80821597949168
Iteration: 7, Func. Count: 92, Neg. LLF: 127.37219982225942
Iteration: 8, Func. Count: 105, Neg. LLF: 127.23588299211112
Iteration: 9, Func. Count: 118, Neg. LLF: 127.02414571178556
Iteration: 10, Func. Count: 131, Neg. LLF: 127.00196668551956
Iteration: 11, Func. Count: 143, Neg. LLF: 127.00140133723414
Iteration: 12, Func. Count: 155, Neg. LLF: 127.00135527957246
Iteration: 13, Func. Count: 167, Neg. LLF: 127.00133938912495
Iteration: 14, Func. Count: 178, Neg. LLF: 127.00133938906336
Optimization terminated successfully (Exit mode 0)
Current function value: 127.00133938912495
Iterations: 14
Function evaluations: 178
Gradient evaluations: 14
Iteration: 1, Func. Count: 14, Neg. LLF: 131.88435025379508
Iteration: 2, Func. Count: 29, Neg. LLF: 133.80344672255578
Iteration: 3, Func. Count: 43, Neg. LLF: 130.98943836888557
Iteration: 4, Func. Count: 57, Neg. LLF: 127.709340668037
Iteration: 5, Func. Count: 70, Neg. LLF: 127.52569197039739
Iteration: 6, Func. Count: 84, Neg. LLF: 129.25227717133654
Iteration: 7, Func. Count: 99, Neg. LLF: 127.5298251205701
Iteration: 8, Func. Count: 113, Neg. LLF: 127.18457616958794
Iteration: 9, Func. Count: 127, Neg. LLF: 127.03838161669474
Iteration: 10, Func. Count: 141, Neg. LLF: 127.00560292969278
Iteration: 11, Func. Count: 154, Neg. LLF: 127.00146494849876
Iteration: 12, Func. Count: 167, Neg. LLF: 127.00137855783333
Iteration: 13, Func. Count: 180, Neg. LLF: 127.00134911930854
Iteration: 14, Func. Count: 193, Neg. LLF: 127.00134040178007
Iteration: 15, Func. Count: 206, Neg. LLF: 127.00133912696843
Iteration: 16, Func. Count: 218, Neg. LLF: 127.00133920482658
Optimization terminated successfully (Exit mode 0)
Current function value: 127.00133912696843
Iterations: 16
Function evaluations: 218
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 133.46506227379064
Iteration: 2, Func. Count: 22, Neg. LLF: 133.85466437378517
Iteration: 3, Func. Count: 33, Neg. LLF: 128.19318679433752
Iteration: 4, Func. Count: 43, Neg. LLF: 129.1232877598982
Iteration: 5, Func. Count: 54, Neg. LLF: 128.04491669323883
Iteration: 6, Func. Count: 65, Neg. LLF: 127.92071319326884
Iteration: 7, Func. Count: 75, Neg. LLF: 128.0600916808784
Iteration: 8, Func. Count: 86, Neg. LLF: 127.91695890710677
Iteration: 9, Func. Count: 97, Neg. LLF: 127.9010111615247
Iteration: 10, Func. Count: 107, Neg. LLF: 127.90026346806164
Iteration: 11, Func. Count: 117, Neg. LLF: 127.8999977528192
Iteration: 12, Func. Count: 127, Neg. LLF: 127.89996514559479
Iteration: 13, Func. Count: 137, Neg. LLF: 127.8999576262897
Iteration: 14, Func. Count: 147, Neg. LLF: 127.89995596373963
Iteration: 15, Func. Count: 156, Neg. LLF: 127.89995596374551
Optimization terminated successfully (Exit mode 0)
Current function value: 127.89995596373963
Iterations: 15
Function evaluations: 156
Gradient evaluations: 15
Iteration: 1, Func. Count: 12, Neg. LLF: 141.0839211654968
Iteration: 2, Func. Count: 25, Neg. LLF: 152.3102246822064
Iteration: 3, Func. Count: 37, Neg. LLF: 162.77110044084986
Iteration: 4, Func. Count: 49, Neg. LLF: 130.72158106853763
Iteration: 5, Func. Count: 61, Neg. LLF: 125.62555863504225
Iteration: 6, Func. Count: 72, Neg. LLF: 125.51566281638888
Iteration: 7, Func. Count: 83, Neg. LLF: 125.41600592633245
Iteration: 8, Func. Count: 94, Neg. LLF: 125.39407074397941
Iteration: 9, Func. Count: 105, Neg. LLF: 125.38569065109834
Iteration: 10, Func. Count: 116, Neg. LLF: 125.38132843452115
Iteration: 11, Func. Count: 127, Neg. LLF: 125.37808014887108
Iteration: 12, Func. Count: 138, Neg. LLF: 125.37787618826631
Iteration: 13, Func. Count: 149, Neg. LLF: 125.37786921275584
Iteration: 14, Func. Count: 159, Neg. LLF: 125.37786921273374
Optimization terminated successfully (Exit mode 0)
Current function value: 125.37786921275584
Iterations: 14
Function evaluations: 159
Gradient evaluations: 14
Iteration: 1, Func. Count: 13, Neg. LLF: 130.98558078509527
Iteration: 2, Func. Count: 27, Neg. LLF: 134.87400842625564
Iteration: 3, Func. Count: 40, Neg. LLF: 128.85847116295284
Iteration: 4, Func. Count: 53, Neg. LLF: 127.65053674853536
Iteration: 5, Func. Count: 66, Neg. LLF: 134.3596557472394
Iteration: 6, Func. Count: 79, Neg. LLF: 127.1218984832591
Iteration: 7, Func. Count: 91, Neg. LLF: 139.02314278440252
Iteration: 8, Func. Count: 105, Neg. LLF: 127.13785946997004
Iteration: 9, Func. Count: 118, Neg. LLF: 127.46134802136335
Iteration: 10, Func. Count: 131, Neg. LLF: 127.06630542429525
Iteration: 11, Func. Count: 143, Neg. LLF: 127.06548954682238
Iteration: 12, Func. Count: 155, Neg. LLF: 127.06542102614344
Iteration: 13, Func. Count: 167, Neg. LLF: 127.06539419142278
Iteration: 14, Func. Count: 179, Neg. LLF: 127.06538920831329
Iteration: 15, Func. Count: 190, Neg. LLF: 127.06538920830153
Optimization terminated successfully (Exit mode 0)
Current function value: 127.06538920831329
Iterations: 15
Function evaluations: 190
Gradient evaluations: 15
Iteration: 1, Func. Count: 14, Neg. LLF: 130.68219205332016
Iteration: 2, Func. Count: 29, Neg. LLF: 134.68823679603952
Iteration: 3, Func. Count: 43, Neg. LLF: 134.05322079247125
Iteration: 4, Func. Count: 58, Neg. LLF: 129.11940875009677
Iteration: 5, Func. Count: 72, Neg. LLF: 127.37650868005247
Iteration: 6, Func. Count: 85, Neg. LLF: 129.04064860577049
Iteration: 7, Func. Count: 99, Neg. LLF: 127.716014415942
Iteration: 8, Func. Count: 113, Neg. LLF: 127.35069325369372
Iteration: 9, Func. Count: 127, Neg. LLF: 127.0143783225568
Iteration: 10, Func. Count: 140, Neg. LLF: 127.00631143043681
Iteration: 11, Func. Count: 153, Neg. LLF: 127.00212407133283
Iteration: 12, Func. Count: 166, Neg. LLF: 127.00148949607912
Iteration: 13, Func. Count: 179, Neg. LLF: 127.00139020461862
Iteration: 14, Func. Count: 192, Neg. LLF: 127.00134529340392
Iteration: 15, Func. Count: 205, Neg. LLF: 127.00133936794454
Iteration: 16, Func. Count: 217, Neg. LLF: 127.0013393678477
Optimization terminated successfully (Exit mode 0)
Current function value: 127.00133936794454
Iterations: 16
Function evaluations: 217
Gradient evaluations: 16
Iteration: 1, Func. Count: 15, Neg. LLF: 131.98856143621947
Iteration: 2, Func. Count: 31, Neg. LLF: 133.78000274001778
Iteration: 3, Func. Count: 46, Neg. LLF: 131.04665830260154
Iteration: 4, Func. Count: 61, Neg. LLF: 127.55022614903646
Iteration: 5, Func. Count: 75, Neg. LLF: 128.07073549339896
Iteration: 6, Func. Count: 90, Neg. LLF: 131.95527845677245
Iteration: 7, Func. Count: 106, Neg. LLF: 128.0005271474826
Iteration: 8, Func. Count: 121, Neg. LLF: 127.12713988468822
Iteration: 9, Func. Count: 136, Neg. LLF: 127.04929108265566
Iteration: 10, Func. Count: 151, Neg. LLF: 127.01166503912081
Iteration: 11, Func. Count: 166, Neg. LLF: 127.0021985763328
Iteration: 12, Func. Count: 180, Neg. LLF: 127.00142168727248
Iteration: 13, Func. Count: 194, Neg. LLF: 127.00134737700138
Iteration: 14, Func. Count: 208, Neg. LLF: 127.00133973153368
Iteration: 15, Func. Count: 221, Neg. LLF: 127.00133980944008
Optimization terminated successfully (Exit mode 0)
Current function value: 127.00133973153368
Iterations: 15
Function evaluations: 221
Gradient evaluations: 15
Iteration: 1, Func. Count: 8, Neg. LLF: 126.11414261663256
Iteration: 2, Func. Count: 16, Neg. LLF: 124.59446468287976
Iteration: 3, Func. Count: 24, Neg. LLF: 129.88928329339572
Iteration: 4, Func. Count: 32, Neg. LLF: 132.67353447078494
Iteration: 5, Func. Count: 40, Neg. LLF: 153.8719747779601
Iteration: 6, Func. Count: 48, Neg. LLF: 130.5094284818612
Iteration: 7, Func. Count: 56, Neg. LLF: 123.02555009850357
Iteration: 8, Func. Count: 64, Neg. LLF: 122.90980797260563
Iteration: 9, Func. Count: 71, Neg. LLF: 122.8917959068411
Iteration: 10, Func. Count: 78, Neg. LLF: 122.96160800137518
Iteration: 11, Func. Count: 86, Neg. LLF: 122.95234542827406
Iteration: 12, Func. Count: 94, Neg. LLF: 122.87499818473242
Iteration: 13, Func. Count: 101, Neg. LLF: 122.87454414044349
Iteration: 14, Func. Count: 108, Neg. LLF: 122.87454230349965
Iteration: 15, Func. Count: 114, Neg. LLF: 122.87454230349816
Optimization terminated successfully (Exit mode 0)
Current function value: 122.87454230349965
Iterations: 15
Function evaluations: 114
Gradient evaluations: 15
Iteration: 1, Func. Count: 9, Neg. LLF: 127.59092647013553
Iteration: 2, Func. Count: 18, Neg. LLF: 132.00316337571934
Iteration: 3, Func. Count: 27, Neg. LLF: 127.96902259177237
Iteration: 4, Func. Count: 36, Neg. LLF: 156.34263022794195
Iteration: 5, Func. Count: 45, Neg. LLF: 126.71190666202513
Iteration: 6, Func. Count: 54, Neg. LLF: 122.917474288044
Iteration: 7, Func. Count: 62, Neg. LLF: 124.41053203856973
Iteration: 8, Func. Count: 71, Neg. LLF: 122.95832071682213
Iteration: 9, Func. Count: 80, Neg. LLF: 122.877855377774
Iteration: 10, Func. Count: 88, Neg. LLF: 122.87489358664112
Iteration: 11, Func. Count: 96, Neg. LLF: 122.874565355123
Iteration: 12, Func. Count: 104, Neg. LLF: 122.87454415099467
Iteration: 13, Func. Count: 112, Neg. LLF: 122.8745424702293
Iteration: 14, Func. Count: 119, Neg. LLF: 122.87454248183391
Optimization terminated successfully (Exit mode 0)
Current function value: 122.8745424702293
Iterations: 14
Function evaluations: 119
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 125.31875410903733
Iteration: 2, Func. Count: 19, Neg. LLF: 127.28109963172854
Iteration: 3, Func. Count: 29, Neg. LLF: 136.001756700346
Iteration: 4, Func. Count: 40, Neg. LLF: 146.8301357324623
Iteration: 5, Func. Count: 50, Neg. LLF: 151.99244464560425
Iteration: 6, Func. Count: 60, Neg. LLF: 186.00975332399165
Iteration: 7, Func. Count: 70, Neg. LLF: 125.19745866918839
Iteration: 8, Func. Count: 80, Neg. LLF: 123.00005840418301
Iteration: 9, Func. Count: 90, Neg. LLF: 122.88035583682216
Iteration: 10, Func. Count: 100, Neg. LLF: 122.87490721217438
Iteration: 11, Func. Count: 109, Neg. LLF: 122.87457929425348
Iteration: 12, Func. Count: 118, Neg. LLF: 122.8745474691405
Iteration: 13, Func. Count: 127, Neg. LLF: 122.87454251562038
Iteration: 14, Func. Count: 135, Neg. LLF: 122.87454259706557
Optimization terminated successfully (Exit mode 0)
Current function value: 122.87454251562038
Iterations: 14
Function evaluations: 135
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 125.37075913878105
Iteration: 2, Func. Count: 21, Neg. LLF: 128.07261624369372
Iteration: 3, Func. Count: 32, Neg. LLF: 135.5081404387243
Iteration: 4, Func. Count: 44, Neg. LLF: 147.44098741098668
Iteration: 5, Func. Count: 55, Neg. LLF: 150.7263299241797
Iteration: 6, Func. Count: 66, Neg. LLF: 195.7192953690708
Iteration: 7, Func. Count: 77, Neg. LLF: 125.46514880374153
Iteration: 8, Func. Count: 88, Neg. LLF: 123.02660414772635
Iteration: 9, Func. Count: 99, Neg. LLF: 122.88549962721223
Iteration: 10, Func. Count: 110, Neg. LLF: 122.87509599177616
Iteration: 11, Func. Count: 120, Neg. LLF: 122.87459958164789
Iteration: 12, Func. Count: 130, Neg. LLF: 122.87454783773192
Iteration: 13, Func. Count: 140, Neg. LLF: 122.8745424246253
Iteration: 14, Func. Count: 149, Neg. LLF: 122.87454251035953
Optimization terminated successfully (Exit mode 0)
Current function value: 122.8745424246253
Iterations: 14
Function evaluations: 149
Gradient evaluations: 14
Iteration: 1, Func. Count: 12, Neg. LLF: 125.39476758210134
Iteration: 2, Func. Count: 23, Neg. LLF: 128.50097118567697
Iteration: 3, Func. Count: 35, Neg. LLF: 135.17166598916435
Iteration: 4, Func. Count: 48, Neg. LLF: 147.9947497449198
Iteration: 5, Func. Count: 60, Neg. LLF: 150.4263405058122
Iteration: 6, Func. Count: 72, Neg. LLF: 210.57042124253852
Iteration: 7, Func. Count: 84, Neg. LLF: 143.01181109576729
Iteration: 8, Func. Count: 96, Neg. LLF: 124.2577592662625
Iteration: 9, Func. Count: 108, Neg. LLF: 122.97333499361706
Iteration: 10, Func. Count: 120, Neg. LLF: 122.879458686203
Iteration: 11, Func. Count: 131, Neg. LLF: 122.874717792942
Iteration: 12, Func. Count: 142, Neg. LLF: 122.87454721880773
Iteration: 13, Func. Count: 153, Neg. LLF: 122.87454363363398
Iteration: 14, Func. Count: 164, Neg. LLF: 122.87454221299046
Iteration: 15, Func. Count: 174, Neg. LLF: 122.87454237687147
Optimization terminated successfully (Exit mode 0)
Current function value: 122.87454221299046
Iterations: 15
Function evaluations: 174
Gradient evaluations: 15
Iteration: 1, Func. Count: 9, Neg. LLF: 126.10058072848472
Iteration: 2, Func. Count: 18, Neg. LLF: 124.80020016029471
Iteration: 3, Func. Count: 27, Neg. LLF: 134.86027075271747
Iteration: 4, Func. Count: 36, Neg. LLF: 128.53627871032336
Iteration: 5, Func. Count: 45, Neg. LLF: 135.4174470388458
Iteration: 6, Func. Count: 54, Neg. LLF: 130.90535869060008
Iteration: 7, Func. Count: 63, Neg. LLF: 123.11008240977063
Iteration: 8, Func. Count: 72, Neg. LLF: 122.89895389078906
Iteration: 9, Func. Count: 80, Neg. LLF: 123.66166938346456
Iteration: 10, Func. Count: 90, Neg. LLF: 122.89152439357242
Iteration: 11, Func. Count: 98, Neg. LLF: 122.88169869871209
Iteration: 12, Func. Count: 106, Neg. LLF: 122.87515529723049
Iteration: 13, Func. Count: 114, Neg. LLF: 122.87457544450108
Iteration: 14, Func. Count: 122, Neg. LLF: 122.87454238852723
Iteration: 15, Func. Count: 129, Neg. LLF: 122.8745423867415
Optimization terminated successfully (Exit mode 0)
Current function value: 122.87454238852723
Iterations: 15
Function evaluations: 129
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 127.46674240239398
Iteration: 2, Func. Count: 20, Neg. LLF: 132.22374455635205
Iteration: 3, Func. Count: 30, Neg. LLF: 127.79843626034256
Iteration: 4, Func. Count: 40, Neg. LLF: 153.78992443808866
Iteration: 5, Func. Count: 50, Neg. LLF: 127.10641900510194
Iteration: 6, Func. Count: 60, Neg. LLF: 122.91801124268643
Iteration: 7, Func. Count: 69, Neg. LLF: 124.49850143430136
Iteration: 8, Func. Count: 80, Neg. LLF: 123.10450585153873
Iteration: 9, Func. Count: 90, Neg. LLF: 122.88000196631363
Iteration: 10, Func. Count: 100, Neg. LLF: 122.8751089754791
Iteration: 11, Func. Count: 109, Neg. LLF: 122.87458669309754
Iteration: 12, Func. Count: 118, Neg. LLF: 122.87455559270772
Iteration: 13, Func. Count: 127, Neg. LLF: 122.874546352166
Iteration: 14, Func. Count: 136, Neg. LLF: 122.87454224364359
Iteration: 15, Func. Count: 144, Neg. LLF: 122.87454225529986
Optimization terminated successfully (Exit mode 0)
Current function value: 122.87454224364359
Iterations: 15
Function evaluations: 144
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 125.31374020502196
Iteration: 2, Func. Count: 21, Neg. LLF: 127.31878309237075
Iteration: 3, Func. Count: 32, Neg. LLF: 135.9407508976484
Iteration: 4, Func. Count: 44, Neg. LLF: 146.8576941145764
Iteration: 5, Func. Count: 55, Neg. LLF: 151.8809241943051
Iteration: 6, Func. Count: 66, Neg. LLF: 189.16898757984646
Iteration: 7, Func. Count: 77, Neg. LLF: 125.34332460654201
Iteration: 8, Func. Count: 88, Neg. LLF: 123.01348082139643
Iteration: 9, Func. Count: 99, Neg. LLF: 122.88072289124125
Iteration: 10, Func. Count: 110, Neg. LLF: 122.87501628482327
Iteration: 11, Func. Count: 120, Neg. LLF: 122.87458958964709
Iteration: 12, Func. Count: 130, Neg. LLF: 122.87454757413674
Iteration: 13, Func. Count: 140, Neg. LLF: 122.87454265518568
Iteration: 14, Func. Count: 149, Neg. LLF: 122.8745427366281
Optimization terminated successfully (Exit mode 0)
Current function value: 122.87454265518568
Iterations: 14
Function evaluations: 149
Gradient evaluations: 14
Iteration: 1, Func. Count: 12, Neg. LLF: 125.37317921333266
Iteration: 2, Func. Count: 23, Neg. LLF: 128.1685052732886
Iteration: 3, Func. Count: 35, Neg. LLF: 135.42424216147623
Iteration: 4, Func. Count: 48, Neg. LLF: 147.48460429895908
Iteration: 5, Func. Count: 60, Neg. LLF: 150.69679723150242
Iteration: 6, Func. Count: 72, Neg. LLF: 198.34171376534272
Iteration: 7, Func. Count: 84, Neg. LLF: 125.71159384593845
Iteration: 8, Func. Count: 96, Neg. LLF: 123.05937290845239
Iteration: 9, Func. Count: 108, Neg. LLF: 122.8891424562358
Iteration: 10, Func. Count: 120, Neg. LLF: 122.8752181196465
Iteration: 11, Func. Count: 131, Neg. LLF: 122.87461129326923
Iteration: 12, Func. Count: 142, Neg. LLF: 122.87454831894465
Iteration: 13, Func. Count: 153, Neg. LLF: 122.87454258472083
Iteration: 14, Func. Count: 163, Neg. LLF: 122.87454267044863
Optimization terminated successfully (Exit mode 0)
Current function value: 122.87454258472083
Iterations: 14
Function evaluations: 163
Gradient evaluations: 14
Iteration: 1, Func. Count: 13, Neg. LLF: 125.39942349345407
Iteration: 2, Func. Count: 25, Neg. LLF: 128.61427718510606
Iteration: 3, Func. Count: 38, Neg. LLF: 135.0933457096176
Iteration: 4, Func. Count: 52, Neg. LLF: 148.03360482504104
Iteration: 5, Func. Count: 65, Neg. LLF: 150.47879395734466
Iteration: 6, Func. Count: 78, Neg. LLF: 213.93023938910468
Iteration: 7, Func. Count: 91, Neg. LLF: 145.8914832313358
Iteration: 8, Func. Count: 104, Neg. LLF: 124.31495745042969
Iteration: 9, Func. Count: 117, Neg. LLF: 122.9805973444931
Iteration: 10, Func. Count: 130, Neg. LLF: 122.88001756069848
Iteration: 11, Func. Count: 142, Neg. LLF: 122.8747320840876
Iteration: 12, Func. Count: 154, Neg. LLF: 122.87454806724953
Iteration: 13, Func. Count: 166, Neg. LLF: 122.87454390384849
Iteration: 14, Func. Count: 178, Neg. LLF: 122.87454221797861
Iteration: 15, Func. Count: 189, Neg. LLF: 122.8745423818579
Optimization terminated successfully (Exit mode 0)
Current function value: 122.87454221797861
Iterations: 15
Function evaluations: 189
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 126.37389149151792
Iteration: 2, Func. Count: 20, Neg. LLF: 141.12477468258783
Iteration: 3, Func. Count: 30, Neg. LLF: 128.2483198744773
Iteration: 4, Func. Count: 40, Neg. LLF: 1068.925295643602
Iteration: 5, Func. Count: 50, Neg. LLF: 135.6743391418912
Iteration: 6, Func. Count: 60, Neg. LLF: 130.45888714023906
Iteration: 7, Func. Count: 70, Neg. LLF: 139.3376478819013
Iteration: 8, Func. Count: 80, Neg. LLF: 123.78830623393517
Iteration: 9, Func. Count: 90, Neg. LLF: 123.12106483505335
Iteration: 10, Func. Count: 100, Neg. LLF: 122.57606327636813
Iteration: 11, Func. Count: 109, Neg. LLF: 123.25288934503487
Iteration: 12, Func. Count: 119, Neg. LLF: 122.56709713772877
Iteration: 13, Func. Count: 129, Neg. LLF: 122.53993542649727
Iteration: 14, Func. Count: 138, Neg. LLF: 122.53645972188193
Iteration: 15, Func. Count: 147, Neg. LLF: 122.53593906441102
Iteration: 16, Func. Count: 156, Neg. LLF: 122.5359079453963
Iteration: 17, Func. Count: 165, Neg. LLF: 122.53590707604143
Optimization terminated successfully (Exit mode 0)
Current function value: 122.53590707604143
Iterations: 17
Function evaluations: 165
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 127.46704987282344
Iteration: 2, Func. Count: 22, Neg. LLF: 124.95251888271672
Iteration: 3, Func. Count: 33, Neg. LLF: 126.28449011125083
Iteration: 4, Func. Count: 44, Neg. LLF: 148.62178615702086
Iteration: 5, Func. Count: 56, Neg. LLF: 125.39971680638544
Iteration: 6, Func. Count: 67, Neg. LLF: 123.39728999863775
Iteration: 7, Func. Count: 78, Neg. LLF: 130.49685456518665
Iteration: 8, Func. Count: 89, Neg. LLF: 122.54822147587754
Iteration: 9, Func. Count: 99, Neg. LLF: 123.55215208264327
Iteration: 10, Func. Count: 110, Neg. LLF: 122.53697265483173
Iteration: 11, Func. Count: 120, Neg. LLF: 122.5361092744347
Iteration: 12, Func. Count: 130, Neg. LLF: 122.53597167018923
Iteration: 13, Func. Count: 140, Neg. LLF: 122.5359123390417
Iteration: 14, Func. Count: 150, Neg. LLF: 122.53590777051441
Iteration: 15, Func. Count: 160, Neg. LLF: 122.53590704494565
Optimization terminated successfully (Exit mode 0)
Current function value: 122.53590704494565
Iterations: 15
Function evaluations: 160
Gradient evaluations: 15
Iteration: 1, Func. Count: 12, Neg. LLF: 125.29254311035866
Iteration: 2, Func. Count: 23, Neg. LLF: 127.16300595575305
Iteration: 3, Func. Count: 35, Neg. LLF: 144.31259955083695
Iteration: 4, Func. Count: 48, Neg. LLF: 142.3595021913717
Iteration: 5, Func. Count: 60, Neg. LLF: 151.80459425044666
Iteration: 6, Func. Count: 72, Neg. LLF: 181.75083928919696
Iteration: 7, Func. Count: 84, Neg. LLF: 2974.4046911674077
Iteration: 8, Func. Count: 96, Neg. LLF: 135.81432882074859
Iteration: 9, Func. Count: 108, Neg. LLF: 171.14241675729977
Iteration: 10, Func. Count: 120, Neg. LLF: 122.63307107307301
Iteration: 11, Func. Count: 131, Neg. LLF: 122.56831169254644
Iteration: 12, Func. Count: 142, Neg. LLF: 122.60276160286216
Iteration: 13, Func. Count: 154, Neg. LLF: 122.55067300236138
Iteration: 14, Func. Count: 165, Neg. LLF: 122.53647938862608
Iteration: 15, Func. Count: 176, Neg. LLF: 122.53594292556595
Iteration: 16, Func. Count: 187, Neg. LLF: 122.53591029265581
Iteration: 17, Func. Count: 198, Neg. LLF: 122.53590760756227
Iteration: 18, Func. Count: 209, Neg. LLF: 122.53590710645608
Optimization terminated successfully (Exit mode 0)
Current function value: 122.53590710645608
Iterations: 18
Function evaluations: 209
Gradient evaluations: 18
Iteration: 1, Func. Count: 13, Neg. LLF: 125.34454456591659
Iteration: 2, Func. Count: 25, Neg. LLF: 127.92505608510899
Iteration: 3, Func. Count: 38, Neg. LLF: 143.4373121704557
Iteration: 4, Func. Count: 52, Neg. LLF: 146.34379662360578
Iteration: 5, Func. Count: 65, Neg. LLF: 148.74032208723705
Iteration: 6, Func. Count: 78, Neg. LLF: 200.60427957170566
Iteration: 7, Func. Count: 91, Neg. LLF: 186477.16216439495
Iteration: 8, Func. Count: 104, Neg. LLF: 181.43406732527703
Iteration: 9, Func. Count: 117, Neg. LLF: 141.69953030006678
Iteration: 10, Func. Count: 130, Neg. LLF: 122.58973595703641
Iteration: 11, Func. Count: 142, Neg. LLF: 122.5860402427048
Iteration: 12, Func. Count: 155, Neg. LLF: 122.65207458475113
Iteration: 13, Func. Count: 168, Neg. LLF: 122.53659142787149
Iteration: 14, Func. Count: 180, Neg. LLF: 122.53982038817774
Iteration: 15, Func. Count: 193, Neg. LLF: 122.53597037134149
Iteration: 16, Func. Count: 205, Neg. LLF: 122.5359101618255
Iteration: 17, Func. Count: 217, Neg. LLF: 122.53590773446508
Iteration: 18, Func. Count: 229, Neg. LLF: 122.53590706987974
Optimization terminated successfully (Exit mode 0)
Current function value: 122.53590706987974
Iterations: 18
Function evaluations: 229
Gradient evaluations: 18
Iteration: 1, Func. Count: 14, Neg. LLF: 125.36968166290484
Iteration: 2, Func. Count: 27, Neg. LLF: 128.33315098127667
Iteration: 3, Func. Count: 41, Neg. LLF: 143.13076892253514
Iteration: 4, Func. Count: 56, Neg. LLF: 149.0446802203082
Iteration: 5, Func. Count: 70, Neg. LLF: 147.93562534991872
Iteration: 6, Func. Count: 84, Neg. LLF: 191.5024884482067
Iteration: 7, Func. Count: 98, Neg. LLF: 4212.577434380323
Iteration: 8, Func. Count: 112, Neg. LLF: 182.218958432979
Iteration: 9, Func. Count: 126, Neg. LLF: 141.5949459318896
Iteration: 10, Func. Count: 140, Neg. LLF: 122.62671648200956
Iteration: 11, Func. Count: 153, Neg. LLF: 122.8255136235755
Iteration: 12, Func. Count: 167, Neg. LLF: 122.69621338578136
Iteration: 13, Func. Count: 181, Neg. LLF: 122.53684116389374
Iteration: 14, Func. Count: 194, Neg. LLF: 122.54064120225043
Iteration: 15, Func. Count: 208, Neg. LLF: 122.53604690295236
Iteration: 16, Func. Count: 221, Neg. LLF: 122.53591488570028
Iteration: 17, Func. Count: 234, Neg. LLF: 122.53590913415812
Iteration: 18, Func. Count: 247, Neg. LLF: 122.53590718287768
Iteration: 19, Func. Count: 259, Neg. LLF: 122.53590734936704
Optimization terminated successfully (Exit mode 0)
Current function value: 122.53590718287768
Iterations: 19
Function evaluations: 259
Gradient evaluations: 19
Iteration: 1, Func. Count: 11, Neg. LLF: 126.90479885706074
Iteration: 2, Func. Count: 22, Neg. LLF: 171.47672446093134
Iteration: 3, Func. Count: 33, Neg. LLF: 123.39533385671011
Iteration: 4, Func. Count: 43, Neg. LLF: 519.2813508213385
Iteration: 5, Func. Count: 54, Neg. LLF: 137.7241570455943
Iteration: 6, Func. Count: 65, Neg. LLF: 128.89519534956236
Iteration: 7, Func. Count: 78, Neg. LLF: 123.8770274363094
Iteration: 8, Func. Count: 89, Neg. LLF: 126.10499316292533
Iteration: 9, Func. Count: 100, Neg. LLF: 122.5794895366237
Iteration: 10, Func. Count: 110, Neg. LLF: 123.16132464295256
Iteration: 11, Func. Count: 121, Neg. LLF: 123.26467202324461
Iteration: 12, Func. Count: 133, Neg. LLF: 122.39289007252583
Iteration: 13, Func. Count: 143, Neg. LLF: 122.37935480484943
Iteration: 14, Func. Count: 153, Neg. LLF: 122.37495818643501
Iteration: 15, Func. Count: 163, Neg. LLF: 122.37295360489682
Iteration: 16, Func. Count: 173, Neg. LLF: 122.37238555786206
Iteration: 17, Func. Count: 183, Neg. LLF: 122.37213732724936
Iteration: 18, Func. Count: 193, Neg. LLF: 122.37208728530628
Iteration: 19, Func. Count: 203, Neg. LLF: 122.37206691604976
Iteration: 20, Func. Count: 213, Neg. LLF: 122.3720630223559
Iteration: 21, Func. Count: 222, Neg. LLF: 122.37206302234462
Optimization terminated successfully (Exit mode 0)
Current function value: 122.3720630223559
Iterations: 21
Function evaluations: 222
Gradient evaluations: 21
Iteration: 1, Func. Count: 12, Neg. LLF: 127.52209101624497
Iteration: 2, Func. Count: 24, Neg. LLF: 124.37039799869618
Iteration: 3, Func. Count: 36, Neg. LLF: 128.62559190655296
Iteration: 4, Func. Count: 48, Neg. LLF: 222.97363639516638
Iteration: 5, Func. Count: 60, Neg. LLF: 122.4820677231912
Iteration: 6, Func. Count: 71, Neg. LLF: 125.13555965647569
Iteration: 7, Func. Count: 84, Neg. LLF: 126.29108322640623
Iteration: 8, Func. Count: 96, Neg. LLF: 123.334233056155
Iteration: 9, Func. Count: 108, Neg. LLF: 123.13389664359126
Iteration: 10, Func. Count: 121, Neg. LLF: 122.40993752455321
Iteration: 11, Func. Count: 133, Neg. LLF: 122.37412707457028
Iteration: 12, Func. Count: 144, Neg. LLF: 122.37242779787802
Iteration: 13, Func. Count: 155, Neg. LLF: 122.37220731356481
Iteration: 14, Func. Count: 166, Neg. LLF: 122.37207663698881
Iteration: 15, Func. Count: 177, Neg. LLF: 122.37206409698554
Iteration: 16, Func. Count: 188, Neg. LLF: 122.37206268559643
Iteration: 17, Func. Count: 198, Neg. LLF: 122.372062707675
Optimization terminated successfully (Exit mode 0)
Current function value: 122.37206268559643
Iterations: 17
Function evaluations: 198
Gradient evaluations: 17
Iteration: 1, Func. Count: 13, Neg. LLF: 125.30744889714882
Iteration: 2, Func. Count: 25, Neg. LLF: 124.87030467950726
Iteration: 3, Func. Count: 38, Neg. LLF: 148.12085735927897
Iteration: 4, Func. Count: 52, Neg. LLF: 138.02461808462095
Iteration: 5, Func. Count: 65, Neg. LLF: 14277182.398770934
Iteration: 6, Func. Count: 78, Neg. LLF: 95004.82803246709
Iteration: 7, Func. Count: 91, Neg. LLF: 182.74416838005857
Iteration: 8, Func. Count: 104, Neg. LLF: 306.78327202292115
Iteration: 9, Func. Count: 117, Neg. LLF: 122.64796032813756
Iteration: 10, Func. Count: 130, Neg. LLF: 122.80455610702597
Iteration: 11, Func. Count: 143, Neg. LLF: 122.45315649384753
Iteration: 12, Func. Count: 156, Neg. LLF: 122.41072953214125
Iteration: 13, Func. Count: 168, Neg. LLF: 122.507245819643
Iteration: 14, Func. Count: 181, Neg. LLF: 122.3754972967425
Iteration: 15, Func. Count: 193, Neg. LLF: 122.37220324399676
Iteration: 16, Func. Count: 205, Neg. LLF: 122.37206507891194
Iteration: 17, Func. Count: 217, Neg. LLF: 122.372063151705
Iteration: 18, Func. Count: 228, Neg. LLF: 122.37206324552787
Optimization terminated successfully (Exit mode 0)
Current function value: 122.372063151705
Iterations: 18
Function evaluations: 228
Gradient evaluations: 18
Iteration: 1, Func. Count: 14, Neg. LLF: 125.36176091427635
Iteration: 2, Func. Count: 27, Neg. LLF: 125.00340834336869
Iteration: 3, Func. Count: 41, Neg. LLF: 146.35146533629583
Iteration: 4, Func. Count: 56, Neg. LLF: 137.56447691029328
Iteration: 5, Func. Count: 70, Neg. LLF: 2101651.9677617946
Iteration: 6, Func. Count: 84, Neg. LLF: 118751.19330434056
Iteration: 7, Func. Count: 98, Neg. LLF: 305.94911838822605
Iteration: 8, Func. Count: 112, Neg. LLF: 165.73990071887525
Iteration: 9, Func. Count: 126, Neg. LLF: 123.2891500717405
Iteration: 10, Func. Count: 140, Neg. LLF: 123.34187137363463
Iteration: 11, Func. Count: 154, Neg. LLF: 122.4283121054525
Iteration: 12, Func. Count: 167, Neg. LLF: 122.42590438608313
Iteration: 13, Func. Count: 181, Neg. LLF: 122.39509117565522
Iteration: 14, Func. Count: 194, Neg. LLF: 122.37628965288484
Iteration: 15, Func. Count: 207, Neg. LLF: 122.37269660219236
Iteration: 16, Func. Count: 220, Neg. LLF: 122.37212124219323
Iteration: 17, Func. Count: 233, Neg. LLF: 122.37207645977362
Iteration: 18, Func. Count: 246, Neg. LLF: 122.37206292240529
Iteration: 19, Func. Count: 258, Neg. LLF: 122.37206299722641
Optimization terminated successfully (Exit mode 0)
Current function value: 122.37206292240529
Iterations: 19
Function evaluations: 258
Gradient evaluations: 19
Iteration: 1, Func. Count: 15, Neg. LLF: 125.38648870621866
Iteration: 2, Func. Count: 29, Neg. LLF: 125.13632345988587
Iteration: 3, Func. Count: 44, Neg. LLF: 145.23643247932256
Iteration: 4, Func. Count: 60, Neg. LLF: 137.45028952191507
Iteration: 5, Func. Count: 75, Neg. LLF: 1876575.514652299
Iteration: 6, Func. Count: 90, Neg. LLF: 8222.070009617384
Iteration: 7, Func. Count: 105, Neg. LLF: 132.41366703742452
Iteration: 8, Func. Count: 120, Neg. LLF: 263.37107714673346
Iteration: 9, Func. Count: 135, Neg. LLF: 134.02865989581267
Iteration: 10, Func. Count: 151, Neg. LLF: 125.71823848892741
Iteration: 11, Func. Count: 166, Neg. LLF: 122.7397124089539
Iteration: 12, Func. Count: 181, Neg. LLF: 122.44965949373928
Iteration: 13, Func. Count: 196, Neg. LLF: 122.40605558635646
Iteration: 14, Func. Count: 210, Neg. LLF: 122.38707828233362
Iteration: 15, Func. Count: 224, Neg. LLF: 122.37451185467496
Iteration: 16, Func. Count: 238, Neg. LLF: 122.37291031813585
Iteration: 17, Func. Count: 252, Neg. LLF: 122.37208781591788
Iteration: 18, Func. Count: 266, Neg. LLF: 122.3720638015621
Iteration: 19, Func. Count: 280, Neg. LLF: 122.37206271837177
Iteration: 20, Func. Count: 293, Neg. LLF: 122.37206288206782
Optimization terminated successfully (Exit mode 0)
Current function value: 122.37206271837177
Iterations: 20
Function evaluations: 293
Gradient evaluations: 20
Iteration: 1, Func. Count: 12, Neg. LLF: 127.26747756187076
Iteration: 2, Func. Count: 24, Neg. LLF: 127.026433084082
Iteration: 3, Func. Count: 36, Neg. LLF: 124.1605694200336
Iteration: 4, Func. Count: 48, Neg. LLF: 127.7412542525516
Iteration: 5, Func. Count: 60, Neg. LLF: 170.302516136455
Iteration: 6, Func. Count: 72, Neg. LLF: 136.49952642990593
Iteration: 7, Func. Count: 84, Neg. LLF: 135.93358160270824
Iteration: 8, Func. Count: 96, Neg. LLF: 125.86419106470848
Iteration: 9, Func. Count: 108, Neg. LLF: 129.20497036172085
Iteration: 10, Func. Count: 120, Neg. LLF: 123.26108523361422
Iteration: 11, Func. Count: 132, Neg. LLF: 122.71945664880992
Iteration: 12, Func. Count: 144, Neg. LLF: 122.37740415915451
Iteration: 13, Func. Count: 156, Neg. LLF: 122.45779341503801
Iteration: 14, Func. Count: 168, Neg. LLF: 122.33421253971197
Iteration: 15, Func. Count: 179, Neg. LLF: 122.32698308575813
Iteration: 16, Func. Count: 190, Neg. LLF: 122.31927290255318
Iteration: 17, Func. Count: 201, Neg. LLF: 122.31875931171753
Iteration: 18, Func. Count: 212, Neg. LLF: 122.31863416279238
Iteration: 19, Func. Count: 223, Neg. LLF: 122.31861076066316
Iteration: 20, Func. Count: 234, Neg. LLF: 122.31860981352641
Optimization terminated successfully (Exit mode 0)
Current function value: 122.31860981352641
Iterations: 20
Function evaluations: 234
Gradient evaluations: 20
Iteration: 1, Func. Count: 13, Neg. LLF: 131.76240068143824
Iteration: 2, Func. Count: 26, Neg. LLF: 127.73866921135712
Iteration: 3, Func. Count: 39, Neg. LLF: 129.8942415902454
Iteration: 4, Func. Count: 52, Neg. LLF: 137.15112074555873
Iteration: 5, Func. Count: 65, Neg. LLF: 146.21910115824556
Iteration: 6, Func. Count: 78, Neg. LLF: 122.74025925887992
Iteration: 7, Func. Count: 91, Neg. LLF: 121.33498276136682
Iteration: 8, Func. Count: 103, Neg. LLF: 122.0661151148591
Iteration: 9, Func. Count: 116, Neg. LLF: 121.285293301783
Iteration: 10, Func. Count: 128, Neg. LLF: 121.27115247634984
Iteration: 11, Func. Count: 140, Neg. LLF: 121.27024910377999
Iteration: 12, Func. Count: 152, Neg. LLF: 121.26989855265069
Iteration: 13, Func. Count: 164, Neg. LLF: 121.2698680190843
Iteration: 14, Func. Count: 176, Neg. LLF: 121.26986712955815
Optimization terminated successfully (Exit mode 0)
Current function value: 121.26986712955815
Iterations: 14
Function evaluations: 176
Gradient evaluations: 14
Iteration: 1, Func. Count: 14, Neg. LLF: 129.32678195360154
Iteration: 2, Func. Count: 28, Neg. LLF: 135.16178058157294
Iteration: 3, Func. Count: 42, Neg. LLF: 127.65090596583661
Iteration: 4, Func. Count: 56, Neg. LLF: 7682665.871593093
Iteration: 5, Func. Count: 70, Neg. LLF: 132.59072746361176
Iteration: 6, Func. Count: 84, Neg. LLF: 178.2761606487039
Iteration: 7, Func. Count: 98, Neg. LLF: 142.7936654989033
Iteration: 8, Func. Count: 112, Neg. LLF: 124.10544288780243
Iteration: 9, Func. Count: 126, Neg. LLF: 121.52548163448961
Iteration: 10, Func. Count: 139, Neg. LLF: 121.69850693978398
Iteration: 11, Func. Count: 153, Neg. LLF: 122.17820519903708
Iteration: 12, Func. Count: 167, Neg. LLF: 121.29018140697964
Iteration: 13, Func. Count: 180, Neg. LLF: 121.28280511511359
Iteration: 14, Func. Count: 193, Neg. LLF: 121.27654078601712
Iteration: 15, Func. Count: 206, Neg. LLF: 121.27007530657588
Iteration: 16, Func. Count: 219, Neg. LLF: 121.26988772693196
Iteration: 17, Func. Count: 232, Neg. LLF: 121.26986716285046
Iteration: 18, Func. Count: 244, Neg. LLF: 121.2698672610939
Optimization terminated successfully (Exit mode 0)
Current function value: 121.26986716285046
Iterations: 18
Function evaluations: 244
Gradient evaluations: 18
Iteration: 1, Func. Count: 15, Neg. LLF: 129.55601436512185
Iteration: 2, Func. Count: 30, Neg. LLF: 131.78444402003953
Iteration: 3, Func. Count: 45, Neg. LLF: 128.04157572676567
Iteration: 4, Func. Count: 60, Neg. LLF: 160.74543319454637
Iteration: 5, Func. Count: 75, Neg. LLF: 126.41209890555973
Iteration: 6, Func. Count: 90, Neg. LLF: 141.90041506326767
Iteration: 7, Func. Count: 105, Neg. LLF: 124.44469111238516
Iteration: 8, Func. Count: 120, Neg. LLF: 121.79596787929277
Iteration: 9, Func. Count: 134, Neg. LLF: 121.40585789026483
Iteration: 10, Func. Count: 148, Neg. LLF: 121.32682472836015
Iteration: 11, Func. Count: 162, Neg. LLF: 121.29936800675995
Iteration: 12, Func. Count: 176, Neg. LLF: 121.2824687346113
Iteration: 13, Func. Count: 190, Neg. LLF: 121.27795844196591
Iteration: 14, Func. Count: 204, Neg. LLF: 121.27022946263729
Iteration: 15, Func. Count: 218, Neg. LLF: 121.26990341942893
Iteration: 16, Func. Count: 232, Neg. LLF: 121.26986790080542
Iteration: 17, Func. Count: 246, Neg. LLF: 121.26986714660386
Optimization terminated successfully (Exit mode 0)
Current function value: 121.26986714660386
Iterations: 17
Function evaluations: 246
Gradient evaluations: 17
Iteration: 1, Func. Count: 16, Neg. LLF: 128.04404835871313
Iteration: 2, Func. Count: 32, Neg. LLF: 131.13434572546686
Iteration: 3, Func. Count: 48, Neg. LLF: 125.40389576940186
Iteration: 4, Func. Count: 64, Neg. LLF: 140.9787548852956
Iteration: 5, Func. Count: 80, Neg. LLF: 125.7306182917208
Iteration: 6, Func. Count: 96, Neg. LLF: 131.4215248757263
Iteration: 7, Func. Count: 112, Neg. LLF: 122.01219558623016
Iteration: 8, Func. Count: 128, Neg. LLF: 121.3374992781254
Iteration: 9, Func. Count: 143, Neg. LLF: 121.30869216343372
Iteration: 10, Func. Count: 158, Neg. LLF: 121.2950127583551
Iteration: 11, Func. Count: 173, Neg. LLF: 121.27481661325172
Iteration: 12, Func. Count: 188, Neg. LLF: 121.27004629216006
Iteration: 13, Func. Count: 203, Neg. LLF: 121.26986798796082
Iteration: 14, Func. Count: 218, Neg. LLF: 121.26986713494318
Optimization terminated successfully (Exit mode 0)
Current function value: 121.26986713494318
Iterations: 14
Function evaluations: 218
Gradient evaluations: 14
Iteration: 1, Func. Count: 8, Neg. LLF: 126.11414261663256
Iteration: 2, Func. Count: 16, Neg. LLF: 124.59446468287976
Iteration: 3, Func. Count: 24, Neg. LLF: 129.88928329339572
Iteration: 4, Func. Count: 32, Neg. LLF: 132.67353447078494
Iteration: 5, Func. Count: 40, Neg. LLF: 153.8719747779601
Iteration: 6, Func. Count: 48, Neg. LLF: 130.5094284818612
Iteration: 7, Func. Count: 56, Neg. LLF: 123.02555009850357
Iteration: 8, Func. Count: 64, Neg. LLF: 122.90980797260563
Iteration: 9, Func. Count: 71, Neg. LLF: 122.8917959068411
Iteration: 10, Func. Count: 78, Neg. LLF: 122.96160800137518
Iteration: 11, Func. Count: 86, Neg. LLF: 122.95234542827406
Iteration: 12, Func. Count: 94, Neg. LLF: 122.87499818473242
Iteration: 13, Func. Count: 101, Neg. LLF: 122.87454414044349
Iteration: 14, Func. Count: 108, Neg. LLF: 122.87454230349965
Iteration: 15, Func. Count: 114, Neg. LLF: 122.87454230349816
Optimization terminated successfully (Exit mode 0)
Current function value: 122.87454230349965
Iterations: 15
Function evaluations: 114
Gradient evaluations: 15
Iteration: 1, Func. Count: 5, Neg. LLF: 153.0701838022456
Iteration: 2, Func. Count: 10, Neg. LLF: 160.76281320168974
Iteration: 3, Func. Count: 15, Neg. LLF: 143.55022497780365
Iteration: 4, Func. Count: 19, Neg. LLF: 142.96035186283157
Iteration: 5, Func. Count: 23, Neg. LLF: 142.9283331355575
Iteration: 6, Func. Count: 27, Neg. LLF: 142.894147239702
Iteration: 7, Func. Count: 31, Neg. LLF: 142.88616350162653
Iteration: 8, Func. Count: 35, Neg. LLF: 142.8852142284603
Iteration: 9, Func. Count: 39, Neg. LLF: 142.88520838184525
Iteration: 10, Func. Count: 42, Neg. LLF: 142.88520839858236
Optimization terminated successfully (Exit mode 0)
Current function value: 142.88520838184525
Iterations: 10
Function evaluations: 42
Gradient evaluations: 10
Iteration: 1, Func. Count: 6, Neg. LLF: 187.62045915869416
Iteration: 2, Func. Count: 13, Neg. LLF: 148.85637127179604
Iteration: 3, Func. Count: 18, Neg. LLF: 148.8555141924002
Iteration: 4, Func. Count: 23, Neg. LLF: 148.85517494765864
Iteration: 5, Func. Count: 28, Neg. LLF: 148.85469321837004
Iteration: 6, Func. Count: 33, Neg. LLF: 148.85390659038185
Iteration: 7, Func. Count: 38, Neg. LLF: 148.8524787430915
Iteration: 8, Func. Count: 43, Neg. LLF: 148.8490176932909
Iteration: 9, Func. Count: 48, Neg. LLF: 148.8392407933325
Iteration: 10, Func. Count: 53, Neg. LLF: 148.9147118562758
Iteration: 11, Func. Count: 59, Neg. LLF: 152.62434579443527
Iteration: 12, Func. Count: 65, Neg. LLF: 151.82154515330066
Iteration: 13, Func. Count: 71, Neg. LLF: 150.99111601751096
Iteration: 14, Func. Count: 77, Neg. LLF: 150.19481265276607
Iteration: 15, Func. Count: 83, Neg. LLF: 149.0123794521537
Iteration: 16, Func. Count: 89, Neg. LLF: 148.80678891975512
Iteration: 17, Func. Count: 95, Neg. LLF: 148.72408574551068
Iteration: 18, Func. Count: 100, Neg. LLF: 148.68764363978985
Iteration: 19, Func. Count: 105, Neg. LLF: 148.67194337727474
Iteration: 20, Func. Count: 110, Neg. LLF: 148.67153267225268
Iteration: 21, Func. Count: 115, Neg. LLF: 148.67145907984147
Iteration: 22, Func. Count: 120, Neg. LLF: 148.67145842011993
Optimization terminated successfully (Exit mode 0)
Current function value: 148.67145842011993
Iterations: 22
Function evaluations: 120
Gradient evaluations: 22
Iteration: 1, Func. Count: 7, Neg. LLF: 179.24689396715593
Iteration: 2, Func. Count: 15, Neg. LLF: 148.81044190846438
Iteration: 3, Func. Count: 21, Neg. LLF: 148.8063193586064
Iteration: 4, Func. Count: 27, Neg. LLF: 148.7982249297007
Iteration: 5, Func. Count: 33, Neg. LLF: 148.78453511520556
Iteration: 6, Func. Count: 39, Neg. LLF: 148.78367944083482
Iteration: 7, Func. Count: 45, Neg. LLF: 148.77952949152322
Iteration: 8, Func. Count: 51, Neg. LLF: 148.76072884387767
Iteration: 9, Func. Count: 57, Neg. LLF: 148.7496708102551
Iteration: 10, Func. Count: 63, Neg. LLF: 148.72607698156838
Iteration: 11, Func. Count: 69, Neg. LLF: 148.71102622299972
Iteration: 12, Func. Count: 75, Neg. LLF: 148.7275265229453
Iteration: 13, Func. Count: 82, Neg. LLF: 148.680326344731
Iteration: 14, Func. Count: 88, Neg. LLF: 148.6777592647697
Iteration: 15, Func. Count: 94, Neg. LLF: 148.6776098601299
Iteration: 16, Func. Count: 100, Neg. LLF: 148.67760808241476
Iteration: 17, Func. Count: 105, Neg. LLF: 148.67760808226765
Optimization terminated successfully (Exit mode 0)
Current function value: 148.67760808241476
Iterations: 17
Function evaluations: 105
Gradient evaluations: 17
Iteration: 1, Func. Count: 8, Neg. LLF: 173.45409403910364
Iteration: 2, Func. Count: 17, Neg. LLF: 148.7644920965276
Iteration: 3, Func. Count: 24, Neg. LLF: 148.7606354017844
Iteration: 4, Func. Count: 31, Neg. LLF: 148.75857523099404
Iteration: 5, Func. Count: 38, Neg. LLF: 148.75758808039183
Iteration: 6, Func. Count: 45, Neg. LLF: 148.75674361603768
Iteration: 7, Func. Count: 52, Neg. LLF: 148.75107425371007
Iteration: 8, Func. Count: 59, Neg. LLF: 148.73755196330586
Iteration: 9, Func. Count: 66, Neg. LLF: 148.7248644117851
Iteration: 10, Func. Count: 73, Neg. LLF: 148.7141844316651
Iteration: 11, Func. Count: 80, Neg. LLF: 148.7096371192501
Iteration: 12, Func. Count: 87, Neg. LLF: 148.70904521596458
Iteration: 13, Func. Count: 94, Neg. LLF: 148.70809903300116
Iteration: 14, Func. Count: 101, Neg. LLF: 148.7077326243547
Iteration: 15, Func. Count: 108, Neg. LLF: 148.700735698996
Iteration: 16, Func. Count: 115, Neg. LLF: 148.69766609133237
Iteration: 17, Func. Count: 122, Neg. LLF: 148.69404782266446
Iteration: 18, Func. Count: 129, Neg. LLF: 148.6778830721257
Iteration: 19, Func. Count: 136, Neg. LLF: 148.67781266670733
Iteration: 20, Func. Count: 143, Neg. LLF: 148.67773105654473
Iteration: 21, Func. Count: 150, Neg. LLF: 148.6777074841343
Iteration: 22, Func. Count: 157, Neg. LLF: 148.6776228443598
Iteration: 23, Func. Count: 164, Neg. LLF: 148.67760911577906
Iteration: 24, Func. Count: 171, Neg. LLF: 148.67760787095727
Iteration: 25, Func. Count: 177, Neg. LLF: 148.67760787645145
Optimization terminated successfully (Exit mode 0)
Current function value: 148.67760787095727
Iterations: 25
Function evaluations: 177
Gradient evaluations: 25
Iteration: 1, Func. Count: 9, Neg. LLF: 169.5220550378397
Iteration: 2, Func. Count: 19, Neg. LLF: 148.7515730685644
Iteration: 3, Func. Count: 27, Neg. LLF: 148.75143281055443
Iteration: 4, Func. Count: 36, Neg. LLF: 148.75034867382217
Iteration: 5, Func. Count: 44, Neg. LLF: 148.74580656432892
Iteration: 6, Func. Count: 52, Neg. LLF: 148.74239354004925
Iteration: 7, Func. Count: 60, Neg. LLF: 148.74055144617705
Iteration: 8, Func. Count: 68, Neg. LLF: 148.73984125568958
Iteration: 9, Func. Count: 76, Neg. LLF: 148.7378431427007
Iteration: 10, Func. Count: 84, Neg. LLF: 148.73319768804856
Iteration: 11, Func. Count: 92, Neg. LLF: 148.72603655949428
Iteration: 12, Func. Count: 100, Neg. LLF: 148.72018715271028
Iteration: 13, Func. Count: 108, Neg. LLF: 148.71796417925023
Iteration: 14, Func. Count: 116, Neg. LLF: 148.71770394625403
Iteration: 15, Func. Count: 124, Neg. LLF: 148.71770350156046
Optimization terminated successfully (Exit mode 0)
Current function value: 148.71770350156046
Iterations: 15
Function evaluations: 124
Gradient evaluations: 15
Iteration: 1, Func. Count: 6, Neg. LLF: 150.7999177786233
Iteration: 2, Func. Count: 11, Neg. LLF: 154.40871708747807
Iteration: 3, Func. Count: 17, Neg. LLF: 143.3992386782354
Iteration: 4, Func. Count: 22, Neg. LLF: 143.20492308865903
Iteration: 5, Func. Count: 27, Neg. LLF: 2442362.766414512
Iteration: 6, Func. Count: 33, Neg. LLF: 142.95870820304222
Iteration: 7, Func. Count: 38, Neg. LLF: 142.85859900180844
Iteration: 8, Func. Count: 43, Neg. LLF: 142.853015889185
Iteration: 9, Func. Count: 48, Neg. LLF: 142.85292658408216
Iteration: 10, Func. Count: 54, Neg. LLF: 142.85266606469233
Iteration: 11, Func. Count: 59, Neg. LLF: 142.8526563766651
Iteration: 12, Func. Count: 63, Neg. LLF: 142.85265635973107
Optimization terminated successfully (Exit mode 0)
Current function value: 142.8526563766651
Iterations: 12
Function evaluations: 63
Gradient evaluations: 12
Iteration: 1, Func. Count: 7, Neg. LLF: 187.6288937325514
Iteration: 2, Func. Count: 15, Neg. LLF: 148.85558379477297
Iteration: 3, Func. Count: 21, Neg. LLF: 148.85542820981192
Iteration: 4, Func. Count: 27, Neg. LLF: 148.85504093563912
Iteration: 5, Func. Count: 33, Neg. LLF: 148.8547308499571
Iteration: 6, Func. Count: 39, Neg. LLF: 148.85307648986145
Iteration: 7, Func. Count: 45, Neg. LLF: 148.84914068973038
Iteration: 8, Func. Count: 51, Neg. LLF: 148.8329919194541
Iteration: 9, Func. Count: 57, Neg. LLF: 153.253123606256
Iteration: 10, Func. Count: 64, Neg. LLF: 152.70650079812512
Iteration: 11, Func. Count: 71, Neg. LLF: 152.15324348107643
Iteration: 12, Func. Count: 78, Neg. LLF: 149.02030189261944
Iteration: 13, Func. Count: 85, Neg. LLF: 148.89648332683305
Iteration: 14, Func. Count: 92, Neg. LLF: 148.7990383074395
Iteration: 15, Func. Count: 99, Neg. LLF: 148.71096883986914
Iteration: 16, Func. Count: 105, Neg. LLF: 148.6918876911214
Iteration: 17, Func. Count: 111, Neg. LLF: 148.67428386513348
Iteration: 18, Func. Count: 117, Neg. LLF: 148.67159151005768
Iteration: 19, Func. Count: 123, Neg. LLF: 148.67145953699583
Iteration: 20, Func. Count: 128, Neg. LLF: 148.6714595365884
Optimization terminated successfully (Exit mode 0)
Current function value: 148.67145953699583
Iterations: 20
Function evaluations: 128
Gradient evaluations: 20
Iteration: 1, Func. Count: 8, Neg. LLF: 179.26327598108568
Iteration: 2, Func. Count: 17, Neg. LLF: 148.81023906928604
Iteration: 3, Func. Count: 24, Neg. LLF: 148.80280169670667
Iteration: 4, Func. Count: 31, Neg. LLF: 148.78783170572694
Iteration: 5, Func. Count: 38, Neg. LLF: 148.78523541789536
Iteration: 6, Func. Count: 45, Neg. LLF: 148.78373867819582
Iteration: 7, Func. Count: 52, Neg. LLF: 148.78220336748782
Iteration: 8, Func. Count: 59, Neg. LLF: 148.77602577603838
Iteration: 9, Func. Count: 66, Neg. LLF: 148.76111476916745
Iteration: 10, Func. Count: 73, Neg. LLF: 148.74246158379952
Iteration: 11, Func. Count: 80, Neg. LLF: 148.7194697812908
Iteration: 12, Func. Count: 87, Neg. LLF: 148.6886010299777
Iteration: 13, Func. Count: 94, Neg. LLF: 148.68183376871988
Iteration: 14, Func. Count: 101, Neg. LLF: 148.67893343413306
Iteration: 15, Func. Count: 108, Neg. LLF: 148.6778352038559
Iteration: 16, Func. Count: 115, Neg. LLF: 148.67761190230274
Iteration: 17, Func. Count: 122, Neg. LLF: 148.67760786228527
Iteration: 18, Func. Count: 128, Neg. LLF: 148.67760786234174
Optimization terminated successfully (Exit mode 0)
Current function value: 148.67760786228527
Iterations: 18
Function evaluations: 128
Gradient evaluations: 18
Iteration: 1, Func. Count: 9, Neg. LLF: 173.25742199496153
Iteration: 2, Func. Count: 19, Neg. LLF: 148.7621836608712
Iteration: 3, Func. Count: 27, Neg. LLF: 148.7603534089008
Iteration: 4, Func. Count: 35, Neg. LLF: 148.75829570583508
Iteration: 5, Func. Count: 43, Neg. LLF: 148.75762149865778
Iteration: 6, Func. Count: 51, Neg. LLF: 148.7559348241746
Iteration: 7, Func. Count: 59, Neg. LLF: 148.75071791385474
Iteration: 8, Func. Count: 67, Neg. LLF: 148.73997138705084
Iteration: 9, Func. Count: 75, Neg. LLF: 148.7269092095748
Iteration: 10, Func. Count: 83, Neg. LLF: 148.71608685931037
Iteration: 11, Func. Count: 91, Neg. LLF: 148.7097470659829
Iteration: 12, Func. Count: 99, Neg. LLF: 148.70891534767316
Iteration: 13, Func. Count: 107, Neg. LLF: 148.70791968902196
Iteration: 14, Func. Count: 115, Neg. LLF: 148.70755205441347
Iteration: 15, Func. Count: 123, Neg. LLF: 148.69794236558732
Iteration: 16, Func. Count: 131, Neg. LLF: 148.69328176550124
Iteration: 17, Func. Count: 139, Neg. LLF: 148.69177948564896
Iteration: 18, Func. Count: 147, Neg. LLF: 148.69094901799826
Iteration: 19, Func. Count: 155, Neg. LLF: 148.69088790800294
Iteration: 20, Func. Count: 163, Neg. LLF: 148.69030644725126
Iteration: 21, Func. Count: 171, Neg. LLF: 148.69082391164804
Iteration: 22, Func. Count: 180, Neg. LLF: 148.68876920554067
Iteration: 23, Func. Count: 188, Neg. LLF: 148.67772799663237
Iteration: 24, Func. Count: 196, Neg. LLF: 148.72306302331398
Iteration: 25, Func. Count: 205, Neg. LLF: 148.67383105954593
Iteration: 26, Func. Count: 214, Neg. LLF: 148.67415898132012
Iteration: 27, Func. Count: 223, Neg. LLF: 148.67252208732012
Iteration: 28, Func. Count: 231, Neg. LLF: 148.6717251658627
Iteration: 29, Func. Count: 239, Neg. LLF: 150.68708518139397
Iteration: 30, Func. Count: 250, Neg. LLF: 148.67146298035064
Iteration: 31, Func. Count: 257, Neg. LLF: 148.67146298287932
Optimization terminated successfully (Exit mode 0)
Current function value: 148.67146298035064
Iterations: 32
Function evaluations: 257
Gradient evaluations: 31
Iteration: 1, Func. Count: 10, Neg. LLF: 169.44229556802298
Iteration: 2, Func. Count: 20, Neg. LLF: 148.75082915284648
Iteration: 3, Func. Count: 29, Neg. LLF: 148.75028839127353
Iteration: 4, Func. Count: 38, Neg. LLF: 148.74851893391096
Iteration: 5, Func. Count: 47, Neg. LLF: 148.74425318359235
Iteration: 6, Func. Count: 56, Neg. LLF: 148.74352242342474
Iteration: 7, Func. Count: 65, Neg. LLF: 148.74273032092202
Iteration: 8, Func. Count: 74, Neg. LLF: 148.73914463088917
Iteration: 9, Func. Count: 83, Neg. LLF: 148.73522214593123
Iteration: 10, Func. Count: 92, Neg. LLF: 148.72702790348384
Iteration: 11, Func. Count: 101, Neg. LLF: 148.72085055199244
Iteration: 12, Func. Count: 110, Neg. LLF: 148.7180542022022
Iteration: 13, Func. Count: 119, Neg. LLF: 148.7177146553177
Iteration: 14, Func. Count: 128, Neg. LLF: 148.7177066330576
Iteration: 15, Func. Count: 137, Neg. LLF: 148.71770348563746
Iteration: 16, Func. Count: 145, Neg. LLF: 148.71770348564036
Optimization terminated successfully (Exit mode 0)
Current function value: 148.71770348563746
Iterations: 16
Function evaluations: 145
Gradient evaluations: 16
Iteration: 1, Func. Count: 7, Neg. LLF: 147.20786919028092
Iteration: 2, Func. Count: 13, Neg. LLF: 156.07021567386158
Iteration: 3, Func. Count: 20, Neg. LLF: 143.43586531751964
Iteration: 4, Func. Count: 26, Neg. LLF: 143.09627801802955
Iteration: 5, Func. Count: 32, Neg. LLF: 145.85503842439044
Iteration: 6, Func. Count: 39, Neg. LLF: 143.3290860547343
Iteration: 7, Func. Count: 46, Neg. LLF: 142.85382763095407
Iteration: 8, Func. Count: 52, Neg. LLF: 142.85281247105195
Iteration: 9, Func. Count: 58, Neg. LLF: 142.85265766270587
Iteration: 10, Func. Count: 64, Neg. LLF: 142.85265636708166
Iteration: 11, Func. Count: 69, Neg. LLF: 142.85265655661138
Optimization terminated successfully (Exit mode 0)
Current function value: 142.85265636708166
Iterations: 11
Function evaluations: 69
Gradient evaluations: 11
Iteration: 1, Func. Count: 8, Neg. LLF: 187.63347197804225
Iteration: 2, Func. Count: 17, Neg. LLF: 148.8552725423005
Iteration: 3, Func. Count: 24, Neg. LLF: 148.85511081515875
Iteration: 4, Func. Count: 31, Neg. LLF: 148.85440342410922
Iteration: 5, Func. Count: 38, Neg. LLF: 148.85034160246136
Iteration: 6, Func. Count: 45, Neg. LLF: 148.83536093038168
Iteration: 7, Func. Count: 52, Neg. LLF: 148.82158140355747
Iteration: 8, Func. Count: 59, Neg. LLF: 149.07237448487106
Iteration: 9, Func. Count: 67, Neg. LLF: 149.40174629147091
Iteration: 10, Func. Count: 75, Neg. LLF: 149.86892378068256
Iteration: 11, Func. Count: 83, Neg. LLF: 149.11980792322046
Iteration: 12, Func. Count: 91, Neg. LLF: 149.1271527315536
Iteration: 13, Func. Count: 99, Neg. LLF: 149.1387095839942
Iteration: 14, Func. Count: 107, Neg. LLF: 149.59784424999052
Iteration: 15, Func. Count: 115, Neg. LLF: 150.14194614779493
Iteration: 16, Func. Count: 125, Neg. LLF: 148.69045936066766
Iteration: 17, Func. Count: 133, Neg. LLF: 148.67147788466562
Iteration: 18, Func. Count: 140, Neg. LLF: 148.6714587489543
Iteration: 19, Func. Count: 147, Neg. LLF: 149.3453775111113
Optimization terminated successfully (Exit mode 0)
Current function value: 148.6714583563137
Iterations: 20
Function evaluations: 150
Gradient evaluations: 19
Iteration: 1, Func. Count: 9, Neg. LLF: 170.74383864319614
Iteration: 2, Func. Count: 18, Neg. LLF: 148.71548806725656
Iteration: 3, Func. Count: 26, Neg. LLF: 148.71264729765014
Iteration: 4, Func. Count: 34, Neg. LLF: 148.7054699027566
Iteration: 5, Func. Count: 42, Neg. LLF: 148.68844375283138
Iteration: 6, Func. Count: 50, Neg. LLF: 148.68799174779497
Iteration: 7, Func. Count: 58, Neg. LLF: 148.68549410835018
Iteration: 8, Func. Count: 66, Neg. LLF: 148.68201524995925
Iteration: 9, Func. Count: 74, Neg. LLF: 148.67915880484247
Iteration: 10, Func. Count: 82, Neg. LLF: 148.6776938146397
Iteration: 11, Func. Count: 90, Neg. LLF: 148.67761822308805
Iteration: 12, Func. Count: 98, Neg. LLF: 148.67760804886024
Iteration: 13, Func. Count: 105, Neg. LLF: 148.67760804876767
Optimization terminated successfully (Exit mode 0)
Current function value: 148.67760804886024
Iterations: 13
Function evaluations: 105
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 173.335092520424
Iteration: 2, Func. Count: 21, Neg. LLF: 148.76257186630505
Iteration: 3, Func. Count: 30, Neg. LLF: 148.76015943397317
Iteration: 4, Func. Count: 39, Neg. LLF: 148.76147465427132
Iteration: 5, Func. Count: 49, Neg. LLF: 148.75749747219484
Iteration: 6, Func. Count: 58, Neg. LLF: 148.75623687476556
Iteration: 7, Func. Count: 67, Neg. LLF: 148.74713257481875
Iteration: 8, Func. Count: 76, Neg. LLF: 148.71301995520048
Iteration: 9, Func. Count: 85, Neg. LLF: 148.71125867711987
Iteration: 10, Func. Count: 94, Neg. LLF: 148.7084533440537
Iteration: 11, Func. Count: 103, Neg. LLF: 148.70815365054085
Iteration: 12, Func. Count: 112, Neg. LLF: 148.70693531138545
Iteration: 13, Func. Count: 121, Neg. LLF: 148.69056056413723
Iteration: 14, Func. Count: 130, Neg. LLF: 148.68986644540337
Iteration: 15, Func. Count: 139, Neg. LLF: 148.68582734210904
Iteration: 16, Func. Count: 148, Neg. LLF: 148.77677091641164
Iteration: 17, Func. Count: 159, Neg. LLF: 148.67948756257886
Iteration: 18, Func. Count: 168, Neg. LLF: 198.254527444109
Iteration: 19, Func. Count: 180, Neg. LLF: 148.67800821068138
Iteration: 20, Func. Count: 190, Neg. LLF: 148.67779039234068
Iteration: 21, Func. Count: 199, Neg. LLF: 148.6777572939902
Iteration: 22, Func. Count: 208, Neg. LLF: 148.6776493363876
Iteration: 23, Func. Count: 217, Neg. LLF: 148.6776078398285
Iteration: 24, Func. Count: 225, Neg. LLF: 148.67760784525734
Optimization terminated successfully (Exit mode 0)
Current function value: 148.6776078398285
Iterations: 25
Function evaluations: 225
Gradient evaluations: 24
Iteration: 1, Func. Count: 11, Neg. LLF: 168.98185522991602
Iteration: 2, Func. Count: 22, Neg. LLF: 148.75168722085903
Iteration: 3, Func. Count: 32, Neg. LLF: 148.75057219305998
Iteration: 4, Func. Count: 42, Neg. LLF: 148.74943329113262
Iteration: 5, Func. Count: 52, Neg. LLF: 148.74715917901938
Iteration: 6, Func. Count: 62, Neg. LLF: 148.74464596835804
Iteration: 7, Func. Count: 72, Neg. LLF: 148.74270622913966
Iteration: 8, Func. Count: 82, Neg. LLF: 148.74177049911768
Iteration: 9, Func. Count: 92, Neg. LLF: 148.7404939048236
Iteration: 10, Func. Count: 102, Neg. LLF: 148.73671267652688
Iteration: 11, Func. Count: 112, Neg. LLF: 148.73049905655787
Iteration: 12, Func. Count: 122, Neg. LLF: 148.72321977881245
Iteration: 13, Func. Count: 132, Neg. LLF: 148.71862880244052
Iteration: 14, Func. Count: 142, Neg. LLF: 148.7177202455244
Iteration: 15, Func. Count: 152, Neg. LLF: 148.71770362783437
Iteration: 16, Func. Count: 161, Neg. LLF: 148.71770362791494
Optimization terminated successfully (Exit mode 0)
Current function value: 148.71770362783437
Iterations: 16
Function evaluations: 161
Gradient evaluations: 16
Iteration: 1, Func. Count: 8, Neg. LLF: 144.0462171258112
Iteration: 2, Func. Count: 15, Neg. LLF: 146.7234592994408
Iteration: 3, Func. Count: 23, Neg. LLF: 143.59697069997463
Iteration: 4, Func. Count: 30, Neg. LLF: 142.9799953941744
Iteration: 5, Func. Count: 37, Neg. LLF: 143.00818368003604
Iteration: 6, Func. Count: 45, Neg. LLF: 142.89423574146156
Iteration: 7, Func. Count: 53, Neg. LLF: 142.85434187109573
Iteration: 8, Func. Count: 60, Neg. LLF: 142.85316887215913
Iteration: 9, Func. Count: 67, Neg. LLF: 142.85275603341364
Iteration: 10, Func. Count: 74, Neg. LLF: 142.8526568733272
Iteration: 11, Func. Count: 81, Neg. LLF: 142.85265636364042
Optimization terminated successfully (Exit mode 0)
Current function value: 142.85265636364042
Iterations: 11
Function evaluations: 81
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 187.6336874778513
Iteration: 2, Func. Count: 19, Neg. LLF: 148.85555091327532
Iteration: 3, Func. Count: 27, Neg. LLF: 148.8554996913322
Iteration: 4, Func. Count: 36, Neg. LLF: 148.85495344575267
Iteration: 5, Func. Count: 44, Neg. LLF: 148.85395259426488
Iteration: 6, Func. Count: 52, Neg. LLF: 148.84881543186944
Iteration: 7, Func. Count: 60, Neg. LLF: 148.8176906573157
Iteration: 8, Func. Count: 68, Neg. LLF: 153.62451525389588
Iteration: 9, Func. Count: 77, Neg. LLF: 153.15559636026885
Iteration: 10, Func. Count: 86, Neg. LLF: 152.45137318253254
Iteration: 11, Func. Count: 95, Neg. LLF: 149.0164032191154
Iteration: 12, Func. Count: 104, Neg. LLF: 148.84461707997298
Iteration: 13, Func. Count: 113, Neg. LLF: 148.76148244553875
Iteration: 14, Func. Count: 122, Neg. LLF: 148.70474240937088
Iteration: 15, Func. Count: 130, Neg. LLF: 148.70198851288308
Iteration: 16, Func. Count: 139, Neg. LLF: 148.67166380134202
Iteration: 17, Func. Count: 147, Neg. LLF: 148.67148842915904
Iteration: 18, Func. Count: 155, Neg. LLF: 148.6714591363468
Iteration: 19, Func. Count: 163, Neg. LLF: 148.6714589719531
Optimization terminated successfully (Exit mode 0)
Current function value: 148.6714589719531
Iterations: 19
Function evaluations: 163
Gradient evaluations: 19
Iteration: 1, Func. Count: 10, Neg. LLF: 170.89533061711023
Iteration: 2, Func. Count: 20, Neg. LLF: 148.7171376437565
Iteration: 3, Func. Count: 29, Neg. LLF: 148.71451276715018
Iteration: 4, Func. Count: 38, Neg. LLF: 148.70881409972895
Iteration: 5, Func. Count: 47, Neg. LLF: 148.68706828516736
Iteration: 6, Func. Count: 56, Neg. LLF: 148.68635113091133
Iteration: 7, Func. Count: 65, Neg. LLF: 148.68437427266534
Iteration: 8, Func. Count: 74, Neg. LLF: 148.6828092565993
Iteration: 9, Func. Count: 83, Neg. LLF: 148.67958978559116
Iteration: 10, Func. Count: 92, Neg. LLF: 148.67811076242907
Iteration: 11, Func. Count: 101, Neg. LLF: 148.67761532291203
Iteration: 12, Func. Count: 110, Neg. LLF: 148.67760784425568
Iteration: 13, Func. Count: 118, Neg. LLF: 148.67760784430922
Optimization terminated successfully (Exit mode 0)
Current function value: 148.67760784425568
Iterations: 13
Function evaluations: 118
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 166.44920800752027
Iteration: 2, Func. Count: 22, Neg. LLF: 148.70985791422657
Iteration: 3, Func. Count: 32, Neg. LLF: 148.70988697126776
Iteration: 4, Func. Count: 43, Neg. LLF: 148.70792412519594
Iteration: 5, Func. Count: 53, Neg. LLF: 148.70723716412687
Iteration: 6, Func. Count: 63, Neg. LLF: 148.7055659581328
Iteration: 7, Func. Count: 73, Neg. LLF: 148.70273636110485
Iteration: 8, Func. Count: 83, Neg. LLF: 148.69917531745767
Iteration: 9, Func. Count: 93, Neg. LLF: 148.67828791884392
Iteration: 10, Func. Count: 103, Neg. LLF: 153.94999756689157
Iteration: 11, Func. Count: 116, Neg. LLF: 148.67825048208923
Iteration: 12, Func. Count: 126, Neg. LLF: 148.6782104361298
Iteration: 13, Func. Count: 136, Neg. LLF: 148.67814271581418
Iteration: 14, Func. Count: 146, Neg. LLF: 148.67798811527123
Iteration: 15, Func. Count: 156, Neg. LLF: 148.67778856734085
Iteration: 16, Func. Count: 166, Neg. LLF: 148.67764874839366
Iteration: 17, Func. Count: 176, Neg. LLF: 148.67761119730622
Iteration: 18, Func. Count: 186, Neg. LLF: 148.67760787311818
Iteration: 19, Func. Count: 195, Neg. LLF: 148.6776078785338
Optimization terminated successfully (Exit mode 0)
Current function value: 148.67760787311818
Iterations: 20
Function evaluations: 195
Gradient evaluations: 19
Iteration: 1, Func. Count: 12, Neg. LLF: 169.22273423557385
Iteration: 2, Func. Count: 24, Neg. LLF: 148.74971928650754
Iteration: 3, Func. Count: 35, Neg. LLF: 148.74829722650185
Iteration: 4, Func. Count: 46, Neg. LLF: 148.7461799372233
Iteration: 5, Func. Count: 57, Neg. LLF: 148.7441802197014
Iteration: 6, Func. Count: 68, Neg. LLF: 148.74366964088276
Iteration: 7, Func. Count: 79, Neg. LLF: 148.74062403407635
Iteration: 8, Func. Count: 90, Neg. LLF: 148.73364555422427
Iteration: 9, Func. Count: 101, Neg. LLF: 148.72651708152517
Iteration: 10, Func. Count: 112, Neg. LLF: 148.71986327731582
Iteration: 11, Func. Count: 123, Neg. LLF: 148.7179178121221
Iteration: 12, Func. Count: 134, Neg. LLF: 148.71770532852256
Iteration: 13, Func. Count: 145, Neg. LLF: 148.71770361834618
Iteration: 14, Func. Count: 155, Neg. LLF: 148.71770361838622
Optimization terminated successfully (Exit mode 0)
Current function value: 148.71770361834618
Iterations: 14
Function evaluations: 155
Gradient evaluations: 14
Iteration: 1, Func. Count: 5, Neg. LLF: 151.2752584645274
Iteration: 2, Func. Count: 9, Neg. LLF: 149.69504640718586
Iteration: 3, Func. Count: 13, Neg. LLF: 146.95793021483175
Iteration: 4, Func. Count: 17, Neg. LLF: 146.78276510003099
Iteration: 5, Func. Count: 21, Neg. LLF: 146.42704361483456
Iteration: 6, Func. Count: 25, Neg. LLF: 146.08896623981423
Iteration: 7, Func. Count: 29, Neg. LLF: 145.92745808234466
Iteration: 8, Func. Count: 33, Neg. LLF: 145.90403631688753
Iteration: 9, Func. Count: 37, Neg. LLF: 145.89989670560257
Iteration: 10, Func. Count: 41, Neg. LLF: 145.89984157808524
Iteration: 11, Func. Count: 44, Neg. LLF: 145.8998416632905
Optimization terminated successfully (Exit mode 0)
Current function value: 145.89984157808524
Iterations: 11
Function evaluations: 44
Gradient evaluations: 11
Iteration: 1, Func. Count: 6, Neg. LLF: 187.67198353355718
Iteration: 2, Func. Count: 13, Neg. LLF: 148.8577852920164
Iteration: 3, Func. Count: 18, Neg. LLF: 148.8561879202914
Iteration: 4, Func. Count: 23, Neg. LLF: 148.85563169910432
Iteration: 5, Func. Count: 28, Neg. LLF: 148.85515365805804
Iteration: 6, Func. Count: 33, Neg. LLF: 148.85460066901607
Iteration: 7, Func. Count: 38, Neg. LLF: 148.85396090247716
Iteration: 8, Func. Count: 43, Neg. LLF: 148.85253221859836
Iteration: 9, Func. Count: 48, Neg. LLF: 148.84877121322188
Iteration: 10, Func. Count: 53, Neg. LLF: 148.8348074248146
Iteration: 11, Func. Count: 58, Neg. LLF: 152.18157696871876
Iteration: 12, Func. Count: 64, Neg. LLF: 151.8213757387608
Iteration: 13, Func. Count: 70, Neg. LLF: 151.65619120662177
Iteration: 14, Func. Count: 76, Neg. LLF: 151.60131423738497
Iteration: 15, Func. Count: 82, Neg. LLF: 148.9405407338768
Iteration: 16, Func. Count: 88, Neg. LLF: 148.7562851500723
Iteration: 17, Func. Count: 93, Neg. LLF: 148.76249548727864
Iteration: 18, Func. Count: 99, Neg. LLF: 148.6796760792006
Iteration: 19, Func. Count: 104, Neg. LLF: 148.68185194420548
Iteration: 20, Func. Count: 110, Neg. LLF: 148.67146508483853
Iteration: 21, Func. Count: 115, Neg. LLF: 148.67145846110375
Iteration: 22, Func. Count: 119, Neg. LLF: 148.67145846091427
Optimization terminated successfully (Exit mode 0)
Current function value: 148.67145846110375
Iterations: 22
Function evaluations: 119
Gradient evaluations: 22
Iteration: 1, Func. Count: 7, Neg. LLF: 179.29105654616794
Iteration: 2, Func. Count: 15, Neg. LLF: 148.81087039300223
Iteration: 3, Func. Count: 21, Neg. LLF: 148.8030489438097
Iteration: 4, Func. Count: 27, Neg. LLF: 148.79336376172614
Iteration: 5, Func. Count: 33, Neg. LLF: 148.7853174896087
Iteration: 6, Func. Count: 39, Neg. LLF: 148.78426527816666
Iteration: 7, Func. Count: 45, Neg. LLF: 148.78214652328415
Iteration: 8, Func. Count: 51, Neg. LLF: 148.776457905082
Iteration: 9, Func. Count: 57, Neg. LLF: 148.76079219709322
Iteration: 10, Func. Count: 63, Neg. LLF: 148.74170612854874
Iteration: 11, Func. Count: 69, Neg. LLF: 148.718205400563
Iteration: 12, Func. Count: 75, Neg. LLF: 148.68427572546216
Iteration: 13, Func. Count: 81, Neg. LLF: 148.6779360714468
Iteration: 14, Func. Count: 87, Neg. LLF: 148.67761849279015
Iteration: 15, Func. Count: 93, Neg. LLF: 148.6776079178452
Iteration: 16, Func. Count: 98, Neg. LLF: 148.67760791773085
Optimization terminated successfully (Exit mode 0)
Current function value: 148.6776079178452
Iterations: 16
Function evaluations: 98
Gradient evaluations: 16
Iteration: 1, Func. Count: 8, Neg. LLF: 173.3295439726672
Iteration: 2, Func. Count: 16, Neg. LLF: 148.762810250381
Iteration: 3, Func. Count: 23, Neg. LLF: 148.76255508468938
Iteration: 4, Func. Count: 31, Neg. LLF: 148.7591950748594
Iteration: 5, Func. Count: 38, Neg. LLF: 148.75815275095627
Iteration: 6, Func. Count: 45, Neg. LLF: 148.75724832738447
Iteration: 7, Func. Count: 52, Neg. LLF: 148.75228589037673
Iteration: 8, Func. Count: 59, Neg. LLF: 148.72986757693116
Iteration: 9, Func. Count: 66, Neg. LLF: 148.77434774379626
Iteration: 10, Func. Count: 74, Neg. LLF: 148.70912649571403
Iteration: 11, Func. Count: 81, Neg. LLF: 148.70822789976572
Iteration: 12, Func. Count: 88, Neg. LLF: 148.7079383288579
Iteration: 13, Func. Count: 95, Neg. LLF: 148.70711795831386
Iteration: 14, Func. Count: 102, Neg. LLF: 148.69303019563912
Iteration: 15, Func. Count: 109, Neg. LLF: 148.69074808137464
Iteration: 16, Func. Count: 116, Neg. LLF: 148.68971369311134
Iteration: 17, Func. Count: 123, Neg. LLF: 148.68056626539126
Iteration: 18, Func. Count: 130, Neg. LLF: 164.6569721092177
Iteration: 19, Func. Count: 140, Neg. LLF: 148.6802097678295
Iteration: 20, Func. Count: 147, Neg. LLF: 148.68004748710516
Iteration: 21, Func. Count: 154, Neg. LLF: 148.67929251170358
Iteration: 22, Func. Count: 161, Neg. LLF: 148.67762924653965
Iteration: 23, Func. Count: 168, Neg. LLF: 148.67760800194227
Iteration: 24, Func. Count: 174, Neg. LLF: 148.67760800732873
Optimization terminated successfully (Exit mode 0)
Current function value: 148.67760800194227
Iterations: 25
Function evaluations: 174
Gradient evaluations: 24
Iteration: 1, Func. Count: 9, Neg. LLF: 169.39482461455898
Iteration: 2, Func. Count: 18, Neg. LLF: 148.7524310740596
Iteration: 3, Func. Count: 26, Neg. LLF: 148.7529558394993
Iteration: 4, Func. Count: 35, Neg. LLF: 148.75043742752726
Iteration: 5, Func. Count: 43, Neg. LLF: 148.74411331556382
Iteration: 6, Func. Count: 51, Neg. LLF: 148.7423701443771
Iteration: 7, Func. Count: 59, Neg. LLF: 148.7415458135249
Iteration: 8, Func. Count: 67, Neg. LLF: 148.73926354697073
Iteration: 9, Func. Count: 75, Neg. LLF: 148.7368391024811
Iteration: 10, Func. Count: 83, Neg. LLF: 148.7294994132547
Iteration: 11, Func. Count: 91, Neg. LLF: 148.72149824998414
Iteration: 12, Func. Count: 99, Neg. LLF: 148.71805187780132
Iteration: 13, Func. Count: 107, Neg. LLF: 148.71771054250289
Iteration: 14, Func. Count: 115, Neg. LLF: 148.71770352663393
Iteration: 15, Func. Count: 122, Neg. LLF: 148.7177035266171
Optimization terminated successfully (Exit mode 0)
Current function value: 148.71770352663393
Iterations: 15
Function evaluations: 122
Gradient evaluations: 15
Iteration: 1, Func. Count: 6, Neg. LLF: 159.53414197905278
Iteration: 2, Func. Count: 12, Neg. LLF: 148.14867127858244
Iteration: 3, Func. Count: 18, Neg. LLF: 143.2643711000764
Iteration: 4, Func. Count: 23, Neg. LLF: 142.96949104632722
Iteration: 5, Func. Count: 28, Neg. LLF: 142.9395166722253
Iteration: 6, Func. Count: 33, Neg. LLF: 142.88567587216653
Iteration: 7, Func. Count: 38, Neg. LLF: 142.88522221047634
Iteration: 8, Func. Count: 43, Neg. LLF: 142.88520838466826
Iteration: 9, Func. Count: 47, Neg. LLF: 142.885208401405
Optimization terminated successfully (Exit mode 0)
Current function value: 142.88520838466826
Iterations: 9
Function evaluations: 47
Gradient evaluations: 9
Iteration: 1, Func. Count: 7, Neg. LLF: 187.70846021135546
Iteration: 2, Func. Count: 15, Neg. LLF: 148.86238310465842
Iteration: 3, Func. Count: 21, Neg. LLF: 148.85770276392083
Iteration: 4, Func. Count: 27, Neg. LLF: 148.85630099566032
Iteration: 5, Func. Count: 33, Neg. LLF: 148.8559103197396
Iteration: 6, Func. Count: 39, Neg. LLF: 148.85546620201364
Iteration: 7, Func. Count: 45, Neg. LLF: 148.85512482712545
Iteration: 8, Func. Count: 51, Neg. LLF: 148.85395943980183
Iteration: 9, Func. Count: 57, Neg. LLF: 148.8511221051195
Iteration: 10, Func. Count: 63, Neg. LLF: 148.84128795621035
Iteration: 11, Func. Count: 69, Neg. LLF: 150.34955947564904
Iteration: 12, Func. Count: 76, Neg. LLF: 152.69810148115383
Iteration: 13, Func. Count: 83, Neg. LLF: 152.617342969542
Iteration: 14, Func. Count: 90, Neg. LLF: 152.34913703231388
Iteration: 15, Func. Count: 97, Neg. LLF: 148.8257727432713
Iteration: 16, Func. Count: 104, Neg. LLF: 148.79683967810865
Iteration: 17, Func. Count: 110, Neg. LLF: 148.75546040847172
Iteration: 18, Func. Count: 116, Neg. LLF: 148.68537416061832
Iteration: 19, Func. Count: 122, Neg. LLF: 148.69592617481115
Iteration: 20, Func. Count: 129, Neg. LLF: 148.6733285190331
Iteration: 21, Func. Count: 135, Neg. LLF: 148.67150649929826
Iteration: 22, Func. Count: 141, Neg. LLF: 148.67146118477376
Iteration: 23, Func. Count: 147, Neg. LLF: 148.67145493543595
Iteration: 24, Func. Count: 153, Neg. LLF: 148.67164357875328
Optimization terminated successfully (Exit mode 0)
Current function value: 148.67145493866744
Iterations: 25
Function evaluations: 156
Gradient evaluations: 24
Iteration: 1, Func. Count: 8, Neg. LLF: 179.16093670295749
Iteration: 2, Func. Count: 16, Neg. LLF: 148.81155424309668
Iteration: 3, Func. Count: 23, Neg. LLF: 148.80528886323822
Iteration: 4, Func. Count: 30, Neg. LLF: 148.78921408552367
Iteration: 5, Func. Count: 37, Neg. LLF: 148.78745225769188
Iteration: 6, Func. Count: 44, Neg. LLF: 148.78620291370333
Iteration: 7, Func. Count: 51, Neg. LLF: 148.78396415891393
Iteration: 8, Func. Count: 58, Neg. LLF: 148.77723506831364
Iteration: 9, Func. Count: 65, Neg. LLF: 148.76340389541656
Iteration: 10, Func. Count: 72, Neg. LLF: 148.74330708757554
Iteration: 11, Func. Count: 79, Neg. LLF: 148.70088714268883
Iteration: 12, Func. Count: 86, Neg. LLF: 148.69345513010265
Iteration: 13, Func. Count: 93, Neg. LLF: 148.67983411257183
Iteration: 14, Func. Count: 100, Neg. LLF: 148.67790074710874
Iteration: 15, Func. Count: 107, Neg. LLF: 148.67761157602746
Iteration: 16, Func. Count: 114, Neg. LLF: 148.67760781863402
Iteration: 17, Func. Count: 120, Neg. LLF: 148.6776078186027
Optimization terminated successfully (Exit mode 0)
Current function value: 148.67760781863402
Iterations: 17
Function evaluations: 120
Gradient evaluations: 17
Iteration: 1, Func. Count: 9, Neg. LLF: 172.9852159003057
Iteration: 2, Func. Count: 18, Neg. LLF: 148.76573203638696
Iteration: 3, Func. Count: 26, Neg. LLF: 148.76727881133226
Iteration: 4, Func. Count: 35, Neg. LLF: 148.7596743237442
Iteration: 5, Func. Count: 43, Neg. LLF: 148.75807094416697
Iteration: 6, Func. Count: 51, Neg. LLF: 148.75487897620053
Iteration: 7, Func. Count: 59, Neg. LLF: 148.74660696389697
Iteration: 8, Func. Count: 67, Neg. LLF: 148.7283319122656
Iteration: 9, Func. Count: 75, Neg. LLF: 148.72049110796416
Iteration: 10, Func. Count: 83, Neg. LLF: 148.7007122990195
Iteration: 11, Func. Count: 91, Neg. LLF: 148.68626283829482
Iteration: 12, Func. Count: 99, Neg. LLF: 148.6781556856044
Iteration: 13, Func. Count: 107, Neg. LLF: 148.6776186985767
Iteration: 14, Func. Count: 115, Neg. LLF: 148.67760843854532
Iteration: 15, Func. Count: 123, Neg. LLF: 148.6776078289805
Optimization terminated successfully (Exit mode 0)
Current function value: 148.6776078289805
Iterations: 15
Function evaluations: 123
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 168.90630860739876
Iteration: 2, Func. Count: 20, Neg. LLF: 148.757611999095
Iteration: 3, Func. Count: 29, Neg. LLF: 148.7574172809337
Iteration: 4, Func. Count: 39, Neg. LLF: 148.75100625416073
Iteration: 5, Func. Count: 48, Neg. LLF: 148.74705341757291
Iteration: 6, Func. Count: 57, Neg. LLF: 148.74454616690463
Iteration: 7, Func. Count: 66, Neg. LLF: 148.74402168295447
Iteration: 8, Func. Count: 75, Neg. LLF: 148.7420705086158
Iteration: 9, Func. Count: 84, Neg. LLF: 148.74108332583927
Iteration: 10, Func. Count: 93, Neg. LLF: 148.74035177427078
Iteration: 11, Func. Count: 102, Neg. LLF: 148.7358896163982
Iteration: 12, Func. Count: 111, Neg. LLF: 148.7181088275371
Iteration: 13, Func. Count: 120, Neg. LLF: 148.71163953469096
Iteration: 14, Func. Count: 129, Neg. LLF: 148.7063148491982
Iteration: 15, Func. Count: 138, Neg. LLF: 148.68252041343683
Iteration: 16, Func. Count: 147, Neg. LLF: 148.6793295982057
Iteration: 17, Func. Count: 156, Neg. LLF: 148.67769612799037
Iteration: 18, Func. Count: 165, Neg. LLF: 148.67763517682428
Iteration: 19, Func. Count: 174, Neg. LLF: 148.67761299742872
Iteration: 20, Func. Count: 183, Neg. LLF: 148.6776078757067
Iteration: 21, Func. Count: 191, Neg. LLF: 148.67760787742532
Optimization terminated successfully (Exit mode 0)
Current function value: 148.6776078757067
Iterations: 21
Function evaluations: 191
Gradient evaluations: 21
Iteration: 1, Func. Count: 7, Neg. LLF: 160.37719191694143
Iteration: 2, Func. Count: 14, Neg. LLF: 150.94665192550283
Iteration: 3, Func. Count: 21, Neg. LLF: 143.36977157194886
Iteration: 4, Func. Count: 27, Neg. LLF: 143.0556403676537
Iteration: 5, Func. Count: 33, Neg. LLF: 143.0885931634494
Iteration: 6, Func. Count: 40, Neg. LLF: 142.90346934044365
Iteration: 7, Func. Count: 46, Neg. LLF: 142.87848563568468
Iteration: 8, Func. Count: 52, Neg. LLF: 142.8597526414627
Iteration: 9, Func. Count: 58, Neg. LLF: 142.8530679001566
Iteration: 10, Func. Count: 64, Neg. LLF: 142.8527146216811
Iteration: 11, Func. Count: 70, Neg. LLF: 142.85267108307903
Iteration: 12, Func. Count: 76, Neg. LLF: 142.8526563742626
Iteration: 13, Func. Count: 81, Neg. LLF: 142.85265635729456
Optimization terminated successfully (Exit mode 0)
Current function value: 142.8526563742626
Iterations: 13
Function evaluations: 81
Gradient evaluations: 13
Iteration: 1, Func. Count: 8, Neg. LLF: 187.71877602559638
Iteration: 2, Func. Count: 17, Neg. LLF: 148.85975400022406
Iteration: 3, Func. Count: 24, Neg. LLF: 148.85775616597846
Iteration: 4, Func. Count: 31, Neg. LLF: 148.85588170151212
Iteration: 5, Func. Count: 38, Neg. LLF: 148.85568404601545
Iteration: 6, Func. Count: 45, Neg. LLF: 148.85486030274345
Iteration: 7, Func. Count: 52, Neg. LLF: 148.8540595185107
Iteration: 8, Func. Count: 59, Neg. LLF: 148.85256781848696
Iteration: 9, Func. Count: 66, Neg. LLF: 148.84752087708762
Iteration: 10, Func. Count: 73, Neg. LLF: 148.83497915291656
Iteration: 11, Func. Count: 80, Neg. LLF: 148.84116178639297
Iteration: 12, Func. Count: 88, Neg. LLF: 150.44584701920303
Iteration: 13, Func. Count: 96, Neg. LLF: 149.18474578369847
Iteration: 14, Func. Count: 104, Neg. LLF: 149.50387511710457
Iteration: 15, Func. Count: 112, Neg. LLF: 153.55293345973374
Iteration: 16, Func. Count: 120, Neg. LLF: 149.0112116201372
Iteration: 17, Func. Count: 128, Neg. LLF: 148.68493943020326
Iteration: 18, Func. Count: 135, Neg. LLF: 148.67224131702866
Iteration: 19, Func. Count: 142, Neg. LLF: 148.67152909004173
Iteration: 20, Func. Count: 149, Neg. LLF: 148.6714802495839
Iteration: 21, Func. Count: 156, Neg. LLF: 148.6714577862137
Iteration: 22, Func. Count: 162, Neg. LLF: 148.67145778621648
Optimization terminated successfully (Exit mode 0)
Current function value: 148.6714577862137
Iterations: 22
Function evaluations: 162
Gradient evaluations: 22
Iteration: 1, Func. Count: 9, Neg. LLF: 179.20589892922393
Iteration: 2, Func. Count: 18, Neg. LLF: 148.81065686935395
Iteration: 3, Func. Count: 26, Neg. LLF: 148.8034035893214
Iteration: 4, Func. Count: 34, Neg. LLF: 148.7891807316706
Iteration: 5, Func. Count: 42, Neg. LLF: 148.78741185685192
Iteration: 6, Func. Count: 50, Neg. LLF: 148.7855950079542
Iteration: 7, Func. Count: 58, Neg. LLF: 148.78395886174698
Iteration: 8, Func. Count: 66, Neg. LLF: 148.77631692996516
Iteration: 9, Func. Count: 74, Neg. LLF: 148.7617360499289
Iteration: 10, Func. Count: 82, Neg. LLF: 148.74127691238374
Iteration: 11, Func. Count: 90, Neg. LLF: 148.7046096879625
Iteration: 12, Func. Count: 98, Neg. LLF: 148.68272054989026
Iteration: 13, Func. Count: 106, Neg. LLF: 148.6776221481067
Iteration: 14, Func. Count: 114, Neg. LLF: 148.6776078896186
Iteration: 15, Func. Count: 121, Neg. LLF: 148.67760788950514
Optimization terminated successfully (Exit mode 0)
Current function value: 148.6776078896186
Iterations: 15
Function evaluations: 121
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 172.82281791250173
Iteration: 2, Func. Count: 20, Neg. LLF: 148.76434937733185
Iteration: 3, Func. Count: 29, Neg. LLF: 148.76566590948826
Iteration: 4, Func. Count: 39, Neg. LLF: 148.7596624951177
Iteration: 5, Func. Count: 48, Neg. LLF: 148.75823088076172
Iteration: 6, Func. Count: 57, Neg. LLF: 148.7544848883499
Iteration: 7, Func. Count: 66, Neg. LLF: 148.74686298836806
Iteration: 8, Func. Count: 75, Neg. LLF: 148.73350919822389
Iteration: 9, Func. Count: 84, Neg. LLF: 148.71352274346427
Iteration: 10, Func. Count: 93, Neg. LLF: 148.70965293627378
Iteration: 11, Func. Count: 102, Neg. LLF: 148.70843309151903
Iteration: 12, Func. Count: 111, Neg. LLF: 148.70816338994263
Iteration: 13, Func. Count: 120, Neg. LLF: 148.70749758924987
Iteration: 14, Func. Count: 129, Neg. LLF: 148.69050691282445
Iteration: 15, Func. Count: 138, Neg. LLF: 148.68874791121686
Iteration: 16, Func. Count: 147, Neg. LLF: 148.68400906689612
Iteration: 17, Func. Count: 156, Neg. LLF: 148.68674804492704
Iteration: 18, Func. Count: 166, Neg. LLF: 148.68896721675506
Iteration: 19, Func. Count: 176, Neg. LLF: 148.67802758671004
Iteration: 20, Func. Count: 185, Neg. LLF: 156.61680328742364
Iteration: 21, Func. Count: 197, Neg. LLF: 148.67782360990785
Iteration: 22, Func. Count: 206, Neg. LLF: 148.6778107145652
Iteration: 23, Func. Count: 215, Neg. LLF: 148.67774128311325
Iteration: 24, Func. Count: 224, Neg. LLF: 148.67766163647903
Iteration: 25, Func. Count: 233, Neg. LLF: 148.6776200256501
Iteration: 26, Func. Count: 242, Neg. LLF: 148.67760860309127
Iteration: 27, Func. Count: 251, Neg. LLF: 148.67760782413575
Optimization terminated successfully (Exit mode 0)
Current function value: 148.67760782413575
Iterations: 28
Function evaluations: 251
Gradient evaluations: 27
Iteration: 1, Func. Count: 11, Neg. LLF: 168.85485708742598
Iteration: 2, Func. Count: 22, Neg. LLF: 148.75797009709942
Iteration: 3, Func. Count: 32, Neg. LLF: 148.7560835016735
Iteration: 4, Func. Count: 42, Neg. LLF: 148.75109903115032
Iteration: 5, Func. Count: 52, Neg. LLF: 148.75050664051173
Iteration: 6, Func. Count: 62, Neg. LLF: 148.7452683333786
Iteration: 7, Func. Count: 72, Neg. LLF: 148.7438309955944
Iteration: 8, Func. Count: 82, Neg. LLF: 148.7414946291381
Iteration: 9, Func. Count: 92, Neg. LLF: 148.739948647568
Iteration: 10, Func. Count: 102, Neg. LLF: 148.7379671698335
Iteration: 11, Func. Count: 112, Neg. LLF: 148.73202177102948
Iteration: 12, Func. Count: 122, Neg. LLF: 148.72472975168427
Iteration: 13, Func. Count: 132, Neg. LLF: 148.7193372763279
Iteration: 14, Func. Count: 142, Neg. LLF: 148.7178158520153
Iteration: 15, Func. Count: 152, Neg. LLF: 148.71771280240793
Iteration: 16, Func. Count: 162, Neg. LLF: 148.71770566296422
Iteration: 17, Func. Count: 172, Neg. LLF: 148.71770349750716
Iteration: 18, Func. Count: 181, Neg. LLF: 148.7177034975084
Optimization terminated successfully (Exit mode 0)
Current function value: 148.71770349750716
Iterations: 18
Function evaluations: 181
Gradient evaluations: 18
Iteration: 1, Func. Count: 8, Neg. LLF: 151.23730778479134
Iteration: 2, Func. Count: 16, Neg. LLF: 155.50228580840158
Iteration: 3, Func. Count: 24, Neg. LLF: 143.6036441267621
Iteration: 4, Func. Count: 31, Neg. LLF: 143.03504041758703
Iteration: 5, Func. Count: 38, Neg. LLF: 142.95600342905092
Iteration: 6, Func. Count: 45, Neg. LLF: 142.89140600945763
Iteration: 7, Func. Count: 52, Neg. LLF: 142.87069871793503
Iteration: 8, Func. Count: 59, Neg. LLF: 142.85704674534932
Iteration: 9, Func. Count: 66, Neg. LLF: 142.8536621972777
Iteration: 10, Func. Count: 73, Neg. LLF: 142.85271031849788
Iteration: 11, Func. Count: 80, Neg. LLF: 142.8526576122693
Iteration: 12, Func. Count: 87, Neg. LLF: 142.85265636306522
Iteration: 13, Func. Count: 93, Neg. LLF: 142.8526565525951
Optimization terminated successfully (Exit mode 0)
Current function value: 142.85265636306522
Iterations: 13
Function evaluations: 93
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 187.72396250943046
Iteration: 2, Func. Count: 19, Neg. LLF: 148.8574827881534
Iteration: 3, Func. Count: 27, Neg. LLF: 148.85754849160458
Iteration: 4, Func. Count: 36, Neg. LLF: 148.8554797203839
Iteration: 5, Func. Count: 44, Neg. LLF: 148.85480317828038
Iteration: 6, Func. Count: 52, Neg. LLF: 148.85126203035054
Iteration: 7, Func. Count: 60, Neg. LLF: 148.82840465224652
Iteration: 8, Func. Count: 68, Neg. LLF: 149.4861087556386
Iteration: 9, Func. Count: 77, Neg. LLF: 149.51219515893908
Iteration: 10, Func. Count: 86, Neg. LLF: 149.11089760011401
Iteration: 11, Func. Count: 95, Neg. LLF: 540.6716452063246
Iteration: 12, Func. Count: 107, Neg. LLF: 176.25071230466625
Iteration: 13, Func. Count: 117, Neg. LLF: 148.75138602888052
Iteration: 14, Func. Count: 125, Neg. LLF: 148.74762279113378
Iteration: 15, Func. Count: 133, Neg. LLF: 148.7256318281784
Iteration: 16, Func. Count: 141, Neg. LLF: 148.74759505144672
Iteration: 17, Func. Count: 150, Neg. LLF: 148.77849978999552
Iteration: 18, Func. Count: 159, Neg. LLF: 148.67206304781845
Iteration: 19, Func. Count: 167, Neg. LLF: 148.67183181409027
Iteration: 20, Func. Count: 175, Neg. LLF: 148.6715385193855
Iteration: 21, Func. Count: 183, Neg. LLF: 148.6714605747032
Iteration: 22, Func. Count: 191, Neg. LLF: 148.67145831160016
Iteration: 23, Func. Count: 198, Neg. LLF: 148.6714583116914
Optimization terminated successfully (Exit mode 0)
Current function value: 148.67145831160016
Iterations: 24
Function evaluations: 198
Gradient evaluations: 23
Iteration: 1, Func. Count: 10, Neg. LLF: 178.96165432543248
Iteration: 2, Func. Count: 20, Neg. LLF: 148.80593288914955
Iteration: 3, Func. Count: 29, Neg. LLF: 148.79662051080166
Iteration: 4, Func. Count: 38, Neg. LLF: 148.78874002955433
Iteration: 5, Func. Count: 47, Neg. LLF: 148.78713118646863
Iteration: 6, Func. Count: 56, Neg. LLF: 148.78566845088778
Iteration: 7, Func. Count: 65, Neg. LLF: 148.78287517961647
Iteration: 8, Func. Count: 74, Neg. LLF: 148.7743993785137
Iteration: 9, Func. Count: 83, Neg. LLF: 148.75698251979978
Iteration: 10, Func. Count: 92, Neg. LLF: 148.73430879367922
Iteration: 11, Func. Count: 101, Neg. LLF: 148.70896811027774
Iteration: 12, Func. Count: 110, Neg. LLF: 148.68000582927232
Iteration: 13, Func. Count: 119, Neg. LLF: 148.67764961927358
Iteration: 14, Func. Count: 128, Neg. LLF: 148.677629889171
Iteration: 15, Func. Count: 137, Neg. LLF: 148.67760789614283
Iteration: 16, Func. Count: 145, Neg. LLF: 148.6776078961715
Optimization terminated successfully (Exit mode 0)
Current function value: 148.67760789614283
Iterations: 16
Function evaluations: 145
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 172.89776645585053
Iteration: 2, Func. Count: 22, Neg. LLF: 148.76230454629027
Iteration: 3, Func. Count: 32, Neg. LLF: 148.76271928027342
Iteration: 4, Func. Count: 43, Neg. LLF: 148.75960380119662
Iteration: 5, Func. Count: 53, Neg. LLF: 148.75817056883855
Iteration: 6, Func. Count: 63, Neg. LLF: 148.75631561839634
Iteration: 7, Func. Count: 73, Neg. LLF: 148.744232554238
Iteration: 8, Func. Count: 83, Neg. LLF: 148.72845183486362
Iteration: 9, Func. Count: 93, Neg. LLF: 148.71542356916422
Iteration: 10, Func. Count: 103, Neg. LLF: 148.71019445095342
Iteration: 11, Func. Count: 113, Neg. LLF: 148.70869917184905
Iteration: 12, Func. Count: 123, Neg. LLF: 148.708023984628
Iteration: 13, Func. Count: 133, Neg. LLF: 148.70687457042973
Iteration: 14, Func. Count: 143, Neg. LLF: 148.69130195142137
Iteration: 15, Func. Count: 153, Neg. LLF: 148.69091689128774
Iteration: 16, Func. Count: 163, Neg. LLF: 148.68979095669798
Iteration: 17, Func. Count: 173, Neg. LLF: 148.68702962107173
Iteration: 18, Func. Count: 183, Neg. LLF: 148.67853671962615
Iteration: 19, Func. Count: 193, Neg. LLF: 156.33006121882838
Iteration: 20, Func. Count: 206, Neg. LLF: 148.67857472233192
Iteration: 21, Func. Count: 217, Neg. LLF: 148.67828653496758
Iteration: 22, Func. Count: 227, Neg. LLF: 148.67817805323884
Iteration: 23, Func. Count: 237, Neg. LLF: 148.67779817396948
Iteration: 24, Func. Count: 247, Neg. LLF: 148.6776083850462
Iteration: 25, Func. Count: 257, Neg. LLF: 148.6776078143676
Optimization terminated successfully (Exit mode 0)
Current function value: 148.6776078143676
Iterations: 26
Function evaluations: 257
Gradient evaluations: 25
Iteration: 1, Func. Count: 12, Neg. LLF: 168.4290917370487
Iteration: 2, Func. Count: 24, Neg. LLF: 148.75884556904893
Iteration: 3, Func. Count: 35, Neg. LLF: 148.75423295073875
Iteration: 4, Func. Count: 46, Neg. LLF: 148.75109747045485
Iteration: 5, Func. Count: 57, Neg. LLF: 148.75037907157363
Iteration: 6, Func. Count: 68, Neg. LLF: 148.74335457958603
Iteration: 7, Func. Count: 79, Neg. LLF: 148.742778245334
Iteration: 8, Func. Count: 90, Neg. LLF: 148.7422675459342
Iteration: 9, Func. Count: 101, Neg. LLF: 148.74149040419252
Iteration: 10, Func. Count: 112, Neg. LLF: 148.73892299436997
Iteration: 11, Func. Count: 123, Neg. LLF: 148.73377400451366
Iteration: 12, Func. Count: 134, Neg. LLF: 148.7251006458789
Iteration: 13, Func. Count: 145, Neg. LLF: 148.7155523811174
Iteration: 14, Func. Count: 156, Neg. LLF: 148.70880687157384
Iteration: 15, Func. Count: 167, Neg. LLF: 148.70393243137931
Iteration: 16, Func. Count: 178, Neg. LLF: 148.68450765317294
Iteration: 17, Func. Count: 189, Neg. LLF: 148.68027092434855
Iteration: 18, Func. Count: 200, Neg. LLF: 148.67776891609125
Iteration: 19, Func. Count: 211, Neg. LLF: 148.6776357936868
Iteration: 20, Func. Count: 222, Neg. LLF: 148.67761219411767
Iteration: 21, Func. Count: 233, Neg. LLF: 148.67760790607755
Iteration: 22, Func. Count: 243, Neg. LLF: 148.67760790776978
Optimization terminated successfully (Exit mode 0)
Current function value: 148.67760790607755
Iterations: 22
Function evaluations: 243
Gradient evaluations: 22
Iteration: 1, Func. Count: 9, Neg. LLF: 150.9600909018289
Iteration: 2, Func. Count: 18, Neg. LLF: 154.75851892367157
Iteration: 3, Func. Count: 27, Neg. LLF: 143.62061792741477
Iteration: 4, Func. Count: 35, Neg. LLF: 143.02363309417382
Iteration: 5, Func. Count: 43, Neg. LLF: 142.94129831378717
Iteration: 6, Func. Count: 51, Neg. LLF: 142.89978047137706
Iteration: 7, Func. Count: 59, Neg. LLF: 142.87172940764592
Iteration: 8, Func. Count: 67, Neg. LLF: 142.85741974690686
Iteration: 9, Func. Count: 75, Neg. LLF: 142.8537510200067
Iteration: 10, Func. Count: 83, Neg. LLF: 142.852750709487
Iteration: 11, Func. Count: 91, Neg. LLF: 142.85265899821968
Iteration: 12, Func. Count: 99, Neg. LLF: 142.85265646860577
Iteration: 13, Func. Count: 106, Neg. LLF: 142.8526569678249
Optimization terminated successfully (Exit mode 0)
Current function value: 142.85265646860577
Iterations: 13
Function evaluations: 106
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 187.72473762572332
Iteration: 2, Func. Count: 21, Neg. LLF: 148.85639087592565
Iteration: 3, Func. Count: 30, Neg. LLF: 148.85670386159882
Iteration: 4, Func. Count: 40, Neg. LLF: 148.85533449140425
Iteration: 5, Func. Count: 49, Neg. LLF: 148.85456154565662
Iteration: 6, Func. Count: 58, Neg. LLF: 148.85181548678912
Iteration: 7, Func. Count: 67, Neg. LLF: 148.8493112595247
Iteration: 8, Func. Count: 76, Neg. LLF: 148.84190235816902
Iteration: 9, Func. Count: 85, Neg. LLF: 148.8343913913909
Iteration: 10, Func. Count: 94, Neg. LLF: 148.78110117568133
Iteration: 11, Func. Count: 103, Neg. LLF: 152.66966068921738
Iteration: 12, Func. Count: 113, Neg. LLF: 152.49734215433736
Iteration: 13, Func. Count: 123, Neg. LLF: 151.94696718563924
Iteration: 14, Func. Count: 133, Neg. LLF: 148.79052015157785
Iteration: 15, Func. Count: 143, Neg. LLF: 148.6908599884265
Iteration: 16, Func. Count: 153, Neg. LLF: 148.68012453166455
Iteration: 17, Func. Count: 163, Neg. LLF: 148.67452575250195
Iteration: 18, Func. Count: 172, Neg. LLF: 148.67173985133135
Iteration: 19, Func. Count: 181, Neg. LLF: 148.67146309855187
Iteration: 20, Func. Count: 190, Neg. LLF: 148.67145759765182
Iteration: 21, Func. Count: 199, Neg. LLF: 148.68144437958333
Optimization terminated successfully (Exit mode 0)
Current function value: 148.6714575917867
Iterations: 22
Function evaluations: 202
Gradient evaluations: 21
Iteration: 1, Func. Count: 11, Neg. LLF: 179.08032956286831
Iteration: 2, Func. Count: 22, Neg. LLF: 148.8068050495769
Iteration: 3, Func. Count: 32, Neg. LLF: 148.7969534005314
Iteration: 4, Func. Count: 42, Neg. LLF: 148.78828567805135
Iteration: 5, Func. Count: 52, Neg. LLF: 148.78729025757272
Iteration: 6, Func. Count: 62, Neg. LLF: 148.7835014374744
Iteration: 7, Func. Count: 72, Neg. LLF: 148.77917203975286
Iteration: 8, Func. Count: 82, Neg. LLF: 148.77080043612122
Iteration: 9, Func. Count: 92, Neg. LLF: 148.7517321894036
Iteration: 10, Func. Count: 102, Neg. LLF: 148.7275572282587
Iteration: 11, Func. Count: 112, Neg. LLF: 148.70930781716854
Iteration: 12, Func. Count: 122, Neg. LLF: 148.6795918856922
Iteration: 13, Func. Count: 132, Neg. LLF: 148.67790460266804
Iteration: 14, Func. Count: 142, Neg. LLF: 148.6778440727721
Iteration: 15, Func. Count: 153, Neg. LLF: 148.67760793442596
Iteration: 16, Func. Count: 162, Neg. LLF: 148.67760793452436
Optimization terminated successfully (Exit mode 0)
Current function value: 148.67760793442596
Iterations: 16
Function evaluations: 162
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 172.6342778959155
Iteration: 2, Func. Count: 24, Neg. LLF: 148.76133791623758
Iteration: 3, Func. Count: 35, Neg. LLF: 148.7615639044759
Iteration: 4, Func. Count: 47, Neg. LLF: 148.7596372625
Iteration: 5, Func. Count: 58, Neg. LLF: 148.75683419762646
Iteration: 6, Func. Count: 69, Neg. LLF: 148.7510409349853
Iteration: 7, Func. Count: 80, Neg. LLF: 148.73517539258648
Iteration: 8, Func. Count: 91, Neg. LLF: 148.72679998819666
Iteration: 9, Func. Count: 102, Neg. LLF: 148.6844087728332
Iteration: 10, Func. Count: 113, Neg. LLF: 148.6779012331367
Iteration: 11, Func. Count: 124, Neg. LLF: 148.67766028010277
Iteration: 12, Func. Count: 135, Neg. LLF: 148.67760830438627
Iteration: 13, Func. Count: 145, Neg. LLF: 148.67760831004105
Optimization terminated successfully (Exit mode 0)
Current function value: 148.67760830438627
Iterations: 13
Function evaluations: 145
Gradient evaluations: 13
Iteration: 1, Func. Count: 13, Neg. LLF: 168.6376639163512
Iteration: 2, Func. Count: 26, Neg. LLF: 148.75296120860497
Iteration: 3, Func. Count: 38, Neg. LLF: 148.75118536590048
Iteration: 4, Func. Count: 50, Neg. LLF: 148.74859746170793
Iteration: 5, Func. Count: 62, Neg. LLF: 148.7453171136888
Iteration: 6, Func. Count: 74, Neg. LLF: 148.74468420415678
Iteration: 7, Func. Count: 86, Neg. LLF: 148.74396269831544
Iteration: 8, Func. Count: 98, Neg. LLF: 148.74093507092775
Iteration: 9, Func. Count: 110, Neg. LLF: 148.73626448867827
Iteration: 10, Func. Count: 122, Neg. LLF: 148.7275423525578
Iteration: 11, Func. Count: 134, Neg. LLF: 148.72101576418802
Iteration: 12, Func. Count: 146, Neg. LLF: 148.7180234540616
Iteration: 13, Func. Count: 158, Neg. LLF: 148.7177252441363
Iteration: 14, Func. Count: 170, Neg. LLF: 148.7177105399868
Iteration: 15, Func. Count: 182, Neg. LLF: 148.71770348576715
Iteration: 16, Func. Count: 193, Neg. LLF: 148.71770348576064
Optimization terminated successfully (Exit mode 0)
Current function value: 148.71770348576715
Iterations: 16
Function evaluations: 193
Gradient evaluations: 16
Iteration: 1, Func. Count: 6, Neg. LLF: 150.43191356929339
Iteration: 2, Func. Count: 11, Neg. LLF: 151.32045282349196
Iteration: 3, Func. Count: 17, Neg. LLF: 146.86655201086816
Iteration: 4, Func. Count: 22, Neg. LLF: 146.20768261542565
Iteration: 5, Func. Count: 27, Neg. LLF: 145.93797621904406
Iteration: 6, Func. Count: 32, Neg. LLF: 185.04637153147164
Iteration: 7, Func. Count: 40, Neg. LLF: 146.05693884410056
Iteration: 8, Func. Count: 46, Neg. LLF: 145.89776913383008
Iteration: 9, Func. Count: 51, Neg. LLF: 145.89732071093806
Iteration: 10, Func. Count: 56, Neg. LLF: 145.89731954747526
Iteration: 11, Func. Count: 60, Neg. LLF: 145.89731946168652
Optimization terminated successfully (Exit mode 0)
Current function value: 145.89731954747526
Iterations: 11
Function evaluations: 60
Gradient evaluations: 11
Iteration: 1, Func. Count: 7, Neg. LLF: 187.67988844852994
Iteration: 2, Func. Count: 15, Neg. LLF: 148.85645544802549
Iteration: 3, Func. Count: 21, Neg. LLF: 148.855924332049
Iteration: 4, Func. Count: 27, Neg. LLF: 148.85535519094077
Iteration: 5, Func. Count: 33, Neg. LLF: 148.85511874937743
Iteration: 6, Func. Count: 39, Neg. LLF: 148.85385741279958
Iteration: 7, Func. Count: 45, Neg. LLF: 148.85232825889062
Iteration: 8, Func. Count: 51, Neg. LLF: 148.8489239894746
Iteration: 9, Func. Count: 57, Neg. LLF: 148.84121983780082
Iteration: 10, Func. Count: 63, Neg. LLF: 148.83816821623694
Iteration: 11, Func. Count: 70, Neg. LLF: 149.6123218884028
Iteration: 12, Func. Count: 77, Neg. LLF: 150.33079994269647
Iteration: 13, Func. Count: 84, Neg. LLF: 149.3574937167372
Iteration: 14, Func. Count: 91, Neg. LLF: 149.122670101551
Iteration: 15, Func. Count: 98, Neg. LLF: 149.91961951774312
Iteration: 16, Func. Count: 105, Neg. LLF: 148.77287659407108
Iteration: 17, Func. Count: 112, Neg. LLF: 148.69580864545364
Iteration: 18, Func. Count: 118, Neg. LLF: 148.67317806350067
Iteration: 19, Func. Count: 124, Neg. LLF: 148.6732758246151
Iteration: 20, Func. Count: 131, Neg. LLF: 148.6714835130424
Iteration: 21, Func. Count: 137, Neg. LLF: 148.67145828955617
Iteration: 22, Func. Count: 142, Neg. LLF: 148.6714582895228
Optimization terminated successfully (Exit mode 0)
Current function value: 148.67145828955617
Iterations: 22
Function evaluations: 142
Gradient evaluations: 22
Iteration: 1, Func. Count: 8, Neg. LLF: 179.24383969004353
Iteration: 2, Func. Count: 17, Neg. LLF: 148.80962514169968
Iteration: 3, Func. Count: 24, Neg. LLF: 148.79305214699724
Iteration: 4, Func. Count: 31, Neg. LLF: 148.78815685736438
Iteration: 5, Func. Count: 38, Neg. LLF: 148.7853682819677
Iteration: 6, Func. Count: 45, Neg. LLF: 148.7844207962207
Iteration: 7, Func. Count: 52, Neg. LLF: 148.78035331646709
Iteration: 8, Func. Count: 59, Neg. LLF: 148.77224084338303
Iteration: 9, Func. Count: 66, Neg. LLF: 148.7490291061725
Iteration: 10, Func. Count: 73, Neg. LLF: 148.73510425207928
Iteration: 11, Func. Count: 80, Neg. LLF: 148.70275561743688
Iteration: 12, Func. Count: 87, Neg. LLF: 148.67960844101344
Iteration: 13, Func. Count: 94, Neg. LLF: 148.67791658253122
Iteration: 14, Func. Count: 101, Neg. LLF: 148.67770473438367
Iteration: 15, Func. Count: 108, Neg. LLF: 148.6776112366289
Iteration: 16, Func. Count: 115, Neg. LLF: 148.67760787995368
Iteration: 17, Func. Count: 121, Neg. LLF: 148.6776078798998
Optimization terminated successfully (Exit mode 0)
Current function value: 148.67760787995368
Iterations: 17
Function evaluations: 121
Gradient evaluations: 17
Iteration: 1, Func. Count: 9, Neg. LLF: 173.17986940193515
Iteration: 2, Func. Count: 18, Neg. LLF: 148.7631333342387
Iteration: 3, Func. Count: 26, Neg. LLF: 148.76210593222075
Iteration: 4, Func. Count: 34, Neg. LLF: 148.75917167969985
Iteration: 5, Func. Count: 42, Neg. LLF: 148.75827131288938
Iteration: 6, Func. Count: 50, Neg. LLF: 148.75740131708
Iteration: 7, Func. Count: 58, Neg. LLF: 148.75285471847852
Iteration: 8, Func. Count: 66, Neg. LLF: 148.7430097484915
Iteration: 9, Func. Count: 74, Neg. LLF: 148.72623140661088
Iteration: 10, Func. Count: 82, Neg. LLF: 148.71636790642378
Iteration: 11, Func. Count: 90, Neg. LLF: 148.70976294009301
Iteration: 12, Func. Count: 98, Neg. LLF: 148.70867728219258
Iteration: 13, Func. Count: 106, Neg. LLF: 148.70805689108232
Iteration: 14, Func. Count: 114, Neg. LLF: 148.7071875836024
Iteration: 15, Func. Count: 122, Neg. LLF: 148.69524999397217
Iteration: 16, Func. Count: 130, Neg. LLF: 148.68874722195048
Iteration: 17, Func. Count: 138, Neg. LLF: 148.67854693392567
Iteration: 18, Func. Count: 146, Neg. LLF: 155.0776845244966
Iteration: 19, Func. Count: 157, Neg. LLF: 148.67849555705018
Iteration: 20, Func. Count: 166, Neg. LLF: 148.67842572326464
Iteration: 21, Func. Count: 174, Neg. LLF: 148.67823975753916
Iteration: 22, Func. Count: 182, Neg. LLF: 148.67771125330063
Iteration: 23, Func. Count: 190, Neg. LLF: 148.67760805201232
Iteration: 24, Func. Count: 197, Neg. LLF: 148.67760805746462
Optimization terminated successfully (Exit mode 0)
Current function value: 148.67760805201232
Iterations: 25
Function evaluations: 197
Gradient evaluations: 24
Iteration: 1, Func. Count: 10, Neg. LLF: 169.18585319255277
Iteration: 2, Func. Count: 20, Neg. LLF: 148.7521407268147
Iteration: 3, Func. Count: 29, Neg. LLF: 148.75173717005697
Iteration: 4, Func. Count: 39, Neg. LLF: 148.74927743770283
Iteration: 5, Func. Count: 48, Neg. LLF: 148.75290885975423
Iteration: 6, Func. Count: 58, Neg. LLF: 148.74442303681437
Iteration: 7, Func. Count: 67, Neg. LLF: 148.7434078340551
Iteration: 8, Func. Count: 76, Neg. LLF: 148.74210856087387
Iteration: 9, Func. Count: 85, Neg. LLF: 148.73958999877746
Iteration: 10, Func. Count: 94, Neg. LLF: 148.73452117298226
Iteration: 11, Func. Count: 103, Neg. LLF: 148.72651123295304
Iteration: 12, Func. Count: 112, Neg. LLF: 148.71988646179082
Iteration: 13, Func. Count: 121, Neg. LLF: 148.7178851922684
Iteration: 14, Func. Count: 130, Neg. LLF: 148.71770545422152
Iteration: 15, Func. Count: 139, Neg. LLF: 148.71770350801032
Iteration: 16, Func. Count: 147, Neg. LLF: 148.7177035080532
Optimization terminated successfully (Exit mode 0)
Current function value: 148.71770350801032
Iterations: 16
Function evaluations: 147
Gradient evaluations: 16
Iteration: 1, Func. Count: 7, Neg. LLF: 161.96958132024272
Iteration: 2, Func. Count: 14, Neg. LLF: 150.3461073752712
Iteration: 3, Func. Count: 21, Neg. LLF: 143.33423121917377
Iteration: 4, Func. Count: 27, Neg. LLF: 142.95472530270067
Iteration: 5, Func. Count: 33, Neg. LLF: 142.9290992880876
Iteration: 6, Func. Count: 39, Neg. LLF: 142.95917760070884
Iteration: 7, Func. Count: 46, Neg. LLF: 142.95155309227567
Iteration: 8, Func. Count: 53, Neg. LLF: 142.8836486165534
Iteration: 9, Func. Count: 59, Neg. LLF: 142.88279313819487
Iteration: 10, Func. Count: 65, Neg. LLF: 142.88272658031934
Iteration: 11, Func. Count: 71, Neg. LLF: 142.88272549373704
Iteration: 12, Func. Count: 76, Neg. LLF: 142.88272547689266
Optimization terminated successfully (Exit mode 0)
Current function value: 142.88272549373704
Iterations: 12
Function evaluations: 76
Gradient evaluations: 12
Iteration: 1, Func. Count: 8, Neg. LLF: 187.71819246594788
Iteration: 2, Func. Count: 17, Neg. LLF: 148.85966898437664
Iteration: 3, Func. Count: 24, Neg. LLF: 148.85765684336678
Iteration: 4, Func. Count: 31, Neg. LLF: 148.85588299935117
Iteration: 5, Func. Count: 38, Neg. LLF: 148.85568214459428
Iteration: 6, Func. Count: 45, Neg. LLF: 148.85486216472918
Iteration: 7, Func. Count: 52, Neg. LLF: 148.85413455069107
Iteration: 8, Func. Count: 59, Neg. LLF: 148.85254284432853
Iteration: 9, Func. Count: 66, Neg. LLF: 148.84760703642525
Iteration: 10, Func. Count: 73, Neg. LLF: 148.83483922408436
Iteration: 11, Func. Count: 80, Neg. LLF: 148.8389334792153
Iteration: 12, Func. Count: 88, Neg. LLF: 150.30734443494677
Iteration: 13, Func. Count: 96, Neg. LLF: 149.07892914220153
Iteration: 14, Func. Count: 104, Neg. LLF: 150.22482252430163
Iteration: 15, Func. Count: 112, Neg. LLF: 153.95165692213502
Iteration: 16, Func. Count: 120, Neg. LLF: 148.81038537652725
Iteration: 17, Func. Count: 128, Neg. LLF: 148.67432664691688
Iteration: 18, Func. Count: 135, Neg. LLF: 148.67166727919158
Iteration: 19, Func. Count: 142, Neg. LLF: 148.67146341877068
Iteration: 20, Func. Count: 149, Neg. LLF: 148.6714576528829
Iteration: 21, Func. Count: 156, Neg. LLF: 148.67145935160752
Optimization terminated successfully (Exit mode 0)
Current function value: 148.67145813368467
Iterations: 21
Function evaluations: 157
Gradient evaluations: 21
Iteration: 1, Func. Count: 9, Neg. LLF: 179.14513719038206
Iteration: 2, Func. Count: 18, Neg. LLF: 148.8098397372712
Iteration: 3, Func. Count: 26, Neg. LLF: 148.80236907568013
Iteration: 4, Func. Count: 34, Neg. LLF: 148.78910266383048
Iteration: 5, Func. Count: 42, Neg. LLF: 148.78735239542857
Iteration: 6, Func. Count: 50, Neg. LLF: 148.78579634383456
Iteration: 7, Func. Count: 58, Neg. LLF: 148.78390314293395
Iteration: 8, Func. Count: 66, Neg. LLF: 148.77663509932705
Iteration: 9, Func. Count: 74, Neg. LLF: 148.7620151953132
Iteration: 10, Func. Count: 82, Neg. LLF: 148.74151218005673
Iteration: 11, Func. Count: 90, Neg. LLF: 148.70556710673745
Iteration: 12, Func. Count: 98, Neg. LLF: 148.68250547841456
Iteration: 13, Func. Count: 106, Neg. LLF: 148.67772854197872
Iteration: 14, Func. Count: 114, Neg. LLF: 148.67761847757643
Iteration: 15, Func. Count: 122, Neg. LLF: 148.67761054461695
Iteration: 16, Func. Count: 130, Neg. LLF: 148.67760783634068
Iteration: 17, Func. Count: 137, Neg. LLF: 148.67760783639696
Optimization terminated successfully (Exit mode 0)
Current function value: 148.67760783634068
Iterations: 17
Function evaluations: 137
Gradient evaluations: 17
Iteration: 1, Func. Count: 10, Neg. LLF: 172.87515028840258
Iteration: 2, Func. Count: 20, Neg. LLF: 148.7646523708467
Iteration: 3, Func. Count: 29, Neg. LLF: 148.7658385209241
Iteration: 4, Func. Count: 39, Neg. LLF: 148.75963905416444
Iteration: 5, Func. Count: 48, Neg. LLF: 148.75841395831048
Iteration: 6, Func. Count: 57, Neg. LLF: 148.75530328248772
Iteration: 7, Func. Count: 66, Neg. LLF: 148.7483392446901
Iteration: 8, Func. Count: 75, Neg. LLF: 148.7354850011073
Iteration: 9, Func. Count: 84, Neg. LLF: 148.7174022131279
Iteration: 10, Func. Count: 93, Neg. LLF: 148.71143787789225
Iteration: 11, Func. Count: 102, Neg. LLF: 148.70891520211134
Iteration: 12, Func. Count: 111, Neg. LLF: 148.7083626665065
Iteration: 13, Func. Count: 120, Neg. LLF: 148.70763263664657
Iteration: 14, Func. Count: 129, Neg. LLF: 148.6903807744377
Iteration: 15, Func. Count: 138, Neg. LLF: 148.68964708070723
Iteration: 16, Func. Count: 147, Neg. LLF: 148.6870533662884
Iteration: 17, Func. Count: 156, Neg. LLF: 148.6788980220571
Iteration: 18, Func. Count: 165, Neg. LLF: 154.0643186022584
Iteration: 19, Func. Count: 177, Neg. LLF: 148.6791013632928
Iteration: 20, Func. Count: 187, Neg. LLF: 148.6776140333764
Iteration: 21, Func. Count: 195, Neg. LLF: 148.67761403876312
Optimization terminated successfully (Exit mode 0)
Current function value: 148.6776140333764
Iterations: 22
Function evaluations: 195
Gradient evaluations: 21
Iteration: 1, Func. Count: 11, Neg. LLF: 168.73287510090822
Iteration: 2, Func. Count: 22, Neg. LLF: 148.7594759540109
Iteration: 3, Func. Count: 32, Neg. LLF: 148.75619191151162
Iteration: 4, Func. Count: 42, Neg. LLF: 148.75135205058535
Iteration: 5, Func. Count: 52, Neg. LLF: 148.7510878899863
Iteration: 6, Func. Count: 62, Neg. LLF: 148.74960115519366
Iteration: 7, Func. Count: 72, Neg. LLF: 148.7397994299318
Iteration: 8, Func. Count: 82, Neg. LLF: 148.74499614760325
Iteration: 9, Func. Count: 93, Neg. LLF: 148.7257034359171
Iteration: 10, Func. Count: 103, Neg. LLF: 148.72115984998666
Iteration: 11, Func. Count: 113, Neg. LLF: 148.7184472655782
Iteration: 12, Func. Count: 123, Neg. LLF: 148.71777298550214
Iteration: 13, Func. Count: 133, Neg. LLF: 148.71770950223623
Iteration: 14, Func. Count: 143, Neg. LLF: 148.7177034921092
Iteration: 15, Func. Count: 152, Neg. LLF: 148.7177034920891
Optimization terminated successfully (Exit mode 0)
Current function value: 148.7177034921092
Iterations: 15
Function evaluations: 152
Gradient evaluations: 15
Iteration: 1, Func. Count: 8, Neg. LLF: 158.63649537290468
Iteration: 2, Func. Count: 16, Neg. LLF: 155.30993651303237
Iteration: 3, Func. Count: 24, Neg. LLF: 143.4489188289304
Iteration: 4, Func. Count: 31, Neg. LLF: 143.08605851696197
Iteration: 5, Func. Count: 38, Neg. LLF: 146.42002381064813
Iteration: 6, Func. Count: 46, Neg. LLF: 142.8889934118739
Iteration: 7, Func. Count: 53, Neg. LLF: 142.88810523818736
Iteration: 8, Func. Count: 61, Neg. LLF: 142.8587474645391
Iteration: 9, Func. Count: 68, Neg. LLF: 142.85324682384805
Iteration: 10, Func. Count: 75, Neg. LLF: 142.8526818289558
Iteration: 11, Func. Count: 82, Neg. LLF: 142.8526588684045
Iteration: 12, Func. Count: 89, Neg. LLF: 142.85265636275028
Iteration: 13, Func. Count: 95, Neg. LLF: 142.85265634578857
Optimization terminated successfully (Exit mode 0)
Current function value: 142.85265636275028
Iterations: 13
Function evaluations: 95
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 187.72746953090888
Iteration: 2, Func. Count: 19, Neg. LLF: 148.85775658316737
Iteration: 3, Func. Count: 27, Neg. LLF: 148.85753719630964
Iteration: 4, Func. Count: 36, Neg. LLF: 148.85558948923583
Iteration: 5, Func. Count: 44, Neg. LLF: 148.85490389920142
Iteration: 6, Func. Count: 52, Neg. LLF: 148.85160385169584
Iteration: 7, Func. Count: 60, Neg. LLF: 148.83642857701992
Iteration: 8, Func. Count: 68, Neg. LLF: 148.96197249873836
Iteration: 9, Func. Count: 77, Neg. LLF: 154.08702990509292
Iteration: 10, Func. Count: 86, Neg. LLF: 153.16563531908994
Iteration: 11, Func. Count: 95, Neg. LLF: 152.2888806475919
Iteration: 12, Func. Count: 104, Neg. LLF: 149.36581021378709
Iteration: 13, Func. Count: 113, Neg. LLF: 149.06352673303869
Iteration: 14, Func. Count: 122, Neg. LLF: 149.03281133907245
Iteration: 15, Func. Count: 131, Neg. LLF: 148.8311971871141
Iteration: 16, Func. Count: 140, Neg. LLF: 148.71443428466375
Iteration: 17, Func. Count: 148, Neg. LLF: 148.6808807381803
Iteration: 18, Func. Count: 156, Neg. LLF: 148.6718580496058
Iteration: 19, Func. Count: 164, Neg. LLF: 148.67146723144037
Iteration: 20, Func. Count: 172, Neg. LLF: 148.671448556929
Iteration: 21, Func. Count: 180, Neg. LLF: 148.6714550824199
Iteration: 22, Func. Count: 188, Neg. LLF: 148.6714582776581
Iteration: 23, Func. Count: 196, Neg. LLF: 148.67145471217418
Optimization terminated successfully (Exit mode 0)
Current function value: 148.6714582742031
Iterations: 23
Function evaluations: 206
Gradient evaluations: 23
Iteration: 1, Func. Count: 10, Neg. LLF: 179.1638615759206
Iteration: 2, Func. Count: 20, Neg. LLF: 148.80892054429026
Iteration: 3, Func. Count: 29, Neg. LLF: 148.8003616483655
Iteration: 4, Func. Count: 38, Neg. LLF: 148.788911671929
Iteration: 5, Func. Count: 47, Neg. LLF: 148.78736174515527
Iteration: 6, Func. Count: 56, Neg. LLF: 148.78495702042753
Iteration: 7, Func. Count: 65, Neg. LLF: 148.78319309658485
Iteration: 8, Func. Count: 74, Neg. LLF: 148.77356768308007
Iteration: 9, Func. Count: 83, Neg. LLF: 148.75650278565715
Iteration: 10, Func. Count: 92, Neg. LLF: 148.7339152554326
Iteration: 11, Func. Count: 101, Neg. LLF: 148.7058966933995
Iteration: 12, Func. Count: 110, Neg. LLF: 148.6795477620949
Iteration: 13, Func. Count: 119, Neg. LLF: 148.67797326386764
Iteration: 14, Func. Count: 128, Neg. LLF: 148.6776333732576
Iteration: 15, Func. Count: 137, Neg. LLF: 148.6776088479426
Iteration: 16, Func. Count: 146, Neg. LLF: 148.6776078168726
Iteration: 17, Func. Count: 154, Neg. LLF: 148.67760781686422
Optimization terminated successfully (Exit mode 0)
Current function value: 148.6776078168726
Iterations: 17
Function evaluations: 154
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 172.69039854718903
Iteration: 2, Func. Count: 22, Neg. LLF: 148.76352679952132
Iteration: 3, Func. Count: 32, Neg. LLF: 148.76416692742436
Iteration: 4, Func. Count: 43, Neg. LLF: 148.75962860160698
Iteration: 5, Func. Count: 53, Neg. LLF: 148.7585549294293
Iteration: 6, Func. Count: 63, Neg. LLF: 148.75646141181923
Iteration: 7, Func. Count: 73, Neg. LLF: 148.75005374314838
Iteration: 8, Func. Count: 83, Neg. LLF: 148.7367807217894
Iteration: 9, Func. Count: 93, Neg. LLF: 148.7202581447685
Iteration: 10, Func. Count: 103, Neg. LLF: 148.7126058364402
Iteration: 11, Func. Count: 113, Neg. LLF: 148.7090897060535
Iteration: 12, Func. Count: 123, Neg. LLF: 148.70835551579245
Iteration: 13, Func. Count: 133, Neg. LLF: 148.70761362307374
Iteration: 14, Func. Count: 143, Neg. LLF: 148.6914204767023
Iteration: 15, Func. Count: 153, Neg. LLF: 148.69084222739247
Iteration: 16, Func. Count: 163, Neg. LLF: 148.6897202218045
Iteration: 17, Func. Count: 173, Neg. LLF: 148.68810907696508
Iteration: 18, Func. Count: 183, Neg. LLF: 148.67847666496925
Iteration: 19, Func. Count: 193, Neg. LLF: 149.71441361399107
Iteration: 20, Func. Count: 206, Neg. LLF: 148.67844388017897
Iteration: 21, Func. Count: 216, Neg. LLF: 148.6782639465287
Iteration: 22, Func. Count: 226, Neg. LLF: 148.6777503486221
Iteration: 23, Func. Count: 236, Neg. LLF: 148.67763075552216
Iteration: 24, Func. Count: 246, Neg. LLF: 148.67760828024092
Iteration: 25, Func. Count: 255, Neg. LLF: 148.6776082856516
Optimization terminated successfully (Exit mode 0)
Current function value: 148.67760828024092
Iterations: 26
Function evaluations: 255
Gradient evaluations: 25
Iteration: 1, Func. Count: 12, Neg. LLF: 168.65662513337992
Iteration: 2, Func. Count: 24, Neg. LLF: 148.75704865333708
Iteration: 3, Func. Count: 35, Neg. LLF: 148.75460773370864
Iteration: 4, Func. Count: 46, Neg. LLF: 148.75066076555325
Iteration: 5, Func. Count: 57, Neg. LLF: 148.74984371960218
Iteration: 6, Func. Count: 68, Neg. LLF: 148.74401318775148
Iteration: 7, Func. Count: 79, Neg. LLF: 148.7433640649184
Iteration: 8, Func. Count: 90, Neg. LLF: 148.742202523098
Iteration: 9, Func. Count: 101, Neg. LLF: 148.73972840343515
Iteration: 10, Func. Count: 112, Neg. LLF: 148.73405312694942
Iteration: 11, Func. Count: 123, Neg. LLF: 148.72631780798991
Iteration: 12, Func. Count: 134, Neg. LLF: 148.72011116084914
Iteration: 13, Func. Count: 145, Neg. LLF: 148.71776798797097
Iteration: 14, Func. Count: 156, Neg. LLF: 148.71771024983684
Iteration: 15, Func. Count: 167, Neg. LLF: 148.7177070670483
Iteration: 16, Func. Count: 178, Neg. LLF: 148.71770348564917
Iteration: 17, Func. Count: 188, Neg. LLF: 148.71770348565136
Optimization terminated successfully (Exit mode 0)
Current function value: 148.71770348564917
Iterations: 17
Function evaluations: 188
Gradient evaluations: 17
Iteration: 1, Func. Count: 9, Neg. LLF: 155.16799423351415
Iteration: 2, Func. Count: 18, Neg. LLF: 156.98469341613
Iteration: 3, Func. Count: 27, Neg. LLF: 143.4307088257522
Iteration: 4, Func. Count: 35, Neg. LLF: 143.0673306215969
Iteration: 5, Func. Count: 43, Neg. LLF: 150.45931015037968
Iteration: 6, Func. Count: 52, Neg. LLF: 142.89416942258657
Iteration: 7, Func. Count: 60, Neg. LLF: 142.87266825766176
Iteration: 8, Func. Count: 68, Neg. LLF: 142.86014997095467
Iteration: 9, Func. Count: 76, Neg. LLF: 142.8527707633114
Iteration: 10, Func. Count: 84, Neg. LLF: 142.85265661837897
Iteration: 11, Func. Count: 91, Neg. LLF: 142.85265680791022
Optimization terminated successfully (Exit mode 0)
Current function value: 142.85265661837897
Iterations: 11
Function evaluations: 91
Gradient evaluations: 11
Iteration: 1, Func. Count: 10, Neg. LLF: 187.73221502342724
Iteration: 2, Func. Count: 21, Neg. LLF: 148.85630274529427
Iteration: 3, Func. Count: 30, Neg. LLF: 148.85660162935199
Iteration: 4, Func. Count: 40, Neg. LLF: 148.85536668443424
Iteration: 5, Func. Count: 49, Neg. LLF: 148.85461807765535
Iteration: 6, Func. Count: 58, Neg. LLF: 148.85158857409482
Iteration: 7, Func. Count: 67, Neg. LLF: 148.84722194761835
Iteration: 8, Func. Count: 76, Neg. LLF: 148.8410123611264
Iteration: 9, Func. Count: 85, Neg. LLF: 149.65193112911058
Iteration: 10, Func. Count: 95, Neg. LLF: 151.62049211548853
Iteration: 11, Func. Count: 105, Neg. LLF: 150.06276241910783
Iteration: 12, Func. Count: 115, Neg. LLF: 150.3301372095036
Iteration: 13, Func. Count: 125, Neg. LLF: 149.01377388934054
Iteration: 14, Func. Count: 135, Neg. LLF: 149.02692050400879
Iteration: 15, Func. Count: 145, Neg. LLF: 149.00332043524074
Iteration: 16, Func. Count: 155, Neg. LLF: 173.97179116178108
Iteration: 17, Func. Count: 166, Neg. LLF: 149.30761561447292
Iteration: 18, Func. Count: 176, Neg. LLF: 148.68744783452394
Iteration: 19, Func. Count: 185, Neg. LLF: 148.67382575814227
Iteration: 20, Func. Count: 194, Neg. LLF: 148.67149102288755
Iteration: 21, Func. Count: 203, Neg. LLF: 148.67145918603816
Iteration: 22, Func. Count: 212, Neg. LLF: 151.36454467500045
Iteration: 23, Func. Count: 223, Neg. LLF: 148.67145778462577
Optimization terminated successfully (Exit mode 0)
Current function value: 148.67145778443563
Iterations: 24
Function evaluations: 223
Gradient evaluations: 23
Iteration: 1, Func. Count: 11, Neg. LLF: 178.94515430269783
Iteration: 2, Func. Count: 22, Neg. LLF: 148.80493587976474
Iteration: 3, Func. Count: 32, Neg. LLF: 148.79440232036407
Iteration: 4, Func. Count: 42, Neg. LLF: 148.78853735463386
Iteration: 5, Func. Count: 52, Neg. LLF: 148.78699753811165
Iteration: 6, Func. Count: 62, Neg. LLF: 148.7840970358162
Iteration: 7, Func. Count: 72, Neg. LLF: 148.78160311323745
Iteration: 8, Func. Count: 82, Neg. LLF: 148.76948023217207
Iteration: 9, Func. Count: 92, Neg. LLF: 148.75128056134506
Iteration: 10, Func. Count: 102, Neg. LLF: 148.7249374947233
Iteration: 11, Func. Count: 112, Neg. LLF: 148.6961444479798
Iteration: 12, Func. Count: 122, Neg. LLF: 148.67937693615315
Iteration: 13, Func. Count: 132, Neg. LLF: 148.67927805871108
Iteration: 14, Func. Count: 143, Neg. LLF: 148.67761093870794
Iteration: 15, Func. Count: 153, Neg. LLF: 148.6776078287058
Iteration: 16, Func. Count: 162, Neg. LLF: 148.67760782871073
Optimization terminated successfully (Exit mode 0)
Current function value: 148.6776078287058
Iterations: 16
Function evaluations: 162
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 172.77978754411953
Iteration: 2, Func. Count: 24, Neg. LLF: 148.76225415878957
Iteration: 3, Func. Count: 35, Neg. LLF: 148.76180324155882
Iteration: 4, Func. Count: 47, Neg. LLF: 148.75952569047172
Iteration: 5, Func. Count: 58, Neg. LLF: 148.7585065426293
Iteration: 6, Func. Count: 69, Neg. LLF: 148.757223983898
Iteration: 7, Func. Count: 80, Neg. LLF: 148.74816067351944
Iteration: 8, Func. Count: 91, Neg. LLF: 148.72884855529412
Iteration: 9, Func. Count: 102, Neg. LLF: 148.71773188876838
Iteration: 10, Func. Count: 113, Neg. LLF: 148.7113943269698
Iteration: 11, Func. Count: 124, Neg. LLF: 148.70901359034775
Iteration: 12, Func. Count: 135, Neg. LLF: 148.70825248078592
Iteration: 13, Func. Count: 146, Neg. LLF: 148.70779417721624
Iteration: 14, Func. Count: 157, Neg. LLF: 148.70501892926953
Iteration: 15, Func. Count: 168, Neg. LLF: 148.69123176011598
Iteration: 16, Func. Count: 179, Neg. LLF: 148.68569724941403
Iteration: 17, Func. Count: 190, Neg. LLF: 150.52308764341277
Iteration: 18, Func. Count: 204, Neg. LLF: 148.84100052073617
Iteration: 19, Func. Count: 217, Neg. LLF: 148.68287197849713
Iteration: 20, Func. Count: 228, Neg. LLF: 149.66110802848846
Iteration: 21, Func. Count: 242, Neg. LLF: 148.67761924945322
Iteration: 22, Func. Count: 253, Neg. LLF: 148.67761780778542
Iteration: 23, Func. Count: 264, Neg. LLF: 148.67761523611918
Iteration: 24, Func. Count: 274, Neg. LLF: 148.67761524152465
Optimization terminated successfully (Exit mode 0)
Current function value: 148.67761523611918
Iterations: 25
Function evaluations: 274
Gradient evaluations: 24
Iteration: 1, Func. Count: 13, Neg. LLF: 168.24752493813938
Iteration: 2, Func. Count: 26, Neg. LLF: 148.7579004211464
Iteration: 3, Func. Count: 38, Neg. LLF: 148.75355100461297
Iteration: 4, Func. Count: 50, Neg. LLF: 148.75145506712593
Iteration: 5, Func. Count: 62, Neg. LLF: 148.75100402260628
Iteration: 6, Func. Count: 74, Neg. LLF: 148.75015836101707
Iteration: 7, Func. Count: 86, Neg. LLF: 148.7428767211359
Iteration: 8, Func. Count: 98, Neg. LLF: 148.7407605429528
Iteration: 9, Func. Count: 110, Neg. LLF: 148.73848462577658
Iteration: 10, Func. Count: 122, Neg. LLF: 148.73772113268268
Iteration: 11, Func. Count: 134, Neg. LLF: 148.7341942769896
Iteration: 12, Func. Count: 146, Neg. LLF: 148.7271450619252
Iteration: 13, Func. Count: 158, Neg. LLF: 148.6897806948077
Iteration: 14, Func. Count: 170, Neg. LLF: 148.68288429736856
Iteration: 15, Func. Count: 182, Neg. LLF: 148.67769434175173
Iteration: 16, Func. Count: 194, Neg. LLF: 148.67763146410175
Iteration: 17, Func. Count: 206, Neg. LLF: 148.67760804796254
Iteration: 18, Func. Count: 217, Neg. LLF: 148.67760804968873
Optimization terminated successfully (Exit mode 0)
Current function value: 148.67760804796254
Iterations: 18
Function evaluations: 217
Gradient evaluations: 18
Iteration: 1, Func. Count: 10, Neg. LLF: 149.7437489793498
Iteration: 2, Func. Count: 19, Neg. LLF: 154.48026025503884
Iteration: 3, Func. Count: 29, Neg. LLF: 143.36840234827565
Iteration: 4, Func. Count: 38, Neg. LLF: 143.18007872255603
Iteration: 5, Func. Count: 47, Neg. LLF: 2294423.7374906735
Iteration: 6, Func. Count: 57, Neg. LLF: 143.0151829709256
Iteration: 7, Func. Count: 67, Neg. LLF: 142.85469872826306
Iteration: 8, Func. Count: 76, Neg. LLF: 142.85315793878925
Iteration: 9, Func. Count: 85, Neg. LLF: 142.85267441134962
Iteration: 10, Func. Count: 94, Neg. LLF: 142.85265671882067
Iteration: 11, Func. Count: 102, Neg. LLF: 142.8526572180091
Optimization terminated successfully (Exit mode 0)
Current function value: 142.85265671882067
Iterations: 11
Function evaluations: 102
Gradient evaluations: 11
Iteration: 1, Func. Count: 11, Neg. LLF: 187.73293083219565
Iteration: 2, Func. Count: 23, Neg. LLF: 148.8557181223606
Iteration: 3, Func. Count: 33, Neg. LLF: 148.85568253410713
Iteration: 4, Func. Count: 44, Neg. LLF: 148.8552491755483
Iteration: 5, Func. Count: 54, Neg. LLF: 148.85432088912734
Iteration: 6, Func. Count: 64, Neg. LLF: 148.85262362908102
Iteration: 7, Func. Count: 74, Neg. LLF: 148.85126596877365
Iteration: 8, Func. Count: 84, Neg. LLF: 148.8411479648114
Iteration: 9, Func. Count: 94, Neg. LLF: 149.05054718487926
Iteration: 10, Func. Count: 105, Neg. LLF: 153.08831597800534
Iteration: 11, Func. Count: 116, Neg. LLF: 151.69790179082122
Iteration: 12, Func. Count: 127, Neg. LLF: 150.6306846946153
Iteration: 13, Func. Count: 138, Neg. LLF: 149.88614800239932
Iteration: 14, Func. Count: 149, Neg. LLF: 149.39402154895762
Iteration: 15, Func. Count: 160, Neg. LLF: 149.1059837849977
Iteration: 16, Func. Count: 171, Neg. LLF: 148.97751661277783
Iteration: 17, Func. Count: 182, Neg. LLF: 148.86055021743528
Iteration: 18, Func. Count: 193, Neg. LLF: 148.76325745746266
Iteration: 19, Func. Count: 204, Neg. LLF: 148.707355107996
Iteration: 20, Func. Count: 214, Neg. LLF: 148.67824497271107
Iteration: 21, Func. Count: 224, Neg. LLF: 148.67224490470656
Iteration: 22, Func. Count: 234, Neg. LLF: 148.67148551119035
Iteration: 23, Func. Count: 244, Neg. LLF: 148.6714739073345
Iteration: 24, Func. Count: 254, Neg. LLF: 148.67145305574533
Iteration: 25, Func. Count: 264, Neg. LLF: 148.67543434851387
Optimization terminated successfully (Exit mode 0)
Current function value: 148.6714530583765
Iterations: 26
Function evaluations: 267
Gradient evaluations: 25
Iteration: 1, Func. Count: 12, Neg. LLF: 179.0453849949781
Iteration: 2, Func. Count: 24, Neg. LLF: 148.8059727997445
Iteration: 3, Func. Count: 35, Neg. LLF: 148.79526200710555
Iteration: 4, Func. Count: 46, Neg. LLF: 148.78780079863665
Iteration: 5, Func. Count: 57, Neg. LLF: 148.78689977479297
Iteration: 6, Func. Count: 68, Neg. LLF: 148.7819687903514
Iteration: 7, Func. Count: 79, Neg. LLF: 148.77324633586764
Iteration: 8, Func. Count: 90, Neg. LLF: 148.75537632576675
Iteration: 9, Func. Count: 101, Neg. LLF: 148.72646078052676
Iteration: 10, Func. Count: 112, Neg. LLF: 148.9158631618098
Iteration: 11, Func. Count: 124, Neg. LLF: 148.68622704735282
Iteration: 12, Func. Count: 135, Neg. LLF: 148.67917741952397
Iteration: 13, Func. Count: 146, Neg. LLF: 148.67789557699788
Iteration: 14, Func. Count: 157, Neg. LLF: 148.67761801613926
Iteration: 15, Func. Count: 168, Neg. LLF: 148.6776080620028
Iteration: 16, Func. Count: 178, Neg. LLF: 148.67760806207843
Optimization terminated successfully (Exit mode 0)
Current function value: 148.6776080620028
Iterations: 16
Function evaluations: 178
Gradient evaluations: 16
Iteration: 1, Func. Count: 13, Neg. LLF: 172.5264068309611
Iteration: 2, Func. Count: 26, Neg. LLF: 148.7610219201659
Iteration: 3, Func. Count: 38, Neg. LLF: 148.7607682919109
Iteration: 4, Func. Count: 51, Neg. LLF: 148.75953769230702
Iteration: 5, Func. Count: 63, Neg. LLF: 148.75782605151795
Iteration: 6, Func. Count: 75, Neg. LLF: 148.75364643956001
Iteration: 7, Func. Count: 87, Neg. LLF: 148.74437991984232
Iteration: 8, Func. Count: 99, Neg. LLF: 148.72913997176028
Iteration: 9, Func. Count: 111, Neg. LLF: 148.7140125892474
Iteration: 10, Func. Count: 123, Neg. LLF: 148.7095532043091
Iteration: 11, Func. Count: 135, Neg. LLF: 148.70845801814795
Iteration: 12, Func. Count: 147, Neg. LLF: 148.7078321819344
Iteration: 13, Func. Count: 159, Neg. LLF: 148.7044416521465
Iteration: 14, Func. Count: 171, Neg. LLF: 148.6906309411893
Iteration: 15, Func. Count: 183, Neg. LLF: 148.68997565687022
Iteration: 16, Func. Count: 195, Neg. LLF: 148.68781172999113
Iteration: 17, Func. Count: 207, Neg. LLF: 191.46878823728005
Iteration: 18, Func. Count: 222, Neg. LLF: 148.6777552676986
Iteration: 19, Func. Count: 234, Neg. LLF: 148.677692409974
Iteration: 20, Func. Count: 246, Neg. LLF: 148.67766923276565
Iteration: 21, Func. Count: 258, Neg. LLF: 148.67766688520098
Iteration: 22, Func. Count: 270, Neg. LLF: 148.67765450536467
Iteration: 23, Func. Count: 282, Neg. LLF: 148.6776166385405
Iteration: 24, Func. Count: 294, Neg. LLF: 148.6776078224148
Iteration: 25, Func. Count: 305, Neg. LLF: 148.6776078278303
Optimization terminated successfully (Exit mode 0)
Current function value: 148.6776078224148
Iterations: 26
Function evaluations: 305
Gradient evaluations: 25
Iteration: 1, Func. Count: 14, Neg. LLF: 168.45525167303032
Iteration: 2, Func. Count: 28, Neg. LLF: 148.75253923985738
Iteration: 3, Func. Count: 41, Neg. LLF: 148.75044712294078
Iteration: 4, Func. Count: 54, Neg. LLF: 148.74817046632583
Iteration: 5, Func. Count: 67, Neg. LLF: 148.74522129536462
Iteration: 6, Func. Count: 80, Neg. LLF: 148.74468946467138
Iteration: 7, Func. Count: 93, Neg. LLF: 148.7433815780274
Iteration: 8, Func. Count: 106, Neg. LLF: 148.74104042275903
Iteration: 9, Func. Count: 119, Neg. LLF: 148.73513229882008
Iteration: 10, Func. Count: 132, Neg. LLF: 148.72632570473
Iteration: 11, Func. Count: 145, Neg. LLF: 148.72012267964828
Iteration: 12, Func. Count: 158, Neg. LLF: 148.71791536112758
Iteration: 13, Func. Count: 171, Neg. LLF: 148.71771990626434
Iteration: 14, Func. Count: 184, Neg. LLF: 148.71770440115338
Iteration: 15, Func. Count: 197, Neg. LLF: 148.71770349327088
Optimization terminated successfully (Exit mode 0)
Current function value: 148.71770349327088
Iterations: 15
Function evaluations: 197
Gradient evaluations: 15
Iteration: 1, Func. Count: 7, Neg. LLF: 148.217200106284
Iteration: 2, Func. Count: 13, Neg. LLF: 155.39551917511784
Iteration: 3, Func. Count: 20, Neg. LLF: 147.28126843588961
Iteration: 4, Func. Count: 26, Neg. LLF: 146.4761508526726
Iteration: 5, Func. Count: 32, Neg. LLF: 146.01277469947857
Iteration: 6, Func. Count: 38, Neg. LLF: 211.81421952174333
Iteration: 7, Func. Count: 47, Neg. LLF: 145.9301210909943
Iteration: 8, Func. Count: 53, Neg. LLF: 145.9024169138145
Iteration: 9, Func. Count: 59, Neg. LLF: 145.93478486813737
Iteration: 10, Func. Count: 66, Neg. LLF: 145.89732131111035
Iteration: 11, Func. Count: 72, Neg. LLF: 145.8973195550589
Iteration: 12, Func. Count: 77, Neg. LLF: 145.89731985599045
Optimization terminated successfully (Exit mode 0)
Current function value: 145.8973195550589
Iterations: 12
Function evaluations: 77
Gradient evaluations: 12
Iteration: 1, Func. Count: 8, Neg. LLF: 187.68284943313304
Iteration: 2, Func. Count: 17, Neg. LLF: 148.85540397859765
Iteration: 3, Func. Count: 24, Neg. LLF: 148.8552982986027
Iteration: 4, Func. Count: 31, Neg. LLF: 148.854993037646
Iteration: 5, Func. Count: 38, Neg. LLF: 148.8539166809485
Iteration: 6, Func. Count: 45, Neg. LLF: 148.8518780917064
Iteration: 7, Func. Count: 52, Neg. LLF: 148.84723555270216
Iteration: 8, Func. Count: 59, Neg. LLF: 148.8379002151134
Iteration: 9, Func. Count: 66, Neg. LLF: 148.8254491008022
Iteration: 10, Func. Count: 73, Neg. LLF: 148.75858847051458
Iteration: 11, Func. Count: 80, Neg. LLF: 150.58001970949888
Iteration: 12, Func. Count: 88, Neg. LLF: 151.20132001981267
Iteration: 13, Func. Count: 96, Neg. LLF: 148.9954313160745
Iteration: 14, Func. Count: 104, Neg. LLF: 148.8639804306398
Iteration: 15, Func. Count: 112, Neg. LLF: 148.6772675962206
Iteration: 16, Func. Count: 119, Neg. LLF: 148.67209950768134
Iteration: 17, Func. Count: 126, Neg. LLF: 148.6715356351566
Iteration: 18, Func. Count: 133, Neg. LLF: 148.67146105867025
Iteration: 19, Func. Count: 140, Neg. LLF: 148.67145839247843
Iteration: 20, Func. Count: 146, Neg. LLF: 148.67145839253433
Optimization terminated successfully (Exit mode 0)
Current function value: 148.67145839247843
Iterations: 20
Function evaluations: 146
Gradient evaluations: 20
Iteration: 1, Func. Count: 9, Neg. LLF: 179.06566896192916
Iteration: 2, Func. Count: 19, Neg. LLF: 148.80670248420878
Iteration: 3, Func. Count: 27, Neg. LLF: 148.78834249168756
Iteration: 4, Func. Count: 35, Neg. LLF: 148.78680795113885
Iteration: 5, Func. Count: 43, Neg. LLF: 148.785918990476
Iteration: 6, Func. Count: 51, Neg. LLF: 148.7799491303575
Iteration: 7, Func. Count: 59, Neg. LLF: 148.74914354283064
Iteration: 8, Func. Count: 67, Neg. LLF: 148.7318843608616
Iteration: 9, Func. Count: 75, Neg. LLF: 148.7088284689539
Iteration: 10, Func. Count: 83, Neg. LLF: 148.68651971092697
Iteration: 11, Func. Count: 91, Neg. LLF: 148.67768725627326
Iteration: 12, Func. Count: 99, Neg. LLF: 148.67761026115156
Iteration: 13, Func. Count: 107, Neg. LLF: 148.6776078273513
Iteration: 14, Func. Count: 114, Neg. LLF: 148.67760782732478
Optimization terminated successfully (Exit mode 0)
Current function value: 148.6776078273513
Iterations: 14
Function evaluations: 114
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 173.23740079419105
Iteration: 2, Func. Count: 20, Neg. LLF: 148.76250637553557
Iteration: 3, Func. Count: 29, Neg. LLF: 148.76048946684662
Iteration: 4, Func. Count: 38, Neg. LLF: 148.7595953527289
Iteration: 5, Func. Count: 47, Neg. LLF: 148.75805885808208
Iteration: 6, Func. Count: 56, Neg. LLF: 148.75740318948448
Iteration: 7, Func. Count: 65, Neg. LLF: 148.75390835436892
Iteration: 8, Func. Count: 74, Neg. LLF: 148.73722258134845
Iteration: 9, Func. Count: 83, Neg. LLF: 148.7239074947417
Iteration: 10, Func. Count: 92, Neg. LLF: 148.7132033787842
Iteration: 11, Func. Count: 101, Neg. LLF: 148.70930869058384
Iteration: 12, Func. Count: 110, Neg. LLF: 148.70838335063527
Iteration: 13, Func. Count: 119, Neg. LLF: 148.70802031201367
Iteration: 14, Func. Count: 128, Neg. LLF: 148.70781731530806
Iteration: 15, Func. Count: 137, Neg. LLF: 148.70596013277296
Iteration: 16, Func. Count: 146, Neg. LLF: 148.69343013806017
Iteration: 17, Func. Count: 155, Neg. LLF: 148.67847255285548
Iteration: 18, Func. Count: 164, Neg. LLF: 149.2754949455931
Iteration: 19, Func. Count: 175, Neg. LLF: 149.2050669761422
Optimization terminated successfully (Exit mode 0)
Current function value: 148.6782043330454
Iterations: 19
Function evaluations: 178
Gradient evaluations: 19
Iteration: 1, Func. Count: 11, Neg. LLF: 168.7756287345925
Iteration: 2, Func. Count: 22, Neg. LLF: 148.75313709512872
Iteration: 3, Func. Count: 32, Neg. LLF: 148.750913889449
Iteration: 4, Func. Count: 42, Neg. LLF: 148.74968096774148
Iteration: 5, Func. Count: 52, Neg. LLF: 148.74786360196532
Iteration: 6, Func. Count: 62, Neg. LLF: 148.74398888477623
Iteration: 7, Func. Count: 72, Neg. LLF: 148.74340078901065
Iteration: 8, Func. Count: 82, Neg. LLF: 148.7418838268704
Iteration: 9, Func. Count: 92, Neg. LLF: 148.7383792121831
Iteration: 10, Func. Count: 102, Neg. LLF: 148.7314902546063
Iteration: 11, Func. Count: 112, Neg. LLF: 148.72335169602962
Iteration: 12, Func. Count: 122, Neg. LLF: 148.71897826588224
Iteration: 13, Func. Count: 132, Neg. LLF: 148.71772177349806
Iteration: 14, Func. Count: 142, Neg. LLF: 148.71770524712494
Iteration: 15, Func. Count: 152, Neg. LLF: 148.71770379918084
Iteration: 16, Func. Count: 161, Neg. LLF: 148.7177037990616
Optimization terminated successfully (Exit mode 0)
Current function value: 148.71770379918084
Iterations: 16
Function evaluations: 161
Gradient evaluations: 16
Iteration: 1, Func. Count: 8, Neg. LLF: 153.4940970553443
Iteration: 2, Func. Count: 16, Neg. LLF: 160.29034893495506
Iteration: 3, Func. Count: 24, Neg. LLF: 143.54153903995382
Iteration: 4, Func. Count: 31, Neg. LLF: 142.95988253699687
Iteration: 5, Func. Count: 38, Neg. LLF: 142.92885813481675
Iteration: 6, Func. Count: 45, Neg. LLF: 142.8930387459424
Iteration: 7, Func. Count: 52, Neg. LLF: 143.06876257426603
Iteration: 8, Func. Count: 61, Neg. LLF: 142.88357320173887
Iteration: 9, Func. Count: 68, Neg. LLF: 142.88273394079167
Iteration: 10, Func. Count: 75, Neg. LLF: 142.88272566312506
Iteration: 11, Func. Count: 81, Neg. LLF: 142.88272564628033
Optimization terminated successfully (Exit mode 0)
Current function value: 142.88272566312506
Iterations: 11
Function evaluations: 81
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 187.7216625868883
Iteration: 2, Func. Count: 19, Neg. LLF: 148.85706521580525
Iteration: 3, Func. Count: 27, Neg. LLF: 148.85725826106196
Iteration: 4, Func. Count: 36, Neg. LLF: 148.85543002353387
Iteration: 5, Func. Count: 44, Neg. LLF: 148.85474401916355
Iteration: 6, Func. Count: 52, Neg. LLF: 148.85128951466564
Iteration: 7, Func. Count: 60, Neg. LLF: 148.8316699847777
Iteration: 8, Func. Count: 68, Neg. LLF: 152.13464760972266
Iteration: 9, Func. Count: 77, Neg. LLF: 150.15149672082453
Iteration: 10, Func. Count: 86, Neg. LLF: 149.131678652736
Iteration: 11, Func. Count: 95, Neg. LLF: 155.09228853196217
Iteration: 12, Func. Count: 106, Neg. LLF: 177.34566004018657
Iteration: 13, Func. Count: 116, Neg. LLF: 148.77059030237052
Iteration: 14, Func. Count: 125, Neg. LLF: 148.76379852433104
Iteration: 15, Func. Count: 133, Neg. LLF: 148.75744428995628
Iteration: 16, Func. Count: 141, Neg. LLF: 148.7226937228268
Iteration: 17, Func. Count: 149, Neg. LLF: 149.24779650410426
Iteration: 18, Func. Count: 158, Neg. LLF: 148.9381454181487
Iteration: 19, Func. Count: 167, Neg. LLF: 148.68663643671923
Iteration: 20, Func. Count: 176, Neg. LLF: 148.67267179526561
Iteration: 21, Func. Count: 185, Neg. LLF: 148.67148420191003
Iteration: 22, Func. Count: 193, Neg. LLF: 148.67145831511405
Iteration: 23, Func. Count: 200, Neg. LLF: 148.67145831505456
Optimization terminated successfully (Exit mode 0)
Current function value: 148.67145831511405
Iterations: 24
Function evaluations: 200
Gradient evaluations: 23
Iteration: 1, Func. Count: 10, Neg. LLF: 178.9482869692301
Iteration: 2, Func. Count: 20, Neg. LLF: 148.80552124848862
Iteration: 3, Func. Count: 29, Neg. LLF: 148.79588115020675
Iteration: 4, Func. Count: 38, Neg. LLF: 148.78866410300938
Iteration: 5, Func. Count: 47, Neg. LLF: 148.78705210650014
Iteration: 6, Func. Count: 56, Neg. LLF: 148.78543392584103
Iteration: 7, Func. Count: 65, Neg. LLF: 148.78279105796486
Iteration: 8, Func. Count: 74, Neg. LLF: 148.7741115602472
Iteration: 9, Func. Count: 83, Neg. LLF: 148.75663590526648
Iteration: 10, Func. Count: 92, Neg. LLF: 148.73414798829145
Iteration: 11, Func. Count: 101, Neg. LLF: 148.70784998662936
Iteration: 12, Func. Count: 110, Neg. LLF: 148.67920028993947
Iteration: 13, Func. Count: 119, Neg. LLF: 148.67764082877667
Iteration: 14, Func. Count: 128, Neg. LLF: 148.67761609208554
Iteration: 15, Func. Count: 137, Neg. LLF: 148.67760839356814
Iteration: 16, Func. Count: 146, Neg. LLF: 148.67760782261203
Optimization terminated successfully (Exit mode 0)
Current function value: 148.67760782261203
Iterations: 16
Function evaluations: 146
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 172.9324460255507
Iteration: 2, Func. Count: 22, Neg. LLF: 148.76221204279508
Iteration: 3, Func. Count: 32, Neg. LLF: 148.76253913502276
Iteration: 4, Func. Count: 43, Neg. LLF: 148.75958280651204
Iteration: 5, Func. Count: 53, Neg. LLF: 148.75818430894006
Iteration: 6, Func. Count: 63, Neg. LLF: 148.7564234710907
Iteration: 7, Func. Count: 73, Neg. LLF: 148.74426310863598
Iteration: 8, Func. Count: 83, Neg. LLF: 148.7268000785484
Iteration: 9, Func. Count: 93, Neg. LLF: 148.71575727022008
Iteration: 10, Func. Count: 103, Neg. LLF: 148.7098410720548
Iteration: 11, Func. Count: 113, Neg. LLF: 148.7086477819784
Iteration: 12, Func. Count: 123, Neg. LLF: 148.70795689731222
Iteration: 13, Func. Count: 133, Neg. LLF: 148.70640238169494
Iteration: 14, Func. Count: 143, Neg. LLF: 148.69099237985884
Iteration: 15, Func. Count: 153, Neg. LLF: 148.69086399809484
Iteration: 16, Func. Count: 164, Neg. LLF: 148.68998952023722
Iteration: 17, Func. Count: 174, Neg. LLF: 148.67804486521118
Iteration: 18, Func. Count: 184, Neg. LLF: 157.50942094042935
Iteration: 19, Func. Count: 197, Neg. LLF: 148.67833300958625
Iteration: 20, Func. Count: 207, Neg. LLF: 148.67763505792794
Optimization terminated successfully (Exit mode 0)
Current function value: 148.67763505260783
Iterations: 21
Function evaluations: 207
Gradient evaluations: 20
Iteration: 1, Func. Count: 12, Neg. LLF: 168.35659054865823
Iteration: 2, Func. Count: 24, Neg. LLF: 148.7587733243747
Iteration: 3, Func. Count: 35, Neg. LLF: 148.75398144783506
Iteration: 4, Func. Count: 46, Neg. LLF: 148.7510012685622
Iteration: 5, Func. Count: 57, Neg. LLF: 148.75007886493822
Iteration: 6, Func. Count: 68, Neg. LLF: 148.74352748296855
Iteration: 7, Func. Count: 79, Neg. LLF: 148.74304845257194
Iteration: 8, Func. Count: 90, Neg. LLF: 148.74258999126494
Iteration: 9, Func. Count: 101, Neg. LLF: 148.74194350873265
Iteration: 10, Func. Count: 112, Neg. LLF: 148.73969081088472
Iteration: 11, Func. Count: 123, Neg. LLF: 148.7351326553737
Iteration: 12, Func. Count: 134, Neg. LLF: 148.72687048736805
Iteration: 13, Func. Count: 145, Neg. LLF: 148.7168219403851
Iteration: 14, Func. Count: 156, Neg. LLF: 148.7094299126512
Iteration: 15, Func. Count: 167, Neg. LLF: 148.704914566295
Iteration: 16, Func. Count: 178, Neg. LLF: 148.69357641743997
Iteration: 17, Func. Count: 189, Neg. LLF: 148.68072710560892
Iteration: 18, Func. Count: 200, Neg. LLF: 148.67934712556232
Iteration: 19, Func. Count: 211, Neg. LLF: 148.67796608852748
Iteration: 20, Func. Count: 222, Neg. LLF: 148.6776172037505
Iteration: 21, Func. Count: 233, Neg. LLF: 148.67761418174615
Iteration: 22, Func. Count: 245, Neg. LLF: 148.67760788754566
Optimization terminated successfully (Exit mode 0)
Current function value: 148.67760788754566
Iterations: 22
Function evaluations: 245
Gradient evaluations: 22
Iteration: 1, Func. Count: 9, Neg. LLF: 150.9599518211375
Iteration: 2, Func. Count: 17, Neg. LLF: 154.15801354879747
Iteration: 3, Func. Count: 26, Neg. LLF: 143.39470090935424
Iteration: 4, Func. Count: 34, Neg. LLF: 143.2029773809329
Iteration: 5, Func. Count: 42, Neg. LLF: 2457402.2432179935
Iteration: 6, Func. Count: 51, Neg. LLF: 142.95461736459706
Iteration: 7, Func. Count: 59, Neg. LLF: 142.8581741278204
Iteration: 8, Func. Count: 67, Neg. LLF: 142.85299974647666
Iteration: 9, Func. Count: 75, Neg. LLF: 142.85296117040554
Iteration: 10, Func. Count: 84, Neg. LLF: 142.85266246480617
Iteration: 11, Func. Count: 92, Neg. LLF: 142.8526563710132
Iteration: 12, Func. Count: 99, Neg. LLF: 142.8526563540745
Optimization terminated successfully (Exit mode 0)
Current function value: 142.8526563710132
Iterations: 12
Function evaluations: 99
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 187.73051269316267
Iteration: 2, Func. Count: 21, Neg. LLF: 148.85608730556874
Iteration: 3, Func. Count: 30, Neg. LLF: 148.85630030355702
Iteration: 4, Func. Count: 40, Neg. LLF: 148.85533892745877
Iteration: 5, Func. Count: 49, Neg. LLF: 148.85456120306304
Iteration: 6, Func. Count: 58, Neg. LLF: 148.8521634086313
Iteration: 7, Func. Count: 67, Neg. LLF: 148.85052068936966
Iteration: 8, Func. Count: 76, Neg. LLF: 148.83693657265846
Iteration: 9, Func. Count: 85, Neg. LLF: 151.05571870070438
Iteration: 10, Func. Count: 95, Neg. LLF: 149.30333994961885
Iteration: 11, Func. Count: 105, Neg. LLF: 149.03267000273715
Iteration: 12, Func. Count: 115, Neg. LLF: 149.13446668275634
Iteration: 13, Func. Count: 125, Neg. LLF: 153.0624958724949
Iteration: 14, Func. Count: 135, Neg. LLF: 148.98656560939366
Iteration: 15, Func. Count: 145, Neg. LLF: 150.7820932727149
Iteration: 16, Func. Count: 155, Neg. LLF: 149.79584140165807
Iteration: 17, Func. Count: 165, Neg. LLF: 148.73157247142578
Iteration: 18, Func. Count: 175, Neg. LLF: 148.67377625059964
Iteration: 19, Func. Count: 184, Neg. LLF: 148.67183402466878
Iteration: 20, Func. Count: 193, Neg. LLF: 148.67161206881423
Iteration: 21, Func. Count: 202, Neg. LLF: 148.6714591332819
Iteration: 22, Func. Count: 210, Neg. LLF: 148.67145913327565
Optimization terminated successfully (Exit mode 0)
Current function value: 148.6714591332819
Iterations: 22
Function evaluations: 210
Gradient evaluations: 22
Iteration: 1, Func. Count: 11, Neg. LLF: 178.99216818152306
Iteration: 2, Func. Count: 22, Neg. LLF: 148.80550653142504
Iteration: 3, Func. Count: 32, Neg. LLF: 148.79506970925596
Iteration: 4, Func. Count: 42, Neg. LLF: 148.78842021096614
Iteration: 5, Func. Count: 52, Neg. LLF: 148.7872446035926
Iteration: 6, Func. Count: 62, Neg. LLF: 148.78313698867245
Iteration: 7, Func. Count: 72, Neg. LLF: 148.7795435184228
Iteration: 8, Func. Count: 82, Neg. LLF: 148.76910003128103
Iteration: 9, Func. Count: 92, Neg. LLF: 148.75073497304945
Iteration: 10, Func. Count: 102, Neg. LLF: 148.72507272403885
Iteration: 11, Func. Count: 112, Neg. LLF: 148.6956424211843
Iteration: 12, Func. Count: 122, Neg. LLF: 148.67897415012519
Iteration: 13, Func. Count: 132, Neg. LLF: 148.67923800516843
Iteration: 14, Func. Count: 143, Neg. LLF: 148.67760925357356
Iteration: 15, Func. Count: 153, Neg. LLF: 148.6776078223677
Iteration: 16, Func. Count: 162, Neg. LLF: 148.67760782237553
Optimization terminated successfully (Exit mode 0)
Current function value: 148.6776078223677
Iterations: 16
Function evaluations: 162
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 172.76220968363796
Iteration: 2, Func. Count: 24, Neg. LLF: 148.7618258448733
Iteration: 3, Func. Count: 35, Neg. LLF: 148.76141263998326
Iteration: 4, Func. Count: 47, Neg. LLF: 148.75950721520294
Iteration: 5, Func. Count: 58, Neg. LLF: 148.75842962698312
Iteration: 6, Func. Count: 69, Neg. LLF: 148.75687139626115
Iteration: 7, Func. Count: 80, Neg. LLF: 148.7472230752811
Iteration: 8, Func. Count: 91, Neg. LLF: 148.7320658809907
Iteration: 9, Func. Count: 102, Neg. LLF: 148.71839713702366
Iteration: 10, Func. Count: 113, Neg. LLF: 148.71117832446078
Iteration: 11, Func. Count: 124, Neg. LLF: 148.70908967455156
Iteration: 12, Func. Count: 135, Neg. LLF: 148.7082182993443
Iteration: 13, Func. Count: 146, Neg. LLF: 148.70775759403847
Iteration: 14, Func. Count: 157, Neg. LLF: 148.7034067399761
Iteration: 15, Func. Count: 168, Neg. LLF: 148.68961095114787
Iteration: 16, Func. Count: 179, Neg. LLF: 148.6870156143553
Iteration: 17, Func. Count: 190, Neg. LLF: 148.69868527278732
Iteration: 18, Func. Count: 202, Neg. LLF: 189.35061341047637
Iteration: 19, Func. Count: 216, Neg. LLF: 148.67767521005368
Iteration: 20, Func. Count: 227, Neg. LLF: 148.6776703500679
Iteration: 21, Func. Count: 238, Neg. LLF: 148.67766432814722
Iteration: 22, Func. Count: 249, Neg. LLF: 148.67766161434145
Iteration: 23, Func. Count: 260, Neg. LLF: 148.67764465570986
Iteration: 24, Func. Count: 271, Neg. LLF: 148.67761511684324
Iteration: 25, Func. Count: 282, Neg. LLF: 148.67760908826966
Iteration: 26, Func. Count: 293, Neg. LLF: 148.67760784277056
Iteration: 27, Func. Count: 303, Neg. LLF: 148.67760784815044
Optimization terminated successfully (Exit mode 0)
Current function value: 148.67760784277056
Iterations: 28
Function evaluations: 303
Gradient evaluations: 27
Iteration: 1, Func. Count: 13, Neg. LLF: 168.2922673406337
Iteration: 2, Func. Count: 26, Neg. LLF: 148.7569154395399
Iteration: 3, Func. Count: 38, Neg. LLF: 148.75330726440248
Iteration: 4, Func. Count: 50, Neg. LLF: 148.75133153554705
Iteration: 5, Func. Count: 62, Neg. LLF: 148.7508834020619
Iteration: 6, Func. Count: 74, Neg. LLF: 148.74934403075247
Iteration: 7, Func. Count: 86, Neg. LLF: 148.74464751375595
Iteration: 8, Func. Count: 98, Neg. LLF: 148.74178937300908
Iteration: 9, Func. Count: 110, Neg. LLF: 148.73681795355458
Iteration: 10, Func. Count: 122, Neg. LLF: 148.7323630112541
Iteration: 11, Func. Count: 134, Neg. LLF: 148.73077592338015
Iteration: 12, Func. Count: 146, Neg. LLF: 148.72732624146187
Iteration: 13, Func. Count: 158, Neg. LLF: 148.72269086410847
Iteration: 14, Func. Count: 170, Neg. LLF: 148.71880776410603
Iteration: 15, Func. Count: 182, Neg. LLF: 148.7177910421343
Iteration: 16, Func. Count: 194, Neg. LLF: 148.71770449884175
Iteration: 17, Func. Count: 206, Neg. LLF: 148.71770376406235
Optimization terminated successfully (Exit mode 0)
Current function value: 148.71770376406235
Iterations: 17
Function evaluations: 206
Gradient evaluations: 17
Iteration: 1, Func. Count: 10, Neg. LLF: 149.07363866024144
Iteration: 2, Func. Count: 19, Neg. LLF: 153.86183251394874
Iteration: 3, Func. Count: 29, Neg. LLF: 143.38039333809095
Iteration: 4, Func. Count: 38, Neg. LLF: 143.16094273335125
Iteration: 5, Func. Count: 47, Neg. LLF: 3018534.9292412777
Iteration: 6, Func. Count: 57, Neg. LLF: 143.1077809131264
Iteration: 7, Func. Count: 67, Neg. LLF: 142.85956112643063
Iteration: 8, Func. Count: 76, Neg. LLF: 142.85467900886556
Iteration: 9, Func. Count: 85, Neg. LLF: 142.85291656593046
Iteration: 10, Func. Count: 94, Neg. LLF: 142.8526753889047
Iteration: 11, Func. Count: 103, Neg. LLF: 142.8526565043635
Iteration: 12, Func. Count: 111, Neg. LLF: 142.85265631483293
Optimization terminated successfully (Exit mode 0)
Current function value: 142.8526565043635
Iterations: 12
Function evaluations: 111
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 187.734893367293
Iteration: 2, Func. Count: 23, Neg. LLF: 148.85559811619657
Iteration: 3, Func. Count: 33, Neg. LLF: 148.8553891125835
Iteration: 4, Func. Count: 43, Neg. LLF: 148.85458196430065
Iteration: 5, Func. Count: 53, Neg. LLF: 148.85401142223904
Iteration: 6, Func. Count: 63, Neg. LLF: 148.85296583687045
Iteration: 7, Func. Count: 73, Neg. LLF: 148.84951534892795
Iteration: 8, Func. Count: 83, Neg. LLF: 148.8406194681343
Iteration: 9, Func. Count: 93, Neg. LLF: 148.83694861212118
Iteration: 10, Func. Count: 103, Neg. LLF: 148.77107295320982
Iteration: 11, Func. Count: 113, Neg. LLF: 152.04356592026096
Iteration: 12, Func. Count: 124, Neg. LLF: 151.93771342390286
Iteration: 13, Func. Count: 135, Neg. LLF: 151.39730707996102
Iteration: 14, Func. Count: 146, Neg. LLF: 148.82680306108423
Iteration: 15, Func. Count: 157, Neg. LLF: 148.67621594909195
Iteration: 16, Func. Count: 167, Neg. LLF: 148.6732527099791
Iteration: 17, Func. Count: 177, Neg. LLF: 148.67326773058986
Iteration: 18, Func. Count: 188, Neg. LLF: 148.67157407502108
Iteration: 19, Func. Count: 198, Neg. LLF: 148.67147612069252
Iteration: 20, Func. Count: 208, Neg. LLF: 148.67145730685726
Iteration: 21, Func. Count: 218, Neg. LLF: 148.67148216636062
Optimization terminated successfully (Exit mode 0)
Current function value: 148.6714573078285
Iterations: 22
Function evaluations: 221
Gradient evaluations: 21
Iteration: 1, Func. Count: 12, Neg. LLF: 178.7749392841372
Iteration: 2, Func. Count: 24, Neg. LLF: 148.8017541077582
Iteration: 3, Func. Count: 35, Neg. LLF: 148.78911903573336
Iteration: 4, Func. Count: 46, Neg. LLF: 148.78818887522527
Iteration: 5, Func. Count: 57, Neg. LLF: 148.7868050982164
Iteration: 6, Func. Count: 68, Neg. LLF: 148.78351308885703
Iteration: 7, Func. Count: 79, Neg. LLF: 148.77113350515683
Iteration: 8, Func. Count: 90, Neg. LLF: 148.75360609353714
Iteration: 9, Func. Count: 101, Neg. LLF: 148.72058736660915
Iteration: 10, Func. Count: 112, Neg. LLF: 148.68997287723298
Iteration: 11, Func. Count: 123, Neg. LLF: 148.68408542711347
Iteration: 12, Func. Count: 134, Neg. LLF: 148.67794094378152
Iteration: 13, Func. Count: 145, Neg. LLF: 148.67762112127605
Iteration: 14, Func. Count: 156, Neg. LLF: 148.67760783673998
Iteration: 15, Func. Count: 166, Neg. LLF: 148.67760783678773
Optimization terminated successfully (Exit mode 0)
Current function value: 148.67760783673998
Iterations: 15
Function evaluations: 166
Gradient evaluations: 15
Iteration: 1, Func. Count: 13, Neg. LLF: 172.83074267907446
Iteration: 2, Func. Count: 26, Neg. LLF: 148.7616277051223
Iteration: 3, Func. Count: 38, Neg. LLF: 148.76024231323322
Iteration: 4, Func. Count: 50, Neg. LLF: 148.75934035123439
Iteration: 5, Func. Count: 62, Neg. LLF: 148.75841983248614
Iteration: 6, Func. Count: 74, Neg. LLF: 148.75685665095725
Iteration: 7, Func. Count: 86, Neg. LLF: 148.74936652631456
Iteration: 8, Func. Count: 98, Neg. LLF: 148.7324580088548
Iteration: 9, Func. Count: 110, Neg. LLF: 148.72114025853574
Iteration: 10, Func. Count: 122, Neg. LLF: 148.68970216576892
Iteration: 11, Func. Count: 134, Neg. LLF: 148.67771327814614
Iteration: 12, Func. Count: 146, Neg. LLF: 148.67763646101267
Iteration: 13, Func. Count: 158, Neg. LLF: 148.67760796280655
Iteration: 14, Func. Count: 169, Neg. LLF: 148.67760796825652
Optimization terminated successfully (Exit mode 0)
Current function value: 148.67760796280655
Iterations: 14
Function evaluations: 169
Gradient evaluations: 14
Iteration: 1, Func. Count: 14, Neg. LLF: 167.88154178023515
Iteration: 2, Func. Count: 28, Neg. LLF: 148.75769934608923
Iteration: 3, Func. Count: 41, Neg. LLF: 148.75197192501437
Iteration: 4, Func. Count: 54, Neg. LLF: 148.75079391155964
Iteration: 5, Func. Count: 67, Neg. LLF: 148.74858721831774
Iteration: 6, Func. Count: 80, Neg. LLF: 148.74376675723585
Iteration: 7, Func. Count: 93, Neg. LLF: 148.74341221568568
Iteration: 8, Func. Count: 106, Neg. LLF: 148.74262103991978
Iteration: 9, Func. Count: 119, Neg. LLF: 148.7419986584071
Iteration: 10, Func. Count: 132, Neg. LLF: 148.7381564464677
Iteration: 11, Func. Count: 145, Neg. LLF: 148.7319621085576
Iteration: 12, Func. Count: 158, Neg. LLF: 148.7227630824966
Iteration: 13, Func. Count: 171, Neg. LLF: 148.7138715955268
Iteration: 14, Func. Count: 184, Neg. LLF: 148.7062457244109
Iteration: 15, Func. Count: 197, Neg. LLF: 148.70082129794477
Iteration: 16, Func. Count: 210, Neg. LLF: 148.6851719829938
Iteration: 17, Func. Count: 223, Neg. LLF: 148.68102754786608
Iteration: 18, Func. Count: 236, Neg. LLF: 148.6789521548556
Iteration: 19, Func. Count: 249, Neg. LLF: 148.6779532114773
Iteration: 20, Func. Count: 262, Neg. LLF: 148.67766102122403
Iteration: 21, Func. Count: 275, Neg. LLF: 148.67761539862977
Iteration: 22, Func. Count: 288, Neg. LLF: 148.67760903941746
Iteration: 23, Func. Count: 301, Neg. LLF: 148.6776078659178
Iteration: 24, Func. Count: 313, Neg. LLF: 148.67760786764504
Optimization terminated successfully (Exit mode 0)
Current function value: 148.6776078659178
Iterations: 24
Function evaluations: 313
Gradient evaluations: 24
Iteration: 1, Func. Count: 11, Neg. LLF: 143.92584368333547
Iteration: 2, Func. Count: 21, Neg. LLF: 145.04461838919593
Iteration: 3, Func. Count: 32, Neg. LLF: 143.51884138871043
Iteration: 4, Func. Count: 42, Neg. LLF: 164.6969118054792
Iteration: 5, Func. Count: 53, Neg. LLF: 5607054.850923988
Iteration: 6, Func. Count: 64, Neg. LLF: 142.96811122447642
Iteration: 7, Func. Count: 74, Neg. LLF: 142.87849497364562
Iteration: 8, Func. Count: 84, Neg. LLF: 142.8563972261855
Iteration: 9, Func. Count: 94, Neg. LLF: 142.85353934372287
Iteration: 10, Func. Count: 104, Neg. LLF: 142.8527523979509
Iteration: 11, Func. Count: 114, Neg. LLF: 142.85268641467528
Iteration: 12, Func. Count: 124, Neg. LLF: 142.85265639759334
Iteration: 13, Func. Count: 133, Neg. LLF: 142.8526568968365
Optimization terminated successfully (Exit mode 0)
Current function value: 142.85265639759334
Iterations: 13
Function evaluations: 133
Gradient evaluations: 13
Iteration: 1, Func. Count: 12, Neg. LLF: 187.73567705277483
Iteration: 2, Func. Count: 24, Neg. LLF: 148.85570400216446
Iteration: 3, Func. Count: 35, Neg. LLF: 148.85566509745246
Iteration: 4, Func. Count: 47, Neg. LLF: 148.85528262487964
Iteration: 5, Func. Count: 58, Neg. LLF: 148.8541056760459
Iteration: 6, Func. Count: 69, Neg. LLF: 148.84761564297816
Iteration: 7, Func. Count: 80, Neg. LLF: 148.79425016267587
Iteration: 8, Func. Count: 91, Neg. LLF: 150.23609773680232
Iteration: 9, Func. Count: 103, Neg. LLF: 149.7470808918651
Iteration: 10, Func. Count: 115, Neg. LLF: 149.11378517996184
Iteration: 11, Func. Count: 127, Neg. LLF: 149.04196322985237
Iteration: 12, Func. Count: 139, Neg. LLF: 148.8571810005368
Iteration: 13, Func. Count: 151, Neg. LLF: 150.95039008782413
Iteration: 14, Func. Count: 165, Neg. LLF: 148.67684802334676
Iteration: 15, Func. Count: 177, Neg. LLF: 148.67227170306325
Iteration: 16, Func. Count: 188, Neg. LLF: 148.6720100768386
Iteration: 17, Func. Count: 199, Neg. LLF: 148.671476337959
Iteration: 18, Func. Count: 210, Neg. LLF: 148.67145945370962
Iteration: 19, Func. Count: 221, Neg. LLF: 148.6714582838246
Iteration: 20, Func. Count: 231, Neg. LLF: 148.67145828383468
Optimization terminated successfully (Exit mode 0)
Current function value: 148.6714582838246
Iterations: 21
Function evaluations: 231
Gradient evaluations: 20
Iteration: 1, Func. Count: 13, Neg. LLF: 178.88437199845552
Iteration: 2, Func. Count: 26, Neg. LLF: 148.8036090347163
Iteration: 3, Func. Count: 38, Neg. LLF: 148.79195428268056
Iteration: 4, Func. Count: 50, Neg. LLF: 148.7879633475177
Iteration: 5, Func. Count: 62, Neg. LLF: 148.78671802082948
Iteration: 6, Func. Count: 74, Neg. LLF: 148.78271696751148
Iteration: 7, Func. Count: 86, Neg. LLF: 148.7754703753015
Iteration: 8, Func. Count: 98, Neg. LLF: 148.7589602941676
Iteration: 9, Func. Count: 110, Neg. LLF: 148.7303418099916
Iteration: 10, Func. Count: 122, Neg. LLF: 149.06244906261296
Iteration: 11, Func. Count: 135, Neg. LLF: 148.69561708648288
Iteration: 12, Func. Count: 148, Neg. LLF: 148.6777642478668
Iteration: 13, Func. Count: 160, Neg. LLF: 148.67761026012775
Iteration: 14, Func. Count: 172, Neg. LLF: 148.67760812603393
Iteration: 15, Func. Count: 183, Neg. LLF: 148.6776081260322
Optimization terminated successfully (Exit mode 0)
Current function value: 148.67760812603393
Iterations: 15
Function evaluations: 183
Gradient evaluations: 15
Iteration: 1, Func. Count: 14, Neg. LLF: 172.58730422538986
Iteration: 2, Func. Count: 28, Neg. LLF: 148.76063605775488
Iteration: 3, Func. Count: 41, Neg. LLF: 148.7598621568749
Iteration: 4, Func. Count: 54, Neg. LLF: 148.75889318662058
Iteration: 5, Func. Count: 67, Neg. LLF: 148.75741359658528
Iteration: 6, Func. Count: 80, Neg. LLF: 148.7523875925248
Iteration: 7, Func. Count: 93, Neg. LLF: 148.73342721327026
Iteration: 8, Func. Count: 106, Neg. LLF: 148.71828593666288
Iteration: 9, Func. Count: 119, Neg. LLF: 148.71024691972104
Iteration: 10, Func. Count: 132, Neg. LLF: 148.70875202730446
Iteration: 11, Func. Count: 145, Neg. LLF: 148.7080542264538
Iteration: 12, Func. Count: 158, Neg. LLF: 148.7070148272811
Iteration: 13, Func. Count: 171, Neg. LLF: 148.6909095577108
Iteration: 14, Func. Count: 184, Neg. LLF: 148.69151832178645
Iteration: 15, Func. Count: 198, Neg. LLF: 148.69034461611517
Iteration: 16, Func. Count: 211, Neg. LLF: 148.68299745299788
Iteration: 17, Func. Count: 224, Neg. LLF: 148.99487388713294
Iteration: 18, Func. Count: 239, Neg. LLF: 148.67767056701314
Iteration: 19, Func. Count: 252, Neg. LLF: 148.67766527006026
Iteration: 20, Func. Count: 265, Neg. LLF: 148.6776517361957
Iteration: 21, Func. Count: 278, Neg. LLF: 148.6776500750679
Iteration: 22, Func. Count: 291, Neg. LLF: 148.6776408867775
Iteration: 23, Func. Count: 304, Neg. LLF: 148.6776132528623
Iteration: 24, Func. Count: 317, Neg. LLF: 148.67760781603153
Iteration: 25, Func. Count: 329, Neg. LLF: 148.6776078214342
Optimization terminated successfully (Exit mode 0)
Current function value: 148.67760781603153
Iterations: 26
Function evaluations: 329
Gradient evaluations: 25
Iteration: 1, Func. Count: 15, Neg. LLF: 168.09323992609714
Iteration: 2, Func. Count: 30, Neg. LLF: 148.7534387455424
Iteration: 3, Func. Count: 44, Neg. LLF: 148.75059711659418
Iteration: 4, Func. Count: 58, Neg. LLF: 148.74940540470647
Iteration: 5, Func. Count: 72, Neg. LLF: 148.74654470172925
Iteration: 6, Func. Count: 86, Neg. LLF: 148.74434399608185
Iteration: 7, Func. Count: 100, Neg. LLF: 148.74370052749936
Iteration: 8, Func. Count: 114, Neg. LLF: 148.74261473717132
Iteration: 9, Func. Count: 128, Neg. LLF: 148.73738094751505
Iteration: 10, Func. Count: 142, Neg. LLF: 148.73047092115982
Iteration: 11, Func. Count: 156, Neg. LLF: 148.7221756726765
Iteration: 12, Func. Count: 170, Neg. LLF: 148.71867373933873
Iteration: 13, Func. Count: 184, Neg. LLF: 148.7177074070874
Iteration: 14, Func. Count: 198, Neg. LLF: 148.71770592044436
Iteration: 15, Func. Count: 212, Neg. LLF: 148.71770348718044
Iteration: 16, Func. Count: 225, Neg. LLF: 148.71770348717908
Optimization terminated successfully (Exit mode 0)
Current function value: 148.71770348718044
Iterations: 16
Function evaluations: 225
Gradient evaluations: 16
Iteration: 1, Func. Count: 8, Neg. LLF: 148.4458913623101
Iteration: 2, Func. Count: 15, Neg. LLF: 155.76606150919307
Iteration: 3, Func. Count: 23, Neg. LLF: 147.32958395384912
Iteration: 4, Func. Count: 30, Neg. LLF: 146.5949354524215
Iteration: 5, Func. Count: 37, Neg. LLF: 146.10404640945052
Iteration: 6, Func. Count: 44, Neg. LLF: 182.78228018202492
Iteration: 7, Func. Count: 53, Neg. LLF: 161.22998697998048
Iteration: 8, Func. Count: 62, Neg. LLF: 145.92507441395915
Iteration: 9, Func. Count: 69, Neg. LLF: 145.89893405423132
Iteration: 10, Func. Count: 76, Neg. LLF: 145.89736742152454
Iteration: 11, Func. Count: 83, Neg. LLF: 145.8973484447746
Iteration: 12, Func. Count: 90, Neg. LLF: 145.89731963573405
Iteration: 13, Func. Count: 96, Neg. LLF: 145.89732032416364
Optimization terminated successfully (Exit mode 0)
Current function value: 145.89731963573405
Iterations: 13
Function evaluations: 96
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 187.67986057698408
Iteration: 2, Func. Count: 19, Neg. LLF: 148.855454520033
Iteration: 3, Func. Count: 27, Neg. LLF: 148.8554302391565
Iteration: 4, Func. Count: 36, Neg. LLF: 148.8550179524709
Iteration: 5, Func. Count: 44, Neg. LLF: 148.85398234820053
Iteration: 6, Func. Count: 52, Neg. LLF: 148.8486013836116
Iteration: 7, Func. Count: 60, Neg. LLF: 148.8135510518366
Iteration: 8, Func. Count: 68, Neg. LLF: 149.7640922074949
Iteration: 9, Func. Count: 77, Neg. LLF: 149.10953272487833
Iteration: 10, Func. Count: 86, Neg. LLF: 148.84567258984313
Iteration: 11, Func. Count: 95, Neg. LLF: 171.13781438475291
Iteration: 12, Func. Count: 105, Neg. LLF: 148.69117047637795
Iteration: 13, Func. Count: 113, Neg. LLF: 148.6863392712215
Iteration: 14, Func. Count: 121, Neg. LLF: 148.6721108110014
Iteration: 15, Func. Count: 129, Neg. LLF: 148.67175419846305
Iteration: 16, Func. Count: 137, Neg. LLF: 148.67146197841032
Iteration: 17, Func. Count: 145, Neg. LLF: 148.67145892675595
Iteration: 18, Func. Count: 153, Neg. LLF: 148.6714582838964
Optimization terminated successfully (Exit mode 0)
Current function value: 148.6714582838964
Iterations: 19
Function evaluations: 153
Gradient evaluations: 18
Iteration: 1, Func. Count: 10, Neg. LLF: 179.15715213963767
Iteration: 2, Func. Count: 21, Neg. LLF: 148.8080743558831
Iteration: 3, Func. Count: 30, Neg. LLF: 148.78955901594406
Iteration: 4, Func. Count: 39, Neg. LLF: 148.78721338405694
Iteration: 5, Func. Count: 48, Neg. LLF: 148.7849691757525
Iteration: 6, Func. Count: 57, Neg. LLF: 148.7838074518248
Iteration: 7, Func. Count: 66, Neg. LLF: 148.7762352991692
Iteration: 8, Func. Count: 75, Neg. LLF: 148.75547700303866
Iteration: 9, Func. Count: 84, Neg. LLF: 148.7395656782687
Iteration: 10, Func. Count: 93, Neg. LLF: 148.71577044101895
Iteration: 11, Func. Count: 102, Neg. LLF: 148.6928477625574
Iteration: 12, Func. Count: 111, Neg. LLF: 148.67850587741697
Iteration: 13, Func. Count: 120, Neg. LLF: 148.67765984191186
Iteration: 14, Func. Count: 129, Neg. LLF: 148.67760811712654
Iteration: 15, Func. Count: 137, Neg. LLF: 148.67760811735033
Optimization terminated successfully (Exit mode 0)
Current function value: 148.67760811712654
Iterations: 15
Function evaluations: 137
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 173.02047228951926
Iteration: 2, Func. Count: 22, Neg. LLF: 148.76133592594547
Iteration: 3, Func. Count: 32, Neg. LLF: 148.75983211649648
Iteration: 4, Func. Count: 42, Neg. LLF: 148.75916511117092
Iteration: 5, Func. Count: 52, Neg. LLF: 148.75805073407838
Iteration: 6, Func. Count: 62, Neg. LLF: 148.75703543636897
Iteration: 7, Func. Count: 72, Neg. LLF: 148.7505634277757
Iteration: 8, Func. Count: 82, Neg. LLF: 148.7203286224367
Iteration: 9, Func. Count: 92, Neg. LLF: 148.7519449680847
Iteration: 10, Func. Count: 103, Neg. LLF: 148.7131003650975
Iteration: 11, Func. Count: 114, Neg. LLF: 148.70044419455536
Iteration: 12, Func. Count: 124, Neg. LLF: 148.69586206658792
Iteration: 13, Func. Count: 134, Neg. LLF: 148.69205454205402
Iteration: 14, Func. Count: 144, Neg. LLF: 148.69084647315046
Iteration: 15, Func. Count: 154, Neg. LLF: 148.69079151467554
Iteration: 16, Func. Count: 164, Neg. LLF: 148.69066824857995
Iteration: 17, Func. Count: 174, Neg. LLF: 148.6897505849027
Iteration: 18, Func. Count: 184, Neg. LLF: 148.68862166752533
Iteration: 19, Func. Count: 194, Neg. LLF: 148.6850082515651
Iteration: 20, Func. Count: 204, Neg. LLF: 148.67388946584313
Iteration: 21, Func. Count: 214, Neg. LLF: 260.39529193952814
Iteration: 22, Func. Count: 227, Neg. LLF: 148.67458951360143
Iteration: 23, Func. Count: 238, Neg. LLF: 148.67147499057424
Iteration: 24, Func. Count: 248, Neg. LLF: 148.67146969970173
Iteration: 25, Func. Count: 258, Neg. LLF: 148.67146364694923
Iteration: 26, Func. Count: 268, Neg. LLF: 148.67145934859684
Iteration: 27, Func. Count: 278, Neg. LLF: 148.67145838745415
Optimization terminated successfully (Exit mode 0)
Current function value: 148.67145838745415
Iterations: 28
Function evaluations: 278
Gradient evaluations: 27
Iteration: 1, Func. Count: 12, Neg. LLF: 169.07542659340143
Iteration: 2, Func. Count: 24, Neg. LLF: 148.74960683565098
Iteration: 3, Func. Count: 35, Neg. LLF: 148.748029618898
Iteration: 4, Func. Count: 46, Neg. LLF: 148.74561928646688
Iteration: 5, Func. Count: 57, Neg. LLF: 148.74459050847548
Iteration: 6, Func. Count: 68, Neg. LLF: 148.7437438612156
Iteration: 7, Func. Count: 79, Neg. LLF: 148.74197837518676
Iteration: 8, Func. Count: 90, Neg. LLF: 148.74003933749754
Iteration: 9, Func. Count: 101, Neg. LLF: 148.73366838860338
Iteration: 10, Func. Count: 112, Neg. LLF: 148.7255439840551
Iteration: 11, Func. Count: 123, Neg. LLF: 148.71950812426235
Iteration: 12, Func. Count: 134, Neg. LLF: 148.71783185654553
Iteration: 13, Func. Count: 145, Neg. LLF: 148.71772104052573
Iteration: 14, Func. Count: 156, Neg. LLF: 148.7177038335128
Iteration: 15, Func. Count: 166, Neg. LLF: 148.71770383343605
Optimization terminated successfully (Exit mode 0)
Current function value: 148.7177038335128
Iterations: 15
Function evaluations: 166
Gradient evaluations: 15
Iteration: 1, Func. Count: 9, Neg. LLF: 153.06310510279096
Iteration: 2, Func. Count: 18, Neg. LLF: 160.45521333568533
Iteration: 3, Func. Count: 27, Neg. LLF: 143.54083307161395
Iteration: 4, Func. Count: 35, Neg. LLF: 142.96127394849202
Iteration: 5, Func. Count: 43, Neg. LLF: 142.92918936139915
Iteration: 6, Func. Count: 51, Neg. LLF: 142.89351895166877
Iteration: 7, Func. Count: 59, Neg. LLF: 143.0525238529167
Iteration: 8, Func. Count: 69, Neg. LLF: 142.88377797873667
Iteration: 9, Func. Count: 77, Neg. LLF: 142.88273694438385
Iteration: 10, Func. Count: 85, Neg. LLF: 142.88272570270618
Iteration: 11, Func. Count: 92, Neg. LLF: 142.8827256858617
Optimization terminated successfully (Exit mode 0)
Current function value: 142.88272570270618
Iterations: 11
Function evaluations: 92
Gradient evaluations: 11
Iteration: 1, Func. Count: 10, Neg. LLF: 187.7191217857664
Iteration: 2, Func. Count: 21, Neg. LLF: 148.85588325058507
Iteration: 3, Func. Count: 30, Neg. LLF: 148.85594355755322
Iteration: 4, Func. Count: 40, Neg. LLF: 148.85526721791516
Iteration: 5, Func. Count: 49, Neg. LLF: 148.85442766805738
Iteration: 6, Func. Count: 58, Neg. LLF: 148.85336639613956
Iteration: 7, Func. Count: 67, Neg. LLF: 148.8522792923165
Iteration: 8, Func. Count: 76, Neg. LLF: 148.84643729121336
Iteration: 9, Func. Count: 85, Neg. LLF: 148.83422828110895
Iteration: 10, Func. Count: 94, Neg. LLF: 148.88660610237073
Iteration: 11, Func. Count: 104, Neg. LLF: 149.50201255434658
Iteration: 12, Func. Count: 114, Neg. LLF: 149.3036922728731
Iteration: 13, Func. Count: 124, Neg. LLF: 149.05076359168524
Iteration: 14, Func. Count: 134, Neg. LLF: 148.93464711021645
Iteration: 15, Func. Count: 144, Neg. LLF: 149.0274737666031
Iteration: 16, Func. Count: 154, Neg. LLF: 148.78072329053356
Iteration: 17, Func. Count: 164, Neg. LLF: 148.69696992413927
Iteration: 18, Func. Count: 173, Neg. LLF: 148.68409969646618
Iteration: 19, Func. Count: 182, Neg. LLF: 148.69482381303874
Iteration: 20, Func. Count: 192, Neg. LLF: 148.67158150319543
Iteration: 21, Func. Count: 201, Neg. LLF: 148.6714603057484
Iteration: 22, Func. Count: 210, Neg. LLF: 148.67145957044525
Optimization terminated successfully (Exit mode 0)
Current function value: 148.67145957044525
Iterations: 22
Function evaluations: 210
Gradient evaluations: 22
Iteration: 1, Func. Count: 11, Neg. LLF: 179.043034860043
Iteration: 2, Func. Count: 22, Neg. LLF: 148.80603769242728
Iteration: 3, Func. Count: 32, Neg. LLF: 148.79561305589823
Iteration: 4, Func. Count: 42, Neg. LLF: 148.78773815516004
Iteration: 5, Func. Count: 52, Neg. LLF: 148.78705641452626
Iteration: 6, Func. Count: 62, Neg. LLF: 148.78328233641287
Iteration: 7, Func. Count: 72, Neg. LLF: 148.76251640009446
Iteration: 8, Func. Count: 82, Neg. LLF: 150.55967045222383
Iteration: 9, Func. Count: 93, Neg. LLF: 149.0934054650457
Iteration: 10, Func. Count: 104, Neg. LLF: 148.79036021913947
Iteration: 11, Func. Count: 115, Neg. LLF: 148.6892210993095
Iteration: 12, Func. Count: 125, Neg. LLF: 148.67883642142783
Iteration: 13, Func. Count: 135, Neg. LLF: 148.67795320546608
Iteration: 14, Func. Count: 145, Neg. LLF: 148.6776652687718
Iteration: 15, Func. Count: 155, Neg. LLF: 148.67761333624972
Iteration: 16, Func. Count: 165, Neg. LLF: 148.67760808362274
Iteration: 17, Func. Count: 174, Neg. LLF: 148.67760808362652
Optimization terminated successfully (Exit mode 0)
Current function value: 148.67760808362274
Iterations: 17
Function evaluations: 174
Gradient evaluations: 17
Iteration: 1, Func. Count: 12, Neg. LLF: 172.6967754043208
Iteration: 2, Func. Count: 24, Neg. LLF: 148.76075547710457
Iteration: 3, Func. Count: 35, Neg. LLF: 148.76070751276387
Iteration: 4, Func. Count: 47, Neg. LLF: 148.75954682412655
Iteration: 5, Func. Count: 58, Neg. LLF: 148.75591072723685
Iteration: 6, Func. Count: 69, Neg. LLF: 148.7370142533774
Iteration: 7, Func. Count: 80, Neg. LLF: 148.7600855012627
Iteration: 8, Func. Count: 92, Neg. LLF: 148.70988622657418
Iteration: 9, Func. Count: 103, Neg. LLF: 148.70873283643152
Iteration: 10, Func. Count: 114, Neg. LLF: 148.70828589400236
Iteration: 11, Func. Count: 125, Neg. LLF: 148.70743518115933
Iteration: 12, Func. Count: 136, Neg. LLF: 148.69047538276567
Iteration: 13, Func. Count: 147, Neg. LLF: 148.6900863271894
Iteration: 14, Func. Count: 158, Neg. LLF: 148.68798843212187
Iteration: 15, Func. Count: 169, Neg. LLF: 148.67877403390148
Iteration: 16, Func. Count: 180, Neg. LLF: 162.8934954314519
Iteration: 17, Func. Count: 194, Neg. LLF: 148.67884719128136
Iteration: 18, Func. Count: 206, Neg. LLF: 148.67768127902895
Iteration: 19, Func. Count: 217, Neg. LLF: 148.6776780926193
Iteration: 20, Func. Count: 228, Neg. LLF: 148.6776607678602
Iteration: 21, Func. Count: 239, Neg. LLF: 148.677618461655
Iteration: 22, Func. Count: 250, Neg. LLF: 148.677610189621
Iteration: 23, Func. Count: 261, Neg. LLF: 148.67760787475922
Iteration: 24, Func. Count: 271, Neg. LLF: 148.6776078801751
Optimization terminated successfully (Exit mode 0)
Current function value: 148.67760787475922
Iterations: 25
Function evaluations: 271
Gradient evaluations: 24
Iteration: 1, Func. Count: 13, Neg. LLF: 168.62574323924358
Iteration: 2, Func. Count: 26, Neg. LLF: 148.75231925526043
Iteration: 3, Func. Count: 38, Neg. LLF: 148.75087518966586
Iteration: 4, Func. Count: 50, Neg. LLF: 148.74889307695238
Iteration: 5, Func. Count: 62, Neg. LLF: 148.74510412802243
Iteration: 6, Func. Count: 74, Neg. LLF: 148.74441853697658
Iteration: 7, Func. Count: 86, Neg. LLF: 148.74315757883258
Iteration: 8, Func. Count: 98, Neg. LLF: 148.7415599169086
Iteration: 9, Func. Count: 110, Neg. LLF: 148.73603609686577
Iteration: 10, Func. Count: 122, Neg. LLF: 148.72793512380625
Iteration: 11, Func. Count: 134, Neg. LLF: 148.72102881889884
Iteration: 12, Func. Count: 146, Neg. LLF: 148.71813590311675
Iteration: 13, Func. Count: 158, Neg. LLF: 148.71772928668915
Iteration: 14, Func. Count: 170, Neg. LLF: 148.71771072553597
Iteration: 15, Func. Count: 182, Neg. LLF: 148.71770355846976
Iteration: 16, Func. Count: 193, Neg. LLF: 148.71770355843418
Optimization terminated successfully (Exit mode 0)
Current function value: 148.71770355846976
Iterations: 16
Function evaluations: 193
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 150.63143168580993
Iteration: 2, Func. Count: 19, Neg. LLF: 154.40095594418761
Iteration: 3, Func. Count: 29, Neg. LLF: 143.3945545006114
Iteration: 4, Func. Count: 38, Neg. LLF: 143.20069635387676
Iteration: 5, Func. Count: 47, Neg. LLF: 2416800.0240959683
Iteration: 6, Func. Count: 57, Neg. LLF: 142.95944199295502
Iteration: 7, Func. Count: 66, Neg. LLF: 142.85855495061477
Iteration: 8, Func. Count: 75, Neg. LLF: 142.85295159232257
Iteration: 9, Func. Count: 84, Neg. LLF: 142.85271598774662
Iteration: 10, Func. Count: 93, Neg. LLF: 142.852676362958
Iteration: 11, Func. Count: 102, Neg. LLF: 142.85265722666432
Iteration: 12, Func. Count: 111, Neg. LLF: 142.8526563797619
Optimization terminated successfully (Exit mode 0)
Current function value: 142.8526563797619
Iterations: 12
Function evaluations: 111
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 187.7279468523478
Iteration: 2, Func. Count: 23, Neg. LLF: 148.85556950025534
Iteration: 3, Func. Count: 33, Neg. LLF: 148.85536490062333
Iteration: 4, Func. Count: 43, Neg. LLF: 148.85431382574745
Iteration: 5, Func. Count: 53, Neg. LLF: 148.85387612706413
Iteration: 6, Func. Count: 63, Neg. LLF: 148.8511880415549
Iteration: 7, Func. Count: 73, Neg. LLF: 148.83456313313
Iteration: 8, Func. Count: 83, Neg. LLF: 148.73810532448653
Iteration: 9, Func. Count: 93, Neg. LLF: 148.81736455792176
Iteration: 10, Func. Count: 105, Neg. LLF: 148.67873778308123
Iteration: 11, Func. Count: 116, Neg. LLF: 148.67147023098383
Iteration: 12, Func. Count: 126, Neg. LLF: 148.6714492958535
Iteration: 13, Func. Count: 136, Neg. LLF: 148.6714576777606
Iteration: 14, Func. Count: 146, Neg. LLF: 148.6714488627719
Optimization terminated successfully (Exit mode 0)
Current function value: 148.67145766912438
Iterations: 14
Function evaluations: 156
Gradient evaluations: 14
Iteration: 1, Func. Count: 12, Neg. LLF: 179.06848156455547
Iteration: 2, Func. Count: 24, Neg. LLF: 148.80626716319736
Iteration: 3, Func. Count: 35, Neg. LLF: 148.7955534007863
Iteration: 4, Func. Count: 46, Neg. LLF: 148.78776675985515
Iteration: 5, Func. Count: 57, Neg. LLF: 148.78722125789506
Iteration: 6, Func. Count: 68, Neg. LLF: 148.78019215796309
Iteration: 7, Func. Count: 79, Neg. LLF: 148.743818986205
Iteration: 8, Func. Count: 90, Neg. LLF: 148.90487419492072
Iteration: 9, Func. Count: 102, Neg. LLF: 148.70464802669775
Iteration: 10, Func. Count: 113, Neg. LLF: 148.68031229698056
Iteration: 11, Func. Count: 124, Neg. LLF: 148.67857641194462
Iteration: 12, Func. Count: 135, Neg. LLF: 148.6776183032672
Iteration: 13, Func. Count: 146, Neg. LLF: 148.6776079593767
Iteration: 14, Func. Count: 156, Neg. LLF: 148.67760795924065
Optimization terminated successfully (Exit mode 0)
Current function value: 148.6776079593767
Iterations: 14
Function evaluations: 156
Gradient evaluations: 14
Iteration: 1, Func. Count: 13, Neg. LLF: 172.5371641685014
Iteration: 2, Func. Count: 26, Neg. LLF: 148.7606253163014
Iteration: 3, Func. Count: 38, Neg. LLF: 148.7600814105311
Iteration: 4, Func. Count: 50, Neg. LLF: 148.75929962165375
Iteration: 5, Func. Count: 62, Neg. LLF: 148.75766534442417
Iteration: 6, Func. Count: 74, Neg. LLF: 148.75208701404554
Iteration: 7, Func. Count: 86, Neg. LLF: 148.74086196575576
Iteration: 8, Func. Count: 98, Neg. LLF: 148.72625129718114
Iteration: 9, Func. Count: 110, Neg. LLF: 148.7157396447212
Iteration: 10, Func. Count: 122, Neg. LLF: 148.71053038268442
Iteration: 11, Func. Count: 134, Neg. LLF: 148.7087540729627
Iteration: 12, Func. Count: 146, Neg. LLF: 148.70819903104336
Iteration: 13, Func. Count: 158, Neg. LLF: 148.7078683612374
Iteration: 14, Func. Count: 170, Neg. LLF: 148.70584332700176
Iteration: 15, Func. Count: 182, Neg. LLF: 148.6905009983476
Iteration: 16, Func. Count: 194, Neg. LLF: 148.6880352653855
Iteration: 17, Func. Count: 206, Neg. LLF: 148.67875636166252
Iteration: 18, Func. Count: 218, Neg. LLF: 190.1016847133063
Iteration: 19, Func. Count: 233, Neg. LLF: 151.68618337568546
Iteration: 20, Func. Count: 248, Neg. LLF: 148.67881548160048
Iteration: 21, Func. Count: 261, Neg. LLF: 148.6780413774449
Iteration: 22, Func. Count: 273, Neg. LLF: 148.6779724910665
Iteration: 23, Func. Count: 285, Neg. LLF: 148.6777311731034
Iteration: 24, Func. Count: 297, Neg. LLF: 148.67760805411507
Iteration: 25, Func. Count: 308, Neg. LLF: 148.67760805956715
Optimization terminated successfully (Exit mode 0)
Current function value: 148.67760805411507
Iterations: 26
Function evaluations: 308
Gradient evaluations: 25
Iteration: 1, Func. Count: 14, Neg. LLF: 168.5626133743459
Iteration: 2, Func. Count: 28, Neg. LLF: 148.75131356827882
Iteration: 3, Func. Count: 41, Neg. LLF: 148.7492922952342
Iteration: 4, Func. Count: 54, Neg. LLF: 148.74588842271527
Iteration: 5, Func. Count: 67, Neg. LLF: 148.7451145062384
Iteration: 6, Func. Count: 80, Neg. LLF: 148.7445894380325
Iteration: 7, Func. Count: 93, Neg. LLF: 148.74110630438145
Iteration: 8, Func. Count: 106, Neg. LLF: 148.7348475538593
Iteration: 9, Func. Count: 119, Neg. LLF: 148.72511794298725
Iteration: 10, Func. Count: 132, Neg. LLF: 148.7189707746486
Iteration: 11, Func. Count: 145, Neg. LLF: 148.71774211338197
Iteration: 12, Func. Count: 158, Neg. LLF: 148.71770456882797
Iteration: 13, Func. Count: 171, Neg. LLF: 148.7177034971754
Iteration: 14, Func. Count: 183, Neg. LLF: 148.71770349715638
Optimization terminated successfully (Exit mode 0)
Current function value: 148.7177034971754
Iterations: 14
Function evaluations: 183
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 147.11314578871708
Iteration: 2, Func. Count: 21, Neg. LLF: 156.04364409386662
Iteration: 3, Func. Count: 32, Neg. LLF: 143.43058504035318
Iteration: 4, Func. Count: 42, Neg. LLF: 143.09051147397312
Iteration: 5, Func. Count: 52, Neg. LLF: 145.84606388161185
Iteration: 6, Func. Count: 63, Neg. LLF: 143.17418157481438
Iteration: 7, Func. Count: 74, Neg. LLF: 142.8531265513341
Iteration: 8, Func. Count: 84, Neg. LLF: 142.8527230125903
Iteration: 9, Func. Count: 94, Neg. LLF: 142.85265666453472
Iteration: 10, Func. Count: 103, Neg. LLF: 142.85265685406523
Optimization terminated successfully (Exit mode 0)
Current function value: 142.85265666453472
Iterations: 10
Function evaluations: 103
Gradient evaluations: 10
Iteration: 1, Func. Count: 12, Neg. LLF: 187.73241897980873
Iteration: 2, Func. Count: 25, Neg. LLF: 148.85584805070306
Iteration: 3, Func. Count: 36, Neg. LLF: 148.85599466752234
Iteration: 4, Func. Count: 48, Neg. LLF: 148.85525283023094
Iteration: 5, Func. Count: 59, Neg. LLF: 148.85437252880638
Iteration: 6, Func. Count: 70, Neg. LLF: 148.8516150406836
Iteration: 7, Func. Count: 81, Neg. LLF: 148.8497449373014
Iteration: 8, Func. Count: 92, Neg. LLF: 148.83812962929392
Iteration: 9, Func. Count: 103, Neg. LLF: 148.81876351655654
Iteration: 10, Func. Count: 114, Neg. LLF: 149.01306559376997
Iteration: 11, Func. Count: 126, Neg. LLF: 148.93448956642087
Iteration: 12, Func. Count: 138, Neg. LLF: 149.33896238668336
Iteration: 13, Func. Count: 150, Neg. LLF: 151.53755182890418
Iteration: 14, Func. Count: 162, Neg. LLF: 149.81478857700804
Iteration: 15, Func. Count: 174, Neg. LLF: 148.69165992992654
Iteration: 16, Func. Count: 185, Neg. LLF: 148.67353987065226
Iteration: 17, Func. Count: 196, Neg. LLF: 148.67433050716159
Iteration: 18, Func. Count: 208, Neg. LLF: 148.67144686586798
Iteration: 19, Func. Count: 219, Neg. LLF: 159.01174383065876
Iteration: 20, Func. Count: 233, Neg. LLF: 148.6714676322257
Iteration: 21, Func. Count: 245, Neg. LLF: 148.67146250429224
Iteration: 22, Func. Count: 256, Neg. LLF: 148.6714609637686
Iteration: 23, Func. Count: 267, Neg. LLF: 148.6714594080374
Iteration: 24, Func. Count: 278, Neg. LLF: 148.67145845898332
Optimization terminated successfully (Exit mode 0)
Current function value: 148.67145845898332
Iterations: 25
Function evaluations: 278
Gradient evaluations: 24
Iteration: 1, Func. Count: 13, Neg. LLF: 178.8598977665856
Iteration: 2, Func. Count: 26, Neg. LLF: 148.8034666009912
Iteration: 3, Func. Count: 38, Neg. LLF: 148.7919271935577
Iteration: 4, Func. Count: 50, Neg. LLF: 148.7884260539762
Iteration: 5, Func. Count: 62, Neg. LLF: 148.78631988704188
Iteration: 6, Func. Count: 74, Neg. LLF: 148.78377266912693
Iteration: 7, Func. Count: 86, Neg. LLF: 148.7805366947297
Iteration: 8, Func. Count: 98, Neg. LLF: 148.76866163344408
Iteration: 9, Func. Count: 110, Neg. LLF: 148.7501290299416
Iteration: 10, Func. Count: 122, Neg. LLF: 148.720354417278
Iteration: 11, Func. Count: 134, Neg. LLF: 148.69988994580098
Iteration: 12, Func. Count: 146, Neg. LLF: 148.67816678770885
Iteration: 13, Func. Count: 158, Neg. LLF: 148.67776681344768
Iteration: 14, Func. Count: 170, Neg. LLF: 148.67762953468065
Iteration: 15, Func. Count: 182, Neg. LLF: 148.67760791999655
Iteration: 16, Func. Count: 193, Neg. LLF: 148.6776079200949
Optimization terminated successfully (Exit mode 0)
Current function value: 148.67760791999655
Iterations: 16
Function evaluations: 193
Gradient evaluations: 16
Iteration: 1, Func. Count: 14, Neg. LLF: 172.61664927198063
Iteration: 2, Func. Count: 28, Neg. LLF: 148.76086094023537
Iteration: 3, Func. Count: 41, Neg. LLF: 148.76002086937024
Iteration: 4, Func. Count: 54, Neg. LLF: 148.75915407196987
Iteration: 5, Func. Count: 67, Neg. LLF: 148.7581330707057
Iteration: 6, Func. Count: 80, Neg. LLF: 148.75127027046332
Iteration: 7, Func. Count: 93, Neg. LLF: 148.72039755697642
Iteration: 8, Func. Count: 106, Neg. LLF: 148.7158754204141
Iteration: 9, Func. Count: 119, Neg. LLF: 148.71008960378552
Iteration: 10, Func. Count: 132, Neg. LLF: 148.70903573198603
Iteration: 11, Func. Count: 145, Neg. LLF: 148.7082232980724
Iteration: 12, Func. Count: 158, Neg. LLF: 148.7075806158943
Iteration: 13, Func. Count: 171, Neg. LLF: 148.69142029469378
Iteration: 14, Func. Count: 184, Neg. LLF: 148.69008313013939
Iteration: 15, Func. Count: 197, Neg. LLF: 148.68899116732004
Iteration: 16, Func. Count: 210, Neg. LLF: 148.67823976903134
Iteration: 17, Func. Count: 223, Neg. LLF: 163.55547184498053
Iteration: 18, Func. Count: 239, Neg. LLF: 148.6778134807413
Iteration: 19, Func. Count: 252, Neg. LLF: 148.67780131615922
Iteration: 20, Func. Count: 265, Neg. LLF: 148.67775752955325
Iteration: 21, Func. Count: 278, Neg. LLF: 148.67770552286046
Iteration: 22, Func. Count: 291, Neg. LLF: 148.67764000070375
Iteration: 23, Func. Count: 304, Neg. LLF: 148.6776128327389
Iteration: 24, Func. Count: 317, Neg. LLF: 148.67760801595233
Iteration: 25, Func. Count: 329, Neg. LLF: 148.6776080213695
Optimization terminated successfully (Exit mode 0)
Current function value: 148.67760801595233
Iterations: 26
Function evaluations: 329
Gradient evaluations: 25
Iteration: 1, Func. Count: 15, Neg. LLF: 168.15200514950433
Iteration: 2, Func. Count: 30, Neg. LLF: 148.7533555891495
Iteration: 3, Func. Count: 44, Neg. LLF: 148.75054056889547
Iteration: 4, Func. Count: 58, Neg. LLF: 148.74925850011863
Iteration: 5, Func. Count: 72, Neg. LLF: 148.7514002844343
Iteration: 6, Func. Count: 87, Neg. LLF: 148.74452090143296
Iteration: 7, Func. Count: 101, Neg. LLF: 148.7435954770493
Iteration: 8, Func. Count: 115, Neg. LLF: 148.74136200450542
Iteration: 9, Func. Count: 129, Neg. LLF: 148.73914549826367
Iteration: 10, Func. Count: 143, Neg. LLF: 148.73278836830883
Iteration: 11, Func. Count: 157, Neg. LLF: 148.72589465187505
Iteration: 12, Func. Count: 171, Neg. LLF: 148.72043614183545
Iteration: 13, Func. Count: 185, Neg. LLF: 148.71793370331582
Iteration: 14, Func. Count: 199, Neg. LLF: 148.71772082407267
Iteration: 15, Func. Count: 213, Neg. LLF: 148.71770413666886
Iteration: 16, Func. Count: 227, Neg. LLF: 148.7177037045566
Optimization terminated successfully (Exit mode 0)
Current function value: 148.7177037045566
Iterations: 16
Function evaluations: 227
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 144.00492995486272
Iteration: 2, Func. Count: 23, Neg. LLF: 146.31027208549807
Iteration: 3, Func. Count: 35, Neg. LLF: 143.56840532152907
Iteration: 4, Func. Count: 46, Neg. LLF: 143.73635529595262
Iteration: 5, Func. Count: 58, Neg. LLF: 154.66344758759763
Iteration: 6, Func. Count: 70, Neg. LLF: 142.93538760498188
Iteration: 7, Func. Count: 81, Neg. LLF: 143.0662288213165
Iteration: 8, Func. Count: 93, Neg. LLF: 143.0118679417028
Iteration: 9, Func. Count: 105, Neg. LLF: 142.8587096181687
Iteration: 10, Func. Count: 116, Neg. LLF: 142.85350760661382
Iteration: 11, Func. Count: 127, Neg. LLF: 142.85277057300073
Iteration: 12, Func. Count: 138, Neg. LLF: 142.85265895547468
Iteration: 13, Func. Count: 149, Neg. LLF: 142.85265636271845
Iteration: 14, Func. Count: 159, Neg. LLF: 142.85265586350525
Optimization terminated successfully (Exit mode 0)
Current function value: 142.85265636271845
Iterations: 14
Function evaluations: 159
Gradient evaluations: 14
Iteration: 1, Func. Count: 13, Neg. LLF: 187.73302703716394
Iteration: 2, Func. Count: 26, Neg. LLF: 148.85651388577003
Iteration: 3, Func. Count: 38, Neg. LLF: 148.8573594282906
Iteration: 4, Func. Count: 51, Neg. LLF: 148.85532135236943
Iteration: 5, Func. Count: 63, Neg. LLF: 148.854253820165
Iteration: 6, Func. Count: 75, Neg. LLF: 148.85077948929137
Iteration: 7, Func. Count: 87, Neg. LLF: 148.8457370378584
Iteration: 8, Func. Count: 99, Neg. LLF: 148.86665920309147
Iteration: 9, Func. Count: 112, Neg. LLF: 154.4201614768648
Iteration: 10, Func. Count: 125, Neg. LLF: 153.31803093491334
Iteration: 11, Func. Count: 138, Neg. LLF: 152.34702751156883
Iteration: 12, Func. Count: 151, Neg. LLF: 149.3841104259265
Iteration: 13, Func. Count: 164, Neg. LLF: 149.4078772779017
Iteration: 14, Func. Count: 177, Neg. LLF: 149.44766866275793
Iteration: 15, Func. Count: 190, Neg. LLF: 148.9963430835224
Iteration: 16, Func. Count: 203, Neg. LLF: 148.72744512760084
Iteration: 17, Func. Count: 215, Neg. LLF: 148.67720263839598
Iteration: 18, Func. Count: 227, Neg. LLF: 148.6716617068802
Iteration: 19, Func. Count: 239, Neg. LLF: 148.67147854394486
Iteration: 20, Func. Count: 251, Neg. LLF: 148.67146009170122
Iteration: 21, Func. Count: 263, Neg. LLF: 148.67145822182482
Iteration: 22, Func. Count: 274, Neg. LLF: 148.67145822186052
Optimization terminated successfully (Exit mode 0)
Current function value: 148.67145822182482
Iterations: 22
Function evaluations: 274
Gradient evaluations: 22
Iteration: 1, Func. Count: 14, Neg. LLF: 178.96673871631813
Iteration: 2, Func. Count: 28, Neg. LLF: 148.80571044074358
Iteration: 3, Func. Count: 41, Neg. LLF: 148.7955854489778
Iteration: 4, Func. Count: 54, Neg. LLF: 148.7885948371878
Iteration: 5, Func. Count: 67, Neg. LLF: 148.78686269012695
Iteration: 6, Func. Count: 80, Neg. LLF: 148.78509360957693
Iteration: 7, Func. Count: 93, Neg. LLF: 148.78267323968828
Iteration: 8, Func. Count: 106, Neg. LLF: 148.77390275743826
Iteration: 9, Func. Count: 119, Neg. LLF: 148.75648471764782
Iteration: 10, Func. Count: 132, Neg. LLF: 148.73248158685348
Iteration: 11, Func. Count: 145, Neg. LLF: 148.71025803746335
Iteration: 12, Func. Count: 158, Neg. LLF: 148.6798802963925
Iteration: 13, Func. Count: 171, Neg. LLF: 148.67767606775215
Iteration: 14, Func. Count: 184, Neg. LLF: 148.67763665977355
Iteration: 15, Func. Count: 197, Neg. LLF: 148.6776080268578
Iteration: 16, Func. Count: 209, Neg. LLF: 148.67760802693005
Optimization terminated successfully (Exit mode 0)
Current function value: 148.6776080268578
Iterations: 16
Function evaluations: 209
Gradient evaluations: 16
Iteration: 1, Func. Count: 15, Neg. LLF: 172.3815087230999
Iteration: 2, Func. Count: 30, Neg. LLF: 148.76094079861784
Iteration: 3, Func. Count: 44, Neg. LLF: 148.7605158256158
Iteration: 4, Func. Count: 58, Neg. LLF: 148.75951006737324
Iteration: 5, Func. Count: 72, Neg. LLF: 148.75871507248198
Iteration: 6, Func. Count: 86, Neg. LLF: 148.75381508746764
Iteration: 7, Func. Count: 100, Neg. LLF: 148.74398362737483
Iteration: 8, Func. Count: 114, Neg. LLF: 148.72730327905597
Iteration: 9, Func. Count: 128, Neg. LLF: 148.71653939688738
Iteration: 10, Func. Count: 142, Neg. LLF: 148.7080033712508
Iteration: 11, Func. Count: 156, Neg. LLF: 148.70839677575233
Iteration: 12, Func. Count: 171, Neg. LLF: 148.70742828869277
Iteration: 13, Func. Count: 185, Neg. LLF: 148.70324626756184
Iteration: 14, Func. Count: 199, Neg. LLF: 148.6898744378839
Iteration: 15, Func. Count: 213, Neg. LLF: 148.68967185520805
Iteration: 16, Func. Count: 227, Neg. LLF: 148.6895058333271
Iteration: 17, Func. Count: 241, Neg. LLF: 148.68880751512071
Iteration: 18, Func. Count: 255, Neg. LLF: 148.68283240324942
Iteration: 19, Func. Count: 269, Neg. LLF: 148.6721633516529
Iteration: 20, Func. Count: 283, Neg. LLF: 149.3974286102416
Iteration: 21, Func. Count: 300, Neg. LLF: 244.1128627781131
Iteration: 22, Func. Count: 319, Neg. LLF: 149.21042271254308
Optimization terminated successfully (Exit mode 0)
Current function value: 148.67215155938476
Iterations: 22
Function evaluations: 329
Gradient evaluations: 22
Iteration: 1, Func. Count: 16, Neg. LLF: 168.3626601065099
Iteration: 2, Func. Count: 32, Neg. LLF: 148.74979465187505
Iteration: 3, Func. Count: 47, Neg. LLF: 148.74804791855502
Iteration: 4, Func. Count: 62, Neg. LLF: 148.74601200701412
Iteration: 5, Func. Count: 77, Neg. LLF: 148.74520230820343
Iteration: 6, Func. Count: 92, Neg. LLF: 148.7446477228958
Iteration: 7, Func. Count: 107, Neg. LLF: 148.74156118700353
Iteration: 8, Func. Count: 122, Neg. LLF: 148.7363006635307
Iteration: 9, Func. Count: 137, Neg. LLF: 148.72699524921586
Iteration: 10, Func. Count: 152, Neg. LLF: 148.71967814877408
Iteration: 11, Func. Count: 167, Neg. LLF: 148.7178133978339
Iteration: 12, Func. Count: 182, Neg. LLF: 148.7177086644126
Iteration: 13, Func. Count: 197, Neg. LLF: 148.71770377103726
Iteration: 14, Func. Count: 211, Neg. LLF: 148.71770377093267
Optimization terminated successfully (Exit mode 0)
Current function value: 148.71770377103726
Iterations: 14
Function evaluations: 211
Gradient evaluations: 14
Iteration: 1, Func. Count: 5, Neg. LLF: 153.0701838022456
Iteration: 2, Func. Count: 10, Neg. LLF: 160.76281320168974
Iteration: 3, Func. Count: 15, Neg. LLF: 143.55022497780365
Iteration: 4, Func. Count: 19, Neg. LLF: 142.96035186283157
Iteration: 5, Func. Count: 23, Neg. LLF: 142.9283331355575
Iteration: 6, Func. Count: 27, Neg. LLF: 142.894147239702
Iteration: 7, Func. Count: 31, Neg. LLF: 142.88616350162653
Iteration: 8, Func. Count: 35, Neg. LLF: 142.8852142284603
Iteration: 9, Func. Count: 39, Neg. LLF: 142.88520838184525
Iteration: 10, Func. Count: 42, Neg. LLF: 142.88520839858236
Optimization terminated successfully (Exit mode 0)
Current function value: 142.88520838184525
Iterations: 10
Function evaluations: 42
Gradient evaluations: 10
Iteration: 1, Func. Count: 5, Neg. LLF: 152.75618403351717
Iteration: 2, Func. Count: 10, Neg. LLF: 157.95368077750186
Iteration: 3, Func. Count: 15, Neg. LLF: 146.0438803623392
Iteration: 4, Func. Count: 19, Neg. LLF: 145.66271551878455
Iteration: 5, Func. Count: 23, Neg. LLF: 145.65712210675272
Iteration: 6, Func. Count: 27, Neg. LLF: 145.6484818954117
Iteration: 7, Func. Count: 31, Neg. LLF: 145.6463735461779
Iteration: 8, Func. Count: 35, Neg. LLF: 145.64601982384912
Iteration: 9, Func. Count: 39, Neg. LLF: 145.6460141046963
Iteration: 10, Func. Count: 42, Neg. LLF: 145.64601411721253
Optimization terminated successfully (Exit mode 0)
Current function value: 145.6460141046963
Iterations: 10
Function evaluations: 42
Gradient evaluations: 10
Iteration: 1, Func. Count: 6, Neg. LLF: 189.5945676909264
Iteration: 2, Func. Count: 13, Neg. LLF: 149.65823077174878
Iteration: 3, Func. Count: 18, Neg. LLF: 149.65820356475797
Iteration: 4, Func. Count: 24, Neg. LLF: 149.65770716759417
Iteration: 5, Func. Count: 29, Neg. LLF: 149.65749654091738
Iteration: 6, Func. Count: 34, Neg. LLF: 149.6572199053572
Iteration: 7, Func. Count: 39, Neg. LLF: 149.65631730223637
Iteration: 8, Func. Count: 44, Neg. LLF: 149.65410859893566
Iteration: 9, Func. Count: 49, Neg. LLF: 149.64833384913246
Iteration: 10, Func. Count: 54, Neg. LLF: 149.6365259439676
Iteration: 11, Func. Count: 59, Neg. LLF: 149.62057569632492
Iteration: 12, Func. Count: 64, Neg. LLF: 149.61306052181678
Iteration: 13, Func. Count: 69, Neg. LLF: 149.60359572028244
Iteration: 14, Func. Count: 74, Neg. LLF: 149.5965723750352
Iteration: 15, Func. Count: 79, Neg. LLF: 149.59653228325172
Iteration: 16, Func. Count: 83, Neg. LLF: 149.59653228430696
Optimization terminated successfully (Exit mode 0)
Current function value: 149.59653228325172
Iterations: 16
Function evaluations: 83
Gradient evaluations: 16
Iteration: 1, Func. Count: 7, Neg. LLF: 182.358403732658
Iteration: 2, Func. Count: 15, Neg. LLF: 149.6735506080949
Iteration: 3, Func. Count: 21, Neg. LLF: 149.6729101881613
Iteration: 4, Func. Count: 27, Neg. LLF: 149.6708593973448
Iteration: 5, Func. Count: 33, Neg. LLF: 149.6576754058722
Iteration: 6, Func. Count: 39, Neg. LLF: 149.65699651429748
Iteration: 7, Func. Count: 45, Neg. LLF: 149.65692575093138
Iteration: 8, Func. Count: 51, Neg. LLF: 149.65682604282244
Iteration: 9, Func. Count: 57, Neg. LLF: 149.6565889048341
Iteration: 10, Func. Count: 63, Neg. LLF: 149.65602102436276
Iteration: 11, Func. Count: 69, Neg. LLF: 149.65452377778414
Iteration: 12, Func. Count: 75, Neg. LLF: 149.65071238232306
Iteration: 13, Func. Count: 81, Neg. LLF: 149.6417732144184
Iteration: 14, Func. Count: 87, Neg. LLF: 149.62700776417452
Iteration: 15, Func. Count: 93, Neg. LLF: 149.6135161001537
Iteration: 16, Func. Count: 99, Neg. LLF: 149.60933395816093
Iteration: 17, Func. Count: 105, Neg. LLF: 149.59792377289423
Iteration: 18, Func. Count: 111, Neg. LLF: 149.5966871702719
Iteration: 19, Func. Count: 117, Neg. LLF: 149.5965443103539
Iteration: 20, Func. Count: 123, Neg. LLF: 149.5965322090414
Iteration: 21, Func. Count: 128, Neg. LLF: 149.5965322110897
Optimization terminated successfully (Exit mode 0)
Current function value: 149.5965322090414
Iterations: 21
Function evaluations: 128
Gradient evaluations: 21
Iteration: 1, Func. Count: 8, Neg. LLF: 469.11242767315804
Iteration: 2, Func. Count: 17, Neg. LLF: 149.26632329096657
Iteration: 3, Func. Count: 24, Neg. LLF: 149.20730286594755
Iteration: 4, Func. Count: 31, Neg. LLF: 149.07572803604486
Iteration: 5, Func. Count: 38, Neg. LLF: 149.03942860003718
Iteration: 6, Func. Count: 45, Neg. LLF: 149.02778113911995
Iteration: 7, Func. Count: 52, Neg. LLF: 149.02311611419753
Iteration: 8, Func. Count: 59, Neg. LLF: 149.02095130899392
Iteration: 9, Func. Count: 66, Neg. LLF: 149.0207478425721
Iteration: 10, Func. Count: 73, Neg. LLF: 149.02072788254412
Iteration: 11, Func. Count: 80, Neg. LLF: 149.02072716597962
Optimization terminated successfully (Exit mode 0)
Current function value: 149.02072716597962
Iterations: 11
Function evaluations: 80
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 490.4947281389889
Iteration: 2, Func. Count: 19, Neg. LLF: 149.1898595058916
Iteration: 3, Func. Count: 27, Neg. LLF: 149.11490688301134
Iteration: 4, Func. Count: 35, Neg. LLF: 149.05008789408325
Iteration: 5, Func. Count: 43, Neg. LLF: 149.00613470821258
Iteration: 6, Func. Count: 51, Neg. LLF: 148.99973325719125
Iteration: 7, Func. Count: 59, Neg. LLF: 148.99743985632168
Iteration: 8, Func. Count: 67, Neg. LLF: 148.9971547205189
Iteration: 9, Func. Count: 75, Neg. LLF: 148.9971502864951
Iteration: 10, Func. Count: 82, Neg. LLF: 148.99715028651428
Optimization terminated successfully (Exit mode 0)
Current function value: 148.9971502864951
Iterations: 10
Function evaluations: 82
Gradient evaluations: 10
Iteration: 1, Func. Count: 6, Neg. LLF: 151.33176067542672
Iteration: 2, Func. Count: 11, Neg. LLF: 154.01585959502916
Iteration: 3, Func. Count: 17, Neg. LLF: 145.8603922882085
Iteration: 4, Func. Count: 22, Neg. LLF: 145.77961389163806
Iteration: 5, Func. Count: 27, Neg. LLF: 145.6688808921488
Iteration: 6, Func. Count: 32, Neg. LLF: 145.64749677520743
Iteration: 7, Func. Count: 37, Neg. LLF: 145.6465738997521
Iteration: 8, Func. Count: 42, Neg. LLF: 145.64640058219737
Iteration: 9, Func. Count: 47, Neg. LLF: 145.64606129002073
Iteration: 10, Func. Count: 52, Neg. LLF: 145.6460140110853
Iteration: 11, Func. Count: 57, Neg. LLF: 145.6460118314803
Iteration: 12, Func. Count: 62, Neg. LLF: 145.64601126029555
Optimization terminated successfully (Exit mode 0)
Current function value: 145.64601126029555
Iterations: 12
Function evaluations: 62
Gradient evaluations: 12
Iteration: 1, Func. Count: 7, Neg. LLF: 189.60058624448052
Iteration: 2, Func. Count: 15, Neg. LLF: 149.65788805041865
Iteration: 3, Func. Count: 21, Neg. LLF: 149.65788802185452
Iteration: 4, Func. Count: 28, Neg. LLF: 149.6577604357075
Iteration: 5, Func. Count: 34, Neg. LLF: 149.65751389483057
Iteration: 6, Func. Count: 40, Neg. LLF: 149.65659487003003
Iteration: 7, Func. Count: 46, Neg. LLF: 149.65539435955327
Iteration: 8, Func. Count: 52, Neg. LLF: 149.6512435685964
Iteration: 9, Func. Count: 58, Neg. LLF: 149.64239245088643
Iteration: 10, Func. Count: 64, Neg. LLF: 149.6274055919694
Iteration: 11, Func. Count: 70, Neg. LLF: 149.6145993143266
Iteration: 12, Func. Count: 76, Neg. LLF: 149.61049168873993
Iteration: 13, Func. Count: 82, Neg. LLF: 149.5985580599142
Iteration: 14, Func. Count: 88, Neg. LLF: 149.59654204201829
Iteration: 15, Func. Count: 94, Neg. LLF: 149.596532192841
Iteration: 16, Func. Count: 99, Neg. LLF: 149.59653219387422
Optimization terminated successfully (Exit mode 0)
Current function value: 149.596532192841
Iterations: 16
Function evaluations: 99
Gradient evaluations: 16
Iteration: 1, Func. Count: 8, Neg. LLF: 182.3744313660982
Iteration: 2, Func. Count: 17, Neg. LLF: 149.67341310518978
Iteration: 3, Func. Count: 24, Neg. LLF: 149.67271106347133
Iteration: 4, Func. Count: 31, Neg. LLF: 149.65744580533493
Iteration: 5, Func. Count: 38, Neg. LLF: 149.6569476755241
Iteration: 6, Func. Count: 45, Neg. LLF: 149.6568768832425
Iteration: 7, Func. Count: 52, Neg. LLF: 149.65674379798347
Iteration: 8, Func. Count: 59, Neg. LLF: 149.65644135568795
Iteration: 9, Func. Count: 66, Neg. LLF: 149.65572555635939
Iteration: 10, Func. Count: 73, Neg. LLF: 149.6539166842937
Iteration: 11, Func. Count: 80, Neg. LLF: 149.64942729470934
Iteration: 12, Func. Count: 87, Neg. LLF: 149.63948640409058
Iteration: 13, Func. Count: 94, Neg. LLF: 149.6238648578801
Iteration: 14, Func. Count: 101, Neg. LLF: 149.61221653981966
Iteration: 15, Func. Count: 108, Neg. LLF: 149.60730321526285
Iteration: 16, Func. Count: 115, Neg. LLF: 149.59833912628943
Iteration: 17, Func. Count: 122, Neg. LLF: 149.5970954078097
Iteration: 18, Func. Count: 129, Neg. LLF: 149.59653356933327
Iteration: 19, Func. Count: 136, Neg. LLF: 149.59653219244535
Iteration: 20, Func. Count: 142, Neg. LLF: 149.5965321945013
Optimization terminated successfully (Exit mode 0)
Current function value: 149.59653219244535
Iterations: 20
Function evaluations: 142
Gradient evaluations: 20
Iteration: 1, Func. Count: 9, Neg. LLF: 469.5651445044413
Iteration: 2, Func. Count: 19, Neg. LLF: 149.26356278902958
Iteration: 3, Func. Count: 27, Neg. LLF: 149.2038293804897
Iteration: 4, Func. Count: 35, Neg. LLF: 149.06864182226948
Iteration: 5, Func. Count: 43, Neg. LLF: 149.03809742149465
Iteration: 6, Func. Count: 51, Neg. LLF: 149.02749598941872
Iteration: 7, Func. Count: 59, Neg. LLF: 149.02308987054704
Iteration: 8, Func. Count: 67, Neg. LLF: 149.02097346838076
Iteration: 9, Func. Count: 75, Neg. LLF: 149.02074921895306
Iteration: 10, Func. Count: 83, Neg. LLF: 149.0207279718148
Iteration: 11, Func. Count: 91, Neg. LLF: 149.0207271668795
Optimization terminated successfully (Exit mode 0)
Current function value: 149.0207271668795
Iterations: 11
Function evaluations: 91
Gradient evaluations: 11
Iteration: 1, Func. Count: 10, Neg. LLF: 490.3038037380608
Iteration: 2, Func. Count: 21, Neg. LLF: 149.1864438961331
Iteration: 3, Func. Count: 30, Neg. LLF: 149.1118971580666
Iteration: 4, Func. Count: 39, Neg. LLF: 149.04619709445072
Iteration: 5, Func. Count: 48, Neg. LLF: 149.00556006610915
Iteration: 6, Func. Count: 57, Neg. LLF: 148.99948879714907
Iteration: 7, Func. Count: 66, Neg. LLF: 148.9974676070482
Iteration: 8, Func. Count: 75, Neg. LLF: 148.9971537512586
Iteration: 9, Func. Count: 84, Neg. LLF: 148.99715029447188
Iteration: 10, Func. Count: 92, Neg. LLF: 148.9971502945545
Optimization terminated successfully (Exit mode 0)
Current function value: 148.99715029447188
Iterations: 10
Function evaluations: 92
Gradient evaluations: 10
Iteration: 1, Func. Count: 7, Neg. LLF: 148.4681552684844
Iteration: 2, Func. Count: 13, Neg. LLF: 154.99470919110829
Iteration: 3, Func. Count: 20, Neg. LLF: 145.88847906788652
Iteration: 4, Func. Count: 26, Neg. LLF: 145.7343659739343
Iteration: 5, Func. Count: 32, Neg. LLF: 145.65893579947496
Iteration: 6, Func. Count: 38, Neg. LLF: 145.6462093597228
Iteration: 7, Func. Count: 44, Neg. LLF: 145.65448051884178
Iteration: 8, Func. Count: 52, Neg. LLF: 145.64620400270138
Iteration: 9, Func. Count: 58, Neg. LLF: 145.646011816818
Optimization terminated successfully (Exit mode 0)
Current function value: 145.64601163427676
Iterations: 9
Function evaluations: 58
Gradient evaluations: 9
Iteration: 1, Func. Count: 8, Neg. LLF: 189.6029608286553
Iteration: 2, Func. Count: 17, Neg. LLF: 149.65801016835644
Iteration: 3, Func. Count: 24, Neg. LLF: 149.65803679315604
Iteration: 4, Func. Count: 32, Neg. LLF: 149.65774083766988
Iteration: 5, Func. Count: 39, Neg. LLF: 149.65749120147254
Iteration: 6, Func. Count: 46, Neg. LLF: 149.6572098429882
Iteration: 7, Func. Count: 53, Neg. LLF: 149.6564846030134
Iteration: 8, Func. Count: 60, Neg. LLF: 149.6545792798588
Iteration: 9, Func. Count: 67, Neg. LLF: 149.64969659822364
Iteration: 10, Func. Count: 74, Neg. LLF: 149.63909383101154
Iteration: 11, Func. Count: 81, Neg. LLF: 149.62373614387022
Iteration: 12, Func. Count: 88, Neg. LLF: 149.6142289872306
Iteration: 13, Func. Count: 95, Neg. LLF: 149.60785287443576
Iteration: 14, Func. Count: 102, Neg. LLF: 149.5965676810242
Iteration: 15, Func. Count: 109, Neg. LLF: 149.59653231671794
Iteration: 16, Func. Count: 115, Neg. LLF: 149.5965323177805
Optimization terminated successfully (Exit mode 0)
Current function value: 149.59653231671794
Iterations: 16
Function evaluations: 115
Gradient evaluations: 16
Iteration: 1, Func. Count: 9, Neg. LLF: 182.16157080540972
Iteration: 2, Func. Count: 19, Neg. LLF: 149.67411921401325
Iteration: 3, Func. Count: 27, Neg. LLF: 149.67378486947416
Iteration: 4, Func. Count: 35, Neg. LLF: 149.6730253656342
Iteration: 5, Func. Count: 43, Neg. LLF: 149.66633715583654
Iteration: 6, Func. Count: 51, Neg. LLF: 149.65503529306685
Iteration: 7, Func. Count: 59, Neg. LLF: 149.65451170430043
Iteration: 8, Func. Count: 67, Neg. LLF: 149.65374451709448
Iteration: 9, Func. Count: 75, Neg. LLF: 149.65366065357495
Iteration: 10, Func. Count: 83, Neg. LLF: 149.6533442702219
Iteration: 11, Func. Count: 91, Neg. LLF: 149.65280862121995
Iteration: 12, Func. Count: 99, Neg. LLF: 149.6511554026663
Iteration: 13, Func. Count: 107, Neg. LLF: 149.6472983361936
Iteration: 14, Func. Count: 115, Neg. LLF: 149.63865997341202
Iteration: 15, Func. Count: 123, Neg. LLF: 149.62378415145153
Iteration: 16, Func. Count: 131, Neg. LLF: 149.60882266009176
Iteration: 17, Func. Count: 139, Neg. LLF: 149.6041036665877
Iteration: 18, Func. Count: 147, Neg. LLF: 149.5981390138063
Iteration: 19, Func. Count: 155, Neg. LLF: 149.59695790015203
Iteration: 20, Func. Count: 163, Neg. LLF: 149.59653854037003
Iteration: 21, Func. Count: 171, Neg. LLF: 149.59653277310528
Iteration: 22, Func. Count: 178, Neg. LLF: 149.59653277514946
Optimization terminated successfully (Exit mode 0)
Current function value: 149.59653277310528
Iterations: 22
Function evaluations: 178
Gradient evaluations: 22
Iteration: 1, Func. Count: 10, Neg. LLF: 470.513501201274
Iteration: 2, Func. Count: 21, Neg. LLF: 149.26417006784254
Iteration: 3, Func. Count: 30, Neg. LLF: 149.19649342341071
Iteration: 4, Func. Count: 39, Neg. LLF: 149.0643767437855
Iteration: 5, Func. Count: 48, Neg. LLF: 149.03864482659682
Iteration: 6, Func. Count: 57, Neg. LLF: 149.03069317620847
Iteration: 7, Func. Count: 66, Neg. LLF: 149.02316484772618
Iteration: 8, Func. Count: 75, Neg. LLF: 149.02105705442403
Iteration: 9, Func. Count: 84, Neg. LLF: 149.02075306814646
Iteration: 10, Func. Count: 93, Neg. LLF: 149.0207284189376
Iteration: 11, Func. Count: 102, Neg. LLF: 149.02072717026812
Iteration: 12, Func. Count: 110, Neg. LLF: 149.0207271702662
Optimization terminated successfully (Exit mode 0)
Current function value: 149.02072717026812
Iterations: 12
Function evaluations: 110
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 491.89616735126424
Iteration: 2, Func. Count: 23, Neg. LLF: 149.18349465808507
Iteration: 3, Func. Count: 33, Neg. LLF: 149.11223639475534
Iteration: 4, Func. Count: 43, Neg. LLF: 149.0448966653547
Iteration: 5, Func. Count: 53, Neg. LLF: 149.00531856775095
Iteration: 6, Func. Count: 63, Neg. LLF: 148.99952601675398
Iteration: 7, Func. Count: 73, Neg. LLF: 148.99746549840845
Iteration: 8, Func. Count: 83, Neg. LLF: 148.99715273402842
Iteration: 9, Func. Count: 93, Neg. LLF: 148.99715028522897
Iteration: 10, Func. Count: 102, Neg. LLF: 148.99715028525523
Optimization terminated successfully (Exit mode 0)
Current function value: 148.99715028522897
Iterations: 10
Function evaluations: 102
Gradient evaluations: 10
Iteration: 1, Func. Count: 8, Neg. LLF: 146.31722371352222
Iteration: 2, Func. Count: 15, Neg. LLF: 149.19278798319843
Iteration: 3, Func. Count: 23, Neg. LLF: 146.0026753516094
Iteration: 4, Func. Count: 30, Neg. LLF: 145.68416553770408
Iteration: 5, Func. Count: 37, Neg. LLF: 145.72586481353574
Iteration: 6, Func. Count: 45, Neg. LLF: 145.6661805361358
Iteration: 7, Func. Count: 53, Neg. LLF: 145.64624141957682
Iteration: 8, Func. Count: 60, Neg. LLF: 145.64637339307154
Iteration: 9, Func. Count: 68, Neg. LLF: 145.6460195111405
Iteration: 10, Func. Count: 75, Neg. LLF: 145.6460116996824
Optimization terminated successfully (Exit mode 0)
Current function value: 145.64601126484953
Iterations: 10
Function evaluations: 75
Gradient evaluations: 10
Iteration: 1, Func. Count: 9, Neg. LLF: 189.60197847585954
Iteration: 2, Func. Count: 19, Neg. LLF: 149.65856924933433
Iteration: 3, Func. Count: 27, Neg. LLF: 149.65809285757868
Iteration: 4, Func. Count: 35, Neg. LLF: 149.65762980131157
Iteration: 5, Func. Count: 43, Neg. LLF: 149.657500830344
Iteration: 6, Func. Count: 51, Neg. LLF: 149.65730716834506
Iteration: 7, Func. Count: 59, Neg. LLF: 149.65710938922336
Iteration: 8, Func. Count: 67, Neg. LLF: 149.65649279607666
Iteration: 9, Func. Count: 75, Neg. LLF: 149.65504035440037
Iteration: 10, Func. Count: 83, Neg. LLF: 149.65128671414797
Iteration: 11, Func. Count: 91, Neg. LLF: 149.64293591254622
Iteration: 12, Func. Count: 99, Neg. LLF: 149.6283843618672
Iteration: 13, Func. Count: 107, Neg. LLF: 149.61214946617486
Iteration: 14, Func. Count: 115, Neg. LLF: 149.60751684838752
Iteration: 15, Func. Count: 123, Neg. LLF: 149.59907185375582
Iteration: 16, Func. Count: 131, Neg. LLF: 149.5973250539734
Iteration: 17, Func. Count: 139, Neg. LLF: 149.5965444578381
Iteration: 18, Func. Count: 147, Neg. LLF: 149.59653234556595
Iteration: 19, Func. Count: 154, Neg. LLF: 149.5965323465617
Optimization terminated successfully (Exit mode 0)
Current function value: 149.59653234556595
Iterations: 19
Function evaluations: 154
Gradient evaluations: 19
Iteration: 1, Func. Count: 10, Neg. LLF: 182.25944658347086
Iteration: 2, Func. Count: 21, Neg. LLF: 149.6742222031004
Iteration: 3, Func. Count: 30, Neg. LLF: 149.67364656031677
Iteration: 4, Func. Count: 39, Neg. LLF: 149.6728785080243
Iteration: 5, Func. Count: 48, Neg. LLF: 149.66462039396396
Iteration: 6, Func. Count: 57, Neg. LLF: 149.6555329672815
Iteration: 7, Func. Count: 66, Neg. LLF: 149.6551981141663
Iteration: 8, Func. Count: 75, Neg. LLF: 149.65472604283792
Iteration: 9, Func. Count: 84, Neg. LLF: 149.65461567275096
Iteration: 10, Func. Count: 93, Neg. LLF: 149.65419781665327
Iteration: 11, Func. Count: 102, Neg. LLF: 149.65372928410238
Iteration: 12, Func. Count: 111, Neg. LLF: 149.6526498203494
Iteration: 13, Func. Count: 120, Neg. LLF: 149.6506562014248
Iteration: 14, Func. Count: 129, Neg. LLF: 149.64458607112246
Iteration: 15, Func. Count: 138, Neg. LLF: 149.63290462102927
Iteration: 16, Func. Count: 147, Neg. LLF: 149.616873997703
Iteration: 17, Func. Count: 156, Neg. LLF: 149.61186707426202
Iteration: 18, Func. Count: 165, Neg. LLF: 149.59967579042382
Iteration: 19, Func. Count: 174, Neg. LLF: 149.5965617077803
Iteration: 20, Func. Count: 183, Neg. LLF: 149.59653573947494
Iteration: 21, Func. Count: 192, Neg. LLF: 149.59653366002425
Iteration: 22, Func. Count: 201, Neg. LLF: 149.5965331316643
Optimization terminated successfully (Exit mode 0)
Current function value: 149.5965331316643
Iterations: 22
Function evaluations: 201
Gradient evaluations: 22
Iteration: 1, Func. Count: 11, Neg. LLF: 472.85357837451664
Iteration: 2, Func. Count: 23, Neg. LLF: 149.26305437116147
Iteration: 3, Func. Count: 33, Neg. LLF: 149.19556076393062
Iteration: 4, Func. Count: 43, Neg. LLF: 149.06351249436253
Iteration: 5, Func. Count: 53, Neg. LLF: 149.03695590264078
Iteration: 6, Func. Count: 63, Neg. LLF: 149.02906685998778
Iteration: 7, Func. Count: 73, Neg. LLF: 149.02331910365294
Iteration: 8, Func. Count: 83, Neg. LLF: 149.02087127186314
Iteration: 9, Func. Count: 93, Neg. LLF: 149.0207506681116
Iteration: 10, Func. Count: 103, Neg. LLF: 149.020728198972
Iteration: 11, Func. Count: 113, Neg. LLF: 149.0207271675072
Iteration: 12, Func. Count: 122, Neg. LLF: 149.02072716754722
Optimization terminated successfully (Exit mode 0)
Current function value: 149.0207271675072
Iterations: 12
Function evaluations: 122
Gradient evaluations: 12
Iteration: 1, Func. Count: 12, Neg. LLF: 492.32667008784694
Iteration: 2, Func. Count: 25, Neg. LLF: 149.1839838605515
Iteration: 3, Func. Count: 36, Neg. LLF: 149.10309449231997
Iteration: 4, Func. Count: 47, Neg. LLF: 149.03016829911135
Iteration: 5, Func. Count: 58, Neg. LLF: 149.00394681942433
Iteration: 6, Func. Count: 69, Neg. LLF: 149.00090095947476
Iteration: 7, Func. Count: 80, Neg. LLF: 148.9976398021124
Iteration: 8, Func. Count: 91, Neg. LLF: 148.9971620994007
Iteration: 9, Func. Count: 102, Neg. LLF: 148.99715043756166
Iteration: 10, Func. Count: 112, Neg. LLF: 148.99715043754858
Optimization terminated successfully (Exit mode 0)
Current function value: 148.99715043756166
Iterations: 10
Function evaluations: 112
Gradient evaluations: 10
Iteration: 1, Func. Count: 5, Neg. LLF: 151.9835507927958
Iteration: 2, Func. Count: 9, Neg. LLF: 151.585290595937
Iteration: 3, Func. Count: 14, Neg. LLF: 149.19814458165266
Iteration: 4, Func. Count: 18, Neg. LLF: 149.03395294009994
Iteration: 5, Func. Count: 22, Neg. LLF: 148.98625553421806
Iteration: 6, Func. Count: 26, Neg. LLF: 148.9796503170816
Iteration: 7, Func. Count: 30, Neg. LLF: 148.97962312199718
Iteration: 8, Func. Count: 33, Neg. LLF: 148.9796231645035
Optimization terminated successfully (Exit mode 0)
Current function value: 148.97962312199718
Iterations: 8
Function evaluations: 33
Gradient evaluations: 8
Iteration: 1, Func. Count: 6, Neg. LLF: 189.64314954832096
Iteration: 2, Func. Count: 13, Neg. LLF: 149.65984855971462
Iteration: 3, Func. Count: 18, Neg. LLF: 149.65817317490706
Iteration: 4, Func. Count: 23, Neg. LLF: 149.6573630240729
Iteration: 5, Func. Count: 28, Neg. LLF: 149.65720274504864
Iteration: 6, Func. Count: 33, Neg. LLF: 149.65707364018792
Iteration: 7, Func. Count: 38, Neg. LLF: 149.65693151034137
Iteration: 8, Func. Count: 43, Neg. LLF: 149.65646455127245
Iteration: 9, Func. Count: 48, Neg. LLF: 149.6553532792467
Iteration: 10, Func. Count: 53, Neg. LLF: 149.65243835110218
Iteration: 11, Func. Count: 58, Neg. LLF: 149.64569055133614
Iteration: 12, Func. Count: 63, Neg. LLF: 149.63281436365813
Iteration: 13, Func. Count: 68, Neg. LLF: 149.61366274351627
Iteration: 14, Func. Count: 73, Neg. LLF: 149.60807038341568
Iteration: 15, Func. Count: 78, Neg. LLF: 149.60023188793144
Iteration: 16, Func. Count: 83, Neg. LLF: 149.59790540549312
Iteration: 17, Func. Count: 88, Neg. LLF: 149.596592426693
Iteration: 18, Func. Count: 93, Neg. LLF: 149.5965338791568
Iteration: 19, Func. Count: 98, Neg. LLF: 149.59653218804348
Iteration: 20, Func. Count: 102, Neg. LLF: 149.59653218906462
Optimization terminated successfully (Exit mode 0)
Current function value: 149.59653218804348
Iterations: 20
Function evaluations: 102
Gradient evaluations: 20
Iteration: 1, Func. Count: 7, Neg. LLF: 182.45988006881606
Iteration: 2, Func. Count: 15, Neg. LLF: 149.67418982430874
Iteration: 3, Func. Count: 21, Neg. LLF: 149.67329389023473
Iteration: 4, Func. Count: 27, Neg. LLF: 149.6718160526941
Iteration: 5, Func. Count: 33, Neg. LLF: 149.66758369432696
Iteration: 6, Func. Count: 39, Neg. LLF: 149.6599713344174
Iteration: 7, Func. Count: 45, Neg. LLF: 149.65813117078648
Iteration: 8, Func. Count: 51, Neg. LLF: 149.65660003944294
Iteration: 9, Func. Count: 57, Neg. LLF: 149.6565434104832
Iteration: 10, Func. Count: 63, Neg. LLF: 149.65625388859237
Iteration: 11, Func. Count: 69, Neg. LLF: 149.6548256690742
Iteration: 12, Func. Count: 75, Neg. LLF: 149.64808558549265
Iteration: 13, Func. Count: 81, Neg. LLF: 149.62321109082367
Iteration: 14, Func. Count: 87, Neg. LLF: 149.6006370273413
Iteration: 15, Func. Count: 93, Neg. LLF: 149.59955976535502
Iteration: 16, Func. Count: 99, Neg. LLF: 149.59744612329666
Iteration: 17, Func. Count: 105, Neg. LLF: 149.5967719531824
Iteration: 18, Func. Count: 111, Neg. LLF: 149.5965432138049
Iteration: 19, Func. Count: 117, Neg. LLF: 149.59653248574645
Iteration: 20, Func. Count: 122, Neg. LLF: 149.59653248783914
Optimization terminated successfully (Exit mode 0)
Current function value: 149.59653248574645
Iterations: 20
Function evaluations: 122
Gradient evaluations: 20
Iteration: 1, Func. Count: 8, Neg. LLF: 418.6553276811758
Iteration: 2, Func. Count: 17, Neg. LLF: 149.2769575458503
Iteration: 3, Func. Count: 24, Neg. LLF: 149.2442833649824
Iteration: 4, Func. Count: 31, Neg. LLF: 149.11895138887823
Iteration: 5, Func. Count: 38, Neg. LLF: 149.02641728343121
Iteration: 6, Func. Count: 45, Neg. LLF: 149.02221398302706
Iteration: 7, Func. Count: 52, Neg. LLF: 149.02099599748894
Iteration: 8, Func. Count: 59, Neg. LLF: 149.0207622151632
Iteration: 9, Func. Count: 66, Neg. LLF: 149.0207453268281
Iteration: 10, Func. Count: 73, Neg. LLF: 149.02073717924563
Iteration: 11, Func. Count: 80, Neg. LLF: 149.02072791633316
Iteration: 12, Func. Count: 87, Neg. LLF: 149.0207271892829
Optimization terminated successfully (Exit mode 0)
Current function value: 149.0207271892829
Iterations: 12
Function evaluations: 87
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 443.7569398114365
Iteration: 2, Func. Count: 19, Neg. LLF: 149.19595807741848
Iteration: 3, Func. Count: 27, Neg. LLF: 149.14184118123018
Iteration: 4, Func. Count: 35, Neg. LLF: 149.07622607658217
Iteration: 5, Func. Count: 43, Neg. LLF: 149.00575400371946
Iteration: 6, Func. Count: 51, Neg. LLF: 149.00099154872032
Iteration: 7, Func. Count: 59, Neg. LLF: 148.99727584977367
Iteration: 8, Func. Count: 67, Neg. LLF: 148.99717153446772
Iteration: 9, Func. Count: 75, Neg. LLF: 148.99715030692718
Iteration: 10, Func. Count: 82, Neg. LLF: 148.99715030678271
Optimization terminated successfully (Exit mode 0)
Current function value: 148.99715030692718
Iterations: 10
Function evaluations: 82
Gradient evaluations: 10
Iteration: 1, Func. Count: 6, Neg. LLF: 158.19057126210643
Iteration: 2, Func. Count: 12, Neg. LLF: 149.53844829140291
Iteration: 3, Func. Count: 18, Neg. LLF: 145.85246160659668
Iteration: 4, Func. Count: 23, Neg. LLF: 145.65919877858565
Iteration: 5, Func. Count: 28, Neg. LLF: 145.6555742878494
Iteration: 6, Func. Count: 33, Neg. LLF: 145.64629860438782
Iteration: 7, Func. Count: 38, Neg. LLF: 145.64601740034684
Iteration: 8, Func. Count: 43, Neg. LLF: 145.64601412439487
Iteration: 9, Func. Count: 47, Neg. LLF: 145.64601413690946
Optimization terminated successfully (Exit mode 0)
Current function value: 145.64601412439487
Iterations: 9
Function evaluations: 47
Gradient evaluations: 9
Iteration: 1, Func. Count: 7, Neg. LLF: 189.6817660666196
Iteration: 2, Func. Count: 15, Neg. LLF: 149.66249603428022
Iteration: 3, Func. Count: 21, Neg. LLF: 149.65945324507732
Iteration: 4, Func. Count: 27, Neg. LLF: 149.6571465521665
Iteration: 5, Func. Count: 33, Neg. LLF: 149.65702050492735
Iteration: 6, Func. Count: 39, Neg. LLF: 149.6568575798698
Iteration: 7, Func. Count: 45, Neg. LLF: 149.6567288390973
Iteration: 8, Func. Count: 51, Neg. LLF: 149.65611476472696
Iteration: 9, Func. Count: 57, Neg. LLF: 149.65477660527088
Iteration: 10, Func. Count: 63, Neg. LLF: 149.65108038401735
Iteration: 11, Func. Count: 69, Neg. LLF: 149.64275741010408
Iteration: 12, Func. Count: 75, Neg. LLF: 149.62822330917095
Iteration: 13, Func. Count: 81, Neg. LLF: 149.61295153191114
Iteration: 14, Func. Count: 87, Neg. LLF: 149.60879778879092
Iteration: 15, Func. Count: 93, Neg. LLF: 149.59748660328233
Iteration: 16, Func. Count: 99, Neg. LLF: 149.59662744608764
Iteration: 17, Func. Count: 105, Neg. LLF: 149.59653337100897
Iteration: 18, Func. Count: 111, Neg. LLF: 149.59653218965252
Iteration: 19, Func. Count: 116, Neg. LLF: 149.59653219067224
Optimization terminated successfully (Exit mode 0)
Current function value: 149.59653218965252
Iterations: 19
Function evaluations: 116
Gradient evaluations: 19
Iteration: 1, Func. Count: 8, Neg. LLF: 182.29353559662982
Iteration: 2, Func. Count: 17, Neg. LLF: 149.67591173215857
Iteration: 3, Func. Count: 24, Neg. LLF: 149.67543118079323
Iteration: 4, Func. Count: 32, Neg. LLF: 149.6729336698468
Iteration: 5, Func. Count: 39, Neg. LLF: 149.66837391893858
Iteration: 6, Func. Count: 46, Neg. LLF: 149.6557888987883
Iteration: 7, Func. Count: 53, Neg. LLF: 149.65561722352433
Iteration: 8, Func. Count: 60, Neg. LLF: 149.65535573180105
Iteration: 9, Func. Count: 67, Neg. LLF: 149.65525386141607
Iteration: 10, Func. Count: 74, Neg. LLF: 149.6545851215077
Iteration: 11, Func. Count: 81, Neg. LLF: 149.65146400922544
Iteration: 12, Func. Count: 88, Neg. LLF: 149.64602377079916
Iteration: 13, Func. Count: 95, Neg. LLF: 149.63348120419363
Iteration: 14, Func. Count: 102, Neg. LLF: 149.61726712125923
Iteration: 15, Func. Count: 109, Neg. LLF: 149.6107623734433
Iteration: 16, Func. Count: 116, Neg. LLF: 149.60052340317026
Iteration: 17, Func. Count: 123, Neg. LLF: 149.59655369443118
Iteration: 18, Func. Count: 130, Neg. LLF: 149.59653228667213
Iteration: 19, Func. Count: 136, Neg. LLF: 149.59653228874714
Optimization terminated successfully (Exit mode 0)
Current function value: 149.59653228667213
Iterations: 19
Function evaluations: 136
Gradient evaluations: 19
Iteration: 1, Func. Count: 9, Neg. LLF: 176.25934941629654
Iteration: 2, Func. Count: 19, Neg. LLF: 149.67408379099433
Iteration: 3, Func. Count: 27, Neg. LLF: 149.67408702824142
Iteration: 4, Func. Count: 36, Neg. LLF: 149.6717201599185
Iteration: 5, Func. Count: 44, Neg. LLF: 149.67077336997156
Iteration: 6, Func. Count: 52, Neg. LLF: 149.66978276623644
Iteration: 7, Func. Count: 60, Neg. LLF: 149.66970873268312
Iteration: 8, Func. Count: 68, Neg. LLF: 149.66952900246736
Iteration: 9, Func. Count: 76, Neg. LLF: 149.6693893920169
Iteration: 10, Func. Count: 84, Neg. LLF: 149.6693629983407
Iteration: 11, Func. Count: 92, Neg. LLF: 149.6693488290214
Iteration: 12, Func. Count: 100, Neg. LLF: 149.66933690642497
Iteration: 13, Func. Count: 108, Neg. LLF: 149.66926963158429
Iteration: 14, Func. Count: 116, Neg. LLF: 149.66908636296034
Iteration: 15, Func. Count: 124, Neg. LLF: 149.6683832849427
Iteration: 16, Func. Count: 132, Neg. LLF: 149.6671596643469
Iteration: 17, Func. Count: 140, Neg. LLF: 149.6720783852048
Iteration: 18, Func. Count: 149, Neg. LLF: 149.8937235579184
Iteration: 19, Func. Count: 158, Neg. LLF: 150.173782683828
Iteration: 20, Func. Count: 167, Neg. LLF: 150.01025526391422
Iteration: 21, Func. Count: 176, Neg. LLF: 149.88519885504266
Iteration: 22, Func. Count: 185, Neg. LLF: 149.7977473343961
Iteration: 23, Func. Count: 194, Neg. LLF: 149.73548685550293
Iteration: 24, Func. Count: 203, Neg. LLF: 149.6712437469177
Iteration: 25, Func. Count: 212, Neg. LLF: 149.57639849422927
Iteration: 26, Func. Count: 220, Neg. LLF: 149.26978014212585
Iteration: 27, Func. Count: 228, Neg. LLF: 149.22463073664028
Iteration: 28, Func. Count: 237, Neg. LLF: 149.0692630117082
Iteration: 29, Func. Count: 245, Neg. LLF: 149.00921821042456
Iteration: 30, Func. Count: 253, Neg. LLF: 149.00893809696933
Iteration: 31, Func. Count: 261, Neg. LLF: 149.00893594113785
Iteration: 32, Func. Count: 269, Neg. LLF: 149.0089333241616
Iteration: 33, Func. Count: 277, Neg. LLF: 149.00893197752265
Optimization terminated successfully (Exit mode 0)
Current function value: 149.00893296228801
Iterations: 33
Function evaluations: 279
Gradient evaluations: 33
Iteration: 1, Func. Count: 10, Neg. LLF: 171.31064047001715
Iteration: 2, Func. Count: 21, Neg. LLF: 149.64222223603664
Iteration: 3, Func. Count: 30, Neg. LLF: 149.6397162757864
Iteration: 4, Func. Count: 39, Neg. LLF: 149.63705777249695
Iteration: 5, Func. Count: 48, Neg. LLF: 149.63376878491863
Iteration: 6, Func. Count: 57, Neg. LLF: 149.63213293389092
Iteration: 7, Func. Count: 66, Neg. LLF: 149.6314754408649
Iteration: 8, Func. Count: 75, Neg. LLF: 149.6308041945377
Iteration: 9, Func. Count: 84, Neg. LLF: 149.62984736390183
Iteration: 10, Func. Count: 93, Neg. LLF: 149.62589487041302
Iteration: 11, Func. Count: 102, Neg. LLF: 149.61135535690912
Iteration: 12, Func. Count: 111, Neg. LLF: 150.8612519597127
Iteration: 13, Func. Count: 121, Neg. LLF: 150.54118016119605
Iteration: 14, Func. Count: 131, Neg. LLF: 150.36200354341057
Iteration: 15, Func. Count: 141, Neg. LLF: 149.90277535507167
Iteration: 16, Func. Count: 151, Neg. LLF: 235.96498267299927
Iteration: 17, Func. Count: 162, Neg. LLF: 161.5944031396895
Iteration: 18, Func. Count: 173, Neg. LLF: 287.71551795521884
Iteration: 19, Func. Count: 184, Neg. LLF: 149.45428374677002
Iteration: 20, Func. Count: 193, Neg. LLF: 149.4268425329106
Iteration: 21, Func. Count: 202, Neg. LLF: 149.19965723254492
Iteration: 22, Func. Count: 211, Neg. LLF: 149.03493944447186
Iteration: 23, Func. Count: 220, Neg. LLF: 149.02259448325808
Iteration: 24, Func. Count: 230, Neg. LLF: 148.9971894577397
Iteration: 25, Func. Count: 239, Neg. LLF: 148.997152731941
Iteration: 26, Func. Count: 248, Neg. LLF: 148.99715028462373
Iteration: 27, Func. Count: 256, Neg. LLF: 148.99715028460602
Optimization terminated successfully (Exit mode 0)
Current function value: 148.99715028462373
Iterations: 28
Function evaluations: 256
Gradient evaluations: 27
Iteration: 1, Func. Count: 7, Neg. LLF: 159.17470374340394
Iteration: 2, Func. Count: 14, Neg. LLF: 151.43008133824534
Iteration: 3, Func. Count: 21, Neg. LLF: 145.93500348972324
Iteration: 4, Func. Count: 27, Neg. LLF: 145.7266995234626
Iteration: 5, Func. Count: 33, Neg. LLF: 145.67592218564363
Iteration: 6, Func. Count: 39, Neg. LLF: 145.65045478665155
Iteration: 7, Func. Count: 45, Neg. LLF: 145.64657411317776
Iteration: 8, Func. Count: 51, Neg. LLF: 145.64628245744683
Iteration: 9, Func. Count: 57, Neg. LLF: 145.6460124462039
Iteration: 10, Func. Count: 63, Neg. LLF: 145.64601172934402
Optimization terminated successfully (Exit mode 0)
Current function value: 145.64601172934402
Iterations: 10
Function evaluations: 63
Gradient evaluations: 10
Iteration: 1, Func. Count: 8, Neg. LLF: 189.6893785135227
Iteration: 2, Func. Count: 17, Neg. LLF: 149.6606069902208
Iteration: 3, Func. Count: 24, Neg. LLF: 149.65971908198705
Iteration: 4, Func. Count: 32, Neg. LLF: 149.6572614095303
Iteration: 5, Func. Count: 39, Neg. LLF: 149.65706417970839
Iteration: 6, Func. Count: 46, Neg. LLF: 149.65697224538823
Iteration: 7, Func. Count: 53, Neg. LLF: 149.6563780196634
Iteration: 8, Func. Count: 60, Neg. LLF: 149.65440613198365
Iteration: 9, Func. Count: 67, Neg. LLF: 149.6504524422637
Iteration: 10, Func. Count: 74, Neg. LLF: 149.64064896541726
Iteration: 11, Func. Count: 81, Neg. LLF: 149.62538946770823
Iteration: 12, Func. Count: 88, Neg. LLF: 149.61295597295927
Iteration: 13, Func. Count: 95, Neg. LLF: 149.60857293225618
Iteration: 14, Func. Count: 102, Neg. LLF: 149.59711887745297
Iteration: 15, Func. Count: 109, Neg. LLF: 149.59653469933033
Iteration: 16, Func. Count: 116, Neg. LLF: 149.59653219141737
Iteration: 17, Func. Count: 122, Neg. LLF: 149.59653219244365
Optimization terminated successfully (Exit mode 0)
Current function value: 149.59653219141737
Iterations: 17
Function evaluations: 122
Gradient evaluations: 17
Iteration: 1, Func. Count: 9, Neg. LLF: 182.33835729445818
Iteration: 2, Func. Count: 19, Neg. LLF: 149.67503748578713
Iteration: 3, Func. Count: 27, Neg. LLF: 149.67479232924546
Iteration: 4, Func. Count: 36, Neg. LLF: 149.67272400727566
Iteration: 5, Func. Count: 44, Neg. LLF: 149.66756497199893
Iteration: 6, Func. Count: 52, Neg. LLF: 149.65597687165797
Iteration: 7, Func. Count: 60, Neg. LLF: 149.65582044323986
Iteration: 8, Func. Count: 68, Neg. LLF: 149.65550763206744
Iteration: 9, Func. Count: 76, Neg. LLF: 149.6553992283859
Iteration: 10, Func. Count: 84, Neg. LLF: 149.65468823110075
Iteration: 11, Func. Count: 92, Neg. LLF: 149.6508218894963
Iteration: 12, Func. Count: 100, Neg. LLF: 149.64172734319484
Iteration: 13, Func. Count: 108, Neg. LLF: 149.62734311332912
Iteration: 14, Func. Count: 116, Neg. LLF: 149.61201043117381
Iteration: 15, Func. Count: 124, Neg. LLF: 149.60889916572708
Iteration: 16, Func. Count: 132, Neg. LLF: 149.59901696698557
Iteration: 17, Func. Count: 140, Neg. LLF: 149.59654288238204
Iteration: 18, Func. Count: 148, Neg. LLF: 149.59653223639862
Iteration: 19, Func. Count: 155, Neg. LLF: 149.5965322384701
Optimization terminated successfully (Exit mode 0)
Current function value: 149.59653223639862
Iterations: 19
Function evaluations: 155
Gradient evaluations: 19
Iteration: 1, Func. Count: 10, Neg. LLF: 176.08928974324022
Iteration: 2, Func. Count: 21, Neg. LLF: 149.673663860924
Iteration: 3, Func. Count: 30, Neg. LLF: 149.6739156038224
Iteration: 4, Func. Count: 40, Neg. LLF: 149.67175474155817
Iteration: 5, Func. Count: 49, Neg. LLF: 149.67161189068523
Iteration: 6, Func. Count: 58, Neg. LLF: 149.67151888738653
Iteration: 7, Func. Count: 67, Neg. LLF: 149.67138381969832
Iteration: 8, Func. Count: 76, Neg. LLF: 149.67098845356705
Iteration: 9, Func. Count: 85, Neg. LLF: 149.66997792633478
Iteration: 10, Func. Count: 94, Neg. LLF: 149.66946049293324
Iteration: 11, Func. Count: 103, Neg. LLF: 149.66944474979437
Iteration: 12, Func. Count: 112, Neg. LLF: 149.669355770016
Iteration: 13, Func. Count: 121, Neg. LLF: 149.66882338203104
Iteration: 14, Func. Count: 130, Neg. LLF: 149.66377332140752
Iteration: 15, Func. Count: 139, Neg. LLF: 149.288920993845
Iteration: 16, Func. Count: 148, Neg. LLF: 156.74835760810006
Iteration: 17, Func. Count: 158, Neg. LLF: 149.09299500954214
Iteration: 18, Func. Count: 167, Neg. LLF: 149.08206521113755
Iteration: 19, Func. Count: 177, Neg. LLF: 149.02268483610916
Iteration: 20, Func. Count: 186, Neg. LLF: 149.02107791711043
Iteration: 21, Func. Count: 195, Neg. LLF: 149.02092647002743
Iteration: 22, Func. Count: 204, Neg. LLF: 149.82007960690765
Optimization terminated successfully (Exit mode 0)
Current function value: 149.02092550997207
Iterations: 23
Function evaluations: 207
Gradient evaluations: 22
Iteration: 1, Func. Count: 11, Neg. LLF: 171.24737684050405
Iteration: 2, Func. Count: 23, Neg. LLF: 149.6398779969224
Iteration: 3, Func. Count: 33, Neg. LLF: 149.63738860452435
Iteration: 4, Func. Count: 43, Neg. LLF: 149.6346589387698
Iteration: 5, Func. Count: 53, Neg. LLF: 149.63262624828303
Iteration: 6, Func. Count: 63, Neg. LLF: 149.63197320142714
Iteration: 7, Func. Count: 73, Neg. LLF: 149.6315153321378
Iteration: 8, Func. Count: 83, Neg. LLF: 149.63016714809865
Iteration: 9, Func. Count: 93, Neg. LLF: 149.62693684438256
Iteration: 10, Func. Count: 103, Neg. LLF: 149.61234647908702
Iteration: 11, Func. Count: 113, Neg. LLF: 150.74506189369473
Iteration: 12, Func. Count: 124, Neg. LLF: 150.4238970767713
Iteration: 13, Func. Count: 135, Neg. LLF: 150.26707644155186
Iteration: 14, Func. Count: 146, Neg. LLF: 149.94931310673533
Iteration: 15, Func. Count: 157, Neg. LLF: 169.80711681668757
Iteration: 16, Func. Count: 170, Neg. LLF: 162.36887268097158
Iteration: 17, Func. Count: 182, Neg. LLF: 184.14113029614396
Iteration: 18, Func. Count: 194, Neg. LLF: 149.47878923222893
Iteration: 19, Func. Count: 204, Neg. LLF: 149.46975149643595
Iteration: 20, Func. Count: 214, Neg. LLF: 149.455898511344
Iteration: 21, Func. Count: 224, Neg. LLF: 149.41571172392537
Iteration: 22, Func. Count: 234, Neg. LLF: 149.3675578541274
Iteration: 23, Func. Count: 244, Neg. LLF: 149.1500536990794
Iteration: 24, Func. Count: 254, Neg. LLF: 149.45971362562685
Iteration: 25, Func. Count: 265, Neg. LLF: 149.42793319408048
Iteration: 26, Func. Count: 276, Neg. LLF: 149.01182679831336
Iteration: 27, Func. Count: 286, Neg. LLF: 149.00416843018567
Iteration: 28, Func. Count: 296, Neg. LLF: 148.99881168287902
Iteration: 29, Func. Count: 306, Neg. LLF: 148.99745012507339
Iteration: 30, Func. Count: 316, Neg. LLF: 148.99715086714485
Iteration: 31, Func. Count: 326, Neg. LLF: 148.99715030228174
Optimization terminated successfully (Exit mode 0)
Current function value: 148.99715030228174
Iterations: 32
Function evaluations: 326
Gradient evaluations: 31
Iteration: 1, Func. Count: 8, Neg. LLF: 151.25591197691958
Iteration: 2, Func. Count: 15, Neg. LLF: 151.61283700883416
Iteration: 3, Func. Count: 23, Neg. LLF: 145.7967031692473
Iteration: 4, Func. Count: 30, Neg. LLF: 145.73795403582028
Iteration: 5, Func. Count: 37, Neg. LLF: 145.6539794024785
Iteration: 6, Func. Count: 44, Neg. LLF: 145.64630521489138
Iteration: 7, Func. Count: 51, Neg. LLF: 145.64601540201505
Iteration: 8, Func. Count: 58, Neg. LLF: 145.65147030933142
Iteration: 9, Func. Count: 67, Neg. LLF: 145.64601126068763
Iteration: 10, Func. Count: 73, Neg. LLF: 145.64601144322734
Optimization terminated successfully (Exit mode 0)
Current function value: 145.64601126068763
Iterations: 10
Function evaluations: 73
Gradient evaluations: 10
Iteration: 1, Func. Count: 9, Neg. LLF: 189.69236319809403
Iteration: 2, Func. Count: 19, Neg. LLF: 149.6588578988399
Iteration: 3, Func. Count: 27, Neg. LLF: 149.65928113427915
Iteration: 4, Func. Count: 36, Neg. LLF: 149.65742708122954
Iteration: 5, Func. Count: 44, Neg. LLF: 149.65714552870787
Iteration: 6, Func. Count: 52, Neg. LLF: 149.65650122011297
Iteration: 7, Func. Count: 60, Neg. LLF: 149.65572628906637
Iteration: 8, Func. Count: 68, Neg. LLF: 149.6529441912535
Iteration: 9, Func. Count: 76, Neg. LLF: 149.64666844991277
Iteration: 10, Func. Count: 84, Neg. LLF: 149.63409593661217
Iteration: 11, Func. Count: 92, Neg. LLF: 149.61812548462353
Iteration: 12, Func. Count: 100, Neg. LLF: 149.61294955759377
Iteration: 13, Func. Count: 108, Neg. LLF: 149.59985108699698
Iteration: 14, Func. Count: 116, Neg. LLF: 149.5965508987514
Iteration: 15, Func. Count: 124, Neg. LLF: 149.59653220612856
Iteration: 16, Func. Count: 131, Neg. LLF: 149.5965322071674
Optimization terminated successfully (Exit mode 0)
Current function value: 149.59653220612856
Iterations: 16
Function evaluations: 131
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 182.10247196696744
Iteration: 2, Func. Count: 21, Neg. LLF: 149.67486673158672
Iteration: 3, Func. Count: 30, Neg. LLF: 149.67469555253342
Iteration: 4, Func. Count: 40, Neg. LLF: 149.6736015609175
Iteration: 5, Func. Count: 49, Neg. LLF: 149.6695135298481
Iteration: 6, Func. Count: 58, Neg. LLF: 149.65715609956112
Iteration: 7, Func. Count: 67, Neg. LLF: 149.65609177531317
Iteration: 8, Func. Count: 76, Neg. LLF: 149.6542593804077
Iteration: 9, Func. Count: 85, Neg. LLF: 149.6541899772059
Iteration: 10, Func. Count: 94, Neg. LLF: 149.6537817445117
Iteration: 11, Func. Count: 103, Neg. LLF: 149.65172706914876
Iteration: 12, Func. Count: 112, Neg. LLF: 149.6422117549561
Iteration: 13, Func. Count: 121, Neg. LLF: 149.61131883167866
Iteration: 14, Func. Count: 130, Neg. LLF: 149.59654397312923
Iteration: 15, Func. Count: 139, Neg. LLF: 149.59653961146728
Iteration: 16, Func. Count: 148, Neg. LLF: 149.59653222151104
Iteration: 17, Func. Count: 156, Neg. LLF: 149.596532223575
Optimization terminated successfully (Exit mode 0)
Current function value: 149.59653222151104
Iterations: 17
Function evaluations: 156
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 176.14090795721495
Iteration: 2, Func. Count: 23, Neg. LLF: 149.67221630162334
Iteration: 3, Func. Count: 33, Neg. LLF: 149.67252570112822
Iteration: 4, Func. Count: 44, Neg. LLF: 149.67155929823656
Iteration: 5, Func. Count: 54, Neg. LLF: 149.670710010159
Iteration: 6, Func. Count: 64, Neg. LLF: 149.66957967212338
Iteration: 7, Func. Count: 74, Neg. LLF: 149.66956024623488
Iteration: 8, Func. Count: 84, Neg. LLF: 149.66946254417408
Iteration: 9, Func. Count: 94, Neg. LLF: 149.66927939761248
Iteration: 10, Func. Count: 104, Neg. LLF: 149.6685131321689
Iteration: 11, Func. Count: 114, Neg. LLF: 149.66177206943848
Iteration: 12, Func. Count: 124, Neg. LLF: 152.38735091281012
Iteration: 13, Func. Count: 135, Neg. LLF: 151.7876147929978
Iteration: 14, Func. Count: 146, Neg. LLF: 152.22671521501897
Iteration: 15, Func. Count: 158, Neg. LLF: 166.9719798864102
Iteration: 16, Func. Count: 171, Neg. LLF: 149.64463146140335
Iteration: 17, Func. Count: 182, Neg. LLF: 149.63098805745705
Iteration: 18, Func. Count: 192, Neg. LLF: 149.62789429532256
Iteration: 19, Func. Count: 202, Neg. LLF: 149.62656500826267
Iteration: 20, Func. Count: 212, Neg. LLF: 149.61758332925334
Iteration: 21, Func. Count: 222, Neg. LLF: 149.53402990630426
Iteration: 22, Func. Count: 232, Neg. LLF: 149.08999749209116
Iteration: 23, Func. Count: 242, Neg. LLF: 149.25080345126932
Iteration: 24, Func. Count: 253, Neg. LLF: 149.06695912325242
Iteration: 25, Func. Count: 263, Neg. LLF: 149.05399251920952
Iteration: 26, Func. Count: 273, Neg. LLF: 149.0330485861978
Iteration: 27, Func. Count: 283, Neg. LLF: 149.0215078947459
Iteration: 28, Func. Count: 293, Neg. LLF: 149.02047022287306
Iteration: 29, Func. Count: 303, Neg. LLF: 149.02016990453043
Iteration: 30, Func. Count: 313, Neg. LLF: 149.02022251225566
Optimization terminated successfully (Exit mode 0)
Current function value: 149.02016904698002
Iterations: 31
Function evaluations: 314
Gradient evaluations: 30
Iteration: 1, Func. Count: 12, Neg. LLF: 170.88331061156956
Iteration: 2, Func. Count: 25, Neg. LLF: 149.64126093789676
Iteration: 3, Func. Count: 36, Neg. LLF: 149.63785091025915
Iteration: 4, Func. Count: 47, Neg. LLF: 149.6342190205842
Iteration: 5, Func. Count: 58, Neg. LLF: 149.6323204490655
Iteration: 6, Func. Count: 69, Neg. LLF: 149.63191417562865
Iteration: 7, Func. Count: 80, Neg. LLF: 149.63122898860047
Iteration: 8, Func. Count: 91, Neg. LLF: 149.6297578626203
Iteration: 9, Func. Count: 102, Neg. LLF: 149.62448951755897
Iteration: 10, Func. Count: 113, Neg. LLF: 149.60193890804942
Iteration: 11, Func. Count: 124, Neg. LLF: 152.14421575161433
Iteration: 12, Func. Count: 136, Neg. LLF: 151.56881040477685
Iteration: 13, Func. Count: 148, Neg. LLF: 151.25530176258786
Iteration: 14, Func. Count: 160, Neg. LLF: 150.93931753547093
Iteration: 15, Func. Count: 172, Neg. LLF: 150.60714683995033
Iteration: 16, Func. Count: 184, Neg. LLF: 150.1957503117317
Iteration: 17, Func. Count: 196, Neg. LLF: 149.8739815820964
Iteration: 18, Func. Count: 208, Neg. LLF: 149.5684893202579
Iteration: 19, Func. Count: 220, Neg. LLF: 149.38102989675966
Iteration: 20, Func. Count: 231, Neg. LLF: 149.19546705994517
Iteration: 21, Func. Count: 242, Neg. LLF: 149.81942605978386
Iteration: 22, Func. Count: 254, Neg. LLF: 149.0010111392228
Iteration: 23, Func. Count: 265, Neg. LLF: 148.99745092700715
Iteration: 24, Func. Count: 276, Neg. LLF: 148.99716455969167
Iteration: 25, Func. Count: 287, Neg. LLF: 148.99715035082284
Iteration: 26, Func. Count: 297, Neg. LLF: 148.99715035079058
Optimization terminated successfully (Exit mode 0)
Current function value: 148.99715035082284
Iterations: 26
Function evaluations: 297
Gradient evaluations: 26
Iteration: 1, Func. Count: 9, Neg. LLF: 151.02467634162647
Iteration: 2, Func. Count: 17, Neg. LLF: 151.7799621711185
Iteration: 3, Func. Count: 26, Neg. LLF: 145.79755126626264
Iteration: 4, Func. Count: 34, Neg. LLF: 145.7387347308517
Iteration: 5, Func. Count: 42, Neg. LLF: 145.65401693150122
Iteration: 6, Func. Count: 50, Neg. LLF: 145.6463068740419
Iteration: 7, Func. Count: 58, Neg. LLF: 145.64601536876108
Iteration: 8, Func. Count: 66, Neg. LLF: 145.6515082921639
Iteration: 9, Func. Count: 76, Neg. LLF: 145.64601126043772
Iteration: 10, Func. Count: 83, Neg. LLF: 145.646011695277
Optimization terminated successfully (Exit mode 0)
Current function value: 145.64601126043772
Iterations: 10
Function evaluations: 83
Gradient evaluations: 10
Iteration: 1, Func. Count: 10, Neg. LLF: 189.69190116729214
Iteration: 2, Func. Count: 21, Neg. LLF: 149.6580816221171
Iteration: 3, Func. Count: 30, Neg. LLF: 149.65838775202397
Iteration: 4, Func. Count: 40, Neg. LLF: 149.65752468144865
Iteration: 5, Func. Count: 49, Neg. LLF: 149.65726057174535
Iteration: 6, Func. Count: 58, Neg. LLF: 149.65594868013616
Iteration: 7, Func. Count: 67, Neg. LLF: 149.6496806529884
Iteration: 8, Func. Count: 76, Neg. LLF: 149.62560473768997
Iteration: 9, Func. Count: 85, Neg. LLF: 149.59766792525028
Iteration: 10, Func. Count: 94, Neg. LLF: 149.59744627416723
Iteration: 11, Func. Count: 103, Neg. LLF: 149.59670661102362
Iteration: 12, Func. Count: 112, Neg. LLF: 149.59653224617418
Iteration: 13, Func. Count: 120, Neg. LLF: 149.59653224717783
Optimization terminated successfully (Exit mode 0)
Current function value: 149.59653224617418
Iterations: 13
Function evaluations: 120
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 182.20194372159352
Iteration: 2, Func. Count: 23, Neg. LLF: 149.67422812450485
Iteration: 3, Func. Count: 33, Neg. LLF: 149.67371094316556
Iteration: 4, Func. Count: 43, Neg. LLF: 149.6723987257294
Iteration: 5, Func. Count: 53, Neg. LLF: 149.65967519878365
Iteration: 6, Func. Count: 63, Neg. LLF: 149.657350971476
Iteration: 7, Func. Count: 73, Neg. LLF: 149.65497712912142
Iteration: 8, Func. Count: 83, Neg. LLF: 149.6548480170781
Iteration: 9, Func. Count: 93, Neg. LLF: 149.65469952369398
Iteration: 10, Func. Count: 103, Neg. LLF: 149.6543708721904
Iteration: 11, Func. Count: 113, Neg. LLF: 149.6534714694977
Iteration: 12, Func. Count: 123, Neg. LLF: 149.6512564133876
Iteration: 13, Func. Count: 133, Neg. LLF: 149.64596063574427
Iteration: 14, Func. Count: 143, Neg. LLF: 149.63526134534771
Iteration: 15, Func. Count: 153, Neg. LLF: 149.6166176311047
Iteration: 16, Func. Count: 163, Neg. LLF: 149.60413493651757
Iteration: 17, Func. Count: 173, Neg. LLF: 149.59900765036895
Iteration: 18, Func. Count: 183, Neg. LLF: 149.59755435095835
Iteration: 19, Func. Count: 193, Neg. LLF: 149.5967411343975
Iteration: 20, Func. Count: 203, Neg. LLF: 149.5965449466779
Iteration: 21, Func. Count: 213, Neg. LLF: 149.59653240657988
Iteration: 22, Func. Count: 222, Neg. LLF: 149.59653240861155
Optimization terminated successfully (Exit mode 0)
Current function value: 149.59653240657988
Iterations: 22
Function evaluations: 222
Gradient evaluations: 22
Iteration: 1, Func. Count: 12, Neg. LLF: 175.89618032458637
Iteration: 2, Func. Count: 25, Neg. LLF: 149.67251897382522
Iteration: 3, Func. Count: 36, Neg. LLF: 149.67219208369937
Iteration: 4, Func. Count: 47, Neg. LLF: 149.67168691728693
Iteration: 5, Func. Count: 58, Neg. LLF: 149.6716060447212
Iteration: 6, Func. Count: 69, Neg. LLF: 149.67146610322897
Iteration: 7, Func. Count: 80, Neg. LLF: 149.6716072486328
Iteration: 8, Func. Count: 92, Neg. LLF: 149.67091780970804
Iteration: 9, Func. Count: 103, Neg. LLF: 149.67010935918879
Iteration: 10, Func. Count: 114, Neg. LLF: 149.66945131095434
Iteration: 11, Func. Count: 125, Neg. LLF: 149.66942157255585
Iteration: 12, Func. Count: 136, Neg. LLF: 149.66937133936455
Iteration: 13, Func. Count: 147, Neg. LLF: 149.66924600337433
Iteration: 14, Func. Count: 158, Neg. LLF: 149.66885317158756
Iteration: 15, Func. Count: 169, Neg. LLF: 149.66748008980014
Iteration: 16, Func. Count: 180, Neg. LLF: 149.66765489471027
Iteration: 17, Func. Count: 192, Neg. LLF: 149.66519698392054
Iteration: 18, Func. Count: 204, Neg. LLF: 149.70037034265704
Iteration: 19, Func. Count: 216, Neg. LLF: 150.17752040680884
Iteration: 20, Func. Count: 228, Neg. LLF: 150.05640679716987
Iteration: 21, Func. Count: 240, Neg. LLF: 149.90984652088994
Iteration: 22, Func. Count: 252, Neg. LLF: 149.74098922638066
Iteration: 23, Func. Count: 264, Neg. LLF: 149.57904411482966
Iteration: 24, Func. Count: 275, Neg. LLF: 149.52965277974926
Iteration: 25, Func. Count: 286, Neg. LLF: 150.4096426119303
Iteration: 26, Func. Count: 298, Neg. LLF: 158.22397350289688
Iteration: 27, Func. Count: 310, Neg. LLF: 153.0558235661315
Iteration: 28, Func. Count: 322, Neg. LLF: 149.5350552693607
Iteration: 29, Func. Count: 334, Neg. LLF: 149.11479756086925
Iteration: 30, Func. Count: 346, Neg. LLF: 149.05668734818266
Iteration: 31, Func. Count: 357, Neg. LLF: 149.02469505873938
Iteration: 32, Func. Count: 368, Neg. LLF: 149.02185248375235
Iteration: 33, Func. Count: 379, Neg. LLF: 149.02079963440724
Iteration: 34, Func. Count: 390, Neg. LLF: 149.0207959325369
Iteration: 35, Func. Count: 402, Neg. LLF: 149.02072742302397
Iteration: 36, Func. Count: 412, Neg. LLF: 149.02072742323014
Optimization terminated successfully (Exit mode 0)
Current function value: 149.02072742302397
Iterations: 36
Function evaluations: 412
Gradient evaluations: 36
Iteration: 1, Func. Count: 13, Neg. LLF: 171.05383305296064
Iteration: 2, Func. Count: 27, Neg. LLF: 149.6352757901216
Iteration: 3, Func. Count: 39, Neg. LLF: 149.63434355215546
Iteration: 4, Func. Count: 51, Neg. LLF: 149.6329957601973
Iteration: 5, Func. Count: 63, Neg. LLF: 149.6320556565949
Iteration: 6, Func. Count: 75, Neg. LLF: 149.6317152158129
Iteration: 7, Func. Count: 87, Neg. LLF: 149.62952695690973
Iteration: 8, Func. Count: 99, Neg. LLF: 149.61513074801056
Iteration: 9, Func. Count: 111, Neg. LLF: 149.36411735450721
Iteration: 10, Func. Count: 123, Neg. LLF: 149.1419452863577
Iteration: 11, Func. Count: 135, Neg. LLF: 149.23929239698785
Iteration: 12, Func. Count: 148, Neg. LLF: 148.99721778467256
Iteration: 13, Func. Count: 160, Neg. LLF: 148.99715741700183
Iteration: 14, Func. Count: 172, Neg. LLF: 148.99715082148427
Iteration: 15, Func. Count: 184, Neg. LLF: 148.99715024255627
Optimization terminated successfully (Exit mode 0)
Current function value: 148.99715024255627
Iterations: 15
Function evaluations: 184
Gradient evaluations: 15
Iteration: 1, Func. Count: 6, Neg. LLF: 152.64663653051133
Iteration: 2, Func. Count: 11, Neg. LLF: 152.33527725978297
Iteration: 3, Func. Count: 17, Neg. LLF: 149.24132534615313
Iteration: 4, Func. Count: 22, Neg. LLF: 149.06858829571365
Iteration: 5, Func. Count: 27, Neg. LLF: 149.0461681267462
Iteration: 6, Func. Count: 32, Neg. LLF: 149.1904150062401
Iteration: 7, Func. Count: 38, Neg. LLF: 148.98015885788064
Iteration: 8, Func. Count: 43, Neg. LLF: 149.04900052799368
Iteration: 9, Func. Count: 49, Neg. LLF: 148.97366498714445
Iteration: 10, Func. Count: 54, Neg. LLF: 148.97330895162378
Iteration: 11, Func. Count: 58, Neg. LLF: 148.97330890760867
Optimization terminated successfully (Exit mode 0)
Current function value: 148.97330895162378
Iterations: 11
Function evaluations: 58
Gradient evaluations: 11
Iteration: 1, Func. Count: 7, Neg. LLF: 189.64927405876628
Iteration: 2, Func. Count: 15, Neg. LLF: 149.65908833191745
Iteration: 3, Func. Count: 21, Neg. LLF: 149.65817592150387
Iteration: 4, Func. Count: 27, Neg. LLF: 149.65742688399155
Iteration: 5, Func. Count: 33, Neg. LLF: 149.65723459127415
Iteration: 6, Func. Count: 39, Neg. LLF: 149.65706515510055
Iteration: 7, Func. Count: 45, Neg. LLF: 149.65693273438387
Iteration: 8, Func. Count: 51, Neg. LLF: 149.65649921184848
Iteration: 9, Func. Count: 57, Neg. LLF: 149.65550920196932
Iteration: 10, Func. Count: 63, Neg. LLF: 149.65286548588332
Iteration: 11, Func. Count: 69, Neg. LLF: 149.6468097048928
Iteration: 12, Func. Count: 75, Neg. LLF: 149.63490558938815
Iteration: 13, Func. Count: 81, Neg. LLF: 149.61558010363393
Iteration: 14, Func. Count: 87, Neg. LLF: 149.60674120700685
Iteration: 15, Func. Count: 93, Neg. LLF: 149.60047769860554
Iteration: 16, Func. Count: 99, Neg. LLF: 149.59824425961438
Iteration: 17, Func. Count: 105, Neg. LLF: 149.59674326541
Iteration: 18, Func. Count: 111, Neg. LLF: 149.59654338673815
Iteration: 19, Func. Count: 117, Neg. LLF: 149.5965322546717
Iteration: 20, Func. Count: 122, Neg. LLF: 149.59653225567297
Optimization terminated successfully (Exit mode 0)
Current function value: 149.5965322546717
Iterations: 20
Function evaluations: 122
Gradient evaluations: 20
Iteration: 1, Func. Count: 8, Neg. LLF: 182.29624562342997
Iteration: 2, Func. Count: 17, Neg. LLF: 149.67456363942222
Iteration: 3, Func. Count: 24, Neg. LLF: 149.67392813205035
Iteration: 4, Func. Count: 31, Neg. LLF: 149.67306265585597
Iteration: 5, Func. Count: 38, Neg. LLF: 149.67046095287847
Iteration: 6, Func. Count: 45, Neg. LLF: 149.6611632646391
Iteration: 7, Func. Count: 52, Neg. LLF: 149.65864676543842
Iteration: 8, Func. Count: 59, Neg. LLF: 149.65489756340438
Iteration: 9, Func. Count: 66, Neg. LLF: 149.6545292913211
Iteration: 10, Func. Count: 73, Neg. LLF: 149.65405022105404
Iteration: 11, Func. Count: 80, Neg. LLF: 149.65395582963123
Iteration: 12, Func. Count: 87, Neg. LLF: 149.65336553122205
Iteration: 13, Func. Count: 94, Neg. LLF: 149.6520458739839
Iteration: 14, Func. Count: 101, Neg. LLF: 149.64861659267186
Iteration: 15, Func. Count: 108, Neg. LLF: 149.64055869368457
Iteration: 16, Func. Count: 115, Neg. LLF: 149.62590602131817
Iteration: 17, Func. Count: 122, Neg. LLF: 149.61150821530882
Iteration: 18, Func. Count: 129, Neg. LLF: 149.60627939799716
Iteration: 19, Func. Count: 136, Neg. LLF: 149.59784781461377
Iteration: 20, Func. Count: 143, Neg. LLF: 149.5967666773375
Iteration: 21, Func. Count: 150, Neg. LLF: 149.5965373267918
Iteration: 22, Func. Count: 157, Neg. LLF: 149.5965323052277
Iteration: 23, Func. Count: 163, Neg. LLF: 149.5965323073142
Optimization terminated successfully (Exit mode 0)
Current function value: 149.5965323052277
Iterations: 23
Function evaluations: 163
Gradient evaluations: 23
Iteration: 1, Func. Count: 9, Neg. LLF: 421.00478434529055
Iteration: 2, Func. Count: 19, Neg. LLF: 149.27284169197162
Iteration: 3, Func. Count: 27, Neg. LLF: 149.23895276891756
Iteration: 4, Func. Count: 35, Neg. LLF: 149.11349502617392
Iteration: 5, Func. Count: 43, Neg. LLF: 149.03124470361453
Iteration: 6, Func. Count: 51, Neg. LLF: 149.02201422657285
Iteration: 7, Func. Count: 59, Neg. LLF: 149.021168409699
Iteration: 8, Func. Count: 67, Neg. LLF: 149.02095204064892
Iteration: 9, Func. Count: 75, Neg. LLF: 149.02080905759803
Iteration: 10, Func. Count: 83, Neg. LLF: 149.02072935769124
Iteration: 11, Func. Count: 91, Neg. LLF: 149.02072721121706
Iteration: 12, Func. Count: 98, Neg. LLF: 149.02072721120726
Optimization terminated successfully (Exit mode 0)
Current function value: 149.02072721121706
Iterations: 12
Function evaluations: 98
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 446.0892832844789
Iteration: 2, Func. Count: 21, Neg. LLF: 149.1935823944771
Iteration: 3, Func. Count: 30, Neg. LLF: 149.14124840337936
Iteration: 4, Func. Count: 39, Neg. LLF: 149.07567245021662
Iteration: 5, Func. Count: 48, Neg. LLF: 149.00348877257875
Iteration: 6, Func. Count: 57, Neg. LLF: 148.99993703810998
Iteration: 7, Func. Count: 66, Neg. LLF: 148.9971963557043
Iteration: 8, Func. Count: 75, Neg. LLF: 148.99715814289289
Iteration: 9, Func. Count: 84, Neg. LLF: 148.99715030349572
Iteration: 10, Func. Count: 92, Neg. LLF: 148.99715030343745
Optimization terminated successfully (Exit mode 0)
Current function value: 148.99715030349572
Iterations: 10
Function evaluations: 92
Gradient evaluations: 10
Iteration: 1, Func. Count: 7, Neg. LLF: 162.5322167888085
Iteration: 2, Func. Count: 14, Neg. LLF: 150.6138288707323
Iteration: 3, Func. Count: 21, Neg. LLF: 145.90143583452596
Iteration: 4, Func. Count: 27, Neg. LLF: 145.73310355882532
Iteration: 5, Func. Count: 33, Neg. LLF: 145.67074183967253
Iteration: 6, Func. Count: 39, Neg. LLF: 145.7587685663832
Iteration: 7, Func. Count: 46, Neg. LLF: 145.64867256408846
Iteration: 8, Func. Count: 52, Neg. LLF: 145.64616610683737
Iteration: 9, Func. Count: 58, Neg. LLF: 145.64335927095703
Iteration: 10, Func. Count: 64, Neg. LLF: 145.6425252479646
Iteration: 11, Func. Count: 70, Neg. LLF: 145.64236880464165
Iteration: 12, Func. Count: 76, Neg. LLF: 145.64236434747207
Iteration: 13, Func. Count: 81, Neg. LLF: 145.64236433477245
Optimization terminated successfully (Exit mode 0)
Current function value: 145.64236434747207
Iterations: 13
Function evaluations: 81
Gradient evaluations: 13
Iteration: 1, Func. Count: 8, Neg. LLF: 189.6894677472153
Iteration: 2, Func. Count: 17, Neg. LLF: 149.66105567839023
Iteration: 3, Func. Count: 24, Neg. LLF: 149.65960368334683
Iteration: 4, Func. Count: 31, Neg. LLF: 149.65722771089855
Iteration: 5, Func. Count: 38, Neg. LLF: 149.6571109523048
Iteration: 6, Func. Count: 45, Neg. LLF: 149.65691306091117
Iteration: 7, Func. Count: 52, Neg. LLF: 149.6567796068562
Iteration: 8, Func. Count: 59, Neg. LLF: 149.6560685507482
Iteration: 9, Func. Count: 66, Neg. LLF: 149.65454424509105
Iteration: 10, Func. Count: 73, Neg. LLF: 149.650376044102
Iteration: 11, Func. Count: 80, Neg. LLF: 149.6410838973951
Iteration: 12, Func. Count: 87, Neg. LLF: 149.62591727433852
Iteration: 13, Func. Count: 94, Neg. LLF: 149.6128456163915
Iteration: 14, Func. Count: 101, Neg. LLF: 149.6083025760067
Iteration: 15, Func. Count: 108, Neg. LLF: 149.59699472391708
Iteration: 16, Func. Count: 115, Neg. LLF: 149.59656287462192
Iteration: 17, Func. Count: 122, Neg. LLF: 149.59653234709623
Iteration: 18, Func. Count: 128, Neg. LLF: 149.5965323480964
Optimization terminated successfully (Exit mode 0)
Current function value: 149.59653234709623
Iterations: 18
Function evaluations: 128
Gradient evaluations: 18
Iteration: 1, Func. Count: 9, Neg. LLF: 182.16143069958304
Iteration: 2, Func. Count: 19, Neg. LLF: 149.67597367518937
Iteration: 3, Func. Count: 27, Neg. LLF: 149.6756976277414
Iteration: 4, Func. Count: 36, Neg. LLF: 149.67362895155293
Iteration: 5, Func. Count: 44, Neg. LLF: 149.67057515562456
Iteration: 6, Func. Count: 52, Neg. LLF: 149.65500937273052
Iteration: 7, Func. Count: 60, Neg. LLF: 149.65474612928028
Iteration: 8, Func. Count: 68, Neg. LLF: 149.6544877849767
Iteration: 9, Func. Count: 76, Neg. LLF: 149.6543813866241
Iteration: 10, Func. Count: 84, Neg. LLF: 149.65370312806854
Iteration: 11, Func. Count: 92, Neg. LLF: 149.65110174604666
Iteration: 12, Func. Count: 100, Neg. LLF: 149.6462281887624
Iteration: 13, Func. Count: 108, Neg. LLF: 149.63486054681894
Iteration: 14, Func. Count: 116, Neg. LLF: 149.61890172339682
Iteration: 15, Func. Count: 124, Neg. LLF: 149.61082360444357
Iteration: 16, Func. Count: 132, Neg. LLF: 149.60349075700105
Iteration: 17, Func. Count: 140, Neg. LLF: 149.5965720121238
Iteration: 18, Func. Count: 148, Neg. LLF: 149.5965325615241
Iteration: 19, Func. Count: 155, Neg. LLF: 149.5965325636104
Optimization terminated successfully (Exit mode 0)
Current function value: 149.5965325615241
Iterations: 19
Function evaluations: 155
Gradient evaluations: 19
Iteration: 1, Func. Count: 10, Neg. LLF: 176.0677968067513
Iteration: 2, Func. Count: 21, Neg. LLF: 149.6743043459938
Iteration: 3, Func. Count: 30, Neg. LLF: 149.6740112166588
Iteration: 4, Func. Count: 40, Neg. LLF: 149.67139288415154
Iteration: 5, Func. Count: 49, Neg. LLF: 149.67019130345864
Iteration: 6, Func. Count: 58, Neg. LLF: 149.66979485086387
Iteration: 7, Func. Count: 67, Neg. LLF: 149.66961871189983
Iteration: 8, Func. Count: 76, Neg. LLF: 149.66960205297275
Iteration: 9, Func. Count: 85, Neg. LLF: 149.66949402268904
Iteration: 10, Func. Count: 94, Neg. LLF: 149.66878525373656
Iteration: 11, Func. Count: 103, Neg. LLF: 149.66000072346185
Iteration: 12, Func. Count: 112, Neg. LLF: 149.5149083783016
Iteration: 13, Func. Count: 121, Neg. LLF: 149.1132140256856
Iteration: 14, Func. Count: 130, Neg. LLF: 149.6297578440762
Iteration: 15, Func. Count: 143, Neg. LLF: 149.03100044420242
Iteration: 16, Func. Count: 152, Neg. LLF: 149.0193416013196
Iteration: 17, Func. Count: 161, Neg. LLF: 149.0140548479198
Iteration: 18, Func. Count: 170, Neg. LLF: 149.00334520385778
Iteration: 19, Func. Count: 179, Neg. LLF: 149.0340981474327
Iteration: 20, Func. Count: 189, Neg. LLF: 148.99669894987986
Iteration: 21, Func. Count: 199, Neg. LLF: 148.9927858378419
Iteration: 22, Func. Count: 208, Neg. LLF: 148.99228469630293
Iteration: 23, Func. Count: 217, Neg. LLF: 148.99189163578436
Iteration: 24, Func. Count: 226, Neg. LLF: 148.99185640202893
Iteration: 25, Func. Count: 234, Neg. LLF: 148.99185640275397
Optimization terminated successfully (Exit mode 0)
Current function value: 148.99185640202893
Iterations: 25
Function evaluations: 234
Gradient evaluations: 25
Iteration: 1, Func. Count: 11, Neg. LLF: 171.06325567266728
Iteration: 2, Func. Count: 23, Neg. LLF: 149.64370526771197
Iteration: 3, Func. Count: 33, Neg. LLF: 149.63928412466478
Iteration: 4, Func. Count: 43, Neg. LLF: 149.634949172888
Iteration: 5, Func. Count: 53, Neg. LLF: 149.63265519864024
Iteration: 6, Func. Count: 63, Neg. LLF: 149.63199114371062
Iteration: 7, Func. Count: 73, Neg. LLF: 149.6315878146744
Iteration: 8, Func. Count: 83, Neg. LLF: 149.63013923179372
Iteration: 9, Func. Count: 93, Neg. LLF: 149.62682473311216
Iteration: 10, Func. Count: 103, Neg. LLF: 149.61127965904436
Iteration: 11, Func. Count: 113, Neg. LLF: 150.60592211884122
Iteration: 12, Func. Count: 124, Neg. LLF: 150.31083220788747
Iteration: 13, Func. Count: 135, Neg. LLF: 150.17397464527443
Iteration: 14, Func. Count: 146, Neg. LLF: 149.9716854506471
Iteration: 15, Func. Count: 157, Neg. LLF: 154.1595081301807
Iteration: 16, Func. Count: 169, Neg. LLF: 170.54562936727982
Iteration: 17, Func. Count: 181, Neg. LLF: 156.7852688456952
Iteration: 18, Func. Count: 192, Neg. LLF: 149.49038414119605
Iteration: 19, Func. Count: 202, Neg. LLF: 149.48591664362712
Iteration: 20, Func. Count: 212, Neg. LLF: 149.46230240106752
Iteration: 21, Func. Count: 222, Neg. LLF: 149.2786609394652
Iteration: 22, Func. Count: 232, Neg. LLF: 149.09794445043875
Iteration: 23, Func. Count: 242, Neg. LLF: 150.59542900924086
Iteration: 24, Func. Count: 254, Neg. LLF: 149.1476875207992
Iteration: 25, Func. Count: 265, Neg. LLF: 149.02111367899167
Iteration: 26, Func. Count: 275, Neg. LLF: 149.0170643505615
Iteration: 27, Func. Count: 285, Neg. LLF: 149.01513194805833
Iteration: 28, Func. Count: 295, Neg. LLF: 149.00948811141296
Iteration: 29, Func. Count: 305, Neg. LLF: 149.0034203453672
Iteration: 30, Func. Count: 315, Neg. LLF: 149.00243106849598
Iteration: 31, Func. Count: 325, Neg. LLF: 148.99834818836004
Iteration: 32, Func. Count: 335, Neg. LLF: 148.99346887111852
Iteration: 33, Func. Count: 345, Neg. LLF: 148.9918677297452
Iteration: 34, Func. Count: 355, Neg. LLF: 148.99186241252994
Iteration: 35, Func. Count: 365, Neg. LLF: 1397.3674455902064
Iteration: 36, Func. Count: 379, Neg. LLF: 148.99186213885815
Iteration: 37, Func. Count: 390, Neg. LLF: 148.99185666802748
Iteration: 38, Func. Count: 400, Neg. LLF: 148.99185612682007
Optimization terminated successfully (Exit mode 0)
Current function value: 148.99185612682007
Iterations: 40
Function evaluations: 400
Gradient evaluations: 38
Iteration: 1, Func. Count: 8, Neg. LLF: 159.8635865439439
Iteration: 2, Func. Count: 16, Neg. LLF: 153.7880911098317
Iteration: 3, Func. Count: 24, Neg. LLF: 145.9908796342414
Iteration: 4, Func. Count: 31, Neg. LLF: 145.79855212066738
Iteration: 5, Func. Count: 38, Neg. LLF: 145.66978996938545
Iteration: 6, Func. Count: 45, Neg. LLF: 145.64941828284324
Iteration: 7, Func. Count: 52, Neg. LLF: 145.644643863265
Iteration: 8, Func. Count: 59, Neg. LLF: 145.64248721925244
Iteration: 9, Func. Count: 66, Neg. LLF: 145.64351718108648
Iteration: 10, Func. Count: 74, Neg. LLF: 145.63997195932572
Iteration: 11, Func. Count: 82, Neg. LLF: 145.63749271470564
Iteration: 12, Func. Count: 89, Neg. LLF: 145.6365455353381
Iteration: 13, Func. Count: 96, Neg. LLF: 145.63639904654082
Iteration: 14, Func. Count: 103, Neg. LLF: 145.636396516871
Iteration: 15, Func. Count: 109, Neg. LLF: 145.63639652980243
Optimization terminated successfully (Exit mode 0)
Current function value: 145.636396516871
Iterations: 15
Function evaluations: 109
Gradient evaluations: 15
Iteration: 1, Func. Count: 9, Neg. LLF: 189.6960986367347
Iteration: 2, Func. Count: 19, Neg. LLF: 149.65953818124774
Iteration: 3, Func. Count: 27, Neg. LLF: 149.6594944406354
Iteration: 4, Func. Count: 36, Neg. LLF: 149.6573260555077
Iteration: 5, Func. Count: 44, Neg. LLF: 149.65710447075975
Iteration: 6, Func. Count: 52, Neg. LLF: 149.65699428537616
Iteration: 7, Func. Count: 60, Neg. LLF: 149.65628883479
Iteration: 8, Func. Count: 68, Neg. LLF: 149.65429030511888
Iteration: 9, Func. Count: 76, Neg. LLF: 149.64986316633178
Iteration: 10, Func. Count: 84, Neg. LLF: 149.63966330562332
Iteration: 11, Func. Count: 92, Neg. LLF: 149.62422642448533
Iteration: 12, Func. Count: 100, Neg. LLF: 149.61317441987222
Iteration: 13, Func. Count: 108, Neg. LLF: 149.608147158966
Iteration: 14, Func. Count: 116, Neg. LLF: 149.59668250427288
Iteration: 15, Func. Count: 124, Neg. LLF: 149.59653280667038
Iteration: 16, Func. Count: 132, Neg. LLF: 149.5965321875903
Optimization terminated successfully (Exit mode 0)
Current function value: 149.5965321875903
Iterations: 16
Function evaluations: 132
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 182.17751328440238
Iteration: 2, Func. Count: 21, Neg. LLF: 149.6752185534319
Iteration: 3, Func. Count: 30, Neg. LLF: 149.67511568645116
Iteration: 4, Func. Count: 40, Neg. LLF: 149.67352323981524
Iteration: 5, Func. Count: 49, Neg. LLF: 149.67019633046456
Iteration: 6, Func. Count: 58, Neg. LLF: 149.65524334328293
Iteration: 7, Func. Count: 67, Neg. LLF: 149.65487634711522
Iteration: 8, Func. Count: 76, Neg. LLF: 149.65451083964686
Iteration: 9, Func. Count: 85, Neg. LLF: 149.65441999082984
Iteration: 10, Func. Count: 94, Neg. LLF: 149.65381793371765
Iteration: 11, Func. Count: 103, Neg. LLF: 149.65046186260525
Iteration: 12, Func. Count: 112, Neg. LLF: 149.6368490206437
Iteration: 13, Func. Count: 121, Neg. LLF: 149.62111213575335
Iteration: 14, Func. Count: 130, Neg. LLF: 149.6082510222624
Iteration: 15, Func. Count: 139, Neg. LLF: 149.6053798229977
Iteration: 16, Func. Count: 148, Neg. LLF: 149.5973830568384
Iteration: 17, Func. Count: 157, Neg. LLF: 149.59653507143946
Iteration: 18, Func. Count: 166, Neg. LLF: 149.596532393117
Iteration: 19, Func. Count: 174, Neg. LLF: 149.59653239518374
Optimization terminated successfully (Exit mode 0)
Current function value: 149.596532393117
Iterations: 19
Function evaluations: 174
Gradient evaluations: 19
Iteration: 1, Func. Count: 11, Neg. LLF: 175.87452295355882
Iteration: 2, Func. Count: 23, Neg. LLF: 149.67354408556696
Iteration: 3, Func. Count: 33, Neg. LLF: 149.67322423212252
Iteration: 4, Func. Count: 44, Neg. LLF: 149.67048462873905
Iteration: 5, Func. Count: 54, Neg. LLF: 149.66970792495223
Iteration: 6, Func. Count: 64, Neg. LLF: 149.6696591804212
Iteration: 7, Func. Count: 74, Neg. LLF: 149.66964048634907
Iteration: 8, Func. Count: 84, Neg. LLF: 149.66951680857994
Iteration: 9, Func. Count: 94, Neg. LLF: 149.66900218682787
Iteration: 10, Func. Count: 104, Neg. LLF: 149.66716565883405
Iteration: 11, Func. Count: 114, Neg. LLF: 151.95759170633673
Iteration: 12, Func. Count: 125, Neg. LLF: 151.5085711960448
Iteration: 13, Func. Count: 136, Neg. LLF: 151.2889523224886
Iteration: 14, Func. Count: 147, Neg. LLF: 149.92647805941604
Iteration: 15, Func. Count: 158, Neg. LLF: 235.98650839305512
Iteration: 16, Func. Count: 171, Neg. LLF: 172.456984644311
Iteration: 17, Func. Count: 184, Neg. LLF: 149.61179766813152
Iteration: 18, Func. Count: 194, Neg. LLF: 149.62257463000915
Iteration: 19, Func. Count: 205, Neg. LLF: 149.5895719812544
Iteration: 20, Func. Count: 215, Neg. LLF: 149.58403314545177
Iteration: 21, Func. Count: 225, Neg. LLF: 149.57953914421566
Iteration: 22, Func. Count: 235, Neg. LLF: 149.5421201136607
Iteration: 23, Func. Count: 245, Neg. LLF: 149.38191202420015
Iteration: 24, Func. Count: 255, Neg. LLF: 149.29525731601365
Iteration: 25, Func. Count: 265, Neg. LLF: 149.22858485053592
Iteration: 26, Func. Count: 275, Neg. LLF: 149.13741421086044
Iteration: 27, Func. Count: 285, Neg. LLF: 149.10320141557204
Iteration: 28, Func. Count: 295, Neg. LLF: 149.0861440939492
Iteration: 29, Func. Count: 305, Neg. LLF: 149.08310234329647
Iteration: 30, Func. Count: 315, Neg. LLF: 149.0831002150793
Iteration: 31, Func. Count: 324, Neg. LLF: 149.08310021499076
Optimization terminated successfully (Exit mode 0)
Current function value: 149.0831002150793
Iterations: 32
Function evaluations: 324
Gradient evaluations: 31
Iteration: 1, Func. Count: 12, Neg. LLF: 170.97724054021847
Iteration: 2, Func. Count: 25, Neg. LLF: 149.64094601946394
Iteration: 3, Func. Count: 36, Neg. LLF: 149.6376357470297
Iteration: 4, Func. Count: 47, Neg. LLF: 149.6339501836433
Iteration: 5, Func. Count: 58, Neg. LLF: 149.63253409728998
Iteration: 6, Func. Count: 69, Neg. LLF: 149.63197263942638
Iteration: 7, Func. Count: 80, Neg. LLF: 149.63155443775366
Iteration: 8, Func. Count: 91, Neg. LLF: 149.62886015226866
Iteration: 9, Func. Count: 102, Neg. LLF: 149.62146477865988
Iteration: 10, Func. Count: 113, Neg. LLF: 149.5631192284905
Iteration: 11, Func. Count: 124, Neg. LLF: 150.4515834254569
Iteration: 12, Func. Count: 136, Neg. LLF: 149.7313553937006
Iteration: 13, Func. Count: 148, Neg. LLF: 149.25918043776767
Iteration: 14, Func. Count: 159, Neg. LLF: 149.18900877548228
Iteration: 15, Func. Count: 171, Neg. LLF: 149.37711232607444
Iteration: 16, Func. Count: 183, Neg. LLF: 149.00019931212475
Iteration: 17, Func. Count: 194, Neg. LLF: 148.99744031436066
Iteration: 18, Func. Count: 205, Neg. LLF: 148.99716945184318
Iteration: 19, Func. Count: 216, Neg. LLF: 148.99715030854833
Iteration: 20, Func. Count: 226, Neg. LLF: 148.99715030859787
Optimization terminated successfully (Exit mode 0)
Current function value: 148.99715030854833
Iterations: 20
Function evaluations: 226
Gradient evaluations: 20
Iteration: 1, Func. Count: 9, Neg. LLF: 156.622701392286
Iteration: 2, Func. Count: 18, Neg. LLF: 154.85054369686077
Iteration: 3, Func. Count: 27, Neg. LLF: 145.95787579184918
Iteration: 4, Func. Count: 35, Neg. LLF: 145.76331396682826
Iteration: 5, Func. Count: 43, Neg. LLF: 145.65544687962756
Iteration: 6, Func. Count: 51, Neg. LLF: 145.64972335464572
Iteration: 7, Func. Count: 59, Neg. LLF: 145.64237466692427
Iteration: 8, Func. Count: 67, Neg. LLF: 145.64000268551436
Iteration: 9, Func. Count: 75, Neg. LLF: 145.63765136304858
Iteration: 10, Func. Count: 83, Neg. LLF: 145.6374627249135
Iteration: 11, Func. Count: 92, Neg. LLF: 145.63687844830386
Iteration: 12, Func. Count: 101, Neg. LLF: 145.6363964889591
Iteration: 13, Func. Count: 108, Neg. LLF: 145.63639667446176
Optimization terminated successfully (Exit mode 0)
Current function value: 145.6363964889591
Iterations: 13
Function evaluations: 108
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 189.69872589358224
Iteration: 2, Func. Count: 21, Neg. LLF: 149.6582546742688
Iteration: 3, Func. Count: 30, Neg. LLF: 149.65862826751092
Iteration: 4, Func. Count: 40, Neg. LLF: 149.65746368120776
Iteration: 5, Func. Count: 49, Neg. LLF: 149.65716938104305
Iteration: 6, Func. Count: 58, Neg. LLF: 149.65606978928975
Iteration: 7, Func. Count: 67, Neg. LLF: 149.65495485307878
Iteration: 8, Func. Count: 76, Neg. LLF: 149.6511976338413
Iteration: 9, Func. Count: 85, Neg. LLF: 149.64310318393152
Iteration: 10, Func. Count: 94, Neg. LLF: 149.62897203102102
Iteration: 11, Func. Count: 103, Neg. LLF: 149.6154129376813
Iteration: 12, Func. Count: 112, Neg. LLF: 149.6114157947053
Iteration: 13, Func. Count: 121, Neg. LLF: 149.5991647820054
Iteration: 14, Func. Count: 130, Neg. LLF: 149.5965460173984
Iteration: 15, Func. Count: 139, Neg. LLF: 149.5965321980133
Iteration: 16, Func. Count: 147, Neg. LLF: 149.5965321990494
Optimization terminated successfully (Exit mode 0)
Current function value: 149.5965321980133
Iterations: 16
Function evaluations: 147
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 181.96777639534676
Iteration: 2, Func. Count: 23, Neg. LLF: 149.6750591466149
Iteration: 3, Func. Count: 33, Neg. LLF: 149.67498276582577
Iteration: 4, Func. Count: 44, Neg. LLF: 149.67420682256062
Iteration: 5, Func. Count: 54, Neg. LLF: 149.67168744430518
Iteration: 6, Func. Count: 64, Neg. LLF: 149.65587203907776
Iteration: 7, Func. Count: 74, Neg. LLF: 149.654493600436
Iteration: 8, Func. Count: 84, Neg. LLF: 149.65325602886844
Iteration: 9, Func. Count: 94, Neg. LLF: 149.65317844261315
Iteration: 10, Func. Count: 104, Neg. LLF: 149.65269583456262
Iteration: 11, Func. Count: 114, Neg. LLF: 149.65027799008342
Iteration: 12, Func. Count: 124, Neg. LLF: 149.6392745275185
Iteration: 13, Func. Count: 134, Neg. LLF: 149.60621009085162
Iteration: 14, Func. Count: 144, Neg. LLF: 149.59655719044153
Iteration: 15, Func. Count: 154, Neg. LLF: 149.59654759264924
Iteration: 16, Func. Count: 164, Neg. LLF: 149.59653298598855
Iteration: 17, Func. Count: 174, Neg. LLF: 149.59653222022558
Optimization terminated successfully (Exit mode 0)
Current function value: 149.59653222022558
Iterations: 17
Function evaluations: 174
Gradient evaluations: 17
Iteration: 1, Func. Count: 12, Neg. LLF: 175.93980512012274
Iteration: 2, Func. Count: 25, Neg. LLF: 149.6718811886955
Iteration: 3, Func. Count: 36, Neg. LLF: 149.67180286060375
Iteration: 4, Func. Count: 48, Neg. LLF: 149.6702123946342
Iteration: 5, Func. Count: 59, Neg. LLF: 149.66986363129587
Iteration: 6, Func. Count: 70, Neg. LLF: 149.66966049072468
Iteration: 7, Func. Count: 81, Neg. LLF: 149.6696416188057
Iteration: 8, Func. Count: 92, Neg. LLF: 149.6695720088595
Iteration: 9, Func. Count: 103, Neg. LLF: 149.66943218959165
Iteration: 10, Func. Count: 114, Neg. LLF: 149.6689119637847
Iteration: 11, Func. Count: 125, Neg. LLF: 149.66629706041405
Iteration: 12, Func. Count: 136, Neg. LLF: 151.32599669220335
Iteration: 13, Func. Count: 148, Neg. LLF: 151.21408677534868
Iteration: 14, Func. Count: 160, Neg. LLF: 150.93741053675762
Iteration: 15, Func. Count: 172, Neg. LLF: 149.79519804769322
Iteration: 16, Func. Count: 184, Neg. LLF: 149.96940636493306
Iteration: 17, Func. Count: 196, Neg. LLF: 149.97833529601715
Iteration: 18, Func. Count: 208, Neg. LLF: 149.63039017261377
Iteration: 19, Func. Count: 220, Neg. LLF: 149.590698904455
Iteration: 20, Func. Count: 231, Neg. LLF: 149.50179052854276
Iteration: 21, Func. Count: 242, Neg. LLF: 149.10926931964954
Iteration: 22, Func. Count: 253, Neg. LLF: 149.34201273291356
Iteration: 23, Func. Count: 265, Neg. LLF: 149.02155128658984
Iteration: 24, Func. Count: 276, Neg. LLF: 149.02102924297765
Iteration: 25, Func. Count: 287, Neg. LLF: 149.0205679536249
Iteration: 26, Func. Count: 298, Neg. LLF: 149.02018418116816
Iteration: 27, Func. Count: 309, Neg. LLF: 149.02005567308584
Iteration: 28, Func. Count: 320, Neg. LLF: 149.02004102660945
Iteration: 29, Func. Count: 331, Neg. LLF: 149.0200406245939
Optimization terminated successfully (Exit mode 0)
Current function value: 149.0200406245939
Iterations: 29
Function evaluations: 331
Gradient evaluations: 29
Iteration: 1, Func. Count: 13, Neg. LLF: 170.63164157794242
Iteration: 2, Func. Count: 27, Neg. LLF: 149.64240171204443
Iteration: 3, Func. Count: 39, Neg. LLF: 149.63848615778846
Iteration: 4, Func. Count: 51, Neg. LLF: 149.63426044026804
Iteration: 5, Func. Count: 63, Neg. LLF: 149.6325262584003
Iteration: 6, Func. Count: 75, Neg. LLF: 149.63193682802213
Iteration: 7, Func. Count: 87, Neg. LLF: 149.63145192549513
Iteration: 8, Func. Count: 99, Neg. LLF: 149.6302056290085
Iteration: 9, Func. Count: 111, Neg. LLF: 149.62690419778048
Iteration: 10, Func. Count: 123, Neg. LLF: 149.61252563774534
Iteration: 11, Func. Count: 135, Neg. LLF: 150.03225426016905
Iteration: 12, Func. Count: 148, Neg. LLF: 149.87984141575546
Iteration: 13, Func. Count: 161, Neg. LLF: 149.8004523476545
Iteration: 14, Func. Count: 174, Neg. LLF: 149.5137759455356
Iteration: 15, Func. Count: 186, Neg. LLF: 150.0518188461906
Iteration: 16, Func. Count: 199, Neg. LLF: 149.963280151761
Iteration: 17, Func. Count: 213, Neg. LLF: 149.20722130397976
Iteration: 18, Func. Count: 225, Neg. LLF: 149.1323849850455
Iteration: 19, Func. Count: 237, Neg. LLF: 149.02606849261858
Iteration: 20, Func. Count: 249, Neg. LLF: 149.02212997796946
Iteration: 21, Func. Count: 261, Neg. LLF: 149.0215057752414
Iteration: 22, Func. Count: 273, Neg. LLF: 149.02140551267658
Iteration: 23, Func. Count: 285, Neg. LLF: 149.0212143505053
Iteration: 24, Func. Count: 297, Neg. LLF: 149.02080332729946
Iteration: 25, Func. Count: 309, Neg. LLF: 149.01904061599808
Iteration: 26, Func. Count: 321, Neg. LLF: 149.015374970901
Iteration: 27, Func. Count: 333, Neg. LLF: 149.0151561435116
Iteration: 28, Func. Count: 345, Neg. LLF: 149.01443629599643
Iteration: 29, Func. Count: 357, Neg. LLF: 149.01216639421145
Iteration: 30, Func. Count: 369, Neg. LLF: 149.00405755491786
Iteration: 31, Func. Count: 381, Neg. LLF: 30458715.430427693
Iteration: 32, Func. Count: 396, Neg. LLF: 149.0059925891958
Iteration: 33, Func. Count: 409, Neg. LLF: 149.00226052145277
Iteration: 34, Func. Count: 422, Neg. LLF: 148.99204770999597
Iteration: 35, Func. Count: 434, Neg. LLF: 148.99188755820066
Iteration: 36, Func. Count: 446, Neg. LLF: 148.9918567765799
Iteration: 37, Func. Count: 458, Neg. LLF: 148.9918560607625
Optimization terminated successfully (Exit mode 0)
Current function value: 148.9918560607625
Iterations: 38
Function evaluations: 458
Gradient evaluations: 37
Iteration: 1, Func. Count: 10, Neg. LLF: 151.78787952074777
Iteration: 2, Func. Count: 19, Neg. LLF: 153.365585901385
Iteration: 3, Func. Count: 29, Neg. LLF: 145.83806051286538
Iteration: 4, Func. Count: 38, Neg. LLF: 145.77025099060523
Iteration: 5, Func. Count: 47, Neg. LLF: 147.04921652927376
Iteration: 6, Func. Count: 57, Neg. LLF: 150.73726225453115
Iteration: 7, Func. Count: 67, Neg. LLF: 145.8806718093713
Iteration: 8, Func. Count: 77, Neg. LLF: 145.64076497962984
Iteration: 9, Func. Count: 86, Neg. LLF: 145.63756153935805
Iteration: 10, Func. Count: 95, Neg. LLF: 145.6375799258859
Iteration: 11, Func. Count: 105, Neg. LLF: 145.63644951174578
Iteration: 12, Func. Count: 114, Neg. LLF: 145.63639658728465
Iteration: 13, Func. Count: 122, Neg. LLF: 145.6363970271939
Optimization terminated successfully (Exit mode 0)
Current function value: 145.63639658728465
Iterations: 13
Function evaluations: 122
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 189.69821216828834
Iteration: 2, Func. Count: 23, Neg. LLF: 149.65776264808932
Iteration: 3, Func. Count: 33, Neg. LLF: 149.65784518506754
Iteration: 4, Func. Count: 44, Neg. LLF: 149.65752709745047
Iteration: 5, Func. Count: 54, Neg. LLF: 149.65722674982942
Iteration: 6, Func. Count: 64, Neg. LLF: 149.655769516514
Iteration: 7, Func. Count: 74, Neg. LLF: 149.64905297718704
Iteration: 8, Func. Count: 84, Neg. LLF: 149.6254461026425
Iteration: 9, Func. Count: 94, Neg. LLF: 149.60667224051264
Iteration: 10, Func. Count: 104, Neg. LLF: 149.60370865301982
Iteration: 11, Func. Count: 114, Neg. LLF: 149.5989249958091
Iteration: 12, Func. Count: 124, Neg. LLF: 149.5965380534287
Iteration: 13, Func. Count: 134, Neg. LLF: 149.59653219120278
Iteration: 14, Func. Count: 143, Neg. LLF: 149.5965321922344
Optimization terminated successfully (Exit mode 0)
Current function value: 149.59653219120278
Iterations: 14
Function evaluations: 143
Gradient evaluations: 14
Iteration: 1, Func. Count: 12, Neg. LLF: 182.04961423730884
Iteration: 2, Func. Count: 24, Neg. LLF: 149.67450446689952
Iteration: 3, Func. Count: 35, Neg. LLF: 149.67408415099496
Iteration: 4, Func. Count: 46, Neg. LLF: 149.67257272098732
Iteration: 5, Func. Count: 57, Neg. LLF: 149.65791597016735
Iteration: 6, Func. Count: 68, Neg. LLF: 149.65635854544777
Iteration: 7, Func. Count: 79, Neg. LLF: 149.65610532602545
Iteration: 8, Func. Count: 90, Neg. LLF: 149.6558982164611
Iteration: 9, Func. Count: 101, Neg. LLF: 149.65525631949984
Iteration: 10, Func. Count: 112, Neg. LLF: 149.65373502854052
Iteration: 11, Func. Count: 123, Neg. LLF: 149.64955942485665
Iteration: 12, Func. Count: 134, Neg. LLF: 149.63967820705278
Iteration: 13, Func. Count: 145, Neg. LLF: 149.62421604548518
Iteration: 14, Func. Count: 156, Neg. LLF: 149.61533766404554
Iteration: 15, Func. Count: 167, Neg. LLF: 149.6068731342407
Iteration: 16, Func. Count: 178, Neg. LLF: 149.59659986861826
Iteration: 17, Func. Count: 189, Neg. LLF: 149.5965327219736
Iteration: 18, Func. Count: 200, Neg. LLF: 149.59653219299656
Optimization terminated successfully (Exit mode 0)
Current function value: 149.59653219299656
Iterations: 18
Function evaluations: 200
Gradient evaluations: 18
Iteration: 1, Func. Count: 13, Neg. LLF: 175.70657756256315
Iteration: 2, Func. Count: 26, Neg. LLF: 149.6726062932643
Iteration: 3, Func. Count: 38, Neg. LLF: 149.67156196926368
Iteration: 4, Func. Count: 50, Neg. LLF: 149.6702960453778
Iteration: 5, Func. Count: 62, Neg. LLF: 149.66982079090994
Iteration: 6, Func. Count: 74, Neg. LLF: 149.66967344642998
Iteration: 7, Func. Count: 86, Neg. LLF: 149.66965507294103
Iteration: 8, Func. Count: 98, Neg. LLF: 149.6695887408503
Iteration: 9, Func. Count: 110, Neg. LLF: 149.66944051253074
Iteration: 10, Func. Count: 122, Neg. LLF: 149.66889498026327
Iteration: 11, Func. Count: 134, Neg. LLF: 149.66484699933838
Iteration: 12, Func. Count: 146, Neg. LLF: 149.4023003056296
Iteration: 13, Func. Count: 158, Neg. LLF: 199.5670475655042
Iteration: 14, Func. Count: 172, Neg. LLF: 149.14043698108367
Iteration: 15, Func. Count: 184, Neg. LLF: 149.08214890391312
Iteration: 16, Func. Count: 196, Neg. LLF: 150.4539464007055
Iteration: 17, Func. Count: 210, Neg. LLF: 148.9977209623265
Iteration: 18, Func. Count: 222, Neg. LLF: 148.98100556908133
Iteration: 19, Func. Count: 234, Neg. LLF: 148.95943839111538
Iteration: 20, Func. Count: 246, Neg. LLF: 22053490.134284075
Iteration: 21, Func. Count: 261, Neg. LLF: 21880464.215784837
Iteration: 22, Func. Count: 275, Neg. LLF: 148.80796745544086
Iteration: 23, Func. Count: 287, Neg. LLF: 148.77130260937292
Iteration: 24, Func. Count: 299, Neg. LLF: 148.77058783752568
Iteration: 25, Func. Count: 311, Neg. LLF: 148.77052548770982
Iteration: 26, Func. Count: 322, Neg. LLF: 148.77052582235407
Optimization terminated successfully (Exit mode 0)
Current function value: 148.77052548770982
Iterations: 27
Function evaluations: 322
Gradient evaluations: 26
Iteration: 1, Func. Count: 14, Neg. LLF: 170.80139894377086
Iteration: 2, Func. Count: 29, Neg. LLF: 149.63603734645568
Iteration: 3, Func. Count: 42, Neg. LLF: 149.6346046489656
Iteration: 4, Func. Count: 55, Neg. LLF: 149.6329808605583
Iteration: 5, Func. Count: 68, Neg. LLF: 149.63224253673323
Iteration: 6, Func. Count: 81, Neg. LLF: 149.6317964739494
Iteration: 7, Func. Count: 94, Neg. LLF: 149.63087013893278
Iteration: 8, Func. Count: 107, Neg. LLF: 149.62747716728595
Iteration: 9, Func. Count: 120, Neg. LLF: 149.61544996121978
Iteration: 10, Func. Count: 133, Neg. LLF: 152.03867280650044
Iteration: 11, Func. Count: 147, Neg. LLF: 151.7893674783402
Iteration: 12, Func. Count: 161, Neg. LLF: 151.45175694764328
Iteration: 13, Func. Count: 175, Neg. LLF: 150.82671219902565
Iteration: 14, Func. Count: 189, Neg. LLF: 149.4832829463078
Iteration: 15, Func. Count: 202, Neg. LLF: 150.0343881059794
Iteration: 16, Func. Count: 216, Neg. LLF: 149.05970846900607
Iteration: 17, Func. Count: 229, Neg. LLF: 149.04354342102806
Iteration: 18, Func. Count: 242, Neg. LLF: 149.02403503033526
Iteration: 19, Func. Count: 255, Neg. LLF: 149.02414241966645
Iteration: 20, Func. Count: 269, Neg. LLF: 149.81780424614325
Iteration: 21, Func. Count: 284, Neg. LLF: 149.04682180288125
Iteration: 22, Func. Count: 298, Neg. LLF: 149.0226965151175
Iteration: 23, Func. Count: 311, Neg. LLF: 149.02090743890474
Iteration: 24, Func. Count: 324, Neg. LLF: 149.02086691608486
Iteration: 25, Func. Count: 337, Neg. LLF: 149.02078683307158
Iteration: 26, Func. Count: 350, Neg. LLF: 149.02076546065564
Iteration: 27, Func. Count: 363, Neg. LLF: 149.02074358444239
Iteration: 28, Func. Count: 376, Neg. LLF: 149.0207337807137
Iteration: 29, Func. Count: 389, Neg. LLF: 149.02073057990884
Iteration: 30, Func. Count: 402, Neg. LLF: 149.02072757725304
Iteration: 31, Func. Count: 414, Neg. LLF: 149.02072757804982
Optimization terminated successfully (Exit mode 0)
Current function value: 149.02072757725304
Iterations: 32
Function evaluations: 414
Gradient evaluations: 31
Iteration: 1, Func. Count: 7, Neg. LLF: 150.35055747204453
Iteration: 2, Func. Count: 13, Neg. LLF: 157.05665603271024
Iteration: 3, Func. Count: 20, Neg. LLF: 149.49430846955553
Iteration: 4, Func. Count: 26, Neg. LLF: 149.33487417225933
Iteration: 5, Func. Count: 32, Neg. LLF: 149.14171506357607
Iteration: 6, Func. Count: 38, Neg. LLF: 149.00729097035122
Iteration: 7, Func. Count: 44, Neg. LLF: 224.4678510438416
Iteration: 8, Func. Count: 52, Neg. LLF: 149.15726796351862
Iteration: 9, Func. Count: 59, Neg. LLF: 148.97354189190966
Iteration: 10, Func. Count: 65, Neg. LLF: 148.97331352258368
Iteration: 11, Func. Count: 71, Neg. LLF: 148.97330885940877
Iteration: 12, Func. Count: 76, Neg. LLF: 148.97330918066183
Optimization terminated successfully (Exit mode 0)
Current function value: 148.97330885940877
Iterations: 12
Function evaluations: 76
Gradient evaluations: 12
Iteration: 1, Func. Count: 8, Neg. LLF: 189.65177153746015
Iteration: 2, Func. Count: 17, Neg. LLF: 149.65788482546387
Iteration: 3, Func. Count: 24, Neg. LLF: 149.65791835974366
Iteration: 4, Func. Count: 32, Neg. LLF: 149.65764570581436
Iteration: 5, Func. Count: 39, Neg. LLF: 149.6573367114134
Iteration: 6, Func. Count: 46, Neg. LLF: 149.6567637716677
Iteration: 7, Func. Count: 53, Neg. LLF: 149.6560371412725
Iteration: 8, Func. Count: 60, Neg. LLF: 149.6534628683772
Iteration: 9, Func. Count: 67, Neg. LLF: 149.64760396623532
Iteration: 10, Func. Count: 74, Neg. LLF: 149.6355176084084
Iteration: 11, Func. Count: 81, Neg. LLF: 149.6198911359572
Iteration: 12, Func. Count: 88, Neg. LLF: 149.61372355202988
Iteration: 13, Func. Count: 95, Neg. LLF: 149.60085249026298
Iteration: 14, Func. Count: 102, Neg. LLF: 149.59655882120452
Iteration: 15, Func. Count: 109, Neg. LLF: 149.59653222463822
Iteration: 16, Func. Count: 115, Neg. LLF: 149.5965322256831
Optimization terminated successfully (Exit mode 0)
Current function value: 149.59653222463822
Iterations: 16
Function evaluations: 115
Gradient evaluations: 16
Iteration: 1, Func. Count: 9, Neg. LLF: 182.11970422274732
Iteration: 2, Func. Count: 19, Neg. LLF: 149.674341260951
Iteration: 3, Func. Count: 27, Neg. LLF: 149.67408174297225
Iteration: 4, Func. Count: 35, Neg. LLF: 149.67350954723062
Iteration: 5, Func. Count: 43, Neg. LLF: 149.66860290729642
Iteration: 6, Func. Count: 51, Neg. LLF: 149.65635340054908
Iteration: 7, Func. Count: 59, Neg. LLF: 149.65505754403324
Iteration: 8, Func. Count: 67, Neg. LLF: 149.65292425237791
Iteration: 9, Func. Count: 75, Neg. LLF: 149.65274684750574
Iteration: 10, Func. Count: 83, Neg. LLF: 149.6526019356984
Iteration: 11, Func. Count: 91, Neg. LLF: 149.652399922407
Iteration: 12, Func. Count: 99, Neg. LLF: 149.65154568076898
Iteration: 13, Func. Count: 107, Neg. LLF: 149.6497678225574
Iteration: 14, Func. Count: 115, Neg. LLF: 149.64489837975455
Iteration: 15, Func. Count: 123, Neg. LLF: 149.63515441585372
Iteration: 16, Func. Count: 131, Neg. LLF: 149.61861316334728
Iteration: 17, Func. Count: 139, Neg. LLF: 149.60700032529382
Iteration: 18, Func. Count: 147, Neg. LLF: 149.60151863919856
Iteration: 19, Func. Count: 155, Neg. LLF: 149.59787454452325
Iteration: 20, Func. Count: 163, Neg. LLF: 149.5968361552727
Iteration: 21, Func. Count: 171, Neg. LLF: 149.59654068268452
Iteration: 22, Func. Count: 179, Neg. LLF: 149.59653234587768
Iteration: 23, Func. Count: 186, Neg. LLF: 149.59653234791352
Optimization terminated successfully (Exit mode 0)
Current function value: 149.59653234587768
Iterations: 23
Function evaluations: 186
Gradient evaluations: 23
Iteration: 1, Func. Count: 10, Neg. LLF: 422.1225877910333
Iteration: 2, Func. Count: 21, Neg. LLF: 149.268511431276
Iteration: 3, Func. Count: 30, Neg. LLF: 149.23280930598713
Iteration: 4, Func. Count: 39, Neg. LLF: 149.07164563353044
Iteration: 5, Func. Count: 48, Neg. LLF: 149.03927667925734
Iteration: 6, Func. Count: 57, Neg. LLF: 149.022776010481
Iteration: 7, Func. Count: 66, Neg. LLF: 149.02174307577314
Iteration: 8, Func. Count: 75, Neg. LLF: 149.0208572238593
Iteration: 9, Func. Count: 84, Neg. LLF: 149.0207359046296
Iteration: 10, Func. Count: 93, Neg. LLF: 149.02072734506024
Iteration: 11, Func. Count: 101, Neg. LLF: 149.0207273450547
Optimization terminated successfully (Exit mode 0)
Current function value: 149.02072734506024
Iterations: 11
Function evaluations: 101
Gradient evaluations: 11
Iteration: 1, Func. Count: 11, Neg. LLF: 447.3713654882377
Iteration: 2, Func. Count: 23, Neg. LLF: 149.18901457276476
Iteration: 3, Func. Count: 33, Neg. LLF: 149.13950643598614
Iteration: 4, Func. Count: 43, Neg. LLF: 149.06884080742054
Iteration: 5, Func. Count: 53, Neg. LLF: 149.00273683389776
Iteration: 6, Func. Count: 63, Neg. LLF: 148.99749714814968
Iteration: 7, Func. Count: 73, Neg. LLF: 148.99718722013728
Iteration: 8, Func. Count: 83, Neg. LLF: 148.997152477216
Iteration: 9, Func. Count: 93, Neg. LLF: 148.9971502940111
Iteration: 10, Func. Count: 102, Neg. LLF: 148.99715029391706
Optimization terminated successfully (Exit mode 0)
Current function value: 148.9971502940111
Iterations: 10
Function evaluations: 102
Gradient evaluations: 10
Iteration: 1, Func. Count: 8, Neg. LLF: 153.19717514601314
Iteration: 2, Func. Count: 16, Neg. LLF: 156.47537446085374
Iteration: 3, Func. Count: 24, Neg. LLF: 146.04920633508485
Iteration: 4, Func. Count: 31, Neg. LLF: 145.81887424589786
Iteration: 5, Func. Count: 38, Neg. LLF: 145.74261708573047
Iteration: 6, Func. Count: 45, Neg. LLF: 145.6829669157061
Iteration: 7, Func. Count: 52, Neg. LLF: 145.64882128881092
Iteration: 8, Func. Count: 59, Neg. LLF: 145.64559698551983
Iteration: 9, Func. Count: 66, Neg. LLF: 145.64301607280913
Iteration: 10, Func. Count: 73, Neg. LLF: 145.64274264703542
Iteration: 11, Func. Count: 80, Neg. LLF: 145.6423889967979
Iteration: 12, Func. Count: 87, Neg. LLF: 145.64236687740052
Iteration: 13, Func. Count: 94, Neg. LLF: 145.64236431958318
Iteration: 14, Func. Count: 100, Neg. LLF: 145.64236430688425
Optimization terminated successfully (Exit mode 0)
Current function value: 145.64236431958318
Iterations: 14
Function evaluations: 100
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 189.69256586368667
Iteration: 2, Func. Count: 19, Neg. LLF: 149.6586900258261
Iteration: 3, Func. Count: 27, Neg. LLF: 149.65913187752398
Iteration: 4, Func. Count: 36, Neg. LLF: 149.65744931841863
Iteration: 5, Func. Count: 44, Neg. LLF: 149.65716564486726
Iteration: 6, Func. Count: 52, Neg. LLF: 149.65616819962185
Iteration: 7, Func. Count: 60, Neg. LLF: 149.6551552407088
Iteration: 8, Func. Count: 68, Neg. LLF: 149.6513327688765
Iteration: 9, Func. Count: 76, Neg. LLF: 149.64326274512857
Iteration: 10, Func. Count: 84, Neg. LLF: 149.62887557597958
Iteration: 11, Func. Count: 92, Neg. LLF: 149.61505116254165
Iteration: 12, Func. Count: 100, Neg. LLF: 149.61111199381054
Iteration: 13, Func. Count: 108, Neg. LLF: 149.5990126724196
Iteration: 14, Func. Count: 116, Neg. LLF: 149.59654480182337
Iteration: 15, Func. Count: 124, Neg. LLF: 149.59653219624542
Iteration: 16, Func. Count: 131, Neg. LLF: 149.5965321972805
Optimization terminated successfully (Exit mode 0)
Current function value: 149.59653219624542
Iterations: 16
Function evaluations: 131
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 181.96600363411758
Iteration: 2, Func. Count: 21, Neg. LLF: 149.67525375109582
Iteration: 3, Func. Count: 30, Neg. LLF: 149.6752168491916
Iteration: 4, Func. Count: 40, Neg. LLF: 149.67419613618603
Iteration: 5, Func. Count: 49, Neg. LLF: 149.6715007527098
Iteration: 6, Func. Count: 58, Neg. LLF: 149.65748092700943
Iteration: 7, Func. Count: 67, Neg. LLF: 149.65573164034177
Iteration: 8, Func. Count: 76, Neg. LLF: 149.65337414888148
Iteration: 9, Func. Count: 85, Neg. LLF: 149.6532933540429
Iteration: 10, Func. Count: 94, Neg. LLF: 149.65285918655752
Iteration: 11, Func. Count: 103, Neg. LLF: 149.65065345627005
Iteration: 12, Func. Count: 112, Neg. LLF: 149.64053560527066
Iteration: 13, Func. Count: 121, Neg. LLF: 149.60882373678777
Iteration: 14, Func. Count: 130, Neg. LLF: 149.5965402740365
Iteration: 15, Func. Count: 139, Neg. LLF: 149.59653713365415
Iteration: 16, Func. Count: 148, Neg. LLF: 149.5965326159495
Iteration: 17, Func. Count: 156, Neg. LLF: 149.59653261800744
Optimization terminated successfully (Exit mode 0)
Current function value: 149.5965326159495
Iterations: 17
Function evaluations: 156
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 176.1186467014273
Iteration: 2, Func. Count: 23, Neg. LLF: 149.67225094290632
Iteration: 3, Func. Count: 33, Neg. LLF: 149.67252506278834
Iteration: 4, Func. Count: 44, Neg. LLF: 149.6712609375642
Iteration: 5, Func. Count: 54, Neg. LLF: 149.66985062224828
Iteration: 6, Func. Count: 64, Neg. LLF: 149.6697233338847
Iteration: 7, Func. Count: 74, Neg. LLF: 149.66961969064178
Iteration: 8, Func. Count: 84, Neg. LLF: 149.6695839391934
Iteration: 9, Func. Count: 94, Neg. LLF: 149.66954165700992
Iteration: 10, Func. Count: 104, Neg. LLF: 149.66946414728898
Iteration: 11, Func. Count: 114, Neg. LLF: 149.6692232558712
Iteration: 12, Func. Count: 124, Neg. LLF: 149.66837106963266
Iteration: 13, Func. Count: 134, Neg. LLF: 149.66417284887882
Iteration: 14, Func. Count: 144, Neg. LLF: 149.68460247227972
Iteration: 15, Func. Count: 155, Neg. LLF: 150.458268781234
Iteration: 16, Func. Count: 166, Neg. LLF: 150.05878477344655
Iteration: 17, Func. Count: 177, Neg. LLF: 150.01687664698525
Iteration: 18, Func. Count: 188, Neg. LLF: 149.73640048775854
Iteration: 19, Func. Count: 199, Neg. LLF: 149.6679893632624
Iteration: 20, Func. Count: 210, Neg. LLF: 149.65215501718762
Iteration: 21, Func. Count: 221, Neg. LLF: 149.5459364306032
Iteration: 22, Func. Count: 231, Neg. LLF: 149.44629777231052
Iteration: 23, Func. Count: 241, Neg. LLF: 30690818.63913937
Iteration: 24, Func. Count: 253, Neg. LLF: 162.87681078923143
Iteration: 25, Func. Count: 264, Neg. LLF: 149.58029383200002
Iteration: 26, Func. Count: 275, Neg. LLF: 149.06816526214405
Iteration: 27, Func. Count: 286, Neg. LLF: 149.03334895401557
Iteration: 28, Func. Count: 296, Neg. LLF: 149.0256307537452
Iteration: 29, Func. Count: 306, Neg. LLF: 149.024231707526
Iteration: 30, Func. Count: 316, Neg. LLF: 149.0223598422265
Iteration: 31, Func. Count: 326, Neg. LLF: 149.02081587928978
Iteration: 32, Func. Count: 336, Neg. LLF: 149.01363587358657
Iteration: 33, Func. Count: 346, Neg. LLF: 30481138.72370834
Iteration: 34, Func. Count: 360, Neg. LLF: 149.0136733851506
Iteration: 35, Func. Count: 371, Neg. LLF: 149.01340567985523
Iteration: 36, Func. Count: 381, Neg. LLF: 149.01305719966933
Iteration: 37, Func. Count: 391, Neg. LLF: 149.0107554148603
Iteration: 38, Func. Count: 401, Neg. LLF: 149.0089381175811
Iteration: 39, Func. Count: 411, Neg. LLF: 149.82196254660678
Optimization terminated successfully (Exit mode 0)
Current function value: 149.00893811717245
Iterations: 41
Function evaluations: 416
Gradient evaluations: 39
Iteration: 1, Func. Count: 12, Neg. LLF: 170.70136074025908
Iteration: 2, Func. Count: 25, Neg. LLF: 149.64360740730777
Iteration: 3, Func. Count: 36, Neg. LLF: 149.63928782136017
Iteration: 4, Func. Count: 47, Neg. LLF: 149.63683303096684
Iteration: 5, Func. Count: 58, Neg. LLF: 149.63374729584092
Iteration: 6, Func. Count: 69, Neg. LLF: 149.6320182742222
Iteration: 7, Func. Count: 80, Neg. LLF: 149.63155542760265
Iteration: 8, Func. Count: 91, Neg. LLF: 149.63110712490874
Iteration: 9, Func. Count: 102, Neg. LLF: 149.62798124114462
Iteration: 10, Func. Count: 113, Neg. LLF: 149.6135146118755
Iteration: 11, Func. Count: 124, Neg. LLF: 150.08750600583576
Iteration: 12, Func. Count: 136, Neg. LLF: 152.5114654024368
Iteration: 13, Func. Count: 148, Neg. LLF: 152.15206384864078
Iteration: 14, Func. Count: 160, Neg. LLF: 152.2448745323766
Iteration: 15, Func. Count: 172, Neg. LLF: 150.1663603093703
Iteration: 16, Func. Count: 184, Neg. LLF: 151.95824051250784
Iteration: 17, Func. Count: 196, Neg. LLF: 149.55580126240295
Iteration: 18, Func. Count: 207, Neg. LLF: 149.53911047774585
Iteration: 19, Func. Count: 218, Neg. LLF: 149.40771614901573
Iteration: 20, Func. Count: 229, Neg. LLF: 149.80004707260701
Iteration: 21, Func. Count: 241, Neg. LLF: 149.04724325841005
Iteration: 22, Func. Count: 252, Neg. LLF: 149.2819834695129
Iteration: 23, Func. Count: 264, Neg. LLF: 148.99777925173578
Iteration: 24, Func. Count: 275, Neg. LLF: 148.99717134646633
Iteration: 25, Func. Count: 286, Neg. LLF: 148.9971513379857
Iteration: 26, Func. Count: 297, Neg. LLF: 148.99715029438025
Iteration: 27, Func. Count: 307, Neg. LLF: 148.99715029437513
Optimization terminated successfully (Exit mode 0)
Current function value: 148.99715029438025
Iterations: 27
Function evaluations: 307
Gradient evaluations: 27
Iteration: 1, Func. Count: 9, Neg. LLF: 151.54193107568867
Iteration: 2, Func. Count: 17, Neg. LLF: 153.81453966770326
Iteration: 3, Func. Count: 26, Neg. LLF: 145.8568894828837
Iteration: 4, Func. Count: 34, Neg. LLF: 145.77867924899513
Iteration: 5, Func. Count: 42, Neg. LLF: 147.81023757506986
Iteration: 6, Func. Count: 51, Neg. LLF: 148.0756107371563
Iteration: 7, Func. Count: 60, Neg. LLF: 145.96667873181667
Iteration: 8, Func. Count: 69, Neg. LLF: 145.63988538159668
Iteration: 9, Func. Count: 77, Neg. LLF: 145.63767992771864
Iteration: 10, Func. Count: 85, Neg. LLF: 145.639465095427
Iteration: 11, Func. Count: 94, Neg. LLF: 145.6364274150979
Iteration: 12, Func. Count: 102, Neg. LLF: 145.63639655917572
Iteration: 13, Func. Count: 109, Neg. LLF: 145.6363965719974
Optimization terminated successfully (Exit mode 0)
Current function value: 145.63639655917572
Iterations: 13
Function evaluations: 109
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 189.6988735121823
Iteration: 2, Func. Count: 21, Neg. LLF: 149.65798122570976
Iteration: 3, Func. Count: 30, Neg. LLF: 149.65823733442377
Iteration: 4, Func. Count: 40, Neg. LLF: 149.65749985138717
Iteration: 5, Func. Count: 49, Neg. LLF: 149.65721715812492
Iteration: 6, Func. Count: 58, Neg. LLF: 149.65585984278178
Iteration: 7, Func. Count: 67, Neg. LLF: 149.64978518264454
Iteration: 8, Func. Count: 76, Neg. LLF: 149.63381480171026
Iteration: 9, Func. Count: 85, Neg. LLF: 149.61933381574565
Iteration: 10, Func. Count: 94, Neg. LLF: 149.6097326372544
Iteration: 11, Func. Count: 103, Neg. LLF: 149.60678316923963
Iteration: 12, Func. Count: 112, Neg. LLF: 149.59807724485057
Iteration: 13, Func. Count: 121, Neg. LLF: 149.59653774060484
Iteration: 14, Func. Count: 130, Neg. LLF: 149.5965321927249
Iteration: 15, Func. Count: 138, Neg. LLF: 149.59653219375582
Optimization terminated successfully (Exit mode 0)
Current function value: 149.5965321927249
Iterations: 15
Function evaluations: 138
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 182.00616559054205
Iteration: 2, Func. Count: 22, Neg. LLF: 149.67477937655374
Iteration: 3, Func. Count: 32, Neg. LLF: 149.67452691503095
Iteration: 4, Func. Count: 42, Neg. LLF: 149.67363716887252
Iteration: 5, Func. Count: 52, Neg. LLF: 149.66848480494508
Iteration: 6, Func. Count: 62, Neg. LLF: 149.6607005347543
Iteration: 7, Func. Count: 72, Neg. LLF: 149.6592355237308
Iteration: 8, Func. Count: 82, Neg. LLF: 149.65617669255806
Iteration: 9, Func. Count: 92, Neg. LLF: 149.65601806145352
Iteration: 10, Func. Count: 102, Neg. LLF: 149.65563077006576
Iteration: 11, Func. Count: 112, Neg. LLF: 149.655087735319
Iteration: 12, Func. Count: 122, Neg. LLF: 149.65322608692878
Iteration: 13, Func. Count: 132, Neg. LLF: 149.64899149437855
Iteration: 14, Func. Count: 142, Neg. LLF: 149.6392793905331
Iteration: 15, Func. Count: 152, Neg. LLF: 149.62321419564955
Iteration: 16, Func. Count: 162, Neg. LLF: 149.6081519756979
Iteration: 17, Func. Count: 172, Neg. LLF: 149.60386658888024
Iteration: 18, Func. Count: 182, Neg. LLF: 149.5978042816402
Iteration: 19, Func. Count: 192, Neg. LLF: 149.59680284598903
Iteration: 20, Func. Count: 202, Neg. LLF: 149.59653486347906
Iteration: 21, Func. Count: 212, Neg. LLF: 149.59653223229506
Iteration: 22, Func. Count: 221, Neg. LLF: 149.59653223434526
Optimization terminated successfully (Exit mode 0)
Current function value: 149.59653223229506
Iterations: 22
Function evaluations: 221
Gradient evaluations: 22
Iteration: 1, Func. Count: 12, Neg. LLF: 175.9396433888044
Iteration: 2, Func. Count: 24, Neg. LLF: 149.67196373936167
Iteration: 3, Func. Count: 35, Neg. LLF: 149.67180021239818
Iteration: 4, Func. Count: 47, Neg. LLF: 149.6706118918146
Iteration: 5, Func. Count: 58, Neg. LLF: 149.66989889896263
Iteration: 6, Func. Count: 69, Neg. LLF: 149.66971210940798
Iteration: 7, Func. Count: 80, Neg. LLF: 149.66966504076902
Iteration: 8, Func. Count: 91, Neg. LLF: 149.6696148567623
Iteration: 9, Func. Count: 102, Neg. LLF: 149.6695733447942
Iteration: 10, Func. Count: 113, Neg. LLF: 149.66948354600626
Iteration: 11, Func. Count: 124, Neg. LLF: 149.6692513748574
Iteration: 12, Func. Count: 135, Neg. LLF: 149.6683767243461
Iteration: 13, Func. Count: 146, Neg. LLF: 149.66160244952204
Iteration: 14, Func. Count: 157, Neg. LLF: 149.6514315656395
Iteration: 15, Func. Count: 168, Neg. LLF: 149.63640685569868
Iteration: 16, Func. Count: 179, Neg. LLF: 149.1032282766487
Iteration: 17, Func. Count: 190, Neg. LLF: 149.09552333468014
Iteration: 18, Func. Count: 201, Neg. LLF: 149.09078252534164
Iteration: 19, Func. Count: 213, Neg. LLF: 149.0518460590289
Iteration: 20, Func. Count: 224, Neg. LLF: 149.03553325661414
Iteration: 21, Func. Count: 235, Neg. LLF: 149.02389273439775
Iteration: 22, Func. Count: 246, Neg. LLF: 149.02098203666318
Iteration: 23, Func. Count: 257, Neg. LLF: 149.02075137065384
Iteration: 24, Func. Count: 268, Neg. LLF: 9897766.9204708
Iteration: 25, Func. Count: 283, Neg. LLF: 149.0207325711234
Iteration: 26, Func. Count: 294, Neg. LLF: 149.0207292654498
Iteration: 27, Func. Count: 305, Neg. LLF: 149.02072841883762
Optimization terminated successfully (Exit mode 0)
Current function value: 149.02072841883762
Iterations: 28
Function evaluations: 305
Gradient evaluations: 27
Iteration: 1, Func. Count: 13, Neg. LLF: 170.6273116070963
Iteration: 2, Func. Count: 27, Neg. LLF: 149.64102005844907
Iteration: 3, Func. Count: 39, Neg. LLF: 149.6373326649536
Iteration: 4, Func. Count: 51, Neg. LLF: 149.6337745025431
Iteration: 5, Func. Count: 63, Neg. LLF: 149.63233345747767
Iteration: 6, Func. Count: 75, Neg. LLF: 149.6319044551509
Iteration: 7, Func. Count: 87, Neg. LLF: 149.63135636951668
Iteration: 8, Func. Count: 99, Neg. LLF: 149.62918788042847
Iteration: 9, Func. Count: 111, Neg. LLF: 149.62274045090942
Iteration: 10, Func. Count: 123, Neg. LLF: 149.58675953602997
Iteration: 11, Func. Count: 135, Neg. LLF: 150.99593505413583
Iteration: 12, Func. Count: 148, Neg. LLF: 150.15738686587898
Iteration: 13, Func. Count: 161, Neg. LLF: 149.9457256827077
Iteration: 14, Func. Count: 174, Neg. LLF: 149.75867811184142
Iteration: 15, Func. Count: 187, Neg. LLF: 149.38088864847845
Iteration: 16, Func. Count: 199, Neg. LLF: 149.18930557629378
Iteration: 17, Func. Count: 211, Neg. LLF: 149.1579471509479
Iteration: 18, Func. Count: 223, Neg. LLF: 149.0470634984674
Iteration: 19, Func. Count: 235, Neg. LLF: 149.04387197416742
Iteration: 20, Func. Count: 247, Neg. LLF: 149.03745331911367
Iteration: 21, Func. Count: 259, Neg. LLF: 149.0283720541391
Iteration: 22, Func. Count: 271, Neg. LLF: 149.02145352368575
Iteration: 23, Func. Count: 283, Neg. LLF: 149.01116766132608
Iteration: 24, Func. Count: 295, Neg. LLF: 149.0042399356865
Iteration: 25, Func. Count: 307, Neg. LLF: 149.00682402446648
Iteration: 26, Func. Count: 320, Neg. LLF: 148.9923689468479
Iteration: 27, Func. Count: 332, Neg. LLF: 148.99186053548502
Iteration: 28, Func. Count: 344, Neg. LLF: 148.99185608593058
Iteration: 29, Func. Count: 355, Neg. LLF: 148.99185608635116
Optimization terminated successfully (Exit mode 0)
Current function value: 148.99185608593058
Iterations: 29
Function evaluations: 355
Gradient evaluations: 29
Iteration: 1, Func. Count: 10, Neg. LLF: 148.65678405421414
Iteration: 2, Func. Count: 19, Neg. LLF: 154.89541222730773
Iteration: 3, Func. Count: 29, Neg. LLF: 145.88391996424474
Iteration: 4, Func. Count: 38, Neg. LLF: 145.7407089170163
Iteration: 5, Func. Count: 47, Neg. LLF: 145.86196500868553
Iteration: 6, Func. Count: 57, Neg. LLF: 146.85763918424277
Iteration: 7, Func. Count: 67, Neg. LLF: 145.63772643689913
Iteration: 8, Func. Count: 76, Neg. LLF: 146.0122739491116
Iteration: 9, Func. Count: 87, Neg. LLF: 145.63650342674225
Iteration: 10, Func. Count: 96, Neg. LLF: 145.6363971614404
Iteration: 11, Func. Count: 105, Neg. LLF: 145.63639649766824
Optimization terminated successfully (Exit mode 0)
Current function value: 145.63639649766824
Iterations: 11
Function evaluations: 105
Gradient evaluations: 11
Iteration: 1, Func. Count: 11, Neg. LLF: 189.7011671861178
Iteration: 2, Func. Count: 23, Neg. LLF: 149.65763561534501
Iteration: 3, Func. Count: 33, Neg. LLF: 149.6575835985235
Iteration: 4, Func. Count: 43, Neg. LLF: 149.65682149388783
Iteration: 5, Func. Count: 53, Neg. LLF: 149.6525398989145
Iteration: 6, Func. Count: 63, Neg. LLF: 149.64513604008866
Iteration: 7, Func. Count: 73, Neg. LLF: 149.63046373101173
Iteration: 8, Func. Count: 83, Neg. LLF: 149.60699120177446
Iteration: 9, Func. Count: 93, Neg. LLF: 149.59905953614967
Iteration: 10, Func. Count: 103, Neg. LLF: 149.59655041619797
Iteration: 11, Func. Count: 113, Neg. LLF: 149.596547051914
Iteration: 12, Func. Count: 123, Neg. LLF: 149.59653586681458
Iteration: 13, Func. Count: 133, Neg. LLF: 149.59653219115896
Iteration: 14, Func. Count: 142, Neg. LLF: 149.5965321921826
Optimization terminated successfully (Exit mode 0)
Current function value: 149.59653219115896
Iterations: 14
Function evaluations: 142
Gradient evaluations: 14
Iteration: 1, Func. Count: 12, Neg. LLF: 181.7984554278424
Iteration: 2, Func. Count: 24, Neg. LLF: 149.67506435937963
Iteration: 3, Func. Count: 35, Neg. LLF: 149.67472252594686
Iteration: 4, Func. Count: 46, Neg. LLF: 149.67060352752927
Iteration: 5, Func. Count: 57, Neg. LLF: 149.6576377435184
Iteration: 6, Func. Count: 68, Neg. LLF: 149.65652134386232
Iteration: 7, Func. Count: 79, Neg. LLF: 149.65585869067888
Iteration: 8, Func. Count: 90, Neg. LLF: 149.65571795300562
Iteration: 9, Func. Count: 101, Neg. LLF: 149.6548961655178
Iteration: 10, Func. Count: 112, Neg. LLF: 149.65320515010143
Iteration: 11, Func. Count: 123, Neg. LLF: 149.64837991835685
Iteration: 12, Func. Count: 134, Neg. LLF: 149.63779524413215
Iteration: 13, Func. Count: 145, Neg. LLF: 149.62113384282628
Iteration: 14, Func. Count: 156, Neg. LLF: 149.61226992558636
Iteration: 15, Func. Count: 167, Neg. LLF: 149.60344002640724
Iteration: 16, Func. Count: 178, Neg. LLF: 149.5971059492694
Iteration: 17, Func. Count: 189, Neg. LLF: 149.59658130028043
Iteration: 18, Func. Count: 200, Neg. LLF: 149.59653317075225
Iteration: 19, Func. Count: 211, Neg. LLF: 149.596532198365
Optimization terminated successfully (Exit mode 0)
Current function value: 149.596532198365
Iterations: 19
Function evaluations: 211
Gradient evaluations: 19
Iteration: 1, Func. Count: 13, Neg. LLF: 175.98691792863545
Iteration: 2, Func. Count: 26, Neg. LLF: 149.67130304286536
Iteration: 3, Func. Count: 38, Neg. LLF: 149.67081834530057
Iteration: 4, Func. Count: 50, Neg. LLF: 149.67007362679877
Iteration: 5, Func. Count: 62, Neg. LLF: 149.6698659498266
Iteration: 6, Func. Count: 74, Neg. LLF: 149.6696591859263
Iteration: 7, Func. Count: 86, Neg. LLF: 149.66964039430886
Iteration: 8, Func. Count: 98, Neg. LLF: 149.66954604080578
Iteration: 9, Func. Count: 110, Neg. LLF: 149.66937429286133
Iteration: 10, Func. Count: 122, Neg. LLF: 149.66867544348864
Iteration: 11, Func. Count: 134, Neg. LLF: 149.66309118034658
Iteration: 12, Func. Count: 146, Neg. LLF: 151.30844652595528
Iteration: 13, Func. Count: 159, Neg. LLF: 151.12607344482504
Iteration: 14, Func. Count: 172, Neg. LLF: 150.9462165831621
Iteration: 15, Func. Count: 185, Neg. LLF: 154.76247570168584
Iteration: 16, Func. Count: 198, Neg. LLF: 253.8896458876767
Iteration: 17, Func. Count: 213, Neg. LLF: 187.0640467356506
Iteration: 18, Func. Count: 227, Neg. LLF: 150.61053182742242
Iteration: 19, Func. Count: 240, Neg. LLF: 149.56834203785445
Iteration: 20, Func. Count: 252, Neg. LLF: 149.56483142572287
Iteration: 21, Func. Count: 264, Neg. LLF: 149.54144194632306
Iteration: 22, Func. Count: 276, Neg. LLF: 149.2822790186914
Iteration: 23, Func. Count: 288, Neg. LLF: 149.2070829562054
Iteration: 24, Func. Count: 300, Neg. LLF: 149.0359053201607
Iteration: 25, Func. Count: 312, Neg. LLF: 149.0061234976815
Iteration: 26, Func. Count: 324, Neg. LLF: 149.03977033657532
Iteration: 27, Func. Count: 338, Neg. LLF: 148.99459222176029
Iteration: 28, Func. Count: 350, Neg. LLF: 148.99193378010352
Iteration: 29, Func. Count: 362, Neg. LLF: 148.99185961785403
Iteration: 30, Func. Count: 374, Neg. LLF: 74412.2845944457
Iteration: 31, Func. Count: 390, Neg. LLF: 148.99198597921594
Optimization terminated successfully (Exit mode 0)
Current function value: 148.9918510753186
Iterations: 33
Function evaluations: 391
Gradient evaluations: 31
Iteration: 1, Func. Count: 14, Neg. LLF: 170.28340351511233
Iteration: 2, Func. Count: 29, Neg. LLF: 149.64317211201595
Iteration: 3, Func. Count: 42, Neg. LLF: 149.63871908032547
Iteration: 4, Func. Count: 55, Neg. LLF: 149.6366984095519
Iteration: 5, Func. Count: 68, Neg. LLF: 149.63376647838643
Iteration: 6, Func. Count: 81, Neg. LLF: 149.6319463832193
Iteration: 7, Func. Count: 94, Neg. LLF: 149.63141852214403
Iteration: 8, Func. Count: 107, Neg. LLF: 149.63099850927
Iteration: 9, Func. Count: 120, Neg. LLF: 149.62802678253826
Iteration: 10, Func. Count: 133, Neg. LLF: 149.60409750189532
Iteration: 11, Func. Count: 146, Neg. LLF: 150.09308828950623
Iteration: 12, Func. Count: 160, Neg. LLF: 149.88882608915245
Iteration: 13, Func. Count: 174, Neg. LLF: 149.75434837449248
Iteration: 14, Func. Count: 188, Neg. LLF: 149.4520809671914
Iteration: 15, Func. Count: 201, Neg. LLF: 149.83248155127126
Iteration: 16, Func. Count: 215, Neg. LLF: 149.3192818732393
Iteration: 17, Func. Count: 229, Neg. LLF: 149.14902383375474
Iteration: 18, Func. Count: 242, Neg. LLF: 149.73226976039405
Iteration: 19, Func. Count: 256, Neg. LLF: 149.19042816833115
Iteration: 20, Func. Count: 270, Neg. LLF: 149.02394788860397
Iteration: 21, Func. Count: 283, Neg. LLF: 149.02240121239652
Iteration: 22, Func. Count: 296, Neg. LLF: 149.02139571554088
Iteration: 23, Func. Count: 309, Neg. LLF: 149.02126769690332
Iteration: 24, Func. Count: 322, Neg. LLF: 149.0210823105363
Iteration: 25, Func. Count: 335, Neg. LLF: 149.0209423669126
Iteration: 26, Func. Count: 348, Neg. LLF: 149.0208897268492
Iteration: 27, Func. Count: 361, Neg. LLF: 149.02086761430573
Iteration: 28, Func. Count: 374, Neg. LLF: 149.02084625779088
Iteration: 29, Func. Count: 387, Neg. LLF: 149.02077597147317
Iteration: 30, Func. Count: 400, Neg. LLF: 149.0207620357488
Iteration: 31, Func. Count: 413, Neg. LLF: 149.02072891415486
Iteration: 32, Func. Count: 426, Neg. LLF: 149.02072739622457
Iteration: 33, Func. Count: 438, Neg. LLF: 149.0207273967745
Optimization terminated successfully (Exit mode 0)
Current function value: 149.02072739622457
Iterations: 33
Function evaluations: 438
Gradient evaluations: 33
Iteration: 1, Func. Count: 11, Neg. LLF: 146.19237842943647
Iteration: 2, Func. Count: 21, Neg. LLF: 147.7408421037022
Iteration: 3, Func. Count: 32, Neg. LLF: 145.97132778604484
Iteration: 4, Func. Count: 42, Neg. LLF: 145.6615287126082
Iteration: 5, Func. Count: 52, Neg. LLF: 148.18787281951947
Iteration: 6, Func. Count: 64, Neg. LLF: 145.780088032349
Iteration: 7, Func. Count: 75, Neg. LLF: 145.7406807363409
Iteration: 8, Func. Count: 86, Neg. LLF: 145.63666421272475
Iteration: 9, Func. Count: 96, Neg. LLF: 145.63651442183735
Iteration: 10, Func. Count: 106, Neg. LLF: 145.63649322606912
Iteration: 11, Func. Count: 117, Neg. LLF: 145.63639849313768
Iteration: 12, Func. Count: 127, Neg. LLF: 145.63639648157053
Iteration: 13, Func. Count: 136, Neg. LLF: 145.6363969214728
Optimization terminated successfully (Exit mode 0)
Current function value: 145.63639648157053
Iterations: 13
Function evaluations: 136
Gradient evaluations: 13
Iteration: 1, Func. Count: 12, Neg. LLF: 189.70068967086604
Iteration: 2, Func. Count: 25, Neg. LLF: 149.65780161185765
Iteration: 3, Func. Count: 36, Neg. LLF: 149.65790230009952
Iteration: 4, Func. Count: 48, Neg. LLF: 149.6575401486892
Iteration: 5, Func. Count: 59, Neg. LLF: 149.65722253271238
Iteration: 6, Func. Count: 70, Neg. LLF: 149.65568318092127
Iteration: 7, Func. Count: 81, Neg. LLF: 149.64880043896147
Iteration: 8, Func. Count: 92, Neg. LLF: 149.62721495238964
Iteration: 9, Func. Count: 103, Neg. LLF: 149.61224613814048
Iteration: 10, Func. Count: 114, Neg. LLF: 149.60708182949267
Iteration: 11, Func. Count: 125, Neg. LLF: 149.60247872440237
Iteration: 12, Func. Count: 136, Neg. LLF: 149.5965529750469
Iteration: 13, Func. Count: 147, Neg. LLF: 149.59653222729736
Iteration: 14, Func. Count: 157, Neg. LLF: 149.59653222834257
Optimization terminated successfully (Exit mode 0)
Current function value: 149.59653222729736
Iterations: 14
Function evaluations: 157
Gradient evaluations: 14
Iteration: 1, Func. Count: 13, Neg. LLF: 181.88889155457437
Iteration: 2, Func. Count: 26, Neg. LLF: 149.6749659373869
Iteration: 3, Func. Count: 38, Neg. LLF: 149.67466557094036
Iteration: 4, Func. Count: 50, Neg. LLF: 149.67386070377268
Iteration: 5, Func. Count: 62, Neg. LLF: 149.66334593933692
Iteration: 6, Func. Count: 74, Neg. LLF: 149.65663564918736
Iteration: 7, Func. Count: 86, Neg. LLF: 149.65634294466494
Iteration: 8, Func. Count: 98, Neg. LLF: 149.65578630896735
Iteration: 9, Func. Count: 110, Neg. LLF: 149.65555478919998
Iteration: 10, Func. Count: 122, Neg. LLF: 149.65471197432765
Iteration: 11, Func. Count: 134, Neg. LLF: 149.65321703152082
Iteration: 12, Func. Count: 146, Neg. LLF: 149.6490582676756
Iteration: 13, Func. Count: 158, Neg. LLF: 149.63982506495722
Iteration: 14, Func. Count: 170, Neg. LLF: 149.62483001583942
Iteration: 15, Func. Count: 182, Neg. LLF: 149.61506024672263
Iteration: 16, Func. Count: 194, Neg. LLF: 149.60698536732656
Iteration: 17, Func. Count: 206, Neg. LLF: 149.59746805772173
Iteration: 18, Func. Count: 218, Neg. LLF: 149.5966686893702
Iteration: 19, Func. Count: 230, Neg. LLF: 149.59653542000905
Iteration: 20, Func. Count: 242, Neg. LLF: 149.5965323735368
Iteration: 21, Func. Count: 253, Neg. LLF: 149.59653237562173
Optimization terminated successfully (Exit mode 0)
Current function value: 149.5965323735368
Iterations: 21
Function evaluations: 253
Gradient evaluations: 21
Iteration: 1, Func. Count: 14, Neg. LLF: 175.7629683300635
Iteration: 2, Func. Count: 28, Neg. LLF: 149.6718447353638
Iteration: 3, Func. Count: 41, Neg. LLF: 149.67090898594734
Iteration: 4, Func. Count: 54, Neg. LLF: 149.67009383008207
Iteration: 5, Func. Count: 67, Neg. LLF: 149.66974462209356
Iteration: 6, Func. Count: 80, Neg. LLF: 149.66966387051727
Iteration: 7, Func. Count: 93, Neg. LLF: 149.6696457880467
Iteration: 8, Func. Count: 106, Neg. LLF: 149.66954041555292
Iteration: 9, Func. Count: 119, Neg. LLF: 149.66919592812232
Iteration: 10, Func. Count: 132, Neg. LLF: 149.6682662113098
Iteration: 11, Func. Count: 145, Neg. LLF: 149.6497757137203
Iteration: 12, Func. Count: 158, Neg. LLF: 152.1310556956886
Iteration: 13, Func. Count: 172, Neg. LLF: 150.00804092065852
Iteration: 14, Func. Count: 186, Neg. LLF: 151.26858419596059
Iteration: 15, Func. Count: 200, Neg. LLF: 150.9295385225175
Iteration: 16, Func. Count: 214, Neg. LLF: 150.9327808865246
Iteration: 17, Func. Count: 228, Neg. LLF: 150.55920118623374
Iteration: 18, Func. Count: 242, Neg. LLF: 150.0651302845915
Iteration: 19, Func. Count: 256, Neg. LLF: 149.75591773095118
Iteration: 20, Func. Count: 270, Neg. LLF: 149.35895911433582
Iteration: 21, Func. Count: 283, Neg. LLF: 149.13379857197467
Iteration: 22, Func. Count: 296, Neg. LLF: 149.0888399538464
Iteration: 23, Func. Count: 309, Neg. LLF: 149.12175061344448
Iteration: 24, Func. Count: 323, Neg. LLF: 149.03842663556298
Iteration: 25, Func. Count: 337, Neg. LLF: 149.02615848686457
Iteration: 26, Func. Count: 350, Neg. LLF: 149.02212273422165
Iteration: 27, Func. Count: 363, Neg. LLF: 149.0211255236444
Iteration: 28, Func. Count: 376, Neg. LLF: 149.02097070627076
Iteration: 29, Func. Count: 389, Neg. LLF: 149.02096663557253
Iteration: 30, Func. Count: 401, Neg. LLF: 149.0209666355941
Optimization terminated successfully (Exit mode 0)
Current function value: 149.02096663557253
Iterations: 30
Function evaluations: 401
Gradient evaluations: 30
Iteration: 1, Func. Count: 15, Neg. LLF: 170.4561603775422
Iteration: 2, Func. Count: 31, Neg. LLF: 149.63678551157608
Iteration: 3, Func. Count: 45, Neg. LLF: 149.63411326054157
Iteration: 4, Func. Count: 59, Neg. LLF: 149.63291244050262
Iteration: 5, Func. Count: 73, Neg. LLF: 149.63217348803818
Iteration: 6, Func. Count: 87, Neg. LLF: 149.63178582608566
Iteration: 7, Func. Count: 101, Neg. LLF: 149.63047871867343
Iteration: 8, Func. Count: 115, Neg. LLF: 149.62720466508375
Iteration: 9, Func. Count: 129, Neg. LLF: 149.61460094492452
Iteration: 10, Func. Count: 143, Neg. LLF: 151.05935201074078
Iteration: 11, Func. Count: 158, Neg. LLF: 153.144813440367
Iteration: 12, Func. Count: 173, Neg. LLF: 152.62434213655337
Iteration: 13, Func. Count: 188, Neg. LLF: 152.13298080484418
Iteration: 14, Func. Count: 203, Neg. LLF: 149.83464689248436
Iteration: 15, Func. Count: 218, Neg. LLF: 149.6918707921233
Iteration: 16, Func. Count: 233, Neg. LLF: 149.6291572300901
Iteration: 17, Func. Count: 248, Neg. LLF: 149.53930652072412
Iteration: 18, Func. Count: 262, Neg. LLF: 149.46040052311946
Iteration: 19, Func. Count: 276, Neg. LLF: 149.27390170330725
Iteration: 20, Func. Count: 290, Neg. LLF: 149.8000891364634
Iteration: 21, Func. Count: 305, Neg. LLF: 149.14579298124832
Iteration: 22, Func. Count: 319, Neg. LLF: 149.02459603766027
Iteration: 23, Func. Count: 333, Neg. LLF: 149.01497160195044
Iteration: 24, Func. Count: 347, Neg. LLF: 149.01090598099194
Iteration: 25, Func. Count: 361, Neg. LLF: 149.00474069530316
Iteration: 26, Func. Count: 375, Neg. LLF: 148.99932406299152
Iteration: 27, Func. Count: 389, Neg. LLF: 148.99738587251522
Iteration: 28, Func. Count: 403, Neg. LLF: 148.9971582829731
Iteration: 29, Func. Count: 417, Neg. LLF: 148.9971520158605
Iteration: 30, Func. Count: 431, Neg. LLF: 148.99715028573192
Iteration: 31, Func. Count: 444, Neg. LLF: 148.99715028569813
Optimization terminated successfully (Exit mode 0)
Current function value: 148.99715028573192
Iterations: 31
Function evaluations: 444
Gradient evaluations: 31
Iteration: 1, Func. Count: 8, Neg. LLF: 150.54676152885995
Iteration: 2, Func. Count: 15, Neg. LLF: 157.16705611186705
Iteration: 3, Func. Count: 23, Neg. LLF: 149.52475601439272
Iteration: 4, Func. Count: 30, Neg. LLF: 149.37565736971018
Iteration: 5, Func. Count: 37, Neg. LLF: 149.1744295758488
Iteration: 6, Func. Count: 44, Neg. LLF: 149.01860212676158
Iteration: 7, Func. Count: 51, Neg. LLF: 232.78558687602074
Iteration: 8, Func. Count: 60, Neg. LLF: 149.20831905399646
Iteration: 9, Func. Count: 68, Neg. LLF: 148.97371654372444
Iteration: 10, Func. Count: 75, Neg. LLF: 148.97331514953584
Iteration: 11, Func. Count: 82, Neg. LLF: 148.97330892506773
Iteration: 12, Func. Count: 88, Neg. LLF: 148.97330940759431
Optimization terminated successfully (Exit mode 0)
Current function value: 148.97330892506773
Iterations: 12
Function evaluations: 88
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 189.6475359002107
Iteration: 2, Func. Count: 19, Neg. LLF: 149.65786986558172
Iteration: 3, Func. Count: 27, Neg. LLF: 149.65786430215374
Iteration: 4, Func. Count: 36, Neg. LLF: 149.65766655628303
Iteration: 5, Func. Count: 44, Neg. LLF: 149.65731765101697
Iteration: 6, Func. Count: 52, Neg. LLF: 149.65664909559646
Iteration: 7, Func. Count: 60, Neg. LLF: 149.65587310070285
Iteration: 8, Func. Count: 68, Neg. LLF: 149.65305399791032
Iteration: 9, Func. Count: 76, Neg. LLF: 149.64675219131357
Iteration: 10, Func. Count: 84, Neg. LLF: 149.6341475985893
Iteration: 11, Func. Count: 92, Neg. LLF: 149.6185216042372
Iteration: 12, Func. Count: 100, Neg. LLF: 149.61362512186946
Iteration: 13, Func. Count: 108, Neg. LLF: 149.60060936037712
Iteration: 14, Func. Count: 116, Neg. LLF: 149.5965571115173
Iteration: 15, Func. Count: 124, Neg. LLF: 149.59653222862173
Iteration: 16, Func. Count: 131, Neg. LLF: 149.59653222966628
Optimization terminated successfully (Exit mode 0)
Current function value: 149.59653222862173
Iterations: 16
Function evaluations: 131
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 182.1663331245958
Iteration: 2, Func. Count: 21, Neg. LLF: 149.67415917969447
Iteration: 3, Func. Count: 30, Neg. LLF: 149.67383431040574
Iteration: 4, Func. Count: 39, Neg. LLF: 149.6728799547912
Iteration: 5, Func. Count: 48, Neg. LLF: 149.66254356309224
Iteration: 6, Func. Count: 57, Neg. LLF: 149.6577481334975
Iteration: 7, Func. Count: 66, Neg. LLF: 149.65384694466675
Iteration: 8, Func. Count: 75, Neg. LLF: 149.6530383164663
Iteration: 9, Func. Count: 84, Neg. LLF: 149.65295505242784
Iteration: 10, Func. Count: 93, Neg. LLF: 149.65241461229223
Iteration: 11, Func. Count: 102, Neg. LLF: 149.64935260751804
Iteration: 12, Func. Count: 111, Neg. LLF: 149.6352399601444
Iteration: 13, Func. Count: 120, Neg. LLF: 149.60021432943998
Iteration: 14, Func. Count: 129, Neg. LLF: 149.59824896338654
Iteration: 15, Func. Count: 138, Neg. LLF: 149.59684825260177
Iteration: 16, Func. Count: 147, Neg. LLF: 149.59654992891512
Iteration: 17, Func. Count: 156, Neg. LLF: 149.5965334203293
Iteration: 18, Func. Count: 165, Neg. LLF: 149.59653291289536
Optimization terminated successfully (Exit mode 0)
Current function value: 149.59653291289536
Iterations: 18
Function evaluations: 165
Gradient evaluations: 18
Iteration: 1, Func. Count: 11, Neg. LLF: 426.1857038998218
Iteration: 2, Func. Count: 23, Neg. LLF: 149.26648909091713
Iteration: 3, Func. Count: 33, Neg. LLF: 149.22899329832924
Iteration: 4, Func. Count: 43, Neg. LLF: 149.05715109569988
Iteration: 5, Func. Count: 53, Neg. LLF: 149.03762539698454
Iteration: 6, Func. Count: 63, Neg. LLF: 149.02210386115888
Iteration: 7, Func. Count: 73, Neg. LLF: 149.02139067710687
Iteration: 8, Func. Count: 83, Neg. LLF: 149.02088984204912
Iteration: 9, Func. Count: 93, Neg. LLF: 149.02074067152552
Iteration: 10, Func. Count: 103, Neg. LLF: 149.02072732924952
Iteration: 11, Func. Count: 112, Neg. LLF: 149.02072732920587
Optimization terminated successfully (Exit mode 0)
Current function value: 149.02072732924952
Iterations: 11
Function evaluations: 112
Gradient evaluations: 11
Iteration: 1, Func. Count: 12, Neg. LLF: 449.61880196319083
Iteration: 2, Func. Count: 25, Neg. LLF: 149.18806178000565
Iteration: 3, Func. Count: 36, Neg. LLF: 149.12780564023726
Iteration: 4, Func. Count: 47, Neg. LLF: 149.05570936175423
Iteration: 5, Func. Count: 58, Neg. LLF: 149.0033508059219
Iteration: 6, Func. Count: 69, Neg. LLF: 148.99820663962086
Iteration: 7, Func. Count: 80, Neg. LLF: 148.99731630328813
Iteration: 8, Func. Count: 91, Neg. LLF: 148.99715092035845
Iteration: 9, Func. Count: 102, Neg. LLF: 148.99715028795367
Optimization terminated successfully (Exit mode 0)
Current function value: 148.99715028795367
Iterations: 9
Function evaluations: 102
Gradient evaluations: 9
Iteration: 1, Func. Count: 9, Neg. LLF: 152.8560759528905
Iteration: 2, Func. Count: 18, Neg. LLF: 156.02757649279246
Iteration: 3, Func. Count: 27, Neg. LLF: 146.05099162181406
Iteration: 4, Func. Count: 35, Neg. LLF: 145.7883687862945
Iteration: 5, Func. Count: 43, Neg. LLF: 145.72995526222203
Iteration: 6, Func. Count: 51, Neg. LLF: 145.7470897347689
Iteration: 7, Func. Count: 60, Neg. LLF: 145.64954484451172
Iteration: 8, Func. Count: 69, Neg. LLF: 145.64317921554292
Iteration: 9, Func. Count: 77, Neg. LLF: 145.64240735104556
Iteration: 10, Func. Count: 85, Neg. LLF: 145.6423692682214
Iteration: 11, Func. Count: 93, Neg. LLF: 145.64236431760443
Iteration: 12, Func. Count: 100, Neg. LLF: 145.64236430490556
Optimization terminated successfully (Exit mode 0)
Current function value: 145.64236431760443
Iterations: 12
Function evaluations: 100
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 189.68882823490526
Iteration: 2, Func. Count: 21, Neg. LLF: 149.65780964110795
Iteration: 3, Func. Count: 30, Neg. LLF: 149.6579069337149
Iteration: 4, Func. Count: 40, Neg. LLF: 149.65756645161449
Iteration: 5, Func. Count: 49, Neg. LLF: 149.65728977663574
Iteration: 6, Func. Count: 58, Neg. LLF: 149.65591602168564
Iteration: 7, Func. Count: 67, Neg. LLF: 149.64935721465088
Iteration: 8, Func. Count: 76, Neg. LLF: 149.62431184786388
Iteration: 9, Func. Count: 85, Neg. LLF: 149.59768351441397
Iteration: 10, Func. Count: 94, Neg. LLF: 149.59746030139894
Iteration: 11, Func. Count: 103, Neg. LLF: 149.59675586712044
Iteration: 12, Func. Count: 112, Neg. LLF: 149.59653226822982
Iteration: 13, Func. Count: 120, Neg. LLF: 149.59653226922777
Optimization terminated successfully (Exit mode 0)
Current function value: 149.59653226822982
Iterations: 13
Function evaluations: 120
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 182.01449675719263
Iteration: 2, Func. Count: 23, Neg. LLF: 149.6746368477817
Iteration: 3, Func. Count: 33, Neg. LLF: 149.6742103139604
Iteration: 4, Func. Count: 43, Neg. LLF: 149.67306323685648
Iteration: 5, Func. Count: 53, Neg. LLF: 149.66814613241203
Iteration: 6, Func. Count: 63, Neg. LLF: 149.661083720615
Iteration: 7, Func. Count: 73, Neg. LLF: 149.65892413208212
Iteration: 8, Func. Count: 83, Neg. LLF: 149.6538910843732
Iteration: 9, Func. Count: 93, Neg. LLF: 149.6535988143745
Iteration: 10, Func. Count: 103, Neg. LLF: 149.6535126798332
Iteration: 11, Func. Count: 113, Neg. LLF: 149.65289074116134
Iteration: 12, Func. Count: 123, Neg. LLF: 149.64962560089722
Iteration: 13, Func. Count: 133, Neg. LLF: 149.6432331199152
Iteration: 14, Func. Count: 143, Neg. LLF: 149.63039502684896
Iteration: 15, Func. Count: 153, Neg. LLF: 149.6140110724923
Iteration: 16, Func. Count: 163, Neg. LLF: 149.6094209286317
Iteration: 17, Func. Count: 173, Neg. LLF: 149.5989053005798
Iteration: 18, Func. Count: 183, Neg. LLF: 149.59654342684576
Iteration: 19, Func. Count: 193, Neg. LLF: 149.59653245861378
Iteration: 20, Func. Count: 202, Neg. LLF: 149.5965324606865
Optimization terminated successfully (Exit mode 0)
Current function value: 149.59653245861378
Iterations: 20
Function evaluations: 202
Gradient evaluations: 20
Iteration: 1, Func. Count: 12, Neg. LLF: 175.84514311449755
Iteration: 2, Func. Count: 25, Neg. LLF: 149.6721513927564
Iteration: 3, Func. Count: 36, Neg. LLF: 149.6718230147784
Iteration: 4, Func. Count: 47, Neg. LLF: 149.67124866082844
Iteration: 5, Func. Count: 58, Neg. LLF: 149.67059961745804
Iteration: 6, Func. Count: 69, Neg. LLF: 149.66981803336716
Iteration: 7, Func. Count: 80, Neg. LLF: 149.6696845810055
Iteration: 8, Func. Count: 91, Neg. LLF: 149.66957209256523
Iteration: 9, Func. Count: 102, Neg. LLF: 149.66955314443743
Iteration: 10, Func. Count: 113, Neg. LLF: 149.66943287829392
Iteration: 11, Func. Count: 124, Neg. LLF: 149.66867945599373
Iteration: 12, Func. Count: 135, Neg. LLF: 149.66044158217738
Iteration: 13, Func. Count: 146, Neg. LLF: 149.49425617454847
Iteration: 14, Func. Count: 157, Neg. LLF: 149.10729726774613
Iteration: 15, Func. Count: 168, Neg. LLF: 149.34947018423622
Iteration: 16, Func. Count: 180, Neg. LLF: 149.04974636676093
Iteration: 17, Func. Count: 191, Neg. LLF: 149.02647083197667
Iteration: 18, Func. Count: 202, Neg. LLF: 149.02394665734704
Iteration: 19, Func. Count: 213, Neg. LLF: 149.0210845434518
Iteration: 20, Func. Count: 224, Neg. LLF: 149.02086332077727
Iteration: 21, Func. Count: 235, Neg. LLF: 149.0207908929202
Iteration: 22, Func. Count: 246, Neg. LLF: 149.02052648664693
Iteration: 23, Func. Count: 257, Neg. LLF: 149.01084889432445
Iteration: 24, Func. Count: 268, Neg. LLF: 148.99460780458352
Iteration: 25, Func. Count: 279, Neg. LLF: 149.00272711603978
Iteration: 26, Func. Count: 291, Neg. LLF: 148.99218149230742
Iteration: 27, Func. Count: 302, Neg. LLF: 148.99194551853589
Iteration: 28, Func. Count: 313, Neg. LLF: 148.9918938596493
Iteration: 29, Func. Count: 324, Neg. LLF: 148.99189977692248
Optimization terminated successfully (Exit mode 0)
Current function value: 148.99189303686975
Iterations: 29
Function evaluations: 325
Gradient evaluations: 29
Iteration: 1, Func. Count: 13, Neg. LLF: 170.88450834558606
Iteration: 2, Func. Count: 27, Neg. LLF: 149.63598592228897
Iteration: 3, Func. Count: 39, Neg. LLF: 149.6346053532365
Iteration: 4, Func. Count: 51, Neg. LLF: 149.63293737885246
Iteration: 5, Func. Count: 63, Neg. LLF: 149.63207276137985
Iteration: 6, Func. Count: 75, Neg. LLF: 149.63173037436178
Iteration: 7, Func. Count: 87, Neg. LLF: 149.6293403315279
Iteration: 8, Func. Count: 99, Neg. LLF: 149.6138704586659
Iteration: 9, Func. Count: 111, Neg. LLF: 149.74126311801226
Iteration: 10, Func. Count: 124, Neg. LLF: 154.49661897702626
Iteration: 11, Func. Count: 137, Neg. LLF: 153.83334936499
Iteration: 12, Func. Count: 150, Neg. LLF: 153.15117480830204
Iteration: 13, Func. Count: 163, Neg. LLF: 150.1295488400914
Iteration: 14, Func. Count: 176, Neg. LLF: 149.73177238238657
Iteration: 15, Func. Count: 189, Neg. LLF: 149.68636511354887
Iteration: 16, Func. Count: 202, Neg. LLF: 149.58927507782556
Iteration: 17, Func. Count: 215, Neg. LLF: 149.48054648989293
Iteration: 18, Func. Count: 227, Neg. LLF: 149.3392572504954
Iteration: 19, Func. Count: 239, Neg. LLF: 149.32380589746512
Iteration: 20, Func. Count: 252, Neg. LLF: 149.01764871601696
Iteration: 21, Func. Count: 264, Neg. LLF: 149.00880786265083
Iteration: 22, Func. Count: 276, Neg. LLF: 148.99795046222732
Iteration: 23, Func. Count: 288, Neg. LLF: 148.99721981743028
Iteration: 24, Func. Count: 300, Neg. LLF: 148.9971504796027
Iteration: 25, Func. Count: 311, Neg. LLF: 148.9971504796018
Optimization terminated successfully (Exit mode 0)
Current function value: 148.9971504796027
Iterations: 25
Function evaluations: 311
Gradient evaluations: 25
Iteration: 1, Func. Count: 10, Neg. LLF: 151.262406482216
Iteration: 2, Func. Count: 19, Neg. LLF: 153.99933510120405
Iteration: 3, Func. Count: 29, Neg. LLF: 145.85738792944824
Iteration: 4, Func. Count: 38, Neg. LLF: 145.7777187058083
Iteration: 5, Func. Count: 47, Neg. LLF: 147.3801876182208
Iteration: 6, Func. Count: 57, Neg. LLF: 147.38553157017813
Iteration: 7, Func. Count: 67, Neg. LLF: 145.83893382666142
Iteration: 8, Func. Count: 77, Neg. LLF: 145.6383576076021
Iteration: 9, Func. Count: 86, Neg. LLF: 145.63746269899494
Iteration: 10, Func. Count: 95, Neg. LLF: 145.64125412942278
Iteration: 11, Func. Count: 105, Neg. LLF: 145.63641184812627
Iteration: 12, Func. Count: 114, Neg. LLF: 145.6363965154778
Iteration: 13, Func. Count: 122, Neg. LLF: 145.6363965283146
Optimization terminated successfully (Exit mode 0)
Current function value: 145.6363965154778
Iterations: 13
Function evaluations: 122
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 189.69511868252155
Iteration: 2, Func. Count: 23, Neg. LLF: 149.65763925652038
Iteration: 3, Func. Count: 33, Neg. LLF: 149.657583893431
Iteration: 4, Func. Count: 43, Neg. LLF: 149.65706317433236
Iteration: 5, Func. Count: 53, Neg. LLF: 149.65383521356895
Iteration: 6, Func. Count: 63, Neg. LLF: 149.63993037833313
Iteration: 7, Func. Count: 73, Neg. LLF: 149.60933456754384
Iteration: 8, Func. Count: 83, Neg. LLF: 149.60167976025295
Iteration: 9, Func. Count: 93, Neg. LLF: 149.6006000550002
Iteration: 10, Func. Count: 103, Neg. LLF: 149.597314856644
Iteration: 11, Func. Count: 113, Neg. LLF: 149.5965332769573
Iteration: 12, Func. Count: 123, Neg. LLF: 149.5965321879879
Iteration: 13, Func. Count: 132, Neg. LLF: 149.59653218901494
Optimization terminated successfully (Exit mode 0)
Current function value: 149.5965321879879
Iterations: 13
Function evaluations: 132
Gradient evaluations: 13
Iteration: 1, Func. Count: 12, Neg. LLF: 182.03781077654472
Iteration: 2, Func. Count: 24, Neg. LLF: 149.67447756248148
Iteration: 3, Func. Count: 35, Neg. LLF: 149.6740133597327
Iteration: 4, Func. Count: 46, Neg. LLF: 149.66660130099896
Iteration: 5, Func. Count: 57, Neg. LLF: 149.65684374909281
Iteration: 6, Func. Count: 68, Neg. LLF: 149.65647888336287
Iteration: 7, Func. Count: 79, Neg. LLF: 149.65600396212386
Iteration: 8, Func. Count: 90, Neg. LLF: 149.65583295474428
Iteration: 9, Func. Count: 101, Neg. LLF: 149.65515988638745
Iteration: 10, Func. Count: 112, Neg. LLF: 149.65368519976658
Iteration: 11, Func. Count: 123, Neg. LLF: 149.64951556916847
Iteration: 12, Func. Count: 134, Neg. LLF: 149.63988944182466
Iteration: 13, Func. Count: 145, Neg. LLF: 149.62426193645004
Iteration: 14, Func. Count: 156, Neg. LLF: 149.61447823097456
Iteration: 15, Func. Count: 167, Neg. LLF: 149.60684803695028
Iteration: 16, Func. Count: 178, Neg. LLF: 149.59678467077097
Iteration: 17, Func. Count: 189, Neg. LLF: 149.59654382893902
Iteration: 18, Func. Count: 200, Neg. LLF: 149.59653239467906
Iteration: 19, Func. Count: 210, Neg. LLF: 149.59653239676183
Optimization terminated successfully (Exit mode 0)
Current function value: 149.59653239467906
Iterations: 19
Function evaluations: 210
Gradient evaluations: 19
Iteration: 1, Func. Count: 13, Neg. LLF: 175.67729406240636
Iteration: 2, Func. Count: 26, Neg. LLF: 149.6723695035997
Iteration: 3, Func. Count: 38, Neg. LLF: 149.67102068115713
Iteration: 4, Func. Count: 50, Neg. LLF: 149.67016222692354
Iteration: 5, Func. Count: 62, Neg. LLF: 149.66971716628788
Iteration: 6, Func. Count: 74, Neg. LLF: 149.66966388939755
Iteration: 7, Func. Count: 86, Neg. LLF: 149.66964649329722
Iteration: 8, Func. Count: 98, Neg. LLF: 149.66952853153012
Iteration: 9, Func. Count: 110, Neg. LLF: 149.66871831277524
Iteration: 10, Func. Count: 122, Neg. LLF: 149.65724736690734
Iteration: 11, Func. Count: 134, Neg. LLF: 149.13627260836947
Iteration: 12, Func. Count: 146, Neg. LLF: 149.25500960764586
Iteration: 13, Func. Count: 159, Neg. LLF: 149.020953914635
Iteration: 14, Func. Count: 171, Neg. LLF: 149.02073396162163
Iteration: 15, Func. Count: 183, Neg. LLF: 149.0207286073401
Iteration: 16, Func. Count: 195, Neg. LLF: 149.0207272120876
Iteration: 17, Func. Count: 206, Neg. LLF: 149.02072721197212
Optimization terminated successfully (Exit mode 0)
Current function value: 149.0207272120876
Iterations: 17
Function evaluations: 206
Gradient evaluations: 17
Iteration: 1, Func. Count: 14, Neg. LLF: 170.81319804384015
Iteration: 2, Func. Count: 29, Neg. LLF: 149.63494788318843
Iteration: 3, Func. Count: 42, Neg. LLF: 149.6338055942487
Iteration: 4, Func. Count: 55, Neg. LLF: 149.63271603853997
Iteration: 5, Func. Count: 68, Neg. LLF: 149.63211987294912
Iteration: 6, Func. Count: 81, Neg. LLF: 149.6316101686823
Iteration: 7, Func. Count: 94, Neg. LLF: 149.63011749617252
Iteration: 8, Func. Count: 107, Neg. LLF: 149.62525685710662
Iteration: 9, Func. Count: 120, Neg. LLF: 149.60569244321852
Iteration: 10, Func. Count: 133, Neg. LLF: 153.5617982663578
Iteration: 11, Func. Count: 147, Neg. LLF: 153.11109830584462
Iteration: 12, Func. Count: 161, Neg. LLF: 152.82359875562878
Iteration: 13, Func. Count: 175, Neg. LLF: 152.1077864746858
Iteration: 14, Func. Count: 189, Neg. LLF: 150.1250138619828
Iteration: 15, Func. Count: 203, Neg. LLF: 149.84668671050662
Iteration: 16, Func. Count: 217, Neg. LLF: 149.7519466412301
Iteration: 17, Func. Count: 231, Neg. LLF: 149.57738009657368
Iteration: 18, Func. Count: 245, Neg. LLF: 149.43316363081397
Iteration: 19, Func. Count: 258, Neg. LLF: 149.28357519601693
Iteration: 20, Func. Count: 271, Neg. LLF: 149.23673038119492
Iteration: 21, Func. Count: 285, Neg. LLF: 148.99800848281023
Iteration: 22, Func. Count: 298, Neg. LLF: 148.99726982619904
Iteration: 23, Func. Count: 311, Neg. LLF: 148.99715122296664
Iteration: 24, Func. Count: 324, Neg. LLF: 148.99715034643216
Optimization terminated successfully (Exit mode 0)
Current function value: 148.99715034643216
Iterations: 24
Function evaluations: 324
Gradient evaluations: 24
Iteration: 1, Func. Count: 11, Neg. LLF: 148.44087276260228
Iteration: 2, Func. Count: 21, Neg. LLF: 154.9754718462214
Iteration: 3, Func. Count: 32, Neg. LLF: 145.88455069421215
Iteration: 4, Func. Count: 42, Neg. LLF: 145.73362422780713
Iteration: 5, Func. Count: 52, Neg. LLF: 145.8840800708604
Iteration: 6, Func. Count: 63, Neg. LLF: 146.5950590784549
Iteration: 7, Func. Count: 74, Neg. LLF: 145.6373827229193
Iteration: 8, Func. Count: 84, Neg. LLF: 146.107689246305
Iteration: 9, Func. Count: 96, Neg. LLF: 145.63643686155513
Iteration: 10, Func. Count: 106, Neg. LLF: 145.63639663267574
Iteration: 11, Func. Count: 115, Neg. LLF: 145.63639644717426
Optimization terminated successfully (Exit mode 0)
Current function value: 145.63639663267574
Iterations: 11
Function evaluations: 115
Gradient evaluations: 11
Iteration: 1, Func. Count: 12, Neg. LLF: 189.6974564963724
Iteration: 2, Func. Count: 25, Neg. LLF: 149.65799316589357
Iteration: 3, Func. Count: 36, Neg. LLF: 149.6582309961657
Iteration: 4, Func. Count: 48, Neg. LLF: 149.65752752799992
Iteration: 5, Func. Count: 59, Neg. LLF: 149.65720730242361
Iteration: 6, Func. Count: 70, Neg. LLF: 149.65579450571389
Iteration: 7, Func. Count: 81, Neg. LLF: 149.65185502379515
Iteration: 8, Func. Count: 92, Neg. LLF: 149.64741475807713
Iteration: 9, Func. Count: 103, Neg. LLF: 149.63683621993624
Iteration: 10, Func. Count: 114, Neg. LLF: 149.62274150673255
Iteration: 11, Func. Count: 125, Neg. LLF: 149.61428469229625
Iteration: 12, Func. Count: 136, Neg. LLF: 149.6068466673345
Iteration: 13, Func. Count: 147, Neg. LLF: 149.59659852554313
Iteration: 14, Func. Count: 158, Neg. LLF: 149.5965324019199
Iteration: 15, Func. Count: 168, Neg. LLF: 149.59653240299303
Optimization terminated successfully (Exit mode 0)
Current function value: 149.5965324019199
Iterations: 15
Function evaluations: 168
Gradient evaluations: 15
Iteration: 1, Func. Count: 13, Neg. LLF: 181.83864745914806
Iteration: 2, Func. Count: 26, Neg. LLF: 149.67523024491163
Iteration: 3, Func. Count: 38, Neg. LLF: 149.67506502014015
Iteration: 4, Func. Count: 50, Neg. LLF: 149.67426812222163
Iteration: 5, Func. Count: 62, Neg. LLF: 149.6725027356654
Iteration: 6, Func. Count: 74, Neg. LLF: 149.66251301262585
Iteration: 7, Func. Count: 86, Neg. LLF: 149.65954357422262
Iteration: 8, Func. Count: 98, Neg. LLF: 149.655743285125
Iteration: 9, Func. Count: 110, Neg. LLF: 149.65562828737495
Iteration: 10, Func. Count: 122, Neg. LLF: 149.6550348242087
Iteration: 11, Func. Count: 134, Neg. LLF: 149.65210614660344
Iteration: 12, Func. Count: 146, Neg. LLF: 149.63899847247444
Iteration: 13, Func. Count: 158, Neg. LLF: 149.60239941210153
Iteration: 14, Func. Count: 170, Neg. LLF: 149.5965600601714
Iteration: 15, Func. Count: 182, Neg. LLF: 149.59654922627664
Iteration: 16, Func. Count: 194, Neg. LLF: 149.5965322158915
Iteration: 17, Func. Count: 205, Neg. LLF: 149.596532217953
Optimization terminated successfully (Exit mode 0)
Current function value: 149.5965322158915
Iterations: 17
Function evaluations: 205
Gradient evaluations: 17
Iteration: 1, Func. Count: 14, Neg. LLF: 175.73487721945787
Iteration: 2, Func. Count: 28, Neg. LLF: 149.6717842392894
Iteration: 3, Func. Count: 41, Neg. LLF: 149.67078592688773
Iteration: 4, Func. Count: 54, Neg. LLF: 149.6700971188664
Iteration: 5, Func. Count: 67, Neg. LLF: 149.66974635436998
Iteration: 6, Func. Count: 80, Neg. LLF: 149.66966207715805
Iteration: 7, Func. Count: 93, Neg. LLF: 149.66964610478027
Iteration: 8, Func. Count: 106, Neg. LLF: 149.66954947358678
Iteration: 9, Func. Count: 119, Neg. LLF: 149.66897891605623
Iteration: 10, Func. Count: 132, Neg. LLF: 149.66344790042012
Iteration: 11, Func. Count: 145, Neg. LLF: 149.27357879901376
Iteration: 12, Func. Count: 158, Neg. LLF: 325.42920140428123
Iteration: 13, Func. Count: 172, Neg. LLF: 149.04513586012567
Iteration: 14, Func. Count: 185, Neg. LLF: 149.05571970933636
Iteration: 15, Func. Count: 199, Neg. LLF: 149.02123502948137
Iteration: 16, Func. Count: 212, Neg. LLF: 149.02099944373444
Iteration: 17, Func. Count: 225, Neg. LLF: 149.0209654510045
Iteration: 18, Func. Count: 238, Neg. LLF: 149.0209601151258
Iteration: 19, Func. Count: 252, Neg. LLF: 149.02096064624092
Iteration: 20, Func. Count: 265, Neg. LLF: 149.82109709736812
Optimization terminated successfully (Exit mode 0)
Current function value: 149.02096061251515
Iterations: 21
Function evaluations: 269
Gradient evaluations: 20
Iteration: 1, Func. Count: 15, Neg. LLF: 170.47130053035448
Iteration: 2, Func. Count: 31, Neg. LLF: 149.63646755491368
Iteration: 3, Func. Count: 45, Neg. LLF: 149.6339354010109
Iteration: 4, Func. Count: 59, Neg. LLF: 149.63263426425976
Iteration: 5, Func. Count: 73, Neg. LLF: 149.63220901319596
Iteration: 6, Func. Count: 87, Neg. LLF: 149.6317377322848
Iteration: 7, Func. Count: 101, Neg. LLF: 149.630781973341
Iteration: 8, Func. Count: 115, Neg. LLF: 149.62773205640667
Iteration: 9, Func. Count: 129, Neg. LLF: 149.61634985538547
Iteration: 10, Func. Count: 143, Neg. LLF: 151.29280093356098
Iteration: 11, Func. Count: 158, Neg. LLF: 150.8638286785655
Iteration: 12, Func. Count: 173, Neg. LLF: 150.70003636633646
Iteration: 13, Func. Count: 188, Neg. LLF: 150.5197005677685
Iteration: 14, Func. Count: 203, Neg. LLF: 150.19989436640648
Iteration: 15, Func. Count: 218, Neg. LLF: 154.62483218999273
Iteration: 16, Func. Count: 234, Neg. LLF: 207.87603071368093
Iteration: 17, Func. Count: 252, Neg. LLF: 205.0391195950994
Iteration: 18, Func. Count: 271, Neg. LLF: 160.15702446638227
Iteration: 19, Func. Count: 287, Neg. LLF: 327.9030488889257
Iteration: 20, Func. Count: 303, Neg. LLF: 149.42146634595923
Iteration: 21, Func. Count: 317, Neg. LLF: 149.40345555530814
Iteration: 22, Func. Count: 331, Neg. LLF: 149.39071431000565
Iteration: 23, Func. Count: 345, Neg. LLF: 149.37198802219987
Iteration: 24, Func. Count: 359, Neg. LLF: 149.23768458669994
Iteration: 25, Func. Count: 373, Neg. LLF: 149.03677875562653
Iteration: 26, Func. Count: 387, Neg. LLF: 149.01765259024194
Iteration: 27, Func. Count: 401, Neg. LLF: 148.99858073723743
Iteration: 28, Func. Count: 415, Neg. LLF: 148.99727940963842
Iteration: 29, Func. Count: 429, Neg. LLF: 148.99715126460927
Iteration: 30, Func. Count: 443, Neg. LLF: 148.99715028044528
Optimization terminated successfully (Exit mode 0)
Current function value: 148.99715028044528
Iterations: 31
Function evaluations: 443
Gradient evaluations: 30
Iteration: 1, Func. Count: 12, Neg. LLF: 146.2677520992005
Iteration: 2, Func. Count: 23, Neg. LLF: 148.7399306100073
Iteration: 3, Func. Count: 35, Neg. LLF: 145.9844594129151
Iteration: 4, Func. Count: 46, Neg. LLF: 145.67366933355532
Iteration: 5, Func. Count: 57, Neg. LLF: 167.91618665067415
Iteration: 6, Func. Count: 70, Neg. LLF: 159.16547420433463
Iteration: 7, Func. Count: 84, Neg. LLF: 145.66990333483088
Iteration: 8, Func. Count: 96, Neg. LLF: 145.63641701325332
Iteration: 9, Func. Count: 107, Neg. LLF: 145.63639660938426
Iteration: 10, Func. Count: 117, Neg. LLF: 145.6363961694854
Optimization terminated successfully (Exit mode 0)
Current function value: 145.63639660938426
Iterations: 10
Function evaluations: 117
Gradient evaluations: 10
Iteration: 1, Func. Count: 13, Neg. LLF: 189.69684009617959
Iteration: 2, Func. Count: 27, Neg. LLF: 149.65865908459514
Iteration: 3, Func. Count: 39, Neg. LLF: 149.65903462666773
Iteration: 4, Func. Count: 52, Neg. LLF: 149.65748217197088
Iteration: 5, Func. Count: 64, Neg. LLF: 149.65711875162376
Iteration: 6, Func. Count: 76, Neg. LLF: 149.6568197729298
Iteration: 7, Func. Count: 88, Neg. LLF: 149.65630900400365
Iteration: 8, Func. Count: 100, Neg. LLF: 149.65474834809834
Iteration: 9, Func. Count: 112, Neg. LLF: 149.6509051604508
Iteration: 10, Func. Count: 124, Neg. LLF: 149.6420209312393
Iteration: 11, Func. Count: 136, Neg. LLF: 149.62757309823164
Iteration: 12, Func. Count: 148, Neg. LLF: 149.61503489917334
Iteration: 13, Func. Count: 160, Neg. LLF: 149.6105267366071
Iteration: 14, Func. Count: 172, Neg. LLF: 149.5978932923936
Iteration: 15, Func. Count: 184, Neg. LLF: 149.59653879722265
Iteration: 16, Func. Count: 196, Neg. LLF: 149.59653219453503
Iteration: 17, Func. Count: 207, Neg. LLF: 149.5965321955656
Optimization terminated successfully (Exit mode 0)
Current function value: 149.59653219453503
Iterations: 17
Function evaluations: 207
Gradient evaluations: 17
Iteration: 1, Func. Count: 14, Neg. LLF: 181.92667844149054
Iteration: 2, Func. Count: 28, Neg. LLF: 149.6755160719836
Iteration: 3, Func. Count: 41, Neg. LLF: 149.67567392619299
Iteration: 4, Func. Count: 55, Neg. LLF: 149.6740888508365
Iteration: 5, Func. Count: 68, Neg. LLF: 149.6690518370874
Iteration: 6, Func. Count: 81, Neg. LLF: 149.6575687056472
Iteration: 7, Func. Count: 94, Neg. LLF: 149.65670761733867
Iteration: 8, Func. Count: 107, Neg. LLF: 149.65602415310232
Iteration: 9, Func. Count: 120, Neg. LLF: 149.6558906222194
Iteration: 10, Func. Count: 133, Neg. LLF: 149.65505655612452
Iteration: 11, Func. Count: 146, Neg. LLF: 149.65052130856986
Iteration: 12, Func. Count: 159, Neg. LLF: 149.63062049877874
Iteration: 13, Func. Count: 172, Neg. LLF: 149.60042823523668
Iteration: 14, Func. Count: 185, Neg. LLF: 149.5993762210207
Iteration: 15, Func. Count: 198, Neg. LLF: 149.5966800451932
Iteration: 16, Func. Count: 211, Neg. LLF: 149.59653292524052
Iteration: 17, Func. Count: 224, Neg. LLF: 149.59653220186135
Optimization terminated successfully (Exit mode 0)
Current function value: 149.59653220186135
Iterations: 17
Function evaluations: 224
Gradient evaluations: 17
Iteration: 1, Func. Count: 15, Neg. LLF: 175.5192061608943
Iteration: 2, Func. Count: 30, Neg. LLF: 149.67381217934243
Iteration: 3, Func. Count: 44, Neg. LLF: 149.6718153954363
Iteration: 4, Func. Count: 58, Neg. LLF: 149.6708088147775
Iteration: 5, Func. Count: 72, Neg. LLF: 149.66990921457582
Iteration: 6, Func. Count: 86, Neg. LLF: 149.6696666147369
Iteration: 7, Func. Count: 100, Neg. LLF: 149.66964106567255
Iteration: 8, Func. Count: 114, Neg. LLF: 149.66960821995295
Iteration: 9, Func. Count: 128, Neg. LLF: 149.66951991295653
Iteration: 10, Func. Count: 142, Neg. LLF: 149.66928358834204
Iteration: 11, Func. Count: 156, Neg. LLF: 149.66837828666274
Iteration: 12, Func. Count: 170, Neg. LLF: 149.65455200363147
Iteration: 13, Func. Count: 184, Neg. LLF: 152.19669183113675
Iteration: 14, Func. Count: 199, Neg. LLF: 151.78893250628087
Iteration: 15, Func. Count: 214, Neg. LLF: 150.98167928431474
Iteration: 16, Func. Count: 229, Neg. LLF: 152.11904754427835
Iteration: 17, Func. Count: 245, Neg. LLF: 185.02606863798678
Iteration: 18, Func. Count: 262, Neg. LLF: 149.58353492017474
Iteration: 19, Func. Count: 276, Neg. LLF: 149.58416248303251
Iteration: 20, Func. Count: 291, Neg. LLF: 149.55872533638262
Iteration: 21, Func. Count: 305, Neg. LLF: 149.55241147280282
Iteration: 22, Func. Count: 319, Neg. LLF: 149.49887423403356
Iteration: 23, Func. Count: 333, Neg. LLF: 149.20059028421431
Iteration: 24, Func. Count: 347, Neg. LLF: 149.0838763989788
Iteration: 25, Func. Count: 361, Neg. LLF: 149.29332674306605
Iteration: 26, Func. Count: 376, Neg. LLF: 149.02108971329525
Iteration: 27, Func. Count: 390, Neg. LLF: 149.02079556513408
Iteration: 28, Func. Count: 404, Neg. LLF: 149.02076223546544
Iteration: 29, Func. Count: 418, Neg. LLF: 149.02072717590704
Iteration: 30, Func. Count: 432, Neg. LLF: 149.02072706566656
Optimization terminated successfully (Exit mode 0)
Current function value: 149.02072706566656
Iterations: 31
Function evaluations: 432
Gradient evaluations: 30
Iteration: 1, Func. Count: 16, Neg. LLF: 170.64116230005942
Iteration: 2, Func. Count: 33, Neg. LLF: 149.6337702006178
Iteration: 3, Func. Count: 48, Neg. LLF: 149.6332234278047
Iteration: 4, Func. Count: 63, Neg. LLF: 149.63260344729133
Iteration: 5, Func. Count: 78, Neg. LLF: 149.63207163211084
Iteration: 6, Func. Count: 93, Neg. LLF: 149.63109720867678
Iteration: 7, Func. Count: 108, Neg. LLF: 149.62928269671474
Iteration: 8, Func. Count: 123, Neg. LLF: 149.62097397397426
Iteration: 9, Func. Count: 138, Neg. LLF: 149.5762374520174
Iteration: 10, Func. Count: 153, Neg. LLF: 150.66412706383522
Iteration: 11, Func. Count: 169, Neg. LLF: 151.46685353137636
Iteration: 12, Func. Count: 185, Neg. LLF: 149.57665314325033
Iteration: 13, Func. Count: 202, Neg. LLF: 149.93880048963246
Iteration: 14, Func. Count: 218, Neg. LLF: 149.09056192587158
Iteration: 15, Func. Count: 233, Neg. LLF: 149.3466014799693
Iteration: 16, Func. Count: 249, Neg. LLF: 149.01630164251264
Iteration: 17, Func. Count: 264, Neg. LLF: 149.00124833458173
Iteration: 18, Func. Count: 279, Neg. LLF: 148.9984156383013
Iteration: 19, Func. Count: 294, Neg. LLF: 148.99715800842142
Iteration: 20, Func. Count: 309, Neg. LLF: 148.99715194133637
Iteration: 21, Func. Count: 324, Neg. LLF: 148.9971502785561
Iteration: 22, Func. Count: 338, Neg. LLF: 148.9971502785628
Optimization terminated successfully (Exit mode 0)
Current function value: 148.9971502785561
Iterations: 22
Function evaluations: 338
Gradient evaluations: 22
Iteration: 1, Func. Count: 5, Neg. LLF: 152.75618403351717
Iteration: 2, Func. Count: 10, Neg. LLF: 157.95368077750186
Iteration: 3, Func. Count: 15, Neg. LLF: 146.0438803623392
Iteration: 4, Func. Count: 19, Neg. LLF: 145.66271551878455
Iteration: 5, Func. Count: 23, Neg. LLF: 145.65712210675272
Iteration: 6, Func. Count: 27, Neg. LLF: 145.6484818954117
Iteration: 7, Func. Count: 31, Neg. LLF: 145.6463735461779
Iteration: 8, Func. Count: 35, Neg. LLF: 145.64601982384912
Iteration: 9, Func. Count: 39, Neg. LLF: 145.6460141046963
Iteration: 10, Func. Count: 42, Neg. LLF: 145.64601411721253
Optimization terminated successfully (Exit mode 0)
Current function value: 145.6460141046963
Iterations: 10
Function evaluations: 42
Gradient evaluations: 10
Iteration: 1, Func. Count: 5, Neg. LLF: 153.3439954989862
Iteration: 2, Func. Count: 10, Neg. LLF: 157.36203358756325
Iteration: 3, Func. Count: 15, Neg. LLF: 148.30647321698257
Iteration: 4, Func. Count: 19, Neg. LLF: 148.03847477682723
Iteration: 5, Func. Count: 23, Neg. LLF: 148.0370931420798
Iteration: 6, Func. Count: 27, Neg. LLF: 148.03701910126114
Iteration: 7, Func. Count: 31, Neg. LLF: 148.0369326056133
Iteration: 8, Func. Count: 35, Neg. LLF: 148.03688096446237
Iteration: 9, Func. Count: 39, Neg. LLF: 148.0368697842388
Iteration: 10, Func. Count: 43, Neg. LLF: 148.03686903855032
Optimization terminated successfully (Exit mode 0)
Current function value: 148.03686903855032
Iterations: 10
Function evaluations: 43
Gradient evaluations: 10
Iteration: 1, Func. Count: 6, Neg. LLF: 23118806.360106956
Iteration: 2, Func. Count: 13, Neg. LLF: 166.90562475511436
Iteration: 3, Func. Count: 19, Neg. LLF: 153.27436909115792
Iteration: 4, Func. Count: 25, Neg. LLF: 148.717276976645
Iteration: 5, Func. Count: 31, Neg. LLF: 148.04717854916262
Iteration: 6, Func. Count: 36, Neg. LLF: 148.0416123842215
Iteration: 7, Func. Count: 42, Neg. LLF: 147.9816728940805
Iteration: 8, Func. Count: 48, Neg. LLF: 147.90748556388718
Iteration: 9, Func. Count: 54, Neg. LLF: 147.89651237385948
Iteration: 10, Func. Count: 59, Neg. LLF: 147.8965100208466
Iteration: 11, Func. Count: 63, Neg. LLF: 147.89651002115642
Optimization terminated successfully (Exit mode 0)
Current function value: 147.8965100208466
Iterations: 11
Function evaluations: 63
Gradient evaluations: 11
Iteration: 1, Func. Count: 7, Neg. LLF: 23119684.95206132
Iteration: 2, Func. Count: 15, Neg. LLF: 153.75711749268243
Iteration: 3, Func. Count: 22, Neg. LLF: 148.25044346427734
Iteration: 4, Func. Count: 28, Neg. LLF: 148.52307509446766
Iteration: 5, Func. Count: 35, Neg. LLF: 148.0095012840794
Iteration: 6, Func. Count: 41, Neg. LLF: 147.95110222943381
Iteration: 7, Func. Count: 47, Neg. LLF: 147.9291281251762
Iteration: 8, Func. Count: 53, Neg. LLF: 147.91844768736308
Iteration: 9, Func. Count: 59, Neg. LLF: 147.91318873320375
Iteration: 10, Func. Count: 65, Neg. LLF: 147.90573204632923
Iteration: 11, Func. Count: 71, Neg. LLF: 147.89738698796214
Iteration: 12, Func. Count: 77, Neg. LLF: 147.89695804334332
Iteration: 13, Func. Count: 83, Neg. LLF: 147.89663977343477
Iteration: 14, Func. Count: 89, Neg. LLF: 147.89657895723246
Iteration: 15, Func. Count: 95, Neg. LLF: 147.8965101943378
Iteration: 16, Func. Count: 101, Neg. LLF: 182.8081829751339
Optimization terminated successfully (Exit mode 0)
Current function value: 147.8965101274669
Iterations: 17
Function evaluations: 105
Gradient evaluations: 16
Iteration: 1, Func. Count: 8, Neg. LLF: 185.26127431268662
Iteration: 2, Func. Count: 17, Neg. LLF: 149.03764376885073
Iteration: 3, Func. Count: 24, Neg. LLF: 148.79572438529513
Iteration: 4, Func. Count: 31, Neg. LLF: 149.23942284964062
Iteration: 5, Func. Count: 39, Neg. LLF: 148.87196108770513
Iteration: 6, Func. Count: 47, Neg. LLF: 147.97511779165495
Iteration: 7, Func. Count: 54, Neg. LLF: 148.1542916395338
Iteration: 8, Func. Count: 62, Neg. LLF: 147.9885086612167
Iteration: 9, Func. Count: 70, Neg. LLF: 147.95162272368879
Iteration: 10, Func. Count: 78, Neg. LLF: 147.9481998989093
Iteration: 11, Func. Count: 85, Neg. LLF: 147.94751989995632
Iteration: 12, Func. Count: 92, Neg. LLF: 147.94744343024178
Iteration: 13, Func. Count: 99, Neg. LLF: 147.94737510962725
Iteration: 14, Func. Count: 106, Neg. LLF: 147.94737314201444
Iteration: 15, Func. Count: 113, Neg. LLF: 147.94737165880198
Iteration: 16, Func. Count: 120, Neg. LLF: 147.9473707199048
Optimization terminated successfully (Exit mode 0)
Current function value: 147.9473707199048
Iterations: 16
Function evaluations: 120
Gradient evaluations: 16
Iteration: 1, Func. Count: 9, Neg. LLF: 186.00144425629142
Iteration: 2, Func. Count: 18, Neg. LLF: 149.2733787288708
Iteration: 3, Func. Count: 26, Neg. LLF: 148.9466232217435
Iteration: 4, Func. Count: 34, Neg. LLF: 148.55919682167496
Iteration: 5, Func. Count: 42, Neg. LLF: 149.1204791158835
Iteration: 6, Func. Count: 51, Neg. LLF: 150.849362073642
Iteration: 7, Func. Count: 60, Neg. LLF: 148.53567023965442
Iteration: 8, Func. Count: 69, Neg. LLF: 147.9806846268929
Iteration: 9, Func. Count: 77, Neg. LLF: 148.01378554011495
Iteration: 10, Func. Count: 86, Neg. LLF: 147.95067623551216
Iteration: 11, Func. Count: 95, Neg. LLF: 147.936765964985
Iteration: 12, Func. Count: 103, Neg. LLF: 147.9307738359289
Iteration: 13, Func. Count: 111, Neg. LLF: 147.93043680312718
Iteration: 14, Func. Count: 119, Neg. LLF: 147.93039847607557
Iteration: 15, Func. Count: 127, Neg. LLF: 147.93039520466834
Iteration: 16, Func. Count: 134, Neg. LLF: 147.9303952045216
Optimization terminated successfully (Exit mode 0)
Current function value: 147.93039520466834
Iterations: 16
Function evaluations: 134
Gradient evaluations: 16
Iteration: 1, Func. Count: 6, Neg. LLF: 152.1554576951543
Iteration: 2, Func. Count: 11, Neg. LLF: 154.58974375737793
Iteration: 3, Func. Count: 17, Neg. LLF: 148.10524895700453
Iteration: 4, Func. Count: 22, Neg. LLF: 148.08511187586691
Iteration: 5, Func. Count: 27, Neg. LLF: 148.0374038380916
Iteration: 6, Func. Count: 32, Neg. LLF: 148.03688224656446
Iteration: 7, Func. Count: 37, Neg. LLF: 148.03686903373506
Iteration: 8, Func. Count: 41, Neg. LLF: 148.03686907345394
Optimization terminated successfully (Exit mode 0)
Current function value: 148.03686903373506
Iterations: 8
Function evaluations: 41
Gradient evaluations: 8
Iteration: 1, Func. Count: 7, Neg. LLF: 23119469.591134552
Iteration: 2, Func. Count: 15, Neg. LLF: 166.85514142888542
Iteration: 3, Func. Count: 22, Neg. LLF: 153.2373172446717
Iteration: 4, Func. Count: 29, Neg. LLF: 148.75609698940238
Iteration: 5, Func. Count: 36, Neg. LLF: 148.0170762518576
Iteration: 6, Func. Count: 42, Neg. LLF: 148.1301621244125
Iteration: 7, Func. Count: 49, Neg. LLF: 148.1943472953058
Iteration: 8, Func. Count: 56, Neg. LLF: 147.90253665053615
Iteration: 9, Func. Count: 62, Neg. LLF: 147.89666780962665
Iteration: 10, Func. Count: 68, Neg. LLF: 147.89651471516342
Iteration: 11, Func. Count: 74, Neg. LLF: 147.89650999037414
Iteration: 12, Func. Count: 79, Neg. LLF: 147.89650999042368
Optimization terminated successfully (Exit mode 0)
Current function value: 147.89650999037414
Iterations: 12
Function evaluations: 79
Gradient evaluations: 12
Iteration: 1, Func. Count: 8, Neg. LLF: 23120133.734378166
Iteration: 2, Func. Count: 17, Neg. LLF: 153.89594473576187
Iteration: 3, Func. Count: 25, Neg. LLF: 148.30179680096626
Iteration: 4, Func. Count: 32, Neg. LLF: 148.60410667973855
Iteration: 5, Func. Count: 40, Neg. LLF: 148.03910555152956
Iteration: 6, Func. Count: 47, Neg. LLF: 147.9536808684362
Iteration: 7, Func. Count: 54, Neg. LLF: 147.93751759297479
Iteration: 8, Func. Count: 61, Neg. LLF: 147.9243891798351
Iteration: 9, Func. Count: 68, Neg. LLF: 147.9161684329592
Iteration: 10, Func. Count: 75, Neg. LLF: 147.9125560869188
Iteration: 11, Func. Count: 82, Neg. LLF: 147.89778493631434
Iteration: 12, Func. Count: 89, Neg. LLF: 147.89666225428687
Iteration: 13, Func. Count: 96, Neg. LLF: 147.89653242206273
Iteration: 14, Func. Count: 103, Neg. LLF: 147.8965105082671
Iteration: 15, Func. Count: 110, Neg. LLF: 147.89651020518124
Optimization terminated successfully (Exit mode 0)
Current function value: 147.89651020518124
Iterations: 15
Function evaluations: 110
Gradient evaluations: 15
Iteration: 1, Func. Count: 9, Neg. LLF: 185.2668410936537
Iteration: 2, Func. Count: 19, Neg. LLF: 149.03532444837026
Iteration: 3, Func. Count: 27, Neg. LLF: 148.78995467586165
Iteration: 4, Func. Count: 35, Neg. LLF: 149.0926280352346
Iteration: 5, Func. Count: 44, Neg. LLF: 148.57719764056975
Iteration: 6, Func. Count: 53, Neg. LLF: 147.98785282397495
Iteration: 7, Func. Count: 61, Neg. LLF: 148.17092036808154
Iteration: 8, Func. Count: 70, Neg. LLF: 148.0476400371088
Iteration: 9, Func. Count: 79, Neg. LLF: 147.95083156880608
Iteration: 10, Func. Count: 87, Neg. LLF: 147.94757615036832
Iteration: 11, Func. Count: 95, Neg. LLF: 147.94739713765287
Iteration: 12, Func. Count: 103, Neg. LLF: 147.94737067305329
Iteration: 13, Func. Count: 110, Neg. LLF: 147.94737067293565
Optimization terminated successfully (Exit mode 0)
Current function value: 147.94737067305329
Iterations: 13
Function evaluations: 110
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 185.99611774322437
Iteration: 2, Func. Count: 20, Neg. LLF: 149.26640821931136
Iteration: 3, Func. Count: 29, Neg. LLF: 148.94002701113155
Iteration: 4, Func. Count: 38, Neg. LLF: 148.54851884944298
Iteration: 5, Func. Count: 47, Neg. LLF: 149.40509864634868
Iteration: 6, Func. Count: 57, Neg. LLF: 151.20943105661166
Iteration: 7, Func. Count: 67, Neg. LLF: 148.78682914126858
Iteration: 8, Func. Count: 77, Neg. LLF: 148.10605457395934
Iteration: 9, Func. Count: 87, Neg. LLF: 147.98343644310737
Iteration: 10, Func. Count: 96, Neg. LLF: 147.9690791529671
Iteration: 11, Func. Count: 105, Neg. LLF: 147.9363261847363
Iteration: 12, Func. Count: 114, Neg. LLF: 147.93341612602026
Iteration: 13, Func. Count: 123, Neg. LLF: 147.93210604664728
Iteration: 14, Func. Count: 132, Neg. LLF: 147.9304635600372
Iteration: 15, Func. Count: 141, Neg. LLF: 147.93039942864016
Iteration: 16, Func. Count: 150, Neg. LLF: 147.93039524021864
Iteration: 17, Func. Count: 158, Neg. LLF: 147.93039524047228
Optimization terminated successfully (Exit mode 0)
Current function value: 147.93039524021864
Iterations: 17
Function evaluations: 158
Gradient evaluations: 17
Iteration: 1, Func. Count: 7, Neg. LLF: 148.33081901905365
Iteration: 2, Func. Count: 13, Neg. LLF: 149.72148820301874
Iteration: 3, Func. Count: 20, Neg. LLF: 148.17480364624907
Iteration: 4, Func. Count: 26, Neg. LLF: 148.0618660715388
Iteration: 5, Func. Count: 32, Neg. LLF: 148.0395346802815
Iteration: 6, Func. Count: 38, Neg. LLF: 148.03690419213345
Iteration: 7, Func. Count: 44, Neg. LLF: 148.03686906858348
Iteration: 8, Func. Count: 49, Neg. LLF: 148.0368692566833
Optimization terminated successfully (Exit mode 0)
Current function value: 148.03686906858348
Iterations: 8
Function evaluations: 49
Gradient evaluations: 8
Iteration: 1, Func. Count: 8, Neg. LLF: 23120330.788619623
Iteration: 2, Func. Count: 17, Neg. LLF: 166.8227865633451
Iteration: 3, Func. Count: 25, Neg. LLF: 153.1951749816292
Iteration: 4, Func. Count: 33, Neg. LLF: 148.80280839283043
Iteration: 5, Func. Count: 41, Neg. LLF: 148.01643895926128
Iteration: 6, Func. Count: 48, Neg. LLF: 148.31486424691892
Iteration: 7, Func. Count: 56, Neg. LLF: 148.6134347724176
Iteration: 8, Func. Count: 64, Neg. LLF: 147.89672614465678
Iteration: 9, Func. Count: 71, Neg. LLF: 147.89651023329384
Iteration: 10, Func. Count: 77, Neg. LLF: 147.896510233071
Optimization terminated successfully (Exit mode 0)
Current function value: 147.89651023329384
Iterations: 10
Function evaluations: 77
Gradient evaluations: 10
Iteration: 1, Func. Count: 9, Neg. LLF: 23120817.846723825
Iteration: 2, Func. Count: 19, Neg. LLF: 153.81144689266029
Iteration: 3, Func. Count: 28, Neg. LLF: 148.2702159761276
Iteration: 4, Func. Count: 36, Neg. LLF: 148.57650638700827
Iteration: 5, Func. Count: 45, Neg. LLF: 148.02856412956794
Iteration: 6, Func. Count: 53, Neg. LLF: 147.95249391985567
Iteration: 7, Func. Count: 61, Neg. LLF: 147.93486601216364
Iteration: 8, Func. Count: 69, Neg. LLF: 147.92202865356347
Iteration: 9, Func. Count: 77, Neg. LLF: 147.91530812857567
Iteration: 10, Func. Count: 85, Neg. LLF: 147.91097830769328
Iteration: 11, Func. Count: 93, Neg. LLF: 147.89754946267576
Iteration: 12, Func. Count: 101, Neg. LLF: 147.8968722445029
Iteration: 13, Func. Count: 109, Neg. LLF: 147.89652801411907
Iteration: 14, Func. Count: 117, Neg. LLF: 147.89651966695956
Iteration: 15, Func. Count: 125, Neg. LLF: 147.89651212847704
Iteration: 16, Func. Count: 133, Neg. LLF: 147.89653341832258
Optimization terminated successfully (Exit mode 0)
Current function value: 147.8965120747182
Iterations: 16
Function evaluations: 135
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 185.2640486451883
Iteration: 2, Func. Count: 21, Neg. LLF: 149.02482761703078
Iteration: 3, Func. Count: 30, Neg. LLF: 148.78153583083184
Iteration: 4, Func. Count: 39, Neg. LLF: 149.03445364141064
Iteration: 5, Func. Count: 49, Neg. LLF: 148.3471737665989
Iteration: 6, Func. Count: 59, Neg. LLF: 148.0617259991175
Iteration: 7, Func. Count: 68, Neg. LLF: 148.35142281489755
Iteration: 8, Func. Count: 78, Neg. LLF: 148.11912193918067
Iteration: 9, Func. Count: 88, Neg. LLF: 148.03472581379327
Iteration: 10, Func. Count: 98, Neg. LLF: 149.49936298767818
Iteration: 11, Func. Count: 108, Neg. LLF: 147.9521504529127
Iteration: 12, Func. Count: 118, Neg. LLF: 148.014803101601
Iteration: 13, Func. Count: 128, Neg. LLF: 147.93718444978708
Iteration: 14, Func. Count: 137, Neg. LLF: 147.91416589207245
Iteration: 15, Func. Count: 146, Neg. LLF: 147.9109736330939
Iteration: 16, Func. Count: 155, Neg. LLF: 147.90925707168125
Iteration: 17, Func. Count: 164, Neg. LLF: 147.90910112040683
Iteration: 18, Func. Count: 173, Neg. LLF: 147.90831556812992
Iteration: 19, Func. Count: 182, Neg. LLF: 147.90583726157595
Iteration: 20, Func. Count: 191, Neg. LLF: 147.90432857960818
Iteration: 21, Func. Count: 200, Neg. LLF: 147.90306203651858
Iteration: 22, Func. Count: 209, Neg. LLF: 147.9019711068553
Iteration: 23, Func. Count: 218, Neg. LLF: 147.9019662342977
Iteration: 24, Func. Count: 226, Neg. LLF: 147.90196623416233
Optimization terminated successfully (Exit mode 0)
Current function value: 147.9019662342977
Iterations: 24
Function evaluations: 226
Gradient evaluations: 24
Iteration: 1, Func. Count: 11, Neg. LLF: 186.00477975099537
Iteration: 2, Func. Count: 22, Neg. LLF: 149.25734465542604
Iteration: 3, Func. Count: 32, Neg. LLF: 148.93156021288993
Iteration: 4, Func. Count: 42, Neg. LLF: 148.52976346853532
Iteration: 5, Func. Count: 52, Neg. LLF: 149.05045074980404
Iteration: 6, Func. Count: 63, Neg. LLF: 151.0591531436637
Iteration: 7, Func. Count: 74, Neg. LLF: 148.38546350956076
Iteration: 8, Func. Count: 85, Neg. LLF: 147.9782124265176
Iteration: 9, Func. Count: 95, Neg. LLF: 147.98592832173534
Iteration: 10, Func. Count: 106, Neg. LLF: 147.9453117756684
Iteration: 11, Func. Count: 116, Neg. LLF: 147.93565327002693
Iteration: 12, Func. Count: 126, Neg. LLF: 147.93249641841538
Iteration: 13, Func. Count: 136, Neg. LLF: 147.93098336576554
Iteration: 14, Func. Count: 146, Neg. LLF: 147.93041870421308
Iteration: 15, Func. Count: 156, Neg. LLF: 147.93039632499983
Iteration: 16, Func. Count: 166, Neg. LLF: 147.9303952491227
Iteration: 17, Func. Count: 175, Neg. LLF: 147.93039524907175
Optimization terminated successfully (Exit mode 0)
Current function value: 147.9303952491227
Iterations: 17
Function evaluations: 175
Gradient evaluations: 17
Iteration: 1, Func. Count: 8, Neg. LLF: 148.3854809112959
Iteration: 2, Func. Count: 15, Neg. LLF: 150.26723693318306
Iteration: 3, Func. Count: 23, Neg. LLF: 148.1810149800873
Iteration: 4, Func. Count: 30, Neg. LLF: 148.06258829608097
Iteration: 5, Func. Count: 37, Neg. LLF: 148.03972013687616
Iteration: 6, Func. Count: 44, Neg. LLF: 148.03690731777945
Iteration: 7, Func. Count: 51, Neg. LLF: 148.03686907978474
Iteration: 8, Func. Count: 57, Neg. LLF: 148.03686947605647
Optimization terminated successfully (Exit mode 0)
Current function value: 148.03686907978474
Iterations: 8
Function evaluations: 57
Gradient evaluations: 8
Iteration: 1, Func. Count: 9, Neg. LLF: 23120712.93977754
Iteration: 2, Func. Count: 19, Neg. LLF: 166.9409936926941
Iteration: 3, Func. Count: 28, Neg. LLF: 153.14628894297678
Iteration: 4, Func. Count: 37, Neg. LLF: 148.7998272513611
Iteration: 5, Func. Count: 46, Neg. LLF: 148.03753761445518
Iteration: 6, Func. Count: 54, Neg. LLF: 152.81603527560355
Iteration: 7, Func. Count: 64, Neg. LLF: 147.98894991723668
Iteration: 8, Func. Count: 73, Neg. LLF: 147.9008155508965
Iteration: 9, Func. Count: 81, Neg. LLF: 147.89687564776813
Iteration: 10, Func. Count: 89, Neg. LLF: 147.8965451545794
Iteration: 11, Func. Count: 97, Neg. LLF: 147.89651020252967
Iteration: 12, Func. Count: 104, Neg. LLF: 147.89651020184814
Optimization terminated successfully (Exit mode 0)
Current function value: 147.89651020252967
Iterations: 12
Function evaluations: 104
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 23121400.208901756
Iteration: 2, Func. Count: 21, Neg. LLF: 153.9900069405119
Iteration: 3, Func. Count: 31, Neg. LLF: 148.34888262417923
Iteration: 4, Func. Count: 40, Neg. LLF: 148.64927814105982
Iteration: 5, Func. Count: 50, Neg. LLF: 148.0898939361894
Iteration: 6, Func. Count: 60, Neg. LLF: 147.95315224562938
Iteration: 7, Func. Count: 69, Neg. LLF: 147.9315145930706
Iteration: 8, Func. Count: 78, Neg. LLF: 147.91878551655438
Iteration: 9, Func. Count: 87, Neg. LLF: 147.91473959563942
Iteration: 10, Func. Count: 96, Neg. LLF: 147.91066690285092
Iteration: 11, Func. Count: 105, Neg. LLF: 147.89709184139033
Iteration: 12, Func. Count: 114, Neg. LLF: 147.89660296247578
Iteration: 13, Func. Count: 123, Neg. LLF: 147.89651353354174
Iteration: 14, Func. Count: 132, Neg. LLF: 147.89652143199837
Optimization terminated successfully (Exit mode 0)
Current function value: 147.89651258443695
Iterations: 14
Function evaluations: 133
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 185.28581261445703
Iteration: 2, Func. Count: 23, Neg. LLF: 149.02010638850328
Iteration: 3, Func. Count: 33, Neg. LLF: 148.7766092423073
Iteration: 4, Func. Count: 43, Neg. LLF: 148.8958707115221
Iteration: 5, Func. Count: 54, Neg. LLF: 148.659419207948
Iteration: 6, Func. Count: 65, Neg. LLF: 148.0515460609892
Iteration: 7, Func. Count: 75, Neg. LLF: 150.52483975820232
Iteration: 8, Func. Count: 87, Neg. LLF: 147.9972047579739
Iteration: 9, Func. Count: 98, Neg. LLF: 147.89205475274431
Iteration: 10, Func. Count: 108, Neg. LLF: 147.89032563586318
Iteration: 11, Func. Count: 118, Neg. LLF: 147.89028546610928
Iteration: 12, Func. Count: 128, Neg. LLF: 147.89028483348804
Optimization terminated successfully (Exit mode 0)
Current function value: 147.89028483348804
Iterations: 12
Function evaluations: 128
Gradient evaluations: 12
Iteration: 1, Func. Count: 12, Neg. LLF: 185.9926303126378
Iteration: 2, Func. Count: 24, Neg. LLF: 149.23147170190532
Iteration: 3, Func. Count: 35, Neg. LLF: 148.90247826126293
Iteration: 4, Func. Count: 46, Neg. LLF: 148.41078243228512
Iteration: 5, Func. Count: 57, Neg. LLF: 148.84503631175326
Iteration: 6, Func. Count: 69, Neg. LLF: 149.5282157980205
Iteration: 7, Func. Count: 81, Neg. LLF: 148.10418537763692
Iteration: 8, Func. Count: 93, Neg. LLF: 147.96966358005216
Iteration: 9, Func. Count: 104, Neg. LLF: 147.96225131044136
Iteration: 10, Func. Count: 115, Neg. LLF: 147.93508714402967
Iteration: 11, Func. Count: 126, Neg. LLF: 147.92959918838264
Iteration: 12, Func. Count: 137, Neg. LLF: 147.92676176428765
Iteration: 13, Func. Count: 148, Neg. LLF: 147.92431280833225
Iteration: 14, Func. Count: 159, Neg. LLF: 147.92157272064225
Iteration: 15, Func. Count: 170, Neg. LLF: 147.9025322942556
Iteration: 16, Func. Count: 181, Neg. LLF: 147.90204312287273
Iteration: 17, Func. Count: 192, Neg. LLF: 147.90196971548224
Iteration: 18, Func. Count: 203, Neg. LLF: 147.90196665320255
Iteration: 19, Func. Count: 213, Neg. LLF: 147.90196665720313
Optimization terminated successfully (Exit mode 0)
Current function value: 147.90196665320255
Iterations: 19
Function evaluations: 213
Gradient evaluations: 19
Iteration: 1, Func. Count: 5, Neg. LLF: 153.02639525680988
Iteration: 2, Func. Count: 9, Neg. LLF: 153.35728405916595
Iteration: 3, Func. Count: 14, Neg. LLF: 151.36260947508143
Iteration: 4, Func. Count: 18, Neg. LLF: 151.32810448611693
Iteration: 5, Func. Count: 22, Neg. LLF: 151.30844867909735
Iteration: 6, Func. Count: 26, Neg. LLF: 151.3039156966631
Iteration: 7, Func. Count: 30, Neg. LLF: 151.30368797980756
Iteration: 8, Func. Count: 33, Neg. LLF: 151.30368800071702
Optimization terminated successfully (Exit mode 0)
Current function value: 151.30368797980756
Iterations: 8
Function evaluations: 33
Gradient evaluations: 8
Iteration: 1, Func. Count: 6, Neg. LLF: 2331.003334423635
Iteration: 2, Func. Count: 13, Neg. LLF: 166.48632944215055
Iteration: 3, Func. Count: 19, Neg. LLF: 153.7664431200589
Iteration: 4, Func. Count: 25, Neg. LLF: 148.69218787703568
Iteration: 5, Func. Count: 30, Neg. LLF: 154.90227485896273
Iteration: 6, Func. Count: 36, Neg. LLF: 157.27597279533634
Iteration: 7, Func. Count: 43, Neg. LLF: 147.97286648981628
Iteration: 8, Func. Count: 48, Neg. LLF: 147.89890929187095
Iteration: 9, Func. Count: 53, Neg. LLF: 147.89699825665878
Iteration: 10, Func. Count: 58, Neg. LLF: 147.89659043257421
Iteration: 11, Func. Count: 63, Neg. LLF: 147.8965346223438
Iteration: 12, Func. Count: 68, Neg. LLF: 147.89651278772797
Iteration: 13, Func. Count: 73, Neg. LLF: 147.89651005057547
Iteration: 14, Func. Count: 77, Neg. LLF: 147.89651005107197
Optimization terminated successfully (Exit mode 0)
Current function value: 147.89651005057547
Iterations: 14
Function evaluations: 77
Gradient evaluations: 14
Iteration: 1, Func. Count: 7, Neg. LLF: 8551.085678513866
Iteration: 2, Func. Count: 15, Neg. LLF: 153.71656567520324
Iteration: 3, Func. Count: 22, Neg. LLF: 148.40981780629326
Iteration: 4, Func. Count: 28, Neg. LLF: 148.37213887868262
Iteration: 5, Func. Count: 35, Neg. LLF: 147.99926997499577
Iteration: 6, Func. Count: 41, Neg. LLF: 147.95269739646474
Iteration: 7, Func. Count: 47, Neg. LLF: 147.9268590708781
Iteration: 8, Func. Count: 53, Neg. LLF: 147.91659964402137
Iteration: 9, Func. Count: 59, Neg. LLF: 147.91056620718695
Iteration: 10, Func. Count: 65, Neg. LLF: 147.900248415471
Iteration: 11, Func. Count: 71, Neg. LLF: 147.89849000271624
Iteration: 12, Func. Count: 77, Neg. LLF: 147.89663763810526
Iteration: 13, Func. Count: 83, Neg. LLF: 147.89656523567533
Iteration: 14, Func. Count: 89, Neg. LLF: 147.8965100216645
Iteration: 15, Func. Count: 94, Neg. LLF: 147.8965100225109
Optimization terminated successfully (Exit mode 0)
Current function value: 147.8965100216645
Iterations: 15
Function evaluations: 94
Gradient evaluations: 15
Iteration: 1, Func. Count: 8, Neg. LLF: 7983.200165018875
Iteration: 2, Func. Count: 17, Neg. LLF: 150.77178767390052
Iteration: 3, Func. Count: 25, Neg. LLF: 147.95050658739805
Iteration: 4, Func. Count: 32, Neg. LLF: 148.09186548531625
Iteration: 5, Func. Count: 40, Neg. LLF: 147.91153863641316
Iteration: 6, Func. Count: 47, Neg. LLF: 147.90496439387442
Iteration: 7, Func. Count: 54, Neg. LLF: 147.90313161686987
Iteration: 8, Func. Count: 61, Neg. LLF: 147.90221782771226
Iteration: 9, Func. Count: 68, Neg. LLF: 147.9019753606185
Iteration: 10, Func. Count: 75, Neg. LLF: 147.90196627335428
Iteration: 11, Func. Count: 81, Neg. LLF: 147.90196627333248
Optimization terminated successfully (Exit mode 0)
Current function value: 147.90196627335428
Iterations: 11
Function evaluations: 81
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 185.61720757558808
Iteration: 2, Func. Count: 18, Neg. LLF: 149.3606442005411
Iteration: 3, Func. Count: 26, Neg. LLF: 149.04430783942513
Iteration: 4, Func. Count: 34, Neg. LLF: 148.7868860757545
Iteration: 5, Func. Count: 42, Neg. LLF: 155.51167900641474
Iteration: 6, Func. Count: 51, Neg. LLF: 158.07214816203486
Iteration: 7, Func. Count: 60, Neg. LLF: 156.2079665629422
Iteration: 8, Func. Count: 69, Neg. LLF: 154.15454480492593
Iteration: 9, Func. Count: 78, Neg. LLF: 152.20678892727344
Iteration: 10, Func. Count: 87, Neg. LLF: 150.72223261122866
Iteration: 11, Func. Count: 96, Neg. LLF: 149.81859328161602
Iteration: 12, Func. Count: 105, Neg. LLF: 149.1530125436898
Iteration: 13, Func. Count: 114, Neg. LLF: 148.44513987779396
Iteration: 14, Func. Count: 123, Neg. LLF: 148.02115388898875
Iteration: 15, Func. Count: 131, Neg. LLF: 147.96475345518687
Iteration: 16, Func. Count: 139, Neg. LLF: 147.95180753753502
Iteration: 17, Func. Count: 147, Neg. LLF: 147.9367563357676
Iteration: 18, Func. Count: 155, Neg. LLF: 147.9330864341617
Iteration: 19, Func. Count: 163, Neg. LLF: 147.93136062961074
Iteration: 20, Func. Count: 171, Neg. LLF: 147.93076458592378
Iteration: 21, Func. Count: 179, Neg. LLF: 147.93041006307368
Iteration: 22, Func. Count: 187, Neg. LLF: 147.93039588493664
Iteration: 23, Func. Count: 195, Neg. LLF: 147.93039519826917
Optimization terminated successfully (Exit mode 0)
Current function value: 147.93039519826917
Iterations: 23
Function evaluations: 195
Gradient evaluations: 23
Iteration: 1, Func. Count: 6, Neg. LLF: 157.54223801208295
Iteration: 2, Func. Count: 12, Neg. LLF: 151.28789757864973
Iteration: 3, Func. Count: 18, Neg. LLF: 148.20737255077668
Iteration: 4, Func. Count: 23, Neg. LLF: 148.05701101772752
Iteration: 5, Func. Count: 28, Neg. LLF: 148.03710413231943
Iteration: 6, Func. Count: 33, Neg. LLF: 148.03704577848424
Iteration: 7, Func. Count: 38, Neg. LLF: 148.03688116981377
Iteration: 8, Func. Count: 43, Neg. LLF: 148.03686908357193
Iteration: 9, Func. Count: 47, Neg. LLF: 148.03686909088626
Optimization terminated successfully (Exit mode 0)
Current function value: 148.03686908357193
Iterations: 9
Function evaluations: 47
Gradient evaluations: 9
Iteration: 1, Func. Count: 7, Neg. LLF: 1344.8150437696147
Iteration: 2, Func. Count: 15, Neg. LLF: 150.93443982241314
Iteration: 3, Func. Count: 22, Neg. LLF: 153.2809098241794
Iteration: 4, Func. Count: 29, Neg. LLF: 148.2167011400488
Iteration: 5, Func. Count: 35, Neg. LLF: 148.3092676012239
Iteration: 6, Func. Count: 42, Neg. LLF: 150.69650078694116
Iteration: 7, Func. Count: 49, Neg. LLF: 147.90224603177862
Iteration: 8, Func. Count: 55, Neg. LLF: 147.89657478802616
Iteration: 9, Func. Count: 61, Neg. LLF: 147.89651130490017
Iteration: 10, Func. Count: 67, Neg. LLF: 147.89651000452173
Iteration: 11, Func. Count: 72, Neg. LLF: 147.89651000488823
Optimization terminated successfully (Exit mode 0)
Current function value: 147.89651000452173
Iterations: 11
Function evaluations: 72
Gradient evaluations: 11
Iteration: 1, Func. Count: 8, Neg. LLF: 2897.7133550775657
Iteration: 2, Func. Count: 17, Neg. LLF: 153.82251249294154
Iteration: 3, Func. Count: 25, Neg. LLF: 148.13056653786646
Iteration: 4, Func. Count: 32, Neg. LLF: 148.1852150645082
Iteration: 5, Func. Count: 40, Neg. LLF: 147.8057230899215
Iteration: 6, Func. Count: 47, Neg. LLF: 147.7745683930939
Iteration: 7, Func. Count: 54, Neg. LLF: 147.77898904475006
Iteration: 8, Func. Count: 62, Neg. LLF: 23150323.153901722
Iteration: 9, Func. Count: 72, Neg. LLF: 5027605.185247127
Iteration: 10, Func. Count: 81, Neg. LLF: 147.7671852501426
Iteration: 11, Func. Count: 89, Neg. LLF: 147.63627270422006
Iteration: 12, Func. Count: 96, Neg. LLF: 147.63622151147203
Iteration: 13, Func. Count: 103, Neg. LLF: 147.63622092145846
Optimization terminated successfully (Exit mode 0)
Current function value: 147.63622092145846
Iterations: 14
Function evaluations: 103
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 184.4716188709308
Iteration: 2, Func. Count: 19, Neg. LLF: 149.09405350108895
Iteration: 3, Func. Count: 27, Neg. LLF: 148.8900561586414
Iteration: 4, Func. Count: 35, Neg. LLF: 148.5243615695314
Iteration: 5, Func. Count: 43, Neg. LLF: 148.4851569473127
Iteration: 6, Func. Count: 52, Neg. LLF: 148.17216998631017
Iteration: 7, Func. Count: 61, Neg. LLF: 147.9668363340723
Iteration: 8, Func. Count: 70, Neg. LLF: 147.90922289288577
Iteration: 9, Func. Count: 78, Neg. LLF: 147.90263347364112
Iteration: 10, Func. Count: 86, Neg. LLF: 147.90211412680094
Iteration: 11, Func. Count: 94, Neg. LLF: 147.90199230987778
Iteration: 12, Func. Count: 102, Neg. LLF: 147.90196917512728
Iteration: 13, Func. Count: 110, Neg. LLF: 147.90196616110114
Iteration: 14, Func. Count: 117, Neg. LLF: 147.90196616114252
Optimization terminated successfully (Exit mode 0)
Current function value: 147.90196616110114
Iterations: 14
Function evaluations: 117
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 185.2995784124588
Iteration: 2, Func. Count: 20, Neg. LLF: 149.35865831794044
Iteration: 3, Func. Count: 29, Neg. LLF: 149.06792108771535
Iteration: 4, Func. Count: 38, Neg. LLF: 148.84090634914543
Iteration: 5, Func. Count: 47, Neg. LLF: 149.29293929202586
Iteration: 6, Func. Count: 57, Neg. LLF: 157.82766006985932
Iteration: 7, Func. Count: 67, Neg. LLF: 151.88257016662163
Iteration: 8, Func. Count: 77, Neg. LLF: 150.35407405962803
Iteration: 9, Func. Count: 87, Neg. LLF: 149.06771503663447
Iteration: 10, Func. Count: 97, Neg. LLF: 148.2618154313549
Iteration: 11, Func. Count: 107, Neg. LLF: 148.010852974403
Iteration: 12, Func. Count: 116, Neg. LLF: 147.96823667249907
Iteration: 13, Func. Count: 125, Neg. LLF: 147.94131718268014
Iteration: 14, Func. Count: 134, Neg. LLF: 147.9354580130429
Iteration: 15, Func. Count: 143, Neg. LLF: 147.9325021600302
Iteration: 16, Func. Count: 152, Neg. LLF: 147.93138351702723
Iteration: 17, Func. Count: 161, Neg. LLF: 147.93044814374966
Iteration: 18, Func. Count: 170, Neg. LLF: 147.93039657585805
Iteration: 19, Func. Count: 179, Neg. LLF: 147.93039521659463
Iteration: 20, Func. Count: 187, Neg. LLF: 147.9303952168034
Optimization terminated successfully (Exit mode 0)
Current function value: 147.93039521659463
Iterations: 20
Function evaluations: 187
Gradient evaluations: 20
Iteration: 1, Func. Count: 7, Neg. LLF: 158.29663951349235
Iteration: 2, Func. Count: 14, Neg. LLF: 152.72899942216523
Iteration: 3, Func. Count: 21, Neg. LLF: 148.26143440198604
Iteration: 4, Func. Count: 27, Neg. LLF: 148.04725348292425
Iteration: 5, Func. Count: 33, Neg. LLF: 148.0376195888959
Iteration: 6, Func. Count: 39, Neg. LLF: 148.04073102485768
Iteration: 7, Func. Count: 46, Neg. LLF: 148.03730570336208
Iteration: 8, Func. Count: 52, Neg. LLF: 148.03689564543888
Iteration: 9, Func. Count: 58, Neg. LLF: 148.03686903049152
Iteration: 10, Func. Count: 63, Neg. LLF: 148.03686907019602
Optimization terminated successfully (Exit mode 0)
Current function value: 148.03686903049152
Iterations: 10
Function evaluations: 63
Gradient evaluations: 10
Iteration: 1, Func. Count: 8, Neg. LLF: 1354.9439441714612
Iteration: 2, Func. Count: 17, Neg. LLF: 150.92061854236508
Iteration: 3, Func. Count: 25, Neg. LLF: 153.22105122841185
Iteration: 4, Func. Count: 33, Neg. LLF: 148.2207115939955
Iteration: 5, Func. Count: 40, Neg. LLF: 148.00159589490053
Iteration: 6, Func. Count: 47, Neg. LLF: 151.85329872776575
Iteration: 7, Func. Count: 55, Neg. LLF: 147.89954743262865
Iteration: 8, Func. Count: 62, Neg. LLF: 147.8966027526891
Iteration: 9, Func. Count: 69, Neg. LLF: 147.89653005645457
Iteration: 10, Func. Count: 76, Neg. LLF: 147.89650999211898
Iteration: 11, Func. Count: 82, Neg. LLF: 147.8965099918693
Optimization terminated successfully (Exit mode 0)
Current function value: 147.89650999211898
Iterations: 11
Function evaluations: 82
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 2891.856654909042
Iteration: 2, Func. Count: 19, Neg. LLF: 153.92546573311344
Iteration: 3, Func. Count: 28, Neg. LLF: 148.17999081378028
Iteration: 4, Func. Count: 36, Neg. LLF: 148.31712262199093
Iteration: 5, Func. Count: 45, Neg. LLF: 147.97652688905276
Iteration: 6, Func. Count: 53, Neg. LLF: 147.9965240741018
Iteration: 7, Func. Count: 62, Neg. LLF: 147.90405529430564
Iteration: 8, Func. Count: 70, Neg. LLF: 147.74631400960925
Iteration: 9, Func. Count: 78, Neg. LLF: 147.65767005868034
Iteration: 10, Func. Count: 86, Neg. LLF: 147.64131588921347
Iteration: 11, Func. Count: 94, Neg. LLF: 147.63636797075722
Iteration: 12, Func. Count: 102, Neg. LLF: 147.6362230349263
Iteration: 13, Func. Count: 110, Neg. LLF: 147.74856413321928
Optimization terminated successfully (Exit mode 0)
Current function value: 147.6362225219429
Iterations: 14
Function evaluations: 113
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 184.46554702088605
Iteration: 2, Func. Count: 21, Neg. LLF: 149.09048276968824
Iteration: 3, Func. Count: 30, Neg. LLF: 148.88336607535012
Iteration: 4, Func. Count: 39, Neg. LLF: 148.47669151647986
Iteration: 5, Func. Count: 48, Neg. LLF: 148.34903151880368
Iteration: 6, Func. Count: 57, Neg. LLF: 149.42553385306283
Iteration: 7, Func. Count: 67, Neg. LLF: 148.00563231922177
Iteration: 8, Func. Count: 77, Neg. LLF: 147.90297632770225
Iteration: 9, Func. Count: 86, Neg. LLF: 147.9021307584851
Iteration: 10, Func. Count: 95, Neg. LLF: 147.90201668682704
Iteration: 11, Func. Count: 104, Neg. LLF: 147.9019691985989
Iteration: 12, Func. Count: 113, Neg. LLF: 147.90196685586056
Iteration: 13, Func. Count: 122, Neg. LLF: 147.90196619864895
Optimization terminated successfully (Exit mode 0)
Current function value: 147.90196619864895
Iterations: 13
Function evaluations: 122
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 185.2848937876696
Iteration: 2, Func. Count: 22, Neg. LLF: 149.35281198606717
Iteration: 3, Func. Count: 32, Neg. LLF: 149.06751866481517
Iteration: 4, Func. Count: 42, Neg. LLF: 148.8362100175991
Iteration: 5, Func. Count: 52, Neg. LLF: 150.32936938570506
Iteration: 6, Func. Count: 63, Neg. LLF: 159.8306238246095
Iteration: 7, Func. Count: 74, Neg. LLF: 154.75767731921485
Iteration: 8, Func. Count: 85, Neg. LLF: 151.76110312684816
Iteration: 9, Func. Count: 96, Neg. LLF: 150.21442172065125
Iteration: 10, Func. Count: 107, Neg. LLF: 149.20266783214436
Iteration: 11, Func. Count: 118, Neg. LLF: 148.46302851139163
Iteration: 12, Func. Count: 129, Neg. LLF: 148.0054426358176
Iteration: 13, Func. Count: 139, Neg. LLF: 147.94665593854066
Iteration: 14, Func. Count: 149, Neg. LLF: 147.95697110603402
Iteration: 15, Func. Count: 160, Neg. LLF: 147.93797631883
Iteration: 16, Func. Count: 171, Neg. LLF: 147.93275950343272
Iteration: 17, Func. Count: 181, Neg. LLF: 147.93069747740356
Iteration: 18, Func. Count: 191, Neg. LLF: 147.93042796984767
Iteration: 19, Func. Count: 201, Neg. LLF: 147.93039529673655
Iteration: 20, Func. Count: 210, Neg. LLF: 147.93039529635251
Optimization terminated successfully (Exit mode 0)
Current function value: 147.93039529673655
Iterations: 20
Function evaluations: 210
Gradient evaluations: 20
Iteration: 1, Func. Count: 8, Neg. LLF: 151.99243957708512
Iteration: 2, Func. Count: 15, Neg. LLF: 152.9033826553823
Iteration: 3, Func. Count: 23, Neg. LLF: 148.0732314677106
Iteration: 4, Func. Count: 30, Neg. LLF: 148.06325606200076
Iteration: 5, Func. Count: 37, Neg. LLF: 148.03806072031523
Iteration: 6, Func. Count: 44, Neg. LLF: 148.03688597348037
Iteration: 7, Func. Count: 51, Neg. LLF: 148.03686903625743
Iteration: 8, Func. Count: 57, Neg. LLF: 148.0368692243581
Optimization terminated successfully (Exit mode 0)
Current function value: 148.03686903625743
Iterations: 8
Function evaluations: 57
Gradient evaluations: 8
Iteration: 1, Func. Count: 9, Neg. LLF: 1383.1582898572078
Iteration: 2, Func. Count: 19, Neg. LLF: 150.9988614716783
Iteration: 3, Func. Count: 28, Neg. LLF: 153.30172206815547
Iteration: 4, Func. Count: 37, Neg. LLF: 148.24238155623172
Iteration: 5, Func. Count: 45, Neg. LLF: 148.1141874451
Iteration: 6, Func. Count: 53, Neg. LLF: 153.0384967073896
Iteration: 7, Func. Count: 62, Neg. LLF: 147.90571399522776
Iteration: 8, Func. Count: 70, Neg. LLF: 147.89734849762857
Iteration: 9, Func. Count: 78, Neg. LLF: 147.89651317122937
Iteration: 10, Func. Count: 86, Neg. LLF: 147.8965100365292
Iteration: 11, Func. Count: 93, Neg. LLF: 147.89651003608327
Optimization terminated successfully (Exit mode 0)
Current function value: 147.8965100365292
Iterations: 11
Function evaluations: 93
Gradient evaluations: 11
Iteration: 1, Func. Count: 10, Neg. LLF: 2972.5485979348277
Iteration: 2, Func. Count: 21, Neg. LLF: 153.83333675522502
Iteration: 3, Func. Count: 31, Neg. LLF: 148.1596303593299
Iteration: 4, Func. Count: 40, Neg. LLF: 148.26401507282878
Iteration: 5, Func. Count: 50, Neg. LLF: 147.7647927943437
Iteration: 6, Func. Count: 59, Neg. LLF: 147.63633778781536
Iteration: 7, Func. Count: 68, Neg. LLF: 147.57906139473357
Iteration: 8, Func. Count: 77, Neg. LLF: 23117925.333119933
Iteration: 9, Func. Count: 89, Neg. LLF: 102071.93719766688
Iteration: 10, Func. Count: 101, Neg. LLF: 147.53075811510828
Iteration: 11, Func. Count: 110, Neg. LLF: 147.4881395915156
Iteration: 12, Func. Count: 119, Neg. LLF: 147.4881303925658
Iteration: 13, Func. Count: 127, Neg. LLF: 147.48813039226584
Optimization terminated successfully (Exit mode 0)
Current function value: 147.4881303925658
Iterations: 14
Function evaluations: 127
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 184.45688326137298
Iteration: 2, Func. Count: 23, Neg. LLF: 149.07739158034317
Iteration: 3, Func. Count: 33, Neg. LLF: 148.87600161521638
Iteration: 4, Func. Count: 43, Neg. LLF: 148.38870213534733
Iteration: 5, Func. Count: 53, Neg. LLF: 148.17540556602424
Iteration: 6, Func. Count: 63, Neg. LLF: 148.99010009775006
Iteration: 7, Func. Count: 74, Neg. LLF: 147.9790638810708
Iteration: 8, Func. Count: 85, Neg. LLF: 147.9023515520942
Iteration: 9, Func. Count: 95, Neg. LLF: 147.9020227816342
Iteration: 10, Func. Count: 105, Neg. LLF: 147.9019804909031
Iteration: 11, Func. Count: 115, Neg. LLF: 147.90196779569078
Iteration: 12, Func. Count: 125, Neg. LLF: 147.90196632881225
Iteration: 13, Func. Count: 134, Neg. LLF: 147.90196632928274
Optimization terminated successfully (Exit mode 0)
Current function value: 147.90196632881225
Iterations: 13
Function evaluations: 134
Gradient evaluations: 13
Iteration: 1, Func. Count: 12, Neg. LLF: 185.2878641766609
Iteration: 2, Func. Count: 24, Neg. LLF: 149.34023144556426
Iteration: 3, Func. Count: 35, Neg. LLF: 149.0647214829507
Iteration: 4, Func. Count: 46, Neg. LLF: 148.83868632009893
Iteration: 5, Func. Count: 57, Neg. LLF: 149.50205687607388
Iteration: 6, Func. Count: 69, Neg. LLF: 157.70293409960803
Iteration: 7, Func. Count: 81, Neg. LLF: 152.18485181188586
Iteration: 8, Func. Count: 93, Neg. LLF: 150.45268832511292
Iteration: 9, Func. Count: 105, Neg. LLF: 149.19479573285204
Iteration: 10, Func. Count: 117, Neg. LLF: 148.45831850387685
Iteration: 11, Func. Count: 129, Neg. LLF: 147.99559189390695
Iteration: 12, Func. Count: 140, Neg. LLF: 147.94198219750055
Iteration: 13, Func. Count: 151, Neg. LLF: 147.9401442171518
Iteration: 14, Func. Count: 162, Neg. LLF: 147.93755965897614
Iteration: 15, Func. Count: 173, Neg. LLF: 147.9337238373018
Iteration: 16, Func. Count: 184, Neg. LLF: 147.931425095048
Iteration: 17, Func. Count: 195, Neg. LLF: 147.93068965837293
Iteration: 18, Func. Count: 206, Neg. LLF: 147.9304110559674
Iteration: 19, Func. Count: 217, Neg. LLF: 147.93039539309288
Iteration: 20, Func. Count: 227, Neg. LLF: 147.93039539312002
Optimization terminated successfully (Exit mode 0)
Current function value: 147.93039539309288
Iterations: 20
Function evaluations: 227
Gradient evaluations: 20
Iteration: 1, Func. Count: 9, Neg. LLF: 151.817585177476
Iteration: 2, Func. Count: 17, Neg. LLF: 153.02594821893274
Iteration: 3, Func. Count: 26, Neg. LLF: 148.07361144922098
Iteration: 4, Func. Count: 34, Neg. LLF: 148.06350482450534
Iteration: 5, Func. Count: 42, Neg. LLF: 148.03796485786665
Iteration: 6, Func. Count: 50, Neg. LLF: 148.0368847382487
Iteration: 7, Func. Count: 58, Neg. LLF: 148.0368690356984
Iteration: 8, Func. Count: 65, Neg. LLF: 148.03686943198807
Optimization terminated successfully (Exit mode 0)
Current function value: 148.0368690356984
Iterations: 8
Function evaluations: 65
Gradient evaluations: 8
Iteration: 1, Func. Count: 10, Neg. LLF: 1426.4994440459902
Iteration: 2, Func. Count: 21, Neg. LLF: 151.18795891769568
Iteration: 3, Func. Count: 31, Neg. LLF: 153.52535935711097
Iteration: 4, Func. Count: 41, Neg. LLF: 148.27862249240337
Iteration: 5, Func. Count: 50, Neg. LLF: 150.24009900710942
Iteration: 6, Func. Count: 60, Neg. LLF: 148.55182223793244
Iteration: 7, Func. Count: 70, Neg. LLF: 147.9008798299098
Iteration: 8, Func. Count: 79, Neg. LLF: 147.89659193031585
Iteration: 9, Func. Count: 88, Neg. LLF: 147.89651657984498
Iteration: 10, Func. Count: 97, Neg. LLF: 147.89651025497432
Iteration: 11, Func. Count: 105, Neg. LLF: 147.89651025416538
Optimization terminated successfully (Exit mode 0)
Current function value: 147.89651025497432
Iterations: 11
Function evaluations: 105
Gradient evaluations: 11
Iteration: 1, Func. Count: 11, Neg. LLF: 3046.1660578446636
Iteration: 2, Func. Count: 23, Neg. LLF: 153.94908822653187
Iteration: 3, Func. Count: 34, Neg. LLF: 148.1979135823143
Iteration: 4, Func. Count: 44, Neg. LLF: 148.35158925197993
Iteration: 5, Func. Count: 55, Neg. LLF: 147.9797525658993
Iteration: 6, Func. Count: 65, Neg. LLF: 148.13680052436405
Iteration: 7, Func. Count: 76, Neg. LLF: 147.7990926367687
Iteration: 8, Func. Count: 86, Neg. LLF: 148.1529200448225
Iteration: 9, Func. Count: 97, Neg. LLF: 147.54207433327318
Iteration: 10, Func. Count: 107, Neg. LLF: 147.50136841177812
Iteration: 11, Func. Count: 117, Neg. LLF: 147.4888998778771
Iteration: 12, Func. Count: 127, Neg. LLF: 147.48815950747567
Iteration: 13, Func. Count: 137, Neg. LLF: 4918855.17033877
Iteration: 14, Func. Count: 151, Neg. LLF: 148.11709237975802
Iteration: 15, Func. Count: 164, Neg. LLF: 147.48813616637352
Iteration: 16, Func. Count: 174, Neg. LLF: 147.48813037265205
Iteration: 17, Func. Count: 183, Neg. LLF: 147.48813037265296
Optimization terminated successfully (Exit mode 0)
Current function value: 147.48813037265205
Iterations: 18
Function evaluations: 183
Gradient evaluations: 17
Iteration: 1, Func. Count: 12, Neg. LLF: 184.47457607276777
Iteration: 2, Func. Count: 25, Neg. LLF: 149.0720971150497
Iteration: 3, Func. Count: 36, Neg. LLF: 148.8739506576424
Iteration: 4, Func. Count: 47, Neg. LLF: 148.90814030715796
Iteration: 5, Func. Count: 59, Neg. LLF: 150.0057411021967
Iteration: 6, Func. Count: 71, Neg. LLF: 150.2088541483129
Iteration: 7, Func. Count: 83, Neg. LLF: 150.49057875568056
Iteration: 8, Func. Count: 95, Neg. LLF: 148.603529611868
Iteration: 9, Func. Count: 107, Neg. LLF: 147.92823182838956
Iteration: 10, Func. Count: 118, Neg. LLF: 147.92800311193733
Iteration: 11, Func. Count: 130, Neg. LLF: 147.89214387299896
Iteration: 12, Func. Count: 142, Neg. LLF: 147.89028726846072
Iteration: 13, Func. Count: 153, Neg. LLF: 147.8902845542968
Iteration: 14, Func. Count: 163, Neg. LLF: 147.8902845541883
Optimization terminated successfully (Exit mode 0)
Current function value: 147.8902845542968
Iterations: 14
Function evaluations: 163
Gradient evaluations: 14
Iteration: 1, Func. Count: 13, Neg. LLF: 185.27301048343108
Iteration: 2, Func. Count: 26, Neg. LLF: 149.31356369974003
Iteration: 3, Func. Count: 38, Neg. LLF: 149.04077612544816
Iteration: 4, Func. Count: 50, Neg. LLF: 148.77551425250212
Iteration: 5, Func. Count: 62, Neg. LLF: 153.89503641380438
Iteration: 6, Func. Count: 75, Neg. LLF: 157.44402456067738
Iteration: 7, Func. Count: 88, Neg. LLF: 157.17439544323176
Iteration: 8, Func. Count: 101, Neg. LLF: 152.9946496913061
Iteration: 9, Func. Count: 114, Neg. LLF: 150.97602644982416
Iteration: 10, Func. Count: 127, Neg. LLF: 149.72767101700455
Iteration: 11, Func. Count: 140, Neg. LLF: 148.9160559336795
Iteration: 12, Func. Count: 153, Neg. LLF: 148.16486394401636
Iteration: 13, Func. Count: 166, Neg. LLF: 148.00066223659684
Iteration: 14, Func. Count: 178, Neg. LLF: 147.9915809185244
Iteration: 15, Func. Count: 191, Neg. LLF: 147.97711595778202
Iteration: 16, Func. Count: 204, Neg. LLF: 147.93434405378957
Iteration: 17, Func. Count: 216, Neg. LLF: 147.93156849310108
Iteration: 18, Func. Count: 228, Neg. LLF: 147.9305199812041
Iteration: 19, Func. Count: 240, Neg. LLF: 147.9303990747215
Iteration: 20, Func. Count: 252, Neg. LLF: 147.9303954692122
Iteration: 21, Func. Count: 263, Neg. LLF: 147.93039546972116
Optimization terminated successfully (Exit mode 0)
Current function value: 147.9303954692122
Iterations: 21
Function evaluations: 263
Gradient evaluations: 21
Iteration: 1, Func. Count: 6, Neg. LLF: 153.68472462718935
Iteration: 2, Func. Count: 11, Neg. LLF: 153.801230187536
Iteration: 3, Func. Count: 17, Neg. LLF: 151.3851235214813
Iteration: 4, Func. Count: 22, Neg. LLF: 151.33960710449063
Iteration: 5, Func. Count: 27, Neg. LLF: 151.3106173938316
Iteration: 6, Func. Count: 32, Neg. LLF: 151.3040454263185
Iteration: 7, Func. Count: 37, Neg. LLF: 151.3036877317418
Iteration: 8, Func. Count: 41, Neg. LLF: 151.3036877355457
Optimization terminated successfully (Exit mode 0)
Current function value: 151.3036877317418
Iterations: 8
Function evaluations: 41
Gradient evaluations: 8
Iteration: 1, Func. Count: 7, Neg. LLF: 2492.3083208293856
Iteration: 2, Func. Count: 15, Neg. LLF: 166.648053499863
Iteration: 3, Func. Count: 22, Neg. LLF: 153.77891836465614
Iteration: 4, Func. Count: 29, Neg. LLF: 148.68991196086995
Iteration: 5, Func. Count: 35, Neg. LLF: 154.9444841084982
Iteration: 6, Func. Count: 42, Neg. LLF: 156.34970849057515
Iteration: 7, Func. Count: 50, Neg. LLF: 147.96482330294228
Iteration: 8, Func. Count: 56, Neg. LLF: 147.89865187023946
Iteration: 9, Func. Count: 62, Neg. LLF: 147.89698287779916
Iteration: 10, Func. Count: 68, Neg. LLF: 147.89662564573132
Iteration: 11, Func. Count: 74, Neg. LLF: 147.8965392962531
Iteration: 12, Func. Count: 80, Neg. LLF: 147.89651245802028
Iteration: 13, Func. Count: 86, Neg. LLF: 147.89651003076787
Iteration: 14, Func. Count: 91, Neg. LLF: 147.89651003113656
Optimization terminated successfully (Exit mode 0)
Current function value: 147.89651003076787
Iterations: 14
Function evaluations: 91
Gradient evaluations: 14
Iteration: 1, Func. Count: 8, Neg. LLF: 10291.85721110145
Iteration: 2, Func. Count: 17, Neg. LLF: 153.92489583252865
Iteration: 3, Func. Count: 25, Neg. LLF: 148.55971981619948
Iteration: 4, Func. Count: 32, Neg. LLF: 148.38783666203864
Iteration: 5, Func. Count: 40, Neg. LLF: 148.02061166414774
Iteration: 6, Func. Count: 47, Neg. LLF: 147.9592343471814
Iteration: 7, Func. Count: 54, Neg. LLF: 147.93941309061188
Iteration: 8, Func. Count: 61, Neg. LLF: 147.9247915056903
Iteration: 9, Func. Count: 68, Neg. LLF: 147.9132451256527
Iteration: 10, Func. Count: 75, Neg. LLF: 147.9097243178222
Iteration: 11, Func. Count: 82, Neg. LLF: 147.89942482807518
Iteration: 12, Func. Count: 89, Neg. LLF: 147.8968016602813
Iteration: 13, Func. Count: 96, Neg. LLF: 147.89655009420443
Iteration: 14, Func. Count: 103, Neg. LLF: 147.89651040789207
Iteration: 15, Func. Count: 110, Neg. LLF: 147.89651023363223
Optimization terminated successfully (Exit mode 0)
Current function value: 147.89651023363223
Iterations: 15
Function evaluations: 110
Gradient evaluations: 15
Iteration: 1, Func. Count: 9, Neg. LLF: 8949.772175521048
Iteration: 2, Func. Count: 19, Neg. LLF: 150.9293693365311
Iteration: 3, Func. Count: 28, Neg. LLF: 147.94474290470743
Iteration: 4, Func. Count: 36, Neg. LLF: 148.01768505959762
Iteration: 5, Func. Count: 45, Neg. LLF: 147.9069175052635
Iteration: 6, Func. Count: 53, Neg. LLF: 147.90378960882853
Iteration: 7, Func. Count: 61, Neg. LLF: 147.90268013245947
Iteration: 8, Func. Count: 69, Neg. LLF: 147.90201173561164
Iteration: 9, Func. Count: 77, Neg. LLF: 147.90196765441067
Iteration: 10, Func. Count: 85, Neg. LLF: 147.90196621218112
Iteration: 11, Func. Count: 92, Neg. LLF: 147.90196621234307
Optimization terminated successfully (Exit mode 0)
Current function value: 147.90196621218112
Iterations: 11
Function evaluations: 92
Gradient evaluations: 11
Iteration: 1, Func. Count: 10, Neg. LLF: 185.65795497162662
Iteration: 2, Func. Count: 20, Neg. LLF: 149.38379751036274
Iteration: 3, Func. Count: 29, Neg. LLF: 149.04941645430478
Iteration: 4, Func. Count: 38, Neg. LLF: 148.81850781785883
Iteration: 5, Func. Count: 47, Neg. LLF: 152.82436744509727
Iteration: 6, Func. Count: 57, Neg. LLF: 155.65958057133787
Iteration: 7, Func. Count: 67, Neg. LLF: 153.87992628071908
Iteration: 8, Func. Count: 77, Neg. LLF: 153.01472082466324
Iteration: 9, Func. Count: 87, Neg. LLF: 151.91875271224555
Iteration: 10, Func. Count: 97, Neg. LLF: 150.64990848029964
Iteration: 11, Func. Count: 107, Neg. LLF: 149.74321123214955
Iteration: 12, Func. Count: 117, Neg. LLF: 148.22272713106867
Iteration: 13, Func. Count: 127, Neg. LLF: 148.02433220381815
Iteration: 14, Func. Count: 136, Neg. LLF: 148.0059345851888
Iteration: 15, Func. Count: 145, Neg. LLF: 147.97664466870694
Iteration: 16, Func. Count: 154, Neg. LLF: 147.9495078645766
Iteration: 17, Func. Count: 163, Neg. LLF: 147.9381534532936
Iteration: 18, Func. Count: 172, Neg. LLF: 147.9324405017629
Iteration: 19, Func. Count: 181, Neg. LLF: 147.93083352120325
Iteration: 20, Func. Count: 190, Neg. LLF: 147.93040398459365
Iteration: 21, Func. Count: 199, Neg. LLF: 147.93039592626005
Iteration: 22, Func. Count: 208, Neg. LLF: 147.93039520222203
Optimization terminated successfully (Exit mode 0)
Current function value: 147.93039520222203
Iterations: 22
Function evaluations: 208
Gradient evaluations: 22
Iteration: 1, Func. Count: 7, Neg. LLF: 155.8812751478421
Iteration: 2, Func. Count: 14, Neg. LLF: 156.0592981560778
Iteration: 3, Func. Count: 21, Neg. LLF: 148.31261729133982
Iteration: 4, Func. Count: 27, Neg. LLF: 148.07500478135418
Iteration: 5, Func. Count: 33, Neg. LLF: 148.03785990826907
Iteration: 6, Func. Count: 39, Neg. LLF: 148.03698511801375
Iteration: 7, Func. Count: 45, Neg. LLF: 148.03688571129047
Iteration: 8, Func. Count: 51, Neg. LLF: 148.0368807073675
Iteration: 9, Func. Count: 57, Neg. LLF: 148.03686915319463
Iteration: 10, Func. Count: 62, Neg. LLF: 148.03686916051234
Optimization terminated successfully (Exit mode 0)
Current function value: 148.03686915319463
Iterations: 10
Function evaluations: 62
Gradient evaluations: 10
Iteration: 1, Func. Count: 8, Neg. LLF: 1390.530922380283
Iteration: 2, Func. Count: 17, Neg. LLF: 151.3889849015393
Iteration: 3, Func. Count: 25, Neg. LLF: 153.7623919174512
Iteration: 4, Func. Count: 33, Neg. LLF: 148.30380330616455
Iteration: 5, Func. Count: 40, Neg. LLF: 153.54276142466398
Iteration: 6, Func. Count: 48, Neg. LLF: 148.58808581284407
Iteration: 7, Func. Count: 56, Neg. LLF: 147.90132212781543
Iteration: 8, Func. Count: 63, Neg. LLF: 147.89695686660951
Iteration: 9, Func. Count: 70, Neg. LLF: 147.89659592772549
Iteration: 10, Func. Count: 77, Neg. LLF: 147.89651033425994
Iteration: 11, Func. Count: 83, Neg. LLF: 147.89651033370953
Optimization terminated successfully (Exit mode 0)
Current function value: 147.89651033425994
Iterations: 11
Function evaluations: 83
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 3060.850318943021
Iteration: 2, Func. Count: 19, Neg. LLF: 154.04173717199657
Iteration: 3, Func. Count: 28, Neg. LLF: 148.1896427816777
Iteration: 4, Func. Count: 36, Neg. LLF: 148.2643614463065
Iteration: 5, Func. Count: 45, Neg. LLF: 147.86136005216298
Iteration: 6, Func. Count: 53, Neg. LLF: 147.86355164558287
Iteration: 7, Func. Count: 62, Neg. LLF: 147.80254823271747
Iteration: 8, Func. Count: 70, Neg. LLF: 147.73063803233464
Iteration: 9, Func. Count: 78, Neg. LLF: 147.7511967874623
Iteration: 10, Func. Count: 87, Neg. LLF: 23118260.487215854
Iteration: 11, Func. Count: 98, Neg. LLF: 5982148.533533881
Iteration: 12, Func. Count: 109, Neg. LLF: 147.65481463889168
Iteration: 13, Func. Count: 117, Neg. LLF: 147.63625880460293
Iteration: 14, Func. Count: 125, Neg. LLF: 147.6362209451187
Iteration: 15, Func. Count: 132, Neg. LLF: 147.63622094501736
Optimization terminated successfully (Exit mode 0)
Current function value: 147.6362209451187
Iterations: 16
Function evaluations: 132
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 184.5108605677929
Iteration: 2, Func. Count: 21, Neg. LLF: 149.10269309200996
Iteration: 3, Func. Count: 30, Neg. LLF: 148.8851580473996
Iteration: 4, Func. Count: 39, Neg. LLF: 148.5216119331673
Iteration: 5, Func. Count: 48, Neg. LLF: 148.43733312151844
Iteration: 6, Func. Count: 58, Neg. LLF: 148.24698125737132
Iteration: 7, Func. Count: 68, Neg. LLF: 147.93508565854444
Iteration: 8, Func. Count: 77, Neg. LLF: 147.93508873390545
Iteration: 9, Func. Count: 87, Neg. LLF: 147.9037791044777
Iteration: 10, Func. Count: 96, Neg. LLF: 147.90209475795086
Iteration: 11, Func. Count: 105, Neg. LLF: 147.90199773935913
Iteration: 12, Func. Count: 114, Neg. LLF: 147.90196990396834
Iteration: 13, Func. Count: 123, Neg. LLF: 147.90196644456222
Iteration: 14, Func. Count: 131, Neg. LLF: 147.901966445168
Optimization terminated successfully (Exit mode 0)
Current function value: 147.90196644456222
Iterations: 14
Function evaluations: 131
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 185.33123502736277
Iteration: 2, Func. Count: 22, Neg. LLF: 149.38019884263085
Iteration: 3, Func. Count: 32, Neg. LLF: 149.07052544444886
Iteration: 4, Func. Count: 42, Neg. LLF: 148.84020282132985
Iteration: 5, Func. Count: 52, Neg. LLF: 149.614133192936
Iteration: 6, Func. Count: 63, Neg. LLF: 161.47098194180336
Iteration: 7, Func. Count: 74, Neg. LLF: 153.67082247177788
Iteration: 8, Func. Count: 85, Neg. LLF: 151.43955308337388
Iteration: 9, Func. Count: 96, Neg. LLF: 149.79253434282964
Iteration: 10, Func. Count: 107, Neg. LLF: 149.01559958979684
Iteration: 11, Func. Count: 118, Neg. LLF: 148.1912058482543
Iteration: 12, Func. Count: 129, Neg. LLF: 148.0273379615278
Iteration: 13, Func. Count: 139, Neg. LLF: 147.93753925919535
Iteration: 14, Func. Count: 149, Neg. LLF: 147.93402930222217
Iteration: 15, Func. Count: 159, Neg. LLF: 147.93238268192093
Iteration: 16, Func. Count: 169, Neg. LLF: 147.93046744072504
Iteration: 17, Func. Count: 179, Neg. LLF: 147.93040227654205
Iteration: 18, Func. Count: 189, Neg. LLF: 147.9303953336181
Iteration: 19, Func. Count: 198, Neg. LLF: 147.93039533339956
Optimization terminated successfully (Exit mode 0)
Current function value: 147.9303953336181
Iterations: 19
Function evaluations: 198
Gradient evaluations: 19
Iteration: 1, Func. Count: 8, Neg. LLF: 159.19359740714913
Iteration: 2, Func. Count: 16, Neg. LLF: 154.39878876033623
Iteration: 3, Func. Count: 24, Neg. LLF: 148.30043962529706
Iteration: 4, Func. Count: 31, Neg. LLF: 148.1288695082386
Iteration: 5, Func. Count: 38, Neg. LLF: 148.04226289247538
Iteration: 6, Func. Count: 45, Neg. LLF: 148.0402903482467
Iteration: 7, Func. Count: 52, Neg. LLF: 148.03781766315393
Iteration: 8, Func. Count: 59, Neg. LLF: 148.03750320122342
Iteration: 9, Func. Count: 66, Neg. LLF: 148.03688476208987
Iteration: 10, Func. Count: 73, Neg. LLF: 148.03686956677313
Iteration: 11, Func. Count: 80, Neg. LLF: 148.03686902774493
Optimization terminated successfully (Exit mode 0)
Current function value: 148.03686902774493
Iterations: 11
Function evaluations: 80
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 1403.3872657492366
Iteration: 2, Func. Count: 19, Neg. LLF: 151.38721076238213
Iteration: 3, Func. Count: 28, Neg. LLF: 153.73168689113794
Iteration: 4, Func. Count: 37, Neg. LLF: 148.30515189336174
Iteration: 5, Func. Count: 45, Neg. LLF: 153.58813495133882
Iteration: 6, Func. Count: 54, Neg. LLF: 148.45760433575694
Iteration: 7, Func. Count: 63, Neg. LLF: 147.9000343874264
Iteration: 8, Func. Count: 71, Neg. LLF: 147.89692216337022
Iteration: 9, Func. Count: 79, Neg. LLF: 147.89657513510053
Iteration: 10, Func. Count: 87, Neg. LLF: 147.89651004247182
Iteration: 11, Func. Count: 94, Neg. LLF: 147.8965100425524
Optimization terminated successfully (Exit mode 0)
Current function value: 147.89651004247182
Iterations: 11
Function evaluations: 94
Gradient evaluations: 11
Iteration: 1, Func. Count: 10, Neg. LLF: 3062.697154469379
Iteration: 2, Func. Count: 21, Neg. LLF: 154.12088332244846
Iteration: 3, Func. Count: 31, Neg. LLF: 148.22739719975831
Iteration: 4, Func. Count: 40, Neg. LLF: 148.36758426482507
Iteration: 5, Func. Count: 50, Neg. LLF: 147.6956005204633
Iteration: 6, Func. Count: 59, Neg. LLF: 154.90860637723972
Iteration: 7, Func. Count: 70, Neg. LLF: 147.65914161519242
Iteration: 8, Func. Count: 80, Neg. LLF: 147.59917043564153
Iteration: 9, Func. Count: 89, Neg. LLF: 147.59429035843166
Iteration: 10, Func. Count: 98, Neg. LLF: 147.5875533514991
Iteration: 11, Func. Count: 107, Neg. LLF: 147.58245221153243
Iteration: 12, Func. Count: 116, Neg. LLF: 147.58129028954477
Iteration: 13, Func. Count: 125, Neg. LLF: 147.580971205316
Iteration: 14, Func. Count: 134, Neg. LLF: 151.15002736277407
Optimization terminated successfully (Exit mode 0)
Current function value: 147.58097084447616
Iterations: 15
Function evaluations: 138
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 184.50823436836737
Iteration: 2, Func. Count: 23, Neg. LLF: 149.09771720791417
Iteration: 3, Func. Count: 33, Neg. LLF: 148.87817605013575
Iteration: 4, Func. Count: 43, Neg. LLF: 148.46305249184118
Iteration: 5, Func. Count: 53, Neg. LLF: 148.32096846406273
Iteration: 6, Func. Count: 63, Neg. LLF: 149.2898930028118
Iteration: 7, Func. Count: 74, Neg. LLF: 148.01714547918863
Iteration: 8, Func. Count: 85, Neg. LLF: 147.90289120510758
Iteration: 9, Func. Count: 95, Neg. LLF: 147.9019974602327
Iteration: 10, Func. Count: 105, Neg. LLF: 147.901976864777
Iteration: 11, Func. Count: 115, Neg. LLF: 147.90196669763515
Iteration: 12, Func. Count: 124, Neg. LLF: 147.90196669833304
Optimization terminated successfully (Exit mode 0)
Current function value: 147.90196669763515
Iterations: 12
Function evaluations: 124
Gradient evaluations: 12
Iteration: 1, Func. Count: 12, Neg. LLF: 185.31935534524982
Iteration: 2, Func. Count: 24, Neg. LLF: 149.36966278381905
Iteration: 3, Func. Count: 35, Neg. LLF: 149.0734496479481
Iteration: 4, Func. Count: 46, Neg. LLF: 148.85313383646493
Iteration: 5, Func. Count: 57, Neg. LLF: 149.2947529759909
Iteration: 6, Func. Count: 69, Neg. LLF: 160.12572981204335
Iteration: 7, Func. Count: 81, Neg. LLF: 152.57146235372144
Iteration: 8, Func. Count: 93, Neg. LLF: 150.75928946653187
Iteration: 9, Func. Count: 105, Neg. LLF: 149.34337163009639
Iteration: 10, Func. Count: 117, Neg. LLF: 148.4305865620392
Iteration: 11, Func. Count: 129, Neg. LLF: 148.0197346867332
Iteration: 12, Func. Count: 140, Neg. LLF: 147.99646349604086
Iteration: 13, Func. Count: 151, Neg. LLF: 147.95754630574712
Iteration: 14, Func. Count: 162, Neg. LLF: 147.94466472059543
Iteration: 15, Func. Count: 173, Neg. LLF: 147.93469538870806
Iteration: 16, Func. Count: 184, Neg. LLF: 147.9322891251579
Iteration: 17, Func. Count: 195, Neg. LLF: 147.93100779094473
Iteration: 18, Func. Count: 206, Neg. LLF: 147.93044243644084
Iteration: 19, Func. Count: 217, Neg. LLF: 147.93039558650543
Iteration: 20, Func. Count: 227, Neg. LLF: 147.93039558648974
Optimization terminated successfully (Exit mode 0)
Current function value: 147.93039558650543
Iterations: 20
Function evaluations: 227
Gradient evaluations: 20
Iteration: 1, Func. Count: 9, Neg. LLF: 152.81470366495597
Iteration: 2, Func. Count: 17, Neg. LLF: 153.94847446566894
Iteration: 3, Func. Count: 26, Neg. LLF: 148.09266497005126
Iteration: 4, Func. Count: 34, Neg. LLF: 148.07733566780868
Iteration: 5, Func. Count: 42, Neg. LLF: 148.03856948773088
Iteration: 6, Func. Count: 50, Neg. LLF: 148.0369071364991
Iteration: 7, Func. Count: 58, Neg. LLF: 148.03686906535773
Iteration: 8, Func. Count: 65, Neg. LLF: 148.0368692534568
Optimization terminated successfully (Exit mode 0)
Current function value: 148.03686906535773
Iterations: 8
Function evaluations: 65
Gradient evaluations: 8
Iteration: 1, Func. Count: 10, Neg. LLF: 1434.4110730177135
Iteration: 2, Func. Count: 21, Neg. LLF: 151.49968395853006
Iteration: 3, Func. Count: 31, Neg. LLF: 153.82023708154534
Iteration: 4, Func. Count: 41, Neg. LLF: 148.33632156347517
Iteration: 5, Func. Count: 50, Neg. LLF: 154.0844627626626
Iteration: 6, Func. Count: 60, Neg. LLF: 148.7533932358453
Iteration: 7, Func. Count: 70, Neg. LLF: 147.90297751955998
Iteration: 8, Func. Count: 79, Neg. LLF: 147.89700695888527
Iteration: 9, Func. Count: 88, Neg. LLF: 147.89660508186716
Iteration: 10, Func. Count: 97, Neg. LLF: 147.89651440222227
Iteration: 11, Func. Count: 106, Neg. LLF: 147.89651006623166
Iteration: 12, Func. Count: 114, Neg. LLF: 147.89651006589838
Optimization terminated successfully (Exit mode 0)
Current function value: 147.89651006623166
Iterations: 12
Function evaluations: 114
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 3154.3047629252665
Iteration: 2, Func. Count: 23, Neg. LLF: 154.03921756791726
Iteration: 3, Func. Count: 34, Neg. LLF: 148.21052573932172
Iteration: 4, Func. Count: 44, Neg. LLF: 148.3432696673314
Iteration: 5, Func. Count: 55, Neg. LLF: 147.69531853434336
Iteration: 6, Func. Count: 65, Neg. LLF: 159.5089113911288
Iteration: 7, Func. Count: 77, Neg. LLF: 147.560618984929
Iteration: 8, Func. Count: 87, Neg. LLF: 147.5248674313094
Iteration: 9, Func. Count: 97, Neg. LLF: 147.51181618326052
Iteration: 10, Func. Count: 107, Neg. LLF: 147.48886516194221
Iteration: 11, Func. Count: 117, Neg. LLF: 147.47578731480868
Iteration: 12, Func. Count: 127, Neg. LLF: 147.46951534256345
Iteration: 13, Func. Count: 137, Neg. LLF: 147.46923595934203
Iteration: 14, Func. Count: 147, Neg. LLF: 147.46931324104585
Iteration: 15, Func. Count: 167, Neg. LLF: 147.6519777708297
Iteration: 16, Func. Count: 179, Neg. LLF: 10226760.544236293
Iteration: 17, Func. Count: 193, Neg. LLF: 147.53080818239405
Iteration: 18, Func. Count: 205, Neg. LLF: 147.67592037481583
Iteration: 19, Func. Count: 218, Neg. LLF: 147.4692283306008
Iteration: 20, Func. Count: 228, Neg. LLF: 147.46922695195224
Iteration: 21, Func. Count: 237, Neg. LLF: 147.46922695195406
Optimization terminated successfully (Exit mode 0)
Current function value: 147.46922695195224
Iterations: 22
Function evaluations: 237
Gradient evaluations: 21
Iteration: 1, Func. Count: 12, Neg. LLF: 184.50079934440097
Iteration: 2, Func. Count: 25, Neg. LLF: 149.08408761582152
Iteration: 3, Func. Count: 36, Neg. LLF: 148.87124260512314
Iteration: 4, Func. Count: 47, Neg. LLF: 148.37603291764086
Iteration: 5, Func. Count: 58, Neg. LLF: 148.15505464979452
Iteration: 6, Func. Count: 69, Neg. LLF: 148.92353439545417
Iteration: 7, Func. Count: 81, Neg. LLF: 147.99177686980678
Iteration: 8, Func. Count: 93, Neg. LLF: 147.90235113606764
Iteration: 9, Func. Count: 104, Neg. LLF: 147.90197197018836
Iteration: 10, Func. Count: 115, Neg. LLF: 147.9019671932068
Iteration: 11, Func. Count: 126, Neg. LLF: 147.90196632915158
Optimization terminated successfully (Exit mode 0)
Current function value: 147.90196632915158
Iterations: 11
Function evaluations: 126
Gradient evaluations: 11
Iteration: 1, Func. Count: 13, Neg. LLF: 185.32364700382706
Iteration: 2, Func. Count: 26, Neg. LLF: 149.35753789584123
Iteration: 3, Func. Count: 38, Neg. LLF: 149.06759646598888
Iteration: 4, Func. Count: 50, Neg. LLF: 148.84098474135786
Iteration: 5, Func. Count: 62, Neg. LLF: 149.6189858835843
Iteration: 6, Func. Count: 75, Neg. LLF: 159.89995076327423
Iteration: 7, Func. Count: 88, Neg. LLF: 153.02900950234303
Iteration: 8, Func. Count: 101, Neg. LLF: 150.9658621178071
Iteration: 9, Func. Count: 114, Neg. LLF: 149.54918979293737
Iteration: 10, Func. Count: 127, Neg. LLF: 148.81340527632042
Iteration: 11, Func. Count: 140, Neg. LLF: 148.06482041939515
Iteration: 12, Func. Count: 152, Neg. LLF: 148.0403166272819
Iteration: 13, Func. Count: 165, Neg. LLF: 148.03667491414342
Iteration: 14, Func. Count: 178, Neg. LLF: 147.94156057086911
Iteration: 15, Func. Count: 190, Neg. LLF: 147.93472515574007
Iteration: 16, Func. Count: 202, Neg. LLF: 147.93184378507934
Iteration: 17, Func. Count: 214, Neg. LLF: 147.93083761251046
Iteration: 18, Func. Count: 226, Neg. LLF: 147.93047914449605
Iteration: 19, Func. Count: 238, Neg. LLF: 147.93040130818818
Iteration: 20, Func. Count: 250, Neg. LLF: 147.93039544803483
Iteration: 21, Func. Count: 261, Neg. LLF: 147.93039544780973
Optimization terminated successfully (Exit mode 0)
Current function value: 147.93039544803483
Iterations: 21
Function evaluations: 261
Gradient evaluations: 21
Iteration: 1, Func. Count: 10, Neg. LLF: 152.67329146638644
Iteration: 2, Func. Count: 19, Neg. LLF: 154.03961820105843
Iteration: 3, Func. Count: 29, Neg. LLF: 148.09316588906776
Iteration: 4, Func. Count: 38, Neg. LLF: 148.07765980383851
Iteration: 5, Func. Count: 47, Neg. LLF: 148.03861455048894
Iteration: 6, Func. Count: 56, Neg. LLF: 148.03690863218785
Iteration: 7, Func. Count: 65, Neg. LLF: 148.03686906892284
Iteration: 8, Func. Count: 73, Neg. LLF: 148.03686946520128
Optimization terminated successfully (Exit mode 0)
Current function value: 148.03686906892284
Iterations: 8
Function evaluations: 73
Gradient evaluations: 8
Iteration: 1, Func. Count: 11, Neg. LLF: 1481.0972807554592
Iteration: 2, Func. Count: 23, Neg. LLF: 151.741573679741
Iteration: 3, Func. Count: 34, Neg. LLF: 154.02085166276547
Iteration: 4, Func. Count: 45, Neg. LLF: 148.3982674185602
Iteration: 5, Func. Count: 55, Neg. LLF: 154.53569099684228
Iteration: 6, Func. Count: 66, Neg. LLF: 149.91130050464147
Iteration: 7, Func. Count: 77, Neg. LLF: 147.9218338680135
Iteration: 8, Func. Count: 87, Neg. LLF: 147.89897381633216
Iteration: 9, Func. Count: 97, Neg. LLF: 147.8968640998074
Iteration: 10, Func. Count: 107, Neg. LLF: 147.89657672204942
Iteration: 11, Func. Count: 117, Neg. LLF: 147.8965156734844
Iteration: 12, Func. Count: 127, Neg. LLF: 147.89651020659656
Iteration: 13, Func. Count: 136, Neg. LLF: 147.8965102067737
Optimization terminated successfully (Exit mode 0)
Current function value: 147.89651020659656
Iterations: 13
Function evaluations: 136
Gradient evaluations: 13
Iteration: 1, Func. Count: 12, Neg. LLF: 3239.4886841009056
Iteration: 2, Func. Count: 25, Neg. LLF: 154.15298508148388
Iteration: 3, Func. Count: 37, Neg. LLF: 148.25243431931142
Iteration: 4, Func. Count: 48, Neg. LLF: 148.3976699408104
Iteration: 5, Func. Count: 60, Neg. LLF: 147.68322652263478
Iteration: 6, Func. Count: 71, Neg. LLF: 174.17615912728903
Iteration: 7, Func. Count: 84, Neg. LLF: 147.65604665694224
Iteration: 8, Func. Count: 96, Neg. LLF: 147.530879497217
Iteration: 9, Func. Count: 107, Neg. LLF: 147.50540464493085
Iteration: 10, Func. Count: 118, Neg. LLF: 147.48951447784341
Iteration: 11, Func. Count: 129, Neg. LLF: 147.4700563023212
Iteration: 12, Func. Count: 140, Neg. LLF: 147.47050134036544
Iteration: 13, Func. Count: 152, Neg. LLF: 166.29684072678256
Iteration: 14, Func. Count: 166, Neg. LLF: 505.7847177229209
Iteration: 15, Func. Count: 181, Neg. LLF: 147.51113359444065
Iteration: 16, Func. Count: 194, Neg. LLF: 147.4700074987526
Iteration: 17, Func. Count: 206, Neg. LLF: 147.46922698847945
Iteration: 18, Func. Count: 216, Neg. LLF: 147.46922698853308
Optimization terminated successfully (Exit mode 0)
Current function value: 147.46922698847945
Iterations: 19
Function evaluations: 216
Gradient evaluations: 18
Iteration: 1, Func. Count: 13, Neg. LLF: 184.51908483098617
Iteration: 2, Func. Count: 27, Neg. LLF: 149.07867034538214
Iteration: 3, Func. Count: 39, Neg. LLF: 148.8688400955579
Iteration: 4, Func. Count: 51, Neg. LLF: 149.18392784108795
Iteration: 5, Func. Count: 64, Neg. LLF: 149.9891839287829
Iteration: 6, Func. Count: 77, Neg. LLF: 149.9228283169541
Iteration: 7, Func. Count: 90, Neg. LLF: 151.14383356949511
Iteration: 8, Func. Count: 103, Neg. LLF: 148.43336553168456
Iteration: 9, Func. Count: 116, Neg. LLF: 147.92858998092115
Iteration: 10, Func. Count: 128, Neg. LLF: 147.9374102196373
Iteration: 11, Func. Count: 141, Neg. LLF: 147.89243547338342
Iteration: 12, Func. Count: 154, Neg. LLF: 147.89028802170458
Iteration: 13, Func. Count: 166, Neg. LLF: 147.8902845339526
Iteration: 14, Func. Count: 177, Neg. LLF: 147.89028453403242
Optimization terminated successfully (Exit mode 0)
Current function value: 147.8902845339526
Iterations: 14
Function evaluations: 177
Gradient evaluations: 14
Iteration: 1, Func. Count: 14, Neg. LLF: 185.30934020220585
Iteration: 2, Func. Count: 28, Neg. LLF: 149.32770954726473
Iteration: 3, Func. Count: 41, Neg. LLF: 149.0503012870873
Iteration: 4, Func. Count: 54, Neg. LLF: 148.82126263632915
Iteration: 5, Func. Count: 67, Neg. LLF: 154.72609984125717
Iteration: 6, Func. Count: 81, Neg. LLF: 155.95063347135024
Iteration: 7, Func. Count: 95, Neg. LLF: 155.02042540791754
Iteration: 8, Func. Count: 109, Neg. LLF: 154.0533556226051
Iteration: 9, Func. Count: 123, Neg. LLF: 152.55702223375806
Iteration: 10, Func. Count: 137, Neg. LLF: 151.16242400611767
Iteration: 11, Func. Count: 151, Neg. LLF: 149.29960245522656
Iteration: 12, Func. Count: 165, Neg. LLF: 148.156402768293
Iteration: 13, Func. Count: 179, Neg. LLF: 148.04111895025778
Iteration: 14, Func. Count: 192, Neg. LLF: 148.0027775617598
Iteration: 15, Func. Count: 205, Neg. LLF: 148.00923701240302
Iteration: 16, Func. Count: 219, Neg. LLF: 147.95085590452084
Iteration: 17, Func. Count: 232, Neg. LLF: 147.9399274416136
Iteration: 18, Func. Count: 245, Neg. LLF: 147.93405495683916
Iteration: 19, Func. Count: 258, Neg. LLF: 147.9309524544361
Iteration: 20, Func. Count: 271, Neg. LLF: 147.93041487921045
Iteration: 21, Func. Count: 284, Neg. LLF: 147.9303966972464
Iteration: 22, Func. Count: 297, Neg. LLF: 147.93039520288377
Iteration: 23, Func. Count: 309, Neg. LLF: 147.93039520299658
Optimization terminated successfully (Exit mode 0)
Current function value: 147.93039520288377
Iterations: 23
Function evaluations: 309
Gradient evaluations: 23
Iteration: 1, Func. Count: 7, Neg. LLF: 152.36019785424725
Iteration: 2, Func. Count: 13, Neg. LLF: 157.50538419927173
Iteration: 3, Func. Count: 20, Neg. LLF: 151.5392071479882
Iteration: 4, Func. Count: 26, Neg. LLF: 151.49056264818827
Iteration: 5, Func. Count: 32, Neg. LLF: 151.39319906581616
Iteration: 6, Func. Count: 38, Neg. LLF: 151.33285242586248
Iteration: 7, Func. Count: 44, Neg. LLF: 151.3043528005458
Iteration: 8, Func. Count: 50, Neg. LLF: 151.3036901527394
Iteration: 9, Func. Count: 56, Neg. LLF: 151.30368767925532
Iteration: 10, Func. Count: 61, Neg. LLF: 151.30368800340074
Optimization terminated successfully (Exit mode 0)
Current function value: 151.30368767925532
Iterations: 10
Function evaluations: 61
Gradient evaluations: 10
Iteration: 1, Func. Count: 8, Neg. LLF: 2720.712536263793
Iteration: 2, Func. Count: 17, Neg. LLF: 166.48956557836746
Iteration: 3, Func. Count: 25, Neg. LLF: 153.69363311401492
Iteration: 4, Func. Count: 33, Neg. LLF: 148.67988106285839
Iteration: 5, Func. Count: 40, Neg. LLF: 155.0495195490872
Iteration: 6, Func. Count: 48, Neg. LLF: 156.1574111482304
Iteration: 7, Func. Count: 57, Neg. LLF: 147.95985536273093
Iteration: 8, Func. Count: 64, Neg. LLF: 147.8985755934384
Iteration: 9, Func. Count: 71, Neg. LLF: 147.89697581765157
Iteration: 10, Func. Count: 78, Neg. LLF: 147.89663314371057
Iteration: 11, Func. Count: 85, Neg. LLF: 147.89653805709915
Iteration: 12, Func. Count: 92, Neg. LLF: 147.89651215096953
Iteration: 13, Func. Count: 99, Neg. LLF: 147.89651002277714
Iteration: 14, Func. Count: 105, Neg. LLF: 147.8965100230885
Optimization terminated successfully (Exit mode 0)
Current function value: 147.89651002277714
Iterations: 14
Function evaluations: 105
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 12223.44454270087
Iteration: 2, Func. Count: 19, Neg. LLF: 153.8402059294801
Iteration: 3, Func. Count: 28, Neg. LLF: 148.5288320454585
Iteration: 4, Func. Count: 36, Neg. LLF: 148.40302827731338
Iteration: 5, Func. Count: 45, Neg. LLF: 148.0224883354492
Iteration: 6, Func. Count: 53, Neg. LLF: 147.96085856333733
Iteration: 7, Func. Count: 61, Neg. LLF: 147.93830475273495
Iteration: 8, Func. Count: 69, Neg. LLF: 147.92422797653586
Iteration: 9, Func. Count: 77, Neg. LLF: 147.91291364967776
Iteration: 10, Func. Count: 85, Neg. LLF: 147.9092420368
Iteration: 11, Func. Count: 93, Neg. LLF: 147.89918030179473
Iteration: 12, Func. Count: 101, Neg. LLF: 147.89684305133494
Iteration: 13, Func. Count: 109, Neg. LLF: 147.89654380574663
Iteration: 14, Func. Count: 117, Neg. LLF: 147.89651060760107
Iteration: 15, Func. Count: 124, Neg. LLF: 147.89651061081236
Optimization terminated successfully (Exit mode 0)
Current function value: 147.89651060760107
Iterations: 15
Function evaluations: 124
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 9351.35450318835
Iteration: 2, Func. Count: 21, Neg. LLF: 150.89334711897243
Iteration: 3, Func. Count: 31, Neg. LLF: 147.94351677586445
Iteration: 4, Func. Count: 40, Neg. LLF: 148.00035126061255
Iteration: 5, Func. Count: 50, Neg. LLF: 147.90669029283913
Iteration: 6, Func. Count: 59, Neg. LLF: 147.903657384097
Iteration: 7, Func. Count: 68, Neg. LLF: 147.90263371861045
Iteration: 8, Func. Count: 77, Neg. LLF: 147.90200245173483
Iteration: 9, Func. Count: 86, Neg. LLF: 147.90196753900887
Iteration: 10, Func. Count: 95, Neg. LLF: 147.90196618519684
Iteration: 11, Func. Count: 103, Neg. LLF: 147.90196618534486
Optimization terminated successfully (Exit mode 0)
Current function value: 147.90196618519684
Iterations: 11
Function evaluations: 103
Gradient evaluations: 11
Iteration: 1, Func. Count: 11, Neg. LLF: 185.65377176779856
Iteration: 2, Func. Count: 22, Neg. LLF: 149.36039053741084
Iteration: 3, Func. Count: 32, Neg. LLF: 149.04310986373358
Iteration: 4, Func. Count: 42, Neg. LLF: 148.80935506133764
Iteration: 5, Func. Count: 52, Neg. LLF: 155.1291208866642
Iteration: 6, Func. Count: 63, Neg. LLF: 155.3105359042204
Iteration: 7, Func. Count: 74, Neg. LLF: 153.6796145774444
Iteration: 8, Func. Count: 85, Neg. LLF: 152.8541069846658
Iteration: 9, Func. Count: 96, Neg. LLF: 151.76109375520514
Iteration: 10, Func. Count: 107, Neg. LLF: 150.53798775469988
Iteration: 11, Func. Count: 118, Neg. LLF: 149.58265959200514
Iteration: 12, Func. Count: 129, Neg. LLF: 148.2138875639417
Iteration: 13, Func. Count: 140, Neg. LLF: 148.01405502594335
Iteration: 14, Func. Count: 150, Neg. LLF: 147.97304594658914
Iteration: 15, Func. Count: 160, Neg. LLF: 147.97756152649802
Iteration: 16, Func. Count: 171, Neg. LLF: 147.94172683100678
Iteration: 17, Func. Count: 181, Neg. LLF: 147.93459873249498
Iteration: 18, Func. Count: 191, Neg. LLF: 147.93084532007487
Iteration: 19, Func. Count: 201, Neg. LLF: 147.93040744055466
Iteration: 20, Func. Count: 211, Neg. LLF: 147.93039595504243
Iteration: 21, Func. Count: 221, Neg. LLF: 147.93039524787207
Optimization terminated successfully (Exit mode 0)
Current function value: 147.93039524787207
Iterations: 21
Function evaluations: 221
Gradient evaluations: 21
Iteration: 1, Func. Count: 8, Neg. LLF: 153.69631598089907
Iteration: 2, Func. Count: 16, Neg. LLF: 156.26311617283432
Iteration: 3, Func. Count: 24, Neg. LLF: 148.31886775752454
Iteration: 4, Func. Count: 31, Neg. LLF: 148.0898343434796
Iteration: 5, Func. Count: 38, Neg. LLF: 148.03774384882644
Iteration: 6, Func. Count: 45, Neg. LLF: 148.03687048732317
Iteration: 7, Func. Count: 52, Neg. LLF: 148.0368692029365
Iteration: 8, Func. Count: 58, Neg. LLF: 148.03686921025053
Optimization terminated successfully (Exit mode 0)
Current function value: 148.0368692029365
Iterations: 8
Function evaluations: 58
Gradient evaluations: 8
Iteration: 1, Func. Count: 9, Neg. LLF: 1452.3454043068568
Iteration: 2, Func. Count: 19, Neg. LLF: 151.70499706188758
Iteration: 3, Func. Count: 28, Neg. LLF: 153.97941594524633
Iteration: 4, Func. Count: 37, Neg. LLF: 148.3822425120096
Iteration: 5, Func. Count: 45, Neg. LLF: 154.39472121721454
Iteration: 6, Func. Count: 54, Neg. LLF: 149.64865762899709
Iteration: 7, Func. Count: 63, Neg. LLF: 147.91917493878
Iteration: 8, Func. Count: 71, Neg. LLF: 147.89823186366368
Iteration: 9, Func. Count: 79, Neg. LLF: 147.89677133340362
Iteration: 10, Func. Count: 87, Neg. LLF: 147.89656420020364
Iteration: 11, Func. Count: 95, Neg. LLF: 147.8965117572747
Iteration: 12, Func. Count: 103, Neg. LLF: 147.8965100212068
Iteration: 13, Func. Count: 110, Neg. LLF: 147.89651002133138
Optimization terminated successfully (Exit mode 0)
Current function value: 147.8965100212068
Iterations: 13
Function evaluations: 110
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 3198.712455924925
Iteration: 2, Func. Count: 21, Neg. LLF: 153.94636075642578
Iteration: 3, Func. Count: 31, Neg. LLF: 148.1584732708751
Iteration: 4, Func. Count: 40, Neg. LLF: 148.20866177163595
Iteration: 5, Func. Count: 50, Neg. LLF: 147.8089173464294
Iteration: 6, Func. Count: 59, Neg. LLF: 147.77036507149117
Iteration: 7, Func. Count: 68, Neg. LLF: 147.74129734768098
Iteration: 8, Func. Count: 77, Neg. LLF: 147.67716755815925
Iteration: 9, Func. Count: 86, Neg. LLF: 23124001.8514368
Iteration: 10, Func. Count: 98, Neg. LLF: 5996636.555935142
Iteration: 11, Func. Count: 110, Neg. LLF: 147.63674365106593
Iteration: 12, Func. Count: 120, Neg. LLF: 147.6362212027651
Iteration: 13, Func. Count: 128, Neg. LLF: 147.63622120209286
Optimization terminated successfully (Exit mode 0)
Current function value: 147.6362212027651
Iterations: 14
Function evaluations: 128
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 184.50055871185683
Iteration: 2, Func. Count: 23, Neg. LLF: 149.08403679857443
Iteration: 3, Func. Count: 33, Neg. LLF: 148.8752271244588
Iteration: 4, Func. Count: 43, Neg. LLF: 148.4230061061838
Iteration: 5, Func. Count: 53, Neg. LLF: 148.22281180772163
Iteration: 6, Func. Count: 63, Neg. LLF: 149.095524475098
Iteration: 7, Func. Count: 74, Neg. LLF: 147.99002199807424
Iteration: 8, Func. Count: 85, Neg. LLF: 147.9024521430439
Iteration: 9, Func. Count: 95, Neg. LLF: 147.90206221924603
Iteration: 10, Func. Count: 105, Neg. LLF: 147.9019863502297
Iteration: 11, Func. Count: 115, Neg. LLF: 147.90196829409993
Iteration: 12, Func. Count: 125, Neg. LLF: 147.9019663513127
Iteration: 13, Func. Count: 134, Neg. LLF: 147.9019663518028
Optimization terminated successfully (Exit mode 0)
Current function value: 147.9019663513127
Iterations: 13
Function evaluations: 134
Gradient evaluations: 13
Iteration: 1, Func. Count: 12, Neg. LLF: 185.32348108086677
Iteration: 2, Func. Count: 24, Neg. LLF: 149.35821628912223
Iteration: 3, Func. Count: 35, Neg. LLF: 149.06527346919836
Iteration: 4, Func. Count: 46, Neg. LLF: 148.83484209751313
Iteration: 5, Func. Count: 57, Neg. LLF: 149.99779560945248
Iteration: 6, Func. Count: 69, Neg. LLF: 159.47439245545434
Iteration: 7, Func. Count: 81, Neg. LLF: 153.90912362044077
Iteration: 8, Func. Count: 93, Neg. LLF: 151.30029344064002
Iteration: 9, Func. Count: 105, Neg. LLF: 149.8856506347261
Iteration: 10, Func. Count: 117, Neg. LLF: 148.97897883412193
Iteration: 11, Func. Count: 129, Neg. LLF: 148.18316077164653
Iteration: 12, Func. Count: 141, Neg. LLF: 147.98381113770103
Iteration: 13, Func. Count: 152, Neg. LLF: 147.9454484487487
Iteration: 14, Func. Count: 163, Neg. LLF: 147.93656278454162
Iteration: 15, Func. Count: 174, Neg. LLF: 147.9332986234305
Iteration: 16, Func. Count: 185, Neg. LLF: 147.9320939564065
Iteration: 17, Func. Count: 196, Neg. LLF: 147.93086583133964
Iteration: 18, Func. Count: 207, Neg. LLF: 147.93044120277455
Iteration: 19, Func. Count: 218, Neg. LLF: 147.93039625673904
Iteration: 20, Func. Count: 229, Neg. LLF: 147.93039521250498
Iteration: 21, Func. Count: 239, Neg. LLF: 147.93039521251697
Optimization terminated successfully (Exit mode 0)
Current function value: 147.93039521250498
Iterations: 21
Function evaluations: 239
Gradient evaluations: 21
Iteration: 1, Func. Count: 9, Neg. LLF: 152.32180589406497
Iteration: 2, Func. Count: 17, Neg. LLF: 154.44808000068164
Iteration: 3, Func. Count: 26, Neg. LLF: 148.10341144560067
Iteration: 4, Func. Count: 34, Neg. LLF: 148.08406150795295
Iteration: 5, Func. Count: 42, Neg. LLF: 148.03776051381405
Iteration: 6, Func. Count: 50, Neg. LLF: 148.03689183573832
Iteration: 7, Func. Count: 58, Neg. LLF: 148.03686904212927
Iteration: 8, Func. Count: 65, Neg. LLF: 148.03686908185296
Optimization terminated successfully (Exit mode 0)
Current function value: 148.03686904212927
Iterations: 8
Function evaluations: 65
Gradient evaluations: 8
Iteration: 1, Func. Count: 10, Neg. LLF: 1467.1044427450397
Iteration: 2, Func. Count: 21, Neg. LLF: 151.72432823583233
Iteration: 3, Func. Count: 31, Neg. LLF: 153.9731658996257
Iteration: 4, Func. Count: 41, Neg. LLF: 148.39179646964192
Iteration: 5, Func. Count: 50, Neg. LLF: 154.60467342652123
Iteration: 6, Func. Count: 60, Neg. LLF: 149.66057304571925
Iteration: 7, Func. Count: 70, Neg. LLF: 147.91839643084063
Iteration: 8, Func. Count: 79, Neg. LLF: 147.89825133966403
Iteration: 9, Func. Count: 88, Neg. LLF: 147.89676483738955
Iteration: 10, Func. Count: 97, Neg. LLF: 147.8965618943211
Iteration: 11, Func. Count: 106, Neg. LLF: 147.89651203011016
Iteration: 12, Func. Count: 115, Neg. LLF: 147.8965100405447
Iteration: 13, Func. Count: 123, Neg. LLF: 147.8965100406787
Optimization terminated successfully (Exit mode 0)
Current function value: 147.8965100405447
Iterations: 13
Function evaluations: 123
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 3201.5231817047284
Iteration: 2, Func. Count: 23, Neg. LLF: 154.03781440713988
Iteration: 3, Func. Count: 34, Neg. LLF: 148.21501004721495
Iteration: 4, Func. Count: 44, Neg. LLF: 148.36412483754603
Iteration: 5, Func. Count: 55, Neg. LLF: 147.6928077384112
Iteration: 6, Func. Count: 65, Neg. LLF: 155.60937789740314
Iteration: 7, Func. Count: 77, Neg. LLF: 147.63295588783848
Iteration: 8, Func. Count: 87, Neg. LLF: 147.59947178523632
Iteration: 9, Func. Count: 97, Neg. LLF: 147.59579569110534
Iteration: 10, Func. Count: 107, Neg. LLF: 147.58673737804824
Iteration: 11, Func. Count: 117, Neg. LLF: 147.58261582922694
Iteration: 12, Func. Count: 127, Neg. LLF: 147.5823329704079
Iteration: 13, Func. Count: 137, Neg. LLF: 150.6048716043415
Iteration: 14, Func. Count: 150, Neg. LLF: 198.75247961337362
Iteration: 15, Func. Count: 164, Neg. LLF: 147.58956806447677
Iteration: 16, Func. Count: 175, Neg. LLF: 147.5809994564447
Iteration: 17, Func. Count: 185, Neg. LLF: 147.58098880126147
Iteration: 18, Func. Count: 195, Neg. LLF: 147.58097670411615
Iteration: 19, Func. Count: 204, Neg. LLF: 147.58097670414875
Optimization terminated successfully (Exit mode 0)
Current function value: 147.58097670411615
Iterations: 20
Function evaluations: 204
Gradient evaluations: 19
Iteration: 1, Func. Count: 12, Neg. LLF: 184.49981430392637
Iteration: 2, Func. Count: 25, Neg. LLF: 149.08025960815783
Iteration: 3, Func. Count: 36, Neg. LLF: 148.86893449122323
Iteration: 4, Func. Count: 47, Neg. LLF: 148.3444960971905
Iteration: 5, Func. Count: 58, Neg. LLF: 148.08720153560228
Iteration: 6, Func. Count: 69, Neg. LLF: 148.89051547940457
Iteration: 7, Func. Count: 81, Neg. LLF: 147.98578204166955
Iteration: 8, Func. Count: 93, Neg. LLF: 147.9026078752337
Iteration: 9, Func. Count: 104, Neg. LLF: 147.90196744560805
Iteration: 10, Func. Count: 115, Neg. LLF: 147.9019662157042
Iteration: 11, Func. Count: 125, Neg. LLF: 147.9019662154346
Optimization terminated successfully (Exit mode 0)
Current function value: 147.9019662157042
Iterations: 11
Function evaluations: 125
Gradient evaluations: 11
Iteration: 1, Func. Count: 13, Neg. LLF: 185.31328619984316
Iteration: 2, Func. Count: 26, Neg. LLF: 149.3492369576604
Iteration: 3, Func. Count: 38, Neg. LLF: 149.0646075719653
Iteration: 4, Func. Count: 50, Neg. LLF: 148.8382665845581
Iteration: 5, Func. Count: 62, Neg. LLF: 150.9431671854497
Iteration: 6, Func. Count: 75, Neg. LLF: 158.80584394949634
Iteration: 7, Func. Count: 88, Neg. LLF: 155.42575422340911
Iteration: 8, Func. Count: 101, Neg. LLF: 152.30982989363406
Iteration: 9, Func. Count: 114, Neg. LLF: 150.58642624354832
Iteration: 10, Func. Count: 127, Neg. LLF: 149.48142954107527
Iteration: 11, Func. Count: 140, Neg. LLF: 148.74271470289858
Iteration: 12, Func. Count: 153, Neg. LLF: 148.04717053426668
Iteration: 13, Func. Count: 165, Neg. LLF: 147.99039313767562
Iteration: 14, Func. Count: 177, Neg. LLF: 148.00969389801648
Iteration: 15, Func. Count: 190, Neg. LLF: 147.94345432293483
Iteration: 16, Func. Count: 202, Neg. LLF: 147.9332392774325
Iteration: 17, Func. Count: 214, Neg. LLF: 147.9318729776728
Iteration: 18, Func. Count: 226, Neg. LLF: 147.93054890793124
Iteration: 19, Func. Count: 238, Neg. LLF: 147.93039853785916
Iteration: 20, Func. Count: 250, Neg. LLF: 147.93039527475875
Iteration: 21, Func. Count: 261, Neg. LLF: 147.93039527501813
Optimization terminated successfully (Exit mode 0)
Current function value: 147.93039527475875
Iterations: 21
Function evaluations: 261
Gradient evaluations: 21
Iteration: 1, Func. Count: 10, Neg. LLF: 148.25578596403457
Iteration: 2, Func. Count: 19, Neg. LLF: 148.8813169791822
Iteration: 3, Func. Count: 29, Neg. LLF: 148.16184241289963
Iteration: 4, Func. Count: 38, Neg. LLF: 148.05309132808185
Iteration: 5, Func. Count: 47, Neg. LLF: 148.03835618707691
Iteration: 6, Func. Count: 56, Neg. LLF: 148.036881598299
Iteration: 7, Func. Count: 65, Neg. LLF: 148.03686903446126
Iteration: 8, Func. Count: 73, Neg. LLF: 148.0368688463603
Optimization terminated successfully (Exit mode 0)
Current function value: 148.03686903446126
Iterations: 8
Function evaluations: 73
Gradient evaluations: 8
Iteration: 1, Func. Count: 11, Neg. LLF: 1501.519253993512
Iteration: 2, Func. Count: 23, Neg. LLF: 151.86429955782643
Iteration: 3, Func. Count: 34, Neg. LLF: 154.07147433282591
Iteration: 4, Func. Count: 45, Neg. LLF: 148.43858865281183
Iteration: 5, Func. Count: 55, Neg. LLF: 154.91679392718513
Iteration: 6, Func. Count: 66, Neg. LLF: 150.5745931622131
Iteration: 7, Func. Count: 77, Neg. LLF: 147.9346786919745
Iteration: 8, Func. Count: 87, Neg. LLF: 147.90289230875547
Iteration: 9, Func. Count: 97, Neg. LLF: 147.89752493813683
Iteration: 10, Func. Count: 107, Neg. LLF: 147.89665940893923
Iteration: 11, Func. Count: 117, Neg. LLF: 147.89652920756757
Iteration: 12, Func. Count: 127, Neg. LLF: 147.89651212553335
Iteration: 13, Func. Count: 137, Neg. LLF: 147.89650998106055
Iteration: 14, Func. Count: 146, Neg. LLF: 147.89650998114485
Optimization terminated successfully (Exit mode 0)
Current function value: 147.89650998106055
Iterations: 14
Function evaluations: 146
Gradient evaluations: 14
Iteration: 1, Func. Count: 12, Neg. LLF: 3304.425212254816
Iteration: 2, Func. Count: 25, Neg. LLF: 153.95659855392088
Iteration: 3, Func. Count: 37, Neg. LLF: 148.19649437324134
Iteration: 4, Func. Count: 48, Neg. LLF: 148.32637810095787
Iteration: 5, Func. Count: 60, Neg. LLF: 147.6958944835388
Iteration: 6, Func. Count: 71, Neg. LLF: 157.31022264050924
Iteration: 7, Func. Count: 84, Neg. LLF: 147.5496836950256
Iteration: 8, Func. Count: 95, Neg. LLF: 147.52444739159944
Iteration: 9, Func. Count: 106, Neg. LLF: 147.51320376168164
Iteration: 10, Func. Count: 117, Neg. LLF: 147.4895558518481
Iteration: 11, Func. Count: 128, Neg. LLF: 147.48045145083924
Iteration: 12, Func. Count: 139, Neg. LLF: 147.46950205716874
Iteration: 13, Func. Count: 150, Neg. LLF: 147.46922248769093
Iteration: 14, Func. Count: 161, Neg. LLF: 147.4692199003992
Iteration: 15, Func. Count: 173, Neg. LLF: 147.46972089246447
Optimization terminated successfully (Exit mode 0)
Current function value: 147.46920946792832
Iterations: 15
Function evaluations: 183
Gradient evaluations: 15
Iteration: 1, Func. Count: 13, Neg. LLF: 184.49597818500388
Iteration: 2, Func. Count: 27, Neg. LLF: 149.0686227012949
Iteration: 3, Func. Count: 39, Neg. LLF: 148.86197995470275
Iteration: 4, Func. Count: 51, Neg. LLF: 148.39002197613473
Iteration: 5, Func. Count: 63, Neg. LLF: 148.58577783964802
Iteration: 6, Func. Count: 77, Neg. LLF: 148.04774959181083
Iteration: 7, Func. Count: 89, Neg. LLF: 152.95316836490886
Iteration: 8, Func. Count: 103, Neg. LLF: 147.9574109411686
Iteration: 9, Func. Count: 115, Neg. LLF: 148.40634396301584
Iteration: 10, Func. Count: 128, Neg. LLF: 147.94894509008563
Iteration: 11, Func. Count: 140, Neg. LLF: 147.94809995238157
Iteration: 12, Func. Count: 152, Neg. LLF: 147.94810814254484
Iteration: 13, Func. Count: 165, Neg. LLF: 147.9475760436362
Iteration: 14, Func. Count: 177, Neg. LLF: 147.94743829471315
Iteration: 15, Func. Count: 189, Neg. LLF: 147.94743198572985
Iteration: 16, Func. Count: 201, Neg. LLF: 147.9474262023109
Iteration: 17, Func. Count: 213, Neg. LLF: 147.94741914954457
Iteration: 18, Func. Count: 225, Neg. LLF: 147.94740317122015
Iteration: 19, Func. Count: 237, Neg. LLF: 147.94737428788645
Iteration: 20, Func. Count: 249, Neg. LLF: 147.94737102761133
Iteration: 21, Func. Count: 260, Neg. LLF: 147.94737102736494
Optimization terminated successfully (Exit mode 0)
Current function value: 147.94737102761133
Iterations: 21
Function evaluations: 260
Gradient evaluations: 21
Iteration: 1, Func. Count: 14, Neg. LLF: 185.32016236476147
Iteration: 2, Func. Count: 28, Neg. LLF: 149.33801552823383
Iteration: 3, Func. Count: 41, Neg. LLF: 149.05274159468237
Iteration: 4, Func. Count: 54, Neg. LLF: 148.80794035977448
Iteration: 5, Func. Count: 67, Neg. LLF: 154.7542431629744
Iteration: 6, Func. Count: 81, Neg. LLF: 158.74903354005403
Iteration: 7, Func. Count: 95, Neg. LLF: 158.093971713002
Iteration: 8, Func. Count: 109, Neg. LLF: 153.91187067004404
Iteration: 9, Func. Count: 123, Neg. LLF: 151.58171195716645
Iteration: 10, Func. Count: 137, Neg. LLF: 150.2088447115644
Iteration: 11, Func. Count: 151, Neg. LLF: 149.2441800569339
Iteration: 12, Func. Count: 165, Neg. LLF: 148.26218754834565
Iteration: 13, Func. Count: 179, Neg. LLF: 148.0588212362999
Iteration: 14, Func. Count: 193, Neg. LLF: 147.99737428366862
Iteration: 15, Func. Count: 206, Neg. LLF: 147.95793956764118
Iteration: 16, Func. Count: 219, Neg. LLF: 147.94192367217084
Iteration: 17, Func. Count: 232, Neg. LLF: 147.93600213344598
Iteration: 18, Func. Count: 245, Neg. LLF: 147.9320070570203
Iteration: 19, Func. Count: 258, Neg. LLF: 147.93069145174096
Iteration: 20, Func. Count: 271, Neg. LLF: 147.9303991595865
Iteration: 21, Func. Count: 284, Neg. LLF: 147.93039550441037
Iteration: 22, Func. Count: 296, Neg. LLF: 147.9303955042969
Optimization terminated successfully (Exit mode 0)
Current function value: 147.93039550441037
Iterations: 22
Function evaluations: 296
Gradient evaluations: 22
Iteration: 1, Func. Count: 11, Neg. LLF: 148.29194235678952
Iteration: 2, Func. Count: 21, Neg. LLF: 149.3154681194683
Iteration: 3, Func. Count: 32, Neg. LLF: 148.16667854615756
Iteration: 4, Func. Count: 42, Neg. LLF: 148.05637189774382
Iteration: 5, Func. Count: 52, Neg. LLF: 148.03876839837744
Iteration: 6, Func. Count: 62, Neg. LLF: 148.03688847056338
Iteration: 7, Func. Count: 72, Neg. LLF: 148.03686904422835
Iteration: 8, Func. Count: 81, Neg. LLF: 148.0368694405126
Optimization terminated successfully (Exit mode 0)
Current function value: 148.03686904422835
Iterations: 8
Function evaluations: 81
Gradient evaluations: 8
Iteration: 1, Func. Count: 12, Neg. LLF: 1552.5559940009814
Iteration: 2, Func. Count: 25, Neg. LLF: 152.14801735447426
Iteration: 3, Func. Count: 37, Neg. LLF: 154.25857963106867
Iteration: 4, Func. Count: 49, Neg. LLF: 148.5224517937613
Iteration: 5, Func. Count: 60, Neg. LLF: 155.068934784084
Iteration: 6, Func. Count: 72, Neg. LLF: 153.1017635490162
Iteration: 7, Func. Count: 85, Neg. LLF: 147.93486122465208
Iteration: 8, Func. Count: 96, Neg. LLF: 147.89679587427702
Iteration: 9, Func. Count: 107, Neg. LLF: 147.89654374103006
Iteration: 10, Func. Count: 118, Neg. LLF: 147.89651593459934
Iteration: 11, Func. Count: 129, Neg. LLF: 147.89651127591227
Iteration: 12, Func. Count: 140, Neg. LLF: 147.89651000107568
Iteration: 13, Func. Count: 150, Neg. LLF: 147.89651000121555
Optimization terminated successfully (Exit mode 0)
Current function value: 147.89651000107568
Iterations: 13
Function evaluations: 150
Gradient evaluations: 13
Iteration: 1, Func. Count: 13, Neg. LLF: 3396.5931781921895
Iteration: 2, Func. Count: 27, Neg. LLF: 154.0740025547886
Iteration: 3, Func. Count: 40, Neg. LLF: 148.23982136570757
Iteration: 4, Func. Count: 52, Neg. LLF: 148.3966513222798
Iteration: 5, Func. Count: 65, Neg. LLF: 147.67966912555232
Iteration: 6, Func. Count: 77, Neg. LLF: 183.28100574797008
Iteration: 7, Func. Count: 91, Neg. LLF: 147.60739469130252
Iteration: 8, Func. Count: 104, Neg. LLF: 147.53359984807557
Iteration: 9, Func. Count: 116, Neg. LLF: 147.50463205707547
Iteration: 10, Func. Count: 128, Neg. LLF: 147.48867292469345
Iteration: 11, Func. Count: 140, Neg. LLF: 147.47045948448752
Iteration: 12, Func. Count: 152, Neg. LLF: 147.47049083839082
Iteration: 13, Func. Count: 165, Neg. LLF: 156.61317796602376
Iteration: 14, Func. Count: 180, Neg. LLF: 200.4876645515376
Iteration: 15, Func. Count: 196, Neg. LLF: 147.49162080313877
Iteration: 16, Func. Count: 210, Neg. LLF: 147.47160768238098
Iteration: 17, Func. Count: 223, Neg. LLF: 147.46922692673772
Iteration: 18, Func. Count: 234, Neg. LLF: 147.46922692677987
Optimization terminated successfully (Exit mode 0)
Current function value: 147.46922692673772
Iterations: 19
Function evaluations: 234
Gradient evaluations: 18
Iteration: 1, Func. Count: 14, Neg. LLF: 184.5137496540642
Iteration: 2, Func. Count: 29, Neg. LLF: 149.0636482564202
Iteration: 3, Func. Count: 42, Neg. LLF: 148.85911202082494
Iteration: 4, Func. Count: 55, Neg. LLF: 149.16531034433308
Iteration: 5, Func. Count: 69, Neg. LLF: 149.8204459554277
Iteration: 6, Func. Count: 83, Neg. LLF: 149.51874151051848
Iteration: 7, Func. Count: 97, Neg. LLF: 150.2652775964374
Iteration: 8, Func. Count: 111, Neg. LLF: 148.00929813009938
Iteration: 9, Func. Count: 124, Neg. LLF: 147.94490583068912
Iteration: 10, Func. Count: 137, Neg. LLF: 148.05758038831976
Iteration: 11, Func. Count: 151, Neg. LLF: 147.99477035336875
Iteration: 12, Func. Count: 165, Neg. LLF: 147.89258789388143
Iteration: 13, Func. Count: 178, Neg. LLF: 147.89029376835867
Iteration: 14, Func. Count: 191, Neg. LLF: 147.89028471042272
Iteration: 15, Func. Count: 203, Neg. LLF: 147.89028471078979
Optimization terminated successfully (Exit mode 0)
Current function value: 147.89028471042272
Iterations: 15
Function evaluations: 203
Gradient evaluations: 15
Iteration: 1, Func. Count: 15, Neg. LLF: 185.3054323841671
Iteration: 2, Func. Count: 30, Neg. LLF: 149.30950412013644
Iteration: 3, Func. Count: 44, Neg. LLF: 149.03420478349136
Iteration: 4, Func. Count: 58, Neg. LLF: 148.7847744748824
Iteration: 5, Func. Count: 72, Neg. LLF: 153.8366140674181
Iteration: 6, Func. Count: 87, Neg. LLF: 154.80117514785823
Iteration: 7, Func. Count: 102, Neg. LLF: 154.46120971682825
Iteration: 8, Func. Count: 117, Neg. LLF: 153.62154370191922
Iteration: 9, Func. Count: 132, Neg. LLF: 152.37664530350423
Iteration: 10, Func. Count: 147, Neg. LLF: 151.1065294568698
Iteration: 11, Func. Count: 162, Neg. LLF: 148.6696739177573
Iteration: 12, Func. Count: 177, Neg. LLF: 148.09205985556372
Iteration: 13, Func. Count: 191, Neg. LLF: 148.05329398092238
Iteration: 14, Func. Count: 205, Neg. LLF: 148.02817689574832
Iteration: 15, Func. Count: 219, Neg. LLF: 147.98227415166164
Iteration: 16, Func. Count: 233, Neg. LLF: 147.94948678648873
Iteration: 17, Func. Count: 247, Neg. LLF: 147.9371368949093
Iteration: 18, Func. Count: 261, Neg. LLF: 147.9329466207739
Iteration: 19, Func. Count: 275, Neg. LLF: 147.9314589313861
Iteration: 20, Func. Count: 289, Neg. LLF: 147.93079955323432
Iteration: 21, Func. Count: 303, Neg. LLF: 147.93040130940656
Iteration: 22, Func. Count: 317, Neg. LLF: 147.93039540714057
Iteration: 23, Func. Count: 330, Neg. LLF: 147.93039540692462
Optimization terminated successfully (Exit mode 0)
Current function value: 147.93039540714057
Iterations: 23
Function evaluations: 330
Gradient evaluations: 23
Iteration: 1, Func. Count: 8, Neg. LLF: 152.5218497718756
Iteration: 2, Func. Count: 15, Neg. LLF: 157.50520847278733
Iteration: 3, Func. Count: 23, Neg. LLF: 151.56561907752152
Iteration: 4, Func. Count: 30, Neg. LLF: 151.52217586351242
Iteration: 5, Func. Count: 37, Neg. LLF: 151.45739235075015
Iteration: 6, Func. Count: 44, Neg. LLF: 151.33477684019653
Iteration: 7, Func. Count: 51, Neg. LLF: 151.30644557171348
Iteration: 8, Func. Count: 58, Neg. LLF: 151.30370458158265
Iteration: 9, Func. Count: 65, Neg. LLF: 151.30368826654862
Iteration: 10, Func. Count: 72, Neg. LLF: 151.3036876789738
Optimization terminated successfully (Exit mode 0)
Current function value: 151.3036876789738
Iterations: 10
Function evaluations: 72
Gradient evaluations: 10
Iteration: 1, Func. Count: 9, Neg. LLF: 3160.0291244288355
Iteration: 2, Func. Count: 19, Neg. LLF: 166.61156587425643
Iteration: 3, Func. Count: 28, Neg. LLF: 153.6151262308531
Iteration: 4, Func. Count: 37, Neg. LLF: 148.65894746602348
Iteration: 5, Func. Count: 45, Neg. LLF: 155.09973705918702
Iteration: 6, Func. Count: 54, Neg. LLF: 155.32644689164084
Iteration: 7, Func. Count: 64, Neg. LLF: 147.9524531206707
Iteration: 8, Func. Count: 72, Neg. LLF: 147.8983899186669
Iteration: 9, Func. Count: 80, Neg. LLF: 147.89693880309187
Iteration: 10, Func. Count: 88, Neg. LLF: 147.89663409237033
Iteration: 11, Func. Count: 96, Neg. LLF: 147.89653349187245
Iteration: 12, Func. Count: 104, Neg. LLF: 147.89651157567715
Iteration: 13, Func. Count: 112, Neg. LLF: 147.8965100150548
Iteration: 14, Func. Count: 119, Neg. LLF: 147.8965100152793
Optimization terminated successfully (Exit mode 0)
Current function value: 147.8965100150548
Iterations: 14
Function evaluations: 119
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 17886.352292634223
Iteration: 2, Func. Count: 21, Neg. LLF: 154.01916672216063
Iteration: 3, Func. Count: 31, Neg. LLF: 148.73768002331613
Iteration: 4, Func. Count: 41, Neg. LLF: 148.340742444804
Iteration: 5, Func. Count: 51, Neg. LLF: 147.96130599271595
Iteration: 6, Func. Count: 60, Neg. LLF: 147.93118546370422
Iteration: 7, Func. Count: 69, Neg. LLF: 147.92839748597743
Iteration: 8, Func. Count: 78, Neg. LLF: 147.92180663140337
Iteration: 9, Func. Count: 87, Neg. LLF: 147.91658875045908
Iteration: 10, Func. Count: 96, Neg. LLF: 147.912053519584
Iteration: 11, Func. Count: 105, Neg. LLF: 147.89660496304418
Iteration: 12, Func. Count: 114, Neg. LLF: 147.89653567982535
Iteration: 13, Func. Count: 123, Neg. LLF: 147.896512351842
Iteration: 14, Func. Count: 132, Neg. LLF: 497.77324966792503
Optimization terminated successfully (Exit mode 0)
Current function value: 147.8965114038566
Iterations: 15
Function evaluations: 136
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 11144.5393217548
Iteration: 2, Func. Count: 23, Neg. LLF: 150.86441660033213
Iteration: 3, Func. Count: 34, Neg. LLF: 147.94284979581667
Iteration: 4, Func. Count: 44, Neg. LLF: 147.98910171080064
Iteration: 5, Func. Count: 55, Neg. LLF: 147.90722317964162
Iteration: 6, Func. Count: 65, Neg. LLF: 147.90378062055856
Iteration: 7, Func. Count: 75, Neg. LLF: 147.90269070044874
Iteration: 8, Func. Count: 85, Neg. LLF: 147.90201463276122
Iteration: 9, Func. Count: 95, Neg. LLF: 147.90196777793778
Iteration: 10, Func. Count: 105, Neg. LLF: 147.90196616942967
Iteration: 11, Func. Count: 114, Neg. LLF: 147.90196616948094
Optimization terminated successfully (Exit mode 0)
Current function value: 147.90196616942967
Iterations: 11
Function evaluations: 114
Gradient evaluations: 11
Iteration: 1, Func. Count: 12, Neg. LLF: 185.66229271563128
Iteration: 2, Func. Count: 24, Neg. LLF: 149.3182943782862
Iteration: 3, Func. Count: 35, Neg. LLF: 149.00429928420797
Iteration: 4, Func. Count: 46, Neg. LLF: 148.71539636725618
Iteration: 5, Func. Count: 57, Neg. LLF: 154.97613227983055
Iteration: 6, Func. Count: 69, Neg. LLF: 155.62870082095097
Iteration: 7, Func. Count: 81, Neg. LLF: 153.68691515925684
Iteration: 8, Func. Count: 93, Neg. LLF: 152.08201902112233
Iteration: 9, Func. Count: 105, Neg. LLF: 150.9205982778095
Iteration: 10, Func. Count: 117, Neg. LLF: 150.05060799895878
Iteration: 11, Func. Count: 129, Neg. LLF: 148.98801507921814
Iteration: 12, Func. Count: 141, Neg. LLF: 148.2727751940334
Iteration: 13, Func. Count: 153, Neg. LLF: 148.01713215877047
Iteration: 14, Func. Count: 164, Neg. LLF: 147.97853663986643
Iteration: 15, Func. Count: 175, Neg. LLF: 147.95804880265632
Iteration: 16, Func. Count: 186, Neg. LLF: 147.9497345687555
Iteration: 17, Func. Count: 197, Neg. LLF: 147.93919790870825
Iteration: 18, Func. Count: 208, Neg. LLF: 147.93362184452445
Iteration: 19, Func. Count: 219, Neg. LLF: 147.9327577183263
Iteration: 20, Func. Count: 230, Neg. LLF: 147.93260471670663
Iteration: 21, Func. Count: 241, Neg. LLF: 147.93234674554446
Iteration: 22, Func. Count: 252, Neg. LLF: 147.95079674502844
Iteration: 23, Func. Count: 264, Neg. LLF: 147.93452099986965
Iteration: 24, Func. Count: 276, Neg. LLF: 147.93148620098322
Iteration: 25, Func. Count: 287, Neg. LLF: 147.93110010694545
Iteration: 26, Func. Count: 298, Neg. LLF: 147.93040452060492
Iteration: 27, Func. Count: 309, Neg. LLF: 147.9303964859245
Iteration: 28, Func. Count: 320, Neg. LLF: 147.93039519047437
Iteration: 29, Func. Count: 330, Neg. LLF: 147.93039519044947
Optimization terminated successfully (Exit mode 0)
Current function value: 147.93039519047437
Iterations: 29
Function evaluations: 330
Gradient evaluations: 29
Iteration: 1, Func. Count: 9, Neg. LLF: 153.43017020720694
Iteration: 2, Func. Count: 18, Neg. LLF: 155.97367610021234
Iteration: 3, Func. Count: 27, Neg. LLF: 148.31891966573704
Iteration: 4, Func. Count: 35, Neg. LLF: 148.08466957431173
Iteration: 5, Func. Count: 43, Neg. LLF: 148.03798825249507
Iteration: 6, Func. Count: 51, Neg. LLF: 148.0374256436303
Iteration: 7, Func. Count: 59, Neg. LLF: 148.0368718125193
Iteration: 8, Func. Count: 67, Neg. LLF: 148.03687075672343
Iteration: 9, Func. Count: 75, Neg. LLF: 148.03686903026647
Iteration: 10, Func. Count: 82, Neg. LLF: 148.03686903758407
Optimization terminated successfully (Exit mode 0)
Current function value: 148.03686903026647
Iterations: 10
Function evaluations: 82
Gradient evaluations: 10
Iteration: 1, Func. Count: 10, Neg. LLF: 1559.781638866412
Iteration: 2, Func. Count: 21, Neg. LLF: 152.48841925400654
Iteration: 3, Func. Count: 31, Neg. LLF: 154.4522901749128
Iteration: 4, Func. Count: 41, Neg. LLF: 148.58838027129033
Iteration: 5, Func. Count: 50, Neg. LLF: 154.94172262681911
Iteration: 6, Func. Count: 60, Neg. LLF: 155.93694631442457
Iteration: 7, Func. Count: 71, Neg. LLF: 147.95373630823994
Iteration: 8, Func. Count: 80, Neg. LLF: 147.89735397410303
Iteration: 9, Func. Count: 89, Neg. LLF: 147.89663242413926
Iteration: 10, Func. Count: 98, Neg. LLF: 147.89651267386182
Iteration: 11, Func. Count: 107, Neg. LLF: 147.89651077308454
Iteration: 12, Func. Count: 116, Neg. LLF: 147.89651011459705
Optimization terminated successfully (Exit mode 0)
Current function value: 147.89651011459705
Iterations: 12
Function evaluations: 116
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 3476.480052951417
Iteration: 2, Func. Count: 23, Neg. LLF: 154.1026162161998
Iteration: 3, Func. Count: 34, Neg. LLF: 148.2357409568379
Iteration: 4, Func. Count: 44, Neg. LLF: 148.349353460921
Iteration: 5, Func. Count: 55, Neg. LLF: 147.98135021232102
Iteration: 6, Func. Count: 65, Neg. LLF: 148.0112790939653
Iteration: 7, Func. Count: 76, Neg. LLF: 147.7480327779822
Iteration: 8, Func. Count: 86, Neg. LLF: 147.64025014850534
Iteration: 9, Func. Count: 96, Neg. LLF: 147.6365743217812
Iteration: 10, Func. Count: 106, Neg. LLF: 147.63636396513456
Iteration: 11, Func. Count: 116, Neg. LLF: 147.63625686714366
Iteration: 12, Func. Count: 126, Neg. LLF: 7181468.873333669
Iteration: 13, Func. Count: 140, Neg. LLF: 147.95759925827977
Iteration: 14, Func. Count: 153, Neg. LLF: 147.63622199410779
Iteration: 15, Func. Count: 163, Neg. LLF: 147.636220956677
Iteration: 16, Func. Count: 172, Neg. LLF: 147.63622095667716
Optimization terminated successfully (Exit mode 0)
Current function value: 147.636220956677
Iterations: 17
Function evaluations: 172
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 184.54820427927925
Iteration: 2, Func. Count: 25, Neg. LLF: 149.07371990837214
Iteration: 3, Func. Count: 36, Neg. LLF: 148.86811647257738
Iteration: 4, Func. Count: 47, Neg. LLF: 148.4340433795759
Iteration: 5, Func. Count: 58, Neg. LLF: 148.39699971130693
Iteration: 6, Func. Count: 70, Neg. LLF: 152.81468431003927
Iteration: 7, Func. Count: 82, Neg. LLF: 148.2704726921015
Iteration: 8, Func. Count: 94, Neg. LLF: 148.09024414785964
Iteration: 9, Func. Count: 106, Neg. LLF: 147.85532339690346
Iteration: 10, Func. Count: 117, Neg. LLF: 147.84463791043925
Iteration: 11, Func. Count: 128, Neg. LLF: 147.8443082704287
Iteration: 12, Func. Count: 139, Neg. LLF: 147.84377530439306
Iteration: 13, Func. Count: 150, Neg. LLF: 147.84377643962435
Iteration: 14, Func. Count: 162, Neg. LLF: 147.84376257683556
Iteration: 15, Func. Count: 172, Neg. LLF: 147.84376257681407
Optimization terminated successfully (Exit mode 0)
Current function value: 147.84376257683556
Iterations: 15
Function evaluations: 172
Gradient evaluations: 15
Iteration: 1, Func. Count: 13, Neg. LLF: 185.3317245611622
Iteration: 2, Func. Count: 26, Neg. LLF: 149.32117554961545
Iteration: 3, Func. Count: 38, Neg. LLF: 149.03854776583975
Iteration: 4, Func. Count: 50, Neg. LLF: 148.7821588544806
Iteration: 5, Func. Count: 62, Neg. LLF: 153.38130823664454
Iteration: 6, Func. Count: 75, Neg. LLF: 155.91284830729347
Iteration: 7, Func. Count: 88, Neg. LLF: 155.33318705452297
Iteration: 8, Func. Count: 101, Neg. LLF: 153.53596543508752
Iteration: 9, Func. Count: 114, Neg. LLF: 152.4293228204997
Iteration: 10, Func. Count: 127, Neg. LLF: 150.44112592418637
Iteration: 11, Func. Count: 140, Neg. LLF: 155.54345539289656
Iteration: 12, Func. Count: 153, Neg. LLF: 148.56951979099412
Iteration: 13, Func. Count: 166, Neg. LLF: 148.054304261838
Iteration: 14, Func. Count: 178, Neg. LLF: 148.01245534350045
Iteration: 15, Func. Count: 190, Neg. LLF: 147.97086233821562
Iteration: 16, Func. Count: 202, Neg. LLF: 147.94713697763368
Iteration: 17, Func. Count: 214, Neg. LLF: 147.9379327366415
Iteration: 18, Func. Count: 226, Neg. LLF: 147.93275835527925
Iteration: 19, Func. Count: 238, Neg. LLF: 147.93147738892074
Iteration: 20, Func. Count: 250, Neg. LLF: 147.93060180595393
Iteration: 21, Func. Count: 262, Neg. LLF: 147.93040861460952
Iteration: 22, Func. Count: 274, Neg. LLF: 147.9303952278435
Iteration: 23, Func. Count: 285, Neg. LLF: 147.93039522772267
Optimization terminated successfully (Exit mode 0)
Current function value: 147.9303952278435
Iterations: 23
Function evaluations: 285
Gradient evaluations: 23
Iteration: 1, Func. Count: 10, Neg. LLF: 152.1094835403421
Iteration: 2, Func. Count: 19, Neg. LLF: 154.57400260703753
Iteration: 3, Func. Count: 29, Neg. LLF: 148.10376765690083
Iteration: 4, Func. Count: 38, Neg. LLF: 148.08410622716764
Iteration: 5, Func. Count: 47, Neg. LLF: 148.03741900782512
Iteration: 6, Func. Count: 56, Neg. LLF: 148.03688241627117
Iteration: 7, Func. Count: 65, Neg. LLF: 148.03686903369032
Iteration: 8, Func. Count: 73, Neg. LLF: 148.0368690734094
Optimization terminated successfully (Exit mode 0)
Current function value: 148.03686903369032
Iterations: 8
Function evaluations: 73
Gradient evaluations: 8
Iteration: 1, Func. Count: 11, Neg. LLF: 1576.911743828911
Iteration: 2, Func. Count: 23, Neg. LLF: 152.53536711295584
Iteration: 3, Func. Count: 34, Neg. LLF: 154.46151262356506
Iteration: 4, Func. Count: 45, Neg. LLF: 148.61372995637635
Iteration: 5, Func. Count: 55, Neg. LLF: 155.11744459736826
Iteration: 6, Func. Count: 66, Neg. LLF: 156.784530788147
Iteration: 7, Func. Count: 78, Neg. LLF: 147.95473658412226
Iteration: 8, Func. Count: 88, Neg. LLF: 147.89761227795074
Iteration: 9, Func. Count: 98, Neg. LLF: 147.89668131999042
Iteration: 10, Func. Count: 108, Neg. LLF: 147.89651110444495
Iteration: 11, Func. Count: 118, Neg. LLF: 147.89650998554407
Iteration: 12, Func. Count: 127, Neg. LLF: 147.89650998549027
Optimization terminated successfully (Exit mode 0)
Current function value: 147.89650998554407
Iterations: 12
Function evaluations: 127
Gradient evaluations: 12
Iteration: 1, Func. Count: 12, Neg. LLF: 3482.3808667068506
Iteration: 2, Func. Count: 25, Neg. LLF: 154.19556075071904
Iteration: 3, Func. Count: 37, Neg. LLF: 148.27602998699476
Iteration: 4, Func. Count: 48, Neg. LLF: 148.42808557723248
Iteration: 5, Func. Count: 60, Neg. LLF: 147.6908283216049
Iteration: 6, Func. Count: 71, Neg. LLF: 157.43142520167413
Iteration: 7, Func. Count: 84, Neg. LLF: 147.662364104632
Iteration: 8, Func. Count: 96, Neg. LLF: 147.6081024457243
Iteration: 9, Func. Count: 107, Neg. LLF: 147.60022964408802
Iteration: 10, Func. Count: 118, Neg. LLF: 147.59142873078005
Iteration: 11, Func. Count: 129, Neg. LLF: 147.58306628957487
Iteration: 12, Func. Count: 140, Neg. LLF: 147.58138460467825
Iteration: 13, Func. Count: 151, Neg. LLF: 147.5811068391365
Iteration: 14, Func. Count: 162, Neg. LLF: 147.58097387636985
Iteration: 15, Func. Count: 173, Neg. LLF: 164.505520034905
Optimization terminated successfully (Exit mode 0)
Current function value: 147.58097352096306
Iterations: 16
Function evaluations: 177
Gradient evaluations: 15
Iteration: 1, Func. Count: 13, Neg. LLF: 184.54827379946624
Iteration: 2, Func. Count: 27, Neg. LLF: 149.0704339793357
Iteration: 3, Func. Count: 39, Neg. LLF: 148.86144696309273
Iteration: 4, Func. Count: 51, Neg. LLF: 148.5269236134382
Iteration: 5, Func. Count: 63, Neg. LLF: 148.81101106611985
Iteration: 6, Func. Count: 76, Neg. LLF: 154.76898961872556
Iteration: 7, Func. Count: 89, Neg. LLF: 148.25309669204137
Iteration: 8, Func. Count: 102, Neg. LLF: 148.24007682488474
Iteration: 9, Func. Count: 115, Neg. LLF: 147.8476165938469
Iteration: 10, Func. Count: 127, Neg. LLF: 147.84605732797453
Iteration: 11, Func. Count: 139, Neg. LLF: 147.84393912027974
Iteration: 12, Func. Count: 151, Neg. LLF: 147.84380405976566
Iteration: 13, Func. Count: 163, Neg. LLF: 196.1483906195268
Optimization terminated successfully (Exit mode 0)
Current function value: 147.84380329486189
Iterations: 14
Function evaluations: 167
Gradient evaluations: 13
Iteration: 1, Func. Count: 14, Neg. LLF: 185.32250399304795
Iteration: 2, Func. Count: 28, Neg. LLF: 149.31230276212509
Iteration: 3, Func. Count: 41, Neg. LLF: 149.0327626092231
Iteration: 4, Func. Count: 54, Neg. LLF: 148.7812632688092
Iteration: 5, Func. Count: 67, Neg. LLF: 154.68573728919
Iteration: 6, Func. Count: 81, Neg. LLF: 154.71867248779802
Iteration: 7, Func. Count: 95, Neg. LLF: 153.92860680670074
Iteration: 8, Func. Count: 109, Neg. LLF: 153.05303370470287
Iteration: 9, Func. Count: 123, Neg. LLF: 152.0670164785298
Iteration: 10, Func. Count: 137, Neg. LLF: 150.9390218205659
Iteration: 11, Func. Count: 151, Neg. LLF: 148.7475936421745
Iteration: 12, Func. Count: 165, Neg. LLF: 148.09965962927933
Iteration: 13, Func. Count: 178, Neg. LLF: 148.05192710692094
Iteration: 14, Func. Count: 191, Neg. LLF: 148.02352678684457
Iteration: 15, Func. Count: 204, Neg. LLF: 147.9824223285044
Iteration: 16, Func. Count: 217, Neg. LLF: 147.9477942185175
Iteration: 17, Func. Count: 230, Neg. LLF: 147.9364290789133
Iteration: 18, Func. Count: 243, Neg. LLF: 147.93221473470243
Iteration: 19, Func. Count: 256, Neg. LLF: 147.93114643740364
Iteration: 20, Func. Count: 269, Neg. LLF: 147.93075369074216
Iteration: 21, Func. Count: 282, Neg. LLF: 147.93039946479286
Iteration: 22, Func. Count: 295, Neg. LLF: 147.93039528747784
Iteration: 23, Func. Count: 307, Neg. LLF: 147.9303952873859
Optimization terminated successfully (Exit mode 0)
Current function value: 147.93039528747784
Iterations: 23
Function evaluations: 307
Gradient evaluations: 23
Iteration: 1, Func. Count: 11, Neg. LLF: 148.30293109417758
Iteration: 2, Func. Count: 21, Neg. LLF: 149.45573748419682
Iteration: 3, Func. Count: 32, Neg. LLF: 148.16712555229313
Iteration: 4, Func. Count: 42, Neg. LLF: 148.05658752342362
Iteration: 5, Func. Count: 52, Neg. LLF: 148.0387986004913
Iteration: 6, Func. Count: 62, Neg. LLF: 148.0368890024558
Iteration: 7, Func. Count: 72, Neg. LLF: 148.03686904389724
Iteration: 8, Func. Count: 81, Neg. LLF: 148.03686923199785
Optimization terminated successfully (Exit mode 0)
Current function value: 148.03686904389724
Iterations: 8
Function evaluations: 81
Gradient evaluations: 8
Iteration: 1, Func. Count: 12, Neg. LLF: 1616.661283846369
Iteration: 2, Func. Count: 25, Neg. LLF: 152.73338760501287
Iteration: 3, Func. Count: 37, Neg. LLF: 154.5559970617869
Iteration: 4, Func. Count: 49, Neg. LLF: 148.69390811715851
Iteration: 5, Func. Count: 60, Neg. LLF: 155.36465572499327
Iteration: 6, Func. Count: 72, Neg. LLF: 160.34068339474808
Iteration: 7, Func. Count: 85, Neg. LLF: 147.96605411540654
Iteration: 8, Func. Count: 96, Neg. LLF: 147.89915137882159
Iteration: 9, Func. Count: 107, Neg. LLF: 147.8970482572958
Iteration: 10, Func. Count: 118, Neg. LLF: 147.89653099683179
Iteration: 11, Func. Count: 129, Neg. LLF: 147.8965149801832
Iteration: 12, Func. Count: 140, Neg. LLF: 147.89651152023546
Iteration: 13, Func. Count: 151, Neg. LLF: 147.89650999026114
Iteration: 14, Func. Count: 161, Neg. LLF: 147.89650999048496
Optimization terminated successfully (Exit mode 0)
Current function value: 147.89650999026114
Iterations: 14
Function evaluations: 161
Gradient evaluations: 14
Iteration: 1, Func. Count: 13, Neg. LLF: 3603.0890471248144
Iteration: 2, Func. Count: 27, Neg. LLF: 154.1162699222738
Iteration: 3, Func. Count: 40, Neg. LLF: 148.25573672253998
Iteration: 4, Func. Count: 52, Neg. LLF: 148.4080218064846
Iteration: 5, Func. Count: 65, Neg. LLF: 147.67263136943632
Iteration: 6, Func. Count: 77, Neg. LLF: 229.070641544933
Iteration: 7, Func. Count: 91, Neg. LLF: 147.5820144560813
Iteration: 8, Func. Count: 104, Neg. LLF: 147.53786095727702
Iteration: 9, Func. Count: 116, Neg. LLF: 147.50636610224228
Iteration: 10, Func. Count: 128, Neg. LLF: 147.48983120127338
Iteration: 11, Func. Count: 140, Neg. LLF: 147.4724625453043
Iteration: 12, Func. Count: 152, Neg. LLF: 147.46934275815764
Iteration: 13, Func. Count: 164, Neg. LLF: 147.46923450176632
Iteration: 14, Func. Count: 176, Neg. LLF: 330960.9259895455
Iteration: 15, Func. Count: 192, Neg. LLF: 147.79463045028777
Iteration: 16, Func. Count: 207, Neg. LLF: 147.47317135441023
Optimization terminated successfully (Exit mode 0)
Current function value: 147.46921679865483
Iterations: 17
Function evaluations: 209
Gradient evaluations: 16
Iteration: 1, Func. Count: 14, Neg. LLF: 184.54412964248684
Iteration: 2, Func. Count: 29, Neg. LLF: 149.05949723662064
Iteration: 3, Func. Count: 42, Neg. LLF: 148.85413123609163
Iteration: 4, Func. Count: 55, Neg. LLF: 148.55280261129246
Iteration: 5, Func. Count: 68, Neg. LLF: 148.65322562019972
Iteration: 6, Func. Count: 82, Neg. LLF: 150.95938640675269
Iteration: 7, Func. Count: 97, Neg. LLF: 147.9189640592304
Iteration: 8, Func. Count: 110, Neg. LLF: 148.02307151712935
Iteration: 9, Func. Count: 124, Neg. LLF: 147.85303822320049
Iteration: 10, Func. Count: 137, Neg. LLF: 147.8442244925913
Iteration: 11, Func. Count: 150, Neg. LLF: 147.84379169832832
Iteration: 12, Func. Count: 163, Neg. LLF: 147.84376459311747
Iteration: 13, Func. Count: 176, Neg. LLF: 147.84376293224904
Iteration: 14, Func. Count: 188, Neg. LLF: 147.8437629321872
Optimization terminated successfully (Exit mode 0)
Current function value: 147.84376293224904
Iterations: 14
Function evaluations: 188
Gradient evaluations: 14
Iteration: 1, Func. Count: 15, Neg. LLF: 185.32912696143185
Iteration: 2, Func. Count: 30, Neg. LLF: 149.3025275060429
Iteration: 3, Func. Count: 44, Neg. LLF: 149.02503794443413
Iteration: 4, Func. Count: 58, Neg. LLF: 148.76386754986157
Iteration: 5, Func. Count: 72, Neg. LLF: 153.23494357768737
Iteration: 6, Func. Count: 87, Neg. LLF: 154.01602033196366
Iteration: 7, Func. Count: 102, Neg. LLF: 153.71736254861017
Iteration: 8, Func. Count: 117, Neg. LLF: 152.873511066297
Iteration: 9, Func. Count: 132, Neg. LLF: 151.66886713223215
Iteration: 10, Func. Count: 147, Neg. LLF: 150.53290666565022
Iteration: 11, Func. Count: 162, Neg. LLF: 148.9928984214132
Iteration: 12, Func. Count: 177, Neg. LLF: 148.11532344642345
Iteration: 13, Func. Count: 192, Neg. LLF: 148.02824069656782
Iteration: 14, Func. Count: 206, Neg. LLF: 147.97324888246865
Iteration: 15, Func. Count: 220, Neg. LLF: 147.94576867902424
Iteration: 16, Func. Count: 234, Neg. LLF: 147.93831969651933
Iteration: 17, Func. Count: 248, Neg. LLF: 147.93446939554755
Iteration: 18, Func. Count: 262, Neg. LLF: 147.93152795357202
Iteration: 19, Func. Count: 276, Neg. LLF: 147.93053913202903
Iteration: 20, Func. Count: 290, Neg. LLF: 147.93040001749213
Iteration: 21, Func. Count: 304, Neg. LLF: 147.93039568450828
Iteration: 22, Func. Count: 317, Neg. LLF: 147.93039568461884
Optimization terminated successfully (Exit mode 0)
Current function value: 147.93039568450828
Iterations: 22
Function evaluations: 317
Gradient evaluations: 22
Iteration: 1, Func. Count: 12, Neg. LLF: 148.34854291040511
Iteration: 2, Func. Count: 23, Neg. LLF: 149.95453948385
Iteration: 3, Func. Count: 35, Neg. LLF: 148.17205479105954
Iteration: 4, Func. Count: 46, Neg. LLF: 148.05775680023365
Iteration: 5, Func. Count: 57, Neg. LLF: 148.0390106739603
Iteration: 6, Func. Count: 68, Neg. LLF: 148.0368924684969
Iteration: 7, Func. Count: 79, Neg. LLF: 148.03686904998136
Iteration: 8, Func. Count: 89, Neg. LLF: 148.03686944626327
Optimization terminated successfully (Exit mode 0)
Current function value: 148.03686904998136
Iterations: 8
Function evaluations: 89
Gradient evaluations: 8
Iteration: 1, Func. Count: 13, Neg. LLF: 1676.4178698133248
Iteration: 2, Func. Count: 27, Neg. LLF: 153.11500008411852
Iteration: 3, Func. Count: 40, Neg. LLF: 154.71341517624933
Iteration: 4, Func. Count: 53, Neg. LLF: 148.819685016825
Iteration: 5, Func. Count: 65, Neg. LLF: 155.59123590839306
Iteration: 6, Func. Count: 78, Neg. LLF: 158.5183667051292
Iteration: 7, Func. Count: 93, Neg. LLF: 148.2232431964891
Iteration: 8, Func. Count: 105, Neg. LLF: 147.87142985246857
Iteration: 9, Func. Count: 117, Neg. LLF: 147.85157182413485
Iteration: 10, Func. Count: 129, Neg. LLF: 147.8435983942873
Iteration: 11, Func. Count: 141, Neg. LLF: 147.83931038029894
Iteration: 12, Func. Count: 153, Neg. LLF: 147.83900500906418
Iteration: 13, Func. Count: 165, Neg. LLF: 147.83893880316006
Iteration: 14, Func. Count: 176, Neg. LLF: 147.83893880333855
Optimization terminated successfully (Exit mode 0)
Current function value: 147.83893880316006
Iterations: 14
Function evaluations: 176
Gradient evaluations: 14
Iteration: 1, Func. Count: 14, Neg. LLF: 3715.526898630775
Iteration: 2, Func. Count: 29, Neg. LLF: 154.24578992774215
Iteration: 3, Func. Count: 43, Neg. LLF: 147.71623419460886
Iteration: 4, Func. Count: 56, Neg. LLF: 148.17000793856843
Iteration: 5, Func. Count: 70, Neg. LLF: 148.10282453700884
Iteration: 6, Func. Count: 84, Neg. LLF: 147.38148127647716
Iteration: 7, Func. Count: 97, Neg. LLF: 147.17563314901696
Iteration: 8, Func. Count: 110, Neg. LLF: 147.1614401664031
Iteration: 9, Func. Count: 123, Neg. LLF: 147.1603559789002
Iteration: 10, Func. Count: 136, Neg. LLF: 147.16010495466404
Iteration: 11, Func. Count: 149, Neg. LLF: 147.16010302816662
Iteration: 12, Func. Count: 161, Neg. LLF: 147.1601030281333
Optimization terminated successfully (Exit mode 0)
Current function value: 147.16010302816662
Iterations: 12
Function evaluations: 161
Gradient evaluations: 12
Iteration: 1, Func. Count: 15, Neg. LLF: 184.56340057344536
Iteration: 2, Func. Count: 31, Neg. LLF: 149.05488325334653
Iteration: 3, Func. Count: 45, Neg. LLF: 148.85131077839344
Iteration: 4, Func. Count: 59, Neg. LLF: 149.06289010178406
Iteration: 5, Func. Count: 74, Neg. LLF: 149.7266073388204
Iteration: 6, Func. Count: 89, Neg. LLF: 149.28456388675858
Iteration: 7, Func. Count: 104, Neg. LLF: 149.2738173249059
Iteration: 8, Func. Count: 119, Neg. LLF: 147.99076519210413
Iteration: 9, Func. Count: 133, Neg. LLF: 147.83777788555173
Iteration: 10, Func. Count: 147, Neg. LLF: 147.84307774829693
Iteration: 11, Func. Count: 162, Neg. LLF: 147.82857061394196
Iteration: 12, Func. Count: 176, Neg. LLF: 147.82804825451612
Iteration: 13, Func. Count: 190, Neg. LLF: 147.82796343397467
Iteration: 14, Func. Count: 204, Neg. LLF: 147.82794888127054
Iteration: 15, Func. Count: 217, Neg. LLF: 147.8279488814911
Optimization terminated successfully (Exit mode 0)
Current function value: 147.82794888127054
Iterations: 15
Function evaluations: 217
Gradient evaluations: 15
Iteration: 1, Func. Count: 16, Neg. LLF: 185.31679994919838
Iteration: 2, Func. Count: 32, Neg. LLF: 149.27617567951205
Iteration: 3, Func. Count: 47, Neg. LLF: 148.99908860019386
Iteration: 4, Func. Count: 62, Neg. LLF: 148.68967368791513
Iteration: 5, Func. Count: 77, Neg. LLF: 154.4176455792622
Iteration: 6, Func. Count: 93, Neg. LLF: 155.69211802544524
Iteration: 7, Func. Count: 109, Neg. LLF: 153.16163386907783
Iteration: 8, Func. Count: 125, Neg. LLF: 151.28711131836945
Iteration: 9, Func. Count: 141, Neg. LLF: 150.12511381216564
Iteration: 10, Func. Count: 157, Neg. LLF: 149.28050830565195
Iteration: 11, Func. Count: 173, Neg. LLF: 148.37754603703738
Iteration: 12, Func. Count: 189, Neg. LLF: 148.03520111149874
Iteration: 13, Func. Count: 204, Neg. LLF: 147.97135166779617
Iteration: 14, Func. Count: 219, Neg. LLF: 148.17926026834752
Iteration: 15, Func. Count: 235, Neg. LLF: 147.92044500374234
Iteration: 16, Func. Count: 250, Neg. LLF: 147.7764655366929
Iteration: 17, Func. Count: 265, Neg. LLF: 147.2641230273237
Iteration: 18, Func. Count: 280, Neg. LLF: 14250071.770226115
Iteration: 19, Func. Count: 298, Neg. LLF: 1303509.9245120464
Iteration: 20, Func. Count: 315, Neg. LLF: 148.53721117402094
Iteration: 21, Func. Count: 331, Neg. LLF: 147.20817969160174
Iteration: 22, Func. Count: 347, Neg. LLF: 147.17794840898495
Iteration: 23, Func. Count: 363, Neg. LLF: 147.16011543639806
Iteration: 24, Func. Count: 378, Neg. LLF: 147.16010309474441
Iteration: 25, Func. Count: 392, Neg. LLF: 147.16010310641494
Optimization terminated successfully (Exit mode 0)
Current function value: 147.16010309474441
Iterations: 26
Function evaluations: 392
Gradient evaluations: 25
Iteration: 1, Func. Count: 5, Neg. LLF: 153.3439954989862
Iteration: 2, Func. Count: 10, Neg. LLF: 157.36203358756325
Iteration: 3, Func. Count: 15, Neg. LLF: 148.30647321698257
Iteration: 4, Func. Count: 19, Neg. LLF: 148.03847477682723
Iteration: 5, Func. Count: 23, Neg. LLF: 148.0370931420798
Iteration: 6, Func. Count: 27, Neg. LLF: 148.03701910126114
Iteration: 7, Func. Count: 31, Neg. LLF: 148.0369326056133
Iteration: 8, Func. Count: 35, Neg. LLF: 148.03688096446237
Iteration: 9, Func. Count: 39, Neg. LLF: 148.0368697842388
Iteration: 10, Func. Count: 43, Neg. LLF: 148.03686903855032
Optimization terminated successfully (Exit mode 0)
Current function value: 148.03686903855032
Iterations: 10
Function evaluations: 43
Gradient evaluations: 10
Iteration: 1, Func. Count: 5, Neg. LLF: 142.49940724128925
Iteration: 2, Func. Count: 10, Neg. LLF: 149.39740895271663
Iteration: 3, Func. Count: 15, Neg. LLF: 137.93025159769908
Iteration: 4, Func. Count: 19, Neg. LLF: 137.55278565717168
Iteration: 5, Func. Count: 23, Neg. LLF: 137.5404673450572
Iteration: 6, Func. Count: 28, Neg. LLF: 137.48051043090078
Iteration: 7, Func. Count: 32, Neg. LLF: 137.4795117835476
Iteration: 8, Func. Count: 36, Neg. LLF: 137.4792626811645
Iteration: 9, Func. Count: 40, Neg. LLF: 137.47910697058177
Iteration: 10, Func. Count: 44, Neg. LLF: 137.47910630010813
Optimization terminated successfully (Exit mode 0)
Current function value: 137.47910630010813
Iterations: 10
Function evaluations: 44
Gradient evaluations: 10
Iteration: 1, Func. Count: 6, Neg. LLF: 137.7717843556625
Iteration: 2, Func. Count: 12, Neg. LLF: 138.84225964136763
Iteration: 3, Func. Count: 18, Neg. LLF: 137.62211199818518
Iteration: 4, Func. Count: 23, Neg. LLF: 137.5066820704621
Iteration: 5, Func. Count: 28, Neg. LLF: 137.5491402831758
Iteration: 6, Func. Count: 34, Neg. LLF: 137.4506517897508
Iteration: 7, Func. Count: 39, Neg. LLF: 137.4396797905375
Iteration: 8, Func. Count: 44, Neg. LLF: 137.43956367906932
Iteration: 9, Func. Count: 49, Neg. LLF: 137.43955757259377
Iteration: 10, Func. Count: 54, Neg. LLF: 137.43955615282795
Iteration: 11, Func. Count: 58, Neg. LLF: 137.43955615289372
Optimization terminated successfully (Exit mode 0)
Current function value: 137.43955615282795
Iterations: 11
Function evaluations: 58
Gradient evaluations: 11
Iteration: 1, Func. Count: 7, Neg. LLF: 166.2135620109001
Iteration: 2, Func. Count: 15, Neg. LLF: 137.95368771393782
Iteration: 3, Func. Count: 22, Neg. LLF: 137.64747635619855
Iteration: 4, Func. Count: 28, Neg. LLF: 137.63126787064743
Iteration: 5, Func. Count: 34, Neg. LLF: 137.60843241369648
Iteration: 6, Func. Count: 40, Neg. LLF: 137.5823553036181
Iteration: 7, Func. Count: 46, Neg. LLF: 137.51503933860403
Iteration: 8, Func. Count: 52, Neg. LLF: 137.47893258137947
Iteration: 9, Func. Count: 58, Neg. LLF: 137.45460763027415
Iteration: 10, Func. Count: 64, Neg. LLF: 137.4411601946517
Iteration: 11, Func. Count: 70, Neg. LLF: 137.44002364718577
Iteration: 12, Func. Count: 76, Neg. LLF: 137.4396400221409
Iteration: 13, Func. Count: 82, Neg. LLF: 137.43956518045874
Iteration: 14, Func. Count: 88, Neg. LLF: 137.43955606944294
Iteration: 15, Func. Count: 93, Neg. LLF: 137.43955608996168
Optimization terminated successfully (Exit mode 0)
Current function value: 137.43955606944294
Iterations: 15
Function evaluations: 93
Gradient evaluations: 15
Iteration: 1, Func. Count: 8, Neg. LLF: 153.68056289695443
Iteration: 2, Func. Count: 17, Neg. LLF: 137.72366326184817
Iteration: 3, Func. Count: 24, Neg. LLF: 137.6445401586553
Iteration: 4, Func. Count: 31, Neg. LLF: 137.64530148316615
Iteration: 5, Func. Count: 39, Neg. LLF: 137.60758746829777
Iteration: 6, Func. Count: 46, Neg. LLF: 137.54416404215482
Iteration: 7, Func. Count: 53, Neg. LLF: 137.5080697007684
Iteration: 8, Func. Count: 60, Neg. LLF: 137.44304520012915
Iteration: 9, Func. Count: 67, Neg. LLF: 137.4418987490359
Iteration: 10, Func. Count: 74, Neg. LLF: 137.4396277265918
Iteration: 11, Func. Count: 81, Neg. LLF: 137.4395601752637
Iteration: 12, Func. Count: 88, Neg. LLF: 137.43955595434076
Iteration: 13, Func. Count: 94, Neg. LLF: 137.4395559932791
Optimization terminated successfully (Exit mode 0)
Current function value: 137.43955595434076
Iterations: 13
Function evaluations: 94
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 148.67144490922755
Iteration: 2, Func. Count: 19, Neg. LLF: 137.79282463863842
Iteration: 3, Func. Count: 28, Neg. LLF: 137.66017195449587
Iteration: 4, Func. Count: 36, Neg. LLF: 137.72409478040794
Iteration: 5, Func. Count: 45, Neg. LLF: 137.61201832878325
Iteration: 6, Func. Count: 53, Neg. LLF: 137.57344424203123
Iteration: 7, Func. Count: 61, Neg. LLF: 137.52544787033733
Iteration: 8, Func. Count: 69, Neg. LLF: 137.49932379460475
Iteration: 9, Func. Count: 77, Neg. LLF: 137.46343707197323
Iteration: 10, Func. Count: 85, Neg. LLF: 137.44403444856314
Iteration: 11, Func. Count: 93, Neg. LLF: 137.44152365552378
Iteration: 12, Func. Count: 101, Neg. LLF: 137.439625472457
Iteration: 13, Func. Count: 109, Neg. LLF: 137.4395616109577
Iteration: 14, Func. Count: 117, Neg. LLF: 137.43955747127848
Iteration: 15, Func. Count: 125, Neg. LLF: 137.43955630733464
Iteration: 16, Func. Count: 132, Neg. LLF: 137.43955632230305
Optimization terminated successfully (Exit mode 0)
Current function value: 137.43955630733464
Iterations: 16
Function evaluations: 132
Gradient evaluations: 16
Iteration: 1, Func. Count: 6, Neg. LLF: 147.11162524231563
Iteration: 2, Func. Count: 12, Neg. LLF: 141.81535550848443
Iteration: 3, Func. Count: 18, Neg. LLF: 141.66119070671087
Iteration: 4, Func. Count: 24, Neg. LLF: 137.611738240909
Iteration: 5, Func. Count: 29, Neg. LLF: 137.5024755407359
Iteration: 6, Func. Count: 34, Neg. LLF: 137.45032532830393
Iteration: 7, Func. Count: 39, Neg. LLF: 137.42419117132053
Iteration: 8, Func. Count: 44, Neg. LLF: 137.42039302038563
Iteration: 9, Func. Count: 49, Neg. LLF: 137.4200205335768
Iteration: 10, Func. Count: 54, Neg. LLF: 137.42000788224448
Iteration: 11, Func. Count: 59, Neg. LLF: 137.42000381788682
Iteration: 12, Func. Count: 64, Neg. LLF: 137.42000249418732
Iteration: 13, Func. Count: 69, Neg. LLF: 137.4200018935235
Optimization terminated successfully (Exit mode 0)
Current function value: 137.4200018935235
Iterations: 13
Function evaluations: 69
Gradient evaluations: 13
Iteration: 1, Func. Count: 7, Neg. LLF: 141.3141340985296
Iteration: 2, Func. Count: 15, Neg. LLF: 140.38687884504205
Iteration: 3, Func. Count: 22, Neg. LLF: 137.6440864575074
Iteration: 4, Func. Count: 28, Neg. LLF: 137.6283222133076
Iteration: 5, Func. Count: 34, Neg. LLF: 137.6016837483804
Iteration: 6, Func. Count: 40, Neg. LLF: 137.5342992961944
Iteration: 7, Func. Count: 46, Neg. LLF: 137.48640571494352
Iteration: 8, Func. Count: 52, Neg. LLF: 137.45405325576667
Iteration: 9, Func. Count: 58, Neg. LLF: 137.44089778547604
Iteration: 10, Func. Count: 64, Neg. LLF: 137.4343961421822
Iteration: 11, Func. Count: 70, Neg. LLF: 137.42258540725254
Iteration: 12, Func. Count: 76, Neg. LLF: 137.42119008413312
Iteration: 13, Func. Count: 82, Neg. LLF: 137.420115578975
Iteration: 14, Func. Count: 88, Neg. LLF: 137.42001072494097
Iteration: 15, Func. Count: 94, Neg. LLF: 137.4200018749306
Iteration: 16, Func. Count: 99, Neg. LLF: 137.42000187693546
Optimization terminated successfully (Exit mode 0)
Current function value: 137.4200018749306
Iterations: 16
Function evaluations: 99
Gradient evaluations: 16
Iteration: 1, Func. Count: 8, Neg. LLF: 140.95620177461223
Iteration: 2, Func. Count: 18, Neg. LLF: 140.5176068583142
Iteration: 3, Func. Count: 26, Neg. LLF: 137.69794636171304
Iteration: 4, Func. Count: 33, Neg. LLF: 137.6337981147115
Iteration: 5, Func. Count: 40, Neg. LLF: 137.61973309053485
Iteration: 6, Func. Count: 47, Neg. LLF: 137.59807448486598
Iteration: 7, Func. Count: 54, Neg. LLF: 137.57575580415786
Iteration: 8, Func. Count: 61, Neg. LLF: 137.55284133863918
Iteration: 9, Func. Count: 68, Neg. LLF: 137.51999117236517
Iteration: 10, Func. Count: 75, Neg. LLF: 137.479318051069
Iteration: 11, Func. Count: 82, Neg. LLF: 137.45979652500654
Iteration: 12, Func. Count: 89, Neg. LLF: 137.45212921884354
Iteration: 13, Func. Count: 96, Neg. LLF: 137.4418421013668
Iteration: 14, Func. Count: 103, Neg. LLF: 137.43087374478932
Iteration: 15, Func. Count: 110, Neg. LLF: 137.42417735123294
Iteration: 16, Func. Count: 117, Neg. LLF: 137.42045761642248
Iteration: 17, Func. Count: 124, Neg. LLF: 137.42002993599854
Iteration: 18, Func. Count: 131, Neg. LLF: 137.42000863672453
Iteration: 19, Func. Count: 138, Neg. LLF: 137.4200028507074
Iteration: 20, Func. Count: 145, Neg. LLF: 137.42000189303485
Optimization terminated successfully (Exit mode 0)
Current function value: 137.42000189303485
Iterations: 20
Function evaluations: 145
Gradient evaluations: 20
Iteration: 1, Func. Count: 9, Neg. LLF: 140.2228414657999
Iteration: 2, Func. Count: 20, Neg. LLF: 140.58065492221266
Iteration: 3, Func. Count: 29, Neg. LLF: 137.72012918528122
Iteration: 4, Func. Count: 37, Neg. LLF: 137.6631125258208
Iteration: 5, Func. Count: 45, Neg. LLF: 137.6492931116474
Iteration: 6, Func. Count: 53, Neg. LLF: 137.58087727167302
Iteration: 7, Func. Count: 61, Neg. LLF: 137.66822734398374
Iteration: 8, Func. Count: 70, Neg. LLF: 137.49704723040483
Iteration: 9, Func. Count: 79, Neg. LLF: 137.46721422076845
Iteration: 10, Func. Count: 87, Neg. LLF: 137.44745921218822
Iteration: 11, Func. Count: 95, Neg. LLF: 137.44475791355754
Iteration: 12, Func. Count: 103, Neg. LLF: 137.4375503925931
Iteration: 13, Func. Count: 111, Neg. LLF: 137.43142161679893
Iteration: 14, Func. Count: 119, Neg. LLF: 137.4227322592512
Iteration: 15, Func. Count: 127, Neg. LLF: 137.42112512656942
Iteration: 16, Func. Count: 135, Neg. LLF: 137.42036761059595
Iteration: 17, Func. Count: 143, Neg. LLF: 137.42001761043255
Iteration: 18, Func. Count: 151, Neg. LLF: 137.4200023962403
Iteration: 19, Func. Count: 158, Neg. LLF: 137.4200024348465
Optimization terminated successfully (Exit mode 0)
Current function value: 137.4200023962403
Iterations: 19
Function evaluations: 158
Gradient evaluations: 19
Iteration: 1, Func. Count: 10, Neg. LLF: 139.4579034302589
Iteration: 2, Func. Count: 22, Neg. LLF: 140.44237215589365
Iteration: 3, Func. Count: 32, Neg. LLF: 137.66747992911445
Iteration: 4, Func. Count: 41, Neg. LLF: 137.6372639973922
Iteration: 5, Func. Count: 50, Neg. LLF: 137.62336502662413
Iteration: 6, Func. Count: 59, Neg. LLF: 137.5958690088601
Iteration: 7, Func. Count: 68, Neg. LLF: 137.57730529948742
Iteration: 8, Func. Count: 77, Neg. LLF: 137.53650754324516
Iteration: 9, Func. Count: 86, Neg. LLF: 137.5154398921931
Iteration: 10, Func. Count: 95, Neg. LLF: 137.49391149615164
Iteration: 11, Func. Count: 104, Neg. LLF: 137.47264224030366
Iteration: 12, Func. Count: 113, Neg. LLF: 137.45466970885963
Iteration: 13, Func. Count: 122, Neg. LLF: 137.44269642635066
Iteration: 14, Func. Count: 131, Neg. LLF: 137.4246051318793
Iteration: 15, Func. Count: 140, Neg. LLF: 137.42155622751926
Iteration: 16, Func. Count: 149, Neg. LLF: 137.4207486338573
Iteration: 17, Func. Count: 158, Neg. LLF: 137.42012217041076
Iteration: 18, Func. Count: 167, Neg. LLF: 137.42002241762373
Iteration: 19, Func. Count: 176, Neg. LLF: 137.42000315854665
Iteration: 20, Func. Count: 185, Neg. LLF: 137.42000190886208
Iteration: 21, Func. Count: 193, Neg. LLF: 137.42000192309328
Optimization terminated successfully (Exit mode 0)
Current function value: 137.42000190886208
Iterations: 21
Function evaluations: 193
Gradient evaluations: 21
Iteration: 1, Func. Count: 7, Neg. LLF: 147.38956624712566
Iteration: 2, Func. Count: 14, Neg. LLF: 141.3148499427269
Iteration: 3, Func. Count: 22, Neg. LLF: 158.22300984306227
Iteration: 4, Func. Count: 29, Neg. LLF: 137.67396960172508
Iteration: 5, Func. Count: 35, Neg. LLF: 137.4895188056015
Iteration: 6, Func. Count: 41, Neg. LLF: 137.46554188396976
Iteration: 7, Func. Count: 47, Neg. LLF: 137.4311133759482
Iteration: 8, Func. Count: 53, Neg. LLF: 137.42117428127202
Iteration: 9, Func. Count: 59, Neg. LLF: 137.42029871053327
Iteration: 10, Func. Count: 65, Neg. LLF: 137.42014550313095
Iteration: 11, Func. Count: 71, Neg. LLF: 137.4200041594725
Iteration: 12, Func. Count: 77, Neg. LLF: 137.42000196769945
Iteration: 13, Func. Count: 82, Neg. LLF: 137.4200020042399
Optimization terminated successfully (Exit mode 0)
Current function value: 137.42000196769945
Iterations: 13
Function evaluations: 82
Gradient evaluations: 13
Iteration: 1, Func. Count: 8, Neg. LLF: 141.86427586109028
Iteration: 2, Func. Count: 17, Neg. LLF: 140.49438981835252
Iteration: 3, Func. Count: 25, Neg. LLF: 137.65064813150403
Iteration: 4, Func. Count: 32, Neg. LLF: 137.63515858410463
Iteration: 5, Func. Count: 39, Neg. LLF: 137.61910588187683
Iteration: 6, Func. Count: 46, Neg. LLF: 137.56250302855003
Iteration: 7, Func. Count: 53, Neg. LLF: 137.5076516051688
Iteration: 8, Func. Count: 60, Neg. LLF: 137.4764456377752
Iteration: 9, Func. Count: 67, Neg. LLF: 137.446844372544
Iteration: 10, Func. Count: 74, Neg. LLF: 137.4447114188118
Iteration: 11, Func. Count: 81, Neg. LLF: 137.4249301014481
Iteration: 12, Func. Count: 88, Neg. LLF: 137.4212815033589
Iteration: 13, Func. Count: 95, Neg. LLF: 137.42035851650562
Iteration: 14, Func. Count: 102, Neg. LLF: 137.42006104128143
Iteration: 15, Func. Count: 109, Neg. LLF: 137.42000338010843
Iteration: 16, Func. Count: 116, Neg. LLF: 137.4200018696861
Iteration: 17, Func. Count: 122, Neg. LLF: 137.42000187169683
Optimization terminated successfully (Exit mode 0)
Current function value: 137.4200018696861
Iterations: 17
Function evaluations: 122
Gradient evaluations: 17
Iteration: 1, Func. Count: 9, Neg. LLF: 141.84922412707647
Iteration: 2, Func. Count: 20, Neg. LLF: 140.64686108373613
Iteration: 3, Func. Count: 29, Neg. LLF: 137.69774411468958
Iteration: 4, Func. Count: 37, Neg. LLF: 137.6355762231312
Iteration: 5, Func. Count: 45, Neg. LLF: 137.63459834676567
Iteration: 6, Func. Count: 54, Neg. LLF: 137.6110140128886
Iteration: 7, Func. Count: 62, Neg. LLF: 137.5541114151456
Iteration: 8, Func. Count: 70, Neg. LLF: 137.5337009904394
Iteration: 9, Func. Count: 78, Neg. LLF: 137.48168627422288
Iteration: 10, Func. Count: 86, Neg. LLF: 137.46366221237145
Iteration: 11, Func. Count: 94, Neg. LLF: 137.45562974374602
Iteration: 12, Func. Count: 102, Neg. LLF: 137.44696242033567
Iteration: 13, Func. Count: 110, Neg. LLF: 137.4335334247418
Iteration: 14, Func. Count: 118, Neg. LLF: 137.4452879400108
Iteration: 15, Func. Count: 127, Neg. LLF: 137.4220712048685
Iteration: 16, Func. Count: 135, Neg. LLF: 137.42001671386254
Iteration: 17, Func. Count: 143, Neg. LLF: 137.42000366366506
Iteration: 18, Func. Count: 151, Neg. LLF: 137.4200019132105
Iteration: 19, Func. Count: 158, Neg. LLF: 137.42000193179422
Optimization terminated successfully (Exit mode 0)
Current function value: 137.4200019132105
Iterations: 19
Function evaluations: 158
Gradient evaluations: 19
Iteration: 1, Func. Count: 10, Neg. LLF: 140.34097270679914
Iteration: 2, Func. Count: 22, Neg. LLF: 140.5742528817339
Iteration: 3, Func. Count: 32, Neg. LLF: 137.72420576068248
Iteration: 4, Func. Count: 41, Neg. LLF: 137.6634453812341
Iteration: 5, Func. Count: 50, Neg. LLF: 137.64957915806264
Iteration: 6, Func. Count: 59, Neg. LLF: 137.58175342526383
Iteration: 7, Func. Count: 68, Neg. LLF: 137.66664700744616
Iteration: 8, Func. Count: 78, Neg. LLF: 137.49630936970948
Iteration: 9, Func. Count: 88, Neg. LLF: 137.46730874829728
Iteration: 10, Func. Count: 97, Neg. LLF: 137.44766164554025
Iteration: 11, Func. Count: 106, Neg. LLF: 137.44416330371257
Iteration: 12, Func. Count: 115, Neg. LLF: 137.43286843571232
Iteration: 13, Func. Count: 124, Neg. LLF: 137.42779345409733
Iteration: 14, Func. Count: 133, Neg. LLF: 137.4222721461522
Iteration: 15, Func. Count: 142, Neg. LLF: 137.42134055052537
Iteration: 16, Func. Count: 151, Neg. LLF: 137.42007120632192
Iteration: 17, Func. Count: 160, Neg. LLF: 137.42001405921857
Iteration: 18, Func. Count: 169, Neg. LLF: 137.42000277675754
Iteration: 19, Func. Count: 178, Neg. LLF: 137.4200019086114
Optimization terminated successfully (Exit mode 0)
Current function value: 137.4200019086114
Iterations: 19
Function evaluations: 178
Gradient evaluations: 19
Iteration: 1, Func. Count: 11, Neg. LLF: 351.4591588248637
Iteration: 2, Func. Count: 24, Neg. LLF: 140.49783837968755
Iteration: 3, Func. Count: 36, Neg. LLF: 137.87401926578391
Iteration: 4, Func. Count: 46, Neg. LLF: 137.74356761553105
Iteration: 5, Func. Count: 56, Neg. LLF: 137.68603960655346
Iteration: 6, Func. Count: 66, Neg. LLF: 137.41782689014923
Iteration: 7, Func. Count: 76, Neg. LLF: 137.391321475613
Iteration: 8, Func. Count: 86, Neg. LLF: 137.3624641867372
Iteration: 9, Func. Count: 96, Neg. LLF: 137.35231158866108
Iteration: 10, Func. Count: 106, Neg. LLF: 137.3783837834982
Iteration: 11, Func. Count: 117, Neg. LLF: 137.32476800627487
Iteration: 12, Func. Count: 127, Neg. LLF: 137.32041413482006
Iteration: 13, Func. Count: 137, Neg. LLF: 137.31899310185858
Iteration: 14, Func. Count: 147, Neg. LLF: 137.31805921390034
Iteration: 15, Func. Count: 157, Neg. LLF: 137.31736527458511
Iteration: 16, Func. Count: 167, Neg. LLF: 137.31724097302393
Iteration: 17, Func. Count: 177, Neg. LLF: 137.31723380044446
Iteration: 18, Func. Count: 186, Neg. LLF: 137.3172338003465
Optimization terminated successfully (Exit mode 0)
Current function value: 137.31723380044446
Iterations: 18
Function evaluations: 186
Gradient evaluations: 18
Iteration: 1, Func. Count: 8, Neg. LLF: 145.41223653057452
Iteration: 2, Func. Count: 16, Neg. LLF: 141.56397804258862
Iteration: 3, Func. Count: 25, Neg. LLF: 154.58471006684914
Iteration: 4, Func. Count: 33, Neg. LLF: 137.71199819412243
Iteration: 5, Func. Count: 40, Neg. LLF: 137.51604150616387
Iteration: 6, Func. Count: 47, Neg. LLF: 137.42552154356156
Iteration: 7, Func. Count: 54, Neg. LLF: 137.42653964034727
Iteration: 8, Func. Count: 62, Neg. LLF: 137.42017802338435
Iteration: 9, Func. Count: 69, Neg. LLF: 137.42006249032232
Iteration: 10, Func. Count: 76, Neg. LLF: 137.42002595900013
Iteration: 11, Func. Count: 83, Neg. LLF: 137.42000310685103
Iteration: 12, Func. Count: 90, Neg. LLF: 137.42000190414507
Iteration: 13, Func. Count: 96, Neg. LLF: 137.4200020115535
Optimization terminated successfully (Exit mode 0)
Current function value: 137.42000190414507
Iterations: 13
Function evaluations: 96
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 141.8160736452571
Iteration: 2, Func. Count: 19, Neg. LLF: 140.49344413836303
Iteration: 3, Func. Count: 28, Neg. LLF: 137.6514682144332
Iteration: 4, Func. Count: 36, Neg. LLF: 137.65527795738734
Iteration: 5, Func. Count: 45, Neg. LLF: 137.62367014788657
Iteration: 6, Func. Count: 54, Neg. LLF: 137.56997335179835
Iteration: 7, Func. Count: 62, Neg. LLF: 137.47040928947555
Iteration: 8, Func. Count: 70, Neg. LLF: 137.43112986367558
Iteration: 9, Func. Count: 78, Neg. LLF: 137.42327371322952
Iteration: 10, Func. Count: 86, Neg. LLF: 137.42048233312423
Iteration: 11, Func. Count: 94, Neg. LLF: 137.4200272062867
Iteration: 12, Func. Count: 102, Neg. LLF: 137.42000244859724
Iteration: 13, Func. Count: 110, Neg. LLF: 137.42000187283335
Optimization terminated successfully (Exit mode 0)
Current function value: 137.42000187283335
Iterations: 13
Function evaluations: 110
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 141.80207045832884
Iteration: 2, Func. Count: 22, Neg. LLF: 140.6436005287551
Iteration: 3, Func. Count: 32, Neg. LLF: 137.6954212391022
Iteration: 4, Func. Count: 41, Neg. LLF: 137.6368913844621
Iteration: 5, Func. Count: 50, Neg. LLF: 137.61548818629382
Iteration: 6, Func. Count: 59, Neg. LLF: 137.5942290526566
Iteration: 7, Func. Count: 68, Neg. LLF: 137.53519406377143
Iteration: 8, Func. Count: 77, Neg. LLF: 137.5158508796491
Iteration: 9, Func. Count: 86, Neg. LLF: 137.46796324353954
Iteration: 10, Func. Count: 95, Neg. LLF: 137.4543653386533
Iteration: 11, Func. Count: 104, Neg. LLF: 137.4474344365896
Iteration: 12, Func. Count: 113, Neg. LLF: 137.43740338519126
Iteration: 13, Func. Count: 122, Neg. LLF: 137.42851873207462
Iteration: 14, Func. Count: 131, Neg. LLF: 137.42097817321786
Iteration: 15, Func. Count: 140, Neg. LLF: 137.42015096579092
Iteration: 16, Func. Count: 149, Neg. LLF: 137.42000518989576
Iteration: 17, Func. Count: 158, Neg. LLF: 137.42000201852707
Iteration: 18, Func. Count: 166, Neg. LLF: 137.42000203714102
Optimization terminated successfully (Exit mode 0)
Current function value: 137.42000201852707
Iterations: 18
Function evaluations: 166
Gradient evaluations: 18
Iteration: 1, Func. Count: 11, Neg. LLF: 26438634.57002614
Iteration: 2, Func. Count: 24, Neg. LLF: 137.8770925697799
Iteration: 3, Func. Count: 34, Neg. LLF: 137.86970530178553
Iteration: 4, Func. Count: 44, Neg. LLF: 137.90020794276748
Iteration: 5, Func. Count: 55, Neg. LLF: 137.8629376043617
Iteration: 6, Func. Count: 65, Neg. LLF: 137.86205489879399
Iteration: 7, Func. Count: 75, Neg. LLF: 137.86191268442542
Iteration: 8, Func. Count: 85, Neg. LLF: 137.86179953553776
Iteration: 9, Func. Count: 95, Neg. LLF: 137.85983238103464
Iteration: 10, Func. Count: 105, Neg. LLF: 137.80699273550735
Iteration: 11, Func. Count: 115, Neg. LLF: 137.79171172364232
Iteration: 12, Func. Count: 125, Neg. LLF: 137.78750199056708
Iteration: 13, Func. Count: 136, Neg. LLF: 137.72709237804733
Iteration: 14, Func. Count: 146, Neg. LLF: 137.72063630807662
Iteration: 15, Func. Count: 156, Neg. LLF: 137.71979837604812
Iteration: 16, Func. Count: 166, Neg. LLF: 137.7197603161726
Iteration: 17, Func. Count: 176, Neg. LLF: 137.71975426569634
Iteration: 18, Func. Count: 186, Neg. LLF: 137.71975250697636
Iteration: 19, Func. Count: 195, Neg. LLF: 137.71975250681942
Optimization terminated successfully (Exit mode 0)
Current function value: 137.71975250697636
Iterations: 19
Function evaluations: 195
Gradient evaluations: 19
Iteration: 1, Func. Count: 12, Neg. LLF: 26432692.918074667
Iteration: 2, Func. Count: 26, Neg. LLF: 143.36572116885074
Iteration: 3, Func. Count: 39, Neg. LLF: 137.8590560726105
Iteration: 4, Func. Count: 50, Neg. LLF: 137.7657938052985
Iteration: 5, Func. Count: 61, Neg. LLF: 137.69640207493597
Iteration: 6, Func. Count: 72, Neg. LLF: 138.05819205676397
Iteration: 7, Func. Count: 84, Neg. LLF: 137.65351962395735
Iteration: 8, Func. Count: 96, Neg. LLF: 137.524657877888
Iteration: 9, Func. Count: 108, Neg. LLF: 137.55163642209894
Iteration: 10, Func. Count: 120, Neg. LLF: 137.33886738753617
Iteration: 11, Func. Count: 131, Neg. LLF: 142.73828597153312
Iteration: 12, Func. Count: 144, Neg. LLF: 137.31978174184164
Iteration: 13, Func. Count: 155, Neg. LLF: 137.31866970581194
Iteration: 14, Func. Count: 166, Neg. LLF: 137.31749899011916
Iteration: 15, Func. Count: 177, Neg. LLF: 137.3172591386762
Iteration: 16, Func. Count: 188, Neg. LLF: 137.31724173351594
Iteration: 17, Func. Count: 199, Neg. LLF: 137.31723415462267
Iteration: 18, Func. Count: 209, Neg. LLF: 137.3172341541723
Optimization terminated successfully (Exit mode 0)
Current function value: 137.31723415462267
Iterations: 18
Function evaluations: 209
Gradient evaluations: 18
Iteration: 1, Func. Count: 5, Neg. LLF: 139.62357883970645
Iteration: 2, Func. Count: 10, Neg. LLF: 138.9281147626538
Iteration: 3, Func. Count: 15, Neg. LLF: 138.20902992317698
Iteration: 4, Func. Count: 19, Neg. LLF: 138.03829080675138
Iteration: 5, Func. Count: 23, Neg. LLF: 138.0017908436249
Iteration: 6, Func. Count: 27, Neg. LLF: 137.94809624321638
Iteration: 7, Func. Count: 31, Neg. LLF: 137.90367085240604
Iteration: 8, Func. Count: 35, Neg. LLF: 137.903235133806
Iteration: 9, Func. Count: 39, Neg. LLF: 137.90303437853794
Iteration: 10, Func. Count: 43, Neg. LLF: 137.90303000674078
Iteration: 11, Func. Count: 47, Neg. LLF: 137.9030288270135
Iteration: 12, Func. Count: 50, Neg. LLF: 137.90302884219648
Optimization terminated successfully (Exit mode 0)
Current function value: 137.9030288270135
Iterations: 12
Function evaluations: 50
Gradient evaluations: 12
Iteration: 1, Func. Count: 6, Neg. LLF: 177.5503022497186
Iteration: 2, Func. Count: 13, Neg. LLF: 137.90790540829892
Iteration: 3, Func. Count: 18, Neg. LLF: 137.9056633115101
Iteration: 4, Func. Count: 23, Neg. LLF: 137.90555476750524
Iteration: 5, Func. Count: 27, Neg. LLF: 137.90555476748622
Optimization terminated successfully (Exit mode 0)
Current function value: 137.90555476750524
Iterations: 5
Function evaluations: 27
Gradient evaluations: 5
Iteration: 1, Func. Count: 7, Neg. LLF: 170.4776505917716
Iteration: 2, Func. Count: 15, Neg. LLF: 137.9062875849081
Iteration: 3, Func. Count: 21, Neg. LLF: 137.9055519900249
Iteration: 4, Func. Count: 27, Neg. LLF: 137.90545913834617
Iteration: 5, Func. Count: 32, Neg. LLF: 137.9054591383865
Optimization terminated successfully (Exit mode 0)
Current function value: 137.90545913834617
Iterations: 5
Function evaluations: 32
Gradient evaluations: 5
Iteration: 1, Func. Count: 8, Neg. LLF: 165.50672002273194
Iteration: 2, Func. Count: 17, Neg. LLF: 137.9055450409066
Iteration: 3, Func. Count: 24, Neg. LLF: 137.90582127157748
Iteration: 4, Func. Count: 31, Neg. LLF: 137.9054216950945
Optimization terminated successfully (Exit mode 0)
Current function value: 137.90542169518554
Iterations: 4
Function evaluations: 31
Gradient evaluations: 4
Iteration: 1, Func. Count: 9, Neg. LLF: 161.9305200471193
Iteration: 2, Func. Count: 19, Neg. LLF: 137.90553412004394
Iteration: 3, Func. Count: 27, Neg. LLF: 137.90566613960203
Iteration: 4, Func. Count: 35, Neg. LLF: 137.90551258357488
Optimization terminated successfully (Exit mode 0)
Current function value: 137.905512583535
Iterations: 4
Function evaluations: 35
Gradient evaluations: 4
Iteration: 1, Func. Count: 6, Neg. LLF: 139.94712240661903
Iteration: 2, Func. Count: 12, Neg. LLF: 143.80932439227087
Iteration: 3, Func. Count: 18, Neg. LLF: 138.27022358193156
Iteration: 4, Func. Count: 24, Neg. LLF: 138.0422475217259
Iteration: 5, Func. Count: 29, Neg. LLF: 137.67039816059886
Iteration: 6, Func. Count: 34, Neg. LLF: 137.49204265221076
Iteration: 7, Func. Count: 39, Neg. LLF: 137.48199571429828
Iteration: 8, Func. Count: 44, Neg. LLF: 137.47921444596238
Iteration: 9, Func. Count: 49, Neg. LLF: 137.47912564811057
Iteration: 10, Func. Count: 54, Neg. LLF: 137.4791089323131
Iteration: 11, Func. Count: 59, Neg. LLF: 137.4791066751884
Iteration: 12, Func. Count: 63, Neg. LLF: 137.4791066752138
Optimization terminated successfully (Exit mode 0)
Current function value: 137.4791066751884
Iterations: 12
Function evaluations: 63
Gradient evaluations: 12
Iteration: 1, Func. Count: 7, Neg. LLF: 137.99489493292805
Iteration: 2, Func. Count: 14, Neg. LLF: 138.43101877432127
Iteration: 3, Func. Count: 21, Neg. LLF: 137.62925861773957
Iteration: 4, Func. Count: 27, Neg. LLF: 137.56147447056173
Iteration: 5, Func. Count: 33, Neg. LLF: 137.5188574836046
Iteration: 6, Func. Count: 39, Neg. LLF: 137.49332889227952
Iteration: 7, Func. Count: 45, Neg. LLF: 137.4499450984426
Iteration: 8, Func. Count: 51, Neg. LLF: 137.44286508336677
Iteration: 9, Func. Count: 57, Neg. LLF: 137.440143240527
Iteration: 10, Func. Count: 63, Neg. LLF: 137.43956868625446
Iteration: 11, Func. Count: 69, Neg. LLF: 137.4395570013216
Iteration: 12, Func. Count: 75, Neg. LLF: 137.43955605725196
Optimization terminated successfully (Exit mode 0)
Current function value: 137.43955605725196
Iterations: 12
Function evaluations: 75
Gradient evaluations: 12
Iteration: 1, Func. Count: 8, Neg. LLF: 164.1637539540584
Iteration: 2, Func. Count: 17, Neg. LLF: 137.9559110319695
Iteration: 3, Func. Count: 25, Neg. LLF: 137.6404929488418
Iteration: 4, Func. Count: 32, Neg. LLF: 137.63037833162724
Iteration: 5, Func. Count: 39, Neg. LLF: 137.57685643845304
Iteration: 6, Func. Count: 46, Neg. LLF: 137.7698066771341
Iteration: 7, Func. Count: 54, Neg. LLF: 137.49324036920234
Iteration: 8, Func. Count: 61, Neg. LLF: 137.46311412679424
Iteration: 9, Func. Count: 68, Neg. LLF: 137.45065943093982
Iteration: 10, Func. Count: 75, Neg. LLF: 137.44309091448778
Iteration: 11, Func. Count: 82, Neg. LLF: 137.44042854866672
Iteration: 12, Func. Count: 89, Neg. LLF: 137.43965708319644
Iteration: 13, Func. Count: 96, Neg. LLF: 137.43956493425213
Iteration: 14, Func. Count: 103, Neg. LLF: 137.43955610002504
Iteration: 15, Func. Count: 109, Neg. LLF: 137.43955612052028
Optimization terminated successfully (Exit mode 0)
Current function value: 137.43955610002504
Iterations: 15
Function evaluations: 109
Gradient evaluations: 15
Iteration: 1, Func. Count: 9, Neg. LLF: 154.4410174207142
Iteration: 2, Func. Count: 19, Neg. LLF: 137.70262956047114
Iteration: 3, Func. Count: 27, Neg. LLF: 137.63802308754833
Iteration: 4, Func. Count: 35, Neg. LLF: 137.64411548944545
Iteration: 5, Func. Count: 44, Neg. LLF: 137.59809921786328
Iteration: 6, Func. Count: 52, Neg. LLF: 137.5013036890431
Iteration: 7, Func. Count: 60, Neg. LLF: 137.48405205259576
Iteration: 8, Func. Count: 68, Neg. LLF: 137.45775386587204
Iteration: 9, Func. Count: 76, Neg. LLF: 137.44387429308446
Iteration: 10, Func. Count: 84, Neg. LLF: 137.44099273283146
Iteration: 11, Func. Count: 92, Neg. LLF: 137.4399514510086
Iteration: 12, Func. Count: 100, Neg. LLF: 137.4396403295445
Iteration: 13, Func. Count: 108, Neg. LLF: 137.43956572344274
Iteration: 14, Func. Count: 116, Neg. LLF: 137.4395562907078
Iteration: 15, Func. Count: 123, Neg. LLF: 137.43955632960203
Optimization terminated successfully (Exit mode 0)
Current function value: 137.4395562907078
Iterations: 15
Function evaluations: 123
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 149.3852661536074
Iteration: 2, Func. Count: 21, Neg. LLF: 137.68336881575632
Iteration: 3, Func. Count: 30, Neg. LLF: 137.6721012530731
Iteration: 4, Func. Count: 39, Neg. LLF: 137.57084239748787
Iteration: 5, Func. Count: 48, Neg. LLF: 137.55183156926242
Iteration: 6, Func. Count: 57, Neg. LLF: 137.53612291887805
Iteration: 7, Func. Count: 66, Neg. LLF: 137.47935174276168
Iteration: 8, Func. Count: 75, Neg. LLF: 137.44217198601274
Iteration: 9, Func. Count: 84, Neg. LLF: 137.44037568364303
Iteration: 10, Func. Count: 93, Neg. LLF: 137.439745637947
Iteration: 11, Func. Count: 102, Neg. LLF: 137.43958831883677
Iteration: 12, Func. Count: 111, Neg. LLF: 137.43956496398513
Iteration: 13, Func. Count: 120, Neg. LLF: 137.43955588789387
Iteration: 14, Func. Count: 128, Neg. LLF: 137.43955590291733
Optimization terminated successfully (Exit mode 0)
Current function value: 137.43955588789387
Iterations: 14
Function evaluations: 128
Gradient evaluations: 14
Iteration: 1, Func. Count: 7, Neg. LLF: 141.0270880492328
Iteration: 2, Func. Count: 14, Neg. LLF: 141.33456665885933
Iteration: 3, Func. Count: 22, Neg. LLF: 140.14409801051107
Iteration: 4, Func. Count: 29, Neg. LLF: 140.18308610556838
Iteration: 5, Func. Count: 36, Neg. LLF: 137.96230326431888
Iteration: 6, Func. Count: 42, Neg. LLF: 137.79573223108164
Iteration: 7, Func. Count: 48, Neg. LLF: 137.57682488063324
Iteration: 8, Func. Count: 54, Neg. LLF: 137.46129341107394
Iteration: 9, Func. Count: 60, Neg. LLF: 137.4291762362821
Iteration: 10, Func. Count: 66, Neg. LLF: 137.42242601278545
Iteration: 11, Func. Count: 72, Neg. LLF: 137.4213475884939
Iteration: 12, Func. Count: 78, Neg. LLF: 137.42018975174534
Iteration: 13, Func. Count: 84, Neg. LLF: 137.42002808846146
Iteration: 14, Func. Count: 90, Neg. LLF: 137.42000248536016
Iteration: 15, Func. Count: 96, Neg. LLF: 137.42000186864902
Optimization terminated successfully (Exit mode 0)
Current function value: 137.42000186864902
Iterations: 15
Function evaluations: 96
Gradient evaluations: 15
Iteration: 1, Func. Count: 8, Neg. LLF: 140.5200862720223
Iteration: 2, Func. Count: 17, Neg. LLF: 140.34379122106236
Iteration: 3, Func. Count: 25, Neg. LLF: 137.64455807950256
Iteration: 4, Func. Count: 32, Neg. LLF: 137.6911212092997
Iteration: 5, Func. Count: 40, Neg. LLF: 137.60181501474634
Iteration: 6, Func. Count: 47, Neg. LLF: 137.47167140403536
Iteration: 7, Func. Count: 54, Neg. LLF: 137.4432129494007
Iteration: 8, Func. Count: 61, Neg. LLF: 137.43427260889504
Iteration: 9, Func. Count: 68, Neg. LLF: 137.42625100149604
Iteration: 10, Func. Count: 75, Neg. LLF: 137.4211757018073
Iteration: 11, Func. Count: 82, Neg. LLF: 137.42050928157192
Iteration: 12, Func. Count: 89, Neg. LLF: 137.42005453129664
Iteration: 13, Func. Count: 96, Neg. LLF: 137.4200059697861
Iteration: 14, Func. Count: 103, Neg. LLF: 137.42000237011183
Iteration: 15, Func. Count: 109, Neg. LLF: 137.4200023721621
Optimization terminated successfully (Exit mode 0)
Current function value: 137.42000237011183
Iterations: 15
Function evaluations: 109
Gradient evaluations: 15
Iteration: 1, Func. Count: 9, Neg. LLF: 141.90181773610198
Iteration: 2, Func. Count: 20, Neg. LLF: 140.57905565268405
Iteration: 3, Func. Count: 29, Neg. LLF: 137.67029532895762
Iteration: 4, Func. Count: 37, Neg. LLF: 137.63533730555002
Iteration: 5, Func. Count: 45, Neg. LLF: 137.547626571426
Iteration: 6, Func. Count: 53, Neg. LLF: 137.58764426905034
Iteration: 7, Func. Count: 62, Neg. LLF: 137.4778212475791
Iteration: 8, Func. Count: 70, Neg. LLF: 137.46451289528034
Iteration: 9, Func. Count: 78, Neg. LLF: 137.45604558026614
Iteration: 10, Func. Count: 86, Neg. LLF: 137.4387255341272
Iteration: 11, Func. Count: 94, Neg. LLF: 137.42691754410112
Iteration: 12, Func. Count: 102, Neg. LLF: 137.42724316208034
Iteration: 13, Func. Count: 111, Neg. LLF: 137.42147948033318
Iteration: 14, Func. Count: 119, Neg. LLF: 137.4206521128906
Iteration: 15, Func. Count: 127, Neg. LLF: 137.42011969489423
Iteration: 16, Func. Count: 135, Neg. LLF: 137.4200269710887
Iteration: 17, Func. Count: 143, Neg. LLF: 137.420002782234
Iteration: 18, Func. Count: 151, Neg. LLF: 137.42000188032674
Optimization terminated successfully (Exit mode 0)
Current function value: 137.42000188032674
Iterations: 18
Function evaluations: 151
Gradient evaluations: 18
Iteration: 1, Func. Count: 10, Neg. LLF: 139.9245909625166
Iteration: 2, Func. Count: 22, Neg. LLF: 140.49207834755373
Iteration: 3, Func. Count: 32, Neg. LLF: 137.70256164899817
Iteration: 4, Func. Count: 41, Neg. LLF: 137.6567784557419
Iteration: 5, Func. Count: 50, Neg. LLF: 137.63609111221902
Iteration: 6, Func. Count: 59, Neg. LLF: 137.57258855490264
Iteration: 7, Func. Count: 68, Neg. LLF: 137.51728527534314
Iteration: 8, Func. Count: 77, Neg. LLF: 137.4863261200494
Iteration: 9, Func. Count: 86, Neg. LLF: 137.464154440475
Iteration: 10, Func. Count: 95, Neg. LLF: 137.4578965919499
Iteration: 11, Func. Count: 104, Neg. LLF: 137.44541513884778
Iteration: 12, Func. Count: 113, Neg. LLF: 137.43798779823706
Iteration: 13, Func. Count: 122, Neg. LLF: 137.42602551320795
Iteration: 14, Func. Count: 131, Neg. LLF: 137.42212445156656
Iteration: 15, Func. Count: 140, Neg. LLF: 137.42020859361384
Iteration: 16, Func. Count: 149, Neg. LLF: 137.42011610678406
Iteration: 17, Func. Count: 158, Neg. LLF: 137.42003427843736
Iteration: 18, Func. Count: 167, Neg. LLF: 137.4200082785333
Iteration: 19, Func. Count: 176, Neg. LLF: 137.42000209921522
Iteration: 20, Func. Count: 184, Neg. LLF: 137.4200021378488
Optimization terminated successfully (Exit mode 0)
Current function value: 137.42000209921522
Iterations: 20
Function evaluations: 184
Gradient evaluations: 20
Iteration: 1, Func. Count: 11, Neg. LLF: 139.5408661660284
Iteration: 2, Func. Count: 24, Neg. LLF: 140.37709934026117
Iteration: 3, Func. Count: 35, Neg. LLF: 137.65849466569645
Iteration: 4, Func. Count: 45, Neg. LLF: 137.62962232564084
Iteration: 5, Func. Count: 55, Neg. LLF: 137.61429497728076
Iteration: 6, Func. Count: 65, Neg. LLF: 137.56044963696627
Iteration: 7, Func. Count: 75, Neg. LLF: 137.53892896634483
Iteration: 8, Func. Count: 85, Neg. LLF: 137.51173033602336
Iteration: 9, Func. Count: 95, Neg. LLF: 137.49624094563953
Iteration: 10, Func. Count: 105, Neg. LLF: 137.46463978596157
Iteration: 11, Func. Count: 115, Neg. LLF: 137.45271149946612
Iteration: 12, Func. Count: 125, Neg. LLF: 137.44124561585576
Iteration: 13, Func. Count: 135, Neg. LLF: 137.4244995253359
Iteration: 14, Func. Count: 145, Neg. LLF: 137.42174176199867
Iteration: 15, Func. Count: 155, Neg. LLF: 137.42005807351836
Iteration: 16, Func. Count: 165, Neg. LLF: 137.42001728130433
Iteration: 17, Func. Count: 175, Neg. LLF: 137.42000472851333
Iteration: 18, Func. Count: 185, Neg. LLF: 137.42000202065046
Iteration: 19, Func. Count: 194, Neg. LLF: 137.42000203488362
Optimization terminated successfully (Exit mode 0)
Current function value: 137.42000202065046
Iterations: 19
Function evaluations: 194
Gradient evaluations: 19
Iteration: 1, Func. Count: 8, Neg. LLF: 140.64619586936908
Iteration: 2, Func. Count: 16, Neg. LLF: 140.84483783312808
Iteration: 3, Func. Count: 25, Neg. LLF: 140.3732035219967
Iteration: 4, Func. Count: 33, Neg. LLF: 138.14752329233391
Iteration: 5, Func. Count: 40, Neg. LLF: 139.2462176192913
Iteration: 6, Func. Count: 48, Neg. LLF: 137.711433050599
Iteration: 7, Func. Count: 55, Neg. LLF: 137.5839273509685
Iteration: 8, Func. Count: 62, Neg. LLF: 137.43980459783828
Iteration: 9, Func. Count: 69, Neg. LLF: 137.42231399050746
Iteration: 10, Func. Count: 76, Neg. LLF: 137.42033745965864
Iteration: 11, Func. Count: 83, Neg. LLF: 137.42007284469534
Iteration: 12, Func. Count: 90, Neg. LLF: 137.42000242156115
Iteration: 13, Func. Count: 96, Neg. LLF: 137.42000245811298
Optimization terminated successfully (Exit mode 0)
Current function value: 137.42000242156115
Iterations: 13
Function evaluations: 96
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 141.96557364918283
Iteration: 2, Func. Count: 19, Neg. LLF: 140.4420067921779
Iteration: 3, Func. Count: 28, Neg. LLF: 137.64895112246046
Iteration: 4, Func. Count: 36, Neg. LLF: 137.6211849415245
Iteration: 5, Func. Count: 44, Neg. LLF: 137.61999998491603
Iteration: 6, Func. Count: 53, Neg. LLF: 137.54912247101717
Iteration: 7, Func. Count: 61, Neg. LLF: 137.59928220928276
Iteration: 8, Func. Count: 70, Neg. LLF: 137.46794722928135
Iteration: 9, Func. Count: 78, Neg. LLF: 137.44237172749257
Iteration: 10, Func. Count: 86, Neg. LLF: 137.43392938523556
Iteration: 11, Func. Count: 94, Neg. LLF: 137.42305112013256
Iteration: 12, Func. Count: 102, Neg. LLF: 137.42119543878425
Iteration: 13, Func. Count: 110, Neg. LLF: 137.42031924191704
Iteration: 14, Func. Count: 118, Neg. LLF: 137.4200130597182
Iteration: 15, Func. Count: 126, Neg. LLF: 137.42000238116108
Iteration: 16, Func. Count: 134, Neg. LLF: 137.4200018601833
Optimization terminated successfully (Exit mode 0)
Current function value: 137.4200018601833
Iterations: 16
Function evaluations: 134
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 141.89934043679028
Iteration: 2, Func. Count: 22, Neg. LLF: 140.57121787059145
Iteration: 3, Func. Count: 32, Neg. LLF: 137.67282009323492
Iteration: 4, Func. Count: 41, Neg. LLF: 137.63652133352528
Iteration: 5, Func. Count: 50, Neg. LLF: 137.57704284846832
Iteration: 6, Func. Count: 59, Neg. LLF: 137.55464086866934
Iteration: 7, Func. Count: 68, Neg. LLF: 137.49080779933925
Iteration: 8, Func. Count: 77, Neg. LLF: 137.47055971073894
Iteration: 9, Func. Count: 86, Neg. LLF: 137.45641312325307
Iteration: 10, Func. Count: 95, Neg. LLF: 137.45100763921806
Iteration: 11, Func. Count: 104, Neg. LLF: 137.43232670377915
Iteration: 12, Func. Count: 113, Neg. LLF: 137.42466211872608
Iteration: 13, Func. Count: 122, Neg. LLF: 137.42121726162168
Iteration: 14, Func. Count: 131, Neg. LLF: 137.42055201352946
Iteration: 15, Func. Count: 140, Neg. LLF: 137.4200403025317
Iteration: 16, Func. Count: 149, Neg. LLF: 137.42000557148685
Iteration: 17, Func. Count: 158, Neg. LLF: 137.42000190484262
Iteration: 18, Func. Count: 166, Neg. LLF: 137.4200019234419
Optimization terminated successfully (Exit mode 0)
Current function value: 137.42000190484262
Iterations: 18
Function evaluations: 166
Gradient evaluations: 18
Iteration: 1, Func. Count: 11, Neg. LLF: 139.99951965585396
Iteration: 2, Func. Count: 24, Neg. LLF: 140.48430198297038
Iteration: 3, Func. Count: 35, Neg. LLF: 137.7079725314673
Iteration: 4, Func. Count: 45, Neg. LLF: 137.6588621607546
Iteration: 5, Func. Count: 55, Neg. LLF: 137.63704139209872
Iteration: 6, Func. Count: 65, Neg. LLF: 137.5801614662858
Iteration: 7, Func. Count: 75, Neg. LLF: 137.52794935015254
Iteration: 8, Func. Count: 85, Neg. LLF: 137.49618097879215
Iteration: 9, Func. Count: 95, Neg. LLF: 137.46955107144535
Iteration: 10, Func. Count: 105, Neg. LLF: 137.45995682646958
Iteration: 11, Func. Count: 115, Neg. LLF: 137.45070353685784
Iteration: 12, Func. Count: 125, Neg. LLF: 137.44161818929211
Iteration: 13, Func. Count: 135, Neg. LLF: 137.42672049474254
Iteration: 14, Func. Count: 145, Neg. LLF: 137.42605034575132
Iteration: 15, Func. Count: 156, Neg. LLF: 137.42176473094077
Iteration: 16, Func. Count: 166, Neg. LLF: 137.4202020033589
Iteration: 17, Func. Count: 176, Neg. LLF: 137.42011737484438
Iteration: 18, Func. Count: 186, Neg. LLF: 137.4200024105078
Iteration: 19, Func. Count: 196, Neg. LLF: 137.4200018799228
Optimization terminated successfully (Exit mode 0)
Current function value: 137.4200018799228
Iterations: 19
Function evaluations: 196
Gradient evaluations: 19
Iteration: 1, Func. Count: 12, Neg. LLF: 139.83914212685136
Iteration: 2, Func. Count: 26, Neg. LLF: 140.49763843065
Iteration: 3, Func. Count: 38, Neg. LLF: 137.65881619686851
Iteration: 4, Func. Count: 49, Neg. LLF: 137.65045369423365
Iteration: 5, Func. Count: 60, Neg. LLF: 137.62630045157326
Iteration: 6, Func. Count: 71, Neg. LLF: 137.61856682077345
Iteration: 7, Func. Count: 82, Neg. LLF: 137.59067951111993
Iteration: 8, Func. Count: 93, Neg. LLF: 137.5100126276641
Iteration: 9, Func. Count: 104, Neg. LLF: 137.49264938270332
Iteration: 10, Func. Count: 115, Neg. LLF: 137.47529706214587
Iteration: 11, Func. Count: 126, Neg. LLF: 137.46258091283138
Iteration: 12, Func. Count: 137, Neg. LLF: 137.4484355144098
Iteration: 13, Func. Count: 148, Neg. LLF: 137.43826731882154
Iteration: 14, Func. Count: 159, Neg. LLF: 137.42308778755117
Iteration: 15, Func. Count: 170, Neg. LLF: 137.4213014686109
Iteration: 16, Func. Count: 181, Neg. LLF: 137.4201419739652
Iteration: 17, Func. Count: 192, Neg. LLF: 137.42003207511664
Iteration: 18, Func. Count: 203, Neg. LLF: 137.42001001327637
Iteration: 19, Func. Count: 214, Neg. LLF: 137.42000366586637
Iteration: 20, Func. Count: 225, Neg. LLF: 137.42000194329
Iteration: 21, Func. Count: 235, Neg. LLF: 137.42000195753056
Optimization terminated successfully (Exit mode 0)
Current function value: 137.42000194329
Iterations: 21
Function evaluations: 235
Gradient evaluations: 21
Iteration: 1, Func. Count: 9, Neg. LLF: 139.75419849239103
Iteration: 2, Func. Count: 18, Neg. LLF: 141.8160984824152
Iteration: 3, Func. Count: 27, Neg. LLF: 139.32630096312445
Iteration: 4, Func. Count: 36, Neg. LLF: 138.19139847116463
Iteration: 5, Func. Count: 44, Neg. LLF: 137.70148698488782
Iteration: 6, Func. Count: 52, Neg. LLF: 137.57393100690143
Iteration: 7, Func. Count: 60, Neg. LLF: 137.4430984027235
Iteration: 8, Func. Count: 68, Neg. LLF: 137.42376663422425
Iteration: 9, Func. Count: 76, Neg. LLF: 137.42078947967659
Iteration: 10, Func. Count: 84, Neg. LLF: 137.42005094315132
Iteration: 11, Func. Count: 92, Neg. LLF: 137.42000911266976
Iteration: 12, Func. Count: 100, Neg. LLF: 137.42000187060341
Iteration: 13, Func. Count: 107, Neg. LLF: 137.42000197801522
Optimization terminated successfully (Exit mode 0)
Current function value: 137.42000187060341
Iterations: 13
Function evaluations: 107
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 141.9178997751714
Iteration: 2, Func. Count: 21, Neg. LLF: 140.43883214110235
Iteration: 3, Func. Count: 31, Neg. LLF: 137.64959345447997
Iteration: 4, Func. Count: 40, Neg. LLF: 137.61675020358604
Iteration: 5, Func. Count: 49, Neg. LLF: 137.6221513882356
Iteration: 6, Func. Count: 59, Neg. LLF: 137.5468636572616
Iteration: 7, Func. Count: 68, Neg. LLF: 137.54209768736544
Iteration: 8, Func. Count: 78, Neg. LLF: 137.4434182410404
Iteration: 9, Func. Count: 87, Neg. LLF: 137.45915995456517
Iteration: 10, Func. Count: 97, Neg. LLF: 137.42090664449626
Iteration: 11, Func. Count: 106, Neg. LLF: 137.42029312163186
Iteration: 12, Func. Count: 115, Neg. LLF: 137.4200823538203
Iteration: 13, Func. Count: 124, Neg. LLF: 137.42000746375064
Iteration: 14, Func. Count: 133, Neg. LLF: 137.4200020203783
Iteration: 15, Func. Count: 141, Neg. LLF: 137.42000202240155
Optimization terminated successfully (Exit mode 0)
Current function value: 137.4200020203783
Iterations: 15
Function evaluations: 141
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 141.85319560013923
Iteration: 2, Func. Count: 24, Neg. LLF: 140.5668269480214
Iteration: 3, Func. Count: 35, Neg. LLF: 137.6698146872231
Iteration: 4, Func. Count: 45, Neg. LLF: 137.63854094107887
Iteration: 5, Func. Count: 55, Neg. LLF: 137.59451715317326
Iteration: 6, Func. Count: 65, Neg. LLF: 137.51757006011283
Iteration: 7, Func. Count: 75, Neg. LLF: 137.48331333808542
Iteration: 8, Func. Count: 85, Neg. LLF: 137.46362872673595
Iteration: 9, Func. Count: 95, Neg. LLF: 137.4541337149019
Iteration: 10, Func. Count: 105, Neg. LLF: 137.44927989344427
Iteration: 11, Func. Count: 115, Neg. LLF: 137.42354249369316
Iteration: 12, Func. Count: 125, Neg. LLF: 137.42102159998626
Iteration: 13, Func. Count: 135, Neg. LLF: 137.42045156458198
Iteration: 14, Func. Count: 145, Neg. LLF: 137.42015961161408
Iteration: 15, Func. Count: 155, Neg. LLF: 137.42000980780495
Iteration: 16, Func. Count: 165, Neg. LLF: 137.42000206645966
Iteration: 17, Func. Count: 174, Neg. LLF: 137.42000208502688
Optimization terminated successfully (Exit mode 0)
Current function value: 137.42000206645966
Iterations: 17
Function evaluations: 174
Gradient evaluations: 17
Iteration: 1, Func. Count: 12, Neg. LLF: 140.03953599534978
Iteration: 2, Func. Count: 26, Neg. LLF: 140.48571108118904
Iteration: 3, Func. Count: 38, Neg. LLF: 137.70842915031434
Iteration: 4, Func. Count: 49, Neg. LLF: 137.65814353265813
Iteration: 5, Func. Count: 60, Neg. LLF: 137.6385047752199
Iteration: 6, Func. Count: 71, Neg. LLF: 137.57791731145988
Iteration: 7, Func. Count: 82, Neg. LLF: 137.52569848872864
Iteration: 8, Func. Count: 93, Neg. LLF: 137.49375552140665
Iteration: 9, Func. Count: 104, Neg. LLF: 137.46729994950164
Iteration: 10, Func. Count: 115, Neg. LLF: 137.46019544017508
Iteration: 11, Func. Count: 126, Neg. LLF: 137.44386293033955
Iteration: 12, Func. Count: 137, Neg. LLF: 137.4363860153127
Iteration: 13, Func. Count: 148, Neg. LLF: 137.42605044005623
Iteration: 14, Func. Count: 159, Neg. LLF: 137.42212165625367
Iteration: 15, Func. Count: 170, Neg. LLF: 137.4206598871722
Iteration: 16, Func. Count: 181, Neg. LLF: 137.4202968839369
Iteration: 17, Func. Count: 192, Neg. LLF: 137.42010123654418
Iteration: 18, Func. Count: 203, Neg. LLF: 137.42001633392238
Iteration: 19, Func. Count: 214, Neg. LLF: 137.42000258941604
Iteration: 20, Func. Count: 225, Neg. LLF: 137.4200018674558
Optimization terminated successfully (Exit mode 0)
Current function value: 137.4200018674558
Iterations: 20
Function evaluations: 225
Gradient evaluations: 20
Iteration: 1, Func. Count: 13, Neg. LLF: 139.9583056691923
Iteration: 2, Func. Count: 28, Neg. LLF: 140.49969612111866
Iteration: 3, Func. Count: 41, Neg. LLF: 137.66141791527622
Iteration: 4, Func. Count: 53, Neg. LLF: 137.6493364651179
Iteration: 5, Func. Count: 65, Neg. LLF: 137.63075710297585
Iteration: 6, Func. Count: 77, Neg. LLF: 137.619619428141
Iteration: 7, Func. Count: 89, Neg. LLF: 137.59436329595408
Iteration: 8, Func. Count: 101, Neg. LLF: 137.50071100364246
Iteration: 9, Func. Count: 113, Neg. LLF: 137.4882779222789
Iteration: 10, Func. Count: 125, Neg. LLF: 137.4728998952272
Iteration: 11, Func. Count: 137, Neg. LLF: 137.4585188645693
Iteration: 12, Func. Count: 149, Neg. LLF: 137.44929637642088
Iteration: 13, Func. Count: 161, Neg. LLF: 137.43845593647865
Iteration: 14, Func. Count: 173, Neg. LLF: 137.42390084529873
Iteration: 15, Func. Count: 185, Neg. LLF: 137.42170678672204
Iteration: 16, Func. Count: 197, Neg. LLF: 137.4201123880614
Iteration: 17, Func. Count: 209, Neg. LLF: 137.4200223751563
Iteration: 18, Func. Count: 221, Neg. LLF: 137.42000499874806
Iteration: 19, Func. Count: 233, Neg. LLF: 137.42000278944712
Iteration: 20, Func. Count: 245, Neg. LLF: 137.42000187407535
Optimization terminated successfully (Exit mode 0)
Current function value: 137.42000187407535
Iterations: 20
Function evaluations: 245
Gradient evaluations: 20
Iteration: 1, Func. Count: 6, Neg. LLF: 144.07706601502574
Iteration: 2, Func. Count: 12, Neg. LLF: 151.0958843468187
Iteration: 3, Func. Count: 18, Neg. LLF: 138.40352694528787
Iteration: 4, Func. Count: 24, Neg. LLF: 138.58872239349716
Iteration: 5, Func. Count: 30, Neg. LLF: 138.09070392819743
Iteration: 6, Func. Count: 35, Neg. LLF: 138.0244147274137
Iteration: 7, Func. Count: 40, Neg. LLF: 137.96805164964067
Iteration: 8, Func. Count: 45, Neg. LLF: 137.9083144612683
Iteration: 9, Func. Count: 50, Neg. LLF: 137.90398728100504
Iteration: 10, Func. Count: 55, Neg. LLF: 137.9015176223117
Iteration: 11, Func. Count: 60, Neg. LLF: 137.90150186351252
Iteration: 12, Func. Count: 64, Neg. LLF: 137.90150186360347
Optimization terminated successfully (Exit mode 0)
Current function value: 137.90150186351252
Iterations: 12
Function evaluations: 64
Gradient evaluations: 12
Iteration: 1, Func. Count: 7, Neg. LLF: 177.565317333465
Iteration: 2, Func. Count: 15, Neg. LLF: 137.9109249908978
Iteration: 3, Func. Count: 21, Neg. LLF: 137.90561356111894
Iteration: 4, Func. Count: 27, Neg. LLF: 137.9055545623119
Iteration: 5, Func. Count: 32, Neg. LLF: 137.90555456231277
Optimization terminated successfully (Exit mode 0)
Current function value: 137.9055545623119
Iterations: 5
Function evaluations: 32
Gradient evaluations: 5
Iteration: 1, Func. Count: 8, Neg. LLF: 170.19756815354629
Iteration: 2, Func. Count: 17, Neg. LLF: 137.90827454475735
Iteration: 3, Func. Count: 24, Neg. LLF: 137.90545739413702
Iteration: 4, Func. Count: 31, Neg. LLF: 137.90543912755433
Iteration: 5, Func. Count: 37, Neg. LLF: 137.90543912753893
Optimization terminated successfully (Exit mode 0)
Current function value: 137.90543912755433
Iterations: 5
Function evaluations: 37
Gradient evaluations: 5
Iteration: 1, Func. Count: 9, Neg. LLF: 165.2019948233679
Iteration: 2, Func. Count: 19, Neg. LLF: 137.90726352707313
Iteration: 3, Func. Count: 27, Neg. LLF: 137.90544533451003
Iteration: 4, Func. Count: 35, Neg. LLF: 137.90542147603014
Iteration: 5, Func. Count: 42, Neg. LLF: 137.90542147602486
Optimization terminated successfully (Exit mode 0)
Current function value: 137.90542147603014
Iterations: 5
Function evaluations: 42
Gradient evaluations: 5
Iteration: 1, Func. Count: 10, Neg. LLF: 161.31323100673777
Iteration: 2, Func. Count: 21, Neg. LLF: 137.90716919828802
Iteration: 3, Func. Count: 30, Neg. LLF: 137.90603033358778
Iteration: 4, Func. Count: 39, Neg. LLF: 137.9055340586455
Iteration: 5, Func. Count: 47, Neg. LLF: 137.90553405870122
Optimization terminated successfully (Exit mode 0)
Current function value: 137.9055340586455
Iterations: 5
Function evaluations: 47
Gradient evaluations: 5
Iteration: 1, Func. Count: 7, Neg. LLF: 145.6081679605097
Iteration: 2, Func. Count: 14, Neg. LLF: 141.0595116045393
Iteration: 3, Func. Count: 21, Neg. LLF: 138.5664068580457
Iteration: 4, Func. Count: 28, Neg. LLF: 138.14513979037392
Iteration: 5, Func. Count: 35, Neg. LLF: 138.0640071087334
Iteration: 6, Func. Count: 42, Neg. LLF: 137.63512441786247
Iteration: 7, Func. Count: 48, Neg. LLF: 137.5696434001041
Iteration: 8, Func. Count: 54, Neg. LLF: 137.53208277682768
Iteration: 9, Func. Count: 60, Neg. LLF: 137.45216595743182
Iteration: 10, Func. Count: 66, Neg. LLF: 137.44793178212183
Iteration: 11, Func. Count: 72, Neg. LLF: 137.44750744755814
Iteration: 12, Func. Count: 78, Neg. LLF: 137.44746091679994
Iteration: 13, Func. Count: 84, Neg. LLF: 137.44745932063805
Iteration: 14, Func. Count: 89, Neg. LLF: 137.44745932064313
Optimization terminated successfully (Exit mode 0)
Current function value: 137.44745932063805
Iterations: 14
Function evaluations: 89
Gradient evaluations: 14
Iteration: 1, Func. Count: 8, Neg. LLF: 137.82809120262627
Iteration: 2, Func. Count: 16, Neg. LLF: 140.1451628964541
Iteration: 3, Func. Count: 24, Neg. LLF: 137.63081172797376
Iteration: 4, Func. Count: 31, Neg. LLF: 137.6094401614152
Iteration: 5, Func. Count: 38, Neg. LLF: 137.48238577968746
Iteration: 6, Func. Count: 45, Neg. LLF: 137.48976136577483
Iteration: 7, Func. Count: 53, Neg. LLF: 137.4691724050459
Iteration: 8, Func. Count: 61, Neg. LLF: 137.43821301340208
Iteration: 9, Func. Count: 68, Neg. LLF: 137.44392275990768
Iteration: 10, Func. Count: 76, Neg. LLF: 137.43679657029855
Iteration: 11, Func. Count: 83, Neg. LLF: 137.43677481223585
Iteration: 12, Func. Count: 90, Neg. LLF: 137.43676552964516
Iteration: 13, Func. Count: 97, Neg. LLF: 137.4367633183647
Iteration: 14, Func. Count: 103, Neg. LLF: 137.43676331834902
Optimization terminated successfully (Exit mode 0)
Current function value: 137.4367633183647
Iterations: 14
Function evaluations: 103
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 160.26400846371774
Iteration: 2, Func. Count: 19, Neg. LLF: 137.94282158280976
Iteration: 3, Func. Count: 28, Neg. LLF: 137.64353069408867
Iteration: 4, Func. Count: 36, Neg. LLF: 137.64218733686957
Iteration: 5, Func. Count: 45, Neg. LLF: 137.61280818923615
Iteration: 6, Func. Count: 53, Neg. LLF: 137.55383726451845
Iteration: 7, Func. Count: 61, Neg. LLF: 137.5217044488028
Iteration: 8, Func. Count: 69, Neg. LLF: 137.46831065668528
Iteration: 9, Func. Count: 77, Neg. LLF: 137.54034494409422
Iteration: 10, Func. Count: 86, Neg. LLF: 137.7539967122177
Iteration: 11, Func. Count: 95, Neg. LLF: 137.44089959006024
Iteration: 12, Func. Count: 103, Neg. LLF: 137.4370081573817
Iteration: 13, Func. Count: 111, Neg. LLF: 137.43679240039066
Iteration: 14, Func. Count: 119, Neg. LLF: 137.43676357199425
Iteration: 15, Func. Count: 126, Neg. LLF: 137.43676359252345
Optimization terminated successfully (Exit mode 0)
Current function value: 137.43676357199425
Iterations: 15
Function evaluations: 126
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 151.32671628388934
Iteration: 2, Func. Count: 21, Neg. LLF: 137.7205959498368
Iteration: 3, Func. Count: 30, Neg. LLF: 137.64685546338077
Iteration: 4, Func. Count: 39, Neg. LLF: 137.65508222999358
Iteration: 5, Func. Count: 49, Neg. LLF: 137.6089156658515
Iteration: 6, Func. Count: 58, Neg. LLF: 137.50765809972387
Iteration: 7, Func. Count: 67, Neg. LLF: 137.4676378466182
Iteration: 8, Func. Count: 76, Neg. LLF: 137.44091808641363
Iteration: 9, Func. Count: 85, Neg. LLF: 137.4378198779509
Iteration: 10, Func. Count: 94, Neg. LLF: 137.4368335693801
Iteration: 11, Func. Count: 103, Neg. LLF: 137.4367927855344
Iteration: 12, Func. Count: 112, Neg. LLF: 137.43677691669782
Iteration: 13, Func. Count: 121, Neg. LLF: 137.4367637561378
Iteration: 14, Func. Count: 129, Neg. LLF: 137.43676379575749
Optimization terminated successfully (Exit mode 0)
Current function value: 137.4367637561378
Iterations: 14
Function evaluations: 129
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 147.37826898153762
Iteration: 2, Func. Count: 23, Neg. LLF: 137.97258998100648
Iteration: 3, Func. Count: 34, Neg. LLF: 137.63703722454215
Iteration: 4, Func. Count: 44, Neg. LLF: 137.6943895379359
Iteration: 5, Func. Count: 55, Neg. LLF: 137.61306084417876
Iteration: 6, Func. Count: 65, Neg. LLF: 137.55184920214998
Iteration: 7, Func. Count: 75, Neg. LLF: 137.50424794159645
Iteration: 8, Func. Count: 85, Neg. LLF: 137.4667243931761
Iteration: 9, Func. Count: 95, Neg. LLF: 137.45558314240193
Iteration: 10, Func. Count: 105, Neg. LLF: 137.46871194267476
Iteration: 11, Func. Count: 116, Neg. LLF: 137.43875596517427
Iteration: 12, Func. Count: 126, Neg. LLF: 137.4376102190247
Iteration: 13, Func. Count: 136, Neg. LLF: 137.43712123108813
Iteration: 14, Func. Count: 146, Neg. LLF: 137.4368289174459
Iteration: 15, Func. Count: 156, Neg. LLF: 137.43676867701672
Iteration: 16, Func. Count: 166, Neg. LLF: 137.43676336781752
Iteration: 17, Func. Count: 175, Neg. LLF: 137.4367633828511
Optimization terminated successfully (Exit mode 0)
Current function value: 137.43676336781752
Iterations: 17
Function evaluations: 175
Gradient evaluations: 17
Iteration: 1, Func. Count: 8, Neg. LLF: 148.22677305130347
Iteration: 2, Func. Count: 16, Neg. LLF: 144.78333988848087
Iteration: 3, Func. Count: 24, Neg. LLF: 138.51985508438835
Iteration: 4, Func. Count: 32, Neg. LLF: 138.20665972539604
Iteration: 5, Func. Count: 40, Neg. LLF: 139.40700049410341
Iteration: 6, Func. Count: 48, Neg. LLF: 138.29968169971738
Iteration: 7, Func. Count: 56, Neg. LLF: 137.86799514882455
Iteration: 8, Func. Count: 63, Neg. LLF: 137.59891716610176
Iteration: 9, Func. Count: 70, Neg. LLF: 137.51289268063204
Iteration: 10, Func. Count: 77, Neg. LLF: 137.44254390376
Iteration: 11, Func. Count: 84, Neg. LLF: 137.4153806534758
Iteration: 12, Func. Count: 91, Neg. LLF: 137.4119392703539
Iteration: 13, Func. Count: 98, Neg. LLF: 137.41186009808604
Iteration: 14, Func. Count: 105, Neg. LLF: 137.41184997725318
Iteration: 15, Func. Count: 111, Neg. LLF: 137.4118499772792
Optimization terminated successfully (Exit mode 0)
Current function value: 137.41184997725318
Iterations: 15
Function evaluations: 111
Gradient evaluations: 15
Iteration: 1, Func. Count: 9, Neg. LLF: 141.06487571400567
Iteration: 2, Func. Count: 19, Neg. LLF: 140.3502766567741
Iteration: 3, Func. Count: 28, Neg. LLF: 137.6425868288652
Iteration: 4, Func. Count: 36, Neg. LLF: 137.63942741973483
Iteration: 5, Func. Count: 45, Neg. LLF: 137.5994057657695
Iteration: 6, Func. Count: 53, Neg. LLF: 137.52295439218662
Iteration: 7, Func. Count: 61, Neg. LLF: 137.59610261108497
Iteration: 8, Func. Count: 70, Neg. LLF: 137.45844188550035
Iteration: 9, Func. Count: 78, Neg. LLF: 137.43630853510209
Iteration: 10, Func. Count: 86, Neg. LLF: 137.49315912159162
Iteration: 11, Func. Count: 95, Neg. LLF: 137.42204866339932
Iteration: 12, Func. Count: 103, Neg. LLF: 137.4140565409071
Iteration: 13, Func. Count: 111, Neg. LLF: 137.41221555937372
Iteration: 14, Func. Count: 119, Neg. LLF: 137.41185815986248
Iteration: 15, Func. Count: 127, Neg. LLF: 137.41185033058943
Iteration: 16, Func. Count: 134, Neg. LLF: 137.4118503342432
Optimization terminated successfully (Exit mode 0)
Current function value: 137.41185033058943
Iterations: 16
Function evaluations: 134
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 141.9663366345189
Iteration: 2, Func. Count: 22, Neg. LLF: 140.59613071590294
Iteration: 3, Func. Count: 32, Neg. LLF: 137.68663004343213
Iteration: 4, Func. Count: 41, Neg. LLF: 137.6377924578478
Iteration: 5, Func. Count: 50, Neg. LLF: 137.59918814456515
Iteration: 6, Func. Count: 59, Neg. LLF: 137.72284703747854
Iteration: 7, Func. Count: 69, Neg. LLF: 137.6112088688633
Iteration: 8, Func. Count: 79, Neg. LLF: 137.46550186211974
Iteration: 9, Func. Count: 88, Neg. LLF: 137.5685134427214
Iteration: 10, Func. Count: 98, Neg. LLF: 137.45360727959374
Iteration: 11, Func. Count: 107, Neg. LLF: 137.45125385742043
Iteration: 12, Func. Count: 116, Neg. LLF: 137.4305155684108
Iteration: 13, Func. Count: 125, Neg. LLF: 137.41641927444132
Iteration: 14, Func. Count: 134, Neg. LLF: 137.41365387990817
Iteration: 15, Func. Count: 143, Neg. LLF: 137.4128300144971
Iteration: 16, Func. Count: 152, Neg. LLF: 137.4120301261198
Iteration: 17, Func. Count: 161, Neg. LLF: 137.4118933290826
Iteration: 18, Func. Count: 170, Neg. LLF: 137.41185705963565
Iteration: 19, Func. Count: 179, Neg. LLF: 137.41185059599704
Iteration: 20, Func. Count: 188, Neg. LLF: 137.4118498754539
Optimization terminated successfully (Exit mode 0)
Current function value: 137.4118498754539
Iterations: 20
Function evaluations: 188
Gradient evaluations: 20
Iteration: 1, Func. Count: 11, Neg. LLF: 140.34434919546283
Iteration: 2, Func. Count: 24, Neg. LLF: 140.52969826719507
Iteration: 3, Func. Count: 35, Neg. LLF: 137.70973397605042
Iteration: 4, Func. Count: 45, Neg. LLF: 137.6509354394146
Iteration: 5, Func. Count: 55, Neg. LLF: 137.63365825181646
Iteration: 6, Func. Count: 65, Neg. LLF: 137.54098999148763
Iteration: 7, Func. Count: 75, Neg. LLF: 137.63561776322607
Iteration: 8, Func. Count: 86, Neg. LLF: 137.5628311545227
Iteration: 9, Func. Count: 97, Neg. LLF: 137.4584955346803
Iteration: 10, Func. Count: 107, Neg. LLF: 137.46312590784575
Iteration: 11, Func. Count: 118, Neg. LLF: 137.4486291381748
Iteration: 12, Func. Count: 128, Neg. LLF: 137.42539817636285
Iteration: 13, Func. Count: 138, Neg. LLF: 137.41865231047208
Iteration: 14, Func. Count: 148, Neg. LLF: 137.4144008844482
Iteration: 15, Func. Count: 158, Neg. LLF: 137.41205547428416
Iteration: 16, Func. Count: 168, Neg. LLF: 137.41193491178228
Iteration: 17, Func. Count: 178, Neg. LLF: 137.4118949524936
Iteration: 18, Func. Count: 188, Neg. LLF: 137.4118729385948
Iteration: 19, Func. Count: 198, Neg. LLF: 137.41185418426807
Iteration: 20, Func. Count: 208, Neg. LLF: 137.41185026011527
Iteration: 21, Func. Count: 217, Neg. LLF: 137.41185030020415
Optimization terminated successfully (Exit mode 0)
Current function value: 137.41185026011527
Iterations: 21
Function evaluations: 217
Gradient evaluations: 21
Iteration: 1, Func. Count: 12, Neg. LLF: 139.60181564423712
Iteration: 2, Func. Count: 26, Neg. LLF: 140.41675396009097
Iteration: 3, Func. Count: 38, Neg. LLF: 137.67181305781995
Iteration: 4, Func. Count: 49, Neg. LLF: 137.65981043761235
Iteration: 5, Func. Count: 60, Neg. LLF: 137.6524886539647
Iteration: 6, Func. Count: 72, Neg. LLF: 137.6151693230412
Iteration: 7, Func. Count: 83, Neg. LLF: 137.57087240435905
Iteration: 8, Func. Count: 94, Neg. LLF: 137.71504640143326
Iteration: 9, Func. Count: 106, Neg. LLF: 137.52938680299226
Iteration: 10, Func. Count: 118, Neg. LLF: 137.56034935523522
Iteration: 11, Func. Count: 130, Neg. LLF: 137.48387739744953
Iteration: 12, Func. Count: 141, Neg. LLF: 137.45534096802325
Iteration: 13, Func. Count: 152, Neg. LLF: 137.44454718575355
Iteration: 14, Func. Count: 163, Neg. LLF: 137.41684514156688
Iteration: 15, Func. Count: 174, Neg. LLF: 137.41376640205675
Iteration: 16, Func. Count: 185, Neg. LLF: 137.41268902603275
Iteration: 17, Func. Count: 196, Neg. LLF: 137.41222085374827
Iteration: 18, Func. Count: 207, Neg. LLF: 137.41209467660286
Iteration: 19, Func. Count: 218, Neg. LLF: 137.4118936007029
Iteration: 20, Func. Count: 229, Neg. LLF: 137.4118559201083
Iteration: 21, Func. Count: 240, Neg. LLF: 137.41184995506524
Iteration: 22, Func. Count: 250, Neg. LLF: 137.41184996901052
Optimization terminated successfully (Exit mode 0)
Current function value: 137.41184995506524
Iterations: 22
Function evaluations: 250
Gradient evaluations: 22
Iteration: 1, Func. Count: 9, Neg. LLF: 148.03817292617464
Iteration: 2, Func. Count: 18, Neg. LLF: 141.3922245772333
Iteration: 3, Func. Count: 27, Neg. LLF: 139.50726615987702
Iteration: 4, Func. Count: 36, Neg. LLF: 138.67364146069374
Iteration: 5, Func. Count: 45, Neg. LLF: 138.5255777998171
Iteration: 6, Func. Count: 54, Neg. LLF: 139.05312466210455
Iteration: 7, Func. Count: 63, Neg. LLF: 137.7901394484349
Iteration: 8, Func. Count: 71, Neg. LLF: 137.56179568112805
Iteration: 9, Func. Count: 79, Neg. LLF: 137.45236947936652
Iteration: 10, Func. Count: 87, Neg. LLF: 137.43895960462123
Iteration: 11, Func. Count: 95, Neg. LLF: 137.41624579568256
Iteration: 12, Func. Count: 103, Neg. LLF: 137.41248906586847
Iteration: 13, Func. Count: 111, Neg. LLF: 137.4119315924206
Iteration: 14, Func. Count: 119, Neg. LLF: 137.41186646724336
Iteration: 15, Func. Count: 127, Neg. LLF: 137.41185366364095
Iteration: 16, Func. Count: 135, Neg. LLF: 137.41185001838227
Iteration: 17, Func. Count: 142, Neg. LLF: 137.41185005707126
Optimization terminated successfully (Exit mode 0)
Current function value: 137.41185001838227
Iterations: 17
Function evaluations: 142
Gradient evaluations: 17
Iteration: 1, Func. Count: 10, Neg. LLF: 142.0278042127724
Iteration: 2, Func. Count: 21, Neg. LLF: 140.43767391379617
Iteration: 3, Func. Count: 31, Neg. LLF: 137.64898072516678
Iteration: 4, Func. Count: 40, Neg. LLF: 137.65045407034268
Iteration: 5, Func. Count: 50, Neg. LLF: 137.62673950347823
Iteration: 6, Func. Count: 60, Neg. LLF: 137.5622901784054
Iteration: 7, Func. Count: 69, Neg. LLF: 137.71327870369342
Iteration: 8, Func. Count: 79, Neg. LLF: 137.51570764625166
Iteration: 9, Func. Count: 89, Neg. LLF: 137.44041188806565
Iteration: 10, Func. Count: 98, Neg. LLF: 137.4229543942095
Iteration: 11, Func. Count: 107, Neg. LLF: 137.44277744798285
Iteration: 12, Func. Count: 117, Neg. LLF: 137.4125220647168
Iteration: 13, Func. Count: 126, Neg. LLF: 137.41191290161717
Iteration: 14, Func. Count: 135, Neg. LLF: 137.41186550972793
Iteration: 15, Func. Count: 144, Neg. LLF: 137.41185184739234
Iteration: 16, Func. Count: 153, Neg. LLF: 137.4118503949804
Iteration: 17, Func. Count: 161, Neg. LLF: 137.41185039870177
Optimization terminated successfully (Exit mode 0)
Current function value: 137.4118503949804
Iterations: 17
Function evaluations: 161
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 141.96587918186708
Iteration: 2, Func. Count: 24, Neg. LLF: 140.5885055679391
Iteration: 3, Func. Count: 35, Neg. LLF: 137.68879393066797
Iteration: 4, Func. Count: 45, Neg. LLF: 137.63707116375807
Iteration: 5, Func. Count: 55, Neg. LLF: 137.5917539601264
Iteration: 6, Func. Count: 65, Neg. LLF: 137.77804115632952
Iteration: 7, Func. Count: 76, Neg. LLF: 137.6689718422206
Iteration: 8, Func. Count: 87, Neg. LLF: 137.46896686937407
Iteration: 9, Func. Count: 97, Neg. LLF: 137.48794267869116
Iteration: 10, Func. Count: 108, Neg. LLF: 137.45377849444856
Iteration: 11, Func. Count: 118, Neg. LLF: 137.43955840902882
Iteration: 12, Func. Count: 128, Neg. LLF: 137.4816312388152
Iteration: 13, Func. Count: 139, Neg. LLF: 137.41882193794368
Iteration: 14, Func. Count: 149, Neg. LLF: 137.41227856719698
Iteration: 15, Func. Count: 159, Neg. LLF: 137.41195100955906
Iteration: 16, Func. Count: 169, Neg. LLF: 137.41189772635744
Iteration: 17, Func. Count: 179, Neg. LLF: 137.41187719072747
Iteration: 18, Func. Count: 189, Neg. LLF: 137.4118543117551
Iteration: 19, Func. Count: 199, Neg. LLF: 137.41185026962614
Iteration: 20, Func. Count: 208, Neg. LLF: 137.41185028981917
Optimization terminated successfully (Exit mode 0)
Current function value: 137.41185026962614
Iterations: 20
Function evaluations: 208
Gradient evaluations: 20
Iteration: 1, Func. Count: 12, Neg. LLF: 140.45493236060014
Iteration: 2, Func. Count: 26, Neg. LLF: 140.5237712243601
Iteration: 3, Func. Count: 38, Neg. LLF: 137.71442949122732
Iteration: 4, Func. Count: 49, Neg. LLF: 137.6515810250451
Iteration: 5, Func. Count: 60, Neg. LLF: 137.63267629879175
Iteration: 6, Func. Count: 71, Neg. LLF: 137.53962750728132
Iteration: 7, Func. Count: 82, Neg. LLF: 137.72456991854463
Iteration: 8, Func. Count: 94, Neg. LLF: 137.65939754061736
Iteration: 9, Func. Count: 106, Neg. LLF: 137.47302650657656
Iteration: 10, Func. Count: 117, Neg. LLF: 137.4738879273625
Iteration: 11, Func. Count: 129, Neg. LLF: 137.45427668272578
Iteration: 12, Func. Count: 140, Neg. LLF: 137.43101264670477
Iteration: 13, Func. Count: 151, Neg. LLF: 137.42716110759883
Iteration: 14, Func. Count: 162, Neg. LLF: 137.41655728411362
Iteration: 15, Func. Count: 173, Neg. LLF: 137.41413489648545
Iteration: 16, Func. Count: 184, Neg. LLF: 137.41280276228613
Iteration: 17, Func. Count: 195, Neg. LLF: 137.41235570300742
Iteration: 18, Func. Count: 206, Neg. LLF: 137.41200623858026
Iteration: 19, Func. Count: 217, Neg. LLF: 137.4118781426856
Iteration: 20, Func. Count: 228, Neg. LLF: 137.4118528608191
Iteration: 21, Func. Count: 239, Neg. LLF: 137.41185059777226
Iteration: 22, Func. Count: 249, Neg. LLF: 137.4118506378648
Optimization terminated successfully (Exit mode 0)
Current function value: 137.41185059777226
Iterations: 22
Function evaluations: 249
Gradient evaluations: 22
Iteration: 1, Func. Count: 13, Neg. LLF: 141.09103603856107
Iteration: 2, Func. Count: 28, Neg. LLF: 140.54287642855292
Iteration: 3, Func. Count: 41, Neg. LLF: 137.66823751460328
Iteration: 4, Func. Count: 53, Neg. LLF: 137.63462596548757
Iteration: 5, Func. Count: 65, Neg. LLF: 137.63420326208154
Iteration: 6, Func. Count: 78, Neg. LLF: 137.59408529550066
Iteration: 7, Func. Count: 90, Neg. LLF: 137.84010015577496
Iteration: 8, Func. Count: 103, Neg. LLF: 137.78171374002795
Iteration: 9, Func. Count: 116, Neg. LLF: 137.52368718657246
Iteration: 10, Func. Count: 128, Neg. LLF: 137.49973064533972
Iteration: 11, Func. Count: 140, Neg. LLF: 137.48663090072552
Iteration: 12, Func. Count: 152, Neg. LLF: 137.45335764739684
Iteration: 13, Func. Count: 164, Neg. LLF: 137.44286065718921
Iteration: 14, Func. Count: 176, Neg. LLF: 137.42480639906768
Iteration: 15, Func. Count: 188, Neg. LLF: 137.42071163281065
Iteration: 16, Func. Count: 200, Neg. LLF: 137.41523417126064
Iteration: 17, Func. Count: 212, Neg. LLF: 137.4133017984319
Iteration: 18, Func. Count: 224, Neg. LLF: 137.41246518387
Iteration: 19, Func. Count: 236, Neg. LLF: 137.41216341593892
Iteration: 20, Func. Count: 248, Neg. LLF: 137.4119429591257
Iteration: 21, Func. Count: 260, Neg. LLF: 137.41186313844952
Iteration: 22, Func. Count: 272, Neg. LLF: 137.41185056084578
Iteration: 23, Func. Count: 284, Neg. LLF: 137.41184986174014
Optimization terminated successfully (Exit mode 0)
Current function value: 137.41184986174014
Iterations: 23
Function evaluations: 284
Gradient evaluations: 23
Iteration: 1, Func. Count: 10, Neg. LLF: 147.3276045399948
Iteration: 2, Func. Count: 20, Neg. LLF: 142.0011642887147
Iteration: 3, Func. Count: 30, Neg. LLF: 141.23650186361735
Iteration: 4, Func. Count: 40, Neg. LLF: 139.1737621227694
Iteration: 5, Func. Count: 50, Neg. LLF: 138.24415998682932
Iteration: 6, Func. Count: 60, Neg. LLF: 137.88821513349671
Iteration: 7, Func. Count: 69, Neg. LLF: 139.0979447879122
Iteration: 8, Func. Count: 79, Neg. LLF: 137.50052665789332
Iteration: 9, Func. Count: 88, Neg. LLF: 137.48357016455054
Iteration: 10, Func. Count: 98, Neg. LLF: 137.41841353823736
Iteration: 11, Func. Count: 107, Neg. LLF: 137.41403465661105
Iteration: 12, Func. Count: 116, Neg. LLF: 137.41247960072536
Iteration: 13, Func. Count: 125, Neg. LLF: 137.41191244004926
Iteration: 14, Func. Count: 134, Neg. LLF: 137.41185708277658
Iteration: 15, Func. Count: 143, Neg. LLF: 137.4118499721202
Iteration: 16, Func. Count: 151, Neg. LLF: 137.41185007975196
Optimization terminated successfully (Exit mode 0)
Current function value: 137.4118499721202
Iterations: 16
Function evaluations: 151
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 141.9787530914878
Iteration: 2, Func. Count: 23, Neg. LLF: 140.4330656369817
Iteration: 3, Func. Count: 34, Neg. LLF: 137.64975253763015
Iteration: 4, Func. Count: 44, Neg. LLF: 137.67731602204861
Iteration: 5, Func. Count: 55, Neg. LLF: 137.62248760124956
Iteration: 6, Func. Count: 66, Neg. LLF: 137.5669929565011
Iteration: 7, Func. Count: 76, Neg. LLF: 137.74815241105085
Iteration: 8, Func. Count: 87, Neg. LLF: 137.51422289454996
Iteration: 9, Func. Count: 98, Neg. LLF: 137.4390143409397
Iteration: 10, Func. Count: 108, Neg. LLF: 137.43687297186256
Iteration: 11, Func. Count: 119, Neg. LLF: 137.7825051387163
Iteration: 12, Func. Count: 131, Neg. LLF: 137.41351625996302
Iteration: 13, Func. Count: 141, Neg. LLF: 137.41213417672918
Iteration: 14, Func. Count: 151, Neg. LLF: 137.41187730961093
Iteration: 15, Func. Count: 161, Neg. LLF: 137.41185763495298
Iteration: 16, Func. Count: 171, Neg. LLF: 137.41185114352436
Iteration: 17, Func. Count: 181, Neg. LLF: 137.41184994454
Iteration: 18, Func. Count: 190, Neg. LLF: 137.41184994824982
Optimization terminated successfully (Exit mode 0)
Current function value: 137.41184994454
Iterations: 18
Function evaluations: 190
Gradient evaluations: 18
Iteration: 1, Func. Count: 12, Neg. LLF: 141.91797023422993
Iteration: 2, Func. Count: 26, Neg. LLF: 140.58254848381446
Iteration: 3, Func. Count: 38, Neg. LLF: 137.68598900956536
Iteration: 4, Func. Count: 49, Neg. LLF: 137.6351574610571
Iteration: 5, Func. Count: 60, Neg. LLF: 137.5909268772217
Iteration: 6, Func. Count: 71, Neg. LLF: 138.38484780932876
Iteration: 7, Func. Count: 83, Neg. LLF: 137.99302751495432
Iteration: 8, Func. Count: 95, Neg. LLF: 137.52502746379437
Iteration: 9, Func. Count: 106, Neg. LLF: 137.50026012971318
Iteration: 10, Func. Count: 117, Neg. LLF: 137.47301188618695
Iteration: 11, Func. Count: 128, Neg. LLF: 137.46333317044682
Iteration: 12, Func. Count: 139, Neg. LLF: 137.4463298262176
Iteration: 13, Func. Count: 150, Neg. LLF: 137.4354912127366
Iteration: 14, Func. Count: 161, Neg. LLF: 137.4214472364317
Iteration: 15, Func. Count: 172, Neg. LLF: 137.41468395042443
Iteration: 16, Func. Count: 183, Neg. LLF: 137.41348352319582
Iteration: 17, Func. Count: 194, Neg. LLF: 137.41231958114557
Iteration: 18, Func. Count: 205, Neg. LLF: 137.41193351090092
Iteration: 19, Func. Count: 216, Neg. LLF: 137.41185258064522
Iteration: 20, Func. Count: 227, Neg. LLF: 137.41184991186688
Iteration: 21, Func. Count: 237, Neg. LLF: 137.4118499320502
Optimization terminated successfully (Exit mode 0)
Current function value: 137.41184991186688
Iterations: 21
Function evaluations: 237
Gradient evaluations: 21
Iteration: 1, Func. Count: 13, Neg. LLF: 140.6784013414419
Iteration: 2, Func. Count: 28, Neg. LLF: 140.52443420743458
Iteration: 3, Func. Count: 41, Neg. LLF: 137.71425250693045
Iteration: 4, Func. Count: 53, Neg. LLF: 137.65486228059987
Iteration: 5, Func. Count: 65, Neg. LLF: 137.63848505654732
Iteration: 6, Func. Count: 77, Neg. LLF: 137.55776388145875
Iteration: 7, Func. Count: 89, Neg. LLF: 137.6914212697808
Iteration: 8, Func. Count: 102, Neg. LLF: 137.63757335920317
Iteration: 9, Func. Count: 115, Neg. LLF: 137.46649540793948
Iteration: 10, Func. Count: 127, Neg. LLF: 137.48216143413293
Iteration: 11, Func. Count: 140, Neg. LLF: 137.4531733752207
Iteration: 12, Func. Count: 152, Neg. LLF: 137.42796284654273
Iteration: 13, Func. Count: 164, Neg. LLF: 137.42402581634488
Iteration: 14, Func. Count: 176, Neg. LLF: 137.41712728520463
Iteration: 15, Func. Count: 188, Neg. LLF: 137.41507206849568
Iteration: 16, Func. Count: 200, Neg. LLF: 137.4128469236834
Iteration: 17, Func. Count: 212, Neg. LLF: 137.41213118102337
Iteration: 18, Func. Count: 224, Neg. LLF: 137.4119030621361
Iteration: 19, Func. Count: 236, Neg. LLF: 137.41185502046795
Iteration: 20, Func. Count: 248, Neg. LLF: 137.41185022267484
Iteration: 21, Func. Count: 259, Neg. LLF: 137.41185026276227
Optimization terminated successfully (Exit mode 0)
Current function value: 137.41185022267484
Iterations: 21
Function evaluations: 259
Gradient evaluations: 21
Iteration: 1, Func. Count: 14, Neg. LLF: 141.22372009252152
Iteration: 2, Func. Count: 30, Neg. LLF: 140.54189231297252
Iteration: 3, Func. Count: 44, Neg. LLF: 137.66738623477127
Iteration: 4, Func. Count: 57, Neg. LLF: 137.63590599829587
Iteration: 5, Func. Count: 70, Neg. LLF: 137.63512203479905
Iteration: 6, Func. Count: 84, Neg. LLF: 137.59753721186794
Iteration: 7, Func. Count: 97, Neg. LLF: 137.62018087155252
Iteration: 8, Func. Count: 111, Neg. LLF: 137.5196951277396
Iteration: 9, Func. Count: 124, Neg. LLF: 137.50556379036604
Iteration: 10, Func. Count: 137, Neg. LLF: 137.48504951472242
Iteration: 11, Func. Count: 150, Neg. LLF: 137.45762827821082
Iteration: 12, Func. Count: 163, Neg. LLF: 137.42940868107928
Iteration: 13, Func. Count: 176, Neg. LLF: 137.4227545355506
Iteration: 14, Func. Count: 189, Neg. LLF: 137.41525176300132
Iteration: 15, Func. Count: 202, Neg. LLF: 137.41286163018913
Iteration: 16, Func. Count: 215, Neg. LLF: 137.4122575890589
Iteration: 17, Func. Count: 228, Neg. LLF: 137.4120523102639
Iteration: 18, Func. Count: 241, Neg. LLF: 137.4118874905246
Iteration: 19, Func. Count: 254, Neg. LLF: 137.41185292903063
Iteration: 20, Func. Count: 267, Neg. LLF: 137.4118499558635
Iteration: 21, Func. Count: 279, Neg. LLF: 137.41184996982963
Optimization terminated successfully (Exit mode 0)
Current function value: 137.4118499558635
Iterations: 21
Function evaluations: 279
Gradient evaluations: 21
Iteration: 1, Func. Count: 7, Neg. LLF: 144.76506169261677
Iteration: 2, Func. Count: 14, Neg. LLF: 144.5588303371094
Iteration: 3, Func. Count: 21, Neg. LLF: 138.4117010844228
Iteration: 4, Func. Count: 27, Neg. LLF: 138.95158410195145
Iteration: 5, Func. Count: 34, Neg. LLF: 138.14514745350792
Iteration: 6, Func. Count: 40, Neg. LLF: 138.07695445216842
Iteration: 7, Func. Count: 46, Neg. LLF: 138.0339384355685
Iteration: 8, Func. Count: 52, Neg. LLF: 137.96997190771867
Iteration: 9, Func. Count: 58, Neg. LLF: 137.90703443078195
Iteration: 10, Func. Count: 64, Neg. LLF: 137.9037799158761
Iteration: 11, Func. Count: 70, Neg. LLF: 137.9015118232561
Iteration: 12, Func. Count: 76, Neg. LLF: 137.90150243885057
Iteration: 13, Func. Count: 82, Neg. LLF: 137.90150168636774
Optimization terminated successfully (Exit mode 0)
Current function value: 137.90150168636774
Iterations: 13
Function evaluations: 82
Gradient evaluations: 13
Iteration: 1, Func. Count: 8, Neg. LLF: 177.58671732809367
Iteration: 2, Func. Count: 17, Neg. LLF: 137.90905845801228
Iteration: 3, Func. Count: 24, Neg. LLF: 137.905555644536
Iteration: 4, Func. Count: 31, Neg. LLF: 137.90555469479781
Optimization terminated successfully (Exit mode 0)
Current function value: 137.90555469479781
Iterations: 4
Function evaluations: 31
Gradient evaluations: 4
Iteration: 1, Func. Count: 9, Neg. LLF: 170.14556653378463
Iteration: 2, Func. Count: 19, Neg. LLF: 137.90779037021946
Iteration: 3, Func. Count: 27, Neg. LLF: 137.9054457591585
Iteration: 4, Func. Count: 35, Neg. LLF: 137.9054372127652
Iteration: 5, Func. Count: 42, Neg. LLF: 137.90543721274247
Optimization terminated successfully (Exit mode 0)
Current function value: 137.9054372127652
Iterations: 5
Function evaluations: 42
Gradient evaluations: 5
Iteration: 1, Func. Count: 10, Neg. LLF: 165.0166678104445
Iteration: 2, Func. Count: 21, Neg. LLF: 137.90731030706286
Iteration: 3, Func. Count: 30, Neg. LLF: 137.90544763646358
Iteration: 4, Func. Count: 39, Neg. LLF: 137.90542227914153
Iteration: 5, Func. Count: 47, Neg. LLF: 137.9054222791824
Optimization terminated successfully (Exit mode 0)
Current function value: 137.90542227914153
Iterations: 5
Function evaluations: 47
Gradient evaluations: 5
Iteration: 1, Func. Count: 11, Neg. LLF: 161.16417846707301
Iteration: 2, Func. Count: 23, Neg. LLF: 137.9075225222815
Iteration: 3, Func. Count: 33, Neg. LLF: 137.9059689892623
Iteration: 4, Func. Count: 43, Neg. LLF: 137.9055408831268
Iteration: 5, Func. Count: 52, Neg. LLF: 137.90554088319834
Optimization terminated successfully (Exit mode 0)
Current function value: 137.9055408831268
Iterations: 5
Function evaluations: 52
Gradient evaluations: 5
Iteration: 1, Func. Count: 8, Neg. LLF: 145.79053044283472
Iteration: 2, Func. Count: 16, Neg. LLF: 140.85302106628134
Iteration: 3, Func. Count: 25, Neg. LLF: 142.37754518624223
Iteration: 4, Func. Count: 33, Neg. LLF: 137.81952516508395
Iteration: 5, Func. Count: 40, Neg. LLF: 137.60734965387812
Iteration: 6, Func. Count: 47, Neg. LLF: 137.4743817480752
Iteration: 7, Func. Count: 54, Neg. LLF: 137.45063941871723
Iteration: 8, Func. Count: 61, Neg. LLF: 137.44827899754085
Iteration: 9, Func. Count: 68, Neg. LLF: 137.44754122035727
Iteration: 10, Func. Count: 75, Neg. LLF: 137.44746638812444
Iteration: 11, Func. Count: 82, Neg. LLF: 137.44745943402998
Iteration: 12, Func. Count: 88, Neg. LLF: 137.4474594340441
Optimization terminated successfully (Exit mode 0)
Current function value: 137.44745943402998
Iterations: 12
Function evaluations: 88
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 138.71542024894572
Iteration: 2, Func. Count: 18, Neg. LLF: 137.97864170898748
Iteration: 3, Func. Count: 27, Neg. LLF: 137.63122035701727
Iteration: 4, Func. Count: 35, Neg. LLF: 137.62135698273437
Iteration: 5, Func. Count: 44, Neg. LLF: 137.51594517848542
Iteration: 6, Func. Count: 52, Neg. LLF: 137.53578698111966
Iteration: 7, Func. Count: 61, Neg. LLF: 137.44215380777632
Iteration: 8, Func. Count: 69, Neg. LLF: 137.45399271491254
Iteration: 9, Func. Count: 78, Neg. LLF: 137.469052811776
Iteration: 10, Func. Count: 87, Neg. LLF: 137.4367829031142
Iteration: 11, Func. Count: 95, Neg. LLF: 137.43676932698978
Iteration: 12, Func. Count: 103, Neg. LLF: 137.43676389007976
Iteration: 13, Func. Count: 111, Neg. LLF: 137.43676324836517
Optimization terminated successfully (Exit mode 0)
Current function value: 137.43676324836517
Iterations: 13
Function evaluations: 111
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 161.6605624603515
Iteration: 2, Func. Count: 21, Neg. LLF: 137.9445760517874
Iteration: 3, Func. Count: 31, Neg. LLF: 137.64316069624593
Iteration: 4, Func. Count: 40, Neg. LLF: 137.63677013232362
Iteration: 5, Func. Count: 49, Neg. LLF: 137.60293552946558
Iteration: 6, Func. Count: 58, Neg. LLF: 137.54210037461266
Iteration: 7, Func. Count: 67, Neg. LLF: 137.508972154051
Iteration: 8, Func. Count: 76, Neg. LLF: 137.55226739967526
Iteration: 9, Func. Count: 86, Neg. LLF: 137.57685158747432
Iteration: 10, Func. Count: 96, Neg. LLF: 137.4477257587032
Iteration: 11, Func. Count: 105, Neg. LLF: 137.4419067204698
Iteration: 12, Func. Count: 114, Neg. LLF: 137.4377924022087
Iteration: 13, Func. Count: 123, Neg. LLF: 137.43679089776302
Iteration: 14, Func. Count: 132, Neg. LLF: 137.436763524337
Iteration: 15, Func. Count: 140, Neg. LLF: 137.43676354491436
Optimization terminated successfully (Exit mode 0)
Current function value: 137.436763524337
Iterations: 15
Function evaluations: 140
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 152.41780729084718
Iteration: 2, Func. Count: 23, Neg. LLF: 137.71440234829728
Iteration: 3, Func. Count: 33, Neg. LLF: 137.63840136950256
Iteration: 4, Func. Count: 43, Neg. LLF: 137.63071848549413
Iteration: 5, Func. Count: 53, Neg. LLF: 137.58924513705009
Iteration: 6, Func. Count: 63, Neg. LLF: 137.57087561250646
Iteration: 7, Func. Count: 74, Neg. LLF: 137.46914463653593
Iteration: 8, Func. Count: 84, Neg. LLF: 137.4515205404727
Iteration: 9, Func. Count: 94, Neg. LLF: 137.5127407787081
Iteration: 10, Func. Count: 105, Neg. LLF: 137.44506406159937
Iteration: 11, Func. Count: 115, Neg. LLF: 137.44195303190392
Iteration: 12, Func. Count: 125, Neg. LLF: 137.439582568741
Iteration: 13, Func. Count: 135, Neg. LLF: 137.43829512654787
Iteration: 14, Func. Count: 145, Neg. LLF: 137.4371963902963
Iteration: 15, Func. Count: 155, Neg. LLF: 137.43682596676535
Iteration: 16, Func. Count: 165, Neg. LLF: 137.43676883840735
Iteration: 17, Func. Count: 175, Neg. LLF: 137.43676342171696
Iteration: 18, Func. Count: 184, Neg. LLF: 137.43676346130098
Optimization terminated successfully (Exit mode 0)
Current function value: 137.43676342171696
Iterations: 18
Function evaluations: 184
Gradient evaluations: 18
Iteration: 1, Func. Count: 12, Neg. LLF: 148.13242341344312
Iteration: 2, Func. Count: 25, Neg. LLF: 137.81707078423568
Iteration: 3, Func. Count: 36, Neg. LLF: 137.72019777008833
Iteration: 4, Func. Count: 47, Neg. LLF: 137.9489916618355
Iteration: 5, Func. Count: 59, Neg. LLF: 137.62175406041996
Iteration: 6, Func. Count: 71, Neg. LLF: 137.59110762333057
Iteration: 7, Func. Count: 82, Neg. LLF: 137.5576038079909
Iteration: 8, Func. Count: 93, Neg. LLF: 137.53274374717012
Iteration: 9, Func. Count: 104, Neg. LLF: 137.48773139431907
Iteration: 10, Func. Count: 115, Neg. LLF: 137.46575878077152
Iteration: 11, Func. Count: 126, Neg. LLF: 137.44293138349437
Iteration: 12, Func. Count: 137, Neg. LLF: 137.43894503791924
Iteration: 13, Func. Count: 148, Neg. LLF: 137.43748831849362
Iteration: 14, Func. Count: 159, Neg. LLF: 137.43683494858635
Iteration: 15, Func. Count: 170, Neg. LLF: 137.43679642349207
Iteration: 16, Func. Count: 181, Neg. LLF: 137.43676325287663
Iteration: 17, Func. Count: 191, Neg. LLF: 137.43676326787954
Optimization terminated successfully (Exit mode 0)
Current function value: 137.43676325287663
Iterations: 17
Function evaluations: 191
Gradient evaluations: 17
Iteration: 1, Func. Count: 9, Neg. LLF: 149.44955071075591
Iteration: 2, Func. Count: 18, Neg. LLF: 141.85687294796026
Iteration: 3, Func. Count: 27, Neg. LLF: 139.13795886684977
Iteration: 4, Func. Count: 36, Neg. LLF: 138.33782528741574
Iteration: 5, Func. Count: 45, Neg. LLF: 137.6367819757536
Iteration: 6, Func. Count: 53, Neg. LLF: 139.19251138957955
Iteration: 7, Func. Count: 63, Neg. LLF: 137.48225860555175
Iteration: 8, Func. Count: 71, Neg. LLF: 137.43114326634154
Iteration: 9, Func. Count: 79, Neg. LLF: 137.41758302475546
Iteration: 10, Func. Count: 87, Neg. LLF: 137.41238820376768
Iteration: 11, Func. Count: 95, Neg. LLF: 137.41189721213527
Iteration: 12, Func. Count: 103, Neg. LLF: 137.41185188299235
Iteration: 13, Func. Count: 111, Neg. LLF: 137.41184985655917
Iteration: 14, Func. Count: 118, Neg. LLF: 137.41184985655676
Optimization terminated successfully (Exit mode 0)
Current function value: 137.41184985655917
Iterations: 14
Function evaluations: 118
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 140.91863355885883
Iteration: 2, Func. Count: 21, Neg. LLF: 140.33058961324633
Iteration: 3, Func. Count: 31, Neg. LLF: 137.64263511828722
Iteration: 4, Func. Count: 40, Neg. LLF: 137.65749569174184
Iteration: 5, Func. Count: 50, Neg. LLF: 137.59944393519407
Iteration: 6, Func. Count: 59, Neg. LLF: 137.52013358959758
Iteration: 7, Func. Count: 68, Neg. LLF: 137.57042790720564
Iteration: 8, Func. Count: 78, Neg. LLF: 137.44920305552895
Iteration: 9, Func. Count: 87, Neg. LLF: 137.4235697402743
Iteration: 10, Func. Count: 96, Neg. LLF: 137.43216180330938
Iteration: 11, Func. Count: 106, Neg. LLF: 137.41306434913756
Iteration: 12, Func. Count: 115, Neg. LLF: 137.41221063211793
Iteration: 13, Func. Count: 124, Neg. LLF: 137.41194515437007
Iteration: 14, Func. Count: 133, Neg. LLF: 137.41186962249458
Iteration: 15, Func. Count: 142, Neg. LLF: 137.41185056567602
Iteration: 16, Func. Count: 151, Neg. LLF: 137.41184986381288
Optimization terminated successfully (Exit mode 0)
Current function value: 137.41184986381288
Iterations: 16
Function evaluations: 151
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 141.94853710067778
Iteration: 2, Func. Count: 24, Neg. LLF: 140.5766815394449
Iteration: 3, Func. Count: 35, Neg. LLF: 137.6877180282817
Iteration: 4, Func. Count: 45, Neg. LLF: 137.63625079587908
Iteration: 5, Func. Count: 55, Neg. LLF: 137.58907850706765
Iteration: 6, Func. Count: 65, Neg. LLF: 138.17416188083118
Iteration: 7, Func. Count: 76, Neg. LLF: 137.9063379186479
Iteration: 8, Func. Count: 87, Neg. LLF: 137.51991896077882
Iteration: 9, Func. Count: 97, Neg. LLF: 137.49484174024377
Iteration: 10, Func. Count: 107, Neg. LLF: 137.46728952603527
Iteration: 11, Func. Count: 117, Neg. LLF: 137.44985110235191
Iteration: 12, Func. Count: 127, Neg. LLF: 137.4284782134063
Iteration: 13, Func. Count: 137, Neg. LLF: 137.4212388251348
Iteration: 14, Func. Count: 147, Neg. LLF: 137.4161925631796
Iteration: 15, Func. Count: 157, Neg. LLF: 137.4142850836881
Iteration: 16, Func. Count: 167, Neg. LLF: 137.4122174151328
Iteration: 17, Func. Count: 177, Neg. LLF: 137.41192443821683
Iteration: 18, Func. Count: 187, Neg. LLF: 137.41186617194577
Iteration: 19, Func. Count: 197, Neg. LLF: 137.41185620816594
Iteration: 20, Func. Count: 207, Neg. LLF: 137.41184999121518
Iteration: 21, Func. Count: 216, Neg. LLF: 137.41185001140218
Optimization terminated successfully (Exit mode 0)
Current function value: 137.41184999121518
Iterations: 21
Function evaluations: 216
Gradient evaluations: 21
Iteration: 1, Func. Count: 12, Neg. LLF: 140.38055472608616
Iteration: 2, Func. Count: 26, Neg. LLF: 140.51100616938257
Iteration: 3, Func. Count: 38, Neg. LLF: 137.71287729512105
Iteration: 4, Func. Count: 49, Neg. LLF: 137.65314400966972
Iteration: 5, Func. Count: 60, Neg. LLF: 137.6376279548244
Iteration: 6, Func. Count: 71, Neg. LLF: 137.5561517456455
Iteration: 7, Func. Count: 82, Neg. LLF: 137.63496824584573
Iteration: 8, Func. Count: 94, Neg. LLF: 137.54634725758956
Iteration: 9, Func. Count: 106, Neg. LLF: 137.4554251245472
Iteration: 10, Func. Count: 117, Neg. LLF: 137.46150846852532
Iteration: 11, Func. Count: 129, Neg. LLF: 137.44743412641228
Iteration: 12, Func. Count: 140, Neg. LLF: 137.42861976164397
Iteration: 13, Func. Count: 151, Neg. LLF: 137.4199252244766
Iteration: 14, Func. Count: 162, Neg. LLF: 137.41410906621314
Iteration: 15, Func. Count: 173, Neg. LLF: 137.4119136581194
Iteration: 16, Func. Count: 184, Neg. LLF: 137.41185452792166
Iteration: 17, Func. Count: 195, Neg. LLF: 137.41184989082237
Iteration: 18, Func. Count: 205, Neg. LLF: 137.41184993089993
Optimization terminated successfully (Exit mode 0)
Current function value: 137.41184989082237
Iterations: 18
Function evaluations: 205
Gradient evaluations: 18
Iteration: 1, Func. Count: 13, Neg. LLF: 139.61735416078326
Iteration: 2, Func. Count: 28, Neg. LLF: 140.39681434545932
Iteration: 3, Func. Count: 41, Neg. LLF: 137.6725750503648
Iteration: 4, Func. Count: 53, Neg. LLF: 137.6566114979781
Iteration: 5, Func. Count: 65, Neg. LLF: 137.6490154115951
Iteration: 6, Func. Count: 77, Neg. LLF: 137.61147376056493
Iteration: 7, Func. Count: 89, Neg. LLF: 137.58916893544935
Iteration: 8, Func. Count: 101, Neg. LLF: 137.52336178487388
Iteration: 9, Func. Count: 113, Neg. LLF: 137.9174125924144
Iteration: 10, Func. Count: 126, Neg. LLF: 137.50137163080262
Iteration: 11, Func. Count: 138, Neg. LLF: 137.4874478743784
Iteration: 12, Func. Count: 150, Neg. LLF: 137.4649880389501
Iteration: 13, Func. Count: 162, Neg. LLF: 137.45063408464506
Iteration: 14, Func. Count: 174, Neg. LLF: 137.4230109118907
Iteration: 15, Func. Count: 186, Neg. LLF: 137.41925826064062
Iteration: 16, Func. Count: 198, Neg. LLF: 137.41275788307186
Iteration: 17, Func. Count: 210, Neg. LLF: 137.41222572772048
Iteration: 18, Func. Count: 222, Neg. LLF: 137.41195082119492
Iteration: 19, Func. Count: 234, Neg. LLF: 137.41189764507277
Iteration: 20, Func. Count: 246, Neg. LLF: 137.41185064999488
Iteration: 21, Func. Count: 258, Neg. LLF: 137.41184988849324
Optimization terminated successfully (Exit mode 0)
Current function value: 137.41184988849324
Iterations: 21
Function evaluations: 258
Gradient evaluations: 21
Iteration: 1, Func. Count: 10, Neg. LLF: 148.9321617161733
Iteration: 2, Func. Count: 20, Neg. LLF: 140.7709751690736
Iteration: 3, Func. Count: 30, Neg. LLF: 142.68340035033768
Iteration: 4, Func. Count: 40, Neg. LLF: 138.84416483405
Iteration: 5, Func. Count: 50, Neg. LLF: 138.4986312169663
Iteration: 6, Func. Count: 60, Neg. LLF: 138.44789276804855
Iteration: 7, Func. Count: 70, Neg. LLF: 137.62694707485423
Iteration: 8, Func. Count: 79, Neg. LLF: 137.5062644198312
Iteration: 9, Func. Count: 88, Neg. LLF: 137.44209720917792
Iteration: 10, Func. Count: 97, Neg. LLF: 137.4190841648589
Iteration: 11, Func. Count: 106, Neg. LLF: 137.41205870741393
Iteration: 12, Func. Count: 115, Neg. LLF: 137.41186391438958
Iteration: 13, Func. Count: 124, Neg. LLF: 137.4118506446882
Iteration: 14, Func. Count: 133, Neg. LLF: 137.41184991439934
Optimization terminated successfully (Exit mode 0)
Current function value: 137.41184991439934
Iterations: 14
Function evaluations: 133
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 141.98492851258644
Iteration: 2, Func. Count: 23, Neg. LLF: 140.42263949567018
Iteration: 3, Func. Count: 34, Neg. LLF: 137.64881223775228
Iteration: 4, Func. Count: 44, Neg. LLF: 137.6274374809601
Iteration: 5, Func. Count: 54, Neg. LLF: 137.61857617398383
Iteration: 6, Func. Count: 64, Neg. LLF: 137.55557711684958
Iteration: 7, Func. Count: 74, Neg. LLF: 137.4970447894793
Iteration: 8, Func. Count: 84, Neg. LLF: 137.749445088305
Iteration: 9, Func. Count: 95, Neg. LLF: 137.4970916843448
Iteration: 10, Func. Count: 106, Neg. LLF: 137.4341562156237
Iteration: 11, Func. Count: 116, Neg. LLF: 137.53698401842118
Iteration: 12, Func. Count: 127, Neg. LLF: 137.41608487676555
Iteration: 13, Func. Count: 137, Neg. LLF: 137.41337448882845
Iteration: 14, Func. Count: 147, Neg. LLF: 137.41213206923874
Iteration: 15, Func. Count: 157, Neg. LLF: 137.4118965336712
Iteration: 16, Func. Count: 167, Neg. LLF: 137.41185249083225
Iteration: 17, Func. Count: 177, Neg. LLF: 137.41184993119145
Iteration: 18, Func. Count: 186, Neg. LLF: 137.41184993489395
Optimization terminated successfully (Exit mode 0)
Current function value: 137.41184993119145
Iterations: 18
Function evaluations: 186
Gradient evaluations: 18
Iteration: 1, Func. Count: 12, Neg. LLF: 141.9473698113573
Iteration: 2, Func. Count: 26, Neg. LLF: 140.56903924048
Iteration: 3, Func. Count: 38, Neg. LLF: 137.68986180046895
Iteration: 4, Func. Count: 49, Neg. LLF: 137.6351563502491
Iteration: 5, Func. Count: 60, Neg. LLF: 137.61203575742366
Iteration: 6, Func. Count: 71, Neg. LLF: 137.59064524892568
Iteration: 7, Func. Count: 82, Neg. LLF: 138.00752467767595
Iteration: 8, Func. Count: 94, Neg. LLF: 137.8307578903886
Iteration: 9, Func. Count: 106, Neg. LLF: 137.51204595159933
Iteration: 10, Func. Count: 117, Neg. LLF: 137.47981295067865
Iteration: 11, Func. Count: 128, Neg. LLF: 137.45348220345596
Iteration: 12, Func. Count: 139, Neg. LLF: 137.44617324027055
Iteration: 13, Func. Count: 150, Neg. LLF: 137.42554223702228
Iteration: 14, Func. Count: 161, Neg. LLF: 137.41789126633685
Iteration: 15, Func. Count: 172, Neg. LLF: 137.4133665691126
Iteration: 16, Func. Count: 183, Neg. LLF: 137.41270127012726
Iteration: 17, Func. Count: 194, Neg. LLF: 137.4120287095046
Iteration: 18, Func. Count: 205, Neg. LLF: 137.4119067075397
Iteration: 19, Func. Count: 216, Neg. LLF: 137.4118519808228
Iteration: 20, Func. Count: 227, Neg. LLF: 137.41184995130203
Iteration: 21, Func. Count: 237, Neg. LLF: 137.41184997150015
Optimization terminated successfully (Exit mode 0)
Current function value: 137.41184995130203
Iterations: 21
Function evaluations: 237
Gradient evaluations: 21
Iteration: 1, Func. Count: 13, Neg. LLF: 140.49480818077137
Iteration: 2, Func. Count: 28, Neg. LLF: 140.50489159269338
Iteration: 3, Func. Count: 41, Neg. LLF: 137.71719926549272
Iteration: 4, Func. Count: 53, Neg. LLF: 137.65380702634792
Iteration: 5, Func. Count: 65, Neg. LLF: 137.63614103304022
Iteration: 6, Func. Count: 77, Neg. LLF: 137.55079582175043
Iteration: 7, Func. Count: 89, Neg. LLF: 137.71050047580422
Iteration: 8, Func. Count: 102, Neg. LLF: 137.64344561518206
Iteration: 9, Func. Count: 115, Neg. LLF: 137.46957508124495
Iteration: 10, Func. Count: 127, Neg. LLF: 137.4740346260587
Iteration: 11, Func. Count: 140, Neg. LLF: 137.4542242600341
Iteration: 12, Func. Count: 152, Neg. LLF: 137.4255906565909
Iteration: 13, Func. Count: 164, Neg. LLF: 137.42010207620413
Iteration: 14, Func. Count: 176, Neg. LLF: 137.41481808555355
Iteration: 15, Func. Count: 188, Neg. LLF: 137.41329422417712
Iteration: 16, Func. Count: 200, Neg. LLF: 137.4124523076344
Iteration: 17, Func. Count: 212, Neg. LLF: 137.41215366724654
Iteration: 18, Func. Count: 224, Neg. LLF: 137.4119454318347
Iteration: 19, Func. Count: 236, Neg. LLF: 137.4118686596265
Iteration: 20, Func. Count: 248, Neg. LLF: 137.41185274163203
Iteration: 21, Func. Count: 260, Neg. LLF: 137.41185066243168
Iteration: 22, Func. Count: 272, Neg. LLF: 137.41184999619375
Optimization terminated successfully (Exit mode 0)
Current function value: 137.41184999619375
Iterations: 22
Function evaluations: 272
Gradient evaluations: 22
Iteration: 1, Func. Count: 14, Neg. LLF: 140.99974454827947
Iteration: 2, Func. Count: 30, Neg. LLF: 140.52131224571104
Iteration: 3, Func. Count: 44, Neg. LLF: 137.67286125676557
Iteration: 4, Func. Count: 57, Neg. LLF: 137.63544594251414
Iteration: 5, Func. Count: 70, Neg. LLF: 137.63488885463013
Iteration: 6, Func. Count: 84, Neg. LLF: 137.59943290490884
Iteration: 7, Func. Count: 97, Neg. LLF: 137.54667819646207
Iteration: 8, Func. Count: 110, Neg. LLF: 137.52260562566067
Iteration: 9, Func. Count: 123, Neg. LLF: 138.41234055780157
Iteration: 10, Func. Count: 138, Neg. LLF: 137.50062403300348
Iteration: 11, Func. Count: 151, Neg. LLF: 137.47135734302793
Iteration: 12, Func. Count: 164, Neg. LLF: 137.44790425596014
Iteration: 13, Func. Count: 177, Neg. LLF: 137.4183589230913
Iteration: 14, Func. Count: 190, Neg. LLF: 137.41468710550205
Iteration: 15, Func. Count: 203, Neg. LLF: 137.41291344454916
Iteration: 16, Func. Count: 216, Neg. LLF: 137.41217590713907
Iteration: 17, Func. Count: 229, Neg. LLF: 137.411912383055
Iteration: 18, Func. Count: 242, Neg. LLF: 137.41186721177772
Iteration: 19, Func. Count: 255, Neg. LLF: 137.41185309894618
Iteration: 20, Func. Count: 268, Neg. LLF: 137.41185010064223
Iteration: 21, Func. Count: 280, Neg. LLF: 137.41185011460402
Optimization terminated successfully (Exit mode 0)
Current function value: 137.41185010064223
Iterations: 21
Function evaluations: 280
Gradient evaluations: 21
Iteration: 1, Func. Count: 11, Neg. LLF: 148.06873785848842
Iteration: 2, Func. Count: 22, Neg. LLF: 140.68082659514374
Iteration: 3, Func. Count: 33, Neg. LLF: 145.32859837314646
Iteration: 4, Func. Count: 45, Neg. LLF: 139.3734904703778
Iteration: 5, Func. Count: 56, Neg. LLF: 138.12821945608482
Iteration: 6, Func. Count: 66, Neg. LLF: 139.83405046408365
Iteration: 7, Func. Count: 77, Neg. LLF: 137.81392288937693
Iteration: 8, Func. Count: 88, Neg. LLF: 137.52389294333136
Iteration: 9, Func. Count: 98, Neg. LLF: 137.43960843204673
Iteration: 10, Func. Count: 108, Neg. LLF: 137.42026983825286
Iteration: 11, Func. Count: 118, Neg. LLF: 137.4125618614687
Iteration: 12, Func. Count: 128, Neg. LLF: 137.41201356383502
Iteration: 13, Func. Count: 138, Neg. LLF: 137.41186534596864
Iteration: 14, Func. Count: 148, Neg. LLF: 137.41185075117286
Iteration: 15, Func. Count: 158, Neg. LLF: 137.41184986969097
Optimization terminated successfully (Exit mode 0)
Current function value: 137.41184986969097
Iterations: 15
Function evaluations: 158
Gradient evaluations: 15
Iteration: 1, Func. Count: 12, Neg. LLF: 141.93643039499656
Iteration: 2, Func. Count: 25, Neg. LLF: 140.41887336900834
Iteration: 3, Func. Count: 37, Neg. LLF: 137.6495780271255
Iteration: 4, Func. Count: 48, Neg. LLF: 137.6422660091255
Iteration: 5, Func. Count: 60, Neg. LLF: 137.63294475806205
Iteration: 6, Func. Count: 72, Neg. LLF: 137.56689229111248
Iteration: 7, Func. Count: 83, Neg. LLF: 137.7506317135393
Iteration: 8, Func. Count: 95, Neg. LLF: 137.51477171709342
Iteration: 9, Func. Count: 107, Neg. LLF: 137.4398811075986
Iteration: 10, Func. Count: 118, Neg. LLF: 137.4376849571019
Iteration: 11, Func. Count: 130, Neg. LLF: 137.87148898974425
Iteration: 12, Func. Count: 143, Neg. LLF: 137.41383377058597
Iteration: 13, Func. Count: 154, Neg. LLF: 137.41218612111317
Iteration: 14, Func. Count: 165, Neg. LLF: 137.41188490689436
Iteration: 15, Func. Count: 176, Neg. LLF: 137.41185900178235
Iteration: 16, Func. Count: 187, Neg. LLF: 137.4118513934612
Iteration: 17, Func. Count: 198, Neg. LLF: 137.4118499581078
Iteration: 18, Func. Count: 208, Neg. LLF: 137.4118499618193
Optimization terminated successfully (Exit mode 0)
Current function value: 137.4118499581078
Iterations: 18
Function evaluations: 208
Gradient evaluations: 18
Iteration: 1, Func. Count: 13, Neg. LLF: 141.89974603138452
Iteration: 2, Func. Count: 28, Neg. LLF: 140.56330995485024
Iteration: 3, Func. Count: 41, Neg. LLF: 137.68711592190357
Iteration: 4, Func. Count: 53, Neg. LLF: 137.63336168394056
Iteration: 5, Func. Count: 65, Neg. LLF: 137.63473790988567
Iteration: 6, Func. Count: 78, Neg. LLF: 137.60675531700903
Iteration: 7, Func. Count: 90, Neg. LLF: 138.12377421485735
Iteration: 8, Func. Count: 103, Neg. LLF: 137.87161823691503
Iteration: 9, Func. Count: 116, Neg. LLF: 137.5346121318056
Iteration: 10, Func. Count: 128, Neg. LLF: 137.50270183434043
Iteration: 11, Func. Count: 140, Neg. LLF: 137.47269850512495
Iteration: 12, Func. Count: 152, Neg. LLF: 137.4531622773884
Iteration: 13, Func. Count: 164, Neg. LLF: 137.43182348557943
Iteration: 14, Func. Count: 176, Neg. LLF: 137.42581566768516
Iteration: 15, Func. Count: 188, Neg. LLF: 137.4143075981499
Iteration: 16, Func. Count: 200, Neg. LLF: 137.41282430108885
Iteration: 17, Func. Count: 212, Neg. LLF: 137.41224221182412
Iteration: 18, Func. Count: 224, Neg. LLF: 137.41191637361706
Iteration: 19, Func. Count: 236, Neg. LLF: 137.41185462533224
Iteration: 20, Func. Count: 248, Neg. LLF: 137.41184991606968
Iteration: 21, Func. Count: 259, Neg. LLF: 137.41184993625032
Optimization terminated successfully (Exit mode 0)
Current function value: 137.41184991606968
Iterations: 21
Function evaluations: 259
Gradient evaluations: 21
Iteration: 1, Func. Count: 14, Neg. LLF: 140.714578397777
Iteration: 2, Func. Count: 30, Neg. LLF: 140.5054102398289
Iteration: 3, Func. Count: 44, Neg. LLF: 137.71726341532099
Iteration: 4, Func. Count: 57, Neg. LLF: 137.65771432639252
Iteration: 5, Func. Count: 70, Neg. LLF: 137.63983607150325
Iteration: 6, Func. Count: 83, Neg. LLF: 137.56135290972242
Iteration: 7, Func. Count: 96, Neg. LLF: 137.80620924514866
Iteration: 8, Func. Count: 110, Neg. LLF: 137.67548674727658
Iteration: 9, Func. Count: 124, Neg. LLF: 137.47818868046818
Iteration: 10, Func. Count: 137, Neg. LLF: 137.4755345461159
Iteration: 11, Func. Count: 150, Neg. LLF: 137.4583043911279
Iteration: 12, Func. Count: 163, Neg. LLF: 137.45123664948036
Iteration: 13, Func. Count: 176, Neg. LLF: 137.44419873008766
Iteration: 14, Func. Count: 189, Neg. LLF: 137.42910268546055
Iteration: 15, Func. Count: 202, Neg. LLF: 137.41803736826228
Iteration: 16, Func. Count: 215, Neg. LLF: 137.4124339185836
Iteration: 17, Func. Count: 228, Neg. LLF: 137.41222198771052
Iteration: 18, Func. Count: 241, Neg. LLF: 137.4119129334633
Iteration: 19, Func. Count: 254, Neg. LLF: 137.41186348661978
Iteration: 20, Func. Count: 267, Neg. LLF: 137.4118513122895
Iteration: 21, Func. Count: 280, Neg. LLF: 137.41185003941837
Iteration: 22, Func. Count: 292, Neg. LLF: 137.41185007950486
Optimization terminated successfully (Exit mode 0)
Current function value: 137.41185003941837
Iterations: 22
Function evaluations: 292
Gradient evaluations: 22
Iteration: 1, Func. Count: 15, Neg. LLF: 141.06462990109173
Iteration: 2, Func. Count: 32, Neg. LLF: 140.51859362325047
Iteration: 3, Func. Count: 47, Neg. LLF: 137.67137063188147
Iteration: 4, Func. Count: 61, Neg. LLF: 137.63712362532198
Iteration: 5, Func. Count: 75, Neg. LLF: 137.63539220482787
Iteration: 6, Func. Count: 90, Neg. LLF: 137.60354326238613
Iteration: 7, Func. Count: 104, Neg. LLF: 137.5535036991373
Iteration: 8, Func. Count: 118, Neg. LLF: 137.59886022372214
Iteration: 9, Func. Count: 133, Neg. LLF: 137.51189641496663
Iteration: 10, Func. Count: 147, Neg. LLF: 137.49237715599378
Iteration: 11, Func. Count: 161, Neg. LLF: 137.4714026486305
Iteration: 12, Func. Count: 175, Neg. LLF: 137.45516601857634
Iteration: 13, Func. Count: 189, Neg. LLF: 137.4326846019628
Iteration: 14, Func. Count: 203, Neg. LLF: 137.42202083124783
Iteration: 15, Func. Count: 217, Neg. LLF: 137.41366002379397
Iteration: 16, Func. Count: 231, Neg. LLF: 137.41296319129242
Iteration: 17, Func. Count: 245, Neg. LLF: 137.41185365710885
Iteration: 18, Func. Count: 259, Neg. LLF: 137.4118500278443
Iteration: 19, Func. Count: 272, Neg. LLF: 137.4118500418207
Optimization terminated successfully (Exit mode 0)
Current function value: 137.4118500278443
Iterations: 19
Function evaluations: 272
Gradient evaluations: 19
Iteration: 1, Func. Count: 8, Neg. LLF: 141.50412785724313
Iteration: 2, Func. Count: 16, Neg. LLF: 144.8101452613274
Iteration: 3, Func. Count: 25, Neg. LLF: 138.9212840980453
Iteration: 4, Func. Count: 33, Neg. LLF: 138.14921119824083
Iteration: 5, Func. Count: 40, Neg. LLF: 138.09195419629174
Iteration: 6, Func. Count: 47, Neg. LLF: 138.043041174681
Iteration: 7, Func. Count: 54, Neg. LLF: 137.9931009509627
Iteration: 8, Func. Count: 61, Neg. LLF: 137.9599677671717
Iteration: 9, Func. Count: 68, Neg. LLF: 137.90268354900698
Iteration: 10, Func. Count: 75, Neg. LLF: 137.90165167693036
Iteration: 11, Func. Count: 82, Neg. LLF: 137.90150629046872
Iteration: 12, Func. Count: 89, Neg. LLF: 137.90150202857072
Iteration: 13, Func. Count: 95, Neg. LLF: 137.90150213943483
Optimization terminated successfully (Exit mode 0)
Current function value: 137.90150202857072
Iterations: 13
Function evaluations: 95
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 177.5927661710174
Iteration: 2, Func. Count: 19, Neg. LLF: 137.9064104065107
Iteration: 3, Func. Count: 27, Neg. LLF: 137.90556890841475
Iteration: 4, Func. Count: 35, Neg. LLF: 137.9055558851414
Iteration: 5, Func. Count: 43, Neg. LLF: 137.90555491993914
Optimization terminated successfully (Exit mode 0)
Current function value: 137.90555491993914
Iterations: 5
Function evaluations: 43
Gradient evaluations: 5
Iteration: 1, Func. Count: 10, Neg. LLF: 170.05580063586302
Iteration: 2, Func. Count: 21, Neg. LLF: 137.90596180251092
Iteration: 3, Func. Count: 30, Neg. LLF: 137.90545997070137
Iteration: 4, Func. Count: 39, Neg. LLF: 137.90543416352938
Iteration: 5, Func. Count: 48, Neg. LLF: 137.90543300952382
Iteration: 6, Func. Count: 56, Neg. LLF: 137.90543300951865
Optimization terminated successfully (Exit mode 0)
Current function value: 137.90543300952382
Iterations: 6
Function evaluations: 56
Gradient evaluations: 6
Iteration: 1, Func. Count: 11, Neg. LLF: 164.92682292072274
Iteration: 2, Func. Count: 23, Neg. LLF: 137.90583629695018
Iteration: 3, Func. Count: 33, Neg. LLF: 137.9058630701579
Iteration: 4, Func. Count: 44, Neg. LLF: 137.905423447324
Iteration: 5, Func. Count: 53, Neg. LLF: 137.90542344738896
Optimization terminated successfully (Exit mode 0)
Current function value: 137.905423447324
Iterations: 5
Function evaluations: 53
Gradient evaluations: 5
Iteration: 1, Func. Count: 12, Neg. LLF: 161.15491313968693
Iteration: 2, Func. Count: 25, Neg. LLF: 137.90599836674298
Iteration: 3, Func. Count: 36, Neg. LLF: 137.9064811702511
Iteration: 4, Func. Count: 48, Neg. LLF: 137.90553742782183
Iteration: 5, Func. Count: 58, Neg. LLF: 137.90553742786915
Optimization terminated successfully (Exit mode 0)
Current function value: 137.90553742782183
Iterations: 5
Function evaluations: 58
Gradient evaluations: 5
Iteration: 1, Func. Count: 9, Neg. LLF: 143.43918945387097
Iteration: 2, Func. Count: 18, Neg. LLF: 141.18309984522344
Iteration: 3, Func. Count: 28, Neg. LLF: 142.16093834432922
Iteration: 4, Func. Count: 37, Neg. LLF: 137.82224465874077
Iteration: 5, Func. Count: 45, Neg. LLF: 137.6282800316307
Iteration: 6, Func. Count: 53, Neg. LLF: 137.4924629356834
Iteration: 7, Func. Count: 61, Neg. LLF: 137.45620186289727
Iteration: 8, Func. Count: 69, Neg. LLF: 137.45071503750466
Iteration: 9, Func. Count: 77, Neg. LLF: 137.44760394599166
Iteration: 10, Func. Count: 85, Neg. LLF: 137.44746679440806
Iteration: 11, Func. Count: 93, Neg. LLF: 137.44745937643313
Iteration: 12, Func. Count: 100, Neg. LLF: 137.4474593764494
Optimization terminated successfully (Exit mode 0)
Current function value: 137.44745937643313
Iterations: 12
Function evaluations: 100
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 139.15598156984586
Iteration: 2, Func. Count: 21, Neg. LLF: 137.84385898649523
Iteration: 3, Func. Count: 31, Neg. LLF: 137.6319667587204
Iteration: 4, Func. Count: 40, Neg. LLF: 137.59901046005186
Iteration: 5, Func. Count: 49, Neg. LLF: 137.4626605499284
Iteration: 6, Func. Count: 58, Neg. LLF: 137.47444467573712
Iteration: 7, Func. Count: 68, Neg. LLF: 137.54218033969417
Iteration: 8, Func. Count: 78, Neg. LLF: 137.43702536578857
Iteration: 9, Func. Count: 87, Neg. LLF: 137.43679056457455
Iteration: 10, Func. Count: 96, Neg. LLF: 137.43677781585538
Iteration: 11, Func. Count: 105, Neg. LLF: 137.43676640510984
Iteration: 12, Func. Count: 114, Neg. LLF: 137.43676351430824
Iteration: 13, Func. Count: 122, Neg. LLF: 137.43676351431282
Optimization terminated successfully (Exit mode 0)
Current function value: 137.43676351430824
Iterations: 13
Function evaluations: 122
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 161.47563499202204
Iteration: 2, Func. Count: 23, Neg. LLF: 137.9420439994649
Iteration: 3, Func. Count: 34, Neg. LLF: 137.64379488510318
Iteration: 4, Func. Count: 44, Neg. LLF: 137.63127564856526
Iteration: 5, Func. Count: 54, Neg. LLF: 137.57145530283762
Iteration: 6, Func. Count: 64, Neg. LLF: 137.52913770610826
Iteration: 7, Func. Count: 74, Neg. LLF: 137.48440842086305
Iteration: 8, Func. Count: 84, Neg. LLF: 137.4765640910189
Iteration: 9, Func. Count: 94, Neg. LLF: 137.53114279851349
Iteration: 10, Func. Count: 105, Neg. LLF: 137.44602989313927
Iteration: 11, Func. Count: 115, Neg. LLF: 137.44066314644837
Iteration: 12, Func. Count: 125, Neg. LLF: 137.4442007003554
Iteration: 13, Func. Count: 136, Neg. LLF: 137.43713291712484
Iteration: 14, Func. Count: 146, Neg. LLF: 137.43683056152085
Iteration: 15, Func. Count: 156, Neg. LLF: 137.4367635280322
Iteration: 16, Func. Count: 165, Neg. LLF: 137.43676354858775
Optimization terminated successfully (Exit mode 0)
Current function value: 137.4367635280322
Iterations: 16
Function evaluations: 165
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 152.01603279368507
Iteration: 2, Func. Count: 25, Neg. LLF: 137.72318898692635
Iteration: 3, Func. Count: 36, Neg. LLF: 137.63524261111684
Iteration: 4, Func. Count: 47, Neg. LLF: 137.6481148810687
Iteration: 5, Func. Count: 59, Neg. LLF: 137.60235628393588
Iteration: 6, Func. Count: 70, Neg. LLF: 137.50813191825483
Iteration: 7, Func. Count: 81, Neg. LLF: 137.4782586282053
Iteration: 8, Func. Count: 92, Neg. LLF: 137.45590463731543
Iteration: 9, Func. Count: 103, Neg. LLF: 137.48951256887062
Iteration: 10, Func. Count: 115, Neg. LLF: 137.44348972966927
Iteration: 11, Func. Count: 126, Neg. LLF: 137.43687421638577
Iteration: 12, Func. Count: 137, Neg. LLF: 137.4368209476753
Iteration: 13, Func. Count: 148, Neg. LLF: 137.43677821963556
Iteration: 14, Func. Count: 159, Neg. LLF: 137.43676501078406
Iteration: 15, Func. Count: 170, Neg. LLF: 137.43676335804355
Iteration: 16, Func. Count: 180, Neg. LLF: 137.43676339761174
Optimization terminated successfully (Exit mode 0)
Current function value: 137.43676335804355
Iterations: 16
Function evaluations: 180
Gradient evaluations: 16
Iteration: 1, Func. Count: 13, Neg. LLF: 147.97513439285714
Iteration: 2, Func. Count: 27, Neg. LLF: 137.84835030457398
Iteration: 3, Func. Count: 40, Neg. LLF: 137.65443345552384
Iteration: 4, Func. Count: 52, Neg. LLF: 137.759606597869
Iteration: 5, Func. Count: 65, Neg. LLF: 137.61090838599404
Iteration: 6, Func. Count: 77, Neg. LLF: 137.5603949236174
Iteration: 7, Func. Count: 89, Neg. LLF: 137.57637711103564
Iteration: 8, Func. Count: 102, Neg. LLF: 137.53184574291802
Iteration: 9, Func. Count: 114, Neg. LLF: 137.48475921575462
Iteration: 10, Func. Count: 126, Neg. LLF: 137.4951847474501
Iteration: 11, Func. Count: 139, Neg. LLF: 137.47491684938436
Iteration: 12, Func. Count: 152, Neg. LLF: 137.44477280073718
Iteration: 13, Func. Count: 164, Neg. LLF: 137.4381432922403
Iteration: 14, Func. Count: 176, Neg. LLF: 137.4372691521893
Iteration: 15, Func. Count: 188, Neg. LLF: 137.4367708373937
Iteration: 16, Func. Count: 200, Neg. LLF: 137.43676340219181
Iteration: 17, Func. Count: 211, Neg. LLF: 137.43676341719163
Optimization terminated successfully (Exit mode 0)
Current function value: 137.43676340219181
Iterations: 17
Function evaluations: 211
Gradient evaluations: 17
Iteration: 1, Func. Count: 10, Neg. LLF: 146.30227123125374
Iteration: 2, Func. Count: 20, Neg. LLF: 142.61491180555993
Iteration: 3, Func. Count: 30, Neg. LLF: 140.14235722969505
Iteration: 4, Func. Count: 40, Neg. LLF: 138.1411624018689
Iteration: 5, Func. Count: 49, Neg. LLF: 138.34625188182488
Iteration: 6, Func. Count: 59, Neg. LLF: 137.63071858462186
Iteration: 7, Func. Count: 68, Neg. LLF: 137.75885217321627
Iteration: 8, Func. Count: 78, Neg. LLF: 137.76828037614752
Iteration: 9, Func. Count: 88, Neg. LLF: 137.4327507207957
Iteration: 10, Func. Count: 97, Neg. LLF: 137.41381169986957
Iteration: 11, Func. Count: 106, Neg. LLF: 137.41199965239156
Iteration: 12, Func. Count: 115, Neg. LLF: 137.4118503117508
Iteration: 13, Func. Count: 123, Neg. LLF: 137.4118503117495
Optimization terminated successfully (Exit mode 0)
Current function value: 137.4118503117508
Iterations: 13
Function evaluations: 123
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 141.41926112531456
Iteration: 2, Func. Count: 23, Neg. LLF: 140.33150335552534
Iteration: 3, Func. Count: 34, Neg. LLF: 137.64242274467227
Iteration: 4, Func. Count: 44, Neg. LLF: 137.64040204166443
Iteration: 5, Func. Count: 55, Neg. LLF: 137.60115618446625
Iteration: 6, Func. Count: 65, Neg. LLF: 137.5344752795685
Iteration: 7, Func. Count: 75, Neg. LLF: 137.6138187617964
Iteration: 8, Func. Count: 86, Neg. LLF: 137.45636513904913
Iteration: 9, Func. Count: 96, Neg. LLF: 137.4493518188387
Iteration: 10, Func. Count: 106, Neg. LLF: 137.66313189394617
Iteration: 11, Func. Count: 117, Neg. LLF: 137.41995787597276
Iteration: 12, Func. Count: 127, Neg. LLF: 137.41439714457292
Iteration: 13, Func. Count: 137, Neg. LLF: 137.41253542167462
Iteration: 14, Func. Count: 147, Neg. LLF: 137.41188392459387
Iteration: 15, Func. Count: 157, Neg. LLF: 137.41186175101512
Iteration: 16, Func. Count: 167, Neg. LLF: 137.41185014684314
Iteration: 17, Func. Count: 176, Neg. LLF: 137.4118501505961
Optimization terminated successfully (Exit mode 0)
Current function value: 137.41185014684314
Iterations: 17
Function evaluations: 176
Gradient evaluations: 17
Iteration: 1, Func. Count: 12, Neg. LLF: 141.0466862220361
Iteration: 2, Func. Count: 26, Neg. LLF: 140.45517076806811
Iteration: 3, Func. Count: 38, Neg. LLF: 137.69224667519933
Iteration: 4, Func. Count: 49, Neg. LLF: 137.63617163395577
Iteration: 5, Func. Count: 60, Neg. LLF: 137.60963973797345
Iteration: 6, Func. Count: 71, Neg. LLF: 137.81420838828925
Iteration: 7, Func. Count: 83, Neg. LLF: 137.6361345919214
Iteration: 8, Func. Count: 95, Neg. LLF: 137.47938897193842
Iteration: 9, Func. Count: 106, Neg. LLF: 137.50850901733904
Iteration: 10, Func. Count: 118, Neg. LLF: 137.4691539209806
Iteration: 11, Func. Count: 130, Neg. LLF: 137.451136097039
Iteration: 12, Func. Count: 141, Neg. LLF: 137.4301303472612
Iteration: 13, Func. Count: 152, Neg. LLF: 137.42090503164437
Iteration: 14, Func. Count: 163, Neg. LLF: 137.4185694125133
Iteration: 15, Func. Count: 174, Neg. LLF: 137.4138734236535
Iteration: 16, Func. Count: 185, Neg. LLF: 137.41226052949958
Iteration: 17, Func. Count: 196, Neg. LLF: 137.41189346805822
Iteration: 18, Func. Count: 207, Neg. LLF: 137.41185377718682
Iteration: 19, Func. Count: 218, Neg. LLF: 137.41185066416355
Iteration: 20, Func. Count: 229, Neg. LLF: 137.41184993743423
Optimization terminated successfully (Exit mode 0)
Current function value: 137.41184993743423
Iterations: 20
Function evaluations: 229
Gradient evaluations: 20
Iteration: 1, Func. Count: 13, Neg. LLF: 140.5440076635746
Iteration: 2, Func. Count: 28, Neg. LLF: 140.52018784577575
Iteration: 3, Func. Count: 41, Neg. LLF: 137.71667148283387
Iteration: 4, Func. Count: 53, Neg. LLF: 137.6571712094669
Iteration: 5, Func. Count: 65, Neg. LLF: 137.64045195222064
Iteration: 6, Func. Count: 77, Neg. LLF: 137.56152091706457
Iteration: 7, Func. Count: 89, Neg. LLF: 137.74109516855896
Iteration: 8, Func. Count: 102, Neg. LLF: 137.65975079084765
Iteration: 9, Func. Count: 115, Neg. LLF: 137.47240153567122
Iteration: 10, Func. Count: 127, Neg. LLF: 137.51795034766096
Iteration: 11, Func. Count: 140, Neg. LLF: 137.45619766003426
Iteration: 12, Func. Count: 152, Neg. LLF: 137.44479403376067
Iteration: 13, Func. Count: 164, Neg. LLF: 137.42580251832558
Iteration: 14, Func. Count: 176, Neg. LLF: 137.41998555809164
Iteration: 15, Func. Count: 188, Neg. LLF: 137.41654276174154
Iteration: 16, Func. Count: 200, Neg. LLF: 137.41323245380917
Iteration: 17, Func. Count: 212, Neg. LLF: 137.4124581803324
Iteration: 18, Func. Count: 224, Neg. LLF: 137.41195379592406
Iteration: 19, Func. Count: 236, Neg. LLF: 137.41186586778986
Iteration: 20, Func. Count: 248, Neg. LLF: 137.41185011833866
Iteration: 21, Func. Count: 259, Neg. LLF: 137.41185015840392
Optimization terminated successfully (Exit mode 0)
Current function value: 137.41185011833866
Iterations: 21
Function evaluations: 259
Gradient evaluations: 21
Iteration: 1, Func. Count: 14, Neg. LLF: 139.58928522274178
Iteration: 2, Func. Count: 30, Neg. LLF: 140.39554512426628
Iteration: 3, Func. Count: 44, Neg. LLF: 137.67162713904327
Iteration: 4, Func. Count: 57, Neg. LLF: 137.65217905144183
Iteration: 5, Func. Count: 70, Neg. LLF: 137.6338714455326
Iteration: 6, Func. Count: 83, Neg. LLF: 137.60806712410042
Iteration: 7, Func. Count: 96, Neg. LLF: 137.5922661932065
Iteration: 8, Func. Count: 109, Neg. LLF: 137.53063809613295
Iteration: 9, Func. Count: 122, Neg. LLF: 137.9076562286505
Iteration: 10, Func. Count: 136, Neg. LLF: 137.50100371725378
Iteration: 11, Func. Count: 149, Neg. LLF: 137.48856845978014
Iteration: 12, Func. Count: 162, Neg. LLF: 137.45590164695628
Iteration: 13, Func. Count: 175, Neg. LLF: 137.44351827551617
Iteration: 14, Func. Count: 188, Neg. LLF: 137.41882667606282
Iteration: 15, Func. Count: 201, Neg. LLF: 137.41568068428725
Iteration: 16, Func. Count: 214, Neg. LLF: 137.4122991817544
Iteration: 17, Func. Count: 227, Neg. LLF: 137.41198641933937
Iteration: 18, Func. Count: 240, Neg. LLF: 137.411889161334
Iteration: 19, Func. Count: 253, Neg. LLF: 137.4118626400355
Iteration: 20, Func. Count: 266, Neg. LLF: 137.4118503007418
Iteration: 21, Func. Count: 278, Neg. LLF: 137.41185031467688
Optimization terminated successfully (Exit mode 0)
Current function value: 137.4118503007418
Iterations: 21
Function evaluations: 278
Gradient evaluations: 21
Iteration: 1, Func. Count: 11, Neg. LLF: 146.01967309291663
Iteration: 2, Func. Count: 22, Neg. LLF: 141.3091177967305
Iteration: 3, Func. Count: 33, Neg. LLF: 140.2093613903114
Iteration: 4, Func. Count: 44, Neg. LLF: 137.8086145739098
Iteration: 5, Func. Count: 54, Neg. LLF: 138.82689105764686
Iteration: 6, Func. Count: 66, Neg. LLF: 139.0666303024494
Iteration: 7, Func. Count: 77, Neg. LLF: 137.51148958803915
Iteration: 8, Func. Count: 87, Neg. LLF: 137.4471177565791
Iteration: 9, Func. Count: 97, Neg. LLF: 137.42141916382081
Iteration: 10, Func. Count: 107, Neg. LLF: 137.41215288428944
Iteration: 11, Func. Count: 117, Neg. LLF: 137.41186972459596
Iteration: 12, Func. Count: 127, Neg. LLF: 137.41185151642537
Iteration: 13, Func. Count: 137, Neg. LLF: 137.4118498525135
Iteration: 14, Func. Count: 146, Neg. LLF: 137.41184989119287
Optimization terminated successfully (Exit mode 0)
Current function value: 137.4118498525135
Iterations: 14
Function evaluations: 146
Gradient evaluations: 14
Iteration: 1, Func. Count: 12, Neg. LLF: 141.90651253243038
Iteration: 2, Func. Count: 25, Neg. LLF: 140.42765672896823
Iteration: 3, Func. Count: 37, Neg. LLF: 137.64951747137493
Iteration: 4, Func. Count: 48, Neg. LLF: 137.64318176151946
Iteration: 5, Func. Count: 60, Neg. LLF: 137.63172486122372
Iteration: 6, Func. Count: 72, Neg. LLF: 137.5668091244665
Iteration: 7, Func. Count: 83, Neg. LLF: 137.74901115682536
Iteration: 8, Func. Count: 95, Neg. LLF: 137.51470940865872
Iteration: 9, Func. Count: 107, Neg. LLF: 137.43903643990427
Iteration: 10, Func. Count: 118, Neg. LLF: 137.4400609885733
Iteration: 11, Func. Count: 130, Neg. LLF: 137.84905487934873
Iteration: 12, Func. Count: 143, Neg. LLF: 137.41374973074107
Iteration: 13, Func. Count: 154, Neg. LLF: 137.4122461330132
Iteration: 14, Func. Count: 165, Neg. LLF: 137.41188301528115
Iteration: 15, Func. Count: 176, Neg. LLF: 137.41185847993623
Iteration: 16, Func. Count: 187, Neg. LLF: 137.41185134442392
Iteration: 17, Func. Count: 198, Neg. LLF: 137.4118499732201
Iteration: 18, Func. Count: 208, Neg. LLF: 137.41184997692946
Optimization terminated successfully (Exit mode 0)
Current function value: 137.4118499732201
Iterations: 18
Function evaluations: 208
Gradient evaluations: 18
Iteration: 1, Func. Count: 13, Neg. LLF: 141.880688799371
Iteration: 2, Func. Count: 28, Neg. LLF: 140.57411172980773
Iteration: 3, Func. Count: 41, Neg. LLF: 137.6913963737892
Iteration: 4, Func. Count: 53, Neg. LLF: 137.63320971767806
Iteration: 5, Func. Count: 65, Neg. LLF: 137.63454329510228
Iteration: 6, Func. Count: 78, Neg. LLF: 137.60992372350717
Iteration: 7, Func. Count: 90, Neg. LLF: 138.15790136899687
Iteration: 8, Func. Count: 103, Neg. LLF: 137.92545774048648
Iteration: 9, Func. Count: 116, Neg. LLF: 137.54904898459574
Iteration: 10, Func. Count: 128, Neg. LLF: 137.51776058837387
Iteration: 11, Func. Count: 140, Neg. LLF: 137.4873594188702
Iteration: 12, Func. Count: 152, Neg. LLF: 137.4613596964459
Iteration: 13, Func. Count: 164, Neg. LLF: 137.4460722581445
Iteration: 14, Func. Count: 176, Neg. LLF: 137.42900679630026
Iteration: 15, Func. Count: 188, Neg. LLF: 137.4285127332976
Iteration: 16, Func. Count: 201, Neg. LLF: 137.41272265472486
Iteration: 17, Func. Count: 213, Neg. LLF: 137.41212242351196
Iteration: 18, Func. Count: 225, Neg. LLF: 137.41194452070326
Iteration: 19, Func. Count: 237, Neg. LLF: 137.41185379117113
Iteration: 20, Func. Count: 249, Neg. LLF: 137.41185008846543
Iteration: 21, Func. Count: 260, Neg. LLF: 137.41185010867065
Optimization terminated successfully (Exit mode 0)
Current function value: 137.41185008846543
Iterations: 21
Function evaluations: 260
Gradient evaluations: 21
Iteration: 1, Func. Count: 14, Neg. LLF: 140.69451974938983
Iteration: 2, Func. Count: 30, Neg. LLF: 140.51403395275653
Iteration: 3, Func. Count: 44, Neg. LLF: 137.72086780401696
Iteration: 4, Func. Count: 57, Neg. LLF: 137.65785390582874
Iteration: 5, Func. Count: 70, Neg. LLF: 137.64218415627303
Iteration: 6, Func. Count: 83, Neg. LLF: 137.5673453728745
Iteration: 7, Func. Count: 96, Neg. LLF: 137.70861762516202
Iteration: 8, Func. Count: 110, Neg. LLF: 137.6492921499165
Iteration: 9, Func. Count: 124, Neg. LLF: 137.46948746748782
Iteration: 10, Func. Count: 137, Neg. LLF: 137.51010534787628
Iteration: 11, Func. Count: 151, Neg. LLF: 137.45631511319564
Iteration: 12, Func. Count: 164, Neg. LLF: 137.43475958335102
Iteration: 13, Func. Count: 177, Neg. LLF: 137.44029706093858
Iteration: 14, Func. Count: 191, Neg. LLF: 137.41917280948675
Iteration: 15, Func. Count: 204, Neg. LLF: 137.41375917358147
Iteration: 16, Func. Count: 217, Neg. LLF: 137.4129378384194
Iteration: 17, Func. Count: 230, Neg. LLF: 137.41193685495625
Iteration: 18, Func. Count: 243, Neg. LLF: 137.41186848279767
Iteration: 19, Func. Count: 256, Neg. LLF: 137.41185435388735
Iteration: 20, Func. Count: 269, Neg. LLF: 137.4118509178241
Iteration: 21, Func. Count: 282, Neg. LLF: 137.41184990663444
Iteration: 22, Func. Count: 294, Neg. LLF: 137.4118499467359
Optimization terminated successfully (Exit mode 0)
Current function value: 137.41184990663444
Iterations: 22
Function evaluations: 294
Gradient evaluations: 22
Iteration: 1, Func. Count: 15, Neg. LLF: 141.03413780570867
Iteration: 2, Func. Count: 32, Neg. LLF: 140.5265312217337
Iteration: 3, Func. Count: 47, Neg. LLF: 137.6773248950443
Iteration: 4, Func. Count: 61, Neg. LLF: 137.63890587826575
Iteration: 5, Func. Count: 75, Neg. LLF: 137.63390383637966
Iteration: 6, Func. Count: 89, Neg. LLF: 137.60671311616176
Iteration: 7, Func. Count: 103, Neg. LLF: 137.57844735588182
Iteration: 8, Func. Count: 117, Neg. LLF: 137.90775142060536
Iteration: 9, Func. Count: 132, Neg. LLF: 137.67727200837945
Iteration: 10, Func. Count: 147, Neg. LLF: 137.50427811516653
Iteration: 11, Func. Count: 161, Neg. LLF: 137.4851583069851
Iteration: 12, Func. Count: 175, Neg. LLF: 137.47011144661792
Iteration: 13, Func. Count: 189, Neg. LLF: 137.44273813656523
Iteration: 14, Func. Count: 203, Neg. LLF: 137.42580872734752
Iteration: 15, Func. Count: 217, Neg. LLF: 137.420154689038
Iteration: 16, Func. Count: 231, Neg. LLF: 137.41412516728434
Iteration: 17, Func. Count: 245, Neg. LLF: 137.4128382370731
Iteration: 18, Func. Count: 259, Neg. LLF: 137.4119962522748
Iteration: 19, Func. Count: 273, Neg. LLF: 137.41192305947732
Iteration: 20, Func. Count: 287, Neg. LLF: 137.41185071639836
Iteration: 21, Func. Count: 301, Neg. LLF: 137.4118498737781
Optimization terminated successfully (Exit mode 0)
Current function value: 137.4118498737781
Iterations: 21
Function evaluations: 301
Gradient evaluations: 21
Iteration: 1, Func. Count: 12, Neg. LLF: 145.1822570918713
Iteration: 2, Func. Count: 24, Neg. LLF: 141.16378153743355
Iteration: 3, Func. Count: 36, Neg. LLF: 141.14401985291835
Iteration: 4, Func. Count: 48, Neg. LLF: 137.84917128831125
Iteration: 5, Func. Count: 59, Neg. LLF: 139.21402038384974
Iteration: 6, Func. Count: 71, Neg. LLF: 138.53713286069302
Iteration: 7, Func. Count: 83, Neg. LLF: 137.49265028603364
Iteration: 8, Func. Count: 94, Neg. LLF: 137.64543328483498
Iteration: 9, Func. Count: 106, Neg. LLF: 137.4340525357894
Iteration: 10, Func. Count: 117, Neg. LLF: 137.4151402479402
Iteration: 11, Func. Count: 128, Neg. LLF: 137.41210545598528
Iteration: 12, Func. Count: 139, Neg. LLF: 137.41185901624604
Iteration: 13, Func. Count: 150, Neg. LLF: 137.4118499600981
Iteration: 14, Func. Count: 160, Neg. LLF: 137.4118500677319
Optimization terminated successfully (Exit mode 0)
Current function value: 137.4118499600981
Iterations: 14
Function evaluations: 160
Gradient evaluations: 14
Iteration: 1, Func. Count: 13, Neg. LLF: 141.8586204380252
Iteration: 2, Func. Count: 27, Neg. LLF: 140.42566538631482
Iteration: 3, Func. Count: 40, Neg. LLF: 137.65039683497614
Iteration: 4, Func. Count: 52, Neg. LLF: 137.6735544616277
Iteration: 5, Func. Count: 65, Neg. LLF: 137.62132926190762
Iteration: 6, Func. Count: 78, Neg. LLF: 137.5702162697672
Iteration: 7, Func. Count: 90, Neg. LLF: 137.781854758488
Iteration: 8, Func. Count: 103, Neg. LLF: 137.51432148770306
Iteration: 9, Func. Count: 116, Neg. LLF: 137.44169541095064
Iteration: 10, Func. Count: 128, Neg. LLF: 137.46568335296902
Iteration: 11, Func. Count: 141, Neg. LLF: 137.41676520283121
Iteration: 12, Func. Count: 153, Neg. LLF: 137.41259794689216
Iteration: 13, Func. Count: 165, Neg. LLF: 137.4118938952554
Iteration: 14, Func. Count: 177, Neg. LLF: 137.41186282837953
Iteration: 15, Func. Count: 189, Neg. LLF: 137.41185210486634
Iteration: 16, Func. Count: 201, Neg. LLF: 137.4118500179224
Iteration: 17, Func. Count: 212, Neg. LLF: 137.41185002165872
Optimization terminated successfully (Exit mode 0)
Current function value: 137.4118500179224
Iterations: 17
Function evaluations: 212
Gradient evaluations: 17
Iteration: 1, Func. Count: 14, Neg. LLF: 141.83367531801113
Iteration: 2, Func. Count: 30, Neg. LLF: 140.5698219532793
Iteration: 3, Func. Count: 44, Neg. LLF: 137.6887437267284
Iteration: 4, Func. Count: 57, Neg. LLF: 137.63238583443115
Iteration: 5, Func. Count: 70, Neg. LLF: 137.6222135771965
Iteration: 6, Func. Count: 83, Neg. LLF: 138.1268976824492
Iteration: 7, Func. Count: 97, Neg. LLF: 137.98435391345498
Iteration: 8, Func. Count: 111, Neg. LLF: 138.08556086179635
Iteration: 9, Func. Count: 125, Neg. LLF: 137.60246432140195
Iteration: 10, Func. Count: 139, Neg. LLF: 137.52287082027902
Iteration: 11, Func. Count: 152, Neg. LLF: 137.47050365193658
Iteration: 12, Func. Count: 165, Neg. LLF: 137.46187847869436
Iteration: 13, Func. Count: 178, Neg. LLF: 137.45229933338413
Iteration: 14, Func. Count: 191, Neg. LLF: 137.43843829370402
Iteration: 15, Func. Count: 204, Neg. LLF: 137.41939021350444
Iteration: 16, Func. Count: 217, Neg. LLF: 137.41229168284124
Iteration: 17, Func. Count: 230, Neg. LLF: 137.41190837241217
Iteration: 18, Func. Count: 243, Neg. LLF: 137.41187119572692
Iteration: 19, Func. Count: 256, Neg. LLF: 137.4118521626579
Iteration: 20, Func. Count: 269, Neg. LLF: 137.41185052339395
Iteration: 21, Func. Count: 282, Neg. LLF: 137.4118498576495
Optimization terminated successfully (Exit mode 0)
Current function value: 137.4118498576495
Iterations: 21
Function evaluations: 282
Gradient evaluations: 21
Iteration: 1, Func. Count: 15, Neg. LLF: 141.0390518838475
Iteration: 2, Func. Count: 32, Neg. LLF: 140.518064997044
Iteration: 3, Func. Count: 47, Neg. LLF: 137.72165713890593
Iteration: 4, Func. Count: 61, Neg. LLF: 137.65971512571076
Iteration: 5, Func. Count: 75, Neg. LLF: 137.64233546073046
Iteration: 6, Func. Count: 89, Neg. LLF: 137.5667755411003
Iteration: 7, Func. Count: 103, Neg. LLF: 137.8220345000501
Iteration: 8, Func. Count: 118, Neg. LLF: 137.70370863653204
Iteration: 9, Func. Count: 133, Neg. LLF: 137.48383095546896
Iteration: 10, Func. Count: 147, Neg. LLF: 137.48623995296074
Iteration: 11, Func. Count: 162, Neg. LLF: 137.46104826181983
Iteration: 12, Func. Count: 176, Neg. LLF: 137.4516206987006
Iteration: 13, Func. Count: 190, Neg. LLF: 137.4421108786854
Iteration: 14, Func. Count: 204, Neg. LLF: 137.42727877571275
Iteration: 15, Func. Count: 218, Neg. LLF: 137.41789567728554
Iteration: 16, Func. Count: 232, Neg. LLF: 137.4130362102376
Iteration: 17, Func. Count: 246, Neg. LLF: 137.41258617036067
Iteration: 18, Func. Count: 260, Neg. LLF: 137.4119617356382
Iteration: 19, Func. Count: 274, Neg. LLF: 137.4118621976586
Iteration: 20, Func. Count: 288, Neg. LLF: 137.41184998642302
Iteration: 21, Func. Count: 301, Neg. LLF: 137.4118500265079
Optimization terminated successfully (Exit mode 0)
Current function value: 137.41184998642302
Iterations: 21
Function evaluations: 301
Gradient evaluations: 21
Iteration: 1, Func. Count: 16, Neg. LLF: 141.10906178672337
Iteration: 2, Func. Count: 34, Neg. LLF: 140.52570805311473
Iteration: 3, Func. Count: 50, Neg. LLF: 137.67668206278805
Iteration: 4, Func. Count: 65, Neg. LLF: 137.64029956796367
Iteration: 5, Func. Count: 80, Neg. LLF: 137.6350435152888
Iteration: 6, Func. Count: 95, Neg. LLF: 137.6079187832309
Iteration: 7, Func. Count: 110, Neg. LLF: 137.57914805156858
Iteration: 8, Func. Count: 125, Neg. LLF: 137.86339995604854
Iteration: 9, Func. Count: 141, Neg. LLF: 137.72890973109284
Iteration: 10, Func. Count: 157, Neg. LLF: 137.49840016050175
Iteration: 11, Func. Count: 172, Neg. LLF: 137.50978811043586
Iteration: 12, Func. Count: 188, Neg. LLF: 137.4720715622889
Iteration: 13, Func. Count: 203, Neg. LLF: 137.45184882141487
Iteration: 14, Func. Count: 218, Neg. LLF: 137.42959643296086
Iteration: 15, Func. Count: 233, Neg. LLF: 137.42429547608506
Iteration: 16, Func. Count: 248, Neg. LLF: 137.41417512413867
Iteration: 17, Func. Count: 263, Neg. LLF: 137.4121062191301
Iteration: 18, Func. Count: 278, Neg. LLF: 137.41185121594017
Iteration: 19, Func. Count: 293, Neg. LLF: 137.4118498651507
Iteration: 20, Func. Count: 307, Neg. LLF: 137.4118498791218
Optimization terminated successfully (Exit mode 0)
Current function value: 137.4118498651507
Iterations: 20
Function evaluations: 307
Gradient evaluations: 20
Iteration: 1, Func. Count: 5, Neg. LLF: 142.49940724128925
Iteration: 2, Func. Count: 10, Neg. LLF: 149.39740895271663
Iteration: 3, Func. Count: 15, Neg. LLF: 137.93025159769908
Iteration: 4, Func. Count: 19, Neg. LLF: 137.55278565717168
Iteration: 5, Func. Count: 23, Neg. LLF: 137.5404673450572
Iteration: 6, Func. Count: 28, Neg. LLF: 137.48051043090078
Iteration: 7, Func. Count: 32, Neg. LLF: 137.4795117835476
Iteration: 8, Func. Count: 36, Neg. LLF: 137.4792626811645
Iteration: 9, Func. Count: 40, Neg. LLF: 137.47910697058177
Iteration: 10, Func. Count: 44, Neg. LLF: 137.47910630010813
Optimization terminated successfully (Exit mode 0)
Current function value: 137.47910630010813
Iterations: 10
Function evaluations: 44
Gradient evaluations: 10
Iteration: 1, Func. Count: 5, Neg. LLF: 146.8461449197276
Iteration: 2, Func. Count: 10, Neg. LLF: 153.861164671793
Iteration: 3, Func. Count: 15, Neg. LLF: 143.89952147162538
Iteration: 4, Func. Count: 19, Neg. LLF: 143.5371071811326
Iteration: 5, Func. Count: 23, Neg. LLF: 143.41521886212342
Iteration: 6, Func. Count: 27, Neg. LLF: 143.38478449293504
Iteration: 7, Func. Count: 31, Neg. LLF: 143.38155923871992
Iteration: 8, Func. Count: 35, Neg. LLF: 143.37780881300498
Iteration: 9, Func. Count: 39, Neg. LLF: 143.3777825790445
Iteration: 10, Func. Count: 43, Neg. LLF: 143.3777814510885
Iteration: 11, Func. Count: 46, Neg. LLF: 143.37778145109576
Optimization terminated successfully (Exit mode 0)
Current function value: 143.3777814510885
Iterations: 11
Function evaluations: 46
Gradient evaluations: 11
Iteration: 1, Func. Count: 6, Neg. LLF: 146.0927220661903
Iteration: 2, Func. Count: 12, Neg. LLF: 145.72403518045712
Iteration: 3, Func. Count: 18, Neg. LLF: 145.26962239702826
Iteration: 4, Func. Count: 24, Neg. LLF: 143.14452882740477
Iteration: 5, Func. Count: 29, Neg. LLF: 143.14264076390918
Iteration: 6, Func. Count: 34, Neg. LLF: 143.14110644488116
Iteration: 7, Func. Count: 39, Neg. LLF: 143.14027622453588
Iteration: 8, Func. Count: 44, Neg. LLF: 143.13823122360316
Iteration: 9, Func. Count: 49, Neg. LLF: 143.1363671677475
Iteration: 10, Func. Count: 54, Neg. LLF: 143.13516721819073
Iteration: 11, Func. Count: 59, Neg. LLF: 143.13494242721023
Iteration: 12, Func. Count: 64, Neg. LLF: 143.1349298720244
Iteration: 13, Func. Count: 68, Neg. LLF: 143.1349298720384
Optimization terminated successfully (Exit mode 0)
Current function value: 143.1349298720244
Iterations: 13
Function evaluations: 68
Gradient evaluations: 13
Iteration: 1, Func. Count: 7, Neg. LLF: 145.51387205556495
Iteration: 2, Func. Count: 14, Neg. LLF: 146.00866962889157
Iteration: 3, Func. Count: 21, Neg. LLF: 143.59332153475515
Iteration: 4, Func. Count: 28, Neg. LLF: 143.14762122359153
Iteration: 5, Func. Count: 34, Neg. LLF: 143.1439537134196
Iteration: 6, Func. Count: 40, Neg. LLF: 143.14195097827644
Iteration: 7, Func. Count: 46, Neg. LLF: 143.14098560017294
Iteration: 8, Func. Count: 52, Neg. LLF: 143.13978147847743
Iteration: 9, Func. Count: 58, Neg. LLF: 143.1379090007445
Iteration: 10, Func. Count: 64, Neg. LLF: 143.13602614104653
Iteration: 11, Func. Count: 70, Neg. LLF: 143.1350754072953
Iteration: 12, Func. Count: 76, Neg. LLF: 143.13493687870505
Iteration: 13, Func. Count: 82, Neg. LLF: 143.1349296338178
Iteration: 14, Func. Count: 87, Neg. LLF: 143.13492966162443
Optimization terminated successfully (Exit mode 0)
Current function value: 143.1349296338178
Iterations: 14
Function evaluations: 87
Gradient evaluations: 14
Iteration: 1, Func. Count: 8, Neg. LLF: 145.38255128390608
Iteration: 2, Func. Count: 16, Neg. LLF: 144.05042664974454
Iteration: 3, Func. Count: 25, Neg. LLF: 143.41157036763965
Iteration: 4, Func. Count: 32, Neg. LLF: 143.14822453365517
Iteration: 5, Func. Count: 39, Neg. LLF: 143.14350172873537
Iteration: 6, Func. Count: 46, Neg. LLF: 143.14195310138751
Iteration: 7, Func. Count: 53, Neg. LLF: 143.14088624923104
Iteration: 8, Func. Count: 60, Neg. LLF: 143.13966596737004
Iteration: 9, Func. Count: 67, Neg. LLF: 143.13787502805718
Iteration: 10, Func. Count: 74, Neg. LLF: 143.1360636117716
Iteration: 11, Func. Count: 81, Neg. LLF: 143.13509548115647
Iteration: 12, Func. Count: 88, Neg. LLF: 143.13493900912658
Iteration: 13, Func. Count: 95, Neg. LLF: 143.1349297527634
Iteration: 14, Func. Count: 101, Neg. LLF: 143.13492978706637
Optimization terminated successfully (Exit mode 0)
Current function value: 143.1349297527634
Iterations: 14
Function evaluations: 101
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 145.41397870008646
Iteration: 2, Func. Count: 18, Neg. LLF: 143.6733794057465
Iteration: 3, Func. Count: 28, Neg. LLF: 143.38736239317126
Iteration: 4, Func. Count: 36, Neg. LLF: 143.1503778757616
Iteration: 5, Func. Count: 44, Neg. LLF: 143.14314549949708
Iteration: 6, Func. Count: 52, Neg. LLF: 143.14239535832596
Iteration: 7, Func. Count: 60, Neg. LLF: 143.14055620766163
Iteration: 8, Func. Count: 68, Neg. LLF: 143.13828878788937
Iteration: 9, Func. Count: 76, Neg. LLF: 143.13601846949592
Iteration: 10, Func. Count: 84, Neg. LLF: 143.13504866118515
Iteration: 11, Func. Count: 92, Neg. LLF: 143.13493320103242
Iteration: 12, Func. Count: 100, Neg. LLF: 143.1349295130286
Iteration: 13, Func. Count: 107, Neg. LLF: 143.13492952235347
Optimization terminated successfully (Exit mode 0)
Current function value: 143.1349295130286
Iterations: 13
Function evaluations: 107
Gradient evaluations: 13
Iteration: 1, Func. Count: 6, Neg. LLF: 149.93297496445257
Iteration: 2, Func. Count: 12, Neg. LLF: 145.10144559114386
Iteration: 3, Func. Count: 18, Neg. LLF: 150.06830036524156
Iteration: 4, Func. Count: 24, Neg. LLF: 143.2919236890836
Iteration: 5, Func. Count: 29, Neg. LLF: 143.44251850806208
Iteration: 6, Func. Count: 35, Neg. LLF: 143.0973946540624
Iteration: 7, Func. Count: 40, Neg. LLF: 143.0698865616182
Iteration: 8, Func. Count: 45, Neg. LLF: 143.06330149126322
Iteration: 9, Func. Count: 50, Neg. LLF: 143.05480481627706
Iteration: 10, Func. Count: 55, Neg. LLF: 143.05438736391935
Iteration: 11, Func. Count: 60, Neg. LLF: 143.05392873283253
Iteration: 12, Func. Count: 65, Neg. LLF: 143.05391713942882
Iteration: 13, Func. Count: 70, Neg. LLF: 143.0539164039729
Optimization terminated successfully (Exit mode 0)
Current function value: 143.0539164039729
Iterations: 13
Function evaluations: 70
Gradient evaluations: 13
Iteration: 1, Func. Count: 7, Neg. LLF: 146.911639706436
Iteration: 2, Func. Count: 14, Neg. LLF: 145.91793886296114
Iteration: 3, Func. Count: 21, Neg. LLF: 146.23493901385498
Iteration: 4, Func. Count: 29, Neg. LLF: 143.13877614964616
Iteration: 5, Func. Count: 35, Neg. LLF: 143.13447771681373
Iteration: 6, Func. Count: 41, Neg. LLF: 143.13228652073857
Iteration: 7, Func. Count: 47, Neg. LLF: 143.1264375650821
Iteration: 8, Func. Count: 53, Neg. LLF: 143.11945639676077
Iteration: 9, Func. Count: 59, Neg. LLF: 143.10444741401528
Iteration: 10, Func. Count: 65, Neg. LLF: 143.07520795619916
Iteration: 11, Func. Count: 71, Neg. LLF: 143.06273981611815
Iteration: 12, Func. Count: 77, Neg. LLF: 143.05520952053962
Iteration: 13, Func. Count: 83, Neg. LLF: 143.0540592225627
Iteration: 14, Func. Count: 89, Neg. LLF: 143.053922900694
Iteration: 15, Func. Count: 95, Neg. LLF: 143.0539164808383
Iteration: 16, Func. Count: 100, Neg. LLF: 143.05391648355013
Optimization terminated successfully (Exit mode 0)
Current function value: 143.0539164808383
Iterations: 16
Function evaluations: 100
Gradient evaluations: 16
Iteration: 1, Func. Count: 8, Neg. LLF: 146.8539579516374
Iteration: 2, Func. Count: 16, Neg. LLF: 145.84210648343375
Iteration: 3, Func. Count: 24, Neg. LLF: 155.4438797251055
Iteration: 4, Func. Count: 33, Neg. LLF: 143.51589127000003
Iteration: 5, Func. Count: 41, Neg. LLF: 143.13500004492712
Iteration: 6, Func. Count: 48, Neg. LLF: 143.13233356174683
Iteration: 7, Func. Count: 55, Neg. LLF: 143.12273258019533
Iteration: 8, Func. Count: 62, Neg. LLF: 143.1074187030873
Iteration: 9, Func. Count: 69, Neg. LLF: 143.07304586280765
Iteration: 10, Func. Count: 76, Neg. LLF: 143.05654953866474
Iteration: 11, Func. Count: 83, Neg. LLF: 143.05460336117653
Iteration: 12, Func. Count: 90, Neg. LLF: 143.05396117440165
Iteration: 13, Func. Count: 97, Neg. LLF: 143.0539362486916
Iteration: 14, Func. Count: 104, Neg. LLF: 143.0539187535206
Iteration: 15, Func. Count: 111, Neg. LLF: 143.05391690282798
Iteration: 16, Func. Count: 117, Neg. LLF: 143.05391692470783
Optimization terminated successfully (Exit mode 0)
Current function value: 143.05391690282798
Iterations: 16
Function evaluations: 117
Gradient evaluations: 16
Iteration: 1, Func. Count: 9, Neg. LLF: 146.78691241376575
Iteration: 2, Func. Count: 18, Neg. LLF: 145.9402940677426
Iteration: 3, Func. Count: 27, Neg. LLF: 158.68848740259958
Iteration: 4, Func. Count: 37, Neg. LLF: 143.53078424720186
Iteration: 5, Func. Count: 46, Neg. LLF: 143.14134601549637
Iteration: 6, Func. Count: 54, Neg. LLF: 143.1336213465386
Iteration: 7, Func. Count: 62, Neg. LLF: 143.12877499980735
Iteration: 8, Func. Count: 70, Neg. LLF: 143.12360977682687
Iteration: 9, Func. Count: 78, Neg. LLF: 143.11438769560658
Iteration: 10, Func. Count: 86, Neg. LLF: 143.0996155899028
Iteration: 11, Func. Count: 94, Neg. LLF: 143.07634491730644
Iteration: 12, Func. Count: 102, Neg. LLF: 143.05967266053707
Iteration: 13, Func. Count: 110, Neg. LLF: 143.05531198627497
Iteration: 14, Func. Count: 118, Neg. LLF: 143.05423841557248
Iteration: 15, Func. Count: 126, Neg. LLF: 143.05391797409013
Iteration: 16, Func. Count: 134, Neg. LLF: 143.05391643164435
Iteration: 17, Func. Count: 141, Neg. LLF: 143.0539164673491
Optimization terminated successfully (Exit mode 0)
Current function value: 143.05391643164435
Iterations: 17
Function evaluations: 141
Gradient evaluations: 17
Iteration: 1, Func. Count: 10, Neg. LLF: 146.8148459159817
Iteration: 2, Func. Count: 20, Neg. LLF: 145.93019139309425
Iteration: 3, Func. Count: 30, Neg. LLF: 160.50475598558063
Iteration: 4, Func. Count: 41, Neg. LLF: 143.55530740325707
Iteration: 5, Func. Count: 51, Neg. LLF: 143.14218660469294
Iteration: 6, Func. Count: 60, Neg. LLF: 143.13913917736244
Iteration: 7, Func. Count: 69, Neg. LLF: 143.14573669388412
Iteration: 8, Func. Count: 79, Neg. LLF: 143.12755380291827
Iteration: 9, Func. Count: 88, Neg. LLF: 143.12381423794594
Iteration: 10, Func. Count: 97, Neg. LLF: 143.10924674866004
Iteration: 11, Func. Count: 106, Neg. LLF: 143.08514529578298
Iteration: 12, Func. Count: 115, Neg. LLF: 143.06469492230664
Iteration: 13, Func. Count: 124, Neg. LLF: 143.05666969481135
Iteration: 14, Func. Count: 133, Neg. LLF: 143.05415695559648
Iteration: 15, Func. Count: 142, Neg. LLF: 143.05393304640592
Iteration: 16, Func. Count: 151, Neg. LLF: 143.0539169374111
Iteration: 17, Func. Count: 159, Neg. LLF: 143.05391694908047
Optimization terminated successfully (Exit mode 0)
Current function value: 143.0539169374111
Iterations: 17
Function evaluations: 159
Gradient evaluations: 17
Iteration: 1, Func. Count: 7, Neg. LLF: 152.198726120432
Iteration: 2, Func. Count: 14, Neg. LLF: 145.26672405081538
Iteration: 3, Func. Count: 21, Neg. LLF: 166.93592802501044
Iteration: 4, Func. Count: 28, Neg. LLF: 143.44972594352166
Iteration: 5, Func. Count: 34, Neg. LLF: 143.9495985921849
Iteration: 6, Func. Count: 41, Neg. LLF: 143.2404739436087
Iteration: 7, Func. Count: 48, Neg. LLF: 143.10326683516612
Iteration: 8, Func. Count: 54, Neg. LLF: 143.06573014056252
Iteration: 9, Func. Count: 60, Neg. LLF: 143.0609647748857
Iteration: 10, Func. Count: 66, Neg. LLF: 143.0554479478074
Iteration: 11, Func. Count: 72, Neg. LLF: 143.0543621569534
Iteration: 12, Func. Count: 78, Neg. LLF: 143.05393340298673
Iteration: 13, Func. Count: 84, Neg. LLF: 143.05391651147823
Iteration: 14, Func. Count: 89, Neg. LLF: 143.0539165262356
Optimization terminated successfully (Exit mode 0)
Current function value: 143.05391651147823
Iterations: 14
Function evaluations: 89
Gradient evaluations: 14
Iteration: 1, Func. Count: 8, Neg. LLF: 147.11475393423507
Iteration: 2, Func. Count: 16, Neg. LLF: 145.88704265622553
Iteration: 3, Func. Count: 24, Neg. LLF: 149.70602654679806
Iteration: 4, Func. Count: 33, Neg. LLF: 143.24709980512526
Iteration: 5, Func. Count: 41, Neg. LLF: 143.1369180964883
Iteration: 6, Func. Count: 48, Neg. LLF: 143.13164746538237
Iteration: 7, Func. Count: 55, Neg. LLF: 143.12430749816917
Iteration: 8, Func. Count: 62, Neg. LLF: 143.11965134049728
Iteration: 9, Func. Count: 69, Neg. LLF: 143.10006014017162
Iteration: 10, Func. Count: 76, Neg. LLF: 143.07193674391362
Iteration: 11, Func. Count: 83, Neg. LLF: 143.05811613157016
Iteration: 12, Func. Count: 90, Neg. LLF: 143.0545585095283
Iteration: 13, Func. Count: 97, Neg. LLF: 143.05393400900613
Iteration: 14, Func. Count: 104, Neg. LLF: 143.05391725743627
Iteration: 15, Func. Count: 111, Neg. LLF: 143.0539164619103
Optimization terminated successfully (Exit mode 0)
Current function value: 143.0539164619103
Iterations: 15
Function evaluations: 111
Gradient evaluations: 15
Iteration: 1, Func. Count: 9, Neg. LLF: 147.16127316823463
Iteration: 2, Func. Count: 18, Neg. LLF: 145.71718666384092
Iteration: 3, Func. Count: 27, Neg. LLF: 158.77285832454626
Iteration: 4, Func. Count: 37, Neg. LLF: 143.60884047584062
Iteration: 5, Func. Count: 46, Neg. LLF: 143.13623980170587
Iteration: 6, Func. Count: 54, Neg. LLF: 143.131853841415
Iteration: 7, Func. Count: 62, Neg. LLF: 143.12916975748888
Iteration: 8, Func. Count: 70, Neg. LLF: 143.11441619389305
Iteration: 9, Func. Count: 78, Neg. LLF: 143.0635541816493
Iteration: 10, Func. Count: 86, Neg. LLF: 143.05457203268847
Iteration: 11, Func. Count: 94, Neg. LLF: 143.05400752689332
Iteration: 12, Func. Count: 102, Neg. LLF: 143.05394028425727
Iteration: 13, Func. Count: 110, Neg. LLF: 143.05392428403056
Iteration: 14, Func. Count: 118, Neg. LLF: 143.05391672147928
Iteration: 15, Func. Count: 125, Neg. LLF: 143.05391674348192
Optimization terminated successfully (Exit mode 0)
Current function value: 143.05391672147928
Iterations: 15
Function evaluations: 125
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 147.162709414116
Iteration: 2, Func. Count: 20, Neg. LLF: 145.74991580439922
Iteration: 3, Func. Count: 30, Neg. LLF: 163.65121389441163
Iteration: 4, Func. Count: 41, Neg. LLF: 143.64949636945624
Iteration: 5, Func. Count: 51, Neg. LLF: 143.14023900639506
Iteration: 6, Func. Count: 60, Neg. LLF: 143.13303191974282
Iteration: 7, Func. Count: 69, Neg. LLF: 143.12935185285266
Iteration: 8, Func. Count: 78, Neg. LLF: 143.1167596087411
Iteration: 9, Func. Count: 87, Neg. LLF: 143.1063976467437
Iteration: 10, Func. Count: 96, Neg. LLF: 143.0981362228706
Iteration: 11, Func. Count: 105, Neg. LLF: 143.08207566512868
Iteration: 12, Func. Count: 114, Neg. LLF: 143.06754130115755
Iteration: 13, Func. Count: 123, Neg. LLF: 143.05653077538287
Iteration: 14, Func. Count: 132, Neg. LLF: 143.05449949854028
Iteration: 15, Func. Count: 141, Neg. LLF: 143.05393757344436
Iteration: 16, Func. Count: 150, Neg. LLF: 143.05392408958332
Iteration: 17, Func. Count: 159, Neg. LLF: 143.05391642134003
Iteration: 18, Func. Count: 167, Neg. LLF: 143.05391645706663
Optimization terminated successfully (Exit mode 0)
Current function value: 143.05391642134003
Iterations: 18
Function evaluations: 167
Gradient evaluations: 18
Iteration: 1, Func. Count: 11, Neg. LLF: 147.18916540378612
Iteration: 2, Func. Count: 22, Neg. LLF: 145.7128728007382
Iteration: 3, Func. Count: 33, Neg. LLF: 166.50931307697422
Iteration: 4, Func. Count: 45, Neg. LLF: 143.69059145976027
Iteration: 5, Func. Count: 56, Neg. LLF: 143.14100799550945
Iteration: 6, Func. Count: 66, Neg. LLF: 143.17563828998183
Iteration: 7, Func. Count: 77, Neg. LLF: 143.12985123329975
Iteration: 8, Func. Count: 87, Neg. LLF: 143.126397905187
Iteration: 9, Func. Count: 97, Neg. LLF: 143.12023453504833
Iteration: 10, Func. Count: 107, Neg. LLF: 143.11431935892767
Iteration: 11, Func. Count: 117, Neg. LLF: 143.08721621878854
Iteration: 12, Func. Count: 127, Neg. LLF: 143.06681467942008
Iteration: 13, Func. Count: 137, Neg. LLF: 143.05451357552477
Iteration: 14, Func. Count: 147, Neg. LLF: 143.05409261300312
Iteration: 15, Func. Count: 157, Neg. LLF: 143.05392230786552
Iteration: 16, Func. Count: 167, Neg. LLF: 143.05391674548184
Iteration: 17, Func. Count: 176, Neg. LLF: 143.05391675703117
Optimization terminated successfully (Exit mode 0)
Current function value: 143.05391674548184
Iterations: 17
Function evaluations: 176
Gradient evaluations: 17
Iteration: 1, Func. Count: 8, Neg. LLF: 150.77774901996926
Iteration: 2, Func. Count: 16, Neg. LLF: 145.61312065166967
Iteration: 3, Func. Count: 24, Neg. LLF: 161.84210348557357
Iteration: 4, Func. Count: 32, Neg. LLF: 143.50440492019362
Iteration: 5, Func. Count: 39, Neg. LLF: 143.22511432830885
Iteration: 6, Func. Count: 46, Neg. LLF: 143.1525321763783
Iteration: 7, Func. Count: 53, Neg. LLF: 143.10005700674853
Iteration: 8, Func. Count: 60, Neg. LLF: 143.0654035477601
Iteration: 9, Func. Count: 67, Neg. LLF: 143.0588642029563
Iteration: 10, Func. Count: 74, Neg. LLF: 143.05692485551612
Iteration: 11, Func. Count: 81, Neg. LLF: 143.0539484461655
Iteration: 12, Func. Count: 88, Neg. LLF: 143.05391800365615
Iteration: 13, Func. Count: 95, Neg. LLF: 143.05391642733048
Iteration: 14, Func. Count: 101, Neg. LLF: 143.05391646998524
Optimization terminated successfully (Exit mode 0)
Current function value: 143.05391642733048
Iterations: 14
Function evaluations: 101
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 154.95864326778488
Iteration: 2, Func. Count: 18, Neg. LLF: 155.08687202368736
Iteration: 3, Func. Count: 27, Neg. LLF: 143.46375939995474
Iteration: 4, Func. Count: 35, Neg. LLF: 143.61390978817508
Iteration: 5, Func. Count: 44, Neg. LLF: 143.3444540955028
Iteration: 6, Func. Count: 52, Neg. LLF: 143.25165066303907
Iteration: 7, Func. Count: 60, Neg. LLF: 143.20836921764473
Iteration: 8, Func. Count: 68, Neg. LLF: 143.33819188383106
Iteration: 9, Func. Count: 77, Neg. LLF: 143.16788045073895
Iteration: 10, Func. Count: 85, Neg. LLF: 143.14271040761759
Iteration: 11, Func. Count: 93, Neg. LLF: 143.1030246893167
Iteration: 12, Func. Count: 101, Neg. LLF: 143.087369204164
Iteration: 13, Func. Count: 109, Neg. LLF: 143.06305776141863
Iteration: 14, Func. Count: 117, Neg. LLF: 143.05550992621963
Iteration: 15, Func. Count: 125, Neg. LLF: 143.05419058492785
Iteration: 16, Func. Count: 133, Neg. LLF: 143.05393802149018
Iteration: 17, Func. Count: 141, Neg. LLF: 143.05391664881478
Iteration: 18, Func. Count: 148, Neg. LLF: 143.0539166514725
Optimization terminated successfully (Exit mode 0)
Current function value: 143.05391664881478
Iterations: 18
Function evaluations: 148
Gradient evaluations: 18
Iteration: 1, Func. Count: 10, Neg. LLF: 154.94802458510483
Iteration: 2, Func. Count: 20, Neg. LLF: 155.97507448645413
Iteration: 3, Func. Count: 30, Neg. LLF: 143.45980740635144
Iteration: 4, Func. Count: 39, Neg. LLF: 143.45167115768444
Iteration: 5, Func. Count: 49, Neg. LLF: 143.32261916245207
Iteration: 6, Func. Count: 58, Neg. LLF: 143.2801505786168
Iteration: 7, Func. Count: 67, Neg. LLF: 143.23636127009578
Iteration: 8, Func. Count: 76, Neg. LLF: 143.21419067480096
Iteration: 9, Func. Count: 85, Neg. LLF: 143.17776816445541
Iteration: 10, Func. Count: 94, Neg. LLF: 143.13185205090724
Iteration: 11, Func. Count: 103, Neg. LLF: 143.07135652007443
Iteration: 12, Func. Count: 112, Neg. LLF: 143.06067455180576
Iteration: 13, Func. Count: 121, Neg. LLF: 143.05411942665268
Iteration: 14, Func. Count: 130, Neg. LLF: 143.05398583275388
Iteration: 15, Func. Count: 139, Neg. LLF: 143.05395217849806
Iteration: 16, Func. Count: 148, Neg. LLF: 143.05391664510216
Iteration: 17, Func. Count: 156, Neg. LLF: 143.05391666710804
Optimization terminated successfully (Exit mode 0)
Current function value: 143.05391664510216
Iterations: 17
Function evaluations: 156
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 146.89270533823938
Iteration: 2, Func. Count: 22, Neg. LLF: 146.03429249845226
Iteration: 3, Func. Count: 33, Neg. LLF: 165.7240528458058
Iteration: 4, Func. Count: 45, Neg. LLF: 143.8202094605874
Iteration: 5, Func. Count: 56, Neg. LLF: 143.14343582492702
Iteration: 6, Func. Count: 66, Neg. LLF: 143.13474489054477
Iteration: 7, Func. Count: 76, Neg. LLF: 143.12991307968525
Iteration: 8, Func. Count: 86, Neg. LLF: 143.12235690887536
Iteration: 9, Func. Count: 96, Neg. LLF: 143.11438419344225
Iteration: 10, Func. Count: 106, Neg. LLF: 143.1042153858936
Iteration: 11, Func. Count: 116, Neg. LLF: 143.08752406146823
Iteration: 12, Func. Count: 126, Neg. LLF: 143.06738068175787
Iteration: 13, Func. Count: 136, Neg. LLF: 143.05615575594788
Iteration: 14, Func. Count: 146, Neg. LLF: 143.05474537357617
Iteration: 15, Func. Count: 156, Neg. LLF: 143.05393070762585
Iteration: 16, Func. Count: 166, Neg. LLF: 143.05391820674672
Iteration: 17, Func. Count: 176, Neg. LLF: 143.05391643580174
Iteration: 18, Func. Count: 185, Neg. LLF: 143.05391647154167
Optimization terminated successfully (Exit mode 0)
Current function value: 143.05391643580174
Iterations: 18
Function evaluations: 185
Gradient evaluations: 18
Iteration: 1, Func. Count: 12, Neg. LLF: 146.90027402235907
Iteration: 2, Func. Count: 24, Neg. LLF: 145.13029633715058
Iteration: 3, Func. Count: 36, Neg. LLF: 156.28418440761928
Iteration: 4, Func. Count: 49, Neg. LLF: 144.23345196519463
Iteration: 5, Func. Count: 61, Neg. LLF: 143.14375999394105
Iteration: 6, Func. Count: 72, Neg. LLF: 143.16344840217639
Iteration: 7, Func. Count: 84, Neg. LLF: 143.13489906008328
Iteration: 8, Func. Count: 95, Neg. LLF: 143.1267469011179
Iteration: 9, Func. Count: 106, Neg. LLF: 143.12419555669362
Iteration: 10, Func. Count: 117, Neg. LLF: 143.1125211962106
Iteration: 11, Func. Count: 128, Neg. LLF: 143.09067862950707
Iteration: 12, Func. Count: 139, Neg. LLF: 143.068646629265
Iteration: 13, Func. Count: 150, Neg. LLF: 143.0578765363399
Iteration: 14, Func. Count: 161, Neg. LLF: 143.05434143017752
Iteration: 15, Func. Count: 172, Neg. LLF: 143.05398161898887
Iteration: 16, Func. Count: 183, Neg. LLF: 143.053920459429
Iteration: 17, Func. Count: 194, Neg. LLF: 143.05391649001936
Iteration: 18, Func. Count: 204, Neg. LLF: 143.05391650164532
Optimization terminated successfully (Exit mode 0)
Current function value: 143.05391649001936
Iterations: 18
Function evaluations: 204
Gradient evaluations: 18
Iteration: 1, Func. Count: 5, Neg. LLF: 145.5173722222873
Iteration: 2, Func. Count: 9, Neg. LLF: 145.95388952856024
Iteration: 3, Func. Count: 14, Neg. LLF: 144.53563956510115
Iteration: 4, Func. Count: 18, Neg. LLF: 144.9120730338676
Iteration: 5, Func. Count: 23, Neg. LLF: 144.2906665753475
Iteration: 6, Func. Count: 27, Neg. LLF: 144.17782237446167
Iteration: 7, Func. Count: 31, Neg. LLF: 144.06818264856162
Iteration: 8, Func. Count: 35, Neg. LLF: 144.05144818508896
Iteration: 9, Func. Count: 39, Neg. LLF: 144.05002882736608
Iteration: 10, Func. Count: 43, Neg. LLF: 144.04995205335646
Iteration: 11, Func. Count: 47, Neg. LLF: 144.04994958736418
Iteration: 12, Func. Count: 50, Neg. LLF: 144.04994958735426
Optimization terminated successfully (Exit mode 0)
Current function value: 144.04994958736418
Iterations: 12
Function evaluations: 50
Gradient evaluations: 12
Iteration: 1, Func. Count: 6, Neg. LLF: 148.24114543796767
Iteration: 2, Func. Count: 13, Neg. LLF: 144.11092439218436
Iteration: 3, Func. Count: 19, Neg. LLF: 144.08204728552275
Iteration: 4, Func. Count: 25, Neg. LLF: 144.0804950975609
Iteration: 5, Func. Count: 30, Neg. LLF: 144.07768772850005
Iteration: 6, Func. Count: 35, Neg. LLF: 144.06712114379224
Iteration: 7, Func. Count: 40, Neg. LLF: 144.0418124068526
Iteration: 8, Func. Count: 45, Neg. LLF: 144.03086057640337
Iteration: 9, Func. Count: 50, Neg. LLF: 144.02540290014272
Iteration: 10, Func. Count: 55, Neg. LLF: 144.02318910082127
Iteration: 11, Func. Count: 60, Neg. LLF: 144.02232123165268
Iteration: 12, Func. Count: 65, Neg. LLF: 144.02210901359123
Iteration: 13, Func. Count: 70, Neg. LLF: 144.0220903971317
Iteration: 14, Func. Count: 75, Neg. LLF: 144.0220807762932
Iteration: 15, Func. Count: 79, Neg. LLF: 144.02208077627063
Optimization terminated successfully (Exit mode 0)
Current function value: 144.0220807762932
Iterations: 15
Function evaluations: 79
Gradient evaluations: 15
Iteration: 1, Func. Count: 7, Neg. LLF: 152.109110819562
Iteration: 2, Func. Count: 15, Neg. LLF: 144.08977538455264
Iteration: 3, Func. Count: 21, Neg. LLF: 144.09145224746604
Iteration: 4, Func. Count: 28, Neg. LLF: 144.0868718717426
Iteration: 5, Func. Count: 34, Neg. LLF: 144.07632425839495
Iteration: 6, Func. Count: 40, Neg. LLF: 144.0737119073142
Iteration: 7, Func. Count: 46, Neg. LLF: 144.07364374164212
Iteration: 8, Func. Count: 52, Neg. LLF: 144.07321873627956
Iteration: 9, Func. Count: 58, Neg. LLF: 144.0723389599983
Iteration: 10, Func. Count: 64, Neg. LLF: 144.06982857993106
Iteration: 11, Func. Count: 70, Neg. LLF: 144.06471302385037
Iteration: 12, Func. Count: 76, Neg. LLF: 144.0598327658646
Iteration: 13, Func. Count: 82, Neg. LLF: 144.05404557004368
Iteration: 14, Func. Count: 88, Neg. LLF: 144.0523154502268
Iteration: 15, Func. Count: 94, Neg. LLF: 144.05093762193258
Iteration: 16, Func. Count: 100, Neg. LLF: 144.05090227540117
Iteration: 17, Func. Count: 106, Neg. LLF: 144.05087821892576
Iteration: 18, Func. Count: 111, Neg. LLF: 144.05087821893767
Optimization terminated successfully (Exit mode 0)
Current function value: 144.05087821892576
Iterations: 18
Function evaluations: 111
Gradient evaluations: 18
Iteration: 1, Func. Count: 8, Neg. LLF: 152.1393492621625
Iteration: 2, Func. Count: 17, Neg. LLF: 144.08268226929297
Iteration: 3, Func. Count: 24, Neg. LLF: 144.07452997064684
Iteration: 4, Func. Count: 31, Neg. LLF: 144.07350434072902
Iteration: 5, Func. Count: 38, Neg. LLF: 144.0723633228164
Iteration: 6, Func. Count: 45, Neg. LLF: 144.07229009667122
Iteration: 7, Func. Count: 52, Neg. LLF: 144.0718556973858
Iteration: 8, Func. Count: 59, Neg. LLF: 144.07091232561095
Iteration: 9, Func. Count: 66, Neg. LLF: 144.06912650817733
Iteration: 10, Func. Count: 73, Neg. LLF: 144.06524663593927
Iteration: 11, Func. Count: 80, Neg. LLF: 144.06056847880146
Iteration: 12, Func. Count: 87, Neg. LLF: 144.05539678142821
Iteration: 13, Func. Count: 94, Neg. LLF: 144.05350952286872
Iteration: 14, Func. Count: 101, Neg. LLF: 144.05148659074018
Iteration: 15, Func. Count: 108, Neg. LLF: 144.0509487125098
Iteration: 16, Func. Count: 115, Neg. LLF: 144.0508802013324
Iteration: 17, Func. Count: 122, Neg. LLF: 144.05087820339895
Iteration: 18, Func. Count: 128, Neg. LLF: 144.0508782038011
Optimization terminated successfully (Exit mode 0)
Current function value: 144.05087820339895
Iterations: 18
Function evaluations: 128
Gradient evaluations: 18
Iteration: 1, Func. Count: 9, Neg. LLF: 152.15713130524458
Iteration: 2, Func. Count: 19, Neg. LLF: 144.0797749816326
Iteration: 3, Func. Count: 27, Neg. LLF: 144.07714563071292
Iteration: 4, Func. Count: 35, Neg. LLF: 144.07312558613805
Iteration: 5, Func. Count: 43, Neg. LLF: 144.07217104598163
Iteration: 6, Func. Count: 51, Neg. LLF: 144.07210351309234
Iteration: 7, Func. Count: 59, Neg. LLF: 144.071737280705
Iteration: 8, Func. Count: 67, Neg. LLF: 144.07100730914502
Iteration: 9, Func. Count: 75, Neg. LLF: 144.07063809725005
Iteration: 10, Func. Count: 83, Neg. LLF: 144.06901665786995
Iteration: 11, Func. Count: 91, Neg. LLF: 144.0660682034958
Iteration: 12, Func. Count: 99, Neg. LLF: 144.06440672575917
Iteration: 13, Func. Count: 107, Neg. LLF: 144.0620859662328
Iteration: 14, Func. Count: 115, Neg. LLF: 144.06097278061068
Iteration: 15, Func. Count: 123, Neg. LLF: 144.0602162261943
Iteration: 16, Func. Count: 131, Neg. LLF: 144.05901239142017
Iteration: 17, Func. Count: 139, Neg. LLF: 144.05549429637864
Iteration: 18, Func. Count: 147, Neg. LLF: 144.05305294772984
Iteration: 19, Func. Count: 155, Neg. LLF: 144.05119643662147
Iteration: 20, Func. Count: 163, Neg. LLF: 144.0509175438876
Iteration: 21, Func. Count: 171, Neg. LLF: 144.05087877837764
Iteration: 22, Func. Count: 179, Neg. LLF: 144.05087818864502
Optimization terminated successfully (Exit mode 0)
Current function value: 144.05087818864502
Iterations: 22
Function evaluations: 179
Gradient evaluations: 22
Iteration: 1, Func. Count: 6, Neg. LLF: 144.2809738873907
Iteration: 2, Func. Count: 11, Neg. LLF: 144.8211296099431
Iteration: 3, Func. Count: 17, Neg. LLF: 144.77232092560627
Iteration: 4, Func. Count: 23, Neg. LLF: 148.36679638664907
Iteration: 5, Func. Count: 29, Neg. LLF: 143.72558525912348
Iteration: 6, Func. Count: 34, Neg. LLF: 143.65093525545805
Iteration: 7, Func. Count: 39, Neg. LLF: 143.61480772839096
Iteration: 8, Func. Count: 44, Neg. LLF: 143.47712700047563
Iteration: 9, Func. Count: 49, Neg. LLF: 143.39423906963617
Iteration: 10, Func. Count: 54, Neg. LLF: 143.37911064882346
Iteration: 11, Func. Count: 59, Neg. LLF: 143.3778446869676
Iteration: 12, Func. Count: 64, Neg. LLF: 143.3777830956497
Iteration: 13, Func. Count: 69, Neg. LLF: 143.37778142161824
Iteration: 14, Func. Count: 73, Neg. LLF: 143.37778142161483
Optimization terminated successfully (Exit mode 0)
Current function value: 143.37778142161824
Iterations: 14
Function evaluations: 73
Gradient evaluations: 14
Iteration: 1, Func. Count: 7, Neg. LLF: 146.1026463655561
Iteration: 2, Func. Count: 14, Neg. LLF: 145.71917350407895
Iteration: 3, Func. Count: 21, Neg. LLF: 145.77970479380005
Iteration: 4, Func. Count: 28, Neg. LLF: 143.1444044357863
Iteration: 5, Func. Count: 34, Neg. LLF: 143.14258539786883
Iteration: 6, Func. Count: 40, Neg. LLF: 143.14111563283427
Iteration: 7, Func. Count: 46, Neg. LLF: 143.1402497627518
Iteration: 8, Func. Count: 52, Neg. LLF: 143.13830716983628
Iteration: 9, Func. Count: 58, Neg. LLF: 143.13643503743094
Iteration: 10, Func. Count: 64, Neg. LLF: 143.13519272898998
Iteration: 11, Func. Count: 70, Neg. LLF: 143.1349437682544
Iteration: 12, Func. Count: 76, Neg. LLF: 143.1349299608469
Iteration: 13, Func. Count: 82, Neg. LLF: 143.13492941119284
Optimization terminated successfully (Exit mode 0)
Current function value: 143.13492941119284
Iterations: 13
Function evaluations: 82
Gradient evaluations: 13
Iteration: 1, Func. Count: 8, Neg. LLF: 145.50927933424924
Iteration: 2, Func. Count: 16, Neg. LLF: 146.1655283095383
Iteration: 3, Func. Count: 24, Neg. LLF: 143.6791396827069
Iteration: 4, Func. Count: 32, Neg. LLF: 143.14799765585875
Iteration: 5, Func. Count: 39, Neg. LLF: 143.14396579268427
Iteration: 6, Func. Count: 46, Neg. LLF: 143.14191708985433
Iteration: 7, Func. Count: 53, Neg. LLF: 143.14095868111232
Iteration: 8, Func. Count: 60, Neg. LLF: 143.13983578571674
Iteration: 9, Func. Count: 67, Neg. LLF: 143.1379326600668
Iteration: 10, Func. Count: 74, Neg. LLF: 143.13606257946194
Iteration: 11, Func. Count: 81, Neg. LLF: 143.1350858338799
Iteration: 12, Func. Count: 88, Neg. LLF: 143.13493757925096
Iteration: 13, Func. Count: 95, Neg. LLF: 143.13492966116527
Iteration: 14, Func. Count: 101, Neg. LLF: 143.13492968897603
Optimization terminated successfully (Exit mode 0)
Current function value: 143.13492966116527
Iterations: 14
Function evaluations: 101
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 145.36303241427927
Iteration: 2, Func. Count: 18, Neg. LLF: 144.2399161810595
Iteration: 3, Func. Count: 28, Neg. LLF: 143.47835052035538
Iteration: 4, Func. Count: 37, Neg. LLF: 143.1499034273616
Iteration: 5, Func. Count: 45, Neg. LLF: 143.1434903886433
Iteration: 6, Func. Count: 53, Neg. LLF: 143.14220883221498
Iteration: 7, Func. Count: 61, Neg. LLF: 143.1404793360414
Iteration: 8, Func. Count: 69, Neg. LLF: 143.13965485725112
Iteration: 9, Func. Count: 77, Neg. LLF: 143.13748564250713
Iteration: 10, Func. Count: 85, Neg. LLF: 143.13585756836434
Iteration: 11, Func. Count: 93, Neg. LLF: 143.13501967174176
Iteration: 12, Func. Count: 101, Neg. LLF: 143.13493336494707
Iteration: 13, Func. Count: 109, Neg. LLF: 143.13492951058183
Iteration: 14, Func. Count: 116, Neg. LLF: 143.13492954485474
Optimization terminated successfully (Exit mode 0)
Current function value: 143.13492951058183
Iterations: 14
Function evaluations: 116
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 145.383110808448
Iteration: 2, Func. Count: 20, Neg. LLF: 143.80845404498083
Iteration: 3, Func. Count: 31, Neg. LLF: 143.4515777197023
Iteration: 4, Func. Count: 41, Neg. LLF: 143.1454107368944
Iteration: 5, Func. Count: 50, Neg. LLF: 143.1430977686338
Iteration: 6, Func. Count: 59, Neg. LLF: 143.14231443150948
Iteration: 7, Func. Count: 68, Neg. LLF: 143.13977183216798
Iteration: 8, Func. Count: 77, Neg. LLF: 143.1379570513223
Iteration: 9, Func. Count: 86, Neg. LLF: 143.13581040556997
Iteration: 10, Func. Count: 95, Neg. LLF: 143.13502833638455
Iteration: 11, Func. Count: 104, Neg. LLF: 143.13493315995726
Iteration: 12, Func. Count: 113, Neg. LLF: 143.13492953319314
Iteration: 13, Func. Count: 121, Neg. LLF: 143.13492954252388
Optimization terminated successfully (Exit mode 0)
Current function value: 143.13492953319314
Iterations: 13
Function evaluations: 121
Gradient evaluations: 13
Iteration: 1, Func. Count: 7, Neg. LLF: 146.32591482977418
Iteration: 2, Func. Count: 14, Neg. LLF: 144.46811706387865
Iteration: 3, Func. Count: 21, Neg. LLF: 143.486318869536
Iteration: 4, Func. Count: 28, Neg. LLF: 143.19134464710388
Iteration: 5, Func. Count: 34, Neg. LLF: 143.15008625900177
Iteration: 6, Func. Count: 40, Neg. LLF: 143.09593301926577
Iteration: 7, Func. Count: 46, Neg. LLF: 143.0607068404165
Iteration: 8, Func. Count: 52, Neg. LLF: 143.0542661940764
Iteration: 9, Func. Count: 58, Neg. LLF: 143.05392695893423
Iteration: 10, Func. Count: 64, Neg. LLF: 143.05391703842488
Iteration: 11, Func. Count: 70, Neg. LLF: 143.0539164158831
Optimization terminated successfully (Exit mode 0)
Current function value: 143.0539164158831
Iterations: 11
Function evaluations: 70
Gradient evaluations: 11
Iteration: 1, Func. Count: 8, Neg. LLF: 146.94283017480134
Iteration: 2, Func. Count: 16, Neg. LLF: 145.9062846491235
Iteration: 3, Func. Count: 24, Neg. LLF: 147.05502097851257
Iteration: 4, Func. Count: 33, Neg. LLF: 143.13815681191002
Iteration: 5, Func. Count: 40, Neg. LLF: 143.1336731630508
Iteration: 6, Func. Count: 47, Neg. LLF: 143.13261912746336
Iteration: 7, Func. Count: 55, Neg. LLF: 143.12557707831445
Iteration: 8, Func. Count: 62, Neg. LLF: 143.11313519994974
Iteration: 9, Func. Count: 69, Neg. LLF: 143.09154776516255
Iteration: 10, Func. Count: 76, Neg. LLF: 143.06411196198218
Iteration: 11, Func. Count: 83, Neg. LLF: 143.057790449308
Iteration: 12, Func. Count: 90, Neg. LLF: 143.05412703233304
Iteration: 13, Func. Count: 97, Neg. LLF: 143.05394642430684
Iteration: 14, Func. Count: 104, Neg. LLF: 143.05391809354853
Iteration: 15, Func. Count: 111, Neg. LLF: 143.05391640258878
Iteration: 16, Func. Count: 117, Neg. LLF: 143.0539164052748
Optimization terminated successfully (Exit mode 0)
Current function value: 143.05391640258878
Iterations: 16
Function evaluations: 117
Gradient evaluations: 16
Iteration: 1, Func. Count: 9, Neg. LLF: 146.8664873582194
Iteration: 2, Func. Count: 18, Neg. LLF: 145.83693035639058
Iteration: 3, Func. Count: 27, Neg. LLF: 155.1276372475649
Iteration: 4, Func. Count: 37, Neg. LLF: 143.502231069495
Iteration: 5, Func. Count: 46, Neg. LLF: 143.1344182302056
Iteration: 6, Func. Count: 54, Neg. LLF: 143.131875566848
Iteration: 7, Func. Count: 62, Neg. LLF: 143.1200709908268
Iteration: 8, Func. Count: 70, Neg. LLF: 143.10311809026285
Iteration: 9, Func. Count: 78, Neg. LLF: 143.06620132353285
Iteration: 10, Func. Count: 86, Neg. LLF: 143.0563645523092
Iteration: 11, Func. Count: 94, Neg. LLF: 143.05416695990522
Iteration: 12, Func. Count: 102, Neg. LLF: 143.05392800142366
Iteration: 13, Func. Count: 110, Neg. LLF: 143.05392075155635
Iteration: 14, Func. Count: 118, Neg. LLF: 143.05391640862507
Iteration: 15, Func. Count: 125, Neg. LLF: 143.053916430576
Optimization terminated successfully (Exit mode 0)
Current function value: 143.05391640862507
Iterations: 15
Function evaluations: 125
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 146.7924900089101
Iteration: 2, Func. Count: 20, Neg. LLF: 145.9382270500665
Iteration: 3, Func. Count: 30, Neg. LLF: 158.4274628860408
Iteration: 4, Func. Count: 41, Neg. LLF: 143.51621809689337
Iteration: 5, Func. Count: 51, Neg. LLF: 143.1414358908736
Iteration: 6, Func. Count: 60, Neg. LLF: 143.13304681463515
Iteration: 7, Func. Count: 69, Neg. LLF: 143.12878044511245
Iteration: 8, Func. Count: 78, Neg. LLF: 143.12323134866972
Iteration: 9, Func. Count: 87, Neg. LLF: 143.11387010109036
Iteration: 10, Func. Count: 96, Neg. LLF: 143.09859271707703
Iteration: 11, Func. Count: 105, Neg. LLF: 143.0753207023325
Iteration: 12, Func. Count: 114, Neg. LLF: 143.0594471417431
Iteration: 13, Func. Count: 123, Neg. LLF: 143.05530450872723
Iteration: 14, Func. Count: 132, Neg. LLF: 143.05419667220195
Iteration: 15, Func. Count: 141, Neg. LLF: 143.05391971764226
Iteration: 16, Func. Count: 150, Neg. LLF: 143.05391655345545
Iteration: 17, Func. Count: 158, Neg. LLF: 143.05391658914496
Optimization terminated successfully (Exit mode 0)
Current function value: 143.05391655345545
Iterations: 17
Function evaluations: 158
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 146.81982325109922
Iteration: 2, Func. Count: 22, Neg. LLF: 145.9327335476137
Iteration: 3, Func. Count: 33, Neg. LLF: 160.24744726341527
Iteration: 4, Func. Count: 45, Neg. LLF: 143.54005672612527
Iteration: 5, Func. Count: 56, Neg. LLF: 143.14274008239235
Iteration: 6, Func. Count: 66, Neg. LLF: 143.13371947128343
Iteration: 7, Func. Count: 76, Neg. LLF: 143.14933588856056
Iteration: 8, Func. Count: 87, Neg. LLF: 143.12733003497024
Iteration: 9, Func. Count: 97, Neg. LLF: 143.1143707558645
Iteration: 10, Func. Count: 107, Neg. LLF: 143.0883355849139
Iteration: 11, Func. Count: 117, Neg. LLF: 143.0661905656447
Iteration: 12, Func. Count: 127, Neg. LLF: 143.05655092864922
Iteration: 13, Func. Count: 137, Neg. LLF: 143.05426109061438
Iteration: 14, Func. Count: 147, Neg. LLF: 143.0539345834707
Iteration: 15, Func. Count: 157, Neg. LLF: 143.05391732825515
Iteration: 16, Func. Count: 167, Neg. LLF: 143.05391646938847
Optimization terminated successfully (Exit mode 0)
Current function value: 143.05391646938847
Iterations: 16
Function evaluations: 167
Gradient evaluations: 16
Iteration: 1, Func. Count: 8, Neg. LLF: 147.00729758994467
Iteration: 2, Func. Count: 16, Neg. LLF: 144.1910596038755
Iteration: 3, Func. Count: 24, Neg. LLF: 147.352277304718
Iteration: 4, Func. Count: 32, Neg. LLF: 143.2806508450505
Iteration: 5, Func. Count: 39, Neg. LLF: 144.1418709100469
Iteration: 6, Func. Count: 47, Neg. LLF: 143.15428023925864
Iteration: 7, Func. Count: 54, Neg. LLF: 143.12143615127636
Iteration: 8, Func. Count: 61, Neg. LLF: 143.08910000766477
Iteration: 9, Func. Count: 68, Neg. LLF: 143.05906889311802
Iteration: 10, Func. Count: 75, Neg. LLF: 143.05426918251484
Iteration: 11, Func. Count: 82, Neg. LLF: 143.0539218923398
Iteration: 12, Func. Count: 89, Neg. LLF: 143.05391676720006
Iteration: 13, Func. Count: 95, Neg. LLF: 143.05391678196764
Optimization terminated successfully (Exit mode 0)
Current function value: 143.05391676720006
Iterations: 13
Function evaluations: 95
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 147.14264449240028
Iteration: 2, Func. Count: 18, Neg. LLF: 145.8787240569381
Iteration: 3, Func. Count: 27, Neg. LLF: 150.12093163406854
Iteration: 4, Func. Count: 37, Neg. LLF: 143.2352320327454
Iteration: 5, Func. Count: 46, Neg. LLF: 143.13638775604744
Iteration: 6, Func. Count: 54, Neg. LLF: 143.13131111931332
Iteration: 7, Func. Count: 62, Neg. LLF: 143.12447088134738
Iteration: 8, Func. Count: 70, Neg. LLF: 143.11942964963583
Iteration: 9, Func. Count: 78, Neg. LLF: 143.1030914195729
Iteration: 10, Func. Count: 86, Neg. LLF: 143.07561302963015
Iteration: 11, Func. Count: 94, Neg. LLF: 143.05934590775962
Iteration: 12, Func. Count: 102, Neg. LLF: 143.05473989615908
Iteration: 13, Func. Count: 110, Neg. LLF: 143.05394183733873
Iteration: 14, Func. Count: 118, Neg. LLF: 143.05391730631817
Iteration: 15, Func. Count: 126, Neg. LLF: 143.05391646598028
Optimization terminated successfully (Exit mode 0)
Current function value: 143.05391646598028
Iterations: 15
Function evaluations: 126
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 147.16543081239865
Iteration: 2, Func. Count: 20, Neg. LLF: 145.72106311712508
Iteration: 3, Func. Count: 30, Neg. LLF: 157.94891465631136
Iteration: 4, Func. Count: 41, Neg. LLF: 143.59112466621121
Iteration: 5, Func. Count: 51, Neg. LLF: 143.13537382098926
Iteration: 6, Func. Count: 60, Neg. LLF: 143.13128650775363
Iteration: 7, Func. Count: 69, Neg. LLF: 143.12829738148963
Iteration: 8, Func. Count: 78, Neg. LLF: 143.11163728630228
Iteration: 9, Func. Count: 87, Neg. LLF: 143.05721745690448
Iteration: 10, Func. Count: 96, Neg. LLF: 143.05416700937363
Iteration: 11, Func. Count: 105, Neg. LLF: 143.05393147818447
Iteration: 12, Func. Count: 114, Neg. LLF: 143.05392294123348
Iteration: 13, Func. Count: 123, Neg. LLF: 143.0539166248918
Iteration: 14, Func. Count: 131, Neg. LLF: 143.05391664690458
Optimization terminated successfully (Exit mode 0)
Current function value: 143.0539166248918
Iterations: 14
Function evaluations: 131
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 147.16044789808763
Iteration: 2, Func. Count: 22, Neg. LLF: 145.7562256855001
Iteration: 3, Func. Count: 33, Neg. LLF: 162.23862795723807
Iteration: 4, Func. Count: 45, Neg. LLF: 143.6303021257177
Iteration: 5, Func. Count: 56, Neg. LLF: 143.14011026637002
Iteration: 6, Func. Count: 66, Neg. LLF: 143.13234298160515
Iteration: 7, Func. Count: 76, Neg. LLF: 143.12852592984112
Iteration: 8, Func. Count: 86, Neg. LLF: 143.11897765045944
Iteration: 9, Func. Count: 96, Neg. LLF: 143.11076914567772
Iteration: 10, Func. Count: 106, Neg. LLF: 143.09861053010448
Iteration: 11, Func. Count: 116, Neg. LLF: 143.07898840823205
Iteration: 12, Func. Count: 126, Neg. LLF: 143.06261314351988
Iteration: 13, Func. Count: 136, Neg. LLF: 143.05561569857085
Iteration: 14, Func. Count: 146, Neg. LLF: 143.0544350778905
Iteration: 15, Func. Count: 156, Neg. LLF: 143.0539322917555
Iteration: 16, Func. Count: 166, Neg. LLF: 143.0539189092778
Iteration: 17, Func. Count: 176, Neg. LLF: 143.05391642974644
Iteration: 18, Func. Count: 185, Neg. LLF: 143.05391646548406
Optimization terminated successfully (Exit mode 0)
Current function value: 143.05391642974644
Iterations: 18
Function evaluations: 185
Gradient evaluations: 18
Iteration: 1, Func. Count: 12, Neg. LLF: 147.18582533500077
Iteration: 2, Func. Count: 24, Neg. LLF: 145.72265620186155
Iteration: 3, Func. Count: 36, Neg. LLF: 164.57003813051142
Iteration: 4, Func. Count: 49, Neg. LLF: 143.6741300618384
Iteration: 5, Func. Count: 61, Neg. LLF: 143.1404015140681
Iteration: 6, Func. Count: 72, Neg. LLF: 143.17184890582624
Iteration: 7, Func. Count: 84, Neg. LLF: 143.1293378353227
Iteration: 8, Func. Count: 95, Neg. LLF: 143.12621605114575
Iteration: 9, Func. Count: 106, Neg. LLF: 143.12079497858832
Iteration: 10, Func. Count: 117, Neg. LLF: 143.11303602160905
Iteration: 11, Func. Count: 128, Neg. LLF: 143.09001688992328
Iteration: 12, Func. Count: 139, Neg. LLF: 143.06782189478724
Iteration: 13, Func. Count: 150, Neg. LLF: 143.05410852978088
Iteration: 14, Func. Count: 161, Neg. LLF: 143.05394053577214
Iteration: 15, Func. Count: 172, Neg. LLF: 143.0539181281603
Iteration: 16, Func. Count: 183, Neg. LLF: 143.05391678736837
Iteration: 17, Func. Count: 193, Neg. LLF: 143.0539167989584
Optimization terminated successfully (Exit mode 0)
Current function value: 143.05391678736837
Iterations: 17
Function evaluations: 193
Gradient evaluations: 17
Iteration: 1, Func. Count: 9, Neg. LLF: 145.29755017120013
Iteration: 2, Func. Count: 18, Neg. LLF: 145.23126780674318
Iteration: 3, Func. Count: 27, Neg. LLF: 144.0880010738133
Iteration: 4, Func. Count: 36, Neg. LLF: 143.24547822676996
Iteration: 5, Func. Count: 44, Neg. LLF: 144.47056128518153
Iteration: 6, Func. Count: 53, Neg. LLF: 143.16525964002622
Iteration: 7, Func. Count: 61, Neg. LLF: 143.1293716617325
Iteration: 8, Func. Count: 69, Neg. LLF: 143.0702375934199
Iteration: 9, Func. Count: 77, Neg. LLF: 143.0586157857238
Iteration: 10, Func. Count: 85, Neg. LLF: 143.05400863309893
Iteration: 11, Func. Count: 93, Neg. LLF: 143.05394283909592
Iteration: 12, Func. Count: 101, Neg. LLF: 143.0539164228652
Iteration: 13, Func. Count: 108, Neg. LLF: 143.0539164655188
Optimization terminated successfully (Exit mode 0)
Current function value: 143.0539164228652
Iterations: 13
Function evaluations: 108
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 147.13068414163382
Iteration: 2, Func. Count: 20, Neg. LLF: 146.1257252528548
Iteration: 3, Func. Count: 30, Neg. LLF: 151.35367227870273
Iteration: 4, Func. Count: 41, Neg. LLF: 143.20135846390548
Iteration: 5, Func. Count: 51, Neg. LLF: 143.14369956665217
Iteration: 6, Func. Count: 60, Neg. LLF: 143.13456114148048
Iteration: 7, Func. Count: 69, Neg. LLF: 143.1293859719018
Iteration: 8, Func. Count: 78, Neg. LLF: 143.1226962872881
Iteration: 9, Func. Count: 87, Neg. LLF: 143.11600931843273
Iteration: 10, Func. Count: 96, Neg. LLF: 143.0924019112777
Iteration: 11, Func. Count: 105, Neg. LLF: 143.0634564175707
Iteration: 12, Func. Count: 114, Neg. LLF: 143.0577985483098
Iteration: 13, Func. Count: 123, Neg. LLF: 143.05436824250862
Iteration: 14, Func. Count: 132, Neg. LLF: 143.0539220496002
Iteration: 15, Func. Count: 141, Neg. LLF: 143.05391646309909
Iteration: 16, Func. Count: 149, Neg. LLF: 143.053916465774
Optimization terminated successfully (Exit mode 0)
Current function value: 143.05391646309909
Iterations: 16
Function evaluations: 149
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 146.95117484041066
Iteration: 2, Func. Count: 22, Neg. LLF: 146.0505913314993
Iteration: 3, Func. Count: 33, Neg. LLF: 161.73223551602757
Iteration: 4, Func. Count: 45, Neg. LLF: 143.77541776042472
Iteration: 5, Func. Count: 56, Neg. LLF: 143.1390969300627
Iteration: 6, Func. Count: 66, Neg. LLF: 143.13373637911752
Iteration: 7, Func. Count: 76, Neg. LLF: 143.13095676440815
Iteration: 8, Func. Count: 86, Neg. LLF: 143.11696214426655
Iteration: 9, Func. Count: 96, Neg. LLF: 143.0690561140788
Iteration: 10, Func. Count: 106, Neg. LLF: 143.0557130791512
Iteration: 11, Func. Count: 116, Neg. LLF: 143.05401080684092
Iteration: 12, Func. Count: 126, Neg. LLF: 143.05394716971665
Iteration: 13, Func. Count: 136, Neg. LLF: 143.05392698214774
Iteration: 14, Func. Count: 146, Neg. LLF: 143.0539195113088
Iteration: 15, Func. Count: 156, Neg. LLF: 143.0539167713522
Iteration: 16, Func. Count: 165, Neg. LLF: 143.05391679325416
Optimization terminated successfully (Exit mode 0)
Current function value: 143.0539167713522
Iterations: 16
Function evaluations: 165
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 146.94165644495249
Iteration: 2, Func. Count: 24, Neg. LLF: 146.05698408579198
Iteration: 3, Func. Count: 36, Neg. LLF: 168.09320479328977
Iteration: 4, Func. Count: 49, Neg. LLF: 143.86603161916454
Iteration: 5, Func. Count: 61, Neg. LLF: 143.1445611791187
Iteration: 6, Func. Count: 72, Neg. LLF: 143.13534785763432
Iteration: 7, Func. Count: 83, Neg. LLF: 143.13010299269087
Iteration: 8, Func. Count: 94, Neg. LLF: 143.12415508106417
Iteration: 9, Func. Count: 105, Neg. LLF: 143.11546648616104
Iteration: 10, Func. Count: 116, Neg. LLF: 143.10327300367067
Iteration: 11, Func. Count: 127, Neg. LLF: 143.08650353168767
Iteration: 12, Func. Count: 138, Neg. LLF: 143.06767358289335
Iteration: 13, Func. Count: 149, Neg. LLF: 143.05722895579603
Iteration: 14, Func. Count: 160, Neg. LLF: 143.0549264080208
Iteration: 15, Func. Count: 171, Neg. LLF: 143.05393462010423
Iteration: 16, Func. Count: 182, Neg. LLF: 143.05391673418475
Iteration: 17, Func. Count: 192, Neg. LLF: 143.05391676991624
Optimization terminated successfully (Exit mode 0)
Current function value: 143.05391673418475
Iterations: 17
Function evaluations: 192
Gradient evaluations: 17
Iteration: 1, Func. Count: 13, Neg. LLF: 146.94911978496785
Iteration: 2, Func. Count: 26, Neg. LLF: 145.59922019202122
Iteration: 3, Func. Count: 39, Neg. LLF: 164.8755448815459
Iteration: 4, Func. Count: 53, Neg. LLF: 144.10119065324753
Iteration: 5, Func. Count: 66, Neg. LLF: 143.14583730110553
Iteration: 6, Func. Count: 78, Neg. LLF: 143.15120260228167
Iteration: 7, Func. Count: 91, Neg. LLF: 143.1480805189431
Iteration: 8, Func. Count: 104, Neg. LLF: 143.12769840004316
Iteration: 9, Func. Count: 116, Neg. LLF: 143.12309020701946
Iteration: 10, Func. Count: 128, Neg. LLF: 143.11263877021392
Iteration: 11, Func. Count: 140, Neg. LLF: 143.09133629702868
Iteration: 12, Func. Count: 152, Neg. LLF: 143.07020073479237
Iteration: 13, Func. Count: 164, Neg. LLF: 143.05458315682904
Iteration: 14, Func. Count: 176, Neg. LLF: 143.0539641684552
Iteration: 15, Func. Count: 188, Neg. LLF: 143.05392280245437
Iteration: 16, Func. Count: 200, Neg. LLF: 143.05391761666073
Iteration: 17, Func. Count: 212, Neg. LLF: 143.05391645664085
Iteration: 18, Func. Count: 223, Neg. LLF: 143.05391646823813
Optimization terminated successfully (Exit mode 0)
Current function value: 143.05391645664085
Iterations: 18
Function evaluations: 223
Gradient evaluations: 18
Iteration: 1, Func. Count: 6, Neg. LLF: 147.68350825097164
Iteration: 2, Func. Count: 12, Neg. LLF: 148.4284985189048
Iteration: 3, Func. Count: 19, Neg. LLF: 145.39027025933612
Iteration: 4, Func. Count: 25, Neg. LLF: 144.23838742635724
Iteration: 5, Func. Count: 30, Neg. LLF: 144.16166652959376
Iteration: 6, Func. Count: 35, Neg. LLF: 144.0890156815982
Iteration: 7, Func. Count: 40, Neg. LLF: 144.01565307233187
Iteration: 8, Func. Count: 45, Neg. LLF: 144.00595428063627
Iteration: 9, Func. Count: 50, Neg. LLF: 144.0053507471978
Iteration: 10, Func. Count: 55, Neg. LLF: 144.00534430402018
Iteration: 11, Func. Count: 59, Neg. LLF: 144.00534430399327
Optimization terminated successfully (Exit mode 0)
Current function value: 144.00534430402018
Iterations: 11
Function evaluations: 59
Gradient evaluations: 11
Iteration: 1, Func. Count: 7, Neg. LLF: 145.66677222450392
Iteration: 2, Func. Count: 15, Neg. LLF: 145.0853215675486
Iteration: 3, Func. Count: 22, Neg. LLF: 144.0860260314384
Iteration: 4, Func. Count: 28, Neg. LLF: 144.08071993751952
Iteration: 5, Func. Count: 34, Neg. LLF: 144.0801359652547
Iteration: 6, Func. Count: 40, Neg. LLF: 144.07642714458325
Iteration: 7, Func. Count: 46, Neg. LLF: 144.06577442983092
Iteration: 8, Func. Count: 52, Neg. LLF: 144.05385992651821
Iteration: 9, Func. Count: 58, Neg. LLF: 144.03676887188237
Iteration: 10, Func. Count: 64, Neg. LLF: 144.0287639985888
Iteration: 11, Func. Count: 70, Neg. LLF: 144.03784512787567
Iteration: 12, Func. Count: 77, Neg. LLF: 144.01322148926727
Iteration: 13, Func. Count: 83, Neg. LLF: 144.0073852268502
Iteration: 14, Func. Count: 89, Neg. LLF: 144.00615544479857
Iteration: 15, Func. Count: 95, Neg. LLF: 144.00534499572632
Iteration: 16, Func. Count: 101, Neg. LLF: 144.00534411338086
Optimization terminated successfully (Exit mode 0)
Current function value: 144.00534411338086
Iterations: 16
Function evaluations: 101
Gradient evaluations: 16
Iteration: 1, Func. Count: 8, Neg. LLF: 152.10711865877374
Iteration: 2, Func. Count: 17, Neg. LLF: 144.09030688562973
Iteration: 3, Func. Count: 24, Neg. LLF: 144.0860296837526
Iteration: 4, Func. Count: 31, Neg. LLF: 144.07383583285804
Iteration: 5, Func. Count: 38, Neg. LLF: 144.07368568125764
Iteration: 6, Func. Count: 45, Neg. LLF: 144.0736006479298
Iteration: 7, Func. Count: 52, Neg. LLF: 144.07307900595774
Iteration: 8, Func. Count: 59, Neg. LLF: 144.07021745630757
Iteration: 9, Func. Count: 66, Neg. LLF: 144.05998169601835
Iteration: 10, Func. Count: 73, Neg. LLF: 144.05578064642333
Iteration: 11, Func. Count: 80, Neg. LLF: 144.0535811151053
Iteration: 12, Func. Count: 87, Neg. LLF: 144.0522344985507
Iteration: 13, Func. Count: 94, Neg. LLF: 144.0511955360732
Iteration: 14, Func. Count: 101, Neg. LLF: 144.05088662857585
Iteration: 15, Func. Count: 108, Neg. LLF: 144.0508786637411
Iteration: 16, Func. Count: 114, Neg. LLF: 144.0508786638285
Optimization terminated successfully (Exit mode 0)
Current function value: 144.0508786637411
Iterations: 16
Function evaluations: 114
Gradient evaluations: 16
Iteration: 1, Func. Count: 9, Neg. LLF: 152.13826950847044
Iteration: 2, Func. Count: 19, Neg. LLF: 144.08375016048439
Iteration: 3, Func. Count: 27, Neg. LLF: 144.07829714187295
Iteration: 4, Func. Count: 35, Neg. LLF: 144.07269520846725
Iteration: 5, Func. Count: 43, Neg. LLF: 144.0726192427072
Iteration: 6, Func. Count: 51, Neg. LLF: 144.07218942451738
Iteration: 7, Func. Count: 59, Neg. LLF: 144.07039520745545
Iteration: 8, Func. Count: 67, Neg. LLF: 144.06874196978873
Iteration: 9, Func. Count: 75, Neg. LLF: 144.06823344123882
Iteration: 10, Func. Count: 83, Neg. LLF: 144.0655739610795
Iteration: 11, Func. Count: 91, Neg. LLF: 144.05453244760795
Iteration: 12, Func. Count: 99, Neg. LLF: 144.0568049267136
Iteration: 13, Func. Count: 108, Neg. LLF: 144.05144976525793
Iteration: 14, Func. Count: 116, Neg. LLF: 144.05088851231812
Iteration: 15, Func. Count: 124, Neg. LLF: 144.0508784657097
Iteration: 16, Func. Count: 131, Neg. LLF: 144.05087846603303
Optimization terminated successfully (Exit mode 0)
Current function value: 144.0508784657097
Iterations: 16
Function evaluations: 131
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 152.15948953771002
Iteration: 2, Func. Count: 21, Neg. LLF: 144.08017252712216
Iteration: 3, Func. Count: 30, Neg. LLF: 144.0759630150923
Iteration: 4, Func. Count: 39, Neg. LLF: 144.072805873628
Iteration: 5, Func. Count: 48, Neg. LLF: 144.07263347808035
Iteration: 6, Func. Count: 57, Neg. LLF: 144.07158382813887
Iteration: 7, Func. Count: 66, Neg. LLF: 144.07132466386207
Iteration: 8, Func. Count: 75, Neg. LLF: 144.07114700090594
Iteration: 9, Func. Count: 84, Neg. LLF: 144.07089729278704
Iteration: 10, Func. Count: 93, Neg. LLF: 144.07032960780677
Iteration: 11, Func. Count: 102, Neg. LLF: 144.05053144362864
Iteration: 12, Func. Count: 111, Neg. LLF: 144.04254197427312
Iteration: 13, Func. Count: 120, Neg. LLF: 144.04107922387422
Iteration: 14, Func. Count: 129, Neg. LLF: 144.04083066828616
Iteration: 15, Func. Count: 138, Neg. LLF: 144.04044922106803
Iteration: 16, Func. Count: 147, Neg. LLF: 144.0401070604604
Iteration: 17, Func. Count: 156, Neg. LLF: 144.03973202486972
Iteration: 18, Func. Count: 165, Neg. LLF: 144.03917698120358
Iteration: 19, Func. Count: 174, Neg. LLF: 144.03802487119188
Iteration: 20, Func. Count: 183, Neg. LLF: 144.03632407883714
Iteration: 21, Func. Count: 192, Neg. LLF: 144.03484555792585
Iteration: 22, Func. Count: 201, Neg. LLF: 144.03414576014046
Iteration: 23, Func. Count: 210, Neg. LLF: 144.03407829481148
Iteration: 24, Func. Count: 219, Neg. LLF: 144.03407726569787
Iteration: 25, Func. Count: 227, Neg. LLF: 144.0340772658481
Optimization terminated successfully (Exit mode 0)
Current function value: 144.03407726569787
Iterations: 25
Function evaluations: 227
Gradient evaluations: 25
Iteration: 1, Func. Count: 7, Neg. LLF: 148.142897514273
Iteration: 2, Func. Count: 14, Neg. LLF: 145.11365413319191
Iteration: 3, Func. Count: 21, Neg. LLF: 148.96574654830084
Iteration: 4, Func. Count: 28, Neg. LLF: 143.33613575176275
Iteration: 5, Func. Count: 34, Neg. LLF: 143.2848494925206
Iteration: 6, Func. Count: 40, Neg. LLF: 143.25284976499148
Iteration: 7, Func. Count: 46, Neg. LLF: 143.19771006399432
Iteration: 8, Func. Count: 52, Neg. LLF: 143.17158406090536
Iteration: 9, Func. Count: 58, Neg. LLF: 143.16678932743983
Iteration: 10, Func. Count: 64, Neg. LLF: 143.16660898991464
Iteration: 11, Func. Count: 70, Neg. LLF: 143.16659846001593
Iteration: 12, Func. Count: 76, Neg. LLF: 143.1665977625634
Optimization terminated successfully (Exit mode 0)
Current function value: 143.1665977625634
Iterations: 12
Function evaluations: 76
Gradient evaluations: 12
Iteration: 1, Func. Count: 8, Neg. LLF: 146.19191418874215
Iteration: 2, Func. Count: 16, Neg. LLF: 144.43350132861357
Iteration: 3, Func. Count: 24, Neg. LLF: 144.86095483892768
Iteration: 4, Func. Count: 33, Neg. LLF: 143.29210588384643
Iteration: 5, Func. Count: 41, Neg. LLF: 143.10351335956912
Iteration: 6, Func. Count: 48, Neg. LLF: 143.09838122704528
Iteration: 7, Func. Count: 55, Neg. LLF: 143.0976319010155
Iteration: 8, Func. Count: 62, Neg. LLF: 143.09461307829758
Iteration: 9, Func. Count: 69, Neg. LLF: 143.09227293234088
Iteration: 10, Func. Count: 76, Neg. LLF: 143.0909214359164
Iteration: 11, Func. Count: 83, Neg. LLF: 143.08995769331216
Iteration: 12, Func. Count: 90, Neg. LLF: 143.0898195996188
Iteration: 13, Func. Count: 97, Neg. LLF: 143.0898109920095
Iteration: 14, Func. Count: 103, Neg. LLF: 143.08981099201966
Optimization terminated successfully (Exit mode 0)
Current function value: 143.0898109920095
Iterations: 14
Function evaluations: 103
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 144.36759629495256
Iteration: 2, Func. Count: 18, Neg. LLF: 144.8653988147308
Iteration: 3, Func. Count: 28, Neg. LLF: 144.49136025604372
Iteration: 4, Func. Count: 37, Neg. LLF: 143.13886260924605
Iteration: 5, Func. Count: 45, Neg. LLF: 143.11492790647242
Iteration: 6, Func. Count: 53, Neg. LLF: 143.1002614912127
Iteration: 7, Func. Count: 61, Neg. LLF: 143.0979509260825
Iteration: 8, Func. Count: 69, Neg. LLF: 143.09696784349865
Iteration: 9, Func. Count: 77, Neg. LLF: 143.0956948333414
Iteration: 10, Func. Count: 85, Neg. LLF: 143.09331790153368
Iteration: 11, Func. Count: 93, Neg. LLF: 143.09114808708748
Iteration: 12, Func. Count: 101, Neg. LLF: 143.0899646659036
Iteration: 13, Func. Count: 109, Neg. LLF: 143.08981637239955
Iteration: 14, Func. Count: 117, Neg. LLF: 143.08981089648776
Iteration: 15, Func. Count: 124, Neg. LLF: 143.08981092620795
Optimization terminated successfully (Exit mode 0)
Current function value: 143.08981089648776
Iterations: 15
Function evaluations: 124
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 143.7211016584567
Iteration: 2, Func. Count: 20, Neg. LLF: 145.1673648184772
Iteration: 3, Func. Count: 31, Neg. LLF: 143.18715757916445
Iteration: 4, Func. Count: 40, Neg. LLF: 143.17003473491812
Iteration: 5, Func. Count: 50, Neg. LLF: 147.82886729142868
Iteration: 6, Func. Count: 60, Neg. LLF: 143.0994678485857
Iteration: 7, Func. Count: 69, Neg. LLF: 143.098036534828
Iteration: 8, Func. Count: 78, Neg. LLF: 143.09706942918982
Iteration: 9, Func. Count: 87, Neg. LLF: 143.0950805719877
Iteration: 10, Func. Count: 96, Neg. LLF: 143.09264975446285
Iteration: 11, Func. Count: 105, Neg. LLF: 143.09052378258284
Iteration: 12, Func. Count: 114, Neg. LLF: 143.0899005098045
Iteration: 13, Func. Count: 123, Neg. LLF: 143.08981481764158
Iteration: 14, Func. Count: 132, Neg. LLF: 143.08981077362927
Iteration: 15, Func. Count: 140, Neg. LLF: 143.08981080981388
Optimization terminated successfully (Exit mode 0)
Current function value: 143.08981077362927
Iterations: 15
Function evaluations: 140
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 144.84469788807866
Iteration: 2, Func. Count: 23, Neg. LLF: 145.10552406331416
Iteration: 3, Func. Count: 34, Neg. LLF: 144.04314850711847
Iteration: 4, Func. Count: 45, Neg. LLF: 143.10937473988236
Iteration: 5, Func. Count: 55, Neg. LLF: 143.15919893394135
Iteration: 6, Func. Count: 66, Neg. LLF: 143.11971276964417
Iteration: 7, Func. Count: 77, Neg. LLF: 143.10375298679446
Iteration: 8, Func. Count: 88, Neg. LLF: 143.09863292274312
Iteration: 9, Func. Count: 98, Neg. LLF: 143.09650343381944
Iteration: 10, Func. Count: 108, Neg. LLF: 143.0936951430607
Iteration: 11, Func. Count: 118, Neg. LLF: 143.0908529506825
Iteration: 12, Func. Count: 128, Neg. LLF: 143.08995017818344
Iteration: 13, Func. Count: 138, Neg. LLF: 143.08981742708275
Iteration: 14, Func. Count: 148, Neg. LLF: 143.089810840307
Iteration: 15, Func. Count: 157, Neg. LLF: 143.0898108469881
Optimization terminated successfully (Exit mode 0)
Current function value: 143.089810840307
Iterations: 15
Function evaluations: 157
Gradient evaluations: 15
Iteration: 1, Func. Count: 8, Neg. LLF: 149.84330205528101
Iteration: 2, Func. Count: 16, Neg. LLF: 145.08721078235192
Iteration: 3, Func. Count: 24, Neg. LLF: 145.91673997865885
Iteration: 4, Func. Count: 32, Neg. LLF: 143.27535679602767
Iteration: 5, Func. Count: 40, Neg. LLF: 143.98819866463947
Iteration: 6, Func. Count: 48, Neg. LLF: 143.0736936100157
Iteration: 7, Func. Count: 55, Neg. LLF: 143.04579890391346
Iteration: 8, Func. Count: 62, Neg. LLF: 143.01123992799546
Iteration: 9, Func. Count: 69, Neg. LLF: 143.00148534998084
Iteration: 10, Func. Count: 76, Neg. LLF: 142.99810571940236
Iteration: 11, Func. Count: 83, Neg. LLF: 142.99728569447956
Iteration: 12, Func. Count: 90, Neg. LLF: 142.99712734610475
Iteration: 13, Func. Count: 97, Neg. LLF: 142.99711999210697
Iteration: 14, Func. Count: 103, Neg. LLF: 142.99711999210922
Optimization terminated successfully (Exit mode 0)
Current function value: 142.99711999210697
Iterations: 14
Function evaluations: 103
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 146.99248221083258
Iteration: 2, Func. Count: 18, Neg. LLF: 146.62717312365575
Iteration: 3, Func. Count: 27, Neg. LLF: 145.42906182085562
Iteration: 4, Func. Count: 36, Neg. LLF: 144.4252263162004
Iteration: 5, Func. Count: 45, Neg. LLF: 143.1015251530103
Iteration: 6, Func. Count: 53, Neg. LLF: 143.22014607989982
Iteration: 7, Func. Count: 62, Neg. LLF: 143.09026379433567
Iteration: 8, Func. Count: 71, Neg. LLF: 143.0776273528032
Iteration: 9, Func. Count: 79, Neg. LLF: 143.058313239343
Iteration: 10, Func. Count: 87, Neg. LLF: 143.00765184996862
Iteration: 11, Func. Count: 95, Neg. LLF: 142.99891308593277
Iteration: 12, Func. Count: 103, Neg. LLF: 142.99724844305257
Iteration: 13, Func. Count: 111, Neg. LLF: 142.99713482989918
Iteration: 14, Func. Count: 119, Neg. LLF: 142.99712031198845
Iteration: 15, Func. Count: 126, Neg. LLF: 142.99712031684564
Optimization terminated successfully (Exit mode 0)
Current function value: 142.99712031198845
Iterations: 15
Function evaluations: 126
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 146.92760743213498
Iteration: 2, Func. Count: 20, Neg. LLF: 145.65498530984502
Iteration: 3, Func. Count: 30, Neg. LLF: 144.85579287652322
Iteration: 4, Func. Count: 40, Neg. LLF: 143.58066860826872
Iteration: 5, Func. Count: 50, Neg. LLF: 144.41398410871358
Iteration: 6, Func. Count: 60, Neg. LLF: 143.1415139657211
Iteration: 7, Func. Count: 69, Neg. LLF: 143.08457652935493
Iteration: 8, Func. Count: 78, Neg. LLF: 143.07731831988684
Iteration: 9, Func. Count: 87, Neg. LLF: 143.07262295973743
Iteration: 10, Func. Count: 96, Neg. LLF: 143.04829252931825
Iteration: 11, Func. Count: 105, Neg. LLF: 143.00788189481477
Iteration: 12, Func. Count: 114, Neg. LLF: 142.99927124018978
Iteration: 13, Func. Count: 123, Neg. LLF: 142.99757887485745
Iteration: 14, Func. Count: 132, Neg. LLF: 142.997131867927
Iteration: 15, Func. Count: 141, Neg. LLF: 142.9971201769376
Iteration: 16, Func. Count: 149, Neg. LLF: 142.9971202031519
Optimization terminated successfully (Exit mode 0)
Current function value: 142.9971201769376
Iterations: 16
Function evaluations: 149
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 146.85935838264686
Iteration: 2, Func. Count: 22, Neg. LLF: 145.83502747558646
Iteration: 3, Func. Count: 33, Neg. LLF: 146.19617607622587
Iteration: 4, Func. Count: 44, Neg. LLF: 143.54615359455255
Iteration: 5, Func. Count: 55, Neg. LLF: 150.56287552467865
Iteration: 6, Func. Count: 66, Neg. LLF: 143.1667335543632
Iteration: 7, Func. Count: 76, Neg. LLF: 143.09931070657
Iteration: 8, Func. Count: 86, Neg. LLF: 143.07976192848943
Iteration: 9, Func. Count: 96, Neg. LLF: 143.07477357062172
Iteration: 10, Func. Count: 106, Neg. LLF: 143.0649218786223
Iteration: 11, Func. Count: 116, Neg. LLF: 143.05053158667567
Iteration: 12, Func. Count: 126, Neg. LLF: 143.01566779692806
Iteration: 13, Func. Count: 136, Neg. LLF: 142.99967259765964
Iteration: 14, Func. Count: 146, Neg. LLF: 142.99758196149082
Iteration: 15, Func. Count: 156, Neg. LLF: 142.997141300327
Iteration: 16, Func. Count: 166, Neg. LLF: 142.99712151185176
Iteration: 17, Func. Count: 176, Neg. LLF: 142.9971200656485
Iteration: 18, Func. Count: 185, Neg. LLF: 142.99712010347164
Optimization terminated successfully (Exit mode 0)
Current function value: 142.9971200656485
Iterations: 18
Function evaluations: 185
Gradient evaluations: 18
Iteration: 1, Func. Count: 12, Neg. LLF: 146.65835243051433
Iteration: 2, Func. Count: 24, Neg. LLF: 145.78087412691164
Iteration: 3, Func. Count: 36, Neg. LLF: 148.69583890053735
Iteration: 4, Func. Count: 48, Neg. LLF: 143.54592673585228
Iteration: 5, Func. Count: 60, Neg. LLF: 147.66773795366103
Iteration: 6, Func. Count: 72, Neg. LLF: 144.48656320274853
Iteration: 7, Func. Count: 84, Neg. LLF: 143.07035442566124
Iteration: 8, Func. Count: 95, Neg. LLF: 143.07387036185412
Iteration: 9, Func. Count: 107, Neg. LLF: 143.06251077015574
Iteration: 10, Func. Count: 118, Neg. LLF: 143.05791464184747
Iteration: 11, Func. Count: 129, Neg. LLF: 143.04881199814437
Iteration: 12, Func. Count: 140, Neg. LLF: 143.0296877640959
Iteration: 13, Func. Count: 151, Neg. LLF: 143.01186684993064
Iteration: 14, Func. Count: 162, Neg. LLF: 142.99954788109423
Iteration: 15, Func. Count: 173, Neg. LLF: 142.99752185010723
Iteration: 16, Func. Count: 184, Neg. LLF: 142.99714729608561
Iteration: 17, Func. Count: 195, Neg. LLF: 142.99712258668484
Iteration: 18, Func. Count: 206, Neg. LLF: 142.99711986909523
Iteration: 19, Func. Count: 216, Neg. LLF: 142.9971198755463
Optimization terminated successfully (Exit mode 0)
Current function value: 142.99711986909523
Iterations: 19
Function evaluations: 216
Gradient evaluations: 19
Iteration: 1, Func. Count: 9, Neg. LLF: 151.08282625019382
Iteration: 2, Func. Count: 18, Neg. LLF: 144.439890444098
Iteration: 3, Func. Count: 27, Neg. LLF: 148.77163918401803
Iteration: 4, Func. Count: 36, Neg. LLF: 145.10909602625787
Iteration: 5, Func. Count: 47, Neg. LLF: 143.11272002289698
Iteration: 6, Func. Count: 55, Neg. LLF: 143.0774182157415
Iteration: 7, Func. Count: 63, Neg. LLF: 143.05487809368626
Iteration: 8, Func. Count: 71, Neg. LLF: 143.02224017362767
Iteration: 9, Func. Count: 79, Neg. LLF: 143.00477216000917
Iteration: 10, Func. Count: 87, Neg. LLF: 142.99998211209675
Iteration: 11, Func. Count: 95, Neg. LLF: 142.99754817710823
Iteration: 12, Func. Count: 103, Neg. LLF: 142.99716764486686
Iteration: 13, Func. Count: 111, Neg. LLF: 142.99712081159004
Iteration: 14, Func. Count: 119, Neg. LLF: 142.9971198060726
Iteration: 15, Func. Count: 126, Neg. LLF: 142.99711982484857
Optimization terminated successfully (Exit mode 0)
Current function value: 142.9971198060726
Iterations: 15
Function evaluations: 126
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 147.20409490858316
Iteration: 2, Func. Count: 20, Neg. LLF: 145.88675516035482
Iteration: 3, Func. Count: 30, Neg. LLF: 143.728076299578
Iteration: 4, Func. Count: 40, Neg. LLF: 145.62813384475712
Iteration: 5, Func. Count: 50, Neg. LLF: 143.26417379377725
Iteration: 6, Func. Count: 60, Neg. LLF: 143.08146828426374
Iteration: 7, Func. Count: 69, Neg. LLF: 143.07434649979479
Iteration: 8, Func. Count: 78, Neg. LLF: 143.06795561995582
Iteration: 9, Func. Count: 87, Neg. LLF: 143.04346971641402
Iteration: 10, Func. Count: 96, Neg. LLF: 143.01736977803142
Iteration: 11, Func. Count: 105, Neg. LLF: 143.00026950536878
Iteration: 12, Func. Count: 114, Neg. LLF: 142.99727584658996
Iteration: 13, Func. Count: 123, Neg. LLF: 142.99713842625718
Iteration: 14, Func. Count: 132, Neg. LLF: 142.99712095924136
Iteration: 15, Func. Count: 141, Neg. LLF: 142.99711983991082
Iteration: 16, Func. Count: 149, Neg. LLF: 142.99711984470454
Optimization terminated successfully (Exit mode 0)
Current function value: 142.99711983991082
Iterations: 16
Function evaluations: 149
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 147.2415621026988
Iteration: 2, Func. Count: 22, Neg. LLF: 145.71060503868966
Iteration: 3, Func. Count: 33, Neg. LLF: 156.15362353716793
Iteration: 4, Func. Count: 45, Neg. LLF: 143.61813049435125
Iteration: 5, Func. Count: 56, Neg. LLF: 143.4566783949733
Iteration: 6, Func. Count: 67, Neg. LLF: 143.0885290090006
Iteration: 7, Func. Count: 77, Neg. LLF: 143.0776309507641
Iteration: 8, Func. Count: 87, Neg. LLF: 143.07272268234126
Iteration: 9, Func. Count: 97, Neg. LLF: 143.06060809317924
Iteration: 10, Func. Count: 107, Neg. LLF: 143.04289706161785
Iteration: 11, Func. Count: 117, Neg. LLF: 143.01711753077336
Iteration: 12, Func. Count: 127, Neg. LLF: 142.99962812605224
Iteration: 13, Func. Count: 137, Neg. LLF: 142.99739166877745
Iteration: 14, Func. Count: 147, Neg. LLF: 142.99714138138347
Iteration: 15, Func. Count: 157, Neg. LLF: 142.9971213137819
Iteration: 16, Func. Count: 167, Neg. LLF: 142.99711990044602
Iteration: 17, Func. Count: 176, Neg. LLF: 142.99711992670817
Optimization terminated successfully (Exit mode 0)
Current function value: 142.99711990044602
Iterations: 17
Function evaluations: 176
Gradient evaluations: 17
Iteration: 1, Func. Count: 12, Neg. LLF: 147.24285579006502
Iteration: 2, Func. Count: 24, Neg. LLF: 145.7438274107565
Iteration: 3, Func. Count: 36, Neg. LLF: 161.60682244079567
Iteration: 4, Func. Count: 49, Neg. LLF: 143.73152803993477
Iteration: 5, Func. Count: 61, Neg. LLF: 143.5830678098435
Iteration: 6, Func. Count: 73, Neg. LLF: 143.14173348051116
Iteration: 7, Func. Count: 84, Neg. LLF: 143.0954243637923
Iteration: 8, Func. Count: 95, Neg. LLF: 143.07504290855513
Iteration: 9, Func. Count: 106, Neg. LLF: 143.07115988601993
Iteration: 10, Func. Count: 117, Neg. LLF: 143.05687314057897
Iteration: 11, Func. Count: 128, Neg. LLF: 143.0306389369916
Iteration: 12, Func. Count: 139, Neg. LLF: 143.0001669675825
Iteration: 13, Func. Count: 150, Neg. LLF: 142.99760019451844
Iteration: 14, Func. Count: 161, Neg. LLF: 142.99718007569524
Iteration: 15, Func. Count: 172, Neg. LLF: 142.99712207134675
Iteration: 16, Func. Count: 183, Neg. LLF: 142.9971201604419
Iteration: 17, Func. Count: 193, Neg. LLF: 142.99712019835306
Optimization terminated successfully (Exit mode 0)
Current function value: 142.9971201604419
Iterations: 17
Function evaluations: 193
Gradient evaluations: 17
Iteration: 1, Func. Count: 13, Neg. LLF: 147.2678579339313
Iteration: 2, Func. Count: 26, Neg. LLF: 145.53532127928088
Iteration: 3, Func. Count: 39, Neg. LLF: 151.93227312367014
Iteration: 4, Func. Count: 52, Neg. LLF: 143.61139919968403
Iteration: 5, Func. Count: 65, Neg. LLF: 156.86175509478005
Iteration: 6, Func. Count: 79, Neg. LLF: 143.30900546883214
Iteration: 7, Func. Count: 92, Neg. LLF: 143.06739819783874
Iteration: 8, Func. Count: 104, Neg. LLF: 143.07376566526443
Iteration: 9, Func. Count: 117, Neg. LLF: 143.06146983937526
Iteration: 10, Func. Count: 129, Neg. LLF: 143.05465801300875
Iteration: 11, Func. Count: 141, Neg. LLF: 143.03651856402888
Iteration: 12, Func. Count: 153, Neg. LLF: 143.01610220534494
Iteration: 13, Func. Count: 165, Neg. LLF: 143.00345655558132
Iteration: 14, Func. Count: 177, Neg. LLF: 142.9987600109944
Iteration: 15, Func. Count: 189, Neg. LLF: 142.9974237964294
Iteration: 16, Func. Count: 201, Neg. LLF: 142.99713438695832
Iteration: 17, Func. Count: 213, Neg. LLF: 142.9971201322636
Iteration: 18, Func. Count: 224, Neg. LLF: 142.9971201387037
Optimization terminated successfully (Exit mode 0)
Current function value: 142.9971201322636
Iterations: 18
Function evaluations: 224
Gradient evaluations: 18
Iteration: 1, Func. Count: 10, Neg. LLF: 150.6768156172955
Iteration: 2, Func. Count: 20, Neg. LLF: 144.3975736881238
Iteration: 3, Func. Count: 30, Neg. LLF: 149.3464484658529
Iteration: 4, Func. Count: 40, Neg. LLF: 145.05076975271774
Iteration: 5, Func. Count: 52, Neg. LLF: 143.1125815919301
Iteration: 6, Func. Count: 61, Neg. LLF: 143.0742094636187
Iteration: 7, Func. Count: 70, Neg. LLF: 143.05246695137285
Iteration: 8, Func. Count: 79, Neg. LLF: 143.02790892879443
Iteration: 9, Func. Count: 88, Neg. LLF: 143.00545390285023
Iteration: 10, Func. Count: 97, Neg. LLF: 143.00038944779843
Iteration: 11, Func. Count: 106, Neg. LLF: 142.99760738522014
Iteration: 12, Func. Count: 115, Neg. LLF: 142.99717896177458
Iteration: 13, Func. Count: 124, Neg. LLF: 142.99712087235224
Iteration: 14, Func. Count: 133, Neg. LLF: 142.99711980473563
Iteration: 15, Func. Count: 141, Neg. LLF: 142.9971198506442
Optimization terminated successfully (Exit mode 0)
Current function value: 142.99711980473563
Iterations: 15
Function evaluations: 141
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 146.9974747631492
Iteration: 2, Func. Count: 22, Neg. LLF: 146.26180384474088
Iteration: 3, Func. Count: 33, Neg. LLF: 150.3203246697182
Iteration: 4, Func. Count: 45, Neg. LLF: 143.47400877181408
Iteration: 5, Func. Count: 56, Neg. LLF: 143.619086082809
Iteration: 6, Func. Count: 67, Neg. LLF: 143.0858406244728
Iteration: 7, Func. Count: 77, Neg. LLF: 143.07902264116365
Iteration: 8, Func. Count: 87, Neg. LLF: 143.0707687337296
Iteration: 9, Func. Count: 97, Neg. LLF: 143.05956664277966
Iteration: 10, Func. Count: 107, Neg. LLF: 143.0317686476653
Iteration: 11, Func. Count: 117, Neg. LLF: 143.01013189875138
Iteration: 12, Func. Count: 127, Neg. LLF: 142.9988607210451
Iteration: 13, Func. Count: 137, Neg. LLF: 142.9972402395635
Iteration: 14, Func. Count: 147, Neg. LLF: 142.99713096262667
Iteration: 15, Func. Count: 157, Neg. LLF: 142.99712000915815
Iteration: 16, Func. Count: 166, Neg. LLF: 142.99712001400377
Optimization terminated successfully (Exit mode 0)
Current function value: 142.99712000915815
Iterations: 16
Function evaluations: 166
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 147.01576839466924
Iteration: 2, Func. Count: 24, Neg. LLF: 146.04687229006353
Iteration: 3, Func. Count: 36, Neg. LLF: 157.32872989879726
Iteration: 4, Func. Count: 48, Neg. LLF: 143.9271739877585
Iteration: 5, Func. Count: 60, Neg. LLF: 143.7301906983955
Iteration: 6, Func. Count: 72, Neg. LLF: 143.0868570551774
Iteration: 7, Func. Count: 83, Neg. LLF: 143.08108062971263
Iteration: 8, Func. Count: 94, Neg. LLF: 143.0761933550728
Iteration: 9, Func. Count: 105, Neg. LLF: 143.05517152404335
Iteration: 10, Func. Count: 116, Neg. LLF: 143.02261846896937
Iteration: 11, Func. Count: 127, Neg. LLF: 143.00985288101649
Iteration: 12, Func. Count: 138, Neg. LLF: 142.9991846575322
Iteration: 13, Func. Count: 149, Neg. LLF: 142.9973718832068
Iteration: 14, Func. Count: 160, Neg. LLF: 142.99714582514338
Iteration: 15, Func. Count: 171, Neg. LLF: 142.99712031823137
Iteration: 16, Func. Count: 181, Neg. LLF: 142.99712034453563
Optimization terminated successfully (Exit mode 0)
Current function value: 142.99712031823137
Iterations: 16
Function evaluations: 181
Gradient evaluations: 16
Iteration: 1, Func. Count: 13, Neg. LLF: 147.0141258951814
Iteration: 2, Func. Count: 26, Neg. LLF: 146.04713355251968
Iteration: 3, Func. Count: 39, Neg. LLF: 166.1493542935687
Iteration: 4, Func. Count: 53, Neg. LLF: 143.90878973766692
Iteration: 5, Func. Count: 66, Neg. LLF: 144.10878552585038
Iteration: 6, Func. Count: 79, Neg. LLF: 143.17067321960815
Iteration: 7, Func. Count: 91, Neg. LLF: 143.1526857736804
Iteration: 8, Func. Count: 104, Neg. LLF: 143.07968086160236
Iteration: 9, Func. Count: 116, Neg. LLF: 143.07533965794315
Iteration: 10, Func. Count: 128, Neg. LLF: 143.05925849528987
Iteration: 11, Func. Count: 140, Neg. LLF: 143.0393895206135
Iteration: 12, Func. Count: 152, Neg. LLF: 143.0217730540415
Iteration: 13, Func. Count: 164, Neg. LLF: 143.01057440008574
Iteration: 14, Func. Count: 176, Neg. LLF: 142.99970300085192
Iteration: 15, Func. Count: 188, Neg. LLF: 142.9975059874762
Iteration: 16, Func. Count: 200, Neg. LLF: 142.99715871708676
Iteration: 17, Func. Count: 212, Neg. LLF: 142.99712069455182
Iteration: 18, Func. Count: 224, Neg. LLF: 142.99711994103686
Optimization terminated successfully (Exit mode 0)
Current function value: 142.99711994103686
Iterations: 18
Function evaluations: 224
Gradient evaluations: 18
Iteration: 1, Func. Count: 14, Neg. LLF: 147.02286133861625
Iteration: 2, Func. Count: 28, Neg. LLF: 146.00880260727402
Iteration: 3, Func. Count: 42, Neg. LLF: 167.88578987640042
Iteration: 4, Func. Count: 57, Neg. LLF: 144.09017522697002
Iteration: 5, Func. Count: 71, Neg. LLF: 144.99435097108002
Iteration: 6, Func. Count: 85, Neg. LLF: 143.20229115078592
Iteration: 7, Func. Count: 98, Neg. LLF: 143.6162821481028
Iteration: 8, Func. Count: 112, Neg. LLF: 143.14534724165267
Iteration: 9, Func. Count: 126, Neg. LLF: 143.1079658649814
Iteration: 10, Func. Count: 140, Neg. LLF: 143.06031567348666
Iteration: 11, Func. Count: 153, Neg. LLF: 143.0562569453047
Iteration: 12, Func. Count: 166, Neg. LLF: 143.0487390441371
Iteration: 13, Func. Count: 179, Neg. LLF: 143.03491579127834
Iteration: 14, Func. Count: 192, Neg. LLF: 143.0143678327602
Iteration: 15, Func. Count: 205, Neg. LLF: 143.004043579825
Iteration: 16, Func. Count: 218, Neg. LLF: 142.99791040387396
Iteration: 17, Func. Count: 231, Neg. LLF: 142.99728708749618
Iteration: 18, Func. Count: 244, Neg. LLF: 142.9971287353828
Iteration: 19, Func. Count: 257, Neg. LLF: 142.99712001428279
Iteration: 20, Func. Count: 269, Neg. LLF: 142.99712002074006
Optimization terminated successfully (Exit mode 0)
Current function value: 142.99712001428279
Iterations: 20
Function evaluations: 269
Gradient evaluations: 20
Iteration: 1, Func. Count: 7, Neg. LLF: 148.03373334484107
Iteration: 2, Func. Count: 14, Neg. LLF: 147.93075453885527
Iteration: 3, Func. Count: 22, Neg. LLF: 146.02395885240952
Iteration: 4, Func. Count: 29, Neg. LLF: 144.24087181896348
Iteration: 5, Func. Count: 35, Neg. LLF: 144.17392646258844
Iteration: 6, Func. Count: 41, Neg. LLF: 144.0846362418101
Iteration: 7, Func. Count: 47, Neg. LLF: 144.02532150036856
Iteration: 8, Func. Count: 53, Neg. LLF: 144.00663556963377
Iteration: 9, Func. Count: 59, Neg. LLF: 144.0053729207047
Iteration: 10, Func. Count: 65, Neg. LLF: 144.00534542094678
Iteration: 11, Func. Count: 71, Neg. LLF: 144.00534419823532
Iteration: 12, Func. Count: 76, Neg. LLF: 144.00534423031365
Optimization terminated successfully (Exit mode 0)
Current function value: 144.00534419823532
Iterations: 12
Function evaluations: 76
Gradient evaluations: 12
Iteration: 1, Func. Count: 8, Neg. LLF: 144.61842455186508
Iteration: 2, Func. Count: 16, Neg. LLF: 145.29566086630035
Iteration: 3, Func. Count: 25, Neg. LLF: 144.0865030733652
Iteration: 4, Func. Count: 32, Neg. LLF: 144.08068534715454
Iteration: 5, Func. Count: 39, Neg. LLF: 144.08016123754672
Iteration: 6, Func. Count: 46, Neg. LLF: 144.07674880419546
Iteration: 7, Func. Count: 53, Neg. LLF: 144.05487997973228
Iteration: 8, Func. Count: 60, Neg. LLF: 144.11189943703044
Iteration: 9, Func. Count: 68, Neg. LLF: 144.02670420735336
Iteration: 10, Func. Count: 75, Neg. LLF: 144.06075233527739
Iteration: 11, Func. Count: 83, Neg. LLF: 144.00583707453163
Iteration: 12, Func. Count: 90, Neg. LLF: 144.0053647203408
Iteration: 13, Func. Count: 97, Neg. LLF: 144.00535411129053
Iteration: 14, Func. Count: 104, Neg. LLF: 144.00534876178992
Iteration: 15, Func. Count: 111, Neg. LLF: 144.00534528532614
Iteration: 16, Func. Count: 118, Neg. LLF: 144.0053442212495
Iteration: 17, Func. Count: 124, Neg. LLF: 144.0053442227315
Optimization terminated successfully (Exit mode 0)
Current function value: 144.0053442212495
Iterations: 17
Function evaluations: 124
Gradient evaluations: 17
Iteration: 1, Func. Count: 9, Neg. LLF: 152.09733816831917
Iteration: 2, Func. Count: 19, Neg. LLF: 144.09002849631418
Iteration: 3, Func. Count: 27, Neg. LLF: 144.085263335039
Iteration: 4, Func. Count: 35, Neg. LLF: 144.07381610858266
Iteration: 5, Func. Count: 43, Neg. LLF: 144.07373905072637
Iteration: 6, Func. Count: 51, Neg. LLF: 144.07348681759103
Iteration: 7, Func. Count: 59, Neg. LLF: 144.0730034992396
Iteration: 8, Func. Count: 67, Neg. LLF: 144.07159365034556
Iteration: 9, Func. Count: 75, Neg. LLF: 144.06851610083453
Iteration: 10, Func. Count: 83, Neg. LLF: 144.0635866618499
Iteration: 11, Func. Count: 91, Neg. LLF: 144.05653166534074
Iteration: 12, Func. Count: 99, Neg. LLF: 144.05222801145604
Iteration: 13, Func. Count: 107, Neg. LLF: 144.05097607119978
Iteration: 14, Func. Count: 115, Neg. LLF: 144.05090006427787
Iteration: 15, Func. Count: 123, Neg. LLF: 144.0508787017071
Iteration: 16, Func. Count: 131, Neg. LLF: 144.05087819514128
Optimization terminated successfully (Exit mode 0)
Current function value: 144.05087819514128
Iterations: 16
Function evaluations: 131
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 152.13120692390905
Iteration: 2, Func. Count: 21, Neg. LLF: 144.08322519868346
Iteration: 3, Func. Count: 30, Neg. LLF: 144.07595844887152
Iteration: 4, Func. Count: 39, Neg. LLF: 144.0731407418561
Iteration: 5, Func. Count: 48, Neg. LLF: 144.0729984105299
Iteration: 6, Func. Count: 57, Neg. LLF: 144.0726596464154
Iteration: 7, Func. Count: 66, Neg. LLF: 144.0721104157893
Iteration: 8, Func. Count: 75, Neg. LLF: 144.07135816094387
Iteration: 9, Func. Count: 84, Neg. LLF: 144.07070073118746
Iteration: 10, Func. Count: 93, Neg. LLF: 144.07025278076136
Iteration: 11, Func. Count: 102, Neg. LLF: 144.06992492202838
Iteration: 12, Func. Count: 111, Neg. LLF: 144.06884532409495
Iteration: 13, Func. Count: 120, Neg. LLF: 144.06676363458888
Iteration: 14, Func. Count: 129, Neg. LLF: 144.0618414593532
Iteration: 15, Func. Count: 138, Neg. LLF: 144.05806321013205
Iteration: 16, Func. Count: 147, Neg. LLF: 144.05343602845238
Iteration: 17, Func. Count: 156, Neg. LLF: 144.0510914888451
Iteration: 18, Func. Count: 165, Neg. LLF: 144.0509097818892
Iteration: 19, Func. Count: 174, Neg. LLF: 144.0508792670242
Iteration: 20, Func. Count: 183, Neg. LLF: 144.0508781991026
Iteration: 21, Func. Count: 191, Neg. LLF: 144.05087819948895
Optimization terminated successfully (Exit mode 0)
Current function value: 144.0508781991026
Iterations: 21
Function evaluations: 191
Gradient evaluations: 21
Iteration: 1, Func. Count: 11, Neg. LLF: 152.15339134138455
Iteration: 2, Func. Count: 23, Neg. LLF: 144.0796595734404
Iteration: 3, Func. Count: 33, Neg. LLF: 144.0746347878789
Iteration: 4, Func. Count: 43, Neg. LLF: 144.07343254555747
Iteration: 5, Func. Count: 53, Neg. LLF: 144.0731711178863
Iteration: 6, Func. Count: 63, Neg. LLF: 144.07210489340477
Iteration: 7, Func. Count: 73, Neg. LLF: 144.07153263113935
Iteration: 8, Func. Count: 83, Neg. LLF: 144.0713218867032
Iteration: 9, Func. Count: 93, Neg. LLF: 144.07120399618478
Iteration: 10, Func. Count: 103, Neg. LLF: 144.07104993031794
Iteration: 11, Func. Count: 113, Neg. LLF: 144.0704899928806
Iteration: 12, Func. Count: 123, Neg. LLF: 144.06915938971224
Iteration: 13, Func. Count: 133, Neg. LLF: 144.06500482196935
Iteration: 14, Func. Count: 143, Neg. LLF: 144.06106341560783
Iteration: 15, Func. Count: 153, Neg. LLF: 144.0525263254773
Iteration: 16, Func. Count: 163, Neg. LLF: 144.0513389939974
Iteration: 17, Func. Count: 173, Neg. LLF: 144.0509650226236
Iteration: 18, Func. Count: 183, Neg. LLF: 144.05091927244385
Iteration: 19, Func. Count: 193, Neg. LLF: 144.05087840976395
Iteration: 20, Func. Count: 202, Neg. LLF: 144.05087841048248
Optimization terminated successfully (Exit mode 0)
Current function value: 144.05087840976395
Iterations: 20
Function evaluations: 202
Gradient evaluations: 20
Iteration: 1, Func. Count: 8, Neg. LLF: 148.61283152900367
Iteration: 2, Func. Count: 16, Neg. LLF: 145.09128211320242
Iteration: 3, Func. Count: 24, Neg. LLF: 149.75314503134848
Iteration: 4, Func. Count: 32, Neg. LLF: 143.38487115267276
Iteration: 5, Func. Count: 39, Neg. LLF: 143.33406863620576
Iteration: 6, Func. Count: 46, Neg. LLF: 143.27102145747082
Iteration: 7, Func. Count: 53, Neg. LLF: 143.2485390840326
Iteration: 8, Func. Count: 60, Neg. LLF: 143.180427453104
Iteration: 9, Func. Count: 67, Neg. LLF: 143.16807263268993
Iteration: 10, Func. Count: 74, Neg. LLF: 143.16660471030738
Iteration: 11, Func. Count: 81, Neg. LLF: 143.16659775598893
Iteration: 12, Func. Count: 87, Neg. LLF: 143.1665977559882
Optimization terminated successfully (Exit mode 0)
Current function value: 143.16659775598893
Iterations: 12
Function evaluations: 87
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 146.2093412262864
Iteration: 2, Func. Count: 18, Neg. LLF: 144.14116504168405
Iteration: 3, Func. Count: 27, Neg. LLF: 145.4722555801136
Iteration: 4, Func. Count: 36, Neg. LLF: 143.11093977506394
Iteration: 5, Func. Count: 44, Neg. LLF: 143.17960600051197
Iteration: 6, Func. Count: 53, Neg. LLF: 143.09984843585755
Iteration: 7, Func. Count: 61, Neg. LLF: 143.0977659411292
Iteration: 8, Func. Count: 69, Neg. LLF: 143.09674447220536
Iteration: 9, Func. Count: 77, Neg. LLF: 143.09532860055793
Iteration: 10, Func. Count: 85, Neg. LLF: 143.09252341294393
Iteration: 11, Func. Count: 93, Neg. LLF: 143.0906326471656
Iteration: 12, Func. Count: 101, Neg. LLF: 143.08992489075627
Iteration: 13, Func. Count: 109, Neg. LLF: 143.08981579176475
Iteration: 14, Func. Count: 117, Neg. LLF: 143.08981081543297
Iteration: 15, Func. Count: 124, Neg. LLF: 143.08981081543806
Optimization terminated successfully (Exit mode 0)
Current function value: 143.08981081543297
Iterations: 15
Function evaluations: 124
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 143.7751870055525
Iteration: 2, Func. Count: 20, Neg. LLF: 145.40444144707428
Iteration: 3, Func. Count: 30, Neg. LLF: 144.75105096521182
Iteration: 4, Func. Count: 40, Neg. LLF: 143.1813516860769
Iteration: 5, Func. Count: 49, Neg. LLF: 143.28497582753775
Iteration: 6, Func. Count: 59, Neg. LLF: 143.26396764847863
Iteration: 7, Func. Count: 69, Neg. LLF: 143.09979346794884
Iteration: 8, Func. Count: 78, Neg. LLF: 143.09822362383375
Iteration: 9, Func. Count: 87, Neg. LLF: 143.09686876606503
Iteration: 10, Func. Count: 96, Neg. LLF: 143.09356561591804
Iteration: 11, Func. Count: 105, Neg. LLF: 143.09102936092108
Iteration: 12, Func. Count: 114, Neg. LLF: 143.0900040873262
Iteration: 13, Func. Count: 123, Neg. LLF: 143.08982202979595
Iteration: 14, Func. Count: 132, Neg. LLF: 143.08981092358232
Iteration: 15, Func. Count: 140, Neg. LLF: 143.0898109533108
Optimization terminated successfully (Exit mode 0)
Current function value: 143.08981092358232
Iterations: 15
Function evaluations: 140
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 143.69915430515456
Iteration: 2, Func. Count: 22, Neg. LLF: 145.46294819669737
Iteration: 3, Func. Count: 33, Neg. LLF: 143.2158461659451
Iteration: 4, Func. Count: 43, Neg. LLF: 143.43925380482116
Iteration: 5, Func. Count: 54, Neg. LLF: 146.9221189215531
Iteration: 6, Func. Count: 65, Neg. LLF: 143.1238948109712
Iteration: 7, Func. Count: 76, Neg. LLF: 143.09984927537906
Iteration: 8, Func. Count: 86, Neg. LLF: 143.09805574733235
Iteration: 9, Func. Count: 96, Neg. LLF: 143.09723957583978
Iteration: 10, Func. Count: 106, Neg. LLF: 143.09354869549264
Iteration: 11, Func. Count: 116, Neg. LLF: 143.0907880863756
Iteration: 12, Func. Count: 126, Neg. LLF: 143.09003292578222
Iteration: 13, Func. Count: 136, Neg. LLF: 143.08981897813416
Iteration: 14, Func. Count: 146, Neg. LLF: 143.0898110154265
Iteration: 15, Func. Count: 155, Neg. LLF: 143.0898110516333
Optimization terminated successfully (Exit mode 0)
Current function value: 143.0898110154265
Iterations: 15
Function evaluations: 155
Gradient evaluations: 15
Iteration: 1, Func. Count: 12, Neg. LLF: 144.9992465266444
Iteration: 2, Func. Count: 25, Neg. LLF: 144.41984570105294
Iteration: 3, Func. Count: 37, Neg. LLF: 144.1218089278504
Iteration: 4, Func. Count: 49, Neg. LLF: 143.15833694244375
Iteration: 5, Func. Count: 60, Neg. LLF: 143.2131369974916
Iteration: 6, Func. Count: 72, Neg. LLF: 143.1933652192689
Iteration: 7, Func. Count: 84, Neg. LLF: 143.1344076669784
Iteration: 8, Func. Count: 96, Neg. LLF: 143.09956080490448
Iteration: 9, Func. Count: 107, Neg. LLF: 143.0988472835697
Iteration: 10, Func. Count: 118, Neg. LLF: 143.09747307240113
Iteration: 11, Func. Count: 129, Neg. LLF: 143.09371049107915
Iteration: 12, Func. Count: 140, Neg. LLF: 143.09103765841402
Iteration: 13, Func. Count: 151, Neg. LLF: 143.09004107345837
Iteration: 14, Func. Count: 162, Neg. LLF: 143.08982573569975
Iteration: 15, Func. Count: 173, Neg. LLF: 143.08981119348653
Iteration: 16, Func. Count: 183, Neg. LLF: 143.08981120014917
Optimization terminated successfully (Exit mode 0)
Current function value: 143.08981119348653
Iterations: 16
Function evaluations: 183
Gradient evaluations: 16
Iteration: 1, Func. Count: 9, Neg. LLF: 150.62801863316113
Iteration: 2, Func. Count: 18, Neg. LLF: 144.25445567392907
Iteration: 3, Func. Count: 27, Neg. LLF: 149.7485830362987
Iteration: 4, Func. Count: 36, Neg. LLF: 143.28739865116114
Iteration: 5, Func. Count: 45, Neg. LLF: 144.3611076848669
Iteration: 6, Func. Count: 54, Neg. LLF: 143.07328728318717
Iteration: 7, Func. Count: 62, Neg. LLF: 143.05204239853703
Iteration: 8, Func. Count: 70, Neg. LLF: 143.03093533024332
Iteration: 9, Func. Count: 78, Neg. LLF: 143.0063911424922
Iteration: 10, Func. Count: 86, Neg. LLF: 142.9998746192318
Iteration: 11, Func. Count: 94, Neg. LLF: 142.99747865164585
Iteration: 12, Func. Count: 102, Neg. LLF: 142.99718250436692
Iteration: 13, Func. Count: 110, Neg. LLF: 142.99712083313864
Iteration: 14, Func. Count: 118, Neg. LLF: 142.9971198452485
Optimization terminated successfully (Exit mode 0)
Current function value: 142.9971198452485
Iterations: 14
Function evaluations: 118
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 146.9765061309974
Iteration: 2, Func. Count: 20, Neg. LLF: 146.881594593574
Iteration: 3, Func. Count: 30, Neg. LLF: 145.44841123992373
Iteration: 4, Func. Count: 40, Neg. LLF: 144.59639181826188
Iteration: 5, Func. Count: 50, Neg. LLF: 143.10866237930142
Iteration: 6, Func. Count: 59, Neg. LLF: 143.22901281494507
Iteration: 7, Func. Count: 69, Neg. LLF: 143.10930695020795
Iteration: 8, Func. Count: 79, Neg. LLF: 143.0785444076972
Iteration: 9, Func. Count: 88, Neg. LLF: 143.0595152691981
Iteration: 10, Func. Count: 97, Neg. LLF: 143.01074102733645
Iteration: 11, Func. Count: 106, Neg. LLF: 143.00128643434337
Iteration: 12, Func. Count: 115, Neg. LLF: 142.99782184326932
Iteration: 13, Func. Count: 124, Neg. LLF: 142.99725682041893
Iteration: 14, Func. Count: 133, Neg. LLF: 142.99712813233563
Iteration: 15, Func. Count: 142, Neg. LLF: 142.99712023000393
Iteration: 16, Func. Count: 150, Neg. LLF: 142.99712023477912
Optimization terminated successfully (Exit mode 0)
Current function value: 142.99712023000393
Iterations: 16
Function evaluations: 150
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 146.9190940616353
Iteration: 2, Func. Count: 22, Neg. LLF: 145.7762888984405
Iteration: 3, Func. Count: 33, Neg. LLF: 143.79222779289395
Iteration: 4, Func. Count: 44, Neg. LLF: 143.86607495781084
Iteration: 5, Func. Count: 55, Neg. LLF: 145.35487841185136
Iteration: 6, Func. Count: 66, Neg. LLF: 143.13953250474677
Iteration: 7, Func. Count: 76, Neg. LLF: 143.08201131304605
Iteration: 8, Func. Count: 86, Neg. LLF: 143.07649935409432
Iteration: 9, Func. Count: 96, Neg. LLF: 143.07042071953148
Iteration: 10, Func. Count: 106, Neg. LLF: 143.05138486357075
Iteration: 11, Func. Count: 116, Neg. LLF: 143.01959630330637
Iteration: 12, Func. Count: 126, Neg. LLF: 143.00173965622724
Iteration: 13, Func. Count: 136, Neg. LLF: 142.99787502222964
Iteration: 14, Func. Count: 146, Neg. LLF: 142.9971942938088
Iteration: 15, Func. Count: 156, Neg. LLF: 142.9971230014371
Iteration: 16, Func. Count: 166, Neg. LLF: 142.99711994186805
Iteration: 17, Func. Count: 175, Neg. LLF: 142.9971199680884
Optimization terminated successfully (Exit mode 0)
Current function value: 142.99711994186805
Iterations: 17
Function evaluations: 175
Gradient evaluations: 17
Iteration: 1, Func. Count: 12, Neg. LLF: 146.85261797572673
Iteration: 2, Func. Count: 24, Neg. LLF: 145.9707171908397
Iteration: 3, Func. Count: 36, Neg. LLF: 144.3312905841956
Iteration: 4, Func. Count: 48, Neg. LLF: 143.7234369480716
Iteration: 5, Func. Count: 60, Neg. LLF: 156.07892859553982
Iteration: 6, Func. Count: 73, Neg. LLF: 143.1709679461587
Iteration: 7, Func. Count: 84, Neg. LLF: 143.0839985961765
Iteration: 8, Func. Count: 95, Neg. LLF: 143.07783488341383
Iteration: 9, Func. Count: 106, Neg. LLF: 143.0721420926782
Iteration: 10, Func. Count: 117, Neg. LLF: 143.05671863920708
Iteration: 11, Func. Count: 128, Neg. LLF: 143.034358175817
Iteration: 12, Func. Count: 139, Neg. LLF: 143.0050554324642
Iteration: 13, Func. Count: 150, Neg. LLF: 142.99835030418302
Iteration: 14, Func. Count: 161, Neg. LLF: 142.9973486801069
Iteration: 15, Func. Count: 172, Neg. LLF: 142.99713053236005
Iteration: 16, Func. Count: 183, Neg. LLF: 142.9971219169173
Iteration: 17, Func. Count: 194, Neg. LLF: 142.99712010487036
Iteration: 18, Func. Count: 204, Neg. LLF: 142.99712014276042
Optimization terminated successfully (Exit mode 0)
Current function value: 142.99712010487036
Iterations: 18
Function evaluations: 204
Gradient evaluations: 18
Iteration: 1, Func. Count: 13, Neg. LLF: 146.49779963851356
Iteration: 2, Func. Count: 26, Neg. LLF: 145.8230393485326
Iteration: 3, Func. Count: 39, Neg. LLF: 165.04367563084816
Iteration: 4, Func. Count: 53, Neg. LLF: 143.5771734961183
Iteration: 5, Func. Count: 66, Neg. LLF: 143.5457711406207
Iteration: 6, Func. Count: 79, Neg. LLF: 144.5733459475045
Iteration: 7, Func. Count: 92, Neg. LLF: 143.0647603122407
Iteration: 8, Func. Count: 104, Neg. LLF: 143.06272019224318
Iteration: 9, Func. Count: 116, Neg. LLF: 143.0587615627241
Iteration: 10, Func. Count: 128, Neg. LLF: 143.05456025683924
Iteration: 11, Func. Count: 140, Neg. LLF: 143.03189956306295
Iteration: 12, Func. Count: 152, Neg. LLF: 143.00091536459155
Iteration: 13, Func. Count: 164, Neg. LLF: 142.99787488100347
Iteration: 14, Func. Count: 176, Neg. LLF: 142.9972410986383
Iteration: 15, Func. Count: 188, Neg. LLF: 142.99712626559455
Iteration: 16, Func. Count: 200, Neg. LLF: 142.9971200467531
Iteration: 17, Func. Count: 211, Neg. LLF: 142.99712005326583
Optimization terminated successfully (Exit mode 0)
Current function value: 142.9971200467531
Iterations: 17
Function evaluations: 211
Gradient evaluations: 17
Iteration: 1, Func. Count: 10, Neg. LLF: 151.47064078734232
Iteration: 2, Func. Count: 20, Neg. LLF: 144.21873759604992
Iteration: 3, Func. Count: 30, Neg. LLF: 151.10097757329092
Iteration: 4, Func. Count: 41, Neg. LLF: 144.27915086613302
Iteration: 5, Func. Count: 51, Neg. LLF: 143.1458336513752
Iteration: 6, Func. Count: 60, Neg. LLF: 143.07714572854528
Iteration: 7, Func. Count: 69, Neg. LLF: 143.05966388988384
Iteration: 8, Func. Count: 78, Neg. LLF: 143.0277682941712
Iteration: 9, Func. Count: 87, Neg. LLF: 142.99957993094242
Iteration: 10, Func. Count: 96, Neg. LLF: 142.9973638366075
Iteration: 11, Func. Count: 105, Neg. LLF: 142.99712966237976
Iteration: 12, Func. Count: 114, Neg. LLF: 142.99712011136094
Iteration: 13, Func. Count: 122, Neg. LLF: 142.99712009257388
Optimization terminated successfully (Exit mode 0)
Current function value: 142.99712011136094
Iterations: 13
Function evaluations: 122
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 147.18671328238
Iteration: 2, Func. Count: 22, Neg. LLF: 146.08937856568744
Iteration: 3, Func. Count: 33, Neg. LLF: 144.6694032197451
Iteration: 4, Func. Count: 44, Neg. LLF: 144.4344564181068
Iteration: 5, Func. Count: 55, Neg. LLF: 143.20868398029288
Iteration: 6, Func. Count: 66, Neg. LLF: 143.16088789553078
Iteration: 7, Func. Count: 77, Neg. LLF: 143.07880373420736
Iteration: 8, Func. Count: 87, Neg. LLF: 143.07105698818748
Iteration: 9, Func. Count: 97, Neg. LLF: 143.0608286609681
Iteration: 10, Func. Count: 107, Neg. LLF: 143.02677214349168
Iteration: 11, Func. Count: 117, Neg. LLF: 143.00301446565103
Iteration: 12, Func. Count: 127, Neg. LLF: 142.99804329923055
Iteration: 13, Func. Count: 137, Neg. LLF: 142.99716417264096
Iteration: 14, Func. Count: 147, Neg. LLF: 142.99712243505007
Iteration: 15, Func. Count: 157, Neg. LLF: 142.9971199106593
Iteration: 16, Func. Count: 166, Neg. LLF: 142.99711991549574
Optimization terminated successfully (Exit mode 0)
Current function value: 142.9971199106593
Iterations: 16
Function evaluations: 166
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 147.229506161885
Iteration: 2, Func. Count: 24, Neg. LLF: 145.59960695672018
Iteration: 3, Func. Count: 36, Neg. LLF: 153.1152928677424
Iteration: 4, Func. Count: 48, Neg. LLF: 143.6977316679235
Iteration: 5, Func. Count: 60, Neg. LLF: 143.5220720179914
Iteration: 6, Func. Count: 72, Neg. LLF: 143.08066429394717
Iteration: 7, Func. Count: 83, Neg. LLF: 143.07625023373285
Iteration: 8, Func. Count: 94, Neg. LLF: 143.07113521519585
Iteration: 9, Func. Count: 105, Neg. LLF: 143.04029784448696
Iteration: 10, Func. Count: 116, Neg. LLF: 143.00372954302154
Iteration: 11, Func. Count: 127, Neg. LLF: 142.99861947391122
Iteration: 12, Func. Count: 138, Neg. LLF: 142.99732010198935
Iteration: 13, Func. Count: 149, Neg. LLF: 142.99714159936147
Iteration: 14, Func. Count: 160, Neg. LLF: 142.99712043948472
Iteration: 15, Func. Count: 171, Neg. LLF: 142.99711981545568
Optimization terminated successfully (Exit mode 0)
Current function value: 142.99711981545568
Iterations: 15
Function evaluations: 171
Gradient evaluations: 15
Iteration: 1, Func. Count: 13, Neg. LLF: 147.23123164330408
Iteration: 2, Func. Count: 26, Neg. LLF: 145.55270395152021
Iteration: 3, Func. Count: 39, Neg. LLF: 157.87035707451366
Iteration: 4, Func. Count: 52, Neg. LLF: 143.68996732242562
Iteration: 5, Func. Count: 65, Neg. LLF: 144.3017240504931
Iteration: 6, Func. Count: 78, Neg. LLF: 143.14267220527455
Iteration: 7, Func. Count: 90, Neg. LLF: 143.09877738199205
Iteration: 8, Func. Count: 102, Neg. LLF: 143.07612916239137
Iteration: 9, Func. Count: 114, Neg. LLF: 143.07254004470363
Iteration: 10, Func. Count: 126, Neg. LLF: 143.049969023956
Iteration: 11, Func. Count: 138, Neg. LLF: 143.00534593496812
Iteration: 12, Func. Count: 150, Neg. LLF: 142.99905497247718
Iteration: 13, Func. Count: 162, Neg. LLF: 142.9974722596603
Iteration: 14, Func. Count: 174, Neg. LLF: 142.99714882037586
Iteration: 15, Func. Count: 186, Neg. LLF: 142.99712220499606
Iteration: 16, Func. Count: 198, Neg. LLF: 142.99711991454635
Iteration: 17, Func. Count: 209, Neg. LLF: 142.9971199524157
Optimization terminated successfully (Exit mode 0)
Current function value: 142.99711991454635
Iterations: 17
Function evaluations: 209
Gradient evaluations: 17
Iteration: 1, Func. Count: 14, Neg. LLF: 147.25717762544508
Iteration: 2, Func. Count: 28, Neg. LLF: 144.8879295807294
Iteration: 3, Func. Count: 42, Neg. LLF: 146.36206052999938
Iteration: 4, Func. Count: 56, Neg. LLF: 143.60119116678777
Iteration: 5, Func. Count: 70, Neg. LLF: 161.006798588675
Iteration: 6, Func. Count: 85, Neg. LLF: 144.1259109084557
Iteration: 7, Func. Count: 99, Neg. LLF: 143.0671470448123
Iteration: 8, Func. Count: 112, Neg. LLF: 143.0638953850719
Iteration: 9, Func. Count: 125, Neg. LLF: 143.0608301718686
Iteration: 10, Func. Count: 138, Neg. LLF: 143.04230221059223
Iteration: 11, Func. Count: 151, Neg. LLF: 143.00999228617508
Iteration: 12, Func. Count: 164, Neg. LLF: 143.00435597865902
Iteration: 13, Func. Count: 177, Neg. LLF: 142.99981202154004
Iteration: 14, Func. Count: 190, Neg. LLF: 142.99753714954582
Iteration: 15, Func. Count: 203, Neg. LLF: 142.9971519240591
Iteration: 16, Func. Count: 216, Neg. LLF: 142.9971200056614
Iteration: 17, Func. Count: 228, Neg. LLF: 142.9971200121255
Optimization terminated successfully (Exit mode 0)
Current function value: 142.9971200056614
Iterations: 17
Function evaluations: 228
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 151.17416256504498
Iteration: 2, Func. Count: 22, Neg. LLF: 144.24356189924328
Iteration: 3, Func. Count: 33, Neg. LLF: 152.2947736491208
Iteration: 4, Func. Count: 45, Neg. LLF: 144.1032579502087
Iteration: 5, Func. Count: 56, Neg. LLF: 143.1565888699427
Iteration: 6, Func. Count: 66, Neg. LLF: 143.07305130028158
Iteration: 7, Func. Count: 76, Neg. LLF: 143.05676386556874
Iteration: 8, Func. Count: 86, Neg. LLF: 143.02713325683231
Iteration: 9, Func. Count: 96, Neg. LLF: 142.9998938974518
Iteration: 10, Func. Count: 106, Neg. LLF: 142.99756799940394
Iteration: 11, Func. Count: 116, Neg. LLF: 142.99717925383186
Iteration: 12, Func. Count: 126, Neg. LLF: 142.9971322432654
Iteration: 13, Func. Count: 136, Neg. LLF: 142.99711979493884
Iteration: 14, Func. Count: 145, Neg. LLF: 142.99711984084675
Optimization terminated successfully (Exit mode 0)
Current function value: 142.99711979493884
Iterations: 14
Function evaluations: 145
Gradient evaluations: 14
Iteration: 1, Func. Count: 12, Neg. LLF: 146.9776093210052
Iteration: 2, Func. Count: 24, Neg. LLF: 146.27834059308665
Iteration: 3, Func. Count: 36, Neg. LLF: 150.30186078999935
Iteration: 4, Func. Count: 49, Neg. LLF: 143.46660004396597
Iteration: 5, Func. Count: 61, Neg. LLF: 143.67326905890906
Iteration: 6, Func. Count: 73, Neg. LLF: 143.08539035698692
Iteration: 7, Func. Count: 84, Neg. LLF: 143.07884941545203
Iteration: 8, Func. Count: 95, Neg. LLF: 143.07055446679053
Iteration: 9, Func. Count: 106, Neg. LLF: 143.05873785977803
Iteration: 10, Func. Count: 117, Neg. LLF: 143.03012210513202
Iteration: 11, Func. Count: 128, Neg. LLF: 143.00997136043003
Iteration: 12, Func. Count: 139, Neg. LLF: 142.99883439167502
Iteration: 13, Func. Count: 150, Neg. LLF: 142.99723034347375
Iteration: 14, Func. Count: 161, Neg. LLF: 142.99713033882904
Iteration: 15, Func. Count: 172, Neg. LLF: 142.99711999263124
Iteration: 16, Func. Count: 182, Neg. LLF: 142.9971199974757
Optimization terminated successfully (Exit mode 0)
Current function value: 142.99711999263124
Iterations: 16
Function evaluations: 182
Gradient evaluations: 16
Iteration: 1, Func. Count: 13, Neg. LLF: 147.00479082671265
Iteration: 2, Func. Count: 26, Neg. LLF: 146.0479387600762
Iteration: 3, Func. Count: 39, Neg. LLF: 157.44043633436132
Iteration: 4, Func. Count: 52, Neg. LLF: 143.95282400666494
Iteration: 5, Func. Count: 65, Neg. LLF: 143.74589202481496
Iteration: 6, Func. Count: 78, Neg. LLF: 143.0858494187554
Iteration: 7, Func. Count: 90, Neg. LLF: 143.0808099519836
Iteration: 8, Func. Count: 102, Neg. LLF: 143.07587829065727
Iteration: 9, Func. Count: 114, Neg. LLF: 143.0498696238705
Iteration: 10, Func. Count: 126, Neg. LLF: 143.01687188065583
Iteration: 11, Func. Count: 138, Neg. LLF: 143.005874963387
Iteration: 12, Func. Count: 150, Neg. LLF: 142.99826809609712
Iteration: 13, Func. Count: 162, Neg. LLF: 142.9972857857718
Iteration: 14, Func. Count: 174, Neg. LLF: 142.99713218968353
Iteration: 15, Func. Count: 186, Neg. LLF: 142.99712024555873
Iteration: 16, Func. Count: 197, Neg. LLF: 142.9971202718647
Optimization terminated successfully (Exit mode 0)
Current function value: 142.99712024555873
Iterations: 16
Function evaluations: 197
Gradient evaluations: 16
Iteration: 1, Func. Count: 14, Neg. LLF: 147.00604116672775
Iteration: 2, Func. Count: 28, Neg. LLF: 146.04020105617187
Iteration: 3, Func. Count: 42, Neg. LLF: 166.2103752034905
Iteration: 4, Func. Count: 57, Neg. LLF: 143.93474385559605
Iteration: 5, Func. Count: 71, Neg. LLF: 144.180082586677
Iteration: 6, Func. Count: 85, Neg. LLF: 143.16764670110894
Iteration: 7, Func. Count: 98, Neg. LLF: 143.15658656085574
Iteration: 8, Func. Count: 112, Neg. LLF: 143.0796109050648
Iteration: 9, Func. Count: 125, Neg. LLF: 143.0751853055247
Iteration: 10, Func. Count: 138, Neg. LLF: 143.0596414020206
Iteration: 11, Func. Count: 151, Neg. LLF: 143.04043066969137
Iteration: 12, Func. Count: 164, Neg. LLF: 143.02319657078812
Iteration: 13, Func. Count: 177, Neg. LLF: 143.01171658305086
Iteration: 14, Func. Count: 190, Neg. LLF: 143.00011853022536
Iteration: 15, Func. Count: 203, Neg. LLF: 142.99755861032023
Iteration: 16, Func. Count: 216, Neg. LLF: 142.99716410286777
Iteration: 17, Func. Count: 229, Neg. LLF: 142.99712051482274
Iteration: 18, Func. Count: 241, Neg. LLF: 142.9971205526484
Optimization terminated successfully (Exit mode 0)
Current function value: 142.99712051482274
Iterations: 18
Function evaluations: 241
Gradient evaluations: 18
Iteration: 1, Func. Count: 15, Neg. LLF: 147.01681809528998
Iteration: 2, Func. Count: 30, Neg. LLF: 145.51789899355632
Iteration: 3, Func. Count: 45, Neg. LLF: 162.7125386192771
Iteration: 4, Func. Count: 60, Neg. LLF: 144.7428486474893
Iteration: 5, Func. Count: 75, Neg. LLF: 144.75979839027255
Iteration: 6, Func. Count: 90, Neg. LLF: 143.21183448626363
Iteration: 7, Func. Count: 105, Neg. LLF: 143.31514453049527
Iteration: 8, Func. Count: 120, Neg. LLF: 143.095440845619
Iteration: 9, Func. Count: 134, Neg. LLF: 143.0628492279832
Iteration: 10, Func. Count: 148, Neg. LLF: 143.05997087044528
Iteration: 11, Func. Count: 162, Neg. LLF: 143.0573270843119
Iteration: 12, Func. Count: 176, Neg. LLF: 143.04132824425312
Iteration: 13, Func. Count: 190, Neg. LLF: 143.01408851360657
Iteration: 14, Func. Count: 204, Neg. LLF: 142.99856832457706
Iteration: 15, Func. Count: 218, Neg. LLF: 142.9972582180886
Iteration: 16, Func. Count: 232, Neg. LLF: 142.99713059946728
Iteration: 17, Func. Count: 246, Neg. LLF: 142.9971205969881
Iteration: 18, Func. Count: 260, Neg. LLF: 142.99711987915757
Optimization terminated successfully (Exit mode 0)
Current function value: 142.99711987915757
Iterations: 18
Function evaluations: 260
Gradient evaluations: 18
Iteration: 1, Func. Count: 8, Neg. LLF: 147.17144865292076
Iteration: 2, Func. Count: 16, Neg. LLF: 148.57415231355404
Iteration: 3, Func. Count: 25, Neg. LLF: 145.85026258262457
Iteration: 4, Func. Count: 33, Neg. LLF: 144.2204662434457
Iteration: 5, Func. Count: 40, Neg. LLF: 144.1593419827672
Iteration: 6, Func. Count: 47, Neg. LLF: 144.07291207505313
Iteration: 7, Func. Count: 54, Neg. LLF: 144.02227220961382
Iteration: 8, Func. Count: 61, Neg. LLF: 144.0063427205952
Iteration: 9, Func. Count: 68, Neg. LLF: 144.00536733252736
Iteration: 10, Func. Count: 75, Neg. LLF: 144.00534551211095
Iteration: 11, Func. Count: 82, Neg. LLF: 144.00534419726043
Iteration: 12, Func. Count: 88, Neg. LLF: 144.0053442426366
Optimization terminated successfully (Exit mode 0)
Current function value: 144.00534419726043
Iterations: 12
Function evaluations: 88
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 144.22751524645793
Iteration: 2, Func. Count: 19, Neg. LLF: 145.8870908661566
Iteration: 3, Func. Count: 28, Neg. LLF: 144.08732586113277
Iteration: 4, Func. Count: 36, Neg. LLF: 144.08152603022626
Iteration: 5, Func. Count: 44, Neg. LLF: 144.08016716002658
Iteration: 6, Func. Count: 52, Neg. LLF: 144.07950555891415
Iteration: 7, Func. Count: 60, Neg. LLF: 144.07445309598896
Iteration: 8, Func. Count: 68, Neg. LLF: 144.0621842484573
Iteration: 9, Func. Count: 76, Neg. LLF: 144.04939155872225
Iteration: 10, Func. Count: 84, Neg. LLF: 144.02313270193787
Iteration: 11, Func. Count: 92, Neg. LLF: 144.012187385536
Iteration: 12, Func. Count: 100, Neg. LLF: 144.00906530823366
Iteration: 13, Func. Count: 108, Neg. LLF: 144.00616172356027
Iteration: 14, Func. Count: 116, Neg. LLF: 144.00560746804467
Iteration: 15, Func. Count: 124, Neg. LLF: 144.0054119541286
Iteration: 16, Func. Count: 132, Neg. LLF: 144.00537794500426
Iteration: 17, Func. Count: 140, Neg. LLF: 144.00534577473846
Iteration: 18, Func. Count: 148, Neg. LLF: 144.00534420797536
Iteration: 19, Func. Count: 155, Neg. LLF: 144.0053442094216
Optimization terminated successfully (Exit mode 0)
Current function value: 144.00534420797536
Iterations: 19
Function evaluations: 155
Gradient evaluations: 19
Iteration: 1, Func. Count: 10, Neg. LLF: 152.0884356686807
Iteration: 2, Func. Count: 21, Neg. LLF: 144.0891069953632
Iteration: 3, Func. Count: 30, Neg. LLF: 144.07981561508248
Iteration: 4, Func. Count: 39, Neg. LLF: 144.07425324954153
Iteration: 5, Func. Count: 48, Neg. LLF: 144.07376524589287
Iteration: 6, Func. Count: 57, Neg. LLF: 144.07367947419255
Iteration: 7, Func. Count: 66, Neg. LLF: 144.07345454055005
Iteration: 8, Func. Count: 75, Neg. LLF: 144.07294770540773
Iteration: 9, Func. Count: 84, Neg. LLF: 144.0716276116017
Iteration: 10, Func. Count: 93, Neg. LLF: 144.0688314621476
Iteration: 11, Func. Count: 102, Neg. LLF: 144.06402036963766
Iteration: 12, Func. Count: 111, Neg. LLF: 144.05538661340486
Iteration: 13, Func. Count: 120, Neg. LLF: 144.05530270953577
Iteration: 14, Func. Count: 130, Neg. LLF: 144.05087956587275
Iteration: 15, Func. Count: 139, Neg. LLF: 144.05087827140773
Iteration: 16, Func. Count: 147, Neg. LLF: 144.05087827137018
Optimization terminated successfully (Exit mode 0)
Current function value: 144.05087827140773
Iterations: 16
Function evaluations: 147
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 152.12333813594495
Iteration: 2, Func. Count: 23, Neg. LLF: 144.08209439058527
Iteration: 3, Func. Count: 33, Neg. LLF: 144.07373003838615
Iteration: 4, Func. Count: 43, Neg. LLF: 144.0730214958559
Iteration: 5, Func. Count: 53, Neg. LLF: 144.0729136427967
Iteration: 6, Func. Count: 63, Neg. LLF: 144.07239453692222
Iteration: 7, Func. Count: 73, Neg. LLF: 144.07090240119425
Iteration: 8, Func. Count: 83, Neg. LLF: 144.07047393658678
Iteration: 9, Func. Count: 93, Neg. LLF: 144.07016562638944
Iteration: 10, Func. Count: 103, Neg. LLF: 144.06960516989147
Iteration: 11, Func. Count: 113, Neg. LLF: 144.0664181244007
Iteration: 12, Func. Count: 123, Neg. LLF: 144.05927420390827
Iteration: 13, Func. Count: 133, Neg. LLF: 144.0542996154989
Iteration: 14, Func. Count: 143, Neg. LLF: 144.0511178539949
Iteration: 15, Func. Count: 153, Neg. LLF: 144.05088645406377
Iteration: 16, Func. Count: 163, Neg. LLF: 144.0508782157073
Iteration: 17, Func. Count: 172, Neg. LLF: 144.05087821609644
Optimization terminated successfully (Exit mode 0)
Current function value: 144.0508782157073
Iterations: 17
Function evaluations: 172
Gradient evaluations: 17
Iteration: 1, Func. Count: 12, Neg. LLF: 152.14557744441632
Iteration: 2, Func. Count: 25, Neg. LLF: 144.07862653774384
Iteration: 3, Func. Count: 36, Neg. LLF: 144.07360993722295
Iteration: 4, Func. Count: 47, Neg. LLF: 144.0732790926936
Iteration: 5, Func. Count: 58, Neg. LLF: 144.07296111713623
Iteration: 6, Func. Count: 69, Neg. LLF: 144.07212278509354
Iteration: 7, Func. Count: 80, Neg. LLF: 144.07153822675465
Iteration: 8, Func. Count: 91, Neg. LLF: 144.07130837180236
Iteration: 9, Func. Count: 102, Neg. LLF: 144.07118042247097
Iteration: 10, Func. Count: 113, Neg. LLF: 144.07103510495853
Iteration: 11, Func. Count: 124, Neg. LLF: 144.0704781850625
Iteration: 12, Func. Count: 135, Neg. LLF: 144.0692097036651
Iteration: 13, Func. Count: 146, Neg. LLF: 144.06587167760415
Iteration: 14, Func. Count: 157, Neg. LLF: 144.061613438566
Iteration: 15, Func. Count: 168, Neg. LLF: 144.05698855097512
Iteration: 16, Func. Count: 179, Neg. LLF: 144.05099413077485
Iteration: 17, Func. Count: 190, Neg. LLF: 144.05089912597188
Iteration: 18, Func. Count: 201, Neg. LLF: 144.05087839109189
Iteration: 19, Func. Count: 211, Neg. LLF: 144.0508783917379
Optimization terminated successfully (Exit mode 0)
Current function value: 144.05087839109189
Iterations: 19
Function evaluations: 211
Gradient evaluations: 19
Iteration: 1, Func. Count: 9, Neg. LLF: 145.91198900471056
Iteration: 2, Func. Count: 18, Neg. LLF: 148.1198542301712
Iteration: 3, Func. Count: 28, Neg. LLF: 145.9796492345259
Iteration: 4, Func. Count: 37, Neg. LLF: 143.3321204744212
Iteration: 5, Func. Count: 45, Neg. LLF: 143.29167869369
Iteration: 6, Func. Count: 53, Neg. LLF: 143.24733617201866
Iteration: 7, Func. Count: 61, Neg. LLF: 143.1763576741696
Iteration: 8, Func. Count: 69, Neg. LLF: 143.1672174465675
Iteration: 9, Func. Count: 77, Neg. LLF: 143.16660921999025
Iteration: 10, Func. Count: 85, Neg. LLF: 143.16659808999717
Iteration: 11, Func. Count: 92, Neg. LLF: 143.16659809001962
Optimization terminated successfully (Exit mode 0)
Current function value: 143.16659808999717
Iterations: 11
Function evaluations: 92
Gradient evaluations: 11
Iteration: 1, Func. Count: 10, Neg. LLF: 145.97035419341793
Iteration: 2, Func. Count: 20, Neg. LLF: 144.277066622291
Iteration: 3, Func. Count: 30, Neg. LLF: 145.70791940141905
Iteration: 4, Func. Count: 41, Neg. LLF: 143.10662734285737
Iteration: 5, Func. Count: 50, Neg. LLF: 143.27313017516866
Iteration: 6, Func. Count: 60, Neg. LLF: 143.09873554510895
Iteration: 7, Func. Count: 69, Neg. LLF: 143.09767666956841
Iteration: 8, Func. Count: 78, Neg. LLF: 143.0960849866505
Iteration: 9, Func. Count: 87, Neg. LLF: 143.09339200803436
Iteration: 10, Func. Count: 96, Neg. LLF: 143.09096921585999
Iteration: 11, Func. Count: 105, Neg. LLF: 143.0899464565253
Iteration: 12, Func. Count: 114, Neg. LLF: 143.08981673741468
Iteration: 13, Func. Count: 123, Neg. LLF: 143.08981094836182
Iteration: 14, Func. Count: 131, Neg. LLF: 143.08981094837765
Optimization terminated successfully (Exit mode 0)
Current function value: 143.08981094836182
Iterations: 14
Function evaluations: 131
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 144.07221360284234
Iteration: 2, Func. Count: 23, Neg. LLF: 145.5206419609905
Iteration: 3, Func. Count: 34, Neg. LLF: 143.55417650892926
Iteration: 4, Func. Count: 45, Neg. LLF: 143.16521481619066
Iteration: 5, Func. Count: 55, Neg. LLF: 143.31889778088404
Iteration: 6, Func. Count: 66, Neg. LLF: 143.12502236412905
Iteration: 7, Func. Count: 77, Neg. LLF: 143.09923644477811
Iteration: 8, Func. Count: 87, Neg. LLF: 143.09782109980893
Iteration: 9, Func. Count: 97, Neg. LLF: 143.09657961039
Iteration: 10, Func. Count: 107, Neg. LLF: 143.09379495838198
Iteration: 11, Func. Count: 117, Neg. LLF: 143.09137217763296
Iteration: 12, Func. Count: 127, Neg. LLF: 143.0899900140612
Iteration: 13, Func. Count: 137, Neg. LLF: 143.08981916440135
Iteration: 14, Func. Count: 147, Neg. LLF: 143.08981105495363
Iteration: 15, Func. Count: 156, Neg. LLF: 143.08981108468353
Optimization terminated successfully (Exit mode 0)
Current function value: 143.08981105495363
Iterations: 15
Function evaluations: 156
Gradient evaluations: 15
Iteration: 1, Func. Count: 12, Neg. LLF: 144.07491587048
Iteration: 2, Func. Count: 25, Neg. LLF: 145.5096250708085
Iteration: 3, Func. Count: 37, Neg. LLF: 144.00611107921856
Iteration: 4, Func. Count: 49, Neg. LLF: 143.15875403409854
Iteration: 5, Func. Count: 60, Neg. LLF: 143.18389222359832
Iteration: 6, Func. Count: 72, Neg. LLF: 143.1049166726645
Iteration: 7, Func. Count: 83, Neg. LLF: 143.09929551418696
Iteration: 8, Func. Count: 94, Neg. LLF: 143.0983616927428
Iteration: 9, Func. Count: 105, Neg. LLF: 143.09625966963776
Iteration: 10, Func. Count: 116, Neg. LLF: 143.09394666019625
Iteration: 11, Func. Count: 127, Neg. LLF: 143.091307175568
Iteration: 12, Func. Count: 138, Neg. LLF: 143.09001070077383
Iteration: 13, Func. Count: 149, Neg. LLF: 143.08982241678723
Iteration: 14, Func. Count: 160, Neg. LLF: 143.0898117830771
Iteration: 15, Func. Count: 171, Neg. LLF: 143.08981075999435
Iteration: 16, Func. Count: 181, Neg. LLF: 143.0898107961372
Optimization terminated successfully (Exit mode 0)
Current function value: 143.08981075999435
Iterations: 16
Function evaluations: 181
Gradient evaluations: 16
Iteration: 1, Func. Count: 13, Neg. LLF: 145.07136351456313
Iteration: 2, Func. Count: 27, Neg. LLF: 144.28860105189483
Iteration: 3, Func. Count: 40, Neg. LLF: 144.17123559871976
Iteration: 4, Func. Count: 53, Neg. LLF: 143.1585818848666
Iteration: 5, Func. Count: 65, Neg. LLF: 143.19442236683966
Iteration: 6, Func. Count: 78, Neg. LLF: 143.18680523910706
Iteration: 7, Func. Count: 91, Neg. LLF: 143.13099485607484
Iteration: 8, Func. Count: 104, Neg. LLF: 143.0996311633684
Iteration: 9, Func. Count: 116, Neg. LLF: 143.09886755910875
Iteration: 10, Func. Count: 128, Neg. LLF: 143.09765312293996
Iteration: 11, Func. Count: 140, Neg. LLF: 143.09378328630206
Iteration: 12, Func. Count: 152, Neg. LLF: 143.0910231059001
Iteration: 13, Func. Count: 164, Neg. LLF: 143.09004106581807
Iteration: 14, Func. Count: 176, Neg. LLF: 143.08982542258454
Iteration: 15, Func. Count: 188, Neg. LLF: 143.08981111378813
Iteration: 16, Func. Count: 199, Neg. LLF: 143.08981112045507
Optimization terminated successfully (Exit mode 0)
Current function value: 143.08981111378813
Iterations: 16
Function evaluations: 199
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 149.75301445021518
Iteration: 2, Func. Count: 20, Neg. LLF: 145.16550591465096
Iteration: 3, Func. Count: 30, Neg. LLF: 149.15795993716105
Iteration: 4, Func. Count: 40, Neg. LLF: 143.30936617814623
Iteration: 5, Func. Count: 49, Neg. LLF: 143.1722692899705
Iteration: 6, Func. Count: 58, Neg. LLF: 143.1172239106872
Iteration: 7, Func. Count: 67, Neg. LLF: 143.15997496839864
Iteration: 8, Func. Count: 77, Neg. LLF: 143.03765956869296
Iteration: 9, Func. Count: 86, Neg. LLF: 143.0221417288614
Iteration: 10, Func. Count: 95, Neg. LLF: 143.0062664063779
Iteration: 11, Func. Count: 104, Neg. LLF: 143.0002279838579
Iteration: 12, Func. Count: 113, Neg. LLF: 142.99776141881193
Iteration: 13, Func. Count: 122, Neg. LLF: 142.9971647058793
Iteration: 14, Func. Count: 131, Neg. LLF: 142.99712249678728
Iteration: 15, Func. Count: 140, Neg. LLF: 142.99711984846664
Iteration: 16, Func. Count: 148, Neg. LLF: 142.99711984846957
Optimization terminated successfully (Exit mode 0)
Current function value: 142.99711984846664
Iterations: 16
Function evaluations: 148
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 146.962341192534
Iteration: 2, Func. Count: 22, Neg. LLF: 147.1197757895358
Iteration: 3, Func. Count: 33, Neg. LLF: 145.4762747986978
Iteration: 4, Func. Count: 44, Neg. LLF: 144.3264488534394
Iteration: 5, Func. Count: 55, Neg. LLF: 143.14349570887492
Iteration: 6, Func. Count: 66, Neg. LLF: 143.17428654626332
Iteration: 7, Func. Count: 77, Neg. LLF: 143.081467870325
Iteration: 8, Func. Count: 87, Neg. LLF: 143.07542183605665
Iteration: 9, Func. Count: 97, Neg. LLF: 143.04256836774184
Iteration: 10, Func. Count: 107, Neg. LLF: 143.0060739071779
Iteration: 11, Func. Count: 117, Neg. LLF: 142.99943239606958
Iteration: 12, Func. Count: 127, Neg. LLF: 142.9977588434369
Iteration: 13, Func. Count: 137, Neg. LLF: 142.99713688740428
Iteration: 14, Func. Count: 147, Neg. LLF: 142.99712013309204
Iteration: 15, Func. Count: 156, Neg. LLF: 142.99712013791336
Optimization terminated successfully (Exit mode 0)
Current function value: 142.99712013309204
Iterations: 15
Function evaluations: 156
Gradient evaluations: 15
Iteration: 1, Func. Count: 12, Neg. LLF: 146.9052625569087
Iteration: 2, Func. Count: 24, Neg. LLF: 145.91109426561903
Iteration: 3, Func. Count: 36, Neg. LLF: 143.58184591618084
Iteration: 4, Func. Count: 48, Neg. LLF: 144.41740275853263
Iteration: 5, Func. Count: 60, Neg. LLF: 144.1707674151722
Iteration: 6, Func. Count: 72, Neg. LLF: 143.16268239776554
Iteration: 7, Func. Count: 84, Neg. LLF: 143.07922960715268
Iteration: 8, Func. Count: 95, Neg. LLF: 143.07514037728907
Iteration: 9, Func. Count: 106, Neg. LLF: 143.06044804142664
Iteration: 10, Func. Count: 117, Neg. LLF: 143.03996130952478
Iteration: 11, Func. Count: 128, Neg. LLF: 143.01452982017167
Iteration: 12, Func. Count: 139, Neg. LLF: 142.99741349576038
Iteration: 13, Func. Count: 150, Neg. LLF: 142.99715208721125
Iteration: 14, Func. Count: 161, Neg. LLF: 142.99712441821936
Iteration: 15, Func. Count: 172, Neg. LLF: 142.99712016329462
Iteration: 16, Func. Count: 182, Neg. LLF: 142.99712018957686
Optimization terminated successfully (Exit mode 0)
Current function value: 142.99712016329462
Iterations: 16
Function evaluations: 182
Gradient evaluations: 16
Iteration: 1, Func. Count: 13, Neg. LLF: 146.83886726216366
Iteration: 2, Func. Count: 26, Neg. LLF: 146.12919818911678
Iteration: 3, Func. Count: 39, Neg. LLF: 143.93337422752535
Iteration: 4, Func. Count: 52, Neg. LLF: 143.93617126374076
Iteration: 5, Func. Count: 65, Neg. LLF: 156.69644834061262
Iteration: 6, Func. Count: 79, Neg. LLF: 143.18624166486535
Iteration: 7, Func. Count: 91, Neg. LLF: 143.08370442018153
Iteration: 8, Func. Count: 103, Neg. LLF: 143.07754097207382
Iteration: 9, Func. Count: 115, Neg. LLF: 143.07196438455668
Iteration: 10, Func. Count: 127, Neg. LLF: 143.05636927302555
Iteration: 11, Func. Count: 139, Neg. LLF: 143.03481984643548
Iteration: 12, Func. Count: 151, Neg. LLF: 143.00559605712203
Iteration: 13, Func. Count: 163, Neg. LLF: 142.99854885749104
Iteration: 14, Func. Count: 175, Neg. LLF: 142.9973948830582
Iteration: 15, Func. Count: 187, Neg. LLF: 142.997131135447
Iteration: 16, Func. Count: 199, Neg. LLF: 142.9971219842333
Iteration: 17, Func. Count: 211, Neg. LLF: 142.99712005676975
Iteration: 18, Func. Count: 222, Neg. LLF: 142.99712009465608
Optimization terminated successfully (Exit mode 0)
Current function value: 142.99712005676975
Iterations: 18
Function evaluations: 222
Gradient evaluations: 18
Iteration: 1, Func. Count: 14, Neg. LLF: 146.42079743719012
Iteration: 2, Func. Count: 28, Neg. LLF: 145.78603530498762
Iteration: 3, Func. Count: 42, Neg. LLF: 166.43250893303036
Iteration: 4, Func. Count: 57, Neg. LLF: 143.58460805412622
Iteration: 5, Func. Count: 71, Neg. LLF: 143.51603554131447
Iteration: 6, Func. Count: 85, Neg. LLF: 144.52973483800457
Iteration: 7, Func. Count: 99, Neg. LLF: 143.0659826632413
Iteration: 8, Func. Count: 112, Neg. LLF: 143.0655567350528
Iteration: 9, Func. Count: 126, Neg. LLF: 143.05990320842292
Iteration: 10, Func. Count: 139, Neg. LLF: 143.05527658727283
Iteration: 11, Func. Count: 152, Neg. LLF: 143.0417768449603
Iteration: 12, Func. Count: 165, Neg. LLF: 143.0190567914238
Iteration: 13, Func. Count: 178, Neg. LLF: 143.00703957975185
Iteration: 14, Func. Count: 191, Neg. LLF: 142.99820783415
Iteration: 15, Func. Count: 204, Neg. LLF: 142.99727654563515
Iteration: 16, Func. Count: 217, Neg. LLF: 142.9971247640907
Iteration: 17, Func. Count: 230, Neg. LLF: 142.99711987720843
Iteration: 18, Func. Count: 242, Neg. LLF: 142.99711988365956
Optimization terminated successfully (Exit mode 0)
Current function value: 142.99711987720843
Iterations: 18
Function evaluations: 242
Gradient evaluations: 18
Iteration: 1, Func. Count: 11, Neg. LLF: 150.83748592005298
Iteration: 2, Func. Count: 22, Neg. LLF: 144.24535271746493
Iteration: 3, Func. Count: 33, Neg. LLF: 150.630169049578
Iteration: 4, Func. Count: 45, Neg. LLF: 145.21307026819258
Iteration: 5, Func. Count: 56, Neg. LLF: 143.1220573215037
Iteration: 6, Func. Count: 66, Neg. LLF: 143.07160094503826
Iteration: 7, Func. Count: 76, Neg. LLF: 143.05748526175213
Iteration: 8, Func. Count: 86, Neg. LLF: 143.03070114370564
Iteration: 9, Func. Count: 96, Neg. LLF: 142.9980263021372
Iteration: 10, Func. Count: 106, Neg. LLF: 142.99718904373282
Iteration: 11, Func. Count: 116, Neg. LLF: 142.9971332326145
Iteration: 12, Func. Count: 126, Neg. LLF: 142.99712140754954
Iteration: 13, Func. Count: 136, Neg. LLF: 142.99711984961243
Iteration: 14, Func. Count: 145, Neg. LLF: 142.9971198683986
Optimization terminated successfully (Exit mode 0)
Current function value: 142.99711984961243
Iterations: 14
Function evaluations: 145
Gradient evaluations: 14
Iteration: 1, Func. Count: 12, Neg. LLF: 147.17665330717404
Iteration: 2, Func. Count: 24, Neg. LLF: 146.27322745582305
Iteration: 3, Func. Count: 36, Neg. LLF: 145.47891915725677
Iteration: 4, Func. Count: 48, Neg. LLF: 144.3577080704734
Iteration: 5, Func. Count: 60, Neg. LLF: 143.13010640998684
Iteration: 6, Func. Count: 71, Neg. LLF: 143.1361522051303
Iteration: 7, Func. Count: 83, Neg. LLF: 143.27968327013338
Iteration: 8, Func. Count: 95, Neg. LLF: 143.07589203316246
Iteration: 9, Func. Count: 106, Neg. LLF: 143.06628944990487
Iteration: 10, Func. Count: 117, Neg. LLF: 143.05109163811966
Iteration: 11, Func. Count: 128, Neg. LLF: 143.01540448655922
Iteration: 12, Func. Count: 139, Neg. LLF: 143.00254635904625
Iteration: 13, Func. Count: 150, Neg. LLF: 142.9976204614171
Iteration: 14, Func. Count: 161, Neg. LLF: 142.99713254963572
Iteration: 15, Func. Count: 172, Neg. LLF: 142.9971201045615
Iteration: 16, Func. Count: 182, Neg. LLF: 142.99712010939615
Optimization terminated successfully (Exit mode 0)
Current function value: 142.9971201045615
Iterations: 16
Function evaluations: 182
Gradient evaluations: 16
Iteration: 1, Func. Count: 13, Neg. LLF: 147.22096982536843
Iteration: 2, Func. Count: 26, Neg. LLF: 145.50449809109782
Iteration: 3, Func. Count: 39, Neg. LLF: 150.7651397398918
Iteration: 4, Func. Count: 52, Neg. LLF: 143.60301558718385
Iteration: 5, Func. Count: 65, Neg. LLF: 143.80775491612135
Iteration: 6, Func. Count: 78, Neg. LLF: 143.08132613365987
Iteration: 7, Func. Count: 90, Neg. LLF: 143.07770077036832
Iteration: 8, Func. Count: 102, Neg. LLF: 143.07058512789925
Iteration: 9, Func. Count: 114, Neg. LLF: 143.0421771686903
Iteration: 10, Func. Count: 126, Neg. LLF: 143.00401353140253
Iteration: 11, Func. Count: 138, Neg. LLF: 142.99849685389148
Iteration: 12, Func. Count: 150, Neg. LLF: 142.99746006982576
Iteration: 13, Func. Count: 162, Neg. LLF: 142.99715619029521
Iteration: 14, Func. Count: 174, Neg. LLF: 142.9971271597296
Iteration: 15, Func. Count: 186, Neg. LLF: 142.9971207947894
Iteration: 16, Func. Count: 198, Neg. LLF: 142.99711990201553
Optimization terminated successfully (Exit mode 0)
Current function value: 142.99711990201553
Iterations: 16
Function evaluations: 198
Gradient evaluations: 16
Iteration: 1, Func. Count: 14, Neg. LLF: 147.22295218903727
Iteration: 2, Func. Count: 28, Neg. LLF: 145.50754408517483
Iteration: 3, Func. Count: 42, Neg. LLF: 156.08883262608512
Iteration: 4, Func. Count: 56, Neg. LLF: 143.6174784168921
Iteration: 5, Func. Count: 70, Neg. LLF: 145.46110758319736
Iteration: 6, Func. Count: 84, Neg. LLF: 143.14435870042985
Iteration: 7, Func. Count: 97, Neg. LLF: 143.11690038389708
Iteration: 8, Func. Count: 110, Neg. LLF: 143.0780810955969
Iteration: 9, Func. Count: 123, Neg. LLF: 143.07427094004007
Iteration: 10, Func. Count: 136, Neg. LLF: 143.05720956955227
Iteration: 11, Func. Count: 149, Neg. LLF: 143.03707360918582
Iteration: 12, Func. Count: 162, Neg. LLF: 143.00463052356466
Iteration: 13, Func. Count: 175, Neg. LLF: 142.9979868644554
Iteration: 14, Func. Count: 188, Neg. LLF: 142.99726555476175
Iteration: 15, Func. Count: 201, Neg. LLF: 142.99712576855157
Iteration: 16, Func. Count: 214, Neg. LLF: 142.99712126106115
Iteration: 17, Func. Count: 227, Neg. LLF: 142.99711989407052
Iteration: 18, Func. Count: 239, Neg. LLF: 142.99711993190758
Optimization terminated successfully (Exit mode 0)
Current function value: 142.99711989407052
Iterations: 18
Function evaluations: 239
Gradient evaluations: 18
Iteration: 1, Func. Count: 15, Neg. LLF: 147.24935940632045
Iteration: 2, Func. Count: 30, Neg. LLF: 144.63298259653632
Iteration: 3, Func. Count: 45, Neg. LLF: 143.62651017520474
Iteration: 4, Func. Count: 60, Neg. LLF: 144.99077611363012
Iteration: 5, Func. Count: 75, Neg. LLF: 146.13871642198853
Iteration: 6, Func. Count: 90, Neg. LLF: 143.33317994952264
Iteration: 7, Func. Count: 105, Neg. LLF: 143.06662604664805
Iteration: 8, Func. Count: 119, Neg. LLF: 143.06520135942182
Iteration: 9, Func. Count: 133, Neg. LLF: 143.06081024894374
Iteration: 10, Func. Count: 147, Neg. LLF: 143.05580933339806
Iteration: 11, Func. Count: 161, Neg. LLF: 143.04603123028366
Iteration: 12, Func. Count: 175, Neg. LLF: 143.02715564661324
Iteration: 13, Func. Count: 189, Neg. LLF: 143.0026826592749
Iteration: 14, Func. Count: 203, Neg. LLF: 142.9982807100513
Iteration: 15, Func. Count: 217, Neg. LLF: 142.99723544856548
Iteration: 16, Func. Count: 231, Neg. LLF: 142.99713272071784
Iteration: 17, Func. Count: 245, Neg. LLF: 142.99712026328666
Iteration: 18, Func. Count: 258, Neg. LLF: 142.99712026975087
Optimization terminated successfully (Exit mode 0)
Current function value: 142.99712026328666
Iterations: 18
Function evaluations: 258
Gradient evaluations: 18
Iteration: 1, Func. Count: 12, Neg. LLF: 150.41358800828493
Iteration: 2, Func. Count: 24, Neg. LLF: 144.25837910712943
Iteration: 3, Func. Count: 36, Neg. LLF: 151.25119968085144
Iteration: 4, Func. Count: 49, Neg. LLF: 144.99134821948795
Iteration: 5, Func. Count: 61, Neg. LLF: 143.1256798353023
Iteration: 6, Func. Count: 72, Neg. LLF: 143.47493300784208
Iteration: 7, Func. Count: 84, Neg. LLF: 143.1205483411473
Iteration: 8, Func. Count: 96, Neg. LLF: 143.049963797799
Iteration: 9, Func. Count: 107, Neg. LLF: 143.01848097171674
Iteration: 10, Func. Count: 118, Neg. LLF: 143.00048346092333
Iteration: 11, Func. Count: 129, Neg. LLF: 142.99756627209212
Iteration: 12, Func. Count: 140, Neg. LLF: 142.997195758335
Iteration: 13, Func. Count: 151, Neg. LLF: 142.99713102980292
Iteration: 14, Func. Count: 162, Neg. LLF: 142.99711988327667
Iteration: 15, Func. Count: 172, Neg. LLF: 142.99711992918594
Optimization terminated successfully (Exit mode 0)
Current function value: 142.99711988327667
Iterations: 15
Function evaluations: 172
Gradient evaluations: 15
Iteration: 1, Func. Count: 13, Neg. LLF: 146.95700452159826
Iteration: 2, Func. Count: 26, Neg. LLF: 146.31089971495544
Iteration: 3, Func. Count: 39, Neg. LLF: 150.22201135739346
Iteration: 4, Func. Count: 53, Neg. LLF: 143.48439096238107
Iteration: 5, Func. Count: 66, Neg. LLF: 143.65521936954184
Iteration: 6, Func. Count: 79, Neg. LLF: 143.08535149888203
Iteration: 7, Func. Count: 91, Neg. LLF: 143.07882825701617
Iteration: 8, Func. Count: 103, Neg. LLF: 143.0706916863731
Iteration: 9, Func. Count: 115, Neg. LLF: 143.0585987927039
Iteration: 10, Func. Count: 127, Neg. LLF: 143.0302676766018
Iteration: 11, Func. Count: 139, Neg. LLF: 143.010427219122
Iteration: 12, Func. Count: 151, Neg. LLF: 142.99895853541784
Iteration: 13, Func. Count: 163, Neg. LLF: 142.99723769921889
Iteration: 14, Func. Count: 175, Neg. LLF: 142.99713131815724
Iteration: 15, Func. Count: 187, Neg. LLF: 142.99712002335596
Iteration: 16, Func. Count: 198, Neg. LLF: 142.99712002820527
Optimization terminated successfully (Exit mode 0)
Current function value: 142.99712002335596
Iterations: 16
Function evaluations: 198
Gradient evaluations: 16
Iteration: 1, Func. Count: 14, Neg. LLF: 146.9864360500912
Iteration: 2, Func. Count: 28, Neg. LLF: 146.0704637536814
Iteration: 3, Func. Count: 42, Neg. LLF: 157.1148592380564
Iteration: 4, Func. Count: 56, Neg. LLF: 143.9691114800743
Iteration: 5, Func. Count: 70, Neg. LLF: 143.7428148735072
Iteration: 6, Func. Count: 84, Neg. LLF: 143.08540507847516
Iteration: 7, Func. Count: 97, Neg. LLF: 143.08054888848054
Iteration: 8, Func. Count: 110, Neg. LLF: 143.07560958838212
Iteration: 9, Func. Count: 123, Neg. LLF: 143.04655172753075
Iteration: 10, Func. Count: 136, Neg. LLF: 143.01252906297316
Iteration: 11, Func. Count: 149, Neg. LLF: 143.00307551016994
Iteration: 12, Func. Count: 162, Neg. LLF: 142.99797705390557
Iteration: 13, Func. Count: 175, Neg. LLF: 142.99724641385018
Iteration: 14, Func. Count: 188, Neg. LLF: 142.99712743379575
Iteration: 15, Func. Count: 201, Neg. LLF: 142.99712014114175
Iteration: 16, Func. Count: 213, Neg. LLF: 142.99712016744112
Optimization terminated successfully (Exit mode 0)
Current function value: 142.99712014114175
Iterations: 16
Function evaluations: 213
Gradient evaluations: 16
Iteration: 1, Func. Count: 15, Neg. LLF: 146.98873322484994
Iteration: 2, Func. Count: 30, Neg. LLF: 146.06178461811533
Iteration: 3, Func. Count: 45, Neg. LLF: 165.36658101711913
Iteration: 4, Func. Count: 61, Neg. LLF: 143.95879850804917
Iteration: 5, Func. Count: 76, Neg. LLF: 144.22931774759297
Iteration: 6, Func. Count: 91, Neg. LLF: 143.1649323358209
Iteration: 7, Func. Count: 105, Neg. LLF: 143.15321011822434
Iteration: 8, Func. Count: 120, Neg. LLF: 143.07947055057116
Iteration: 9, Func. Count: 134, Neg. LLF: 143.07499188563534
Iteration: 10, Func. Count: 148, Neg. LLF: 143.05979444007238
Iteration: 11, Func. Count: 162, Neg. LLF: 143.0408897673896
Iteration: 12, Func. Count: 176, Neg. LLF: 143.02377291639104
Iteration: 13, Func. Count: 190, Neg. LLF: 143.01217476543704
Iteration: 14, Func. Count: 204, Neg. LLF: 143.0003045861199
Iteration: 15, Func. Count: 218, Neg. LLF: 142.99758064427925
Iteration: 16, Func. Count: 232, Neg. LLF: 142.99716523938605
Iteration: 17, Func. Count: 246, Neg. LLF: 142.997120397676
Iteration: 18, Func. Count: 259, Neg. LLF: 142.9971204355039
Optimization terminated successfully (Exit mode 0)
Current function value: 142.997120397676
Iterations: 18
Function evaluations: 259
Gradient evaluations: 18
Iteration: 1, Func. Count: 16, Neg. LLF: 146.9996321187361
Iteration: 2, Func. Count: 32, Neg. LLF: 145.2604617601259
Iteration: 3, Func. Count: 48, Neg. LLF: 158.2001637495337
Iteration: 4, Func. Count: 64, Neg. LLF: 146.82446454609908
Iteration: 5, Func. Count: 80, Neg. LLF: 144.07688437573643
Iteration: 6, Func. Count: 96, Neg. LLF: 143.14439375557515
Iteration: 7, Func. Count: 111, Neg. LLF: 143.28448283006148
Iteration: 8, Func. Count: 127, Neg. LLF: 143.15151000580124
Iteration: 9, Func. Count: 143, Neg. LLF: 143.0634937382089
Iteration: 10, Func. Count: 158, Neg. LLF: 143.0591946255026
Iteration: 11, Func. Count: 173, Neg. LLF: 143.0552475326515
Iteration: 12, Func. Count: 188, Neg. LLF: 143.0482520792778
Iteration: 13, Func. Count: 203, Neg. LLF: 143.0173433427469
Iteration: 14, Func. Count: 218, Neg. LLF: 143.00292256895716
Iteration: 15, Func. Count: 233, Neg. LLF: 142.99770364566288
Iteration: 16, Func. Count: 248, Neg. LLF: 142.99715126393792
Iteration: 17, Func. Count: 263, Neg. LLF: 142.99712100283665
Iteration: 18, Func. Count: 278, Neg. LLF: 142.9971199383916
Iteration: 19, Func. Count: 292, Neg. LLF: 142.99711994483528
Optimization terminated successfully (Exit mode 0)
Current function value: 142.9971199383916
Iterations: 19
Function evaluations: 292
Gradient evaluations: 19
Iteration: 1, Func. Count: 5, Neg. LLF: 146.8461449197276
Iteration: 2, Func. Count: 10, Neg. LLF: 153.861164671793
Iteration: 3, Func. Count: 15, Neg. LLF: 143.89952147162538
Iteration: 4, Func. Count: 19, Neg. LLF: 143.5371071811326
Iteration: 5, Func. Count: 23, Neg. LLF: 143.41521886212342
Iteration: 6, Func. Count: 27, Neg. LLF: 143.38478449293504
Iteration: 7, Func. Count: 31, Neg. LLF: 143.38155923871992
Iteration: 8, Func. Count: 35, Neg. LLF: 143.37780881300498
Iteration: 9, Func. Count: 39, Neg. LLF: 143.3777825790445
Iteration: 10, Func. Count: 43, Neg. LLF: 143.3777814510885
Iteration: 11, Func. Count: 46, Neg. LLF: 143.37778145109576
Optimization terminated successfully (Exit mode 0)
Current function value: 143.3777814510885
Iterations: 11
Function evaluations: 46
Gradient evaluations: 11
Iteration: 1, Func. Count: 5, Neg. LLF: 158.87473521043356
Iteration: 2, Func. Count: 9, Neg. LLF: 160.65767115730094
Iteration: 3, Func. Count: 14, Neg. LLF: 156.79492558509452
Iteration: 4, Func. Count: 18, Neg. LLF: 156.7778180706839
Iteration: 5, Func. Count: 22, Neg. LLF: 156.69977929915038
Iteration: 6, Func. Count: 26, Neg. LLF: 156.6353150613111
Iteration: 7, Func. Count: 30, Neg. LLF: 156.62100892093497
Iteration: 8, Func. Count: 34, Neg. LLF: 156.6201722907934
Iteration: 9, Func. Count: 38, Neg. LLF: 156.62016494351738
Iteration: 10, Func. Count: 41, Neg. LLF: 156.62016495908193
Optimization terminated successfully (Exit mode 0)
Current function value: 156.62016494351738
Iterations: 10
Function evaluations: 41
Gradient evaluations: 10
Iteration: 1, Func. Count: 6, Neg. LLF: 170.40575499051562
Iteration: 2, Func. Count: 12, Neg. LLF: 155.3260554600765
Iteration: 3, Func. Count: 17, Neg. LLF: 167.5834806629441
Iteration: 4, Func. Count: 23, Neg. LLF: 154.57783399606544
Iteration: 5, Func. Count: 28, Neg. LLF: 154.39520642744904
Iteration: 6, Func. Count: 33, Neg. LLF: 154.3895293184973
Iteration: 7, Func. Count: 38, Neg. LLF: 154.38874610273615
Iteration: 8, Func. Count: 43, Neg. LLF: 154.3886292202641
Iteration: 9, Func. Count: 47, Neg. LLF: 154.38863012863834
Optimization terminated successfully (Exit mode 0)
Current function value: 154.3886292202641
Iterations: 9
Function evaluations: 47
Gradient evaluations: 9
Iteration: 1, Func. Count: 7, Neg. LLF: 163.07386817963717
Iteration: 2, Func. Count: 14, Neg. LLF: 154.82272446487679
Iteration: 3, Func. Count: 20, Neg. LLF: 156.85208119543248
Iteration: 4, Func. Count: 27, Neg. LLF: 154.43155702121018
Iteration: 5, Func. Count: 33, Neg. LLF: 154.40176167020488
Iteration: 6, Func. Count: 39, Neg. LLF: 154.39968536955305
Iteration: 7, Func. Count: 45, Neg. LLF: 154.3955879690118
Iteration: 8, Func. Count: 51, Neg. LLF: 154.394672514474
Iteration: 9, Func. Count: 57, Neg. LLF: 154.39466860100757
Iteration: 10, Func. Count: 62, Neg. LLF: 154.3946690764831
Optimization terminated successfully (Exit mode 0)
Current function value: 154.39466860100757
Iterations: 10
Function evaluations: 62
Gradient evaluations: 10
Iteration: 1, Func. Count: 8, Neg. LLF: 160.28606223664622
Iteration: 2, Func. Count: 16, Neg. LLF: 154.64743066238583
Iteration: 3, Func. Count: 23, Neg. LLF: 154.60378871468174
Iteration: 4, Func. Count: 30, Neg. LLF: 154.55717239372373
Iteration: 5, Func. Count: 37, Neg. LLF: 154.55544300876844
Iteration: 6, Func. Count: 44, Neg. LLF: 154.5553553345381
Iteration: 7, Func. Count: 51, Neg. LLF: 154.55532173899385
Iteration: 8, Func. Count: 58, Neg. LLF: 154.55531784299018
Iteration: 9, Func. Count: 64, Neg. LLF: 154.55531751766486
Optimization terminated successfully (Exit mode 0)
Current function value: 154.55531784299018
Iterations: 9
Function evaluations: 64
Gradient evaluations: 9
Iteration: 1, Func. Count: 9, Neg. LLF: 161.44690373877103
Iteration: 2, Func. Count: 18, Neg. LLF: 154.6248345933431
Iteration: 3, Func. Count: 26, Neg. LLF: 154.6126616919506
Iteration: 4, Func. Count: 34, Neg. LLF: 154.6060380736346
Iteration: 5, Func. Count: 42, Neg. LLF: 154.60451423071336
Iteration: 6, Func. Count: 50, Neg. LLF: 154.60391821566427
Iteration: 7, Func. Count: 58, Neg. LLF: 154.6038176864533
Iteration: 8, Func. Count: 66, Neg. LLF: 154.60381583589415
Iteration: 9, Func. Count: 73, Neg. LLF: 154.6038155847186
Optimization terminated successfully (Exit mode 0)
Current function value: 154.60381583589415
Iterations: 9
Function evaluations: 73
Gradient evaluations: 9
Iteration: 1, Func. Count: 6, Neg. LLF: 160.96648101016658
Iteration: 2, Func. Count: 12, Neg. LLF: 163.49642589008198
Iteration: 3, Func. Count: 18, Neg. LLF: 156.36366851398736
Iteration: 4, Func. Count: 23, Neg. LLF: 155.98447335813745
Iteration: 5, Func. Count: 28, Neg. LLF: 155.938768365447
Iteration: 6, Func. Count: 33, Neg. LLF: 155.90771838473844
Iteration: 7, Func. Count: 38, Neg. LLF: 155.88849090574024
Iteration: 8, Func. Count: 43, Neg. LLF: 155.85531372453394
Iteration: 9, Func. Count: 48, Neg. LLF: 155.8277384977868
Iteration: 10, Func. Count: 53, Neg. LLF: 155.7982287252935
Iteration: 11, Func. Count: 58, Neg. LLF: 155.79138823369897
Iteration: 12, Func. Count: 63, Neg. LLF: 155.79073056760998
Iteration: 13, Func. Count: 68, Neg. LLF: 155.7907258388396
Iteration: 14, Func. Count: 72, Neg. LLF: 155.79072582463635
Optimization terminated successfully (Exit mode 0)
Current function value: 155.7907258388396
Iterations: 14
Function evaluations: 72
Gradient evaluations: 14
Iteration: 1, Func. Count: 7, Neg. LLF: 170.4228073049929
Iteration: 2, Func. Count: 14, Neg. LLF: 155.31766646684918
Iteration: 3, Func. Count: 20, Neg. LLF: 167.42082615816582
Iteration: 4, Func. Count: 27, Neg. LLF: 154.61815587777758
Iteration: 5, Func. Count: 33, Neg. LLF: 154.39952986979563
Iteration: 6, Func. Count: 39, Neg. LLF: 154.3898913158149
Iteration: 7, Func. Count: 45, Neg. LLF: 154.3888368261898
Iteration: 8, Func. Count: 51, Neg. LLF: 154.3886292182389
Iteration: 9, Func. Count: 56, Neg. LLF: 154.38863012663384
Optimization terminated successfully (Exit mode 0)
Current function value: 154.3886292182389
Iterations: 9
Function evaluations: 56
Gradient evaluations: 9
Iteration: 1, Func. Count: 8, Neg. LLF: 162.948088535211
Iteration: 2, Func. Count: 16, Neg. LLF: 154.83064624431344
Iteration: 3, Func. Count: 23, Neg. LLF: 156.76644923887375
Iteration: 4, Func. Count: 31, Neg. LLF: 154.40266636228412
Iteration: 5, Func. Count: 38, Neg. LLF: 154.39994302102494
Iteration: 6, Func. Count: 45, Neg. LLF: 154.39500140868117
Iteration: 7, Func. Count: 52, Neg. LLF: 154.39471211757376
Iteration: 8, Func. Count: 59, Neg. LLF: 154.39466857503015
Iteration: 9, Func. Count: 65, Neg. LLF: 154.39466905066445
Optimization terminated successfully (Exit mode 0)
Current function value: 154.39466857503015
Iterations: 9
Function evaluations: 65
Gradient evaluations: 9
Iteration: 1, Func. Count: 9, Neg. LLF: 160.30412749867403
Iteration: 2, Func. Count: 18, Neg. LLF: 154.64682117848577
Iteration: 3, Func. Count: 26, Neg. LLF: 154.59872116230642
Iteration: 4, Func. Count: 34, Neg. LLF: 154.55696855622654
Iteration: 5, Func. Count: 42, Neg. LLF: 154.55543577234232
Iteration: 6, Func. Count: 50, Neg. LLF: 154.55535130029637
Iteration: 7, Func. Count: 58, Neg. LLF: 154.55532225369026
Iteration: 8, Func. Count: 66, Neg. LLF: 154.55531787430908
Iteration: 9, Func. Count: 73, Neg. LLF: 154.55531754890174
Optimization terminated successfully (Exit mode 0)
Current function value: 154.55531787430908
Iterations: 9
Function evaluations: 73
Gradient evaluations: 9
Iteration: 1, Func. Count: 10, Neg. LLF: 160.98798786640987
Iteration: 2, Func. Count: 20, Neg. LLF: 154.62495452497888
Iteration: 3, Func. Count: 29, Neg. LLF: 154.6122212334833
Iteration: 4, Func. Count: 38, Neg. LLF: 154.6058257117275
Iteration: 5, Func. Count: 47, Neg. LLF: 154.60443966255752
Iteration: 6, Func. Count: 56, Neg. LLF: 154.60390207509576
Iteration: 7, Func. Count: 65, Neg. LLF: 154.60381749029608
Iteration: 8, Func. Count: 74, Neg. LLF: 154.60381587978844
Iteration: 9, Func. Count: 82, Neg. LLF: 154.60381562868503
Optimization terminated successfully (Exit mode 0)
Current function value: 154.60381587978844
Iterations: 9
Function evaluations: 82
Gradient evaluations: 9
Iteration: 1, Func. Count: 7, Neg. LLF: 159.45554641197037
Iteration: 2, Func. Count: 13, Neg. LLF: 163.09009249092492
Iteration: 3, Func. Count: 20, Neg. LLF: 156.06171765716653
Iteration: 4, Func. Count: 26, Neg. LLF: 156.02583948130243
Iteration: 5, Func. Count: 32, Neg. LLF: 155.98134333167462
Iteration: 6, Func. Count: 38, Neg. LLF: 155.90513963807686
Iteration: 7, Func. Count: 44, Neg. LLF: 155.84268507336364
Iteration: 8, Func. Count: 50, Neg. LLF: 155.81369007050657
Iteration: 9, Func. Count: 56, Neg. LLF: 155.79564562316298
Iteration: 10, Func. Count: 62, Neg. LLF: 155.79112092836988
Iteration: 11, Func. Count: 68, Neg. LLF: 155.7907309228808
Iteration: 12, Func. Count: 74, Neg. LLF: 155.79072587607337
Iteration: 13, Func. Count: 79, Neg. LLF: 155.79072588505255
Optimization terminated successfully (Exit mode 0)
Current function value: 155.79072587607337
Iterations: 13
Function evaluations: 79
Gradient evaluations: 13
Iteration: 1, Func. Count: 8, Neg. LLF: 170.45362550476597
Iteration: 2, Func. Count: 16, Neg. LLF: 155.30126222144187
Iteration: 3, Func. Count: 23, Neg. LLF: 179.19803803625203
Iteration: 4, Func. Count: 31, Neg. LLF: 155.0347796922925
Iteration: 5, Func. Count: 39, Neg. LLF: 154.39225009737652
Iteration: 6, Func. Count: 46, Neg. LLF: 154.38866239564527
Iteration: 7, Func. Count: 53, Neg. LLF: 154.38863979315343
Iteration: 8, Func. Count: 60, Neg. LLF: 154.38862919936787
Iteration: 9, Func. Count: 66, Neg. LLF: 154.38863010820728
Optimization terminated successfully (Exit mode 0)
Current function value: 154.38862919936787
Iterations: 9
Function evaluations: 66
Gradient evaluations: 9
Iteration: 1, Func. Count: 9, Neg. LLF: 162.99190537326672
Iteration: 2, Func. Count: 18, Neg. LLF: 154.82391635290358
Iteration: 3, Func. Count: 26, Neg. LLF: 156.71966243432053
Iteration: 4, Func. Count: 35, Neg. LLF: 154.40233182053484
Iteration: 5, Func. Count: 43, Neg. LLF: 154.39971489767098
Iteration: 6, Func. Count: 51, Neg. LLF: 154.39498012530387
Iteration: 7, Func. Count: 59, Neg. LLF: 154.39468416527868
Iteration: 8, Func. Count: 67, Neg. LLF: 154.39466857983612
Iteration: 9, Func. Count: 74, Neg. LLF: 154.39466905551214
Optimization terminated successfully (Exit mode 0)
Current function value: 154.39466857983612
Iterations: 9
Function evaluations: 74
Gradient evaluations: 9
Iteration: 1, Func. Count: 10, Neg. LLF: 160.20035521380197
Iteration: 2, Func. Count: 20, Neg. LLF: 154.65053841862388
Iteration: 3, Func. Count: 29, Neg. LLF: 154.24527658764694
Iteration: 4, Func. Count: 38, Neg. LLF: 153.3350119949784
Iteration: 5, Func. Count: 47, Neg. LLF: 153.5847085749262
Iteration: 6, Func. Count: 57, Neg. LLF: 153.56546786159663
Iteration: 7, Func. Count: 67, Neg. LLF: 153.28443497457096
Iteration: 8, Func. Count: 77, Neg. LLF: 152.96384876478544
Iteration: 9, Func. Count: 86, Neg. LLF: 152.86780556135366
Iteration: 10, Func. Count: 95, Neg. LLF: 152.8606365499309
Iteration: 11, Func. Count: 104, Neg. LLF: 152.8592182067471
Iteration: 12, Func. Count: 113, Neg. LLF: 152.85937478969007
Iteration: 13, Func. Count: 122, Neg. LLF: 152.85936401458426
Iteration: 14, Func. Count: 131, Neg. LLF: 152.8593616649236
Iteration: 15, Func. Count: 140, Neg. LLF: 152.8593817366824
Iteration: 16, Func. Count: 149, Neg. LLF: 152.85936027481773
Optimization terminated successfully (Exit mode 0)
Current function value: 152.85936054940368
Iterations: 17
Function evaluations: 149
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 161.17050338020312
Iteration: 2, Func. Count: 22, Neg. LLF: 154.62471237757597
Iteration: 3, Func. Count: 32, Neg. LLF: 154.6122824568037
Iteration: 4, Func. Count: 42, Neg. LLF: 154.6054381579611
Iteration: 5, Func. Count: 52, Neg. LLF: 154.6043762838188
Iteration: 6, Func. Count: 62, Neg. LLF: 154.60387835963633
Iteration: 7, Func. Count: 72, Neg. LLF: 154.6038170476951
Iteration: 8, Func. Count: 82, Neg. LLF: 154.60381588021417
Iteration: 9, Func. Count: 91, Neg. LLF: 154.6038156291155
Optimization terminated successfully (Exit mode 0)
Current function value: 154.60381588021417
Iterations: 9
Function evaluations: 91
Gradient evaluations: 9
Iteration: 1, Func. Count: 8, Neg. LLF: 158.64174736694196
Iteration: 2, Func. Count: 15, Neg. LLF: 164.12090006957786
Iteration: 3, Func. Count: 23, Neg. LLF: 156.09424010777866
Iteration: 4, Func. Count: 30, Neg. LLF: 156.0432966053545
Iteration: 5, Func. Count: 37, Neg. LLF: 156.0157625734914
Iteration: 6, Func. Count: 44, Neg. LLF: 155.89341131806844
Iteration: 7, Func. Count: 51, Neg. LLF: 155.81974501352923
Iteration: 8, Func. Count: 58, Neg. LLF: 155.79280695132334
Iteration: 9, Func. Count: 65, Neg. LLF: 155.7907809420123
Iteration: 10, Func. Count: 72, Neg. LLF: 155.79072713849348
Iteration: 11, Func. Count: 79, Neg. LLF: 155.79072593201883
Iteration: 12, Func. Count: 85, Neg. LLF: 155.79072595549772
Optimization terminated successfully (Exit mode 0)
Current function value: 155.79072593201883
Iterations: 12
Function evaluations: 85
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 170.442667219052
Iteration: 2, Func. Count: 18, Neg. LLF: 155.29980210020977
Iteration: 3, Func. Count: 26, Neg. LLF: 172.89608204594595
Iteration: 4, Func. Count: 35, Neg. LLF: 154.94476443721737
Iteration: 5, Func. Count: 44, Neg. LLF: 154.39167114348137
Iteration: 6, Func. Count: 52, Neg. LLF: 154.38863693630768
Iteration: 7, Func. Count: 60, Neg. LLF: 154.38862969495423
Iteration: 8, Func. Count: 68, Neg. LLF: 154.38862920809157
Optimization terminated successfully (Exit mode 0)
Current function value: 154.38862920809157
Iterations: 8
Function evaluations: 68
Gradient evaluations: 8
Iteration: 1, Func. Count: 10, Neg. LLF: 162.9804144708
Iteration: 2, Func. Count: 20, Neg. LLF: 154.82523745267846
Iteration: 3, Func. Count: 29, Neg. LLF: 156.7292395575533
Iteration: 4, Func. Count: 39, Neg. LLF: 154.40239445329433
Iteration: 5, Func. Count: 48, Neg. LLF: 154.39975655042434
Iteration: 6, Func. Count: 57, Neg. LLF: 154.3949908719445
Iteration: 7, Func. Count: 66, Neg. LLF: 154.3946875459077
Iteration: 8, Func. Count: 75, Neg. LLF: 154.39466857753544
Iteration: 9, Func. Count: 83, Neg. LLF: 154.3946690532111
Optimization terminated successfully (Exit mode 0)
Current function value: 154.39466857753544
Iterations: 9
Function evaluations: 83
Gradient evaluations: 9
Iteration: 1, Func. Count: 11, Neg. LLF: 160.24585375744505
Iteration: 2, Func. Count: 22, Neg. LLF: 154.64952283640332
Iteration: 3, Func. Count: 32, Neg. LLF: 154.25132903431418
Iteration: 4, Func. Count: 42, Neg. LLF: 153.39166276575088
Iteration: 5, Func. Count: 52, Neg. LLF: 154.22135275826417
Iteration: 6, Func. Count: 63, Neg. LLF: 153.08447661480636
Iteration: 7, Func. Count: 73, Neg. LLF: 153.14578115143635
Iteration: 8, Func. Count: 84, Neg. LLF: 152.91819697398782
Iteration: 9, Func. Count: 94, Neg. LLF: 152.8645646600531
Iteration: 10, Func. Count: 104, Neg. LLF: 152.85990474140826
Iteration: 11, Func. Count: 114, Neg. LLF: 152.8596833893186
Iteration: 12, Func. Count: 124, Neg. LLF: 152.85908074258958
Iteration: 13, Func. Count: 134, Neg. LLF: 152.85928335093448
Iteration: 14, Func. Count: 154, Neg. LLF: 152.8593649719215
Iteration: 15, Func. Count: 165, Neg. LLF: 152.85936078675567
Iteration: 16, Func. Count: 176, Neg. LLF: 152.85936024395448
Iteration: 17, Func. Count: 187, Neg. LLF: 152.85936023355987
Iteration: 18, Func. Count: 196, Neg. LLF: 152.85935995904845
Optimization terminated successfully (Exit mode 0)
Current function value: 152.85936023355987
Iterations: 19
Function evaluations: 196
Gradient evaluations: 18
Iteration: 1, Func. Count: 12, Neg. LLF: 161.41785540220357
Iteration: 2, Func. Count: 24, Neg. LLF: 154.62464853677466
Iteration: 3, Func. Count: 35, Neg. LLF: 154.61246892100937
Iteration: 4, Func. Count: 46, Neg. LLF: 154.60540734087576
Iteration: 5, Func. Count: 57, Neg. LLF: 154.60440853452698
Iteration: 6, Func. Count: 68, Neg. LLF: 154.60387842122373
Iteration: 7, Func. Count: 79, Neg. LLF: 154.603817038811
Iteration: 8, Func. Count: 90, Neg. LLF: 154.60381586203965
Iteration: 9, Func. Count: 100, Neg. LLF: 154.60381561091992
Optimization terminated successfully (Exit mode 0)
Current function value: 154.60381586203965
Iterations: 9
Function evaluations: 100
Gradient evaluations: 9
Iteration: 1, Func. Count: 5, Neg. LLF: 161.38798581634526
Iteration: 2, Func. Count: 9, Neg. LLF: 161.79728726805996
Iteration: 3, Func. Count: 14, Neg. LLF: 160.7754188381249
Iteration: 4, Func. Count: 18, Neg. LLF: 160.75012119527
Iteration: 5, Func. Count: 22, Neg. LLF: 160.72207932265422
Iteration: 6, Func. Count: 26, Neg. LLF: 160.70645999185228
Iteration: 7, Func. Count: 30, Neg. LLF: 160.70348597541843
Iteration: 8, Func. Count: 34, Neg. LLF: 160.7032725881756
Iteration: 9, Func. Count: 38, Neg. LLF: 160.70326308367586
Iteration: 10, Func. Count: 41, Neg. LLF: 160.70326308435818
Optimization terminated successfully (Exit mode 0)
Current function value: 160.70326308367586
Iterations: 10
Function evaluations: 41
Gradient evaluations: 10
Iteration: 1, Func. Count: 6, Neg. LLF: 170.83739807428591
Iteration: 2, Func. Count: 12, Neg. LLF: 155.58914546633977
Iteration: 3, Func. Count: 17, Neg. LLF: 169.28882276108305
Iteration: 4, Func. Count: 23, Neg. LLF: 154.67891359763544
Iteration: 5, Func. Count: 28, Neg. LLF: 154.4182426742588
Iteration: 6, Func. Count: 33, Neg. LLF: 154.3912777688001
Iteration: 7, Func. Count: 38, Neg. LLF: 154.38911737262148
Iteration: 8, Func. Count: 43, Neg. LLF: 154.38865057739457
Iteration: 9, Func. Count: 48, Neg. LLF: 154.38863005091915
Iteration: 10, Func. Count: 53, Neg. LLF: 154.3886291970161
Optimization terminated successfully (Exit mode 0)
Current function value: 154.3886291970161
Iterations: 10
Function evaluations: 53
Gradient evaluations: 10
Iteration: 1, Func. Count: 7, Neg. LLF: 163.50534470567243
Iteration: 2, Func. Count: 14, Neg. LLF: 154.86804494799713
Iteration: 3, Func. Count: 20, Neg. LLF: 157.12297072491708
Iteration: 4, Func. Count: 27, Neg. LLF: 154.40639921473561
Iteration: 5, Func. Count: 33, Neg. LLF: 154.39810126164656
Iteration: 6, Func. Count: 39, Neg. LLF: 154.39469992267888
Iteration: 7, Func. Count: 45, Neg. LLF: 154.3946899430429
Iteration: 8, Func. Count: 52, Neg. LLF: 154.3946685754649
Iteration: 9, Func. Count: 57, Neg. LLF: 154.39466905106212
Optimization terminated successfully (Exit mode 0)
Current function value: 154.3946685754649
Iterations: 9
Function evaluations: 57
Gradient evaluations: 9
Iteration: 1, Func. Count: 8, Neg. LLF: 160.86114279699686
Iteration: 2, Func. Count: 16, Neg. LLF: 154.6647021268523
Iteration: 3, Func. Count: 23, Neg. LLF: 154.65992184603263
Iteration: 4, Func. Count: 31, Neg. LLF: 154.55627635958365
Iteration: 5, Func. Count: 38, Neg. LLF: 154.55531943592632
Iteration: 6, Func. Count: 45, Neg. LLF: 154.55531807231065
Iteration: 7, Func. Count: 51, Neg. LLF: 154.55531774714683
Optimization terminated successfully (Exit mode 0)
Current function value: 154.55531807231065
Iterations: 7
Function evaluations: 51
Gradient evaluations: 7
Iteration: 1, Func. Count: 9, Neg. LLF: 161.05575530878357
Iteration: 2, Func. Count: 18, Neg. LLF: 154.63840727126336
Iteration: 3, Func. Count: 26, Neg. LLF: 154.61706320082794
Iteration: 4, Func. Count: 34, Neg. LLF: 154.6065469033988
Iteration: 5, Func. Count: 42, Neg. LLF: 154.60394198884077
Iteration: 6, Func. Count: 50, Neg. LLF: 154.60384198698372
Iteration: 7, Func. Count: 58, Neg. LLF: 154.60381594424777
Iteration: 8, Func. Count: 65, Neg. LLF: 154.6038156932058
Optimization terminated successfully (Exit mode 0)
Current function value: 154.60381594424777
Iterations: 8
Function evaluations: 65
Gradient evaluations: 8
Iteration: 1, Func. Count: 6, Neg. LLF: 162.07606478422056
Iteration: 2, Func. Count: 12, Neg. LLF: 159.06749858492265
Iteration: 3, Func. Count: 18, Neg. LLF: 156.85583637596406
Iteration: 4, Func. Count: 23, Neg. LLF: 156.7199991277373
Iteration: 5, Func. Count: 28, Neg. LLF: 156.71118483552294
Iteration: 6, Func. Count: 33, Neg. LLF: 156.66710404186006
Iteration: 7, Func. Count: 38, Neg. LLF: 156.62360544424644
Iteration: 8, Func. Count: 43, Neg. LLF: 156.62034798176953
Iteration: 9, Func. Count: 48, Neg. LLF: 156.62016842953253
Iteration: 10, Func. Count: 53, Neg. LLF: 156.62016494024303
Iteration: 11, Func. Count: 57, Neg. LLF: 156.62016495580698
Optimization terminated successfully (Exit mode 0)
Current function value: 156.62016494024303
Iterations: 11
Function evaluations: 57
Gradient evaluations: 11
Iteration: 1, Func. Count: 7, Neg. LLF: 171.13347703628253
Iteration: 2, Func. Count: 14, Neg. LLF: 155.7342617179156
Iteration: 3, Func. Count: 20, Neg. LLF: 154.72568880627094
Iteration: 4, Func. Count: 26, Neg. LLF: 154.4073279832832
Iteration: 5, Func. Count: 32, Neg. LLF: 154.40504426489883
Iteration: 6, Func. Count: 39, Neg. LLF: 154.388690437305
Iteration: 7, Func. Count: 45, Neg. LLF: 154.38862920367256
Iteration: 8, Func. Count: 50, Neg. LLF: 154.38863011228602
Optimization terminated successfully (Exit mode 0)
Current function value: 154.38862920367256
Iterations: 8
Function evaluations: 50
Gradient evaluations: 8
Iteration: 1, Func. Count: 8, Neg. LLF: 163.84663275677602
Iteration: 2, Func. Count: 16, Neg. LLF: 154.89624765445845
Iteration: 3, Func. Count: 23, Neg. LLF: 157.3091250000562
Iteration: 4, Func. Count: 31, Neg. LLF: 154.41115243189392
Iteration: 5, Func. Count: 38, Neg. LLF: 154.39808988152646
Iteration: 6, Func. Count: 45, Neg. LLF: 154.39503317515286
Iteration: 7, Func. Count: 52, Neg. LLF: 154.39471024709303
Iteration: 8, Func. Count: 59, Neg. LLF: 154.3946685827051
Iteration: 9, Func. Count: 65, Neg. LLF: 154.39466905836738
Optimization terminated successfully (Exit mode 0)
Current function value: 154.3946685827051
Iterations: 9
Function evaluations: 65
Gradient evaluations: 9
Iteration: 1, Func. Count: 9, Neg. LLF: 160.99558524727266
Iteration: 2, Func. Count: 18, Neg. LLF: 154.67001648021977
Iteration: 3, Func. Count: 26, Neg. LLF: 154.63373729974245
Iteration: 4, Func. Count: 35, Neg. LLF: 154.55540533859235
Iteration: 5, Func. Count: 43, Neg. LLF: 154.55532451000792
Iteration: 6, Func. Count: 51, Neg. LLF: 154.5553184697373
Iteration: 7, Func. Count: 59, Neg. LLF: 154.5553177914414
Optimization terminated successfully (Exit mode 0)
Current function value: 154.5553177914414
Iterations: 7
Function evaluations: 59
Gradient evaluations: 7
Iteration: 1, Func. Count: 10, Neg. LLF: 161.0434448103775
Iteration: 2, Func. Count: 20, Neg. LLF: 154.63622799872192
Iteration: 3, Func. Count: 29, Neg. LLF: 154.61118167180433
Iteration: 4, Func. Count: 38, Neg. LLF: 154.60661905400602
Iteration: 5, Func. Count: 47, Neg. LLF: 154.60433732519328
Iteration: 6, Func. Count: 56, Neg. LLF: 154.60391257105658
Iteration: 7, Func. Count: 65, Neg. LLF: 154.6038172736636
Iteration: 8, Func. Count: 74, Neg. LLF: 154.60381604161668
Iteration: 9, Func. Count: 82, Neg. LLF: 154.60381579061743
Optimization terminated successfully (Exit mode 0)
Current function value: 154.60381604161668
Iterations: 9
Function evaluations: 82
Gradient evaluations: 9
Iteration: 1, Func. Count: 7, Neg. LLF: 165.7827747877327
Iteration: 2, Func. Count: 14, Neg. LLF: 160.46511647659906
Iteration: 3, Func. Count: 21, Neg. LLF: 156.22997613747515
Iteration: 4, Func. Count: 27, Neg. LLF: 155.99867743531058
Iteration: 5, Func. Count: 33, Neg. LLF: 155.9404716305102
Iteration: 6, Func. Count: 39, Neg. LLF: 155.90867991228353
Iteration: 7, Func. Count: 45, Neg. LLF: 155.89320002800605
Iteration: 8, Func. Count: 51, Neg. LLF: 155.87727849490938
Iteration: 9, Func. Count: 57, Neg. LLF: 155.81349147076756
Iteration: 10, Func. Count: 63, Neg. LLF: 155.79301951761275
Iteration: 11, Func. Count: 69, Neg. LLF: 155.7911133811544
Iteration: 12, Func. Count: 75, Neg. LLF: 155.79073778577953
Iteration: 13, Func. Count: 81, Neg. LLF: 155.7907259225458
Iteration: 14, Func. Count: 86, Neg. LLF: 155.7907259083501
Optimization terminated successfully (Exit mode 0)
Current function value: 155.7907259225458
Iterations: 14
Function evaluations: 86
Gradient evaluations: 14
Iteration: 1, Func. Count: 8, Neg. LLF: 171.15138222758725
Iteration: 2, Func. Count: 16, Neg. LLF: 155.72191063821643
Iteration: 3, Func. Count: 23, Neg. LLF: 154.87012587157474
Iteration: 4, Func. Count: 30, Neg. LLF: 154.43783591832573
Iteration: 5, Func. Count: 37, Neg. LLF: 154.39253150993486
Iteration: 6, Func. Count: 44, Neg. LLF: 154.3894034862066
Iteration: 7, Func. Count: 51, Neg. LLF: 154.38862971386092
Iteration: 8, Func. Count: 58, Neg. LLF: 154.3889019661723
Optimization terminated successfully (Exit mode 0)
Current function value: 154.38862908555996
Iterations: 9
Function evaluations: 60
Gradient evaluations: 8
Iteration: 1, Func. Count: 9, Neg. LLF: 163.70286427797382
Iteration: 2, Func. Count: 18, Neg. LLF: 154.90311035460417
Iteration: 3, Func. Count: 26, Neg. LLF: 157.24515766408342
Iteration: 4, Func. Count: 35, Neg. LLF: 154.41244556171256
Iteration: 5, Func. Count: 43, Neg. LLF: 154.3972166590907
Iteration: 6, Func. Count: 51, Neg. LLF: 154.3949349021083
Iteration: 7, Func. Count: 59, Neg. LLF: 154.39470640080523
Iteration: 8, Func. Count: 67, Neg. LLF: 154.3946685757239
Iteration: 9, Func. Count: 74, Neg. LLF: 154.3946690513799
Optimization terminated successfully (Exit mode 0)
Current function value: 154.3946685757239
Iterations: 9
Function evaluations: 74
Gradient evaluations: 9
Iteration: 1, Func. Count: 10, Neg. LLF: 161.01384930244205
Iteration: 2, Func. Count: 20, Neg. LLF: 154.66975957568212
Iteration: 3, Func. Count: 29, Neg. LLF: 154.62659389574412
Iteration: 4, Func. Count: 38, Neg. LLF: 154.55899546224265
Iteration: 5, Func. Count: 47, Neg. LLF: 154.5555130791737
Iteration: 6, Func. Count: 56, Neg. LLF: 154.55540273055112
Iteration: 7, Func. Count: 65, Neg. LLF: 154.55531780795624
Iteration: 8, Func. Count: 73, Neg. LLF: 154.55531748264275
Optimization terminated successfully (Exit mode 0)
Current function value: 154.55531780795624
Iterations: 8
Function evaluations: 73
Gradient evaluations: 8
Iteration: 1, Func. Count: 11, Neg. LLF: 160.60082152638955
Iteration: 2, Func. Count: 22, Neg. LLF: 154.63684573709733
Iteration: 3, Func. Count: 32, Neg. LLF: 154.61055300627092
Iteration: 4, Func. Count: 42, Neg. LLF: 154.60608805414861
Iteration: 5, Func. Count: 52, Neg. LLF: 154.604424307151
Iteration: 6, Func. Count: 62, Neg. LLF: 154.60391839764188
Iteration: 7, Func. Count: 72, Neg. LLF: 154.60381923217653
Iteration: 8, Func. Count: 82, Neg. LLF: 154.60381634115947
Iteration: 9, Func. Count: 92, Neg. LLF: 154.60381580393204
Optimization terminated successfully (Exit mode 0)
Current function value: 154.60381580393204
Iterations: 9
Function evaluations: 92
Gradient evaluations: 9
Iteration: 1, Func. Count: 8, Neg. LLF: 164.85649890820406
Iteration: 2, Func. Count: 16, Neg. LLF: 161.9317787336641
Iteration: 3, Func. Count: 24, Neg. LLF: 156.26387783033275
Iteration: 4, Func. Count: 31, Neg. LLF: 156.00504274940258
Iteration: 5, Func. Count: 38, Neg. LLF: 155.9464289274383
Iteration: 6, Func. Count: 45, Neg. LLF: 155.91075795476775
Iteration: 7, Func. Count: 52, Neg. LLF: 155.89037319620138
Iteration: 8, Func. Count: 59, Neg. LLF: 155.8790330170809
Iteration: 9, Func. Count: 66, Neg. LLF: 155.833198672104
Iteration: 10, Func. Count: 73, Neg. LLF: 155.79453249039102
Iteration: 11, Func. Count: 80, Neg. LLF: 155.79084313317762
Iteration: 12, Func. Count: 87, Neg. LLF: 155.79072642891143
Iteration: 13, Func. Count: 94, Neg. LLF: 155.79072584636157
Optimization terminated successfully (Exit mode 0)
Current function value: 155.79072584636157
Iterations: 13
Function evaluations: 94
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 171.18256678869605
Iteration: 2, Func. Count: 18, Neg. LLF: 155.69986579627107
Iteration: 3, Func. Count: 26, Neg. LLF: 156.793969311386
Iteration: 4, Func. Count: 35, Neg. LLF: 154.93382909423204
Iteration: 5, Func. Count: 44, Neg. LLF: 154.3898293282533
Iteration: 6, Func. Count: 52, Neg. LLF: 154.38863537906323
Iteration: 7, Func. Count: 60, Neg. LLF: 154.38863072813805
Iteration: 8, Func. Count: 68, Neg. LLF: 154.38863024036598
Optimization terminated successfully (Exit mode 0)
Current function value: 154.38863024036598
Iterations: 8
Function evaluations: 68
Gradient evaluations: 8
Iteration: 1, Func. Count: 10, Neg. LLF: 163.74830418832036
Iteration: 2, Func. Count: 20, Neg. LLF: 154.89522226305735
Iteration: 3, Func. Count: 29, Neg. LLF: 157.29596412433523
Iteration: 4, Func. Count: 39, Neg. LLF: 154.41232727515276
Iteration: 5, Func. Count: 48, Neg. LLF: 154.39690124002783
Iteration: 6, Func. Count: 57, Neg. LLF: 154.39488950028462
Iteration: 7, Func. Count: 66, Neg. LLF: 154.39470713273087
Iteration: 8, Func. Count: 75, Neg. LLF: 154.39466857522774
Iteration: 9, Func. Count: 83, Neg. LLF: 154.39466905087028
Optimization terminated successfully (Exit mode 0)
Current function value: 154.39466857522774
Iterations: 9
Function evaluations: 83
Gradient evaluations: 9
Iteration: 1, Func. Count: 11, Neg. LLF: 160.88814733155618
Iteration: 2, Func. Count: 22, Neg. LLF: 154.67260663103377
Iteration: 3, Func. Count: 32, Neg. LLF: 154.27710833092806
Iteration: 4, Func. Count: 42, Neg. LLF: 153.65322099161912
Iteration: 5, Func. Count: 52, Neg. LLF: 164.80750322147375
Iteration: 6, Func. Count: 63, Neg. LLF: 157.32303530806212
Iteration: 7, Func. Count: 74, Neg. LLF: 153.24219136204954
Iteration: 8, Func. Count: 84, Neg. LLF: 153.14460460552647
Iteration: 9, Func. Count: 94, Neg. LLF: 152.90929369787966
Iteration: 10, Func. Count: 104, Neg. LLF: 152.86811995173406
Iteration: 11, Func. Count: 114, Neg. LLF: 152.85593184237783
Iteration: 12, Func. Count: 124, Neg. LLF: 152.9457719520114
Iteration: 13, Func. Count: 136, Neg. LLF: 152.85966856690538
Iteration: 14, Func. Count: 146, Neg. LLF: 152.85946401889333
Iteration: 15, Func. Count: 156, Neg. LLF: 152.85936024167273
Iteration: 16, Func. Count: 165, Neg. LLF: 152.85935996713425
Optimization terminated successfully (Exit mode 0)
Current function value: 152.85936024167273
Iterations: 17
Function evaluations: 165
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 160.76920449996078
Iteration: 2, Func. Count: 24, Neg. LLF: 154.63542093711487
Iteration: 3, Func. Count: 35, Neg. LLF: 154.61035021146824
Iteration: 4, Func. Count: 46, Neg. LLF: 154.6056573119091
Iteration: 5, Func. Count: 57, Neg. LLF: 154.60424130039803
Iteration: 6, Func. Count: 68, Neg. LLF: 154.603892167907
Iteration: 7, Func. Count: 79, Neg. LLF: 154.6038188495816
Iteration: 8, Func. Count: 90, Neg. LLF: 154.60381617340713
Iteration: 9, Func. Count: 100, Neg. LLF: 154.60381592244755
Optimization terminated successfully (Exit mode 0)
Current function value: 154.60381617340713
Iterations: 9
Function evaluations: 100
Gradient evaluations: 9
Iteration: 1, Func. Count: 9, Neg. LLF: 164.24953930935345
Iteration: 2, Func. Count: 18, Neg. LLF: 162.88787656699387
Iteration: 3, Func. Count: 27, Neg. LLF: 156.27182828921968
Iteration: 4, Func. Count: 35, Neg. LLF: 156.01459912161806
Iteration: 5, Func. Count: 43, Neg. LLF: 155.9534880218897
Iteration: 6, Func. Count: 51, Neg. LLF: 155.90913043011514
Iteration: 7, Func. Count: 59, Neg. LLF: 155.88912205238103
Iteration: 8, Func. Count: 67, Neg. LLF: 155.878238984681
Iteration: 9, Func. Count: 75, Neg. LLF: 155.83391102767598
Iteration: 10, Func. Count: 83, Neg. LLF: 155.7945883963231
Iteration: 11, Func. Count: 91, Neg. LLF: 155.79084838090796
Iteration: 12, Func. Count: 99, Neg. LLF: 155.79072690988335
Iteration: 13, Func. Count: 107, Neg. LLF: 155.79072586920685
Iteration: 14, Func. Count: 114, Neg. LLF: 155.79072589269086
Optimization terminated successfully (Exit mode 0)
Current function value: 155.79072586920685
Iterations: 14
Function evaluations: 114
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 171.1721764044232
Iteration: 2, Func. Count: 20, Neg. LLF: 155.69695088922677
Iteration: 3, Func. Count: 29, Neg. LLF: 156.8657798031489
Iteration: 4, Func. Count: 39, Neg. LLF: 154.9561142676553
Iteration: 5, Func. Count: 49, Neg. LLF: 154.3898620028146
Iteration: 6, Func. Count: 58, Neg. LLF: 154.38863622939323
Iteration: 7, Func. Count: 67, Neg. LLF: 154.38862994671643
Iteration: 8, Func. Count: 76, Neg. LLF: 154.38871764634732
Optimization terminated successfully (Exit mode 0)
Current function value: 154.38862967172156
Iterations: 9
Function evaluations: 78
Gradient evaluations: 8
Iteration: 1, Func. Count: 11, Neg. LLF: 163.7347618964872
Iteration: 2, Func. Count: 22, Neg. LLF: 154.89653565608643
Iteration: 3, Func. Count: 32, Neg. LLF: 157.29816363793367
Iteration: 4, Func. Count: 43, Neg. LLF: 154.4123821722246
Iteration: 5, Func. Count: 53, Neg. LLF: 154.39695964887215
Iteration: 6, Func. Count: 63, Neg. LLF: 154.394894664785
Iteration: 7, Func. Count: 73, Neg. LLF: 154.3947078957418
Iteration: 8, Func. Count: 83, Neg. LLF: 154.39466857523047
Iteration: 9, Func. Count: 92, Neg. LLF: 154.3946690508715
Optimization terminated successfully (Exit mode 0)
Current function value: 154.39466857523047
Iterations: 9
Function evaluations: 92
Gradient evaluations: 9
Iteration: 1, Func. Count: 12, Neg. LLF: 160.9405904272981
Iteration: 2, Func. Count: 24, Neg. LLF: 154.67138652445604
Iteration: 3, Func. Count: 35, Neg. LLF: 154.28957755692466
Iteration: 4, Func. Count: 46, Neg. LLF: 153.73253694957384
Iteration: 5, Func. Count: 57, Neg. LLF: 164.08339528732392
Iteration: 6, Func. Count: 69, Neg. LLF: 157.29598222508906
Iteration: 7, Func. Count: 81, Neg. LLF: 153.29060731414742
Iteration: 8, Func. Count: 92, Neg. LLF: 153.18969740611197
Iteration: 9, Func. Count: 103, Neg. LLF: 152.92933505281835
Iteration: 10, Func. Count: 114, Neg. LLF: 152.88014210676818
Iteration: 11, Func. Count: 125, Neg. LLF: 152.85655151972543
Iteration: 12, Func. Count: 136, Neg. LLF: 152.85835861801343
Iteration: 13, Func. Count: 147, Neg. LLF: 152.85763777292127
Iteration: 14, Func. Count: 168, Neg. LLF: 152.8623712277195
Iteration: 15, Func. Count: 181, Neg. LLF: 152.85937488385844
Iteration: 16, Func. Count: 192, Neg. LLF: 152.85936116084628
Iteration: 17, Func. Count: 203, Neg. LLF: 152.85936023381706
Optimization terminated successfully (Exit mode 0)
Current function value: 152.85936023381706
Iterations: 18
Function evaluations: 203
Gradient evaluations: 17
Iteration: 1, Func. Count: 13, Neg. LLF: 161.00653907712268
Iteration: 2, Func. Count: 26, Neg. LLF: 154.63478878167496
Iteration: 3, Func. Count: 38, Neg. LLF: 154.61057278380662
Iteration: 4, Func. Count: 50, Neg. LLF: 154.60573620600843
Iteration: 5, Func. Count: 62, Neg. LLF: 154.60422223904487
Iteration: 6, Func. Count: 74, Neg. LLF: 154.6038935535501
Iteration: 7, Func. Count: 86, Neg. LLF: 154.60381847790353
Iteration: 8, Func. Count: 98, Neg. LLF: 154.6038161542801
Iteration: 9, Func. Count: 109, Neg. LLF: 154.60381590330886
Optimization terminated successfully (Exit mode 0)
Current function value: 154.6038161542801
Iterations: 9
Function evaluations: 109
Gradient evaluations: 9
Iteration: 1, Func. Count: 6, Neg. LLF: 161.71670885503949
Iteration: 2, Func. Count: 11, Neg. LLF: 162.55885403163595
Iteration: 3, Func. Count: 17, Neg. LLF: 159.2665287214169
Iteration: 4, Func. Count: 22, Neg. LLF: 159.26385600411888
Iteration: 5, Func. Count: 27, Neg. LLF: 159.26030054657545
Iteration: 6, Func. Count: 32, Neg. LLF: 159.2472783739479
Iteration: 7, Func. Count: 37, Neg. LLF: 159.23872996916046
Iteration: 8, Func. Count: 42, Neg. LLF: 159.23774784011658
Iteration: 9, Func. Count: 47, Neg. LLF: 159.237517235989
Iteration: 10, Func. Count: 52, Neg. LLF: 159.23749944655015
Iteration: 11, Func. Count: 56, Neg. LLF: 159.23749944656487
Optimization terminated successfully (Exit mode 0)
Current function value: 159.23749944655015
Iterations: 11
Function evaluations: 56
Gradient evaluations: 11
Iteration: 1, Func. Count: 7, Neg. LLF: 170.7895809934577
Iteration: 2, Func. Count: 14, Neg. LLF: 155.628829473408
Iteration: 3, Func. Count: 20, Neg. LLF: 170.22593921282095
Iteration: 4, Func. Count: 27, Neg. LLF: 155.22566675442664
Iteration: 5, Func. Count: 34, Neg. LLF: 154.39555474650032
Iteration: 6, Func. Count: 40, Neg. LLF: 154.38866802456664
Iteration: 7, Func. Count: 46, Neg. LLF: 154.3886498796238
Iteration: 8, Func. Count: 52, Neg. LLF: 154.38862916979332
Iteration: 9, Func. Count: 57, Neg. LLF: 154.3886300787093
Optimization terminated successfully (Exit mode 0)
Current function value: 154.38862916979332
Iterations: 9
Function evaluations: 57
Gradient evaluations: 9
Iteration: 1, Func. Count: 8, Neg. LLF: 163.4326823157407
Iteration: 2, Func. Count: 16, Neg. LLF: 154.88162349715952
Iteration: 3, Func. Count: 23, Neg. LLF: 157.14885303911325
Iteration: 4, Func. Count: 31, Neg. LLF: 154.4069394777734
Iteration: 5, Func. Count: 38, Neg. LLF: 154.39852885157
Iteration: 6, Func. Count: 45, Neg. LLF: 154.39470597085275
Iteration: 7, Func. Count: 52, Neg. LLF: 154.39469404044158
Iteration: 8, Func. Count: 60, Neg. LLF: 154.39466857486545
Iteration: 9, Func. Count: 66, Neg. LLF: 154.3946690504653
Optimization terminated successfully (Exit mode 0)
Current function value: 154.39466857486545
Iterations: 9
Function evaluations: 66
Gradient evaluations: 9
Iteration: 1, Func. Count: 9, Neg. LLF: 160.51715972354836
Iteration: 2, Func. Count: 18, Neg. LLF: 154.67340079116906
Iteration: 3, Func. Count: 26, Neg. LLF: 154.67172412560583
Iteration: 4, Func. Count: 35, Neg. LLF: 154.55608462925235
Iteration: 5, Func. Count: 43, Neg. LLF: 154.55531868831508
Iteration: 6, Func. Count: 51, Neg. LLF: 154.55531788790745
Optimization terminated successfully (Exit mode 0)
Current function value: 154.55531788790745
Iterations: 6
Function evaluations: 51
Gradient evaluations: 6
Iteration: 1, Func. Count: 10, Neg. LLF: 161.19750998038907
Iteration: 2, Func. Count: 20, Neg. LLF: 154.6351307360146
Iteration: 3, Func. Count: 29, Neg. LLF: 154.6161261687057
Iteration: 4, Func. Count: 38, Neg. LLF: 154.60500581461426
Iteration: 5, Func. Count: 47, Neg. LLF: 154.60410517224787
Iteration: 6, Func. Count: 56, Neg. LLF: 154.60384077872368
Iteration: 7, Func. Count: 65, Neg. LLF: 154.60381611614346
Iteration: 8, Func. Count: 73, Neg. LLF: 154.6038158647769
Optimization terminated successfully (Exit mode 0)
Current function value: 154.60381611614346
Iterations: 8
Function evaluations: 73
Gradient evaluations: 8
Iteration: 1, Func. Count: 7, Neg. LLF: 163.00328359261943
Iteration: 2, Func. Count: 14, Neg. LLF: 158.90493856057378
Iteration: 3, Func. Count: 21, Neg. LLF: 156.98074872271187
Iteration: 4, Func. Count: 27, Neg. LLF: 156.7276462691636
Iteration: 5, Func. Count: 33, Neg. LLF: 156.7047204171248
Iteration: 6, Func. Count: 39, Neg. LLF: 156.694521630158
Iteration: 7, Func. Count: 45, Neg. LLF: 156.64869498890286
Iteration: 8, Func. Count: 51, Neg. LLF: 156.6046204944798
Iteration: 9, Func. Count: 57, Neg. LLF: 156.58573870948518
Iteration: 10, Func. Count: 63, Neg. LLF: 156.58194514616184
Iteration: 11, Func. Count: 69, Neg. LLF: 156.58192856241848
Iteration: 12, Func. Count: 74, Neg. LLF: 156.58192854561048
Optimization terminated successfully (Exit mode 0)
Current function value: 156.58192856241848
Iterations: 12
Function evaluations: 74
Gradient evaluations: 12
Iteration: 1, Func. Count: 8, Neg. LLF: 171.08440561442166
Iteration: 2, Func. Count: 16, Neg. LLF: 155.76280473331352
Iteration: 3, Func. Count: 23, Neg. LLF: 154.93041233714055
Iteration: 4, Func. Count: 30, Neg. LLF: 154.58623140611667
Iteration: 5, Func. Count: 37, Neg. LLF: 154.41519187119496
Iteration: 6, Func. Count: 44, Neg. LLF: 154.3898086380226
Iteration: 7, Func. Count: 51, Neg. LLF: 154.3886450729886
Iteration: 8, Func. Count: 58, Neg. LLF: 154.3945269047996
Iteration: 9, Func. Count: 67, Neg. LLF: 154.38862921541033
Iteration: 10, Func. Count: 73, Neg. LLF: 154.38863012414996
Optimization terminated successfully (Exit mode 0)
Current function value: 154.38862921541033
Iterations: 11
Function evaluations: 73
Gradient evaluations: 10
Iteration: 1, Func. Count: 9, Neg. LLF: 163.77043281212008
Iteration: 2, Func. Count: 18, Neg. LLF: 154.9102061919795
Iteration: 3, Func. Count: 26, Neg. LLF: 157.1766748760144
Iteration: 4, Func. Count: 35, Neg. LLF: 154.41082986613716
Iteration: 5, Func. Count: 43, Neg. LLF: 154.39887777241768
Iteration: 6, Func. Count: 51, Neg. LLF: 154.39516560056663
Iteration: 7, Func. Count: 59, Neg. LLF: 154.39469830610955
Iteration: 8, Func. Count: 67, Neg. LLF: 154.3946685809855
Iteration: 9, Func. Count: 74, Neg. LLF: 154.39466905668183
Optimization terminated successfully (Exit mode 0)
Current function value: 154.3946685809855
Iterations: 9
Function evaluations: 74
Gradient evaluations: 9
Iteration: 1, Func. Count: 10, Neg. LLF: 160.63866798060093
Iteration: 2, Func. Count: 20, Neg. LLF: 154.6792333603497
Iteration: 3, Func. Count: 29, Neg. LLF: 154.6458419499429
Iteration: 4, Func. Count: 39, Neg. LLF: 154.55541817290253
Iteration: 5, Func. Count: 48, Neg. LLF: 154.55532569480235
Iteration: 6, Func. Count: 57, Neg. LLF: 154.55531871067697
Iteration: 7, Func. Count: 66, Neg. LLF: 154.55531781964993
Optimization terminated successfully (Exit mode 0)
Current function value: 154.55531781964993
Iterations: 7
Function evaluations: 66
Gradient evaluations: 7
Iteration: 1, Func. Count: 11, Neg. LLF: 161.19037811304418
Iteration: 2, Func. Count: 22, Neg. LLF: 154.63225733493385
Iteration: 3, Func. Count: 32, Neg. LLF: 154.6088037152315
Iteration: 4, Func. Count: 42, Neg. LLF: 154.60478985756868
Iteration: 5, Func. Count: 52, Neg. LLF: 154.60399394337784
Iteration: 6, Func. Count: 62, Neg. LLF: 154.60386515047753
Iteration: 7, Func. Count: 72, Neg. LLF: 154.60381866014927
Iteration: 8, Func. Count: 82, Neg. LLF: 154.60381595071968
Iteration: 9, Func. Count: 91, Neg. LLF: 154.60381569961427
Optimization terminated successfully (Exit mode 0)
Current function value: 154.60381595071968
Iterations: 9
Function evaluations: 91
Gradient evaluations: 9
Iteration: 1, Func. Count: 8, Neg. LLF: 166.70983209691113
Iteration: 2, Func. Count: 16, Neg. LLF: 158.95293634553056
Iteration: 3, Func. Count: 24, Neg. LLF: 156.22577700817018
Iteration: 4, Func. Count: 31, Neg. LLF: 155.96261372079903
Iteration: 5, Func. Count: 38, Neg. LLF: 155.92456352909264
Iteration: 6, Func. Count: 45, Neg. LLF: 155.90279493736722
Iteration: 7, Func. Count: 52, Neg. LLF: 155.88932656013324
Iteration: 8, Func. Count: 59, Neg. LLF: 155.8207995783808
Iteration: 9, Func. Count: 66, Neg. LLF: 156.51929122535032
Iteration: 10, Func. Count: 74, Neg. LLF: 155.7865548946819
Iteration: 11, Func. Count: 81, Neg. LLF: 155.78027836817478
Iteration: 12, Func. Count: 88, Neg. LLF: 155.78018468402806
Iteration: 13, Func. Count: 95, Neg. LLF: 155.7801830494273
Iteration: 14, Func. Count: 101, Neg. LLF: 155.7801830346495
Optimization terminated successfully (Exit mode 0)
Current function value: 155.7801830494273
Iterations: 14
Function evaluations: 101
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 171.10257210833848
Iteration: 2, Func. Count: 18, Neg. LLF: 162.14787931704146
Iteration: 3, Func. Count: 27, Neg. LLF: 156.44267609523857
Iteration: 4, Func. Count: 35, Neg. LLF: 156.0690312059524
Iteration: 5, Func. Count: 43, Neg. LLF: 154.47059869866388
Iteration: 6, Func. Count: 51, Neg. LLF: 154.53955460572885
Iteration: 7, Func. Count: 60, Neg. LLF: 154.40131038251803
Iteration: 8, Func. Count: 68, Neg. LLF: 154.3885508648504
Iteration: 9, Func. Count: 76, Neg. LLF: 154.38869306116567
Iteration: 10, Func. Count: 84, Neg. LLF: 154.3885527451008
Iteration: 11, Func. Count: 95, Neg. LLF: 154.38825663373365
Optimization terminated successfully (Exit mode 0)
Current function value: 154.38869093663635
Iterations: 11
Function evaluations: 105
Gradient evaluations: 11
Iteration: 1, Func. Count: 10, Neg. LLF: 163.62789027910307
Iteration: 2, Func. Count: 20, Neg. LLF: 154.91716543182346
Iteration: 3, Func. Count: 29, Neg. LLF: 157.105067774167
Iteration: 4, Func. Count: 39, Neg. LLF: 154.41207067947286
Iteration: 5, Func. Count: 48, Neg. LLF: 156.65568460752553
Iteration: 6, Func. Count: 58, Neg. LLF: 154.33390392952086
Iteration: 7, Func. Count: 67, Neg. LLF: 154.2148553392925
Iteration: 8, Func. Count: 76, Neg. LLF: 154.20602345776072
Iteration: 9, Func. Count: 85, Neg. LLF: 154.20456359821003
Iteration: 10, Func. Count: 94, Neg. LLF: 154.2045321238892
Iteration: 11, Func. Count: 103, Neg. LLF: 154.20452651342376
Iteration: 12, Func. Count: 112, Neg. LLF: 154.20452708413802
Optimization terminated successfully (Exit mode 0)
Current function value: 154.20452708413802
Iterations: 12
Function evaluations: 112
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 160.65699688787615
Iteration: 2, Func. Count: 22, Neg. LLF: 154.67875577150247
Iteration: 3, Func. Count: 32, Neg. LLF: 153.12559826391418
Iteration: 4, Func. Count: 42, Neg. LLF: 161.15018118192705
Iteration: 5, Func. Count: 53, Neg. LLF: 151.95693059600376
Iteration: 6, Func. Count: 63, Neg. LLF: 151.98496852339343
Iteration: 7, Func. Count: 74, Neg. LLF: 151.80071719396756
Iteration: 8, Func. Count: 84, Neg. LLF: 151.77945008441432
Iteration: 9, Func. Count: 94, Neg. LLF: 151.76609386726895
Iteration: 10, Func. Count: 104, Neg. LLF: 151.7533213267977
Iteration: 11, Func. Count: 114, Neg. LLF: 151.7506429720925
Iteration: 12, Func. Count: 125, Neg. LLF: 151.80852184643183
Iteration: 13, Func. Count: 137, Neg. LLF: 151.76008501154138
Iteration: 14, Func. Count: 148, Neg. LLF: 151.75986587949842
Iteration: 15, Func. Count: 158, Neg. LLF: 151.75982939862257
Iteration: 16, Func. Count: 168, Neg. LLF: 151.75982878231875
Optimization terminated successfully (Exit mode 0)
Current function value: 151.75982878231875
Iterations: 17
Function evaluations: 168
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 160.7378585115837
Iteration: 2, Func. Count: 24, Neg. LLF: 154.63327174267513
Iteration: 3, Func. Count: 35, Neg. LLF: 154.6083603977663
Iteration: 4, Func. Count: 46, Neg. LLF: 154.60464009304144
Iteration: 5, Func. Count: 57, Neg. LLF: 154.60396811579747
Iteration: 6, Func. Count: 68, Neg. LLF: 154.6038507730368
Iteration: 7, Func. Count: 79, Neg. LLF: 154.6038187137896
Iteration: 8, Func. Count: 90, Neg. LLF: 154.6038159081934
Iteration: 9, Func. Count: 100, Neg. LLF: 154.60381565707902
Optimization terminated successfully (Exit mode 0)
Current function value: 154.6038159081934
Iterations: 9
Function evaluations: 100
Gradient evaluations: 9
Iteration: 1, Func. Count: 9, Neg. LLF: 165.83765091811176
Iteration: 2, Func. Count: 18, Neg. LLF: 160.18921471092386
Iteration: 3, Func. Count: 27, Neg. LLF: 156.26642827223156
Iteration: 4, Func. Count: 35, Neg. LLF: 155.96208565306623
Iteration: 5, Func. Count: 43, Neg. LLF: 155.92383907063646
Iteration: 6, Func. Count: 51, Neg. LLF: 155.9008949130371
Iteration: 7, Func. Count: 59, Neg. LLF: 155.88806349060917
Iteration: 8, Func. Count: 67, Neg. LLF: 155.828545703089
Iteration: 9, Func. Count: 75, Neg. LLF: 155.94797129704094
Iteration: 10, Func. Count: 84, Neg. LLF: 155.84264306164334
Iteration: 11, Func. Count: 93, Neg. LLF: 155.78082698998176
Iteration: 12, Func. Count: 101, Neg. LLF: 155.78018695391447
Iteration: 13, Func. Count: 109, Neg. LLF: 155.78018304720536
Iteration: 14, Func. Count: 116, Neg. LLF: 155.7801830594098
Optimization terminated successfully (Exit mode 0)
Current function value: 155.78018304720536
Iterations: 14
Function evaluations: 116
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 171.1337787384062
Iteration: 2, Func. Count: 20, Neg. LLF: 162.05020374375573
Iteration: 3, Func. Count: 30, Neg. LLF: 156.42696151622863
Iteration: 4, Func. Count: 39, Neg. LLF: 156.06127198628175
Iteration: 5, Func. Count: 48, Neg. LLF: 154.42551162367917
Iteration: 6, Func. Count: 57, Neg. LLF: 154.43125040887884
Iteration: 7, Func. Count: 67, Neg. LLF: 154.39577002739242
Iteration: 8, Func. Count: 76, Neg. LLF: 154.38844714706306
Iteration: 9, Func. Count: 85, Neg. LLF: 154.3887298163315
Iteration: 10, Func. Count: 94, Neg. LLF: 154.3885821754865
Iteration: 11, Func. Count: 107, Neg. LLF: 154.38859479608664
Optimization terminated successfully (Exit mode 0)
Current function value: 154.38872428926393
Iterations: 11
Function evaluations: 117
Gradient evaluations: 11
Iteration: 1, Func. Count: 11, Neg. LLF: 163.67309962264852
Iteration: 2, Func. Count: 22, Neg. LLF: 154.90918375047463
Iteration: 3, Func. Count: 32, Neg. LLF: 157.19026706603788
Iteration: 4, Func. Count: 43, Neg. LLF: 154.41217703191717
Iteration: 5, Func. Count: 53, Neg. LLF: 156.69047055302912
Iteration: 6, Func. Count: 64, Neg. LLF: 154.32766313081686
Iteration: 7, Func. Count: 74, Neg. LLF: 154.21347974984647
Iteration: 8, Func. Count: 84, Neg. LLF: 154.20620458228652
Iteration: 9, Func. Count: 94, Neg. LLF: 154.20456199228258
Iteration: 10, Func. Count: 104, Neg. LLF: 154.20452891394385
Iteration: 11, Func. Count: 114, Neg. LLF: 154.2045273485647
Iteration: 12, Func. Count: 123, Neg. LLF: 154.2045267870754
Optimization terminated successfully (Exit mode 0)
Current function value: 154.2045273485647
Iterations: 12
Function evaluations: 123
Gradient evaluations: 12
Iteration: 1, Func. Count: 12, Neg. LLF: 160.53918827575072
Iteration: 2, Func. Count: 24, Neg. LLF: 154.5728211565624
Iteration: 3, Func. Count: 35, Neg. LLF: 152.06496894712944
Iteration: 4, Func. Count: 46, Neg. LLF: 152.16557659037278
Iteration: 5, Func. Count: 58, Neg. LLF: 151.78461823343602
Iteration: 6, Func. Count: 69, Neg. LLF: 151.77274375529117
Iteration: 7, Func. Count: 80, Neg. LLF: 151.76052413730116
Iteration: 8, Func. Count: 91, Neg. LLF: 151.7597670650025
Iteration: 9, Func. Count: 102, Neg. LLF: 151.7599020348984
Iteration: 10, Func. Count: 114, Neg. LLF: 151.75956144592413
Iteration: 11, Func. Count: 125, Neg. LLF: 151.7598455971944
Iteration: 12, Func. Count: 137, Neg. LLF: 151.7598287911411
Iteration: 13, Func. Count: 147, Neg. LLF: 151.75982853623324
Optimization terminated successfully (Exit mode 0)
Current function value: 151.7598287911411
Iterations: 14
Function evaluations: 147
Gradient evaluations: 13
Iteration: 1, Func. Count: 13, Neg. LLF: 160.91122226857487
Iteration: 2, Func. Count: 26, Neg. LLF: 154.6324919058825
Iteration: 3, Func. Count: 38, Neg. LLF: 154.60826541867476
Iteration: 4, Func. Count: 50, Neg. LLF: 154.60452746895612
Iteration: 5, Func. Count: 62, Neg. LLF: 154.60389975191003
Iteration: 6, Func. Count: 74, Neg. LLF: 154.6038368050123
Iteration: 7, Func. Count: 86, Neg. LLF: 154.6038178074617
Iteration: 8, Func. Count: 98, Neg. LLF: 154.60381587146895
Iteration: 9, Func. Count: 109, Neg. LLF: 154.6038156203359
Optimization terminated successfully (Exit mode 0)
Current function value: 154.60381587146895
Iterations: 9
Function evaluations: 109
Gradient evaluations: 9
Iteration: 1, Func. Count: 10, Neg. LLF: 165.43097727030948
Iteration: 2, Func. Count: 20, Neg. LLF: 161.05189791928095
Iteration: 3, Func. Count: 30, Neg. LLF: 156.27942396861428
Iteration: 4, Func. Count: 39, Neg. LLF: 155.9858829741699
Iteration: 5, Func. Count: 48, Neg. LLF: 155.92862870169432
Iteration: 6, Func. Count: 57, Neg. LLF: 156.67718362646542
Iteration: 7, Func. Count: 67, Neg. LLF: 155.8970108025823
Iteration: 8, Func. Count: 76, Neg. LLF: 155.8828528258927
Iteration: 9, Func. Count: 85, Neg. LLF: 155.81183540637366
Iteration: 10, Func. Count: 94, Neg. LLF: 155.78306995134272
Iteration: 11, Func. Count: 103, Neg. LLF: 155.78030074897381
Iteration: 12, Func. Count: 112, Neg. LLF: 155.78018820996905
Iteration: 13, Func. Count: 121, Neg. LLF: 155.78018307128153
Iteration: 14, Func. Count: 129, Neg. LLF: 155.78018309365456
Optimization terminated successfully (Exit mode 0)
Current function value: 155.78018307128153
Iterations: 14
Function evaluations: 129
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 171.1233974393626
Iteration: 2, Func. Count: 22, Neg. LLF: 161.98716361211524
Iteration: 3, Func. Count: 33, Neg. LLF: 156.4199738604605
Iteration: 4, Func. Count: 43, Neg. LLF: 156.0568417267832
Iteration: 5, Func. Count: 53, Neg. LLF: 154.41356232672004
Iteration: 6, Func. Count: 63, Neg. LLF: 154.4116923859812
Iteration: 7, Func. Count: 74, Neg. LLF: 154.39403863583874
Iteration: 8, Func. Count: 84, Neg. LLF: 154.3885577623213
Iteration: 9, Func. Count: 94, Neg. LLF: 154.38901244703874
Iteration: 10, Func. Count: 105, Neg. LLF: 154.38862945837855
Iteration: 11, Func. Count: 114, Neg. LLF: 154.38863036721386
Optimization terminated successfully (Exit mode 0)
Current function value: 154.38862945837855
Iterations: 12
Function evaluations: 114
Gradient evaluations: 11
Iteration: 1, Func. Count: 12, Neg. LLF: 163.65957523180353
Iteration: 2, Func. Count: 24, Neg. LLF: 154.91052375108418
Iteration: 3, Func. Count: 35, Neg. LLF: 157.18876163475724
Iteration: 4, Func. Count: 47, Neg. LLF: 154.41221122873947
Iteration: 5, Func. Count: 58, Neg. LLF: 156.67631679507178
Iteration: 6, Func. Count: 70, Neg. LLF: 154.32855310317916
Iteration: 7, Func. Count: 81, Neg. LLF: 154.2135695190584
Iteration: 8, Func. Count: 92, Neg. LLF: 154.20618278268282
Iteration: 9, Func. Count: 103, Neg. LLF: 154.20455966154748
Iteration: 10, Func. Count: 114, Neg. LLF: 154.2045284256108
Iteration: 11, Func. Count: 125, Neg. LLF: 154.20452662192977
Iteration: 12, Func. Count: 135, Neg. LLF: 154.20452606045004
Optimization terminated successfully (Exit mode 0)
Current function value: 154.20452662192977
Iterations: 13
Function evaluations: 135
Gradient evaluations: 12
Iteration: 1, Func. Count: 13, Neg. LLF: 160.58831292814384
Iteration: 2, Func. Count: 26, Neg. LLF: 154.68097056336
Iteration: 3, Func. Count: 38, Neg. LLF: 153.23294335372918
Iteration: 4, Func. Count: 50, Neg. LLF: 162.23138507369453
Iteration: 5, Func. Count: 63, Neg. LLF: 151.9788422264349
Iteration: 6, Func. Count: 75, Neg. LLF: 151.9358854583259
Iteration: 7, Func. Count: 87, Neg. LLF: 151.8016930202595
Iteration: 8, Func. Count: 99, Neg. LLF: 151.7922126400521
Iteration: 9, Func. Count: 111, Neg. LLF: 151.77023520208414
Iteration: 10, Func. Count: 123, Neg. LLF: 151.7516345799008
Iteration: 11, Func. Count: 135, Neg. LLF: 151.7560868683259
Iteration: 12, Func. Count: 152, Neg. LLF: 151.7857574237538
Iteration: 13, Func. Count: 166, Neg. LLF: 151.7599254885485
Iteration: 14, Func. Count: 178, Neg. LLF: 151.76038409713436
Iteration: 15, Func. Count: 191, Neg. LLF: 151.7598288131409
Iteration: 16, Func. Count: 202, Neg. LLF: 151.7598285582632
Optimization terminated successfully (Exit mode 0)
Current function value: 151.7598288131409
Iterations: 17
Function evaluations: 202
Gradient evaluations: 16
Iteration: 1, Func. Count: 14, Neg. LLF: 161.15405462738053
Iteration: 2, Func. Count: 28, Neg. LLF: 154.63194477653076
Iteration: 3, Func. Count: 41, Neg. LLF: 154.60847622885342
Iteration: 4, Func. Count: 54, Neg. LLF: 154.60455610556963
Iteration: 5, Func. Count: 67, Neg. LLF: 154.60389990112097
Iteration: 6, Func. Count: 80, Neg. LLF: 154.6038403017571
Iteration: 7, Func. Count: 93, Neg. LLF: 154.6038176821317
Iteration: 8, Func. Count: 106, Neg. LLF: 154.60381587889964
Iteration: 9, Func. Count: 118, Neg. LLF: 154.60381562776718
Optimization terminated successfully (Exit mode 0)
Current function value: 154.60381587889964
Iterations: 9
Function evaluations: 118
Gradient evaluations: 9
Iteration: 1, Func. Count: 7, Neg. LLF: 159.97508445300608
Iteration: 2, Func. Count: 13, Neg. LLF: 163.87278199775514
Iteration: 3, Func. Count: 20, Neg. LLF: 159.2601562460937
Iteration: 4, Func. Count: 26, Neg. LLF: 159.25737748114696
Iteration: 5, Func. Count: 32, Neg. LLF: 159.24935645494295
Iteration: 6, Func. Count: 38, Neg. LLF: 159.23765842512304
Iteration: 7, Func. Count: 44, Neg. LLF: 159.23750863662215
Iteration: 8, Func. Count: 50, Neg. LLF: 159.2374993639393
Iteration: 9, Func. Count: 55, Neg. LLF: 159.23749945600608
Optimization terminated successfully (Exit mode 0)
Current function value: 159.2374993639393
Iterations: 9
Function evaluations: 55
Gradient evaluations: 9
Iteration: 1, Func. Count: 8, Neg. LLF: 170.7638237359452
Iteration: 2, Func. Count: 16, Neg. LLF: 155.66968776807946
Iteration: 3, Func. Count: 23, Neg. LLF: 172.3424826077207
Iteration: 4, Func. Count: 31, Neg. LLF: 158.18901748088328
Iteration: 5, Func. Count: 39, Neg. LLF: 154.5076288000425
Iteration: 6, Func. Count: 46, Neg. LLF: 154.39673795554566
Iteration: 7, Func. Count: 53, Neg. LLF: 154.38917459158654
Iteration: 8, Func. Count: 60, Neg. LLF: 154.38872776760124
Iteration: 9, Func. Count: 67, Neg. LLF: 154.38862901411895
Iteration: 10, Func. Count: 74, Neg. LLF: 154.38862908883104
Optimization terminated successfully (Exit mode 0)
Current function value: 154.38862908883104
Iterations: 10
Function evaluations: 74
Gradient evaluations: 10
Iteration: 1, Func. Count: 9, Neg. LLF: 163.4259422195339
Iteration: 2, Func. Count: 18, Neg. LLF: 154.8875000042893
Iteration: 3, Func. Count: 26, Neg. LLF: 157.099609884808
Iteration: 4, Func. Count: 35, Neg. LLF: 154.40725930715828
Iteration: 5, Func. Count: 43, Neg. LLF: 154.3979304706653
Iteration: 6, Func. Count: 51, Neg. LLF: 154.39472084248462
Iteration: 7, Func. Count: 59, Neg. LLF: 154.39470737765032
Iteration: 8, Func. Count: 68, Neg. LLF: 154.39466860067867
Optimization terminated successfully (Exit mode 0)
Current function value: 154.39466860067867
Iterations: 8
Function evaluations: 68
Gradient evaluations: 8
Iteration: 1, Func. Count: 10, Neg. LLF: 160.64126793130774
Iteration: 2, Func. Count: 20, Neg. LLF: 154.67285832436232
Iteration: 3, Func. Count: 29, Neg. LLF: 154.6841416405715
Iteration: 4, Func. Count: 39, Neg. LLF: 154.55620942194565
Iteration: 5, Func. Count: 48, Neg. LLF: 154.55532471259983
Iteration: 6, Func. Count: 57, Neg. LLF: 154.55531907601411
Iteration: 7, Func. Count: 66, Neg. LLF: 154.55531781544647
Iteration: 8, Func. Count: 74, Neg. LLF: 154.55531749027014
Optimization terminated successfully (Exit mode 0)
Current function value: 154.55531781544647
Iterations: 8
Function evaluations: 74
Gradient evaluations: 8
Iteration: 1, Func. Count: 11, Neg. LLF: 161.7496954987628
Iteration: 2, Func. Count: 22, Neg. LLF: 154.6357252211266
Iteration: 3, Func. Count: 32, Neg. LLF: 154.6168301325744
Iteration: 4, Func. Count: 42, Neg. LLF: 154.6050276538847
Iteration: 5, Func. Count: 52, Neg. LLF: 154.6041836703383
Iteration: 6, Func. Count: 62, Neg. LLF: 154.60384315922622
Iteration: 7, Func. Count: 72, Neg. LLF: 154.60381611652934
Iteration: 8, Func. Count: 81, Neg. LLF: 154.60381586526168
Optimization terminated successfully (Exit mode 0)
Current function value: 154.60381611652934
Iterations: 8
Function evaluations: 81
Gradient evaluations: 8
Iteration: 1, Func. Count: 8, Neg. LLF: 161.41444030206046
Iteration: 2, Func. Count: 15, Neg. LLF: 158.05269691690003
Iteration: 3, Func. Count: 22, Neg. LLF: 156.94810057895114
Iteration: 4, Func. Count: 29, Neg. LLF: 156.77124928626833
Iteration: 5, Func. Count: 36, Neg. LLF: 156.75338278252397
Iteration: 6, Func. Count: 43, Neg. LLF: 156.73144870447302
Iteration: 7, Func. Count: 50, Neg. LLF: 156.68214602274105
Iteration: 8, Func. Count: 57, Neg. LLF: 156.75747748241508
Iteration: 9, Func. Count: 65, Neg. LLF: 156.59282531983325
Iteration: 10, Func. Count: 72, Neg. LLF: 156.58212505268574
Iteration: 11, Func. Count: 79, Neg. LLF: 156.58193056099904
Iteration: 12, Func. Count: 86, Neg. LLF: 156.58192851305472
Iteration: 13, Func. Count: 92, Neg. LLF: 156.58192849624376
Optimization terminated successfully (Exit mode 0)
Current function value: 156.58192851305472
Iterations: 13
Function evaluations: 92
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 171.0575825544699
Iteration: 2, Func. Count: 18, Neg. LLF: 155.78724837105628
Iteration: 3, Func. Count: 26, Neg. LLF: 155.1566944599707
Iteration: 4, Func. Count: 34, Neg. LLF: 154.53870820948407
Iteration: 5, Func. Count: 42, Neg. LLF: 154.39826900182018
Iteration: 6, Func. Count: 50, Neg. LLF: 154.38934380166108
Iteration: 7, Func. Count: 58, Neg. LLF: 154.38926704779584
Iteration: 8, Func. Count: 67, Neg. LLF: 154.38863307111154
Iteration: 9, Func. Count: 75, Neg. LLF: 154.38873262326962
Optimization terminated successfully (Exit mode 0)
Current function value: 154.38863279873127
Iterations: 10
Function evaluations: 76
Gradient evaluations: 9
Iteration: 1, Func. Count: 10, Neg. LLF: 163.76185444239678
Iteration: 2, Func. Count: 20, Neg. LLF: 154.91323797702253
Iteration: 3, Func. Count: 29, Neg. LLF: 157.1283930397535
Iteration: 4, Func. Count: 39, Neg. LLF: 154.41095367327378
Iteration: 5, Func. Count: 48, Neg. LLF: 154.3983853370987
Iteration: 6, Func. Count: 57, Neg. LLF: 154.3951418609874
Iteration: 7, Func. Count: 66, Neg. LLF: 154.39470318211258
Iteration: 8, Func. Count: 75, Neg. LLF: 154.39466861435096
Iteration: 9, Func. Count: 83, Neg. LLF: 154.39466909006646
Optimization terminated successfully (Exit mode 0)
Current function value: 154.39466861435096
Iterations: 9
Function evaluations: 83
Gradient evaluations: 9
Iteration: 1, Func. Count: 11, Neg. LLF: 160.76641109354966
Iteration: 2, Func. Count: 22, Neg. LLF: 154.67732039768856
Iteration: 3, Func. Count: 32, Neg. LLF: 154.65659811293386
Iteration: 4, Func. Count: 43, Neg. LLF: 154.55535086549773
Iteration: 5, Func. Count: 53, Neg. LLF: 154.55531978703897
Iteration: 6, Func. Count: 63, Neg. LLF: 154.5553185061697
Iteration: 7, Func. Count: 73, Neg. LLF: 154.55531780704268
Optimization terminated successfully (Exit mode 0)
Current function value: 154.55531780704268
Iterations: 7
Function evaluations: 73
Gradient evaluations: 7
Iteration: 1, Func. Count: 12, Neg. LLF: 161.74850339065358
Iteration: 2, Func. Count: 24, Neg. LLF: 154.63171194004966
Iteration: 3, Func. Count: 35, Neg. LLF: 154.6092760836748
Iteration: 4, Func. Count: 46, Neg. LLF: 154.60480603749306
Iteration: 5, Func. Count: 57, Neg. LLF: 154.60396746947995
Iteration: 6, Func. Count: 68, Neg. LLF: 154.60387010281204
Iteration: 7, Func. Count: 79, Neg. LLF: 154.60381814143258
Iteration: 8, Func. Count: 90, Neg. LLF: 154.6038159393203
Iteration: 9, Func. Count: 100, Neg. LLF: 154.60381568819682
Optimization terminated successfully (Exit mode 0)
Current function value: 154.6038159393203
Iterations: 9
Function evaluations: 100
Gradient evaluations: 9
Iteration: 1, Func. Count: 9, Neg. LLF: 164.6931185085811
Iteration: 2, Func. Count: 18, Neg. LLF: 160.44110289332713
Iteration: 3, Func. Count: 27, Neg. LLF: 156.26415307049325
Iteration: 4, Func. Count: 35, Neg. LLF: 155.96379316115593
Iteration: 5, Func. Count: 43, Neg. LLF: 155.92581339148876
Iteration: 6, Func. Count: 51, Neg. LLF: 155.90078599246888
Iteration: 7, Func. Count: 59, Neg. LLF: 155.88817221783077
Iteration: 8, Func. Count: 67, Neg. LLF: 155.83001414895202
Iteration: 9, Func. Count: 75, Neg. LLF: 156.01697106013367
Iteration: 10, Func. Count: 84, Neg. LLF: 155.82817382879134
Iteration: 11, Func. Count: 93, Neg. LLF: 155.7812994188875
Iteration: 12, Func. Count: 101, Neg. LLF: 155.7801874534803
Iteration: 13, Func. Count: 109, Neg. LLF: 155.78018305201815
Iteration: 14, Func. Count: 116, Neg. LLF: 155.78018303723928
Optimization terminated successfully (Exit mode 0)
Current function value: 155.78018305201815
Iterations: 14
Function evaluations: 116
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 171.07583824753118
Iteration: 2, Func. Count: 20, Neg. LLF: 162.36658545337127
Iteration: 3, Func. Count: 30, Neg. LLF: 156.45354027461346
Iteration: 4, Func. Count: 39, Neg. LLF: 156.08653203688232
Iteration: 5, Func. Count: 48, Neg. LLF: 154.53926997549962
Iteration: 6, Func. Count: 57, Neg. LLF: 154.85880619288355
Iteration: 7, Func. Count: 67, Neg. LLF: 154.40706472061925
Iteration: 8, Func. Count: 76, Neg. LLF: 154.39025237997078
Iteration: 9, Func. Count: 85, Neg. LLF: 154.38868090522703
Iteration: 10, Func. Count: 94, Neg. LLF: 154.38860367014533
Iteration: 11, Func. Count: 107, Neg. LLF: 154.38863444571
Iteration: 12, Func. Count: 116, Neg. LLF: 154.3885776840641
Optimization terminated successfully (Exit mode 0)
Current function value: 154.38863440363883
Iterations: 12
Function evaluations: 121
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 163.61972436427095
Iteration: 2, Func. Count: 22, Neg. LLF: 154.9197849539827
Iteration: 3, Func. Count: 32, Neg. LLF: 157.06345684392844
Iteration: 4, Func. Count: 43, Neg. LLF: 154.41224238634817
Iteration: 5, Func. Count: 53, Neg. LLF: 156.52412966504755
Iteration: 6, Func. Count: 64, Neg. LLF: 154.32651323676754
Iteration: 7, Func. Count: 74, Neg. LLF: 154.21208929160542
Iteration: 8, Func. Count: 84, Neg. LLF: 154.2059514523509
Iteration: 9, Func. Count: 94, Neg. LLF: 154.2045625396061
Iteration: 10, Func. Count: 104, Neg. LLF: 154.2045278229971
Iteration: 11, Func. Count: 114, Neg. LLF: 154.2045265441343
Iteration: 12, Func. Count: 124, Neg. LLF: 154.20452386199455
Optimization terminated successfully (Exit mode 0)
Current function value: 154.20452654133564
Iterations: 12
Function evaluations: 134
Gradient evaluations: 12
Iteration: 1, Func. Count: 12, Neg. LLF: 160.78513587045066
Iteration: 2, Func. Count: 24, Neg. LLF: 154.67681278790485
Iteration: 3, Func. Count: 35, Neg. LLF: 153.26232899121567
Iteration: 4, Func. Count: 46, Neg. LLF: 162.41682765821912
Iteration: 5, Func. Count: 58, Neg. LLF: 151.97027528800973
Iteration: 6, Func. Count: 69, Neg. LLF: 151.86920796405389
Iteration: 7, Func. Count: 80, Neg. LLF: 151.790024088848
Iteration: 8, Func. Count: 91, Neg. LLF: 151.7978747341979
Iteration: 9, Func. Count: 102, Neg. LLF: 151.76105635097588
Iteration: 10, Func. Count: 113, Neg. LLF: 151.75811441443236
Iteration: 11, Func. Count: 124, Neg. LLF: 151.84723475178495
Iteration: 12, Func. Count: 136, Neg. LLF: 151.76207967989222
Iteration: 13, Func. Count: 148, Neg. LLF: 151.75990176966883
Iteration: 14, Func. Count: 159, Neg. LLF: 151.75983461809597
Iteration: 15, Func. Count: 170, Neg. LLF: 151.75982878758745
Iteration: 16, Func. Count: 180, Neg. LLF: 151.75982853272538
Optimization terminated successfully (Exit mode 0)
Current function value: 151.75982878758745
Iterations: 17
Function evaluations: 180
Gradient evaluations: 16
Iteration: 1, Func. Count: 13, Neg. LLF: 161.25407057669156
Iteration: 2, Func. Count: 26, Neg. LLF: 154.632298850143
Iteration: 3, Func. Count: 38, Neg. LLF: 154.60894835573544
Iteration: 4, Func. Count: 50, Neg. LLF: 154.60473724343652
Iteration: 5, Func. Count: 62, Neg. LLF: 154.60396037909933
Iteration: 6, Func. Count: 74, Neg. LLF: 154.60385880334803
Iteration: 7, Func. Count: 86, Neg. LLF: 154.60381826752982
Iteration: 8, Func. Count: 98, Neg. LLF: 154.60381592532298
Iteration: 9, Func. Count: 109, Neg. LLF: 154.60381567420768
Optimization terminated successfully (Exit mode 0)
Current function value: 154.60381592532298
Iterations: 9
Function evaluations: 109
Gradient evaluations: 9
Iteration: 1, Func. Count: 10, Neg. LLF: 163.33562860892528
Iteration: 2, Func. Count: 20, Neg. LLF: 161.91368270612475
Iteration: 3, Func. Count: 30, Neg. LLF: 156.29742114103368
Iteration: 4, Func. Count: 39, Neg. LLF: 155.9634618860558
Iteration: 5, Func. Count: 48, Neg. LLF: 155.9243952521406
Iteration: 6, Func. Count: 57, Neg. LLF: 155.98814235056847
Iteration: 7, Func. Count: 67, Neg. LLF: 155.90046088979832
Iteration: 8, Func. Count: 76, Neg. LLF: 155.8772190400445
Iteration: 9, Func. Count: 85, Neg. LLF: 155.84952136410737
Iteration: 10, Func. Count: 94, Neg. LLF: 155.78986465515578
Iteration: 11, Func. Count: 103, Neg. LLF: 155.78358405570722
Iteration: 12, Func. Count: 112, Neg. LLF: 155.78049593722133
Iteration: 13, Func. Count: 121, Neg. LLF: 155.78020301139856
Iteration: 14, Func. Count: 130, Neg. LLF: 155.78018309079482
Iteration: 15, Func. Count: 138, Neg. LLF: 155.78018310300155
Optimization terminated successfully (Exit mode 0)
Current function value: 155.78018309079482
Iterations: 15
Function evaluations: 138
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 161.85203526962567
Iteration: 2, Func. Count: 22, Neg. LLF: 161.63581471187806
Iteration: 3, Func. Count: 33, Neg. LLF: 169.87342876575426
Iteration: 4, Func. Count: 45, Neg. LLF: 155.45503619324964
Iteration: 5, Func. Count: 55, Neg. LLF: 155.38182324964006
Iteration: 6, Func. Count: 65, Neg. LLF: 155.29255529585546
Iteration: 7, Func. Count: 75, Neg. LLF: 155.24918449573445
Iteration: 8, Func. Count: 85, Neg. LLF: 155.24550967034773
Iteration: 9, Func. Count: 95, Neg. LLF: 155.2453644249557
Iteration: 10, Func. Count: 105, Neg. LLF: 155.24534405366
Iteration: 11, Func. Count: 114, Neg. LLF: 155.245343872954
Optimization terminated successfully (Exit mode 0)
Current function value: 155.24534405366
Iterations: 11
Function evaluations: 114
Gradient evaluations: 11
Iteration: 1, Func. Count: 12, Neg. LLF: 163.66499802153714
Iteration: 2, Func. Count: 24, Neg. LLF: 156.44290612088258
Iteration: 3, Func. Count: 35, Neg. LLF: 155.6738571052451
Iteration: 4, Func. Count: 47, Neg. LLF: 156.1530014540769
Iteration: 5, Func. Count: 59, Neg. LLF: 155.44825201985117
Iteration: 6, Func. Count: 71, Neg. LLF: 155.25483988374026
Iteration: 7, Func. Count: 82, Neg. LLF: 155.2099137966538
Iteration: 8, Func. Count: 93, Neg. LLF: 155.2015340310955
Iteration: 9, Func. Count: 104, Neg. LLF: 155.1985448856676
Iteration: 10, Func. Count: 115, Neg. LLF: 155.19830556617947
Iteration: 11, Func. Count: 126, Neg. LLF: 155.19828795227448
Iteration: 12, Func. Count: 137, Neg. LLF: 155.19826062931634
Iteration: 13, Func. Count: 148, Neg. LLF: 155.19825790520568
Iteration: 14, Func. Count: 158, Neg. LLF: 155.19825780317407
Optimization terminated successfully (Exit mode 0)
Current function value: 155.19825790520568
Iterations: 14
Function evaluations: 158
Gradient evaluations: 14
Iteration: 1, Func. Count: 13, Neg. LLF: 160.66476747002662
Iteration: 2, Func. Count: 26, Neg. LLF: 154.68016576128554
Iteration: 3, Func. Count: 38, Neg. LLF: 153.35861187102054
Iteration: 4, Func. Count: 50, Neg. LLF: 163.64538020831543
Iteration: 5, Func. Count: 63, Neg. LLF: 151.99944408180258
Iteration: 6, Func. Count: 75, Neg. LLF: 151.9155727788162
Iteration: 7, Func. Count: 87, Neg. LLF: 151.840577506886
Iteration: 8, Func. Count: 99, Neg. LLF: 151.8019781199913
Iteration: 9, Func. Count: 111, Neg. LLF: 151.791626292933
Iteration: 10, Func. Count: 123, Neg. LLF: 151.7694544985873
Iteration: 11, Func. Count: 135, Neg. LLF: 151.76395371869344
Iteration: 12, Func. Count: 147, Neg. LLF: 151.75903501555894
Iteration: 13, Func. Count: 159, Neg. LLF: 151.76029047653407
Iteration: 14, Func. Count: 173, Neg. LLF: 151.7598322453784
Iteration: 15, Func. Count: 186, Neg. LLF: 151.7598287959772
Iteration: 16, Func. Count: 197, Neg. LLF: 151.75982854105786
Optimization terminated successfully (Exit mode 0)
Current function value: 151.7598287959772
Iterations: 17
Function evaluations: 197
Gradient evaluations: 16
Iteration: 1, Func. Count: 14, Neg. LLF: 161.44338161859895
Iteration: 2, Func. Count: 28, Neg. LLF: 154.6318020537521
Iteration: 3, Func. Count: 41, Neg. LLF: 154.60892677966214
Iteration: 4, Func. Count: 54, Neg. LLF: 154.6045926542153
Iteration: 5, Func. Count: 67, Neg. LLF: 154.6039047774213
Iteration: 6, Func. Count: 80, Neg. LLF: 154.6038453467674
Iteration: 7, Func. Count: 93, Neg. LLF: 154.60381758850983
Iteration: 8, Func. Count: 106, Neg. LLF: 154.60381588111392
Iteration: 9, Func. Count: 118, Neg. LLF: 154.6038156299778
Optimization terminated successfully (Exit mode 0)
Current function value: 154.60381588111392
Iterations: 9
Function evaluations: 118
Gradient evaluations: 9
Iteration: 1, Func. Count: 11, Neg. LLF: 162.75521330790713
Iteration: 2, Func. Count: 22, Neg. LLF: 162.6763476295647
Iteration: 3, Func. Count: 33, Neg. LLF: 156.30592621359907
Iteration: 4, Func. Count: 43, Neg. LLF: 155.9848605977732
Iteration: 5, Func. Count: 53, Neg. LLF: 155.93073600502743
Iteration: 6, Func. Count: 63, Neg. LLF: 156.4891617990951
Iteration: 7, Func. Count: 74, Neg. LLF: 155.8974852268693
Iteration: 8, Func. Count: 84, Neg. LLF: 155.88164222799045
Iteration: 9, Func. Count: 94, Neg. LLF: 155.8459840097411
Iteration: 10, Func. Count: 104, Neg. LLF: 155.80627741467848
Iteration: 11, Func. Count: 114, Neg. LLF: 155.7844053185357
Iteration: 12, Func. Count: 124, Neg. LLF: 155.7803169063027
Iteration: 13, Func. Count: 134, Neg. LLF: 155.78019738117902
Iteration: 14, Func. Count: 144, Neg. LLF: 155.78018393055015
Iteration: 15, Func. Count: 154, Neg. LLF: 155.7801830421524
Optimization terminated successfully (Exit mode 0)
Current function value: 155.7801830421524
Iterations: 15
Function evaluations: 154
Gradient evaluations: 15
Iteration: 1, Func. Count: 12, Neg. LLF: 161.869141987342
Iteration: 2, Func. Count: 24, Neg. LLF: 161.5792710845049
Iteration: 3, Func. Count: 36, Neg. LLF: 169.84320101016533
Iteration: 4, Func. Count: 49, Neg. LLF: 155.45496483892302
Iteration: 5, Func. Count: 60, Neg. LLF: 155.38180271106918
Iteration: 6, Func. Count: 71, Neg. LLF: 155.29250362237076
Iteration: 7, Func. Count: 82, Neg. LLF: 155.2491327076433
Iteration: 8, Func. Count: 93, Neg. LLF: 155.24550478604888
Iteration: 9, Func. Count: 104, Neg. LLF: 155.24536402580597
Iteration: 10, Func. Count: 115, Neg. LLF: 155.24534405179583
Iteration: 11, Func. Count: 125, Neg. LLF: 155.24534387108898
Optimization terminated successfully (Exit mode 0)
Current function value: 155.24534405179583
Iterations: 11
Function evaluations: 125
Gradient evaluations: 11
Iteration: 1, Func. Count: 13, Neg. LLF: 163.65149957024087
Iteration: 2, Func. Count: 26, Neg. LLF: 156.4432130151258
Iteration: 3, Func. Count: 38, Neg. LLF: 155.67442203384562
Iteration: 4, Func. Count: 51, Neg. LLF: 156.1578930132301
Iteration: 5, Func. Count: 64, Neg. LLF: 155.44850680163026
Iteration: 6, Func. Count: 77, Neg. LLF: 155.2546185280948
Iteration: 7, Func. Count: 89, Neg. LLF: 155.21085132490396
Iteration: 8, Func. Count: 101, Neg. LLF: 155.2018520615997
Iteration: 9, Func. Count: 113, Neg. LLF: 155.1986123463505
Iteration: 10, Func. Count: 125, Neg. LLF: 155.19830681805252
Iteration: 11, Func. Count: 137, Neg. LLF: 155.19828799760577
Iteration: 12, Func. Count: 149, Neg. LLF: 155.19826367491638
Iteration: 13, Func. Count: 161, Neg. LLF: 155.19825831795987
Iteration: 14, Func. Count: 173, Neg. LLF: 155.19825768961502
Optimization terminated successfully (Exit mode 0)
Current function value: 155.19825768961502
Iterations: 14
Function evaluations: 173
Gradient evaluations: 14
Iteration: 1, Func. Count: 14, Neg. LLF: 160.71514062632397
Iteration: 2, Func. Count: 28, Neg. LLF: 154.6791371625952
Iteration: 3, Func. Count: 41, Neg. LLF: 153.38187796013608
Iteration: 4, Func. Count: 54, Neg. LLF: 163.99705911977352
Iteration: 5, Func. Count: 68, Neg. LLF: 152.00245555845936
Iteration: 6, Func. Count: 81, Neg. LLF: 151.92078909569832
Iteration: 7, Func. Count: 94, Neg. LLF: 151.8302063995387
Iteration: 8, Func. Count: 107, Neg. LLF: 151.79648993464335
Iteration: 9, Func. Count: 120, Neg. LLF: 151.76379461538363
Iteration: 10, Func. Count: 133, Neg. LLF: 151.76804205372486
Iteration: 11, Func. Count: 146, Neg. LLF: 151.75102843445077
Iteration: 12, Func. Count: 159, Neg. LLF: 151.743533390561
Iteration: 13, Func. Count: 182, Neg. LLF: 151.75855006673666
Iteration: 14, Func. Count: 195, Neg. LLF: 151.7466790056996
Iteration: 15, Func. Count: 218, Neg. LLF: 151.76397428821008
Iteration: 16, Func. Count: 233, Neg. LLF: 151.75983972042863
Iteration: 17, Func. Count: 246, Neg. LLF: 151.75982902841236
Iteration: 18, Func. Count: 258, Neg. LLF: 151.7598287737251
Optimization terminated successfully (Exit mode 0)
Current function value: 151.75982902841236
Iterations: 19
Function evaluations: 258
Gradient evaluations: 18
Iteration: 1, Func. Count: 15, Neg. LLF: 161.70824786072401
Iteration: 2, Func. Count: 30, Neg. LLF: 154.63154899844105
Iteration: 3, Func. Count: 44, Neg. LLF: 154.60908208144983
Iteration: 4, Func. Count: 58, Neg. LLF: 154.60458498223505
Iteration: 5, Func. Count: 72, Neg. LLF: 154.60390064121077
Iteration: 6, Func. Count: 86, Neg. LLF: 154.60384765025194
Iteration: 7, Func. Count: 100, Neg. LLF: 154.60381742901134
Iteration: 8, Func. Count: 114, Neg. LLF: 154.60381587680854
Iteration: 9, Func. Count: 127, Neg. LLF: 154.60381562566607
Optimization terminated successfully (Exit mode 0)
Current function value: 154.60381587680854
Iterations: 9
Function evaluations: 127
Gradient evaluations: 9
Iteration: 1, Func. Count: 8, Neg. LLF: 159.28511400151638
Iteration: 2, Func. Count: 15, Neg. LLF: 159.71790647754165
Iteration: 3, Func. Count: 23, Neg. LLF: 159.2529256989078
Iteration: 4, Func. Count: 30, Neg. LLF: 159.24302057852083
Iteration: 5, Func. Count: 37, Neg. LLF: 159.2383690349494
Iteration: 6, Func. Count: 44, Neg. LLF: 159.23807885196146
Iteration: 7, Func. Count: 51, Neg. LLF: 159.23772509606576
Iteration: 8, Func. Count: 58, Neg. LLF: 159.23754882850312
Iteration: 9, Func. Count: 65, Neg. LLF: 159.23750273316926
Iteration: 10, Func. Count: 72, Neg. LLF: 159.23749929665905
Iteration: 11, Func. Count: 78, Neg. LLF: 159.2374993316274
Optimization terminated successfully (Exit mode 0)
Current function value: 159.23749929665905
Iterations: 11
Function evaluations: 78
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 161.21115521013127
Iteration: 2, Func. Count: 18, Neg. LLF: 175.3063775917772
Iteration: 3, Func. Count: 27, Neg. LLF: 156.7767402668103
Iteration: 4, Func. Count: 36, Neg. LLF: 155.4819983231584
Iteration: 5, Func. Count: 44, Neg. LLF: 155.46729994586175
Iteration: 6, Func. Count: 52, Neg. LLF: 155.46243527649736
Iteration: 7, Func. Count: 60, Neg. LLF: 155.4585703073463
Iteration: 8, Func. Count: 68, Neg. LLF: 155.4584851760685
Iteration: 9, Func. Count: 76, Neg. LLF: 155.45848433393078
Optimization terminated successfully (Exit mode 0)
Current function value: 155.45848433393078
Iterations: 9
Function evaluations: 76
Gradient evaluations: 9
Iteration: 1, Func. Count: 10, Neg. LLF: 163.50879282118473
Iteration: 2, Func. Count: 20, Neg. LLF: 154.89446053993044
Iteration: 3, Func. Count: 29, Neg. LLF: 157.1030495963508
Iteration: 4, Func. Count: 39, Neg. LLF: 154.4067588833842
Iteration: 5, Func. Count: 48, Neg. LLF: 154.3990211908966
Iteration: 6, Func. Count: 57, Neg. LLF: 154.39468018793505
Iteration: 7, Func. Count: 66, Neg. LLF: 154.39466890955512
Iteration: 8, Func. Count: 75, Neg. LLF: 154.39466879984408
Optimization terminated successfully (Exit mode 0)
Current function value: 154.394668575477
Iterations: 8
Function evaluations: 76
Gradient evaluations: 8
Iteration: 1, Func. Count: 11, Neg. LLF: 160.81576095142188
Iteration: 2, Func. Count: 22, Neg. LLF: 154.67140578479018
Iteration: 3, Func. Count: 32, Neg. LLF: 154.690391669461
Iteration: 4, Func. Count: 43, Neg. LLF: 154.5570739694549
Iteration: 5, Func. Count: 54, Neg. LLF: 154.55531999002366
Iteration: 6, Func. Count: 64, Neg. LLF: 154.55531785016535
Iteration: 7, Func. Count: 73, Neg. LLF: 154.55531752498274
Optimization terminated successfully (Exit mode 0)
Current function value: 154.55531785016535
Iterations: 7
Function evaluations: 73
Gradient evaluations: 7
Iteration: 1, Func. Count: 12, Neg. LLF: 161.90178845233487
Iteration: 2, Func. Count: 24, Neg. LLF: 154.6369254807233
Iteration: 3, Func. Count: 35, Neg. LLF: 154.61739420079417
Iteration: 4, Func. Count: 46, Neg. LLF: 154.60511737607013
Iteration: 5, Func. Count: 57, Neg. LLF: 154.6042195952247
Iteration: 6, Func. Count: 68, Neg. LLF: 154.60384648419728
Iteration: 7, Func. Count: 79, Neg. LLF: 154.60381615451482
Iteration: 8, Func. Count: 89, Neg. LLF: 154.60381590330292
Optimization terminated successfully (Exit mode 0)
Current function value: 154.60381615451482
Iterations: 8
Function evaluations: 89
Gradient evaluations: 8
Iteration: 1, Func. Count: 9, Neg. LLF: 158.903764222282
Iteration: 2, Func. Count: 17, Neg. LLF: 158.9249730837843
Iteration: 3, Func. Count: 26, Neg. LLF: 156.76398960220786
Iteration: 4, Func. Count: 34, Neg. LLF: 156.74846347272384
Iteration: 5, Func. Count: 42, Neg. LLF: 156.68254074868366
Iteration: 6, Func. Count: 50, Neg. LLF: 159.856400483669
Iteration: 7, Func. Count: 59, Neg. LLF: 156.5888592935928
Iteration: 8, Func. Count: 67, Neg. LLF: 156.58209453255952
Iteration: 9, Func. Count: 75, Neg. LLF: 156.58192914878396
Iteration: 10, Func. Count: 83, Neg. LLF: 156.5819285032237
Optimization terminated successfully (Exit mode 0)
Current function value: 156.5819285032237
Iterations: 10
Function evaluations: 83
Gradient evaluations: 10
Iteration: 1, Func. Count: 10, Neg. LLF: 166.5166836576788
Iteration: 2, Func. Count: 20, Neg. LLF: 174.21768532636938
Iteration: 3, Func. Count: 30, Neg. LLF: 169.8718282632905
Iteration: 4, Func. Count: 40, Neg. LLF: 155.49431518787236
Iteration: 5, Func. Count: 49, Neg. LLF: 155.46475543923643
Iteration: 6, Func. Count: 58, Neg. LLF: 155.46137085721995
Iteration: 7, Func. Count: 67, Neg. LLF: 155.45965548866263
Iteration: 8, Func. Count: 76, Neg. LLF: 155.45849154854557
Iteration: 9, Func. Count: 85, Neg. LLF: 155.45848447249944
Iteration: 10, Func. Count: 93, Neg. LLF: 155.45848431854972
Optimization terminated successfully (Exit mode 0)
Current function value: 155.45848447249944
Iterations: 10
Function evaluations: 93
Gradient evaluations: 10
Iteration: 1, Func. Count: 11, Neg. LLF: 163.8515813529623
Iteration: 2, Func. Count: 22, Neg. LLF: 154.918958767004
Iteration: 3, Func. Count: 32, Neg. LLF: 156.9854833299201
Iteration: 4, Func. Count: 43, Neg. LLF: 154.40944358099838
Iteration: 5, Func. Count: 53, Neg. LLF: 154.39956802307097
Iteration: 6, Func. Count: 63, Neg. LLF: 154.39525991861973
Iteration: 7, Func. Count: 73, Neg. LLF: 154.3946872967917
Iteration: 8, Func. Count: 83, Neg. LLF: 154.39466858545842
Iteration: 9, Func. Count: 92, Neg. LLF: 154.3946690611604
Optimization terminated successfully (Exit mode 0)
Current function value: 154.39466858545842
Iterations: 9
Function evaluations: 92
Gradient evaluations: 9
Iteration: 1, Func. Count: 12, Neg. LLF: 160.94933197083873
Iteration: 2, Func. Count: 24, Neg. LLF: 154.67498007581153
Iteration: 3, Func. Count: 35, Neg. LLF: 154.65485440029144
Iteration: 4, Func. Count: 47, Neg. LLF: 154.55535959576233
Iteration: 5, Func. Count: 58, Neg. LLF: 154.55532025209703
Iteration: 6, Func. Count: 69, Neg. LLF: 154.55531814276583
Iteration: 7, Func. Count: 79, Neg. LLF: 154.555317817669
Optimization terminated successfully (Exit mode 0)
Current function value: 154.55531814276583
Iterations: 7
Function evaluations: 79
Gradient evaluations: 7
Iteration: 1, Func. Count: 13, Neg. LLF: 161.90572739283505
Iteration: 2, Func. Count: 26, Neg. LLF: 154.6327172308761
Iteration: 3, Func. Count: 38, Neg. LLF: 154.60991060171946
Iteration: 4, Func. Count: 50, Neg. LLF: 154.60494392580455
Iteration: 5, Func. Count: 62, Neg. LLF: 154.60400355257053
Iteration: 6, Func. Count: 74, Neg. LLF: 154.6038784506022
Iteration: 7, Func. Count: 86, Neg. LLF: 154.6038182441943
Iteration: 8, Func. Count: 98, Neg. LLF: 154.60381595441396
Iteration: 9, Func. Count: 109, Neg. LLF: 154.60381570329292
Optimization terminated successfully (Exit mode 0)
Current function value: 154.60381595441396
Iterations: 9
Function evaluations: 109
Gradient evaluations: 9
Iteration: 1, Func. Count: 10, Neg. LLF: 161.08313809647376
Iteration: 2, Func. Count: 20, Neg. LLF: 160.42665065641702
Iteration: 3, Func. Count: 30, Neg. LLF: 156.242935332225
Iteration: 4, Func. Count: 39, Neg. LLF: 155.96297543578504
Iteration: 5, Func. Count: 48, Neg. LLF: 155.92938458560778
Iteration: 6, Func. Count: 57, Neg. LLF: 155.905670915878
Iteration: 7, Func. Count: 66, Neg. LLF: 155.89065478182567
Iteration: 8, Func. Count: 75, Neg. LLF: 155.81357481015021
Iteration: 9, Func. Count: 84, Neg. LLF: 155.7848130958263
Iteration: 10, Func. Count: 93, Neg. LLF: 156.21658965031133
Iteration: 11, Func. Count: 104, Neg. LLF: 155.78036416581338
Iteration: 12, Func. Count: 113, Neg. LLF: 155.78019035948202
Iteration: 13, Func. Count: 122, Neg. LLF: 155.78018304076832
Iteration: 14, Func. Count: 130, Neg. LLF: 155.7801830259919
Optimization terminated successfully (Exit mode 0)
Current function value: 155.78018304076832
Iterations: 14
Function evaluations: 130
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 164.79888419790038
Iteration: 2, Func. Count: 22, Neg. LLF: 174.71282102749615
Iteration: 3, Func. Count: 33, Neg. LLF: 162.85160476665422
Iteration: 4, Func. Count: 44, Neg. LLF: 155.48616923269142
Iteration: 5, Func. Count: 54, Neg. LLF: 155.4649181246119
Iteration: 6, Func. Count: 64, Neg. LLF: 155.46170888319352
Iteration: 7, Func. Count: 74, Neg. LLF: 155.4587970099057
Iteration: 8, Func. Count: 84, Neg. LLF: 155.4584891542887
Iteration: 9, Func. Count: 94, Neg. LLF: 155.45848433461978
Iteration: 10, Func. Count: 103, Neg. LLF: 155.4584841806773
Optimization terminated successfully (Exit mode 0)
Current function value: 155.45848433461978
Iterations: 10
Function evaluations: 103
Gradient evaluations: 10
Iteration: 1, Func. Count: 12, Neg. LLF: 163.7076641782334
Iteration: 2, Func. Count: 24, Neg. LLF: 154.9257476961748
Iteration: 3, Func. Count: 35, Neg. LLF: 156.92475991127117
Iteration: 4, Func. Count: 47, Neg. LLF: 154.41048837870926
Iteration: 5, Func. Count: 58, Neg. LLF: 156.19820542764091
Iteration: 6, Func. Count: 70, Neg. LLF: 154.34581332011166
Iteration: 7, Func. Count: 81, Neg. LLF: 154.21689141934522
Iteration: 8, Func. Count: 92, Neg. LLF: 154.20587920786852
Iteration: 9, Func. Count: 103, Neg. LLF: 154.20458662702495
Iteration: 10, Func. Count: 114, Neg. LLF: 154.20453075956752
Iteration: 11, Func. Count: 125, Neg. LLF: 154.20453026147447
Optimization terminated successfully (Exit mode 0)
Current function value: 154.20453026147447
Iterations: 11
Function evaluations: 125
Gradient evaluations: 11
Iteration: 1, Func. Count: 13, Neg. LLF: 160.9683572159521
Iteration: 2, Func. Count: 26, Neg. LLF: 154.6746502267732
Iteration: 3, Func. Count: 38, Neg. LLF: 153.29818419440207
Iteration: 4, Func. Count: 50, Neg. LLF: 162.61782801681264
Iteration: 5, Func. Count: 63, Neg. LLF: 151.95973650069345
Iteration: 6, Func. Count: 75, Neg. LLF: 151.8990525897543
Iteration: 7, Func. Count: 87, Neg. LLF: 151.85616681865258
Iteration: 8, Func. Count: 99, Neg. LLF: 151.78500409638525
Iteration: 9, Func. Count: 111, Neg. LLF: 153.63552975692033
Iteration: 10, Func. Count: 125, Neg. LLF: 151.7660582488662
Iteration: 11, Func. Count: 137, Neg. LLF: 151.7707326520091
Iteration: 12, Func. Count: 150, Neg. LLF: 151.75983133027825
Iteration: 13, Func. Count: 162, Neg. LLF: 151.75982878323634
Iteration: 14, Func. Count: 173, Neg. LLF: 151.75982852836344
Optimization terminated successfully (Exit mode 0)
Current function value: 151.75982878323634
Iterations: 15
Function evaluations: 173
Gradient evaluations: 14
Iteration: 1, Func. Count: 14, Neg. LLF: 161.39919516676613
Iteration: 2, Func. Count: 28, Neg. LLF: 154.63301572998802
Iteration: 3, Func. Count: 41, Neg. LLF: 154.60957626222847
Iteration: 4, Func. Count: 54, Neg. LLF: 154.60487500713828
Iteration: 5, Func. Count: 67, Neg. LLF: 154.6039917347523
Iteration: 6, Func. Count: 80, Neg. LLF: 154.6038667609304
Iteration: 7, Func. Count: 93, Neg. LLF: 154.60381829671175
Iteration: 8, Func. Count: 106, Neg. LLF: 154.60381594057586
Iteration: 9, Func. Count: 118, Neg. LLF: 154.60381568946408
Optimization terminated successfully (Exit mode 0)
Current function value: 154.60381594057586
Iterations: 9
Function evaluations: 118
Gradient evaluations: 9
Iteration: 1, Func. Count: 11, Neg. LLF: 159.79362826776253
Iteration: 2, Func. Count: 21, Neg. LLF: 159.94159783818574
Iteration: 3, Func. Count: 32, Neg. LLF: 156.02585632976448
Iteration: 4, Func. Count: 42, Neg. LLF: 155.97055506827644
Iteration: 5, Func. Count: 52, Neg. LLF: 155.9256662321037
Iteration: 6, Func. Count: 62, Neg. LLF: 155.86491734921728
Iteration: 7, Func. Count: 72, Neg. LLF: 155.9180103341809
Iteration: 8, Func. Count: 83, Neg. LLF: 155.85547831263776
Iteration: 9, Func. Count: 94, Neg. LLF: 155.7813321817282
Iteration: 10, Func. Count: 104, Neg. LLF: 155.7802887903317
Iteration: 11, Func. Count: 114, Neg. LLF: 155.78026601762892
Iteration: 12, Func. Count: 125, Neg. LLF: 155.7801837139912
Iteration: 13, Func. Count: 135, Neg. LLF: 155.7801830387306
Optimization terminated successfully (Exit mode 0)
Current function value: 155.7801830387306
Iterations: 13
Function evaluations: 135
Gradient evaluations: 13
Iteration: 1, Func. Count: 12, Neg. LLF: 188.70074455326065
Iteration: 2, Func. Count: 24, Neg. LLF: 158.1435376399744
Iteration: 3, Func. Count: 36, Neg. LLF: 166.6425677616132
Iteration: 4, Func. Count: 48, Neg. LLF: 246.79649911591295
Iteration: 5, Func. Count: 60, Neg. LLF: 155.46322018096788
Iteration: 6, Func. Count: 71, Neg. LLF: 155.28337994720323
Iteration: 7, Func. Count: 82, Neg. LLF: 155.24924975879205
Iteration: 8, Func. Count: 93, Neg. LLF: 155.24586139443758
Iteration: 9, Func. Count: 104, Neg. LLF: 155.24555642532056
Iteration: 10, Func. Count: 115, Neg. LLF: 155.2453491448605
Iteration: 11, Func. Count: 126, Neg. LLF: 155.24534402290269
Iteration: 12, Func. Count: 136, Neg. LLF: 155.24534384219066
Optimization terminated successfully (Exit mode 0)
Current function value: 155.24534402290269
Iterations: 12
Function evaluations: 136
Gradient evaluations: 12
Iteration: 1, Func. Count: 13, Neg. LLF: 163.75348024489347
Iteration: 2, Func. Count: 26, Neg. LLF: 156.49565165882927
Iteration: 3, Func. Count: 38, Neg. LLF: 155.68235294213085
Iteration: 4, Func. Count: 51, Neg. LLF: 156.0431493725568
Iteration: 5, Func. Count: 64, Neg. LLF: 155.54794042789774
Iteration: 6, Func. Count: 77, Neg. LLF: 155.25821249169283
Iteration: 7, Func. Count: 89, Neg. LLF: 155.2110782160036
Iteration: 8, Func. Count: 101, Neg. LLF: 155.20140419642362
Iteration: 9, Func. Count: 113, Neg. LLF: 155.198372403848
Iteration: 10, Func. Count: 125, Neg. LLF: 155.19829859800504
Iteration: 11, Func. Count: 137, Neg. LLF: 155.19828339944252
Iteration: 12, Func. Count: 149, Neg. LLF: 155.1982577378057
Iteration: 13, Func. Count: 160, Neg. LLF: 155.19825763565257
Optimization terminated successfully (Exit mode 0)
Current function value: 155.1982577378057
Iterations: 13
Function evaluations: 160
Gradient evaluations: 13
Iteration: 1, Func. Count: 14, Neg. LLF: 160.84420767260508
Iteration: 2, Func. Count: 28, Neg. LLF: 154.6773319856483
Iteration: 3, Func. Count: 41, Neg. LLF: 153.36713265052975
Iteration: 4, Func. Count: 54, Neg. LLF: 163.5399060502821
Iteration: 5, Func. Count: 68, Neg. LLF: 151.98039736381443
Iteration: 6, Func. Count: 81, Neg. LLF: 151.92166315803942
Iteration: 7, Func. Count: 94, Neg. LLF: 151.80294547819992
Iteration: 8, Func. Count: 107, Neg. LLF: 151.78858087485685
Iteration: 9, Func. Count: 120, Neg. LLF: 153.97544128155127
Iteration: 10, Func. Count: 135, Neg. LLF: 151.76627336958586
Iteration: 11, Func. Count: 148, Neg. LLF: 151.77074860876422
Iteration: 12, Func. Count: 162, Neg. LLF: 151.75983148147535
Iteration: 13, Func. Count: 175, Neg. LLF: 151.75982878356933
Iteration: 14, Func. Count: 187, Neg. LLF: 151.75982852869598
Optimization terminated successfully (Exit mode 0)
Current function value: 151.75982878356933
Iterations: 15
Function evaluations: 187
Gradient evaluations: 14
Iteration: 1, Func. Count: 15, Neg. LLF: 161.59302353816696
Iteration: 2, Func. Count: 30, Neg. LLF: 154.6324295013571
Iteration: 3, Func. Count: 44, Neg. LLF: 154.60955170320958
Iteration: 4, Func. Count: 58, Neg. LLF: 154.60467609801293
Iteration: 5, Func. Count: 72, Neg. LLF: 154.60393013870083
Iteration: 6, Func. Count: 86, Neg. LLF: 154.6038536211819
Iteration: 7, Func. Count: 100, Neg. LLF: 154.6038176865018
Iteration: 8, Func. Count: 114, Neg. LLF: 154.6038158892092
Iteration: 9, Func. Count: 127, Neg. LLF: 154.60381563807226
Optimization terminated successfully (Exit mode 0)
Current function value: 154.6038158892092
Iterations: 9
Function evaluations: 127
Gradient evaluations: 9
Iteration: 1, Func. Count: 12, Neg. LLF: 159.18293254132365
Iteration: 2, Func. Count: 23, Neg. LLF: 161.02182970036148
Iteration: 3, Func. Count: 35, Neg. LLF: 156.0442021883488
Iteration: 4, Func. Count: 46, Neg. LLF: 156.00583003069457
Iteration: 5, Func. Count: 57, Neg. LLF: 155.98112861511615
Iteration: 6, Func. Count: 68, Neg. LLF: 155.86983951172192
Iteration: 7, Func. Count: 79, Neg. LLF: 156.73277020921049
Iteration: 8, Func. Count: 91, Neg. LLF: 155.88069230825633
Iteration: 9, Func. Count: 103, Neg. LLF: 155.78048141416056
Iteration: 10, Func. Count: 114, Neg. LLF: 155.78019313287803
Iteration: 11, Func. Count: 125, Neg. LLF: 155.78018311721416
Iteration: 12, Func. Count: 135, Neg. LLF: 155.78018309483733
Optimization terminated successfully (Exit mode 0)
Current function value: 155.78018311721416
Iterations: 12
Function evaluations: 135
Gradient evaluations: 12
Iteration: 1, Func. Count: 13, Neg. LLF: 186.51610971249502
Iteration: 2, Func. Count: 26, Neg. LLF: 158.21430910091783
Iteration: 3, Func. Count: 39, Neg. LLF: 156.3016062767221
Iteration: 4, Func. Count: 52, Neg. LLF: 154.64324146917886
Iteration: 5, Func. Count: 65, Neg. LLF: 153.7776762277059
Iteration: 6, Func. Count: 77, Neg. LLF: 153.76554682058287
Iteration: 7, Func. Count: 89, Neg. LLF: 153.76212255603974
Iteration: 8, Func. Count: 101, Neg. LLF: 153.76078868602582
Iteration: 9, Func. Count: 113, Neg. LLF: 153.76000660289128
Iteration: 10, Func. Count: 125, Neg. LLF: 153.75969068215184
Iteration: 11, Func. Count: 137, Neg. LLF: 153.75908926923145
Iteration: 12, Func. Count: 149, Neg. LLF: 153.7589715376941
Iteration: 13, Func. Count: 161, Neg. LLF: 153.75895927704775
Iteration: 14, Func. Count: 172, Neg. LLF: 153.75895919796238
Optimization terminated successfully (Exit mode 0)
Current function value: 153.75895927704775
Iterations: 14
Function evaluations: 172
Gradient evaluations: 14
Iteration: 1, Func. Count: 14, Neg. LLF: 163.73983547022945
Iteration: 2, Func. Count: 28, Neg. LLF: 156.11612373567684
Iteration: 3, Func. Count: 41, Neg. LLF: 155.1054197180296
Iteration: 4, Func. Count: 54, Neg. LLF: 154.2497613976068
Iteration: 5, Func. Count: 67, Neg. LLF: 154.49623307918017
Iteration: 6, Func. Count: 81, Neg. LLF: 155.60365693962046
Iteration: 7, Func. Count: 95, Neg. LLF: 153.99096078424256
Iteration: 8, Func. Count: 108, Neg. LLF: 153.97797247176695
Iteration: 9, Func. Count: 121, Neg. LLF: 153.97414785382142
Iteration: 10, Func. Count: 134, Neg. LLF: 153.9736243988136
Iteration: 11, Func. Count: 147, Neg. LLF: 153.9736115479245
Iteration: 12, Func. Count: 160, Neg. LLF: 153.97361277156526
Optimization terminated successfully (Exit mode 0)
Current function value: 153.97361164760886
Iterations: 13
Function evaluations: 161
Gradient evaluations: 12
Iteration: 1, Func. Count: 15, Neg. LLF: 160.89625513785182
Iteration: 2, Func. Count: 30, Neg. LLF: 154.67647317835429
Iteration: 3, Func. Count: 44, Neg. LLF: 153.39665609949424
Iteration: 4, Func. Count: 58, Neg. LLF: 161.07183484700474
Iteration: 5, Func. Count: 73, Neg. LLF: 152.05784525367315
Iteration: 6, Func. Count: 87, Neg. LLF: 151.9037597162158
Iteration: 7, Func. Count: 101, Neg. LLF: 162.68013770818388
Iteration: 8, Func. Count: 116, Neg. LLF: 152.11411211895333
Iteration: 9, Func. Count: 131, Neg. LLF: 151.76265183316966
Iteration: 10, Func. Count: 145, Neg. LLF: 151.7603202688608
Iteration: 11, Func. Count: 159, Neg. LLF: 151.75983210954337
Iteration: 12, Func. Count: 173, Neg. LLF: 151.75982881847042
Iteration: 13, Func. Count: 186, Neg. LLF: 151.75982856350848
Optimization terminated successfully (Exit mode 0)
Current function value: 151.75982881847042
Iterations: 14
Function evaluations: 186
Gradient evaluations: 13
Iteration: 1, Func. Count: 16, Neg. LLF: 161.86436241896104
Iteration: 2, Func. Count: 32, Neg. LLF: 154.63225247704946
Iteration: 3, Func. Count: 47, Neg. LLF: 154.60969375479553
Iteration: 4, Func. Count: 62, Neg. LLF: 154.60465141611172
Iteration: 5, Func. Count: 77, Neg. LLF: 154.60392571729062
Iteration: 6, Func. Count: 92, Neg. LLF: 154.60385598362987
Iteration: 7, Func. Count: 107, Neg. LLF: 154.603817557052
Iteration: 8, Func. Count: 122, Neg. LLF: 154.60381588315425
Iteration: 9, Func. Count: 136, Neg. LLF: 154.60381563200912
Optimization terminated successfully (Exit mode 0)
Current function value: 154.60381588315425
Iterations: 9
Function evaluations: 136
Gradient evaluations: 9
Iteration: 1, Func. Count: 6, Neg. LLF: 170.83739807428591
Iteration: 2, Func. Count: 12, Neg. LLF: 155.58914546633977
Iteration: 3, Func. Count: 17, Neg. LLF: 169.28882276108305
Iteration: 4, Func. Count: 23, Neg. LLF: 154.67891359763544
Iteration: 5, Func. Count: 28, Neg. LLF: 154.4182426742588
Iteration: 6, Func. Count: 33, Neg. LLF: 154.3912777688001
Iteration: 7, Func. Count: 38, Neg. LLF: 154.38911737262148
Iteration: 8, Func. Count: 43, Neg. LLF: 154.38865057739457
Iteration: 9, Func. Count: 48, Neg. LLF: 154.38863005091915
Iteration: 10, Func. Count: 53, Neg. LLF: 154.3886291970161
Optimization terminated successfully (Exit mode 0)
Current function value: 154.3886291970161
Iterations: 10
Function evaluations: 53
Gradient evaluations: 10
Iteration: 1, Func. Count: 5, Neg. LLF: 164.31416239579087
Iteration: 2, Func. Count: 9, Neg. LLF: 164.75544788449133
Iteration: 3, Func. Count: 14, Neg. LLF: 163.2512417112245
Iteration: 4, Func. Count: 18, Neg. LLF: 163.22809610548381
Iteration: 5, Func. Count: 22, Neg. LLF: 163.16614485380364
Iteration: 6, Func. Count: 26, Neg. LLF: 163.1314124346954
Iteration: 7, Func. Count: 30, Neg. LLF: 163.12091029208446
Iteration: 8, Func. Count: 34, Neg. LLF: 163.11968968925066
Iteration: 9, Func. Count: 38, Neg. LLF: 163.1191515181017
Iteration: 10, Func. Count: 42, Neg. LLF: 163.11841886609702
Iteration: 11, Func. Count: 46, Neg. LLF: 163.11789920113122
Iteration: 12, Func. Count: 50, Neg. LLF: 163.11769875138316
Iteration: 13, Func. Count: 54, Neg. LLF: 163.117668938931
Iteration: 14, Func. Count: 58, Neg. LLF: 163.11766800286057
Optimization terminated successfully (Exit mode 0)
Current function value: 163.11766800286057
Iterations: 14
Function evaluations: 58
Gradient evaluations: 14
Iteration: 1, Func. Count: 6, Neg. LLF: 174.1299539374848
Iteration: 2, Func. Count: 12, Neg. LLF: 160.90706776803472
Iteration: 3, Func. Count: 17, Neg. LLF: 160.69526033991505
Iteration: 4, Func. Count: 22, Neg. LLF: 904.8275723806919
Iteration: 5, Func. Count: 29, Neg. LLF: 160.18292094883566
Iteration: 6, Func. Count: 34, Neg. LLF: 159.65249865804682
Iteration: 7, Func. Count: 39, Neg. LLF: 159.59266033509022
Iteration: 8, Func. Count: 44, Neg. LLF: 159.57614617209262
Iteration: 9, Func. Count: 49, Neg. LLF: 159.57383132260998
Iteration: 10, Func. Count: 54, Neg. LLF: 159.57380491695542
Iteration: 11, Func. Count: 58, Neg. LLF: 159.57380560420168
Optimization terminated successfully (Exit mode 0)
Current function value: 159.57380491695542
Iterations: 11
Function evaluations: 58
Gradient evaluations: 11
Iteration: 1, Func. Count: 7, Neg. LLF: 167.4574107811763
Iteration: 2, Func. Count: 14, Neg. LLF: 160.25167087705134
Iteration: 3, Func. Count: 20, Neg. LLF: 160.4415076802918
Iteration: 4, Func. Count: 27, Neg. LLF: 159.62845811842413
Iteration: 5, Func. Count: 33, Neg. LLF: 159.62534303432525
Iteration: 6, Func. Count: 39, Neg. LLF: 159.62395174659738
Iteration: 7, Func. Count: 45, Neg. LLF: 159.60605191351826
Iteration: 8, Func. Count: 51, Neg. LLF: 159.57598058538946
Iteration: 9, Func. Count: 57, Neg. LLF: 159.5750479305692
Iteration: 10, Func. Count: 63, Neg. LLF: 159.57419314553314
Iteration: 11, Func. Count: 69, Neg. LLF: 159.57380524256982
Iteration: 12, Func. Count: 75, Neg. LLF: 159.57380462409637
Optimization terminated successfully (Exit mode 0)
Current function value: 159.57380462409637
Iterations: 12
Function evaluations: 75
Gradient evaluations: 12
Iteration: 1, Func. Count: 8, Neg. LLF: 164.92224932060725
Iteration: 2, Func. Count: 16, Neg. LLF: 159.81880895247127
Iteration: 3, Func. Count: 23, Neg. LLF: 159.7703772061922
Iteration: 4, Func. Count: 31, Neg. LLF: 159.66183383536776
Iteration: 5, Func. Count: 38, Neg. LLF: 159.5937738895587
Iteration: 6, Func. Count: 45, Neg. LLF: 159.54291387850867
Iteration: 7, Func. Count: 52, Neg. LLF: 159.54290519700447
Iteration: 8, Func. Count: 59, Neg. LLF: 159.5429010178641
Iteration: 9, Func. Count: 65, Neg. LLF: 159.54290077105566
Optimization terminated successfully (Exit mode 0)
Current function value: 159.5429010178641
Iterations: 9
Function evaluations: 65
Gradient evaluations: 9
Iteration: 1, Func. Count: 9, Neg. LLF: 165.78282605415797
Iteration: 2, Func. Count: 18, Neg. LLF: 159.79351563755677
Iteration: 3, Func. Count: 26, Neg. LLF: 159.75529921053513
Iteration: 4, Func. Count: 34, Neg. LLF: 159.73755913180173
Iteration: 5, Func. Count: 42, Neg. LLF: 159.73685688182792
Iteration: 6, Func. Count: 50, Neg. LLF: 159.73664359359609
Iteration: 7, Func. Count: 58, Neg. LLF: 159.73170768053595
Iteration: 8, Func. Count: 66, Neg. LLF: 159.66011748655714
Iteration: 9, Func. Count: 74, Neg. LLF: 159.70017116603114
Iteration: 10, Func. Count: 83, Neg. LLF: 159.64511788023844
Iteration: 11, Func. Count: 91, Neg. LLF: 159.60478122021266
Iteration: 12, Func. Count: 99, Neg. LLF: 159.5719322143678
Iteration: 13, Func. Count: 108, Neg. LLF: 159.5143741804263
Iteration: 14, Func. Count: 126, Neg. LLF: 159.59919205842974
Iteration: 15, Func. Count: 134, Neg. LLF: 159.5653625455939
Iteration: 16, Func. Count: 148, Neg. LLF: 159.59686327775066
Iteration: 17, Func. Count: 156, Neg. LLF: 159.58832672255937
Iteration: 18, Func. Count: 164, Neg. LLF: 159.57978909285936
Iteration: 19, Func. Count: 172, Neg. LLF: 159.92197615066684
Iteration: 20, Func. Count: 181, Neg. LLF: 159.57559759071464
Iteration: 21, Func. Count: 189, Neg. LLF: 159.57380480836386
Iteration: 22, Func. Count: 196, Neg. LLF: 159.57380413402527
Optimization terminated successfully (Exit mode 0)
Current function value: 159.57380480836386
Iterations: 23
Function evaluations: 196
Gradient evaluations: 22
Iteration: 1, Func. Count: 6, Neg. LLF: 163.08668221538835
Iteration: 2, Func. Count: 11, Neg. LLF: 166.3099024762922
Iteration: 3, Func. Count: 17, Neg. LLF: 159.46873835528214
Iteration: 4, Func. Count: 22, Neg. LLF: 159.45987860791433
Iteration: 5, Func. Count: 27, Neg. LLF: 159.41142338473327
Iteration: 6, Func. Count: 32, Neg. LLF: 159.34059178748322
Iteration: 7, Func. Count: 37, Neg. LLF: 159.313143487808
Iteration: 8, Func. Count: 42, Neg. LLF: 159.30998827205735
Iteration: 9, Func. Count: 47, Neg. LLF: 159.30992784606303
Iteration: 10, Func. Count: 51, Neg. LLF: 159.309927831387
Optimization terminated successfully (Exit mode 0)
Current function value: 159.30992784606303
Iterations: 10
Function evaluations: 51
Gradient evaluations: 10
Iteration: 1, Func. Count: 7, Neg. LLF: 174.13352757460862
Iteration: 2, Func. Count: 14, Neg. LLF: 160.90828026610544
Iteration: 3, Func. Count: 20, Neg. LLF: 160.70460302371572
Iteration: 4, Func. Count: 26, Neg. LLF: 866.8252598271841
Iteration: 5, Func. Count: 34, Neg. LLF: 160.24154230044243
Iteration: 6, Func. Count: 40, Neg. LLF: 159.7419797552007
Iteration: 7, Func. Count: 46, Neg. LLF: 159.61168543602832
Iteration: 8, Func. Count: 52, Neg. LLF: 159.57924623858642
Iteration: 9, Func. Count: 58, Neg. LLF: 159.5739075217184
Iteration: 10, Func. Count: 64, Neg. LLF: 159.57380604140198
Iteration: 11, Func. Count: 70, Neg. LLF: 159.57380462673254
Iteration: 12, Func. Count: 75, Neg. LLF: 159.57380531316804
Optimization terminated successfully (Exit mode 0)
Current function value: 159.57380462673254
Iterations: 12
Function evaluations: 75
Gradient evaluations: 12
Iteration: 1, Func. Count: 8, Neg. LLF: 167.31732870161275
Iteration: 2, Func. Count: 16, Neg. LLF: 160.28258350810665
Iteration: 3, Func. Count: 23, Neg. LLF: 160.2059957476125
Iteration: 4, Func. Count: 31, Neg. LLF: 159.6289800941612
Iteration: 5, Func. Count: 38, Neg. LLF: 159.6254652036711
Iteration: 6, Func. Count: 45, Neg. LLF: 159.6237555486109
Iteration: 7, Func. Count: 52, Neg. LLF: 159.59546781150632
Iteration: 8, Func. Count: 59, Neg. LLF: 159.57907162568404
Iteration: 9, Func. Count: 66, Neg. LLF: 159.57470205400213
Iteration: 10, Func. Count: 73, Neg. LLF: 159.57388381438642
Iteration: 11, Func. Count: 80, Neg. LLF: 159.57381805029442
Iteration: 12, Func. Count: 87, Neg. LLF: 159.57380470410496
Iteration: 13, Func. Count: 93, Neg. LLF: 159.57380401946173
Optimization terminated successfully (Exit mode 0)
Current function value: 159.57380470410496
Iterations: 13
Function evaluations: 93
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 164.87931387290686
Iteration: 2, Func. Count: 18, Neg. LLF: 159.81984074325877
Iteration: 3, Func. Count: 26, Neg. LLF: 159.77695775328033
Iteration: 4, Func. Count: 35, Neg. LLF: 159.664445873708
Iteration: 5, Func. Count: 43, Neg. LLF: 159.61761359739663
Iteration: 6, Func. Count: 51, Neg. LLF: 159.54555190472553
Iteration: 7, Func. Count: 59, Neg. LLF: 159.54341743023562
Iteration: 8, Func. Count: 67, Neg. LLF: 159.54300359080605
Iteration: 9, Func. Count: 75, Neg. LLF: 159.54297758033164
Iteration: 10, Func. Count: 83, Neg. LLF: 159.5429316375713
Iteration: 11, Func. Count: 91, Neg. LLF: 159.54289960846165
Iteration: 12, Func. Count: 98, Neg. LLF: 159.54289985580849
Optimization terminated successfully (Exit mode 0)
Current function value: 159.54289960846165
Iterations: 13
Function evaluations: 98
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 165.2973339646354
Iteration: 2, Func. Count: 20, Neg. LLF: 159.79222754116353
Iteration: 3, Func. Count: 29, Neg. LLF: 159.7533721572825
Iteration: 4, Func. Count: 38, Neg. LLF: 159.73736737668523
Iteration: 5, Func. Count: 47, Neg. LLF: 159.73686382622853
Iteration: 6, Func. Count: 56, Neg. LLF: 159.73668659297928
Iteration: 7, Func. Count: 65, Neg. LLF: 159.73240951509575
Iteration: 8, Func. Count: 74, Neg. LLF: 159.6624068054414
Iteration: 9, Func. Count: 83, Neg. LLF: 159.66484378594402
Iteration: 10, Func. Count: 93, Neg. LLF: 159.65165903344123
Iteration: 11, Func. Count: 102, Neg. LLF: 159.60797139926893
Iteration: 12, Func. Count: 111, Neg. LLF: 159.5673474172523
Iteration: 13, Func. Count: 121, Neg. LLF: 159.60857929863576
Iteration: 14, Func. Count: 131, Neg. LLF: 159.61976267570233
Iteration: 15, Func. Count: 141, Neg. LLF: 159.60406096389283
Iteration: 16, Func. Count: 151, Neg. LLF: 159.5948042319524
Iteration: 17, Func. Count: 160, Neg. LLF: 159.57394599150763
Iteration: 18, Func. Count: 169, Neg. LLF: 159.57381792258894
Iteration: 19, Func. Count: 178, Neg. LLF: 159.5738062790122
Iteration: 20, Func. Count: 187, Neg. LLF: 159.5738046465341
Iteration: 21, Func. Count: 195, Neg. LLF: 159.5738039709806
Optimization terminated successfully (Exit mode 0)
Current function value: 159.5738046465341
Iterations: 22
Function evaluations: 195
Gradient evaluations: 21
Iteration: 1, Func. Count: 7, Neg. LLF: 162.12410149800579
Iteration: 2, Func. Count: 13, Neg. LLF: 167.59151034588277
Iteration: 3, Func. Count: 20, Neg. LLF: 159.47809560006792
Iteration: 4, Func. Count: 26, Neg. LLF: 159.46807000116047
Iteration: 5, Func. Count: 32, Neg. LLF: 159.4229204642027
Iteration: 6, Func. Count: 38, Neg. LLF: 159.34821461835912
Iteration: 7, Func. Count: 44, Neg. LLF: 159.31469378491025
Iteration: 8, Func. Count: 50, Neg. LLF: 159.31005652697257
Iteration: 9, Func. Count: 56, Neg. LLF: 159.30992833889346
Iteration: 10, Func. Count: 62, Neg. LLF: 159.30992760988542
Optimization terminated successfully (Exit mode 0)
Current function value: 159.30992760988542
Iterations: 10
Function evaluations: 62
Gradient evaluations: 10
Iteration: 1, Func. Count: 8, Neg. LLF: 174.1573557670051
Iteration: 2, Func. Count: 16, Neg. LLF: 160.898814461113
Iteration: 3, Func. Count: 23, Neg. LLF: 160.75135508475557
Iteration: 4, Func. Count: 30, Neg. LLF: 583.1514454077472
Iteration: 5, Func. Count: 39, Neg. LLF: 161.61163637710612
Iteration: 6, Func. Count: 47, Neg. LLF: 160.27607154538927
Iteration: 7, Func. Count: 54, Neg. LLF: 159.70654775447522
Iteration: 8, Func. Count: 61, Neg. LLF: 159.65360596228962
Iteration: 9, Func. Count: 68, Neg. LLF: 159.5770127661392
Iteration: 10, Func. Count: 75, Neg. LLF: 159.57388716406066
Iteration: 11, Func. Count: 82, Neg. LLF: 159.5738046201425
Iteration: 12, Func. Count: 89, Neg. LLF: 159.57380457861007
Optimization terminated successfully (Exit mode 0)
Current function value: 159.57380457861007
Iterations: 12
Function evaluations: 89
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 167.34418778544202
Iteration: 2, Func. Count: 18, Neg. LLF: 160.27319442602604
Iteration: 3, Func. Count: 26, Neg. LLF: 160.32006167320094
Iteration: 4, Func. Count: 35, Neg. LLF: 159.62880318683256
Iteration: 5, Func. Count: 43, Neg. LLF: 159.6254043004414
Iteration: 6, Func. Count: 51, Neg. LLF: 159.62385667853977
Iteration: 7, Func. Count: 59, Neg. LLF: 159.60559023577756
Iteration: 8, Func. Count: 67, Neg. LLF: 159.5798179160162
Iteration: 9, Func. Count: 75, Neg. LLF: 159.5780695445542
Iteration: 10, Func. Count: 83, Neg. LLF: 159.57460001328815
Iteration: 11, Func. Count: 91, Neg. LLF: 159.5746510406045
Iteration: 12, Func. Count: 100, Neg. LLF: 159.57381117242767
Iteration: 13, Func. Count: 108, Neg. LLF: 159.57380462531833
Iteration: 14, Func. Count: 115, Neg. LLF: 159.57380394052677
Optimization terminated successfully (Exit mode 0)
Current function value: 159.57380462531833
Iterations: 14
Function evaluations: 115
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 164.78243905602372
Iteration: 2, Func. Count: 20, Neg. LLF: 159.82358648223058
Iteration: 3, Func. Count: 29, Neg. LLF: 159.7774354096834
Iteration: 4, Func. Count: 39, Neg. LLF: 159.66371951266729
Iteration: 5, Func. Count: 48, Neg. LLF: 159.61010495842737
Iteration: 6, Func. Count: 57, Neg. LLF: 159.38618469592382
Iteration: 7, Func. Count: 66, Neg. LLF: 159.25459061625247
Iteration: 8, Func. Count: 75, Neg. LLF: 158.99124980137967
Iteration: 9, Func. Count: 84, Neg. LLF: 158.982781920995
Iteration: 10, Func. Count: 93, Neg. LLF: 158.97225855682711
Iteration: 11, Func. Count: 102, Neg. LLF: 158.96985315128194
Iteration: 12, Func. Count: 111, Neg. LLF: 158.9673442752698
Iteration: 13, Func. Count: 120, Neg. LLF: 158.9672217430392
Iteration: 14, Func. Count: 129, Neg. LLF: 158.9672145003565
Iteration: 15, Func. Count: 138, Neg. LLF: 158.9672237894261
Iteration: 16, Func. Count: 148, Neg. LLF: 158.967205788477
Iteration: 17, Func. Count: 156, Neg. LLF: 158.96720555939294
Optimization terminated successfully (Exit mode 0)
Current function value: 158.967205788477
Iterations: 18
Function evaluations: 156
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 165.4421669207346
Iteration: 2, Func. Count: 22, Neg. LLF: 159.7959313326167
Iteration: 3, Func. Count: 32, Neg. LLF: 159.75392993905837
Iteration: 4, Func. Count: 42, Neg. LLF: 159.73751884890217
Iteration: 5, Func. Count: 52, Neg. LLF: 159.73687052481665
Iteration: 6, Func. Count: 62, Neg. LLF: 159.7366880609634
Iteration: 7, Func. Count: 72, Neg. LLF: 159.73234461973743
Iteration: 8, Func. Count: 82, Neg. LLF: 159.66592962115726
Iteration: 9, Func. Count: 92, Neg. LLF: 159.72680659671101
Iteration: 10, Func. Count: 103, Neg. LLF: 159.6466139650565
Iteration: 11, Func. Count: 113, Neg. LLF: 159.61291569856365
Iteration: 12, Func. Count: 123, Neg. LLF: 159.50878205012592
Iteration: 13, Func. Count: 134, Neg. LLF: 159.59963537188057
Iteration: 14, Func. Count: 144, Neg. LLF: 159.59785755708882
Iteration: 15, Func. Count: 154, Neg. LLF: 159.58353118342768
Iteration: 16, Func. Count: 164, Neg. LLF: 159.57642392761045
Iteration: 17, Func. Count: 174, Neg. LLF: 159.57381264012156
Iteration: 18, Func. Count: 184, Neg. LLF: 159.5738044303652
Iteration: 19, Func. Count: 193, Neg. LLF: 159.5738037550603
Optimization terminated successfully (Exit mode 0)
Current function value: 159.5738044303652
Iterations: 20
Function evaluations: 193
Gradient evaluations: 19
Iteration: 1, Func. Count: 8, Neg. LLF: 161.51604158247443
Iteration: 2, Func. Count: 15, Neg. LLF: 167.68782306224242
Iteration: 3, Func. Count: 23, Neg. LLF: 159.4839566317695
Iteration: 4, Func. Count: 30, Neg. LLF: 159.47313645742912
Iteration: 5, Func. Count: 37, Neg. LLF: 159.41968764571038
Iteration: 6, Func. Count: 44, Neg. LLF: 159.34462919534948
Iteration: 7, Func. Count: 51, Neg. LLF: 159.31416284186307
Iteration: 8, Func. Count: 58, Neg. LLF: 159.31000175150473
Iteration: 9, Func. Count: 65, Neg. LLF: 159.3099280448136
Iteration: 10, Func. Count: 71, Neg. LLF: 159.309928058703
Optimization terminated successfully (Exit mode 0)
Current function value: 159.3099280448136
Iterations: 10
Function evaluations: 71
Gradient evaluations: 10
Iteration: 1, Func. Count: 9, Neg. LLF: 174.15133826819826
Iteration: 2, Func. Count: 18, Neg. LLF: 160.89365368154964
Iteration: 3, Func. Count: 26, Neg. LLF: 160.75589187044176
Iteration: 4, Func. Count: 34, Neg. LLF: 529.7666410515767
Iteration: 5, Func. Count: 44, Neg. LLF: 162.39980871989025
Iteration: 6, Func. Count: 53, Neg. LLF: 160.3947091796905
Iteration: 7, Func. Count: 61, Neg. LLF: 159.7903955186341
Iteration: 8, Func. Count: 69, Neg. LLF: 159.707724994646
Iteration: 9, Func. Count: 77, Neg. LLF: 159.58296065683209
Iteration: 10, Func. Count: 85, Neg. LLF: 159.57417779057334
Iteration: 11, Func. Count: 93, Neg. LLF: 159.57380591829303
Iteration: 12, Func. Count: 101, Neg. LLF: 159.57380477245687
Iteration: 13, Func. Count: 108, Neg. LLF: 159.57380545886616
Optimization terminated successfully (Exit mode 0)
Current function value: 159.57380477245687
Iterations: 13
Function evaluations: 108
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 167.331187340762
Iteration: 2, Func. Count: 20, Neg. LLF: 160.27566882269505
Iteration: 3, Func. Count: 29, Neg. LLF: 160.30393588545044
Iteration: 4, Func. Count: 39, Neg. LLF: 159.62884406673138
Iteration: 5, Func. Count: 48, Neg. LLF: 159.62539962242732
Iteration: 6, Func. Count: 57, Neg. LLF: 159.62382736958727
Iteration: 7, Func. Count: 66, Neg. LLF: 159.60540420791907
Iteration: 8, Func. Count: 75, Neg. LLF: 159.57969995153402
Iteration: 9, Func. Count: 84, Neg. LLF: 159.5779719733653
Iteration: 10, Func. Count: 93, Neg. LLF: 159.5747349633129
Iteration: 11, Func. Count: 102, Neg. LLF: 159.57448079455955
Iteration: 12, Func. Count: 112, Neg. LLF: 159.57380781722244
Iteration: 13, Func. Count: 121, Neg. LLF: 159.57380462347226
Iteration: 14, Func. Count: 129, Neg. LLF: 159.57380393871156
Optimization terminated successfully (Exit mode 0)
Current function value: 159.57380462347226
Iterations: 14
Function evaluations: 129
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 164.82152523093143
Iteration: 2, Func. Count: 22, Neg. LLF: 159.8216378345123
Iteration: 3, Func. Count: 32, Neg. LLF: 159.75611357136472
Iteration: 4, Func. Count: 42, Neg. LLF: 159.5560024709023
Iteration: 5, Func. Count: 52, Neg. LLF: 159.83700166680921
Iteration: 6, Func. Count: 63, Neg. LLF: 159.22603328774133
Iteration: 7, Func. Count: 73, Neg. LLF: 158.98848050279702
Iteration: 8, Func. Count: 83, Neg. LLF: 158.97006520713092
Iteration: 9, Func. Count: 93, Neg. LLF: 158.96860831934384
Iteration: 10, Func. Count: 103, Neg. LLF: 158.96723794736516
Iteration: 11, Func. Count: 113, Neg. LLF: 158.96720721943655
Iteration: 12, Func. Count: 123, Neg. LLF: 158.9672055929379
Iteration: 13, Func. Count: 132, Neg. LLF: 158.96720536386977
Optimization terminated successfully (Exit mode 0)
Current function value: 158.9672055929379
Iterations: 13
Function evaluations: 132
Gradient evaluations: 13
Iteration: 1, Func. Count: 12, Neg. LLF: 165.6537243800319
Iteration: 2, Func. Count: 24, Neg. LLF: 159.79643587633888
Iteration: 3, Func. Count: 35, Neg. LLF: 159.75530515712055
Iteration: 4, Func. Count: 46, Neg. LLF: 159.73763583227387
Iteration: 5, Func. Count: 57, Neg. LLF: 159.73686869372898
Iteration: 6, Func. Count: 68, Neg. LLF: 159.7366620180638
Iteration: 7, Func. Count: 79, Neg. LLF: 159.73195266615733
Iteration: 8, Func. Count: 90, Neg. LLF: 159.66609431167245
Iteration: 9, Func. Count: 101, Neg. LLF: 159.78600185838852
Iteration: 10, Func. Count: 113, Neg. LLF: 159.64029563384452
Iteration: 11, Func. Count: 124, Neg. LLF: 159.61190639412146
Iteration: 12, Func. Count: 135, Neg. LLF: 159.60039556022605
Iteration: 13, Func. Count: 146, Neg. LLF: 159.57252516890796
Iteration: 14, Func. Count: 157, Neg. LLF: 159.59499199977824
Iteration: 15, Func. Count: 168, Neg. LLF: 159.59131520769628
Iteration: 16, Func. Count: 179, Neg. LLF: 159.5749813439551
Iteration: 17, Func. Count: 190, Neg. LLF: 159.57412633508653
Iteration: 18, Func. Count: 201, Neg. LLF: 159.57380748872248
Iteration: 19, Func. Count: 212, Neg. LLF: 159.57380496727495
Iteration: 20, Func. Count: 223, Neg. LLF: 159.5738045508623
Optimization terminated successfully (Exit mode 0)
Current function value: 159.5738045508623
Iterations: 21
Function evaluations: 223
Gradient evaluations: 20
Iteration: 1, Func. Count: 5, Neg. LLF: 167.11481621129366
Iteration: 2, Func. Count: 9, Neg. LLF: 167.1667225292778
Iteration: 3, Func. Count: 14, Neg. LLF: 167.04110311859282
Iteration: 4, Func. Count: 18, Neg. LLF: 166.91252920126396
Iteration: 5, Func. Count: 22, Neg. LLF: 165.98567263628806
Iteration: 6, Func. Count: 26, Neg. LLF: 164.1605535028348
Iteration: 7, Func. Count: 30, Neg. LLF: 164.05340678607226
Iteration: 8, Func. Count: 34, Neg. LLF: 163.91642438660963
Iteration: 9, Func. Count: 38, Neg. LLF: 163.8866485519679
Iteration: 10, Func. Count: 42, Neg. LLF: 163.8738561217018
Iteration: 11, Func. Count: 46, Neg. LLF: 163.8725145901508
Iteration: 12, Func. Count: 50, Neg. LLF: 163.8724187773562
Iteration: 13, Func. Count: 54, Neg. LLF: 163.87241484351654
Iteration: 14, Func. Count: 57, Neg. LLF: 163.87241492389668
Optimization terminated successfully (Exit mode 0)
Current function value: 163.87241484351654
Iterations: 14
Function evaluations: 57
Gradient evaluations: 14
Iteration: 1, Func. Count: 6, Neg. LLF: 173.91110306189154
Iteration: 2, Func. Count: 12, Neg. LLF: 161.84098410199303
Iteration: 3, Func. Count: 17, Neg. LLF: 160.21622357614592
Iteration: 4, Func. Count: 22, Neg. LLF: 160.17892855757637
Iteration: 5, Func. Count: 28, Neg. LLF: 159.61488280131564
Iteration: 6, Func. Count: 33, Neg. LLF: 159.59353388520915
Iteration: 7, Func. Count: 38, Neg. LLF: 159.57618559183976
Iteration: 8, Func. Count: 43, Neg. LLF: 159.57381585572497
Iteration: 9, Func. Count: 48, Neg. LLF: 159.57380467713773
Iteration: 10, Func. Count: 52, Neg. LLF: 159.57380536298902
Optimization terminated successfully (Exit mode 0)
Current function value: 159.57380467713773
Iterations: 10
Function evaluations: 52
Gradient evaluations: 10
Iteration: 1, Func. Count: 7, Neg. LLF: 168.17175880152251
Iteration: 2, Func. Count: 14, Neg. LLF: 160.41111850286498
Iteration: 3, Func. Count: 20, Neg. LLF: 160.04317018192756
Iteration: 4, Func. Count: 26, Neg. LLF: 164.8100925589807
Iteration: 5, Func. Count: 33, Neg. LLF: 159.69689995997481
Iteration: 6, Func. Count: 40, Neg. LLF: 159.63251398118229
Iteration: 7, Func. Count: 46, Neg. LLF: 159.63197105292738
Iteration: 8, Func. Count: 52, Neg. LLF: 159.63016752937713
Iteration: 9, Func. Count: 58, Neg. LLF: 159.62819347712372
Iteration: 10, Func. Count: 64, Neg. LLF: 159.62444822730765
Iteration: 11, Func. Count: 70, Neg. LLF: 159.59373997326387
Iteration: 12, Func. Count: 76, Neg. LLF: 159.57399439474602
Iteration: 13, Func. Count: 82, Neg. LLF: 159.57383823122865
Iteration: 14, Func. Count: 88, Neg. LLF: 159.5738661741533
Iteration: 15, Func. Count: 95, Neg. LLF: 159.5738194477659
Optimization terminated successfully (Exit mode 0)
Current function value: 159.57381181431003
Iterations: 15
Function evaluations: 97
Gradient evaluations: 15
Iteration: 1, Func. Count: 8, Neg. LLF: 164.23519023863693
Iteration: 2, Func. Count: 16, Neg. LLF: 159.96771860161448
Iteration: 3, Func. Count: 23, Neg. LLF: 159.73708627775542
Iteration: 4, Func. Count: 30, Neg. LLF: 159.55037231565998
Iteration: 5, Func. Count: 37, Neg. LLF: 159.5442513484594
Iteration: 6, Func. Count: 44, Neg. LLF: 159.54290307116932
Iteration: 7, Func. Count: 51, Neg. LLF: 159.54289961870828
Iteration: 8, Func. Count: 57, Neg. LLF: 159.54289986620907
Optimization terminated successfully (Exit mode 0)
Current function value: 159.54289961870828
Iterations: 8
Function evaluations: 57
Gradient evaluations: 8
Iteration: 1, Func. Count: 9, Neg. LLF: 165.70269330246552
Iteration: 2, Func. Count: 18, Neg. LLF: 159.84512158630434
Iteration: 3, Func. Count: 26, Neg. LLF: 159.77079862628722
Iteration: 4, Func. Count: 34, Neg. LLF: 159.73985855456604
Iteration: 5, Func. Count: 42, Neg. LLF: 159.73424327732178
Iteration: 6, Func. Count: 50, Neg. LLF: 159.72923634929253
Iteration: 7, Func. Count: 58, Neg. LLF: 159.6793387966859
Iteration: 8, Func. Count: 66, Neg. LLF: 159.6711368025114
Iteration: 9, Func. Count: 74, Neg. LLF: 159.6689399375172
Iteration: 10, Func. Count: 82, Neg. LLF: 159.66746531446842
Iteration: 11, Func. Count: 90, Neg. LLF: 159.6600744115685
Iteration: 12, Func. Count: 98, Neg. LLF: 159.64375298671197
Iteration: 13, Func. Count: 106, Neg. LLF: 159.6392598408041
Iteration: 14, Func. Count: 114, Neg. LLF: 159.62280411512546
Iteration: 15, Func. Count: 122, Neg. LLF: 159.61918460361673
Iteration: 16, Func. Count: 130, Neg. LLF: 159.61871920952368
Iteration: 17, Func. Count: 138, Neg. LLF: 159.6081293851035
Iteration: 18, Func. Count: 146, Neg. LLF: 159.59105924109622
Iteration: 19, Func. Count: 154, Neg. LLF: 171.7761491548935
Iteration: 20, Func. Count: 164, Neg. LLF: 171.85293497297573
Iteration: 21, Func. Count: 182, Neg. LLF: 171.27715676147133
Iteration: 22, Func. Count: 192, Neg. LLF: 244.05122035069465
Iteration: 23, Func. Count: 210, Neg. LLF: 349.44976822743257
Iteration: 24, Func. Count: 228, Neg. LLF: 358.57271045283653
Iteration: 25, Func. Count: 246, Neg. LLF: 284.09626206248555
Iteration: 26, Func. Count: 264, Neg. LLF: 159.59761934384397
Iteration: 27, Func. Count: 273, Neg. LLF: 159.92861254106896
Iteration: 28, Func. Count: 282, Neg. LLF: 159.5738047126307
Iteration: 29, Func. Count: 289, Neg. LLF: 159.57380403817592
Optimization terminated successfully (Exit mode 0)
Current function value: 159.5738047126307
Iterations: 30
Function evaluations: 289
Gradient evaluations: 29
Iteration: 1, Func. Count: 6, Neg. LLF: 164.93679229644772
Iteration: 2, Func. Count: 11, Neg. LLF: 163.99724857644486
Iteration: 3, Func. Count: 16, Neg. LLF: 185.97506910641337
Iteration: 4, Func. Count: 25, Neg. LLF: 175.77551275024956
Iteration: 5, Func. Count: 31, Neg. LLF: 163.24595267311034
Iteration: 6, Func. Count: 36, Neg. LLF: 163.23123623339114
Iteration: 7, Func. Count: 41, Neg. LLF: 163.2100901849833
Iteration: 8, Func. Count: 46, Neg. LLF: 163.17827750944832
Iteration: 9, Func. Count: 51, Neg. LLF: 163.14389712046537
Iteration: 10, Func. Count: 56, Neg. LLF: 163.12411920225392
Iteration: 11, Func. Count: 61, Neg. LLF: 163.11754356641225
Iteration: 12, Func. Count: 66, Neg. LLF: 163.1155100214334
Iteration: 13, Func. Count: 71, Neg. LLF: 163.11473675758532
Iteration: 14, Func. Count: 76, Neg. LLF: 163.1144674891388
Iteration: 15, Func. Count: 81, Neg. LLF: 163.1144223218487
Iteration: 16, Func. Count: 86, Neg. LLF: 163.11441532006313
Iteration: 17, Func. Count: 91, Neg. LLF: 163.11441370931914
Iteration: 18, Func. Count: 95, Neg. LLF: 163.1144137093245
Optimization terminated successfully (Exit mode 0)
Current function value: 163.11441370931914
Iterations: 18
Function evaluations: 95
Gradient evaluations: 18
Iteration: 1, Func. Count: 7, Neg. LLF: 164.82941111309705
Iteration: 2, Func. Count: 15, Neg. LLF: 165.85570929208183
Iteration: 3, Func. Count: 22, Neg. LLF: 161.72550125841232
Iteration: 4, Func. Count: 28, Neg. LLF: 160.1420384653141
Iteration: 5, Func. Count: 34, Neg. LLF: 160.67424359353208
Iteration: 6, Func. Count: 41, Neg. LLF: 159.59339123554105
Iteration: 7, Func. Count: 47, Neg. LLF: 159.57446025148403
Iteration: 8, Func. Count: 53, Neg. LLF: 159.57403232188665
Iteration: 9, Func. Count: 59, Neg. LLF: 159.5738046527991
Iteration: 10, Func. Count: 64, Neg. LLF: 159.5738053388563
Optimization terminated successfully (Exit mode 0)
Current function value: 159.5738046527991
Iterations: 10
Function evaluations: 64
Gradient evaluations: 10
Iteration: 1, Func. Count: 8, Neg. LLF: 168.52340084240487
Iteration: 2, Func. Count: 16, Neg. LLF: 160.3322941552508
Iteration: 3, Func. Count: 23, Neg. LLF: 159.9837892468214
Iteration: 4, Func. Count: 30, Neg. LLF: 188.87890571617197
Iteration: 5, Func. Count: 38, Neg. LLF: 159.6447146276148
Iteration: 6, Func. Count: 45, Neg. LLF: 159.6330203769246
Iteration: 7, Func. Count: 52, Neg. LLF: 159.6319875068819
Iteration: 8, Func. Count: 59, Neg. LLF: 159.63167737040507
Iteration: 9, Func. Count: 66, Neg. LLF: 159.63116889176106
Iteration: 10, Func. Count: 73, Neg. LLF: 159.629086864939
Iteration: 11, Func. Count: 80, Neg. LLF: 159.62664363354565
Iteration: 12, Func. Count: 87, Neg. LLF: 159.61478020247287
Iteration: 13, Func. Count: 94, Neg. LLF: 159.5744270071469
Iteration: 14, Func. Count: 101, Neg. LLF: 159.57410838954806
Iteration: 15, Func. Count: 108, Neg. LLF: 159.57399193076182
Iteration: 16, Func. Count: 115, Neg. LLF: 159.57380461971186
Iteration: 17, Func. Count: 122, Neg. LLF: 159.57386340031047
Optimization terminated successfully (Exit mode 0)
Current function value: 159.57380445383092
Iterations: 18
Function evaluations: 123
Gradient evaluations: 17
Iteration: 1, Func. Count: 9, Neg. LLF: 164.32883690964096
Iteration: 2, Func. Count: 18, Neg. LLF: 162.5411204442188
Iteration: 3, Func. Count: 27, Neg. LLF: 159.65889398809693
Iteration: 4, Func. Count: 35, Neg. LLF: 159.54823496618337
Iteration: 5, Func. Count: 43, Neg. LLF: 159.54348964456642
Iteration: 6, Func. Count: 51, Neg. LLF: 159.54293590461083
Iteration: 7, Func. Count: 59, Neg. LLF: 159.54289960453332
Iteration: 8, Func. Count: 66, Neg. LLF: 159.54289985192472
Optimization terminated successfully (Exit mode 0)
Current function value: 159.54289960453332
Iterations: 8
Function evaluations: 66
Gradient evaluations: 8
Iteration: 1, Func. Count: 10, Neg. LLF: 165.72729449450645
Iteration: 2, Func. Count: 20, Neg. LLF: 159.82224994203838
Iteration: 3, Func. Count: 29, Neg. LLF: 159.7558813966585
Iteration: 4, Func. Count: 38, Neg. LLF: 159.73767675720677
Iteration: 5, Func. Count: 47, Neg. LLF: 159.73452387880081
Iteration: 6, Func. Count: 56, Neg. LLF: 159.7247480028068
Iteration: 7, Func. Count: 65, Neg. LLF: 159.6772854665982
Iteration: 8, Func. Count: 74, Neg. LLF: 159.67248373260492
Iteration: 9, Func. Count: 83, Neg. LLF: 159.67107030901124
Iteration: 10, Func. Count: 92, Neg. LLF: 159.67010027723956
Iteration: 11, Func. Count: 101, Neg. LLF: 159.66421712282494
Iteration: 12, Func. Count: 110, Neg. LLF: 159.6487278877875
Iteration: 13, Func. Count: 119, Neg. LLF: 159.6477468339486
Iteration: 14, Func. Count: 128, Neg. LLF: 159.6317666770593
Iteration: 15, Func. Count: 137, Neg. LLF: 159.62278909874706
Iteration: 16, Func. Count: 146, Neg. LLF: 159.62107938842635
Iteration: 17, Func. Count: 155, Neg. LLF: 159.62003566203973
Iteration: 18, Func. Count: 164, Neg. LLF: 159.61269306367316
Iteration: 19, Func. Count: 173, Neg. LLF: 159.5833943545143
Iteration: 20, Func. Count: 182, Neg. LLF: 159.58076860716596
Iteration: 21, Func. Count: 197, Neg. LLF: 170.328904267346
Iteration: 22, Func. Count: 208, Neg. LLF: 252.75582977095365
Iteration: 23, Func. Count: 227, Neg. LLF: 159.6090156849329
Iteration: 24, Func. Count: 237, Neg. LLF: 159.62335745293993
Iteration: 25, Func. Count: 247, Neg. LLF: 159.57380463389742
Iteration: 26, Func. Count: 255, Neg. LLF: 159.57380395883123
Optimization terminated successfully (Exit mode 0)
Current function value: 159.57380463389742
Iterations: 27
Function evaluations: 255
Gradient evaluations: 26
Iteration: 1, Func. Count: 7, Neg. LLF: 164.3830579218782
Iteration: 2, Func. Count: 13, Neg. LLF: 162.95323970552633
Iteration: 3, Func. Count: 20, Neg. LLF: 159.45991128282066
Iteration: 4, Func. Count: 26, Neg. LLF: 159.4456380984493
Iteration: 5, Func. Count: 32, Neg. LLF: 159.4347344721074
Iteration: 6, Func. Count: 38, Neg. LLF: 159.4031168900869
Iteration: 7, Func. Count: 44, Neg. LLF: 159.3568179193576
Iteration: 8, Func. Count: 50, Neg. LLF: 159.3205215580365
Iteration: 9, Func. Count: 56, Neg. LLF: 159.31063283711717
Iteration: 10, Func. Count: 62, Neg. LLF: 159.30992782377285
Iteration: 11, Func. Count: 67, Neg. LLF: 159.3099278091134
Optimization terminated successfully (Exit mode 0)
Current function value: 159.30992782377285
Iterations: 11
Function evaluations: 67
Gradient evaluations: 11
Iteration: 1, Func. Count: 8, Neg. LLF: 165.41744096913928
Iteration: 2, Func. Count: 17, Neg. LLF: 163.6786053357333
Iteration: 3, Func. Count: 25, Neg. LLF: 161.9061765237051
Iteration: 4, Func. Count: 32, Neg. LLF: 163.55645571996317
Iteration: 5, Func. Count: 40, Neg. LLF: 159.6879071690431
Iteration: 6, Func. Count: 47, Neg. LLF: 159.63572062646182
Iteration: 7, Func. Count: 54, Neg. LLF: 159.57413730248743
Iteration: 8, Func. Count: 61, Neg. LLF: 159.57392519444926
Iteration: 9, Func. Count: 68, Neg. LLF: 159.57383261222387
Iteration: 10, Func. Count: 75, Neg. LLF: 159.57380520507624
Iteration: 11, Func. Count: 82, Neg. LLF: 159.57380462577953
Optimization terminated successfully (Exit mode 0)
Current function value: 159.57380462577953
Iterations: 11
Function evaluations: 82
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 168.35457912534255
Iteration: 2, Func. Count: 18, Neg. LLF: 160.35599990193248
Iteration: 3, Func. Count: 26, Neg. LLF: 159.99243632893396
Iteration: 4, Func. Count: 34, Neg. LLF: 186.91565874571933
Iteration: 5, Func. Count: 43, Neg. LLF: 159.64383939782746
Iteration: 6, Func. Count: 51, Neg. LLF: 159.63308159398858
Iteration: 7, Func. Count: 59, Neg. LLF: 159.6320515490638
Iteration: 8, Func. Count: 67, Neg. LLF: 159.63173556773899
Iteration: 9, Func. Count: 75, Neg. LLF: 159.6312482022936
Iteration: 10, Func. Count: 83, Neg. LLF: 159.62934129027758
Iteration: 11, Func. Count: 91, Neg. LLF: 159.62703103641334
Iteration: 12, Func. Count: 99, Neg. LLF: 159.61892050481998
Iteration: 13, Func. Count: 107, Neg. LLF: 159.57412314067855
Iteration: 14, Func. Count: 115, Neg. LLF: 159.57397125961234
Iteration: 15, Func. Count: 123, Neg. LLF: 159.574086240487
Iteration: 16, Func. Count: 132, Neg. LLF: 159.57380546138026
Iteration: 17, Func. Count: 140, Neg. LLF: 159.57380592122692
Optimization terminated successfully (Exit mode 0)
Current function value: 159.5738054614179
Iterations: 17
Function evaluations: 150
Gradient evaluations: 17
Iteration: 1, Func. Count: 10, Neg. LLF: 164.29852827906365
Iteration: 2, Func. Count: 20, Neg. LLF: 162.25311532183733
Iteration: 3, Func. Count: 30, Neg. LLF: 159.65910397884304
Iteration: 4, Func. Count: 39, Neg. LLF: 159.54755271910201
Iteration: 5, Func. Count: 48, Neg. LLF: 159.5434332821693
Iteration: 6, Func. Count: 57, Neg. LLF: 159.54292552135536
Iteration: 7, Func. Count: 66, Neg. LLF: 159.5428996044843
Iteration: 8, Func. Count: 74, Neg. LLF: 159.5428998518729
Optimization terminated successfully (Exit mode 0)
Current function value: 159.5428996044843
Iterations: 8
Function evaluations: 74
Gradient evaluations: 8
Iteration: 1, Func. Count: 11, Neg. LLF: 165.23194224221936
Iteration: 2, Func. Count: 22, Neg. LLF: 159.8217866466409
Iteration: 3, Func. Count: 32, Neg. LLF: 159.7545410049855
Iteration: 4, Func. Count: 42, Neg. LLF: 159.7374796745735
Iteration: 5, Func. Count: 52, Neg. LLF: 159.73437996561032
Iteration: 6, Func. Count: 62, Neg. LLF: 159.71641653620696
Iteration: 7, Func. Count: 72, Neg. LLF: 159.67730319389526
Iteration: 8, Func. Count: 82, Neg. LLF: 159.67231867611648
Iteration: 9, Func. Count: 92, Neg. LLF: 159.67150488956145
Iteration: 10, Func. Count: 102, Neg. LLF: 159.6696879418191
Iteration: 11, Func. Count: 112, Neg. LLF: 159.6558966290823
Iteration: 12, Func. Count: 122, Neg. LLF: 159.63862789223413
Iteration: 13, Func. Count: 132, Neg. LLF: 159.63454345092032
Iteration: 14, Func. Count: 142, Neg. LLF: 159.58413561988004
Iteration: 15, Func. Count: 152, Neg. LLF: 159.53075335703628
Iteration: 16, Func. Count: 172, Neg. LLF: 159.7194997996339
Iteration: 17, Func. Count: 192, Neg. LLF: 159.60091719711826
Iteration: 18, Func. Count: 202, Neg. LLF: 159.624303310294
Iteration: 19, Func. Count: 213, Neg. LLF: 161.37499403186115
Iteration: 20, Func. Count: 233, Neg. LLF: 159.62800341821347
Iteration: 21, Func. Count: 244, Neg. LLF: 159.61907852783676
Iteration: 22, Func. Count: 254, Neg. LLF: 159.61655319283253
Iteration: 23, Func. Count: 264, Neg. LLF: 159.59814191701247
Iteration: 24, Func. Count: 274, Neg. LLF: 159.5739525719052
Iteration: 25, Func. Count: 284, Neg. LLF: 159.57396395082452
Iteration: 26, Func. Count: 295, Neg. LLF: 159.57382675573774
Iteration: 27, Func. Count: 305, Neg. LLF: 159.57380449017913
Iteration: 28, Func. Count: 314, Neg. LLF: 159.5738038147983
Optimization terminated successfully (Exit mode 0)
Current function value: 159.57380449017913
Iterations: 30
Function evaluations: 314
Gradient evaluations: 28
Iteration: 1, Func. Count: 8, Neg. LLF: 163.7650071625937
Iteration: 2, Func. Count: 15, Neg. LLF: 164.29740776974856
Iteration: 3, Func. Count: 23, Neg. LLF: 159.45703312327174
Iteration: 4, Func. Count: 30, Neg. LLF: 159.44848399558626
Iteration: 5, Func. Count: 37, Neg. LLF: 159.43495326051482
Iteration: 6, Func. Count: 44, Neg. LLF: 159.3645485948923
Iteration: 7, Func. Count: 51, Neg. LLF: 159.31519528798316
Iteration: 8, Func. Count: 58, Neg. LLF: 159.31026439380605
Iteration: 9, Func. Count: 65, Neg. LLF: 159.30992834972133
Iteration: 10, Func. Count: 72, Neg. LLF: 159.30992760375975
Optimization terminated successfully (Exit mode 0)
Current function value: 159.30992760375975
Iterations: 10
Function evaluations: 72
Gradient evaluations: 10
Iteration: 1, Func. Count: 9, Neg. LLF: 165.5557130857586
Iteration: 2, Func. Count: 19, Neg. LLF: 163.39228164077625
Iteration: 3, Func. Count: 28, Neg. LLF: 161.86986056367482
Iteration: 4, Func. Count: 36, Neg. LLF: 166.44683185385472
Iteration: 5, Func. Count: 45, Neg. LLF: 160.53028901607834
Iteration: 6, Func. Count: 53, Neg. LLF: 160.92144961843982
Iteration: 7, Func. Count: 62, Neg. LLF: 159.64080685083232
Iteration: 8, Func. Count: 70, Neg. LLF: 159.5742439651151
Iteration: 9, Func. Count: 78, Neg. LLF: 159.5738124119684
Iteration: 10, Func. Count: 86, Neg. LLF: 159.57380462008288
Iteration: 11, Func. Count: 93, Neg. LLF: 159.5738053065984
Optimization terminated successfully (Exit mode 0)
Current function value: 159.57380462008288
Iterations: 11
Function evaluations: 93
Gradient evaluations: 11
Iteration: 1, Func. Count: 10, Neg. LLF: 168.38583317174673
Iteration: 2, Func. Count: 20, Neg. LLF: 160.34815693900848
Iteration: 3, Func. Count: 29, Neg. LLF: 159.96448158801815
Iteration: 4, Func. Count: 38, Neg. LLF: 187.91358941912944
Iteration: 5, Func. Count: 48, Neg. LLF: 159.6480408199967
Iteration: 6, Func. Count: 57, Neg. LLF: 159.63364245812846
Iteration: 7, Func. Count: 66, Neg. LLF: 159.63227435267083
Iteration: 8, Func. Count: 75, Neg. LLF: 159.63188287187143
Iteration: 9, Func. Count: 84, Neg. LLF: 159.6314680592311
Iteration: 10, Func. Count: 93, Neg. LLF: 159.6297728506937
Iteration: 11, Func. Count: 102, Neg. LLF: 159.6275840883375
Iteration: 12, Func. Count: 111, Neg. LLF: 159.6224220014396
Iteration: 13, Func. Count: 120, Neg. LLF: 159.5752154021056
Iteration: 14, Func. Count: 129, Neg. LLF: 159.57381919890662
Iteration: 15, Func. Count: 138, Neg. LLF: 159.57381468991426
Iteration: 16, Func. Count: 147, Neg. LLF: 159.5738184264933
Iteration: 17, Func. Count: 157, Neg. LLF: 159.57380462064302
Iteration: 18, Func. Count: 166, Neg. LLF: 159.57380463840778
Optimization terminated successfully (Exit mode 0)
Current function value: 159.57380462064495
Iterations: 18
Function evaluations: 176
Gradient evaluations: 18
Iteration: 1, Func. Count: 11, Neg. LLF: 164.20495240711924
Iteration: 2, Func. Count: 22, Neg. LLF: 163.70983505431704
Iteration: 3, Func. Count: 33, Neg. LLF: 159.63720530692217
Iteration: 4, Func. Count: 43, Neg. LLF: 159.50609710590842
Iteration: 5, Func. Count: 53, Neg. LLF: 164.62338741607613
Iteration: 6, Func. Count: 64, Neg. LLF: 159.19207336955418
Iteration: 7, Func. Count: 75, Neg. LLF: 158.43613943162873
Iteration: 8, Func. Count: 85, Neg. LLF: 158.62716877854703
Iteration: 9, Func. Count: 96, Neg. LLF: 158.24005740827556
Iteration: 10, Func. Count: 106, Neg. LLF: 158.2343422813034
Iteration: 11, Func. Count: 116, Neg. LLF: 158.2323170822628
Iteration: 12, Func. Count: 126, Neg. LLF: 158.2312424393813
Iteration: 13, Func. Count: 136, Neg. LLF: 158.2307030659327
Iteration: 14, Func. Count: 146, Neg. LLF: 158.23067890645257
Iteration: 15, Func. Count: 156, Neg. LLF: 158.23067833659258
Optimization terminated successfully (Exit mode 0)
Current function value: 158.23067833659258
Iterations: 15
Function evaluations: 156
Gradient evaluations: 15
Iteration: 1, Func. Count: 12, Neg. LLF: 165.37597517533075
Iteration: 2, Func. Count: 24, Neg. LLF: 159.8244241643298
Iteration: 3, Func. Count: 35, Neg. LLF: 159.75586996636102
Iteration: 4, Func. Count: 46, Neg. LLF: 159.7376093877521
Iteration: 5, Func. Count: 57, Neg. LLF: 159.73412888118563
Iteration: 6, Func. Count: 68, Neg. LLF: 159.71922615703892
Iteration: 7, Func. Count: 79, Neg. LLF: 159.67647011029635
Iteration: 8, Func. Count: 90, Neg. LLF: 159.67190624391213
Iteration: 9, Func. Count: 101, Neg. LLF: 159.6710875371845
Iteration: 10, Func. Count: 112, Neg. LLF: 159.66943393092674
Iteration: 11, Func. Count: 123, Neg. LLF: 159.6585257861851
Iteration: 12, Func. Count: 134, Neg. LLF: 159.64229122288805
Iteration: 13, Func. Count: 145, Neg. LLF: 159.63632815174296
Iteration: 14, Func. Count: 156, Neg. LLF: 159.60248129295556
Iteration: 15, Func. Count: 167, Neg. LLF: 159.58679989037134
Iteration: 16, Func. Count: 188, Neg. LLF: 159.6254576772942
Iteration: 17, Func. Count: 199, Neg. LLF: 159.62182092497352
Iteration: 18, Func. Count: 210, Neg. LLF: 159.62084022145336
Iteration: 19, Func. Count: 221, Neg. LLF: 159.6005397330596
Iteration: 20, Func. Count: 232, Neg. LLF: 273.6646020631892
Iteration: 21, Func. Count: 247, Neg. LLF: 424.29676439952203
Iteration: 22, Func. Count: 268, Neg. LLF: 160.395673417527
Iteration: 23, Func. Count: 280, Neg. LLF: 159.59714345074775
Iteration: 24, Func. Count: 292, Neg. LLF: 159.5738108746915
Iteration: 25, Func. Count: 303, Neg. LLF: 159.57380467570988
Iteration: 26, Func. Count: 313, Neg. LLF: 159.57380400009376
Optimization terminated successfully (Exit mode 0)
Current function value: 159.57380467570988
Iterations: 27
Function evaluations: 313
Gradient evaluations: 26
Iteration: 1, Func. Count: 9, Neg. LLF: 163.30615804733296
Iteration: 2, Func. Count: 17, Neg. LLF: 165.08502141161753
Iteration: 3, Func. Count: 26, Neg. LLF: 159.4582871871052
Iteration: 4, Func. Count: 34, Neg. LLF: 159.4500246344875
Iteration: 5, Func. Count: 42, Neg. LLF: 159.43022023500893
Iteration: 6, Func. Count: 50, Neg. LLF: 159.3476939226746
Iteration: 7, Func. Count: 58, Neg. LLF: 159.3163874465757
Iteration: 8, Func. Count: 66, Neg. LLF: 159.31003003834832
Iteration: 9, Func. Count: 74, Neg. LLF: 159.30992824167683
Iteration: 10, Func. Count: 82, Neg. LLF: 159.3099276012177
Optimization terminated successfully (Exit mode 0)
Current function value: 159.3099276012177
Iterations: 10
Function evaluations: 82
Gradient evaluations: 10
Iteration: 1, Func. Count: 10, Neg. LLF: 165.57082884368566
Iteration: 2, Func. Count: 20, Neg. LLF: 162.59095926595938
Iteration: 3, Func. Count: 29, Neg. LLF: 160.4310654108339
Iteration: 4, Func. Count: 38, Neg. LLF: 216.97348469180608
Iteration: 5, Func. Count: 50, Neg. LLF: 159.6413753856452
Iteration: 6, Func. Count: 59, Neg. LLF: 159.5913346789855
Iteration: 7, Func. Count: 68, Neg. LLF: 159.57434431844035
Iteration: 8, Func. Count: 77, Neg. LLF: 159.57380609845532
Iteration: 9, Func. Count: 86, Neg. LLF: 159.57380463291642
Iteration: 10, Func. Count: 94, Neg. LLF: 159.57380531909223
Optimization terminated successfully (Exit mode 0)
Current function value: 159.57380463291642
Iterations: 10
Function evaluations: 94
Gradient evaluations: 10
Iteration: 1, Func. Count: 11, Neg. LLF: 168.36954593876544
Iteration: 2, Func. Count: 22, Neg. LLF: 160.34997429072732
Iteration: 3, Func. Count: 32, Neg. LLF: 159.96419390624058
Iteration: 4, Func. Count: 42, Neg. LLF: 187.4206973774365
Iteration: 5, Func. Count: 53, Neg. LLF: 159.6483113141997
Iteration: 6, Func. Count: 63, Neg. LLF: 159.63374531621878
Iteration: 7, Func. Count: 73, Neg. LLF: 159.63233856716738
Iteration: 8, Func. Count: 83, Neg. LLF: 159.63193329815888
Iteration: 9, Func. Count: 93, Neg. LLF: 159.63151759024203
Iteration: 10, Func. Count: 103, Neg. LLF: 159.6298258957261
Iteration: 11, Func. Count: 113, Neg. LLF: 159.62765852461146
Iteration: 12, Func. Count: 123, Neg. LLF: 159.62276166477986
Iteration: 13, Func. Count: 133, Neg. LLF: 159.575799298194
Iteration: 14, Func. Count: 143, Neg. LLF: 159.57384219953775
Iteration: 15, Func. Count: 153, Neg. LLF: 159.57387971324843
Iteration: 16, Func. Count: 164, Neg. LLF: 159.5738299998707
Iteration: 17, Func. Count: 174, Neg. LLF: 159.57380526760556
Iteration: 18, Func. Count: 184, Neg. LLF: 159.5738045336927
Optimization terminated successfully (Exit mode 0)
Current function value: 159.57380521972223
Iterations: 18
Function evaluations: 186
Gradient evaluations: 18
Iteration: 1, Func. Count: 12, Neg. LLF: 164.24090636430762
Iteration: 2, Func. Count: 24, Neg. LLF: 162.86576535448464
Iteration: 3, Func. Count: 36, Neg. LLF: 159.6630143153006
Iteration: 4, Func. Count: 47, Neg. LLF: 159.46050810911154
Iteration: 5, Func. Count: 58, Neg. LLF: 167.8597791235649
Iteration: 6, Func. Count: 71, Neg. LLF: 158.92099776308268
Iteration: 7, Func. Count: 82, Neg. LLF: 158.42597513328107
Iteration: 8, Func. Count: 93, Neg. LLF: 158.28484792533558
Iteration: 9, Func. Count: 104, Neg. LLF: 158.25491444468545
Iteration: 10, Func. Count: 115, Neg. LLF: 158.24594488175075
Iteration: 11, Func. Count: 126, Neg. LLF: 158.2352380118454
Iteration: 12, Func. Count: 137, Neg. LLF: 158.2308398305834
Iteration: 13, Func. Count: 148, Neg. LLF: 158.23067887108846
Iteration: 14, Func. Count: 159, Neg. LLF: 158.23067745017133
Iteration: 15, Func. Count: 170, Neg. LLF: 158.23069521073762
Optimization terminated successfully (Exit mode 0)
Current function value: 158.2306774215327
Iterations: 16
Function evaluations: 172
Gradient evaluations: 15
Iteration: 1, Func. Count: 13, Neg. LLF: 165.59170239516072
Iteration: 2, Func. Count: 26, Neg. LLF: 159.8244314662032
Iteration: 3, Func. Count: 38, Neg. LLF: 159.75670757811437
Iteration: 4, Func. Count: 50, Neg. LLF: 159.7377113972562
Iteration: 5, Func. Count: 62, Neg. LLF: 159.73414994198066
Iteration: 6, Func. Count: 74, Neg. LLF: 159.72291944813153
Iteration: 7, Func. Count: 86, Neg. LLF: 159.6767560704988
Iteration: 8, Func. Count: 98, Neg. LLF: 159.67190477060345
Iteration: 9, Func. Count: 110, Neg. LLF: 159.6706666738829
Iteration: 10, Func. Count: 122, Neg. LLF: 159.6694882946263
Iteration: 11, Func. Count: 134, Neg. LLF: 159.66233058552595
Iteration: 12, Func. Count: 146, Neg. LLF: 159.6484131815329
Iteration: 13, Func. Count: 158, Neg. LLF: 159.6936946267847
Iteration: 14, Func. Count: 171, Neg. LLF: 159.62684777402617
Iteration: 15, Func. Count: 183, Neg. LLF: 159.62275360109513
Iteration: 16, Func. Count: 195, Neg. LLF: 159.60269411968585
Iteration: 17, Func. Count: 217, Neg. LLF: 159.58726206445016
Iteration: 18, Func. Count: 239, Neg. LLF: 159.58070211281978
Iteration: 19, Func. Count: 261, Neg. LLF: 159.60218888256279
Iteration: 20, Func. Count: 283, Neg. LLF: 159.61246672226596
Iteration: 21, Func. Count: 296, Neg. LLF: 159.62075894729514
Iteration: 22, Func. Count: 308, Neg. LLF: 159.58298498429374
Iteration: 23, Func. Count: 326, Neg. LLF: 159.61712789619725
Iteration: 24, Func. Count: 338, Neg. LLF: 159.60644426307096
Iteration: 25, Func. Count: 350, Neg. LLF: 161.41842550183136
Iteration: 26, Func. Count: 367, Neg. LLF: 159.5997499381955
Iteration: 27, Func. Count: 379, Neg. LLF: 176.4332592990552
Iteration: 28, Func. Count: 401, Neg. LLF: 170.69129279039464
Iteration: 29, Func. Count: 415, Neg. LLF: 233.33334448829868
Iteration: 30, Func. Count: 437, Neg. LLF: 364.2864381316185
Iteration: 31, Func. Count: 459, Neg. LLF: 241.51691488397964
Iteration: 32, Func. Count: 481, Neg. LLF: 345.482025554112
Iteration: 33, Func. Count: 503, Neg. LLF: 168.52726125555319
Iteration: 34, Func. Count: 525, Neg. LLF: 159.58091850969421
Iteration: 35, Func. Count: 537, Neg. LLF: 159.57980810453506
Iteration: 36, Func. Count: 549, Neg. LLF: 159.58070546522865
Iteration: 37, Func. Count: 562, Neg. LLF: 159.57381519295976
Iteration: 38, Func. Count: 574, Neg. LLF: 159.57380462030437
Iteration: 39, Func. Count: 585, Neg. LLF: 159.57380394525342
Optimization terminated successfully (Exit mode 0)
Current function value: 159.57380462030437
Iterations: 40
Function evaluations: 585
Gradient evaluations: 39
Iteration: 1, Func. Count: 6, Neg. LLF: 164.72249837250448
Iteration: 2, Func. Count: 11, Neg. LLF: 166.29121176468794
Iteration: 3, Func. Count: 17, Neg. LLF: 163.69369551687407
Iteration: 4, Func. Count: 22, Neg. LLF: 163.69307428985454
Iteration: 5, Func. Count: 27, Neg. LLF: 163.6921237365447
Iteration: 6, Func. Count: 32, Neg. LLF: 163.6896240730753
Iteration: 7, Func. Count: 37, Neg. LLF: 163.68635009405864
Iteration: 8, Func. Count: 42, Neg. LLF: 163.68353536525066
Iteration: 9, Func. Count: 47, Neg. LLF: 163.68272939041864
Iteration: 10, Func. Count: 52, Neg. LLF: 163.6826662930923
Iteration: 11, Func. Count: 57, Neg. LLF: 163.6826636458436
Iteration: 12, Func. Count: 61, Neg. LLF: 163.68266364584366
Optimization terminated successfully (Exit mode 0)
Current function value: 163.6826636458436
Iterations: 12
Function evaluations: 61
Gradient evaluations: 12
Iteration: 1, Func. Count: 7, Neg. LLF: 173.8740173840937
Iteration: 2, Func. Count: 14, Neg. LLF: 183.41685478039244
Iteration: 3, Func. Count: 23, Neg. LLF: 162.2593409114367
Iteration: 4, Func. Count: 29, Neg. LLF: 161.03413157058165
Iteration: 5, Func. Count: 35, Neg. LLF: 160.9010813243848
Iteration: 6, Func. Count: 42, Neg. LLF: 159.6291373713518
Iteration: 7, Func. Count: 48, Neg. LLF: 159.79914323376832
Iteration: 8, Func. Count: 55, Neg. LLF: 159.5739099307619
Iteration: 9, Func. Count: 61, Neg. LLF: 159.57380485172615
Iteration: 10, Func. Count: 66, Neg. LLF: 159.5738055370095
Optimization terminated successfully (Exit mode 0)
Current function value: 159.57380485172615
Iterations: 10
Function evaluations: 66
Gradient evaluations: 10
Iteration: 1, Func. Count: 8, Neg. LLF: 167.40452883686294
Iteration: 2, Func. Count: 16, Neg. LLF: 168.80133619499506
Iteration: 3, Func. Count: 25, Neg. LLF: 160.06919763291344
Iteration: 4, Func. Count: 32, Neg. LLF: 159.54337975211652
Iteration: 5, Func. Count: 39, Neg. LLF: 159.49437834421943
Iteration: 6, Func. Count: 46, Neg. LLF: 159.48899909073464
Iteration: 7, Func. Count: 53, Neg. LLF: 159.48848332870526
Iteration: 8, Func. Count: 60, Neg. LLF: 159.48842730548216
Iteration: 9, Func. Count: 67, Neg. LLF: 159.48840956079516
Iteration: 10, Func. Count: 74, Neg. LLF: 159.48841476569737
Optimization terminated successfully (Exit mode 0)
Current function value: 159.4884095661945
Iterations: 10
Function evaluations: 84
Gradient evaluations: 10
Iteration: 1, Func. Count: 9, Neg. LLF: 164.76089067481644
Iteration: 2, Func. Count: 18, Neg. LLF: 159.89550790877138
Iteration: 3, Func. Count: 26, Neg. LLF: 159.69778791672857
Iteration: 4, Func. Count: 34, Neg. LLF: 159.55278946828105
Iteration: 5, Func. Count: 42, Neg. LLF: 159.54419121799305
Iteration: 6, Func. Count: 50, Neg. LLF: 159.54290354249665
Iteration: 7, Func. Count: 58, Neg. LLF: 159.5428996513289
Iteration: 8, Func. Count: 65, Neg. LLF: 159.5428998988491
Optimization terminated successfully (Exit mode 0)
Current function value: 159.5428996513289
Iterations: 8
Function evaluations: 65
Gradient evaluations: 8
Iteration: 1, Func. Count: 10, Neg. LLF: 166.27052064639105
Iteration: 2, Func. Count: 20, Neg. LLF: 159.82830681054347
Iteration: 3, Func. Count: 29, Neg. LLF: 159.7798114089032
Iteration: 4, Func. Count: 38, Neg. LLF: 159.73908252703137
Iteration: 5, Func. Count: 47, Neg. LLF: 159.73552973266118
Iteration: 6, Func. Count: 56, Neg. LLF: 159.73308025164718
Iteration: 7, Func. Count: 65, Neg. LLF: 159.7054653220152
Iteration: 8, Func. Count: 74, Neg. LLF: 159.66866825868345
Iteration: 9, Func. Count: 83, Neg. LLF: 159.6672757101773
Iteration: 10, Func. Count: 92, Neg. LLF: 159.6531629197506
Iteration: 11, Func. Count: 101, Neg. LLF: 159.62911157742522
Iteration: 12, Func. Count: 110, Neg. LLF: 159.62419164183692
Iteration: 13, Func. Count: 119, Neg. LLF: 159.61992860981843
Iteration: 14, Func. Count: 128, Neg. LLF: 159.54899708288383
Iteration: 15, Func. Count: 147, Neg. LLF: 159.5474387465549
Iteration: 16, Func. Count: 166, Neg. LLF: 159.6669150438934
Iteration: 17, Func. Count: 185, Neg. LLF: 161.04063084570842
Iteration: 18, Func. Count: 204, Neg. LLF: 159.61939292184144
Iteration: 19, Func. Count: 213, Neg. LLF: 159.61590993112054
Iteration: 20, Func. Count: 222, Neg. LLF: 159.57927714226656
Iteration: 21, Func. Count: 231, Neg. LLF: 159.5739083490587
Iteration: 22, Func. Count: 240, Neg. LLF: 159.5738104690199
Iteration: 23, Func. Count: 249, Neg. LLF: 159.57380461017362
Iteration: 24, Func. Count: 257, Neg. LLF: 159.57380393489657
Optimization terminated successfully (Exit mode 0)
Current function value: 159.57380461017362
Iterations: 25
Function evaluations: 257
Gradient evaluations: 24
Iteration: 1, Func. Count: 7, Neg. LLF: 166.84426267289666
Iteration: 2, Func. Count: 14, Neg. LLF: 163.79138676026338
Iteration: 3, Func. Count: 21, Neg. LLF: 163.259389184702
Iteration: 4, Func. Count: 27, Neg. LLF: 163.21179611162094
Iteration: 5, Func. Count: 33, Neg. LLF: 163.18998449649888
Iteration: 6, Func. Count: 39, Neg. LLF: 163.44382145448256
Iteration: 7, Func. Count: 46, Neg. LLF: 163.52113182250903
Iteration: 8, Func. Count: 53, Neg. LLF: 163.1754658768967
Iteration: 9, Func. Count: 59, Neg. LLF: 163.17323303840388
Iteration: 10, Func. Count: 65, Neg. LLF: 163.1724319855289
Iteration: 11, Func. Count: 71, Neg. LLF: 163.17039528321135
Iteration: 12, Func. Count: 77, Neg. LLF: 163.1619182319609
Iteration: 13, Func. Count: 83, Neg. LLF: 163.15162019076786
Iteration: 14, Func. Count: 89, Neg. LLF: 163.141166020859
Iteration: 15, Func. Count: 95, Neg. LLF: 163.11471457008446
Iteration: 16, Func. Count: 101, Neg. LLF: 163.11363896745692
Iteration: 17, Func. Count: 107, Neg. LLF: 163.1126978391152
Iteration: 18, Func. Count: 113, Neg. LLF: 163.11265293279718
Iteration: 19, Func. Count: 119, Neg. LLF: 163.11265020972036
Iteration: 20, Func. Count: 124, Neg. LLF: 163.11265020598415
Optimization terminated successfully (Exit mode 0)
Current function value: 163.11265020972036
Iterations: 20
Function evaluations: 124
Gradient evaluations: 20
Iteration: 1, Func. Count: 8, Neg. LLF: 169.5315273893928
Iteration: 2, Func. Count: 18, Neg. LLF: 176.15505224396054
Iteration: 3, Func. Count: 26, Neg. LLF: 161.95438589330016
Iteration: 4, Func. Count: 33, Neg. LLF: 162.05554579055683
Iteration: 5, Func. Count: 41, Neg. LLF: 160.11083668298502
Iteration: 6, Func. Count: 48, Neg. LLF: 159.98496450707975
Iteration: 7, Func. Count: 56, Neg. LLF: 159.57654531729838
Iteration: 8, Func. Count: 63, Neg. LLF: 159.5739317363331
Iteration: 9, Func. Count: 70, Neg. LLF: 159.57380554617316
Iteration: 10, Func. Count: 77, Neg. LLF: 159.57380462032117
Optimization terminated successfully (Exit mode 0)
Current function value: 159.57380462032117
Iterations: 10
Function evaluations: 77
Gradient evaluations: 10
Iteration: 1, Func. Count: 9, Neg. LLF: 167.70332920038928
Iteration: 2, Func. Count: 18, Neg. LLF: 172.94098008748475
Iteration: 3, Func. Count: 28, Neg. LLF: 160.30990301369857
Iteration: 4, Func. Count: 36, Neg. LLF: 159.90765422835324
Iteration: 5, Func. Count: 44, Neg. LLF: 162.2736682269188
Iteration: 6, Func. Count: 53, Neg. LLF: 159.66292223766183
Iteration: 7, Func. Count: 61, Neg. LLF: 159.6343953408094
Iteration: 8, Func. Count: 69, Neg. LLF: 159.6314769490827
Iteration: 9, Func. Count: 77, Neg. LLF: 159.63079728699222
Iteration: 10, Func. Count: 85, Neg. LLF: 159.63062699258447
Iteration: 11, Func. Count: 93, Neg. LLF: 159.62978223519295
Iteration: 12, Func. Count: 101, Neg. LLF: 159.62724041693215
Iteration: 13, Func. Count: 109, Neg. LLF: 159.62130121321402
Iteration: 14, Func. Count: 117, Neg. LLF: 159.57387485810585
Iteration: 15, Func. Count: 125, Neg. LLF: 159.5738304421373
Iteration: 16, Func. Count: 133, Neg. LLF: 159.57380677717146
Iteration: 17, Func. Count: 141, Neg. LLF: 159.5738047106956
Iteration: 18, Func. Count: 148, Neg. LLF: 159.57380402586213
Optimization terminated successfully (Exit mode 0)
Current function value: 159.5738047106956
Iterations: 18
Function evaluations: 148
Gradient evaluations: 18
Iteration: 1, Func. Count: 10, Neg. LLF: 164.8818019459848
Iteration: 2, Func. Count: 20, Neg. LLF: 159.87309927511467
Iteration: 3, Func. Count: 29, Neg. LLF: 160.00710578169154
Iteration: 4, Func. Count: 39, Neg. LLF: 160.82208905027838
Iteration: 5, Func. Count: 49, Neg. LLF: 159.63819041131921
Iteration: 6, Func. Count: 58, Neg. LLF: 159.58887834783945
Iteration: 7, Func. Count: 67, Neg. LLF: 159.5437170994972
Iteration: 8, Func. Count: 76, Neg. LLF: 159.54337740275517
Iteration: 9, Func. Count: 85, Neg. LLF: 159.5429679034564
Iteration: 10, Func. Count: 94, Neg. LLF: 159.5429834105651
Iteration: 11, Func. Count: 103, Neg. LLF: 159.54286422974775
Iteration: 12, Func. Count: 112, Neg. LLF: 159.54289989060146
Iteration: 13, Func. Count: 120, Neg. LLF: 159.54290013845153
Optimization terminated successfully (Exit mode 0)
Current function value: 159.54289989060146
Iterations: 14
Function evaluations: 120
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 166.31736135638482
Iteration: 2, Func. Count: 22, Neg. LLF: 159.8033602369253
Iteration: 3, Func. Count: 32, Neg. LLF: 159.75813503600125
Iteration: 4, Func. Count: 42, Neg. LLF: 159.73756405254417
Iteration: 5, Func. Count: 52, Neg. LLF: 159.73689447515287
Iteration: 6, Func. Count: 62, Neg. LLF: 159.73660563010796
Iteration: 7, Func. Count: 72, Neg. LLF: 159.73080147048023
Iteration: 8, Func. Count: 82, Neg. LLF: 159.71407627762278
Iteration: 9, Func. Count: 92, Neg. LLF: 159.6625534627565
Iteration: 10, Func. Count: 102, Neg. LLF: 159.65017156845994
Iteration: 11, Func. Count: 112, Neg. LLF: 159.63062139544215
Iteration: 12, Func. Count: 122, Neg. LLF: 159.61328130913117
Iteration: 13, Func. Count: 132, Neg. LLF: 159.59020565115392
Iteration: 14, Func. Count: 142, Neg. LLF: 159.58827975140454
Iteration: 15, Func. Count: 152, Neg. LLF: 159.57682829331966
Iteration: 16, Func. Count: 162, Neg. LLF: 159.5738310687981
Iteration: 17, Func. Count: 172, Neg. LLF: 159.57380644960844
Iteration: 18, Func. Count: 182, Neg. LLF: 159.5741179850764
Iteration: 19, Func. Count: 193, Neg. LLF: 159.57380478080194
Optimization terminated successfully (Exit mode 0)
Current function value: 159.57380478080194
Iterations: 20
Function evaluations: 193
Gradient evaluations: 19
Iteration: 1, Func. Count: 8, Neg. LLF: 167.13231063497594
Iteration: 2, Func. Count: 16, Neg. LLF: 163.9579951148623
Iteration: 3, Func. Count: 24, Neg. LLF: 159.7638708533646
Iteration: 4, Func. Count: 31, Neg. LLF: 159.6454706640379
Iteration: 5, Func. Count: 38, Neg. LLF: 163.13778099237263
Iteration: 6, Func. Count: 46, Neg. LLF: 159.4120048593559
Iteration: 7, Func. Count: 53, Neg. LLF: 159.38870055282246
Iteration: 8, Func. Count: 60, Neg. LLF: 159.37993910490923
Iteration: 9, Func. Count: 67, Neg. LLF: 159.36902396435843
Iteration: 10, Func. Count: 74, Neg. LLF: 159.352338602604
Iteration: 11, Func. Count: 81, Neg. LLF: 159.32250011305365
Iteration: 12, Func. Count: 88, Neg. LLF: 159.2791276930186
Iteration: 13, Func. Count: 95, Neg. LLF: 159.26741428225964
Iteration: 14, Func. Count: 102, Neg. LLF: 159.26567752348313
Iteration: 15, Func. Count: 109, Neg. LLF: 159.26559500004308
Iteration: 16, Func. Count: 116, Neg. LLF: 159.26559346522313
Iteration: 17, Func. Count: 122, Neg. LLF: 159.26559344968098
Optimization terminated successfully (Exit mode 0)
Current function value: 159.26559346522313
Iterations: 17
Function evaluations: 122
Gradient evaluations: 17
Iteration: 1, Func. Count: 9, Neg. LLF: 178.2526345174094
Iteration: 2, Func. Count: 20, Neg. LLF: 174.43878220280322
Iteration: 3, Func. Count: 29, Neg. LLF: 162.76087824903183
Iteration: 4, Func. Count: 38, Neg. LLF: 162.2462679705533
Iteration: 5, Func. Count: 47, Neg. LLF: 160.908683897449
Iteration: 6, Func. Count: 55, Neg. LLF: 237.43284670040745
Iteration: 7, Func. Count: 64, Neg. LLF: 159.99655511061152
Iteration: 8, Func. Count: 72, Neg. LLF: 159.69838486294924
Iteration: 9, Func. Count: 80, Neg. LLF: 159.58065000570704
Iteration: 10, Func. Count: 88, Neg. LLF: 159.5740214995222
Iteration: 11, Func. Count: 96, Neg. LLF: 159.573805121565
Iteration: 12, Func. Count: 104, Neg. LLF: 159.57380461969456
Optimization terminated successfully (Exit mode 0)
Current function value: 159.57380461969456
Iterations: 12
Function evaluations: 104
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 169.5613783752212
Iteration: 2, Func. Count: 22, Neg. LLF: 167.19609295099914
Iteration: 3, Func. Count: 32, Neg. LLF: 160.46355015510377
Iteration: 4, Func. Count: 41, Neg. LLF: 159.4294592883589
Iteration: 5, Func. Count: 50, Neg. LLF: 159.023848073979
Iteration: 6, Func. Count: 59, Neg. LLF: 159.83178501231063
Iteration: 7, Func. Count: 69, Neg. LLF: 159.0616649578979
Iteration: 8, Func. Count: 79, Neg. LLF: 159.01796767941013
Iteration: 9, Func. Count: 88, Neg. LLF: 159.01783597242692
Iteration: 10, Func. Count: 97, Neg. LLF: 159.01783269764275
Iteration: 11, Func. Count: 105, Neg. LLF: 159.01783228235558
Optimization terminated successfully (Exit mode 0)
Current function value: 159.01783269764275
Iterations: 12
Function evaluations: 105
Gradient evaluations: 11
Iteration: 1, Func. Count: 11, Neg. LLF: 164.8438889493972
Iteration: 2, Func. Count: 22, Neg. LLF: 159.87437407681114
Iteration: 3, Func. Count: 32, Neg. LLF: 160.02421105995492
Iteration: 4, Func. Count: 43, Neg. LLF: 160.83500522002865
Iteration: 5, Func. Count: 54, Neg. LLF: 159.64271088509298
Iteration: 6, Func. Count: 64, Neg. LLF: 159.57141957198874
Iteration: 7, Func. Count: 74, Neg. LLF: 159.54374231786136
Iteration: 8, Func. Count: 84, Neg. LLF: 159.54302365120594
Iteration: 9, Func. Count: 94, Neg. LLF: 159.54283611376437
Iteration: 10, Func. Count: 104, Neg. LLF: 159.54290120816103
Iteration: 11, Func. Count: 114, Neg. LLF: 159.5428998319588
Optimization terminated successfully (Exit mode 0)
Current function value: 159.5429011888887
Iterations: 11
Function evaluations: 118
Gradient evaluations: 11
Iteration: 1, Func. Count: 12, Neg. LLF: 165.76631450005218
Iteration: 2, Func. Count: 24, Neg. LLF: 159.80288555142107
Iteration: 3, Func. Count: 35, Neg. LLF: 159.75480522952986
Iteration: 4, Func. Count: 46, Neg. LLF: 159.7373684046099
Iteration: 5, Func. Count: 57, Neg. LLF: 159.73690199447216
Iteration: 6, Func. Count: 68, Neg. LLF: 159.73670596332812
Iteration: 7, Func. Count: 79, Neg. LLF: 159.73181162725862
Iteration: 8, Func. Count: 90, Neg. LLF: 159.70392446320102
Iteration: 9, Func. Count: 101, Neg. LLF: 159.6741429083
Iteration: 10, Func. Count: 112, Neg. LLF: 159.65372396338148
Iteration: 11, Func. Count: 123, Neg. LLF: 159.63996465152817
Iteration: 12, Func. Count: 134, Neg. LLF: 159.62648602941343
Iteration: 13, Func. Count: 145, Neg. LLF: 159.59421585883587
Iteration: 14, Func. Count: 156, Neg. LLF: 159.59239654554804
Iteration: 15, Func. Count: 167, Neg. LLF: 159.5825277261927
Iteration: 16, Func. Count: 178, Neg. LLF: 159.57380984677192
Iteration: 17, Func. Count: 189, Neg. LLF: 159.57444490299224
Iteration: 18, Func. Count: 201, Neg. LLF: 159.57380524869848
Iteration: 19, Func. Count: 212, Neg. LLF: 159.57380462008717
Optimization terminated successfully (Exit mode 0)
Current function value: 159.57380462008717
Iterations: 20
Function evaluations: 212
Gradient evaluations: 19
Iteration: 1, Func. Count: 9, Neg. LLF: 166.5462918799139
Iteration: 2, Func. Count: 18, Neg. LLF: 164.98824126146008
Iteration: 3, Func. Count: 27, Neg. LLF: 159.835495842366
Iteration: 4, Func. Count: 35, Neg. LLF: 159.78572280677272
Iteration: 5, Func. Count: 44, Neg. LLF: 161.39555274521524
Iteration: 6, Func. Count: 53, Neg. LLF: 159.41207437181035
Iteration: 7, Func. Count: 61, Neg. LLF: 159.3949091138109
Iteration: 8, Func. Count: 69, Neg. LLF: 159.37903914259667
Iteration: 9, Func. Count: 77, Neg. LLF: 159.37144990001738
Iteration: 10, Func. Count: 85, Neg. LLF: 159.35364445244338
Iteration: 11, Func. Count: 93, Neg. LLF: 159.31520184919708
Iteration: 12, Func. Count: 101, Neg. LLF: 159.27188149130902
Iteration: 13, Func. Count: 109, Neg. LLF: 159.26667332616455
Iteration: 14, Func. Count: 117, Neg. LLF: 159.2656553538229
Iteration: 15, Func. Count: 125, Neg. LLF: 159.2655942470098
Iteration: 16, Func. Count: 133, Neg. LLF: 159.26559346641397
Optimization terminated successfully (Exit mode 0)
Current function value: 159.26559346641397
Iterations: 16
Function evaluations: 133
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 177.7393694019448
Iteration: 2, Func. Count: 22, Neg. LLF: 174.47934668461224
Iteration: 3, Func. Count: 32, Neg. LLF: 162.75020711281093
Iteration: 4, Func. Count: 42, Neg. LLF: 162.22775492057195
Iteration: 5, Func. Count: 52, Neg. LLF: 160.8704722373284
Iteration: 6, Func. Count: 61, Neg. LLF: 253.71849390504116
Iteration: 7, Func. Count: 71, Neg. LLF: 160.05190063657724
Iteration: 8, Func. Count: 80, Neg. LLF: 159.72203610024874
Iteration: 9, Func. Count: 89, Neg. LLF: 159.58776104240116
Iteration: 10, Func. Count: 98, Neg. LLF: 159.57406895372526
Iteration: 11, Func. Count: 107, Neg. LLF: 159.57380525720802
Iteration: 12, Func. Count: 116, Neg. LLF: 159.57380461906064
Optimization terminated successfully (Exit mode 0)
Current function value: 159.57380461906064
Iterations: 12
Function evaluations: 116
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 169.52925779743904
Iteration: 2, Func. Count: 24, Neg. LLF: 167.2359350253717
Iteration: 3, Func. Count: 35, Neg. LLF: 160.4636550961152
Iteration: 4, Func. Count: 45, Neg. LLF: 159.31881448709768
Iteration: 5, Func. Count: 55, Neg. LLF: 159.02049341143365
Iteration: 6, Func. Count: 65, Neg. LLF: 159.01425778490426
Iteration: 7, Func. Count: 76, Neg. LLF: 159.02790371595432
Iteration: 8, Func. Count: 87, Neg. LLF: 159.07542498434876
Iteration: 9, Func. Count: 98, Neg. LLF: 159.01783350395453
Iteration: 10, Func. Count: 108, Neg. LLF: 159.0178357350783
Optimization terminated successfully (Exit mode 0)
Current function value: 159.01783268218009
Iterations: 11
Function evaluations: 109
Gradient evaluations: 10
Iteration: 1, Func. Count: 12, Neg. LLF: 164.7400428373163
Iteration: 2, Func. Count: 24, Neg. LLF: 159.8781278532526
Iteration: 3, Func. Count: 35, Neg. LLF: 160.14280909678246
Iteration: 4, Func. Count: 47, Neg. LLF: 162.03335135051896
Iteration: 5, Func. Count: 59, Neg. LLF: 159.65697953669925
Iteration: 6, Func. Count: 70, Neg. LLF: 159.4794580689171
Iteration: 7, Func. Count: 81, Neg. LLF: 159.31521792785966
Iteration: 8, Func. Count: 92, Neg. LLF: 195.44526787536424
Iteration: 9, Func. Count: 104, Neg. LLF: 158.54785962161242
Iteration: 10, Func. Count: 115, Neg. LLF: 158.46075185441683
Iteration: 11, Func. Count: 126, Neg. LLF: 158.33388406104706
Iteration: 12, Func. Count: 137, Neg. LLF: 158.28661979773133
Iteration: 13, Func. Count: 148, Neg. LLF: 158.24717776841632
Iteration: 14, Func. Count: 159, Neg. LLF: 158.231354083108
Iteration: 15, Func. Count: 170, Neg. LLF: 158.2306846271654
Iteration: 16, Func. Count: 181, Neg. LLF: 158.23064868385316
Iteration: 17, Func. Count: 192, Neg. LLF: 158.23067933122584
Iteration: 18, Func. Count: 203, Neg. LLF: 158.24898884608777
Optimization terminated successfully (Exit mode 0)
Current function value: 158.23067897219738
Iterations: 19
Function evaluations: 206
Gradient evaluations: 18
Iteration: 1, Func. Count: 13, Neg. LLF: 165.92698014375256
Iteration: 2, Func. Count: 26, Neg. LLF: 159.8070639222419
Iteration: 3, Func. Count: 38, Neg. LLF: 159.75625325244164
Iteration: 4, Func. Count: 50, Neg. LLF: 159.73762636362792
Iteration: 5, Func. Count: 62, Neg. LLF: 159.73666223321288
Iteration: 6, Func. Count: 74, Neg. LLF: 159.73574543384424
Iteration: 7, Func. Count: 86, Neg. LLF: 159.7229846281374
Iteration: 8, Func. Count: 98, Neg. LLF: 159.6753926177174
Iteration: 9, Func. Count: 110, Neg. LLF: 159.67374457603836
Iteration: 10, Func. Count: 122, Neg. LLF: 159.66111580179555
Iteration: 11, Func. Count: 134, Neg. LLF: 159.6314077492432
Iteration: 12, Func. Count: 146, Neg. LLF: 159.60300229654695
Iteration: 13, Func. Count: 158, Neg. LLF: 159.75685550406465
Iteration: 14, Func. Count: 172, Neg. LLF: 159.680400178351
Iteration: 15, Func. Count: 185, Neg. LLF: 159.60194501262353
Iteration: 16, Func. Count: 197, Neg. LLF: 159.59382790936294
Iteration: 17, Func. Count: 209, Neg. LLF: 159.5738068505524
Iteration: 18, Func. Count: 221, Neg. LLF: 159.5738058799033
Optimization terminated successfully (Exit mode 0)
Current function value: 159.5738058799033
Iterations: 19
Function evaluations: 221
Gradient evaluations: 18
Iteration: 1, Func. Count: 10, Neg. LLF: 166.15623049729598
Iteration: 2, Func. Count: 20, Neg. LLF: 165.6524002234998
Iteration: 3, Func. Count: 30, Neg. LLF: 159.87261357117595
Iteration: 4, Func. Count: 39, Neg. LLF: 159.8806296642523
Iteration: 5, Func. Count: 49, Neg. LLF: 160.84093205543988
Iteration: 6, Func. Count: 59, Neg. LLF: 159.42385464317675
Iteration: 7, Func. Count: 68, Neg. LLF: 159.40395131437722
Iteration: 8, Func. Count: 77, Neg. LLF: 159.38089423754138
Iteration: 9, Func. Count: 86, Neg. LLF: 159.37515575660194
Iteration: 10, Func. Count: 95, Neg. LLF: 159.36426672096593
Iteration: 11, Func. Count: 104, Neg. LLF: 159.33529811239822
Iteration: 12, Func. Count: 113, Neg. LLF: 159.30312428347275
Iteration: 13, Func. Count: 122, Neg. LLF: 159.27136760748238
Iteration: 14, Func. Count: 131, Neg. LLF: 159.26602661173243
Iteration: 15, Func. Count: 140, Neg. LLF: 159.26559486976757
Iteration: 16, Func. Count: 149, Neg. LLF: 159.2655934667094
Iteration: 17, Func. Count: 157, Neg. LLF: 159.2655934826705
Optimization terminated successfully (Exit mode 0)
Current function value: 159.2655934667094
Iterations: 17
Function evaluations: 157
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 177.72234114299502
Iteration: 2, Func. Count: 24, Neg. LLF: 174.46974602792787
Iteration: 3, Func. Count: 35, Neg. LLF: 162.73564565214647
Iteration: 4, Func. Count: 46, Neg. LLF: 162.21276493625174
Iteration: 5, Func. Count: 57, Neg. LLF: 160.85808489763033
Iteration: 6, Func. Count: 67, Neg. LLF: 229.56510445888807
Iteration: 7, Func. Count: 78, Neg. LLF: 160.13850294894485
Iteration: 8, Func. Count: 88, Neg. LLF: 159.81471862728878
Iteration: 9, Func. Count: 98, Neg. LLF: 159.620970531745
Iteration: 10, Func. Count: 108, Neg. LLF: 159.57739578171638
Iteration: 11, Func. Count: 118, Neg. LLF: 159.57385182610028
Iteration: 12, Func. Count: 128, Neg. LLF: 159.5738049445298
Iteration: 13, Func. Count: 137, Neg. LLF: 159.5738056306714
Optimization terminated successfully (Exit mode 0)
Current function value: 159.5738049445298
Iterations: 13
Function evaluations: 137
Gradient evaluations: 13
Iteration: 1, Func. Count: 12, Neg. LLF: 169.53519702639423
Iteration: 2, Func. Count: 26, Neg. LLF: 167.2313673016751
Iteration: 3, Func. Count: 38, Neg. LLF: 160.4621307874636
Iteration: 4, Func. Count: 49, Neg. LLF: 159.33432997305982
Iteration: 5, Func. Count: 60, Neg. LLF: 159.02111155579118
Iteration: 6, Func. Count: 71, Neg. LLF: 159.01188938377413
Iteration: 7, Func. Count: 83, Neg. LLF: 159.019449431915
Iteration: 8, Func. Count: 95, Neg. LLF: 159.5459772806772
Iteration: 9, Func. Count: 108, Neg. LLF: 159.01783310551662
Iteration: 10, Func. Count: 118, Neg. LLF: 159.01783269048255
Optimization terminated successfully (Exit mode 0)
Current function value: 159.01783310551662
Iterations: 11
Function evaluations: 118
Gradient evaluations: 10
Iteration: 1, Func. Count: 13, Neg. LLF: 164.7803761972794
Iteration: 2, Func. Count: 26, Neg. LLF: 159.8759795751808
Iteration: 3, Func. Count: 38, Neg. LLF: 160.03642725062448
Iteration: 4, Func. Count: 51, Neg. LLF: 161.25547503267165
Iteration: 5, Func. Count: 64, Neg. LLF: 159.6352986733589
Iteration: 6, Func. Count: 76, Neg. LLF: 159.5829084012758
Iteration: 7, Func. Count: 88, Neg. LLF: 159.48786950336597
Iteration: 8, Func. Count: 100, Neg. LLF: 159.377726333182
Iteration: 9, Func. Count: 112, Neg. LLF: 178.76841371046208
Iteration: 10, Func. Count: 125, Neg. LLF: 158.6658475895104
Iteration: 11, Func. Count: 137, Neg. LLF: 158.27283080093991
Iteration: 12, Func. Count: 149, Neg. LLF: 158.24839224223084
Iteration: 13, Func. Count: 161, Neg. LLF: 158.23314802081154
Iteration: 14, Func. Count: 173, Neg. LLF: 158.22983674021725
Iteration: 15, Func. Count: 185, Neg. LLF: 160.43322535232613
Iteration: 16, Func. Count: 200, Neg. LLF: 158.23225512250062
Iteration: 17, Func. Count: 213, Neg. LLF: 158.2306977274834
Iteration: 18, Func. Count: 225, Neg. LLF: 158.23067743916155
Iteration: 19, Func. Count: 236, Neg. LLF: 158.23067722547356
Optimization terminated successfully (Exit mode 0)
Current function value: 158.23067743916155
Iterations: 20
Function evaluations: 236
Gradient evaluations: 19
Iteration: 1, Func. Count: 14, Neg. LLF: 166.1660741296696
Iteration: 2, Func. Count: 28, Neg. LLF: 159.80748849116054
Iteration: 3, Func. Count: 41, Neg. LLF: 159.75799545584735
Iteration: 4, Func. Count: 54, Neg. LLF: 159.7376866690252
Iteration: 5, Func. Count: 67, Neg. LLF: 159.7367397917946
Iteration: 6, Func. Count: 80, Neg. LLF: 159.73615160201203
Iteration: 7, Func. Count: 93, Neg. LLF: 159.72622323924932
Iteration: 8, Func. Count: 106, Neg. LLF: 159.6800757876353
Iteration: 9, Func. Count: 119, Neg. LLF: 159.6747560639093
Iteration: 10, Func. Count: 132, Neg. LLF: 159.6639314025091
Iteration: 11, Func. Count: 145, Neg. LLF: 159.65893983557547
Iteration: 12, Func. Count: 158, Neg. LLF: 159.6183939505138
Iteration: 13, Func. Count: 171, Neg. LLF: 159.6000762768155
Iteration: 14, Func. Count: 184, Neg. LLF: 160.70977780597897
Iteration: 15, Func. Count: 207, Neg. LLF: 382.58519403238205
Iteration: 16, Func. Count: 230, Neg. LLF: 200.7855751051596
Iteration: 17, Func. Count: 253, Neg. LLF: 371.2231216062315
Iteration: 18, Func. Count: 276, Neg. LLF: 382.7435661760428
Iteration: 19, Func. Count: 299, Neg. LLF: 205.10567658155855
Iteration: 20, Func. Count: 322, Neg. LLF: 382.732678734353
Iteration: 21, Func. Count: 345, Neg. LLF: 393.70577741807733
Iteration: 22, Func. Count: 368, Neg. LLF: 382.64463807374227
Iteration: 23, Func. Count: 391, Neg. LLF: 190.4677822524415
Iteration: 24, Func. Count: 414, Neg. LLF: 253.93998866343213
Iteration: 25, Func. Count: 437, Neg. LLF: 177.42237575753242
Iteration: 26, Func. Count: 460, Neg. LLF: 383.1175964715274
Iteration: 27, Func. Count: 483, Neg. LLF: 262.9088204698483
Iteration: 28, Func. Count: 506, Neg. LLF: 382.75956721272087
Iteration: 29, Func. Count: 529, Neg. LLF: 385.62558211082325
Iteration: 30, Func. Count: 552, Neg. LLF: 391.5831238150599
Iteration: 31, Func. Count: 575, Neg. LLF: 382.8267491493987
Iteration: 32, Func. Count: 598, Neg. LLF: 326.5889373279931
Iteration: 33, Func. Count: 621, Neg. LLF: 315.34384163791145
Iteration: 34, Func. Count: 644, Neg. LLF: 382.60062094061357
Iteration: 35, Func. Count: 667, Neg. LLF: 326.83071993598486
Iteration: 36, Func. Count: 690, Neg. LLF: 351.045806843374
Iteration: 37, Func. Count: 713, Neg. LLF: 342.8598035827298
Iteration: 38, Func. Count: 736, Neg. LLF: 336.3790389006228
Iteration: 39, Func. Count: 759, Neg. LLF: 383.17093564310534
Iteration: 40, Func. Count: 782, Neg. LLF: 391.51332078239835
Iteration: 41, Func. Count: 805, Neg. LLF: 398.1930267417048
Iteration: 42, Func. Count: 828, Neg. LLF: 354.41936149511616
Iteration: 43, Func. Count: 851, Neg. LLF: 470.343323892498
Iteration: 44, Func. Count: 874, Neg. LLF: 363.84626577462063
Iteration: 45, Func. Count: 897, Neg. LLF: 499.92023297366416
Iteration: 46, Func. Count: 920, Neg. LLF: 390.96608836620294
Iteration: 47, Func. Count: 943, Neg. LLF: 187.83393102130404
Iteration: 48, Func. Count: 966, Neg. LLF: 510.87738302838056
Iteration: 49, Func. Count: 989, Neg. LLF: 906.920094591805
Iteration: 50, Func. Count: 1.01e+03, Neg. LLF: 579.7963378573153
Iteration: 51, Func. Count: 1.04e+03, Neg. LLF: 372.226332742142
Iteration: 52, Func. Count: 1.06e+03, Neg. LLF: 370.9708881202098
Iteration: 53, Func. Count: 1.08e+03, Neg. LLF: 165.43859954456732
Iteration: 54, Func. Count: 1.1e+03, Neg. LLF: 490.30431211417175
Iteration: 55, Func. Count: 1.13e+03, Neg. LLF: 373.1705206312221
Iteration: 56, Func. Count: 1.15e+03, Neg. LLF: 722.3354574471667
Iteration: 57, Func. Count: 1.17e+03, Neg. LLF: 352.887227683112
Iteration: 58, Func. Count: 1.2e+03, Neg. LLF: 527.6758888081995
Iteration: 59, Func. Count: 1.22e+03, Neg. LLF: 361.99716535203106
Iteration: 60, Func. Count: 1.24e+03, Neg. LLF: 515.2856014223632
Iteration: 61, Func. Count: 1.26e+03, Neg. LLF: 382.9986676761144
Iteration: 62, Func. Count: 1.29e+03, Neg. LLF: 333.9156316367923
Iteration: 63, Func. Count: 1.31e+03, Neg. LLF: 711.3698153701573
Iteration: 64, Func. Count: 1.33e+03, Neg. LLF: 1086.5712527652354
Iteration: 65, Func. Count: 1.36e+03, Neg. LLF: 385.1663576911015
Iteration: 66, Func. Count: 1.38e+03, Neg. LLF: 1432.9793006540476
Iteration: 67, Func. Count: 1.4e+03, Neg. LLF: 389.93454256435064
Iteration: 68, Func. Count: 1.43e+03, Neg. LLF: 388.52909585466006
Iteration: 69, Func. Count: 1.45e+03, Neg. LLF: 1000.0791529533876
Iteration: 70, Func. Count: 1.47e+03, Neg. LLF: 426.2327075607697
Iteration: 71, Func. Count: 1.5e+03, Neg. LLF: 448.80518312264877
Iteration: 72, Func. Count: 1.52e+03, Neg. LLF: 350.91271181677917
Iteration: 73, Func. Count: 1.54e+03, Neg. LLF: 390.764458062433
Iteration: 74, Func. Count: 1.56e+03, Neg. LLF: 2513.2619335790896
Iteration: 75, Func. Count: 1.59e+03, Neg. LLF: 6739.531519555401
Iteration: 76, Func. Count: 1.61e+03, Neg. LLF: 392.7922685080207
Iteration: 77, Func. Count: 1.63e+03, Neg. LLF: 524.2001715987726
Iteration: 78, Func. Count: 1.66e+03, Neg. LLF: 487.0819357329616
Iteration: 79, Func. Count: 1.68e+03, Neg. LLF: 634.861377088177
Iteration: 80, Func. Count: 1.7e+03, Neg. LLF: 335.8700946070135
Iteration: 81, Func. Count: 1.72e+03, Neg. LLF: 335.7712032935259
Iteration: 82, Func. Count: 1.75e+03, Neg. LLF: 340.39448340695077
Iteration: 83, Func. Count: 1.77e+03, Neg. LLF: 363.1060791265591
Iteration: 84, Func. Count: 1.79e+03, Neg. LLF: 342.2655979266477
Iteration: 85, Func. Count: 1.82e+03, Neg. LLF: 366.76056124783514
Iteration: 86, Func. Count: 1.84e+03, Neg. LLF: 2570.2339572475007
Iteration: 87, Func. Count: 1.86e+03, Neg. LLF: 2095.265541310534
Iteration: 88, Func. Count: 1.89e+03, Neg. LLF: 481.160061008355
Iteration: 89, Func. Count: 1.91e+03, Neg. LLF: 655.1480058169793
Iteration: 90, Func. Count: 1.93e+03, Neg. LLF: 32613.110134179748
Iteration: 91, Func. Count: 1.96e+03, Neg. LLF: 11607.308312353283
Iteration: 92, Func. Count: 1.98e+03, Neg. LLF: 701.488837856256
Iteration: 93, Func. Count: 2e+03, Neg. LLF: 419.1668096764587
Iteration: 94, Func. Count: 2.02e+03, Neg. LLF: 3425.959183777532
Iteration: 95, Func. Count: 2.05e+03, Neg. LLF: 981.9938541669914
Iteration: 96, Func. Count: 2.07e+03, Neg. LLF: 1076.2971201101177
Iteration: 97, Func. Count: 2.09e+03, Neg. LLF: 10281.152688961543
Iteration: 98, Func. Count: 2.12e+03, Neg. LLF: 456.97009146970646
Iteration: 99, Func. Count: 2.14e+03, Neg. LLF: 351.00498063688144
Iteration: 100, Func. Count: 2.16e+03, Neg. LLF: 159.58673019237642
Iteration limit reached (Exit mode 9)
Current function value: 159.58673070765678
Iterations: 100
Function evaluations: 2161
Gradient evaluations: 100
Iteration: 1, Func. Count: 7, Neg. LLF: 163.74680332187435
Iteration: 2, Func. Count: 13, Neg. LLF: 164.25251775207911
Iteration: 3, Func. Count: 20, Neg. LLF: 163.6930980039051
Iteration: 4, Func. Count: 26, Neg. LLF: 163.68981599108506
Iteration: 5, Func. Count: 32, Neg. LLF: 163.6894587300437
Iteration: 6, Func. Count: 38, Neg. LLF: 163.6878372100567
Iteration: 7, Func. Count: 44, Neg. LLF: 163.6834147226994
Iteration: 8, Func. Count: 50, Neg. LLF: 163.68266838015745
Iteration: 9, Func. Count: 56, Neg. LLF: 163.68266359911848
Iteration: 10, Func. Count: 61, Neg. LLF: 163.6826637832025
Optimization terminated successfully (Exit mode 0)
Current function value: 163.68266359911848
Iterations: 10
Function evaluations: 61
Gradient evaluations: 10
Iteration: 1, Func. Count: 8, Neg. LLF: 235.20127965443848
Iteration: 2, Func. Count: 17, Neg. LLF: 171.5638751318537
Iteration: 3, Func. Count: 25, Neg. LLF: 162.2230931120354
Iteration: 4, Func. Count: 33, Neg. LLF: 161.80344086225534
Iteration: 5, Func. Count: 40, Neg. LLF: 160.991986660047
Iteration: 6, Func. Count: 47, Neg. LLF: 160.6364916914978
Iteration: 7, Func. Count: 54, Neg. LLF: 159.90809395405614
Iteration: 8, Func. Count: 61, Neg. LLF: 159.93369220411142
Iteration: 9, Func. Count: 69, Neg. LLF: 159.57387247827134
Iteration: 10, Func. Count: 76, Neg. LLF: 159.57381664604065
Iteration: 11, Func. Count: 83, Neg. LLF: 159.5738047357731
Iteration: 12, Func. Count: 89, Neg. LLF: 159.5738054226083
Optimization terminated successfully (Exit mode 0)
Current function value: 159.5738047357731
Iterations: 12
Function evaluations: 89
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 167.88779328597727
Iteration: 2, Func. Count: 18, Neg. LLF: 170.20859929587715
Iteration: 3, Func. Count: 28, Neg. LLF: 160.19367208645053
Iteration: 4, Func. Count: 36, Neg. LLF: 159.7767542695828
Iteration: 5, Func. Count: 44, Neg. LLF: 178.4997627253708
Iteration: 6, Func. Count: 53, Neg. LLF: 159.65213961483659
Iteration: 7, Func. Count: 61, Neg. LLF: 159.6359642950265
Iteration: 8, Func. Count: 69, Neg. LLF: 159.63453748791216
Iteration: 9, Func. Count: 77, Neg. LLF: 159.63361606415475
Iteration: 10, Func. Count: 85, Neg. LLF: 159.63287081756098
Iteration: 11, Func. Count: 93, Neg. LLF: 159.63126390687725
Iteration: 12, Func. Count: 101, Neg. LLF: 159.62941491214562
Iteration: 13, Func. Count: 109, Neg. LLF: 159.62688336230207
Iteration: 14, Func. Count: 117, Neg. LLF: 159.61917496730962
Iteration: 15, Func. Count: 125, Neg. LLF: 159.57641890846176
Iteration: 16, Func. Count: 133, Neg. LLF: 159.57640538441075
Iteration: 17, Func. Count: 142, Neg. LLF: 159.57382501823636
Iteration: 18, Func. Count: 150, Neg. LLF: 159.57380768465237
Iteration: 19, Func. Count: 158, Neg. LLF: 159.57380470879187
Iteration: 20, Func. Count: 165, Neg. LLF: 159.57380402494266
Optimization terminated successfully (Exit mode 0)
Current function value: 159.57380470879187
Iterations: 21
Function evaluations: 165
Gradient evaluations: 20
Iteration: 1, Func. Count: 10, Neg. LLF: 165.40390504839633
Iteration: 2, Func. Count: 20, Neg. LLF: 159.8912400525111
/home/marco/anaconda3/lib/python3.8/site-packages/arch/univariate/base.py:707: ConvergenceWarning: The optimizer returned code 9. The message is: Iteration limit reached See scipy.optimize.fmin_slsqp for code meaning.
Iteration: 3, Func. Count: 29, Neg. LLF: 159.72295658461113
Iteration: 4, Func. Count: 38, Neg. LLF: 159.55929617131383
Iteration: 5, Func. Count: 47, Neg. LLF: 159.54467635328032
Iteration: 6, Func. Count: 56, Neg. LLF: 159.54290721667306
Iteration: 7, Func. Count: 65, Neg. LLF: 159.54289964846794
Iteration: 8, Func. Count: 73, Neg. LLF: 159.54289989604098
Optimization terminated successfully (Exit mode 0)
Current function value: 159.54289964846794
Iterations: 8
Function evaluations: 73
Gradient evaluations: 8
Iteration: 1, Func. Count: 11, Neg. LLF: 167.48432467333149
Iteration: 2, Func. Count: 22, Neg. LLF: 159.82981750269977
Iteration: 3, Func. Count: 32, Neg. LLF: 159.80048140334702
Iteration: 4, Func. Count: 42, Neg. LLF: 159.73932177158244
Iteration: 5, Func. Count: 52, Neg. LLF: 159.7293482225908
Iteration: 6, Func. Count: 62, Neg. LLF: 159.7207688017098
Iteration: 7, Func. Count: 72, Neg. LLF: 159.67331133039784
Iteration: 8, Func. Count: 82, Neg. LLF: 159.66820709990014
Iteration: 9, Func. Count: 92, Neg. LLF: 159.66706695562766
Iteration: 10, Func. Count: 102, Neg. LLF: 159.65840849549917
Iteration: 11, Func. Count: 112, Neg. LLF: 159.64251175117022
Iteration: 12, Func. Count: 122, Neg. LLF: 159.63001924655288
Iteration: 13, Func. Count: 132, Neg. LLF: 159.62317653710417
Iteration: 14, Func. Count: 142, Neg. LLF: 159.6222000728512
Iteration: 15, Func. Count: 152, Neg. LLF: 159.61817037788097
Iteration: 16, Func. Count: 162, Neg. LLF: 159.60621451119584
Iteration: 17, Func. Count: 172, Neg. LLF: 159.59099344306404
Iteration: 18, Func. Count: 182, Neg. LLF: 160.03699383995945
Iteration: 19, Func. Count: 193, Neg. LLF: 159.58805026142335
Iteration: 20, Func. Count: 204, Neg. LLF: 159.57380466018876
Iteration: 21, Func. Count: 213, Neg. LLF: 159.5738039850581
Optimization terminated successfully (Exit mode 0)
Current function value: 159.57380466018876
Iterations: 22
Function evaluations: 213
Gradient evaluations: 21
Iteration: 1, Func. Count: 8, Neg. LLF: 165.35005138190357
Iteration: 2, Func. Count: 15, Neg. LLF: 164.7405830306588
Iteration: 3, Func. Count: 24, Neg. LLF: 176.55820185412642
Iteration: 4, Func. Count: 32, Neg. LLF: 163.3527380397086
Iteration: 5, Func. Count: 40, Neg. LLF: 163.21365015027953
Iteration: 6, Func. Count: 47, Neg. LLF: 163.19834896216355
Iteration: 7, Func. Count: 54, Neg. LLF: 163.21407456093954
Iteration: 8, Func. Count: 62, Neg. LLF: 163.1878206429555
Iteration: 9, Func. Count: 70, Neg. LLF: 163.18199727241648
Iteration: 10, Func. Count: 77, Neg. LLF: 163.1817631898452
Iteration: 11, Func. Count: 84, Neg. LLF: 163.18051674505816
Iteration: 12, Func. Count: 91, Neg. LLF: 163.17960016390137
Iteration: 13, Func. Count: 98, Neg. LLF: 163.17950864577733
Iteration: 14, Func. Count: 105, Neg. LLF: 163.17940368093008
Iteration: 15, Func. Count: 112, Neg. LLF: 163.17921412946245
Iteration: 16, Func. Count: 119, Neg. LLF: 163.17732076366752
Iteration: 17, Func. Count: 126, Neg. LLF: 163.23864140970025
Iteration: 18, Func. Count: 134, Neg. LLF: 163.23525387657745
Iteration: 19, Func. Count: 142, Neg. LLF: 163.23419790122026
Iteration: 20, Func. Count: 150, Neg. LLF: 163.23367236561322
Iteration: 21, Func. Count: 158, Neg. LLF: 163.1644589029583
Iteration: 22, Func. Count: 165, Neg. LLF: 163.21832744638053
Iteration: 23, Func. Count: 173, Neg. LLF: 165.19561572312475
Iteration: 24, Func. Count: 183, Neg. LLF: 163.1704771185402
Iteration: 25, Func. Count: 191, Neg. LLF: 163.16025260738294
Iteration: 26, Func. Count: 198, Neg. LLF: 163.1591889113326
Iteration: 27, Func. Count: 205, Neg. LLF: 163.15390037828024
Iteration: 28, Func. Count: 212, Neg. LLF: 163.1378687267241
Iteration: 29, Func. Count: 219, Neg. LLF: 163.1169425124203
Iteration: 30, Func. Count: 226, Neg. LLF: 163.10187051791507
Iteration: 31, Func. Count: 233, Neg. LLF: 163.10063631293633
Iteration: 32, Func. Count: 241, Neg. LLF: 163.09689587900436
Iteration: 33, Func. Count: 248, Neg. LLF: 163.09765199169289
Iteration: 34, Func. Count: 256, Neg. LLF: 163.09613304501974
Iteration: 35, Func. Count: 263, Neg. LLF: 163.0961321694454
Optimization terminated successfully (Exit mode 0)
Current function value: 163.0961321694454
Iterations: 35
Function evaluations: 263
Gradient evaluations: 35
Iteration: 1, Func. Count: 9, Neg. LLF: 234.9492795355714
Iteration: 2, Func. Count: 19, Neg. LLF: 172.42831556516
Iteration: 3, Func. Count: 28, Neg. LLF: 162.0349051495556
Iteration: 4, Func. Count: 36, Neg. LLF: 164.4733505263005
Iteration: 5, Func. Count: 45, Neg. LLF: 223.83226217340817
Iteration: 6, Func. Count: 55, Neg. LLF: 160.63745207274684
Iteration: 7, Func. Count: 63, Neg. LLF: 160.91184541022432
Iteration: 8, Func. Count: 72, Neg. LLF: 159.95655975260755
Iteration: 9, Func. Count: 80, Neg. LLF: 159.58122833441294
Iteration: 10, Func. Count: 88, Neg. LLF: 159.57447300153723
Iteration: 11, Func. Count: 96, Neg. LLF: 159.57381575212983
Iteration: 12, Func. Count: 104, Neg. LLF: 159.57380473814678
Iteration: 13, Func. Count: 111, Neg. LLF: 159.57380542441894
Optimization terminated successfully (Exit mode 0)
Current function value: 159.57380473814678
Iterations: 13
Function evaluations: 111
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 168.21932511412197
Iteration: 2, Func. Count: 20, Neg. LLF: 174.82056209795553
Iteration: 3, Func. Count: 31, Neg. LLF: 160.2566809886906
Iteration: 4, Func. Count: 40, Neg. LLF: 159.94708619425037
Iteration: 5, Func. Count: 49, Neg. LLF: 164.0133860237119
Iteration: 6, Func. Count: 59, Neg. LLF: 159.63698717774167
Iteration: 7, Func. Count: 68, Neg. LLF: 159.63112967018532
Iteration: 8, Func. Count: 77, Neg. LLF: 159.63078634144395
Iteration: 9, Func. Count: 86, Neg. LLF: 159.63058696884428
Iteration: 10, Func. Count: 95, Neg. LLF: 159.62989393223995
Iteration: 11, Func. Count: 104, Neg. LLF: 159.6284186231881
Iteration: 12, Func. Count: 113, Neg. LLF: 159.62443636932366
Iteration: 13, Func. Count: 122, Neg. LLF: 159.5926704900301
Iteration: 14, Func. Count: 131, Neg. LLF: 159.57383207691888
Iteration: 15, Func. Count: 140, Neg. LLF: 159.57389688330866
Iteration: 16, Func. Count: 150, Neg. LLF: 159.5742799320169
Iteration: 17, Func. Count: 159, Neg. LLF: 159.57380391182278
Optimization terminated successfully (Exit mode 0)
Current function value: 159.5738045963919
Iterations: 18
Function evaluations: 159
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 165.5563012747495
Iteration: 2, Func. Count: 22, Neg. LLF: 159.8632670160157
Iteration: 3, Func. Count: 32, Neg. LLF: 160.19597525221997
Iteration: 4, Func. Count: 43, Neg. LLF: 160.87743224107012
Iteration: 5, Func. Count: 54, Neg. LLF: 159.67135153439904
Iteration: 6, Func. Count: 65, Neg. LLF: 159.63438688846685
Iteration: 7, Func. Count: 75, Neg. LLF: 159.62351451858356
Iteration: 8, Func. Count: 85, Neg. LLF: 159.6233558023145
Iteration: 9, Func. Count: 95, Neg. LLF: 159.62334839500045
Iteration: 10, Func. Count: 104, Neg. LLF: 159.62334816034542
Optimization terminated successfully (Exit mode 0)
Current function value: 159.62334839500045
Iterations: 10
Function evaluations: 104
Gradient evaluations: 10
Iteration: 1, Func. Count: 12, Neg. LLF: 167.56203171110693
Iteration: 2, Func. Count: 24, Neg. LLF: 159.80574313023007
Iteration: 3, Func. Count: 35, Neg. LLF: 159.76649624259917
Iteration: 4, Func. Count: 46, Neg. LLF: 159.73800748560504
Iteration: 5, Func. Count: 57, Neg. LLF: 159.73649154256412
Iteration: 6, Func. Count: 68, Neg. LLF: 159.73502310102117
Iteration: 7, Func. Count: 79, Neg. LLF: 159.70597991196277
Iteration: 8, Func. Count: 90, Neg. LLF: 159.6653703308339
Iteration: 9, Func. Count: 101, Neg. LLF: 159.66389889725335
Iteration: 10, Func. Count: 112, Neg. LLF: 159.643227351523
Iteration: 11, Func. Count: 123, Neg. LLF: 159.63130817499763
Iteration: 12, Func. Count: 134, Neg. LLF: 159.61813602902177
Iteration: 13, Func. Count: 145, Neg. LLF: 159.61874587674683
Iteration: 14, Func. Count: 156, Neg. LLF: 159.61792559451865
Iteration: 15, Func. Count: 167, Neg. LLF: 159.6160665078237
Iteration: 16, Func. Count: 178, Neg. LLF: 159.57274676421096
Iteration: 17, Func. Count: 191, Neg. LLF: 159.57086808308787
Iteration: 18, Func. Count: 212, Neg. LLF: 159.56755360768264
Iteration: 19, Func. Count: 233, Neg. LLF: 159.57231915878498
Iteration: 20, Func. Count: 254, Neg. LLF: 159.5475695783169
Iteration: 21, Func. Count: 275, Neg. LLF: 159.99895975572142
Iteration: 22, Func. Count: 287, Neg. LLF: 159.60744457560418
Iteration: 23, Func. Count: 298, Neg. LLF: 159.60482554312597
Iteration: 24, Func. Count: 309, Neg. LLF: 159.58628423571784
Iteration: 25, Func. Count: 320, Neg. LLF: 159.5738416545409
Iteration: 26, Func. Count: 331, Neg. LLF: 159.57383833084592
Iteration: 27, Func. Count: 343, Neg. LLF: 159.57379575134755
Iteration: 28, Func. Count: 354, Neg. LLF: 159.57390406124145
Optimization terminated successfully (Exit mode 0)
Current function value: 159.57379585460072
Iterations: 30
Function evaluations: 355
Gradient evaluations: 28
Iteration: 1, Func. Count: 9, Neg. LLF: 164.7384471351925
Iteration: 2, Func. Count: 17, Neg. LLF: 161.33957936448684
Iteration: 3, Func. Count: 25, Neg. LLF: 161.6623500491953
Iteration: 4, Func. Count: 34, Neg. LLF: 160.41398335920843
Iteration: 5, Func. Count: 42, Neg. LLF: 160.23808896012753
Iteration: 6, Func. Count: 51, Neg. LLF: 159.46258477108853
Iteration: 7, Func. Count: 59, Neg. LLF: 159.43626450481966
Iteration: 8, Func. Count: 67, Neg. LLF: 159.51870292947808
Iteration: 9, Func. Count: 76, Neg. LLF: 159.41286468657808
Iteration: 10, Func. Count: 84, Neg. LLF: 159.40318233797748
Iteration: 11, Func. Count: 92, Neg. LLF: 159.35680751403734
Iteration: 12, Func. Count: 100, Neg. LLF: 159.26718845092697
Iteration: 13, Func. Count: 108, Neg. LLF: 159.2657171148403
Iteration: 14, Func. Count: 116, Neg. LLF: 159.26559989377608
Iteration: 15, Func. Count: 124, Neg. LLF: 159.26559354143023
Iteration: 16, Func. Count: 131, Neg. LLF: 159.26559352588592
Optimization terminated successfully (Exit mode 0)
Current function value: 159.26559354143023
Iterations: 16
Function evaluations: 131
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 249.25201484888964
Iteration: 2, Func. Count: 22, Neg. LLF: 174.2364708307458
Iteration: 3, Func. Count: 32, Neg. LLF: 162.62125160296682
Iteration: 4, Func. Count: 42, Neg. LLF: 161.82553098095508
Iteration: 5, Func. Count: 51, Neg. LLF: 191.38255974389554
Iteration: 6, Func. Count: 62, Neg. LLF: 161.08510696967508
Iteration: 7, Func. Count: 71, Neg. LLF: 160.4155233998479
Iteration: 8, Func. Count: 80, Neg. LLF: 160.22340596895822
Iteration: 9, Func. Count: 89, Neg. LLF: 160.48749226385002
Iteration: 10, Func. Count: 99, Neg. LLF: 159.66713408177907
Iteration: 11, Func. Count: 108, Neg. LLF: 159.57382862974023
Iteration: 12, Func. Count: 117, Neg. LLF: 159.57380488941004
Iteration: 13, Func. Count: 125, Neg. LLF: 159.57380557715192
Optimization terminated successfully (Exit mode 0)
Current function value: 159.57380488941004
Iterations: 13
Function evaluations: 125
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 169.80601079392463
Iteration: 2, Func. Count: 24, Neg. LLF: 167.24956822322952
Iteration: 3, Func. Count: 35, Neg. LLF: 160.44791126933222
Iteration: 4, Func. Count: 45, Neg. LLF: 159.45307853264507
Iteration: 5, Func. Count: 55, Neg. LLF: 159.02531161726998
Iteration: 6, Func. Count: 65, Neg. LLF: 159.03352468846845
Iteration: 7, Func. Count: 76, Neg. LLF: 159.78909036701216
Iteration: 8, Func. Count: 88, Neg. LLF: 159.02257194766128
Iteration: 9, Func. Count: 99, Neg. LLF: 159.0179578219578
Iteration: 10, Func. Count: 109, Neg. LLF: 159.01783395628544
Iteration: 11, Func. Count: 119, Neg. LLF: 159.01783268404483
Iteration: 12, Func. Count: 128, Neg. LLF: 159.01783226860633
Optimization terminated successfully (Exit mode 0)
Current function value: 159.01783268404483
Iterations: 13
Function evaluations: 128
Gradient evaluations: 12
Iteration: 1, Func. Count: 12, Neg. LLF: 165.50955553801975
Iteration: 2, Func. Count: 24, Neg. LLF: 159.8637366730375
Iteration: 3, Func. Count: 35, Neg. LLF: 160.10075910077703
Iteration: 4, Func. Count: 47, Neg. LLF: 160.49996641838194
Iteration: 5, Func. Count: 59, Neg. LLF: 159.66522911774743
Iteration: 6, Func. Count: 70, Neg. LLF: 159.62797875642497
Iteration: 7, Func. Count: 81, Neg. LLF: 159.57009443126375
Iteration: 8, Func. Count: 92, Neg. LLF: 159.55702462165482
Iteration: 9, Func. Count: 103, Neg. LLF: 159.548219690517
Iteration: 10, Func. Count: 114, Neg. LLF: 159.54291536023973
Iteration: 11, Func. Count: 125, Neg. LLF: 159.54290003340319
Iteration: 12, Func. Count: 135, Neg. LLF: 159.5428997860193
Optimization terminated successfully (Exit mode 0)
Current function value: 159.54290003340319
Iterations: 12
Function evaluations: 135
Gradient evaluations: 12
Iteration: 1, Func. Count: 13, Neg. LLF: 166.89156405875747
Iteration: 2, Func. Count: 26, Neg. LLF: 159.80375524590647
Iteration: 3, Func. Count: 38, Neg. LLF: 159.76178020757018
Iteration: 4, Func. Count: 50, Neg. LLF: 159.73768949400346
Iteration: 5, Func. Count: 62, Neg. LLF: 159.73681559833642
Iteration: 6, Func. Count: 74, Neg. LLF: 159.73634694053536
Iteration: 7, Func. Count: 86, Neg. LLF: 159.72673931503905
Iteration: 8, Func. Count: 98, Neg. LLF: 159.6625688470543
Iteration: 9, Func. Count: 110, Neg. LLF: 159.69251351606974
Iteration: 10, Func. Count: 123, Neg. LLF: 159.6476234975925
Iteration: 11, Func. Count: 135, Neg. LLF: 159.60082219498437
Iteration: 12, Func. Count: 147, Neg. LLF: 169.76609025110324
Iteration: 13, Func. Count: 163, Neg. LLF: 159.608688518529
Iteration: 14, Func. Count: 176, Neg. LLF: 159.5952291578316
Iteration: 15, Func. Count: 188, Neg. LLF: 159.57500148847305
Iteration: 16, Func. Count: 200, Neg. LLF: 159.57409082510347
Iteration: 17, Func. Count: 212, Neg. LLF: 159.5738109260752
Iteration: 18, Func. Count: 224, Neg. LLF: 159.57380446618444
Iteration: 19, Func. Count: 235, Neg. LLF: 159.5738037912876
Optimization terminated successfully (Exit mode 0)
Current function value: 159.57380446618444
Iterations: 20
Function evaluations: 235
Gradient evaluations: 19
Iteration: 1, Func. Count: 10, Neg. LLF: 163.8396452778341
Iteration: 2, Func. Count: 19, Neg. LLF: 162.26715636701468
Iteration: 3, Func. Count: 29, Neg. LLF: 160.78710272945602
Iteration: 4, Func. Count: 39, Neg. LLF: 159.59210065499573
Iteration: 5, Func. Count: 48, Neg. LLF: 159.5042468336012
Iteration: 6, Func. Count: 57, Neg. LLF: 159.46721882387138
Iteration: 7, Func. Count: 66, Neg. LLF: 159.4312237457837
Iteration: 8, Func. Count: 75, Neg. LLF: 159.4180652513573
Iteration: 9, Func. Count: 84, Neg. LLF: 159.39376426260122
Iteration: 10, Func. Count: 93, Neg. LLF: 159.3609112729041
Iteration: 11, Func. Count: 102, Neg. LLF: 159.300003669965
Iteration: 12, Func. Count: 111, Neg. LLF: 159.2674154657369
Iteration: 13, Func. Count: 120, Neg. LLF: 159.26560724034482
Iteration: 14, Func. Count: 129, Neg. LLF: 159.26559349732918
Iteration: 15, Func. Count: 137, Neg. LLF: 159.2655934794704
Optimization terminated successfully (Exit mode 0)
Current function value: 159.26559349732918
Iterations: 15
Function evaluations: 137
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 247.59513117322302
Iteration: 2, Func. Count: 24, Neg. LLF: 170.41477593020903
Iteration: 3, Func. Count: 35, Neg. LLF: 163.23381252518766
Iteration: 4, Func. Count: 46, Neg. LLF: 161.40195404408104
Iteration: 5, Func. Count: 56, Neg. LLF: 160.8963594917449
Iteration: 6, Func. Count: 66, Neg. LLF: 160.50804014107953
Iteration: 7, Func. Count: 76, Neg. LLF: 160.39990092861007
Iteration: 8, Func. Count: 86, Neg. LLF: 159.9510510319038
Iteration: 9, Func. Count: 96, Neg. LLF: 159.70591991712124
Iteration: 10, Func. Count: 106, Neg. LLF: 159.5827968250049
Iteration: 11, Func. Count: 116, Neg. LLF: 159.5748499723607
Iteration: 12, Func. Count: 126, Neg. LLF: 159.57381830167833
Iteration: 13, Func. Count: 136, Neg. LLF: 159.5738046231
Iteration: 14, Func. Count: 145, Neg. LLF: 159.57380530968547
Optimization terminated successfully (Exit mode 0)
Current function value: 159.5738046231
Iterations: 14
Function evaluations: 145
Gradient evaluations: 14
Iteration: 1, Func. Count: 12, Neg. LLF: 169.82069706349856
Iteration: 2, Func. Count: 26, Neg. LLF: 167.28957996051875
Iteration: 3, Func. Count: 38, Neg. LLF: 160.4496112623989
Iteration: 4, Func. Count: 49, Neg. LLF: 159.3321371629318
Iteration: 5, Func. Count: 60, Neg. LLF: 159.02060123121143
Iteration: 6, Func. Count: 71, Neg. LLF: 159.02788421340657
Iteration: 7, Func. Count: 83, Neg. LLF: 159.02127643084842
Iteration: 8, Func. Count: 95, Neg. LLF: 159.0163039596942
Iteration: 9, Func. Count: 106, Neg. LLF: 159.01570889395563
Iteration: 10, Func. Count: 127, Neg. LLF: 159.01177856810313
Iteration: 11, Func. Count: 148, Neg. LLF: 159.1867272259745
Iteration: 12, Func. Count: 161, Neg. LLF: 159.01798515872122
Iteration: 13, Func. Count: 173, Neg. LLF: 159.0178339747094
Iteration: 14, Func. Count: 184, Neg. LLF: 159.0178326646934
Iteration: 15, Func. Count: 194, Neg. LLF: 159.01783224925381
Optimization terminated successfully (Exit mode 0)
Current function value: 159.0178326646934
Iterations: 16
Function evaluations: 194
Gradient evaluations: 15
Iteration: 1, Func. Count: 13, Neg. LLF: 165.39260565554264
Iteration: 2, Func. Count: 26, Neg. LLF: 159.8663416394805
Iteration: 3, Func. Count: 38, Neg. LLF: 160.18899498475844
Iteration: 4, Func. Count: 51, Neg. LLF: 160.64156074435488
Iteration: 5, Func. Count: 64, Neg. LLF: 159.67048189682052
Iteration: 6, Func. Count: 77, Neg. LLF: 159.63448215752942
Iteration: 7, Func. Count: 89, Neg. LLF: 159.6235180245618
Iteration: 8, Func. Count: 101, Neg. LLF: 159.57508600352233
Iteration: 9, Func. Count: 113, Neg. LLF: 159.43406364142982
Iteration: 10, Func. Count: 125, Neg. LLF: 159.35913573324808
Iteration: 11, Func. Count: 137, Neg. LLF: 158.86291406558226
Iteration: 12, Func. Count: 149, Neg. LLF: 159.83742540688627
Iteration: 13, Func. Count: 162, Neg. LLF: 158.3204669582491
Iteration: 14, Func. Count: 174, Neg. LLF: 158.0231250301079
Iteration: 15, Func. Count: 187, Neg. LLF: 158.22973329691467
Iteration: 16, Func. Count: 199, Neg. LLF: 159.8255609922223
Iteration: 17, Func. Count: 213, Neg. LLF: 158.5579399234898
Iteration: 18, Func. Count: 227, Neg. LLF: 158.23669824055492
Iteration: 19, Func. Count: 240, Neg. LLF: 158.23083524619827
Iteration: 20, Func. Count: 252, Neg. LLF: 158.23067709637306
Iteration: 21, Func. Count: 263, Neg. LLF: 158.23067688223185
Optimization terminated successfully (Exit mode 0)
Current function value: 158.23067709637306
Iterations: 22
Function evaluations: 263
Gradient evaluations: 21
Iteration: 1, Func. Count: 14, Neg. LLF: 167.08660547105382
Iteration: 2, Func. Count: 28, Neg. LLF: 159.8074728366607
Iteration: 3, Func. Count: 41, Neg. LLF: 159.7632970252622
Iteration: 4, Func. Count: 54, Neg. LLF: 159.73802947346945
Iteration: 5, Func. Count: 67, Neg. LLF: 159.73681715756322
Iteration: 6, Func. Count: 80, Neg. LLF: 159.73615788261836
Iteration: 7, Func. Count: 93, Neg. LLF: 159.72555453290988
Iteration: 8, Func. Count: 106, Neg. LLF: 159.68039056751672
Iteration: 9, Func. Count: 119, Neg. LLF: 174.59016119261904
Iteration: 10, Func. Count: 134, Neg. LLF: 159.65081810816022
Iteration: 11, Func. Count: 147, Neg. LLF: 159.64179502146652
Iteration: 12, Func. Count: 160, Neg. LLF: 159.62366943452923
Iteration: 13, Func. Count: 173, Neg. LLF: 159.59613820980815
Iteration: 14, Func. Count: 186, Neg. LLF: 159.59367842116274
Iteration: 15, Func. Count: 199, Neg. LLF: 159.57585141282138
Iteration: 16, Func. Count: 212, Neg. LLF: 159.57613627511088
Iteration: 17, Func. Count: 226, Neg. LLF: 159.58483962539893
Iteration: 18, Func. Count: 240, Neg. LLF: 159.58568498410645
Iteration: 19, Func. Count: 254, Neg. LLF: 159.57380462163655
Iteration: 20, Func. Count: 266, Neg. LLF: 159.57380394644375
Optimization terminated successfully (Exit mode 0)
Current function value: 159.57380462163655
Iterations: 21
Function evaluations: 266
Gradient evaluations: 20
Iteration: 1, Func. Count: 11, Neg. LLF: 163.38790107411606
Iteration: 2, Func. Count: 21, Neg. LLF: 162.8308551717509
Iteration: 3, Func. Count: 32, Neg. LLF: 160.42012333413396
Iteration: 4, Func. Count: 43, Neg. LLF: 159.54860408756085
Iteration: 5, Func. Count: 53, Neg. LLF: 159.4794504007159
Iteration: 6, Func. Count: 63, Neg. LLF: 159.44853278294104
Iteration: 7, Func. Count: 73, Neg. LLF: 159.43720669002334
Iteration: 8, Func. Count: 83, Neg. LLF: 159.41761879456092
Iteration: 9, Func. Count: 93, Neg. LLF: 159.39785816135793
Iteration: 10, Func. Count: 103, Neg. LLF: 159.35418844601693
Iteration: 11, Func. Count: 113, Neg. LLF: 159.29050438084963
Iteration: 12, Func. Count: 123, Neg. LLF: 159.26963776198716
Iteration: 13, Func. Count: 133, Neg. LLF: 159.26579709633504
Iteration: 14, Func. Count: 143, Neg. LLF: 159.2656009364504
Iteration: 15, Func. Count: 153, Neg. LLF: 159.26559355089847
Iteration: 16, Func. Count: 162, Neg. LLF: 159.26559356685533
Optimization terminated successfully (Exit mode 0)
Current function value: 159.26559355089847
Iterations: 16
Function evaluations: 162
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 247.66690112398464
Iteration: 2, Func. Count: 26, Neg. LLF: 170.40760968599693
Iteration: 3, Func. Count: 38, Neg. LLF: 163.14663074330755
Iteration: 4, Func. Count: 50, Neg. LLF: 161.3876757124318
Iteration: 5, Func. Count: 61, Neg. LLF: 160.8790197569024
Iteration: 6, Func. Count: 72, Neg. LLF: 160.50362504221272
Iteration: 7, Func. Count: 83, Neg. LLF: 160.39888965065722
Iteration: 8, Func. Count: 94, Neg. LLF: 160.35476466139067
Iteration: 9, Func. Count: 106, Neg. LLF: 159.96177342844507
Iteration: 10, Func. Count: 117, Neg. LLF: 160.27732606222608
Iteration: 11, Func. Count: 129, Neg. LLF: 159.58119058581806
Iteration: 12, Func. Count: 140, Neg. LLF: 159.57415022673385
Iteration: 13, Func. Count: 151, Neg. LLF: 159.5738172053414
Iteration: 14, Func. Count: 162, Neg. LLF: 159.57380469848866
Iteration: 15, Func. Count: 172, Neg. LLF: 159.57380538500405
Optimization terminated successfully (Exit mode 0)
Current function value: 159.57380469848866
Iterations: 15
Function evaluations: 172
Gradient evaluations: 15
Iteration: 1, Func. Count: 13, Neg. LLF: 169.8451085161095
Iteration: 2, Func. Count: 28, Neg. LLF: 167.28717150446153
Iteration: 3, Func. Count: 41, Neg. LLF: 160.4488013565736
Iteration: 4, Func. Count: 53, Neg. LLF: 159.34702176129852
Iteration: 5, Func. Count: 65, Neg. LLF: 159.02076418774752
Iteration: 6, Func. Count: 77, Neg. LLF: 159.02694400558102
Iteration: 7, Func. Count: 90, Neg. LLF: 159.0110318251856
Iteration: 8, Func. Count: 102, Neg. LLF: 159.01693919105153
Iteration: 9, Func. Count: 114, Neg. LLF: 159.20908650659175
Iteration: 10, Func. Count: 128, Neg. LLF: 159.01798817303532
Iteration: 11, Func. Count: 141, Neg. LLF: 159.01783344346245
Iteration: 12, Func. Count: 153, Neg. LLF: 159.01783266285543
Optimization terminated successfully (Exit mode 0)
Current function value: 159.01783266285543
Iterations: 13
Function evaluations: 153
Gradient evaluations: 12
Iteration: 1, Func. Count: 14, Neg. LLF: 165.4380678627924
Iteration: 2, Func. Count: 28, Neg. LLF: 159.86413402068266
Iteration: 3, Func. Count: 41, Neg. LLF: 160.17948278617945
Iteration: 4, Func. Count: 55, Neg. LLF: 161.10690354135525
Iteration: 5, Func. Count: 69, Neg. LLF: 159.6677348916347
Iteration: 6, Func. Count: 82, Neg. LLF: 159.6286941121814
Iteration: 7, Func. Count: 95, Neg. LLF: 159.40190529380646
Iteration: 8, Func. Count: 108, Neg. LLF: 159.23436344796312
Iteration: 9, Func. Count: 121, Neg. LLF: 158.9359610641974
Iteration: 10, Func. Count: 134, Neg. LLF: 161.77650510888472
Iteration: 11, Func. Count: 148, Neg. LLF: 158.3159193621162
Iteration: 12, Func. Count: 162, Neg. LLF: 158.23952191552533
Iteration: 13, Func. Count: 175, Neg. LLF: 158.23089508724374
Iteration: 14, Func. Count: 188, Neg. LLF: 158.23069512130704
Iteration: 15, Func. Count: 201, Neg. LLF: 158.2306927169289
Iteration: 16, Func. Count: 214, Neg. LLF: 158.23068329924453
Iteration: 17, Func. Count: 227, Neg. LLF: 158.23066181254046
Iteration: 18, Func. Count: 240, Neg. LLF: 158.23453506377328
Iteration: 19, Func. Count: 256, Neg. LLF: 158.230693723352
Iteration: 20, Func. Count: 271, Neg. LLF: 158.23067692447222
Iteration: 21, Func. Count: 283, Neg. LLF: 158.23067671049452
Optimization terminated successfully (Exit mode 0)
Current function value: 158.23067692447222
Iterations: 22
Function evaluations: 283
Gradient evaluations: 21
Iteration: 1, Func. Count: 15, Neg. LLF: 167.37577772581716
Iteration: 2, Func. Count: 30, Neg. LLF: 159.808291925187
Iteration: 3, Func. Count: 44, Neg. LLF: 159.7665921563601
Iteration: 4, Func. Count: 58, Neg. LLF: 159.73823302117736
Iteration: 5, Func. Count: 72, Neg. LLF: 159.7366619391334
Iteration: 6, Func. Count: 86, Neg. LLF: 159.73548035856055
Iteration: 7, Func. Count: 100, Neg. LLF: 159.71265621614663
Iteration: 8, Func. Count: 114, Neg. LLF: 159.66483734401095
Iteration: 9, Func. Count: 128, Neg. LLF: 159.6621980604096
Iteration: 10, Func. Count: 142, Neg. LLF: 159.65310814753403
Iteration: 11, Func. Count: 156, Neg. LLF: 159.6285060415423
Iteration: 12, Func. Count: 170, Neg. LLF: 159.5819615870182
Iteration: 13, Func. Count: 184, Neg. LLF: 160.5476664960308
Iteration: 14, Func. Count: 208, Neg. LLF: 162.61906997764373
Iteration: 15, Func. Count: 232, Neg. LLF: 159.61195366042602
Iteration: 16, Func. Count: 246, Neg. LLF: 159.61769710709663
Iteration: 17, Func. Count: 261, Neg. LLF: 159.60795278414935
Iteration: 18, Func. Count: 275, Neg. LLF: 159.60187965752522
Iteration: 19, Func. Count: 289, Neg. LLF: 159.5772615104421
Iteration: 20, Func. Count: 303, Neg. LLF: 159.57478228535697
Iteration: 21, Func. Count: 317, Neg. LLF: 159.5738099840038
Iteration: 22, Func. Count: 331, Neg. LLF: 159.57381151144645
Iteration: 23, Func. Count: 346, Neg. LLF: 159.57380461904336
Iteration: 24, Func. Count: 359, Neg. LLF: 159.57380394385342
Optimization terminated successfully (Exit mode 0)
Current function value: 159.57380461904336
Iterations: 26
Function evaluations: 359
Gradient evaluations: 24
Iteration: 1, Func. Count: 8, Neg. LLF: 165.42040198308018
Iteration: 2, Func. Count: 15, Neg. LLF: 162.79171779562006
Iteration: 3, Func. Count: 22, Neg. LLF: 169.7625168924944
Iteration: 4, Func. Count: 32, Neg. LLF: 162.51095889479873
Iteration: 5, Func. Count: 39, Neg. LLF: 178.17300862093555
Iteration: 6, Func. Count: 48, Neg. LLF: 162.5280974176969
Iteration: 7, Func. Count: 56, Neg. LLF: 162.38756834499563
Iteration: 8, Func. Count: 63, Neg. LLF: 162.38486857848554
Iteration: 9, Func. Count: 70, Neg. LLF: 162.38283545065144
Iteration: 10, Func. Count: 77, Neg. LLF: 162.37429502204543
Iteration: 11, Func. Count: 84, Neg. LLF: 162.367501491634
Iteration: 12, Func. Count: 91, Neg. LLF: 162.36741840366423
Iteration: 13, Func. Count: 98, Neg. LLF: 162.36741620356227
Iteration: 14, Func. Count: 104, Neg. LLF: 162.36741619483195
Optimization terminated successfully (Exit mode 0)
Current function value: 162.36741620356227
Iterations: 14
Function evaluations: 104
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 182.19995330156382
Iteration: 2, Func. Count: 19, Neg. LLF: 161.7955820561608
Iteration: 3, Func. Count: 28, Neg. LLF: 212.0264410274727
Iteration: 4, Func. Count: 38, Neg. LLF: 160.1943650077523
Iteration: 5, Func. Count: 46, Neg. LLF: 159.92322738822637
Iteration: 6, Func. Count: 54, Neg. LLF: 159.92240087098978
Iteration: 7, Func. Count: 62, Neg. LLF: 159.9218575717505
Iteration: 8, Func. Count: 70, Neg. LLF: 159.92085354209604
Iteration: 9, Func. Count: 78, Neg. LLF: 159.9208073349754
Iteration: 10, Func. Count: 86, Neg. LLF: 159.9208054342104
Iteration: 11, Func. Count: 93, Neg. LLF: 159.92080534144554
Optimization terminated successfully (Exit mode 0)
Current function value: 159.9208054342104
Iterations: 11
Function evaluations: 93
Gradient evaluations: 11
Iteration: 1, Func. Count: 10, Neg. LLF: 180.7256343006615
Iteration: 2, Func. Count: 21, Neg. LLF: 165.00193936841188
Iteration: 3, Func. Count: 31, Neg. LLF: 160.87675206868835
Iteration: 4, Func. Count: 40, Neg. LLF: 160.9133929589483
Iteration: 5, Func. Count: 50, Neg. LLF: 160.37728293401824
Iteration: 6, Func. Count: 59, Neg. LLF: 159.99180291645723
Iteration: 7, Func. Count: 68, Neg. LLF: 159.97160243329483
Iteration: 8, Func. Count: 77, Neg. LLF: 159.94849091140563
Iteration: 9, Func. Count: 86, Neg. LLF: 159.94088448133294
Iteration: 10, Func. Count: 95, Neg. LLF: 159.93651795358605
Iteration: 11, Func. Count: 104, Neg. LLF: 159.9318301071312
Iteration: 12, Func. Count: 113, Neg. LLF: 159.9251994253271
Iteration: 13, Func. Count: 122, Neg. LLF: 159.9216095261257
Iteration: 14, Func. Count: 131, Neg. LLF: 159.92088355865909
Iteration: 15, Func. Count: 140, Neg. LLF: 159.92081009848738
Iteration: 16, Func. Count: 149, Neg. LLF: 159.92080526522116
Iteration: 17, Func. Count: 157, Neg. LLF: 159.92080519621877
Optimization terminated successfully (Exit mode 0)
Current function value: 159.92080526522116
Iterations: 17
Function evaluations: 157
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 179.61274388528568
Iteration: 2, Func. Count: 24, Neg. LLF: 170.18983497687003
Iteration: 3, Func. Count: 35, Neg. LLF: 160.17843316450217
Iteration: 4, Func. Count: 45, Neg. LLF: 159.95961974717375
Iteration: 5, Func. Count: 55, Neg. LLF: 159.64703850056998
Iteration: 6, Func. Count: 65, Neg. LLF: 159.63636569487304
Iteration: 7, Func. Count: 75, Neg. LLF: 159.62746133213867
Iteration: 8, Func. Count: 85, Neg. LLF: 159.62664178969817
Iteration: 9, Func. Count: 95, Neg. LLF: 159.62604629516224
Iteration: 10, Func. Count: 105, Neg. LLF: 159.62596253772224
Iteration: 11, Func. Count: 115, Neg. LLF: 159.62592955940008
Iteration: 12, Func. Count: 124, Neg. LLF: 159.62592931578325
Optimization terminated successfully (Exit mode 0)
Current function value: 159.62592955940008
Iterations: 12
Function evaluations: 124
Gradient evaluations: 12
Iteration: 1, Func. Count: 12, Neg. LLF: 178.79036883791235
Iteration: 2, Func. Count: 26, Neg. LLF: 168.8868747448315
Iteration: 3, Func. Count: 38, Neg. LLF: 159.68336903848333
Iteration: 4, Func. Count: 49, Neg. LLF: 159.38999688828605
Iteration: 5, Func. Count: 60, Neg. LLF: 162.74064407776171
Iteration: 6, Func. Count: 72, Neg. LLF: 159.15883026225362
Iteration: 7, Func. Count: 83, Neg. LLF: 159.0829528015614
Iteration: 8, Func. Count: 94, Neg. LLF: 159.0752787903258
Iteration: 9, Func. Count: 105, Neg. LLF: 159.07233654641797
Iteration: 10, Func. Count: 116, Neg. LLF: 159.0690772406176
Iteration: 11, Func. Count: 127, Neg. LLF: 159.06566302741703
Iteration: 12, Func. Count: 138, Neg. LLF: 159.06513574103892
Iteration: 13, Func. Count: 149, Neg. LLF: 159.06508410645583
Iteration: 14, Func. Count: 160, Neg. LLF: 159.06507665841642
Iteration: 15, Func. Count: 170, Neg. LLF: 159.06507649399657
Optimization terminated successfully (Exit mode 0)
Current function value: 159.06507665841642
Iterations: 15
Function evaluations: 170
Gradient evaluations: 15
Iteration: 1, Func. Count: 9, Neg. LLF: 166.75294967411122
Iteration: 2, Func. Count: 19, Neg. LLF: 163.34869057136373
Iteration: 3, Func. Count: 27, Neg. LLF: 162.6425188766684
Iteration: 4, Func. Count: 37, Neg. LLF: 166.36501196411575
Iteration: 5, Func. Count: 49, Neg. LLF: 161.80392484670247
Iteration: 6, Func. Count: 59, Neg. LLF: 162.6900885685902
Iteration: 7, Func. Count: 68, Neg. LLF: 160.45502354310668
Iteration: 8, Func. Count: 76, Neg. LLF: 160.44605604394812
Iteration: 9, Func. Count: 84, Neg. LLF: 160.40782069902008
Iteration: 10, Func. Count: 92, Neg. LLF: 160.36703283825094
Iteration: 11, Func. Count: 100, Neg. LLF: 160.24461478705658
Iteration: 12, Func. Count: 108, Neg. LLF: 160.18191923487993
Iteration: 13, Func. Count: 116, Neg. LLF: 160.16794306985636
Iteration: 14, Func. Count: 124, Neg. LLF: 160.16138562405015
Iteration: 15, Func. Count: 132, Neg. LLF: 160.16069542853148
Iteration: 16, Func. Count: 140, Neg. LLF: 160.15994722710585
Iteration: 17, Func. Count: 148, Neg. LLF: 160.15840102366
Iteration: 18, Func. Count: 156, Neg. LLF: 160.1577317244934
Iteration: 19, Func. Count: 164, Neg. LLF: 160.15754044757608
Iteration: 20, Func. Count: 172, Neg. LLF: 160.15752623662993
Iteration: 21, Func. Count: 179, Neg. LLF: 160.15752621913362
Optimization terminated successfully (Exit mode 0)
Current function value: 160.15752623662993
Iterations: 21
Function evaluations: 179
Gradient evaluations: 21
Iteration: 1, Func. Count: 10, Neg. LLF: 182.04566855646075
Iteration: 2, Func. Count: 21, Neg. LLF: 161.92234860985423
Iteration: 3, Func. Count: 31, Neg. LLF: 211.427542728329
Iteration: 4, Func. Count: 42, Neg. LLF: 160.20904854023658
Iteration: 5, Func. Count: 51, Neg. LLF: 159.92399277819908
Iteration: 6, Func. Count: 60, Neg. LLF: 159.92318314713006
Iteration: 7, Func. Count: 69, Neg. LLF: 159.92163512290412
Iteration: 8, Func. Count: 78, Neg. LLF: 159.92089353259442
Iteration: 9, Func. Count: 87, Neg. LLF: 159.920808246777
Iteration: 10, Func. Count: 96, Neg. LLF: 159.92080546494887
Iteration: 11, Func. Count: 104, Neg. LLF: 159.92080537219513
Optimization terminated successfully (Exit mode 0)
Current function value: 159.92080546494887
Iterations: 11
Function evaluations: 104
Gradient evaluations: 11
Iteration: 1, Func. Count: 11, Neg. LLF: 180.77252206940585
Iteration: 2, Func. Count: 23, Neg. LLF: 164.96935843794097
Iteration: 3, Func. Count: 34, Neg. LLF: 160.82752868133178
Iteration: 4, Func. Count: 44, Neg. LLF: 162.95415201417003
Iteration: 5, Func. Count: 55, Neg. LLF: 160.25422425328088
Iteration: 6, Func. Count: 65, Neg. LLF: 159.9897731984375
Iteration: 7, Func. Count: 75, Neg. LLF: 159.96243738204646
Iteration: 8, Func. Count: 85, Neg. LLF: 159.9452220229911
Iteration: 9, Func. Count: 95, Neg. LLF: 159.93813563420906
Iteration: 10, Func. Count: 105, Neg. LLF: 159.93178731546192
Iteration: 11, Func. Count: 115, Neg. LLF: 159.9267700574263
Iteration: 12, Func. Count: 125, Neg. LLF: 159.92233655158086
Iteration: 13, Func. Count: 135, Neg. LLF: 159.92094745608745
Iteration: 14, Func. Count: 145, Neg. LLF: 159.92081219292405
Iteration: 15, Func. Count: 155, Neg. LLF: 159.92080566369137
Iteration: 16, Func. Count: 164, Neg. LLF: 159.9208055947412
Optimization terminated successfully (Exit mode 0)
Current function value: 159.92080566369137
Iterations: 16
Function evaluations: 164
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 179.8194128774548
Iteration: 2, Func. Count: 26, Neg. LLF: 170.6062245096468
Iteration: 3, Func. Count: 38, Neg. LLF: 160.14878219651195
Iteration: 4, Func. Count: 49, Neg. LLF: 160.11489635210742
Iteration: 5, Func. Count: 61, Neg. LLF: 160.04617596275006
Iteration: 6, Func. Count: 73, Neg. LLF: 159.6467731474633
Iteration: 7, Func. Count: 84, Neg. LLF: 159.62981355710255
Iteration: 8, Func. Count: 95, Neg. LLF: 159.62721298490268
Iteration: 9, Func. Count: 106, Neg. LLF: 159.6264479818689
Iteration: 10, Func. Count: 117, Neg. LLF: 159.6260921468379
Iteration: 11, Func. Count: 128, Neg. LLF: 159.62593675255388
Iteration: 12, Func. Count: 139, Neg. LLF: 159.62592929722652
Iteration: 13, Func. Count: 149, Neg. LLF: 159.6259290533262
Optimization terminated successfully (Exit mode 0)
Current function value: 159.62592929722652
Iterations: 13
Function evaluations: 149
Gradient evaluations: 13
Iteration: 1, Func. Count: 13, Neg. LLF: 179.10788681154546
Iteration: 2, Func. Count: 28, Neg. LLF: 168.9279141555521
Iteration: 3, Func. Count: 41, Neg. LLF: 159.65091510182114
Iteration: 4, Func. Count: 53, Neg. LLF: 159.25520157178914
Iteration: 5, Func. Count: 65, Neg. LLF: 159.1917276079865
Iteration: 6, Func. Count: 77, Neg. LLF: 159.16017640692553
Iteration: 7, Func. Count: 89, Neg. LLF: 159.13230022404935
Iteration: 8, Func. Count: 101, Neg. LLF: 159.11527059799656
Iteration: 9, Func. Count: 113, Neg. LLF: 159.09527723619843
Iteration: 10, Func. Count: 125, Neg. LLF: 159.10785330063914
Iteration: 11, Func. Count: 138, Neg. LLF: 159.07241106750308
Iteration: 12, Func. Count: 150, Neg. LLF: 159.0672969580394
Iteration: 13, Func. Count: 162, Neg. LLF: 159.06602991924603
Iteration: 14, Func. Count: 174, Neg. LLF: 159.06525433629764
Iteration: 15, Func. Count: 186, Neg. LLF: 159.0650903743431
Iteration: 16, Func. Count: 198, Neg. LLF: 159.0650771479111
Iteration: 17, Func. Count: 210, Neg. LLF: 159.0650765517096
Optimization terminated successfully (Exit mode 0)
Current function value: 159.0650765517096
Iterations: 17
Function evaluations: 210
Gradient evaluations: 17
Iteration: 1, Func. Count: 10, Neg. LLF: 161.01317671365754
Iteration: 2, Func. Count: 19, Neg. LLF: 162.0701283576515
Iteration: 3, Func. Count: 29, Neg. LLF: 162.443135852544
Iteration: 4, Func. Count: 41, Neg. LLF: 159.4744761286684
Iteration: 5, Func. Count: 50, Neg. LLF: 159.2229665252704
Iteration: 6, Func. Count: 59, Neg. LLF: 159.23823520339764
Iteration: 7, Func. Count: 69, Neg. LLF: 159.19553856351308
Iteration: 8, Func. Count: 78, Neg. LLF: 159.18437192399634
Iteration: 9, Func. Count: 87, Neg. LLF: 159.15051908999058
Iteration: 10, Func. Count: 96, Neg. LLF: 159.11238659894434
Iteration: 11, Func. Count: 105, Neg. LLF: 158.9709610813876
Iteration: 12, Func. Count: 114, Neg. LLF: 158.94943027493198
Iteration: 13, Func. Count: 123, Neg. LLF: 158.94682730311055
Iteration: 14, Func. Count: 132, Neg. LLF: 158.9468024616813
Iteration: 15, Func. Count: 140, Neg. LLF: 158.94680244648598
Optimization terminated successfully (Exit mode 0)
Current function value: 158.9468024616813
Iterations: 15
Function evaluations: 140
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 182.02396892131975
Iteration: 2, Func. Count: 23, Neg. LLF: 161.92929001757608
Iteration: 3, Func. Count: 34, Neg. LLF: 211.30447128744356
Iteration: 4, Func. Count: 46, Neg. LLF: 160.20848770492827
Iteration: 5, Func. Count: 56, Neg. LLF: 159.9239869064244
Iteration: 6, Func. Count: 66, Neg. LLF: 159.92316847652867
Iteration: 7, Func. Count: 76, Neg. LLF: 159.92169464557176
Iteration: 8, Func. Count: 86, Neg. LLF: 159.9209041709361
Iteration: 9, Func. Count: 96, Neg. LLF: 159.9208089459375
Iteration: 10, Func. Count: 106, Neg. LLF: 159.92080547553076
Iteration: 11, Func. Count: 115, Neg. LLF: 159.92080538277543
Optimization terminated successfully (Exit mode 0)
Current function value: 159.92080547553076
Iterations: 11
Function evaluations: 115
Gradient evaluations: 11
Iteration: 1, Func. Count: 12, Neg. LLF: 180.80288129212065
Iteration: 2, Func. Count: 25, Neg. LLF: 164.91995809904725
Iteration: 3, Func. Count: 37, Neg. LLF: 160.82722398905327
Iteration: 4, Func. Count: 48, Neg. LLF: 161.93410204573973
Iteration: 5, Func. Count: 60, Neg. LLF: 160.35224674120298
Iteration: 6, Func. Count: 71, Neg. LLF: 159.98248904038806
Iteration: 7, Func. Count: 82, Neg. LLF: 159.96251016416014
Iteration: 8, Func. Count: 93, Neg. LLF: 159.9305485857947
Iteration: 9, Func. Count: 104, Neg. LLF: 159.92701830950952
Iteration: 10, Func. Count: 115, Neg. LLF: 159.92586552687123
Iteration: 11, Func. Count: 126, Neg. LLF: 159.92321845225223
Iteration: 12, Func. Count: 137, Neg. LLF: 159.9214030828514
Iteration: 13, Func. Count: 148, Neg. LLF: 159.92085349338063
Iteration: 14, Func. Count: 159, Neg. LLF: 159.9208083839157
Iteration: 15, Func. Count: 170, Neg. LLF: 159.92080550412373
Iteration: 16, Func. Count: 180, Neg. LLF: 159.92080543511935
Optimization terminated successfully (Exit mode 0)
Current function value: 159.92080550412373
Iterations: 16
Function evaluations: 180
Gradient evaluations: 16
Iteration: 1, Func. Count: 13, Neg. LLF: 179.84948430946662
Iteration: 2, Func. Count: 28, Neg. LLF: 170.49619753240663
Iteration: 3, Func. Count: 41, Neg. LLF: 160.14505932674157
Iteration: 4, Func. Count: 53, Neg. LLF: 160.1070617207243
Iteration: 5, Func. Count: 66, Neg. LLF: 159.7251959567095
Iteration: 6, Func. Count: 78, Neg. LLF: 159.635892429939
Iteration: 7, Func. Count: 90, Neg. LLF: 159.62692399327946
Iteration: 8, Func. Count: 102, Neg. LLF: 159.62641273368405
Iteration: 9, Func. Count: 114, Neg. LLF: 159.62614989632436
Iteration: 10, Func. Count: 126, Neg. LLF: 159.62595734894674
Iteration: 11, Func. Count: 138, Neg. LLF: 159.6259326612757
Iteration: 12, Func. Count: 150, Neg. LLF: 159.62592919534418
Iteration: 13, Func. Count: 161, Neg. LLF: 159.625928951459
Optimization terminated successfully (Exit mode 0)
Current function value: 159.62592919534418
Iterations: 13
Function evaluations: 161
Gradient evaluations: 13
Iteration: 1, Func. Count: 14, Neg. LLF: 179.16848443567875
Iteration: 2, Func. Count: 30, Neg. LLF: 168.41577977918652
Iteration: 3, Func. Count: 44, Neg. LLF: 159.64682448533742
Iteration: 4, Func. Count: 57, Neg. LLF: 159.43679746607154
Iteration: 5, Func. Count: 70, Neg. LLF: 166.5193770632307
Iteration: 6, Func. Count: 85, Neg. LLF: 159.20725510624533
Iteration: 7, Func. Count: 98, Neg. LLF: 158.81325863573144
Iteration: 8, Func. Count: 111, Neg. LLF: 158.71251796022594
Iteration: 9, Func. Count: 124, Neg. LLF: 159.74576546182615
Iteration: 10, Func. Count: 138, Neg. LLF: 158.56034550179294
Iteration: 11, Func. Count: 151, Neg. LLF: 158.52675741102254
Iteration: 12, Func. Count: 164, Neg. LLF: 158.47869870684661
Iteration: 13, Func. Count: 177, Neg. LLF: 158.47332315392396
Iteration: 14, Func. Count: 190, Neg. LLF: 158.46615438797545
Iteration: 15, Func. Count: 203, Neg. LLF: 158.4802850875522
Iteration: 16, Func. Count: 217, Neg. LLF: 158.462299682836
Iteration: 17, Func. Count: 230, Neg. LLF: 158.45890216957426
Iteration: 18, Func. Count: 243, Neg. LLF: 158.4584913318516
Iteration: 19, Func. Count: 256, Neg. LLF: 158.4584722212463
Iteration: 20, Func. Count: 269, Neg. LLF: 158.458471812765
Optimization terminated successfully (Exit mode 0)
Current function value: 158.458471812765
Iterations: 20
Function evaluations: 269
Gradient evaluations: 20
Iteration: 1, Func. Count: 11, Neg. LLF: 160.4806808697739
Iteration: 2, Func. Count: 21, Neg. LLF: 161.74086235099767
Iteration: 3, Func. Count: 32, Neg. LLF: 160.3109794691747
Iteration: 4, Func. Count: 43, Neg. LLF: 159.3244836327558
Iteration: 5, Func. Count: 53, Neg. LLF: 159.6792996657075
Iteration: 6, Func. Count: 64, Neg. LLF: 159.49405615796218
Iteration: 7, Func. Count: 75, Neg. LLF: 159.20641791429432
Iteration: 8, Func. Count: 86, Neg. LLF: 159.1673762631727
Iteration: 9, Func. Count: 96, Neg. LLF: 159.1273966133758
Iteration: 10, Func. Count: 106, Neg. LLF: 159.0626572415835
Iteration: 11, Func. Count: 116, Neg. LLF: 158.96779909764734
Iteration: 12, Func. Count: 126, Neg. LLF: 158.95398865732477
Iteration: 13, Func. Count: 136, Neg. LLF: 158.9469774364388
Iteration: 14, Func. Count: 146, Neg. LLF: 158.94681489000294
Iteration: 15, Func. Count: 156, Neg. LLF: 158.9468041559919
Iteration: 16, Func. Count: 166, Neg. LLF: 158.94680213130113
Iteration: 17, Func. Count: 175, Neg. LLF: 158.94680214484376
Optimization terminated successfully (Exit mode 0)
Current function value: 158.94680213130113
Iterations: 17
Function evaluations: 175
Gradient evaluations: 17
Iteration: 1, Func. Count: 12, Neg. LLF: 197.9021322966857
Iteration: 2, Func. Count: 25, Neg. LLF: 161.56715445481254
Iteration: 3, Func. Count: 36, Neg. LLF: 208.65194759720242
Iteration: 4, Func. Count: 48, Neg. LLF: 160.93794597850723
Iteration: 5, Func. Count: 59, Neg. LLF: 160.17165651007423
Iteration: 6, Func. Count: 70, Neg. LLF: 159.9925689418364
Iteration: 7, Func. Count: 81, Neg. LLF: 159.93027062966235
Iteration: 8, Func. Count: 92, Neg. LLF: 159.92098424644396
Iteration: 9, Func. Count: 103, Neg. LLF: 159.92094025611414
Iteration: 10, Func. Count: 114, Neg. LLF: 159.9208562868722
Iteration: 11, Func. Count: 125, Neg. LLF: 159.92081686535226
Iteration: 12, Func. Count: 136, Neg. LLF: 159.9208062515744
Iteration: 13, Func. Count: 147, Neg. LLF: 159.9208054467442
Optimization terminated successfully (Exit mode 0)
Current function value: 159.9208054467442
Iterations: 13
Function evaluations: 147
Gradient evaluations: 13
Iteration: 1, Func. Count: 13, Neg. LLF: 180.74827716488906
Iteration: 2, Func. Count: 27, Neg. LLF: 164.97217336261178
Iteration: 3, Func. Count: 40, Neg. LLF: 160.82927033540696
Iteration: 4, Func. Count: 52, Neg. LLF: 161.7312843365255
Iteration: 5, Func. Count: 65, Neg. LLF: 160.2702982039066
Iteration: 6, Func. Count: 77, Neg. LLF: 159.9820218755678
Iteration: 7, Func. Count: 89, Neg. LLF: 159.94950194435518
Iteration: 8, Func. Count: 101, Neg. LLF: 159.93510925426793
Iteration: 9, Func. Count: 113, Neg. LLF: 159.9311379741959
Iteration: 10, Func. Count: 125, Neg. LLF: 159.9278990143228
Iteration: 11, Func. Count: 137, Neg. LLF: 159.9227946032892
Iteration: 12, Func. Count: 149, Neg. LLF: 159.9210076727493
Iteration: 13, Func. Count: 161, Neg. LLF: 159.92081426906753
Iteration: 14, Func. Count: 173, Neg. LLF: 159.92080587103783
Iteration: 15, Func. Count: 184, Neg. LLF: 159.9208058020975
Optimization terminated successfully (Exit mode 0)
Current function value: 159.92080587103783
Iterations: 15
Function evaluations: 184
Gradient evaluations: 15
Iteration: 1, Func. Count: 14, Neg. LLF: 179.80812991789975
Iteration: 2, Func. Count: 30, Neg. LLF: 170.3667808678923
Iteration: 3, Func. Count: 44, Neg. LLF: 160.14021248965062
Iteration: 4, Func. Count: 57, Neg. LLF: 160.0893570234516
Iteration: 5, Func. Count: 71, Neg. LLF: 159.853357124414
Iteration: 6, Func. Count: 84, Neg. LLF: 159.63343135386827
Iteration: 7, Func. Count: 97, Neg. LLF: 159.62666953214372
Iteration: 8, Func. Count: 110, Neg. LLF: 159.62618258674385
Iteration: 9, Func. Count: 123, Neg. LLF: 159.62607361363501
Iteration: 10, Func. Count: 136, Neg. LLF: 159.62596789298001
Iteration: 11, Func. Count: 149, Neg. LLF: 159.6259334419096
Iteration: 12, Func. Count: 162, Neg. LLF: 159.62592925607706
Iteration: 13, Func. Count: 174, Neg. LLF: 159.6259290121603
Optimization terminated successfully (Exit mode 0)
Current function value: 159.62592925607706
Iterations: 13
Function evaluations: 174
Gradient evaluations: 13
Iteration: 1, Func. Count: 15, Neg. LLF: 179.098393344161
Iteration: 2, Func. Count: 32, Neg. LLF: 168.69421797981838
Iteration: 3, Func. Count: 47, Neg. LLF: 159.65267971428597
Iteration: 4, Func. Count: 61, Neg. LLF: 159.45045247418042
Iteration: 5, Func. Count: 75, Neg. LLF: 167.49279591864436
Iteration: 6, Func. Count: 91, Neg. LLF: 159.22904429797947
Iteration: 7, Func. Count: 105, Neg. LLF: 158.81805292527494
Iteration: 8, Func. Count: 119, Neg. LLF: 160.24915699520696
Iteration: 9, Func. Count: 134, Neg. LLF: 158.69557274248413
Iteration: 10, Func. Count: 148, Neg. LLF: 158.61406884411554
Iteration: 11, Func. Count: 162, Neg. LLF: 158.5595876178266
Iteration: 12, Func. Count: 176, Neg. LLF: 158.53092455986564
Iteration: 13, Func. Count: 190, Neg. LLF: 158.51629642703213
Iteration: 14, Func. Count: 204, Neg. LLF: 158.507805417236
Iteration: 15, Func. Count: 218, Neg. LLF: 158.4934826756767
Iteration: 16, Func. Count: 232, Neg. LLF: 158.4764966330573
Iteration: 17, Func. Count: 246, Neg. LLF: 158.46556405524922
Iteration: 18, Func. Count: 260, Neg. LLF: 158.46145705749169
Iteration: 19, Func. Count: 274, Neg. LLF: 158.56184482606662
Iteration: 20, Func. Count: 290, Neg. LLF: 158.45880216480114
Iteration: 21, Func. Count: 304, Neg. LLF: 158.4585476005016
Iteration: 22, Func. Count: 318, Neg. LLF: 158.45847223440862
Iteration: 23, Func. Count: 332, Neg. LLF: 158.4584717633222
Optimization terminated successfully (Exit mode 0)
Current function value: 158.4584717633222
Iterations: 23
Function evaluations: 332
Gradient evaluations: 23
Iteration: 1, Func. Count: 12, Neg. LLF: 161.3132965549294
Iteration: 2, Func. Count: 23, Neg. LLF: 162.22338199067528
Iteration: 3, Func. Count: 36, Neg. LLF: 164.96126333684614
Iteration: 4, Func. Count: 48, Neg. LLF: 169.74735297133535
Iteration: 5, Func. Count: 62, Neg. LLF: 159.95715353700533
Iteration: 6, Func. Count: 73, Neg. LLF: 159.4420381675657
Iteration: 7, Func. Count: 84, Neg. LLF: 159.49095130300418
Iteration: 8, Func. Count: 96, Neg. LLF: 159.40073846020184
Iteration: 9, Func. Count: 108, Neg. LLF: 159.4719540937721
Iteration: 10, Func. Count: 120, Neg. LLF: 159.13697111366056
Iteration: 11, Func. Count: 132, Neg. LLF: 159.00676347077888
Iteration: 12, Func. Count: 144, Neg. LLF: 159.01871971503758
Iteration: 13, Func. Count: 156, Neg. LLF: 158.9373111289918
Iteration: 14, Func. Count: 167, Neg. LLF: 158.82542753940487
Iteration: 15, Func. Count: 178, Neg. LLF: 158.78679535532027
Iteration: 16, Func. Count: 189, Neg. LLF: 158.7717922453824
Iteration: 17, Func. Count: 200, Neg. LLF: 158.77118319559807
Iteration: 18, Func. Count: 211, Neg. LLF: 158.77117505314723
Iteration: 19, Func. Count: 221, Neg. LLF: 158.77117502966655
Optimization terminated successfully (Exit mode 0)
Current function value: 158.77117505314723
Iterations: 19
Function evaluations: 221
Gradient evaluations: 19
Iteration: 1, Func. Count: 13, Neg. LLF: 193.11760376896225
Iteration: 2, Func. Count: 27, Neg. LLF: 163.8618789030981
Iteration: 3, Func. Count: 40, Neg. LLF: 176.0525715467555
Iteration: 4, Func. Count: 53, Neg. LLF: 158.79940841262166
Iteration: 5, Func. Count: 65, Neg. LLF: 158.67536265034357
Iteration: 6, Func. Count: 77, Neg. LLF: 158.5596979591735
Iteration: 7, Func. Count: 89, Neg. LLF: 158.53184472112324
Iteration: 8, Func. Count: 101, Neg. LLF: 158.52647239755765
Iteration: 9, Func. Count: 113, Neg. LLF: 158.52318422940928
Iteration: 10, Func. Count: 125, Neg. LLF: 158.51772774423608
Iteration: 11, Func. Count: 137, Neg. LLF: 158.5130322353722
Iteration: 12, Func. Count: 149, Neg. LLF: 158.5103558817895
Iteration: 13, Func. Count: 161, Neg. LLF: 158.50979662639264
Iteration: 14, Func. Count: 173, Neg. LLF: 158.5097284875792
Iteration: 15, Func. Count: 185, Neg. LLF: 158.50971952450064
Iteration: 16, Func. Count: 197, Neg. LLF: 158.50971893621582
Optimization terminated successfully (Exit mode 0)
Current function value: 158.50971893621582
Iterations: 16
Function evaluations: 197
Gradient evaluations: 16
Iteration: 1, Func. Count: 14, Neg. LLF: 187.8053361279108
Iteration: 2, Func. Count: 31, Neg. LLF: 166.98534515942515
Iteration: 3, Func. Count: 45, Neg. LLF: 160.0633635736951
Iteration: 4, Func. Count: 58, Neg. LLF: 160.49960609709564
Iteration: 5, Func. Count: 72, Neg. LLF: 159.7109346405802
Iteration: 6, Func. Count: 85, Neg. LLF: 158.73899837342765
Iteration: 7, Func. Count: 98, Neg. LLF: 158.47964533638975
Iteration: 8, Func. Count: 111, Neg. LLF: 158.31389288680091
Iteration: 9, Func. Count: 124, Neg. LLF: 158.30699701718157
Iteration: 10, Func. Count: 137, Neg. LLF: 158.304197703432
Iteration: 11, Func. Count: 150, Neg. LLF: 158.30063228357054
Iteration: 12, Func. Count: 163, Neg. LLF: 158.30037165258724
Iteration: 13, Func. Count: 176, Neg. LLF: 158.30000138559308
Iteration: 14, Func. Count: 189, Neg. LLF: 158.29980637203082
Iteration: 15, Func. Count: 212, Neg. LLF: 159.2236168047495
Iteration: 16, Func. Count: 235, Neg. LLF: 158.39303060581904
Iteration: 17, Func. Count: 258, Neg. LLF: 158.24818544164313
Iteration: 18, Func. Count: 281, Neg. LLF: 158.30003545933008
Iteration: 19, Func. Count: 296, Neg. LLF: 158.30002266143782
Iteration: 20, Func. Count: 308, Neg. LLF: 158.30002226360295
Optimization terminated successfully (Exit mode 0)
Current function value: 158.30002266143782
Iterations: 21
Function evaluations: 308
Gradient evaluations: 20
Iteration: 1, Func. Count: 15, Neg. LLF: 163.00092291691638
Iteration: 2, Func. Count: 32, Neg. LLF: 167.4493898094155
Iteration: 3, Func. Count: 47, Neg. LLF: 160.66330395044375
Iteration: 4, Func. Count: 62, Neg. LLF: 160.53874692548857
Iteration: 5, Func. Count: 77, Neg. LLF: 159.5096167875596
Iteration: 6, Func. Count: 91, Neg. LLF: 159.38008897653341
Iteration: 7, Func. Count: 105, Neg. LLF: 159.3381311669413
Iteration: 8, Func. Count: 119, Neg. LLF: 159.330710897841
Iteration: 9, Func. Count: 133, Neg. LLF: 159.32494873143258
Iteration: 10, Func. Count: 147, Neg. LLF: 159.29710601251585
Iteration: 11, Func. Count: 161, Neg. LLF: 159.28291434395507
Iteration: 12, Func. Count: 175, Neg. LLF: 159.2791400612633
Iteration: 13, Func. Count: 189, Neg. LLF: 159.27864152729583
Iteration: 14, Func. Count: 203, Neg. LLF: 159.27785919755672
Iteration: 15, Func. Count: 217, Neg. LLF: 159.2778150231345
Iteration: 16, Func. Count: 231, Neg. LLF: 159.2778128997103
Iteration: 17, Func. Count: 244, Neg. LLF: 159.27781269085145
Optimization terminated successfully (Exit mode 0)
Current function value: 159.2778128997103
Iterations: 17
Function evaluations: 244
Gradient evaluations: 17
Iteration: 1, Func. Count: 16, Neg. LLF: 161.39904007006868
Iteration: 2, Func. Count: 33, Neg. LLF: 163.47178138986865
Iteration: 3, Func. Count: 49, Neg. LLF: 170.54984392313847
Iteration: 4, Func. Count: 65, Neg. LLF: 157.47136829285515
Iteration: 5, Func. Count: 80, Neg. LLF: 157.25093747415212
Iteration: 6, Func. Count: 95, Neg. LLF: 159.33018115964984
Iteration: 7, Func. Count: 112, Neg. LLF: 157.3789435180493
Iteration: 8, Func. Count: 128, Neg. LLF: 157.05558116607406
Iteration: 9, Func. Count: 143, Neg. LLF: 157.28181262671472
Iteration: 10, Func. Count: 160, Neg. LLF: 156.7348460107774
Iteration: 11, Func. Count: 175, Neg. LLF: 156.61371540831001
Iteration: 12, Func. Count: 190, Neg. LLF: 156.57591582660112
Iteration: 13, Func. Count: 205, Neg. LLF: 156.56209174816493
Iteration: 14, Func. Count: 220, Neg. LLF: 156.5415520207981
Iteration: 15, Func. Count: 235, Neg. LLF: 156.53024913592046
Iteration: 16, Func. Count: 250, Neg. LLF: 156.5298002624695
Iteration: 17, Func. Count: 265, Neg. LLF: 156.5297855866576
Iteration: 18, Func. Count: 279, Neg. LLF: 156.52978551538536
Optimization terminated successfully (Exit mode 0)
Current function value: 156.5297855866576
Iterations: 18
Function evaluations: 279
Gradient evaluations: 18
Iteration: 1, Func. Count: 6, Neg. LLF: 163.08668221538835
Iteration: 2, Func. Count: 11, Neg. LLF: 166.3099024762922
Iteration: 3, Func. Count: 17, Neg. LLF: 159.46873835528214
Iteration: 4, Func. Count: 22, Neg. LLF: 159.45987860791433
Iteration: 5, Func. Count: 27, Neg. LLF: 159.41142338473327
Iteration: 6, Func. Count: 32, Neg. LLF: 159.34059178748322
Iteration: 7, Func. Count: 37, Neg. LLF: 159.313143487808
Iteration: 8, Func. Count: 42, Neg. LLF: 159.30998827205735
Iteration: 9, Func. Count: 47, Neg. LLF: 159.30992784606303
Iteration: 10, Func. Count: 51, Neg. LLF: 159.309927831387
Optimization terminated successfully (Exit mode 0)
Current function value: 159.30992784606303
Iterations: 10
Function evaluations: 51
Gradient evaluations: 10
Iteration: 1, Func. Count: 5, Neg. LLF: 163.26998129555344
Iteration: 2, Func. Count: 9, Neg. LLF: 163.7263447965824
Iteration: 3, Func. Count: 14, Neg. LLF: 161.94949163940677
Iteration: 4, Func. Count: 18, Neg. LLF: 161.91894324767793
Iteration: 5, Func. Count: 22, Neg. LLF: 161.80488015394485
Iteration: 6, Func. Count: 26, Neg. LLF: 161.77488854468442
Iteration: 7, Func. Count: 30, Neg. LLF: 161.77027127473482
Iteration: 8, Func. Count: 34, Neg. LLF: 161.77013088700616
Iteration: 9, Func. Count: 38, Neg. LLF: 161.77012504735265
Iteration: 10, Func. Count: 41, Neg. LLF: 161.77012504844612
Optimization terminated successfully (Exit mode 0)
Current function value: 161.77012504735265
Iterations: 10
Function evaluations: 41
Gradient evaluations: 10
Iteration: 1, Func. Count: 6, Neg. LLF: 173.5867287037568
Iteration: 2, Func. Count: 12, Neg. LLF: 159.93014051325295
Iteration: 3, Func. Count: 17, Neg. LLF: 159.6528825608333
Iteration: 4, Func. Count: 22, Neg. LLF: 159.5814870044743
Iteration: 5, Func. Count: 28, Neg. LLF: 159.35588000967348
Iteration: 6, Func. Count: 33, Neg. LLF: 159.3551159234478
Iteration: 7, Func. Count: 38, Neg. LLF: 159.35511520371952
Optimization terminated successfully (Exit mode 0)
Current function value: 159.35511520371952
Iterations: 7
Function evaluations: 38
Gradient evaluations: 7
Iteration: 1, Func. Count: 7, Neg. LLF: 168.04909892211649
Iteration: 2, Func. Count: 14, Neg. LLF: 159.57798157220128
Iteration: 3, Func. Count: 20, Neg. LLF: 162.33074064469676
Iteration: 4, Func. Count: 27, Neg. LLF: 159.41089870222828
Iteration: 5, Func. Count: 33, Neg. LLF: 159.40911344689056
Iteration: 6, Func. Count: 39, Neg. LLF: 159.40790776574283
Iteration: 7, Func. Count: 45, Neg. LLF: 159.3981901180949
Iteration: 8, Func. Count: 51, Neg. LLF: 159.37040441575954
Iteration: 9, Func. Count: 57, Neg. LLF: 159.35837533868752
Iteration: 10, Func. Count: 63, Neg. LLF: 159.35514917282097
Iteration: 11, Func. Count: 69, Neg. LLF: 159.35511516774275
Iteration: 12, Func. Count: 74, Neg. LLF: 159.3551147909159
Optimization terminated successfully (Exit mode 0)
Current function value: 159.35511516774275
Iterations: 12
Function evaluations: 74
Gradient evaluations: 12
Iteration: 1, Func. Count: 8, Neg. LLF: 166.76923008049687
Iteration: 2, Func. Count: 16, Neg. LLF: 159.48592364523503
Iteration: 3, Func. Count: 23, Neg. LLF: 159.4983893547318
Iteration: 4, Func. Count: 31, Neg. LLF: 159.46919432354517
Iteration: 5, Func. Count: 38, Neg. LLF: 159.46534303570544
Iteration: 6, Func. Count: 45, Neg. LLF: 159.42822009027046
Iteration: 7, Func. Count: 52, Neg. LLF: 159.41867286179942
Iteration: 8, Func. Count: 59, Neg. LLF: 159.41689516882695
Iteration: 9, Func. Count: 66, Neg. LLF: 159.4166671452632
Iteration: 10, Func. Count: 73, Neg. LLF: 159.4165213426444
Iteration: 11, Func. Count: 80, Neg. LLF: 159.41525845879127
Iteration: 12, Func. Count: 87, Neg. LLF: 159.4298261774257
Iteration: 13, Func. Count: 95, Neg. LLF: 159.41065375988558
Iteration: 14, Func. Count: 102, Neg. LLF: 159.39422920615948
Iteration: 15, Func. Count: 109, Neg. LLF: 159.35966832171138
Iteration: 16, Func. Count: 116, Neg. LLF: 159.35732967440578
Iteration: 17, Func. Count: 123, Neg. LLF: 159.3564644267109
Iteration: 18, Func. Count: 130, Neg. LLF: 159.35542727521184
Iteration: 19, Func. Count: 137, Neg. LLF: 159.35513600914945
Iteration: 20, Func. Count: 144, Neg. LLF: 159.35511555106007
Iteration: 21, Func. Count: 151, Neg. LLF: 159.3551992387311
Optimization terminated successfully (Exit mode 0)
Current function value: 159.35511520583714
Iterations: 22
Function evaluations: 152
Gradient evaluations: 21
Iteration: 1, Func. Count: 9, Neg. LLF: 170.0837641600107
Iteration: 2, Func. Count: 18, Neg. LLF: 159.5436797543994
Iteration: 3, Func. Count: 26, Neg. LLF: 159.53216200406774
Iteration: 4, Func. Count: 34, Neg. LLF: 159.51170181899838
Iteration: 5, Func. Count: 42, Neg. LLF: 159.50199642742353
Iteration: 6, Func. Count: 50, Neg. LLF: 159.49236993439092
Iteration: 7, Func. Count: 58, Neg. LLF: 159.45911742558707
Iteration: 8, Func. Count: 66, Neg. LLF: 159.45643369604505
Iteration: 9, Func. Count: 74, Neg. LLF: 159.43664358187874
Iteration: 10, Func. Count: 82, Neg. LLF: 159.38628118021174
Iteration: 11, Func. Count: 90, Neg. LLF: 159.38287475900705
Iteration: 12, Func. Count: 98, Neg. LLF: 159.35932239316406
Iteration: 13, Func. Count: 106, Neg. LLF: 159.35777272082854
Iteration: 14, Func. Count: 114, Neg. LLF: 159.35632695326655
Iteration: 15, Func. Count: 122, Neg. LLF: 159.3552524620369
Iteration: 16, Func. Count: 130, Neg. LLF: 159.35556352213368
Iteration: 17, Func. Count: 139, Neg. LLF: 159.35511508455875
Iteration: 18, Func. Count: 146, Neg. LLF: 159.35511471616647
Optimization terminated successfully (Exit mode 0)
Current function value: 159.35511508455875
Iterations: 19
Function evaluations: 146
Gradient evaluations: 18
Iteration: 1, Func. Count: 6, Neg. LLF: 161.40774107761595
Iteration: 2, Func. Count: 11, Neg. LLF: 165.88949107181054
Iteration: 3, Func. Count: 17, Neg. LLF: 157.39845719765128
Iteration: 4, Func. Count: 22, Neg. LLF: 157.37994061406295
Iteration: 5, Func. Count: 27, Neg. LLF: 157.29099955598159
Iteration: 6, Func. Count: 32, Neg. LLF: 157.12456613746699
Iteration: 7, Func. Count: 37, Neg. LLF: 157.09725988409687
Iteration: 8, Func. Count: 42, Neg. LLF: 157.09369403738003
Iteration: 9, Func. Count: 47, Neg. LLF: 157.09354870492783
Iteration: 10, Func. Count: 52, Neg. LLF: 157.09349683484567
Iteration: 11, Func. Count: 56, Neg. LLF: 157.0934968149345
Optimization terminated successfully (Exit mode 0)
Current function value: 157.09349683484567
Iterations: 11
Function evaluations: 56
Gradient evaluations: 11
Iteration: 1, Func. Count: 7, Neg. LLF: 173.58944735427994
Iteration: 2, Func. Count: 14, Neg. LLF: 159.92713596795573
Iteration: 3, Func. Count: 20, Neg. LLF: 159.66075422369573
Iteration: 4, Func. Count: 26, Neg. LLF: 159.58941917292023
Iteration: 5, Func. Count: 33, Neg. LLF: 159.35593380978122
Iteration: 6, Func. Count: 39, Neg. LLF: 159.355115780921
Iteration: 7, Func. Count: 45, Neg. LLF: 159.35511516086137
Optimization terminated successfully (Exit mode 0)
Current function value: 159.35511516086137
Iterations: 7
Function evaluations: 45
Gradient evaluations: 7
Iteration: 1, Func. Count: 8, Neg. LLF: 167.8834866224187
Iteration: 2, Func. Count: 16, Neg. LLF: 159.93907774189202
Iteration: 3, Func. Count: 23, Neg. LLF: 159.6504941596826
Iteration: 4, Func. Count: 30, Neg. LLF: 159.58649718915208
Iteration: 5, Func. Count: 38, Neg. LLF: 159.19259691534657
Iteration: 6, Func. Count: 45, Neg. LLF: 159.24015723581758
Iteration: 7, Func. Count: 53, Neg. LLF: 159.0891328459098
Iteration: 8, Func. Count: 60, Neg. LLF: 159.0858427591785
Iteration: 9, Func. Count: 67, Neg. LLF: 159.08512016993106
Iteration: 10, Func. Count: 74, Neg. LLF: 159.08511840080158
Iteration: 11, Func. Count: 80, Neg. LLF: 159.08511822086925
Optimization terminated successfully (Exit mode 0)
Current function value: 159.08511840080158
Iterations: 11
Function evaluations: 80
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 166.69927533800853
Iteration: 2, Func. Count: 18, Neg. LLF: 162.17903584870425
Iteration: 3, Func. Count: 27, Neg. LLF: 159.68478813060787
Iteration: 4, Func. Count: 35, Neg. LLF: 159.54826660561076
Iteration: 5, Func. Count: 43, Neg. LLF: 159.47944509147803
Iteration: 6, Func. Count: 51, Neg. LLF: 159.46221742417274
Iteration: 7, Func. Count: 59, Neg. LLF: 159.46049267414136
Iteration: 8, Func. Count: 67, Neg. LLF: 159.45987344680012
Iteration: 9, Func. Count: 75, Neg. LLF: 159.45764863118868
Iteration: 10, Func. Count: 83, Neg. LLF: 159.4505070026262
Iteration: 11, Func. Count: 91, Neg. LLF: 159.4226447267388
Iteration: 12, Func. Count: 99, Neg. LLF: 159.40933906652697
Iteration: 13, Func. Count: 107, Neg. LLF: 159.40048319649372
Iteration: 14, Func. Count: 115, Neg. LLF: 159.39789796160974
Iteration: 15, Func. Count: 123, Neg. LLF: 159.3930506978578
Iteration: 16, Func. Count: 131, Neg. LLF: 159.37035034206266
Iteration: 17, Func. Count: 139, Neg. LLF: 159.36292400943063
Iteration: 18, Func. Count: 147, Neg. LLF: 159.35627723600075
Iteration: 19, Func. Count: 155, Neg. LLF: 159.35526567647275
Iteration: 20, Func. Count: 163, Neg. LLF: 159.35511605287775
Iteration: 21, Func. Count: 171, Neg. LLF: 159.35515355797705
Optimization terminated successfully (Exit mode 0)
Current function value: 159.35511566885822
Iterations: 22
Function evaluations: 172
Gradient evaluations: 21
Iteration: 1, Func. Count: 10, Neg. LLF: 169.43050196551957
Iteration: 2, Func. Count: 20, Neg. LLF: 156.72523741447554
Iteration: 3, Func. Count: 29, Neg. LLF: 158.95337588774348
Iteration: 4, Func. Count: 39, Neg. LLF: 156.7376818393593
Iteration: 5, Func. Count: 49, Neg. LLF: 156.80729617808336
Iteration: 6, Func. Count: 59, Neg. LLF: 156.54595084470913
Iteration: 7, Func. Count: 68, Neg. LLF: 156.5106914263254
Iteration: 8, Func. Count: 77, Neg. LLF: 156.49006207743267
Iteration: 9, Func. Count: 86, Neg. LLF: 156.4806025520494
Iteration: 10, Func. Count: 95, Neg. LLF: 156.47977434601023
Iteration: 11, Func. Count: 104, Neg. LLF: 156.47975938011217
Iteration: 12, Func. Count: 112, Neg. LLF: 156.47975929156738
Optimization terminated successfully (Exit mode 0)
Current function value: 156.47975938011217
Iterations: 12
Function evaluations: 112
Gradient evaluations: 12
Iteration: 1, Func. Count: 7, Neg. LLF: 160.55759171017323
Iteration: 2, Func. Count: 13, Neg. LLF: 167.54019454489816
Iteration: 3, Func. Count: 20, Neg. LLF: 157.41113347118102
Iteration: 4, Func. Count: 26, Neg. LLF: 157.39108328056213
Iteration: 5, Func. Count: 32, Neg. LLF: 157.29618381803192
Iteration: 6, Func. Count: 38, Neg. LLF: 157.1132921107394
Iteration: 7, Func. Count: 44, Neg. LLF: 157.09829356717893
Iteration: 8, Func. Count: 50, Neg. LLF: 157.0936843545173
Iteration: 9, Func. Count: 56, Neg. LLF: 157.0935444590308
Iteration: 10, Func. Count: 62, Neg. LLF: 157.09349683514245
Iteration: 11, Func. Count: 67, Neg. LLF: 157.0934968291288
Optimization terminated successfully (Exit mode 0)
Current function value: 157.09349683514245
Iterations: 11
Function evaluations: 67
Gradient evaluations: 11
Iteration: 1, Func. Count: 8, Neg. LLF: 173.61698904890113
Iteration: 2, Func. Count: 16, Neg. LLF: 159.9122416582842
Iteration: 3, Func. Count: 23, Neg. LLF: 159.69671229931797
Iteration: 4, Func. Count: 30, Neg. LLF: 159.44987481467237
Iteration: 5, Func. Count: 37, Neg. LLF: 159.36938287076407
Iteration: 6, Func. Count: 44, Neg. LLF: 159.3555649493376
Iteration: 7, Func. Count: 51, Neg. LLF: 159.35513534146878
Iteration: 8, Func. Count: 58, Neg. LLF: 159.3551161285505
Iteration: 9, Func. Count: 65, Neg. LLF: 159.35511508587737
Iteration: 10, Func. Count: 71, Neg. LLF: 159.35511546425434
Optimization terminated successfully (Exit mode 0)
Current function value: 159.35511508587737
Iterations: 10
Function evaluations: 71
Gradient evaluations: 10
Iteration: 1, Func. Count: 9, Neg. LLF: 167.91209456846897
Iteration: 2, Func. Count: 18, Neg. LLF: 159.94448020840204
Iteration: 3, Func. Count: 26, Neg. LLF: 159.6627736771614
Iteration: 4, Func. Count: 34, Neg. LLF: 159.53607025028668
Iteration: 5, Func. Count: 42, Neg. LLF: 159.2040192798482
Iteration: 6, Func. Count: 50, Neg. LLF: 159.09208823953065
Iteration: 7, Func. Count: 58, Neg. LLF: 159.086409516408
Iteration: 8, Func. Count: 66, Neg. LLF: 159.08537588161838
Iteration: 9, Func. Count: 74, Neg. LLF: 159.0851209560628
Iteration: 10, Func. Count: 82, Neg. LLF: 159.08511917759728
Iteration: 11, Func. Count: 90, Neg. LLF: 159.08511839650689
Optimization terminated successfully (Exit mode 0)
Current function value: 159.08511839650689
Iterations: 11
Function evaluations: 90
Gradient evaluations: 11
Iteration: 1, Func. Count: 10, Neg. LLF: 166.53680551634
Iteration: 2, Func. Count: 20, Neg. LLF: 162.40835017400914
Iteration: 3, Func. Count: 30, Neg. LLF: 159.72084230837856
Iteration: 4, Func. Count: 39, Neg. LLF: 159.54897477079803
Iteration: 5, Func. Count: 48, Neg. LLF: 159.46232240348712
Iteration: 6, Func. Count: 57, Neg. LLF: 159.4725612785035
Iteration: 7, Func. Count: 67, Neg. LLF: 159.43775803791152
Iteration: 8, Func. Count: 76, Neg. LLF: 159.41052269129136
Iteration: 9, Func. Count: 85, Neg. LLF: 159.43924645382958
Iteration: 10, Func. Count: 95, Neg. LLF: 159.36914547816542
Iteration: 11, Func. Count: 104, Neg. LLF: 159.30366274327164
Iteration: 12, Func. Count: 113, Neg. LLF: 159.258279897163
Iteration: 13, Func. Count: 122, Neg. LLF: 159.232915928737
Iteration: 14, Func. Count: 131, Neg. LLF: 159.22682347999068
Iteration: 15, Func. Count: 140, Neg. LLF: 159.21894750804336
Iteration: 16, Func. Count: 149, Neg. LLF: 159.21840198382412
Iteration: 17, Func. Count: 158, Neg. LLF: 159.21750071953394
Iteration: 18, Func. Count: 167, Neg. LLF: 159.21702757989877
Iteration: 19, Func. Count: 176, Neg. LLF: 159.19971759196912
Iteration: 20, Func. Count: 185, Neg. LLF: 161.05975394705902
Iteration: 21, Func. Count: 195, Neg. LLF: 160.94160811928163
Iteration: 22, Func. Count: 205, Neg. LLF: 159.46887532533566
Iteration: 23, Func. Count: 215, Neg. LLF: 189.16331906551648
Iteration: 24, Func. Count: 227, Neg. LLF: 183.29427679918768
Iteration: 25, Func. Count: 246, Neg. LLF: 159.23482088541277
Iteration: 26, Func. Count: 256, Neg. LLF: 159.13409706347068
Iteration: 27, Func. Count: 266, Neg. LLF: 157.68947503879016
Iteration: 28, Func. Count: 275, Neg. LLF: 157.5844543646319
Iteration: 29, Func. Count: 284, Neg. LLF: 157.19957660139184
Iteration: 30, Func. Count: 293, Neg. LLF: 157.11932580265147
Iteration: 31, Func. Count: 302, Neg. LLF: 157.10277692725384
Iteration: 32, Func. Count: 311, Neg. LLF: 157.09366269447384
Iteration: 33, Func. Count: 320, Neg. LLF: 157.09349900368372
Iteration: 34, Func. Count: 329, Neg. LLF: 157.0934968802489
Iteration: 35, Func. Count: 337, Neg. LLF: 157.093496886046
Optimization terminated successfully (Exit mode 0)
Current function value: 157.0934968802489
Iterations: 36
Function evaluations: 337
Gradient evaluations: 35
Iteration: 1, Func. Count: 11, Neg. LLF: 169.19575942270683
Iteration: 2, Func. Count: 22, Neg. LLF: 156.73050832324282
Iteration: 3, Func. Count: 32, Neg. LLF: 158.03495498599176
Iteration: 4, Func. Count: 43, Neg. LLF: 157.73230292785885
Iteration: 5, Func. Count: 54, Neg. LLF: 156.82048004987578
Iteration: 6, Func. Count: 65, Neg. LLF: 156.54327340559314
Iteration: 7, Func. Count: 75, Neg. LLF: 156.50310872163703
Iteration: 8, Func. Count: 85, Neg. LLF: 156.48175705677122
Iteration: 9, Func. Count: 95, Neg. LLF: 156.47986338538442
Iteration: 10, Func. Count: 105, Neg. LLF: 156.4797597941534
Iteration: 11, Func. Count: 115, Neg. LLF: 156.47975915544424
Optimization terminated successfully (Exit mode 0)
Current function value: 156.47975915544424
Iterations: 11
Function evaluations: 115
Gradient evaluations: 11
Iteration: 1, Func. Count: 8, Neg. LLF: 159.75243854569436
Iteration: 2, Func. Count: 15, Neg. LLF: 167.64334564652887
Iteration: 3, Func. Count: 23, Neg. LLF: 157.42093735519592
Iteration: 4, Func. Count: 30, Neg. LLF: 157.39898796710162
Iteration: 5, Func. Count: 37, Neg. LLF: 157.25999567166264
Iteration: 6, Func. Count: 44, Neg. LLF: 157.17653002923322
Iteration: 7, Func. Count: 51, Neg. LLF: 157.1023858153325
Iteration: 8, Func. Count: 58, Neg. LLF: 157.09388686205364
Iteration: 9, Func. Count: 65, Neg. LLF: 157.09349921442788
Iteration: 10, Func. Count: 72, Neg. LLF: 157.09349682508167
Iteration: 11, Func. Count: 78, Neg. LLF: 157.09349683949245
Optimization terminated successfully (Exit mode 0)
Current function value: 157.09349682508167
Iterations: 11
Function evaluations: 78
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 173.6107740561858
Iteration: 2, Func. Count: 18, Neg. LLF: 159.91052591425662
Iteration: 3, Func. Count: 26, Neg. LLF: 159.6993742501806
Iteration: 4, Func. Count: 34, Neg. LLF: 159.43711591082157
Iteration: 5, Func. Count: 42, Neg. LLF: 159.3678315712312
Iteration: 6, Func. Count: 50, Neg. LLF: 159.35546602431688
Iteration: 7, Func. Count: 58, Neg. LLF: 159.35513127859596
Iteration: 8, Func. Count: 66, Neg. LLF: 159.3551159004445
Iteration: 9, Func. Count: 74, Neg. LLF: 159.35511518313876
Optimization terminated successfully (Exit mode 0)
Current function value: 159.35511518313876
Iterations: 9
Function evaluations: 74
Gradient evaluations: 9
Iteration: 1, Func. Count: 10, Neg. LLF: 167.89602062718026
Iteration: 2, Func. Count: 20, Neg. LLF: 159.94500971978482
Iteration: 3, Func. Count: 29, Neg. LLF: 159.67543410336796
Iteration: 4, Func. Count: 38, Neg. LLF: 159.46852279498083
Iteration: 5, Func. Count: 47, Neg. LLF: 159.2377804409899
Iteration: 6, Func. Count: 56, Neg. LLF: 159.09472539933034
Iteration: 7, Func. Count: 65, Neg. LLF: 159.08835466220253
Iteration: 8, Func. Count: 74, Neg. LLF: 159.08574023914736
Iteration: 9, Func. Count: 83, Neg. LLF: 159.08520348479655
Iteration: 10, Func. Count: 92, Neg. LLF: 159.08511848039302
Iteration: 11, Func. Count: 100, Neg. LLF: 159.08511830041905
Optimization terminated successfully (Exit mode 0)
Current function value: 159.08511848039302
Iterations: 11
Function evaluations: 100
Gradient evaluations: 11
Iteration: 1, Func. Count: 11, Neg. LLF: 166.59380608187544
Iteration: 2, Func. Count: 22, Neg. LLF: 162.19190130389845
Iteration: 3, Func. Count: 33, Neg. LLF: 159.71346217307055
Iteration: 4, Func. Count: 43, Neg. LLF: 159.55681486495092
Iteration: 5, Func. Count: 53, Neg. LLF: 159.46092984536125
Iteration: 6, Func. Count: 63, Neg. LLF: 159.45821875071846
Iteration: 7, Func. Count: 73, Neg. LLF: 159.4570529045461
Iteration: 8, Func. Count: 83, Neg. LLF: 159.45586659357687
Iteration: 9, Func. Count: 93, Neg. LLF: 159.4510050575031
Iteration: 10, Func. Count: 103, Neg. LLF: 159.43681448527812
Iteration: 11, Func. Count: 113, Neg. LLF: 159.4207314378954
Iteration: 12, Func. Count: 123, Neg. LLF: 159.40806113716283
Iteration: 13, Func. Count: 133, Neg. LLF: 159.39885287008002
Iteration: 14, Func. Count: 143, Neg. LLF: 159.39724145315338
Iteration: 15, Func. Count: 153, Neg. LLF: 159.38504060832776
Iteration: 16, Func. Count: 163, Neg. LLF: 159.35742880117198
Iteration: 17, Func. Count: 173, Neg. LLF: 159.35526839697468
Iteration: 18, Func. Count: 183, Neg. LLF: 159.3551152812689
Iteration: 19, Func. Count: 193, Neg. LLF: 159.35511501733416
Optimization terminated successfully (Exit mode 0)
Current function value: 159.35511501733416
Iterations: 19
Function evaluations: 193
Gradient evaluations: 19
Iteration: 1, Func. Count: 12, Neg. LLF: 169.40612857547958
Iteration: 2, Func. Count: 24, Neg. LLF: 156.71663644812728
Iteration: 3, Func. Count: 35, Neg. LLF: 158.55063105700717
Iteration: 4, Func. Count: 47, Neg. LLF: 157.39603129770074
Iteration: 5, Func. Count: 59, Neg. LLF: 156.704314942574
Iteration: 6, Func. Count: 71, Neg. LLF: 156.54406989520427
Iteration: 7, Func. Count: 82, Neg. LLF: 156.50234262030222
Iteration: 8, Func. Count: 93, Neg. LLF: 156.4816853748587
Iteration: 9, Func. Count: 104, Neg. LLF: 156.47985362613773
Iteration: 10, Func. Count: 115, Neg. LLF: 156.47975978563264
Iteration: 11, Func. Count: 126, Neg. LLF: 156.47975946729463
Optimization terminated successfully (Exit mode 0)
Current function value: 156.47975946729463
Iterations: 11
Function evaluations: 126
Gradient evaluations: 11
Iteration: 1, Func. Count: 5, Neg. LLF: 165.7686916846661
Iteration: 2, Func. Count: 9, Neg. LLF: 165.8475837186526
Iteration: 3, Func. Count: 14, Neg. LLF: 165.66057987412952
Iteration: 4, Func. Count: 18, Neg. LLF: 165.5462712456062
Iteration: 5, Func. Count: 22, Neg. LLF: 164.94155894040117
Iteration: 6, Func. Count: 26, Neg. LLF: 162.98649793228157
Iteration: 7, Func. Count: 30, Neg. LLF: 162.95079660278736
Iteration: 8, Func. Count: 34, Neg. LLF: 162.89524860825404
Iteration: 9, Func. Count: 38, Neg. LLF: 162.89299701762607
Iteration: 10, Func. Count: 42, Neg. LLF: 162.89259505482406
Iteration: 11, Func. Count: 46, Neg. LLF: 162.89257851484626
Iteration: 12, Func. Count: 49, Neg. LLF: 162.8925785843091
Optimization terminated successfully (Exit mode 0)
Current function value: 162.89257851484626
Iterations: 12
Function evaluations: 49
Gradient evaluations: 12
Iteration: 1, Func. Count: 6, Neg. LLF: 173.5603864891649
Iteration: 2, Func. Count: 12, Neg. LLF: 160.4058072299154
Iteration: 3, Func. Count: 17, Neg. LLF: 159.4010001389646
Iteration: 4, Func. Count: 22, Neg. LLF: 159.38763744946434
Iteration: 5, Func. Count: 28, Neg. LLF: 159.35537607777374
Iteration: 6, Func. Count: 33, Neg. LLF: 159.3551151125845
Iteration: 7, Func. Count: 37, Neg. LLF: 159.35511549149257
Optimization terminated successfully (Exit mode 0)
Current function value: 159.3551151125845
Iterations: 7
Function evaluations: 37
Gradient evaluations: 7
Iteration: 1, Func. Count: 7, Neg. LLF: 168.57595822688577
Iteration: 2, Func. Count: 14, Neg. LLF: 159.67839982487627
Iteration: 3, Func. Count: 20, Neg. LLF: 159.3319081426604
Iteration: 4, Func. Count: 26, Neg. LLF: 159.32626749915553
Iteration: 5, Func. Count: 32, Neg. LLF: 159.3227814041355
Iteration: 6, Func. Count: 38, Neg. LLF: 159.32267291755574
Iteration: 7, Func. Count: 44, Neg. LLF: 159.32232274362582
Iteration: 8, Func. Count: 50, Neg. LLF: 159.3222675331227
Iteration: 9, Func. Count: 55, Neg. LLF: 159.32226774143857
Optimization terminated successfully (Exit mode 0)
Current function value: 159.3222675331227
Iterations: 9
Function evaluations: 55
Gradient evaluations: 9
Iteration: 1, Func. Count: 8, Neg. LLF: 165.0995672511773
Iteration: 2, Func. Count: 16, Neg. LLF: 159.54358277857665
Iteration: 3, Func. Count: 23, Neg. LLF: 159.61640890334843
Iteration: 4, Func. Count: 31, Neg. LLF: 159.46946790924068
Iteration: 5, Func. Count: 38, Neg. LLF: 159.46707353237414
Iteration: 6, Func. Count: 45, Neg. LLF: 159.45913957655063
Iteration: 7, Func. Count: 52, Neg. LLF: 159.41862000552936
Iteration: 8, Func. Count: 59, Neg. LLF: 159.417573987783
Iteration: 9, Func. Count: 66, Neg. LLF: 159.41639148465038
Iteration: 10, Func. Count: 73, Neg. LLF: 159.4159179653869
Iteration: 11, Func. Count: 80, Neg. LLF: 159.41131662805822
Iteration: 12, Func. Count: 87, Neg. LLF: 159.37087175136605
Iteration: 13, Func. Count: 94, Neg. LLF: 161.2143688989955
Iteration: 14, Func. Count: 102, Neg. LLF: 159.3551744835373
Iteration: 15, Func. Count: 109, Neg. LLF: 159.35511980265554
Iteration: 16, Func. Count: 116, Neg. LLF: 159.35511525553832
Iteration: 17, Func. Count: 122, Neg. LLF: 159.35511488153344
Optimization terminated successfully (Exit mode 0)
Current function value: 159.35511525553832
Iterations: 18
Function evaluations: 122
Gradient evaluations: 17
Iteration: 1, Func. Count: 9, Neg. LLF: 166.57237398645498
Iteration: 2, Func. Count: 18, Neg. LLF: 159.5619342814305
Iteration: 3, Func. Count: 26, Neg. LLF: 159.52731882648115
Iteration: 4, Func. Count: 34, Neg. LLF: 159.51753422754794
Iteration: 5, Func. Count: 42, Neg. LLF: 159.51022824149595
Iteration: 6, Func. Count: 50, Neg. LLF: 159.49554099335697
Iteration: 7, Func. Count: 58, Neg. LLF: 159.44290461846632
Iteration: 8, Func. Count: 66, Neg. LLF: 159.43609393694152
Iteration: 9, Func. Count: 74, Neg. LLF: 159.4132995679851
Iteration: 10, Func. Count: 82, Neg. LLF: 159.41139390542705
Iteration: 11, Func. Count: 90, Neg. LLF: 159.396969980253
Iteration: 12, Func. Count: 98, Neg. LLF: 159.35904306231654
Iteration: 13, Func. Count: 106, Neg. LLF: 350.75326267785323
Iteration: 14, Func. Count: 119, Neg. LLF: 159.37033831281997
Iteration: 15, Func. Count: 128, Neg. LLF: 159.41922653027163
Iteration: 16, Func. Count: 137, Neg. LLF: 159.35511507926938
Iteration: 17, Func. Count: 144, Neg. LLF: 159.35511471067394
Optimization terminated successfully (Exit mode 0)
Current function value: 159.35511507926938
Iterations: 18
Function evaluations: 144
Gradient evaluations: 17
Iteration: 1, Func. Count: 6, Neg. LLF: 163.60866397247662
Iteration: 2, Func. Count: 11, Neg. LLF: 162.93322777925908
Iteration: 3, Func. Count: 16, Neg. LLF: 188.02147220577527
Iteration: 4, Func. Count: 25, Neg. LLF: 174.84658593774188
Iteration: 5, Func. Count: 31, Neg. LLF: 161.92651521523288
Iteration: 6, Func. Count: 36, Neg. LLF: 161.90922260843075
Iteration: 7, Func. Count: 41, Neg. LLF: 161.847898518841
Iteration: 8, Func. Count: 46, Neg. LLF: 161.80625285598222
Iteration: 9, Func. Count: 51, Neg. LLF: 161.7787686442623
Iteration: 10, Func. Count: 56, Neg. LLF: 161.7684391309372
Iteration: 11, Func. Count: 61, Neg. LLF: 161.76209724471568
Iteration: 12, Func. Count: 66, Neg. LLF: 161.75983743737893
Iteration: 13, Func. Count: 71, Neg. LLF: 161.75934658230491
Iteration: 14, Func. Count: 76, Neg. LLF: 161.75927999850964
Iteration: 15, Func. Count: 81, Neg. LLF: 161.75927904521444
Optimization terminated successfully (Exit mode 0)
Current function value: 161.75927904521444
Iterations: 15
Function evaluations: 81
Gradient evaluations: 15
Iteration: 1, Func. Count: 7, Neg. LLF: 173.7642163835037
Iteration: 2, Func. Count: 14, Neg. LLF: 159.98391598777206
Iteration: 3, Func. Count: 20, Neg. LLF: 159.40588293302616
Iteration: 4, Func. Count: 26, Neg. LLF: 169.10990201626103
Iteration: 5, Func. Count: 33, Neg. LLF: 159.3554869410784
Iteration: 6, Func. Count: 39, Neg. LLF: 159.35511595620255
Iteration: 7, Func. Count: 45, Neg. LLF: 159.35511509615418
Optimization terminated successfully (Exit mode 0)
Current function value: 159.35511509615418
Iterations: 7
Function evaluations: 45
Gradient evaluations: 7
Iteration: 1, Func. Count: 8, Neg. LLF: 168.92723354876372
Iteration: 2, Func. Count: 16, Neg. LLF: 159.69243296124296
Iteration: 3, Func. Count: 23, Neg. LLF: 159.35274009908193
Iteration: 4, Func. Count: 30, Neg. LLF: 159.34465082398458
Iteration: 5, Func. Count: 37, Neg. LLF: 159.33865687750708
Iteration: 6, Func. Count: 44, Neg. LLF: 159.32331239451483
Iteration: 7, Func. Count: 51, Neg. LLF: 159.32227391757274
Iteration: 8, Func. Count: 58, Neg. LLF: 159.32226756721616
Iteration: 9, Func. Count: 64, Neg. LLF: 159.32226735915114
Optimization terminated successfully (Exit mode 0)
Current function value: 159.32226756721616
Iterations: 9
Function evaluations: 64
Gradient evaluations: 9
Iteration: 1, Func. Count: 9, Neg. LLF: 165.23938187278247
Iteration: 2, Func. Count: 18, Neg. LLF: 162.12182248358218
Iteration: 3, Func. Count: 27, Neg. LLF: 159.48029264902627
Iteration: 4, Func. Count: 35, Neg. LLF: 159.4714475206357
Iteration: 5, Func. Count: 43, Neg. LLF: 159.4669070225953
Iteration: 6, Func. Count: 51, Neg. LLF: 159.46560160104113
Iteration: 7, Func. Count: 59, Neg. LLF: 159.4510136281605
Iteration: 8, Func. Count: 67, Neg. LLF: 159.39514529615454
Iteration: 9, Func. Count: 75, Neg. LLF: 159.39363605825017
Iteration: 10, Func. Count: 83, Neg. LLF: 159.38694354847024
Iteration: 11, Func. Count: 91, Neg. LLF: 159.35876351655915
Iteration: 12, Func. Count: 99, Neg. LLF: 159.61071673974968
Iteration: 13, Func. Count: 108, Neg. LLF: 159.35594703460492
Iteration: 14, Func. Count: 116, Neg. LLF: 159.35511509135236
Iteration: 15, Func. Count: 123, Neg. LLF: 159.35511471811677
Optimization terminated successfully (Exit mode 0)
Current function value: 159.35511509135236
Iterations: 16
Function evaluations: 123
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 167.003749721338
Iteration: 2, Func. Count: 20, Neg. LLF: 159.55439415909976
Iteration: 3, Func. Count: 29, Neg. LLF: 159.90553319489732
Iteration: 4, Func. Count: 39, Neg. LLF: 159.09322427404763
Iteration: 5, Func. Count: 48, Neg. LLF: 159.17257941783288
Iteration: 6, Func. Count: 58, Neg. LLF: 159.2526914204653
Iteration: 7, Func. Count: 68, Neg. LLF: 158.62389446164275
Iteration: 8, Func. Count: 77, Neg. LLF: 158.5725098194365
Iteration: 9, Func. Count: 86, Neg. LLF: 158.55754121294552
Iteration: 10, Func. Count: 95, Neg. LLF: 158.55480401032526
Iteration: 11, Func. Count: 104, Neg. LLF: 158.55045238706572
Iteration: 12, Func. Count: 113, Neg. LLF: 158.54855120436432
Iteration: 13, Func. Count: 122, Neg. LLF: 158.54839139175493
Iteration: 14, Func. Count: 131, Neg. LLF: 158.54838518328026
Iteration: 15, Func. Count: 139, Neg. LLF: 158.54838502238024
Optimization terminated successfully (Exit mode 0)
Current function value: 158.54838518328026
Iterations: 15
Function evaluations: 139
Gradient evaluations: 15
Iteration: 1, Func. Count: 7, Neg. LLF: 162.05176370759
Iteration: 2, Func. Count: 13, Neg. LLF: 162.17320010122702
Iteration: 3, Func. Count: 20, Neg. LLF: 157.3768285861476
Iteration: 4, Func. Count: 26, Neg. LLF: 157.35903364412442
Iteration: 5, Func. Count: 32, Neg. LLF: 157.32808296435798
Iteration: 6, Func. Count: 38, Neg. LLF: 157.17045905964184
Iteration: 7, Func. Count: 44, Neg. LLF: 157.10485829001212
Iteration: 8, Func. Count: 50, Neg. LLF: 157.09395186056744
Iteration: 9, Func. Count: 56, Neg. LLF: 157.09350038600016
Iteration: 10, Func. Count: 62, Neg. LLF: 157.09349688213868
Iteration: 11, Func. Count: 67, Neg. LLF: 157.09349686222603
Optimization terminated successfully (Exit mode 0)
Current function value: 157.09349688213868
Iterations: 11
Function evaluations: 67
Gradient evaluations: 11
Iteration: 1, Func. Count: 8, Neg. LLF: 173.77087479534612
Iteration: 2, Func. Count: 16, Neg. LLF: 159.97053400850635
Iteration: 3, Func. Count: 23, Neg. LLF: 159.39309214218213
Iteration: 4, Func. Count: 30, Neg. LLF: 159.94548684230116
Iteration: 5, Func. Count: 38, Neg. LLF: 159.35553013429097
Iteration: 6, Func. Count: 45, Neg. LLF: 159.35511535078962
Iteration: 7, Func. Count: 51, Neg. LLF: 159.35511572841583
Optimization terminated successfully (Exit mode 0)
Current function value: 159.35511535078962
Iterations: 7
Function evaluations: 51
Gradient evaluations: 7
Iteration: 1, Func. Count: 9, Neg. LLF: 168.73619064854006
Iteration: 2, Func. Count: 18, Neg. LLF: 160.06155936449744
Iteration: 3, Func. Count: 26, Neg. LLF: 159.45182007076775
Iteration: 4, Func. Count: 34, Neg. LLF: 159.70723595606657
Iteration: 5, Func. Count: 43, Neg. LLF: 159.10938628601335
Iteration: 6, Func. Count: 51, Neg. LLF: 159.09632347442897
Iteration: 7, Func. Count: 59, Neg. LLF: 159.08667899464143
Iteration: 8, Func. Count: 67, Neg. LLF: 159.08520636979912
Iteration: 9, Func. Count: 75, Neg. LLF: 159.08511919303163
Iteration: 10, Func. Count: 83, Neg. LLF: 159.0851184112437
Optimization terminated successfully (Exit mode 0)
Current function value: 159.0851184112437
Iterations: 10
Function evaluations: 83
Gradient evaluations: 10
Iteration: 1, Func. Count: 10, Neg. LLF: 165.19667081816442
Iteration: 2, Func. Count: 20, Neg. LLF: 161.98493311203333
Iteration: 3, Func. Count: 30, Neg. LLF: 159.7718735327757
Iteration: 4, Func. Count: 39, Neg. LLF: 159.88509030733204
Iteration: 5, Func. Count: 49, Neg. LLF: 159.3774946889798
Iteration: 6, Func. Count: 58, Neg. LLF: 159.26055102948544
Iteration: 7, Func. Count: 67, Neg. LLF: 159.23972852921543
Iteration: 8, Func. Count: 76, Neg. LLF: 159.22447268236456
Iteration: 9, Func. Count: 85, Neg. LLF: 159.22018032551273
Iteration: 10, Func. Count: 94, Neg. LLF: 159.21751906634273
Iteration: 11, Func. Count: 103, Neg. LLF: 159.21601698115785
Iteration: 12, Func. Count: 112, Neg. LLF: 159.20904775080558
Iteration: 13, Func. Count: 121, Neg. LLF: 168.31878728551573
Iteration: 14, Func. Count: 131, Neg. LLF: 169.68687127446742
Iteration: 15, Func. Count: 141, Neg. LLF: 169.04694931083426
Iteration: 16, Func. Count: 151, Neg. LLF: 167.05509187069032
Iteration: 17, Func. Count: 161, Neg. LLF: 162.0540218627836
Iteration: 18, Func. Count: 171, Neg. LLF: 159.54617842569488
Iteration: 19, Func. Count: 181, Neg. LLF: 168.45035632384804
Iteration: 20, Func. Count: 191, Neg. LLF: 159.41047559878012
Iteration: 21, Func. Count: 201, Neg. LLF: 159.54855551661018
Iteration: 22, Func. Count: 211, Neg. LLF: 157.8215887183276
Iteration: 23, Func. Count: 220, Neg. LLF: 157.8338941542612
Iteration: 24, Func. Count: 230, Neg. LLF: 157.22071565151654
Iteration: 25, Func. Count: 239, Neg. LLF: 157.19509279333838
Iteration: 26, Func. Count: 248, Neg. LLF: 157.1905441645944
Iteration: 27, Func. Count: 257, Neg. LLF: 157.1893284619822
Iteration: 28, Func. Count: 266, Neg. LLF: 157.18730933398078
Iteration: 29, Func. Count: 275, Neg. LLF: 157.18269388447155
Iteration: 30, Func. Count: 284, Neg. LLF: 157.1719435057934
Iteration: 31, Func. Count: 293, Neg. LLF: 157.15037813426147
Iteration: 32, Func. Count: 302, Neg. LLF: 157.11985025490426
Iteration: 33, Func. Count: 311, Neg. LLF: 157.10020225766604
Iteration: 34, Func. Count: 320, Neg. LLF: 157.0948138441824
Iteration: 35, Func. Count: 329, Neg. LLF: 157.09354369320008
Iteration: 36, Func. Count: 338, Neg. LLF: 157.09349761178305
Iteration: 37, Func. Count: 347, Neg. LLF: 157.09349683912913
Optimization terminated successfully (Exit mode 0)
Current function value: 157.09349683912913
Iterations: 37
Function evaluations: 347
Gradient evaluations: 37
Iteration: 1, Func. Count: 11, Neg. LLF: 166.5697558440622
Iteration: 2, Func. Count: 22, Neg. LLF: 161.212238156635
Iteration: 3, Func. Count: 33, Neg. LLF: 160.66375117217464
Iteration: 4, Func. Count: 44, Neg. LLF: 179.41034094995325
Iteration: 5, Func. Count: 56, Neg. LLF: 157.6751929969774
Iteration: 6, Func. Count: 66, Neg. LLF: 160.2067957889244
Iteration: 7, Func. Count: 77, Neg. LLF: 156.6069919722342
Iteration: 8, Func. Count: 87, Neg. LLF: 156.59951670771176
Iteration: 9, Func. Count: 97, Neg. LLF: 156.57641859614168
Iteration: 10, Func. Count: 107, Neg. LLF: 156.57470128438564
Iteration: 11, Func. Count: 117, Neg. LLF: 156.5741400084066
Iteration: 12, Func. Count: 127, Neg. LLF: 156.57333782788984
Iteration: 13, Func. Count: 137, Neg. LLF: 156.57242928390454
Iteration: 14, Func. Count: 147, Neg. LLF: 156.5719457346891
Iteration: 15, Func. Count: 157, Neg. LLF: 156.5718496748017
Iteration: 16, Func. Count: 167, Neg. LLF: 156.57184051792007
Iteration: 17, Func. Count: 176, Neg. LLF: 156.57184042916816
Optimization terminated successfully (Exit mode 0)
Current function value: 156.57184051792007
Iterations: 17
Function evaluations: 176
Gradient evaluations: 17
Iteration: 1, Func. Count: 8, Neg. LLF: 161.623653721972
Iteration: 2, Func. Count: 15, Neg. LLF: 163.69439346637506
Iteration: 3, Func. Count: 23, Neg. LLF: 157.37914772035185
Iteration: 4, Func. Count: 30, Neg. LLF: 157.3624451280968
Iteration: 5, Func. Count: 37, Neg. LLF: 157.30040936723665
Iteration: 6, Func. Count: 44, Neg. LLF: 157.138360780401
Iteration: 7, Func. Count: 51, Neg. LLF: 157.09773289195795
Iteration: 8, Func. Count: 58, Neg. LLF: 157.0936167216835
Iteration: 9, Func. Count: 65, Neg. LLF: 157.09350169359809
Iteration: 10, Func. Count: 72, Neg. LLF: 157.09349682642247
Iteration: 11, Func. Count: 78, Neg. LLF: 157.0934968204068
Optimization terminated successfully (Exit mode 0)
Current function value: 157.09349682642247
Iterations: 11
Function evaluations: 78
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 173.797463911917
Iteration: 2, Func. Count: 18, Neg. LLF: 159.9566780313224
Iteration: 3, Func. Count: 26, Neg. LLF: 159.4154414173866
Iteration: 4, Func. Count: 34, Neg. LLF: 159.39442892280638
Iteration: 5, Func. Count: 42, Neg. LLF: 159.40367696847085
Iteration: 6, Func. Count: 51, Neg. LLF: 159.35521561985476
Iteration: 7, Func. Count: 59, Neg. LLF: 159.35511541537366
Iteration: 8, Func. Count: 66, Neg. LLF: 159.35511579273427
Optimization terminated successfully (Exit mode 0)
Current function value: 159.35511541537366
Iterations: 8
Function evaluations: 66
Gradient evaluations: 8
Iteration: 1, Func. Count: 10, Neg. LLF: 168.76856634857342
Iteration: 2, Func. Count: 20, Neg. LLF: 160.06527107557733
Iteration: 3, Func. Count: 29, Neg. LLF: 159.46067190047842
Iteration: 4, Func. Count: 38, Neg. LLF: 159.70843054766
Iteration: 5, Func. Count: 48, Neg. LLF: 159.10962987740425
Iteration: 6, Func. Count: 57, Neg. LLF: 159.09715140390762
Iteration: 7, Func. Count: 66, Neg. LLF: 159.08669776467244
Iteration: 8, Func. Count: 75, Neg. LLF: 159.08520688399483
Iteration: 9, Func. Count: 84, Neg. LLF: 159.0851192614629
Iteration: 10, Func. Count: 93, Neg. LLF: 159.08511840820194
Optimization terminated successfully (Exit mode 0)
Current function value: 159.08511840820194
Iterations: 10
Function evaluations: 93
Gradient evaluations: 10
Iteration: 1, Func. Count: 11, Neg. LLF: 165.0635110093587
Iteration: 2, Func. Count: 22, Neg. LLF: 161.94149093655182
Iteration: 3, Func. Count: 33, Neg. LLF: 159.98664778535868
Iteration: 4, Func. Count: 43, Neg. LLF: 159.8611696128568
Iteration: 5, Func. Count: 54, Neg. LLF: 159.64585381532507
Iteration: 6, Func. Count: 65, Neg. LLF: 159.24083309573618
Iteration: 7, Func. Count: 75, Neg. LLF: 159.2232276552641
Iteration: 8, Func. Count: 85, Neg. LLF: 159.21790038610462
Iteration: 9, Func. Count: 95, Neg. LLF: 159.2155895643114
Iteration: 10, Func. Count: 105, Neg. LLF: 159.20841429422524
Iteration: 11, Func. Count: 115, Neg. LLF: 169.94193100282948
Iteration: 12, Func. Count: 126, Neg. LLF: 169.25064228869184
Iteration: 13, Func. Count: 137, Neg. LLF: 168.0460908102847
Iteration: 14, Func. Count: 148, Neg. LLF: 646.7593083525293
Iteration: 15, Func. Count: 161, Neg. LLF: 624.4085014859054
Iteration: 16, Func. Count: 175, Neg. LLF: 316.64871023873553
Iteration: 17, Func. Count: 189, Neg. LLF: 160.56249242545888
Iteration: 18, Func. Count: 200, Neg. LLF: 162.8432707961556
Iteration: 19, Func. Count: 211, Neg. LLF: 162.008555707801
Iteration: 20, Func. Count: 222, Neg. LLF: 160.8448885273834
Iteration: 21, Func. Count: 233, Neg. LLF: 161.39577557652538
Iteration: 22, Func. Count: 244, Neg. LLF: 159.05726317186756
Iteration: 23, Func. Count: 255, Neg. LLF: 158.5171919187163
Iteration: 24, Func. Count: 265, Neg. LLF: 158.31593610602192
Iteration: 25, Func. Count: 275, Neg. LLF: 158.4603675890156
Iteration: 26, Func. Count: 286, Neg. LLF: 157.84446266649562
Iteration: 27, Func. Count: 296, Neg. LLF: 157.18985166127536
Iteration: 28, Func. Count: 306, Neg. LLF: 157.10645197019218
Iteration: 29, Func. Count: 316, Neg. LLF: 157.09484235274002
Iteration: 30, Func. Count: 326, Neg. LLF: 157.09359570930155
Iteration: 31, Func. Count: 336, Neg. LLF: 157.09353271099042
Iteration: 32, Func. Count: 346, Neg. LLF: 157.09349818788553
Iteration: 33, Func. Count: 356, Neg. LLF: 157.09349687374313
Iteration: 34, Func. Count: 365, Neg. LLF: 157.09349687958454
Optimization terminated successfully (Exit mode 0)
Current function value: 157.09349687374313
Iterations: 35
Function evaluations: 365
Gradient evaluations: 34
Iteration: 1, Func. Count: 12, Neg. LLF: 166.40623858185248
Iteration: 2, Func. Count: 24, Neg. LLF: 161.63342660368914
Iteration: 3, Func. Count: 36, Neg. LLF: 160.13906146947863
Iteration: 4, Func. Count: 48, Neg. LLF: 171.85084913832017
Iteration: 5, Func. Count: 60, Neg. LLF: 157.32282069424724
Iteration: 6, Func. Count: 71, Neg. LLF: 161.0547044421269
Iteration: 7, Func. Count: 83, Neg. LLF: 157.02442265971925
Iteration: 8, Func. Count: 95, Neg. LLF: 156.5282676823305
Iteration: 9, Func. Count: 106, Neg. LLF: 156.53712759107057
Iteration: 10, Func. Count: 118, Neg. LLF: 156.49620069728724
Iteration: 11, Func. Count: 129, Neg. LLF: 156.48918694194654
Iteration: 12, Func. Count: 140, Neg. LLF: 156.48701028296892
Iteration: 13, Func. Count: 151, Neg. LLF: 156.48178652843032
Iteration: 14, Func. Count: 162, Neg. LLF: 156.48006008335986
Iteration: 15, Func. Count: 173, Neg. LLF: 156.4797731996891
Iteration: 16, Func. Count: 184, Neg. LLF: 156.47975976642783
Iteration: 17, Func. Count: 195, Neg. LLF: 156.4797591039279
Optimization terminated successfully (Exit mode 0)
Current function value: 156.4797591039279
Iterations: 17
Function evaluations: 195
Gradient evaluations: 17
Iteration: 1, Func. Count: 9, Neg. LLF: 161.04284698409725
Iteration: 2, Func. Count: 17, Neg. LLF: 164.61753517655896
Iteration: 3, Func. Count: 26, Neg. LLF: 157.38366415674483
Iteration: 4, Func. Count: 34, Neg. LLF: 157.366362272733
Iteration: 5, Func. Count: 42, Neg. LLF: 157.27707571939337
Iteration: 6, Func. Count: 50, Neg. LLF: 157.13542782272506
Iteration: 7, Func. Count: 58, Neg. LLF: 157.0969846292209
Iteration: 8, Func. Count: 66, Neg. LLF: 157.09359643380193
Iteration: 9, Func. Count: 74, Neg. LLF: 157.09349753754077
Iteration: 10, Func. Count: 82, Neg. LLF: 157.09349682543618
Optimization terminated successfully (Exit mode 0)
Current function value: 157.09349682543618
Iterations: 10
Function evaluations: 82
Gradient evaluations: 10
Iteration: 1, Func. Count: 10, Neg. LLF: 173.79147617846647
Iteration: 2, Func. Count: 20, Neg. LLF: 159.9527138680513
Iteration: 3, Func. Count: 29, Neg. LLF: 159.43023846737051
Iteration: 4, Func. Count: 38, Neg. LLF: 159.42683256479262
Iteration: 5, Func. Count: 48, Neg. LLF: 159.3833163796955
Iteration: 6, Func. Count: 58, Neg. LLF: 159.35511525613902
Iteration: 7, Func. Count: 66, Neg. LLF: 159.3551156339497
Optimization terminated successfully (Exit mode 0)
Current function value: 159.35511525613902
Iterations: 7
Function evaluations: 66
Gradient evaluations: 7
Iteration: 1, Func. Count: 11, Neg. LLF: 168.74974647544508
Iteration: 2, Func. Count: 22, Neg. LLF: 160.07068931468118
Iteration: 3, Func. Count: 32, Neg. LLF: 159.48501487531286
Iteration: 4, Func. Count: 42, Neg. LLF: 159.72734606403804
Iteration: 5, Func. Count: 53, Neg. LLF: 159.11313523955127
Iteration: 6, Func. Count: 63, Neg. LLF: 159.10249327695638
Iteration: 7, Func. Count: 73, Neg. LLF: 159.08722669659522
Iteration: 8, Func. Count: 83, Neg. LLF: 159.08528428391108
Iteration: 9, Func. Count: 93, Neg. LLF: 159.0851224193335
Iteration: 10, Func. Count: 103, Neg. LLF: 159.08511850553123
Iteration: 11, Func. Count: 112, Neg. LLF: 159.08511832542828
Optimization terminated successfully (Exit mode 0)
Current function value: 159.08511850553123
Iterations: 11
Function evaluations: 112
Gradient evaluations: 11
Iteration: 1, Func. Count: 12, Neg. LLF: 165.10981606933248
Iteration: 2, Func. Count: 24, Neg. LLF: 161.9145975929195
Iteration: 3, Func. Count: 36, Neg. LLF: 159.9385270881858
Iteration: 4, Func. Count: 47, Neg. LLF: 159.95015383795123
Iteration: 5, Func. Count: 59, Neg. LLF: 159.5444481853122
Iteration: 6, Func. Count: 71, Neg. LLF: 159.2404624997154
Iteration: 7, Func. Count: 82, Neg. LLF: 159.22357971628205
Iteration: 8, Func. Count: 93, Neg. LLF: 159.21807138884296
Iteration: 9, Func. Count: 104, Neg. LLF: 159.21561890832086
Iteration: 10, Func. Count: 115, Neg. LLF: 159.20666340014404
Iteration: 11, Func. Count: 126, Neg. LLF: 169.59814165042613
Iteration: 12, Func. Count: 138, Neg. LLF: 168.97063435585028
Iteration: 13, Func. Count: 150, Neg. LLF: 168.1098528522628
Iteration: 14, Func. Count: 162, Neg. LLF: 166.60047465890955
Iteration: 15, Func. Count: 174, Neg. LLF: 167.48447233989862
Iteration: 16, Func. Count: 187, Neg. LLF: 159.30195660318867
Iteration: 17, Func. Count: 199, Neg. LLF: 158.95160990772047
Iteration: 18, Func. Count: 210, Neg. LLF: 158.8227439136164
Iteration: 19, Func. Count: 221, Neg. LLF: 160.15946152365203
Iteration: 20, Func. Count: 233, Neg. LLF: 157.53630842937056
Iteration: 21, Func. Count: 244, Neg. LLF: 157.26464566892466
Iteration: 22, Func. Count: 255, Neg. LLF: 157.2474505662824
Iteration: 23, Func. Count: 266, Neg. LLF: 157.23480755113326
Iteration: 24, Func. Count: 277, Neg. LLF: 157.1980193994682
Iteration: 25, Func. Count: 288, Neg. LLF: 157.15533980626122
Iteration: 26, Func. Count: 299, Neg. LLF: 157.10387581848852
Iteration: 27, Func. Count: 310, Neg. LLF: 157.09645205811069
Iteration: 28, Func. Count: 321, Neg. LLF: 157.09354174476195
Iteration: 29, Func. Count: 332, Neg. LLF: 157.09349185139533
Iteration: 30, Func. Count: 343, Neg. LLF: 157.09349593097613
Iteration: 31, Func. Count: 354, Neg. LLF: 157.0934795557952
Optimization terminated successfully (Exit mode 0)
Current function value: 157.09349591619275
Iterations: 31
Function evaluations: 364
Gradient evaluations: 31
Iteration: 1, Func. Count: 13, Neg. LLF: 166.55236331807717
Iteration: 2, Func. Count: 26, Neg. LLF: 161.66421127790926
Iteration: 3, Func. Count: 39, Neg. LLF: 160.13668011730286
Iteration: 4, Func. Count: 52, Neg. LLF: 170.91564492176298
Iteration: 5, Func. Count: 65, Neg. LLF: 157.3597478738105
Iteration: 6, Func. Count: 77, Neg. LLF: 160.98185318419274
Iteration: 7, Func. Count: 90, Neg. LLF: 156.8538608680796
Iteration: 8, Func. Count: 102, Neg. LLF: 156.66972326826263
Iteration: 9, Func. Count: 114, Neg. LLF: 156.6119560947135
Iteration: 10, Func. Count: 126, Neg. LLF: 156.5928206938335
Iteration: 11, Func. Count: 138, Neg. LLF: 156.58352595603253
Iteration: 12, Func. Count: 150, Neg. LLF: 156.57809451366495
Iteration: 13, Func. Count: 162, Neg. LLF: 156.57492978658476
Iteration: 14, Func. Count: 174, Neg. LLF: 156.57322702645777
Iteration: 15, Func. Count: 186, Neg. LLF: 156.57278833768
Iteration: 16, Func. Count: 198, Neg. LLF: 156.57256608645213
Iteration: 17, Func. Count: 210, Neg. LLF: 156.57224737059207
Iteration: 18, Func. Count: 222, Neg. LLF: 156.57197325587336
Iteration: 19, Func. Count: 234, Neg. LLF: 156.57185744382224
Iteration: 20, Func. Count: 246, Neg. LLF: 156.57184091718224
Iteration: 21, Func. Count: 258, Neg. LLF: 156.57184022556868
Optimization terminated successfully (Exit mode 0)
Current function value: 156.57184022556868
Iterations: 21
Function evaluations: 258
Gradient evaluations: 21
Iteration: 1, Func. Count: 6, Neg. LLF: 163.92043813526402
Iteration: 2, Func. Count: 11, Neg. LLF: 165.24374976605506
Iteration: 3, Func. Count: 17, Neg. LLF: 162.71823037875353
Iteration: 4, Func. Count: 22, Neg. LLF: 162.71787541731305
Iteration: 5, Func. Count: 27, Neg. LLF: 162.71772105697409
Iteration: 6, Func. Count: 32, Neg. LLF: 162.71687744392722
Iteration: 7, Func. Count: 37, Neg. LLF: 162.71464088872202
Iteration: 8, Func. Count: 42, Neg. LLF: 162.7144888561816
Iteration: 9, Func. Count: 47, Neg. LLF: 162.7144857899008
Iteration: 10, Func. Count: 51, Neg. LLF: 162.71448578989788
Optimization terminated successfully (Exit mode 0)
Current function value: 162.7144857899008
Iterations: 10
Function evaluations: 51
Gradient evaluations: 10
Iteration: 1, Func. Count: 7, Neg. LLF: 173.53530446442602
Iteration: 2, Func. Count: 14, Neg. LLF: 160.42837609029766
Iteration: 3, Func. Count: 20, Neg. LLF: 159.39213550075715
Iteration: 4, Func. Count: 26, Neg. LLF: 159.37999127234534
Iteration: 5, Func. Count: 33, Neg. LLF: 159.35536022636174
Iteration: 6, Func. Count: 39, Neg. LLF: 159.35511508767533
Iteration: 7, Func. Count: 44, Neg. LLF: 159.35511546634967
Optimization terminated successfully (Exit mode 0)
Current function value: 159.35511508767533
Iterations: 7
Function evaluations: 44
Gradient evaluations: 7
Iteration: 1, Func. Count: 8, Neg. LLF: 167.69573609799806
Iteration: 2, Func. Count: 16, Neg. LLF: 159.76772965953512
Iteration: 3, Func. Count: 23, Neg. LLF: 159.32469977754903
Iteration: 4, Func. Count: 30, Neg. LLF: 159.48921016177806
Iteration: 5, Func. Count: 38, Neg. LLF: 159.32265113321404
Iteration: 6, Func. Count: 45, Neg. LLF: 159.321626616003
Iteration: 7, Func. Count: 52, Neg. LLF: 159.32162454777486
Iteration: 8, Func. Count: 59, Neg. LLF: 159.32162334655425
Iteration: 9, Func. Count: 66, Neg. LLF: 159.3216138579062
Iteration: 10, Func. Count: 73, Neg. LLF: 159.32807182779607
Optimization terminated successfully (Exit mode 0)
Current function value: 159.3216138006217
Iterations: 11
Function evaluations: 76
Gradient evaluations: 10
Iteration: 1, Func. Count: 9, Neg. LLF: 165.6790778071215
Iteration: 2, Func. Count: 18, Neg. LLF: 159.517416400823
Iteration: 3, Func. Count: 26, Neg. LLF: 159.52041579372965
Iteration: 4, Func. Count: 35, Neg. LLF: 159.47000790841332
Iteration: 5, Func. Count: 43, Neg. LLF: 159.4674152970641
Iteration: 6, Func. Count: 51, Neg. LLF: 159.4398331023461
Iteration: 7, Func. Count: 59, Neg. LLF: 159.41153259670605
Iteration: 8, Func. Count: 67, Neg. LLF: 159.41055993604584
Iteration: 9, Func. Count: 75, Neg. LLF: 159.40919130688343
Iteration: 10, Func. Count: 83, Neg. LLF: 159.40308175008525
Iteration: 11, Func. Count: 91, Neg. LLF: 159.3915553246455
Iteration: 12, Func. Count: 99, Neg. LLF: 159.37290827394224
Iteration: 13, Func. Count: 107, Neg. LLF: 161.3129518873491
Iteration: 14, Func. Count: 116, Neg. LLF: 159.3553336372448
Iteration: 15, Func. Count: 124, Neg. LLF: 159.35516062154215
Iteration: 16, Func. Count: 132, Neg. LLF: 159.3551150752026
Iteration: 17, Func. Count: 139, Neg. LLF: 159.3551147017272
Optimization terminated successfully (Exit mode 0)
Current function value: 159.3551150752026
Iterations: 18
Function evaluations: 139
Gradient evaluations: 17
Iteration: 1, Func. Count: 10, Neg. LLF: 167.52692193594126
Iteration: 2, Func. Count: 20, Neg. LLF: 159.55057565205465
Iteration: 3, Func. Count: 29, Neg. LLF: 159.52355364601343
Iteration: 4, Func. Count: 38, Neg. LLF: 159.51291183059092
Iteration: 5, Func. Count: 47, Neg. LLF: 159.5004748075654
Iteration: 6, Func. Count: 56, Neg. LLF: 159.46865256181783
Iteration: 7, Func. Count: 65, Neg. LLF: 159.46029148966446
Iteration: 8, Func. Count: 74, Neg. LLF: 159.45597282599996
Iteration: 9, Func. Count: 83, Neg. LLF: 159.45050046807177
Iteration: 10, Func. Count: 92, Neg. LLF: 159.39894065510828
Iteration: 11, Func. Count: 101, Neg. LLF: 159.39043335202442
Iteration: 12, Func. Count: 110, Neg. LLF: 159.384320168128
Iteration: 13, Func. Count: 119, Neg. LLF: 159.37878111747628
Iteration: 14, Func. Count: 128, Neg. LLF: 159.3620100927098
Iteration: 15, Func. Count: 137, Neg. LLF: 159.35765630785548
Iteration: 16, Func. Count: 146, Neg. LLF: 159.35523398292744
Iteration: 17, Func. Count: 155, Neg. LLF: 159.35563371442277
Iteration: 18, Func. Count: 165, Neg. LLF: 159.35663701235345
Iteration: 19, Func. Count: 174, Neg. LLF: 159.35511470851756
Optimization terminated successfully (Exit mode 0)
Current function value: 159.35511507688057
Iterations: 20
Function evaluations: 174
Gradient evaluations: 19
Iteration: 1, Func. Count: 7, Neg. LLF: 166.14360246676952
Iteration: 2, Func. Count: 14, Neg. LLF: 162.6847824184119
Iteration: 3, Func. Count: 20, Neg. LLF: 162.39137825050008
Iteration: 4, Func. Count: 26, Neg. LLF: 162.14190302245603
Iteration: 5, Func. Count: 32, Neg. LLF: 162.0878261216348
Iteration: 6, Func. Count: 38, Neg. LLF: 162.28395730292138
Iteration: 7, Func. Count: 45, Neg. LLF: 162.17847652982107
Iteration: 8, Func. Count: 52, Neg. LLF: 161.98690752081677
Iteration: 9, Func. Count: 58, Neg. LLF: 161.98024243318622
Iteration: 10, Func. Count: 64, Neg. LLF: 162.09593644700342
Iteration: 11, Func. Count: 71, Neg. LLF: 162.0496143823043
Iteration: 12, Func. Count: 78, Neg. LLF: 162.04626186700023
Iteration: 13, Func. Count: 85, Neg. LLF: 162.03628300722983
Iteration: 14, Func. Count: 92, Neg. LLF: 161.97227516276914
Iteration: 15, Func. Count: 99, Neg. LLF: 161.90804259079104
Iteration: 16, Func. Count: 105, Neg. LLF: 161.8879141563554
Iteration: 17, Func. Count: 111, Neg. LLF: 161.7678657816083
Iteration: 18, Func. Count: 117, Neg. LLF: 161.7896808538506
Iteration: 19, Func. Count: 124, Neg. LLF: 161.75616567869656
Iteration: 20, Func. Count: 130, Neg. LLF: 161.75547889769257
Iteration: 21, Func. Count: 136, Neg. LLF: 161.7553417487953
Iteration: 22, Func. Count: 142, Neg. LLF: 161.75533361015374
Iteration: 23, Func. Count: 147, Neg. LLF: 161.75533360863093
Optimization terminated successfully (Exit mode 0)
Current function value: 161.75533361015374
Iterations: 23
Function evaluations: 147
Gradient evaluations: 23
Iteration: 1, Func. Count: 8, Neg. LLF: 173.73822993210874
Iteration: 2, Func. Count: 16, Neg. LLF: 159.98052098327082
Iteration: 3, Func. Count: 23, Neg. LLF: 159.40936710266422
Iteration: 4, Func. Count: 30, Neg. LLF: 170.29847782255095
Iteration: 5, Func. Count: 38, Neg. LLF: 159.35559738842036
Iteration: 6, Func. Count: 45, Neg. LLF: 159.35511595423492
Iteration: 7, Func. Count: 52, Neg. LLF: 159.35511544035958
Optimization terminated successfully (Exit mode 0)
Current function value: 159.35511544035958
Iterations: 7
Function evaluations: 52
Gradient evaluations: 7
Iteration: 1, Func. Count: 9, Neg. LLF: 167.98699833362824
Iteration: 2, Func. Count: 18, Neg. LLF: 159.78447663543236
Iteration: 3, Func. Count: 26, Neg. LLF: 159.37032214724368
Iteration: 4, Func. Count: 34, Neg. LLF: 159.35647590638268
Iteration: 5, Func. Count: 42, Neg. LLF: 159.35236950752517
Iteration: 6, Func. Count: 50, Neg. LLF: 159.34655875845576
Iteration: 7, Func. Count: 59, Neg. LLF: 159.3231539822535
Iteration: 8, Func. Count: 67, Neg. LLF: 159.32162802244542
Iteration: 9, Func. Count: 75, Neg. LLF: 159.3216225771539
Iteration: 10, Func. Count: 83, Neg. LLF: 159.32161820819852
Iteration: 11, Func. Count: 93, Neg. LLF: 159.32288444417821
Optimization terminated successfully (Exit mode 0)
Current function value: 159.32162123097245
Iterations: 12
Function evaluations: 96
Gradient evaluations: 11
Iteration: 1, Func. Count: 10, Neg. LLF: 165.85334326635427
Iteration: 2, Func. Count: 20, Neg. LLF: 159.50773091984755
Iteration: 3, Func. Count: 29, Neg. LLF: 159.4952444835689
Iteration: 4, Func. Count: 38, Neg. LLF: 159.4689627429016
Iteration: 5, Func. Count: 47, Neg. LLF: 159.47119654850906
Iteration: 6, Func. Count: 57, Neg. LLF: 159.46685399110584
Iteration: 7, Func. Count: 66, Neg. LLF: 159.46115673617794
Iteration: 8, Func. Count: 75, Neg. LLF: 159.4176343650458
Iteration: 9, Func. Count: 84, Neg. LLF: 159.41727954071067
Iteration: 10, Func. Count: 93, Neg. LLF: 159.4165145363457
Iteration: 11, Func. Count: 102, Neg. LLF: 159.41494603934788
Iteration: 12, Func. Count: 111, Neg. LLF: 159.4096901652289
Iteration: 13, Func. Count: 130, Neg. LLF: 159.38764091185286
Iteration: 14, Func. Count: 149, Neg. LLF: 159.39465948095753
Iteration: 15, Func. Count: 168, Neg. LLF: 159.39731940132856
Iteration: 16, Func. Count: 187, Neg. LLF: 159.375808580464
Iteration: 17, Func. Count: 206, Neg. LLF: 159.33137298164388
Iteration: 18, Func. Count: 215, Neg. LLF: 258841.82115685975
Iteration: 19, Func. Count: 229, Neg. LLF: 7431.4976123209035
Iteration: 20, Func. Count: 248, Neg. LLF: 200.23432526161488
Iteration: 21, Func. Count: 260, Neg. LLF: 159.3298084489688
Iteration: 22, Func. Count: 270, Neg. LLF: 159.32162272711042
Iteration: 23, Func. Count: 279, Neg. LLF: 159.32162222616554
Optimization terminated successfully (Exit mode 0)
Current function value: 159.32162222616554
Iterations: 24
Function evaluations: 279
Gradient evaluations: 23
Iteration: 1, Func. Count: 11, Neg. LLF: 168.055912064607
Iteration: 2, Func. Count: 22, Neg. LLF: 159.544485903879
Iteration: 3, Func. Count: 32, Neg. LLF: 159.545102905291
Iteration: 4, Func. Count: 43, Neg. LLF: 159.51849319662182
Iteration: 5, Func. Count: 53, Neg. LLF: 159.51302197036634
Iteration: 6, Func. Count: 63, Neg. LLF: 159.4863374400073
Iteration: 7, Func. Count: 73, Neg. LLF: 159.45081314256115
Iteration: 8, Func. Count: 83, Neg. LLF: 159.44732760641256
Iteration: 9, Func. Count: 93, Neg. LLF: 159.43747900999045
Iteration: 10, Func. Count: 103, Neg. LLF: 159.43178175776782
Iteration: 11, Func. Count: 113, Neg. LLF: 159.3999003813607
Iteration: 12, Func. Count: 123, Neg. LLF: 159.39760078025915
Iteration: 13, Func. Count: 133, Neg. LLF: 159.39639195323613
Iteration: 14, Func. Count: 143, Neg. LLF: 159.3900630848905
Iteration: 15, Func. Count: 153, Neg. LLF: 159.37359735519337
Iteration: 16, Func. Count: 163, Neg. LLF: 159.3647095275152
Iteration: 17, Func. Count: 173, Neg. LLF: 159.69629405477767
Iteration: 18, Func. Count: 185, Neg. LLF: 159.42106902871168
Iteration: 19, Func. Count: 196, Neg. LLF: 159.36606731069872
Iteration: 20, Func. Count: 207, Neg. LLF: 159.3713024527801
Iteration: 21, Func. Count: 218, Neg. LLF: 159.36142982938844
Iteration: 22, Func. Count: 229, Neg. LLF: 159.43484177240492
Iteration: 23, Func. Count: 240, Neg. LLF: 159.3552527608974
Iteration: 24, Func. Count: 250, Neg. LLF: 159.3551286596745
Iteration: 25, Func. Count: 260, Neg. LLF: 159.3551156991972
Iteration: 26, Func. Count: 270, Neg. LLF: 159.3551150744433
Optimization terminated successfully (Exit mode 0)
Current function value: 159.3551150744433
Iterations: 27
Function evaluations: 270
Gradient evaluations: 26
Iteration: 1, Func. Count: 8, Neg. LLF: 165.78201381487787
Iteration: 2, Func. Count: 16, Neg. LLF: 163.8290502978388
Iteration: 3, Func. Count: 24, Neg. LLF: 157.67089190463747
Iteration: 4, Func. Count: 31, Neg. LLF: 157.56374522577798
Iteration: 5, Func. Count: 38, Neg. LLF: 157.27771386415077
Iteration: 6, Func. Count: 45, Neg. LLF: 157.33708372978728
Iteration: 7, Func. Count: 53, Neg. LLF: 157.25937661437777
Iteration: 8, Func. Count: 60, Neg. LLF: 157.16340078492857
Iteration: 9, Func. Count: 67, Neg. LLF: 157.0644291276696
Iteration: 10, Func. Count: 74, Neg. LLF: 157.04784376181158
Iteration: 11, Func. Count: 81, Neg. LLF: 157.0459686429415
Iteration: 12, Func. Count: 88, Neg. LLF: 157.04587571690305
Iteration: 13, Func. Count: 95, Neg. LLF: 157.04587446023424
Iteration: 14, Func. Count: 101, Neg. LLF: 157.04587443931845
Optimization terminated successfully (Exit mode 0)
Current function value: 157.04587446023424
Iterations: 14
Function evaluations: 101
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 173.74501361265078
Iteration: 2, Func. Count: 18, Neg. LLF: 159.96796895346
Iteration: 3, Func. Count: 26, Neg. LLF: 159.39444837738083
Iteration: 4, Func. Count: 34, Neg. LLF: 160.3540136322214
Iteration: 5, Func. Count: 43, Neg. LLF: 159.35513181187892
Iteration: 6, Func. Count: 51, Neg. LLF: 159.35511583798643
Iteration: 7, Func. Count: 59, Neg. LLF: 159.35511525144858
Optimization terminated successfully (Exit mode 0)
Current function value: 159.35511525144858
Iterations: 7
Function evaluations: 59
Gradient evaluations: 7
Iteration: 1, Func. Count: 10, Neg. LLF: 167.82193315381554
Iteration: 2, Func. Count: 20, Neg. LLF: 160.13604996098036
Iteration: 3, Func. Count: 29, Neg. LLF: 160.09102176733185
Iteration: 4, Func. Count: 39, Neg. LLF: 159.75904250297197
Iteration: 5, Func. Count: 49, Neg. LLF: 159.62803181007965
Iteration: 6, Func. Count: 59, Neg. LLF: 159.18425770439694
Iteration: 7, Func. Count: 69, Neg. LLF: 160.28763396236906
Iteration: 8, Func. Count: 79, Neg. LLF: 158.04406502700326
Iteration: 9, Func. Count: 88, Neg. LLF: 157.71697779454465
Iteration: 10, Func. Count: 98, Neg. LLF: 157.35227030760706
Iteration: 11, Func. Count: 107, Neg. LLF: 158.02486068970552
Iteration: 12, Func. Count: 117, Neg. LLF: 157.20507651241178
Iteration: 13, Func. Count: 126, Neg. LLF: 157.1973980256857
Iteration: 14, Func. Count: 135, Neg. LLF: 157.18227498316344
Iteration: 15, Func. Count: 144, Neg. LLF: 157.16501993273104
Iteration: 16, Func. Count: 153, Neg. LLF: 157.14966948675357
Iteration: 17, Func. Count: 162, Neg. LLF: 157.11173200885256
Iteration: 18, Func. Count: 171, Neg. LLF: 157.08002250735768
Iteration: 19, Func. Count: 180, Neg. LLF: 157.05517383837224
Iteration: 20, Func. Count: 189, Neg. LLF: 157.04833301594928
Iteration: 21, Func. Count: 198, Neg. LLF: 157.04621639184325
Iteration: 22, Func. Count: 207, Neg. LLF: 157.045906729524
Iteration: 23, Func. Count: 216, Neg. LLF: 157.04587583050528
Iteration: 24, Func. Count: 225, Neg. LLF: 157.0458744892674
Iteration: 25, Func. Count: 233, Neg. LLF: 157.04587451111976
Optimization terminated successfully (Exit mode 0)
Current function value: 157.0458744892674
Iterations: 25
Function evaluations: 233
Gradient evaluations: 25
Iteration: 1, Func. Count: 11, Neg. LLF: 165.80033137497858
Iteration: 2, Func. Count: 22, Neg. LLF: 162.15214703071223
Iteration: 3, Func. Count: 33, Neg. LLF: 159.56379178488908
Iteration: 4, Func. Count: 43, Neg. LLF: 159.4745369281374
Iteration: 5, Func. Count: 53, Neg. LLF: 159.3902087705555
Iteration: 6, Func. Count: 63, Neg. LLF: 159.30824418332628
Iteration: 7, Func. Count: 73, Neg. LLF: 159.25079547239247
Iteration: 8, Func. Count: 83, Neg. LLF: 159.21895175605633
Iteration: 9, Func. Count: 93, Neg. LLF: 159.21806644377608
Iteration: 10, Func. Count: 103, Neg. LLF: 159.21776968052387
Iteration: 11, Func. Count: 113, Neg. LLF: 159.21736474596202
Iteration: 12, Func. Count: 123, Neg. LLF: 159.21631883174985
Iteration: 13, Func. Count: 133, Neg. LLF: 158.7770956637805
Iteration: 14, Func. Count: 143, Neg. LLF: 160.33860316393464
Iteration: 15, Func. Count: 154, Neg. LLF: 161.32520038008045
Iteration: 16, Func. Count: 166, Neg. LLF: 164.59724275696567
Iteration: 17, Func. Count: 178, Neg. LLF: 163.22686559437022
Iteration: 18, Func. Count: 189, Neg. LLF: 159.6462426498616
Iteration: 19, Func. Count: 200, Neg. LLF: 157.92324722469866
Iteration: 20, Func. Count: 211, Neg. LLF: 157.55778154833004
Iteration: 21, Func. Count: 222, Neg. LLF: 157.579334135544
Iteration: 22, Func. Count: 233, Neg. LLF: 157.35478922817805
Iteration: 23, Func. Count: 243, Neg. LLF: 157.3018184324105
Iteration: 24, Func. Count: 253, Neg. LLF: 157.19980841478537
Iteration: 25, Func. Count: 263, Neg. LLF: 157.0748255886653
Iteration: 26, Func. Count: 273, Neg. LLF: 157.0475138334275
Iteration: 27, Func. Count: 283, Neg. LLF: 157.04592293035427
Iteration: 28, Func. Count: 293, Neg. LLF: 157.0458749409299
Iteration: 29, Func. Count: 302, Neg. LLF: 157.0458749438804
Optimization terminated successfully (Exit mode 0)
Current function value: 157.0458749409299
Iterations: 30
Function evaluations: 302
Gradient evaluations: 29
Iteration: 1, Func. Count: 12, Neg. LLF: 167.5466801588145
Iteration: 2, Func. Count: 24, Neg. LLF: 158.13265211702392
Iteration: 3, Func. Count: 35, Neg. LLF: 157.14403229436795
Iteration: 4, Func. Count: 46, Neg. LLF: 157.06354607954634
Iteration: 5, Func. Count: 58, Neg. LLF: 161.20512956559963
Iteration: 6, Func. Count: 70, Neg. LLF: 156.99122411897397
Iteration: 7, Func. Count: 82, Neg. LLF: 156.53524737635158
Iteration: 8, Func. Count: 93, Neg. LLF: 156.8550153288601
Iteration: 9, Func. Count: 105, Neg. LLF: 156.51838264908633
Iteration: 10, Func. Count: 116, Neg. LLF: 156.4984931591666
Iteration: 11, Func. Count: 127, Neg. LLF: 156.48536274407846
Iteration: 12, Func. Count: 138, Neg. LLF: 156.48031685534937
Iteration: 13, Func. Count: 149, Neg. LLF: 156.4797711435484
Iteration: 14, Func. Count: 160, Neg. LLF: 156.47975952671666
Iteration: 15, Func. Count: 170, Neg. LLF: 156.47975943834098
Optimization terminated successfully (Exit mode 0)
Current function value: 156.47975952671666
Iterations: 15
Function evaluations: 170
Gradient evaluations: 15
Iteration: 1, Func. Count: 9, Neg. LLF: 165.40510746500343
Iteration: 2, Func. Count: 18, Neg. LLF: 165.1495004822533
Iteration: 3, Func. Count: 27, Neg. LLF: 157.73428175600606
Iteration: 4, Func. Count: 35, Neg. LLF: 157.82125917759473
Iteration: 5, Func. Count: 44, Neg. LLF: 157.3864808645227
Iteration: 6, Func. Count: 52, Neg. LLF: 157.32562128234517
Iteration: 7, Func. Count: 60, Neg. LLF: 157.26173834280704
Iteration: 8, Func. Count: 68, Neg. LLF: 157.25108399559824
Iteration: 9, Func. Count: 76, Neg. LLF: 157.22996242188162
Iteration: 10, Func. Count: 84, Neg. LLF: 157.20119360850364
Iteration: 11, Func. Count: 92, Neg. LLF: 157.1096148671862
Iteration: 12, Func. Count: 100, Neg. LLF: 157.05341669666302
Iteration: 13, Func. Count: 108, Neg. LLF: 157.04654770207142
Iteration: 14, Func. Count: 116, Neg. LLF: 157.04593278890133
Iteration: 15, Func. Count: 124, Neg. LLF: 157.04587536481097
Iteration: 16, Func. Count: 132, Neg. LLF: 157.0458745249355
Optimization terminated successfully (Exit mode 0)
Current function value: 157.0458745249355
Iterations: 16
Function evaluations: 132
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 173.77140273483926
Iteration: 2, Func. Count: 20, Neg. LLF: 159.95551656298224
Iteration: 3, Func. Count: 29, Neg. LLF: 159.41030874336766
Iteration: 4, Func. Count: 38, Neg. LLF: 159.37520453923162
Iteration: 5, Func. Count: 47, Neg. LLF: 159.43152806132704
Iteration: 6, Func. Count: 57, Neg. LLF: 159.35511973245568
Iteration: 7, Func. Count: 66, Neg. LLF: 159.35511526043163
Iteration: 8, Func. Count: 74, Neg. LLF: 159.35511563884845
Optimization terminated successfully (Exit mode 0)
Current function value: 159.35511526043163
Iterations: 8
Function evaluations: 74
Gradient evaluations: 8
Iteration: 1, Func. Count: 11, Neg. LLF: 167.85095958285532
Iteration: 2, Func. Count: 22, Neg. LLF: 160.13845756424382
Iteration: 3, Func. Count: 32, Neg. LLF: 160.09008075153193
Iteration: 4, Func. Count: 43, Neg. LLF: 159.69930572223686
Iteration: 5, Func. Count: 53, Neg. LLF: 159.8241449797788
Iteration: 6, Func. Count: 64, Neg. LLF: 158.9072632939293
Iteration: 7, Func. Count: 74, Neg. LLF: 159.9141958699443
Iteration: 8, Func. Count: 85, Neg. LLF: 158.62199636994208
Iteration: 9, Func. Count: 96, Neg. LLF: 158.75095024154135
Iteration: 10, Func. Count: 107, Neg. LLF: 158.12504885221733
Iteration: 11, Func. Count: 118, Neg. LLF: 157.64994861833267
Iteration: 12, Func. Count: 128, Neg. LLF: 157.57398590467042
Iteration: 13, Func. Count: 139, Neg. LLF: 159.6422429370294
Iteration: 14, Func. Count: 151, Neg. LLF: 157.24509226553934
Iteration: 15, Func. Count: 161, Neg. LLF: 157.20935107495634
Iteration: 16, Func. Count: 171, Neg. LLF: 157.18071827543523
Iteration: 17, Func. Count: 181, Neg. LLF: 157.1712510598808
Iteration: 18, Func. Count: 191, Neg. LLF: 157.1302853391826
Iteration: 19, Func. Count: 201, Neg. LLF: 157.07631025501544
Iteration: 20, Func. Count: 211, Neg. LLF: 157.05946774350733
Iteration: 21, Func. Count: 221, Neg. LLF: 157.04695096136754
Iteration: 22, Func. Count: 231, Neg. LLF: 157.04598595334062
Iteration: 23, Func. Count: 241, Neg. LLF: 157.04588235967918
Iteration: 24, Func. Count: 251, Neg. LLF: 157.04587453785186
Iteration: 25, Func. Count: 260, Neg. LLF: 157.04587455974885
Optimization terminated successfully (Exit mode 0)
Current function value: 157.04587453785186
Iterations: 25
Function evaluations: 260
Gradient evaluations: 25
Iteration: 1, Func. Count: 12, Neg. LLF: 165.65346645153247
Iteration: 2, Func. Count: 24, Neg. LLF: 161.9875469301226
Iteration: 3, Func. Count: 36, Neg. LLF: 159.526679500866
Iteration: 4, Func. Count: 47, Neg. LLF: 160.22834589063834
Iteration: 5, Func. Count: 59, Neg. LLF: 159.40180206865662
Iteration: 6, Func. Count: 70, Neg. LLF: 159.3604366842599
Iteration: 7, Func. Count: 81, Neg. LLF: 159.2986189284165
Iteration: 8, Func. Count: 92, Neg. LLF: 159.47780222851168
Iteration: 9, Func. Count: 104, Neg. LLF: 159.2246341637585
Iteration: 10, Func. Count: 115, Neg. LLF: 159.2196461230042
Iteration: 11, Func. Count: 126, Neg. LLF: 159.21898835425748
Iteration: 12, Func. Count: 137, Neg. LLF: 159.21790456699404
Iteration: 13, Func. Count: 148, Neg. LLF: 159.217342660814
Iteration: 14, Func. Count: 159, Neg. LLF: 159.2163265275611
Iteration: 15, Func. Count: 170, Neg. LLF: 158.88039460460155
Iteration: 16, Func. Count: 181, Neg. LLF: 159.90089364741024
Iteration: 17, Func. Count: 193, Neg. LLF: 193.83943009876646
Iteration: 18, Func. Count: 207, Neg. LLF: 162.31208285128665
Iteration: 19, Func. Count: 224, Neg. LLF: 168.20111688422077
Iteration: 20, Func. Count: 239, Neg. LLF: 158.34745289001242
Iteration: 21, Func. Count: 250, Neg. LLF: 161.0616704767092
Iteration: 22, Func. Count: 262, Neg. LLF: 161.46403600080833
Iteration: 23, Func. Count: 275, Neg. LLF: 158.8932011858092
Iteration: 24, Func. Count: 287, Neg. LLF: 157.60793177660474
Iteration: 25, Func. Count: 298, Neg. LLF: 158.9399014486473
Iteration: 26, Func. Count: 310, Neg. LLF: 157.38140463514017
Iteration: 27, Func. Count: 321, Neg. LLF: 157.29691776291259
Iteration: 28, Func. Count: 332, Neg. LLF: 157.10253467850646
Iteration: 29, Func. Count: 343, Neg. LLF: 157.05515524859615
Iteration: 30, Func. Count: 354, Neg. LLF: 157.04675323327882
Iteration: 31, Func. Count: 365, Neg. LLF: 157.04593775733852
Iteration: 32, Func. Count: 376, Neg. LLF: 157.04587872663464
Iteration: 33, Func. Count: 387, Neg. LLF: 157.04587456728913
Iteration: 34, Func. Count: 397, Neg. LLF: 157.04587457018997
Optimization terminated successfully (Exit mode 0)
Current function value: 157.04587456728913
Iterations: 35
Function evaluations: 397
Gradient evaluations: 34
Iteration: 1, Func. Count: 13, Neg. LLF: 167.3581241438599
Iteration: 2, Func. Count: 26, Neg. LLF: 158.4806820173812
Iteration: 3, Func. Count: 38, Neg. LLF: 157.04390574659755
Iteration: 4, Func. Count: 50, Neg. LLF: 166.14261459531897
Iteration: 5, Func. Count: 63, Neg. LLF: 157.44090945679335
Iteration: 6, Func. Count: 76, Neg. LLF: 156.5684019234062
Iteration: 7, Func. Count: 88, Neg. LLF: 156.53986266305665
Iteration: 8, Func. Count: 100, Neg. LLF: 156.51532332196737
Iteration: 9, Func. Count: 112, Neg. LLF: 156.50883002689577
Iteration: 10, Func. Count: 124, Neg. LLF: 156.49035670932548
Iteration: 11, Func. Count: 136, Neg. LLF: 156.48176188035393
Iteration: 12, Func. Count: 148, Neg. LLF: 156.4798299820578
Iteration: 13, Func. Count: 160, Neg. LLF: 156.4797606323175
Iteration: 14, Func. Count: 172, Neg. LLF: 156.4797591890964
Iteration: 15, Func. Count: 183, Neg. LLF: 156.4797591006008
Optimization terminated successfully (Exit mode 0)
Current function value: 156.4797591890964
Iterations: 15
Function evaluations: 183
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 164.83401165222756
Iteration: 2, Func. Count: 20, Neg. LLF: 165.95439020165963
Iteration: 3, Func. Count: 30, Neg. LLF: 157.7656557039347
Iteration: 4, Func. Count: 39, Neg. LLF: 157.91039407512304
Iteration: 5, Func. Count: 49, Neg. LLF: 158.18393567951125
Iteration: 6, Func. Count: 59, Neg. LLF: 157.3096909370996
Iteration: 7, Func. Count: 68, Neg. LLF: 157.25533351341156
Iteration: 8, Func. Count: 77, Neg. LLF: 157.2563531208094
Iteration: 9, Func. Count: 87, Neg. LLF: 157.2285830425668
Iteration: 10, Func. Count: 96, Neg. LLF: 157.1195225637197
Iteration: 11, Func. Count: 105, Neg. LLF: 157.06087019087218
Iteration: 12, Func. Count: 114, Neg. LLF: 157.0466631840114
Iteration: 13, Func. Count: 123, Neg. LLF: 157.0458861532045
Iteration: 14, Func. Count: 132, Neg. LLF: 157.0458746394758
Iteration: 15, Func. Count: 140, Neg. LLF: 157.04587465694595
Optimization terminated successfully (Exit mode 0)
Current function value: 157.0458746394758
Iterations: 15
Function evaluations: 140
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 173.76546092357114
Iteration: 2, Func. Count: 22, Neg. LLF: 159.95229450839392
Iteration: 3, Func. Count: 32, Neg. LLF: 159.42021761260978
Iteration: 4, Func. Count: 42, Neg. LLF: 159.3984406839248
Iteration: 5, Func. Count: 52, Neg. LLF: 159.39495495194066
Iteration: 6, Func. Count: 63, Neg. LLF: 159.35524585246867
Iteration: 7, Func. Count: 73, Neg. LLF: 159.35511548592052
Iteration: 8, Func. Count: 82, Neg. LLF: 159.35511586306438
Optimization terminated successfully (Exit mode 0)
Current function value: 159.35511548592052
Iterations: 8
Function evaluations: 82
Gradient evaluations: 8
Iteration: 1, Func. Count: 12, Neg. LLF: 167.8341983548488
Iteration: 2, Func. Count: 24, Neg. LLF: 160.13554258475
Iteration: 3, Func. Count: 35, Neg. LLF: 160.09100981794575
Iteration: 4, Func. Count: 47, Neg. LLF: 159.65805679795398
Iteration: 5, Func. Count: 58, Neg. LLF: 159.65566529382232
Iteration: 6, Func. Count: 70, Neg. LLF: 158.8776993607081
Iteration: 7, Func. Count: 81, Neg. LLF: 159.51956150112184
Iteration: 8, Func. Count: 93, Neg. LLF: 159.38927430141413
Iteration: 9, Func. Count: 105, Neg. LLF: 158.92466771941872
Iteration: 10, Func. Count: 117, Neg. LLF: 158.03498431069175
Iteration: 11, Func. Count: 128, Neg. LLF: 157.79947709585193
Iteration: 12, Func. Count: 140, Neg. LLF: 157.4072016654536
Iteration: 13, Func. Count: 151, Neg. LLF: 157.22057072845902
Iteration: 14, Func. Count: 162, Neg. LLF: 157.2197916838802
Iteration: 15, Func. Count: 174, Neg. LLF: 157.18749571131733
Iteration: 16, Func. Count: 185, Neg. LLF: 157.16681654023125
Iteration: 17, Func. Count: 196, Neg. LLF: 157.14877443358654
Iteration: 18, Func. Count: 207, Neg. LLF: 157.0853613990683
Iteration: 19, Func. Count: 218, Neg. LLF: 157.05686066768985
Iteration: 20, Func. Count: 229, Neg. LLF: 157.04631020315028
Iteration: 21, Func. Count: 240, Neg. LLF: 157.0459073343559
Iteration: 22, Func. Count: 251, Neg. LLF: 157.0458772557452
Iteration: 23, Func. Count: 262, Neg. LLF: 157.0458745421539
Iteration: 24, Func. Count: 272, Neg. LLF: 157.04587456406225
Optimization terminated successfully (Exit mode 0)
Current function value: 157.0458745421539
Iterations: 24
Function evaluations: 272
Gradient evaluations: 24
Iteration: 1, Func. Count: 13, Neg. LLF: 165.70486935902247
Iteration: 2, Func. Count: 26, Neg. LLF: 162.02177714788326
Iteration: 3, Func. Count: 39, Neg. LLF: 159.57496104126088
Iteration: 4, Func. Count: 51, Neg. LLF: 159.88227399710414
Iteration: 5, Func. Count: 64, Neg. LLF: 159.45168188498758
Iteration: 6, Func. Count: 76, Neg. LLF: 159.40017886056216
Iteration: 7, Func. Count: 88, Neg. LLF: 159.29570696427842
Iteration: 8, Func. Count: 100, Neg. LLF: 162.18921105125435
Iteration: 9, Func. Count: 113, Neg. LLF: 159.2340133204139
Iteration: 10, Func. Count: 125, Neg. LLF: 159.22012906913744
Iteration: 11, Func. Count: 137, Neg. LLF: 159.21840498456655
Iteration: 12, Func. Count: 149, Neg. LLF: 159.21810193303736
Iteration: 13, Func. Count: 161, Neg. LLF: 159.21776026222994
Iteration: 14, Func. Count: 173, Neg. LLF: 159.21727605573372
Iteration: 15, Func. Count: 185, Neg. LLF: 159.21655788259815
Iteration: 16, Func. Count: 197, Neg. LLF: 158.984791731809
Iteration: 17, Func. Count: 209, Neg. LLF: 159.3327232701166
Iteration: 18, Func. Count: 222, Neg. LLF: 184.4609968469346
Iteration: 19, Func. Count: 237, Neg. LLF: 157.63663451746007
Iteration: 20, Func. Count: 250, Neg. LLF: 158.23026226458109
Iteration: 21, Func. Count: 272, Neg. LLF: 158.0244299437321
Iteration: 22, Func. Count: 284, Neg. LLF: 180.44170972348113
Iteration: 23, Func. Count: 299, Neg. LLF: 174.11078815868956
Iteration: 24, Func. Count: 313, Neg. LLF: 160.61950772023025
Iteration: 25, Func. Count: 326, Neg. LLF: 157.3793154109469
Iteration: 26, Func. Count: 339, Neg. LLF: 157.21115723028382
Iteration: 27, Func. Count: 351, Neg. LLF: 157.2066151256256
Iteration: 28, Func. Count: 364, Neg. LLF: 157.17138970146362
Iteration: 29, Func. Count: 376, Neg. LLF: 157.1390206127208
Iteration: 30, Func. Count: 388, Neg. LLF: 157.11421867371388
Iteration: 31, Func. Count: 400, Neg. LLF: 157.09360629772817
Iteration: 32, Func. Count: 412, Neg. LLF: 157.08285317099535
Iteration: 33, Func. Count: 424, Neg. LLF: 157.07032062918222
Iteration: 34, Func. Count: 436, Neg. LLF: 157.05424781731602
Iteration: 35, Func. Count: 448, Neg. LLF: 157.04764073651995
Iteration: 36, Func. Count: 460, Neg. LLF: 157.04617057188398
Iteration: 37, Func. Count: 472, Neg. LLF: 157.04587760578826
Iteration: 38, Func. Count: 484, Neg. LLF: 157.04587447492355
Iteration: 39, Func. Count: 495, Neg. LLF: 157.045874477791
Optimization terminated successfully (Exit mode 0)
Current function value: 157.04587447492355
Iterations: 40
Function evaluations: 495
Gradient evaluations: 39
Iteration: 1, Func. Count: 14, Neg. LLF: 167.52656107022588
Iteration: 2, Func. Count: 28, Neg. LLF: 158.2976552477016
Iteration: 3, Func. Count: 41, Neg. LLF: 157.1061947068176
Iteration: 4, Func. Count: 54, Neg. LLF: 165.7965385956721
Iteration: 5, Func. Count: 68, Neg. LLF: 157.23437678069266
Iteration: 6, Func. Count: 82, Neg. LLF: 156.74704100141872
Iteration: 7, Func. Count: 96, Neg. LLF: 156.56065152809157
Iteration: 8, Func. Count: 109, Neg. LLF: 156.52328013476483
Iteration: 9, Func. Count: 122, Neg. LLF: 156.51565097864707
Iteration: 10, Func. Count: 135, Neg. LLF: 156.48685859318198
Iteration: 11, Func. Count: 148, Neg. LLF: 156.48017025255365
Iteration: 12, Func. Count: 161, Neg. LLF: 156.47976604001494
Iteration: 13, Func. Count: 174, Neg. LLF: 156.47975911767475
Iteration: 14, Func. Count: 186, Neg. LLF: 156.47975902916133
Optimization terminated successfully (Exit mode 0)
Current function value: 156.47975911767475
Iterations: 14
Function evaluations: 186
Gradient evaluations: 14
Iteration: 1, Func. Count: 7, Neg. LLF: 162.89691152652398
Iteration: 2, Func. Count: 13, Neg. LLF: 164.17559656686177
Iteration: 3, Func. Count: 20, Neg. LLF: 162.72207616100764
Iteration: 4, Func. Count: 26, Neg. LLF: 162.7191453764675
Iteration: 5, Func. Count: 32, Neg. LLF: 162.71891862921112
Iteration: 6, Func. Count: 38, Neg. LLF: 162.71773334499565
Iteration: 7, Func. Count: 44, Neg. LLF: 162.71627761368447
Iteration: 8, Func. Count: 50, Neg. LLF: 162.7150709698356
Iteration: 9, Func. Count: 56, Neg. LLF: 162.7145462167907
Iteration: 10, Func. Count: 62, Neg. LLF: 162.71448695588953
Iteration: 11, Func. Count: 68, Neg. LLF: 162.71448568032122
Iteration: 12, Func. Count: 73, Neg. LLF: 162.71448588511842
Optimization terminated successfully (Exit mode 0)
Current function value: 162.71448568032122
Iterations: 12
Function evaluations: 73
Gradient evaluations: 12
Iteration: 1, Func. Count: 8, Neg. LLF: 173.5207250381747
Iteration: 2, Func. Count: 16, Neg. LLF: 160.47583015824674
Iteration: 3, Func. Count: 23, Neg. LLF: 159.39118108242087
Iteration: 4, Func. Count: 30, Neg. LLF: 159.37572499747486
Iteration: 5, Func. Count: 37, Neg. LLF: 159.355760536903
Iteration: 6, Func. Count: 44, Neg. LLF: 159.3554033317104
Iteration: 7, Func. Count: 51, Neg. LLF: 159.35511515797162
Iteration: 8, Func. Count: 57, Neg. LLF: 159.35511553669787
Optimization terminated successfully (Exit mode 0)
Current function value: 159.35511515797162
Iterations: 8
Function evaluations: 57
Gradient evaluations: 8
Iteration: 1, Func. Count: 9, Neg. LLF: 168.20107102773653
Iteration: 2, Func. Count: 18, Neg. LLF: 159.71107189708673
Iteration: 3, Func. Count: 26, Neg. LLF: 159.32895675969223
Iteration: 4, Func. Count: 34, Neg. LLF: 159.38527942891707
Iteration: 5, Func. Count: 43, Neg. LLF: 159.3275338880087
Iteration: 6, Func. Count: 52, Neg. LLF: 159.32201892937206
Iteration: 7, Func. Count: 60, Neg. LLF: 159.32187685879927
Iteration: 8, Func. Count: 68, Neg. LLF: 159.32167217324923
Iteration: 9, Func. Count: 76, Neg. LLF: 159.32162974436824
Iteration: 10, Func. Count: 84, Neg. LLF: 159.32158788236606
Iteration: 11, Func. Count: 92, Neg. LLF: 159.32160284144985
Iteration: 12, Func. Count: 110, Neg. LLF: 159.3261292866981
Iteration: 13, Func. Count: 121, Neg. LLF: 159.32162278185226
Iteration: 14, Func. Count: 130, Neg. LLF: 159.32162221621016
Iteration: 15, Func. Count: 137, Neg. LLF: 159.3216220082093
Optimization terminated successfully (Exit mode 0)
Current function value: 159.32162221621016
Iterations: 16
Function evaluations: 137
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 166.59104487233984
Iteration: 2, Func. Count: 20, Neg. LLF: 159.51715180511982
Iteration: 3, Func. Count: 29, Neg. LLF: 159.56136153307745
Iteration: 4, Func. Count: 39, Neg. LLF: 159.47000865951537
Iteration: 5, Func. Count: 48, Neg. LLF: 159.46770320649787
Iteration: 6, Func. Count: 57, Neg. LLF: 159.45827570947085
Iteration: 7, Func. Count: 66, Neg. LLF: 159.41340478165216
Iteration: 8, Func. Count: 75, Neg. LLF: 159.41227554100405
Iteration: 9, Func. Count: 84, Neg. LLF: 159.41060431069565
Iteration: 10, Func. Count: 93, Neg. LLF: 159.40585537210276
Iteration: 11, Func. Count: 102, Neg. LLF: 159.3939570873663
Iteration: 12, Func. Count: 111, Neg. LLF: 159.3717779078397
Iteration: 13, Func. Count: 120, Neg. LLF: 159.36449595003887
Iteration: 14, Func. Count: 129, Neg. LLF: 159.35744937821678
Iteration: 15, Func. Count: 138, Neg. LLF: 159.64771613471044
Iteration: 16, Func. Count: 148, Neg. LLF: 159.35524523302354
Iteration: 17, Func. Count: 157, Neg. LLF: 159.35511610991742
Iteration: 18, Func. Count: 166, Neg. LLF: 159.35511507905642
Iteration: 19, Func. Count: 174, Neg. LLF: 159.35511470577072
Optimization terminated successfully (Exit mode 0)
Current function value: 159.35511507905642
Iterations: 20
Function evaluations: 174
Gradient evaluations: 19
Iteration: 1, Func. Count: 11, Neg. LLF: 169.2659248644366
Iteration: 2, Func. Count: 22, Neg. LLF: 159.5508644653622
Iteration: 3, Func. Count: 32, Neg. LLF: 159.52390203708057
Iteration: 4, Func. Count: 42, Neg. LLF: 159.51517855609004
Iteration: 5, Func. Count: 52, Neg. LLF: 159.50351895345972
Iteration: 6, Func. Count: 62, Neg. LLF: 159.48943590066003
Iteration: 7, Func. Count: 72, Neg. LLF: 159.46392330088176
Iteration: 8, Func. Count: 82, Neg. LLF: 159.46118725929318
Iteration: 9, Func. Count: 92, Neg. LLF: 159.4459705369597
Iteration: 10, Func. Count: 102, Neg. LLF: 159.4064796451467
Iteration: 11, Func. Count: 112, Neg. LLF: 159.39911577910559
Iteration: 12, Func. Count: 122, Neg. LLF: 159.39163769161127
Iteration: 13, Func. Count: 132, Neg. LLF: 159.3789143614922
Iteration: 14, Func. Count: 142, Neg. LLF: 159.37897548025236
Iteration: 15, Func. Count: 152, Neg. LLF: 159.36399627651852
Iteration: 16, Func. Count: 162, Neg. LLF: 159.47609342724735
Iteration: 17, Func. Count: 173, Neg. LLF: 159.37875106474618
Iteration: 18, Func. Count: 184, Neg. LLF: 159.355115080011
Iteration: 19, Func. Count: 193, Neg. LLF: 159.35511471154885
Optimization terminated successfully (Exit mode 0)
Current function value: 159.355115080011
Iterations: 20
Function evaluations: 193
Gradient evaluations: 19
Iteration: 1, Func. Count: 8, Neg. LLF: 164.8538060880605
Iteration: 2, Func. Count: 15, Neg. LLF: 164.09731204866264
Iteration: 3, Func. Count: 24, Neg. LLF: 180.15996629533402
Iteration: 4, Func. Count: 32, Neg. LLF: 173.7523065486044
Iteration: 5, Func. Count: 42, Neg. LLF: 162.0080357103492
Iteration: 6, Func. Count: 49, Neg. LLF: 161.9782704732577
Iteration: 7, Func. Count: 56, Neg. LLF: 161.97127729752347
Iteration: 8, Func. Count: 63, Neg. LLF: 161.9685002267613
Iteration: 9, Func. Count: 70, Neg. LLF: 161.94534288044537
Iteration: 10, Func. Count: 77, Neg. LLF: 161.93145621105108
Iteration: 11, Func. Count: 84, Neg. LLF: 161.9341452324838
Iteration: 12, Func. Count: 93, Neg. LLF: 161.86839552881884
Iteration: 13, Func. Count: 100, Neg. LLF: 161.84022913753793
Iteration: 14, Func. Count: 107, Neg. LLF: 161.82776909696676
Iteration: 15, Func. Count: 114, Neg. LLF: 161.792955155813
Iteration: 16, Func. Count: 121, Neg. LLF: 161.76491010441538
Iteration: 17, Func. Count: 128, Neg. LLF: 161.75593710329437
Iteration: 18, Func. Count: 135, Neg. LLF: 161.75541188480284
Iteration: 19, Func. Count: 142, Neg. LLF: 161.75533785094078
Iteration: 20, Func. Count: 149, Neg. LLF: 161.75533327581266
Iteration: 21, Func. Count: 155, Neg. LLF: 161.75533327428192
Optimization terminated successfully (Exit mode 0)
Current function value: 161.75533327581266
Iterations: 21
Function evaluations: 155
Gradient evaluations: 21
Iteration: 1, Func. Count: 9, Neg. LLF: 173.72244335447783
Iteration: 2, Func. Count: 18, Neg. LLF: 159.99561854219124
Iteration: 3, Func. Count: 26, Neg. LLF: 159.43463240363488
Iteration: 4, Func. Count: 34, Neg. LLF: 176.59716611832928
Iteration: 5, Func. Count: 44, Neg. LLF: 159.35750195728318
Iteration: 6, Func. Count: 52, Neg. LLF: 159.35512176877066
Iteration: 7, Func. Count: 60, Neg. LLF: 159.35511566353787
Iteration: 8, Func. Count: 67, Neg. LLF: 159.35511528485026
Optimization terminated successfully (Exit mode 0)
Current function value: 159.35511566353787
Iterations: 8
Function evaluations: 67
Gradient evaluations: 8
Iteration: 1, Func. Count: 10, Neg. LLF: 168.5250481182383
Iteration: 2, Func. Count: 20, Neg. LLF: 159.72670363773068
Iteration: 3, Func. Count: 29, Neg. LLF: 159.35283320736218
Iteration: 4, Func. Count: 38, Neg. LLF: 159.34403290403316
Iteration: 5, Func. Count: 47, Neg. LLF: 159.34166569638413
Iteration: 6, Func. Count: 56, Neg. LLF: 159.32570650591103
Iteration: 7, Func. Count: 65, Neg. LLF: 159.32178972747937
Iteration: 8, Func. Count: 74, Neg. LLF: 159.3216144831972
Iteration: 9, Func. Count: 83, Neg. LLF: 159.3216223613012
Iteration: 10, Func. Count: 91, Neg. LLF: 159.32162215327907
Optimization terminated successfully (Exit mode 0)
Current function value: 159.3216223613012
Iterations: 11
Function evaluations: 91
Gradient evaluations: 10
Iteration: 1, Func. Count: 11, Neg. LLF: 166.81325731613634
Iteration: 2, Func. Count: 22, Neg. LLF: 159.51484795110386
Iteration: 3, Func. Count: 32, Neg. LLF: 161.53751587710738
Iteration: 4, Func. Count: 43, Neg. LLF: 159.47018933298614
Iteration: 5, Func. Count: 53, Neg. LLF: 159.4679583530259
Iteration: 6, Func. Count: 63, Neg. LLF: 159.46254284415411
Iteration: 7, Func. Count: 73, Neg. LLF: 159.41691104203645
Iteration: 8, Func. Count: 83, Neg. LLF: 159.41616131291732
Iteration: 9, Func. Count: 93, Neg. LLF: 159.4150102042666
Iteration: 10, Func. Count: 103, Neg. LLF: 159.414901356181
Iteration: 11, Func. Count: 113, Neg. LLF: 159.41284393221733
Iteration: 12, Func. Count: 123, Neg. LLF: 159.4010414377428
Iteration: 13, Func. Count: 133, Neg. LLF: 159.37717574243632
Iteration: 14, Func. Count: 143, Neg. LLF: 159.36660684477664
Iteration: 15, Func. Count: 153, Neg. LLF: 160.52574058208626
Iteration: 16, Func. Count: 164, Neg. LLF: 159.35570930564353
Iteration: 17, Func. Count: 174, Neg. LLF: 159.35512170708952
Iteration: 18, Func. Count: 184, Neg. LLF: 159.3551151111341
Iteration: 19, Func. Count: 193, Neg. LLF: 159.3551147381094
Optimization terminated successfully (Exit mode 0)
Current function value: 159.3551151111341
Iterations: 20
Function evaluations: 193
Gradient evaluations: 19
Iteration: 1, Func. Count: 12, Neg. LLF: 169.97678755624312
Iteration: 2, Func. Count: 24, Neg. LLF: 159.54632982859187
Iteration: 3, Func. Count: 35, Neg. LLF: 159.52899580114013
Iteration: 4, Func. Count: 46, Neg. LLF: 159.50823256628033
Iteration: 5, Func. Count: 57, Neg. LLF: 159.4968680637729
Iteration: 6, Func. Count: 68, Neg. LLF: 159.46792890274028
Iteration: 7, Func. Count: 79, Neg. LLF: 159.45983983545474
Iteration: 8, Func. Count: 90, Neg. LLF: 159.45166048486067
Iteration: 9, Func. Count: 101, Neg. LLF: 159.44379356890434
Iteration: 10, Func. Count: 112, Neg. LLF: 159.4039116098929
Iteration: 11, Func. Count: 123, Neg. LLF: 159.39440375613074
Iteration: 12, Func. Count: 134, Neg. LLF: 159.38482944410453
Iteration: 13, Func. Count: 145, Neg. LLF: 159.37715882508772
Iteration: 14, Func. Count: 156, Neg. LLF: 159.36477035901038
Iteration: 15, Func. Count: 167, Neg. LLF: 159.35986644645783
Iteration: 16, Func. Count: 178, Neg. LLF: 159.3582712653127
Iteration: 17, Func. Count: 189, Neg. LLF: 159.35761470115665
Iteration: 18, Func. Count: 200, Neg. LLF: 159.3553326228069
Iteration: 19, Func. Count: 211, Neg. LLF: 159.3551400455116
Iteration: 20, Func. Count: 222, Neg. LLF: 159.35511845286007
Iteration: 21, Func. Count: 233, Neg. LLF: 159.35511507400497
Iteration: 22, Func. Count: 243, Neg. LLF: 159.35511470552842
Optimization terminated successfully (Exit mode 0)
Current function value: 159.35511507400497
Iterations: 23
Function evaluations: 243
Gradient evaluations: 22
Iteration: 1, Func. Count: 9, Neg. LLF: 163.7977018143426
Iteration: 2, Func. Count: 18, Neg. LLF: 164.2636602035514
Iteration: 3, Func. Count: 27, Neg. LLF: 157.72792034117467
Iteration: 4, Func. Count: 35, Neg. LLF: 157.69532484068424
Iteration: 5, Func. Count: 44, Neg. LLF: 162.36574561507837
Iteration: 6, Func. Count: 53, Neg. LLF: 157.30506615705144
Iteration: 7, Func. Count: 61, Neg. LLF: 157.2622005345899
Iteration: 8, Func. Count: 69, Neg. LLF: 157.25765134130862
Iteration: 9, Func. Count: 77, Neg. LLF: 157.22993572849168
Iteration: 10, Func. Count: 85, Neg. LLF: 157.11922583488766
Iteration: 11, Func. Count: 93, Neg. LLF: 157.05124074888573
Iteration: 12, Func. Count: 101, Neg. LLF: 157.0461079383213
Iteration: 13, Func. Count: 109, Neg. LLF: 157.04587941286601
Iteration: 14, Func. Count: 117, Neg. LLF: 157.04587454280923
Iteration: 15, Func. Count: 124, Neg. LLF: 157.04587452189097
Optimization terminated successfully (Exit mode 0)
Current function value: 157.04587454280923
Iterations: 15
Function evaluations: 124
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 173.7292233023529
Iteration: 2, Func. Count: 20, Neg. LLF: 159.98404230499057
Iteration: 3, Func. Count: 29, Neg. LLF: 159.4170828256161
Iteration: 4, Func. Count: 38, Neg. LLF: 166.447716198188
Iteration: 5, Func. Count: 48, Neg. LLF: 159.35686891432408
Iteration: 6, Func. Count: 57, Neg. LLF: 159.35511814463885
Iteration: 7, Func. Count: 66, Neg. LLF: 159.3551151031889
Iteration: 8, Func. Count: 74, Neg. LLF: 159.35511548171303
Optimization terminated successfully (Exit mode 0)
Current function value: 159.3551151031889
Iterations: 8
Function evaluations: 74
Gradient evaluations: 8
Iteration: 1, Func. Count: 11, Neg. LLF: 168.3457267364249
Iteration: 2, Func. Count: 22, Neg. LLF: 160.11789937672305
Iteration: 3, Func. Count: 32, Neg. LLF: 159.7964181803065
Iteration: 4, Func. Count: 42, Neg. LLF: 159.849638571096
Iteration: 5, Func. Count: 53, Neg. LLF: 159.50775780934694
Iteration: 6, Func. Count: 64, Neg. LLF: 161.33210468284616
Iteration: 7, Func. Count: 75, Neg. LLF: 159.10099113478444
Iteration: 8, Func. Count: 85, Neg. LLF: 159.09036414915568
Iteration: 9, Func. Count: 95, Neg. LLF: 159.08542485105104
Iteration: 10, Func. Count: 105, Neg. LLF: 159.08513525294097
Iteration: 11, Func. Count: 115, Neg. LLF: 159.08511892271562
Iteration: 12, Func. Count: 125, Neg. LLF: 159.0851183937606
Optimization terminated successfully (Exit mode 0)
Current function value: 159.0851183937606
Iterations: 12
Function evaluations: 125
Gradient evaluations: 12
Iteration: 1, Func. Count: 12, Neg. LLF: 166.7462391999836
Iteration: 2, Func. Count: 24, Neg. LLF: 162.60452438920086
Iteration: 3, Func. Count: 36, Neg. LLF: 159.77941042113181
Iteration: 4, Func. Count: 47, Neg. LLF: 159.62065190222907
Iteration: 5, Func. Count: 58, Neg. LLF: 160.02757714918056
Iteration: 6, Func. Count: 70, Neg. LLF: 159.44556756465073
Iteration: 7, Func. Count: 82, Neg. LLF: 159.36265299397547
Iteration: 8, Func. Count: 93, Neg. LLF: 159.29766106572902
Iteration: 9, Func. Count: 104, Neg. LLF: 159.23042411421048
Iteration: 10, Func. Count: 115, Neg. LLF: 159.22107102688383
Iteration: 11, Func. Count: 126, Neg. LLF: 159.21815941648205
Iteration: 12, Func. Count: 137, Neg. LLF: 159.21759391941185
Iteration: 13, Func. Count: 148, Neg. LLF: 159.21739026554138
Iteration: 14, Func. Count: 159, Neg. LLF: 159.21679792229958
Iteration: 15, Func. Count: 170, Neg. LLF: 159.07290995451555
Iteration: 16, Func. Count: 181, Neg. LLF: 162.85783003011085
Iteration: 17, Func. Count: 193, Neg. LLF: 160.2081269262041
Iteration: 18, Func. Count: 205, Neg. LLF: 175.31254890389735
Iteration: 19, Func. Count: 220, Neg. LLF: 166.2851547511171
Iteration: 20, Func. Count: 232, Neg. LLF: 158.75843233299426
Iteration: 21, Func. Count: 244, Neg. LLF: 158.35393348243653
Iteration: 22, Func. Count: 256, Neg. LLF: 157.5841447375015
Iteration: 23, Func. Count: 267, Neg. LLF: 157.5330226040781
Iteration: 24, Func. Count: 278, Neg. LLF: 157.3980600677468
Iteration: 25, Func. Count: 289, Neg. LLF: 157.2117085401355
Iteration: 26, Func. Count: 300, Neg. LLF: 157.08815070361914
Iteration: 27, Func. Count: 311, Neg. LLF: 157.052199960095
Iteration: 28, Func. Count: 322, Neg. LLF: 157.04612621063728
Iteration: 29, Func. Count: 333, Neg. LLF: 157.04590469245474
Iteration: 30, Func. Count: 344, Neg. LLF: 157.0458781343242
Iteration: 31, Func. Count: 355, Neg. LLF: 157.0458745178232
Iteration: 32, Func. Count: 365, Neg. LLF: 157.04587452070552
Optimization terminated successfully (Exit mode 0)
Current function value: 157.0458745178232
Iterations: 33
Function evaluations: 365
Gradient evaluations: 32
Iteration: 1, Func. Count: 13, Neg. LLF: 169.32027519265307
Iteration: 2, Func. Count: 26, Neg. LLF: 156.83981662585066
Iteration: 3, Func. Count: 38, Neg. LLF: 157.80710155520845
Iteration: 4, Func. Count: 51, Neg. LLF: 184.35717289069765
Iteration: 5, Func. Count: 66, Neg. LLF: 157.00013885128624
Iteration: 6, Func. Count: 79, Neg. LLF: 156.6659760348663
Iteration: 7, Func. Count: 92, Neg. LLF: 156.553675591191
Iteration: 8, Func. Count: 104, Neg. LLF: 156.4890253687249
Iteration: 9, Func. Count: 116, Neg. LLF: 156.48061832672053
Iteration: 10, Func. Count: 128, Neg. LLF: 156.47977740596926
Iteration: 11, Func. Count: 140, Neg. LLF: 156.47975942059858
Iteration: 12, Func. Count: 152, Neg. LLF: 156.4797584638837
Optimization terminated successfully (Exit mode 0)
Current function value: 156.4797584638837
Iterations: 12
Function evaluations: 152
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 162.97700084836077
Iteration: 2, Func. Count: 19, Neg. LLF: 161.20203863389324
Iteration: 3, Func. Count: 29, Neg. LLF: 158.12291401480329
Iteration: 4, Func. Count: 38, Neg. LLF: 157.45349618186174
Iteration: 5, Func. Count: 47, Neg. LLF: 157.4753629502101
Iteration: 6, Func. Count: 57, Neg. LLF: 157.37465495838748
Iteration: 7, Func. Count: 66, Neg. LLF: 157.32858416731722
Iteration: 8, Func. Count: 75, Neg. LLF: 157.28721863890195
Iteration: 9, Func. Count: 84, Neg. LLF: 157.1182158593002
Iteration: 10, Func. Count: 93, Neg. LLF: 157.06536541769378
Iteration: 11, Func. Count: 102, Neg. LLF: 157.04694269950545
Iteration: 12, Func. Count: 111, Neg. LLF: 157.04589061763082
Iteration: 13, Func. Count: 120, Neg. LLF: 157.04587451290035
Iteration: 14, Func. Count: 128, Neg. LLF: 157.04587450378614
Optimization terminated successfully (Exit mode 0)
Current function value: 157.04587451290035
Iterations: 14
Function evaluations: 128
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 173.75547699473896
Iteration: 2, Func. Count: 22, Neg. LLF: 159.97381088106386
Iteration: 3, Func. Count: 32, Neg. LLF: 159.4125641962508
Iteration: 4, Func. Count: 42, Neg. LLF: 159.42659284104994
Iteration: 5, Func. Count: 53, Neg. LLF: 159.43444096359121
Iteration: 6, Func. Count: 64, Neg. LLF: 159.35511581551714
Iteration: 7, Func. Count: 74, Neg. LLF: 159.3551152265658
Optimization terminated successfully (Exit mode 0)
Current function value: 159.3551152265658
Iterations: 7
Function evaluations: 74
Gradient evaluations: 7
Iteration: 1, Func. Count: 12, Neg. LLF: 168.37664433487174
Iteration: 2, Func. Count: 24, Neg. LLF: 160.12145770260074
Iteration: 3, Func. Count: 35, Neg. LLF: 159.80904149512264
Iteration: 4, Func. Count: 46, Neg. LLF: 159.84474570931334
Iteration: 5, Func. Count: 58, Neg. LLF: 159.5063719862717
Iteration: 6, Func. Count: 70, Neg. LLF: 161.62464372995575
Iteration: 7, Func. Count: 82, Neg. LLF: 159.10122181321884
Iteration: 8, Func. Count: 93, Neg. LLF: 159.09048150450144
Iteration: 9, Func. Count: 104, Neg. LLF: 159.08542901659987
Iteration: 10, Func. Count: 115, Neg. LLF: 159.08513602465715
Iteration: 11, Func. Count: 126, Neg. LLF: 159.08511893248433
Iteration: 12, Func. Count: 137, Neg. LLF: 159.08511838935317
Optimization terminated successfully (Exit mode 0)
Current function value: 159.08511838935317
Iterations: 12
Function evaluations: 137
Gradient evaluations: 12
Iteration: 1, Func. Count: 13, Neg. LLF: 166.5757671505226
Iteration: 2, Func. Count: 26, Neg. LLF: 162.68675854359435
Iteration: 3, Func. Count: 39, Neg. LLF: 159.70455365942988
Iteration: 4, Func. Count: 51, Neg. LLF: 159.5145070964487
Iteration: 5, Func. Count: 63, Neg. LLF: 159.5085976370807
Iteration: 6, Func. Count: 76, Neg. LLF: 159.3277737024431
Iteration: 7, Func. Count: 88, Neg. LLF: 159.2855890315602
Iteration: 8, Func. Count: 100, Neg. LLF: 159.24491447744936
Iteration: 9, Func. Count: 112, Neg. LLF: 159.22860044768845
Iteration: 10, Func. Count: 124, Neg. LLF: 159.21996035665575
Iteration: 11, Func. Count: 136, Neg. LLF: 159.22099255979558
Iteration: 12, Func. Count: 149, Neg. LLF: 159.21763377100243
Iteration: 13, Func. Count: 161, Neg. LLF: 159.2174469556966
Iteration: 14, Func. Count: 173, Neg. LLF: 159.21713659188788
Iteration: 15, Func. Count: 185, Neg. LLF: 159.2004478404703
Iteration: 16, Func. Count: 197, Neg. LLF: 163.89291870264287
Iteration: 17, Func. Count: 210, Neg. LLF: 163.578070087826
Iteration: 18, Func. Count: 223, Neg. LLF: 358.6703697472789
Iteration: 19, Func. Count: 239, Neg. LLF: 786.3936998265921
Iteration: 20, Func. Count: 261, Neg. LLF: 358.09147332563003
Iteration: 21, Func. Count: 283, Neg. LLF: 16090031.512144182
Iteration: 22, Func. Count: 302, Neg. LLF: 1267866634160.0718
Iteration: 23, Func. Count: 322, Neg. LLF: 159.42501250349903
Iteration: 24, Func. Count: 335, Neg. LLF: 170.65866517167635
Iteration: 25, Func. Count: 348, Neg. LLF: 161.9233003286689
Iteration: 26, Func. Count: 361, Neg. LLF: 166.76381141368282
Iteration: 27, Func. Count: 374, Neg. LLF: 159.85282653860273
Iteration: 28, Func. Count: 387, Neg. LLF: 162.65814146456785
Iteration: 29, Func. Count: 400, Neg. LLF: 158.89067301991616
Iteration: 30, Func. Count: 413, Neg. LLF: 157.89901206960417
Iteration: 31, Func. Count: 425, Neg. LLF: 159.57928284589553
Iteration: 32, Func. Count: 439, Neg. LLF: 157.469098344765
Iteration: 33, Func. Count: 451, Neg. LLF: 157.15317675962623
Iteration: 34, Func. Count: 463, Neg. LLF: 157.10661901440994
Iteration: 35, Func. Count: 475, Neg. LLF: 157.06995949348985
Iteration: 36, Func. Count: 487, Neg. LLF: 157.05497475773583
Iteration: 37, Func. Count: 499, Neg. LLF: 157.04754869542745
Iteration: 38, Func. Count: 511, Neg. LLF: 157.0462145068928
Iteration: 39, Func. Count: 523, Neg. LLF: 157.04590061448897
Iteration: 40, Func. Count: 535, Neg. LLF: 157.04587726868945
Iteration: 41, Func. Count: 547, Neg. LLF: 157.04587495952896
Iteration: 42, Func. Count: 558, Neg. LLF: 157.04587496231377
Optimization terminated successfully (Exit mode 0)
Current function value: 157.04587495952896
Iterations: 43
Function evaluations: 558
Gradient evaluations: 42
Iteration: 1, Func. Count: 14, Neg. LLF: 169.08237621962562
Iteration: 2, Func. Count: 28, Neg. LLF: 156.93089870205898
Iteration: 3, Func. Count: 41, Neg. LLF: 157.22726736878812
Iteration: 4, Func. Count: 55, Neg. LLF: 179.34494597147415
Iteration: 5, Func. Count: 71, Neg. LLF: 161.32304333424585
Iteration: 6, Func. Count: 86, Neg. LLF: 157.72087783719184
Iteration: 7, Func. Count: 100, Neg. LLF: 156.56051478539962
Iteration: 8, Func. Count: 113, Neg. LLF: 156.53483739953984
Iteration: 9, Func. Count: 126, Neg. LLF: 156.50047383620196
Iteration: 10, Func. Count: 139, Neg. LLF: 156.48323260983696
Iteration: 11, Func. Count: 152, Neg. LLF: 156.47996109255544
Iteration: 12, Func. Count: 165, Neg. LLF: 156.4797728748835
Iteration: 13, Func. Count: 178, Neg. LLF: 156.47976662435235
Iteration: 14, Func. Count: 191, Neg. LLF: 156.4797560015351
Iteration: 15, Func. Count: 204, Neg. LLF: 156.47976498875198
Optimization terminated successfully (Exit mode 0)
Current function value: 156.47975630949622
Iterations: 16
Function evaluations: 205
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 162.31735508245828
Iteration: 2, Func. Count: 21, Neg. LLF: 162.07017638363774
Iteration: 3, Func. Count: 32, Neg. LLF: 157.92173680048262
Iteration: 4, Func. Count: 42, Neg. LLF: 157.42116803490066
Iteration: 5, Func. Count: 52, Neg. LLF: 157.4259716636333
Iteration: 6, Func. Count: 63, Neg. LLF: 157.3619127055931
Iteration: 7, Func. Count: 73, Neg. LLF: 157.31849893468737
Iteration: 8, Func. Count: 83, Neg. LLF: 157.14187158575726
Iteration: 9, Func. Count: 93, Neg. LLF: 157.09611925988878
Iteration: 10, Func. Count: 103, Neg. LLF: 157.05687242871784
Iteration: 11, Func. Count: 113, Neg. LLF: 157.047530743517
Iteration: 12, Func. Count: 123, Neg. LLF: 157.04593042775548
Iteration: 13, Func. Count: 133, Neg. LLF: 157.04587631176548
Iteration: 14, Func. Count: 143, Neg. LLF: 157.04587449571304
Iteration: 15, Func. Count: 152, Neg. LLF: 157.04587451317963
Optimization terminated successfully (Exit mode 0)
Current function value: 157.04587449571304
Iterations: 15
Function evaluations: 152
Gradient evaluations: 15
Iteration: 1, Func. Count: 12, Neg. LLF: 173.74954719521799
Iteration: 2, Func. Count: 24, Neg. LLF: 159.97094832073012
Iteration: 3, Func. Count: 35, Neg. LLF: 159.4125166962684
Iteration: 4, Func. Count: 46, Neg. LLF: 159.38864398846837
Iteration: 5, Func. Count: 57, Neg. LLF: 159.50289016456298
Iteration: 6, Func. Count: 69, Neg. LLF: 159.3551410345988
Iteration: 7, Func. Count: 80, Neg. LLF: 159.35511525608652
Iteration: 8, Func. Count: 90, Neg. LLF: 159.35511563460528
Optimization terminated successfully (Exit mode 0)
Current function value: 159.35511525608652
Iterations: 9
Function evaluations: 90
Gradient evaluations: 8
Iteration: 1, Func. Count: 13, Neg. LLF: 168.35886286937432
Iteration: 2, Func. Count: 26, Neg. LLF: 160.12230892965843
Iteration: 3, Func. Count: 38, Neg. LLF: 159.83040965933105
Iteration: 4, Func. Count: 50, Neg. LLF: 159.76906583311404
Iteration: 5, Func. Count: 63, Neg. LLF: 159.40350658312775
Iteration: 6, Func. Count: 76, Neg. LLF: 162.35520600808687
Iteration: 7, Func. Count: 89, Neg. LLF: 159.10046299969287
Iteration: 8, Func. Count: 101, Neg. LLF: 159.08999346963353
Iteration: 9, Func. Count: 113, Neg. LLF: 159.08527042060084
Iteration: 10, Func. Count: 125, Neg. LLF: 159.0851298354037
Iteration: 11, Func. Count: 137, Neg. LLF: 159.0851185125358
Iteration: 12, Func. Count: 148, Neg. LLF: 159.08511833238757
Optimization terminated successfully (Exit mode 0)
Current function value: 159.0851185125358
Iterations: 12
Function evaluations: 148
Gradient evaluations: 12
Iteration: 1, Func. Count: 14, Neg. LLF: 166.63532447738044
Iteration: 2, Func. Count: 28, Neg. LLF: 162.55386359023925
Iteration: 3, Func. Count: 42, Neg. LLF: 159.763214299879
Iteration: 4, Func. Count: 55, Neg. LLF: 159.59824404095176
Iteration: 5, Func. Count: 68, Neg. LLF: 159.7290651611209
Iteration: 6, Func. Count: 82, Neg. LLF: 159.3580441411259
Iteration: 7, Func. Count: 95, Neg. LLF: 159.31144790914223
Iteration: 8, Func. Count: 108, Neg. LLF: 159.6988790179818
Iteration: 9, Func. Count: 122, Neg. LLF: 159.22819722833455
Iteration: 10, Func. Count: 135, Neg. LLF: 159.21921982694442
Iteration: 11, Func. Count: 148, Neg. LLF: 159.21957205278753
Iteration: 12, Func. Count: 162, Neg. LLF: 159.21744879191607
Iteration: 13, Func. Count: 175, Neg. LLF: 159.21724740371286
Iteration: 14, Func. Count: 188, Neg. LLF: 159.21667457547315
Iteration: 15, Func. Count: 201, Neg. LLF: 159.0625602145738
Iteration: 16, Func. Count: 214, Neg. LLF: 164.34974848879753
Iteration: 17, Func. Count: 228, Neg. LLF: 162.98162985188154
Iteration: 18, Func. Count: 242, Neg. LLF: 159.26520055454094
Iteration: 19, Func. Count: 256, Neg. LLF: 160.2802258865844
Iteration: 20, Func. Count: 270, Neg. LLF: 214.72432265683605
Iteration: 21, Func. Count: 284, Neg. LLF: 157.4465787951694
Iteration: 22, Func. Count: 297, Neg. LLF: 160.45710021942392
Iteration: 23, Func. Count: 312, Neg. LLF: 157.26958444176333
Iteration: 24, Func. Count: 325, Neg. LLF: 157.26809651096065
Iteration: 25, Func. Count: 338, Neg. LLF: 157.26528096579435
Iteration: 26, Func. Count: 351, Neg. LLF: 157.257516097792
Iteration: 27, Func. Count: 364, Neg. LLF: 157.24012046653885
Iteration: 28, Func. Count: 377, Neg. LLF: 157.21265776989202
Iteration: 29, Func. Count: 390, Neg. LLF: 157.21133641613423
Iteration: 30, Func. Count: 404, Neg. LLF: 157.11030111102906
Iteration: 31, Func. Count: 417, Neg. LLF: 157.04885841077345
Iteration: 32, Func. Count: 430, Neg. LLF: 157.0461768210333
Iteration: 33, Func. Count: 443, Neg. LLF: 157.0458792276058
Iteration: 34, Func. Count: 456, Neg. LLF: 157.04587448348317
Iteration: 35, Func. Count: 468, Neg. LLF: 157.04587448632466
Optimization terminated successfully (Exit mode 0)
Current function value: 157.04587448348317
Iterations: 35
Function evaluations: 468
Gradient evaluations: 35
Iteration: 1, Func. Count: 15, Neg. LLF: 169.2950637598361
Iteration: 2, Func. Count: 30, Neg. LLF: 156.85715072092742
Iteration: 3, Func. Count: 44, Neg. LLF: 157.5702627423127
Iteration: 4, Func. Count: 59, Neg. LLF: 179.5783931145979
Iteration: 5, Func. Count: 76, Neg. LLF: 162.2444941645344
Iteration: 6, Func. Count: 92, Neg. LLF: 157.27899910231318
Iteration: 7, Func. Count: 107, Neg. LLF: 156.56195328432057
Iteration: 8, Func. Count: 121, Neg. LLF: 156.5150844024276
Iteration: 9, Func. Count: 135, Neg. LLF: 156.48697497628623
Iteration: 10, Func. Count: 149, Neg. LLF: 156.4802132800647
Iteration: 11, Func. Count: 163, Neg. LLF: 156.4797646401779
Iteration: 12, Func. Count: 177, Neg. LLF: 156.4797614962255
Iteration: 13, Func. Count: 191, Neg. LLF: 156.4797685692584
Optimization terminated successfully (Exit mode 0)
Current function value: 156.47976107289364
Iterations: 14
Function evaluations: 192
Gradient evaluations: 13
Iteration: 1, Func. Count: 8, Neg. LLF: 165.49177118752922
Iteration: 2, Func. Count: 16, Neg. LLF: 166.22342815374776
Iteration: 3, Func. Count: 24, Neg. LLF: 162.27297156996906
Iteration: 4, Func. Count: 31, Neg. LLF: 166.5407801968478
Iteration: 5, Func. Count: 41, Neg. LLF: 162.06628991889968
Iteration: 6, Func. Count: 48, Neg. LLF: 162.12640091326918
Iteration: 7, Func. Count: 56, Neg. LLF: 162.08239935492952
Iteration: 8, Func. Count: 64, Neg. LLF: 162.00492542744212
Iteration: 9, Func. Count: 71, Neg. LLF: 162.00411436818763
Iteration: 10, Func. Count: 78, Neg. LLF: 162.00323101164867
Iteration: 11, Func. Count: 85, Neg. LLF: 162.00155748919215
Iteration: 12, Func. Count: 92, Neg. LLF: 161.9990354864391
Iteration: 13, Func. Count: 99, Neg. LLF: 161.997140582097
Iteration: 14, Func. Count: 106, Neg. LLF: 161.9965556644862
Iteration: 15, Func. Count: 113, Neg. LLF: 161.99650232381143
Iteration: 16, Func. Count: 120, Neg. LLF: 161.99650166236356
Optimization terminated successfully (Exit mode 0)
Current function value: 161.99650166236356
Iterations: 16
Function evaluations: 120
Gradient evaluations: 16
Iteration: 1, Func. Count: 9, Neg. LLF: 173.4597493868093
Iteration: 2, Func. Count: 18, Neg. LLF: 160.53914629635108
Iteration: 3, Func. Count: 26, Neg. LLF: 159.41107346296076
Iteration: 4, Func. Count: 34, Neg. LLF: 159.37145698250248
Iteration: 5, Func. Count: 42, Neg. LLF: 159.35549742790852
Iteration: 6, Func. Count: 50, Neg. LLF: 159.35538658517137
Iteration: 7, Func. Count: 59, Neg. LLF: 159.3551150832483
Iteration: 8, Func. Count: 66, Neg. LLF: 159.35511546200246
Optimization terminated successfully (Exit mode 0)
Current function value: 159.3551150832483
Iterations: 8
Function evaluations: 66
Gradient evaluations: 8
Iteration: 1, Func. Count: 10, Neg. LLF: 167.91604655939207
Iteration: 2, Func. Count: 20, Neg. LLF: 159.7610046990377
Iteration: 3, Func. Count: 29, Neg. LLF: 159.3646561786986
Iteration: 4, Func. Count: 38, Neg. LLF: 160.70256113975827
Iteration: 5, Func. Count: 49, Neg. LLF: 159.31866588853006
Iteration: 6, Func. Count: 58, Neg. LLF: 159.31398881846354
Iteration: 7, Func. Count: 67, Neg. LLF: 159.30897142804727
Iteration: 8, Func. Count: 76, Neg. LLF: 159.29906875028266
Iteration: 9, Func. Count: 85, Neg. LLF: 159.29262725426432
Iteration: 10, Func. Count: 94, Neg. LLF: 159.29025051378272
Iteration: 11, Func. Count: 103, Neg. LLF: 159.29007248738932
Iteration: 12, Func. Count: 112, Neg. LLF: 159.28999925218122
Iteration: 13, Func. Count: 121, Neg. LLF: 159.29009277361519
Iteration: 14, Func. Count: 132, Neg. LLF: 159.29004018026117
Iteration: 15, Func. Count: 140, Neg. LLF: 159.29003997389106
Optimization terminated successfully (Exit mode 0)
Current function value: 159.29004018026117
Iterations: 16
Function evaluations: 140
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 179.31930304984985
Iteration: 2, Func. Count: 24, Neg. LLF: 165.2594768563508
Iteration: 3, Func. Count: 35, Neg. LLF: 159.75815964905883
Iteration: 4, Func. Count: 45, Neg. LLF: 159.71286136621592
Iteration: 5, Func. Count: 56, Neg. LLF: 159.4808773334658
Iteration: 6, Func. Count: 66, Neg. LLF: 159.5469273720397
Iteration: 7, Func. Count: 77, Neg. LLF: 159.46911767896356
Iteration: 8, Func. Count: 87, Neg. LLF: 159.46829502012608
Iteration: 9, Func. Count: 97, Neg. LLF: 159.46552395515852
Iteration: 10, Func. Count: 107, Neg. LLF: 159.456476233178
Iteration: 11, Func. Count: 117, Neg. LLF: 159.41794532680188
Iteration: 12, Func. Count: 127, Neg. LLF: 159.41685522450666
Iteration: 13, Func. Count: 137, Neg. LLF: 159.41662874525633
Iteration: 14, Func. Count: 147, Neg. LLF: 159.4149499510771
Iteration: 15, Func. Count: 157, Neg. LLF: 159.42383079723564
Iteration: 16, Func. Count: 168, Neg. LLF: 159.41086101815836
Iteration: 17, Func. Count: 178, Neg. LLF: 159.39423093193108
Iteration: 18, Func. Count: 188, Neg. LLF: 159.37703263351776
Iteration: 19, Func. Count: 198, Neg. LLF: 159.35787539010556
Iteration: 20, Func. Count: 208, Neg. LLF: 159.35537204482594
Iteration: 21, Func. Count: 218, Neg. LLF: 159.36233105494662
Iteration: 22, Func. Count: 229, Neg. LLF: 159.35511537603074
Iteration: 23, Func. Count: 238, Neg. LLF: 159.35511500263797
Optimization terminated successfully (Exit mode 0)
Current function value: 159.35511537603074
Iterations: 24
Function evaluations: 238
Gradient evaluations: 23
Iteration: 1, Func. Count: 12, Neg. LLF: 178.55844020132375
Iteration: 2, Func. Count: 27, Neg. LLF: 163.85144748005357
Iteration: 3, Func. Count: 39, Neg. LLF: 159.56743985028888
Iteration: 4, Func. Count: 50, Neg. LLF: 159.2647644471352
Iteration: 5, Func. Count: 61, Neg. LLF: 159.20465547776604
Iteration: 6, Func. Count: 72, Neg. LLF: 159.19333927641253
Iteration: 7, Func. Count: 83, Neg. LLF: 159.19053492238282
Iteration: 8, Func. Count: 94, Neg. LLF: 159.187825700887
Iteration: 9, Func. Count: 105, Neg. LLF: 159.18405094494028
Iteration: 10, Func. Count: 116, Neg. LLF: 159.52457503905703
Iteration: 11, Func. Count: 128, Neg. LLF: 167.16572864055962
Iteration: 12, Func. Count: 140, Neg. LLF: 159.20443345958867
Iteration: 13, Func. Count: 152, Neg. LLF: 159.06692036612662
Iteration: 14, Func. Count: 163, Neg. LLF: 159.06051756973773
Iteration: 15, Func. Count: 174, Neg. LLF: 159.0589235680097
Iteration: 16, Func. Count: 185, Neg. LLF: 159.0586553865522
Iteration: 17, Func. Count: 196, Neg. LLF: 159.0577991735722
Iteration: 18, Func. Count: 207, Neg. LLF: 159.05763834999433
Iteration: 19, Func. Count: 218, Neg. LLF: 159.05760876656296
Iteration: 20, Func. Count: 229, Neg. LLF: 159.0576335726128
Iteration: 21, Func. Count: 241, Neg. LLF: 159.05797559389038
Iteration: 22, Func. Count: 254, Neg. LLF: 159.05762625293744
Iteration: 23, Func. Count: 264, Neg. LLF: 159.05762614481546
Optimization terminated successfully (Exit mode 0)
Current function value: 159.05762625293744
Iterations: 24
Function evaluations: 264
Gradient evaluations: 23
Iteration: 1, Func. Count: 9, Neg. LLF: 161.55116593427792
Iteration: 2, Func. Count: 17, Neg. LLF: 162.26160042560562
Iteration: 3, Func. Count: 26, Neg. LLF: 190.14235540542785
Iteration: 4, Func. Count: 36, Neg. LLF: 162.4454791470972
Iteration: 5, Func. Count: 45, Neg. LLF: 162.7576344384664
Iteration: 6, Func. Count: 54, Neg. LLF: 162.0247901149373
Iteration: 7, Func. Count: 63, Neg. LLF: 159.57372330797745
Iteration: 8, Func. Count: 72, Neg. LLF: 159.10222433825209
Iteration: 9, Func. Count: 80, Neg. LLF: 162.12578469100904
Iteration: 10, Func. Count: 89, Neg. LLF: 159.5151639351375
Iteration: 11, Func. Count: 99, Neg. LLF: 159.05865557211254
Iteration: 12, Func. Count: 108, Neg. LLF: 159.022019534333
Iteration: 13, Func. Count: 116, Neg. LLF: 158.96012115080148
Iteration: 14, Func. Count: 124, Neg. LLF: 158.9095396752403
Iteration: 15, Func. Count: 132, Neg. LLF: 158.86714365119536
Iteration: 16, Func. Count: 140, Neg. LLF: 158.85687755428455
Iteration: 17, Func. Count: 148, Neg. LLF: 158.8548756649059
Iteration: 18, Func. Count: 156, Neg. LLF: 158.85472609335216
Iteration: 19, Func. Count: 164, Neg. LLF: 158.85472160635135
Iteration: 20, Func. Count: 171, Neg. LLF: 158.8547215881353
Optimization terminated successfully (Exit mode 0)
Current function value: 158.85472160635135
Iterations: 20
Function evaluations: 171
Gradient evaluations: 20
Iteration: 1, Func. Count: 10, Neg. LLF: 173.66033362562015
Iteration: 2, Func. Count: 20, Neg. LLF: 160.03457252306168
Iteration: 3, Func. Count: 29, Neg. LLF: 159.6110562958674
Iteration: 4, Func. Count: 38, Neg. LLF: 199.00521246968387
Iteration: 5, Func. Count: 48, Neg. LLF: 159.35986477020168
Iteration: 6, Func. Count: 57, Neg. LLF: 159.35552679519407
Iteration: 7, Func. Count: 66, Neg. LLF: 159.35511682620924
Iteration: 8, Func. Count: 75, Neg. LLF: 159.3551162091925
Optimization terminated successfully (Exit mode 0)
Current function value: 159.3551162091925
Iterations: 8
Function evaluations: 75
Gradient evaluations: 8
Iteration: 1, Func. Count: 11, Neg. LLF: 168.22206043440224
Iteration: 2, Func. Count: 22, Neg. LLF: 159.77062228127988
Iteration: 3, Func. Count: 32, Neg. LLF: 159.3522443184332
Iteration: 4, Func. Count: 42, Neg. LLF: 159.98144228833615
Iteration: 5, Func. Count: 53, Neg. LLF: 159.30422093448755
Iteration: 6, Func. Count: 63, Neg. LLF: 159.30101878880143
Iteration: 7, Func. Count: 73, Neg. LLF: 159.29744277437683
Iteration: 8, Func. Count: 83, Neg. LLF: 159.29064107034338
Iteration: 9, Func. Count: 93, Neg. LLF: 159.2900859699209
Iteration: 10, Func. Count: 103, Neg. LLF: 159.29002039949896
Iteration: 11, Func. Count: 113, Neg. LLF: 159.29001771230264
Iteration: 12, Func. Count: 133, Neg. LLF: 159.29045991042943
Iteration: 13, Func. Count: 147, Neg. LLF: 159.29020430470106
Iteration: 14, Func. Count: 160, Neg. LLF: 159.2900401547793
Iteration: 15, Func. Count: 169, Neg. LLF: 159.29003994849538
Optimization terminated successfully (Exit mode 0)
Current function value: 159.2900401547793
Iterations: 16
Function evaluations: 169
Gradient evaluations: 15
Iteration: 1, Func. Count: 12, Neg. LLF: 179.72934730388488
Iteration: 2, Func. Count: 26, Neg. LLF: 164.6542593485411
Iteration: 3, Func. Count: 38, Neg. LLF: 164.817631362348
Iteration: 4, Func. Count: 50, Neg. LLF: 159.7170954544146
Iteration: 5, Func. Count: 61, Neg. LLF: 159.50692721412338
Iteration: 6, Func. Count: 72, Neg. LLF: 159.4774562678087
Iteration: 7, Func. Count: 83, Neg. LLF: 159.46958811241862
Iteration: 8, Func. Count: 94, Neg. LLF: 159.46855527786627
Iteration: 9, Func. Count: 105, Neg. LLF: 159.4667363622488
Iteration: 10, Func. Count: 116, Neg. LLF: 159.45947953343392
Iteration: 11, Func. Count: 127, Neg. LLF: 159.41864125740008
Iteration: 12, Func. Count: 138, Neg. LLF: 159.41076843310742
Iteration: 13, Func. Count: 149, Neg. LLF: 159.4065221542888
Iteration: 14, Func. Count: 161, Neg. LLF: 159.39411217352043
Iteration: 15, Func. Count: 172, Neg. LLF: 159.39001207310682
Iteration: 16, Func. Count: 183, Neg. LLF: 159.3887447901529
Iteration: 17, Func. Count: 194, Neg. LLF: 159.3808432626052
Iteration: 18, Func. Count: 205, Neg. LLF: 159.35519002034508
Iteration: 19, Func. Count: 216, Neg. LLF: 159.3693991219141
Iteration: 20, Func. Count: 228, Neg. LLF: 159.3551158908486
Iteration: 21, Func. Count: 239, Neg. LLF: 159.35511516236642
Optimization terminated successfully (Exit mode 0)
Current function value: 159.35511516236642
Iterations: 22
Function evaluations: 239
Gradient evaluations: 21
Iteration: 1, Func. Count: 13, Neg. LLF: 179.061749058089
Iteration: 2, Func. Count: 29, Neg. LLF: 163.7760408574267
Iteration: 3, Func. Count: 42, Neg. LLF: 159.50310907681012
Iteration: 4, Func. Count: 54, Neg. LLF: 160.79305017253412
Iteration: 5, Func. Count: 69, Neg. LLF: 168.1195418520166
Iteration: 6, Func. Count: 85, Neg. LLF: 175.13676024277856
Iteration: 7, Func. Count: 99, Neg. LLF: 158.17820195431653
Iteration: 8, Func. Count: 111, Neg. LLF: 163.34285419963626
Iteration: 9, Func. Count: 124, Neg. LLF: 158.10883530586824
Iteration: 10, Func. Count: 136, Neg. LLF: 158.0715422450133
Iteration: 11, Func. Count: 148, Neg. LLF: 158.06203201787636
Iteration: 12, Func. Count: 160, Neg. LLF: 158.049431622928
Iteration: 13, Func. Count: 172, Neg. LLF: 158.0463514665427
Iteration: 14, Func. Count: 184, Neg. LLF: 158.04534248905117
Iteration: 15, Func. Count: 196, Neg. LLF: 158.0453221911162
Iteration: 16, Func. Count: 208, Neg. LLF: 158.04530575700588
Iteration: 17, Func. Count: 219, Neg. LLF: 158.04530562924808
Optimization terminated successfully (Exit mode 0)
Current function value: 158.04530575700588
Iterations: 17
Function evaluations: 219
Gradient evaluations: 17
Iteration: 1, Func. Count: 10, Neg. LLF: 159.5489121925058
Iteration: 2, Func. Count: 19, Neg. LLF: 160.9529810117419
Iteration: 3, Func. Count: 29, Neg. LLF: 162.20102157501304
Iteration: 4, Func. Count: 41, Neg. LLF: 157.52882291532742
Iteration: 5, Func. Count: 50, Neg. LLF: 157.28973180498778
Iteration: 6, Func. Count: 59, Neg. LLF: 157.29128996776024
Iteration: 7, Func. Count: 69, Neg. LLF: 157.2241530451138
Iteration: 8, Func. Count: 78, Neg. LLF: 157.24114611752682
Iteration: 9, Func. Count: 88, Neg. LLF: 156.9634375218713
Iteration: 10, Func. Count: 97, Neg. LLF: 156.87004878272776
Iteration: 11, Func. Count: 106, Neg. LLF: 156.86571258312497
Iteration: 12, Func. Count: 115, Neg. LLF: 156.86481801752296
Iteration: 13, Func. Count: 124, Neg. LLF: 156.8648123502393
Iteration: 14, Func. Count: 132, Neg. LLF: 156.86481233022505
Optimization terminated successfully (Exit mode 0)
Current function value: 156.8648123502393
Iterations: 14
Function evaluations: 132
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 173.66711434161044
Iteration: 2, Func. Count: 22, Neg. LLF: 160.0196081977993
Iteration: 3, Func. Count: 32, Neg. LLF: 159.55382494350155
Iteration: 4, Func. Count: 42, Neg. LLF: 374.75551478867294
Iteration: 5, Func. Count: 54, Neg. LLF: 159.35835761928232
Iteration: 6, Func. Count: 64, Neg. LLF: 159.35528657163692
Iteration: 7, Func. Count: 74, Neg. LLF: 159.35511573769142
Iteration: 8, Func. Count: 84, Neg. LLF: 159.35511507302186
Optimization terminated successfully (Exit mode 0)
Current function value: 159.35511507302186
Iterations: 8
Function evaluations: 84
Gradient evaluations: 8
Iteration: 1, Func. Count: 12, Neg. LLF: 168.05186882830273
Iteration: 2, Func. Count: 24, Neg. LLF: 160.18422578503015
Iteration: 3, Func. Count: 35, Neg. LLF: 161.6952389819994
Iteration: 4, Func. Count: 48, Neg. LLF: 168.19608523366654
Iteration: 5, Func. Count: 61, Neg. LLF: 169.6264048157964
Iteration: 6, Func. Count: 73, Neg. LLF: 163.16026767803922
Iteration: 7, Func. Count: 85, Neg. LLF: 162.91068023386626
Iteration: 8, Func. Count: 97, Neg. LLF: 159.68835020669093
Iteration: 9, Func. Count: 109, Neg. LLF: 159.571578287545
Iteration: 10, Func. Count: 121, Neg. LLF: 158.18766086294897
Iteration: 11, Func. Count: 132, Neg. LLF: 157.62357072284428
Iteration: 12, Func. Count: 143, Neg. LLF: 158.75564430850375
Iteration: 13, Func. Count: 155, Neg. LLF: 157.17552455758334
Iteration: 14, Func. Count: 166, Neg. LLF: 156.96242458380382
Iteration: 15, Func. Count: 177, Neg. LLF: 156.91330641067205
Iteration: 16, Func. Count: 188, Neg. LLF: 156.87858342556254
Iteration: 17, Func. Count: 199, Neg. LLF: 156.86671599366525
Iteration: 18, Func. Count: 210, Neg. LLF: 156.86523333992682
Iteration: 19, Func. Count: 221, Neg. LLF: 156.86508852970803
Iteration: 20, Func. Count: 232, Neg. LLF: 156.86505823885778
Iteration: 21, Func. Count: 243, Neg. LLF: 156.86504551806456
Iteration: 22, Func. Count: 254, Neg. LLF: 156.86498507092256
Iteration: 23, Func. Count: 265, Neg. LLF: 156.86492402563385
Iteration: 24, Func. Count: 276, Neg. LLF: 156.86485726313109
Iteration: 25, Func. Count: 287, Neg. LLF: 156.86482370380736
Iteration: 26, Func. Count: 298, Neg. LLF: 156.8648138048264
Iteration: 27, Func. Count: 309, Neg. LLF: 156.86481233330596
Iteration: 28, Func. Count: 319, Neg. LLF: 156.8648123735811
Optimization terminated successfully (Exit mode 0)
Current function value: 156.86481233330596
Iterations: 28
Function evaluations: 319
Gradient evaluations: 28
Iteration: 1, Func. Count: 13, Neg. LLF: 179.78467118708448
Iteration: 2, Func. Count: 28, Neg. LLF: 162.56361097034943
Iteration: 3, Func. Count: 41, Neg. LLF: 158.63732494692962
Iteration: 4, Func. Count: 53, Neg. LLF: 157.9941598234426
Iteration: 5, Func. Count: 65, Neg. LLF: 162.87369812246732
Iteration: 6, Func. Count: 79, Neg. LLF: 173.17528241660023
Iteration: 7, Func. Count: 92, Neg. LLF: 158.39347114597598
Iteration: 8, Func. Count: 105, Neg. LLF: 157.48704490408434
Iteration: 9, Func. Count: 117, Neg. LLF: 157.8166230006452
Iteration: 10, Func. Count: 130, Neg. LLF: 159.05868325651227
Iteration: 11, Func. Count: 143, Neg. LLF: 157.03010811825817
Iteration: 12, Func. Count: 155, Neg. LLF: 156.98399069923727
Iteration: 13, Func. Count: 167, Neg. LLF: 156.96570382167525
Iteration: 14, Func. Count: 179, Neg. LLF: 156.94563837219843
Iteration: 15, Func. Count: 191, Neg. LLF: 156.89215127112115
Iteration: 16, Func. Count: 203, Neg. LLF: 156.87269355199047
Iteration: 17, Func. Count: 215, Neg. LLF: 156.8652961840297
Iteration: 18, Func. Count: 227, Neg. LLF: 156.8648784392915
Iteration: 19, Func. Count: 239, Neg. LLF: 156.86481464300937
Iteration: 20, Func. Count: 251, Neg. LLF: 156.86481229098968
Iteration: 21, Func. Count: 262, Neg. LLF: 156.8648123122749
Optimization terminated successfully (Exit mode 0)
Current function value: 156.86481229098968
Iterations: 21
Function evaluations: 262
Gradient evaluations: 21
Iteration: 1, Func. Count: 14, Neg. LLF: 179.15623563360177
Iteration: 2, Func. Count: 31, Neg. LLF: 158.24328241934808
Iteration: 3, Func. Count: 44, Neg. LLF: 158.79549099009193
Iteration: 4, Func. Count: 58, Neg. LLF: 157.2929010369627
Iteration: 5, Func. Count: 72, Neg. LLF: 157.82277843443276
Iteration: 6, Func. Count: 87, Neg. LLF: 160.77335513768185
Iteration: 7, Func. Count: 101, Neg. LLF: 156.7164619302381
Iteration: 8, Func. Count: 114, Neg. LLF: 156.67282850752656
Iteration: 9, Func. Count: 127, Neg. LLF: 156.6483661447153
Iteration: 10, Func. Count: 140, Neg. LLF: 156.59009289408795
Iteration: 11, Func. Count: 153, Neg. LLF: 156.53210907108084
Iteration: 12, Func. Count: 166, Neg. LLF: 156.4689575824734
Iteration: 13, Func. Count: 179, Neg. LLF: 156.46122134444917
Iteration: 14, Func. Count: 192, Neg. LLF: 156.45540655805948
Iteration: 15, Func. Count: 205, Neg. LLF: 156.45232973231435
Iteration: 16, Func. Count: 218, Neg. LLF: 156.45219537529036
Iteration: 17, Func. Count: 231, Neg. LLF: 156.45217775002553
Iteration: 18, Func. Count: 244, Neg. LLF: 156.45217402596467
Iteration: 19, Func. Count: 257, Neg. LLF: 156.45216740551993
Iteration: 20, Func. Count: 270, Neg. LLF: 156.4521665566932
Optimization terminated successfully (Exit mode 0)
Current function value: 156.4521665566932
Iterations: 20
Function evaluations: 270
Gradient evaluations: 20
Iteration: 1, Func. Count: 11, Neg. LLF: 158.99620515693437
Iteration: 2, Func. Count: 21, Neg. LLF: 161.9325275064739
Iteration: 3, Func. Count: 32, Neg. LLF: 162.10862075754414
Iteration: 4, Func. Count: 45, Neg. LLF: 157.5243821551731
Iteration: 5, Func. Count: 55, Neg. LLF: 157.29166717318589
Iteration: 6, Func. Count: 65, Neg. LLF: 157.3131166172631
Iteration: 7, Func. Count: 76, Neg. LLF: 157.2283170946987
Iteration: 8, Func. Count: 86, Neg. LLF: 157.2489521918112
Iteration: 9, Func. Count: 97, Neg. LLF: 157.03137513616355
Iteration: 10, Func. Count: 107, Neg. LLF: 156.91212017166362
Iteration: 11, Func. Count: 117, Neg. LLF: 156.86849216819792
Iteration: 12, Func. Count: 127, Neg. LLF: 156.86489424487695
Iteration: 13, Func. Count: 137, Neg. LLF: 156.86481243062727
Iteration: 14, Func. Count: 146, Neg. LLF: 156.86481241743667
Optimization terminated successfully (Exit mode 0)
Current function value: 156.86481243062727
Iterations: 14
Function evaluations: 146
Gradient evaluations: 14
Iteration: 1, Func. Count: 12, Neg. LLF: 173.69311604257038
Iteration: 2, Func. Count: 24, Neg. LLF: 160.00477055089422
Iteration: 3, Func. Count: 35, Neg. LLF: 159.48219281917886
Iteration: 4, Func. Count: 46, Neg. LLF: 1108.3501433136219
Iteration: 5, Func. Count: 59, Neg. LLF: 159.36042317662137
Iteration: 6, Func. Count: 70, Neg. LLF: 159.35515926981083
Iteration: 7, Func. Count: 81, Neg. LLF: 159.35511523334665
Iteration: 8, Func. Count: 91, Neg. LLF: 159.35511561187877
Optimization terminated successfully (Exit mode 0)
Current function value: 159.35511523334665
Iterations: 8
Function evaluations: 91
Gradient evaluations: 8
Iteration: 1, Func. Count: 13, Neg. LLF: 168.08197919701425
Iteration: 2, Func. Count: 26, Neg. LLF: 160.18775787623161
Iteration: 3, Func. Count: 38, Neg. LLF: 161.69794433200525
Iteration: 4, Func. Count: 52, Neg. LLF: 168.28537083726442
Iteration: 5, Func. Count: 66, Neg. LLF: 172.0341362878848
Iteration: 6, Func. Count: 79, Neg. LLF: 162.55951901068957
Iteration: 7, Func. Count: 92, Neg. LLF: 162.00378437383682
Iteration: 8, Func. Count: 105, Neg. LLF: 160.47459436658178
Iteration: 9, Func. Count: 118, Neg. LLF: 159.21864565454578
Iteration: 10, Func. Count: 131, Neg. LLF: 158.53959887072168
Iteration: 11, Func. Count: 143, Neg. LLF: 157.79260298205753
Iteration: 12, Func. Count: 155, Neg. LLF: 161.35765435943378
Iteration: 13, Func. Count: 169, Neg. LLF: 157.0627876150168
Iteration: 14, Func. Count: 181, Neg. LLF: 156.98186457300608
Iteration: 15, Func. Count: 193, Neg. LLF: 157.00717678156
Iteration: 16, Func. Count: 206, Neg. LLF: 156.92230087294612
Iteration: 17, Func. Count: 219, Neg. LLF: 156.8983726515007
Iteration: 18, Func. Count: 231, Neg. LLF: 156.89027185535852
Iteration: 19, Func. Count: 243, Neg. LLF: 156.88641491647076
Iteration: 20, Func. Count: 255, Neg. LLF: 156.88373058216305
Iteration: 21, Func. Count: 267, Neg. LLF: 156.88181753838103
Iteration: 22, Func. Count: 279, Neg. LLF: 156.87983794745585
Iteration: 23, Func. Count: 291, Neg. LLF: 156.8763589896587
Iteration: 24, Func. Count: 303, Neg. LLF: 156.87164109452004
Iteration: 25, Func. Count: 315, Neg. LLF: 156.86692624659176
Iteration: 26, Func. Count: 327, Neg. LLF: 156.86503409756895
Iteration: 27, Func. Count: 339, Neg. LLF: 156.86482676858688
Iteration: 28, Func. Count: 351, Neg. LLF: 156.8648122977364
Iteration: 29, Func. Count: 362, Neg. LLF: 156.8648123380354
Optimization terminated successfully (Exit mode 0)
Current function value: 156.8648122977364
Iterations: 29
Function evaluations: 362
Gradient evaluations: 29
Iteration: 1, Func. Count: 14, Neg. LLF: 179.74416269913425
Iteration: 2, Func. Count: 30, Neg. LLF: 162.5970108287953
Iteration: 3, Func. Count: 44, Neg. LLF: 158.6520118806655
Iteration: 4, Func. Count: 57, Neg. LLF: 158.2254073598041
Iteration: 5, Func. Count: 70, Neg. LLF: 175.87220092310525
Iteration: 6, Func. Count: 85, Neg. LLF: 172.3557080649131
Iteration: 7, Func. Count: 99, Neg. LLF: 158.18253762669158
Iteration: 8, Func. Count: 113, Neg. LLF: 157.41113681141357
Iteration: 9, Func. Count: 126, Neg. LLF: 158.9239507217021
Iteration: 10, Func. Count: 140, Neg. LLF: 157.22375643396154
Iteration: 11, Func. Count: 153, Neg. LLF: 157.61312976676894
Iteration: 12, Func. Count: 167, Neg. LLF: 157.09315834936618
Iteration: 13, Func. Count: 181, Neg. LLF: 156.95594255378154
Iteration: 14, Func. Count: 194, Neg. LLF: 156.94514020325434
Iteration: 15, Func. Count: 207, Neg. LLF: 156.93329139236218
Iteration: 16, Func. Count: 220, Neg. LLF: 156.8919712401815
Iteration: 17, Func. Count: 233, Neg. LLF: 156.8688397833598
Iteration: 18, Func. Count: 246, Neg. LLF: 156.8653864143037
Iteration: 19, Func. Count: 259, Neg. LLF: 156.8648256104448
Iteration: 20, Func. Count: 272, Neg. LLF: 156.86481609635052
Iteration: 21, Func. Count: 285, Neg. LLF: 156.8648125710606
Iteration: 22, Func. Count: 297, Neg. LLF: 156.86481259234614
Optimization terminated successfully (Exit mode 0)
Current function value: 156.8648125710606
Iterations: 22
Function evaluations: 297
Gradient evaluations: 22
Iteration: 1, Func. Count: 15, Neg. LLF: 179.08032763500248
Iteration: 2, Func. Count: 33, Neg. LLF: 158.15820063987323
Iteration: 3, Func. Count: 47, Neg. LLF: 158.7852713196577
Iteration: 4, Func. Count: 62, Neg. LLF: 157.12554473435247
Iteration: 5, Func. Count: 76, Neg. LLF: 156.66855511132763
Iteration: 6, Func. Count: 90, Neg. LLF: 158.4698783860235
Iteration: 7, Func. Count: 106, Neg. LLF: 159.5437243905735
Iteration: 8, Func. Count: 123, Neg. LLF: 156.62157309252663
Iteration: 9, Func. Count: 137, Neg. LLF: 156.5402894391736
Iteration: 10, Func. Count: 151, Neg. LLF: 156.47462135197304
Iteration: 11, Func. Count: 165, Neg. LLF: 156.46626624461132
Iteration: 12, Func. Count: 179, Neg. LLF: 156.4546933729662
Iteration: 13, Func. Count: 193, Neg. LLF: 156.45231558403958
Iteration: 14, Func. Count: 207, Neg. LLF: 156.45217084430124
Iteration: 15, Func. Count: 221, Neg. LLF: 156.45216720977328
Iteration: 16, Func. Count: 235, Neg. LLF: 156.45216655528043
Optimization terminated successfully (Exit mode 0)
Current function value: 156.45216655528043
Iterations: 16
Function evaluations: 235
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 160.70443402111246
Iteration: 2, Func. Count: 23, Neg. LLF: 161.2323511889131
Iteration: 3, Func. Count: 35, Neg. LLF: 163.5729422869198
Iteration: 4, Func. Count: 47, Neg. LLF: 159.87220505651123
Iteration: 5, Func. Count: 59, Neg. LLF: 158.36119592835504
Iteration: 6, Func. Count: 70, Neg. LLF: 160.3032603655601
Iteration: 7, Func. Count: 83, Neg. LLF: 157.1714934537706
Iteration: 8, Func. Count: 94, Neg. LLF: 157.0921436661625
Iteration: 9, Func. Count: 105, Neg. LLF: 157.18868191328124
Iteration: 10, Func. Count: 118, Neg. LLF: 157.04412670429716
Iteration: 11, Func. Count: 129, Neg. LLF: 156.99227336759216
Iteration: 12, Func. Count: 140, Neg. LLF: 156.92278203989235
Iteration: 13, Func. Count: 151, Neg. LLF: 156.8214562502897
Iteration: 14, Func. Count: 162, Neg. LLF: 156.77393041575013
Iteration: 15, Func. Count: 173, Neg. LLF: 156.7498456812455
Iteration: 16, Func. Count: 184, Neg. LLF: 156.7485085436029
Iteration: 17, Func. Count: 195, Neg. LLF: 156.74832742722634
Iteration: 18, Func. Count: 206, Neg. LLF: 156.7482881115129
Iteration: 19, Func. Count: 216, Neg. LLF: 156.74828808855645
Optimization terminated successfully (Exit mode 0)
Current function value: 156.7482881115129
Iterations: 19
Function evaluations: 216
Gradient evaluations: 19
Iteration: 1, Func. Count: 13, Neg. LLF: 173.68722791915468
Iteration: 2, Func. Count: 26, Neg. LLF: 160.0000883024194
Iteration: 3, Func. Count: 38, Neg. LLF: 159.46927397273734
Iteration: 4, Func. Count: 50, Neg. LLF: 369.7682260846187
Iteration: 5, Func. Count: 64, Neg. LLF: 159.3607269146848
Iteration: 6, Func. Count: 76, Neg. LLF: 159.3551424476048
Iteration: 7, Func. Count: 88, Neg. LLF: 159.35511676678422
Iteration: 8, Func. Count: 100, Neg. LLF: 159.35511511055387
Iteration: 9, Func. Count: 111, Neg. LLF: 159.35511548919968
Optimization terminated successfully (Exit mode 0)
Current function value: 159.35511511055387
Iterations: 9
Function evaluations: 111
Gradient evaluations: 9
Iteration: 1, Func. Count: 14, Neg. LLF: 166.83716733860763
Iteration: 2, Func. Count: 31, Neg. LLF: 162.2517142221688
Iteration: 3, Func. Count: 45, Neg. LLF: 160.4670993937697
Iteration: 4, Func. Count: 59, Neg. LLF: 159.92720857688226
Iteration: 5, Func. Count: 72, Neg. LLF: 159.61958652293873
Iteration: 6, Func. Count: 85, Neg. LLF: 159.58446808963004
Iteration: 7, Func. Count: 98, Neg. LLF: 159.5177062375628
Iteration: 8, Func. Count: 111, Neg. LLF: 159.46623163767197
Iteration: 9, Func. Count: 124, Neg. LLF: 160.03879582120376
Iteration: 10, Func. Count: 138, Neg. LLF: 159.2430815105472
Iteration: 11, Func. Count: 151, Neg. LLF: 159.3051248754244
Iteration: 12, Func. Count: 165, Neg. LLF: 159.12491536127192
Iteration: 13, Func. Count: 178, Neg. LLF: 159.09232372326267
Iteration: 14, Func. Count: 191, Neg. LLF: 159.0670206868056
Iteration: 15, Func. Count: 204, Neg. LLF: 159.06197722510132
Iteration: 16, Func. Count: 217, Neg. LLF: 159.06161151418976
Iteration: 17, Func. Count: 230, Neg. LLF: 159.0615975090818
Iteration: 18, Func. Count: 243, Neg. LLF: 159.06159688274607
Optimization terminated successfully (Exit mode 0)
Current function value: 159.06159688274607
Iterations: 18
Function evaluations: 243
Gradient evaluations: 18
Iteration: 1, Func. Count: 15, Neg. LLF: 166.19723322160615
Iteration: 2, Func. Count: 33, Neg. LLF: 164.63094879144
Iteration: 3, Func. Count: 48, Neg. LLF: 161.30163881535424
Iteration: 4, Func. Count: 63, Neg. LLF: 160.59933228983866
Iteration: 5, Func. Count: 78, Neg. LLF: 162.69581776180422
Iteration: 6, Func. Count: 93, Neg. LLF: 159.0788753331235
Iteration: 7, Func. Count: 107, Neg. LLF: 159.01744086910682
Iteration: 8, Func. Count: 121, Neg. LLF: 158.55589674082177
Iteration: 9, Func. Count: 135, Neg. LLF: 158.06797542208378
Iteration: 10, Func. Count: 149, Neg. LLF: 157.43016844418625
Iteration: 11, Func. Count: 163, Neg. LLF: 159.0686499772771
Iteration: 12, Func. Count: 178, Neg. LLF: 160.03704958459218
Iteration: 13, Func. Count: 193, Neg. LLF: 156.92620736446435
Iteration: 14, Func. Count: 207, Neg. LLF: 156.8916184118549
Iteration: 15, Func. Count: 221, Neg. LLF: 156.87623701592938
Iteration: 16, Func. Count: 235, Neg. LLF: 156.85602042471717
Iteration: 17, Func. Count: 249, Neg. LLF: 156.83478916084292
Iteration: 18, Func. Count: 263, Neg. LLF: 156.81346642854973
Iteration: 19, Func. Count: 277, Neg. LLF: 156.78922511839755
Iteration: 20, Func. Count: 291, Neg. LLF: 156.77144288522152
Iteration: 21, Func. Count: 305, Neg. LLF: 156.75895031262746
Iteration: 22, Func. Count: 319, Neg. LLF: 156.75200207620665
Iteration: 23, Func. Count: 333, Neg. LLF: 156.74956936142556
Iteration: 24, Func. Count: 347, Neg. LLF: 156.74855450172268
Iteration: 25, Func. Count: 361, Neg. LLF: 156.74834313898785
Iteration: 26, Func. Count: 375, Neg. LLF: 156.74829107247703
Iteration: 27, Func. Count: 389, Neg. LLF: 156.7482879762607
Iteration: 28, Func. Count: 402, Neg. LLF: 156.74828800361243
Optimization terminated successfully (Exit mode 0)
Current function value: 156.7482879762607
Iterations: 28
Function evaluations: 402
Gradient evaluations: 28
Iteration: 1, Func. Count: 16, Neg. LLF: 165.3391355845322
Iteration: 2, Func. Count: 35, Neg. LLF: 159.4240685934701
Iteration: 3, Func. Count: 50, Neg. LLF: 160.2203098443793
Iteration: 4, Func. Count: 66, Neg. LLF: 159.526579968726
Iteration: 5, Func. Count: 82, Neg. LLF: 160.79161069638585
Iteration: 6, Func. Count: 99, Neg. LLF: 158.3030642968975
Iteration: 7, Func. Count: 115, Neg. LLF: 156.43437909533316
Iteration: 8, Func. Count: 130, Neg. LLF: 156.38005923541058
Iteration: 9, Func. Count: 145, Neg. LLF: 156.2883809618812
Iteration: 10, Func. Count: 160, Neg. LLF: 156.2628354774666
Iteration: 11, Func. Count: 175, Neg. LLF: 156.256112240344
Iteration: 12, Func. Count: 190, Neg. LLF: 156.2494754839004
Iteration: 13, Func. Count: 205, Neg. LLF: 156.24756586449251
Iteration: 14, Func. Count: 220, Neg. LLF: 156.24602865280937
Iteration: 15, Func. Count: 235, Neg. LLF: 156.2429758783025
Iteration: 16, Func. Count: 250, Neg. LLF: 156.2417402216753
Iteration: 17, Func. Count: 265, Neg. LLF: 156.24120233285936
Iteration: 18, Func. Count: 280, Neg. LLF: 156.24114853389494
Iteration: 19, Func. Count: 295, Neg. LLF: 156.24114781490402
Optimization terminated successfully (Exit mode 0)
Current function value: 156.24114781490402
Iterations: 19
Function evaluations: 295
Gradient evaluations: 19
Iteration: 1, Func. Count: 6, Neg. LLF: 161.40774107761595
Iteration: 2, Func. Count: 11, Neg. LLF: 165.88949107181054
Iteration: 3, Func. Count: 17, Neg. LLF: 157.39845719765128
Iteration: 4, Func. Count: 22, Neg. LLF: 157.37994061406295
Iteration: 5, Func. Count: 27, Neg. LLF: 157.29099955598159
Iteration: 6, Func. Count: 32, Neg. LLF: 157.12456613746699
Iteration: 7, Func. Count: 37, Neg. LLF: 157.09725988409687
Iteration: 8, Func. Count: 42, Neg. LLF: 157.09369403738003
Iteration: 9, Func. Count: 47, Neg. LLF: 157.09354870492783
Iteration: 10, Func. Count: 52, Neg. LLF: 157.09349683484567
Iteration: 11, Func. Count: 56, Neg. LLF: 157.0934968149345
Optimization terminated successfully (Exit mode 0)
Current function value: 157.09349683484567
Iterations: 11
Function evaluations: 56
Gradient evaluations: 11
Iteration: 1, Func. Count: 5, Neg. LLF: 162.88187434103676
Iteration: 2, Func. Count: 9, Neg. LLF: 163.7063411446579
Iteration: 3, Func. Count: 14, Neg. LLF: 161.45245749867652
Iteration: 4, Func. Count: 18, Neg. LLF: 161.4084416802757
Iteration: 5, Func. Count: 22, Neg. LLF: 161.26313769041533
Iteration: 6, Func. Count: 26, Neg. LLF: 161.22276667447684
Iteration: 7, Func. Count: 30, Neg. LLF: 161.21624481993604
Iteration: 8, Func. Count: 34, Neg. LLF: 161.2160058708733
Iteration: 9, Func. Count: 38, Neg. LLF: 161.2159947925927
Iteration: 10, Func. Count: 42, Neg. LLF: 161.21599409732363
Optimization terminated successfully (Exit mode 0)
Current function value: 161.21599409732363
Iterations: 10
Function evaluations: 42
Gradient evaluations: 10
Iteration: 1, Func. Count: 6, Neg. LLF: 173.9435934273043
Iteration: 2, Func. Count: 12, Neg. LLF: 160.8231836232682
Iteration: 3, Func. Count: 19, Neg. LLF: 159.7761233372215
Iteration: 4, Func. Count: 24, Neg. LLF: 159.91768150688895
Iteration: 5, Func. Count: 30, Neg. LLF: 159.7040758744307
Iteration: 6, Func. Count: 35, Neg. LLF: 159.67757967903736
Iteration: 7, Func. Count: 40, Neg. LLF: 159.6700343423646
Iteration: 8, Func. Count: 45, Neg. LLF: 159.66943356348568
Iteration: 9, Func. Count: 50, Neg. LLF: 159.6694081334758
Iteration: 10, Func. Count: 55, Neg. LLF: 159.66940711841033
Iteration: 11, Func. Count: 59, Neg. LLF: 159.6694068907204
Optimization terminated successfully (Exit mode 0)
Current function value: 159.66940711841033
Iterations: 11
Function evaluations: 59
Gradient evaluations: 11
Iteration: 1, Func. Count: 7, Neg. LLF: 169.53402624409227
Iteration: 2, Func. Count: 14, Neg. LLF: 164.07501700758064
Iteration: 3, Func. Count: 22, Neg. LLF: 159.840181751707
Iteration: 4, Func. Count: 28, Neg. LLF: 159.81824580263714
Iteration: 5, Func. Count: 34, Neg. LLF: 159.77255767115818
Iteration: 6, Func. Count: 40, Neg. LLF: 159.74457136189338
Iteration: 7, Func. Count: 46, Neg. LLF: 159.69684255157745
Iteration: 8, Func. Count: 52, Neg. LLF: 159.6795836466888
Iteration: 9, Func. Count: 58, Neg. LLF: 159.6713658668972
Iteration: 10, Func. Count: 64, Neg. LLF: 159.66960066245105
Iteration: 11, Func. Count: 70, Neg. LLF: 159.66942356825325
Iteration: 12, Func. Count: 76, Neg. LLF: 159.66940716678405
Iteration: 13, Func. Count: 81, Neg. LLF: 159.66940694017336
Optimization terminated successfully (Exit mode 0)
Current function value: 159.66940716678405
Iterations: 13
Function evaluations: 81
Gradient evaluations: 13
Iteration: 1, Func. Count: 8, Neg. LLF: 169.39242965014466
Iteration: 2, Func. Count: 16, Neg. LLF: 161.73468776333374
Iteration: 3, Func. Count: 25, Neg. LLF: 159.73781936341908
Iteration: 4, Func. Count: 32, Neg. LLF: 159.80408962998732
Iteration: 5, Func. Count: 40, Neg. LLF: 159.67958810038954
Iteration: 6, Func. Count: 47, Neg. LLF: 159.6649085915188
Iteration: 7, Func. Count: 54, Neg. LLF: 159.66447826229165
Iteration: 8, Func. Count: 61, Neg. LLF: 159.66388056904768
Iteration: 9, Func. Count: 68, Neg. LLF: 159.66385998914916
Iteration: 10, Func. Count: 75, Neg. LLF: 159.66383448283278
Iteration: 11, Func. Count: 81, Neg. LLF: 159.66383437640334
Optimization terminated successfully (Exit mode 0)
Current function value: 159.66383448283278
Iterations: 11
Function evaluations: 81
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 171.76538685654754
Iteration: 2, Func. Count: 18, Neg. LLF: 161.76063869001828
Iteration: 3, Func. Count: 27, Neg. LLF: 159.29437233652686
Iteration: 4, Func. Count: 35, Neg. LLF: 159.8538441016812
Iteration: 5, Func. Count: 44, Neg. LLF: 162.05184901024447
Iteration: 6, Func. Count: 53, Neg. LLF: 158.88383184444186
Iteration: 7, Func. Count: 61, Neg. LLF: 158.2510426139645
Iteration: 8, Func. Count: 69, Neg. LLF: 158.266495897986
Iteration: 9, Func. Count: 78, Neg. LLF: 158.12029604661285
Iteration: 10, Func. Count: 86, Neg. LLF: 158.1116584746798
Iteration: 11, Func. Count: 94, Neg. LLF: 158.1000291357874
Iteration: 12, Func. Count: 102, Neg. LLF: 158.09637283383844
Iteration: 13, Func. Count: 110, Neg. LLF: 158.09019342929642
Iteration: 14, Func. Count: 118, Neg. LLF: 158.0891115387764
Iteration: 15, Func. Count: 126, Neg. LLF: 158.088965267284
Iteration: 16, Func. Count: 134, Neg. LLF: 158.08888521280682
Iteration: 17, Func. Count: 142, Neg. LLF: 158.08893048167977
Iteration: 18, Func. Count: 151, Neg. LLF: 158.08893032198546
Iteration: 19, Func. Count: 160, Neg. LLF: 158.088930005269
Iteration: 20, Func. Count: 170, Neg. LLF: 158.08892996230054
Iteration: 21, Func. Count: 177, Neg. LLF: 158.08892980826624
Optimization terminated successfully (Exit mode 0)
Current function value: 158.08892996230054
Iterations: 22
Function evaluations: 177
Gradient evaluations: 21
Iteration: 1, Func. Count: 6, Neg. LLF: 160.8061538691717
Iteration: 2, Func. Count: 11, Neg. LLF: 165.45932984359573
Iteration: 3, Func. Count: 17, Neg. LLF: 156.95893674729427
Iteration: 4, Func. Count: 22, Neg. LLF: 156.92861100968565
Iteration: 5, Func. Count: 27, Neg. LLF: 156.89746131200323
Iteration: 6, Func. Count: 32, Neg. LLF: 156.8287527719164
Iteration: 7, Func. Count: 37, Neg. LLF: 156.69914167733015
Iteration: 8, Func. Count: 42, Neg. LLF: 156.66273988785102
Iteration: 9, Func. Count: 47, Neg. LLF: 156.657962406394
Iteration: 10, Func. Count: 52, Neg. LLF: 156.6579146694208
Iteration: 11, Func. Count: 57, Neg. LLF: 156.65791373102257
Optimization terminated successfully (Exit mode 0)
Current function value: 156.65791373102257
Iterations: 11
Function evaluations: 57
Gradient evaluations: 11
Iteration: 1, Func. Count: 7, Neg. LLF: 173.9450955258151
Iteration: 2, Func. Count: 14, Neg. LLF: 160.8017307080634
Iteration: 3, Func. Count: 22, Neg. LLF: 159.77696000338437
Iteration: 4, Func. Count: 28, Neg. LLF: 159.9223801029023
Iteration: 5, Func. Count: 35, Neg. LLF: 159.70253167978885
Iteration: 6, Func. Count: 41, Neg. LLF: 159.67634894250153
Iteration: 7, Func. Count: 47, Neg. LLF: 159.66999452299257
Iteration: 8, Func. Count: 53, Neg. LLF: 159.6694274186034
Iteration: 9, Func. Count: 59, Neg. LLF: 159.6694080304718
Iteration: 10, Func. Count: 65, Neg. LLF: 159.66940711956155
Optimization terminated successfully (Exit mode 0)
Current function value: 159.66940711956155
Iterations: 10
Function evaluations: 65
Gradient evaluations: 10
Iteration: 1, Func. Count: 8, Neg. LLF: 169.35570341539363
Iteration: 2, Func. Count: 16, Neg. LLF: 157.00941776251645
Iteration: 3, Func. Count: 23, Neg. LLF: 158.10491555948175
Iteration: 4, Func. Count: 31, Neg. LLF: 156.81253639623299
Iteration: 5, Func. Count: 38, Neg. LLF: 156.77493687474845
Iteration: 6, Func. Count: 45, Neg. LLF: 156.76495247322302
Iteration: 7, Func. Count: 52, Neg. LLF: 156.72402727239808
Iteration: 8, Func. Count: 59, Neg. LLF: 156.68375773070116
Iteration: 9, Func. Count: 66, Neg. LLF: 156.6609327495959
Iteration: 10, Func. Count: 73, Neg. LLF: 156.6580719842089
Iteration: 11, Func. Count: 80, Neg. LLF: 156.65792221491677
Iteration: 12, Func. Count: 87, Neg. LLF: 156.65791400438889
Iteration: 13, Func. Count: 93, Neg. LLF: 156.65791402485848
Optimization terminated successfully (Exit mode 0)
Current function value: 156.65791400438889
Iterations: 13
Function evaluations: 93
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 169.31179923196464
Iteration: 2, Func. Count: 18, Neg. LLF: 158.2643905618768
Iteration: 3, Func. Count: 26, Neg. LLF: 158.95623505242105
Iteration: 4, Func. Count: 35, Neg. LLF: 157.16907591596612
Iteration: 5, Func. Count: 43, Neg. LLF: 157.03964771613082
Iteration: 6, Func. Count: 51, Neg. LLF: 160.6914189182686
Iteration: 7, Func. Count: 61, Neg. LLF: 156.9875254002909
Iteration: 8, Func. Count: 69, Neg. LLF: 156.91937810222836
Iteration: 9, Func. Count: 77, Neg. LLF: 156.72473984516108
Iteration: 10, Func. Count: 85, Neg. LLF: 156.6669230622119
Iteration: 11, Func. Count: 93, Neg. LLF: 156.65839622388225
Iteration: 12, Func. Count: 101, Neg. LLF: 156.6579509475632
Iteration: 13, Func. Count: 109, Neg. LLF: 156.65791835697868
Iteration: 14, Func. Count: 117, Neg. LLF: 156.65791385152113
Iteration: 15, Func. Count: 124, Neg. LLF: 156.6579138569914
Optimization terminated successfully (Exit mode 0)
Current function value: 156.65791385152113
Iterations: 15
Function evaluations: 124
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 171.05792592175752
Iteration: 2, Func. Count: 20, Neg. LLF: 161.31947440435724
Iteration: 3, Func. Count: 30, Neg. LLF: 160.15730733805995
Iteration: 4, Func. Count: 40, Neg. LLF: 164.89266006997292
Iteration: 5, Func. Count: 50, Neg. LLF: 155.952643113312
Iteration: 6, Func. Count: 59, Neg. LLF: 160.24835780370583
Iteration: 7, Func. Count: 69, Neg. LLF: 155.61876479102315
Iteration: 8, Func. Count: 78, Neg. LLF: 155.52407168148375
Iteration: 9, Func. Count: 87, Neg. LLF: 155.49596567817423
Iteration: 10, Func. Count: 96, Neg. LLF: 155.48983130335176
Iteration: 11, Func. Count: 105, Neg. LLF: 155.4889051176827
Iteration: 12, Func. Count: 114, Neg. LLF: 155.48795428784246
Iteration: 13, Func. Count: 123, Neg. LLF: 155.48612539452103
Iteration: 14, Func. Count: 132, Neg. LLF: 155.48555484150504
Iteration: 15, Func. Count: 141, Neg. LLF: 155.4854506125497
Iteration: 16, Func. Count: 150, Neg. LLF: 155.48545412078366
Iteration: 17, Func. Count: 159, Neg. LLF: 155.48544795419977
Iteration: 18, Func. Count: 168, Neg. LLF: 155.4854483849733
Optimization terminated successfully (Exit mode 0)
Current function value: 155.4854479546205
Iterations: 18
Function evaluations: 178
Gradient evaluations: 18
Iteration: 1, Func. Count: 7, Neg. LLF: 159.71591066622278
Iteration: 2, Func. Count: 13, Neg. LLF: 166.93489614889853
Iteration: 3, Func. Count: 20, Neg. LLF: 156.9721979822026
Iteration: 4, Func. Count: 26, Neg. LLF: 156.94039577360047
Iteration: 5, Func. Count: 32, Neg. LLF: 156.90178355871944
Iteration: 6, Func. Count: 38, Neg. LLF: 156.8289638299279
Iteration: 7, Func. Count: 44, Neg. LLF: 156.69390668097034
Iteration: 8, Func. Count: 50, Neg. LLF: 156.66132607022863
Iteration: 9, Func. Count: 56, Neg. LLF: 156.65797471533386
Iteration: 10, Func. Count: 62, Neg. LLF: 156.6579158068682
Iteration: 11, Func. Count: 68, Neg. LLF: 156.65791373902152
Iteration: 12, Func. Count: 73, Neg. LLF: 156.65791375036602
Optimization terminated successfully (Exit mode 0)
Current function value: 156.65791373902152
Iterations: 12
Function evaluations: 73
Gradient evaluations: 12
Iteration: 1, Func. Count: 8, Neg. LLF: 173.9691507786612
Iteration: 2, Func. Count: 16, Neg. LLF: 160.8058057698435
Iteration: 3, Func. Count: 25, Neg. LLF: 159.77872441050488
Iteration: 4, Func. Count: 32, Neg. LLF: 159.95347306624882
Iteration: 5, Func. Count: 40, Neg. LLF: 159.70275894070784
Iteration: 6, Func. Count: 47, Neg. LLF: 159.67633972065468
Iteration: 7, Func. Count: 54, Neg. LLF: 159.6699962126153
Iteration: 8, Func. Count: 61, Neg. LLF: 159.66942963968893
Iteration: 9, Func. Count: 68, Neg. LLF: 159.66940804057847
Iteration: 10, Func. Count: 75, Neg. LLF: 159.66940712193738
Optimization terminated successfully (Exit mode 0)
Current function value: 159.66940712193738
Iterations: 10
Function evaluations: 75
Gradient evaluations: 10
Iteration: 1, Func. Count: 9, Neg. LLF: 169.3856820713899
Iteration: 2, Func. Count: 18, Neg. LLF: 156.95262590722103
Iteration: 3, Func. Count: 26, Neg. LLF: 158.01626898502988
Iteration: 4, Func. Count: 35, Neg. LLF: 156.82019299553053
Iteration: 5, Func. Count: 44, Neg. LLF: 156.77138650146318
Iteration: 6, Func. Count: 52, Neg. LLF: 156.72534655589567
Iteration: 7, Func. Count: 60, Neg. LLF: 156.67808278502247
Iteration: 8, Func. Count: 68, Neg. LLF: 156.6612212740856
Iteration: 9, Func. Count: 76, Neg. LLF: 156.6581226451057
Iteration: 10, Func. Count: 84, Neg. LLF: 156.65792581619672
Iteration: 11, Func. Count: 92, Neg. LLF: 156.65791410086595
Iteration: 12, Func. Count: 99, Neg. LLF: 156.65791412134513
Optimization terminated successfully (Exit mode 0)
Current function value: 156.65791410086595
Iterations: 12
Function evaluations: 99
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 169.10820542743085
Iteration: 2, Func. Count: 20, Neg. LLF: 157.9212542175349
Iteration: 3, Func. Count: 29, Neg. LLF: 158.73131414244418
Iteration: 4, Func. Count: 39, Neg. LLF: 157.15396704839694
Iteration: 5, Func. Count: 48, Neg. LLF: 157.01558665351027
Iteration: 6, Func. Count: 57, Neg. LLF: 161.84822546306924
Iteration: 7, Func. Count: 68, Neg. LLF: 156.9719012129791
Iteration: 8, Func. Count: 77, Neg. LLF: 156.8666334204305
Iteration: 9, Func. Count: 86, Neg. LLF: 156.73469315674464
Iteration: 10, Func. Count: 95, Neg. LLF: 156.6705052883154
Iteration: 11, Func. Count: 104, Neg. LLF: 156.65877543799851
Iteration: 12, Func. Count: 113, Neg. LLF: 156.65797410947073
Iteration: 13, Func. Count: 122, Neg. LLF: 156.65791958053123
Iteration: 14, Func. Count: 131, Neg. LLF: 156.65791389617448
Iteration: 15, Func. Count: 139, Neg. LLF: 156.65791390165242
Optimization terminated successfully (Exit mode 0)
Current function value: 156.65791389617448
Iterations: 15
Function evaluations: 139
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 170.80561863775586
Iteration: 2, Func. Count: 22, Neg. LLF: 161.22213286135633
Iteration: 3, Func. Count: 33, Neg. LLF: 160.55845585417424
Iteration: 4, Func. Count: 44, Neg. LLF: 165.4433268317693
Iteration: 5, Func. Count: 55, Neg. LLF: 156.09640519187872
Iteration: 6, Func. Count: 65, Neg. LLF: 161.36471246439575
Iteration: 7, Func. Count: 76, Neg. LLF: 155.6604663795846
Iteration: 8, Func. Count: 86, Neg. LLF: 155.50276591685287
Iteration: 9, Func. Count: 96, Neg. LLF: 155.49349850682208
Iteration: 10, Func. Count: 106, Neg. LLF: 155.4912704847168
Iteration: 11, Func. Count: 116, Neg. LLF: 155.48965902442518
Iteration: 12, Func. Count: 126, Neg. LLF: 155.48677897592853
Iteration: 13, Func. Count: 136, Neg. LLF: 155.48570488695344
Iteration: 14, Func. Count: 146, Neg. LLF: 155.48546235595367
Iteration: 15, Func. Count: 156, Neg. LLF: 155.48545132806754
Iteration: 16, Func. Count: 165, Neg. LLF: 155.48545119738597
Optimization terminated successfully (Exit mode 0)
Current function value: 155.48545132806754
Iterations: 16
Function evaluations: 165
Gradient evaluations: 16
Iteration: 1, Func. Count: 8, Neg. LLF: 158.83458572446912
Iteration: 2, Func. Count: 15, Neg. LLF: 166.62869240516238
Iteration: 3, Func. Count: 23, Neg. LLF: 156.9782089277137
Iteration: 4, Func. Count: 30, Neg. LLF: 156.94871931653603
Iteration: 5, Func. Count: 37, Neg. LLF: 156.89266596051434
Iteration: 6, Func. Count: 44, Neg. LLF: 156.81399474167
Iteration: 7, Func. Count: 51, Neg. LLF: 156.68029313332406
Iteration: 8, Func. Count: 58, Neg. LLF: 156.6594575776933
Iteration: 9, Func. Count: 65, Neg. LLF: 156.65794817645485
Iteration: 10, Func. Count: 72, Neg. LLF: 156.65791419190282
Iteration: 11, Func. Count: 79, Neg. LLF: 156.6579137459826
Optimization terminated successfully (Exit mode 0)
Current function value: 156.6579137459826
Iterations: 11
Function evaluations: 79
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 173.96083865849042
Iteration: 2, Func. Count: 18, Neg. LLF: 160.79895100557533
Iteration: 3, Func. Count: 28, Neg. LLF: 159.7777087308163
Iteration: 4, Func. Count: 36, Neg. LLF: 159.95364910973197
Iteration: 5, Func. Count: 45, Neg. LLF: 159.70336608767965
Iteration: 6, Func. Count: 53, Neg. LLF: 159.677132198522
Iteration: 7, Func. Count: 61, Neg. LLF: 159.67001018985295
Iteration: 8, Func. Count: 69, Neg. LLF: 159.66943326825216
Iteration: 9, Func. Count: 77, Neg. LLF: 159.66940809467397
Iteration: 10, Func. Count: 85, Neg. LLF: 159.6694071203319
Optimization terminated successfully (Exit mode 0)
Current function value: 159.6694071203319
Iterations: 10
Function evaluations: 85
Gradient evaluations: 10
Iteration: 1, Func. Count: 10, Neg. LLF: 169.36736650683963
Iteration: 2, Func. Count: 20, Neg. LLF: 156.94587726309658
Iteration: 3, Func. Count: 29, Neg. LLF: 158.0187631753883
Iteration: 4, Func. Count: 39, Neg. LLF: 156.81664256840108
Iteration: 5, Func. Count: 49, Neg. LLF: 156.77055021458213
Iteration: 6, Func. Count: 58, Neg. LLF: 156.72477866559925
Iteration: 7, Func. Count: 67, Neg. LLF: 156.6731901838242
Iteration: 8, Func. Count: 76, Neg. LLF: 156.66016337536712
Iteration: 9, Func. Count: 85, Neg. LLF: 156.65803898153072
Iteration: 10, Func. Count: 94, Neg. LLF: 156.65792104476276
Iteration: 11, Func. Count: 103, Neg. LLF: 156.65791391034037
Iteration: 12, Func. Count: 111, Neg. LLF: 156.6579139308028
Optimization terminated successfully (Exit mode 0)
Current function value: 156.65791391034037
Iterations: 12
Function evaluations: 111
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 169.17339275987507
Iteration: 2, Func. Count: 22, Neg. LLF: 158.00579710594067
Iteration: 3, Func. Count: 32, Neg. LLF: 158.7781654225041
Iteration: 4, Func. Count: 43, Neg. LLF: 157.15729531703147
Iteration: 5, Func. Count: 53, Neg. LLF: 157.0207511965054
Iteration: 6, Func. Count: 63, Neg. LLF: 162.3303572517245
Iteration: 7, Func. Count: 75, Neg. LLF: 156.97483764434276
Iteration: 8, Func. Count: 85, Neg. LLF: 156.89365357647515
Iteration: 9, Func. Count: 95, Neg. LLF: 156.74756762318017
Iteration: 10, Func. Count: 105, Neg. LLF: 156.67377365554756
Iteration: 11, Func. Count: 115, Neg. LLF: 156.65911078520907
Iteration: 12, Func. Count: 125, Neg. LLF: 156.65800031512933
Iteration: 13, Func. Count: 135, Neg. LLF: 156.6579229349611
Iteration: 14, Func. Count: 145, Neg. LLF: 156.65791405246108
Iteration: 15, Func. Count: 154, Neg. LLF: 156.65791405795648
Optimization terminated successfully (Exit mode 0)
Current function value: 156.65791405246108
Iterations: 15
Function evaluations: 154
Gradient evaluations: 15
Iteration: 1, Func. Count: 12, Neg. LLF: 171.0282098461288
Iteration: 2, Func. Count: 24, Neg. LLF: 161.35521999827455
Iteration: 3, Func. Count: 36, Neg. LLF: 160.20139613449453
Iteration: 4, Func. Count: 48, Neg. LLF: 164.96480744480644
Iteration: 5, Func. Count: 60, Neg. LLF: 155.9838084501824
Iteration: 6, Func. Count: 71, Neg. LLF: 160.60746265523377
Iteration: 7, Func. Count: 83, Neg. LLF: 155.62933675411566
Iteration: 8, Func. Count: 94, Neg. LLF: 155.54905690582305
Iteration: 9, Func. Count: 105, Neg. LLF: 155.49710251537283
Iteration: 10, Func. Count: 116, Neg. LLF: 155.49069587003052
Iteration: 11, Func. Count: 127, Neg. LLF: 155.4892082036882
Iteration: 12, Func. Count: 138, Neg. LLF: 155.4883326875341
Iteration: 13, Func. Count: 149, Neg. LLF: 155.48641739862563
Iteration: 14, Func. Count: 160, Neg. LLF: 155.48565009763269
Iteration: 15, Func. Count: 171, Neg. LLF: 155.48545723694411
Iteration: 16, Func. Count: 182, Neg. LLF: 155.48545088744095
Iteration: 17, Func. Count: 193, Neg. LLF: 155.4854438378851
Optimization terminated successfully (Exit mode 0)
Current function value: 155.48545087936742
Iterations: 17
Function evaluations: 203
Gradient evaluations: 17
Iteration: 1, Func. Count: 5, Neg. LLF: 164.93956278894964
Iteration: 2, Func. Count: 9, Neg. LLF: 165.03317844628933
Iteration: 3, Func. Count: 14, Neg. LLF: 164.84291145709327
Iteration: 4, Func. Count: 18, Neg. LLF: 164.72053529290966
Iteration: 5, Func. Count: 22, Neg. LLF: 164.4992821783909
Iteration: 6, Func. Count: 26, Neg. LLF: 163.98622087453472
Iteration: 7, Func. Count: 30, Neg. LLF: 162.50257443578508
Iteration: 8, Func. Count: 34, Neg. LLF: 162.449001743761
Iteration: 9, Func. Count: 38, Neg. LLF: 162.3333163214326
Iteration: 10, Func. Count: 42, Neg. LLF: 162.32764015796639
Iteration: 11, Func. Count: 46, Neg. LLF: 162.32558177168886
Iteration: 12, Func. Count: 50, Neg. LLF: 162.32558064251253
Iteration: 13, Func. Count: 53, Neg. LLF: 162.325580689889
Optimization terminated successfully (Exit mode 0)
Current function value: 162.32558064251253
Iterations: 13
Function evaluations: 53
Gradient evaluations: 13
Iteration: 1, Func. Count: 6, Neg. LLF: 173.88835879000857
Iteration: 2, Func. Count: 12, Neg. LLF: 161.00446022597416
Iteration: 3, Func. Count: 17, Neg. LLF: 160.32264788275603
Iteration: 4, Func. Count: 22, Neg. LLF: 160.36833608951073
Iteration: 5, Func. Count: 28, Neg. LLF: 160.03730397124937
Iteration: 6, Func. Count: 33, Neg. LLF: 160.03917210011457
Iteration: 7, Func. Count: 39, Neg. LLF: 160.02440476502045
Iteration: 8, Func. Count: 44, Neg. LLF: 160.02418547895485
Iteration: 9, Func. Count: 48, Neg. LLF: 160.02418555198702
Optimization terminated successfully (Exit mode 0)
Current function value: 160.02418547895485
Iterations: 9
Function evaluations: 48
Gradient evaluations: 9
Iteration: 1, Func. Count: 7, Neg. LLF: 170.08464432708624
Iteration: 2, Func. Count: 14, Neg. LLF: 160.2686749678635
Iteration: 3, Func. Count: 20, Neg. LLF: 160.20347723499438
Iteration: 4, Func. Count: 26, Neg. LLF: 164.12262798508084
Iteration: 5, Func. Count: 34, Neg. LLF: 160.1199678229296
Iteration: 6, Func. Count: 40, Neg. LLF: 160.08836596052666
Iteration: 7, Func. Count: 46, Neg. LLF: 160.08538094963
Iteration: 8, Func. Count: 52, Neg. LLF: 160.08040364604247
Iteration: 9, Func. Count: 58, Neg. LLF: 160.0754372840374
Iteration: 10, Func. Count: 64, Neg. LLF: 160.07073164097005
Iteration: 11, Func. Count: 70, Neg. LLF: 160.06676039377734
Iteration: 12, Func. Count: 76, Neg. LLF: 160.0610854992552
Iteration: 13, Func. Count: 82, Neg. LLF: 160.0243067236084
Iteration: 14, Func. Count: 88, Neg. LLF: 160.02442071634013
Iteration: 15, Func. Count: 95, Neg. LLF: 160.0241856363859
Iteration: 16, Func. Count: 100, Neg. LLF: 160.0241855643763
Optimization terminated successfully (Exit mode 0)
Current function value: 160.0241856363859
Iterations: 17
Function evaluations: 100
Gradient evaluations: 16
Iteration: 1, Func. Count: 8, Neg. LLF: 166.7747956104072
Iteration: 2, Func. Count: 16, Neg. LLF: 160.15928212052876
Iteration: 3, Func. Count: 23, Neg. LLF: 160.22463648601155
Iteration: 4, Func. Count: 31, Neg. LLF: 160.1036254631597
Iteration: 5, Func. Count: 38, Neg. LLF: 160.10278307514125
Iteration: 6, Func. Count: 45, Neg. LLF: 160.09650675738575
Iteration: 7, Func. Count: 52, Neg. LLF: 160.0915845655093
Iteration: 8, Func. Count: 59, Neg. LLF: 160.088307674579
Iteration: 9, Func. Count: 66, Neg. LLF: 160.08830552935174
Iteration: 10, Func. Count: 72, Neg. LLF: 160.08830549680408
Optimization terminated successfully (Exit mode 0)
Current function value: 160.08830552935174
Iterations: 10
Function evaluations: 72
Gradient evaluations: 10
Iteration: 1, Func. Count: 9, Neg. LLF: 167.2484980551243
Iteration: 2, Func. Count: 18, Neg. LLF: 160.17174829564496
Iteration: 3, Func. Count: 26, Neg. LLF: 160.1870162543943
Iteration: 4, Func. Count: 35, Neg. LLF: 160.1544332986203
Iteration: 5, Func. Count: 43, Neg. LLF: 160.14737860483478
Iteration: 6, Func. Count: 51, Neg. LLF: 160.1297706571825
Iteration: 7, Func. Count: 59, Neg. LLF: 160.0519267303037
Iteration: 8, Func. Count: 67, Neg. LLF: 160.05454779914658
Iteration: 9, Func. Count: 76, Neg. LLF: 160.04876063166589
Iteration: 10, Func. Count: 84, Neg. LLF: 160.03420567512487
Iteration: 11, Func. Count: 92, Neg. LLF: 160.04144300574777
Iteration: 12, Func. Count: 101, Neg. LLF: 160.3958045126513
Iteration: 13, Func. Count: 110, Neg. LLF: 160.0242108636533
Iteration: 14, Func. Count: 118, Neg. LLF: 160.02418566526453
Iteration: 15, Func. Count: 125, Neg. LLF: 160.02418559877705
Optimization terminated successfully (Exit mode 0)
Current function value: 160.02418566526453
Iterations: 16
Function evaluations: 125
Gradient evaluations: 15
Iteration: 1, Func. Count: 6, Neg. LLF: 163.04142758025324
Iteration: 2, Func. Count: 11, Neg. LLF: 162.6029760851299
Iteration: 3, Func. Count: 17, Neg. LLF: 162.45111354593269
Iteration: 4, Func. Count: 23, Neg. LLF: 161.5645280197773
Iteration: 5, Func. Count: 28, Neg. LLF: 161.56072534474865
Iteration: 6, Func. Count: 34, Neg. LLF: 161.4048059228466
Iteration: 7, Func. Count: 39, Neg. LLF: 161.3427497956518
Iteration: 8, Func. Count: 44, Neg. LLF: 161.31335096173058
Iteration: 9, Func. Count: 49, Neg. LLF: 161.21205740520244
Iteration: 10, Func. Count: 54, Neg. LLF: 161.19442859030784
Iteration: 11, Func. Count: 59, Neg. LLF: 161.1891297754561
Iteration: 12, Func. Count: 64, Neg. LLF: 161.1888195728997
Iteration: 13, Func. Count: 69, Neg. LLF: 161.18880140246137
Iteration: 14, Func. Count: 74, Neg. LLF: 161.18880082780782
Optimization terminated successfully (Exit mode 0)
Current function value: 161.18880082780782
Iterations: 14
Function evaluations: 74
Gradient evaluations: 14
Iteration: 1, Func. Count: 7, Neg. LLF: 174.1518084679608
Iteration: 2, Func. Count: 14, Neg. LLF: 160.2905815375998
Iteration: 3, Func. Count: 20, Neg. LLF: 166.0250181882765
Iteration: 4, Func. Count: 27, Neg. LLF: 161.29663174950196
Iteration: 5, Func. Count: 34, Neg. LLF: 169.01721672357525
Iteration: 6, Func. Count: 42, Neg. LLF: 159.8106236752012
Iteration: 7, Func. Count: 48, Neg. LLF: 159.79312656874865
Iteration: 8, Func. Count: 54, Neg. LLF: 159.78167773786393
Iteration: 9, Func. Count: 60, Neg. LLF: 159.73472529554385
Iteration: 10, Func. Count: 66, Neg. LLF: 159.69069383570235
Iteration: 11, Func. Count: 72, Neg. LLF: 159.6883080608452
Iteration: 12, Func. Count: 78, Neg. LLF: 159.68813277557066
Iteration: 13, Func. Count: 84, Neg. LLF: 159.68812587605623
Iteration: 14, Func. Count: 89, Neg. LLF: 159.68812582467456
Optimization terminated successfully (Exit mode 0)
Current function value: 159.68812587605623
Iterations: 14
Function evaluations: 89
Gradient evaluations: 14
Iteration: 1, Func. Count: 8, Neg. LLF: 170.52968383541568
Iteration: 2, Func. Count: 16, Neg. LLF: 160.37741523885384
Iteration: 3, Func. Count: 23, Neg. LLF: 166.01981876978203
Iteration: 4, Func. Count: 31, Neg. LLF: 159.94104285158275
Iteration: 5, Func. Count: 38, Neg. LLF: 163.6188463855479
Iteration: 6, Func. Count: 47, Neg. LLF: 159.8002502432156
Iteration: 7, Func. Count: 54, Neg. LLF: 159.78774352065338
Iteration: 8, Func. Count: 61, Neg. LLF: 159.76514927884355
Iteration: 9, Func. Count: 68, Neg. LLF: 159.74064098336262
Iteration: 10, Func. Count: 75, Neg. LLF: 159.7127149947369
Iteration: 11, Func. Count: 82, Neg. LLF: 159.6949775138056
Iteration: 12, Func. Count: 89, Neg. LLF: 159.68924214333785
Iteration: 13, Func. Count: 96, Neg. LLF: 159.6882998184355
Iteration: 14, Func. Count: 103, Neg. LLF: 159.6881341778075
Iteration: 15, Func. Count: 110, Neg. LLF: 159.68812743517927
Iteration: 16, Func. Count: 117, Neg. LLF: 159.68812506930323
Iteration: 17, Func. Count: 124, Neg. LLF: 159.68812348137095
Optimization terminated successfully (Exit mode 0)
Current function value: 159.6881250674555
Iterations: 17
Function evaluations: 134
Gradient evaluations: 17
Iteration: 1, Func. Count: 9, Neg. LLF: 167.00426089463912
Iteration: 2, Func. Count: 18, Neg. LLF: 167.02469506998153
Iteration: 3, Func. Count: 27, Neg. LLF: 159.8395284305866
Iteration: 4, Func. Count: 35, Neg. LLF: 160.29436236470488
Iteration: 5, Func. Count: 44, Neg. LLF: 159.70602719262405
Iteration: 6, Func. Count: 52, Neg. LLF: 159.84231340456367
Iteration: 7, Func. Count: 61, Neg. LLF: 159.6649380668656
Iteration: 8, Func. Count: 69, Neg. LLF: 159.66399480428208
Iteration: 9, Func. Count: 77, Neg. LLF: 159.663900069651
Iteration: 10, Func. Count: 85, Neg. LLF: 159.66384336888396
Iteration: 11, Func. Count: 93, Neg. LLF: 159.66383471808152
Iteration: 12, Func. Count: 100, Neg. LLF: 159.66383461168752
Optimization terminated successfully (Exit mode 0)
Current function value: 159.66383471808152
Iterations: 12
Function evaluations: 100
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 170.31291788314985
Iteration: 2, Func. Count: 20, Neg. LLF: 161.95508681927924
Iteration: 3, Func. Count: 30, Neg. LLF: 159.0626961083784
Iteration: 4, Func. Count: 39, Neg. LLF: 158.9654905732421
Iteration: 5, Func. Count: 48, Neg. LLF: 159.10099251249804
Iteration: 6, Func. Count: 58, Neg. LLF: 158.85774903720218
Iteration: 7, Func. Count: 67, Neg. LLF: 158.74065008808543
Iteration: 8, Func. Count: 76, Neg. LLF: 158.43971440556717
Iteration: 9, Func. Count: 85, Neg. LLF: 158.24760983526528
Iteration: 10, Func. Count: 94, Neg. LLF: 158.12885509765337
Iteration: 11, Func. Count: 103, Neg. LLF: 158.08960979354578
Iteration: 12, Func. Count: 112, Neg. LLF: 158.08908200440274
Iteration: 13, Func. Count: 121, Neg. LLF: 158.0889868305297
Iteration: 14, Func. Count: 130, Neg. LLF: 158.0889306572789
Iteration: 15, Func. Count: 139, Neg. LLF: 158.08893004789434
Optimization terminated successfully (Exit mode 0)
Current function value: 158.08893004789434
Iterations: 15
Function evaluations: 139
Gradient evaluations: 15
Iteration: 1, Func. Count: 7, Neg. LLF: 161.01903301904164
Iteration: 2, Func. Count: 13, Neg. LLF: 161.8883251013727
Iteration: 3, Func. Count: 20, Neg. LLF: 156.96062482844886
Iteration: 4, Func. Count: 26, Neg. LLF: 156.90618176941842
Iteration: 5, Func. Count: 32, Neg. LLF: 156.88370913242304
Iteration: 6, Func. Count: 38, Neg. LLF: 156.85328628907965
Iteration: 7, Func. Count: 44, Neg. LLF: 156.70833166948572
Iteration: 8, Func. Count: 50, Neg. LLF: 156.66528329330083
Iteration: 9, Func. Count: 56, Neg. LLF: 156.65809326977137
Iteration: 10, Func. Count: 62, Neg. LLF: 156.65791511755302
Iteration: 11, Func. Count: 68, Neg. LLF: 156.65791379104718
Iteration: 12, Func. Count: 73, Neg. LLF: 156.6579137688911
Optimization terminated successfully (Exit mode 0)
Current function value: 156.65791379104718
Iterations: 12
Function evaluations: 73
Gradient evaluations: 12
Iteration: 1, Func. Count: 8, Neg. LLF: 174.15715269921725
Iteration: 2, Func. Count: 16, Neg. LLF: 159.77201844047028
Iteration: 3, Func. Count: 23, Neg. LLF: 159.7572590838269
Iteration: 4, Func. Count: 31, Neg. LLF: 158.64477561777045
Iteration: 5, Func. Count: 39, Neg. LLF: 156.99442646761523
Iteration: 6, Func. Count: 46, Neg. LLF: 156.82292089872553
Iteration: 7, Func. Count: 53, Neg. LLF: 156.7539358485907
Iteration: 8, Func. Count: 60, Neg. LLF: 156.74249182784558
Iteration: 9, Func. Count: 67, Neg. LLF: 156.73385769798045
Iteration: 10, Func. Count: 74, Neg. LLF: 156.71630325284474
Iteration: 11, Func. Count: 81, Neg. LLF: 156.68805770636396
Iteration: 12, Func. Count: 88, Neg. LLF: 156.6673612049318
Iteration: 13, Func. Count: 95, Neg. LLF: 156.65906281478695
Iteration: 14, Func. Count: 102, Neg. LLF: 156.65797108876032
Iteration: 15, Func. Count: 109, Neg. LLF: 156.65791664243417
Iteration: 16, Func. Count: 116, Neg. LLF: 156.65791375191858
Iteration: 17, Func. Count: 122, Neg. LLF: 156.65791376131622
Optimization terminated successfully (Exit mode 0)
Current function value: 156.65791375191858
Iterations: 17
Function evaluations: 122
Gradient evaluations: 17
Iteration: 1, Func. Count: 9, Neg. LLF: 170.32449193696766
Iteration: 2, Func. Count: 18, Neg. LLF: 157.08831107397452
Iteration: 3, Func. Count: 26, Neg. LLF: 158.35446076373373
Iteration: 4, Func. Count: 35, Neg. LLF: 158.44702605760833
Iteration: 5, Func. Count: 44, Neg. LLF: 157.2503642858627
Iteration: 6, Func. Count: 53, Neg. LLF: 156.97187201416708
Iteration: 7, Func. Count: 61, Neg. LLF: 156.87608787611612
Iteration: 8, Func. Count: 69, Neg. LLF: 156.72491723684544
Iteration: 9, Func. Count: 77, Neg. LLF: 156.66266675249042
Iteration: 10, Func. Count: 85, Neg. LLF: 156.6580380801924
Iteration: 11, Func. Count: 93, Neg. LLF: 156.65791512904215
Iteration: 12, Func. Count: 101, Neg. LLF: 156.65791374919664
Iteration: 13, Func. Count: 108, Neg. LLF: 156.6579137695994
Optimization terminated successfully (Exit mode 0)
Current function value: 156.65791374919664
Iterations: 13
Function evaluations: 108
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 166.96188733712
Iteration: 2, Func. Count: 20, Neg. LLF: 157.2477583648467
Iteration: 3, Func. Count: 29, Neg. LLF: 159.13062904629987
Iteration: 4, Func. Count: 39, Neg. LLF: 159.04074541487077
Iteration: 5, Func. Count: 49, Neg. LLF: 157.6869452026783
Iteration: 6, Func. Count: 60, Neg. LLF: 157.05843123215013
Iteration: 7, Func. Count: 69, Neg. LLF: 156.95882574170682
Iteration: 8, Func. Count: 78, Neg. LLF: 156.81983102648644
Iteration: 9, Func. Count: 87, Neg. LLF: 156.6858380888524
Iteration: 10, Func. Count: 96, Neg. LLF: 156.65989837342676
Iteration: 11, Func. Count: 105, Neg. LLF: 156.65793864891054
Iteration: 12, Func. Count: 114, Neg. LLF: 156.65791375916814
Iteration: 13, Func. Count: 122, Neg. LLF: 156.6579137645736
Optimization terminated successfully (Exit mode 0)
Current function value: 156.65791375916814
Iterations: 13
Function evaluations: 122
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 157.21928160631649
Iteration: 2, Func. Count: 21, Neg. LLF: 159.06121821927167
Iteration: 3, Func. Count: 32, Neg. LLF: 156.97820873577916
Iteration: 4, Func. Count: 43, Neg. LLF: 157.08355281155661
Iteration: 5, Func. Count: 54, Neg. LLF: 156.22415429177136
Iteration: 6, Func. Count: 64, Neg. LLF: 156.1748568103253
Iteration: 7, Func. Count: 74, Neg. LLF: 156.14117169015427
Iteration: 8, Func. Count: 84, Neg. LLF: 156.03283486713315
Iteration: 9, Func. Count: 94, Neg. LLF: 155.87491954745155
Iteration: 10, Func. Count: 104, Neg. LLF: 156.03863931198185
Iteration: 11, Func. Count: 115, Neg. LLF: 155.57201544416344
Iteration: 12, Func. Count: 125, Neg. LLF: 155.50245846133433
Iteration: 13, Func. Count: 135, Neg. LLF: 155.48668393248045
Iteration: 14, Func. Count: 145, Neg. LLF: 155.4854931714741
Iteration: 15, Func. Count: 155, Neg. LLF: 155.48545138199577
Iteration: 16, Func. Count: 164, Neg. LLF: 155.48545125140836
Optimization terminated successfully (Exit mode 0)
Current function value: 155.48545138199577
Iterations: 16
Function evaluations: 164
Gradient evaluations: 16
Iteration: 1, Func. Count: 8, Neg. LLF: 160.33282332751608
Iteration: 2, Func. Count: 15, Neg. LLF: 163.40285221802972
Iteration: 3, Func. Count: 23, Neg. LLF: 156.95689980025924
Iteration: 4, Func. Count: 30, Neg. LLF: 156.91172836485367
Iteration: 5, Func. Count: 37, Neg. LLF: 156.8879152785216
Iteration: 6, Func. Count: 44, Neg. LLF: 156.84928942169185
Iteration: 7, Func. Count: 51, Neg. LLF: 156.7024657065765
Iteration: 8, Func. Count: 58, Neg. LLF: 156.66381781867204
Iteration: 9, Func. Count: 65, Neg. LLF: 156.65799119580933
Iteration: 10, Func. Count: 72, Neg. LLF: 156.65791696619434
Iteration: 11, Func. Count: 79, Neg. LLF: 156.65791374515712
Iteration: 12, Func. Count: 85, Neg. LLF: 156.65791375650002
Optimization terminated successfully (Exit mode 0)
Current function value: 156.65791374515712
Iterations: 12
Function evaluations: 85
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 174.17998856581724
Iteration: 2, Func. Count: 18, Neg. LLF: 159.79530688183004
Iteration: 3, Func. Count: 26, Neg. LLF: 159.73957892623343
Iteration: 4, Func. Count: 35, Neg. LLF: 158.51386448900044
Iteration: 5, Func. Count: 43, Neg. LLF: 157.83607441186928
Iteration: 6, Func. Count: 52, Neg. LLF: 156.8060532221632
Iteration: 7, Func. Count: 60, Neg. LLF: 156.74198683407212
Iteration: 8, Func. Count: 68, Neg. LLF: 156.73230202590904
Iteration: 9, Func. Count: 76, Neg. LLF: 156.7195001067009
Iteration: 10, Func. Count: 84, Neg. LLF: 156.70315567243873
Iteration: 11, Func. Count: 92, Neg. LLF: 156.67696043885744
Iteration: 12, Func. Count: 100, Neg. LLF: 156.66193092859757
Iteration: 13, Func. Count: 108, Neg. LLF: 156.65829508279487
Iteration: 14, Func. Count: 116, Neg. LLF: 156.6579368355942
Iteration: 15, Func. Count: 124, Neg. LLF: 156.65791440011654
Iteration: 16, Func. Count: 132, Neg. LLF: 156.65791373086262
Optimization terminated successfully (Exit mode 0)
Current function value: 156.65791373086262
Iterations: 16
Function evaluations: 132
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 170.35930498552733
Iteration: 2, Func. Count: 20, Neg. LLF: 157.10577367408675
Iteration: 3, Func. Count: 29, Neg. LLF: 158.61375178444175
Iteration: 4, Func. Count: 39, Neg. LLF: 158.80666994314328
Iteration: 5, Func. Count: 49, Neg. LLF: 157.19360942863207
Iteration: 6, Func. Count: 59, Neg. LLF: 156.97134881278566
Iteration: 7, Func. Count: 68, Neg. LLF: 156.8794041236949
Iteration: 8, Func. Count: 77, Neg. LLF: 156.73406379711244
Iteration: 9, Func. Count: 86, Neg. LLF: 156.66326755315163
Iteration: 10, Func. Count: 95, Neg. LLF: 156.65811257710638
Iteration: 11, Func. Count: 104, Neg. LLF: 156.65791443873184
Iteration: 12, Func. Count: 113, Neg. LLF: 156.65791372672106
Optimization terminated successfully (Exit mode 0)
Current function value: 156.65791372672106
Iterations: 12
Function evaluations: 113
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 166.81210464691702
Iteration: 2, Func. Count: 22, Neg. LLF: 157.24567578804857
Iteration: 3, Func. Count: 32, Neg. LLF: 159.17120505440892
Iteration: 4, Func. Count: 43, Neg. LLF: 159.83546223765404
Iteration: 5, Func. Count: 55, Neg. LLF: 157.2380919443665
Iteration: 6, Func. Count: 66, Neg. LLF: 157.01500022588152
Iteration: 7, Func. Count: 76, Neg. LLF: 156.84890296745132
Iteration: 8, Func. Count: 86, Neg. LLF: 156.67182724149794
Iteration: 9, Func. Count: 96, Neg. LLF: 156.65823836239457
Iteration: 10, Func. Count: 106, Neg. LLF: 156.65792894754225
Iteration: 11, Func. Count: 116, Neg. LLF: 156.65791417616455
Iteration: 12, Func. Count: 125, Neg. LLF: 156.6579141815008
Optimization terminated successfully (Exit mode 0)
Current function value: 156.65791417616455
Iterations: 12
Function evaluations: 125
Gradient evaluations: 12
Iteration: 1, Func. Count: 12, Neg. LLF: 158.2302493467217
Iteration: 2, Func. Count: 23, Neg. LLF: 160.22100416979717
Iteration: 3, Func. Count: 36, Neg. LLF: 159.7688255516663
Iteration: 4, Func. Count: 48, Neg. LLF: 156.36227365436724
Iteration: 5, Func. Count: 59, Neg. LLF: 156.1844959953574
Iteration: 6, Func. Count: 70, Neg. LLF: 156.1702037648591
Iteration: 7, Func. Count: 81, Neg. LLF: 156.13825193653804
Iteration: 8, Func. Count: 92, Neg. LLF: 155.91870885553948
Iteration: 9, Func. Count: 103, Neg. LLF: 158.78922286294898
Iteration: 10, Func. Count: 115, Neg. LLF: 158.36091372609792
Iteration: 11, Func. Count: 127, Neg. LLF: 157.41724251572552
Iteration: 12, Func. Count: 139, Neg. LLF: 155.6086423245944
Iteration: 13, Func. Count: 151, Neg. LLF: 155.48977848948945
Iteration: 14, Func. Count: 162, Neg. LLF: 155.48612090179697
Iteration: 15, Func. Count: 173, Neg. LLF: 155.48551966444944
Iteration: 16, Func. Count: 184, Neg. LLF: 155.48546374197696
Iteration: 17, Func. Count: 195, Neg. LLF: 155.48545124749003
Iteration: 18, Func. Count: 205, Neg. LLF: 155.4854511168938
Optimization terminated successfully (Exit mode 0)
Current function value: 155.48545124749003
Iterations: 18
Function evaluations: 205
Gradient evaluations: 18
Iteration: 1, Func. Count: 9, Neg. LLF: 159.64012405349504
Iteration: 2, Func. Count: 17, Neg. LLF: 164.2310475196643
Iteration: 3, Func. Count: 26, Neg. LLF: 156.95638732672703
Iteration: 4, Func. Count: 34, Neg. LLF: 156.9157097950925
Iteration: 5, Func. Count: 42, Neg. LLF: 156.8895100374374
Iteration: 6, Func. Count: 50, Neg. LLF: 156.84586042999823
Iteration: 7, Func. Count: 58, Neg. LLF: 156.70711118712055
Iteration: 8, Func. Count: 66, Neg. LLF: 156.664462406597
Iteration: 9, Func. Count: 74, Neg. LLF: 156.6579735914507
Iteration: 10, Func. Count: 82, Neg. LLF: 156.65791522694587
Iteration: 11, Func. Count: 90, Neg. LLF: 156.657913755884
Iteration: 12, Func. Count: 97, Neg. LLF: 156.6579137695203
Optimization terminated successfully (Exit mode 0)
Current function value: 156.657913755884
Iterations: 12
Function evaluations: 97
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 174.17180586244237
Iteration: 2, Func. Count: 20, Neg. LLF: 159.95528639199867
Iteration: 3, Func. Count: 29, Neg. LLF: 159.71264489338571
Iteration: 4, Func. Count: 39, Neg. LLF: 158.50096292857882
Iteration: 5, Func. Count: 48, Neg. LLF: 157.79095126920924
Iteration: 6, Func. Count: 58, Neg. LLF: 156.7881760319867
Iteration: 7, Func. Count: 67, Neg. LLF: 156.7404962091002
Iteration: 8, Func. Count: 76, Neg. LLF: 156.72994920205167
Iteration: 9, Func. Count: 85, Neg. LLF: 156.7195410210896
Iteration: 10, Func. Count: 94, Neg. LLF: 156.69919258554305
Iteration: 11, Func. Count: 103, Neg. LLF: 156.6742683071505
Iteration: 12, Func. Count: 112, Neg. LLF: 156.66077100242043
Iteration: 13, Func. Count: 121, Neg. LLF: 156.65817491810137
Iteration: 14, Func. Count: 130, Neg. LLF: 156.65792817819457
Iteration: 15, Func. Count: 139, Neg. LLF: 156.65791409733245
Iteration: 16, Func. Count: 147, Neg. LLF: 156.65791410681396
Optimization terminated successfully (Exit mode 0)
Current function value: 156.65791409733245
Iterations: 16
Function evaluations: 147
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 170.33854671389315
Iteration: 2, Func. Count: 22, Neg. LLF: 157.10213640207584
Iteration: 3, Func. Count: 32, Neg. LLF: 158.5948952570613
Iteration: 4, Func. Count: 43, Neg. LLF: 158.756688297896
Iteration: 5, Func. Count: 54, Neg. LLF: 157.18637789709965
Iteration: 6, Func. Count: 65, Neg. LLF: 156.96991138404607
Iteration: 7, Func. Count: 75, Neg. LLF: 156.87703013035465
Iteration: 8, Func. Count: 85, Neg. LLF: 156.73078006178002
Iteration: 9, Func. Count: 95, Neg. LLF: 156.6630149847266
Iteration: 10, Func. Count: 105, Neg. LLF: 156.65809581244147
Iteration: 11, Func. Count: 115, Neg. LLF: 156.65791434872006
Iteration: 12, Func. Count: 125, Neg. LLF: 156.65791372647936
Optimization terminated successfully (Exit mode 0)
Current function value: 156.65791372647936
Iterations: 12
Function evaluations: 125
Gradient evaluations: 12
Iteration: 1, Func. Count: 12, Neg. LLF: 166.86068441315186
Iteration: 2, Func. Count: 24, Neg. LLF: 157.26914287706006
Iteration: 3, Func. Count: 35, Neg. LLF: 159.23324479986798
Iteration: 4, Func. Count: 47, Neg. LLF: 159.86010678751063
Iteration: 5, Func. Count: 60, Neg. LLF: 157.22807641871594
Iteration: 6, Func. Count: 72, Neg. LLF: 157.01312016764092
Iteration: 7, Func. Count: 83, Neg. LLF: 156.83525840834844
Iteration: 8, Func. Count: 94, Neg. LLF: 156.67143974367343
Iteration: 9, Func. Count: 105, Neg. LLF: 156.65814599679288
Iteration: 10, Func. Count: 116, Neg. LLF: 156.6579172972564
Iteration: 11, Func. Count: 127, Neg. LLF: 156.65791400945886
Iteration: 12, Func. Count: 137, Neg. LLF: 156.65791401482048
Optimization terminated successfully (Exit mode 0)
Current function value: 156.65791400945886
Iterations: 12
Function evaluations: 137
Gradient evaluations: 12
Iteration: 1, Func. Count: 13, Neg. LLF: 158.22974793955885
Iteration: 2, Func. Count: 25, Neg. LLF: 160.1764892828474
Iteration: 3, Func. Count: 39, Neg. LLF: 159.51622708865142
Iteration: 4, Func. Count: 52, Neg. LLF: 156.34556778219468
Iteration: 5, Func. Count: 64, Neg. LLF: 156.18577849647855
Iteration: 6, Func. Count: 76, Neg. LLF: 156.1713132753464
Iteration: 7, Func. Count: 88, Neg. LLF: 156.13961483731546
Iteration: 8, Func. Count: 100, Neg. LLF: 155.93070978302944
Iteration: 9, Func. Count: 112, Neg. LLF: 156.68794314025715
Iteration: 10, Func. Count: 125, Neg. LLF: 156.61081766170776
Iteration: 11, Func. Count: 138, Neg. LLF: 155.6166776399972
Iteration: 12, Func. Count: 150, Neg. LLF: 155.49803507779785
Iteration: 13, Func. Count: 162, Neg. LLF: 155.48672551228643
Iteration: 14, Func. Count: 174, Neg. LLF: 155.48563867922007
Iteration: 15, Func. Count: 186, Neg. LLF: 155.48548118055535
Iteration: 16, Func. Count: 198, Neg. LLF: 155.48545159847686
Iteration: 17, Func. Count: 209, Neg. LLF: 155.4854514679408
Optimization terminated successfully (Exit mode 0)
Current function value: 155.48545159847686
Iterations: 17
Function evaluations: 209
Gradient evaluations: 17
Iteration: 1, Func. Count: 6, Neg. LLF: 163.33478884123164
Iteration: 2, Func. Count: 11, Neg. LLF: 164.4355737205573
Iteration: 3, Func. Count: 17, Neg. LLF: 162.40391944602356
Iteration: 4, Func. Count: 22, Neg. LLF: 162.40369492264833
Iteration: 5, Func. Count: 27, Neg. LLF: 162.40355977081614
Iteration: 6, Func. Count: 32, Neg. LLF: 162.40304264287997
Iteration: 7, Func. Count: 37, Neg. LLF: 162.40266130408776
Iteration: 8, Func. Count: 42, Neg. LLF: 162.4024777827808
Iteration: 9, Func. Count: 47, Neg. LLF: 162.4024546280935
Iteration: 10, Func. Count: 52, Neg. LLF: 162.40245370557722
Optimization terminated successfully (Exit mode 0)
Current function value: 162.40245370557722
Iterations: 10
Function evaluations: 52
Gradient evaluations: 10
Iteration: 1, Func. Count: 7, Neg. LLF: 173.87398426054966
Iteration: 2, Func. Count: 14, Neg. LLF: 161.0297149987975
Iteration: 3, Func. Count: 20, Neg. LLF: 160.35330449979605
Iteration: 4, Func. Count: 26, Neg. LLF: 160.41870044266625
Iteration: 5, Func. Count: 33, Neg. LLF: 160.04181746189707
Iteration: 6, Func. Count: 39, Neg. LLF: 160.05191030204458
Iteration: 7, Func. Count: 46, Neg. LLF: 160.0245011026556
Iteration: 8, Func. Count: 52, Neg. LLF: 160.02418548900565
Iteration: 9, Func. Count: 57, Neg. LLF: 160.02418556185745
Optimization terminated successfully (Exit mode 0)
Current function value: 160.02418548900565
Iterations: 9
Function evaluations: 57
Gradient evaluations: 9
Iteration: 1, Func. Count: 8, Neg. LLF: 169.06718713729336
Iteration: 2, Func. Count: 16, Neg. LLF: 160.30233666849963
Iteration: 3, Func. Count: 23, Neg. LLF: 160.21847768426582
Iteration: 4, Func. Count: 30, Neg. LLF: 161.91679706982674
Iteration: 5, Func. Count: 39, Neg. LLF: 160.1496325871014
Iteration: 6, Func. Count: 47, Neg. LLF: 160.0807420536514
Iteration: 7, Func. Count: 54, Neg. LLF: 160.07686521553745
Iteration: 8, Func. Count: 61, Neg. LLF: 160.0739809430604
Iteration: 9, Func. Count: 68, Neg. LLF: 160.06843774886647
Iteration: 10, Func. Count: 75, Neg. LLF: 160.06439443751452
Iteration: 11, Func. Count: 82, Neg. LLF: 160.05466824217842
Iteration: 12, Func. Count: 89, Neg. LLF: 160.02419015196352
Iteration: 13, Func. Count: 96, Neg. LLF: 160.0242825703134
Iteration: 14, Func. Count: 103, Neg. LLF: 160.0241854294181
Optimization terminated successfully (Exit mode 0)
Current function value: 160.02418550134053
Iterations: 15
Function evaluations: 103
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 167.605099049517
Iteration: 2, Func. Count: 18, Neg. LLF: 160.13020350471308
Iteration: 3, Func. Count: 26, Neg. LLF: 160.1150505002466
Iteration: 4, Func. Count: 34, Neg. LLF: 160.09182084906408
Iteration: 5, Func. Count: 42, Neg. LLF: 160.09308523724212
Iteration: 6, Func. Count: 51, Neg. LLF: 160.0886126403287
Iteration: 7, Func. Count: 60, Neg. LLF: 160.08830670979418
Iteration: 8, Func. Count: 68, Neg. LLF: 160.08830554559606
Iteration: 9, Func. Count: 75, Neg. LLF: 160.08830551290546
Optimization terminated successfully (Exit mode 0)
Current function value: 160.08830554559606
Iterations: 9
Function evaluations: 75
Gradient evaluations: 9
Iteration: 1, Func. Count: 10, Neg. LLF: 168.4654066823695
Iteration: 2, Func. Count: 20, Neg. LLF: 160.16905844731448
Iteration: 3, Func. Count: 29, Neg. LLF: 160.15966948697087
Iteration: 4, Func. Count: 38, Neg. LLF: 160.1508209857884
Iteration: 5, Func. Count: 47, Neg. LLF: 160.12470646565285
Iteration: 6, Func. Count: 56, Neg. LLF: 160.08913441218138
Iteration: 7, Func. Count: 65, Neg. LLF: 160.07879813436242
Iteration: 8, Func. Count: 74, Neg. LLF: 160.06684341056166
Iteration: 9, Func. Count: 83, Neg. LLF: 160.06582989260858
Iteration: 10, Func. Count: 92, Neg. LLF: 160.06028071994197
Iteration: 11, Func. Count: 101, Neg. LLF: 160.02855875664773
Iteration: 12, Func. Count: 110, Neg. LLF: 160.0260642734332
Iteration: 13, Func. Count: 119, Neg. LLF: 160.0242112050032
Iteration: 14, Func. Count: 128, Neg. LLF: 160.02421520773711
Iteration: 15, Func. Count: 138, Neg. LLF: 160.02469230278186
Iteration: 16, Func. Count: 147, Neg. LLF: 160.02418538213308
Optimization terminated successfully (Exit mode 0)
Current function value: 160.024185447928
Iterations: 17
Function evaluations: 147
Gradient evaluations: 16
Iteration: 1, Func. Count: 7, Neg. LLF: 165.84124492487365
Iteration: 2, Func. Count: 14, Neg. LLF: 162.40438150363943
Iteration: 3, Func. Count: 21, Neg. LLF: 161.84097493329435
Iteration: 4, Func. Count: 27, Neg. LLF: 161.7352203130406
Iteration: 5, Func. Count: 33, Neg. LLF: 162.48001069224898
Iteration: 6, Func. Count: 41, Neg. LLF: 161.60644521365128
Iteration: 7, Func. Count: 47, Neg. LLF: 161.67736586404655
Iteration: 8, Func. Count: 56, Neg. LLF: 161.490697123948
Iteration: 9, Func. Count: 62, Neg. LLF: 161.4399954812791
Iteration: 10, Func. Count: 68, Neg. LLF: 161.37291571091174
Iteration: 11, Func. Count: 74, Neg. LLF: 161.28543333915698
Iteration: 12, Func. Count: 80, Neg. LLF: 161.20609637567526
Iteration: 13, Func. Count: 86, Neg. LLF: 161.19117221096067
Iteration: 14, Func. Count: 92, Neg. LLF: 161.1888974570586
Iteration: 15, Func. Count: 98, Neg. LLF: 161.18881298849746
Iteration: 16, Func. Count: 104, Neg. LLF: 161.1888014874675
Iteration: 17, Func. Count: 109, Neg. LLF: 161.188801484532
Optimization terminated successfully (Exit mode 0)
Current function value: 161.1888014874675
Iterations: 17
Function evaluations: 109
Gradient evaluations: 17
Iteration: 1, Func. Count: 8, Neg. LLF: 174.13617205580493
Iteration: 2, Func. Count: 16, Neg. LLF: 160.22209702090717
Iteration: 3, Func. Count: 23, Neg. LLF: 165.216740571494
Iteration: 4, Func. Count: 31, Neg. LLF: 162.61682150946882
Iteration: 5, Func. Count: 39, Neg. LLF: 163.56050030478156
Iteration: 6, Func. Count: 48, Neg. LLF: 162.22276636431155
Iteration: 7, Func. Count: 57, Neg. LLF: 160.47332253122215
Iteration: 8, Func. Count: 65, Neg. LLF: 159.69253530421122
Iteration: 9, Func. Count: 72, Neg. LLF: 159.6748404854461
Iteration: 10, Func. Count: 79, Neg. LLF: 159.67142955823098
Iteration: 11, Func. Count: 86, Neg. LLF: 159.6628125107331
Iteration: 12, Func. Count: 93, Neg. LLF: 159.6523975690075
Iteration: 13, Func. Count: 100, Neg. LLF: 159.63992377898148
Iteration: 14, Func. Count: 107, Neg. LLF: 159.6344010309191
Iteration: 15, Func. Count: 114, Neg. LLF: 159.63355034352978
Iteration: 16, Func. Count: 121, Neg. LLF: 159.63350762255203
Iteration: 17, Func. Count: 128, Neg. LLF: 159.6335051874084
Iteration: 18, Func. Count: 135, Neg. LLF: 159.6335046110782
Optimization terminated successfully (Exit mode 0)
Current function value: 159.6335046110782
Iterations: 18
Function evaluations: 135
Gradient evaluations: 18
Iteration: 1, Func. Count: 9, Neg. LLF: 169.43453700475987
Iteration: 2, Func. Count: 18, Neg. LLF: 165.6265068456543
Iteration: 3, Func. Count: 28, Neg. LLF: 159.8428982906614
Iteration: 4, Func. Count: 36, Neg. LLF: 159.80563076124804
Iteration: 5, Func. Count: 44, Neg. LLF: 159.76012881707322
Iteration: 6, Func. Count: 52, Neg. LLF: 159.69057698264248
Iteration: 7, Func. Count: 60, Neg. LLF: 159.67959712207994
Iteration: 8, Func. Count: 68, Neg. LLF: 159.67109443932335
Iteration: 9, Func. Count: 76, Neg. LLF: 159.66952586961105
Iteration: 10, Func. Count: 84, Neg. LLF: 159.669107885426
Iteration: 11, Func. Count: 92, Neg. LLF: 159.68179513771392
Iteration: 12, Func. Count: 102, Neg. LLF: 159.66940786378674
Iteration: 13, Func. Count: 110, Neg. LLF: 159.669407149768
Optimization terminated successfully (Exit mode 0)
Current function value: 159.669407149768
Iterations: 14
Function evaluations: 110
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 167.8915770714236
Iteration: 2, Func. Count: 20, Neg. LLF: 165.9130116711238
Iteration: 3, Func. Count: 31, Neg. LLF: 159.94947237862172
Iteration: 4, Func. Count: 40, Neg. LLF: 159.74623714271038
Iteration: 5, Func. Count: 49, Neg. LLF: 159.67004090075642
Iteration: 6, Func. Count: 58, Neg. LLF: 159.6676692622654
Iteration: 7, Func. Count: 67, Neg. LLF: 159.66460910394946
Iteration: 8, Func. Count: 76, Neg. LLF: 159.6639446694945
Iteration: 9, Func. Count: 85, Neg. LLF: 159.6638479174328
Iteration: 10, Func. Count: 94, Neg. LLF: 159.6638394246273
Iteration: 11, Func. Count: 103, Neg. LLF: 159.66383518650773
Iteration: 12, Func. Count: 112, Neg. LLF: 159.66383449357554
Optimization terminated successfully (Exit mode 0)
Current function value: 159.66383449357554
Iterations: 12
Function evaluations: 112
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 170.82728164478266
Iteration: 2, Func. Count: 22, Neg. LLF: 160.8349439187582
Iteration: 3, Func. Count: 32, Neg. LLF: 159.33440312504052
Iteration: 4, Func. Count: 42, Neg. LLF: 160.78087151432433
Iteration: 5, Func. Count: 54, Neg. LLF: 158.93374257187102
Iteration: 6, Func. Count: 64, Neg. LLF: 158.8397747040473
Iteration: 7, Func. Count: 74, Neg. LLF: 158.72165150173834
Iteration: 8, Func. Count: 84, Neg. LLF: 158.61249264230233
Iteration: 9, Func. Count: 94, Neg. LLF: 158.39518925349637
Iteration: 10, Func. Count: 104, Neg. LLF: 158.23241243427952
Iteration: 11, Func. Count: 114, Neg. LLF: 158.09902869449425
Iteration: 12, Func. Count: 124, Neg. LLF: 158.09053755198855
Iteration: 13, Func. Count: 134, Neg. LLF: 158.0889801199234
Iteration: 14, Func. Count: 144, Neg. LLF: 158.08893075816874
Iteration: 15, Func. Count: 154, Neg. LLF: 158.08892975660137
Iteration: 16, Func. Count: 164, Neg. LLF: 158.0889784084811
Optimization terminated successfully (Exit mode 0)
Current function value: 158.08892971311374
Iterations: 17
Function evaluations: 166
Gradient evaluations: 16
Iteration: 1, Func. Count: 8, Neg. LLF: 164.8455830217796
Iteration: 2, Func. Count: 16, Neg. LLF: 162.67143876912058
Iteration: 3, Func. Count: 24, Neg. LLF: 157.2196510043336
Iteration: 4, Func. Count: 31, Neg. LLF: 156.9081296138387
Iteration: 5, Func. Count: 38, Neg. LLF: 156.8404932981638
Iteration: 6, Func. Count: 45, Neg. LLF: 156.8188456119505
Iteration: 7, Func. Count: 52, Neg. LLF: 156.8098858009734
Iteration: 8, Func. Count: 59, Neg. LLF: 156.90339759807244
Iteration: 9, Func. Count: 67, Neg. LLF: 156.71333195292107
Iteration: 10, Func. Count: 74, Neg. LLF: 156.6363245440795
Iteration: 11, Func. Count: 81, Neg. LLF: 156.63025843888605
Iteration: 12, Func. Count: 88, Neg. LLF: 156.63003178884406
Iteration: 13, Func. Count: 95, Neg. LLF: 156.6300306370807
Iteration: 14, Func. Count: 101, Neg. LLF: 156.6300306141252
Optimization terminated successfully (Exit mode 0)
Current function value: 156.6300306370807
Iterations: 14
Function evaluations: 101
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 174.14156269067627
Iteration: 2, Func. Count: 18, Neg. LLF: 159.70539798970415
Iteration: 3, Func. Count: 26, Neg. LLF: 159.67881765712553
Iteration: 4, Func. Count: 35, Neg. LLF: 158.69618373628467
Iteration: 5, Func. Count: 44, Neg. LLF: 157.27893382224667
Iteration: 6, Func. Count: 53, Neg. LLF: 163.12826454156763
Iteration: 7, Func. Count: 62, Neg. LLF: 156.80258043157147
Iteration: 8, Func. Count: 70, Neg. LLF: 156.7741819905801
Iteration: 9, Func. Count: 78, Neg. LLF: 156.74723591122984
Iteration: 10, Func. Count: 87, Neg. LLF: 156.68000585000317
Iteration: 11, Func. Count: 95, Neg. LLF: 156.67204787712973
Iteration: 12, Func. Count: 103, Neg. LLF: 156.66727838585746
Iteration: 13, Func. Count: 111, Neg. LLF: 156.65276132383414
Iteration: 14, Func. Count: 119, Neg. LLF: 156.63788022375346
Iteration: 15, Func. Count: 127, Neg. LLF: 156.6310783531557
Iteration: 16, Func. Count: 135, Neg. LLF: 156.63008118703002
Iteration: 17, Func. Count: 143, Neg. LLF: 156.63003247238166
Iteration: 18, Func. Count: 151, Neg. LLF: 156.63003061048872
Iteration: 19, Func. Count: 158, Neg. LLF: 156.63003061737854
Optimization terminated successfully (Exit mode 0)
Current function value: 156.63003061048872
Iterations: 19
Function evaluations: 158
Gradient evaluations: 19
Iteration: 1, Func. Count: 10, Neg. LLF: 169.25964326959624
Iteration: 2, Func. Count: 20, Neg. LLF: 156.98136491956421
Iteration: 3, Func. Count: 29, Neg. LLF: 157.74214451668132
Iteration: 4, Func. Count: 39, Neg. LLF: 157.10755026458708
Iteration: 5, Func. Count: 49, Neg. LLF: 158.21180155545875
Iteration: 6, Func. Count: 61, Neg. LLF: 157.15232165957846
Iteration: 7, Func. Count: 71, Neg. LLF: 156.79225586014198
Iteration: 8, Func. Count: 80, Neg. LLF: 156.7836093177977
Iteration: 9, Func. Count: 90, Neg. LLF: 156.72191229946455
Iteration: 10, Func. Count: 99, Neg. LLF: 156.64142904917145
Iteration: 11, Func. Count: 108, Neg. LLF: 156.63083220695574
Iteration: 12, Func. Count: 117, Neg. LLF: 156.630054407334
Iteration: 13, Func. Count: 126, Neg. LLF: 156.63003234495534
Iteration: 14, Func. Count: 135, Neg. LLF: 156.63003061810787
Iteration: 15, Func. Count: 143, Neg. LLF: 156.63003063979866
Optimization terminated successfully (Exit mode 0)
Current function value: 156.63003061810787
Iterations: 15
Function evaluations: 143
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 167.8363133095561
Iteration: 2, Func. Count: 22, Neg. LLF: 157.18922538903627
Iteration: 3, Func. Count: 32, Neg. LLF: 157.75636056116144
Iteration: 4, Func. Count: 43, Neg. LLF: 160.14542708472973
Iteration: 5, Func. Count: 55, Neg. LLF: 173.9283864464751
Iteration: 6, Func. Count: 67, Neg. LLF: 160.06759749880752
Iteration: 7, Func. Count: 79, Neg. LLF: 156.9296541391396
Iteration: 8, Func. Count: 89, Neg. LLF: 156.809407385855
Iteration: 9, Func. Count: 99, Neg. LLF: 156.75538285037499
Iteration: 10, Func. Count: 109, Neg. LLF: 156.67744143115164
Iteration: 11, Func. Count: 119, Neg. LLF: 156.64229830037326
Iteration: 12, Func. Count: 129, Neg. LLF: 156.63048308871475
Iteration: 13, Func. Count: 139, Neg. LLF: 156.6300543168614
Iteration: 14, Func. Count: 149, Neg. LLF: 156.63003331913845
Iteration: 15, Func. Count: 159, Neg. LLF: 156.63003068908696
Iteration: 16, Func. Count: 168, Neg. LLF: 156.63003069259713
Optimization terminated successfully (Exit mode 0)
Current function value: 156.63003068908696
Iterations: 16
Function evaluations: 168
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 157.38605250548028
Iteration: 2, Func. Count: 23, Neg. LLF: 158.86427763783823
Iteration: 3, Func. Count: 35, Neg. LLF: 156.9676877083406
Iteration: 4, Func. Count: 47, Neg. LLF: 156.59109296638383
Iteration: 5, Func. Count: 59, Neg. LLF: 156.20208374502627
Iteration: 6, Func. Count: 70, Neg. LLF: 156.15893132894325
Iteration: 7, Func. Count: 81, Neg. LLF: 156.12268584755492
Iteration: 8, Func. Count: 92, Neg. LLF: 155.9416989082305
Iteration: 9, Func. Count: 103, Neg. LLF: 161.17503548491814
Iteration: 10, Func. Count: 115, Neg. LLF: 159.19950030892724
Iteration: 11, Func. Count: 127, Neg. LLF: 158.29462822437884
Iteration: 12, Func. Count: 139, Neg. LLF: 156.02446824222423
Iteration: 13, Func. Count: 151, Neg. LLF: 155.50258806282702
Iteration: 14, Func. Count: 162, Neg. LLF: 155.4860911651987
Iteration: 15, Func. Count: 173, Neg. LLF: 155.48546254365095
Iteration: 16, Func. Count: 184, Neg. LLF: 155.48545125404075
Iteration: 17, Func. Count: 194, Neg. LLF: 155.48545112337257
Optimization terminated successfully (Exit mode 0)
Current function value: 155.48545125404075
Iterations: 17
Function evaluations: 194
Gradient evaluations: 17
Iteration: 1, Func. Count: 9, Neg. LLF: 164.10834608631052
Iteration: 2, Func. Count: 18, Neg. LLF: 163.64563903632074
Iteration: 3, Func. Count: 27, Neg. LLF: 157.2305252597973
Iteration: 4, Func. Count: 35, Neg. LLF: 156.93158322073586
Iteration: 5, Func. Count: 43, Neg. LLF: 156.83066564147023
Iteration: 6, Func. Count: 51, Neg. LLF: 156.81917476288746
Iteration: 7, Func. Count: 59, Neg. LLF: 156.80003303670807
Iteration: 8, Func. Count: 67, Neg. LLF: 156.88213536461126
Iteration: 9, Func. Count: 76, Neg. LLF: 156.67999421297608
Iteration: 10, Func. Count: 84, Neg. LLF: 156.6331783346967
Iteration: 11, Func. Count: 92, Neg. LLF: 156.6300791744719
Iteration: 12, Func. Count: 100, Neg. LLF: 156.63003089836457
Iteration: 13, Func. Count: 107, Neg. LLF: 156.63003090832845
Optimization terminated successfully (Exit mode 0)
Current function value: 156.63003089836457
Iterations: 13
Function evaluations: 107
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 174.16419617783365
Iteration: 2, Func. Count: 20, Neg. LLF: 159.72264888199553
Iteration: 3, Func. Count: 29, Neg. LLF: 159.66906630094195
Iteration: 4, Func. Count: 39, Neg. LLF: 158.63096658559203
Iteration: 5, Func. Count: 49, Neg. LLF: 157.2955820316971
Iteration: 6, Func. Count: 59, Neg. LLF: 164.6089777600219
Iteration: 7, Func. Count: 69, Neg. LLF: 156.79850460338747
Iteration: 8, Func. Count: 78, Neg. LLF: 156.7704248961639
Iteration: 9, Func. Count: 87, Neg. LLF: 156.76890305351654
Iteration: 10, Func. Count: 97, Neg. LLF: 156.68937696319296
Iteration: 11, Func. Count: 107, Neg. LLF: 156.67526662447924
Iteration: 12, Func. Count: 116, Neg. LLF: 156.66772103170533
Iteration: 13, Func. Count: 125, Neg. LLF: 156.66254755855994
Iteration: 14, Func. Count: 134, Neg. LLF: 156.63970828357236
Iteration: 15, Func. Count: 143, Neg. LLF: 156.63036376021873
Iteration: 16, Func. Count: 152, Neg. LLF: 156.6300416440134
Iteration: 17, Func. Count: 161, Neg. LLF: 156.63003103424617
Iteration: 18, Func. Count: 169, Neg. LLF: 156.6300310411539
Optimization terminated successfully (Exit mode 0)
Current function value: 156.63003103424617
Iterations: 18
Function evaluations: 169
Gradient evaluations: 18
Iteration: 1, Func. Count: 11, Neg. LLF: 169.29040423307922
Iteration: 2, Func. Count: 22, Neg. LLF: 156.97529058358825
Iteration: 3, Func. Count: 32, Neg. LLF: 157.65643815043256
Iteration: 4, Func. Count: 43, Neg. LLF: 157.1209143362757
Iteration: 5, Func. Count: 54, Neg. LLF: 156.84291440361906
Iteration: 6, Func. Count: 65, Neg. LLF: 157.81919694494067
Iteration: 7, Func. Count: 77, Neg. LLF: 156.787598022909
Iteration: 8, Func. Count: 87, Neg. LLF: 156.69814876653177
Iteration: 9, Func. Count: 97, Neg. LLF: 156.65037607836152
Iteration: 10, Func. Count: 107, Neg. LLF: 156.63112930394632
Iteration: 11, Func. Count: 117, Neg. LLF: 156.63004173358914
Iteration: 12, Func. Count: 127, Neg. LLF: 156.63003066157668
Iteration: 13, Func. Count: 136, Neg. LLF: 156.63003068326225
Optimization terminated successfully (Exit mode 0)
Current function value: 156.63003066157668
Iterations: 13
Function evaluations: 136
Gradient evaluations: 13
Iteration: 1, Func. Count: 12, Neg. LLF: 167.66586919315426
Iteration: 2, Func. Count: 24, Neg. LLF: 157.17183337195047
Iteration: 3, Func. Count: 35, Neg. LLF: 157.70918788118212
Iteration: 4, Func. Count: 47, Neg. LLF: 159.92365444902435
Iteration: 5, Func. Count: 60, Neg. LLF: 170.48223515125804
Iteration: 6, Func. Count: 73, Neg. LLF: 161.53398054412438
Iteration: 7, Func. Count: 86, Neg. LLF: 156.91328354835298
Iteration: 8, Func. Count: 97, Neg. LLF: 156.7905837408068
Iteration: 9, Func. Count: 108, Neg. LLF: 156.73696096399794
Iteration: 10, Func. Count: 119, Neg. LLF: 156.65721571742205
Iteration: 11, Func. Count: 130, Neg. LLF: 156.63518678704614
Iteration: 12, Func. Count: 141, Neg. LLF: 156.63031934082622
Iteration: 13, Func. Count: 152, Neg. LLF: 156.63005542627204
Iteration: 14, Func. Count: 163, Neg. LLF: 156.63003187725818
Iteration: 15, Func. Count: 174, Neg. LLF: 156.63003060803837
Iteration: 16, Func. Count: 184, Neg. LLF: 156.63003061154458
Optimization terminated successfully (Exit mode 0)
Current function value: 156.63003060803837
Iterations: 16
Function evaluations: 184
Gradient evaluations: 16
Iteration: 1, Func. Count: 13, Neg. LLF: 158.23183233373615
Iteration: 2, Func. Count: 25, Neg. LLF: 159.9646956065857
Iteration: 3, Func. Count: 39, Neg. LLF: 157.53590674237566
Iteration: 4, Func. Count: 52, Neg. LLF: 156.23829680746414
Iteration: 5, Func. Count: 64, Neg. LLF: 156.20346721361676
Iteration: 6, Func. Count: 76, Neg. LLF: 156.17739223091917
Iteration: 7, Func. Count: 88, Neg. LLF: 156.14289747465452
Iteration: 8, Func. Count: 100, Neg. LLF: 156.06149113156656
Iteration: 9, Func. Count: 112, Neg. LLF: 155.86354418083005
Iteration: 10, Func. Count: 124, Neg. LLF: 155.73744698215665
Iteration: 11, Func. Count: 136, Neg. LLF: 155.5310028846853
Iteration: 12, Func. Count: 148, Neg. LLF: 155.48926870838804
Iteration: 13, Func. Count: 160, Neg. LLF: 155.48581677421302
Iteration: 14, Func. Count: 172, Neg. LLF: 155.4854567392331
Iteration: 15, Func. Count: 184, Neg. LLF: 155.4854559316726
Iteration: 16, Func. Count: 196, Neg. LLF: 155.48545122430113
Optimization terminated successfully (Exit mode 0)
Current function value: 155.48545135498716
Iterations: 16
Function evaluations: 196
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 163.35777733312534
Iteration: 2, Func. Count: 19, Neg. LLF: 160.42801510303613
Iteration: 3, Func. Count: 28, Neg. LLF: 161.18084860792638
Iteration: 4, Func. Count: 38, Neg. LLF: 157.84146911580132
Iteration: 5, Func. Count: 47, Neg. LLF: 157.11080401742322
Iteration: 6, Func. Count: 56, Neg. LLF: 156.96232097199137
Iteration: 7, Func. Count: 65, Neg. LLF: 156.88551710030438
Iteration: 8, Func. Count: 74, Neg. LLF: 156.85983418433102
Iteration: 9, Func. Count: 83, Neg. LLF: 156.82988576023166
Iteration: 10, Func. Count: 92, Neg. LLF: 156.79604443732325
Iteration: 11, Func. Count: 101, Neg. LLF: 159.1236651045075
Iteration: 12, Func. Count: 112, Neg. LLF: 157.5603984912894
Iteration: 13, Func. Count: 122, Neg. LLF: 156.63280793075762
Iteration: 14, Func. Count: 131, Neg. LLF: 156.6300845898557
Iteration: 15, Func. Count: 140, Neg. LLF: 156.6300308218559
Iteration: 16, Func. Count: 148, Neg. LLF: 156.6300308376918
Optimization terminated successfully (Exit mode 0)
Current function value: 156.6300308218559
Iterations: 16
Function evaluations: 148
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 174.15608702582014
Iteration: 2, Func. Count: 22, Neg. LLF: 159.90647136834437
Iteration: 3, Func. Count: 32, Neg. LLF: 159.6539666180339
Iteration: 4, Func. Count: 43, Neg. LLF: 158.51359211177203
Iteration: 5, Func. Count: 53, Neg. LLF: 158.09404805830962
Iteration: 6, Func. Count: 64, Neg. LLF: 157.77509631868068
Iteration: 7, Func. Count: 75, Neg. LLF: 156.79447171848187
Iteration: 8, Func. Count: 85, Neg. LLF: 156.74757265665096
Iteration: 9, Func. Count: 95, Neg. LLF: 156.9939263689254
Iteration: 10, Func. Count: 106, Neg. LLF: 156.83192316941083
Iteration: 11, Func. Count: 117, Neg. LLF: 156.67065750184284
Iteration: 12, Func. Count: 127, Neg. LLF: 156.66557832425002
Iteration: 13, Func. Count: 137, Neg. LLF: 156.65872256311573
Iteration: 14, Func. Count: 147, Neg. LLF: 156.65068309887442
Iteration: 15, Func. Count: 157, Neg. LLF: 156.6331043131612
Iteration: 16, Func. Count: 167, Neg. LLF: 156.63026859014016
Iteration: 17, Func. Count: 177, Neg. LLF: 156.63004742898184
Iteration: 18, Func. Count: 187, Neg. LLF: 156.63003108759276
Iteration: 19, Func. Count: 196, Neg. LLF: 156.63003109454755
Optimization terminated successfully (Exit mode 0)
Current function value: 156.63003108759276
Iterations: 19
Function evaluations: 196
Gradient evaluations: 19
Iteration: 1, Func. Count: 12, Neg. LLF: 169.2720086919142
Iteration: 2, Func. Count: 24, Neg. LLF: 156.9734305697319
Iteration: 3, Func. Count: 35, Neg. LLF: 157.6650894920022
Iteration: 4, Func. Count: 47, Neg. LLF: 157.11768672944822
Iteration: 5, Func. Count: 59, Neg. LLF: 156.8422959051541
Iteration: 6, Func. Count: 71, Neg. LLF: 157.82240467864048
Iteration: 7, Func. Count: 84, Neg. LLF: 156.78683687872794
Iteration: 8, Func. Count: 95, Neg. LLF: 156.69913829810233
Iteration: 9, Func. Count: 106, Neg. LLF: 156.65258554044786
Iteration: 10, Func. Count: 117, Neg. LLF: 156.63127326271618
Iteration: 11, Func. Count: 128, Neg. LLF: 156.63004248715666
Iteration: 12, Func. Count: 139, Neg. LLF: 156.63003063951783
Iteration: 13, Func. Count: 149, Neg. LLF: 156.63003066120214
Optimization terminated successfully (Exit mode 0)
Current function value: 156.63003063951783
Iterations: 13
Function evaluations: 149
Gradient evaluations: 13
Iteration: 1, Func. Count: 13, Neg. LLF: 167.72146487267364
Iteration: 2, Func. Count: 26, Neg. LLF: 157.16956940832594
Iteration: 3, Func. Count: 38, Neg. LLF: 157.68977395484808
Iteration: 4, Func. Count: 51, Neg. LLF: 159.8348054634511
Iteration: 5, Func. Count: 65, Neg. LLF: 172.02970348812877
Iteration: 6, Func. Count: 79, Neg. LLF: 161.6059403227319
Iteration: 7, Func. Count: 93, Neg. LLF: 156.91614131546964
Iteration: 8, Func. Count: 105, Neg. LLF: 156.79563598112318
Iteration: 9, Func. Count: 117, Neg. LLF: 156.74258022319503
Iteration: 10, Func. Count: 129, Neg. LLF: 156.666791043023
Iteration: 11, Func. Count: 141, Neg. LLF: 156.63759600380956
Iteration: 12, Func. Count: 153, Neg. LLF: 156.63031907739494
Iteration: 13, Func. Count: 165, Neg. LLF: 156.6300468990233
Iteration: 14, Func. Count: 177, Neg. LLF: 156.63003224009003
Iteration: 15, Func. Count: 189, Neg. LLF: 156.63003067748966
Iteration: 16, Func. Count: 200, Neg. LLF: 156.63003068099525
Optimization terminated successfully (Exit mode 0)
Current function value: 156.63003067748966
Iterations: 16
Function evaluations: 200
Gradient evaluations: 16
Iteration: 1, Func. Count: 14, Neg. LLF: 158.23035006968647
Iteration: 2, Func. Count: 27, Neg. LLF: 159.95886278687803
Iteration: 3, Func. Count: 42, Neg. LLF: 157.46097722970921
Iteration: 4, Func. Count: 56, Neg. LLF: 156.23449597423408
Iteration: 5, Func. Count: 69, Neg. LLF: 156.2121934019374
Iteration: 6, Func. Count: 82, Neg. LLF: 156.17439986284882
Iteration: 7, Func. Count: 95, Neg. LLF: 156.14309685916788
Iteration: 8, Func. Count: 108, Neg. LLF: 156.05008143195616
Iteration: 9, Func. Count: 121, Neg. LLF: 155.84661297096275
Iteration: 10, Func. Count: 134, Neg. LLF: 155.69627900146608
Iteration: 11, Func. Count: 147, Neg. LLF: 155.511010886175
Iteration: 12, Func. Count: 160, Neg. LLF: 155.49612803905552
Iteration: 13, Func. Count: 173, Neg. LLF: 155.4855409688296
Iteration: 14, Func. Count: 186, Neg. LLF: 155.48545222411482
Iteration: 15, Func. Count: 199, Neg. LLF: 155.48545145739217
Optimization terminated successfully (Exit mode 0)
Current function value: 155.48545145739217
Iterations: 15
Function evaluations: 199
Gradient evaluations: 15
Iteration: 1, Func. Count: 7, Neg. LLF: 162.40792333511456
Iteration: 2, Func. Count: 13, Neg. LLF: 162.4251612156397
Iteration: 3, Func. Count: 20, Neg. LLF: 162.4059550845223
Iteration: 4, Func. Count: 26, Neg. LLF: 162.40455796995934
Iteration: 5, Func. Count: 32, Neg. LLF: 162.40245788308377
Iteration: 6, Func. Count: 38, Neg. LLF: 162.4024537035986
Iteration: 7, Func. Count: 43, Neg. LLF: 162.4024539139765
Optimization terminated successfully (Exit mode 0)
Current function value: 162.4024537035986
Iterations: 7
Function evaluations: 43
Gradient evaluations: 7
Iteration: 1, Func. Count: 8, Neg. LLF: 173.85674925318116
Iteration: 2, Func. Count: 16, Neg. LLF: 161.0787429143783
Iteration: 3, Func. Count: 23, Neg. LLF: 160.39943009729134
Iteration: 4, Func. Count: 30, Neg. LLF: 160.4860599815496
Iteration: 5, Func. Count: 38, Neg. LLF: 160.05080012974844
Iteration: 6, Func. Count: 45, Neg. LLF: 160.06595377355723
Iteration: 7, Func. Count: 53, Neg. LLF: 160.02469723810069
Iteration: 8, Func. Count: 60, Neg. LLF: 160.0241856677479
Iteration: 9, Func. Count: 66, Neg. LLF: 160.02418574027544
Optimization terminated successfully (Exit mode 0)
Current function value: 160.0241856677479
Iterations: 9
Function evaluations: 66
Gradient evaluations: 9
Iteration: 1, Func. Count: 9, Neg. LLF: 169.6599528167584
Iteration: 2, Func. Count: 18, Neg. LLF: 160.2779217885535
Iteration: 3, Func. Count: 26, Neg. LLF: 160.2161911046002
Iteration: 4, Func. Count: 34, Neg. LLF: 162.51233454137036
Iteration: 5, Func. Count: 44, Neg. LLF: 160.13905188803488
Iteration: 6, Func. Count: 52, Neg. LLF: 160.0849356321732
Iteration: 7, Func. Count: 60, Neg. LLF: 160.08261849800232
Iteration: 8, Func. Count: 68, Neg. LLF: 160.07991833967483
Iteration: 9, Func. Count: 76, Neg. LLF: 160.07528776947854
Iteration: 10, Func. Count: 84, Neg. LLF: 160.07062395212904
Iteration: 11, Func. Count: 92, Neg. LLF: 160.06640902912594
Iteration: 12, Func. Count: 100, Neg. LLF: 160.06093583453216
Iteration: 13, Func. Count: 108, Neg. LLF: 160.02450569632626
Iteration: 14, Func. Count: 116, Neg. LLF: 160.02427807952296
Iteration: 15, Func. Count: 124, Neg. LLF: 160.02420887077577
Iteration: 16, Func. Count: 132, Neg. LLF: 160.02418573800858
Iteration: 17, Func. Count: 139, Neg. LLF: 160.02418566524508
Optimization terminated successfully (Exit mode 0)
Current function value: 160.02418573800858
Iterations: 17
Function evaluations: 139
Gradient evaluations: 17
Iteration: 1, Func. Count: 10, Neg. LLF: 168.8434719866349
Iteration: 2, Func. Count: 20, Neg. LLF: 160.13925173793766
Iteration: 3, Func. Count: 29, Neg. LLF: 160.21543699818642
Iteration: 4, Func. Count: 39, Neg. LLF: 160.11714137231337
Iteration: 5, Func. Count: 49, Neg. LLF: 160.20143124400008
Iteration: 6, Func. Count: 59, Neg. LLF: 160.09209316140462
Iteration: 7, Func. Count: 69, Neg. LLF: 160.08835121038484
Iteration: 8, Func. Count: 78, Neg. LLF: 160.0883173579082
Iteration: 9, Func. Count: 87, Neg. LLF: 160.08830712156154
Iteration: 10, Func. Count: 96, Neg. LLF: 160.08830559679058
Iteration: 11, Func. Count: 104, Neg. LLF: 160.08830556421893
Optimization terminated successfully (Exit mode 0)
Current function value: 160.08830559679058
Iterations: 11
Function evaluations: 104
Gradient evaluations: 11
Iteration: 1, Func. Count: 11, Neg. LLF: 170.61851464281227
Iteration: 2, Func. Count: 22, Neg. LLF: 161.00018123047823
Iteration: 3, Func. Count: 32, Neg. LLF: 160.98591320557495
Iteration: 4, Func. Count: 42, Neg. LLF: 160.93928507314237
Iteration: 5, Func. Count: 52, Neg. LLF: 160.90008212331588
Iteration: 6, Func. Count: 62, Neg. LLF: 160.81775540646075
Iteration: 7, Func. Count: 72, Neg. LLF: 160.70888508530726
Iteration: 8, Func. Count: 82, Neg. LLF: 160.37216046949837
Iteration: 9, Func. Count: 92, Neg. LLF: 160.14838713910757
Iteration: 10, Func. Count: 102, Neg. LLF: 160.14241411342263
Iteration: 11, Func. Count: 112, Neg. LLF: 160.14034279390145
Iteration: 12, Func. Count: 122, Neg. LLF: 160.13791662669146
Iteration: 13, Func. Count: 132, Neg. LLF: 160.1274194846955
Iteration: 14, Func. Count: 142, Neg. LLF: 160.1251810487109
Iteration: 15, Func. Count: 152, Neg. LLF: 160.1242497610615
Iteration: 16, Func. Count: 162, Neg. LLF: 160.1237248657051
Iteration: 17, Func. Count: 172, Neg. LLF: 160.12372535827026
Optimization terminated successfully (Exit mode 0)
Current function value: 160.12372535827026
Iterations: 17
Function evaluations: 172
Gradient evaluations: 17
Iteration: 1, Func. Count: 8, Neg. LLF: 163.86290465328693
Iteration: 2, Func. Count: 15, Neg. LLF: 162.34032526522532
Iteration: 3, Func. Count: 22, Neg. LLF: 174.2140708295049
Iteration: 4, Func. Count: 30, Neg. LLF: 161.7966474872621
Iteration: 5, Func. Count: 37, Neg. LLF: 162.0140424667943
Iteration: 6, Func. Count: 46, Neg. LLF: 161.76929218681153
Iteration: 7, Func. Count: 53, Neg. LLF: 161.68854940863494
Iteration: 8, Func. Count: 60, Neg. LLF: 161.65882019453534
Iteration: 9, Func. Count: 67, Neg. LLF: 161.6447925785783
Iteration: 10, Func. Count: 74, Neg. LLF: 161.6401513910286
Iteration: 11, Func. Count: 81, Neg. LLF: 161.62826633502235
Iteration: 12, Func. Count: 88, Neg. LLF: 161.55446650634775
Iteration: 13, Func. Count: 95, Neg. LLF: 161.58389891684368
Iteration: 14, Func. Count: 104, Neg. LLF: 161.36016826551372
Iteration: 15, Func. Count: 111, Neg. LLF: 161.23491177905333
Iteration: 16, Func. Count: 118, Neg. LLF: 161.19511054893914
Iteration: 17, Func. Count: 125, Neg. LLF: 161.18895092958053
Iteration: 18, Func. Count: 132, Neg. LLF: 161.1888148506309
Iteration: 19, Func. Count: 139, Neg. LLF: 161.1888020894532
Iteration: 20, Func. Count: 146, Neg. LLF: 161.18880085535082
Iteration: 21, Func. Count: 152, Neg. LLF: 161.18880085240843
Optimization terminated successfully (Exit mode 0)
Current function value: 161.18880085535082
Iterations: 21
Function evaluations: 152
Gradient evaluations: 21
Iteration: 1, Func. Count: 9, Neg. LLF: 174.1173858363319
Iteration: 2, Func. Count: 18, Neg. LLF: 160.44186246125943
Iteration: 3, Func. Count: 26, Neg. LLF: 165.35585462990264
Iteration: 4, Func. Count: 35, Neg. LLF: 164.53520175453633
Iteration: 5, Func. Count: 45, Neg. LLF: 162.68379242418797
Iteration: 6, Func. Count: 56, Neg. LLF: 164.03891768811818
Iteration: 7, Func. Count: 66, Neg. LLF: 170.40413010528192
Iteration: 8, Func. Count: 77, Neg. LLF: 159.41644188467995
Iteration: 9, Func. Count: 85, Neg. LLF: 159.48271071037206
Iteration: 10, Func. Count: 94, Neg. LLF: 159.3568991449894
Iteration: 11, Func. Count: 102, Neg. LLF: 159.35205357130664
Iteration: 12, Func. Count: 110, Neg. LLF: 159.34918116852865
Iteration: 13, Func. Count: 118, Neg. LLF: 159.34136601937254
Iteration: 14, Func. Count: 126, Neg. LLF: 159.33192063087094
Iteration: 15, Func. Count: 134, Neg. LLF: 159.3254005744959
Iteration: 16, Func. Count: 142, Neg. LLF: 159.32325270529776
Iteration: 17, Func. Count: 150, Neg. LLF: 159.32303374451433
Iteration: 18, Func. Count: 158, Neg. LLF: 159.32302490909814
Iteration: 19, Func. Count: 165, Neg. LLF: 159.3230248436471
Optimization terminated successfully (Exit mode 0)
Current function value: 159.32302490909814
Iterations: 19
Function evaluations: 165
Gradient evaluations: 19
Iteration: 1, Func. Count: 10, Neg. LLF: 170.07194566353385
Iteration: 2, Func. Count: 20, Neg. LLF: 162.91683897546514
Iteration: 3, Func. Count: 31, Neg. LLF: 159.8705341140729
Iteration: 4, Func. Count: 40, Neg. LLF: 159.84383969942886
Iteration: 5, Func. Count: 49, Neg. LLF: 159.77091904383227
Iteration: 6, Func. Count: 58, Neg. LLF: 159.70311870517614
Iteration: 7, Func. Count: 67, Neg. LLF: 159.68310121648292
Iteration: 8, Func. Count: 76, Neg. LLF: 159.67481889964841
Iteration: 9, Func. Count: 85, Neg. LLF: 159.67082436150412
Iteration: 10, Func. Count: 94, Neg. LLF: 159.66953642035386
Iteration: 11, Func. Count: 103, Neg. LLF: 159.66941782335482
Iteration: 12, Func. Count: 112, Neg. LLF: 159.66927529576
Iteration: 13, Func. Count: 122, Neg. LLF: 159.68109944278157
Iteration: 14, Func. Count: 133, Neg. LLF: 159.669407169242
Iteration: 15, Func. Count: 141, Neg. LLF: 159.66940694230246
Optimization terminated successfully (Exit mode 0)
Current function value: 159.669407169242
Iterations: 16
Function evaluations: 141
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 169.2146386693402
Iteration: 2, Func. Count: 22, Neg. LLF: 160.65583432298462
Iteration: 3, Func. Count: 34, Neg. LLF: 160.02668154495979
Iteration: 4, Func. Count: 44, Neg. LLF: 160.31661260248995
Iteration: 5, Func. Count: 55, Neg. LLF: 159.838669970786
Iteration: 6, Func. Count: 65, Neg. LLF: 159.74648319888777
Iteration: 7, Func. Count: 75, Neg. LLF: 159.70047388044068
Iteration: 8, Func. Count: 85, Neg. LLF: 159.68496336261103
Iteration: 9, Func. Count: 95, Neg. LLF: 159.67208080548727
Iteration: 10, Func. Count: 105, Neg. LLF: 159.6663986074759
Iteration: 11, Func. Count: 115, Neg. LLF: 159.66416513358288
Iteration: 12, Func. Count: 125, Neg. LLF: 159.66389897001304
Iteration: 13, Func. Count: 135, Neg. LLF: 159.66384131813413
Iteration: 14, Func. Count: 145, Neg. LLF: 159.6638415989697
Optimization terminated successfully (Exit mode 0)
Current function value: 159.6638415989697
Iterations: 14
Function evaluations: 145
Gradient evaluations: 14
Iteration: 1, Func. Count: 12, Neg. LLF: 170.50207720573968
Iteration: 2, Func. Count: 24, Neg. LLF: 160.2293938831727
Iteration: 3, Func. Count: 35, Neg. LLF: 159.6737340775379
Iteration: 4, Func. Count: 46, Neg. LLF: 159.83360810580146
Iteration: 5, Func. Count: 59, Neg. LLF: 160.55389105845424
Iteration: 6, Func. Count: 71, Neg. LLF: 158.9790186171235
Iteration: 7, Func. Count: 82, Neg. LLF: 158.81112342887585
Iteration: 8, Func. Count: 93, Neg. LLF: 158.73664396017548
Iteration: 9, Func. Count: 104, Neg. LLF: 158.4733241715056
Iteration: 10, Func. Count: 115, Neg. LLF: 158.33383763079232
Iteration: 11, Func. Count: 126, Neg. LLF: 158.21417018473053
Iteration: 12, Func. Count: 137, Neg. LLF: 158.13261478687747
Iteration: 13, Func. Count: 148, Neg. LLF: 158.0906302257913
Iteration: 14, Func. Count: 159, Neg. LLF: 158.08855129393885
Iteration: 15, Func. Count: 170, Neg. LLF: 158.0887629006531
Iteration: 16, Func. Count: 181, Neg. LLF: 158.08891078353327
Iteration: 17, Func. Count: 192, Neg. LLF: 158.088297886342
Iteration: 18, Func. Count: 213, Neg. LLF: 158.08895940613073
Iteration: 19, Func. Count: 226, Neg. LLF: 158.08893041750918
Iteration: 20, Func. Count: 238, Neg. LLF: 158.08893004157673
Iteration: 21, Func. Count: 248, Neg. LLF: 158.08892988749184
Optimization terminated successfully (Exit mode 0)
Current function value: 158.08893004157673
Iterations: 22
Function evaluations: 248
Gradient evaluations: 21
Iteration: 1, Func. Count: 9, Neg. LLF: 161.90946084014524
Iteration: 2, Func. Count: 17, Neg. LLF: 160.52953892660477
Iteration: 3, Func. Count: 26, Neg. LLF: 157.33156189060637
Iteration: 4, Func. Count: 34, Neg. LLF: 156.91526307344608
Iteration: 5, Func. Count: 42, Neg. LLF: 156.90266515353233
Iteration: 6, Func. Count: 50, Neg. LLF: 156.8728784344335
Iteration: 7, Func. Count: 58, Neg. LLF: 156.8054266099562
Iteration: 8, Func. Count: 66, Neg. LLF: 156.96954739435617
Iteration: 9, Func. Count: 75, Neg. LLF: 156.65463512849763
Iteration: 10, Func. Count: 83, Neg. LLF: 156.65677138367442
Iteration: 11, Func. Count: 92, Neg. LLF: 156.6303006098637
Iteration: 12, Func. Count: 100, Neg. LLF: 156.6300316261165
Iteration: 13, Func. Count: 108, Neg. LLF: 156.63003066177095
Optimization terminated successfully (Exit mode 0)
Current function value: 156.63003066177095
Iterations: 13
Function evaluations: 108
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 174.12275651492016
Iteration: 2, Func. Count: 20, Neg. LLF: 159.93929241170952
Iteration: 3, Func. Count: 29, Neg. LLF: 159.9651580875086
Iteration: 4, Func. Count: 39, Neg. LLF: 158.54267879349038
Iteration: 5, Func. Count: 48, Neg. LLF: 157.8618750987397
Iteration: 6, Func. Count: 58, Neg. LLF: 165.8249165585323
Iteration: 7, Func. Count: 68, Neg. LLF: 157.32303913399156
Iteration: 8, Func. Count: 78, Neg. LLF: 158.7991085695278
Iteration: 9, Func. Count: 88, Neg. LLF: 156.76562870116288
Iteration: 10, Func. Count: 97, Neg. LLF: 156.73118883981658
Iteration: 11, Func. Count: 107, Neg. LLF: 156.68048304037512
Iteration: 12, Func. Count: 116, Neg. LLF: 156.67597109935394
Iteration: 13, Func. Count: 125, Neg. LLF: 156.6650558629987
Iteration: 14, Func. Count: 134, Neg. LLF: 156.6565937990461
Iteration: 15, Func. Count: 143, Neg. LLF: 156.63235762101255
Iteration: 16, Func. Count: 152, Neg. LLF: 156.6302170283343
Iteration: 17, Func. Count: 161, Neg. LLF: 156.63004262628272
Iteration: 18, Func. Count: 170, Neg. LLF: 156.63003122133026
Iteration: 19, Func. Count: 179, Neg. LLF: 156.63003060282725
Optimization terminated successfully (Exit mode 0)
Current function value: 156.63003060282725
Iterations: 19
Function evaluations: 179
Gradient evaluations: 19
Iteration: 1, Func. Count: 11, Neg. LLF: 169.88040548606278
Iteration: 2, Func. Count: 22, Neg. LLF: 157.0252147635395
Iteration: 3, Func. Count: 32, Neg. LLF: 157.53299789052724
Iteration: 4, Func. Count: 43, Neg. LLF: 157.13535533408822
Iteration: 5, Func. Count: 54, Neg. LLF: 156.85959618060207
Iteration: 6, Func. Count: 65, Neg. LLF: 157.84833446304904
Iteration: 7, Func. Count: 77, Neg. LLF: 156.8040396483686
Iteration: 8, Func. Count: 87, Neg. LLF: 156.70087771682003
Iteration: 9, Func. Count: 97, Neg. LLF: 156.63444191936128
Iteration: 10, Func. Count: 107, Neg. LLF: 156.6304034457046
Iteration: 11, Func. Count: 117, Neg. LLF: 156.63004247993217
Iteration: 12, Func. Count: 127, Neg. LLF: 156.63003061174277
Iteration: 13, Func. Count: 136, Neg. LLF: 156.63003063343206
Optimization terminated successfully (Exit mode 0)
Current function value: 156.63003061174277
Iterations: 13
Function evaluations: 136
Gradient evaluations: 13
Iteration: 1, Func. Count: 12, Neg. LLF: 169.14132517218053
Iteration: 2, Func. Count: 24, Neg. LLF: 157.2666230635486
Iteration: 3, Func. Count: 35, Neg. LLF: 157.62714409039367
Iteration: 4, Func. Count: 47, Neg. LLF: 160.17487119047777
Iteration: 5, Func. Count: 61, Neg. LLF: 172.07266488266012
Iteration: 6, Func. Count: 74, Neg. LLF: 159.29142637077084
Iteration: 7, Func. Count: 87, Neg. LLF: 156.99283636204277
Iteration: 8, Func. Count: 98, Neg. LLF: 156.8383577288095
Iteration: 9, Func. Count: 109, Neg. LLF: 156.7721568803933
Iteration: 10, Func. Count: 120, Neg. LLF: 156.7133742158066
Iteration: 11, Func. Count: 131, Neg. LLF: 156.6386045301169
Iteration: 12, Func. Count: 142, Neg. LLF: 156.6306285121728
Iteration: 13, Func. Count: 153, Neg. LLF: 156.63006619757778
Iteration: 14, Func. Count: 164, Neg. LLF: 156.63003656622132
Iteration: 15, Func. Count: 175, Neg. LLF: 156.63003077264307
Iteration: 16, Func. Count: 185, Neg. LLF: 156.63003077614394
Optimization terminated successfully (Exit mode 0)
Current function value: 156.63003077264307
Iterations: 16
Function evaluations: 185
Gradient evaluations: 16
Iteration: 1, Func. Count: 13, Neg. LLF: 157.258609435289
Iteration: 2, Func. Count: 25, Neg. LLF: 158.64038553107545
Iteration: 3, Func. Count: 38, Neg. LLF: 157.32407513780475
Iteration: 4, Func. Count: 51, Neg. LLF: 156.35901038782103
Iteration: 5, Func. Count: 64, Neg. LLF: 156.18727762119988
Iteration: 6, Func. Count: 76, Neg. LLF: 156.14652209900476
Iteration: 7, Func. Count: 88, Neg. LLF: 156.09071744739228
Iteration: 8, Func. Count: 100, Neg. LLF: 155.70612754868523
Iteration: 9, Func. Count: 112, Neg. LLF: 157.64751953060642
Iteration: 10, Func. Count: 125, Neg. LLF: 155.78734785110873
Iteration: 11, Func. Count: 138, Neg. LLF: 155.48782572008534
Iteration: 12, Func. Count: 150, Neg. LLF: 155.48557640543032
Iteration: 13, Func. Count: 162, Neg. LLF: 155.48546781828432
Iteration: 14, Func. Count: 174, Neg. LLF: 155.48545127633773
Iteration: 15, Func. Count: 185, Neg. LLF: 155.48545114574026
Optimization terminated successfully (Exit mode 0)
Current function value: 155.48545127633773
Iterations: 15
Function evaluations: 185
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 160.8740673048219
Iteration: 2, Func. Count: 19, Neg. LLF: 162.0758803506501
Iteration: 3, Func. Count: 29, Neg. LLF: 157.2185494932883
Iteration: 4, Func. Count: 38, Neg. LLF: 156.91900607748423
Iteration: 5, Func. Count: 47, Neg. LLF: 156.90263344138083
Iteration: 6, Func. Count: 56, Neg. LLF: 156.79532599494664
Iteration: 7, Func. Count: 65, Neg. LLF: 157.5756827466301
Iteration: 8, Func. Count: 76, Neg. LLF: 156.69706103697567
Iteration: 9, Func. Count: 85, Neg. LLF: 156.63484831678105
Iteration: 10, Func. Count: 94, Neg. LLF: 156.63004886809625
Iteration: 11, Func. Count: 103, Neg. LLF: 156.63003196806187
Iteration: 12, Func. Count: 112, Neg. LLF: 156.63003065729237
Iteration: 13, Func. Count: 120, Neg. LLF: 156.63003066724139
Optimization terminated successfully (Exit mode 0)
Current function value: 156.63003065729237
Iterations: 13
Function evaluations: 120
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 174.14523631207825
Iteration: 2, Func. Count: 22, Neg. LLF: 159.97227111988377
Iteration: 3, Func. Count: 32, Neg. LLF: 159.93722494995902
Iteration: 4, Func. Count: 43, Neg. LLF: 158.49258870166864
Iteration: 5, Func. Count: 53, Neg. LLF: 157.889322866982
Iteration: 6, Func. Count: 64, Neg. LLF: 169.62317526795533
Iteration: 7, Func. Count: 75, Neg. LLF: 157.33206194005413
Iteration: 8, Func. Count: 86, Neg. LLF: 157.84361997397875
Iteration: 9, Func. Count: 97, Neg. LLF: 156.75760074507727
Iteration: 10, Func. Count: 107, Neg. LLF: 156.7270406197416
Iteration: 11, Func. Count: 118, Neg. LLF: 156.67709524475077
Iteration: 12, Func. Count: 128, Neg. LLF: 156.67160908137532
Iteration: 13, Func. Count: 138, Neg. LLF: 156.6651153883137
Iteration: 14, Func. Count: 148, Neg. LLF: 156.65359552699402
Iteration: 15, Func. Count: 158, Neg. LLF: 156.63938402220487
Iteration: 16, Func. Count: 168, Neg. LLF: 156.63105817539284
Iteration: 17, Func. Count: 178, Neg. LLF: 156.63010631283373
Iteration: 18, Func. Count: 188, Neg. LLF: 156.6300340968555
Iteration: 19, Func. Count: 198, Neg. LLF: 156.63003067071378
Iteration: 20, Func. Count: 207, Neg. LLF: 156.63003067759487
Optimization terminated successfully (Exit mode 0)
Current function value: 156.63003067071378
Iterations: 20
Function evaluations: 207
Gradient evaluations: 20
Iteration: 1, Func. Count: 12, Neg. LLF: 169.91341297283864
Iteration: 2, Func. Count: 24, Neg. LLF: 157.0306305223234
Iteration: 3, Func. Count: 35, Neg. LLF: 157.5055300739764
Iteration: 4, Func. Count: 47, Neg. LLF: 157.08951537929048
Iteration: 5, Func. Count: 59, Neg. LLF: 156.85832549839353
Iteration: 6, Func. Count: 71, Neg. LLF: 157.8353548564299
Iteration: 7, Func. Count: 84, Neg. LLF: 156.80004302087153
Iteration: 8, Func. Count: 95, Neg. LLF: 156.6836352532873
Iteration: 9, Func. Count: 106, Neg. LLF: 156.6341483129338
Iteration: 10, Func. Count: 117, Neg. LLF: 156.6301344166396
Iteration: 11, Func. Count: 128, Neg. LLF: 156.63003599708597
Iteration: 12, Func. Count: 139, Neg. LLF: 156.6300306048755
Iteration: 13, Func. Count: 149, Neg. LLF: 156.63003062655702
Optimization terminated successfully (Exit mode 0)
Current function value: 156.6300306048755
Iterations: 13
Function evaluations: 149
Gradient evaluations: 13
Iteration: 1, Func. Count: 13, Neg. LLF: 168.93722559262568
Iteration: 2, Func. Count: 26, Neg. LLF: 157.244872987039
Iteration: 3, Func. Count: 38, Neg. LLF: 157.5850387236903
Iteration: 4, Func. Count: 51, Neg. LLF: 159.98088350565652
Iteration: 5, Func. Count: 65, Neg. LLF: 171.0520002436256
Iteration: 6, Func. Count: 79, Neg. LLF: 163.23085425887055
Iteration: 7, Func. Count: 93, Neg. LLF: 156.96603857939007
Iteration: 8, Func. Count: 105, Neg. LLF: 156.84580901909902
Iteration: 9, Func. Count: 117, Neg. LLF: 156.79508427312985
Iteration: 10, Func. Count: 129, Neg. LLF: 156.7109017776215
Iteration: 11, Func. Count: 141, Neg. LLF: 156.66479474346954
Iteration: 12, Func. Count: 153, Neg. LLF: 156.63141644757923
Iteration: 13, Func. Count: 165, Neg. LLF: 156.6301404369469
Iteration: 14, Func. Count: 177, Neg. LLF: 156.6300654070979
Iteration: 15, Func. Count: 189, Neg. LLF: 156.63003676335848
Iteration: 16, Func. Count: 201, Neg. LLF: 156.63003086968527
Iteration: 17, Func. Count: 212, Neg. LLF: 156.63003087322554
Optimization terminated successfully (Exit mode 0)
Current function value: 156.63003086968527
Iterations: 17
Function evaluations: 212
Gradient evaluations: 17
Iteration: 1, Func. Count: 14, Neg. LLF: 158.22500670301096
Iteration: 2, Func. Count: 27, Neg. LLF: 159.9213241758058
Iteration: 3, Func. Count: 42, Neg. LLF: 157.48607437732463
Iteration: 4, Func. Count: 56, Neg. LLF: 156.23338813971299
Iteration: 5, Func. Count: 69, Neg. LLF: 156.2206637217427
Iteration: 6, Func. Count: 82, Neg. LLF: 156.17355819682254
Iteration: 7, Func. Count: 95, Neg. LLF: 156.14430319905304
Iteration: 8, Func. Count: 108, Neg. LLF: 156.04728519878626
Iteration: 9, Func. Count: 121, Neg. LLF: 155.83643216628985
Iteration: 10, Func. Count: 134, Neg. LLF: 155.6733914515114
Iteration: 11, Func. Count: 147, Neg. LLF: 155.49548857129082
Iteration: 12, Func. Count: 160, Neg. LLF: 155.4888336893541
Iteration: 13, Func. Count: 173, Neg. LLF: 155.48970897429365
Iteration: 14, Func. Count: 187, Neg. LLF: 155.48567968619236
Iteration: 15, Func. Count: 200, Neg. LLF: 155.48545202390696
Iteration: 16, Func. Count: 213, Neg. LLF: 155.4854512523532
Optimization terminated successfully (Exit mode 0)
Current function value: 155.4854512523532
Iterations: 16
Function evaluations: 213
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 160.1506563355917
Iteration: 2, Func. Count: 21, Neg. LLF: 162.99922789417207
Iteration: 3, Func. Count: 32, Neg. LLF: 157.17849905621947
Iteration: 4, Func. Count: 42, Neg. LLF: 156.92367569781425
Iteration: 5, Func. Count: 52, Neg. LLF: 156.9070082983919
Iteration: 6, Func. Count: 62, Neg. LLF: 156.83418600561768
Iteration: 7, Func. Count: 72, Neg. LLF: 157.40210507302342
Iteration: 8, Func. Count: 83, Neg. LLF: 156.9736177955839
Iteration: 9, Func. Count: 94, Neg. LLF: 156.6429820721029
Iteration: 10, Func. Count: 104, Neg. LLF: 156.63081464438187
Iteration: 11, Func. Count: 114, Neg. LLF: 156.63007714510388
Iteration: 12, Func. Count: 124, Neg. LLF: 156.63003128205932
Iteration: 13, Func. Count: 134, Neg. LLF: 156.63003059232523
Optimization terminated successfully (Exit mode 0)
Current function value: 156.63003059232523
Iterations: 13
Function evaluations: 134
Gradient evaluations: 13
Iteration: 1, Func. Count: 12, Neg. LLF: 174.13715008213902
Iteration: 2, Func. Count: 24, Neg. LLF: 160.18410494861286
Iteration: 3, Func. Count: 35, Neg. LLF: 159.89458931384752
Iteration: 4, Func. Count: 47, Neg. LLF: 158.47271553032883
Iteration: 5, Func. Count: 58, Neg. LLF: 159.73466672787288
Iteration: 6, Func. Count: 70, Neg. LLF: 157.7290635303419
Iteration: 7, Func. Count: 82, Neg. LLF: 157.28060865957266
Iteration: 8, Func. Count: 94, Neg. LLF: 156.81191732708314
Iteration: 9, Func. Count: 105, Neg. LLF: 156.8856961847549
Iteration: 10, Func. Count: 117, Neg. LLF: 157.09097828843687
Iteration: 11, Func. Count: 129, Neg. LLF: 156.68134702829812
Iteration: 12, Func. Count: 140, Neg. LLF: 156.67458215383036
Iteration: 13, Func. Count: 151, Neg. LLF: 156.66994594158325
Iteration: 14, Func. Count: 162, Neg. LLF: 156.66197771133199
Iteration: 15, Func. Count: 173, Neg. LLF: 156.65390775459431
Iteration: 16, Func. Count: 184, Neg. LLF: 156.6380489156563
Iteration: 17, Func. Count: 195, Neg. LLF: 156.6313219016888
Iteration: 18, Func. Count: 206, Neg. LLF: 156.63012301801334
Iteration: 19, Func. Count: 217, Neg. LLF: 156.63003448645202
Iteration: 20, Func. Count: 228, Neg. LLF: 156.6300306485286
Iteration: 21, Func. Count: 238, Neg. LLF: 156.6300306554352
Optimization terminated successfully (Exit mode 0)
Current function value: 156.6300306485286
Iterations: 21
Function evaluations: 238
Gradient evaluations: 21
Iteration: 1, Func. Count: 13, Neg. LLF: 169.89383500356496
Iteration: 2, Func. Count: 26, Neg. LLF: 157.0276374169343
Iteration: 3, Func. Count: 38, Neg. LLF: 157.51060766559067
Iteration: 4, Func. Count: 51, Neg. LLF: 157.09296984018061
Iteration: 5, Func. Count: 64, Neg. LLF: 156.85723804890668
Iteration: 6, Func. Count: 77, Neg. LLF: 157.82961662313477
Iteration: 7, Func. Count: 91, Neg. LLF: 156.79930527632158
Iteration: 8, Func. Count: 103, Neg. LLF: 156.68560001785477
Iteration: 9, Func. Count: 115, Neg. LLF: 156.63376575161146
Iteration: 10, Func. Count: 127, Neg. LLF: 156.63010316511986
Iteration: 11, Func. Count: 139, Neg. LLF: 156.63003322272183
Iteration: 12, Func. Count: 151, Neg. LLF: 156.63003065034565
Iteration: 13, Func. Count: 162, Neg. LLF: 156.63003067202894
Optimization terminated successfully (Exit mode 0)
Current function value: 156.63003065034565
Iterations: 13
Function evaluations: 162
Gradient evaluations: 13
Iteration: 1, Func. Count: 14, Neg. LLF: 169.00398622417208
Iteration: 2, Func. Count: 28, Neg. LLF: 157.24769614401993
Iteration: 3, Func. Count: 41, Neg. LLF: 157.57174719327594
Iteration: 4, Func. Count: 55, Neg. LLF: 159.62760077788025
Iteration: 5, Func. Count: 70, Neg. LLF: 170.7560692946205
Iteration: 6, Func. Count: 85, Neg. LLF: 158.5014838462707
Iteration: 7, Func. Count: 100, Neg. LLF: 156.9705904622507
Iteration: 8, Func. Count: 113, Neg. LLF: 156.81845914220244
Iteration: 9, Func. Count: 126, Neg. LLF: 156.82475129687413
Iteration: 10, Func. Count: 140, Neg. LLF: 156.68345089105617
Iteration: 11, Func. Count: 153, Neg. LLF: 156.64137137185537
Iteration: 12, Func. Count: 166, Neg. LLF: 156.63046981994293
Iteration: 13, Func. Count: 179, Neg. LLF: 156.63003631667831
Iteration: 14, Func. Count: 192, Neg. LLF: 156.63003086917064
Iteration: 15, Func. Count: 204, Neg. LLF: 156.63003087267595
Optimization terminated successfully (Exit mode 0)
Current function value: 156.63003086917064
Iterations: 15
Function evaluations: 204
Gradient evaluations: 15
Iteration: 1, Func. Count: 15, Neg. LLF: 158.2238300446863
Iteration: 2, Func. Count: 29, Neg. LLF: 159.91913673038565
Iteration: 3, Func. Count: 45, Neg. LLF: 157.41818323380005
Iteration: 4, Func. Count: 60, Neg. LLF: 156.23098240664987
Iteration: 5, Func. Count: 74, Neg. LLF: 156.23273130621862
Iteration: 6, Func. Count: 89, Neg. LLF: 156.1722159250411
Iteration: 7, Func. Count: 103, Neg. LLF: 156.14320602768666
Iteration: 8, Func. Count: 117, Neg. LLF: 155.98082863579623
Iteration: 9, Func. Count: 131, Neg. LLF: 155.6068606801058
Iteration: 10, Func. Count: 145, Neg. LLF: 155.64021149552542
Iteration: 11, Func. Count: 160, Neg. LLF: 155.48704123585009
Iteration: 12, Func. Count: 174, Neg. LLF: 155.48571579649132
Iteration: 13, Func. Count: 188, Neg. LLF: 155.4854863960993
Iteration: 14, Func. Count: 202, Neg. LLF: 155.48545192418058
Iteration: 15, Func. Count: 216, Neg. LLF: 155.48545123380657
Optimization terminated successfully (Exit mode 0)
Current function value: 155.48545123380657
Iterations: 15
Function evaluations: 216
Gradient evaluations: 15
Iteration: 1, Func. Count: 8, Neg. LLF: 161.87467308223862
Iteration: 2, Func. Count: 15, Neg. LLF: 160.60730467161045
Iteration: 3, Func. Count: 22, Neg. LLF: 189.00060727324697
Iteration: 4, Func. Count: 33, Neg. LLF: 172.8686580898108
Iteration: 5, Func. Count: 42, Neg. LLF: 159.33531998219524
Iteration: 6, Func. Count: 49, Neg. LLF: 159.59870402739134
Iteration: 7, Func. Count: 57, Neg. LLF: 158.97078588871346
Iteration: 8, Func. Count: 64, Neg. LLF: 158.9281227420541
Iteration: 9, Func. Count: 71, Neg. LLF: 158.85511167614223
Iteration: 10, Func. Count: 78, Neg. LLF: 158.77109687904183
Iteration: 11, Func. Count: 85, Neg. LLF: 158.584700996397
Iteration: 12, Func. Count: 92, Neg. LLF: 158.50175597623934
Iteration: 13, Func. Count: 99, Neg. LLF: 158.4814798999429
Iteration: 14, Func. Count: 106, Neg. LLF: 158.48100649571236
Iteration: 15, Func. Count: 113, Neg. LLF: 158.4809819332935
Iteration: 16, Func. Count: 120, Neg. LLF: 158.4809788087518
Iteration: 17, Func. Count: 126, Neg. LLF: 158.48097876997758
Optimization terminated successfully (Exit mode 0)
Current function value: 158.4809788087518
Iterations: 17
Function evaluations: 126
Gradient evaluations: 17
Iteration: 1, Func. Count: 9, Neg. LLF: 173.8007805249393
Iteration: 2, Func. Count: 18, Neg. LLF: 161.13531152214136
Iteration: 3, Func. Count: 27, Neg. LLF: 160.31045385143585
Iteration: 4, Func. Count: 35, Neg. LLF: 160.17616231794366
Iteration: 5, Func. Count: 43, Neg. LLF: 160.0374221299123
Iteration: 6, Func. Count: 51, Neg. LLF: 160.0244103607459
Iteration: 7, Func. Count: 59, Neg. LLF: 160.02419355352546
Iteration: 8, Func. Count: 67, Neg. LLF: 160.0241854483078
Iteration: 9, Func. Count: 74, Neg. LLF: 160.0241855215704
Optimization terminated successfully (Exit mode 0)
Current function value: 160.0241854483078
Iterations: 9
Function evaluations: 74
Gradient evaluations: 9
Iteration: 1, Func. Count: 10, Neg. LLF: 169.28475075664213
Iteration: 2, Func. Count: 20, Neg. LLF: 160.30692445350292
Iteration: 3, Func. Count: 29, Neg. LLF: 160.21595631928045
Iteration: 4, Func. Count: 38, Neg. LLF: 162.06437053233512
Iteration: 5, Func. Count: 49, Neg. LLF: 160.13810328915466
Iteration: 6, Func. Count: 58, Neg. LLF: 160.08234141447605
Iteration: 7, Func. Count: 67, Neg. LLF: 160.0804816899914
Iteration: 8, Func. Count: 76, Neg. LLF: 160.07859432271437
Iteration: 9, Func. Count: 85, Neg. LLF: 160.07432145680065
Iteration: 10, Func. Count: 94, Neg. LLF: 160.06987481935204
Iteration: 11, Func. Count: 103, Neg. LLF: 160.06536453105667
Iteration: 12, Func. Count: 112, Neg. LLF: 160.05891708632194
Iteration: 13, Func. Count: 121, Neg. LLF: 160.02486099869046
Iteration: 14, Func. Count: 130, Neg. LLF: 160.02447806593187
Iteration: 15, Func. Count: 139, Neg. LLF: 160.02428485785225
Iteration: 16, Func. Count: 148, Neg. LLF: 160.02428736608925
Optimization terminated successfully (Exit mode 0)
Current function value: 160.02428483131206
Iterations: 16
Function evaluations: 150
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 168.208371007666
Iteration: 2, Func. Count: 22, Neg. LLF: 160.14327718487874
Iteration: 3, Func. Count: 32, Neg. LLF: 160.14374426603743
Iteration: 4, Func. Count: 43, Neg. LLF: 160.09117444841365
Iteration: 5, Func. Count: 53, Neg. LLF: 160.09025429809324
Iteration: 6, Func. Count: 63, Neg. LLF: 160.0884551809587
Iteration: 7, Func. Count: 73, Neg. LLF: 160.08838149882465
Iteration: 8, Func. Count: 83, Neg. LLF: 160.08830651354705
Iteration: 9, Func. Count: 93, Neg. LLF: 160.08830549698672
Iteration: 10, Func. Count: 102, Neg. LLF: 160.08830546433143
Optimization terminated successfully (Exit mode 0)
Current function value: 160.08830549698672
Iterations: 10
Function evaluations: 102
Gradient evaluations: 10
Iteration: 1, Func. Count: 12, Neg. LLF: 174.78360224013883
Iteration: 2, Func. Count: 27, Neg. LLF: 164.09437783484483
Iteration: 3, Func. Count: 39, Neg. LLF: 160.06822872944076
Iteration: 4, Func. Count: 50, Neg. LLF: 161.7276952591091
Iteration: 5, Func. Count: 63, Neg. LLF: 160.00902798622897
Iteration: 6, Func. Count: 74, Neg. LLF: 159.94442405823224
Iteration: 7, Func. Count: 85, Neg. LLF: 159.65884808547162
Iteration: 8, Func. Count: 96, Neg. LLF: 159.61823613502187
Iteration: 9, Func. Count: 107, Neg. LLF: 159.54645788770236
Iteration: 10, Func. Count: 118, Neg. LLF: 159.51496188937782
Iteration: 11, Func. Count: 129, Neg. LLF: 159.4957331454034
Iteration: 12, Func. Count: 140, Neg. LLF: 159.46667947392072
Iteration: 13, Func. Count: 151, Neg. LLF: 159.21226704665202
Iteration: 14, Func. Count: 162, Neg. LLF: 158.69562992718707
Iteration: 15, Func. Count: 173, Neg. LLF: 265.03816639439526
Iteration: 16, Func. Count: 185, Neg. LLF: 159.33948484294962
Iteration: 17, Func. Count: 197, Neg. LLF: 158.22001629116977
Iteration: 18, Func. Count: 209, Neg. LLF: 157.99373633821972
Iteration: 19, Func. Count: 220, Neg. LLF: 163.46673636053404
Iteration: 20, Func. Count: 233, Neg. LLF: 157.97060926270657
Iteration: 21, Func. Count: 244, Neg. LLF: 157.9304257010222
Iteration: 22, Func. Count: 255, Neg. LLF: 157.9100427078733
Iteration: 23, Func. Count: 266, Neg. LLF: 157.90368031666807
Iteration: 24, Func. Count: 277, Neg. LLF: 157.9032767608479
Iteration: 25, Func. Count: 288, Neg. LLF: 157.90326919557234
Iteration: 26, Func. Count: 298, Neg. LLF: 157.90326916687388
Optimization terminated successfully (Exit mode 0)
Current function value: 157.90326919557234
Iterations: 27
Function evaluations: 298
Gradient evaluations: 26
Iteration: 1, Func. Count: 9, Neg. LLF: 164.82075734341853
Iteration: 2, Func. Count: 19, Neg. LLF: 158.70398682326638
Iteration: 3, Func. Count: 27, Neg. LLF: 162.71021427557218
Iteration: 4, Func. Count: 38, Neg. LLF: 158.71250090572235
Iteration: 5, Func. Count: 47, Neg. LLF: 161.81463204077497
Iteration: 6, Func. Count: 56, Neg. LLF: 158.25452307151468
Iteration: 7, Func. Count: 64, Neg. LLF: 158.23914328738863
Iteration: 8, Func. Count: 72, Neg. LLF: 158.20702461899108
Iteration: 9, Func. Count: 80, Neg. LLF: 158.8949230403776
Iteration: 10, Func. Count: 90, Neg. LLF: 159.18335167575245
Iteration: 11, Func. Count: 99, Neg. LLF: 158.1062803159488
Iteration: 12, Func. Count: 107, Neg. LLF: 158.0843481502512
Iteration: 13, Func. Count: 115, Neg. LLF: 158.0830784492615
Iteration: 14, Func. Count: 123, Neg. LLF: 158.08303605902884
Iteration: 15, Func. Count: 131, Neg. LLF: 158.083033685572
Iteration: 16, Func. Count: 138, Neg. LLF: 158.0830336644922
Optimization terminated successfully (Exit mode 0)
Current function value: 158.083033685572
Iterations: 16
Function evaluations: 138
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 174.05973924241994
Iteration: 2, Func. Count: 20, Neg. LLF: 160.51458996792874
Iteration: 3, Func. Count: 29, Neg. LLF: 159.74091121393417
Iteration: 4, Func. Count: 38, Neg. LLF: 247.59553217484822
Iteration: 5, Func. Count: 51, Neg. LLF: 164.12582707927072
Iteration: 6, Func. Count: 61, Neg. LLF: 181.01969958388648
Iteration: 7, Func. Count: 72, Neg. LLF: 157.8967222965358
Iteration: 8, Func. Count: 81, Neg. LLF: 159.2866241567347
Iteration: 9, Func. Count: 92, Neg. LLF: 167.140165507388
Iteration: 10, Func. Count: 103, Neg. LLF: 157.84488889690087
Iteration: 11, Func. Count: 112, Neg. LLF: 157.83730808414856
Iteration: 12, Func. Count: 121, Neg. LLF: 157.82822220001538
Iteration: 13, Func. Count: 130, Neg. LLF: 157.81946375744525
Iteration: 14, Func. Count: 139, Neg. LLF: 157.80488735878063
Iteration: 15, Func. Count: 148, Neg. LLF: 157.79657351102793
Iteration: 16, Func. Count: 157, Neg. LLF: 157.79284389317445
Iteration: 17, Func. Count: 166, Neg. LLF: 157.79053643342291
Iteration: 18, Func. Count: 175, Neg. LLF: 157.7882007295429
Iteration: 19, Func. Count: 184, Neg. LLF: 157.7866704640683
Iteration: 20, Func. Count: 193, Neg. LLF: 157.78607527317834
Iteration: 21, Func. Count: 202, Neg. LLF: 157.78598886147662
Iteration: 22, Func. Count: 211, Neg. LLF: 157.7859864939635
Iteration: 23, Func. Count: 219, Neg. LLF: 157.78598643767126
Optimization terminated successfully (Exit mode 0)
Current function value: 157.7859864939635
Iterations: 23
Function evaluations: 219
Gradient evaluations: 23
Iteration: 1, Func. Count: 11, Neg. LLF: 169.67142310413843
Iteration: 2, Func. Count: 22, Neg. LLF: 166.0415359815198
Iteration: 3, Func. Count: 34, Neg. LLF: 159.85908694657155
Iteration: 4, Func. Count: 44, Neg. LLF: 159.84517567404433
Iteration: 5, Func. Count: 54, Neg. LLF: 159.8177048471283
Iteration: 6, Func. Count: 64, Neg. LLF: 159.74272361086403
Iteration: 7, Func. Count: 74, Neg. LLF: 159.70599479442672
Iteration: 8, Func. Count: 84, Neg. LLF: 159.68647533896095
Iteration: 9, Func. Count: 94, Neg. LLF: 159.67245040911578
Iteration: 10, Func. Count: 104, Neg. LLF: 159.66613714796893
Iteration: 11, Func. Count: 114, Neg. LLF: 159.66732227775478
Iteration: 12, Func. Count: 125, Neg. LLF: 160.11123710647954
Iteration: 13, Func. Count: 137, Neg. LLF: 159.66941347184877
Iteration: 14, Func. Count: 147, Neg. LLF: 159.669408258488
Iteration: 15, Func. Count: 157, Neg. LLF: 159.66940711903456
Iteration: 16, Func. Count: 166, Neg. LLF: 159.66940689226684
Optimization terminated successfully (Exit mode 0)
Current function value: 159.66940711903456
Iterations: 17
Function evaluations: 166
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 168.5382709531129
Iteration: 2, Func. Count: 24, Neg. LLF: 161.1926430939099
Iteration: 3, Func. Count: 37, Neg. LLF: 161.15042827368083
Iteration: 4, Func. Count: 51, Neg. LLF: 160.00904034184262
Iteration: 5, Func. Count: 62, Neg. LLF: 159.9170663116693
Iteration: 6, Func. Count: 73, Neg. LLF: 169.06191258003787
Iteration: 7, Func. Count: 85, Neg. LLF: 160.99742419253505
Iteration: 8, Func. Count: 97, Neg. LLF: 159.59283600428566
Iteration: 9, Func. Count: 108, Neg. LLF: 159.58479505586482
Iteration: 10, Func. Count: 119, Neg. LLF: 159.58429902119428
Iteration: 11, Func. Count: 130, Neg. LLF: 159.58423911225037
Iteration: 12, Func. Count: 141, Neg. LLF: 159.58423289341255
Iteration: 13, Func. Count: 152, Neg. LLF: 159.58422983943177
Iteration: 14, Func. Count: 163, Neg. LLF: 159.58422740278874
Iteration: 15, Func. Count: 173, Neg. LLF: 159.58422730088316
Optimization terminated successfully (Exit mode 0)
Current function value: 159.58422740278874
Iterations: 15
Function evaluations: 173
Gradient evaluations: 15
Iteration: 1, Func. Count: 13, Neg. LLF: 165.49941938863248
Iteration: 2, Func. Count: 29, Neg. LLF: 157.97083881266278
Iteration: 3, Func. Count: 41, Neg. LLF: 161.25611445492635
Iteration: 4, Func. Count: 54, Neg. LLF: 160.35389749353803
Iteration: 5, Func. Count: 68, Neg. LLF: 157.9036926489053
Iteration: 6, Func. Count: 80, Neg. LLF: 157.85163636549376
Iteration: 7, Func. Count: 92, Neg. LLF: 157.7533881292119
Iteration: 8, Func. Count: 104, Neg. LLF: 157.5898957154284
Iteration: 9, Func. Count: 116, Neg. LLF: 159.20461683548245
Iteration: 10, Func. Count: 130, Neg. LLF: 157.656199261169
Iteration: 11, Func. Count: 143, Neg. LLF: 157.4960248489576
Iteration: 12, Func. Count: 155, Neg. LLF: 157.47980185954694
Iteration: 13, Func. Count: 167, Neg. LLF: 157.45795872711224
Iteration: 14, Func. Count: 179, Neg. LLF: 157.44878620038708
Iteration: 15, Func. Count: 191, Neg. LLF: 157.42860099588793
Iteration: 16, Func. Count: 203, Neg. LLF: 157.42277643067922
Iteration: 17, Func. Count: 215, Neg. LLF: 157.42194756610425
Iteration: 18, Func. Count: 227, Neg. LLF: 157.42194464183228
Iteration: 19, Func. Count: 239, Neg. LLF: 157.42194412559775
Optimization terminated successfully (Exit mode 0)
Current function value: 157.42194412559775
Iterations: 19
Function evaluations: 239
Gradient evaluations: 19
Iteration: 1, Func. Count: 10, Neg. LLF: 157.91438649539054
Iteration: 2, Func. Count: 19, Neg. LLF: 158.9395555014951
Iteration: 3, Func. Count: 29, Neg. LLF: 160.31630392817067
Iteration: 4, Func. Count: 39, Neg. LLF: 157.25745850744582
Iteration: 5, Func. Count: 49, Neg. LLF: 157.091655236216
Iteration: 6, Func. Count: 59, Neg. LLF: 156.69442681918815
Iteration: 7, Func. Count: 68, Neg. LLF: 156.64839292015012
Iteration: 8, Func. Count: 77, Neg. LLF: 156.6089331018223
Iteration: 9, Func. Count: 86, Neg. LLF: 156.57124559347224
Iteration: 10, Func. Count: 95, Neg. LLF: 156.94998314946812
Iteration: 11, Func. Count: 106, Neg. LLF: 161.64708714972693
Iteration: 12, Func. Count: 116, Neg. LLF: 156.34282852077962
Iteration: 13, Func. Count: 125, Neg. LLF: 161.97395645611377
Iteration: 14, Func. Count: 137, Neg. LLF: 156.63104905947432
Iteration: 15, Func. Count: 147, Neg. LLF: 156.29711200828166
Iteration: 16, Func. Count: 156, Neg. LLF: 156.29619188303064
Iteration: 17, Func. Count: 165, Neg. LLF: 156.2954088771353
Iteration: 18, Func. Count: 174, Neg. LLF: 156.29532339605984
Iteration: 19, Func. Count: 183, Neg. LLF: 156.29531966915826
Iteration: 20, Func. Count: 191, Neg. LLF: 156.295319646662
Optimization terminated successfully (Exit mode 0)
Current function value: 156.29531966915826
Iterations: 20
Function evaluations: 191
Gradient evaluations: 20
Iteration: 1, Func. Count: 11, Neg. LLF: 174.06515937049656
Iteration: 2, Func. Count: 22, Neg. LLF: 160.0041508612963
Iteration: 3, Func. Count: 32, Neg. LLF: 159.47489280421735
Iteration: 4, Func. Count: 42, Neg. LLF: 231.670561882684
Iteration: 5, Func. Count: 55, Neg. LLF: 193.71582269092661
Iteration: 6, Func. Count: 69, Neg. LLF: 219.23155546817566
Iteration: 7, Func. Count: 81, Neg. LLF: 157.57364107331784
Iteration: 8, Func. Count: 91, Neg. LLF: 159.29931898038353
Iteration: 9, Func. Count: 103, Neg. LLF: 156.42255372826878
Iteration: 10, Func. Count: 113, Neg. LLF: 156.37017544758535
Iteration: 11, Func. Count: 123, Neg. LLF: 156.36035535334386
Iteration: 12, Func. Count: 133, Neg. LLF: 156.34336687321306
Iteration: 13, Func. Count: 143, Neg. LLF: 156.3372575390798
Iteration: 14, Func. Count: 153, Neg. LLF: 156.3286960002211
Iteration: 15, Func. Count: 163, Neg. LLF: 156.3166872358939
Iteration: 16, Func. Count: 173, Neg. LLF: 156.31128991807205
Iteration: 17, Func. Count: 183, Neg. LLF: 156.3071186612673
Iteration: 18, Func. Count: 193, Neg. LLF: 156.30433026752024
Iteration: 19, Func. Count: 203, Neg. LLF: 156.30053219315343
Iteration: 20, Func. Count: 213, Neg. LLF: 156.29749195524818
Iteration: 21, Func. Count: 223, Neg. LLF: 156.29576766523994
Iteration: 22, Func. Count: 233, Neg. LLF: 156.29536020805799
Iteration: 23, Func. Count: 243, Neg. LLF: 156.29532253406805
Iteration: 24, Func. Count: 253, Neg. LLF: 156.29531973690314
Iteration: 25, Func. Count: 262, Neg. LLF: 156.2953197427943
Optimization terminated successfully (Exit mode 0)
Current function value: 156.29531973690314
Iterations: 25
Function evaluations: 262
Gradient evaluations: 25
Iteration: 1, Func. Count: 12, Neg. LLF: 169.49148074352266
Iteration: 2, Func. Count: 24, Neg. LLF: 157.07035942955306
Iteration: 3, Func. Count: 35, Neg. LLF: 157.66558626489262
Iteration: 4, Func. Count: 47, Neg. LLF: 160.78701301501306
Iteration: 5, Func. Count: 61, Neg. LLF: 159.5618605891382
Iteration: 6, Func. Count: 73, Neg. LLF: 161.55070609548366
Iteration: 7, Func. Count: 87, Neg. LLF: 156.78506845975332
Iteration: 8, Func. Count: 99, Neg. LLF: 156.57332362319784
Iteration: 9, Func. Count: 111, Neg. LLF: 156.41902712625148
Iteration: 10, Func. Count: 122, Neg. LLF: 156.38378000646927
Iteration: 11, Func. Count: 133, Neg. LLF: 156.36835978677757
Iteration: 12, Func. Count: 144, Neg. LLF: 156.34531439265535
Iteration: 13, Func. Count: 155, Neg. LLF: 156.30985739572253
Iteration: 14, Func. Count: 166, Neg. LLF: 156.30216270677184
Iteration: 15, Func. Count: 177, Neg. LLF: 156.29752653624658
Iteration: 16, Func. Count: 188, Neg. LLF: 156.2958897297149
Iteration: 17, Func. Count: 199, Neg. LLF: 156.2954475540285
Iteration: 18, Func. Count: 210, Neg. LLF: 156.29532444605417
Iteration: 19, Func. Count: 221, Neg. LLF: 156.29532005305495
Iteration: 20, Func. Count: 231, Neg. LLF: 156.29532010142603
Optimization terminated successfully (Exit mode 0)
Current function value: 156.29532005305495
Iterations: 20
Function evaluations: 231
Gradient evaluations: 20
Iteration: 1, Func. Count: 13, Neg. LLF: 168.47867559285535
Iteration: 2, Func. Count: 26, Neg. LLF: 157.31325434020687
Iteration: 3, Func. Count: 38, Neg. LLF: 157.83968435399737
Iteration: 4, Func. Count: 51, Neg. LLF: 162.7373424817203
Iteration: 5, Func. Count: 67, Neg. LLF: 164.39016600692548
Iteration: 6, Func. Count: 82, Neg. LLF: 159.30850970892564
Iteration: 7, Func. Count: 95, Neg. LLF: 156.5838411133156
Iteration: 8, Func. Count: 107, Neg. LLF: 156.62859111003831
Iteration: 9, Func. Count: 120, Neg. LLF: 156.48425067949498
Iteration: 10, Func. Count: 132, Neg. LLF: 156.38786575700684
Iteration: 11, Func. Count: 144, Neg. LLF: 156.33639420340663
Iteration: 12, Func. Count: 156, Neg. LLF: 156.2997843948702
Iteration: 13, Func. Count: 168, Neg. LLF: 156.29560777123933
Iteration: 14, Func. Count: 180, Neg. LLF: 156.2953559269733
Iteration: 15, Func. Count: 192, Neg. LLF: 156.29532726206725
Iteration: 16, Func. Count: 204, Neg. LLF: 156.2953221785715
Iteration: 17, Func. Count: 216, Neg. LLF: 156.29532063123327
Iteration: 18, Func. Count: 228, Neg. LLF: 156.29531974301847
Optimization terminated successfully (Exit mode 0)
Current function value: 156.29531974301847
Iterations: 18
Function evaluations: 228
Gradient evaluations: 18
Iteration: 1, Func. Count: 14, Neg. LLF: 168.11662355816333
Iteration: 2, Func. Count: 31, Neg. LLF: 157.81182123643558
Iteration: 3, Func. Count: 44, Neg. LLF: 156.85056163606183
Iteration: 4, Func. Count: 57, Neg. LLF: 157.40045418183587
Iteration: 5, Func. Count: 71, Neg. LLF: 156.15900586944545
Iteration: 6, Func. Count: 84, Neg. LLF: 156.34118635747512
Iteration: 7, Func. Count: 98, Neg. LLF: 156.04876255084565
Iteration: 8, Func. Count: 111, Neg. LLF: 156.01565163101495
Iteration: 9, Func. Count: 124, Neg. LLF: 155.99592174389076
Iteration: 10, Func. Count: 137, Neg. LLF: 155.85739700229408
Iteration: 11, Func. Count: 150, Neg. LLF: 155.71050265574857
Iteration: 12, Func. Count: 163, Neg. LLF: 155.63300480226832
Iteration: 13, Func. Count: 177, Neg. LLF: 155.4603447894025
Iteration: 14, Func. Count: 190, Neg. LLF: 155.4564924045454
Iteration: 15, Func. Count: 203, Neg. LLF: 155.45620335565445
Iteration: 16, Func. Count: 216, Neg. LLF: 155.45619342814152
Iteration: 17, Func. Count: 228, Neg. LLF: 155.45619330430407
Optimization terminated successfully (Exit mode 0)
Current function value: 155.45619342814152
Iterations: 17
Function evaluations: 228
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 157.45786676802757
Iteration: 2, Func. Count: 21, Neg. LLF: 159.19148891361934
Iteration: 3, Func. Count: 33, Neg. LLF: 176.18775992406728
Iteration: 4, Func. Count: 44, Neg. LLF: 156.78179619587522
Iteration: 5, Func. Count: 54, Neg. LLF: 156.67029032929435
Iteration: 6, Func. Count: 64, Neg. LLF: 156.6440661211328
Iteration: 7, Func. Count: 74, Neg. LLF: 156.58130948505027
Iteration: 8, Func. Count: 84, Neg. LLF: 156.47138354759477
Iteration: 9, Func. Count: 94, Neg. LLF: 5347.541975123838
Iteration: 10, Func. Count: 106, Neg. LLF: 156.34191789087947
Iteration: 11, Func. Count: 116, Neg. LLF: 156.29841476167906
Iteration: 12, Func. Count: 126, Neg. LLF: 172.56447520831486
Iteration: 13, Func. Count: 139, Neg. LLF: 156.29619526755064
Iteration: 14, Func. Count: 149, Neg. LLF: 156.2954101879184
Iteration: 15, Func. Count: 159, Neg. LLF: 156.29532715226097
Iteration: 16, Func. Count: 169, Neg. LLF: 156.29531971935995
Iteration: 17, Func. Count: 178, Neg. LLF: 156.29531971309837
Optimization terminated successfully (Exit mode 0)
Current function value: 156.29531971935995
Iterations: 17
Function evaluations: 178
Gradient evaluations: 17
Iteration: 1, Func. Count: 12, Neg. LLF: 174.0873943471857
Iteration: 2, Func. Count: 24, Neg. LLF: 160.0411678358591
Iteration: 3, Func. Count: 35, Neg. LLF: 159.4043810335925
Iteration: 4, Func. Count: 46, Neg. LLF: 227.0517524333576
Iteration: 5, Func. Count: 60, Neg. LLF: 192.52638250907856
Iteration: 6, Func. Count: 75, Neg. LLF: 218.30608914126978
Iteration: 7, Func. Count: 88, Neg. LLF: 157.68107108097726
Iteration: 8, Func. Count: 99, Neg. LLF: 156.829126772982
Iteration: 9, Func. Count: 110, Neg. LLF: 156.6282352126556
Iteration: 10, Func. Count: 121, Neg. LLF: 156.39380342227102
Iteration: 11, Func. Count: 132, Neg. LLF: 156.34659229167804
Iteration: 12, Func. Count: 143, Neg. LLF: 156.33717868476552
Iteration: 13, Func. Count: 154, Neg. LLF: 156.33261210968496
Iteration: 14, Func. Count: 165, Neg. LLF: 156.316264196484
Iteration: 15, Func. Count: 176, Neg. LLF: 156.3092678958729
Iteration: 16, Func. Count: 187, Neg. LLF: 156.307583701725
Iteration: 17, Func. Count: 198, Neg. LLF: 156.3019641596134
Iteration: 18, Func. Count: 209, Neg. LLF: 156.29935906515902
Iteration: 19, Func. Count: 220, Neg. LLF: 156.2966845272052
Iteration: 20, Func. Count: 231, Neg. LLF: 156.29550787120414
Iteration: 21, Func. Count: 242, Neg. LLF: 156.29532790902317
Iteration: 22, Func. Count: 253, Neg. LLF: 156.29531999162336
Iteration: 23, Func. Count: 263, Neg. LLF: 156.2953199976097
Optimization terminated successfully (Exit mode 0)
Current function value: 156.29531999162336
Iterations: 23
Function evaluations: 263
Gradient evaluations: 23
Iteration: 1, Func. Count: 13, Neg. LLF: 169.5234086252884
Iteration: 2, Func. Count: 26, Neg. LLF: 157.08796634114057
Iteration: 3, Func. Count: 38, Neg. LLF: 157.68580936280222
Iteration: 4, Func. Count: 51, Neg. LLF: 160.80590781437593
Iteration: 5, Func. Count: 66, Neg. LLF: 160.07038184610923
Iteration: 6, Func. Count: 79, Neg. LLF: 161.64357333351134
Iteration: 7, Func. Count: 94, Neg. LLF: 156.46526589330696
Iteration: 8, Func. Count: 107, Neg. LLF: 156.68220470133593
Iteration: 9, Func. Count: 120, Neg. LLF: 156.41289337775382
Iteration: 10, Func. Count: 132, Neg. LLF: 156.37549951120536
Iteration: 11, Func. Count: 144, Neg. LLF: 156.3624384095652
Iteration: 12, Func. Count: 156, Neg. LLF: 156.3188429429552
Iteration: 13, Func. Count: 168, Neg. LLF: 156.30270087646622
Iteration: 14, Func. Count: 180, Neg. LLF: 156.29870432051678
Iteration: 15, Func. Count: 192, Neg. LLF: 156.29612060872486
Iteration: 16, Func. Count: 204, Neg. LLF: 156.29541956756466
Iteration: 17, Func. Count: 216, Neg. LLF: 156.29532415364406
Iteration: 18, Func. Count: 228, Neg. LLF: 156.2953196736874
Iteration: 19, Func. Count: 239, Neg. LLF: 156.29531972211672
Optimization terminated successfully (Exit mode 0)
Current function value: 156.2953196736874
Iterations: 19
Function evaluations: 239
Gradient evaluations: 19
Iteration: 1, Func. Count: 14, Neg. LLF: 168.29179824147272
Iteration: 2, Func. Count: 28, Neg. LLF: 157.30654016499278
Iteration: 3, Func. Count: 41, Neg. LLF: 157.78007029675808
Iteration: 4, Func. Count: 55, Neg. LLF: 163.02932603079236
Iteration: 5, Func. Count: 72, Neg. LLF: 163.2876407187049
Iteration: 6, Func. Count: 88, Neg. LLF: 159.74175101977806
Iteration: 7, Func. Count: 102, Neg. LLF: 156.63304689112385
Iteration: 8, Func. Count: 116, Neg. LLF: 156.5482917969356
Iteration: 9, Func. Count: 129, Neg. LLF: 156.4859767510863
Iteration: 10, Func. Count: 142, Neg. LLF: 156.43568630664348
Iteration: 11, Func. Count: 155, Neg. LLF: 156.36341822204852
Iteration: 12, Func. Count: 168, Neg. LLF: 156.31583105835398
Iteration: 13, Func. Count: 181, Neg. LLF: 156.298617314648
Iteration: 14, Func. Count: 194, Neg. LLF: 156.29586394182857
Iteration: 15, Func. Count: 207, Neg. LLF: 156.29555684603838
Iteration: 16, Func. Count: 220, Neg. LLF: 156.29539141172498
Iteration: 17, Func. Count: 233, Neg. LLF: 156.29533597558228
Iteration: 18, Func. Count: 246, Neg. LLF: 156.29532081852358
Iteration: 19, Func. Count: 259, Neg. LLF: 156.29531967557628
Iteration: 20, Func. Count: 271, Neg. LLF: 156.29531970620238
Optimization terminated successfully (Exit mode 0)
Current function value: 156.29531967557628
Iterations: 20
Function evaluations: 271
Gradient evaluations: 20
Iteration: 1, Func. Count: 15, Neg. LLF: 165.5076242920919
Iteration: 2, Func. Count: 33, Neg. LLF: 157.89587374450105
Iteration: 3, Func. Count: 47, Neg. LLF: 156.58633132047714
Iteration: 4, Func. Count: 61, Neg. LLF: 167.90656918736798
Iteration: 5, Func. Count: 79, Neg. LLF: 164.3380721309817
Iteration: 6, Func. Count: 96, Neg. LLF: 156.9679248865004
Iteration: 7, Func. Count: 111, Neg. LLF: 156.266377547896
Iteration: 8, Func. Count: 125, Neg. LLF: 156.47635465744347
Iteration: 9, Func. Count: 140, Neg. LLF: 156.04400670489076
Iteration: 10, Func. Count: 154, Neg. LLF: 156.02552555241255
Iteration: 11, Func. Count: 168, Neg. LLF: 155.98331255884997
Iteration: 12, Func. Count: 182, Neg. LLF: 155.91000148795277
Iteration: 13, Func. Count: 196, Neg. LLF: 155.77044025873596
Iteration: 14, Func. Count: 210, Neg. LLF: 155.5570383199805
Iteration: 15, Func. Count: 224, Neg. LLF: 155.59734512737265
Iteration: 16, Func. Count: 239, Neg. LLF: 155.4605498030217
Iteration: 17, Func. Count: 253, Neg. LLF: 155.45622680044943
Iteration: 18, Func. Count: 267, Neg. LLF: 155.4561949025429
Iteration: 19, Func. Count: 281, Neg. LLF: 155.45619321291161
Iteration: 20, Func. Count: 294, Neg. LLF: 155.45619308910912
Optimization terminated successfully (Exit mode 0)
Current function value: 155.45619321291161
Iterations: 20
Function evaluations: 294
Gradient evaluations: 20
Iteration: 1, Func. Count: 12, Neg. LLF: 158.9875320994996
Iteration: 2, Func. Count: 23, Neg. LLF: 157.31258728726178
Iteration: 3, Func. Count: 34, Neg. LLF: 176.97094574568473
Iteration: 4, Func. Count: 48, Neg. LLF: 156.8728950404165
Iteration: 5, Func. Count: 59, Neg. LLF: 156.77151209569553
Iteration: 6, Func. Count: 70, Neg. LLF: 156.49593665050605
Iteration: 7, Func. Count: 81, Neg. LLF: 156.0567540736562
Iteration: 8, Func. Count: 92, Neg. LLF: 201.88062665451295
Iteration: 9, Func. Count: 105, Neg. LLF: 155.60238271506
Iteration: 10, Func. Count: 116, Neg. LLF: 155.43301007262104
Iteration: 11, Func. Count: 127, Neg. LLF: 155.37056990204852
Iteration: 12, Func. Count: 138, Neg. LLF: 155.36378404419378
Iteration: 13, Func. Count: 149, Neg. LLF: 155.36296386739673
Iteration: 14, Func. Count: 160, Neg. LLF: 155.3629527306827
Iteration: 15, Func. Count: 170, Neg. LLF: 155.36295273801795
Optimization terminated successfully (Exit mode 0)
Current function value: 155.3629527306827
Iterations: 15
Function evaluations: 170
Gradient evaluations: 15
Iteration: 1, Func. Count: 13, Neg. LLF: 174.07934060273985
Iteration: 2, Func. Count: 26, Neg. LLF: 160.29146054929728
Iteration: 3, Func. Count: 38, Neg. LLF: 159.35494404652826
Iteration: 4, Func. Count: 50, Neg. LLF: 215.29667024995473
Iteration: 5, Func. Count: 65, Neg. LLF: 185.27907733103075
Iteration: 6, Func. Count: 81, Neg. LLF: 217.21213259502224
Iteration: 7, Func. Count: 95, Neg. LLF: 158.07484468340846
Iteration: 8, Func. Count: 108, Neg. LLF: 156.33914173928065
Iteration: 9, Func. Count: 120, Neg. LLF: 156.20284209928616
Iteration: 10, Func. Count: 132, Neg. LLF: 156.18907579650204
Iteration: 11, Func. Count: 144, Neg. LLF: 156.18103328364234
Iteration: 12, Func. Count: 156, Neg. LLF: 156.1762078769461
Iteration: 13, Func. Count: 168, Neg. LLF: 156.16261302316522
Iteration: 14, Func. Count: 180, Neg. LLF: 156.1505811070563
Iteration: 15, Func. Count: 192, Neg. LLF: 156.13696673662952
Iteration: 16, Func. Count: 204, Neg. LLF: 156.13289568929008
Iteration: 17, Func. Count: 216, Neg. LLF: 156.13234458762517
Iteration: 18, Func. Count: 228, Neg. LLF: 156.13219442103295
Iteration: 19, Func. Count: 240, Neg. LLF: 156.13194839079424
Iteration: 20, Func. Count: 252, Neg. LLF: 156.13165468927997
Iteration: 21, Func. Count: 264, Neg. LLF: 156.13141047740874
Iteration: 22, Func. Count: 276, Neg. LLF: 156.1313312153493
Iteration: 23, Func. Count: 288, Neg. LLF: 156.13132352691025
Iteration: 24, Func. Count: 299, Neg. LLF: 156.1313235334385
Optimization terminated successfully (Exit mode 0)
Current function value: 156.13132352691025
Iterations: 24
Function evaluations: 299
Gradient evaluations: 24
Iteration: 1, Func. Count: 14, Neg. LLF: 169.50455417457647
Iteration: 2, Func. Count: 28, Neg. LLF: 157.08367627878295
Iteration: 3, Func. Count: 41, Neg. LLF: 157.75675207332833
Iteration: 4, Func. Count: 55, Neg. LLF: 162.50708016141598
Iteration: 5, Func. Count: 71, Neg. LLF: 158.58428874315916
Iteration: 6, Func. Count: 85, Neg. LLF: 161.181990498493
Iteration: 7, Func. Count: 101, Neg. LLF: 177.24719935715862
Iteration: 8, Func. Count: 116, Neg. LLF: 156.29468987517993
Iteration: 9, Func. Count: 129, Neg. LLF: 156.26216976236802
Iteration: 10, Func. Count: 142, Neg. LLF: 156.22134112688877
Iteration: 11, Func. Count: 155, Neg. LLF: 156.2005683360789
Iteration: 12, Func. Count: 168, Neg. LLF: 156.18174240234808
Iteration: 13, Func. Count: 181, Neg. LLF: 156.1646469203822
Iteration: 14, Func. Count: 194, Neg. LLF: 156.15429234274757
Iteration: 15, Func. Count: 207, Neg. LLF: 156.14529615132048
Iteration: 16, Func. Count: 220, Neg. LLF: 156.13720690373188
Iteration: 17, Func. Count: 233, Neg. LLF: 156.13319856005037
Iteration: 18, Func. Count: 246, Neg. LLF: 156.13175388610168
Iteration: 19, Func. Count: 259, Neg. LLF: 156.13133236339692
Iteration: 20, Func. Count: 272, Neg. LLF: 156.13132407104024
Iteration: 21, Func. Count: 285, Neg. LLF: 156.13132340480914
Optimization terminated successfully (Exit mode 0)
Current function value: 156.13132340480914
Iterations: 21
Function evaluations: 285
Gradient evaluations: 21
Iteration: 1, Func. Count: 15, Neg. LLF: 164.987708025548
Iteration: 2, Func. Count: 33, Neg. LLF: 160.31997632270708
Iteration: 3, Func. Count: 47, Neg. LLF: 159.43685284724626
Iteration: 4, Func. Count: 61, Neg. LLF: 156.57436904494594
Iteration: 5, Func. Count: 75, Neg. LLF: 179.79571475744973
Iteration: 6, Func. Count: 93, Neg. LLF: 163.33297496663099
Iteration: 7, Func. Count: 109, Neg. LLF: 158.47841626466837
Iteration: 8, Func. Count: 124, Neg. LLF: 156.22322582201704
Iteration: 9, Func. Count: 138, Neg. LLF: 156.1985731395411
Iteration: 10, Func. Count: 152, Neg. LLF: 156.18138590148558
Iteration: 11, Func. Count: 166, Neg. LLF: 156.15586854214058
Iteration: 12, Func. Count: 180, Neg. LLF: 156.14444439584244
Iteration: 13, Func. Count: 194, Neg. LLF: 156.13523947552255
Iteration: 14, Func. Count: 208, Neg. LLF: 156.13426305170316
Iteration: 15, Func. Count: 222, Neg. LLF: 156.13348879431962
Iteration: 16, Func. Count: 236, Neg. LLF: 156.13254109229374
Iteration: 17, Func. Count: 250, Neg. LLF: 156.13173707849265
Iteration: 18, Func. Count: 264, Neg. LLF: 156.13138309853076
Iteration: 19, Func. Count: 278, Neg. LLF: 156.13132663501793
Iteration: 20, Func. Count: 292, Neg. LLF: 156.1313237439415
Iteration: 21, Func. Count: 305, Neg. LLF: 156.1313237822927
Optimization terminated successfully (Exit mode 0)
Current function value: 156.1313237439415
Iterations: 21
Function evaluations: 305
Gradient evaluations: 21
Iteration: 1, Func. Count: 16, Neg. LLF: 160.42172761934427
Iteration: 2, Func. Count: 35, Neg. LLF: 158.0552930487864
Iteration: 3, Func. Count: 50, Neg. LLF: 156.58832040319922
Iteration: 4, Func. Count: 65, Neg. LLF: 174.8383742754141
Iteration: 5, Func. Count: 85, Neg. LLF: 166.8271675518628
Iteration: 6, Func. Count: 104, Neg. LLF: 157.25950631238263
Iteration: 7, Func. Count: 120, Neg. LLF: 156.2707289692494
Iteration: 8, Func. Count: 136, Neg. LLF: 156.5159587970097
Iteration: 9, Func. Count: 152, Neg. LLF: 155.90631094283683
Iteration: 10, Func. Count: 167, Neg. LLF: 155.88161398773624
Iteration: 11, Func. Count: 182, Neg. LLF: 155.85640778537768
Iteration: 12, Func. Count: 197, Neg. LLF: 155.78866042351783
Iteration: 13, Func. Count: 212, Neg. LLF: 155.5659523763083
Iteration: 14, Func. Count: 227, Neg. LLF: 155.93397557153494
Iteration: 15, Func. Count: 243, Neg. LLF: 155.38743058095986
Iteration: 16, Func. Count: 258, Neg. LLF: 155.3167587347367
Iteration: 17, Func. Count: 273, Neg. LLF: 155.31649642560453
Iteration: 18, Func. Count: 289, Neg. LLF: 155.3083565969502
Iteration: 19, Func. Count: 304, Neg. LLF: 155.30830062388847
Iteration: 20, Func. Count: 319, Neg. LLF: 155.3082985370634
Iteration: 21, Func. Count: 333, Neg. LLF: 155.3082984219488
Optimization terminated successfully (Exit mode 0)
Current function value: 155.3082985370634
Iterations: 21
Function evaluations: 333
Gradient evaluations: 21
Iteration: 1, Func. Count: 6, Neg. LLF: 160.8061538691717
Iteration: 2, Func. Count: 11, Neg. LLF: 165.45932984359573
Iteration: 3, Func. Count: 17, Neg. LLF: 156.95893674729427
Iteration: 4, Func. Count: 22, Neg. LLF: 156.92861100968565
Iteration: 5, Func. Count: 27, Neg. LLF: 156.89746131200323
Iteration: 6, Func. Count: 32, Neg. LLF: 156.8287527719164
Iteration: 7, Func. Count: 37, Neg. LLF: 156.69914167733015
Iteration: 8, Func. Count: 42, Neg. LLF: 156.66273988785102
Iteration: 9, Func. Count: 47, Neg. LLF: 156.657962406394
Iteration: 10, Func. Count: 52, Neg. LLF: 156.6579146694208
Iteration: 11, Func. Count: 57, Neg. LLF: 156.65791373102257
Optimization terminated successfully (Exit mode 0)
Current function value: 156.65791373102257
Iterations: 11
Function evaluations: 57
Gradient evaluations: 11
Iteration: 1, Func. Count: 5, Neg. LLF: 162.95207627575397
Iteration: 2, Func. Count: 9, Neg. LLF: 163.85934548732948
Iteration: 3, Func. Count: 14, Neg. LLF: 161.57631432536806
Iteration: 4, Func. Count: 18, Neg. LLF: 161.50951613460887
Iteration: 5, Func. Count: 22, Neg. LLF: 161.35048528975065
Iteration: 6, Func. Count: 26, Neg. LLF: 161.28813750982246
Iteration: 7, Func. Count: 30, Neg. LLF: 161.27587188372834
Iteration: 8, Func. Count: 34, Neg. LLF: 161.27527985129956
Iteration: 9, Func. Count: 38, Neg. LLF: 161.2752547026511
Iteration: 10, Func. Count: 42, Neg. LLF: 161.2752527631034
Iteration: 11, Func. Count: 45, Neg. LLF: 161.27525276553075
Optimization terminated successfully (Exit mode 0)
Current function value: 161.2752527631034
Iterations: 11
Function evaluations: 45
Gradient evaluations: 11
Iteration: 1, Func. Count: 6, Neg. LLF: 175.40741023858246
Iteration: 2, Func. Count: 12, Neg. LLF: 160.41006101399273
Iteration: 3, Func. Count: 17, Neg. LLF: 163.23053020981808
Iteration: 4, Func. Count: 23, Neg. LLF: 160.26482595597605
Iteration: 5, Func. Count: 29, Neg. LLF: 159.9934414451937
Iteration: 6, Func. Count: 34, Neg. LLF: 159.98866947114777
Iteration: 7, Func. Count: 39, Neg. LLF: 159.97840644381264
Iteration: 8, Func. Count: 44, Neg. LLF: 159.96385844435642
Iteration: 9, Func. Count: 49, Neg. LLF: 159.9524678551074
Iteration: 10, Func. Count: 54, Neg. LLF: 159.94929642354643
Iteration: 11, Func. Count: 59, Neg. LLF: 159.94904019600347
Iteration: 12, Func. Count: 64, Neg. LLF: 159.94902738591577
Iteration: 13, Func. Count: 68, Neg. LLF: 159.94902734186329
Optimization terminated successfully (Exit mode 0)
Current function value: 159.94902738591577
Iterations: 13
Function evaluations: 68
Gradient evaluations: 13
Iteration: 1, Func. Count: 7, Neg. LLF: 171.47151082399964
Iteration: 2, Func. Count: 14, Neg. LLF: 161.00490294191334
Iteration: 3, Func. Count: 23, Neg. LLF: 160.7150515611516
Iteration: 4, Func. Count: 29, Neg. LLF: 160.63328676618346
Iteration: 5, Func. Count: 35, Neg. LLF: 160.6411376608221
Iteration: 6, Func. Count: 42, Neg. LLF: 160.56503677079706
Iteration: 7, Func. Count: 48, Neg. LLF: 160.5550904488574
Iteration: 8, Func. Count: 54, Neg. LLF: 160.55079867037043
Iteration: 9, Func. Count: 60, Neg. LLF: 160.55055053450474
Iteration: 10, Func. Count: 66, Neg. LLF: 160.5505300314033
Iteration: 11, Func. Count: 72, Neg. LLF: 160.5505219745814
Iteration: 12, Func. Count: 77, Neg. LLF: 160.55052177621326
Optimization terminated successfully (Exit mode 0)
Current function value: 160.5505219745814
Iterations: 12
Function evaluations: 77
Gradient evaluations: 12
Iteration: 1, Func. Count: 8, Neg. LLF: 170.09144581013393
Iteration: 2, Func. Count: 16, Neg. LLF: 160.4470654281721
Iteration: 3, Func. Count: 23, Neg. LLF: 166.05120225395888
Iteration: 4, Func. Count: 31, Neg. LLF: 160.08122656564584
Iteration: 5, Func. Count: 38, Neg. LLF: 160.03475901739918
Iteration: 6, Func. Count: 45, Neg. LLF: 160.02245556127
Iteration: 7, Func. Count: 52, Neg. LLF: 159.99212515118637
Iteration: 8, Func. Count: 59, Neg. LLF: 159.96625807588427
Iteration: 9, Func. Count: 66, Neg. LLF: 159.95094413965194
Iteration: 10, Func. Count: 73, Neg. LLF: 159.9491208881771
Iteration: 11, Func. Count: 80, Neg. LLF: 159.9490353335832
Iteration: 12, Func. Count: 87, Neg. LLF: 159.94902705463812
Iteration: 13, Func. Count: 93, Neg. LLF: 159.9490271176721
Optimization terminated successfully (Exit mode 0)
Current function value: 159.94902705463812
Iterations: 13
Function evaluations: 93
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 173.97911409109594
Iteration: 2, Func. Count: 18, Neg. LLF: 161.0249580424973
Iteration: 3, Func. Count: 26, Neg. LLF: 159.68432915607002
Iteration: 4, Func. Count: 34, Neg. LLF: 160.07909953612818
Iteration: 5, Func. Count: 43, Neg. LLF: 159.2701258110118
Iteration: 6, Func. Count: 51, Neg. LLF: 159.2104147465027
Iteration: 7, Func. Count: 59, Neg. LLF: 159.106728741251
Iteration: 8, Func. Count: 67, Neg. LLF: 158.93548923285255
Iteration: 9, Func. Count: 75, Neg. LLF: 158.8061985607986
Iteration: 10, Func. Count: 83, Neg. LLF: 158.67659056721328
Iteration: 11, Func. Count: 91, Neg. LLF: 158.62854426031706
Iteration: 12, Func. Count: 99, Neg. LLF: 158.61371523471453
Iteration: 13, Func. Count: 107, Neg. LLF: 158.61277343050887
Iteration: 14, Func. Count: 115, Neg. LLF: 158.61272760784706
Iteration: 15, Func. Count: 123, Neg. LLF: 158.6127107634239
Iteration: 16, Func. Count: 130, Neg. LLF: 158.61271060954695
Optimization terminated successfully (Exit mode 0)
Current function value: 158.6127107634239
Iterations: 16
Function evaluations: 130
Gradient evaluations: 16
Iteration: 1, Func. Count: 6, Neg. LLF: 160.7924731496088
Iteration: 2, Func. Count: 11, Neg. LLF: 165.4758120003384
Iteration: 3, Func. Count: 17, Neg. LLF: 157.10251565463867
Iteration: 4, Func. Count: 22, Neg. LLF: 157.05705843861386
Iteration: 5, Func. Count: 27, Neg. LLF: 157.03228812919232
Iteration: 6, Func. Count: 32, Neg. LLF: 156.98883607924557
Iteration: 7, Func. Count: 37, Neg. LLF: 156.86602704815505
Iteration: 8, Func. Count: 42, Neg. LLF: 156.81405188847637
Iteration: 9, Func. Count: 47, Neg. LLF: 156.8038372007482
Iteration: 10, Func. Count: 52, Neg. LLF: 156.80382193350545
Iteration: 11, Func. Count: 57, Neg. LLF: 156.80381830721603
Iteration: 12, Func. Count: 61, Neg. LLF: 156.80381828274423
Optimization terminated successfully (Exit mode 0)
Current function value: 156.80381830721603
Iterations: 12
Function evaluations: 61
Gradient evaluations: 12
Iteration: 1, Func. Count: 7, Neg. LLF: 175.40521886315565
Iteration: 2, Func. Count: 14, Neg. LLF: 159.40070104587
Iteration: 3, Func. Count: 20, Neg. LLF: 158.9033073074529
Iteration: 4, Func. Count: 26, Neg. LLF: 156.99427663564296
Iteration: 5, Func. Count: 32, Neg. LLF: 157.07514307300508
Iteration: 6, Func. Count: 39, Neg. LLF: 156.8097401363544
Iteration: 7, Func. Count: 45, Neg. LLF: 156.80917397404818
Iteration: 8, Func. Count: 51, Neg. LLF: 156.8088887076271
Iteration: 9, Func. Count: 57, Neg. LLF: 156.80758747369805
Iteration: 10, Func. Count: 63, Neg. LLF: 156.8041537119727
Iteration: 11, Func. Count: 69, Neg. LLF: 156.80381902533804
Iteration: 12, Func. Count: 75, Neg. LLF: 156.8038182883796
Optimization terminated successfully (Exit mode 0)
Current function value: 156.8038182883796
Iterations: 12
Function evaluations: 75
Gradient evaluations: 12
Iteration: 1, Func. Count: 8, Neg. LLF: 160.8025555723905
Iteration: 2, Func. Count: 15, Neg. LLF: 159.12816821657395
Iteration: 3, Func. Count: 22, Neg. LLF: 159.60691794607604
Iteration: 4, Func. Count: 30, Neg. LLF: 172.6123213500113
Iteration: 5, Func. Count: 38, Neg. LLF: 162.80683038784233
Iteration: 6, Func. Count: 47, Neg. LLF: 157.15552418674426
Iteration: 7, Func. Count: 54, Neg. LLF: 157.02602853332078
Iteration: 8, Func. Count: 61, Neg. LLF: 156.93516536184845
Iteration: 9, Func. Count: 68, Neg. LLF: 156.84434360039515
Iteration: 10, Func. Count: 75, Neg. LLF: 156.81336930495036
Iteration: 11, Func. Count: 82, Neg. LLF: 156.80548590661047
Iteration: 12, Func. Count: 89, Neg. LLF: 156.8041955587774
Iteration: 13, Func. Count: 96, Neg. LLF: 156.80387251065144
Iteration: 14, Func. Count: 103, Neg. LLF: 156.80382155728728
Iteration: 15, Func. Count: 110, Neg. LLF: 156.80381841651763
Iteration: 16, Func. Count: 116, Neg. LLF: 156.80381845659093
Optimization terminated successfully (Exit mode 0)
Current function value: 156.80381841651763
Iterations: 16
Function evaluations: 116
Gradient evaluations: 16
Iteration: 1, Func. Count: 9, Neg. LLF: 160.38987615192707
Iteration: 2, Func. Count: 17, Neg. LLF: 161.892802663846
Iteration: 3, Func. Count: 26, Neg. LLF: 161.59814161237708
Iteration: 4, Func. Count: 35, Neg. LLF: 159.04807102139364
Iteration: 5, Func. Count: 43, Neg. LLF: 159.04634502085057
Iteration: 6, Func. Count: 52, Neg. LLF: 158.87898261990748
Iteration: 7, Func. Count: 60, Neg. LLF: 158.83359488671093
Iteration: 8, Func. Count: 68, Neg. LLF: 158.37295985060288
Iteration: 9, Func. Count: 76, Neg. LLF: 156.93177788990977
Iteration: 10, Func. Count: 84, Neg. LLF: 156.87067857951894
Iteration: 11, Func. Count: 92, Neg. LLF: 156.85550718664038
Iteration: 12, Func. Count: 100, Neg. LLF: 156.84547308958176
Iteration: 13, Func. Count: 108, Neg. LLF: 156.83398995608704
Iteration: 14, Func. Count: 116, Neg. LLF: 156.81580832181015
Iteration: 15, Func. Count: 124, Neg. LLF: 156.80627225039657
Iteration: 16, Func. Count: 132, Neg. LLF: 156.80391346020392
Iteration: 17, Func. Count: 140, Neg. LLF: 156.80381854627385
Iteration: 18, Func. Count: 147, Neg. LLF: 156.8038185481994
Optimization terminated successfully (Exit mode 0)
Current function value: 156.80381854627385
Iterations: 18
Function evaluations: 147
Gradient evaluations: 18
Iteration: 1, Func. Count: 10, Neg. LLF: 157.97499075936025
Iteration: 2, Func. Count: 19, Neg. LLF: 158.47156379116825
Iteration: 3, Func. Count: 29, Neg. LLF: 159.8897201052812
Iteration: 4, Func. Count: 39, Neg. LLF: 155.87594603068067
Iteration: 5, Func. Count: 48, Neg. LLF: 155.82987742089435
Iteration: 6, Func. Count: 57, Neg. LLF: 155.6742017640208
Iteration: 7, Func. Count: 66, Neg. LLF: 155.74390116425513
Iteration: 8, Func. Count: 76, Neg. LLF: 158.99136436522807
Iteration: 9, Func. Count: 86, Neg. LLF: 155.25678095715455
Iteration: 10, Func. Count: 95, Neg. LLF: 155.13837818936068
Iteration: 11, Func. Count: 104, Neg. LLF: 155.07092916165456
Iteration: 12, Func. Count: 113, Neg. LLF: 155.06307859303985
Iteration: 13, Func. Count: 123, Neg. LLF: 155.0407158309522
Iteration: 14, Func. Count: 132, Neg. LLF: 155.0406544318415
Iteration: 15, Func. Count: 140, Neg. LLF: 155.04065425433066
Optimization terminated successfully (Exit mode 0)
Current function value: 155.0406544318415
Iterations: 15
Function evaluations: 140
Gradient evaluations: 15
Iteration: 1, Func. Count: 7, Neg. LLF: 159.65938665118588
Iteration: 2, Func. Count: 13, Neg. LLF: 166.84553748804487
Iteration: 3, Func. Count: 20, Neg. LLF: 157.11371919921794
Iteration: 4, Func. Count: 26, Neg. LLF: 157.06956026241008
Iteration: 5, Func. Count: 32, Neg. LLF: 157.04000650874985
Iteration: 6, Func. Count: 38, Neg. LLF: 156.9904491713157
Iteration: 7, Func. Count: 44, Neg. LLF: 156.86529835529598
Iteration: 8, Func. Count: 50, Neg. LLF: 156.81290506922184
Iteration: 9, Func. Count: 56, Neg. LLF: 156.80385944711705
Iteration: 10, Func. Count: 62, Neg. LLF: 156.80382132127482
Iteration: 11, Func. Count: 68, Neg. LLF: 156.80381864600628
Iteration: 12, Func. Count: 73, Neg. LLF: 156.80381866789605
Optimization terminated successfully (Exit mode 0)
Current function value: 156.80381864600628
Iterations: 12
Function evaluations: 73
Gradient evaluations: 12
Iteration: 1, Func. Count: 8, Neg. LLF: 175.4245575148057
Iteration: 2, Func. Count: 16, Neg. LLF: 159.47132073606832
Iteration: 3, Func. Count: 23, Neg. LLF: 158.9474691405819
Iteration: 4, Func. Count: 30, Neg. LLF: 156.97105855939026
Iteration: 5, Func. Count: 37, Neg. LLF: 157.01094426098123
Iteration: 6, Func. Count: 45, Neg. LLF: 156.81019232134176
Iteration: 7, Func. Count: 52, Neg. LLF: 156.8093761160214
Iteration: 8, Func. Count: 59, Neg. LLF: 156.80906722315544
Iteration: 9, Func. Count: 66, Neg. LLF: 156.8074196196846
Iteration: 10, Func. Count: 73, Neg. LLF: 156.80568896303288
Iteration: 11, Func. Count: 80, Neg. LLF: 156.8042298732697
Iteration: 12, Func. Count: 87, Neg. LLF: 156.80385238857022
Iteration: 13, Func. Count: 94, Neg. LLF: 156.80381879614941
Iteration: 14, Func. Count: 100, Neg. LLF: 156.8038188220256
Optimization terminated successfully (Exit mode 0)
Current function value: 156.80381879614941
Iterations: 14
Function evaluations: 100
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 161.13669554295737
Iteration: 2, Func. Count: 17, Neg. LLF: 157.97845919714928
Iteration: 3, Func. Count: 25, Neg. LLF: 157.9729534847298
Iteration: 4, Func. Count: 34, Neg. LLF: 160.78332580230034
Iteration: 5, Func. Count: 43, Neg. LLF: 156.84990312795864
Iteration: 6, Func. Count: 51, Neg. LLF: 156.83391626417517
Iteration: 7, Func. Count: 59, Neg. LLF: 156.8284144854115
Iteration: 8, Func. Count: 67, Neg. LLF: 156.8087296541833
Iteration: 9, Func. Count: 75, Neg. LLF: 156.80388434959477
Iteration: 10, Func. Count: 83, Neg. LLF: 156.803818821298
Iteration: 11, Func. Count: 90, Neg. LLF: 156.80381886130377
Optimization terminated successfully (Exit mode 0)
Current function value: 156.803818821298
Iterations: 11
Function evaluations: 90
Gradient evaluations: 11
Iteration: 1, Func. Count: 10, Neg. LLF: 160.26704318429168
Iteration: 2, Func. Count: 19, Neg. LLF: 162.26503557278656
Iteration: 3, Func. Count: 29, Neg. LLF: 161.68023905434742
Iteration: 4, Func. Count: 39, Neg. LLF: 159.1747507041852
Iteration: 5, Func. Count: 48, Neg. LLF: 159.0172932125616
Iteration: 6, Func. Count: 57, Neg. LLF: 158.92806360202948
Iteration: 7, Func. Count: 66, Neg. LLF: 158.8303371037483
Iteration: 8, Func. Count: 75, Neg. LLF: 158.7359068711825
Iteration: 9, Func. Count: 84, Neg. LLF: 157.5431564780327
Iteration: 10, Func. Count: 93, Neg. LLF: 156.8869043288002
Iteration: 11, Func. Count: 102, Neg. LLF: 156.87320733987463
Iteration: 12, Func. Count: 112, Neg. LLF: 156.80955432843928
Iteration: 13, Func. Count: 121, Neg. LLF: 156.8055947933189
Iteration: 14, Func. Count: 130, Neg. LLF: 156.80416444963058
Iteration: 15, Func. Count: 139, Neg. LLF: 156.80389535348027
Iteration: 16, Func. Count: 148, Neg. LLF: 156.80381891619305
Iteration: 17, Func. Count: 157, Neg. LLF: 156.8038182912078
Optimization terminated successfully (Exit mode 0)
Current function value: 156.8038182912078
Iterations: 17
Function evaluations: 157
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 158.51769381453303
Iteration: 2, Func. Count: 21, Neg. LLF: 156.82570701715642
Iteration: 3, Func. Count: 31, Neg. LLF: 158.58826170564657
Iteration: 4, Func. Count: 42, Neg. LLF: 155.9360348716027
Iteration: 5, Func. Count: 52, Neg. LLF: 155.96661593014872
Iteration: 6, Func. Count: 63, Neg. LLF: 155.84546490591725
Iteration: 7, Func. Count: 73, Neg. LLF: 155.78892041544185
Iteration: 8, Func. Count: 83, Neg. LLF: 155.74421813629218
Iteration: 9, Func. Count: 93, Neg. LLF: 155.46813247389466
Iteration: 10, Func. Count: 103, Neg. LLF: 155.74122558393975
Iteration: 11, Func. Count: 114, Neg. LLF: 155.73602326466988
Iteration: 12, Func. Count: 125, Neg. LLF: 155.0755695614759
Iteration: 13, Func. Count: 135, Neg. LLF: 155.04399641543503
Iteration: 14, Func. Count: 145, Neg. LLF: 155.04107665064478
Iteration: 15, Func. Count: 155, Neg. LLF: 155.040777581609
Iteration: 16, Func. Count: 165, Neg. LLF: 155.0406557207241
Iteration: 17, Func. Count: 175, Neg. LLF: 155.04065434199688
Iteration: 18, Func. Count: 184, Neg. LLF: 155.04065416451203
Optimization terminated successfully (Exit mode 0)
Current function value: 155.04065434199688
Iterations: 18
Function evaluations: 184
Gradient evaluations: 18
Iteration: 1, Func. Count: 8, Neg. LLF: 158.81214898118037
Iteration: 2, Func. Count: 15, Neg. LLF: 166.47522229443643
Iteration: 3, Func. Count: 23, Neg. LLF: 157.11355409066363
Iteration: 4, Func. Count: 30, Neg. LLF: 157.07782617127555
Iteration: 5, Func. Count: 37, Neg. LLF: 157.03871089016448
Iteration: 6, Func. Count: 44, Neg. LLF: 156.98352288851902
Iteration: 7, Func. Count: 51, Neg. LLF: 156.84649151880814
Iteration: 8, Func. Count: 58, Neg. LLF: 156.80842482190715
Iteration: 9, Func. Count: 65, Neg. LLF: 156.80387225284048
Iteration: 10, Func. Count: 72, Neg. LLF: 156.80381982410418
Iteration: 11, Func. Count: 79, Neg. LLF: 156.80381836988627
Iteration: 12, Func. Count: 85, Neg. LLF: 156.80381839267747
Optimization terminated successfully (Exit mode 0)
Current function value: 156.80381836988627
Iterations: 12
Function evaluations: 85
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 175.41430537183479
Iteration: 2, Func. Count: 18, Neg. LLF: 162.44340690889115
Iteration: 3, Func. Count: 29, Neg. LLF: 160.62930022731516
Iteration: 4, Func. Count: 37, Neg. LLF: 160.59409223965994
Iteration: 5, Func. Count: 45, Neg. LLF: 160.56264375877188
Iteration: 6, Func. Count: 53, Neg. LLF: 160.55405539030335
Iteration: 7, Func. Count: 61, Neg. LLF: 160.55076077340172
Iteration: 8, Func. Count: 69, Neg. LLF: 160.55070311316405
Iteration: 9, Func. Count: 77, Neg. LLF: 160.55070149793787
Iteration: 10, Func. Count: 84, Neg. LLF: 160.55070129671878
Optimization terminated successfully (Exit mode 0)
Current function value: 160.55070149793787
Iterations: 10
Function evaluations: 84
Gradient evaluations: 10
Iteration: 1, Func. Count: 10, Neg. LLF: 161.0508771080359
Iteration: 2, Func. Count: 19, Neg. LLF: 158.1574221703175
Iteration: 3, Func. Count: 28, Neg. LLF: 158.14417244511253
Iteration: 4, Func. Count: 38, Neg. LLF: 162.9604319377108
Iteration: 5, Func. Count: 48, Neg. LLF: 156.8915793681489
Iteration: 6, Func. Count: 57, Neg. LLF: 156.86226243073705
Iteration: 7, Func. Count: 66, Neg. LLF: 156.84742911775496
Iteration: 8, Func. Count: 75, Neg. LLF: 156.8160603925783
Iteration: 9, Func. Count: 84, Neg. LLF: 156.80567421154177
Iteration: 10, Func. Count: 93, Neg. LLF: 156.80396325014854
Iteration: 11, Func. Count: 102, Neg. LLF: 156.80382561650276
Iteration: 12, Func. Count: 111, Neg. LLF: 156.8038184265284
Iteration: 13, Func. Count: 119, Neg. LLF: 156.80381846665455
Optimization terminated successfully (Exit mode 0)
Current function value: 156.8038184265284
Iterations: 13
Function evaluations: 119
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 160.27473330479037
Iteration: 2, Func. Count: 21, Neg. LLF: 161.9439840368548
Iteration: 3, Func. Count: 32, Neg. LLF: 161.81582727762247
Iteration: 4, Func. Count: 43, Neg. LLF: 159.0350560150976
Iteration: 5, Func. Count: 53, Neg. LLF: 159.17994332137798
Iteration: 6, Func. Count: 64, Neg. LLF: 158.92255827410577
Iteration: 7, Func. Count: 74, Neg. LLF: 158.88810572787025
Iteration: 8, Func. Count: 84, Neg. LLF: 158.8319888403765
Iteration: 9, Func. Count: 94, Neg. LLF: 158.0490314755769
Iteration: 10, Func. Count: 104, Neg. LLF: 157.82804835556345
Iteration: 11, Func. Count: 114, Neg. LLF: 157.32228081646142
Iteration: 12, Func. Count: 124, Neg. LLF: 156.87195625275342
Iteration: 13, Func. Count: 134, Neg. LLF: 156.86397363857142
Iteration: 14, Func. Count: 144, Neg. LLF: 156.8505251537811
Iteration: 15, Func. Count: 154, Neg. LLF: 156.83582033296994
Iteration: 16, Func. Count: 164, Neg. LLF: 156.81445398182706
Iteration: 17, Func. Count: 174, Neg. LLF: 156.80559250790688
Iteration: 18, Func. Count: 184, Neg. LLF: 156.80386003934112
Iteration: 19, Func. Count: 194, Neg. LLF: 156.80381835291504
Iteration: 20, Func. Count: 203, Neg. LLF: 156.80381835487154
Optimization terminated successfully (Exit mode 0)
Current function value: 156.80381835291504
Iterations: 20
Function evaluations: 203
Gradient evaluations: 20
Iteration: 1, Func. Count: 12, Neg. LLF: 158.51694376335908
Iteration: 2, Func. Count: 23, Neg. LLF: 156.82365488197786
Iteration: 3, Func. Count: 34, Neg. LLF: 158.56042631790226
Iteration: 4, Func. Count: 46, Neg. LLF: 155.93568149424433
Iteration: 5, Func. Count: 57, Neg. LLF: 155.9707730359284
Iteration: 6, Func. Count: 69, Neg. LLF: 155.84467359053167
Iteration: 7, Func. Count: 80, Neg. LLF: 155.78908619222256
Iteration: 8, Func. Count: 91, Neg. LLF: 155.7436856814143
Iteration: 9, Func. Count: 102, Neg. LLF: 155.4645401214087
Iteration: 10, Func. Count: 113, Neg. LLF: 155.74267847042697
Iteration: 11, Func. Count: 125, Neg. LLF: 155.72517310003153
Iteration: 12, Func. Count: 137, Neg. LLF: 155.07760030093772
Iteration: 13, Func. Count: 148, Neg. LLF: 155.04414460813163
Iteration: 14, Func. Count: 159, Neg. LLF: 155.04106739160142
Iteration: 15, Func. Count: 170, Neg. LLF: 155.0407864414287
Iteration: 16, Func. Count: 181, Neg. LLF: 155.04065485991168
Iteration: 17, Func. Count: 192, Neg. LLF: 155.04065432453578
Optimization terminated successfully (Exit mode 0)
Current function value: 155.04065432453578
Iterations: 17
Function evaluations: 192
Gradient evaluations: 17
Iteration: 1, Func. Count: 5, Neg. LLF: 164.94835401727275
Iteration: 2, Func. Count: 9, Neg. LLF: 164.9933260117664
Iteration: 3, Func. Count: 14, Neg. LLF: 164.8528392400913
Iteration: 4, Func. Count: 18, Neg. LLF: 164.680853604016
Iteration: 5, Func. Count: 22, Neg. LLF: 164.44384750718103
Iteration: 6, Func. Count: 26, Neg. LLF: 163.76240927547988
Iteration: 7, Func. Count: 30, Neg. LLF: 162.4247014434171
Iteration: 8, Func. Count: 34, Neg. LLF: 162.37858920153832
Iteration: 9, Func. Count: 38, Neg. LLF: 162.2609439539033
Iteration: 10, Func. Count: 42, Neg. LLF: 162.24968123434058
Iteration: 11, Func. Count: 46, Neg. LLF: 162.24523334584836
Iteration: 12, Func. Count: 50, Neg. LLF: 162.24497209262788
Iteration: 13, Func. Count: 54, Neg. LLF: 162.2449712890891
Optimization terminated successfully (Exit mode 0)
Current function value: 162.2449712890891
Iterations: 13
Function evaluations: 54
Gradient evaluations: 13
Iteration: 1, Func. Count: 6, Neg. LLF: 190.36663746630296
Iteration: 2, Func. Count: 13, Neg. LLF: 162.04210063430335
Iteration: 3, Func. Count: 18, Neg. LLF: 162.0511718849512
Iteration: 4, Func. Count: 24, Neg. LLF: 162.0391812562494
Iteration: 5, Func. Count: 29, Neg. LLF: 162.03506473246543
Iteration: 6, Func. Count: 34, Neg. LLF: 162.0255776080025
Iteration: 7, Func. Count: 39, Neg. LLF: 162.00016266593283
Iteration: 8, Func. Count: 44, Neg. LLF: 161.9889684270086
Iteration: 9, Func. Count: 49, Neg. LLF: 168.098596605982
Iteration: 10, Func. Count: 56, Neg. LLF: 161.73266156262065
Iteration: 11, Func. Count: 61, Neg. LLF: 161.8663337053455
Iteration: 12, Func. Count: 67, Neg. LLF: 161.66446239637702
Iteration: 13, Func. Count: 72, Neg. LLF: 161.6386899369203
Iteration: 14, Func. Count: 77, Neg. LLF: 161.63300220462668
Iteration: 15, Func. Count: 82, Neg. LLF: 161.6322162920641
Iteration: 16, Func. Count: 87, Neg. LLF: 161.63218818205613
Iteration: 17, Func. Count: 91, Neg. LLF: 161.63218818213133
Optimization terminated successfully (Exit mode 0)
Current function value: 161.63218818205613
Iterations: 17
Function evaluations: 91
Gradient evaluations: 17
Iteration: 1, Func. Count: 7, Neg. LLF: 184.13629078862908
Iteration: 2, Func. Count: 14, Neg. LLF: 161.9795216536207
Iteration: 3, Func. Count: 20, Neg. LLF: 161.95522699769108
Iteration: 4, Func. Count: 26, Neg. LLF: 161.8749122260494
Iteration: 5, Func. Count: 32, Neg. LLF: 161.86416909137122
Iteration: 6, Func. Count: 38, Neg. LLF: 161.85803881732252
Iteration: 7, Func. Count: 44, Neg. LLF: 161.8537848389132
Iteration: 8, Func. Count: 50, Neg. LLF: 161.82832175849998
Iteration: 9, Func. Count: 56, Neg. LLF: 161.7719854708616
Iteration: 10, Func. Count: 62, Neg. LLF: 161.75238398560543
Iteration: 11, Func. Count: 68, Neg. LLF: 161.67184619904614
Iteration: 12, Func. Count: 74, Neg. LLF: 161.61768718267027
Iteration: 13, Func. Count: 80, Neg. LLF: 161.61114327814732
Iteration: 14, Func. Count: 86, Neg. LLF: 161.62063487763044
Iteration: 15, Func. Count: 93, Neg. LLF: 161.60737062980107
Iteration: 16, Func. Count: 99, Neg. LLF: 161.6073212620212
Iteration: 17, Func. Count: 105, Neg. LLF: 161.60732046823858
Optimization terminated successfully (Exit mode 0)
Current function value: 161.60732046823858
Iterations: 17
Function evaluations: 105
Gradient evaluations: 17
Iteration: 1, Func. Count: 8, Neg. LLF: 176.56105468295112
Iteration: 2, Func. Count: 16, Neg. LLF: 161.7984365740701
Iteration: 3, Func. Count: 23, Neg. LLF: 161.72963214252056
Iteration: 4, Func. Count: 30, Neg. LLF: 161.72075836103585
Iteration: 5, Func. Count: 37, Neg. LLF: 161.71823955478166
Iteration: 6, Func. Count: 44, Neg. LLF: 161.71804039421767
Iteration: 7, Func. Count: 51, Neg. LLF: 161.71752978465338
Iteration: 8, Func. Count: 58, Neg. LLF: 161.7162467903577
Iteration: 9, Func. Count: 65, Neg. LLF: 161.71207895453693
Iteration: 10, Func. Count: 72, Neg. LLF: 161.6966163755591
Iteration: 11, Func. Count: 79, Neg. LLF: 161.68662989349662
Iteration: 12, Func. Count: 86, Neg. LLF: 161.63656035463674
Iteration: 13, Func. Count: 93, Neg. LLF: 161.67120780307235
Iteration: 14, Func. Count: 101, Neg. LLF: 161.61831313622432
Iteration: 15, Func. Count: 108, Neg. LLF: 161.6177247339036
Iteration: 16, Func. Count: 115, Neg. LLF: 161.61770081288145
Iteration: 17, Func. Count: 121, Neg. LLF: 161.61770081289578
Optimization terminated successfully (Exit mode 0)
Current function value: 161.61770081288145
Iterations: 17
Function evaluations: 121
Gradient evaluations: 17
Iteration: 1, Func. Count: 9, Neg. LLF: 174.1906192973377
Iteration: 2, Func. Count: 18, Neg. LLF: 161.805716796355
Iteration: 3, Func. Count: 26, Neg. LLF: 161.73036492034805
Iteration: 4, Func. Count: 34, Neg. LLF: 161.71951079146692
Iteration: 5, Func. Count: 42, Neg. LLF: 161.71823109786075
Iteration: 6, Func. Count: 50, Neg. LLF: 161.71801263637514
Iteration: 7, Func. Count: 58, Neg. LLF: 161.71772015487923
Iteration: 8, Func. Count: 66, Neg. LLF: 161.71571531396748
Iteration: 9, Func. Count: 74, Neg. LLF: 161.700413998374
Iteration: 10, Func. Count: 82, Neg. LLF: 161.62387575543525
Iteration: 11, Func. Count: 90, Neg. LLF: 161.64757561689518
Iteration: 12, Func. Count: 99, Neg. LLF: 161.6177056169065
Iteration: 13, Func. Count: 107, Neg. LLF: 161.61770052032733
Iteration: 14, Func. Count: 114, Neg. LLF: 161.61770053802448
Optimization terminated successfully (Exit mode 0)
Current function value: 161.61770052032733
Iterations: 14
Function evaluations: 114
Gradient evaluations: 14
Iteration: 1, Func. Count: 6, Neg. LLF: 162.93707678883354
Iteration: 2, Func. Count: 11, Neg. LLF: 162.6952315088528
Iteration: 3, Func. Count: 17, Neg. LLF: 166.42830440478832
Iteration: 4, Func. Count: 23, Neg. LLF: 161.69526932278202
Iteration: 5, Func. Count: 28, Neg. LLF: 161.64937571606717
Iteration: 6, Func. Count: 33, Neg. LLF: 161.5810542006368
Iteration: 7, Func. Count: 39, Neg. LLF: 161.42705332527436
Iteration: 8, Func. Count: 44, Neg. LLF: 161.3436781117241
Iteration: 9, Func. Count: 49, Neg. LLF: 161.29385977359962
Iteration: 10, Func. Count: 54, Neg. LLF: 161.2507707832971
Iteration: 11, Func. Count: 59, Neg. LLF: 161.24299917229078
Iteration: 12, Func. Count: 64, Neg. LLF: 161.2423682416346
Iteration: 13, Func. Count: 69, Neg. LLF: 161.24235348849427
Iteration: 14, Func. Count: 74, Neg. LLF: 161.24235271612335
Optimization terminated successfully (Exit mode 0)
Current function value: 161.24235271612335
Iterations: 14
Function evaluations: 74
Gradient evaluations: 14
Iteration: 1, Func. Count: 7, Neg. LLF: 162.5445040499415
Iteration: 2, Func. Count: 14, Neg. LLF: 161.8633753489315
Iteration: 3, Func. Count: 21, Neg. LLF: 160.67819811839655
Iteration: 4, Func. Count: 28, Neg. LLF: 160.7688863939339
Iteration: 5, Func. Count: 36, Neg. LLF: 160.7356265060496
Iteration: 6, Func. Count: 43, Neg. LLF: 160.2038422046624
Iteration: 7, Func. Count: 49, Neg. LLF: 160.19459651367774
Iteration: 8, Func. Count: 55, Neg. LLF: 160.17712314444302
Iteration: 9, Func. Count: 61, Neg. LLF: 160.12904850762558
Iteration: 10, Func. Count: 67, Neg. LLF: 160.04996354870912
Iteration: 11, Func. Count: 73, Neg. LLF: 159.97203584064727
Iteration: 12, Func. Count: 79, Neg. LLF: 159.9358289956935
Iteration: 13, Func. Count: 85, Neg. LLF: 159.92791089876752
Iteration: 14, Func. Count: 91, Neg. LLF: 159.927802558981
Iteration: 15, Func. Count: 97, Neg. LLF: 159.92780029287601
Iteration: 16, Func. Count: 102, Neg. LLF: 159.92780024623127
Optimization terminated successfully (Exit mode 0)
Current function value: 159.92780029287601
Iterations: 16
Function evaluations: 102
Gradient evaluations: 16
Iteration: 1, Func. Count: 8, Neg. LLF: 184.39078033609866
Iteration: 2, Func. Count: 16, Neg. LLF: 161.6770684866486
Iteration: 3, Func. Count: 23, Neg. LLF: 160.30684421917852
Iteration: 4, Func. Count: 30, Neg. LLF: 165.00267807717645
Iteration: 5, Func. Count: 39, Neg. LLF: 160.41528670250037
Iteration: 6, Func. Count: 47, Neg. LLF: 160.10806784560833
Iteration: 7, Func. Count: 54, Neg. LLF: 159.9710561168449
Iteration: 8, Func. Count: 61, Neg. LLF: 159.94923225631626
Iteration: 9, Func. Count: 68, Neg. LLF: 159.94015344777407
Iteration: 10, Func. Count: 75, Neg. LLF: 159.93800106683997
Iteration: 11, Func. Count: 82, Neg. LLF: 159.93715156109644
Iteration: 12, Func. Count: 89, Neg. LLF: 159.93400106344785
Iteration: 13, Func. Count: 96, Neg. LLF: 159.93039061484293
Iteration: 14, Func. Count: 103, Neg. LLF: 159.928359469276
Iteration: 15, Func. Count: 110, Neg. LLF: 159.92783667571743
Iteration: 16, Func. Count: 117, Neg. LLF: 159.92780253322374
Iteration: 17, Func. Count: 124, Neg. LLF: 159.92780003813775
Iteration: 18, Func. Count: 130, Neg. LLF: 159.92780012887275
Optimization terminated successfully (Exit mode 0)
Current function value: 159.92780003813775
Iterations: 18
Function evaluations: 130
Gradient evaluations: 18
Iteration: 1, Func. Count: 9, Neg. LLF: 167.65106673433854
Iteration: 2, Func. Count: 18, Neg. LLF: 164.2505185874694
Iteration: 3, Func. Count: 27, Neg. LLF: 162.3094348747059
Iteration: 4, Func. Count: 36, Neg. LLF: 161.29779674661376
Iteration: 5, Func. Count: 44, Neg. LLF: 161.2205511247046
Iteration: 6, Func. Count: 52, Neg. LLF: 161.25741171573466
Iteration: 7, Func. Count: 61, Neg. LLF: 161.08754547213292
Iteration: 8, Func. Count: 69, Neg. LLF: 160.34250758757062
Iteration: 9, Func. Count: 77, Neg. LLF: 159.99571415210758
Iteration: 10, Func. Count: 85, Neg. LLF: 159.95957530774137
Iteration: 11, Func. Count: 93, Neg. LLF: 159.97533597738197
Iteration: 12, Func. Count: 102, Neg. LLF: 159.93162465252445
Iteration: 13, Func. Count: 110, Neg. LLF: 159.9306519056667
Iteration: 14, Func. Count: 118, Neg. LLF: 159.93018456155158
Iteration: 15, Func. Count: 126, Neg. LLF: 159.9298685085946
Iteration: 16, Func. Count: 134, Neg. LLF: 159.92847711976688
Iteration: 17, Func. Count: 142, Neg. LLF: 159.92799630094288
Iteration: 18, Func. Count: 150, Neg. LLF: 159.98877754972145
Iteration: 19, Func. Count: 160, Neg. LLF: 160.03107622185098
Iteration: 20, Func. Count: 170, Neg. LLF: 159.92784970105097
Iteration: 21, Func. Count: 179, Neg. LLF: 159.92780574852955
Iteration: 22, Func. Count: 186, Neg. LLF: 159.92780580077684
Optimization terminated successfully (Exit mode 0)
Current function value: 159.92780574852955
Iterations: 23
Function evaluations: 186
Gradient evaluations: 22
Iteration: 1, Func. Count: 10, Neg. LLF: 165.83450427215482
Iteration: 2, Func. Count: 20, Neg. LLF: 164.88431297998656
Iteration: 3, Func. Count: 30, Neg. LLF: 160.76479276830895
Iteration: 4, Func. Count: 39, Neg. LLF: 160.53659578560126
Iteration: 5, Func. Count: 48, Neg. LLF: 160.4156306575037
Iteration: 6, Func. Count: 57, Neg. LLF: 159.40964897805608
Iteration: 7, Func. Count: 66, Neg. LLF: 159.77903772221958
Iteration: 8, Func. Count: 76, Neg. LLF: 159.09227934583228
Iteration: 9, Func. Count: 85, Neg. LLF: 158.96965976545914
Iteration: 10, Func. Count: 94, Neg. LLF: 158.91499771790686
Iteration: 11, Func. Count: 103, Neg. LLF: 158.84079232852602
Iteration: 12, Func. Count: 112, Neg. LLF: 158.78047591034996
Iteration: 13, Func. Count: 121, Neg. LLF: 158.67129358663271
Iteration: 14, Func. Count: 130, Neg. LLF: 158.62398043656663
Iteration: 15, Func. Count: 139, Neg. LLF: 158.6124220504977
Iteration: 16, Func. Count: 148, Neg. LLF: 158.6121455307193
Iteration: 17, Func. Count: 160, Neg. LLF: 158.6225777211424
Iteration: 18, Func. Count: 171, Neg. LLF: 158.61330919509356
Iteration: 19, Func. Count: 181, Neg. LLF: 158.61276337408077
Iteration: 20, Func. Count: 190, Neg. LLF: 158.61273098976733
Iteration: 21, Func. Count: 199, Neg. LLF: 158.61272679097223
Iteration: 22, Func. Count: 208, Neg. LLF: 158.61271430613812
Iteration: 23, Func. Count: 217, Neg. LLF: 158.61271102423936
Iteration: 24, Func. Count: 225, Neg. LLF: 158.61271087025239
Optimization terminated successfully (Exit mode 0)
Current function value: 158.61271102423936
Iterations: 25
Function evaluations: 225
Gradient evaluations: 24
Iteration: 1, Func. Count: 7, Neg. LLF: 160.65593294789545
Iteration: 2, Func. Count: 13, Neg. LLF: 162.1318986223642
Iteration: 3, Func. Count: 20, Neg. LLF: 157.11393085443152
Iteration: 4, Func. Count: 26, Neg. LLF: 157.03603516569453
Iteration: 5, Func. Count: 32, Neg. LLF: 157.01475550542537
Iteration: 6, Func. Count: 38, Neg. LLF: 156.99294402963497
Iteration: 7, Func. Count: 44, Neg. LLF: 156.8897549945875
Iteration: 8, Func. Count: 50, Neg. LLF: 156.82148641647512
Iteration: 9, Func. Count: 56, Neg. LLF: 156.80476569680133
Iteration: 10, Func. Count: 62, Neg. LLF: 156.80382853387889
Iteration: 11, Func. Count: 68, Neg. LLF: 156.80381906137626
Iteration: 12, Func. Count: 74, Neg. LLF: 156.803818310213
Optimization terminated successfully (Exit mode 0)
Current function value: 156.803818310213
Iterations: 12
Function evaluations: 74
Gradient evaluations: 12
Iteration: 1, Func. Count: 8, Neg. LLF: 158.00877677124723
Iteration: 2, Func. Count: 15, Neg. LLF: 157.2315098307244
Iteration: 3, Func. Count: 22, Neg. LLF: 157.11605894270585
Iteration: 4, Func. Count: 29, Neg. LLF: 157.00220424331187
Iteration: 5, Func. Count: 36, Neg. LLF: 156.9752079695413
Iteration: 6, Func. Count: 43, Neg. LLF: 156.9559765233468
Iteration: 7, Func. Count: 50, Neg. LLF: 156.9340523623512
Iteration: 8, Func. Count: 57, Neg. LLF: 156.83885405671936
Iteration: 9, Func. Count: 64, Neg. LLF: 156.80908488164278
Iteration: 10, Func. Count: 71, Neg. LLF: 156.80384830009427
Iteration: 11, Func. Count: 78, Neg. LLF: 156.80381882369704
Iteration: 12, Func. Count: 85, Neg. LLF: 156.8038183193662
Optimization terminated successfully (Exit mode 0)
Current function value: 156.8038183193662
Iterations: 12
Function evaluations: 85
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 157.8230020732949
Iteration: 2, Func. Count: 17, Neg. LLF: 157.37558765621156
Iteration: 3, Func. Count: 25, Neg. LLF: 157.08791871921645
Iteration: 4, Func. Count: 33, Neg. LLF: 157.00822076228752
Iteration: 5, Func. Count: 41, Neg. LLF: 156.9717938128841
Iteration: 6, Func. Count: 49, Neg. LLF: 156.95915615930278
Iteration: 7, Func. Count: 57, Neg. LLF: 156.89768951062374
Iteration: 8, Func. Count: 65, Neg. LLF: 156.8429303604621
Iteration: 9, Func. Count: 73, Neg. LLF: 156.80893766037175
Iteration: 10, Func. Count: 81, Neg. LLF: 156.8038996834214
Iteration: 11, Func. Count: 89, Neg. LLF: 156.80382008954055
Iteration: 12, Func. Count: 97, Neg. LLF: 156.803818622326
Iteration: 13, Func. Count: 104, Neg. LLF: 156.8038186624764
Optimization terminated successfully (Exit mode 0)
Current function value: 156.803818622326
Iterations: 13
Function evaluations: 104
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 158.2139382425077
Iteration: 2, Func. Count: 19, Neg. LLF: 157.2058276843005
Iteration: 3, Func. Count: 28, Neg. LLF: 157.23510892446023
Iteration: 4, Func. Count: 38, Neg. LLF: 157.00988486339372
Iteration: 5, Func. Count: 48, Neg. LLF: 156.97780780553904
Iteration: 6, Func. Count: 57, Neg. LLF: 156.9105877046317
Iteration: 7, Func. Count: 66, Neg. LLF: 156.82396178826951
Iteration: 8, Func. Count: 75, Neg. LLF: 156.80705603640172
Iteration: 9, Func. Count: 84, Neg. LLF: 156.8038391593363
Iteration: 10, Func. Count: 93, Neg. LLF: 156.80381951280938
Iteration: 11, Func. Count: 102, Neg. LLF: 156.80381828822115
Iteration: 12, Func. Count: 110, Neg. LLF: 156.80381829021675
Optimization terminated successfully (Exit mode 0)
Current function value: 156.80381828822115
Iterations: 12
Function evaluations: 110
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 158.73169234149242
Iteration: 2, Func. Count: 21, Neg. LLF: 158.02228661342426
Iteration: 3, Func. Count: 32, Neg. LLF: 158.80882457668454
Iteration: 4, Func. Count: 43, Neg. LLF: 155.87761807573094
Iteration: 5, Func. Count: 53, Neg. LLF: 155.81233146089832
Iteration: 6, Func. Count: 63, Neg. LLF: 155.676566305164
Iteration: 7, Func. Count: 73, Neg. LLF: 156.29533727945787
Iteration: 8, Func. Count: 84, Neg. LLF: 159.50831753023036
Iteration: 9, Func. Count: 95, Neg. LLF: 155.38914640358772
Iteration: 10, Func. Count: 105, Neg. LLF: 155.14658634195467
Iteration: 11, Func. Count: 115, Neg. LLF: 155.0702165867065
Iteration: 12, Func. Count: 125, Neg. LLF: 155.0420040557324
Iteration: 13, Func. Count: 135, Neg. LLF: 155.0407628771101
Iteration: 14, Func. Count: 145, Neg. LLF: 155.04065563357923
Iteration: 15, Func. Count: 155, Neg. LLF: 155.04065434455393
Iteration: 16, Func. Count: 164, Neg. LLF: 155.04065416700738
Optimization terminated successfully (Exit mode 0)
Current function value: 155.04065434455393
Iterations: 16
Function evaluations: 164
Gradient evaluations: 16
Iteration: 1, Func. Count: 8, Neg. LLF: 159.92853676508815
Iteration: 2, Func. Count: 15, Neg. LLF: 163.57501498371124
Iteration: 3, Func. Count: 23, Neg. LLF: 157.10903574209976
Iteration: 4, Func. Count: 30, Neg. LLF: 157.041989478745
Iteration: 5, Func. Count: 37, Neg. LLF: 157.01987182261644
Iteration: 6, Func. Count: 44, Neg. LLF: 156.99308421118147
Iteration: 7, Func. Count: 51, Neg. LLF: 156.85702746513493
Iteration: 8, Func. Count: 58, Neg. LLF: 156.80975960110646
Iteration: 9, Func. Count: 65, Neg. LLF: 156.80395280788855
Iteration: 10, Func. Count: 72, Neg. LLF: 156.80382210024024
Iteration: 11, Func. Count: 79, Neg. LLF: 156.80381909581942
Iteration: 12, Func. Count: 86, Neg. LLF: 156.80381828821731
Optimization terminated successfully (Exit mode 0)
Current function value: 156.80381828821731
Iterations: 12
Function evaluations: 86
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 163.51054373469196
Iteration: 2, Func. Count: 18, Neg. LLF: 160.2494179831372
Iteration: 3, Func. Count: 26, Neg. LLF: 164.46785300486067
Iteration: 4, Func. Count: 35, Neg. LLF: 161.36592114978973
Iteration: 5, Func. Count: 44, Neg. LLF: 158.55105573357963
Iteration: 6, Func. Count: 52, Neg. LLF: 158.91686621920925
Iteration: 7, Func. Count: 61, Neg. LLF: 157.25617080493612
Iteration: 8, Func. Count: 69, Neg. LLF: 157.0963648481019
Iteration: 9, Func. Count: 77, Neg. LLF: 156.96026940851797
Iteration: 10, Func. Count: 85, Neg. LLF: 156.93877074176132
Iteration: 11, Func. Count: 93, Neg. LLF: 156.90193555095553
Iteration: 12, Func. Count: 101, Neg. LLF: 156.86490996380013
Iteration: 13, Func. Count: 109, Neg. LLF: 156.81559282536222
Iteration: 14, Func. Count: 117, Neg. LLF: 156.8048263405795
Iteration: 15, Func. Count: 125, Neg. LLF: 156.80387129019383
Iteration: 16, Func. Count: 133, Neg. LLF: 156.80382113469494
Iteration: 17, Func. Count: 141, Neg. LLF: 156.80381835284848
Iteration: 18, Func. Count: 148, Neg. LLF: 156.803818378877
Optimization terminated successfully (Exit mode 0)
Current function value: 156.80381835284848
Iterations: 18
Function evaluations: 148
Gradient evaluations: 18
Iteration: 1, Func. Count: 10, Neg. LLF: 159.5300989109297
Iteration: 2, Func. Count: 19, Neg. LLF: 159.35255624101865
Iteration: 3, Func. Count: 28, Neg. LLF: 157.41527404950713
Iteration: 4, Func. Count: 37, Neg. LLF: 183.6892005974721
Iteration: 5, Func. Count: 48, Neg. LLF: 156.94346490204606
Iteration: 6, Func. Count: 57, Neg. LLF: 157.11533728437038
Iteration: 7, Func. Count: 67, Neg. LLF: 156.87993718165995
Iteration: 8, Func. Count: 76, Neg. LLF: 156.84015510717006
Iteration: 9, Func. Count: 85, Neg. LLF: 156.80647659703004
Iteration: 10, Func. Count: 94, Neg. LLF: 156.80385544713465
Iteration: 11, Func. Count: 103, Neg. LLF: 156.80381972858754
Iteration: 12, Func. Count: 112, Neg. LLF: 156.80381836098294
Iteration: 13, Func. Count: 120, Neg. LLF: 156.80381840110385
Optimization terminated successfully (Exit mode 0)
Current function value: 156.80381836098294
Iterations: 13
Function evaluations: 120
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 157.7280325436588
Iteration: 2, Func. Count: 21, Neg. LLF: 157.4609271258709
Iteration: 3, Func. Count: 31, Neg. LLF: 160.28178869431932
Iteration: 4, Func. Count: 43, Neg. LLF: 163.91967338734352
Iteration: 5, Func. Count: 55, Neg. LLF: 158.8479407738199
Iteration: 6, Func. Count: 66, Neg. LLF: 157.05100636141103
Iteration: 7, Func. Count: 76, Neg. LLF: 157.00104088348164
Iteration: 8, Func. Count: 86, Neg. LLF: 156.95681459942062
Iteration: 9, Func. Count: 96, Neg. LLF: 156.8203678650108
Iteration: 10, Func. Count: 106, Neg. LLF: 156.8046334164385
Iteration: 11, Func. Count: 116, Neg. LLF: 156.80385431913294
Iteration: 12, Func. Count: 126, Neg. LLF: 156.80381905226355
Iteration: 13, Func. Count: 136, Neg. LLF: 156.8038183334363
Optimization terminated successfully (Exit mode 0)
Current function value: 156.8038183334363
Iterations: 13
Function evaluations: 136
Gradient evaluations: 13
Iteration: 1, Func. Count: 12, Neg. LLF: 158.5195324734451
Iteration: 2, Func. Count: 23, Neg. LLF: 156.6594165474435
Iteration: 3, Func. Count: 34, Neg. LLF: 157.87544449105673
Iteration: 4, Func. Count: 46, Neg. LLF: 155.91342725533838
Iteration: 5, Func. Count: 57, Neg. LLF: 156.00495341917969
Iteration: 6, Func. Count: 69, Neg. LLF: 155.82375476923409
Iteration: 7, Func. Count: 80, Neg. LLF: 155.78595370672087
Iteration: 8, Func. Count: 91, Neg. LLF: 155.6717530136812
Iteration: 9, Func. Count: 102, Neg. LLF: 155.35378952724287
Iteration: 10, Func. Count: 113, Neg. LLF: 155.7182390287604
Iteration: 11, Func. Count: 125, Neg. LLF: 155.7231846054576
Iteration: 12, Func. Count: 137, Neg. LLF: 155.06107179809487
Iteration: 13, Func. Count: 148, Neg. LLF: 155.04174791483868
Iteration: 14, Func. Count: 159, Neg. LLF: 155.040745784911
Iteration: 15, Func. Count: 170, Neg. LLF: 155.04067873961105
Iteration: 16, Func. Count: 181, Neg. LLF: 155.04065433405287
Iteration: 17, Func. Count: 191, Neg. LLF: 155.04065415658135
Optimization terminated successfully (Exit mode 0)
Current function value: 155.04065433405287
Iterations: 17
Function evaluations: 191
Gradient evaluations: 17
Iteration: 1, Func. Count: 9, Neg. LLF: 159.26936352310915
Iteration: 2, Func. Count: 17, Neg. LLF: 164.2756912805368
Iteration: 3, Func. Count: 26, Neg. LLF: 157.10333717904936
Iteration: 4, Func. Count: 34, Neg. LLF: 157.0461915200177
Iteration: 5, Func. Count: 42, Neg. LLF: 157.0226052622065
Iteration: 6, Func. Count: 50, Neg. LLF: 156.99213749839964
Iteration: 7, Func. Count: 58, Neg. LLF: 156.85998266923514
Iteration: 8, Func. Count: 66, Neg. LLF: 156.8122654109406
Iteration: 9, Func. Count: 74, Neg. LLF: 156.8038673907759
Iteration: 10, Func. Count: 82, Neg. LLF: 156.80382876615036
Iteration: 11, Func. Count: 90, Neg. LLF: 156.8038183154155
Iteration: 12, Func. Count: 97, Neg. LLF: 156.80381833820962
Optimization terminated successfully (Exit mode 0)
Current function value: 156.8038183154155
Iterations: 12
Function evaluations: 97
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 163.69511488820712
Iteration: 2, Func. Count: 20, Neg. LLF: 160.264009462138
Iteration: 3, Func. Count: 29, Neg. LLF: 164.48358169625274
Iteration: 4, Func. Count: 39, Neg. LLF: 161.13572843891365
Iteration: 5, Func. Count: 49, Neg. LLF: 158.50958135870837
Iteration: 6, Func. Count: 58, Neg. LLF: 158.90932930201066
Iteration: 7, Func. Count: 68, Neg. LLF: 157.14677002997723
Iteration: 8, Func. Count: 77, Neg. LLF: 157.15061312369804
Iteration: 9, Func. Count: 87, Neg. LLF: 156.94906643020235
Iteration: 10, Func. Count: 96, Neg. LLF: 156.9268731504015
Iteration: 11, Func. Count: 105, Neg. LLF: 156.8656390257505
Iteration: 12, Func. Count: 114, Neg. LLF: 156.81861519644798
Iteration: 13, Func. Count: 123, Neg. LLF: 156.80486887821033
Iteration: 14, Func. Count: 132, Neg. LLF: 156.80384806303638
Iteration: 15, Func. Count: 141, Neg. LLF: 156.8038200157612
Iteration: 16, Func. Count: 150, Neg. LLF: 156.8038183128059
Iteration: 17, Func. Count: 158, Neg. LLF: 156.80381833881827
Optimization terminated successfully (Exit mode 0)
Current function value: 156.8038183128059
Iterations: 17
Function evaluations: 158
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 159.5376934102333
Iteration: 2, Func. Count: 21, Neg. LLF: 159.34620789662765
Iteration: 3, Func. Count: 31, Neg. LLF: 157.35700925308018
Iteration: 4, Func. Count: 41, Neg. LLF: 180.6301689377071
Iteration: 5, Func. Count: 53, Neg. LLF: 156.9649195409629
Iteration: 6, Func. Count: 63, Neg. LLF: 156.93127893293524
Iteration: 7, Func. Count: 73, Neg. LLF: 156.88451355058316
Iteration: 8, Func. Count: 83, Neg. LLF: 156.8656824214371
Iteration: 9, Func. Count: 93, Neg. LLF: 156.8455923872629
Iteration: 10, Func. Count: 103, Neg. LLF: 156.80542559919942
Iteration: 11, Func. Count: 113, Neg. LLF: 156.80388263718464
Iteration: 12, Func. Count: 123, Neg. LLF: 156.80381929617013
Iteration: 13, Func. Count: 133, Neg. LLF: 156.80381833121987
Optimization terminated successfully (Exit mode 0)
Current function value: 156.80381833121987
Iterations: 13
Function evaluations: 133
Gradient evaluations: 13
Iteration: 1, Func. Count: 12, Neg. LLF: 157.73131300274696
Iteration: 2, Func. Count: 23, Neg. LLF: 157.4749008611883
Iteration: 3, Func. Count: 34, Neg. LLF: 160.34215454579146
Iteration: 4, Func. Count: 47, Neg. LLF: 164.45600811452496
Iteration: 5, Func. Count: 60, Neg. LLF: 158.74890084232453
Iteration: 6, Func. Count: 72, Neg. LLF: 157.05046608905894
Iteration: 7, Func. Count: 83, Neg. LLF: 157.00052118360912
Iteration: 8, Func. Count: 94, Neg. LLF: 156.95641065475746
Iteration: 9, Func. Count: 105, Neg. LLF: 156.82192980326386
Iteration: 10, Func. Count: 116, Neg. LLF: 156.80491186975019
Iteration: 11, Func. Count: 127, Neg. LLF: 156.80384470812896
Iteration: 12, Func. Count: 138, Neg. LLF: 156.80381920813304
Iteration: 13, Func. Count: 149, Neg. LLF: 156.80381834128275
Optimization terminated successfully (Exit mode 0)
Current function value: 156.80381834128275
Iterations: 13
Function evaluations: 149
Gradient evaluations: 13
Iteration: 1, Func. Count: 13, Neg. LLF: 158.51960558165726
Iteration: 2, Func. Count: 25, Neg. LLF: 156.65767526871983
Iteration: 3, Func. Count: 37, Neg. LLF: 157.85430090545955
Iteration: 4, Func. Count: 50, Neg. LLF: 155.91319915931027
Iteration: 5, Func. Count: 62, Neg. LLF: 156.01096782086307
Iteration: 6, Func. Count: 75, Neg. LLF: 155.8232558160877
Iteration: 7, Func. Count: 87, Neg. LLF: 155.7860175250469
Iteration: 8, Func. Count: 99, Neg. LLF: 155.66312722120895
Iteration: 9, Func. Count: 111, Neg. LLF: 155.33267966023664
Iteration: 10, Func. Count: 123, Neg. LLF: 155.71255259727445
Iteration: 11, Func. Count: 136, Neg. LLF: 155.59556277898977
Iteration: 12, Func. Count: 149, Neg. LLF: 155.05548075172786
Iteration: 13, Func. Count: 161, Neg. LLF: 155.04111561407473
Iteration: 14, Func. Count: 173, Neg. LLF: 155.04069731849773
Iteration: 15, Func. Count: 185, Neg. LLF: 155.0406636264059
Iteration: 16, Func. Count: 197, Neg. LLF: 155.04065435516276
Iteration: 17, Func. Count: 208, Neg. LLF: 155.04065417768908
Optimization terminated successfully (Exit mode 0)
Current function value: 155.04065435516276
Iterations: 17
Function evaluations: 208
Gradient evaluations: 17
Iteration: 1, Func. Count: 6, Neg. LLF: 163.37785209409085
Iteration: 2, Func. Count: 11, Neg. LLF: 164.28859515750597
Iteration: 3, Func. Count: 17, Neg. LLF: 162.6686889532159
Iteration: 4, Func. Count: 22, Neg. LLF: 162.6685657572289
Iteration: 5, Func. Count: 27, Neg. LLF: 162.66852352821104
Iteration: 6, Func. Count: 32, Neg. LLF: 162.6683115137489
Iteration: 7, Func. Count: 37, Neg. LLF: 162.6681488536238
Iteration: 8, Func. Count: 42, Neg. LLF: 162.6681159839955
Iteration: 9, Func. Count: 47, Neg. LLF: 162.6681114589513
Iteration: 10, Func. Count: 51, Neg. LLF: 162.66811146388838
Optimization terminated successfully (Exit mode 0)
Current function value: 162.6681114589513
Iterations: 10
Function evaluations: 51
Gradient evaluations: 10
Iteration: 1, Func. Count: 7, Neg. LLF: 190.3572585256028
Iteration: 2, Func. Count: 15, Neg. LLF: 162.0417572996202
Iteration: 3, Func. Count: 21, Neg. LLF: 163.92174053880575
Iteration: 4, Func. Count: 29, Neg. LLF: 162.0371286903866
Iteration: 5, Func. Count: 35, Neg. LLF: 162.03211869371856
Iteration: 6, Func. Count: 41, Neg. LLF: 162.03173513354258
Iteration: 7, Func. Count: 47, Neg. LLF: 162.03021364312187
Iteration: 8, Func. Count: 53, Neg. LLF: 162.02641376407175
Iteration: 9, Func. Count: 59, Neg. LLF: 162.01697402562186
Iteration: 10, Func. Count: 65, Neg. LLF: 161.97975253059283
Iteration: 11, Func. Count: 71, Neg. LLF: 161.8752706201364
Iteration: 12, Func. Count: 77, Neg. LLF: 161.941082350983
Iteration: 13, Func. Count: 84, Neg. LLF: 161.6609224941439
Iteration: 14, Func. Count: 90, Neg. LLF: 162.2971411331751
Iteration: 15, Func. Count: 97, Neg. LLF: 162.03575909837653
Iteration: 16, Func. Count: 104, Neg. LLF: 161.63305296185212
Iteration: 17, Func. Count: 110, Neg. LLF: 161.63221040290955
Iteration: 18, Func. Count: 116, Neg. LLF: 161.6321890495399
Iteration: 19, Func. Count: 122, Neg. LLF: 161.63218823770623
Optimization terminated successfully (Exit mode 0)
Current function value: 161.63218823770623
Iterations: 19
Function evaluations: 122
Gradient evaluations: 19
Iteration: 1, Func. Count: 8, Neg. LLF: 182.92970081660525
Iteration: 2, Func. Count: 17, Neg. LLF: 161.9514608326752
Iteration: 3, Func. Count: 24, Neg. LLF: 161.89134924085698
Iteration: 4, Func. Count: 31, Neg. LLF: 161.84678682640822
Iteration: 5, Func. Count: 38, Neg. LLF: 161.76128222450706
Iteration: 6, Func. Count: 45, Neg. LLF: 161.74474902623965
Iteration: 7, Func. Count: 52, Neg. LLF: 161.7429733635199
Iteration: 8, Func. Count: 59, Neg. LLF: 161.74187831905178
Iteration: 9, Func. Count: 66, Neg. LLF: 161.99441874685417
Iteration: 10, Func. Count: 75, Neg. LLF: 161.97394760516158
Iteration: 11, Func. Count: 85, Neg. LLF: 161.7417899966164
Iteration: 12, Func. Count: 92, Neg. LLF: 161.74172902970471
Iteration: 13, Func. Count: 99, Neg. LLF: 161.74136972541066
Iteration: 14, Func. Count: 106, Neg. LLF: 161.73927310041077
Iteration: 15, Func. Count: 113, Neg. LLF: 161.72400773038245
Iteration: 16, Func. Count: 120, Neg. LLF: 163.09053465016947
Iteration: 17, Func. Count: 128, Neg. LLF: 161.71210554897525
Iteration: 18, Func. Count: 135, Neg. LLF: 161.71173511623329
Iteration: 19, Func. Count: 142, Neg. LLF: 161.71169421746467
Iteration: 20, Func. Count: 149, Neg. LLF: 161.7116899152766
Iteration: 21, Func. Count: 156, Neg. LLF: 161.71168913260692
Optimization terminated successfully (Exit mode 0)
Current function value: 161.71168913260692
Iterations: 22
Function evaluations: 156
Gradient evaluations: 21
Iteration: 1, Func. Count: 9, Neg. LLF: 177.67918277750982
Iteration: 2, Func. Count: 18, Neg. LLF: 161.84479409808108
Iteration: 3, Func. Count: 26, Neg. LLF: 161.83052863799443
Iteration: 4, Func. Count: 34, Neg. LLF: 161.7732395776194
Iteration: 5, Func. Count: 42, Neg. LLF: 161.76581075875356
Iteration: 6, Func. Count: 51, Neg. LLF: 161.72973099127523
Iteration: 7, Func. Count: 59, Neg. LLF: 161.71300933979407
Iteration: 8, Func. Count: 67, Neg. LLF: 161.71251895427486
Iteration: 9, Func. Count: 75, Neg. LLF: 161.7123201125676
Iteration: 10, Func. Count: 83, Neg. LLF: 161.712065832496
Iteration: 11, Func. Count: 91, Neg. LLF: 161.7111820223373
Iteration: 12, Func. Count: 99, Neg. LLF: 161.70895781833096
Iteration: 13, Func. Count: 107, Neg. LLF: 161.70224161334977
Iteration: 14, Func. Count: 115, Neg. LLF: 161.6908112028837
Iteration: 15, Func. Count: 123, Neg. LLF: 161.6602852651934
Iteration: 16, Func. Count: 131, Neg. LLF: 161.61873088183205
Iteration: 17, Func. Count: 139, Neg. LLF: 161.6177200394081
Iteration: 18, Func. Count: 147, Neg. LLF: 163.02596371138586
Iteration: 19, Func. Count: 158, Neg. LLF: 161.6177163902906
Optimization terminated successfully (Exit mode 0)
Current function value: 161.6177163902906
Iterations: 20
Function evaluations: 158
Gradient evaluations: 19
Iteration: 1, Func. Count: 10, Neg. LLF: 175.41264383113977
Iteration: 2, Func. Count: 20, Neg. LLF: 161.8283097642417
Iteration: 3, Func. Count: 29, Neg. LLF: 161.78908385594386
Iteration: 4, Func. Count: 38, Neg. LLF: 161.74092082948462
Iteration: 5, Func. Count: 47, Neg. LLF: 161.7318083518147
Iteration: 6, Func. Count: 56, Neg. LLF: 161.71585816924625
Iteration: 7, Func. Count: 65, Neg. LLF: 299.4029703399209
Iteration: 8, Func. Count: 77, Neg. LLF: 173.44272283583967
Iteration: 9, Func. Count: 89, Neg. LLF: 161.73527773453458
Iteration: 10, Func. Count: 99, Neg. LLF: 161.70949659448323
Iteration: 11, Func. Count: 108, Neg. LLF: 161.70801563304795
Iteration: 12, Func. Count: 117, Neg. LLF: 161.70677569383815
Iteration: 13, Func. Count: 126, Neg. LLF: 161.69736172437206
Iteration: 14, Func. Count: 135, Neg. LLF: 161.66691667481066
Iteration: 15, Func. Count: 144, Neg. LLF: 161.6553640648972
Iteration: 16, Func. Count: 153, Neg. LLF: 161.64593795520798
Iteration: 17, Func. Count: 162, Neg. LLF: 161.6432276223429
Iteration: 18, Func. Count: 171, Neg. LLF: 161.64304851927758
Iteration: 19, Func. Count: 180, Neg. LLF: 161.64266293092564
Iteration: 20, Func. Count: 189, Neg. LLF: 161.64251183683103
Iteration: 21, Func. Count: 198, Neg. LLF: 161.64140590422824
Iteration: 22, Func. Count: 207, Neg. LLF: 161.6293405914931
Iteration: 23, Func. Count: 216, Neg. LLF: 161.60733975411372
Iteration: 24, Func. Count: 225, Neg. LLF: 181.687464561136
Iteration: 25, Func. Count: 237, Neg. LLF: 161.60732147215484
Iteration: 26, Func. Count: 245, Neg. LLF: 161.60732147375072
Optimization terminated successfully (Exit mode 0)
Current function value: 161.60732147215484
Iterations: 28
Function evaluations: 245
Gradient evaluations: 26
Iteration: 1, Func. Count: 7, Neg. LLF: 165.64155051204628
Iteration: 2, Func. Count: 14, Neg. LLF: 162.7514824152435
Iteration: 3, Func. Count: 21, Neg. LLF: 162.03115490460726
Iteration: 4, Func. Count: 27, Neg. LLF: 161.92385775116384
Iteration: 5, Func. Count: 33, Neg. LLF: 161.9036834196754
Iteration: 6, Func. Count: 40, Neg. LLF: 161.64145431038403
Iteration: 7, Func. Count: 46, Neg. LLF: 163.52265772121547
Iteration: 8, Func. Count: 54, Neg. LLF: 161.584400569656
Iteration: 9, Func. Count: 60, Neg. LLF: 161.48628537971535
Iteration: 10, Func. Count: 66, Neg. LLF: 161.35810908294027
Iteration: 11, Func. Count: 72, Neg. LLF: 161.2689403300847
Iteration: 12, Func. Count: 78, Neg. LLF: 161.24343087407584
Iteration: 13, Func. Count: 84, Neg. LLF: 161.24237942003907
Iteration: 14, Func. Count: 90, Neg. LLF: 161.24235443306344
Iteration: 15, Func. Count: 96, Neg. LLF: 161.2423526516604
Iteration: 16, Func. Count: 101, Neg. LLF: 161.2423526484773
Optimization terminated successfully (Exit mode 0)
Current function value: 161.2423526516604
Iterations: 16
Function evaluations: 101
Gradient evaluations: 16
Iteration: 1, Func. Count: 8, Neg. LLF: 162.7217224194214
Iteration: 2, Func. Count: 16, Neg. LLF: 161.90299577053054
Iteration: 3, Func. Count: 24, Neg. LLF: 160.7831905617322
Iteration: 4, Func. Count: 32, Neg. LLF: 161.48721063890613
Iteration: 5, Func. Count: 41, Neg. LLF: 160.27202607238272
Iteration: 6, Func. Count: 48, Neg. LLF: 160.2523107970115
Iteration: 7, Func. Count: 55, Neg. LLF: 160.20193650974247
Iteration: 8, Func. Count: 62, Neg. LLF: 160.18590379302225
Iteration: 9, Func. Count: 69, Neg. LLF: 160.1654924754088
Iteration: 10, Func. Count: 76, Neg. LLF: 160.0960337206271
Iteration: 11, Func. Count: 83, Neg. LLF: 160.00851483200077
Iteration: 12, Func. Count: 90, Neg. LLF: 167.2906167614542
Iteration: 13, Func. Count: 99, Neg. LLF: 159.93676395663
Iteration: 14, Func. Count: 106, Neg. LLF: 159.91255948781168
Iteration: 15, Func. Count: 113, Neg. LLF: 159.91011736445142
Iteration: 16, Func. Count: 120, Neg. LLF: 159.90968635100648
Iteration: 17, Func. Count: 127, Neg. LLF: 159.90963275961678
Iteration: 18, Func. Count: 134, Neg. LLF: 159.90963185758332
Optimization terminated successfully (Exit mode 0)
Current function value: 159.90963185758332
Iterations: 18
Function evaluations: 134
Gradient evaluations: 18
Iteration: 1, Func. Count: 9, Neg. LLF: 183.13464692240464
Iteration: 2, Func. Count: 18, Neg. LLF: 161.8092251263861
Iteration: 3, Func. Count: 26, Neg. LLF: 160.9646349672625
Iteration: 4, Func. Count: 34, Neg. LLF: 165.2993436231088
Iteration: 5, Func. Count: 45, Neg. LLF: 164.96732790608718
Iteration: 6, Func. Count: 54, Neg. LLF: 160.10053517434955
Iteration: 7, Func. Count: 62, Neg. LLF: 160.1126498295449
Iteration: 8, Func. Count: 71, Neg. LLF: 160.04584119081795
Iteration: 9, Func. Count: 79, Neg. LLF: 159.9631557616042
Iteration: 10, Func. Count: 87, Neg. LLF: 159.9356322391368
Iteration: 11, Func. Count: 95, Neg. LLF: 159.92573439351392
Iteration: 12, Func. Count: 103, Neg. LLF: 159.91652580480664
Iteration: 13, Func. Count: 111, Neg. LLF: 159.91383404590246
Iteration: 14, Func. Count: 119, Neg. LLF: 159.9130755191674
Iteration: 15, Func. Count: 127, Neg. LLF: 159.91274241866972
Iteration: 16, Func. Count: 135, Neg. LLF: 159.91235623394982
Iteration: 17, Func. Count: 143, Neg. LLF: 159.9114256576452
Iteration: 18, Func. Count: 151, Neg. LLF: 159.91037244275728
Iteration: 19, Func. Count: 159, Neg. LLF: 159.9097519870358
Iteration: 20, Func. Count: 167, Neg. LLF: 159.909641587629
Iteration: 21, Func. Count: 175, Neg. LLF: 159.90963201620383
Iteration: 22, Func. Count: 182, Neg. LLF: 159.90963209589017
Optimization terminated successfully (Exit mode 0)
Current function value: 159.90963201620383
Iterations: 22
Function evaluations: 182
Gradient evaluations: 22
Iteration: 1, Func. Count: 10, Neg. LLF: 168.5168495971582
Iteration: 2, Func. Count: 20, Neg. LLF: 163.091050057899
Iteration: 3, Func. Count: 30, Neg. LLF: 162.04720559028164
Iteration: 4, Func. Count: 41, Neg. LLF: 160.88482606822708
Iteration: 5, Func. Count: 50, Neg. LLF: 160.37794084058854
Iteration: 6, Func. Count: 59, Neg. LLF: 160.24741501019747
Iteration: 7, Func. Count: 68, Neg. LLF: 159.96114535985058
Iteration: 8, Func. Count: 77, Neg. LLF: 160.04462869030206
Iteration: 9, Func. Count: 87, Neg. LLF: 159.9188282699642
Iteration: 10, Func. Count: 96, Neg. LLF: 159.9131661258141
Iteration: 11, Func. Count: 105, Neg. LLF: 159.90989284291646
Iteration: 12, Func. Count: 114, Neg. LLF: 159.9096508639434
Iteration: 13, Func. Count: 123, Neg. LLF: 159.90964597573952
Iteration: 14, Func. Count: 131, Neg. LLF: 159.90964603444948
Optimization terminated successfully (Exit mode 0)
Current function value: 159.90964597573952
Iterations: 14
Function evaluations: 131
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 166.54585224439802
Iteration: 2, Func. Count: 22, Neg. LLF: 164.72590332511285
Iteration: 3, Func. Count: 33, Neg. LLF: 160.6972822638693
Iteration: 4, Func. Count: 43, Neg. LLF: 159.95654251234393
Iteration: 5, Func. Count: 53, Neg. LLF: 160.47015467460892
Iteration: 6, Func. Count: 64, Neg. LLF: 159.5084396991706
Iteration: 7, Func. Count: 74, Neg. LLF: 159.31436813686364
Iteration: 8, Func. Count: 84, Neg. LLF: 159.14944608076718
Iteration: 9, Func. Count: 94, Neg. LLF: 159.06748208783088
Iteration: 10, Func. Count: 104, Neg. LLF: 159.01250245719558
Iteration: 11, Func. Count: 114, Neg. LLF: 158.73800275923065
Iteration: 12, Func. Count: 124, Neg. LLF: 158.65231723429994
Iteration: 13, Func. Count: 134, Neg. LLF: 158.61892200300312
Iteration: 14, Func. Count: 144, Neg. LLF: 158.61372834570938
Iteration: 15, Func. Count: 154, Neg. LLF: 158.61307714958545
Iteration: 16, Func. Count: 164, Neg. LLF: 158.6126149801429
Iteration: 17, Func. Count: 174, Neg. LLF: 158.61258986194423
Iteration: 18, Func. Count: 194, Neg. LLF: 158.6115925457109
Iteration: 19, Func. Count: 214, Neg. LLF: 158.61270401479575
Iteration: 20, Func. Count: 234, Neg. LLF: 158.6127080939248
Iteration: 21, Func. Count: 244, Neg. LLF: 158.61270526658234
Optimization terminated successfully (Exit mode 0)
Current function value: 158.61270809116533
Iterations: 21
Function evaluations: 254
Gradient evaluations: 21
Iteration: 1, Func. Count: 8, Neg. LLF: 164.27088571623617
Iteration: 2, Func. Count: 16, Neg. LLF: 162.40437587858256
Iteration: 3, Func. Count: 24, Neg. LLF: 157.30839320996944
Iteration: 4, Func. Count: 31, Neg. LLF: 157.03217380123968
Iteration: 5, Func. Count: 38, Neg. LLF: 156.975499461561
Iteration: 6, Func. Count: 45, Neg. LLF: 156.95385085580733
Iteration: 7, Func. Count: 52, Neg. LLF: 156.94149006400073
Iteration: 8, Func. Count: 59, Neg. LLF: 156.8837529616113
Iteration: 9, Func. Count: 66, Neg. LLF: 157.18098454373333
Iteration: 10, Func. Count: 75, Neg. LLF: 202.8687206180788
Iteration: 11, Func. Count: 84, Neg. LLF: 157.37227746413444
Iteration: 12, Func. Count: 92, Neg. LLF: 156.7926000891132
Iteration: 13, Func. Count: 99, Neg. LLF: 156.79003115519123
Iteration: 14, Func. Count: 106, Neg. LLF: 156.79001819358479
Iteration: 15, Func. Count: 112, Neg. LLF: 156.7900181684756
Optimization terminated successfully (Exit mode 0)
Current function value: 156.79001819358479
Iterations: 15
Function evaluations: 112
Gradient evaluations: 15
Iteration: 1, Func. Count: 9, Neg. LLF: 158.05668563591212
Iteration: 2, Func. Count: 17, Neg. LLF: 157.25619043628888
Iteration: 3, Func. Count: 25, Neg. LLF: 157.11354234837012
Iteration: 4, Func. Count: 33, Neg. LLF: 157.00427631209217
Iteration: 5, Func. Count: 41, Neg. LLF: 156.97507867431634
Iteration: 6, Func. Count: 49, Neg. LLF: 156.95595252431326
Iteration: 7, Func. Count: 57, Neg. LLF: 156.93526549196676
Iteration: 8, Func. Count: 65, Neg. LLF: 156.97504556732318
Iteration: 9, Func. Count: 74, Neg. LLF: 164.29736860368192
Iteration: 10, Func. Count: 83, Neg. LLF: 156.81174765786508
Iteration: 11, Func. Count: 91, Neg. LLF: 156.81922042521407
Iteration: 12, Func. Count: 100, Neg. LLF: 156.79082471230197
Iteration: 13, Func. Count: 108, Neg. LLF: 156.7900283155818
Iteration: 14, Func. Count: 116, Neg. LLF: 156.79001814429162
Iteration: 15, Func. Count: 123, Neg. LLF: 156.79001816867031
Optimization terminated successfully (Exit mode 0)
Current function value: 156.79001814429162
Iterations: 15
Function evaluations: 123
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 161.10037720325317
Iteration: 2, Func. Count: 19, Neg. LLF: 159.90659029080132
Iteration: 3, Func. Count: 28, Neg. LLF: 157.92252655915084
Iteration: 4, Func. Count: 37, Neg. LLF: 157.1090764324651
Iteration: 5, Func. Count: 46, Neg. LLF: 156.9657391242402
Iteration: 6, Func. Count: 55, Neg. LLF: 156.95179470922537
Iteration: 7, Func. Count: 64, Neg. LLF: 156.92080300953108
Iteration: 8, Func. Count: 73, Neg. LLF: 156.8889122092103
Iteration: 9, Func. Count: 82, Neg. LLF: 189.30733780294682
Iteration: 10, Func. Count: 94, Neg. LLF: 156.83685849071483
Iteration: 11, Func. Count: 103, Neg. LLF: 156.80376552985658
Iteration: 12, Func. Count: 112, Neg. LLF: 156.79051001492635
Iteration: 13, Func. Count: 121, Neg. LLF: 156.79002254502157
Iteration: 14, Func. Count: 130, Neg. LLF: 156.7900177746566
Iteration: 15, Func. Count: 138, Neg. LLF: 156.79001781557415
Optimization terminated successfully (Exit mode 0)
Current function value: 156.7900177746566
Iterations: 15
Function evaluations: 138
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 160.52535838948668
Iteration: 2, Func. Count: 21, Neg. LLF: 158.26296952763025
Iteration: 3, Func. Count: 31, Neg. LLF: 158.271206776418
Iteration: 4, Func. Count: 42, Neg. LLF: 157.58658218833025
Iteration: 5, Func. Count: 52, Neg. LLF: 157.38071286580123
Iteration: 6, Func. Count: 62, Neg. LLF: 156.9699983960218
Iteration: 7, Func. Count: 72, Neg. LLF: 156.94461103558808
Iteration: 8, Func. Count: 82, Neg. LLF: 156.9280728343345
Iteration: 9, Func. Count: 92, Neg. LLF: 156.90559952989733
Iteration: 10, Func. Count: 102, Neg. LLF: 156.87216857392113
Iteration: 11, Func. Count: 112, Neg. LLF: 156.97536701113026
Iteration: 12, Func. Count: 123, Neg. LLF: 156.79616396461745
Iteration: 13, Func. Count: 133, Neg. LLF: 156.80665074041363
Iteration: 14, Func. Count: 144, Neg. LLF: 156.79006442684047
Iteration: 15, Func. Count: 154, Neg. LLF: 156.79002008584544
Iteration: 16, Func. Count: 164, Neg. LLF: 156.79001776908464
Iteration: 17, Func. Count: 173, Neg. LLF: 156.79001777055646
Optimization terminated successfully (Exit mode 0)
Current function value: 156.79001776908464
Iterations: 17
Function evaluations: 173
Gradient evaluations: 17
Iteration: 1, Func. Count: 12, Neg. LLF: 158.8638200348913
Iteration: 2, Func. Count: 23, Neg. LLF: 158.29164940669804
Iteration: 3, Func. Count: 35, Neg. LLF: 159.78108997553272
Iteration: 4, Func. Count: 47, Neg. LLF: 155.87759661502042
Iteration: 5, Func. Count: 58, Neg. LLF: 155.82847935627595
Iteration: 6, Func. Count: 69, Neg. LLF: 155.68388740390685
Iteration: 7, Func. Count: 80, Neg. LLF: 155.77084232003577
Iteration: 8, Func. Count: 92, Neg. LLF: 159.70614604781008
Iteration: 9, Func. Count: 104, Neg. LLF: 155.26996712948102
Iteration: 10, Func. Count: 115, Neg. LLF: 155.12668787490898
Iteration: 11, Func. Count: 126, Neg. LLF: 155.06286138094268
Iteration: 12, Func. Count: 137, Neg. LLF: 155.041706460576
Iteration: 13, Func. Count: 148, Neg. LLF: 155.04072662871747
Iteration: 14, Func. Count: 159, Neg. LLF: 155.04065570940534
Iteration: 15, Func. Count: 170, Neg. LLF: 155.04065439042577
Iteration: 16, Func. Count: 180, Neg. LLF: 155.04065421284338
Optimization terminated successfully (Exit mode 0)
Current function value: 155.04065439042577
Iterations: 16
Function evaluations: 180
Gradient evaluations: 16
Iteration: 1, Func. Count: 9, Neg. LLF: 163.4375289125994
Iteration: 2, Func. Count: 17, Neg. LLF: 160.22354150931358
Iteration: 3, Func. Count: 25, Neg. LLF: 161.0322007496515
Iteration: 4, Func. Count: 34, Neg. LLF: 157.89932358138628
Iteration: 5, Func. Count: 42, Neg. LLF: 157.1517087205292
Iteration: 6, Func. Count: 50, Neg. LLF: 157.12758860040563
Iteration: 7, Func. Count: 59, Neg. LLF: 157.0077587823756
Iteration: 8, Func. Count: 67, Neg. LLF: 156.94399088517162
Iteration: 9, Func. Count: 75, Neg. LLF: 156.85682843802235
Iteration: 10, Func. Count: 83, Neg. LLF: 185.1508349165051
Iteration: 11, Func. Count: 93, Neg. LLF: 156.79883655587795
Iteration: 12, Func. Count: 101, Neg. LLF: 156.79020390839466
Iteration: 13, Func. Count: 109, Neg. LLF: 156.79005431892958
Iteration: 14, Func. Count: 117, Neg. LLF: 156.79001794492265
Iteration: 15, Func. Count: 124, Neg. LLF: 156.79001796610513
Optimization terminated successfully (Exit mode 0)
Current function value: 156.79001794492265
Iterations: 15
Function evaluations: 124
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 162.84314460926953
Iteration: 2, Func. Count: 20, Neg. LLF: 160.21666816889038
Iteration: 3, Func. Count: 29, Neg. LLF: 164.76945408719183
Iteration: 4, Func. Count: 39, Neg. LLF: 166.02260886232315
Iteration: 5, Func. Count: 49, Neg. LLF: 159.58878238914514
Iteration: 6, Func. Count: 58, Neg. LLF: 159.56612190707176
Iteration: 7, Func. Count: 68, Neg. LLF: 177.58072619846234
Iteration: 8, Func. Count: 78, Neg. LLF: 157.23567548276154
Iteration: 9, Func. Count: 87, Neg. LLF: 157.12630632915128
Iteration: 10, Func. Count: 96, Neg. LLF: 156.96624475576334
Iteration: 11, Func. Count: 105, Neg. LLF: 157.3138230804492
Iteration: 12, Func. Count: 115, Neg. LLF: 156.91634480040224
Iteration: 13, Func. Count: 124, Neg. LLF: 156.87853754363124
Iteration: 14, Func. Count: 133, Neg. LLF: 156.8672282347359
Iteration: 15, Func. Count: 142, Neg. LLF: 156.84710722967833
Iteration: 16, Func. Count: 151, Neg. LLF: 156.82523711126933
Iteration: 17, Func. Count: 160, Neg. LLF: 156.79446925869456
Iteration: 18, Func. Count: 169, Neg. LLF: 156.7901548017204
Iteration: 19, Func. Count: 178, Neg. LLF: 156.79002320540292
Iteration: 20, Func. Count: 187, Neg. LLF: 156.79001783072036
Iteration: 21, Func. Count: 195, Neg. LLF: 156.79001785514873
Optimization terminated successfully (Exit mode 0)
Current function value: 156.79001783072036
Iterations: 21
Function evaluations: 195
Gradient evaluations: 21
Iteration: 1, Func. Count: 11, Neg. LLF: 158.89579121291862
Iteration: 2, Func. Count: 21, Neg. LLF: 158.448464828687
Iteration: 3, Func. Count: 31, Neg. LLF: 158.60148221530346
Iteration: 4, Func. Count: 43, Neg. LLF: 166.27224829629208
Iteration: 5, Func. Count: 54, Neg. LLF: 163.65941636323205
Iteration: 6, Func. Count: 65, Neg. LLF: 166.33127215605154
Iteration: 7, Func. Count: 78, Neg. LLF: 157.014664925504
Iteration: 8, Func. Count: 88, Neg. LLF: 156.92306782729258
Iteration: 9, Func. Count: 98, Neg. LLF: 156.90149775838503
Iteration: 10, Func. Count: 108, Neg. LLF: 156.8853552320752
Iteration: 11, Func. Count: 118, Neg. LLF: 156.85663807297013
Iteration: 12, Func. Count: 128, Neg. LLF: 156.82645398396303
Iteration: 13, Func. Count: 138, Neg. LLF: 156.79092515153928
Iteration: 14, Func. Count: 148, Neg. LLF: 156.7900347709165
Iteration: 15, Func. Count: 158, Neg. LLF: 156.79001782680643
Iteration: 16, Func. Count: 167, Neg. LLF: 156.7900178677026
Optimization terminated successfully (Exit mode 0)
Current function value: 156.79001782680643
Iterations: 16
Function evaluations: 167
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 157.55485650496564
Iteration: 2, Func. Count: 23, Neg. LLF: 158.06756761495322
Iteration: 3, Func. Count: 36, Neg. LLF: 165.74410862081314
Iteration: 4, Func. Count: 49, Neg. LLF: 157.34303475922425
Iteration: 5, Func. Count: 61, Neg. LLF: 157.02966754693873
Iteration: 6, Func. Count: 72, Neg. LLF: 156.95068065493518
Iteration: 7, Func. Count: 83, Neg. LLF: 157.71316099359387
Iteration: 8, Func. Count: 96, Neg. LLF: 156.9179084330799
Iteration: 9, Func. Count: 107, Neg. LLF: 156.86618129039724
Iteration: 10, Func. Count: 118, Neg. LLF: 156.8228504249613
Iteration: 11, Func. Count: 129, Neg. LLF: 156.79154830446655
Iteration: 12, Func. Count: 140, Neg. LLF: 156.7900548967248
Iteration: 13, Func. Count: 151, Neg. LLF: 156.79001824982876
Iteration: 14, Func. Count: 161, Neg. LLF: 156.7900182512512
Optimization terminated successfully (Exit mode 0)
Current function value: 156.79001824982876
Iterations: 14
Function evaluations: 161
Gradient evaluations: 14
Iteration: 1, Func. Count: 13, Neg. LLF: 158.51206553620622
Iteration: 2, Func. Count: 25, Neg. LLF: 156.768847504126
Iteration: 3, Func. Count: 37, Neg. LLF: 158.45986056598494
Iteration: 4, Func. Count: 50, Neg. LLF: 155.93049874801258
Iteration: 5, Func. Count: 62, Neg. LLF: 155.93926885597656
Iteration: 6, Func. Count: 75, Neg. LLF: 155.84544205585794
Iteration: 7, Func. Count: 87, Neg. LLF: 155.78968555767577
Iteration: 8, Func. Count: 99, Neg. LLF: 155.74178085080408
Iteration: 9, Func. Count: 111, Neg. LLF: 155.45076956805494
Iteration: 10, Func. Count: 123, Neg. LLF: 155.71835915427556
Iteration: 11, Func. Count: 136, Neg. LLF: 155.7105501394257
Iteration: 12, Func. Count: 149, Neg. LLF: 155.0758866253625
Iteration: 13, Func. Count: 161, Neg. LLF: 155.04378016519985
Iteration: 14, Func. Count: 173, Neg. LLF: 155.04091238279526
Iteration: 15, Func. Count: 185, Neg. LLF: 155.0407592677034
Iteration: 16, Func. Count: 197, Neg. LLF: 155.04065472088212
Iteration: 17, Func. Count: 208, Neg. LLF: 155.04065454335824
Optimization terminated successfully (Exit mode 0)
Current function value: 155.04065472088212
Iterations: 17
Function evaluations: 208
Gradient evaluations: 17
Iteration: 1, Func. Count: 10, Neg. LLF: 162.7007777451531
Iteration: 2, Func. Count: 19, Neg. LLF: 161.01546322451748
Iteration: 3, Func. Count: 29, Neg. LLF: 157.8197602994199
Iteration: 4, Func. Count: 38, Neg. LLF: 157.0712107830018
Iteration: 5, Func. Count: 47, Neg. LLF: 157.0672467564122
Iteration: 6, Func. Count: 57, Neg. LLF: 157.02219037350582
Iteration: 7, Func. Count: 66, Neg. LLF: 156.93366266685626
Iteration: 8, Func. Count: 75, Neg. LLF: 157.10084505630647
Iteration: 9, Func. Count: 85, Neg. LLF: 158.2828734870369
Iteration: 10, Func. Count: 95, Neg. LLF: 156.80529330623676
Iteration: 11, Func. Count: 104, Neg. LLF: 156.79150096867895
Iteration: 12, Func. Count: 113, Neg. LLF: 156.79010989944868
Iteration: 13, Func. Count: 122, Neg. LLF: 156.79001999131822
Iteration: 14, Func. Count: 131, Neg. LLF: 156.79001778367726
Iteration: 15, Func. Count: 139, Neg. LLF: 156.79001780810148
Optimization terminated successfully (Exit mode 0)
Current function value: 156.79001778367726
Iterations: 15
Function evaluations: 139
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 162.98687257179444
Iteration: 2, Func. Count: 22, Neg. LLF: 160.22889549157773
Iteration: 3, Func. Count: 32, Neg. LLF: 165.3695707555923
Iteration: 4, Func. Count: 43, Neg. LLF: 166.54532233281097
Iteration: 5, Func. Count: 54, Neg. LLF: 159.26479300645144
Iteration: 6, Func. Count: 64, Neg. LLF: 159.38693582112705
Iteration: 7, Func. Count: 75, Neg. LLF: 181.32299065010196
Iteration: 8, Func. Count: 86, Neg. LLF: 157.1677269998744
Iteration: 9, Func. Count: 96, Neg. LLF: 156.9570273768604
Iteration: 10, Func. Count: 106, Neg. LLF: 156.99928297023516
Iteration: 11, Func. Count: 117, Neg. LLF: 156.90765551159518
Iteration: 12, Func. Count: 128, Neg. LLF: 156.89556911698068
Iteration: 13, Func. Count: 139, Neg. LLF: 156.86988258095678
Iteration: 14, Func. Count: 149, Neg. LLF: 156.8112833709213
Iteration: 15, Func. Count: 159, Neg. LLF: 156.7906745046311
Iteration: 16, Func. Count: 169, Neg. LLF: 156.7900554310937
Iteration: 17, Func. Count: 179, Neg. LLF: 156.79001816406597
Iteration: 18, Func. Count: 188, Neg. LLF: 156.79001818843594
Optimization terminated successfully (Exit mode 0)
Current function value: 156.79001816406597
Iterations: 18
Function evaluations: 188
Gradient evaluations: 18
Iteration: 1, Func. Count: 12, Neg. LLF: 158.90319343502247
Iteration: 2, Func. Count: 23, Neg. LLF: 158.44912671850778
Iteration: 3, Func. Count: 34, Neg. LLF: 158.8739519444677
Iteration: 4, Func. Count: 47, Neg. LLF: 166.57507300994837
Iteration: 5, Func. Count: 59, Neg. LLF: 163.90841843056972
Iteration: 6, Func. Count: 71, Neg. LLF: 162.58086718549413
Iteration: 7, Func. Count: 85, Neg. LLF: 157.0166242248416
Iteration: 8, Func. Count: 96, Neg. LLF: 156.9137955958655
Iteration: 9, Func. Count: 107, Neg. LLF: 156.8893891607474
Iteration: 10, Func. Count: 118, Neg. LLF: 156.87468390719673
Iteration: 11, Func. Count: 129, Neg. LLF: 156.8248966528152
Iteration: 12, Func. Count: 140, Neg. LLF: 156.8006842931027
Iteration: 13, Func. Count: 151, Neg. LLF: 156.79109642904137
Iteration: 14, Func. Count: 162, Neg. LLF: 156.79008232326882
Iteration: 15, Func. Count: 173, Neg. LLF: 156.79001827104562
Iteration: 16, Func. Count: 183, Neg. LLF: 156.79001831201637
Optimization terminated successfully (Exit mode 0)
Current function value: 156.79001827104562
Iterations: 16
Function evaluations: 183
Gradient evaluations: 16
Iteration: 1, Func. Count: 13, Neg. LLF: 157.58948582562286
Iteration: 2, Func. Count: 25, Neg. LLF: 157.80645251462536
Iteration: 3, Func. Count: 39, Neg. LLF: 166.06026277916072
Iteration: 4, Func. Count: 53, Neg. LLF: 157.38615582079737
Iteration: 5, Func. Count: 66, Neg. LLF: 156.97696131615027
Iteration: 6, Func. Count: 78, Neg. LLF: 157.38612202328721
Iteration: 7, Func. Count: 91, Neg. LLF: 156.9773158453123
Iteration: 8, Func. Count: 104, Neg. LLF: 156.9028320877799
Iteration: 9, Func. Count: 116, Neg. LLF: 156.8655474879726
Iteration: 10, Func. Count: 128, Neg. LLF: 156.81992364520906
Iteration: 11, Func. Count: 140, Neg. LLF: 156.7909619992543
Iteration: 12, Func. Count: 152, Neg. LLF: 156.79003286700575
Iteration: 13, Func. Count: 164, Neg. LLF: 156.79001786473066
Iteration: 14, Func. Count: 175, Neg. LLF: 156.79001786624764
Optimization terminated successfully (Exit mode 0)
Current function value: 156.79001786473066
Iterations: 14
Function evaluations: 175
Gradient evaluations: 14
Iteration: 1, Func. Count: 14, Neg. LLF: 158.5111819965881
Iteration: 2, Func. Count: 27, Neg. LLF: 156.76691805783116
Iteration: 3, Func. Count: 40, Neg. LLF: 158.4338650916024
Iteration: 4, Func. Count: 54, Neg. LLF: 155.93023041370412
Iteration: 5, Func. Count: 67, Neg. LLF: 155.94479024555997
Iteration: 6, Func. Count: 81, Neg. LLF: 155.84437427416069
Iteration: 7, Func. Count: 94, Neg. LLF: 155.78986421520375
Iteration: 8, Func. Count: 107, Neg. LLF: 155.74094898564667
Iteration: 9, Func. Count: 120, Neg. LLF: 155.4465271321475
Iteration: 10, Func. Count: 133, Neg. LLF: 155.7225667671664
Iteration: 11, Func. Count: 147, Neg. LLF: 155.69906330574668
Iteration: 12, Func. Count: 161, Neg. LLF: 155.07868328497173
Iteration: 13, Func. Count: 174, Neg. LLF: 155.04375037891162
Iteration: 14, Func. Count: 187, Neg. LLF: 155.04088790000455
Iteration: 15, Func. Count: 200, Neg. LLF: 155.04076319498603
Iteration: 16, Func. Count: 213, Neg. LLF: 155.0406544441125
Iteration: 17, Func. Count: 225, Neg. LLF: 155.04065426664945
Optimization terminated successfully (Exit mode 0)
Current function value: 155.0406544441125
Iterations: 17
Function evaluations: 225
Gradient evaluations: 17
Iteration: 1, Func. Count: 7, Neg. LLF: 162.69265872896526
Iteration: 2, Func. Count: 13, Neg. LLF: 162.9329252887942
Iteration: 3, Func. Count: 20, Neg. LLF: 162.6681381984947
Iteration: 4, Func. Count: 26, Neg. LLF: 162.66813569447652
Iteration: 5, Func. Count: 32, Neg. LLF: 162.66812328729216
Iteration: 6, Func. Count: 38, Neg. LLF: 162.66811171055105
Iteration: 7, Func. Count: 43, Neg. LLF: 162.66811192654964
Optimization terminated successfully (Exit mode 0)
Current function value: 162.66811171055105
Iterations: 7
Function evaluations: 43
Gradient evaluations: 7
Iteration: 1, Func. Count: 8, Neg. LLF: 183.99223582334113
Iteration: 2, Func. Count: 18, Neg. LLF: 165.88804397677163
Iteration: 3, Func. Count: 27, Neg. LLF: 162.6149104201492
Iteration: 4, Func. Count: 35, Neg. LLF: 161.90938502665833
Iteration: 5, Func. Count: 42, Neg. LLF: 161.90941575865517
Iteration: 6, Func. Count: 50, Neg. LLF: 161.90819802863086
Iteration: 7, Func. Count: 57, Neg. LLF: 161.90736363866534
Iteration: 8, Func. Count: 64, Neg. LLF: 161.9056404943087
Iteration: 9, Func. Count: 71, Neg. LLF: 161.90208112576605
Iteration: 10, Func. Count: 78, Neg. LLF: 161.89747698214168
Iteration: 11, Func. Count: 85, Neg. LLF: 161.89387610879768
Iteration: 12, Func. Count: 92, Neg. LLF: 161.89287004696928
Iteration: 13, Func. Count: 99, Neg. LLF: 161.89280574015226
Iteration: 14, Func. Count: 106, Neg. LLF: 161.89280030179884
Iteration: 15, Func. Count: 112, Neg. LLF: 161.89280030180848
Optimization terminated successfully (Exit mode 0)
Current function value: 161.89280030179884
Iterations: 15
Function evaluations: 112
Gradient evaluations: 15
Iteration: 1, Func. Count: 9, Neg. LLF: 183.91856859894585
Iteration: 2, Func. Count: 19, Neg. LLF: 161.97377544434318
Iteration: 3, Func. Count: 27, Neg. LLF: 161.96036428987603
Iteration: 4, Func. Count: 35, Neg. LLF: 161.76169693746976
Iteration: 5, Func. Count: 43, Neg. LLF: 161.74873728364201
Iteration: 6, Func. Count: 51, Neg. LLF: 161.74804403751145
Iteration: 7, Func. Count: 60, Neg. LLF: 161.74498199174514
Iteration: 8, Func. Count: 68, Neg. LLF: 161.74498024815708
Iteration: 9, Func. Count: 76, Neg. LLF: 161.74497526102846
Iteration: 10, Func. Count: 84, Neg. LLF: 161.74497057142844
Iteration: 11, Func. Count: 92, Neg. LLF: 161.7449133579998
Iteration: 12, Func. Count: 100, Neg. LLF: 161.74469187581965
Iteration: 13, Func. Count: 108, Neg. LLF: 161.74459842889456
Iteration: 14, Func. Count: 117, Neg. LLF: 161.7435557828924
Iteration: 15, Func. Count: 125, Neg. LLF: 161.74154180254456
Iteration: 16, Func. Count: 133, Neg. LLF: 161.7291979973068
Iteration: 17, Func. Count: 141, Neg. LLF: 161.71701220928978
Iteration: 18, Func. Count: 149, Neg. LLF: 161.71327375577295
Iteration: 19, Func. Count: 157, Neg. LLF: 161.71193300733194
Iteration: 20, Func. Count: 165, Neg. LLF: 161.71190099961512
Iteration: 21, Func. Count: 174, Neg. LLF: 161.7117531259895
Iteration: 22, Func. Count: 182, Neg. LLF: 161.7116890593205
Iteration: 23, Func. Count: 189, Neg. LLF: 161.71168905934744
Optimization terminated successfully (Exit mode 0)
Current function value: 161.7116890593205
Iterations: 23
Function evaluations: 189
Gradient evaluations: 23
Iteration: 1, Func. Count: 10, Neg. LLF: 179.14541183607832
Iteration: 2, Func. Count: 20, Neg. LLF: 161.87662969357172
Iteration: 3, Func. Count: 29, Neg. LLF: 161.82417515075855
Iteration: 4, Func. Count: 38, Neg. LLF: 161.76572018821642
Iteration: 5, Func. Count: 47, Neg. LLF: 161.74886112349927
Iteration: 6, Func. Count: 56, Neg. LLF: 161.73147679000613
Iteration: 7, Func. Count: 65, Neg. LLF: 161.71671857406147
Iteration: 8, Func. Count: 74, Neg. LLF: 161.71545350014563
Iteration: 9, Func. Count: 83, Neg. LLF: 161.71511813479762
Iteration: 10, Func. Count: 92, Neg. LLF: 161.71401776586595
Iteration: 11, Func. Count: 101, Neg. LLF: 161.7113926981948
Iteration: 12, Func. Count: 110, Neg. LLF: 161.70325392493825
Iteration: 13, Func. Count: 119, Neg. LLF: 161.68942179257587
Iteration: 14, Func. Count: 128, Neg. LLF: 161.66514621535958
Iteration: 15, Func. Count: 137, Neg. LLF: 161.63654226249614
Iteration: 16, Func. Count: 146, Neg. LLF: 161.6210828089235
Iteration: 17, Func. Count: 155, Neg. LLF: 161.61780761314162
Iteration: 18, Func. Count: 164, Neg. LLF: 161.6178011135725
Iteration: 19, Func. Count: 174, Neg. LLF: 161.61770041704514
Iteration: 20, Func. Count: 182, Neg. LLF: 161.61770041710366
Optimization terminated successfully (Exit mode 0)
Current function value: 161.61770041704514
Iterations: 20
Function evaluations: 182
Gradient evaluations: 20
Iteration: 1, Func. Count: 11, Neg. LLF: 176.75512511231025
Iteration: 2, Func. Count: 22, Neg. LLF: 161.80739300733188
Iteration: 3, Func. Count: 32, Neg. LLF: 161.7409856464544
Iteration: 4, Func. Count: 42, Neg. LLF: 161.73215527229308
Iteration: 5, Func. Count: 52, Neg. LLF: 161.72684918407543
Iteration: 6, Func. Count: 62, Neg. LLF: 161.71060427600526
Iteration: 7, Func. Count: 72, Neg. LLF: 169.68645538475693
Iteration: 8, Func. Count: 85, Neg. LLF: 161.78895882335777
Iteration: 9, Func. Count: 97, Neg. LLF: 161.69997701636825
Iteration: 10, Func. Count: 107, Neg. LLF: 161.69830888759898
Iteration: 11, Func. Count: 117, Neg. LLF: 161.69653432851266
Iteration: 12, Func. Count: 127, Neg. LLF: 161.686065423421
Iteration: 13, Func. Count: 137, Neg. LLF: 161.66753980150526
Iteration: 14, Func. Count: 147, Neg. LLF: 161.65419564578596
Iteration: 15, Func. Count: 157, Neg. LLF: 161.64969725183252
Iteration: 16, Func. Count: 167, Neg. LLF: 161.646864936366
Iteration: 17, Func. Count: 177, Neg. LLF: 161.64571446649225
Iteration: 18, Func. Count: 187, Neg. LLF: 161.64500049884165
Iteration: 19, Func. Count: 197, Neg. LLF: 161.64423995726543
Iteration: 20, Func. Count: 207, Neg. LLF: 161.63483340540964
Iteration: 21, Func. Count: 217, Neg. LLF: 161.6075183529482
Iteration: 22, Func. Count: 227, Neg. LLF: 165.1813655681695
Iteration: 23, Func. Count: 240, Neg. LLF: 161.6074081524416
Iteration: 24, Func. Count: 250, Neg. LLF: 161.6074005380246
Iteration: 25, Func. Count: 260, Neg. LLF: 161.60738113732836
Iteration: 26, Func. Count: 270, Neg. LLF: 161.60735355361558
Iteration: 27, Func. Count: 280, Neg. LLF: 161.60732948763908
Iteration: 28, Func. Count: 290, Neg. LLF: 161.6073214493121
Iteration: 29, Func. Count: 300, Neg. LLF: 161.60732054723678
Optimization terminated successfully (Exit mode 0)
Current function value: 161.60732054723678
Iterations: 31
Function evaluations: 300
Gradient evaluations: 29
Iteration: 1, Func. Count: 8, Neg. LLF: 163.49687400499053
Iteration: 2, Func. Count: 15, Neg. LLF: 162.14465768868047
Iteration: 3, Func. Count: 22, Neg. LLF: 171.11180767741376
Iteration: 4, Func. Count: 31, Neg. LLF: 163.64651393577273
Iteration: 5, Func. Count: 39, Neg. LLF: 162.01979629442087
Iteration: 6, Func. Count: 46, Neg. LLF: 161.99854954879987
Iteration: 7, Func. Count: 53, Neg. LLF: 161.9640366055312
Iteration: 8, Func. Count: 60, Neg. LLF: 161.78494149677638
Iteration: 9, Func. Count: 67, Neg. LLF: 161.72524389248827
Iteration: 10, Func. Count: 74, Neg. LLF: 161.8118174888906
Iteration: 11, Func. Count: 82, Neg. LLF: 161.59403476983033
Iteration: 12, Func. Count: 89, Neg. LLF: 161.45205263875
Iteration: 13, Func. Count: 96, Neg. LLF: 161.34178322103438
Iteration: 14, Func. Count: 103, Neg. LLF: 161.26767966671946
Iteration: 15, Func. Count: 110, Neg. LLF: 161.24492340485014
Iteration: 16, Func. Count: 117, Neg. LLF: 161.2431779242676
Iteration: 17, Func. Count: 124, Neg. LLF: 161.24237888017845
Iteration: 18, Func. Count: 131, Neg. LLF: 161.2423545999257
Iteration: 19, Func. Count: 138, Neg. LLF: 161.2423525816995
Iteration: 20, Func. Count: 144, Neg. LLF: 161.2423525785152
Optimization terminated successfully (Exit mode 0)
Current function value: 161.2423525816995
Iterations: 20
Function evaluations: 144
Gradient evaluations: 20
Iteration: 1, Func. Count: 9, Neg. LLF: 173.51094232557432
Iteration: 2, Func. Count: 20, Neg. LLF: 160.93725579078986
Iteration: 3, Func. Count: 28, Neg. LLF: 162.28377903561164
Iteration: 4, Func. Count: 37, Neg. LLF: 162.55561110827836
Iteration: 5, Func. Count: 47, Neg. LLF: 161.70977758382455
Iteration: 6, Func. Count: 56, Neg. LLF: 160.07525780199643
Iteration: 7, Func. Count: 64, Neg. LLF: 160.04573509980992
Iteration: 8, Func. Count: 72, Neg. LLF: 159.9571272827374
Iteration: 9, Func. Count: 80, Neg. LLF: 159.81764715737054
Iteration: 10, Func. Count: 88, Neg. LLF: 159.68663996707446
Iteration: 11, Func. Count: 96, Neg. LLF: 159.5796213464757
Iteration: 12, Func. Count: 104, Neg. LLF: 159.55423893972088
Iteration: 13, Func. Count: 112, Neg. LLF: 159.54409463147627
Iteration: 14, Func. Count: 120, Neg. LLF: 162.63054730808017
Iteration: 15, Func. Count: 131, Neg. LLF: 159.54353539138475
Iteration: 16, Func. Count: 139, Neg. LLF: 159.5435352804394
Iteration: 17, Func. Count: 148, Neg. LLF: 159.54350636516392
Iteration: 18, Func. Count: 155, Neg. LLF: 159.54350630320297
Optimization terminated successfully (Exit mode 0)
Current function value: 159.54350636516392
Iterations: 18
Function evaluations: 155
Gradient evaluations: 18
Iteration: 1, Func. Count: 10, Neg. LLF: 184.16740447129314
Iteration: 2, Func. Count: 20, Neg. LLF: 161.70096741830315
Iteration: 3, Func. Count: 29, Neg. LLF: 160.43801675796388
Iteration: 4, Func. Count: 38, Neg. LLF: 167.5997581320003
Iteration: 5, Func. Count: 48, Neg. LLF: 168.4240887666283
Iteration: 6, Func. Count: 60, Neg. LLF: 163.68191651622698
Iteration: 7, Func. Count: 70, Neg. LLF: 159.8692771333921
Iteration: 8, Func. Count: 79, Neg. LLF: 159.86578109244587
Iteration: 9, Func. Count: 89, Neg. LLF: 159.75514367093146
Iteration: 10, Func. Count: 98, Neg. LLF: 159.57526031418618
Iteration: 11, Func. Count: 107, Neg. LLF: 159.57892510577094
Iteration: 12, Func. Count: 117, Neg. LLF: 159.54450201754204
Iteration: 13, Func. Count: 126, Neg. LLF: 159.54400777780768
Iteration: 14, Func. Count: 135, Neg. LLF: 159.54394886272354
Iteration: 15, Func. Count: 144, Neg. LLF: 159.5438275931647
Iteration: 16, Func. Count: 153, Neg. LLF: 159.54373091875826
Iteration: 17, Func. Count: 162, Neg. LLF: 159.54358357359632
Iteration: 18, Func. Count: 171, Neg. LLF: 159.5435223953138
Iteration: 19, Func. Count: 180, Neg. LLF: 159.54351792857804
Iteration: 20, Func. Count: 189, Neg. LLF: 159.64792845654307
Optimization terminated successfully (Exit mode 0)
Current function value: 159.54351754623613
Iterations: 21
Function evaluations: 192
Gradient evaluations: 20
Iteration: 1, Func. Count: 11, Neg. LLF: 170.60808290298064
Iteration: 2, Func. Count: 22, Neg. LLF: 161.78287082724444
Iteration: 3, Func. Count: 32, Neg. LLF: 160.1065154165088
Iteration: 4, Func. Count: 42, Neg. LLF: 191.2642995538532
Iteration: 5, Func. Count: 54, Neg. LLF: 159.9122225996981
Iteration: 6, Func. Count: 65, Neg. LLF: 159.6088308114344
Iteration: 7, Func. Count: 75, Neg. LLF: 159.58825024985413
Iteration: 8, Func. Count: 85, Neg. LLF: 159.56547185879467
Iteration: 9, Func. Count: 95, Neg. LLF: 159.55494168264514
Iteration: 10, Func. Count: 105, Neg. LLF: 159.55249677709392
Iteration: 11, Func. Count: 115, Neg. LLF: 159.5509812507432
Iteration: 12, Func. Count: 125, Neg. LLF: 159.5492954095084
Iteration: 13, Func. Count: 135, Neg. LLF: 159.62249224080304
Iteration: 14, Func. Count: 147, Neg. LLF: 159.7063169930065
Iteration: 15, Func. Count: 158, Neg. LLF: 159.54490120659045
Iteration: 16, Func. Count: 168, Neg. LLF: 159.54355329432678
Iteration: 17, Func. Count: 178, Neg. LLF: 159.54350817496763
Iteration: 18, Func. Count: 188, Neg. LLF: 159.5435091110989
Optimization terminated successfully (Exit mode 0)
Current function value: 159.54350797417982
Iterations: 18
Function evaluations: 189
Gradient evaluations: 18
Iteration: 1, Func. Count: 12, Neg. LLF: 168.01096454620074
Iteration: 2, Func. Count: 24, Neg. LLF: 161.93614806968276
Iteration: 3, Func. Count: 36, Neg. LLF: 160.04539447393037
Iteration: 4, Func. Count: 47, Neg. LLF: 161.33924233121007
Iteration: 5, Func. Count: 59, Neg. LLF: 164.95051814141456
Iteration: 6, Func. Count: 71, Neg. LLF: 160.42714284721464
Iteration: 7, Func. Count: 83, Neg. LLF: 159.7772990925014
Iteration: 8, Func. Count: 94, Neg. LLF: 159.7118487903888
Iteration: 9, Func. Count: 105, Neg. LLF: 159.64639507512135
Iteration: 10, Func. Count: 116, Neg. LLF: 159.58319932056668
Iteration: 11, Func. Count: 127, Neg. LLF: 159.5882579714673
Iteration: 12, Func. Count: 139, Neg. LLF: 159.5523374098411
Iteration: 13, Func. Count: 150, Neg. LLF: 159.55101233481452
Iteration: 14, Func. Count: 161, Neg. LLF: 159.5496057205439
Iteration: 15, Func. Count: 172, Neg. LLF: 159.5480036762239
Iteration: 16, Func. Count: 183, Neg. LLF: 159.54544445631663
Iteration: 17, Func. Count: 194, Neg. LLF: 159.6796344259181
Iteration: 18, Func. Count: 207, Neg. LLF: 159.55819240169288
Iteration: 19, Func. Count: 219, Neg. LLF: 159.5436591146734
Iteration: 20, Func. Count: 230, Neg. LLF: 159.54350280734366
Iteration: 21, Func. Count: 241, Neg. LLF: 159.54349547431968
Optimization terminated successfully (Exit mode 0)
Current function value: 159.54350279971695
Iterations: 21
Function evaluations: 251
Gradient evaluations: 21
Iteration: 1, Func. Count: 9, Neg. LLF: 161.13858064517046
Iteration: 2, Func. Count: 17, Neg. LLF: 161.35663455632525
Iteration: 3, Func. Count: 26, Neg. LLF: 157.33587969488428
Iteration: 4, Func. Count: 34, Neg. LLF: 157.0357744595336
Iteration: 5, Func. Count: 42, Neg. LLF: 157.02130381873081
Iteration: 6, Func. Count: 50, Neg. LLF: 156.93613237803308
Iteration: 7, Func. Count: 58, Neg. LLF: 156.85655353424846
Iteration: 8, Func. Count: 66, Neg. LLF: 167.77133273768698
Iteration: 9, Func. Count: 76, Neg. LLF: 156.8188495393807
Iteration: 10, Func. Count: 84, Neg. LLF: 156.79135660998236
Iteration: 11, Func. Count: 92, Neg. LLF: 156.790124986184
Iteration: 12, Func. Count: 100, Neg. LLF: 156.79001825659117
Iteration: 13, Func. Count: 107, Neg. LLF: 156.79001823148678
Optimization terminated successfully (Exit mode 0)
Current function value: 156.79001825659117
Iterations: 13
Function evaluations: 107
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 173.56191904859227
Iteration: 2, Func. Count: 22, Neg. LLF: 158.23803491157807
Iteration: 3, Func. Count: 31, Neg. LLF: 157.71359312377095
Iteration: 4, Func. Count: 40, Neg. LLF: 157.16514684250112
Iteration: 5, Func. Count: 49, Neg. LLF: 157.0299004137959
Iteration: 6, Func. Count: 58, Neg. LLF: 156.97237134229343
Iteration: 7, Func. Count: 67, Neg. LLF: 156.95629916669353
Iteration: 8, Func. Count: 76, Neg. LLF: 156.94224725841883
Iteration: 9, Func. Count: 85, Neg. LLF: 156.88008478677295
Iteration: 10, Func. Count: 94, Neg. LLF: 199.2928264029804
Iteration: 11, Func. Count: 104, Neg. LLF: 156.7943221019238
Iteration: 12, Func. Count: 113, Neg. LLF: 156.79049012446924
Iteration: 13, Func. Count: 122, Neg. LLF: 156.79032183563288
Iteration: 14, Func. Count: 131, Neg. LLF: 156.79002311076442
Iteration: 15, Func. Count: 140, Neg. LLF: 156.79001797229606
Iteration: 16, Func. Count: 148, Neg. LLF: 156.7900179967245
Optimization terminated successfully (Exit mode 0)
Current function value: 156.79001797229606
Iterations: 16
Function evaluations: 148
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 161.10685748076722
Iteration: 2, Func. Count: 21, Neg. LLF: 159.7917244978197
Iteration: 3, Func. Count: 31, Neg. LLF: 157.8552704043873
Iteration: 4, Func. Count: 41, Neg. LLF: 157.10986975591962
Iteration: 5, Func. Count: 51, Neg. LLF: 156.96567444849293
Iteration: 6, Func. Count: 61, Neg. LLF: 156.9521699054154
Iteration: 7, Func. Count: 71, Neg. LLF: 156.91909660920012
Iteration: 8, Func. Count: 81, Neg. LLF: 156.88614871898417
Iteration: 9, Func. Count: 91, Neg. LLF: 197.34945838556374
Iteration: 10, Func. Count: 104, Neg. LLF: 156.82976521516795
Iteration: 11, Func. Count: 114, Neg. LLF: 156.79967488678312
Iteration: 12, Func. Count: 124, Neg. LLF: 156.79029518267228
Iteration: 13, Func. Count: 134, Neg. LLF: 156.79001962161703
Iteration: 14, Func. Count: 144, Neg. LLF: 156.79001777437637
Iteration: 15, Func. Count: 153, Neg. LLF: 156.79001781528942
Optimization terminated successfully (Exit mode 0)
Current function value: 156.79001777437637
Iterations: 15
Function evaluations: 153
Gradient evaluations: 15
Iteration: 1, Func. Count: 12, Neg. LLF: 161.5681721573172
Iteration: 2, Func. Count: 27, Neg. LLF: 157.20941383846207
Iteration: 3, Func. Count: 38, Neg. LLF: 157.34343583157641
Iteration: 4, Func. Count: 50, Neg. LLF: 157.1086648472832
Iteration: 5, Func. Count: 62, Neg. LLF: 156.98319242469128
Iteration: 6, Func. Count: 73, Neg. LLF: 156.93214365906329
Iteration: 7, Func. Count: 84, Neg. LLF: 156.87329512487761
Iteration: 8, Func. Count: 95, Neg. LLF: 157.51779232192854
Iteration: 9, Func. Count: 108, Neg. LLF: 158.0227449046551
Iteration: 10, Func. Count: 121, Neg. LLF: 157.11396012241102
Iteration: 11, Func. Count: 133, Neg. LLF: 156.79110835807313
Iteration: 12, Func. Count: 144, Neg. LLF: 156.79001921836053
Iteration: 13, Func. Count: 155, Neg. LLF: 156.79001774403244
Iteration: 14, Func. Count: 165, Neg. LLF: 156.79001774551918
Optimization terminated successfully (Exit mode 0)
Current function value: 156.79001774403244
Iterations: 14
Function evaluations: 165
Gradient evaluations: 14
Iteration: 1, Func. Count: 13, Neg. LLF: 157.36384437213087
Iteration: 2, Func. Count: 25, Neg. LLF: 157.4172894388803
Iteration: 3, Func. Count: 38, Neg. LLF: 156.88635682289137
Iteration: 4, Func. Count: 50, Neg. LLF: 156.8737805422588
Iteration: 5, Func. Count: 63, Neg. LLF: 156.30816083117094
Iteration: 6, Func. Count: 75, Neg. LLF: 157.67845315778462
Iteration: 7, Func. Count: 88, Neg. LLF: 156.07959950872444
Iteration: 8, Func. Count: 101, Neg. LLF: 156.56815246832704
Iteration: 9, Func. Count: 114, Neg. LLF: 155.43067417030258
Iteration: 10, Func. Count: 127, Neg. LLF: 155.06906996685058
Iteration: 11, Func. Count: 139, Neg. LLF: 155.04104934991636
Iteration: 12, Func. Count: 151, Neg. LLF: 155.04067222859166
Iteration: 13, Func. Count: 163, Neg. LLF: 155.04065433208783
Iteration: 14, Func. Count: 174, Neg. LLF: 155.04065415455227
Optimization terminated successfully (Exit mode 0)
Current function value: 155.04065433208783
Iterations: 14
Function evaluations: 174
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 160.1149595171319
Iteration: 2, Func. Count: 19, Neg. LLF: 163.01983468539814
Iteration: 3, Func. Count: 29, Neg. LLF: 157.2739884278932
Iteration: 4, Func. Count: 38, Neg. LLF: 157.0424395292932
Iteration: 5, Func. Count: 47, Neg. LLF: 157.0273663553011
Iteration: 6, Func. Count: 56, Neg. LLF: 156.93195631199714
Iteration: 7, Func. Count: 65, Neg. LLF: 156.97975688933113
Iteration: 8, Func. Count: 75, Neg. LLF: 160.81244469574372
Iteration: 9, Func. Count: 85, Neg. LLF: 156.80710804081238
Iteration: 10, Func. Count: 94, Neg. LLF: 156.79952319831241
Iteration: 11, Func. Count: 103, Neg. LLF: 156.79299422452365
Iteration: 12, Func. Count: 112, Neg. LLF: 156.79026848676793
Iteration: 13, Func. Count: 121, Neg. LLF: 156.79004273469988
Iteration: 14, Func. Count: 130, Neg. LLF: 156.79001780058485
Iteration: 15, Func. Count: 138, Neg. LLF: 156.79001777938313
Optimization terminated successfully (Exit mode 0)
Current function value: 156.79001780058485
Iterations: 15
Function evaluations: 138
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 163.39157642302152
Iteration: 2, Func. Count: 25, Neg. LLF: 165.1222943682441
Iteration: 3, Func. Count: 36, Neg. LLF: 164.0371779828274
Iteration: 4, Func. Count: 47, Neg. LLF: 164.6700194416231
Iteration: 5, Func. Count: 58, Neg. LLF: 164.57828057059496
Iteration: 6, Func. Count: 69, Neg. LLF: 159.18985406832638
Iteration: 7, Func. Count: 79, Neg. LLF: 159.20522878975825
Iteration: 8, Func. Count: 90, Neg. LLF: 158.99515591863482
Iteration: 9, Func. Count: 100, Neg. LLF: 158.13284852060804
Iteration: 10, Func. Count: 110, Neg. LLF: 158.47190987820707
Iteration: 11, Func. Count: 121, Neg. LLF: 158.71726583914165
Iteration: 12, Func. Count: 132, Neg. LLF: 157.2547521235084
Iteration: 13, Func. Count: 142, Neg. LLF: 157.0860675940345
Iteration: 14, Func. Count: 152, Neg. LLF: 157.330957803085
Iteration: 15, Func. Count: 163, Neg. LLF: 156.87575769771541
Iteration: 16, Func. Count: 173, Neg. LLF: 156.84162493168702
Iteration: 17, Func. Count: 183, Neg. LLF: 156.83389643400292
Iteration: 18, Func. Count: 193, Neg. LLF: 156.82440339268865
Iteration: 19, Func. Count: 203, Neg. LLF: 156.81224985541326
Iteration: 20, Func. Count: 213, Neg. LLF: 156.79721010459363
Iteration: 21, Func. Count: 223, Neg. LLF: 156.79084862398656
Iteration: 22, Func. Count: 233, Neg. LLF: 156.79006199006065
Iteration: 23, Func. Count: 243, Neg. LLF: 156.79001935472465
Iteration: 24, Func. Count: 253, Neg. LLF: 156.7900177596637
Iteration: 25, Func. Count: 262, Neg. LLF: 156.7900177840902
Optimization terminated successfully (Exit mode 0)
Current function value: 156.7900177596637
Iterations: 25
Function evaluations: 262
Gradient evaluations: 25
Iteration: 1, Func. Count: 12, Neg. LLF: 159.2651817032623
Iteration: 2, Func. Count: 23, Neg. LLF: 159.15394683353543
Iteration: 3, Func. Count: 35, Neg. LLF: 157.2811536617865
Iteration: 4, Func. Count: 46, Neg. LLF: 163.31580870510697
Iteration: 5, Func. Count: 60, Neg. LLF: 167.84219768495262
Iteration: 6, Func. Count: 72, Neg. LLF: 161.41465169687913
Iteration: 7, Func. Count: 86, Neg. LLF: 156.90881375965492
Iteration: 8, Func. Count: 97, Neg. LLF: 156.8918651137865
Iteration: 9, Func. Count: 108, Neg. LLF: 156.86534463621246
Iteration: 10, Func. Count: 119, Neg. LLF: 156.8350147027734
Iteration: 11, Func. Count: 130, Neg. LLF: 156.79710867479037
Iteration: 12, Func. Count: 141, Neg. LLF: 156.79046158186338
Iteration: 13, Func. Count: 152, Neg. LLF: 156.7900531771972
Iteration: 14, Func. Count: 163, Neg. LLF: 156.79002006522072
Iteration: 15, Func. Count: 174, Neg. LLF: 156.79001780224507
Iteration: 16, Func. Count: 184, Neg. LLF: 156.79001784318515
Optimization terminated successfully (Exit mode 0)
Current function value: 156.79001780224507
Iterations: 16
Function evaluations: 184
Gradient evaluations: 16
Iteration: 1, Func. Count: 13, Neg. LLF: 157.6854560467273
Iteration: 2, Func. Count: 25, Neg. LLF: 157.0811137295541
Iteration: 3, Func. Count: 37, Neg. LLF: 160.35685293960353
Iteration: 4, Func. Count: 51, Neg. LLF: 175.68065959428517
Iteration: 5, Func. Count: 65, Neg. LLF: 157.15592444308285
Iteration: 6, Func. Count: 78, Neg. LLF: 156.93485871497145
Iteration: 7, Func. Count: 90, Neg. LLF: 157.01784769618772
Iteration: 8, Func. Count: 103, Neg. LLF: 156.90712389120353
Iteration: 9, Func. Count: 115, Neg. LLF: 156.85526736196132
Iteration: 10, Func. Count: 127, Neg. LLF: 156.7978172737464
Iteration: 11, Func. Count: 139, Neg. LLF: 156.7904540193254
Iteration: 12, Func. Count: 151, Neg. LLF: 156.79002604245122
Iteration: 13, Func. Count: 163, Neg. LLF: 156.7900179273404
Iteration: 14, Func. Count: 174, Neg. LLF: 156.790017928878
Optimization terminated successfully (Exit mode 0)
Current function value: 156.7900179273404
Iterations: 14
Function evaluations: 174
Gradient evaluations: 14
Iteration: 1, Func. Count: 14, Neg. LLF: 158.50777568568725
Iteration: 2, Func. Count: 27, Neg. LLF: 156.77620300174675
Iteration: 3, Func. Count: 40, Neg. LLF: 158.3903959088547
Iteration: 4, Func. Count: 54, Neg. LLF: 155.93170868404903
Iteration: 5, Func. Count: 67, Neg. LLF: 155.97569748773753
Iteration: 6, Func. Count: 81, Neg. LLF: 155.84089842450516
Iteration: 7, Func. Count: 94, Neg. LLF: 155.7909657597014
Iteration: 8, Func. Count: 107, Neg. LLF: 155.73809899110702
Iteration: 9, Func. Count: 120, Neg. LLF: 155.45938547959048
Iteration: 10, Func. Count: 133, Neg. LLF: 155.59003914680636
Iteration: 11, Func. Count: 147, Neg. LLF: 155.68778754818373
Iteration: 12, Func. Count: 161, Neg. LLF: 155.06952269570976
Iteration: 13, Func. Count: 174, Neg. LLF: 155.04226717038114
Iteration: 14, Func. Count: 187, Neg. LLF: 155.04077195598086
Iteration: 15, Func. Count: 200, Neg. LLF: 155.0406956984877
Iteration: 16, Func. Count: 213, Neg. LLF: 155.04065435286037
Iteration: 17, Func. Count: 225, Neg. LLF: 155.0406541754066
Optimization terminated successfully (Exit mode 0)
Current function value: 155.04065435286037
Iterations: 17
Function evaluations: 225
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 159.4596191038045
Iteration: 2, Func. Count: 21, Neg. LLF: 163.8637673562025
Iteration: 3, Func. Count: 32, Neg. LLF: 157.2386778431328
Iteration: 4, Func. Count: 42, Neg. LLF: 157.0466791229699
Iteration: 5, Func. Count: 52, Neg. LLF: 157.0308262320111
Iteration: 6, Func. Count: 62, Neg. LLF: 156.94637302903124
Iteration: 7, Func. Count: 72, Neg. LLF: 156.85513524828903
Iteration: 8, Func. Count: 82, Neg. LLF: 266.09299286896857
Iteration: 9, Func. Count: 94, Neg. LLF: 156.7954853827786
Iteration: 10, Func. Count: 104, Neg. LLF: 156.7903449476593
Iteration: 11, Func. Count: 114, Neg. LLF: 156.79006648619713
Iteration: 12, Func. Count: 124, Neg. LLF: 156.79001798454988
Iteration: 13, Func. Count: 133, Neg. LLF: 156.7900180089771
Optimization terminated successfully (Exit mode 0)
Current function value: 156.79001798454988
Iterations: 13
Function evaluations: 133
Gradient evaluations: 13
Iteration: 1, Func. Count: 12, Neg. LLF: 163.3418871087955
Iteration: 2, Func. Count: 27, Neg. LLF: 165.02444927910844
Iteration: 3, Func. Count: 39, Neg. LLF: 164.0433528914634
Iteration: 4, Func. Count: 51, Neg. LLF: 164.4649110170104
Iteration: 5, Func. Count: 63, Neg. LLF: 164.61452150933636
Iteration: 6, Func. Count: 75, Neg. LLF: 159.21848326196854
Iteration: 7, Func. Count: 86, Neg. LLF: 159.31863637467114
Iteration: 8, Func. Count: 98, Neg. LLF: 159.04897384583677
Iteration: 9, Func. Count: 109, Neg. LLF: 158.67202021654106
Iteration: 10, Func. Count: 120, Neg. LLF: 157.91100468990442
Iteration: 11, Func. Count: 131, Neg. LLF: 159.76379433838642
Iteration: 12, Func. Count: 144, Neg. LLF: 157.53265151399498
Iteration: 13, Func. Count: 155, Neg. LLF: 157.3031223905313
Iteration: 14, Func. Count: 166, Neg. LLF: 156.9650910043937
Iteration: 15, Func. Count: 177, Neg. LLF: 157.05443606993563
Iteration: 16, Func. Count: 189, Neg. LLF: 156.98020630506474
Iteration: 17, Func. Count: 201, Neg. LLF: 156.8427722053568
Iteration: 18, Func. Count: 212, Neg. LLF: 156.8344004227301
Iteration: 19, Func. Count: 223, Neg. LLF: 156.82754470859655
Iteration: 20, Func. Count: 234, Neg. LLF: 156.81902946147076
Iteration: 21, Func. Count: 245, Neg. LLF: 156.7959181888645
Iteration: 22, Func. Count: 256, Neg. LLF: 156.79128672229132
Iteration: 23, Func. Count: 267, Neg. LLF: 156.79006095909955
Iteration: 24, Func. Count: 278, Neg. LLF: 156.7900201527824
Iteration: 25, Func. Count: 289, Neg. LLF: 156.79001775708247
Iteration: 26, Func. Count: 299, Neg. LLF: 156.79001778149424
Optimization terminated successfully (Exit mode 0)
Current function value: 156.79001775708247
Iterations: 26
Function evaluations: 299
Gradient evaluations: 26
Iteration: 1, Func. Count: 13, Neg. LLF: 159.27229111676974
Iteration: 2, Func. Count: 25, Neg. LLF: 159.1449782614355
Iteration: 3, Func. Count: 38, Neg. LLF: 157.34999140111276
Iteration: 4, Func. Count: 50, Neg. LLF: 171.2494837999986
Iteration: 5, Func. Count: 64, Neg. LLF: 163.3890782470772
Iteration: 6, Func. Count: 77, Neg. LLF: 163.95160468417257
Iteration: 7, Func. Count: 92, Neg. LLF: 156.923217066935
Iteration: 8, Func. Count: 104, Neg. LLF: 156.89346268928384
Iteration: 9, Func. Count: 116, Neg. LLF: 156.8777629689283
Iteration: 10, Func. Count: 128, Neg. LLF: 156.85792738649798
Iteration: 11, Func. Count: 140, Neg. LLF: 156.79651702218473
Iteration: 12, Func. Count: 152, Neg. LLF: 156.79054613593237
Iteration: 13, Func. Count: 164, Neg. LLF: 156.79003543920936
Iteration: 14, Func. Count: 176, Neg. LLF: 156.79001876813425
Iteration: 15, Func. Count: 188, Neg. LLF: 156.79001775559405
Iteration: 16, Func. Count: 199, Neg. LLF: 156.79001779651546
Optimization terminated successfully (Exit mode 0)
Current function value: 156.79001775559405
Iterations: 16
Function evaluations: 199
Gradient evaluations: 16
Iteration: 1, Func. Count: 14, Neg. LLF: 157.70069883125453
Iteration: 2, Func. Count: 27, Neg. LLF: 157.190700977885
Iteration: 3, Func. Count: 40, Neg. LLF: 159.92685490723593
Iteration: 4, Func. Count: 57, Neg. LLF: 161.9339440258768
Iteration: 5, Func. Count: 72, Neg. LLF: 196.8006441321434
Iteration: 6, Func. Count: 87, Neg. LLF: 156.95567247267294
Iteration: 7, Func. Count: 100, Neg. LLF: 156.93124729273882
Iteration: 8, Func. Count: 113, Neg. LLF: 156.9036646468037
Iteration: 9, Func. Count: 126, Neg. LLF: 156.8514343937603
Iteration: 10, Func. Count: 139, Neg. LLF: 156.8062149613461
Iteration: 11, Func. Count: 152, Neg. LLF: 156.79117386168207
Iteration: 12, Func. Count: 165, Neg. LLF: 156.79004690525886
Iteration: 13, Func. Count: 178, Neg. LLF: 156.79001870384326
Iteration: 14, Func. Count: 191, Neg. LLF: 156.79001776495454
Optimization terminated successfully (Exit mode 0)
Current function value: 156.79001776495454
Iterations: 14
Function evaluations: 191
Gradient evaluations: 14
Iteration: 1, Func. Count: 15, Neg. LLF: 158.5071801360816
Iteration: 2, Func. Count: 29, Neg. LLF: 156.77427468096897
Iteration: 3, Func. Count: 43, Neg. LLF: 158.36486902072215
Iteration: 4, Func. Count: 58, Neg. LLF: 155.93145331112652
Iteration: 5, Func. Count: 72, Neg. LLF: 155.9821830253248
Iteration: 6, Func. Count: 87, Neg. LLF: 155.83979229692335
Iteration: 7, Func. Count: 101, Neg. LLF: 155.79110983723922
Iteration: 8, Func. Count: 115, Neg. LLF: 155.73651237538698
Iteration: 9, Func. Count: 129, Neg. LLF: 155.4622012757234
Iteration: 10, Func. Count: 143, Neg. LLF: 155.56519977017942
Iteration: 11, Func. Count: 158, Neg. LLF: 155.68634022531998
Iteration: 12, Func. Count: 173, Neg. LLF: 155.06790712399652
Iteration: 13, Func. Count: 187, Neg. LLF: 155.0420024199695
Iteration: 14, Func. Count: 201, Neg. LLF: 155.0407465432258
Iteration: 15, Func. Count: 215, Neg. LLF: 155.0406857108617
Iteration: 16, Func. Count: 229, Neg. LLF: 155.04065435384118
Iteration: 17, Func. Count: 242, Neg. LLF: 155.0406541763814
Optimization terminated successfully (Exit mode 0)
Current function value: 155.04065435384118
Iterations: 17
Function evaluations: 242
Gradient evaluations: 17
Iteration: 1, Func. Count: 8, Neg. LLF: 160.61389069639299
Iteration: 2, Func. Count: 15, Neg. LLF: 161.94510216981317
Iteration: 3, Func. Count: 23, Neg. LLF: 172.11359558006276
Iteration: 4, Func. Count: 33, Neg. LLF: 158.18815164239305
Iteration: 5, Func. Count: 41, Neg. LLF: 157.65485778095643
Iteration: 6, Func. Count: 48, Neg. LLF: 170.8061955015617
Iteration: 7, Func. Count: 56, Neg. LLF: 157.46845415412662
Iteration: 8, Func. Count: 64, Neg. LLF: 157.35508624960502
Iteration: 9, Func. Count: 71, Neg. LLF: 157.34859273651628
Iteration: 10, Func. Count: 78, Neg. LLF: 157.34585217664358
Iteration: 11, Func. Count: 85, Neg. LLF: 157.34529609202096
Iteration: 12, Func. Count: 92, Neg. LLF: 157.34527215830826
Iteration: 13, Func. Count: 98, Neg. LLF: 157.3452721084306
Optimization terminated successfully (Exit mode 0)
Current function value: 157.34527215830826
Iterations: 13
Function evaluations: 98
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 161.28048565924425
Iteration: 2, Func. Count: 19, Neg. LLF: 160.38990090994966
Iteration: 3, Func. Count: 27, Neg. LLF: 187.90198303921946
Iteration: 4, Func. Count: 37, Neg. LLF: 187.75951071314674
Iteration: 5, Func. Count: 49, Neg. LLF: 200.63703959148606
Iteration: 6, Func. Count: 58, Neg. LLF: 163.1343290052781
Iteration: 7, Func. Count: 67, Neg. LLF: 159.20006225064148
Iteration: 8, Func. Count: 75, Neg. LLF: 158.2444777974644
Iteration: 9, Func. Count: 83, Neg. LLF: 158.04426384549225
Iteration: 10, Func. Count: 91, Neg. LLF: 157.88272058994153
Iteration: 11, Func. Count: 99, Neg. LLF: 157.63225110523726
Iteration: 12, Func. Count: 107, Neg. LLF: 157.64419181471123
Iteration: 13, Func. Count: 116, Neg. LLF: 157.52884262330124
Iteration: 14, Func. Count: 124, Neg. LLF: 157.42291959976842
Iteration: 15, Func. Count: 132, Neg. LLF: 157.33738142454632
Iteration: 16, Func. Count: 140, Neg. LLF: 156.72415939626302
Iteration: 17, Func. Count: 148, Neg. LLF: 170.5950670349411
Iteration: 18, Func. Count: 157, Neg. LLF: 156.48611475730206
Iteration: 19, Func. Count: 165, Neg. LLF: 156.52996876175965
Iteration: 20, Func. Count: 174, Neg. LLF: 156.41201691333157
Iteration: 21, Func. Count: 182, Neg. LLF: 156.41085990449886
Iteration: 22, Func. Count: 190, Neg. LLF: 156.41082562755668
Iteration: 23, Func. Count: 198, Neg. LLF: 156.41081768535423
Iteration: 24, Func. Count: 205, Neg. LLF: 156.41081757457977
Optimization terminated successfully (Exit mode 0)
Current function value: 156.41081768535423
Iterations: 24
Function evaluations: 205
Gradient evaluations: 24
Iteration: 1, Func. Count: 10, Neg. LLF: 161.35833816048796
Iteration: 2, Func. Count: 22, Neg. LLF: 162.64978324553823
Iteration: 3, Func. Count: 32, Neg. LLF: 203.320928084934
Iteration: 4, Func. Count: 43, Neg. LLF: 160.367429309309
Iteration: 5, Func. Count: 52, Neg. LLF: 162.06648239367408
Iteration: 6, Func. Count: 63, Neg. LLF: 160.2003830841706
Iteration: 7, Func. Count: 72, Neg. LLF: 159.70136597591343
Iteration: 8, Func. Count: 81, Neg. LLF: 158.5002272102566
Iteration: 9, Func. Count: 90, Neg. LLF: 158.008817800147
Iteration: 10, Func. Count: 99, Neg. LLF: 157.95582097950071
Iteration: 11, Func. Count: 108, Neg. LLF: 157.8019825081329
Iteration: 12, Func. Count: 117, Neg. LLF: 157.75284329941923
Iteration: 13, Func. Count: 126, Neg. LLF: 157.70065303699414
Iteration: 14, Func. Count: 135, Neg. LLF: 157.5164045536248
Iteration: 15, Func. Count: 144, Neg. LLF: 157.3791218065415
Iteration: 16, Func. Count: 153, Neg. LLF: 157.09245094911725
Iteration: 17, Func. Count: 162, Neg. LLF: 180.1622299393994
Iteration: 18, Func. Count: 172, Neg. LLF: 156.8381681648407
Iteration: 19, Func. Count: 182, Neg. LLF: 156.4416957073433
Iteration: 20, Func. Count: 191, Neg. LLF: 156.42703635161655
Iteration: 21, Func. Count: 200, Neg. LLF: 156.41140191445538
Iteration: 22, Func. Count: 209, Neg. LLF: 156.4108601199533
Iteration: 23, Func. Count: 218, Neg. LLF: 156.41082183906113
Iteration: 24, Func. Count: 227, Neg. LLF: 156.41082051925875
Iteration: 25, Func. Count: 236, Neg. LLF: 156.41081851980982
Iteration: 26, Func. Count: 245, Neg. LLF: 156.41081555351616
Iteration: 27, Func. Count: 254, Neg. LLF: 156.41081632175297
Optimization terminated successfully (Exit mode 0)
Current function value: 156.4108155542665
Iterations: 27
Function evaluations: 264
Gradient evaluations: 27
Iteration: 1, Func. Count: 11, Neg. LLF: 161.4624764603124
Iteration: 2, Func. Count: 25, Neg. LLF: 163.69246872177956
Iteration: 3, Func. Count: 36, Neg. LLF: 174.3143370784534
Iteration: 4, Func. Count: 47, Neg. LLF: 160.68050943885206
Iteration: 5, Func. Count: 57, Neg. LLF: 160.61612391896972
Iteration: 6, Func. Count: 67, Neg. LLF: 160.46301330824858
Iteration: 7, Func. Count: 77, Neg. LLF: 160.29158904229297
Iteration: 8, Func. Count: 87, Neg. LLF: 159.8975798945188
Iteration: 9, Func. Count: 97, Neg. LLF: 159.73919639484635
Iteration: 10, Func. Count: 108, Neg. LLF: 158.57453696999727
Iteration: 11, Func. Count: 118, Neg. LLF: 157.9531632295856
Iteration: 12, Func. Count: 128, Neg. LLF: 158.36436122511503
Iteration: 13, Func. Count: 140, Neg. LLF: 157.84323934113738
Iteration: 14, Func. Count: 150, Neg. LLF: 157.7804975130997
Iteration: 15, Func. Count: 160, Neg. LLF: 157.7058859032268
Iteration: 16, Func. Count: 170, Neg. LLF: 157.4285466408864
Iteration: 17, Func. Count: 180, Neg. LLF: 197.19477887922008
Iteration: 18, Func. Count: 191, Neg. LLF: 188.58405759441249
Iteration: 19, Func. Count: 202, Neg. LLF: 181.6811821192032
Iteration: 20, Func. Count: 213, Neg. LLF: 179.96017023446146
Iteration: 21, Func. Count: 224, Neg. LLF: 174.9478420005783
Iteration: 22, Func. Count: 235, Neg. LLF: 167.21497957130273
Iteration: 23, Func. Count: 246, Neg. LLF: 156.80481092067686
Iteration: 24, Func. Count: 257, Neg. LLF: 156.4209575677316
Iteration: 25, Func. Count: 267, Neg. LLF: 156.41144378774493
Iteration: 26, Func. Count: 277, Neg. LLF: 156.4108522025569
Iteration: 27, Func. Count: 287, Neg. LLF: 156.4108181136728
Iteration: 28, Func. Count: 297, Neg. LLF: 156.41081728776584
Optimization terminated successfully (Exit mode 0)
Current function value: 156.41081728776584
Iterations: 28
Function evaluations: 297
Gradient evaluations: 28
Iteration: 1, Func. Count: 12, Neg. LLF: 164.50651689645332
Iteration: 2, Func. Count: 27, Neg. LLF: 174.5248287722522
Iteration: 3, Func. Count: 40, Neg. LLF: 161.64295505802502
Iteration: 4, Func. Count: 51, Neg. LLF: 161.22869806568607
Iteration: 5, Func. Count: 62, Neg. LLF: 160.99535657951947
Iteration: 6, Func. Count: 73, Neg. LLF: 160.91510048296166
Iteration: 7, Func. Count: 84, Neg. LLF: 160.60569379323755
Iteration: 8, Func. Count: 95, Neg. LLF: 163.71550935925467
Iteration: 9, Func. Count: 107, Neg. LLF: 163.47213104374765
Iteration: 10, Func. Count: 119, Neg. LLF: 159.24229427050722
Iteration: 11, Func. Count: 130, Neg. LLF: 158.22387960886988
Iteration: 12, Func. Count: 142, Neg. LLF: 165.0839169087122
Iteration: 13, Func. Count: 154, Neg. LLF: 156.2749568858298
Iteration: 14, Func. Count: 165, Neg. LLF: 156.15455015269927
Iteration: 15, Func. Count: 176, Neg. LLF: 156.08770772106527
Iteration: 16, Func. Count: 187, Neg. LLF: 156.0591290739915
Iteration: 17, Func. Count: 198, Neg. LLF: 156.003089700963
Iteration: 18, Func. Count: 209, Neg. LLF: 155.98153219370275
Iteration: 19, Func. Count: 220, Neg. LLF: 155.9057941694816
Iteration: 20, Func. Count: 231, Neg. LLF: 155.88549797224098
Iteration: 21, Func. Count: 242, Neg. LLF: 155.88361744841143
Iteration: 22, Func. Count: 253, Neg. LLF: 155.88345716197475
Iteration: 23, Func. Count: 264, Neg. LLF: 155.88345697500182
Optimization terminated successfully (Exit mode 0)
Current function value: 155.88345697500182
Iterations: 23
Function evaluations: 264
Gradient evaluations: 23
Iteration: 1, Func. Count: 9, Neg. LLF: 163.44914238834494
Iteration: 2, Func. Count: 18, Neg. LLF: 158.90846976661766
Iteration: 3, Func. Count: 26, Neg. LLF: 172.3556354737865
Iteration: 4, Func. Count: 37, Neg. LLF: 158.15763396278942
Iteration: 5, Func. Count: 45, Neg. LLF: 158.69398708770396
Iteration: 6, Func. Count: 55, Neg. LLF: 157.9012810034248
Iteration: 7, Func. Count: 63, Neg. LLF: 160.03074329393357
Iteration: 8, Func. Count: 72, Neg. LLF: 157.74230572290932
Iteration: 9, Func. Count: 80, Neg. LLF: 157.54061823982616
Iteration: 10, Func. Count: 88, Neg. LLF: 157.30896106821854
Iteration: 11, Func. Count: 96, Neg. LLF: 157.2568924705042
Iteration: 12, Func. Count: 104, Neg. LLF: 157.24227801665188
Iteration: 13, Func. Count: 112, Neg. LLF: 157.24102280097722
Iteration: 14, Func. Count: 120, Neg. LLF: 157.24089071414906
Iteration: 15, Func. Count: 128, Neg. LLF: 157.2408813026938
Iteration: 16, Func. Count: 136, Neg. LLF: 157.24087962285668
Iteration: 17, Func. Count: 143, Neg. LLF: 157.24087958996628
Optimization terminated successfully (Exit mode 0)
Current function value: 157.24087962285668
Iterations: 17
Function evaluations: 143
Gradient evaluations: 17
Iteration: 1, Func. Count: 10, Neg. LLF: 162.16626136622168
Iteration: 2, Func. Count: 22, Neg. LLF: 159.22510711206408
Iteration: 3, Func. Count: 31, Neg. LLF: 160.34345810139624
Iteration: 4, Func. Count: 42, Neg. LLF: 200.85631047755484
Iteration: 5, Func. Count: 52, Neg. LLF: 159.09401327199578
Iteration: 6, Func. Count: 62, Neg. LLF: 158.2856199895444
Iteration: 7, Func. Count: 71, Neg. LLF: 158.35469187379167
Iteration: 8, Func. Count: 81, Neg. LLF: 158.15960704343078
Iteration: 9, Func. Count: 90, Neg. LLF: 158.13880007500833
Iteration: 10, Func. Count: 99, Neg. LLF: 158.11741768800013
Iteration: 11, Func. Count: 108, Neg. LLF: 158.0238016351825
Iteration: 12, Func. Count: 117, Neg. LLF: 157.92986507264555
Iteration: 13, Func. Count: 126, Neg. LLF: 157.89369352734508
Iteration: 14, Func. Count: 135, Neg. LLF: 157.853612872508
Iteration: 15, Func. Count: 144, Neg. LLF: 157.84907989032874
Iteration: 16, Func. Count: 153, Neg. LLF: 157.8476318854487
Iteration: 17, Func. Count: 162, Neg. LLF: 158.9230694670879
Iteration: 18, Func. Count: 174, Neg. LLF: 157.84757348059972
Iteration: 19, Func. Count: 182, Neg. LLF: 157.84757342387374
Optimization terminated successfully (Exit mode 0)
Current function value: 157.84757348059972
Iterations: 19
Function evaluations: 182
Gradient evaluations: 19
Iteration: 1, Func. Count: 11, Neg. LLF: 161.89563774077834
Iteration: 2, Func. Count: 24, Neg. LLF: 158.72801573840064
Iteration: 3, Func. Count: 34, Neg. LLF: 159.4745538903688
Iteration: 4, Func. Count: 46, Neg. LLF: 158.56213328571414
Iteration: 5, Func. Count: 56, Neg. LLF: 158.3194145607141
Iteration: 6, Func. Count: 66, Neg. LLF: 163.1570577753095
Iteration: 7, Func. Count: 77, Neg. LLF: 158.22029690019264
Iteration: 8, Func. Count: 87, Neg. LLF: 158.16481111573623
Iteration: 9, Func. Count: 97, Neg. LLF: 158.13692552313418
Iteration: 10, Func. Count: 107, Neg. LLF: 158.11069164353037
Iteration: 11, Func. Count: 117, Neg. LLF: 158.08402217002873
Iteration: 12, Func. Count: 127, Neg. LLF: 157.99124085678818
Iteration: 13, Func. Count: 137, Neg. LLF: 157.90433230747243
Iteration: 14, Func. Count: 147, Neg. LLF: 157.851760381573
Iteration: 15, Func. Count: 157, Neg. LLF: 158.3618492897241
Iteration: 16, Func. Count: 170, Neg. LLF: 158.0602178344922
Iteration: 17, Func. Count: 181, Neg. LLF: 157.84758551263263
Iteration: 18, Func. Count: 191, Neg. LLF: 157.847574009105
Iteration: 19, Func. Count: 201, Neg. LLF: 157.84757304198845
Optimization terminated successfully (Exit mode 0)
Current function value: 157.84757304198845
Iterations: 19
Function evaluations: 201
Gradient evaluations: 19
Iteration: 1, Func. Count: 12, Neg. LLF: 161.87657609829986
Iteration: 2, Func. Count: 26, Neg. LLF: 158.9884037109134
Iteration: 3, Func. Count: 37, Neg. LLF: 159.16164895574119
Iteration: 4, Func. Count: 49, Neg. LLF: 159.11198649102022
Iteration: 5, Func. Count: 62, Neg. LLF: 170.38875921477447
Iteration: 6, Func. Count: 74, Neg. LLF: 158.25673213326985
Iteration: 7, Func. Count: 85, Neg. LLF: 158.1816906504457
Iteration: 8, Func. Count: 96, Neg. LLF: 158.1476779303163
Iteration: 9, Func. Count: 107, Neg. LLF: 158.11853896146297
Iteration: 10, Func. Count: 118, Neg. LLF: 158.1012610727218
Iteration: 11, Func. Count: 129, Neg. LLF: 157.99345288100534
Iteration: 12, Func. Count: 140, Neg. LLF: 157.8759747576834
Iteration: 13, Func. Count: 151, Neg. LLF: 157.852512071421
Iteration: 14, Func. Count: 162, Neg. LLF: 157.84784164986053
Iteration: 15, Func. Count: 173, Neg. LLF: 159.5141680822413
Iteration: 16, Func. Count: 187, Neg. LLF: 157.84759885661998
Iteration: 17, Func. Count: 198, Neg. LLF: 157.8475741232868
Iteration: 18, Func. Count: 209, Neg. LLF: 157.84757310965952
Iteration: 19, Func. Count: 219, Neg. LLF: 157.84757320759763
Optimization terminated successfully (Exit mode 0)
Current function value: 157.84757310965952
Iterations: 19
Function evaluations: 219
Gradient evaluations: 19
Iteration: 1, Func. Count: 13, Neg. LLF: 161.92834736046638
Iteration: 2, Func. Count: 28, Neg. LLF: 158.80638483711456
Iteration: 3, Func. Count: 40, Neg. LLF: 159.724524359113
Iteration: 4, Func. Count: 53, Neg. LLF: 158.38491318631242
Iteration: 5, Func. Count: 65, Neg. LLF: 158.70850582384614
Iteration: 6, Func. Count: 78, Neg. LLF: 159.41158134519972
Iteration: 7, Func. Count: 91, Neg. LLF: 158.21493383878612
Iteration: 8, Func. Count: 103, Neg. LLF: 158.45511714058
Iteration: 9, Func. Count: 116, Neg. LLF: 158.14764112796345
Iteration: 10, Func. Count: 129, Neg. LLF: 158.1170151029236
Iteration: 11, Func. Count: 141, Neg. LLF: 158.04064983309922
Iteration: 12, Func. Count: 153, Neg. LLF: 157.85542054301916
Iteration: 13, Func. Count: 165, Neg. LLF: 183.7840710188836
Iteration: 14, Func. Count: 180, Neg. LLF: 157.84935487390595
Iteration: 15, Func. Count: 192, Neg. LLF: 157.8476043481596
Iteration: 16, Func. Count: 204, Neg. LLF: 157.84757582973012
Iteration: 17, Func. Count: 216, Neg. LLF: 157.8475730346506
Iteration: 18, Func. Count: 227, Neg. LLF: 157.84757305737622
Optimization terminated successfully (Exit mode 0)
Current function value: 157.8475730346506
Iterations: 18
Function evaluations: 227
Gradient evaluations: 18
Iteration: 1, Func. Count: 10, Neg. LLF: 157.52246073939375
Iteration: 2, Func. Count: 19, Neg. LLF: 158.92091498401538
Iteration: 3, Func. Count: 29, Neg. LLF: 157.38203905174836
Iteration: 4, Func. Count: 39, Neg. LLF: 159.58265238006922
Iteration: 5, Func. Count: 50, Neg. LLF: 156.70715161684393
Iteration: 6, Func. Count: 59, Neg. LLF: 156.62136404775384
Iteration: 7, Func. Count: 68, Neg. LLF: 156.55369419588135
Iteration: 8, Func. Count: 77, Neg. LLF: 156.67922215013655
Iteration: 9, Func. Count: 87, Neg. LLF: 199.9174130909139
Iteration: 10, Func. Count: 98, Neg. LLF: 171.28709380946236
Iteration: 11, Func. Count: 109, Neg. LLF: 156.37628060444146
Iteration: 12, Func. Count: 118, Neg. LLF: 156.3613264892448
Iteration: 13, Func. Count: 127, Neg. LLF: 156.36083199555188
Iteration: 14, Func. Count: 136, Neg. LLF: 156.36082351272367
Iteration: 15, Func. Count: 144, Neg. LLF: 156.36082348742391
Optimization terminated successfully (Exit mode 0)
Current function value: 156.36082351272367
Iterations: 15
Function evaluations: 144
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 162.18219170116066
Iteration: 2, Func. Count: 24, Neg. LLF: 158.18995131503715
Iteration: 3, Func. Count: 34, Neg. LLF: 158.19481960391514
Iteration: 4, Func. Count: 45, Neg. LLF: 167.19556464499118
Iteration: 5, Func. Count: 56, Neg. LLF: 156.90501373129848
Iteration: 6, Func. Count: 66, Neg. LLF: 156.83972268080913
Iteration: 7, Func. Count: 76, Neg. LLF: 156.62462054381928
Iteration: 8, Func. Count: 86, Neg. LLF: 156.60964166409516
Iteration: 9, Func. Count: 96, Neg. LLF: 156.5293932322066
Iteration: 10, Func. Count: 106, Neg. LLF: 171.69262722824658
Iteration: 11, Func. Count: 118, Neg. LLF: 248.721042937362
Iteration: 12, Func. Count: 129, Neg. LLF: 156.37461961167259
Iteration: 13, Func. Count: 139, Neg. LLF: 156.3624279752367
Iteration: 14, Func. Count: 149, Neg. LLF: 156.36150267686304
Iteration: 15, Func. Count: 159, Neg. LLF: 156.36084198243722
Iteration: 16, Func. Count: 169, Neg. LLF: 156.36082682238782
Iteration: 17, Func. Count: 179, Neg. LLF: 156.3608233742154
Iteration: 18, Func. Count: 188, Neg. LLF: 156.36082339237004
Optimization terminated successfully (Exit mode 0)
Current function value: 156.3608233742154
Iterations: 18
Function evaluations: 188
Gradient evaluations: 18
Iteration: 1, Func. Count: 12, Neg. LLF: 162.09014541214546
Iteration: 2, Func. Count: 26, Neg. LLF: 157.28389441215197
Iteration: 3, Func. Count: 37, Neg. LLF: 156.82055515808275
Iteration: 4, Func. Count: 48, Neg. LLF: 156.69250863579006
Iteration: 5, Func. Count: 59, Neg. LLF: 156.67170504076518
Iteration: 6, Func. Count: 70, Neg. LLF: 156.62410222441656
Iteration: 7, Func. Count: 81, Neg. LLF: 156.5929440609242
Iteration: 8, Func. Count: 92, Neg. LLF: 156.50289140464574
Iteration: 9, Func. Count: 103, Neg. LLF: 156.94955622170193
Iteration: 10, Func. Count: 116, Neg. LLF: 179.24680194037077
Iteration: 11, Func. Count: 128, Neg. LLF: 156.38623361896495
Iteration: 12, Func. Count: 139, Neg. LLF: 156.36325003036657
Iteration: 13, Func. Count: 150, Neg. LLF: 156.36098915614488
Iteration: 14, Func. Count: 161, Neg. LLF: 156.36083227810064
Iteration: 15, Func. Count: 172, Neg. LLF: 156.3608234243658
Iteration: 16, Func. Count: 182, Neg. LLF: 156.36082349355445
Optimization terminated successfully (Exit mode 0)
Current function value: 156.3608234243658
Iterations: 16
Function evaluations: 182
Gradient evaluations: 16
Iteration: 1, Func. Count: 13, Neg. LLF: 162.13669545615926
Iteration: 2, Func. Count: 28, Neg. LLF: 157.15906459226397
Iteration: 3, Func. Count: 40, Neg. LLF: 156.84502252442928
Iteration: 4, Func. Count: 52, Neg. LLF: 156.71906518633574
Iteration: 5, Func. Count: 64, Neg. LLF: 156.81796712144595
Iteration: 6, Func. Count: 77, Neg. LLF: 156.80411920120756
Iteration: 7, Func. Count: 90, Neg. LLF: 156.61773826194025
Iteration: 8, Func. Count: 102, Neg. LLF: 156.57547460517594
Iteration: 9, Func. Count: 114, Neg. LLF: 156.47350279216704
Iteration: 10, Func. Count: 126, Neg. LLF: 158.00769820521822
Iteration: 11, Func. Count: 140, Neg. LLF: 195.57125388737398
Iteration: 12, Func. Count: 153, Neg. LLF: 156.36372022031
Iteration: 13, Func. Count: 165, Neg. LLF: 156.36103264860552
Iteration: 14, Func. Count: 177, Neg. LLF: 156.36083502281755
Iteration: 15, Func. Count: 189, Neg. LLF: 156.3608243986232
Iteration: 16, Func. Count: 201, Neg. LLF: 156.36082334500483
Iteration: 17, Func. Count: 212, Neg. LLF: 156.36082337525923
Optimization terminated successfully (Exit mode 0)
Current function value: 156.36082334500483
Iterations: 17
Function evaluations: 212
Gradient evaluations: 17
Iteration: 1, Func. Count: 14, Neg. LLF: 162.32917285375564
Iteration: 2, Func. Count: 30, Neg. LLF: 157.29020074889806
Iteration: 3, Func. Count: 43, Neg. LLF: 156.88832400332103
Iteration: 4, Func. Count: 56, Neg. LLF: 156.691700411644
Iteration: 5, Func. Count: 69, Neg. LLF: 156.65393903491264
Iteration: 6, Func. Count: 82, Neg. LLF: 156.57740923009396
Iteration: 7, Func. Count: 95, Neg. LLF: 156.53221787220775
Iteration: 8, Func. Count: 108, Neg. LLF: 156.3331249307054
Iteration: 9, Func. Count: 121, Neg. LLF: 155.83612937707414
Iteration: 10, Func. Count: 134, Neg. LLF: 156.61414906895618
Iteration: 11, Func. Count: 148, Neg. LLF: 156.16014519322366
Iteration: 12, Func. Count: 162, Neg. LLF: 156.1313491877358
Iteration: 13, Func. Count: 176, Neg. LLF: 155.24914366507787
Iteration: 14, Func. Count: 190, Neg. LLF: 155.03133561641062
Iteration: 15, Func. Count: 204, Neg. LLF: 154.99488890796567
Iteration: 16, Func. Count: 218, Neg. LLF: 154.9916155127584
Iteration: 17, Func. Count: 231, Neg. LLF: 154.9916385339011
Iteration: 18, Func. Count: 245, Neg. LLF: 154.99158168137882
Iteration: 19, Func. Count: 257, Neg. LLF: 154.99158151934165
Optimization terminated successfully (Exit mode 0)
Current function value: 154.99158168137882
Iterations: 19
Function evaluations: 257
Gradient evaluations: 19
Iteration: 1, Func. Count: 11, Neg. LLF: 157.29760859571056
Iteration: 2, Func. Count: 21, Neg. LLF: 160.50576090843938
Iteration: 3, Func. Count: 34, Neg. LLF: 160.61395312859287
Iteration: 4, Func. Count: 45, Neg. LLF: 156.72775317215977
Iteration: 5, Func. Count: 55, Neg. LLF: 156.75310524500495
Iteration: 6, Func. Count: 66, Neg. LLF: 156.6497929271577
Iteration: 7, Func. Count: 76, Neg. LLF: 156.52954187066004
Iteration: 8, Func. Count: 86, Neg. LLF: 182.57076104994485
Iteration: 9, Func. Count: 98, Neg. LLF: 156.72461281809692
Iteration: 10, Func. Count: 109, Neg. LLF: 156.4026327483735
Iteration: 11, Func. Count: 120, Neg. LLF: 157.08284120711298
Iteration: 12, Func. Count: 131, Neg. LLF: 156.36658369024343
Iteration: 13, Func. Count: 142, Neg. LLF: 156.4277689233736
Iteration: 14, Func. Count: 153, Neg. LLF: 156.36082549295654
Iteration: 15, Func. Count: 163, Neg. LLF: 156.36082338188726
Iteration: 16, Func. Count: 172, Neg. LLF: 156.36082336459677
Optimization terminated successfully (Exit mode 0)
Current function value: 156.36082338188726
Iterations: 16
Function evaluations: 172
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 161.26771772122015
Iteration: 2, Func. Count: 25, Neg. LLF: 159.37796930274146
Iteration: 3, Func. Count: 36, Neg. LLF: 164.9048599592556
Iteration: 4, Func. Count: 50, Neg. LLF: 175.41625308778407
Iteration: 5, Func. Count: 62, Neg. LLF: 159.1514467290282
Iteration: 6, Func. Count: 74, Neg. LLF: 158.026629225863
Iteration: 7, Func. Count: 85, Neg. LLF: 157.5966397919341
Iteration: 8, Func. Count: 96, Neg. LLF: 157.2201101871943
Iteration: 9, Func. Count: 107, Neg. LLF: 156.77453410956707
Iteration: 10, Func. Count: 118, Neg. LLF: 156.6920221490697
Iteration: 11, Func. Count: 129, Neg. LLF: 156.65574438678763
Iteration: 12, Func. Count: 141, Neg. LLF: 156.5833634872561
Iteration: 13, Func. Count: 152, Neg. LLF: 156.56232714431704
Iteration: 14, Func. Count: 163, Neg. LLF: 156.53026235256178
Iteration: 15, Func. Count: 174, Neg. LLF: 156.474276941715
Iteration: 16, Func. Count: 185, Neg. LLF: 158.31898859373163
Iteration: 17, Func. Count: 198, Neg. LLF: 156.7539341495974
Iteration: 18, Func. Count: 210, Neg. LLF: 156.3663302388068
Iteration: 19, Func. Count: 221, Neg. LLF: 156.36089122534167
Iteration: 20, Func. Count: 232, Neg. LLF: 156.36084007694961
Iteration: 21, Func. Count: 243, Neg. LLF: 156.36082525135086
Iteration: 22, Func. Count: 254, Neg. LLF: 156.36082348332803
Iteration: 23, Func. Count: 264, Neg. LLF: 156.36082350146359
Optimization terminated successfully (Exit mode 0)
Current function value: 156.36082348332803
Iterations: 23
Function evaluations: 264
Gradient evaluations: 23
Iteration: 1, Func. Count: 13, Neg. LLF: 161.3432790992542
Iteration: 2, Func. Count: 28, Neg. LLF: 157.69824403479026
Iteration: 3, Func. Count: 40, Neg. LLF: 157.1384039801806
Iteration: 4, Func. Count: 52, Neg. LLF: 157.0637918609139
Iteration: 5, Func. Count: 65, Neg. LLF: 156.65563439020968
Iteration: 6, Func. Count: 77, Neg. LLF: 156.63069927718223
Iteration: 7, Func. Count: 89, Neg. LLF: 156.600441332006
Iteration: 8, Func. Count: 101, Neg. LLF: 156.51654281483582
Iteration: 9, Func. Count: 113, Neg. LLF: 156.44308123568607
Iteration: 10, Func. Count: 125, Neg. LLF: 177.29941155689485
Iteration: 11, Func. Count: 139, Neg. LLF: 156.47357968531
Iteration: 12, Func. Count: 152, Neg. LLF: 157.23455016125217
Iteration: 13, Func. Count: 166, Neg. LLF: 156.36984465438428
Iteration: 14, Func. Count: 178, Neg. LLF: 156.3610017667866
Iteration: 15, Func. Count: 190, Neg. LLF: 156.36082474738518
Iteration: 16, Func. Count: 202, Neg. LLF: 156.360823338436
Iteration: 17, Func. Count: 213, Neg. LLF: 156.36082340760916
Optimization terminated successfully (Exit mode 0)
Current function value: 156.360823338436
Iterations: 17
Function evaluations: 213
Gradient evaluations: 17
Iteration: 1, Func. Count: 14, Neg. LLF: 161.43839326781986
Iteration: 2, Func. Count: 30, Neg. LLF: 157.45230280163622
Iteration: 3, Func. Count: 43, Neg. LLF: 156.86573130933382
Iteration: 4, Func. Count: 56, Neg. LLF: 156.71259473658995
Iteration: 5, Func. Count: 69, Neg. LLF: 156.76795688025317
Iteration: 6, Func. Count: 83, Neg. LLF: 156.65118055909215
Iteration: 7, Func. Count: 96, Neg. LLF: 156.6126987063537
Iteration: 8, Func. Count: 109, Neg. LLF: 156.5863954939204
Iteration: 9, Func. Count: 122, Neg. LLF: 156.48750679618033
Iteration: 10, Func. Count: 135, Neg. LLF: 159.53356458132635
Iteration: 11, Func. Count: 150, Neg. LLF: 182.15996555474837
Iteration: 12, Func. Count: 164, Neg. LLF: 156.37653547227117
Iteration: 13, Func. Count: 177, Neg. LLF: 156.36184197111447
Iteration: 14, Func. Count: 190, Neg. LLF: 156.36110336326428
Iteration: 15, Func. Count: 203, Neg. LLF: 156.360825265024
Iteration: 16, Func. Count: 216, Neg. LLF: 156.3608234837658
Iteration: 17, Func. Count: 228, Neg. LLF: 156.36082351397866
Optimization terminated successfully (Exit mode 0)
Current function value: 156.3608234837658
Iterations: 17
Function evaluations: 228
Gradient evaluations: 17
Iteration: 1, Func. Count: 15, Neg. LLF: 164.53754893298975
Iteration: 2, Func. Count: 33, Neg. LLF: 158.1146099171152
Iteration: 3, Func. Count: 47, Neg. LLF: 155.98600233804763
Iteration: 4, Func. Count: 61, Neg. LLF: 156.48438759271806
Iteration: 5, Func. Count: 76, Neg. LLF: 155.69687893727593
Iteration: 6, Func. Count: 90, Neg. LLF: 155.74343003253978
Iteration: 7, Func. Count: 105, Neg. LLF: 155.60094342842342
Iteration: 8, Func. Count: 119, Neg. LLF: 155.45743024080676
Iteration: 9, Func. Count: 133, Neg. LLF: 155.24199301742166
Iteration: 10, Func. Count: 147, Neg. LLF: 155.2129138309227
Iteration: 11, Func. Count: 162, Neg. LLF: 155.1123818809375
Iteration: 12, Func. Count: 177, Neg. LLF: 155.0127765826248
Iteration: 13, Func. Count: 192, Neg. LLF: 154.99222613915697
Iteration: 14, Func. Count: 206, Neg. LLF: 154.99159446900873
Iteration: 15, Func. Count: 220, Neg. LLF: 154.99158169952358
Iteration: 16, Func. Count: 233, Neg. LLF: 154.99158153752938
Optimization terminated successfully (Exit mode 0)
Current function value: 154.99158169952358
Iterations: 16
Function evaluations: 233
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 158.26087746947124
Iteration: 2, Func. Count: 23, Neg. LLF: 156.2739344162731
Iteration: 3, Func. Count: 34, Neg. LLF: 169.57948506887925
Iteration: 4, Func. Count: 48, Neg. LLF: 161.0081372222881
Iteration: 5, Func. Count: 62, Neg. LLF: 155.94025873203137
Iteration: 6, Func. Count: 73, Neg. LLF: 155.7438049790465
Iteration: 7, Func. Count: 84, Neg. LLF: 155.39817346803804
Iteration: 8, Func. Count: 95, Neg. LLF: 154.71114181959325
Iteration: 9, Func. Count: 106, Neg. LLF: 154.167295578839
Iteration: 10, Func. Count: 117, Neg. LLF: 153.7131026836258
Iteration: 11, Func. Count: 128, Neg. LLF: 153.70463988363016
Iteration: 12, Func. Count: 139, Neg. LLF: 153.7042551860494
Iteration: 13, Func. Count: 150, Neg. LLF: 153.70397740998112
Iteration: 14, Func. Count: 160, Neg. LLF: 153.70397741688527
Optimization terminated successfully (Exit mode 0)
Current function value: 153.70397740998112
Iterations: 14
Function evaluations: 160
Gradient evaluations: 14
Iteration: 1, Func. Count: 13, Neg. LLF: 157.2418568422864
Iteration: 2, Func. Count: 25, Neg. LLF: 158.06642574829368
Iteration: 3, Func. Count: 39, Neg. LLF: 187.9704789020699
Iteration: 4, Func. Count: 52, Neg. LLF: 155.8434361469082
Iteration: 5, Func. Count: 64, Neg. LLF: 155.6320635917231
Iteration: 6, Func. Count: 76, Neg. LLF: 155.4550819591789
Iteration: 7, Func. Count: 88, Neg. LLF: 155.1709473071345
Iteration: 8, Func. Count: 100, Neg. LLF: 406.3070822591081
Iteration: 9, Func. Count: 115, Neg. LLF: 153.7822296195578
Iteration: 10, Func. Count: 127, Neg. LLF: 153.70907788118404
Iteration: 11, Func. Count: 139, Neg. LLF: 153.70929564906476
Iteration: 12, Func. Count: 152, Neg. LLF: 153.7042144319603
Iteration: 13, Func. Count: 164, Neg. LLF: 153.70398926332626
Iteration: 14, Func. Count: 176, Neg. LLF: 153.7039781012192
Iteration: 15, Func. Count: 188, Neg. LLF: 153.7039770642025
Iteration: 16, Func. Count: 199, Neg. LLF: 153.70397703845788
Optimization terminated successfully (Exit mode 0)
Current function value: 153.7039770642025
Iterations: 16
Function evaluations: 199
Gradient evaluations: 16
Iteration: 1, Func. Count: 14, Neg. LLF: 157.86487604643617
Iteration: 2, Func. Count: 27, Neg. LLF: 155.90976711471535
Iteration: 3, Func. Count: 40, Neg. LLF: 164.56610170006599
Iteration: 4, Func. Count: 56, Neg. LLF: 155.6869645274969
Iteration: 5, Func. Count: 69, Neg. LLF: 155.95597811924816
Iteration: 6, Func. Count: 83, Neg. LLF: 321.5518041832515
Iteration: 7, Func. Count: 97, Neg. LLF: 154.80522368127822
Iteration: 8, Func. Count: 111, Neg. LLF: 153.8279475478502
Iteration: 9, Func. Count: 124, Neg. LLF: 153.73194523705607
Iteration: 10, Func. Count: 137, Neg. LLF: 153.70737727600877
Iteration: 11, Func. Count: 150, Neg. LLF: 153.7052598302481
Iteration: 12, Func. Count: 163, Neg. LLF: 153.70407951823208
Iteration: 13, Func. Count: 176, Neg. LLF: 153.7040357511339
Iteration: 14, Func. Count: 189, Neg. LLF: 153.70397719525823
Iteration: 15, Func. Count: 201, Neg. LLF: 153.7039782129786
Optimization terminated successfully (Exit mode 0)
Current function value: 153.70397719525823
Iterations: 15
Function evaluations: 201
Gradient evaluations: 15
Iteration: 1, Func. Count: 15, Neg. LLF: 157.92400694436336
Iteration: 2, Func. Count: 29, Neg. LLF: 155.83161980805025
Iteration: 3, Func. Count: 43, Neg. LLF: 156.52134037046096
Iteration: 4, Func. Count: 59, Neg. LLF: 155.6505063417052
Iteration: 5, Func. Count: 73, Neg. LLF: 158.31859550366437
Iteration: 6, Func. Count: 89, Neg. LLF: 154.94457189817672
Iteration: 7, Func. Count: 103, Neg. LLF: 6979.896081710896
Iteration: 8, Func. Count: 118, Neg. LLF: 29989.18303136728
Iteration: 9, Func. Count: 133, Neg. LLF: 162.2598328005927
Iteration: 10, Func. Count: 148, Neg. LLF: 154.4067612828322
Iteration: 11, Func. Count: 163, Neg. LLF: 153.7149841756964
Iteration: 12, Func. Count: 177, Neg. LLF: 153.70437943537004
Iteration: 13, Func. Count: 191, Neg. LLF: 153.7040163187969
Iteration: 14, Func. Count: 205, Neg. LLF: 153.70397914011002
Iteration: 15, Func. Count: 219, Neg. LLF: 153.70397706276
Iteration: 16, Func. Count: 232, Neg. LLF: 153.7039772684639
Optimization terminated successfully (Exit mode 0)
Current function value: 153.70397706276
Iterations: 16
Function evaluations: 232
Gradient evaluations: 16
Iteration: 1, Func. Count: 16, Neg. LLF: 159.80028558892374
Iteration: 2, Func. Count: 35, Neg. LLF: 158.32248134033023
Iteration: 3, Func. Count: 50, Neg. LLF: 156.44248370103762
Iteration: 4, Func. Count: 65, Neg. LLF: 179.7498497644631
Iteration: 5, Func. Count: 84, Neg. LLF: 156.6826073878653
Iteration: 6, Func. Count: 100, Neg. LLF: 155.89636550519143
Iteration: 7, Func. Count: 115, Neg. LLF: 155.4983909329455
Iteration: 8, Func. Count: 130, Neg. LLF: 155.45426601617245
Iteration: 9, Func. Count: 145, Neg. LLF: 155.42674079515913
Iteration: 10, Func. Count: 160, Neg. LLF: 155.35207359170508
Iteration: 11, Func. Count: 175, Neg. LLF: 155.16528072552538
Iteration: 12, Func. Count: 190, Neg. LLF: 154.96523893617538
Iteration: 13, Func. Count: 205, Neg. LLF: 154.89801408724443
Iteration: 14, Func. Count: 220, Neg. LLF: 154.8812813863162
Iteration: 15, Func. Count: 235, Neg. LLF: 154.87283614652534
Iteration: 16, Func. Count: 250, Neg. LLF: 154.86665855956957
Iteration: 17, Func. Count: 265, Neg. LLF: 154.86576630390311
Iteration: 18, Func. Count: 280, Neg. LLF: 154.86563966662922
Iteration: 19, Func. Count: 295, Neg. LLF: 154.86563639595406
Iteration: 20, Func. Count: 309, Neg. LLF: 154.86563624564914
Optimization terminated successfully (Exit mode 0)
Current function value: 154.86563639595406
Iterations: 20
Function evaluations: 309
Gradient evaluations: 20
Iteration: 1, Func. Count: 6, Neg. LLF: 160.7924731496088
Iteration: 2, Func. Count: 11, Neg. LLF: 165.4758120003384
Iteration: 3, Func. Count: 17, Neg. LLF: 157.10251565463867
Iteration: 4, Func. Count: 22, Neg. LLF: 157.05705843861386
Iteration: 5, Func. Count: 27, Neg. LLF: 157.03228812919232
Iteration: 6, Func. Count: 32, Neg. LLF: 156.98883607924557
Iteration: 7, Func. Count: 37, Neg. LLF: 156.86602704815505
Iteration: 8, Func. Count: 42, Neg. LLF: 156.81405188847637
Iteration: 9, Func. Count: 47, Neg. LLF: 156.8038372007482
Iteration: 10, Func. Count: 52, Neg. LLF: 156.80382193350545
Iteration: 11, Func. Count: 57, Neg. LLF: 156.80381830721603
Iteration: 12, Func. Count: 61, Neg. LLF: 156.80381828274423
Optimization terminated successfully (Exit mode 0)
Current function value: 156.80381830721603
Iterations: 12
Function evaluations: 61
Gradient evaluations: 12
Iteration: 1, Func. Count: 5, Neg. LLF: 161.8953214113311
Iteration: 2, Func. Count: 9, Neg. LLF: 162.77265854401247
Iteration: 3, Func. Count: 14, Neg. LLF: 160.66504004579332
Iteration: 4, Func. Count: 18, Neg. LLF: 160.46030329921516
Iteration: 5, Func. Count: 22, Neg. LLF: 160.30159107753548
Iteration: 6, Func. Count: 26, Neg. LLF: 160.24357028226203
Iteration: 7, Func. Count: 30, Neg. LLF: 160.23582834734754
Iteration: 8, Func. Count: 34, Neg. LLF: 160.23430864898282
Iteration: 9, Func. Count: 38, Neg. LLF: 160.23192578672845
Iteration: 10, Func. Count: 42, Neg. LLF: 160.22903533792555
Iteration: 11, Func. Count: 46, Neg. LLF: 160.22735281026178
Iteration: 12, Func. Count: 50, Neg. LLF: 160.22679524335393
Iteration: 13, Func. Count: 54, Neg. LLF: 160.2266997110464
Iteration: 14, Func. Count: 58, Neg. LLF: 160.2266990873456
Optimization terminated successfully (Exit mode 0)
Current function value: 160.2266990873456
Iterations: 14
Function evaluations: 58
Gradient evaluations: 14
Iteration: 1, Func. Count: 6, Neg. LLF: 175.99766100376516
Iteration: 2, Func. Count: 12, Neg. LLF: 165.4286478690545
Iteration: 3, Func. Count: 18, Neg. LLF: 159.90879554784362
Iteration: 4, Func. Count: 24, Neg. LLF: 161.51843301830817
Iteration: 5, Func. Count: 30, Neg. LLF: 159.2095377156007
Iteration: 6, Func. Count: 36, Neg. LLF: 158.34171394092036
Iteration: 7, Func. Count: 41, Neg. LLF: 158.33690494552712
Iteration: 8, Func. Count: 46, Neg. LLF: 158.33123382348228
Iteration: 9, Func. Count: 51, Neg. LLF: 158.3090153837929
Iteration: 10, Func. Count: 56, Neg. LLF: 158.3001623989846
Iteration: 11, Func. Count: 61, Neg. LLF: 158.29654098581244
Iteration: 12, Func. Count: 66, Neg. LLF: 158.2962177745616
Iteration: 13, Func. Count: 71, Neg. LLF: 158.2962014166356
Iteration: 14, Func. Count: 76, Neg. LLF: 158.29620087962778
Optimization terminated successfully (Exit mode 0)
Current function value: 158.29620087962778
Iterations: 14
Function evaluations: 76
Gradient evaluations: 14
Iteration: 1, Func. Count: 7, Neg. LLF: 172.41633459130577
Iteration: 2, Func. Count: 14, Neg. LLF: 160.1061040194534
Iteration: 3, Func. Count: 22, Neg. LLF: 159.14850487817927
Iteration: 4, Func. Count: 28, Neg. LLF: 158.6618816472583
Iteration: 5, Func. Count: 34, Neg. LLF: 160.25374051687749
Iteration: 6, Func. Count: 41, Neg. LLF: 158.51767469765934
Iteration: 7, Func. Count: 47, Neg. LLF: 158.51583924803398
Iteration: 8, Func. Count: 54, Neg. LLF: 158.41890766686052
Iteration: 9, Func. Count: 60, Neg. LLF: 158.41346747967887
Iteration: 10, Func. Count: 66, Neg. LLF: 158.41328045301805
Iteration: 11, Func. Count: 72, Neg. LLF: 158.41321638653898
Iteration: 12, Func. Count: 78, Neg. LLF: 158.41321481485807
Iteration: 13, Func. Count: 83, Neg. LLF: 158.4132145097014
Optimization terminated successfully (Exit mode 0)
Current function value: 158.41321481485807
Iterations: 13
Function evaluations: 83
Gradient evaluations: 13
Iteration: 1, Func. Count: 8, Neg. LLF: 172.45780635851608
Iteration: 2, Func. Count: 16, Neg. LLF: 161.9742921191356
Iteration: 3, Func. Count: 24, Neg. LLF: 159.83532654728916
Iteration: 4, Func. Count: 31, Neg. LLF: 159.21819018221353
Iteration: 5, Func. Count: 38, Neg. LLF: 161.98870223510917
Iteration: 6, Func. Count: 46, Neg. LLF: 158.92755304968586
Iteration: 7, Func. Count: 53, Neg. LLF: 158.45942753078134
Iteration: 8, Func. Count: 60, Neg. LLF: 158.4526344653298
Iteration: 9, Func. Count: 68, Neg. LLF: 158.31673475521606
Iteration: 10, Func. Count: 75, Neg. LLF: 158.31193453642842
Iteration: 11, Func. Count: 82, Neg. LLF: 158.30637814291018
Iteration: 12, Func. Count: 89, Neg. LLF: 158.2993850174677
Iteration: 13, Func. Count: 96, Neg. LLF: 158.2966136941938
Iteration: 14, Func. Count: 103, Neg. LLF: 158.29623158825012
Iteration: 15, Func. Count: 110, Neg. LLF: 158.29620200712688
Iteration: 16, Func. Count: 117, Neg. LLF: 158.2962008843333
Iteration: 17, Func. Count: 123, Neg. LLF: 158.2962009299993
Optimization terminated successfully (Exit mode 0)
Current function value: 158.2962008843333
Iterations: 17
Function evaluations: 123
Gradient evaluations: 17
Iteration: 1, Func. Count: 9, Neg. LLF: 165.67423728474222
Iteration: 2, Func. Count: 18, Neg. LLF: 159.41167290796307
Iteration: 3, Func. Count: 26, Neg. LLF: 158.62470422383484
Iteration: 4, Func. Count: 34, Neg. LLF: 160.63364521357292
Iteration: 5, Func. Count: 43, Neg. LLF: 158.32947824396715
Iteration: 6, Func. Count: 51, Neg. LLF: 158.3266597787568
Iteration: 7, Func. Count: 59, Neg. LLF: 158.31871235852987
Iteration: 8, Func. Count: 67, Neg. LLF: 158.30903052651087
Iteration: 9, Func. Count: 75, Neg. LLF: 158.3014786621853
Iteration: 10, Func. Count: 83, Neg. LLF: 158.29924108621057
Iteration: 11, Func. Count: 91, Neg. LLF: 158.29867595039815
Iteration: 12, Func. Count: 99, Neg. LLF: 158.29808998173468
Iteration: 13, Func. Count: 107, Neg. LLF: 158.2972232449308
Iteration: 14, Func. Count: 115, Neg. LLF: 158.2964919850236
Iteration: 15, Func. Count: 123, Neg. LLF: 158.29623173682205
Iteration: 16, Func. Count: 131, Neg. LLF: 158.2962018017967
Iteration: 17, Func. Count: 139, Neg. LLF: 158.2962008820618
Optimization terminated successfully (Exit mode 0)
Current function value: 158.2962008820618
Iterations: 17
Function evaluations: 139
Gradient evaluations: 17
Iteration: 1, Func. Count: 6, Neg. LLF: 157.91540239353174
Iteration: 2, Func. Count: 11, Neg. LLF: 165.83854662766927
Iteration: 3, Func. Count: 17, Neg. LLF: 153.32193201655915
Iteration: 4, Func. Count: 22, Neg. LLF: 153.2246268474926
Iteration: 5, Func. Count: 27, Neg. LLF: 153.02627734883254
Iteration: 6, Func. Count: 32, Neg. LLF: 152.73033050221548
Iteration: 7, Func. Count: 37, Neg. LLF: 152.5746438177991
Iteration: 8, Func. Count: 42, Neg. LLF: 152.5978336089596
Iteration: 9, Func. Count: 48, Neg. LLF: 152.4973173258479
Iteration: 10, Func. Count: 54, Neg. LLF: 152.4879086903725
Iteration: 11, Func. Count: 58, Neg. LLF: 152.48790865462897
Optimization terminated successfully (Exit mode 0)
Current function value: 152.4879086903725
Iterations: 11
Function evaluations: 58
Gradient evaluations: 11
Iteration: 1, Func. Count: 7, Neg. LLF: 154.10890496059648
Iteration: 2, Func. Count: 13, Neg. LLF: 153.21708495363055
Iteration: 3, Func. Count: 19, Neg. LLF: 153.12030188852177
Iteration: 4, Func. Count: 25, Neg. LLF: 153.0570335088026
Iteration: 5, Func. Count: 31, Neg. LLF: 152.7884861662535
Iteration: 6, Func. Count: 37, Neg. LLF: 162.24125860151707
Iteration: 7, Func. Count: 44, Neg. LLF: 153.2052501334818
Iteration: 8, Func. Count: 51, Neg. LLF: 152.49394067877154
Iteration: 9, Func. Count: 57, Neg. LLF: 152.48801681814848
Iteration: 10, Func. Count: 63, Neg. LLF: 152.48791414245557
Iteration: 11, Func. Count: 69, Neg. LLF: 152.48790894619955
Iteration: 12, Func. Count: 74, Neg. LLF: 152.48790896701644
Optimization terminated successfully (Exit mode 0)
Current function value: 152.48790894619955
Iterations: 12
Function evaluations: 74
Gradient evaluations: 12
Iteration: 1, Func. Count: 8, Neg. LLF: 161.707639049446
Iteration: 2, Func. Count: 16, Neg. LLF: 163.15554982457388
Iteration: 3, Func. Count: 24, Neg. LLF: 162.28019446361293
Iteration: 4, Func. Count: 32, Neg. LLF: 154.4854374512657
Iteration: 5, Func. Count: 39, Neg. LLF: 153.4987092470036
Iteration: 6, Func. Count: 46, Neg. LLF: 154.1477014629514
Iteration: 7, Func. Count: 54, Neg. LLF: 152.8376056529529
Iteration: 8, Func. Count: 61, Neg. LLF: 152.5500140336708
Iteration: 9, Func. Count: 68, Neg. LLF: 152.48073239757977
Iteration: 10, Func. Count: 75, Neg. LLF: 152.47036876182997
Iteration: 11, Func. Count: 82, Neg. LLF: 152.46044850150028
Iteration: 12, Func. Count: 89, Neg. LLF: 152.45984124136677
Iteration: 13, Func. Count: 96, Neg. LLF: 152.45962102035293
Iteration: 14, Func. Count: 102, Neg. LLF: 152.45962094196622
Optimization terminated successfully (Exit mode 0)
Current function value: 152.45962102035293
Iterations: 14
Function evaluations: 102
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 153.4791227136301
Iteration: 2, Func. Count: 17, Neg. LLF: 154.40738168950193
Iteration: 3, Func. Count: 26, Neg. LLF: 153.1092445898616
Iteration: 4, Func. Count: 34, Neg. LLF: 152.8110007452797
Iteration: 5, Func. Count: 42, Neg. LLF: 185.49785918722316
Iteration: 6, Func. Count: 51, Neg. LLF: 5449670.130700645
Iteration: 7, Func. Count: 60, Neg. LLF: 152.4862712630611
Iteration: 8, Func. Count: 68, Neg. LLF: 152.4611666555893
Iteration: 9, Func. Count: 76, Neg. LLF: 152.45967616288578
Iteration: 10, Func. Count: 84, Neg. LLF: 152.45962597685943
Iteration: 11, Func. Count: 92, Neg. LLF: 152.45962082093266
Iteration: 12, Func. Count: 99, Neg. LLF: 152.45962082237992
Optimization terminated successfully (Exit mode 0)
Current function value: 152.45962082093266
Iterations: 12
Function evaluations: 99
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 153.72518125728283
Iteration: 2, Func. Count: 19, Neg. LLF: 154.94088074407586
Iteration: 3, Func. Count: 29, Neg. LLF: 152.08611481857352
Iteration: 4, Func. Count: 38, Neg. LLF: 152.28116907689832
Iteration: 5, Func. Count: 48, Neg. LLF: 151.99100341953917
Iteration: 6, Func. Count: 57, Neg. LLF: 151.76203799683444
Iteration: 7, Func. Count: 66, Neg. LLF: 151.9243597785155
Iteration: 8, Func. Count: 76, Neg. LLF: 151.86860121911235
Iteration: 9, Func. Count: 86, Neg. LLF: 151.96183153674514
Iteration: 10, Func. Count: 96, Neg. LLF: 151.0385199198291
Iteration: 11, Func. Count: 105, Neg. LLF: 150.98679373199246
Iteration: 12, Func. Count: 114, Neg. LLF: 150.9667649036522
Iteration: 13, Func. Count: 123, Neg. LLF: 150.944389160323
Iteration: 14, Func. Count: 132, Neg. LLF: 150.93832374037862
Iteration: 15, Func. Count: 141, Neg. LLF: 150.93512369163847
Iteration: 16, Func. Count: 150, Neg. LLF: 150.93483619239905
Iteration: 17, Func. Count: 159, Neg. LLF: 150.93481496826428
Iteration: 18, Func. Count: 168, Neg. LLF: 150.93481431752153
Optimization terminated successfully (Exit mode 0)
Current function value: 150.93481431752153
Iterations: 18
Function evaluations: 168
Gradient evaluations: 18
Iteration: 1, Func. Count: 7, Neg. LLF: 156.2689153052611
Iteration: 2, Func. Count: 13, Neg. LLF: 167.98004548330476
Iteration: 3, Func. Count: 20, Neg. LLF: 153.32728210422002
Iteration: 4, Func. Count: 26, Neg. LLF: 153.23766866404932
Iteration: 5, Func. Count: 32, Neg. LLF: 152.79977518430678
Iteration: 6, Func. Count: 38, Neg. LLF: 153.6381463061725
Iteration: 7, Func. Count: 45, Neg. LLF: 152.52661816482419
Iteration: 8, Func. Count: 52, Neg. LLF: 152.4915550157557
Iteration: 9, Func. Count: 59, Neg. LLF: 152.48790903286073
Iteration: 10, Func. Count: 64, Neg. LLF: 152.48790904655746
Optimization terminated successfully (Exit mode 0)
Current function value: 152.48790903286073
Iterations: 10
Function evaluations: 64
Gradient evaluations: 10
Iteration: 1, Func. Count: 8, Neg. LLF: 158.9836627651702
Iteration: 2, Func. Count: 15, Neg. LLF: 158.97434360406962
Iteration: 3, Func. Count: 23, Neg. LLF: 163.95988427888912
Iteration: 4, Func. Count: 31, Neg. LLF: 154.7361907639854
Iteration: 5, Func. Count: 38, Neg. LLF: 154.29637424442737
Iteration: 6, Func. Count: 46, Neg. LLF: 153.2581786095002
Iteration: 7, Func. Count: 53, Neg. LLF: 153.1690660992097
Iteration: 8, Func. Count: 60, Neg. LLF: 152.7048475554793
Iteration: 9, Func. Count: 67, Neg. LLF: 152.54087868725924
Iteration: 10, Func. Count: 74, Neg. LLF: 152.4939024932369
Iteration: 11, Func. Count: 81, Neg. LLF: 152.48845487556034
Iteration: 12, Func. Count: 88, Neg. LLF: 152.4879953897208
Iteration: 13, Func. Count: 95, Neg. LLF: 152.4879208857341
Iteration: 14, Func. Count: 102, Neg. LLF: 152.48790898019791
Iteration: 15, Func. Count: 108, Neg. LLF: 152.48790900121156
Optimization terminated successfully (Exit mode 0)
Current function value: 152.48790898019791
Iterations: 15
Function evaluations: 108
Gradient evaluations: 15
Iteration: 1, Func. Count: 9, Neg. LLF: 161.38718090411518
Iteration: 2, Func. Count: 18, Neg. LLF: 165.23393809355585
Iteration: 3, Func. Count: 27, Neg. LLF: 162.2020797714538
Iteration: 4, Func. Count: 36, Neg. LLF: 154.97300759198976
Iteration: 5, Func. Count: 45, Neg. LLF: 154.33940650911995
Iteration: 6, Func. Count: 54, Neg. LLF: 153.35275426926222
Iteration: 7, Func. Count: 62, Neg. LLF: 153.687526470873
Iteration: 8, Func. Count: 71, Neg. LLF: 152.59912748647497
Iteration: 9, Func. Count: 79, Neg. LLF: 152.50998889523603
Iteration: 10, Func. Count: 87, Neg. LLF: 152.46834715517986
Iteration: 11, Func. Count: 95, Neg. LLF: 152.46111605898471
Iteration: 12, Func. Count: 103, Neg. LLF: 152.45962871493836
Iteration: 13, Func. Count: 111, Neg. LLF: 152.45962091702557
Iteration: 14, Func. Count: 118, Neg. LLF: 152.45962083848858
Optimization terminated successfully (Exit mode 0)
Current function value: 152.45962091702557
Iterations: 14
Function evaluations: 118
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 161.95363907175926
Iteration: 2, Func. Count: 20, Neg. LLF: 165.95460133875358
Iteration: 3, Func. Count: 30, Neg. LLF: 164.6778543958616
Iteration: 4, Func. Count: 40, Neg. LLF: 154.74508741140758
Iteration: 5, Func. Count: 49, Neg. LLF: 154.95166921429242
Iteration: 6, Func. Count: 59, Neg. LLF: 157.9962745582029
Iteration: 7, Func. Count: 70, Neg. LLF: 153.7765734065505
Iteration: 8, Func. Count: 79, Neg. LLF: 153.36661325399325
Iteration: 9, Func. Count: 88, Neg. LLF: 152.56997757885455
Iteration: 10, Func. Count: 97, Neg. LLF: 152.51456305596
Iteration: 11, Func. Count: 106, Neg. LLF: 152.46245381897612
Iteration: 12, Func. Count: 115, Neg. LLF: 152.4603238601074
Iteration: 13, Func. Count: 124, Neg. LLF: 152.45976479090282
Iteration: 14, Func. Count: 133, Neg. LLF: 152.45962194893568
Iteration: 15, Func. Count: 142, Neg. LLF: 152.45962084443104
Iteration: 16, Func. Count: 150, Neg. LLF: 152.45962084588905
Optimization terminated successfully (Exit mode 0)
Current function value: 152.45962084443104
Iterations: 16
Function evaluations: 150
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 152.7486113710553
Iteration: 2, Func. Count: 21, Neg. LLF: 155.15728321864069
Iteration: 3, Func. Count: 33, Neg. LLF: 152.45615255475772
Iteration: 4, Func. Count: 44, Neg. LLF: 152.263340786367
Iteration: 5, Func. Count: 55, Neg. LLF: 152.02068689093682
Iteration: 6, Func. Count: 65, Neg. LLF: 151.9506761179069
Iteration: 7, Func. Count: 75, Neg. LLF: 151.75810053731817
Iteration: 8, Func. Count: 85, Neg. LLF: 151.59433124954705
Iteration: 9, Func. Count: 95, Neg. LLF: 151.10337579120218
Iteration: 10, Func. Count: 105, Neg. LLF: 151.45463729752552
Iteration: 11, Func. Count: 116, Neg. LLF: 150.95551556131295
Iteration: 12, Func. Count: 126, Neg. LLF: 150.9483082541095
Iteration: 13, Func. Count: 136, Neg. LLF: 150.93667979200129
Iteration: 14, Func. Count: 146, Neg. LLF: 150.93491400190993
Iteration: 15, Func. Count: 156, Neg. LLF: 150.9348235477723
Iteration: 16, Func. Count: 166, Neg. LLF: 150.93481445174362
Iteration: 17, Func. Count: 175, Neg. LLF: 150.9348141918725
Optimization terminated successfully (Exit mode 0)
Current function value: 150.93481445174362
Iterations: 17
Function evaluations: 175
Gradient evaluations: 17
Iteration: 1, Func. Count: 8, Neg. LLF: 155.26512461464267
Iteration: 2, Func. Count: 15, Neg. LLF: 167.60437864646255
Iteration: 3, Func. Count: 23, Neg. LLF: 153.33642329951041
Iteration: 4, Func. Count: 30, Neg. LLF: 153.22864914369814
Iteration: 5, Func. Count: 37, Neg. LLF: 152.72954182848187
Iteration: 6, Func. Count: 44, Neg. LLF: 153.43315130902798
Iteration: 7, Func. Count: 52, Neg. LLF: 152.51504725445827
Iteration: 8, Func. Count: 60, Neg. LLF: 152.47683370475488
Iteration: 9, Func. Count: 68, Neg. LLF: 152.47027252376196
Iteration: 10, Func. Count: 76, Neg. LLF: 152.47023134228047
Iteration: 11, Func. Count: 83, Neg. LLF: 152.47022857969392
Iteration: 12, Func. Count: 89, Neg. LLF: 152.47022854260868
Optimization terminated successfully (Exit mode 0)
Current function value: 152.47022857969392
Iterations: 12
Function evaluations: 89
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 159.6339204973528
Iteration: 2, Func. Count: 21, Neg. LLF: 159.20340887732107
Iteration: 3, Func. Count: 29, Neg. LLF: 159.0009421624085
Iteration: 4, Func. Count: 37, Neg. LLF: 158.6952172802631
Iteration: 5, Func. Count: 45, Neg. LLF: 158.6346879688529
Iteration: 6, Func. Count: 53, Neg. LLF: 158.46797914832692
Iteration: 7, Func. Count: 61, Neg. LLF: 158.3883937278221
Iteration: 8, Func. Count: 69, Neg. LLF: 158.3821325409538
Iteration: 9, Func. Count: 77, Neg. LLF: 158.3716718023645
Iteration: 10, Func. Count: 85, Neg. LLF: 158.37104449905374
Iteration: 11, Func. Count: 93, Neg. LLF: 158.37101213410355
Iteration: 12, Func. Count: 101, Neg. LLF: 158.3710060422013
Iteration: 13, Func. Count: 108, Neg. LLF: 158.3710057260215
Optimization terminated successfully (Exit mode 0)
Current function value: 158.3710060422013
Iterations: 13
Function evaluations: 108
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 161.45522344138968
Iteration: 2, Func. Count: 20, Neg. LLF: 164.86793052863123
Iteration: 3, Func. Count: 30, Neg. LLF: 162.22359683932336
Iteration: 4, Func. Count: 40, Neg. LLF: 154.78253622226586
Iteration: 5, Func. Count: 50, Neg. LLF: 154.08097143936973
Iteration: 6, Func. Count: 60, Neg. LLF: 153.2829001758343
Iteration: 7, Func. Count: 69, Neg. LLF: 153.68097011599738
Iteration: 8, Func. Count: 79, Neg. LLF: 152.53873763359167
Iteration: 9, Func. Count: 88, Neg. LLF: 152.48129973279887
Iteration: 10, Func. Count: 97, Neg. LLF: 152.46199119374427
Iteration: 11, Func. Count: 106, Neg. LLF: 152.46030009658668
Iteration: 12, Func. Count: 115, Neg. LLF: 152.4596221823007
Iteration: 13, Func. Count: 124, Neg. LLF: 152.4596208225012
Iteration: 14, Func. Count: 132, Neg. LLF: 152.45962074405915
Optimization terminated successfully (Exit mode 0)
Current function value: 152.4596208225012
Iterations: 14
Function evaluations: 132
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 161.88203160651693
Iteration: 2, Func. Count: 22, Neg. LLF: 165.27479610407832
Iteration: 3, Func. Count: 33, Neg. LLF: 164.32515122288063
Iteration: 4, Func. Count: 44, Neg. LLF: 154.79529484872182
Iteration: 5, Func. Count: 54, Neg. LLF: 154.93375056157507
Iteration: 6, Func. Count: 65, Neg. LLF: 155.77327240448494
Iteration: 7, Func. Count: 77, Neg. LLF: 153.80291655441442
Iteration: 8, Func. Count: 87, Neg. LLF: 153.37197340458857
Iteration: 9, Func. Count: 97, Neg. LLF: 152.55295146894673
Iteration: 10, Func. Count: 107, Neg. LLF: 152.50442359548757
Iteration: 11, Func. Count: 117, Neg. LLF: 152.4605459198131
Iteration: 12, Func. Count: 127, Neg. LLF: 152.45989205902086
Iteration: 13, Func. Count: 137, Neg. LLF: 152.45963078888937
Iteration: 14, Func. Count: 147, Neg. LLF: 152.45962096015708
Iteration: 15, Func. Count: 156, Neg. LLF: 152.45962096157976
Optimization terminated successfully (Exit mode 0)
Current function value: 152.45962096015708
Iterations: 15
Function evaluations: 156
Gradient evaluations: 15
Iteration: 1, Func. Count: 12, Neg. LLF: 152.71950891215621
Iteration: 2, Func. Count: 23, Neg. LLF: 154.83686870596787
Iteration: 3, Func. Count: 36, Neg. LLF: 152.70940202137882
Iteration: 4, Func. Count: 48, Neg. LLF: 152.2304746091314
Iteration: 5, Func. Count: 60, Neg. LLF: 152.01464548187343
Iteration: 6, Func. Count: 71, Neg. LLF: 151.95412880081966
Iteration: 7, Func. Count: 82, Neg. LLF: 151.74992541132204
Iteration: 8, Func. Count: 93, Neg. LLF: 151.60174826239398
Iteration: 9, Func. Count: 104, Neg. LLF: 151.1122246011534
Iteration: 10, Func. Count: 115, Neg. LLF: 151.43912015406372
Iteration: 11, Func. Count: 127, Neg. LLF: 150.9569166892429
Iteration: 12, Func. Count: 138, Neg. LLF: 150.97300859783317
Iteration: 13, Func. Count: 150, Neg. LLF: 150.93708884568085
Iteration: 14, Func. Count: 161, Neg. LLF: 150.93527298944494
Iteration: 15, Func. Count: 172, Neg. LLF: 150.93482948400003
Iteration: 16, Func. Count: 183, Neg. LLF: 150.93481490210777
Iteration: 17, Func. Count: 194, Neg. LLF: 150.93481433822072
Optimization terminated successfully (Exit mode 0)
Current function value: 150.93481433822072
Iterations: 17
Function evaluations: 194
Gradient evaluations: 17
Iteration: 1, Func. Count: 5, Neg. LLF: 162.64909186235033
Iteration: 2, Func. Count: 9, Neg. LLF: 162.6210630657433
Iteration: 3, Func. Count: 13, Neg. LLF: 162.51087003612832
Iteration: 4, Func. Count: 17, Neg. LLF: 162.3048665301368
Iteration: 5, Func. Count: 21, Neg. LLF: 162.2048916204099
Iteration: 6, Func. Count: 25, Neg. LLF: 160.94870234706454
Iteration: 7, Func. Count: 29, Neg. LLF: 161.58540189396354
Iteration: 8, Func. Count: 36, Neg. LLF: 160.62016826737903
Iteration: 9, Func. Count: 40, Neg. LLF: 160.57382305317432
Iteration: 10, Func. Count: 44, Neg. LLF: 160.5667761433149
Iteration: 11, Func. Count: 48, Neg. LLF: 160.56318523433256
Iteration: 12, Func. Count: 52, Neg. LLF: 160.56313034167792
Iteration: 13, Func. Count: 56, Neg. LLF: 160.56312967511053
Optimization terminated successfully (Exit mode 0)
Current function value: 160.56312967511053
Iterations: 13
Function evaluations: 56
Gradient evaluations: 13
Iteration: 1, Func. Count: 6, Neg. LLF: 167.0908956955313
Iteration: 2, Func. Count: 14, Neg. LLF: 188.8668409559549
Iteration: 3, Func. Count: 21, Neg. LLF: 160.3556310330356
Iteration: 4, Func. Count: 27, Neg. LLF: 160.31772688364933
Iteration: 5, Func. Count: 32, Neg. LLF: 160.316752205906
Iteration: 6, Func. Count: 37, Neg. LLF: 160.31509278173766
Iteration: 7, Func. Count: 42, Neg. LLF: 160.30693996968984
Iteration: 8, Func. Count: 47, Neg. LLF: 160.29983799266145
Iteration: 9, Func. Count: 52, Neg. LLF: 160.2922998901676
Iteration: 10, Func. Count: 57, Neg. LLF: 160.28283108250335
Iteration: 11, Func. Count: 62, Neg. LLF: 160.2817154083539
Iteration: 12, Func. Count: 67, Neg. LLF: 160.28080418603378
Iteration: 13, Func. Count: 72, Neg. LLF: 160.23607857889058
Iteration: 14, Func. Count: 77, Neg. LLF: 160.44439462841945
Iteration: 15, Func. Count: 83, Neg. LLF: 160.7927591451862
Iteration: 16, Func. Count: 89, Neg. LLF: 160.18199773432738
Iteration: 17, Func. Count: 95, Neg. LLF: 160.171689208876
Iteration: 18, Func. Count: 100, Neg. LLF: 160.17167916910958
Iteration: 19, Func. Count: 105, Neg. LLF: 160.17167873809763
Optimization terminated successfully (Exit mode 0)
Current function value: 160.17167873809763
Iterations: 19
Function evaluations: 105
Gradient evaluations: 19
Iteration: 1, Func. Count: 7, Neg. LLF: 183.32002000836724
Iteration: 2, Func. Count: 15, Neg. LLF: 160.3762083795221
Iteration: 3, Func. Count: 22, Neg. LLF: 160.66951605047532
Iteration: 4, Func. Count: 29, Neg. LLF: 160.35003895001364
Iteration: 5, Func. Count: 36, Neg. LLF: 160.3448836258736
Iteration: 6, Func. Count: 43, Neg. LLF: 160.31652998673954
Iteration: 7, Func. Count: 49, Neg. LLF: 160.31340108984037
Iteration: 8, Func. Count: 55, Neg. LLF: 160.3128555130831
Iteration: 9, Func. Count: 61, Neg. LLF: 160.31177021016825
Iteration: 10, Func. Count: 67, Neg. LLF: 160.309272735319
Iteration: 11, Func. Count: 73, Neg. LLF: 160.30547274379305
Iteration: 12, Func. Count: 79, Neg. LLF: 160.29966380022825
Iteration: 13, Func. Count: 85, Neg. LLF: 160.28381827163153
Iteration: 14, Func. Count: 91, Neg. LLF: 160.28262759658082
Iteration: 15, Func. Count: 97, Neg. LLF: 160.28119049405373
Iteration: 16, Func. Count: 103, Neg. LLF: 160.27686630832625
Iteration: 17, Func. Count: 109, Neg. LLF: 160.21502325860627
Iteration: 18, Func. Count: 115, Neg. LLF: 160.1774857066395
Iteration: 19, Func. Count: 121, Neg. LLF: 160.18397452953087
Iteration: 20, Func. Count: 128, Neg. LLF: 160.17645041687337
Iteration: 21, Func. Count: 135, Neg. LLF: 160.17169217752584
Iteration: 22, Func. Count: 141, Neg. LLF: 160.17168206120786
Iteration: 23, Func. Count: 147, Neg. LLF: 160.17167850964333
Iteration: 24, Func. Count: 152, Neg. LLF: 160.1716785105437
Optimization terminated successfully (Exit mode 0)
Current function value: 160.17167850964333
Iterations: 24
Function evaluations: 152
Gradient evaluations: 24
Iteration: 1, Func. Count: 8, Neg. LLF: 167.11995374026745
Iteration: 2, Func. Count: 18, Neg. LLF: 163.48834050828486
Iteration: 3, Func. Count: 26, Neg. LLF: 160.1216109620009
Iteration: 4, Func. Count: 33, Neg. LLF: 160.01125059503914
Iteration: 5, Func. Count: 40, Neg. LLF: 159.99017363098656
Iteration: 6, Func. Count: 47, Neg. LLF: 159.96811781282923
Iteration: 7, Func. Count: 54, Neg. LLF: 159.96194558800607
Iteration: 8, Func. Count: 61, Neg. LLF: 159.9516754918665
Iteration: 9, Func. Count: 68, Neg. LLF: 159.9099683213987
Iteration: 10, Func. Count: 75, Neg. LLF: 159.764000879403
Iteration: 11, Func. Count: 82, Neg. LLF: 159.72679519725844
Iteration: 12, Func. Count: 89, Neg. LLF: 159.7190923262645
Iteration: 13, Func. Count: 96, Neg. LLF: 159.717669234892
Iteration: 14, Func. Count: 103, Neg. LLF: 159.7164361161558
Iteration: 15, Func. Count: 110, Neg. LLF: 159.71615184008763
Iteration: 16, Func. Count: 117, Neg. LLF: 159.71598526820412
Iteration: 17, Func. Count: 124, Neg. LLF: 159.7158605683301
Iteration: 18, Func. Count: 131, Neg. LLF: 159.71580238580964
Iteration: 19, Func. Count: 138, Neg. LLF: 159.71579394440917
Iteration: 20, Func. Count: 144, Neg. LLF: 159.7157939443115
Optimization terminated successfully (Exit mode 0)
Current function value: 159.71579394440917
Iterations: 20
Function evaluations: 144
Gradient evaluations: 20
Iteration: 1, Func. Count: 9, Neg. LLF: 175.29208779157054
Iteration: 2, Func. Count: 18, Neg. LLF: 160.28777916349384
Iteration: 3, Func. Count: 27, Neg. LLF: 160.01390627378896
Iteration: 4, Func. Count: 35, Neg. LLF: 160.62419128168463
Iteration: 5, Func. Count: 44, Neg. LLF: 159.99178718505922
Iteration: 6, Func. Count: 52, Neg. LLF: 159.9670236616214
Iteration: 7, Func. Count: 60, Neg. LLF: 159.9623182495402
Iteration: 8, Func. Count: 68, Neg. LLF: 159.92773544895977
Iteration: 9, Func. Count: 76, Neg. LLF: 159.80054054660155
Iteration: 10, Func. Count: 84, Neg. LLF: 159.75225661602434
Iteration: 11, Func. Count: 92, Neg. LLF: 159.72194642200853
Iteration: 12, Func. Count: 100, Neg. LLF: 159.71993558909307
Iteration: 13, Func. Count: 108, Neg. LLF: 159.71709348242402
Iteration: 14, Func. Count: 116, Neg. LLF: 159.71535411597415
Iteration: 15, Func. Count: 124, Neg. LLF: 159.6888335808989
Iteration: 16, Func. Count: 132, Neg. LLF: 159.60611429565623
Iteration: 17, Func. Count: 140, Neg. LLF: 159.5168008543545
Iteration: 18, Func. Count: 148, Neg. LLF: 158.67390043634055
Iteration: 19, Func. Count: 156, Neg. LLF: 158.4109238696985
Iteration: 20, Func. Count: 165, Neg. LLF: 157.2368584216623
Iteration: 21, Func. Count: 173, Neg. LLF: 157.03768887340937
Iteration: 22, Func. Count: 181, Neg. LLF: 156.99661808608616
Iteration: 23, Func. Count: 189, Neg. LLF: 156.98598046187496
Iteration: 24, Func. Count: 197, Neg. LLF: 156.9851258113912
Iteration: 25, Func. Count: 205, Neg. LLF: 156.98510032203436
Iteration: 26, Func. Count: 213, Neg. LLF: 156.9850830563701
Iteration: 27, Func. Count: 221, Neg. LLF: 156.98535350733871
Optimization terminated successfully (Exit mode 0)
Current function value: 156.9850830151092
Iterations: 28
Function evaluations: 223
Gradient evaluations: 27
Iteration: 1, Func. Count: 6, Neg. LLF: 161.55961177326523
Iteration: 2, Func. Count: 11, Neg. LLF: 161.45626720107364
Iteration: 3, Func. Count: 19, Neg. LLF: 174.25433425549315
Iteration: 4, Func. Count: 25, Neg. LLF: 160.56482573175327
Iteration: 5, Func. Count: 30, Neg. LLF: 160.45402337246526
Iteration: 6, Func. Count: 35, Neg. LLF: 160.3301464438228
Iteration: 7, Func. Count: 40, Neg. LLF: 160.25882123653528
Iteration: 8, Func. Count: 45, Neg. LLF: 160.17893877525717
Iteration: 9, Func. Count: 50, Neg. LLF: 160.1626729939988
Iteration: 10, Func. Count: 55, Neg. LLF: 160.1573204288779
Iteration: 11, Func. Count: 60, Neg. LLF: 160.15704952798094
Iteration: 12, Func. Count: 65, Neg. LLF: 160.15703699170024
Iteration: 13, Func. Count: 70, Neg. LLF: 160.1570363101733
Optimization terminated successfully (Exit mode 0)
Current function value: 160.1570363101733
Iterations: 13
Function evaluations: 70
Gradient evaluations: 13
Iteration: 1, Func. Count: 7, Neg. LLF: 161.5556736552812
Iteration: 2, Func. Count: 14, Neg. LLF: 161.06531806156687
Iteration: 3, Func. Count: 21, Neg. LLF: 160.8030720681976
Iteration: 4, Func. Count: 29, Neg. LLF: 163.43399986133622
Iteration: 5, Func. Count: 36, Neg. LLF: 158.92375758808723
Iteration: 6, Func. Count: 42, Neg. LLF: 158.7178459589599
Iteration: 7, Func. Count: 48, Neg. LLF: 158.6975143678636
Iteration: 8, Func. Count: 54, Neg. LLF: 158.6519945375411
Iteration: 9, Func. Count: 60, Neg. LLF: 158.5305537946224
Iteration: 10, Func. Count: 66, Neg. LLF: 158.34312454520324
Iteration: 11, Func. Count: 72, Neg. LLF: 158.2808519461044
Iteration: 12, Func. Count: 78, Neg. LLF: 158.23430071727057
Iteration: 13, Func. Count: 84, Neg. LLF: 158.21708028190855
Iteration: 14, Func. Count: 90, Neg. LLF: 158.21488904003849
Iteration: 15, Func. Count: 96, Neg. LLF: 158.21485178181902
Iteration: 16, Func. Count: 102, Neg. LLF: 158.21485125344176
Optimization terminated successfully (Exit mode 0)
Current function value: 158.21485125344176
Iterations: 16
Function evaluations: 102
Gradient evaluations: 16
Iteration: 1, Func. Count: 8, Neg. LLF: 173.47681251351946
Iteration: 2, Func. Count: 16, Neg. LLF: 158.96136495149892
Iteration: 3, Func. Count: 23, Neg. LLF: 166.3426308338677
Iteration: 4, Func. Count: 32, Neg. LLF: 159.07574390398023
Iteration: 5, Func. Count: 40, Neg. LLF: 158.25223684392978
Iteration: 6, Func. Count: 47, Neg. LLF: 158.2332929786757
Iteration: 7, Func. Count: 54, Neg. LLF: 158.22947384036115
Iteration: 8, Func. Count: 61, Neg. LLF: 158.22745640434053
Iteration: 9, Func. Count: 68, Neg. LLF: 158.22581600779355
Iteration: 10, Func. Count: 75, Neg. LLF: 158.22042185350278
Iteration: 11, Func. Count: 82, Neg. LLF: 158.21670287954328
Iteration: 12, Func. Count: 89, Neg. LLF: 158.21510694972784
Iteration: 13, Func. Count: 96, Neg. LLF: 158.21485957855955
Iteration: 14, Func. Count: 103, Neg. LLF: 158.21485119570258
Iteration: 15, Func. Count: 109, Neg. LLF: 158.214851270291
Optimization terminated successfully (Exit mode 0)
Current function value: 158.21485119570258
Iterations: 15
Function evaluations: 109
Gradient evaluations: 15
Iteration: 1, Func. Count: 9, Neg. LLF: 163.0277586536911
Iteration: 2, Func. Count: 21, Neg. LLF: 161.41244251082782
Iteration: 3, Func. Count: 30, Neg. LLF: 161.13587301083655
Iteration: 4, Func. Count: 39, Neg. LLF: 159.42980956711983
Iteration: 5, Func. Count: 47, Neg. LLF: 158.92959011215473
Iteration: 6, Func. Count: 55, Neg. LLF: 160.70619712616588
Iteration: 7, Func. Count: 64, Neg. LLF: 158.7004980256125
Iteration: 8, Func. Count: 72, Neg. LLF: 158.4139089592131
Iteration: 9, Func. Count: 80, Neg. LLF: 158.34593126948687
Iteration: 10, Func. Count: 88, Neg. LLF: 158.29562366863385
Iteration: 11, Func. Count: 97, Neg. LLF: 158.2187351715431
Iteration: 12, Func. Count: 105, Neg. LLF: 158.21684722509687
Iteration: 13, Func. Count: 113, Neg. LLF: 158.21647051456398
Iteration: 14, Func. Count: 121, Neg. LLF: 158.21630570752572
Iteration: 15, Func. Count: 129, Neg. LLF: 158.21596571733394
Iteration: 16, Func. Count: 137, Neg. LLF: 158.21547914613882
Iteration: 17, Func. Count: 145, Neg. LLF: 158.21503443881244
Iteration: 18, Func. Count: 153, Neg. LLF: 158.2148728530998
Iteration: 19, Func. Count: 161, Neg. LLF: 158.21485179714338
Iteration: 20, Func. Count: 169, Neg. LLF: 158.21485124589145
Optimization terminated successfully (Exit mode 0)
Current function value: 158.21485124589145
Iterations: 20
Function evaluations: 169
Gradient evaluations: 20
Iteration: 1, Func. Count: 10, Neg. LLF: 175.22744718855165
Iteration: 2, Func. Count: 20, Neg. LLF: 161.82472554381945
Iteration: 3, Func. Count: 30, Neg. LLF: 159.3924925006123
Iteration: 4, Func. Count: 39, Neg. LLF: 159.57581371069764
Iteration: 5, Func. Count: 49, Neg. LLF: 158.7379976207341
Iteration: 6, Func. Count: 58, Neg. LLF: 158.51803579331494
Iteration: 7, Func. Count: 67, Neg. LLF: 158.37780105910844
Iteration: 8, Func. Count: 76, Neg. LLF: 158.26551336589955
Iteration: 9, Func. Count: 85, Neg. LLF: 178.27494202735377
Iteration: 10, Func. Count: 96, Neg. LLF: 158.0753517732677
Iteration: 11, Func. Count: 105, Neg. LLF: 157.82934800378885
Iteration: 12, Func. Count: 114, Neg. LLF: 172.05844743453736
Iteration: 13, Func. Count: 124, Neg. LLF: 157.71979390791708
Iteration: 14, Func. Count: 134, Neg. LLF: 157.41264763141334
Iteration: 15, Func. Count: 143, Neg. LLF: 157.1910034812159
Iteration: 16, Func. Count: 152, Neg. LLF: 156.91797593152376
Iteration: 17, Func. Count: 161, Neg. LLF: 156.7295908042836
Iteration: 18, Func. Count: 170, Neg. LLF: 156.66767501571806
Iteration: 19, Func. Count: 179, Neg. LLF: 156.66635327247502
Iteration: 20, Func. Count: 188, Neg. LLF: 156.666110792594
Iteration: 21, Func. Count: 197, Neg. LLF: 156.66594324311706
Iteration: 22, Func. Count: 206, Neg. LLF: 156.66594211067624
Iteration: 23, Func. Count: 214, Neg. LLF: 156.66594190110484
Optimization terminated successfully (Exit mode 0)
Current function value: 156.66594211067624
Iterations: 23
Function evaluations: 214
Gradient evaluations: 23
Iteration: 1, Func. Count: 7, Neg. LLF: 156.71420446754254
Iteration: 2, Func. Count: 13, Neg. LLF: 161.4081030481202
Iteration: 3, Func. Count: 20, Neg. LLF: 153.2341172315612
Iteration: 4, Func. Count: 26, Neg. LLF: 153.1608296947323
Iteration: 5, Func. Count: 32, Neg. LLF: 152.79163634734206
Iteration: 6, Func. Count: 38, Neg. LLF: 3432166.722361922
Iteration: 7, Func. Count: 46, Neg. LLF: 173.18623138177614
Iteration: 8, Func. Count: 53, Neg. LLF: 152.66646339310827
Iteration: 9, Func. Count: 60, Neg. LLF: 152.49952552608462
Iteration: 10, Func. Count: 67, Neg. LLF: 152.47474064116793
Iteration: 11, Func. Count: 73, Neg. LLF: 152.47468832862535
Iteration: 12, Func. Count: 79, Neg. LLF: 152.47468792744382
Optimization terminated successfully (Exit mode 0)
Current function value: 152.47468792744382
Iterations: 12
Function evaluations: 79
Gradient evaluations: 12
Iteration: 1, Func. Count: 8, Neg. LLF: 154.0397083795297
Iteration: 2, Func. Count: 15, Neg. LLF: 153.23555179086037
Iteration: 3, Func. Count: 22, Neg. LLF: 153.12066517017107
Iteration: 4, Func. Count: 29, Neg. LLF: 153.06092318515928
Iteration: 5, Func. Count: 36, Neg. LLF: 152.7889699156581
Iteration: 6, Func. Count: 43, Neg. LLF: 494.8157879760228
Iteration: 7, Func. Count: 52, Neg. LLF: 540.7206021359897
Iteration: 8, Func. Count: 60, Neg. LLF: 153.2594276565765
Iteration: 9, Func. Count: 68, Neg. LLF: 152.48804234446462
Iteration: 10, Func. Count: 75, Neg. LLF: 152.47588722942453
Iteration: 11, Func. Count: 82, Neg. LLF: 152.47476372730273
Iteration: 12, Func. Count: 89, Neg. LLF: 152.47469465623436
Iteration: 13, Func. Count: 96, Neg. LLF: 152.47468792195355
Iteration: 14, Func. Count: 102, Neg. LLF: 152.47468794160784
Optimization terminated successfully (Exit mode 0)
Current function value: 152.47468792195355
Iterations: 14
Function evaluations: 102
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 153.37248223535153
Iteration: 2, Func. Count: 17, Neg. LLF: 154.3130020601319
Iteration: 3, Func. Count: 26, Neg. LLF: 153.10640613787012
Iteration: 4, Func. Count: 34, Neg. LLF: 152.8284325291333
Iteration: 5, Func. Count: 42, Neg. LLF: 277.906286198642
Iteration: 6, Func. Count: 52, Neg. LLF: 184.84069698515793
Iteration: 7, Func. Count: 61, Neg. LLF: 175.47032965524565
Iteration: 8, Func. Count: 70, Neg. LLF: 152.52309700666896
Iteration: 9, Func. Count: 79, Neg. LLF: 152.4549017260152
Iteration: 10, Func. Count: 88, Neg. LLF: 152.4435481766778
Iteration: 11, Func. Count: 96, Neg. LLF: 152.44350526397253
Iteration: 12, Func. Count: 103, Neg. LLF: 152.44350518334807
Optimization terminated successfully (Exit mode 0)
Current function value: 152.44350526397253
Iterations: 12
Function evaluations: 103
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 153.19960196681362
Iteration: 2, Func. Count: 19, Neg. LLF: 153.7654876526979
Iteration: 3, Func. Count: 29, Neg. LLF: 153.09826498616965
Iteration: 4, Func. Count: 38, Neg. LLF: 152.84641500390282
Iteration: 5, Func. Count: 47, Neg. LLF: 428.43110564092984
Iteration: 6, Func. Count: 59, Neg. LLF: 181.0577798814745
Iteration: 7, Func. Count: 69, Neg. LLF: 188.1658109193463
Iteration: 8, Func. Count: 79, Neg. LLF: 152.58466672329567
Iteration: 9, Func. Count: 89, Neg. LLF: 152.44551426764502
Iteration: 10, Func. Count: 98, Neg. LLF: 152.44353817096098
Iteration: 11, Func. Count: 107, Neg. LLF: 152.44350664525624
Iteration: 12, Func. Count: 116, Neg. LLF: 152.443505238194
Iteration: 13, Func. Count: 124, Neg. LLF: 152.44350523522255
Optimization terminated successfully (Exit mode 0)
Current function value: 152.443505238194
Iterations: 13
Function evaluations: 124
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 153.3514402892678
Iteration: 2, Func. Count: 21, Neg. LLF: 155.7038810159382
Iteration: 3, Func. Count: 32, Neg. LLF: 157.2255327790716
Iteration: 4, Func. Count: 46, Neg. LLF: 152.1595444127319
Iteration: 5, Func. Count: 56, Neg. LLF: 152.03433841884274
Iteration: 6, Func. Count: 66, Neg. LLF: 151.99169780771703
Iteration: 7, Func. Count: 76, Neg. LLF: 151.83919895486443
Iteration: 8, Func. Count: 86, Neg. LLF: 151.67563964989634
Iteration: 9, Func. Count: 96, Neg. LLF: 152.60198814999615
Iteration: 10, Func. Count: 107, Neg. LLF: 151.36709903322446
Iteration: 11, Func. Count: 117, Neg. LLF: 151.90365088673948
Iteration: 12, Func. Count: 128, Neg. LLF: 151.32912830975454
Iteration: 13, Func. Count: 139, Neg. LLF: 150.97460349506665
Iteration: 14, Func. Count: 149, Neg. LLF: 150.93779262309283
Iteration: 15, Func. Count: 159, Neg. LLF: 150.93504619884078
Iteration: 16, Func. Count: 169, Neg. LLF: 150.9348276391289
Iteration: 17, Func. Count: 179, Neg. LLF: 150.93481433777694
Iteration: 18, Func. Count: 188, Neg. LLF: 150.93481407777756
Optimization terminated successfully (Exit mode 0)
Current function value: 150.93481433777694
Iterations: 18
Function evaluations: 188
Gradient evaluations: 18
Iteration: 1, Func. Count: 8, Neg. LLF: 155.66737069787294
Iteration: 2, Func. Count: 15, Neg. LLF: 163.35550937253333
Iteration: 3, Func. Count: 23, Neg. LLF: 153.24845301510638
Iteration: 4, Func. Count: 30, Neg. LLF: 153.16965291072768
Iteration: 5, Func. Count: 37, Neg. LLF: 152.83210190258066
Iteration: 6, Func. Count: 44, Neg. LLF: 3387712.680820043
Iteration: 7, Func. Count: 53, Neg. LLF: 1362.089803313873
Iteration: 8, Func. Count: 61, Neg. LLF: 152.6547064403801
Iteration: 9, Func. Count: 69, Neg. LLF: 152.49326440797023
Iteration: 10, Func. Count: 77, Neg. LLF: 152.47473371966709
Iteration: 11, Func. Count: 84, Neg. LLF: 152.4746890025821
Iteration: 12, Func. Count: 91, Neg. LLF: 152.47468809756643
Optimization terminated successfully (Exit mode 0)
Current function value: 152.47468809756643
Iterations: 12
Function evaluations: 91
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 167.0743844785829
Iteration: 2, Func. Count: 20, Neg. LLF: 156.49307204109772
Iteration: 3, Func. Count: 28, Neg. LLF: 155.62219882000664
Iteration: 4, Func. Count: 36, Neg. LLF: 153.2785375020296
Iteration: 5, Func. Count: 44, Neg. LLF: 153.61797622915182
Iteration: 6, Func. Count: 53, Neg. LLF: 152.8925519023518
Iteration: 7, Func. Count: 62, Neg. LLF: 152.51419711051807
Iteration: 8, Func. Count: 70, Neg. LLF: 152.5379073092829
Iteration: 9, Func. Count: 79, Neg. LLF: 152.48136680468193
Iteration: 10, Func. Count: 87, Neg. LLF: 152.4789224778166
Iteration: 11, Func. Count: 95, Neg. LLF: 152.47799302912625
Iteration: 12, Func. Count: 103, Neg. LLF: 152.47718481647868
Iteration: 13, Func. Count: 111, Neg. LLF: 152.47484646728816
Iteration: 14, Func. Count: 119, Neg. LLF: 152.47468879012854
Iteration: 15, Func. Count: 127, Neg. LLF: 152.47468790872233
Optimization terminated successfully (Exit mode 0)
Current function value: 152.47468790872233
Iterations: 15
Function evaluations: 127
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 152.72299739928425
Iteration: 2, Func. Count: 19, Neg. LLF: 154.6616231027634
Iteration: 3, Func. Count: 30, Neg. LLF: 152.77830520385456
Iteration: 4, Func. Count: 40, Neg. LLF: 152.95846935240462
Iteration: 5, Func. Count: 52, Neg. LLF: 152.4447872603437
Iteration: 6, Func. Count: 61, Neg. LLF: 152.44455227436077
Iteration: 7, Func. Count: 70, Neg. LLF: 152.44438734470833
Iteration: 8, Func. Count: 79, Neg. LLF: 152.4438563809744
Iteration: 9, Func. Count: 88, Neg. LLF: 152.44359075527345
Iteration: 10, Func. Count: 97, Neg. LLF: 152.44350950549486
Iteration: 11, Func. Count: 106, Neg. LLF: 152.44350529919348
Iteration: 12, Func. Count: 114, Neg. LLF: 152.4435052185625
Optimization terminated successfully (Exit mode 0)
Current function value: 152.44350529919348
Iterations: 12
Function evaluations: 114
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 158.70144741530194
Iteration: 2, Func. Count: 21, Neg. LLF: 157.44877526867137
Iteration: 3, Func. Count: 32, Neg. LLF: 156.7638262699984
Iteration: 4, Func. Count: 42, Neg. LLF: 153.03634510157963
Iteration: 5, Func. Count: 52, Neg. LLF: 178.25093366499857
Iteration: 6, Func. Count: 64, Neg. LLF: 156.24424209734354
Iteration: 7, Func. Count: 75, Neg. LLF: 152.59594471062627
Iteration: 8, Func. Count: 85, Neg. LLF: 152.51044536791412
Iteration: 9, Func. Count: 95, Neg. LLF: 152.45593754203304
Iteration: 10, Func. Count: 105, Neg. LLF: 152.44776046737414
Iteration: 11, Func. Count: 115, Neg. LLF: 152.44707443086588
Iteration: 12, Func. Count: 125, Neg. LLF: 152.44649388970143
Iteration: 13, Func. Count: 135, Neg. LLF: 152.44449061833427
Iteration: 14, Func. Count: 145, Neg. LLF: 152.44371126710064
Iteration: 15, Func. Count: 155, Neg. LLF: 152.4435127699081
Iteration: 16, Func. Count: 165, Neg. LLF: 152.44350536120666
Iteration: 17, Func. Count: 174, Neg. LLF: 152.44350535831782
Optimization terminated successfully (Exit mode 0)
Current function value: 152.44350536120666
Iterations: 17
Function evaluations: 174
Gradient evaluations: 17
Iteration: 1, Func. Count: 12, Neg. LLF: 152.73771181077637
Iteration: 2, Func. Count: 23, Neg. LLF: 155.14097471198875
Iteration: 3, Func. Count: 36, Neg. LLF: 157.39995443429513
Iteration: 4, Func. Count: 51, Neg. LLF: 152.28986432457913
Iteration: 5, Func. Count: 62, Neg. LLF: 152.21473738638264
Iteration: 6, Func. Count: 73, Neg. LLF: 152.01195061690294
Iteration: 7, Func. Count: 84, Neg. LLF: 151.98021287119042
Iteration: 8, Func. Count: 95, Neg. LLF: 151.81071546254273
Iteration: 9, Func. Count: 106, Neg. LLF: 152.3159925385528
Iteration: 10, Func. Count: 118, Neg. LLF: 152.03042009667436
Iteration: 11, Func. Count: 130, Neg. LLF: 153.23173496965586
Iteration: 12, Func. Count: 142, Neg. LLF: 151.48662143076973
Iteration: 13, Func. Count: 154, Neg. LLF: 150.987262054521
Iteration: 14, Func. Count: 165, Neg. LLF: 150.9459868552465
Iteration: 15, Func. Count: 176, Neg. LLF: 150.94518879871157
Iteration: 16, Func. Count: 188, Neg. LLF: 150.93547536701217
Iteration: 17, Func. Count: 199, Neg. LLF: 150.93481572034372
Iteration: 18, Func. Count: 210, Neg. LLF: 150.93481437194797
Iteration: 19, Func. Count: 220, Neg. LLF: 150.93481411199582
Optimization terminated successfully (Exit mode 0)
Current function value: 150.93481437194797
Iterations: 19
Function evaluations: 220
Gradient evaluations: 19
Iteration: 1, Func. Count: 9, Neg. LLF: 154.94884867226907
Iteration: 2, Func. Count: 17, Neg. LLF: 163.86027220443233
Iteration: 3, Func. Count: 26, Neg. LLF: 153.2560200747933
Iteration: 4, Func. Count: 34, Neg. LLF: 153.1631465644249
Iteration: 5, Func. Count: 42, Neg. LLF: 152.72256499138652
Iteration: 6, Func. Count: 50, Neg. LLF: 155.71620350880485
Iteration: 7, Func. Count: 59, Neg. LLF: 152.5394192905227
Iteration: 8, Func. Count: 68, Neg. LLF: 175.52912010593218
Iteration: 9, Func. Count: 78, Neg. LLF: 152.48120875776075
Iteration: 10, Func. Count: 87, Neg. LLF: 152.46034120780484
Iteration: 11, Func. Count: 96, Neg. LLF: 152.45922824793718
Iteration: 12, Func. Count: 105, Neg. LLF: 152.4590125325089
Optimization terminated successfully (Exit mode 0)
Current function value: 152.4590125325089
Iterations: 12
Function evaluations: 105
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 167.08044962623518
Iteration: 2, Func. Count: 22, Neg. LLF: 156.52530651487947
Iteration: 3, Func. Count: 31, Neg. LLF: 155.4800541230614
Iteration: 4, Func. Count: 40, Neg. LLF: 153.02694922091842
Iteration: 5, Func. Count: 49, Neg. LLF: 153.54338857961474
Iteration: 6, Func. Count: 59, Neg. LLF: 152.7821501689513
Iteration: 7, Func. Count: 68, Neg. LLF: 152.54466196350387
Iteration: 8, Func. Count: 77, Neg. LLF: 152.9684748853247
Iteration: 9, Func. Count: 88, Neg. LLF: 152.4637564144074
Iteration: 10, Func. Count: 97, Neg. LLF: 152.48842380588195
Iteration: 11, Func. Count: 107, Neg. LLF: 152.4614013104292
Iteration: 12, Func. Count: 116, Neg. LLF: 152.46095756315682
Iteration: 13, Func. Count: 125, Neg. LLF: 152.4599915642408
Iteration: 14, Func. Count: 134, Neg. LLF: 152.45929345391716
Iteration: 15, Func. Count: 143, Neg. LLF: 152.4590402677082
Iteration: 16, Func. Count: 152, Neg. LLF: 152.4590134775756
Iteration: 17, Func. Count: 161, Neg. LLF: 152.45901251627555
Optimization terminated successfully (Exit mode 0)
Current function value: 152.45901251627555
Iterations: 17
Function evaluations: 161
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 152.7231636416494
Iteration: 2, Func. Count: 21, Neg. LLF: 154.68327213914526
Iteration: 3, Func. Count: 33, Neg. LLF: 152.77611333512553
Iteration: 4, Func. Count: 44, Neg. LLF: 152.469939370663
Iteration: 5, Func. Count: 55, Neg. LLF: 152.67622434368263
Iteration: 6, Func. Count: 66, Neg. LLF: 152.44455811553811
Iteration: 7, Func. Count: 76, Neg. LLF: 152.4443400232764
Iteration: 8, Func. Count: 86, Neg. LLF: 152.44389426469112
Iteration: 9, Func. Count: 96, Neg. LLF: 152.44360420151162
Iteration: 10, Func. Count: 106, Neg. LLF: 152.44351213352232
Iteration: 11, Func. Count: 116, Neg. LLF: 152.44350539217274
Iteration: 12, Func. Count: 125, Neg. LLF: 152.4435053115409
Optimization terminated successfully (Exit mode 0)
Current function value: 152.44350539217274
Iterations: 12
Function evaluations: 125
Gradient evaluations: 12
Iteration: 1, Func. Count: 12, Neg. LLF: 152.7198339078074
Iteration: 2, Func. Count: 23, Neg. LLF: 156.71796959648006
Iteration: 3, Func. Count: 38, Neg. LLF: 178.184538869658
Iteration: 4, Func. Count: 51, Neg. LLF: 152.7242123997646
Iteration: 5, Func. Count: 63, Neg. LLF: 152.44622740314688
Iteration: 6, Func. Count: 74, Neg. LLF: 152.4445096465837
Iteration: 7, Func. Count: 85, Neg. LLF: 152.44436395488478
Iteration: 8, Func. Count: 96, Neg. LLF: 152.44417089024003
Iteration: 9, Func. Count: 107, Neg. LLF: 152.44385857074684
Iteration: 10, Func. Count: 118, Neg. LLF: 152.44361369969937
Iteration: 11, Func. Count: 129, Neg. LLF: 152.44351760847357
Iteration: 12, Func. Count: 140, Neg. LLF: 152.44350577545433
Iteration: 13, Func. Count: 151, Neg. LLF: 152.44350520541707
Optimization terminated successfully (Exit mode 0)
Current function value: 152.44350520541707
Iterations: 13
Function evaluations: 151
Gradient evaluations: 13
Iteration: 1, Func. Count: 13, Neg. LLF: 152.6987153026515
Iteration: 2, Func. Count: 25, Neg. LLF: 154.7760162479456
Iteration: 3, Func. Count: 39, Neg. LLF: 157.73776125213925
Iteration: 4, Func. Count: 55, Neg. LLF: 152.45204776841334
Iteration: 5, Func. Count: 68, Neg. LLF: 152.24389393344214
Iteration: 6, Func. Count: 81, Neg. LLF: 152.01970398004477
Iteration: 7, Func. Count: 93, Neg. LLF: 151.9700884774138
Iteration: 8, Func. Count: 105, Neg. LLF: 151.68516711291952
Iteration: 9, Func. Count: 117, Neg. LLF: 152.65163508392675
Iteration: 10, Func. Count: 130, Neg. LLF: 151.68940416385425
Iteration: 11, Func. Count: 143, Neg. LLF: 151.5326237510139
Iteration: 12, Func. Count: 156, Neg. LLF: 150.99417184305725
Iteration: 13, Func. Count: 168, Neg. LLF: 150.99120954799253
Iteration: 14, Func. Count: 180, Neg. LLF: 150.9708942337556
Iteration: 15, Func. Count: 192, Neg. LLF: 150.9383045196969
Iteration: 16, Func. Count: 204, Neg. LLF: 150.93527626665653
Iteration: 17, Func. Count: 216, Neg. LLF: 150.93494459335088
Iteration: 18, Func. Count: 228, Neg. LLF: 150.93484748654453
Iteration: 19, Func. Count: 240, Neg. LLF: 150.93481591998318
Iteration: 20, Func. Count: 252, Neg. LLF: 150.93481437236812
Iteration: 21, Func. Count: 263, Neg. LLF: 150.93481411232958
Optimization terminated successfully (Exit mode 0)
Current function value: 150.93481437236812
Iterations: 21
Function evaluations: 263
Gradient evaluations: 21
Iteration: 1, Func. Count: 6, Neg. LLF: 160.02192048655863
Iteration: 2, Func. Count: 11, Neg. LLF: 162.0326558632538
Iteration: 3, Func. Count: 17, Neg. LLF: 159.31061627808782
Iteration: 4, Func. Count: 22, Neg. LLF: 159.2862447260217
Iteration: 5, Func. Count: 27, Neg. LLF: 159.19934809726678
Iteration: 6, Func. Count: 32, Neg. LLF: 159.14827234628484
Iteration: 7, Func. Count: 37, Neg. LLF: 162.46376499958205
Iteration: 8, Func. Count: 45, Neg. LLF: 159.13639027303776
Iteration: 9, Func. Count: 50, Neg. LLF: 159.13055117489773
Iteration: 10, Func. Count: 55, Neg. LLF: 159.13053149962664
Iteration: 11, Func. Count: 59, Neg. LLF: 159.13053145476113
Optimization terminated successfully (Exit mode 0)
Current function value: 159.13053149962664
Iterations: 11
Function evaluations: 59
Gradient evaluations: 11
Iteration: 1, Func. Count: 7, Neg. LLF: 174.05196948735696
Iteration: 2, Func. Count: 15, Neg. LLF: 160.81808018521704
Iteration: 3, Func. Count: 22, Neg. LLF: 229.01786761431313
Iteration: 4, Func. Count: 30, Neg. LLF: 160.2054938082074
Iteration: 5, Func. Count: 36, Neg. LLF: 160.21269523881554
Iteration: 6, Func. Count: 43, Neg. LLF: 160.20540650720008
Iteration: 7, Func. Count: 50, Neg. LLF: 160.19686124827012
Iteration: 8, Func. Count: 56, Neg. LLF: 160.19640806004404
Iteration: 9, Func. Count: 62, Neg. LLF: 160.19567217181233
Iteration: 10, Func. Count: 68, Neg. LLF: 160.1942867238496
Iteration: 11, Func. Count: 74, Neg. LLF: 160.1933873565794
Iteration: 12, Func. Count: 80, Neg. LLF: 160.1931435550006
Iteration: 13, Func. Count: 86, Neg. LLF: 160.19310702032263
Iteration: 14, Func. Count: 91, Neg. LLF: 160.19310702031757
Optimization terminated successfully (Exit mode 0)
Current function value: 160.19310702032263
Iterations: 14
Function evaluations: 91
Gradient evaluations: 14
Iteration: 1, Func. Count: 8, Neg. LLF: 161.19095330692502
Iteration: 2, Func. Count: 19, Neg. LLF: 172.76765770538816
Iteration: 3, Func. Count: 28, Neg. LLF: 160.08843937698293
Iteration: 4, Func. Count: 35, Neg. LLF: 159.99059414125855
Iteration: 5, Func. Count: 42, Neg. LLF: 159.96431067891334
Iteration: 6, Func. Count: 49, Neg. LLF: 159.83641771281958
Iteration: 7, Func. Count: 56, Neg. LLF: 162.41827236565013
Iteration: 8, Func. Count: 64, Neg. LLF: 161.39217500934356
Iteration: 9, Func. Count: 72, Neg. LLF: 159.23131998801816
Iteration: 10, Func. Count: 79, Neg. LLF: 159.06723172888852
Iteration: 11, Func. Count: 86, Neg. LLF: 158.6668558264153
Iteration: 12, Func. Count: 93, Neg. LLF: 158.41503185294283
Iteration: 13, Func. Count: 100, Neg. LLF: 158.5429124928402
Iteration: 14, Func. Count: 108, Neg. LLF: 158.2951572177443
Iteration: 15, Func. Count: 115, Neg. LLF: 158.28348777495623
Iteration: 16, Func. Count: 122, Neg. LLF: 158.28097688513412
Iteration: 17, Func. Count: 129, Neg. LLF: 158.27946917710003
Iteration: 18, Func. Count: 136, Neg. LLF: 158.2766026992463
Iteration: 19, Func. Count: 143, Neg. LLF: 158.2717419722128
Iteration: 20, Func. Count: 150, Neg. LLF: 158.26878123188249
Iteration: 21, Func. Count: 157, Neg. LLF: 158.26808717032583
Iteration: 22, Func. Count: 164, Neg. LLF: 158.26798453678666
Iteration: 23, Func. Count: 171, Neg. LLF: 158.26798595837667
Optimization terminated successfully (Exit mode 0)
Current function value: 158.26798453678666
Iterations: 23
Function evaluations: 181
Gradient evaluations: 23
Iteration: 1, Func. Count: 9, Neg. LLF: 166.9225073820366
Iteration: 2, Func. Count: 20, Neg. LLF: 164.47541483814612
Iteration: 3, Func. Count: 29, Neg. LLF: 160.1397208111668
Iteration: 4, Func. Count: 37, Neg. LLF: 160.0189668039621
Iteration: 5, Func. Count: 45, Neg. LLF: 159.98756925489198
Iteration: 6, Func. Count: 53, Neg. LLF: 159.96724107242713
Iteration: 7, Func. Count: 61, Neg. LLF: 159.9583905588185
Iteration: 8, Func. Count: 69, Neg. LLF: 159.9489838549199
Iteration: 9, Func. Count: 77, Neg. LLF: 159.93119046020533
Iteration: 10, Func. Count: 85, Neg. LLF: 159.83787218710503
Iteration: 11, Func. Count: 93, Neg. LLF: 162.00898373200306
Iteration: 12, Func. Count: 102, Neg. LLF: 159.76987727758416
Iteration: 13, Func. Count: 110, Neg. LLF: 159.72081755835723
Iteration: 14, Func. Count: 118, Neg. LLF: 159.7170370754283
Iteration: 15, Func. Count: 126, Neg. LLF: 159.71611569260287
Iteration: 16, Func. Count: 134, Neg. LLF: 159.7159339284304
Iteration: 17, Func. Count: 142, Neg. LLF: 159.7158035675906
Iteration: 18, Func. Count: 150, Neg. LLF: 159.715798333854
Iteration: 19, Func. Count: 158, Neg. LLF: 159.71579494556113
Iteration: 20, Func. Count: 166, Neg. LLF: 159.71579367206093
Iteration: 21, Func. Count: 173, Neg. LLF: 159.71579367211157
Optimization terminated successfully (Exit mode 0)
Current function value: 159.71579367206093
Iterations: 21
Function evaluations: 173
Gradient evaluations: 21
Iteration: 1, Func. Count: 10, Neg. LLF: 176.94582030776124
Iteration: 2, Func. Count: 20, Neg. LLF: 160.2603880866851
Iteration: 3, Func. Count: 29, Neg. LLF: 160.24497752785675
Iteration: 4, Func. Count: 38, Neg. LLF: 160.22469387811196
Iteration: 5, Func. Count: 47, Neg. LLF: 160.19710617811373
Iteration: 6, Func. Count: 56, Neg. LLF: 160.0992926565902
Iteration: 7, Func. Count: 65, Neg. LLF: 160.07220089325423
Iteration: 8, Func. Count: 74, Neg. LLF: 160.01630755322546
Iteration: 9, Func. Count: 83, Neg. LLF: 160.01987390064852
Iteration: 10, Func. Count: 93, Neg. LLF: 159.9925859977064
Iteration: 11, Func. Count: 102, Neg. LLF: 159.96418513853862
Iteration: 12, Func. Count: 111, Neg. LLF: 159.91429930775502
Iteration: 13, Func. Count: 120, Neg. LLF: 159.8611017605548
Iteration: 14, Func. Count: 129, Neg. LLF: 159.81714131167445
Iteration: 15, Func. Count: 138, Neg. LLF: 159.7881849830363
Iteration: 16, Func. Count: 147, Neg. LLF: 159.75626236959127
Iteration: 17, Func. Count: 156, Neg. LLF: 159.73763149820152
Iteration: 18, Func. Count: 165, Neg. LLF: 159.7240351340971
Iteration: 19, Func. Count: 174, Neg. LLF: 159.71759281431522
Iteration: 20, Func. Count: 183, Neg. LLF: 159.7150284228409
Iteration: 21, Func. Count: 192, Neg. LLF: 159.6556873917323
Iteration: 22, Func. Count: 201, Neg. LLF: 160.10419916727528
Iteration: 23, Func. Count: 211, Neg. LLF: 159.3704153031877
Iteration: 24, Func. Count: 220, Neg. LLF: 2418.1165345901254
Iteration: 25, Func. Count: 233, Neg. LLF: 186.67601445593175
Iteration: 26, Func. Count: 243, Neg. LLF: 172.04858320842317
Iteration: 27, Func. Count: 253, Neg. LLF: 165.1734856844608
Iteration: 28, Func. Count: 263, Neg. LLF: 157.09639693031158
Iteration: 29, Func. Count: 272, Neg. LLF: 157.0694191747614
Iteration: 30, Func. Count: 282, Neg. LLF: 157.02133917415222
Iteration: 31, Func. Count: 292, Neg. LLF: 156.98524580549204
Iteration: 32, Func. Count: 301, Neg. LLF: 156.98510623836336
Iteration: 33, Func. Count: 310, Neg. LLF: 156.9850993894226
Iteration: 34, Func. Count: 319, Neg. LLF: 156.98508708208888
Iteration: 35, Func. Count: 328, Neg. LLF: 156.9850837855173
Iteration: 36, Func. Count: 337, Neg. LLF: 156.98508322269555
Optimization terminated successfully (Exit mode 0)
Current function value: 156.98508322269555
Iterations: 37
Function evaluations: 337
Gradient evaluations: 36
Iteration: 1, Func. Count: 7, Neg. LLF: 162.42253579429644
Iteration: 2, Func. Count: 13, Neg. LLF: 160.99848501783237
Iteration: 3, Func. Count: 19, Neg. LLF: 178.69160419161216
Iteration: 4, Func. Count: 29, Neg. LLF: 179.9690848239453
Iteration: 5, Func. Count: 36, Neg. LLF: 159.31106478192422
Iteration: 6, Func. Count: 42, Neg. LLF: 159.2868887407411
Iteration: 7, Func. Count: 48, Neg. LLF: 159.26731310316023
Iteration: 8, Func. Count: 54, Neg. LLF: 159.23791631586323
Iteration: 9, Func. Count: 60, Neg. LLF: 159.1805415780267
Iteration: 10, Func. Count: 66, Neg. LLF: 159.14250558002266
Iteration: 11, Func. Count: 72, Neg. LLF: 159.13097270752183
Iteration: 12, Func. Count: 78, Neg. LLF: 159.13033864307013
Iteration: 13, Func. Count: 84, Neg. LLF: 159.13033467640756
Iteration: 14, Func. Count: 90, Neg. LLF: 159.13033372948564
Optimization terminated successfully (Exit mode 0)
Current function value: 159.13033372948564
Iterations: 14
Function evaluations: 90
Gradient evaluations: 14
Iteration: 1, Func. Count: 8, Neg. LLF: 161.1998955981534
Iteration: 2, Func. Count: 17, Neg. LLF: 158.74967280922849
Iteration: 3, Func. Count: 24, Neg. LLF: 165.48085891347165
Iteration: 4, Func. Count: 32, Neg. LLF: 166.33790453634828
Iteration: 5, Func. Count: 42, Neg. LLF: 160.23291773696036
Iteration: 6, Func. Count: 50, Neg. LLF: 158.2923792270312
Iteration: 7, Func. Count: 58, Neg. LLF: 158.17241640969533
Iteration: 8, Func. Count: 65, Neg. LLF: 158.16737941497527
Iteration: 9, Func. Count: 72, Neg. LLF: 158.1522763175492
Iteration: 10, Func. Count: 79, Neg. LLF: 158.12829582309448
Iteration: 11, Func. Count: 86, Neg. LLF: 158.11383745138843
Iteration: 12, Func. Count: 93, Neg. LLF: 158.10552080776557
Iteration: 13, Func. Count: 100, Neg. LLF: 158.10469915611657
Iteration: 14, Func. Count: 107, Neg. LLF: 158.10464868385253
Iteration: 15, Func. Count: 114, Neg. LLF: 158.1046241014901
Iteration: 16, Func. Count: 120, Neg. LLF: 158.10462402777196
Optimization terminated successfully (Exit mode 0)
Current function value: 158.1046241014901
Iterations: 16
Function evaluations: 120
Gradient evaluations: 16
Iteration: 1, Func. Count: 9, Neg. LLF: 162.05807087678812
Iteration: 2, Func. Count: 18, Neg. LLF: 159.89018279736652
Iteration: 3, Func. Count: 26, Neg. LLF: 159.83838460257053
Iteration: 4, Func. Count: 35, Neg. LLF: 159.571210505462
Iteration: 5, Func. Count: 43, Neg. LLF: 159.28109944023288
Iteration: 6, Func. Count: 51, Neg. LLF: 159.6080783663817
Iteration: 7, Func. Count: 60, Neg. LLF: 158.52948602501965
Iteration: 8, Func. Count: 68, Neg. LLF: 158.45946380068344
Iteration: 9, Func. Count: 76, Neg. LLF: 158.8227857413343
Iteration: 10, Func. Count: 85, Neg. LLF: 158.3919261383165
Iteration: 11, Func. Count: 93, Neg. LLF: 158.3719067928337
Iteration: 12, Func. Count: 101, Neg. LLF: 160.072364890215
Iteration: 13, Func. Count: 110, Neg. LLF: 159.7969266866487
Iteration: 14, Func. Count: 119, Neg. LLF: 159.67421569695358
Iteration: 15, Func. Count: 128, Neg. LLF: 158.35433469443257
Iteration: 16, Func. Count: 137, Neg. LLF: 158.31549684547332
Iteration: 17, Func. Count: 145, Neg. LLF: 158.2918301523054
Iteration: 18, Func. Count: 153, Neg. LLF: 158.2803218837313
Iteration: 19, Func. Count: 161, Neg. LLF: 158.27259022949798
Iteration: 20, Func. Count: 169, Neg. LLF: 158.2686155283925
Iteration: 21, Func. Count: 177, Neg. LLF: 158.2677567312777
Iteration: 22, Func. Count: 185, Neg. LLF: 158.2676670628006
Iteration: 23, Func. Count: 193, Neg. LLF: 158.26765806273033
Iteration: 24, Func. Count: 201, Neg. LLF: 158.2688655202424
Optimization terminated successfully (Exit mode 0)
Current function value: 158.26765805820997
Iterations: 25
Function evaluations: 204
Gradient evaluations: 24
Iteration: 1, Func. Count: 10, Neg. LLF: 165.14440070388662
Iteration: 2, Func. Count: 23, Neg. LLF: 160.32335824264672
Iteration: 3, Func. Count: 33, Neg. LLF: 161.97453078691836
Iteration: 4, Func. Count: 43, Neg. LLF: 158.80815920021794
Iteration: 5, Func. Count: 52, Neg. LLF: 158.74132311969646
Iteration: 6, Func. Count: 61, Neg. LLF: 158.69118214108985
Iteration: 7, Func. Count: 70, Neg. LLF: 158.5932489964221
Iteration: 8, Func. Count: 79, Neg. LLF: 158.4726371646358
Iteration: 9, Func. Count: 88, Neg. LLF: 158.22339992424605
Iteration: 10, Func. Count: 97, Neg. LLF: 158.2013531024379
Iteration: 11, Func. Count: 106, Neg. LLF: 158.26383902674243
Iteration: 12, Func. Count: 116, Neg. LLF: 158.11924503463192
Iteration: 13, Func. Count: 125, Neg. LLF: 158.1168246224515
Iteration: 14, Func. Count: 134, Neg. LLF: 158.11521318267725
Iteration: 15, Func. Count: 143, Neg. LLF: 158.11161628787573
Iteration: 16, Func. Count: 152, Neg. LLF: 158.107411862587
Iteration: 17, Func. Count: 161, Neg. LLF: 158.10521118249775
Iteration: 18, Func. Count: 170, Neg. LLF: 158.10466894582828
Iteration: 19, Func. Count: 179, Neg. LLF: 158.10462139527274
Iteration: 20, Func. Count: 188, Neg. LLF: 158.10461974195456
Optimization terminated successfully (Exit mode 0)
Current function value: 158.10462139216224
Iterations: 20
Function evaluations: 198
Gradient evaluations: 20
Iteration: 1, Func. Count: 11, Neg. LLF: 178.85151580739446
Iteration: 2, Func. Count: 22, Neg. LLF: 160.04095242874877
Iteration: 3, Func. Count: 32, Neg. LLF: 158.60673298106352
Iteration: 4, Func. Count: 42, Neg. LLF: 159.05251568879308
Iteration: 5, Func. Count: 53, Neg. LLF: 158.49320756937647
Iteration: 6, Func. Count: 64, Neg. LLF: 158.43843167373058
Iteration: 7, Func. Count: 75, Neg. LLF: 158.22858656347182
Iteration: 8, Func. Count: 85, Neg. LLF: 158.15852406197487
Iteration: 9, Func. Count: 95, Neg. LLF: 158.14827878723798
Iteration: 10, Func. Count: 105, Neg. LLF: 158.1431027640749
Iteration: 11, Func. Count: 115, Neg. LLF: 158.13750503206765
Iteration: 12, Func. Count: 125, Neg. LLF: 158.13043704117283
Iteration: 13, Func. Count: 135, Neg. LLF: 158.1153975780517
Iteration: 14, Func. Count: 145, Neg. LLF: 158.107448452785
Iteration: 15, Func. Count: 155, Neg. LLF: 158.10505486687418
Iteration: 16, Func. Count: 165, Neg. LLF: 158.1046303458892
Iteration: 17, Func. Count: 175, Neg. LLF: 158.10462390803528
Iteration: 18, Func. Count: 184, Neg. LLF: 158.10462388403457
Optimization terminated successfully (Exit mode 0)
Current function value: 158.10462390803528
Iterations: 18
Function evaluations: 184
Gradient evaluations: 18
Iteration: 1, Func. Count: 8, Neg. LLF: 160.59316930136737
Iteration: 2, Func. Count: 16, Neg. LLF: 164.12770440453943
Iteration: 3, Func. Count: 24, Neg. LLF: 153.55474382924524
Iteration: 4, Func. Count: 31, Neg. LLF: 153.19972501623715
Iteration: 5, Func. Count: 38, Neg. LLF: 155.06440206924012
Iteration: 6, Func. Count: 46, Neg. LLF: 152.98321462886153
Iteration: 7, Func. Count: 53, Neg. LLF: 152.81630422207905
Iteration: 8, Func. Count: 60, Neg. LLF: 156.79766344369187
Iteration: 9, Func. Count: 68, Neg. LLF: 192.17110109041613
Iteration: 10, Func. Count: 76, Neg. LLF: 152.56881198029387
Iteration: 11, Func. Count: 83, Neg. LLF: 152.51677632612447
Iteration: 12, Func. Count: 90, Neg. LLF: 152.56830540310082
Iteration: 13, Func. Count: 98, Neg. LLF: 152.45750376062466
Iteration: 14, Func. Count: 105, Neg. LLF: 152.4493743427238
Iteration: 15, Func. Count: 112, Neg. LLF: 152.44000494750637
Iteration: 16, Func. Count: 119, Neg. LLF: 152.43891873274174
Iteration: 17, Func. Count: 126, Neg. LLF: 152.43874059973186
Iteration: 18, Func. Count: 133, Neg. LLF: 152.43873876230265
Iteration: 19, Func. Count: 139, Neg. LLF: 152.4387387249815
Optimization terminated successfully (Exit mode 0)
Current function value: 152.43873876230265
Iterations: 19
Function evaluations: 139
Gradient evaluations: 19
Iteration: 1, Func. Count: 9, Neg. LLF: 154.10056366667166
Iteration: 2, Func. Count: 17, Neg. LLF: 153.21378504553672
Iteration: 3, Func. Count: 25, Neg. LLF: 153.11861052482212
Iteration: 4, Func. Count: 33, Neg. LLF: 153.05529102318886
Iteration: 5, Func. Count: 41, Neg. LLF: 152.78605771846796
Iteration: 6, Func. Count: 49, Neg. LLF: 6084.352831978068
Iteration: 7, Func. Count: 58, Neg. LLF: 288.2593833993775
Iteration: 8, Func. Count: 69, Neg. LLF: 282.4366843535853
Iteration: 9, Func. Count: 78, Neg. LLF: 152.61937321182054
Iteration: 10, Func. Count: 87, Neg. LLF: 152.4823200180972
Iteration: 11, Func. Count: 96, Neg. LLF: 152.43915723928444
Iteration: 12, Func. Count: 104, Neg. LLF: 152.43874708538627
Iteration: 13, Func. Count: 112, Neg. LLF: 152.4387389568269
Iteration: 14, Func. Count: 119, Neg. LLF: 152.4387389721367
Optimization terminated successfully (Exit mode 0)
Current function value: 152.4387389568269
Iterations: 14
Function evaluations: 119
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 157.0980401415218
Iteration: 2, Func. Count: 19, Neg. LLF: 155.11766205123706
Iteration: 3, Func. Count: 28, Neg. LLF: 153.6158763056794
Iteration: 4, Func. Count: 37, Neg. LLF: 170.37465788815402
Iteration: 5, Func. Count: 49, Neg. LLF: 155.2065707045182
Iteration: 6, Func. Count: 59, Neg. LLF: 157.24326367903342
Iteration: 7, Func. Count: 71, Neg. LLF: 152.5125641319551
Iteration: 8, Func. Count: 80, Neg. LLF: 152.5968694524751
Iteration: 9, Func. Count: 90, Neg. LLF: 152.44253320737423
Iteration: 10, Func. Count: 99, Neg. LLF: 152.42019250646646
Iteration: 11, Func. Count: 108, Neg. LLF: 152.4194317682856
Iteration: 12, Func. Count: 117, Neg. LLF: 152.41939287490752
Iteration: 13, Func. Count: 126, Neg. LLF: 152.41936766390475
Iteration: 14, Func. Count: 135, Neg. LLF: 152.41928977765218
Iteration: 15, Func. Count: 144, Neg. LLF: 152.41924994169128
Iteration: 16, Func. Count: 153, Neg. LLF: 152.41923760776325
Iteration: 17, Func. Count: 162, Neg. LLF: 152.41923677443322
Optimization terminated successfully (Exit mode 0)
Current function value: 152.41923677443322
Iterations: 17
Function evaluations: 162
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 153.32672293255922
Iteration: 2, Func. Count: 21, Neg. LLF: 154.360101657534
Iteration: 3, Func. Count: 32, Neg. LLF: 153.10211993626268
Iteration: 4, Func. Count: 42, Neg. LLF: 152.82999253088138
Iteration: 5, Func. Count: 52, Neg. LLF: 441.46319548736017
Iteration: 6, Func. Count: 63, Neg. LLF: 173.60620904902336
Iteration: 7, Func. Count: 74, Neg. LLF: 153.28657782975233
Iteration: 8, Func. Count: 85, Neg. LLF: 152.47595242626028
Iteration: 9, Func. Count: 96, Neg. LLF: 152.4445428413867
Iteration: 10, Func. Count: 107, Neg. LLF: 152.44820437049478
Iteration: 11, Func. Count: 118, Neg. LLF: 152.4386919800328
Iteration: 12, Func. Count: 129, Neg. LLF: 152.41924644035436
Iteration: 13, Func. Count: 139, Neg. LLF: 152.41923675924917
Iteration: 14, Func. Count: 148, Neg. LLF: 152.41923675204157
Optimization terminated successfully (Exit mode 0)
Current function value: 152.41923675924917
Iterations: 14
Function evaluations: 148
Gradient evaluations: 14
Iteration: 1, Func. Count: 12, Neg. LLF: 157.54279094285596
Iteration: 2, Func. Count: 23, Neg. LLF: 155.7152721509327
Iteration: 3, Func. Count: 34, Neg. LLF: 158.756849695477
Iteration: 4, Func. Count: 46, Neg. LLF: 153.67330596477325
Iteration: 5, Func. Count: 57, Neg. LLF: 153.10785231404782
Iteration: 6, Func. Count: 68, Neg. LLF: 185.3396771014273
Iteration: 7, Func. Count: 83, Neg. LLF: 169.8603012440992
Iteration: 8, Func. Count: 96, Neg. LLF: 152.21219379231636
Iteration: 9, Func. Count: 107, Neg. LLF: 151.95620379950375
Iteration: 10, Func. Count: 118, Neg. LLF: 151.87814253036538
Iteration: 11, Func. Count: 129, Neg. LLF: 151.78963218428515
Iteration: 12, Func. Count: 140, Neg. LLF: 157.64477801109737
Iteration: 13, Func. Count: 152, Neg. LLF: 154.09677681316336
Iteration: 14, Func. Count: 164, Neg. LLF: 152.61018251375233
Iteration: 15, Func. Count: 176, Neg. LLF: 152.14048621701824
Iteration: 16, Func. Count: 188, Neg. LLF: 151.17402836682078
Iteration: 17, Func. Count: 199, Neg. LLF: 151.00345462171455
Iteration: 18, Func. Count: 210, Neg. LLF: 150.97780403319345
Iteration: 19, Func. Count: 221, Neg. LLF: 150.97125155268424
Iteration: 20, Func. Count: 232, Neg. LLF: 150.94832352564455
Iteration: 21, Func. Count: 243, Neg. LLF: 150.9357064020894
Iteration: 22, Func. Count: 254, Neg. LLF: 150.93494176527193
Iteration: 23, Func. Count: 265, Neg. LLF: 150.93481591141335
Iteration: 24, Func. Count: 276, Neg. LLF: 150.93481436528742
Iteration: 25, Func. Count: 286, Neg. LLF: 150.93481410535176
Optimization terminated successfully (Exit mode 0)
Current function value: 150.93481436528742
Iterations: 25
Function evaluations: 286
Gradient evaluations: 25
Iteration: 1, Func. Count: 9, Neg. LLF: 159.42292288336708
Iteration: 2, Func. Count: 17, Neg. LLF: 160.07996979795487
Iteration: 3, Func. Count: 26, Neg. LLF: 153.48719419142995
Iteration: 4, Func. Count: 34, Neg. LLF: 153.20693466892752
Iteration: 5, Func. Count: 42, Neg. LLF: 153.13420441433036
Iteration: 6, Func. Count: 50, Neg. LLF: 152.8229477253214
Iteration: 7, Func. Count: 58, Neg. LLF: 4439.0934021542635
Iteration: 8, Func. Count: 67, Neg. LLF: 186.95656257125893
Iteration: 9, Func. Count: 77, Neg. LLF: 4392.577837534422
Iteration: 10, Func. Count: 86, Neg. LLF: 152.55769509805793
Iteration: 11, Func. Count: 95, Neg. LLF: 152.44988378063775
Iteration: 12, Func. Count: 104, Neg. LLF: 152.44146863856693
Iteration: 13, Func. Count: 113, Neg. LLF: 152.4387480803108
Iteration: 14, Func. Count: 121, Neg. LLF: 152.43873879838793
Iteration: 15, Func. Count: 128, Neg. LLF: 152.43873881073074
Optimization terminated successfully (Exit mode 0)
Current function value: 152.43873879838793
Iterations: 15
Function evaluations: 128
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 157.55190833452104
Iteration: 2, Func. Count: 19, Neg. LLF: 157.45716625184488
Iteration: 3, Func. Count: 29, Neg. LLF: 176.60912566917668
Iteration: 4, Func. Count: 39, Neg. LLF: 175.13721361417475
Iteration: 5, Func. Count: 52, Neg. LLF: 153.41776070198992
Iteration: 6, Func. Count: 61, Neg. LLF: 152.6212087753324
Iteration: 7, Func. Count: 70, Neg. LLF: 154.50706846537213
Iteration: 8, Func. Count: 80, Neg. LLF: 152.50643975853168
Iteration: 9, Func. Count: 90, Neg. LLF: 152.44245195512184
Iteration: 10, Func. Count: 99, Neg. LLF: 152.43969777926333
Iteration: 11, Func. Count: 108, Neg. LLF: 152.43945701238073
Iteration: 12, Func. Count: 117, Neg. LLF: 152.4392621647211
Iteration: 13, Func. Count: 126, Neg. LLF: 152.43909893133298
Iteration: 14, Func. Count: 135, Neg. LLF: 152.43884671076307
Iteration: 15, Func. Count: 144, Neg. LLF: 152.4387538093905
Iteration: 16, Func. Count: 153, Neg. LLF: 152.43873942467624
Iteration: 17, Func. Count: 162, Neg. LLF: 152.43873876982587
Optimization terminated successfully (Exit mode 0)
Current function value: 152.43873876982587
Iterations: 17
Function evaluations: 162
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 161.17355165633862
Iteration: 2, Func. Count: 25, Neg. LLF: 153.8418918493068
Iteration: 3, Func. Count: 35, Neg. LLF: 153.89914401961414
Iteration: 4, Func. Count: 46, Neg. LLF: 161.56979324097384
Iteration: 5, Func. Count: 58, Neg. LLF: 153.08462085270685
Iteration: 6, Func. Count: 68, Neg. LLF: 152.88481464400974
Iteration: 7, Func. Count: 78, Neg. LLF: 152.6574005899424
Iteration: 8, Func. Count: 88, Neg. LLF: 152.48523249341804
Iteration: 9, Func. Count: 98, Neg. LLF: 154.1521014625136
Iteration: 10, Func. Count: 109, Neg. LLF: 152.42614180697524
Iteration: 11, Func. Count: 120, Neg. LLF: 152.42193557652905
Iteration: 12, Func. Count: 131, Neg. LLF: 152.4195159145526
Iteration: 13, Func. Count: 141, Neg. LLF: 152.4194854236629
Iteration: 14, Func. Count: 151, Neg. LLF: 152.41935249453851
Iteration: 15, Func. Count: 161, Neg. LLF: 152.41923688495532
Iteration: 16, Func. Count: 170, Neg. LLF: 152.41923680377212
Optimization terminated successfully (Exit mode 0)
Current function value: 152.41923688495532
Iterations: 16
Function evaluations: 170
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 160.25074010312267
Iteration: 2, Func. Count: 27, Neg. LLF: 153.32060428642214
Iteration: 3, Func. Count: 38, Neg. LLF: 153.77359799099148
Iteration: 4, Func. Count: 50, Neg. LLF: 153.93662420321064
Iteration: 5, Func. Count: 64, Neg. LLF: 154.68327140924674
Iteration: 6, Func. Count: 76, Neg. LLF: 152.53930025006352
Iteration: 7, Func. Count: 87, Neg. LLF: 152.464693022657
Iteration: 8, Func. Count: 98, Neg. LLF: 152.4317819057778
Iteration: 9, Func. Count: 109, Neg. LLF: 152.43753991627213
Iteration: 10, Func. Count: 121, Neg. LLF: 152.41934187001127
Iteration: 11, Func. Count: 132, Neg. LLF: 152.41924518440655
Iteration: 12, Func. Count: 143, Neg. LLF: 152.41924396277432
Iteration: 13, Func. Count: 154, Neg. LLF: 152.4192428702777
Iteration: 14, Func. Count: 165, Neg. LLF: 152.41923813028168
Iteration: 15, Func. Count: 176, Neg. LLF: 152.41923683778654
Iteration: 16, Func. Count: 186, Neg. LLF: 152.41923683059545
Optimization terminated successfully (Exit mode 0)
Current function value: 152.41923683778654
Iterations: 16
Function evaluations: 186
Gradient evaluations: 16
Iteration: 1, Func. Count: 13, Neg. LLF: 152.81287818727716
Iteration: 2, Func. Count: 25, Neg. LLF: 154.35656298900182
Iteration: 3, Func. Count: 40, Neg. LLF: 169.897900230592
Iteration: 4, Func. Count: 53, Neg. LLF: 152.53956433611478
Iteration: 5, Func. Count: 66, Neg. LLF: 152.03682050171696
Iteration: 6, Func. Count: 78, Neg. LLF: 152.00359340565285
Iteration: 7, Func. Count: 90, Neg. LLF: 151.90313642944196
Iteration: 8, Func. Count: 102, Neg. LLF: 152.39235287307318
Iteration: 9, Func. Count: 115, Neg. LLF: 151.63832649624712
Iteration: 10, Func. Count: 128, Neg. LLF: 152.1374741772571
Iteration: 11, Func. Count: 141, Neg. LLF: 151.0274719831825
Iteration: 12, Func. Count: 153, Neg. LLF: 151.45094151325998
Iteration: 13, Func. Count: 166, Neg. LLF: 151.00293181838862
Iteration: 14, Func. Count: 179, Neg. LLF: 150.96221711944753
Iteration: 15, Func. Count: 191, Neg. LLF: 150.9381837472572
Iteration: 16, Func. Count: 203, Neg. LLF: 150.9354040293359
Iteration: 17, Func. Count: 215, Neg. LLF: 150.93481918555142
Iteration: 18, Func. Count: 227, Neg. LLF: 150.93481435989702
Iteration: 19, Func. Count: 238, Neg. LLF: 150.93481409988237
Optimization terminated successfully (Exit mode 0)
Current function value: 150.93481435989702
Iterations: 19
Function evaluations: 238
Gradient evaluations: 19
Iteration: 1, Func. Count: 10, Neg. LLF: 158.56681589565358
Iteration: 2, Func. Count: 19, Neg. LLF: 161.7660145957496
Iteration: 3, Func. Count: 29, Neg. LLF: 153.35341894650188
Iteration: 4, Func. Count: 38, Neg. LLF: 153.19699908728506
Iteration: 5, Func. Count: 47, Neg. LLF: 153.11192328491873
Iteration: 6, Func. Count: 56, Neg. LLF: 152.7322839876098
Iteration: 7, Func. Count: 65, Neg. LLF: 204.9885679007744
Iteration: 8, Func. Count: 76, Neg. LLF: 243125.40368050875
Iteration: 9, Func. Count: 86, Neg. LLF: 152.67601307402342
Iteration: 10, Func. Count: 96, Neg. LLF: 591.4708792416908
Iteration: 11, Func. Count: 107, Neg. LLF: 152.44678354195298
Iteration: 12, Func. Count: 117, Neg. LLF: 152.43365243759578
Iteration: 13, Func. Count: 127, Neg. LLF: 152.43136322590777
Iteration: 14, Func. Count: 137, Neg. LLF: 152.4312106003687
Iteration: 15, Func. Count: 147, Neg. LLF: 152.43114192088538
Iteration: 16, Func. Count: 155, Neg. LLF: 152.431141882798
Optimization terminated successfully (Exit mode 0)
Current function value: 152.43114192088538
Iterations: 16
Function evaluations: 155
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 157.60565574691586
Iteration: 2, Func. Count: 21, Neg. LLF: 157.72302194291368
Iteration: 3, Func. Count: 32, Neg. LLF: 170.41051591083863
Iteration: 4, Func. Count: 43, Neg. LLF: 177.96738918478516
Iteration: 5, Func. Count: 57, Neg. LLF: 153.317764609196
Iteration: 6, Func. Count: 67, Neg. LLF: 152.59279935154373
Iteration: 7, Func. Count: 77, Neg. LLF: 152.76061827051643
Iteration: 8, Func. Count: 88, Neg. LLF: 152.5010947720933
Iteration: 9, Func. Count: 99, Neg. LLF: 152.48253661198132
Iteration: 10, Func. Count: 110, Neg. LLF: 152.43215051138958
Iteration: 11, Func. Count: 120, Neg. LLF: 152.43167893417603
Iteration: 12, Func. Count: 130, Neg. LLF: 152.4314170242219
Iteration: 13, Func. Count: 140, Neg. LLF: 152.43137698574265
Iteration: 14, Func. Count: 150, Neg. LLF: 152.43122811499416
Iteration: 15, Func. Count: 160, Neg. LLF: 152.43115667457667
Iteration: 16, Func. Count: 170, Neg. LLF: 152.43114264640727
Iteration: 17, Func. Count: 180, Neg. LLF: 152.43114190486986
Optimization terminated successfully (Exit mode 0)
Current function value: 152.43114190486986
Iterations: 17
Function evaluations: 180
Gradient evaluations: 17
Iteration: 1, Func. Count: 12, Neg. LLF: 161.17657899427292
Iteration: 2, Func. Count: 27, Neg. LLF: 153.84345342467714
Iteration: 3, Func. Count: 38, Neg. LLF: 153.89667609410355
Iteration: 4, Func. Count: 50, Neg. LLF: 163.75582912291242
Iteration: 5, Func. Count: 63, Neg. LLF: 153.05521778932402
Iteration: 6, Func. Count: 74, Neg. LLF: 152.88945438896377
Iteration: 7, Func. Count: 86, Neg. LLF: 153.60090007750077
Iteration: 8, Func. Count: 98, Neg. LLF: 152.48124031694164
Iteration: 9, Func. Count: 109, Neg. LLF: 152.46188199296114
Iteration: 10, Func. Count: 120, Neg. LLF: 152.56108793164657
Iteration: 11, Func. Count: 132, Neg. LLF: 152.42195580395475
Iteration: 12, Func. Count: 143, Neg. LLF: 152.419744647636
Iteration: 13, Func. Count: 154, Neg. LLF: 152.41941169701258
Iteration: 14, Func. Count: 165, Neg. LLF: 152.41938891071942
Iteration: 15, Func. Count: 176, Neg. LLF: 152.41935161785472
Iteration: 16, Func. Count: 187, Neg. LLF: 152.419287866321
Iteration: 17, Func. Count: 198, Neg. LLF: 152.41924940881296
Iteration: 18, Func. Count: 209, Neg. LLF: 152.4192377733138
Iteration: 19, Func. Count: 220, Neg. LLF: 152.4192367825237
Optimization terminated successfully (Exit mode 0)
Current function value: 152.4192367825237
Iterations: 19
Function evaluations: 220
Gradient evaluations: 19
Iteration: 1, Func. Count: 13, Neg. LLF: 156.84399701193368
Iteration: 2, Func. Count: 25, Neg. LLF: 153.9083550591115
Iteration: 3, Func. Count: 37, Neg. LLF: 154.00080553663966
Iteration: 4, Func. Count: 50, Neg. LLF: 152.6760422760928
Iteration: 5, Func. Count: 62, Neg. LLF: 153.56950125786938
Iteration: 6, Func. Count: 77, Neg. LLF: 159.9460277136716
Iteration: 7, Func. Count: 91, Neg. LLF: 152.82949821127022
Iteration: 8, Func. Count: 104, Neg. LLF: 152.48784057208695
Iteration: 9, Func. Count: 117, Neg. LLF: 152.7126738760863
Iteration: 10, Func. Count: 130, Neg. LLF: 152.42572383875944
Iteration: 11, Func. Count: 142, Neg. LLF: 152.4245764166023
Iteration: 12, Func. Count: 154, Neg. LLF: 152.4200896747067
Iteration: 13, Func. Count: 166, Neg. LLF: 152.4192844273536
Iteration: 14, Func. Count: 178, Neg. LLF: 152.41923740797063
Iteration: 15, Func. Count: 190, Neg. LLF: 152.41923683272995
Optimization terminated successfully (Exit mode 0)
Current function value: 152.41923683272995
Iterations: 15
Function evaluations: 190
Gradient evaluations: 15
Iteration: 1, Func. Count: 14, Neg. LLF: 152.7152269716828
Iteration: 2, Func. Count: 27, Neg. LLF: 153.85945272087199
Iteration: 3, Func. Count: 43, Neg. LLF: 170.26302523220355
Iteration: 4, Func. Count: 57, Neg. LLF: 152.4246296465822
Iteration: 5, Func. Count: 71, Neg. LLF: 152.01630777075627
Iteration: 6, Func. Count: 84, Neg. LLF: 151.9784370838422
Iteration: 7, Func. Count: 97, Neg. LLF: 151.80673513770287
Iteration: 8, Func. Count: 110, Neg. LLF: 152.60587882242496
Iteration: 9, Func. Count: 124, Neg. LLF: 151.689773686578
Iteration: 10, Func. Count: 138, Neg. LLF: 151.50285242554457
Iteration: 11, Func. Count: 152, Neg. LLF: 150.990851597995
Iteration: 12, Func. Count: 165, Neg. LLF: 151.03845895380798
Iteration: 13, Func. Count: 179, Neg. LLF: 150.95540825299938
Iteration: 14, Func. Count: 192, Neg. LLF: 150.93679624181232
Iteration: 15, Func. Count: 205, Neg. LLF: 150.93490088483478
Iteration: 16, Func. Count: 218, Neg. LLF: 150.93481656808228
Iteration: 17, Func. Count: 231, Neg. LLF: 150.93481450877388
Iteration: 18, Func. Count: 243, Neg. LLF: 150.93481424866002
Optimization terminated successfully (Exit mode 0)
Current function value: 150.93481450877388
Iterations: 18
Function evaluations: 243
Gradient evaluations: 18
Iteration: 1, Func. Count: 7, Neg. LLF: 159.61365154761558
Iteration: 2, Func. Count: 13, Neg. LLF: 161.68623877727896
Iteration: 3, Func. Count: 20, Neg. LLF: 159.3768695141548
Iteration: 4, Func. Count: 26, Neg. LLF: 159.28253369713687
Iteration: 5, Func. Count: 32, Neg. LLF: 159.24406067920043
Iteration: 6, Func. Count: 38, Neg. LLF: 159.13320487832354
Iteration: 7, Func. Count: 44, Neg. LLF: 159.134233763746
Iteration: 8, Func. Count: 51, Neg. LLF: 159.1317819246081
Iteration: 9, Func. Count: 58, Neg. LLF: 159.13053206678202
Iteration: 10, Func. Count: 64, Neg. LLF: 159.13053145565618
Optimization terminated successfully (Exit mode 0)
Current function value: 159.13053145565618
Iterations: 10
Function evaluations: 64
Gradient evaluations: 10
Iteration: 1, Func. Count: 8, Neg. LLF: 174.03887227386863
Iteration: 2, Func. Count: 17, Neg. LLF: 169.63822030969902
Iteration: 3, Func. Count: 25, Neg. LLF: 199.8037157055288
Iteration: 4, Func. Count: 33, Neg. LLF: 160.47501409970454
Iteration: 5, Func. Count: 41, Neg. LLF: 158.55713750633214
Iteration: 6, Func. Count: 48, Neg. LLF: 166.89247188076453
Iteration: 7, Func. Count: 56, Neg. LLF: 201.30080284773462
Iteration: 8, Func. Count: 65, Neg. LLF: 157.61831387870237
Iteration: 9, Func. Count: 72, Neg. LLF: 156.42669827905175
Iteration: 10, Func. Count: 79, Neg. LLF: 156.226698574395
Iteration: 11, Func. Count: 86, Neg. LLF: 155.20463444204273
Iteration: 12, Func. Count: 93, Neg. LLF: 164.89739594593408
Iteration: 13, Func. Count: 101, Neg. LLF: 175.6550926386138
Iteration: 14, Func. Count: 109, Neg. LLF: 155.60834839453594
Iteration: 15, Func. Count: 117, Neg. LLF: 154.6677745452759
Iteration: 16, Func. Count: 124, Neg. LLF: 154.65304651942932
Iteration: 17, Func. Count: 131, Neg. LLF: 154.64633647678002
Iteration: 18, Func. Count: 138, Neg. LLF: 154.64432668226607
Iteration: 19, Func. Count: 145, Neg. LLF: 154.64371658806846
Iteration: 20, Func. Count: 152, Neg. LLF: 154.6436238441949
Iteration: 21, Func. Count: 159, Neg. LLF: 154.64362033644187
Iteration: 22, Func. Count: 165, Neg. LLF: 154.64362008950636
Optimization terminated successfully (Exit mode 0)
Current function value: 154.64362033644187
Iterations: 22
Function evaluations: 165
Gradient evaluations: 22
Iteration: 1, Func. Count: 9, Neg. LLF: 161.2871497503907
Iteration: 2, Func. Count: 21, Neg. LLF: 173.08360110103607
Iteration: 3, Func. Count: 31, Neg. LLF: 160.17036974505547
Iteration: 4, Func. Count: 39, Neg. LLF: 161.33075638140224
Iteration: 5, Func. Count: 49, Neg. LLF: 160.41539528989802
Iteration: 6, Func. Count: 58, Neg. LLF: 159.76269110279574
Iteration: 7, Func. Count: 66, Neg. LLF: 159.74502272277496
Iteration: 8, Func. Count: 74, Neg. LLF: 159.62766081076543
Iteration: 9, Func. Count: 82, Neg. LLF: 160.19253080100282
Iteration: 10, Func. Count: 91, Neg. LLF: 158.85406273663708
Iteration: 11, Func. Count: 99, Neg. LLF: 159.34826229890857
Iteration: 12, Func. Count: 108, Neg. LLF: 158.34803701313942
Iteration: 13, Func. Count: 116, Neg. LLF: 158.28540505097286
Iteration: 14, Func. Count: 124, Neg. LLF: 159.68615496974388
Iteration: 15, Func. Count: 133, Neg. LLF: 158.26811707686986
Iteration: 16, Func. Count: 141, Neg. LLF: 158.26807651853008
Iteration: 17, Func. Count: 149, Neg. LLF: 158.2680636328352
Iteration: 18, Func. Count: 157, Neg. LLF: 158.26806264827624
Optimization terminated successfully (Exit mode 0)
Current function value: 158.26806264827624
Iterations: 18
Function evaluations: 157
Gradient evaluations: 18
Iteration: 1, Func. Count: 10, Neg. LLF: 166.95659710494974
Iteration: 2, Func. Count: 23, Neg. LLF: 164.07200589960505
Iteration: 3, Func. Count: 33, Neg. LLF: 160.05815184317737
Iteration: 4, Func. Count: 42, Neg. LLF: 160.05674535012054
Iteration: 5, Func. Count: 52, Neg. LLF: 160.0457698402742
Iteration: 6, Func. Count: 62, Neg. LLF: 159.96444069170292
Iteration: 7, Func. Count: 71, Neg. LLF: 159.95227245979905
Iteration: 8, Func. Count: 80, Neg. LLF: 159.94279163846943
Iteration: 9, Func. Count: 89, Neg. LLF: 159.91281495146202
Iteration: 10, Func. Count: 98, Neg. LLF: 159.8286548812438
Iteration: 11, Func. Count: 107, Neg. LLF: 159.7947054838626
Iteration: 12, Func. Count: 116, Neg. LLF: 159.7371251694932
Iteration: 13, Func. Count: 125, Neg. LLF: 159.73025900848697
Iteration: 14, Func. Count: 134, Neg. LLF: 159.72191825244283
Iteration: 15, Func. Count: 143, Neg. LLF: 159.7176736000988
Iteration: 16, Func. Count: 152, Neg. LLF: 159.71688707000166
Iteration: 17, Func. Count: 161, Neg. LLF: 159.7162068131442
Iteration: 18, Func. Count: 170, Neg. LLF: 159.71585414571894
Iteration: 19, Func. Count: 179, Neg. LLF: 159.71579641599533
Iteration: 20, Func. Count: 188, Neg. LLF: 159.71579368303884
Iteration: 21, Func. Count: 196, Neg. LLF: 159.71579368306166
Optimization terminated successfully (Exit mode 0)
Current function value: 159.71579368303884
Iterations: 21
Function evaluations: 196
Gradient evaluations: 21
Iteration: 1, Func. Count: 11, Neg. LLF: 179.29911426508076
Iteration: 2, Func. Count: 22, Neg. LLF: 160.31384121210402
Iteration: 3, Func. Count: 32, Neg. LLF: 160.25199200703867
Iteration: 4, Func. Count: 42, Neg. LLF: 160.24124779299888
Iteration: 5, Func. Count: 52, Neg. LLF: 160.2368084373611
Iteration: 6, Func. Count: 62, Neg. LLF: 160.23602767591862
Iteration: 7, Func. Count: 72, Neg. LLF: 160.18590085375416
Iteration: 8, Func. Count: 82, Neg. LLF: 160.1098602701984
Iteration: 9, Func. Count: 92, Neg. LLF: 160.0359582952757
Iteration: 10, Func. Count: 102, Neg. LLF: 159.98354619117413
Iteration: 11, Func. Count: 112, Neg. LLF: 159.96882389621618
Iteration: 12, Func. Count: 122, Neg. LLF: 159.94393134546715
Iteration: 13, Func. Count: 132, Neg. LLF: 159.92050367995265
Iteration: 14, Func. Count: 142, Neg. LLF: 159.89827389261345
Iteration: 15, Func. Count: 152, Neg. LLF: 159.79684166824083
Iteration: 16, Func. Count: 162, Neg. LLF: 159.7511035839077
Iteration: 17, Func. Count: 172, Neg. LLF: 159.69987440024127
Iteration: 18, Func. Count: 182, Neg. LLF: 159.6861770711008
Iteration: 19, Func. Count: 192, Neg. LLF: 159.63984887675394
Iteration: 20, Func. Count: 202, Neg. LLF: 159.62403367306442
Iteration: 21, Func. Count: 212, Neg. LLF: 159.58267434088663
Iteration: 22, Func. Count: 222, Neg. LLF: 159.5778555148048
Iteration: 23, Func. Count: 232, Neg. LLF: 164.15393245572454
Iteration: 24, Func. Count: 243, Neg. LLF: 159.73679876769452
Iteration: 25, Func. Count: 254, Neg. LLF: 159.6911115088432
Iteration: 26, Func. Count: 265, Neg. LLF: 159.1751289251645
Iteration: 27, Func. Count: 275, Neg. LLF: 159.27432437794766
Iteration: 28, Func. Count: 286, Neg. LLF: 158.3570598033946
Iteration: 29, Func. Count: 296, Neg. LLF: 157.29779545688868
Iteration: 30, Func. Count: 306, Neg. LLF: 157.68825004712963
Iteration: 31, Func. Count: 317, Neg. LLF: 156.9950474746684
Iteration: 32, Func. Count: 327, Neg. LLF: 156.98533577549367
Iteration: 33, Func. Count: 337, Neg. LLF: 156.98511396227246
Iteration: 34, Func. Count: 347, Neg. LLF: 156.98508401312188
Iteration: 35, Func. Count: 357, Neg. LLF: 156.9850848695386
Optimization terminated successfully (Exit mode 0)
Current function value: 156.9850848695386
Iterations: 36
Function evaluations: 357
Gradient evaluations: 35
Iteration: 1, Func. Count: 8, Neg. LLF: 161.70152981740023
Iteration: 2, Func. Count: 15, Neg. LLF: 160.38211669159682
Iteration: 3, Func. Count: 22, Neg. LLF: 167.05622136395698
Iteration: 4, Func. Count: 32, Neg. LLF: 168.71046539233242
Iteration: 5, Func. Count: 40, Neg. LLF: 160.3916997124012
Iteration: 6, Func. Count: 48, Neg. LLF: 159.9864105624279
Iteration: 7, Func. Count: 55, Neg. LLF: 159.559335323039
Iteration: 8, Func. Count: 62, Neg. LLF: 159.26466478896916
Iteration: 9, Func. Count: 69, Neg. LLF: 159.25487841281168
Iteration: 10, Func. Count: 76, Neg. LLF: 159.21396946461806
Iteration: 11, Func. Count: 83, Neg. LLF: 159.16226152965575
Iteration: 12, Func. Count: 90, Neg. LLF: 159.13652824638785
Iteration: 13, Func. Count: 97, Neg. LLF: 159.13040877291994
Iteration: 14, Func. Count: 104, Neg. LLF: 159.1303454419897
Iteration: 15, Func. Count: 111, Neg. LLF: 159.1303341300873
Iteration: 16, Func. Count: 117, Neg. LLF: 159.13033414861985
Optimization terminated successfully (Exit mode 0)
Current function value: 159.1303341300873
Iterations: 16
Function evaluations: 117
Gradient evaluations: 16
Iteration: 1, Func. Count: 9, Neg. LLF: 177.51612983182898
Iteration: 2, Func. Count: 19, Neg. LLF: 158.44627730046022
Iteration: 3, Func. Count: 27, Neg. LLF: 176.21118739401703
Iteration: 4, Func. Count: 36, Neg. LLF: 172.750484454863
Iteration: 5, Func. Count: 46, Neg. LLF: 157.99260688632245
Iteration: 6, Func. Count: 54, Neg. LLF: 157.72696596048414
Iteration: 7, Func. Count: 62, Neg. LLF: 157.57564242218794
Iteration: 8, Func. Count: 70, Neg. LLF: 157.557301474061
Iteration: 9, Func. Count: 78, Neg. LLF: 157.54570355587492
Iteration: 10, Func. Count: 86, Neg. LLF: 157.53747695766188
Iteration: 11, Func. Count: 94, Neg. LLF: 157.50101260410776
Iteration: 12, Func. Count: 102, Neg. LLF: 157.48811705726249
Iteration: 13, Func. Count: 110, Neg. LLF: 157.4855546595866
Iteration: 14, Func. Count: 118, Neg. LLF: 157.48537832306428
Iteration: 15, Func. Count: 126, Neg. LLF: 157.48537774540102
Optimization terminated successfully (Exit mode 0)
Current function value: 157.48537774540102
Iterations: 15
Function evaluations: 126
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 161.2651046788978
Iteration: 2, Func. Count: 23, Neg. LLF: 164.77582044505957
Iteration: 3, Func. Count: 33, Neg. LLF: 164.5222370593975
Iteration: 4, Func. Count: 44, Neg. LLF: 159.03538180421538
Iteration: 5, Func. Count: 53, Neg. LLF: 158.810830286611
Iteration: 6, Func. Count: 62, Neg. LLF: 158.6110694200283
Iteration: 7, Func. Count: 71, Neg. LLF: 158.4028518368769
Iteration: 8, Func. Count: 80, Neg. LLF: 157.72395770142805
Iteration: 9, Func. Count: 89, Neg. LLF: 162.71693492285294
Iteration: 10, Func. Count: 100, Neg. LLF: 157.600878246779
Iteration: 11, Func. Count: 109, Neg. LLF: 157.58123209723036
Iteration: 12, Func. Count: 118, Neg. LLF: 157.57079972807298
Iteration: 13, Func. Count: 127, Neg. LLF: 157.55087390558862
Iteration: 14, Func. Count: 136, Neg. LLF: 157.51698824834733
Iteration: 15, Func. Count: 145, Neg. LLF: 157.49257324543171
Iteration: 16, Func. Count: 154, Neg. LLF: 157.48598260304672
Iteration: 17, Func. Count: 163, Neg. LLF: 157.48538463418785
Iteration: 18, Func. Count: 172, Neg. LLF: 157.48537754645938
Iteration: 19, Func. Count: 181, Neg. LLF: 157.4853763561982
Iteration: 20, Func. Count: 190, Neg. LLF: 157.48537702458862
Optimization terminated successfully (Exit mode 0)
Current function value: 157.48537635748426
Iterations: 20
Function evaluations: 200
Gradient evaluations: 20
Iteration: 1, Func. Count: 11, Neg. LLF: 166.36687919405674
Iteration: 2, Func. Count: 25, Neg. LLF: 159.69005184347188
Iteration: 3, Func. Count: 35, Neg. LLF: 162.1726641342721
Iteration: 4, Func. Count: 46, Neg. LLF: 158.8865268324111
Iteration: 5, Func. Count: 56, Neg. LLF: 158.4269969214017
Iteration: 6, Func. Count: 66, Neg. LLF: 158.03279681911994
Iteration: 7, Func. Count: 76, Neg. LLF: 157.80212402413267
Iteration: 8, Func. Count: 86, Neg. LLF: 157.55779464565643
Iteration: 9, Func. Count: 96, Neg. LLF: 157.6158751746654
Iteration: 10, Func. Count: 107, Neg. LLF: 157.54389249607297
Iteration: 11, Func. Count: 117, Neg. LLF: 157.53158945085212
Iteration: 12, Func. Count: 127, Neg. LLF: 157.51367619936835
Iteration: 13, Func. Count: 137, Neg. LLF: 157.49343406445593
Iteration: 14, Func. Count: 147, Neg. LLF: 157.4864848760564
Iteration: 15, Func. Count: 157, Neg. LLF: 157.48541725024913
Iteration: 16, Func. Count: 167, Neg. LLF: 157.48538708366132
Iteration: 17, Func. Count: 177, Neg. LLF: 157.48537816364708
Iteration: 18, Func. Count: 186, Neg. LLF: 157.48537822524258
Optimization terminated successfully (Exit mode 0)
Current function value: 157.48537816364708
Iterations: 18
Function evaluations: 186
Gradient evaluations: 18
Iteration: 1, Func. Count: 12, Neg. LLF: 181.70503882539734
Iteration: 2, Func. Count: 24, Neg. LLF: 158.55023421223996
Iteration: 3, Func. Count: 35, Neg. LLF: 158.80380653824358
Iteration: 4, Func. Count: 47, Neg. LLF: 163.10861996639642
Iteration: 5, Func. Count: 59, Neg. LLF: 157.92137044421
Iteration: 6, Func. Count: 70, Neg. LLF: 159.04298835189158
Iteration: 7, Func. Count: 82, Neg. LLF: 157.59485427936883
Iteration: 8, Func. Count: 93, Neg. LLF: 157.5818827070112
Iteration: 9, Func. Count: 104, Neg. LLF: 157.56838185232024
Iteration: 10, Func. Count: 115, Neg. LLF: 157.5337715338437
Iteration: 11, Func. Count: 126, Neg. LLF: 157.5083527458138
Iteration: 12, Func. Count: 137, Neg. LLF: 157.4891971833571
Iteration: 13, Func. Count: 148, Neg. LLF: 157.48550023510143
Iteration: 14, Func. Count: 159, Neg. LLF: 157.4853847177462
Iteration: 15, Func. Count: 170, Neg. LLF: 157.5654335441876
Iteration: 16, Func. Count: 183, Neg. LLF: 157.4980860241561
Optimization terminated successfully (Exit mode 0)
Current function value: 157.48538345729017
Iterations: 17
Function evaluations: 186
Gradient evaluations: 16
Iteration: 1, Func. Count: 9, Neg. LLF: 156.53564129343508
Iteration: 2, Func. Count: 17, Neg. LLF: 161.84834023376527
Iteration: 3, Func. Count: 26, Neg. LLF: 153.22696822619534
Iteration: 4, Func. Count: 34, Neg. LLF: 153.15478856054045
Iteration: 5, Func. Count: 42, Neg. LLF: 156.68380953825815
Iteration: 6, Func. Count: 53, Neg. LLF: 153.4992191614675
Iteration: 7, Func. Count: 63, Neg. LLF: 5608.70426095087
Iteration: 8, Func. Count: 72, Neg. LLF: 528.7649428293098
Iteration: 9, Func. Count: 81, Neg. LLF: 344.85863347546916
Iteration: 10, Func. Count: 90, Neg. LLF: 154.05313604248124
Iteration: 11, Func. Count: 99, Neg. LLF: 152.47862291299728
Iteration: 12, Func. Count: 108, Neg. LLF: 152.40194819786956
Iteration: 13, Func. Count: 117, Neg. LLF: 152.39252823172617
Iteration: 14, Func. Count: 126, Neg. LLF: 152.38778004320275
Iteration: 15, Func. Count: 134, Neg. LLF: 152.38776018201327
Iteration: 16, Func. Count: 142, Neg. LLF: 152.38775916701476
Iteration: 17, Func. Count: 149, Neg. LLF: 152.38775912817925
Optimization terminated successfully (Exit mode 0)
Current function value: 152.38775916701476
Iterations: 17
Function evaluations: 149
Gradient evaluations: 17
Iteration: 1, Func. Count: 10, Neg. LLF: 177.2125244201057
Iteration: 2, Func. Count: 21, Neg. LLF: 157.81790187262666
Iteration: 3, Func. Count: 30, Neg. LLF: 156.67124758421062
Iteration: 4, Func. Count: 39, Neg. LLF: 165.92628708748956
Iteration: 5, Func. Count: 49, Neg. LLF: 162.2761836158023
Iteration: 6, Func. Count: 62, Neg. LLF: 153.5400723530071
Iteration: 7, Func. Count: 71, Neg. LLF: 157.1547645941216
Iteration: 8, Func. Count: 83, Neg. LLF: 158.77154366728345
Iteration: 9, Func. Count: 94, Neg. LLF: 153.87924886212016
Iteration: 10, Func. Count: 104, Neg. LLF: 153.01151702491325
Iteration: 11, Func. Count: 113, Neg. LLF: 152.44075478910221
Iteration: 12, Func. Count: 122, Neg. LLF: 152.56889766990824
Iteration: 13, Func. Count: 132, Neg. LLF: 152.40695227297664
Iteration: 14, Func. Count: 141, Neg. LLF: 152.38914596062347
Iteration: 15, Func. Count: 150, Neg. LLF: 152.3888258363414
Iteration: 16, Func. Count: 159, Neg. LLF: 152.3885929303911
Iteration: 17, Func. Count: 168, Neg. LLF: 152.3882986342465
Iteration: 18, Func. Count: 177, Neg. LLF: 152.38795602840742
Iteration: 19, Func. Count: 186, Neg. LLF: 152.38778429996412
Iteration: 20, Func. Count: 195, Neg. LLF: 152.38776015687003
Iteration: 21, Func. Count: 204, Neg. LLF: 152.3877591027729
Iteration: 22, Func. Count: 212, Neg. LLF: 152.3877591181298
Optimization terminated successfully (Exit mode 0)
Current function value: 152.3877591027729
Iterations: 22
Function evaluations: 212
Gradient evaluations: 22
Iteration: 1, Func. Count: 11, Neg. LLF: 153.2043074084402
Iteration: 2, Func. Count: 21, Neg. LLF: 153.8126007172501
Iteration: 3, Func. Count: 32, Neg. LLF: 153.37878814714313
Iteration: 4, Func. Count: 44, Neg. LLF: 152.8499330481919
Iteration: 5, Func. Count: 54, Neg. LLF: 229.38719094181184
Iteration: 6, Func. Count: 65, Neg. LLF: 204.7538599185887
Iteration: 7, Func. Count: 76, Neg. LLF: 160.67671544458466
Iteration: 8, Func. Count: 87, Neg. LLF: 169.43081311533638
Iteration: 9, Func. Count: 98, Neg. LLF: 152.47434050619765
Iteration: 10, Func. Count: 109, Neg. LLF: 152.39137109277823
Iteration: 11, Func. Count: 120, Neg. LLF: 152.3715737010626
Iteration: 12, Func. Count: 131, Neg. LLF: 152.3591423029392
Iteration: 13, Func. Count: 141, Neg. LLF: 152.35877673613052
Iteration: 14, Func. Count: 151, Neg. LLF: 152.35877194551233
Iteration: 15, Func. Count: 161, Neg. LLF: 152.35877093299302
Iteration: 16, Func. Count: 170, Neg. LLF: 152.3587708482155
Optimization terminated successfully (Exit mode 0)
Current function value: 152.35877093299302
Iterations: 16
Function evaluations: 170
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 158.5879965502409
Iteration: 2, Func. Count: 23, Neg. LLF: 162.74732420503778
Iteration: 3, Func. Count: 36, Neg. LLF: 156.88975097486195
Iteration: 4, Func. Count: 47, Neg. LLF: 153.29735983283555
Iteration: 5, Func. Count: 58, Neg. LLF: 153.13609715196623
Iteration: 6, Func. Count: 69, Neg. LLF: 153.04476069994058
Iteration: 7, Func. Count: 80, Neg. LLF: 194.67543384599153
Iteration: 8, Func. Count: 93, Neg. LLF: 152.88574788071614
Iteration: 9, Func. Count: 104, Neg. LLF: 154.84612758552794
Iteration: 10, Func. Count: 117, Neg. LLF: 460.6194040894452
Iteration: 11, Func. Count: 129, Neg. LLF: 200.58835851678708
Iteration: 12, Func. Count: 141, Neg. LLF: 154.41522354796584
Iteration: 13, Func. Count: 153, Neg. LLF: 153.12119962056326
Iteration: 14, Func. Count: 165, Neg. LLF: 152.39426763839248
Iteration: 15, Func. Count: 177, Neg. LLF: 152.44262348673297
Iteration: 16, Func. Count: 189, Neg. LLF: 152.35920698833974
Iteration: 17, Func. Count: 200, Neg. LLF: 152.3593829325875
Iteration: 18, Func. Count: 212, Neg. LLF: 152.35877979572876
Iteration: 19, Func. Count: 223, Neg. LLF: 152.35877101323481
Iteration: 20, Func. Count: 233, Neg. LLF: 152.35877101495703
Optimization terminated successfully (Exit mode 0)
Current function value: 152.35877101323481
Iterations: 20
Function evaluations: 233
Gradient evaluations: 20
Iteration: 1, Func. Count: 13, Neg. LLF: 159.40090622767514
Iteration: 2, Func. Count: 26, Neg. LLF: 153.56057221973884
Iteration: 3, Func. Count: 38, Neg. LLF: 153.81869428109073
Iteration: 4, Func. Count: 51, Neg. LLF: 154.96780442498073
Iteration: 5, Func. Count: 66, Neg. LLF: 157.0576578780474
Iteration: 6, Func. Count: 81, Neg. LLF: 152.80738099802352
Iteration: 7, Func. Count: 94, Neg. LLF: 152.04315286276022
Iteration: 8, Func. Count: 106, Neg. LLF: 152.3198069712747
Iteration: 9, Func. Count: 119, Neg. LLF: 151.96165716330594
Iteration: 10, Func. Count: 131, Neg. LLF: 155.40061231216913
Iteration: 11, Func. Count: 144, Neg. LLF: 151.49380504857874
Iteration: 12, Func. Count: 156, Neg. LLF: 151.73215760147147
Iteration: 13, Func. Count: 169, Neg. LLF: 151.46674692908604
Iteration: 14, Func. Count: 182, Neg. LLF: 151.508269493229
Iteration: 15, Func. Count: 195, Neg. LLF: 151.00322568715637
Iteration: 16, Func. Count: 207, Neg. LLF: 150.98337629776174
Iteration: 17, Func. Count: 219, Neg. LLF: 150.9375053935683
Iteration: 18, Func. Count: 231, Neg. LLF: 150.91144677339497
Iteration: 19, Func. Count: 243, Neg. LLF: 150.90920588161939
Iteration: 20, Func. Count: 255, Neg. LLF: 150.9090597019746
Iteration: 21, Func. Count: 267, Neg. LLF: 150.90901820850746
Iteration: 22, Func. Count: 278, Neg. LLF: 150.90901794233676
Optimization terminated successfully (Exit mode 0)
Current function value: 150.90901820850746
Iterations: 22
Function evaluations: 278
Gradient evaluations: 22
Iteration: 1, Func. Count: 10, Neg. LLF: 155.32589051770552
Iteration: 2, Func. Count: 19, Neg. LLF: 163.60886950292755
Iteration: 3, Func. Count: 29, Neg. LLF: 160.07457957067857
Iteration: 4, Func. Count: 42, Neg. LLF: 153.23560096281068
Iteration: 5, Func. Count: 51, Neg. LLF: 153.14991123386523
Iteration: 6, Func. Count: 60, Neg. LLF: 152.77604802095186
Iteration: 7, Func. Count: 69, Neg. LLF: 40179.29603825402
Iteration: 8, Func. Count: 79, Neg. LLF: 177.29111026204
Iteration: 9, Func. Count: 89, Neg. LLF: 153.06438195628795
Iteration: 10, Func. Count: 99, Neg. LLF: 152.40799407718757
Iteration: 11, Func. Count: 109, Neg. LLF: 152.37388455872963
Iteration: 12, Func. Count: 119, Neg. LLF: 152.4599799276684
Iteration: 13, Func. Count: 129, Neg. LLF: 152.357681641003
Iteration: 14, Func. Count: 138, Neg. LLF: 152.35763875521585
Iteration: 15, Func. Count: 147, Neg. LLF: 152.35760322661054
Iteration: 16, Func. Count: 156, Neg. LLF: 152.3575995076874
Iteration: 17, Func. Count: 164, Neg. LLF: 152.35759949637762
Optimization terminated successfully (Exit mode 0)
Current function value: 152.3575995076874
Iterations: 17
Function evaluations: 164
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 162.23153003267475
Iteration: 2, Func. Count: 22, Neg. LLF: 156.6356180838844
Iteration: 3, Func. Count: 32, Neg. LLF: 182.86931026746385
Iteration: 4, Func. Count: 45, Neg. LLF: 185.6972964510688
Iteration: 5, Func. Count: 56, Neg. LLF: 156.2550972293309
Iteration: 6, Func. Count: 69, Neg. LLF: 154.74273123681263
Iteration: 7, Func. Count: 79, Neg. LLF: 154.09878446915593
Iteration: 8, Func. Count: 89, Neg. LLF: 152.93428240314302
Iteration: 9, Func. Count: 99, Neg. LLF: 151.6909435266193
Iteration: 10, Func. Count: 109, Neg. LLF: 159.09751480451126
Iteration: 11, Func. Count: 120, Neg. LLF: 151.13820114077294
Iteration: 12, Func. Count: 130, Neg. LLF: 151.09224618492956
Iteration: 13, Func. Count: 140, Neg. LLF: 151.07102737334392
Iteration: 14, Func. Count: 151, Neg. LLF: 151.16570500121802
Iteration: 15, Func. Count: 162, Neg. LLF: 150.99496487826656
Iteration: 16, Func. Count: 172, Neg. LLF: 150.9947432362838
Iteration: 17, Func. Count: 182, Neg. LLF: 150.99466274506992
Iteration: 18, Func. Count: 192, Neg. LLF: 150.9944936320587
Iteration: 19, Func. Count: 202, Neg. LLF: 150.99443173191133
Iteration: 20, Func. Count: 212, Neg. LLF: 150.99441871215362
Iteration: 21, Func. Count: 222, Neg. LLF: 150.99441811974464
Optimization terminated successfully (Exit mode 0)
Current function value: 150.99441811974464
Iterations: 21
Function evaluations: 222
Gradient evaluations: 21
Iteration: 1, Func. Count: 12, Neg. LLF: 161.27185390119868
Iteration: 2, Func. Count: 27, Neg. LLF: 153.84195642635416
Iteration: 3, Func. Count: 38, Neg. LLF: 153.25301723213556
Iteration: 4, Func. Count: 49, Neg. LLF: 155.80157742721403
Iteration: 5, Func. Count: 63, Neg. LLF: 161.97255742282096
Iteration: 6, Func. Count: 75, Neg. LLF: 152.76756217524738
Iteration: 7, Func. Count: 86, Neg. LLF: 152.78701808729434
Iteration: 8, Func. Count: 98, Neg. LLF: 152.61595890095975
Iteration: 9, Func. Count: 110, Neg. LLF: 152.48390283817668
Iteration: 10, Func. Count: 122, Neg. LLF: 152.45205488964666
Iteration: 11, Func. Count: 134, Neg. LLF: 152.44556153380125
Iteration: 12, Func. Count: 146, Neg. LLF: 152.35324011581088
Iteration: 13, Func. Count: 158, Neg. LLF: 152.33214625318044
Iteration: 14, Func. Count: 169, Neg. LLF: 152.33233075790906
Iteration: 15, Func. Count: 181, Neg. LLF: 152.33115235405197
Iteration: 16, Func. Count: 192, Neg. LLF: 152.33107692350012
Iteration: 17, Func. Count: 203, Neg. LLF: 152.3308817554994
Iteration: 18, Func. Count: 214, Neg. LLF: 152.33069465361538
Iteration: 19, Func. Count: 225, Neg. LLF: 152.3306267119011
Iteration: 20, Func. Count: 236, Neg. LLF: 152.33061755692017
Iteration: 21, Func. Count: 246, Neg. LLF: 152.33061747267993
Optimization terminated successfully (Exit mode 0)
Current function value: 152.33061755692017
Iterations: 21
Function evaluations: 246
Gradient evaluations: 21
Iteration: 1, Func. Count: 13, Neg. LLF: 160.28475943621882
Iteration: 2, Func. Count: 29, Neg. LLF: 153.3345675920575
Iteration: 3, Func. Count: 41, Neg. LLF: 152.82834191279085
Iteration: 4, Func. Count: 54, Neg. LLF: 168.95575604587128
Iteration: 5, Func. Count: 69, Neg. LLF: 152.84532138010925
Iteration: 6, Func. Count: 82, Neg. LLF: 152.57302170322188
Iteration: 7, Func. Count: 94, Neg. LLF: 154.05629617331346
Iteration: 8, Func. Count: 107, Neg. LLF: 152.66282554092805
Iteration: 9, Func. Count: 120, Neg. LLF: 152.6197413554722
Iteration: 10, Func. Count: 133, Neg. LLF: 152.3946593971759
Iteration: 11, Func. Count: 145, Neg. LLF: 152.43145349659306
Iteration: 12, Func. Count: 158, Neg. LLF: 152.42475967593992
Iteration: 13, Func. Count: 171, Neg. LLF: 152.33504646229125
Iteration: 14, Func. Count: 183, Neg. LLF: 152.333157211676
Iteration: 15, Func. Count: 195, Neg. LLF: 152.33257711161846
Iteration: 16, Func. Count: 207, Neg. LLF: 152.33224042655468
Iteration: 17, Func. Count: 219, Neg. LLF: 152.3316749171649
Iteration: 18, Func. Count: 231, Neg. LLF: 152.33094025081928
Iteration: 19, Func. Count: 243, Neg. LLF: 152.3306569733461
Iteration: 20, Func. Count: 255, Neg. LLF: 152.33061887735659
Iteration: 21, Func. Count: 267, Neg. LLF: 152.3306172218212
Iteration: 22, Func. Count: 278, Neg. LLF: 152.33061722559947
Optimization terminated successfully (Exit mode 0)
Current function value: 152.3306172218212
Iterations: 22
Function evaluations: 278
Gradient evaluations: 22
Iteration: 1, Func. Count: 14, Neg. LLF: 152.7869070403117
Iteration: 2, Func. Count: 27, Neg. LLF: 153.1918690849584
Iteration: 3, Func. Count: 42, Neg. LLF: 191.72375471702986
Iteration: 4, Func. Count: 59, Neg. LLF: 169.8835184969235
Iteration: 5, Func. Count: 73, Neg. LLF: 152.33832455892122
Iteration: 6, Func. Count: 87, Neg. LLF: 152.10810837107957
Iteration: 7, Func. Count: 100, Neg. LLF: 152.47421754075884
Iteration: 8, Func. Count: 115, Neg. LLF: 152.10028447909582
Iteration: 9, Func. Count: 129, Neg. LLF: 152.51196312286905
Iteration: 10, Func. Count: 144, Neg. LLF: 151.93069121932496
Iteration: 11, Func. Count: 157, Neg. LLF: 152.2183214995122
Iteration: 12, Func. Count: 171, Neg. LLF: 151.52351534220205
Iteration: 13, Func. Count: 184, Neg. LLF: 151.93046426968442
Iteration: 14, Func. Count: 198, Neg. LLF: 158.55297485457243
Iteration: 15, Func. Count: 212, Neg. LLF: 151.59053900449243
Iteration: 16, Func. Count: 226, Neg. LLF: 151.15344875236937
Iteration: 17, Func. Count: 240, Neg. LLF: 151.10722311563092
Iteration: 18, Func. Count: 254, Neg. LLF: 150.96517097296191
Iteration: 19, Func. Count: 267, Neg. LLF: 150.92491775030774
Iteration: 20, Func. Count: 280, Neg. LLF: 150.88328625543627
Iteration: 21, Func. Count: 293, Neg. LLF: 150.8817728121279
Iteration: 22, Func. Count: 306, Neg. LLF: 150.8812379957799
Iteration: 23, Func. Count: 319, Neg. LLF: 150.88107502923867
Iteration: 24, Func. Count: 332, Neg. LLF: 150.88100258638664
Iteration: 25, Func. Count: 345, Neg. LLF: 150.88098325912773
Iteration: 26, Func. Count: 357, Neg. LLF: 150.8809829901285
Optimization terminated successfully (Exit mode 0)
Current function value: 150.88098325912773
Iterations: 26
Function evaluations: 357
Gradient evaluations: 26
Iteration: 1, Func. Count: 11, Neg. LLF: 154.68838680353474
Iteration: 2, Func. Count: 21, Neg. LLF: 163.6821702182102
Iteration: 3, Func. Count: 32, Neg. LLF: 159.2193672961135
Iteration: 4, Func. Count: 45, Neg. LLF: 153.24180360230767
Iteration: 5, Func. Count: 55, Neg. LLF: 153.1375861635315
Iteration: 6, Func. Count: 65, Neg. LLF: 153.39305745905475
Iteration: 7, Func. Count: 76, Neg. LLF: 226023.34273356435
Iteration: 8, Func. Count: 87, Neg. LLF: 40647.283254519985
Iteration: 9, Func. Count: 98, Neg. LLF: 279.49815037213716
Iteration: 10, Func. Count: 109, Neg. LLF: 153.48929548120512
Iteration: 11, Func. Count: 120, Neg. LLF: 152.40341392795264
Iteration: 12, Func. Count: 130, Neg. LLF: 152.39926132394154
Iteration: 13, Func. Count: 141, Neg. LLF: 152.65690456992718
Iteration: 14, Func. Count: 153, Neg. LLF: 152.34022789037132
Iteration: 15, Func. Count: 163, Neg. LLF: 152.33971403810548
Iteration: 16, Func. Count: 173, Neg. LLF: 152.33974121564296
Iteration: 17, Func. Count: 184, Neg. LLF: 152.33970636027405
Iteration: 18, Func. Count: 194, Neg. LLF: 152.33970470723986
Iteration: 19, Func. Count: 203, Neg. LLF: 152.3397046671056
Optimization terminated successfully (Exit mode 0)
Current function value: 152.33970470723986
Iterations: 19
Function evaluations: 203
Gradient evaluations: 19
Iteration: 1, Func. Count: 12, Neg. LLF: 162.220738316503
Iteration: 2, Func. Count: 24, Neg. LLF: 156.57938481025732
Iteration: 3, Func. Count: 35, Neg. LLF: 182.42436456321056
Iteration: 4, Func. Count: 49, Neg. LLF: 183.3199746658627
Iteration: 5, Func. Count: 61, Neg. LLF: 156.5830278295196
Iteration: 6, Func. Count: 74, Neg. LLF: 154.92724594308908
Iteration: 7, Func. Count: 85, Neg. LLF: 154.20425845556036
Iteration: 8, Func. Count: 96, Neg. LLF: 152.99475152457066
Iteration: 9, Func. Count: 107, Neg. LLF: 151.67341827645478
Iteration: 10, Func. Count: 118, Neg. LLF: 182.9111769972958
Iteration: 11, Func. Count: 130, Neg. LLF: 183.38157833037775
Iteration: 12, Func. Count: 142, Neg. LLF: 155.53659661856767
Iteration: 13, Func. Count: 154, Neg. LLF: 151.03617519517286
Iteration: 14, Func. Count: 165, Neg. LLF: 151.04009455341196
Iteration: 15, Func. Count: 177, Neg. LLF: 151.00263439242204
Iteration: 16, Func. Count: 189, Neg. LLF: 150.99452729115632
Iteration: 17, Func. Count: 200, Neg. LLF: 150.99446641757208
Iteration: 18, Func. Count: 211, Neg. LLF: 150.994454813442
Iteration: 19, Func. Count: 222, Neg. LLF: 150.9944213940877
Iteration: 20, Func. Count: 233, Neg. LLF: 150.9944183636482
Iteration: 21, Func. Count: 243, Neg. LLF: 150.9944182669169
Optimization terminated successfully (Exit mode 0)
Current function value: 150.9944183636482
Iterations: 21
Function evaluations: 243
Gradient evaluations: 21
Iteration: 1, Func. Count: 13, Neg. LLF: 161.27487497573642
Iteration: 2, Func. Count: 29, Neg. LLF: 153.84377329167484
Iteration: 3, Func. Count: 41, Neg. LLF: 153.24717910639077
Iteration: 4, Func. Count: 53, Neg. LLF: 155.75895291613838
Iteration: 5, Func. Count: 68, Neg. LLF: 161.65658262605504
Iteration: 6, Func. Count: 81, Neg. LLF: 152.7664968159039
Iteration: 7, Func. Count: 93, Neg. LLF: 152.78527049212923
Iteration: 8, Func. Count: 106, Neg. LLF: 152.61607227611046
Iteration: 9, Func. Count: 119, Neg. LLF: 152.48458691012866
Iteration: 10, Func. Count: 132, Neg. LLF: 152.47172767039137
Iteration: 11, Func. Count: 145, Neg. LLF: 152.4467251225008
Iteration: 12, Func. Count: 158, Neg. LLF: 152.36220752744717
Iteration: 13, Func. Count: 171, Neg. LLF: 152.3330181516568
Iteration: 14, Func. Count: 183, Neg. LLF: 152.33785865269826
Iteration: 15, Func. Count: 196, Neg. LLF: 152.33131619074092
Iteration: 16, Func. Count: 208, Neg. LLF: 152.33121274659092
Iteration: 17, Func. Count: 220, Neg. LLF: 152.3310544795806
Iteration: 18, Func. Count: 232, Neg. LLF: 152.33076093088795
Iteration: 19, Func. Count: 244, Neg. LLF: 152.33064242311457
Iteration: 20, Func. Count: 256, Neg. LLF: 152.3306184989572
Iteration: 21, Func. Count: 268, Neg. LLF: 152.33061726660378
Iteration: 22, Func. Count: 279, Neg. LLF: 152.33061718234248
Optimization terminated successfully (Exit mode 0)
Current function value: 152.33061726660378
Iterations: 22
Function evaluations: 279
Gradient evaluations: 22
Iteration: 1, Func. Count: 14, Neg. LLF: 159.54968163670137
Iteration: 2, Func. Count: 31, Neg. LLF: 153.53637945698463
Iteration: 3, Func. Count: 44, Neg. LLF: 152.88203230264205
Iteration: 4, Func. Count: 57, Neg. LLF: 167.97808908445757
Iteration: 5, Func. Count: 74, Neg. LLF: 155.32359347125686
Iteration: 6, Func. Count: 88, Neg. LLF: 152.73130610743172
Iteration: 7, Func. Count: 101, Neg. LLF: 152.49096990490722
Iteration: 8, Func. Count: 114, Neg. LLF: 152.61715117630106
Iteration: 9, Func. Count: 129, Neg. LLF: 153.34027787689968
Iteration: 10, Func. Count: 143, Neg. LLF: 152.43540203160927
Iteration: 11, Func. Count: 157, Neg. LLF: 152.35205409931223
Iteration: 12, Func. Count: 170, Neg. LLF: 152.33682513307693
Iteration: 13, Func. Count: 183, Neg. LLF: 152.33194159188932
Iteration: 14, Func. Count: 196, Neg. LLF: 152.3309520959946
Iteration: 15, Func. Count: 209, Neg. LLF: 152.33066223966765
Iteration: 16, Func. Count: 222, Neg. LLF: 152.33065260937053
Iteration: 17, Func. Count: 235, Neg. LLF: 152.3306465651194
Iteration: 18, Func. Count: 248, Neg. LLF: 152.3306333599323
Iteration: 19, Func. Count: 261, Neg. LLF: 152.3306224442374
Iteration: 20, Func. Count: 274, Neg. LLF: 152.33061779102115
Iteration: 21, Func. Count: 286, Neg. LLF: 152.33061779476026
Optimization terminated successfully (Exit mode 0)
Current function value: 152.33061779102115
Iterations: 21
Function evaluations: 286
Gradient evaluations: 21
Iteration: 1, Func. Count: 15, Neg. LLF: 152.70877440759378
Iteration: 2, Func. Count: 29, Neg. LLF: 152.96753953231263
Iteration: 3, Func. Count: 45, Neg. LLF: 186.71746617185931
Iteration: 4, Func. Count: 64, Neg. LLF: 169.92223862176056
Iteration: 5, Func. Count: 79, Neg. LLF: 152.09764885850342
Iteration: 6, Func. Count: 93, Neg. LLF: 152.19015408787266
Iteration: 7, Func. Count: 108, Neg. LLF: 152.0172711218653
Iteration: 8, Func. Count: 123, Neg. LLF: 152.72121603219446
Iteration: 9, Func. Count: 139, Neg. LLF: 153.09105885117762
Iteration: 10, Func. Count: 155, Neg. LLF: 151.86063728446544
Iteration: 11, Func. Count: 169, Neg. LLF: 151.68144371764416
Iteration: 12, Func. Count: 183, Neg. LLF: 151.12055774989247
Iteration: 13, Func. Count: 197, Neg. LLF: 151.20064875700396
Iteration: 14, Func. Count: 212, Neg. LLF: 150.99135294698516
Iteration: 15, Func. Count: 227, Neg. LLF: 151.0669219160799
Iteration: 16, Func. Count: 242, Neg. LLF: 150.88132222824532
Iteration: 17, Func. Count: 256, Neg. LLF: 150.88099132014514
Iteration: 18, Func. Count: 270, Neg. LLF: 150.88098249200354
Iteration: 19, Func. Count: 283, Neg. LLF: 150.88098222299558
Optimization terminated successfully (Exit mode 0)
Current function value: 150.88098249200354
Iterations: 19
Function evaluations: 283
Gradient evaluations: 19
Iteration: 1, Func. Count: 8, Neg. LLF: 153.88331669551144
Iteration: 2, Func. Count: 15, Neg. LLF: 165.74945684407297
Iteration: 3, Func. Count: 23, Neg. LLF: 188.9099267553709
Iteration: 4, Func. Count: 33, Neg. LLF: 153.12069602348794
Iteration: 5, Func. Count: 41, Neg. LLF: 152.03428765283897
Iteration: 6, Func. Count: 48, Neg. LLF: 153.19542486338668
Iteration: 7, Func. Count: 56, Neg. LLF: 149.0986223784889
Iteration: 8, Func. Count: 63, Neg. LLF: 259.4841858412093
Iteration: 9, Func. Count: 71, Neg. LLF: 572.4273189967455
Iteration: 10, Func. Count: 79, Neg. LLF: 615.5023402147351
Iteration: 11, Func. Count: 87, Neg. LLF: 151.2148236699633
Iteration: 12, Func. Count: 95, Neg. LLF: 147.50251603772645
Iteration: 13, Func. Count: 102, Neg. LLF: 147.36609080098677
Iteration: 14, Func. Count: 109, Neg. LLF: 147.3797016043799
Iteration: 15, Func. Count: 117, Neg. LLF: 147.3550400116978
Iteration: 16, Func. Count: 124, Neg. LLF: 147.35441117707308
Iteration: 17, Func. Count: 131, Neg. LLF: 147.35427021516585
Iteration: 18, Func. Count: 138, Neg. LLF: 147.35426894852102
Iteration: 19, Func. Count: 144, Neg. LLF: 147.3542688132854
Optimization terminated successfully (Exit mode 0)
Current function value: 147.35426894852102
Iterations: 19
Function evaluations: 144
Gradient evaluations: 19
Iteration: 1, Func. Count: 9, Neg. LLF: 154.49643606443493
Iteration: 2, Func. Count: 17, Neg. LLF: 156.09825947090292
Iteration: 3, Func. Count: 26, Neg. LLF: 191.23241216351013
Iteration: 4, Func. Count: 38, Neg. LLF: 165.8312448773345
Iteration: 5, Func. Count: 50, Neg. LLF: 152.18157309725137
Iteration: 6, Func. Count: 58, Neg. LLF: 151.05655959198637
Iteration: 7, Func. Count: 66, Neg. LLF: 797.0691985720488
Iteration: 8, Func. Count: 75, Neg. LLF: 444.99296321639457
Iteration: 9, Func. Count: 84, Neg. LLF: 374.07848863415535
Iteration: 10, Func. Count: 93, Neg. LLF: 301.3757163626801
Iteration: 11, Func. Count: 102, Neg. LLF: 311.55550137944766
Iteration: 12, Func. Count: 111, Neg. LLF: 275.7798563346915
Iteration: 13, Func. Count: 120, Neg. LLF: 270.20098815140034
Iteration: 14, Func. Count: 129, Neg. LLF: 236.47253242283392
Iteration: 15, Func. Count: 138, Neg. LLF: 259.0519836007032
Iteration: 16, Func. Count: 147, Neg. LLF: 268.72672883258974
Iteration: 17, Func. Count: 156, Neg. LLF: 148.0960656108713
Iteration: 18, Func. Count: 165, Neg. LLF: 147.36931223359107
Iteration: 19, Func. Count: 174, Neg. LLF: 147.33430999012876
Iteration: 20, Func. Count: 182, Neg. LLF: 147.3337792056747
Iteration: 21, Func. Count: 190, Neg. LLF: 147.33355667348363
Iteration: 22, Func. Count: 198, Neg. LLF: 147.33348136472145
Iteration: 23, Func. Count: 206, Neg. LLF: 147.3334685947307
Iteration: 24, Func. Count: 214, Neg. LLF: 147.33346497462784
Iteration: 25, Func. Count: 221, Neg. LLF: 147.33346483926698
Optimization terminated successfully (Exit mode 0)
Current function value: 147.33346497462784
Iterations: 25
Function evaluations: 221
Gradient evaluations: 25
Iteration: 1, Func. Count: 10, Neg. LLF: 154.5895818891102
Iteration: 2, Func. Count: 19, Neg. LLF: 153.22151515730727
Iteration: 3, Func. Count: 28, Neg. LLF: 195.3122615408177
Iteration: 4, Func. Count: 41, Neg. LLF: 163.90644954548947
Iteration: 5, Func. Count: 53, Neg. LLF: 152.32939455225548
Iteration: 6, Func. Count: 62, Neg. LLF: 151.8999388610114
Iteration: 7, Func. Count: 71, Neg. LLF: 151.39705841917694
Iteration: 8, Func. Count: 80, Neg. LLF: 150.73184628728546
Iteration: 9, Func. Count: 89, Neg. LLF: 178.26402694957685
Iteration: 10, Func. Count: 100, Neg. LLF: 172.48597501004497
Iteration: 11, Func. Count: 112, Neg. LLF: 147.7583118588176
Iteration: 12, Func. Count: 121, Neg. LLF: 147.4934972213213
Iteration: 13, Func. Count: 130, Neg. LLF: 147.43396367639878
Iteration: 14, Func. Count: 139, Neg. LLF: 147.49565090531382
Iteration: 15, Func. Count: 149, Neg. LLF: 147.337548470244
Iteration: 16, Func. Count: 158, Neg. LLF: 147.33466640844708
Iteration: 17, Func. Count: 167, Neg. LLF: 147.33408466960924
Iteration: 18, Func. Count: 176, Neg. LLF: 147.33378892826877
Iteration: 19, Func. Count: 185, Neg. LLF: 147.3336852231591
Iteration: 20, Func. Count: 194, Neg. LLF: 147.33358119271895
Iteration: 21, Func. Count: 203, Neg. LLF: 147.33354175613087
Iteration: 22, Func. Count: 212, Neg. LLF: 147.33349410453067
Iteration: 23, Func. Count: 221, Neg. LLF: 147.33347063503126
Iteration: 24, Func. Count: 230, Neg. LLF: 147.33346505667475
Iteration: 25, Func. Count: 238, Neg. LLF: 147.33346593912336
Optimization terminated successfully (Exit mode 0)
Current function value: 147.33346505667475
Iterations: 25
Function evaluations: 238
Gradient evaluations: 25
Iteration: 1, Func. Count: 11, Neg. LLF: 154.73239422239376
Iteration: 2, Func. Count: 21, Neg. LLF: 153.094571321652
Iteration: 3, Func. Count: 31, Neg. LLF: 194.44526366524627
Iteration: 4, Func. Count: 45, Neg. LLF: 163.1655660866286
Iteration: 5, Func. Count: 59, Neg. LLF: 152.2378986059495
Iteration: 6, Func. Count: 69, Neg. LLF: 151.9486675141758
Iteration: 7, Func. Count: 79, Neg. LLF: 150.62366794834364
Iteration: 8, Func. Count: 89, Neg. LLF: 332.0762840100505
Iteration: 9, Func. Count: 100, Neg. LLF: 267.8308093057634
Iteration: 10, Func. Count: 111, Neg. LLF: 1284.6052189756924
Iteration: 11, Func. Count: 122, Neg. LLF: 623.0341951622295
Iteration: 12, Func. Count: 133, Neg. LLF: 329.09139905971523
Iteration: 13, Func. Count: 144, Neg. LLF: 315.6973855504314
Iteration: 14, Func. Count: 155, Neg. LLF: 191.01509674059363
Iteration: 15, Func. Count: 166, Neg. LLF: 260.8033024943327
Iteration: 16, Func. Count: 177, Neg. LLF: 226.37908973873763
Iteration: 17, Func. Count: 188, Neg. LLF: 147.82488638634663
Iteration: 18, Func. Count: 199, Neg. LLF: 147.43644052728635
Iteration: 19, Func. Count: 210, Neg. LLF: 147.33601076320133
Iteration: 20, Func. Count: 220, Neg. LLF: 147.33381707637645
Iteration: 21, Func. Count: 230, Neg. LLF: 147.33355151675764
Iteration: 22, Func. Count: 240, Neg. LLF: 147.3334890927753
Iteration: 23, Func. Count: 250, Neg. LLF: 147.33346666838293
Iteration: 24, Func. Count: 260, Neg. LLF: 147.33346569808003
Optimization terminated successfully (Exit mode 0)
Current function value: 147.33346569808003
Iterations: 24
Function evaluations: 260
Gradient evaluations: 24
Iteration: 1, Func. Count: 12, Neg. LLF: 154.87852870610956
Iteration: 2, Func. Count: 23, Neg. LLF: 154.47189856189303
Iteration: 3, Func. Count: 35, Neg. LLF: 190.18594456940326
Iteration: 4, Func. Count: 50, Neg. LLF: 165.7661483063627
Iteration: 5, Func. Count: 65, Neg. LLF: 152.20290008626247
Iteration: 6, Func. Count: 76, Neg. LLF: 151.06973602671954
Iteration: 7, Func. Count: 87, Neg. LLF: 800.2285546781555
Iteration: 8, Func. Count: 99, Neg. LLF: 450.72830847723264
Iteration: 9, Func. Count: 111, Neg. LLF: 378.21581960350653
Iteration: 10, Func. Count: 123, Neg. LLF: 302.42139345089845
Iteration: 11, Func. Count: 135, Neg. LLF: 312.96147040161736
Iteration: 12, Func. Count: 147, Neg. LLF: 276.9619111557594
Iteration: 13, Func. Count: 159, Neg. LLF: 273.6323962501308
Iteration: 14, Func. Count: 171, Neg. LLF: 232.4251744191128
Iteration: 15, Func. Count: 183, Neg. LLF: 253.82075482792413
Iteration: 16, Func. Count: 195, Neg. LLF: 199.0147201350174
Iteration: 17, Func. Count: 207, Neg. LLF: 147.450247040147
Iteration: 18, Func. Count: 219, Neg. LLF: 147.36293225423924
Iteration: 19, Func. Count: 231, Neg. LLF: 147.33482842045478
Iteration: 20, Func. Count: 242, Neg. LLF: 147.33391059937603
Iteration: 21, Func. Count: 253, Neg. LLF: 147.3335873587796
Iteration: 22, Func. Count: 264, Neg. LLF: 147.33347097405832
Iteration: 23, Func. Count: 275, Neg. LLF: 147.3334657131875
Iteration: 24, Func. Count: 286, Neg. LLF: 147.3334648088921
Optimization terminated successfully (Exit mode 0)
Current function value: 147.3334648088921
Iterations: 24
Function evaluations: 286
Gradient evaluations: 24
Iteration: 1, Func. Count: 9, Neg. LLF: 156.37839794789528
Iteration: 2, Func. Count: 17, Neg. LLF: 154.7054481919006
Iteration: 3, Func. Count: 25, Neg. LLF: 191.11707401293393
Iteration: 4, Func. Count: 37, Neg. LLF: 179.0930375089598
Iteration: 5, Func. Count: 47, Neg. LLF: 152.52043559161788
Iteration: 6, Func. Count: 55, Neg. LLF: 152.20994328341487
Iteration: 7, Func. Count: 63, Neg. LLF: 180.01507258404348
Iteration: 8, Func. Count: 72, Neg. LLF: 151.26516191761297
Iteration: 9, Func. Count: 80, Neg. LLF: 147.49963610339088
Iteration: 10, Func. Count: 88, Neg. LLF: 148.30809815595205
Iteration: 11, Func. Count: 97, Neg. LLF: 147.38867548042973
Iteration: 12, Func. Count: 105, Neg. LLF: 147.34799590690287
Iteration: 13, Func. Count: 113, Neg. LLF: 147.34575222902953
Iteration: 14, Func. Count: 121, Neg. LLF: 147.34195750924263
Iteration: 15, Func. Count: 129, Neg. LLF: 147.3418196594569
Iteration: 16, Func. Count: 137, Neg. LLF: 147.34168816026622
Iteration: 17, Func. Count: 145, Neg. LLF: 147.34168689832123
Iteration: 18, Func. Count: 152, Neg. LLF: 147.34168696158525
Optimization terminated successfully (Exit mode 0)
Current function value: 147.34168689832123
Iterations: 18
Function evaluations: 152
Gradient evaluations: 18
Iteration: 1, Func. Count: 10, Neg. LLF: 155.56518207097736
Iteration: 2, Func. Count: 19, Neg. LLF: 154.8836511501232
Iteration: 3, Func. Count: 29, Neg. LLF: 188.82188107688228
Iteration: 4, Func. Count: 42, Neg. LLF: 173.00031196824546
Iteration: 5, Func. Count: 54, Neg. LLF: 152.21765780764875
Iteration: 6, Func. Count: 63, Neg. LLF: 150.92528582879135
Iteration: 7, Func. Count: 72, Neg. LLF: 2502.174377611905
Iteration: 8, Func. Count: 82, Neg. LLF: 567.6812115907287
Iteration: 9, Func. Count: 92, Neg. LLF: 331.57976753717355
Iteration: 10, Func. Count: 102, Neg. LLF: 258.7275498440906
Iteration: 11, Func. Count: 112, Neg. LLF: 332.59275343343575
Iteration: 12, Func. Count: 122, Neg. LLF: 259.26711748969825
Iteration: 13, Func. Count: 132, Neg. LLF: 354.50743549711444
Iteration: 14, Func. Count: 142, Neg. LLF: 225.0101001003835
Iteration: 15, Func. Count: 152, Neg. LLF: 240.05856841777987
Iteration: 16, Func. Count: 162, Neg. LLF: 148.31612472332804
Iteration: 17, Func. Count: 172, Neg. LLF: 147.3517415960386
Iteration: 18, Func. Count: 181, Neg. LLF: 147.33544137467
Iteration: 19, Func. Count: 190, Neg. LLF: 147.34034822303795
Iteration: 20, Func. Count: 200, Neg. LLF: 147.325145672314
Iteration: 21, Func. Count: 209, Neg. LLF: 147.32505404839907
Iteration: 22, Func. Count: 218, Neg. LLF: 147.32500509133476
Iteration: 23, Func. Count: 227, Neg. LLF: 147.3249950274265
Iteration: 24, Func. Count: 236, Neg. LLF: 147.3249924742835
Iteration: 25, Func. Count: 245, Neg. LLF: 147.3249916577435
Optimization terminated successfully (Exit mode 0)
Current function value: 147.3249916577435
Iterations: 25
Function evaluations: 245
Gradient evaluations: 25
Iteration: 1, Func. Count: 11, Neg. LLF: 155.27711290427578
Iteration: 2, Func. Count: 21, Neg. LLF: 154.79608670366744
Iteration: 3, Func. Count: 32, Neg. LLF: 188.86878349378173
Iteration: 4, Func. Count: 46, Neg. LLF: 159.70220509147524
Iteration: 5, Func. Count: 60, Neg. LLF: 152.2514368412464
Iteration: 6, Func. Count: 70, Neg. LLF: 151.1213276564733
Iteration: 7, Func. Count: 80, Neg. LLF: 748.1668929719087
Iteration: 8, Func. Count: 91, Neg. LLF: 440.95726067031967
Iteration: 9, Func. Count: 102, Neg. LLF: 363.2127542608164
Iteration: 10, Func. Count: 113, Neg. LLF: 291.7036456680173
Iteration: 11, Func. Count: 124, Neg. LLF: 317.13096201594794
Iteration: 12, Func. Count: 135, Neg. LLF: 258.34833689306424
Iteration: 13, Func. Count: 146, Neg. LLF: 297.8942699557761
Iteration: 14, Func. Count: 157, Neg. LLF: 248.88453170727092
Iteration: 15, Func. Count: 168, Neg. LLF: 234.7829525963321
Iteration: 16, Func. Count: 179, Neg. LLF: 149.31421703083936
Iteration: 17, Func. Count: 190, Neg. LLF: 147.54894169978397
Iteration: 18, Func. Count: 201, Neg. LLF: 147.34809189195005
Iteration: 19, Func. Count: 211, Neg. LLF: 147.32683439401592
Iteration: 20, Func. Count: 221, Neg. LLF: 147.32577465226768
Iteration: 21, Func. Count: 231, Neg. LLF: 147.3252115391475
Iteration: 22, Func. Count: 241, Neg. LLF: 147.32507659413528
Iteration: 23, Func. Count: 251, Neg. LLF: 147.3250092054381
Iteration: 24, Func. Count: 261, Neg. LLF: 147.32499639741366
Iteration: 25, Func. Count: 271, Neg. LLF: 147.32499242523966
Iteration: 26, Func. Count: 281, Neg. LLF: 147.3249916148456
Optimization terminated successfully (Exit mode 0)
Current function value: 147.3249916148456
Iterations: 26
Function evaluations: 281
Gradient evaluations: 26
Iteration: 1, Func. Count: 12, Neg. LLF: 155.2676159462351
Iteration: 2, Func. Count: 23, Neg. LLF: 154.4138780993076
Iteration: 3, Func. Count: 35, Neg. LLF: 189.1718443110827
Iteration: 4, Func. Count: 50, Neg. LLF: 177.14539151043766
Iteration: 5, Func. Count: 64, Neg. LLF: 152.24464269806575
Iteration: 6, Func. Count: 75, Neg. LLF: 151.07828714602405
Iteration: 7, Func. Count: 86, Neg. LLF: 474.01912905640245
Iteration: 8, Func. Count: 98, Neg. LLF: 378.62943815505577
Iteration: 9, Func. Count: 110, Neg. LLF: 340.51477912361406
Iteration: 10, Func. Count: 122, Neg. LLF: 300.2967639349608
Iteration: 11, Func. Count: 134, Neg. LLF: 292.8604271787161
Iteration: 12, Func. Count: 146, Neg. LLF: 273.72785877916607
Iteration: 13, Func. Count: 158, Neg. LLF: 257.7220500759398
Iteration: 14, Func. Count: 170, Neg. LLF: 236.0937778716368
Iteration: 15, Func. Count: 182, Neg. LLF: 262.45823612831276
Iteration: 16, Func. Count: 194, Neg. LLF: 148.75727815616347
Iteration: 17, Func. Count: 206, Neg. LLF: 147.5277401246333
Iteration: 18, Func. Count: 218, Neg. LLF: 147.35918600411694
Iteration: 19, Func. Count: 230, Neg. LLF: 147.32520040161518
Iteration: 20, Func. Count: 241, Neg. LLF: 147.3250843224266
Iteration: 21, Func. Count: 252, Neg. LLF: 147.32502047717213
Iteration: 22, Func. Count: 263, Neg. LLF: 147.32500466539332
Iteration: 23, Func. Count: 274, Neg. LLF: 147.32499351765634
Iteration: 24, Func. Count: 285, Neg. LLF: 147.32499175389873
Iteration: 25, Func. Count: 295, Neg. LLF: 147.3249920991845
Optimization terminated successfully (Exit mode 0)
Current function value: 147.32499175389873
Iterations: 25
Function evaluations: 295
Gradient evaluations: 25
Iteration: 1, Func. Count: 13, Neg. LLF: 155.33506873376817
Iteration: 2, Func. Count: 25, Neg. LLF: 154.86383926368927
Iteration: 3, Func. Count: 38, Neg. LLF: 189.795321158816
Iteration: 4, Func. Count: 54, Neg. LLF: 152.50204026202957
Iteration: 5, Func. Count: 67, Neg. LLF: 149.34352445381563
Iteration: 6, Func. Count: 79, Neg. LLF: 597.9975358610617
Iteration: 7, Func. Count: 92, Neg. LLF: 211.30941731529086
Iteration: 8, Func. Count: 105, Neg. LLF: 232.23899223479782
Iteration: 9, Func. Count: 118, Neg. LLF: 206.50564174733498
Iteration: 10, Func. Count: 131, Neg. LLF: 230.06518302585738
Iteration: 11, Func. Count: 144, Neg. LLF: 149.55010906590744
Iteration: 12, Func. Count: 157, Neg. LLF: 148.79277860071912
Iteration: 13, Func. Count: 170, Neg. LLF: 147.33375129725496
Iteration: 14, Func. Count: 182, Neg. LLF: 147.32570791641777
Iteration: 15, Func. Count: 194, Neg. LLF: 147.32511364443133
Iteration: 16, Func. Count: 206, Neg. LLF: 147.32499562258448
Iteration: 17, Func. Count: 218, Neg. LLF: 147.32499165324825
Iteration: 18, Func. Count: 229, Neg. LLF: 147.32499159303129
Optimization terminated successfully (Exit mode 0)
Current function value: 147.32499165324825
Iterations: 18
Function evaluations: 229
Gradient evaluations: 18
Iteration: 1, Func. Count: 10, Neg. LLF: 155.16602750287583
Iteration: 2, Func. Count: 19, Neg. LLF: 162.42034610112427
Iteration: 3, Func. Count: 29, Neg. LLF: 161.77615009148533
Iteration: 4, Func. Count: 41, Neg. LLF: 161.0209213371436
Iteration: 5, Func. Count: 52, Neg. LLF: 154.87304961065735
Iteration: 6, Func. Count: 62, Neg. LLF: 153.4988815844929
Iteration: 7, Func. Count: 71, Neg. LLF: 153.34495791740903
Iteration: 8, Func. Count: 81, Neg. LLF: 152.757256575674
Iteration: 9, Func. Count: 90, Neg. LLF: 152.45936349413083
Iteration: 10, Func. Count: 99, Neg. LLF: 152.11726829232083
Iteration: 11, Func. Count: 108, Neg. LLF: 153.31489470165053
Iteration: 12, Func. Count: 119, Neg. LLF: 403.5647743999505
Iteration: 13, Func. Count: 129, Neg. LLF: 157.42993151244784
Iteration: 14, Func. Count: 139, Neg. LLF: 151.81750753966577
Iteration: 15, Func. Count: 149, Neg. LLF: 151.7059923332797
Iteration: 16, Func. Count: 158, Neg. LLF: 151.69834707989511
Iteration: 17, Func. Count: 167, Neg. LLF: 151.69751860382107
Iteration: 18, Func. Count: 176, Neg. LLF: 151.69745145950142
Iteration: 19, Func. Count: 185, Neg. LLF: 151.6974439988885
Iteration: 20, Func. Count: 193, Neg. LLF: 151.6974439599314
Optimization terminated successfully (Exit mode 0)
Current function value: 151.6974439988885
Iterations: 20
Function evaluations: 193
Gradient evaluations: 20
Iteration: 1, Func. Count: 11, Neg. LLF: 155.67017467265916
Iteration: 2, Func. Count: 21, Neg. LLF: 154.7087738608315
Iteration: 3, Func. Count: 32, Neg. LLF: 188.64471005471668
Iteration: 4, Func. Count: 46, Neg. LLF: 162.5863416485997
Iteration: 5, Func. Count: 60, Neg. LLF: 152.20890774492108
Iteration: 6, Func. Count: 70, Neg. LLF: 151.03085527248413
Iteration: 7, Func. Count: 80, Neg. LLF: 783.5033217136265
Iteration: 8, Func. Count: 91, Neg. LLF: 437.42359658278235
Iteration: 9, Func. Count: 102, Neg. LLF: 360.68226739815174
Iteration: 10, Func. Count: 113, Neg. LLF: 290.4592987102581
Iteration: 11, Func. Count: 124, Neg. LLF: 296.1865153486464
Iteration: 12, Func. Count: 135, Neg. LLF: 270.5626265566635
Iteration: 13, Func. Count: 146, Neg. LLF: 266.0861108187633
Iteration: 14, Func. Count: 157, Neg. LLF: 228.24748151399663
Iteration: 15, Func. Count: 168, Neg. LLF: 263.59229708994116
Iteration: 16, Func. Count: 179, Neg. LLF: 149.46806373091582
Iteration: 17, Func. Count: 190, Neg. LLF: 148.57493259624422
Iteration: 18, Func. Count: 201, Neg. LLF: 147.3679331116494
Iteration: 19, Func. Count: 212, Neg. LLF: 147.32563414764647
Iteration: 20, Func. Count: 222, Neg. LLF: 147.32529446180658
Iteration: 21, Func. Count: 232, Neg. LLF: 147.3250579920469
Iteration: 22, Func. Count: 242, Neg. LLF: 147.32500875360194
Iteration: 23, Func. Count: 252, Neg. LLF: 147.3249944867406
Iteration: 24, Func. Count: 262, Neg. LLF: 147.32499226146777
Iteration: 25, Func. Count: 272, Neg. LLF: 147.32499159861212
Optimization terminated successfully (Exit mode 0)
Current function value: 147.32499159861212
Iterations: 25
Function evaluations: 272
Gradient evaluations: 25
Iteration: 1, Func. Count: 12, Neg. LLF: 155.5785999312347
Iteration: 2, Func. Count: 23, Neg. LLF: 153.84483350132055
Iteration: 3, Func. Count: 34, Neg. LLF: 194.74972442552192
Iteration: 4, Func. Count: 49, Neg. LLF: 166.13120536582767
Iteration: 5, Func. Count: 63, Neg. LLF: 160.13504547375197
Iteration: 6, Func. Count: 75, Neg. LLF: 152.53974946918962
Iteration: 7, Func. Count: 86, Neg. LLF: 152.05900052503574
Iteration: 8, Func. Count: 97, Neg. LLF: 151.6546374566958
Iteration: 9, Func. Count: 108, Neg. LLF: 150.1470407764257
Iteration: 10, Func. Count: 119, Neg. LLF: 238.53982798433444
Iteration: 11, Func. Count: 131, Neg. LLF: 969.5898958895372
Iteration: 12, Func. Count: 143, Neg. LLF: 247.64034423514104
Iteration: 13, Func. Count: 155, Neg. LLF: 248.5671297330474
Iteration: 14, Func. Count: 167, Neg. LLF: 207.41453388524
Iteration: 15, Func. Count: 179, Neg. LLF: 244.05634414420135
Iteration: 16, Func. Count: 191, Neg. LLF: 257.8970234108676
Iteration: 17, Func. Count: 203, Neg. LLF: 171.44408952611818
Iteration: 18, Func. Count: 215, Neg. LLF: 148.7964929827797
Iteration: 19, Func. Count: 227, Neg. LLF: 147.34890296852996
Iteration: 20, Func. Count: 238, Neg. LLF: 147.3390979999628
Iteration: 21, Func. Count: 249, Neg. LLF: 147.32772710217108
Iteration: 22, Func. Count: 260, Neg. LLF: 147.32556292925545
Iteration: 23, Func. Count: 271, Neg. LLF: 147.3252498690393
Iteration: 24, Func. Count: 282, Neg. LLF: 147.32513823956467
Iteration: 25, Func. Count: 293, Neg. LLF: 147.3250435034478
Iteration: 26, Func. Count: 304, Neg. LLF: 147.32499412613075
Iteration: 27, Func. Count: 315, Neg. LLF: 147.3249916315892
Iteration: 28, Func. Count: 325, Neg. LLF: 147.3249925247931
Optimization terminated successfully (Exit mode 0)
Current function value: 147.3249916315892
Iterations: 28
Function evaluations: 325
Gradient evaluations: 28
Iteration: 1, Func. Count: 13, Neg. LLF: 155.63900112630037
Iteration: 2, Func. Count: 25, Neg. LLF: 153.75556341928774
Iteration: 3, Func. Count: 37, Neg. LLF: 194.40453508688526
Iteration: 4, Func. Count: 53, Neg. LLF: 164.3825395519343
Iteration: 5, Func. Count: 68, Neg. LLF: 153.03712803286615
Iteration: 6, Func. Count: 80, Neg. LLF: 152.08237706144806
Iteration: 7, Func. Count: 92, Neg. LLF: 151.7578897674291
Iteration: 8, Func. Count: 104, Neg. LLF: 151.652751183994
Iteration: 9, Func. Count: 117, Neg. LLF: 150.67780754699703
Iteration: 10, Func. Count: 129, Neg. LLF: 300.7958097651601
Iteration: 11, Func. Count: 142, Neg. LLF: 253.26303054341338
Iteration: 12, Func. Count: 155, Neg. LLF: 250.50319185137957
Iteration: 13, Func. Count: 168, Neg. LLF: 251.80351341691198
Iteration: 14, Func. Count: 181, Neg. LLF: 253.4071040021612
Iteration: 15, Func. Count: 194, Neg. LLF: 218.69713460684085
Iteration: 16, Func. Count: 207, Neg. LLF: 320.8541381197243
Iteration: 17, Func. Count: 220, Neg. LLF: 188.74037196761972
Iteration: 18, Func. Count: 233, Neg. LLF: 161.60438572505137
Iteration: 19, Func. Count: 246, Neg. LLF: 147.67023744159863
Iteration: 20, Func. Count: 259, Neg. LLF: 147.3502799683874
Iteration: 21, Func. Count: 272, Neg. LLF: 147.3262494161475
Iteration: 22, Func. Count: 284, Neg. LLF: 147.3257408811474
Iteration: 23, Func. Count: 296, Neg. LLF: 147.32519310085692
Iteration: 24, Func. Count: 308, Neg. LLF: 147.32506484299964
Iteration: 25, Func. Count: 320, Neg. LLF: 147.3250021566524
Iteration: 26, Func. Count: 332, Neg. LLF: 147.3249973963693
Iteration: 27, Func. Count: 344, Neg. LLF: 147.32499319450642
Iteration: 28, Func. Count: 356, Neg. LLF: 147.324991824896
Iteration: 29, Func. Count: 367, Neg. LLF: 147.3249921702225
Optimization terminated successfully (Exit mode 0)
Current function value: 147.324991824896
Iterations: 29
Function evaluations: 367
Gradient evaluations: 29
Iteration: 1, Func. Count: 14, Neg. LLF: 155.86034985526962
Iteration: 2, Func. Count: 27, Neg. LLF: 153.7677662078881
Iteration: 3, Func. Count: 40, Neg. LLF: 194.6274166665486
Iteration: 4, Func. Count: 57, Neg. LLF: 177.00544236698295
Iteration: 5, Func. Count: 72, Neg. LLF: 152.29608464232643
Iteration: 6, Func. Count: 85, Neg. LLF: 151.9392221604279
Iteration: 7, Func. Count: 98, Neg. LLF: 164.8500095334817
Iteration: 8, Func. Count: 112, Neg. LLF: 151.16385549926198
Iteration: 9, Func. Count: 125, Neg. LLF: 148.5455771038553
Iteration: 10, Func. Count: 138, Neg. LLF: 196.60888078971809
Iteration: 11, Func. Count: 152, Neg. LLF: 164.3982834480621
Iteration: 12, Func. Count: 168, Neg. LLF: 147.42940363117128
Iteration: 13, Func. Count: 181, Neg. LLF: 147.34536579572537
Iteration: 14, Func. Count: 194, Neg. LLF: 147.32819158837813
Iteration: 15, Func. Count: 207, Neg. LLF: 147.32727046713242
Iteration: 16, Func. Count: 220, Neg. LLF: 147.32693238973323
Iteration: 17, Func. Count: 233, Neg. LLF: 147.32650043064777
Iteration: 18, Func. Count: 246, Neg. LLF: 147.3259157237325
Iteration: 19, Func. Count: 259, Neg. LLF: 147.3254833392013
Iteration: 20, Func. Count: 272, Neg. LLF: 147.3251991038039
Iteration: 21, Func. Count: 285, Neg. LLF: 147.32503812302883
Iteration: 22, Func. Count: 298, Neg. LLF: 147.32499758904632
Iteration: 23, Func. Count: 311, Neg. LLF: 147.3249919523868
Iteration: 24, Func. Count: 323, Neg. LLF: 147.32499189216318
Optimization terminated successfully (Exit mode 0)
Current function value: 147.3249919523868
Iterations: 24
Function evaluations: 323
Gradient evaluations: 24
Iteration: 1, Func. Count: 11, Neg. LLF: 154.38474879799278
Iteration: 2, Func. Count: 21, Neg. LLF: 162.75774070301784
Iteration: 3, Func. Count: 32, Neg. LLF: 166.42032559452232
Iteration: 4, Func. Count: 45, Neg. LLF: 154.72126676826986
Iteration: 5, Func. Count: 56, Neg. LLF: 153.9293540390613
Iteration: 6, Func. Count: 67, Neg. LLF: 153.26376682305005
Iteration: 7, Func. Count: 77, Neg. LLF: 203.36519904103722
Iteration: 8, Func. Count: 88, Neg. LLF: 167.05149109397854
Iteration: 9, Func. Count: 101, Neg. LLF: 152.88797690614717
Iteration: 10, Func. Count: 112, Neg. LLF: 154.25295407148508
Iteration: 11, Func. Count: 123, Neg. LLF: 152.04598517256034
Iteration: 12, Func. Count: 133, Neg. LLF: 152.43067503108756
Iteration: 13, Func. Count: 144, Neg. LLF: 151.92744328462732
Iteration: 14, Func. Count: 154, Neg. LLF: 151.86794473094412
Iteration: 15, Func. Count: 164, Neg. LLF: 151.7845930274703
Iteration: 16, Func. Count: 174, Neg. LLF: 151.73905866213298
Iteration: 17, Func. Count: 184, Neg. LLF: 151.69987831416668
Iteration: 18, Func. Count: 194, Neg. LLF: 151.6858354976656
Iteration: 19, Func. Count: 204, Neg. LLF: 151.6771266393386
Iteration: 20, Func. Count: 214, Neg. LLF: 151.67638830259872
Iteration: 21, Func. Count: 224, Neg. LLF: 151.67628968200944
Iteration: 22, Func. Count: 234, Neg. LLF: 151.6762353969701
Iteration: 23, Func. Count: 244, Neg. LLF: 151.67623428529802
Iteration: 24, Func. Count: 253, Neg. LLF: 151.6762342849581
Optimization terminated successfully (Exit mode 0)
Current function value: 151.67623428529802
Iterations: 24
Function evaluations: 253
Gradient evaluations: 24
Iteration: 1, Func. Count: 12, Neg. LLF: 154.49640251764475
Iteration: 2, Func. Count: 23, Neg. LLF: 156.2644358236169
Iteration: 3, Func. Count: 35, Neg. LLF: 188.45894477495924
Iteration: 4, Func. Count: 49, Neg. LLF: 153.79720301258894
Iteration: 5, Func. Count: 62, Neg. LLF: 152.1624525960659
Iteration: 6, Func. Count: 73, Neg. LLF: 150.8901564686429
Iteration: 7, Func. Count: 84, Neg. LLF: 246.03969873469137
Iteration: 8, Func. Count: 96, Neg. LLF: 328.5860616970429
Iteration: 9, Func. Count: 108, Neg. LLF: 318.51776598352575
Iteration: 10, Func. Count: 120, Neg. LLF: 330.34219442269125
Iteration: 11, Func. Count: 132, Neg. LLF: 345.5412451610522
Iteration: 12, Func. Count: 144, Neg. LLF: 288.46121081987076
Iteration: 13, Func. Count: 156, Neg. LLF: 234.57021349636503
Iteration: 14, Func. Count: 168, Neg. LLF: 462.79166826772155
Iteration: 15, Func. Count: 180, Neg. LLF: 210.72914690045258
Iteration: 16, Func. Count: 192, Neg. LLF: 148.22889642242905
Iteration: 17, Func. Count: 204, Neg. LLF: 147.62701357131132
Iteration: 18, Func. Count: 216, Neg. LLF: 147.31111505731673
Iteration: 19, Func. Count: 227, Neg. LLF: 147.29926486523996
Iteration: 20, Func. Count: 238, Neg. LLF: 147.2995220138199
Iteration: 21, Func. Count: 250, Neg. LLF: 147.2987150246699
Iteration: 22, Func. Count: 261, Neg. LLF: 147.29849036714722
Iteration: 23, Func. Count: 272, Neg. LLF: 147.2983400824235
Iteration: 24, Func. Count: 283, Neg. LLF: 147.29832836799503
Iteration: 25, Func. Count: 294, Neg. LLF: 147.2983279683311
Optimization terminated successfully (Exit mode 0)
Current function value: 147.2983279683311
Iterations: 25
Function evaluations: 294
Gradient evaluations: 25
Iteration: 1, Func. Count: 13, Neg. LLF: 154.58530807048635
Iteration: 2, Func. Count: 25, Neg. LLF: 153.3634695951498
Iteration: 3, Func. Count: 37, Neg. LLF: 193.2084378151221
Iteration: 4, Func. Count: 53, Neg. LLF: 171.15324850940684
Iteration: 5, Func. Count: 68, Neg. LLF: 152.26684278121203
Iteration: 6, Func. Count: 80, Neg. LLF: 151.8636983759638
Iteration: 7, Func. Count: 92, Neg. LLF: 151.17760125155664
Iteration: 8, Func. Count: 104, Neg. LLF: 151.79370455324735
Iteration: 9, Func. Count: 117, Neg. LLF: 266.1194471970952
Iteration: 10, Func. Count: 130, Neg. LLF: 449.31290470913035
Iteration: 11, Func. Count: 143, Neg. LLF: 244.08796329248733
Iteration: 12, Func. Count: 156, Neg. LLF: 270.8998823873196
Iteration: 13, Func. Count: 169, Neg. LLF: 245.77221117308542
Iteration: 14, Func. Count: 182, Neg. LLF: 147.9913495629774
Iteration: 15, Func. Count: 195, Neg. LLF: 175.1005901339965
Iteration: 16, Func. Count: 208, Neg. LLF: 147.33707225126435
Iteration: 17, Func. Count: 220, Neg. LLF: 147.31435563755772
Iteration: 18, Func. Count: 232, Neg. LLF: 147.30363671350202
Iteration: 19, Func. Count: 244, Neg. LLF: 147.30072349228345
Iteration: 20, Func. Count: 256, Neg. LLF: 147.2997453251366
Iteration: 21, Func. Count: 268, Neg. LLF: 147.29880767905297
Iteration: 22, Func. Count: 280, Neg. LLF: 147.29841995396
Iteration: 23, Func. Count: 292, Neg. LLF: 147.29833871872015
Iteration: 24, Func. Count: 304, Neg. LLF: 147.29832875237565
Iteration: 25, Func. Count: 316, Neg. LLF: 147.29832793670073
Optimization terminated successfully (Exit mode 0)
Current function value: 147.29832793670073
Iterations: 25
Function evaluations: 316
Gradient evaluations: 25
Iteration: 1, Func. Count: 14, Neg. LLF: 155.06229684163497
Iteration: 2, Func. Count: 27, Neg. LLF: 154.86196800044578
Iteration: 3, Func. Count: 41, Neg. LLF: 186.6763916976394
Iteration: 4, Func. Count: 58, Neg. LLF: 163.3091581279604
Iteration: 5, Func. Count: 74, Neg. LLF: 152.22313410926662
Iteration: 6, Func. Count: 87, Neg. LLF: 150.98032683161432
Iteration: 7, Func. Count: 100, Neg. LLF: 1183.1028908237815
Iteration: 8, Func. Count: 114, Neg. LLF: 494.3689029629026
Iteration: 9, Func. Count: 128, Neg. LLF: 375.0973385706924
Iteration: 10, Func. Count: 142, Neg. LLF: 311.71099533802646
Iteration: 11, Func. Count: 156, Neg. LLF: 326.9012802703527
Iteration: 12, Func. Count: 170, Neg. LLF: 289.968596613304
Iteration: 13, Func. Count: 184, Neg. LLF: 288.61368238783456
Iteration: 14, Func. Count: 198, Neg. LLF: 255.9082888462608
Iteration: 15, Func. Count: 212, Neg. LLF: 262.83487520721394
Iteration: 16, Func. Count: 226, Neg. LLF: 147.875674826193
Iteration: 17, Func. Count: 240, Neg. LLF: 147.48393496716943
Iteration: 18, Func. Count: 254, Neg. LLF: 147.30360078805052
Iteration: 19, Func. Count: 267, Neg. LLF: 147.29879038986797
Iteration: 20, Func. Count: 280, Neg. LLF: 147.2989144029055
Iteration: 21, Func. Count: 294, Neg. LLF: 147.29841420724694
Iteration: 22, Func. Count: 307, Neg. LLF: 147.29833655523956
Iteration: 23, Func. Count: 320, Neg. LLF: 147.29833218185394
Iteration: 24, Func. Count: 333, Neg. LLF: 147.29832801910584
Iteration: 25, Func. Count: 345, Neg. LLF: 147.29832835998303
Optimization terminated successfully (Exit mode 0)
Current function value: 147.29832801910584
Iterations: 25
Function evaluations: 345
Gradient evaluations: 25
Iteration: 1, Func. Count: 15, Neg. LLF: 155.21896632239208
Iteration: 2, Func. Count: 29, Neg. LLF: 154.97851766483956
Iteration: 3, Func. Count: 44, Neg. LLF: 187.0198838015369
Iteration: 4, Func. Count: 62, Neg. LLF: 152.42654136392088
Iteration: 5, Func. Count: 76, Neg. LLF: 150.02628268324625
Iteration: 6, Func. Count: 90, Neg. LLF: 332.2635038407977
Iteration: 7, Func. Count: 105, Neg. LLF: 300.0114765886431
Iteration: 8, Func. Count: 120, Neg. LLF: 331.89737703535246
Iteration: 9, Func. Count: 135, Neg. LLF: 333.9258883329121
Iteration: 10, Func. Count: 150, Neg. LLF: 247.34489843301736
Iteration: 11, Func. Count: 165, Neg. LLF: 581.2608360163582
Iteration: 12, Func. Count: 180, Neg. LLF: 198.197926634419
Iteration: 13, Func. Count: 195, Neg. LLF: 349.872627490146
Iteration: 14, Func. Count: 210, Neg. LLF: 147.74895944925498
Iteration: 15, Func. Count: 225, Neg. LLF: 147.30920034080685
Iteration: 16, Func. Count: 239, Neg. LLF: 147.3028224801236
Iteration: 17, Func. Count: 253, Neg. LLF: 147.30288915075323
Iteration: 18, Func. Count: 268, Neg. LLF: 147.30010815108972
Iteration: 19, Func. Count: 282, Neg. LLF: 147.29855360145942
Iteration: 20, Func. Count: 296, Neg. LLF: 147.2985118876858
Iteration: 21, Func. Count: 310, Neg. LLF: 147.2983862846069
Iteration: 22, Func. Count: 324, Neg. LLF: 147.29835832039362
Iteration: 23, Func. Count: 338, Neg. LLF: 147.29833293271963
Iteration: 24, Func. Count: 352, Neg. LLF: 147.2983289281168
Iteration: 25, Func. Count: 366, Neg. LLF: 147.29832799153294
Optimization terminated successfully (Exit mode 0)
Current function value: 147.29832799153294
Iterations: 25
Function evaluations: 366
Gradient evaluations: 25
Iteration: 1, Func. Count: 12, Neg. LLF: 152.8340333775431
Iteration: 2, Func. Count: 23, Neg. LLF: 153.20038863383792
Iteration: 3, Func. Count: 37, Neg. LLF: 181.2029389901831
Iteration: 4, Func. Count: 50, Neg. LLF: 155.70841576778034
Iteration: 5, Func. Count: 62, Neg. LLF: 151.38057268969314
Iteration: 6, Func. Count: 73, Neg. LLF: 150.9339533984501
Iteration: 7, Func. Count: 84, Neg. LLF: 150.18936472852704
Iteration: 8, Func. Count: 95, Neg. LLF: 148.50615233877235
Iteration: 9, Func. Count: 106, Neg. LLF: 684.1687637921724
Iteration: 10, Func. Count: 118, Neg. LLF: 804.7453931959197
Iteration: 11, Func. Count: 130, Neg. LLF: 790.0101183115004
Iteration: 12, Func. Count: 142, Neg. LLF: 723.7667322883593
Iteration: 13, Func. Count: 154, Neg. LLF: 456.8935399208207
Iteration: 14, Func. Count: 166, Neg. LLF: 305.13016909261256
Iteration: 15, Func. Count: 178, Neg. LLF: 238.08834783200243
Iteration: 16, Func. Count: 190, Neg. LLF: 156.68105691998
Iteration: 17, Func. Count: 202, Neg. LLF: 146.08914809281475
Iteration: 18, Func. Count: 214, Neg. LLF: 145.58283656704225
Iteration: 19, Func. Count: 226, Neg. LLF: 145.55934061161682
Iteration: 20, Func. Count: 238, Neg. LLF: 145.41863735596854
Iteration: 21, Func. Count: 250, Neg. LLF: 145.41487332605405
Iteration: 22, Func. Count: 261, Neg. LLF: 145.4117615844797
Iteration: 23, Func. Count: 272, Neg. LLF: 145.40915916329652
Iteration: 24, Func. Count: 283, Neg. LLF: 145.4090136949251
Iteration: 25, Func. Count: 294, Neg. LLF: 145.4089642002521
Iteration: 26, Func. Count: 305, Neg. LLF: 145.4089118485342
Iteration: 27, Func. Count: 316, Neg. LLF: 145.40889641966893
Iteration: 28, Func. Count: 327, Neg. LLF: 145.40889449699273
Iteration: 29, Func. Count: 337, Neg. LLF: 145.40889447186228
Optimization terminated successfully (Exit mode 0)
Current function value: 145.40889449699273
Iterations: 29
Function evaluations: 337
Gradient evaluations: 29
Iteration: 1, Func. Count: 13, Neg. LLF: 152.2663551222605
Iteration: 2, Func. Count: 25, Neg. LLF: 153.75644300497459
Iteration: 3, Func. Count: 39, Neg. LLF: 170.2728466763427
Iteration: 4, Func. Count: 55, Neg. LLF: 165.01092485114907
Iteration: 5, Func. Count: 68, Neg. LLF: 151.10637129989917
Iteration: 6, Func. Count: 80, Neg. LLF: 150.50007186735613
Iteration: 7, Func. Count: 92, Neg. LLF: 149.47934380715515
Iteration: 8, Func. Count: 104, Neg. LLF: 337.87526316444473
Iteration: 9, Func. Count: 117, Neg. LLF: 129371.86513723958
Iteration: 10, Func. Count: 130, Neg. LLF: 1146.5072722770997
Iteration: 11, Func. Count: 143, Neg. LLF: 824.7655202219892
Iteration: 12, Func. Count: 156, Neg. LLF: 608.0232023974665
Iteration: 13, Func. Count: 169, Neg. LLF: 549.2103344584751
Iteration: 14, Func. Count: 182, Neg. LLF: 238.46737220800125
Iteration: 15, Func. Count: 195, Neg. LLF: 372.1828507396522
Iteration: 16, Func. Count: 208, Neg. LLF: 201.8645980961565
Iteration: 17, Func. Count: 221, Neg. LLF: 241.07817563740852
Iteration: 18, Func. Count: 234, Neg. LLF: 193.66248791145193
Iteration: 19, Func. Count: 247, Neg. LLF: 146.29909794245106
Iteration: 20, Func. Count: 260, Neg. LLF: 145.4977667710886
Iteration: 21, Func. Count: 272, Neg. LLF: 145.47010530202272
Iteration: 22, Func. Count: 284, Neg. LLF: 145.4194650399537
Iteration: 23, Func. Count: 296, Neg. LLF: 145.35743861932153
Iteration: 24, Func. Count: 308, Neg. LLF: 145.33926288760549
Iteration: 25, Func. Count: 320, Neg. LLF: 145.32339791740958
Iteration: 26, Func. Count: 332, Neg. LLF: 145.3208477466608
Iteration: 27, Func. Count: 344, Neg. LLF: 145.3196452102939
Iteration: 28, Func. Count: 356, Neg. LLF: 145.31852616831745
Iteration: 29, Func. Count: 368, Neg. LLF: 145.31589436795346
Iteration: 30, Func. Count: 380, Neg. LLF: 145.31390287408553
Iteration: 31, Func. Count: 392, Neg. LLF: 145.3132926152565
Iteration: 32, Func. Count: 404, Neg. LLF: 145.3132258652731
Iteration: 33, Func. Count: 416, Neg. LLF: 145.31322084983518
Iteration: 34, Func. Count: 427, Neg. LLF: 145.31322078480932
Optimization terminated successfully (Exit mode 0)
Current function value: 145.31322084983518
Iterations: 34
Function evaluations: 427
Gradient evaluations: 34
Iteration: 1, Func. Count: 14, Neg. LLF: 152.52739450976458
Iteration: 2, Func. Count: 27, Neg. LLF: 152.70769458003468
Iteration: 3, Func. Count: 43, Neg. LLF: 185.34652678167149
Iteration: 4, Func. Count: 59, Neg. LLF: 159.78241859333087
Iteration: 5, Func. Count: 73, Neg. LLF: 151.3430970016348
Iteration: 6, Func. Count: 86, Neg. LLF: 150.60863433666455
Iteration: 7, Func. Count: 99, Neg. LLF: 150.06689691693694
Iteration: 8, Func. Count: 112, Neg. LLF: 148.4689016364133
Iteration: 9, Func. Count: 125, Neg. LLF: 147.6685285972095
Iteration: 10, Func. Count: 138, Neg. LLF: 148.42009454858814
Iteration: 11, Func. Count: 152, Neg. LLF: 2039.9184878348854
Iteration: 12, Func. Count: 168, Neg. LLF: 149.86348816767443
Iteration: 13, Func. Count: 182, Neg. LLF: 162.5325465774348
Iteration: 14, Func. Count: 196, Neg. LLF: 145.45272302649997
Iteration: 15, Func. Count: 209, Neg. LLF: 147.84041542535567
Iteration: 16, Func. Count: 223, Neg. LLF: 145.37914810462013
Iteration: 17, Func. Count: 236, Neg. LLF: 145.345562749562
Iteration: 18, Func. Count: 249, Neg. LLF: 145.33761544409012
Iteration: 19, Func. Count: 262, Neg. LLF: 145.33135449510561
Iteration: 20, Func. Count: 275, Neg. LLF: 145.32274938127864
Iteration: 21, Func. Count: 288, Neg. LLF: 145.3185698018548
Iteration: 22, Func. Count: 301, Neg. LLF: 145.3170200124955
Iteration: 23, Func. Count: 314, Neg. LLF: 145.31524130877008
Iteration: 24, Func. Count: 327, Neg. LLF: 145.31373703938016
Iteration: 25, Func. Count: 340, Neg. LLF: 145.31328687483742
Iteration: 26, Func. Count: 353, Neg. LLF: 145.3132254309385
Iteration: 27, Func. Count: 366, Neg. LLF: 145.31322083382764
Iteration: 28, Func. Count: 378, Neg. LLF: 145.3132220772112
Optimization terminated successfully (Exit mode 0)
Current function value: 145.31322083382764
Iterations: 28
Function evaluations: 378
Gradient evaluations: 28
Iteration: 1, Func. Count: 15, Neg. LLF: 152.57389565905098
Iteration: 2, Func. Count: 29, Neg. LLF: 152.6487140246108
Iteration: 3, Func. Count: 44, Neg. LLF: 156.88814366962953
Iteration: 4, Func. Count: 59, Neg. LLF: 151.53158657654848
Iteration: 5, Func. Count: 73, Neg. LLF: 150.95767477442487
Iteration: 6, Func. Count: 87, Neg. LLF: 152.93122958913534
Iteration: 7, Func. Count: 102, Neg. LLF: 149.9207265744936
Iteration: 8, Func. Count: 116, Neg. LLF: 147.77677295001118
Iteration: 9, Func. Count: 130, Neg. LLF: 181.66971165400506
Iteration: 10, Func. Count: 145, Neg. LLF: 3813526.6280454546
Iteration: 11, Func. Count: 160, Neg. LLF: 877.6721572121007
Iteration: 12, Func. Count: 175, Neg. LLF: 148.95050727407948
Iteration: 13, Func. Count: 190, Neg. LLF: 162.39108322606896
Iteration: 14, Func. Count: 205, Neg. LLF: 145.82423967712526
Iteration: 15, Func. Count: 220, Neg. LLF: 145.35428456549974
Iteration: 16, Func. Count: 234, Neg. LLF: 145.32358950483084
Iteration: 17, Func. Count: 248, Neg. LLF: 145.3213327068215
Iteration: 18, Func. Count: 262, Neg. LLF: 145.316872376209
Iteration: 19, Func. Count: 276, Neg. LLF: 145.31468945816158
Iteration: 20, Func. Count: 290, Neg. LLF: 145.31406282993674
Iteration: 21, Func. Count: 304, Neg. LLF: 145.3137349313314
Iteration: 22, Func. Count: 318, Neg. LLF: 145.31345487058744
Iteration: 23, Func. Count: 332, Neg. LLF: 145.31327768135404
Iteration: 24, Func. Count: 346, Neg. LLF: 145.3132315713582
Iteration: 25, Func. Count: 360, Neg. LLF: 145.31322222190767
Iteration: 26, Func. Count: 374, Neg. LLF: 145.3132211923438
Iteration: 27, Func. Count: 387, Neg. LLF: 145.31322182110708
Optimization terminated successfully (Exit mode 0)
Current function value: 145.3132211923438
Iterations: 27
Function evaluations: 387
Gradient evaluations: 27
Iteration: 1, Func. Count: 16, Neg. LLF: 152.6137805692455
Iteration: 2, Func. Count: 31, Neg. LLF: 153.78702039507462
Iteration: 3, Func. Count: 48, Neg. LLF: 156.37241246188526
Iteration: 4, Func. Count: 64, Neg. LLF: 151.4549839030083
Iteration: 5, Func. Count: 79, Neg. LLF: 150.75500516938155
Iteration: 6, Func. Count: 94, Neg. LLF: 152.59305635380431
Iteration: 7, Func. Count: 110, Neg. LLF: 149.69612671847665
Iteration: 8, Func. Count: 125, Neg. LLF: 146.80158213143136
Iteration: 9, Func. Count: 140, Neg. LLF: 310.3014066483251
Iteration: 10, Func. Count: 156, Neg. LLF: 149.46100624128837
Iteration: 11, Func. Count: 172, Neg. LLF: 286.80509514982305
Iteration: 12, Func. Count: 188, Neg. LLF: 198.9730735473436
Iteration: 13, Func. Count: 204, Neg. LLF: 147.8503287282499
Iteration: 14, Func. Count: 220, Neg. LLF: 155.98426449160633
Iteration: 15, Func. Count: 236, Neg. LLF: 145.40342710199212
Iteration: 16, Func. Count: 251, Neg. LLF: 145.42154345204227
Iteration: 17, Func. Count: 267, Neg. LLF: 145.3793972869218
Iteration: 18, Func. Count: 282, Neg. LLF: 145.36692963430463
Iteration: 19, Func. Count: 297, Neg. LLF: 145.323560584716
Iteration: 20, Func. Count: 312, Neg. LLF: 145.31428117668978
Iteration: 21, Func. Count: 327, Neg. LLF: 145.31335643641498
Iteration: 22, Func. Count: 342, Neg. LLF: 145.31328514567153
Iteration: 23, Func. Count: 357, Neg. LLF: 145.31324375061817
Iteration: 24, Func. Count: 372, Neg. LLF: 145.31322529267226
Iteration: 25, Func. Count: 387, Neg. LLF: 145.31322117428044
Iteration: 26, Func. Count: 401, Neg. LLF: 145.3132213383635
Optimization terminated successfully (Exit mode 0)
Current function value: 145.31322117428044
Iterations: 26
Function evaluations: 401
Gradient evaluations: 26
Iteration: 1, Func. Count: 8, Neg. LLF: 153.88331669551144
Iteration: 2, Func. Count: 15, Neg. LLF: 165.74945684407297
Iteration: 3, Func. Count: 23, Neg. LLF: 188.9099267553709
Iteration: 4, Func. Count: 33, Neg. LLF: 153.12069602348794
Iteration: 5, Func. Count: 41, Neg. LLF: 152.03428765283897
Iteration: 6, Func. Count: 48, Neg. LLF: 153.19542486338668
Iteration: 7, Func. Count: 56, Neg. LLF: 149.0986223784889
Iteration: 8, Func. Count: 63, Neg. LLF: 259.4841858412093
Iteration: 9, Func. Count: 71, Neg. LLF: 572.4273189967455
Iteration: 10, Func. Count: 79, Neg. LLF: 615.5023402147351
Iteration: 11, Func. Count: 87, Neg. LLF: 151.2148236699633
Iteration: 12, Func. Count: 95, Neg. LLF: 147.50251603772645
Iteration: 13, Func. Count: 102, Neg. LLF: 147.36609080098677
Iteration: 14, Func. Count: 109, Neg. LLF: 147.3797016043799
Iteration: 15, Func. Count: 117, Neg. LLF: 147.3550400116978
Iteration: 16, Func. Count: 124, Neg. LLF: 147.35441117707308
Iteration: 17, Func. Count: 131, Neg. LLF: 147.35427021516585
Iteration: 18, Func. Count: 138, Neg. LLF: 147.35426894852102
Iteration: 19, Func. Count: 144, Neg. LLF: 147.3542688132854
Optimization terminated successfully (Exit mode 0)
Current function value: 147.35426894852102
Iterations: 19
Function evaluations: 144
Gradient evaluations: 19
Iteration: 1, Func. Count: 5, Neg. LLF: 160.74991185693509
Iteration: 2, Func. Count: 9, Neg. LLF: 161.97747439928906
Iteration: 3, Func. Count: 14, Neg. LLF: 158.90428808737033
Iteration: 4, Func. Count: 18, Neg. LLF: 158.8572629115598
Iteration: 5, Func. Count: 22, Neg. LLF: 158.70339247649184
Iteration: 6, Func. Count: 26, Neg. LLF: 158.67448015606735
Iteration: 7, Func. Count: 30, Neg. LLF: 158.6713028724381
Iteration: 8, Func. Count: 34, Neg. LLF: 158.67123664918702
Iteration: 9, Func. Count: 38, Neg. LLF: 158.67123412592207
Iteration: 10, Func. Count: 41, Neg. LLF: 158.67123412869947
Optimization terminated successfully (Exit mode 0)
Current function value: 158.67123412592207
Iterations: 10
Function evaluations: 41
Gradient evaluations: 10
Iteration: 1, Func. Count: 6, Neg. LLF: 171.42568424976176
Iteration: 2, Func. Count: 12, Neg. LLF: 184.7645550721746
Iteration: 3, Func. Count: 19, Neg. LLF: 157.45233699081072
Iteration: 4, Func. Count: 24, Neg. LLF: 157.00837764547663
Iteration: 5, Func. Count: 29, Neg. LLF: 156.96687213080344
Iteration: 6, Func. Count: 34, Neg. LLF: 156.94390735672434
Iteration: 7, Func. Count: 39, Neg. LLF: 156.93981925981092
Iteration: 8, Func. Count: 44, Neg. LLF: 156.93945532466282
Iteration: 9, Func. Count: 49, Neg. LLF: 156.9394007098074
Iteration: 10, Func. Count: 53, Neg. LLF: 156.9394000433215
Optimization terminated successfully (Exit mode 0)
Current function value: 156.9394007098074
Iterations: 10
Function evaluations: 53
Gradient evaluations: 10
Iteration: 1, Func. Count: 7, Neg. LLF: 335.0500527068374
Iteration: 2, Func. Count: 15, Neg. LLF: 157.2348273319025
Iteration: 3, Func. Count: 21, Neg. LLF: 157.1259390979207
Iteration: 4, Func. Count: 27, Neg. LLF: 157.03319769791236
Iteration: 5, Func. Count: 33, Neg. LLF: 157.01306218999753
Iteration: 6, Func. Count: 40, Neg. LLF: 156.94844488379775
Iteration: 7, Func. Count: 46, Neg. LLF: 156.9396200251825
Iteration: 8, Func. Count: 52, Neg. LLF: 156.93940345573805
Iteration: 9, Func. Count: 58, Neg. LLF: 156.93940058755166
Iteration: 10, Func. Count: 63, Neg. LLF: 156.93939992261923
Optimization terminated successfully (Exit mode 0)
Current function value: 156.93940058755166
Iterations: 10
Function evaluations: 63
Gradient evaluations: 10
Iteration: 1, Func. Count: 8, Neg. LLF: 164.08851976850207
Iteration: 2, Func. Count: 16, Neg. LLF: 161.06443935510978
Iteration: 3, Func. Count: 24, Neg. LLF: 157.49308293329236
Iteration: 4, Func. Count: 31, Neg. LLF: 157.39509945922043
Iteration: 5, Func. Count: 39, Neg. LLF: 157.5696313698421
Iteration: 6, Func. Count: 47, Neg. LLF: 156.80213677263606
Iteration: 7, Func. Count: 54, Neg. LLF: 156.7805400249874
Iteration: 8, Func. Count: 61, Neg. LLF: 156.7756725161408
Iteration: 9, Func. Count: 68, Neg. LLF: 156.7752488310918
Iteration: 10, Func. Count: 75, Neg. LLF: 156.77523212557256
Iteration: 11, Func. Count: 81, Neg. LLF: 156.77523168621127
Optimization terminated successfully (Exit mode 0)
Current function value: 156.77523212557256
Iterations: 11
Function evaluations: 81
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 163.12512028610354
Iteration: 2, Func. Count: 18, Neg. LLF: 158.16614261520536
Iteration: 3, Func. Count: 27, Neg. LLF: 155.92431935370686
Iteration: 4, Func. Count: 35, Neg. LLF: 154.42080822407829
Iteration: 5, Func. Count: 43, Neg. LLF: 154.8893438994215
Iteration: 6, Func. Count: 52, Neg. LLF: 154.17854705809273
Iteration: 7, Func. Count: 60, Neg. LLF: 154.05560741458203
Iteration: 8, Func. Count: 68, Neg. LLF: 153.9530313921776
Iteration: 9, Func. Count: 76, Neg. LLF: 153.88197117387716
Iteration: 10, Func. Count: 84, Neg. LLF: 153.8747973674758
Iteration: 11, Func. Count: 92, Neg. LLF: 153.87219660281554
Iteration: 12, Func. Count: 100, Neg. LLF: 153.87214660582856
Iteration: 13, Func. Count: 108, Neg. LLF: 153.87213608522865
Iteration: 14, Func. Count: 116, Neg. LLF: 153.87213258520998
Optimization terminated successfully (Exit mode 0)
Current function value: 153.87213608178257
Iterations: 14
Function evaluations: 126
Gradient evaluations: 14
Iteration: 1, Func. Count: 6, Neg. LLF: 157.84183049996219
Iteration: 2, Func. Count: 11, Neg. LLF: 165.5244606512912
Iteration: 3, Func. Count: 17, Neg. LLF: 152.46411180079957
Iteration: 4, Func. Count: 22, Neg. LLF: 152.31593669067792
Iteration: 5, Func. Count: 27, Neg. LLF: 152.20557046648437
Iteration: 6, Func. Count: 32, Neg. LLF: 151.85288113249203
Iteration: 7, Func. Count: 37, Neg. LLF: 151.61274349282428
Iteration: 8, Func. Count: 42, Neg. LLF: 151.37597028675376
Iteration: 9, Func. Count: 47, Neg. LLF: 151.33446487321038
Iteration: 10, Func. Count: 52, Neg. LLF: 151.33152881723584
Iteration: 11, Func. Count: 57, Neg. LLF: 151.3314288276197
Iteration: 12, Func. Count: 62, Neg. LLF: 151.33142457101692
Iteration: 13, Func. Count: 66, Neg. LLF: 151.33142452748805
Optimization terminated successfully (Exit mode 0)
Current function value: 151.33142457101692
Iterations: 13
Function evaluations: 66
Gradient evaluations: 13
Iteration: 1, Func. Count: 7, Neg. LLF: 170.76114319460598
Iteration: 2, Func. Count: 14, Neg. LLF: 183.79561889066926
Iteration: 3, Func. Count: 22, Neg. LLF: 157.4541931637067
Iteration: 4, Func. Count: 28, Neg. LLF: 156.96282151221718
Iteration: 5, Func. Count: 34, Neg. LLF: 156.90541653040503
Iteration: 6, Func. Count: 40, Neg. LLF: 156.8782348232544
Iteration: 7, Func. Count: 46, Neg. LLF: 156.87690214373004
Iteration: 8, Func. Count: 52, Neg. LLF: 156.8768337412764
Iteration: 9, Func. Count: 58, Neg. LLF: 156.8768312312074
Iteration: 10, Func. Count: 63, Neg. LLF: 156.8768304679662
Optimization terminated successfully (Exit mode 0)
Current function value: 156.8768312312074
Iterations: 10
Function evaluations: 63
Gradient evaluations: 10
Iteration: 1, Func. Count: 8, Neg. LLF: 290.08355258502286
Iteration: 2, Func. Count: 17, Neg. LLF: 155.81677343464767
Iteration: 3, Func. Count: 24, Neg. LLF: 154.52523768320629
Iteration: 4, Func. Count: 31, Neg. LLF: 154.41171822930178
Iteration: 5, Func. Count: 38, Neg. LLF: 154.26901177155185
Iteration: 6, Func. Count: 45, Neg. LLF: 154.0158484082731
Iteration: 7, Func. Count: 52, Neg. LLF: 153.71769807999308
Iteration: 8, Func. Count: 59, Neg. LLF: 169.67713524933382
Iteration: 9, Func. Count: 67, Neg. LLF: 157.58469840215568
Iteration: 10, Func. Count: 75, Neg. LLF: 153.79717759677138
Iteration: 11, Func. Count: 83, Neg. LLF: 153.04997319649416
Iteration: 12, Func. Count: 90, Neg. LLF: 152.49956354890705
Iteration: 13, Func. Count: 97, Neg. LLF: 151.94956769309474
Iteration: 14, Func. Count: 104, Neg. LLF: 151.57069346873186
Iteration: 15, Func. Count: 111, Neg. LLF: 160.76785269739966
Iteration: 16, Func. Count: 120, Neg. LLF: 151.37613761190636
Iteration: 17, Func. Count: 127, Neg. LLF: 151.3390684157742
Iteration: 18, Func. Count: 134, Neg. LLF: 151.334861941167
Iteration: 19, Func. Count: 141, Neg. LLF: 151.33361376431412
Iteration: 20, Func. Count: 148, Neg. LLF: 151.33220827107027
Iteration: 21, Func. Count: 155, Neg. LLF: 151.3315601317747
Iteration: 22, Func. Count: 162, Neg. LLF: 151.33143342234746
Iteration: 23, Func. Count: 169, Neg. LLF: 151.33142435976688
Iteration: 24, Func. Count: 175, Neg. LLF: 151.33142429728056
Optimization terminated successfully (Exit mode 0)
Current function value: 151.33142435976688
Iterations: 24
Function evaluations: 175
Gradient evaluations: 24
Iteration: 1, Func. Count: 9, Neg. LLF: 223.78237731359494
Iteration: 2, Func. Count: 18, Neg. LLF: 168.22422317694398
Iteration: 3, Func. Count: 27, Neg. LLF: 160.39976808066086
Iteration: 4, Func. Count: 36, Neg. LLF: 154.53547891780013
Iteration: 5, Func. Count: 44, Neg. LLF: 154.27078422165496
Iteration: 6, Func. Count: 52, Neg. LLF: 152.34183947108295
Iteration: 7, Func. Count: 60, Neg. LLF: 152.01498998214805
Iteration: 8, Func. Count: 68, Neg. LLF: 151.3967485862018
Iteration: 9, Func. Count: 76, Neg. LLF: 151.3434980408109
Iteration: 10, Func. Count: 84, Neg. LLF: 151.34058719248375
Iteration: 11, Func. Count: 92, Neg. LLF: 151.33949380948508
Iteration: 12, Func. Count: 100, Neg. LLF: 151.33605865102453
Iteration: 13, Func. Count: 108, Neg. LLF: 151.33264096037001
Iteration: 14, Func. Count: 116, Neg. LLF: 151.33155300166152
Iteration: 15, Func. Count: 124, Neg. LLF: 151.331429862066
Iteration: 16, Func. Count: 132, Neg. LLF: 151.33142428317186
Iteration: 17, Func. Count: 139, Neg. LLF: 151.33142426644434
Optimization terminated successfully (Exit mode 0)
Current function value: 151.33142428317186
Iterations: 17
Function evaluations: 139
Gradient evaluations: 17
Iteration: 1, Func. Count: 10, Neg. LLF: 300.22172806070034
Iteration: 2, Func. Count: 20, Neg. LLF: 158.7607317800051
Iteration: 3, Func. Count: 30, Neg. LLF: 149.56773048422107
Iteration: 4, Func. Count: 39, Neg. LLF: 186.2430989127806
Iteration: 5, Func. Count: 49, Neg. LLF: 149.35386473387535
Iteration: 6, Func. Count: 59, Neg. LLF: 149.03443065334363
Iteration: 7, Func. Count: 68, Neg. LLF: 148.98046554247546
Iteration: 8, Func. Count: 77, Neg. LLF: 148.956998551186
Iteration: 9, Func. Count: 86, Neg. LLF: 148.94592619997957
Iteration: 10, Func. Count: 95, Neg. LLF: 148.9455562980417
Iteration: 11, Func. Count: 104, Neg. LLF: 148.9455248729135
Iteration: 12, Func. Count: 113, Neg. LLF: 148.9455228417435
Iteration: 13, Func. Count: 121, Neg. LLF: 148.9455224361407
Optimization terminated successfully (Exit mode 0)
Current function value: 148.9455228417435
Iterations: 13
Function evaluations: 121
Gradient evaluations: 13
Iteration: 1, Func. Count: 7, Neg. LLF: 156.1805355166402
Iteration: 2, Func. Count: 13, Neg. LLF: 168.49905214627375
Iteration: 3, Func. Count: 20, Neg. LLF: 152.44384597664725
Iteration: 4, Func. Count: 26, Neg. LLF: 152.33302172014697
Iteration: 5, Func. Count: 32, Neg. LLF: 152.12053405579394
Iteration: 6, Func. Count: 38, Neg. LLF: 151.6630544180673
Iteration: 7, Func. Count: 44, Neg. LLF: 151.42643708649908
Iteration: 8, Func. Count: 50, Neg. LLF: 151.33466178067002
Iteration: 9, Func. Count: 56, Neg. LLF: 151.33155725486327
Iteration: 10, Func. Count: 62, Neg. LLF: 151.3314628682999
Iteration: 11, Func. Count: 68, Neg. LLF: 151.33142585974065
Iteration: 12, Func. Count: 74, Neg. LLF: 151.33142429080203
Iteration: 13, Func. Count: 79, Neg. LLF: 151.33142427662384
Optimization terminated successfully (Exit mode 0)
Current function value: 151.33142429080203
Iterations: 13
Function evaluations: 79
Gradient evaluations: 13
Iteration: 1, Func. Count: 8, Neg. LLF: 171.16328437901146
Iteration: 2, Func. Count: 16, Neg. LLF: 179.47023286948837
Iteration: 3, Func. Count: 25, Neg. LLF: 157.61084198387755
Iteration: 4, Func. Count: 32, Neg. LLF: 156.99505893780167
Iteration: 5, Func. Count: 39, Neg. LLF: 156.916799241405
Iteration: 6, Func. Count: 46, Neg. LLF: 156.87925604748955
Iteration: 7, Func. Count: 53, Neg. LLF: 156.8769797646964
Iteration: 8, Func. Count: 60, Neg. LLF: 156.87684025993786
Iteration: 9, Func. Count: 67, Neg. LLF: 156.87683128136132
Iteration: 10, Func. Count: 73, Neg. LLF: 156.87683051864747
Optimization terminated successfully (Exit mode 0)
Current function value: 156.87683128136132
Iterations: 10
Function evaluations: 73
Gradient evaluations: 10
Iteration: 1, Func. Count: 9, Neg. LLF: 267.9397982062629
Iteration: 2, Func. Count: 19, Neg. LLF: 155.49085260729865
Iteration: 3, Func. Count: 27, Neg. LLF: 154.52038727065977
Iteration: 4, Func. Count: 35, Neg. LLF: 154.42985782256295
Iteration: 5, Func. Count: 43, Neg. LLF: 154.0736521218918
Iteration: 6, Func. Count: 51, Neg. LLF: 153.79207570324363
Iteration: 7, Func. Count: 59, Neg. LLF: 166.82172533663513
Iteration: 8, Func. Count: 68, Neg. LLF: 165.0046632875986
Iteration: 9, Func. Count: 77, Neg. LLF: 162.94553333072835
Iteration: 10, Func. Count: 86, Neg. LLF: 153.46238799501648
Iteration: 11, Func. Count: 95, Neg. LLF: 153.10789245943346
Iteration: 12, Func. Count: 103, Neg. LLF: 152.77045868934505
Iteration: 13, Func. Count: 111, Neg. LLF: 152.37008410543586
Iteration: 14, Func. Count: 119, Neg. LLF: 151.79082805464859
Iteration: 15, Func. Count: 127, Neg. LLF: 151.80086403536367
Iteration: 16, Func. Count: 136, Neg. LLF: 167.1082235396664
Iteration: 17, Func. Count: 146, Neg. LLF: 151.4659200851642
Iteration: 18, Func. Count: 154, Neg. LLF: 151.43381107109295
Iteration: 19, Func. Count: 162, Neg. LLF: 151.39355855007653
Iteration: 20, Func. Count: 170, Neg. LLF: 151.35062800116117
Iteration: 21, Func. Count: 178, Neg. LLF: 151.33409996070003
Iteration: 22, Func. Count: 186, Neg. LLF: 151.33162848803624
Iteration: 23, Func. Count: 194, Neg. LLF: 151.33144528710375
Iteration: 24, Func. Count: 202, Neg. LLF: 151.33142425064193
Iteration: 25, Func. Count: 209, Neg. LLF: 151.33142418810277
Optimization terminated successfully (Exit mode 0)
Current function value: 151.33142425064193
Iterations: 25
Function evaluations: 209
Gradient evaluations: 25
Iteration: 1, Func. Count: 10, Neg. LLF: 158.63179159625986
Iteration: 2, Func. Count: 20, Neg. LLF: 162.88636503688758
Iteration: 3, Func. Count: 30, Neg. LLF: 156.80734874958497
Iteration: 4, Func. Count: 40, Neg. LLF: 154.69735305427878
Iteration: 5, Func. Count: 49, Neg. LLF: 154.15344183090292
Iteration: 6, Func. Count: 58, Neg. LLF: 156.61429773038174
Iteration: 7, Func. Count: 68, Neg. LLF: 155.71533900754287
Iteration: 8, Func. Count: 78, Neg. LLF: 153.0333994194295
Iteration: 9, Func. Count: 87, Neg. LLF: 155.62618342401228
Iteration: 10, Func. Count: 97, Neg. LLF: 152.3804173637715
Iteration: 11, Func. Count: 106, Neg. LLF: 152.37727525718518
Iteration: 12, Func. Count: 116, Neg. LLF: 151.53629684959446
Iteration: 13, Func. Count: 125, Neg. LLF: 151.34324442986312
Iteration: 14, Func. Count: 134, Neg. LLF: 151.3374570431387
Iteration: 15, Func. Count: 143, Neg. LLF: 151.3346784812939
Iteration: 16, Func. Count: 152, Neg. LLF: 151.33217220881352
Iteration: 17, Func. Count: 161, Neg. LLF: 151.3314826485399
Iteration: 18, Func. Count: 170, Neg. LLF: 151.33142558996985
Iteration: 19, Func. Count: 179, Neg. LLF: 151.3314241915309
Iteration: 20, Func. Count: 187, Neg. LLF: 151.3314241747616
Optimization terminated successfully (Exit mode 0)
Current function value: 151.3314241915309
Iterations: 20
Function evaluations: 187
Gradient evaluations: 20
Iteration: 1, Func. Count: 11, Neg. LLF: 256.2529702150525
Iteration: 2, Func. Count: 22, Neg. LLF: 161.36127781845911
Iteration: 3, Func. Count: 33, Neg. LLF: 149.96005997153318
Iteration: 4, Func. Count: 43, Neg. LLF: 186.07432161712836
Iteration: 5, Func. Count: 54, Neg. LLF: 150.22023268200533
Iteration: 6, Func. Count: 65, Neg. LLF: 149.11207517116804
Iteration: 7, Func. Count: 75, Neg. LLF: 149.01620519554152
Iteration: 8, Func. Count: 85, Neg. LLF: 148.96813113037467
Iteration: 9, Func. Count: 95, Neg. LLF: 148.94836201458696
Iteration: 10, Func. Count: 105, Neg. LLF: 148.94599520202573
Iteration: 11, Func. Count: 115, Neg. LLF: 148.94555461128226
Iteration: 12, Func. Count: 125, Neg. LLF: 148.94552275261438
Iteration: 13, Func. Count: 134, Neg. LLF: 148.9455223469077
Optimization terminated successfully (Exit mode 0)
Current function value: 148.94552275261438
Iterations: 13
Function evaluations: 134
Gradient evaluations: 13
Iteration: 1, Func. Count: 8, Neg. LLF: 154.9253250858374
Iteration: 2, Func. Count: 15, Neg. LLF: 169.0096973685832
Iteration: 3, Func. Count: 23, Neg. LLF: 152.4357615635816
Iteration: 4, Func. Count: 30, Neg. LLF: 152.33102228707952
Iteration: 5, Func. Count: 37, Neg. LLF: 151.5232428562559
Iteration: 6, Func. Count: 44, Neg. LLF: 151.63161602328447
Iteration: 7, Func. Count: 52, Neg. LLF: 151.33213284202364
Iteration: 8, Func. Count: 59, Neg. LLF: 151.33149633601263
Iteration: 9, Func. Count: 66, Neg. LLF: 151.33142835698743
Iteration: 10, Func. Count: 73, Neg. LLF: 151.3314257597488
Iteration: 11, Func. Count: 80, Neg. LLF: 151.3314241778883
Iteration: 12, Func. Count: 86, Neg. LLF: 151.33142414595582
Optimization terminated successfully (Exit mode 0)
Current function value: 151.3314241778883
Iterations: 12
Function evaluations: 86
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 170.42640619561521
Iteration: 2, Func. Count: 18, Neg. LLF: 176.0147725871708
Iteration: 3, Func. Count: 28, Neg. LLF: 157.3521026476761
Iteration: 4, Func. Count: 36, Neg. LLF: 156.93328971560302
Iteration: 5, Func. Count: 44, Neg. LLF: 156.8757200641472
Iteration: 6, Func. Count: 52, Neg. LLF: 156.76854574073485
Iteration: 7, Func. Count: 60, Neg. LLF: 156.76112103440192
Iteration: 8, Func. Count: 68, Neg. LLF: 156.75783647465994
Iteration: 9, Func. Count: 76, Neg. LLF: 156.75528356346086
Iteration: 10, Func. Count: 84, Neg. LLF: 156.75468227480653
Iteration: 11, Func. Count: 92, Neg. LLF: 156.75443290072616
Iteration: 12, Func. Count: 108, Neg. LLF: 156.75466962909587
Iteration: 13, Func. Count: 116, Neg. LLF: 156.75463650966972
Optimization terminated successfully (Exit mode 0)
Current function value: 156.7546689994565
Iterations: 13
Function evaluations: 122
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 282.52662730607574
Iteration: 2, Func. Count: 21, Neg. LLF: 155.31674270764321
Iteration: 3, Func. Count: 30, Neg. LLF: 154.5409891903761
Iteration: 4, Func. Count: 39, Neg. LLF: 154.44516813856177
Iteration: 5, Func. Count: 48, Neg. LLF: 154.16336326883993
Iteration: 6, Func. Count: 57, Neg. LLF: 153.82077793194387
Iteration: 7, Func. Count: 66, Neg. LLF: 164.67442826250564
Iteration: 8, Func. Count: 76, Neg. LLF: 162.4033007974732
Iteration: 9, Func. Count: 86, Neg. LLF: 160.8362668593001
Iteration: 10, Func. Count: 96, Neg. LLF: 159.5032047724444
Iteration: 11, Func. Count: 106, Neg. LLF: 153.2415840893962
Iteration: 12, Func. Count: 116, Neg. LLF: 152.8453268321736
Iteration: 13, Func. Count: 125, Neg. LLF: 152.4246106981884
Iteration: 14, Func. Count: 134, Neg. LLF: 152.04075846516963
Iteration: 15, Func. Count: 143, Neg. LLF: 152.17523949766218
Iteration: 16, Func. Count: 153, Neg. LLF: 151.44928129840255
Iteration: 17, Func. Count: 162, Neg. LLF: 152.4322154565266
Iteration: 18, Func. Count: 172, Neg. LLF: 151.34817426443414
Iteration: 19, Func. Count: 181, Neg. LLF: 151.34136192998784
Iteration: 20, Func. Count: 190, Neg. LLF: 151.3371382060054
Iteration: 21, Func. Count: 199, Neg. LLF: 151.33478415349964
Iteration: 22, Func. Count: 208, Neg. LLF: 151.3321899471601
Iteration: 23, Func. Count: 217, Neg. LLF: 151.33152729524545
Iteration: 24, Func. Count: 226, Neg. LLF: 151.33142807245284
Iteration: 25, Func. Count: 235, Neg. LLF: 151.33142420687975
Iteration: 26, Func. Count: 243, Neg. LLF: 151.33142414434144
Optimization terminated successfully (Exit mode 0)
Current function value: 151.33142420687975
Iterations: 26
Function evaluations: 243
Gradient evaluations: 26
Iteration: 1, Func. Count: 11, Neg. LLF: 157.17340137063556
Iteration: 2, Func. Count: 21, Neg. LLF: 159.64045491520102
Iteration: 3, Func. Count: 32, Neg. LLF: 169.85081041300617
Iteration: 4, Func. Count: 43, Neg. LLF: 163.8455340369776
Iteration: 5, Func. Count: 54, Neg. LLF: 154.53447962788672
Iteration: 6, Func. Count: 65, Neg. LLF: 154.21494513603554
Iteration: 7, Func. Count: 76, Neg. LLF: 152.28738678290196
Iteration: 8, Func. Count: 86, Neg. LLF: 152.5915715110894
Iteration: 9, Func. Count: 97, Neg. LLF: 151.6127195183206
Iteration: 10, Func. Count: 107, Neg. LLF: 151.37585443792082
Iteration: 11, Func. Count: 117, Neg. LLF: 151.33482742354045
Iteration: 12, Func. Count: 127, Neg. LLF: 151.33208753633056
Iteration: 13, Func. Count: 137, Neg. LLF: 151.33143545442897
Iteration: 14, Func. Count: 147, Neg. LLF: 151.33142436586755
Iteration: 15, Func. Count: 156, Neg. LLF: 151.3314243490583
Optimization terminated successfully (Exit mode 0)
Current function value: 151.33142436586755
Iterations: 15
Function evaluations: 156
Gradient evaluations: 15
Iteration: 1, Func. Count: 12, Neg. LLF: 245.4139640541737
Iteration: 2, Func. Count: 24, Neg. LLF: 161.29834633662352
Iteration: 3, Func. Count: 36, Neg. LLF: 150.14887383245798
Iteration: 4, Func. Count: 47, Neg. LLF: 184.1488261020536
Iteration: 5, Func. Count: 59, Neg. LLF: 151.58148516006042
Iteration: 6, Func. Count: 71, Neg. LLF: 149.15198050745758
Iteration: 7, Func. Count: 82, Neg. LLF: 149.05555156757748
Iteration: 8, Func. Count: 93, Neg. LLF: 148.98836964847393
Iteration: 9, Func. Count: 104, Neg. LLF: 148.95629743334996
Iteration: 10, Func. Count: 115, Neg. LLF: 148.94730271427116
Iteration: 11, Func. Count: 126, Neg. LLF: 148.94581818590592
Iteration: 12, Func. Count: 137, Neg. LLF: 148.94552468962297
Iteration: 13, Func. Count: 148, Neg. LLF: 148.9455227226532
Iteration: 14, Func. Count: 158, Neg. LLF: 148.945522316956
Optimization terminated successfully (Exit mode 0)
Current function value: 148.9455227226532
Iterations: 14
Function evaluations: 158
Gradient evaluations: 14
Iteration: 1, Func. Count: 5, Neg. LLF: 160.9110158353141
Iteration: 2, Func. Count: 9, Neg. LLF: 161.00718835593224
Iteration: 3, Func. Count: 14, Neg. LLF: 160.88018505051562
Iteration: 4, Func. Count: 18, Neg. LLF: 160.84511180551124
Iteration: 5, Func. Count: 22, Neg. LLF: 160.81502309565872
Iteration: 6, Func. Count: 26, Neg. LLF: 160.8145032022762
Iteration: 7, Func. Count: 30, Neg. LLF: 160.8144983472304
Iteration: 8, Func. Count: 33, Neg. LLF: 160.81449835508485
Optimization terminated successfully (Exit mode 0)
Current function value: 160.8144983472304
Iterations: 8
Function evaluations: 33
Gradient evaluations: 8
Iteration: 1, Func. Count: 6, Neg. LLF: 189.82603886502415
Iteration: 2, Func. Count: 13, Neg. LLF: 160.12912149452768
Iteration: 3, Func. Count: 19, Neg. LLF: 162.03504885492055
Iteration: 4, Func. Count: 26, Neg. LLF: 159.80923256535894
Iteration: 5, Func. Count: 31, Neg. LLF: 159.80899633584798
Iteration: 6, Func. Count: 36, Neg. LLF: 159.80774129587346
Iteration: 7, Func. Count: 41, Neg. LLF: 159.80344701653115
Iteration: 8, Func. Count: 46, Neg. LLF: 159.80215221159392
Iteration: 9, Func. Count: 51, Neg. LLF: 159.80206025340746
Iteration: 10, Func. Count: 56, Neg. LLF: 159.80205920686248
Iteration: 11, Func. Count: 60, Neg. LLF: 159.80205920686726
Optimization terminated successfully (Exit mode 0)
Current function value: 159.80205920686248
Iterations: 11
Function evaluations: 60
Gradient evaluations: 11
Iteration: 1, Func. Count: 7, Neg. LLF: 161.24053454399208
Iteration: 2, Func. Count: 17, Neg. LLF: 183.6475565803809
Iteration: 3, Func. Count: 25, Neg. LLF: 160.05214019110437
Iteration: 4, Func. Count: 32, Neg. LLF: 159.9200795193138
Iteration: 5, Func. Count: 38, Neg. LLF: 159.9190498235262
Iteration: 6, Func. Count: 44, Neg. LLF: 159.91850677225773
Iteration: 7, Func. Count: 50, Neg. LLF: 159.91746951094717
Iteration: 8, Func. Count: 56, Neg. LLF: 159.91363657169322
Iteration: 9, Func. Count: 62, Neg. LLF: 159.9017440801147
Iteration: 10, Func. Count: 68, Neg. LLF: 159.8439799087581
Iteration: 11, Func. Count: 74, Neg. LLF: 159.8361443482749
Iteration: 12, Func. Count: 80, Neg. LLF: 159.89180212353858
Iteration: 13, Func. Count: 87, Neg. LLF: 159.81690399909297
Iteration: 14, Func. Count: 93, Neg. LLF: 159.8085164008602
Iteration: 15, Func. Count: 99, Neg. LLF: 159.80330503670794
Iteration: 16, Func. Count: 105, Neg. LLF: 159.80217022179474
Iteration: 17, Func. Count: 111, Neg. LLF: 159.80216085575833
Iteration: 18, Func. Count: 118, Neg. LLF: 159.80206132591698
Iteration: 19, Func. Count: 124, Neg. LLF: 159.80205923537616
Iteration: 20, Func. Count: 129, Neg. LLF: 159.80205923953346
Optimization terminated successfully (Exit mode 0)
Current function value: 159.80205923537616
Iterations: 20
Function evaluations: 129
Gradient evaluations: 20
Iteration: 1, Func. Count: 8, Neg. LLF: 162.29625603896187
Iteration: 2, Func. Count: 17, Neg. LLF: 159.15419676216828
Iteration: 3, Func. Count: 24, Neg. LLF: 159.8529725626719
Iteration: 4, Func. Count: 32, Neg. LLF: 161.13826163932686
Iteration: 5, Func. Count: 41, Neg. LLF: 159.1292392584859
Iteration: 6, Func. Count: 49, Neg. LLF: 159.1076065669931
Iteration: 7, Func. Count: 56, Neg. LLF: 159.10597751921821
Iteration: 8, Func. Count: 63, Neg. LLF: 159.10522594002887
Iteration: 9, Func. Count: 70, Neg. LLF: 159.10165540430583
Iteration: 10, Func. Count: 77, Neg. LLF: 159.0981400046216
Iteration: 11, Func. Count: 84, Neg. LLF: 159.09018007632093
Iteration: 12, Func. Count: 91, Neg. LLF: 159.08881953407044
Iteration: 13, Func. Count: 98, Neg. LLF: 159.08861381169316
Iteration: 14, Func. Count: 105, Neg. LLF: 159.0886114731047
Iteration: 15, Func. Count: 111, Neg. LLF: 159.0886114730945
Optimization terminated successfully (Exit mode 0)
Current function value: 159.0886114731047
Iterations: 15
Function evaluations: 111
Gradient evaluations: 15
Iteration: 1, Func. Count: 9, Neg. LLF: 181.10760277325647
Iteration: 2, Func. Count: 18, Neg. LLF: 160.67717718122398
Iteration: 3, Func. Count: 27, Neg. LLF: 162.87132453359504
Iteration: 4, Func. Count: 36, Neg. LLF: 159.1439993008611
Iteration: 5, Func. Count: 44, Neg. LLF: 158.96235148232248
Iteration: 6, Func. Count: 52, Neg. LLF: 159.4802860061393
Iteration: 7, Func. Count: 61, Neg. LLF: 159.26655493833388
Iteration: 8, Func. Count: 70, Neg. LLF: 159.1273099264571
Iteration: 9, Func. Count: 79, Neg. LLF: 158.5770336491021
Iteration: 10, Func. Count: 87, Neg. LLF: 158.37637394169562
Iteration: 11, Func. Count: 95, Neg. LLF: 158.03204325175642
Iteration: 12, Func. Count: 103, Neg. LLF: 157.44580998594597
Iteration: 13, Func. Count: 111, Neg. LLF: 157.15388869863966
Iteration: 14, Func. Count: 119, Neg. LLF: 156.97870865446745
Iteration: 15, Func. Count: 127, Neg. LLF: 156.1216043979668
Iteration: 16, Func. Count: 135, Neg. LLF: 156.1516683374256
Iteration: 17, Func. Count: 144, Neg. LLF: 155.03946711476374
Iteration: 18, Func. Count: 152, Neg. LLF: 167.26150542992892
Iteration: 19, Func. Count: 162, Neg. LLF: 154.98607942468786
Iteration: 20, Func. Count: 171, Neg. LLF: 153.6654279914286
Iteration: 21, Func. Count: 179, Neg. LLF: 153.67401307630806
Iteration: 22, Func. Count: 188, Neg. LLF: 153.64920009709562
Iteration: 23, Func. Count: 196, Neg. LLF: 153.64452845985193
Iteration: 24, Func. Count: 204, Neg. LLF: 153.64438433639086
Iteration: 25, Func. Count: 212, Neg. LLF: 153.64437729927695
Iteration: 26, Func. Count: 219, Neg. LLF: 153.6443769393593
Optimization terminated successfully (Exit mode 0)
Current function value: 153.64437729927695
Iterations: 26
Function evaluations: 219
Gradient evaluations: 26
Iteration: 1, Func. Count: 6, Neg. LLF: 160.32566006523305
Iteration: 2, Func. Count: 11, Neg. LLF: 159.48236329711554
Iteration: 3, Func. Count: 17, Neg. LLF: 178.65100362265312
Iteration: 4, Func. Count: 23, Neg. LLF: 158.96711230555846
Iteration: 5, Func. Count: 28, Neg. LLF: 158.87873363806918
Iteration: 6, Func. Count: 33, Neg. LLF: 158.89085763413738
Iteration: 7, Func. Count: 39, Neg. LLF: 158.86645395643822
Iteration: 8, Func. Count: 45, Neg. LLF: 158.81531152893712
Iteration: 9, Func. Count: 51, Neg. LLF: 158.81138207695594
Iteration: 10, Func. Count: 57, Neg. LLF: 158.66004242370414
Iteration: 11, Func. Count: 63, Neg. LLF: 158.61625199149313
Iteration: 12, Func. Count: 68, Neg. LLF: 158.57924825298647
Iteration: 13, Func. Count: 73, Neg. LLF: 158.55441792739114
Iteration: 14, Func. Count: 78, Neg. LLF: 158.55043366598528
Iteration: 15, Func. Count: 83, Neg. LLF: 158.55022824338056
Iteration: 16, Func. Count: 88, Neg. LLF: 158.55018718049735
Iteration: 17, Func. Count: 93, Neg. LLF: 158.55018459275894
Iteration: 18, Func. Count: 97, Neg. LLF: 158.5501845882321
Optimization terminated successfully (Exit mode 0)
Current function value: 158.55018459275894
Iterations: 18
Function evaluations: 97
Gradient evaluations: 18
Iteration: 1, Func. Count: 7, Neg. LLF: 207.16125363766554
Iteration: 2, Func. Count: 15, Neg. LLF: 168.80045475062357
Iteration: 3, Func. Count: 23, Neg. LLF: 157.60406959639377
Iteration: 4, Func. Count: 29, Neg. LLF: 157.05197447373993
Iteration: 5, Func. Count: 35, Neg. LLF: 157.01841586422907
Iteration: 6, Func. Count: 41, Neg. LLF: 156.94322442730817
Iteration: 7, Func. Count: 47, Neg. LLF: 156.94062352120974
Iteration: 8, Func. Count: 53, Neg. LLF: 156.9394174509337
Iteration: 9, Func. Count: 59, Neg. LLF: 156.93940158886969
Iteration: 10, Func. Count: 65, Neg. LLF: 156.9394005998512
Optimization terminated successfully (Exit mode 0)
Current function value: 156.9394005998512
Iterations: 10
Function evaluations: 65
Gradient evaluations: 10
Iteration: 1, Func. Count: 8, Neg. LLF: 267.8997560276435
Iteration: 2, Func. Count: 17, Neg. LLF: 159.15615304996402
Iteration: 3, Func. Count: 25, Neg. LLF: 157.34533784761555
Iteration: 4, Func. Count: 32, Neg. LLF: 157.107131916666
Iteration: 5, Func. Count: 39, Neg. LLF: 157.08378208416784
Iteration: 6, Func. Count: 47, Neg. LLF: 156.97980787270708
Iteration: 7, Func. Count: 54, Neg. LLF: 156.94141231883398
Iteration: 8, Func. Count: 61, Neg. LLF: 156.9394636607297
Iteration: 9, Func. Count: 68, Neg. LLF: 156.9394018578847
Iteration: 10, Func. Count: 75, Neg. LLF: 156.93940079796968
Iteration: 11, Func. Count: 81, Neg. LLF: 156.93940013280934
Optimization terminated successfully (Exit mode 0)
Current function value: 156.93940079796968
Iterations: 11
Function evaluations: 81
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 163.52716967771227
Iteration: 2, Func. Count: 19, Neg. LLF: 165.39099472212501
Iteration: 3, Func. Count: 28, Neg. LLF: 159.41623732544292
Iteration: 4, Func. Count: 37, Neg. LLF: 157.55563405973365
Iteration: 5, Func. Count: 45, Neg. LLF: 157.04599844043065
Iteration: 6, Func. Count: 53, Neg. LLF: 158.78900012044235
Iteration: 7, Func. Count: 62, Neg. LLF: 156.84946113022062
Iteration: 8, Func. Count: 70, Neg. LLF: 156.78460864345092
Iteration: 9, Func. Count: 78, Neg. LLF: 156.77817673433333
Iteration: 10, Func. Count: 86, Neg. LLF: 156.77599105054878
Iteration: 11, Func. Count: 94, Neg. LLF: 156.7754071136575
Iteration: 12, Func. Count: 102, Neg. LLF: 156.7752939178742
Iteration: 13, Func. Count: 110, Neg. LLF: 156.77523536214815
Iteration: 14, Func. Count: 118, Neg. LLF: 156.77523200613606
Iteration: 15, Func. Count: 125, Neg. LLF: 156.77523156757076
Optimization terminated successfully (Exit mode 0)
Current function value: 156.77523200613606
Iterations: 15
Function evaluations: 125
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 156.6947565708761
Iteration: 2, Func. Count: 19, Neg. LLF: 154.90320044848855
Iteration: 3, Func. Count: 28, Neg. LLF: 156.43860145366244
Iteration: 4, Func. Count: 38, Neg. LLF: 154.36931193783434
Iteration: 5, Func. Count: 48, Neg. LLF: 164.86895161462147
Iteration: 6, Func. Count: 58, Neg. LLF: 154.02917528618835
Iteration: 7, Func. Count: 67, Neg. LLF: 153.94756791576305
Iteration: 8, Func. Count: 76, Neg. LLF: 153.87806838567317
Iteration: 9, Func. Count: 85, Neg. LLF: 153.87235883362246
Iteration: 10, Func. Count: 94, Neg. LLF: 153.87213755921485
Iteration: 11, Func. Count: 103, Neg. LLF: 153.87213710124408
Optimization terminated successfully (Exit mode 0)
Current function value: 153.87213710124408
Iterations: 11
Function evaluations: 103
Gradient evaluations: 11
Iteration: 1, Func. Count: 7, Neg. LLF: 156.74487312739953
Iteration: 2, Func. Count: 13, Neg. LLF: 160.305484815435
Iteration: 3, Func. Count: 20, Neg. LLF: 152.32613980006047
Iteration: 4, Func. Count: 26, Neg. LLF: 152.24706635430667
Iteration: 5, Func. Count: 32, Neg. LLF: 153.6637161099314
Iteration: 6, Func. Count: 41, Neg. LLF: 151.98717898060636
Iteration: 7, Func. Count: 47, Neg. LLF: 151.6109428510827
Iteration: 8, Func. Count: 53, Neg. LLF: 151.55614373675326
Iteration: 9, Func. Count: 60, Neg. LLF: 151.2918424202714
Iteration: 10, Func. Count: 66, Neg. LLF: 151.28855492416193
Iteration: 11, Func. Count: 72, Neg. LLF: 151.2884253848825
Iteration: 12, Func. Count: 78, Neg. LLF: 151.28839401766916
Iteration: 13, Func. Count: 83, Neg. LLF: 151.28839397276943
Optimization terminated successfully (Exit mode 0)
Current function value: 151.28839401766916
Iterations: 13
Function evaluations: 83
Gradient evaluations: 13
Iteration: 1, Func. Count: 8, Neg. LLF: 167.34238255581033
Iteration: 2, Func. Count: 18, Neg. LLF: 171.0677398757936
Iteration: 3, Func. Count: 27, Neg. LLF: 157.57913713045193
Iteration: 4, Func. Count: 34, Neg. LLF: 157.08199309734624
Iteration: 5, Func. Count: 41, Neg. LLF: 157.03009687641324
Iteration: 6, Func. Count: 48, Neg. LLF: 156.88247864183356
Iteration: 7, Func. Count: 55, Neg. LLF: 156.8771375399934
Iteration: 8, Func. Count: 62, Neg. LLF: 156.87683442677286
Iteration: 9, Func. Count: 69, Neg. LLF: 156.87683443266303
Iteration: 10, Func. Count: 76, Neg. LLF: 156.8768305779127
Optimization terminated successfully (Exit mode 0)
Current function value: 156.87683134074476
Iterations: 10
Function evaluations: 76
Gradient evaluations: 10
Iteration: 1, Func. Count: 9, Neg. LLF: 157.10386480781
Iteration: 2, Func. Count: 17, Neg. LLF: 153.05367521622108
Iteration: 3, Func. Count: 25, Neg. LLF: 219.6970998283227
Iteration: 4, Func. Count: 35, Neg. LLF: 160.05313344530626
Iteration: 5, Func. Count: 44, Neg. LLF: 198.74228488441793
Iteration: 6, Func. Count: 54, Neg. LLF: 153.432116877717
Iteration: 7, Func. Count: 63, Neg. LLF: 152.47739317027222
Iteration: 8, Func. Count: 72, Neg. LLF: 151.76777024060885
Iteration: 9, Func. Count: 80, Neg. LLF: 151.3559391458881
Iteration: 10, Func. Count: 88, Neg. LLF: 151.354883312012
Iteration: 11, Func. Count: 97, Neg. LLF: 151.30172782941568
Iteration: 12, Func. Count: 105, Neg. LLF: 151.29343224370638
Iteration: 13, Func. Count: 113, Neg. LLF: 151.28889616661806
Iteration: 14, Func. Count: 121, Neg. LLF: 151.28844210904808
Iteration: 15, Func. Count: 129, Neg. LLF: 151.2883976616036
Iteration: 16, Func. Count: 137, Neg. LLF: 151.28839423280237
Iteration: 17, Func. Count: 144, Neg. LLF: 151.28839416830073
Optimization terminated successfully (Exit mode 0)
Current function value: 151.28839423280237
Iterations: 17
Function evaluations: 144
Gradient evaluations: 17
Iteration: 1, Func. Count: 10, Neg. LLF: 220.5872528685005
Iteration: 2, Func. Count: 20, Neg. LLF: 164.62253935629036
Iteration: 3, Func. Count: 30, Neg. LLF: 178.92399817794563
Iteration: 4, Func. Count: 40, Neg. LLF: 210.59762088680955
Iteration: 5, Func. Count: 50, Neg. LLF: 155.31783939834742
Iteration: 6, Func. Count: 60, Neg. LLF: 156.9514411553793
Iteration: 7, Func. Count: 70, Neg. LLF: 152.5302888218286
Iteration: 8, Func. Count: 79, Neg. LLF: 154.5909614127818
Iteration: 9, Func. Count: 89, Neg. LLF: 151.80736906133123
Iteration: 10, Func. Count: 98, Neg. LLF: 151.56726316969488
Iteration: 11, Func. Count: 107, Neg. LLF: 151.3891182685188
Iteration: 12, Func. Count: 116, Neg. LLF: 151.35961534609703
Iteration: 13, Func. Count: 125, Neg. LLF: 151.3469506158832
Iteration: 14, Func. Count: 134, Neg. LLF: 151.33089465803448
Iteration: 15, Func. Count: 143, Neg. LLF: 151.30651930099157
Iteration: 16, Func. Count: 152, Neg. LLF: 151.29132415249893
Iteration: 17, Func. Count: 161, Neg. LLF: 151.28890552233338
Iteration: 18, Func. Count: 170, Neg. LLF: 151.28839593767472
Iteration: 19, Func. Count: 179, Neg. LLF: 151.28839393026064
Iteration: 20, Func. Count: 187, Neg. LLF: 151.28839390426913
Optimization terminated successfully (Exit mode 0)
Current function value: 151.28839393026064
Iterations: 20
Function evaluations: 187
Gradient evaluations: 20
Iteration: 1, Func. Count: 11, Neg. LLF: 271.6420564212268
Iteration: 2, Func. Count: 22, Neg. LLF: 157.9332634354846
Iteration: 3, Func. Count: 33, Neg. LLF: 149.26845820737637
Iteration: 4, Func. Count: 43, Neg. LLF: 192.2864868194244
Iteration: 5, Func. Count: 55, Neg. LLF: 149.0233743866488
Iteration: 6, Func. Count: 65, Neg. LLF: 148.98944870676672
Iteration: 7, Func. Count: 75, Neg. LLF: 148.96613633367417
Iteration: 8, Func. Count: 85, Neg. LLF: 148.94834076175354
Iteration: 9, Func. Count: 95, Neg. LLF: 148.94555602810732
Iteration: 10, Func. Count: 105, Neg. LLF: 148.9455240348162
Iteration: 11, Func. Count: 115, Neg. LLF: 148.94552269309168
Iteration: 12, Func. Count: 124, Neg. LLF: 148.9455222874121
Optimization terminated successfully (Exit mode 0)
Current function value: 148.94552269309168
Iterations: 12
Function evaluations: 124
Gradient evaluations: 12
Iteration: 1, Func. Count: 8, Neg. LLF: 155.71379557962473
Iteration: 2, Func. Count: 15, Neg. LLF: 162.79498963151525
Iteration: 3, Func. Count: 23, Neg. LLF: 152.33692976025682
Iteration: 4, Func. Count: 30, Neg. LLF: 152.2552999121865
Iteration: 5, Func. Count: 37, Neg. LLF: 154.05431173099382
Iteration: 6, Func. Count: 47, Neg. LLF: 152.7778644634939
Iteration: 7, Func. Count: 55, Neg. LLF: 151.58716925908465
Iteration: 8, Func. Count: 62, Neg. LLF: 151.33796098281508
Iteration: 9, Func. Count: 69, Neg. LLF: 151.30445753031148
Iteration: 10, Func. Count: 76, Neg. LLF: 151.2894674210606
Iteration: 11, Func. Count: 83, Neg. LLF: 151.28844086167862
Iteration: 12, Func. Count: 90, Neg. LLF: 151.28839562338698
Iteration: 13, Func. Count: 97, Neg. LLF: 151.2883940449472
Iteration: 14, Func. Count: 103, Neg. LLF: 151.28839403185378
Optimization terminated successfully (Exit mode 0)
Current function value: 151.2883940449472
Iterations: 14
Function evaluations: 103
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 165.67427267131032
Iteration: 2, Func. Count: 21, Neg. LLF: 168.91009741169609
Iteration: 3, Func. Count: 31, Neg. LLF: 157.6107949993938
Iteration: 4, Func. Count: 39, Neg. LLF: 157.05879482825918
Iteration: 5, Func. Count: 47, Neg. LLF: 157.0010132380382
Iteration: 6, Func. Count: 55, Neg. LLF: 156.92591296709824
Iteration: 7, Func. Count: 63, Neg. LLF: 156.89219659552248
Iteration: 8, Func. Count: 71, Neg. LLF: 156.8775771028321
Iteration: 9, Func. Count: 79, Neg. LLF: 156.87683855267332
Iteration: 10, Func. Count: 87, Neg. LLF: 156.8768312499037
Iteration: 11, Func. Count: 94, Neg. LLF: 156.87683048691216
Optimization terminated successfully (Exit mode 0)
Current function value: 156.8768312499037
Iterations: 11
Function evaluations: 94
Gradient evaluations: 11
Iteration: 1, Func. Count: 10, Neg. LLF: 218.89207130134352
Iteration: 2, Func. Count: 20, Neg. LLF: 161.59737316082828
Iteration: 3, Func. Count: 30, Neg. LLF: 154.251559471065
Iteration: 4, Func. Count: 39, Neg. LLF: 154.14902133244965
Iteration: 5, Func. Count: 48, Neg. LLF: 154.06966206781945
Iteration: 6, Func. Count: 57, Neg. LLF: 153.9577990400215
Iteration: 7, Func. Count: 66, Neg. LLF: 180.01728666775068
Iteration: 8, Func. Count: 76, Neg. LLF: 170.48401471269466
Iteration: 9, Func. Count: 86, Neg. LLF: 158.5186464216141
Iteration: 10, Func. Count: 96, Neg. LLF: 153.51370439498024
Iteration: 11, Func. Count: 105, Neg. LLF: 153.14646428093053
Iteration: 12, Func. Count: 114, Neg. LLF: 157.62420507275132
Iteration: 13, Func. Count: 124, Neg. LLF: 152.44617765615968
Iteration: 14, Func. Count: 133, Neg. LLF: 153.5889580314942
Iteration: 15, Func. Count: 143, Neg. LLF: 151.82785145083915
Iteration: 16, Func. Count: 152, Neg. LLF: 152.81523805777712
Iteration: 17, Func. Count: 162, Neg. LLF: 154.56397242176547
Iteration: 18, Func. Count: 172, Neg. LLF: 151.45800989580752
Iteration: 19, Func. Count: 181, Neg. LLF: 151.4066576985319
Iteration: 20, Func. Count: 190, Neg. LLF: 151.38643594538027
Iteration: 21, Func. Count: 199, Neg. LLF: 151.30714769310984
Iteration: 22, Func. Count: 208, Neg. LLF: 151.31005474333708
Iteration: 23, Func. Count: 218, Neg. LLF: 151.28958967814341
Iteration: 24, Func. Count: 227, Neg. LLF: 151.28849148543372
Iteration: 25, Func. Count: 236, Neg. LLF: 151.288453027324
Iteration: 26, Func. Count: 245, Neg. LLF: 151.28842722868598
Iteration: 27, Func. Count: 254, Neg. LLF: 151.28840701925694
Iteration: 28, Func. Count: 263, Neg. LLF: 151.28839572760089
Iteration: 29, Func. Count: 272, Neg. LLF: 151.2883940168046
Iteration: 30, Func. Count: 280, Neg. LLF: 151.28839395233214
Optimization terminated successfully (Exit mode 0)
Current function value: 151.2883940168046
Iterations: 30
Function evaluations: 280
Gradient evaluations: 30
Iteration: 1, Func. Count: 11, Neg. LLF: 211.7193871363498
Iteration: 2, Func. Count: 22, Neg. LLF: 163.2187558346693
Iteration: 3, Func. Count: 33, Neg. LLF: 161.20367088060092
Iteration: 4, Func. Count: 44, Neg. LLF: 159.32110666945402
Iteration: 5, Func. Count: 55, Neg. LLF: 159.24889859059988
Iteration: 6, Func. Count: 66, Neg. LLF: 158.47269995298836
Iteration: 7, Func. Count: 77, Neg. LLF: 158.9333990918549
Iteration: 8, Func. Count: 88, Neg. LLF: 163.47985803223432
Iteration: 9, Func. Count: 99, Neg. LLF: 156.58021029477536
Iteration: 10, Func. Count: 110, Neg. LLF: 154.50807055573821
Iteration: 11, Func. Count: 121, Neg. LLF: 153.20307451974807
Iteration: 12, Func. Count: 132, Neg. LLF: 152.06405296341404
Iteration: 13, Func. Count: 142, Neg. LLF: 151.7592034944293
Iteration: 14, Func. Count: 152, Neg. LLF: 151.49561300736275
Iteration: 15, Func. Count: 162, Neg. LLF: 151.46916572944264
Iteration: 16, Func. Count: 172, Neg. LLF: 151.39570593090565
Iteration: 17, Func. Count: 182, Neg. LLF: 151.37439007922188
Iteration: 18, Func. Count: 192, Neg. LLF: 151.35252196604725
Iteration: 19, Func. Count: 202, Neg. LLF: 151.3146413991001
Iteration: 20, Func. Count: 212, Neg. LLF: 151.29262573080157
Iteration: 21, Func. Count: 222, Neg. LLF: 151.2887264571822
Iteration: 22, Func. Count: 232, Neg. LLF: 151.28841227470753
Iteration: 23, Func. Count: 242, Neg. LLF: 151.28839398751094
Iteration: 24, Func. Count: 251, Neg. LLF: 151.288393961529
Optimization terminated successfully (Exit mode 0)
Current function value: 151.28839398751094
Iterations: 24
Function evaluations: 251
Gradient evaluations: 24
Iteration: 1, Func. Count: 12, Neg. LLF: 240.62306923913047
Iteration: 2, Func. Count: 24, Neg. LLF: 160.50275094260599
Iteration: 3, Func. Count: 36, Neg. LLF: 149.42320492737488
Iteration: 4, Func. Count: 47, Neg. LLF: 187.6132896516003
Iteration: 5, Func. Count: 60, Neg. LLF: 149.09752576356837
Iteration: 6, Func. Count: 71, Neg. LLF: 149.04186066906243
Iteration: 7, Func. Count: 82, Neg. LLF: 148.99449210969644
Iteration: 8, Func. Count: 93, Neg. LLF: 148.96343447790372
Iteration: 9, Func. Count: 104, Neg. LLF: 148.9471370769331
Iteration: 10, Func. Count: 115, Neg. LLF: 148.94557798442872
Iteration: 11, Func. Count: 126, Neg. LLF: 148.94552484432802
Iteration: 12, Func. Count: 137, Neg. LLF: 148.94552272110178
Iteration: 13, Func. Count: 147, Neg. LLF: 148.94552231536372
Optimization terminated successfully (Exit mode 0)
Current function value: 148.94552272110178
Iterations: 13
Function evaluations: 147
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 154.80409831268307
Iteration: 2, Func. Count: 17, Neg. LLF: 164.20860154341437
Iteration: 3, Func. Count: 26, Neg. LLF: 152.3389316956743
Iteration: 4, Func. Count: 34, Neg. LLF: 152.25412491813364
Iteration: 5, Func. Count: 42, Neg. LLF: 157.07513132185974
Iteration: 6, Func. Count: 53, Neg. LLF: 151.6202099628594
Iteration: 7, Func. Count: 61, Neg. LLF: 154.24961108289486
Iteration: 8, Func. Count: 70, Neg. LLF: 151.29127131174766
Iteration: 9, Func. Count: 78, Neg. LLF: 151.28958500897346
Iteration: 10, Func. Count: 86, Neg. LLF: 151.2883988458356
Iteration: 11, Func. Count: 94, Neg. LLF: 151.288394714369
Iteration: 12, Func. Count: 102, Neg. LLF: 151.2883939281425
Optimization terminated successfully (Exit mode 0)
Current function value: 151.2883939281425
Iterations: 12
Function evaluations: 102
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 353.8895112564875
Iteration: 2, Func. Count: 21, Neg. LLF: 164.31873526915444
Iteration: 3, Func. Count: 32, Neg. LLF: 157.31717387089859
Iteration: 4, Func. Count: 41, Neg. LLF: 156.98746083306355
Iteration: 5, Func. Count: 50, Neg. LLF: 156.94064252270186
Iteration: 6, Func. Count: 59, Neg. LLF: 156.90301839328004
Iteration: 7, Func. Count: 68, Neg. LLF: 156.87511837735613
Iteration: 8, Func. Count: 77, Neg. LLF: 156.77577345707564
Iteration: 9, Func. Count: 86, Neg. LLF: 156.75884700511142
Iteration: 10, Func. Count: 95, Neg. LLF: 156.7547342279146
Iteration: 11, Func. Count: 104, Neg. LLF: 156.7539547595913
Iteration: 12, Func. Count: 123, Neg. LLF: 156.7546470052655
Iteration: 13, Func. Count: 132, Neg. LLF: 156.76870142265042
Optimization terminated successfully (Exit mode 0)
Current function value: 156.75464694631137
Iterations: 14
Function evaluations: 135
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 167.10168445825713
Iteration: 2, Func. Count: 22, Neg. LLF: 186.3067642317563
Iteration: 3, Func. Count: 34, Neg. LLF: 155.1357795589762
Iteration: 4, Func. Count: 44, Neg. LLF: 154.52238716964982
Iteration: 5, Func. Count: 54, Neg. LLF: 154.36636067029963
Iteration: 6, Func. Count: 64, Neg. LLF: 154.1797821099723
Iteration: 7, Func. Count: 74, Neg. LLF: 154.02218356754005
Iteration: 8, Func. Count: 84, Neg. LLF: 187.4425651747212
Iteration: 9, Func. Count: 95, Neg. LLF: 176.07225832858853
Iteration: 10, Func. Count: 106, Neg. LLF: 167.8035619196541
Iteration: 11, Func. Count: 117, Neg. LLF: 160.41653291338523
Iteration: 12, Func. Count: 128, Neg. LLF: 160.82364948126494
Iteration: 13, Func. Count: 139, Neg. LLF: 155.7303431992912
Iteration: 14, Func. Count: 150, Neg. LLF: 152.69760335906108
Iteration: 15, Func. Count: 160, Neg. LLF: 152.4173964913048
Iteration: 16, Func. Count: 170, Neg. LLF: 151.80673440759833
Iteration: 17, Func. Count: 180, Neg. LLF: 151.60584609595318
Iteration: 18, Func. Count: 190, Neg. LLF: 151.36850507446667
Iteration: 19, Func. Count: 200, Neg. LLF: 151.31311014790998
Iteration: 20, Func. Count: 210, Neg. LLF: 151.29448106287035
Iteration: 21, Func. Count: 220, Neg. LLF: 151.28981692297572
Iteration: 22, Func. Count: 230, Neg. LLF: 151.28867653384347
Iteration: 23, Func. Count: 240, Neg. LLF: 151.28843634632352
Iteration: 24, Func. Count: 250, Neg. LLF: 151.2883995275547
Iteration: 25, Func. Count: 260, Neg. LLF: 151.28839452166162
Iteration: 26, Func. Count: 269, Neg. LLF: 151.2883944570856
Optimization terminated successfully (Exit mode 0)
Current function value: 151.28839452166162
Iterations: 26
Function evaluations: 269
Gradient evaluations: 26
Iteration: 1, Func. Count: 12, Neg. LLF: 209.59656377038482
Iteration: 2, Func. Count: 24, Neg. LLF: 162.0325316727759
Iteration: 3, Func. Count: 36, Neg. LLF: 159.45901871026507
Iteration: 4, Func. Count: 48, Neg. LLF: 165.53385697817998
Iteration: 5, Func. Count: 60, Neg. LLF: 184.66423489391244
Iteration: 6, Func. Count: 72, Neg. LLF: 153.13733590809417
Iteration: 7, Func. Count: 83, Neg. LLF: 154.45712923671738
Iteration: 8, Func. Count: 95, Neg. LLF: 157.28728873257248
Iteration: 9, Func. Count: 108, Neg. LLF: 154.79487370544243
Iteration: 10, Func. Count: 121, Neg. LLF: 153.38479696677754
Iteration: 11, Func. Count: 133, Neg. LLF: 152.05028366202382
Iteration: 12, Func. Count: 144, Neg. LLF: 151.48995852779873
Iteration: 13, Func. Count: 155, Neg. LLF: 151.3991790984651
Iteration: 14, Func. Count: 166, Neg. LLF: 151.38187680569786
Iteration: 15, Func. Count: 177, Neg. LLF: 151.36601941303945
Iteration: 16, Func. Count: 188, Neg. LLF: 151.30562708858687
Iteration: 17, Func. Count: 199, Neg. LLF: 151.28965467179674
Iteration: 18, Func. Count: 210, Neg. LLF: 151.288408550805
Iteration: 19, Func. Count: 221, Neg. LLF: 151.28839462447309
Iteration: 20, Func. Count: 232, Neg. LLF: 151.2883941525194
Optimization terminated successfully (Exit mode 0)
Current function value: 151.2883941525194
Iterations: 20
Function evaluations: 232
Gradient evaluations: 20
Iteration: 1, Func. Count: 13, Neg. LLF: 232.28728868377289
Iteration: 2, Func. Count: 26, Neg. LLF: 161.13475259541494
Iteration: 3, Func. Count: 39, Neg. LLF: 149.54229879986056
Iteration: 4, Func. Count: 51, Neg. LLF: 187.81310835100732
Iteration: 5, Func. Count: 65, Neg. LLF: 149.21003412230084
Iteration: 6, Func. Count: 78, Neg. LLF: 149.07627928613383
Iteration: 7, Func. Count: 90, Neg. LLF: 148.993779631939
Iteration: 8, Func. Count: 102, Neg. LLF: 148.96344554759594
Iteration: 9, Func. Count: 114, Neg. LLF: 148.94573285600848
Iteration: 10, Func. Count: 126, Neg. LLF: 148.94553596535076
Iteration: 11, Func. Count: 138, Neg. LLF: 148.94552286455243
Iteration: 12, Func. Count: 149, Neg. LLF: 148.94552245869932
Optimization terminated successfully (Exit mode 0)
Current function value: 148.94552286455243
Iterations: 12
Function evaluations: 149
Gradient evaluations: 12
Iteration: 1, Func. Count: 6, Neg. LLF: 159.6136911775585
Iteration: 2, Func. Count: 11, Neg. LLF: 161.43151158144684
Iteration: 3, Func. Count: 17, Neg. LLF: 158.57669403312516
Iteration: 4, Func. Count: 22, Neg. LLF: 160.3600006147744
Iteration: 5, Func. Count: 30, Neg. LLF: 158.54817860615762
Iteration: 6, Func. Count: 35, Neg. LLF: 158.42634383084334
Iteration: 7, Func. Count: 40, Neg. LLF: 158.38936881146037
Iteration: 8, Func. Count: 45, Neg. LLF: 158.38245953351307
Iteration: 9, Func. Count: 50, Neg. LLF: 158.3824422234185
Iteration: 10, Func. Count: 54, Neg. LLF: 158.38244217718952
Optimization terminated successfully (Exit mode 0)
Current function value: 158.3824422234185
Iterations: 10
Function evaluations: 54
Gradient evaluations: 10
Iteration: 1, Func. Count: 7, Neg. LLF: 160.89791431300952
Iteration: 2, Func. Count: 16, Neg. LLF: 180.64874192879967
Iteration: 3, Func. Count: 24, Neg. LLF: 160.89349716849426
Iteration: 4, Func. Count: 31, Neg. LLF: 159.65220848735018
Iteration: 5, Func. Count: 38, Neg. LLF: 159.62131184926605
Iteration: 6, Func. Count: 44, Neg. LLF: 159.6144949326249
Iteration: 7, Func. Count: 50, Neg. LLF: 159.38880777908489
Iteration: 8, Func. Count: 56, Neg. LLF: 158.79628704443888
Iteration: 9, Func. Count: 62, Neg. LLF: 158.54468621152552
Iteration: 10, Func. Count: 68, Neg. LLF: 158.15821877886603
Iteration: 11, Func. Count: 74, Neg. LLF: 159.1581648067642
Iteration: 12, Func. Count: 81, Neg. LLF: 158.38346096085226
Iteration: 13, Func. Count: 88, Neg. LLF: 157.5131845437489
Iteration: 14, Func. Count: 94, Neg. LLF: 157.29448974120513
Iteration: 15, Func. Count: 100, Neg. LLF: 157.2565464670749
Iteration: 16, Func. Count: 106, Neg. LLF: 157.24438334396385
Iteration: 17, Func. Count: 112, Neg. LLF: 157.2416917555904
Iteration: 18, Func. Count: 118, Neg. LLF: 157.24161991039202
Iteration: 19, Func. Count: 124, Neg. LLF: 157.24161457085938
Iteration: 20, Func. Count: 129, Neg. LLF: 157.2416141286759
Optimization terminated successfully (Exit mode 0)
Current function value: 157.24161457085938
Iterations: 20
Function evaluations: 129
Gradient evaluations: 20
Iteration: 1, Func. Count: 8, Neg. LLF: 159.33678627704555
Iteration: 2, Func. Count: 16, Neg. LLF: 159.46487913709115
Iteration: 3, Func. Count: 24, Neg. LLF: 158.4381323103592
Iteration: 4, Func. Count: 31, Neg. LLF: 158.20490445938518
Iteration: 5, Func. Count: 38, Neg. LLF: 159.31181246852236
Iteration: 6, Func. Count: 48, Neg. LLF: 182.57939757257324
Iteration: 7, Func. Count: 57, Neg. LLF: 157.81892033027847
Iteration: 8, Func. Count: 64, Neg. LLF: 157.7745401844374
Iteration: 9, Func. Count: 71, Neg. LLF: 157.71651577754653
Iteration: 10, Func. Count: 78, Neg. LLF: 157.64969299539172
Iteration: 11, Func. Count: 85, Neg. LLF: 157.47416179460754
Iteration: 12, Func. Count: 92, Neg. LLF: 157.4336019008728
Iteration: 13, Func. Count: 99, Neg. LLF: 157.41875821153056
Iteration: 14, Func. Count: 106, Neg. LLF: 157.41658155472305
Iteration: 15, Func. Count: 113, Neg. LLF: 157.41624104239082
Iteration: 16, Func. Count: 120, Neg. LLF: 157.41622520567347
Iteration: 17, Func. Count: 126, Neg. LLF: 157.41622515636826
Optimization terminated successfully (Exit mode 0)
Current function value: 157.41622520567347
Iterations: 17
Function evaluations: 126
Gradient evaluations: 17
Iteration: 1, Func. Count: 9, Neg. LLF: 183.5032260852757
Iteration: 2, Func. Count: 19, Neg. LLF: 159.43179418632505
Iteration: 3, Func. Count: 27, Neg. LLF: 161.4811401104504
Iteration: 4, Func. Count: 36, Neg. LLF: 164.63305471172617
Iteration: 5, Func. Count: 46, Neg. LLF: 159.34367758089027
Iteration: 6, Func. Count: 54, Neg. LLF: 160.52737804141412
Iteration: 7, Func. Count: 63, Neg. LLF: 159.5625845490439
Iteration: 8, Func. Count: 72, Neg. LLF: 157.5712887746263
Iteration: 9, Func. Count: 80, Neg. LLF: 157.55641451619843
Iteration: 10, Func. Count: 88, Neg. LLF: 157.53983561611506
Iteration: 11, Func. Count: 96, Neg. LLF: 157.4864073743104
Iteration: 12, Func. Count: 104, Neg. LLF: 157.4554596048455
Iteration: 13, Func. Count: 112, Neg. LLF: 157.4337976305783
Iteration: 14, Func. Count: 120, Neg. LLF: 157.41695505331052
Iteration: 15, Func. Count: 128, Neg. LLF: 157.4163083557165
Iteration: 16, Func. Count: 136, Neg. LLF: 157.41625220379993
Iteration: 17, Func. Count: 144, Neg. LLF: 157.43106525460956
Optimization terminated successfully (Exit mode 0)
Current function value: 157.41625201836737
Iterations: 18
Function evaluations: 147
Gradient evaluations: 17
Iteration: 1, Func. Count: 10, Neg. LLF: 161.13054697342739
Iteration: 2, Func. Count: 21, Neg. LLF: 162.60969772671498
Iteration: 3, Func. Count: 31, Neg. LLF: 159.27961564007703
Iteration: 4, Func. Count: 40, Neg. LLF: 184.7313702407748
Iteration: 5, Func. Count: 50, Neg. LLF: 158.94969493060435
Iteration: 6, Func. Count: 59, Neg. LLF: 158.83378676525567
Iteration: 7, Func. Count: 68, Neg. LLF: 158.89665941641175
Iteration: 8, Func. Count: 78, Neg. LLF: 158.53759152130237
Iteration: 9, Func. Count: 88, Neg. LLF: 157.84177953738612
Iteration: 10, Func. Count: 97, Neg. LLF: 157.66433264207808
Iteration: 11, Func. Count: 106, Neg. LLF: 157.54915807956812
Iteration: 12, Func. Count: 115, Neg. LLF: 157.28097799696505
Iteration: 13, Func. Count: 124, Neg. LLF: 155.70435031249193
Iteration: 14, Func. Count: 133, Neg. LLF: 153.96806077577293
Iteration: 15, Func. Count: 142, Neg. LLF: 155.03287215021814
Iteration: 16, Func. Count: 153, Neg. LLF: 153.67209360416444
Iteration: 17, Func. Count: 162, Neg. LLF: 153.65523313054422
Iteration: 18, Func. Count: 171, Neg. LLF: 153.64619267840837
Iteration: 19, Func. Count: 180, Neg. LLF: 153.6445223232322
Iteration: 20, Func. Count: 189, Neg. LLF: 153.64432609825897
Iteration: 21, Func. Count: 198, Neg. LLF: 153.64427719623166
Iteration: 22, Func. Count: 208, Neg. LLF: 153.66139564607062
Iteration: 23, Func. Count: 220, Neg. LLF: 153.6444825054004
Iteration: 24, Func. Count: 231, Neg. LLF: 153.64437730617922
Iteration: 25, Func. Count: 241, Neg. LLF: 153.64437725764932
Iteration: 26, Func. Count: 249, Neg. LLF: 153.6443768977266
Optimization terminated successfully (Exit mode 0)
Current function value: 153.64437725764932
Iterations: 27
Function evaluations: 249
Gradient evaluations: 26
Iteration: 1, Func. Count: 7, Neg. LLF: 163.03637753717322
Iteration: 2, Func. Count: 14, Neg. LLF: 159.86100249720718
Iteration: 3, Func. Count: 21, Neg. LLF: 158.6096558011651
Iteration: 4, Func. Count: 27, Neg. LLF: 158.85931779768313
Iteration: 5, Func. Count: 35, Neg. LLF: 158.4824950945968
Iteration: 6, Func. Count: 41, Neg. LLF: 158.4990278864959
Iteration: 7, Func. Count: 48, Neg. LLF: 158.43556940423593
Iteration: 8, Func. Count: 54, Neg. LLF: 158.39513049537257
Iteration: 9, Func. Count: 60, Neg. LLF: 158.28344031577518
Iteration: 10, Func. Count: 66, Neg. LLF: 158.23887704121415
Iteration: 11, Func. Count: 72, Neg. LLF: 158.22651525998634
Iteration: 12, Func. Count: 78, Neg. LLF: 158.22529834659176
Iteration: 13, Func. Count: 84, Neg. LLF: 158.22502004546638
Iteration: 14, Func. Count: 90, Neg. LLF: 158.2250192394061
Optimization terminated successfully (Exit mode 0)
Current function value: 158.2250192394061
Iterations: 14
Function evaluations: 90
Gradient evaluations: 14
Iteration: 1, Func. Count: 8, Neg. LLF: 207.12295815387617
Iteration: 2, Func. Count: 17, Neg. LLF: 169.47562509545767
Iteration: 3, Func. Count: 26, Neg. LLF: 157.61491739431597
Iteration: 4, Func. Count: 33, Neg. LLF: 201.95300517716265
Iteration: 5, Func. Count: 42, Neg. LLF: 158.78010461050246
Iteration: 6, Func. Count: 50, Neg. LLF: 157.05262272189302
Iteration: 7, Func. Count: 57, Neg. LLF: 156.9852897000154
Iteration: 8, Func. Count: 64, Neg. LLF: 156.97890108429854
Iteration: 9, Func. Count: 72, Neg. LLF: 156.94080459585194
Iteration: 10, Func. Count: 79, Neg. LLF: 156.9399814928522
Iteration: 11, Func. Count: 86, Neg. LLF: 156.93940500800747
Iteration: 12, Func. Count: 93, Neg. LLF: 156.939400733538
Iteration: 13, Func. Count: 99, Neg. LLF: 156.9394000678326
Optimization terminated successfully (Exit mode 0)
Current function value: 156.939400733538
Iterations: 13
Function evaluations: 99
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 271.4860587205859
Iteration: 2, Func. Count: 19, Neg. LLF: 159.3528567581476
Iteration: 3, Func. Count: 28, Neg. LLF: 157.2387941891158
Iteration: 4, Func. Count: 36, Neg. LLF: 157.09122044577578
Iteration: 5, Func. Count: 44, Neg. LLF: 157.0605193987057
Iteration: 6, Func. Count: 52, Neg. LLF: 156.98333380760022
Iteration: 7, Func. Count: 60, Neg. LLF: 156.95429576430303
Iteration: 8, Func. Count: 68, Neg. LLF: 156.94066757114996
Iteration: 9, Func. Count: 76, Neg. LLF: 156.93944463159826
Iteration: 10, Func. Count: 84, Neg. LLF: 156.93940166741146
Iteration: 11, Func. Count: 92, Neg. LLF: 156.93940064612366
Iteration: 12, Func. Count: 99, Neg. LLF: 156.9393999814328
Optimization terminated successfully (Exit mode 0)
Current function value: 156.93940064612366
Iterations: 12
Function evaluations: 99
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 164.05814905229408
Iteration: 2, Func. Count: 20, Neg. LLF: 172.4280389713484
Iteration: 3, Func. Count: 31, Neg. LLF: 157.68035377789815
Iteration: 4, Func. Count: 40, Neg. LLF: 157.10590538146164
Iteration: 5, Func. Count: 49, Neg. LLF: 157.68623629670267
Iteration: 6, Func. Count: 59, Neg. LLF: 157.46697463345544
Iteration: 7, Func. Count: 69, Neg. LLF: 156.77979370912215
Iteration: 8, Func. Count: 78, Neg. LLF: 156.77539322774763
Iteration: 9, Func. Count: 87, Neg. LLF: 156.77529603902715
Iteration: 10, Func. Count: 96, Neg. LLF: 156.77525274961476
Iteration: 11, Func. Count: 105, Neg. LLF: 156.7752330338896
Iteration: 12, Func. Count: 114, Neg. LLF: 156.77523188578502
Iteration: 13, Func. Count: 122, Neg. LLF: 156.77523144670647
Optimization terminated successfully (Exit mode 0)
Current function value: 156.77523188578502
Iterations: 13
Function evaluations: 122
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 158.6257186564278
Iteration: 2, Func. Count: 22, Neg. LLF: 163.87270277115192
Iteration: 3, Func. Count: 33, Neg. LLF: 154.6318875704103
Iteration: 4, Func. Count: 43, Neg. LLF: 154.40050854403344
Iteration: 5, Func. Count: 53, Neg. LLF: 161.96808270488145
Iteration: 6, Func. Count: 64, Neg. LLF: 154.09066153245607
Iteration: 7, Func. Count: 74, Neg. LLF: 154.0162395230121
Iteration: 8, Func. Count: 84, Neg. LLF: 153.9314451029252
Iteration: 9, Func. Count: 94, Neg. LLF: 153.87918638373264
Iteration: 10, Func. Count: 104, Neg. LLF: 153.87235764723374
Iteration: 11, Func. Count: 114, Neg. LLF: 153.87220080192733
Iteration: 12, Func. Count: 124, Neg. LLF: 153.87180510258455
Iteration: 13, Func. Count: 134, Neg. LLF: 153.87232275174784
Iteration: 14, Func. Count: 145, Neg. LLF: 153.87783855870745
Iteration: 15, Func. Count: 157, Neg. LLF: 153.87232959935162
Iteration: 16, Func. Count: 169, Neg. LLF: 153.87213704857106
Iteration: 17, Func. Count: 178, Neg. LLF: 153.8721364594225
Optimization terminated successfully (Exit mode 0)
Current function value: 153.87213704857106
Iterations: 18
Function evaluations: 178
Gradient evaluations: 17
Iteration: 1, Func. Count: 8, Neg. LLF: 160.43440960723657
Iteration: 2, Func. Count: 16, Neg. LLF: 164.4324890597933
Iteration: 3, Func. Count: 24, Neg. LLF: 152.70756949865694
Iteration: 4, Func. Count: 31, Neg. LLF: 152.49100628170916
Iteration: 5, Func. Count: 38, Neg. LLF: 152.1168476233388
Iteration: 6, Func. Count: 45, Neg. LLF: 152.00779741514356
Iteration: 7, Func. Count: 52, Neg. LLF: 151.91883226167442
Iteration: 8, Func. Count: 59, Neg. LLF: 151.85830072295857
Iteration: 9, Func. Count: 66, Neg. LLF: 155.13453908853404
Iteration: 10, Func. Count: 76, Neg. LLF: 152.72842211410415
Iteration: 11, Func. Count: 84, Neg. LLF: 151.26910752291423
Iteration: 12, Func. Count: 91, Neg. LLF: 151.27159232916483
Iteration: 13, Func. Count: 99, Neg. LLF: 151.23342742293354
Iteration: 14, Func. Count: 106, Neg. LLF: 151.23257016136395
Iteration: 15, Func. Count: 113, Neg. LLF: 151.23240097705852
Iteration: 16, Func. Count: 120, Neg. LLF: 151.2323891341676
Iteration: 17, Func. Count: 126, Neg. LLF: 151.23238908797472
Optimization terminated successfully (Exit mode 0)
Current function value: 151.2323891341676
Iterations: 17
Function evaluations: 126
Gradient evaluations: 17
Iteration: 1, Func. Count: 9, Neg. LLF: 167.62141552850218
Iteration: 2, Func. Count: 20, Neg. LLF: 171.83597792481555
Iteration: 3, Func. Count: 30, Neg. LLF: 157.57771911106084
Iteration: 4, Func. Count: 38, Neg. LLF: 157.08802892659895
Iteration: 5, Func. Count: 46, Neg. LLF: 157.03545493110335
Iteration: 6, Func. Count: 54, Neg. LLF: 156.88180663386652
Iteration: 7, Func. Count: 62, Neg. LLF: 156.87712947781452
Iteration: 8, Func. Count: 70, Neg. LLF: 156.87684852683617
Iteration: 9, Func. Count: 78, Neg. LLF: 156.87684477102104
Iteration: 10, Func. Count: 87, Neg. LLF: 156.8768312125075
Optimization terminated successfully (Exit mode 0)
Current function value: 156.8768312125075
Iterations: 10
Function evaluations: 87
Gradient evaluations: 10
Iteration: 1, Func. Count: 10, Neg. LLF: 157.1795233931582
Iteration: 2, Func. Count: 19, Neg. LLF: 153.23525006848274
Iteration: 3, Func. Count: 28, Neg. LLF: 208.9013834616608
Iteration: 4, Func. Count: 40, Neg. LLF: 167.79577665051931
Iteration: 5, Func. Count: 52, Neg. LLF: 166.8449826287028
Iteration: 6, Func. Count: 62, Neg. LLF: 157.7306709606757
Iteration: 7, Func. Count: 72, Neg. LLF: 158.09499445919585
Iteration: 8, Func. Count: 82, Neg. LLF: 153.61572779604933
Iteration: 9, Func. Count: 92, Neg. LLF: 151.741446987015
Iteration: 10, Func. Count: 101, Neg. LLF: 153.84364631386651
Iteration: 11, Func. Count: 112, Neg. LLF: 152.72263750658675
Iteration: 12, Func. Count: 122, Neg. LLF: 151.37739511694065
Iteration: 13, Func. Count: 132, Neg. LLF: 151.2484712910762
Iteration: 14, Func. Count: 141, Neg. LLF: 151.23265979736144
Iteration: 15, Func. Count: 150, Neg. LLF: 151.23239031333242
Iteration: 16, Func. Count: 159, Neg. LLF: 151.23238908726887
Iteration: 17, Func. Count: 167, Neg. LLF: 151.23238902465985
Optimization terminated successfully (Exit mode 0)
Current function value: 151.23238908726887
Iterations: 17
Function evaluations: 167
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 221.0274715861605
Iteration: 2, Func. Count: 22, Neg. LLF: 199.29494594426743
Iteration: 3, Func. Count: 33, Neg. LLF: 182.59706387589503
Iteration: 4, Func. Count: 44, Neg. LLF: 170.71331970161458
Iteration: 5, Func. Count: 55, Neg. LLF: 163.1099702793818
Iteration: 6, Func. Count: 66, Neg. LLF: 153.42519473588288
Iteration: 7, Func. Count: 76, Neg. LLF: 155.54832624402783
Iteration: 8, Func. Count: 87, Neg. LLF: 158.93385675129397
Iteration: 9, Func. Count: 99, Neg. LLF: 152.4162294393876
Iteration: 10, Func. Count: 110, Neg. LLF: 152.27356995432356
Iteration: 11, Func. Count: 120, Neg. LLF: 152.3264067209299
Iteration: 12, Func. Count: 131, Neg. LLF: 152.20070453113559
Iteration: 13, Func. Count: 141, Neg. LLF: 152.10801408088264
Iteration: 14, Func. Count: 151, Neg. LLF: 151.7499251538505
Iteration: 15, Func. Count: 161, Neg. LLF: 151.5936488877125
Iteration: 16, Func. Count: 171, Neg. LLF: 152.05827952185345
Iteration: 17, Func. Count: 183, Neg. LLF: 151.33127179892165
Iteration: 18, Func. Count: 193, Neg. LLF: 151.31643676272944
Iteration: 19, Func. Count: 203, Neg. LLF: 151.29154085988543
Iteration: 20, Func. Count: 213, Neg. LLF: 151.2872292668833
Iteration: 21, Func. Count: 223, Neg. LLF: 151.26748434207695
Iteration: 22, Func. Count: 233, Neg. LLF: 151.24342644118795
Iteration: 23, Func. Count: 243, Neg. LLF: 151.23512642368286
Iteration: 24, Func. Count: 253, Neg. LLF: 151.2327329910434
Iteration: 25, Func. Count: 263, Neg. LLF: 151.23243868982235
Iteration: 26, Func. Count: 273, Neg. LLF: 151.2323790516166
Iteration: 27, Func. Count: 283, Neg. LLF: 151.23236217373702
Iteration: 28, Func. Count: 303, Neg. LLF: 151.2336817624606
Iteration: 29, Func. Count: 315, Neg. LLF: 151.2323896348866
Iteration: 30, Func. Count: 335, Neg. LLF: 151.29499760404332
Iteration: 31, Func. Count: 348, Neg. LLF: 151.23238923297396
Iteration: 32, Func. Count: 357, Neg. LLF: 151.23238920111717
Optimization terminated successfully (Exit mode 0)
Current function value: 151.23238923297396
Iterations: 32
Function evaluations: 357
Gradient evaluations: 32
Iteration: 1, Func. Count: 12, Neg. LLF: 270.4305991898159
Iteration: 2, Func. Count: 24, Neg. LLF: 159.71189437678902
Iteration: 3, Func. Count: 36, Neg. LLF: 149.3045366830189
Iteration: 4, Func. Count: 47, Neg. LLF: 192.00302072713035
Iteration: 5, Func. Count: 59, Neg. LLF: 149.05449269734757
Iteration: 6, Func. Count: 70, Neg. LLF: 149.00501990495817
Iteration: 7, Func. Count: 81, Neg. LLF: 148.9801420154063
Iteration: 8, Func. Count: 92, Neg. LLF: 148.95846571391337
Iteration: 9, Func. Count: 103, Neg. LLF: 148.9464340235068
Iteration: 10, Func. Count: 114, Neg. LLF: 148.9455507594233
Iteration: 11, Func. Count: 125, Neg. LLF: 148.94552284334296
Iteration: 12, Func. Count: 135, Neg. LLF: 148.94552243763567
Optimization terminated successfully (Exit mode 0)
Current function value: 148.94552284334296
Iterations: 12
Function evaluations: 135
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 159.37889369530254
Iteration: 2, Func. Count: 17, Neg. LLF: 158.56910569190853
Iteration: 3, Func. Count: 26, Neg. LLF: 152.91435550572075
Iteration: 4, Func. Count: 34, Neg. LLF: 152.35377525828372
Iteration: 5, Func. Count: 42, Neg. LLF: 153.06111066319556
Iteration: 6, Func. Count: 52, Neg. LLF: 152.1431664291426
Iteration: 7, Func. Count: 60, Neg. LLF: 151.87432995704975
Iteration: 8, Func. Count: 68, Neg. LLF: 451.7984225121151
Iteration: 9, Func. Count: 77, Neg. LLF: 202.95131419477676
Iteration: 10, Func. Count: 86, Neg. LLF: 151.67786588035932
Iteration: 11, Func. Count: 95, Neg. LLF: 151.3018173971371
Iteration: 12, Func. Count: 104, Neg. LLF: 151.2337274237547
Iteration: 13, Func. Count: 112, Neg. LLF: 151.2324886176537
Iteration: 14, Func. Count: 120, Neg. LLF: 151.23239310410182
Iteration: 15, Func. Count: 128, Neg. LLF: 151.23238939610857
Iteration: 16, Func. Count: 136, Neg. LLF: 151.23238896373937
Optimization terminated successfully (Exit mode 0)
Current function value: 151.23238896373937
Iterations: 16
Function evaluations: 136
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 165.9477997926136
Iteration: 2, Func. Count: 22, Neg. LLF: 170.18034586646218
Iteration: 3, Func. Count: 33, Neg. LLF: 157.69289219541807
Iteration: 4, Func. Count: 42, Neg. LLF: 157.10934237835508
Iteration: 5, Func. Count: 51, Neg. LLF: 157.0533758743054
Iteration: 6, Func. Count: 60, Neg. LLF: 156.88141227138212
Iteration: 7, Func. Count: 69, Neg. LLF: 156.87715301448452
Iteration: 8, Func. Count: 78, Neg. LLF: 156.8768586950202
Iteration: 9, Func. Count: 87, Neg. LLF: 156.87684905777166
Iteration: 10, Func. Count: 96, Neg. LLF: 156.87683123003868
Iteration: 11, Func. Count: 104, Neg. LLF: 156.87683046711678
Optimization terminated successfully (Exit mode 0)
Current function value: 156.87683123003868
Iterations: 11
Function evaluations: 104
Gradient evaluations: 11
Iteration: 1, Func. Count: 11, Neg. LLF: 167.26704055220083
Iteration: 2, Func. Count: 22, Neg. LLF: 187.6487094130061
Iteration: 3, Func. Count: 34, Neg. LLF: 155.15019507401806
Iteration: 4, Func. Count: 44, Neg. LLF: 170.0044840183177
Iteration: 5, Func. Count: 56, Neg. LLF: 154.380501511396
Iteration: 6, Func. Count: 66, Neg. LLF: 154.13101709372967
Iteration: 7, Func. Count: 76, Neg. LLF: 159.7903311759639
Iteration: 8, Func. Count: 87, Neg. LLF: 157.45054130949282
Iteration: 9, Func. Count: 98, Neg. LLF: 153.16594155986118
Iteration: 10, Func. Count: 108, Neg. LLF: 153.05829087475544
Iteration: 11, Func. Count: 119, Neg. LLF: 175.92391112329184
Iteration: 12, Func. Count: 132, Neg. LLF: 152.41905755451825
Iteration: 13, Func. Count: 142, Neg. LLF: 152.45545155239552
Iteration: 14, Func. Count: 153, Neg. LLF: 152.55883825576745
Iteration: 15, Func. Count: 164, Neg. LLF: 152.03398627178103
Iteration: 16, Func. Count: 174, Neg. LLF: 151.5057158243769
Iteration: 17, Func. Count: 184, Neg. LLF: 151.7522054414044
Iteration: 18, Func. Count: 196, Neg. LLF: 151.27439527442897
Iteration: 19, Func. Count: 206, Neg. LLF: 151.23543753868904
Iteration: 20, Func. Count: 216, Neg. LLF: 151.23355081979392
Iteration: 21, Func. Count: 226, Neg. LLF: 151.23317223240932
Iteration: 22, Func. Count: 236, Neg. LLF: 151.23271627209485
Iteration: 23, Func. Count: 246, Neg. LLF: 151.23264949522326
Iteration: 24, Func. Count: 256, Neg. LLF: 151.23260690083572
Iteration: 25, Func. Count: 266, Neg. LLF: 151.232590481479
Iteration: 26, Func. Count: 276, Neg. LLF: 151.23251597361477
Iteration: 27, Func. Count: 286, Neg. LLF: 151.2324467812836
Iteration: 28, Func. Count: 296, Neg. LLF: 151.23239901230022
Iteration: 29, Func. Count: 306, Neg. LLF: 151.23238966193566
Iteration: 30, Func. Count: 316, Neg. LLF: 151.23238895874331
Optimization terminated successfully (Exit mode 0)
Current function value: 151.23238895874331
Iterations: 30
Function evaluations: 316
Gradient evaluations: 30
Iteration: 1, Func. Count: 12, Neg. LLF: 212.3170130269669
Iteration: 2, Func. Count: 24, Neg. LLF: 165.8675476386598
Iteration: 3, Func. Count: 36, Neg. LLF: 175.73783555116617
Iteration: 4, Func. Count: 48, Neg. LLF: 249.49368144996168
Iteration: 5, Func. Count: 60, Neg. LLF: 158.50856957236005
Iteration: 6, Func. Count: 72, Neg. LLF: 159.4678836156315
Iteration: 7, Func. Count: 84, Neg. LLF: 154.67784795176277
Iteration: 8, Func. Count: 96, Neg. LLF: 155.4377914955356
Iteration: 9, Func. Count: 108, Neg. LLF: 152.22920095366698
Iteration: 10, Func. Count: 119, Neg. LLF: 152.66704521657834
Iteration: 11, Func. Count: 131, Neg. LLF: 151.8525483858461
Iteration: 12, Func. Count: 142, Neg. LLF: 151.86705977189038
Iteration: 13, Func. Count: 154, Neg. LLF: 151.53751172278456
Iteration: 14, Func. Count: 165, Neg. LLF: 151.54995568628024
Iteration: 15, Func. Count: 177, Neg. LLF: 151.58346047891754
Iteration: 16, Func. Count: 189, Neg. LLF: 151.42044472789402
Iteration: 17, Func. Count: 200, Neg. LLF: 151.4055773528839
Iteration: 18, Func. Count: 211, Neg. LLF: 151.3427184748733
Iteration: 19, Func. Count: 222, Neg. LLF: 151.28459003422273
Iteration: 20, Func. Count: 233, Neg. LLF: 151.2606241637522
Iteration: 21, Func. Count: 244, Neg. LLF: 151.24586705119236
Iteration: 22, Func. Count: 255, Neg. LLF: 151.23299335355492
Iteration: 23, Func. Count: 266, Neg. LLF: 151.232413706044
Iteration: 24, Func. Count: 277, Neg. LLF: 151.2323902603996
Iteration: 25, Func. Count: 288, Neg. LLF: 151.23238894861598
Iteration: 26, Func. Count: 298, Neg. LLF: 151.23238891684844
Optimization terminated successfully (Exit mode 0)
Current function value: 151.23238894861598
Iterations: 26
Function evaluations: 298
Gradient evaluations: 26
Iteration: 1, Func. Count: 13, Neg. LLF: 240.80472094087622
Iteration: 2, Func. Count: 26, Neg. LLF: 162.84923373261137
Iteration: 3, Func. Count: 39, Neg. LLF: 149.48225729387468
Iteration: 4, Func. Count: 51, Neg. LLF: 190.90265283935156
Iteration: 5, Func. Count: 64, Neg. LLF: 149.1951102766469
Iteration: 6, Func. Count: 77, Neg. LLF: 204.49459636753443
Iteration: 7, Func. Count: 92, Neg. LLF: 149.04240557084665
Iteration: 8, Func. Count: 104, Neg. LLF: 148.9910910756886
Iteration: 9, Func. Count: 116, Neg. LLF: 148.96325754442168
Iteration: 10, Func. Count: 128, Neg. LLF: 148.94559645852365
Iteration: 11, Func. Count: 140, Neg. LLF: 148.94553951855687
Iteration: 12, Func. Count: 152, Neg. LLF: 148.94552333114328
Iteration: 13, Func. Count: 164, Neg. LLF: 148.94552274071108
Optimization terminated successfully (Exit mode 0)
Current function value: 148.94552274071108
Iterations: 13
Function evaluations: 164
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 158.39986505527725
Iteration: 2, Func. Count: 19, Neg. LLF: 160.55515240258762
Iteration: 3, Func. Count: 29, Neg. LLF: 152.64989966673963
Iteration: 4, Func. Count: 38, Neg. LLF: 152.3238896307772
Iteration: 5, Func. Count: 47, Neg. LLF: 152.94765585679644
Iteration: 6, Func. Count: 58, Neg. LLF: 152.1073540386179
Iteration: 7, Func. Count: 67, Neg. LLF: 151.70895107557854
Iteration: 8, Func. Count: 76, Neg. LLF: 472.64412634980687
Iteration: 9, Func. Count: 87, Neg. LLF: 187.06723799246188
Iteration: 10, Func. Count: 97, Neg. LLF: 151.3899392409493
Iteration: 11, Func. Count: 107, Neg. LLF: 151.2349398144145
Iteration: 12, Func. Count: 116, Neg. LLF: 151.23266228209255
Iteration: 13, Func. Count: 125, Neg. LLF: 151.2324132155102
Iteration: 14, Func. Count: 134, Neg. LLF: 151.23239117977
Iteration: 15, Func. Count: 143, Neg. LLF: 151.23238901810424
Iteration: 16, Func. Count: 151, Neg. LLF: 151.2323889889982
Optimization terminated successfully (Exit mode 0)
Current function value: 151.23238901810424
Iterations: 16
Function evaluations: 151
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 353.438478746441
Iteration: 2, Func. Count: 23, Neg. LLF: 164.62555818633916
Iteration: 3, Func. Count: 35, Neg. LLF: 157.31015039601627
Iteration: 4, Func. Count: 45, Neg. LLF: 156.99050491231503
Iteration: 5, Func. Count: 55, Neg. LLF: 156.94266974167843
Iteration: 6, Func. Count: 65, Neg. LLF: 156.90410155848394
Iteration: 7, Func. Count: 75, Neg. LLF: 156.8769676839232
Iteration: 8, Func. Count: 85, Neg. LLF: 156.77957595203654
Iteration: 9, Func. Count: 95, Neg. LLF: 156.76220533509647
Iteration: 10, Func. Count: 105, Neg. LLF: 156.75470317393507
Iteration: 11, Func. Count: 115, Neg. LLF: 156.75469677234082
Iteration: 12, Func. Count: 125, Neg. LLF: 156.75466424488565
Iteration: 13, Func. Count: 135, Neg. LLF: 156.75671210238184
Iteration: 14, Func. Count: 148, Neg. LLF: 156.75468532144507
Iteration: 15, Func. Count: 159, Neg. LLF: 156.7546693707708
Iteration: 16, Func. Count: 168, Neg. LLF: 156.75466823432123
Optimization terminated successfully (Exit mode 0)
Current function value: 156.7546693707708
Iterations: 17
Function evaluations: 168
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 166.76705369343668
Iteration: 2, Func. Count: 24, Neg. LLF: 187.8449836961327
Iteration: 3, Func. Count: 37, Neg. LLF: 155.10514122633057
Iteration: 4, Func. Count: 48, Neg. LLF: 170.01861008353023
Iteration: 5, Func. Count: 61, Neg. LLF: 154.3100047740615
Iteration: 6, Func. Count: 72, Neg. LLF: 154.1131377249262
Iteration: 7, Func. Count: 83, Neg. LLF: 154.02209023415193
Iteration: 8, Func. Count: 95, Neg. LLF: 153.33829134589445
Iteration: 9, Func. Count: 107, Neg. LLF: 152.56714721071305
Iteration: 10, Func. Count: 119, Neg. LLF: 153.2913606225393
Iteration: 11, Func. Count: 131, Neg. LLF: 152.60656643487894
Iteration: 12, Func. Count: 143, Neg. LLF: 151.98817250123872
Iteration: 13, Func. Count: 154, Neg. LLF: 151.61536531671794
Iteration: 14, Func. Count: 165, Neg. LLF: 151.6574765463849
Iteration: 15, Func. Count: 177, Neg. LLF: 151.4504242285393
Iteration: 16, Func. Count: 188, Neg. LLF: 151.29986714340873
Iteration: 17, Func. Count: 199, Neg. LLF: 151.27074955295208
Iteration: 18, Func. Count: 210, Neg. LLF: 151.24340856187155
Iteration: 19, Func. Count: 221, Neg. LLF: 151.23970777362388
Iteration: 20, Func. Count: 232, Neg. LLF: 151.23798118667966
Iteration: 21, Func. Count: 243, Neg. LLF: 151.23286015385233
Iteration: 22, Func. Count: 254, Neg. LLF: 151.23243861332347
Iteration: 23, Func. Count: 265, Neg. LLF: 151.23239185048087
Iteration: 24, Func. Count: 276, Neg. LLF: 151.23238901124896
Iteration: 25, Func. Count: 286, Neg. LLF: 151.23238894853782
Optimization terminated successfully (Exit mode 0)
Current function value: 151.23238901124896
Iterations: 25
Function evaluations: 286
Gradient evaluations: 25
Iteration: 1, Func. Count: 13, Neg. LLF: 210.10743727994551
Iteration: 2, Func. Count: 26, Neg. LLF: 164.39467808471048
Iteration: 3, Func. Count: 39, Neg. LLF: 174.1055382142017
Iteration: 4, Func. Count: 52, Neg. LLF: 250.0347929741386
Iteration: 5, Func. Count: 66, Neg. LLF: 157.54134807625587
Iteration: 6, Func. Count: 79, Neg. LLF: 155.28532699304807
Iteration: 7, Func. Count: 92, Neg. LLF: 162.1017903140416
Iteration: 8, Func. Count: 105, Neg. LLF: 152.6519916617328
Iteration: 9, Func. Count: 117, Neg. LLF: 166.78601546175605
Iteration: 10, Func. Count: 131, Neg. LLF: 153.8467745088779
Iteration: 11, Func. Count: 144, Neg. LLF: 153.71835172072085
Iteration: 12, Func. Count: 157, Neg. LLF: 151.8905641088386
Iteration: 13, Func. Count: 169, Neg. LLF: 151.77802793654575
Iteration: 14, Func. Count: 181, Neg. LLF: 151.6543922284273
Iteration: 15, Func. Count: 193, Neg. LLF: 151.6353532992656
Iteration: 16, Func. Count: 205, Neg. LLF: 151.53505767942806
Iteration: 17, Func. Count: 217, Neg. LLF: 151.43919219341512
Iteration: 18, Func. Count: 229, Neg. LLF: 151.40645467781687
Iteration: 19, Func. Count: 242, Neg. LLF: 151.2807924265871
Iteration: 20, Func. Count: 254, Neg. LLF: 151.2586627467842
Iteration: 21, Func. Count: 266, Neg. LLF: 151.25092235802376
Iteration: 22, Func. Count: 278, Neg. LLF: 151.24389248979128
Iteration: 23, Func. Count: 290, Neg. LLF: 151.24229846266758
Iteration: 24, Func. Count: 302, Neg. LLF: 151.24138177988385
Iteration: 25, Func. Count: 314, Neg. LLF: 151.2374224432181
Iteration: 26, Func. Count: 326, Neg. LLF: 151.2345611903427
Iteration: 27, Func. Count: 338, Neg. LLF: 151.23296702766444
Iteration: 28, Func. Count: 350, Neg. LLF: 151.23244197367714
Iteration: 29, Func. Count: 362, Neg. LLF: 151.23239134735348
Iteration: 30, Func. Count: 374, Neg. LLF: 151.23238896681735
Iteration: 31, Func. Count: 385, Neg. LLF: 151.2323889350712
Optimization terminated successfully (Exit mode 0)
Current function value: 151.23238896681735
Iterations: 31
Function evaluations: 385
Gradient evaluations: 31
Iteration: 1, Func. Count: 14, Neg. LLF: 232.50325189159398
Iteration: 2, Func. Count: 28, Neg. LLF: 163.6341231318095
Iteration: 3, Func. Count: 42, Neg. LLF: 149.62296014996573
Iteration: 4, Func. Count: 55, Neg. LLF: 189.73590156410128
Iteration: 5, Func. Count: 69, Neg. LLF: 149.40967676337402
Iteration: 6, Func. Count: 83, Neg. LLF: 222.44208919316364
Iteration: 7, Func. Count: 99, Neg. LLF: 149.06821604751735
Iteration: 8, Func. Count: 112, Neg. LLF: 149.01445278177172
Iteration: 9, Func. Count: 125, Neg. LLF: 148.97412772781053
Iteration: 10, Func. Count: 138, Neg. LLF: 148.94903848386488
Iteration: 11, Func. Count: 151, Neg. LLF: 148.94568861881976
Iteration: 12, Func. Count: 164, Neg. LLF: 148.94552377191133
Iteration: 13, Func. Count: 177, Neg. LLF: 148.94552263898794
Iteration: 14, Func. Count: 189, Neg. LLF: 148.94552223325823
Optimization terminated successfully (Exit mode 0)
Current function value: 148.94552263898794
Iterations: 14
Function evaluations: 189
Gradient evaluations: 14
Iteration: 1, Func. Count: 7, Neg. LLF: 158.69691230939938
Iteration: 2, Func. Count: 13, Neg. LLF: 160.55394305284557
Iteration: 3, Func. Count: 22, Neg. LLF: 159.32272639995816
Iteration: 4, Func. Count: 29, Neg. LLF: 158.5950707767942
Iteration: 5, Func. Count: 35, Neg. LLF: 158.53921161933536
Iteration: 6, Func. Count: 41, Neg. LLF: 158.38456036869533
Iteration: 7, Func. Count: 47, Neg. LLF: 158.38261327053647
Iteration: 8, Func. Count: 53, Neg. LLF: 158.38244316284803
Iteration: 9, Func. Count: 59, Neg. LLF: 158.38244205841124
Iteration: 10, Func. Count: 64, Neg. LLF: 158.38244222395596
Optimization terminated successfully (Exit mode 0)
Current function value: 158.38244205841124
Iterations: 10
Function evaluations: 64
Gradient evaluations: 10
Iteration: 1, Func. Count: 8, Neg. LLF: 173.69819514629614
Iteration: 2, Func. Count: 17, Neg. LLF: 164.2117696642871
Iteration: 3, Func. Count: 25, Neg. LLF: 196.45302324546188
Iteration: 4, Func. Count: 33, Neg. LLF: 161.28448206077576
Iteration: 5, Func. Count: 41, Neg. LLF: 160.8494483504892
Iteration: 6, Func. Count: 50, Neg. LLF: 161.00748990476592
Iteration: 7, Func. Count: 58, Neg. LLF: 155.89956303883204
Iteration: 8, Func. Count: 65, Neg. LLF: 155.49632509072555
Iteration: 9, Func. Count: 72, Neg. LLF: 154.95676784235238
Iteration: 10, Func. Count: 79, Neg. LLF: 153.71322129663366
Iteration: 11, Func. Count: 86, Neg. LLF: 162.95030094420898
Iteration: 12, Func. Count: 94, Neg. LLF: 164.23768460046267
Iteration: 13, Func. Count: 102, Neg. LLF: 163.3098542414846
Iteration: 14, Func. Count: 110, Neg. LLF: 164.53711247662326
Iteration: 15, Func. Count: 118, Neg. LLF: 162.2856650500104
Iteration: 16, Func. Count: 126, Neg. LLF: 165.21529691359683
Iteration: 17, Func. Count: 134, Neg. LLF: 155.29849827095484
Iteration: 18, Func. Count: 142, Neg. LLF: 165.39336531937678
Iteration: 19, Func. Count: 150, Neg. LLF: 162.87722206609462
Iteration: 20, Func. Count: 158, Neg. LLF: 153.15904484257854
Iteration: 21, Func. Count: 166, Neg. LLF: 151.64707123409877
Iteration: 22, Func. Count: 174, Neg. LLF: 151.4904592073864
Iteration: 23, Func. Count: 181, Neg. LLF: 151.45848555626426
Iteration: 24, Func. Count: 188, Neg. LLF: 151.45760731900418
Iteration: 25, Func. Count: 195, Neg. LLF: 151.45755454412006
Iteration: 26, Func. Count: 202, Neg. LLF: 151.45755403723567
Optimization terminated successfully (Exit mode 0)
Current function value: 151.45755403723567
Iterations: 26
Function evaluations: 202
Gradient evaluations: 26
Iteration: 1, Func. Count: 9, Neg. LLF: 159.6844922081057
Iteration: 2, Func. Count: 18, Neg. LLF: 159.16792155204104
Iteration: 3, Func. Count: 26, Neg. LLF: 158.7241394919765
Iteration: 4, Func. Count: 34, Neg. LLF: 159.30417005616562
Iteration: 5, Func. Count: 43, Neg. LLF: 161.41239987953776
Iteration: 6, Func. Count: 53, Neg. LLF: 158.6574433875598
Iteration: 7, Func. Count: 62, Neg. LLF: 157.818917061458
Iteration: 8, Func. Count: 70, Neg. LLF: 157.79847648336113
Iteration: 9, Func. Count: 78, Neg. LLF: 157.74411328454653
Iteration: 10, Func. Count: 86, Neg. LLF: 157.6837524667569
Iteration: 11, Func. Count: 94, Neg. LLF: 157.45632602888702
Iteration: 12, Func. Count: 102, Neg. LLF: 157.42595767908298
Iteration: 13, Func. Count: 110, Neg. LLF: 157.41784532164385
Iteration: 14, Func. Count: 118, Neg. LLF: 157.41639921955326
Iteration: 15, Func. Count: 126, Neg. LLF: 157.41623265907128
Iteration: 16, Func. Count: 134, Neg. LLF: 157.41622548567994
Iteration: 17, Func. Count: 142, Neg. LLF: 157.41622476418684
Optimization terminated successfully (Exit mode 0)
Current function value: 157.41622476418684
Iterations: 17
Function evaluations: 142
Gradient evaluations: 17
Iteration: 1, Func. Count: 10, Neg. LLF: 161.47413465554004
Iteration: 2, Func. Count: 22, Neg. LLF: 169.51304031345853
Iteration: 3, Func. Count: 33, Neg. LLF: 159.25328479337472
Iteration: 4, Func. Count: 42, Neg. LLF: 163.38484365815705
Iteration: 5, Func. Count: 53, Neg. LLF: 159.16837903383845
Iteration: 6, Func. Count: 62, Neg. LLF: 159.11370895828315
Iteration: 7, Func. Count: 71, Neg. LLF: 159.10790663338332
Iteration: 8, Func. Count: 80, Neg. LLF: 159.10707242493913
Iteration: 9, Func. Count: 89, Neg. LLF: 159.10651996511962
Iteration: 10, Func. Count: 98, Neg. LLF: 159.10459615861882
Iteration: 11, Func. Count: 107, Neg. LLF: 159.10127196757716
Iteration: 12, Func. Count: 116, Neg. LLF: 159.09602198703936
Iteration: 13, Func. Count: 125, Neg. LLF: 159.0910844532145
Iteration: 14, Func. Count: 134, Neg. LLF: 159.08980308669007
Iteration: 15, Func. Count: 143, Neg. LLF: 159.0891133544064
Iteration: 16, Func. Count: 152, Neg. LLF: 159.0889029342796
Iteration: 17, Func. Count: 161, Neg. LLF: 159.08863796592976
Iteration: 18, Func. Count: 170, Neg. LLF: 159.088613554717
Iteration: 19, Func. Count: 179, Neg. LLF: 159.08861147307113
Iteration: 20, Func. Count: 187, Neg. LLF: 159.0886114730849
Optimization terminated successfully (Exit mode 0)
Current function value: 159.08861147307113
Iterations: 20
Function evaluations: 187
Gradient evaluations: 20
Iteration: 1, Func. Count: 11, Neg. LLF: 161.19639954537473
Iteration: 2, Func. Count: 24, Neg. LLF: 168.7145898394232
Iteration: 3, Func. Count: 35, Neg. LLF: 159.18256076115856
Iteration: 4, Func. Count: 45, Neg. LLF: 164.81062948510572
Iteration: 5, Func. Count: 56, Neg. LLF: 159.09296259379752
Iteration: 6, Func. Count: 67, Neg. LLF: 158.81030378059566
Iteration: 7, Func. Count: 77, Neg. LLF: 158.42860914269517
Iteration: 8, Func. Count: 87, Neg. LLF: 157.9395992462149
Iteration: 9, Func. Count: 97, Neg. LLF: 157.66004865371875
Iteration: 10, Func. Count: 107, Neg. LLF: 157.38290973995774
Iteration: 11, Func. Count: 117, Neg. LLF: 157.25869413973092
Iteration: 12, Func. Count: 127, Neg. LLF: 156.90117678853457
Iteration: 13, Func. Count: 137, Neg. LLF: 154.42105960334123
Iteration: 14, Func. Count: 147, Neg. LLF: 153.9091189295204
Iteration: 15, Func. Count: 157, Neg. LLF: 155.22572197270364
Iteration: 16, Func. Count: 169, Neg. LLF: 154.14314707324993
Iteration: 17, Func. Count: 180, Neg. LLF: 153.69150083136108
Iteration: 18, Func. Count: 191, Neg. LLF: 153.6446093436438
Iteration: 19, Func. Count: 201, Neg. LLF: 153.64437713835602
Iteration: 20, Func. Count: 211, Neg. LLF: 153.64437646187807
Optimization terminated successfully (Exit mode 0)
Current function value: 153.64437646187807
Iterations: 20
Function evaluations: 211
Gradient evaluations: 20
Iteration: 1, Func. Count: 8, Neg. LLF: 160.4012305543608
Iteration: 2, Func. Count: 15, Neg. LLF: 158.97139181406322
Iteration: 3, Func. Count: 22, Neg. LLF: 167.06784024992555
Iteration: 4, Func. Count: 32, Neg. LLF: 169.3858755436939
Iteration: 5, Func. Count: 40, Neg. LLF: 158.77517467206172
Iteration: 6, Func. Count: 47, Neg. LLF: 158.76014451952273
Iteration: 7, Func. Count: 54, Neg. LLF: 158.6960330873408
Iteration: 8, Func. Count: 61, Neg. LLF: 158.40512469530523
Iteration: 9, Func. Count: 68, Neg. LLF: 158.49362731830135
Iteration: 10, Func. Count: 76, Neg. LLF: 158.27703650634737
Iteration: 11, Func. Count: 83, Neg. LLF: 158.26144550129044
Iteration: 12, Func. Count: 90, Neg. LLF: 158.2450988825321
Iteration: 13, Func. Count: 97, Neg. LLF: 158.2396738090877
Iteration: 14, Func. Count: 104, Neg. LLF: 158.23584065945153
Iteration: 15, Func. Count: 111, Neg. LLF: 158.22911384535547
Iteration: 16, Func. Count: 118, Neg. LLF: 158.22617695839313
Iteration: 17, Func. Count: 125, Neg. LLF: 158.22509358748522
Iteration: 18, Func. Count: 132, Neg. LLF: 158.22502154642623
Iteration: 19, Func. Count: 139, Neg. LLF: 158.2250192684229
Iteration: 20, Func. Count: 145, Neg. LLF: 158.2250192436667
Optimization terminated successfully (Exit mode 0)
Current function value: 158.2250192684229
Iterations: 20
Function evaluations: 145
Gradient evaluations: 20
Iteration: 1, Func. Count: 9, Neg. LLF: 177.16538603241239
Iteration: 2, Func. Count: 19, Neg. LLF: 163.73774096191903
Iteration: 3, Func. Count: 28, Neg. LLF: 163.05503072661983
Iteration: 4, Func. Count: 37, Neg. LLF: 157.85836261219868
Iteration: 5, Func. Count: 46, Neg. LLF: 157.11124017829982
Iteration: 6, Func. Count: 55, Neg. LLF: 155.86751259244826
Iteration: 7, Func. Count: 63, Neg. LLF: 156.30302723826549
Iteration: 8, Func. Count: 72, Neg. LLF: 155.75949004766332
Iteration: 9, Func. Count: 80, Neg. LLF: 155.6975731062315
Iteration: 10, Func. Count: 88, Neg. LLF: 155.6786277555717
Iteration: 11, Func. Count: 96, Neg. LLF: 155.57956371822365
Iteration: 12, Func. Count: 104, Neg. LLF: 155.527140450385
Iteration: 13, Func. Count: 112, Neg. LLF: 155.85286348993222
Iteration: 14, Func. Count: 122, Neg. LLF: 156.23721106106532
Iteration: 15, Func. Count: 131, Neg. LLF: 155.51820944856766
Iteration: 16, Func. Count: 139, Neg. LLF: 155.5180905580347
Iteration: 17, Func. Count: 147, Neg. LLF: 155.51807886567028
Iteration: 18, Func. Count: 155, Neg. LLF: 155.51807832623857
Optimization terminated successfully (Exit mode 0)
Current function value: 155.51807832623857
Iterations: 18
Function evaluations: 155
Gradient evaluations: 18
Iteration: 1, Func. Count: 10, Neg. LLF: 266.4802207461069
Iteration: 2, Func. Count: 21, Neg. LLF: 159.44827005719137
Iteration: 3, Func. Count: 31, Neg. LLF: 157.30494908852535
Iteration: 4, Func. Count: 40, Neg. LLF: 157.112672412965
Iteration: 5, Func. Count: 49, Neg. LLF: 157.0864313903474
Iteration: 6, Func. Count: 59, Neg. LLF: 156.98353176527732
Iteration: 7, Func. Count: 68, Neg. LLF: 156.9420526802003
Iteration: 8, Func. Count: 77, Neg. LLF: 156.93947527889333
Iteration: 9, Func. Count: 86, Neg. LLF: 156.93940235514404
Iteration: 10, Func. Count: 95, Neg. LLF: 156.93940100230222
Iteration: 11, Func. Count: 103, Neg. LLF: 156.9394003383505
Optimization terminated successfully (Exit mode 0)
Current function value: 156.93940100230222
Iterations: 11
Function evaluations: 103
Gradient evaluations: 11
Iteration: 1, Func. Count: 11, Neg. LLF: 164.85190089331888
Iteration: 2, Func. Count: 22, Neg. LLF: 176.03312845361134
Iteration: 3, Func. Count: 34, Neg. LLF: 157.24196532043678
Iteration: 4, Func. Count: 44, Neg. LLF: 157.45323135178654
Iteration: 5, Func. Count: 55, Neg. LLF: 156.88302922676726
Iteration: 6, Func. Count: 65, Neg. LLF: 156.78415415691813
Iteration: 7, Func. Count: 75, Neg. LLF: 156.77802071123014
Iteration: 8, Func. Count: 85, Neg. LLF: 156.7760627135765
Iteration: 9, Func. Count: 95, Neg. LLF: 156.7754987726835
Iteration: 10, Func. Count: 105, Neg. LLF: 156.77525311425703
Iteration: 11, Func. Count: 115, Neg. LLF: 156.77523242994414
Iteration: 12, Func. Count: 125, Neg. LLF: 156.77523185607538
Optimization terminated successfully (Exit mode 0)
Current function value: 156.77523185607538
Iterations: 12
Function evaluations: 125
Gradient evaluations: 12
Iteration: 1, Func. Count: 12, Neg. LLF: 164.67738995908795
Iteration: 2, Func. Count: 24, Neg. LLF: 161.41874779503817
Iteration: 3, Func. Count: 36, Neg. LLF: 156.25364538079825
Iteration: 4, Func. Count: 47, Neg. LLF: 154.65394597694566
Iteration: 5, Func. Count: 58, Neg. LLF: 155.254879229073
Iteration: 6, Func. Count: 70, Neg. LLF: 154.2824048539991
Iteration: 7, Func. Count: 81, Neg. LLF: 154.1306309295457
Iteration: 8, Func. Count: 92, Neg. LLF: 154.0446599618187
Iteration: 9, Func. Count: 103, Neg. LLF: 153.93903925928748
Iteration: 10, Func. Count: 114, Neg. LLF: 153.87695230277626
Iteration: 11, Func. Count: 125, Neg. LLF: 153.87234333340962
Iteration: 12, Func. Count: 136, Neg. LLF: 153.87217306714817
Iteration: 13, Func. Count: 147, Neg. LLF: 153.87213774252797
Iteration: 14, Func. Count: 158, Neg. LLF: 153.87213624799685
Iteration: 15, Func. Count: 169, Neg. LLF: 153.87213698414962
Optimization terminated successfully (Exit mode 0)
Current function value: 153.87213698414962
Iterations: 15
Function evaluations: 169
Gradient evaluations: 15
Iteration: 1, Func. Count: 9, Neg. LLF: 156.39347004269118
Iteration: 2, Func. Count: 17, Neg. LLF: 161.20779299048507
Iteration: 3, Func. Count: 26, Neg. LLF: 153.0916158317589
Iteration: 4, Func. Count: 36, Neg. LLF: 158.34849506394912
Iteration: 5, Func. Count: 45, Neg. LLF: 152.23349259635674
Iteration: 6, Func. Count: 53, Neg. LLF: 152.6565776702922
Iteration: 7, Func. Count: 62, Neg. LLF: 152.3990825700903
Iteration: 8, Func. Count: 71, Neg. LLF: 246.46812123729123
Iteration: 9, Func. Count: 80, Neg. LLF: 220.4505502647463
Iteration: 10, Func. Count: 90, Neg. LLF: 322.7130087148842
Iteration: 11, Func. Count: 99, Neg. LLF: 151.6850499433635
Iteration: 12, Func. Count: 108, Neg. LLF: 151.2182073527976
Iteration: 13, Func. Count: 116, Neg. LLF: 151.20406884909937
Iteration: 14, Func. Count: 124, Neg. LLF: 151.20201855930708
Iteration: 15, Func. Count: 132, Neg. LLF: 151.2012573839236
Iteration: 16, Func. Count: 140, Neg. LLF: 151.20125410944883
Iteration: 17, Func. Count: 148, Neg. LLF: 151.2012504812643
Iteration: 18, Func. Count: 155, Neg. LLF: 151.2012504338158
Optimization terminated successfully (Exit mode 0)
Current function value: 151.2012504812643
Iterations: 18
Function evaluations: 155
Gradient evaluations: 18
Iteration: 1, Func. Count: 10, Neg. LLF: 176.51694906445402
Iteration: 2, Func. Count: 21, Neg. LLF: 159.16285462193744
Iteration: 3, Func. Count: 31, Neg. LLF: 154.46725378856564
Iteration: 4, Func. Count: 40, Neg. LLF: 151.80188708002655
Iteration: 5, Func. Count: 49, Neg. LLF: 153.23191095024006
Iteration: 6, Func. Count: 59, Neg. LLF: 151.8636478713144
Iteration: 7, Func. Count: 69, Neg. LLF: 151.3041343703991
Iteration: 8, Func. Count: 79, Neg. LLF: 151.33262328946182
Iteration: 9, Func. Count: 89, Neg. LLF: 151.34429089469177
Iteration: 10, Func. Count: 99, Neg. LLF: 151.21546610067992
Iteration: 11, Func. Count: 108, Neg. LLF: 151.20383613127845
Iteration: 12, Func. Count: 117, Neg. LLF: 151.24121665193348
Iteration: 13, Func. Count: 127, Neg. LLF: 151.20126937672245
Iteration: 14, Func. Count: 136, Neg. LLF: 151.20125048757134
Iteration: 15, Func. Count: 144, Neg. LLF: 151.201250441856
Optimization terminated successfully (Exit mode 0)
Current function value: 151.20125048757134
Iterations: 15
Function evaluations: 144
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 157.2948938110933
Iteration: 2, Func. Count: 21, Neg. LLF: 153.13227725691684
Iteration: 3, Func. Count: 31, Neg. LLF: 209.75218365441248
Iteration: 4, Func. Count: 44, Neg. LLF: 164.73095584310832
Iteration: 5, Func. Count: 57, Neg. LLF: 157.94429932228704
Iteration: 6, Func. Count: 68, Neg. LLF: 158.6892652288772
Iteration: 7, Func. Count: 79, Neg. LLF: 153.3592598113968
Iteration: 8, Func. Count: 90, Neg. LLF: 151.93026793862697
Iteration: 9, Func. Count: 100, Neg. LLF: 151.7899751010043
Iteration: 10, Func. Count: 111, Neg. LLF: 162.23702112090857
Iteration: 11, Func. Count: 123, Neg. LLF: 151.30705480141333
Iteration: 12, Func. Count: 133, Neg. LLF: 151.2163423128463
Iteration: 13, Func. Count: 143, Neg. LLF: 151.20346575213466
Iteration: 14, Func. Count: 153, Neg. LLF: 151.20290816378508
Iteration: 15, Func. Count: 163, Neg. LLF: 151.20135197917344
Iteration: 16, Func. Count: 173, Neg. LLF: 151.20126239338245
Iteration: 17, Func. Count: 183, Neg. LLF: 151.20125241702704
Iteration: 18, Func. Count: 193, Neg. LLF: 151.20125064678894
Iteration: 19, Func. Count: 202, Neg. LLF: 151.2012505808901
Optimization terminated successfully (Exit mode 0)
Current function value: 151.20125064678894
Iterations: 19
Function evaluations: 202
Gradient evaluations: 19
Iteration: 1, Func. Count: 12, Neg. LLF: 218.67107603438802
Iteration: 2, Func. Count: 24, Neg. LLF: 198.3829537769671
Iteration: 3, Func. Count: 36, Neg. LLF: 182.28808903716907
Iteration: 4, Func. Count: 48, Neg. LLF: 166.2964235203151
Iteration: 5, Func. Count: 60, Neg. LLF: 162.1804370171572
Iteration: 6, Func. Count: 72, Neg. LLF: 155.15259522503186
Iteration: 7, Func. Count: 84, Neg. LLF: 154.51266303264535
Iteration: 8, Func. Count: 96, Neg. LLF: 152.03524474199526
Iteration: 9, Func. Count: 107, Neg. LLF: 153.64729309119122
Iteration: 10, Func. Count: 119, Neg. LLF: 152.08613624891575
Iteration: 11, Func. Count: 131, Neg. LLF: 152.02033068675019
Iteration: 12, Func. Count: 143, Neg. LLF: 151.69990729202343
Iteration: 13, Func. Count: 154, Neg. LLF: 151.64499228432638
Iteration: 14, Func. Count: 166, Neg. LLF: 151.5550153417834
Iteration: 15, Func. Count: 177, Neg. LLF: 151.47171413461507
Iteration: 16, Func. Count: 188, Neg. LLF: 151.38260149565514
Iteration: 17, Func. Count: 199, Neg. LLF: 151.24736509441996
Iteration: 18, Func. Count: 210, Neg. LLF: 151.24748248155583
Iteration: 19, Func. Count: 222, Neg. LLF: 151.2306702199171
Iteration: 20, Func. Count: 233, Neg. LLF: 151.22957287328146
Iteration: 21, Func. Count: 244, Neg. LLF: 151.22772204916512
Iteration: 22, Func. Count: 255, Neg. LLF: 151.2268241320678
Iteration: 23, Func. Count: 266, Neg. LLF: 151.22334452066528
Iteration: 24, Func. Count: 277, Neg. LLF: 151.2188026265587
Iteration: 25, Func. Count: 288, Neg. LLF: 151.2099423732446
Iteration: 26, Func. Count: 299, Neg. LLF: 151.20329929227321
Iteration: 27, Func. Count: 310, Neg. LLF: 151.20141928772355
Iteration: 28, Func. Count: 321, Neg. LLF: 151.20125290217666
Iteration: 29, Func. Count: 332, Neg. LLF: 151.20124534775042
Iteration: 30, Func. Count: 343, Neg. LLF: 151.201250733753
Iteration: 31, Func. Count: 354, Neg. LLF: 151.20124532852265
Optimization terminated successfully (Exit mode 0)
Current function value: 151.20125073062567
Iterations: 31
Function evaluations: 364
Gradient evaluations: 31
Iteration: 1, Func. Count: 13, Neg. LLF: 264.9613461157402
Iteration: 2, Func. Count: 26, Neg. LLF: 160.09361068707065
Iteration: 3, Func. Count: 39, Neg. LLF: 149.29338982974207
Iteration: 4, Func. Count: 51, Neg. LLF: 217.80396810460687
Iteration: 5, Func. Count: 65, Neg. LLF: 149.04166121172813
Iteration: 6, Func. Count: 77, Neg. LLF: 149.88131629045455
Iteration: 7, Func. Count: 91, Neg. LLF: 152.21612939906754
Iteration: 8, Func. Count: 105, Neg. LLF: 149.1033103474444
Iteration: 9, Func. Count: 118, Neg. LLF: 148.98377605933425
Iteration: 10, Func. Count: 130, Neg. LLF: 148.98294405816605
Iteration: 11, Func. Count: 143, Neg. LLF: 148.94458721670793
Iteration: 12, Func. Count: 155, Neg. LLF: 148.94093599034161
Iteration: 13, Func. Count: 167, Neg. LLF: 148.9406006197642
Iteration: 14, Func. Count: 179, Neg. LLF: 148.940594569416
Iteration: 15, Func. Count: 190, Neg. LLF: 148.94059417148569
Optimization terminated successfully (Exit mode 0)
Current function value: 148.940594569416
Iterations: 15
Function evaluations: 190
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 155.14366067193023
Iteration: 2, Func. Count: 19, Neg. LLF: 163.6758946387643
Iteration: 3, Func. Count: 29, Neg. LLF: 160.7138233048469
Iteration: 4, Func. Count: 42, Neg. LLF: 152.33291261030072
Iteration: 5, Func. Count: 51, Neg. LLF: 152.27017372320023
Iteration: 6, Func. Count: 60, Neg. LLF: 152.13014011276326
Iteration: 7, Func. Count: 69, Neg. LLF: 153.03247659637591
Iteration: 8, Func. Count: 79, Neg. LLF: 309.96806580990227
Iteration: 9, Func. Count: 91, Neg. LLF: 267.50815329497806
Iteration: 10, Func. Count: 101, Neg. LLF: 151.28392824126075
Iteration: 11, Func. Count: 110, Neg. LLF: 151.2633110485947
Iteration: 12, Func. Count: 119, Neg. LLF: 151.23186415036358
Iteration: 13, Func. Count: 128, Neg. LLF: 151.2171037869339
Iteration: 14, Func. Count: 137, Neg. LLF: 151.1888389832694
Iteration: 15, Func. Count: 146, Neg. LLF: 151.18752797370905
Iteration: 16, Func. Count: 155, Neg. LLF: 151.1872030980211
Iteration: 17, Func. Count: 164, Neg. LLF: 151.1871754395327
Iteration: 18, Func. Count: 173, Neg. LLF: 151.18717340248065
Iteration: 19, Func. Count: 181, Neg. LLF: 151.18717342119191
Optimization terminated successfully (Exit mode 0)
Current function value: 151.18717340248065
Iterations: 19
Function evaluations: 181
Gradient evaluations: 19
Iteration: 1, Func. Count: 11, Neg. LLF: 165.7402969531936
Iteration: 2, Func. Count: 25, Neg. LLF: 169.169728094887
Iteration: 3, Func. Count: 37, Neg. LLF: 157.6259138034787
Iteration: 4, Func. Count: 47, Neg. LLF: 157.06657519478586
Iteration: 5, Func. Count: 57, Neg. LLF: 157.00883371121492
Iteration: 6, Func. Count: 67, Neg. LLF: 156.93097734484954
Iteration: 7, Func. Count: 77, Neg. LLF: 156.89288354054602
Iteration: 8, Func. Count: 87, Neg. LLF: 156.87775630557996
Iteration: 9, Func. Count: 97, Neg. LLF: 156.87683689010436
Iteration: 10, Func. Count: 107, Neg. LLF: 156.876831306681
Iteration: 11, Func. Count: 116, Neg. LLF: 156.87683054355244
Optimization terminated successfully (Exit mode 0)
Current function value: 156.876831306681
Iterations: 11
Function evaluations: 116
Gradient evaluations: 11
Iteration: 1, Func. Count: 12, Neg. LLF: 219.06350221165982
Iteration: 2, Func. Count: 24, Neg. LLF: 161.87367342129812
Iteration: 3, Func. Count: 36, Neg. LLF: 154.25584616981655
Iteration: 4, Func. Count: 47, Neg. LLF: 165.3744485340969
Iteration: 5, Func. Count: 59, Neg. LLF: 156.7097739161211
Iteration: 6, Func. Count: 71, Neg. LLF: 665.8604468619384
Iteration: 7, Func. Count: 84, Neg. LLF: 155.42491596716616
Iteration: 8, Func. Count: 96, Neg. LLF: 154.26767205359724
Iteration: 9, Func. Count: 108, Neg. LLF: 152.7099387287841
Iteration: 10, Func. Count: 119, Neg. LLF: 152.4365838634522
Iteration: 11, Func. Count: 130, Neg. LLF: 152.46588585398845
Iteration: 12, Func. Count: 142, Neg. LLF: 152.5861236430422
Iteration: 13, Func. Count: 154, Neg. LLF: 151.87190469689125
Iteration: 14, Func. Count: 165, Neg. LLF: 151.76372987603736
Iteration: 15, Func. Count: 176, Neg. LLF: 151.55295705963857
Iteration: 16, Func. Count: 187, Neg. LLF: 151.49899854432488
Iteration: 17, Func. Count: 199, Neg. LLF: 151.3666898924151
Iteration: 18, Func. Count: 210, Neg. LLF: 151.3108449748617
Iteration: 19, Func. Count: 221, Neg. LLF: 151.29017258575996
Iteration: 20, Func. Count: 232, Neg. LLF: 151.27712643294106
Iteration: 21, Func. Count: 243, Neg. LLF: 151.23377217969053
Iteration: 22, Func. Count: 254, Neg. LLF: 151.20731061480578
Iteration: 23, Func. Count: 265, Neg. LLF: 151.19364980017147
Iteration: 24, Func. Count: 276, Neg. LLF: 151.18797931569728
Iteration: 25, Func. Count: 287, Neg. LLF: 151.18724349569612
Iteration: 26, Func. Count: 298, Neg. LLF: 151.18718362141266
Iteration: 27, Func. Count: 309, Neg. LLF: 151.18717531243348
Iteration: 28, Func. Count: 320, Neg. LLF: 151.1871734026863
Iteration: 29, Func. Count: 330, Neg. LLF: 151.18717333755404
Optimization terminated successfully (Exit mode 0)
Current function value: 151.1871734026863
Iterations: 29
Function evaluations: 330
Gradient evaluations: 29
Iteration: 1, Func. Count: 13, Neg. LLF: 210.43306913296627
Iteration: 2, Func. Count: 26, Neg. LLF: 194.94050213372222
Iteration: 3, Func. Count: 39, Neg. LLF: 178.41762019847715
Iteration: 4, Func. Count: 52, Neg. LLF: 168.45492261789227
Iteration: 5, Func. Count: 65, Neg. LLF: 161.19982104813616
Iteration: 6, Func. Count: 78, Neg. LLF: 155.38533273180548
Iteration: 7, Func. Count: 91, Neg. LLF: 157.83510677606128
Iteration: 8, Func. Count: 104, Neg. LLF: 152.33588089473466
Iteration: 9, Func. Count: 116, Neg. LLF: 151.73395311413324
Iteration: 10, Func. Count: 128, Neg. LLF: 154.0564283796794
Iteration: 11, Func. Count: 141, Neg. LLF: 151.72731029720413
Iteration: 12, Func. Count: 154, Neg. LLF: 151.5329908286691
Iteration: 13, Func. Count: 167, Neg. LLF: 151.4468060918815
Iteration: 14, Func. Count: 179, Neg. LLF: 151.42487525533494
Iteration: 15, Func. Count: 191, Neg. LLF: 151.29289908723365
Iteration: 16, Func. Count: 203, Neg. LLF: 151.33011774578605
Iteration: 17, Func. Count: 216, Neg. LLF: 151.29919343281344
Iteration: 18, Func. Count: 229, Neg. LLF: 151.21102639162925
Iteration: 19, Func. Count: 241, Neg. LLF: 151.20957126735902
Iteration: 20, Func. Count: 253, Neg. LLF: 151.20908152724573
Iteration: 21, Func. Count: 265, Neg. LLF: 151.20763791581075
Iteration: 22, Func. Count: 277, Neg. LLF: 151.20664129072296
Iteration: 23, Func. Count: 289, Neg. LLF: 151.20393805381835
Iteration: 24, Func. Count: 301, Neg. LLF: 151.19629875747
Iteration: 25, Func. Count: 313, Neg. LLF: 151.18908330840657
Iteration: 26, Func. Count: 325, Neg. LLF: 151.18724430042164
Iteration: 27, Func. Count: 337, Neg. LLF: 151.18717650943046
Iteration: 28, Func. Count: 349, Neg. LLF: 151.1871735361946
Iteration: 29, Func. Count: 360, Neg. LLF: 151.18717351000328
Optimization terminated successfully (Exit mode 0)
Current function value: 151.1871735361946
Iterations: 29
Function evaluations: 360
Gradient evaluations: 29
Iteration: 1, Func. Count: 14, Neg. LLF: 237.3978739770774
Iteration: 2, Func. Count: 28, Neg. LLF: 163.3708074822476
Iteration: 3, Func. Count: 42, Neg. LLF: 149.4680916713674
Iteration: 4, Func. Count: 55, Neg. LLF: 206.7243471737317
Iteration: 5, Func. Count: 69, Neg. LLF: 149.243712588038
Iteration: 6, Func. Count: 83, Neg. LLF: 305.4658202912324
Iteration: 7, Func. Count: 99, Neg. LLF: 149.02103700831566
Iteration: 8, Func. Count: 112, Neg. LLF: 149.15170505573232
Iteration: 9, Func. Count: 126, Neg. LLF: 149.13318133914393
Iteration: 10, Func. Count: 140, Neg. LLF: 148.95412599971357
Iteration: 11, Func. Count: 154, Neg. LLF: 148.91300602497185
Iteration: 12, Func. Count: 167, Neg. LLF: 148.91145924797183
Iteration: 13, Func. Count: 180, Neg. LLF: 148.91134907708633
Iteration: 14, Func. Count: 193, Neg. LLF: 148.91133286066486
Iteration: 15, Func. Count: 206, Neg. LLF: 148.91133193716837
Optimization terminated successfully (Exit mode 0)
Current function value: 148.91133193716837
Iterations: 15
Function evaluations: 206
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 154.3366026482975
Iteration: 2, Func. Count: 21, Neg. LLF: 164.57101413064552
Iteration: 3, Func. Count: 32, Neg. LLF: 160.55082485681282
Iteration: 4, Func. Count: 46, Neg. LLF: 152.3373150474492
Iteration: 5, Func. Count: 56, Neg. LLF: 152.27144513596915
Iteration: 6, Func. Count: 66, Neg. LLF: 151.79706251593703
Iteration: 7, Func. Count: 76, Neg. LLF: 368.98042370036364
Iteration: 8, Func. Count: 87, Neg. LLF: 218.7294209026893
Iteration: 9, Func. Count: 99, Neg. LLF: 152.4157168511102
Iteration: 10, Func. Count: 110, Neg. LLF: 151.2553432889633
Iteration: 11, Func. Count: 121, Neg. LLF: 151.20953846815675
Iteration: 12, Func. Count: 132, Neg. LLF: 151.18764943249766
Iteration: 13, Func. Count: 142, Neg. LLF: 151.18718226153442
Iteration: 14, Func. Count: 152, Neg. LLF: 151.1871745873797
Iteration: 15, Func. Count: 162, Neg. LLF: 151.1871734389836
Iteration: 16, Func. Count: 171, Neg. LLF: 151.18717340709995
Optimization terminated successfully (Exit mode 0)
Current function value: 151.1871734389836
Iterations: 16
Function evaluations: 171
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 353.89795885508994
Iteration: 2, Func. Count: 25, Neg. LLF: 164.4140254210251
Iteration: 3, Func. Count: 38, Neg. LLF: 157.31899700000318
Iteration: 4, Func. Count: 49, Neg. LLF: 156.99285042394217
Iteration: 5, Func. Count: 60, Neg. LLF: 156.94491948945978
Iteration: 6, Func. Count: 71, Neg. LLF: 156.90437197759928
Iteration: 7, Func. Count: 82, Neg. LLF: 156.8775543893812
Iteration: 8, Func. Count: 93, Neg. LLF: 156.7800026440203
Iteration: 9, Func. Count: 104, Neg. LLF: 156.76235718073778
Iteration: 10, Func. Count: 115, Neg. LLF: 156.7546704530946
Iteration: 11, Func. Count: 126, Neg. LLF: 156.7542718576103
Iteration: 12, Func. Count: 137, Neg. LLF: 156.75442463604918
Iteration: 13, Func. Count: 158, Neg. LLF: 156.75464128185826
Iteration: 14, Func. Count: 169, Neg. LLF: 156.75466503539923
Iteration: 15, Func. Count: 180, Neg. LLF: 156.75494824312284
Iteration: 16, Func. Count: 194, Neg. LLF: 156.75466907334766
Iteration: 17, Func. Count: 204, Neg. LLF: 156.7546679350516
Optimization terminated successfully (Exit mode 0)
Current function value: 156.75466907334766
Iterations: 18
Function evaluations: 204
Gradient evaluations: 17
Iteration: 1, Func. Count: 13, Neg. LLF: 166.90365698595767
Iteration: 2, Func. Count: 26, Neg. LLF: 187.39864710409992
Iteration: 3, Func. Count: 40, Neg. LLF: 155.09760650134766
Iteration: 4, Func. Count: 52, Neg. LLF: 169.9085590218781
Iteration: 5, Func. Count: 66, Neg. LLF: 154.31219400615242
Iteration: 6, Func. Count: 78, Neg. LLF: 154.10930006592608
Iteration: 7, Func. Count: 90, Neg. LLF: 154.42374544714963
Iteration: 8, Func. Count: 103, Neg. LLF: 153.71937982435924
Iteration: 9, Func. Count: 116, Neg. LLF: 152.62426356859424
Iteration: 10, Func. Count: 129, Neg. LLF: 153.59650027477258
Iteration: 11, Func. Count: 142, Neg. LLF: 154.8314376615848
Iteration: 12, Func. Count: 155, Neg. LLF: 153.30467422875242
Iteration: 13, Func. Count: 168, Neg. LLF: 152.22681034250175
Iteration: 14, Func. Count: 180, Neg. LLF: 152.05698252111296
Iteration: 15, Func. Count: 193, Neg. LLF: 151.48959581783498
Iteration: 16, Func. Count: 205, Neg. LLF: 151.51337792729032
Iteration: 17, Func. Count: 218, Neg. LLF: 151.4658407619051
Iteration: 18, Func. Count: 231, Neg. LLF: 151.33435881988572
Iteration: 19, Func. Count: 244, Neg. LLF: 151.39944263709614
Iteration: 20, Func. Count: 257, Neg. LLF: 151.26723470595383
Iteration: 21, Func. Count: 269, Neg. LLF: 151.22328004836046
Iteration: 22, Func. Count: 281, Neg. LLF: 151.19188273014535
Iteration: 23, Func. Count: 293, Neg. LLF: 151.1880091068119
Iteration: 24, Func. Count: 305, Neg. LLF: 151.1875643136841
Iteration: 25, Func. Count: 317, Neg. LLF: 151.18747254589783
Iteration: 26, Func. Count: 329, Neg. LLF: 151.18736639896687
Iteration: 27, Func. Count: 341, Neg. LLF: 151.1872497016274
Iteration: 28, Func. Count: 353, Neg. LLF: 151.18718713999783
Iteration: 29, Func. Count: 365, Neg. LLF: 151.1871743551291
Iteration: 30, Func. Count: 377, Neg. LLF: 151.18717345080142
Optimization terminated successfully (Exit mode 0)
Current function value: 151.18717345080142
Iterations: 30
Function evaluations: 377
Gradient evaluations: 30
Iteration: 1, Func. Count: 14, Neg. LLF: 208.2422393449212
Iteration: 2, Func. Count: 28, Neg. LLF: 193.42454656432423
Iteration: 3, Func. Count: 42, Neg. LLF: 178.59062303460547
Iteration: 4, Func. Count: 56, Neg. LLF: 159.78855256295753
Iteration: 5, Func. Count: 70, Neg. LLF: 151.9178413521531
Iteration: 6, Func. Count: 83, Neg. LLF: 155.64001356599363
Iteration: 7, Func. Count: 98, Neg. LLF: 168.95192471882646
Iteration: 8, Func. Count: 112, Neg. LLF: 151.952203054954
Iteration: 9, Func. Count: 126, Neg. LLF: 152.14819173601916
Iteration: 10, Func. Count: 140, Neg. LLF: 151.49357254690918
Iteration: 11, Func. Count: 154, Neg. LLF: 151.38212825939402
Iteration: 12, Func. Count: 167, Neg. LLF: 151.32181780254766
Iteration: 13, Func. Count: 180, Neg. LLF: 151.2460544532859
Iteration: 14, Func. Count: 193, Neg. LLF: 151.2717616696678
Iteration: 15, Func. Count: 207, Neg. LLF: 151.1897584692025
Iteration: 16, Func. Count: 220, Neg. LLF: 151.1900355815241
Iteration: 17, Func. Count: 234, Neg. LLF: 151.1873920037424
Iteration: 18, Func. Count: 247, Neg. LLF: 151.1873703404039
Iteration: 19, Func. Count: 260, Neg. LLF: 151.18735951118666
Iteration: 20, Func. Count: 273, Neg. LLF: 151.18730223101804
Iteration: 21, Func. Count: 286, Neg. LLF: 151.18724025305028
Iteration: 22, Func. Count: 299, Neg. LLF: 151.18718756823972
Iteration: 23, Func. Count: 312, Neg. LLF: 151.18717462614194
Iteration: 24, Func. Count: 325, Neg. LLF: 151.18717341429266
Iteration: 25, Func. Count: 337, Neg. LLF: 151.18717338804998
Optimization terminated successfully (Exit mode 0)
Current function value: 151.18717341429266
Iterations: 25
Function evaluations: 337
Gradient evaluations: 25
Iteration: 1, Func. Count: 15, Neg. LLF: 229.48720950836343
Iteration: 2, Func. Count: 30, Neg. LLF: 164.42984682261297
Iteration: 3, Func. Count: 45, Neg. LLF: 149.62596494999443
Iteration: 4, Func. Count: 59, Neg. LLF: 197.37810718856508
Iteration: 5, Func. Count: 74, Neg. LLF: 149.83082022108334
Iteration: 6, Func. Count: 89, Neg. LLF: 278.9044722199668
Iteration: 7, Func. Count: 106, Neg. LLF: 149.07129668261317
Iteration: 8, Func. Count: 120, Neg. LLF: 148.97240987596976
Iteration: 9, Func. Count: 134, Neg. LLF: 149.4407061422496
Iteration: 10, Func. Count: 149, Neg. LLF: 148.91221782413842
Iteration: 11, Func. Count: 163, Neg. LLF: 148.91147109405597
Iteration: 12, Func. Count: 177, Neg. LLF: 148.91135808889243
Iteration: 13, Func. Count: 191, Neg. LLF: 148.91133009258874
Iteration: 14, Func. Count: 205, Neg. LLF: 148.9113306123496
Optimization terminated successfully (Exit mode 0)
Current function value: 148.9113306123496
Iterations: 14
Function evaluations: 205
Gradient evaluations: 14
Iteration: 1, Func. Count: 8, Neg. LLF: 153.11386364982627
Iteration: 2, Func. Count: 15, Neg. LLF: 166.64783194491207
Iteration: 3, Func. Count: 23, Neg. LLF: 186.13260734850357
Iteration: 4, Func. Count: 34, Neg. LLF: 155.39730034993232
Iteration: 5, Func. Count: 42, Neg. LLF: 151.29387043742346
Iteration: 6, Func. Count: 49, Neg. LLF: 150.00290738496528
Iteration: 7, Func. Count: 56, Neg. LLF: 195.0746362984336
Iteration: 8, Func. Count: 64, Neg. LLF: 204.39781714333031
Iteration: 9, Func. Count: 72, Neg. LLF: 232.13576809989232
Iteration: 10, Func. Count: 80, Neg. LLF: 226.98828723114676
Iteration: 11, Func. Count: 88, Neg. LLF: 220.87807319271215
Iteration: 12, Func. Count: 96, Neg. LLF: 379.666779554921
Iteration: 13, Func. Count: 104, Neg. LLF: 450.88183496948494
Iteration: 14, Func. Count: 112, Neg. LLF: 547.9602438332022
Iteration: 15, Func. Count: 120, Neg. LLF: 509.9595332530077
Iteration: 16, Func. Count: 128, Neg. LLF: 173.0403180738368
Iteration: 17, Func. Count: 137, Neg. LLF: 329.1153411816087
Iteration: 18, Func. Count: 145, Neg. LLF: 146.03380464059404
Iteration: 19, Func. Count: 153, Neg. LLF: 145.07765210305666
Iteration: 20, Func. Count: 161, Neg. LLF: 145.02895065915334
Iteration: 21, Func. Count: 168, Neg. LLF: 145.02743925032792
Iteration: 22, Func. Count: 175, Neg. LLF: 145.02732111841345
Iteration: 23, Func. Count: 182, Neg. LLF: 145.02728948638966
Iteration: 24, Func. Count: 189, Neg. LLF: 145.0272826354488
Iteration: 25, Func. Count: 196, Neg. LLF: 145.02727941358162
Iteration: 26, Func. Count: 202, Neg. LLF: 145.0272792641848
Optimization terminated successfully (Exit mode 0)
Current function value: 145.02727941358162
Iterations: 26
Function evaluations: 202
Gradient evaluations: 26
Iteration: 1, Func. Count: 9, Neg. LLF: 153.7956339196288
Iteration: 2, Func. Count: 17, Neg. LLF: 155.28495846340093
Iteration: 3, Func. Count: 26, Neg. LLF: 188.69006381036678
Iteration: 4, Func. Count: 38, Neg. LLF: 164.00473875338776
Iteration: 5, Func. Count: 50, Neg. LLF: 151.15453148670122
Iteration: 6, Func. Count: 58, Neg. LLF: 149.6936289969356
Iteration: 7, Func. Count: 66, Neg. LLF: 499.9052002217247
Iteration: 8, Func. Count: 75, Neg. LLF: 352.1117015144981
Iteration: 9, Func. Count: 84, Neg. LLF: 326.73934317744664
Iteration: 10, Func. Count: 93, Neg. LLF: 292.133431879104
Iteration: 11, Func. Count: 102, Neg. LLF: 147.11434739448362
Iteration: 12, Func. Count: 110, Neg. LLF: 147.89805598876177
Iteration: 13, Func. Count: 119, Neg. LLF: 258.91379579131984
Iteration: 14, Func. Count: 129, Neg. LLF: 208.12642763478607
Iteration: 15, Func. Count: 138, Neg. LLF: 296.8151922658881
Iteration: 16, Func. Count: 147, Neg. LLF: 149.88682010165942
Iteration: 17, Func. Count: 156, Neg. LLF: 194.2265031410706
Iteration: 18, Func. Count: 165, Neg. LLF: 145.10859126254041
Iteration: 19, Func. Count: 174, Neg. LLF: 144.81348487788455
Iteration: 20, Func. Count: 182, Neg. LLF: 144.70578659723944
Iteration: 21, Func. Count: 190, Neg. LLF: 144.66029496863183
Iteration: 22, Func. Count: 198, Neg. LLF: 144.65656939438568
Iteration: 23, Func. Count: 206, Neg. LLF: 144.65465556603226
Iteration: 24, Func. Count: 214, Neg. LLF: 144.654500744088
Iteration: 25, Func. Count: 222, Neg. LLF: 144.65445422856965
Iteration: 26, Func. Count: 230, Neg. LLF: 144.65439496728416
Iteration: 27, Func. Count: 238, Neg. LLF: 144.65439437227823
Optimization terminated successfully (Exit mode 0)
Current function value: 144.65439437227823
Iterations: 27
Function evaluations: 238
Gradient evaluations: 27
Iteration: 1, Func. Count: 10, Neg. LLF: 153.9365051391893
Iteration: 2, Func. Count: 19, Neg. LLF: 152.25446810502754
Iteration: 3, Func. Count: 28, Neg. LLF: 192.51326130002062
Iteration: 4, Func. Count: 41, Neg. LLF: 162.19618480730537
Iteration: 5, Func. Count: 53, Neg. LLF: 151.31751314144128
Iteration: 6, Func. Count: 62, Neg. LLF: 150.75496651024244
Iteration: 7, Func. Count: 71, Neg. LLF: 150.03448116952777
Iteration: 8, Func. Count: 80, Neg. LLF: 280.67169163173395
Iteration: 9, Func. Count: 90, Neg. LLF: 262.8311078859708
Iteration: 10, Func. Count: 100, Neg. LLF: 290.257108015078
Iteration: 11, Func. Count: 110, Neg. LLF: 499.64247132545626
Iteration: 12, Func. Count: 120, Neg. LLF: 732.2604782190567
Iteration: 13, Func. Count: 130, Neg. LLF: 320.3746684057479
Iteration: 14, Func. Count: 140, Neg. LLF: 355.8377712368657
Iteration: 15, Func. Count: 150, Neg. LLF: 226.2494346955174
Iteration: 16, Func. Count: 160, Neg. LLF: 251.35761720077124
Iteration: 17, Func. Count: 170, Neg. LLF: 234.0665134394542
Iteration: 18, Func. Count: 180, Neg. LLF: 228.50493194230117
Iteration: 19, Func. Count: 190, Neg. LLF: 148.47819906507678
Iteration: 20, Func. Count: 200, Neg. LLF: 145.14995440208114
Iteration: 21, Func. Count: 210, Neg. LLF: 144.74756627331334
Iteration: 22, Func. Count: 219, Neg. LLF: 144.72551163003246
Iteration: 23, Func. Count: 228, Neg. LLF: 144.71446812576707
Iteration: 24, Func. Count: 237, Neg. LLF: 144.7068124278138
Iteration: 25, Func. Count: 246, Neg. LLF: 144.6938486772144
Iteration: 26, Func. Count: 255, Neg. LLF: 144.68009091094163
Iteration: 27, Func. Count: 264, Neg. LLF: 144.6740354711323
Iteration: 28, Func. Count: 273, Neg. LLF: 144.67191674518844
Iteration: 29, Func. Count: 282, Neg. LLF: 144.66223043770643
Iteration: 30, Func. Count: 291, Neg. LLF: 144.65739482459648
Iteration: 31, Func. Count: 300, Neg. LLF: 144.65480046747325
Iteration: 32, Func. Count: 309, Neg. LLF: 144.65439662935242
Iteration: 33, Func. Count: 318, Neg. LLF: 144.6543943672463
Iteration: 34, Func. Count: 326, Neg. LLF: 144.6543947907003
Optimization terminated successfully (Exit mode 0)
Current function value: 144.6543943672463
Iterations: 34
Function evaluations: 326
Gradient evaluations: 34
Iteration: 1, Func. Count: 11, Neg. LLF: 154.12115844526832
Iteration: 2, Func. Count: 21, Neg. LLF: 152.1142055504283
Iteration: 3, Func. Count: 31, Neg. LLF: 191.6044671497054
Iteration: 4, Func. Count: 45, Neg. LLF: 161.31870133088393
Iteration: 5, Func. Count: 59, Neg. LLF: 151.2124211095909
Iteration: 6, Func. Count: 69, Neg. LLF: 150.8291164466507
Iteration: 7, Func. Count: 79, Neg. LLF: 148.93667307452097
Iteration: 8, Func. Count: 89, Neg. LLF: 2331.7226121342414
Iteration: 9, Func. Count: 100, Neg. LLF: 262.4663186240856
Iteration: 10, Func. Count: 111, Neg. LLF: 1081.4195160515783
Iteration: 11, Func. Count: 122, Neg. LLF: 400.7989965172388
Iteration: 12, Func. Count: 133, Neg. LLF: 413.8193587658993
Iteration: 13, Func. Count: 144, Neg. LLF: 215.75209862545393
Iteration: 14, Func. Count: 155, Neg. LLF: 312.11658645576665
Iteration: 15, Func. Count: 166, Neg. LLF: 230.16371228911902
Iteration: 16, Func. Count: 177, Neg. LLF: 226.10238587680254
Iteration: 17, Func. Count: 188, Neg. LLF: 222.4396498721062
Iteration: 18, Func. Count: 199, Neg. LLF: 145.77789232771326
Iteration: 19, Func. Count: 210, Neg. LLF: 144.7838444423407
Iteration: 20, Func. Count: 220, Neg. LLF: 144.7267323327717
Iteration: 21, Func. Count: 230, Neg. LLF: 144.7102383526767
Iteration: 22, Func. Count: 240, Neg. LLF: 144.68583761431773
Iteration: 23, Func. Count: 250, Neg. LLF: 144.67834355057707
Iteration: 24, Func. Count: 260, Neg. LLF: 144.6641713249152
Iteration: 25, Func. Count: 270, Neg. LLF: 144.66004955977775
Iteration: 26, Func. Count: 280, Neg. LLF: 144.65893397044317
Iteration: 27, Func. Count: 290, Neg. LLF: 144.6571397101625
Iteration: 28, Func. Count: 300, Neg. LLF: 144.65555724603118
Iteration: 29, Func. Count: 310, Neg. LLF: 144.65464029679964
Iteration: 30, Func. Count: 320, Neg. LLF: 144.65440301096092
Iteration: 31, Func. Count: 330, Neg. LLF: 144.65439442739137
Iteration: 32, Func. Count: 339, Neg. LLF: 144.6543947632983
Optimization terminated successfully (Exit mode 0)
Current function value: 144.65439442739137
Iterations: 32
Function evaluations: 339
Gradient evaluations: 32
Iteration: 1, Func. Count: 12, Neg. LLF: 154.30906267472628
Iteration: 2, Func. Count: 23, Neg. LLF: 153.46770986972766
Iteration: 3, Func. Count: 35, Neg. LLF: 187.61049590095442
Iteration: 4, Func. Count: 50, Neg. LLF: 163.9553301816778
Iteration: 5, Func. Count: 65, Neg. LLF: 151.17679065171254
Iteration: 6, Func. Count: 76, Neg. LLF: 149.72256676149354
Iteration: 7, Func. Count: 87, Neg. LLF: 494.80716720625935
Iteration: 8, Func. Count: 99, Neg. LLF: 352.5015526887584
Iteration: 9, Func. Count: 111, Neg. LLF: 327.7902648952839
Iteration: 10, Func. Count: 123, Neg. LLF: 321.025453785971
Iteration: 11, Func. Count: 135, Neg. LLF: 168.03624406313406
Iteration: 12, Func. Count: 147, Neg. LLF: 152.15270593793576
Iteration: 13, Func. Count: 159, Neg. LLF: 147.7469777406759
Iteration: 14, Func. Count: 171, Neg. LLF: 618.0751450152667
Iteration: 15, Func. Count: 183, Neg. LLF: 7136.524646400118
Iteration: 16, Func. Count: 195, Neg. LLF: 300.3474970870027
Iteration: 17, Func. Count: 207, Neg. LLF: 223.50764034098088
Iteration: 18, Func. Count: 219, Neg. LLF: 226.1177838743109
Iteration: 19, Func. Count: 231, Neg. LLF: 229.6127880722546
Iteration: 20, Func. Count: 243, Neg. LLF: 196.34516857032762
Iteration: 21, Func. Count: 255, Neg. LLF: 145.10214224108887
Iteration: 22, Func. Count: 267, Neg. LLF: 144.7334813485378
Iteration: 23, Func. Count: 278, Neg. LLF: 144.68024524654803
Iteration: 24, Func. Count: 289, Neg. LLF: 144.65512805706095
Iteration: 25, Func. Count: 300, Neg. LLF: 144.65440155311623
Iteration: 26, Func. Count: 311, Neg. LLF: 144.6543944303667
Iteration: 27, Func. Count: 321, Neg. LLF: 144.65439453189157
Optimization terminated successfully (Exit mode 0)
Current function value: 144.6543944303667
Iterations: 28
Function evaluations: 321
Gradient evaluations: 27
Iteration: 1, Func. Count: 9, Neg. LLF: 156.13094486818127
Iteration: 2, Func. Count: 17, Neg. LLF: 153.61622485329707
Iteration: 3, Func. Count: 25, Neg. LLF: 187.91530238106478
Iteration: 4, Func. Count: 37, Neg. LLF: 163.22414177339894
Iteration: 5, Func. Count: 48, Neg. LLF: 160.44275204509216
Iteration: 6, Func. Count: 57, Neg. LLF: 151.6679828531006
Iteration: 7, Func. Count: 65, Neg. LLF: 151.15750940669182
Iteration: 8, Func. Count: 73, Neg. LLF: 150.7506764205301
Iteration: 9, Func. Count: 81, Neg. LLF: 149.1812349229936
Iteration: 10, Func. Count: 89, Neg. LLF: 227.97408462790838
Iteration: 11, Func. Count: 98, Neg. LLF: 287.1719428950263
Iteration: 12, Func. Count: 107, Neg. LLF: 3093.9021704904458
Iteration: 13, Func. Count: 116, Neg. LLF: 1148.1054644191
Iteration: 14, Func. Count: 125, Neg. LLF: 401.8699082439289
Iteration: 15, Func. Count: 134, Neg. LLF: 295.66339024240375
Iteration: 16, Func. Count: 143, Neg. LLF: 261.09889799361895
Iteration: 17, Func. Count: 152, Neg. LLF: 247.52648995820516
Iteration: 18, Func. Count: 161, Neg. LLF: 152.17067548924769
Iteration: 19, Func. Count: 170, Neg. LLF: 145.68445533791788
Iteration: 20, Func. Count: 179, Neg. LLF: 145.0608037433732
Iteration: 21, Func. Count: 187, Neg. LLF: 145.03530739639683
Iteration: 22, Func. Count: 195, Neg. LLF: 145.01950530888396
Iteration: 23, Func. Count: 203, Neg. LLF: 145.01646928950979
Iteration: 24, Func. Count: 211, Neg. LLF: 145.0163007350182
Iteration: 25, Func. Count: 219, Neg. LLF: 145.01624678574424
Iteration: 26, Func. Count: 227, Neg. LLF: 145.01620487335137
Iteration: 27, Func. Count: 235, Neg. LLF: 145.0161741772538
Iteration: 28, Func. Count: 243, Neg. LLF: 145.0161660740042
Iteration: 29, Func. Count: 251, Neg. LLF: 145.01616515747793
Optimization terminated successfully (Exit mode 0)
Current function value: 145.01616515747793
Iterations: 29
Function evaluations: 251
Gradient evaluations: 29
Iteration: 1, Func. Count: 10, Neg. LLF: 152.70416405279582
Iteration: 2, Func. Count: 19, Neg. LLF: 151.6166276443031
Iteration: 3, Func. Count: 29, Neg. LLF: 210.45195222651614
Iteration: 4, Func. Count: 42, Neg. LLF: 173.21871246182073
Iteration: 5, Func. Count: 53, Neg. LLF: 147.79328148331112
Iteration: 6, Func. Count: 62, Neg. LLF: 145.71059782772315
Iteration: 7, Func. Count: 71, Neg. LLF: 220.55215698263186
Iteration: 8, Func. Count: 81, Neg. LLF: 241.30498135783955
Iteration: 9, Func. Count: 91, Neg. LLF: 237.26978488090126
Iteration: 10, Func. Count: 101, Neg. LLF: 148.59984807886036
Iteration: 11, Func. Count: 111, Neg. LLF: 235.01224910181946
Iteration: 12, Func. Count: 121, Neg. LLF: 145.65581043887494
Iteration: 13, Func. Count: 131, Neg. LLF: 144.69910724287624
Iteration: 14, Func. Count: 140, Neg. LLF: 144.6639977335325
Iteration: 15, Func. Count: 149, Neg. LLF: 144.6570479120492
Iteration: 16, Func. Count: 158, Neg. LLF: 144.65547593744768
Iteration: 17, Func. Count: 167, Neg. LLF: 144.65421002983675
Iteration: 18, Func. Count: 176, Neg. LLF: 144.65241396346576
Iteration: 19, Func. Count: 185, Neg. LLF: 144.6521652602354
Iteration: 20, Func. Count: 194, Neg. LLF: 144.65214151127836
Iteration: 21, Func. Count: 203, Neg. LLF: 144.65214062597758
Optimization terminated successfully (Exit mode 0)
Current function value: 144.65214062597758
Iterations: 21
Function evaluations: 203
Gradient evaluations: 21
Iteration: 1, Func. Count: 11, Neg. LLF: 154.7921236492035
Iteration: 2, Func. Count: 21, Neg. LLF: 153.5496731046748
Iteration: 3, Func. Count: 31, Neg. LLF: 193.44822099690083
Iteration: 4, Func. Count: 45, Neg. LLF: 166.59772761484467
Iteration: 5, Func. Count: 57, Neg. LLF: 151.73119356884447
Iteration: 6, Func. Count: 67, Neg. LLF: 151.02304110432652
Iteration: 7, Func. Count: 77, Neg. LLF: 150.7402735477713
Iteration: 8, Func. Count: 87, Neg. LLF: 149.9293879835935
Iteration: 9, Func. Count: 97, Neg. LLF: 146.04605715059088
Iteration: 10, Func. Count: 107, Neg. LLF: 217.76676519055002
Iteration: 11, Func. Count: 118, Neg. LLF: 161.44583032242755
Iteration: 12, Func. Count: 131, Neg. LLF: 212.56674340840135
Iteration: 13, Func. Count: 142, Neg. LLF: 196.20246545915404
Iteration: 14, Func. Count: 153, Neg. LLF: 165.57754613704776
Iteration: 15, Func. Count: 164, Neg. LLF: 144.88705708489033
Iteration: 16, Func. Count: 174, Neg. LLF: 144.7861090655869
Iteration: 17, Func. Count: 184, Neg. LLF: 145.13727120551965
Iteration: 18, Func. Count: 195, Neg. LLF: 144.71379326025334
Iteration: 19, Func. Count: 205, Neg. LLF: 144.68243926288653
Iteration: 20, Func. Count: 215, Neg. LLF: 144.66731623538828
Iteration: 21, Func. Count: 225, Neg. LLF: 144.65928311218605
Iteration: 22, Func. Count: 235, Neg. LLF: 144.65691772971246
Iteration: 23, Func. Count: 245, Neg. LLF: 144.6552306778423
Iteration: 24, Func. Count: 255, Neg. LLF: 144.65433921110025
Iteration: 25, Func. Count: 265, Neg. LLF: 144.65346621444687
Iteration: 26, Func. Count: 275, Neg. LLF: 144.65272601791492
Iteration: 27, Func. Count: 285, Neg. LLF: 144.6522854682996
Iteration: 28, Func. Count: 295, Neg. LLF: 144.65214991695728
Iteration: 29, Func. Count: 305, Neg. LLF: 144.65214069616124
Iteration: 30, Func. Count: 314, Neg. LLF: 144.65214111330152
Optimization terminated successfully (Exit mode 0)
Current function value: 144.65214069616124
Iterations: 30
Function evaluations: 314
Gradient evaluations: 30
Iteration: 1, Func. Count: 12, Neg. LLF: 192.98059293869105
Iteration: 2, Func. Count: 27, Neg. LLF: 165.64892661056464
Iteration: 3, Func. Count: 39, Neg. LLF: 167.0941097731112
Iteration: 4, Func. Count: 51, Neg. LLF: 157.7853341574664
Iteration: 5, Func. Count: 62, Neg. LLF: 156.99463750823455
Iteration: 6, Func. Count: 73, Neg. LLF: 157.4711719976163
Iteration: 7, Func. Count: 86, Neg. LLF: 160.90173853105352
Iteration: 8, Func. Count: 98, Neg. LLF: 155.39297841700568
Iteration: 9, Func. Count: 109, Neg. LLF: 154.65039146992032
Iteration: 10, Func. Count: 120, Neg. LLF: 154.34298553297887
Iteration: 11, Func. Count: 131, Neg. LLF: 153.787822237039
Iteration: 12, Func. Count: 142, Neg. LLF: 153.5443472418664
Iteration: 13, Func. Count: 153, Neg. LLF: 153.55404411058134
Iteration: 14, Func. Count: 165, Neg. LLF: 153.53052224577522
Iteration: 15, Func. Count: 176, Neg. LLF: 153.52811449267958
Iteration: 16, Func. Count: 187, Neg. LLF: 153.5188109629477
Iteration: 17, Func. Count: 198, Neg. LLF: 153.5144674766588
Iteration: 18, Func. Count: 209, Neg. LLF: 153.51193372646307
Iteration: 19, Func. Count: 220, Neg. LLF: 153.50948364396004
Iteration: 20, Func. Count: 231, Neg. LLF: 153.50370220456372
Iteration: 21, Func. Count: 242, Neg. LLF: 153.48817076302996
Iteration: 22, Func. Count: 253, Neg. LLF: 153.31374365630037
Iteration: 23, Func. Count: 264, Neg. LLF: 150.54348928359548
Iteration: 24, Func. Count: 275, Neg. LLF: 148.8358121411125
Iteration: 25, Func. Count: 286, Neg. LLF: 180.58461181909306
Iteration: 26, Func. Count: 298, Neg. LLF: 386.425224984851
Iteration: 27, Func. Count: 310, Neg. LLF: 1567.9376510116717
Iteration: 28, Func. Count: 322, Neg. LLF: 293.26254861190574
Iteration: 29, Func. Count: 334, Neg. LLF: 251.3059094852781
Iteration: 30, Func. Count: 346, Neg. LLF: 254.05841402084232
Iteration: 31, Func. Count: 358, Neg. LLF: 237.5647003050513
Iteration: 32, Func. Count: 370, Neg. LLF: 221.92687496666522
Iteration: 33, Func. Count: 382, Neg. LLF: 151.7710235083841
Iteration: 34, Func. Count: 394, Neg. LLF: 145.65654842916493
Iteration: 35, Func. Count: 406, Neg. LLF: 144.8843354097203
Iteration: 36, Func. Count: 417, Neg. LLF: 144.99112552938135
Iteration: 37, Func. Count: 429, Neg. LLF: 144.8642583501507
Iteration: 38, Func. Count: 441, Neg. LLF: 144.77802838559444
Iteration: 39, Func. Count: 452, Neg. LLF: 144.676536675009
Iteration: 40, Func. Count: 463, Neg. LLF: 144.65852039515744
Iteration: 41, Func. Count: 474, Neg. LLF: 144.6542519254521
Iteration: 42, Func. Count: 485, Neg. LLF: 144.65254729185594
Iteration: 43, Func. Count: 496, Neg. LLF: 144.65217040384886
Iteration: 44, Func. Count: 507, Neg. LLF: 144.65214161648365
Iteration: 45, Func. Count: 518, Neg. LLF: 144.72009828038966
Optimization terminated successfully (Exit mode 0)
Current function value: 144.6521409102847
Iterations: 46
Function evaluations: 521
Gradient evaluations: 45
Iteration: 1, Func. Count: 13, Neg. LLF: 186.3707066272555
Iteration: 2, Func. Count: 29, Neg. LLF: 181.32364810104963
Iteration: 3, Func. Count: 42, Neg. LLF: 161.42600009042548
Iteration: 4, Func. Count: 55, Neg. LLF: 155.50124097434613
Iteration: 5, Func. Count: 67, Neg. LLF: 160.8655968258257
Iteration: 6, Func. Count: 80, Neg. LLF: 152.86080890244895
Iteration: 7, Func. Count: 92, Neg. LLF: 157.97955973706127
Iteration: 8, Func. Count: 106, Neg. LLF: 152.64976917925495
Iteration: 9, Func. Count: 118, Neg. LLF: 152.4356204806108
Iteration: 10, Func. Count: 130, Neg. LLF: 152.30012206922888
Iteration: 11, Func. Count: 142, Neg. LLF: 152.111697615469
Iteration: 12, Func. Count: 154, Neg. LLF: 151.96184900570847
Iteration: 13, Func. Count: 166, Neg. LLF: 151.9064197557598
Iteration: 14, Func. Count: 178, Neg. LLF: 151.8935097793496
Iteration: 15, Func. Count: 190, Neg. LLF: 151.8674260026283
Iteration: 16, Func. Count: 202, Neg. LLF: 151.65009476386817
Iteration: 17, Func. Count: 214, Neg. LLF: 154.49920341064592
Iteration: 18, Func. Count: 227, Neg. LLF: 158.13319705642442
Iteration: 19, Func. Count: 240, Neg. LLF: 146.03856552313508
Iteration: 20, Func. Count: 252, Neg. LLF: 185.05295196919442
Iteration: 21, Func. Count: 266, Neg. LLF: 172.22868497719813
Iteration: 22, Func. Count: 279, Neg. LLF: 148.40916407446133
Iteration: 23, Func. Count: 292, Neg. LLF: 147.1274023079694
Iteration: 24, Func. Count: 305, Neg. LLF: 148.0750630745458
Iteration: 25, Func. Count: 318, Neg. LLF: 145.9917954290932
Iteration: 26, Func. Count: 331, Neg. LLF: 149.11732932127723
Iteration: 27, Func. Count: 344, Neg. LLF: 145.48920654625962
Iteration: 28, Func. Count: 357, Neg. LLF: 144.6883863073426
Iteration: 29, Func. Count: 370, Neg. LLF: 144.65693617588715
Iteration: 30, Func. Count: 383, Neg. LLF: 144.65215181100848
Iteration: 31, Func. Count: 395, Neg. LLF: 144.65214305487243
Iteration: 32, Func. Count: 407, Neg. LLF: 144.65214063841293
Iteration: 33, Func. Count: 418, Neg. LLF: 144.65214074124341
Optimization terminated successfully (Exit mode 0)
Current function value: 144.65214063841293
Iterations: 34
Function evaluations: 418
Gradient evaluations: 33
Iteration: 1, Func. Count: 10, Neg. LLF: 152.9492860620865
Iteration: 2, Func. Count: 19, Neg. LLF: 158.9383268752827
Iteration: 3, Func. Count: 29, Neg. LLF: 157.84953739988615
Iteration: 4, Func. Count: 40, Neg. LLF: 159.31027303081126
Iteration: 5, Func. Count: 52, Neg. LLF: 153.31312283225407
Iteration: 6, Func. Count: 62, Neg. LLF: 152.27389175188367
Iteration: 7, Func. Count: 72, Neg. LLF: 151.9737492875123
Iteration: 8, Func. Count: 82, Neg. LLF: 151.34428952397587
Iteration: 9, Func. Count: 91, Neg. LLF: 151.29714024799256
Iteration: 10, Func. Count: 101, Neg. LLF: 297.135910752113
Iteration: 11, Func. Count: 113, Neg. LLF: 160.66654250039892
Iteration: 12, Func. Count: 124, Neg. LLF: 150.40641736379732
Iteration: 13, Func. Count: 133, Neg. LLF: 151.13470461214115
Iteration: 14, Func. Count: 143, Neg. LLF: 150.37942796077775
Iteration: 15, Func. Count: 152, Neg. LLF: 150.3638248847205
Iteration: 16, Func. Count: 161, Neg. LLF: 150.36366734510972
Iteration: 17, Func. Count: 170, Neg. LLF: 150.36356129920264
Iteration: 18, Func. Count: 179, Neg. LLF: 150.3635527741192
Iteration: 19, Func. Count: 188, Neg. LLF: 150.36355009691434
Iteration: 20, Func. Count: 196, Neg. LLF: 150.3635500486846
Optimization terminated successfully (Exit mode 0)
Current function value: 150.36355009691434
Iterations: 20
Function evaluations: 196
Gradient evaluations: 20
Iteration: 1, Func. Count: 11, Neg. LLF: 154.995166666787
Iteration: 2, Func. Count: 21, Neg. LLF: 153.97716552321756
Iteration: 3, Func. Count: 32, Neg. LLF: 186.43420148085602
Iteration: 4, Func. Count: 46, Neg. LLF: 158.46969905132187
Iteration: 5, Func. Count: 60, Neg. LLF: 151.19105643076486
Iteration: 6, Func. Count: 70, Neg. LLF: 149.74590530545953
Iteration: 7, Func. Count: 80, Neg. LLF: 466.14161241753595
Iteration: 8, Func. Count: 91, Neg. LLF: 340.69353423873144
Iteration: 9, Func. Count: 102, Neg. LLF: 316.3082862644869
Iteration: 10, Func. Count: 113, Neg. LLF: 304.6945098010849
Iteration: 11, Func. Count: 124, Neg. LLF: 297.1546271736953
Iteration: 12, Func. Count: 135, Neg. LLF: 248704.95040432236
Iteration: 13, Func. Count: 148, Neg. LLF: 246.78784361799143
Iteration: 14, Func. Count: 159, Neg. LLF: 228.41333115082824
Iteration: 15, Func. Count: 170, Neg. LLF: 220.0983757920109
Iteration: 16, Func. Count: 181, Neg. LLF: 212.74290359498642
Iteration: 17, Func. Count: 192, Neg. LLF: 230.32032487299966
Iteration: 18, Func. Count: 203, Neg. LLF: 178.48912922333298
Iteration: 19, Func. Count: 214, Neg. LLF: 211.52843471585646
Iteration: 20, Func. Count: 225, Neg. LLF: 146.00861403749875
Iteration: 21, Func. Count: 236, Neg. LLF: 144.7772159034642
Iteration: 22, Func. Count: 246, Neg. LLF: 144.71996612083404
Iteration: 23, Func. Count: 256, Neg. LLF: 144.8136607071929
Iteration: 24, Func. Count: 267, Neg. LLF: 144.6870019617988
Iteration: 25, Func. Count: 277, Neg. LLF: 144.66359869354096
Iteration: 26, Func. Count: 287, Neg. LLF: 144.65567576373013
Iteration: 27, Func. Count: 297, Neg. LLF: 144.6525217282538
Iteration: 28, Func. Count: 307, Neg. LLF: 144.65224974987393
Iteration: 29, Func. Count: 317, Neg. LLF: 144.6521549080598
Iteration: 30, Func. Count: 327, Neg. LLF: 144.65214567913202
Iteration: 31, Func. Count: 337, Neg. LLF: 144.65214143126974
Iteration: 32, Func. Count: 347, Neg. LLF: 144.65214066447612
Optimization terminated successfully (Exit mode 0)
Current function value: 144.65214066447612
Iterations: 32
Function evaluations: 347
Gradient evaluations: 32
Iteration: 1, Func. Count: 12, Neg. LLF: 157.17848423860826
Iteration: 2, Func. Count: 23, Neg. LLF: 156.20416227133097
Iteration: 3, Func. Count: 34, Neg. LLF: 193.2207095117601
Iteration: 4, Func. Count: 49, Neg. LLF: 157.89151756909834
Iteration: 5, Func. Count: 64, Neg. LLF: 157.35012756808317
Iteration: 6, Func. Count: 76, Neg. LLF: 155.59907519759508
Iteration: 7, Func. Count: 88, Neg. LLF: 185.399542167626
Iteration: 8, Func. Count: 100, Neg. LLF: 154.53053881201149
Iteration: 9, Func. Count: 112, Neg. LLF: 155.01247697971237
Iteration: 10, Func. Count: 124, Neg. LLF: 156.52068727712918
Iteration: 11, Func. Count: 138, Neg. LLF: 153.7493253819058
Iteration: 12, Func. Count: 150, Neg. LLF: 151.76051402538542
Iteration: 13, Func. Count: 162, Neg. LLF: 150.8872215904015
Iteration: 14, Func. Count: 173, Neg. LLF: 151.33971170669304
Iteration: 15, Func. Count: 185, Neg. LLF: 150.96763615188283
Iteration: 16, Func. Count: 197, Neg. LLF: 150.49579900811202
Iteration: 17, Func. Count: 208, Neg. LLF: 150.5332361966916
Iteration: 18, Func. Count: 220, Neg. LLF: 150.46007446439523
Iteration: 19, Func. Count: 232, Neg. LLF: 150.37197492260248
Iteration: 20, Func. Count: 243, Neg. LLF: 150.36975360259515
Iteration: 21, Func. Count: 254, Neg. LLF: 150.36938134933206
Iteration: 22, Func. Count: 265, Neg. LLF: 150.3686417265452
Iteration: 23, Func. Count: 276, Neg. LLF: 150.3677568701607
Iteration: 24, Func. Count: 287, Neg. LLF: 150.3662161024155
Iteration: 25, Func. Count: 298, Neg. LLF: 150.36474922025587
Iteration: 26, Func. Count: 309, Neg. LLF: 150.36378354401913
Iteration: 27, Func. Count: 320, Neg. LLF: 150.3635713555286
Iteration: 28, Func. Count: 331, Neg. LLF: 150.36355271507657
Iteration: 29, Func. Count: 342, Neg. LLF: 150.3635501753206
Iteration: 30, Func. Count: 352, Neg. LLF: 150.3635501860828
Optimization terminated successfully (Exit mode 0)
Current function value: 150.3635501753206
Iterations: 30
Function evaluations: 352
Gradient evaluations: 30
Iteration: 1, Func. Count: 13, Neg. LLF: 221.42627863966308
Iteration: 2, Func. Count: 26, Neg. LLF: 177.5410812715202
Iteration: 3, Func. Count: 39, Neg. LLF: 207.99735451511572
Iteration: 4, Func. Count: 52, Neg. LLF: 166.49974619984923
Iteration: 5, Func. Count: 65, Neg. LLF: 156.07210268040757
Iteration: 6, Func. Count: 78, Neg. LLF: 152.79212519401983
Iteration: 7, Func. Count: 91, Neg. LLF: 150.5573979143209
Iteration: 8, Func. Count: 103, Neg. LLF: 151.69945931738624
Iteration: 9, Func. Count: 116, Neg. LLF: 212.62519589209023
Iteration: 10, Func. Count: 129, Neg. LLF: 150.83706558179395
Iteration: 11, Func. Count: 142, Neg. LLF: 152.1117915492096
Iteration: 12, Func. Count: 155, Neg. LLF: 150.80748988075644
Iteration: 13, Func. Count: 168, Neg. LLF: 150.3912905150859
Iteration: 14, Func. Count: 181, Neg. LLF: 150.3644160106459
Iteration: 15, Func. Count: 193, Neg. LLF: 150.36419722321097
Iteration: 16, Func. Count: 205, Neg. LLF: 150.3641571450417
Iteration: 17, Func. Count: 217, Neg. LLF: 150.3640865189776
Iteration: 18, Func. Count: 229, Neg. LLF: 150.36396676394176
Iteration: 19, Func. Count: 241, Neg. LLF: 150.36379152555705
Iteration: 20, Func. Count: 253, Neg. LLF: 150.36363660649158
Iteration: 21, Func. Count: 265, Neg. LLF: 150.36356327730965
Iteration: 22, Func. Count: 277, Neg. LLF: 150.36355087241822
Iteration: 23, Func. Count: 289, Neg. LLF: 150.36355012153297
Optimization terminated successfully (Exit mode 0)
Current function value: 150.36355012153297
Iterations: 23
Function evaluations: 289
Gradient evaluations: 23
Iteration: 1, Func. Count: 14, Neg. LLF: 276.56591576102187
Iteration: 2, Func. Count: 28, Neg. LLF: 175.42689776126173
Iteration: 3, Func. Count: 42, Neg. LLF: 155.16658126753197
Iteration: 4, Func. Count: 56, Neg. LLF: 149.40297831739042
Iteration: 5, Func. Count: 69, Neg. LLF: 230.54302658068266
Iteration: 6, Func. Count: 84, Neg. LLF: 159.206962609536
Iteration: 7, Func. Count: 101, Neg. LLF: 162.787426009627
Iteration: 8, Func. Count: 115, Neg. LLF: 180.57030857117053
Iteration: 9, Func. Count: 129, Neg. LLF: 148.73729489911355
Iteration: 10, Func. Count: 142, Neg. LLF: 148.62259762025263
Iteration: 11, Func. Count: 155, Neg. LLF: 148.91042317393473
Iteration: 12, Func. Count: 169, Neg. LLF: 148.60655286527194
Iteration: 13, Func. Count: 182, Neg. LLF: 148.59937136275727
Iteration: 14, Func. Count: 195, Neg. LLF: 148.59574038996718
Iteration: 15, Func. Count: 208, Neg. LLF: 148.59519301254244
Iteration: 16, Func. Count: 221, Neg. LLF: 148.59495859904968
Iteration: 17, Func. Count: 234, Neg. LLF: 148.59480933063168
Iteration: 18, Func. Count: 247, Neg. LLF: 148.59472718303243
Iteration: 19, Func. Count: 260, Neg. LLF: 148.59468401769956
Iteration: 20, Func. Count: 273, Neg. LLF: 148.59464188301112
Iteration: 21, Func. Count: 286, Neg. LLF: 148.59461512591315
Iteration: 22, Func. Count: 299, Neg. LLF: 148.59460682081968
Iteration: 23, Func. Count: 312, Neg. LLF: 148.5946058009993
Iteration: 24, Func. Count: 324, Neg. LLF: 148.59460551034314
Optimization terminated successfully (Exit mode 0)
Current function value: 148.5946058009993
Iterations: 24
Function evaluations: 324
Gradient evaluations: 24
Iteration: 1, Func. Count: 11, Neg. LLF: 152.21805562930092
Iteration: 2, Func. Count: 21, Neg. LLF: 154.58433257817796
Iteration: 3, Func. Count: 32, Neg. LLF: 165.38758060843315
Iteration: 4, Func. Count: 45, Neg. LLF: 152.71166399407718
Iteration: 5, Func. Count: 56, Neg. LLF: 152.87182769555469
Iteration: 6, Func. Count: 67, Neg. LLF: 151.93240929308126
Iteration: 7, Func. Count: 78, Neg. LLF: 265.10866734939424
Iteration: 8, Func. Count: 89, Neg. LLF: 157.59625098028454
Iteration: 9, Func. Count: 100, Neg. LLF: 187.5569095182858
Iteration: 10, Func. Count: 111, Neg. LLF: 258.06656596086793
Iteration: 11, Func. Count: 122, Neg. LLF: 152.40272335116478
Iteration: 12, Func. Count: 133, Neg. LLF: 151.79275247736555
Iteration: 13, Func. Count: 144, Neg. LLF: 150.3684171474677
Iteration: 14, Func. Count: 154, Neg. LLF: 150.3593278535796
Iteration: 15, Func. Count: 164, Neg. LLF: 150.35693466308282
Iteration: 16, Func. Count: 174, Neg. LLF: 150.35639731083032
Iteration: 17, Func. Count: 184, Neg. LLF: 150.3562795746178
Iteration: 18, Func. Count: 194, Neg. LLF: 150.3562624936838
Iteration: 19, Func. Count: 203, Neg. LLF: 150.35626252426707
Optimization terminated successfully (Exit mode 0)
Current function value: 150.3562624936838
Iterations: 19
Function evaluations: 203
Gradient evaluations: 19
Iteration: 1, Func. Count: 12, Neg. LLF: 154.18345586715967
Iteration: 2, Func. Count: 23, Neg. LLF: 156.4306370356093
Iteration: 3, Func. Count: 35, Neg. LLF: 184.28901561221568
Iteration: 4, Func. Count: 50, Neg. LLF: 157.3257037391
Iteration: 5, Func. Count: 64, Neg. LLF: 151.18038535371562
Iteration: 6, Func. Count: 75, Neg. LLF: 149.56955747474885
Iteration: 7, Func. Count: 86, Neg. LLF: 410.5665739153275
Iteration: 8, Func. Count: 98, Neg. LLF: 337.9930983805537
Iteration: 9, Func. Count: 110, Neg. LLF: 322.5641313704152
Iteration: 10, Func. Count: 122, Neg. LLF: 285.36804351265795
Iteration: 11, Func. Count: 134, Neg. LLF: 353.1645817920593
Iteration: 12, Func. Count: 146, Neg. LLF: 151.72605132368992
Iteration: 13, Func. Count: 158, Neg. LLF: 225.89770136275897
Iteration: 14, Func. Count: 172, Neg. LLF: 331.3272749922206
Iteration: 15, Func. Count: 184, Neg. LLF: 216.96805933309147
Iteration: 16, Func. Count: 196, Neg. LLF: 208.07118534954176
Iteration: 17, Func. Count: 208, Neg. LLF: 282.4342605880721
Iteration: 18, Func. Count: 220, Neg. LLF: 205.09742204177851
Iteration: 19, Func. Count: 232, Neg. LLF: 145.20337911119552
Iteration: 20, Func. Count: 244, Neg. LLF: 144.8901496044265
Iteration: 21, Func. Count: 256, Neg. LLF: 144.87292193450355
Iteration: 22, Func. Count: 267, Neg. LLF: 144.87695952198155
Iteration: 23, Func. Count: 279, Neg. LLF: 144.83870620520503
Iteration: 24, Func. Count: 290, Neg. LLF: 144.79769750451032
Iteration: 25, Func. Count: 301, Neg. LLF: 144.69322407239108
Iteration: 26, Func. Count: 312, Neg. LLF: 144.65879943288363
Iteration: 27, Func. Count: 323, Neg. LLF: 144.65213238890573
Iteration: 28, Func. Count: 334, Neg. LLF: 144.65163431012144
Iteration: 29, Func. Count: 345, Neg. LLF: 144.65153020791016
Iteration: 30, Func. Count: 356, Neg. LLF: 144.65151693377663
Iteration: 31, Func. Count: 367, Neg. LLF: 144.65151488564084
Iteration: 32, Func. Count: 377, Neg. LLF: 144.65151472515984
Optimization terminated successfully (Exit mode 0)
Current function value: 144.65151488564084
Iterations: 32
Function evaluations: 377
Gradient evaluations: 32
Iteration: 1, Func. Count: 13, Neg. LLF: 167.1199905533684
Iteration: 2, Func. Count: 26, Neg. LLF: 186.99949346089315
Iteration: 3, Func. Count: 40, Neg. LLF: 155.9222197293505
Iteration: 4, Func. Count: 52, Neg. LLF: 227.6409075579154
Iteration: 5, Func. Count: 65, Neg. LLF: 219.9006740529122
Iteration: 6, Func. Count: 80, Neg. LLF: 227.45136459406385
Iteration: 7, Func. Count: 96, Neg. LLF: 192.2981018724064
Iteration: 8, Func. Count: 110, Neg. LLF: 154.01344641313884
Iteration: 9, Func. Count: 123, Neg. LLF: 151.08811068961575
Iteration: 10, Func. Count: 135, Neg. LLF: 150.89178514471604
Iteration: 11, Func. Count: 147, Neg. LLF: 151.2245117408127
Iteration: 12, Func. Count: 161, Neg. LLF: 153.19731354250297
Iteration: 13, Func. Count: 174, Neg. LLF: 150.8283798990476
Iteration: 14, Func. Count: 186, Neg. LLF: 150.7870215487239
Iteration: 15, Func. Count: 198, Neg. LLF: 150.73504261496512
Iteration: 16, Func. Count: 210, Neg. LLF: 150.64894171540618
Iteration: 17, Func. Count: 222, Neg. LLF: 150.45960340176333
Iteration: 18, Func. Count: 234, Neg. LLF: 149.4397477809505
Iteration: 19, Func. Count: 246, Neg. LLF: 149.0404426914067
Iteration: 20, Func. Count: 258, Neg. LLF: 148.63549754009892
Iteration: 21, Func. Count: 270, Neg. LLF: 167.72141165051139
Iteration: 22, Func. Count: 283, Neg. LLF: 168.4519340817813
Iteration: 23, Func. Count: 296, Neg. LLF: 377.2731200467849
Iteration: 24, Func. Count: 309, Neg. LLF: 168.90194918095335
Iteration: 25, Func. Count: 325, Neg. LLF: 173.548109838458
Iteration: 26, Func. Count: 338, Neg. LLF: 147.02298306097808
Iteration: 27, Func. Count: 351, Neg. LLF: 457.6486822100685
Iteration: 28, Func. Count: 364, Neg. LLF: 301.52981028205386
Iteration: 29, Func. Count: 377, Neg. LLF: 208.94729606510998
Iteration: 30, Func. Count: 390, Neg. LLF: 216.58623505429816
Iteration: 31, Func. Count: 403, Neg. LLF: 177.82911657058418
Iteration: 32, Func. Count: 416, Neg. LLF: 230.56611899072445
Iteration: 33, Func. Count: 429, Neg. LLF: 166.33691003263297
Iteration: 34, Func. Count: 442, Neg. LLF: 144.83869965035183
Iteration: 35, Func. Count: 455, Neg. LLF: 144.6912560794654
Iteration: 36, Func. Count: 468, Neg. LLF: 144.7059798713898
Iteration: 37, Func. Count: 481, Neg. LLF: 144.65644352362733
Iteration: 38, Func. Count: 493, Neg. LLF: 144.65210560864625
Iteration: 39, Func. Count: 505, Neg. LLF: 144.65160794010202
Iteration: 40, Func. Count: 517, Neg. LLF: 144.6515222782055
Iteration: 41, Func. Count: 529, Neg. LLF: 144.65151485475045
Iteration: 42, Func. Count: 540, Neg. LLF: 144.6515152800342
Optimization terminated successfully (Exit mode 0)
Current function value: 144.65151485475045
Iterations: 43
Function evaluations: 540
Gradient evaluations: 42
Iteration: 1, Func. Count: 14, Neg. LLF: 212.78093895219237
Iteration: 2, Func. Count: 28, Neg. LLF: 175.19056436229712
Iteration: 3, Func. Count: 42, Neg. LLF: 175.54584401975578
Iteration: 4, Func. Count: 56, Neg. LLF: 180.6114408228226
Iteration: 5, Func. Count: 70, Neg. LLF: 153.54113742237104
Iteration: 6, Func. Count: 83, Neg. LLF: 158.6681772346887
Iteration: 7, Func. Count: 98, Neg. LLF: 193.2922955564928
Iteration: 8, Func. Count: 112, Neg. LLF: 150.8921387702513
Iteration: 9, Func. Count: 125, Neg. LLF: 151.41400288985304
Iteration: 10, Func. Count: 140, Neg. LLF: 151.31024941805566
Iteration: 11, Func. Count: 154, Neg. LLF: 152.4709510153183
Iteration: 12, Func. Count: 168, Neg. LLF: 150.5939497529107
Iteration: 13, Func. Count: 181, Neg. LLF: 150.4888394186787
Iteration: 14, Func. Count: 194, Neg. LLF: 150.53685491573447
Iteration: 15, Func. Count: 208, Neg. LLF: 150.39503662346823
Iteration: 16, Func. Count: 221, Neg. LLF: 150.39666346953572
Iteration: 17, Func. Count: 235, Neg. LLF: 150.36176569270083
Iteration: 18, Func. Count: 248, Neg. LLF: 150.35866386040226
Iteration: 19, Func. Count: 261, Neg. LLF: 150.35640820595052
Iteration: 20, Func. Count: 274, Neg. LLF: 150.35631451008328
Iteration: 21, Func. Count: 287, Neg. LLF: 150.3563076746199
Iteration: 22, Func. Count: 300, Neg. LLF: 150.35630574771892
Iteration: 23, Func. Count: 313, Neg. LLF: 150.35629568901018
Iteration: 24, Func. Count: 326, Neg. LLF: 150.35628299339118
Iteration: 25, Func. Count: 339, Neg. LLF: 150.3562687623871
Iteration: 26, Func. Count: 352, Neg. LLF: 150.35626301122613
Iteration: 27, Func. Count: 365, Neg. LLF: 150.356262116735
Optimization terminated successfully (Exit mode 0)
Current function value: 150.356262116735
Iterations: 27
Function evaluations: 365
Gradient evaluations: 27
Iteration: 1, Func. Count: 15, Neg. LLF: 244.59498046092523
Iteration: 2, Func. Count: 30, Neg. LLF: 172.5114136517664
Iteration: 3, Func. Count: 45, Neg. LLF: 159.2095141431814
Iteration: 4, Func. Count: 60, Neg. LLF: 149.48249001159795
Iteration: 5, Func. Count: 74, Neg. LLF: 232.56772060727232
Iteration: 6, Func. Count: 90, Neg. LLF: 161.31919017375733
Iteration: 7, Func. Count: 107, Neg. LLF: 175.0448850935406
Iteration: 8, Func. Count: 123, Neg. LLF: 149.4972647456882
Iteration: 9, Func. Count: 138, Neg. LLF: 149.17498280104348
Iteration: 10, Func. Count: 153, Neg. LLF: 148.7282842180634
Iteration: 11, Func. Count: 168, Neg. LLF: 148.58088070753158
Iteration: 12, Func. Count: 182, Neg. LLF: 148.5667530439221
Iteration: 13, Func. Count: 196, Neg. LLF: 148.5504495344126
Iteration: 14, Func. Count: 210, Neg. LLF: 148.5461629155979
Iteration: 15, Func. Count: 224, Neg. LLF: 148.5429159009829
Iteration: 16, Func. Count: 238, Neg. LLF: 148.54218935694578
Iteration: 17, Func. Count: 252, Neg. LLF: 148.5405855139344
Iteration: 18, Func. Count: 266, Neg. LLF: 148.54035259077702
Iteration: 19, Func. Count: 280, Neg. LLF: 148.54007624625115
Iteration: 20, Func. Count: 294, Neg. LLF: 148.53993879171395
Iteration: 21, Func. Count: 308, Neg. LLF: 148.53984575222714
Iteration: 22, Func. Count: 322, Neg. LLF: 148.5398393210027
Iteration: 23, Func. Count: 336, Neg. LLF: 148.53983767066396
Iteration: 24, Func. Count: 350, Neg. LLF: 148.56432869570472
Optimization terminated successfully (Exit mode 0)
Current function value: 148.5398376703366
Iterations: 25
Function evaluations: 354
Gradient evaluations: 24
Iteration: 1, Func. Count: 12, Neg. LLF: 152.0186949371862
Iteration: 2, Func. Count: 23, Neg. LLF: 152.5924421340345
Iteration: 3, Func. Count: 37, Neg. LLF: 197.8006251760344
Iteration: 4, Func. Count: 50, Neg. LLF: 151.87853041741974
Iteration: 5, Func. Count: 62, Neg. LLF: 150.1166341931901
Iteration: 6, Func. Count: 73, Neg. LLF: 149.62416440315374
Iteration: 7, Func. Count: 84, Neg. LLF: 148.0966475263533
Iteration: 8, Func. Count: 95, Neg. LLF: 143.81429880887652
Iteration: 9, Func. Count: 106, Neg. LLF: 43681823.595692396
Iteration: 10, Func. Count: 121, Neg. LLF: 150.01343474996938
Iteration: 11, Func. Count: 133, Neg. LLF: 208.3716381554748
Iteration: 12, Func. Count: 145, Neg. LLF: 412.4567265621667
Iteration: 13, Func. Count: 157, Neg. LLF: 158.98880950819324
Iteration: 14, Func. Count: 169, Neg. LLF: 144.48265128655376
Iteration: 15, Func. Count: 181, Neg. LLF: 145.6264928991074
Iteration: 16, Func. Count: 193, Neg. LLF: 142.76203103083685
Iteration: 17, Func. Count: 204, Neg. LLF: 142.7192755756524
Iteration: 18, Func. Count: 215, Neg. LLF: 142.63380800214892
Iteration: 19, Func. Count: 226, Neg. LLF: 142.5638030050351
Iteration: 20, Func. Count: 237, Neg. LLF: 142.55842015158441
Iteration: 21, Func. Count: 248, Neg. LLF: 142.55735783232555
Iteration: 22, Func. Count: 259, Neg. LLF: 142.55555452087359
Iteration: 23, Func. Count: 270, Neg. LLF: 142.55496617283242
Iteration: 24, Func. Count: 281, Neg. LLF: 142.55486492375638
Iteration: 25, Func. Count: 292, Neg. LLF: 142.5548549082927
Iteration: 26, Func. Count: 302, Neg. LLF: 142.5548548729863
Optimization terminated successfully (Exit mode 0)
Current function value: 142.5548549082927
Iterations: 26
Function evaluations: 302
Gradient evaluations: 26
Iteration: 1, Func. Count: 13, Neg. LLF: 151.27669399409496
Iteration: 2, Func. Count: 25, Neg. LLF: 152.2557513819461
Iteration: 3, Func. Count: 38, Neg. LLF: 161.74958796063606
Iteration: 4, Func. Count: 54, Neg. LLF: 154.04116559864198
Iteration: 5, Func. Count: 67, Neg. LLF: 149.87096168203126
Iteration: 6, Func. Count: 79, Neg. LLF: 148.75987179108253
Iteration: 7, Func. Count: 91, Neg. LLF: 1340.120591793804
Iteration: 8, Func. Count: 104, Neg. LLF: 241.1605559943803
Iteration: 9, Func. Count: 117, Neg. LLF: 353.35379633562866
Iteration: 10, Func. Count: 130, Neg. LLF: 1352.5346720158173
Iteration: 11, Func. Count: 143, Neg. LLF: 807.5136387547698
Iteration: 12, Func. Count: 156, Neg. LLF: 286.05699620312413
Iteration: 13, Func. Count: 169, Neg. LLF: 459.99736550567076
Iteration: 14, Func. Count: 182, Neg. LLF: 398.9324107691652
Iteration: 15, Func. Count: 195, Neg. LLF: 235.31774601358072
Iteration: 16, Func. Count: 208, Neg. LLF: 295.38422351363005
Iteration: 17, Func. Count: 221, Neg. LLF: 204.88382521773542
Iteration: 18, Func. Count: 234, Neg. LLF: 226.94658296664466
Iteration: 19, Func. Count: 247, Neg. LLF: 190.91613462337438
Iteration: 20, Func. Count: 260, Neg. LLF: 177.07743129549507
Iteration: 21, Func. Count: 273, Neg. LLF: 153.81134940847812
Iteration: 22, Func. Count: 286, Neg. LLF: 143.48155032703096
Iteration: 23, Func. Count: 299, Neg. LLF: 142.5710550010725
Iteration: 24, Func. Count: 312, Neg. LLF: 142.47694032467618
Iteration: 25, Func. Count: 324, Neg. LLF: 142.408701517728
Iteration: 26, Func. Count: 336, Neg. LLF: 142.32311794909282
Iteration: 27, Func. Count: 348, Neg. LLF: 142.24779037820474
Iteration: 28, Func. Count: 360, Neg. LLF: 142.2008023654045
Iteration: 29, Func. Count: 372, Neg. LLF: 142.1886509297073
Iteration: 30, Func. Count: 384, Neg. LLF: 142.18773054233765
Iteration: 31, Func. Count: 396, Neg. LLF: 142.1873795681589
Iteration: 32, Func. Count: 408, Neg. LLF: 142.1873246237355
Iteration: 33, Func. Count: 420, Neg. LLF: 142.18725131046293
Iteration: 34, Func. Count: 432, Neg. LLF: 142.18716540935557
Iteration: 35, Func. Count: 444, Neg. LLF: 142.18697751085358
Iteration: 36, Func. Count: 456, Neg. LLF: 142.18683171841548
Iteration: 37, Func. Count: 468, Neg. LLF: 142.18677375294837
Iteration: 38, Func. Count: 480, Neg. LLF: 142.18676699525165
Iteration: 39, Func. Count: 491, Neg. LLF: 142.1867668653173
Optimization terminated successfully (Exit mode 0)
Current function value: 142.18676699525165
Iterations: 39
Function evaluations: 491
Gradient evaluations: 39
Iteration: 1, Func. Count: 14, Neg. LLF: 166.62928335432582
Iteration: 2, Func. Count: 28, Neg. LLF: 187.1468644764911
Iteration: 3, Func. Count: 43, Neg. LLF: 165.30183011618843
Iteration: 4, Func. Count: 57, Neg. LLF: 177.59757277616762
Iteration: 5, Func. Count: 71, Neg. LLF: 159.93782935249075
Iteration: 6, Func. Count: 85, Neg. LLF: 155.62847325412127
Iteration: 7, Func. Count: 99, Neg. LLF: 166.55851219298296
Iteration: 8, Func. Count: 114, Neg. LLF: 155.02359987582352
Iteration: 9, Func. Count: 128, Neg. LLF: 154.90545211395144
Iteration: 10, Func. Count: 142, Neg. LLF: 150.37062327886312
Iteration: 11, Func. Count: 155, Neg. LLF: 169.33659527227604
Iteration: 12, Func. Count: 170, Neg. LLF: 151.2887998467669
Iteration: 13, Func. Count: 184, Neg. LLF: 150.82197801374872
Iteration: 14, Func. Count: 198, Neg. LLF: 150.5951733240106
Iteration: 15, Func. Count: 212, Neg. LLF: 150.21282054155617
Iteration: 16, Func. Count: 226, Neg. LLF: 150.00819281288358
Iteration: 17, Func. Count: 239, Neg. LLF: 149.9693419710148
Iteration: 18, Func. Count: 252, Neg. LLF: 149.87860961094813
Iteration: 19, Func. Count: 265, Neg. LLF: 149.71726614358943
Iteration: 20, Func. Count: 278, Neg. LLF: 149.49122564891226
Iteration: 21, Func. Count: 291, Neg. LLF: 149.2633968389904
Iteration: 22, Func. Count: 304, Neg. LLF: 148.96584493655791
Iteration: 23, Func. Count: 317, Neg. LLF: 148.67640727286985
Iteration: 24, Func. Count: 330, Neg. LLF: 147.94993466461426
Iteration: 25, Func. Count: 343, Neg. LLF: 146.59326426097573
Iteration: 26, Func. Count: 356, Neg. LLF: 3494.8008432298216
Iteration: 27, Func. Count: 370, Neg. LLF: 1770.3094281131835
Iteration: 28, Func. Count: 384, Neg. LLF: 5552.941271487981
Iteration: 29, Func. Count: 398, Neg. LLF: 143.75803670599126
Iteration: 30, Func. Count: 411, Neg. LLF: 622.5378235809803
Iteration: 31, Func. Count: 425, Neg. LLF: 159.49981783498743
Iteration: 32, Func. Count: 441, Neg. LLF: 142.47422725911045
Iteration: 33, Func. Count: 454, Neg. LLF: 142.4458961555376
Iteration: 34, Func. Count: 468, Neg. LLF: 142.3181819753551
Iteration: 35, Func. Count: 481, Neg. LLF: 142.28628253372088
Iteration: 36, Func. Count: 494, Neg. LLF: 148.7129872697044
Iteration: 37, Func. Count: 508, Neg. LLF: 148.67118158619562
Iteration: 38, Func. Count: 523, Neg. LLF: 147.84690517151287
Iteration: 39, Func. Count: 537, Neg. LLF: 143.593516952048
Iteration: 40, Func. Count: 551, Neg. LLF: 142.9077151065564
Iteration: 41, Func. Count: 565, Neg. LLF: 142.39050486057545
Iteration: 42, Func. Count: 579, Neg. LLF: 142.1867784578144
Iteration: 43, Func. Count: 592, Neg. LLF: 142.186767116381
Iteration: 44, Func. Count: 604, Neg. LLF: 142.18676799921874
Optimization terminated successfully (Exit mode 0)
Current function value: 142.186767116381
Iterations: 45
Function evaluations: 604
Gradient evaluations: 44
Iteration: 1, Func. Count: 15, Neg. LLF: 210.65908739589216
Iteration: 2, Func. Count: 30, Neg. LLF: 189.23567131470378
Iteration: 3, Func. Count: 45, Neg. LLF: 178.45136200693096
Iteration: 4, Func. Count: 60, Neg. LLF: 157.507992514892
Iteration: 5, Func. Count: 75, Neg. LLF: 164.36770842490236
Iteration: 6, Func. Count: 90, Neg. LLF: 151.79698710120988
Iteration: 7, Func. Count: 104, Neg. LLF: 153.91453341892856
Iteration: 8, Func. Count: 120, Neg. LLF: 164.12125602555975
Iteration: 9, Func. Count: 137, Neg. LLF: 158.6918832458252
Iteration: 10, Func. Count: 152, Neg. LLF: 153.69560195362286
Iteration: 11, Func. Count: 167, Neg. LLF: 150.7868189994572
Iteration: 12, Func. Count: 182, Neg. LLF: 150.37328909966354
Iteration: 13, Func. Count: 196, Neg. LLF: 150.27777395119625
Iteration: 14, Func. Count: 210, Neg. LLF: 150.24054829296043
Iteration: 15, Func. Count: 224, Neg. LLF: 150.190480397496
Iteration: 16, Func. Count: 238, Neg. LLF: 150.17539336363274
Iteration: 17, Func. Count: 252, Neg. LLF: 150.16478479247277
Iteration: 18, Func. Count: 266, Neg. LLF: 150.16023282697162
Iteration: 19, Func. Count: 280, Neg. LLF: 150.1590316476879
Iteration: 20, Func. Count: 294, Neg. LLF: 150.1573276683882
Iteration: 21, Func. Count: 308, Neg. LLF: 150.15607897999848
Iteration: 22, Func. Count: 322, Neg. LLF: 150.15360920797772
Iteration: 23, Func. Count: 336, Neg. LLF: 150.15206366705905
Iteration: 24, Func. Count: 350, Neg. LLF: 150.15084973505807
Iteration: 25, Func. Count: 364, Neg. LLF: 150.14958223043936
Iteration: 26, Func. Count: 378, Neg. LLF: 150.14684452701565
Iteration: 27, Func. Count: 392, Neg. LLF: 150.14040787281235
Iteration: 28, Func. Count: 406, Neg. LLF: 150.12161951292907
Iteration: 29, Func. Count: 420, Neg. LLF: 149.6869661803598
Iteration: 30, Func. Count: 434, Neg. LLF: 144.8431071092813
Iteration: 31, Func. Count: 448, Neg. LLF: 144.45029795942807
Iteration: 32, Func. Count: 463, Neg. LLF: 147.2442545150406
Iteration: 33, Func. Count: 478, Neg. LLF: 231.66539989065083
Iteration: 34, Func. Count: 493, Neg. LLF: 142.83245185563368
Iteration: 35, Func. Count: 507, Neg. LLF: 142.89667613841223
Iteration: 36, Func. Count: 522, Neg. LLF: 142.42357360694336
Iteration: 37, Func. Count: 536, Neg. LLF: 142.37008575917042
Iteration: 38, Func. Count: 550, Neg. LLF: 142.32659018918605
Iteration: 39, Func. Count: 564, Neg. LLF: 142.26123071385214
Iteration: 40, Func. Count: 578, Neg. LLF: 142.23759192421744
Iteration: 41, Func. Count: 592, Neg. LLF: 142.21712671345432
Iteration: 42, Func. Count: 606, Neg. LLF: 142.20241680245098
Iteration: 43, Func. Count: 620, Neg. LLF: 142.19162150084105
Iteration: 44, Func. Count: 634, Neg. LLF: 142.1881301468329
Iteration: 45, Func. Count: 648, Neg. LLF: 142.18685664487276
Iteration: 46, Func. Count: 662, Neg. LLF: 142.18688663763268
Iteration: 47, Func. Count: 677, Neg. LLF: 142.1868777364472
Iteration: 48, Func. Count: 692, Neg. LLF: 142.18675665434543
Iteration: 49, Func. Count: 706, Neg. LLF: 142.18714229206992
Iteration: 50, Func. Count: 722, Neg. LLF: 142.1867690246461
Iteration: 51, Func. Count: 738, Neg. LLF: 142.1867793227836
Iteration: 52, Func. Count: 754, Neg. LLF: 142.18676688360924
Iteration: 53, Func. Count: 769, Neg. LLF: 142.1867670734306
Iteration: 54, Func. Count: 784, Neg. LLF: 142.18676690335127
Iteration: 55, Func. Count: 799, Neg. LLF: 142.18676680873136
Iteration: 56, Func. Count: 812, Neg. LLF: 142.1867674681722
Optimization terminated successfully (Exit mode 0)
Current function value: 142.18676680873136
Iterations: 57
Function evaluations: 812
Gradient evaluations: 56
Iteration: 1, Func. Count: 16, Neg. LLF: 231.22858111838144
Iteration: 2, Func. Count: 35, Neg. LLF: 211.43733189252296
Iteration: 3, Func. Count: 51, Neg. LLF: 157.6370434658275
Iteration: 4, Func. Count: 67, Neg. LLF: 149.11283973644396
Iteration: 5, Func. Count: 82, Neg. LLF: 249.7151695354051
Iteration: 6, Func. Count: 99, Neg. LLF: 162.1203295422116
Iteration: 7, Func. Count: 117, Neg. LLF: 222.06118809363966
Iteration: 8, Func. Count: 134, Neg. LLF: 148.57192386584262
Iteration: 9, Func. Count: 150, Neg. LLF: 148.57755075057392
Iteration: 10, Func. Count: 166, Neg. LLF: 148.4250700268285
Iteration: 11, Func. Count: 181, Neg. LLF: 148.3950857331996
Iteration: 12, Func. Count: 196, Neg. LLF: 148.37848143750176
Iteration: 13, Func. Count: 211, Neg. LLF: 148.36989209413372
Iteration: 14, Func. Count: 226, Neg. LLF: 148.3677514881662
Iteration: 15, Func. Count: 241, Neg. LLF: 148.36587732666638
Iteration: 16, Func. Count: 256, Neg. LLF: 148.3623799875196
Iteration: 17, Func. Count: 271, Neg. LLF: 148.35531024570474
Iteration: 18, Func. Count: 286, Neg. LLF: 148.3435609264074
Iteration: 19, Func. Count: 301, Neg. LLF: 148.30586313001982
Iteration: 20, Func. Count: 316, Neg. LLF: 150.88900566914756
Iteration: 21, Func. Count: 332, Neg. LLF: 149.28116123201752
Iteration: 22, Func. Count: 348, Neg. LLF: 154.256524268911
Iteration: 23, Func. Count: 364, Neg. LLF: 156.88536133751793
Iteration: 24, Func. Count: 380, Neg. LLF: 147.33305948522047
Iteration: 25, Func. Count: 396, Neg. LLF: 146.29415873102653
Iteration: 26, Func. Count: 412, Neg. LLF: 205.40822297513665
Iteration: 27, Func. Count: 428, Neg. LLF: 150.93634227335627
Iteration: 28, Func. Count: 444, Neg. LLF: 142.86413037125644
Iteration: 29, Func. Count: 459, Neg. LLF: 152.2095630970508
Iteration: 30, Func. Count: 475, Neg. LLF: 144.57629682630403
Iteration: 31, Func. Count: 492, Neg. LLF: 142.22880153073768
Iteration: 32, Func. Count: 507, Neg. LLF: 141.99259699209586
Iteration: 33, Func. Count: 522, Neg. LLF: 141.68390307431858
Iteration: 34, Func. Count: 537, Neg. LLF: 141.60288730818965
Iteration: 35, Func. Count: 552, Neg. LLF: 141.56619493795557
Iteration: 36, Func. Count: 567, Neg. LLF: 141.54445794283438
Iteration: 37, Func. Count: 582, Neg. LLF: 141.52164999017
Iteration: 38, Func. Count: 597, Neg. LLF: 141.52474467447837
Iteration: 39, Func. Count: 622, Neg. LLF: 142.85667366957026
Iteration: 40, Func. Count: 638, Neg. LLF: 141.5142922585414
Iteration: 41, Func. Count: 653, Neg. LLF: 147.23312504188598
Iteration: 42, Func. Count: 672, Neg. LLF: 143.22609716891577
Iteration: 43, Func. Count: 689, Neg. LLF: 143.94660874713966
Iteration: 44, Func. Count: 706, Neg. LLF: 141.53349140334421
Iteration: 45, Func. Count: 722, Neg. LLF: 141.5978200174992
Iteration: 46, Func. Count: 738, Neg. LLF: 141.5028887601843
Iteration: 47, Func. Count: 753, Neg. LLF: 141.53962647419496
Iteration: 48, Func. Count: 769, Neg. LLF: 141.50060031189014
Iteration: 49, Func. Count: 784, Neg. LLF: 141.500321143844
Iteration: 50, Func. Count: 798, Neg. LLF: 141.50032104934593
Optimization terminated successfully (Exit mode 0)
Current function value: 141.500321143844
Iterations: 51
Function evaluations: 798
Gradient evaluations: 50
Iteration: 1, Func. Count: 8, Neg. LLF: 153.11386364982627
Iteration: 2, Func. Count: 15, Neg. LLF: 166.64783194491207
Iteration: 3, Func. Count: 23, Neg. LLF: 186.13260734850357
Iteration: 4, Func. Count: 34, Neg. LLF: 155.39730034993232
Iteration: 5, Func. Count: 42, Neg. LLF: 151.29387043742346
Iteration: 6, Func. Count: 49, Neg. LLF: 150.00290738496528
Iteration: 7, Func. Count: 56, Neg. LLF: 195.0746362984336
Iteration: 8, Func. Count: 64, Neg. LLF: 204.39781714333031
Iteration: 9, Func. Count: 72, Neg. LLF: 232.13576809989232
Iteration: 10, Func. Count: 80, Neg. LLF: 226.98828723114676
Iteration: 11, Func. Count: 88, Neg. LLF: 220.87807319271215
Iteration: 12, Func. Count: 96, Neg. LLF: 379.666779554921
Iteration: 13, Func. Count: 104, Neg. LLF: 450.88183496948494
Iteration: 14, Func. Count: 112, Neg. LLF: 547.9602438332022
Iteration: 15, Func. Count: 120, Neg. LLF: 509.9595332530077
Iteration: 16, Func. Count: 128, Neg. LLF: 173.0403180738368
Iteration: 17, Func. Count: 137, Neg. LLF: 329.1153411816087
Iteration: 18, Func. Count: 145, Neg. LLF: 146.03380464059404
Iteration: 19, Func. Count: 153, Neg. LLF: 145.07765210305666
Iteration: 20, Func. Count: 161, Neg. LLF: 145.02895065915334
Iteration: 21, Func. Count: 168, Neg. LLF: 145.02743925032792
Iteration: 22, Func. Count: 175, Neg. LLF: 145.02732111841345
Iteration: 23, Func. Count: 182, Neg. LLF: 145.02728948638966
Iteration: 24, Func. Count: 189, Neg. LLF: 145.0272826354488
Iteration: 25, Func. Count: 196, Neg. LLF: 145.02727941358162
Iteration: 26, Func. Count: 202, Neg. LLF: 145.0272792641848
Optimization terminated successfully (Exit mode 0)
Current function value: 145.02727941358162
Iterations: 26
Function evaluations: 202
Gradient evaluations: 26
Iteration: 1, Func. Count: 5, Neg. LLF: 159.80567294568792
Iteration: 2, Func. Count: 9, Neg. LLF: 161.45291009421578
Iteration: 3, Func. Count: 14, Neg. LLF: 157.75191912167526
Iteration: 4, Func. Count: 18, Neg. LLF: 157.72561032987946
Iteration: 5, Func. Count: 22, Neg. LLF: 157.63850226083528
Iteration: 6, Func. Count: 26, Neg. LLF: 157.59211278614043
Iteration: 7, Func. Count: 30, Neg. LLF: 157.59018022188553
Iteration: 8, Func. Count: 34, Neg. LLF: 157.5901456219818
Iteration: 9, Func. Count: 37, Neg. LLF: 157.59014562822853
Optimization terminated successfully (Exit mode 0)
Current function value: 157.5901456219818
Iterations: 9
Function evaluations: 37
Gradient evaluations: 9
Iteration: 1, Func. Count: 6, Neg. LLF: 3983554.5691769477
Iteration: 2, Func. Count: 13, Neg. LLF: 151.2836400610055
Iteration: 3, Func. Count: 18, Neg. LLF: 150.64735599552932
Iteration: 4, Func. Count: 23, Neg. LLF: 150.46261466576232
Iteration: 5, Func. Count: 29, Neg. LLF: 149.83819008018125
Iteration: 6, Func. Count: 34, Neg. LLF: 149.8355320597094
Iteration: 7, Func. Count: 39, Neg. LLF: 149.8355156249033
Iteration: 8, Func. Count: 43, Neg. LLF: 149.83551485111965
Optimization terminated successfully (Exit mode 0)
Current function value: 149.8355156249033
Iterations: 8
Function evaluations: 43
Gradient evaluations: 8
Iteration: 1, Func. Count: 7, Neg. LLF: 161.71594482170028
Iteration: 2, Func. Count: 14, Neg. LLF: 2303.093364914581
Iteration: 3, Func. Count: 22, Neg. LLF: 150.4445272383563
Iteration: 4, Func. Count: 28, Neg. LLF: 150.54271786341982
Iteration: 5, Func. Count: 35, Neg. LLF: 149.85149662021675
Iteration: 6, Func. Count: 41, Neg. LLF: 149.8433941063457
Iteration: 7, Func. Count: 47, Neg. LLF: 149.83547846945672
Iteration: 8, Func. Count: 53, Neg. LLF: 150.13894025780326
Optimization terminated successfully (Exit mode 0)
Current function value: 149.83547827727617
Iterations: 9
Function evaluations: 56
Gradient evaluations: 8
Iteration: 1, Func. Count: 8, Neg. LLF: 4515848.467805584
Iteration: 2, Func. Count: 17, Neg. LLF: 169.93525069797113
Iteration: 3, Func. Count: 25, Neg. LLF: 150.797789165797
Iteration: 4, Func. Count: 32, Neg. LLF: 150.53298025147635
Iteration: 5, Func. Count: 39, Neg. LLF: 150.05354904493416
Iteration: 6, Func. Count: 46, Neg. LLF: 150.0090853987887
Iteration: 7, Func. Count: 53, Neg. LLF: 149.86503085625392
Iteration: 8, Func. Count: 60, Neg. LLF: 149.8356853782406
Iteration: 9, Func. Count: 67, Neg. LLF: 149.83233813468513
Iteration: 10, Func. Count: 75, Neg. LLF: 149.8355821794203
Iteration: 11, Func. Count: 82, Neg. LLF: 149.83332638811896
Iteration: 12, Func. Count: 94, Neg. LLF: 149.8317130269678
Iteration: 13, Func. Count: 111, Neg. LLF: 149.83551837715436
Iteration: 14, Func. Count: 118, Neg. LLF: 149.83359928782497
Optimization terminated successfully (Exit mode 0)
Current function value: 149.835516210266
Iterations: 14
Function evaluations: 128
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 4557596.314681503
Iteration: 2, Func. Count: 19, Neg. LLF: 259.0096458292113
Iteration: 3, Func. Count: 28, Neg. LLF: 147.87426472396993
Iteration: 4, Func. Count: 36, Neg. LLF: 146.07169742118933
Iteration: 5, Func. Count: 44, Neg. LLF: 146.28903057380268
Iteration: 6, Func. Count: 53, Neg. LLF: 145.9198210846965
Iteration: 7, Func. Count: 61, Neg. LLF: 145.91981070628597
Iteration: 8, Func. Count: 69, Neg. LLF: 145.91980345598418
Iteration: 9, Func. Count: 77, Neg. LLF: 145.91980467034344
Optimization terminated successfully (Exit mode 0)
Current function value: 145.91980345721774
Iterations: 9
Function evaluations: 87
Gradient evaluations: 9
Iteration: 1, Func. Count: 6, Neg. LLF: 156.61034686007457
Iteration: 2, Func. Count: 11, Neg. LLF: 165.57469342410326
Iteration: 3, Func. Count: 17, Neg. LLF: 151.06616821040888
Iteration: 4, Func. Count: 22, Neg. LLF: 150.81649496872058
Iteration: 5, Func. Count: 27, Neg. LLF: 150.6478531984409
Iteration: 6, Func. Count: 32, Neg. LLF: 149.9218342614932
Iteration: 7, Func. Count: 37, Neg. LLF: 149.51893280003472
Iteration: 8, Func. Count: 42, Neg. LLF: 149.3001398513006
Iteration: 9, Func. Count: 47, Neg. LLF: 149.28598447823111
Iteration: 10, Func. Count: 52, Neg. LLF: 149.2836475959946
Iteration: 11, Func. Count: 57, Neg. LLF: 149.28341730612863
Iteration: 12, Func. Count: 62, Neg. LLF: 149.28341270614604
Iteration: 13, Func. Count: 67, Neg. LLF: 149.2834121274429
Optimization terminated successfully (Exit mode 0)
Current function value: 149.2834121274429
Iterations: 13
Function evaluations: 67
Gradient evaluations: 13
Iteration: 1, Func. Count: 7, Neg. LLF: 586389.99368567
Iteration: 2, Func. Count: 15, Neg. LLF: 152.37618223344123
Iteration: 3, Func. Count: 21, Neg. LLF: 149.5882208175265
Iteration: 4, Func. Count: 27, Neg. LLF: 151.2604321975275
Iteration: 5, Func. Count: 34, Neg. LLF: 149.1927104977093
Iteration: 6, Func. Count: 40, Neg. LLF: 149.19154168512662
Iteration: 7, Func. Count: 46, Neg. LLF: 149.19147083698007
Iteration: 8, Func. Count: 52, Neg. LLF: 149.1914684948622
Iteration: 9, Func. Count: 57, Neg. LLF: 149.19146759574463
Optimization terminated successfully (Exit mode 0)
Current function value: 149.1914684948622
Iterations: 9
Function evaluations: 57
Gradient evaluations: 9
Iteration: 1, Func. Count: 8, Neg. LLF: 2679114.683653946
Iteration: 2, Func. Count: 17, Neg. LLF: 159.12277952570392
Iteration: 3, Func. Count: 25, Neg. LLF: 147.91200561484735
Iteration: 4, Func. Count: 32, Neg. LLF: 147.81031780372706
Iteration: 5, Func. Count: 39, Neg. LLF: 147.708446283837
Iteration: 6, Func. Count: 46, Neg. LLF: 147.7016101603082
Iteration: 7, Func. Count: 53, Neg. LLF: 147.70093466528527
Iteration: 8, Func. Count: 60, Neg. LLF: 147.70081323526742
Iteration: 9, Func. Count: 66, Neg. LLF: 147.70081268524248
Optimization terminated successfully (Exit mode 0)
Current function value: 147.70081323526742
Iterations: 9
Function evaluations: 66
Gradient evaluations: 9
Iteration: 1, Func. Count: 9, Neg. LLF: 2843287.3009265494
Iteration: 2, Func. Count: 18, Neg. LLF: 157.3340457545839
Iteration: 3, Func. Count: 27, Neg. LLF: 154.06919957697653
Iteration: 4, Func. Count: 36, Neg. LLF: 152.24662888264322
Iteration: 5, Func. Count: 45, Neg. LLF: 148.52577044303644
Iteration: 6, Func. Count: 53, Neg. LLF: 162.36931401062978
Iteration: 7, Func. Count: 62, Neg. LLF: 148.0848657893207
Iteration: 8, Func. Count: 70, Neg. LLF: 148.0384308943568
Iteration: 9, Func. Count: 78, Neg. LLF: 148.03246218632728
Iteration: 10, Func. Count: 86, Neg. LLF: 148.03210381321918
Iteration: 11, Func. Count: 94, Neg. LLF: 148.0321018576811
Iteration: 12, Func. Count: 101, Neg. LLF: 148.0321013084181
Optimization terminated successfully (Exit mode 0)
Current function value: 148.0321018576811
Iterations: 12
Function evaluations: 101
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 2779848.630320502
Iteration: 2, Func. Count: 20, Neg. LLF: 189.8612137524533
Iteration: 3, Func. Count: 30, Neg. LLF: 145.26391869518142
Iteration: 4, Func. Count: 39, Neg. LLF: 143.33137095910402
Iteration: 5, Func. Count: 48, Neg. LLF: 143.20090761489405
Iteration: 6, Func. Count: 57, Neg. LLF: 143.09988300051523
Iteration: 7, Func. Count: 66, Neg. LLF: 143.0891930605023
Iteration: 8, Func. Count: 75, Neg. LLF: 143.08833229494246
Iteration: 9, Func. Count: 84, Neg. LLF: 143.0882735543932
Iteration: 10, Func. Count: 92, Neg. LLF: 143.0882730665776
Optimization terminated successfully (Exit mode 0)
Current function value: 143.0882735543932
Iterations: 10
Function evaluations: 92
Gradient evaluations: 10
Iteration: 1, Func. Count: 7, Neg. LLF: 154.81124713884446
Iteration: 2, Func. Count: 13, Neg. LLF: 168.69270783309045
Iteration: 3, Func. Count: 20, Neg. LLF: 151.00473766102638
Iteration: 4, Func. Count: 26, Neg. LLF: 150.83256517276962
Iteration: 5, Func. Count: 32, Neg. LLF: 150.40846525907375
Iteration: 6, Func. Count: 38, Neg. LLF: 149.81177672702057
Iteration: 7, Func. Count: 44, Neg. LLF: 149.41992304542617
Iteration: 8, Func. Count: 50, Neg. LLF: 149.3162130582437
Iteration: 9, Func. Count: 56, Neg. LLF: 149.2879968302753
Iteration: 10, Func. Count: 62, Neg. LLF: 149.28638562918204
Iteration: 11, Func. Count: 68, Neg. LLF: 149.28344477318888
Iteration: 12, Func. Count: 74, Neg. LLF: 149.2834346816142
Iteration: 13, Func. Count: 81, Neg. LLF: 149.28341252603278
Iteration: 14, Func. Count: 86, Neg. LLF: 149.28341248969974
Optimization terminated successfully (Exit mode 0)
Current function value: 149.28341252603278
Iterations: 14
Function evaluations: 86
Gradient evaluations: 14
Iteration: 1, Func. Count: 8, Neg. LLF: 571265.0711440383
Iteration: 2, Func. Count: 17, Neg. LLF: 154.81014734881137
Iteration: 3, Func. Count: 25, Neg. LLF: 149.46823749912983
Iteration: 4, Func. Count: 32, Neg. LLF: 150.0511082305805
Iteration: 5, Func. Count: 40, Neg. LLF: 149.19398795005648
Iteration: 6, Func. Count: 47, Neg. LLF: 149.19266908389156
Iteration: 7, Func. Count: 54, Neg. LLF: 149.1916439019369
Iteration: 8, Func. Count: 61, Neg. LLF: 149.19148270846696
Iteration: 9, Func. Count: 68, Neg. LLF: 149.19146621148803
Iteration: 10, Func. Count: 75, Neg. LLF: 149.19239996750926
Optimization terminated successfully (Exit mode 0)
Current function value: 149.19146621290201
Iterations: 11
Function evaluations: 78
Gradient evaluations: 10
Iteration: 1, Func. Count: 9, Neg. LLF: 1345.9270729499065
Iteration: 2, Func. Count: 19, Neg. LLF: 172.6204500319185
Iteration: 3, Func. Count: 28, Neg. LLF: 147.73372649703643
Iteration: 4, Func. Count: 36, Neg. LLF: 147.71046494101023
Iteration: 5, Func. Count: 44, Neg. LLF: 147.70148996074627
Iteration: 6, Func. Count: 52, Neg. LLF: 147.70081458578727
Iteration: 7, Func. Count: 60, Neg. LLF: 147.7008130596011
Iteration: 8, Func. Count: 67, Neg. LLF: 147.70081250989875
Optimization terminated successfully (Exit mode 0)
Current function value: 147.7008130596011
Iterations: 8
Function evaluations: 67
Gradient evaluations: 8
Iteration: 1, Func. Count: 10, Neg. LLF: 4217450.71769557
Iteration: 2, Func. Count: 20, Neg. LLF: 160.34105749118083
Iteration: 3, Func. Count: 30, Neg. LLF: 149.22349800724794
Iteration: 4, Func. Count: 39, Neg. LLF: 161.74121599739055
Iteration: 5, Func. Count: 49, Neg. LLF: 148.3273004153222
Iteration: 6, Func. Count: 58, Neg. LLF: 148.03944904030362
Iteration: 7, Func. Count: 67, Neg. LLF: 148.03409464227406
Iteration: 8, Func. Count: 76, Neg. LLF: 148.0323821186511
Iteration: 9, Func. Count: 85, Neg. LLF: 148.03210208637842
Iteration: 10, Func. Count: 93, Neg. LLF: 148.03210153698527
Optimization terminated successfully (Exit mode 0)
Current function value: 148.03210208637842
Iterations: 10
Function evaluations: 93
Gradient evaluations: 10
Iteration: 1, Func. Count: 11, Neg. LLF: 4158645.469637715
Iteration: 2, Func. Count: 22, Neg. LLF: 193.3652971536543
Iteration: 3, Func. Count: 33, Neg. LLF: 145.3060550676143
Iteration: 4, Func. Count: 43, Neg. LLF: 143.35666752113684
Iteration: 5, Func. Count: 53, Neg. LLF: 143.2027582666396
Iteration: 6, Func. Count: 63, Neg. LLF: 143.0995537409019
Iteration: 7, Func. Count: 73, Neg. LLF: 143.08991074993486
Iteration: 8, Func. Count: 83, Neg. LLF: 143.08846625548455
Iteration: 9, Func. Count: 93, Neg. LLF: 143.08827559286314
Iteration: 10, Func. Count: 103, Neg. LLF: 143.08827355399558
Iteration: 11, Func. Count: 112, Neg. LLF: 143.08827306610627
Optimization terminated successfully (Exit mode 0)
Current function value: 143.08827355399558
Iterations: 11
Function evaluations: 112
Gradient evaluations: 11
Iteration: 1, Func. Count: 8, Neg. LLF: 153.52094678846805
Iteration: 2, Func. Count: 15, Neg. LLF: 169.00833369338042
Iteration: 3, Func. Count: 23, Neg. LLF: 150.98688234146007
Iteration: 4, Func. Count: 30, Neg. LLF: 150.8181647521226
Iteration: 5, Func. Count: 37, Neg. LLF: 149.95218662257165
Iteration: 6, Func. Count: 44, Neg. LLF: 766107.6367400385
Iteration: 7, Func. Count: 52, Neg. LLF: 150.060079224663
Iteration: 8, Func. Count: 60, Neg. LLF: 149.29593836717578
Iteration: 9, Func. Count: 67, Neg. LLF: 149.28381343984339
Iteration: 10, Func. Count: 74, Neg. LLF: 149.28347912544848
Iteration: 11, Func. Count: 81, Neg. LLF: 149.28341348167598
Iteration: 12, Func. Count: 88, Neg. LLF: 149.2834125075358
Optimization terminated successfully (Exit mode 0)
Current function value: 149.2834125075358
Iterations: 12
Function evaluations: 88
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 21860428.442794897
Iteration: 2, Func. Count: 19, Neg. LLF: 157.1920800429215
Iteration: 3, Func. Count: 28, Neg. LLF: 148.25157194093762
Iteration: 4, Func. Count: 36, Neg. LLF: 148.39400987190893
Iteration: 5, Func. Count: 45, Neg. LLF: 148.01914420887593
Iteration: 6, Func. Count: 53, Neg. LLF: 148.0191237329557
Iteration: 7, Func. Count: 61, Neg. LLF: 148.0191280489889
Iteration: 8, Func. Count: 69, Neg. LLF: 148.01912667099896
Iteration: 9, Func. Count: 77, Neg. LLF: 148.02091577574953
Optimization terminated successfully (Exit mode 0)
Current function value: 148.0191266722174
Iterations: 10
Function evaluations: 80
Gradient evaluations: 9
Iteration: 1, Func. Count: 10, Neg. LLF: 877916.9692196825
Iteration: 2, Func. Count: 21, Neg. LLF: 176.29496249116596
Iteration: 3, Func. Count: 31, Neg. LLF: 148.37678055152207
Iteration: 4, Func. Count: 40, Neg. LLF: 148.0002017246593
Iteration: 5, Func. Count: 49, Neg. LLF: 147.72454842032266
Iteration: 6, Func. Count: 58, Neg. LLF: 147.70225619814943
Iteration: 7, Func. Count: 67, Neg. LLF: 147.7008189017036
Iteration: 8, Func. Count: 76, Neg. LLF: 147.700813239629
Iteration: 9, Func. Count: 84, Neg. LLF: 147.70081269029612
Optimization terminated successfully (Exit mode 0)
Current function value: 147.700813239629
Iterations: 9
Function evaluations: 84
Gradient evaluations: 9
Iteration: 1, Func. Count: 11, Neg. LLF: 4307771.63836116
Iteration: 2, Func. Count: 22, Neg. LLF: 162.5884631364815
Iteration: 3, Func. Count: 33, Neg. LLF: 151.6889237671676
Iteration: 4, Func. Count: 44, Neg. LLF: 161.4569454093224
Iteration: 5, Func. Count: 55, Neg. LLF: 148.204609970645
Iteration: 6, Func. Count: 65, Neg. LLF: 148.05011908804576
Iteration: 7, Func. Count: 75, Neg. LLF: 148.0348653365696
Iteration: 8, Func. Count: 85, Neg. LLF: 148.0335227299347
Iteration: 9, Func. Count: 95, Neg. LLF: 148.03210669061906
Iteration: 10, Func. Count: 105, Neg. LLF: 148.03210194198329
Iteration: 11, Func. Count: 114, Neg. LLF: 148.0321013925161
Optimization terminated successfully (Exit mode 0)
Current function value: 148.03210194198329
Iterations: 11
Function evaluations: 114
Gradient evaluations: 11
Iteration: 1, Func. Count: 12, Neg. LLF: 4222673.538388709
Iteration: 2, Func. Count: 24, Neg. LLF: 200.53882520848285
Iteration: 3, Func. Count: 36, Neg. LLF: 145.33573574973389
Iteration: 4, Func. Count: 47, Neg. LLF: 143.37801273700083
Iteration: 5, Func. Count: 58, Neg. LLF: 143.17729644042188
Iteration: 6, Func. Count: 69, Neg. LLF: 143.09900160605613
Iteration: 7, Func. Count: 80, Neg. LLF: 143.0904718581209
Iteration: 8, Func. Count: 91, Neg. LLF: 143.0885002512293
Iteration: 9, Func. Count: 102, Neg. LLF: 143.08828970643256
Iteration: 10, Func. Count: 113, Neg. LLF: 143.08827366229863
Iteration: 11, Func. Count: 123, Neg. LLF: 143.08827317434645
Optimization terminated successfully (Exit mode 0)
Current function value: 143.08827366229863
Iterations: 11
Function evaluations: 123
Gradient evaluations: 11
Iteration: 1, Func. Count: 5, Neg. LLF: 159.79834203920925
Iteration: 2, Func. Count: 9, Neg. LLF: 159.9414791569319
Iteration: 3, Func. Count: 14, Neg. LLF: 159.76974571440172
Iteration: 4, Func. Count: 18, Neg. LLF: 159.75311812850114
Iteration: 5, Func. Count: 22, Neg. LLF: 159.73934715766123
Iteration: 6, Func. Count: 26, Neg. LLF: 159.73922730539945
Iteration: 7, Func. Count: 30, Neg. LLF: 159.7392267692111
Optimization terminated successfully (Exit mode 0)
Current function value: 159.7392267692111
Iterations: 7
Function evaluations: 30
Gradient evaluations: 7
Iteration: 1, Func. Count: 6, Neg. LLF: 177.45477620762088
Iteration: 2, Func. Count: 12, Neg. LLF: 221.31431912978005
Iteration: 3, Func. Count: 19, Neg. LLF: 154.9705592808304
Iteration: 4, Func. Count: 24, Neg. LLF: 153.88715757821316
Iteration: 5, Func. Count: 29, Neg. LLF: 153.30241431916423
Iteration: 6, Func. Count: 34, Neg. LLF: 154.05429638405855
Iteration: 7, Func. Count: 40, Neg. LLF: 152.97053032924973
Iteration: 8, Func. Count: 45, Neg. LLF: 152.96938161491678
Iteration: 9, Func. Count: 49, Neg. LLF: 152.96938070797597
Optimization terminated successfully (Exit mode 0)
Current function value: 152.96938161491678
Iterations: 9
Function evaluations: 49
Gradient evaluations: 9
Iteration: 1, Func. Count: 7, Neg. LLF: 471.57634008438254
Iteration: 2, Func. Count: 15, Neg. LLF: 156.60241820298057
Iteration: 3, Func. Count: 21, Neg. LLF: 152.7326639472612
Iteration: 4, Func. Count: 27, Neg. LLF: 152.82389247218723
Iteration: 5, Func. Count: 34, Neg. LLF: 152.50597515671245
Iteration: 6, Func. Count: 41, Neg. LLF: 24093288.405713063
Iteration: 7, Func. Count: 50, Neg. LLF: 152.3188168632618
Iteration: 8, Func. Count: 56, Neg. LLF: 152.29546106288515
Iteration: 9, Func. Count: 62, Neg. LLF: 152.29545623894023
Iteration: 10, Func. Count: 67, Neg. LLF: 152.29545623885454
Optimization terminated successfully (Exit mode 0)
Current function value: 152.29545623894023
Iterations: 11
Function evaluations: 67
Gradient evaluations: 10
Iteration: 1, Func. Count: 8, Neg. LLF: 518.6615527056699
Iteration: 2, Func. Count: 17, Neg. LLF: 153.81639427240023
Iteration: 3, Func. Count: 24, Neg. LLF: 153.3953824545179
Iteration: 4, Func. Count: 31, Neg. LLF: 153.06182832000502
Iteration: 5, Func. Count: 38, Neg. LLF: 152.94329862944994
Iteration: 6, Func. Count: 45, Neg. LLF: 152.93900592455566
Iteration: 7, Func. Count: 52, Neg. LLF: 152.93316300787373
Iteration: 8, Func. Count: 59, Neg. LLF: 152.9102508796303
Iteration: 9, Func. Count: 66, Neg. LLF: 152.7617752251552
Iteration: 10, Func. Count: 73, Neg. LLF: 24099713.790761176
Iteration: 11, Func. Count: 83, Neg. LLF: 152.79154146731491
Iteration: 12, Func. Count: 91, Neg. LLF: 152.7526854409076
Iteration: 13, Func. Count: 98, Neg. LLF: 152.63266409485593
Iteration: 14, Func. Count: 105, Neg. LLF: 152.5651354885694
Iteration: 15, Func. Count: 112, Neg. LLF: 155.5566646970546
Iteration: 16, Func. Count: 122, Neg. LLF: 8278.740102801783
Iteration: 17, Func. Count: 133, Neg. LLF: 152.58792838720575
Iteration: 18, Func. Count: 140, Neg. LLF: 152.56380630677626
Optimization terminated successfully (Exit mode 0)
Current function value: 152.56380628394146
Iterations: 20
Function evaluations: 140
Gradient evaluations: 18
Iteration: 1, Func. Count: 9, Neg. LLF: 527.4880224161664
Iteration: 2, Func. Count: 19, Neg. LLF: 153.27482264030962
Iteration: 3, Func. Count: 27, Neg. LLF: 153.44208992085413
Iteration: 4, Func. Count: 36, Neg. LLF: 153.13462633231515
Iteration: 5, Func. Count: 45, Neg. LLF: 153.01410157689372
Iteration: 6, Func. Count: 53, Neg. LLF: 153.0044391975495
Iteration: 7, Func. Count: 61, Neg. LLF: 152.99970288440977
Iteration: 8, Func. Count: 69, Neg. LLF: 152.99922225740266
Iteration: 9, Func. Count: 77, Neg. LLF: 152.99903634384293
Iteration: 10, Func. Count: 85, Neg. LLF: 152.99439746269948
Iteration: 11, Func. Count: 93, Neg. LLF: 152.9452158394499
Iteration: 12, Func. Count: 101, Neg. LLF: 152.95056030195914
Iteration: 13, Func. Count: 110, Neg. LLF: 152.95334094304394
Iteration: 14, Func. Count: 119, Neg. LLF: 152.9384503789281
Iteration: 15, Func. Count: 127, Neg. LLF: 153.01350909247554
Iteration: 16, Func. Count: 136, Neg. LLF: 152.88026356119175
Iteration: 17, Func. Count: 144, Neg. LLF: 23950878.91396025
Iteration: 18, Func. Count: 155, Neg. LLF: 152.74015749343434
Iteration: 19, Func. Count: 163, Neg. LLF: 152.61745609437943
Iteration: 20, Func. Count: 171, Neg. LLF: 152.60649662005002
Iteration: 21, Func. Count: 179, Neg. LLF: 152.87531230375717
Iteration: 22, Func. Count: 188, Neg. LLF: 152.59187601601187
Iteration: 23, Func. Count: 196, Neg. LLF: 152.57827390968492
Iteration: 24, Func. Count: 204, Neg. LLF: 152.5759920421879
Iteration: 25, Func. Count: 212, Neg. LLF: 24008008.607028168
Iteration: 26, Func. Count: 223, Neg. LLF: 152.56491738937368
Iteration: 27, Func. Count: 232, Neg. LLF: 152.56380647647217
Iteration: 28, Func. Count: 239, Neg. LLF: 152.56380652360536
Optimization terminated successfully (Exit mode 0)
Current function value: 152.56380647647217
Iterations: 30
Function evaluations: 239
Gradient evaluations: 28
Iteration: 1, Func. Count: 6, Neg. LLF: 159.21148707471164
Iteration: 2, Func. Count: 11, Neg. LLF: 158.32475255344715
Iteration: 3, Func. Count: 17, Neg. LLF: 178.73107822677377
Iteration: 4, Func. Count: 23, Neg. LLF: 157.74756735447195
Iteration: 5, Func. Count: 28, Neg. LLF: 157.67469335013672
Iteration: 6, Func. Count: 33, Neg. LLF: 157.7560921293905
Iteration: 7, Func. Count: 39, Neg. LLF: 157.75084398213525
Iteration: 8, Func. Count: 45, Neg. LLF: 157.74605791860205
Iteration: 9, Func. Count: 51, Neg. LLF: 157.71168661712062
Iteration: 10, Func. Count: 57, Neg. LLF: 157.68096101881423
Iteration: 11, Func. Count: 63, Neg. LLF: 157.5056593136885
Iteration: 12, Func. Count: 69, Neg. LLF: 157.44489469006155
Iteration: 13, Func. Count: 74, Neg. LLF: 157.43632808468968
Iteration: 14, Func. Count: 79, Neg. LLF: 157.42788494002377
Iteration: 15, Func. Count: 84, Neg. LLF: 157.4271176594338
Iteration: 16, Func. Count: 89, Neg. LLF: 157.42710222979974
Iteration: 17, Func. Count: 93, Neg. LLF: 157.42710222118774
Optimization terminated successfully (Exit mode 0)
Current function value: 157.42710222979974
Iterations: 17
Function evaluations: 93
Gradient evaluations: 17
Iteration: 1, Func. Count: 7, Neg. LLF: 3732799.331893875
Iteration: 2, Func. Count: 15, Neg. LLF: 150.0050948596865
Iteration: 3, Func. Count: 21, Neg. LLF: 150.7134347975531
Iteration: 4, Func. Count: 28, Neg. LLF: 149.85022436938013
Iteration: 5, Func. Count: 34, Neg. LLF: 149.83559342875193
Iteration: 6, Func. Count: 40, Neg. LLF: 149.835510018274
Iteration: 7, Func. Count: 46, Neg. LLF: 149.93490043919905
Optimization terminated successfully (Exit mode 0)
Current function value: 149.83550995131415
Iterations: 8
Function evaluations: 49
Gradient evaluations: 7
Iteration: 1, Func. Count: 8, Neg. LLF: 161.56079162030144
Iteration: 2, Func. Count: 16, Neg. LLF: 563548.2392025301
Iteration: 3, Func. Count: 25, Neg. LLF: 150.32423998657657
Iteration: 4, Func. Count: 32, Neg. LLF: 151.39568781921386
Iteration: 5, Func. Count: 40, Neg. LLF: 149.93411004228216
Iteration: 6, Func. Count: 47, Neg. LLF: 149.8655317813409
Iteration: 7, Func. Count: 54, Neg. LLF: 149.82140038669527
Iteration: 8, Func. Count: 61, Neg. LLF: 149.8355517616042
Iteration: 9, Func. Count: 68, Neg. LLF: 150.64040813320798
Optimization terminated successfully (Exit mode 0)
Current function value: 149.83555113456418
Iterations: 10
Function evaluations: 71
Gradient evaluations: 9
Iteration: 1, Func. Count: 9, Neg. LLF: 4402548.393882814
Iteration: 2, Func. Count: 19, Neg. LLF: 165.67686115264047
Iteration: 3, Func. Count: 28, Neg. LLF: 150.62701342163564
Iteration: 4, Func. Count: 36, Neg. LLF: 151.73280924484402
Iteration: 5, Func. Count: 45, Neg. LLF: 150.58788128283493
Iteration: 6, Func. Count: 54, Neg. LLF: 152.55608016985462
Iteration: 7, Func. Count: 63, Neg. LLF: 150.44390015907013
Iteration: 8, Func. Count: 71, Neg. LLF: 150.43868703214335
Iteration: 9, Func. Count: 80, Neg. LLF: 150.42413336564917
Iteration: 10, Func. Count: 88, Neg. LLF: 150.4225211188367
Iteration: 11, Func. Count: 96, Neg. LLF: 150.42230647224835
Iteration: 12, Func. Count: 104, Neg. LLF: 150.4245272924204
Iteration: 13, Func. Count: 115, Neg. LLF: 150.56530215102603
Iteration: 14, Func. Count: 127, Neg. LLF: 150.42234657271024
Iteration: 15, Func. Count: 137, Neg. LLF: 150.42233356695473
Iteration: 16, Func. Count: 146, Neg. LLF: 150.42233353019108
Iteration: 17, Func. Count: 153, Neg. LLF: 150.42233323851474
Optimization terminated successfully (Exit mode 0)
Current function value: 150.42233353019108
Iterations: 18
Function evaluations: 153
Gradient evaluations: 17
Iteration: 1, Func. Count: 10, Neg. LLF: 4374908.236783169
Iteration: 2, Func. Count: 20, Neg. LLF: 154.908643690222
Iteration: 3, Func. Count: 30, Neg. LLF: 148.67528508209406
Iteration: 4, Func. Count: 39, Neg. LLF: 148.02095948056046
Iteration: 5, Func. Count: 48, Neg. LLF: 147.36844959013018
Iteration: 6, Func. Count: 57, Neg. LLF: 146.6229344352259
Iteration: 7, Func. Count: 66, Neg. LLF: 146.03513137446592
Iteration: 8, Func. Count: 75, Neg. LLF: 145.92915720793982
Iteration: 9, Func. Count: 84, Neg. LLF: 145.91981851986606
Iteration: 10, Func. Count: 93, Neg. LLF: 145.9198044901535
Iteration: 11, Func. Count: 102, Neg. LLF: 145.919815233847
Optimization terminated successfully (Exit mode 0)
Current function value: 145.91980473216188
Iterations: 12
Function evaluations: 103
Gradient evaluations: 11
Iteration: 1, Func. Count: 7, Neg. LLF: 155.18176529003586
Iteration: 2, Func. Count: 13, Neg. LLF: 159.82976624338403
Iteration: 3, Func. Count: 20, Neg. LLF: 150.8521370002278
Iteration: 4, Func. Count: 26, Neg. LLF: 151.6955362666538
Iteration: 5, Func. Count: 34, Neg. LLF: 150.62822505233177
Iteration: 6, Func. Count: 40, Neg. LLF: 150.21738290451455
Iteration: 7, Func. Count: 46, Neg. LLF: 149.66878741946294
Iteration: 8, Func. Count: 52, Neg. LLF: 149.2841316528829
Iteration: 9, Func. Count: 58, Neg. LLF: 149.2248598659395
Iteration: 10, Func. Count: 64, Neg. LLF: 149.1936447221276
Iteration: 11, Func. Count: 70, Neg. LLF: 149.19220862151522
Iteration: 12, Func. Count: 76, Neg. LLF: 149.19134993331608
Iteration: 13, Func. Count: 82, Neg. LLF: 149.19134834332175
Iteration: 14, Func. Count: 87, Neg. LLF: 149.1913482873847
Optimization terminated successfully (Exit mode 0)
Current function value: 149.19134834332175
Iterations: 14
Function evaluations: 87
Gradient evaluations: 14
Iteration: 1, Func. Count: 8, Neg. LLF: 455334.26714281965
Iteration: 2, Func. Count: 17, Neg. LLF: 150.40575537018165
Iteration: 3, Func. Count: 24, Neg. LLF: 151.9134154212321
Iteration: 4, Func. Count: 32, Neg. LLF: 149.20824878651442
Iteration: 5, Func. Count: 39, Neg. LLF: 149.1936799311957
Iteration: 6, Func. Count: 46, Neg. LLF: 149.19170883414174
Iteration: 7, Func. Count: 53, Neg. LLF: 149.19140197737798
Iteration: 8, Func. Count: 60, Neg. LLF: 149.19219666270925
Iteration: 9, Func. Count: 70, Neg. LLF: 149.19146861220017
Iteration: 10, Func. Count: 76, Neg. LLF: 149.1914677129995
Optimization terminated successfully (Exit mode 0)
Current function value: 149.19146861220017
Iterations: 11
Function evaluations: 76
Gradient evaluations: 10
Iteration: 1, Func. Count: 9, Neg. LLF: 2572992.183811943
Iteration: 2, Func. Count: 19, Neg. LLF: 154.41874287433006
Iteration: 3, Func. Count: 28, Neg. LLF: 147.85885541536436
Iteration: 4, Func. Count: 36, Neg. LLF: 147.8630887250458
Iteration: 5, Func. Count: 45, Neg. LLF: 147.7197514886278
Iteration: 6, Func. Count: 53, Neg. LLF: 147.7013305065018
Iteration: 7, Func. Count: 61, Neg. LLF: 147.7007102658243
Iteration: 8, Func. Count: 69, Neg. LLF: 147.70701445789342
Iteration: 9, Func. Count: 80, Neg. LLF: 147.70085001690754
Iteration: 10, Func. Count: 89, Neg. LLF: 147.7008135948301
Iteration: 11, Func. Count: 99, Neg. LLF: 147.70081314291
Iteration: 12, Func. Count: 108, Neg. LLF: 147.70081520283264
Iteration: 13, Func. Count: 118, Neg. LLF: 147.7008240332499
Iteration: 14, Func. Count: 128, Neg. LLF: 147.70075843894568
Optimization terminated successfully (Exit mode 0)
Current function value: 147.70075898866054
Iterations: 18
Function evaluations: 128
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 2734056.150465812
Iteration: 2, Func. Count: 20, Neg. LLF: 158.01940120975362
Iteration: 3, Func. Count: 30, Neg. LLF: 148.54643559142875
Iteration: 4, Func. Count: 39, Neg. LLF: 150.44134286675308
Iteration: 5, Func. Count: 49, Neg. LLF: 148.53783948157476
Iteration: 6, Func. Count: 59, Neg. LLF: 148.31263778610185
Iteration: 7, Func. Count: 68, Neg. LLF: 148.04521386597062
Iteration: 8, Func. Count: 77, Neg. LLF: 148.03291993455434
Iteration: 9, Func. Count: 86, Neg. LLF: 148.03170936547966
Iteration: 10, Func. Count: 95, Neg. LLF: 148.03155432584873
Iteration: 11, Func. Count: 105, Neg. LLF: 148.03159761525413
Iteration: 12, Func. Count: 124, Neg. LLF: 148.03195790188946
Iteration: 13, Func. Count: 134, Neg. LLF: 148.0443126686914
Iteration: 14, Func. Count: 145, Neg. LLF: 148.03393887323054
Iteration: 15, Func. Count: 156, Neg. LLF: 148.0321089666615
Iteration: 16, Func. Count: 166, Neg. LLF: 148.0321016906408
Iteration: 17, Func. Count: 174, Neg. LLF: 148.032101141299
Optimization terminated successfully (Exit mode 0)
Current function value: 148.0321016906408
Iterations: 18
Function evaluations: 174
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 2702011.5765412864
Iteration: 2, Func. Count: 22, Neg. LLF: 189.5222672878319
Iteration: 3, Func. Count: 33, Neg. LLF: 145.3909941861681
Iteration: 4, Func. Count: 43, Neg. LLF: 143.63316756246786
Iteration: 5, Func. Count: 53, Neg. LLF: 158.20990703515687
Iteration: 6, Func. Count: 65, Neg. LLF: 143.82884363813352
Iteration: 7, Func. Count: 76, Neg. LLF: 143.1041244462102
Iteration: 8, Func. Count: 86, Neg. LLF: 143.09085345549428
Iteration: 9, Func. Count: 96, Neg. LLF: 143.08829018519745
Iteration: 10, Func. Count: 106, Neg. LLF: 143.0882740418505
Iteration: 11, Func. Count: 116, Neg. LLF: 143.08827353598622
Optimization terminated successfully (Exit mode 0)
Current function value: 143.08827353598622
Iterations: 11
Function evaluations: 116
Gradient evaluations: 11
Iteration: 1, Func. Count: 8, Neg. LLF: 154.0420093033677
Iteration: 2, Func. Count: 15, Neg. LLF: 162.52614961458895
Iteration: 3, Func. Count: 23, Neg. LLF: 150.86264764437797
Iteration: 4, Func. Count: 30, Neg. LLF: 151.58822998551696
Iteration: 5, Func. Count: 39, Neg. LLF: 150.38638947192834
Iteration: 6, Func. Count: 46, Neg. LLF: 149.63775583791517
Iteration: 7, Func. Count: 53, Neg. LLF: 149.69598793731177
Iteration: 8, Func. Count: 61, Neg. LLF: 149.25742104402192
Iteration: 9, Func. Count: 68, Neg. LLF: 149.19460683315546
Iteration: 10, Func. Count: 75, Neg. LLF: 149.19334562662803
Iteration: 11, Func. Count: 82, Neg. LLF: 149.19135681547985
Iteration: 12, Func. Count: 89, Neg. LLF: 149.1913484303347
Iteration: 13, Func. Count: 95, Neg. LLF: 149.1913483953419
Optimization terminated successfully (Exit mode 0)
Current function value: 149.1913484303347
Iterations: 13
Function evaluations: 95
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 438704.85803400446
Iteration: 2, Func. Count: 19, Neg. LLF: 152.17117437401683
Iteration: 3, Func. Count: 27, Neg. LLF: 150.43522298692852
Iteration: 4, Func. Count: 35, Neg. LLF: 151.8478448197181
Iteration: 5, Func. Count: 44, Neg. LLF: 149.20338392533355
Iteration: 6, Func. Count: 52, Neg. LLF: 149.19274536829596
Iteration: 7, Func. Count: 60, Neg. LLF: 149.19155141199343
Iteration: 8, Func. Count: 68, Neg. LLF: 149.19146778401802
Iteration: 9, Func. Count: 76, Neg. LLF: 149.23671783009578
Optimization terminated successfully (Exit mode 0)
Current function value: 149.19146774461382
Iterations: 10
Function evaluations: 79
Gradient evaluations: 9
Iteration: 1, Func. Count: 10, Neg. LLF: 2688206.801610072
Iteration: 2, Func. Count: 21, Neg. LLF: 160.43887936558062
Iteration: 3, Func. Count: 31, Neg. LLF: 147.86241449543448
Iteration: 4, Func. Count: 40, Neg. LLF: 147.79901637899553
Iteration: 5, Func. Count: 49, Neg. LLF: 147.70843065298004
Iteration: 6, Func. Count: 58, Neg. LLF: 147.70153972313085
Iteration: 7, Func. Count: 67, Neg. LLF: 147.70078346048663
Iteration: 8, Func. Count: 76, Neg. LLF: 147.70051102621937
Iteration: 9, Func. Count: 85, Neg. LLF: 147.70072514151286
Iteration: 10, Func. Count: 104, Neg. LLF: 147.70363899912962
Iteration: 11, Func. Count: 116, Neg. LLF: 147.70081366717244
Iteration: 12, Func. Count: 126, Neg. LLF: 147.7005265757578
Optimization terminated successfully (Exit mode 0)
Current function value: 147.7005271254554
Iterations: 16
Function evaluations: 126
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 2798336.3142234837
Iteration: 2, Func. Count: 22, Neg. LLF: 161.53964411820334
Iteration: 3, Func. Count: 33, Neg. LLF: 153.73477429017294
Iteration: 4, Func. Count: 44, Neg. LLF: 155.1648018042206
Iteration: 5, Func. Count: 55, Neg. LLF: 148.21835392659025
Iteration: 6, Func. Count: 65, Neg. LLF: 161.2102665048672
Iteration: 7, Func. Count: 77, Neg. LLF: 148.1030716042563
Iteration: 8, Func. Count: 87, Neg. LLF: 148.0544894541353
Iteration: 9, Func. Count: 97, Neg. LLF: 148.0431235337774
Iteration: 10, Func. Count: 107, Neg. LLF: 148.03396114797405
Iteration: 11, Func. Count: 117, Neg. LLF: 148.03212133704048
Iteration: 12, Func. Count: 127, Neg. LLF: 148.03209906518163
Iteration: 13, Func. Count: 137, Neg. LLF: 148.03209894830195
Optimization terminated successfully (Exit mode 0)
Current function value: 148.03209894830195
Iterations: 13
Function evaluations: 137
Gradient evaluations: 13
Iteration: 1, Func. Count: 12, Neg. LLF: 2737473.072439392
Iteration: 2, Func. Count: 24, Neg. LLF: 193.2762874773608
Iteration: 3, Func. Count: 36, Neg. LLF: 145.44987227675205
Iteration: 4, Func. Count: 47, Neg. LLF: 143.61060772428687
Iteration: 5, Func. Count: 58, Neg. LLF: 158.3209897218416
Iteration: 6, Func. Count: 71, Neg. LLF: 143.77280050013098
Iteration: 7, Func. Count: 83, Neg. LLF: 143.0990081827163
Iteration: 8, Func. Count: 94, Neg. LLF: 143.09006919443001
Iteration: 9, Func. Count: 105, Neg. LLF: 143.08831292846418
Iteration: 10, Func. Count: 116, Neg. LLF: 143.08827441156285
Iteration: 11, Func. Count: 127, Neg. LLF: 143.08827354540276
Optimization terminated successfully (Exit mode 0)
Current function value: 143.08827354540276
Iterations: 11
Function evaluations: 127
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 153.1414155911878
Iteration: 2, Func. Count: 17, Neg. LLF: 163.7733132148772
Iteration: 3, Func. Count: 26, Neg. LLF: 150.86527674215978
Iteration: 4, Func. Count: 34, Neg. LLF: 151.6702999201953
Iteration: 5, Func. Count: 44, Neg. LLF: 150.28823258109063
Iteration: 6, Func. Count: 52, Neg. LLF: 155.31491045646302
Iteration: 7, Func. Count: 61, Neg. LLF: 247.42090443685265
Iteration: 8, Func. Count: 70, Neg. LLF: 149.62336625526348
Iteration: 9, Func. Count: 79, Neg. LLF: 149.1974876539738
Iteration: 10, Func. Count: 87, Neg. LLF: 149.19151586095586
Iteration: 11, Func. Count: 95, Neg. LLF: 149.19138700690814
Iteration: 12, Func. Count: 103, Neg. LLF: 149.19134861318062
Iteration: 13, Func. Count: 110, Neg. LLF: 149.19134856648765
Optimization terminated successfully (Exit mode 0)
Current function value: 149.19134861318062
Iterations: 13
Function evaluations: 110
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 21480046.969862353
Iteration: 2, Func. Count: 21, Neg. LLF: 155.6831515524945
Iteration: 3, Func. Count: 31, Neg. LLF: 148.2275363326643
Iteration: 4, Func. Count: 40, Neg. LLF: 148.338132474679
Iteration: 5, Func. Count: 50, Neg. LLF: 148.04212400668737
Iteration: 6, Func. Count: 59, Neg. LLF: 148.01937745041104
Iteration: 7, Func. Count: 68, Neg. LLF: 148.01911263006588
Iteration: 8, Func. Count: 77, Neg. LLF: 148.02660709434443
Optimization terminated successfully (Exit mode 0)
Current function value: 148.01911262981832
Iterations: 9
Function evaluations: 80
Gradient evaluations: 8
Iteration: 1, Func. Count: 11, Neg. LLF: 688947.3812106047
Iteration: 2, Func. Count: 23, Neg. LLF: 179.27757487701595
Iteration: 3, Func. Count: 34, Neg. LLF: 148.3888628063739
Iteration: 4, Func. Count: 44, Neg. LLF: 147.92595832005327
Iteration: 5, Func. Count: 54, Neg. LLF: 147.715996986933
Iteration: 6, Func. Count: 64, Neg. LLF: 147.7017854440483
Iteration: 7, Func. Count: 74, Neg. LLF: 147.70105042734411
Iteration: 8, Func. Count: 84, Neg. LLF: 147.70091620081936
Iteration: 9, Func. Count: 94, Neg. LLF: 147.73220314070903
Iteration: 10, Func. Count: 106, Neg. LLF: 147.7008165228953
Iteration: 11, Func. Count: 116, Neg. LLF: 147.7008138511776
Iteration: 12, Func. Count: 126, Neg. LLF: 147.70081318090791
Optimization terminated successfully (Exit mode 0)
Current function value: 147.70081318090791
Iterations: 13
Function evaluations: 126
Gradient evaluations: 12
Iteration: 1, Func. Count: 12, Neg. LLF: 4188061.026324814
Iteration: 2, Func. Count: 24, Neg. LLF: 164.44352362178927
Iteration: 3, Func. Count: 36, Neg. LLF: 153.46670334365172
Iteration: 4, Func. Count: 48, Neg. LLF: 155.6655476986898
Iteration: 5, Func. Count: 60, Neg. LLF: 148.2910648562212
Iteration: 6, Func. Count: 71, Neg. LLF: 167.48428931466705
Iteration: 7, Func. Count: 85, Neg. LLF: 148.14714229157593
Iteration: 8, Func. Count: 96, Neg. LLF: 148.05961073284126
Iteration: 9, Func. Count: 107, Neg. LLF: 148.04667058811862
Iteration: 10, Func. Count: 118, Neg. LLF: 148.0362147968256
Iteration: 11, Func. Count: 129, Neg. LLF: 148.03219165785833
Iteration: 12, Func. Count: 140, Neg. LLF: 148.0320960881545
Iteration: 13, Func. Count: 151, Neg. LLF: 148.03210124250316
Iteration: 14, Func. Count: 161, Neg. LLF: 148.03210069313687
Optimization terminated successfully (Exit mode 0)
Current function value: 148.03210124250316
Iterations: 15
Function evaluations: 161
Gradient evaluations: 14
Iteration: 1, Func. Count: 13, Neg. LLF: 2787680.5688499007
Iteration: 2, Func. Count: 26, Neg. LLF: 201.97451146376835
Iteration: 3, Func. Count: 39, Neg. LLF: 145.47082839190233
Iteration: 4, Func. Count: 51, Neg. LLF: 143.50416922866845
Iteration: 5, Func. Count: 63, Neg. LLF: 143.5781386885263
Iteration: 6, Func. Count: 76, Neg. LLF: 143.09932374900302
Iteration: 7, Func. Count: 88, Neg. LLF: 143.08853565383757
Iteration: 8, Func. Count: 100, Neg. LLF: 143.08827975432348
Iteration: 9, Func. Count: 112, Neg. LLF: 143.0882735666541
Iteration: 10, Func. Count: 123, Neg. LLF: 143.08827307884337
Optimization terminated successfully (Exit mode 0)
Current function value: 143.0882735666541
Iterations: 10
Function evaluations: 123
Gradient evaluations: 10
Iteration: 1, Func. Count: 6, Neg. LLF: 158.33093774623137
Iteration: 2, Func. Count: 11, Neg. LLF: 160.3656731527172
Iteration: 3, Func. Count: 17, Neg. LLF: 158.77037351098755
Iteration: 4, Func. Count: 25, Neg. LLF: 157.3595404715141
Iteration: 5, Func. Count: 30, Neg. LLF: 157.30327856272058
Iteration: 6, Func. Count: 35, Neg. LLF: 157.11348673713533
Iteration: 7, Func. Count: 40, Neg. LLF: 156.9959609645264
Iteration: 8, Func. Count: 45, Neg. LLF: 156.95093197385054
Iteration: 9, Func. Count: 50, Neg. LLF: 156.9459862992428
Iteration: 10, Func. Count: 55, Neg. LLF: 156.94588106026632
Iteration: 11, Func. Count: 59, Neg. LLF: 156.94588099663707
Optimization terminated successfully (Exit mode 0)
Current function value: 156.94588106026632
Iterations: 11
Function evaluations: 59
Gradient evaluations: 11
Iteration: 1, Func. Count: 7, Neg. LLF: 549.8336932425568
Iteration: 2, Func. Count: 14, Neg. LLF: 318.1528998673253
Iteration: 3, Func. Count: 23, Neg. LLF: 154.67181643173697
Iteration: 4, Func. Count: 30, Neg. LLF: 162.9388040955962
Iteration: 5, Func. Count: 37, Neg. LLF: 151.62418662066767
Iteration: 6, Func. Count: 43, Neg. LLF: 152.96898437871917
Iteration: 7, Func. Count: 50, Neg. LLF: 150.4125727463049
Iteration: 8, Func. Count: 57, Neg. LLF: 149.89321496366466
Iteration: 9, Func. Count: 64, Neg. LLF: 149.6636642169654
Iteration: 10, Func. Count: 70, Neg. LLF: 149.6624130432958
Iteration: 11, Func. Count: 76, Neg. LLF: 149.66213054380663
Iteration: 12, Func. Count: 82, Neg. LLF: 149.66208779748018
Iteration: 13, Func. Count: 88, Neg. LLF: 149.6620871271445
Optimization terminated successfully (Exit mode 0)
Current function value: 149.6620871271445
Iterations: 13
Function evaluations: 88
Gradient evaluations: 13
Iteration: 1, Func. Count: 8, Neg. LLF: 210.66927800157958
Iteration: 2, Func. Count: 16, Neg. LLF: 258.6236760393723
Iteration: 3, Func. Count: 24, Neg. LLF: 155.81891287301843
Iteration: 4, Func. Count: 31, Neg. LLF: 155.85747855603645
Iteration: 5, Func. Count: 39, Neg. LLF: 157.7562973949252
Iteration: 6, Func. Count: 47, Neg. LLF: 154.85878462889147
Iteration: 7, Func. Count: 54, Neg. LLF: 154.55976697635705
Iteration: 8, Func. Count: 61, Neg. LLF: 154.4068519075252
Iteration: 9, Func. Count: 68, Neg. LLF: 153.13810693046082
Iteration: 10, Func. Count: 75, Neg. LLF: 155.4515488638026
Iteration: 11, Func. Count: 84, Neg. LLF: 153.08038161568237
Iteration: 12, Func. Count: 92, Neg. LLF: 153.00756622377094
Iteration: 13, Func. Count: 99, Neg. LLF: 153.00576794277646
Iteration: 14, Func. Count: 106, Neg. LLF: 153.00576962466283
Iteration: 15, Func. Count: 113, Neg. LLF: 153.0056723228388
Iteration: 16, Func. Count: 120, Neg. LLF: 153.00566209264912
Optimization terminated successfully (Exit mode 0)
Current function value: 153.00567215878442
Iterations: 16
Function evaluations: 122
Gradient evaluations: 16
Iteration: 1, Func. Count: 9, Neg. LLF: 161.83889797500254
Iteration: 2, Func. Count: 18, Neg. LLF: 158.1156873431422
Iteration: 3, Func. Count: 27, Neg. LLF: 158.99043996020723
Iteration: 4, Func. Count: 36, Neg. LLF: 156.29086223615892
Iteration: 5, Func. Count: 45, Neg. LLF: 156.99362460694658
Iteration: 6, Func. Count: 54, Neg. LLF: 154.39741139028988
Iteration: 7, Func. Count: 62, Neg. LLF: 153.99436652939139
Iteration: 8, Func. Count: 70, Neg. LLF: 152.60360955838863
Iteration: 9, Func. Count: 78, Neg. LLF: 147.87710281357943
Iteration: 10, Func. Count: 86, Neg. LLF: 148.8020721282335
Iteration: 11, Func. Count: 95, Neg. LLF: 147.02686886574102
Iteration: 12, Func. Count: 103, Neg. LLF: 147.27188181252103
Iteration: 13, Func. Count: 112, Neg. LLF: 146.66701074797365
Iteration: 14, Func. Count: 120, Neg. LLF: 146.61106780768287
Iteration: 15, Func. Count: 128, Neg. LLF: 146.59461108044212
Iteration: 16, Func. Count: 136, Neg. LLF: 146.59372872590583
Iteration: 17, Func. Count: 144, Neg. LLF: 146.59370262918014
Iteration: 18, Func. Count: 152, Neg. LLF: 146.59365881683541
Iteration: 19, Func. Count: 160, Neg. LLF: 146.59365472336734
Optimization terminated successfully (Exit mode 0)
Current function value: 146.59365881280857
Iterations: 19
Function evaluations: 170
Gradient evaluations: 19
Iteration: 1, Func. Count: 10, Neg. LLF: 524.0673243613751
Iteration: 2, Func. Count: 21, Neg. LLF: 153.56413806675334
Iteration: 3, Func. Count: 30, Neg. LLF: 153.18323496467107
Iteration: 4, Func. Count: 39, Neg. LLF: 152.70035494179217
Iteration: 5, Func. Count: 48, Neg. LLF: 152.67467176745672
Iteration: 6, Func. Count: 58, Neg. LLF: 152.46286467179706
Iteration: 7, Func. Count: 67, Neg. LLF: 152.35345376017415
Iteration: 8, Func. Count: 76, Neg. LLF: 152.35445498340894
Iteration: 9, Func. Count: 86, Neg. LLF: 23970890.53101078
Iteration: 10, Func. Count: 98, Neg. LLF: 152.29663675918914
Iteration: 11, Func. Count: 107, Neg. LLF: 152.29550493818954
Iteration: 12, Func. Count: 116, Neg. LLF: 152.29545743066654
Iteration: 13, Func. Count: 125, Neg. LLF: 152.29545623493692
Iteration: 14, Func. Count: 133, Neg. LLF: 152.29545625169018
Optimization terminated successfully (Exit mode 0)
Current function value: 152.29545623493692
Iterations: 15
Function evaluations: 133
Gradient evaluations: 14
Iteration: 1, Func. Count: 7, Neg. LLF: 162.19302323687702
Iteration: 2, Func. Count: 14, Neg. LLF: 158.78308206104862
Iteration: 3, Func. Count: 21, Neg. LLF: 157.40004578576864
Iteration: 4, Func. Count: 27, Neg. LLF: 157.80802446284156
Iteration: 5, Func. Count: 35, Neg. LLF: 157.25565063151134
Iteration: 6, Func. Count: 41, Neg. LLF: 157.2270772824254
Iteration: 7, Func. Count: 47, Neg. LLF: 157.16378134051396
Iteration: 8, Func. Count: 53, Neg. LLF: 157.1101320287523
Iteration: 9, Func. Count: 59, Neg. LLF: 156.8470972349494
Iteration: 10, Func. Count: 65, Neg. LLF: 156.79325882613972
Iteration: 11, Func. Count: 71, Neg. LLF: 156.7617152549547
Iteration: 12, Func. Count: 77, Neg. LLF: 156.76026293521508
Iteration: 13, Func. Count: 83, Neg. LLF: 156.7602325040548
Iteration: 14, Func. Count: 88, Neg. LLF: 156.76023246932536
Optimization terminated successfully (Exit mode 0)
Current function value: 156.7602325040548
Iterations: 14
Function evaluations: 88
Gradient evaluations: 14
Iteration: 1, Func. Count: 8, Neg. LLF: 3724164.641255863
Iteration: 2, Func. Count: 17, Neg. LLF: 149.94098125246694
Iteration: 3, Func. Count: 24, Neg. LLF: 150.5418984512338
Iteration: 4, Func. Count: 32, Neg. LLF: 149.84088222227416
Iteration: 5, Func. Count: 39, Neg. LLF: 149.83540177656135
Iteration: 6, Func. Count: 46, Neg. LLF: 149.86564677141467
Iteration: 7, Func. Count: 56, Neg. LLF: 149.83580204926392
Iteration: 8, Func. Count: 64, Neg. LLF: 149.83551546707432
Iteration: 9, Func. Count: 70, Neg. LLF: 149.83551469308603
Optimization terminated successfully (Exit mode 0)
Current function value: 149.83551546707432
Iterations: 10
Function evaluations: 70
Gradient evaluations: 9
Iteration: 1, Func. Count: 9, Neg. LLF: 161.51058093377804
Iteration: 2, Func. Count: 18, Neg. LLF: 3946.262360762547
Iteration: 3, Func. Count: 28, Neg. LLF: 150.70385311038137
Iteration: 4, Func. Count: 36, Neg. LLF: 151.22045803020256
Iteration: 5, Func. Count: 45, Neg. LLF: 150.02508884321102
Iteration: 6, Func. Count: 53, Neg. LLF: 149.90751081283753
Iteration: 7, Func. Count: 61, Neg. LLF: 149.8005520566112
Iteration: 8, Func. Count: 69, Neg. LLF: 149.72724206916706
Iteration: 9, Func. Count: 87, Neg. LLF: 149.84617551872353
Iteration: 10, Func. Count: 95, Neg. LLF: 149.731493766181
Iteration: 11, Func. Count: 113, Neg. LLF: 149.80311915567884
Iteration: 12, Func. Count: 121, Neg. LLF: 149.72927708839418
Iteration: 13, Func. Count: 139, Neg. LLF: 3623267.05958734
Iteration: 14, Func. Count: 150, Neg. LLF: 149.8363333429463
Iteration: 15, Func. Count: 159, Neg. LLF: 149.8355241168308
Iteration: 16, Func. Count: 169, Neg. LLF: 149.83573038187373
Iteration: 17, Func. Count: 178, Neg. LLF: 149.83551957586351
Iteration: 18, Func. Count: 186, Neg. LLF: 149.83551565515648
Iteration: 19, Func. Count: 193, Neg. LLF: 149.8355148911772
Optimization terminated successfully (Exit mode 0)
Current function value: 149.83551565515648
Iterations: 20
Function evaluations: 193
Gradient evaluations: 19
Iteration: 1, Func. Count: 10, Neg. LLF: 4320728.022070363
Iteration: 2, Func. Count: 21, Neg. LLF: 161.31942330093378
Iteration: 3, Func. Count: 31, Neg. LLF: 152.0462747629189
Iteration: 4, Func. Count: 40, Neg. LLF: 151.30581514699543
Iteration: 5, Func. Count: 49, Neg. LLF: 151.61931983446155
Iteration: 6, Func. Count: 59, Neg. LLF: 150.29695949788623
Iteration: 7, Func. Count: 68, Neg. LLF: 149.9330948227807
Iteration: 8, Func. Count: 77, Neg. LLF: 149.84306213717943
Iteration: 9, Func. Count: 86, Neg. LLF: 149.83569467102285
Iteration: 10, Func. Count: 95, Neg. LLF: 160.88609952316713
Iteration: 11, Func. Count: 107, Neg. LLF: 149.83575897749418
Iteration: 12, Func. Count: 117, Neg. LLF: 149.83551833668443
Iteration: 13, Func. Count: 126, Neg. LLF: 149.83551625636332
Optimization terminated successfully (Exit mode 0)
Current function value: 149.83551625636332
Iterations: 14
Function evaluations: 126
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 4304505.984189705
Iteration: 2, Func. Count: 22, Neg. LLF: 152.16227412455586
Iteration: 3, Func. Count: 32, Neg. LLF: 148.01022703250987
Iteration: 4, Func. Count: 42, Neg. LLF: 146.31997764892404
Iteration: 5, Func. Count: 52, Neg. LLF: 145.93974189653034
Iteration: 6, Func. Count: 62, Neg. LLF: 145.92185025993479
Iteration: 7, Func. Count: 72, Neg. LLF: 145.91983115500702
Iteration: 8, Func. Count: 82, Neg. LLF: 145.91980779802645
Iteration: 9, Func. Count: 92, Neg. LLF: 145.91980498962116
Optimization terminated successfully (Exit mode 0)
Current function value: 145.91980779307428
Iterations: 9
Function evaluations: 102
Gradient evaluations: 9
Iteration: 1, Func. Count: 8, Neg. LLF: 159.0238481007866
Iteration: 2, Func. Count: 16, Neg. LLF: 163.99146855870904
Iteration: 3, Func. Count: 24, Neg. LLF: 151.232691733876
Iteration: 4, Func. Count: 31, Neg. LLF: 150.9947454369874
Iteration: 5, Func. Count: 38, Neg. LLF: 150.65036385192388
Iteration: 6, Func. Count: 45, Neg. LLF: 150.37779738010673
Iteration: 7, Func. Count: 52, Neg. LLF: 150.2314869252666
Iteration: 8, Func. Count: 59, Neg. LLF: 150.47547813765715
Iteration: 9, Func. Count: 69, Neg. LLF: 99432.414135447
Iteration: 10, Func. Count: 77, Neg. LLF: 149.4251812820794
Iteration: 11, Func. Count: 84, Neg. LLF: 149.23337149933266
Iteration: 12, Func. Count: 91, Neg. LLF: 149.12502558910145
Iteration: 13, Func. Count: 98, Neg. LLF: 149.08207904356323
Iteration: 14, Func. Count: 105, Neg. LLF: 149.10005534565036
Iteration: 15, Func. Count: 113, Neg. LLF: 149.06499078807298
Iteration: 16, Func. Count: 120, Neg. LLF: 149.06491748575155
Iteration: 17, Func. Count: 127, Neg. LLF: 149.06490458005354
Iteration: 18, Func. Count: 134, Neg. LLF: 149.06490291420488
Iteration: 19, Func. Count: 140, Neg. LLF: 149.06490285592864
Optimization terminated successfully (Exit mode 0)
Current function value: 149.06490291420488
Iterations: 19
Function evaluations: 140
Gradient evaluations: 19
Iteration: 1, Func. Count: 9, Neg. LLF: 166.45985865814757
Iteration: 2, Func. Count: 18, Neg. LLF: 162.63890267565372
Iteration: 3, Func. Count: 27, Neg. LLF: 151.57203882542765
Iteration: 4, Func. Count: 35, Neg. LLF: 150.77064371809928
Iteration: 5, Func. Count: 43, Neg. LLF: 149.2675013079601
Iteration: 6, Func. Count: 51, Neg. LLF: 149.21701567050033
Iteration: 7, Func. Count: 59, Neg. LLF: 149.19175701220482
Iteration: 8, Func. Count: 67, Neg. LLF: 149.19146982187675
Iteration: 9, Func. Count: 75, Neg. LLF: 149.19146905848834
Optimization terminated successfully (Exit mode 0)
Current function value: 149.19146905848834
Iterations: 9
Function evaluations: 75
Gradient evaluations: 9
Iteration: 1, Func. Count: 10, Neg. LLF: 2570677.1731377477
Iteration: 2, Func. Count: 21, Neg. LLF: 153.64694908072047
Iteration: 3, Func. Count: 31, Neg. LLF: 147.8325642441178
Iteration: 4, Func. Count: 40, Neg. LLF: 147.8396197506149
Iteration: 5, Func. Count: 50, Neg. LLF: 147.71866072211216
Iteration: 6, Func. Count: 59, Neg. LLF: 147.70097321992415
Iteration: 7, Func. Count: 68, Neg. LLF: 147.70104884929094
Iteration: 8, Func. Count: 78, Neg. LLF: 147.70048454021708
Iteration: 9, Func. Count: 87, Neg. LLF: 147.70647159934686
Iteration: 10, Func. Count: 99, Neg. LLF: 147.70081314444352
Iteration: 11, Func. Count: 107, Neg. LLF: 147.7008125947502
Optimization terminated successfully (Exit mode 0)
Current function value: 147.70081314444352
Iterations: 12
Function evaluations: 107
Gradient evaluations: 11
Iteration: 1, Func. Count: 11, Neg. LLF: 2699883.807908927
Iteration: 2, Func. Count: 22, Neg. LLF: 155.82199497575078
Iteration: 3, Func. Count: 33, Neg. LLF: 150.10086389478798
Iteration: 4, Func. Count: 43, Neg. LLF: 151.14559438127654
Iteration: 5, Func. Count: 54, Neg. LLF: 160.61422341721178
Iteration: 6, Func. Count: 65, Neg. LLF: 157.452857041558
Iteration: 7, Func. Count: 76, Neg. LLF: 148.13338293592133
Iteration: 8, Func. Count: 86, Neg. LLF: 148.15882708662463
Iteration: 9, Func. Count: 97, Neg. LLF: 148.25549734144303
Iteration: 10, Func. Count: 108, Neg. LLF: 148.03256839868993
Iteration: 11, Func. Count: 118, Neg. LLF: 148.0321350217942
Iteration: 12, Func. Count: 128, Neg. LLF: 148.03209920838066
Iteration: 13, Func. Count: 138, Neg. LLF: 148.03210085649363
Optimization terminated successfully (Exit mode 0)
Current function value: 148.0320992104803
Iterations: 13
Function evaluations: 148
Gradient evaluations: 13
Iteration: 1, Func. Count: 12, Neg. LLF: 2676003.656283307
Iteration: 2, Func. Count: 24, Neg. LLF: 175.80003395947782
Iteration: 3, Func. Count: 36, Neg. LLF: 145.3166370113008
Iteration: 4, Func. Count: 47, Neg. LLF: 143.31584147455806
Iteration: 5, Func. Count: 58, Neg. LLF: 143.27925855534997
Iteration: 6, Func. Count: 70, Neg. LLF: 143.09417281184417
Iteration: 7, Func. Count: 81, Neg. LLF: 143.0885906861675
Iteration: 8, Func. Count: 92, Neg. LLF: 143.08827312280658
Iteration: 9, Func. Count: 103, Neg. LLF: 143.08827367443652
Optimization terminated successfully (Exit mode 0)
Current function value: 143.08827367443652
Iterations: 9
Function evaluations: 103
Gradient evaluations: 9
Iteration: 1, Func. Count: 9, Neg. LLF: 157.8445805945752
Iteration: 2, Func. Count: 17, Neg. LLF: 157.3628998059361
Iteration: 3, Func. Count: 26, Neg. LLF: 151.847652595347
Iteration: 4, Func. Count: 35, Neg. LLF: 150.92213637096114
Iteration: 5, Func. Count: 43, Neg. LLF: 152.9239277371376
Iteration: 6, Func. Count: 52, Neg. LLF: 150.3392913490118
Iteration: 7, Func. Count: 60, Neg. LLF: 2771.1408333578233
Iteration: 8, Func. Count: 69, Neg. LLF: 176.64721646716492
Iteration: 9, Func. Count: 78, Neg. LLF: 256.5952150308697
Iteration: 10, Func. Count: 87, Neg. LLF: 150.54371838133113
Iteration: 11, Func. Count: 96, Neg. LLF: 150.7780189401528
Iteration: 12, Func. Count: 105, Neg. LLF: 149.08178774273068
Iteration: 13, Func. Count: 113, Neg. LLF: 149.06715925398188
Iteration: 14, Func. Count: 121, Neg. LLF: 149.0682335369595
Iteration: 15, Func. Count: 130, Neg. LLF: 149.06496547209426
Iteration: 16, Func. Count: 138, Neg. LLF: 149.06491593297133
Iteration: 17, Func. Count: 146, Neg. LLF: 149.06490306448498
Iteration: 18, Func. Count: 153, Neg. LLF: 149.06490302244922
Optimization terminated successfully (Exit mode 0)
Current function value: 149.06490306448498
Iterations: 18
Function evaluations: 153
Gradient evaluations: 18
Iteration: 1, Func. Count: 10, Neg. LLF: 441003.0798118459
Iteration: 2, Func. Count: 21, Neg. LLF: 151.6615354745274
Iteration: 3, Func. Count: 30, Neg. LLF: 151.1300175726573
Iteration: 4, Func. Count: 39, Neg. LLF: 149.27752549935963
Iteration: 5, Func. Count: 48, Neg. LLF: 149.20852920749212
Iteration: 6, Func. Count: 57, Neg. LLF: 149.1935622300229
Iteration: 7, Func. Count: 66, Neg. LLF: 149.1929277511922
Iteration: 8, Func. Count: 75, Neg. LLF: 149.19184689150086
Iteration: 9, Func. Count: 84, Neg. LLF: 149.19251647322355
Iteration: 10, Func. Count: 94, Neg. LLF: 149.19146846448552
Iteration: 11, Func. Count: 102, Neg. LLF: 149.19146756525103
Optimization terminated successfully (Exit mode 0)
Current function value: 149.19146846448552
Iterations: 12
Function evaluations: 102
Gradient evaluations: 11
Iteration: 1, Func. Count: 11, Neg. LLF: 2680150.5868652454
Iteration: 2, Func. Count: 23, Neg. LLF: 159.51577362971003
Iteration: 3, Func. Count: 34, Neg. LLF: 147.8860590960869
Iteration: 4, Func. Count: 44, Neg. LLF: 147.80869543868212
Iteration: 5, Func. Count: 54, Neg. LLF: 147.71181210092738
Iteration: 6, Func. Count: 64, Neg. LLF: 147.70197437505675
Iteration: 7, Func. Count: 74, Neg. LLF: 147.70124459310478
Iteration: 8, Func. Count: 84, Neg. LLF: 147.70088209423554
Iteration: 9, Func. Count: 94, Neg. LLF: 147.7010127126931
Iteration: 10, Func. Count: 105, Neg. LLF: 147.70081524522513
Iteration: 11, Func. Count: 115, Neg. LLF: 147.7008465744128
Iteration: 12, Func. Count: 126, Neg. LLF: 147.7008131192563
Optimization terminated successfully (Exit mode 0)
Current function value: 147.7008131192563
Iterations: 13
Function evaluations: 126
Gradient evaluations: 12
Iteration: 1, Func. Count: 12, Neg. LLF: 2739791.8642281364
Iteration: 2, Func. Count: 24, Neg. LLF: 158.41256272124156
Iteration: 3, Func. Count: 36, Neg. LLF: 151.63285395391685
Iteration: 4, Func. Count: 48, Neg. LLF: 157.1650858058196
Iteration: 5, Func. Count: 60, Neg. LLF: 148.25990751022067
Iteration: 6, Func. Count: 71, Neg. LLF: 186.8135966874942
Iteration: 7, Func. Count: 84, Neg. LLF: 148.16586395191172
Iteration: 8, Func. Count: 95, Neg. LLF: 148.0482907151347
Iteration: 9, Func. Count: 106, Neg. LLF: 148.0391348627596
Iteration: 10, Func. Count: 117, Neg. LLF: 148.03301313933724
Iteration: 11, Func. Count: 128, Neg. LLF: 148.03226135796302
Iteration: 12, Func. Count: 139, Neg. LLF: 148.03200591932256
Iteration: 13, Func. Count: 150, Neg. LLF: 148.03204529464932
Iteration: 14, Func. Count: 171, Neg. LLF: 148.03203242293733
Iteration: 15, Func. Count: 192, Neg. LLF: 148.03252789181482
Iteration: 16, Func. Count: 205, Neg. LLF: 148.03311406732055
Iteration: 17, Func. Count: 218, Neg. LLF: 148.03210454563137
Iteration: 18, Func. Count: 230, Neg. LLF: 148.03210164284957
Iteration: 19, Func. Count: 250, Neg. LLF: 148.03202029538187
Optimization terminated successfully (Exit mode 0)
Current function value: 148.03202084472932
Iterations: 23
Function evaluations: 250
Gradient evaluations: 19
Iteration: 1, Func. Count: 13, Neg. LLF: 2705386.137763789
Iteration: 2, Func. Count: 26, Neg. LLF: 179.50462134150874
Iteration: 3, Func. Count: 39, Neg. LLF: 145.43560847176488
Iteration: 4, Func. Count: 51, Neg. LLF: 143.37839970908104
Iteration: 5, Func. Count: 63, Neg. LLF: 143.32639575487144
Iteration: 6, Func. Count: 76, Neg. LLF: 143.0928492924227
Iteration: 7, Func. Count: 88, Neg. LLF: 143.08893373051248
Iteration: 8, Func. Count: 100, Neg. LLF: 143.08827923466623
Iteration: 9, Func. Count: 112, Neg. LLF: 143.08827631800875
Iteration: 10, Func. Count: 124, Neg. LLF: 143.08827398511278
Iteration: 11, Func. Count: 135, Neg. LLF: 143.08827349724038
Optimization terminated successfully (Exit mode 0)
Current function value: 143.08827398511278
Iterations: 11
Function evaluations: 135
Gradient evaluations: 11
Iteration: 1, Func. Count: 10, Neg. LLF: 156.8446835882218
Iteration: 2, Func. Count: 19, Neg. LLF: 159.5790600995827
Iteration: 3, Func. Count: 29, Neg. LLF: 151.37662751377525
Iteration: 4, Func. Count: 39, Neg. LLF: 150.79502201162882
Iteration: 5, Func. Count: 48, Neg. LLF: 151.12169309015889
Iteration: 6, Func. Count: 58, Neg. LLF: 150.84262538041574
Iteration: 7, Func. Count: 68, Neg. LLF: 149.71197911691272
Iteration: 8, Func. Count: 77, Neg. LLF: 379.70419497073357
Iteration: 9, Func. Count: 87, Neg. LLF: 150.91903293511749
Iteration: 10, Func. Count: 97, Neg. LLF: 151.43690916630686
Iteration: 11, Func. Count: 107, Neg. LLF: 149.1630031193797
Iteration: 12, Func. Count: 117, Neg. LLF: 149.10044710908923
Iteration: 13, Func. Count: 127, Neg. LLF: 149.06579488955865
Iteration: 14, Func. Count: 136, Neg. LLF: 149.06507720938745
Iteration: 15, Func. Count: 145, Neg. LLF: 149.06493700359601
Iteration: 16, Func. Count: 154, Neg. LLF: 149.0649068177474
Iteration: 17, Func. Count: 163, Neg. LLF: 149.0649031557359
Iteration: 18, Func. Count: 171, Neg. LLF: 149.06490311494204
Optimization terminated successfully (Exit mode 0)
Current function value: 149.0649031557359
Iterations: 18
Function evaluations: 171
Gradient evaluations: 18
Iteration: 1, Func. Count: 11, Neg. LLF: 21428349.440340314
Iteration: 2, Func. Count: 23, Neg. LLF: 154.72138954602954
Iteration: 3, Func. Count: 34, Neg. LLF: 148.25455855080187
Iteration: 4, Func. Count: 44, Neg. LLF: 148.45156856744754
Iteration: 5, Func. Count: 55, Neg. LLF: 148.0555182460136
Iteration: 6, Func. Count: 65, Neg. LLF: 148.01999104387644
Iteration: 7, Func. Count: 75, Neg. LLF: 148.019414304976
Iteration: 8, Func. Count: 85, Neg. LLF: 148.01896089367656
Iteration: 9, Func. Count: 95, Neg. LLF: 148.04112245053065
Iteration: 10, Func. Count: 108, Neg. LLF: 148.0191299855571
Iteration: 11, Func. Count: 119, Neg. LLF: 148.01913655990995
Iteration: 12, Func. Count: 132, Neg. LLF: 148.018978912066
Optimization terminated successfully (Exit mode 0)
Current function value: 148.01897996422667
Iterations: 16
Function evaluations: 132
Gradient evaluations: 12
Iteration: 1, Func. Count: 12, Neg. LLF: 687913.4685164632
Iteration: 2, Func. Count: 25, Neg. LLF: 178.73944007523394
Iteration: 3, Func. Count: 37, Neg. LLF: 148.43178472184258
Iteration: 4, Func. Count: 48, Neg. LLF: 150.0520501202972
Iteration: 5, Func. Count: 61, Neg. LLF: 148.24139030099525
Iteration: 6, Func. Count: 73, Neg. LLF: 147.7083779637488
Iteration: 7, Func. Count: 84, Neg. LLF: 147.7035385912564
Iteration: 8, Func. Count: 95, Neg. LLF: 147.70077836656344
Iteration: 9, Func. Count: 106, Neg. LLF: 147.70071356478613
Iteration: 10, Func. Count: 117, Neg. LLF: 147.70042731087176
Iteration: 11, Func. Count: 138, Neg. LLF: 147.70070658373837
Iteration: 12, Func. Count: 150, Neg. LLF: 147.70077713818313
Iteration: 13, Func. Count: 161, Neg. LLF: 147.70079309234305
Iteration: 14, Func. Count: 182, Neg. LLF: 147.70075311132572
Iteration: 15, Func. Count: 203, Neg. LLF: 147.7003013202775
Iteration: 16, Func. Count: 224, Neg. LLF: 147.69267633247244
Iteration: 17, Func. Count: 245, Neg. LLF: 147.69944342113652
Iteration: 18, Func. Count: 266, Neg. LLF: 147.6682076339847
Iteration: 19, Func. Count: 287, Neg. LLF: 147.70080252907377
Iteration: 20, Func. Count: 298, Neg. LLF: 147.70081407310718
Iteration: 21, Func. Count: 309, Neg. LLF: 147.70081340399665
Optimization terminated successfully (Exit mode 0)
Current function value: 147.70081340399665
Iterations: 21
Function evaluations: 309
Gradient evaluations: 21
Iteration: 1, Func. Count: 13, Neg. LLF: 2804092.2681774846
Iteration: 2, Func. Count: 26, Neg. LLF: 160.72595954023436
Iteration: 3, Func. Count: 39, Neg. LLF: 153.35245263249166
Iteration: 4, Func. Count: 52, Neg. LLF: 155.61939194440862
Iteration: 5, Func. Count: 65, Neg. LLF: 148.39967924431346
Iteration: 6, Func. Count: 77, Neg. LLF: 170.83846141527914
Iteration: 7, Func. Count: 91, Neg. LLF: 150.73410815058685
Iteration: 8, Func. Count: 104, Neg. LLF: 148.05521585332815
Iteration: 9, Func. Count: 116, Neg. LLF: 148.04005082292855
Iteration: 10, Func. Count: 128, Neg. LLF: 148.03266227231154
Iteration: 11, Func. Count: 140, Neg. LLF: 148.03204507204714
Iteration: 12, Func. Count: 152, Neg. LLF: 148.0320517450801
Iteration: 13, Func. Count: 174, Neg. LLF: 148.03171059232145
Iteration: 14, Func. Count: 196, Neg. LLF: 148.03199060239342
Iteration: 15, Func. Count: 218, Neg. LLF: 148.03205734890417
Iteration: 16, Func. Count: 240, Neg. LLF: 148.03206609603163
Iteration: 17, Func. Count: 262, Neg. LLF: 148.0595433629327
Iteration: 18, Func. Count: 277, Neg. LLF: 148.0326483315968
Iteration: 19, Func. Count: 291, Neg. LLF: 148.03210423154783
Iteration: 20, Func. Count: 304, Neg. LLF: 148.03210158171987
Iteration: 21, Func. Count: 326, Neg. LLF: 148.03210807745523
Iteration: 22, Func. Count: 348, Neg. LLF: 148.0326035695802
Iteration: 23, Func. Count: 364, Neg. LLF: 148.0321016839651
Iteration: 24, Func. Count: 375, Neg. LLF: 148.03210113460548
Optimization terminated successfully (Exit mode 0)
Current function value: 148.0321016839651
Iterations: 25
Function evaluations: 375
Gradient evaluations: 24
Iteration: 1, Func. Count: 14, Neg. LLF: 2734747.939273044
Iteration: 2, Func. Count: 28, Neg. LLF: 186.97247488103918
Iteration: 3, Func. Count: 42, Neg. LLF: 145.56906190049125
Iteration: 4, Func. Count: 55, Neg. LLF: 143.44926642328863
Iteration: 5, Func. Count: 68, Neg. LLF: 143.41764306882536
Iteration: 6, Func. Count: 82, Neg. LLF: 143.0950278093554
Iteration: 7, Func. Count: 95, Neg. LLF: 143.0891288405586
Iteration: 8, Func. Count: 108, Neg. LLF: 143.0882812445502
Iteration: 9, Func. Count: 121, Neg. LLF: 143.0882736293599
Iteration: 10, Func. Count: 133, Neg. LLF: 143.08827314150255
Optimization terminated successfully (Exit mode 0)
Current function value: 143.0882736293599
Iterations: 10
Function evaluations: 133
Gradient evaluations: 10
Iteration: 1, Func. Count: 7, Neg. LLF: 157.6010514197516
Iteration: 2, Func. Count: 13, Neg. LLF: 159.8150974860669
Iteration: 3, Func. Count: 22, Neg. LLF: 158.5936885285408
Iteration: 4, Func. Count: 29, Neg. LLF: 157.3883535443311
Iteration: 5, Func. Count: 35, Neg. LLF: 157.29108509529507
Iteration: 6, Func. Count: 41, Neg. LLF: 157.01395094887215
Iteration: 7, Func. Count: 47, Neg. LLF: 156.9519931913598
Iteration: 8, Func. Count: 53, Neg. LLF: 156.9459118000457
Iteration: 9, Func. Count: 59, Neg. LLF: 156.945890001286
Iteration: 10, Func. Count: 65, Neg. LLF: 156.94588067806532
Iteration: 11, Func. Count: 70, Neg. LLF: 156.94588084183465
Optimization terminated successfully (Exit mode 0)
Current function value: 156.94588067806532
Iterations: 11
Function evaluations: 70
Gradient evaluations: 11
Iteration: 1, Func. Count: 8, Neg. LLF: 207.08464569247343
Iteration: 2, Func. Count: 16, Neg. LLF: 195.63938857500509
Iteration: 3, Func. Count: 25, Neg. LLF: 618.0540940069808
Iteration: 4, Func. Count: 33, Neg. LLF: 146.18486456287917
Iteration: 5, Func. Count: 40, Neg. LLF: 149.38677589879762
Iteration: 6, Func. Count: 48, Neg. LLF: 157.5266597180479
Iteration: 7, Func. Count: 58, Neg. LLF: 145.73335417920546
Iteration: 8, Func. Count: 66, Neg. LLF: 145.6648144527081
Iteration: 9, Func. Count: 73, Neg. LLF: 145.65453711396572
Iteration: 10, Func. Count: 80, Neg. LLF: 145.64302482297418
Iteration: 11, Func. Count: 87, Neg. LLF: 145.41376475205794
Iteration: 12, Func. Count: 94, Neg. LLF: 145.33298009808715
Iteration: 13, Func. Count: 101, Neg. LLF: 145.152469658935
Iteration: 14, Func. Count: 108, Neg. LLF: 145.14878747164715
Iteration: 15, Func. Count: 115, Neg. LLF: 145.14607190963605
Iteration: 16, Func. Count: 122, Neg. LLF: 145.14517956213732
Iteration: 17, Func. Count: 129, Neg. LLF: 145.1451611340341
Iteration: 18, Func. Count: 135, Neg. LLF: 145.14516065645844
Optimization terminated successfully (Exit mode 0)
Current function value: 145.1451611340341
Iterations: 18
Function evaluations: 135
Gradient evaluations: 18
Iteration: 1, Func. Count: 9, Neg. LLF: 251.66367386201827
Iteration: 2, Func. Count: 18, Neg. LLF: 218.30855187197716
Iteration: 3, Func. Count: 28, Neg. LLF: 176.72799841366236
Iteration: 4, Func. Count: 37, Neg. LLF: 153.00248994112755
Iteration: 5, Func. Count: 45, Neg. LLF: 150.66000608628244
Iteration: 6, Func. Count: 53, Neg. LLF: 154.07931286269317
Iteration: 7, Func. Count: 62, Neg. LLF: 146.1834688169926
Iteration: 8, Func. Count: 70, Neg. LLF: 155.95459365373415
Iteration: 9, Func. Count: 79, Neg. LLF: 150.91858751282132
Iteration: 10, Func. Count: 88, Neg. LLF: 146.6047322475411
Iteration: 11, Func. Count: 97, Neg. LLF: 144.84128641881406
Iteration: 12, Func. Count: 106, Neg. LLF: 144.4724618514461
Iteration: 13, Func. Count: 115, Neg. LLF: 142.50211404894412
Iteration: 14, Func. Count: 123, Neg. LLF: 145.36845389815423
Iteration: 15, Func. Count: 132, Neg. LLF: 141.82415794531596
Iteration: 16, Func. Count: 140, Neg. LLF: 141.78752098002573
Iteration: 17, Func. Count: 148, Neg. LLF: 141.78466038215407
Iteration: 18, Func. Count: 156, Neg. LLF: 141.77988705328224
Iteration: 19, Func. Count: 164, Neg. LLF: 141.77711264387202
Iteration: 20, Func. Count: 172, Neg. LLF: 141.77669182058665
Iteration: 21, Func. Count: 180, Neg. LLF: 141.7766776775234
Iteration: 22, Func. Count: 188, Neg. LLF: 141.7766565689042
Iteration: 23, Func. Count: 196, Neg. LLF: 141.77663312754805
Iteration: 24, Func. Count: 204, Neg. LLF: 141.7766311943281
Iteration: 25, Func. Count: 212, Neg. LLF: 141.79390844683888
Optimization terminated successfully (Exit mode 0)
Current function value: 141.77663099669246
Iterations: 26
Function evaluations: 214
Gradient evaluations: 25
Iteration: 1, Func. Count: 10, Neg. LLF: 510.7936430543349
Iteration: 2, Func. Count: 21, Neg. LLF: 153.8129224977822
Iteration: 3, Func. Count: 30, Neg. LLF: 153.24154815406098
Iteration: 4, Func. Count: 39, Neg. LLF: 153.35495866762122
Iteration: 5, Func. Count: 49, Neg. LLF: 152.92319166425838
Iteration: 6, Func. Count: 58, Neg. LLF: 152.9182016074723
Iteration: 7, Func. Count: 67, Neg. LLF: 152.91335597812466
Iteration: 8, Func. Count: 76, Neg. LLF: 152.33649432826863
Iteration: 9, Func. Count: 85, Neg. LLF: 24161424.47126171
Iteration: 10, Func. Count: 97, Neg. LLF: 152.45827202970654
Iteration: 11, Func. Count: 107, Neg. LLF: 152.29545623780757
Iteration: 12, Func. Count: 116, Neg. LLF: 152.3274954935148
Optimization terminated successfully (Exit mode 0)
Current function value: 152.29545623601382
Iterations: 14
Function evaluations: 120
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 521.3012560175118
Iteration: 2, Func. Count: 23, Neg. LLF: 153.39143849270445
Iteration: 3, Func. Count: 33, Neg. LLF: 153.4980774626797
Iteration: 4, Func. Count: 44, Neg. LLF: 152.29804434820974
Iteration: 5, Func. Count: 54, Neg. LLF: 151.63393588340352
Iteration: 6, Func. Count: 64, Neg. LLF: 160.69668148914158
Iteration: 7, Func. Count: 76, Neg. LLF: 151.61843713827378
Iteration: 8, Func. Count: 87, Neg. LLF: 151.6039399233244
Iteration: 9, Func. Count: 97, Neg. LLF: 151.60393609288164
Iteration: 10, Func. Count: 106, Neg. LLF: 151.60393609288155
Optimization terminated successfully (Exit mode 0)
Current function value: 151.60393609288164
Iterations: 11
Function evaluations: 106
Gradient evaluations: 10
Iteration: 1, Func. Count: 8, Neg. LLF: 159.1492316818804
Iteration: 2, Func. Count: 15, Neg. LLF: 157.70934244149214
Iteration: 3, Func. Count: 22, Neg. LLF: 159.76953856860018
Iteration: 4, Func. Count: 34, Neg. LLF: 163.41665719650672
Iteration: 5, Func. Count: 42, Neg. LLF: 157.57374141587846
Iteration: 6, Func. Count: 49, Neg. LLF: 157.45714727754563
Iteration: 7, Func. Count: 56, Neg. LLF: 157.31350223349736
Iteration: 8, Func. Count: 63, Neg. LLF: 157.20123198450352
Iteration: 9, Func. Count: 71, Neg. LLF: 156.9398560136937
Iteration: 10, Func. Count: 78, Neg. LLF: 156.85276274576808
Iteration: 11, Func. Count: 85, Neg. LLF: 156.83337692932548
Iteration: 12, Func. Count: 92, Neg. LLF: 156.80152721638547
Iteration: 13, Func. Count: 99, Neg. LLF: 156.76364954054887
Iteration: 14, Func. Count: 106, Neg. LLF: 156.76071070928566
Iteration: 15, Func. Count: 113, Neg. LLF: 156.76026852780996
Iteration: 16, Func. Count: 120, Neg. LLF: 156.76024115872718
Iteration: 17, Func. Count: 127, Neg. LLF: 156.76023235491536
Iteration: 18, Func. Count: 133, Neg. LLF: 156.76023232020563
Optimization terminated successfully (Exit mode 0)
Current function value: 156.76023235491536
Iterations: 18
Function evaluations: 133
Gradient evaluations: 18
Iteration: 1, Func. Count: 9, Neg. LLF: 3728627.35222935
Iteration: 2, Func. Count: 19, Neg. LLF: 149.9721486561029
Iteration: 3, Func. Count: 27, Neg. LLF: 150.69566034554407
Iteration: 4, Func. Count: 36, Neg. LLF: 149.84772094131336
Iteration: 5, Func. Count: 44, Neg. LLF: 149.83792221360787
Iteration: 6, Func. Count: 52, Neg. LLF: 149.83550431669244
Iteration: 7, Func. Count: 60, Neg. LLF: 149.88724396360098
Optimization terminated successfully (Exit mode 0)
Current function value: 149.83550429022725
Iterations: 8
Function evaluations: 63
Gradient evaluations: 7
Iteration: 1, Func. Count: 10, Neg. LLF: 161.48118057874441
Iteration: 2, Func. Count: 20, Neg. LLF: 186792.21484928732
Iteration: 3, Func. Count: 31, Neg. LLF: 150.48568812086617
Iteration: 4, Func. Count: 40, Neg. LLF: 151.47947737598872
Iteration: 5, Func. Count: 50, Neg. LLF: 149.92730365010783
Iteration: 6, Func. Count: 59, Neg. LLF: 149.79983455615488
Iteration: 7, Func. Count: 68, Neg. LLF: 4185818.920850314
Iteration: 8, Func. Count: 80, Neg. LLF: 151.4513378157523
Iteration: 9, Func. Count: 90, Neg. LLF: 149.8355214823721
Iteration: 10, Func. Count: 99, Neg. LLF: 149.8355157835001
Iteration: 11, Func. Count: 107, Neg. LLF: 149.83551501924936
Optimization terminated successfully (Exit mode 0)
Current function value: 149.8355157835001
Iterations: 12
Function evaluations: 107
Gradient evaluations: 11
Iteration: 1, Func. Count: 11, Neg. LLF: 4301574.256586385
Iteration: 2, Func. Count: 23, Neg. LLF: 161.1031316673371
Iteration: 3, Func. Count: 34, Neg. LLF: 151.8315581260506
Iteration: 4, Func. Count: 44, Neg. LLF: 151.1373207567818
Iteration: 5, Func. Count: 54, Neg. LLF: 151.65809924871957
Iteration: 6, Func. Count: 65, Neg. LLF: 150.2597898602671
Iteration: 7, Func. Count: 75, Neg. LLF: 149.92158222701212
Iteration: 8, Func. Count: 85, Neg. LLF: 149.8783817642792
Iteration: 9, Func. Count: 95, Neg. LLF: 149.77319454885566
Iteration: 10, Func. Count: 105, Neg. LLF: 166.3516339134891
Iteration: 11, Func. Count: 125, Neg. LLF: 3720933.9086416247
Iteration: 12, Func. Count: 138, Neg. LLF: 149.8955186753532
Iteration: 13, Func. Count: 149, Neg. LLF: 149.83551981349157
Iteration: 14, Func. Count: 160, Neg. LLF: 149.8358722998244
Iteration: 15, Func. Count: 171, Neg. LLF: 149.83559364107737
Iteration: 16, Func. Count: 182, Neg. LLF: 149.8355173110626
Iteration: 17, Func. Count: 193, Neg. LLF: 149.83551573948867
Iteration: 18, Func. Count: 202, Neg. LLF: 149.83551498180012
Optimization terminated successfully (Exit mode 0)
Current function value: 149.83551573948867
Iterations: 19
Function evaluations: 202
Gradient evaluations: 18
Iteration: 1, Func. Count: 12, Neg. LLF: 4300730.60401676
Iteration: 2, Func. Count: 24, Neg. LLF: 154.03300038575586
Iteration: 3, Func. Count: 36, Neg. LLF: 149.1070343158748
Iteration: 4, Func. Count: 47, Neg. LLF: 147.9249352502085
Iteration: 5, Func. Count: 58, Neg. LLF: 146.98378912831328
Iteration: 6, Func. Count: 69, Neg. LLF: 146.6741733211207
Iteration: 7, Func. Count: 80, Neg. LLF: 146.02341482246428
Iteration: 8, Func. Count: 91, Neg. LLF: 145.93026845717532
Iteration: 9, Func. Count: 102, Neg. LLF: 145.9201371742791
Iteration: 10, Func. Count: 113, Neg. LLF: 145.91972946949303
Iteration: 11, Func. Count: 124, Neg. LLF: 145.9197105269311
Iteration: 12, Func. Count: 145, Neg. LLF: 145.93053882657992
Iteration: 13, Func. Count: 158, Neg. LLF: 145.91981745596777
Iteration: 14, Func. Count: 170, Neg. LLF: 145.9204896032962
Iteration: 15, Func. Count: 183, Neg. LLF: 145.91987189235988
Iteration: 16, Func. Count: 197, Neg. LLF: 145.91982403527814
Iteration: 17, Func. Count: 210, Neg. LLF: 145.91980761571278
Iteration: 18, Func. Count: 221, Neg. LLF: 145.91976815213943
Optimization terminated successfully (Exit mode 0)
Current function value: 145.91976849018351
Iterations: 22
Function evaluations: 221
Gradient evaluations: 18
Iteration: 1, Func. Count: 9, Neg. LLF: 154.64176865578804
Iteration: 2, Func. Count: 17, Neg. LLF: 161.00123592250122
Iteration: 3, Func. Count: 26, Neg. LLF: 152.85666614702666
Iteration: 4, Func. Count: 37, Neg. LLF: 153.8153276181956
Iteration: 5, Func. Count: 46, Neg. LLF: 150.7101800132898
Iteration: 6, Func. Count: 54, Neg. LLF: 155.7915854852653
Iteration: 7, Func. Count: 64, Neg. LLF: 168.2192359948636
Iteration: 8, Func. Count: 73, Neg. LLF: 149.77325379126864
Iteration: 9, Func. Count: 81, Neg. LLF: 227.45329661221285
Iteration: 10, Func. Count: 90, Neg. LLF: 17398.93977219238
Iteration: 11, Func. Count: 99, Neg. LLF: 152.43931097130346
Iteration: 12, Func. Count: 108, Neg. LLF: 149.00042197868424
Iteration: 13, Func. Count: 116, Neg. LLF: 148.9778341080034
Iteration: 14, Func. Count: 124, Neg. LLF: 148.97234014267636
Iteration: 15, Func. Count: 132, Neg. LLF: 148.97225950843588
Iteration: 16, Func. Count: 140, Neg. LLF: 148.97225203749986
Iteration: 17, Func. Count: 147, Neg. LLF: 148.9722519762255
Optimization terminated successfully (Exit mode 0)
Current function value: 148.97225203749986
Iterations: 17
Function evaluations: 147
Gradient evaluations: 17
Iteration: 1, Func. Count: 10, Neg. LLF: 166.34064193241116
Iteration: 2, Func. Count: 20, Neg. LLF: 167.13007085682693
Iteration: 3, Func. Count: 30, Neg. LLF: 151.98120197150843
Iteration: 4, Func. Count: 39, Neg. LLF: 150.69624271121899
Iteration: 5, Func. Count: 48, Neg. LLF: 150.76091489544362
Iteration: 6, Func. Count: 58, Neg. LLF: 149.21611426191095
Iteration: 7, Func. Count: 67, Neg. LLF: 149.1916522200851
Iteration: 8, Func. Count: 76, Neg. LLF: 149.19146926085597
Iteration: 9, Func. Count: 85, Neg. LLF: 149.1914687260521
Optimization terminated successfully (Exit mode 0)
Current function value: 149.1914687260521
Iterations: 9
Function evaluations: 85
Gradient evaluations: 9
Iteration: 1, Func. Count: 11, Neg. LLF: 2569725.55142743
Iteration: 2, Func. Count: 23, Neg. LLF: 153.17391556665203
Iteration: 3, Func. Count: 34, Neg. LLF: 147.849059799442
Iteration: 4, Func. Count: 44, Neg. LLF: 147.87640682094658
Iteration: 5, Func. Count: 55, Neg. LLF: 147.7022629659995
Iteration: 6, Func. Count: 65, Neg. LLF: 147.70648770213384
Iteration: 7, Func. Count: 75, Neg. LLF: 147.69583635053363
Iteration: 8, Func. Count: 85, Neg. LLF: 147.70067780146138
Iteration: 9, Func. Count: 95, Neg. LLF: 147.69707379690232
Iteration: 10, Func. Count: 115, Neg. LLF: 147.69718288379417
Iteration: 11, Func. Count: 135, Neg. LLF: 147.75971346882682
Iteration: 12, Func. Count: 148, Neg. LLF: 147.70081310998665
Iteration: 13, Func. Count: 163, Neg. LLF: 147.70081305891236
Iteration: 14, Func. Count: 182, Neg. LLF: 147.70067327380278
Optimization terminated successfully (Exit mode 0)
Current function value: 147.70067382350578
Iterations: 18
Function evaluations: 182
Gradient evaluations: 14
Iteration: 1, Func. Count: 12, Neg. LLF: 2692267.460571445
Iteration: 2, Func. Count: 24, Neg. LLF: 155.44759849919302
Iteration: 3, Func. Count: 36, Neg. LLF: 151.58136356653725
Iteration: 4, Func. Count: 48, Neg. LLF: 150.89920149004
Iteration: 5, Func. Count: 60, Neg. LLF: 157.2320314177215
Iteration: 6, Func. Count: 72, Neg. LLF: 149.25272563095865
Iteration: 7, Func. Count: 83, Neg. LLF: 148.20941021649463
Iteration: 8, Func. Count: 94, Neg. LLF: 151.3517008323129
Iteration: 9, Func. Count: 107, Neg. LLF: 148.6617107854008
Iteration: 10, Func. Count: 119, Neg. LLF: 148.0366263224089
Iteration: 11, Func. Count: 130, Neg. LLF: 148.0325453929409
Iteration: 12, Func. Count: 141, Neg. LLF: 148.03212937612926
Iteration: 13, Func. Count: 152, Neg. LLF: 148.0320993618516
Iteration: 14, Func. Count: 163, Neg. LLF: 148.0321576387958
Optimization terminated successfully (Exit mode 0)
Current function value: 148.0320993837999
Iterations: 15
Function evaluations: 165
Gradient evaluations: 14
Iteration: 1, Func. Count: 13, Neg. LLF: 2674960.3443863825
Iteration: 2, Func. Count: 26, Neg. LLF: 175.53909255442994
Iteration: 3, Func. Count: 39, Neg. LLF: 145.36754798455829
Iteration: 4, Func. Count: 51, Neg. LLF: 143.37168304098637
Iteration: 5, Func. Count: 63, Neg. LLF: 143.32582616617472
Iteration: 6, Func. Count: 76, Neg. LLF: 143.09996060219737
Iteration: 7, Func. Count: 88, Neg. LLF: 143.08836282076825
Iteration: 8, Func. Count: 100, Neg. LLF: 143.0882742160818
Iteration: 9, Func. Count: 112, Neg. LLF: 143.08827580594385
Optimization terminated successfully (Exit mode 0)
Current function value: 143.0882743243118
Iterations: 9
Function evaluations: 113
Gradient evaluations: 9
Iteration: 1, Func. Count: 10, Neg. LLF: 153.34207697626047
Iteration: 2, Func. Count: 19, Neg. LLF: 163.43478668629743
Iteration: 3, Func. Count: 29, Neg. LLF: 159.13333586215086
Iteration: 4, Func. Count: 42, Neg. LLF: 150.85047518970714
Iteration: 5, Func. Count: 51, Neg. LLF: 153.60619665672786
Iteration: 6, Func. Count: 62, Neg. LLF: 150.58620100339553
Iteration: 7, Func. Count: 71, Neg. LLF: 150.0558086100233
Iteration: 8, Func. Count: 80, Neg. LLF: 237.04195769311895
Iteration: 9, Func. Count: 91, Neg. LLF: 178.18747659884525
Iteration: 10, Func. Count: 103, Neg. LLF: 149.38844847242953
Iteration: 11, Func. Count: 112, Neg. LLF: 155.4258125073842
Iteration: 12, Func. Count: 122, Neg. LLF: 148.98368293048267
Iteration: 13, Func. Count: 131, Neg. LLF: 148.96121561895697
Iteration: 14, Func. Count: 140, Neg. LLF: 148.9606328136302
Iteration: 15, Func. Count: 149, Neg. LLF: 148.96037569828752
Iteration: 16, Func. Count: 158, Neg. LLF: 148.96033557479063
Iteration: 17, Func. Count: 167, Neg. LLF: 148.96031547317898
Iteration: 18, Func. Count: 176, Neg. LLF: 148.96031405314105
Iteration: 19, Func. Count: 184, Neg. LLF: 148.96031410276916
Optimization terminated successfully (Exit mode 0)
Current function value: 148.96031405314105
Iterations: 19
Function evaluations: 184
Gradient evaluations: 19
Iteration: 1, Func. Count: 11, Neg. LLF: 439126.5801411233
Iteration: 2, Func. Count: 23, Neg. LLF: 151.98121249436076
Iteration: 3, Func. Count: 33, Neg. LLF: 150.82834287105743
Iteration: 4, Func. Count: 43, Neg. LLF: 150.38117187660737
Iteration: 5, Func. Count: 54, Neg. LLF: 149.20256415465812
Iteration: 6, Func. Count: 64, Neg. LLF: 149.1920892823941
Iteration: 7, Func. Count: 74, Neg. LLF: 149.19158381079419
Iteration: 8, Func. Count: 84, Neg. LLF: 149.73807952951915
Optimization terminated successfully (Exit mode 0)
Current function value: 149.19158307497756
Iterations: 9
Function evaluations: 87
Gradient evaluations: 8
Iteration: 1, Func. Count: 12, Neg. LLF: 2676065.4195230673
Iteration: 2, Func. Count: 25, Neg. LLF: 158.80831323052925
Iteration: 3, Func. Count: 37, Neg. LLF: 147.89936391416074
Iteration: 4, Func. Count: 48, Neg. LLF: 147.8278120368872
Iteration: 5, Func. Count: 59, Neg. LLF: 147.71569972177497
Iteration: 6, Func. Count: 70, Neg. LLF: 147.70363207144104
Iteration: 7, Func. Count: 81, Neg. LLF: 147.70140437534445
Iteration: 8, Func. Count: 92, Neg. LLF: 149.83380080741335
Iteration: 9, Func. Count: 106, Neg. LLF: 147.71674617984226
Iteration: 10, Func. Count: 118, Neg. LLF: 147.7008137737703
Iteration: 11, Func. Count: 129, Neg. LLF: 147.70081359268931
Optimization terminated successfully (Exit mode 0)
Current function value: 147.70081359268931
Iterations: 12
Function evaluations: 129
Gradient evaluations: 11
Iteration: 1, Func. Count: 13, Neg. LLF: 2730412.343035933
Iteration: 2, Func. Count: 26, Neg. LLF: 157.84615203919074
Iteration: 3, Func. Count: 39, Neg. LLF: 148.92391600911782
Iteration: 4, Func. Count: 51, Neg. LLF: 157.66784259489447
Iteration: 5, Func. Count: 65, Neg. LLF: 148.69788035302594
Iteration: 6, Func. Count: 77, Neg. LLF: 160.1314734204626
Iteration: 7, Func. Count: 91, Neg. LLF: 148.15744220435363
Iteration: 8, Func. Count: 103, Neg. LLF: 148.05675768949348
Iteration: 9, Func. Count: 115, Neg. LLF: 148.0345956781337
Iteration: 10, Func. Count: 127, Neg. LLF: 148.03250423153872
Iteration: 11, Func. Count: 139, Neg. LLF: 148.0321502735689
Iteration: 12, Func. Count: 151, Neg. LLF: 148.03212577340017
Iteration: 13, Func. Count: 163, Neg. LLF: 148.03208271602392
Iteration: 14, Func. Count: 174, Neg. LLF: 148.03208216667616
Optimization terminated successfully (Exit mode 0)
Current function value: 148.03208271602392
Iterations: 18
Function evaluations: 174
Gradient evaluations: 14
Iteration: 1, Func. Count: 14, Neg. LLF: 2703932.422348521
Iteration: 2, Func. Count: 28, Neg. LLF: 179.52199234383863
Iteration: 3, Func. Count: 42, Neg. LLF: 145.4940897502533
Iteration: 4, Func. Count: 55, Neg. LLF: 143.4154997867987
Iteration: 5, Func. Count: 68, Neg. LLF: 143.37142863418512
Iteration: 6, Func. Count: 82, Neg. LLF: 143.09872592542993
Iteration: 7, Func. Count: 95, Neg. LLF: 143.08841754630132
Iteration: 8, Func. Count: 108, Neg. LLF: 143.08827585554724
Iteration: 9, Func. Count: 121, Neg. LLF: 143.088277188043
Optimization terminated successfully (Exit mode 0)
Current function value: 143.08827567424672
Iterations: 9
Function evaluations: 122
Gradient evaluations: 9
Iteration: 1, Func. Count: 11, Neg. LLF: 152.55454346648241
Iteration: 2, Func. Count: 21, Neg. LLF: 163.84375433763063
Iteration: 3, Func. Count: 32, Neg. LLF: 158.90640934312248
Iteration: 4, Func. Count: 46, Neg. LLF: 150.8505069847887
Iteration: 5, Func. Count: 56, Neg. LLF: 153.85748887120224
Iteration: 6, Func. Count: 68, Neg. LLF: 150.5433119730013
Iteration: 7, Func. Count: 78, Neg. LLF: 150.51792581935263
Iteration: 8, Func. Count: 89, Neg. LLF: 258.53118637669127
Iteration: 9, Func. Count: 100, Neg. LLF: 162.70187313005152
Iteration: 10, Func. Count: 113, Neg. LLF: 157.87573453888874
Iteration: 11, Func. Count: 124, Neg. LLF: 148.99848592515676
Iteration: 12, Func. Count: 134, Neg. LLF: 148.97315131792305
Iteration: 13, Func. Count: 144, Neg. LLF: 148.9720567939251
Iteration: 14, Func. Count: 155, Neg. LLF: 148.9605715143293
Iteration: 15, Func. Count: 165, Neg. LLF: 148.96036737484792
Iteration: 16, Func. Count: 175, Neg. LLF: 148.9603336141561
Iteration: 17, Func. Count: 185, Neg. LLF: 148.9603149292474
Iteration: 18, Func. Count: 195, Neg. LLF: 148.96031396003744
Optimization terminated successfully (Exit mode 0)
Current function value: 148.96031396003744
Iterations: 18
Function evaluations: 195
Gradient evaluations: 18
Iteration: 1, Func. Count: 12, Neg. LLF: 21451103.68766565
Iteration: 2, Func. Count: 25, Neg. LLF: 155.5843007896886
Iteration: 3, Func. Count: 37, Neg. LLF: 148.2236721917824
Iteration: 4, Func. Count: 48, Neg. LLF: 148.3286258426253
Iteration: 5, Func. Count: 60, Neg. LLF: 148.04403444826264
Iteration: 6, Func. Count: 71, Neg. LLF: 148.0191833052075
Iteration: 7, Func. Count: 82, Neg. LLF: 148.01908309170162
Iteration: 8, Func. Count: 93, Neg. LLF: 148.02693312617345
Iteration: 9, Func. Count: 107, Neg. LLF: 148.0196895302452
Iteration: 10, Func. Count: 119, Neg. LLF: 148.01908294383898
Optimization terminated successfully (Exit mode 0)
Current function value: 148.01908399600168
Iterations: 14
Function evaluations: 119
Gradient evaluations: 10
Iteration: 1, Func. Count: 13, Neg. LLF: 687706.2370481585
Iteration: 2, Func. Count: 27, Neg. LLF: 176.936718995782
Iteration: 3, Func. Count: 40, Neg. LLF: 148.42738666086768
Iteration: 4, Func. Count: 52, Neg. LLF: 149.94046700240708
Iteration: 5, Func. Count: 66, Neg. LLF: 148.35018869781734
Iteration: 6, Func. Count: 79, Neg. LLF: 147.70795193384444
Iteration: 7, Func. Count: 91, Neg. LLF: 147.70265371287434
Iteration: 8, Func. Count: 103, Neg. LLF: 147.7001129139823
Iteration: 9, Func. Count: 115, Neg. LLF: 147.70043284531928
Iteration: 10, Func. Count: 127, Neg. LLF: 147.69988923429173
Iteration: 11, Func. Count: 149, Neg. LLF: 147.70001978873188
Iteration: 12, Func. Count: 171, Neg. LLF: 147.700784588451
Iteration: 13, Func. Count: 183, Neg. LLF: 147.70067755743244
Iteration: 14, Func. Count: 205, Neg. LLF: 147.70088500127633
Iteration: 15, Func. Count: 218, Neg. LLF: 147.7008023696544
Iteration: 16, Func. Count: 230, Neg. LLF: 147.70079872343422
Optimization terminated successfully (Exit mode 0)
Current function value: 147.70080236844163
Iterations: 16
Function evaluations: 240
Gradient evaluations: 16
Iteration: 1, Func. Count: 14, Neg. LLF: 2789008.6935712174
Iteration: 2, Func. Count: 28, Neg. LLF: 160.0161927465214
Iteration: 3, Func. Count: 42, Neg. LLF: 151.39428680545615
Iteration: 4, Func. Count: 55, Neg. LLF: 156.245633407386
Iteration: 5, Func. Count: 69, Neg. LLF: 147.88603680801089
Iteration: 6, Func. Count: 82, Neg. LLF: 3092755.5012856047
Iteration: 7, Func. Count: 96, Neg. LLF: 141.81732996281443
Iteration: 8, Func. Count: 109, Neg. LLF: 141.68367030641053
Iteration: 9, Func. Count: 122, Neg. LLF: 141.5804161409003
Iteration: 10, Func. Count: 135, Neg. LLF: 141.5678962758285
Iteration: 11, Func. Count: 148, Neg. LLF: 141.566999071207
Iteration: 12, Func. Count: 161, Neg. LLF: 148.26523700790042
Iteration: 13, Func. Count: 177, Neg. LLF: 141.56960530770627
Iteration: 14, Func. Count: 192, Neg. LLF: 141.56774213440235
Iteration: 15, Func. Count: 206, Neg. LLF: 141.56768145160638
Iteration: 16, Func. Count: 218, Neg. LLF: 141.5676809609846
Optimization terminated successfully (Exit mode 0)
Current function value: 141.56768145160638
Iterations: 17
Function evaluations: 218
Gradient evaluations: 16
Iteration: 1, Func. Count: 15, Neg. LLF: 2733612.217969911
Iteration: 2, Func. Count: 30, Neg. LLF: 186.9873438553738
Iteration: 3, Func. Count: 45, Neg. LLF: 145.6367863980576
Iteration: 4, Func. Count: 59, Neg. LLF: 143.47858783643647
Iteration: 5, Func. Count: 73, Neg. LLF: 143.4594440953569
Iteration: 6, Func. Count: 88, Neg. LLF: 143.10143341071225
Iteration: 7, Func. Count: 102, Neg. LLF: 143.08848809717003
Iteration: 8, Func. Count: 116, Neg. LLF: 143.08827583219718
Iteration: 9, Func. Count: 130, Neg. LLF: 143.08827249626665
Iteration: 10, Func. Count: 144, Neg. LLF: 143.08835273028157
Optimization terminated successfully (Exit mode 0)
Current function value: 143.0882724989241
Iterations: 11
Function evaluations: 146
Gradient evaluations: 10
Iteration: 1, Func. Count: 8, Neg. LLF: 151.10431553144053
Iteration: 2, Func. Count: 15, Neg. LLF: 167.34982008538339
Iteration: 3, Func. Count: 23, Neg. LLF: 186.54674571052837
Iteration: 4, Func. Count: 34, Neg. LLF: 164.11471063244562
Iteration: 5, Func. Count: 43, Neg. LLF: 149.62696488484193
Iteration: 6, Func. Count: 50, Neg. LLF: 147.48925628800208
Iteration: 7, Func. Count: 57, Neg. LLF: 167.521313899926
Iteration: 8, Func. Count: 65, Neg. LLF: 201.52018228520552
Iteration: 9, Func. Count: 73, Neg. LLF: 247.33608264428716
Iteration: 10, Func. Count: 81, Neg. LLF: 246.43082262442908
Iteration: 11, Func. Count: 89, Neg. LLF: 247.25774828458742
Iteration: 12, Func. Count: 97, Neg. LLF: 272.42393497574943
Iteration: 13, Func. Count: 105, Neg. LLF: 420.6101888654092
Iteration: 14, Func. Count: 113, Neg. LLF: 681.1029235140178
Iteration: 15, Func. Count: 121, Neg. LLF: 607.7448609700067
Iteration: 16, Func. Count: 129, Neg. LLF: 545.4815358723675
Iteration: 17, Func. Count: 137, Neg. LLF: 162.11863503441955
Iteration: 18, Func. Count: 145, Neg. LLF: 140.46224130558733
Iteration: 19, Func. Count: 153, Neg. LLF: 140.4789456123372
Iteration: 20, Func. Count: 161, Neg. LLF: 139.8145196107993
Iteration: 21, Func. Count: 168, Neg. LLF: 139.80854587641863
Iteration: 22, Func. Count: 175, Neg. LLF: 139.7975675707456
Iteration: 23, Func. Count: 182, Neg. LLF: 139.79658675444634
Iteration: 24, Func. Count: 189, Neg. LLF: 139.7957912924747
Iteration: 25, Func. Count: 196, Neg. LLF: 139.79459162671864
Iteration: 26, Func. Count: 203, Neg. LLF: 139.7933549539576
Iteration: 27, Func. Count: 210, Neg. LLF: 139.7929222880979
Iteration: 28, Func. Count: 217, Neg. LLF: 139.79287698866128
Iteration: 29, Func. Count: 224, Neg. LLF: 139.79286926145525
Iteration: 30, Func. Count: 230, Neg. LLF: 139.79286908720624
Optimization terminated successfully (Exit mode 0)
Current function value: 139.79286926145525
Iterations: 30
Function evaluations: 230
Gradient evaluations: 30
Iteration: 1, Func. Count: 9, Neg. LLF: 328.1403752415939
Iteration: 2, Func. Count: 18, Neg. LLF: 312236834.9676485
Iteration: 3, Func. Count: 29, Neg. LLF: 3225.1827898267275
Iteration: 4, Func. Count: 38, Neg. LLF: 142.19356170874048
Iteration: 5, Func. Count: 46, Neg. LLF: 156.9543218398271
Iteration: 6, Func. Count: 56, Neg. LLF: 2540.430796391105
Iteration: 7, Func. Count: 66, Neg. LLF: 159.9319481241491
Iteration: 8, Func. Count: 76, Neg. LLF: 141.06396143977855
Iteration: 9, Func. Count: 85, Neg. LLF: 139.479523570682
Iteration: 10, Func. Count: 93, Neg. LLF: 139.44411030640143
Iteration: 11, Func. Count: 101, Neg. LLF: 139.4180133471388
Iteration: 12, Func. Count: 109, Neg. LLF: 139.41502757014158
Iteration: 13, Func. Count: 117, Neg. LLF: 139.4141254586002
Iteration: 14, Func. Count: 125, Neg. LLF: 139.4130513725086
Iteration: 15, Func. Count: 133, Neg. LLF: 139.4118252649627
Iteration: 16, Func. Count: 141, Neg. LLF: 139.409841629837
Iteration: 17, Func. Count: 149, Neg. LLF: 139.40779209721273
Iteration: 18, Func. Count: 157, Neg. LLF: 139.40667391111717
Iteration: 19, Func. Count: 165, Neg. LLF: 139.4064467853466
Iteration: 20, Func. Count: 173, Neg. LLF: 139.40643152733875
Iteration: 21, Func. Count: 180, Neg. LLF: 139.406431348364
Optimization terminated successfully (Exit mode 0)
Current function value: 139.40643152733875
Iterations: 21
Function evaluations: 180
Gradient evaluations: 21
Iteration: 1, Func. Count: 10, Neg. LLF: 148.22849460741932
Iteration: 2, Func. Count: 19, Neg. LLF: 211.95273012965424
Iteration: 3, Func. Count: 32, Neg. LLF: 208.9082706168528
Iteration: 4, Func. Count: 44, Neg. LLF: 188.67655338046086
Iteration: 5, Func. Count: 55, Neg. LLF: 142.48759506302773
Iteration: 6, Func. Count: 65, Neg. LLF: 277.8851936095594
Iteration: 7, Func. Count: 75, Neg. LLF: 214.3443803653185
Iteration: 8, Func. Count: 85, Neg. LLF: 149.55094627595108
Iteration: 9, Func. Count: 95, Neg. LLF: 147.31916016473133
Iteration: 10, Func. Count: 105, Neg. LLF: 139.89197366614604
Iteration: 11, Func. Count: 114, Neg. LLF: 139.87233080248114
Iteration: 12, Func. Count: 123, Neg. LLF: 139.85849467236636
Iteration: 13, Func. Count: 132, Neg. LLF: 139.85193341869504
Iteration: 14, Func. Count: 141, Neg. LLF: 139.82035461642192
Iteration: 15, Func. Count: 150, Neg. LLF: 139.7683166106179
Iteration: 16, Func. Count: 159, Neg. LLF: 139.70936061405655
Iteration: 17, Func. Count: 168, Neg. LLF: 139.61841009607295
Iteration: 18, Func. Count: 177, Neg. LLF: 139.51966439152028
Iteration: 19, Func. Count: 186, Neg. LLF: 139.47772476867388
Iteration: 20, Func. Count: 195, Neg. LLF: 139.45254357362532
Iteration: 21, Func. Count: 204, Neg. LLF: 139.4326080009253
Iteration: 22, Func. Count: 213, Neg. LLF: 139.4183314750202
Iteration: 23, Func. Count: 222, Neg. LLF: 139.4084974608896
Iteration: 24, Func. Count: 231, Neg. LLF: 139.40674645033354
Iteration: 25, Func. Count: 240, Neg. LLF: 139.4064404235321
Iteration: 26, Func. Count: 249, Neg. LLF: 139.4064318553027
Iteration: 27, Func. Count: 258, Neg. LLF: 139.40643085171692
Iteration: 28, Func. Count: 266, Neg. LLF: 139.40643140906982
Optimization terminated successfully (Exit mode 0)
Current function value: 139.40643085171692
Iterations: 28
Function evaluations: 266
Gradient evaluations: 28
Iteration: 1, Func. Count: 11, Neg. LLF: 150.9216371504909
Iteration: 2, Func. Count: 21, Neg. LLF: 150.2947566976679
Iteration: 3, Func. Count: 31, Neg. LLF: 172.4928203772048
Iteration: 4, Func. Count: 44, Neg. LLF: 161.33694675559815
Iteration: 5, Func. Count: 58, Neg. LLF: 149.39195438821798
Iteration: 6, Func. Count: 68, Neg. LLF: 148.78529850259125
Iteration: 7, Func. Count: 78, Neg. LLF: 145.51451492404456
Iteration: 8, Func. Count: 88, Neg. LLF: 214.18805434741603
Iteration: 9, Func. Count: 99, Neg. LLF: 260.964517383167
Iteration: 10, Func. Count: 110, Neg. LLF: 265.5804143246063
Iteration: 11, Func. Count: 121, Neg. LLF: 185.36611399301128
Iteration: 12, Func. Count: 132, Neg. LLF: 155.55693485785827
Iteration: 13, Func. Count: 143, Neg. LLF: 257.84244418937703
Iteration: 14, Func. Count: 154, Neg. LLF: 233.2081690632734
Iteration: 15, Func. Count: 165, Neg. LLF: 206.764627224013
Iteration: 16, Func. Count: 176, Neg. LLF: 197.30974113937344
Iteration: 17, Func. Count: 187, Neg. LLF: 141.0439773752171
Iteration: 18, Func. Count: 198, Neg. LLF: 187.74761596831533
Iteration: 19, Func. Count: 209, Neg. LLF: 139.60423174542314
Iteration: 20, Func. Count: 219, Neg. LLF: 139.52716333210478
Iteration: 21, Func. Count: 229, Neg. LLF: 139.47931146245475
Iteration: 22, Func. Count: 239, Neg. LLF: 139.43204860341328
Iteration: 23, Func. Count: 249, Neg. LLF: 139.4176944858181
Iteration: 24, Func. Count: 259, Neg. LLF: 139.41303121479498
Iteration: 25, Func. Count: 269, Neg. LLF: 139.4096730232076
Iteration: 26, Func. Count: 279, Neg. LLF: 139.4076552048226
Iteration: 27, Func. Count: 289, Neg. LLF: 139.40720636747852
Iteration: 28, Func. Count: 299, Neg. LLF: 139.40713064338695
Iteration: 29, Func. Count: 309, Neg. LLF: 139.4070954763536
Iteration: 30, Func. Count: 319, Neg. LLF: 139.4069854880675
Iteration: 31, Func. Count: 329, Neg. LLF: 139.4068228596838
Iteration: 32, Func. Count: 339, Neg. LLF: 139.40658484800755
Iteration: 33, Func. Count: 349, Neg. LLF: 139.40646281226375
Iteration: 34, Func. Count: 359, Neg. LLF: 139.40644053103688
Iteration: 35, Func. Count: 369, Neg. LLF: 139.40641898323233
Iteration: 36, Func. Count: 379, Neg. LLF: 139.4064264446772
Iteration: 37, Func. Count: 399, Neg. LLF: 139.4065373348542
Optimization terminated successfully (Exit mode 0)
Current function value: 139.40641916963872
Iterations: 37
Function evaluations: 401
Gradient evaluations: 37
Iteration: 1, Func. Count: 12, Neg. LLF: 151.04538232581072
Iteration: 2, Func. Count: 23, Neg. LLF: 153.35324200978954
Iteration: 3, Func. Count: 35, Neg. LLF: 178.58763930344588
Iteration: 4, Func. Count: 49, Neg. LLF: 160.70235805059235
Iteration: 5, Func. Count: 64, Neg. LLF: 149.29045534643444
Iteration: 6, Func. Count: 75, Neg. LLF: 147.03514946077505
Iteration: 7, Func. Count: 86, Neg. LLF: 482.645076025079
Iteration: 8, Func. Count: 98, Neg. LLF: 358.73463950352215
Iteration: 9, Func. Count: 110, Neg. LLF: 341.8640552987917
Iteration: 10, Func. Count: 122, Neg. LLF: 162.62542583098426
Iteration: 11, Func. Count: 138, Neg. LLF: 188.70043015594052
Iteration: 12, Func. Count: 152, Neg. LLF: 143.00004463881223
Iteration: 13, Func. Count: 163, Neg. LLF: 273.6828346484561
Iteration: 14, Func. Count: 175, Neg. LLF: 182.2211492683967
Iteration: 15, Func. Count: 187, Neg. LLF: 161.6869550797397
Iteration: 16, Func. Count: 199, Neg. LLF: 164.15057918124242
Iteration: 17, Func. Count: 211, Neg. LLF: 143.9017424884726
Iteration: 18, Func. Count: 223, Neg. LLF: 164.94442267366838
Iteration: 19, Func. Count: 235, Neg. LLF: 170.65100824668684
Iteration: 20, Func. Count: 248, Neg. LLF: 167.53048307270046
Iteration: 21, Func. Count: 260, Neg. LLF: 197.63189754068964
Iteration: 22, Func. Count: 272, Neg. LLF: 153.03659840989403
Iteration: 23, Func. Count: 284, Neg. LLF: 282.8385553773728
Iteration: 24, Func. Count: 296, Neg. LLF: 147.46544081601837
Iteration: 25, Func. Count: 308, Neg. LLF: 137.72949475004955
Iteration: 26, Func. Count: 320, Neg. LLF: 137.47959073246895
Iteration: 27, Func. Count: 331, Neg. LLF: 137.47552654345336
Iteration: 28, Func. Count: 342, Neg. LLF: 137.47376710967126
Iteration: 29, Func. Count: 353, Neg. LLF: 137.47327826491076
Iteration: 30, Func. Count: 364, Neg. LLF: 137.47285313896953
Iteration: 31, Func. Count: 375, Neg. LLF: 137.47275425110288
Iteration: 32, Func. Count: 386, Neg. LLF: 137.47274445958917
Iteration: 33, Func. Count: 397, Neg. LLF: 137.47274392427673
Optimization terminated successfully (Exit mode 0)
Current function value: 137.47274392427673
Iterations: 34
Function evaluations: 397
Gradient evaluations: 33
Iteration: 1, Func. Count: 9, Neg. LLF: 154.02675608449783
Iteration: 2, Func. Count: 17, Neg. LLF: 152.85724191138917
Iteration: 3, Func. Count: 26, Neg. LLF: 181.55936549127475
Iteration: 4, Func. Count: 38, Neg. LLF: 165.8193906674497
Iteration: 5, Func. Count: 49, Neg. LLF: 149.60648167284458
Iteration: 6, Func. Count: 57, Neg. LLF: 146.60849912301953
Iteration: 7, Func. Count: 65, Neg. LLF: 965.0081439361816
Iteration: 8, Func. Count: 74, Neg. LLF: 505.0770870674107
Iteration: 9, Func. Count: 83, Neg. LLF: 425.2060479345684
Iteration: 10, Func. Count: 92, Neg. LLF: 217.97068582543062
Iteration: 11, Func. Count: 101, Neg. LLF: 180.1584398266909
Iteration: 12, Func. Count: 112, Neg. LLF: 144.16147798106155
Iteration: 13, Func. Count: 121, Neg. LLF: 153.48987180757973
Iteration: 14, Func. Count: 130, Neg. LLF: 275.71040819244826
Iteration: 15, Func. Count: 139, Neg. LLF: 283.6236791875578
Iteration: 16, Func. Count: 148, Neg. LLF: 528.2730388833983
Iteration: 17, Func. Count: 157, Neg. LLF: 376.6855655224454
Iteration: 18, Func. Count: 166, Neg. LLF: 255.85411491875223
Iteration: 19, Func. Count: 175, Neg. LLF: 224.85912866830765
Iteration: 20, Func. Count: 184, Neg. LLF: 140.39339291363737
Iteration: 21, Func. Count: 193, Neg. LLF: 139.87572847691533
Iteration: 22, Func. Count: 202, Neg. LLF: 139.84403534065714
Iteration: 23, Func. Count: 211, Neg. LLF: 139.80668807034561
Iteration: 24, Func. Count: 219, Neg. LLF: 139.79548935322376
Iteration: 25, Func. Count: 227, Neg. LLF: 139.792800507381
Iteration: 26, Func. Count: 235, Neg. LLF: 139.7922581852898
Iteration: 27, Func. Count: 243, Neg. LLF: 139.7922175895523
Iteration: 28, Func. Count: 251, Neg. LLF: 139.79221691973618
Optimization terminated successfully (Exit mode 0)
Current function value: 139.79221691973618
Iterations: 29
Function evaluations: 251
Gradient evaluations: 28
Iteration: 1, Func. Count: 10, Neg. LLF: 167.02791902513917
Iteration: 2, Func. Count: 20, Neg. LLF: 156.5905835797856
Iteration: 3, Func. Count: 30, Neg. LLF: 151.9680904508203
Iteration: 4, Func. Count: 39, Neg. LLF: 152.20944135678957
Iteration: 5, Func. Count: 49, Neg. LLF: 149.83842426583976
Iteration: 6, Func. Count: 58, Neg. LLF: 149.83558871675675
Iteration: 7, Func. Count: 67, Neg. LLF: 149.83555190815125
Iteration: 8, Func. Count: 76, Neg. LLF: 149.9080008955695
Optimization terminated successfully (Exit mode 0)
Current function value: 149.83555181548806
Iterations: 9
Function evaluations: 79
Gradient evaluations: 8
Iteration: 1, Func. Count: 11, Neg. LLF: 161.5708051076232
Iteration: 2, Func. Count: 22, Neg. LLF: 218509.17552635047
Iteration: 3, Func. Count: 34, Neg. LLF: 150.63833400913228
Iteration: 4, Func. Count: 44, Neg. LLF: 151.6383302433734
Iteration: 5, Func. Count: 55, Neg. LLF: 150.04984567569377
Iteration: 6, Func. Count: 65, Neg. LLF: 149.886231607703
Iteration: 7, Func. Count: 75, Neg. LLF: 162.32959742235784
Iteration: 8, Func. Count: 88, Neg. LLF: 161.63991557828092
Iteration: 9, Func. Count: 100, Neg. LLF: 5193.945478724078
Iteration: 10, Func. Count: 112, Neg. LLF: 149.83551432170103
Iteration: 11, Func. Count: 122, Neg. LLF: 149.83568142740876
Optimization terminated successfully (Exit mode 0)
Current function value: 149.8355143233903
Iterations: 13
Function evaluations: 125
Gradient evaluations: 11
Iteration: 1, Func. Count: 12, Neg. LLF: 4349837.049823246
Iteration: 2, Func. Count: 25, Neg. LLF: 327.895846190978
Iteration: 3, Func. Count: 38, Neg. LLF: 176.92431753907226
Iteration: 4, Func. Count: 50, Neg. LLF: 150.59924400108437
Iteration: 5, Func. Count: 61, Neg. LLF: 154.60137700744326
Iteration: 6, Func. Count: 73, Neg. LLF: 150.36024341851802
Iteration: 7, Func. Count: 84, Neg. LLF: 150.30089938830466
Iteration: 8, Func. Count: 95, Neg. LLF: 150.1512225584363
Iteration: 9, Func. Count: 106, Neg. LLF: 150.14304470040636
Iteration: 10, Func. Count: 117, Neg. LLF: 150.13901893137978
Iteration: 11, Func. Count: 128, Neg. LLF: 150.1390406968122
Iteration: 12, Func. Count: 140, Neg. LLF: 155.51119444629242
Iteration: 13, Func. Count: 155, Neg. LLF: 150.183740767799
Iteration: 14, Func. Count: 168, Neg. LLF: 150.20003347474275
Iteration: 15, Func. Count: 181, Neg. LLF: 150.138961061431
Iteration: 16, Func. Count: 191, Neg. LLF: 150.1389607534771
Optimization terminated successfully (Exit mode 0)
Current function value: 150.138961061431
Iterations: 17
Function evaluations: 191
Gradient evaluations: 16
Iteration: 1, Func. Count: 13, Neg. LLF: 4359028.151471499
Iteration: 2, Func. Count: 26, Neg. LLF: 447.8884559685482
Iteration: 3, Func. Count: 40, Neg. LLF: 178.93184682125178
Iteration: 4, Func. Count: 53, Neg. LLF: 145.45352177348437
Iteration: 5, Func. Count: 65, Neg. LLF: 145.13061825355243
Iteration: 6, Func. Count: 78, Neg. LLF: 143.91815827876894
Iteration: 7, Func. Count: 90, Neg. LLF: 143.6002505047229
Iteration: 8, Func. Count: 102, Neg. LLF: 143.32597046342204
Iteration: 9, Func. Count: 114, Neg. LLF: 143.285767481419
Iteration: 10, Func. Count: 126, Neg. LLF: 143.27222266295817
Iteration: 11, Func. Count: 138, Neg. LLF: 143.25466583483438
Iteration: 12, Func. Count: 150, Neg. LLF: 143.19763973411577
Iteration: 13, Func. Count: 162, Neg. LLF: 297.6584079525882
Iteration: 14, Func. Count: 177, Neg. LLF: 143.85344215297664
Iteration: 15, Func. Count: 190, Neg. LLF: 184.86999542334578
Iteration: 16, Func. Count: 212, Neg. LLF: 162.56529631792955
Iteration: 17, Func. Count: 230, Neg. LLF: 414.69185008000693
Iteration: 18, Func. Count: 243, Neg. LLF: 8152.167466544213
Iteration: 19, Func. Count: 256, Neg. LLF: 188.79930396768995
Iteration: 20, Func. Count: 269, Neg. LLF: 189.87070848807724
Iteration: 21, Func. Count: 282, Neg. LLF: 171.27743000730936
Iteration: 22, Func. Count: 295, Neg. LLF: 228.27590719474154
Iteration: 23, Func. Count: 308, Neg. LLF: 139.1337771547943
Iteration: 24, Func. Count: 320, Neg. LLF: 138.4931506827112
Iteration: 25, Func. Count: 332, Neg. LLF: 140.68430541064572
Iteration: 26, Func. Count: 345, Neg. LLF: 137.53118317843
Iteration: 27, Func. Count: 357, Neg. LLF: 137.50310297737335
Iteration: 28, Func. Count: 369, Neg. LLF: 137.43946857333074
Iteration: 29, Func. Count: 381, Neg. LLF: 137.4222668733161
Iteration: 30, Func. Count: 393, Neg. LLF: 137.40955593819103
Iteration: 31, Func. Count: 405, Neg. LLF: 137.40859833926746
Iteration: 32, Func. Count: 417, Neg. LLF: 137.40728002511497
Iteration: 33, Func. Count: 429, Neg. LLF: 137.40680892416503
Iteration: 34, Func. Count: 441, Neg. LLF: 137.40660257144117
Iteration: 35, Func. Count: 453, Neg. LLF: 137.4065417472999
Iteration: 36, Func. Count: 465, Neg. LLF: 137.4065347007123
Iteration: 37, Func. Count: 477, Neg. LLF: 137.41360946808373
Optimization terminated successfully (Exit mode 0)
Current function value: 137.40653465429097
Iterations: 39
Function evaluations: 480
Gradient evaluations: 37
Iteration: 1, Func. Count: 10, Neg. LLF: 152.3298777481337
Iteration: 2, Func. Count: 19, Neg. LLF: 163.06238241289304
Iteration: 3, Func. Count: 29, Neg. LLF: 165.76243895026886
Iteration: 4, Func. Count: 41, Neg. LLF: 165.76359400566514
Iteration: 5, Func. Count: 53, Neg. LLF: 150.82271209909248
Iteration: 6, Func. Count: 62, Neg. LLF: 150.89279974187284
Iteration: 7, Func. Count: 72, Neg. LLF: 150.52175807587437
Iteration: 8, Func. Count: 82, Neg. LLF: 150.85030091801747
Iteration: 9, Func. Count: 92, Neg. LLF: 149.87557262962812
Iteration: 10, Func. Count: 101, Neg. LLF: 148.6884333739476
Iteration: 11, Func. Count: 110, Neg. LLF: 280.1782320895088
Iteration: 12, Func. Count: 122, Neg. LLF: 149.54998906709818
Iteration: 13, Func. Count: 132, Neg. LLF: 168.28729084300912
Iteration: 14, Func. Count: 142, Neg. LLF: 151.6789707022304
Iteration: 15, Func. Count: 152, Neg. LLF: 148.11081039191308
Iteration: 16, Func. Count: 162, Neg. LLF: 147.9389777397184
Iteration: 17, Func. Count: 171, Neg. LLF: 147.93591768950955
Iteration: 18, Func. Count: 180, Neg. LLF: 147.93351185318414
Iteration: 19, Func. Count: 189, Neg. LLF: 147.93016950246042
Iteration: 20, Func. Count: 198, Neg. LLF: 147.92921822256483
Iteration: 21, Func. Count: 207, Neg. LLF: 147.92914782391938
Iteration: 22, Func. Count: 216, Neg. LLF: 147.92914611510645
Iteration: 23, Func. Count: 224, Neg. LLF: 147.92914605101507
Optimization terminated successfully (Exit mode 0)
Current function value: 147.92914611510645
Iterations: 23
Function evaluations: 224
Gradient evaluations: 23
Iteration: 1, Func. Count: 11, Neg. LLF: 166.1001834554507
Iteration: 2, Func. Count: 22, Neg. LLF: 173.97564368731813
Iteration: 3, Func. Count: 33, Neg. LLF: 152.6011246897276
Iteration: 4, Func. Count: 43, Neg. LLF: 150.85071254835725
Iteration: 5, Func. Count: 53, Neg. LLF: 150.94779893598795
Iteration: 6, Func. Count: 64, Neg. LLF: 149.23458659957728
Iteration: 7, Func. Count: 74, Neg. LLF: 149.19189796581955
Iteration: 8, Func. Count: 84, Neg. LLF: 149.19147143255893
Iteration: 9, Func. Count: 94, Neg. LLF: 149.19146876091736
Iteration: 10, Func. Count: 103, Neg. LLF: 149.19146786166309
Optimization terminated successfully (Exit mode 0)
Current function value: 149.19146876091736
Iterations: 10
Function evaluations: 103
Gradient evaluations: 10
Iteration: 1, Func. Count: 12, Neg. LLF: 2572819.986725316
Iteration: 2, Func. Count: 25, Neg. LLF: 154.07012083273708
Iteration: 3, Func. Count: 37, Neg. LLF: 147.87406191345633
Iteration: 4, Func. Count: 48, Neg. LLF: 147.8924549654784
Iteration: 5, Func. Count: 60, Neg. LLF: 147.72931612629748
Iteration: 6, Func. Count: 71, Neg. LLF: 147.70138822266497
Iteration: 7, Func. Count: 82, Neg. LLF: 148.3684187919189
Iteration: 8, Func. Count: 95, Neg. LLF: 147.7113170772634
Iteration: 9, Func. Count: 107, Neg. LLF: 147.7008130574467
Iteration: 10, Func. Count: 117, Neg. LLF: 147.70081250773492
Optimization terminated successfully (Exit mode 0)
Current function value: 147.7008130574467
Iterations: 11
Function evaluations: 117
Gradient evaluations: 10
Iteration: 1, Func. Count: 13, Neg. LLF: 2712766.2604358736
Iteration: 2, Func. Count: 26, Neg. LLF: 862.7908455756162
Iteration: 3, Func. Count: 40, Neg. LLF: 164.62555798392896
Iteration: 4, Func. Count: 53, Neg. LLF: 153.11361335435024
Iteration: 5, Func. Count: 66, Neg. LLF: 153.0166947431968
Iteration: 6, Func. Count: 79, Neg. LLF: 148.35607643256245
Iteration: 7, Func. Count: 91, Neg. LLF: 162.2436123115129
Iteration: 8, Func. Count: 105, Neg. LLF: 148.46323888784138
Iteration: 9, Func. Count: 118, Neg. LLF: 147.98252839884634
Iteration: 10, Func. Count: 130, Neg. LLF: 147.9822119366826
Iteration: 11, Func. Count: 143, Neg. LLF: 147.97407552179038
Iteration: 12, Func. Count: 155, Neg. LLF: 147.97314712531283
Iteration: 13, Func. Count: 167, Neg. LLF: 150.2143806872416
Iteration: 14, Func. Count: 183, Neg. LLF: 148.41095772898237
Iteration: 15, Func. Count: 197, Neg. LLF: 148.0240294272095
Iteration: 16, Func. Count: 211, Neg. LLF: 147.97355607797434
Iteration: 17, Func. Count: 224, Neg. LLF: 147.9735598602096
Iteration: 18, Func. Count: 237, Neg. LLF: 147.97396445495704
Iteration: 19, Func. Count: 253, Neg. LLF: 147.97393205055266
Iteration: 20, Func. Count: 268, Neg. LLF: 147.97354713860034
Iteration: 21, Func. Count: 281, Neg. LLF: 147.9734129844227
Optimization terminated successfully (Exit mode 0)
Current function value: 147.97341351871268
Iterations: 25
Function evaluations: 281
Gradient evaluations: 21
Iteration: 1, Func. Count: 14, Neg. LLF: 2695419.279781698
Iteration: 2, Func. Count: 28, Neg. LLF: 630.558039682037
Iteration: 3, Func. Count: 43, Neg. LLF: 237.85765176600148
Iteration: 4, Func. Count: 57, Neg. LLF: 143.7717258896934
Iteration: 5, Func. Count: 70, Neg. LLF: 145.1553278479429
Iteration: 6, Func. Count: 84, Neg. LLF: 142.86075895910042
Iteration: 7, Func. Count: 97, Neg. LLF: 142.7078601702609
Iteration: 8, Func. Count: 110, Neg. LLF: 142.6624749143741
Iteration: 9, Func. Count: 123, Neg. LLF: 142.6304369997676
Iteration: 10, Func. Count: 136, Neg. LLF: 142.61083174842474
Iteration: 11, Func. Count: 149, Neg. LLF: 142.60761580590824
Iteration: 12, Func. Count: 162, Neg. LLF: 142.60749768018545
Iteration: 13, Func. Count: 175, Neg. LLF: 142.60749142700783
Iteration: 14, Func. Count: 189, Neg. LLF: 142.60749893916724
Iteration: 15, Func. Count: 202, Neg. LLF: 142.60754791899774
Optimization terminated successfully (Exit mode 0)
Current function value: 142.6074989446956
Iterations: 16
Function evaluations: 205
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 151.48634496094658
Iteration: 2, Func. Count: 21, Neg. LLF: 160.02892078945234
Iteration: 3, Func. Count: 32, Neg. LLF: 170.13116564176934
Iteration: 4, Func. Count: 46, Neg. LLF: 153.1334574717252
Iteration: 5, Func. Count: 57, Neg. LLF: 151.19204001374752
Iteration: 6, Func. Count: 68, Neg. LLF: 150.5668740250297
Iteration: 7, Func. Count: 79, Neg. LLF: 414.40844726054775
Iteration: 8, Func. Count: 90, Neg. LLF: 1753.1400012738484
Iteration: 9, Func. Count: 101, Neg. LLF: 159.0225025625423
Iteration: 10, Func. Count: 112, Neg. LLF: 518.2191727902807
Iteration: 11, Func. Count: 123, Neg. LLF: 160.7698548266691
Iteration: 12, Func. Count: 134, Neg. LLF: 170.31118635272733
Iteration: 13, Func. Count: 145, Neg. LLF: 148.5011155322549
Iteration: 14, Func. Count: 155, Neg. LLF: 157.920573351163
Iteration: 15, Func. Count: 166, Neg. LLF: 148.80011065475978
Iteration: 16, Func. Count: 177, Neg. LLF: 148.037900597701
Iteration: 17, Func. Count: 187, Neg. LLF: 156.00491278804378
Iteration: 18, Func. Count: 198, Neg. LLF: 147.96977993698744
Iteration: 19, Func. Count: 208, Neg. LLF: 147.93317072992332
Iteration: 20, Func. Count: 218, Neg. LLF: 147.93055990941502
Iteration: 21, Func. Count: 228, Neg. LLF: 147.929544183028
Iteration: 22, Func. Count: 238, Neg. LLF: 147.92900436602895
Iteration: 23, Func. Count: 248, Neg. LLF: 147.9289077737029
Iteration: 24, Func. Count: 258, Neg. LLF: 147.92884166240373
Iteration: 25, Func. Count: 268, Neg. LLF: 147.92883494942694
Iteration: 26, Func. Count: 278, Neg. LLF: 147.92883342052616
Iteration: 27, Func. Count: 287, Neg. LLF: 147.92883335589062
Optimization terminated successfully (Exit mode 0)
Current function value: 147.92883342052616
Iterations: 27
Function evaluations: 287
Gradient evaluations: 27
Iteration: 1, Func. Count: 12, Neg. LLF: 440385.380580467
Iteration: 2, Func. Count: 25, Neg. LLF: 151.83782390011902
Iteration: 3, Func. Count: 36, Neg. LLF: 151.1517690459653
Iteration: 4, Func. Count: 47, Neg. LLF: 149.37849200474574
Iteration: 5, Func. Count: 58, Neg. LLF: 149.21171331993332
Iteration: 6, Func. Count: 69, Neg. LLF: 149.1955288398525
Iteration: 7, Func. Count: 80, Neg. LLF: 149.19366919599995
Iteration: 8, Func. Count: 91, Neg. LLF: 150.75388205959786
Iteration: 9, Func. Count: 105, Neg. LLF: 149.20641570037924
Iteration: 10, Func. Count: 117, Neg. LLF: 149.19146946978603
Iteration: 11, Func. Count: 127, Neg. LLF: 149.19146857056793
Optimization terminated successfully (Exit mode 0)
Current function value: 149.19146946978603
Iterations: 15
Function evaluations: 127
Gradient evaluations: 11
Iteration: 1, Func. Count: 13, Neg. LLF: 2688321.334899486
Iteration: 2, Func. Count: 27, Neg. LLF: 160.09554458617674
Iteration: 3, Func. Count: 40, Neg. LLF: 147.89302317390187
Iteration: 4, Func. Count: 52, Neg. LLF: 147.82483562361293
Iteration: 5, Func. Count: 64, Neg. LLF: 147.7108512783476
Iteration: 6, Func. Count: 76, Neg. LLF: 147.70498884579902
Iteration: 7, Func. Count: 88, Neg. LLF: 147.69529401452976
Iteration: 8, Func. Count: 100, Neg. LLF: 147.8271083531073
Iteration: 9, Func. Count: 114, Neg. LLF: 147.74196927111603
Iteration: 10, Func. Count: 128, Neg. LLF: 147.70081310548872
Iteration: 11, Func. Count: 139, Neg. LLF: 147.70081255575985
Optimization terminated successfully (Exit mode 0)
Current function value: 147.70081310548872
Iterations: 12
Function evaluations: 139
Gradient evaluations: 11
Iteration: 1, Func. Count: 14, Neg. LLF: 2755753.969827203
Iteration: 2, Func. Count: 28, Neg. LLF: 677.0100360408532
Iteration: 3, Func. Count: 43, Neg. LLF: 168.66028751203817
Iteration: 4, Func. Count: 57, Neg. LLF: 153.21763187696195
Iteration: 5, Func. Count: 71, Neg. LLF: 156.19717697062097
Iteration: 6, Func. Count: 85, Neg. LLF: 148.28096164728444
Iteration: 7, Func. Count: 98, Neg. LLF: 149.67586948794624
Iteration: 8, Func. Count: 112, Neg. LLF: 148.18193787286629
Iteration: 9, Func. Count: 126, Neg. LLF: 148.01810379961583
Iteration: 10, Func. Count: 139, Neg. LLF: 147.97675861350552
Iteration: 11, Func. Count: 152, Neg. LLF: 147.97540622784402
Iteration: 12, Func. Count: 165, Neg. LLF: 147.97380275962388
Iteration: 13, Func. Count: 178, Neg. LLF: 151.50863825285933
Optimization terminated successfully (Exit mode 0)
Current function value: 147.97380225056398
Iterations: 14
Function evaluations: 182
Gradient evaluations: 13
Iteration: 1, Func. Count: 15, Neg. LLF: 2730150.1700680754
Iteration: 2, Func. Count: 30, Neg. LLF: 807.802951944232
Iteration: 3, Func. Count: 46, Neg. LLF: 224.90626144156457
Iteration: 4, Func. Count: 61, Neg. LLF: 143.75001424301811
Iteration: 5, Func. Count: 75, Neg. LLF: 145.55202937768522
Iteration: 6, Func. Count: 90, Neg. LLF: 142.8678690089731
Iteration: 7, Func. Count: 104, Neg. LLF: 142.74082291583528
Iteration: 8, Func. Count: 118, Neg. LLF: 142.68232026532465
Iteration: 9, Func. Count: 132, Neg. LLF: 142.63953556488656
Iteration: 10, Func. Count: 146, Neg. LLF: 142.6116082911687
Iteration: 11, Func. Count: 160, Neg. LLF: 142.60754260561808
Iteration: 12, Func. Count: 174, Neg. LLF: 142.60750671842447
Iteration: 13, Func. Count: 188, Neg. LLF: 142.60749499669194
Iteration: 14, Func. Count: 202, Neg. LLF: 142.6075110421814
Optimization terminated successfully (Exit mode 0)
Current function value: 142.6074952492813
Iterations: 15
Function evaluations: 204
Gradient evaluations: 14
Iteration: 1, Func. Count: 12, Neg. LLF: 150.15482104213186
Iteration: 2, Func. Count: 23, Neg. LLF: 150.71437148890217
Iteration: 3, Func. Count: 38, Neg. LLF: 184.6875117591931
Iteration: 4, Func. Count: 51, Neg. LLF: 151.54935076514334
Iteration: 5, Func. Count: 63, Neg. LLF: 147.99498544231213
Iteration: 6, Func. Count: 74, Neg. LLF: 147.03722626673243
Iteration: 7, Func. Count: 85, Neg. LLF: 143.8455435150849
Iteration: 8, Func. Count: 96, Neg. LLF: 180.73829631595942
Iteration: 9, Func. Count: 108, Neg. LLF: 173.7596807592634
Iteration: 10, Func. Count: 122, Neg. LLF: 368.63734039187545
Iteration: 11, Func. Count: 134, Neg. LLF: 175.01161937654413
Iteration: 12, Func. Count: 146, Neg. LLF: 181.6515482742098
Iteration: 13, Func. Count: 158, Neg. LLF: 166.37924242408081
Iteration: 14, Func. Count: 170, Neg. LLF: 167.77964087425153
Iteration: 15, Func. Count: 182, Neg. LLF: 165.0629813554763
Iteration: 16, Func. Count: 194, Neg. LLF: 168.58361209583376
Iteration: 17, Func. Count: 206, Neg. LLF: 168.5714490312914
Iteration: 18, Func. Count: 218, Neg. LLF: 171.40271383938716
Iteration: 19, Func. Count: 230, Neg. LLF: 139.919828551578
Iteration: 20, Func. Count: 242, Neg. LLF: 136.49946838405413
Iteration: 21, Func. Count: 254, Neg. LLF: 136.69197446716512
Iteration: 22, Func. Count: 266, Neg. LLF: 136.2072393650801
Iteration: 23, Func. Count: 277, Neg. LLF: 136.0157898002192
Iteration: 24, Func. Count: 288, Neg. LLF: 135.70293306745785
Iteration: 25, Func. Count: 299, Neg. LLF: 135.4736149889281
Iteration: 26, Func. Count: 310, Neg. LLF: 135.3128711244599
Iteration: 27, Func. Count: 321, Neg. LLF: 135.12807190772335
Iteration: 28, Func. Count: 332, Neg. LLF: 134.78954712061778
Iteration: 29, Func. Count: 343, Neg. LLF: 134.7807524744896
Iteration: 30, Func. Count: 354, Neg. LLF: 134.75767693481956
Iteration: 31, Func. Count: 365, Neg. LLF: 134.75471064291185
Iteration: 32, Func. Count: 376, Neg. LLF: 134.75339768197222
Iteration: 33, Func. Count: 387, Neg. LLF: 134.75274405428794
Iteration: 34, Func. Count: 398, Neg. LLF: 134.75264102126755
Iteration: 35, Func. Count: 409, Neg. LLF: 134.75262988195055
Iteration: 36, Func. Count: 420, Neg. LLF: 134.75262874698305
Iteration: 37, Func. Count: 430, Neg. LLF: 134.75262877128233
Optimization terminated successfully (Exit mode 0)
Current function value: 134.75262874698305
Iterations: 37
Function evaluations: 430
Gradient evaluations: 37
Iteration: 1, Func. Count: 13, Neg. LLF: 165.64331332124223
Iteration: 2, Func. Count: 26, Neg. LLF: 59602012.09429741
Iteration: 3, Func. Count: 40, Neg. LLF: 149.20269771988185
Iteration: 4, Func. Count: 52, Neg. LLF: 149.25772857030776
Iteration: 5, Func. Count: 65, Neg. LLF: 148.03469626161163
Iteration: 6, Func. Count: 77, Neg. LLF: 148.02029732861473
Iteration: 7, Func. Count: 89, Neg. LLF: 169.86015715959792
Iteration: 8, Func. Count: 104, Neg. LLF: 148.0295027507804
Iteration: 9, Func. Count: 117, Neg. LLF: 148.01913198075619
Iteration: 10, Func. Count: 129, Neg. LLF: 148.01913019291254
Iteration: 11, Func. Count: 141, Neg. LLF: 148.01912947493878
Optimization terminated successfully (Exit mode 0)
Current function value: 148.01912947493878
Iterations: 12
Function evaluations: 141
Gradient evaluations: 11
Iteration: 1, Func. Count: 14, Neg. LLF: 688682.2484469004
Iteration: 2, Func. Count: 29, Neg. LLF: 180.59548496539747
Iteration: 3, Func. Count: 43, Neg. LLF: 148.40550308730525
Iteration: 4, Func. Count: 56, Neg. LLF: 27287.497183845742
Iteration: 5, Func. Count: 72, Neg. LLF: 147.99733005632925
Iteration: 6, Func. Count: 85, Neg. LLF: 147.72452938391714
Iteration: 7, Func. Count: 98, Neg. LLF: 147.70496843319629
Iteration: 8, Func. Count: 111, Neg. LLF: 147.69583942158445
Iteration: 9, Func. Count: 124, Neg. LLF: 147.69375495606994
Iteration: 10, Func. Count: 147, Neg. LLF: 147.69840088372254
Iteration: 11, Func. Count: 170, Neg. LLF: 147.69772089590646
Iteration: 12, Func. Count: 193, Neg. LLF: 147.70039715643318
Iteration: 13, Func. Count: 206, Neg. LLF: 147.69707980827332
Iteration: 14, Func. Count: 229, Neg. LLF: 147.69911799321343
Iteration: 15, Func. Count: 252, Neg. LLF: 147.69216958590593
Iteration: 16, Func. Count: 275, Neg. LLF: 147.7065621304804
Iteration: 17, Func. Count: 290, Neg. LLF: 147.70081429545465
Iteration: 18, Func. Count: 303, Neg. LLF: 147.70081313344875
Iteration: 19, Func. Count: 316, Neg. LLF: 147.7027471584803
Optimization terminated successfully (Exit mode 0)
Current function value: 147.70081310038515
Iterations: 21
Function evaluations: 319
Gradient evaluations: 19
Iteration: 1, Func. Count: 15, Neg. LLF: 2881941.636660074
Iteration: 2, Func. Count: 30, Neg. LLF: 4095072.844421509
Iteration: 3, Func. Count: 46, Neg. LLF: 161.37854287269488
Iteration: 4, Func. Count: 61, Neg. LLF: 153.4632599285782
Iteration: 5, Func. Count: 76, Neg. LLF: 160.52853627449758
Iteration: 6, Func. Count: 91, Neg. LLF: 148.3737368460098
Iteration: 7, Func. Count: 105, Neg. LLF: 151.23268433129596
Iteration: 8, Func. Count: 120, Neg. LLF: 148.0067636307491
Iteration: 9, Func. Count: 134, Neg. LLF: 147.94350619731594
Iteration: 10, Func. Count: 148, Neg. LLF: 147.93633837320075
Iteration: 11, Func. Count: 162, Neg. LLF: 147.93311083340987
Iteration: 12, Func. Count: 176, Neg. LLF: 147.9348650788027
Iteration: 13, Func. Count: 190, Neg. LLF: 147.93397807876354
Iteration: 14, Func. Count: 204, Neg. LLF: 147.93152727450712
Iteration: 15, Func. Count: 228, Neg. LLF: 148.17520721058753
Iteration: 16, Func. Count: 245, Neg. LLF: 147.93657073028655
Iteration: 17, Func. Count: 262, Neg. LLF: 147.9345963896499
Iteration: 18, Func. Count: 278, Neg. LLF: 147.93457504322757
Iteration: 19, Func. Count: 293, Neg. LLF: 147.93457037698258
Iteration: 20, Func. Count: 308, Neg. LLF: 147.9345890219192
Iteration: 21, Func. Count: 327, Neg. LLF: 147.93457061495002
Iteration: 22, Func. Count: 343, Neg. LLF: 147.93457073404795
Iteration: 23, Func. Count: 360, Neg. LLF: 147.93457037188847
Iteration: 24, Func. Count: 375, Neg. LLF: 147.93586445111407
Iteration: 25, Func. Count: 394, Neg. LLF: 147.9352062299203
Iteration: 26, Func. Count: 411, Neg. LLF: 147.93444215741204
Optimization terminated successfully (Exit mode 0)
Current function value: 147.93444268509768
Iterations: 30
Function evaluations: 411
Gradient evaluations: 26
Iteration: 1, Func. Count: 16, Neg. LLF: 2766374.6549275727
Iteration: 2, Func. Count: 32, Neg. LLF: 4237480.734083243
Iteration: 3, Func. Count: 48, Neg. LLF: 143.6388344778981
Iteration: 4, Func. Count: 63, Neg. LLF: 145.59302184401002
Iteration: 5, Func. Count: 79, Neg. LLF: 258.97185100850703
Iteration: 6, Func. Count: 96, Neg. LLF: 142.73976559621016
Iteration: 7, Func. Count: 111, Neg. LLF: 244.79865741526228
Iteration: 8, Func. Count: 128, Neg. LLF: 142.69330502341077
Iteration: 9, Func. Count: 144, Neg. LLF: 142.9334335339917
Iteration: 10, Func. Count: 160, Neg. LLF: 142.55110839139866
Iteration: 11, Func. Count: 175, Neg. LLF: 142.49986563501383
Iteration: 12, Func. Count: 190, Neg. LLF: 141.83840216443633
Iteration: 13, Func. Count: 205, Neg. LLF: 79785.63054029066
Iteration: 14, Func. Count: 221, Neg. LLF: 153.73714465579562
Iteration: 15, Func. Count: 238, Neg. LLF: 141.4057845810275
Iteration: 16, Func. Count: 254, Neg. LLF: 166.00884456558285
Iteration: 17, Func. Count: 270, Neg. LLF: 147.2486968395036
Iteration: 18, Func. Count: 287, Neg. LLF: 143.1438998843385
Iteration: 19, Func. Count: 303, Neg. LLF: 136.19187713894203
Iteration: 20, Func. Count: 318, Neg. LLF: 137.95321281010325
Iteration: 21, Func. Count: 334, Neg. LLF: 136.69329360278783
Iteration: 22, Func. Count: 350, Neg. LLF: 135.560160657739
Iteration: 23, Func. Count: 365, Neg. LLF: 135.54660715605723
Iteration: 24, Func. Count: 380, Neg. LLF: 135.5028383998062
Iteration: 25, Func. Count: 395, Neg. LLF: 135.49751815596952
Iteration: 26, Func. Count: 410, Neg. LLF: 135.46979852081185
Iteration: 27, Func. Count: 425, Neg. LLF: 135.46251681891638
Iteration: 28, Func. Count: 440, Neg. LLF: 135.4359245471447
Iteration: 29, Func. Count: 455, Neg. LLF: 135.40607720050315
Iteration: 30, Func. Count: 470, Neg. LLF: 135.3850523264829
Iteration: 31, Func. Count: 485, Neg. LLF: 135.3712068264301
Iteration: 32, Func. Count: 500, Neg. LLF: 135.35283970317442
Iteration: 33, Func. Count: 515, Neg. LLF: 135.29212649258136
Iteration: 34, Func. Count: 530, Neg. LLF: 135.03409555296068
Iteration: 35, Func. Count: 545, Neg. LLF: 135.29796958951653
Iteration: 36, Func. Count: 561, Neg. LLF: 134.30617096220172
Iteration: 37, Func. Count: 576, Neg. LLF: 133.93454037167692
Iteration: 38, Func. Count: 591, Neg. LLF: 172.94781206719972
Iteration: 39, Func. Count: 608, Neg. LLF: 310517.8659635791
Iteration: 40, Func. Count: 624, Neg. LLF: 217.1924140540188
Iteration: 41, Func. Count: 641, Neg. LLF: 139.18918317634177
Iteration: 42, Func. Count: 657, Neg. LLF: 134.20584717233396
Iteration: 43, Func. Count: 673, Neg. LLF: 133.8456912078028
Iteration: 44, Func. Count: 689, Neg. LLF: 133.22933927973497
Iteration: 45, Func. Count: 704, Neg. LLF: 133.2264943715628
Iteration: 46, Func. Count: 719, Neg. LLF: 133.22576664325368
Iteration: 47, Func. Count: 734, Neg. LLF: 133.22551478755557
Iteration: 48, Func. Count: 749, Neg. LLF: 133.22549731262836
Iteration: 49, Func. Count: 764, Neg. LLF: 133.22546716712606
Iteration: 50, Func. Count: 778, Neg. LLF: 133.22546706796953
Optimization terminated successfully (Exit mode 0)
Current function value: 133.22546716712606
Iterations: 51
Function evaluations: 778
Gradient evaluations: 50
Iteration: 1, Func. Count: 12, Neg. LLF: 150.15482104213186
Iteration: 2, Func. Count: 23, Neg. LLF: 150.71437148890217
Iteration: 3, Func. Count: 38, Neg. LLF: 184.6875117591931
Iteration: 4, Func. Count: 51, Neg. LLF: 151.54935076514334
Iteration: 5, Func. Count: 63, Neg. LLF: 147.99498544231213
Iteration: 6, Func. Count: 74, Neg. LLF: 147.03722626673243
Iteration: 7, Func. Count: 85, Neg. LLF: 143.8455435150849
Iteration: 8, Func. Count: 96, Neg. LLF: 180.73829631595942
Iteration: 9, Func. Count: 108, Neg. LLF: 173.7596807592634
Iteration: 10, Func. Count: 122, Neg. LLF: 368.63734039187545
Iteration: 11, Func. Count: 134, Neg. LLF: 175.01161937654413
Iteration: 12, Func. Count: 146, Neg. LLF: 181.6515482742098
Iteration: 13, Func. Count: 158, Neg. LLF: 166.37924242408081
Iteration: 14, Func. Count: 170, Neg. LLF: 167.77964087425153
Iteration: 15, Func. Count: 182, Neg. LLF: 165.0629813554763
Iteration: 16, Func. Count: 194, Neg. LLF: 168.58361209583376
Iteration: 17, Func. Count: 206, Neg. LLF: 168.5714490312914
Iteration: 18, Func. Count: 218, Neg. LLF: 171.40271383938716
Iteration: 19, Func. Count: 230, Neg. LLF: 139.919828551578
Iteration: 20, Func. Count: 242, Neg. LLF: 136.49946838405413
Iteration: 21, Func. Count: 254, Neg. LLF: 136.69197446716512
Iteration: 22, Func. Count: 266, Neg. LLF: 136.2072393650801
Iteration: 23, Func. Count: 277, Neg. LLF: 136.0157898002192
Iteration: 24, Func. Count: 288, Neg. LLF: 135.70293306745785
Iteration: 25, Func. Count: 299, Neg. LLF: 135.4736149889281
Iteration: 26, Func. Count: 310, Neg. LLF: 135.3128711244599
Iteration: 27, Func. Count: 321, Neg. LLF: 135.12807190772335
Iteration: 28, Func. Count: 332, Neg. LLF: 134.78954712061778
Iteration: 29, Func. Count: 343, Neg. LLF: 134.7807524744896
Iteration: 30, Func. Count: 354, Neg. LLF: 134.75767693481956
Iteration: 31, Func. Count: 365, Neg. LLF: 134.75471064291185
Iteration: 32, Func. Count: 376, Neg. LLF: 134.75339768197222
Iteration: 33, Func. Count: 387, Neg. LLF: 134.75274405428794
Iteration: 34, Func. Count: 398, Neg. LLF: 134.75264102126755
Iteration: 35, Func. Count: 409, Neg. LLF: 134.75262988195055
Iteration: 36, Func. Count: 420, Neg. LLF: 134.75262874698305
Iteration: 37, Func. Count: 430, Neg. LLF: 134.75262877128233
Optimization terminated successfully (Exit mode 0)
Current function value: 134.75262874698305
Iterations: 37
Function evaluations: 430
Gradient evaluations: 37
Iteration: 1, Func. Count: 5, Neg. LLF: 158.66950165457143
Iteration: 2, Func. Count: 9, Neg. LLF: 160.4895311872906
Iteration: 3, Func. Count: 14, Neg. LLF: 155.90293808422342
Iteration: 4, Func. Count: 18, Neg. LLF: 155.88143427659824
Iteration: 5, Func. Count: 22, Neg. LLF: 155.85080234937786
Iteration: 6, Func. Count: 26, Neg. LLF: 155.8138684044323
Iteration: 7, Func. Count: 30, Neg. LLF: 155.79804126532397
Iteration: 8, Func. Count: 34, Neg. LLF: 155.795233887655
Iteration: 9, Func. Count: 38, Neg. LLF: 155.79508209937046
Iteration: 10, Func. Count: 42, Neg. LLF: 155.795074795205
Iteration: 11, Func. Count: 45, Neg. LLF: 155.79507480566903
Optimization terminated successfully (Exit mode 0)
Current function value: 155.795074795205
Iterations: 11
Function evaluations: 45
Gradient evaluations: 11
Iteration: 1, Func. Count: 6, Neg. LLF: 171.55245066729117
Iteration: 2, Func. Count: 12, Neg. LLF: 253989518.1808437
Iteration: 3, Func. Count: 19, Neg. LLF: 135.37873297273285
Iteration: 4, Func. Count: 24, Neg. LLF: 135.23506660973146
Iteration: 5, Func. Count: 29, Neg. LLF: 134.9750204396299
Iteration: 6, Func. Count: 34, Neg. LLF: 134.94880256212173
Iteration: 7, Func. Count: 39, Neg. LLF: 134.9468117292574
Iteration: 8, Func. Count: 44, Neg. LLF: 134.94680900714644
Iteration: 9, Func. Count: 49, Neg. LLF: 134.9468047620812
Iteration: 10, Func. Count: 53, Neg. LLF: 134.94680441663786
Optimization terminated successfully (Exit mode 0)
Current function value: 134.9468047620812
Iterations: 10
Function evaluations: 53
Gradient evaluations: 10
Iteration: 1, Func. Count: 7, Neg. LLF: 32988489.079045456
Iteration: 2, Func. Count: 15, Neg. LLF: 4753.117520273869
Iteration: 3, Func. Count: 23, Neg. LLF: 136.36446759551845
Iteration: 4, Func. Count: 29, Neg. LLF: 141.7729374138741
Iteration: 5, Func. Count: 36, Neg. LLF: 134.7321631671363
Iteration: 6, Func. Count: 42, Neg. LLF: 134.61008701550585
Iteration: 7, Func. Count: 48, Neg. LLF: 134.6097551188522
Iteration: 8, Func. Count: 54, Neg. LLF: 134.60975167489195
Iteration: 9, Func. Count: 59, Neg. LLF: 134.60975135108168
Optimization terminated successfully (Exit mode 0)
Current function value: 134.60975167489195
Iterations: 9
Function evaluations: 59
Gradient evaluations: 9
Iteration: 1, Func. Count: 8, Neg. LLF: 29730790.404813625
Iteration: 2, Func. Count: 16, Neg. LLF: 6304.11854017594
Iteration: 3, Func. Count: 25, Neg. LLF: 140.47414419778437
Iteration: 4, Func. Count: 32, Neg. LLF: 143.4325274283835
Iteration: 5, Func. Count: 40, Neg. LLF: 300.3016491669434
Iteration: 6, Func. Count: 48, Neg. LLF: 137.6451085948473
Iteration: 7, Func. Count: 55, Neg. LLF: 137.55461361869973
Iteration: 8, Func. Count: 62, Neg. LLF: 137.5121779416567
Iteration: 9, Func. Count: 69, Neg. LLF: 137.45396813249735
Iteration: 10, Func. Count: 76, Neg. LLF: 137.43423008220068
Iteration: 11, Func. Count: 83, Neg. LLF: 137.4290120319503
Iteration: 12, Func. Count: 90, Neg. LLF: 137.42900328599794
Iteration: 13, Func. Count: 96, Neg. LLF: 137.42900328587967
Optimization terminated successfully (Exit mode 0)
Current function value: 137.42900328599794
Iterations: 13
Function evaluations: 96
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 26340236.263270274
Iteration: 2, Func. Count: 18, Neg. LLF: 5500830996.4158
Iteration: 3, Func. Count: 28, Neg. LLF: 134.41839909280904
Iteration: 4, Func. Count: 36, Neg. LLF: 134.5721355801949
Iteration: 5, Func. Count: 45, Neg. LLF: 133.58429293859223
Iteration: 6, Func. Count: 53, Neg. LLF: 133.24806535880472
Iteration: 7, Func. Count: 61, Neg. LLF: 133.22857268954866
Iteration: 8, Func. Count: 69, Neg. LLF: 133.22777237005587
Iteration: 9, Func. Count: 77, Neg. LLF: 133.2277701149507
Iteration: 10, Func. Count: 84, Neg. LLF: 133.22776995099588
Optimization terminated successfully (Exit mode 0)
Current function value: 133.2277701149507
Iterations: 10
Function evaluations: 84
Gradient evaluations: 10
Iteration: 1, Func. Count: 6, Neg. LLF: 154.7182270222167
Iteration: 2, Func. Count: 11, Neg. LLF: 166.50279337098945
Iteration: 3, Func. Count: 17, Neg. LLF: 148.54981082683935
Iteration: 4, Func. Count: 23, Neg. LLF: 147.84305437176388
Iteration: 5, Func. Count: 28, Neg. LLF: 146.31829749413663
Iteration: 6, Func. Count: 33, Neg. LLF: 619013.2718509278
Iteration: 7, Func. Count: 39, Neg. LLF: 595580.7085787199
Iteration: 8, Func. Count: 45, Neg. LLF: 576879.066000604
Iteration: 9, Func. Count: 51, Neg. LLF: 146.49214125550765
Iteration: 10, Func. Count: 57, Neg. LLF: 144.8998574994067
Iteration: 11, Func. Count: 63, Neg. LLF: 144.84695910169174
Iteration: 12, Func. Count: 68, Neg. LLF: 144.84681602682457
Iteration: 13, Func. Count: 73, Neg. LLF: 144.84680376918254
Iteration: 14, Func. Count: 78, Neg. LLF: 144.84680172541536
Iteration: 15, Func. Count: 82, Neg. LLF: 144.84680164714567
Optimization terminated successfully (Exit mode 0)
Current function value: 144.84680172541536
Iterations: 15
Function evaluations: 82
Gradient evaluations: 15
Iteration: 1, Func. Count: 7, Neg. LLF: 172.8829562423214
Iteration: 2, Func. Count: 14, Neg. LLF: 245885052.45460966
Iteration: 3, Func. Count: 22, Neg. LLF: 133.6185854012871
Iteration: 4, Func. Count: 28, Neg. LLF: 133.5290545714048
Iteration: 5, Func. Count: 34, Neg. LLF: 133.36827441180645
Iteration: 6, Func. Count: 40, Neg. LLF: 133.35558403178777
Iteration: 7, Func. Count: 46, Neg. LLF: 133.35549639586887
Iteration: 8, Func. Count: 52, Neg. LLF: 133.35549590806215
Optimization terminated successfully (Exit mode 0)
Current function value: 133.35549590806215
Iterations: 8
Function evaluations: 52
Gradient evaluations: 8
Iteration: 1, Func. Count: 8, Neg. LLF: 33547176.391941346
Iteration: 2, Func. Count: 17, Neg. LLF: 5463.353735039927
Iteration: 3, Func. Count: 26, Neg. LLF: 140.06941423720963
Iteration: 4, Func. Count: 33, Neg. LLF: 133.83750365462623
Iteration: 5, Func. Count: 40, Neg. LLF: 135.15147937405325
Iteration: 6, Func. Count: 48, Neg. LLF: 133.54342789006128
Iteration: 7, Func. Count: 56, Neg. LLF: 133.36177389648367
Iteration: 8, Func. Count: 64, Neg. LLF: 133.32198282755672
Iteration: 9, Func. Count: 71, Neg. LLF: 133.27978010966444
Iteration: 10, Func. Count: 78, Neg. LLF: 133.8316059683927
Iteration: 11, Func. Count: 86, Neg. LLF: 135.39651179606784
Iteration: 12, Func. Count: 94, Neg. LLF: 135.41806838954182
Iteration: 13, Func. Count: 102, Neg. LLF: 133.89366000914958
Iteration: 14, Func. Count: 110, Neg. LLF: 133.14538935313013
Iteration: 15, Func. Count: 118, Neg. LLF: 133.12256491233993
Iteration: 16, Func. Count: 125, Neg. LLF: 133.12250180883103
Iteration: 17, Func. Count: 132, Neg. LLF: 133.12249838997266
Iteration: 18, Func. Count: 138, Neg. LLF: 133.12249801444347
Optimization terminated successfully (Exit mode 0)
Current function value: 133.12249838997266
Iterations: 18
Function evaluations: 138
Gradient evaluations: 18
Iteration: 1, Func. Count: 9, Neg. LLF: 29740431.154929046
Iteration: 2, Func. Count: 18, Neg. LLF: 7346.154262575146
Iteration: 3, Func. Count: 29, Neg. LLF: 137.86753002895844
Iteration: 4, Func. Count: 37, Neg. LLF: 163.28364827017566
Iteration: 5, Func. Count: 46, Neg. LLF: 140.72573197571097
Iteration: 6, Func. Count: 55, Neg. LLF: 133.32455866590774
Iteration: 7, Func. Count: 64, Neg. LLF: 132.85724736271285
Iteration: 8, Func. Count: 72, Neg. LLF: 132.8305238033097
Iteration: 9, Func. Count: 80, Neg. LLF: 132.82974674363018
Iteration: 10, Func. Count: 88, Neg. LLF: 132.82972997388626
Iteration: 11, Func. Count: 95, Neg. LLF: 132.82972963698106
Optimization terminated successfully (Exit mode 0)
Current function value: 132.82972997388626
Iterations: 11
Function evaluations: 95
Gradient evaluations: 11
Iteration: 1, Func. Count: 10, Neg. LLF: 26075049.753120374
Iteration: 2, Func. Count: 20, Neg. LLF: 8755932621.880173
Iteration: 3, Func. Count: 31, Neg. LLF: 134.4010619729109
Iteration: 4, Func. Count: 40, Neg. LLF: 137.1132920399308
Iteration: 5, Func. Count: 50, Neg. LLF: 144.6283941561335
Iteration: 6, Func. Count: 60, Neg. LLF: 130.2469519979932
Iteration: 7, Func. Count: 69, Neg. LLF: 130.1851612368096
Iteration: 8, Func. Count: 78, Neg. LLF: 130.17875849205984
Iteration: 9, Func. Count: 87, Neg. LLF: 130.1778039911929
Iteration: 10, Func. Count: 96, Neg. LLF: 130.1776996775819
Iteration: 11, Func. Count: 104, Neg. LLF: 130.17769939892418
Optimization terminated successfully (Exit mode 0)
Current function value: 130.1776996775819
Iterations: 11
Function evaluations: 104
Gradient evaluations: 11
Iteration: 1, Func. Count: 7, Neg. LLF: 152.25491342058206
Iteration: 2, Func. Count: 13, Neg. LLF: 170.22832107973278
Iteration: 3, Func. Count: 20, Neg. LLF: 148.20821353400376
Iteration: 4, Func. Count: 26, Neg. LLF: 147.86381997938244
Iteration: 5, Func. Count: 32, Neg. LLF: 147.05138807715332
Iteration: 6, Func. Count: 38, Neg. LLF: 147.62821087727528
Iteration: 7, Func. Count: 45, Neg. LLF: 152.99262781346218
Iteration: 8, Func. Count: 52, Neg. LLF: 508.3982549814686
Iteration: 9, Func. Count: 59, Neg. LLF: 162.0639416271784
Iteration: 10, Func. Count: 66, Neg. LLF: 145.11969675575097
Iteration: 11, Func. Count: 72, Neg. LLF: 144.9069634662072
Iteration: 12, Func. Count: 78, Neg. LLF: 144.8582077258734
Iteration: 13, Func. Count: 84, Neg. LLF: 144.84722190840964
Iteration: 14, Func. Count: 90, Neg. LLF: 144.84680757915186
Iteration: 15, Func. Count: 96, Neg. LLF: 144.84680174660733
Iteration: 16, Func. Count: 101, Neg. LLF: 144.84680168624703
Optimization terminated successfully (Exit mode 0)
Current function value: 144.84680174660733
Iterations: 16
Function evaluations: 101
Gradient evaluations: 16
Iteration: 1, Func. Count: 8, Neg. LLF: 174.1564156319603
Iteration: 2, Func. Count: 16, Neg. LLF: 260032476.01417333
Iteration: 3, Func. Count: 25, Neg. LLF: 133.38716513012074
Iteration: 4, Func. Count: 32, Neg. LLF: 134.48944000805514
Iteration: 5, Func. Count: 40, Neg. LLF: 132.89327501830948
Iteration: 6, Func. Count: 47, Neg. LLF: 132.89137365005004
Iteration: 7, Func. Count: 54, Neg. LLF: 132.8913716991637
Iteration: 8, Func. Count: 60, Neg. LLF: 132.8913711478232
Optimization terminated successfully (Exit mode 0)
Current function value: 132.8913716991637
Iterations: 9
Function evaluations: 60
Gradient evaluations: 8
Iteration: 1, Func. Count: 9, Neg. LLF: 34517960.6738935
Iteration: 2, Func. Count: 19, Neg. LLF: 11025.703937596858
Iteration: 3, Func. Count: 29, Neg. LLF: 135.58995795134413
Iteration: 4, Func. Count: 37, Neg. LLF: 150.64478080998742
Iteration: 5, Func. Count: 47, Neg. LLF: 138.65427106021758
Iteration: 6, Func. Count: 56, Neg. LLF: 133.41856819347674
Iteration: 7, Func. Count: 64, Neg. LLF: 133.21598769149014
Iteration: 8, Func. Count: 72, Neg. LLF: 133.15558412951
Iteration: 9, Func. Count: 80, Neg. LLF: 133.13005998789924
Iteration: 10, Func. Count: 88, Neg. LLF: 133.12306370458728
Iteration: 11, Func. Count: 96, Neg. LLF: 133.12251564055722
Iteration: 12, Func. Count: 104, Neg. LLF: 133.12249836555864
Iteration: 13, Func. Count: 111, Neg. LLF: 133.12249798959445
Optimization terminated successfully (Exit mode 0)
Current function value: 133.12249836555864
Iterations: 13
Function evaluations: 111
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 30191062.302891772
Iteration: 2, Func. Count: 20, Neg. LLF: 28120.750180971856
Iteration: 3, Func. Count: 32, Neg. LLF: 137.67839238991291
Iteration: 4, Func. Count: 41, Neg. LLF: 163.52684663674313
Iteration: 5, Func. Count: 51, Neg. LLF: 139.88942173911363
Iteration: 6, Func. Count: 61, Neg. LLF: 139.4239832643206
Iteration: 7, Func. Count: 71, Neg. LLF: 131.92002877088538
Iteration: 8, Func. Count: 80, Neg. LLF: 130.93767173930303
Iteration: 9, Func. Count: 89, Neg. LLF: 129.70850364738433
Iteration: 10, Func. Count: 98, Neg. LLF: 129.59668668514632
Iteration: 11, Func. Count: 107, Neg. LLF: 129.59076063613148
Iteration: 12, Func. Count: 116, Neg. LLF: 129.58680740578342
Iteration: 13, Func. Count: 125, Neg. LLF: 129.58679806139057
Iteration: 14, Func. Count: 134, Neg. LLF: 129.58705743813988
Optimization terminated successfully (Exit mode 0)
Current function value: 129.58679807528222
Iterations: 15
Function evaluations: 137
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 26438544.414227866
Iteration: 2, Func. Count: 22, Neg. LLF: 10079249369.82881
Iteration: 3, Func. Count: 34, Neg. LLF: 133.82601487021444
Iteration: 4, Func. Count: 44, Neg. LLF: 139.2509736508201
Iteration: 5, Func. Count: 55, Neg. LLF: 139.11679162948354
Iteration: 6, Func. Count: 66, Neg. LLF: 130.41179158992577
Iteration: 7, Func. Count: 76, Neg. LLF: 130.19553931774576
Iteration: 8, Func. Count: 86, Neg. LLF: 130.17950316820375
Iteration: 9, Func. Count: 96, Neg. LLF: 130.17797377022148
Iteration: 10, Func. Count: 106, Neg. LLF: 130.17770332655564
Iteration: 11, Func. Count: 116, Neg. LLF: 130.17769940890906
Iteration: 12, Func. Count: 125, Neg. LLF: 130.1776991306831
Optimization terminated successfully (Exit mode 0)
Current function value: 130.17769940890906
Iterations: 12
Function evaluations: 125
Gradient evaluations: 12
Iteration: 1, Func. Count: 8, Neg. LLF: 150.75025322092168
Iteration: 2, Func. Count: 15, Neg. LLF: 169.99538049349422
Iteration: 3, Func. Count: 23, Neg. LLF: 148.1433803789216
Iteration: 4, Func. Count: 30, Neg. LLF: 147.79273987552986
Iteration: 5, Func. Count: 37, Neg. LLF: 145.89907821902742
Iteration: 6, Func. Count: 44, Neg. LLF: 622027.0800405776
Iteration: 7, Func. Count: 52, Neg. LLF: 260849.25189390566
Iteration: 8, Func. Count: 60, Neg. LLF: 167849.7750557949
Iteration: 9, Func. Count: 68, Neg. LLF: 147.39546296928214
Iteration: 10, Func. Count: 76, Neg. LLF: 144.91768247717886
Iteration: 11, Func. Count: 84, Neg. LLF: 144.73619702443816
Iteration: 12, Func. Count: 92, Neg. LLF: 144.70768187063766
Iteration: 13, Func. Count: 100, Neg. LLF: 144.7067864916504
Iteration: 14, Func. Count: 107, Neg. LLF: 144.70676366205626
Iteration: 15, Func. Count: 114, Neg. LLF: 144.7067635076786
Optimization terminated successfully (Exit mode 0)
Current function value: 144.7067635076786
Iterations: 15
Function evaluations: 114
Gradient evaluations: 15
Iteration: 1, Func. Count: 9, Neg. LLF: 175.23089553929088
Iteration: 2, Func. Count: 18, Neg. LLF: 251934152.03297657
Iteration: 3, Func. Count: 28, Neg. LLF: 131.40025210289855
Iteration: 4, Func. Count: 36, Neg. LLF: 135.92537475050966
Iteration: 5, Func. Count: 45, Neg. LLF: 130.89316937481343
Iteration: 6, Func. Count: 53, Neg. LLF: 130.8843965535332
Iteration: 7, Func. Count: 61, Neg. LLF: 130.88395628817472
Iteration: 8, Func. Count: 69, Neg. LLF: 130.8839082776218
Iteration: 9, Func. Count: 77, Neg. LLF: 136.78019965558283
Iteration: 10, Func. Count: 88, Neg. LLF: 130.8839067571878
Optimization terminated successfully (Exit mode 0)
Current function value: 130.8839067571878
Iterations: 11
Function evaluations: 88
Gradient evaluations: 10
Iteration: 1, Func. Count: 10, Neg. LLF: 35042502.3070538
Iteration: 2, Func. Count: 21, Neg. LLF: 15050.843744813794
Iteration: 3, Func. Count: 32, Neg. LLF: 135.53078326526938
Iteration: 4, Func. Count: 41, Neg. LLF: 179.42003570798516
Iteration: 5, Func. Count: 53, Neg. LLF: 134.22826922442036
Iteration: 6, Func. Count: 63, Neg. LLF: 133.57384681812357
Iteration: 7, Func. Count: 73, Neg. LLF: 131.79551783409096
Iteration: 8, Func. Count: 82, Neg. LLF: 131.64927110602187
Iteration: 9, Func. Count: 91, Neg. LLF: 131.53581398792718
Iteration: 10, Func. Count: 100, Neg. LLF: 131.4702279080638
Iteration: 11, Func. Count: 109, Neg. LLF: 131.38898271748909
Iteration: 12, Func. Count: 118, Neg. LLF: 130.88800314773792
Iteration: 13, Func. Count: 127, Neg. LLF: 130.885404253398
Iteration: 14, Func. Count: 136, Neg. LLF: 130.88428640299847
Iteration: 15, Func. Count: 145, Neg. LLF: 130.8839137554863
Iteration: 16, Func. Count: 154, Neg. LLF: 131.02388230694186
Optimization terminated successfully (Exit mode 0)
Current function value: 130.88391369894123
Iterations: 17
Function evaluations: 157
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 30446243.250410683
Iteration: 2, Func. Count: 22, Neg. LLF: 1112805.1811766897
Iteration: 3, Func. Count: 35, Neg. LLF: 153.97324436946346
Iteration: 4, Func. Count: 46, Neg. LLF: 150.60419033255175
Iteration: 5, Func. Count: 57, Neg. LLF: 132.79051837305317
Iteration: 6, Func. Count: 67, Neg. LLF: 159.15479124878985
Iteration: 7, Func. Count: 79, Neg. LLF: 131.64059030829083
Iteration: 8, Func. Count: 89, Neg. LLF: 131.56391972962066
Iteration: 9, Func. Count: 99, Neg. LLF: 131.5576769740454
Iteration: 10, Func. Count: 109, Neg. LLF: 131.55739194692302
Iteration: 11, Func. Count: 119, Neg. LLF: 131.55739123850466
Optimization terminated successfully (Exit mode 0)
Current function value: 131.55739123850466
Iterations: 11
Function evaluations: 119
Gradient evaluations: 11
Iteration: 1, Func. Count: 12, Neg. LLF: 26607908.911926754
Iteration: 2, Func. Count: 24, Neg. LLF: 9565904060.160519
Iteration: 3, Func. Count: 37, Neg. LLF: 134.11475775610668
Iteration: 4, Func. Count: 48, Neg. LLF: 135.31959966959437
Iteration: 5, Func. Count: 60, Neg. LLF: 152.4920957208516
Iteration: 6, Func. Count: 72, Neg. LLF: 130.31634038056097
Iteration: 7, Func. Count: 83, Neg. LLF: 130.18864226246237
Iteration: 8, Func. Count: 94, Neg. LLF: 130.17829380495428
Iteration: 9, Func. Count: 105, Neg. LLF: 130.1778070118692
Iteration: 10, Func. Count: 116, Neg. LLF: 130.17770516365312
Iteration: 11, Func. Count: 127, Neg. LLF: 130.17769955333688
Iteration: 12, Func. Count: 137, Neg. LLF: 130.17769927508124
Optimization terminated successfully (Exit mode 0)
Current function value: 130.17769955333688
Iterations: 12
Function evaluations: 137
Gradient evaluations: 12
Iteration: 1, Func. Count: 5, Neg. LLF: 158.09561020325992
Iteration: 2, Func. Count: 9, Neg. LLF: 158.5309789852501
Iteration: 3, Func. Count: 14, Neg. LLF: 158.02506944396478
Iteration: 4, Func. Count: 18, Neg. LLF: 158.02503485937848
Iteration: 5, Func. Count: 22, Neg. LLF: 158.02489885898126
Iteration: 6, Func. Count: 26, Neg. LLF: 158.0248278163787
Iteration: 7, Func. Count: 29, Neg. LLF: 158.02482784979335
Optimization terminated successfully (Exit mode 0)
Current function value: 158.0248278163787
Iterations: 7
Function evaluations: 29
Gradient evaluations: 7
Iteration: 1, Func. Count: 6, Neg. LLF: 182.0427739915503
Iteration: 2, Func. Count: 12, Neg. LLF: 231.9290539686452
Iteration: 3, Func. Count: 19, Neg. LLF: 155.84397279009963
Iteration: 4, Func. Count: 25, Neg. LLF: 139.55681961661293
Iteration: 5, Func. Count: 30, Neg. LLF: 139.47686253443237
Iteration: 6, Func. Count: 36, Neg. LLF: 139.10650893922906
Iteration: 7, Func. Count: 41, Neg. LLF: 139.1058823648584
Iteration: 8, Func. Count: 45, Neg. LLF: 139.10588202220956
Optimization terminated successfully (Exit mode 0)
Current function value: 139.1058823648584
Iterations: 8
Function evaluations: 45
Gradient evaluations: 8
Iteration: 1, Func. Count: 7, Neg. LLF: 35170346.136342615
Iteration: 2, Func. Count: 15, Neg. LLF: 2515237187.2988696
Iteration: 3, Func. Count: 23, Neg. LLF: 145.28281748831492
Iteration: 4, Func. Count: 29, Neg. LLF: 136.27364914756512
Iteration: 5, Func. Count: 35, Neg. LLF: 135.24423230975148
Iteration: 6, Func. Count: 41, Neg. LLF: 135.17573659057385
Iteration: 7, Func. Count: 47, Neg. LLF: 135.17812746528617
Iteration: 8, Func. Count: 54, Neg. LLF: 135.17152208577446
Iteration: 9, Func. Count: 60, Neg. LLF: 135.1691742329479
Optimization terminated successfully (Exit mode 0)
Current function value: 135.1691745555755
Iterations: 9
Function evaluations: 60
Gradient evaluations: 9
Iteration: 1, Func. Count: 8, Neg. LLF: 26171675.764935754
Iteration: 2, Func. Count: 16, Neg. LLF: 1465509925.6654484
Iteration: 3, Func. Count: 25, Neg. LLF: 153.46334681218417
Iteration: 4, Func. Count: 33, Neg. LLF: 147.72723584193542
Iteration: 5, Func. Count: 41, Neg. LLF: 140.0722652614656
Iteration: 6, Func. Count: 48, Neg. LLF: 156.14384854795097
Iteration: 7, Func. Count: 56, Neg. LLF: 138.99087850806038
Iteration: 8, Func. Count: 63, Neg. LLF: 139.1936788428741
Iteration: 9, Func. Count: 71, Neg. LLF: 138.88861579418412
Iteration: 10, Func. Count: 78, Neg. LLF: 138.867936305821
Iteration: 11, Func. Count: 85, Neg. LLF: 138.86777448491767
Iteration: 12, Func. Count: 91, Neg. LLF: 138.86777429577813
Optimization terminated successfully (Exit mode 0)
Current function value: 138.86777448491767
Iterations: 12
Function evaluations: 91
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 22011280.102604374
Iteration: 2, Func. Count: 18, Neg. LLF: 680288008.9688933
Iteration: 3, Func. Count: 28, Neg. LLF: 168.54873237376427
Iteration: 4, Func. Count: 37, Neg. LLF: 190.51643717351067
Iteration: 5, Func. Count: 46, Neg. LLF: 148.11178239429475
Iteration: 6, Func. Count: 55, Neg. LLF: 141.81059306743342
Iteration: 7, Func. Count: 63, Neg. LLF: 139.11863158492713
Iteration: 8, Func. Count: 71, Neg. LLF: 137.21134827477792
Iteration: 9, Func. Count: 79, Neg. LLF: 133.83406526175463
Iteration: 10, Func. Count: 87, Neg. LLF: 135.78492505832088
Iteration: 11, Func. Count: 96, Neg. LLF: 133.67465970246695
Iteration: 12, Func. Count: 104, Neg. LLF: 133.6676214586231
Iteration: 13, Func. Count: 112, Neg. LLF: 133.66372224613835
Iteration: 14, Func. Count: 120, Neg. LLF: 133.66365067036546
Iteration: 15, Func. Count: 128, Neg. LLF: 133.66364618749904
Iteration: 16, Func. Count: 135, Neg. LLF: 133.66364603265714
Optimization terminated successfully (Exit mode 0)
Current function value: 133.66364618749904
Iterations: 16
Function evaluations: 135
Gradient evaluations: 16
Iteration: 1, Func. Count: 6, Neg. LLF: 157.62000715508697
Iteration: 2, Func. Count: 11, Neg. LLF: 156.30714729571696
Iteration: 3, Func. Count: 16, Neg. LLF: 157.94338756018183
Iteration: 4, Func. Count: 22, Neg. LLF: 156.05969868713635
Iteration: 5, Func. Count: 27, Neg. LLF: 155.69423614104235
Iteration: 6, Func. Count: 32, Neg. LLF: 155.74136598568649
Iteration: 7, Func. Count: 38, Neg. LLF: 155.6480669013295
Iteration: 8, Func. Count: 43, Neg. LLF: 155.63957630896283
Iteration: 9, Func. Count: 48, Neg. LLF: 155.63306209436553
Iteration: 10, Func. Count: 53, Neg. LLF: 155.5997646721398
Iteration: 11, Func. Count: 58, Neg. LLF: 155.59219073655768
Iteration: 12, Func. Count: 63, Neg. LLF: 155.5782001097948
Iteration: 13, Func. Count: 68, Neg. LLF: 155.574976056168
Iteration: 14, Func. Count: 73, Neg. LLF: 155.57477244965966
Iteration: 15, Func. Count: 78, Neg. LLF: 155.57476700762857
Iteration: 16, Func. Count: 82, Neg. LLF: 155.5747669938606
Optimization terminated successfully (Exit mode 0)
Current function value: 155.57476700762857
Iterations: 16
Function evaluations: 82
Gradient evaluations: 16
Iteration: 1, Func. Count: 7, Neg. LLF: 171.817402124815
Iteration: 2, Func. Count: 14, Neg. LLF: 240187185.65556726
Iteration: 3, Func. Count: 22, Neg. LLF: 135.10124471467728
Iteration: 4, Func. Count: 28, Neg. LLF: 135.11558501218047
Iteration: 5, Func. Count: 35, Neg. LLF: 134.95492186530927
Iteration: 6, Func. Count: 41, Neg. LLF: 134.9469237798333
Iteration: 7, Func. Count: 47, Neg. LLF: 134.9468026748777
Iteration: 8, Func. Count: 53, Neg. LLF: 134.94680358213614
Optimization terminated successfully (Exit mode 0)
Current function value: 134.94680267594916
Iterations: 8
Function evaluations: 63
Gradient evaluations: 8
Iteration: 1, Func. Count: 8, Neg. LLF: 32214107.463887654
Iteration: 2, Func. Count: 17, Neg. LLF: 497.1839986669481
Iteration: 3, Func. Count: 28, Neg. LLF: 139.03484559293426
Iteration: 4, Func. Count: 35, Neg. LLF: 136.99842446763313
Iteration: 5, Func. Count: 42, Neg. LLF: 136.20418053967512
Iteration: 6, Func. Count: 49, Neg. LLF: 134.65361005191266
Iteration: 7, Func. Count: 56, Neg. LLF: 134.61901640005104
Iteration: 8, Func. Count: 63, Neg. LLF: 134.60990766860795
Iteration: 9, Func. Count: 70, Neg. LLF: 134.6097963786737
Iteration: 10, Func. Count: 77, Neg. LLF: 134.60973485902687
Iteration: 11, Func. Count: 84, Neg. LLF: 134.60973360007003
Optimization terminated successfully (Exit mode 0)
Current function value: 134.60973485781128
Iterations: 11
Function evaluations: 94
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 29248414.890090216
Iteration: 2, Func. Count: 18, Neg. LLF: 618.490925362737
Iteration: 3, Func. Count: 30, Neg. LLF: 143.0103573249538
Iteration: 4, Func. Count: 38, Neg. LLF: 166.6735970791462
Iteration: 5, Func. Count: 48, Neg. LLF: 143.13992024922902
Iteration: 6, Func. Count: 57, Neg. LLF: 815.5838257687117
Iteration: 7, Func. Count: 67, Neg. LLF: 141.57094408599178
Iteration: 8, Func. Count: 76, Neg. LLF: 136.38531526861036
Iteration: 9, Func. Count: 84, Neg. LLF: 136.36009685286646
Iteration: 10, Func. Count: 92, Neg. LLF: 136.3563671240924
Iteration: 11, Func. Count: 100, Neg. LLF: 136.35593733293288
Iteration: 12, Func. Count: 108, Neg. LLF: 136.3559313617906
Iteration: 13, Func. Count: 115, Neg. LLF: 136.3559312431904
Optimization terminated successfully (Exit mode 0)
Current function value: 136.3559313617906
Iterations: 13
Function evaluations: 115
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 25951967.496695068
Iteration: 2, Func. Count: 20, Neg. LLF: 7251290895.348169
Iteration: 3, Func. Count: 31, Neg. LLF: 134.0360661645779
Iteration: 4, Func. Count: 40, Neg. LLF: 133.9728798034293
Iteration: 5, Func. Count: 50, Neg. LLF: 133.33137662094776
Iteration: 6, Func. Count: 59, Neg. LLF: 133.2307668460292
Iteration: 7, Func. Count: 68, Neg. LLF: 133.22779086473852
Iteration: 8, Func. Count: 77, Neg. LLF: 133.22776637328383
Iteration: 9, Func. Count: 86, Neg. LLF: 133.2283039892387
Optimization terminated successfully (Exit mode 0)
Current function value: 133.22776637956437
Iterations: 10
Function evaluations: 89
Gradient evaluations: 9
Iteration: 1, Func. Count: 7, Neg. LLF: 152.6139823040154
Iteration: 2, Func. Count: 13, Neg. LLF: 159.96827457989792
Iteration: 3, Func. Count: 20, Neg. LLF: 148.0254779117977
Iteration: 4, Func. Count: 26, Neg. LLF: 154.4747726480666
Iteration: 5, Func. Count: 35, Neg. LLF: 147.62601508232544
Iteration: 6, Func. Count: 41, Neg. LLF: 147.13290067975763
Iteration: 7, Func. Count: 47, Neg. LLF: 149.25192826208206
Iteration: 8, Func. Count: 54, Neg. LLF: 349.8577170860378
Iteration: 9, Func. Count: 61, Neg. LLF: 237.47671367775547
Iteration: 10, Func. Count: 68, Neg. LLF: 151.07140408050873
Iteration: 11, Func. Count: 75, Neg. LLF: 144.9204993172482
Iteration: 12, Func. Count: 82, Neg. LLF: 144.50911601443013
Iteration: 13, Func. Count: 88, Neg. LLF: 144.50325396157552
Iteration: 14, Func. Count: 94, Neg. LLF: 144.50321348169516
Iteration: 15, Func. Count: 101, Neg. LLF: 144.5029672003704
Iteration: 16, Func. Count: 107, Neg. LLF: 144.5028957428073
Iteration: 17, Func. Count: 113, Neg. LLF: 144.50289463951714
Iteration: 18, Func. Count: 118, Neg. LLF: 144.50289455131485
Optimization terminated successfully (Exit mode 0)
Current function value: 144.50289463951714
Iterations: 18
Function evaluations: 118
Gradient evaluations: 18
Iteration: 1, Func. Count: 8, Neg. LLF: 173.07274800757278
Iteration: 2, Func. Count: 16, Neg. LLF: 244280557.6225614
Iteration: 3, Func. Count: 25, Neg. LLF: 133.5409569502357
Iteration: 4, Func. Count: 32, Neg. LLF: 134.44930947080726
Iteration: 5, Func. Count: 40, Neg. LLF: 133.357064997486
Iteration: 6, Func. Count: 47, Neg. LLF: 133.3555493457033
Iteration: 7, Func. Count: 54, Neg. LLF: 133.3554930223873
Iteration: 8, Func. Count: 61, Neg. LLF: 133.36744626445537
Optimization terminated successfully (Exit mode 0)
Current function value: 133.35549301638153
Iterations: 9
Function evaluations: 64
Gradient evaluations: 8
Iteration: 1, Func. Count: 9, Neg. LLF: 32746719.688395217
Iteration: 2, Func. Count: 19, Neg. LLF: 519.1344720313905
Iteration: 3, Func. Count: 31, Neg. LLF: 164.4468314321502
Iteration: 4, Func. Count: 40, Neg. LLF: 139.75942862043053
Iteration: 5, Func. Count: 48, Neg. LLF: 136.83969701585656
Iteration: 6, Func. Count: 56, Neg. LLF: 223.05662360304183
Iteration: 7, Func. Count: 70, Neg. LLF: 133.6788673814591
Iteration: 8, Func. Count: 78, Neg. LLF: 133.530980695029
Iteration: 9, Func. Count: 86, Neg. LLF: 133.32167336075352
Iteration: 10, Func. Count: 94, Neg. LLF: 133.3152853358565
Iteration: 11, Func. Count: 102, Neg. LLF: 133.28472307671146
Iteration: 12, Func. Count: 110, Neg. LLF: 133.23953360403982
Iteration: 13, Func. Count: 118, Neg. LLF: 133.20379027063672
Iteration: 14, Func. Count: 126, Neg. LLF: 133.15492429440442
Iteration: 15, Func. Count: 134, Neg. LLF: 133.19000062884294
Iteration: 16, Func. Count: 143, Neg. LLF: 133.1229956060851
Iteration: 17, Func. Count: 151, Neg. LLF: 133.12252127422656
Iteration: 18, Func. Count: 159, Neg. LLF: 133.1224989519172
Iteration: 19, Func. Count: 166, Neg. LLF: 133.12249857636215
Optimization terminated successfully (Exit mode 0)
Current function value: 133.1224989519172
Iterations: 19
Function evaluations: 166
Gradient evaluations: 19
Iteration: 1, Func. Count: 10, Neg. LLF: 29280203.334730167
Iteration: 2, Func. Count: 20, Neg. LLF: 733679.3761398753
Iteration: 3, Func. Count: 32, Neg. LLF: 3032724.153918947
Iteration: 4, Func. Count: 44, Neg. LLF: 137.45675165829329
Iteration: 5, Func. Count: 53, Neg. LLF: 145.5347186021661
Iteration: 6, Func. Count: 63, Neg. LLF: 189.67388947853325
Iteration: 7, Func. Count: 74, Neg. LLF: 132.77045779169535
Iteration: 8, Func. Count: 84, Neg. LLF: 132.54832506506133
Iteration: 9, Func. Count: 94, Neg. LLF: 132.5363017766893
Iteration: 10, Func. Count: 103, Neg. LLF: 132.53489837519308
Iteration: 11, Func. Count: 112, Neg. LLF: 132.53485424785833
Iteration: 12, Func. Count: 121, Neg. LLF: 132.5348165404109
Iteration: 13, Func. Count: 129, Neg. LLF: 132.5348162429415
Optimization terminated successfully (Exit mode 0)
Current function value: 132.5348165404109
Iterations: 13
Function evaluations: 129
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 25709423.924182072
Iteration: 2, Func. Count: 22, Neg. LLF: 8119261925.529166
Iteration: 3, Func. Count: 34, Neg. LLF: 135.20205127504587
Iteration: 4, Func. Count: 44, Neg. LLF: 132.4397342070454
Iteration: 5, Func. Count: 54, Neg. LLF: 140.5018063294365
Iteration: 6, Func. Count: 65, Neg. LLF: 188.54909078684364
Iteration: 7, Func. Count: 77, Neg. LLF: 132.750917111917
Iteration: 8, Func. Count: 88, Neg. LLF: 131.2537900621396
Iteration: 9, Func. Count: 99, Neg. LLF: 130.08974687274926
Iteration: 10, Func. Count: 109, Neg. LLF: 130.08768074746018
Iteration: 11, Func. Count: 119, Neg. LLF: 130.0875012135966
Iteration: 12, Func. Count: 129, Neg. LLF: 130.0874724287303
Iteration: 13, Func. Count: 139, Neg. LLF: 130.08747078315042
Iteration: 14, Func. Count: 148, Neg. LLF: 130.08747051292508
Optimization terminated successfully (Exit mode 0)
Current function value: 130.08747078315042
Iterations: 14
Function evaluations: 148
Gradient evaluations: 14
Iteration: 1, Func. Count: 8, Neg. LLF: 151.1194052103465
Iteration: 2, Func. Count: 15, Neg. LLF: 163.3354608416799
Iteration: 3, Func. Count: 23, Neg. LLF: 147.99006075733521
Iteration: 4, Func. Count: 30, Neg. LLF: 153.06105152943272
Iteration: 5, Func. Count: 40, Neg. LLF: 147.58657142069245
Iteration: 6, Func. Count: 47, Neg. LLF: 146.07758569481277
Iteration: 7, Func. Count: 54, Neg. LLF: 144.83019169204138
Iteration: 8, Func. Count: 61, Neg. LLF: 144.8345244606799
Iteration: 9, Func. Count: 69, Neg. LLF: 144.6812945877652
Iteration: 10, Func. Count: 77, Neg. LLF: 144.50744385029373
Iteration: 11, Func. Count: 85, Neg. LLF: 144.50327871661702
Iteration: 12, Func. Count: 92, Neg. LLF: 144.50298099466008
Iteration: 13, Func. Count: 99, Neg. LLF: 144.50289492395135
Iteration: 14, Func. Count: 105, Neg. LLF: 144.50289487859075
Optimization terminated successfully (Exit mode 0)
Current function value: 144.50289492395135
Iterations: 14
Function evaluations: 105
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 174.42669274992176
Iteration: 2, Func. Count: 18, Neg. LLF: 258332546.80801716
Iteration: 3, Func. Count: 28, Neg. LLF: 133.29257551807407
Iteration: 4, Func. Count: 36, Neg. LLF: 136.60401339184227
Iteration: 5, Func. Count: 45, Neg. LLF: 132.90513411808467
Iteration: 6, Func. Count: 53, Neg. LLF: 132.89431565062182
Iteration: 7, Func. Count: 61, Neg. LLF: 132.89172517041433
Iteration: 8, Func. Count: 69, Neg. LLF: 132.89135878509802
Iteration: 9, Func. Count: 77, Neg. LLF: 139.1682076692404
Iteration: 10, Func. Count: 88, Neg. LLF: 132.89429614263193
Iteration: 11, Func. Count: 98, Neg. LLF: 132.89137201569977
Iteration: 12, Func. Count: 105, Neg. LLF: 132.89137146438478
Optimization terminated successfully (Exit mode 0)
Current function value: 132.89137201569977
Iterations: 13
Function evaluations: 105
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 33808918.71755327
Iteration: 2, Func. Count: 21, Neg. LLF: 20773.13144232958
Iteration: 3, Func. Count: 33, Neg. LLF: 150.0190751593448
Iteration: 4, Func. Count: 43, Neg. LLF: 137.5688728010126
Iteration: 5, Func. Count: 52, Neg. LLF: 133.6781292238933
Iteration: 6, Func. Count: 61, Neg. LLF: 136.3724424307988
Iteration: 7, Func. Count: 71, Neg. LLF: 133.1807292623058
Iteration: 8, Func. Count: 80, Neg. LLF: 133.131254094669
Iteration: 9, Func. Count: 89, Neg. LLF: 133.12483985793182
Iteration: 10, Func. Count: 98, Neg. LLF: 133.12418305294878
Iteration: 11, Func. Count: 107, Neg. LLF: 133.1226173102983
Iteration: 12, Func. Count: 116, Neg. LLF: 133.12249924025915
Iteration: 13, Func. Count: 125, Neg. LLF: 133.12249828922546
Optimization terminated successfully (Exit mode 0)
Current function value: 133.12249828922546
Iterations: 13
Function evaluations: 125
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 29800130.206742022
Iteration: 2, Func. Count: 22, Neg. LLF: 4284240169.415197
Iteration: 3, Func. Count: 35, Neg. LLF: 3145140.9149241997
Iteration: 4, Func. Count: 48, Neg. LLF: 137.24523434302657
Iteration: 5, Func. Count: 58, Neg. LLF: 133.65535704447336
Iteration: 6, Func. Count: 68, Neg. LLF: 737221.7536279387
Iteration: 7, Func. Count: 79, Neg. LLF: 127.82451675017612
Iteration: 8, Func. Count: 89, Neg. LLF: 127.55968540116572
Iteration: 9, Func. Count: 99, Neg. LLF: 127.1962669669277
Iteration: 10, Func. Count: 109, Neg. LLF: 127.009653472749
Iteration: 11, Func. Count: 119, Neg. LLF: 127.00021966152813
Iteration: 12, Func. Count: 129, Neg. LLF: 126.99117715846833
Iteration: 13, Func. Count: 139, Neg. LLF: 126.98704495365958
Iteration: 14, Func. Count: 149, Neg. LLF: 126.98632679997708
Iteration: 15, Func. Count: 159, Neg. LLF: 126.98631750078675
Iteration: 16, Func. Count: 169, Neg. LLF: 126.98629620517116
Iteration: 17, Func. Count: 189, Neg. LLF: 127.38709601819606
Iteration: 18, Func. Count: 202, Neg. LLF: 126.98749058320841
Iteration: 19, Func. Count: 214, Neg. LLF: 126.9884614740533
Iteration: 20, Func. Count: 226, Neg. LLF: 126.98634564373577
Iteration: 21, Func. Count: 235, Neg. LLF: 126.98634535033865
Optimization terminated successfully (Exit mode 0)
Current function value: 126.98634564373577
Iterations: 22
Function evaluations: 235
Gradient evaluations: 21
Iteration: 1, Func. Count: 12, Neg. LLF: 26119777.537925135
Iteration: 2, Func. Count: 24, Neg. LLF: 8170555591.8460045
Iteration: 3, Func. Count: 37, Neg. LLF: 131.4597734069874
Iteration: 4, Func. Count: 48, Neg. LLF: 133.59086433073864
Iteration: 5, Func. Count: 60, Neg. LLF: 147.9365950228167
Iteration: 6, Func. Count: 73, Neg. LLF: 146.7857118934331
Iteration: 7, Func. Count: 85, Neg. LLF: 130.22246042010732
Iteration: 8, Func. Count: 96, Neg. LLF: 130.09129653466607
Iteration: 9, Func. Count: 107, Neg. LLF: 130.08819081917937
Iteration: 10, Func. Count: 118, Neg. LLF: 130.08770662417683
Iteration: 11, Func. Count: 129, Neg. LLF: 130.08746548838664
Iteration: 12, Func. Count: 140, Neg. LLF: 130.08756371082407
Iteration: 13, Func. Count: 152, Neg. LLF: 130.0873675900451
Iteration: 14, Func. Count: 163, Neg. LLF: 130.0874301192426
Iteration: 15, Func. Count: 184, Neg. LLF: 130.2000695524049
Iteration: 16, Func. Count: 198, Neg. LLF: 130.08795167749156
Iteration: 17, Func. Count: 211, Neg. LLF: 130.0874943564898
Iteration: 18, Func. Count: 224, Neg. LLF: 130.08747110678186
Iteration: 19, Func. Count: 236, Neg. LLF: 130.08747074005132
Iteration: 20, Func. Count: 246, Neg. LLF: 130.08747046980673
Optimization terminated successfully (Exit mode 0)
Current function value: 130.08747074005132
Iterations: 21
Function evaluations: 246
Gradient evaluations: 20
Iteration: 1, Func. Count: 9, Neg. LLF: 150.2086279389123
Iteration: 2, Func. Count: 17, Neg. LLF: 164.43242348950326
Iteration: 3, Func. Count: 26, Neg. LLF: 147.97878217414336
Iteration: 4, Func. Count: 34, Neg. LLF: 153.21474139121187
Iteration: 5, Func. Count: 45, Neg. LLF: 147.491309779569
Iteration: 6, Func. Count: 53, Neg. LLF: 333.51083399188457
Iteration: 7, Func. Count: 62, Neg. LLF: 411.93897838962295
Iteration: 8, Func. Count: 71, Neg. LLF: 226.66496395211195
Iteration: 9, Func. Count: 80, Neg. LLF: 335.16532144078093
Iteration: 10, Func. Count: 89, Neg. LLF: 83043.77361640133
Iteration: 11, Func. Count: 98, Neg. LLF: 303.47651113202073
Iteration: 12, Func. Count: 107, Neg. LLF: 188.5296038408643
Iteration: 13, Func. Count: 116, Neg. LLF: 145.70193173292196
Iteration: 14, Func. Count: 125, Neg. LLF: 144.42815702039562
Iteration: 15, Func. Count: 134, Neg. LLF: 144.36508885055414
Iteration: 16, Func. Count: 142, Neg. LLF: 144.35978264107203
Iteration: 17, Func. Count: 150, Neg. LLF: 144.35991552134936
Iteration: 18, Func. Count: 159, Neg. LLF: 144.35945337845664
Iteration: 19, Func. Count: 167, Neg. LLF: 144.35944247874707
Iteration: 20, Func. Count: 174, Neg. LLF: 144.35944238331464
Optimization terminated successfully (Exit mode 0)
Current function value: 144.35944247874707
Iterations: 20
Function evaluations: 174
Gradient evaluations: 20
Iteration: 1, Func. Count: 10, Neg. LLF: 1015.1584382078712
Iteration: 2, Func. Count: 20, Neg. LLF: 65264036.511032864
Iteration: 3, Func. Count: 31, Neg. LLF: 223.48419619443536
Iteration: 4, Func. Count: 42, Neg. LLF: 158.94891980881908
Iteration: 5, Func. Count: 52, Neg. LLF: 131.53242580956748
Iteration: 6, Func. Count: 61, Neg. LLF: 119548.17798688023
Iteration: 7, Func. Count: 73, Neg. LLF: 130.91051299423054
Iteration: 8, Func. Count: 82, Neg. LLF: 130.88422700729168
Iteration: 9, Func. Count: 91, Neg. LLF: 130.88390660084184
Iteration: 10, Func. Count: 100, Neg. LLF: 130.8839015240618
Iteration: 11, Func. Count: 111, Neg. LLF: 130.8838956605603
Optimization terminated successfully (Exit mode 0)
Current function value: 130.8839050408129
Iterations: 11
Function evaluations: 121
Gradient evaluations: 11
Iteration: 1, Func. Count: 11, Neg. LLF: 34379845.2530907
Iteration: 2, Func. Count: 23, Neg. LLF: 810159.8727347748
Iteration: 3, Func. Count: 36, Neg. LLF: 234.13198734064693
Iteration: 4, Func. Count: 47, Neg. LLF: 137.565866984819
Iteration: 5, Func. Count: 57, Neg. LLF: 133.79859137848194
Iteration: 6, Func. Count: 67, Neg. LLF: 150.81836429540846
Iteration: 7, Func. Count: 79, Neg. LLF: 131.7125864851745
Iteration: 8, Func. Count: 89, Neg. LLF: 131.4369368817207
Iteration: 9, Func. Count: 99, Neg. LLF: 131.42898070473828
Iteration: 10, Func. Count: 110, Neg. LLF: 131.3960544019976
Iteration: 11, Func. Count: 120, Neg. LLF: 131.3833605274919
Iteration: 12, Func. Count: 130, Neg. LLF: 131.27615877417873
Iteration: 13, Func. Count: 140, Neg. LLF: 131.03506755114222
Iteration: 14, Func. Count: 150, Neg. LLF: 130.94268058907292
Iteration: 15, Func. Count: 160, Neg. LLF: 130.8932943363543
Iteration: 16, Func. Count: 170, Neg. LLF: 130.88368806364556
Iteration: 17, Func. Count: 180, Neg. LLF: 130.8837202619958
Iteration: 18, Func. Count: 190, Neg. LLF: 131.19406982300194
Iteration: 19, Func. Count: 203, Neg. LLF: 130.88391266425066
Iteration: 20, Func. Count: 215, Neg. LLF: 130.8839067559394
Iteration: 21, Func. Count: 224, Neg. LLF: 130.883906127102
Optimization terminated successfully (Exit mode 0)
Current function value: 130.8839067559394
Iterations: 22
Function evaluations: 224
Gradient evaluations: 21
Iteration: 1, Func. Count: 12, Neg. LLF: 30104913.09972647
Iteration: 2, Func. Count: 24, Neg. LLF: 14343175470.229893
Iteration: 3, Func. Count: 38, Neg. LLF: 378.9583376278439
Iteration: 4, Func. Count: 51, Neg. LLF: 149.4914457179705
Iteration: 5, Func. Count: 63, Neg. LLF: 137.0567271566084
Iteration: 6, Func. Count: 74, Neg. LLF: 136.0759044775738
Iteration: 7, Func. Count: 86, Neg. LLF: 234.82952884302327
Iteration: 8, Func. Count: 98, Neg. LLF: 134.12005968211128
Iteration: 9, Func. Count: 110, Neg. LLF: 131.70641664516435
Iteration: 10, Func. Count: 121, Neg. LLF: 131.59535160019985
Iteration: 11, Func. Count: 132, Neg. LLF: 131.52328429952766
Iteration: 12, Func. Count: 143, Neg. LLF: 131.47811186995523
Iteration: 13, Func. Count: 154, Neg. LLF: 131.47257141138044
Iteration: 14, Func. Count: 165, Neg. LLF: 131.47184651114708
Iteration: 15, Func. Count: 176, Neg. LLF: 131.47167223825736
Iteration: 16, Func. Count: 187, Neg. LLF: 131.47167099440358
Iteration: 17, Func. Count: 197, Neg. LLF: 131.47167067675903
Optimization terminated successfully (Exit mode 0)
Current function value: 131.47167099440358
Iterations: 17
Function evaluations: 197
Gradient evaluations: 17
Iteration: 1, Func. Count: 13, Neg. LLF: 26330227.778491333
Iteration: 2, Func. Count: 26, Neg. LLF: 7257363872.680166
Iteration: 3, Func. Count: 40, Neg. LLF: 133.9784802794104
Iteration: 4, Func. Count: 52, Neg. LLF: 133.34622739752984
Iteration: 5, Func. Count: 65, Neg. LLF: 139.90918066917015
Iteration: 6, Func. Count: 78, Neg. LLF: 143.147527208944
Iteration: 7, Func. Count: 91, Neg. LLF: 130.24668509597254
Iteration: 8, Func. Count: 104, Neg. LLF: 130.1004645702195
Iteration: 9, Func. Count: 116, Neg. LLF: 130.09195677837462
Iteration: 10, Func. Count: 128, Neg. LLF: 130.0877807455465
Iteration: 11, Func. Count: 140, Neg. LLF: 130.08747661732687
Iteration: 12, Func. Count: 152, Neg. LLF: 130.0874714320629
Iteration: 13, Func. Count: 164, Neg. LLF: 130.08747041175366
Iteration: 14, Func. Count: 175, Neg. LLF: 130.0874701414825
Optimization terminated successfully (Exit mode 0)
Current function value: 130.08747041175366
Iterations: 14
Function evaluations: 175
Gradient evaluations: 14
Iteration: 1, Func. Count: 6, Neg. LLF: 156.3247148866356
Iteration: 2, Func. Count: 11, Neg. LLF: 159.22379933323964
Iteration: 3, Func. Count: 17, Neg. LLF: 155.8238148085354
Iteration: 4, Func. Count: 24, Neg. LLF: 157.087581409268
Iteration: 5, Func. Count: 30, Neg. LLF: 154.88867001215957
Iteration: 6, Func. Count: 35, Neg. LLF: 154.16766056235562
Iteration: 7, Func. Count: 40, Neg. LLF: 154.64981264786076
Iteration: 8, Func. Count: 46, Neg. LLF: 153.936130866677
Iteration: 9, Func. Count: 51, Neg. LLF: 153.9319957755929
Iteration: 10, Func. Count: 56, Neg. LLF: 153.93179830837303
Iteration: 11, Func. Count: 61, Neg. LLF: 153.93179651493494
Iteration: 12, Func. Count: 65, Neg. LLF: 153.93179641411928
Optimization terminated successfully (Exit mode 0)
Current function value: 153.93179651493494
Iterations: 12
Function evaluations: 65
Gradient evaluations: 12
Iteration: 1, Func. Count: 7, Neg. LLF: 185.38587399280246
Iteration: 2, Func. Count: 14, Neg. LLF: 283.1190570078375
Iteration: 3, Func. Count: 22, Neg. LLF: 162.95760388033838
Iteration: 4, Func. Count: 29, Neg. LLF: 136.00472782189794
Iteration: 5, Func. Count: 35, Neg. LLF: 172.7352168582742
Iteration: 6, Func. Count: 43, Neg. LLF: 135.77878431956682
Iteration: 7, Func. Count: 49, Neg. LLF: 135.74143211250902
Iteration: 8, Func. Count: 55, Neg. LLF: 135.72963860627155
Iteration: 9, Func. Count: 61, Neg. LLF: 135.7246665913996
Iteration: 10, Func. Count: 67, Neg. LLF: 135.72433550433848
Iteration: 11, Func. Count: 73, Neg. LLF: 135.7243292497921
Iteration: 12, Func. Count: 79, Neg. LLF: 135.73270536091977
Optimization terminated successfully (Exit mode 0)
Current function value: 135.72432923865782
Iterations: 13
Function evaluations: 82
Gradient evaluations: 12
Iteration: 1, Func. Count: 8, Neg. LLF: 34780968.49117337
Iteration: 2, Func. Count: 16, Neg. LLF: 3105321150.9600167
Iteration: 3, Func. Count: 25, Neg. LLF: 201.12954609266797
Iteration: 4, Func. Count: 33, Neg. LLF: 155.21906099960484
Iteration: 5, Func. Count: 41, Neg. LLF: 136.5670230907783
Iteration: 6, Func. Count: 48, Neg. LLF: 178.631933609036
Iteration: 7, Func. Count: 57, Neg. LLF: 136.42429102385967
Iteration: 8, Func. Count: 65, Neg. LLF: 135.97209311131186
Iteration: 9, Func. Count: 73, Neg. LLF: 135.72806575443698
Iteration: 10, Func. Count: 80, Neg. LLF: 135.72442529897725
Iteration: 11, Func. Count: 87, Neg. LLF: 135.72427414542605
Iteration: 12, Func. Count: 94, Neg. LLF: 136.98725336729225
Iteration: 13, Func. Count: 104, Neg. LLF: 135.73027229996885
Iteration: 14, Func. Count: 114, Neg. LLF: 135.72436737841542
Iteration: 15, Func. Count: 123, Neg. LLF: 135.72432938236275
Iteration: 16, Func. Count: 129, Neg. LLF: 135.72432912676544
Optimization terminated successfully (Exit mode 0)
Current function value: 135.72432938236275
Iterations: 17
Function evaluations: 129
Gradient evaluations: 16
Iteration: 1, Func. Count: 9, Neg. LLF: 25728218.296962075
Iteration: 2, Func. Count: 18, Neg. LLF: 1096693130.7214649
Iteration: 3, Func. Count: 28, Neg. LLF: 327.8688586936777
Iteration: 4, Func. Count: 37, Neg. LLF: 171.73936125100147
Iteration: 5, Func. Count: 46, Neg. LLF: 156.20277520332323
Iteration: 6, Func. Count: 55, Neg. LLF: 160.3196282283674
Iteration: 7, Func. Count: 64, Neg. LLF: 154.40332928075406
Iteration: 8, Func. Count: 73, Neg. LLF: 149.05554925471654
Iteration: 9, Func. Count: 82, Neg. LLF: 141.96165683421725
Iteration: 10, Func. Count: 91, Neg. LLF: 144.51718658404982
Iteration: 11, Func. Count: 100, Neg. LLF: 138.7347872402006
Iteration: 12, Func. Count: 109, Neg. LLF: 141.6880666257492
Iteration: 13, Func. Count: 118, Neg. LLF: 133.5297851409703
Iteration: 14, Func. Count: 126, Neg. LLF: 133.48153558608917
Iteration: 15, Func. Count: 134, Neg. LLF: 133.44800243570225
Iteration: 16, Func. Count: 142, Neg. LLF: 133.44138471126868
Iteration: 17, Func. Count: 150, Neg. LLF: 133.43942312246492
Iteration: 18, Func. Count: 158, Neg. LLF: 133.43922889286847
Iteration: 19, Func. Count: 166, Neg. LLF: 133.43920237472523
Iteration: 20, Func. Count: 174, Neg. LLF: 134.29592796244032
Iteration: 21, Func. Count: 185, Neg. LLF: 133.49861901549053
Optimization terminated successfully (Exit mode 0)
Current function value: 133.43919734516936
Iterations: 22
Function evaluations: 188
Gradient evaluations: 21
Iteration: 1, Func. Count: 10, Neg. LLF: 20891268.168129873
Iteration: 2, Func. Count: 20, Neg. LLF: 664557510.5739578
Iteration: 3, Func. Count: 31, Neg. LLF: 177.57796259242153
Iteration: 4, Func. Count: 41, Neg. LLF: 170.05591074753033
Iteration: 5, Func. Count: 51, Neg. LLF: 145.93845558404723
Iteration: 6, Func. Count: 61, Neg. LLF: 140.13197546233945
Iteration: 7, Func. Count: 70, Neg. LLF: 147.13636664959964
Iteration: 8, Func. Count: 80, Neg. LLF: 163.71815398158262
Iteration: 9, Func. Count: 90, Neg. LLF: 137.93460359399103
Iteration: 10, Func. Count: 100, Neg. LLF: 135.83894035128887
Iteration: 11, Func. Count: 110, Neg. LLF: 134.3352092206638
Iteration: 12, Func. Count: 120, Neg. LLF: 134.35130184738998
Iteration: 13, Func. Count: 130, Neg. LLF: 133.45879496408728
Iteration: 14, Func. Count: 139, Neg. LLF: 133.4411520334315
Iteration: 15, Func. Count: 148, Neg. LLF: 133.439814483369
Iteration: 16, Func. Count: 157, Neg. LLF: 133.4393930527584
Iteration: 17, Func. Count: 166, Neg. LLF: 133.4391983994677
Iteration: 18, Func. Count: 174, Neg. LLF: 133.4391987048589
Optimization terminated successfully (Exit mode 0)
Current function value: 133.4391983994677
Iterations: 18
Function evaluations: 174
Gradient evaluations: 18
Iteration: 1, Func. Count: 7, Neg. LLF: 159.85474002021857
Iteration: 2, Func. Count: 14, Neg. LLF: 156.3401676646401
Iteration: 3, Func. Count: 20, Neg. LLF: 162.5276317622595
Iteration: 4, Func. Count: 29, Neg. LLF: 190.6605415139339
Iteration: 5, Func. Count: 36, Neg. LLF: 154.8973335043744
Iteration: 6, Func. Count: 42, Neg. LLF: 154.8248754231858
Iteration: 7, Func. Count: 48, Neg. LLF: 154.6788732574328
Iteration: 8, Func. Count: 54, Neg. LLF: 154.07783169531757
Iteration: 9, Func. Count: 60, Neg. LLF: 157.0599791464016
Iteration: 10, Func. Count: 67, Neg. LLF: 153.92257887201546
Iteration: 11, Func. Count: 74, Neg. LLF: 153.59166022203496
Iteration: 12, Func. Count: 80, Neg. LLF: 153.58917181406028
Iteration: 13, Func. Count: 86, Neg. LLF: 153.5890413621664
Iteration: 14, Func. Count: 92, Neg. LLF: 153.58880360501038
Iteration: 15, Func. Count: 98, Neg. LLF: 153.5888024645716
Iteration: 16, Func. Count: 103, Neg. LLF: 153.58880240811357
Optimization terminated successfully (Exit mode 0)
Current function value: 153.5888024645716
Iterations: 16
Function evaluations: 103
Gradient evaluations: 16
Iteration: 1, Func. Count: 8, Neg. LLF: 171.73286924128254
Iteration: 2, Func. Count: 16, Neg. LLF: 240727393.17459852
Iteration: 3, Func. Count: 25, Neg. LLF: 135.10445221806873
Iteration: 4, Func. Count: 32, Neg. LLF: 135.16070340558377
Iteration: 5, Func. Count: 40, Neg. LLF: 134.95188965633258
Iteration: 6, Func. Count: 47, Neg. LLF: 134.94929419736377
Iteration: 7, Func. Count: 54, Neg. LLF: 134.94679766245906
Iteration: 8, Func. Count: 61, Neg. LLF: 134.94668612775072
Optimization terminated successfully (Exit mode 0)
Current function value: 134.94679755454678
Iterations: 8
Function evaluations: 71
Gradient evaluations: 8
Iteration: 1, Func. Count: 9, Neg. LLF: 31988209.222435754
Iteration: 2, Func. Count: 19, Neg. LLF: 487.7830767523855
Iteration: 3, Func. Count: 31, Neg. LLF: 139.12854251702888
Iteration: 4, Func. Count: 39, Neg. LLF: 135.79255135570037
Iteration: 5, Func. Count: 47, Neg. LLF: 136.40808868060574
Iteration: 6, Func. Count: 56, Neg. LLF: 150.63855321522877
Iteration: 7, Func. Count: 66, Neg. LLF: 134.61075486652868
Iteration: 8, Func. Count: 74, Neg. LLF: 134.56787564154732
Iteration: 9, Func. Count: 82, Neg. LLF: 134.56514008665997
Iteration: 10, Func. Count: 90, Neg. LLF: 134.56484376144337
Iteration: 11, Func. Count: 98, Neg. LLF: 134.56471081665927
Iteration: 12, Func. Count: 116, Neg. LLF: 134.5646345992677
Iteration: 13, Func. Count: 134, Neg. LLF: 134.56478494196188
Iteration: 14, Func. Count: 143, Neg. LLF: 139.24683969401258
Iteration: 15, Func. Count: 155, Neg. LLF: 134.83785353744008
Iteration: 16, Func. Count: 166, Neg. LLF: 134.56523333419418
Iteration: 17, Func. Count: 176, Neg. LLF: 134.56500141612676
Iteration: 18, Func. Count: 183, Neg. LLF: 134.56500109526368
Optimization terminated successfully (Exit mode 0)
Current function value: 134.56500141612676
Iterations: 19
Function evaluations: 183
Gradient evaluations: 18
Iteration: 1, Func. Count: 10, Neg. LLF: 28828290.791199412
Iteration: 2, Func. Count: 20, Neg. LLF: 640.4959453899319
Iteration: 3, Func. Count: 33, Neg. LLF: 142.7681994323773
Iteration: 4, Func. Count: 42, Neg. LLF: 165.7291802451848
Iteration: 5, Func. Count: 53, Neg. LLF: 142.32187414385388
Iteration: 6, Func. Count: 63, Neg. LLF: 2356.233750530992
Iteration: 7, Func. Count: 74, Neg. LLF: 143.96945329747004
Iteration: 8, Func. Count: 84, Neg. LLF: 136.39270530144756
Iteration: 9, Func. Count: 93, Neg. LLF: 136.36612650302934
Iteration: 10, Func. Count: 102, Neg. LLF: 136.3571365158246
Iteration: 11, Func. Count: 111, Neg. LLF: 136.35602226291982
Iteration: 12, Func. Count: 120, Neg. LLF: 136.3559328409581
Iteration: 13, Func. Count: 129, Neg. LLF: 136.3559314449827
Iteration: 14, Func. Count: 137, Neg. LLF: 136.3559313264316
Optimization terminated successfully (Exit mode 0)
Current function value: 136.3559314449827
Iterations: 14
Function evaluations: 137
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 25626896.915509652
Iteration: 2, Func. Count: 22, Neg. LLF: 5492130746.833447
Iteration: 3, Func. Count: 34, Neg. LLF: 134.11302005258878
Iteration: 4, Func. Count: 44, Neg. LLF: 134.27547900866819
Iteration: 5, Func. Count: 55, Neg. LLF: 133.3492644835913
Iteration: 6, Func. Count: 65, Neg. LLF: 133.2317195264788
Iteration: 7, Func. Count: 75, Neg. LLF: 133.2279954021176
Iteration: 8, Func. Count: 85, Neg. LLF: 133.22768191408306
Iteration: 9, Func. Count: 95, Neg. LLF: 133.231974161807
Iteration: 10, Func. Count: 108, Neg. LLF: 133.22777626596272
Iteration: 11, Func. Count: 119, Neg. LLF: 133.22777013066045
Iteration: 12, Func. Count: 128, Neg. LLF: 133.22776996671615
Optimization terminated successfully (Exit mode 0)
Current function value: 133.22777013066045
Iterations: 13
Function evaluations: 128
Gradient evaluations: 12
Iteration: 1, Func. Count: 8, Neg. LLF: 156.88808578050848
Iteration: 2, Func. Count: 16, Neg. LLF: 165.08302921893474
Iteration: 3, Func. Count: 24, Neg. LLF: 148.53978152519684
Iteration: 4, Func. Count: 31, Neg. LLF: 148.31172794153042
Iteration: 5, Func. Count: 38, Neg. LLF: 148.04844474969426
Iteration: 6, Func. Count: 45, Neg. LLF: 147.1649947162112
Iteration: 7, Func. Count: 52, Neg. LLF: 148.19922586847542
Iteration: 8, Func. Count: 62, Neg. LLF: 181.6917792895466
Iteration: 9, Func. Count: 70, Neg. LLF: 146.57177121719195
Iteration: 10, Func. Count: 77, Neg. LLF: 145.64657625754356
Iteration: 11, Func. Count: 84, Neg. LLF: 278.98503990504065
Iteration: 12, Func. Count: 92, Neg. LLF: 166.63921776071612
Iteration: 13, Func. Count: 100, Neg. LLF: 196.00208410725304
Iteration: 14, Func. Count: 108, Neg. LLF: 144.30270671188927
Iteration: 15, Func. Count: 115, Neg. LLF: 144.32174643683265
Iteration: 16, Func. Count: 123, Neg. LLF: 144.086986664146
Iteration: 17, Func. Count: 130, Neg. LLF: 144.08521952711536
Iteration: 18, Func. Count: 137, Neg. LLF: 144.08400085741508
Iteration: 19, Func. Count: 144, Neg. LLF: 144.08293940273973
Iteration: 20, Func. Count: 151, Neg. LLF: 144.0827883890807
Iteration: 21, Func. Count: 158, Neg. LLF: 144.08278404349005
Iteration: 22, Func. Count: 164, Neg. LLF: 144.08278394977813
Optimization terminated successfully (Exit mode 0)
Current function value: 144.08278404349005
Iterations: 22
Function evaluations: 164
Gradient evaluations: 22
Iteration: 1, Func. Count: 9, Neg. LLF: 172.98193957717115
Iteration: 2, Func. Count: 18, Neg. LLF: 245281433.09734273
Iteration: 3, Func. Count: 28, Neg. LLF: 133.55351980784334
Iteration: 4, Func. Count: 36, Neg. LLF: 134.59650116200848
Iteration: 5, Func. Count: 45, Neg. LLF: 133.35786657342538
Iteration: 6, Func. Count: 53, Neg. LLF: 133.35709155083535
Iteration: 7, Func. Count: 61, Neg. LLF: 133.35543855580545
Iteration: 8, Func. Count: 69, Neg. LLF: 133.54929650749273
Iteration: 9, Func. Count: 80, Neg. LLF: 133.35558349533883
Iteration: 10, Func. Count: 90, Neg. LLF: 133.35549590026318
Iteration: 11, Func. Count: 97, Neg. LLF: 133.35549537967165
Optimization terminated successfully (Exit mode 0)
Current function value: 133.35549590026318
Iterations: 12
Function evaluations: 97
Gradient evaluations: 11
Iteration: 1, Func. Count: 10, Neg. LLF: 32516352.901276417
Iteration: 2, Func. Count: 21, Neg. LLF: 691.2749588138998
Iteration: 3, Func. Count: 34, Neg. LLF: 158.87236097179272
Iteration: 4, Func. Count: 44, Neg. LLF: 139.67924382680772
Iteration: 5, Func. Count: 53, Neg. LLF: 135.51176905667694
Iteration: 6, Func. Count: 62, Neg. LLF: 14469801.215812083
Iteration: 7, Func. Count: 75, Neg. LLF: 133.51107973466924
Iteration: 8, Func. Count: 84, Neg. LLF: 133.32588811425939
Iteration: 9, Func. Count: 93, Neg. LLF: 133.2683458079422
Iteration: 10, Func. Count: 102, Neg. LLF: 133.23459474071072
Iteration: 11, Func. Count: 111, Neg. LLF: 133.22240837343645
Iteration: 12, Func. Count: 120, Neg. LLF: 133.15813986827308
Iteration: 13, Func. Count: 129, Neg. LLF: 135.41397315332281
Iteration: 14, Func. Count: 139, Neg. LLF: 133.1373498565786
Iteration: 15, Func. Count: 149, Neg. LLF: 133.12252395627232
Iteration: 16, Func. Count: 158, Neg. LLF: 133.12249991087157
Iteration: 17, Func. Count: 167, Neg. LLF: 133.12249832893752
Iteration: 18, Func. Count: 175, Neg. LLF: 133.1224979530732
Optimization terminated successfully (Exit mode 0)
Current function value: 133.12249832893752
Iterations: 18
Function evaluations: 175
Gradient evaluations: 18
Iteration: 1, Func. Count: 11, Neg. LLF: 28873071.955921173
Iteration: 2, Func. Count: 22, Neg. LLF: 466.5818126448293
Iteration: 3, Func. Count: 36, Neg. LLF: 180.13338312278626
Iteration: 4, Func. Count: 47, Neg. LLF: 140.09199702850242
Iteration: 5, Func. Count: 57, Neg. LLF: 136.4582315180234
Iteration: 6, Func. Count: 67, Neg. LLF: 347.0444801889535
Iteration: 7, Func. Count: 81, Neg. LLF: 135.12234028064358
Iteration: 8, Func. Count: 91, Neg. LLF: 134.99572187161766
Iteration: 9, Func. Count: 102, Neg. LLF: 140.6687159930146
Iteration: 10, Func. Count: 113, Neg. LLF: 133.29016274164005
Iteration: 11, Func. Count: 123, Neg. LLF: 132.9765850794256
Iteration: 12, Func. Count: 133, Neg. LLF: 132.79375554676605
Iteration: 13, Func. Count: 143, Neg. LLF: 132.6421768473982
Iteration: 14, Func. Count: 153, Neg. LLF: 132.5432629404875
Iteration: 15, Func. Count: 163, Neg. LLF: 132.53531131743185
Iteration: 16, Func. Count: 173, Neg. LLF: 132.53483462737157
Iteration: 17, Func. Count: 183, Neg. LLF: 132.53481642097998
Iteration: 18, Func. Count: 192, Neg. LLF: 132.53481612379906
Optimization terminated successfully (Exit mode 0)
Current function value: 132.53481642097998
Iterations: 18
Function evaluations: 192
Gradient evaluations: 18
Iteration: 1, Func. Count: 12, Neg. LLF: 25402504.53260781
Iteration: 2, Func. Count: 24, Neg. LLF: 7241637231.961024
Iteration: 3, Func. Count: 37, Neg. LLF: 135.6816668087228
Iteration: 4, Func. Count: 48, Neg. LLF: 131.8176022036777
Iteration: 5, Func. Count: 59, Neg. LLF: 141.34703787820726
Iteration: 6, Func. Count: 71, Neg. LLF: 150.61286484660155
Iteration: 7, Func. Count: 83, Neg. LLF: 147.99068760331062
Iteration: 8, Func. Count: 95, Neg. LLF: 130.21451917673707
Iteration: 9, Func. Count: 106, Neg. LLF: 130.09509813827532
Iteration: 10, Func. Count: 117, Neg. LLF: 130.08849733288818
Iteration: 11, Func. Count: 128, Neg. LLF: 130.0875808722713
Iteration: 12, Func. Count: 139, Neg. LLF: 130.08747428388412
Iteration: 13, Func. Count: 150, Neg. LLF: 130.08747092056603
Iteration: 14, Func. Count: 160, Neg. LLF: 130.08747065042454
Optimization terminated successfully (Exit mode 0)
Current function value: 130.08747092056603
Iterations: 14
Function evaluations: 160
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 155.19400426107975
Iteration: 2, Func. Count: 17, Neg. LLF: 155.44328208139163
Iteration: 3, Func. Count: 26, Neg. LLF: 150.3047335675434
Iteration: 4, Func. Count: 35, Neg. LLF: 149.0136706723356
Iteration: 5, Func. Count: 45, Neg. LLF: 146.83117834709384
Iteration: 6, Func. Count: 53, Neg. LLF: 688752.4834017017
Iteration: 7, Func. Count: 62, Neg. LLF: 234.77241284584213
Iteration: 8, Func. Count: 71, Neg. LLF: 573.465364855312
Iteration: 9, Func. Count: 80, Neg. LLF: 176.1306373001802
Iteration: 10, Func. Count: 89, Neg. LLF: 201.15068293043507
Iteration: 11, Func. Count: 98, Neg. LLF: 187.04862796183187
Iteration: 12, Func. Count: 107, Neg. LLF: 146.8474355902934
Iteration: 13, Func. Count: 116, Neg. LLF: 144.21955358221314
Iteration: 14, Func. Count: 125, Neg. LLF: 144.08577894954612
Iteration: 15, Func. Count: 133, Neg. LLF: 144.08318881436466
Iteration: 16, Func. Count: 141, Neg. LLF: 144.08288035217896
Iteration: 17, Func. Count: 149, Neg. LLF: 144.0827948252672
Iteration: 18, Func. Count: 157, Neg. LLF: 144.08278559069663
Iteration: 19, Func. Count: 165, Neg. LLF: 144.08278411990258
Iteration: 20, Func. Count: 172, Neg. LLF: 144.08278407172114
Optimization terminated successfully (Exit mode 0)
Current function value: 144.08278411990258
Iterations: 20
Function evaluations: 172
Gradient evaluations: 20
Iteration: 1, Func. Count: 10, Neg. LLF: 174.33087964665086
Iteration: 2, Func. Count: 20, Neg. LLF: 259423081.0027212
Iteration: 3, Func. Count: 31, Neg. LLF: 133.31095223412058
Iteration: 4, Func. Count: 40, Neg. LLF: 136.8801931929807
Iteration: 5, Func. Count: 50, Neg. LLF: 132.9052482850296
Iteration: 6, Func. Count: 59, Neg. LLF: 132.89457387531692
Iteration: 7, Func. Count: 68, Neg. LLF: 132.89145112837792
Iteration: 8, Func. Count: 77, Neg. LLF: 170.46759900241935
Iteration: 9, Func. Count: 89, Neg. LLF: 132.9497714294725
Iteration: 10, Func. Count: 100, Neg. LLF: 132.89137201583017
Iteration: 11, Func. Count: 108, Neg. LLF: 132.89137146450162
Optimization terminated successfully (Exit mode 0)
Current function value: 132.89137201583017
Iterations: 12
Function evaluations: 108
Gradient evaluations: 11
Iteration: 1, Func. Count: 11, Neg. LLF: 33572134.1505847
Iteration: 2, Func. Count: 23, Neg. LLF: 14467.833100243388
Iteration: 3, Func. Count: 36, Neg. LLF: 150.26168301818333
Iteration: 4, Func. Count: 47, Neg. LLF: 137.91179733002286
Iteration: 5, Func. Count: 57, Neg. LLF: 133.64647101369385
Iteration: 6, Func. Count: 67, Neg. LLF: 136.37674473779887
Iteration: 7, Func. Count: 78, Neg. LLF: 133.18339455668962
Iteration: 8, Func. Count: 88, Neg. LLF: 133.1250701778881
Iteration: 9, Func. Count: 98, Neg. LLF: 133.1225215938773
Iteration: 10, Func. Count: 108, Neg. LLF: 133.12250802441957
Iteration: 11, Func. Count: 118, Neg. LLF: 133.12250518409468
Iteration: 12, Func. Count: 128, Neg. LLF: 133.1224987533369
Iteration: 13, Func. Count: 137, Neg. LLF: 133.12249837769494
Optimization terminated successfully (Exit mode 0)
Current function value: 133.1224987533369
Iterations: 13
Function evaluations: 137
Gradient evaluations: 13
Iteration: 1, Func. Count: 12, Neg. LLF: 29393112.89217463
Iteration: 2, Func. Count: 24, Neg. LLF: 513.8812285557942
Iteration: 3, Func. Count: 39, Neg. LLF: 1477382.606750246
Iteration: 4, Func. Count: 53, Neg. LLF: 135.78197535966368
Iteration: 5, Func. Count: 64, Neg. LLF: 133.27542226598263
Iteration: 6, Func. Count: 75, Neg. LLF: 859529.4830775479
Iteration: 7, Func. Count: 87, Neg. LLF: 141.9979421210546
Iteration: 8, Func. Count: 99, Neg. LLF: 127.27389653946129
Iteration: 9, Func. Count: 110, Neg. LLF: 127.07218426833958
Iteration: 10, Func. Count: 121, Neg. LLF: 126.99027953843101
Iteration: 11, Func. Count: 132, Neg. LLF: 126.98674946920842
Iteration: 12, Func. Count: 143, Neg. LLF: 126.98635499302085
Iteration: 13, Func. Count: 154, Neg. LLF: 126.98634575440933
Iteration: 14, Func. Count: 164, Neg. LLF: 126.98634546120462
Optimization terminated successfully (Exit mode 0)
Current function value: 126.98634575440933
Iterations: 14
Function evaluations: 164
Gradient evaluations: 14
Iteration: 1, Func. Count: 13, Neg. LLF: 25811605.368684597
Iteration: 2, Func. Count: 26, Neg. LLF: 8452542987.784355
Iteration: 3, Func. Count: 40, Neg. LLF: 134.50805709128616
Iteration: 4, Func. Count: 52, Neg. LLF: 132.5483450537922
Iteration: 5, Func. Count: 64, Neg. LLF: 142.44011891585725
Iteration: 6, Func. Count: 77, Neg. LLF: 136.53584548711683
Iteration: 7, Func. Count: 90, Neg. LLF: 148.03908051196223
Iteration: 8, Func. Count: 104, Neg. LLF: 130.91510985075516
Iteration: 9, Func. Count: 117, Neg. LLF: 130.1199407942377
Iteration: 10, Func. Count: 129, Neg. LLF: 130.08919310200827
Iteration: 11, Func. Count: 141, Neg. LLF: 130.0875364178209
Iteration: 12, Func. Count: 153, Neg. LLF: 130.08747752232944
Iteration: 13, Func. Count: 165, Neg. LLF: 130.08747125557574
Iteration: 14, Func. Count: 177, Neg. LLF: 130.08747050906197
Optimization terminated successfully (Exit mode 0)
Current function value: 130.08747050906197
Iterations: 14
Function evaluations: 177
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 154.14553646592117
Iteration: 2, Func. Count: 19, Neg. LLF: 158.15470206392956
Iteration: 3, Func. Count: 29, Neg. LLF: 149.2999916576614
Iteration: 4, Func. Count: 39, Neg. LLF: 148.71753552030984
Iteration: 5, Func. Count: 50, Neg. LLF: 146.54443969911745
Iteration: 6, Func. Count: 59, Neg. LLF: 242.05381695410108
Iteration: 7, Func. Count: 69, Neg. LLF: 790.601437021867
Iteration: 8, Func. Count: 79, Neg. LLF: 177.25021950249823
Iteration: 9, Func. Count: 89, Neg. LLF: 250.5804633079352
Iteration: 10, Func. Count: 99, Neg. LLF: 256.174779119347
Iteration: 11, Func. Count: 109, Neg. LLF: 173.02300811317636
Iteration: 12, Func. Count: 119, Neg. LLF: 242.7986235930076
Iteration: 13, Func. Count: 129, Neg. LLF: 145.54439935075288
Iteration: 14, Func. Count: 139, Neg. LLF: 144.07665587155287
Iteration: 15, Func. Count: 149, Neg. LLF: 144.00744737360915
Iteration: 16, Func. Count: 158, Neg. LLF: 144.00476496327323
Iteration: 17, Func. Count: 167, Neg. LLF: 144.004758966393
Iteration: 18, Func. Count: 177, Neg. LLF: 144.00468723200188
Iteration: 19, Func. Count: 185, Neg. LLF: 144.00468713294202
Optimization terminated successfully (Exit mode 0)
Current function value: 144.00468723200188
Iterations: 19
Function evaluations: 185
Gradient evaluations: 19
Iteration: 1, Func. Count: 11, Neg. LLF: 2470206.988267609
Iteration: 2, Func. Count: 22, Neg. LLF: 344.2052074365542
Iteration: 3, Func. Count: 35, Neg. LLF: 143.48704138165087
Iteration: 4, Func. Count: 45, Neg. LLF: 1371918.8622867495
Iteration: 5, Func. Count: 57, Neg. LLF: 185.76672368655252
Iteration: 6, Func. Count: 69, Neg. LLF: 164.99695947402193
Iteration: 7, Func. Count: 80, Neg. LLF: 132.6002937073735
Iteration: 8, Func. Count: 90, Neg. LLF: 131.21586359577063
Iteration: 9, Func. Count: 100, Neg. LLF: 130.9944710694273
Iteration: 10, Func. Count: 110, Neg. LLF: 130.88767501405013
Iteration: 11, Func. Count: 120, Neg. LLF: 130.88408328639994
Iteration: 12, Func. Count: 130, Neg. LLF: 130.88391065551667
Iteration: 13, Func. Count: 140, Neg. LLF: 130.8839068726497
Iteration: 14, Func. Count: 149, Neg. LLF: 130.8839062062254
Optimization terminated successfully (Exit mode 0)
Current function value: 130.8839068726497
Iterations: 14
Function evaluations: 149
Gradient evaluations: 14
Iteration: 1, Func. Count: 12, Neg. LLF: 34137046.7554955
Iteration: 2, Func. Count: 25, Neg. LLF: 363240.0418408991
Iteration: 3, Func. Count: 39, Neg. LLF: 238.53904941648142
Iteration: 4, Func. Count: 51, Neg. LLF: 138.2911697470948
Iteration: 5, Func. Count: 62, Neg. LLF: 164.68718407799895
Iteration: 6, Func. Count: 75, Neg. LLF: 148.0428493948229
Iteration: 7, Func. Count: 87, Neg. LLF: 133.82342167090096
Iteration: 8, Func. Count: 98, Neg. LLF: 131.67043105193738
Iteration: 9, Func. Count: 109, Neg. LLF: 131.69388449949497
Iteration: 10, Func. Count: 121, Neg. LLF: 131.52996532411794
Iteration: 11, Func. Count: 132, Neg. LLF: 131.51579686065685
Iteration: 12, Func. Count: 143, Neg. LLF: 131.46409112327802
Iteration: 13, Func. Count: 154, Neg. LLF: 131.34553527479787
Iteration: 14, Func. Count: 165, Neg. LLF: 130.8849865534182
Iteration: 15, Func. Count: 176, Neg. LLF: 130.8837426181904
Iteration: 16, Func. Count: 188, Neg. LLF: 140.0024125658568
Iteration: 17, Func. Count: 202, Neg. LLF: 130.90034180713315
Iteration: 18, Func. Count: 215, Neg. LLF: 130.8839067560001
Iteration: 19, Func. Count: 225, Neg. LLF: 130.88390612721733
Optimization terminated successfully (Exit mode 0)
Current function value: 130.8839067560001
Iterations: 20
Function evaluations: 225
Gradient evaluations: 19
Iteration: 1, Func. Count: 13, Neg. LLF: 29701809.87930813
Iteration: 2, Func. Count: 26, Neg. LLF: 568.8099042806725
Iteration: 3, Func. Count: 41, Neg. LLF: 1241.8378741989147
Iteration: 4, Func. Count: 55, Neg. LLF: 143.74232867217873
Iteration: 5, Func. Count: 68, Neg. LLF: 140.7338983658453
Iteration: 6, Func. Count: 81, Neg. LLF: 5431.884414772427
Iteration: 7, Func. Count: 94, Neg. LLF: 127.48028696482395
Iteration: 8, Func. Count: 106, Neg. LLF: 127.01052764226453
Iteration: 9, Func. Count: 118, Neg. LLF: 126.99956593861276
Iteration: 10, Func. Count: 130, Neg. LLF: 126.98661145005427
Iteration: 11, Func. Count: 142, Neg. LLF: 126.98632528454226
Iteration: 12, Func. Count: 154, Neg. LLF: 126.98633739224276
Iteration: 13, Func. Count: 168, Neg. LLF: 127.17147431122312
Optimization terminated successfully (Exit mode 0)
Current function value: 126.98632872899833
Iterations: 14
Function evaluations: 172
Gradient evaluations: 13
Iteration: 1, Func. Count: 14, Neg. LLF: 26024173.21342464
Iteration: 2, Func. Count: 28, Neg. LLF: 7763159435.500557
Iteration: 3, Func. Count: 43, Neg. LLF: 135.25854783138757
Iteration: 4, Func. Count: 56, Neg. LLF: 131.38721391595215
Iteration: 5, Func. Count: 69, Neg. LLF: 225.91504588730237
Iteration: 6, Func. Count: 84, Neg. LLF: 130.64646759419682
Iteration: 7, Func. Count: 97, Neg. LLF: 155.25571130574644
Iteration: 8, Func. Count: 111, Neg. LLF: 130.92143814065648
Iteration: 9, Func. Count: 125, Neg. LLF: 130.09570340510737
Iteration: 10, Func. Count: 138, Neg. LLF: 130.09058704115543
Iteration: 11, Func. Count: 151, Neg. LLF: 130.08754289595828
Iteration: 12, Func. Count: 164, Neg. LLF: 130.08747200532426
Iteration: 13, Func. Count: 177, Neg. LLF: 130.08747097958314
Iteration: 14, Func. Count: 189, Neg. LLF: 130.08747070929687
Optimization terminated successfully (Exit mode 0)
Current function value: 130.08747097958314
Iterations: 14
Function evaluations: 189
Gradient evaluations: 14
Iteration: 1, Func. Count: 7, Neg. LLF: 155.40380288811846
Iteration: 2, Func. Count: 13, Neg. LLF: 157.50971449504806
Iteration: 3, Func. Count: 22, Neg. LLF: 156.15107819071912
Iteration: 4, Func. Count: 29, Neg. LLF: 155.05659258519046
Iteration: 5, Func. Count: 35, Neg. LLF: 154.5374680376189
Iteration: 6, Func. Count: 41, Neg. LLF: 157.80402146184974
Iteration: 7, Func. Count: 48, Neg. LLF: 154.6237588902887
Iteration: 8, Func. Count: 55, Neg. LLF: 153.9560370189045
Iteration: 9, Func. Count: 61, Neg. LLF: 153.93258778640416
Iteration: 10, Func. Count: 67, Neg. LLF: 153.93183673734143
Iteration: 11, Func. Count: 73, Neg. LLF: 153.93179715401521
Iteration: 12, Func. Count: 79, Neg. LLF: 153.93179625591452
Optimization terminated successfully (Exit mode 0)
Current function value: 153.93179625591452
Iterations: 12
Function evaluations: 79
Gradient evaluations: 12
Iteration: 1, Func. Count: 8, Neg. LLF: 194.28886600751088
Iteration: 2, Func. Count: 16, Neg. LLF: 223.23869510587497
Iteration: 3, Func. Count: 24, Neg. LLF: 231.85915617721545
Iteration: 4, Func. Count: 34, Neg. LLF: 138.84808793187653
Iteration: 5, Func. Count: 42, Neg. LLF: 133.1520550530192
Iteration: 6, Func. Count: 49, Neg. LLF: 132.35655667953202
Iteration: 7, Func. Count: 56, Neg. LLF: 132.1565934974262
Iteration: 8, Func. Count: 63, Neg. LLF: 132.22867804273338
Iteration: 9, Func. Count: 71, Neg. LLF: 131.8580461518841
Iteration: 10, Func. Count: 78, Neg. LLF: 131.84120796658942
Iteration: 11, Func. Count: 85, Neg. LLF: 131.82586773920616
Iteration: 12, Func. Count: 92, Neg. LLF: 131.82449313262933
Iteration: 13, Func. Count: 99, Neg. LLF: 131.8242688120356
Iteration: 14, Func. Count: 106, Neg. LLF: 131.82425880688209
Iteration: 15, Func. Count: 113, Neg. LLF: 131.87406441185954
Optimization terminated successfully (Exit mode 0)
Current function value: 131.82425838134793
Iterations: 16
Function evaluations: 116
Gradient evaluations: 15
Iteration: 1, Func. Count: 9, Neg. LLF: 37025313.18441893
Iteration: 2, Func. Count: 18, Neg. LLF: 1482693252.013762
Iteration: 3, Func. Count: 28, Neg. LLF: 204.39006196005516
Iteration: 4, Func. Count: 37, Neg. LLF: 141.82374203226686
Iteration: 5, Func. Count: 45, Neg. LLF: 164.40506001903634
Iteration: 6, Func. Count: 54, Neg. LLF: 136.0496222786735
Iteration: 7, Func. Count: 62, Neg. LLF: 163.6079103747487
Iteration: 8, Func. Count: 71, Neg. LLF: 158.21124244111704
Iteration: 9, Func. Count: 80, Neg. LLF: 150.01182438063097
Iteration: 10, Func. Count: 90, Neg. LLF: 144.45875743165684
Iteration: 11, Func. Count: 99, Neg. LLF: 131.16708970233057
Iteration: 12, Func. Count: 107, Neg. LLF: 131.02376848652864
Iteration: 13, Func. Count: 115, Neg. LLF: 130.98629821048317
Iteration: 14, Func. Count: 123, Neg. LLF: 130.8468007397253
Iteration: 15, Func. Count: 131, Neg. LLF: 130.28587763247958
Iteration: 16, Func. Count: 139, Neg. LLF: 129.06052285025794
Iteration: 17, Func. Count: 147, Neg. LLF: 128.44652356130547
Iteration: 18, Func. Count: 155, Neg. LLF: 128.1377264113217
Iteration: 19, Func. Count: 163, Neg. LLF: 128.01929555541605
Iteration: 20, Func. Count: 171, Neg. LLF: 127.94337575398264
Iteration: 21, Func. Count: 179, Neg. LLF: 127.90277729723356
Iteration: 22, Func. Count: 187, Neg. LLF: 127.89249087231627
Iteration: 23, Func. Count: 195, Neg. LLF: 127.89119856315389
Iteration: 24, Func. Count: 203, Neg. LLF: 127.89103619830834
Iteration: 25, Func. Count: 211, Neg. LLF: 127.89100146848769
Iteration: 26, Func. Count: 229, Neg. LLF: 127.89108709156207
Iteration: 27, Func. Count: 237, Neg. LLF: 127.89112924005322
Iteration: 28, Func. Count: 255, Neg. LLF: 127.8909036989423
Iteration: 29, Func. Count: 273, Neg. LLF: 127.89186706148926
Iteration: 30, Func. Count: 284, Neg. LLF: 127.89123291348825
Iteration: 31, Func. Count: 295, Neg. LLF: 127.89114122853253
Iteration: 32, Func. Count: 305, Neg. LLF: 127.8911296843226
Iteration: 33, Func. Count: 314, Neg. LLF: 127.89108814859388
Optimization terminated successfully (Exit mode 0)
Current function value: 127.8910883241632
Iterations: 37
Function evaluations: 314
Gradient evaluations: 33
Iteration: 1, Func. Count: 10, Neg. LLF: 26150403.03614055
Iteration: 2, Func. Count: 20, Neg. LLF: 848116581.1474032
Iteration: 3, Func. Count: 31, Neg. LLF: 223.44323329147403
Iteration: 4, Func. Count: 41, Neg. LLF: 138.17682703911012
Iteration: 5, Func. Count: 50, Neg. LLF: 156.18541096891119
Iteration: 6, Func. Count: 60, Neg. LLF: 131.44220033943552
Iteration: 7, Func. Count: 69, Neg. LLF: 129.70733299461227
Iteration: 8, Func. Count: 78, Neg. LLF: 128.88529992374197
Iteration: 9, Func. Count: 87, Neg. LLF: 128.38135792348422
Iteration: 10, Func. Count: 96, Neg. LLF: 128.02613481921156
Iteration: 11, Func. Count: 105, Neg. LLF: 128.42539323606545
Iteration: 12, Func. Count: 115, Neg. LLF: 127.91824149232582
Iteration: 13, Func. Count: 124, Neg. LLF: 127.89601850488377
Iteration: 14, Func. Count: 133, Neg. LLF: 127.89236620757745
Iteration: 15, Func. Count: 142, Neg. LLF: 127.89113025788767
Iteration: 16, Func. Count: 151, Neg. LLF: 127.89100374259982
Iteration: 17, Func. Count: 162, Neg. LLF: 128.57920985889464
Iteration: 18, Func. Count: 174, Neg. LLF: 127.9189547822051
Iteration: 19, Func. Count: 186, Neg. LLF: 127.89282111343789
Iteration: 20, Func. Count: 197, Neg. LLF: 127.89118856750234
Iteration: 21, Func. Count: 209, Neg. LLF: 127.89112992213924
Iteration: 22, Func. Count: 220, Neg. LLF: 127.89112966702866
Iteration: 23, Func. Count: 230, Neg. LLF: 127.89113327705947
Iteration: 24, Func. Count: 240, Neg. LLF: 127.89110987519541
Optimization terminated successfully (Exit mode 0)
Current function value: 127.891107107742
Iterations: 28
Function evaluations: 240
Gradient evaluations: 24
Iteration: 1, Func. Count: 11, Neg. LLF: 21340372.171745222
Iteration: 2, Func. Count: 22, Neg. LLF: 568927745.6304337
Iteration: 3, Func. Count: 34, Neg. LLF: 175.4089844971259
Iteration: 4, Func. Count: 45, Neg. LLF: 143.03019880291623
Iteration: 5, Func. Count: 55, Neg. LLF: 134.67918573763805
Iteration: 6, Func. Count: 65, Neg. LLF: 257.326045031487
Iteration: 7, Func. Count: 78, Neg. LLF: 148.59790249047109
Iteration: 8, Func. Count: 90, Neg. LLF: 129.95668354394874
Iteration: 9, Func. Count: 100, Neg. LLF: 130.60083200192372
Iteration: 10, Func. Count: 111, Neg. LLF: 142.9745865388469
Iteration: 11, Func. Count: 122, Neg. LLF: 127.89740326892517
Iteration: 12, Func. Count: 132, Neg. LLF: 225.9630659737254
Iteration: 13, Func. Count: 145, Neg. LLF: 144.72467213901749
Iteration: 14, Func. Count: 157, Neg. LLF: 129.74754638435027
Iteration: 15, Func. Count: 169, Neg. LLF: 127.89113011848872
Iteration: 16, Func. Count: 179, Neg. LLF: 127.89112967390001
Optimization terminated successfully (Exit mode 0)
Current function value: 127.89112967390001
Iterations: 17
Function evaluations: 179
Gradient evaluations: 16
Iteration: 1, Func. Count: 8, Neg. LLF: 157.48645000841242
Iteration: 2, Func. Count: 15, Neg. LLF: 155.57835358560772
Iteration: 3, Func. Count: 22, Neg. LLF: 157.73504516896494
Iteration: 4, Func. Count: 33, Neg. LLF: 169.6664843562828
Iteration: 5, Func. Count: 41, Neg. LLF: 155.27522944955012
Iteration: 6, Func. Count: 48, Neg. LLF: 154.8479226028526
Iteration: 7, Func. Count: 55, Neg. LLF: 154.5550966449112
Iteration: 8, Func. Count: 62, Neg. LLF: 154.16433809597197
Iteration: 9, Func. Count: 69, Neg. LLF: 153.91759146864436
Iteration: 10, Func. Count: 76, Neg. LLF: 153.8169167600507
Iteration: 11, Func. Count: 83, Neg. LLF: 153.70326075868266
Iteration: 12, Func. Count: 90, Neg. LLF: 153.61447260101224
Iteration: 13, Func. Count: 97, Neg. LLF: 153.58976262030134
Iteration: 14, Func. Count: 104, Neg. LLF: 153.5888507402295
Iteration: 15, Func. Count: 111, Neg. LLF: 153.58880868403372
Iteration: 16, Func. Count: 118, Neg. LLF: 153.58880266689516
Iteration: 17, Func. Count: 124, Neg. LLF: 153.58880261043376
Optimization terminated successfully (Exit mode 0)
Current function value: 153.58880266689516
Iterations: 17
Function evaluations: 124
Gradient evaluations: 17
Iteration: 1, Func. Count: 9, Neg. LLF: 171.88570443788024
Iteration: 2, Func. Count: 18, Neg. LLF: 236545437.64562038
Iteration: 3, Func. Count: 28, Neg. LLF: 135.07603370361352
Iteration: 4, Func. Count: 36, Neg. LLF: 135.17761962600434
Iteration: 5, Func. Count: 45, Neg. LLF: 134.95291335037314
Iteration: 6, Func. Count: 53, Neg. LLF: 134.9466305210097
Iteration: 7, Func. Count: 61, Neg. LLF: 139.71587205458397
Iteration: 8, Func. Count: 73, Neg. LLF: 134.94693906628217
Iteration: 9, Func. Count: 83, Neg. LLF: 134.94680460458468
Iteration: 10, Func. Count: 93, Neg. LLF: 134.9468037271017
Iteration: 11, Func. Count: 111, Neg. LLF: 134.94680637391394
Iteration: 12, Func. Count: 123, Neg. LLF: 134.94680445837503
Iteration: 13, Func. Count: 140, Neg. LLF: 134.94665046176513
Optimization terminated successfully (Exit mode 0)
Current function value: 134.94665080719886
Iterations: 17
Function evaluations: 140
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 31882132.409597076
Iteration: 2, Func. Count: 21, Neg. LLF: 488.35960412087803
Iteration: 3, Func. Count: 34, Neg. LLF: 138.52571571104312
Iteration: 4, Func. Count: 43, Neg. LLF: 137.7334165776977
Iteration: 5, Func. Count: 52, Neg. LLF: 138.32733066824323
Iteration: 6, Func. Count: 62, Neg. LLF: 138.42758105791762
Iteration: 7, Func. Count: 72, Neg. LLF: 675797.806638449
Iteration: 8, Func. Count: 83, Neg. LLF: 291.0500208451771
Iteration: 9, Func. Count: 96, Neg. LLF: 134.93470340541933
Iteration: 10, Func. Count: 105, Neg. LLF: 157.80755049244263
Iteration: 11, Func. Count: 116, Neg. LLF: 134.6088641606827
Iteration: 12, Func. Count: 125, Neg. LLF: 134.56575400746547
Iteration: 13, Func. Count: 134, Neg. LLF: 134.56500951942854
Iteration: 14, Func. Count: 143, Neg. LLF: 134.5650030539797
Iteration: 15, Func. Count: 152, Neg. LLF: 134.56500153783435
Iteration: 16, Func. Count: 160, Neg. LLF: 134.56500121694106
Optimization terminated successfully (Exit mode 0)
Current function value: 134.56500153783435
Iterations: 17
Function evaluations: 160
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 28719152.86928706
Iteration: 2, Func. Count: 22, Neg. LLF: 646.70369718025
Iteration: 3, Func. Count: 35, Neg. LLF: 140.7716969717897
Iteration: 4, Func. Count: 45, Neg. LLF: 183.59584847570906
Iteration: 5, Func. Count: 59, Neg. LLF: 157.94895432086892
Iteration: 6, Func. Count: 71, Neg. LLF: 261.33197217747323
Iteration: 7, Func. Count: 82, Neg. LLF: 136.89848069311466
Iteration: 8, Func. Count: 92, Neg. LLF: 136.56150595282318
Iteration: 9, Func. Count: 102, Neg. LLF: 136.50645685753628
Iteration: 10, Func. Count: 112, Neg. LLF: 136.37581006166718
Iteration: 11, Func. Count: 122, Neg. LLF: 136.35969667077129
Iteration: 12, Func. Count: 132, Neg. LLF: 136.35613379217514
Iteration: 13, Func. Count: 142, Neg. LLF: 136.3559322140256
Iteration: 14, Func. Count: 152, Neg. LLF: 136.3559316800892
Optimization terminated successfully (Exit mode 0)
Current function value: 136.3559316800892
Iterations: 14
Function evaluations: 152
Gradient evaluations: 14
Iteration: 1, Func. Count: 12, Neg. LLF: 25603805.569099307
Iteration: 2, Func. Count: 24, Neg. LLF: 5512734393.383658
Iteration: 3, Func. Count: 37, Neg. LLF: 134.13369972382287
Iteration: 4, Func. Count: 48, Neg. LLF: 134.47247451751574
Iteration: 5, Func. Count: 60, Neg. LLF: 133.354541144775
Iteration: 6, Func. Count: 71, Neg. LLF: 133.23203919700748
Iteration: 7, Func. Count: 82, Neg. LLF: 133.22824361910114
Iteration: 8, Func. Count: 93, Neg. LLF: 135.15671300003643
Iteration: 9, Func. Count: 107, Neg. LLF: 133.23444577777937
Iteration: 10, Func. Count: 119, Neg. LLF: 133.227770152098
Iteration: 11, Func. Count: 129, Neg. LLF: 133.2277699881556
Optimization terminated successfully (Exit mode 0)
Current function value: 133.227770152098
Iterations: 12
Function evaluations: 129
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 151.87275594658388
Iteration: 2, Func. Count: 17, Neg. LLF: 160.68049086642432
Iteration: 3, Func. Count: 26, Neg. LLF: 153.12467616241085
Iteration: 4, Func. Count: 37, Neg. LLF: 149.50177417734452
Iteration: 5, Func. Count: 46, Neg. LLF: 157.65631397731994
Iteration: 6, Func. Count: 57, Neg. LLF: 147.56771220504916
Iteration: 7, Func. Count: 65, Neg. LLF: 147.34336409665025
Iteration: 8, Func. Count: 73, Neg. LLF: 174.96945790946538
Iteration: 9, Func. Count: 82, Neg. LLF: 172.28071624817642
Iteration: 10, Func. Count: 91, Neg. LLF: 528.4991002680881
Iteration: 11, Func. Count: 100, Neg. LLF: 172.50726891409306
Iteration: 12, Func. Count: 109, Neg. LLF: 188.64026143033007
Iteration: 13, Func. Count: 118, Neg. LLF: 173.28699327552184
Iteration: 14, Func. Count: 127, Neg. LLF: 146.35656038541413
Iteration: 15, Func. Count: 136, Neg. LLF: 144.89120586916334
Iteration: 16, Func. Count: 145, Neg. LLF: 144.43443242067562
Iteration: 17, Func. Count: 154, Neg. LLF: 144.42305080990877
Iteration: 18, Func. Count: 163, Neg. LLF: 144.27936697663148
Iteration: 19, Func. Count: 172, Neg. LLF: 143.71114670781563
Iteration: 20, Func. Count: 181, Neg. LLF: 144.25648391873412
Iteration: 21, Func. Count: 190, Neg. LLF: 143.5680713758537
Iteration: 22, Func. Count: 199, Neg. LLF: 143.5023111958185
Iteration: 23, Func. Count: 207, Neg. LLF: 143.4903727111767
Iteration: 24, Func. Count: 215, Neg. LLF: 143.4766750852417
Iteration: 25, Func. Count: 223, Neg. LLF: 143.47520762119214
Iteration: 26, Func. Count: 231, Neg. LLF: 143.47508599381342
Iteration: 27, Func. Count: 239, Neg. LLF: 143.47507931545016
Iteration: 28, Func. Count: 246, Neg. LLF: 143.47507919059262
Optimization terminated successfully (Exit mode 0)
Current function value: 143.47507931545016
Iterations: 28
Function evaluations: 246
Gradient evaluations: 28
Iteration: 1, Func. Count: 10, Neg. LLF: 173.12636729370152
Iteration: 2, Func. Count: 20, Neg. LLF: 241969803.49641111
Iteration: 3, Func. Count: 31, Neg. LLF: 133.54085762869758
Iteration: 4, Func. Count: 40, Neg. LLF: 134.60730239166318
Iteration: 5, Func. Count: 50, Neg. LLF: 133.35861106925086
Iteration: 6, Func. Count: 59, Neg. LLF: 133.35747907645208
Iteration: 7, Func. Count: 68, Neg. LLF: 133.35541082820856
Iteration: 8, Func. Count: 77, Neg. LLF: 133.3554718496787
Iteration: 9, Func. Count: 96, Neg. LLF: 133.35545579456294
Iteration: 10, Func. Count: 115, Neg. LLF: 133.3553530229985
Iteration: 11, Func. Count: 134, Neg. LLF: 133.35547049041986
Iteration: 12, Func. Count: 153, Neg. LLF: 133.35547912052394
Iteration: 13, Func. Count: 172, Neg. LLF: 133.35536654078996
Iteration: 14, Func. Count: 191, Neg. LLF: 133.8486360901629
Iteration: 15, Func. Count: 203, Neg. LLF: 133.35561429029448
Iteration: 16, Func. Count: 214, Neg. LLF: 133.3554959096717
Iteration: 17, Func. Count: 222, Neg. LLF: 133.35549538908552
Optimization terminated successfully (Exit mode 0)
Current function value: 133.3554959096717
Iterations: 18
Function evaluations: 222
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 32406848.26222015
Iteration: 2, Func. Count: 23, Neg. LLF: 690.0496910711848
Iteration: 3, Func. Count: 37, Neg. LLF: 156.22657045151746
Iteration: 4, Func. Count: 48, Neg. LLF: 139.4270418585482
Iteration: 5, Func. Count: 58, Neg. LLF: 135.67921527520676
Iteration: 6, Func. Count: 68, Neg. LLF: 316.4611437812245
Iteration: 7, Func. Count: 83, Neg. LLF: 133.48377643691515
Iteration: 8, Func. Count: 93, Neg. LLF: 133.25141418388958
Iteration: 9, Func. Count: 103, Neg. LLF: 133.21643895455117
Iteration: 10, Func. Count: 113, Neg. LLF: 133.19913136467594
Iteration: 11, Func. Count: 123, Neg. LLF: 133.16842207127848
Iteration: 12, Func. Count: 133, Neg. LLF: 133.1545999741132
Iteration: 13, Func. Count: 143, Neg. LLF: 133.13166844606783
Iteration: 14, Func. Count: 153, Neg. LLF: 133.12460066781114
Iteration: 15, Func. Count: 163, Neg. LLF: 133.12255437112313
Iteration: 16, Func. Count: 173, Neg. LLF: 133.1225012724144
Iteration: 17, Func. Count: 183, Neg. LLF: 133.12249846917706
Iteration: 18, Func. Count: 192, Neg. LLF: 133.12249809284617
Optimization terminated successfully (Exit mode 0)
Current function value: 133.12249846917706
Iterations: 18
Function evaluations: 192
Gradient evaluations: 18
Iteration: 1, Func. Count: 12, Neg. LLF: 28768979.636865962
Iteration: 2, Func. Count: 24, Neg. LLF: 463.6682898101966
Iteration: 3, Func. Count: 39, Neg. LLF: 2197325.02484472
Iteration: 4, Func. Count: 53, Neg. LLF: 135.8394068343128
Iteration: 5, Func. Count: 64, Neg. LLF: 148.42218361621167
Iteration: 6, Func. Count: 76, Neg. LLF: 147.3462918386579
Iteration: 7, Func. Count: 89, Neg. LLF: 136.04973354023727
Iteration: 8, Func. Count: 101, Neg. LLF: 132.5377493273438
Iteration: 9, Func. Count: 112, Neg. LLF: 132.53540365610425
Iteration: 10, Func. Count: 123, Neg. LLF: 132.53490582241272
Iteration: 11, Func. Count: 134, Neg. LLF: 132.53483839498222
Iteration: 12, Func. Count: 145, Neg. LLF: 132.53481619745997
Iteration: 13, Func. Count: 155, Neg. LLF: 132.53481590043964
Optimization terminated successfully (Exit mode 0)
Current function value: 132.53481619745997
Iterations: 13
Function evaluations: 155
Gradient evaluations: 13
Iteration: 1, Func. Count: 13, Neg. LLF: 25381715.60007082
Iteration: 2, Func. Count: 26, Neg. LLF: 7194028053.878041
Iteration: 3, Func. Count: 40, Neg. LLF: 136.03797026579943
Iteration: 4, Func. Count: 52, Neg. LLF: 132.0150771537466
Iteration: 5, Func. Count: 64, Neg. LLF: 141.06607782112232
Iteration: 6, Func. Count: 77, Neg. LLF: 165.0836398634481
Iteration: 7, Func. Count: 91, Neg. LLF: 131.35239124298712
Iteration: 8, Func. Count: 104, Neg. LLF: 130.60019217286916
Iteration: 9, Func. Count: 117, Neg. LLF: 130.08964897703476
Iteration: 10, Func. Count: 129, Neg. LLF: 130.08760467394777
Iteration: 11, Func. Count: 141, Neg. LLF: 130.08748272996547
Iteration: 12, Func. Count: 153, Neg. LLF: 130.08747081660428
Iteration: 13, Func. Count: 164, Neg. LLF: 130.08747054629816
Optimization terminated successfully (Exit mode 0)
Current function value: 130.08747081660428
Iterations: 13
Function evaluations: 164
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 150.25664359772512
Iteration: 2, Func. Count: 19, Neg. LLF: 163.7910663401223
Iteration: 3, Func. Count: 29, Neg. LLF: 159.37841965517768
Iteration: 4, Func. Count: 42, Neg. LLF: 147.98216063788672
Iteration: 5, Func. Count: 51, Neg. LLF: 161.3514099227407
Iteration: 6, Func. Count: 63, Neg. LLF: 147.49493839318072
Iteration: 7, Func. Count: 72, Neg. LLF: 145.9415048749653
Iteration: 8, Func. Count: 81, Neg. LLF: 561.49335144791
Iteration: 9, Func. Count: 91, Neg. LLF: 157.43423221807836
Iteration: 10, Func. Count: 103, Neg. LLF: 19432.31148686835
Iteration: 11, Func. Count: 113, Neg. LLF: 176.15654743773885
Iteration: 12, Func. Count: 123, Neg. LLF: 172.23166822517112
Iteration: 13, Func. Count: 133, Neg. LLF: 176.52968433066272
Iteration: 14, Func. Count: 143, Neg. LLF: 174.75382972642157
Iteration: 15, Func. Count: 153, Neg. LLF: 144.51693088013593
Iteration: 16, Func. Count: 163, Neg. LLF: 143.52811559091938
Iteration: 17, Func. Count: 173, Neg. LLF: 143.4192793385238
Iteration: 18, Func. Count: 182, Neg. LLF: 143.37322724482826
Iteration: 19, Func. Count: 191, Neg. LLF: 172.58682755581145
Iteration: 20, Func. Count: 201, Neg. LLF: 145.67234612124963
Iteration: 21, Func. Count: 211, Neg. LLF: 143.0801977091265
Iteration: 22, Func. Count: 220, Neg. LLF: 143.0130660488145
Iteration: 23, Func. Count: 229, Neg. LLF: 142.98090554673445
Iteration: 24, Func. Count: 238, Neg. LLF: 142.9794428878523
Iteration: 25, Func. Count: 247, Neg. LLF: 142.97808667571573
Iteration: 26, Func. Count: 256, Neg. LLF: 142.97800095775733
Iteration: 27, Func. Count: 265, Neg. LLF: 142.97798908037754
Iteration: 28, Func. Count: 273, Neg. LLF: 142.9779892098505
Optimization terminated successfully (Exit mode 0)
Current function value: 142.97798908037754
Iterations: 28
Function evaluations: 273
Gradient evaluations: 28
Iteration: 1, Func. Count: 11, Neg. LLF: 174.47402570259342
Iteration: 2, Func. Count: 22, Neg. LLF: 255971173.35627264
Iteration: 3, Func. Count: 34, Neg. LLF: 133.29948928139825
Iteration: 4, Func. Count: 44, Neg. LLF: 137.04557768472006
Iteration: 5, Func. Count: 55, Neg. LLF: 132.90306025137562
Iteration: 6, Func. Count: 65, Neg. LLF: 132.8933405802084
Iteration: 7, Func. Count: 75, Neg. LLF: 132.8914707157342
Iteration: 8, Func. Count: 85, Neg. LLF: 132.8913727610895
Iteration: 9, Func. Count: 95, Neg. LLF: 143.36245059620296
Iteration: 10, Func. Count: 108, Neg. LLF: 132.8927217282708
Iteration: 11, Func. Count: 120, Neg. LLF: 132.89137201653176
Iteration: 12, Func. Count: 129, Neg. LLF: 132.89137146528577
Optimization terminated successfully (Exit mode 0)
Current function value: 132.89137201653176
Iterations: 13
Function evaluations: 129
Gradient evaluations: 12
Iteration: 1, Func. Count: 12, Neg. LLF: 33460071.016294006
Iteration: 2, Func. Count: 25, Neg. LLF: 18716.54762917431
Iteration: 3, Func. Count: 39, Neg. LLF: 148.51330065650026
Iteration: 4, Func. Count: 51, Neg. LLF: 137.8923228555003
Iteration: 5, Func. Count: 62, Neg. LLF: 133.50797949651755
Iteration: 6, Func. Count: 73, Neg. LLF: 135.73328319282874
Iteration: 7, Func. Count: 85, Neg. LLF: 133.13483835274994
Iteration: 8, Func. Count: 96, Neg. LLF: 133.12907092555162
Iteration: 9, Func. Count: 107, Neg. LLF: 133.12503626268366
Iteration: 10, Func. Count: 118, Neg. LLF: 133.1241295788469
Iteration: 11, Func. Count: 129, Neg. LLF: 133.12311035878193
Iteration: 12, Func. Count: 140, Neg. LLF: 133.12260251364887
Iteration: 13, Func. Count: 151, Neg. LLF: 133.12250256957816
Iteration: 14, Func. Count: 162, Neg. LLF: 133.12249848072588
Iteration: 15, Func. Count: 172, Neg. LLF: 133.1224981050908
Optimization terminated successfully (Exit mode 0)
Current function value: 133.12249848072588
Iterations: 15
Function evaluations: 172
Gradient evaluations: 15
Iteration: 1, Func. Count: 13, Neg. LLF: 29289562.863356452
Iteration: 2, Func. Count: 26, Neg. LLF: 510.9053878547615
Iteration: 3, Func. Count: 42, Neg. LLF: 1555469.2587353468
Iteration: 4, Func. Count: 56, Neg. LLF: 135.94699184832865
Iteration: 5, Func. Count: 68, Neg. LLF: 131.88814550694082
Iteration: 6, Func. Count: 80, Neg. LLF: 1082253.0009548534
Iteration: 7, Func. Count: 93, Neg. LLF: 127.204946127185
Iteration: 8, Func. Count: 106, Neg. LLF: 126.99313372199356
Iteration: 9, Func. Count: 118, Neg. LLF: 126.98641187100168
Iteration: 10, Func. Count: 130, Neg. LLF: 126.98634491852559
Iteration: 11, Func. Count: 142, Neg. LLF: 127.29402845871768
Optimization terminated successfully (Exit mode 0)
Current function value: 126.98634478292732
Iterations: 12
Function evaluations: 146
Gradient evaluations: 11
Iteration: 1, Func. Count: 14, Neg. LLF: 25793243.990035456
Iteration: 2, Func. Count: 28, Neg. LLF: 8568088267.795058
Iteration: 3, Func. Count: 43, Neg. LLF: 134.75882193399107
Iteration: 4, Func. Count: 56, Neg. LLF: 132.5966822276941
Iteration: 5, Func. Count: 69, Neg. LLF: 141.13600468061844
Iteration: 6, Func. Count: 83, Neg. LLF: 137.97418350087239
Iteration: 7, Func. Count: 97, Neg. LLF: 149.00039274020077
Iteration: 8, Func. Count: 112, Neg. LLF: 130.60668705167026
Iteration: 9, Func. Count: 126, Neg. LLF: 130.10947130074757
Iteration: 10, Func. Count: 139, Neg. LLF: 130.0904338156026
Iteration: 11, Func. Count: 152, Neg. LLF: 130.08753660285984
Iteration: 12, Func. Count: 165, Neg. LLF: 130.08747511919398
Iteration: 13, Func. Count: 178, Neg. LLF: 130.08747103763176
Iteration: 14, Func. Count: 190, Neg. LLF: 130.08747076717106
Optimization terminated successfully (Exit mode 0)
Current function value: 130.08747103763176
Iterations: 14
Function evaluations: 190
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 149.45274113601846
Iteration: 2, Func. Count: 21, Neg. LLF: 163.36113471047298
Iteration: 3, Func. Count: 32, Neg. LLF: 158.84785070444542
Iteration: 4, Func. Count: 46, Neg. LLF: 147.95992092111848
Iteration: 5, Func. Count: 56, Neg. LLF: 164.8265319628323
Iteration: 6, Func. Count: 69, Neg. LLF: 147.3869482482928
Iteration: 7, Func. Count: 79, Neg. LLF: 145.9363166059788
Iteration: 8, Func. Count: 89, Neg. LLF: 194.75818591886775
Iteration: 9, Func. Count: 100, Neg. LLF: 367.8327794752892
Iteration: 10, Func. Count: 111, Neg. LLF: 284.88636823387003
Iteration: 11, Func. Count: 122, Neg. LLF: 348.5127615385642
Iteration: 12, Func. Count: 133, Neg. LLF: 146.10287548569224
Iteration: 13, Func. Count: 144, Neg. LLF: 190.1763931170662
Iteration: 14, Func. Count: 155, Neg. LLF: 144.45407161708673
Iteration: 15, Func. Count: 166, Neg. LLF: 143.9503802838063
Iteration: 16, Func. Count: 177, Neg. LLF: 144.23428755676818
Iteration: 17, Func. Count: 188, Neg. LLF: 143.91821736900232
Iteration: 18, Func. Count: 199, Neg. LLF: 143.509129226353
Iteration: 19, Func. Count: 209, Neg. LLF: 143.93340660339823
Iteration: 20, Func. Count: 220, Neg. LLF: 143.4638495677419
Iteration: 21, Func. Count: 230, Neg. LLF: 143.42174039024093
Iteration: 22, Func. Count: 240, Neg. LLF: 143.38472296625196
Iteration: 23, Func. Count: 250, Neg. LLF: 143.254616909139
Iteration: 24, Func. Count: 260, Neg. LLF: 143.12622594004765
Iteration: 25, Func. Count: 270, Neg. LLF: 143.0245697426204
Iteration: 26, Func. Count: 280, Neg. LLF: 142.9828241614093
Iteration: 27, Func. Count: 290, Neg. LLF: 142.97871281067066
Iteration: 28, Func. Count: 300, Neg. LLF: 142.97803267196662
Iteration: 29, Func. Count: 310, Neg. LLF: 142.97799391182343
Iteration: 30, Func. Count: 320, Neg. LLF: 142.9779898292949
Iteration: 31, Func. Count: 330, Neg. LLF: 142.97798910766346
Optimization terminated successfully (Exit mode 0)
Current function value: 142.97798910766346
Iterations: 31
Function evaluations: 330
Gradient evaluations: 31
Iteration: 1, Func. Count: 12, Neg. LLF: 8713724.05930408
Iteration: 2, Func. Count: 24, Neg. LLF: 435.3204476926062
Iteration: 3, Func. Count: 39, Neg. LLF: 133.9337390367777
Iteration: 4, Func. Count: 50, Neg. LLF: 165.05332153991975
Iteration: 5, Func. Count: 62, Neg. LLF: 135.55235148500932
Iteration: 6, Func. Count: 74, Neg. LLF: 130.89239630399584
Iteration: 7, Func. Count: 85, Neg. LLF: 130.88490706130355
Iteration: 8, Func. Count: 96, Neg. LLF: 130.88402206737194
Iteration: 9, Func. Count: 107, Neg. LLF: 130.88389916632195
Iteration: 10, Func. Count: 118, Neg. LLF: 130.8921409507235
Optimization terminated successfully (Exit mode 0)
Current function value: 130.88389917121415
Iterations: 11
Function evaluations: 121
Gradient evaluations: 10
Iteration: 1, Func. Count: 13, Neg. LLF: 34018914.51180154
Iteration: 2, Func. Count: 27, Neg. LLF: 607518.4346511717
Iteration: 3, Func. Count: 42, Neg. LLF: 228.80944083401135
Iteration: 4, Func. Count: 55, Neg. LLF: 139.24661348560994
Iteration: 5, Func. Count: 67, Neg. LLF: 132.47069992294928
Iteration: 6, Func. Count: 79, Neg. LLF: 13233195.488469642
Iteration: 7, Func. Count: 95, Neg. LLF: 132.14108095147915
Iteration: 8, Func. Count: 108, Neg. LLF: 131.3559006462454
Iteration: 9, Func. Count: 120, Neg. LLF: 131.3203323488733
Iteration: 10, Func. Count: 132, Neg. LLF: 130.97390851262645
Iteration: 11, Func. Count: 144, Neg. LLF: 130.89112030611608
Iteration: 12, Func. Count: 156, Neg. LLF: 130.88322480072492
Iteration: 13, Func. Count: 168, Neg. LLF: 130.88390925640314
Iteration: 14, Func. Count: 180, Neg. LLF: 130.89304669919886
Optimization terminated successfully (Exit mode 0)
Current function value: 130.88390925070564
Iterations: 15
Function evaluations: 183
Gradient evaluations: 14
Iteration: 1, Func. Count: 14, Neg. LLF: 29598229.16079161
Iteration: 2, Func. Count: 28, Neg. LLF: 566.7877425417909
Iteration: 3, Func. Count: 44, Neg. LLF: 696.077619102273
Iteration: 4, Func. Count: 59, Neg. LLF: 142.06169462009439
Iteration: 5, Func. Count: 72, Neg. LLF: 134.22793850420584
Iteration: 6, Func. Count: 85, Neg. LLF: 4086.919190636819
Iteration: 7, Func. Count: 99, Neg. LLF: 127.94302283137162
Iteration: 8, Func. Count: 112, Neg. LLF: 127.28323339324852
Iteration: 9, Func. Count: 125, Neg. LLF: 127.07212527182166
Iteration: 10, Func. Count: 138, Neg. LLF: 126.99492322377128
Iteration: 11, Func. Count: 151, Neg. LLF: 126.9866546305107
Iteration: 12, Func. Count: 164, Neg. LLF: 126.9863501913193
Iteration: 13, Func. Count: 177, Neg. LLF: 126.98634620779252
Iteration: 14, Func. Count: 189, Neg. LLF: 126.98634591443292
Optimization terminated successfully (Exit mode 0)
Current function value: 126.98634620779252
Iterations: 14
Function evaluations: 189
Gradient evaluations: 14
Iteration: 1, Func. Count: 15, Neg. LLF: 26005559.698471606
Iteration: 2, Func. Count: 30, Neg. LLF: 7638660979.297767
Iteration: 3, Func. Count: 46, Neg. LLF: 135.66101225822013
Iteration: 4, Func. Count: 60, Neg. LLF: 131.53751292430238
Iteration: 5, Func. Count: 74, Neg. LLF: 234.9198044183706
Iteration: 6, Func. Count: 90, Neg. LLF: 130.7740296052681
Iteration: 7, Func. Count: 104, Neg. LLF: 157.20543846013524
Iteration: 8, Func. Count: 119, Neg. LLF: 130.40999216077506
Iteration: 9, Func. Count: 133, Neg. LLF: 130.10489373606308
Iteration: 10, Func. Count: 147, Neg. LLF: 130.09227407640927
Iteration: 11, Func. Count: 161, Neg. LLF: 130.0887167770851
Iteration: 12, Func. Count: 175, Neg. LLF: 130.08783149805703
Iteration: 13, Func. Count: 189, Neg. LLF: 130.08748255270226
Iteration: 14, Func. Count: 203, Neg. LLF: 130.0874710640165
Iteration: 15, Func. Count: 216, Neg. LLF: 130.08747079359583
Optimization terminated successfully (Exit mode 0)
Current function value: 130.0874710640165
Iterations: 15
Function evaluations: 216
Gradient evaluations: 15
Iteration: 1, Func. Count: 8, Neg. LLF: 147.54701649084078
Iteration: 2, Func. Count: 15, Neg. LLF: 171.1686766167604
Iteration: 3, Func. Count: 23, Neg. LLF: 188.53207679281022
Iteration: 4, Func. Count: 34, Neg. LLF: 182.45327061428532
Iteration: 5, Func. Count: 43, Neg. LLF: 146.0479900257749
Iteration: 6, Func. Count: 50, Neg. LLF: 141.83153837751829
Iteration: 7, Func. Count: 57, Neg. LLF: 150.09251831060817
Iteration: 8, Func. Count: 65, Neg. LLF: 158.03637824539305
Iteration: 9, Func. Count: 73, Neg. LLF: 398.0676537448351
Iteration: 10, Func. Count: 81, Neg. LLF: 217.08843504582703
Iteration: 11, Func. Count: 89, Neg. LLF: 199.0435851902948
Iteration: 12, Func. Count: 97, Neg. LLF: 197.887219143031
Iteration: 13, Func. Count: 106, Neg. LLF: 135.88349325862768
Iteration: 14, Func. Count: 114, Neg. LLF: 13640.557483095976
Iteration: 15, Func. Count: 122, Neg. LLF: 618.6937898570105
Iteration: 16, Func. Count: 130, Neg. LLF: 442.0769095982254
Iteration: 17, Func. Count: 138, Neg. LLF: 180.94402111175876
Iteration: 18, Func. Count: 146, Neg. LLF: 249.900045130162
Iteration: 19, Func. Count: 154, Neg. LLF: 162.22789141337066
Iteration: 20, Func. Count: 162, Neg. LLF: 170.0551989043021
Iteration: 21, Func. Count: 170, Neg. LLF: 256.0932734954096
Iteration: 22, Func. Count: 178, Neg. LLF: 127.82189369835865
Iteration: 23, Func. Count: 186, Neg. LLF: 126.81221305587329
Iteration: 24, Func. Count: 193, Neg. LLF: 126.79684143983954
Iteration: 25, Func. Count: 200, Neg. LLF: 127.95357375743944
Iteration: 26, Func. Count: 210, Neg. LLF: 126.79537100832795
Iteration: 27, Func. Count: 217, Neg. LLF: 126.79484076339449
Iteration: 28, Func. Count: 224, Neg. LLF: 126.79390028425516
Iteration: 29, Func. Count: 231, Neg. LLF: 126.7934507868449
Iteration: 30, Func. Count: 238, Neg. LLF: 126.79341180664656
Iteration: 31, Func. Count: 245, Neg. LLF: 126.79341080733252
Optimization terminated successfully (Exit mode 0)
Current function value: 126.79341080733252
Iterations: 32
Function evaluations: 245
Gradient evaluations: 31
Iteration: 1, Func. Count: 9, Neg. LLF: 280.4265885885612
Iteration: 2, Func. Count: 18, Neg. LLF: 1225.606382834164
Iteration: 3, Func. Count: 27, Neg. LLF: 142.17434976025262
Iteration: 4, Func. Count: 36, Neg. LLF: 146.61188360823763
Iteration: 5, Func. Count: 45, Neg. LLF: 139.74430121342948
Iteration: 6, Func. Count: 54, Neg. LLF: 154.76509892602462
Iteration: 7, Func. Count: 63, Neg. LLF: 130.83501830362903
Iteration: 8, Func. Count: 72, Neg. LLF: 132.0655249605752
Iteration: 9, Func. Count: 81, Neg. LLF: 127.0793299317858
Iteration: 10, Func. Count: 89, Neg. LLF: 130.8463683367545
Iteration: 11, Func. Count: 99, Neg. LLF: 132.09904782249717
Iteration: 12, Func. Count: 109, Neg. LLF: 131.33575789657735
Iteration: 13, Func. Count: 118, Neg. LLF: 126.56380827115763
Iteration: 14, Func. Count: 126, Neg. LLF: 126.5582669133248
Iteration: 15, Func. Count: 134, Neg. LLF: 126.55509467318772
Iteration: 16, Func. Count: 142, Neg. LLF: 126.553813334725
Iteration: 17, Func. Count: 150, Neg. LLF: 126.5520634306242
Iteration: 18, Func. Count: 158, Neg. LLF: 126.55180856734303
Iteration: 19, Func. Count: 166, Neg. LLF: 126.55176863303244
Iteration: 20, Func. Count: 173, Neg. LLF: 126.55176848754185
Optimization terminated successfully (Exit mode 0)
Current function value: 126.55176863303244
Iterations: 20
Function evaluations: 173
Gradient evaluations: 20
Iteration: 1, Func. Count: 10, Neg. LLF: 36775845.56828464
Iteration: 2, Func. Count: 20, Neg. LLF: 1127508047.700735
Iteration: 3, Func. Count: 31, Neg. LLF: 220.3419680720801
Iteration: 4, Func. Count: 41, Neg. LLF: 135.03684449728766
Iteration: 5, Func. Count: 50, Neg. LLF: 216.73740064427867
Iteration: 6, Func. Count: 62, Neg. LLF: 2354.1099428418784
Iteration: 7, Func. Count: 72, Neg. LLF: 153.77386659255254
Iteration: 8, Func. Count: 82, Neg. LLF: 158.64198777127936
Iteration: 9, Func. Count: 93, Neg. LLF: 135.07253286454292
Iteration: 10, Func. Count: 104, Neg. LLF: 129.22974776121382
Iteration: 11, Func. Count: 113, Neg. LLF: 129.11440507042582
Iteration: 12, Func. Count: 123, Neg. LLF: 128.4536696132471
Iteration: 13, Func. Count: 133, Neg. LLF: 129.23215008451763
Iteration: 14, Func. Count: 143, Neg. LLF: 127.17745872541343
Iteration: 15, Func. Count: 152, Neg. LLF: 134.46777945652096
Iteration: 16, Func. Count: 162, Neg. LLF: 177.4957529645379
Iteration: 17, Func. Count: 173, Neg. LLF: 126.62634360045362
Iteration: 18, Func. Count: 182, Neg. LLF: 126.5578579606047
Iteration: 19, Func. Count: 191, Neg. LLF: 126.55266315173847
Iteration: 20, Func. Count: 200, Neg. LLF: 126.5523811777141
Iteration: 21, Func. Count: 209, Neg. LLF: 126.55222406509948
Iteration: 22, Func. Count: 218, Neg. LLF: 126.5519594747196
Iteration: 23, Func. Count: 227, Neg. LLF: 126.55179279774053
Iteration: 24, Func. Count: 236, Neg. LLF: 126.55177065241674
Iteration: 25, Func. Count: 245, Neg. LLF: 126.55176848852862
Iteration: 26, Func. Count: 253, Neg. LLF: 126.55176992634325
Optimization terminated successfully (Exit mode 0)
Current function value: 126.55176848852862
Iterations: 26
Function evaluations: 253
Gradient evaluations: 26
Iteration: 1, Func. Count: 11, Neg. LLF: 26363464.353415433
Iteration: 2, Func. Count: 22, Neg. LLF: 658730476.1334406
Iteration: 3, Func. Count: 34, Neg. LLF: 583.7420535275916
Iteration: 4, Func. Count: 45, Neg. LLF: 159.05969602516151
Iteration: 5, Func. Count: 56, Neg. LLF: 157.512686996748
Iteration: 6, Func. Count: 67, Neg. LLF: 150.05647675569156
Iteration: 7, Func. Count: 78, Neg. LLF: 150.18443825747528
Iteration: 8, Func. Count: 89, Neg. LLF: 132.04136864457786
Iteration: 9, Func. Count: 99, Neg. LLF: 135.4726496710678
Iteration: 10, Func. Count: 111, Neg. LLF: 161.21134930525403
Iteration: 11, Func. Count: 122, Neg. LLF: 141.0309073907563
Iteration: 12, Func. Count: 133, Neg. LLF: 130.03752250867834
Iteration: 13, Func. Count: 143, Neg. LLF: 129.94364353025117
Iteration: 14, Func. Count: 153, Neg. LLF: 129.93390750819026
Iteration: 15, Func. Count: 163, Neg. LLF: 129.93355943979878
Iteration: 16, Func. Count: 173, Neg. LLF: 129.93324158862143
Iteration: 17, Func. Count: 183, Neg. LLF: 129.93314617629903
Iteration: 18, Func. Count: 193, Neg. LLF: 129.93312062173234
Iteration: 19, Func. Count: 203, Neg. LLF: 129.93311933795977
Iteration: 20, Func. Count: 212, Neg. LLF: 129.9331193142406
Optimization terminated successfully (Exit mode 0)
Current function value: 129.93311933795977
Iterations: 20
Function evaluations: 212
Gradient evaluations: 20
Iteration: 1, Func. Count: 12, Neg. LLF: 21727074.499859825
Iteration: 2, Func. Count: 24, Neg. LLF: 454440090.28887564
Iteration: 3, Func. Count: 37, Neg. LLF: 370.25892157744727
Iteration: 4, Func. Count: 49, Neg. LLF: 164.14288698776537
Iteration: 5, Func. Count: 61, Neg. LLF: 231.92962424990813
Iteration: 6, Func. Count: 73, Neg. LLF: 184.95223104507826
Iteration: 7, Func. Count: 85, Neg. LLF: 133.46224765451072
Iteration: 8, Func. Count: 96, Neg. LLF: 228.86621890116112
Iteration: 9, Func. Count: 109, Neg. LLF: 168.1420030912673
Iteration: 10, Func. Count: 121, Neg. LLF: 127.60259185809757
Iteration: 11, Func. Count: 132, Neg. LLF: 142.85490392859984
Iteration: 12, Func. Count: 147, Neg. LLF: 246.3383690888174
Iteration: 13, Func. Count: 160, Neg. LLF: 9028388.910170184
Iteration: 14, Func. Count: 173, Neg. LLF: 127.92426648222757
Iteration: 15, Func. Count: 185, Neg. LLF: 125.88582554822008
Iteration: 16, Func. Count: 196, Neg. LLF: 125.50539279233195
Iteration: 17, Func. Count: 207, Neg. LLF: 125.42162124405631
Iteration: 18, Func. Count: 218, Neg. LLF: 125.39584086915976
Iteration: 19, Func. Count: 229, Neg. LLF: 125.38945412060983
Iteration: 20, Func. Count: 240, Neg. LLF: 125.38755131063598
Iteration: 21, Func. Count: 251, Neg. LLF: 125.38734927739597
Iteration: 22, Func. Count: 262, Neg. LLF: 125.38728261460084
Iteration: 23, Func. Count: 272, Neg. LLF: 125.38728255419474
Optimization terminated successfully (Exit mode 0)
Current function value: 125.38728261460084
Iterations: 23
Function evaluations: 272
Gradient evaluations: 23
Iteration: 1, Func. Count: 9, Neg. LLF: 150.67842385502402
Iteration: 2, Func. Count: 17, Neg. LLF: 150.85951825007976
Iteration: 3, Func. Count: 26, Neg. LLF: 183.24315160909651
Iteration: 4, Func. Count: 38, Neg. LLF: 154.5017487272274
Iteration: 5, Func. Count: 50, Neg. LLF: 145.82355242725473
Iteration: 6, Func. Count: 58, Neg. LLF: 140.30672385861834
Iteration: 7, Func. Count: 66, Neg. LLF: 446.20941782640244
Iteration: 8, Func. Count: 75, Neg. LLF: 364.55199044546265
Iteration: 9, Func. Count: 84, Neg. LLF: 339.7201039963223
Iteration: 10, Func. Count: 93, Neg. LLF: 225.05471208952875
Iteration: 11, Func. Count: 102, Neg. LLF: 179.67752940712137
Iteration: 12, Func. Count: 113, Neg. LLF: 132.34811463003984
Iteration: 13, Func. Count: 121, Neg. LLF: 162.39719708218033
Iteration: 14, Func. Count: 130, Neg. LLF: 183.70063894385544
Iteration: 15, Func. Count: 140, Neg. LLF: 2180.077858414514
Iteration: 16, Func. Count: 149, Neg. LLF: 192.50736154889393
Iteration: 17, Func. Count: 158, Neg. LLF: 281.20809541308427
Iteration: 18, Func. Count: 167, Neg. LLF: 127.79692542642599
Iteration: 19, Func. Count: 176, Neg. LLF: 126.91958677790034
Iteration: 20, Func. Count: 184, Neg. LLF: 126.84955008502403
Iteration: 21, Func. Count: 192, Neg. LLF: 126.72247648477767
Iteration: 22, Func. Count: 200, Neg. LLF: 126.66412803064544
Iteration: 23, Func. Count: 208, Neg. LLF: 126.62790865538935
Iteration: 24, Func. Count: 216, Neg. LLF: 126.61657728996487
Iteration: 25, Func. Count: 224, Neg. LLF: 126.61388587968649
Iteration: 26, Func. Count: 232, Neg. LLF: 126.61352496628555
Iteration: 27, Func. Count: 240, Neg. LLF: 126.61351606090662
Iteration: 28, Func. Count: 247, Neg. LLF: 126.61351606404772
Optimization terminated successfully (Exit mode 0)
Current function value: 126.61351606090662
Iterations: 29
Function evaluations: 247
Gradient evaluations: 28
Iteration: 1, Func. Count: 10, Neg. LLF: 171.930423623493
Iteration: 2, Func. Count: 20, Neg. LLF: 232517705.97911114
Iteration: 3, Func. Count: 31, Neg. LLF: 135.06350296665244
Iteration: 4, Func. Count: 40, Neg. LLF: 135.23722856900065
Iteration: 5, Func. Count: 50, Neg. LLF: 134.9595023791364
Iteration: 6, Func. Count: 59, Neg. LLF: 134.9545762765114
Iteration: 7, Func. Count: 68, Neg. LLF: 134.94702238343146
Iteration: 8, Func. Count: 77, Neg. LLF: 135.1043287372463
Optimization terminated successfully (Exit mode 0)
Current function value: 134.94702174638954
Iterations: 9
Function evaluations: 80
Gradient evaluations: 8
Iteration: 1, Func. Count: 11, Neg. LLF: 32024980.896075264
Iteration: 2, Func. Count: 23, Neg. LLF: 1306.3213956792033
Iteration: 3, Func. Count: 36, Neg. LLF: 16408.018324679197
Iteration: 4, Func. Count: 47, Neg. LLF: 180.96800306457703
Iteration: 5, Func. Count: 58, Neg. LLF: 193.69538482573589
Iteration: 6, Func. Count: 69, Neg. LLF: 280.78437837448735
Iteration: 7, Func. Count: 80, Neg. LLF: 145.0474998988811
Iteration: 8, Func. Count: 91, Neg. LLF: 143.89410512585158
Iteration: 9, Func. Count: 103, Neg. LLF: 168.24235496284743
Iteration: 10, Func. Count: 115, Neg. LLF: 138.47866112885023
Iteration: 11, Func. Count: 125, Neg. LLF: 135.07084959414058
Iteration: 12, Func. Count: 136, Neg. LLF: 137.45551959857778
Iteration: 13, Func. Count: 147, Neg. LLF: 132.61891490111844
Iteration: 14, Func. Count: 158, Neg. LLF: 130.94279551689237
Iteration: 15, Func. Count: 168, Neg. LLF: 134.64608475934978
Iteration: 16, Func. Count: 179, Neg. LLF: 134.46349832648454
Iteration: 17, Func. Count: 190, Neg. LLF: 134.25024742433013
Iteration: 18, Func. Count: 201, Neg. LLF: 133.99713221801812
Iteration: 19, Func. Count: 212, Neg. LLF: 131.38248960072514
Iteration: 20, Func. Count: 223, Neg. LLF: 129.40272684991842
Iteration: 21, Func. Count: 233, Neg. LLF: 128.36538229207179
Iteration: 22, Func. Count: 243, Neg. LLF: 127.89757235272093
Iteration: 23, Func. Count: 253, Neg. LLF: 127.73216280052064
Iteration: 24, Func. Count: 263, Neg. LLF: 127.60620578777379
Iteration: 25, Func. Count: 273, Neg. LLF: 127.05422927812808
Iteration: 26, Func. Count: 283, Neg. LLF: 129.7987769945301
Iteration: 27, Func. Count: 294, Neg. LLF: 132.59311482641644
Iteration: 28, Func. Count: 305, Neg. LLF: 126.56092568232319
Iteration: 29, Func. Count: 315, Neg. LLF: 126.51112017218753
Iteration: 30, Func. Count: 325, Neg. LLF: 129.19595976532463
Iteration: 31, Func. Count: 338, Neg. LLF: 126.44701263794252
Iteration: 32, Func. Count: 348, Neg. LLF: 126.41529626524857
Iteration: 33, Func. Count: 358, Neg. LLF: 126.40970907483278
Iteration: 34, Func. Count: 368, Neg. LLF: 126.4084850782308
Iteration: 35, Func. Count: 378, Neg. LLF: 126.40683115812527
Iteration: 36, Func. Count: 388, Neg. LLF: 126.40438422075574
Iteration: 37, Func. Count: 398, Neg. LLF: 126.40211967006778
Iteration: 38, Func. Count: 408, Neg. LLF: 126.40162553011959
Iteration: 39, Func. Count: 418, Neg. LLF: 126.40157005208427
Iteration: 40, Func. Count: 428, Neg. LLF: 126.40156603576186
Iteration: 41, Func. Count: 438, Neg. LLF: 126.4015649509016
Iteration: 42, Func. Count: 447, Neg. LLF: 126.40156642349928
Optimization terminated successfully (Exit mode 0)
Current function value: 126.4015649509016
Iterations: 42
Function evaluations: 447
Gradient evaluations: 42
Iteration: 1, Func. Count: 12, Neg. LLF: 28885692.701573856
Iteration: 2, Func. Count: 24, Neg. LLF: 1631.0936955941854
Iteration: 3, Func. Count: 38, Neg. LLF: 620.7263644444175
Iteration: 4, Func. Count: 52, Neg. LLF: 165.11202222236776
Iteration: 5, Func. Count: 64, Neg. LLF: 143.75017054274295
Iteration: 6, Func. Count: 76, Neg. LLF: 146.58426073930488
Iteration: 7, Func. Count: 88, Neg. LLF: 135.8923638714603
Iteration: 8, Func. Count: 99, Neg. LLF: 135.8831006780221
Iteration: 9, Func. Count: 111, Neg. LLF: 135.82621667298162
Iteration: 10, Func. Count: 123, Neg. LLF: 135.79772246713262
Iteration: 11, Func. Count: 134, Neg. LLF: 135.79713553324427
Iteration: 12, Func. Count: 145, Neg. LLF: 135.79686997824302
Iteration: 13, Func. Count: 156, Neg. LLF: 135.79686899001626
Iteration: 14, Func. Count: 167, Neg. LLF: 135.79688087286996
Iteration: 15, Func. Count: 178, Neg. LLF: 135.79686216347463
Optimization terminated successfully (Exit mode 0)
Current function value: 135.79688085523566
Iterations: 15
Function evaluations: 188
Gradient evaluations: 15
Iteration: 1, Func. Count: 13, Neg. LLF: 25785046.858434185
Iteration: 2, Func. Count: 26, Neg. LLF: 5214.155677508807
Iteration: 3, Func. Count: 40, Neg. LLF: 385.544993418002
Iteration: 4, Func. Count: 54, Neg. LLF: 160.33251192092507
Iteration: 5, Func. Count: 68, Neg. LLF: 133.011938263333
Iteration: 6, Func. Count: 80, Neg. LLF: 136.20158191803154
Iteration: 7, Func. Count: 93, Neg. LLF: 131.53306505942453
Iteration: 8, Func. Count: 105, Neg. LLF: 131.59299713145822
Iteration: 9, Func. Count: 118, Neg. LLF: 131.51105613650273
Iteration: 10, Func. Count: 130, Neg. LLF: 131.51005628466646
Iteration: 11, Func. Count: 142, Neg. LLF: 131.50964498528427
Iteration: 12, Func. Count: 154, Neg. LLF: 131.50821619945543
Iteration: 13, Func. Count: 166, Neg. LLF: 131.50752207057891
Iteration: 14, Func. Count: 178, Neg. LLF: 131.507495084991
Iteration: 15, Func. Count: 189, Neg. LLF: 131.5074949547113
Optimization terminated successfully (Exit mode 0)
Current function value: 131.507495084991
Iterations: 15
Function evaluations: 189
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 147.61165718979208
Iteration: 2, Func. Count: 19, Neg. LLF: 151.62517249185416
Iteration: 3, Func. Count: 29, Neg. LLF: 149.507793027099
Iteration: 4, Func. Count: 40, Neg. LLF: 162.94540883238392
Iteration: 5, Func. Count: 52, Neg. LLF: 147.1286979224464
Iteration: 6, Func. Count: 61, Neg. LLF: 141.56651598190058
Iteration: 7, Func. Count: 70, Neg. LLF: 219.0890483112062
Iteration: 8, Func. Count: 80, Neg. LLF: 839.0876998914817
Iteration: 9, Func. Count: 90, Neg. LLF: 214.07771984009725
Iteration: 10, Func. Count: 100, Neg. LLF: 133.93526068305295
Iteration: 11, Func. Count: 109, Neg. LLF: 145.73283515896844
Iteration: 12, Func. Count: 121, Neg. LLF: 245.43769335780928
Iteration: 13, Func. Count: 131, Neg. LLF: 321.7242787953022
Iteration: 14, Func. Count: 141, Neg. LLF: 628.8268118366163
Iteration: 15, Func. Count: 151, Neg. LLF: 265.2017427831565
Iteration: 16, Func. Count: 161, Neg. LLF: 271.37096706596355
Iteration: 17, Func. Count: 171, Neg. LLF: 266.0771567265368
Iteration: 18, Func. Count: 181, Neg. LLF: 254.1250907219338
Iteration: 19, Func. Count: 191, Neg. LLF: 172.94120072343193
Iteration: 20, Func. Count: 201, Neg. LLF: 238.7342117768403
Iteration: 21, Func. Count: 211, Neg. LLF: 305.8210375796084
Iteration: 22, Func. Count: 221, Neg. LLF: 362.5917338517777
Iteration: 23, Func. Count: 231, Neg. LLF: 126.74547411917436
Iteration: 24, Func. Count: 240, Neg. LLF: 126.67812079385891
Iteration: 25, Func. Count: 249, Neg. LLF: 126.65113471735404
Iteration: 26, Func. Count: 258, Neg. LLF: 126.63665901798242
Iteration: 27, Func. Count: 267, Neg. LLF: 126.6240498190412
Iteration: 28, Func. Count: 276, Neg. LLF: 126.61436913879253
Iteration: 29, Func. Count: 285, Neg. LLF: 126.61356761452376
Iteration: 30, Func. Count: 294, Neg. LLF: 126.61351709954255
Iteration: 31, Func. Count: 303, Neg. LLF: 126.61351602876354
Iteration: 32, Func. Count: 311, Neg. LLF: 126.61351601064312
Optimization terminated successfully (Exit mode 0)
Current function value: 126.61351602876354
Iterations: 33
Function evaluations: 311
Gradient evaluations: 32
Iteration: 1, Func. Count: 11, Neg. LLF: 173.14899396324074
Iteration: 2, Func. Count: 22, Neg. LLF: 239464166.0894426
Iteration: 3, Func. Count: 34, Neg. LLF: 133.54536683403504
Iteration: 4, Func. Count: 44, Neg. LLF: 134.72002165579536
Iteration: 5, Func. Count: 55, Neg. LLF: 133.3560624150024
Iteration: 6, Func. Count: 65, Neg. LLF: 133.3550832623496
Iteration: 7, Func. Count: 75, Neg. LLF: 133.35521062277255
Iteration: 8, Func. Count: 95, Neg. LLF: 133.35522006765657
Iteration: 9, Func. Count: 115, Neg. LLF: 133.35540185957566
Iteration: 10, Func. Count: 125, Neg. LLF: 133.5708925050662
Iteration: 11, Func. Count: 138, Neg. LLF: 133.3555565097604
Iteration: 12, Func. Count: 150, Neg. LLF: 133.35549587886786
Iteration: 13, Func. Count: 159, Neg. LLF: 133.3554953582817
Optimization terminated successfully (Exit mode 0)
Current function value: 133.35549587886786
Iterations: 14
Function evaluations: 159
Gradient evaluations: 13
Iteration: 1, Func. Count: 12, Neg. LLF: 32527166.418771677
Iteration: 2, Func. Count: 25, Neg. LLF: 1346.2470022980576
Iteration: 3, Func. Count: 39, Neg. LLF: 532.854867761854
Iteration: 4, Func. Count: 51, Neg. LLF: 215.64619159671213
Iteration: 5, Func. Count: 63, Neg. LLF: 142.58468123489743
Iteration: 6, Func. Count: 75, Neg. LLF: 421.9959787316676
Iteration: 7, Func. Count: 87, Neg. LLF: 212.8330134986428
Iteration: 8, Func. Count: 100, Neg. LLF: 138.70876119477904
Iteration: 9, Func. Count: 112, Neg. LLF: 139.20153017892628
Iteration: 10, Func. Count: 124, Neg. LLF: 134.07184818639195
Iteration: 11, Func. Count: 135, Neg. LLF: 136.1076978033482
Iteration: 12, Func. Count: 147, Neg. LLF: 153.36429231132158
Iteration: 13, Func. Count: 160, Neg. LLF: 131.99346247588193
Iteration: 14, Func. Count: 171, Neg. LLF: 168.34855311871974
Iteration: 15, Func. Count: 184, Neg. LLF: 153.84433058676643
Iteration: 16, Func. Count: 197, Neg. LLF: 144.43719435887238
Iteration: 17, Func. Count: 210, Neg. LLF: 131.01582894984605
Iteration: 18, Func. Count: 221, Neg. LLF: 131.97979495857615
Iteration: 19, Func. Count: 233, Neg. LLF: 130.9808554501547
Iteration: 20, Func. Count: 244, Neg. LLF: 132.80695714607097
Iteration: 21, Func. Count: 257, Neg. LLF: 130.96634421048756
Iteration: 22, Func. Count: 268, Neg. LLF: 130.96336082852764
Iteration: 23, Func. Count: 279, Neg. LLF: 130.96274791072645
Iteration: 24, Func. Count: 290, Neg. LLF: 130.96273334715102
Iteration: 25, Func. Count: 300, Neg. LLF: 130.96273326163222
Optimization terminated successfully (Exit mode 0)
Current function value: 130.96273334715102
Iterations: 26
Function evaluations: 300
Gradient evaluations: 25
Iteration: 1, Func. Count: 13, Neg. LLF: 28923020.381920297
Iteration: 2, Func. Count: 26, Neg. LLF: 1663.610735949152
Iteration: 3, Func. Count: 41, Neg. LLF: 206.92643219885355
Iteration: 4, Func. Count: 55, Neg. LLF: 20781.897051096348
Iteration: 5, Func. Count: 70, Neg. LLF: 166.03919534687768
Iteration: 6, Func. Count: 83, Neg. LLF: 139.88467817550412
Iteration: 7, Func. Count: 95, Neg. LLF: 148.02918197195092
Iteration: 8, Func. Count: 110, Neg. LLF: 162.8689393052028
Iteration: 9, Func. Count: 124, Neg. LLF: 136.73765685365274
Iteration: 10, Func. Count: 137, Neg. LLF: 132.87034992105194
Iteration: 11, Func. Count: 149, Neg. LLF: 132.75705400860812
Iteration: 12, Func. Count: 161, Neg. LLF: 132.66338474370826
Iteration: 13, Func. Count: 173, Neg. LLF: 132.58606330027183
Iteration: 14, Func. Count: 185, Neg. LLF: 132.5015464772821
Iteration: 15, Func. Count: 197, Neg. LLF: 132.45084778131513
Iteration: 16, Func. Count: 209, Neg. LLF: 132.41074512664076
Iteration: 17, Func. Count: 221, Neg. LLF: 132.40695923793996
Iteration: 18, Func. Count: 233, Neg. LLF: 132.4066121441852
Iteration: 19, Func. Count: 245, Neg. LLF: 132.40660637195447
Iteration: 20, Func. Count: 256, Neg. LLF: 132.40660607313134
Optimization terminated successfully (Exit mode 0)
Current function value: 132.40660637195447
Iterations: 20
Function evaluations: 256
Gradient evaluations: 20
Iteration: 1, Func. Count: 14, Neg. LLF: 25551052.65390673
Iteration: 2, Func. Count: 28, Neg. LLF: 8799.675884035589
Iteration: 3, Func. Count: 43, Neg. LLF: 308.5046368675825
Iteration: 4, Func. Count: 58, Neg. LLF: 138.54994506744117
Iteration: 5, Func. Count: 71, Neg. LLF: 132.24090252859904
Iteration: 6, Func. Count: 84, Neg. LLF: 200.22567069836973
Iteration: 7, Func. Count: 98, Neg. LLF: 130.77523547987752
Iteration: 8, Func. Count: 112, Neg. LLF: 129.44182501698847
Iteration: 9, Func. Count: 125, Neg. LLF: 178.45857833051787
Iteration: 10, Func. Count: 140, Neg. LLF: 161.40145672865623
Iteration: 11, Func. Count: 155, Neg. LLF: 129.04853777044897
Iteration: 12, Func. Count: 168, Neg. LLF: 129.03904670196997
Iteration: 13, Func. Count: 181, Neg. LLF: 129.0269867808839
Iteration: 14, Func. Count: 194, Neg. LLF: 129.01009923388202
Iteration: 15, Func. Count: 207, Neg. LLF: 129.00389888372985
Iteration: 16, Func. Count: 220, Neg. LLF: 129.00201579801157
Iteration: 17, Func. Count: 233, Neg. LLF: 129.00195480006093
Iteration: 18, Func. Count: 246, Neg. LLF: 129.00194752463634
Iteration: 19, Func. Count: 259, Neg. LLF: 129.0124053771447
Optimization terminated successfully (Exit mode 0)
Current function value: 129.001947522058
Iterations: 20
Function evaluations: 263
Gradient evaluations: 19
Iteration: 1, Func. Count: 11, Neg. LLF: 148.5135455627942
Iteration: 2, Func. Count: 21, Neg. LLF: 148.91478567564266
Iteration: 3, Func. Count: 33, Neg. LLF: 163.2790545728588
Iteration: 4, Func. Count: 47, Neg. LLF: 147.59257934278673
Iteration: 5, Func. Count: 57, Neg. LLF: 146.8215705688051
Iteration: 6, Func. Count: 67, Neg. LLF: 310298.3913092931
Iteration: 7, Func. Count: 78, Neg. LLF: 362070.85907984705
Iteration: 8, Func. Count: 89, Neg. LLF: 163.77058404839832
Iteration: 9, Func. Count: 100, Neg. LLF: 159.79167336548596
Iteration: 10, Func. Count: 111, Neg. LLF: 320.6320939102987
Iteration: 11, Func. Count: 122, Neg. LLF: 174.81466333146557
Iteration: 12, Func. Count: 133, Neg. LLF: 162.28063855033847
Iteration: 13, Func. Count: 144, Neg. LLF: 155.45911660714754
Iteration: 14, Func. Count: 155, Neg. LLF: 150.86576454593077
Iteration: 15, Func. Count: 166, Neg. LLF: 151.23666998034895
Iteration: 16, Func. Count: 177, Neg. LLF: 147.93398113403978
Iteration: 17, Func. Count: 188, Neg. LLF: 150.24252888044546
Iteration: 18, Func. Count: 199, Neg. LLF: 148.96332325687175
Iteration: 19, Func. Count: 210, Neg. LLF: 150.2218335272332
Iteration: 20, Func. Count: 221, Neg. LLF: 143.95491235291553
Iteration: 21, Func. Count: 232, Neg. LLF: 144.87795285565335
Iteration: 22, Func. Count: 243, Neg. LLF: 23629.467755043202
Iteration: 23, Func. Count: 254, Neg. LLF: 140.3395208966805
Iteration: 24, Func. Count: 265, Neg. LLF: 185.52467674331936
Iteration: 25, Func. Count: 276, Neg. LLF: 182.31117560645959
Iteration: 26, Func. Count: 287, Neg. LLF: 140.25687730401367
Iteration: 27, Func. Count: 298, Neg. LLF: 253.82710473034666
Iteration: 28, Func. Count: 309, Neg. LLF: 164.1937548092019
Iteration: 29, Func. Count: 320, Neg. LLF: 224.66867190936543
Iteration: 30, Func. Count: 331, Neg. LLF: 193.7981061649505
Iteration: 31, Func. Count: 342, Neg. LLF: 129.1038028632605
Iteration: 32, Func. Count: 352, Neg. LLF: 128.30887215489193
Iteration: 33, Func. Count: 362, Neg. LLF: 128.25265236406403
Iteration: 34, Func. Count: 372, Neg. LLF: 127.99417444325927
Iteration: 35, Func. Count: 382, Neg. LLF: 127.51023014707266
Iteration: 36, Func. Count: 392, Neg. LLF: 126.58575630968143
Iteration: 37, Func. Count: 402, Neg. LLF: 126.57275424144774
Iteration: 38, Func. Count: 413, Neg. LLF: 126.49333702452358
Iteration: 39, Func. Count: 423, Neg. LLF: 126.47666559263666
Iteration: 40, Func. Count: 433, Neg. LLF: 126.4740032333918
Iteration: 41, Func. Count: 443, Neg. LLF: 126.47085858496634
Iteration: 42, Func. Count: 453, Neg. LLF: 126.46777589393349
Iteration: 43, Func. Count: 463, Neg. LLF: 126.46128912192451
Iteration: 44, Func. Count: 473, Neg. LLF: 126.46026317373354
Iteration: 45, Func. Count: 483, Neg. LLF: 126.45996304986835
Iteration: 46, Func. Count: 493, Neg. LLF: 126.45950650746877
Iteration: 47, Func. Count: 503, Neg. LLF: 126.4584852593172
Iteration: 48, Func. Count: 513, Neg. LLF: 126.45700287211008
Iteration: 49, Func. Count: 523, Neg. LLF: 126.45581281209164
Iteration: 50, Func. Count: 533, Neg. LLF: 126.4554875191789
Iteration: 51, Func. Count: 543, Neg. LLF: 126.45543531718859
Iteration: 52, Func. Count: 553, Neg. LLF: 126.4554306338397
Iteration: 53, Func. Count: 562, Neg. LLF: 126.45543067139646
Optimization terminated successfully (Exit mode 0)
Current function value: 126.4554306338397
Iterations: 53
Function evaluations: 562
Gradient evaluations: 53
Iteration: 1, Func. Count: 12, Neg. LLF: 174.48506111272894
Iteration: 2, Func. Count: 24, Neg. LLF: 253675934.33421576
Iteration: 3, Func. Count: 37, Neg. LLF: 133.30934046787485
Iteration: 4, Func. Count: 48, Neg. LLF: 137.3116716696671
Iteration: 5, Func. Count: 60, Neg. LLF: 132.9036289832511
Iteration: 6, Func. Count: 71, Neg. LLF: 132.89730936992513
Iteration: 7, Func. Count: 82, Neg. LLF: 132.89469058281475
Iteration: 8, Func. Count: 93, Neg. LLF: 132.89122016146965
Iteration: 9, Func. Count: 104, Neg. LLF: 132.8912683942505
Iteration: 10, Func. Count: 125, Neg. LLF: 145.70339970203062
Iteration: 11, Func. Count: 139, Neg. LLF: 132.89203127421084
Iteration: 12, Func. Count: 152, Neg. LLF: 132.89137225604455
Iteration: 13, Func. Count: 162, Neg. LLF: 132.8913717049598
Optimization terminated successfully (Exit mode 0)
Current function value: 132.89137225604455
Iterations: 14
Function evaluations: 162
Gradient evaluations: 13
Iteration: 1, Func. Count: 13, Neg. LLF: 33571441.73851307
Iteration: 2, Func. Count: 27, Neg. LLF: 1860.2979341876612
Iteration: 3, Func. Count: 42, Neg. LLF: 5944.894700544633
Iteration: 4, Func. Count: 55, Neg. LLF: 455.73122950352564
Iteration: 5, Func. Count: 68, Neg. LLF: 158.76117841510657
Iteration: 6, Func. Count: 82, Neg. LLF: 146.87304157678892
Iteration: 7, Func. Count: 95, Neg. LLF: 150.4821821572061
Iteration: 8, Func. Count: 108, Neg. LLF: 162.13006516441513
Iteration: 9, Func. Count: 121, Neg. LLF: 144.49703043280812
Iteration: 10, Func. Count: 134, Neg. LLF: 131.75001597554194
Iteration: 11, Func. Count: 146, Neg. LLF: 1993.381020458459
Iteration: 12, Func. Count: 159, Neg. LLF: 129.30855453948053
Iteration: 13, Func. Count: 171, Neg. LLF: 45822113.019971065
Iteration: 14, Func. Count: 185, Neg. LLF: 1179182.7451955853
Iteration: 15, Func. Count: 199, Neg. LLF: 201.48544886630037
Iteration: 16, Func. Count: 212, Neg. LLF: 130694.85908302877
Iteration: 17, Func. Count: 225, Neg. LLF: 127.25942709486227
Iteration: 18, Func. Count: 238, Neg. LLF: 124.75102257294698
Iteration: 19, Func. Count: 252, Neg. LLF: 123.95600415429563
Iteration: 20, Func. Count: 264, Neg. LLF: 123.80813925255326
Iteration: 21, Func. Count: 276, Neg. LLF: 123.80277053409658
Iteration: 22, Func. Count: 288, Neg. LLF: 123.80240976576363
Iteration: 23, Func. Count: 300, Neg. LLF: 123.80238957604567
Iteration: 24, Func. Count: 312, Neg. LLF: 123.80238688342062
Iteration: 25, Func. Count: 324, Neg. LLF: 123.80248498962129
Optimization terminated successfully (Exit mode 0)
Current function value: 123.80238688082676
Iterations: 27
Function evaluations: 326
Gradient evaluations: 25
Iteration: 1, Func. Count: 14, Neg. LLF: 29436665.043588225
Iteration: 2, Func. Count: 28, Neg. LLF: 2363.5926733352235
Iteration: 3, Func. Count: 44, Neg. LLF: 13975.52727558806
Iteration: 4, Func. Count: 58, Neg. LLF: 415.5731754731787
Iteration: 5, Func. Count: 74, Neg. LLF: 164.15080782101697
Iteration: 6, Func. Count: 88, Neg. LLF: 138.14149757187184
Iteration: 7, Func. Count: 101, Neg. LLF: 153.28698233977167
Iteration: 8, Func. Count: 117, Neg. LLF: 149.0039539938806
Iteration: 9, Func. Count: 132, Neg. LLF: 127.92404624265816
Iteration: 10, Func. Count: 145, Neg. LLF: 157.76901460996365
Iteration: 11, Func. Count: 160, Neg. LLF: 127.25471027271792
Iteration: 12, Func. Count: 173, Neg. LLF: 127.0803169983377
Iteration: 13, Func. Count: 186, Neg. LLF: 127.02818315068195
Iteration: 14, Func. Count: 199, Neg. LLF: 126.99971960099202
Iteration: 15, Func. Count: 212, Neg. LLF: 126.98832539986374
Iteration: 16, Func. Count: 225, Neg. LLF: 126.9863967394044
Iteration: 17, Func. Count: 238, Neg. LLF: 126.98634617863168
Iteration: 18, Func. Count: 251, Neg. LLF: 126.98634564340546
Optimization terminated successfully (Exit mode 0)
Current function value: 126.98634564340546
Iterations: 18
Function evaluations: 251
Gradient evaluations: 18
Iteration: 1, Func. Count: 15, Neg. LLF: 25958444.998133015
Iteration: 2, Func. Count: 30, Neg. LLF: 7628264637.678758
Iteration: 3, Func. Count: 46, Neg. LLF: 613.1881884659479
Iteration: 4, Func. Count: 62, Neg. LLF: 135.38494330938028
Iteration: 5, Func. Count: 76, Neg. LLF: 133.90746951777524
Iteration: 6, Func. Count: 90, Neg. LLF: 333.2869026181487
Iteration: 7, Func. Count: 106, Neg. LLF: 141.8399745006694
Iteration: 8, Func. Count: 121, Neg. LLF: 132.87637722844553
Iteration: 9, Func. Count: 136, Neg. LLF: 130.28019307597583
Iteration: 10, Func. Count: 150, Neg. LLF: 129.84994778772364
Iteration: 11, Func. Count: 164, Neg. LLF: 129.49617375499093
Iteration: 12, Func. Count: 178, Neg. LLF: 196.31204557060138
Iteration: 13, Func. Count: 193, Neg. LLF: 136.80873780984035
Iteration: 14, Func. Count: 208, Neg. LLF: 129.10256435456722
Iteration: 15, Func. Count: 222, Neg. LLF: 129.09448514310034
Iteration: 16, Func. Count: 236, Neg. LLF: 129.08805117082144
Iteration: 17, Func. Count: 250, Neg. LLF: 129.05734098849726
Iteration: 18, Func. Count: 264, Neg. LLF: 129.03780285006323
Iteration: 19, Func. Count: 278, Neg. LLF: 129.00549217987898
Iteration: 20, Func. Count: 292, Neg. LLF: 129.00222461320172
Iteration: 21, Func. Count: 306, Neg. LLF: 129.00203589887303
Iteration: 22, Func. Count: 320, Neg. LLF: 129.00194886648646
Iteration: 23, Func. Count: 334, Neg. LLF: 129.00194812739386
Optimization terminated successfully (Exit mode 0)
Current function value: 129.00194812739386
Iterations: 23
Function evaluations: 334
Gradient evaluations: 23
Iteration: 1, Func. Count: 12, Neg. LLF: 146.4792659032345
Iteration: 2, Func. Count: 23, Neg. LLF: 148.0081773208374
Iteration: 3, Func. Count: 37, Neg. LLF: 171.63002326843866
Iteration: 4, Func. Count: 51, Neg. LLF: 154.23074877409923
Iteration: 5, Func. Count: 63, Neg. LLF: 144.71581343448702
Iteration: 6, Func. Count: 74, Neg. LLF: 138.49124102756858
Iteration: 7, Func. Count: 85, Neg. LLF: 2335.104384784832
Iteration: 8, Func. Count: 97, Neg. LLF: 2491.60379900403
Iteration: 9, Func. Count: 109, Neg. LLF: 484.12738085749527
Iteration: 10, Func. Count: 121, Neg. LLF: 467.42730991132765
Iteration: 11, Func. Count: 133, Neg. LLF: 288.53646491031463
Iteration: 12, Func. Count: 145, Neg. LLF: 127.1239051788709
Iteration: 13, Func. Count: 156, Neg. LLF: 128.66594688458156
Iteration: 14, Func. Count: 168, Neg. LLF: 137.19378055463005
Iteration: 15, Func. Count: 180, Neg. LLF: 136.33744727812402
Iteration: 16, Func. Count: 192, Neg. LLF: 126.39450625039265
Iteration: 17, Func. Count: 204, Neg. LLF: 125.9214434056873
Iteration: 18, Func. Count: 216, Neg. LLF: 125.66686015866009
Iteration: 19, Func. Count: 227, Neg. LLF: 125.80493281095525
Iteration: 20, Func. Count: 240, Neg. LLF: 126.70914521310209
Iteration: 21, Func. Count: 252, Neg. LLF: 125.54771241083115
Iteration: 22, Func. Count: 263, Neg. LLF: 125.50930053911209
Iteration: 23, Func. Count: 274, Neg. LLF: 125.47119991474226
Iteration: 24, Func. Count: 285, Neg. LLF: 125.44210553897965
Iteration: 25, Func. Count: 296, Neg. LLF: 125.41411520123852
Iteration: 26, Func. Count: 307, Neg. LLF: 125.31526582638121
Iteration: 27, Func. Count: 318, Neg. LLF: 125.1621674110585
Iteration: 28, Func. Count: 329, Neg. LLF: 124.9789696940198
Iteration: 29, Func. Count: 340, Neg. LLF: 124.90584549135735
Iteration: 30, Func. Count: 351, Neg. LLF: 124.84869335231384
Iteration: 31, Func. Count: 362, Neg. LLF: 124.79449539787326
Iteration: 32, Func. Count: 373, Neg. LLF: 124.74368329375902
Iteration: 33, Func. Count: 384, Neg. LLF: 124.71066878651597
Iteration: 34, Func. Count: 395, Neg. LLF: 124.66094804812163
Iteration: 35, Func. Count: 406, Neg. LLF: 124.65408654149067
Iteration: 36, Func. Count: 417, Neg. LLF: 124.65309903508724
Iteration: 37, Func. Count: 428, Neg. LLF: 124.65301714572226
Iteration: 38, Func. Count: 439, Neg. LLF: 124.65301609277904
Iteration: 39, Func. Count: 449, Neg. LLF: 124.65301609443068
Optimization terminated successfully (Exit mode 0)
Current function value: 124.65301609277904
Iterations: 39
Function evaluations: 449
Gradient evaluations: 39
Iteration: 1, Func. Count: 13, Neg. LLF: 10850713.40491066
Iteration: 2, Func. Count: 26, Neg. LLF: 401.7755304130584
Iteration: 3, Func. Count: 41, Neg. LLF: 133.17155617659682
Iteration: 4, Func. Count: 53, Neg. LLF: 132.8224911654902
Iteration: 5, Func. Count: 65, Neg. LLF: 131.40071333190085
Iteration: 6, Func. Count: 77, Neg. LLF: 131.3125245916517
Iteration: 7, Func. Count: 90, Neg. LLF: 131.10448181354514
Iteration: 8, Func. Count: 102, Neg. LLF: 130.89131182646992
Iteration: 9, Func. Count: 114, Neg. LLF: 162.785830240337
Iteration: 10, Func. Count: 129, Neg. LLF: 131.30184144121048
Iteration: 11, Func. Count: 143, Neg. LLF: 130.88390677141507
Iteration: 12, Func. Count: 154, Neg. LLF: 130.88390610504723
Optimization terminated successfully (Exit mode 0)
Current function value: 130.88390677141507
Iterations: 13
Function evaluations: 154
Gradient evaluations: 12
Iteration: 1, Func. Count: 14, Neg. LLF: 34117244.798260644
Iteration: 2, Func. Count: 29, Neg. LLF: 1655.8826112288536
Iteration: 3, Func. Count: 45, Neg. LLF: 583.5359136456725
Iteration: 4, Func. Count: 59, Neg. LLF: 16973.4693446193
Iteration: 5, Func. Count: 73, Neg. LLF: 293.64186785900904
Iteration: 6, Func. Count: 88, Neg. LLF: 6518.476502424232
Iteration: 7, Func. Count: 102, Neg. LLF: 156.4693761995009
Iteration: 8, Func. Count: 116, Neg. LLF: 133.5331885297661
Iteration: 9, Func. Count: 129, Neg. LLF: 168.47501746672958
Iteration: 10, Func. Count: 144, Neg. LLF: 132.69992614124953
Iteration: 11, Func. Count: 157, Neg. LLF: 132.4557784433434
Iteration: 12, Func. Count: 170, Neg. LLF: 132.14564488247726
Iteration: 13, Func. Count: 183, Neg. LLF: 134.12112825026819
Iteration: 14, Func. Count: 197, Neg. LLF: 135.50104815157565
Iteration: 15, Func. Count: 211, Neg. LLF: 130.65043032538074
Iteration: 16, Func. Count: 224, Neg. LLF: 130.3765553347281
Iteration: 17, Func. Count: 237, Neg. LLF: 130.07982540186654
Iteration: 18, Func. Count: 250, Neg. LLF: 130.10302534237755
Iteration: 19, Func. Count: 264, Neg. LLF: 129.43643365134167
Iteration: 20, Func. Count: 277, Neg. LLF: 129.3721340831453
Iteration: 21, Func. Count: 290, Neg. LLF: 129.3561858353768
Iteration: 22, Func. Count: 303, Neg. LLF: 129.32928302408612
Iteration: 23, Func. Count: 316, Neg. LLF: 129.31455047968552
Iteration: 24, Func. Count: 329, Neg. LLF: 129.28803363018116
Iteration: 25, Func. Count: 342, Neg. LLF: 129.25290616744857
Iteration: 26, Func. Count: 355, Neg. LLF: 129.19599266677835
Iteration: 27, Func. Count: 368, Neg. LLF: 129.123322753445
Iteration: 28, Func. Count: 381, Neg. LLF: 129.07755599680536
Iteration: 29, Func. Count: 394, Neg. LLF: 129.05411806199223
Iteration: 30, Func. Count: 407, Neg. LLF: 129.04671680158083
Iteration: 31, Func. Count: 420, Neg. LLF: 129.04372406196333
Iteration: 32, Func. Count: 433, Neg. LLF: 129.04342663135458
Iteration: 33, Func. Count: 446, Neg. LLF: 129.04336454205614
Iteration: 34, Func. Count: 459, Neg. LLF: 129.04334876698707
Iteration: 35, Func. Count: 472, Neg. LLF: 129.04334565062834
Iteration: 36, Func. Count: 484, Neg. LLF: 129.0433456505946
Optimization terminated successfully (Exit mode 0)
Current function value: 129.04334565062834
Iterations: 36
Function evaluations: 484
Gradient evaluations: 36
Iteration: 1, Func. Count: 15, Neg. LLF: 29736428.404233348
Iteration: 2, Func. Count: 30, Neg. LLF: 5372.646284996607
Iteration: 3, Func. Count: 47, Neg. LLF: 315.4469455769358
Iteration: 4, Func. Count: 62, Neg. LLF: 316.64637532671935
Iteration: 5, Func. Count: 79, Neg. LLF: 165.31450435497598
Iteration: 6, Func. Count: 94, Neg. LLF: 154.88999204315556
Iteration: 7, Func. Count: 109, Neg. LLF: 180.67363597853682
Iteration: 8, Func. Count: 124, Neg. LLF: 128.67170588819488
Iteration: 9, Func. Count: 138, Neg. LLF: 129.91008365331177
Iteration: 10, Func. Count: 153, Neg. LLF: 127.49847096454072
Iteration: 11, Func. Count: 167, Neg. LLF: 127.1460594341597
Iteration: 12, Func. Count: 181, Neg. LLF: 127.00765676636433
Iteration: 13, Func. Count: 195, Neg. LLF: 126.93908800786323
Iteration: 14, Func. Count: 209, Neg. LLF: 126.91562001839696
Iteration: 15, Func. Count: 223, Neg. LLF: 126.91755356907738
Iteration: 16, Func. Count: 237, Neg. LLF: 126.92956439865834
Iteration: 17, Func. Count: 251, Neg. LLF: 126.92874255716804
Iteration: 18, Func. Count: 265, Neg. LLF: 135.84871874813953
Iteration: 19, Func. Count: 281, Neg. LLF: 129.63006681588362
Iteration: 20, Func. Count: 297, Neg. LLF: 127.26244093845241
Iteration: 21, Func. Count: 313, Neg. LLF: 126.92792618200134
Iteration: 22, Func. Count: 327, Neg. LLF: 126.93564338177573
Iteration: 23, Func. Count: 343, Neg. LLF: 126.9278995992988
Iteration: 24, Func. Count: 356, Neg. LLF: 126.92789930473737
Optimization terminated successfully (Exit mode 0)
Current function value: 126.9278995992988
Iterations: 25
Function evaluations: 356
Gradient evaluations: 24
Iteration: 1, Func. Count: 16, Neg. LLF: 26164131.10846527
Iteration: 2, Func. Count: 32, Neg. LLF: 6790134659.203552
Iteration: 3, Func. Count: 49, Neg. LLF: 1704076.1913281193
Iteration: 4, Func. Count: 67, Neg. LLF: 442.5713177870509
Iteration: 5, Func. Count: 83, Neg. LLF: 132.99551103835213
Iteration: 6, Func. Count: 98, Neg. LLF: 133.92784819130168
Iteration: 7, Func. Count: 114, Neg. LLF: 133.06367849921475
Iteration: 8, Func. Count: 130, Neg. LLF: 131.2422277093963
Iteration: 9, Func. Count: 146, Neg. LLF: 129.45598150697063
Iteration: 10, Func. Count: 162, Neg. LLF: 128.85533423981613
Iteration: 11, Func. Count: 177, Neg. LLF: 137.02675115842572
Iteration: 12, Func. Count: 194, Neg. LLF: 128.83079772395405
Iteration: 13, Func. Count: 209, Neg. LLF: 128.80023379785627
Iteration: 14, Func. Count: 224, Neg. LLF: 128.78997927623908
Iteration: 15, Func. Count: 239, Neg. LLF: 128.78558076595007
Iteration: 16, Func. Count: 254, Neg. LLF: 128.7832609419568
Iteration: 17, Func. Count: 269, Neg. LLF: 128.77947949460966
Iteration: 18, Func. Count: 284, Neg. LLF: 144.26629199979894
Iteration: 19, Func. Count: 300, Neg. LLF: 147.68634753918388
Iteration: 20, Func. Count: 316, Neg. LLF: 153.159989663453
Iteration: 21, Func. Count: 335, Neg. LLF: 253.23726017768738
Iteration: 22, Func. Count: 360, Neg. LLF: 336.5283137948641
Iteration: 23, Func. Count: 385, Neg. LLF: 58689.52986303046
Iteration: 24, Func. Count: 406, Neg. LLF: 306512.6610972054
Iteration: 25, Func. Count: 425, Neg. LLF: 284308.78416923626
Iteration: 26, Func. Count: 441, Neg. LLF: 11032.393823300934
Iteration: 27, Func. Count: 457, Neg. LLF: 255743.25991683768
Iteration: 28, Func. Count: 473, Neg. LLF: 136.48196176148807
Iteration: 29, Func. Count: 489, Neg. LLF: 125.31511729186934
Iteration: 30, Func. Count: 505, Neg. LLF: 152.56113105855468
Iteration: 31, Func. Count: 522, Neg. LLF: 163.46815863318926
Iteration: 32, Func. Count: 538, Neg. LLF: 131.86692338110512
Iteration: 33, Func. Count: 554, Neg. LLF: 211.30288928047798
Iteration: 34, Func. Count: 570, Neg. LLF: 124.53510994654911
Iteration: 35, Func. Count: 586, Neg. LLF: 123.52420795609007
Iteration: 36, Func. Count: 602, Neg. LLF: 123.19740131080508
Iteration: 37, Func. Count: 618, Neg. LLF: 123.06722937878219
Iteration: 38, Func. Count: 634, Neg. LLF: 122.40878892849886
Iteration: 39, Func. Count: 649, Neg. LLF: 122.46417322203989
Iteration: 40, Func. Count: 665, Neg. LLF: 148.68892145892525
Iteration: 41, Func. Count: 682, Neg. LLF: 121.70411037283682
Iteration: 42, Func. Count: 697, Neg. LLF: 121.33983582359784
Iteration: 43, Func. Count: 712, Neg. LLF: 122.18852923389043
Iteration: 44, Func. Count: 728, Neg. LLF: 120.91018328470008
Iteration: 45, Func. Count: 743, Neg. LLF: 120.89428392119319
Iteration: 46, Func. Count: 759, Neg. LLF: 120.8444689290444
Iteration: 47, Func. Count: 774, Neg. LLF: 120.84395629797474
Iteration: 48, Func. Count: 789, Neg. LLF: 120.84390419230083
Iteration: 49, Func. Count: 804, Neg. LLF: 120.84386313814062
Iteration: 50, Func. Count: 819, Neg. LLF: 120.84382050841037
Iteration: 51, Func. Count: 834, Neg. LLF: 120.84379423887395
Iteration: 52, Func. Count: 849, Neg. LLF: 120.8437907935835
Iteration: 53, Func. Count: 864, Neg. LLF: 120.8437899792703
Optimization terminated successfully (Exit mode 0)
Current function value: 120.8437899792703
Iterations: 54
Function evaluations: 864
Gradient evaluations: 53
Iteration: 1, Func. Count: 8, Neg. LLF: 147.54701649084078
Iteration: 2, Func. Count: 15, Neg. LLF: 171.1686766167604
Iteration: 3, Func. Count: 23, Neg. LLF: 188.53207679281022
Iteration: 4, Func. Count: 34, Neg. LLF: 182.45327061428532
Iteration: 5, Func. Count: 43, Neg. LLF: 146.0479900257749
Iteration: 6, Func. Count: 50, Neg. LLF: 141.83153837751829
Iteration: 7, Func. Count: 57, Neg. LLF: 150.09251831060817
Iteration: 8, Func. Count: 65, Neg. LLF: 158.03637824539305
Iteration: 9, Func. Count: 73, Neg. LLF: 398.0676537448351
Iteration: 10, Func. Count: 81, Neg. LLF: 217.08843504582703
Iteration: 11, Func. Count: 89, Neg. LLF: 199.0435851902948
Iteration: 12, Func. Count: 97, Neg. LLF: 197.887219143031
Iteration: 13, Func. Count: 106, Neg. LLF: 135.88349325862768
Iteration: 14, Func. Count: 114, Neg. LLF: 13640.557483095976
Iteration: 15, Func. Count: 122, Neg. LLF: 618.6937898570105
Iteration: 16, Func. Count: 130, Neg. LLF: 442.0769095982254
Iteration: 17, Func. Count: 138, Neg. LLF: 180.94402111175876
Iteration: 18, Func. Count: 146, Neg. LLF: 249.900045130162
Iteration: 19, Func. Count: 154, Neg. LLF: 162.22789141337066
Iteration: 20, Func. Count: 162, Neg. LLF: 170.0551989043021
Iteration: 21, Func. Count: 170, Neg. LLF: 256.0932734954096
Iteration: 22, Func. Count: 178, Neg. LLF: 127.82189369835865
Iteration: 23, Func. Count: 186, Neg. LLF: 126.81221305587329
Iteration: 24, Func. Count: 193, Neg. LLF: 126.79684143983954
Iteration: 25, Func. Count: 200, Neg. LLF: 127.95357375743944
Iteration: 26, Func. Count: 210, Neg. LLF: 126.79537100832795
Iteration: 27, Func. Count: 217, Neg. LLF: 126.79484076339449
Iteration: 28, Func. Count: 224, Neg. LLF: 126.79390028425516
Iteration: 29, Func. Count: 231, Neg. LLF: 126.7934507868449
Iteration: 30, Func. Count: 238, Neg. LLF: 126.79341180664656
Iteration: 31, Func. Count: 245, Neg. LLF: 126.79341080733252
Optimization terminated successfully (Exit mode 0)
Current function value: 126.79341080733252
Iterations: 32
Function evaluations: 245
Gradient evaluations: 31
Iteration: 1, Func. Count: 5, Neg. LLF: 156.3684109386677
Iteration: 2, Func. Count: 9, Neg. LLF: 158.94782299570105
Iteration: 3, Func. Count: 14, Neg. LLF: 153.13008601228736
Iteration: 4, Func. Count: 18, Neg. LLF: 153.10931153592884
Iteration: 5, Func. Count: 22, Neg. LLF: 153.10004483563833
Iteration: 6, Func. Count: 26, Neg. LLF: 153.07579009807765
Iteration: 7, Func. Count: 30, Neg. LLF: 153.07034271652242
Iteration: 8, Func. Count: 34, Neg. LLF: 153.06955588631328
Iteration: 9, Func. Count: 38, Neg. LLF: 153.06952968996313
Iteration: 10, Func. Count: 42, Neg. LLF: 153.06952881478128
Optimization terminated successfully (Exit mode 0)
Current function value: 153.06952881478128
Iterations: 10
Function evaluations: 42
Gradient evaluations: 10
Iteration: 1, Func. Count: 6, Neg. LLF: 60354400.63361676
Iteration: 2, Func. Count: 13, Neg. LLF: 1611.952778290005
Iteration: 3, Func. Count: 20, Neg. LLF: 163.61722387376722
Iteration: 4, Func. Count: 26, Neg. LLF: 148.63572995990552
Iteration: 5, Func. Count: 32, Neg. LLF: 150.17200391045816
Iteration: 6, Func. Count: 38, Neg. LLF: 131.45392928183068
Iteration: 7, Func. Count: 44, Neg. LLF: 176.01326609084322
Iteration: 8, Func. Count: 50, Neg. LLF: 133.34902734070783
Iteration: 9, Func. Count: 56, Neg. LLF: 127.210923015371
Iteration: 10, Func. Count: 61, Neg. LLF: 126.98834858711895
Iteration: 11, Func. Count: 66, Neg. LLF: 126.91386203779895
Iteration: 12, Func. Count: 71, Neg. LLF: 126.64965108138313
Iteration: 13, Func. Count: 76, Neg. LLF: 126.45732255522414
Iteration: 14, Func. Count: 81, Neg. LLF: 126.29818528694007
Iteration: 15, Func. Count: 86, Neg. LLF: 126.29505460200465
Iteration: 16, Func. Count: 91, Neg. LLF: 126.29499634663739
Iteration: 17, Func. Count: 96, Neg. LLF: 126.29499341537527
Iteration: 18, Func. Count: 100, Neg. LLF: 126.29499333278163
Optimization terminated successfully (Exit mode 0)
Current function value: 126.29499341537527
Iterations: 18
Function evaluations: 100
Gradient evaluations: 18
Iteration: 1, Func. Count: 7, Neg. LLF: 46851710.328961715
Iteration: 2, Func. Count: 14, Neg. LLF: 10494.570919438524
Iteration: 3, Func. Count: 23, Neg. LLF: 129.8180156000565
Iteration: 4, Func. Count: 29, Neg. LLF: 164.2500308236313
Iteration: 5, Func. Count: 37, Neg. LLF: 129.06745371472624
Iteration: 6, Func. Count: 44, Neg. LLF: 126.97018358123721
Iteration: 7, Func. Count: 50, Neg. LLF: 126.95604543567299
Iteration: 8, Func. Count: 56, Neg. LLF: 126.95588281973718
Iteration: 9, Func. Count: 62, Neg. LLF: 126.95583294359805
Iteration: 10, Func. Count: 68, Neg. LLF: 126.95575533273492
Iteration: 11, Func. Count: 74, Neg. LLF: 126.95575357675426
Iteration: 12, Func. Count: 79, Neg. LLF: 126.95575357674034
Optimization terminated successfully (Exit mode 0)
Current function value: 126.95575357675426
Iterations: 12
Function evaluations: 79
Gradient evaluations: 12
Iteration: 1, Func. Count: 8, Neg. LLF: 34651605.702666506
Iteration: 2, Func. Count: 16, Neg. LLF: 16311753765.35123
Iteration: 3, Func. Count: 26, Neg. LLF: 296.36188759639515
Iteration: 4, Func. Count: 34, Neg. LLF: 133.22032197371092
Iteration: 5, Func. Count: 42, Neg. LLF: 208.5843372279403
Iteration: 6, Func. Count: 50, Neg. LLF: 188.9921720499044
Iteration: 7, Func. Count: 58, Neg. LLF: 138.3557635499378
Iteration: 8, Func. Count: 66, Neg. LLF: 134.51414834622986
Iteration: 9, Func. Count: 74, Neg. LLF: 133.2041174078109
Iteration: 10, Func. Count: 82, Neg. LLF: 130.84256636764988
Iteration: 11, Func. Count: 90, Neg. LLF: 132.60337988145764
Iteration: 12, Func. Count: 98, Neg. LLF: 133.30409563448325
Iteration: 13, Func. Count: 106, Neg. LLF: 127.78037575965847
Iteration: 14, Func. Count: 114, Neg. LLF: 127.43662370537176
Iteration: 15, Func. Count: 121, Neg. LLF: 127.18866597441763
Iteration: 16, Func. Count: 128, Neg. LLF: 126.90651605988172
Iteration: 17, Func. Count: 135, Neg. LLF: 126.36136211788009
Iteration: 18, Func. Count: 142, Neg. LLF: 126.32866554427868
Iteration: 19, Func. Count: 149, Neg. LLF: 126.29869396039588
Iteration: 20, Func. Count: 156, Neg. LLF: 126.29577505970843
Iteration: 21, Func. Count: 163, Neg. LLF: 126.29499999088638
Iteration: 22, Func. Count: 170, Neg. LLF: 126.29499350600243
Iteration: 23, Func. Count: 176, Neg. LLF: 126.29499349911451
Optimization terminated successfully (Exit mode 0)
Current function value: 126.29499350600243
Iterations: 23
Function evaluations: 176
Gradient evaluations: 23
Iteration: 1, Func. Count: 9, Neg. LLF: 26791090.71216245
Iteration: 2, Func. Count: 18, Neg. LLF: 2824863277.2669487
Iteration: 3, Func. Count: 28, Neg. LLF: 1748440.5255047383
Iteration: 4, Func. Count: 37, Neg. LLF: 198.5576807852038
Iteration: 5, Func. Count: 46, Neg. LLF: 163.1032955762666
Iteration: 6, Func. Count: 55, Neg. LLF: 148.54859621176476
Iteration: 7, Func. Count: 64, Neg. LLF: 141.6974788447054
Iteration: 8, Func. Count: 73, Neg. LLF: 136.7686486831513
Iteration: 9, Func. Count: 82, Neg. LLF: 135.81362503306877
Iteration: 10, Func. Count: 91, Neg. LLF: 130.63278780123062
Iteration: 11, Func. Count: 100, Neg. LLF: 128.7680266558677
Iteration: 12, Func. Count: 109, Neg. LLF: 160.0070500259106
Iteration: 13, Func. Count: 118, Neg. LLF: 127.4490060736504
Iteration: 14, Func. Count: 126, Neg. LLF: 126.74021919343049
Iteration: 15, Func. Count: 134, Neg. LLF: 126.42696864041254
Iteration: 16, Func. Count: 142, Neg. LLF: 126.30057792971758
Iteration: 17, Func. Count: 150, Neg. LLF: 126.29559823890135
Iteration: 18, Func. Count: 158, Neg. LLF: 126.29503841255868
Iteration: 19, Func. Count: 166, Neg. LLF: 126.29499502482778
Iteration: 20, Func. Count: 174, Neg. LLF: 126.29499342348055
Iteration: 21, Func. Count: 181, Neg. LLF: 126.29499350177772
Optimization terminated successfully (Exit mode 0)
Current function value: 126.29499342348055
Iterations: 21
Function evaluations: 181
Gradient evaluations: 21
Iteration: 1, Func. Count: 6, Neg. LLF: 151.6646785015544
Iteration: 2, Func. Count: 11, Neg. LLF: 166.77579257505502
Iteration: 3, Func. Count: 17, Neg. LLF: 144.7212258141929
Iteration: 4, Func. Count: 23, Neg. LLF: 143.00957541923538
Iteration: 5, Func. Count: 28, Neg. LLF: 139.28479432391882
Iteration: 6, Func. Count: 33, Neg. LLF: 752907.4607354867
Iteration: 7, Func. Count: 39, Neg. LLF: 701471.8396029148
Iteration: 8, Func. Count: 45, Neg. LLF: 311341.1299923776
Iteration: 9, Func. Count: 51, Neg. LLF: 139.94317723070736
Iteration: 10, Func. Count: 57, Neg. LLF: 137.9832303455519
Iteration: 11, Func. Count: 63, Neg. LLF: 137.8803587535758
Iteration: 12, Func. Count: 69, Neg. LLF: 137.85496469405322
Iteration: 13, Func. Count: 74, Neg. LLF: 137.85496158759597
Iteration: 14, Func. Count: 79, Neg. LLF: 137.854960482357
Iteration: 15, Func. Count: 83, Neg. LLF: 137.85496038594732
Optimization terminated successfully (Exit mode 0)
Current function value: 137.854960482357
Iterations: 15
Function evaluations: 83
Gradient evaluations: 15
Iteration: 1, Func. Count: 7, Neg. LLF: 62167550.98136122
Iteration: 2, Func. Count: 14, Neg. LLF: 242.73890470142504
Iteration: 3, Func. Count: 22, Neg. LLF: 163.4988266534414
Iteration: 4, Func. Count: 29, Neg. LLF: 131.51943011365233
Iteration: 5, Func. Count: 36, Neg. LLF: 125.7213353889113
Iteration: 6, Func. Count: 42, Neg. LLF: 128.1971047385457
Iteration: 7, Func. Count: 49, Neg. LLF: 151.64922813409208
Iteration: 8, Func. Count: 57, Neg. LLF: 124.23903009136713
Iteration: 9, Func. Count: 63, Neg. LLF: 124.23125724360702
Iteration: 10, Func. Count: 69, Neg. LLF: 124.23072389492305
Iteration: 11, Func. Count: 75, Neg. LLF: 124.23065612852668
Iteration: 12, Func. Count: 80, Neg. LLF: 124.23065586918915
Optimization terminated successfully (Exit mode 0)
Current function value: 124.23065612852668
Iterations: 12
Function evaluations: 80
Gradient evaluations: 12
Iteration: 1, Func. Count: 8, Neg. LLF: 46708334.16891468
Iteration: 2, Func. Count: 16, Neg. LLF: 15960.061166723246
Iteration: 3, Func. Count: 26, Neg. LLF: 203.57188631853126
Iteration: 4, Func. Count: 34, Neg. LLF: 132.49866347948551
Iteration: 5, Func. Count: 42, Neg. LLF: 130.49128116307895
Iteration: 6, Func. Count: 50, Neg. LLF: 123.17253850259533
Iteration: 7, Func. Count: 57, Neg. LLF: 122.91940578563707
Iteration: 8, Func. Count: 64, Neg. LLF: 122.9163532005724
Iteration: 9, Func. Count: 71, Neg. LLF: 122.91609514734625
Iteration: 10, Func. Count: 78, Neg. LLF: 122.91606704087451
Iteration: 11, Func. Count: 85, Neg. LLF: 122.91606318352378
Iteration: 12, Func. Count: 91, Neg. LLF: 122.91606301862821
Optimization terminated successfully (Exit mode 0)
Current function value: 122.91606318352378
Iterations: 12
Function evaluations: 91
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 34118195.26997335
Iteration: 2, Func. Count: 18, Neg. LLF: 12944222333.530588
Iteration: 3, Func. Count: 28, Neg. LLF: 149.12722874916375
Iteration: 4, Func. Count: 37, Neg. LLF: 159.81458150223185
Iteration: 5, Func. Count: 47, Neg. LLF: 128.46327917268295
Iteration: 6, Func. Count: 56, Neg. LLF: 130.20155000438916
Iteration: 7, Func. Count: 65, Neg. LLF: 124.54119773198725
Iteration: 8, Func. Count: 73, Neg. LLF: 124.25602970448486
Iteration: 9, Func. Count: 81, Neg. LLF: 124.19477006726778
Iteration: 10, Func. Count: 89, Neg. LLF: 124.17897405001683
Iteration: 11, Func. Count: 97, Neg. LLF: 124.17641607652942
Iteration: 12, Func. Count: 105, Neg. LLF: 124.17446252264219
Iteration: 13, Func. Count: 113, Neg. LLF: 124.17445728810307
Iteration: 14, Func. Count: 120, Neg. LLF: 124.17445709820873
Optimization terminated successfully (Exit mode 0)
Current function value: 124.17445728810307
Iterations: 14
Function evaluations: 120
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 26394541.744491927
Iteration: 2, Func. Count: 20, Neg. LLF: 2472817198.7912216
Iteration: 3, Func. Count: 31, Neg. LLF: 6611129.159646028
Iteration: 4, Func. Count: 41, Neg. LLF: 158.16245538101643
Iteration: 5, Func. Count: 51, Neg. LLF: 148.0991463921323
Iteration: 6, Func. Count: 61, Neg. LLF: 125.2856439590537
Iteration: 7, Func. Count: 71, Neg. LLF: 119.72647543460579
Iteration: 8, Func. Count: 80, Neg. LLF: 119.88576240812577
Iteration: 9, Func. Count: 90, Neg. LLF: 119.52370637034645
Iteration: 10, Func. Count: 99, Neg. LLF: 119.4552117637096
Iteration: 11, Func. Count: 108, Neg. LLF: 119.4504359915029
Iteration: 12, Func. Count: 117, Neg. LLF: 119.4496188911573
Iteration: 13, Func. Count: 126, Neg. LLF: 119.44951521546321
Iteration: 14, Func. Count: 135, Neg. LLF: 119.44950714925459
Iteration: 15, Func. Count: 143, Neg. LLF: 119.4495069133393
Optimization terminated successfully (Exit mode 0)
Current function value: 119.44950714925459
Iterations: 15
Function evaluations: 143
Gradient evaluations: 15
Iteration: 1, Func. Count: 7, Neg. LLF: 148.249346918259
Iteration: 2, Func. Count: 13, Neg. LLF: 171.4594285946476
Iteration: 3, Func. Count: 20, Neg. LLF: 143.6575404108427
Iteration: 4, Func. Count: 26, Neg. LLF: 142.89921003334177
Iteration: 5, Func. Count: 32, Neg. LLF: 142.9373921822219
Iteration: 6, Func. Count: 39, Neg. LLF: 894344.8912720154
Iteration: 7, Func. Count: 46, Neg. LLF: 760597.9188575727
Iteration: 8, Func. Count: 53, Neg. LLF: 232.80023487049783
Iteration: 9, Func. Count: 60, Neg. LLF: 140.13255898140682
Iteration: 10, Func. Count: 67, Neg. LLF: 138.21097383512074
Iteration: 11, Func. Count: 74, Neg. LLF: 137.9327162455724
Iteration: 12, Func. Count: 81, Neg. LLF: 137.85523279197875
Iteration: 13, Func. Count: 87, Neg. LLF: 137.85498410365278
Iteration: 14, Func. Count: 93, Neg. LLF: 137.85496486192721
Iteration: 15, Func. Count: 99, Neg. LLF: 137.85496043943806
Iteration: 16, Func. Count: 104, Neg. LLF: 137.85496046312934
Optimization terminated successfully (Exit mode 0)
Current function value: 137.85496043943806
Iterations: 16
Function evaluations: 104
Gradient evaluations: 16
Iteration: 1, Func. Count: 8, Neg. LLF: 64274306.71764331
Iteration: 2, Func. Count: 16, Neg. LLF: 266.5820958652878
Iteration: 3, Func. Count: 25, Neg. LLF: 163.35656123209998
Iteration: 4, Func. Count: 33, Neg. LLF: 156.4793369429975
Iteration: 5, Func. Count: 41, Neg. LLF: 126.89937711290607
Iteration: 6, Func. Count: 48, Neg. LLF: 126.97510445562895
Iteration: 7, Func. Count: 56, Neg. LLF: 125.34578130928783
Iteration: 8, Func. Count: 64, Neg. LLF: 124.72311895277277
Iteration: 9, Func. Count: 72, Neg. LLF: 124.24995990030679
Iteration: 10, Func. Count: 79, Neg. LLF: 124.19726015590315
Iteration: 11, Func. Count: 86, Neg. LLF: 124.18523900015384
Iteration: 12, Func. Count: 93, Neg. LLF: 124.18366460119657
Iteration: 13, Func. Count: 100, Neg. LLF: 124.18365876069441
Iteration: 14, Func. Count: 106, Neg. LLF: 124.18365849603212
Optimization terminated successfully (Exit mode 0)
Current function value: 124.18365876069441
Iterations: 14
Function evaluations: 106
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 47194231.469846696
Iteration: 2, Func. Count: 18, Neg. LLF: 24413.876409945966
Iteration: 3, Func. Count: 29, Neg. LLF: 203.7924790807545
Iteration: 4, Func. Count: 38, Neg. LLF: 133.78473886668115
Iteration: 5, Func. Count: 47, Neg. LLF: 129.52471776624137
Iteration: 6, Func. Count: 56, Neg. LLF: 123.09716911551779
Iteration: 7, Func. Count: 64, Neg. LLF: 122.92939399563286
Iteration: 8, Func. Count: 72, Neg. LLF: 122.91755416167884
Iteration: 9, Func. Count: 80, Neg. LLF: 122.9166685223548
Iteration: 10, Func. Count: 88, Neg. LLF: 122.91606747494566
Iteration: 11, Func. Count: 96, Neg. LLF: 122.91606322510269
Iteration: 12, Func. Count: 103, Neg. LLF: 122.91606306004222
Optimization terminated successfully (Exit mode 0)
Current function value: 122.91606322510269
Iterations: 12
Function evaluations: 103
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 34292524.624294326
Iteration: 2, Func. Count: 20, Neg. LLF: 11916241310.847372
Iteration: 3, Func. Count: 31, Neg. LLF: 160.30450788634096
Iteration: 4, Func. Count: 41, Neg. LLF: 183.7111527644423
Iteration: 5, Func. Count: 51, Neg. LLF: 128.57004085732262
Iteration: 6, Func. Count: 61, Neg. LLF: 134.0361881029763
Iteration: 7, Func. Count: 71, Neg. LLF: 124.32957117315269
Iteration: 8, Func. Count: 80, Neg. LLF: 126.65469774107855
Iteration: 9, Func. Count: 90, Neg. LLF: 124.26318906856764
Iteration: 10, Func. Count: 99, Neg. LLF: 124.2504953183318
Iteration: 11, Func. Count: 108, Neg. LLF: 124.24993540615574
Iteration: 12, Func. Count: 117, Neg. LLF: 124.24986682650483
Iteration: 13, Func. Count: 126, Neg. LLF: 124.24974756755596
Iteration: 14, Func. Count: 135, Neg. LLF: 124.2465015586453
Iteration: 15, Func. Count: 144, Neg. LLF: 124.19478270778175
Iteration: 16, Func. Count: 153, Neg. LLF: 124.18089921136172
Iteration: 17, Func. Count: 162, Neg. LLF: 124.17634015167951
Iteration: 18, Func. Count: 171, Neg. LLF: 124.17471750683553
Iteration: 19, Func. Count: 180, Neg. LLF: 124.17447966220287
Iteration: 20, Func. Count: 189, Neg. LLF: 124.17445740612301
Iteration: 21, Func. Count: 197, Neg. LLF: 124.17445721616042
Optimization terminated successfully (Exit mode 0)
Current function value: 124.17445740612301
Iterations: 21
Function evaluations: 197
Gradient evaluations: 21
Iteration: 1, Func. Count: 11, Neg. LLF: 26514299.485613562
Iteration: 2, Func. Count: 22, Neg. LLF: 2400571523.140144
Iteration: 3, Func. Count: 34, Neg. LLF: 7197500.484760486
Iteration: 4, Func. Count: 45, Neg. LLF: 156.29567098345387
Iteration: 5, Func. Count: 56, Neg. LLF: 142.88426333877524
Iteration: 6, Func. Count: 67, Neg. LLF: 124.79409484629642
Iteration: 7, Func. Count: 77, Neg. LLF: 119.54820753143946
Iteration: 8, Func. Count: 87, Neg. LLF: 119.67867695051278
Iteration: 9, Func. Count: 98, Neg. LLF: 119.45721650955936
Iteration: 10, Func. Count: 108, Neg. LLF: 119.45058751853809
Iteration: 11, Func. Count: 118, Neg. LLF: 119.45025450823901
Iteration: 12, Func. Count: 128, Neg. LLF: 119.44955942576082
Iteration: 13, Func. Count: 138, Neg. LLF: 119.44951006685982
Iteration: 14, Func. Count: 148, Neg. LLF: 119.44950701514487
Iteration: 15, Func. Count: 157, Neg. LLF: 119.44950677924966
Optimization terminated successfully (Exit mode 0)
Current function value: 119.44950701514487
Iterations: 15
Function evaluations: 157
Gradient evaluations: 15
Iteration: 1, Func. Count: 8, Neg. LLF: 146.66224114072674
Iteration: 2, Func. Count: 15, Neg. LLF: 171.39945513299241
Iteration: 3, Func. Count: 23, Neg. LLF: 143.57618588501384
Iteration: 4, Func. Count: 30, Neg. LLF: 142.4954974655338
Iteration: 5, Func. Count: 37, Neg. LLF: 668545.0428829665
Iteration: 6, Func. Count: 45, Neg. LLF: 752266.9251243939
Iteration: 7, Func. Count: 53, Neg. LLF: 769851.5822771922
Iteration: 8, Func. Count: 61, Neg. LLF: 779384.9183405704
Iteration: 9, Func. Count: 69, Neg. LLF: 749759.4170723855
Iteration: 10, Func. Count: 77, Neg. LLF: 732301.6313516389
Iteration: 11, Func. Count: 85, Neg. LLF: 315524.36060427886
Iteration: 12, Func. Count: 93, Neg. LLF: 141.62736864591508
Iteration: 13, Func. Count: 101, Neg. LLF: 139.77751600953025
Iteration: 14, Func. Count: 109, Neg. LLF: 138.23071519975414
Iteration: 15, Func. Count: 117, Neg. LLF: 137.86142289724256
Iteration: 16, Func. Count: 125, Neg. LLF: 137.85580281981996
Iteration: 17, Func. Count: 133, Neg. LLF: 137.85496048036768
Optimization terminated successfully (Exit mode 0)
Current function value: 137.85496048036768
Iterations: 17
Function evaluations: 133
Gradient evaluations: 17
Iteration: 1, Func. Count: 9, Neg. LLF: 65345002.32232154
Iteration: 2, Func. Count: 18, Neg. LLF: 290.0096181557564
Iteration: 3, Func. Count: 28, Neg. LLF: 163.28897826785112
Iteration: 4, Func. Count: 37, Neg. LLF: 239.89855000668078
Iteration: 5, Func. Count: 46, Neg. LLF: 140.66890984947602
Iteration: 6, Func. Count: 55, Neg. LLF: 128.0579212024871
Iteration: 7, Func. Count: 64, Neg. LLF: 122.9912702184138
Iteration: 8, Func. Count: 72, Neg. LLF: 124.57655673472588
Iteration: 9, Func. Count: 81, Neg. LLF: 123.06019120653902
Iteration: 10, Func. Count: 90, Neg. LLF: 122.60255129682446
Iteration: 11, Func. Count: 98, Neg. LLF: 122.60239374380004
Iteration: 12, Func. Count: 106, Neg. LLF: 122.60238078935824
Iteration: 13, Func. Count: 114, Neg. LLF: 122.60237698609167
Iteration: 14, Func. Count: 121, Neg. LLF: 122.60237668313334
Optimization terminated successfully (Exit mode 0)
Current function value: 122.60237698609167
Iterations: 14
Function evaluations: 121
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 47203208.13207697
Iteration: 2, Func. Count: 20, Neg. LLF: 43273.39637228515
Iteration: 3, Func. Count: 32, Neg. LLF: 4742.540415668936
Iteration: 4, Func. Count: 42, Neg. LLF: 134.7379219332795
Iteration: 5, Func. Count: 52, Neg. LLF: 133.5414616288792
Iteration: 6, Func. Count: 62, Neg. LLF: 122.2224977391055
Iteration: 7, Func. Count: 71, Neg. LLF: 122.10902220355332
Iteration: 8, Func. Count: 80, Neg. LLF: 122.10884091730136
Iteration: 9, Func. Count: 90, Neg. LLF: 122.0955372294212
Iteration: 10, Func. Count: 99, Neg. LLF: 122.09542036230857
Iteration: 11, Func. Count: 108, Neg. LLF: 122.0954189915984
Iteration: 12, Func. Count: 116, Neg. LLF: 122.09541880102479
Optimization terminated successfully (Exit mode 0)
Current function value: 122.0954189915984
Iterations: 12
Function evaluations: 116
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 34152749.15573851
Iteration: 2, Func. Count: 22, Neg. LLF: 9918867136.788685
Iteration: 3, Func. Count: 34, Neg. LLF: 1783.2633925810653
Iteration: 4, Func. Count: 45, Neg. LLF: 131.30562011159125
Iteration: 5, Func. Count: 56, Neg. LLF: 139.4853960263021
Iteration: 6, Func. Count: 67, Neg. LLF: 127.6771377278015
Iteration: 7, Func. Count: 78, Neg. LLF: 126.18977444410785
Iteration: 8, Func. Count: 89, Neg. LLF: 122.13798000909436
Iteration: 9, Func. Count: 99, Neg. LLF: 122.39971948466625
Iteration: 10, Func. Count: 110, Neg. LLF: 122.10133152767945
Iteration: 11, Func. Count: 120, Neg. LLF: 122.09549659415804
Iteration: 12, Func. Count: 130, Neg. LLF: 122.09541950391873
Iteration: 13, Func. Count: 140, Neg. LLF: 122.09541883674196
Optimization terminated successfully (Exit mode 0)
Current function value: 122.09541883674196
Iterations: 13
Function evaluations: 140
Gradient evaluations: 13
Iteration: 1, Func. Count: 12, Neg. LLF: 26385669.818689864
Iteration: 2, Func. Count: 24, Neg. LLF: 2213684269.435824
Iteration: 3, Func. Count: 37, Neg. LLF: 8748068.08677625
Iteration: 4, Func. Count: 49, Neg. LLF: 218.51865789497455
Iteration: 5, Func. Count: 61, Neg. LLF: 228.1394354725763
Iteration: 6, Func. Count: 73, Neg. LLF: 131.89790526777082
Iteration: 7, Func. Count: 85, Neg. LLF: 140.3731926408427
Iteration: 8, Func. Count: 97, Neg. LLF: 122.93368603229538
Iteration: 9, Func. Count: 108, Neg. LLF: 125.69323723911847
Iteration: 10, Func. Count: 120, Neg. LLF: 122.9444079884039
Iteration: 11, Func. Count: 132, Neg. LLF: 122.15421350847606
Iteration: 12, Func. Count: 143, Neg. LLF: 122.21746578348427
Iteration: 13, Func. Count: 155, Neg. LLF: 122.09568995997913
Iteration: 14, Func. Count: 166, Neg. LLF: 122.09545441415874
Iteration: 15, Func. Count: 177, Neg. LLF: 122.09541939130482
Iteration: 16, Func. Count: 188, Neg. LLF: 122.09541883282486
Optimization terminated successfully (Exit mode 0)
Current function value: 122.09541883282486
Iterations: 16
Function evaluations: 188
Gradient evaluations: 16
Iteration: 1, Func. Count: 5, Neg. LLF: 154.72083991884605
Iteration: 2, Func. Count: 9, Neg. LLF: 154.9191443417948
Iteration: 3, Func. Count: 14, Neg. LLF: 154.7009052380649
Iteration: 4, Func. Count: 18, Neg. LLF: 154.69117471284147
Iteration: 5, Func. Count: 22, Neg. LLF: 154.68725706046513
Iteration: 6, Func. Count: 26, Neg. LLF: 154.6872351356871
Iteration: 7, Func. Count: 29, Neg. LLF: 154.68723518834378
Optimization terminated successfully (Exit mode 0)
Current function value: 154.6872351356871
Iterations: 7
Function evaluations: 29
Gradient evaluations: 7
Iteration: 1, Func. Count: 6, Neg. LLF: 63890277.43141929
Iteration: 2, Func. Count: 12, Neg. LLF: 291.5641583753438
Iteration: 3, Func. Count: 19, Neg. LLF: 162.82810350331565
Iteration: 4, Func. Count: 25, Neg. LLF: 336.4437106199638
Iteration: 5, Func. Count: 31, Neg. LLF: 445.47356601149414
Iteration: 6, Func. Count: 37, Neg. LLF: 456.35009671631667
Iteration: 7, Func. Count: 43, Neg. LLF: 144.13934434090928
Iteration: 8, Func. Count: 49, Neg. LLF: 16017896.48385454
Iteration: 9, Func. Count: 57, Neg. LLF: 223.88448023455044
Iteration: 10, Func. Count: 64, Neg. LLF: 268.5053124811463
Iteration: 11, Func. Count: 70, Neg. LLF: 215.07648094600614
Iteration: 12, Func. Count: 76, Neg. LLF: 154.80524449445812
Iteration: 13, Func. Count: 82, Neg. LLF: 146.16638390474088
Iteration: 14, Func. Count: 88, Neg. LLF: 141.61972644974114
Iteration: 15, Func. Count: 94, Neg. LLF: 140.92006597275886
Iteration: 16, Func. Count: 100, Neg. LLF: 284.35096918785507
Iteration: 17, Func. Count: 108, Neg. LLF: 138.9903900090712
Iteration: 18, Func. Count: 114, Neg. LLF: 136.372805238209
Iteration: 19, Func. Count: 120, Neg. LLF: 130.85788203670234
Iteration: 20, Func. Count: 126, Neg. LLF: 130.19440902196044
Iteration: 21, Func. Count: 131, Neg. LLF: 130.0725268012798
Iteration: 22, Func. Count: 136, Neg. LLF: 129.37167153901729
Iteration: 23, Func. Count: 141, Neg. LLF: 127.42663941124371
Iteration: 24, Func. Count: 146, Neg. LLF: 127.35178635638343
Iteration: 25, Func. Count: 151, Neg. LLF: 127.3330349580593
Iteration: 26, Func. Count: 156, Neg. LLF: 127.33008454116808
Iteration: 27, Func. Count: 161, Neg. LLF: 127.32976164020495
Iteration: 28, Func. Count: 166, Neg. LLF: 127.32975800077602
Iteration: 29, Func. Count: 170, Neg. LLF: 127.32975800090571
Optimization terminated successfully (Exit mode 0)
Current function value: 127.32975800077602
Iterations: 30
Function evaluations: 170
Gradient evaluations: 29
Iteration: 1, Func. Count: 7, Neg. LLF: 44784214.22008093
Iteration: 2, Func. Count: 14, Neg. LLF: 69884.02569545739
Iteration: 3, Func. Count: 24, Neg. LLF: 378.6883483993504
Iteration: 4, Func. Count: 31, Neg. LLF: 397.2972671429245
Iteration: 5, Func. Count: 38, Neg. LLF: 387.6548780983218
Iteration: 6, Func. Count: 45, Neg. LLF: 135.77624150020287
Iteration: 7, Func. Count: 52, Neg. LLF: 313.0783746589156
Iteration: 8, Func. Count: 59, Neg. LLF: 141.01619887964057
Iteration: 9, Func. Count: 66, Neg. LLF: 192.36596246922727
Iteration: 10, Func. Count: 73, Neg. LLF: 139.70481098570656
Iteration: 11, Func. Count: 80, Neg. LLF: 130.8036073720897
Iteration: 12, Func. Count: 86, Neg. LLF: 130.0643381766895
Iteration: 13, Func. Count: 92, Neg. LLF: 128.64266481689842
Iteration: 14, Func. Count: 98, Neg. LLF: 128.02329039327196
Iteration: 15, Func. Count: 104, Neg. LLF: 128.61936199324418
Iteration: 16, Func. Count: 111, Neg. LLF: 127.24256682941665
Iteration: 17, Func. Count: 117, Neg. LLF: 126.97629285697847
Iteration: 18, Func. Count: 123, Neg. LLF: 14397581.758176636
Iteration: 19, Func. Count: 132, Neg. LLF: 131.81538731781984
Iteration: 20, Func. Count: 140, Neg. LLF: 126.97489007676715
Iteration: 21, Func. Count: 147, Neg. LLF: 126.9557535813339
Iteration: 22, Func. Count: 152, Neg. LLF: 126.95575358134268
Optimization terminated successfully (Exit mode 0)
Current function value: 126.9557535813339
Iterations: 23
Function evaluations: 152
Gradient evaluations: 22
Iteration: 1, Func. Count: 8, Neg. LLF: 30438976.138685726
Iteration: 2, Func. Count: 16, Neg. LLF: 2199497452.6223826
Iteration: 3, Func. Count: 25, Neg. LLF: 597.6380461630404
Iteration: 4, Func. Count: 33, Neg. LLF: 365.1378631638204
Iteration: 5, Func. Count: 41, Neg. LLF: 381.7971418562356
Iteration: 6, Func. Count: 49, Neg. LLF: 153.47874101189865
Iteration: 7, Func. Count: 57, Neg. LLF: 155.10506305034448
Iteration: 8, Func. Count: 65, Neg. LLF: 479.92829447947247
Iteration: 9, Func. Count: 73, Neg. LLF: 156.53292648832607
Iteration: 10, Func. Count: 81, Neg. LLF: 137.91496339579086
Iteration: 11, Func. Count: 89, Neg. LLF: 135.23008700301907
Iteration: 12, Func. Count: 97, Neg. LLF: 169.2346753893904
Iteration: 13, Func. Count: 105, Neg. LLF: 136.42250957279836
Iteration: 14, Func. Count: 113, Neg. LLF: 127.40391796454357
Iteration: 15, Func. Count: 120, Neg. LLF: 126.61635729366579
Iteration: 16, Func. Count: 127, Neg. LLF: 126.44998859083645
Iteration: 17, Func. Count: 134, Neg. LLF: 126.22741409460525
Iteration: 18, Func. Count: 141, Neg. LLF: 126.20773352226549
Iteration: 19, Func. Count: 148, Neg. LLF: 126.20379553584235
Iteration: 20, Func. Count: 155, Neg. LLF: 126.20363518963515
Iteration: 21, Func. Count: 162, Neg. LLF: 126.20363351689087
Iteration: 22, Func. Count: 168, Neg. LLF: 126.20363351692016
Optimization terminated successfully (Exit mode 0)
Current function value: 126.20363351689087
Iterations: 22
Function evaluations: 168
Gradient evaluations: 22
Iteration: 1, Func. Count: 9, Neg. LLF: 22482746.085658375
Iteration: 2, Func. Count: 18, Neg. LLF: 602038958.9688162
Iteration: 3, Func. Count: 28, Neg. LLF: 3920.2543475109233
Iteration: 4, Func. Count: 37, Neg. LLF: 370.73057786863063
Iteration: 5, Func. Count: 46, Neg. LLF: 357.4839497544616
Iteration: 6, Func. Count: 55, Neg. LLF: 138.73880056035932
Iteration: 7, Func. Count: 64, Neg. LLF: 135.7593411061571
Iteration: 8, Func. Count: 73, Neg. LLF: 147.35707495857696
Iteration: 9, Func. Count: 82, Neg. LLF: 135.136811158682
Iteration: 10, Func. Count: 91, Neg. LLF: 128.7995519165791
Iteration: 11, Func. Count: 100, Neg. LLF: 127.07081290632124
Iteration: 12, Func. Count: 108, Neg. LLF: 127.00745001981997
Iteration: 13, Func. Count: 117, Neg. LLF: 126.8372766267474
Iteration: 14, Func. Count: 125, Neg. LLF: 126.70066662316333
Iteration: 15, Func. Count: 133, Neg. LLF: 126.36314078710868
Iteration: 16, Func. Count: 141, Neg. LLF: 126.22595129773333
Iteration: 17, Func. Count: 149, Neg. LLF: 126.20494479805011
Iteration: 18, Func. Count: 157, Neg. LLF: 126.20372428481363
Iteration: 19, Func. Count: 165, Neg. LLF: 126.20363372272172
Iteration: 20, Func. Count: 172, Neg. LLF: 126.20363381795657
Optimization terminated successfully (Exit mode 0)
Current function value: 126.20363372272172
Iterations: 20
Function evaluations: 172
Gradient evaluations: 20
Iteration: 1, Func. Count: 6, Neg. LLF: 154.89222378162555
Iteration: 2, Func. Count: 11, Neg. LLF: 153.6614084214658
Iteration: 3, Func. Count: 17, Neg. LLF: 182.1754122229539
Iteration: 4, Func. Count: 23, Neg. LLF: 152.844361790418
Iteration: 5, Func. Count: 28, Neg. LLF: 152.8731454099353
Iteration: 6, Func. Count: 34, Neg. LLF: 152.81544256589564
Iteration: 7, Func. Count: 39, Neg. LLF: 152.76411513678514
Iteration: 8, Func. Count: 44, Neg. LLF: 152.7557944674038
Iteration: 9, Func. Count: 49, Neg. LLF: 152.75519417599284
Iteration: 10, Func. Count: 54, Neg. LLF: 152.75517615584488
Iteration: 11, Func. Count: 59, Neg. LLF: 152.75511528080713
Iteration: 12, Func. Count: 64, Neg. LLF: 152.75492132044195
Iteration: 13, Func. Count: 69, Neg. LLF: 152.75269203432975
Iteration: 14, Func. Count: 74, Neg. LLF: 153.24197483540667
Iteration: 15, Func. Count: 80, Neg. LLF: 152.75171411181603
Iteration: 16, Func. Count: 86, Neg. LLF: 152.74252857127968
Iteration: 17, Func. Count: 91, Neg. LLF: 152.7330329855113
Iteration: 18, Func. Count: 96, Neg. LLF: 152.7300916453083
Iteration: 19, Func. Count: 101, Neg. LLF: 152.73000061210533
Iteration: 20, Func. Count: 106, Neg. LLF: 152.72999602972868
Iteration: 21, Func. Count: 110, Neg. LLF: 152.7299960101234
Optimization terminated successfully (Exit mode 0)
Current function value: 152.72999602972868
Iterations: 21
Function evaluations: 110
Gradient evaluations: 21
Iteration: 1, Func. Count: 7, Neg. LLF: 59765293.69427283
Iteration: 2, Func. Count: 14, Neg. LLF: 319.2721873328699
Iteration: 3, Func. Count: 24, Neg. LLF: 132.03836006345833
Iteration: 4, Func. Count: 30, Neg. LLF: 140.02724383654945
Iteration: 5, Func. Count: 37, Neg. LLF: 197.50873224148816
Iteration: 6, Func. Count: 46, Neg. LLF: 171.66507311621748
Iteration: 7, Func. Count: 55, Neg. LLF: 126.42980170090615
Iteration: 8, Func. Count: 61, Neg. LLF: 126.29937582246727
Iteration: 9, Func. Count: 67, Neg. LLF: 126.2957300654849
Iteration: 10, Func. Count: 73, Neg. LLF: 126.2954872964391
Iteration: 11, Func. Count: 79, Neg. LLF: 126.29514793968237
Iteration: 12, Func. Count: 85, Neg. LLF: 126.29500331316977
Iteration: 13, Func. Count: 91, Neg. LLF: 126.29499375565652
Iteration: 14, Func. Count: 96, Neg. LLF: 126.29499367346938
Optimization terminated successfully (Exit mode 0)
Current function value: 126.29499375565652
Iterations: 14
Function evaluations: 96
Gradient evaluations: 14
Iteration: 1, Func. Count: 8, Neg. LLF: 46534437.699647546
Iteration: 2, Func. Count: 16, Neg. LLF: 862.5223119507657
Iteration: 3, Func. Count: 28, Neg. LLF: 139.18834310192554
Iteration: 4, Func. Count: 36, Neg. LLF: 148.57995352890205
Iteration: 5, Func. Count: 44, Neg. LLF: 129.95755898734657
Iteration: 6, Func. Count: 52, Neg. LLF: 135.7580327020874
Iteration: 7, Func. Count: 60, Neg. LLF: 129.8817749125342
Iteration: 8, Func. Count: 68, Neg. LLF: 128.11738487745555
Iteration: 9, Func. Count: 76, Neg. LLF: 127.02850054005295
Iteration: 10, Func. Count: 83, Neg. LLF: 126.55388554460951
Iteration: 11, Func. Count: 90, Neg. LLF: 126.30101255608362
Iteration: 12, Func. Count: 97, Neg. LLF: 126.30468494350471
Iteration: 13, Func. Count: 105, Neg. LLF: 126.29512730875209
Iteration: 14, Func. Count: 112, Neg. LLF: 126.29499833570901
Iteration: 15, Func. Count: 119, Neg. LLF: 126.29499415091352
Iteration: 16, Func. Count: 126, Neg. LLF: 126.29499341465896
Optimization terminated successfully (Exit mode 0)
Current function value: 126.29499341465896
Iterations: 16
Function evaluations: 126
Gradient evaluations: 16
Iteration: 1, Func. Count: 9, Neg. LLF: 65158497.1707893
Iteration: 2, Func. Count: 18, Neg. LLF: 223.33301161393456
Iteration: 3, Func. Count: 28, Neg. LLF: 162.39300557542066
Iteration: 4, Func. Count: 37, Neg. LLF: 135.40275817121497
Iteration: 5, Func. Count: 46, Neg. LLF: 131.5351133965691
Iteration: 6, Func. Count: 55, Neg. LLF: 137.83808528503906
Iteration: 7, Func. Count: 64, Neg. LLF: 131.21872967471785
Iteration: 8, Func. Count: 73, Neg. LLF: 127.03551475876361
Iteration: 9, Func. Count: 81, Neg. LLF: 126.60221508205802
Iteration: 10, Func. Count: 89, Neg. LLF: 135.91709892581005
Iteration: 11, Func. Count: 98, Neg. LLF: 126.14797564455623
Iteration: 12, Func. Count: 106, Neg. LLF: 126.08151998536432
Iteration: 13, Func. Count: 114, Neg. LLF: 126.08126290757026
Iteration: 14, Func. Count: 122, Neg. LLF: 126.08121031403694
Iteration: 15, Func. Count: 130, Neg. LLF: 126.08120347617194
Iteration: 16, Func. Count: 137, Neg. LLF: 126.08120347615207
Optimization terminated successfully (Exit mode 0)
Current function value: 126.08120347617194
Iterations: 16
Function evaluations: 137
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 55391642.21494612
Iteration: 2, Func. Count: 20, Neg. LLF: 276.97767086874535
Iteration: 3, Func. Count: 31, Neg. LLF: 578.9008144289248
Iteration: 4, Func. Count: 41, Neg. LLF: 134.34640286284122
Iteration: 5, Func. Count: 51, Neg. LLF: 132.25531911421598
Iteration: 6, Func. Count: 61, Neg. LLF: 128.9815188802766
Iteration: 7, Func. Count: 70, Neg. LLF: 148.93447373478787
Iteration: 8, Func. Count: 80, Neg. LLF: 138.93547995897205
Iteration: 9, Func. Count: 90, Neg. LLF: 126.26115615057957
Iteration: 10, Func. Count: 99, Neg. LLF: 126.12115258498994
Iteration: 11, Func. Count: 108, Neg. LLF: 126.10640236736471
Iteration: 12, Func. Count: 117, Neg. LLF: 126.08408439699974
Iteration: 13, Func. Count: 126, Neg. LLF: 126.08158569033326
Iteration: 14, Func. Count: 135, Neg. LLF: 126.08138149723791
Iteration: 15, Func. Count: 144, Neg. LLF: 126.0812550191816
Iteration: 16, Func. Count: 153, Neg. LLF: 126.08120735753488
Iteration: 17, Func. Count: 162, Neg. LLF: 126.08120338792266
Iteration: 18, Func. Count: 170, Neg. LLF: 126.08120348350471
Optimization terminated successfully (Exit mode 0)
Current function value: 126.08120338792266
Iterations: 18
Function evaluations: 170
Gradient evaluations: 18
Iteration: 1, Func. Count: 7, Neg. LLF: 148.6843986222329
Iteration: 2, Func. Count: 13, Neg. LLF: 158.23422334102764
Iteration: 3, Func. Count: 20, Neg. LLF: 144.57538860741514
Iteration: 4, Func. Count: 27, Neg. LLF: 144.07298947170423
Iteration: 5, Func. Count: 34, Neg. LLF: 142.2753648484322
Iteration: 6, Func. Count: 40, Neg. LLF: 358708.66100123664
Iteration: 7, Func. Count: 47, Neg. LLF: 434105.76472635794
Iteration: 8, Func. Count: 54, Neg. LLF: 447301.6858912631
Iteration: 9, Func. Count: 61, Neg. LLF: 439638.47496908513
Iteration: 10, Func. Count: 68, Neg. LLF: 419341.0561053656
Iteration: 11, Func. Count: 75, Neg. LLF: 269.5921230066274
Iteration: 12, Func. Count: 82, Neg. LLF: 371403.95709793246
Iteration: 13, Func. Count: 89, Neg. LLF: 292.1516892884427
Iteration: 14, Func. Count: 96, Neg. LLF: 144.3906491144608
Iteration: 15, Func. Count: 103, Neg. LLF: 138.5018806953004
Iteration: 16, Func. Count: 110, Neg. LLF: 137.50567408869978
Iteration: 17, Func. Count: 117, Neg. LLF: 137.31250127821414
Iteration: 18, Func. Count: 123, Neg. LLF: 137.30611178835048
Iteration: 19, Func. Count: 129, Neg. LLF: 137.3056636123894
Iteration: 20, Func. Count: 135, Neg. LLF: 137.30563679032
Iteration: 21, Func. Count: 141, Neg. LLF: 137.30563605850404
Optimization terminated successfully (Exit mode 0)
Current function value: 137.30563605850404
Iterations: 21
Function evaluations: 141
Gradient evaluations: 21
Iteration: 1, Func. Count: 8, Neg. LLF: 61736497.20257285
Iteration: 2, Func. Count: 16, Neg. LLF: 313.2329160064966
Iteration: 3, Func. Count: 27, Neg. LLF: 129.1097520794399
Iteration: 4, Func. Count: 34, Neg. LLF: 217.05905127353464
Iteration: 5, Func. Count: 44, Neg. LLF: 255.74042290922415
Iteration: 6, Func. Count: 53, Neg. LLF: 124.33985052267768
Iteration: 7, Func. Count: 60, Neg. LLF: 124.2869705947548
Iteration: 8, Func. Count: 67, Neg. LLF: 124.26954532289659
Iteration: 9, Func. Count: 74, Neg. LLF: 124.23349775710355
Iteration: 10, Func. Count: 81, Neg. LLF: 124.23073620098374
Iteration: 11, Func. Count: 88, Neg. LLF: 124.23065624096385
Iteration: 12, Func. Count: 94, Neg. LLF: 124.2306559811693
Optimization terminated successfully (Exit mode 0)
Current function value: 124.23065624096385
Iterations: 12
Function evaluations: 94
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 46556842.28841801
Iteration: 2, Func. Count: 18, Neg. LLF: 1013.6301222069416
Iteration: 3, Func. Count: 31, Neg. LLF: 246.27624056758432
Iteration: 4, Func. Count: 40, Neg. LLF: 135.4752598083323
Iteration: 5, Func. Count: 49, Neg. LLF: 128.65764339830773
Iteration: 6, Func. Count: 58, Neg. LLF: 123.01198719909449
Iteration: 7, Func. Count: 66, Neg. LLF: 122.92475352082138
Iteration: 8, Func. Count: 74, Neg. LLF: 122.91627608076918
Iteration: 9, Func. Count: 82, Neg. LLF: 122.91610519782687
Iteration: 10, Func. Count: 90, Neg. LLF: 122.91608315595592
Iteration: 11, Func. Count: 98, Neg. LLF: 122.91606327416012
Iteration: 12, Func. Count: 105, Neg. LLF: 122.9160631093388
Optimization terminated successfully (Exit mode 0)
Current function value: 122.91606327416012
Iterations: 12
Function evaluations: 105
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 62239198.30591231
Iteration: 2, Func. Count: 20, Neg. LLF: 221.18397512685587
Iteration: 3, Func. Count: 31, Neg. LLF: 135.07237805604578
Iteration: 4, Func. Count: 41, Neg. LLF: 157.96537722842749
Iteration: 5, Func. Count: 51, Neg. LLF: 126.7661687363508
Iteration: 6, Func. Count: 60, Neg. LLF: 166.66052585364093
Iteration: 7, Func. Count: 70, Neg. LLF: 165.5208581555653
Iteration: 8, Func. Count: 80, Neg. LLF: 125.82509587627362
Iteration: 9, Func. Count: 90, Neg. LLF: 124.4949929722905
Iteration: 10, Func. Count: 99, Neg. LLF: 124.99608824498486
Iteration: 11, Func. Count: 109, Neg. LLF: 124.60277378734199
Iteration: 12, Func. Count: 119, Neg. LLF: 124.20147247337364
Iteration: 13, Func. Count: 128, Neg. LLF: 124.18143690918882
Iteration: 14, Func. Count: 137, Neg. LLF: 124.17529389080204
Iteration: 15, Func. Count: 146, Neg. LLF: 124.17446998661846
Iteration: 16, Func. Count: 155, Neg. LLF: 124.17445858708162
Iteration: 17, Func. Count: 164, Neg. LLF: 124.17445724900118
Iteration: 18, Func. Count: 172, Neg. LLF: 124.17445705907622
Optimization terminated successfully (Exit mode 0)
Current function value: 124.17445724900118
Iterations: 18
Function evaluations: 172
Gradient evaluations: 18
Iteration: 1, Func. Count: 11, Neg. LLF: 55400151.69487663
Iteration: 2, Func. Count: 22, Neg. LLF: 306.0537124611065
Iteration: 3, Func. Count: 34, Neg. LLF: 2689096.8565500462
Iteration: 4, Func. Count: 45, Neg. LLF: 127.49805827088699
Iteration: 5, Func. Count: 55, Neg. LLF: 158.3201747700395
Iteration: 6, Func. Count: 68, Neg. LLF: 135.05978830016602
Iteration: 7, Func. Count: 79, Neg. LLF: 145.55594293121493
Iteration: 8, Func. Count: 90, Neg. LLF: 119.552955954842
Iteration: 9, Func. Count: 100, Neg. LLF: 119.459356212847
Iteration: 10, Func. Count: 110, Neg. LLF: 119.45477504484619
Iteration: 11, Func. Count: 120, Neg. LLF: 119.45136900150538
Iteration: 12, Func. Count: 130, Neg. LLF: 119.44960498347028
Iteration: 13, Func. Count: 140, Neg. LLF: 119.44957044599495
Iteration: 14, Func. Count: 150, Neg. LLF: 119.4495077139631
Iteration: 15, Func. Count: 160, Neg. LLF: 119.44950703719027
Optimization terminated successfully (Exit mode 0)
Current function value: 119.44950703719027
Iterations: 15
Function evaluations: 160
Gradient evaluations: 15
Iteration: 1, Func. Count: 8, Neg. LLF: 146.7105186593643
Iteration: 2, Func. Count: 15, Neg. LLF: 163.16213206934808
Iteration: 3, Func. Count: 23, Neg. LLF: 146.20106524057377
Iteration: 4, Func. Count: 32, Neg. LLF: 147.88551689541768
Iteration: 5, Func. Count: 40, Neg. LLF: 142.5667295551288
Iteration: 6, Func. Count: 47, Neg. LLF: 140.14382902893485
Iteration: 7, Func. Count: 54, Neg. LLF: 407554.6767865788
Iteration: 8, Func. Count: 62, Neg. LLF: 554.8319262308844
Iteration: 9, Func. Count: 70, Neg. LLF: 138.81333493313565
Iteration: 10, Func. Count: 78, Neg. LLF: 137.57755063620286
Iteration: 11, Func. Count: 86, Neg. LLF: 140.00964180258302
Iteration: 12, Func. Count: 94, Neg. LLF: 137.3088495065938
Iteration: 13, Func. Count: 101, Neg. LLF: 137.30659815349705
Iteration: 14, Func. Count: 108, Neg. LLF: 137.30566129370803
Iteration: 15, Func. Count: 115, Neg. LLF: 137.30563633943612
Iteration: 16, Func. Count: 121, Neg. LLF: 137.3056363812541
Optimization terminated successfully (Exit mode 0)
Current function value: 137.30563633943612
Iterations: 16
Function evaluations: 121
Gradient evaluations: 16
Iteration: 1, Func. Count: 9, Neg. LLF: 64077049.913242325
Iteration: 2, Func. Count: 18, Neg. LLF: 321.26121293566536
Iteration: 3, Func. Count: 30, Neg. LLF: 152.96281236532386
Iteration: 4, Func. Count: 39, Neg. LLF: 234.5124833182872
Iteration: 5, Func. Count: 50, Neg. LLF: 126.74375763472241
Iteration: 6, Func. Count: 58, Neg. LLF: 133.2165397870905
Iteration: 7, Func. Count: 68, Neg. LLF: 146.48896676070422
Iteration: 8, Func. Count: 79, Neg. LLF: 124.34670529072307
Iteration: 9, Func. Count: 87, Neg. LLF: 124.29696462696529
Iteration: 10, Func. Count: 95, Neg. LLF: 124.2276135918225
Iteration: 11, Func. Count: 103, Neg. LLF: 124.19338897750066
Iteration: 12, Func. Count: 111, Neg. LLF: 124.18383758306777
Iteration: 13, Func. Count: 119, Neg. LLF: 124.18366596453939
Iteration: 14, Func. Count: 127, Neg. LLF: 124.1836587654514
Iteration: 15, Func. Count: 134, Neg. LLF: 124.1836585011267
Optimization terminated successfully (Exit mode 0)
Current function value: 124.1836587654514
Iterations: 15
Function evaluations: 134
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 61417574.0468735
Iteration: 2, Func. Count: 20, Neg. LLF: 382.97239225288916
Iteration: 3, Func. Count: 31, Neg. LLF: 141.38623056742523
Iteration: 4, Func. Count: 41, Neg. LLF: 126.39734698622807
Iteration: 5, Func. Count: 50, Neg. LLF: 185.64752556288087
Iteration: 6, Func. Count: 62, Neg. LLF: 123.11921144997541
Iteration: 7, Func. Count: 71, Neg. LLF: 137.23379737606882
Iteration: 8, Func. Count: 82, Neg. LLF: 122.92180625991901
Iteration: 9, Func. Count: 91, Neg. LLF: 122.91700602201975
Iteration: 10, Func. Count: 100, Neg. LLF: 122.91653603771623
Iteration: 11, Func. Count: 109, Neg. LLF: 122.9160652064785
Iteration: 12, Func. Count: 118, Neg. LLF: 122.91606319673086
Iteration: 13, Func. Count: 126, Neg. LLF: 122.9160630318191
Optimization terminated successfully (Exit mode 0)
Current function value: 122.91606319673086
Iterations: 13
Function evaluations: 126
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 67754802.61416423
Iteration: 2, Func. Count: 22, Neg. LLF: 215.37969571190007
Iteration: 3, Func. Count: 34, Neg. LLF: 194.71597720989928
Iteration: 4, Func. Count: 45, Neg. LLF: 126.86563711788246
Iteration: 5, Func. Count: 55, Neg. LLF: 158.5588078557616
Iteration: 6, Func. Count: 68, Neg. LLF: 298.4540404528677
Iteration: 7, Func. Count: 79, Neg. LLF: 138.3177396383278
Iteration: 8, Func. Count: 90, Neg. LLF: 148.03323299831447
Iteration: 9, Func. Count: 101, Neg. LLF: 123.22567910764188
Iteration: 10, Func. Count: 111, Neg. LLF: 122.86156076882654
Iteration: 11, Func. Count: 121, Neg. LLF: 122.70260437680854
Iteration: 12, Func. Count: 131, Neg. LLF: 122.61428533415668
Iteration: 13, Func. Count: 141, Neg. LLF: 122.58752572619657
Iteration: 14, Func. Count: 151, Neg. LLF: 122.58215725880747
Iteration: 15, Func. Count: 161, Neg. LLF: 122.57721936388512
Iteration: 16, Func. Count: 171, Neg. LLF: 122.57717869833458
Iteration: 17, Func. Count: 181, Neg. LLF: 122.57717794523522
Optimization terminated successfully (Exit mode 0)
Current function value: 122.57717794523522
Iterations: 17
Function evaluations: 181
Gradient evaluations: 17
Iteration: 1, Func. Count: 12, Neg. LLF: 56765131.127959885
Iteration: 2, Func. Count: 24, Neg. LLF: 266.79658692586816
Iteration: 3, Func. Count: 37, Neg. LLF: 2457663.073550299
Iteration: 4, Func. Count: 49, Neg. LLF: 123.12387381857967
Iteration: 5, Func. Count: 60, Neg. LLF: 154.5655750262745
Iteration: 6, Func. Count: 74, Neg. LLF: 134.96794299476738
Iteration: 7, Func. Count: 87, Neg. LLF: 119.98738545348523
Iteration: 8, Func. Count: 98, Neg. LLF: 119.48868379400253
Iteration: 9, Func. Count: 109, Neg. LLF: 119.45758984846425
Iteration: 10, Func. Count: 120, Neg. LLF: 119.45307617143567
Iteration: 11, Func. Count: 131, Neg. LLF: 119.45009206071126
Iteration: 12, Func. Count: 142, Neg. LLF: 119.44954218827094
Iteration: 13, Func. Count: 153, Neg. LLF: 119.4495078837046
Iteration: 14, Func. Count: 164, Neg. LLF: 119.44950701885824
Optimization terminated successfully (Exit mode 0)
Current function value: 119.44950701885824
Iterations: 14
Function evaluations: 164
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 145.81344985689472
Iteration: 2, Func. Count: 17, Neg. LLF: 164.6070796622001
Iteration: 3, Func. Count: 26, Neg. LLF: 147.011159452489
Iteration: 4, Func. Count: 37, Neg. LLF: 143.49805844508813
Iteration: 5, Func. Count: 45, Neg. LLF: 142.34087161027088
Iteration: 6, Func. Count: 53, Neg. LLF: 139.44191484100247
Iteration: 7, Func. Count: 61, Neg. LLF: 422258.6147276155
Iteration: 8, Func. Count: 70, Neg. LLF: 187.59686671695033
Iteration: 9, Func. Count: 79, Neg. LLF: 315.5747570076112
Iteration: 10, Func. Count: 88, Neg. LLF: 172.2362280812508
Iteration: 11, Func. Count: 97, Neg. LLF: 245.04546868826822
Iteration: 12, Func. Count: 106, Neg. LLF: 138.93777922538197
Iteration: 13, Func. Count: 115, Neg. LLF: 137.43238036944427
Iteration: 14, Func. Count: 124, Neg. LLF: 137.3106343933217
Iteration: 15, Func. Count: 132, Neg. LLF: 137.30599529241414
Iteration: 16, Func. Count: 140, Neg. LLF: 137.3056957329819
Iteration: 17, Func. Count: 148, Neg. LLF: 137.3056507200037
Iteration: 18, Func. Count: 156, Neg. LLF: 137.30563606169179
Iteration: 19, Func. Count: 163, Neg. LLF: 137.3056359738375
Optimization terminated successfully (Exit mode 0)
Current function value: 137.30563606169179
Iterations: 19
Function evaluations: 163
Gradient evaluations: 19
Iteration: 1, Func. Count: 10, Neg. LLF: 65318774.40310759
Iteration: 2, Func. Count: 20, Neg. LLF: 322.98898557592275
Iteration: 3, Func. Count: 33, Neg. LLF: 9810759.193793021
Iteration: 4, Func. Count: 43, Neg. LLF: 315.8418469187031
Iteration: 5, Func. Count: 53, Neg. LLF: 165.82632282831915
Iteration: 6, Func. Count: 63, Neg. LLF: 139.67268042069685
Iteration: 7, Func. Count: 73, Neg. LLF: 127.85716818234117
Iteration: 8, Func. Count: 83, Neg. LLF: 123.20303968876304
Iteration: 9, Func. Count: 92, Neg. LLF: 122.60651167000081
Iteration: 10, Func. Count: 101, Neg. LLF: 122.65325950748252
Iteration: 11, Func. Count: 111, Neg. LLF: 122.60417392963149
Iteration: 12, Func. Count: 121, Neg. LLF: 122.60237710177924
Iteration: 13, Func. Count: 129, Neg. LLF: 122.60237679891279
Optimization terminated successfully (Exit mode 0)
Current function value: 122.60237710177924
Iterations: 13
Function evaluations: 129
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 62879270.70417109
Iteration: 2, Func. Count: 22, Neg. LLF: 361.13528907499744
Iteration: 3, Func. Count: 34, Neg. LLF: 15586910.475687664
Iteration: 4, Func. Count: 45, Neg. LLF: 129.83178054878493
Iteration: 5, Func. Count: 55, Neg. LLF: 147.52926871782245
Iteration: 6, Func. Count: 67, Neg. LLF: 130.29407840904688
Iteration: 7, Func. Count: 78, Neg. LLF: 131.52844920672854
Iteration: 8, Func. Count: 89, Neg. LLF: 124.98543355259189
Iteration: 9, Func. Count: 100, Neg. LLF: 122.4996279761231
Iteration: 10, Func. Count: 110, Neg. LLF: 122.23928491877523
Iteration: 11, Func. Count: 120, Neg. LLF: 122.13705465659777
Iteration: 12, Func. Count: 130, Neg. LLF: 122.10614165640492
Iteration: 13, Func. Count: 140, Neg. LLF: 122.09762797038138
Iteration: 14, Func. Count: 150, Neg. LLF: 122.09571269414153
Iteration: 15, Func. Count: 160, Neg. LLF: 122.09545326825997
Iteration: 16, Func. Count: 170, Neg. LLF: 122.09542128777106
Iteration: 17, Func. Count: 180, Neg. LLF: 122.09541886167747
Iteration: 18, Func. Count: 189, Neg. LLF: 122.09541867120386
Optimization terminated successfully (Exit mode 0)
Current function value: 122.09541886167747
Iterations: 18
Function evaluations: 189
Gradient evaluations: 18
Iteration: 1, Func. Count: 12, Neg. LLF: 65109812.13302118
Iteration: 2, Func. Count: 24, Neg. LLF: 196.16806021298865
Iteration: 3, Func. Count: 37, Neg. LLF: 17471430.807983026
Iteration: 4, Func. Count: 49, Neg. LLF: 133.63618341087536
Iteration: 5, Func. Count: 61, Neg. LLF: 130.59372844770138
Iteration: 6, Func. Count: 73, Neg. LLF: 126.75027341890072
Iteration: 7, Func. Count: 85, Neg. LLF: 126.68115254148834
Iteration: 8, Func. Count: 97, Neg. LLF: 124.58360284529975
Iteration: 9, Func. Count: 109, Neg. LLF: 126.88057376749897
Iteration: 10, Func. Count: 121, Neg. LLF: 124.54751185201177
Iteration: 11, Func. Count: 133, Neg. LLF: 123.10793570067972
Iteration: 12, Func. Count: 144, Neg. LLF: 123.07383512928547
Iteration: 13, Func. Count: 155, Neg. LLF: 123.07253565174513
Iteration: 14, Func. Count: 166, Neg. LLF: 123.07208897546525
Iteration: 15, Func. Count: 177, Neg. LLF: 123.07202376298008
Iteration: 16, Func. Count: 188, Neg. LLF: 123.07201361851239
Iteration: 17, Func. Count: 198, Neg. LLF: 123.07201345969949
Optimization terminated successfully (Exit mode 0)
Current function value: 123.07201361851239
Iterations: 17
Function evaluations: 198
Gradient evaluations: 17
Iteration: 1, Func. Count: 13, Neg. LLF: 57858928.00062439
Iteration: 2, Func. Count: 26, Neg. LLF: 253.25591749772343
Iteration: 3, Func. Count: 40, Neg. LLF: 3344314.776099977
Iteration: 4, Func. Count: 53, Neg. LLF: 134.26163560813507
Iteration: 5, Func. Count: 66, Neg. LLF: 136.72973936800184
Iteration: 6, Func. Count: 79, Neg. LLF: 127.17870160533641
Iteration: 7, Func. Count: 92, Neg. LLF: 126.76635995104698
Iteration: 8, Func. Count: 105, Neg. LLF: 147.2857060558383
Iteration: 9, Func. Count: 119, Neg. LLF: 122.83917004349402
Iteration: 10, Func. Count: 131, Neg. LLF: 122.60508499019842
Iteration: 11, Func. Count: 143, Neg. LLF: 122.64310670334905
Iteration: 12, Func. Count: 156, Neg. LLF: 122.58772281876841
Iteration: 13, Func. Count: 168, Neg. LLF: 122.58157163586043
Iteration: 14, Func. Count: 180, Neg. LLF: 122.57794362161117
Iteration: 15, Func. Count: 192, Neg. LLF: 122.57721544986674
Iteration: 16, Func. Count: 204, Neg. LLF: 122.577180498508
Iteration: 17, Func. Count: 216, Neg. LLF: 122.57717852302207
Iteration: 18, Func. Count: 228, Neg. LLF: 122.57717600145934
Iteration: 19, Func. Count: 240, Neg. LLF: 122.57717786315108
Iteration: 20, Func. Count: 252, Neg. LLF: 122.57717679495276
Optimization terminated successfully (Exit mode 0)
Current function value: 122.57717786207415
Iterations: 20
Function evaluations: 262
Gradient evaluations: 20
Iteration: 1, Func. Count: 6, Neg. LLF: 153.1390466890501
Iteration: 2, Func. Count: 11, Neg. LLF: 156.86643790830598
Iteration: 3, Func. Count: 17, Neg. LLF: 173.2346356522871
Iteration: 4, Func. Count: 25, Neg. LLF: 151.6968823163499
Iteration: 5, Func. Count: 30, Neg. LLF: 151.40254167468245
Iteration: 6, Func. Count: 35, Neg. LLF: 150.65496049276882
Iteration: 7, Func. Count: 40, Neg. LLF: 150.19915357437083
Iteration: 8, Func. Count: 45, Neg. LLF: 150.14404027793432
Iteration: 9, Func. Count: 50, Neg. LLF: 150.12565199852406
Iteration: 10, Func. Count: 55, Neg. LLF: 150.12402397404117
Iteration: 11, Func. Count: 60, Neg. LLF: 150.1239371074246
Iteration: 12, Func. Count: 65, Neg. LLF: 150.12393157949975
Iteration: 13, Func. Count: 69, Neg. LLF: 150.12393143858458
Optimization terminated successfully (Exit mode 0)
Current function value: 150.12393157949975
Iterations: 13
Function evaluations: 69
Gradient evaluations: 13
Iteration: 1, Func. Count: 7, Neg. LLF: 65191675.066519335
Iteration: 2, Func. Count: 14, Neg. LLF: 324.15184679560673
Iteration: 3, Func. Count: 23, Neg. LLF: 162.7687683695503
Iteration: 4, Func. Count: 30, Neg. LLF: 149.32162478675428
Iteration: 5, Func. Count: 37, Neg. LLF: 190.44100437662175
Iteration: 6, Func. Count: 44, Neg. LLF: 201.56148288787895
Iteration: 7, Func. Count: 51, Neg. LLF: 202.80469822048
Iteration: 8, Func. Count: 58, Neg. LLF: 138.75602322835573
Iteration: 9, Func. Count: 65, Neg. LLF: 164.29030234748802
Iteration: 10, Func. Count: 73, Neg. LLF: 15166870.994863426
Iteration: 11, Func. Count: 81, Neg. LLF: 294.0121759146976
Iteration: 12, Func. Count: 88, Neg. LLF: 250.2542877573775
Iteration: 13, Func. Count: 95, Neg. LLF: 135.79818128112905
Iteration: 14, Func. Count: 102, Neg. LLF: 132.25350914428452
Iteration: 15, Func. Count: 109, Neg. LLF: 128.15699020780215
Iteration: 16, Func. Count: 115, Neg. LLF: 16843271.65415173
Iteration: 17, Func. Count: 123, Neg. LLF: 515.8101294596294
Iteration: 18, Func. Count: 131, Neg. LLF: 161.47482261036222
Iteration: 19, Func. Count: 139, Neg. LLF: 127.33413178630211
Iteration: 20, Func. Count: 145, Neg. LLF: 127.32994272573025
Iteration: 21, Func. Count: 151, Neg. LLF: 127.32976623965699
Iteration: 22, Func. Count: 157, Neg. LLF: 127.32975803515995
Iteration: 23, Func. Count: 162, Neg. LLF: 127.32975803506045
Optimization terminated successfully (Exit mode 0)
Current function value: 127.32975803515995
Iterations: 25
Function evaluations: 162
Gradient evaluations: 23
Iteration: 1, Func. Count: 8, Neg. LLF: 43090786.20346662
Iteration: 2, Func. Count: 16, Neg. LLF: 146875624572.6522
Iteration: 3, Func. Count: 27, Neg. LLF: 448.0827907184737
Iteration: 4, Func. Count: 35, Neg. LLF: 428.5267476407332
Iteration: 5, Func. Count: 43, Neg. LLF: 407.5452302575582
Iteration: 6, Func. Count: 51, Neg. LLF: 352.1472095010651
Iteration: 7, Func. Count: 59, Neg. LLF: 162.4188721593861
Iteration: 8, Func. Count: 67, Neg. LLF: 15483395.10490731
Iteration: 9, Func. Count: 76, Neg. LLF: 339.15159266624846
Iteration: 10, Func. Count: 84, Neg. LLF: 200.38663138225093
Iteration: 11, Func. Count: 92, Neg. LLF: 131.53118431351908
Iteration: 12, Func. Count: 100, Neg. LLF: 128.6512267575251
Iteration: 13, Func. Count: 107, Neg. LLF: 133.5629076369323
Iteration: 14, Func. Count: 116, Neg. LLF: 2758.6693311542795
Iteration: 15, Func. Count: 126, Neg. LLF: 126.97373135174085
Iteration: 16, Func. Count: 133, Neg. LLF: 126.95451298565638
Iteration: 17, Func. Count: 140, Neg. LLF: 126.95391563406255
Iteration: 18, Func. Count: 147, Neg. LLF: 126.95384289357698
Iteration: 19, Func. Count: 154, Neg. LLF: 126.95381981081161
Iteration: 20, Func. Count: 161, Neg. LLF: 126.95381827967546
Iteration: 21, Func. Count: 167, Neg. LLF: 126.95381827971315
Optimization terminated successfully (Exit mode 0)
Current function value: 126.95381827967546
Iterations: 22
Function evaluations: 167
Gradient evaluations: 21
Iteration: 1, Func. Count: 9, Neg. LLF: 28938555.551395692
Iteration: 2, Func. Count: 18, Neg. LLF: 1756329034.8135185
Iteration: 3, Func. Count: 28, Neg. LLF: 9369.116261614967
Iteration: 4, Func. Count: 37, Neg. LLF: 355.8502188293343
Iteration: 5, Func. Count: 46, Neg. LLF: 324.9501285164605
Iteration: 6, Func. Count: 55, Neg. LLF: 139.29554129316955
Iteration: 7, Func. Count: 64, Neg. LLF: 173.04196741567685
Iteration: 8, Func. Count: 73, Neg. LLF: 130.2330465464355
Iteration: 9, Func. Count: 81, Neg. LLF: 136.84187812740737
Iteration: 10, Func. Count: 90, Neg. LLF: 140.1639156863033
Iteration: 11, Func. Count: 101, Neg. LLF: 151.0015102613405
Iteration: 12, Func. Count: 110, Neg. LLF: 127.7480577441447
Iteration: 13, Func. Count: 118, Neg. LLF: 132.47493611706918
Iteration: 14, Func. Count: 127, Neg. LLF: 129.80532791194378
Iteration: 15, Func. Count: 136, Neg. LLF: 126.88795941808165
Iteration: 16, Func. Count: 144, Neg. LLF: 126.38095111639254
Iteration: 17, Func. Count: 152, Neg. LLF: 126.22574903133516
Iteration: 18, Func. Count: 160, Neg. LLF: 126.20522578860079
Iteration: 19, Func. Count: 168, Neg. LLF: 126.20377055248392
Iteration: 20, Func. Count: 176, Neg. LLF: 126.20364753124394
Iteration: 21, Func. Count: 184, Neg. LLF: 126.20363986904655
Iteration: 22, Func. Count: 192, Neg. LLF: 126.203633957094
Iteration: 23, Func. Count: 199, Neg. LLF: 126.20363395677781
Optimization terminated successfully (Exit mode 0)
Current function value: 126.203633957094
Iterations: 23
Function evaluations: 199
Gradient evaluations: 23
Iteration: 1, Func. Count: 10, Neg. LLF: 21120537.266810294
Iteration: 2, Func. Count: 20, Neg. LLF: 611557582.236522
Iteration: 3, Func. Count: 31, Neg. LLF: 109803.747987976
Iteration: 4, Func. Count: 41, Neg. LLF: 675.440809271705
Iteration: 5, Func. Count: 51, Neg. LLF: 497.9426667852522
Iteration: 6, Func. Count: 61, Neg. LLF: 136.76575771761694
Iteration: 7, Func. Count: 71, Neg. LLF: 176.6386696072219
Iteration: 8, Func. Count: 81, Neg. LLF: 133.17592224730623
Iteration: 9, Func. Count: 91, Neg. LLF: 131.88559180082854
Iteration: 10, Func. Count: 101, Neg. LLF: 129.597039703265
Iteration: 11, Func. Count: 110, Neg. LLF: 127.99926434796767
Iteration: 12, Func. Count: 119, Neg. LLF: 127.33589923470802
Iteration: 13, Func. Count: 128, Neg. LLF: 126.97463760891792
Iteration: 14, Func. Count: 137, Neg. LLF: 126.95789898074347
Iteration: 15, Func. Count: 146, Neg. LLF: 126.9538231387547
Iteration: 16, Func. Count: 155, Neg. LLF: 126.95382196726152
Iteration: 17, Func. Count: 165, Neg. LLF: 126.95381828739228
Optimization terminated successfully (Exit mode 0)
Current function value: 126.95381828739228
Iterations: 17
Function evaluations: 165
Gradient evaluations: 17
Iteration: 1, Func. Count: 7, Neg. LLF: 156.80093356948504
Iteration: 2, Func. Count: 13, Neg. LLF: 154.03846837981123
Iteration: 3, Func. Count: 19, Neg. LLF: 182.74896358850273
Iteration: 4, Func. Count: 29, Neg. LLF: 176.10345433279736
Iteration: 5, Func. Count: 36, Neg. LLF: 151.68169870391276
Iteration: 6, Func. Count: 42, Neg. LLF: 151.56828102400175
Iteration: 7, Func. Count: 48, Neg. LLF: 151.2487595722972
Iteration: 8, Func. Count: 54, Neg. LLF: 150.76615425246302
Iteration: 9, Func. Count: 60, Neg. LLF: 150.42552620211828
Iteration: 10, Func. Count: 66, Neg. LLF: 150.15747056059593
Iteration: 11, Func. Count: 72, Neg. LLF: 150.1168157150137
Iteration: 12, Func. Count: 78, Neg. LLF: 150.11496535233144
Iteration: 13, Func. Count: 84, Neg. LLF: 150.11489446467465
Iteration: 14, Func. Count: 90, Neg. LLF: 150.11488761407378
Iteration: 15, Func. Count: 96, Neg. LLF: 150.114884634066
Iteration: 16, Func. Count: 101, Neg. LLF: 150.11488469245208
Optimization terminated successfully (Exit mode 0)
Current function value: 150.114884634066
Iterations: 16
Function evaluations: 101
Gradient evaluations: 16
Iteration: 1, Func. Count: 8, Neg. LLF: 59322032.8743712
Iteration: 2, Func. Count: 16, Neg. LLF: 349.77430512200164
Iteration: 3, Func. Count: 27, Neg. LLF: 130.43637128319756
Iteration: 4, Func. Count: 34, Neg. LLF: 171.92250558869657
Iteration: 5, Func. Count: 44, Neg. LLF: 150.58396088176855
Iteration: 6, Func. Count: 53, Neg. LLF: 126.9034927065899
Iteration: 7, Func. Count: 60, Neg. LLF: 126.6178070679782
Iteration: 8, Func. Count: 67, Neg. LLF: 126.47572052999085
Iteration: 9, Func. Count: 74, Neg. LLF: 126.35812553921497
Iteration: 10, Func. Count: 81, Neg. LLF: 126.29589424485388
Iteration: 11, Func. Count: 88, Neg. LLF: 126.29512081479007
Iteration: 12, Func. Count: 95, Neg. LLF: 126.29499351938348
Iteration: 13, Func. Count: 101, Neg. LLF: 126.29499343694515
Optimization terminated successfully (Exit mode 0)
Current function value: 126.29499351938348
Iterations: 13
Function evaluations: 101
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 56867158.897885434
Iteration: 2, Func. Count: 18, Neg. LLF: 445.73788456280323
Iteration: 3, Func. Count: 28, Neg. LLF: 162.8694735533983
Iteration: 4, Func. Count: 37, Neg. LLF: 136.8570760223981
Iteration: 5, Func. Count: 46, Neg. LLF: 132.24364706614676
Iteration: 6, Func. Count: 55, Neg. LLF: 130.43271090465853
Iteration: 7, Func. Count: 64, Neg. LLF: 129.16285941806044
Iteration: 8, Func. Count: 73, Neg. LLF: 127.02629714253902
Iteration: 9, Func. Count: 81, Neg. LLF: 126.57564054477183
Iteration: 10, Func. Count: 89, Neg. LLF: 126.36159451011214
Iteration: 11, Func. Count: 97, Neg. LLF: 126.34176562549392
Iteration: 12, Func. Count: 105, Neg. LLF: 126.29917427254149
Iteration: 13, Func. Count: 113, Neg. LLF: 126.2955252259802
Iteration: 14, Func. Count: 121, Neg. LLF: 126.29498058254538
Iteration: 15, Func. Count: 129, Neg. LLF: 128.74510659017903
Iteration: 16, Func. Count: 140, Neg. LLF: 126.29750508125863
Iteration: 17, Func. Count: 150, Neg. LLF: 126.29507035838446
Iteration: 18, Func. Count: 160, Neg. LLF: 126.2949934150282
Iteration: 19, Func. Count: 167, Neg. LLF: 126.29499336516152
Optimization terminated successfully (Exit mode 0)
Current function value: 126.2949934150282
Iterations: 20
Function evaluations: 167
Gradient evaluations: 19
Iteration: 1, Func. Count: 10, Neg. LLF: 62820207.96250247
Iteration: 2, Func. Count: 20, Neg. LLF: 236.78837234712213
Iteration: 3, Func. Count: 31, Neg. LLF: 162.4582758919132
Iteration: 4, Func. Count: 41, Neg. LLF: 136.58901695406786
Iteration: 5, Func. Count: 51, Neg. LLF: 135.31767343554023
Iteration: 6, Func. Count: 61, Neg. LLF: 131.59034810088804
Iteration: 7, Func. Count: 71, Neg. LLF: 131.78786376141662
Iteration: 8, Func. Count: 81, Neg. LLF: 134.6199269190876
Iteration: 9, Func. Count: 91, Neg. LLF: 128.11399966250215
Iteration: 10, Func. Count: 100, Neg. LLF: 126.32825440394778
Iteration: 11, Func. Count: 109, Neg. LLF: 126.1482347216539
Iteration: 12, Func. Count: 118, Neg. LLF: 126.06068779101176
Iteration: 13, Func. Count: 127, Neg. LLF: 125.97941037880295
Iteration: 14, Func. Count: 136, Neg. LLF: 15206786.888094557
Iteration: 15, Func. Count: 147, Neg. LLF: 11408844.892146576
Iteration: 16, Func. Count: 158, Neg. LLF: 155.78817460087473
Iteration: 17, Func. Count: 169, Neg. LLF: 126.25701362492283
Iteration: 18, Func. Count: 179, Neg. LLF: 126.15206603754159
Iteration: 19, Func. Count: 189, Neg. LLF: 126.08131551208359
Iteration: 20, Func. Count: 198, Neg. LLF: 126.08120619854735
Iteration: 21, Func. Count: 207, Neg. LLF: 126.08120457151232
Iteration: 22, Func. Count: 216, Neg. LLF: 126.08120343588398
Iteration: 23, Func. Count: 224, Neg. LLF: 126.08120343595708
Optimization terminated successfully (Exit mode 0)
Current function value: 126.08120343588398
Iterations: 24
Function evaluations: 224
Gradient evaluations: 23
Iteration: 1, Func. Count: 11, Neg. LLF: 51105895.700509325
Iteration: 2, Func. Count: 22, Neg. LLF: 371.29305888428763
Iteration: 3, Func. Count: 34, Neg. LLF: 850.9971960801752
Iteration: 4, Func. Count: 45, Neg. LLF: 134.1020117989578
Iteration: 5, Func. Count: 56, Neg. LLF: 142.35379607575987
Iteration: 6, Func. Count: 67, Neg. LLF: 132.89461478172709
Iteration: 7, Func. Count: 78, Neg. LLF: 132.5170076339468
Iteration: 8, Func. Count: 89, Neg. LLF: 129.1222296672293
Iteration: 9, Func. Count: 99, Neg. LLF: 129.74233926935221
Iteration: 10, Func. Count: 110, Neg. LLF: 143.13832257104522
Iteration: 11, Func. Count: 121, Neg. LLF: 148.45116951248846
Iteration: 12, Func. Count: 132, Neg. LLF: 143.96297909696403
Iteration: 13, Func. Count: 143, Neg. LLF: 143.7920468396018
Iteration: 14, Func. Count: 154, Neg. LLF: 129.07698425088958
Iteration: 15, Func. Count: 165, Neg. LLF: 130.93143381799084
Iteration: 16, Func. Count: 176, Neg. LLF: 128.46217324183482
Iteration: 17, Func. Count: 187, Neg. LLF: 128.46432980341822
Iteration: 18, Func. Count: 198, Neg. LLF: 127.95792562284687
Iteration: 19, Func. Count: 208, Neg. LLF: 127.65501052215829
Iteration: 20, Func. Count: 218, Neg. LLF: 127.06305359924555
Iteration: 21, Func. Count: 228, Neg. LLF: 126.71391638819696
Iteration: 22, Func. Count: 238, Neg. LLF: 126.55767744924408
Iteration: 23, Func. Count: 248, Neg. LLF: 126.36341467983473
Iteration: 24, Func. Count: 258, Neg. LLF: 126.31434690494031
Iteration: 25, Func. Count: 268, Neg. LLF: 126.29696700927693
Iteration: 26, Func. Count: 278, Neg. LLF: 126.29518308663432
Iteration: 27, Func. Count: 288, Neg. LLF: 126.29500180685598
Iteration: 28, Func. Count: 298, Neg. LLF: 126.29499576057714
Iteration: 29, Func. Count: 308, Neg. LLF: 126.29498825917358
Iteration: 30, Func. Count: 318, Neg. LLF: 126.29499310602768
Optimization terminated successfully (Exit mode 0)
Current function value: 126.29498826443577
Iterations: 30
Function evaluations: 328
Gradient evaluations: 30
Iteration: 1, Func. Count: 8, Neg. LLF: 153.22283754532606
Iteration: 2, Func. Count: 15, Neg. LLF: 150.51568398388926
Iteration: 3, Func. Count: 22, Neg. LLF: 163.87410137311272
Iteration: 4, Func. Count: 34, Neg. LLF: 335.837677322895
Iteration: 5, Func. Count: 42, Neg. LLF: 143.25669722344512
Iteration: 6, Func. Count: 49, Neg. LLF: 142.68377775694856
Iteration: 7, Func. Count: 56, Neg. LLF: 140.45062113403384
Iteration: 8, Func. Count: 63, Neg. LLF: 480.452624309604
Iteration: 9, Func. Count: 72, Neg. LLF: 173.19013593403076
Iteration: 10, Func. Count: 82, Neg. LLF: 4262.694237482053
Iteration: 11, Func. Count: 90, Neg. LLF: 954.0842826848956
Iteration: 12, Func. Count: 98, Neg. LLF: 1555.5379112173696
Iteration: 13, Func. Count: 106, Neg. LLF: 1531.7800213874552
Iteration: 14, Func. Count: 114, Neg. LLF: 194.94976455961395
Iteration: 15, Func. Count: 122, Neg. LLF: 146.36270900482717
Iteration: 16, Func. Count: 130, Neg. LLF: 283.3050550657757
Iteration: 17, Func. Count: 138, Neg. LLF: 138.7302456561005
Iteration: 18, Func. Count: 146, Neg. LLF: 136.83172406121741
Iteration: 19, Func. Count: 153, Neg. LLF: 136.80113860235772
Iteration: 20, Func. Count: 160, Neg. LLF: 136.79599968415454
Iteration: 21, Func. Count: 167, Neg. LLF: 136.7920247236749
Iteration: 22, Func. Count: 174, Neg. LLF: 136.79185486604112
Iteration: 23, Func. Count: 181, Neg. LLF: 136.79180615117966
Iteration: 24, Func. Count: 188, Neg. LLF: 136.79180028525855
Iteration: 25, Func. Count: 195, Neg. LLF: 136.79179961058978
Optimization terminated successfully (Exit mode 0)
Current function value: 136.79179961058978
Iterations: 25
Function evaluations: 195
Gradient evaluations: 25
Iteration: 1, Func. Count: 9, Neg. LLF: 61282901.44183484
Iteration: 2, Func. Count: 18, Neg. LLF: 405.2332345563701
Iteration: 3, Func. Count: 30, Neg. LLF: 138.53559224392288
Iteration: 4, Func. Count: 39, Neg. LLF: 14480081.939353015
Iteration: 5, Func. Count: 50, Neg. LLF: 127.50292035823624
Iteration: 6, Func. Count: 58, Neg. LLF: 127.78217255489747
Iteration: 7, Func. Count: 67, Neg. LLF: 154.7060445039209
Iteration: 8, Func. Count: 78, Neg. LLF: 124.33655968524847
Iteration: 9, Func. Count: 86, Neg. LLF: 124.25398581171329
Iteration: 10, Func. Count: 94, Neg. LLF: 124.23428611544479
Iteration: 11, Func. Count: 102, Neg. LLF: 124.23255308556419
Iteration: 12, Func. Count: 110, Neg. LLF: 124.23066077917734
Iteration: 13, Func. Count: 118, Neg. LLF: 124.23065613811819
Iteration: 14, Func. Count: 125, Neg. LLF: 124.23065587876009
Optimization terminated successfully (Exit mode 0)
Current function value: 124.23065613811819
Iterations: 14
Function evaluations: 125
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 57942376.95980309
Iteration: 2, Func. Count: 20, Neg. LLF: 434.84444597261097
Iteration: 3, Func. Count: 31, Neg. LLF: 125.02390331136627
Iteration: 4, Func. Count: 40, Neg. LLF: 124.91983135901529
Iteration: 5, Func. Count: 50, Neg. LLF: 166.8823106160681
Iteration: 6, Func. Count: 62, Neg. LLF: 122.95893501370549
Iteration: 7, Func. Count: 71, Neg. LLF: 122.91811313308699
Iteration: 8, Func. Count: 80, Neg. LLF: 122.91621883115742
Iteration: 9, Func. Count: 89, Neg. LLF: 122.91607091931861
Iteration: 10, Func. Count: 98, Neg. LLF: 122.9160632549004
Iteration: 11, Func. Count: 106, Neg. LLF: 122.91606308994342
Optimization terminated successfully (Exit mode 0)
Current function value: 122.9160632549004
Iterations: 11
Function evaluations: 106
Gradient evaluations: 11
Iteration: 1, Func. Count: 11, Neg. LLF: 63319136.50783172
Iteration: 2, Func. Count: 22, Neg. LLF: 233.28275149913011
Iteration: 3, Func. Count: 34, Neg. LLF: 479.1292795824505
Iteration: 4, Func. Count: 45, Neg. LLF: 128.71738326810242
Iteration: 5, Func. Count: 55, Neg. LLF: 142.36530658840485
Iteration: 6, Func. Count: 67, Neg. LLF: 136.52293802627096
Iteration: 7, Func. Count: 78, Neg. LLF: 189.7843763179731
Iteration: 8, Func. Count: 90, Neg. LLF: 125.53265019252605
Iteration: 9, Func. Count: 100, Neg. LLF: 124.37971881597873
Iteration: 10, Func. Count: 110, Neg. LLF: 123.9962249330392
Iteration: 11, Func. Count: 120, Neg. LLF: 123.06942997442493
Iteration: 12, Func. Count: 130, Neg. LLF: 122.95054570294455
Iteration: 13, Func. Count: 140, Neg. LLF: 122.91762919190688
Iteration: 14, Func. Count: 150, Neg. LLF: 122.91609519771328
Iteration: 15, Func. Count: 160, Neg. LLF: 122.91606321226345
Iteration: 16, Func. Count: 169, Neg. LLF: 122.9160630838566
Optimization terminated successfully (Exit mode 0)
Current function value: 122.91606321226345
Iterations: 16
Function evaluations: 169
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 51366534.828147545
Iteration: 2, Func. Count: 24, Neg. LLF: 376.6170974599445
Iteration: 3, Func. Count: 37, Neg. LLF: 1782481.3179726512
Iteration: 4, Func. Count: 49, Neg. LLF: 122.59660676314797
Iteration: 5, Func. Count: 60, Neg. LLF: 165.29707412060228
Iteration: 6, Func. Count: 74, Neg. LLF: 121.31011656050511
Iteration: 7, Func. Count: 85, Neg. LLF: 119.6597867287044
Iteration: 8, Func. Count: 96, Neg. LLF: 119.53944235128037
Iteration: 9, Func. Count: 107, Neg. LLF: 119.46340009089307
Iteration: 10, Func. Count: 118, Neg. LLF: 119.45378108392822
Iteration: 11, Func. Count: 129, Neg. LLF: 119.44983206086187
Iteration: 12, Func. Count: 140, Neg. LLF: 119.44952495532482
Iteration: 13, Func. Count: 151, Neg. LLF: 119.44950753109927
Iteration: 14, Func. Count: 162, Neg. LLF: 119.44950674896066
Optimization terminated successfully (Exit mode 0)
Current function value: 119.44950674896066
Iterations: 14
Function evaluations: 162
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 151.0875414830328
Iteration: 2, Func. Count: 17, Neg. LLF: 157.04443771182378
Iteration: 3, Func. Count: 26, Neg. LLF: 144.7590784320367
Iteration: 4, Func. Count: 35, Neg. LLF: 170.8927655598839
Iteration: 5, Func. Count: 46, Neg. LLF: 142.87701728317379
Iteration: 6, Func. Count: 54, Neg. LLF: 9272.26295459641
Iteration: 7, Func. Count: 63, Neg. LLF: 3709.217838868918
Iteration: 8, Func. Count: 72, Neg. LLF: 1659.8637205480907
Iteration: 9, Func. Count: 81, Neg. LLF: 233.84037308337366
Iteration: 10, Func. Count: 90, Neg. LLF: 294.31297981412786
Iteration: 11, Func. Count: 99, Neg. LLF: 152.40958992764772
Iteration: 12, Func. Count: 111, Neg. LLF: 141.94587667357632
Iteration: 13, Func. Count: 120, Neg. LLF: 137.94053550748455
Iteration: 14, Func. Count: 128, Neg. LLF: 737.7178518701426
Iteration: 15, Func. Count: 137, Neg. LLF: 20314.148942511656
Iteration: 16, Func. Count: 146, Neg. LLF: 219.8781181679446
Iteration: 17, Func. Count: 155, Neg. LLF: 198.3631218431667
Iteration: 18, Func. Count: 164, Neg. LLF: 137.1444201176369
Iteration: 19, Func. Count: 173, Neg. LLF: 136.80164265002657
Iteration: 20, Func. Count: 181, Neg. LLF: 136.79355072700173
Iteration: 21, Func. Count: 189, Neg. LLF: 136.79195489153014
Iteration: 22, Func. Count: 197, Neg. LLF: 136.79180389726812
Iteration: 23, Func. Count: 205, Neg. LLF: 136.79179957381177
Iteration: 24, Func. Count: 212, Neg. LLF: 136.79179962721028
Optimization terminated successfully (Exit mode 0)
Current function value: 136.79179957381177
Iterations: 25
Function evaluations: 212
Gradient evaluations: 24
Iteration: 1, Func. Count: 10, Neg. LLF: 63601635.79641568
Iteration: 2, Func. Count: 20, Neg. LLF: 419.95983056312826
Iteration: 3, Func. Count: 33, Neg. LLF: 182.79000282365544
Iteration: 4, Func. Count: 43, Neg. LLF: 2352.936772418962
Iteration: 5, Func. Count: 54, Neg. LLF: 128.4635412786069
Iteration: 6, Func. Count: 63, Neg. LLF: 129.01158521916338
Iteration: 7, Func. Count: 73, Neg. LLF: 146.65821061090855
Iteration: 8, Func. Count: 85, Neg. LLF: 124.34470335591851
Iteration: 9, Func. Count: 94, Neg. LLF: 124.78084361461204
Iteration: 10, Func. Count: 104, Neg. LLF: 124.19854297774987
Iteration: 11, Func. Count: 113, Neg. LLF: 124.18954718390208
Iteration: 12, Func. Count: 122, Neg. LLF: 124.18521867589762
Iteration: 13, Func. Count: 131, Neg. LLF: 124.18372388556239
Iteration: 14, Func. Count: 140, Neg. LLF: 124.18365980599786
Iteration: 15, Func. Count: 149, Neg. LLF: 124.1836587563633
Iteration: 16, Func. Count: 157, Neg. LLF: 124.18365849201132
Optimization terminated successfully (Exit mode 0)
Current function value: 124.1836587563633
Iterations: 16
Function evaluations: 157
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 59907874.43764452
Iteration: 2, Func. Count: 22, Neg. LLF: 397.1206327192223
Iteration: 3, Func. Count: 34, Neg. LLF: 128.21109948890893
Iteration: 4, Func. Count: 44, Neg. LLF: 153.57753775178162
Iteration: 5, Func. Count: 56, Neg. LLF: 228.90025818797645
Iteration: 6, Func. Count: 67, Neg. LLF: 254.15456391308425
Iteration: 7, Func. Count: 79, Neg. LLF: 125.6998370801834
Iteration: 8, Func. Count: 90, Neg. LLF: 123.41228573800198
Iteration: 9, Func. Count: 100, Neg. LLF: 124.48714684130776
Iteration: 10, Func. Count: 111, Neg. LLF: 122.99193653623004
Iteration: 11, Func. Count: 121, Neg. LLF: 122.92695885123597
Iteration: 12, Func. Count: 131, Neg. LLF: 122.91774014994053
Iteration: 13, Func. Count: 141, Neg. LLF: 122.91608790099619
Iteration: 14, Func. Count: 151, Neg. LLF: 122.9160632214104
Iteration: 15, Func. Count: 160, Neg. LLF: 122.9160630564314
Optimization terminated successfully (Exit mode 0)
Current function value: 122.9160632214104
Iterations: 15
Function evaluations: 160
Gradient evaluations: 15
Iteration: 1, Func. Count: 12, Neg. LLF: 65478231.247258194
Iteration: 2, Func. Count: 24, Neg. LLF: 220.52313071800984
Iteration: 3, Func. Count: 37, Neg. LLF: 338094.6226643789
Iteration: 4, Func. Count: 49, Neg. LLF: 134.52067410399422
Iteration: 5, Func. Count: 61, Neg. LLF: 131.53037381104886
Iteration: 6, Func. Count: 73, Neg. LLF: 132.9236198101066
Iteration: 7, Func. Count: 86, Neg. LLF: 131.79745078649643
Iteration: 8, Func. Count: 98, Neg. LLF: 123.08199798026277
Iteration: 9, Func. Count: 109, Neg. LLF: 122.63312923254455
Iteration: 10, Func. Count: 120, Neg. LLF: 122.59851292596893
Iteration: 11, Func. Count: 131, Neg. LLF: 122.57906397821635
Iteration: 12, Func. Count: 142, Neg. LLF: 122.57736142341884
Iteration: 13, Func. Count: 153, Neg. LLF: 122.57718971364447
Iteration: 14, Func. Count: 164, Neg. LLF: 122.57717820209247
Iteration: 15, Func. Count: 174, Neg. LLF: 122.57717810814701
Optimization terminated successfully (Exit mode 0)
Current function value: 122.57717820209247
Iterations: 15
Function evaluations: 174
Gradient evaluations: 15
Iteration: 1, Func. Count: 13, Neg. LLF: 52730597.83504067
Iteration: 2, Func. Count: 26, Neg. LLF: 320.72130578072466
Iteration: 3, Func. Count: 40, Neg. LLF: 2002866.223508124
Iteration: 4, Func. Count: 53, Neg. LLF: 128.52898831313112
Iteration: 5, Func. Count: 65, Neg. LLF: 150.5409820473404
Iteration: 6, Func. Count: 79, Neg. LLF: 190.2032212699802
Iteration: 7, Func. Count: 92, Neg. LLF: 189.55190115162156
Iteration: 8, Func. Count: 106, Neg. LLF: 150.0455490173548
Iteration: 9, Func. Count: 119, Neg. LLF: 120.33596889407124
Iteration: 10, Func. Count: 131, Neg. LLF: 119.5242562890548
Iteration: 11, Func. Count: 143, Neg. LLF: 119.46038893234142
Iteration: 12, Func. Count: 155, Neg. LLF: 119.45528404952758
Iteration: 13, Func. Count: 167, Neg. LLF: 119.44958370073195
Iteration: 14, Func. Count: 179, Neg. LLF: 119.44951165848128
Iteration: 15, Func. Count: 191, Neg. LLF: 119.44950746645034
Iteration: 16, Func. Count: 203, Neg. LLF: 119.45024785988319
Optimization terminated successfully (Exit mode 0)
Current function value: 119.44950725185349
Iterations: 17
Function evaluations: 205
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 149.9925332944916
Iteration: 2, Func. Count: 19, Neg. LLF: 160.8006531515881
Iteration: 3, Func. Count: 29, Neg. LLF: 143.9159558428571
Iteration: 4, Func. Count: 38, Neg. LLF: 194.7905431375472
Iteration: 5, Func. Count: 50, Neg. LLF: 142.87358855135858
Iteration: 6, Func. Count: 59, Neg. LLF: 142.10542849601745
Iteration: 7, Func. Count: 68, Neg. LLF: 714.4334674437007
Iteration: 8, Func. Count: 78, Neg. LLF: 140.0869279103282
Iteration: 9, Func. Count: 87, Neg. LLF: 141.07881913154762
Iteration: 10, Func. Count: 98, Neg. LLF: 137.05281901074162
Iteration: 11, Func. Count: 107, Neg. LLF: 136.94352392843547
Iteration: 12, Func. Count: 116, Neg. LLF: 313.66393222616097
Iteration: 13, Func. Count: 126, Neg. LLF: 137.52038123739942
Iteration: 14, Func. Count: 136, Neg. LLF: 137.47234297031608
Iteration: 15, Func. Count: 146, Neg. LLF: 137.06549107771605
Iteration: 16, Func. Count: 156, Neg. LLF: 136.80083014534864
Iteration: 17, Func. Count: 165, Neg. LLF: 136.7970775227911
Iteration: 18, Func. Count: 174, Neg. LLF: 136.79327564289974
Iteration: 19, Func. Count: 183, Neg. LLF: 136.79190709501535
Iteration: 20, Func. Count: 192, Neg. LLF: 136.79184294294006
Iteration: 21, Func. Count: 201, Neg. LLF: 136.79180205122762
Iteration: 22, Func. Count: 210, Neg. LLF: 136.79179962322112
Iteration: 23, Func. Count: 218, Neg. LLF: 136.791799530986
Optimization terminated successfully (Exit mode 0)
Current function value: 136.79179962322112
Iterations: 23
Function evaluations: 218
Gradient evaluations: 23
Iteration: 1, Func. Count: 11, Neg. LLF: 64829652.84348207
Iteration: 2, Func. Count: 22, Neg. LLF: 420.0575124405703
Iteration: 3, Func. Count: 36, Neg. LLF: 9946898.797146128
Iteration: 4, Func. Count: 47, Neg. LLF: 147.92477373302697
Iteration: 5, Func. Count: 58, Neg. LLF: 160.6957441307946
Iteration: 6, Func. Count: 70, Neg. LLF: 125.9515763187064
Iteration: 7, Func. Count: 80, Neg. LLF: 124.11509673593764
Iteration: 8, Func. Count: 91, Neg. LLF: 123.12050263594773
Iteration: 9, Func. Count: 102, Neg. LLF: 122.64256983882174
Iteration: 10, Func. Count: 112, Neg. LLF: 122.62409342111573
Iteration: 11, Func. Count: 122, Neg. LLF: 122.60328251044811
Iteration: 12, Func. Count: 132, Neg. LLF: 122.60240853760943
Iteration: 13, Func. Count: 142, Neg. LLF: 122.60237708148333
Iteration: 14, Func. Count: 151, Neg. LLF: 122.6023767786387
Optimization terminated successfully (Exit mode 0)
Current function value: 122.60237708148333
Iterations: 14
Function evaluations: 151
Gradient evaluations: 14
Iteration: 1, Func. Count: 12, Neg. LLF: 61189979.819999315
Iteration: 2, Func. Count: 24, Neg. LLF: 376.25720943485567
Iteration: 3, Func. Count: 37, Neg. LLF: 15755691.725957511
Iteration: 4, Func. Count: 49, Neg. LLF: 130.76983176294203
Iteration: 5, Func. Count: 61, Neg. LLF: 142.694933355673
Iteration: 6, Func. Count: 74, Neg. LLF: 123.01382065957903
Iteration: 7, Func. Count: 85, Neg. LLF: 123.38579994309632
Iteration: 8, Func. Count: 97, Neg. LLF: 125.10129468646093
Iteration: 9, Func. Count: 109, Neg. LLF: 122.0676222375126
Iteration: 10, Func. Count: 120, Neg. LLF: 122.09061140409707
Iteration: 11, Func. Count: 132, Neg. LLF: 122.05455580152262
Iteration: 12, Func. Count: 143, Neg. LLF: 122.05359274108018
Iteration: 13, Func. Count: 154, Neg. LLF: 122.05348755457878
Iteration: 14, Func. Count: 165, Neg. LLF: 122.05347501585385
Iteration: 15, Func. Count: 175, Neg. LLF: 122.05347483386015
Optimization terminated successfully (Exit mode 0)
Current function value: 122.05347501585385
Iterations: 15
Function evaluations: 175
Gradient evaluations: 15
Iteration: 1, Func. Count: 13, Neg. LLF: 66960970.66927381
Iteration: 2, Func. Count: 26, Neg. LLF: 212.7283273678987
Iteration: 3, Func. Count: 40, Neg. LLF: 16932751.026897956
Iteration: 4, Func. Count: 53, Neg. LLF: 130.09361884915455
Iteration: 5, Func. Count: 65, Neg. LLF: 134.75940904349278
Iteration: 6, Func. Count: 78, Neg. LLF: 172.80170538641372
Iteration: 7, Func. Count: 92, Neg. LLF: 756.7138413666912
Iteration: 8, Func. Count: 106, Neg. LLF: 140.19096946097577
Iteration: 9, Func. Count: 119, Neg. LLF: 124.04577988672364
Iteration: 10, Func. Count: 132, Neg. LLF: 124.8758380193999
Iteration: 11, Func. Count: 145, Neg. LLF: 123.08856801170826
Iteration: 12, Func. Count: 157, Neg. LLF: 123.07805372692897
Iteration: 13, Func. Count: 169, Neg. LLF: 123.06190346646896
Iteration: 14, Func. Count: 181, Neg. LLF: 123.0102709903311
Iteration: 15, Func. Count: 193, Neg. LLF: 122.78536382232996
Iteration: 16, Func. Count: 205, Neg. LLF: 122.74019574473192
Iteration: 17, Func. Count: 217, Neg. LLF: 122.59208165782685
Iteration: 18, Func. Count: 229, Neg. LLF: 122.58127473460209
Iteration: 19, Func. Count: 241, Neg. LLF: 122.57787892685809
Iteration: 20, Func. Count: 253, Neg. LLF: 122.5771985847362
Iteration: 21, Func. Count: 265, Neg. LLF: 122.57718055283003
Iteration: 22, Func. Count: 277, Neg. LLF: 122.57717796013367
Iteration: 23, Func. Count: 288, Neg. LLF: 122.57717786619736
Optimization terminated successfully (Exit mode 0)
Current function value: 122.57717796013367
Iterations: 23
Function evaluations: 288
Gradient evaluations: 23
Iteration: 1, Func. Count: 14, Neg. LLF: 53621928.45541589
Iteration: 2, Func. Count: 28, Neg. LLF: 304.80752311926886
Iteration: 3, Func. Count: 43, Neg. LLF: 3058238.743966853
Iteration: 4, Func. Count: 57, Neg. LLF: 132.50287428908888
Iteration: 5, Func. Count: 71, Neg. LLF: 145.92014135677297
Iteration: 6, Func. Count: 86, Neg. LLF: 127.36886376842344
Iteration: 7, Func. Count: 100, Neg. LLF: 128.99045649770162
Iteration: 8, Func. Count: 114, Neg. LLF: 127.26951012307053
Iteration: 9, Func. Count: 128, Neg. LLF: 123.56047828039304
Iteration: 10, Func. Count: 141, Neg. LLF: 123.45474659445657
Iteration: 11, Func. Count: 155, Neg. LLF: 122.35355590495593
Iteration: 12, Func. Count: 168, Neg. LLF: 122.1830753411699
Iteration: 13, Func. Count: 181, Neg. LLF: 122.05802145453065
Iteration: 14, Func. Count: 194, Neg. LLF: 122.05516454995607
Iteration: 15, Func. Count: 207, Neg. LLF: 122.05390830848015
Iteration: 16, Func. Count: 220, Neg. LLF: 122.05350680941912
Iteration: 17, Func. Count: 233, Neg. LLF: 122.05347596250766
Iteration: 18, Func. Count: 246, Neg. LLF: 122.22732385414129
Optimization terminated successfully (Exit mode 0)
Current function value: 122.0534750616049
Iterations: 19
Function evaluations: 249
Gradient evaluations: 18
Iteration: 1, Func. Count: 7, Neg. LLF: 152.5235686450323
Iteration: 2, Func. Count: 13, Neg. LLF: 154.22660029405824
Iteration: 3, Func. Count: 22, Neg. LLF: 155.5788774907594
Iteration: 4, Func. Count: 29, Neg. LLF: 151.78772247341874
Iteration: 5, Func. Count: 35, Neg. LLF: 151.09527141430524
Iteration: 6, Func. Count: 41, Neg. LLF: 151.9929488488314
Iteration: 7, Func. Count: 48, Neg. LLF: 151.38372433829872
Iteration: 8, Func. Count: 55, Neg. LLF: 150.17846503642298
Iteration: 9, Func. Count: 61, Neg. LLF: 150.12982777778703
Iteration: 10, Func. Count: 67, Neg. LLF: 150.1240890198531
Iteration: 11, Func. Count: 73, Neg. LLF: 150.12393196204343
Iteration: 12, Func. Count: 79, Neg. LLF: 150.12393151988928
Optimization terminated successfully (Exit mode 0)
Current function value: 150.12393151988928
Iterations: 12
Function evaluations: 79
Gradient evaluations: 12
Iteration: 1, Func. Count: 8, Neg. LLF: 67240246.13901116
Iteration: 2, Func. Count: 16, Neg. LLF: 326.17941958162646
Iteration: 3, Func. Count: 25, Neg. LLF: 515.5501798523574
Iteration: 4, Func. Count: 33, Neg. LLF: 139.58081784658373
Iteration: 5, Func. Count: 41, Neg. LLF: 159.1501160770582
Iteration: 6, Func. Count: 49, Neg. LLF: 129.79474256182246
Iteration: 7, Func. Count: 56, Neg. LLF: 136.9422772947782
Iteration: 8, Func. Count: 64, Neg. LLF: 129.6591138124192
Iteration: 9, Func. Count: 72, Neg. LLF: 129.30974138487147
Iteration: 10, Func. Count: 79, Neg. LLF: 129.2995500750441
Iteration: 11, Func. Count: 86, Neg. LLF: 129.29898003652733
Iteration: 12, Func. Count: 93, Neg. LLF: 129.29895659427117
Iteration: 13, Func. Count: 100, Neg. LLF: 129.2989551498874
Iteration: 14, Func. Count: 106, Neg. LLF: 129.29895502761133
Optimization terminated successfully (Exit mode 0)
Current function value: 129.2989551498874
Iterations: 14
Function evaluations: 106
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 43097673.20778156
Iteration: 2, Func. Count: 18, Neg. LLF: 115818995841.05957
Iteration: 3, Func. Count: 30, Neg. LLF: 161.67163682838668
Iteration: 4, Func. Count: 39, Neg. LLF: 321.70375914480155
Iteration: 5, Func. Count: 48, Neg. LLF: 129.00024375466631
Iteration: 6, Func. Count: 56, Neg. LLF: 148.08610975490708
Iteration: 7, Func. Count: 67, Neg. LLF: 128.59506460784826
Iteration: 8, Func. Count: 75, Neg. LLF: 128.5269638272711
Iteration: 9, Func. Count: 83, Neg. LLF: 128.4822965099933
Iteration: 10, Func. Count: 91, Neg. LLF: 128.475609949379
Iteration: 11, Func. Count: 99, Neg. LLF: 128.47518453980302
Iteration: 12, Func. Count: 107, Neg. LLF: 128.475022851839
Iteration: 13, Func. Count: 115, Neg. LLF: 130.12140074165583
Iteration: 14, Func. Count: 126, Neg. LLF: 128.57115415790204
Iteration: 15, Func. Count: 136, Neg. LLF: 128.47672202690742
Iteration: 16, Func. Count: 146, Neg. LLF: 128.4749574127885
Iteration: 17, Func. Count: 154, Neg. LLF: 128.4749611302731
Optimization terminated successfully (Exit mode 0)
Current function value: 128.47495659054817
Iterations: 18
Function evaluations: 155
Gradient evaluations: 17
Iteration: 1, Func. Count: 10, Neg. LLF: 28509196.698844135
Iteration: 2, Func. Count: 20, Neg. LLF: 1663689018.2260182
Iteration: 3, Func. Count: 31, Neg. LLF: 1018227.5064872368
Iteration: 4, Func. Count: 41, Neg. LLF: 452.1037835348468
Iteration: 5, Func. Count: 51, Neg. LLF: 298.3698758070605
Iteration: 6, Func. Count: 61, Neg. LLF: 146.50705631671977
Iteration: 7, Func. Count: 71, Neg. LLF: 288.89478199903215
Iteration: 8, Func. Count: 81, Neg. LLF: 137.810428916402
Iteration: 9, Func. Count: 91, Neg. LLF: 132.9104306784386
Iteration: 10, Func. Count: 101, Neg. LLF: 141.06117721292708
Iteration: 11, Func. Count: 111, Neg. LLF: 130.2655844900131
Iteration: 12, Func. Count: 120, Neg. LLF: 131.20648569244244
Iteration: 13, Func. Count: 130, Neg. LLF: 126.67067606115165
Iteration: 14, Func. Count: 139, Neg. LLF: 126.30078080360892
Iteration: 15, Func. Count: 148, Neg. LLF: 126.20977896049338
Iteration: 16, Func. Count: 157, Neg. LLF: 126.2048259035389
Iteration: 17, Func. Count: 166, Neg. LLF: 126.20376770976056
Iteration: 18, Func. Count: 175, Neg. LLF: 126.20366530415028
Iteration: 19, Func. Count: 184, Neg. LLF: 126.2036384622899
Iteration: 20, Func. Count: 193, Neg. LLF: 126.20363448472371
Iteration: 21, Func. Count: 201, Neg. LLF: 126.2036344850063
Optimization terminated successfully (Exit mode 0)
Current function value: 126.20363448472371
Iterations: 21
Function evaluations: 201
Gradient evaluations: 21
Iteration: 1, Func. Count: 11, Neg. LLF: 20935029.850439187
Iteration: 2, Func. Count: 22, Neg. LLF: 628711082.3908399
Iteration: 3, Func. Count: 34, Neg. LLF: 1236668.2866566926
Iteration: 4, Func. Count: 45, Neg. LLF: 1112.3052894231087
Iteration: 5, Func. Count: 56, Neg. LLF: 654.7961533998252
Iteration: 6, Func. Count: 67, Neg. LLF: 134.55708202110753
Iteration: 7, Func. Count: 78, Neg. LLF: 134.70207755014695
Iteration: 8, Func. Count: 89, Neg. LLF: 131.04245372800983
Iteration: 9, Func. Count: 99, Neg. LLF: 128.70082803468213
Iteration: 10, Func. Count: 109, Neg. LLF: 136.6146239861601
Iteration: 11, Func. Count: 121, Neg. LLF: 127.24417803189297
Iteration: 12, Func. Count: 131, Neg. LLF: 127.01822475409278
Iteration: 13, Func. Count: 141, Neg. LLF: 126.98353279618259
Iteration: 14, Func. Count: 151, Neg. LLF: 126.95618236104869
Iteration: 15, Func. Count: 161, Neg. LLF: 126.9540745465575
Iteration: 16, Func. Count: 171, Neg. LLF: 126.9538244477326
Iteration: 17, Func. Count: 181, Neg. LLF: 126.953819060081
Iteration: 18, Func. Count: 191, Neg. LLF: 126.95381835649687
Optimization terminated successfully (Exit mode 0)
Current function value: 126.95381835649687
Iterations: 18
Function evaluations: 191
Gradient evaluations: 18
Iteration: 1, Func. Count: 8, Neg. LLF: 154.30945441509598
Iteration: 2, Func. Count: 15, Neg. LLF: 152.6961316836139
Iteration: 3, Func. Count: 22, Neg. LLF: 156.73650780655856
Iteration: 4, Func. Count: 34, Neg. LLF: 152.80445555247007
Iteration: 5, Func. Count: 42, Neg. LLF: 152.32510181024858
Iteration: 6, Func. Count: 49, Neg. LLF: 151.1237153061444
Iteration: 7, Func. Count: 56, Neg. LLF: 150.9647817927312
Iteration: 8, Func. Count: 63, Neg. LLF: 150.24431551558422
Iteration: 9, Func. Count: 70, Neg. LLF: 150.48558952561444
Iteration: 10, Func. Count: 78, Neg. LLF: 150.11664105964957
Iteration: 11, Func. Count: 85, Neg. LLF: 150.11493542557844
Iteration: 12, Func. Count: 92, Neg. LLF: 150.11488485141064
Iteration: 13, Func. Count: 98, Neg. LLF: 150.1148849098021
Optimization terminated successfully (Exit mode 0)
Current function value: 150.11488485141064
Iterations: 13
Function evaluations: 98
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 59294973.024876
Iteration: 2, Func. Count: 18, Neg. LLF: 368.71783374864685
Iteration: 3, Func. Count: 30, Neg. LLF: 130.2903761146563
Iteration: 4, Func. Count: 38, Neg. LLF: 186.33981052135675
Iteration: 5, Func. Count: 51, Neg. LLF: 130.50146810177176
Iteration: 6, Func. Count: 60, Neg. LLF: 126.37329976614754
Iteration: 7, Func. Count: 68, Neg. LLF: 126.32071475925575
Iteration: 8, Func. Count: 76, Neg. LLF: 126.30662202761519
Iteration: 9, Func. Count: 84, Neg. LLF: 126.30345214120703
Iteration: 10, Func. Count: 92, Neg. LLF: 126.29886521577322
Iteration: 11, Func. Count: 100, Neg. LLF: 126.29569589254399
Iteration: 12, Func. Count: 108, Neg. LLF: 126.29503846169202
Iteration: 13, Func. Count: 116, Neg. LLF: 126.29499413904051
Iteration: 14, Func. Count: 124, Neg. LLF: 126.29499379123027
Optimization terminated successfully (Exit mode 0)
Current function value: 126.29499379123027
Iterations: 14
Function evaluations: 124
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 57052905.92923355
Iteration: 2, Func. Count: 20, Neg. LLF: 505.1213926518444
Iteration: 3, Func. Count: 31, Neg. LLF: 162.83971744260094
Iteration: 4, Func. Count: 41, Neg. LLF: 135.63517298283716
Iteration: 5, Func. Count: 51, Neg. LLF: 131.1972419335181
Iteration: 6, Func. Count: 61, Neg. LLF: 129.5460733336153
Iteration: 7, Func. Count: 71, Neg. LLF: 169.431224095915
Iteration: 8, Func. Count: 81, Neg. LLF: 126.67812397725905
Iteration: 9, Func. Count: 90, Neg. LLF: 126.69142602716651
Iteration: 10, Func. Count: 100, Neg. LLF: 126.31411381901306
Iteration: 11, Func. Count: 109, Neg. LLF: 126.30070242894077
Iteration: 12, Func. Count: 118, Neg. LLF: 126.29524126496739
Iteration: 13, Func. Count: 127, Neg. LLF: 126.29523436682783
Iteration: 14, Func. Count: 137, Neg. LLF: 126.29498097019143
Iteration: 15, Func. Count: 146, Neg. LLF: 126.34748986726048
Iteration: 16, Func. Count: 158, Neg. LLF: 126.29747264724865
Iteration: 17, Func. Count: 170, Neg. LLF: 126.2949980763625
Iteration: 18, Func. Count: 180, Neg. LLF: 126.29499341489878
Iteration: 19, Func. Count: 188, Neg. LLF: 126.29499336503282
Optimization terminated successfully (Exit mode 0)
Current function value: 126.29499341489878
Iterations: 20
Function evaluations: 188
Gradient evaluations: 19
Iteration: 1, Func. Count: 11, Neg. LLF: 63415655.91483726
Iteration: 2, Func. Count: 22, Neg. LLF: 238.6518865743507
Iteration: 3, Func. Count: 34, Neg. LLF: 162.54507264334416
Iteration: 4, Func. Count: 45, Neg. LLF: 133.17603408203522
Iteration: 5, Func. Count: 55, Neg. LLF: 140.58004893501086
Iteration: 6, Func. Count: 66, Neg. LLF: 137.33941606356967
Iteration: 7, Func. Count: 77, Neg. LLF: 169.92792366452895
Iteration: 8, Func. Count: 88, Neg. LLF: 129.79270128517385
Iteration: 9, Func. Count: 99, Neg. LLF: 129.73546478221866
Iteration: 10, Func. Count: 110, Neg. LLF: 127.21461435593393
Iteration: 11, Func. Count: 120, Neg. LLF: 126.6199541549466
Iteration: 12, Func. Count: 130, Neg. LLF: 126.13797104861798
Iteration: 13, Func. Count: 140, Neg. LLF: 126.0888838571516
Iteration: 14, Func. Count: 150, Neg. LLF: 126.0821981997394
Iteration: 15, Func. Count: 160, Neg. LLF: 126.08174766104705
Iteration: 16, Func. Count: 170, Neg. LLF: 126.08133156220356
Iteration: 17, Func. Count: 180, Neg. LLF: 126.08123592985623
Iteration: 18, Func. Count: 190, Neg. LLF: 126.08118123898264
Iteration: 19, Func. Count: 200, Neg. LLF: 126.35297225657932
Iteration: 20, Func. Count: 213, Neg. LLF: 126.15582074033706
Iteration: 21, Func. Count: 226, Neg. LLF: 126.08130842431854
Iteration: 22, Func. Count: 238, Neg. LLF: 126.08122545080593
Iteration: 23, Func. Count: 250, Neg. LLF: 126.08120325224995
Iteration: 24, Func. Count: 259, Neg. LLF: 126.08120325225025
Optimization terminated successfully (Exit mode 0)
Current function value: 126.08120325224995
Iterations: 25
Function evaluations: 259
Gradient evaluations: 24
Iteration: 1, Func. Count: 12, Neg. LLF: 50972333.657119356
Iteration: 2, Func. Count: 24, Neg. LLF: 397.05668780584256
Iteration: 3, Func. Count: 37, Neg. LLF: 1407023.2815734935
Iteration: 4, Func. Count: 50, Neg. LLF: 138.49822850376606
Iteration: 5, Func. Count: 62, Neg. LLF: 134.79836268676814
Iteration: 6, Func. Count: 74, Neg. LLF: 129.99430478130608
Iteration: 7, Func. Count: 85, Neg. LLF: 164.45993970271505
Iteration: 8, Func. Count: 97, Neg. LLF: 165.2362020815943
Iteration: 9, Func. Count: 111, Neg. LLF: 127.2062525489137
Iteration: 10, Func. Count: 122, Neg. LLF: 126.5057755600427
Iteration: 11, Func. Count: 133, Neg. LLF: 126.41608376374187
Iteration: 12, Func. Count: 144, Neg. LLF: 126.29856085395414
Iteration: 13, Func. Count: 155, Neg. LLF: 126.29552219723449
Iteration: 14, Func. Count: 166, Neg. LLF: 126.29500284699968
Iteration: 15, Func. Count: 177, Neg. LLF: 126.29499372437186
Iteration: 16, Func. Count: 187, Neg. LLF: 126.29499380242608
Optimization terminated successfully (Exit mode 0)
Current function value: 126.29499372437186
Iterations: 16
Function evaluations: 187
Gradient evaluations: 16
Iteration: 1, Func. Count: 9, Neg. LLF: 147.33699850591336
Iteration: 2, Func. Count: 17, Neg. LLF: 160.65062792520533
Iteration: 3, Func. Count: 26, Neg. LLF: 151.4497931981852
Iteration: 4, Func. Count: 37, Neg. LLF: 171.24397520125774
Iteration: 5, Func. Count: 48, Neg. LLF: 147.8835700275155
Iteration: 6, Func. Count: 57, Neg. LLF: 142.53291011250388
Iteration: 7, Func. Count: 65, Neg. LLF: 142.95895402360122
Iteration: 8, Func. Count: 74, Neg. LLF: 325.69865504851623
Iteration: 9, Func. Count: 83, Neg. LLF: 240.73623561948213
Iteration: 10, Func. Count: 92, Neg. LLF: 1251.0548750558958
Iteration: 11, Func. Count: 101, Neg. LLF: 303.44541346253027
Iteration: 12, Func. Count: 110, Neg. LLF: 241.17938260726578
Iteration: 13, Func. Count: 119, Neg. LLF: 290.06798438279327
Iteration: 14, Func. Count: 128, Neg. LLF: 259.1223197402728
Iteration: 15, Func. Count: 137, Neg. LLF: 260.91762853202795
Iteration: 16, Func. Count: 146, Neg. LLF: 144.70432007580197
Iteration: 17, Func. Count: 155, Neg. LLF: 248.62207713042878
Iteration: 18, Func. Count: 164, Neg. LLF: 136.0344002332657
Iteration: 19, Func. Count: 173, Neg. LLF: 135.48576299155295
Iteration: 20, Func. Count: 182, Neg. LLF: 135.3392491326304
Iteration: 21, Func. Count: 191, Neg. LLF: 134.8852173561949
Iteration: 22, Func. Count: 200, Neg. LLF: 134.80379886433875
Iteration: 23, Func. Count: 208, Neg. LLF: 134.8034697589827
Iteration: 24, Func. Count: 216, Neg. LLF: 134.80335970977285
Iteration: 25, Func. Count: 224, Neg. LLF: 134.80319031129352
Iteration: 26, Func. Count: 232, Neg. LLF: 134.80309872062182
Iteration: 27, Func. Count: 240, Neg. LLF: 134.80301346290278
Iteration: 28, Func. Count: 248, Neg. LLF: 134.80299378204052
Iteration: 29, Func. Count: 256, Neg. LLF: 134.80299143168693
Iteration: 30, Func. Count: 263, Neg. LLF: 134.80299129158232
Optimization terminated successfully (Exit mode 0)
Current function value: 134.80299143168693
Iterations: 30
Function evaluations: 263
Gradient evaluations: 30
Iteration: 1, Func. Count: 10, Neg. LLF: 61219006.378148235
Iteration: 2, Func. Count: 20, Neg. LLF: 395.41933860587034
Iteration: 3, Func. Count: 33, Neg. LLF: 140.05121346102135
Iteration: 4, Func. Count: 43, Neg. LLF: 204.74202585363167
Iteration: 5, Func. Count: 55, Neg. LLF: 130.52876881051165
Iteration: 6, Func. Count: 65, Neg. LLF: 128.2406540526975
Iteration: 7, Func. Count: 75, Neg. LLF: 126.0904364516699
Iteration: 8, Func. Count: 85, Neg. LLF: 124.26603984395214
Iteration: 9, Func. Count: 94, Neg. LLF: 124.23850041975625
Iteration: 10, Func. Count: 103, Neg. LLF: 124.23095172157538
Iteration: 11, Func. Count: 112, Neg. LLF: 124.2307034455565
Iteration: 12, Func. Count: 121, Neg. LLF: 124.23065613682456
Iteration: 13, Func. Count: 129, Neg. LLF: 124.23065587757667
Optimization terminated successfully (Exit mode 0)
Current function value: 124.23065613682456
Iterations: 13
Function evaluations: 129
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 58009150.1234729
Iteration: 2, Func. Count: 22, Neg. LLF: 491.4795095120661
Iteration: 3, Func. Count: 34, Neg. LLF: 139.49493365871675
Iteration: 4, Func. Count: 45, Neg. LLF: 134.89567888187153
Iteration: 5, Func. Count: 56, Neg. LLF: 127.82849907992363
Iteration: 6, Func. Count: 67, Neg. LLF: 162.68231864328658
Iteration: 7, Func. Count: 78, Neg. LLF: 123.30979981460617
Iteration: 8, Func. Count: 88, Neg. LLF: 158.33787002988137
Iteration: 9, Func. Count: 100, Neg. LLF: 123.0218259835455
Iteration: 10, Func. Count: 110, Neg. LLF: 122.92293963907846
Iteration: 11, Func. Count: 120, Neg. LLF: 122.91628891752161
Iteration: 12, Func. Count: 130, Neg. LLF: 122.91606510304221
Iteration: 13, Func. Count: 140, Neg. LLF: 122.91606327569902
Iteration: 14, Func. Count: 149, Neg. LLF: 122.91606311076954
Optimization terminated successfully (Exit mode 0)
Current function value: 122.91606327569902
Iterations: 14
Function evaluations: 149
Gradient evaluations: 14
Iteration: 1, Func. Count: 12, Neg. LLF: 63961223.01016922
Iteration: 2, Func. Count: 24, Neg. LLF: 234.03656878183722
Iteration: 3, Func. Count: 37, Neg. LLF: 2573507.7670986196
Iteration: 4, Func. Count: 50, Neg. LLF: 133.04393673673994
Iteration: 5, Func. Count: 62, Neg. LLF: 129.79906520633807
Iteration: 6, Func. Count: 74, Neg. LLF: 125.71939790452439
Iteration: 7, Func. Count: 85, Neg. LLF: 125.64847527179487
Iteration: 8, Func. Count: 97, Neg. LLF: 133.71224618329938
Iteration: 9, Func. Count: 110, Neg. LLF: 129.83468105162936
Iteration: 10, Func. Count: 123, Neg. LLF: 124.18652010177897
Iteration: 11, Func. Count: 134, Neg. LLF: 124.17667085923715
Iteration: 12, Func. Count: 145, Neg. LLF: 124.17457137590311
Iteration: 13, Func. Count: 156, Neg. LLF: 124.17446453832355
Iteration: 14, Func. Count: 167, Neg. LLF: 124.17445792905573
Iteration: 15, Func. Count: 177, Neg. LLF: 124.17445773893239
Optimization terminated successfully (Exit mode 0)
Current function value: 124.17445792905573
Iterations: 15
Function evaluations: 177
Gradient evaluations: 15
Iteration: 1, Func. Count: 13, Neg. LLF: 51269665.63447184
Iteration: 2, Func. Count: 26, Neg. LLF: 405.312460368306
Iteration: 3, Func. Count: 40, Neg. LLF: 2303152.166613872
Iteration: 4, Func. Count: 53, Neg. LLF: 122.40530010341394
Iteration: 5, Func. Count: 65, Neg. LLF: 159.14181292491986
Iteration: 6, Func. Count: 80, Neg. LLF: 131.3129671998155
Iteration: 7, Func. Count: 94, Neg. LLF: 188.89645187989254
Iteration: 8, Func. Count: 108, Neg. LLF: 120.23360747920196
Iteration: 9, Func. Count: 120, Neg. LLF: 119.55937110415921
Iteration: 10, Func. Count: 132, Neg. LLF: 120.25206056165035
Iteration: 11, Func. Count: 145, Neg. LLF: 119.45490313826484
Iteration: 12, Func. Count: 157, Neg. LLF: 119.44967583854522
Iteration: 13, Func. Count: 169, Neg. LLF: 119.4495552289594
Iteration: 14, Func. Count: 181, Neg. LLF: 119.44951525152536
Iteration: 15, Func. Count: 193, Neg. LLF: 119.44950742957397
Iteration: 16, Func. Count: 205, Neg. LLF: 119.44950691087124
Optimization terminated successfully (Exit mode 0)
Current function value: 119.44950691087124
Iterations: 16
Function evaluations: 205
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 145.43037174507464
Iteration: 2, Func. Count: 19, Neg. LLF: 163.74268631100105
Iteration: 3, Func. Count: 29, Neg. LLF: 155.98362956179454
Iteration: 4, Func. Count: 42, Neg. LLF: 163.54225782010482
Iteration: 5, Func. Count: 54, Neg. LLF: 143.10582403266702
Iteration: 6, Func. Count: 63, Neg. LLF: 141.88351222522135
Iteration: 7, Func. Count: 72, Neg. LLF: 465.1588159398347
Iteration: 8, Func. Count: 82, Neg. LLF: 549.4647768647754
Iteration: 9, Func. Count: 92, Neg. LLF: 525.0607157268471
Iteration: 10, Func. Count: 102, Neg. LLF: 180.47259516586723
Iteration: 11, Func. Count: 112, Neg. LLF: 214.5767687006684
Iteration: 12, Func. Count: 125, Neg. LLF: 154.60017258864968
Iteration: 13, Func. Count: 135, Neg. LLF: 137.940265019939
Iteration: 14, Func. Count: 144, Neg. LLF: 83760.9970004574
Iteration: 15, Func. Count: 154, Neg. LLF: 4403.756050992543
Iteration: 16, Func. Count: 166, Neg. LLF: 10350.98346426283
Iteration: 17, Func. Count: 176, Neg. LLF: 3422.98963646072
Iteration: 18, Func. Count: 186, Neg. LLF: 1393.6594883088082
Iteration: 19, Func. Count: 196, Neg. LLF: 5671.153383526189
Iteration: 20, Func. Count: 206, Neg. LLF: 915.2157146723581
Iteration: 21, Func. Count: 216, Neg. LLF: 7064.823826720924
Iteration: 22, Func. Count: 226, Neg. LLF: 137.64817992017362
Iteration: 23, Func. Count: 236, Neg. LLF: 134.70376691741643
Iteration: 24, Func. Count: 246, Neg. LLF: 134.5414552521939
Iteration: 25, Func. Count: 255, Neg. LLF: 134.5399819632781
Iteration: 26, Func. Count: 264, Neg. LLF: 134.53972269086725
Iteration: 27, Func. Count: 273, Neg. LLF: 134.5396972225729
Iteration: 28, Func. Count: 281, Neg. LLF: 134.53969719760067
Optimization terminated successfully (Exit mode 0)
Current function value: 134.5396972225729
Iterations: 29
Function evaluations: 281
Gradient evaluations: 28
Iteration: 1, Func. Count: 11, Neg. LLF: 63498674.937105514
Iteration: 2, Func. Count: 22, Neg. LLF: 609.5104189808742
Iteration: 3, Func. Count: 36, Neg. LLF: 1689.5410293850628
Iteration: 4, Func. Count: 48, Neg. LLF: 155.43557799182295
Iteration: 5, Func. Count: 59, Neg. LLF: 144.520227525001
Iteration: 6, Func. Count: 70, Neg. LLF: 128.87588457116283
Iteration: 7, Func. Count: 81, Neg. LLF: 125.34717628260259
Iteration: 8, Func. Count: 91, Neg. LLF: 125.35295090610765
Iteration: 9, Func. Count: 102, Neg. LLF: 127.44127988918912
Iteration: 10, Func. Count: 113, Neg. LLF: 124.18590238915112
Iteration: 11, Func. Count: 123, Neg. LLF: 124.18459199673568
Iteration: 12, Func. Count: 133, Neg. LLF: 124.18384449670897
Iteration: 13, Func. Count: 143, Neg. LLF: 124.18370381765794
Iteration: 14, Func. Count: 153, Neg. LLF: 124.18365929023695
Iteration: 15, Func. Count: 163, Neg. LLF: 124.18365873784948
Optimization terminated successfully (Exit mode 0)
Current function value: 124.18365873784948
Iterations: 15
Function evaluations: 163
Gradient evaluations: 15
Iteration: 1, Func. Count: 12, Neg. LLF: 59866691.13255351
Iteration: 2, Func. Count: 24, Neg. LLF: 439.14864958291383
Iteration: 3, Func. Count: 37, Neg. LLF: 174.2874544407887
Iteration: 4, Func. Count: 49, Neg. LLF: 135.6567666259683
Iteration: 5, Func. Count: 61, Neg. LLF: 129.15027846433645
Iteration: 6, Func. Count: 73, Neg. LLF: 126.68235895003814
Iteration: 7, Func. Count: 85, Neg. LLF: 124.07716539773979
Iteration: 8, Func. Count: 96, Neg. LLF: 125.56010290332739
Iteration: 9, Func. Count: 108, Neg. LLF: 124.87182302209811
Iteration: 10, Func. Count: 120, Neg. LLF: 123.05676748630928
Iteration: 11, Func. Count: 131, Neg. LLF: 122.92003423847515
Iteration: 12, Func. Count: 142, Neg. LLF: 122.91675409035504
Iteration: 13, Func. Count: 153, Neg. LLF: 122.91611212209499
Iteration: 14, Func. Count: 164, Neg. LLF: 122.91606326923346
Iteration: 15, Func. Count: 174, Neg. LLF: 122.916063104249
Optimization terminated successfully (Exit mode 0)
Current function value: 122.91606326923346
Iterations: 15
Function evaluations: 174
Gradient evaluations: 15
Iteration: 1, Func. Count: 13, Neg. LLF: 66093673.94761104
Iteration: 2, Func. Count: 26, Neg. LLF: 220.0315511505491
Iteration: 3, Func. Count: 40, Neg. LLF: 3451330.8109916127
Iteration: 4, Func. Count: 54, Neg. LLF: 140.86080378955174
Iteration: 5, Func. Count: 67, Neg. LLF: 126.30229195785694
Iteration: 6, Func. Count: 79, Neg. LLF: 208.1285307292551
Iteration: 7, Func. Count: 94, Neg. LLF: 126.46983433516334
Iteration: 8, Func. Count: 107, Neg. LLF: 124.06327949737673
Iteration: 9, Func. Count: 120, Neg. LLF: 127.02714441982438
Iteration: 10, Func. Count: 133, Neg. LLF: 122.701691986737
Iteration: 11, Func. Count: 145, Neg. LLF: 122.63832235407637
Iteration: 12, Func. Count: 157, Neg. LLF: 122.59106230344015
Iteration: 13, Func. Count: 169, Neg. LLF: 122.58215503422635
Iteration: 14, Func. Count: 181, Neg. LLF: 122.57736464208568
Iteration: 15, Func. Count: 193, Neg. LLF: 122.5771976244187
Iteration: 16, Func. Count: 205, Neg. LLF: 122.57717934714185
Iteration: 17, Func. Count: 217, Neg. LLF: 122.57717791037672
Iteration: 18, Func. Count: 229, Neg. LLF: 122.60264807459001
Optimization terminated successfully (Exit mode 0)
Current function value: 122.57717784942368
Iterations: 19
Function evaluations: 232
Gradient evaluations: 18
Iteration: 1, Func. Count: 14, Neg. LLF: 52683121.061350584
Iteration: 2, Func. Count: 28, Neg. LLF: 338.0682032330055
Iteration: 3, Func. Count: 43, Neg. LLF: 2376015.9082152685
Iteration: 4, Func. Count: 57, Neg. LLF: 124.10702592293457
Iteration: 5, Func. Count: 70, Neg. LLF: 156.84989179654815
Iteration: 6, Func. Count: 86, Neg. LLF: 131.13585562563748
Iteration: 7, Func. Count: 100, Neg. LLF: 123.6099339590699
Iteration: 8, Func. Count: 114, Neg. LLF: 119.48616498985324
Iteration: 9, Func. Count: 127, Neg. LLF: 119.50491520640982
Iteration: 10, Func. Count: 141, Neg. LLF: 119.45387222580975
Iteration: 11, Func. Count: 154, Neg. LLF: 119.4504466956618
Iteration: 12, Func. Count: 167, Neg. LLF: 119.44967276467675
Iteration: 13, Func. Count: 180, Neg. LLF: 119.4495136135783
Iteration: 14, Func. Count: 193, Neg. LLF: 119.44950719079505
Iteration: 15, Func. Count: 205, Neg. LLF: 119.44950695478731
Optimization terminated successfully (Exit mode 0)
Current function value: 119.44950719079505
Iterations: 15
Function evaluations: 205
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 144.6587006157285
Iteration: 2, Func. Count: 21, Neg. LLF: 161.3032089849621
Iteration: 3, Func. Count: 32, Neg. LLF: 155.04700891698886
Iteration: 4, Func. Count: 46, Neg. LLF: 168.36641689854568
Iteration: 5, Func. Count: 59, Neg. LLF: 143.1283481708875
Iteration: 6, Func. Count: 69, Neg. LLF: 140.84280179133114
Iteration: 7, Func. Count: 79, Neg. LLF: 4668.914007862739
Iteration: 8, Func. Count: 90, Neg. LLF: 164809.366317132
Iteration: 9, Func. Count: 101, Neg. LLF: 1428.901732318209
Iteration: 10, Func. Count: 112, Neg. LLF: 3115.6960363246285
Iteration: 11, Func. Count: 123, Neg. LLF: 173159.38640283217
Iteration: 12, Func. Count: 134, Neg. LLF: 3246.4158082148488
Iteration: 13, Func. Count: 145, Neg. LLF: 19302.4330093557
Iteration: 14, Func. Count: 156, Neg. LLF: 17442.92315749516
Iteration: 15, Func. Count: 167, Neg. LLF: 1827.2846818242674
Iteration: 16, Func. Count: 178, Neg. LLF: 157.57200417916852
Iteration: 17, Func. Count: 189, Neg. LLF: 381.46593054173655
Iteration: 18, Func. Count: 200, Neg. LLF: 139.33398799278467
Iteration: 19, Func. Count: 211, Neg. LLF: 135.35209223934015
Iteration: 20, Func. Count: 222, Neg. LLF: 134.6019394516909
Iteration: 21, Func. Count: 233, Neg. LLF: 134.54560924522633
Iteration: 22, Func. Count: 243, Neg. LLF: 134.5432027285465
Iteration: 23, Func. Count: 253, Neg. LLF: 134.5422711404694
Iteration: 24, Func. Count: 263, Neg. LLF: 134.5410682336605
Iteration: 25, Func. Count: 273, Neg. LLF: 134.5398035880285
Iteration: 26, Func. Count: 283, Neg. LLF: 134.53971639519068
Iteration: 27, Func. Count: 293, Neg. LLF: 134.53970346100087
Iteration: 28, Func. Count: 303, Neg. LLF: 134.53969841194544
Iteration: 29, Func. Count: 313, Neg. LLF: 134.53969636801963
Iteration: 30, Func. Count: 322, Neg. LLF: 134.539696344679
Optimization terminated successfully (Exit mode 0)
Current function value: 134.53969636801963
Iterations: 30
Function evaluations: 322
Gradient evaluations: 30
Iteration: 1, Func. Count: 12, Neg. LLF: 64692572.82755026
Iteration: 2, Func. Count: 24, Neg. LLF: 608.296609690229
Iteration: 3, Func. Count: 39, Neg. LLF: 546367.7856745489
Iteration: 4, Func. Count: 51, Neg. LLF: 126.54585771027706
Iteration: 5, Func. Count: 62, Neg. LLF: 944.2987064709625
Iteration: 6, Func. Count: 75, Neg. LLF: 1013.050884326736
Iteration: 7, Func. Count: 88, Neg. LLF: 122.9334054790534
Iteration: 8, Func. Count: 99, Neg. LLF: 130.79498589487488
Iteration: 9, Func. Count: 111, Neg. LLF: 122.66691525724636
Iteration: 10, Func. Count: 122, Neg. LLF: 122.60858453517805
Iteration: 11, Func. Count: 133, Neg. LLF: 122.60349230925213
Iteration: 12, Func. Count: 144, Neg. LLF: 122.60238079513064
Iteration: 13, Func. Count: 155, Neg. LLF: 122.60237698005601
Iteration: 14, Func. Count: 165, Neg. LLF: 122.6023766771813
Optimization terminated successfully (Exit mode 0)
Current function value: 122.60237698005601
Iterations: 14
Function evaluations: 165
Gradient evaluations: 14
Iteration: 1, Func. Count: 13, Neg. LLF: 60983472.47722296
Iteration: 2, Func. Count: 26, Neg. LLF: 411.74521246991105
Iteration: 3, Func. Count: 40, Neg. LLF: 15842215.125346957
Iteration: 4, Func. Count: 53, Neg. LLF: 130.16497604965224
Iteration: 5, Func. Count: 66, Neg. LLF: 145.86953528819308
Iteration: 6, Func. Count: 80, Neg. LLF: 122.7789864684442
Iteration: 7, Func. Count: 92, Neg. LLF: 124.77369948976536
Iteration: 8, Func. Count: 105, Neg. LLF: 127.21563827152802
Iteration: 9, Func. Count: 118, Neg. LLF: 122.24869483898394
Iteration: 10, Func. Count: 130, Neg. LLF: 122.05577182574392
Iteration: 11, Func. Count: 142, Neg. LLF: 122.05500567785523
Iteration: 12, Func. Count: 154, Neg. LLF: 122.05357286598831
Iteration: 13, Func. Count: 166, Neg. LLF: 122.05349397438738
Iteration: 14, Func. Count: 178, Neg. LLF: 122.05347421000623
Iteration: 15, Func. Count: 190, Neg. LLF: 122.10033579244035
Optimization terminated successfully (Exit mode 0)
Current function value: 122.05347417430238
Iterations: 16
Function evaluations: 193
Gradient evaluations: 15
Iteration: 1, Func. Count: 14, Neg. LLF: 67371315.913177
Iteration: 2, Func. Count: 28, Neg. LLF: 212.37538807338456
Iteration: 3, Func. Count: 43, Neg. LLF: 17776366.80278817
Iteration: 4, Func. Count: 57, Neg. LLF: 130.51109167832917
Iteration: 5, Func. Count: 71, Neg. LLF: 131.43948838625403
Iteration: 6, Func. Count: 85, Neg. LLF: 132.7267321078347
Iteration: 7, Func. Count: 100, Neg. LLF: 132.79922891639436
Iteration: 8, Func. Count: 114, Neg. LLF: 123.9137956597945
Iteration: 9, Func. Count: 127, Neg. LLF: 125.41912879397185
Iteration: 10, Func. Count: 141, Neg. LLF: 125.19553307402977
Iteration: 11, Func. Count: 155, Neg. LLF: 123.05815132233315
Iteration: 12, Func. Count: 168, Neg. LLF: 122.95856569689468
Iteration: 13, Func. Count: 181, Neg. LLF: 122.68296409952939
Iteration: 14, Func. Count: 194, Neg. LLF: 122.63044564715484
Iteration: 15, Func. Count: 207, Neg. LLF: 122.60145226183427
Iteration: 16, Func. Count: 220, Neg. LLF: 122.58700086185532
Iteration: 17, Func. Count: 233, Neg. LLF: 122.5805327636453
Iteration: 18, Func. Count: 246, Neg. LLF: 122.57774283997706
Iteration: 19, Func. Count: 259, Neg. LLF: 122.5771743217322
Iteration: 20, Func. Count: 272, Neg. LLF: 124.56602951379674
Iteration: 21, Func. Count: 288, Neg. LLF: 122.88494163534848
Iteration: 22, Func. Count: 304, Neg. LLF: 122.60266798710899
Iteration: 23, Func. Count: 319, Neg. LLF: 122.57724719099815
Iteration: 24, Func. Count: 333, Neg. LLF: 122.57718075613482
Iteration: 25, Func. Count: 347, Neg. LLF: 122.57720053175723
Iteration: 26, Func. Count: 363, Neg. LLF: 122.57718080885311
Iteration: 27, Func. Count: 378, Neg. LLF: 122.57718194160375
Iteration: 28, Func. Count: 393, Neg. LLF: 122.57717873395364
Iteration: 29, Func. Count: 407, Neg. LLF: 122.57715159209846
Optimization terminated successfully (Exit mode 0)
Current function value: 122.57715168600272
Iterations: 33
Function evaluations: 407
Gradient evaluations: 29
Iteration: 1, Func. Count: 15, Neg. LLF: 53497377.58013546
Iteration: 2, Func. Count: 30, Neg. LLF: 318.9244656265439
Iteration: 3, Func. Count: 46, Neg. LLF: 3378461.4347571726
Iteration: 4, Func. Count: 61, Neg. LLF: 141.82973394248268
Iteration: 5, Func. Count: 76, Neg. LLF: 152.9239993784719
Iteration: 6, Func. Count: 92, Neg. LLF: 124.70065344099807
Iteration: 7, Func. Count: 106, Neg. LLF: 132.00969930632533
Iteration: 8, Func. Count: 121, Neg. LLF: 318.7266938419358
Iteration: 9, Func. Count: 138, Neg. LLF: 133.47230274665478
Iteration: 10, Func. Count: 153, Neg. LLF: 122.60810399605533
Iteration: 11, Func. Count: 167, Neg. LLF: 122.24021440956925
Iteration: 12, Func. Count: 181, Neg. LLF: 122.08268479723326
Iteration: 13, Func. Count: 195, Neg. LLF: 122.0704194246834
Iteration: 14, Func. Count: 209, Neg. LLF: 122.05468629353881
Iteration: 15, Func. Count: 223, Neg. LLF: 122.0537550370142
Iteration: 16, Func. Count: 237, Neg. LLF: 122.05358390052996
Iteration: 17, Func. Count: 251, Neg. LLF: 122.05350781510018
Iteration: 18, Func. Count: 265, Neg. LLF: 122.05347849746992
Iteration: 19, Func. Count: 279, Neg. LLF: 122.05347553564035
Iteration: 20, Func. Count: 293, Neg. LLF: 122.05347481926049
Optimization terminated successfully (Exit mode 0)
Current function value: 122.05347481926049
Iterations: 20
Function evaluations: 293
Gradient evaluations: 20
Iteration: 1, Func. Count: 8, Neg. LLF: 143.0489018671193
Iteration: 2, Func. Count: 15, Neg. LLF: 153.92804262315985
Iteration: 3, Func. Count: 25, Neg. LLF: 187.17154344608966
Iteration: 4, Func. Count: 36, Neg. LLF: 154.18853828194926
Iteration: 5, Func. Count: 44, Neg. LLF: 140.6236701839724
Iteration: 6, Func. Count: 51, Neg. LLF: 289.10973354062867
Iteration: 7, Func. Count: 59, Neg. LLF: 468.4808461813322
Iteration: 8, Func. Count: 67, Neg. LLF: 542.3190493671943
Iteration: 9, Func. Count: 75, Neg. LLF: 547.2330743204604
Iteration: 10, Func. Count: 83, Neg. LLF: 572.3834831080874
Iteration: 11, Func. Count: 91, Neg. LLF: 139.70229161529676
Iteration: 12, Func. Count: 100, Neg. LLF: 159.95534745479387
Iteration: 13, Func. Count: 109, Neg. LLF: 625.4703467235177
Iteration: 14, Func. Count: 117, Neg. LLF: 653.3920475476463
Iteration: 15, Func. Count: 125, Neg. LLF: 580.8253676172478
Iteration: 16, Func. Count: 133, Neg. LLF: 539.9379733620249
Iteration: 17, Func. Count: 141, Neg. LLF: 193.19134929626136
Iteration: 18, Func. Count: 150, Neg. LLF: 221.04682164098946
Iteration: 19, Func. Count: 158, Neg. LLF: 139.05271900889838
Iteration: 20, Func. Count: 166, Neg. LLF: 132.38559921620487
Iteration: 21, Func. Count: 174, Neg. LLF: 719.0832827400056
Iteration: 22, Func. Count: 182, Neg. LLF: 209.0676281679798
Iteration: 23, Func. Count: 190, Neg. LLF: 327.14592981379474
Iteration: 24, Func. Count: 198, Neg. LLF: 137.31060429121
Iteration: 25, Func. Count: 206, Neg. LLF: 124.76666502303361
Iteration: 26, Func. Count: 213, Neg. LLF: 124.7639136736688
Iteration: 27, Func. Count: 221, Neg. LLF: 124.82743398470423
Iteration: 28, Func. Count: 229, Neg. LLF: 124.73511077052855
Iteration: 29, Func. Count: 237, Neg. LLF: 124.73409950244803
Iteration: 30, Func. Count: 244, Neg. LLF: 124.73409691888885
Iteration: 31, Func. Count: 250, Neg. LLF: 124.73409677981665
Optimization terminated successfully (Exit mode 0)
Current function value: 124.73409691888885
Iterations: 33
Function evaluations: 250
Gradient evaluations: 31
Iteration: 1, Func. Count: 9, Neg. LLF: 66368901.05473116
Iteration: 2, Func. Count: 18, Neg. LLF: 209.73173212613827
Iteration: 3, Func. Count: 28, Neg. LLF: 196.81760986924365
Iteration: 4, Func. Count: 37, Neg. LLF: 190.95421928167437
Iteration: 5, Func. Count: 46, Neg. LLF: 131.22629863334961
Iteration: 6, Func. Count: 55, Neg. LLF: 129.24762882368293
Iteration: 7, Func. Count: 64, Neg. LLF: 128.8111489670326
Iteration: 8, Func. Count: 73, Neg. LLF: 130.30828468842594
Iteration: 9, Func. Count: 82, Neg. LLF: 124.82999433428557
Iteration: 10, Func. Count: 90, Neg. LLF: 125.2150935689995
Iteration: 11, Func. Count: 99, Neg. LLF: 124.70866006528878
Iteration: 12, Func. Count: 107, Neg. LLF: 124.66472350733417
Iteration: 13, Func. Count: 115, Neg. LLF: 124.65281142071821
Iteration: 14, Func. Count: 123, Neg. LLF: 124.65016252112065
Iteration: 15, Func. Count: 131, Neg. LLF: 124.64694495780911
Iteration: 16, Func. Count: 139, Neg. LLF: 124.64474896465376
Iteration: 17, Func. Count: 147, Neg. LLF: 124.64431680688065
Iteration: 18, Func. Count: 155, Neg. LLF: 124.64429993563967
Iteration: 19, Func. Count: 163, Neg. LLF: 124.6442993122179
Optimization terminated successfully (Exit mode 0)
Current function value: 124.6442993122179
Iterations: 19
Function evaluations: 163
Gradient evaluations: 19
Iteration: 1, Func. Count: 10, Neg. LLF: 42202588.19035397
Iteration: 2, Func. Count: 20, Neg. LLF: 95690833944.38324
Iteration: 3, Func. Count: 33, Neg. LLF: 374.4409966567741
Iteration: 4, Func. Count: 43, Neg. LLF: 128.07081230807847
Iteration: 5, Func. Count: 52, Neg. LLF: 128.66883011873264
Iteration: 6, Func. Count: 63, Neg. LLF: 561.3942667783916
Iteration: 7, Func. Count: 75, Neg. LLF: 144.43338575012015
Iteration: 8, Func. Count: 85, Neg. LLF: 151.05421475058287
Iteration: 9, Func. Count: 95, Neg. LLF: 124.90251305611352
Iteration: 10, Func. Count: 104, Neg. LLF: 124.74813156497194
Iteration: 11, Func. Count: 113, Neg. LLF: 124.6892319781533
Iteration: 12, Func. Count: 122, Neg. LLF: 124.6727329637613
Iteration: 13, Func. Count: 131, Neg. LLF: 124.66818498827425
Iteration: 14, Func. Count: 140, Neg. LLF: 124.66196983519076
Iteration: 15, Func. Count: 149, Neg. LLF: 124.6567046362685
Iteration: 16, Func. Count: 158, Neg. LLF: 124.65508300492756
Iteration: 17, Func. Count: 167, Neg. LLF: 124.65383027631134
Iteration: 18, Func. Count: 176, Neg. LLF: 124.6528285309163
Iteration: 19, Func. Count: 185, Neg. LLF: 124.65040002701211
Iteration: 20, Func. Count: 194, Neg. LLF: 124.64831574813539
Iteration: 21, Func. Count: 203, Neg. LLF: 124.64635593314172
Iteration: 22, Func. Count: 212, Neg. LLF: 124.64581724837372
Iteration: 23, Func. Count: 221, Neg. LLF: 124.64556846800978
Iteration: 24, Func. Count: 230, Neg. LLF: 124.64489267174383
Iteration: 25, Func. Count: 239, Neg. LLF: 124.66152633453363
Iteration: 26, Func. Count: 249, Neg. LLF: 124.6444422169874
Iteration: 27, Func. Count: 258, Neg. LLF: 124.6443292141204
Iteration: 28, Func. Count: 267, Neg. LLF: 124.64430110628226
Iteration: 29, Func. Count: 276, Neg. LLF: 124.64429889876666
Iteration: 30, Func. Count: 284, Neg. LLF: 124.6442996030104
Optimization terminated successfully (Exit mode 0)
Current function value: 124.64429889876666
Iterations: 30
Function evaluations: 284
Gradient evaluations: 30
Iteration: 1, Func. Count: 11, Neg. LLF: 28152471.21211061
Iteration: 2, Func. Count: 22, Neg. LLF: 1493409631.0548415
Iteration: 3, Func. Count: 34, Neg. LLF: 288.2244329190392
Iteration: 4, Func. Count: 45, Neg. LLF: 129.98527667464927
Iteration: 5, Func. Count: 55, Neg. LLF: 329.171709310412
Iteration: 6, Func. Count: 68, Neg. LLF: 212.4935786731093
Iteration: 7, Func. Count: 83, Neg. LLF: 171.98778035992092
Iteration: 8, Func. Count: 95, Neg. LLF: 125.29025800883358
Iteration: 9, Func. Count: 105, Neg. LLF: 131.74512792042827
Iteration: 10, Func. Count: 120, Neg. LLF: 125.19156864498014
Iteration: 11, Func. Count: 130, Neg. LLF: 125.09953086801
Iteration: 12, Func. Count: 140, Neg. LLF: 125.00891492833767
Iteration: 13, Func. Count: 150, Neg. LLF: 124.84826470331907
Iteration: 14, Func. Count: 160, Neg. LLF: 124.74889547471842
Iteration: 15, Func. Count: 170, Neg. LLF: 124.69829208855126
Iteration: 16, Func. Count: 180, Neg. LLF: 124.67658056680197
Iteration: 17, Func. Count: 190, Neg. LLF: 124.66011298925842
Iteration: 18, Func. Count: 200, Neg. LLF: 124.65278245903416
Iteration: 19, Func. Count: 210, Neg. LLF: 124.65092661301209
Iteration: 20, Func. Count: 220, Neg. LLF: 124.64939189605707
Iteration: 21, Func. Count: 230, Neg. LLF: 124.64749637071495
Iteration: 22, Func. Count: 240, Neg. LLF: 124.64678403101452
Iteration: 23, Func. Count: 250, Neg. LLF: 124.6454061742143
Iteration: 24, Func. Count: 260, Neg. LLF: 124.645662056106
Iteration: 25, Func. Count: 270, Neg. LLF: 125.74929004209531
Iteration: 26, Func. Count: 282, Neg. LLF: 124.87485598480994
Iteration: 27, Func. Count: 294, Neg. LLF: 125.3295114857486
Iteration: 28, Func. Count: 306, Neg. LLF: 124.64541011107094
Iteration: 29, Func. Count: 317, Neg. LLF: 124.85015159706373
Iteration: 30, Func. Count: 329, Neg. LLF: 124.64430072810312
Iteration: 31, Func. Count: 339, Neg. LLF: 124.64429930818879
Iteration: 32, Func. Count: 348, Neg. LLF: 124.64430028062304
Optimization terminated successfully (Exit mode 0)
Current function value: 124.64429930818879
Iterations: 33
Function evaluations: 348
Gradient evaluations: 32
Iteration: 1, Func. Count: 12, Neg. LLF: 2338.026696079437
Iteration: 2, Func. Count: 24, Neg. LLF: 207.44861558461196
Iteration: 3, Func. Count: 37, Neg. LLF: 17559.70672654912
Iteration: 4, Func. Count: 49, Neg. LLF: 527.4108481257701
Iteration: 5, Func. Count: 61, Neg. LLF: 830.7217363825818
Iteration: 6, Func. Count: 73, Neg. LLF: 714.9582502934196
Iteration: 7, Func. Count: 85, Neg. LLF: 252.40683931517256
Iteration: 8, Func. Count: 97, Neg. LLF: 170.38859011154884
Iteration: 9, Func. Count: 109, Neg. LLF: 14903.840967489034
Iteration: 10, Func. Count: 121, Neg. LLF: 202.81308606022534
Iteration: 11, Func. Count: 133, Neg. LLF: 127.75710378556006
Iteration: 12, Func. Count: 144, Neg. LLF: 251.555952956263
Iteration: 13, Func. Count: 156, Neg. LLF: 169.63545654962206
Iteration: 14, Func. Count: 170, Neg. LLF: 131.04108195748105
Iteration: 15, Func. Count: 182, Neg. LLF: 126.47055658101779
Iteration: 16, Func. Count: 194, Neg. LLF: 125.05708710095703
Iteration: 17, Func. Count: 205, Neg. LLF: 124.90673279047256
Iteration: 18, Func. Count: 216, Neg. LLF: 124.83519965688463
Iteration: 19, Func. Count: 227, Neg. LLF: 124.73437727491779
Iteration: 20, Func. Count: 238, Neg. LLF: 124.6826141825664
Iteration: 21, Func. Count: 249, Neg. LLF: 124.64967205039241
Iteration: 22, Func. Count: 260, Neg. LLF: 124.6463871040814
Iteration: 23, Func. Count: 271, Neg. LLF: 124.64620673678623
Iteration: 24, Func. Count: 282, Neg. LLF: 124.64598655987261
Iteration: 25, Func. Count: 293, Neg. LLF: 124.64587019496327
Iteration: 26, Func. Count: 304, Neg. LLF: 124.64562996629905
Iteration: 27, Func. Count: 315, Neg. LLF: 124.64524394343962
Iteration: 28, Func. Count: 326, Neg. LLF: 124.64473943671551
Iteration: 29, Func. Count: 337, Neg. LLF: 124.64438724459525
Iteration: 30, Func. Count: 348, Neg. LLF: 124.6443018418892
Iteration: 31, Func. Count: 359, Neg. LLF: 124.64429945825225
Iteration: 32, Func. Count: 369, Neg. LLF: 124.64429972682215
Optimization terminated successfully (Exit mode 0)
Current function value: 124.64429945825225
Iterations: 32
Function evaluations: 369
Gradient evaluations: 32
Iteration: 1, Func. Count: 9, Neg. LLF: 144.96535931398776
Iteration: 2, Func. Count: 17, Neg. LLF: 154.23554688649884
Iteration: 3, Func. Count: 26, Neg. LLF: 187.52975650480172
Iteration: 4, Func. Count: 38, Neg. LLF: 188.77895455792984
Iteration: 5, Func. Count: 48, Neg. LLF: 141.53904587965505
Iteration: 6, Func. Count: 56, Neg. LLF: 133.71034753250692
Iteration: 7, Func. Count: 64, Neg. LLF: 7293.315591400404
Iteration: 8, Func. Count: 73, Neg. LLF: 1526.0398390401087
Iteration: 9, Func. Count: 82, Neg. LLF: 4899.410494847665
Iteration: 10, Func. Count: 91, Neg. LLF: 127.86531189720311
Iteration: 11, Func. Count: 99, Neg. LLF: 170.17931691420054
Iteration: 12, Func. Count: 111, Neg. LLF: 452.78121839496754
Iteration: 13, Func. Count: 120, Neg. LLF: 322.8986383711304
Iteration: 14, Func. Count: 129, Neg. LLF: 623.4221533240774
Iteration: 15, Func. Count: 138, Neg. LLF: 238139.2176559529
Iteration: 16, Func. Count: 147, Neg. LLF: 4524.394630790814
Iteration: 17, Func. Count: 156, Neg. LLF: 126.90287571576053
Iteration: 18, Func. Count: 165, Neg. LLF: 124.60640155571085
Iteration: 19, Func. Count: 173, Neg. LLF: 124.5540190856653
Iteration: 20, Func. Count: 181, Neg. LLF: 124.55106873260851
Iteration: 21, Func. Count: 189, Neg. LLF: 124.5508869524525
Iteration: 22, Func. Count: 197, Neg. LLF: 124.55085147348811
Iteration: 23, Func. Count: 205, Neg. LLF: 124.55084203959032
Iteration: 24, Func. Count: 213, Neg. LLF: 124.5508400825396
Iteration: 25, Func. Count: 220, Neg. LLF: 124.5508400627244
Optimization terminated successfully (Exit mode 0)
Current function value: 124.5508400825396
Iterations: 26
Function evaluations: 220
Gradient evaluations: 25
Iteration: 1, Func. Count: 10, Neg. LLF: 59023721.54928196
Iteration: 2, Func. Count: 20, Neg. LLF: 381.0310628168376
Iteration: 3, Func. Count: 33, Neg. LLF: 130.56669785441773
Iteration: 4, Func. Count: 42, Neg. LLF: 202.2948877971752
Iteration: 5, Func. Count: 56, Neg. LLF: 132.03654499174405
Iteration: 6, Func. Count: 66, Neg. LLF: 126.38062865014291
Iteration: 7, Func. Count: 75, Neg. LLF: 126.33389867220735
Iteration: 8, Func. Count: 84, Neg. LLF: 126.32124023184565
Iteration: 9, Func. Count: 93, Neg. LLF: 126.31296835601727
Iteration: 10, Func. Count: 102, Neg. LLF: 126.30790638923234
Iteration: 11, Func. Count: 111, Neg. LLF: 126.29849209755679
Iteration: 12, Func. Count: 120, Neg. LLF: 126.29563166746567
Iteration: 13, Func. Count: 129, Neg. LLF: 126.29501370496013
Iteration: 14, Func. Count: 138, Neg. LLF: 126.29499350413462
Iteration: 15, Func. Count: 146, Neg. LLF: 126.29499342191794
Optimization terminated successfully (Exit mode 0)
Current function value: 126.29499350413462
Iterations: 15
Function evaluations: 146
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 190.39953622539497
Iteration: 2, Func. Count: 23, Neg. LLF: 594.4620882939103
Iteration: 3, Func. Count: 34, Neg. LLF: 129.68338895221814
Iteration: 4, Func. Count: 45, Neg. LLF: 129.06821938363424
Iteration: 5, Func. Count: 56, Neg. LLF: 128.51303860135712
Iteration: 6, Func. Count: 67, Neg. LLF: 125.45993128654648
Iteration: 7, Func. Count: 77, Neg. LLF: 125.69262517346637
Iteration: 8, Func. Count: 88, Neg. LLF: 125.8008329170541
Iteration: 9, Func. Count: 99, Neg. LLF: 124.63783918865161
Iteration: 10, Func. Count: 110, Neg. LLF: 124.49724111898138
Iteration: 11, Func. Count: 120, Neg. LLF: 124.55929064814663
Iteration: 12, Func. Count: 131, Neg. LLF: 124.48497445977549
Iteration: 13, Func. Count: 141, Neg. LLF: 124.47359129180725
Iteration: 14, Func. Count: 151, Neg. LLF: 124.4735146839098
Iteration: 15, Func. Count: 161, Neg. LLF: 124.4735029176394
Iteration: 16, Func. Count: 171, Neg. LLF: 124.47347625632882
Iteration: 17, Func. Count: 181, Neg. LLF: 124.47346430874708
Iteration: 18, Func. Count: 191, Neg. LLF: 124.47346247300031
Iteration: 19, Func. Count: 200, Neg. LLF: 124.47346338536931
Optimization terminated successfully (Exit mode 0)
Current function value: 124.47346247300031
Iterations: 19
Function evaluations: 200
Gradient evaluations: 19
Iteration: 1, Func. Count: 12, Neg. LLF: 64361929.15375387
Iteration: 2, Func. Count: 24, Neg. LLF: 216.22313431102145
Iteration: 3, Func. Count: 37, Neg. LLF: 28740.437481776793
Iteration: 4, Func. Count: 49, Neg. LLF: 130.21472824054322
Iteration: 5, Func. Count: 60, Neg. LLF: 130.44333856084745
Iteration: 6, Func. Count: 73, Neg. LLF: 640.4983853714167
Iteration: 7, Func. Count: 88, Neg. LLF: 324.1655871351155
Iteration: 8, Func. Count: 101, Neg. LLF: 171.80343451771205
Iteration: 9, Func. Count: 115, Neg. LLF: 124.52407661830131
Iteration: 10, Func. Count: 126, Neg. LLF: 124.51849126195272
Iteration: 11, Func. Count: 137, Neg. LLF: 124.51080572674788
Iteration: 12, Func. Count: 148, Neg. LLF: 124.50685792715677
Iteration: 13, Func. Count: 159, Neg. LLF: 124.48912907787948
Iteration: 14, Func. Count: 170, Neg. LLF: 124.48275189333076
Iteration: 15, Func. Count: 181, Neg. LLF: 124.47941459311507
Iteration: 16, Func. Count: 192, Neg. LLF: 124.47771178972629
Iteration: 17, Func. Count: 203, Neg. LLF: 124.47664335197015
Iteration: 18, Func. Count: 214, Neg. LLF: 124.4752052976357
Iteration: 19, Func. Count: 225, Neg. LLF: 124.4748341513283
Iteration: 20, Func. Count: 236, Neg. LLF: 124.47464843397934
Iteration: 21, Func. Count: 247, Neg. LLF: 124.47449708975762
Iteration: 22, Func. Count: 258, Neg. LLF: 124.47428873817117
Iteration: 23, Func. Count: 269, Neg. LLF: 124.47394953157209
Iteration: 24, Func. Count: 280, Neg. LLF: 124.47367670332665
Iteration: 25, Func. Count: 291, Neg. LLF: 124.47359552020689
Iteration: 26, Func. Count: 302, Neg. LLF: 124.47348269438822
Iteration: 27, Func. Count: 313, Neg. LLF: 124.47346566143955
Iteration: 28, Func. Count: 324, Neg. LLF: 124.47345033483464
Iteration: 29, Func. Count: 335, Neg. LLF: 124.47345674527969
Iteration: 30, Func. Count: 356, Neg. LLF: 124.47345231322888
Iteration: 31, Func. Count: 377, Neg. LLF: 124.47460047051248
Iteration: 32, Func. Count: 391, Neg. LLF: 124.47365026707438
Iteration: 33, Func. Count: 404, Neg. LLF: 124.47358425114268
Iteration: 34, Func. Count: 417, Neg. LLF: 124.47346284471132
Iteration: 35, Func. Count: 429, Neg. LLF: 124.47346239995117
Iteration: 36, Func. Count: 441, Neg. LLF: 124.47346216162471
Iteration: 37, Func. Count: 451, Neg. LLF: 124.47346323123405
Optimization terminated successfully (Exit mode 0)
Current function value: 124.47346216162471
Iterations: 38
Function evaluations: 451
Gradient evaluations: 37
Iteration: 1, Func. Count: 13, Neg. LLF: 51766872.85175706
Iteration: 2, Func. Count: 26, Neg. LLF: 333.4443761749946
Iteration: 3, Func. Count: 40, Neg. LLF: 5087399.253917607
Iteration: 4, Func. Count: 54, Neg. LLF: 914.4320472704437
Iteration: 5, Func. Count: 67, Neg. LLF: 136.29908180000413
Iteration: 6, Func. Count: 80, Neg. LLF: 133.7926314742095
Iteration: 7, Func. Count: 93, Neg. LLF: 126.90045607852072
Iteration: 8, Func. Count: 105, Neg. LLF: 125.76578067409864
Iteration: 9, Func. Count: 117, Neg. LLF: 127.49704685150851
Iteration: 10, Func. Count: 130, Neg. LLF: 125.49843952216054
Iteration: 11, Func. Count: 143, Neg. LLF: 125.58479925879686
Iteration: 12, Func. Count: 156, Neg. LLF: 124.64941108242513
Iteration: 13, Func. Count: 168, Neg. LLF: 124.61402518428994
Iteration: 14, Func. Count: 180, Neg. LLF: 124.56983862432426
Iteration: 15, Func. Count: 192, Neg. LLF: 124.5296277505624
Iteration: 16, Func. Count: 204, Neg. LLF: 124.61166751044077
Iteration: 17, Func. Count: 217, Neg. LLF: 124.95376716305164
Iteration: 18, Func. Count: 230, Neg. LLF: 124.48513560458964
Iteration: 19, Func. Count: 243, Neg. LLF: 124.47374897498709
Iteration: 20, Func. Count: 255, Neg. LLF: 124.47364906926511
Iteration: 21, Func. Count: 267, Neg. LLF: 124.47361748464755
Iteration: 22, Func. Count: 279, Neg. LLF: 124.47343950976162
Iteration: 23, Func. Count: 291, Neg. LLF: 124.473459883078
Iteration: 24, Func. Count: 303, Neg. LLF: 124.47596067303407
Optimization terminated successfully (Exit mode 0)
Current function value: 124.4734595830464
Iterations: 25
Function evaluations: 305
Gradient evaluations: 24
Iteration: 1, Func. Count: 10, Neg. LLF: 143.17460611915084
Iteration: 2, Func. Count: 19, Neg. LLF: 145.07181044694465
Iteration: 3, Func. Count: 31, Neg. LLF: 178.4704282749195
Iteration: 4, Func. Count: 44, Neg. LLF: 143.04806141329075
Iteration: 5, Func. Count: 54, Neg. LLF: 154.1544235954105
Iteration: 6, Func. Count: 65, Neg. LLF: 182.18690316188832
Iteration: 7, Func. Count: 75, Neg. LLF: 190.8506294142964
Iteration: 8, Func. Count: 85, Neg. LLF: 178.4868957797255
Iteration: 9, Func. Count: 95, Neg. LLF: 180.98947978849998
Iteration: 10, Func. Count: 105, Neg. LLF: 166.8759002122415
Iteration: 11, Func. Count: 115, Neg. LLF: 138.96793174289618
Iteration: 12, Func. Count: 126, Neg. LLF: 150.06676856122246
Iteration: 13, Func. Count: 136, Neg. LLF: 237.31483307750173
Iteration: 14, Func. Count: 146, Neg. LLF: 722.1364985062885
Iteration: 15, Func. Count: 156, Neg. LLF: 705.3183127351198
Iteration: 16, Func. Count: 166, Neg. LLF: 624.7039740235667
Iteration: 17, Func. Count: 176, Neg. LLF: 372.7136642666302
Iteration: 18, Func. Count: 186, Neg. LLF: 156.11006800764486
Iteration: 19, Func. Count: 196, Neg. LLF: 129.2522081825882
Iteration: 20, Func. Count: 205, Neg. LLF: 413.92814824063754
Iteration: 21, Func. Count: 215, Neg. LLF: 1604.6127346022572
Iteration: 22, Func. Count: 226, Neg. LLF: 1186.1892390493583
Iteration: 23, Func. Count: 237, Neg. LLF: 743.5227790707323
Iteration: 24, Func. Count: 247, Neg. LLF: 129.19000571230055
Iteration: 25, Func. Count: 257, Neg. LLF: 124.99596595147405
Iteration: 26, Func. Count: 266, Neg. LLF: 1253.038421092108
Iteration: 27, Func. Count: 277, Neg. LLF: 124.78787817738728
Iteration: 28, Func. Count: 286, Neg. LLF: 124.67645613086935
Iteration: 29, Func. Count: 295, Neg. LLF: 124.59814491189512
Iteration: 30, Func. Count: 304, Neg. LLF: 124.57330320772813
Iteration: 31, Func. Count: 313, Neg. LLF: 124.56718083351322
Iteration: 32, Func. Count: 322, Neg. LLF: 124.56352753905117
Iteration: 33, Func. Count: 331, Neg. LLF: 124.55780976253627
Iteration: 34, Func. Count: 340, Neg. LLF: 124.55309853419124
Iteration: 35, Func. Count: 349, Neg. LLF: 124.5513750905009
Iteration: 36, Func. Count: 358, Neg. LLF: 124.5509273109113
Iteration: 37, Func. Count: 367, Neg. LLF: 124.55080603106155
Iteration: 38, Func. Count: 376, Neg. LLF: 124.55079266462442
Iteration: 39, Func. Count: 384, Neg. LLF: 124.55079259623508
Optimization terminated successfully (Exit mode 0)
Current function value: 124.55079266462442
Iterations: 41
Function evaluations: 384
Gradient evaluations: 39
Iteration: 1, Func. Count: 11, Neg. LLF: 60903403.673996635
Iteration: 2, Func. Count: 22, Neg. LLF: 387.95706123061166
Iteration: 3, Func. Count: 36, Neg. LLF: 159.96126060924178
Iteration: 4, Func. Count: 48, Neg. LLF: 163.17410695706076
Iteration: 5, Func. Count: 59, Neg. LLF: 134.11257610618924
Iteration: 6, Func. Count: 70, Neg. LLF: 126.40754800837712
Iteration: 7, Func. Count: 80, Neg. LLF: 163.040390284924
Iteration: 8, Func. Count: 91, Neg. LLF: 180.98755171811734
Iteration: 9, Func. Count: 103, Neg. LLF: 124.23604892975764
Iteration: 10, Func. Count: 113, Neg. LLF: 124.23103980654844
Iteration: 11, Func. Count: 123, Neg. LLF: 124.23078034056437
Iteration: 12, Func. Count: 133, Neg. LLF: 124.23071664416719
Iteration: 13, Func. Count: 143, Neg. LLF: 124.23065988282944
Iteration: 14, Func. Count: 153, Neg. LLF: 124.23065629354875
Iteration: 15, Func. Count: 162, Neg. LLF: 124.23065603427494
Optimization terminated successfully (Exit mode 0)
Current function value: 124.23065629354875
Iterations: 15
Function evaluations: 162
Gradient evaluations: 15
Iteration: 1, Func. Count: 12, Neg. LLF: 79881589.71612076
Iteration: 2, Func. Count: 24, Neg. LLF: 175.7185860771142
Iteration: 3, Func. Count: 37, Neg. LLF: 139.3709743041566
Iteration: 4, Func. Count: 49, Neg. LLF: 128.97211816577033
Iteration: 5, Func. Count: 61, Neg. LLF: 127.97943210220123
Iteration: 6, Func. Count: 73, Neg. LLF: 212.97698798435047
Iteration: 7, Func. Count: 85, Neg. LLF: 469.0417671860409
Iteration: 8, Func. Count: 97, Neg. LLF: 135.58196495936647
Iteration: 9, Func. Count: 109, Neg. LLF: 129.1226778079488
Iteration: 10, Func. Count: 121, Neg. LLF: 124.64639405048202
Iteration: 11, Func. Count: 132, Neg. LLF: 124.833411180831
Iteration: 12, Func. Count: 144, Neg. LLF: 124.54605392706955
Iteration: 13, Func. Count: 155, Neg. LLF: 124.48877110506052
Iteration: 14, Func. Count: 166, Neg. LLF: 124.49545862158165
Iteration: 15, Func. Count: 178, Neg. LLF: 124.55970190897148
Iteration: 16, Func. Count: 190, Neg. LLF: 124.5546901486805
Iteration: 17, Func. Count: 202, Neg. LLF: 124.55644113141761
Iteration: 18, Func. Count: 214, Neg. LLF: 124.48101127233525
Iteration: 19, Func. Count: 226, Neg. LLF: 124.47504246173659
Iteration: 20, Func. Count: 238, Neg. LLF: 124.47327391635376
Iteration: 21, Func. Count: 250, Neg. LLF: 124.47280280549236
Iteration: 22, Func. Count: 261, Neg. LLF: 128.06440829022563
Iteration: 23, Func. Count: 274, Neg. LLF: 124.47876865923084
Iteration: 24, Func. Count: 286, Neg. LLF: 124.48508694564403
Optimization terminated successfully (Exit mode 0)
Current function value: 124.47277634135095
Iterations: 25
Function evaluations: 288
Gradient evaluations: 24
Iteration: 1, Func. Count: 13, Neg. LLF: 64789992.97794229
Iteration: 2, Func. Count: 26, Neg. LLF: 215.44210141177766
Iteration: 3, Func. Count: 40, Neg. LLF: 3875227.2361938506
Iteration: 4, Func. Count: 53, Neg. LLF: 289.7341167157091
Iteration: 5, Func. Count: 66, Neg. LLF: 131.06442819102614
Iteration: 6, Func. Count: 79, Neg. LLF: 128.2531339314053
Iteration: 7, Func. Count: 91, Neg. LLF: 127.70964236263559
Iteration: 8, Func. Count: 103, Neg. LLF: 130.16354410132095
Iteration: 9, Func. Count: 116, Neg. LLF: 129.33830575574086
Iteration: 10, Func. Count: 129, Neg. LLF: 127.57799268050792
Iteration: 11, Func. Count: 142, Neg. LLF: 126.26000846086085
Iteration: 12, Func. Count: 155, Neg. LLF: 125.72444014065364
Iteration: 13, Func. Count: 168, Neg. LLF: 124.9034425682714
Iteration: 14, Func. Count: 181, Neg. LLF: 127.93851553200878
Iteration: 15, Func. Count: 194, Neg. LLF: 126.03490252705012
Iteration: 16, Func. Count: 207, Neg. LLF: 124.65202346449193
Iteration: 17, Func. Count: 220, Neg. LLF: 124.49271520863175
Iteration: 18, Func. Count: 232, Neg. LLF: 124.5231420595214
Iteration: 19, Func. Count: 245, Neg. LLF: 124.56972882497311
Iteration: 20, Func. Count: 258, Neg. LLF: 124.56806220834319
Iteration: 21, Func. Count: 271, Neg. LLF: 124.47879700840828
Iteration: 22, Func. Count: 283, Neg. LLF: 124.56263215668076
Iteration: 23, Func. Count: 296, Neg. LLF: 124.52057420152627
Iteration: 24, Func. Count: 309, Neg. LLF: 124.47456109461541
Iteration: 25, Func. Count: 321, Neg. LLF: 124.47573358439439
Iteration: 26, Func. Count: 334, Neg. LLF: 124.47304787804602
Iteration: 27, Func. Count: 346, Neg. LLF: 124.47282249595101
Iteration: 28, Func. Count: 358, Neg. LLF: 124.47275020631311
Iteration: 29, Func. Count: 370, Neg. LLF: 124.4827351624761
Iteration: 30, Func. Count: 384, Neg. LLF: 124.4952665603992
Optimization terminated successfully (Exit mode 0)
Current function value: 124.47274661834629
Iterations: 31
Function evaluations: 386
Gradient evaluations: 30
Iteration: 1, Func. Count: 14, Neg. LLF: 51986837.489809096
Iteration: 2, Func. Count: 28, Neg. LLF: 357.379648044524
Iteration: 3, Func. Count: 43, Neg. LLF: 3568510.148635724
Iteration: 4, Func. Count: 57, Neg. LLF: 123.22577219808906
Iteration: 5, Func. Count: 70, Neg. LLF: 148.28586999410678
Iteration: 6, Func. Count: 85, Neg. LLF: 149.06762514847478
Iteration: 7, Func. Count: 100, Neg. LLF: 190.48913006710674
Iteration: 8, Func. Count: 115, Neg. LLF: 137.6809160807021
Iteration: 9, Func. Count: 129, Neg. LLF: 119.58912278021711
Iteration: 10, Func. Count: 142, Neg. LLF: 119.71360092415102
Iteration: 11, Func. Count: 156, Neg. LLF: 176.1936033599309
Iteration: 12, Func. Count: 172, Neg. LLF: 119.47107188557713
Iteration: 13, Func. Count: 186, Neg. LLF: 119.40383219878932
Iteration: 14, Func. Count: 199, Neg. LLF: 119.3669240896282
Iteration: 15, Func. Count: 212, Neg. LLF: 119.36531509074652
Iteration: 16, Func. Count: 225, Neg. LLF: 119.36487642072304
Iteration: 17, Func. Count: 238, Neg. LLF: 119.36482709603456
Iteration: 18, Func. Count: 251, Neg. LLF: 119.36478746737663
Iteration: 19, Func. Count: 264, Neg. LLF: 119.36478477846684
Iteration: 20, Func. Count: 276, Neg. LLF: 119.36478456326088
Optimization terminated successfully (Exit mode 0)
Current function value: 119.36478477846684
Iterations: 20
Function evaluations: 276
Gradient evaluations: 20
Iteration: 1, Func. Count: 11, Neg. LLF: 145.39890622329568
Iteration: 2, Func. Count: 21, Neg. LLF: 144.1726392343463
Iteration: 3, Func. Count: 33, Neg. LLF: 169.29639791143236
Iteration: 4, Func. Count: 48, Neg. LLF: 157.683497116637
Iteration: 5, Func. Count: 59, Neg. LLF: 142.81313377584607
Iteration: 6, Func. Count: 69, Neg. LLF: 504.19178288314
Iteration: 7, Func. Count: 80, Neg. LLF: 26123.37078064741
Iteration: 8, Func. Count: 91, Neg. LLF: 15705.205494360618
Iteration: 9, Func. Count: 102, Neg. LLF: 200913.08627554742
Iteration: 10, Func. Count: 113, Neg. LLF: 133958.01469450985
Iteration: 11, Func. Count: 124, Neg. LLF: 1355.8606048842098
Iteration: 12, Func. Count: 135, Neg. LLF: 213.4955678887486
Iteration: 13, Func. Count: 148, Neg. LLF: 147.25819738313044
Iteration: 14, Func. Count: 162, Neg. LLF: 666594.1851588133
Iteration: 15, Func. Count: 173, Neg. LLF: 137.78047155732116
Iteration: 16, Func. Count: 184, Neg. LLF: 463813.95032746583
Iteration: 17, Func. Count: 195, Neg. LLF: 332.37329488887315
Iteration: 18, Func. Count: 206, Neg. LLF: 246.33161301186257
Iteration: 19, Func. Count: 217, Neg. LLF: 232.08059244850605
Iteration: 20, Func. Count: 228, Neg. LLF: 317.72424971884203
Iteration: 21, Func. Count: 239, Neg. LLF: 196.31220699082107
Iteration: 22, Func. Count: 250, Neg. LLF: 196.7113838779333
Iteration: 23, Func. Count: 261, Neg. LLF: 178.52760355108776
Iteration: 24, Func. Count: 272, Neg. LLF: 185.82412408043092
Iteration: 25, Func. Count: 283, Neg. LLF: 185.92269292237404
Iteration: 26, Func. Count: 294, Neg. LLF: 177.56042382788425
Iteration: 27, Func. Count: 305, Neg. LLF: 220.22424151626257
Iteration: 28, Func. Count: 316, Neg. LLF: 217.6728383113316
Iteration: 29, Func. Count: 327, Neg. LLF: 214.7304152191668
Iteration: 30, Func. Count: 338, Neg. LLF: 209.37513460467025
Iteration: 31, Func. Count: 349, Neg. LLF: 147.35901268728622
Iteration: 32, Func. Count: 360, Neg. LLF: 203.82299048413432
Iteration: 33, Func. Count: 371, Neg. LLF: 145.658521608402
Iteration: 34, Func. Count: 382, Neg. LLF: 130.64598131878884
Iteration: 35, Func. Count: 392, Neg. LLF: 130.2303064747197
Iteration: 36, Func. Count: 402, Neg. LLF: 129.1740664907855
Iteration: 37, Func. Count: 412, Neg. LLF: 127.65326250782448
Iteration: 38, Func. Count: 422, Neg. LLF: 124.6407686826256
Iteration: 39, Func. Count: 432, Neg. LLF: 124.56571859912903
Iteration: 40, Func. Count: 442, Neg. LLF: 124.52751201799202
Iteration: 41, Func. Count: 452, Neg. LLF: 124.48951875535576
Iteration: 42, Func. Count: 462, Neg. LLF: 124.46966858902607
Iteration: 43, Func. Count: 472, Neg. LLF: 124.45827438186075
Iteration: 44, Func. Count: 482, Neg. LLF: 124.4501812970438
Iteration: 45, Func. Count: 492, Neg. LLF: 124.44434576482226
Iteration: 46, Func. Count: 502, Neg. LLF: 124.42333522700488
Iteration: 47, Func. Count: 512, Neg. LLF: 124.38600823953497
Iteration: 48, Func. Count: 522, Neg. LLF: 124.33624193889861
Iteration: 49, Func. Count: 532, Neg. LLF: 124.32022292663915
Iteration: 50, Func. Count: 542, Neg. LLF: 124.30579425455205
Iteration: 51, Func. Count: 552, Neg. LLF: 124.3053961075321
Iteration: 52, Func. Count: 562, Neg. LLF: 124.30538588325201
Iteration: 53, Func. Count: 571, Neg. LLF: 124.30538586384743
Optimization terminated successfully (Exit mode 0)
Current function value: 124.30538588325201
Iterations: 54
Function evaluations: 571
Gradient evaluations: 53
Iteration: 1, Func. Count: 12, Neg. LLF: 63141638.620776765
Iteration: 2, Func. Count: 24, Neg. LLF: 450.8476390838011
Iteration: 3, Func. Count: 39, Neg. LLF: 245.13877787888296
Iteration: 4, Func. Count: 51, Neg. LLF: 162.21256283099606
Iteration: 5, Func. Count: 63, Neg. LLF: 128.5674418234549
Iteration: 6, Func. Count: 74, Neg. LLF: 135.6210489834548
Iteration: 7, Func. Count: 87, Neg. LLF: 183.99463847279395
Iteration: 8, Func. Count: 100, Neg. LLF: 124.32626834681426
Iteration: 9, Func. Count: 111, Neg. LLF: 124.21365903463548
Iteration: 10, Func. Count: 122, Neg. LLF: 124.28835113633666
Iteration: 11, Func. Count: 134, Neg. LLF: 124.18389950060016
Iteration: 12, Func. Count: 145, Neg. LLF: 124.18381524746302
Iteration: 13, Func. Count: 156, Neg. LLF: 124.1837535223773
Iteration: 14, Func. Count: 167, Neg. LLF: 124.18368670927559
Iteration: 15, Func. Count: 178, Neg. LLF: 124.18366230022524
Iteration: 16, Func. Count: 189, Neg. LLF: 124.18365888850117
Iteration: 17, Func. Count: 199, Neg. LLF: 124.18365862445827
Optimization terminated successfully (Exit mode 0)
Current function value: 124.18365888850117
Iterations: 17
Function evaluations: 199
Gradient evaluations: 17
Iteration: 1, Func. Count: 13, Neg. LLF: 82688382.09100397
Iteration: 2, Func. Count: 26, Neg. LLF: 175.37888450426004
Iteration: 3, Func. Count: 40, Neg. LLF: 136.78925052211565
Iteration: 4, Func. Count: 53, Neg. LLF: 129.53246471154867
Iteration: 5, Func. Count: 66, Neg. LLF: 126.97211348055316
Iteration: 6, Func. Count: 80, Neg. LLF: 139.51588847346778
Iteration: 7, Func. Count: 93, Neg. LLF: 153.96030601569996
Iteration: 8, Func. Count: 106, Neg. LLF: 125.08233721317067
Iteration: 9, Func. Count: 118, Neg. LLF: 124.57665008756658
Iteration: 10, Func. Count: 130, Neg. LLF: 124.5858190209591
Iteration: 11, Func. Count: 143, Neg. LLF: 124.32302538961027
Iteration: 12, Func. Count: 155, Neg. LLF: 124.35405267942912
Iteration: 13, Func. Count: 168, Neg. LLF: 124.23059738710674
Iteration: 14, Func. Count: 180, Neg. LLF: 124.22646193020066
Iteration: 15, Func. Count: 192, Neg. LLF: 124.21998597679843
Iteration: 16, Func. Count: 204, Neg. LLF: 124.21824529272163
Iteration: 17, Func. Count: 216, Neg. LLF: 124.21757241128917
Iteration: 18, Func. Count: 228, Neg. LLF: 124.21950330897485
Iteration: 19, Func. Count: 241, Neg. LLF: 124.31619522108522
Iteration: 20, Func. Count: 254, Neg. LLF: 124.31474992652983
Iteration: 21, Func. Count: 267, Neg. LLF: 124.22763523682232
Iteration: 22, Func. Count: 280, Neg. LLF: 124.216791475924
Iteration: 23, Func. Count: 293, Neg. LLF: 124.21672211710326
Iteration: 24, Func. Count: 304, Neg. LLF: 124.2167229753025
Optimization terminated successfully (Exit mode 0)
Current function value: 124.21672211710326
Iterations: 24
Function evaluations: 304
Gradient evaluations: 24
Iteration: 1, Func. Count: 14, Neg. LLF: 66648826.34672509
Iteration: 2, Func. Count: 28, Neg. LLF: 204.90467998187268
Iteration: 3, Func. Count: 43, Neg. LLF: 4219970.987755405
Iteration: 4, Func. Count: 57, Neg. LLF: 160.66742066864762
Iteration: 5, Func. Count: 71, Neg. LLF: 129.33708054074418
Iteration: 6, Func. Count: 84, Neg. LLF: 159.831991404951
Iteration: 7, Func. Count: 101, Neg. LLF: 139.70381281517638
Iteration: 8, Func. Count: 115, Neg. LLF: 262.60632287091966
Iteration: 9, Func. Count: 129, Neg. LLF: 127.7614241708431
Iteration: 10, Func. Count: 143, Neg. LLF: 125.19596389511868
Iteration: 11, Func. Count: 157, Neg. LLF: 124.04811728395643
Iteration: 12, Func. Count: 170, Neg. LLF: 123.42461854983515
Iteration: 13, Func. Count: 183, Neg. LLF: 123.88205052263898
Iteration: 14, Func. Count: 197, Neg. LLF: 123.08305917210005
Iteration: 15, Func. Count: 210, Neg. LLF: 122.80188310561941
Iteration: 16, Func. Count: 223, Neg. LLF: 122.67116660656231
Iteration: 17, Func. Count: 236, Neg. LLF: 122.58541536842627
Iteration: 18, Func. Count: 249, Neg. LLF: 122.56695913872613
Iteration: 19, Func. Count: 262, Neg. LLF: 122.56031607215124
Iteration: 20, Func. Count: 275, Neg. LLF: 122.56004616319863
Iteration: 21, Func. Count: 288, Neg. LLF: 122.56001527883107
Iteration: 22, Func. Count: 301, Neg. LLF: 122.55999972791113
Iteration: 23, Func. Count: 314, Neg. LLF: 122.55999563796836
Optimization terminated successfully (Exit mode 0)
Current function value: 122.5599997250946
Iterations: 23
Function evaluations: 324
Gradient evaluations: 23
Iteration: 1, Func. Count: 15, Neg. LLF: 53237321.970879965
Iteration: 2, Func. Count: 30, Neg. LLF: 295.3550309510717
Iteration: 3, Func. Count: 46, Neg. LLF: 3208938.534152591
Iteration: 4, Func. Count: 61, Neg. LLF: 122.98138631235693
Iteration: 5, Func. Count: 75, Neg. LLF: 145.32059104195167
Iteration: 6, Func. Count: 91, Neg. LLF: 139.6455764140623
Iteration: 7, Func. Count: 109, Neg. LLF: 190.76151709781527
Iteration: 8, Func. Count: 125, Neg. LLF: 120.79430509389331
Iteration: 9, Func. Count: 140, Neg. LLF: 119.44350722877999
Iteration: 10, Func. Count: 154, Neg. LLF: 120.51567116101802
Iteration: 11, Func. Count: 170, Neg. LLF: 122.1714207537102
Iteration: 12, Func. Count: 186, Neg. LLF: 119.39239718980743
Iteration: 13, Func. Count: 200, Neg. LLF: 119.3742328930232
Iteration: 14, Func. Count: 214, Neg. LLF: 119.36935522174883
Iteration: 15, Func. Count: 228, Neg. LLF: 119.36550605792064
Iteration: 16, Func. Count: 242, Neg. LLF: 119.3648095089492
Iteration: 17, Func. Count: 256, Neg. LLF: 119.36478496510878
Iteration: 18, Func. Count: 269, Neg. LLF: 119.36478474981806
Optimization terminated successfully (Exit mode 0)
Current function value: 119.36478496510878
Iterations: 18
Function evaluations: 269
Gradient evaluations: 18
Iteration: 1, Func. Count: 12, Neg. LLF: 141.12252395785524
Iteration: 2, Func. Count: 23, Neg. LLF: 144.58543512044335
Iteration: 3, Func. Count: 38, Neg. LLF: 149.73255884485863
Iteration: 4, Func. Count: 53, Neg. LLF: 139.47975812311176
Iteration: 5, Func. Count: 64, Neg. LLF: 144.3953481638544
Iteration: 6, Func. Count: 76, Neg. LLF: 556.1339129308451
Iteration: 7, Func. Count: 88, Neg. LLF: 2122.498320125376
Iteration: 8, Func. Count: 100, Neg. LLF: 1754.3186575624163
Iteration: 9, Func. Count: 112, Neg. LLF: 1316.8196487590578
Iteration: 10, Func. Count: 124, Neg. LLF: 146.98823297878286
Iteration: 11, Func. Count: 136, Neg. LLF: 393.8134637476679
Iteration: 12, Func. Count: 148, Neg. LLF: 93730125.81496176
Iteration: 13, Func. Count: 163, Neg. LLF: 131.1047181444756
Iteration: 14, Func. Count: 175, Neg. LLF: 91939.92842144132
Iteration: 15, Func. Count: 187, Neg. LLF: 88075.34076312413
Iteration: 16, Func. Count: 199, Neg. LLF: 86031.10645215238
Iteration: 17, Func. Count: 211, Neg. LLF: 561.5379182831675
Iteration: 18, Func. Count: 223, Neg. LLF: 204.10211270820432
Iteration: 19, Func. Count: 236, Neg. LLF: 15639.125140449905
Iteration: 20, Func. Count: 248, Neg. LLF: 352807.7056824526
Iteration: 21, Func. Count: 260, Neg. LLF: 347.9679813943265
Iteration: 22, Func. Count: 272, Neg. LLF: 139.47451366592915
Iteration: 23, Func. Count: 284, Neg. LLF: 133.6901810584235
Iteration: 24, Func. Count: 296, Neg. LLF: 131.93985387110988
Iteration: 25, Func. Count: 308, Neg. LLF: 131.22691595997688
Iteration: 26, Func. Count: 320, Neg. LLF: 130.8635680804995
Iteration: 27, Func. Count: 332, Neg. LLF: 120.50493746770668
Iteration: 28, Func. Count: 344, Neg. LLF: 119.84294381208296
Iteration: 29, Func. Count: 355, Neg. LLF: 127.74198256060559
Iteration: 30, Func. Count: 367, Neg. LLF: 120.52251344058081
Iteration: 31, Func. Count: 379, Neg. LLF: 119.80599463998318
Iteration: 32, Func. Count: 390, Neg. LLF: 119.80554404901329
Iteration: 33, Func. Count: 401, Neg. LLF: 119.80544881960601
Iteration: 34, Func. Count: 412, Neg. LLF: 119.80544068255307
Iteration: 35, Func. Count: 423, Neg. LLF: 119.80543997125025
Optimization terminated successfully (Exit mode 0)
Current function value: 119.80543997125025
Iterations: 36
Function evaluations: 423
Gradient evaluations: 35
Iteration: 1, Func. Count: 13, Neg. LLF: 64311720.48544647
Iteration: 2, Func. Count: 26, Neg. LLF: 933.6310366047431
Iteration: 3, Func. Count: 42, Neg. LLF: 303.2264834084664
Iteration: 4, Func. Count: 55, Neg. LLF: 148.62721818090648
Iteration: 5, Func. Count: 69, Neg. LLF: 133.3299629543582
Iteration: 6, Func. Count: 82, Neg. LLF: 131.34592163654224
Iteration: 7, Func. Count: 95, Neg. LLF: 123.70863480504731
Iteration: 8, Func. Count: 107, Neg. LLF: 123.98134279346426
Iteration: 9, Func. Count: 120, Neg. LLF: 128.72915593715905
Iteration: 10, Func. Count: 134, Neg. LLF: 122.69286708892659
Iteration: 11, Func. Count: 146, Neg. LLF: 122.61335591167577
Iteration: 12, Func. Count: 158, Neg. LLF: 122.60248902063533
Iteration: 13, Func. Count: 170, Neg. LLF: 122.6023780298004
Iteration: 14, Func. Count: 182, Neg. LLF: 122.60237698084809
Iteration: 15, Func. Count: 193, Neg. LLF: 122.60237667797645
Optimization terminated successfully (Exit mode 0)
Current function value: 122.60237698084809
Iterations: 15
Function evaluations: 193
Gradient evaluations: 15
Iteration: 1, Func. Count: 14, Neg. LLF: 79193339.93021193
Iteration: 2, Func. Count: 28, Neg. LLF: 170.31489080504664
Iteration: 3, Func. Count: 42, Neg. LLF: 21536836.45538261
Iteration: 4, Func. Count: 57, Neg. LLF: 123.74040459035147
Iteration: 5, Func. Count: 70, Neg. LLF: 207.28438725524651
Iteration: 6, Func. Count: 85, Neg. LLF: 127.34697530027783
Iteration: 7, Func. Count: 99, Neg. LLF: 157.88242574946932
Iteration: 8, Func. Count: 114, Neg. LLF: 137.07751463437128
Iteration: 9, Func. Count: 128, Neg. LLF: 121.81797400814989
Iteration: 10, Func. Count: 141, Neg. LLF: 121.76728859453061
Iteration: 11, Func. Count: 154, Neg. LLF: 121.7639214335901
Iteration: 12, Func. Count: 167, Neg. LLF: 121.76381535561373
Iteration: 13, Func. Count: 180, Neg. LLF: 121.76377115252954
Iteration: 14, Func. Count: 193, Neg. LLF: 121.76375170414727
Iteration: 15, Func. Count: 206, Neg. LLF: 121.76374980075278
Iteration: 16, Func. Count: 218, Neg. LLF: 121.76374963062194
Optimization terminated successfully (Exit mode 0)
Current function value: 121.76374980075278
Iterations: 16
Function evaluations: 218
Gradient evaluations: 16
Iteration: 1, Func. Count: 15, Neg. LLF: 67743894.66885546
Iteration: 2, Func. Count: 30, Neg. LLF: 199.57891676572547
Iteration: 3, Func. Count: 46, Neg. LLF: 18867148.99265811
Iteration: 4, Func. Count: 61, Neg. LLF: 133.0553872300338
Iteration: 5, Func. Count: 76, Neg. LLF: 128.23706981545575
Iteration: 6, Func. Count: 91, Neg. LLF: 174.9380150385852
Iteration: 7, Func. Count: 108, Neg. LLF: 122.42121161351913
Iteration: 8, Func. Count: 122, Neg. LLF: 141.3989756304779
Iteration: 9, Func. Count: 137, Neg. LLF: 122.25318150560413
Iteration: 10, Func. Count: 152, Neg. LLF: 121.78039246568032
Iteration: 11, Func. Count: 166, Neg. LLF: 123.39698775972326
Iteration: 12, Func. Count: 182, Neg. LLF: 121.76468703444087
Iteration: 13, Func. Count: 196, Neg. LLF: 121.76357511726206
Iteration: 14, Func. Count: 210, Neg. LLF: 121.7633032511506
Iteration: 15, Func. Count: 224, Neg. LLF: 121.7632508741504
Iteration: 16, Func. Count: 238, Neg. LLF: 121.76325027232133
Optimization terminated successfully (Exit mode 0)
Current function value: 121.76325027232133
Iterations: 16
Function evaluations: 238
Gradient evaluations: 16
Iteration: 1, Func. Count: 16, Neg. LLF: 53957425.18405118
Iteration: 2, Func. Count: 32, Neg. LLF: 279.4130992595229
Iteration: 3, Func. Count: 49, Neg. LLF: 3891229.909400257
Iteration: 4, Func. Count: 65, Neg. LLF: 137.64403594737112
Iteration: 5, Func. Count: 81, Neg. LLF: 147.58083698562515
Iteration: 6, Func. Count: 97, Neg. LLF: 126.81907312177617
Iteration: 7, Func. Count: 113, Neg. LLF: 165.66680237984886
Iteration: 8, Func. Count: 130, Neg. LLF: 129.2026280567036
Iteration: 9, Func. Count: 146, Neg. LLF: 122.54062545801497
Iteration: 10, Func. Count: 161, Neg. LLF: 126.36608843878273
Iteration: 11, Func. Count: 179, Neg. LLF: 121.80048756594086
Iteration: 12, Func. Count: 194, Neg. LLF: 121.78301293816115
Iteration: 13, Func. Count: 209, Neg. LLF: 121.76408752993282
Iteration: 14, Func. Count: 224, Neg. LLF: 121.76344289388592
Iteration: 15, Func. Count: 239, Neg. LLF: 121.76325601084498
Iteration: 16, Func. Count: 254, Neg. LLF: 121.76325079878039
Iteration: 17, Func. Count: 268, Neg. LLF: 121.76325070444791
Optimization terminated successfully (Exit mode 0)
Current function value: 121.76325079878039
Iterations: 17
Function evaluations: 268
Gradient evaluations: 17
Iteration: 1, Func. Count: 10, Neg. LLF: 26394541.744491927
Iteration: 2, Func. Count: 20, Neg. LLF: 2472817198.7912216
Iteration: 3, Func. Count: 31, Neg. LLF: 6611129.159646028
Iteration: 4, Func. Count: 41, Neg. LLF: 158.16245538101643
Iteration: 5, Func. Count: 51, Neg. LLF: 148.0991463921323
Iteration: 6, Func. Count: 61, Neg. LLF: 125.2856439590537
Iteration: 7, Func. Count: 71, Neg. LLF: 119.72647543460579
Iteration: 8, Func. Count: 80, Neg. LLF: 119.88576240812577
Iteration: 9, Func. Count: 90, Neg. LLF: 119.52370637034645
Iteration: 10, Func. Count: 99, Neg. LLF: 119.4552117637096
Iteration: 11, Func. Count: 108, Neg. LLF: 119.4504359915029
Iteration: 12, Func. Count: 117, Neg. LLF: 119.4496188911573
Iteration: 13, Func. Count: 126, Neg. LLF: 119.44951521546321
Iteration: 14, Func. Count: 135, Neg. LLF: 119.44950714925459
Iteration: 15, Func. Count: 143, Neg. LLF: 119.4495069133393
Optimization terminated successfully (Exit mode 0)
Current function value: 119.44950714925459
Iterations: 15
Function evaluations: 143
Gradient evaluations: 15
Iteration: 1, Func. Count: 5, Neg. LLF: 135.99440311702895
Iteration: 2, Func. Count: 9, Neg. LLF: 150.321764636906
Iteration: 3, Func. Count: 14, Neg. LLF: 135.15678817364406
Iteration: 4, Func. Count: 18, Neg. LLF: 133.5981757367823
Iteration: 5, Func. Count: 22, Neg. LLF: 133.58772037550008
Iteration: 6, Func. Count: 26, Neg. LLF: 133.58714133048463
Iteration: 7, Func. Count: 30, Neg. LLF: 133.58675432009727
Iteration: 8, Func. Count: 34, Neg. LLF: 133.58674099815835
Iteration: 9, Func. Count: 37, Neg. LLF: 133.5867410227239
Optimization terminated successfully (Exit mode 0)
Current function value: 133.58674099815835
Iterations: 9
Function evaluations: 37
Gradient evaluations: 9
Iteration: 1, Func. Count: 6, Neg. LLF: 85512556.19438809
Iteration: 2, Func. Count: 12, Neg. LLF: 122259.76531088636
Iteration: 3, Func. Count: 18, Neg. LLF: 1014683.0866701842
Iteration: 4, Func. Count: 25, Neg. LLF: 188.2986415050183
Iteration: 5, Func. Count: 31, Neg. LLF: 110.59403154781126
Iteration: 6, Func. Count: 37, Neg. LLF: 107.32433790659297
Iteration: 7, Func. Count: 43, Neg. LLF: 107.84715650532281
Iteration: 8, Func. Count: 49, Neg. LLF: 106.8605035476273
Iteration: 9, Func. Count: 55, Neg. LLF: 106.76071306144514
Iteration: 10, Func. Count: 60, Neg. LLF: 106.7383327451169
Iteration: 11, Func. Count: 65, Neg. LLF: 106.75784336853047
Iteration: 12, Func. Count: 71, Neg. LLF: 106.73745285904592
Iteration: 13, Func. Count: 77, Neg. LLF: 106.66542142969683
Iteration: 14, Func. Count: 83, Neg. LLF: 106.63517682443475
Iteration: 15, Func. Count: 88, Neg. LLF: 106.63276278850789
Iteration: 16, Func. Count: 93, Neg. LLF: 106.63275385787279
Iteration: 17, Func. Count: 98, Neg. LLF: 106.63275002902844
Iteration: 18, Func. Count: 102, Neg. LLF: 106.63275002903984
Optimization terminated successfully (Exit mode 0)
Current function value: 106.63275002902844
Iterations: 18
Function evaluations: 102
Gradient evaluations: 18
Iteration: 1, Func. Count: 7, Neg. LLF: 51872626.47010989
Iteration: 2, Func. Count: 14, Neg. LLF: 979.3447522189524
Iteration: 3, Func. Count: 22, Neg. LLF: 7976886.8640293805
Iteration: 4, Func. Count: 29, Neg. LLF: 140.20600961774934
Iteration: 5, Func. Count: 36, Neg. LLF: 24009.628681056845
Iteration: 6, Func. Count: 43, Neg. LLF: 138.12793422543302
Iteration: 7, Func. Count: 50, Neg. LLF: 107.47801138207882
Iteration: 8, Func. Count: 56, Neg. LLF: 106.78164531695681
Iteration: 9, Func. Count: 62, Neg. LLF: 106.78372317372205
Iteration: 10, Func. Count: 69, Neg. LLF: 106.77581932284717
Iteration: 11, Func. Count: 75, Neg. LLF: 106.76561369878507
Iteration: 12, Func. Count: 81, Neg. LLF: 106.79519872466273
Iteration: 13, Func. Count: 88, Neg. LLF: 106.79183679457564
Iteration: 14, Func. Count: 95, Neg. LLF: 106.75455135245775
Iteration: 15, Func. Count: 102, Neg. LLF: 106.68528474809068
Iteration: 16, Func. Count: 109, Neg. LLF: 106.641423463535
Iteration: 17, Func. Count: 115, Neg. LLF: 106.63433015508788
Iteration: 18, Func. Count: 121, Neg. LLF: 106.63336985381653
Iteration: 19, Func. Count: 127, Neg. LLF: 106.63276222650538
Iteration: 20, Func. Count: 133, Neg. LLF: 106.63275031272555
Iteration: 21, Func. Count: 138, Neg. LLF: 106.6327503632267
Optimization terminated successfully (Exit mode 0)
Current function value: 106.63275031272555
Iterations: 21
Function evaluations: 138
Gradient evaluations: 21
Iteration: 1, Func. Count: 8, Neg. LLF: 21042750.07232376
Iteration: 2, Func. Count: 16, Neg. LLF: 136241612.7266205
Iteration: 3, Func. Count: 24, Neg. LLF: 626481.5835888097
Iteration: 4, Func. Count: 32, Neg. LLF: 8243671.156152022
Iteration: 5, Func. Count: 40, Neg. LLF: 157.4398507526849
Iteration: 6, Func. Count: 48, Neg. LLF: 191.7228431303015
Iteration: 7, Func. Count: 56, Neg. LLF: 139.0058924675835
Iteration: 8, Func. Count: 64, Neg. LLF: 174.58658854339356
Iteration: 9, Func. Count: 72, Neg. LLF: 168.71612152602833
Iteration: 10, Func. Count: 80, Neg. LLF: 144.51409746219267
Iteration: 11, Func. Count: 88, Neg. LLF: 154.17305575428446
Iteration: 12, Func. Count: 96, Neg. LLF: 109.51093311276733
Iteration: 13, Func. Count: 104, Neg. LLF: 107.56858911820692
Iteration: 14, Func. Count: 112, Neg. LLF: 107.26907124279627
Iteration: 15, Func. Count: 119, Neg. LLF: 107.2583937718137
Iteration: 16, Func. Count: 127, Neg. LLF: 107.05972244277643
Iteration: 17, Func. Count: 134, Neg. LLF: 106.91056071931585
Iteration: 18, Func. Count: 141, Neg. LLF: 106.77717746909708
Iteration: 19, Func. Count: 148, Neg. LLF: 106.77556829251608
Iteration: 20, Func. Count: 155, Neg. LLF: 106.7750502861398
Iteration: 21, Func. Count: 162, Neg. LLF: 106.77498307058133
Iteration: 22, Func. Count: 168, Neg. LLF: 106.77498313931248
Optimization terminated successfully (Exit mode 0)
Current function value: 106.77498307058133
Iterations: 22
Function evaluations: 168
Gradient evaluations: 22
Iteration: 1, Func. Count: 9, Neg. LLF: 18181043.329707835
Iteration: 2, Func. Count: 18, Neg. LLF: 144561220.7351261
Iteration: 3, Func. Count: 27, Neg. LLF: 723614.1536904374
Iteration: 4, Func. Count: 36, Neg. LLF: 7511877.822409819
Iteration: 5, Func. Count: 45, Neg. LLF: 207.7950126365178
Iteration: 6, Func. Count: 54, Neg. LLF: 213.4841845906692
Iteration: 7, Func. Count: 63, Neg. LLF: 200.2269298135045
Iteration: 8, Func. Count: 72, Neg. LLF: 152.670874436947
Iteration: 9, Func. Count: 81, Neg. LLF: 197.64871255788356
Iteration: 10, Func. Count: 90, Neg. LLF: 126.23353840554762
Iteration: 11, Func. Count: 99, Neg. LLF: 154.89115146726039
Iteration: 12, Func. Count: 108, Neg. LLF: 108.30993683762078
Iteration: 13, Func. Count: 117, Neg. LLF: 107.56037761102716
Iteration: 14, Func. Count: 126, Neg. LLF: 107.20586422181172
Iteration: 15, Func. Count: 134, Neg. LLF: 107.168780205985
Iteration: 16, Func. Count: 142, Neg. LLF: 107.14239343345417
Iteration: 17, Func. Count: 150, Neg. LLF: 107.14137097624807
Iteration: 18, Func. Count: 158, Neg. LLF: 107.1404037031448
Iteration: 19, Func. Count: 166, Neg. LLF: 107.13414497627353
Iteration: 20, Func. Count: 174, Neg. LLF: 107.13287993544735
Iteration: 21, Func. Count: 183, Neg. LLF: 107.11745714573291
Iteration: 22, Func. Count: 191, Neg. LLF: 107.11536353869406
Iteration: 23, Func. Count: 199, Neg. LLF: 107.11517964971857
Iteration: 24, Func. Count: 207, Neg. LLF: 107.11515548448185
Iteration: 25, Func. Count: 214, Neg. LLF: 107.11515543170016
Optimization terminated successfully (Exit mode 0)
Current function value: 107.11515548448185
Iterations: 25
Function evaluations: 214
Gradient evaluations: 25
Iteration: 1, Func. Count: 6, Neg. LLF: 129.98720293088277
Iteration: 2, Func. Count: 11, Neg. LLF: 139.97571782514544
Iteration: 3, Func. Count: 17, Neg. LLF: 127.06812234288877
Iteration: 4, Func. Count: 22, Neg. LLF: 146.75648618462415
Iteration: 5, Func. Count: 28, Neg. LLF: 288974.0863540093
Iteration: 6, Func. Count: 34, Neg. LLF: 293334.78574166814
Iteration: 7, Func. Count: 40, Neg. LLF: 295827.4986383559
Iteration: 8, Func. Count: 46, Neg. LLF: 295807.42642591865
Iteration: 9, Func. Count: 52, Neg. LLF: 295200.8557952421
Iteration: 10, Func. Count: 58, Neg. LLF: 680211.0324103476
Iteration: 11, Func. Count: 64, Neg. LLF: 110.01186807128019
Iteration: 12, Func. Count: 69, Neg. LLF: 530024.4477140112
Iteration: 13, Func. Count: 75, Neg. LLF: 1856623.6316291604
Iteration: 14, Func. Count: 81, Neg. LLF: 521548.0444869168
Iteration: 15, Func. Count: 87, Neg. LLF: 115.67555078864059
Iteration: 16, Func. Count: 94, Neg. LLF: 108.0099064474633
Iteration: 17, Func. Count: 99, Neg. LLF: 107.99291606381313
Iteration: 18, Func. Count: 104, Neg. LLF: 107.9912735245033
Iteration: 19, Func. Count: 109, Neg. LLF: 107.99121527841895
Iteration: 20, Func. Count: 113, Neg. LLF: 107.99121519575027
Optimization terminated successfully (Exit mode 0)
Current function value: 107.99121527841895
Iterations: 21
Function evaluations: 113
Gradient evaluations: 20
Iteration: 1, Func. Count: 7, Neg. LLF: 83804351.70162277
Iteration: 2, Func. Count: 14, Neg. LLF: 179.4365391516403
Iteration: 3, Func. Count: 21, Neg. LLF: 348366200.1828093
Iteration: 4, Func. Count: 29, Neg. LLF: 135.1679505976999
Iteration: 5, Func. Count: 36, Neg. LLF: 123.03372482370281
Iteration: 6, Func. Count: 43, Neg. LLF: 124.3961577564243
Iteration: 7, Func. Count: 50, Neg. LLF: 104.81078653889348
Iteration: 8, Func. Count: 56, Neg. LLF: 104.47351450455564
Iteration: 9, Func. Count: 62, Neg. LLF: 104.34632073589202
Iteration: 10, Func. Count: 68, Neg. LLF: 104.34419129122938
Iteration: 11, Func. Count: 74, Neg. LLF: 104.34415483546222
Iteration: 12, Func. Count: 80, Neg. LLF: 104.34415400804005
Optimization terminated successfully (Exit mode 0)
Current function value: 104.34415400804005
Iterations: 12
Function evaluations: 80
Gradient evaluations: 12
Iteration: 1, Func. Count: 8, Neg. LLF: 50644093.899982445
Iteration: 2, Func. Count: 16, Neg. LLF: 1841.1133605043378
Iteration: 3, Func. Count: 25, Neg. LLF: 3581779.74286514
Iteration: 4, Func. Count: 33, Neg. LLF: 916359.9887813107
Iteration: 5, Func. Count: 41, Neg. LLF: 107.01375688898277
Iteration: 6, Func. Count: 48, Neg. LLF: 215.5183106515332
Iteration: 7, Func. Count: 57, Neg. LLF: 104.8700413750216
Iteration: 8, Func. Count: 64, Neg. LLF: 104.56492474162853
Iteration: 9, Func. Count: 71, Neg. LLF: 104.40031896713334
Iteration: 10, Func. Count: 78, Neg. LLF: 104.4368645786288
Iteration: 11, Func. Count: 86, Neg. LLF: 104.3253569483195
Iteration: 12, Func. Count: 94, Neg. LLF: 103.81054597088902
Iteration: 13, Func. Count: 101, Neg. LLF: 103.73783844678259
Iteration: 14, Func. Count: 108, Neg. LLF: 103.708624757073
Iteration: 15, Func. Count: 115, Neg. LLF: 103.69742895446751
Iteration: 16, Func. Count: 122, Neg. LLF: 103.68644015314062
Iteration: 17, Func. Count: 129, Neg. LLF: 103.67893789703578
Iteration: 18, Func. Count: 136, Neg. LLF: 103.6724266472742
Iteration: 19, Func. Count: 143, Neg. LLF: 103.66342768446523
Iteration: 20, Func. Count: 150, Neg. LLF: 103.67247820953948
Iteration: 21, Func. Count: 158, Neg. LLF: 103.66095510590674
Iteration: 22, Func. Count: 165, Neg. LLF: 103.66076997269026
Iteration: 23, Func. Count: 172, Neg. LLF: 103.66035089617057
Iteration: 24, Func. Count: 179, Neg. LLF: 103.65997565941251
Iteration: 25, Func. Count: 186, Neg. LLF: 103.65981419588236
Iteration: 26, Func. Count: 193, Neg. LLF: 103.6597932782609
Iteration: 27, Func. Count: 200, Neg. LLF: 103.65979250716286
Optimization terminated successfully (Exit mode 0)
Current function value: 103.65979250716286
Iterations: 27
Function evaluations: 200
Gradient evaluations: 27
Iteration: 1, Func. Count: 9, Neg. LLF: 20852833.861246385
Iteration: 2, Func. Count: 18, Neg. LLF: 144621246.2318319
Iteration: 3, Func. Count: 27, Neg. LLF: 806853.7414980609
Iteration: 4, Func. Count: 36, Neg. LLF: 10573249.349646144
Iteration: 5, Func. Count: 45, Neg. LLF: 123.30948526771076
Iteration: 6, Func. Count: 54, Neg. LLF: 187.18695740856325
Iteration: 7, Func. Count: 63, Neg. LLF: 190.9743190627511
Iteration: 8, Func. Count: 72, Neg. LLF: 164.71740348774773
Iteration: 9, Func. Count: 81, Neg. LLF: 111.9184035431525
Iteration: 10, Func. Count: 90, Neg. LLF: 103.48995373601709
Iteration: 11, Func. Count: 98, Neg. LLF: 102.91660150772586
Iteration: 12, Func. Count: 106, Neg. LLF: 102.4503302022566
Iteration: 13, Func. Count: 114, Neg. LLF: 101.89865467104781
Iteration: 14, Func. Count: 122, Neg. LLF: 101.79569792183496
Iteration: 15, Func. Count: 130, Neg. LLF: 101.79447599533714
Iteration: 16, Func. Count: 138, Neg. LLF: 101.79436863477724
Iteration: 17, Func. Count: 146, Neg. LLF: 101.79436335495117
Iteration: 18, Func. Count: 154, Neg. LLF: 101.79436242286641
Optimization terminated successfully (Exit mode 0)
Current function value: 101.79436242286641
Iterations: 18
Function evaluations: 154
Gradient evaluations: 18
Iteration: 1, Func. Count: 10, Neg. LLF: 17985426.196562696
Iteration: 2, Func. Count: 20, Neg. LLF: 149424293.52625993
Iteration: 3, Func. Count: 30, Neg. LLF: 845960.8143810561
Iteration: 4, Func. Count: 40, Neg. LLF: 9968591.763889184
Iteration: 5, Func. Count: 50, Neg. LLF: 173.15155988029437
Iteration: 6, Func. Count: 60, Neg. LLF: 269.5227769885469
Iteration: 7, Func. Count: 70, Neg. LLF: 273.70101796506833
Iteration: 8, Func. Count: 80, Neg. LLF: 267.01917826795415
Iteration: 9, Func. Count: 90, Neg. LLF: 236.39436959315867
Iteration: 10, Func. Count: 100, Neg. LLF: 194.98356896502395
Iteration: 11, Func. Count: 110, Neg. LLF: 109.79766913049009
Iteration: 12, Func. Count: 120, Neg. LLF: 105.09272330116487
Iteration: 13, Func. Count: 130, Neg. LLF: 103.02490436444629
Iteration: 14, Func. Count: 139, Neg. LLF: 102.56601210982338
Iteration: 15, Func. Count: 148, Neg. LLF: 102.1821872918156
Iteration: 16, Func. Count: 157, Neg. LLF: 101.80387650612118
Iteration: 17, Func. Count: 166, Neg. LLF: 101.79571559779215
Iteration: 18, Func. Count: 175, Neg. LLF: 101.79445490607185
Iteration: 19, Func. Count: 184, Neg. LLF: 101.79436570854972
Iteration: 20, Func. Count: 193, Neg. LLF: 101.79436242868
Iteration: 21, Func. Count: 201, Neg. LLF: 101.79436250565458
Optimization terminated successfully (Exit mode 0)
Current function value: 101.79436242868
Iterations: 21
Function evaluations: 201
Gradient evaluations: 21
Iteration: 1, Func. Count: 7, Neg. LLF: 130.0250395986191
Iteration: 2, Func. Count: 13, Neg. LLF: 140.11437228638667
Iteration: 3, Func. Count: 20, Neg. LLF: 127.12349104222916
Iteration: 4, Func. Count: 26, Neg. LLF: 134.9920639953338
Iteration: 5, Func. Count: 33, Neg. LLF: 291590.4936257096
Iteration: 6, Func. Count: 40, Neg. LLF: 294979.2128994725
Iteration: 7, Func. Count: 47, Neg. LLF: 294460.3283398475
Iteration: 8, Func. Count: 54, Neg. LLF: 71510.3384045987
Iteration: 9, Func. Count: 61, Neg. LLF: 143.97202076771575
Iteration: 10, Func. Count: 68, Neg. LLF: 122.64052942741283
Iteration: 11, Func. Count: 75, Neg. LLF: 150258.88467764712
Iteration: 12, Func. Count: 82, Neg. LLF: 14746.134483402873
Iteration: 13, Func. Count: 89, Neg. LLF: 142135.87581970482
Iteration: 14, Func. Count: 96, Neg. LLF: 141608.42067257216
Iteration: 15, Func. Count: 103, Neg. LLF: 273482.68601860665
Iteration: 16, Func. Count: 110, Neg. LLF: 822.8111187747443
Iteration: 17, Func. Count: 117, Neg. LLF: 42685.155027162036
Iteration: 18, Func. Count: 124, Neg. LLF: 9745.957715099421
Iteration: 19, Func. Count: 131, Neg. LLF: 526995.2292320336
Iteration: 20, Func. Count: 138, Neg. LLF: 107.07027901114365
Iteration: 21, Func. Count: 145, Neg. LLF: 106.7464074836804
Iteration: 22, Func. Count: 151, Neg. LLF: 106.73657153813808
Iteration: 23, Func. Count: 157, Neg. LLF: 106.72057554656026
Iteration: 24, Func. Count: 163, Neg. LLF: 106.72021564120686
Iteration: 25, Func. Count: 169, Neg. LLF: 106.72020274453679
Iteration: 26, Func. Count: 175, Neg. LLF: 106.72020154066934
Iteration: 27, Func. Count: 180, Neg. LLF: 106.72020145515107
Optimization terminated successfully (Exit mode 0)
Current function value: 106.72020154066934
Iterations: 28
Function evaluations: 180
Gradient evaluations: 27
Iteration: 1, Func. Count: 8, Neg. LLF: 81838253.98363294
Iteration: 2, Func. Count: 16, Neg. LLF: 181.90254415680747
Iteration: 3, Func. Count: 25, Neg. LLF: 3710566.3981312807
Iteration: 4, Func. Count: 33, Neg. LLF: 123.46516004760122
Iteration: 5, Func. Count: 41, Neg. LLF: 113.34309150578045
Iteration: 6, Func. Count: 49, Neg. LLF: 104.50323450250627
Iteration: 7, Func. Count: 56, Neg. LLF: 104.38551673159078
Iteration: 8, Func. Count: 63, Neg. LLF: 104.34626284269733
Iteration: 9, Func. Count: 70, Neg. LLF: 104.34419933401044
Iteration: 10, Func. Count: 77, Neg. LLF: 104.34415397945942
Iteration: 11, Func. Count: 83, Neg. LLF: 104.344153889233
Optimization terminated successfully (Exit mode 0)
Current function value: 104.34415397945942
Iterations: 11
Function evaluations: 83
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 49210292.69907352
Iteration: 2, Func. Count: 18, Neg. LLF: 2693.695788064214
Iteration: 3, Func. Count: 29, Neg. LLF: 6996332.280100004
Iteration: 4, Func. Count: 38, Neg. LLF: 326217.99817001284
Iteration: 5, Func. Count: 47, Neg. LLF: 135.20974867230487
Iteration: 6, Func. Count: 56, Neg. LLF: 122.47614926468606
Iteration: 7, Func. Count: 65, Neg. LLF: 105.05838350030825
Iteration: 8, Func. Count: 73, Neg. LLF: 104.45756779588159
Iteration: 9, Func. Count: 81, Neg. LLF: 106.22353187433643
Iteration: 10, Func. Count: 90, Neg. LLF: 105.0263992708743
Iteration: 11, Func. Count: 99, Neg. LLF: 104.05222657166308
Iteration: 12, Func. Count: 107, Neg. LLF: 103.78576379522657
Iteration: 13, Func. Count: 115, Neg. LLF: 103.71690514911462
Iteration: 14, Func. Count: 123, Neg. LLF: 103.70344390649765
Iteration: 15, Func. Count: 131, Neg. LLF: 103.69639574789372
Iteration: 16, Func. Count: 139, Neg. LLF: 103.68595725194238
Iteration: 17, Func. Count: 147, Neg. LLF: 103.68078253041021
Iteration: 18, Func. Count: 155, Neg. LLF: 103.69460578120419
Iteration: 19, Func. Count: 164, Neg. LLF: 103.70317125867412
Iteration: 20, Func. Count: 173, Neg. LLF: 103.69345508890332
Iteration: 21, Func. Count: 182, Neg. LLF: 103.66417250031023
Iteration: 22, Func. Count: 190, Neg. LLF: 103.66930271298546
Iteration: 23, Func. Count: 199, Neg. LLF: 103.66236820763498
Iteration: 24, Func. Count: 208, Neg. LLF: 103.6599246504218
Iteration: 25, Func. Count: 216, Neg. LLF: 103.6597934452579
Iteration: 26, Func. Count: 224, Neg. LLF: 103.6597923885566
Iteration: 27, Func. Count: 231, Neg. LLF: 103.65979224248312
Optimization terminated successfully (Exit mode 0)
Current function value: 103.6597923885566
Iterations: 27
Function evaluations: 231
Gradient evaluations: 27
Iteration: 1, Func. Count: 10, Neg. LLF: 20616531.910846848
Iteration: 2, Func. Count: 20, Neg. LLF: 148497345.92110458
Iteration: 3, Func. Count: 30, Neg. LLF: 759460.3153097301
Iteration: 4, Func. Count: 40, Neg. LLF: 11349788.274139374
Iteration: 5, Func. Count: 50, Neg. LLF: 121.07780755746838
Iteration: 6, Func. Count: 60, Neg. LLF: 363.06975742384947
Iteration: 7, Func. Count: 70, Neg. LLF: 197.30290347111657
Iteration: 8, Func. Count: 80, Neg. LLF: 116.51661774473186
Iteration: 9, Func. Count: 90, Neg. LLF: 104.15988427330511
Iteration: 10, Func. Count: 99, Neg. LLF: 103.00806124936636
Iteration: 11, Func. Count: 108, Neg. LLF: 102.67007768949223
Iteration: 12, Func. Count: 117, Neg. LLF: 102.01417936923133
Iteration: 13, Func. Count: 126, Neg. LLF: 101.82525926191042
Iteration: 14, Func. Count: 135, Neg. LLF: 101.80431217053835
Iteration: 15, Func. Count: 144, Neg. LLF: 101.79568764476106
Iteration: 16, Func. Count: 153, Neg. LLF: 101.79446832015952
Iteration: 17, Func. Count: 162, Neg. LLF: 101.79436264808682
Iteration: 18, Func. Count: 170, Neg. LLF: 101.79436253544912
Optimization terminated successfully (Exit mode 0)
Current function value: 101.79436264808682
Iterations: 18
Function evaluations: 170
Gradient evaluations: 18
Iteration: 1, Func. Count: 11, Neg. LLF: 17772956.484413505
Iteration: 2, Func. Count: 22, Neg. LLF: 150002688.1139041
Iteration: 3, Func. Count: 33, Neg. LLF: 825767.4567585835
Iteration: 4, Func. Count: 44, Neg. LLF: 10095819.06423995
Iteration: 5, Func. Count: 55, Neg. LLF: 173.70272439298046
Iteration: 6, Func. Count: 66, Neg. LLF: 270.2563922947807
Iteration: 7, Func. Count: 77, Neg. LLF: 269.83421057698166
Iteration: 8, Func. Count: 88, Neg. LLF: 271.55411755219296
Iteration: 9, Func. Count: 99, Neg. LLF: 231.541205258285
Iteration: 10, Func. Count: 110, Neg. LLF: 198.58390607376697
Iteration: 11, Func. Count: 121, Neg. LLF: 111.5458631150918
Iteration: 12, Func. Count: 132, Neg. LLF: 105.04139403664453
Iteration: 13, Func. Count: 143, Neg. LLF: 103.29036045330588
Iteration: 14, Func. Count: 153, Neg. LLF: 102.71515360362417
Iteration: 15, Func. Count: 163, Neg. LLF: 102.12368747911631
Iteration: 16, Func. Count: 173, Neg. LLF: 101.79866103114676
Iteration: 17, Func. Count: 183, Neg. LLF: 101.79452590595274
Iteration: 18, Func. Count: 193, Neg. LLF: 101.79437594429001
Iteration: 19, Func. Count: 203, Neg. LLF: 101.79436578806047
Iteration: 20, Func. Count: 213, Neg. LLF: 101.79436242269328
Iteration: 21, Func. Count: 222, Neg. LLF: 101.79436249968671
Optimization terminated successfully (Exit mode 0)
Current function value: 101.79436242269328
Iterations: 21
Function evaluations: 222
Gradient evaluations: 21
Iteration: 1, Func. Count: 8, Neg. LLF: 130.196586159304
Iteration: 2, Func. Count: 15, Neg. LLF: 145.83637941578715
Iteration: 3, Func. Count: 23, Neg. LLF: 127.49420642697675
Iteration: 4, Func. Count: 30, Neg. LLF: 469748.2496905079
Iteration: 5, Func. Count: 38, Neg. LLF: 399979.48581787554
Iteration: 6, Func. Count: 46, Neg. LLF: 392617.12326547585
Iteration: 7, Func. Count: 54, Neg. LLF: 387278.1591881561
Iteration: 8, Func. Count: 62, Neg. LLF: 927.7116783764498
Iteration: 9, Func. Count: 70, Neg. LLF: 120.08597027748866
Iteration: 10, Func. Count: 78, Neg. LLF: 206.22382746925427
Iteration: 11, Func. Count: 86, Neg. LLF: 512378.39026009577
Iteration: 12, Func. Count: 94, Neg. LLF: 526958.9569961415
Iteration: 13, Func. Count: 102, Neg. LLF: 741612.1567822098
Iteration: 14, Func. Count: 110, Neg. LLF: 741945.6077829004
Iteration: 15, Func. Count: 118, Neg. LLF: 745007.2279592266
Iteration: 16, Func. Count: 126, Neg. LLF: 514759.90092084924
Iteration: 17, Func. Count: 134, Neg. LLF: 339659.5923447951
Iteration: 18, Func. Count: 142, Neg. LLF: 43321.916405216056
Iteration: 19, Func. Count: 150, Neg. LLF: 127.61896613788232
Iteration: 20, Func. Count: 158, Neg. LLF: 107.19693199234662
Iteration: 21, Func. Count: 166, Neg. LLF: 122.91066220018112
Iteration: 22, Func. Count: 174, Neg. LLF: 103.9769501658252
Iteration: 23, Func. Count: 181, Neg. LLF: 103.9648208697607
Iteration: 24, Func. Count: 188, Neg. LLF: 103.96439615190938
Iteration: 25, Func. Count: 195, Neg. LLF: 103.96430739359641
Iteration: 26, Func. Count: 202, Neg. LLF: 103.96430284000832
Iteration: 27, Func. Count: 208, Neg. LLF: 103.96430276322941
Optimization terminated successfully (Exit mode 0)
Current function value: 103.96430284000832
Iterations: 28
Function evaluations: 208
Gradient evaluations: 27
Iteration: 1, Func. Count: 9, Neg. LLF: 79991870.97589442
Iteration: 2, Func. Count: 18, Neg. LLF: 188.4063501474505
Iteration: 3, Func. Count: 28, Neg. LLF: 4492975.361107617
Iteration: 4, Func. Count: 37, Neg. LLF: 19846.385154520623
Iteration: 5, Func. Count: 46, Neg. LLF: 105.34791201289273
Iteration: 6, Func. Count: 54, Neg. LLF: 104.39899196751811
Iteration: 7, Func. Count: 62, Neg. LLF: 104.32412257361881
Iteration: 8, Func. Count: 70, Neg. LLF: 104.25499591958557
Iteration: 9, Func. Count: 78, Neg. LLF: 104.21682040924075
Iteration: 10, Func. Count: 86, Neg. LLF: 104.21061218189043
Iteration: 11, Func. Count: 94, Neg. LLF: 104.20991418158606
Iteration: 12, Func. Count: 102, Neg. LLF: 104.20990957399673
Iteration: 13, Func. Count: 109, Neg. LLF: 104.20990949065553
Optimization terminated successfully (Exit mode 0)
Current function value: 104.20990957399673
Iterations: 13
Function evaluations: 109
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 47874717.81227907
Iteration: 2, Func. Count: 20, Neg. LLF: 4820.481189981824
Iteration: 3, Func. Count: 32, Neg. LLF: 2986725.591566267
Iteration: 4, Func. Count: 42, Neg. LLF: 233000.44141541136
Iteration: 5, Func. Count: 52, Neg. LLF: 166.6014897347654
Iteration: 6, Func. Count: 62, Neg. LLF: 112.21340551913123
Iteration: 7, Func. Count: 72, Neg. LLF: 142.36201684106186
Iteration: 8, Func. Count: 82, Neg. LLF: 105.40020384630498
Iteration: 9, Func. Count: 91, Neg. LLF: 104.79387934334694
Iteration: 10, Func. Count: 100, Neg. LLF: 106.38690751390395
Iteration: 11, Func. Count: 110, Neg. LLF: 104.2208670755927
Iteration: 12, Func. Count: 119, Neg. LLF: 104.20187648532601
Iteration: 13, Func. Count: 128, Neg. LLF: 104.12361335305621
Iteration: 14, Func. Count: 137, Neg. LLF: 104.06468609687408
Iteration: 15, Func. Count: 147, Neg. LLF: 103.79067069016443
Iteration: 16, Func. Count: 156, Neg. LLF: 103.73200475337194
Iteration: 17, Func. Count: 165, Neg. LLF: 103.70307438244285
Iteration: 18, Func. Count: 174, Neg. LLF: 103.69241780341774
Iteration: 19, Func. Count: 183, Neg. LLF: 103.68575020222251
Iteration: 20, Func. Count: 192, Neg. LLF: 103.67592317189902
Iteration: 21, Func. Count: 201, Neg. LLF: 103.69116275775721
Iteration: 22, Func. Count: 211, Neg. LLF: 103.69116717735751
Iteration: 23, Func. Count: 221, Neg. LLF: 103.67272802389311
Iteration: 24, Func. Count: 231, Neg. LLF: 103.66742089529893
Iteration: 25, Func. Count: 241, Neg. LLF: 103.6611892351883
Iteration: 26, Func. Count: 250, Neg. LLF: 103.65997932152034
Iteration: 27, Func. Count: 259, Neg. LLF: 103.65979904309569
Iteration: 28, Func. Count: 268, Neg. LLF: 103.65979280143578
Iteration: 29, Func. Count: 276, Neg. LLF: 103.65979265545936
Optimization terminated successfully (Exit mode 0)
Current function value: 103.65979280143578
Iterations: 29
Function evaluations: 276
Gradient evaluations: 29
Iteration: 1, Func. Count: 11, Neg. LLF: 20424722.503364388
Iteration: 2, Func. Count: 22, Neg. LLF: 153657520.2707671
Iteration: 3, Func. Count: 33, Neg. LLF: 715710.2199665261
Iteration: 4, Func. Count: 44, Neg. LLF: 12451230.719698723
Iteration: 5, Func. Count: 55, Neg. LLF: 131.95713710376674
Iteration: 6, Func. Count: 66, Neg. LLF: 228.39544009916375
Iteration: 7, Func. Count: 77, Neg. LLF: 212.21000854583696
Iteration: 8, Func. Count: 88, Neg. LLF: 248.70140772678567
Iteration: 9, Func. Count: 99, Neg. LLF: 126.26934744404365
Iteration: 10, Func. Count: 110, Neg. LLF: 105.95574623413562
Iteration: 11, Func. Count: 121, Neg. LLF: 103.73758352558302
Iteration: 12, Func. Count: 131, Neg. LLF: 102.9309945887006
Iteration: 13, Func. Count: 141, Neg. LLF: 102.57477978259988
Iteration: 14, Func. Count: 151, Neg. LLF: 101.80750417928013
Iteration: 15, Func. Count: 161, Neg. LLF: 101.79714493954293
Iteration: 16, Func. Count: 171, Neg. LLF: 101.7948696620335
Iteration: 17, Func. Count: 181, Neg. LLF: 101.79436393074768
Iteration: 18, Func. Count: 191, Neg. LLF: 101.79436244717189
Iteration: 19, Func. Count: 200, Neg. LLF: 101.7943623347249
Optimization terminated successfully (Exit mode 0)
Current function value: 101.79436244717189
Iterations: 19
Function evaluations: 200
Gradient evaluations: 19
Iteration: 1, Func. Count: 12, Neg. LLF: 17600296.66098071
Iteration: 2, Func. Count: 24, Neg. LLF: 151980292.3236899
Iteration: 3, Func. Count: 36, Neg. LLF: 788549.0683382098
Iteration: 4, Func. Count: 48, Neg. LLF: 10369789.673389856
Iteration: 5, Func. Count: 60, Neg. LLF: 172.5240841176099
Iteration: 6, Func. Count: 72, Neg. LLF: 272.9133367924568
Iteration: 7, Func. Count: 84, Neg. LLF: 163.82599171820698
Iteration: 8, Func. Count: 96, Neg. LLF: 263.10506640252885
Iteration: 9, Func. Count: 108, Neg. LLF: 210.59382033226726
Iteration: 10, Func. Count: 120, Neg. LLF: 201.59655219717493
Iteration: 11, Func. Count: 132, Neg. LLF: 107.8968173290219
Iteration: 12, Func. Count: 144, Neg. LLF: 105.12863425901624
Iteration: 13, Func. Count: 156, Neg. LLF: 102.95400117822348
Iteration: 14, Func. Count: 167, Neg. LLF: 102.32229417513996
Iteration: 15, Func. Count: 178, Neg. LLF: 102.26259790447887
Iteration: 16, Func. Count: 190, Neg. LLF: 101.84139308343121
Iteration: 17, Func. Count: 201, Neg. LLF: 101.79798560166742
Iteration: 18, Func. Count: 212, Neg. LLF: 101.79441947907158
Iteration: 19, Func. Count: 223, Neg. LLF: 101.79436255417245
Iteration: 20, Func. Count: 233, Neg. LLF: 101.79436263112096
Optimization terminated successfully (Exit mode 0)
Current function value: 101.79436255417245
Iterations: 20
Function evaluations: 233
Gradient evaluations: 20
Iteration: 1, Func. Count: 5, Neg. LLF: 168.16273363321164
Iteration: 2, Func. Count: 10, Neg. LLF: 147.9115292528082
Iteration: 3, Func. Count: 15, Neg. LLF: 119.07184982901813
Iteration: 4, Func. Count: 19, Neg. LLF: 2848.5666054246476
Iteration: 5, Func. Count: 24, Neg. LLF: 3075.9409411160873
Iteration: 6, Func. Count: 29, Neg. LLF: 2080.6187958000573
Iteration: 7, Func. Count: 34, Neg. LLF: 3233.798154395244
Iteration: 8, Func. Count: 39, Neg. LLF: 3637.654744824805
Iteration: 9, Func. Count: 44, Neg. LLF: 105.88049083538905
Iteration: 10, Func. Count: 48, Neg. LLF: 1972.4925078610622
Iteration: 11, Func. Count: 53, Neg. LLF: 444.2946587677456
Iteration: 12, Func. Count: 58, Neg. LLF: 104.97387359806386
Iteration: 13, Func. Count: 63, Neg. LLF: 104.28980477101189
Iteration: 14, Func. Count: 67, Neg. LLF: 104.28979971314327
Iteration: 15, Func. Count: 70, Neg. LLF: 104.28979977146598
Optimization terminated successfully (Exit mode 0)
Current function value: 104.28979971314327
Iterations: 15
Function evaluations: 70
Gradient evaluations: 15
Iteration: 1, Func. Count: 6, Neg. LLF: 91592544.70540951
Iteration: 2, Func. Count: 12, Neg. LLF: 16591721.34385356
Iteration: 3, Func. Count: 18, Neg. LLF: 1228043.4836518248
Iteration: 4, Func. Count: 24, Neg. LLF: 194.0082119428355
Iteration: 5, Func. Count: 30, Neg. LLF: 113.15117022969305
Iteration: 6, Func. Count: 36, Neg. LLF: 143.844743999337
Iteration: 7, Func. Count: 42, Neg. LLF: 118.28455883092053
Iteration: 8, Func. Count: 48, Neg. LLF: 113.39020469008278
Iteration: 9, Func. Count: 54, Neg. LLF: 111.20467147966343
Iteration: 10, Func. Count: 60, Neg. LLF: 106.18769173362338
Iteration: 11, Func. Count: 65, Neg. LLF: 106.14594171738857
Iteration: 12, Func. Count: 70, Neg. LLF: 106.1029576196566
Iteration: 13, Func. Count: 75, Neg. LLF: 106.0824627053806
Iteration: 14, Func. Count: 80, Neg. LLF: 106.07942847806245
Iteration: 15, Func. Count: 85, Neg. LLF: 106.0792193622275
Iteration: 16, Func. Count: 90, Neg. LLF: 106.07920873377267
Iteration: 17, Func. Count: 95, Neg. LLF: 106.0792061640261
Iteration: 18, Func. Count: 99, Neg. LLF: 106.0792061640276
Optimization terminated successfully (Exit mode 0)
Current function value: 106.0792061640261
Iterations: 18
Function evaluations: 99
Gradient evaluations: 18
Iteration: 1, Func. Count: 7, Neg. LLF: 58206259.16932117
Iteration: 2, Func. Count: 14, Neg. LLF: 46724375.77317984
Iteration: 3, Func. Count: 22, Neg. LLF: 8390687.823500425
Iteration: 4, Func. Count: 29, Neg. LLF: 963989.094317735
Iteration: 5, Func. Count: 36, Neg. LLF: 173.8385676304587
Iteration: 6, Func. Count: 43, Neg. LLF: 113.45466029289966
Iteration: 7, Func. Count: 50, Neg. LLF: 112.231063555457
Iteration: 8, Func. Count: 57, Neg. LLF: 107.2217295206407
Iteration: 9, Func. Count: 64, Neg. LLF: 108.70789311777983
Iteration: 10, Func. Count: 71, Neg. LLF: 106.22333820706291
Iteration: 11, Func. Count: 77, Neg. LLF: 106.14297716081883
Iteration: 12, Func. Count: 83, Neg. LLF: 106.08971675642005
Iteration: 13, Func. Count: 89, Neg. LLF: 106.08480862014197
Iteration: 14, Func. Count: 95, Neg. LLF: 106.08222107063847
Iteration: 15, Func. Count: 101, Neg. LLF: 106.08111365332957
Iteration: 16, Func. Count: 107, Neg. LLF: 106.08005680761511
Iteration: 17, Func. Count: 113, Neg. LLF: 106.07944089916488
Iteration: 18, Func. Count: 119, Neg. LLF: 106.07922959092564
Iteration: 19, Func. Count: 125, Neg. LLF: 106.07920768511316
Iteration: 20, Func. Count: 131, Neg. LLF: 106.07920622402477
Iteration: 21, Func. Count: 136, Neg. LLF: 106.07920630455436
Optimization terminated successfully (Exit mode 0)
Current function value: 106.07920622402477
Iterations: 21
Function evaluations: 136
Gradient evaluations: 21
Iteration: 1, Func. Count: 8, Neg. LLF: 35858066.759503774
Iteration: 2, Func. Count: 16, Neg. LLF: 432.3184516021854
Iteration: 3, Func. Count: 26, Neg. LLF: 12254788.569462407
Iteration: 4, Func. Count: 34, Neg. LLF: 976835.6760759351
Iteration: 5, Func. Count: 42, Neg. LLF: 132.14872705625245
Iteration: 6, Func. Count: 50, Neg. LLF: 971136.1652924276
Iteration: 7, Func. Count: 58, Neg. LLF: 127.61745741499045
Iteration: 8, Func. Count: 66, Neg. LLF: 111.56425597126201
Iteration: 9, Func. Count: 74, Neg. LLF: 109.73321810681153
Iteration: 10, Func. Count: 82, Neg. LLF: 106.71661771763169
Iteration: 11, Func. Count: 89, Neg. LLF: 106.3974227192956
Iteration: 12, Func. Count: 96, Neg. LLF: 106.43537091175156
Iteration: 13, Func. Count: 104, Neg. LLF: 106.27396041497191
Iteration: 14, Func. Count: 111, Neg. LLF: 106.1513645281835
Iteration: 15, Func. Count: 118, Neg. LLF: 106.1275256739789
Iteration: 16, Func. Count: 125, Neg. LLF: 106.11551560902977
Iteration: 17, Func. Count: 132, Neg. LLF: 106.10251919035818
Iteration: 18, Func. Count: 139, Neg. LLF: 106.0884208766331
Iteration: 19, Func. Count: 146, Neg. LLF: 106.08088615011613
Iteration: 20, Func. Count: 153, Neg. LLF: 106.0793108387444
Iteration: 21, Func. Count: 160, Neg. LLF: 106.07920943221828
Iteration: 22, Func. Count: 167, Neg. LLF: 106.07920647896495
Iteration: 23, Func. Count: 173, Neg. LLF: 106.07920675333324
Optimization terminated successfully (Exit mode 0)
Current function value: 106.07920647896495
Iterations: 23
Function evaluations: 173
Gradient evaluations: 23
Iteration: 1, Func. Count: 9, Neg. LLF: 17801892.573753167
Iteration: 2, Func. Count: 18, Neg. LLF: 76131233.31361246
Iteration: 3, Func. Count: 27, Neg. LLF: 1372672.2794598888
Iteration: 4, Func. Count: 36, Neg. LLF: 1495029.3149745236
Iteration: 5, Func. Count: 45, Neg. LLF: 1418641.3265782588
Iteration: 6, Func. Count: 54, Neg. LLF: 1348904.8527608186
Iteration: 7, Func. Count: 63, Neg. LLF: 1311020.1526690265
Iteration: 8, Func. Count: 72, Neg. LLF: 1092205.2432605245
Iteration: 9, Func. Count: 81, Neg. LLF: 118.76453034413353
Iteration: 10, Func. Count: 90, Neg. LLF: 1330131.7812228722
Iteration: 11, Func. Count: 99, Neg. LLF: 130.31933582423167
Iteration: 12, Func. Count: 108, Neg. LLF: 112.01372729396536
Iteration: 13, Func. Count: 117, Neg. LLF: 106.88180277058508
Iteration: 14, Func. Count: 125, Neg. LLF: 106.3385305921634
Iteration: 15, Func. Count: 133, Neg. LLF: 106.13198640739084
Iteration: 16, Func. Count: 141, Neg. LLF: 106.11769662595306
Iteration: 17, Func. Count: 149, Neg. LLF: 106.11294846226733
Iteration: 18, Func. Count: 157, Neg. LLF: 106.10212949694306
Iteration: 19, Func. Count: 165, Neg. LLF: 106.09877965955823
Iteration: 20, Func. Count: 173, Neg. LLF: 106.08815964939122
Iteration: 21, Func. Count: 181, Neg. LLF: 106.08255055035445
Iteration: 22, Func. Count: 189, Neg. LLF: 106.07921023281762
Iteration: 23, Func. Count: 197, Neg. LLF: 106.07920642414544
Iteration: 24, Func. Count: 204, Neg. LLF: 106.07920710043287
Optimization terminated successfully (Exit mode 0)
Current function value: 106.07920642414544
Iterations: 24
Function evaluations: 204
Gradient evaluations: 24
Iteration: 1, Func. Count: 6, Neg. LLF: 232.68375277297852
Iteration: 2, Func. Count: 14, Neg. LLF: 108.75930424912549
Iteration: 3, Func. Count: 19, Neg. LLF: 1458.7155385693977
Iteration: 4, Func. Count: 25, Neg. LLF: 116.28982978708004
Iteration: 5, Func. Count: 31, Neg. LLF: 6547.7229739572385
Iteration: 6, Func. Count: 37, Neg. LLF: 4604.89759851171
Iteration: 7, Func. Count: 43, Neg. LLF: 180.28580447002594
Iteration: 8, Func. Count: 49, Neg. LLF: 106.35329722764565
Iteration: 9, Func. Count: 55, Neg. LLF: 104.33899471784838
Iteration: 10, Func. Count: 60, Neg. LLF: 104.29052292844116
Iteration: 11, Func. Count: 65, Neg. LLF: 104.28981620032546
Iteration: 12, Func. Count: 70, Neg. LLF: 104.28979972006955
Iteration: 13, Func. Count: 74, Neg. LLF: 104.28979972888585
Optimization terminated successfully (Exit mode 0)
Current function value: 104.28979972006955
Iterations: 13
Function evaluations: 74
Gradient evaluations: 13
Iteration: 1, Func. Count: 7, Neg. LLF: 176772244.09270716
Iteration: 2, Func. Count: 14, Neg. LLF: 9879450.729711238
Iteration: 3, Func. Count: 21, Neg. LLF: 191.99949886887023
Iteration: 4, Func. Count: 29, Neg. LLF: 144.55550189118483
Iteration: 5, Func. Count: 36, Neg. LLF: 106.67085338910834
Iteration: 6, Func. Count: 43, Neg. LLF: 111.3768163153767
Iteration: 7, Func. Count: 50, Neg. LLF: 110.82341392344013
Iteration: 8, Func. Count: 57, Neg. LLF: 106.14475422124804
Iteration: 9, Func. Count: 64, Neg. LLF: 106.13131005194624
Iteration: 10, Func. Count: 71, Neg. LLF: 105.954200443897
Iteration: 11, Func. Count: 77, Neg. LLF: 105.95374877225865
Iteration: 12, Func. Count: 83, Neg. LLF: 105.95362977480951
Iteration: 13, Func. Count: 89, Neg. LLF: 105.95348076154032
Iteration: 14, Func. Count: 95, Neg. LLF: 105.95342824872195
Iteration: 15, Func. Count: 101, Neg. LLF: 105.95342186491736
Iteration: 16, Func. Count: 106, Neg. LLF: 105.95342186494484
Optimization terminated successfully (Exit mode 0)
Current function value: 105.95342186491736
Iterations: 16
Function evaluations: 106
Gradient evaluations: 16
Iteration: 1, Func. Count: 8, Neg. LLF: 139983278.953914
Iteration: 2, Func. Count: 16, Neg. LLF: 10201051.63272314
Iteration: 3, Func. Count: 24, Neg. LLF: 185.13084181497663
Iteration: 4, Func. Count: 33, Neg. LLF: 118.03553415141455
Iteration: 5, Func. Count: 41, Neg. LLF: 113.10358783371092
Iteration: 6, Func. Count: 49, Neg. LLF: 107.17555961239961
Iteration: 7, Func. Count: 57, Neg. LLF: 106.27319571355099
Iteration: 8, Func. Count: 65, Neg. LLF: 105.97133366294347
Iteration: 9, Func. Count: 72, Neg. LLF: 105.9875492508897
Iteration: 10, Func. Count: 80, Neg. LLF: 105.9547443343672
Iteration: 11, Func. Count: 87, Neg. LLF: 105.95389824055523
Iteration: 12, Func. Count: 94, Neg. LLF: 105.95367774070449
Iteration: 13, Func. Count: 101, Neg. LLF: 105.95347267334886
Iteration: 14, Func. Count: 108, Neg. LLF: 105.95343946339369
Iteration: 15, Func. Count: 115, Neg. LLF: 105.95342181752488
Iteration: 16, Func. Count: 121, Neg. LLF: 105.95342186394977
Optimization terminated successfully (Exit mode 0)
Current function value: 105.95342181752488
Iterations: 16
Function evaluations: 121
Gradient evaluations: 16
Iteration: 1, Func. Count: 9, Neg. LLF: 113576829.92343882
Iteration: 2, Func. Count: 18, Neg. LLF: 10088057.384192454
Iteration: 3, Func. Count: 27, Neg. LLF: 9364.580526516733
Iteration: 4, Func. Count: 36, Neg. LLF: 155.31952520649315
Iteration: 5, Func. Count: 45, Neg. LLF: 128.11592972842786
Iteration: 6, Func. Count: 54, Neg. LLF: 108.10999597616116
Iteration: 7, Func. Count: 63, Neg. LLF: 106.97118646640483
Iteration: 8, Func. Count: 72, Neg. LLF: 104.83637175389757
Iteration: 9, Func. Count: 80, Neg. LLF: 104.33710059397814
Iteration: 10, Func. Count: 88, Neg. LLF: 104.29581943889072
Iteration: 11, Func. Count: 96, Neg. LLF: 104.2784954259042
Iteration: 12, Func. Count: 104, Neg. LLF: 104.2606484824649
Iteration: 13, Func. Count: 112, Neg. LLF: 104.23270586610417
Iteration: 14, Func. Count: 120, Neg. LLF: 104.15654424091132
Iteration: 15, Func. Count: 128, Neg. LLF: 104.04033489362368
Iteration: 16, Func. Count: 136, Neg. LLF: 103.86710693132838
Iteration: 17, Func. Count: 144, Neg. LLF: 103.85819000770977
Iteration: 18, Func. Count: 152, Neg. LLF: 103.8563762963865
Iteration: 19, Func. Count: 160, Neg. LLF: 103.85633973681658
Iteration: 20, Func. Count: 168, Neg. LLF: 103.85633846936253
Iteration: 21, Func. Count: 176, Neg. LLF: 103.85633572960549
Iteration: 22, Func. Count: 184, Neg. LLF: 103.85633393936642
Iteration: 23, Func. Count: 191, Neg. LLF: 103.85633393094281
Optimization terminated successfully (Exit mode 0)
Current function value: 103.85633393936642
Iterations: 24
Function evaluations: 191
Gradient evaluations: 23
Iteration: 1, Func. Count: 10, Neg. LLF: 88603283.08221152
Iteration: 2, Func. Count: 20, Neg. LLF: 9974300.450538762
Iteration: 3, Func. Count: 30, Neg. LLF: 1761232.596074793
Iteration: 4, Func. Count: 40, Neg. LLF: 132.29916781132596
Iteration: 5, Func. Count: 50, Neg. LLF: 117.39464849876518
Iteration: 6, Func. Count: 60, Neg. LLF: 110.59199342426558
Iteration: 7, Func. Count: 70, Neg. LLF: 106.81865738020467
Iteration: 8, Func. Count: 79, Neg. LLF: 106.26742607004527
Iteration: 9, Func. Count: 88, Neg. LLF: 110.75079667927925
Iteration: 10, Func. Count: 99, Neg. LLF: 106.20764572872433
Iteration: 11, Func. Count: 109, Neg. LLF: 105.96578706721829
Iteration: 12, Func. Count: 118, Neg. LLF: 105.95845906867247
Iteration: 13, Func. Count: 127, Neg. LLF: 105.95643268252029
Iteration: 14, Func. Count: 136, Neg. LLF: 105.95451505828906
Iteration: 15, Func. Count: 145, Neg. LLF: 105.9538218084123
Iteration: 16, Func. Count: 154, Neg. LLF: 105.95345808914648
Iteration: 17, Func. Count: 163, Neg. LLF: 105.9534235690701
Iteration: 18, Func. Count: 172, Neg. LLF: 105.95342176930986
Iteration: 19, Func. Count: 180, Neg. LLF: 105.95342232951178
Optimization terminated successfully (Exit mode 0)
Current function value: 105.95342176930986
Iterations: 19
Function evaluations: 180
Gradient evaluations: 19
Iteration: 1, Func. Count: 7, Neg. LLF: 222.27844875229812
Iteration: 2, Func. Count: 15, Neg. LLF: 124.99396389221586
Iteration: 3, Func. Count: 22, Neg. LLF: 114.35687143996061
Iteration: 4, Func. Count: 29, Neg. LLF: 954.0013647502202
Iteration: 5, Func. Count: 36, Neg. LLF: 297.71834544929817
Iteration: 6, Func. Count: 43, Neg. LLF: 409.3974185383751
Iteration: 7, Func. Count: 50, Neg. LLF: 105.6720715079728
Iteration: 8, Func. Count: 57, Neg. LLF: 103.780426292724
Iteration: 9, Func. Count: 63, Neg. LLF: 103.77940994192797
Iteration: 10, Func. Count: 69, Neg. LLF: 103.77840048633038
Iteration: 11, Func. Count: 75, Neg. LLF: 103.77839579662414
Iteration: 12, Func. Count: 81, Neg. LLF: 103.77839422217794
Iteration: 13, Func. Count: 86, Neg. LLF: 103.77839420341007
Optimization terminated successfully (Exit mode 0)
Current function value: 103.77839422217794
Iterations: 13
Function evaluations: 86
Gradient evaluations: 13
Iteration: 1, Func. Count: 8, Neg. LLF: 174963558.09392798
Iteration: 2, Func. Count: 16, Neg. LLF: 9881074.824752066
Iteration: 3, Func. Count: 24, Neg. LLF: 123.8728849533131
Iteration: 4, Func. Count: 33, Neg. LLF: 123.57371748545987
Iteration: 5, Func. Count: 41, Neg. LLF: 104.45876956020831
Iteration: 6, Func. Count: 48, Neg. LLF: 125.93969015251093
Iteration: 7, Func. Count: 56, Neg. LLF: 106.42985606364354
Iteration: 8, Func. Count: 64, Neg. LLF: 103.59632593661426
Iteration: 9, Func. Count: 71, Neg. LLF: 103.56783884729742
Iteration: 10, Func. Count: 78, Neg. LLF: 103.56313571651425
Iteration: 11, Func. Count: 85, Neg. LLF: 103.56229692399587
Iteration: 12, Func. Count: 92, Neg. LLF: 103.56205765851537
Iteration: 13, Func. Count: 99, Neg. LLF: 103.56193070615213
Iteration: 14, Func. Count: 106, Neg. LLF: 103.56191130960217
Iteration: 15, Func. Count: 113, Neg. LLF: 103.56191004955838
Iteration: 16, Func. Count: 119, Neg. LLF: 103.56190999360561
Optimization terminated successfully (Exit mode 0)
Current function value: 103.56191004955838
Iterations: 16
Function evaluations: 119
Gradient evaluations: 16
Iteration: 1, Func. Count: 9, Neg. LLF: 140016659.21643618
Iteration: 2, Func. Count: 18, Neg. LLF: 10142732.261028212
Iteration: 3, Func. Count: 27, Neg. LLF: 120.57630982474184
Iteration: 4, Func. Count: 36, Neg. LLF: 106.3020792625222
Iteration: 5, Func. Count: 45, Neg. LLF: 226.96088649031788
Iteration: 6, Func. Count: 54, Neg. LLF: 104.82459677969193
Iteration: 7, Func. Count: 63, Neg. LLF: 105.19252030634242
Iteration: 8, Func. Count: 72, Neg. LLF: 103.04538418498166
Iteration: 9, Func. Count: 80, Neg. LLF: 102.52159676290613
Iteration: 10, Func. Count: 88, Neg. LLF: 102.16636768832373
Iteration: 11, Func. Count: 96, Neg. LLF: 102.29262998747124
Iteration: 12, Func. Count: 105, Neg. LLF: 102.0479628870923
Iteration: 13, Func. Count: 113, Neg. LLF: 102.03191396739999
Iteration: 14, Func. Count: 121, Neg. LLF: 102.02976399690986
Iteration: 15, Func. Count: 129, Neg. LLF: 102.02799949051433
Iteration: 16, Func. Count: 137, Neg. LLF: 102.02582340925306
Iteration: 17, Func. Count: 145, Neg. LLF: 102.0200299582635
Iteration: 18, Func. Count: 153, Neg. LLF: 102.01617960459839
Iteration: 19, Func. Count: 161, Neg. LLF: 102.01459528556562
Iteration: 20, Func. Count: 169, Neg. LLF: 102.01432638207822
Iteration: 21, Func. Count: 177, Neg. LLF: 102.01431234104608
Iteration: 22, Func. Count: 184, Neg. LLF: 102.0143122792795
Optimization terminated successfully (Exit mode 0)
Current function value: 102.01431234104608
Iterations: 22
Function evaluations: 184
Gradient evaluations: 22
Iteration: 1, Func. Count: 10, Neg. LLF: 113179053.2700868
Iteration: 2, Func. Count: 20, Neg. LLF: 9986740.890255542
Iteration: 3, Func. Count: 30, Neg. LLF: 602309.0231108974
Iteration: 4, Func. Count: 40, Neg. LLF: 120.4177551544623
Iteration: 5, Func. Count: 50, Neg. LLF: 102.6277909943753
Iteration: 6, Func. Count: 59, Neg. LLF: 113.31693741801965
Iteration: 7, Func. Count: 69, Neg. LLF: 102.67024985715298
Iteration: 8, Func. Count: 79, Neg. LLF: 116.23964282635367
Iteration: 9, Func. Count: 89, Neg. LLF: 101.68968156955651
Iteration: 10, Func. Count: 98, Neg. LLF: 101.84625970354838
Iteration: 11, Func. Count: 108, Neg. LLF: 101.70868692520183
Iteration: 12, Func. Count: 118, Neg. LLF: 101.64787497932687
Iteration: 13, Func. Count: 127, Neg. LLF: 101.64767567327608
Iteration: 14, Func. Count: 136, Neg. LLF: 101.64759905364366
Iteration: 15, Func. Count: 145, Neg. LLF: 101.6475914192933
Iteration: 16, Func. Count: 154, Neg. LLF: 101.64758998418651
Iteration: 17, Func. Count: 162, Neg. LLF: 101.6475899199455
Optimization terminated successfully (Exit mode 0)
Current function value: 101.64758998418651
Iterations: 17
Function evaluations: 162
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 88249730.13615435
Iteration: 2, Func. Count: 22, Neg. LLF: 635339.0544488956
Iteration: 3, Func. Count: 33, Neg. LLF: 5385365.904210238
Iteration: 4, Func. Count: 44, Neg. LLF: 110.32557257380651
Iteration: 5, Func. Count: 55, Neg. LLF: 104.19872774176504
Iteration: 6, Func. Count: 65, Neg. LLF: 116.36772936794455
Iteration: 7, Func. Count: 76, Neg. LLF: 106.17188238407614
Iteration: 8, Func. Count: 88, Neg. LLF: 101.91227475276304
Iteration: 9, Func. Count: 98, Neg. LLF: 102.90229971044305
Iteration: 10, Func. Count: 109, Neg. LLF: 107.10928789386938
Iteration: 11, Func. Count: 120, Neg. LLF: 101.80085748535159
Iteration: 12, Func. Count: 131, Neg. LLF: 101.80164195819644
Iteration: 13, Func. Count: 142, Neg. LLF: 101.69101656820004
Iteration: 14, Func. Count: 152, Neg. LLF: 103.07787714667508
Iteration: 15, Func. Count: 163, Neg. LLF: 106.11150029272396
Iteration: 16, Func. Count: 174, Neg. LLF: 101.72710458192059
Iteration: 17, Func. Count: 185, Neg. LLF: 101.72584852475163
Iteration: 18, Func. Count: 196, Neg. LLF: 101.63582975419452
Iteration: 19, Func. Count: 207, Neg. LLF: 101.63035903074508
Iteration: 20, Func. Count: 217, Neg. LLF: 101.6299007646461
Iteration: 21, Func. Count: 227, Neg. LLF: 101.62975602053437
Iteration: 22, Func. Count: 237, Neg. LLF: 101.62969834790675
Iteration: 23, Func. Count: 247, Neg. LLF: 101.62969686823735
Iteration: 24, Func. Count: 256, Neg. LLF: 101.62969680412051
Optimization terminated successfully (Exit mode 0)
Current function value: 101.62969686823735
Iterations: 24
Function evaluations: 256
Gradient evaluations: 24
Iteration: 1, Func. Count: 8, Neg. LLF: 221.6443460704817
Iteration: 2, Func. Count: 17, Neg. LLF: 127.93761685886996
Iteration: 3, Func. Count: 25, Neg. LLF: 110.62899661023236
Iteration: 4, Func. Count: 32, Neg. LLF: 112.47606525128691
Iteration: 5, Func. Count: 41, Neg. LLF: 408042.3296460422
Iteration: 6, Func. Count: 49, Neg. LLF: 103.9389762744973
Iteration: 7, Func. Count: 56, Neg. LLF: 103.96978540090294
Iteration: 8, Func. Count: 64, Neg. LLF: 103.78107511543446
Iteration: 9, Func. Count: 71, Neg. LLF: 103.7798814984146
Iteration: 10, Func. Count: 78, Neg. LLF: 103.77918257457249
Iteration: 11, Func. Count: 85, Neg. LLF: 103.77847676070836
Iteration: 12, Func. Count: 92, Neg. LLF: 103.77840077076688
Iteration: 13, Func. Count: 99, Neg. LLF: 103.77839410973398
Iteration: 14, Func. Count: 105, Neg. LLF: 103.77839409299901
Optimization terminated successfully (Exit mode 0)
Current function value: 103.77839410973398
Iterations: 14
Function evaluations: 105
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 172210888.73378
Iteration: 2, Func. Count: 18, Neg. LLF: 9920615.49716583
Iteration: 3, Func. Count: 27, Neg. LLF: 119.40434570556694
Iteration: 4, Func. Count: 37, Neg. LLF: 116.97223010003533
Iteration: 5, Func. Count: 46, Neg. LLF: 105.00312621583757
Iteration: 6, Func. Count: 54, Neg. LLF: 124.91600556022276
Iteration: 7, Func. Count: 63, Neg. LLF: 110.81537119595764
Iteration: 8, Func. Count: 72, Neg. LLF: 103.59992052963344
Iteration: 9, Func. Count: 80, Neg. LLF: 103.56660051472483
Iteration: 10, Func. Count: 88, Neg. LLF: 103.5624285510244
Iteration: 11, Func. Count: 96, Neg. LLF: 103.5619441261028
Iteration: 12, Func. Count: 104, Neg. LLF: 103.56191331437608
Iteration: 13, Func. Count: 112, Neg. LLF: 103.56191141319935
Iteration: 14, Func. Count: 120, Neg. LLF: 103.56191023644274
Iteration: 15, Func. Count: 127, Neg. LLF: 103.56191018047042
Optimization terminated successfully (Exit mode 0)
Current function value: 103.56191023644274
Iterations: 15
Function evaluations: 127
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 137774887.3093804
Iteration: 2, Func. Count: 20, Neg. LLF: 10214904.316806942
Iteration: 3, Func. Count: 30, Neg. LLF: 122.65811001440774
Iteration: 4, Func. Count: 40, Neg. LLF: 109.65173916238618
Iteration: 5, Func. Count: 50, Neg. LLF: 205.61874090669383
Iteration: 6, Func. Count: 60, Neg. LLF: 103.91660926722298
Iteration: 7, Func. Count: 69, Neg. LLF: 104.70313143947142
Iteration: 8, Func. Count: 79, Neg. LLF: 116.30131009164093
Iteration: 9, Func. Count: 90, Neg. LLF: 102.46981402039525
Iteration: 10, Func. Count: 99, Neg. LLF: 102.02900513792497
Iteration: 11, Func. Count: 108, Neg. LLF: 102.06281698390902
Iteration: 12, Func. Count: 118, Neg. LLF: 102.01641780256026
Iteration: 13, Func. Count: 127, Neg. LLF: 102.01528553404601
Iteration: 14, Func. Count: 136, Neg. LLF: 102.01523434645468
Iteration: 15, Func. Count: 145, Neg. LLF: 102.01514018196018
Iteration: 16, Func. Count: 154, Neg. LLF: 102.01496951714718
Iteration: 17, Func. Count: 163, Neg. LLF: 102.01468717496232
Iteration: 18, Func. Count: 172, Neg. LLF: 102.01441656802724
Iteration: 19, Func. Count: 181, Neg. LLF: 102.0143203458152
Iteration: 20, Func. Count: 190, Neg. LLF: 102.0143129879557
Iteration: 21, Func. Count: 199, Neg. LLF: 102.01431232446859
Optimization terminated successfully (Exit mode 0)
Current function value: 102.01431232446859
Iterations: 21
Function evaluations: 199
Gradient evaluations: 21
Iteration: 1, Func. Count: 11, Neg. LLF: 111268848.64603193
Iteration: 2, Func. Count: 22, Neg. LLF: 10094402.630011208
Iteration: 3, Func. Count: 33, Neg. LLF: 736770.5471951083
Iteration: 4, Func. Count: 44, Neg. LLF: 119.16654318398218
Iteration: 5, Func. Count: 55, Neg. LLF: 102.66157382465143
Iteration: 6, Func. Count: 65, Neg. LLF: 113.36968437629679
Iteration: 7, Func. Count: 76, Neg. LLF: 103.12633069375997
Iteration: 8, Func. Count: 87, Neg. LLF: 116.46899741712991
Iteration: 9, Func. Count: 98, Neg. LLF: 102.43287513941088
Iteration: 10, Func. Count: 109, Neg. LLF: 112.64239402709103
Iteration: 11, Func. Count: 120, Neg. LLF: 101.6533646775163
Iteration: 12, Func. Count: 130, Neg. LLF: 101.6726027422458
Iteration: 13, Func. Count: 141, Neg. LLF: 101.64823801771504
Iteration: 14, Func. Count: 151, Neg. LLF: 101.64769706737502
Iteration: 15, Func. Count: 161, Neg. LLF: 101.64760575640392
Iteration: 16, Func. Count: 171, Neg. LLF: 101.64759094931614
Iteration: 17, Func. Count: 181, Neg. LLF: 101.64758997458132
Optimization terminated successfully (Exit mode 0)
Current function value: 101.64758997458132
Iterations: 17
Function evaluations: 181
Gradient evaluations: 17
Iteration: 1, Func. Count: 12, Neg. LLF: 86730167.24461426
Iteration: 2, Func. Count: 24, Neg. LLF: 520909.2572881749
Iteration: 3, Func. Count: 36, Neg. LLF: 7447543.438439906
Iteration: 4, Func. Count: 48, Neg. LLF: 111.11281526267888
Iteration: 5, Func. Count: 60, Neg. LLF: 106.74089922757044
Iteration: 6, Func. Count: 71, Neg. LLF: 121.80917101386622
Iteration: 7, Func. Count: 83, Neg. LLF: 110.64449961932421
Iteration: 8, Func. Count: 96, Neg. LLF: 102.90150959205444
Iteration: 9, Func. Count: 107, Neg. LLF: 103.19613549571714
Iteration: 10, Func. Count: 119, Neg. LLF: 106.94046465207119
Iteration: 11, Func. Count: 132, Neg. LLF: 103.9105131716584
Iteration: 12, Func. Count: 144, Neg. LLF: 101.8548137175519
Iteration: 13, Func. Count: 156, Neg. LLF: 101.68795273485964
Iteration: 14, Func. Count: 167, Neg. LLF: 101.67863080630063
Iteration: 15, Func. Count: 178, Neg. LLF: 101.92627707878508
Iteration: 16, Func. Count: 190, Neg. LLF: 101.66654209017128
Iteration: 17, Func. Count: 202, Neg. LLF: 101.63681574554292
Iteration: 18, Func. Count: 213, Neg. LLF: 101.64246967287984
Iteration: 19, Func. Count: 225, Neg. LLF: 101.63026558159012
Iteration: 20, Func. Count: 236, Neg. LLF: 101.62971644618405
Iteration: 21, Func. Count: 247, Neg. LLF: 101.62970093278742
Iteration: 22, Func. Count: 258, Neg. LLF: 101.62969804962724
Iteration: 23, Func. Count: 269, Neg. LLF: 101.62969699840795
Iteration: 24, Func. Count: 279, Neg. LLF: 101.62969693428545
Optimization terminated successfully (Exit mode 0)
Current function value: 101.62969699840795
Iterations: 24
Function evaluations: 279
Gradient evaluations: 24
Iteration: 1, Func. Count: 9, Neg. LLF: 223.74406052554048
Iteration: 2, Func. Count: 19, Neg. LLF: 128.56330568062637
Iteration: 3, Func. Count: 28, Neg. LLF: 225.04337827191972
Iteration: 4, Func. Count: 37, Neg. LLF: 5504.8242400531935
Iteration: 5, Func. Count: 46, Neg. LLF: 47062.76668395052
Iteration: 6, Func. Count: 55, Neg. LLF: 44146.336757148245
Iteration: 7, Func. Count: 64, Neg. LLF: 42223.42498099821
Iteration: 8, Func. Count: 73, Neg. LLF: 40710.597656182814
Iteration: 9, Func. Count: 82, Neg. LLF: 39470.80296295762
Iteration: 10, Func. Count: 91, Neg. LLF: 24591.00391673287
Iteration: 11, Func. Count: 100, Neg. LLF: 3619.107657166884
Iteration: 12, Func. Count: 109, Neg. LLF: 105.93761641387503
Iteration: 13, Func. Count: 118, Neg. LLF: 102.07241842110584
Iteration: 14, Func. Count: 126, Neg. LLF: 102.06322178728495
Iteration: 15, Func. Count: 135, Neg. LLF: 102.00232332527888
Iteration: 16, Func. Count: 143, Neg. LLF: 101.93693230523884
Iteration: 17, Func. Count: 151, Neg. LLF: 101.90577008188879
Iteration: 18, Func. Count: 159, Neg. LLF: 101.82687898544862
Iteration: 19, Func. Count: 167, Neg. LLF: 101.79419376231954
Iteration: 20, Func. Count: 175, Neg. LLF: 102.09402635365468
Iteration: 21, Func. Count: 184, Neg. LLF: 101.79992578671101
Iteration: 22, Func. Count: 193, Neg. LLF: 101.77159116798948
Iteration: 23, Func. Count: 201, Neg. LLF: 101.77035380596278
Iteration: 24, Func. Count: 209, Neg. LLF: 101.77033658333016
Iteration: 25, Func. Count: 217, Neg. LLF: 101.77033575636231
Optimization terminated successfully (Exit mode 0)
Current function value: 101.77033575636231
Iterations: 25
Function evaluations: 217
Gradient evaluations: 25
Iteration: 1, Func. Count: 10, Neg. LLF: 171729478.86649027
Iteration: 2, Func. Count: 20, Neg. LLF: 9919180.007800817
Iteration: 3, Func. Count: 30, Neg. LLF: 117.31644860162983
Iteration: 4, Func. Count: 41, Neg. LLF: 113.57260804763139
Iteration: 5, Func. Count: 51, Neg. LLF: 111.06611418033258
Iteration: 6, Func. Count: 61, Neg. LLF: 107.07648027067233
Iteration: 7, Func. Count: 71, Neg. LLF: 104.12903657159882
Iteration: 8, Func. Count: 80, Neg. LLF: 103.67006025100413
Iteration: 9, Func. Count: 89, Neg. LLF: 103.84768490680193
Iteration: 10, Func. Count: 99, Neg. LLF: 103.59285653373541
Iteration: 11, Func. Count: 109, Neg. LLF: 103.5628075897869
Iteration: 12, Func. Count: 118, Neg. LLF: 103.56195453212383
Iteration: 13, Func. Count: 127, Neg. LLF: 103.56191172898454
Iteration: 14, Func. Count: 136, Neg. LLF: 103.56191018696039
Iteration: 15, Func. Count: 144, Neg. LLF: 103.56191013093736
Optimization terminated successfully (Exit mode 0)
Current function value: 103.56191018696039
Iterations: 15
Function evaluations: 144
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 137340044.88874853
Iteration: 2, Func. Count: 22, Neg. LLF: 10224333.882687539
Iteration: 3, Func. Count: 33, Neg. LLF: 122.99715331325265
Iteration: 4, Func. Count: 44, Neg. LLF: 111.5123476297198
Iteration: 5, Func. Count: 55, Neg. LLF: 210.78986940074458
Iteration: 6, Func. Count: 66, Neg. LLF: 103.97168641197321
Iteration: 7, Func. Count: 76, Neg. LLF: 103.72552329129219
Iteration: 8, Func. Count: 87, Neg. LLF: 104.76583376023191
Iteration: 9, Func. Count: 98, Neg. LLF: 102.28159315358816
Iteration: 10, Func. Count: 108, Neg. LLF: 116.60101061871936
Iteration: 11, Func. Count: 119, Neg. LLF: 116.39963749520153
Iteration: 12, Func. Count: 130, Neg. LLF: 116.34115978627482
Iteration: 13, Func. Count: 141, Neg. LLF: 116.32046918048623
Iteration: 14, Func. Count: 152, Neg. LLF: 116.33164282019939
Iteration: 15, Func. Count: 163, Neg. LLF: 102.36858188440809
Iteration: 16, Func. Count: 174, Neg. LLF: 102.0381589425325
Iteration: 17, Func. Count: 185, Neg. LLF: 102.01526289943652
Iteration: 18, Func. Count: 195, Neg. LLF: 102.01513553595831
Iteration: 19, Func. Count: 205, Neg. LLF: 102.01509236656466
Iteration: 20, Func. Count: 215, Neg. LLF: 102.01502481391842
Iteration: 21, Func. Count: 225, Neg. LLF: 102.014855770071
Iteration: 22, Func. Count: 235, Neg. LLF: 102.01460710349544
Iteration: 23, Func. Count: 245, Neg. LLF: 102.01438426948893
Iteration: 24, Func. Count: 255, Neg. LLF: 102.01431923176237
Iteration: 25, Func. Count: 265, Neg. LLF: 102.01431288460049
Iteration: 26, Func. Count: 275, Neg. LLF: 102.01431231292446
Optimization terminated successfully (Exit mode 0)
Current function value: 102.01431231292446
Iterations: 26
Function evaluations: 275
Gradient evaluations: 26
Iteration: 1, Func. Count: 12, Neg. LLF: 110756008.9998819
Iteration: 2, Func. Count: 24, Neg. LLF: 10111538.819441821
Iteration: 3, Func. Count: 36, Neg. LLF: 787524.682864777
Iteration: 4, Func. Count: 48, Neg. LLF: 118.23499390815566
Iteration: 5, Func. Count: 60, Neg. LLF: 102.62213480812848
Iteration: 6, Func. Count: 71, Neg. LLF: 113.21206591782553
Iteration: 7, Func. Count: 83, Neg. LLF: 103.58348473435727
Iteration: 8, Func. Count: 95, Neg. LLF: 102.57385398769493
Iteration: 9, Func. Count: 107, Neg. LLF: 102.6100321001357
Iteration: 10, Func. Count: 119, Neg. LLF: 102.18754403036034
Iteration: 11, Func. Count: 131, Neg. LLF: 101.65185792505083
Iteration: 12, Func. Count: 142, Neg. LLF: 101.64856734384175
Iteration: 13, Func. Count: 153, Neg. LLF: 101.64773365408628
Iteration: 14, Func. Count: 164, Neg. LLF: 101.64762382277266
Iteration: 15, Func. Count: 175, Neg. LLF: 101.64759036065311
Iteration: 16, Func. Count: 186, Neg. LLF: 101.64758977929105
Optimization terminated successfully (Exit mode 0)
Current function value: 101.64758977929105
Iterations: 16
Function evaluations: 186
Gradient evaluations: 16
Iteration: 1, Func. Count: 13, Neg. LLF: 86255947.11872867
Iteration: 2, Func. Count: 26, Neg. LLF: 473481.8367685069
Iteration: 3, Func. Count: 39, Neg. LLF: 7013098.659068446
Iteration: 4, Func. Count: 52, Neg. LLF: 108.29393952716204
Iteration: 5, Func. Count: 64, Neg. LLF: 115.09085026927897
Iteration: 6, Func. Count: 77, Neg. LLF: 110.281388731187
Iteration: 7, Func. Count: 90, Neg. LLF: 239.79703532795682
Iteration: 8, Func. Count: 103, Neg. LLF: 108.34043886418564
Iteration: 9, Func. Count: 116, Neg. LLF: 102.24337270817007
Iteration: 10, Func. Count: 128, Neg. LLF: 101.77570628804104
Iteration: 11, Func. Count: 140, Neg. LLF: 101.68824753837504
Iteration: 12, Func. Count: 152, Neg. LLF: 101.67169065862913
Iteration: 13, Func. Count: 164, Neg. LLF: 102.27679204621444
Iteration: 14, Func. Count: 177, Neg. LLF: 102.34498957935014
Iteration: 15, Func. Count: 190, Neg. LLF: 101.6450955996124
Iteration: 16, Func. Count: 202, Neg. LLF: 101.6379882793791
Iteration: 17, Func. Count: 214, Neg. LLF: 101.63070403662606
Iteration: 18, Func. Count: 226, Neg. LLF: 101.63043204608742
Iteration: 19, Func. Count: 238, Neg. LLF: 101.62971734595665
Iteration: 20, Func. Count: 250, Neg. LLF: 101.62969858843641
Iteration: 21, Func. Count: 262, Neg. LLF: 101.62969687730138
Iteration: 22, Func. Count: 273, Neg. LLF: 101.62969681336065
Optimization terminated successfully (Exit mode 0)
Current function value: 101.62969687730138
Iterations: 22
Function evaluations: 273
Gradient evaluations: 22
Iteration: 1, Func. Count: 6, Neg. LLF: 150.5478710999318
Iteration: 2, Func. Count: 12, Neg. LLF: 160.33693901526843
Iteration: 3, Func. Count: 18, Neg. LLF: 119.11809113038315
Iteration: 4, Func. Count: 23, Neg. LLF: 690.4614162478956
Iteration: 5, Func. Count: 29, Neg. LLF: 7159.127540262134
Iteration: 6, Func. Count: 35, Neg. LLF: 981.8950001342877
Iteration: 7, Func. Count: 41, Neg. LLF: 1243.0036515946815
Iteration: 8, Func. Count: 47, Neg. LLF: 114.62975293803058
Iteration: 9, Func. Count: 53, Neg. LLF: 150462.88733758882
Iteration: 10, Func. Count: 59, Neg. LLF: 3365.225501714939
Iteration: 11, Func. Count: 65, Neg. LLF: 11817.271961031413
Iteration: 12, Func. Count: 71, Neg. LLF: 3960.2075829498112
Iteration: 13, Func. Count: 77, Neg. LLF: 661.1539743817895
Iteration: 14, Func. Count: 83, Neg. LLF: 156.83450399581835
Iteration: 15, Func. Count: 89, Neg. LLF: 105.5320849412144
Iteration: 16, Func. Count: 95, Neg. LLF: 104.31059971242315
Iteration: 17, Func. Count: 100, Neg. LLF: 104.3035368190577
Iteration: 18, Func. Count: 105, Neg. LLF: 104.2935050840831
Iteration: 19, Func. Count: 110, Neg. LLF: 104.289859563026
Iteration: 20, Func. Count: 115, Neg. LLF: 104.28980036348322
Iteration: 21, Func. Count: 120, Neg. LLF: 104.28979970820745
Optimization terminated successfully (Exit mode 0)
Current function value: 104.28979970820745
Iterations: 22
Function evaluations: 120
Gradient evaluations: 21
Iteration: 1, Func. Count: 7, Neg. LLF: 85819233.16529739
Iteration: 2, Func. Count: 14, Neg. LLF: 18467391.024114333
Iteration: 3, Func. Count: 21, Neg. LLF: 1336251.21112763
Iteration: 4, Func. Count: 28, Neg. LLF: 334.3013111374786
Iteration: 5, Func. Count: 35, Neg. LLF: 111.51271622344784
Iteration: 6, Func. Count: 42, Neg. LLF: 108.40856471324479
Iteration: 7, Func. Count: 49, Neg. LLF: 107.3754648268363
Iteration: 8, Func. Count: 56, Neg. LLF: 124.7584209198239
Iteration: 9, Func. Count: 63, Neg. LLF: 108.5395538071185
Iteration: 10, Func. Count: 70, Neg. LLF: 106.19917106204548
Iteration: 11, Func. Count: 77, Neg. LLF: 106.08458273223137
Iteration: 12, Func. Count: 83, Neg. LLF: 106.08045167845948
Iteration: 13, Func. Count: 89, Neg. LLF: 106.08013842610055
Iteration: 14, Func. Count: 95, Neg. LLF: 106.07922655040166
Iteration: 15, Func. Count: 101, Neg. LLF: 106.07920699877032
Iteration: 16, Func. Count: 107, Neg. LLF: 106.07920623781148
Optimization terminated successfully (Exit mode 0)
Current function value: 106.07920623781148
Iterations: 16
Function evaluations: 107
Gradient evaluations: 16
Iteration: 1, Func. Count: 8, Neg. LLF: 54667898.5792901
Iteration: 2, Func. Count: 16, Neg. LLF: 58765372.667349815
Iteration: 3, Func. Count: 25, Neg. LLF: 14694856.809471449
Iteration: 4, Func. Count: 33, Neg. LLF: 955068.071916226
Iteration: 5, Func. Count: 41, Neg. LLF: 173.78181854847313
Iteration: 6, Func. Count: 49, Neg. LLF: 115.79210941003225
Iteration: 7, Func. Count: 57, Neg. LLF: 108.88082685133386
Iteration: 8, Func. Count: 65, Neg. LLF: 108.17481658963744
Iteration: 9, Func. Count: 73, Neg. LLF: 106.14487360484645
Iteration: 10, Func. Count: 80, Neg. LLF: 106.14845396287556
Iteration: 11, Func. Count: 88, Neg. LLF: 106.08672875177989
Iteration: 12, Func. Count: 95, Neg. LLF: 106.08059526200569
Iteration: 13, Func. Count: 102, Neg. LLF: 106.07933507113556
Iteration: 14, Func. Count: 109, Neg. LLF: 106.07921010914059
Iteration: 15, Func. Count: 116, Neg. LLF: 106.07920617196507
Iteration: 16, Func. Count: 122, Neg. LLF: 106.0792062524636
Optimization terminated successfully (Exit mode 0)
Current function value: 106.07920617196507
Iterations: 16
Function evaluations: 122
Gradient evaluations: 16
Iteration: 1, Func. Count: 9, Neg. LLF: 33428176.392751623
Iteration: 2, Func. Count: 18, Neg. LLF: 1236.6534770361568
Iteration: 3, Func. Count: 29, Neg. LLF: 4578450.36532291
Iteration: 4, Func. Count: 38, Neg. LLF: 983951.6468938696
Iteration: 5, Func. Count: 47, Neg. LLF: 135.41563408131185
Iteration: 6, Func. Count: 56, Neg. LLF: 862.6990182888125
Iteration: 7, Func. Count: 65, Neg. LLF: 280.037913245899
Iteration: 8, Func. Count: 74, Neg. LLF: 113.92468047560048
Iteration: 9, Func. Count: 83, Neg. LLF: 110.53268794950542
Iteration: 10, Func. Count: 92, Neg. LLF: 106.33200106197111
Iteration: 11, Func. Count: 100, Neg. LLF: 106.30257538016326
Iteration: 12, Func. Count: 109, Neg. LLF: 106.12103943224295
Iteration: 13, Func. Count: 117, Neg. LLF: 106.11725677460547
Iteration: 14, Func. Count: 125, Neg. LLF: 106.10665027956202
Iteration: 15, Func. Count: 133, Neg. LLF: 106.0958768933434
Iteration: 16, Func. Count: 141, Neg. LLF: 106.08256407962652
Iteration: 17, Func. Count: 149, Neg. LLF: 106.07955032712783
Iteration: 18, Func. Count: 157, Neg. LLF: 106.07922535674513
Iteration: 19, Func. Count: 165, Neg. LLF: 106.15955660620448
Iteration: 20, Func. Count: 176, Neg. LLF: 106.0846723157861
Iteration: 21, Func. Count: 186, Neg. LLF: 106.0806805839756
Iteration: 22, Func. Count: 196, Neg. LLF: 106.07993677383273
Optimization terminated successfully (Exit mode 0)
Current function value: 106.07920616375687
Iterations: 23
Function evaluations: 198
Gradient evaluations: 22
Iteration: 1, Func. Count: 10, Neg. LLF: 17039363.819838997
Iteration: 2, Func. Count: 20, Neg. LLF: 81318039.30263796
Iteration: 3, Func. Count: 30, Neg. LLF: 1358695.0244391318
Iteration: 4, Func. Count: 40, Neg. LLF: 1564630.3770721394
Iteration: 5, Func. Count: 50, Neg. LLF: 1410138.7233081341
Iteration: 6, Func. Count: 60, Neg. LLF: 1353645.1687652683
Iteration: 7, Func. Count: 70, Neg. LLF: 1320143.7276938425
Iteration: 8, Func. Count: 80, Neg. LLF: 201.1701598095994
Iteration: 9, Func. Count: 90, Neg. LLF: 1292052.7680908204
Iteration: 10, Func. Count: 100, Neg. LLF: 123.82464438973378
Iteration: 11, Func. Count: 110, Neg. LLF: 329.33260194061205
Iteration: 12, Func. Count: 120, Neg. LLF: 115.78496401376806
Iteration: 13, Func. Count: 130, Neg. LLF: 106.69521815708593
Iteration: 14, Func. Count: 139, Neg. LLF: 106.21087763843524
Iteration: 15, Func. Count: 148, Neg. LLF: 106.1385813676414
Iteration: 16, Func. Count: 157, Neg. LLF: 106.13178432680833
Iteration: 17, Func. Count: 166, Neg. LLF: 106.11791075352588
Iteration: 18, Func. Count: 175, Neg. LLF: 106.09917104837386
Iteration: 19, Func. Count: 184, Neg. LLF: 106.08205515958927
Iteration: 20, Func. Count: 193, Neg. LLF: 106.08077490642252
Iteration: 21, Func. Count: 202, Neg. LLF: 106.07927710041697
Iteration: 22, Func. Count: 211, Neg. LLF: 106.07920820590465
Iteration: 23, Func. Count: 220, Neg. LLF: 106.0792061680986
Iteration: 24, Func. Count: 228, Neg. LLF: 106.07920684445783
Optimization terminated successfully (Exit mode 0)
Current function value: 106.0792061680986
Iterations: 24
Function evaluations: 228
Gradient evaluations: 24
Iteration: 1, Func. Count: 7, Neg. LLF: 162.91189895468278
Iteration: 2, Func. Count: 14, Neg. LLF: 133.54214294760877
Iteration: 3, Func. Count: 21, Neg. LLF: 117.0067182035247
Iteration: 4, Func. Count: 27, Neg. LLF: 449.13996222092203
Iteration: 5, Func. Count: 34, Neg. LLF: 198.39535253220686
Iteration: 6, Func. Count: 41, Neg. LLF: 222.09040444732378
Iteration: 7, Func. Count: 48, Neg. LLF: 1401.9212209477303
Iteration: 8, Func. Count: 55, Neg. LLF: 294.75338407160484
Iteration: 9, Func. Count: 62, Neg. LLF: 188.90071894895067
Iteration: 10, Func. Count: 69, Neg. LLF: 159.7269395822171
Iteration: 11, Func. Count: 76, Neg. LLF: 149.27784027988272
Iteration: 12, Func. Count: 83, Neg. LLF: 146.1504849914272
Iteration: 13, Func. Count: 90, Neg. LLF: 147.10256091029513
Iteration: 14, Func. Count: 97, Neg. LLF: 151.2908003844754
Iteration: 15, Func. Count: 104, Neg. LLF: 159.05613031980798
Iteration: 16, Func. Count: 111, Neg. LLF: 135.5350516878883
Iteration: 17, Func. Count: 118, Neg. LLF: 108.26035598265472
Iteration: 18, Func. Count: 125, Neg. LLF: 105.7646774428957
Iteration: 19, Func. Count: 131, Neg. LLF: 105.46866515017896
Iteration: 20, Func. Count: 137, Neg. LLF: 105.11838910388995
Iteration: 21, Func. Count: 143, Neg. LLF: 104.36178803920811
Iteration: 22, Func. Count: 149, Neg. LLF: 104.29907247093335
Iteration: 23, Func. Count: 155, Neg. LLF: 104.29014398560538
Iteration: 24, Func. Count: 161, Neg. LLF: 104.28981158406414
Iteration: 25, Func. Count: 167, Neg. LLF: 104.28979971206556
Iteration: 26, Func. Count: 172, Neg. LLF: 104.28979970324956
Optimization terminated successfully (Exit mode 0)
Current function value: 104.28979971206556
Iterations: 26
Function evaluations: 172
Gradient evaluations: 26
Iteration: 1, Func. Count: 8, Neg. LLF: 164953605.76754892
Iteration: 2, Func. Count: 16, Neg. LLF: 9863032.363524955
Iteration: 3, Func. Count: 24, Neg. LLF: 261.9867675030967
Iteration: 4, Func. Count: 33, Neg. LLF: 118.4125927048085
Iteration: 5, Func. Count: 41, Neg. LLF: 107.49208087418594
Iteration: 6, Func. Count: 49, Neg. LLF: 106.24457945943786
Iteration: 7, Func. Count: 56, Neg. LLF: 106.06585210462605
Iteration: 8, Func. Count: 63, Neg. LLF: 106.50556356883102
Iteration: 9, Func. Count: 72, Neg. LLF: 105.96535187333642
Iteration: 10, Func. Count: 79, Neg. LLF: 105.95519245750239
Iteration: 11, Func. Count: 86, Neg. LLF: 105.95442810031237
Iteration: 12, Func. Count: 93, Neg. LLF: 105.9537537158749
Iteration: 13, Func. Count: 100, Neg. LLF: 105.95347315416096
Iteration: 14, Func. Count: 107, Neg. LLF: 105.95342434964351
Iteration: 15, Func. Count: 114, Neg. LLF: 105.95342179227782
Iteration: 16, Func. Count: 120, Neg. LLF: 105.95342179224119
Optimization terminated successfully (Exit mode 0)
Current function value: 105.95342179227782
Iterations: 16
Function evaluations: 120
Gradient evaluations: 16
Iteration: 1, Func. Count: 9, Neg. LLF: 131912264.73874542
Iteration: 2, Func. Count: 18, Neg. LLF: 10248637.17777387
Iteration: 3, Func. Count: 27, Neg. LLF: 157.4837257741982
Iteration: 4, Func. Count: 36, Neg. LLF: 141.86448219493857
Iteration: 5, Func. Count: 45, Neg. LLF: 107.36129799304072
Iteration: 6, Func. Count: 53, Neg. LLF: 109.88589690525274
Iteration: 7, Func. Count: 62, Neg. LLF: 109.3803402316189
Iteration: 8, Func. Count: 71, Neg. LLF: 106.26582617184243
Iteration: 9, Func. Count: 79, Neg. LLF: 106.21553742008496
Iteration: 10, Func. Count: 87, Neg. LLF: 106.19991830983314
Iteration: 11, Func. Count: 95, Neg. LLF: 105.62668956603565
Iteration: 12, Func. Count: 103, Neg. LLF: 104.72078983836246
Iteration: 13, Func. Count: 111, Neg. LLF: 104.29520936223022
Iteration: 14, Func. Count: 119, Neg. LLF: 106.42927411478179
Iteration: 15, Func. Count: 129, Neg. LLF: 104.53797847726366
Iteration: 16, Func. Count: 138, Neg. LLF: 104.28980001814327
Iteration: 17, Func. Count: 145, Neg. LLF: 104.28980019090457
Optimization terminated successfully (Exit mode 0)
Current function value: 104.28980001814327
Iterations: 18
Function evaluations: 145
Gradient evaluations: 17
Iteration: 1, Func. Count: 10, Neg. LLF: 105921632.89494397
Iteration: 2, Func. Count: 20, Neg. LLF: 10199466.779461231
Iteration: 3, Func. Count: 30, Neg. LLF: 61539.994058812445
Iteration: 4, Func. Count: 40, Neg. LLF: 151.14155035187233
Iteration: 5, Func. Count: 50, Neg. LLF: 105.2251716692297
Iteration: 6, Func. Count: 59, Neg. LLF: 110.81983999620047
Iteration: 7, Func. Count: 69, Neg. LLF: 104.787158152138
Iteration: 8, Func. Count: 79, Neg. LLF: 104.26249687023372
Iteration: 9, Func. Count: 88, Neg. LLF: 104.17395221606131
Iteration: 10, Func. Count: 97, Neg. LLF: 104.12116350238726
Iteration: 11, Func. Count: 106, Neg. LLF: 104.08228878635664
Iteration: 12, Func. Count: 115, Neg. LLF: 104.03357269932674
Iteration: 13, Func. Count: 124, Neg. LLF: 103.960921371103
Iteration: 14, Func. Count: 133, Neg. LLF: 103.88527166940543
Iteration: 15, Func. Count: 142, Neg. LLF: 103.87039398997752
Iteration: 16, Func. Count: 151, Neg. LLF: 103.85760635987745
Iteration: 17, Func. Count: 160, Neg. LLF: 103.85663666111154
Iteration: 18, Func. Count: 169, Neg. LLF: 104.31489667836709
Iteration: 19, Func. Count: 180, Neg. LLF: 103.91288991166931
Iteration: 20, Func. Count: 191, Neg. LLF: 103.85665096060464
Iteration: 21, Func. Count: 201, Neg. LLF: 103.85633383299586
Iteration: 22, Func. Count: 209, Neg. LLF: 103.8563338245733
Optimization terminated successfully (Exit mode 0)
Current function value: 103.85633383299586
Iterations: 23
Function evaluations: 209
Gradient evaluations: 22
Iteration: 1, Func. Count: 11, Neg. LLF: 82331704.02050345
Iteration: 2, Func. Count: 22, Neg. LLF: 10186958.229559379
Iteration: 3, Func. Count: 33, Neg. LLF: 7810120.343226664
Iteration: 4, Func. Count: 44, Neg. LLF: 135.90640775482296
Iteration: 5, Func. Count: 55, Neg. LLF: 111.07955233204342
Iteration: 6, Func. Count: 66, Neg. LLF: 107.10828548720615
Iteration: 7, Func. Count: 76, Neg. LLF: 106.64284546463468
Iteration: 8, Func. Count: 86, Neg. LLF: 109.44859570531763
Iteration: 9, Func. Count: 99, Neg. LLF: 106.08613014590792
Iteration: 10, Func. Count: 109, Neg. LLF: 106.96530436313253
Iteration: 11, Func. Count: 120, Neg. LLF: 105.97589724458332
Iteration: 12, Func. Count: 130, Neg. LLF: 105.95745271025162
Iteration: 13, Func. Count: 140, Neg. LLF: 105.95467697614704
Iteration: 14, Func. Count: 150, Neg. LLF: 105.95380478012653
Iteration: 15, Func. Count: 160, Neg. LLF: 105.95351584267618
Iteration: 16, Func. Count: 170, Neg. LLF: 105.9534590989193
Iteration: 17, Func. Count: 180, Neg. LLF: 105.95342700353591
Iteration: 18, Func. Count: 190, Neg. LLF: 105.95342209782629
Iteration: 19, Func. Count: 199, Neg. LLF: 105.95342265799755
Optimization terminated successfully (Exit mode 0)
Current function value: 105.95342209782629
Iterations: 19
Function evaluations: 199
Gradient evaluations: 19
Iteration: 1, Func. Count: 8, Neg. LLF: 207.94052190361708
Iteration: 2, Func. Count: 17, Neg. LLF: 129.63538930853963
Iteration: 3, Func. Count: 25, Neg. LLF: 27174.294535738096
Iteration: 4, Func. Count: 33, Neg. LLF: 502.987541125551
Iteration: 5, Func. Count: 41, Neg. LLF: 686.62773638574
Iteration: 6, Func. Count: 49, Neg. LLF: 779.426768314
Iteration: 7, Func. Count: 57, Neg. LLF: 20052.688165310738
Iteration: 8, Func. Count: 65, Neg. LLF: 2003.485302746938
Iteration: 9, Func. Count: 73, Neg. LLF: 105.65545428312372
Iteration: 10, Func. Count: 81, Neg. LLF: 103.93046013512154
Iteration: 11, Func. Count: 88, Neg. LLF: 103.82704279449516
Iteration: 12, Func. Count: 95, Neg. LLF: 103.78063868731981
Iteration: 13, Func. Count: 102, Neg. LLF: 103.77853464676178
Iteration: 14, Func. Count: 109, Neg. LLF: 103.77840611010673
Iteration: 15, Func. Count: 116, Neg. LLF: 103.77839407228737
Iteration: 16, Func. Count: 122, Neg. LLF: 103.77839405352937
Optimization terminated successfully (Exit mode 0)
Current function value: 103.77839407228737
Iterations: 16
Function evaluations: 122
Gradient evaluations: 16
Iteration: 1, Func. Count: 9, Neg. LLF: 164449747.5511003
Iteration: 2, Func. Count: 18, Neg. LLF: 9861561.089388162
Iteration: 3, Func. Count: 27, Neg. LLF: 124.61608953166339
Iteration: 4, Func. Count: 37, Neg. LLF: 106.71817225517105
Iteration: 5, Func. Count: 46, Neg. LLF: 135.375274945529
Iteration: 6, Func. Count: 55, Neg. LLF: 104.50971087938811
Iteration: 7, Func. Count: 63, Neg. LLF: 103.93680790888487
Iteration: 8, Func. Count: 72, Neg. LLF: 103.68930380222909
Iteration: 9, Func. Count: 80, Neg. LLF: 103.61245779433612
Iteration: 10, Func. Count: 88, Neg. LLF: 103.58231389356835
Iteration: 11, Func. Count: 96, Neg. LLF: 103.56790612807377
Iteration: 12, Func. Count: 104, Neg. LLF: 103.56443983054025
Iteration: 13, Func. Count: 112, Neg. LLF: 103.56227033806225
Iteration: 14, Func. Count: 120, Neg. LLF: 103.56195672578598
Iteration: 15, Func. Count: 128, Neg. LLF: 103.56191048093386
Iteration: 16, Func. Count: 135, Neg. LLF: 103.56191042509242
Optimization terminated successfully (Exit mode 0)
Current function value: 103.56191048093386
Iterations: 16
Function evaluations: 135
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 132453063.99236548
Iteration: 2, Func. Count: 20, Neg. LLF: 10176379.608736161
Iteration: 3, Func. Count: 30, Neg. LLF: 124.05494420861746
Iteration: 4, Func. Count: 40, Neg. LLF: 108.94317602109999
Iteration: 5, Func. Count: 50, Neg. LLF: 164.08548995868082
Iteration: 6, Func. Count: 60, Neg. LLF: 110.08875529509423
Iteration: 7, Func. Count: 70, Neg. LLF: 103.65921204385849
Iteration: 8, Func. Count: 79, Neg. LLF: 106.25457136724674
Iteration: 9, Func. Count: 89, Neg. LLF: 116.44983511715307
Iteration: 10, Func. Count: 99, Neg. LLF: 116.93319766035906
Iteration: 11, Func. Count: 109, Neg. LLF: 117.04642268771445
Iteration: 12, Func. Count: 119, Neg. LLF: 116.98559843610175
Iteration: 13, Func. Count: 129, Neg. LLF: 116.88383679194368
Iteration: 14, Func. Count: 139, Neg. LLF: 116.76862805964048
Iteration: 15, Func. Count: 149, Neg. LLF: 116.65064041293175
Iteration: 16, Func. Count: 159, Neg. LLF: 116.53537140291094
Iteration: 17, Func. Count: 169, Neg. LLF: 116.42705119900037
Iteration: 18, Func. Count: 179, Neg. LLF: 116.32816637894626
Iteration: 19, Func. Count: 189, Neg. LLF: 102.63243435665004
Iteration: 20, Func. Count: 199, Neg. LLF: 102.07662789423706
Iteration: 21, Func. Count: 208, Neg. LLF: 102.0955816501635
Iteration: 22, Func. Count: 218, Neg. LLF: 102.0869652064558
Iteration: 23, Func. Count: 228, Neg. LLF: 102.03472354903487
Iteration: 24, Func. Count: 237, Neg. LLF: 102.02432152196091
Iteration: 25, Func. Count: 246, Neg. LLF: 102.0170050987461
Iteration: 26, Func. Count: 255, Neg. LLF: 102.01473091907143
Iteration: 27, Func. Count: 264, Neg. LLF: 102.01433964112161
Iteration: 28, Func. Count: 273, Neg. LLF: 102.01431348944747
Iteration: 29, Func. Count: 282, Neg. LLF: 102.01431236704553
Iteration: 30, Func. Count: 290, Neg. LLF: 102.01431230509613
Optimization terminated successfully (Exit mode 0)
Current function value: 102.01431236704553
Iterations: 30
Function evaluations: 290
Gradient evaluations: 30
Iteration: 1, Func. Count: 11, Neg. LLF: 105993260.92675179
Iteration: 2, Func. Count: 22, Neg. LLF: 10101048.859037079
Iteration: 3, Func. Count: 33, Neg. LLF: 796907.3163271192
Iteration: 4, Func. Count: 44, Neg. LLF: 121.48936803513882
Iteration: 5, Func. Count: 55, Neg. LLF: 115.22575058126537
Iteration: 6, Func. Count: 66, Neg. LLF: 114.93993787782807
Iteration: 7, Func. Count: 77, Neg. LLF: 104.88132126964149
Iteration: 8, Func. Count: 88, Neg. LLF: 116.65269645609621
Iteration: 9, Func. Count: 99, Neg. LLF: 102.47947676403147
Iteration: 10, Func. Count: 109, Neg. LLF: 104.20778429058761
Iteration: 11, Func. Count: 120, Neg. LLF: 101.85364096320016
Iteration: 12, Func. Count: 130, Neg. LLF: 101.71747929791303
Iteration: 13, Func. Count: 140, Neg. LLF: 101.68236849576587
Iteration: 14, Func. Count: 150, Neg. LLF: 101.66553846106164
Iteration: 15, Func. Count: 160, Neg. LLF: 101.64907988780475
Iteration: 16, Func. Count: 170, Neg. LLF: 101.64768267300798
Iteration: 17, Func. Count: 180, Neg. LLF: 101.64760059932364
Iteration: 18, Func. Count: 190, Neg. LLF: 101.64759087134624
Iteration: 19, Func. Count: 200, Neg. LLF: 101.64758983103432
Iteration: 20, Func. Count: 209, Neg. LLF: 101.64758976677227
Optimization terminated successfully (Exit mode 0)
Current function value: 101.64758983103432
Iterations: 20
Function evaluations: 209
Gradient evaluations: 20
Iteration: 1, Func. Count: 12, Neg. LLF: 82283305.82144187
Iteration: 2, Func. Count: 24, Neg. LLF: 430812.41633497184
Iteration: 3, Func. Count: 36, Neg. LLF: 11073047.609706044
Iteration: 4, Func. Count: 48, Neg. LLF: 110.74349355531551
Iteration: 5, Func. Count: 60, Neg. LLF: 106.20746201768854
Iteration: 6, Func. Count: 71, Neg. LLF: 392861.77242866904
Iteration: 7, Func. Count: 83, Neg. LLF: 121.54433087132992
Iteration: 8, Func. Count: 95, Neg. LLF: 102.52743038939605
Iteration: 9, Func. Count: 106, Neg. LLF: 104.22669678791712
Iteration: 10, Func. Count: 118, Neg. LLF: 102.96966081720811
Iteration: 11, Func. Count: 130, Neg. LLF: 101.82414112773293
Iteration: 12, Func. Count: 141, Neg. LLF: 102.96290630246176
Iteration: 13, Func. Count: 153, Neg. LLF: 101.76868621643649
Iteration: 14, Func. Count: 164, Neg. LLF: 101.734353177362
Iteration: 15, Func. Count: 175, Neg. LLF: 101.700244860374
Iteration: 16, Func. Count: 186, Neg. LLF: 101.66218018609948
Iteration: 17, Func. Count: 197, Neg. LLF: 102.54173769046533
Iteration: 18, Func. Count: 209, Neg. LLF: 102.12366132359583
Iteration: 19, Func. Count: 221, Neg. LLF: 101.6395968673419
Iteration: 20, Func. Count: 233, Neg. LLF: 101.63352750912124
Iteration: 21, Func. Count: 245, Neg. LLF: 101.63008527651434
Iteration: 22, Func. Count: 256, Neg. LLF: 101.62974223365515
Iteration: 23, Func. Count: 267, Neg. LLF: 101.62971142876086
Iteration: 24, Func. Count: 278, Neg. LLF: 101.62969776313366
Iteration: 25, Func. Count: 289, Neg. LLF: 101.62969692457303
Optimization terminated successfully (Exit mode 0)
Current function value: 101.62969692457303
Iterations: 25
Function evaluations: 289
Gradient evaluations: 25
Iteration: 1, Func. Count: 9, Neg. LLF: 206.5695446669808
Iteration: 2, Func. Count: 19, Neg. LLF: 136.8668688313994
Iteration: 3, Func. Count: 28, Neg. LLF: 26924.925528311538
Iteration: 4, Func. Count: 37, Neg. LLF: 2744.222261825162
Iteration: 5, Func. Count: 46, Neg. LLF: 43033.76629139751
Iteration: 6, Func. Count: 55, Neg. LLF: 566.8564472054112
Iteration: 7, Func. Count: 64, Neg. LLF: 2770.6332615392967
Iteration: 8, Func. Count: 73, Neg. LLF: 4114.054278699563
Iteration: 9, Func. Count: 82, Neg. LLF: 108.66296874268475
Iteration: 10, Func. Count: 91, Neg. LLF: 103.86940306649807
Iteration: 11, Func. Count: 99, Neg. LLF: 103.9781884766555
Iteration: 12, Func. Count: 108, Neg. LLF: 103.8015185197662
Iteration: 13, Func. Count: 116, Neg. LLF: 103.77861347538436
Iteration: 14, Func. Count: 124, Neg. LLF: 103.7784025229398
Iteration: 15, Func. Count: 132, Neg. LLF: 103.77839474901394
Iteration: 16, Func. Count: 140, Neg. LLF: 103.77839407385983
Optimization terminated successfully (Exit mode 0)
Current function value: 103.77839407385983
Iterations: 16
Function evaluations: 140
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 162347011.06160808
Iteration: 2, Func. Count: 20, Neg. LLF: 9897796.640929084
Iteration: 3, Func. Count: 30, Neg. LLF: 119.88168820004496
Iteration: 4, Func. Count: 41, Neg. LLF: 108.33888700947966
Iteration: 5, Func. Count: 51, Neg. LLF: 139.65045024568502
Iteration: 6, Func. Count: 61, Neg. LLF: 104.35257750749037
Iteration: 7, Func. Count: 70, Neg. LLF: 103.97407807068163
Iteration: 8, Func. Count: 80, Neg. LLF: 103.6993519051408
Iteration: 9, Func. Count: 89, Neg. LLF: 103.60886360102705
Iteration: 10, Func. Count: 98, Neg. LLF: 103.5706821578981
Iteration: 11, Func. Count: 107, Neg. LLF: 103.56358472858747
Iteration: 12, Func. Count: 116, Neg. LLF: 103.56238602883674
Iteration: 13, Func. Count: 125, Neg. LLF: 103.56198345073793
Iteration: 14, Func. Count: 134, Neg. LLF: 103.56191591861352
Iteration: 15, Func. Count: 143, Neg. LLF: 103.56191012290354
Iteration: 16, Func. Count: 151, Neg. LLF: 103.56191006699756
Optimization terminated successfully (Exit mode 0)
Current function value: 103.56191012290354
Iterations: 16
Function evaluations: 151
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 130808021.59951003
Iteration: 2, Func. Count: 22, Neg. LLF: 10250885.154577399
Iteration: 3, Func. Count: 33, Neg. LLF: 125.31959061737084
Iteration: 4, Func. Count: 44, Neg. LLF: 114.373843023123
Iteration: 5, Func. Count: 55, Neg. LLF: 163.39637015424952
Iteration: 6, Func. Count: 66, Neg. LLF: 112.12788238824554
Iteration: 7, Func. Count: 77, Neg. LLF: 103.71685239346822
Iteration: 8, Func. Count: 87, Neg. LLF: 103.53496257073236
Iteration: 9, Func. Count: 98, Neg. LLF: 102.95559951974927
Iteration: 10, Func. Count: 108, Neg. LLF: 102.54114123604397
Iteration: 11, Func. Count: 118, Neg. LLF: 102.21656830738702
Iteration: 12, Func. Count: 128, Neg. LLF: 117.56450608756658
Iteration: 13, Func. Count: 139, Neg. LLF: 117.09459151890286
Iteration: 14, Func. Count: 150, Neg. LLF: 104.17213070709376
Iteration: 15, Func. Count: 161, Neg. LLF: 102.24901038574806
Iteration: 16, Func. Count: 172, Neg. LLF: 102.05054996475984
Iteration: 17, Func. Count: 182, Neg. LLF: 102.03890731431957
Iteration: 18, Func. Count: 192, Neg. LLF: 102.03469544573399
Iteration: 19, Func. Count: 202, Neg. LLF: 102.02327360664651
Iteration: 20, Func. Count: 212, Neg. LLF: 102.01870831882579
Iteration: 21, Func. Count: 222, Neg. LLF: 102.01518599319455
Iteration: 22, Func. Count: 232, Neg. LLF: 102.01439403973372
Iteration: 23, Func. Count: 242, Neg. LLF: 102.01431402281422
Iteration: 24, Func. Count: 252, Neg. LLF: 102.01485113464
Optimization terminated successfully (Exit mode 0)
Current function value: 102.01431352637718
Iterations: 25
Function evaluations: 254
Gradient evaluations: 24
Iteration: 1, Func. Count: 12, Neg. LLF: 104724442.65434033
Iteration: 2, Func. Count: 24, Neg. LLF: 10198831.60223875
Iteration: 3, Func. Count: 36, Neg. LLF: 978969.9969199077
Iteration: 4, Func. Count: 48, Neg. LLF: 121.3291325711485
Iteration: 5, Func. Count: 60, Neg. LLF: 115.30265789737388
Iteration: 6, Func. Count: 72, Neg. LLF: 126.30491261673822
Iteration: 7, Func. Count: 84, Neg. LLF: 111.66630799316772
Iteration: 8, Func. Count: 96, Neg. LLF: 104.25986769591871
Iteration: 9, Func. Count: 108, Neg. LLF: 116.73326986107594
Iteration: 10, Func. Count: 120, Neg. LLF: 102.60265863546543
Iteration: 11, Func. Count: 131, Neg. LLF: 105.64270636608045
Iteration: 12, Func. Count: 143, Neg. LLF: 102.67423261296723
Iteration: 13, Func. Count: 155, Neg. LLF: 101.80405755097861
Iteration: 14, Func. Count: 166, Neg. LLF: 101.73541827247759
Iteration: 15, Func. Count: 177, Neg. LLF: 101.67740559647304
Iteration: 16, Func. Count: 188, Neg. LLF: 101.67443111063649
Iteration: 17, Func. Count: 200, Neg. LLF: 101.65065811151078
Iteration: 18, Func. Count: 211, Neg. LLF: 101.64847443385462
Iteration: 19, Func. Count: 222, Neg. LLF: 101.6477529526362
Iteration: 20, Func. Count: 233, Neg. LLF: 101.64760517166843
Iteration: 21, Func. Count: 244, Neg. LLF: 101.64759047083231
Iteration: 22, Func. Count: 255, Neg. LLF: 101.64758978161068
Optimization terminated successfully (Exit mode 0)
Current function value: 101.64758978161068
Iterations: 22
Function evaluations: 255
Gradient evaluations: 22
Iteration: 1, Func. Count: 13, Neg. LLF: 81265320.61824723
Iteration: 2, Func. Count: 26, Neg. LLF: 413254.46290432994
Iteration: 3, Func. Count: 39, Neg. LLF: 9856788.234601514
Iteration: 4, Func. Count: 52, Neg. LLF: 108.51617674005367
Iteration: 5, Func. Count: 64, Neg. LLF: 116.57110300433054
Iteration: 6, Func. Count: 77, Neg. LLF: 146.56603520603042
Iteration: 7, Func. Count: 90, Neg. LLF: 263.47272605354533
Iteration: 8, Func. Count: 103, Neg. LLF: 102.40726371941282
Iteration: 9, Func. Count: 115, Neg. LLF: 183.89737723083374
Iteration: 10, Func. Count: 128, Neg. LLF: 107.2658632101191
Iteration: 11, Func. Count: 142, Neg. LLF: 101.75783247759736
Iteration: 12, Func. Count: 155, Neg. LLF: 101.98295723618001
Iteration: 13, Func. Count: 168, Neg. LLF: 101.64333545922031
Iteration: 14, Func. Count: 180, Neg. LLF: 101.6471659750271
Iteration: 15, Func. Count: 193, Neg. LLF: 101.63491053079083
Iteration: 16, Func. Count: 205, Neg. LLF: 101.63165125147938
Iteration: 17, Func. Count: 217, Neg. LLF: 101.63022612245885
Iteration: 18, Func. Count: 229, Neg. LLF: 101.62983149835728
Iteration: 19, Func. Count: 241, Neg. LLF: 101.62971703314642
Iteration: 20, Func. Count: 253, Neg. LLF: 101.62969924020321
Iteration: 21, Func. Count: 265, Neg. LLF: 101.62969703404926
Iteration: 22, Func. Count: 276, Neg. LLF: 101.62969696984408
Optimization terminated successfully (Exit mode 0)
Current function value: 101.62969703404926
Iterations: 22
Function evaluations: 276
Gradient evaluations: 22
Iteration: 1, Func. Count: 10, Neg. LLF: 207.5085657915324
Iteration: 2, Func. Count: 21, Neg. LLF: 139.19426848919733
Iteration: 3, Func. Count: 31, Neg. LLF: 119133.22364729868
Iteration: 4, Func. Count: 41, Neg. LLF: 1241.7439083666704
Iteration: 5, Func. Count: 51, Neg. LLF: 86242.55503575134
Iteration: 6, Func. Count: 61, Neg. LLF: 43835.80114649366
Iteration: 7, Func. Count: 71, Neg. LLF: 41029.80183558657
Iteration: 8, Func. Count: 81, Neg. LLF: 39298.5548633563
Iteration: 9, Func. Count: 91, Neg. LLF: 5854.974430848259
Iteration: 10, Func. Count: 101, Neg. LLF: 2807.636441355127
Iteration: 11, Func. Count: 111, Neg. LLF: 105.6928104418946
Iteration: 12, Func. Count: 121, Neg. LLF: 101.96316479698612
Iteration: 13, Func. Count: 130, Neg. LLF: 101.93961836268974
Iteration: 14, Func. Count: 139, Neg. LLF: 101.92025894246441
Iteration: 15, Func. Count: 148, Neg. LLF: 101.87580798091685
Iteration: 16, Func. Count: 157, Neg. LLF: 101.81826832999741
Iteration: 17, Func. Count: 166, Neg. LLF: 102.08968016262631
Iteration: 18, Func. Count: 176, Neg. LLF: 101.77805849842169
Iteration: 19, Func. Count: 185, Neg. LLF: 101.77074824293148
Iteration: 20, Func. Count: 194, Neg. LLF: 101.77067399978678
Iteration: 21, Func. Count: 204, Neg. LLF: 101.7703368779858
Iteration: 22, Func. Count: 213, Neg. LLF: 101.77033557025138
Iteration: 23, Func. Count: 221, Neg. LLF: 101.77033555112972
Optimization terminated successfully (Exit mode 0)
Current function value: 101.77033557025138
Iterations: 23
Function evaluations: 221
Gradient evaluations: 23
Iteration: 1, Func. Count: 11, Neg. LLF: 161755097.88273776
Iteration: 2, Func. Count: 22, Neg. LLF: 9900030.815076508
Iteration: 3, Func. Count: 33, Neg. LLF: 117.78670755757575
Iteration: 4, Func. Count: 45, Neg. LLF: 107.18073996980293
Iteration: 5, Func. Count: 56, Neg. LLF: 145.4527182704354
Iteration: 6, Func. Count: 67, Neg. LLF: 104.23888801351193
Iteration: 7, Func. Count: 77, Neg. LLF: 103.94389289326718
Iteration: 8, Func. Count: 88, Neg. LLF: 103.65957222983162
Iteration: 9, Func. Count: 98, Neg. LLF: 103.59678780391003
Iteration: 10, Func. Count: 108, Neg. LLF: 103.56643275501166
Iteration: 11, Func. Count: 118, Neg. LLF: 103.56320444059696
Iteration: 12, Func. Count: 128, Neg. LLF: 103.56223870599213
Iteration: 13, Func. Count: 138, Neg. LLF: 103.5619495390812
Iteration: 14, Func. Count: 148, Neg. LLF: 103.5619112692548
Iteration: 15, Func. Count: 158, Neg. LLF: 103.56191003161756
Iteration: 16, Func. Count: 167, Neg. LLF: 103.56190997567002
Optimization terminated successfully (Exit mode 0)
Current function value: 103.56191003161756
Iterations: 16
Function evaluations: 167
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 130322859.63147703
Iteration: 2, Func. Count: 24, Neg. LLF: 10263090.145219197
Iteration: 3, Func. Count: 36, Neg. LLF: 125.62473294319057
Iteration: 4, Func. Count: 48, Neg. LLF: 114.98582528580806
Iteration: 5, Func. Count: 60, Neg. LLF: 183.60210453329358
Iteration: 6, Func. Count: 72, Neg. LLF: 112.95591806686527
Iteration: 7, Func. Count: 84, Neg. LLF: 103.76221893481937
Iteration: 8, Func. Count: 95, Neg. LLF: 103.5271573122799
Iteration: 9, Func. Count: 107, Neg. LLF: 102.95602813746825
Iteration: 10, Func. Count: 118, Neg. LLF: 102.53766122866146
Iteration: 11, Func. Count: 129, Neg. LLF: 102.21552584167154
Iteration: 12, Func. Count: 140, Neg. LLF: 117.5117158386344
Iteration: 13, Func. Count: 152, Neg. LLF: 117.04373629335836
Iteration: 14, Func. Count: 164, Neg. LLF: 106.04744501677455
Iteration: 15, Func. Count: 176, Neg. LLF: 102.30876453101482
Iteration: 16, Func. Count: 188, Neg. LLF: 102.05363742658918
Iteration: 17, Func. Count: 199, Neg. LLF: 102.0345839757766
Iteration: 18, Func. Count: 210, Neg. LLF: 102.02988811333721
Iteration: 19, Func. Count: 221, Neg. LLF: 102.02111329475845
Iteration: 20, Func. Count: 232, Neg. LLF: 102.01812279842993
Iteration: 21, Func. Count: 243, Neg. LLF: 102.01506047613087
Iteration: 22, Func. Count: 254, Neg. LLF: 102.01440318012439
Iteration: 23, Func. Count: 265, Neg. LLF: 102.01431256440621
Iteration: 24, Func. Count: 276, Neg. LLF: 102.0143115201039
Iteration: 25, Func. Count: 287, Neg. LLF: 102.01438413141395
Optimization terminated successfully (Exit mode 0)
Current function value: 102.01431152203338
Iterations: 26
Function evaluations: 290
Gradient evaluations: 25
Iteration: 1, Func. Count: 13, Neg. LLF: 104200917.645092
Iteration: 2, Func. Count: 26, Neg. LLF: 10216921.764878217
Iteration: 3, Func. Count: 39, Neg. LLF: 1055161.9824781972
Iteration: 4, Func. Count: 52, Neg. LLF: 120.78848797751704
Iteration: 5, Func. Count: 65, Neg. LLF: 115.55124865101641
Iteration: 6, Func. Count: 78, Neg. LLF: 127.74527570676756
Iteration: 7, Func. Count: 91, Neg. LLF: 114.47111994362265
Iteration: 8, Func. Count: 104, Neg. LLF: 106.97386248710897
Iteration: 9, Func. Count: 117, Neg. LLF: 103.12515302850744
Iteration: 10, Func. Count: 129, Neg. LLF: 264.9871549821527
Iteration: 11, Func. Count: 142, Neg. LLF: 110.05877879587504
Iteration: 12, Func. Count: 156, Neg. LLF: 102.40432959919744
Iteration: 13, Func. Count: 169, Neg. LLF: 101.94643695685073
Iteration: 14, Func. Count: 181, Neg. LLF: 101.77104461901698
Iteration: 15, Func. Count: 193, Neg. LLF: 101.7229224860933
Iteration: 16, Func. Count: 205, Neg. LLF: 101.70242515092178
Iteration: 17, Func. Count: 217, Neg. LLF: 101.68504394550735
Iteration: 18, Func. Count: 229, Neg. LLF: 101.67718441471679
Iteration: 19, Func. Count: 241, Neg. LLF: 101.66366972917967
Iteration: 20, Func. Count: 253, Neg. LLF: 101.65330153336276
Iteration: 21, Func. Count: 265, Neg. LLF: 101.64880258485647
Iteration: 22, Func. Count: 277, Neg. LLF: 101.64764289571399
Iteration: 23, Func. Count: 289, Neg. LLF: 101.64759329022161
Iteration: 24, Func. Count: 301, Neg. LLF: 101.64758978776983
Iteration: 25, Func. Count: 312, Neg. LLF: 101.64758972351504
Optimization terminated successfully (Exit mode 0)
Current function value: 101.64758978776983
Iterations: 25
Function evaluations: 312
Gradient evaluations: 25
Iteration: 1, Func. Count: 14, Neg. LLF: 80784362.83260614
Iteration: 2, Func. Count: 28, Neg. LLF: 388758.23484987754
Iteration: 3, Func. Count: 42, Neg. LLF: 8546664.730246857
Iteration: 4, Func. Count: 56, Neg. LLF: 112.07924815696055
Iteration: 5, Func. Count: 70, Neg. LLF: 206.1046892059417
Iteration: 6, Func. Count: 84, Neg. LLF: 189.50371466454214
Iteration: 7, Func. Count: 98, Neg. LLF: 107.9161340817618
Iteration: 8, Func. Count: 112, Neg. LLF: 103.34519182032695
Iteration: 9, Func. Count: 125, Neg. LLF: 104.33056696422281
Iteration: 10, Func. Count: 139, Neg. LLF: 112.92523812545205
Iteration: 11, Func. Count: 154, Neg. LLF: 101.97427823824619
Iteration: 12, Func. Count: 168, Neg. LLF: 102.15049328391157
Iteration: 13, Func. Count: 182, Neg. LLF: 101.65549947540993
Iteration: 14, Func. Count: 195, Neg. LLF: 101.63774069068992
Iteration: 15, Func. Count: 208, Neg. LLF: 101.63118431109166
Iteration: 16, Func. Count: 221, Neg. LLF: 101.63020090934283
Iteration: 17, Func. Count: 234, Neg. LLF: 101.63000716664916
Iteration: 18, Func. Count: 247, Neg. LLF: 101.62990172194169
Iteration: 19, Func. Count: 260, Neg. LLF: 101.62971556055402
Iteration: 20, Func. Count: 273, Neg. LLF: 101.62969864935222
Iteration: 21, Func. Count: 286, Neg. LLF: 101.62969695286978
Iteration: 22, Func. Count: 298, Neg. LLF: 101.62969688882609
Optimization terminated successfully (Exit mode 0)
Current function value: 101.62969695286978
Iterations: 22
Function evaluations: 298
Gradient evaluations: 22
Iteration: 1, Func. Count: 7, Neg. LLF: 154.1295589008033
Iteration: 2, Func. Count: 14, Neg. LLF: 153.00120582846523
Iteration: 3, Func. Count: 21, Neg. LLF: 119.10283429745962
Iteration: 4, Func. Count: 27, Neg. LLF: 841.8510151147888
Iteration: 5, Func. Count: 34, Neg. LLF: 493.0407451727315
Iteration: 6, Func. Count: 41, Neg. LLF: 401.20613512417106
Iteration: 7, Func. Count: 48, Neg. LLF: 409.89952681789117
Iteration: 8, Func. Count: 55, Neg. LLF: 238.3181825729742
Iteration: 9, Func. Count: 62, Neg. LLF: 823.414241894638
Iteration: 10, Func. Count: 69, Neg. LLF: 157072.94075556117
Iteration: 11, Func. Count: 76, Neg. LLF: 1079.0187710478838
Iteration: 12, Func. Count: 83, Neg. LLF: 2684.1195318966916
Iteration: 13, Func. Count: 90, Neg. LLF: 332.71056050787695
Iteration: 14, Func. Count: 97, Neg. LLF: 517.4475296087772
Iteration: 15, Func. Count: 104, Neg. LLF: 240.88981782670038
Iteration: 16, Func. Count: 111, Neg. LLF: 1170.1891971798143
Iteration: 17, Func. Count: 118, Neg. LLF: 106.79648977460718
Iteration: 18, Func. Count: 125, Neg. LLF: 116.1501461725326
Iteration: 19, Func. Count: 132, Neg. LLF: 104.3331695267059
Iteration: 20, Func. Count: 138, Neg. LLF: 104.33159146150544
Iteration: 21, Func. Count: 144, Neg. LLF: 104.33157502036528
Iteration: 22, Func. Count: 149, Neg. LLF: 104.33157503969858
Optimization terminated successfully (Exit mode 0)
Current function value: 104.33157502036528
Iterations: 22
Function evaluations: 149
Gradient evaluations: 22
Iteration: 1, Func. Count: 8, Neg. LLF: 80721648.72598433
Iteration: 2, Func. Count: 16, Neg. LLF: 20948117.162046097
Iteration: 3, Func. Count: 24, Neg. LLF: 1507741.687620685
Iteration: 4, Func. Count: 32, Neg. LLF: 341.60293050632305
Iteration: 5, Func. Count: 40, Neg. LLF: 130.5192795433599
Iteration: 6, Func. Count: 48, Neg. LLF: 181.78909863250217
Iteration: 7, Func. Count: 56, Neg. LLF: 143.96642782149598
Iteration: 8, Func. Count: 64, Neg. LLF: 137.43472598741306
Iteration: 9, Func. Count: 72, Neg. LLF: 107.7530212736062
Iteration: 10, Func. Count: 80, Neg. LLF: 106.06446085318251
Iteration: 11, Func. Count: 87, Neg. LLF: 106.03231555105116
Iteration: 12, Func. Count: 94, Neg. LLF: 106.02682662831792
Iteration: 13, Func. Count: 101, Neg. LLF: 106.02618607823021
Iteration: 14, Func. Count: 108, Neg. LLF: 106.02594295263356
Iteration: 15, Func. Count: 115, Neg. LLF: 106.02505330726038
Iteration: 16, Func. Count: 122, Neg. LLF: 106.02199679067672
Iteration: 17, Func. Count: 129, Neg. LLF: 106.22076758437734
Iteration: 18, Func. Count: 137, Neg. LLF: 106.46649622763587
Iteration: 19, Func. Count: 145, Neg. LLF: 106.0200833697648
Iteration: 20, Func. Count: 153, Neg. LLF: 106.005924340966
Iteration: 21, Func. Count: 160, Neg. LLF: 105.9870380444283
Iteration: 22, Func. Count: 167, Neg. LLF: 105.93688270205992
Iteration: 23, Func. Count: 174, Neg. LLF: 105.7412799731301
Iteration: 24, Func. Count: 181, Neg. LLF: 105.41480387228881
Iteration: 25, Func. Count: 188, Neg. LLF: 104.97608428105539
Iteration: 26, Func. Count: 195, Neg. LLF: 104.59480772723742
Iteration: 27, Func. Count: 202, Neg. LLF: 104.35406739007162
Iteration: 28, Func. Count: 209, Neg. LLF: 104.34302451108364
Iteration: 29, Func. Count: 216, Neg. LLF: 104.33167749346534
Iteration: 30, Func. Count: 223, Neg. LLF: 104.33157561536302
Iteration: 31, Func. Count: 230, Neg. LLF: 104.33157501170027
Optimization terminated successfully (Exit mode 0)
Current function value: 104.33157501170027
Iterations: 31
Function evaluations: 230
Gradient evaluations: 31
Iteration: 1, Func. Count: 9, Neg. LLF: 51175155.006552756
Iteration: 2, Func. Count: 18, Neg. LLF: 76095353.93694915
Iteration: 3, Func. Count: 28, Neg. LLF: 26604908.792454287
Iteration: 4, Func. Count: 37, Neg. LLF: 962355.7353381565
Iteration: 5, Func. Count: 46, Neg. LLF: 172.58042793093648
Iteration: 6, Func. Count: 55, Neg. LLF: 117.22943460020925
Iteration: 7, Func. Count: 64, Neg. LLF: 106.59942346694115
Iteration: 8, Func. Count: 72, Neg. LLF: 116.93797404074255
Iteration: 9, Func. Count: 82, Neg. LLF: 108.25665417060841
Iteration: 10, Func. Count: 91, Neg. LLF: 106.24951208003239
Iteration: 11, Func. Count: 100, Neg. LLF: 106.08841978008964
Iteration: 12, Func. Count: 108, Neg. LLF: 106.06518460753578
Iteration: 13, Func. Count: 116, Neg. LLF: 106.05408308129925
Iteration: 14, Func. Count: 124, Neg. LLF: 106.04080105578423
Iteration: 15, Func. Count: 132, Neg. LLF: 106.03388906323023
Iteration: 16, Func. Count: 140, Neg. LLF: 106.02999085786084
Iteration: 17, Func. Count: 148, Neg. LLF: 106.02722941335132
Iteration: 18, Func. Count: 156, Neg. LLF: 106.01925646045424
Iteration: 19, Func. Count: 164, Neg. LLF: 106.44364435518806
Iteration: 20, Func. Count: 173, Neg. LLF: 106.40192209327017
Iteration: 21, Func. Count: 182, Neg. LLF: 106.3802856789654
Iteration: 22, Func. Count: 191, Neg. LLF: 106.36184574660528
Iteration: 23, Func. Count: 200, Neg. LLF: 106.31597039937614
Iteration: 24, Func. Count: 209, Neg. LLF: 108.93856006669911
Iteration: 25, Func. Count: 218, Neg. LLF: 105.3497371075205
Iteration: 26, Func. Count: 226, Neg. LLF: 105.00740576759931
Iteration: 27, Func. Count: 234, Neg. LLF: 104.84828950886387
Iteration: 28, Func. Count: 242, Neg. LLF: 104.6242862934261
Iteration: 29, Func. Count: 250, Neg. LLF: 104.48409141846763
Iteration: 30, Func. Count: 258, Neg. LLF: 104.3621122047779
Iteration: 31, Func. Count: 266, Neg. LLF: 113.33491325969348
Iteration: 32, Func. Count: 276, Neg. LLF: 105.97591795141288
Iteration: 33, Func. Count: 285, Neg. LLF: 104.34366076552215
Iteration: 34, Func. Count: 294, Neg. LLF: 105.09571877349622
Iteration: 35, Func. Count: 304, Neg. LLF: 104.27997494898587
Iteration: 36, Func. Count: 312, Neg. LLF: 104.27995405003779
Iteration: 37, Func. Count: 320, Neg. LLF: 104.27995072444965
Iteration: 38, Func. Count: 328, Neg. LLF: 104.27994956413053
Iteration: 39, Func. Count: 336, Neg. LLF: 104.27994871852974
Optimization terminated successfully (Exit mode 0)
Current function value: 104.27994871852974
Iterations: 40
Function evaluations: 336
Gradient evaluations: 39
Iteration: 1, Func. Count: 10, Neg. LLF: 31280860.455439236
Iteration: 2, Func. Count: 20, Neg. LLF: 3722.8524533380337
Iteration: 3, Func. Count: 32, Neg. LLF: 1905116.6388552547
Iteration: 4, Func. Count: 42, Neg. LLF: 1013728.8252981333
Iteration: 5, Func. Count: 52, Neg. LLF: 199.65795091506948
Iteration: 6, Func. Count: 62, Neg. LLF: 137.44291742065874
Iteration: 7, Func. Count: 72, Neg. LLF: 132.14105201449607
Iteration: 8, Func. Count: 82, Neg. LLF: 932892.5542249556
Iteration: 9, Func. Count: 92, Neg. LLF: 121.02438782493161
Iteration: 10, Func. Count: 102, Neg. LLF: 110.4803277220389
Iteration: 11, Func. Count: 112, Neg. LLF: 110.01249580634263
Iteration: 12, Func. Count: 122, Neg. LLF: 106.61660188631501
Iteration: 13, Func. Count: 131, Neg. LLF: 106.32579918721648
Iteration: 14, Func. Count: 140, Neg. LLF: 106.27857862860759
Iteration: 15, Func. Count: 149, Neg. LLF: 106.2218187125325
Iteration: 16, Func. Count: 158, Neg. LLF: 106.2011227224773
Iteration: 17, Func. Count: 168, Neg. LLF: 107.97042655105412
Iteration: 18, Func. Count: 178, Neg. LLF: 106.05264796571521
Iteration: 19, Func. Count: 187, Neg. LLF: 106.04405330562219
Iteration: 20, Func. Count: 196, Neg. LLF: 106.042181480928
Iteration: 21, Func. Count: 205, Neg. LLF: 106.04014491538004
Iteration: 22, Func. Count: 214, Neg. LLF: 106.03626090991261
Iteration: 23, Func. Count: 223, Neg. LLF: 106.03399597655911
Iteration: 24, Func. Count: 232, Neg. LLF: 106.03160870077537
Iteration: 25, Func. Count: 241, Neg. LLF: 106.02918149516772
Iteration: 26, Func. Count: 250, Neg. LLF: 106.02523237952498
Iteration: 27, Func. Count: 259, Neg. LLF: 105.9713847649164
Iteration: 28, Func. Count: 268, Neg. LLF: 106.43724892183701
Iteration: 29, Func. Count: 278, Neg. LLF: 106.30583308300814
Iteration: 30, Func. Count: 288, Neg. LLF: 106.04892157739106
Iteration: 31, Func. Count: 298, Neg. LLF: 105.3505697983053
Iteration: 32, Func. Count: 307, Neg. LLF: 105.19762433360077
Iteration: 33, Func. Count: 317, Neg. LLF: 104.9298778887634
Iteration: 34, Func. Count: 326, Neg. LLF: 105.0366473104443
Iteration: 35, Func. Count: 336, Neg. LLF: 104.8112887797631
Iteration: 36, Func. Count: 346, Neg. LLF: 104.65198020897829
Iteration: 37, Func. Count: 355, Neg. LLF: 104.80159577825616
Iteration: 38, Func. Count: 365, Neg. LLF: 104.47419519218636
Iteration: 39, Func. Count: 374, Neg. LLF: 105.56577342513876
Iteration: 40, Func. Count: 384, Neg. LLF: 104.36331536808787
Iteration: 41, Func. Count: 393, Neg. LLF: 104.32302176385569
Iteration: 42, Func. Count: 402, Neg. LLF: 104.29722141154033
Iteration: 43, Func. Count: 411, Neg. LLF: 104.28413258145407
Iteration: 44, Func. Count: 420, Neg. LLF: 104.2803946532328
Iteration: 45, Func. Count: 429, Neg. LLF: 104.27996887517872
Iteration: 46, Func. Count: 438, Neg. LLF: 104.27994733832956
Iteration: 47, Func. Count: 447, Neg. LLF: 106.11892153298315
Iteration: 48, Func. Count: 460, Neg. LLF: 104.2799895094898
Iteration: 49, Func. Count: 471, Neg. LLF: 104.27995232609396
Iteration: 50, Func. Count: 481, Neg. LLF: 104.27994864461087
Iteration: 51, Func. Count: 489, Neg. LLF: 104.27994892384788
Optimization terminated successfully (Exit mode 0)
Current function value: 104.27994864461087
Iterations: 52
Function evaluations: 489
Gradient evaluations: 51
Iteration: 1, Func. Count: 11, Neg. LLF: 16585234.516229007
Iteration: 2, Func. Count: 22, Neg. LLF: 85996835.33896843
Iteration: 3, Func. Count: 33, Neg. LLF: 1359627.7595896195
Iteration: 4, Func. Count: 44, Neg. LLF: 1613713.4745875804
Iteration: 5, Func. Count: 55, Neg. LLF: 1402645.6892319939
Iteration: 6, Func. Count: 66, Neg. LLF: 1352244.0937722172
Iteration: 7, Func. Count: 77, Neg. LLF: 1318543.1393093895
Iteration: 8, Func. Count: 88, Neg. LLF: 1295292.574091625
Iteration: 9, Func. Count: 99, Neg. LLF: 134.94646984650163
Iteration: 10, Func. Count: 110, Neg. LLF: 1317045.1177893535
Iteration: 11, Func. Count: 121, Neg. LLF: 219.78976100811678
Iteration: 12, Func. Count: 132, Neg. LLF: 936.7148231744965
Iteration: 13, Func. Count: 143, Neg. LLF: 111.95506015545503
Iteration: 14, Func. Count: 154, Neg. LLF: 106.76688066716024
Iteration: 15, Func. Count: 164, Neg. LLF: 126.4487631300767
Iteration: 16, Func. Count: 175, Neg. LLF: 108.15081791853008
Iteration: 17, Func. Count: 186, Neg. LLF: 106.18267204279317
Iteration: 18, Func. Count: 196, Neg. LLF: 106.05965339153948
Iteration: 19, Func. Count: 206, Neg. LLF: 106.04425533224082
Iteration: 20, Func. Count: 216, Neg. LLF: 106.03701011990951
Iteration: 21, Func. Count: 226, Neg. LLF: 106.0342806868163
Iteration: 22, Func. Count: 236, Neg. LLF: 106.03406156316333
Iteration: 23, Func. Count: 246, Neg. LLF: 106.03391988345973
Iteration: 24, Func. Count: 256, Neg. LLF: 106.03344258960644
Iteration: 25, Func. Count: 266, Neg. LLF: 106.03242436480144
Iteration: 26, Func. Count: 276, Neg. LLF: 106.02988135747569
Iteration: 27, Func. Count: 286, Neg. LLF: 106.01761627673461
Iteration: 28, Func. Count: 296, Neg. LLF: 106.50565648086734
Iteration: 29, Func. Count: 307, Neg. LLF: 106.52439849776805
Iteration: 30, Func. Count: 318, Neg. LLF: 106.56909541783135
Iteration: 31, Func. Count: 329, Neg. LLF: 107.75662235586172
Iteration: 32, Func. Count: 340, Neg. LLF: 106.75914301527648
Iteration: 33, Func. Count: 351, Neg. LLF: 106.00360843087596
Iteration: 34, Func. Count: 362, Neg. LLF: 105.90852185155411
Iteration: 35, Func. Count: 372, Neg. LLF: 105.83397137123124
Iteration: 36, Func. Count: 382, Neg. LLF: 105.80650037788308
Iteration: 37, Func. Count: 392, Neg. LLF: 105.6770661106243
Iteration: 38, Func. Count: 402, Neg. LLF: 105.44847110185539
Iteration: 39, Func. Count: 412, Neg. LLF: 105.04507597432834
Iteration: 40, Func. Count: 422, Neg. LLF: 104.84767533485173
Iteration: 41, Func. Count: 433, Neg. LLF: 105.64683056927886
Iteration: 42, Func. Count: 445, Neg. LLF: 104.48171649268141
Iteration: 43, Func. Count: 455, Neg. LLF: 104.40253977102009
Iteration: 44, Func. Count: 465, Neg. LLF: 104.380995424739
Iteration: 45, Func. Count: 476, Neg. LLF: 104.2961709999773
Iteration: 46, Func. Count: 486, Neg. LLF: 104.28031213546586
Iteration: 47, Func. Count: 496, Neg. LLF: 104.28000273879009
Iteration: 48, Func. Count: 506, Neg. LLF: 104.27994043773137
Iteration: 49, Func. Count: 516, Neg. LLF: 104.93115023866659
Iteration: 50, Func. Count: 530, Neg. LLF: 104.2804941179279
Iteration: 51, Func. Count: 542, Neg. LLF: 104.27999219225107
Iteration: 52, Func. Count: 553, Neg. LLF: 104.27994864448463
Iteration: 53, Func. Count: 562, Neg. LLF: 104.27994998781308
Optimization terminated successfully (Exit mode 0)
Current function value: 104.27994864448463
Iterations: 54
Function evaluations: 562
Gradient evaluations: 53
Iteration: 1, Func. Count: 8, Neg. LLF: 219.30808864395132
Iteration: 2, Func. Count: 17, Neg. LLF: 129.64073047451495
Iteration: 3, Func. Count: 25, Neg. LLF: 2904.3432688319785
Iteration: 4, Func. Count: 33, Neg. LLF: 479.62410334974896
Iteration: 5, Func. Count: 41, Neg. LLF: 2422.347494583198
Iteration: 6, Func. Count: 49, Neg. LLF: 10119.633792673574
Iteration: 7, Func. Count: 57, Neg. LLF: 3075.3318452884946
Iteration: 8, Func. Count: 65, Neg. LLF: 1293.051395291644
Iteration: 9, Func. Count: 73, Neg. LLF: 13711.476074507998
Iteration: 10, Func. Count: 81, Neg. LLF: 108.2221079794965
Iteration: 11, Func. Count: 89, Neg. LLF: 104.44013626229773
Iteration: 12, Func. Count: 96, Neg. LLF: 104.33848728600913
Iteration: 13, Func. Count: 103, Neg. LLF: 104.3316957956597
Iteration: 14, Func. Count: 110, Neg. LLF: 104.33157534518378
Iteration: 15, Func. Count: 116, Neg. LLF: 104.3315753223571
Optimization terminated successfully (Exit mode 0)
Current function value: 104.33157534518378
Iterations: 15
Function evaluations: 116
Gradient evaluations: 15
Iteration: 1, Func. Count: 9, Neg. LLF: 155645996.5006076
Iteration: 2, Func. Count: 18, Neg. LLF: 9879367.299894437
Iteration: 3, Func. Count: 27, Neg. LLF: 283.1975952136681
Iteration: 4, Func. Count: 36, Neg. LLF: 109.81921863458408
Iteration: 5, Func. Count: 45, Neg. LLF: 110.44322097807701
Iteration: 6, Func. Count: 54, Neg. LLF: 106.26266197539547
Iteration: 7, Func. Count: 63, Neg. LLF: 105.7077567303791
Iteration: 8, Func. Count: 71, Neg. LLF: 104.61578214984604
Iteration: 9, Func. Count: 79, Neg. LLF: 106.90562739960636
Iteration: 10, Func. Count: 90, Neg. LLF: 104.44649172212395
Iteration: 11, Func. Count: 98, Neg. LLF: 104.35737935752996
Iteration: 12, Func. Count: 106, Neg. LLF: 104.23525778978232
Iteration: 13, Func. Count: 114, Neg. LLF: 104.18846074620494
Iteration: 14, Func. Count: 122, Neg. LLF: 104.20902983946584
Iteration: 15, Func. Count: 131, Neg. LLF: 104.14466651629542
Iteration: 16, Func. Count: 139, Neg. LLF: 104.14239672558288
Iteration: 17, Func. Count: 147, Neg. LLF: 104.14191409619112
Iteration: 18, Func. Count: 155, Neg. LLF: 104.14176276348152
Iteration: 19, Func. Count: 163, Neg. LLF: 104.14175942690267
Iteration: 20, Func. Count: 170, Neg. LLF: 104.14175939686362
Optimization terminated successfully (Exit mode 0)
Current function value: 104.14175942690267
Iterations: 20
Function evaluations: 170
Gradient evaluations: 20
Iteration: 1, Func. Count: 10, Neg. LLF: 124855134.10375522
Iteration: 2, Func. Count: 20, Neg. LLF: 10325122.985926699
Iteration: 3, Func. Count: 30, Neg. LLF: 154.48596593933894
Iteration: 4, Func. Count: 40, Neg. LLF: 124.69709222812156
Iteration: 5, Func. Count: 50, Neg. LLF: 107.2498400727428
Iteration: 6, Func. Count: 59, Neg. LLF: 106.37065477532218
Iteration: 7, Func. Count: 68, Neg. LLF: 106.0636737197586
Iteration: 8, Func. Count: 77, Neg. LLF: 105.63367566964801
Iteration: 9, Func. Count: 86, Neg. LLF: 105.06930860552285
Iteration: 10, Func. Count: 95, Neg. LLF: 104.6618525530128
Iteration: 11, Func. Count: 104, Neg. LLF: 104.37074769249162
Iteration: 12, Func. Count: 113, Neg. LLF: 104.31382827922928
Iteration: 13, Func. Count: 122, Neg. LLF: 104.2911589161251
Iteration: 14, Func. Count: 131, Neg. LLF: 104.28999811667015
Iteration: 15, Func. Count: 140, Neg. LLF: 104.28980367328656
Iteration: 16, Func. Count: 149, Neg. LLF: 104.29105666911232
Iteration: 17, Func. Count: 160, Neg. LLF: 104.29010458586114
Optimization terminated successfully (Exit mode 0)
Current function value: 104.28980024993689
Iterations: 18
Function evaluations: 161
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 100075850.1270976
Iteration: 2, Func. Count: 22, Neg. LLF: 10307437.488536116
Iteration: 3, Func. Count: 33, Neg. LLF: 747818.1378068762
Iteration: 4, Func. Count: 44, Neg. LLF: 165.3345372735276
Iteration: 5, Func. Count: 55, Neg. LLF: 106.3075420447139
Iteration: 6, Func. Count: 65, Neg. LLF: 105.1223367894043
Iteration: 7, Func. Count: 75, Neg. LLF: 109.52832450844755
Iteration: 8, Func. Count: 88, Neg. LLF: 106.21871673298088
Iteration: 9, Func. Count: 99, Neg. LLF: 104.12634092077178
Iteration: 10, Func. Count: 109, Neg. LLF: 103.99585546019881
Iteration: 11, Func. Count: 119, Neg. LLF: 103.9343512538399
Iteration: 12, Func. Count: 129, Neg. LLF: 103.90599988506102
Iteration: 13, Func. Count: 139, Neg. LLF: 103.86810699857797
Iteration: 14, Func. Count: 149, Neg. LLF: 103.85879178029101
Iteration: 15, Func. Count: 159, Neg. LLF: 103.85947820371744
Iteration: 16, Func. Count: 170, Neg. LLF: 103.85724655311431
Iteration: 17, Func. Count: 181, Neg. LLF: 103.85604749594417
Iteration: 18, Func. Count: 191, Neg. LLF: 103.85604695154927
Optimization terminated successfully (Exit mode 0)
Current function value: 103.85604695154927
Iterations: 18
Function evaluations: 191
Gradient evaluations: 18
Iteration: 1, Func. Count: 12, Neg. LLF: 77889450.47690605
Iteration: 2, Func. Count: 24, Neg. LLF: 10438748.655479744
Iteration: 3, Func. Count: 36, Neg. LLF: 16315285.983820643
Iteration: 4, Func. Count: 48, Neg. LLF: 152.35782081223664
Iteration: 5, Func. Count: 60, Neg. LLF: 110.59613650480497
Iteration: 6, Func. Count: 71, Neg. LLF: 119.13097654442358
Iteration: 7, Func. Count: 84, Neg. LLF: 114.08021308314343
Iteration: 8, Func. Count: 96, Neg. LLF: 105.30210505148342
Iteration: 9, Func. Count: 107, Neg. LLF: 105.14727834433924
Iteration: 10, Func. Count: 118, Neg. LLF: 104.98657543304842
Iteration: 11, Func. Count: 129, Neg. LLF: 104.814255615298
Iteration: 12, Func. Count: 140, Neg. LLF: 104.64812770656683
Iteration: 13, Func. Count: 151, Neg. LLF: 110.62282975765045
Iteration: 14, Func. Count: 164, Neg. LLF: 104.53839192720139
Iteration: 15, Func. Count: 175, Neg. LLF: 104.36581286246351
Iteration: 16, Func. Count: 186, Neg. LLF: 104.24706810889575
Iteration: 17, Func. Count: 197, Neg. LLF: 104.17653913371365
Iteration: 18, Func. Count: 208, Neg. LLF: 104.15120045882522
Iteration: 19, Func. Count: 219, Neg. LLF: 104.14315139741188
Iteration: 20, Func. Count: 230, Neg. LLF: 104.1418842419517
Iteration: 21, Func. Count: 241, Neg. LLF: 104.14177507521423
Iteration: 22, Func. Count: 252, Neg. LLF: 104.14176220554472
Iteration: 23, Func. Count: 263, Neg. LLF: 104.14175931622069
Iteration: 24, Func. Count: 273, Neg. LLF: 104.14175965925834
Optimization terminated successfully (Exit mode 0)
Current function value: 104.14175931622069
Iterations: 24
Function evaluations: 273
Gradient evaluations: 24
Iteration: 1, Func. Count: 9, Neg. LLF: 214.14329277514932
Iteration: 2, Func. Count: 19, Neg. LLF: 120.03103404236016
Iteration: 3, Func. Count: 28, Neg. LLF: 2956.505037937057
Iteration: 4, Func. Count: 37, Neg. LLF: 9565.910750033097
Iteration: 5, Func. Count: 46, Neg. LLF: 922.9694907291897
Iteration: 6, Func. Count: 55, Neg. LLF: 2957.9705094248493
Iteration: 7, Func. Count: 64, Neg. LLF: 837341.6744129383
Iteration: 8, Func. Count: 73, Neg. LLF: 201.55067923345112
Iteration: 9, Func. Count: 82, Neg. LLF: 130.7403293662447
Iteration: 10, Func. Count: 91, Neg. LLF: 104.64013367397146
Iteration: 11, Func. Count: 100, Neg. LLF: 117.30708406863778
Iteration: 12, Func. Count: 109, Neg. LLF: 116.10146462096561
Iteration: 13, Func. Count: 118, Neg. LLF: 116.15336655314822
Iteration: 14, Func. Count: 127, Neg. LLF: 116.19933565205189
Iteration: 15, Func. Count: 136, Neg. LLF: 151.3855433912783
Iteration: 16, Func. Count: 146, Neg. LLF: 115.17065726381395
Iteration: 17, Func. Count: 155, Neg. LLF: 116.66729800712724
Iteration: 18, Func. Count: 164, Neg. LLF: 116.00030548279358
Iteration: 19, Func. Count: 173, Neg. LLF: 112.98693770472775
Iteration: 20, Func. Count: 182, Neg. LLF: 117.22687129483853
Iteration: 21, Func. Count: 191, Neg. LLF: 343.9445768688353
Iteration: 22, Func. Count: 209, Neg. LLF: 146.17971992583418
Iteration: 23, Func. Count: 218, Neg. LLF: 119.92554989700288
Iteration: 24, Func. Count: 227, Neg. LLF: 113.95239706082916
Iteration: 25, Func. Count: 236, Neg. LLF: 116.01014002985103
Iteration: 26, Func. Count: 245, Neg. LLF: 115.90138195802948
Iteration: 27, Func. Count: 254, Neg. LLF: 115.91626696152709
Iteration: 28, Func. Count: 263, Neg. LLF: 115.89904777220607
Iteration: 29, Func. Count: 272, Neg. LLF: 116.24591701406835
Iteration: 30, Func. Count: 281, Neg. LLF: 115.84125563732914
Iteration: 31, Func. Count: 290, Neg. LLF: 115.81156417400025
Iteration: 32, Func. Count: 299, Neg. LLF: 103.74317220985616
Iteration: 33, Func. Count: 308, Neg. LLF: 102.01301633983573
Iteration: 34, Func. Count: 317, Neg. LLF: 101.91694636194164
Iteration: 35, Func. Count: 325, Neg. LLF: 101.91548668836722
Iteration: 36, Func. Count: 333, Neg. LLF: 101.90960671914034
Iteration: 37, Func. Count: 341, Neg. LLF: 101.90514443175826
Iteration: 38, Func. Count: 349, Neg. LLF: 101.89846446067202
Iteration: 39, Func. Count: 357, Neg. LLF: 101.89372960843389
Iteration: 40, Func. Count: 365, Neg. LLF: 101.89140013384254
Iteration: 41, Func. Count: 373, Neg. LLF: 101.89051283418041
Iteration: 42, Func. Count: 381, Neg. LLF: 101.89037344054138
Iteration: 43, Func. Count: 389, Neg. LLF: 101.89037133080497
Iteration: 44, Func. Count: 397, Neg. LLF: 101.89037145787327
Optimization terminated successfully (Exit mode 0)
Current function value: 101.89037145787327
Iterations: 46
Function evaluations: 397
Gradient evaluations: 44
Iteration: 1, Func. Count: 10, Neg. LLF: 155808063.01192918
Iteration: 2, Func. Count: 20, Neg. LLF: 9874134.416979093
Iteration: 3, Func. Count: 30, Neg. LLF: 132.27703848553435
Iteration: 4, Func. Count: 41, Neg. LLF: 125.94319574136081
Iteration: 5, Func. Count: 51, Neg. LLF: 103.6679371066986
Iteration: 6, Func. Count: 60, Neg. LLF: 103.99102821456371
Iteration: 7, Func. Count: 70, Neg. LLF: 102.34888717495306
Iteration: 8, Func. Count: 79, Neg. LLF: 102.05039205920735
Iteration: 9, Func. Count: 88, Neg. LLF: 101.92408836074685
Iteration: 10, Func. Count: 97, Neg. LLF: 101.86605196578606
Iteration: 11, Func. Count: 106, Neg. LLF: 101.84829251683063
Iteration: 12, Func. Count: 115, Neg. LLF: 101.84703898595053
Iteration: 13, Func. Count: 124, Neg. LLF: 101.84683557784909
Iteration: 14, Func. Count: 133, Neg. LLF: 101.84683350802204
Iteration: 15, Func. Count: 141, Neg. LLF: 101.84683344379073
Optimization terminated successfully (Exit mode 0)
Current function value: 101.84683350802204
Iterations: 15
Function evaluations: 141
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 125820821.7362609
Iteration: 2, Func. Count: 22, Neg. LLF: 10243367.84636001
Iteration: 3, Func. Count: 33, Neg. LLF: 124.56309882465675
Iteration: 4, Func. Count: 44, Neg. LLF: 113.22013034752437
Iteration: 5, Func. Count: 55, Neg. LLF: 214.92379202493768
Iteration: 6, Func. Count: 66, Neg. LLF: 103.75678390201898
Iteration: 7, Func. Count: 76, Neg. LLF: 105.76485538497201
Iteration: 8, Func. Count: 87, Neg. LLF: 101.96048588679625
Iteration: 9, Func. Count: 97, Neg. LLF: 101.90424700994335
Iteration: 10, Func. Count: 107, Neg. LLF: 101.86616875101716
Iteration: 11, Func. Count: 117, Neg. LLF: 101.85738053757723
Iteration: 12, Func. Count: 127, Neg. LLF: 101.84694209949888
Iteration: 13, Func. Count: 137, Neg. LLF: 101.84685500561778
Iteration: 14, Func. Count: 147, Neg. LLF: 101.84684590443193
Iteration: 15, Func. Count: 157, Neg. LLF: 101.84683472949916
Iteration: 16, Func. Count: 167, Neg. LLF: 101.8468335302318
Iteration: 17, Func. Count: 176, Neg. LLF: 101.84683365348178
Optimization terminated successfully (Exit mode 0)
Current function value: 101.8468335302318
Iterations: 17
Function evaluations: 176
Gradient evaluations: 17
Iteration: 1, Func. Count: 12, Neg. LLF: 100633886.29243588
Iteration: 2, Func. Count: 24, Neg. LLF: 10187211.132021217
Iteration: 3, Func. Count: 36, Neg. LLF: 1961367.249608376
Iteration: 4, Func. Count: 48, Neg. LLF: 122.8444069598384
Iteration: 5, Func. Count: 60, Neg. LLF: 120.17122863692452
Iteration: 6, Func. Count: 72, Neg. LLF: 123.8191589489553
Iteration: 7, Func. Count: 84, Neg. LLF: 125.408400793785
Iteration: 8, Func. Count: 96, Neg. LLF: 122.11279603042702
Iteration: 9, Func. Count: 108, Neg. LLF: 119.83119675782112
Iteration: 10, Func. Count: 120, Neg. LLF: 106.5202936595403
Iteration: 11, Func. Count: 132, Neg. LLF: 103.3200545284359
Iteration: 12, Func. Count: 144, Neg. LLF: 102.21025932689172
Iteration: 13, Func. Count: 155, Neg. LLF: 102.8222094105875
Iteration: 14, Func. Count: 167, Neg. LLF: 102.19612784042917
Iteration: 15, Func. Count: 179, Neg. LLF: 103.0667046691286
Iteration: 16, Func. Count: 191, Neg. LLF: 101.50276670372905
Iteration: 17, Func. Count: 202, Neg. LLF: 101.48644943327004
Iteration: 18, Func. Count: 213, Neg. LLF: 101.48510407739217
Iteration: 19, Func. Count: 224, Neg. LLF: 101.48464597983971
Iteration: 20, Func. Count: 235, Neg. LLF: 101.48463226559457
Iteration: 21, Func. Count: 246, Neg. LLF: 101.48462729279368
Iteration: 22, Func. Count: 256, Neg. LLF: 101.48462722413576
Optimization terminated successfully (Exit mode 0)
Current function value: 101.48462729279368
Iterations: 22
Function evaluations: 256
Gradient evaluations: 22
Iteration: 1, Func. Count: 13, Neg. LLF: 78207996.20820595
Iteration: 2, Func. Count: 26, Neg. LLF: 856354.5774786618
Iteration: 3, Func. Count: 39, Neg. LLF: 2854555.231654661
Iteration: 4, Func. Count: 52, Neg. LLF: 199.87484708441664
Iteration: 5, Func. Count: 65, Neg. LLF: 165.75320280183124
Iteration: 6, Func. Count: 78, Neg. LLF: 105.24218005686242
Iteration: 7, Func. Count: 90, Neg. LLF: 105.4176995966635
Iteration: 8, Func. Count: 103, Neg. LLF: 102.05165192232971
Iteration: 9, Func. Count: 115, Neg. LLF: 101.89054660822977
Iteration: 10, Func. Count: 127, Neg. LLF: 101.87697345344611
Iteration: 11, Func. Count: 139, Neg. LLF: 101.87235633797472
Iteration: 12, Func. Count: 151, Neg. LLF: 101.86583465834822
Iteration: 13, Func. Count: 163, Neg. LLF: 101.85579257256802
Iteration: 14, Func. Count: 175, Neg. LLF: 101.84848003332672
Iteration: 15, Func. Count: 187, Neg. LLF: 101.84689347032385
Iteration: 16, Func. Count: 199, Neg. LLF: 101.84683640602957
Iteration: 17, Func. Count: 211, Neg. LLF: 101.84683359176196
Iteration: 18, Func. Count: 222, Neg. LLF: 101.84683380523406
Optimization terminated successfully (Exit mode 0)
Current function value: 101.84683359176196
Iterations: 18
Function evaluations: 222
Gradient evaluations: 18
Iteration: 1, Func. Count: 10, Neg. LLF: 217.00309556095561
Iteration: 2, Func. Count: 21, Neg. LLF: 146.88987162755603
Iteration: 3, Func. Count: 31, Neg. LLF: 355.17693981759976
Iteration: 4, Func. Count: 41, Neg. LLF: 454.12736753650336
Iteration: 5, Func. Count: 51, Neg. LLF: 7264.973118305748
Iteration: 6, Func. Count: 61, Neg. LLF: 461730.30892895616
Iteration: 7, Func. Count: 71, Neg. LLF: 407579.8733471775
Iteration: 8, Func. Count: 81, Neg. LLF: 367089.80689409154
Iteration: 9, Func. Count: 91, Neg. LLF: 107.09017506074716
Iteration: 10, Func. Count: 101, Neg. LLF: 102.75863826378907
Iteration: 11, Func. Count: 110, Neg. LLF: 110785.55233119236
Iteration: 12, Func. Count: 123, Neg. LLF: 114.76148530052019
Iteration: 13, Func. Count: 133, Neg. LLF: 103.80814431809907
Iteration: 14, Func. Count: 143, Neg. LLF: 102.39957891600395
Iteration: 15, Func. Count: 152, Neg. LLF: 102.43514277990325
Iteration: 16, Func. Count: 162, Neg. LLF: 102.35943795895906
Iteration: 17, Func. Count: 171, Neg. LLF: 102.34910668100024
Iteration: 18, Func. Count: 180, Neg. LLF: 102.34869848566873
Iteration: 19, Func. Count: 189, Neg. LLF: 102.34859696311922
Iteration: 20, Func. Count: 198, Neg. LLF: 102.34859054256184
Iteration: 21, Func. Count: 206, Neg. LLF: 102.348590576297
Optimization terminated successfully (Exit mode 0)
Current function value: 102.34859054256184
Iterations: 21
Function evaluations: 206
Gradient evaluations: 21
Iteration: 1, Func. Count: 11, Neg. LLF: 153979061.0236347
Iteration: 2, Func. Count: 22, Neg. LLF: 9909955.790916756
Iteration: 3, Func. Count: 33, Neg. LLF: 125.17007020685931
Iteration: 4, Func. Count: 45, Neg. LLF: 119.88977424530763
Iteration: 5, Func. Count: 56, Neg. LLF: 103.67122689428854
Iteration: 6, Func. Count: 66, Neg. LLF: 103.48216118535925
Iteration: 7, Func. Count: 76, Neg. LLF: 108.98729989634481
Iteration: 8, Func. Count: 87, Neg. LLF: 101.87282646631819
Iteration: 9, Func. Count: 97, Neg. LLF: 101.70146117176313
Iteration: 10, Func. Count: 107, Neg. LLF: 101.65522394541256
Iteration: 11, Func. Count: 117, Neg. LLF: 101.64792169584801
Iteration: 12, Func. Count: 127, Neg. LLF: 101.64690371833726
Iteration: 13, Func. Count: 137, Neg. LLF: 101.64673926210213
Iteration: 14, Func. Count: 147, Neg. LLF: 101.64671338479093
Iteration: 15, Func. Count: 157, Neg. LLF: 101.64662344760289
Iteration: 16, Func. Count: 167, Neg. LLF: 101.64661328675018
Iteration: 17, Func. Count: 176, Neg. LLF: 101.64661322331386
Optimization terminated successfully (Exit mode 0)
Current function value: 101.64661328675018
Iterations: 17
Function evaluations: 176
Gradient evaluations: 17
Iteration: 1, Func. Count: 12, Neg. LLF: 124507242.44203456
Iteration: 2, Func. Count: 24, Neg. LLF: 10315632.188058825
Iteration: 3, Func. Count: 36, Neg. LLF: 125.3814067215456
Iteration: 4, Func. Count: 48, Neg. LLF: 120.38233451092816
Iteration: 5, Func. Count: 60, Neg. LLF: 244.3682705120067
Iteration: 6, Func. Count: 72, Neg. LLF: 104.129783509093
Iteration: 7, Func. Count: 83, Neg. LLF: 105.69620321502615
Iteration: 8, Func. Count: 95, Neg. LLF: 109.71352375674925
Iteration: 9, Func. Count: 107, Neg. LLF: 101.77188546490285
Iteration: 10, Func. Count: 118, Neg. LLF: 101.66597602812041
Iteration: 11, Func. Count: 129, Neg. LLF: 101.65359620003946
Iteration: 12, Func. Count: 140, Neg. LLF: 101.64806263695482
Iteration: 13, Func. Count: 151, Neg. LLF: 101.64735157569928
Iteration: 14, Func. Count: 162, Neg. LLF: 101.64697074848462
Iteration: 15, Func. Count: 173, Neg. LLF: 101.64679411700384
Iteration: 16, Func. Count: 184, Neg. LLF: 101.64664843520355
Iteration: 17, Func. Count: 195, Neg. LLF: 101.64661628121641
Iteration: 18, Func. Count: 206, Neg. LLF: 101.64661331722048
Iteration: 19, Func. Count: 216, Neg. LLF: 101.64661345620631
Optimization terminated successfully (Exit mode 0)
Current function value: 101.64661331722048
Iterations: 19
Function evaluations: 216
Gradient evaluations: 19
Iteration: 1, Func. Count: 13, Neg. LLF: 99585608.04013653
Iteration: 2, Func. Count: 26, Neg. LLF: 10281200.5694614
Iteration: 3, Func. Count: 39, Neg. LLF: 2082279.5136794741
Iteration: 4, Func. Count: 52, Neg. LLF: 122.80552223563471
Iteration: 5, Func. Count: 65, Neg. LLF: 119.72262290539953
Iteration: 6, Func. Count: 78, Neg. LLF: 127.01722890250302
Iteration: 7, Func. Count: 91, Neg. LLF: 127.35396570923466
Iteration: 8, Func. Count: 104, Neg. LLF: 123.97033444499199
Iteration: 9, Func. Count: 117, Neg. LLF: 121.34436909486445
Iteration: 10, Func. Count: 130, Neg. LLF: 119.98052195874612
Iteration: 11, Func. Count: 143, Neg. LLF: 104.38272100381728
Iteration: 12, Func. Count: 156, Neg. LLF: 116.75005548780067
Iteration: 13, Func. Count: 169, Neg. LLF: 103.07557675801239
Iteration: 14, Func. Count: 182, Neg. LLF: 102.12637872450148
Iteration: 15, Func. Count: 194, Neg. LLF: 102.34481740746398
Iteration: 16, Func. Count: 208, Neg. LLF: 102.15336967559546
Iteration: 17, Func. Count: 222, Neg. LLF: 101.49712904748837
Iteration: 18, Func. Count: 234, Neg. LLF: 101.48340907044661
Iteration: 19, Func. Count: 246, Neg. LLF: 101.4774515000277
Iteration: 20, Func. Count: 258, Neg. LLF: 101.47681685471547
Iteration: 21, Func. Count: 270, Neg. LLF: 101.47672770334115
Iteration: 22, Func. Count: 282, Neg. LLF: 101.47672048672963
Iteration: 23, Func. Count: 294, Neg. LLF: 101.47671968117436
Optimization terminated successfully (Exit mode 0)
Current function value: 101.47671968117436
Iterations: 23
Function evaluations: 294
Gradient evaluations: 23
Iteration: 1, Func. Count: 14, Neg. LLF: 77339214.69474982
Iteration: 2, Func. Count: 28, Neg. LLF: 960203.8366793386
Iteration: 3, Func. Count: 42, Neg. LLF: 2383832.3317140737
Iteration: 4, Func. Count: 56, Neg. LLF: 418.35374778598754
Iteration: 5, Func. Count: 70, Neg. LLF: 124.23334327750813
Iteration: 6, Func. Count: 84, Neg. LLF: 105.10480530627555
Iteration: 7, Func. Count: 97, Neg. LLF: 103.71246223334597
Iteration: 8, Func. Count: 111, Neg. LLF: 101.6941996814653
Iteration: 9, Func. Count: 124, Neg. LLF: 101.67252340925106
Iteration: 10, Func. Count: 137, Neg. LLF: 101.66800152946449
Iteration: 11, Func. Count: 150, Neg. LLF: 101.66212437464716
Iteration: 12, Func. Count: 163, Neg. LLF: 101.65846002473734
Iteration: 13, Func. Count: 176, Neg. LLF: 101.64968667116547
Iteration: 14, Func. Count: 189, Neg. LLF: 101.64683624317887
Iteration: 15, Func. Count: 202, Neg. LLF: 101.64661381205151
Iteration: 16, Func. Count: 215, Neg. LLF: 101.64661285015087
Optimization terminated successfully (Exit mode 0)
Current function value: 101.64661285015087
Iterations: 16
Function evaluations: 215
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 217.59545552843315
Iteration: 2, Func. Count: 23, Neg. LLF: 150.9589030244269
Iteration: 3, Func. Count: 34, Neg. LLF: 418.3836498037481
Iteration: 4, Func. Count: 45, Neg. LLF: 454.2289416930908
Iteration: 5, Func. Count: 56, Neg. LLF: 10998.76210568867
Iteration: 6, Func. Count: 67, Neg. LLF: 462989.3953512089
Iteration: 7, Func. Count: 78, Neg. LLF: 409581.5849919483
Iteration: 8, Func. Count: 89, Neg. LLF: 366597.98820915155
Iteration: 9, Func. Count: 100, Neg. LLF: 110.01813648157311
Iteration: 10, Func. Count: 111, Neg. LLF: 103.11808199137494
Iteration: 11, Func. Count: 121, Neg. LLF: 97189.41880713469
Iteration: 12, Func. Count: 135, Neg. LLF: 120.4551672393305
Iteration: 13, Func. Count: 147, Neg. LLF: 104.19734929933048
Iteration: 14, Func. Count: 158, Neg. LLF: 102.44923913224439
Iteration: 15, Func. Count: 168, Neg. LLF: 102.56878419227434
Iteration: 16, Func. Count: 179, Neg. LLF: 102.3751412361885
Iteration: 17, Func. Count: 189, Neg. LLF: 102.35293436840456
Iteration: 18, Func. Count: 199, Neg. LLF: 102.34898527978595
Iteration: 19, Func. Count: 209, Neg. LLF: 102.34863301253999
Iteration: 20, Func. Count: 219, Neg. LLF: 102.34859221093545
Iteration: 21, Func. Count: 229, Neg. LLF: 102.34859053483433
Iteration: 22, Func. Count: 238, Neg. LLF: 102.3485905373807
Optimization terminated successfully (Exit mode 0)
Current function value: 102.34859053483433
Iterations: 22
Function evaluations: 238
Gradient evaluations: 22
Iteration: 1, Func. Count: 12, Neg. LLF: 153361826.29884928
Iteration: 2, Func. Count: 24, Neg. LLF: 9917091.712129971
Iteration: 3, Func. Count: 36, Neg. LLF: 121.7118102538433
Iteration: 4, Func. Count: 49, Neg. LLF: 120.47127752786297
Iteration: 5, Func. Count: 61, Neg. LLF: 103.70439320129488
Iteration: 6, Func. Count: 72, Neg. LLF: 104.92164742322723
Iteration: 7, Func. Count: 84, Neg. LLF: 102.68166272576293
Iteration: 8, Func. Count: 95, Neg. LLF: 101.91552723632476
Iteration: 9, Func. Count: 106, Neg. LLF: 102.48902333799809
Iteration: 10, Func. Count: 118, Neg. LLF: 101.70224342024696
Iteration: 11, Func. Count: 129, Neg. LLF: 101.67699993455896
Iteration: 12, Func. Count: 140, Neg. LLF: 101.67279898825574
Iteration: 13, Func. Count: 151, Neg. LLF: 101.65484007707917
Iteration: 14, Func. Count: 162, Neg. LLF: 101.64838626400473
Iteration: 15, Func. Count: 173, Neg. LLF: 101.64684140173809
Iteration: 16, Func. Count: 184, Neg. LLF: 101.64662691650736
Iteration: 17, Func. Count: 195, Neg. LLF: 101.64661721360682
Iteration: 18, Func. Count: 206, Neg. LLF: 101.64661304327618
Iteration: 19, Func. Count: 216, Neg. LLF: 101.64661297981627
Optimization terminated successfully (Exit mode 0)
Current function value: 101.64661304327618
Iterations: 19
Function evaluations: 216
Gradient evaluations: 19
Iteration: 1, Func. Count: 13, Neg. LLF: 123971657.94118068
Iteration: 2, Func. Count: 26, Neg. LLF: 10335758.259384762
Iteration: 3, Func. Count: 39, Neg. LLF: 125.58327036347191
Iteration: 4, Func. Count: 52, Neg. LLF: 123.96872253221738
Iteration: 5, Func. Count: 65, Neg. LLF: 712.1804746645323
Iteration: 6, Func. Count: 78, Neg. LLF: 104.37853017792875
Iteration: 7, Func. Count: 90, Neg. LLF: 104.52867557487453
Iteration: 8, Func. Count: 103, Neg. LLF: 106.10322598900176
Iteration: 9, Func. Count: 116, Neg. LLF: 102.83202624856895
Iteration: 10, Func. Count: 128, Neg. LLF: 102.49519841955448
Iteration: 11, Func. Count: 140, Neg. LLF: 102.33947769205908
Iteration: 12, Func. Count: 152, Neg. LLF: 102.19509584326192
Iteration: 13, Func. Count: 164, Neg. LLF: 105.02744010094784
Iteration: 14, Func. Count: 177, Neg. LLF: 108.32676588417633
Iteration: 15, Func. Count: 190, Neg. LLF: 111.80563977648492
Iteration: 16, Func. Count: 203, Neg. LLF: 116.35002677272622
Iteration: 17, Func. Count: 216, Neg. LLF: 115.82122640778142
Iteration: 18, Func. Count: 229, Neg. LLF: 116.73509033943563
Iteration: 19, Func. Count: 242, Neg. LLF: 102.200541771402
Iteration: 20, Func. Count: 255, Neg. LLF: 116.6612815343072
Iteration: 21, Func. Count: 268, Neg. LLF: 101.86053304460418
Iteration: 22, Func. Count: 280, Neg. LLF: 101.86027460168097
Iteration: 23, Func. Count: 292, Neg. LLF: 101.8601617001502
Iteration: 24, Func. Count: 304, Neg. LLF: 101.8597850707981
Iteration: 25, Func. Count: 316, Neg. LLF: 101.85956281392203
Iteration: 26, Func. Count: 328, Neg. LLF: 101.85945147920009
Iteration: 27, Func. Count: 340, Neg. LLF: 101.85944040123462
Iteration: 28, Func. Count: 352, Neg. LLF: 101.85943974979348
Optimization terminated successfully (Exit mode 0)
Current function value: 101.85943974979348
Iterations: 28
Function evaluations: 352
Gradient evaluations: 28
Iteration: 1, Func. Count: 14, Neg. LLF: 99029302.1451601
Iteration: 2, Func. Count: 28, Neg. LLF: 10309034.828003176
Iteration: 3, Func. Count: 42, Neg. LLF: 2191744.5380582665
Iteration: 4, Func. Count: 56, Neg. LLF: 122.51998854522598
Iteration: 5, Func. Count: 70, Neg. LLF: 121.04187968835238
Iteration: 6, Func. Count: 84, Neg. LLF: 129.7893699961445
Iteration: 7, Func. Count: 98, Neg. LLF: 130.5432477820785
Iteration: 8, Func. Count: 112, Neg. LLF: 125.46994244513691
Iteration: 9, Func. Count: 126, Neg. LLF: 122.13293698545034
Iteration: 10, Func. Count: 140, Neg. LLF: 120.4665567649241
Iteration: 11, Func. Count: 154, Neg. LLF: 107.74169179671001
Iteration: 12, Func. Count: 168, Neg. LLF: 103.94611125909589
Iteration: 13, Func. Count: 182, Neg. LLF: 115.98618636802044
Iteration: 14, Func. Count: 196, Neg. LLF: 102.9639368975586
Iteration: 15, Func. Count: 210, Neg. LLF: 102.86695083406552
Iteration: 16, Func. Count: 224, Neg. LLF: 102.70868215015102
Iteration: 17, Func. Count: 238, Neg. LLF: 102.10726138646342
Iteration: 18, Func. Count: 252, Neg. LLF: 101.49561337683095
Iteration: 19, Func. Count: 265, Neg. LLF: 101.49860537121258
Iteration: 20, Func. Count: 279, Neg. LLF: 101.47789125653335
Iteration: 21, Func. Count: 292, Neg. LLF: 101.47732250601081
Iteration: 22, Func. Count: 305, Neg. LLF: 101.47682688414228
Iteration: 23, Func. Count: 318, Neg. LLF: 101.4767261151114
Iteration: 24, Func. Count: 331, Neg. LLF: 101.47672360308673
Iteration: 25, Func. Count: 344, Neg. LLF: 101.4767186328244
Iteration: 26, Func. Count: 357, Neg. LLF: 101.47904491768976
Optimization terminated successfully (Exit mode 0)
Current function value: 101.4767186333315
Iterations: 27
Function evaluations: 360
Gradient evaluations: 26
Iteration: 1, Func. Count: 15, Neg. LLF: 76837208.1837539
Iteration: 2, Func. Count: 30, Neg. LLF: 1520909.130580731
Iteration: 3, Func. Count: 45, Neg. LLF: 1785024.127800169
Iteration: 4, Func. Count: 60, Neg. LLF: 916.0601322546532
Iteration: 5, Func. Count: 75, Neg. LLF: 112.00222951160802
Iteration: 6, Func. Count: 90, Neg. LLF: 127.50207941465679
Iteration: 7, Func. Count: 105, Neg. LLF: 120.32486892045581
Iteration: 8, Func. Count: 120, Neg. LLF: 104.29744170078563
Iteration: 9, Func. Count: 134, Neg. LLF: 106.80972601274368
Iteration: 10, Func. Count: 151, Neg. LLF: 124.67850141668117
Iteration: 11, Func. Count: 167, Neg. LLF: 106.05081866657947
Iteration: 12, Func. Count: 182, Neg. LLF: 102.41696034738908
Iteration: 13, Func. Count: 197, Neg. LLF: 105.5472944448505
Iteration: 14, Func. Count: 212, Neg. LLF: 103.16184668060599
Iteration: 15, Func. Count: 227, Neg. LLF: 101.48675862548055
Iteration: 16, Func. Count: 241, Neg. LLF: 101.4675587164446
Iteration: 17, Func. Count: 255, Neg. LLF: 101.43503336436875
Iteration: 18, Func. Count: 269, Neg. LLF: 101.41136201041263
Iteration: 19, Func. Count: 283, Neg. LLF: 101.40229700057012
Iteration: 20, Func. Count: 297, Neg. LLF: 101.3954182775977
Iteration: 21, Func. Count: 311, Neg. LLF: 101.39463511586769
Iteration: 22, Func. Count: 325, Neg. LLF: 101.39446202121081
Iteration: 23, Func. Count: 339, Neg. LLF: 101.39440304498356
Iteration: 24, Func. Count: 353, Neg. LLF: 101.39437466280752
Iteration: 25, Func. Count: 367, Neg. LLF: 101.39437363163132
Iteration: 26, Func. Count: 381, Neg. LLF: 101.40054566897989
Optimization terminated successfully (Exit mode 0)
Current function value: 101.39437361111676
Iterations: 27
Function evaluations: 384
Gradient evaluations: 26
Iteration: 1, Func. Count: 8, Neg. LLF: 217.71235215199778
Iteration: 2, Func. Count: 17, Neg. LLF: 140.2634364868026
Iteration: 3, Func. Count: 25, Neg. LLF: 132.45451094145773
Iteration: 4, Func. Count: 33, Neg. LLF: 1010.456103943274
Iteration: 5, Func. Count: 41, Neg. LLF: 3214.3758728536
Iteration: 6, Func. Count: 49, Neg. LLF: 92002.12069653774
Iteration: 7, Func. Count: 57, Neg. LLF: 749.767729368276
Iteration: 8, Func. Count: 65, Neg. LLF: 108.36465489447065
Iteration: 9, Func. Count: 73, Neg. LLF: 104.42062272563504
Iteration: 10, Func. Count: 80, Neg. LLF: 105.4890096578245
Iteration: 11, Func. Count: 88, Neg. LLF: 106.96425391480687
Iteration: 12, Func. Count: 96, Neg. LLF: 103.69539503137612
Iteration: 13, Func. Count: 103, Neg. LLF: 103.6307827810832
Iteration: 14, Func. Count: 110, Neg. LLF: 103.6060819051505
Iteration: 15, Func. Count: 117, Neg. LLF: 103.58753656925296
Iteration: 16, Func. Count: 124, Neg. LLF: 103.5847155844784
Iteration: 17, Func. Count: 131, Neg. LLF: 103.58417244270557
Iteration: 18, Func. Count: 138, Neg. LLF: 103.5841558580512
Iteration: 19, Func. Count: 145, Neg. LLF: 103.58415433612012
Iteration: 20, Func. Count: 151, Neg. LLF: 103.58415432591632
Optimization terminated successfully (Exit mode 0)
Current function value: 103.58415433612012
Iterations: 20
Function evaluations: 151
Gradient evaluations: 20
Iteration: 1, Func. Count: 9, Neg. LLF: 76946684.06771405
Iteration: 2, Func. Count: 18, Neg. LLF: 23597408.537828594
Iteration: 3, Func. Count: 27, Neg. LLF: 1510558.1502377344
Iteration: 4, Func. Count: 36, Neg. LLF: 355.33163522579446
Iteration: 5, Func. Count: 45, Neg. LLF: 195.0117024667567
Iteration: 6, Func. Count: 54, Neg. LLF: 163.27689108159652
Iteration: 7, Func. Count: 63, Neg. LLF: 155.7649674699867
Iteration: 8, Func. Count: 72, Neg. LLF: 155.95519919577055
Iteration: 9, Func. Count: 81, Neg. LLF: 108.31045782267425
Iteration: 10, Func. Count: 90, Neg. LLF: 106.05360657114815
Iteration: 11, Func. Count: 98, Neg. LLF: 106.0306426278605
Iteration: 12, Func. Count: 106, Neg. LLF: 106.02387646884759
Iteration: 13, Func. Count: 114, Neg. LLF: 106.01927309245063
Iteration: 14, Func. Count: 122, Neg. LLF: 106.01653582448914
Iteration: 15, Func. Count: 130, Neg. LLF: 106.00376897190723
Iteration: 16, Func. Count: 138, Neg. LLF: 107.51415086333773
Iteration: 17, Func. Count: 147, Neg. LLF: 107.46858868281225
Iteration: 18, Func. Count: 156, Neg. LLF: 107.46264796772113
Iteration: 19, Func. Count: 165, Neg. LLF: 108.70498798365765
Iteration: 20, Func. Count: 174, Neg. LLF: 105.98576057471979
Iteration: 21, Func. Count: 183, Neg. LLF: 105.90116472943849
Iteration: 22, Func. Count: 191, Neg. LLF: 105.8090971035334
Iteration: 23, Func. Count: 199, Neg. LLF: 105.64579596542426
Iteration: 24, Func. Count: 207, Neg. LLF: 105.51783033445253
Iteration: 25, Func. Count: 215, Neg. LLF: 105.48113253939522
Iteration: 26, Func. Count: 224, Neg. LLF: 105.2405532098188
Iteration: 27, Func. Count: 232, Neg. LLF: 105.24242278298348
Iteration: 28, Func. Count: 241, Neg. LLF: 105.01809448239098
Iteration: 29, Func. Count: 249, Neg. LLF: 105.28703746420501
Iteration: 30, Func. Count: 258, Neg. LLF: 105.007787491623
Iteration: 31, Func. Count: 267, Neg. LLF: 104.84630082080129
Iteration: 32, Func. Count: 275, Neg. LLF: 104.81483697739755
Iteration: 33, Func. Count: 283, Neg. LLF: 104.79610052406888
Iteration: 34, Func. Count: 291, Neg. LLF: 104.76731225643152
Iteration: 35, Func. Count: 299, Neg. LLF: 104.6254857374223
Iteration: 36, Func. Count: 307, Neg. LLF: 104.51659978494865
Iteration: 37, Func. Count: 315, Neg. LLF: 104.47109338948009
Iteration: 38, Func. Count: 323, Neg. LLF: 104.4454451008767
Iteration: 39, Func. Count: 331, Neg. LLF: 104.42198620672613
Iteration: 40, Func. Count: 339, Neg. LLF: 104.33848395905116
Iteration: 41, Func. Count: 347, Neg. LLF: 104.33583922763822
Iteration: 42, Func. Count: 355, Neg. LLF: 104.33183598030546
Iteration: 43, Func. Count: 363, Neg. LLF: 104.33160286366615
Iteration: 44, Func. Count: 371, Neg. LLF: 104.33160759263141
Iteration: 45, Func. Count: 380, Neg. LLF: 104.33157499764721
Iteration: 46, Func. Count: 387, Neg. LLF: 104.3315752126638
Optimization terminated successfully (Exit mode 0)
Current function value: 104.33157499764721
Iterations: 46
Function evaluations: 387
Gradient evaluations: 46
Iteration: 1, Func. Count: 10, Neg. LLF: 48712973.8164952
Iteration: 2, Func. Count: 20, Neg. LLF: 87913447.73038003
Iteration: 3, Func. Count: 31, Neg. LLF: 26172799.17243055
Iteration: 4, Func. Count: 41, Neg. LLF: 962127.5270524503
Iteration: 5, Func. Count: 51, Neg. LLF: 181.70693012004637
Iteration: 6, Func. Count: 61, Neg. LLF: 120.21723561161579
Iteration: 7, Func. Count: 71, Neg. LLF: 120.2935251087716
Iteration: 8, Func. Count: 81, Neg. LLF: 106.68067227737122
Iteration: 9, Func. Count: 90, Neg. LLF: 112.34043113898848
Iteration: 10, Func. Count: 100, Neg. LLF: 107.08225297322299
Iteration: 11, Func. Count: 112, Neg. LLF: 106.31866090779336
Iteration: 12, Func. Count: 122, Neg. LLF: 106.26765344278469
Iteration: 13, Func. Count: 132, Neg. LLF: 106.04953659026806
Iteration: 14, Func. Count: 141, Neg. LLF: 106.04491200694386
Iteration: 15, Func. Count: 150, Neg. LLF: 106.04043794959257
Iteration: 16, Func. Count: 159, Neg. LLF: 106.03391503455893
Iteration: 17, Func. Count: 168, Neg. LLF: 106.03107179547244
Iteration: 18, Func. Count: 177, Neg. LLF: 106.02803364744754
Iteration: 19, Func. Count: 186, Neg. LLF: 106.02237265041721
Iteration: 20, Func. Count: 195, Neg. LLF: 106.05490056867822
Iteration: 21, Func. Count: 205, Neg. LLF: 106.48463124910562
Iteration: 22, Func. Count: 215, Neg. LLF: 106.40225305537975
Iteration: 23, Func. Count: 225, Neg. LLF: 106.12684513159415
Iteration: 24, Func. Count: 235, Neg. LLF: 106.68218778833592
Iteration: 25, Func. Count: 245, Neg. LLF: 105.64120364680024
Iteration: 26, Func. Count: 254, Neg. LLF: 105.7405282196531
Iteration: 27, Func. Count: 264, Neg. LLF: 105.61620512049541
Iteration: 28, Func. Count: 274, Neg. LLF: 105.15252382791313
Iteration: 29, Func. Count: 283, Neg. LLF: 105.42582321142145
Iteration: 30, Func. Count: 293, Neg. LLF: 104.89913955499303
Iteration: 31, Func. Count: 302, Neg. LLF: 104.87060319391388
Iteration: 32, Func. Count: 312, Neg. LLF: 104.7342905073186
Iteration: 33, Func. Count: 321, Neg. LLF: 104.69352543814018
Iteration: 34, Func. Count: 330, Neg. LLF: 104.68093013731855
Iteration: 35, Func. Count: 339, Neg. LLF: 104.67006527149957
Iteration: 36, Func. Count: 348, Neg. LLF: 104.65030310580879
Iteration: 37, Func. Count: 357, Neg. LLF: 104.5967550839701
Iteration: 38, Func. Count: 366, Neg. LLF: 104.55631582157298
Iteration: 39, Func. Count: 375, Neg. LLF: 104.49956699958862
Iteration: 40, Func. Count: 384, Neg. LLF: 104.38419525604134
Iteration: 41, Func. Count: 393, Neg. LLF: 166.3926073819819
Iteration: 42, Func. Count: 407, Neg. LLF: 269.25653232887606
Iteration: 43, Func. Count: 418, Neg. LLF: 115.483459070213
Iteration: 44, Func. Count: 428, Neg. LLF: 104.2808737805325
Iteration: 45, Func. Count: 437, Neg. LLF: 104.28002464935082
Iteration: 46, Func. Count: 446, Neg. LLF: 104.2799491633319
Iteration: 47, Func. Count: 455, Neg. LLF: 104.27994864474311
Optimization terminated successfully (Exit mode 0)
Current function value: 104.27994864474311
Iterations: 48
Function evaluations: 455
Gradient evaluations: 47
Iteration: 1, Func. Count: 11, Neg. LLF: 29913184.231181495
Iteration: 2, Func. Count: 22, Neg. LLF: 7673.72120418325
Iteration: 3, Func. Count: 35, Neg. LLF: 1520746.0087721131
Iteration: 4, Func. Count: 46, Neg. LLF: 1021571.8535448286
Iteration: 5, Func. Count: 57, Neg. LLF: 137.49079792678418
Iteration: 6, Func. Count: 68, Neg. LLF: 142.77545587985375
Iteration: 7, Func. Count: 79, Neg. LLF: 112.83156767418433
Iteration: 8, Func. Count: 90, Neg. LLF: 932574.6921825384
Iteration: 9, Func. Count: 101, Neg. LLF: 110.89410050892262
Iteration: 10, Func. Count: 112, Neg. LLF: 159.4120800741373
Iteration: 11, Func. Count: 123, Neg. LLF: 106.98348368281565
Iteration: 12, Func. Count: 133, Neg. LLF: 106.2913521297387
Iteration: 13, Func. Count: 143, Neg. LLF: 106.26116464991568
Iteration: 14, Func. Count: 153, Neg. LLF: 106.22726175562048
Iteration: 15, Func. Count: 163, Neg. LLF: 106.18235916780249
Iteration: 16, Func. Count: 173, Neg. LLF: 106.17665424337022
Iteration: 17, Func. Count: 183, Neg. LLF: 107.41288185452248
Iteration: 18, Func. Count: 194, Neg. LLF: 106.11884578813627
Iteration: 19, Func. Count: 204, Neg. LLF: 106.10013961502911
Iteration: 20, Func. Count: 214, Neg. LLF: 106.08155899833922
Iteration: 21, Func. Count: 224, Neg. LLF: 106.06342458678161
Iteration: 22, Func. Count: 234, Neg. LLF: 106.04653561900487
Iteration: 23, Func. Count: 244, Neg. LLF: 106.03613028255648
Iteration: 24, Func. Count: 254, Neg. LLF: 106.03083077682946
Iteration: 25, Func. Count: 264, Neg. LLF: 106.02803860411198
Iteration: 26, Func. Count: 274, Neg. LLF: 106.02542357169479
Iteration: 27, Func. Count: 284, Neg. LLF: 105.99543965038993
Iteration: 28, Func. Count: 294, Neg. LLF: 106.14814374609006
Iteration: 29, Func. Count: 305, Neg. LLF: 105.97664869441321
Iteration: 30, Func. Count: 316, Neg. LLF: 105.75423374584493
Iteration: 31, Func. Count: 326, Neg. LLF: 105.45678603032708
Iteration: 32, Func. Count: 336, Neg. LLF: 106.82165963983242
Iteration: 33, Func. Count: 349, Neg. LLF: 104.05073208779801
Iteration: 34, Func. Count: 359, Neg. LLF: 104.79388870997029
Iteration: 35, Func. Count: 372, Neg. LLF: 103.75931029391026
Iteration: 36, Func. Count: 382, Neg. LLF: 103.74452527304574
Iteration: 37, Func. Count: 392, Neg. LLF: 103.70919203811891
Iteration: 38, Func. Count: 402, Neg. LLF: 103.70403289746582
Iteration: 39, Func. Count: 412, Neg. LLF: 103.69551878250638
Iteration: 40, Func. Count: 422, Neg. LLF: 103.67522219655129
Iteration: 41, Func. Count: 432, Neg. LLF: 103.63802424763439
Iteration: 42, Func. Count: 442, Neg. LLF: 108.7158557706358
Iteration: 43, Func. Count: 453, Neg. LLF: 104.95909122191365
Iteration: 44, Func. Count: 464, Neg. LLF: 104.33890165600201
Iteration: 45, Func. Count: 475, Neg. LLF: 103.58456454046495
Iteration: 46, Func. Count: 485, Neg. LLF: 103.58415580890612
Iteration: 47, Func. Count: 495, Neg. LLF: 103.58415422128017
Iteration: 48, Func. Count: 504, Neg. LLF: 103.5841543906228
Optimization terminated successfully (Exit mode 0)
Current function value: 103.58415422128017
Iterations: 49
Function evaluations: 504
Gradient evaluations: 48
Iteration: 1, Func. Count: 12, Neg. LLF: 16320040.929636776
Iteration: 2, Func. Count: 24, Neg. LLF: 86663770.23846744
Iteration: 3, Func. Count: 36, Neg. LLF: 1362376.803470467
Iteration: 4, Func. Count: 48, Neg. LLF: 1633793.788682503
Iteration: 5, Func. Count: 60, Neg. LLF: 1412468.1923964184
Iteration: 6, Func. Count: 72, Neg. LLF: 1359610.927898925
Iteration: 7, Func. Count: 84, Neg. LLF: 1322644.543747635
Iteration: 8, Func. Count: 96, Neg. LLF: 1308554.2992812346
Iteration: 9, Func. Count: 108, Neg. LLF: 1283318.4601905185
Iteration: 10, Func. Count: 120, Neg. LLF: 129.1576691278215
Iteration: 11, Func. Count: 132, Neg. LLF: 1434178.697176757
Iteration: 12, Func. Count: 144, Neg. LLF: 138.9682603896657
Iteration: 13, Func. Count: 156, Neg. LLF: 114.03899932661632
Iteration: 14, Func. Count: 168, Neg. LLF: 111.18253615044925
Iteration: 15, Func. Count: 180, Neg. LLF: 191.33168655866416
Iteration: 16, Func. Count: 192, Neg. LLF: 107.72839681916452
Iteration: 17, Func. Count: 204, Neg. LLF: 106.28203109246076
Iteration: 18, Func. Count: 215, Neg. LLF: 106.29723716190338
Iteration: 19, Func. Count: 227, Neg. LLF: 106.0651544325049
Iteration: 20, Func. Count: 238, Neg. LLF: 106.03940863510523
Iteration: 21, Func. Count: 249, Neg. LLF: 106.03636409015239
Iteration: 22, Func. Count: 260, Neg. LLF: 106.03493641600328
Iteration: 23, Func. Count: 271, Neg. LLF: 106.0335040000071
Iteration: 24, Func. Count: 282, Neg. LLF: 106.02768427137354
Iteration: 25, Func. Count: 293, Neg. LLF: 105.8971273470382
Iteration: 26, Func. Count: 304, Neg. LLF: 103.67180833119671
Iteration: 27, Func. Count: 315, Neg. LLF: 112.23204017352856
Iteration: 28, Func. Count: 329, Neg. LLF: 104.88163107817638
Iteration: 29, Func. Count: 342, Neg. LLF: 127.58083232911002
Iteration: 30, Func. Count: 355, Neg. LLF: 104.30866897735241
Iteration: 31, Func. Count: 367, Neg. LLF: 103.60491547461847
Iteration: 32, Func. Count: 379, Neg. LLF: 103.587553160691
Iteration: 33, Func. Count: 390, Neg. LLF: 103.58480156232264
Iteration: 34, Func. Count: 401, Neg. LLF: 103.58419544888292
Iteration: 35, Func. Count: 412, Neg. LLF: 103.58415522125817
Iteration: 36, Func. Count: 423, Neg. LLF: 103.58415411534435
Iteration: 37, Func. Count: 433, Neg. LLF: 103.58415414311388
Optimization terminated successfully (Exit mode 0)
Current function value: 103.58415411534435
Iterations: 38
Function evaluations: 433
Gradient evaluations: 37
Iteration: 1, Func. Count: 9, Neg. LLF: 218.5929571733464
Iteration: 2, Func. Count: 19, Neg. LLF: 122.75712430128999
Iteration: 3, Func. Count: 28, Neg. LLF: 1930.3059863721855
Iteration: 4, Func. Count: 37, Neg. LLF: 37577.79935661331
Iteration: 5, Func. Count: 46, Neg. LLF: 10836.683250501901
Iteration: 6, Func. Count: 55, Neg. LLF: 1485.9498978026284
Iteration: 7, Func. Count: 64, Neg. LLF: 116.1128525262194
Iteration: 8, Func. Count: 73, Neg. LLF: 105.4468523725444
Iteration: 9, Func. Count: 82, Neg. LLF: 105.19019534834428
Iteration: 10, Func. Count: 91, Neg. LLF: 106.84803145593806
Iteration: 11, Func. Count: 100, Neg. LLF: 105.09522074339677
Iteration: 12, Func. Count: 109, Neg. LLF: 103.69906643124062
Iteration: 13, Func. Count: 117, Neg. LLF: 103.66553920019973
Iteration: 14, Func. Count: 125, Neg. LLF: 103.65934597526402
Iteration: 15, Func. Count: 134, Neg. LLF: 103.62629748315926
Iteration: 16, Func. Count: 142, Neg. LLF: 103.61162977885816
Iteration: 17, Func. Count: 150, Neg. LLF: 103.5704486550579
Iteration: 18, Func. Count: 158, Neg. LLF: 103.55988713402236
Iteration: 19, Func. Count: 166, Neg. LLF: 103.55240662693197
Iteration: 20, Func. Count: 174, Neg. LLF: 103.55239648837913
Iteration: 21, Func. Count: 182, Neg. LLF: 103.55239481937704
Iteration: 22, Func. Count: 189, Neg. LLF: 103.55239481969255
Optimization terminated successfully (Exit mode 0)
Current function value: 103.55239481937704
Iterations: 22
Function evaluations: 189
Gradient evaluations: 22
Iteration: 1, Func. Count: 10, Neg. LLF: 148433608.9240786
Iteration: 2, Func. Count: 20, Neg. LLF: 10035150.18992852
Iteration: 3, Func. Count: 30, Neg. LLF: 299.12200328661527
Iteration: 4, Func. Count: 40, Neg. LLF: 118.77300987434319
Iteration: 5, Func. Count: 50, Neg. LLF: 106.89182905153724
Iteration: 6, Func. Count: 60, Neg. LLF: 121.38468815342132
Iteration: 7, Func. Count: 70, Neg. LLF: 109.56865695902391
Iteration: 8, Func. Count: 80, Neg. LLF: 108.90391875143298
Iteration: 9, Func. Count: 90, Neg. LLF: 107.46033189587376
Iteration: 10, Func. Count: 100, Neg. LLF: 108.25675797731813
Iteration: 11, Func. Count: 110, Neg. LLF: 105.68530157623044
Iteration: 12, Func. Count: 120, Neg. LLF: 105.65678022992641
Iteration: 13, Func. Count: 130, Neg. LLF: 103.70953729172068
Iteration: 14, Func. Count: 139, Neg. LLF: 104.55702953575914
Iteration: 15, Func. Count: 149, Neg. LLF: 105.40807313665368
Iteration: 16, Func. Count: 160, Neg. LLF: 103.23509275941271
Iteration: 17, Func. Count: 169, Neg. LLF: 103.15898352621178
Iteration: 18, Func. Count: 178, Neg. LLF: 103.06745193051047
Iteration: 19, Func. Count: 187, Neg. LLF: 103.05259278149103
Iteration: 20, Func. Count: 196, Neg. LLF: 103.04162966386575
Iteration: 21, Func. Count: 205, Neg. LLF: 103.03870166776318
Iteration: 22, Func. Count: 214, Neg. LLF: 103.03829544030535
Iteration: 23, Func. Count: 223, Neg. LLF: 103.03823434231134
Iteration: 24, Func. Count: 232, Neg. LLF: 103.03819659830808
Iteration: 25, Func. Count: 241, Neg. LLF: 103.03817593708854
Iteration: 26, Func. Count: 250, Neg. LLF: 103.03817414429874
Iteration: 27, Func. Count: 258, Neg. LLF: 103.03817410309195
Optimization terminated successfully (Exit mode 0)
Current function value: 103.03817414429874
Iterations: 27
Function evaluations: 258
Gradient evaluations: 27
Iteration: 1, Func. Count: 11, Neg. LLF: 119965289.06486441
Iteration: 2, Func. Count: 22, Neg. LLF: 10525941.807401637
Iteration: 3, Func. Count: 33, Neg. LLF: 155.439766143881
Iteration: 4, Func. Count: 44, Neg. LLF: 167.2748652558729
Iteration: 5, Func. Count: 55, Neg. LLF: 107.84946493962254
Iteration: 6, Func. Count: 66, Neg. LLF: 106.55183047513803
Iteration: 7, Func. Count: 77, Neg. LLF: 105.3293933064856
Iteration: 8, Func. Count: 88, Neg. LLF: 104.7170473507747
Iteration: 9, Func. Count: 99, Neg. LLF: 104.28159944887067
Iteration: 10, Func. Count: 110, Neg. LLF: 116.90724757970206
Iteration: 11, Func. Count: 122, Neg. LLF: 103.07191338448669
Iteration: 12, Func. Count: 132, Neg. LLF: 103.04962844134985
Iteration: 13, Func. Count: 142, Neg. LLF: 103.03917756139064
Iteration: 14, Func. Count: 152, Neg. LLF: 103.03888177824143
Iteration: 15, Func. Count: 162, Neg. LLF: 103.03821096590795
Iteration: 16, Func. Count: 172, Neg. LLF: 103.03818173145241
Iteration: 17, Func. Count: 182, Neg. LLF: 103.03817432704464
Iteration: 18, Func. Count: 191, Neg. LLF: 103.03817447260067
Optimization terminated successfully (Exit mode 0)
Current function value: 103.03817432704464
Iterations: 18
Function evaluations: 191
Gradient evaluations: 18
Iteration: 1, Func. Count: 12, Neg. LLF: 96319933.41784978
Iteration: 2, Func. Count: 24, Neg. LLF: 10430933.858635325
Iteration: 3, Func. Count: 36, Neg. LLF: 1156371.8784798232
Iteration: 4, Func. Count: 48, Neg. LLF: 173.43760489351004
Iteration: 5, Func. Count: 60, Neg. LLF: 115.78869290426812
Iteration: 6, Func. Count: 72, Neg. LLF: 115.89334153440593
Iteration: 7, Func. Count: 84, Neg. LLF: 105.03520151484125
Iteration: 8, Func. Count: 95, Neg. LLF: 104.45767709725138
Iteration: 9, Func. Count: 107, Neg. LLF: 111.67479739385796
Iteration: 10, Func. Count: 119, Neg. LLF: 104.11380002200791
Iteration: 11, Func. Count: 131, Neg. LLF: 103.36000457741308
Iteration: 12, Func. Count: 143, Neg. LLF: 103.30262737895545
Iteration: 13, Func. Count: 155, Neg. LLF: 103.07169834811458
Iteration: 14, Func. Count: 166, Neg. LLF: 103.05216950511259
Iteration: 15, Func. Count: 177, Neg. LLF: 103.04058874983676
Iteration: 16, Func. Count: 188, Neg. LLF: 103.03827413059926
Iteration: 17, Func. Count: 199, Neg. LLF: 103.03822916859822
Iteration: 18, Func. Count: 210, Neg. LLF: 103.0382241740947
Iteration: 19, Func. Count: 221, Neg. LLF: 103.0381992674117
Iteration: 20, Func. Count: 232, Neg. LLF: 103.03817484747238
Iteration: 21, Func. Count: 242, Neg. LLF: 103.03817502630301
Optimization terminated successfully (Exit mode 0)
Current function value: 103.03817484747238
Iterations: 21
Function evaluations: 242
Gradient evaluations: 21
Iteration: 1, Func. Count: 13, Neg. LLF: 75157041.1086485
Iteration: 2, Func. Count: 26, Neg. LLF: 2316260.6036864826
Iteration: 3, Func. Count: 39, Neg. LLF: 23940240.07073419
Iteration: 4, Func. Count: 52, Neg. LLF: 164.45025505781348
Iteration: 5, Func. Count: 65, Neg. LLF: 112.32057814993962
Iteration: 6, Func. Count: 78, Neg. LLF: 112.52057841315305
Iteration: 7, Func. Count: 92, Neg. LLF: 105.39827451355052
Iteration: 8, Func. Count: 104, Neg. LLF: 115.63087059888116
Iteration: 9, Func. Count: 118, Neg. LLF: 105.52495159295559
Iteration: 10, Func. Count: 131, Neg. LLF: 103.82986417683654
Iteration: 11, Func. Count: 143, Neg. LLF: 104.051811198644
Iteration: 12, Func. Count: 156, Neg. LLF: 103.55410012636906
Iteration: 13, Func. Count: 169, Neg. LLF: 104.46129183091307
Iteration: 14, Func. Count: 182, Neg. LLF: 103.0426309299074
Iteration: 15, Func. Count: 194, Neg. LLF: 103.03896792444381
Iteration: 16, Func. Count: 206, Neg. LLF: 103.03842617437274
Iteration: 17, Func. Count: 218, Neg. LLF: 103.03821260961837
Iteration: 18, Func. Count: 230, Neg. LLF: 103.0381775381016
Iteration: 19, Func. Count: 242, Neg. LLF: 103.03817548621015
Iteration: 20, Func. Count: 253, Neg. LLF: 103.03817558719751
Optimization terminated successfully (Exit mode 0)
Current function value: 103.03817548621015
Iterations: 20
Function evaluations: 253
Gradient evaluations: 20
Iteration: 1, Func. Count: 10, Neg. LLF: 218.04041533195846
Iteration: 2, Func. Count: 21, Neg. LLF: 121.57913938821557
Iteration: 3, Func. Count: 31, Neg. LLF: 1235040.7946046332
Iteration: 4, Func. Count: 41, Neg. LLF: 258912.57103864214
Iteration: 5, Func. Count: 51, Neg. LLF: 944592.1728483621
Iteration: 6, Func. Count: 61, Neg. LLF: 227101.7061492735
Iteration: 7, Func. Count: 71, Neg. LLF: 125.22181268016105
Iteration: 8, Func. Count: 81, Neg. LLF: 134.215528174636
Iteration: 9, Func. Count: 91, Neg. LLF: 122.19027664611929
Iteration: 10, Func. Count: 101, Neg. LLF: 124.03003287773937
Iteration: 11, Func. Count: 111, Neg. LLF: 121.06429857152047
Iteration: 12, Func. Count: 121, Neg. LLF: 106.96696671505377
Iteration: 13, Func. Count: 131, Neg. LLF: 107.56866544772745
Iteration: 14, Func. Count: 141, Neg. LLF: 103.79309977271872
Iteration: 15, Func. Count: 151, Neg. LLF: 118.39882738853063
Iteration: 16, Func. Count: 161, Neg. LLF: 103.74061242913902
Iteration: 17, Func. Count: 171, Neg. LLF: 102.31256543742106
Iteration: 18, Func. Count: 181, Neg. LLF: 100.01356508743923
Iteration: 19, Func. Count: 190, Neg. LLF: 99.82872482257731
Iteration: 20, Func. Count: 199, Neg. LLF: 99.77603922882756
Iteration: 21, Func. Count: 208, Neg. LLF: 99.76732235350075
Iteration: 22, Func. Count: 217, Neg. LLF: 99.7662005493725
Iteration: 23, Func. Count: 226, Neg. LLF: 99.76618875980115
Iteration: 24, Func. Count: 234, Neg. LLF: 99.76618872930835
Optimization terminated successfully (Exit mode 0)
Current function value: 99.76618875980115
Iterations: 24
Function evaluations: 234
Gradient evaluations: 24
Iteration: 1, Func. Count: 11, Neg. LLF: 148648556.65716818
Iteration: 2, Func. Count: 22, Neg. LLF: 10025630.493832452
Iteration: 3, Func. Count: 33, Neg. LLF: 131.1049214689685
Iteration: 4, Func. Count: 44, Neg. LLF: 163.76787633224902
Iteration: 5, Func. Count: 55, Neg. LLF: 105.54981988109876
Iteration: 6, Func. Count: 66, Neg. LLF: 304.6967836693307
Iteration: 7, Func. Count: 77, Neg. LLF: 104.03344094823953
Iteration: 8, Func. Count: 88, Neg. LLF: 109.13271305246452
Iteration: 9, Func. Count: 101, Neg. LLF: 100.39472458283564
Iteration: 10, Func. Count: 111, Neg. LLF: 102.85438198831967
Iteration: 11, Func. Count: 122, Neg. LLF: 115.84770280756135
Iteration: 12, Func. Count: 135, Neg. LLF: 99.76115405228076
Iteration: 13, Func. Count: 145, Neg. LLF: 99.74731020857712
Iteration: 14, Func. Count: 155, Neg. LLF: 99.74556347376247
Iteration: 15, Func. Count: 165, Neg. LLF: 99.74537176815261
Iteration: 16, Func. Count: 175, Neg. LLF: 99.74536570993016
Iteration: 17, Func. Count: 184, Neg. LLF: 99.74536564867061
Optimization terminated successfully (Exit mode 0)
Current function value: 99.74536570993016
Iterations: 17
Function evaluations: 184
Gradient evaluations: 17
Iteration: 1, Func. Count: 12, Neg. LLF: 120966431.56970091
Iteration: 2, Func. Count: 24, Neg. LLF: 10416058.806645036
Iteration: 3, Func. Count: 36, Neg. LLF: 122.87880988774613
Iteration: 4, Func. Count: 48, Neg. LLF: 115.41951523921296
Iteration: 5, Func. Count: 60, Neg. LLF: 118.41922299011671
Iteration: 6, Func. Count: 72, Neg. LLF: 101.1426181242195
Iteration: 7, Func. Count: 83, Neg. LLF: 129.3434554302084
Iteration: 8, Func. Count: 96, Neg. LLF: 121.33424295862098
Iteration: 9, Func. Count: 109, Neg. LLF: 99.94747154597088
Iteration: 10, Func. Count: 120, Neg. LLF: 129.80295140113247
Iteration: 11, Func. Count: 132, Neg. LLF: 99.80464998993068
Iteration: 12, Func. Count: 143, Neg. LLF: 99.75391401275708
Iteration: 13, Func. Count: 154, Neg. LLF: 99.74826624326619
Iteration: 14, Func. Count: 165, Neg. LLF: 99.74674321732496
Iteration: 15, Func. Count: 176, Neg. LLF: 99.74595050004166
Iteration: 16, Func. Count: 187, Neg. LLF: 99.74541732933616
Iteration: 17, Func. Count: 198, Neg. LLF: 99.7453670456178
Iteration: 18, Func. Count: 209, Neg. LLF: 99.7453653861856
Iteration: 19, Func. Count: 219, Neg. LLF: 99.74536558176614
Optimization terminated successfully (Exit mode 0)
Current function value: 99.7453653861856
Iterations: 19
Function evaluations: 219
Gradient evaluations: 19
Iteration: 1, Func. Count: 13, Neg. LLF: 96913622.77118051
Iteration: 2, Func. Count: 26, Neg. LLF: 10283053.802301755
Iteration: 3, Func. Count: 39, Neg. LLF: 2346635.2207424566
Iteration: 4, Func. Count: 52, Neg. LLF: 121.95743775508942
Iteration: 5, Func. Count: 65, Neg. LLF: 106.9684029126505
Iteration: 6, Func. Count: 78, Neg. LLF: 100.6925370436488
Iteration: 7, Func. Count: 90, Neg. LLF: 128.0682272461122
Iteration: 8, Func. Count: 104, Neg. LLF: 105.72831056378136
Iteration: 9, Func. Count: 118, Neg. LLF: 149.1386713660133
Iteration: 10, Func. Count: 132, Neg. LLF: 99.9987781435903
Iteration: 11, Func. Count: 144, Neg. LLF: 99.89124161046351
Iteration: 12, Func. Count: 156, Neg. LLF: 99.78871530912664
Iteration: 13, Func. Count: 168, Neg. LLF: 99.7619965788109
Iteration: 14, Func. Count: 180, Neg. LLF: 99.7477705642347
Iteration: 15, Func. Count: 192, Neg. LLF: 99.74626151432727
Iteration: 16, Func. Count: 204, Neg. LLF: 99.7456599762444
Iteration: 17, Func. Count: 216, Neg. LLF: 99.74555572547125
Iteration: 18, Func. Count: 228, Neg. LLF: 99.7453687450125
Iteration: 19, Func. Count: 240, Neg. LLF: 99.74536540835375
Iteration: 20, Func. Count: 251, Neg. LLF: 99.7453655758189
Optimization terminated successfully (Exit mode 0)
Current function value: 99.74536540835375
Iterations: 20
Function evaluations: 251
Gradient evaluations: 20
Iteration: 1, Func. Count: 14, Neg. LLF: 75513381.2673889
Iteration: 2, Func. Count: 28, Neg. LLF: 1434003.8678046218
Iteration: 3, Func. Count: 42, Neg. LLF: 2387045.140043944
Iteration: 4, Func. Count: 56, Neg. LLF: 520.9115586412546
Iteration: 5, Func. Count: 70, Neg. LLF: 106.43827862599005
Iteration: 6, Func. Count: 83, Neg. LLF: 1233.2764246096747
Iteration: 7, Func. Count: 97, Neg. LLF: 115.83148648988366
Iteration: 8, Func. Count: 113, Neg. LLF: 253.30908212663357
Iteration: 9, Func. Count: 127, Neg. LLF: 101.85522892036334
Iteration: 10, Func. Count: 140, Neg. LLF: 102.02348812421164
Iteration: 11, Func. Count: 155, Neg. LLF: 100.66953496217491
Iteration: 12, Func. Count: 168, Neg. LLF: 99.889523830483
Iteration: 13, Func. Count: 181, Neg. LLF: 100.24605663987637
Iteration: 14, Func. Count: 195, Neg. LLF: 99.82829212567623
Iteration: 15, Func. Count: 208, Neg. LLF: 99.81443101032262
Iteration: 16, Func. Count: 221, Neg. LLF: 99.80741874002524
Iteration: 17, Func. Count: 234, Neg. LLF: 99.77371024394245
Iteration: 18, Func. Count: 247, Neg. LLF: 99.74823351015475
Iteration: 19, Func. Count: 260, Neg. LLF: 99.74558244674904
Iteration: 20, Func. Count: 273, Neg. LLF: 99.74542192464612
Iteration: 21, Func. Count: 286, Neg. LLF: 99.74539346042951
Iteration: 22, Func. Count: 299, Neg. LLF: 99.7453681982216
Iteration: 23, Func. Count: 312, Neg. LLF: 99.74536553804333
Iteration: 24, Func. Count: 324, Neg. LLF: 99.74536561412165
Optimization terminated successfully (Exit mode 0)
Current function value: 99.74536553804333
Iterations: 24
Function evaluations: 324
Gradient evaluations: 24
Iteration: 1, Func. Count: 11, Neg. LLF: 216.64939994179622
Iteration: 2, Func. Count: 23, Neg. LLF: 123.35526030237632
Iteration: 3, Func. Count: 34, Neg. LLF: 1251426.5059678033
Iteration: 4, Func. Count: 45, Neg. LLF: 253400.54468991767
Iteration: 5, Func. Count: 56, Neg. LLF: 457084.47471442114
Iteration: 6, Func. Count: 67, Neg. LLF: 226956.12408723563
Iteration: 7, Func. Count: 78, Neg. LLF: 129.34786358362928
Iteration: 8, Func. Count: 89, Neg. LLF: 129.56429131500758
Iteration: 9, Func. Count: 100, Neg. LLF: 121.3496028493557
Iteration: 10, Func. Count: 111, Neg. LLF: 122.09574076423704
Iteration: 11, Func. Count: 122, Neg. LLF: 121.24422636660161
Iteration: 12, Func. Count: 133, Neg. LLF: 105.505129229919
Iteration: 13, Func. Count: 144, Neg. LLF: 118.99203568449789
Iteration: 14, Func. Count: 155, Neg. LLF: 104.1835057844254
Iteration: 15, Func. Count: 166, Neg. LLF: 124.80972696426731
Iteration: 16, Func. Count: 177, Neg. LLF: 104.0702949095229
Iteration: 17, Func. Count: 188, Neg. LLF: 100.92556505716799
Iteration: 18, Func. Count: 199, Neg. LLF: 99.93132134480581
Iteration: 19, Func. Count: 209, Neg. LLF: 100.14023960827865
Iteration: 20, Func. Count: 220, Neg. LLF: 99.79436233060107
Iteration: 21, Func. Count: 230, Neg. LLF: 99.76589169473932
Iteration: 22, Func. Count: 240, Neg. LLF: 99.76019947353832
Iteration: 23, Func. Count: 250, Neg. LLF: 99.7593620121109
Iteration: 24, Func. Count: 260, Neg. LLF: 99.75931331577561
Iteration: 25, Func. Count: 270, Neg. LLF: 99.75930153774362
Iteration: 26, Func. Count: 279, Neg. LLF: 99.75930150722806
Optimization terminated successfully (Exit mode 0)
Current function value: 99.75930153774362
Iterations: 26
Function evaluations: 279
Gradient evaluations: 26
Iteration: 1, Func. Count: 12, Neg. LLF: 146869852.10964608
Iteration: 2, Func. Count: 24, Neg. LLF: 10078733.091313701
Iteration: 3, Func. Count: 36, Neg. LLF: 123.61947812380363
Iteration: 4, Func. Count: 48, Neg. LLF: 163.43838228814047
Iteration: 5, Func. Count: 60, Neg. LLF: 105.31063447858388
Iteration: 6, Func. Count: 72, Neg. LLF: 234649.61538175866
Iteration: 7, Func. Count: 84, Neg. LLF: 108.66935822338401
Iteration: 8, Func. Count: 96, Neg. LLF: 103.7238334801474
Iteration: 9, Func. Count: 108, Neg. LLF: 100.71561256667306
Iteration: 10, Func. Count: 119, Neg. LLF: 100.36648781645793
Iteration: 11, Func. Count: 131, Neg. LLF: 104.66241836300561
Iteration: 12, Func. Count: 144, Neg. LLF: 99.80624746985929
Iteration: 13, Func. Count: 155, Neg. LLF: 99.793154530208
Iteration: 14, Func. Count: 166, Neg. LLF: 99.79097393094406
Iteration: 15, Func. Count: 178, Neg. LLF: 99.78390504050219
Iteration: 16, Func. Count: 190, Neg. LLF: 99.7516632741238
Iteration: 17, Func. Count: 201, Neg. LLF: 99.74678077971437
Iteration: 18, Func. Count: 212, Neg. LLF: 99.74539606981382
Iteration: 19, Func. Count: 223, Neg. LLF: 99.74534149943791
Iteration: 20, Func. Count: 234, Neg. LLF: 99.74534061699912
Optimization terminated successfully (Exit mode 0)
Current function value: 99.74534061699912
Iterations: 20
Function evaluations: 234
Gradient evaluations: 20
Iteration: 1, Func. Count: 13, Neg. LLF: 119693052.93855521
Iteration: 2, Func. Count: 26, Neg. LLF: 10516202.508620322
Iteration: 3, Func. Count: 39, Neg. LLF: 123.96159162621039
Iteration: 4, Func. Count: 52, Neg. LLF: 117.33951323925258
Iteration: 5, Func. Count: 65, Neg. LLF: 118.8497866158378
Iteration: 6, Func. Count: 78, Neg. LLF: 101.16250797387077
Iteration: 7, Func. Count: 90, Neg. LLF: 144.83880050069962
Iteration: 8, Func. Count: 104, Neg. LLF: 115.84375218460706
Iteration: 9, Func. Count: 117, Neg. LLF: 100.00171893778635
Iteration: 10, Func. Count: 129, Neg. LLF: 1022.5623695710244
Iteration: 11, Func. Count: 142, Neg. LLF: 99.79064685165113
Iteration: 12, Func. Count: 154, Neg. LLF: 99.75125310191983
Iteration: 13, Func. Count: 166, Neg. LLF: 99.89281599056977
Iteration: 14, Func. Count: 179, Neg. LLF: 99.74677684454076
Iteration: 15, Func. Count: 191, Neg. LLF: 99.74609578369305
Iteration: 16, Func. Count: 203, Neg. LLF: 99.74560423957621
Iteration: 17, Func. Count: 215, Neg. LLF: 99.74536983015857
Iteration: 18, Func. Count: 227, Neg. LLF: 99.74534219904513
Iteration: 19, Func. Count: 239, Neg. LLF: 99.74534062835788
Iteration: 20, Func. Count: 250, Neg. LLF: 99.74534082395385
Optimization terminated successfully (Exit mode 0)
Current function value: 99.74534062835788
Iterations: 20
Function evaluations: 250
Gradient evaluations: 20
Iteration: 1, Func. Count: 14, Neg. LLF: 95887839.20276971
Iteration: 2, Func. Count: 28, Neg. LLF: 635276.3864951523
Iteration: 3, Func. Count: 42, Neg. LLF: 2505328.490816897
Iteration: 4, Func. Count: 56, Neg. LLF: 122.86922842555184
Iteration: 5, Func. Count: 70, Neg. LLF: 106.84641786077334
Iteration: 6, Func. Count: 83, Neg. LLF: 101.3473766032687
Iteration: 7, Func. Count: 96, Neg. LLF: 771427.4120356416
Iteration: 8, Func. Count: 112, Neg. LLF: 150.63531755437577
Iteration: 9, Func. Count: 126, Neg. LLF: 100.49068759123756
Iteration: 10, Func. Count: 140, Neg. LLF: 99.90266121788426
Iteration: 11, Func. Count: 153, Neg. LLF: 99.93392091996783
Iteration: 12, Func. Count: 167, Neg. LLF: 99.8288379754595
Iteration: 13, Func. Count: 180, Neg. LLF: 99.80573599721662
Iteration: 14, Func. Count: 193, Neg. LLF: 99.76688145098454
Iteration: 15, Func. Count: 206, Neg. LLF: 99.75748338157373
Iteration: 16, Func. Count: 219, Neg. LLF: 99.75278482439751
Iteration: 17, Func. Count: 232, Neg. LLF: 99.74951273640441
Iteration: 18, Func. Count: 245, Neg. LLF: 99.74565426832739
Iteration: 19, Func. Count: 258, Neg. LLF: 99.74535061480245
Iteration: 20, Func. Count: 271, Neg. LLF: 99.7453421747192
Iteration: 21, Func. Count: 284, Neg. LLF: 99.74534076145821
Iteration: 22, Func. Count: 296, Neg. LLF: 99.74534092921387
Optimization terminated successfully (Exit mode 0)
Current function value: 99.74534076145821
Iterations: 22
Function evaluations: 296
Gradient evaluations: 22
Iteration: 1, Func. Count: 15, Neg. LLF: 74637402.40646613
Iteration: 2, Func. Count: 30, Neg. LLF: 1604837.3720016356
Iteration: 3, Func. Count: 45, Neg. LLF: 1816357.3476617697
Iteration: 4, Func. Count: 60, Neg. LLF: 1268.8497179053768
Iteration: 5, Func. Count: 75, Neg. LLF: 116.43804538941093
Iteration: 6, Func. Count: 90, Neg. LLF: 102.36761771336744
Iteration: 7, Func. Count: 104, Neg. LLF: 135.67225747002738
Iteration: 8, Func. Count: 119, Neg. LLF: 186.26210645788655
Iteration: 9, Func. Count: 134, Neg. LLF: 115.4928366580534
Iteration: 10, Func. Count: 149, Neg. LLF: 104.17549199222505
Iteration: 11, Func. Count: 164, Neg. LLF: 103.47646828522849
Iteration: 12, Func. Count: 179, Neg. LLF: 103.23585094716995
Iteration: 13, Func. Count: 194, Neg. LLF: 100.05255694430588
Iteration: 14, Func. Count: 209, Neg. LLF: 99.76579031102386
Iteration: 15, Func. Count: 224, Neg. LLF: 99.75730924229336
Iteration: 16, Func. Count: 239, Neg. LLF: 99.74561833690203
Iteration: 17, Func. Count: 253, Neg. LLF: 99.7454637210601
Iteration: 18, Func. Count: 267, Neg. LLF: 99.74535018835986
Iteration: 19, Func. Count: 281, Neg. LLF: 99.7453455922876
Iteration: 20, Func. Count: 295, Neg. LLF: 99.74534058338442
Iteration: 21, Func. Count: 308, Neg. LLF: 99.74534065985883
Optimization terminated successfully (Exit mode 0)
Current function value: 99.74534058338442
Iterations: 21
Function evaluations: 308
Gradient evaluations: 21
Iteration: 1, Func. Count: 12, Neg. LLF: 218.23977497397996
Iteration: 2, Func. Count: 25, Neg. LLF: 120.4381829368163
Iteration: 3, Func. Count: 37, Neg. LLF: 1231045.5555727498
Iteration: 4, Func. Count: 49, Neg. LLF: 269696.42205730174
Iteration: 5, Func. Count: 61, Neg. LLF: 890214.594488649
Iteration: 6, Func. Count: 73, Neg. LLF: 150.88407195266524
Iteration: 7, Func. Count: 85, Neg. LLF: 282.6790073013037
Iteration: 8, Func. Count: 97, Neg. LLF: 118.16735884667347
Iteration: 9, Func. Count: 109, Neg. LLF: 105.0677249245243
Iteration: 10, Func. Count: 121, Neg. LLF: 119.37887994751273
Iteration: 11, Func. Count: 133, Neg. LLF: 104.37881406354153
Iteration: 12, Func. Count: 145, Neg. LLF: 120.305691707341
Iteration: 13, Func. Count: 157, Neg. LLF: 103.83974788183069
Iteration: 14, Func. Count: 169, Neg. LLF: 103.84637660703368
Iteration: 15, Func. Count: 181, Neg. LLF: 100.79779323020347
Iteration: 16, Func. Count: 193, Neg. LLF: 99.92549409356218
Iteration: 17, Func. Count: 204, Neg. LLF: 102.07005843214148
Iteration: 18, Func. Count: 216, Neg. LLF: 100.21715113776985
Iteration: 19, Func. Count: 228, Neg. LLF: 99.68411260674179
Iteration: 20, Func. Count: 240, Neg. LLF: 99.64751378079083
Iteration: 21, Func. Count: 251, Neg. LLF: 99.64461198218505
Iteration: 22, Func. Count: 262, Neg. LLF: 99.64309983266611
Iteration: 23, Func. Count: 273, Neg. LLF: 99.64268976934834
Iteration: 24, Func. Count: 284, Neg. LLF: 99.64261818645072
Iteration: 25, Func. Count: 295, Neg. LLF: 99.64261411065304
Iteration: 26, Func. Count: 305, Neg. LLF: 99.64261410634663
Optimization terminated successfully (Exit mode 0)
Current function value: 99.64261411065304
Iterations: 26
Function evaluations: 305
Gradient evaluations: 26
Iteration: 1, Func. Count: 13, Neg. LLF: 146379198.89216998
Iteration: 2, Func. Count: 26, Neg. LLF: 10091956.500761917
Iteration: 3, Func. Count: 39, Neg. LLF: 120.12110422886413
Iteration: 4, Func. Count: 52, Neg. LLF: 163.89341162487267
Iteration: 5, Func. Count: 65, Neg. LLF: 105.86005232938118
Iteration: 6, Func. Count: 78, Neg. LLF: 4692.436988079626
Iteration: 7, Func. Count: 91, Neg. LLF: 120.57406276278995
Iteration: 8, Func. Count: 104, Neg. LLF: 103.15804482307571
Iteration: 9, Func. Count: 117, Neg. LLF: 100.29532387263558
Iteration: 10, Func. Count: 129, Neg. LLF: 104.13475497392069
Iteration: 11, Func. Count: 142, Neg. LLF: 103.0212414846579
Iteration: 12, Func. Count: 155, Neg. LLF: 102.37971649516295
Iteration: 13, Func. Count: 168, Neg. LLF: 102.0806785265533
Iteration: 14, Func. Count: 181, Neg. LLF: 99.97152961837246
Iteration: 15, Func. Count: 194, Neg. LLF: 99.62288650020383
Iteration: 16, Func. Count: 206, Neg. LLF: 99.61851365547665
Iteration: 17, Func. Count: 218, Neg. LLF: 99.61275544451651
Iteration: 18, Func. Count: 230, Neg. LLF: 99.61163334935455
Iteration: 19, Func. Count: 242, Neg. LLF: 99.6115847504915
Iteration: 20, Func. Count: 254, Neg. LLF: 99.61157545660294
Iteration: 21, Func. Count: 265, Neg. LLF: 99.61157539688263
Optimization terminated successfully (Exit mode 0)
Current function value: 99.61157545660294
Iterations: 21
Function evaluations: 265
Gradient evaluations: 21
Iteration: 1, Func. Count: 14, Neg. LLF: 119228027.70985585
Iteration: 2, Func. Count: 28, Neg. LLF: 10546233.61507656
Iteration: 3, Func. Count: 42, Neg. LLF: 124.2179786527238
Iteration: 4, Func. Count: 56, Neg. LLF: 118.68429773728431
Iteration: 5, Func. Count: 70, Neg. LLF: 119.32061984490426
Iteration: 6, Func. Count: 84, Neg. LLF: 102.14092027086228
Iteration: 7, Func. Count: 97, Neg. LLF: 146492.01721092506
Iteration: 8, Func. Count: 111, Neg. LLF: 140.96529257618914
Iteration: 9, Func. Count: 126, Neg. LLF: 100.62920767142244
Iteration: 10, Func. Count: 140, Neg. LLF: 101.03242540401692
Iteration: 11, Func. Count: 154, Neg. LLF: 100.20697073423966
Iteration: 12, Func. Count: 168, Neg. LLF: 99.82980409960665
Iteration: 13, Func. Count: 181, Neg. LLF: 99.72894578449751
Iteration: 14, Func. Count: 195, Neg. LLF: 99.66392288295337
Iteration: 15, Func. Count: 209, Neg. LLF: 99.64007808996641
Iteration: 16, Func. Count: 222, Neg. LLF: 99.62397922932492
Iteration: 17, Func. Count: 235, Neg. LLF: 99.61834796443284
Iteration: 18, Func. Count: 248, Neg. LLF: 99.61289834909154
Iteration: 19, Func. Count: 261, Neg. LLF: 99.61179590600429
Iteration: 20, Func. Count: 274, Neg. LLF: 99.61160878769437
Iteration: 21, Func. Count: 287, Neg. LLF: 99.61157668070106
Iteration: 22, Func. Count: 300, Neg. LLF: 99.61157507707598
Iteration: 23, Func. Count: 312, Neg. LLF: 99.61157534228067
Optimization terminated successfully (Exit mode 0)
Current function value: 99.61157507707598
Iterations: 23
Function evaluations: 312
Gradient evaluations: 23
Iteration: 1, Func. Count: 15, Neg. LLF: 95382747.39013931
Iteration: 2, Func. Count: 30, Neg. LLF: 581060.5121257543
Iteration: 3, Func. Count: 45, Neg. LLF: 2617796.357287543
Iteration: 4, Func. Count: 60, Neg. LLF: 123.78978323025468
Iteration: 5, Func. Count: 75, Neg. LLF: 106.75940047356374
Iteration: 6, Func. Count: 89, Neg. LLF: 103.6360867077228
Iteration: 7, Func. Count: 104, Neg. LLF: 5084840.918596216
Iteration: 8, Func. Count: 121, Neg. LLF: 100.09208886217718
Iteration: 9, Func. Count: 135, Neg. LLF: 253.63419428311536
Iteration: 10, Func. Count: 152, Neg. LLF: 99.89766155531527
Iteration: 11, Func. Count: 167, Neg. LLF: 99.68727129365783
Iteration: 12, Func. Count: 182, Neg. LLF: 99.65724062798272
Iteration: 13, Func. Count: 197, Neg. LLF: 99.62255234575053
Iteration: 14, Func. Count: 211, Neg. LLF: 99.61859042360713
Iteration: 15, Func. Count: 225, Neg. LLF: 99.61794660758174
Iteration: 16, Func. Count: 239, Neg. LLF: 99.61570974241671
Iteration: 17, Func. Count: 253, Neg. LLF: 99.61426438188708
Iteration: 18, Func. Count: 267, Neg. LLF: 99.61266598255527
Iteration: 19, Func. Count: 281, Neg. LLF: 99.6120746356678
Iteration: 20, Func. Count: 295, Neg. LLF: 99.61192053893524
Iteration: 21, Func. Count: 309, Neg. LLF: 99.61184656905817
Iteration: 22, Func. Count: 323, Neg. LLF: 99.61173665161589
Iteration: 23, Func. Count: 337, Neg. LLF: 99.61163286953965
Iteration: 24, Func. Count: 351, Neg. LLF: 99.6115835868786
Iteration: 25, Func. Count: 365, Neg. LLF: 99.61157542501627
Iteration: 26, Func. Count: 378, Neg. LLF: 99.61157562580374
Optimization terminated successfully (Exit mode 0)
Current function value: 99.61157542501627
Iterations: 26
Function evaluations: 378
Gradient evaluations: 26
Iteration: 1, Func. Count: 16, Neg. LLF: 74178057.6676479
Iteration: 2, Func. Count: 32, Neg. LLF: 2191135.382532893
Iteration: 3, Func. Count: 48, Neg. LLF: 1267949.5900847812
Iteration: 4, Func. Count: 64, Neg. LLF: 10387009.336196871
Iteration: 5, Func. Count: 80, Neg. LLF: 115.56593407428444
Iteration: 6, Func. Count: 96, Neg. LLF: 102.47489231781381
Iteration: 7, Func. Count: 111, Neg. LLF: 249076.2950380281
Iteration: 8, Func. Count: 127, Neg. LLF: 1014.494086849746
Iteration: 9, Func. Count: 143, Neg. LLF: 283482.26185304567
Iteration: 10, Func. Count: 159, Neg. LLF: 110.4601648093281
Iteration: 11, Func. Count: 175, Neg. LLF: 104.87614984171584
Iteration: 12, Func. Count: 191, Neg. LLF: 101.08212821613658
Iteration: 13, Func. Count: 207, Neg. LLF: 100.05322178890161
Iteration: 14, Func. Count: 223, Neg. LLF: 99.64575741004631
Iteration: 15, Func. Count: 239, Neg. LLF: 99.6545449956969
Iteration: 16, Func. Count: 255, Neg. LLF: 99.61454212178188
Iteration: 17, Func. Count: 270, Neg. LLF: 99.61217341983618
Iteration: 18, Func. Count: 285, Neg. LLF: 99.61172225890408
Iteration: 19, Func. Count: 300, Neg. LLF: 99.6115872229366
Iteration: 20, Func. Count: 315, Neg. LLF: 99.61157800859417
Iteration: 21, Func. Count: 330, Neg. LLF: 99.6115788771079
Optimization terminated successfully (Exit mode 0)
Current function value: 99.6115788771079
Iterations: 21
Function evaluations: 330
Gradient evaluations: 21
Iteration: 1, Func. Count: 5, Neg. LLF: 168.16273363321164
Iteration: 2, Func. Count: 10, Neg. LLF: 147.9115292528082
Iteration: 3, Func. Count: 15, Neg. LLF: 119.07184982901813
Iteration: 4, Func. Count: 19, Neg. LLF: 2848.5666054246476
Iteration: 5, Func. Count: 24, Neg. LLF: 3075.9409411160873
Iteration: 6, Func. Count: 29, Neg. LLF: 2080.6187958000573
Iteration: 7, Func. Count: 34, Neg. LLF: 3233.798154395244
Iteration: 8, Func. Count: 39, Neg. LLF: 3637.654744824805
Iteration: 9, Func. Count: 44, Neg. LLF: 105.88049083538905
Iteration: 10, Func. Count: 48, Neg. LLF: 1972.4925078610622
Iteration: 11, Func. Count: 53, Neg. LLF: 444.2946587677456
Iteration: 12, Func. Count: 58, Neg. LLF: 104.97387359806386
Iteration: 13, Func. Count: 63, Neg. LLF: 104.28980477101189
Iteration: 14, Func. Count: 67, Neg. LLF: 104.28979971314327
Iteration: 15, Func. Count: 70, Neg. LLF: 104.28979977146598
Optimization terminated successfully (Exit mode 0)
Current function value: 104.28979971314327
Iterations: 15
Function evaluations: 70
Gradient evaluations: 15
Iteration: 1, Func. Count: 5, Neg. LLF: 114.52042793662922
Iteration: 2, Func. Count: 12, Neg. LLF: 83.02066886771743
Iteration: 3, Func. Count: 17, Neg. LLF: 78.88335818298968
Iteration: 4, Func. Count: 21, Neg. LLF: 79.3303187935191
Iteration: 5, Func. Count: 26, Neg. LLF: 78.69658684846355
Iteration: 6, Func. Count: 30, Neg. LLF: 78.69540286379683
Iteration: 7, Func. Count: 34, Neg. LLF: 78.69538903683456
Iteration: 8, Func. Count: 38, Neg. LLF: 78.69538649792034
Iteration: 9, Func. Count: 41, Neg. LLF: 78.69538657580777
Optimization terminated successfully (Exit mode 0)
Current function value: 78.69538649792034
Iterations: 9
Function evaluations: 41
Gradient evaluations: 9
Iteration: 1, Func. Count: 6, Neg. LLF: 128.76633861564179
Iteration: 2, Func. Count: 13, Neg. LLF: 78.81466055523958
Iteration: 3, Func. Count: 19, Neg. LLF: 78.68630178139438
Iteration: 4, Func. Count: 24, Neg. LLF: 78.68462699437038
Iteration: 5, Func. Count: 29, Neg. LLF: 78.6605505883966
Iteration: 6, Func. Count: 34, Neg. LLF: 78.94239039178505
Iteration: 7, Func. Count: 40, Neg. LLF: 78.81424627812686
Iteration: 8, Func. Count: 46, Neg. LLF: 78.7483762394445
Iteration: 9, Func. Count: 52, Neg. LLF: 181.12139434388266
Iteration: 10, Func. Count: 59, Neg. LLF: 78.75721419348314
Iteration: 11, Func. Count: 65, Neg. LLF: 78.65581190880287
Iteration: 12, Func. Count: 71, Neg. LLF: 78.63660306279158
Iteration: 13, Func. Count: 76, Neg. LLF: 78.63615139008692
Iteration: 14, Func. Count: 81, Neg. LLF: 78.63611569141557
Iteration: 15, Func. Count: 86, Neg. LLF: 78.63610685899577
Iteration: 16, Func. Count: 90, Neg. LLF: 78.63610685884194
Optimization terminated successfully (Exit mode 0)
Current function value: 78.63610685899577
Iterations: 16
Function evaluations: 90
Gradient evaluations: 16
Iteration: 1, Func. Count: 7, Neg. LLF: 138.44813646789132
Iteration: 2, Func. Count: 15, Neg. LLF: 78.96732885531756
Iteration: 3, Func. Count: 22, Neg. LLF: 78.65845862832708
Iteration: 4, Func. Count: 28, Neg. LLF: 78.64001342843724
Iteration: 5, Func. Count: 34, Neg. LLF: 78.80412995190488
Iteration: 6, Func. Count: 41, Neg. LLF: 78.63847981551888
Iteration: 7, Func. Count: 47, Neg. LLF: 78.63836530021757
Iteration: 8, Func. Count: 53, Neg. LLF: 78.63834886247525
Iteration: 9, Func. Count: 59, Neg. LLF: 78.63833321295927
Iteration: 10, Func. Count: 64, Neg. LLF: 78.6383332131902
Optimization terminated successfully (Exit mode 0)
Current function value: 78.63833321295927
Iterations: 10
Function evaluations: 64
Gradient evaluations: 10
Iteration: 1, Func. Count: 8, Neg. LLF: 134.5145865898616
Iteration: 2, Func. Count: 17, Neg. LLF: 79.00916261084026
Iteration: 3, Func. Count: 25, Neg. LLF: 78.65756536872466
Iteration: 4, Func. Count: 32, Neg. LLF: 78.64210264591307
Iteration: 5, Func. Count: 39, Neg. LLF: 78.65890185670386
Iteration: 6, Func. Count: 47, Neg. LLF: 78.6409253224086
Iteration: 7, Func. Count: 54, Neg. LLF: 78.64091193932703
Iteration: 8, Func. Count: 61, Neg. LLF: 78.64082011766027
Iteration: 9, Func. Count: 68, Neg. LLF: 78.64000406533857
Iteration: 10, Func. Count: 75, Neg. LLF: 78.63846112123696
Iteration: 11, Func. Count: 82, Neg. LLF: 78.6384576281706
Iteration: 12, Func. Count: 90, Neg. LLF: 78.63832808496052
Iteration: 13, Func. Count: 97, Neg. LLF: 78.63830573244462
Iteration: 14, Func. Count: 104, Neg. LLF: 78.63830481343795
Optimization terminated successfully (Exit mode 0)
Current function value: 78.63830481343795
Iterations: 14
Function evaluations: 104
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 131.09183515395443
Iteration: 2, Func. Count: 19, Neg. LLF: 79.11058140845458
Iteration: 3, Func. Count: 28, Neg. LLF: 78.668890883033
Iteration: 4, Func. Count: 36, Neg. LLF: 78.64472540811353
Iteration: 5, Func. Count: 44, Neg. LLF: 78.66264076986195
Iteration: 6, Func. Count: 53, Neg. LLF: 78.64239554610634
Iteration: 7, Func. Count: 61, Neg. LLF: 78.64224150896167
Iteration: 8, Func. Count: 69, Neg. LLF: 78.64216023039185
Iteration: 9, Func. Count: 77, Neg. LLF: 78.6417657914399
Iteration: 10, Func. Count: 85, Neg. LLF: 78.64145731118468
Iteration: 11, Func. Count: 93, Neg. LLF: 78.64122030892442
Iteration: 12, Func. Count: 101, Neg. LLF: 78.64098115033873
Iteration: 13, Func. Count: 109, Neg. LLF: 78.64084616917945
Iteration: 14, Func. Count: 117, Neg. LLF: 78.63957497353238
Iteration: 15, Func. Count: 125, Neg. LLF: 78.63840409034772
Iteration: 16, Func. Count: 133, Neg. LLF: 78.63868282720425
Iteration: 17, Func. Count: 142, Neg. LLF: 78.63802832268034
Iteration: 18, Func. Count: 150, Neg. LLF: 78.63781205179225
Iteration: 19, Func. Count: 158, Neg. LLF: 78.63772692976889
Iteration: 20, Func. Count: 166, Neg. LLF: 78.63771163857871
Iteration: 21, Func. Count: 174, Neg. LLF: 78.63770904656823
Iteration: 22, Func. Count: 181, Neg. LLF: 78.6377090465229
Optimization terminated successfully (Exit mode 0)
Current function value: 78.63770904656823
Iterations: 22
Function evaluations: 181
Gradient evaluations: 22
Iteration: 1, Func. Count: 6, Neg. LLF: 120.53735892508384
Iteration: 2, Func. Count: 15, Neg. LLF: 229.93428954646512
Iteration: 3, Func. Count: 22, Neg. LLF: 78.56221173868485
Iteration: 4, Func. Count: 27, Neg. LLF: 78.45619833534049
Iteration: 5, Func. Count: 32, Neg. LLF: 78.46552133687514
Iteration: 6, Func. Count: 38, Neg. LLF: 78.42336320992025
Iteration: 7, Func. Count: 43, Neg. LLF: 78.42330833598785
Iteration: 8, Func. Count: 48, Neg. LLF: 78.42330535731571
Iteration: 9, Func. Count: 52, Neg. LLF: 78.42330535731229
Optimization terminated successfully (Exit mode 0)
Current function value: 78.42330535731571
Iterations: 9
Function evaluations: 52
Gradient evaluations: 9
Iteration: 1, Func. Count: 7, Neg. LLF: 82.77640090821613
Iteration: 2, Func. Count: 15, Neg. LLF: 163.7551203297079
Iteration: 3, Func. Count: 23, Neg. LLF: 78.50624659041716
Iteration: 4, Func. Count: 29, Neg. LLF: 78.43135904246596
Iteration: 5, Func. Count: 35, Neg. LLF: 78.4276171753481
Iteration: 6, Func. Count: 41, Neg. LLF: 78.42390616021522
Iteration: 7, Func. Count: 47, Neg. LLF: 78.42334243755343
Iteration: 8, Func. Count: 53, Neg. LLF: 78.42331757584124
Iteration: 9, Func. Count: 59, Neg. LLF: 78.42331176569772
Iteration: 10, Func. Count: 65, Neg. LLF: 78.42330648694768
Iteration: 11, Func. Count: 71, Neg. LLF: 78.423305445841
Iteration: 12, Func. Count: 76, Neg. LLF: 78.42330544795078
Optimization terminated successfully (Exit mode 0)
Current function value: 78.423305445841
Iterations: 12
Function evaluations: 76
Gradient evaluations: 12
Iteration: 1, Func. Count: 8, Neg. LLF: 85.01843720220359
Iteration: 2, Func. Count: 17, Neg. LLF: 100.11074530436066
Iteration: 3, Func. Count: 26, Neg. LLF: 78.48519867582768
Iteration: 4, Func. Count: 33, Neg. LLF: 78.44889284831015
Iteration: 5, Func. Count: 40, Neg. LLF: 78.42412796675283
Iteration: 6, Func. Count: 47, Neg. LLF: 78.42345776657798
Iteration: 7, Func. Count: 54, Neg. LLF: 78.42334301922286
Iteration: 8, Func. Count: 61, Neg. LLF: 78.4233123827354
Iteration: 9, Func. Count: 68, Neg. LLF: 78.42330908145567
Iteration: 10, Func. Count: 75, Neg. LLF: 78.42330619694748
Iteration: 11, Func. Count: 82, Neg. LLF: 78.42330545193538
Optimization terminated successfully (Exit mode 0)
Current function value: 78.42330545193538
Iterations: 11
Function evaluations: 82
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 132.47566007943152
Iteration: 2, Func. Count: 19, Neg. LLF: 79.02987503095706
Iteration: 3, Func. Count: 28, Neg. LLF: 78.66697243435297
Iteration: 4, Func. Count: 36, Neg. LLF: 78.8372500789153
Iteration: 5, Func. Count: 45, Neg. LLF: 78.53766137817534
Iteration: 6, Func. Count: 53, Neg. LLF: 78.44617566997445
Iteration: 7, Func. Count: 61, Neg. LLF: 78.43003342967718
Iteration: 8, Func. Count: 69, Neg. LLF: 78.42511056852958
Iteration: 9, Func. Count: 77, Neg. LLF: 78.42364291958339
Iteration: 10, Func. Count: 85, Neg. LLF: 78.42348981888783
Iteration: 11, Func. Count: 93, Neg. LLF: 78.42344236348384
Iteration: 12, Func. Count: 101, Neg. LLF: 78.42337277362229
Iteration: 13, Func. Count: 109, Neg. LLF: 78.42332605379977
Iteration: 14, Func. Count: 117, Neg. LLF: 78.42330753986845
Iteration: 15, Func. Count: 125, Neg. LLF: 78.42330543018454
Iteration: 16, Func. Count: 132, Neg. LLF: 78.42330544163956
Optimization terminated successfully (Exit mode 0)
Current function value: 78.42330543018454
Iterations: 16
Function evaluations: 132
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 83.95495173264342
Iteration: 2, Func. Count: 22, Neg. LLF: 117.54142525513272
Iteration: 3, Func. Count: 33, Neg. LLF: 78.48753609222351
Iteration: 4, Func. Count: 42, Neg. LLF: 78.45809269768357
Iteration: 5, Func. Count: 51, Neg. LLF: 78.4366915715895
Iteration: 6, Func. Count: 60, Neg. LLF: 78.42361996638303
Iteration: 7, Func. Count: 69, Neg. LLF: 78.42340288257162
Iteration: 8, Func. Count: 78, Neg. LLF: 78.42330928196554
Iteration: 9, Func. Count: 87, Neg. LLF: 78.42330775099136
Iteration: 10, Func. Count: 96, Neg. LLF: 78.42330536036708
Iteration: 11, Func. Count: 104, Neg. LLF: 78.42330536556128
Optimization terminated successfully (Exit mode 0)
Current function value: 78.42330536036708
Iterations: 11
Function evaluations: 104
Gradient evaluations: 11
Iteration: 1, Func. Count: 7, Neg. LLF: 141.19089501352536
Iteration: 2, Func. Count: 17, Neg. LLF: 363.96006401469873
Iteration: 3, Func. Count: 25, Neg. LLF: 79.13074304913475
Iteration: 4, Func. Count: 32, Neg. LLF: 78.45242534270022
Iteration: 5, Func. Count: 38, Neg. LLF: 78.4371041459201
Iteration: 6, Func. Count: 44, Neg. LLF: 78.42648031430738
Iteration: 7, Func. Count: 50, Neg. LLF: 78.42333987903994
Iteration: 8, Func. Count: 56, Neg. LLF: 78.42330551833517
Iteration: 9, Func. Count: 61, Neg. LLF: 78.42330552863649
Optimization terminated successfully (Exit mode 0)
Current function value: 78.42330551833517
Iterations: 9
Function evaluations: 61
Gradient evaluations: 9
Iteration: 1, Func. Count: 8, Neg. LLF: 82.68357173127288
Iteration: 2, Func. Count: 17, Neg. LLF: 177.68866719637867
Iteration: 3, Func. Count: 26, Neg. LLF: 78.5049812157161
Iteration: 4, Func. Count: 33, Neg. LLF: 78.45988514391185
Iteration: 5, Func. Count: 40, Neg. LLF: 78.42747482915514
Iteration: 6, Func. Count: 47, Neg. LLF: 78.42435622528762
Iteration: 7, Func. Count: 54, Neg. LLF: 78.4234587761945
Iteration: 8, Func. Count: 61, Neg. LLF: 78.42336007450486
Iteration: 9, Func. Count: 68, Neg. LLF: 78.42332997508923
Iteration: 10, Func. Count: 75, Neg. LLF: 78.42331015029504
Iteration: 11, Func. Count: 82, Neg. LLF: 78.42330572997926
Iteration: 12, Func. Count: 88, Neg. LLF: 78.42330573209995
Optimization terminated successfully (Exit mode 0)
Current function value: 78.42330572997926
Iterations: 12
Function evaluations: 88
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 84.71547869471003
Iteration: 2, Func. Count: 19, Neg. LLF: 104.13911684745422
Iteration: 3, Func. Count: 29, Neg. LLF: 78.48440436304217
Iteration: 4, Func. Count: 37, Neg. LLF: 78.42683656487526
Iteration: 5, Func. Count: 45, Neg. LLF: 78.4244350190567
Iteration: 6, Func. Count: 53, Neg. LLF: 78.42353991538126
Iteration: 7, Func. Count: 61, Neg. LLF: 78.4234364452336
Iteration: 8, Func. Count: 69, Neg. LLF: 78.42331993083617
Iteration: 9, Func. Count: 77, Neg. LLF: 78.42330994251637
Iteration: 10, Func. Count: 85, Neg. LLF: 78.42330580080475
Iteration: 11, Func. Count: 92, Neg. LLF: 78.4233058098455
Optimization terminated successfully (Exit mode 0)
Current function value: 78.42330580080475
Iterations: 11
Function evaluations: 92
Gradient evaluations: 11
Iteration: 1, Func. Count: 10, Neg. LLF: 132.4033181055286
Iteration: 2, Func. Count: 21, Neg. LLF: 78.87799998572164
Iteration: 3, Func. Count: 31, Neg. LLF: 78.75510590533025
Iteration: 4, Func. Count: 41, Neg. LLF: 78.70452666829534
Iteration: 5, Func. Count: 51, Neg. LLF: 78.56328053336368
Iteration: 6, Func. Count: 60, Neg. LLF: 78.44505603052379
Iteration: 7, Func. Count: 69, Neg. LLF: 78.43443939040331
Iteration: 8, Func. Count: 78, Neg. LLF: 78.42642782495263
Iteration: 9, Func. Count: 87, Neg. LLF: 78.42551137095518
Iteration: 10, Func. Count: 96, Neg. LLF: 78.42479374965453
Iteration: 11, Func. Count: 105, Neg. LLF: 78.42418124639482
Iteration: 12, Func. Count: 114, Neg. LLF: 78.42362994828001
Iteration: 13, Func. Count: 123, Neg. LLF: 78.42336766531177
Iteration: 14, Func. Count: 132, Neg. LLF: 78.42331068610254
Iteration: 15, Func. Count: 141, Neg. LLF: 78.42330564905494
Iteration: 16, Func. Count: 149, Neg. LLF: 78.42330566055344
Optimization terminated successfully (Exit mode 0)
Current function value: 78.42330564905494
Iterations: 16
Function evaluations: 149
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 108.9664597324729
Iteration: 2, Func. Count: 23, Neg. LLF: 79.40634994283683
Iteration: 3, Func. Count: 35, Neg. LLF: 78.53890041199655
Iteration: 4, Func. Count: 45, Neg. LLF: 78.47216848987273
Iteration: 5, Func. Count: 55, Neg. LLF: 78.43305875975562
Iteration: 6, Func. Count: 65, Neg. LLF: 78.42512046383821
Iteration: 7, Func. Count: 75, Neg. LLF: 78.42356348360046
Iteration: 8, Func. Count: 85, Neg. LLF: 78.42337321902454
Iteration: 9, Func. Count: 95, Neg. LLF: 78.42335689595987
Iteration: 10, Func. Count: 105, Neg. LLF: 78.42332556676983
Iteration: 11, Func. Count: 115, Neg. LLF: 78.42330999358076
Iteration: 12, Func. Count: 125, Neg. LLF: 78.42330564471084
Iteration: 13, Func. Count: 134, Neg. LLF: 78.42330564992287
Optimization terminated successfully (Exit mode 0)
Current function value: 78.42330564471084
Iterations: 13
Function evaluations: 134
Gradient evaluations: 13
Iteration: 1, Func. Count: 8, Neg. LLF: 146.31083911013894
Iteration: 2, Func. Count: 19, Neg. LLF: 399.94967143893984
Iteration: 3, Func. Count: 28, Neg. LLF: 79.87083659124522
Iteration: 4, Func. Count: 36, Neg. LLF: 78.44539145967214
Iteration: 5, Func. Count: 43, Neg. LLF: 78.43180326437223
Iteration: 6, Func. Count: 50, Neg. LLF: 78.42573864476208
Iteration: 7, Func. Count: 57, Neg. LLF: 78.42331820523518
Iteration: 8, Func. Count: 64, Neg. LLF: 78.42330546238573
Iteration: 9, Func. Count: 70, Neg. LLF: 78.42330551111128
Optimization terminated successfully (Exit mode 0)
Current function value: 78.42330546238573
Iterations: 9
Function evaluations: 70
Gradient evaluations: 9
Iteration: 1, Func. Count: 9, Neg. LLF: 82.60395584743061
Iteration: 2, Func. Count: 19, Neg. LLF: 187.5203723095388
Iteration: 3, Func. Count: 29, Neg. LLF: 78.47629407203814
Iteration: 4, Func. Count: 37, Neg. LLF: 78.57005402073433
Iteration: 5, Func. Count: 46, Neg. LLF: 78.42956949720259
Iteration: 6, Func. Count: 54, Neg. LLF: 78.42629581362296
Iteration: 7, Func. Count: 62, Neg. LLF: 78.42417390891279
Iteration: 8, Func. Count: 70, Neg. LLF: 78.42349219512475
Iteration: 9, Func. Count: 78, Neg. LLF: 78.4234064159821
Iteration: 10, Func. Count: 86, Neg. LLF: 78.42330711140642
Iteration: 11, Func. Count: 94, Neg. LLF: 78.42330539689729
Iteration: 12, Func. Count: 101, Neg. LLF: 78.42330539898529
Optimization terminated successfully (Exit mode 0)
Current function value: 78.42330539689729
Iterations: 12
Function evaluations: 101
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 136.88542904890568
Iteration: 2, Func. Count: 22, Neg. LLF: 78.83487824186386
Iteration: 3, Func. Count: 32, Neg. LLF: 78.65352738492246
Iteration: 4, Func. Count: 41, Neg. LLF: 78.6444457781894
Iteration: 5, Func. Count: 50, Neg. LLF: 78.6398247571667
Iteration: 6, Func. Count: 59, Neg. LLF: 78.63848984660021
Iteration: 7, Func. Count: 68, Neg. LLF: 78.63839084325987
Iteration: 8, Func. Count: 77, Neg. LLF: 78.63835351057789
Iteration: 9, Func. Count: 86, Neg. LLF: 78.63835194609804
Iteration: 10, Func. Count: 94, Neg. LLF: 78.63835194616205
Optimization terminated successfully (Exit mode 0)
Current function value: 78.63835194609804
Iterations: 10
Function evaluations: 94
Gradient evaluations: 10
Iteration: 1, Func. Count: 11, Neg. LLF: 132.4401262313812
Iteration: 2, Func. Count: 23, Neg. LLF: 78.87483624058805
Iteration: 3, Func. Count: 34, Neg. LLF: 78.75044723083103
Iteration: 4, Func. Count: 45, Neg. LLF: 78.7101651175393
Iteration: 5, Func. Count: 56, Neg. LLF: 78.57403929977639
Iteration: 6, Func. Count: 66, Neg. LLF: 78.4425186910037
Iteration: 7, Func. Count: 76, Neg. LLF: 78.43346449674523
Iteration: 8, Func. Count: 86, Neg. LLF: 78.42621953583983
Iteration: 9, Func. Count: 96, Neg. LLF: 78.4256629749604
Iteration: 10, Func. Count: 106, Neg. LLF: 78.4249419702305
Iteration: 11, Func. Count: 116, Neg. LLF: 78.42404507462118
Iteration: 12, Func. Count: 126, Neg. LLF: 78.42347476977618
Iteration: 13, Func. Count: 136, Neg. LLF: 78.42332318507266
Iteration: 14, Func. Count: 146, Neg. LLF: 78.42330588666029
Iteration: 15, Func. Count: 155, Neg. LLF: 78.42330589819147
Optimization terminated successfully (Exit mode 0)
Current function value: 78.42330588666029
Iterations: 15
Function evaluations: 155
Gradient evaluations: 15
Iteration: 1, Func. Count: 12, Neg. LLF: 108.21658305669173
Iteration: 2, Func. Count: 25, Neg. LLF: 79.46757908047735
Iteration: 3, Func. Count: 38, Neg. LLF: 78.60775801232397
Iteration: 4, Func. Count: 49, Neg. LLF: 78.45821236287962
Iteration: 5, Func. Count: 60, Neg. LLF: 78.42736210763586
Iteration: 6, Func. Count: 71, Neg. LLF: 78.42380265028166
Iteration: 7, Func. Count: 82, Neg. LLF: 78.4233286937104
Iteration: 8, Func. Count: 93, Neg. LLF: 78.42331717561592
Iteration: 9, Func. Count: 104, Neg. LLF: 78.4233141638301
Iteration: 10, Func. Count: 115, Neg. LLF: 78.42330743541393
Iteration: 11, Func. Count: 126, Neg. LLF: 78.42330565518284
Iteration: 12, Func. Count: 136, Neg. LLF: 78.42330566039624
Optimization terminated successfully (Exit mode 0)
Current function value: 78.42330565518284
Iterations: 12
Function evaluations: 136
Gradient evaluations: 12
Iteration: 1, Func. Count: 5, Neg. LLF: 163.24561041489096
Iteration: 2, Func. Count: 13, Neg. LLF: 208.6184274529934
Iteration: 3, Func. Count: 19, Neg. LLF: 78.83704939429508
Iteration: 4, Func. Count: 24, Neg. LLF: 78.17658865637028
Iteration: 5, Func. Count: 28, Neg. LLF: 78.16794858962417
Iteration: 6, Func. Count: 32, Neg. LLF: 78.1676763925811
Iteration: 7, Func. Count: 36, Neg. LLF: 78.16767075243014
Iteration: 8, Func. Count: 40, Neg. LLF: 78.16766969849802
Iteration: 9, Func. Count: 43, Neg. LLF: 78.16766969846603
Optimization terminated successfully (Exit mode 0)
Current function value: 78.16766969849802
Iterations: 9
Function evaluations: 43
Gradient evaluations: 9
Iteration: 1, Func. Count: 6, Neg. LLF: 179.51808144324897
Iteration: 2, Func. Count: 13, Neg. LLF: 82.54567268458963
Iteration: 3, Func. Count: 20, Neg. LLF: 78.00808007072985
Iteration: 4, Func. Count: 26, Neg. LLF: 78.24990953876626
Iteration: 5, Func. Count: 33, Neg. LLF: 78.00409782225805
Iteration: 6, Func. Count: 37, Neg. LLF: 78.00409782231095
Optimization terminated successfully (Exit mode 0)
Current function value: 78.00409782225805
Iterations: 6
Function evaluations: 37
Gradient evaluations: 6
Iteration: 1, Func. Count: 7, Neg. LLF: 110.33958424402111
Iteration: 2, Func. Count: 15, Neg. LLF: 79.22485616335314
Iteration: 3, Func. Count: 22, Neg. LLF: 79.59555305503405
Iteration: 4, Func. Count: 30, Neg. LLF: 78.37172981806292
Iteration: 5, Func. Count: 37, Neg. LLF: 77.87884181503638
Iteration: 6, Func. Count: 43, Neg. LLF: 77.87532387438247
Iteration: 7, Func. Count: 49, Neg. LLF: 77.87403826874822
Iteration: 8, Func. Count: 55, Neg. LLF: 77.87401326861398
Iteration: 9, Func. Count: 61, Neg. LLF: 77.87401273753514
Optimization terminated successfully (Exit mode 0)
Current function value: 77.87401273753514
Iterations: 9
Function evaluations: 61
Gradient evaluations: 9
Iteration: 1, Func. Count: 8, Neg. LLF: 111.55292299689951
Iteration: 2, Func. Count: 17, Neg. LLF: 88.18830995693426
Iteration: 3, Func. Count: 26, Neg. LLF: 77.90203749097503
Iteration: 4, Func. Count: 33, Neg. LLF: 77.91085814561754
Iteration: 5, Func. Count: 41, Neg. LLF: 77.90519046212117
Iteration: 6, Func. Count: 49, Neg. LLF: 77.8781602088179
Iteration: 7, Func. Count: 56, Neg. LLF: 77.8740642349778
Iteration: 8, Func. Count: 63, Neg. LLF: 77.87401635526905
Iteration: 9, Func. Count: 70, Neg. LLF: 77.8740127374383
Iteration: 10, Func. Count: 76, Neg. LLF: 77.87401276940896
Optimization terminated successfully (Exit mode 0)
Current function value: 77.8740127374383
Iterations: 10
Function evaluations: 76
Gradient evaluations: 10
Iteration: 1, Func. Count: 9, Neg. LLF: 96.92300544005927
Iteration: 2, Func. Count: 19, Neg. LLF: 104.0227198273617
Iteration: 3, Func. Count: 29, Neg. LLF: 78.76682163303568
Iteration: 4, Func. Count: 38, Neg. LLF: 77.87904807360012
Iteration: 5, Func. Count: 46, Neg. LLF: 77.87735480224876
Iteration: 6, Func. Count: 54, Neg. LLF: 77.8742077899816
Iteration: 7, Func. Count: 62, Neg. LLF: 77.87404376901563
Iteration: 8, Func. Count: 70, Neg. LLF: 77.87402545716712
Iteration: 9, Func. Count: 78, Neg. LLF: 77.8740189995782
Iteration: 10, Func. Count: 86, Neg. LLF: 77.8740132629102
Iteration: 11, Func. Count: 93, Neg. LLF: 77.8740132933063
Optimization terminated successfully (Exit mode 0)
Current function value: 77.8740132629102
Iterations: 11
Function evaluations: 93
Gradient evaluations: 11
Iteration: 1, Func. Count: 6, Neg. LLF: 174.1632155523624
Iteration: 2, Func. Count: 15, Neg. LLF: 148.7829387102318
Iteration: 3, Func. Count: 22, Neg. LLF: 77.66671234703155
Iteration: 4, Func. Count: 27, Neg. LLF: 77.19919256772138
Iteration: 5, Func. Count: 32, Neg. LLF: 77.19232022137855
Iteration: 6, Func. Count: 37, Neg. LLF: 77.18951803856801
Iteration: 7, Func. Count: 42, Neg. LLF: 77.18896552835098
Iteration: 8, Func. Count: 47, Neg. LLF: 77.18893119287975
Iteration: 9, Func. Count: 52, Neg. LLF: 77.18892987262848
Iteration: 10, Func. Count: 56, Neg. LLF: 77.18892979369551
Optimization terminated successfully (Exit mode 0)
Current function value: 77.18892987262848
Iterations: 10
Function evaluations: 56
Gradient evaluations: 10
Iteration: 1, Func. Count: 7, Neg. LLF: 145.75693838494325
Iteration: 2, Func. Count: 14, Neg. LLF: 94.06925353164235
Iteration: 3, Func. Count: 22, Neg. LLF: 82.83864650648525
Iteration: 4, Func. Count: 29, Neg. LLF: 77.23783835547859
Iteration: 5, Func. Count: 35, Neg. LLF: 77.17803517260396
Iteration: 6, Func. Count: 41, Neg. LLF: 77.15426729584739
Iteration: 7, Func. Count: 47, Neg. LLF: 77.15141494076042
Iteration: 8, Func. Count: 53, Neg. LLF: 77.14985601834077
Iteration: 9, Func. Count: 59, Neg. LLF: 77.14900004263136
Iteration: 10, Func. Count: 65, Neg. LLF: 77.14898554416258
Iteration: 11, Func. Count: 71, Neg. LLF: 77.14898081996455
Iteration: 12, Func. Count: 77, Neg. LLF: 77.14897998817798
Optimization terminated successfully (Exit mode 0)
Current function value: 77.14897998817798
Iterations: 12
Function evaluations: 77
Gradient evaluations: 12
Iteration: 1, Func. Count: 8, Neg. LLF: 111.84543576169372
Iteration: 2, Func. Count: 16, Neg. LLF: 102.69908826848577
Iteration: 3, Func. Count: 25, Neg. LLF: 83.54569525827975
Iteration: 4, Func. Count: 33, Neg. LLF: 77.20648525902438
Iteration: 5, Func. Count: 40, Neg. LLF: 76.69949334820117
Iteration: 6, Func. Count: 47, Neg. LLF: 76.68220708211733
Iteration: 7, Func. Count: 54, Neg. LLF: 76.67334076810198
Iteration: 8, Func. Count: 61, Neg. LLF: 76.67303391932903
Iteration: 9, Func. Count: 68, Neg. LLF: 76.67284657518746
Iteration: 10, Func. Count: 75, Neg. LLF: 76.6728423747059
Iteration: 11, Func. Count: 82, Neg. LLF: 76.67284169021266
Optimization terminated successfully (Exit mode 0)
Current function value: 76.67284169021266
Iterations: 11
Function evaluations: 82
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 90.03241801691622
Iteration: 2, Func. Count: 19, Neg. LLF: 13398118.902274748
Iteration: 3, Func. Count: 28, Neg. LLF: 77.59592726630045
Iteration: 4, Func. Count: 36, Neg. LLF: 77.25576710121831
Iteration: 5, Func. Count: 44, Neg. LLF: 98.83289828857042
Iteration: 6, Func. Count: 53, Neg. LLF: 76.88847158922401
Iteration: 7, Func. Count: 61, Neg. LLF: 76.70584832031469
Iteration: 8, Func. Count: 69, Neg. LLF: 76.67645261331678
Iteration: 9, Func. Count: 77, Neg. LLF: 76.673500735355
Iteration: 10, Func. Count: 85, Neg. LLF: 76.673028586265
Iteration: 11, Func. Count: 93, Neg. LLF: 76.67288291814336
Iteration: 12, Func. Count: 101, Neg. LLF: 76.67284348757799
Iteration: 13, Func. Count: 109, Neg. LLF: 76.67284175309207
Iteration: 14, Func. Count: 116, Neg. LLF: 76.67284180632389
Optimization terminated successfully (Exit mode 0)
Current function value: 76.67284175309207
Iterations: 14
Function evaluations: 116
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 93.39282251676963
Iteration: 2, Func. Count: 21, Neg. LLF: 19560189.90868687
Iteration: 3, Func. Count: 31, Neg. LLF: 97.27348612730816
Iteration: 4, Func. Count: 42, Neg. LLF: 76.77090589658269
Iteration: 5, Func. Count: 51, Neg. LLF: 76.68639709954499
Iteration: 6, Func. Count: 60, Neg. LLF: 76.67417949612609
Iteration: 7, Func. Count: 69, Neg. LLF: 76.67284891103509
Iteration: 8, Func. Count: 78, Neg. LLF: 76.67284184969405
Iteration: 9, Func. Count: 86, Neg. LLF: 76.67284190127329
Optimization terminated successfully (Exit mode 0)
Current function value: 76.67284184969405
Iterations: 9
Function evaluations: 86
Gradient evaluations: 9
Iteration: 1, Func. Count: 7, Neg. LLF: 152.3958914337443
Iteration: 2, Func. Count: 17, Neg. LLF: 136.90366849303186
Iteration: 3, Func. Count: 25, Neg. LLF: 77.5759279699606
Iteration: 4, Func. Count: 31, Neg. LLF: 77.21332016924258
Iteration: 5, Func. Count: 37, Neg. LLF: 78.93504261263803
Iteration: 6, Func. Count: 44, Neg. LLF: 77.05691498800638
Iteration: 7, Func. Count: 51, Neg. LLF: 76.93861928547501
Iteration: 8, Func. Count: 57, Neg. LLF: 76.93651040989728
Iteration: 9, Func. Count: 63, Neg. LLF: 76.93605656624558
Iteration: 10, Func. Count: 69, Neg. LLF: 76.93605429636239
Iteration: 11, Func. Count: 75, Neg. LLF: 76.93605347673231
Optimization terminated successfully (Exit mode 0)
Current function value: 76.93605347673231
Iterations: 11
Function evaluations: 75
Gradient evaluations: 11
Iteration: 1, Func. Count: 8, Neg. LLF: 127.99434827990157
Iteration: 2, Func. Count: 16, Neg. LLF: 97.89993135819206
Iteration: 3, Func. Count: 25, Neg. LLF: 79.28905875948314
Iteration: 4, Func. Count: 33, Neg. LLF: 77.31779041687616
Iteration: 5, Func. Count: 40, Neg. LLF: 77.20743148409571
Iteration: 6, Func. Count: 48, Neg. LLF: 83.34995053128539
Iteration: 7, Func. Count: 56, Neg. LLF: 77.06840735380928
Iteration: 8, Func. Count: 64, Neg. LLF: 76.93032207685961
Iteration: 9, Func. Count: 71, Neg. LLF: 76.92977582383675
Iteration: 10, Func. Count: 78, Neg. LLF: 76.92955669556119
Iteration: 11, Func. Count: 85, Neg. LLF: 76.92954464826622
Iteration: 12, Func. Count: 92, Neg. LLF: 76.92953616867062
Iteration: 13, Func. Count: 98, Neg. LLF: 76.92953616869083
Optimization terminated successfully (Exit mode 0)
Current function value: 76.92953616867062
Iterations: 13
Function evaluations: 98
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 102.57939313602189
Iteration: 2, Func. Count: 18, Neg. LLF: 123.95857689719386
Iteration: 3, Func. Count: 28, Neg. LLF: 77.2072544717871
Iteration: 4, Func. Count: 36, Neg. LLF: 90.99245711101737
Iteration: 5, Func. Count: 46, Neg. LLF: 79.5498256612031
Iteration: 6, Func. Count: 55, Neg. LLF: 76.68118251344453
Iteration: 7, Func. Count: 63, Neg. LLF: 76.67379121669038
Iteration: 8, Func. Count: 71, Neg. LLF: 76.6730211248325
Iteration: 9, Func. Count: 79, Neg. LLF: 76.67289304111658
Iteration: 10, Func. Count: 87, Neg. LLF: 76.67284605138056
Iteration: 11, Func. Count: 95, Neg. LLF: 76.67284176988353
Iteration: 12, Func. Count: 102, Neg. LLF: 76.67284176987712
Optimization terminated successfully (Exit mode 0)
Current function value: 76.67284176988353
Iterations: 12
Function evaluations: 102
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 95.92025795449615
Iteration: 2, Func. Count: 21, Neg. LLF: 3906624.1488529127
Iteration: 3, Func. Count: 31, Neg. LLF: 80.29840429646673
Iteration: 4, Func. Count: 41, Neg. LLF: 77.30810265314172
Iteration: 5, Func. Count: 50, Neg. LLF: 77.85729869714564
Iteration: 6, Func. Count: 60, Neg. LLF: 76.76471337354293
Iteration: 7, Func. Count: 69, Neg. LLF: 76.76326116137872
Iteration: 8, Func. Count: 79, Neg. LLF: 76.67321706615657
Iteration: 9, Func. Count: 88, Neg. LLF: 76.6728915916104
Iteration: 10, Func. Count: 97, Neg. LLF: 76.67284982816395
Iteration: 11, Func. Count: 106, Neg. LLF: 76.67284248819091
Iteration: 12, Func. Count: 115, Neg. LLF: 76.6728417104958
Optimization terminated successfully (Exit mode 0)
Current function value: 76.6728417104958
Iterations: 12
Function evaluations: 115
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 97.58440464216942
Iteration: 2, Func. Count: 23, Neg. LLF: 3920607.297801316
Iteration: 3, Func. Count: 34, Neg. LLF: 131.6892006314285
Iteration: 4, Func. Count: 46, Neg. LLF: 77.21019337377192
Iteration: 5, Func. Count: 56, Neg. LLF: 77.04965970513149
Iteration: 6, Func. Count: 66, Neg. LLF: 76.78012558768093
Iteration: 7, Func. Count: 76, Neg. LLF: 76.70319446838164
Iteration: 8, Func. Count: 86, Neg. LLF: 76.67535336714228
Iteration: 9, Func. Count: 96, Neg. LLF: 76.67295864166518
Iteration: 10, Func. Count: 106, Neg. LLF: 76.67285101093161
Iteration: 11, Func. Count: 116, Neg. LLF: 76.67284337604386
Iteration: 12, Func. Count: 126, Neg. LLF: 76.67284168038994
Iteration: 13, Func. Count: 135, Neg. LLF: 76.67284173194741
Optimization terminated successfully (Exit mode 0)
Current function value: 76.67284168038994
Iterations: 13
Function evaluations: 135
Gradient evaluations: 13
Iteration: 1, Func. Count: 8, Neg. LLF: 163.907996325014
Iteration: 2, Func. Count: 19, Neg. LLF: 140.29757020633895
Iteration: 3, Func. Count: 28, Neg. LLF: 78.98454637039423
Iteration: 4, Func. Count: 36, Neg. LLF: 77.31660064548659
Iteration: 5, Func. Count: 43, Neg. LLF: 77.18241876880934
Iteration: 6, Func. Count: 51, Neg. LLF: 76.9434697855998
Iteration: 7, Func. Count: 58, Neg. LLF: 76.93629035691173
Iteration: 8, Func. Count: 65, Neg. LLF: 76.9360597394778
Iteration: 9, Func. Count: 72, Neg. LLF: 76.93605458001414
Iteration: 10, Func. Count: 79, Neg. LLF: 76.93605377634418
Optimization terminated successfully (Exit mode 0)
Current function value: 76.93605377634418
Iterations: 10
Function evaluations: 79
Gradient evaluations: 10
Iteration: 1, Func. Count: 9, Neg. LLF: 124.33728319296434
Iteration: 2, Func. Count: 18, Neg. LLF: 99.30731405726175
Iteration: 3, Func. Count: 28, Neg. LLF: 77.22551483821205
Iteration: 4, Func. Count: 36, Neg. LLF: 81.4518803806958
Iteration: 5, Func. Count: 46, Neg. LLF: 82.59613827452266
Iteration: 6, Func. Count: 55, Neg. LLF: 96.78330176060923
Iteration: 7, Func. Count: 64, Neg. LLF: 76.93843152216142
Iteration: 8, Func. Count: 72, Neg. LLF: 76.93106440108447
Iteration: 9, Func. Count: 80, Neg. LLF: 76.92961834232122
Iteration: 10, Func. Count: 88, Neg. LLF: 76.92954266917727
Iteration: 11, Func. Count: 96, Neg. LLF: 76.92953874929195
Iteration: 12, Func. Count: 104, Neg. LLF: 76.92953672930807
Iteration: 13, Func. Count: 112, Neg. LLF: 76.92953611052617
Optimization terminated successfully (Exit mode 0)
Current function value: 76.92953611052617
Iterations: 13
Function evaluations: 112
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 101.64717715884274
Iteration: 2, Func. Count: 20, Neg. LLF: 142.12964352509357
Iteration: 3, Func. Count: 31, Neg. LLF: 77.22063146824338
Iteration: 4, Func. Count: 40, Neg. LLF: 90.66619169461694
Iteration: 5, Func. Count: 51, Neg. LLF: 80.59960821451476
Iteration: 6, Func. Count: 61, Neg. LLF: 76.69121294948303
Iteration: 7, Func. Count: 70, Neg. LLF: 76.67454273201008
Iteration: 8, Func. Count: 79, Neg. LLF: 76.67305203500199
Iteration: 9, Func. Count: 88, Neg. LLF: 76.67289896099733
Iteration: 10, Func. Count: 97, Neg. LLF: 76.67284994991414
Iteration: 11, Func. Count: 106, Neg. LLF: 76.67284173245893
Iteration: 12, Func. Count: 114, Neg. LLF: 76.67284173244312
Optimization terminated successfully (Exit mode 0)
Current function value: 76.67284173245893
Iterations: 12
Function evaluations: 114
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 96.33476001385236
Iteration: 2, Func. Count: 23, Neg. LLF: 4344650.294868168
Iteration: 3, Func. Count: 34, Neg. LLF: 81.56767909363421
Iteration: 4, Func. Count: 45, Neg. LLF: 77.2508209593265
Iteration: 5, Func. Count: 55, Neg. LLF: 77.44075078503694
Iteration: 6, Func. Count: 66, Neg. LLF: 76.74099328702165
Iteration: 7, Func. Count: 76, Neg. LLF: 76.73296503360434
Iteration: 8, Func. Count: 87, Neg. LLF: 76.67292045969786
Iteration: 9, Func. Count: 97, Neg. LLF: 76.67285205144678
Iteration: 10, Func. Count: 107, Neg. LLF: 76.67284320220082
Iteration: 11, Func. Count: 117, Neg. LLF: 76.67284181694617
Iteration: 12, Func. Count: 126, Neg. LLF: 76.6728418701981
Optimization terminated successfully (Exit mode 0)
Current function value: 76.67284181694617
Iterations: 12
Function evaluations: 126
Gradient evaluations: 12
Iteration: 1, Func. Count: 12, Neg. LLF: 98.11634087922839
Iteration: 2, Func. Count: 25, Neg. LLF: 3966199.1263712025
Iteration: 3, Func. Count: 37, Neg. LLF: 147.0463184203396
Iteration: 4, Func. Count: 50, Neg. LLF: 77.21267752134337
Iteration: 5, Func. Count: 61, Neg. LLF: 77.05037036168531
Iteration: 6, Func. Count: 72, Neg. LLF: 76.78073514626824
Iteration: 7, Func. Count: 83, Neg. LLF: 76.70390371438621
Iteration: 8, Func. Count: 94, Neg. LLF: 76.67503881467407
Iteration: 9, Func. Count: 105, Neg. LLF: 76.67293260258371
Iteration: 10, Func. Count: 116, Neg. LLF: 76.67284848609872
Iteration: 11, Func. Count: 127, Neg. LLF: 76.6728429292545
Iteration: 12, Func. Count: 138, Neg. LLF: 76.67284167962256
Iteration: 13, Func. Count: 148, Neg. LLF: 76.67284173118115
Optimization terminated successfully (Exit mode 0)
Current function value: 76.67284167962256
Iterations: 13
Function evaluations: 148
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 170.42165790541713
Iteration: 2, Func. Count: 21, Neg. LLF: 138.7251243923412
Iteration: 3, Func. Count: 31, Neg. LLF: 85.76911026515056
Iteration: 4, Func. Count: 40, Neg. LLF: 77.2848787727689
Iteration: 5, Func. Count: 48, Neg. LLF: 76.9489567438346
Iteration: 6, Func. Count: 56, Neg. LLF: 76.93993420265764
Iteration: 7, Func. Count: 64, Neg. LLF: 76.93709704792505
Iteration: 8, Func. Count: 72, Neg. LLF: 76.93609738790359
Iteration: 9, Func. Count: 80, Neg. LLF: 76.93605761963855
Iteration: 10, Func. Count: 88, Neg. LLF: 76.93605358911886
Iteration: 11, Func. Count: 95, Neg. LLF: 76.9360536218418
Optimization terminated successfully (Exit mode 0)
Current function value: 76.93605358911886
Iterations: 11
Function evaluations: 95
Gradient evaluations: 11
Iteration: 1, Func. Count: 10, Neg. LLF: 123.44736788724848
Iteration: 2, Func. Count: 20, Neg. LLF: 100.88355097760854
Iteration: 3, Func. Count: 31, Neg. LLF: 77.22110671945309
Iteration: 4, Func. Count: 40, Neg. LLF: 81.65197296610027
Iteration: 5, Func. Count: 51, Neg. LLF: 80.92672319251407
Iteration: 6, Func. Count: 61, Neg. LLF: 107.36889616488509
Iteration: 7, Func. Count: 71, Neg. LLF: 76.9377353051064
Iteration: 8, Func. Count: 80, Neg. LLF: 76.93083913547801
Iteration: 9, Func. Count: 89, Neg. LLF: 76.92958009948484
Iteration: 10, Func. Count: 98, Neg. LLF: 76.92954273113024
Iteration: 11, Func. Count: 107, Neg. LLF: 76.929539225636
Iteration: 12, Func. Count: 116, Neg. LLF: 76.92953614431575
Iteration: 13, Func. Count: 124, Neg. LLF: 76.92953614433215
Optimization terminated successfully (Exit mode 0)
Current function value: 76.92953614431575
Iterations: 13
Function evaluations: 124
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 102.13579394291611
Iteration: 2, Func. Count: 22, Neg. LLF: 161.23116262257437
Iteration: 3, Func. Count: 34, Neg. LLF: 77.23068568724625
Iteration: 4, Func. Count: 44, Neg. LLF: 90.56171296573207
Iteration: 5, Func. Count: 56, Neg. LLF: 80.79381424395696
Iteration: 6, Func. Count: 67, Neg. LLF: 76.8255136209823
Iteration: 7, Func. Count: 77, Neg. LLF: 76.6742191083098
Iteration: 8, Func. Count: 87, Neg. LLF: 76.6732789102397
Iteration: 9, Func. Count: 97, Neg. LLF: 76.67292934547488
Iteration: 10, Func. Count: 107, Neg. LLF: 76.67284445415001
Iteration: 11, Func. Count: 117, Neg. LLF: 76.67284174228799
Iteration: 12, Func. Count: 126, Neg. LLF: 76.67284174230171
Optimization terminated successfully (Exit mode 0)
Current function value: 76.67284174228799
Iterations: 12
Function evaluations: 126
Gradient evaluations: 12
Iteration: 1, Func. Count: 12, Neg. LLF: 96.67141517502901
Iteration: 2, Func. Count: 25, Neg. LLF: 3923821.9132720735
Iteration: 3, Func. Count: 37, Neg. LLF: 82.23439867809171
Iteration: 4, Func. Count: 49, Neg. LLF: 77.23538681521367
Iteration: 5, Func. Count: 60, Neg. LLF: 77.34544833100566
Iteration: 6, Func. Count: 72, Neg. LLF: 76.72844118411238
Iteration: 7, Func. Count: 83, Neg. LLF: 76.72131083031236
Iteration: 8, Func. Count: 95, Neg. LLF: 76.6729086147206
Iteration: 9, Func. Count: 106, Neg. LLF: 76.6728471120581
Iteration: 10, Func. Count: 117, Neg. LLF: 76.67284268328976
Iteration: 11, Func. Count: 128, Neg. LLF: 76.67284175491618
Optimization terminated successfully (Exit mode 0)
Current function value: 76.67284175491618
Iterations: 11
Function evaluations: 128
Gradient evaluations: 11
Iteration: 1, Func. Count: 13, Neg. LLF: 98.40816728515331
Iteration: 2, Func. Count: 27, Neg. LLF: 3997355.919042698
Iteration: 3, Func. Count: 40, Neg. LLF: 159.46090856092184
Iteration: 4, Func. Count: 54, Neg. LLF: 77.2141273065903
Iteration: 5, Func. Count: 66, Neg. LLF: 77.04944281147125
Iteration: 6, Func. Count: 78, Neg. LLF: 76.78163301073575
Iteration: 7, Func. Count: 90, Neg. LLF: 76.70474104817394
Iteration: 8, Func. Count: 102, Neg. LLF: 76.67484123296983
Iteration: 9, Func. Count: 114, Neg. LLF: 76.67291868763782
Iteration: 10, Func. Count: 126, Neg. LLF: 76.67284787758008
Iteration: 11, Func. Count: 138, Neg. LLF: 76.672842786258
Iteration: 12, Func. Count: 150, Neg. LLF: 76.67284167961066
Iteration: 13, Func. Count: 161, Neg. LLF: 76.67284173116938
Optimization terminated successfully (Exit mode 0)
Current function value: 76.67284167961066
Iterations: 13
Function evaluations: 161
Gradient evaluations: 13
Iteration: 1, Func. Count: 6, Neg. LLF: 137.35019558591685
Iteration: 2, Func. Count: 15, Neg. LLF: 130.2501517983652
Iteration: 3, Func. Count: 22, Neg. LLF: 78.74702862454072
Iteration: 4, Func. Count: 28, Neg. LLF: 78.22441474108851
Iteration: 5, Func. Count: 34, Neg. LLF: 78.11068242284482
Iteration: 6, Func. Count: 40, Neg. LLF: 78.12066507470104
Iteration: 7, Func. Count: 46, Neg. LLF: 78.10184563013244
Iteration: 8, Func. Count: 51, Neg. LLF: 78.10184174042737
Iteration: 9, Func. Count: 55, Neg. LLF: 78.1018417404233
Optimization terminated successfully (Exit mode 0)
Current function value: 78.10184174042737
Iterations: 9
Function evaluations: 55
Gradient evaluations: 9
Iteration: 1, Func. Count: 7, Neg. LLF: 195.8785929469656
Iteration: 2, Func. Count: 15, Neg. LLF: 110.57690258527757
Iteration: 3, Func. Count: 23, Neg. LLF: 79.15261527608466
Iteration: 4, Func. Count: 30, Neg. LLF: 78.46460296649728
Iteration: 5, Func. Count: 37, Neg. LLF: 78.00558208161837
Iteration: 6, Func. Count: 44, Neg. LLF: 77.99753054096146
Iteration: 7, Func. Count: 51, Neg. LLF: 77.99556865268842
Iteration: 8, Func. Count: 57, Neg. LLF: 77.99556475989974
Iteration: 9, Func. Count: 62, Neg. LLF: 77.99556475990515
Optimization terminated successfully (Exit mode 0)
Current function value: 77.99556475989974
Iterations: 9
Function evaluations: 62
Gradient evaluations: 9
Iteration: 1, Func. Count: 8, Neg. LLF: 85.92263971330466
Iteration: 2, Func. Count: 17, Neg. LLF: 413.2734493334251
Iteration: 3, Func. Count: 26, Neg. LLF: 78.23491172593981
Iteration: 4, Func. Count: 34, Neg. LLF: 82.64679051817285
Iteration: 5, Func. Count: 43, Neg. LLF: 77.88300655502728
Iteration: 6, Func. Count: 50, Neg. LLF: 77.87542311876396
Iteration: 7, Func. Count: 57, Neg. LLF: 77.87422622574799
Iteration: 8, Func. Count: 64, Neg. LLF: 77.87404299080808
Iteration: 9, Func. Count: 71, Neg. LLF: 77.87401297595112
Iteration: 10, Func. Count: 77, Neg. LLF: 77.87401297598483
Optimization terminated successfully (Exit mode 0)
Current function value: 77.87401297595112
Iterations: 10
Function evaluations: 77
Gradient evaluations: 10
Iteration: 1, Func. Count: 9, Neg. LLF: 85.92210134834559
Iteration: 2, Func. Count: 19, Neg. LLF: 383.1294935110344
Iteration: 3, Func. Count: 29, Neg. LLF: 78.17745314248792
Iteration: 4, Func. Count: 37, Neg. LLF: 78.17529805622543
Iteration: 5, Func. Count: 46, Neg. LLF: 92.19685129792795
Iteration: 6, Func. Count: 55, Neg. LLF: 77.90676344471399
Iteration: 7, Func. Count: 63, Neg. LLF: 77.87817481507567
Iteration: 8, Func. Count: 71, Neg. LLF: 77.8741804755505
Iteration: 9, Func. Count: 79, Neg. LLF: 77.87401474867482
Iteration: 10, Func. Count: 87, Neg. LLF: 77.87401275317944
Iteration: 11, Func. Count: 94, Neg. LLF: 77.87401278515138
Optimization terminated successfully (Exit mode 0)
Current function value: 77.87401275317944
Iterations: 11
Function evaluations: 94
Gradient evaluations: 11
Iteration: 1, Func. Count: 10, Neg. LLF: 87.539180532738
Iteration: 2, Func. Count: 21, Neg. LLF: 102.21653732951097
Iteration: 3, Func. Count: 31, Neg. LLF: 78.28841092303011
Iteration: 4, Func. Count: 40, Neg. LLF: 80.41569455870844
Iteration: 5, Func. Count: 50, Neg. LLF: 84.66342407922785
Iteration: 6, Func. Count: 60, Neg. LLF: 78.13186323851428
Iteration: 7, Func. Count: 70, Neg. LLF: 77.87749079489998
Iteration: 8, Func. Count: 79, Neg. LLF: 77.87591890022772
Iteration: 9, Func. Count: 88, Neg. LLF: 77.87404682147479
Iteration: 10, Func. Count: 97, Neg. LLF: 77.87401901141459
Iteration: 11, Func. Count: 106, Neg. LLF: 77.8740127688162
Iteration: 12, Func. Count: 114, Neg. LLF: 77.87401279927508
Optimization terminated successfully (Exit mode 0)
Current function value: 77.8740127688162
Iterations: 12
Function evaluations: 114
Gradient evaluations: 12
Iteration: 1, Func. Count: 7, Neg. LLF: 133.9379133965121
Iteration: 2, Func. Count: 17, Neg. LLF: 128.5462766083409
Iteration: 3, Func. Count: 25, Neg. LLF: 100.118613143867
Iteration: 4, Func. Count: 32, Neg. LLF: 77.22691522208179
Iteration: 5, Func. Count: 38, Neg. LLF: 78.58598628293676
Iteration: 6, Func. Count: 45, Neg. LLF: 77.3779586209561
Iteration: 7, Func. Count: 52, Neg. LLF: 77.05413258226301
Iteration: 8, Func. Count: 58, Neg. LLF: 77.05349963673308
Iteration: 9, Func. Count: 64, Neg. LLF: 77.0533519439714
Iteration: 10, Func. Count: 70, Neg. LLF: 77.05330160493813
Iteration: 11, Func. Count: 76, Neg. LLF: 77.05329300238972
Iteration: 12, Func. Count: 82, Neg. LLF: 77.05329211167194
Optimization terminated successfully (Exit mode 0)
Current function value: 77.05329211167194
Iterations: 12
Function evaluations: 82
Gradient evaluations: 12
Iteration: 1, Func. Count: 8, Neg. LLF: 111.4161587364035
Iteration: 2, Func. Count: 16, Neg. LLF: 117.48615517327495
Iteration: 3, Func. Count: 25, Neg. LLF: 99.65946339628586
Iteration: 4, Func. Count: 34, Neg. LLF: 77.24328476828427
Iteration: 5, Func. Count: 41, Neg. LLF: 77.11759803520994
Iteration: 6, Func. Count: 48, Neg. LLF: 77.07361576028681
Iteration: 7, Func. Count: 55, Neg. LLF: 77.0583289412552
Iteration: 8, Func. Count: 62, Neg. LLF: 77.05413634197545
Iteration: 9, Func. Count: 69, Neg. LLF: 77.05355861925239
Iteration: 10, Func. Count: 76, Neg. LLF: 77.05331180905662
Iteration: 11, Func. Count: 83, Neg. LLF: 77.05329290133037
Iteration: 12, Func. Count: 90, Neg. LLF: 77.05329209545847
Optimization terminated successfully (Exit mode 0)
Current function value: 77.05329209545847
Iterations: 12
Function evaluations: 90
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 81.42924564569174
Iteration: 2, Func. Count: 18, Neg. LLF: 101.66054712401774
Iteration: 3, Func. Count: 28, Neg. LLF: 77.35466051156132
Iteration: 4, Func. Count: 37, Neg. LLF: 82.13484461559976
Iteration: 5, Func. Count: 46, Neg. LLF: 76.72237352821118
Iteration: 6, Func. Count: 54, Neg. LLF: 76.6740032033529
Iteration: 7, Func. Count: 62, Neg. LLF: 76.67293916874577
Iteration: 8, Func. Count: 70, Neg. LLF: 76.67284701991544
Iteration: 9, Func. Count: 78, Neg. LLF: 76.67284171352041
Iteration: 10, Func. Count: 85, Neg. LLF: 76.6728417135401
Optimization terminated successfully (Exit mode 0)
Current function value: 76.67284171352041
Iterations: 10
Function evaluations: 85
Gradient evaluations: 10
Iteration: 1, Func. Count: 10, Neg. LLF: 80.74714142876422
Iteration: 2, Func. Count: 21, Neg. LLF: 4500088.448690531
Iteration: 3, Func. Count: 31, Neg. LLF: 26587485.534869954
Iteration: 4, Func. Count: 41, Neg. LLF: 77.20782831976605
Iteration: 5, Func. Count: 50, Neg. LLF: 85.66099571190021
Iteration: 6, Func. Count: 60, Neg. LLF: 76.6986773000209
Iteration: 7, Func. Count: 69, Neg. LLF: 76.67818927192745
Iteration: 8, Func. Count: 78, Neg. LLF: 76.67556728472331
Iteration: 9, Func. Count: 87, Neg. LLF: 76.67286822157718
Iteration: 10, Func. Count: 96, Neg. LLF: 76.67284523222656
Iteration: 11, Func. Count: 105, Neg. LLF: 76.67284214159663
Iteration: 12, Func. Count: 113, Neg. LLF: 76.67284219493355
Optimization terminated successfully (Exit mode 0)
Current function value: 76.67284214159663
Iterations: 12
Function evaluations: 113
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 88.62812296128926
Iteration: 2, Func. Count: 23, Neg. LLF: 13615283.314202687
Iteration: 3, Func. Count: 34, Neg. LLF: 784.4695998174311
Iteration: 4, Func. Count: 46, Neg. LLF: 77.21690770667288
Iteration: 5, Func. Count: 56, Neg. LLF: 76.68081984783912
Iteration: 6, Func. Count: 66, Neg. LLF: 76.67659030585867
Iteration: 7, Func. Count: 76, Neg. LLF: 76.673709718426
Iteration: 8, Func. Count: 86, Neg. LLF: 76.67297836757159
Iteration: 9, Func. Count: 96, Neg. LLF: 76.67285085250275
Iteration: 10, Func. Count: 106, Neg. LLF: 76.67284170652005
Iteration: 11, Func. Count: 115, Neg. LLF: 76.6728417580804
Optimization terminated successfully (Exit mode 0)
Current function value: 76.67284170652005
Iterations: 11
Function evaluations: 115
Gradient evaluations: 11
Iteration: 1, Func. Count: 8, Neg. LLF: 132.44601803124843
Iteration: 2, Func. Count: 19, Neg. LLF: 128.5772359471991
Iteration: 3, Func. Count: 28, Neg. LLF: 103.61284090577027
Iteration: 4, Func. Count: 36, Neg. LLF: 77.25535820457577
Iteration: 5, Func. Count: 43, Neg. LLF: 78.65983002330313
Iteration: 6, Func. Count: 51, Neg. LLF: 80.60249535308284
Iteration: 7, Func. Count: 60, Neg. LLF: 78.70827379518566
Iteration: 8, Func. Count: 68, Neg. LLF: 76.91597890915048
Iteration: 9, Func. Count: 75, Neg. LLF: 76.91509893159058
Iteration: 10, Func. Count: 82, Neg. LLF: 76.91500382204549
Iteration: 11, Func. Count: 89, Neg. LLF: 76.91496389905423
Iteration: 12, Func. Count: 96, Neg. LLF: 76.91496239718363
Iteration: 13, Func. Count: 102, Neg. LLF: 76.9149623971808
Optimization terminated successfully (Exit mode 0)
Current function value: 76.91496239718363
Iterations: 13
Function evaluations: 102
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 130.8434191942975
Iteration: 2, Func. Count: 18, Neg. LLF: 114.74874182737129
Iteration: 3, Func. Count: 28, Neg. LLF: 95.26746919792718
Iteration: 4, Func. Count: 38, Neg. LLF: 77.2483995132769
Iteration: 5, Func. Count: 46, Neg. LLF: 76.96233603300952
Iteration: 6, Func. Count: 54, Neg. LLF: 87.49954747144629
Iteration: 7, Func. Count: 64, Neg. LLF: 76.92169193804801
Iteration: 8, Func. Count: 72, Neg. LLF: 76.918094359828
Iteration: 9, Func. Count: 80, Neg. LLF: 76.91515416748712
Iteration: 10, Func. Count: 88, Neg. LLF: 76.91502379057344
Iteration: 11, Func. Count: 96, Neg. LLF: 76.91496817366239
Iteration: 12, Func. Count: 104, Neg. LLF: 76.9149635084301
Iteration: 13, Func. Count: 112, Neg. LLF: 76.91496214101494
Iteration: 14, Func. Count: 119, Neg. LLF: 76.91496214494958
Optimization terminated successfully (Exit mode 0)
Current function value: 76.91496214101494
Iterations: 14
Function evaluations: 119
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 82.77235283177849
Iteration: 2, Func. Count: 20, Neg. LLF: 100.68656540439116
Iteration: 3, Func. Count: 31, Neg. LLF: 77.25192519654972
Iteration: 4, Func. Count: 41, Neg. LLF: 77.61241984981838
Iteration: 5, Func. Count: 51, Neg. LLF: 90.33508768444976
Iteration: 6, Func. Count: 61, Neg. LLF: 76.68969829656817
Iteration: 7, Func. Count: 70, Neg. LLF: 76.67323805601636
Iteration: 8, Func. Count: 79, Neg. LLF: 76.67286210428892
Iteration: 9, Func. Count: 88, Neg. LLF: 76.67284423293265
Iteration: 10, Func. Count: 97, Neg. LLF: 76.67284168430643
Iteration: 11, Func. Count: 105, Neg. LLF: 76.67284168430056
Optimization terminated successfully (Exit mode 0)
Current function value: 76.67284168430643
Iterations: 11
Function evaluations: 105
Gradient evaluations: 11
Iteration: 1, Func. Count: 11, Neg. LLF: 83.2251628786496
Iteration: 2, Func. Count: 23, Neg. LLF: 1854634.7456973202
Iteration: 3, Func. Count: 35, Neg. LLF: 23413958.442471035
Iteration: 4, Func. Count: 46, Neg. LLF: 77.1904856202336
Iteration: 5, Func. Count: 56, Neg. LLF: 77.14320040819014
Iteration: 6, Func. Count: 67, Neg. LLF: 78.35323379988841
Iteration: 7, Func. Count: 79, Neg. LLF: 78.19481718247494
Iteration: 8, Func. Count: 90, Neg. LLF: 76.85284464200221
Iteration: 9, Func. Count: 101, Neg. LLF: 76.67955242826886
Iteration: 10, Func. Count: 111, Neg. LLF: 76.67413798786625
Iteration: 11, Func. Count: 121, Neg. LLF: 76.67319561185407
Iteration: 12, Func. Count: 131, Neg. LLF: 76.67295836315283
Iteration: 13, Func. Count: 141, Neg. LLF: 76.67285040348632
Iteration: 14, Func. Count: 151, Neg. LLF: 76.67284168850773
Iteration: 15, Func. Count: 160, Neg. LLF: 76.67284174175452
Optimization terminated successfully (Exit mode 0)
Current function value: 76.67284168850773
Iterations: 15
Function evaluations: 160
Gradient evaluations: 15
Iteration: 1, Func. Count: 12, Neg. LLF: 86.65486182216964
Iteration: 2, Func. Count: 25, Neg. LLF: 4748717.556960374
Iteration: 3, Func. Count: 37, Neg. LLF: 27172418.5207562
Iteration: 4, Func. Count: 49, Neg. LLF: 77.20900717477384
Iteration: 5, Func. Count: 60, Neg. LLF: 77.4141389020059
Iteration: 6, Func. Count: 72, Neg. LLF: 76.71417780490137
Iteration: 7, Func. Count: 83, Neg. LLF: 76.6867548542411
Iteration: 8, Func. Count: 94, Neg. LLF: 76.67923171503428
Iteration: 9, Func. Count: 105, Neg. LLF: 76.67338442297235
Iteration: 10, Func. Count: 116, Neg. LLF: 76.6730539711197
Iteration: 11, Func. Count: 127, Neg. LLF: 76.67285015540227
Iteration: 12, Func. Count: 138, Neg. LLF: 76.67284183911067
Iteration: 13, Func. Count: 148, Neg. LLF: 76.67284189065536
Optimization terminated successfully (Exit mode 0)
Current function value: 76.67284183911067
Iterations: 13
Function evaluations: 148
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 139.37904280281975
Iteration: 2, Func. Count: 21, Neg. LLF: 130.28752625406176
Iteration: 3, Func. Count: 31, Neg. LLF: 106.20819217260896
Iteration: 4, Func. Count: 40, Neg. LLF: 77.2767531484836
Iteration: 5, Func. Count: 48, Neg. LLF: 77.3096929755468
Iteration: 6, Func. Count: 57, Neg. LLF: 83.71022906741523
Iteration: 7, Func. Count: 67, Neg. LLF: 77.31081385181913
Iteration: 8, Func. Count: 76, Neg. LLF: 76.91647172562607
Iteration: 9, Func. Count: 84, Neg. LLF: 76.91519014128058
Iteration: 10, Func. Count: 92, Neg. LLF: 76.91504381991571
Iteration: 11, Func. Count: 100, Neg. LLF: 76.91496221303476
Iteration: 12, Func. Count: 107, Neg. LLF: 76.91496225422401
Optimization terminated successfully (Exit mode 0)
Current function value: 76.91496221303476
Iterations: 12
Function evaluations: 107
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 132.66243128056905
Iteration: 2, Func. Count: 20, Neg. LLF: 112.49485551719799
Iteration: 3, Func. Count: 31, Neg. LLF: 93.10854726318968
Iteration: 4, Func. Count: 42, Neg. LLF: 77.25017455108232
Iteration: 5, Func. Count: 51, Neg. LLF: 76.96398906562408
Iteration: 6, Func. Count: 60, Neg. LLF: 87.87315459616343
Iteration: 7, Func. Count: 71, Neg. LLF: 76.92124162120786
Iteration: 8, Func. Count: 80, Neg. LLF: 76.91797733960594
Iteration: 9, Func. Count: 89, Neg. LLF: 76.91509132899638
Iteration: 10, Func. Count: 98, Neg. LLF: 76.91501424227553
Iteration: 11, Func. Count: 107, Neg. LLF: 76.9149639536818
Iteration: 12, Func. Count: 116, Neg. LLF: 76.91496242623111
Iteration: 13, Func. Count: 124, Neg. LLF: 76.91496243017379
Optimization terminated successfully (Exit mode 0)
Current function value: 76.91496242623111
Iterations: 13
Function evaluations: 124
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 82.24500691922792
Iteration: 2, Func. Count: 22, Neg. LLF: 102.59012457969637
Iteration: 3, Func. Count: 34, Neg. LLF: 77.48782140125107
Iteration: 4, Func. Count: 45, Neg. LLF: 81.561960770222
Iteration: 5, Func. Count: 56, Neg. LLF: 77.16004772580831
Iteration: 6, Func. Count: 67, Neg. LLF: 76.70209367861902
Iteration: 7, Func. Count: 77, Neg. LLF: 76.67300777953248
Iteration: 8, Func. Count: 87, Neg. LLF: 76.67286677174222
Iteration: 9, Func. Count: 97, Neg. LLF: 76.67284230757582
Iteration: 10, Func. Count: 107, Neg. LLF: 76.67284168664105
Optimization terminated successfully (Exit mode 0)
Current function value: 76.67284168664105
Iterations: 10
Function evaluations: 107
Gradient evaluations: 10
Iteration: 1, Func. Count: 12, Neg. LLF: 83.91542879890905
Iteration: 2, Func. Count: 25, Neg. LLF: 2091491.2157806773
Iteration: 3, Func. Count: 38, Neg. LLF: 23060296.673359927
Iteration: 4, Func. Count: 50, Neg. LLF: 77.19036444320126
Iteration: 5, Func. Count: 61, Neg. LLF: 77.11202490096969
Iteration: 6, Func. Count: 73, Neg. LLF: 79.35279154291865
Iteration: 7, Func. Count: 86, Neg. LLF: 77.17661042583337
Iteration: 8, Func. Count: 98, Neg. LLF: 76.7199300732912
Iteration: 9, Func. Count: 109, Neg. LLF: 76.68290247722192
Iteration: 10, Func. Count: 120, Neg. LLF: 76.67398152159421
Iteration: 11, Func. Count: 131, Neg. LLF: 76.67311500509012
Iteration: 12, Func. Count: 142, Neg. LLF: 76.67293755943666
Iteration: 13, Func. Count: 153, Neg. LLF: 76.67284175194995
Iteration: 14, Func. Count: 163, Neg. LLF: 76.67284180517777
Optimization terminated successfully (Exit mode 0)
Current function value: 76.67284175194995
Iterations: 14
Function evaluations: 163
Gradient evaluations: 14
Iteration: 1, Func. Count: 13, Neg. LLF: 87.21347514048202
Iteration: 2, Func. Count: 27, Neg. LLF: 4567224.766148611
Iteration: 3, Func. Count: 40, Neg. LLF: 27291930.340379715
Iteration: 4, Func. Count: 53, Neg. LLF: 77.20596270617979
Iteration: 5, Func. Count: 65, Neg. LLF: 77.37317669018424
Iteration: 6, Func. Count: 78, Neg. LLF: 76.70987020187363
Iteration: 7, Func. Count: 90, Neg. LLF: 76.6795871510338
Iteration: 8, Func. Count: 102, Neg. LLF: 76.68114692692073
Iteration: 9, Func. Count: 115, Neg. LLF: 76.6733899804302
Iteration: 10, Func. Count: 127, Neg. LLF: 76.67300249619841
Iteration: 11, Func. Count: 139, Neg. LLF: 76.67284198411099
Iteration: 12, Func. Count: 150, Neg. LLF: 76.67284203566508
Optimization terminated successfully (Exit mode 0)
Current function value: 76.67284198411099
Iterations: 12
Function evaluations: 150
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 144.63110601854544
Iteration: 2, Func. Count: 23, Neg. LLF: 130.68597195039436
Iteration: 3, Func. Count: 34, Neg. LLF: 130.08113290780662
Iteration: 4, Func. Count: 44, Neg. LLF: 77.29816579736904
Iteration: 5, Func. Count: 53, Neg. LLF: 77.13190678965879
Iteration: 6, Func. Count: 63, Neg. LLF: 84.67098369781849
Iteration: 7, Func. Count: 74, Neg. LLF: 77.03244631152134
Iteration: 8, Func. Count: 84, Neg. LLF: 76.91705339997837
Iteration: 9, Func. Count: 93, Neg. LLF: 76.91533129672263
Iteration: 10, Func. Count: 102, Neg. LLF: 76.91505848611213
Iteration: 11, Func. Count: 111, Neg. LLF: 76.91496226437852
Iteration: 12, Func. Count: 119, Neg. LLF: 76.91496229296813
Optimization terminated successfully (Exit mode 0)
Current function value: 76.91496226437852
Iterations: 12
Function evaluations: 119
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 133.16016987192663
Iteration: 2, Func. Count: 22, Neg. LLF: 112.48685506981145
Iteration: 3, Func. Count: 34, Neg. LLF: 92.7377938943813
Iteration: 4, Func. Count: 46, Neg. LLF: 77.24913720003993
Iteration: 5, Func. Count: 56, Neg. LLF: 76.96372086903597
Iteration: 6, Func. Count: 66, Neg. LLF: 88.15114035981578
Iteration: 7, Func. Count: 78, Neg. LLF: 76.9210931154324
Iteration: 8, Func. Count: 88, Neg. LLF: 76.91790558525484
Iteration: 9, Func. Count: 98, Neg. LLF: 76.9150843293508
Iteration: 10, Func. Count: 108, Neg. LLF: 76.91501348634623
Iteration: 11, Func. Count: 118, Neg. LLF: 76.91496321277333
Iteration: 12, Func. Count: 128, Neg. LLF: 76.914962278696
Optimization terminated successfully (Exit mode 0)
Current function value: 76.914962278696
Iterations: 12
Function evaluations: 128
Gradient evaluations: 12
Iteration: 1, Func. Count: 12, Neg. LLF: 82.181143076294
Iteration: 2, Func. Count: 24, Neg. LLF: 103.56029035440152
Iteration: 3, Func. Count: 37, Neg. LLF: 77.64043643210357
Iteration: 4, Func. Count: 49, Neg. LLF: 80.03807181676615
Iteration: 5, Func. Count: 61, Neg. LLF: 77.10366039537368
Iteration: 6, Func. Count: 73, Neg. LLF: 76.69330281321282
Iteration: 7, Func. Count: 84, Neg. LLF: 76.67307965253359
Iteration: 8, Func. Count: 95, Neg. LLF: 76.67287684680183
Iteration: 9, Func. Count: 106, Neg. LLF: 76.67284309639064
Iteration: 10, Func. Count: 117, Neg. LLF: 76.67284169220325
Iteration: 11, Func. Count: 127, Neg. LLF: 76.67284169220589
Optimization terminated successfully (Exit mode 0)
Current function value: 76.67284169220325
Iterations: 11
Function evaluations: 127
Gradient evaluations: 11
Iteration: 1, Func. Count: 13, Neg. LLF: 84.18673877070687
Iteration: 2, Func. Count: 27, Neg. LLF: 2112830.3810116863
Iteration: 3, Func. Count: 41, Neg. LLF: 23033795.523735568
Iteration: 4, Func. Count: 54, Neg. LLF: 77.1904790446405
Iteration: 5, Func. Count: 66, Neg. LLF: 77.1065331323741
Iteration: 6, Func. Count: 79, Neg. LLF: 79.63061773840586
Iteration: 7, Func. Count: 93, Neg. LLF: 77.09427158180854
Iteration: 8, Func. Count: 106, Neg. LLF: 76.7075434019739
Iteration: 9, Func. Count: 118, Neg. LLF: 76.68021198213616
Iteration: 10, Func. Count: 130, Neg. LLF: 76.67381555020465
Iteration: 11, Func. Count: 142, Neg. LLF: 76.67311777709192
Iteration: 12, Func. Count: 154, Neg. LLF: 76.67292558950122
Iteration: 13, Func. Count: 166, Neg. LLF: 76.67284187263115
Iteration: 14, Func. Count: 177, Neg. LLF: 76.67284192584849
Optimization terminated successfully (Exit mode 0)
Current function value: 76.67284187263115
Iterations: 14
Function evaluations: 177
Gradient evaluations: 14
Iteration: 1, Func. Count: 14, Neg. LLF: 87.3691364373048
Iteration: 2, Func. Count: 29, Neg. LLF: 4538010.81520846
Iteration: 3, Func. Count: 43, Neg. LLF: 27303927.015208106
Iteration: 4, Func. Count: 57, Neg. LLF: 77.20536632522187
Iteration: 5, Func. Count: 70, Neg. LLF: 77.36057479384496
Iteration: 6, Func. Count: 84, Neg. LLF: 76.7096519095209
Iteration: 7, Func. Count: 97, Neg. LLF: 76.67912209649347
Iteration: 8, Func. Count: 110, Neg. LLF: 76.68102852301892
Iteration: 9, Func. Count: 124, Neg. LLF: 76.67339122596812
Iteration: 10, Func. Count: 137, Neg. LLF: 76.67299874025163
Iteration: 11, Func. Count: 150, Neg. LLF: 76.67284197512294
Iteration: 12, Func. Count: 162, Neg. LLF: 76.67284202667747
Optimization terminated successfully (Exit mode 0)
Current function value: 76.67284197512294
Iterations: 12
Function evaluations: 162
Gradient evaluations: 12
Iteration: 1, Func. Count: 7, Neg. LLF: 117.9227304879972
Iteration: 2, Func. Count: 17, Neg. LLF: 121.63191043379943
Iteration: 3, Func. Count: 25, Neg. LLF: 92.26561296223261
Iteration: 4, Func. Count: 33, Neg. LLF: 77.55643260092809
Iteration: 5, Func. Count: 40, Neg. LLF: 79.34183492358365
Iteration: 6, Func. Count: 47, Neg. LLF: 77.29105626707795
Iteration: 7, Func. Count: 53, Neg. LLF: 77.2879652103147
Iteration: 8, Func. Count: 59, Neg. LLF: 77.28808125183342
Iteration: 9, Func. Count: 66, Neg. LLF: 77.28717997019552
Iteration: 10, Func. Count: 72, Neg. LLF: 77.28710844704106
Iteration: 11, Func. Count: 77, Neg. LLF: 77.28710844705171
Optimization terminated successfully (Exit mode 0)
Current function value: 77.28710844704106
Iterations: 11
Function evaluations: 77
Gradient evaluations: 11
Iteration: 1, Func. Count: 8, Neg. LLF: 79.75003581876011
Iteration: 2, Func. Count: 16, Neg. LLF: 82.63354268931789
Iteration: 3, Func. Count: 25, Neg. LLF: 84.5082115016429
Iteration: 4, Func. Count: 33, Neg. LLF: 77.78435527035066
Iteration: 5, Func. Count: 41, Neg. LLF: 106.45242466646802
Iteration: 6, Func. Count: 49, Neg. LLF: 77.28799100887804
Iteration: 7, Func. Count: 56, Neg. LLF: 77.29198099770768
Iteration: 8, Func. Count: 64, Neg. LLF: 77.28719480380882
Iteration: 9, Func. Count: 71, Neg. LLF: 77.28710906233272
Iteration: 10, Func. Count: 78, Neg. LLF: 77.28710843816673
Optimization terminated successfully (Exit mode 0)
Current function value: 77.28710843816673
Iterations: 10
Function evaluations: 78
Gradient evaluations: 10
Iteration: 1, Func. Count: 9, Neg. LLF: 79.48769836867753
Iteration: 2, Func. Count: 18, Neg. LLF: 79.1422728994068
Iteration: 3, Func. Count: 27, Neg. LLF: 100.35986207917378
Iteration: 4, Func. Count: 37, Neg. LLF: 130.78407583973868
Iteration: 5, Func. Count: 46, Neg. LLF: 77.54921620162462
Iteration: 6, Func. Count: 54, Neg. LLF: 77.58034786476581
Iteration: 7, Func. Count: 63, Neg. LLF: 77.45183875779567
Iteration: 8, Func. Count: 72, Neg. LLF: 77.28735090256016
Iteration: 9, Func. Count: 80, Neg. LLF: 77.28712887089111
Iteration: 10, Func. Count: 88, Neg. LLF: 77.28710903374241
Iteration: 11, Func. Count: 95, Neg. LLF: 77.2871090577362
Optimization terminated successfully (Exit mode 0)
Current function value: 77.28710903374241
Iterations: 11
Function evaluations: 95
Gradient evaluations: 11
Iteration: 1, Func. Count: 10, Neg. LLF: 79.42231835395627
Iteration: 2, Func. Count: 20, Neg. LLF: 79.8499775077372
Iteration: 3, Func. Count: 30, Neg. LLF: 79.66662226227035
Iteration: 4, Func. Count: 40, Neg. LLF: 427076.45172952546
Iteration: 5, Func. Count: 50, Neg. LLF: 171.95496478498995
Iteration: 6, Func. Count: 61, Neg. LLF: 77.298116622276
Iteration: 7, Func. Count: 70, Neg. LLF: 77.2888703250044
Iteration: 8, Func. Count: 79, Neg. LLF: 77.28711355316014
Iteration: 9, Func. Count: 88, Neg. LLF: 77.28710856531148
Iteration: 10, Func. Count: 96, Neg. LLF: 77.28710859886172
Optimization terminated successfully (Exit mode 0)
Current function value: 77.28710856531148
Iterations: 10
Function evaluations: 96
Gradient evaluations: 10
Iteration: 1, Func. Count: 11, Neg. LLF: 83.51049304796291
Iteration: 2, Func. Count: 23, Neg. LLF: 78.00593635180849
Iteration: 3, Func. Count: 33, Neg. LLF: 80.158820769825
Iteration: 4, Func. Count: 44, Neg. LLF: 140.893343717112
Iteration: 5, Func. Count: 55, Neg. LLF: 124.32359657103441
Iteration: 6, Func. Count: 66, Neg. LLF: 77.28846692316898
Iteration: 7, Func. Count: 76, Neg. LLF: 77.2891603042132
Iteration: 8, Func. Count: 87, Neg. LLF: 77.28710866503015
Iteration: 9, Func. Count: 96, Neg. LLF: 77.28710868957991
Optimization terminated successfully (Exit mode 0)
Current function value: 77.28710866503015
Iterations: 9
Function evaluations: 96
Gradient evaluations: 9
Iteration: 1, Func. Count: 8, Neg. LLF: 117.10472860741848
Iteration: 2, Func. Count: 19, Neg. LLF: 145.51284798364284
Iteration: 3, Func. Count: 27, Neg. LLF: 10464.677562245424
Iteration: 4, Func. Count: 35, Neg. LLF: 77.27149135973838
Iteration: 5, Func. Count: 43, Neg. LLF: 76.80454946173094
Iteration: 6, Func. Count: 50, Neg. LLF: 76.7166477310383
Iteration: 7, Func. Count: 57, Neg. LLF: 77.5528838377105
Iteration: 8, Func. Count: 66, Neg. LLF: 76.68665951043587
Iteration: 9, Func. Count: 73, Neg. LLF: 76.68345827245578
Iteration: 10, Func. Count: 80, Neg. LLF: 76.68192433069544
Iteration: 11, Func. Count: 87, Neg. LLF: 76.68178051747046
Iteration: 12, Func. Count: 93, Neg. LLF: 76.68178043283373
Optimization terminated successfully (Exit mode 0)
Current function value: 76.68178051747046
Iterations: 12
Function evaluations: 93
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 78.70951789372019
Iteration: 2, Func. Count: 19, Neg. LLF: 41238365.89830368
Iteration: 3, Func. Count: 28, Neg. LLF: 8977638.498003552
Iteration: 4, Func. Count: 38, Neg. LLF: 77.27103332213012
Iteration: 5, Func. Count: 46, Neg. LLF: 78.14240610025597
Iteration: 6, Func. Count: 55, Neg. LLF: 78.57171041905758
Iteration: 7, Func. Count: 64, Neg. LLF: 77.87148736424535
Iteration: 8, Func. Count: 74, Neg. LLF: 76.69112402837165
Iteration: 9, Func. Count: 82, Neg. LLF: 76.68301416267553
Iteration: 10, Func. Count: 90, Neg. LLF: 76.68195826355165
Iteration: 11, Func. Count: 98, Neg. LLF: 76.68181078875105
Iteration: 12, Func. Count: 106, Neg. LLF: 76.68178158757226
Iteration: 13, Func. Count: 114, Neg. LLF: 76.68178036979617
Iteration: 14, Func. Count: 121, Neg. LLF: 76.68178038295137
Optimization terminated successfully (Exit mode 0)
Current function value: 76.68178036979617
Iterations: 14
Function evaluations: 121
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 79.113425982952
Iteration: 2, Func. Count: 21, Neg. LLF: 30822347.19323459
Iteration: 3, Func. Count: 31, Neg. LLF: 5973371.752102357
Iteration: 4, Func. Count: 41, Neg. LLF: 77.24305131055333
Iteration: 5, Func. Count: 50, Neg. LLF: 78.07636560859879
Iteration: 6, Func. Count: 60, Neg. LLF: 77.96142517172225
Iteration: 7, Func. Count: 70, Neg. LLF: 77.63825722401079
Iteration: 8, Func. Count: 81, Neg. LLF: 76.70291165827723
Iteration: 9, Func. Count: 90, Neg. LLF: 76.68250713053162
Iteration: 10, Func. Count: 99, Neg. LLF: 76.68194211149576
Iteration: 11, Func. Count: 108, Neg. LLF: 76.68180648978712
Iteration: 12, Func. Count: 117, Neg. LLF: 76.68178046427951
Iteration: 13, Func. Count: 125, Neg. LLF: 76.68178047486228
Optimization terminated successfully (Exit mode 0)
Current function value: 76.68178046427951
Iterations: 13
Function evaluations: 125
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 81.44574422978424
Iteration: 2, Func. Count: 23, Neg. LLF: 21166201.247847695
Iteration: 3, Func. Count: 34, Neg. LLF: 91.18260148973157
Iteration: 4, Func. Count: 45, Neg. LLF: 77.20042833641051
Iteration: 5, Func. Count: 55, Neg. LLF: 78.27578516686594
Iteration: 6, Func. Count: 66, Neg. LLF: 76.92943706197654
Iteration: 7, Func. Count: 77, Neg. LLF: 78.05675109794387
Iteration: 8, Func. Count: 89, Neg. LLF: 76.68772290042122
Iteration: 9, Func. Count: 99, Neg. LLF: 76.68237167146532
Iteration: 10, Func. Count: 109, Neg. LLF: 76.68195329757859
Iteration: 11, Func. Count: 119, Neg. LLF: 76.68178294432701
Iteration: 12, Func. Count: 129, Neg. LLF: 76.68178039945876
Iteration: 13, Func. Count: 138, Neg. LLF: 76.68178044132638
Optimization terminated successfully (Exit mode 0)
Current function value: 76.68178039945876
Iterations: 13
Function evaluations: 138
Gradient evaluations: 13
Iteration: 1, Func. Count: 12, Neg. LLF: 82.41993903256508
Iteration: 2, Func. Count: 26, Neg. LLF: 20637047.570443798
Iteration: 3, Func. Count: 38, Neg. LLF: 78.63304926526213
Iteration: 4, Func. Count: 50, Neg. LLF: 77.94259520323467
Iteration: 5, Func. Count: 62, Neg. LLF: 77.839069062534
Iteration: 6, Func. Count: 74, Neg. LLF: 76.6965432994724
Iteration: 7, Func. Count: 85, Neg. LLF: 78.00707421135476
Iteration: 8, Func. Count: 98, Neg. LLF: 76.6831302366121
Iteration: 9, Func. Count: 109, Neg. LLF: 76.68193975706431
Iteration: 10, Func. Count: 120, Neg. LLF: 76.68185017515297
Iteration: 11, Func. Count: 131, Neg. LLF: 76.68178133634878
Iteration: 12, Func. Count: 142, Neg. LLF: 76.68178038673653
Optimization terminated successfully (Exit mode 0)
Current function value: 76.68178038673653
Iterations: 12
Function evaluations: 142
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 117.10384230003557
Iteration: 2, Func. Count: 21, Neg. LLF: 142.8510604957891
Iteration: 3, Func. Count: 30, Neg. LLF: 8961.949684365145
Iteration: 4, Func. Count: 39, Neg. LLF: 77.27183194084144
Iteration: 5, Func. Count: 48, Neg. LLF: 76.8016587742965
Iteration: 6, Func. Count: 56, Neg. LLF: 76.71629473277983
Iteration: 7, Func. Count: 64, Neg. LLF: 80.0825607444931
Iteration: 8, Func. Count: 74, Neg. LLF: 76.67861984672471
Iteration: 9, Func. Count: 82, Neg. LLF: 76.6741911566811
Iteration: 10, Func. Count: 90, Neg. LLF: 76.67318917818577
Iteration: 11, Func. Count: 98, Neg. LLF: 76.67300798564749
Iteration: 12, Func. Count: 106, Neg. LLF: 76.67299339380352
Iteration: 13, Func. Count: 113, Neg. LLF: 76.67299338277279
Optimization terminated successfully (Exit mode 0)
Current function value: 76.67299339380352
Iterations: 13
Function evaluations: 113
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 78.56019234483456
Iteration: 2, Func. Count: 21, Neg. LLF: 41711647.74947802
Iteration: 3, Func. Count: 31, Neg. LLF: 8972360.387927284
Iteration: 4, Func. Count: 42, Neg. LLF: 77.28083256074868
Iteration: 5, Func. Count: 51, Neg. LLF: 78.27941487322511
Iteration: 6, Func. Count: 61, Neg. LLF: 78.93907747969227
Iteration: 7, Func. Count: 71, Neg. LLF: 82.81373996722066
Iteration: 8, Func. Count: 82, Neg. LLF: 76.69530637001661
Iteration: 9, Func. Count: 91, Neg. LLF: 76.67594263067818
Iteration: 10, Func. Count: 100, Neg. LLF: 76.67320237806294
Iteration: 11, Func. Count: 109, Neg. LLF: 76.672995724867
Iteration: 12, Func. Count: 118, Neg. LLF: 76.67299321387613
Iteration: 13, Func. Count: 126, Neg. LLF: 76.67299322912598
Optimization terminated successfully (Exit mode 0)
Current function value: 76.67299321387613
Iterations: 13
Function evaluations: 126
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 78.92501616428233
Iteration: 2, Func. Count: 23, Neg. LLF: 31096263.77546428
Iteration: 3, Func. Count: 34, Neg. LLF: 7608506.001055464
Iteration: 4, Func. Count: 45, Neg. LLF: 77.24757648649607
Iteration: 5, Func. Count: 55, Neg. LLF: 78.30052625250318
Iteration: 6, Func. Count: 66, Neg. LLF: 78.10597493827235
Iteration: 7, Func. Count: 77, Neg. LLF: 81.10495444906428
Iteration: 8, Func. Count: 89, Neg. LLF: 76.71716506864068
Iteration: 9, Func. Count: 99, Neg. LLF: 76.69122479105064
Iteration: 10, Func. Count: 109, Neg. LLF: 76.67410661321549
Iteration: 11, Func. Count: 119, Neg. LLF: 76.67310582624765
Iteration: 12, Func. Count: 129, Neg. LLF: 76.67300935806557
Iteration: 13, Func. Count: 139, Neg. LLF: 76.67299440857356
Iteration: 14, Func. Count: 149, Neg. LLF: 76.67299321389237
Iteration: 15, Func. Count: 158, Neg. LLF: 76.67299322568707
Optimization terminated successfully (Exit mode 0)
Current function value: 76.67299321389237
Iterations: 15
Function evaluations: 158
Gradient evaluations: 15
Iteration: 1, Func. Count: 12, Neg. LLF: 80.37775094370112
Iteration: 2, Func. Count: 25, Neg. LLF: 22658647.356663663
Iteration: 3, Func. Count: 37, Neg. LLF: 104.15203321929499
Iteration: 4, Func. Count: 49, Neg. LLF: 77.20984622824585
Iteration: 5, Func. Count: 60, Neg. LLF: 79.33939608970823
Iteration: 6, Func. Count: 72, Neg. LLF: 77.12349483083968
Iteration: 7, Func. Count: 84, Neg. LLF: 82.70282050602937
Iteration: 8, Func. Count: 97, Neg. LLF: 76.6974056808783
Iteration: 9, Func. Count: 108, Neg. LLF: 76.69428916125459
Iteration: 10, Func. Count: 120, Neg. LLF: 76.67312523350256
Iteration: 11, Func. Count: 131, Neg. LLF: 76.67301813239266
Iteration: 12, Func. Count: 142, Neg. LLF: 76.67299353805045
Iteration: 13, Func. Count: 152, Neg. LLF: 76.67299358051278
Optimization terminated successfully (Exit mode 0)
Current function value: 76.67299353805045
Iterations: 13
Function evaluations: 152
Gradient evaluations: 13
Iteration: 1, Func. Count: 13, Neg. LLF: 82.18359130738449
Iteration: 2, Func. Count: 28, Neg. LLF: 20794893.30867669
Iteration: 3, Func. Count: 41, Neg. LLF: 79.17645192517088
Iteration: 4, Func. Count: 54, Neg. LLF: 77.66080722108099
Iteration: 5, Func. Count: 67, Neg. LLF: 77.53468566038623
Iteration: 6, Func. Count: 80, Neg. LLF: 76.70326296297615
Iteration: 7, Func. Count: 92, Neg. LLF: 85.16458306929903
Iteration: 8, Func. Count: 106, Neg. LLF: 76.67406173870621
Iteration: 9, Func. Count: 118, Neg. LLF: 76.67327981020586
Iteration: 10, Func. Count: 130, Neg. LLF: 76.673089900418
Iteration: 11, Func. Count: 142, Neg. LLF: 76.67300071515399
Iteration: 12, Func. Count: 154, Neg. LLF: 76.67299357806992
Iteration: 13, Func. Count: 165, Neg. LLF: 76.67299360682321
Optimization terminated successfully (Exit mode 0)
Current function value: 76.67299357806992
Iterations: 13
Function evaluations: 165
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 116.3932947361057
Iteration: 2, Func. Count: 23, Neg. LLF: 116.37425307216043
Iteration: 3, Func. Count: 33, Neg. LLF: 19246842.391541112
Iteration: 4, Func. Count: 43, Neg. LLF: 76.46098336849717
Iteration: 5, Func. Count: 52, Neg. LLF: 76.51923392693351
Iteration: 6, Func. Count: 62, Neg. LLF: 76.34150366478973
Iteration: 7, Func. Count: 72, Neg. LLF: 79.00876503608073
Iteration: 8, Func. Count: 82, Neg. LLF: 76.2181587018259
Iteration: 9, Func. Count: 91, Neg. LLF: 76.21696008457
Iteration: 10, Func. Count: 100, Neg. LLF: 76.21648372873499
Iteration: 11, Func. Count: 109, Neg. LLF: 76.21642778796019
Iteration: 12, Func. Count: 117, Neg. LLF: 76.21642775310197
Optimization terminated successfully (Exit mode 0)
Current function value: 76.21642778796019
Iterations: 12
Function evaluations: 117
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 80.36575843751726
Iteration: 2, Func. Count: 24, Neg. LLF: 27308470.92790249
Iteration: 3, Func. Count: 35, Neg. LLF: 84.21867808661625
Iteration: 4, Func. Count: 46, Neg. LLF: 77.26051570217997
Iteration: 5, Func. Count: 57, Neg. LLF: 77.08364390011228
Iteration: 6, Func. Count: 68, Neg. LLF: 76.23211917402823
Iteration: 7, Func. Count: 78, Neg. LLF: 81.87690318967647
Iteration: 8, Func. Count: 90, Neg. LLF: 76.21770053170296
Iteration: 9, Func. Count: 100, Neg. LLF: 76.21652066459473
Iteration: 10, Func. Count: 110, Neg. LLF: 76.21644962266035
Iteration: 11, Func. Count: 120, Neg. LLF: 76.21643470564271
Iteration: 12, Func. Count: 130, Neg. LLF: 76.21642815992882
Iteration: 13, Func. Count: 140, Neg. LLF: 76.21642751671551
Optimization terminated successfully (Exit mode 0)
Current function value: 76.21642751671551
Iterations: 13
Function evaluations: 140
Gradient evaluations: 13
Iteration: 1, Func. Count: 12, Neg. LLF: 80.79755465227484
Iteration: 2, Func. Count: 26, Neg. LLF: 26906795.88436443
Iteration: 3, Func. Count: 38, Neg. LLF: 100.35002041113468
Iteration: 4, Func. Count: 50, Neg. LLF: 77.23912770284255
Iteration: 5, Func. Count: 61, Neg. LLF: 76.75641200062847
Iteration: 6, Func. Count: 72, Neg. LLF: 76.33244610157733
Iteration: 7, Func. Count: 83, Neg. LLF: 88.66458588232305
Iteration: 8, Func. Count: 96, Neg. LLF: 76.24670486804979
Iteration: 9, Func. Count: 107, Neg. LLF: 76.2314952157629
Iteration: 10, Func. Count: 118, Neg. LLF: 76.21874192154422
Iteration: 11, Func. Count: 129, Neg. LLF: 76.21681068555247
Iteration: 12, Func. Count: 140, Neg. LLF: 76.21644426905972
Iteration: 13, Func. Count: 151, Neg. LLF: 76.2164299916865
Iteration: 14, Func. Count: 162, Neg. LLF: 76.2164275245715
Iteration: 15, Func. Count: 172, Neg. LLF: 76.21642753999402
Optimization terminated successfully (Exit mode 0)
Current function value: 76.2164275245715
Iterations: 15
Function evaluations: 172
Gradient evaluations: 15
Iteration: 1, Func. Count: 13, Neg. LLF: 81.12392803462295
Iteration: 2, Func. Count: 28, Neg. LLF: 16054073.678133754
Iteration: 3, Func. Count: 41, Neg. LLF: 85.75433756937221
Iteration: 4, Func. Count: 54, Neg. LLF: 77.20813615871037
Iteration: 5, Func. Count: 66, Neg. LLF: 76.61241619590136
Iteration: 6, Func. Count: 78, Neg. LLF: 76.45677468823627
Iteration: 7, Func. Count: 90, Neg. LLF: 92.08938580787414
Iteration: 8, Func. Count: 104, Neg. LLF: 76.26005701298524
Iteration: 9, Func. Count: 116, Neg. LLF: 76.23149793715099
Iteration: 10, Func. Count: 128, Neg. LLF: 76.22032574070244
Iteration: 11, Func. Count: 140, Neg. LLF: 76.21767684150575
Iteration: 12, Func. Count: 152, Neg. LLF: 76.21651140279043
Iteration: 13, Func. Count: 164, Neg. LLF: 76.21643699095578
Iteration: 14, Func. Count: 176, Neg. LLF: 76.21642765371067
Iteration: 15, Func. Count: 187, Neg. LLF: 76.21642769849075
Optimization terminated successfully (Exit mode 0)
Current function value: 76.21642765371067
Iterations: 15
Function evaluations: 187
Gradient evaluations: 15
Iteration: 1, Func. Count: 14, Neg. LLF: 81.01093491525545
Iteration: 2, Func. Count: 30, Neg. LLF: 16169150.20698409
Iteration: 3, Func. Count: 44, Neg. LLF: 86.82663034020497
Iteration: 4, Func. Count: 58, Neg. LLF: 76.86168119963466
Iteration: 5, Func. Count: 71, Neg. LLF: 76.68455769205646
Iteration: 6, Func. Count: 85, Neg. LLF: 76.24805982658144
Iteration: 7, Func. Count: 98, Neg. LLF: 88.88355664438134
Iteration: 8, Func. Count: 113, Neg. LLF: 76.21818212564678
Iteration: 9, Func. Count: 126, Neg. LLF: 76.21669377478915
Iteration: 10, Func. Count: 139, Neg. LLF: 76.21648421981958
Iteration: 11, Func. Count: 152, Neg. LLF: 76.21645377655544
Iteration: 12, Func. Count: 165, Neg. LLF: 76.21642797132819
Iteration: 13, Func. Count: 177, Neg. LLF: 76.21642801826306
Optimization terminated successfully (Exit mode 0)
Current function value: 76.21642797132819
Iterations: 13
Function evaluations: 177
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 114.93062723536384
Iteration: 2, Func. Count: 25, Neg. LLF: 119.35138464577076
Iteration: 3, Func. Count: 37, Neg. LLF: 15575860.191476703
Iteration: 4, Func. Count: 48, Neg. LLF: 76.518473738675
Iteration: 5, Func. Count: 58, Neg. LLF: 76.29209839577277
Iteration: 6, Func. Count: 68, Neg. LLF: 80.19768411087863
Iteration: 7, Func. Count: 80, Neg. LLF: 76.2175329974836
Iteration: 8, Func. Count: 90, Neg. LLF: 76.21646730130836
Iteration: 9, Func. Count: 100, Neg. LLF: 76.21643877285699
Iteration: 10, Func. Count: 110, Neg. LLF: 76.21643055329326
Iteration: 11, Func. Count: 120, Neg. LLF: 76.21642755807588
Iteration: 12, Func. Count: 129, Neg. LLF: 76.21642758790952
Optimization terminated successfully (Exit mode 0)
Current function value: 76.21642755807588
Iterations: 12
Function evaluations: 129
Gradient evaluations: 12
Iteration: 1, Func. Count: 12, Neg. LLF: 80.28531391278062
Iteration: 2, Func. Count: 26, Neg. LLF: 27470865.866211362
Iteration: 3, Func. Count: 38, Neg. LLF: 84.71893602138725
Iteration: 4, Func. Count: 50, Neg. LLF: 77.258016999403
Iteration: 5, Func. Count: 62, Neg. LLF: 77.03604133374354
Iteration: 6, Func. Count: 74, Neg. LLF: 76.23265207373787
Iteration: 7, Func. Count: 85, Neg. LLF: 81.41351743793234
Iteration: 8, Func. Count: 98, Neg. LLF: 76.21780041936069
Iteration: 9, Func. Count: 109, Neg. LLF: 76.216538698906
Iteration: 10, Func. Count: 120, Neg. LLF: 76.21645744644313
Iteration: 11, Func. Count: 131, Neg. LLF: 76.21643628974242
Iteration: 12, Func. Count: 142, Neg. LLF: 76.21642830569178
Iteration: 13, Func. Count: 153, Neg. LLF: 76.21642751869821
Optimization terminated successfully (Exit mode 0)
Current function value: 76.21642751869821
Iterations: 13
Function evaluations: 153
Gradient evaluations: 13
Iteration: 1, Func. Count: 13, Neg. LLF: 80.69858894289595
Iteration: 2, Func. Count: 28, Neg. LLF: 26980927.939616796
Iteration: 3, Func. Count: 41, Neg. LLF: 101.6375270921462
Iteration: 4, Func. Count: 54, Neg. LLF: 77.24249240705656
Iteration: 5, Func. Count: 66, Neg. LLF: 76.78092414209216
Iteration: 6, Func. Count: 78, Neg. LLF: 76.33103303876729
Iteration: 7, Func. Count: 90, Neg. LLF: 87.94361918653753
Iteration: 8, Func. Count: 104, Neg. LLF: 76.2479812443498
Iteration: 9, Func. Count: 116, Neg. LLF: 76.23234422225127
Iteration: 10, Func. Count: 128, Neg. LLF: 76.21851367998657
Iteration: 11, Func. Count: 140, Neg. LLF: 76.21676933332876
Iteration: 12, Func. Count: 152, Neg. LLF: 76.21644266346718
Iteration: 13, Func. Count: 164, Neg. LLF: 76.21642986375473
Iteration: 14, Func. Count: 176, Neg. LLF: 76.21642750577229
Iteration: 15, Func. Count: 187, Neg. LLF: 76.21642752118707
Optimization terminated successfully (Exit mode 0)
Current function value: 76.21642750577229
Iterations: 15
Function evaluations: 187
Gradient evaluations: 15
Iteration: 1, Func. Count: 14, Neg. LLF: 81.02644108272905
Iteration: 2, Func. Count: 30, Neg. LLF: 16057466.638949037
Iteration: 3, Func. Count: 44, Neg. LLF: 86.19179110808486
Iteration: 4, Func. Count: 58, Neg. LLF: 77.2060768545539
Iteration: 5, Func. Count: 71, Neg. LLF: 76.58048766178192
Iteration: 6, Func. Count: 84, Neg. LLF: 76.42198024016011
Iteration: 7, Func. Count: 97, Neg. LLF: 92.31405456807371
Iteration: 8, Func. Count: 112, Neg. LLF: 76.25013568909986
Iteration: 9, Func. Count: 125, Neg. LLF: 76.2292422136349
Iteration: 10, Func. Count: 138, Neg. LLF: 76.21940135796457
Iteration: 11, Func. Count: 151, Neg. LLF: 76.21739038114
Iteration: 12, Func. Count: 164, Neg. LLF: 76.21646939425915
Iteration: 13, Func. Count: 177, Neg. LLF: 76.2164318441067
Iteration: 14, Func. Count: 190, Neg. LLF: 76.21642755191161
Iteration: 15, Func. Count: 202, Neg. LLF: 76.21642759668636
Optimization terminated successfully (Exit mode 0)
Current function value: 76.21642755191161
Iterations: 15
Function evaluations: 202
Gradient evaluations: 15
Iteration: 1, Func. Count: 15, Neg. LLF: 80.9228068145729
Iteration: 2, Func. Count: 32, Neg. LLF: 16159794.305062862
Iteration: 3, Func. Count: 47, Neg. LLF: 87.1959848753452
Iteration: 4, Func. Count: 62, Neg. LLF: 76.85443616312688
Iteration: 5, Func. Count: 76, Neg. LLF: 76.70102657486352
Iteration: 6, Func. Count: 91, Neg. LLF: 76.24662691610966
Iteration: 7, Func. Count: 105, Neg. LLF: 88.94593478843473
Iteration: 8, Func. Count: 121, Neg. LLF: 76.21807434287538
Iteration: 9, Func. Count: 135, Neg. LLF: 76.21667005535156
Iteration: 10, Func. Count: 149, Neg. LLF: 76.21648023428388
Iteration: 11, Func. Count: 163, Neg. LLF: 76.216451776649
Iteration: 12, Func. Count: 177, Neg. LLF: 76.21642792790436
Iteration: 13, Func. Count: 190, Neg. LLF: 76.21642797483868
Optimization terminated successfully (Exit mode 0)
Current function value: 76.21642792790436
Iterations: 13
Function evaluations: 190
Gradient evaluations: 13
Iteration: 1, Func. Count: 8, Neg. LLF: 123.00997107655728
Iteration: 2, Func. Count: 19, Neg. LLF: 131.22956316395369
Iteration: 3, Func. Count: 28, Neg. LLF: 95.5767933310239
Iteration: 4, Func. Count: 36, Neg. LLF: 77.68619303662699
Iteration: 5, Func. Count: 43, Neg. LLF: 77.44519338677752
Iteration: 6, Func. Count: 50, Neg. LLF: 77.45967347161141
Iteration: 7, Func. Count: 58, Neg. LLF: 77.29188671880759
Iteration: 8, Func. Count: 65, Neg. LLF: 77.28754489076759
Iteration: 9, Func. Count: 72, Neg. LLF: 77.28711683406961
Iteration: 10, Func. Count: 79, Neg. LLF: 77.2871090585343
Iteration: 11, Func. Count: 86, Neg. LLF: 77.28710843282971
Optimization terminated successfully (Exit mode 0)
Current function value: 77.28710843282971
Iterations: 11
Function evaluations: 86
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 83.4794889182266
Iteration: 2, Func. Count: 19, Neg. LLF: 393.70552048933587
Iteration: 3, Func. Count: 28, Neg. LLF: 84.95219487337515
Iteration: 4, Func. Count: 37, Neg. LLF: 77.56879921864136
Iteration: 5, Func. Count: 45, Neg. LLF: 78.32098822118097
Iteration: 6, Func. Count: 54, Neg. LLF: 77.40681202520406
Iteration: 7, Func. Count: 63, Neg. LLF: 77.2883855606538
Iteration: 8, Func. Count: 71, Neg. LLF: 77.28718091849396
Iteration: 9, Func. Count: 79, Neg. LLF: 77.28710978948942
Iteration: 10, Func. Count: 87, Neg. LLF: 77.28710843085287
Iteration: 11, Func. Count: 94, Neg. LLF: 77.28710844840482
Optimization terminated successfully (Exit mode 0)
Current function value: 77.28710843085287
Iterations: 11
Function evaluations: 94
Gradient evaluations: 11
Iteration: 1, Func. Count: 10, Neg. LLF: 82.28007158664576
Iteration: 2, Func. Count: 21, Neg. LLF: 170.45407332154073
Iteration: 3, Func. Count: 31, Neg. LLF: 82.7215452130463
Iteration: 4, Func. Count: 41, Neg. LLF: 77.79834206639126
Iteration: 5, Func. Count: 50, Neg. LLF: 78.03877418213868
Iteration: 6, Func. Count: 60, Neg. LLF: 86.50018296429694
Iteration: 7, Func. Count: 71, Neg. LLF: 77.3027144769656
Iteration: 8, Func. Count: 80, Neg. LLF: 77.28893150261048
Iteration: 9, Func. Count: 89, Neg. LLF: 77.28715990108026
Iteration: 10, Func. Count: 98, Neg. LLF: 77.28711017552048
Iteration: 11, Func. Count: 107, Neg. LLF: 77.28710851693081
Iteration: 12, Func. Count: 115, Neg. LLF: 77.28710854092687
Optimization terminated successfully (Exit mode 0)
Current function value: 77.28710851693081
Iterations: 12
Function evaluations: 115
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 82.32538442817639
Iteration: 2, Func. Count: 23, Neg. LLF: 11849.95761198385
Iteration: 3, Func. Count: 34, Neg. LLF: 199.86894981633355
Iteration: 4, Func. Count: 45, Neg. LLF: 77.39344479093829
Iteration: 5, Func. Count: 55, Neg. LLF: 77.64406696372367
Iteration: 6, Func. Count: 66, Neg. LLF: 78.86428192158168
Iteration: 7, Func. Count: 77, Neg. LLF: 77.29074360540005
Iteration: 8, Func. Count: 87, Neg. LLF: 77.28725366330858
Iteration: 9, Func. Count: 97, Neg. LLF: 77.28711131221382
Iteration: 10, Func. Count: 107, Neg. LLF: 77.2871084302688
Iteration: 11, Func. Count: 116, Neg. LLF: 77.28710846381875
Optimization terminated successfully (Exit mode 0)
Current function value: 77.2871084302688
Iterations: 11
Function evaluations: 116
Gradient evaluations: 11
Iteration: 1, Func. Count: 12, Neg. LLF: 82.90611269863942
Iteration: 2, Func. Count: 26, Neg. LLF: 221.61860987134693
Iteration: 3, Func. Count: 39, Neg. LLF: 641.9406843869831
Iteration: 4, Func. Count: 51, Neg. LLF: 78.12334646044098
Iteration: 5, Func. Count: 63, Neg. LLF: 77.84213710056642
Iteration: 6, Func. Count: 75, Neg. LLF: 77.29303562629705
Iteration: 7, Func. Count: 86, Neg. LLF: 77.28735413087739
Iteration: 8, Func. Count: 97, Neg. LLF: 77.28720274232377
Iteration: 9, Func. Count: 108, Neg. LLF: 77.28710887287181
Iteration: 10, Func. Count: 118, Neg. LLF: 77.28710889743256
Optimization terminated successfully (Exit mode 0)
Current function value: 77.28710887287181
Iterations: 10
Function evaluations: 118
Gradient evaluations: 10
Iteration: 1, Func. Count: 9, Neg. LLF: 121.10569287869437
Iteration: 2, Func. Count: 21, Neg. LLF: 118.36136593654744
Iteration: 3, Func. Count: 31, Neg. LLF: 404.1448476693383
Iteration: 4, Func. Count: 40, Neg. LLF: 77.47026476504116
Iteration: 5, Func. Count: 49, Neg. LLF: 76.75897029216064
Iteration: 6, Func. Count: 57, Neg. LLF: 76.79707377424113
Iteration: 7, Func. Count: 66, Neg. LLF: 77.13041151026006
Iteration: 8, Func. Count: 75, Neg. LLF: 76.68694196736917
Iteration: 9, Func. Count: 83, Neg. LLF: 76.6963221983157
Iteration: 10, Func. Count: 92, Neg. LLF: 76.68224485024919
Iteration: 11, Func. Count: 100, Neg. LLF: 76.68192148921877
Iteration: 12, Func. Count: 108, Neg. LLF: 76.68180565175936
Iteration: 13, Func. Count: 116, Neg. LLF: 76.6817814414959
Iteration: 14, Func. Count: 124, Neg. LLF: 76.6817803803141
Iteration: 15, Func. Count: 131, Neg. LLF: 76.68178029567768
Optimization terminated successfully (Exit mode 0)
Current function value: 76.6817803803141
Iterations: 15
Function evaluations: 131
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 80.60053602477332
Iteration: 2, Func. Count: 21, Neg. LLF: 91272975.23257932
Iteration: 3, Func. Count: 32, Neg. LLF: 8617536.942476168
Iteration: 4, Func. Count: 42, Neg. LLF: 77.24151776677884
Iteration: 5, Func. Count: 51, Neg. LLF: 76.87653938300335
Iteration: 6, Func. Count: 60, Neg. LLF: 78.12690161502864
Iteration: 7, Func. Count: 71, Neg. LLF: 78.23282861682776
Iteration: 8, Func. Count: 81, Neg. LLF: 76.7080015428737
Iteration: 9, Func. Count: 90, Neg. LLF: 76.68656183315244
Iteration: 10, Func. Count: 99, Neg. LLF: 76.68220992944825
Iteration: 11, Func. Count: 108, Neg. LLF: 76.68178491537
Iteration: 12, Func. Count: 117, Neg. LLF: 76.68178045885341
Iteration: 13, Func. Count: 125, Neg. LLF: 76.68178047203729
Optimization terminated successfully (Exit mode 0)
Current function value: 76.68178045885341
Iterations: 13
Function evaluations: 125
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 80.87219855326694
Iteration: 2, Func. Count: 24, Neg. LLF: 30745561.3283228
Iteration: 3, Func. Count: 35, Neg. LLF: 5094699.761009426
Iteration: 4, Func. Count: 47, Neg. LLF: 77.25781086949162
Iteration: 5, Func. Count: 57, Neg. LLF: 76.75069657496353
Iteration: 6, Func. Count: 67, Neg. LLF: 78.26347847210512
Iteration: 7, Func. Count: 79, Neg. LLF: 76.73150531068076
Iteration: 8, Func. Count: 90, Neg. LLF: 76.68543420239381
Iteration: 9, Func. Count: 100, Neg. LLF: 76.68288574654463
Iteration: 10, Func. Count: 110, Neg. LLF: 76.68237501208246
Iteration: 11, Func. Count: 120, Neg. LLF: 76.68186150369316
Iteration: 12, Func. Count: 130, Neg. LLF: 76.6817892168404
Iteration: 13, Func. Count: 140, Neg. LLF: 76.68178047054307
Iteration: 14, Func. Count: 149, Neg. LLF: 76.68178048114594
Optimization terminated successfully (Exit mode 0)
Current function value: 76.68178047054307
Iterations: 14
Function evaluations: 149
Gradient evaluations: 14
Iteration: 1, Func. Count: 12, Neg. LLF: 81.53739060776972
Iteration: 2, Func. Count: 26, Neg. LLF: 22972544.140221797
Iteration: 3, Func. Count: 38, Neg. LLF: 145.44275512217104
Iteration: 4, Func. Count: 51, Neg. LLF: 77.24224636889532
Iteration: 5, Func. Count: 62, Neg. LLF: 76.72517531683387
Iteration: 6, Func. Count: 73, Neg. LLF: 78.67611012782761
Iteration: 7, Func. Count: 86, Neg. LLF: 76.68992730232706
Iteration: 8, Func. Count: 97, Neg. LLF: 76.68365536127988
Iteration: 9, Func. Count: 108, Neg. LLF: 76.68251123641392
Iteration: 10, Func. Count: 119, Neg. LLF: 76.68212471477342
Iteration: 11, Func. Count: 130, Neg. LLF: 76.68183828798716
Iteration: 12, Func. Count: 141, Neg. LLF: 76.68178444698638
Iteration: 13, Func. Count: 152, Neg. LLF: 76.68178041969412
Iteration: 14, Func. Count: 162, Neg. LLF: 76.68178046154452
Optimization terminated successfully (Exit mode 0)
Current function value: 76.68178041969412
Iterations: 14
Function evaluations: 162
Gradient evaluations: 14
Iteration: 1, Func. Count: 13, Neg. LLF: 81.93336104741691
Iteration: 2, Func. Count: 28, Neg. LLF: 21222752.086241826
Iteration: 3, Func. Count: 41, Neg. LLF: 115.22595248245062
Iteration: 4, Func. Count: 55, Neg. LLF: 77.22563644663195
Iteration: 5, Func. Count: 67, Neg. LLF: 76.73597594212606
Iteration: 6, Func. Count: 79, Neg. LLF: 79.33647681826845
Iteration: 7, Func. Count: 93, Neg. LLF: 76.69108762786425
Iteration: 8, Func. Count: 105, Neg. LLF: 76.6842057197484
Iteration: 9, Func. Count: 117, Neg. LLF: 76.68258483241614
Iteration: 10, Func. Count: 129, Neg. LLF: 76.68221586478968
Iteration: 11, Func. Count: 141, Neg. LLF: 76.68184072403642
Iteration: 12, Func. Count: 153, Neg. LLF: 76.68178326589461
Iteration: 13, Func. Count: 165, Neg. LLF: 76.68178039370682
Iteration: 14, Func. Count: 176, Neg. LLF: 76.68178042155715
Optimization terminated successfully (Exit mode 0)
Current function value: 76.68178039370682
Iterations: 14
Function evaluations: 176
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 121.06310771084387
Iteration: 2, Func. Count: 23, Neg. LLF: 117.44831800215995
Iteration: 3, Func. Count: 34, Neg. LLF: 7374.527284167232
Iteration: 4, Func. Count: 44, Neg. LLF: 77.38158561943271
Iteration: 5, Func. Count: 54, Neg. LLF: 76.74462509289934
Iteration: 6, Func. Count: 63, Neg. LLF: 87.56960958003617
Iteration: 7, Func. Count: 74, Neg. LLF: 76.7322314974363
Iteration: 8, Func. Count: 84, Neg. LLF: 76.67498746737601
Iteration: 9, Func. Count: 93, Neg. LLF: 76.67336924722824
Iteration: 10, Func. Count: 102, Neg. LLF: 76.67314035921774
Iteration: 11, Func. Count: 111, Neg. LLF: 76.67299941441156
Iteration: 12, Func. Count: 120, Neg. LLF: 76.67299397340106
Iteration: 13, Func. Count: 129, Neg. LLF: 76.67299321573323
Optimization terminated successfully (Exit mode 0)
Current function value: 76.67299321573323
Iterations: 13
Function evaluations: 129
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 80.56503604814529
Iteration: 2, Func. Count: 23, Neg. LLF: 94784188.98386648
Iteration: 3, Func. Count: 35, Neg. LLF: 8644291.182668494
Iteration: 4, Func. Count: 46, Neg. LLF: 77.24283172433245
Iteration: 5, Func. Count: 56, Neg. LLF: 76.92844724839242
Iteration: 6, Func. Count: 66, Neg. LLF: 78.78178897979825
Iteration: 7, Func. Count: 78, Neg. LLF: 76.82062844885198
Iteration: 8, Func. Count: 88, Neg. LLF: 76.70424334302261
Iteration: 9, Func. Count: 98, Neg. LLF: 76.68202387420028
Iteration: 10, Func. Count: 108, Neg. LLF: 76.6740725578941
Iteration: 11, Func. Count: 118, Neg. LLF: 76.67304459763585
Iteration: 12, Func. Count: 128, Neg. LLF: 76.67299338692682
Iteration: 13, Func. Count: 137, Neg. LLF: 76.67299340219422
Optimization terminated successfully (Exit mode 0)
Current function value: 76.67299338692682
Iterations: 13
Function evaluations: 137
Gradient evaluations: 13
Iteration: 1, Func. Count: 12, Neg. LLF: 80.61727315234816
Iteration: 2, Func. Count: 26, Neg. LLF: 32369639.748476725
Iteration: 3, Func. Count: 38, Neg. LLF: 4706555.268886119
Iteration: 4, Func. Count: 50, Neg. LLF: 77.29494955175386
Iteration: 5, Func. Count: 61, Neg. LLF: 78.5219194540176
Iteration: 6, Func. Count: 73, Neg. LLF: 76.70646862041636
Iteration: 7, Func. Count: 84, Neg. LLF: 1570.467115393536
Iteration: 8, Func. Count: 97, Neg. LLF: 76.681032727535
Iteration: 9, Func. Count: 108, Neg. LLF: 76.67496750181972
Iteration: 10, Func. Count: 119, Neg. LLF: 76.67420543688011
Iteration: 11, Func. Count: 130, Neg. LLF: 76.67302699029622
Iteration: 12, Func. Count: 141, Neg. LLF: 76.6729991308563
Iteration: 13, Func. Count: 152, Neg. LLF: 76.67299358148398
Iteration: 14, Func. Count: 162, Neg. LLF: 76.672993593297
Optimization terminated successfully (Exit mode 0)
Current function value: 76.67299358148398
Iterations: 14
Function evaluations: 162
Gradient evaluations: 14
Iteration: 1, Func. Count: 13, Neg. LLF: 81.18113785676219
Iteration: 2, Func. Count: 28, Neg. LLF: 23830166.343027372
Iteration: 3, Func. Count: 41, Neg. LLF: 190.9877884357287
Iteration: 4, Func. Count: 55, Neg. LLF: 77.2469890696339
Iteration: 5, Func. Count: 67, Neg. LLF: 76.73285854786344
Iteration: 6, Func. Count: 79, Neg. LLF: 82.17502246735116
Iteration: 7, Func. Count: 93, Neg. LLF: 76.68340353580773
Iteration: 8, Func. Count: 105, Neg. LLF: 76.67499337524379
Iteration: 9, Func. Count: 117, Neg. LLF: 76.67397164084093
Iteration: 10, Func. Count: 129, Neg. LLF: 76.67330136029746
Iteration: 11, Func. Count: 141, Neg. LLF: 76.67307116984603
Iteration: 12, Func. Count: 153, Neg. LLF: 76.67299635745603
Iteration: 13, Func. Count: 165, Neg. LLF: 76.67299327425889
Iteration: 14, Func. Count: 176, Neg. LLF: 76.67299331666965
Optimization terminated successfully (Exit mode 0)
Current function value: 76.67299327425889
Iterations: 14
Function evaluations: 176
Gradient evaluations: 14
Iteration: 1, Func. Count: 14, Neg. LLF: 81.52804394144083
Iteration: 2, Func. Count: 30, Neg. LLF: 22824596.993271593
Iteration: 3, Func. Count: 44, Neg. LLF: 130.58625683725796
Iteration: 4, Func. Count: 59, Neg. LLF: 77.22644760017207
Iteration: 5, Func. Count: 72, Neg. LLF: 76.73480559867511
Iteration: 6, Func. Count: 85, Neg. LLF: 85.79144040940982
Iteration: 7, Func. Count: 100, Neg. LLF: 76.68392623278501
Iteration: 8, Func. Count: 113, Neg. LLF: 76.67497502063412
Iteration: 9, Func. Count: 126, Neg. LLF: 76.67388021471963
Iteration: 10, Func. Count: 139, Neg. LLF: 76.67340465370741
Iteration: 11, Func. Count: 152, Neg. LLF: 76.67301946695729
Iteration: 12, Func. Count: 165, Neg. LLF: 76.67299462261543
Iteration: 13, Func. Count: 178, Neg. LLF: 76.6729932137442
Iteration: 14, Func. Count: 190, Neg. LLF: 76.67299324250278
Optimization terminated successfully (Exit mode 0)
Current function value: 76.6729932137442
Iterations: 14
Function evaluations: 190
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 120.48122947191409
Iteration: 2, Func. Count: 25, Neg. LLF: 132.7586414097175
Iteration: 3, Func. Count: 37, Neg. LLF: 14421308.117339479
Iteration: 4, Func. Count: 48, Neg. LLF: 78.61324736605269
Iteration: 5, Func. Count: 59, Neg. LLF: 76.24233951860275
Iteration: 6, Func. Count: 69, Neg. LLF: 79.22695893502774
Iteration: 7, Func. Count: 81, Neg. LLF: 76.21883947375385
Iteration: 8, Func. Count: 91, Neg. LLF: 76.21709279201323
Iteration: 9, Func. Count: 101, Neg. LLF: 76.21667177300958
Iteration: 10, Func. Count: 111, Neg. LLF: 76.2164607507686
Iteration: 11, Func. Count: 121, Neg. LLF: 76.21642879446595
Iteration: 12, Func. Count: 131, Neg. LLF: 76.21642751707888
Iteration: 13, Func. Count: 140, Neg. LLF: 76.21642748220701
Optimization terminated successfully (Exit mode 0)
Current function value: 76.21642751707888
Iterations: 13
Function evaluations: 140
Gradient evaluations: 13
Iteration: 1, Func. Count: 12, Neg. LLF: 80.33054956878627
Iteration: 2, Func. Count: 26, Neg. LLF: 62561989.54146916
Iteration: 3, Func. Count: 38, Neg. LLF: 8978199.521141414
Iteration: 4, Func. Count: 50, Neg. LLF: 77.6921142057191
Iteration: 5, Func. Count: 62, Neg. LLF: 77.8286648162856
Iteration: 6, Func. Count: 74, Neg. LLF: 76.24501161662444
Iteration: 7, Func. Count: 85, Neg. LLF: 77.90048084143342
Iteration: 8, Func. Count: 98, Neg. LLF: 76.22059700984492
Iteration: 9, Func. Count: 109, Neg. LLF: 76.21654945153756
Iteration: 10, Func. Count: 120, Neg. LLF: 76.21645379551467
Iteration: 11, Func. Count: 131, Neg. LLF: 76.21642923427774
Iteration: 12, Func. Count: 142, Neg. LLF: 76.21642837805072
Optimization terminated successfully (Exit mode 0)
Current function value: 76.21642837805072
Iterations: 12
Function evaluations: 142
Gradient evaluations: 12
Iteration: 1, Func. Count: 13, Neg. LLF: 80.01400682206346
Iteration: 2, Func. Count: 28, Neg. LLF: 50003047.649937175
Iteration: 3, Func. Count: 41, Neg. LLF: 7085430.622225751
Iteration: 4, Func. Count: 54, Neg. LLF: 77.39658489514318
Iteration: 5, Func. Count: 67, Neg. LLF: 77.13676530083164
Iteration: 6, Func. Count: 80, Neg. LLF: 76.24031435399621
Iteration: 7, Func. Count: 92, Neg. LLF: 77.31820392817873
Iteration: 8, Func. Count: 106, Neg. LLF: 76.22132530232588
Iteration: 9, Func. Count: 118, Neg. LLF: 76.21665021183688
Iteration: 10, Func. Count: 130, Neg. LLF: 76.21656004444664
Iteration: 11, Func. Count: 142, Neg. LLF: 76.21645315590108
Iteration: 12, Func. Count: 154, Neg. LLF: 76.21643201490987
Iteration: 13, Func. Count: 166, Neg. LLF: 76.2164276955969
Iteration: 14, Func. Count: 177, Neg. LLF: 76.21642771102717
Optimization terminated successfully (Exit mode 0)
Current function value: 76.2164276955969
Iterations: 14
Function evaluations: 177
Gradient evaluations: 14
Iteration: 1, Func. Count: 14, Neg. LLF: 80.25099198863643
Iteration: 2, Func. Count: 30, Neg. LLF: 24145611.00204147
Iteration: 3, Func. Count: 44, Neg. LLF: 4530189.547281023
Iteration: 4, Func. Count: 58, Neg. LLF: 76.29745795104759
Iteration: 5, Func. Count: 71, Neg. LLF: 77.74015279164813
Iteration: 6, Func. Count: 85, Neg. LLF: 76.25927351084171
Iteration: 7, Func. Count: 98, Neg. LLF: 76.75147250478936
Iteration: 8, Func. Count: 112, Neg. LLF: 76.23772044495706
Iteration: 9, Func. Count: 126, Neg. LLF: 76.21685556557792
Iteration: 10, Func. Count: 139, Neg. LLF: 76.2165666415546
Iteration: 11, Func. Count: 152, Neg. LLF: 76.21643250207548
Iteration: 12, Func. Count: 165, Neg. LLF: 76.21642758305074
Iteration: 13, Func. Count: 177, Neg. LLF: 76.21642762781029
Optimization terminated successfully (Exit mode 0)
Current function value: 76.21642758305074
Iterations: 13
Function evaluations: 177
Gradient evaluations: 13
Iteration: 1, Func. Count: 15, Neg. LLF: 80.53721314117705
Iteration: 2, Func. Count: 32, Neg. LLF: 20444507.092675604
Iteration: 3, Func. Count: 47, Neg. LLF: 2031.742101294567
Iteration: 4, Func. Count: 62, Neg. LLF: 76.28820545495022
Iteration: 5, Func. Count: 76, Neg. LLF: 77.64617922667514
Iteration: 6, Func. Count: 92, Neg. LLF: 76.25326946279837
Iteration: 7, Func. Count: 106, Neg. LLF: 76.39822137767649
Iteration: 8, Func. Count: 121, Neg. LLF: 76.27274777079731
Iteration: 9, Func. Count: 136, Neg. LLF: 76.21674786913793
Iteration: 10, Func. Count: 150, Neg. LLF: 76.21654266679445
Iteration: 11, Func. Count: 164, Neg. LLF: 76.2164324407526
Iteration: 12, Func. Count: 178, Neg. LLF: 76.2164276096131
Iteration: 13, Func. Count: 191, Neg. LLF: 76.21642765658022
Optimization terminated successfully (Exit mode 0)
Current function value: 76.2164276096131
Iterations: 13
Function evaluations: 191
Gradient evaluations: 13
Iteration: 1, Func. Count: 12, Neg. LLF: 121.2213513497876
Iteration: 2, Func. Count: 27, Neg. LLF: 128.1236990117841
Iteration: 3, Func. Count: 40, Neg. LLF: 14396108.560131242
Iteration: 4, Func. Count: 52, Neg. LLF: 78.21728047137282
Iteration: 5, Func. Count: 64, Neg. LLF: 76.25621968324579
Iteration: 6, Func. Count: 75, Neg. LLF: 80.54825955579794
Iteration: 7, Func. Count: 88, Neg. LLF: 76.22355513421086
Iteration: 8, Func. Count: 99, Neg. LLF: 76.218304592529
Iteration: 9, Func. Count: 110, Neg. LLF: 76.21667995170881
Iteration: 10, Func. Count: 121, Neg. LLF: 76.2164377692838
Iteration: 11, Func. Count: 132, Neg. LLF: 76.2164277584383
Iteration: 12, Func. Count: 142, Neg. LLF: 76.21642772860405
Optimization terminated successfully (Exit mode 0)
Current function value: 76.2164277584383
Iterations: 12
Function evaluations: 142
Gradient evaluations: 12
Iteration: 1, Func. Count: 13, Neg. LLF: 80.30272991970148
Iteration: 2, Func. Count: 28, Neg. LLF: 62636700.716822565
Iteration: 3, Func. Count: 41, Neg. LLF: 9203564.229875328
Iteration: 4, Func. Count: 54, Neg. LLF: 77.6888054378106
Iteration: 5, Func. Count: 67, Neg. LLF: 77.82905806351599
Iteration: 6, Func. Count: 80, Neg. LLF: 76.24516060736192
Iteration: 7, Func. Count: 92, Neg. LLF: 77.85487630783142
Iteration: 8, Func. Count: 106, Neg. LLF: 76.22078489708313
Iteration: 9, Func. Count: 118, Neg. LLF: 76.21654815288207
Iteration: 10, Func. Count: 130, Neg. LLF: 76.21645379106324
Iteration: 11, Func. Count: 142, Neg. LLF: 76.21642939751801
Iteration: 12, Func. Count: 154, Neg. LLF: 76.21642846785525
Optimization terminated successfully (Exit mode 0)
Current function value: 76.21642846785525
Iterations: 12
Function evaluations: 154
Gradient evaluations: 12
Iteration: 1, Func. Count: 14, Neg. LLF: 79.98249940393607
Iteration: 2, Func. Count: 30, Neg. LLF: 49771691.95837266
Iteration: 3, Func. Count: 44, Neg. LLF: 7090762.790413267
Iteration: 4, Func. Count: 58, Neg. LLF: 77.39452093831171
Iteration: 5, Func. Count: 72, Neg. LLF: 77.1109791912881
Iteration: 6, Func. Count: 86, Neg. LLF: 76.24009932261515
Iteration: 7, Func. Count: 99, Neg. LLF: 77.32742507035367
Iteration: 8, Func. Count: 114, Neg. LLF: 76.22111753774298
Iteration: 9, Func. Count: 127, Neg. LLF: 76.21667640584822
Iteration: 10, Func. Count: 140, Neg. LLF: 76.21657664129724
Iteration: 11, Func. Count: 153, Neg. LLF: 76.21645355951362
Iteration: 12, Func. Count: 166, Neg. LLF: 76.21643188602913
Iteration: 13, Func. Count: 179, Neg. LLF: 76.21642766968843
Iteration: 14, Func. Count: 191, Neg. LLF: 76.21642768511754
Optimization terminated successfully (Exit mode 0)
Current function value: 76.21642766968843
Iterations: 14
Function evaluations: 191
Gradient evaluations: 14
Iteration: 1, Func. Count: 15, Neg. LLF: 80.22160225914652
Iteration: 2, Func. Count: 32, Neg. LLF: 23966713.579276863
Iteration: 3, Func. Count: 47, Neg. LLF: 4567450.911646434
Iteration: 4, Func. Count: 62, Neg. LLF: 76.29925176464758
Iteration: 5, Func. Count: 76, Neg. LLF: 77.75038177103178
Iteration: 6, Func. Count: 91, Neg. LLF: 76.25926522138685
Iteration: 7, Func. Count: 105, Neg. LLF: 76.83861173480662
Iteration: 8, Func. Count: 120, Neg. LLF: 76.23182639598174
Iteration: 9, Func. Count: 134, Neg. LLF: 76.21695849829874
Iteration: 10, Func. Count: 148, Neg. LLF: 76.21672007731672
Iteration: 11, Func. Count: 162, Neg. LLF: 76.21652541246446
Iteration: 12, Func. Count: 176, Neg. LLF: 76.21642892775945
Iteration: 13, Func. Count: 190, Neg. LLF: 76.21642751952348
Iteration: 14, Func. Count: 203, Neg. LLF: 76.2164275642781
Optimization terminated successfully (Exit mode 0)
Current function value: 76.21642751952348
Iterations: 14
Function evaluations: 203
Gradient evaluations: 14
Iteration: 1, Func. Count: 16, Neg. LLF: 80.52012629204046
Iteration: 2, Func. Count: 34, Neg. LLF: 20230937.15717254
Iteration: 3, Func. Count: 50, Neg. LLF: 2633.827291832349
Iteration: 4, Func. Count: 66, Neg. LLF: 76.28915038037825
Iteration: 5, Func. Count: 81, Neg. LLF: 77.78759059602915
Iteration: 6, Func. Count: 98, Neg. LLF: 76.25238108929598
Iteration: 7, Func. Count: 113, Neg. LLF: 76.46481478573077
Iteration: 8, Func. Count: 129, Neg. LLF: 76.24796692556549
Iteration: 9, Func. Count: 145, Neg. LLF: 76.21675905921921
Iteration: 10, Func. Count: 160, Neg. LLF: 76.21656025237891
Iteration: 11, Func. Count: 175, Neg. LLF: 76.2164315740756
Iteration: 12, Func. Count: 190, Neg. LLF: 76.21642758207773
Iteration: 13, Func. Count: 204, Neg. LLF: 76.21642762904314
Optimization terminated successfully (Exit mode 0)
Current function value: 76.21642758207773
Iterations: 13
Function evaluations: 204
Gradient evaluations: 13
Iteration: 1, Func. Count: 5, Neg. LLF: 163.24561041489096
Iteration: 2, Func. Count: 13, Neg. LLF: 208.6184274529934
Iteration: 3, Func. Count: 19, Neg. LLF: 78.83704939429508
Iteration: 4, Func. Count: 24, Neg. LLF: 78.17658865637028
Iteration: 5, Func. Count: 28, Neg. LLF: 78.16794858962417
Iteration: 6, Func. Count: 32, Neg. LLF: 78.1676763925811
Iteration: 7, Func. Count: 36, Neg. LLF: 78.16767075243014
Iteration: 8, Func. Count: 40, Neg. LLF: 78.16766969849802
Iteration: 9, Func. Count: 43, Neg. LLF: 78.16766969846603
Optimization terminated successfully (Exit mode 0)
Current function value: 78.16766969849802
Iterations: 9
Function evaluations: 43
Gradient evaluations: 9
Iteration: 1, Func. Count: 5, Neg. LLF: 115.27017716823191
Iteration: 2, Func. Count: 12, Neg. LLF: 87.85420911323297
Iteration: 3, Func. Count: 17, Neg. LLF: 79.91341624005007
Iteration: 4, Func. Count: 21, Neg. LLF: 84.47727366586189
Iteration: 5, Func. Count: 26, Neg. LLF: 79.24654884289664
Iteration: 6, Func. Count: 31, Neg. LLF: 78.99266551720886
Iteration: 7, Func. Count: 35, Neg. LLF: 78.99239045361777
Iteration: 8, Func. Count: 39, Neg. LLF: 78.99239002118547
Optimization terminated successfully (Exit mode 0)
Current function value: 78.99239002118547
Iterations: 8
Function evaluations: 39
Gradient evaluations: 8
Iteration: 1, Func. Count: 6, Neg. LLF: 129.79661242107278
Iteration: 2, Func. Count: 13, Neg. LLF: 79.02109680984617
Iteration: 3, Func. Count: 18, Neg. LLF: 78.99459667557224
Iteration: 4, Func. Count: 23, Neg. LLF: 78.99438301415248
Iteration: 5, Func. Count: 28, Neg. LLF: 78.99434555796346
Iteration: 6, Func. Count: 33, Neg. LLF: 78.9942966065638
Iteration: 7, Func. Count: 38, Neg. LLF: 78.9941083094955
Iteration: 8, Func. Count: 43, Neg. LLF: 78.99370967633227
Iteration: 9, Func. Count: 48, Neg. LLF: 78.99316752097099
Iteration: 10, Func. Count: 53, Neg. LLF: 78.9929072394532
Iteration: 11, Func. Count: 58, Neg. LLF: 78.99270265170716
Iteration: 12, Func. Count: 63, Neg. LLF: 78.9923899807201
Iteration: 13, Func. Count: 67, Neg. LLF: 78.99238998071908
Optimization terminated successfully (Exit mode 0)
Current function value: 78.9923899807201
Iterations: 13
Function evaluations: 67
Gradient evaluations: 13
Iteration: 1, Func. Count: 7, Neg. LLF: 125.18230046440954
Iteration: 2, Func. Count: 15, Neg. LLF: 79.01148040516706
Iteration: 3, Func. Count: 21, Neg. LLF: 78.99581168473586
Iteration: 4, Func. Count: 27, Neg. LLF: 78.9945438748431
Iteration: 5, Func. Count: 33, Neg. LLF: 78.99442050464542
Iteration: 6, Func. Count: 39, Neg. LLF: 78.99357223069852
Iteration: 7, Func. Count: 45, Neg. LLF: 78.9932792885046
Iteration: 8, Func. Count: 51, Neg. LLF: 78.99316658588339
Iteration: 9, Func. Count: 57, Neg. LLF: 78.99314377789727
Iteration: 10, Func. Count: 63, Neg. LLF: 78.9931080247175
Iteration: 11, Func. Count: 69, Neg. LLF: 78.99300558054564
Iteration: 12, Func. Count: 75, Neg. LLF: 78.99280517298259
Iteration: 13, Func. Count: 81, Neg. LLF: 78.99261656832807
Iteration: 14, Func. Count: 87, Neg. LLF: 78.99250629276376
Iteration: 15, Func. Count: 93, Neg. LLF: 78.99238994062168
Iteration: 16, Func. Count: 98, Neg. LLF: 78.9923899407337
Optimization terminated successfully (Exit mode 0)
Current function value: 78.99238994062168
Iterations: 16
Function evaluations: 98
Gradient evaluations: 16
Iteration: 1, Func. Count: 8, Neg. LLF: 120.80705457359305
Iteration: 2, Func. Count: 17, Neg. LLF: 79.0136388004006
Iteration: 3, Func. Count: 24, Neg. LLF: 78.9958198284636
Iteration: 4, Func. Count: 31, Neg. LLF: 78.9943809968657
Iteration: 5, Func. Count: 38, Neg. LLF: 78.99407235603643
Iteration: 6, Func. Count: 45, Neg. LLF: 78.99349406875177
Iteration: 7, Func. Count: 52, Neg. LLF: 78.99332499615682
Iteration: 8, Func. Count: 59, Neg. LLF: 78.99303020936348
Iteration: 9, Func. Count: 66, Neg. LLF: 78.99301409974416
Iteration: 10, Func. Count: 73, Neg. LLF: 78.99294991980672
Iteration: 11, Func. Count: 80, Neg. LLF: 78.9928447047632
Iteration: 12, Func. Count: 87, Neg. LLF: 78.9927591780203
Iteration: 13, Func. Count: 94, Neg. LLF: 78.99261288519239
Iteration: 14, Func. Count: 101, Neg. LLF: 78.99252652448318
Iteration: 15, Func. Count: 108, Neg. LLF: 78.9923899886749
Iteration: 16, Func. Count: 114, Neg. LLF: 78.9923899887422
Optimization terminated successfully (Exit mode 0)
Current function value: 78.9923899886749
Iterations: 16
Function evaluations: 114
Gradient evaluations: 16
Iteration: 1, Func. Count: 9, Neg. LLF: 116.82510813557451
Iteration: 2, Func. Count: 19, Neg. LLF: 79.01937204009927
Iteration: 3, Func. Count: 27, Neg. LLF: 78.9957696301151
Iteration: 4, Func. Count: 35, Neg. LLF: 78.9943296830405
Iteration: 5, Func. Count: 43, Neg. LLF: 78.99398212031106
Iteration: 6, Func. Count: 51, Neg. LLF: 78.99360537538134
Iteration: 7, Func. Count: 59, Neg. LLF: 78.99344482741162
Iteration: 8, Func. Count: 67, Neg. LLF: 78.99291808644814
Iteration: 9, Func. Count: 75, Neg. LLF: 78.99290587889551
Iteration: 10, Func. Count: 83, Neg. LLF: 78.99284760973082
Iteration: 11, Func. Count: 91, Neg. LLF: 78.99271086520231
Iteration: 12, Func. Count: 99, Neg. LLF: 78.99258650808326
Iteration: 13, Func. Count: 107, Neg. LLF: 78.99245444404426
Iteration: 14, Func. Count: 115, Neg. LLF: 78.99239038965584
Iteration: 15, Func. Count: 122, Neg. LLF: 78.99239038985284
Optimization terminated successfully (Exit mode 0)
Current function value: 78.99239038965584
Iterations: 15
Function evaluations: 122
Gradient evaluations: 15
Iteration: 1, Func. Count: 6, Neg. LLF: 124.33576920149206
Iteration: 2, Func. Count: 15, Neg. LLF: 259.5799180494229
Iteration: 3, Func. Count: 22, Neg. LLF: 78.85342814579349
Iteration: 4, Func. Count: 27, Neg. LLF: 78.88378778087517
Iteration: 5, Func. Count: 33, Neg. LLF: 78.79425278183649
Iteration: 6, Func. Count: 38, Neg. LLF: 78.78141260783808
Iteration: 7, Func. Count: 43, Neg. LLF: 78.78053681908395
Iteration: 8, Func. Count: 48, Neg. LLF: 78.78049786819943
Iteration: 9, Func. Count: 52, Neg. LLF: 78.7804978682223
Optimization terminated successfully (Exit mode 0)
Current function value: 78.78049786819943
Iterations: 9
Function evaluations: 52
Gradient evaluations: 9
Iteration: 1, Func. Count: 7, Neg. LLF: 83.88165054416956
Iteration: 2, Func. Count: 15, Neg. LLF: 121.310537425284
Iteration: 3, Func. Count: 23, Neg. LLF: 78.86526288875989
Iteration: 4, Func. Count: 29, Neg. LLF: 78.8116303533509
Iteration: 5, Func. Count: 35, Neg. LLF: 78.78846199539619
Iteration: 6, Func. Count: 41, Neg. LLF: 79.0068413379664
Iteration: 7, Func. Count: 48, Neg. LLF: 78.78217804270427
Iteration: 8, Func. Count: 54, Neg. LLF: 78.78107114395107
Iteration: 9, Func. Count: 60, Neg. LLF: 78.78055857017597
Iteration: 10, Func. Count: 66, Neg. LLF: 78.78051610217437
Iteration: 11, Func. Count: 72, Neg. LLF: 78.7805004998374
Iteration: 12, Func. Count: 78, Neg. LLF: 78.78049044148814
Iteration: 13, Func. Count: 84, Neg. LLF: 78.78048947153246
Optimization terminated successfully (Exit mode 0)
Current function value: 78.78048947153246
Iterations: 13
Function evaluations: 84
Gradient evaluations: 13
Iteration: 1, Func. Count: 8, Neg. LLF: 87.74658945769667
Iteration: 2, Func. Count: 17, Neg. LLF: 86.75663896266151
Iteration: 3, Func. Count: 26, Neg. LLF: 78.94043969611661
Iteration: 4, Func. Count: 33, Neg. LLF: 78.79535506749498
Iteration: 5, Func. Count: 40, Neg. LLF: 78.79020932482443
Iteration: 6, Func. Count: 47, Neg. LLF: 78.78072957118577
Iteration: 7, Func. Count: 54, Neg. LLF: 78.78059079802611
Iteration: 8, Func. Count: 61, Neg. LLF: 78.78053252591404
Iteration: 9, Func. Count: 68, Neg. LLF: 78.78049177365767
Iteration: 10, Func. Count: 75, Neg. LLF: 78.78049069167716
Iteration: 11, Func. Count: 82, Neg. LLF: 78.78048943498426
Iteration: 12, Func. Count: 88, Neg. LLF: 78.78048944401621
Optimization terminated successfully (Exit mode 0)
Current function value: 78.78048943498426
Iterations: 12
Function evaluations: 88
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 86.80084776447896
Iteration: 2, Func. Count: 19, Neg. LLF: 90.05245867375866
Iteration: 3, Func. Count: 29, Neg. LLF: 78.90789306853819
Iteration: 4, Func. Count: 37, Neg. LLF: 78.80774813895029
Iteration: 5, Func. Count: 45, Neg. LLF: 78.78476450537266
Iteration: 6, Func. Count: 53, Neg. LLF: 78.78126834101454
Iteration: 7, Func. Count: 61, Neg. LLF: 78.78059626410564
Iteration: 8, Func. Count: 69, Neg. LLF: 78.78051258205885
Iteration: 9, Func. Count: 77, Neg. LLF: 78.78049858174928
Iteration: 10, Func. Count: 85, Neg. LLF: 78.78049250709617
Iteration: 11, Func. Count: 93, Neg. LLF: 78.78049001729174
Iteration: 12, Func. Count: 100, Neg. LLF: 78.78049002784908
Optimization terminated successfully (Exit mode 0)
Current function value: 78.78049001729174
Iterations: 12
Function evaluations: 100
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 84.55128231372883
Iteration: 2, Func. Count: 21, Neg. LLF: 109.2826755846627
Iteration: 3, Func. Count: 32, Neg. LLF: 78.83346782977753
Iteration: 4, Func. Count: 41, Neg. LLF: 78.85740836496258
Iteration: 5, Func. Count: 51, Neg. LLF: 78.78372956332656
Iteration: 6, Func. Count: 60, Neg. LLF: 78.78147404074299
Iteration: 7, Func. Count: 69, Neg. LLF: 78.78057501346045
Iteration: 8, Func. Count: 78, Neg. LLF: 78.78052986922201
Iteration: 9, Func. Count: 87, Neg. LLF: 78.78051207948674
Iteration: 10, Func. Count: 96, Neg. LLF: 78.78049542847056
Iteration: 11, Func. Count: 105, Neg. LLF: 78.78049064932603
Iteration: 12, Func. Count: 114, Neg. LLF: 78.78048954253157
Iteration: 13, Func. Count: 122, Neg. LLF: 78.78048954930087
Optimization terminated successfully (Exit mode 0)
Current function value: 78.78048954253157
Iterations: 13
Function evaluations: 122
Gradient evaluations: 13
Iteration: 1, Func. Count: 7, Neg. LLF: 147.19882091308338
Iteration: 2, Func. Count: 17, Neg. LLF: 352.0382897615423
Iteration: 3, Func. Count: 25, Neg. LLF: 79.09039972668036
Iteration: 4, Func. Count: 31, Neg. LLF: 78.80239555978562
Iteration: 5, Func. Count: 37, Neg. LLF: 78.79096360085319
Iteration: 6, Func. Count: 43, Neg. LLF: 78.78116269980256
Iteration: 7, Func. Count: 49, Neg. LLF: 78.78053297198532
Iteration: 8, Func. Count: 55, Neg. LLF: 78.78074175802548
Iteration: 9, Func. Count: 62, Neg. LLF: 78.78047321291889
Iteration: 10, Func. Count: 67, Neg. LLF: 78.7804732129438
Optimization terminated successfully (Exit mode 0)
Current function value: 78.78047321291889
Iterations: 10
Function evaluations: 67
Gradient evaluations: 10
Iteration: 1, Func. Count: 8, Neg. LLF: 83.8257488669488
Iteration: 2, Func. Count: 17, Neg. LLF: 127.19935794988328
Iteration: 3, Func. Count: 26, Neg. LLF: 78.88358157085541
Iteration: 4, Func. Count: 33, Neg. LLF: 78.83038119863308
Iteration: 5, Func. Count: 40, Neg. LLF: 78.78653308957223
Iteration: 6, Func. Count: 47, Neg. LLF: 79.00447644719304
Iteration: 7, Func. Count: 55, Neg. LLF: 78.78206315156132
Iteration: 8, Func. Count: 62, Neg. LLF: 78.78100694117474
Iteration: 9, Func. Count: 69, Neg. LLF: 78.78055731699551
Iteration: 10, Func. Count: 76, Neg. LLF: 78.78050831133014
Iteration: 11, Func. Count: 83, Neg. LLF: 78.7804853821922
Iteration: 12, Func. Count: 90, Neg. LLF: 78.78047461670212
Iteration: 13, Func. Count: 97, Neg. LLF: 78.780473090149
Iteration: 14, Func. Count: 103, Neg. LLF: 78.78047309025372
Optimization terminated successfully (Exit mode 0)
Current function value: 78.780473090149
Iterations: 14
Function evaluations: 103
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 87.2904955317906
Iteration: 2, Func. Count: 19, Neg. LLF: 88.36278867401077
Iteration: 3, Func. Count: 29, Neg. LLF: 78.97741973731205
Iteration: 4, Func. Count: 37, Neg. LLF: 78.7863437519965
Iteration: 5, Func. Count: 45, Neg. LLF: 78.85678615564284
Iteration: 6, Func. Count: 54, Neg. LLF: 78.7806200928714
Iteration: 7, Func. Count: 62, Neg. LLF: 78.78055297410603
Iteration: 8, Func. Count: 70, Neg. LLF: 78.78047921798523
Iteration: 9, Func. Count: 78, Neg. LLF: 78.78047535991612
Iteration: 10, Func. Count: 86, Neg. LLF: 78.7804729888954
Iteration: 11, Func. Count: 93, Neg. LLF: 78.78047299797103
Optimization terminated successfully (Exit mode 0)
Current function value: 78.7804729888954
Iterations: 11
Function evaluations: 93
Gradient evaluations: 11
Iteration: 1, Func. Count: 10, Neg. LLF: 86.3887124210894
Iteration: 2, Func. Count: 21, Neg. LLF: 92.42683381293972
Iteration: 3, Func. Count: 32, Neg. LLF: 78.93964694730066
Iteration: 4, Func. Count: 41, Neg. LLF: 78.79476430103186
Iteration: 5, Func. Count: 50, Neg. LLF: 78.8562004318448
Iteration: 6, Func. Count: 60, Neg. LLF: 78.78086821548264
Iteration: 7, Func. Count: 69, Neg. LLF: 78.78056801310174
Iteration: 8, Func. Count: 78, Neg. LLF: 78.7804772115793
Iteration: 9, Func. Count: 87, Neg. LLF: 78.7804753900566
Iteration: 10, Func. Count: 96, Neg. LLF: 78.78047302707776
Iteration: 11, Func. Count: 104, Neg. LLF: 78.7804730377011
Optimization terminated successfully (Exit mode 0)
Current function value: 78.78047302707776
Iterations: 11
Function evaluations: 104
Gradient evaluations: 11
Iteration: 1, Func. Count: 11, Neg. LLF: 84.3378235896096
Iteration: 2, Func. Count: 23, Neg. LLF: 116.5721892568182
Iteration: 3, Func. Count: 35, Neg. LLF: 78.86506234408733
Iteration: 4, Func. Count: 45, Neg. LLF: 78.79610684065207
Iteration: 5, Func. Count: 55, Neg. LLF: 78.78552453913377
Iteration: 6, Func. Count: 65, Neg. LLF: 78.78074003166218
Iteration: 7, Func. Count: 75, Neg. LLF: 78.78051689219349
Iteration: 8, Func. Count: 85, Neg. LLF: 78.78047573133608
Iteration: 9, Func. Count: 95, Neg. LLF: 78.78047382549717
Iteration: 10, Func. Count: 104, Neg. LLF: 78.78047383235342
Optimization terminated successfully (Exit mode 0)
Current function value: 78.78047382549717
Iterations: 10
Function evaluations: 104
Gradient evaluations: 10
Iteration: 1, Func. Count: 8, Neg. LLF: 154.08949385167776
Iteration: 2, Func. Count: 19, Neg. LLF: 397.79489574190274
Iteration: 3, Func. Count: 28, Neg. LLF: 79.40703646759818
Iteration: 4, Func. Count: 36, Neg. LLF: 78.7974744740437
Iteration: 5, Func. Count: 43, Neg. LLF: 78.8076869607561
Iteration: 6, Func. Count: 51, Neg. LLF: 78.7862601332794
Iteration: 7, Func. Count: 58, Neg. LLF: 78.7808840268774
Iteration: 8, Func. Count: 65, Neg. LLF: 78.78048032231584
Iteration: 9, Func. Count: 72, Neg. LLF: 78.78047371791077
Iteration: 10, Func. Count: 79, Neg. LLF: 78.78047298675855
Optimization terminated successfully (Exit mode 0)
Current function value: 78.78047298675855
Iterations: 10
Function evaluations: 79
Gradient evaluations: 10
Iteration: 1, Func. Count: 9, Neg. LLF: 83.77494662413754
Iteration: 2, Func. Count: 19, Neg. LLF: 129.75922546182633
Iteration: 3, Func. Count: 29, Neg. LLF: 78.85759946431754
Iteration: 4, Func. Count: 37, Neg. LLF: 78.8791351071726
Iteration: 5, Func. Count: 46, Neg. LLF: 78.78881561553233
Iteration: 6, Func. Count: 54, Neg. LLF: 78.7867817182316
Iteration: 7, Func. Count: 63, Neg. LLF: 78.78074427601211
Iteration: 8, Func. Count: 71, Neg. LLF: 78.78061353920006
Iteration: 9, Func. Count: 79, Neg. LLF: 78.78049589636001
Iteration: 10, Func. Count: 87, Neg. LLF: 78.78047660731046
Iteration: 11, Func. Count: 95, Neg. LLF: 78.7804732236234
Iteration: 12, Func. Count: 102, Neg. LLF: 78.78047322367242
Optimization terminated successfully (Exit mode 0)
Current function value: 78.7804732236234
Iterations: 12
Function evaluations: 102
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 87.1575777876298
Iteration: 2, Func. Count: 21, Neg. LLF: 89.0153322243736
Iteration: 3, Func. Count: 32, Neg. LLF: 78.96597838249355
Iteration: 4, Func. Count: 41, Neg. LLF: 78.78518477877091
Iteration: 5, Func. Count: 50, Neg. LLF: 78.84789132597265
Iteration: 6, Func. Count: 60, Neg. LLF: 78.78058035416632
Iteration: 7, Func. Count: 69, Neg. LLF: 78.78053431498874
Iteration: 8, Func. Count: 78, Neg. LLF: 78.78047561982152
Iteration: 9, Func. Count: 87, Neg. LLF: 78.7804738850232
Iteration: 10, Func. Count: 96, Neg. LLF: 78.78047297843331
Optimization terminated successfully (Exit mode 0)
Current function value: 78.78047297843331
Iterations: 10
Function evaluations: 96
Gradient evaluations: 10
Iteration: 1, Func. Count: 11, Neg. LLF: 86.29224197727822
Iteration: 2, Func. Count: 23, Neg. LLF: 93.29909071332845
Iteration: 3, Func. Count: 35, Neg. LLF: 78.93882301933013
Iteration: 4, Func. Count: 45, Neg. LLF: 78.79349570061531
Iteration: 5, Func. Count: 55, Neg. LLF: 78.85196870554103
Iteration: 6, Func. Count: 66, Neg. LLF: 78.78097844053013
Iteration: 7, Func. Count: 76, Neg. LLF: 78.78055909233798
Iteration: 8, Func. Count: 86, Neg. LLF: 78.78047752519697
Iteration: 9, Func. Count: 96, Neg. LLF: 78.78047401311298
Iteration: 10, Func. Count: 105, Neg. LLF: 78.78047402365276
Optimization terminated successfully (Exit mode 0)
Current function value: 78.78047401311298
Iterations: 10
Function evaluations: 105
Gradient evaluations: 10
Iteration: 1, Func. Count: 12, Neg. LLF: 26594343.37236268
Iteration: 2, Func. Count: 26, Neg. LLF: 79.33617792403514
Iteration: 3, Func. Count: 38, Neg. LLF: 78.95525449933625
Iteration: 4, Func. Count: 49, Neg. LLF: 78.9549744144616
Iteration: 5, Func. Count: 60, Neg. LLF: 78.95471633644658
Iteration: 6, Func. Count: 71, Neg. LLF: 78.95471128134842
Iteration: 7, Func. Count: 82, Neg. LLF: 78.95470571695512
Iteration: 8, Func. Count: 93, Neg. LLF: 78.95469111959761
Iteration: 9, Func. Count: 104, Neg. LLF: 78.9546535320737
Iteration: 10, Func. Count: 115, Neg. LLF: 78.95457527917016
Iteration: 11, Func. Count: 126, Neg. LLF: 78.95449702863147
Iteration: 12, Func. Count: 137, Neg. LLF: 78.95439737512424
Iteration: 13, Func. Count: 148, Neg. LLF: 78.9543502339634
Iteration: 14, Func. Count: 159, Neg. LLF: 78.95434016877171
Iteration: 15, Func. Count: 170, Neg. LLF: 78.95425793657057
Iteration: 16, Func. Count: 181, Neg. LLF: 78.95362150131965
Iteration: 17, Func. Count: 192, Neg. LLF: 78.9535825904168
Iteration: 18, Func. Count: 203, Neg. LLF: 78.9535686373099
Iteration: 19, Func. Count: 214, Neg. LLF: 78.95356054051842
Iteration: 20, Func. Count: 225, Neg. LLF: 78.95352530196391
Iteration: 21, Func. Count: 236, Neg. LLF: 78.95342460673899
Iteration: 22, Func. Count: 247, Neg. LLF: 78.9526055790439
Iteration: 23, Func. Count: 258, Neg. LLF: 78.9523389103536
Iteration: 24, Func. Count: 269, Neg. LLF: 78.95212805231446
Iteration: 25, Func. Count: 280, Neg. LLF: 78.95184210029859
Iteration: 26, Func. Count: 291, Neg. LLF: 78.95465346764531
Iteration: 27, Func. Count: 303, Neg. LLF: 79.00721467360619
Iteration: 28, Func. Count: 315, Neg. LLF: 79.0599858205589
Iteration: 29, Func. Count: 327, Neg. LLF: 79.13093554316342
Iteration: 30, Func. Count: 340, Neg. LLF: 79.09788585904599
Iteration: 31, Func. Count: 352, Neg. LLF: 78.94678599031748
Iteration: 32, Func. Count: 364, Neg. LLF: 78.92823293929273
Iteration: 33, Func. Count: 375, Neg. LLF: 78.90278545730281
Iteration: 34, Func. Count: 386, Neg. LLF: 78.86760216877646
Iteration: 35, Func. Count: 397, Neg. LLF: 78.82482434265965
Iteration: 36, Func. Count: 408, Neg. LLF: 78.82131566968147
Iteration: 37, Func. Count: 419, Neg. LLF: 78.8114889766587
Iteration: 38, Func. Count: 430, Neg. LLF: 78.80565733255747
Iteration: 39, Func. Count: 441, Neg. LLF: 78.76502052903568
Iteration: 40, Func. Count: 452, Neg. LLF: 78.55272505796873
Iteration: 41, Func. Count: 463, Neg. LLF: 78.225603725509
Iteration: 42, Func. Count: 474, Neg. LLF: 77.97124737125979
Iteration: 43, Func. Count: 485, Neg. LLF: 79.58230081078517
Iteration: 44, Func. Count: 498, Neg. LLF: 121.76345043537805
Iteration: 45, Func. Count: 512, Neg. LLF: 139.77143149786514
Iteration: 46, Func. Count: 525, Neg. LLF: 77.85640986408053
Iteration: 47, Func. Count: 537, Neg. LLF: 77.76339157277307
Iteration: 48, Func. Count: 549, Neg. LLF: 77.73324599793801
Iteration: 49, Func. Count: 560, Neg. LLF: 77.73320452306211
Iteration: 50, Func. Count: 571, Neg. LLF: 77.733203967923
Optimization terminated successfully (Exit mode 0)
Current function value: 77.733203967923
Iterations: 51
Function evaluations: 571
Gradient evaluations: 50
Iteration: 1, Func. Count: 5, Neg. LLF: 163.5861321364116
Iteration: 2, Func. Count: 13, Neg. LLF: 200.85419612330912
Iteration: 3, Func. Count: 19, Neg. LLF: 79.12000126231705
Iteration: 4, Func. Count: 24, Neg. LLF: 78.56411885725703
Iteration: 5, Func. Count: 28, Neg. LLF: 78.55292857806461
Iteration: 6, Func. Count: 32, Neg. LLF: 78.55259619632314
Iteration: 7, Func. Count: 36, Neg. LLF: 78.55258992694448
Iteration: 8, Func. Count: 39, Neg. LLF: 78.55258992691182
Optimization terminated successfully (Exit mode 0)
Current function value: 78.55258992694448
Iterations: 8
Function evaluations: 39
Gradient evaluations: 8
Iteration: 1, Func. Count: 6, Neg. LLF: 108.24749371819811
Iteration: 2, Func. Count: 13, Neg. LLF: 84.82769707713831
Iteration: 3, Func. Count: 20, Neg. LLF: 78.41403905699538
Iteration: 4, Func. Count: 27, Neg. LLF: 78.38377304565006
Iteration: 5, Func. Count: 33, Neg. LLF: 78.38354753399629
Iteration: 6, Func. Count: 37, Neg. LLF: 78.38354753393945
Optimization terminated successfully (Exit mode 0)
Current function value: 78.38354753399629
Iterations: 6
Function evaluations: 37
Gradient evaluations: 6
Iteration: 1, Func. Count: 7, Neg. LLF: 100.60617649430378
Iteration: 2, Func. Count: 15, Neg. LLF: 81.21973831120216
Iteration: 3, Func. Count: 23, Neg. LLF: 79.94785837772481
Iteration: 4, Func. Count: 30, Neg. LLF: 78.5802280958288
Iteration: 5, Func. Count: 37, Neg. LLF: 78.26448136068755
Iteration: 6, Func. Count: 43, Neg. LLF: 78.25765945191289
Iteration: 7, Func. Count: 49, Neg. LLF: 78.25489697426943
Iteration: 8, Func. Count: 55, Neg. LLF: 78.25449669412174
Iteration: 9, Func. Count: 61, Neg. LLF: 78.25447828679718
Iteration: 10, Func. Count: 66, Neg. LLF: 78.25447828678081
Optimization terminated successfully (Exit mode 0)
Current function value: 78.25447828679718
Iterations: 10
Function evaluations: 66
Gradient evaluations: 10
Iteration: 1, Func. Count: 8, Neg. LLF: 107.99360995026537
Iteration: 2, Func. Count: 17, Neg. LLF: 80.28075716625848
Iteration: 3, Func. Count: 25, Neg. LLF: 79.14938831475247
Iteration: 4, Func. Count: 33, Neg. LLF: 78.3270058142151
Iteration: 5, Func. Count: 40, Neg. LLF: 78.30172813533584
Iteration: 6, Func. Count: 47, Neg. LLF: 78.2558988033383
Iteration: 7, Func. Count: 54, Neg. LLF: 78.25457724421373
Iteration: 8, Func. Count: 61, Neg. LLF: 78.25447973621117
Iteration: 9, Func. Count: 68, Neg. LLF: 78.25447832866729
Iteration: 10, Func. Count: 74, Neg. LLF: 78.25447836212747
Optimization terminated successfully (Exit mode 0)
Current function value: 78.25447832866729
Iterations: 10
Function evaluations: 74
Gradient evaluations: 10
Iteration: 1, Func. Count: 9, Neg. LLF: 101.70588342018192
Iteration: 2, Func. Count: 19, Neg. LLF: 116.6587092289887
Iteration: 3, Func. Count: 29, Neg. LLF: 79.06459753622318
Iteration: 4, Func. Count: 38, Neg. LLF: 78.25924071558833
Iteration: 5, Func. Count: 46, Neg. LLF: 78.25596147612389
Iteration: 6, Func. Count: 54, Neg. LLF: 78.2555144918078
Iteration: 7, Func. Count: 62, Neg. LLF: 78.25475925621717
Iteration: 8, Func. Count: 70, Neg. LLF: 78.25460529162314
Iteration: 9, Func. Count: 78, Neg. LLF: 78.25448253608032
Iteration: 10, Func. Count: 86, Neg. LLF: 78.25447836623546
Iteration: 11, Func. Count: 93, Neg. LLF: 78.25447839563209
Optimization terminated successfully (Exit mode 0)
Current function value: 78.25447836623546
Iterations: 11
Function evaluations: 93
Gradient evaluations: 11
Iteration: 1, Func. Count: 6, Neg. LLF: 175.40344072727177
Iteration: 2, Func. Count: 15, Neg. LLF: 146.6278577101936
Iteration: 3, Func. Count: 22, Neg. LLF: 77.80726125912757
Iteration: 4, Func. Count: 27, Neg. LLF: 77.79692210473945
Iteration: 5, Func. Count: 32, Neg. LLF: 77.79197547605187
Iteration: 6, Func. Count: 37, Neg. LLF: 77.78970606385518
Iteration: 7, Func. Count: 42, Neg. LLF: 77.78954508679122
Iteration: 8, Func. Count: 47, Neg. LLF: 77.78944647440278
Iteration: 9, Func. Count: 51, Neg. LLF: 77.78944640705922
Optimization terminated successfully (Exit mode 0)
Current function value: 77.78944647440278
Iterations: 9
Function evaluations: 51
Gradient evaluations: 9
Iteration: 1, Func. Count: 7, Neg. LLF: 104.18483351316219
Iteration: 2, Func. Count: 14, Neg. LLF: 103.88049513621363
Iteration: 3, Func. Count: 22, Neg. LLF: 77.83349974210078
Iteration: 4, Func. Count: 28, Neg. LLF: 77.83382556404298
Iteration: 5, Func. Count: 35, Neg. LLF: 77.77437934546782
Iteration: 6, Func. Count: 42, Neg. LLF: 89.89010221188123
Iteration: 7, Func. Count: 49, Neg. LLF: 77.6837899798842
Iteration: 8, Func. Count: 55, Neg. LLF: 77.68359826780755
Iteration: 9, Func. Count: 61, Neg. LLF: 77.68359425135984
Iteration: 10, Func. Count: 66, Neg. LLF: 77.68359425131726
Optimization terminated successfully (Exit mode 0)
Current function value: 77.68359425135984
Iterations: 10
Function evaluations: 66
Gradient evaluations: 10
Iteration: 1, Func. Count: 8, Neg. LLF: 105.36535195314586
Iteration: 2, Func. Count: 16, Neg. LLF: 101.97711282526954
Iteration: 3, Func. Count: 25, Neg. LLF: 83.27405352615102
Iteration: 4, Func. Count: 33, Neg. LLF: 77.46050456752151
Iteration: 5, Func. Count: 40, Neg. LLF: 77.30463601583054
Iteration: 6, Func. Count: 47, Neg. LLF: 77.27052002438474
Iteration: 7, Func. Count: 54, Neg. LLF: 77.26881425698008
Iteration: 8, Func. Count: 61, Neg. LLF: 77.26875837744954
Iteration: 9, Func. Count: 68, Neg. LLF: 77.26874033844439
Iteration: 10, Func. Count: 74, Neg. LLF: 77.26874033851784
Optimization terminated successfully (Exit mode 0)
Current function value: 77.26874033844439
Iterations: 10
Function evaluations: 74
Gradient evaluations: 10
Iteration: 1, Func. Count: 9, Neg. LLF: 95.21171169920062
Iteration: 2, Func. Count: 19, Neg. LLF: 16666226.946137257
Iteration: 3, Func. Count: 28, Neg. LLF: 84.1710834253808
Iteration: 4, Func. Count: 37, Neg. LLF: 77.55860028135913
Iteration: 5, Func. Count: 45, Neg. LLF: 77.35607389909877
Iteration: 6, Func. Count: 53, Neg. LLF: 77.33126873758565
Iteration: 7, Func. Count: 62, Neg. LLF: 77.26951513550605
Iteration: 8, Func. Count: 70, Neg. LLF: 77.26875344029533
Iteration: 9, Func. Count: 78, Neg. LLF: 77.26874194432658
Iteration: 10, Func. Count: 86, Neg. LLF: 77.26874017133215
Iteration: 11, Func. Count: 93, Neg. LLF: 77.26874021934248
Optimization terminated successfully (Exit mode 0)
Current function value: 77.26874017133215
Iterations: 11
Function evaluations: 93
Gradient evaluations: 11
Iteration: 1, Func. Count: 10, Neg. LLF: 98.33713276789317
Iteration: 2, Func. Count: 21, Neg. LLF: 19141560.415450715
Iteration: 3, Func. Count: 31, Neg. LLF: 92.62129733899735
Iteration: 4, Func. Count: 42, Neg. LLF: 77.33807773199237
Iteration: 5, Func. Count: 51, Neg. LLF: 77.35080143196556
Iteration: 6, Func. Count: 61, Neg. LLF: 77.2698267408177
Iteration: 7, Func. Count: 70, Neg. LLF: 77.26887593987057
Iteration: 8, Func. Count: 79, Neg. LLF: 77.26874304731888
Iteration: 9, Func. Count: 88, Neg. LLF: 77.26874008272193
Iteration: 10, Func. Count: 96, Neg. LLF: 77.26874012687928
Optimization terminated successfully (Exit mode 0)
Current function value: 77.26874008272193
Iterations: 10
Function evaluations: 96
Gradient evaluations: 10
Iteration: 1, Func. Count: 7, Neg. LLF: 156.04324186080473
Iteration: 2, Func. Count: 17, Neg. LLF: 135.1824359514974
Iteration: 3, Func. Count: 25, Neg. LLF: 77.80027634868615
Iteration: 4, Func. Count: 31, Neg. LLF: 78.32310498794786
Iteration: 5, Func. Count: 38, Neg. LLF: 78.93279539792415
Iteration: 6, Func. Count: 45, Neg. LLF: 77.58998623357618
Iteration: 7, Func. Count: 51, Neg. LLF: 77.58791499770903
Iteration: 8, Func. Count: 57, Neg. LLF: 77.58760774614431
Iteration: 9, Func. Count: 63, Neg. LLF: 77.58758465303875
Iteration: 10, Func. Count: 69, Neg. LLF: 77.58758057641025
Iteration: 11, Func. Count: 74, Neg. LLF: 77.58758057640853
Optimization terminated successfully (Exit mode 0)
Current function value: 77.58758057641025
Iterations: 11
Function evaluations: 74
Gradient evaluations: 11
Iteration: 1, Func. Count: 8, Neg. LLF: 101.72402126179642
Iteration: 2, Func. Count: 16, Neg. LLF: 111.2264393030795
Iteration: 3, Func. Count: 25, Neg. LLF: 77.86392883515715
Iteration: 4, Func. Count: 32, Neg. LLF: 80.02397696725937
Iteration: 5, Func. Count: 40, Neg. LLF: 81.15632252415068
Iteration: 6, Func. Count: 48, Neg. LLF: 92.0803977045011
Iteration: 7, Func. Count: 56, Neg. LLF: 77.5755723838033
Iteration: 8, Func. Count: 63, Neg. LLF: 77.57545896368048
Iteration: 9, Func. Count: 70, Neg. LLF: 77.57541430528367
Iteration: 10, Func. Count: 77, Neg. LLF: 77.57541355985997
Optimization terminated successfully (Exit mode 0)
Current function value: 77.57541355985997
Iterations: 10
Function evaluations: 77
Gradient evaluations: 10
Iteration: 1, Func. Count: 9, Neg. LLF: 98.23539290265761
Iteration: 2, Func. Count: 18, Neg. LLF: 128.63315869022924
Iteration: 3, Func. Count: 28, Neg. LLF: 77.85799554443739
Iteration: 4, Func. Count: 36, Neg. LLF: 79.5441560175981
Iteration: 5, Func. Count: 45, Neg. LLF: 619.9950966223904
Iteration: 6, Func. Count: 54, Neg. LLF: 77.42183915935829
Iteration: 7, Func. Count: 62, Neg. LLF: 77.30456096164444
Iteration: 8, Func. Count: 70, Neg. LLF: 77.27356413002188
Iteration: 9, Func. Count: 78, Neg. LLF: 77.26909343159107
Iteration: 10, Func. Count: 86, Neg. LLF: 77.26875432042989
Iteration: 11, Func. Count: 94, Neg. LLF: 77.26874323755213
Iteration: 12, Func. Count: 102, Neg. LLF: 77.26874003708745
Iteration: 13, Func. Count: 109, Neg. LLF: 77.26874003708187
Optimization terminated successfully (Exit mode 0)
Current function value: 77.26874003708745
Iterations: 13
Function evaluations: 109
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 102.41729682747463
Iteration: 2, Func. Count: 21, Neg. LLF: 16829612.400607843
Iteration: 3, Func. Count: 31, Neg. LLF: 78.4069847194871
Iteration: 4, Func. Count: 41, Neg. LLF: 78.12792307827722
Iteration: 5, Func. Count: 51, Neg. LLF: 86.20921221672978
Iteration: 6, Func. Count: 61, Neg. LLF: 77.29653480586563
Iteration: 7, Func. Count: 70, Neg. LLF: 77.2712271534605
Iteration: 8, Func. Count: 79, Neg. LLF: 77.26883649568128
Iteration: 9, Func. Count: 88, Neg. LLF: 77.26874358185879
Iteration: 10, Func. Count: 97, Neg. LLF: 77.2687402113449
Iteration: 11, Func. Count: 105, Neg. LLF: 77.26874025930829
Optimization terminated successfully (Exit mode 0)
Current function value: 77.2687402113449
Iterations: 11
Function evaluations: 105
Gradient evaluations: 11
Iteration: 1, Func. Count: 11, Neg. LLF: 104.95445454301026
Iteration: 2, Func. Count: 23, Neg. LLF: 2527979.653879196
Iteration: 3, Func. Count: 34, Neg. LLF: 80.66191693745743
Iteration: 4, Func. Count: 45, Neg. LLF: 77.88920844702527
Iteration: 5, Func. Count: 55, Neg. LLF: 79.21190284867231
Iteration: 6, Func. Count: 66, Neg. LLF: 77.38685448075195
Iteration: 7, Func. Count: 76, Neg. LLF: 77.35821764663007
Iteration: 8, Func. Count: 87, Neg. LLF: 77.27011952845972
Iteration: 9, Func. Count: 97, Neg. LLF: 77.2687878565701
Iteration: 10, Func. Count: 107, Neg. LLF: 77.26874245036986
Iteration: 11, Func. Count: 117, Neg. LLF: 77.26874003349366
Iteration: 12, Func. Count: 126, Neg. LLF: 77.26874007767192
Optimization terminated successfully (Exit mode 0)
Current function value: 77.26874003349366
Iterations: 12
Function evaluations: 126
Gradient evaluations: 12
Iteration: 1, Func. Count: 8, Neg. LLF: 166.5354702378748
Iteration: 2, Func. Count: 19, Neg. LLF: 136.3833964599834
Iteration: 3, Func. Count: 28, Neg. LLF: 77.71333049143384
Iteration: 4, Func. Count: 35, Neg. LLF: 77.72380773545883
Iteration: 5, Func. Count: 43, Neg. LLF: 78.16867760994674
Iteration: 6, Func. Count: 51, Neg. LLF: 77.58759109769647
Iteration: 7, Func. Count: 58, Neg. LLF: 77.58758107375706
Iteration: 8, Func. Count: 64, Neg. LLF: 77.5875811035629
Optimization terminated successfully (Exit mode 0)
Current function value: 77.58758107375706
Iterations: 8
Function evaluations: 64
Gradient evaluations: 8
Iteration: 1, Func. Count: 9, Neg. LLF: 101.06903712406431
Iteration: 2, Func. Count: 18, Neg. LLF: 122.11432447506714
Iteration: 3, Func. Count: 28, Neg. LLF: 77.80376986247535
Iteration: 4, Func. Count: 36, Neg. LLF: 84.79056361337364
Iteration: 5, Func. Count: 46, Neg. LLF: 77.93123431909069
Iteration: 6, Func. Count: 55, Neg. LLF: 95.87566782287409
Iteration: 7, Func. Count: 64, Neg. LLF: 77.57776581377435
Iteration: 8, Func. Count: 72, Neg. LLF: 77.57577364299975
Iteration: 9, Func. Count: 80, Neg. LLF: 77.575464837629
Iteration: 10, Func. Count: 88, Neg. LLF: 77.5754153707429
Iteration: 11, Func. Count: 96, Neg. LLF: 77.5754134309568
Iteration: 12, Func. Count: 103, Neg. LLF: 77.57541343095498
Optimization terminated successfully (Exit mode 0)
Current function value: 77.5754134309568
Iterations: 12
Function evaluations: 103
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 98.44545611588775
Iteration: 2, Func. Count: 20, Neg. LLF: 151.40062175937814
Iteration: 3, Func. Count: 31, Neg. LLF: 78.05946942174751
Iteration: 4, Func. Count: 41, Neg. LLF: 78.86647971494351
Iteration: 5, Func. Count: 51, Neg. LLF: 103.60187436794604
Iteration: 6, Func. Count: 61, Neg. LLF: 77.27271085768639
Iteration: 7, Func. Count: 70, Neg. LLF: 77.2694961659364
Iteration: 8, Func. Count: 79, Neg. LLF: 77.26874712488234
Iteration: 9, Func. Count: 88, Neg. LLF: 77.26874068929612
Iteration: 10, Func. Count: 97, Neg. LLF: 77.26874006184757
Optimization terminated successfully (Exit mode 0)
Current function value: 77.26874006184757
Iterations: 10
Function evaluations: 97
Gradient evaluations: 10
Iteration: 1, Func. Count: 11, Neg. LLF: 103.01776217224318
Iteration: 2, Func. Count: 23, Neg. LLF: 2923247.1693894016
Iteration: 3, Func. Count: 34, Neg. LLF: 78.45509954556873
Iteration: 4, Func. Count: 45, Neg. LLF: 78.08926950158558
Iteration: 5, Func. Count: 56, Neg. LLF: 85.6887107594852
Iteration: 6, Func. Count: 67, Neg. LLF: 77.29748124565602
Iteration: 7, Func. Count: 77, Neg. LLF: 77.27146612618205
Iteration: 8, Func. Count: 87, Neg. LLF: 77.26884187195299
Iteration: 9, Func. Count: 97, Neg. LLF: 77.26874351177565
Iteration: 10, Func. Count: 107, Neg. LLF: 77.26874019824245
Iteration: 11, Func. Count: 116, Neg. LLF: 77.26874024620095
Optimization terminated successfully (Exit mode 0)
Current function value: 77.26874019824245
Iterations: 11
Function evaluations: 116
Gradient evaluations: 11
Iteration: 1, Func. Count: 12, Neg. LLF: 105.60974899316555
Iteration: 2, Func. Count: 25, Neg. LLF: 2477078.2790610925
Iteration: 3, Func. Count: 37, Neg. LLF: 81.76362201240535
Iteration: 4, Func. Count: 49, Neg. LLF: 77.84632892975247
Iteration: 5, Func. Count: 60, Neg. LLF: 78.38227545095236
Iteration: 6, Func. Count: 72, Neg. LLF: 77.35501498686698
Iteration: 7, Func. Count: 83, Neg. LLF: 77.33720376896102
Iteration: 8, Func. Count: 95, Neg. LLF: 77.26963793411693
Iteration: 9, Func. Count: 106, Neg. LLF: 77.26876848701087
Iteration: 10, Func. Count: 117, Neg. LLF: 77.26874141567693
Iteration: 11, Func. Count: 128, Neg. LLF: 77.2687400327178
Iteration: 12, Func. Count: 138, Neg. LLF: 77.26874007689224
Optimization terminated successfully (Exit mode 0)
Current function value: 77.2687400327178
Iterations: 12
Function evaluations: 138
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 174.12540831619057
Iteration: 2, Func. Count: 21, Neg. LLF: 136.13899990040528
Iteration: 3, Func. Count: 31, Neg. LLF: 78.16816163305218
Iteration: 4, Func. Count: 39, Neg. LLF: 77.64001119492691
Iteration: 5, Func. Count: 47, Neg. LLF: 79.08384903179872
Iteration: 6, Func. Count: 56, Neg. LLF: 77.58829640476618
Iteration: 7, Func. Count: 64, Neg. LLF: 77.58780078618702
Iteration: 8, Func. Count: 72, Neg. LLF: 77.58761129916607
Iteration: 9, Func. Count: 80, Neg. LLF: 77.58758528886017
Iteration: 10, Func. Count: 88, Neg. LLF: 77.58758027845354
Iteration: 11, Func. Count: 95, Neg. LLF: 77.58758032251568
Optimization terminated successfully (Exit mode 0)
Current function value: 77.58758027845354
Iterations: 11
Function evaluations: 95
Gradient evaluations: 11
Iteration: 1, Func. Count: 10, Neg. LLF: 99.7731423240627
Iteration: 2, Func. Count: 20, Neg. LLF: 138.58910759775142
Iteration: 3, Func. Count: 31, Neg. LLF: 77.9582204101455
Iteration: 4, Func. Count: 40, Neg. LLF: 78.16269014719413
Iteration: 5, Func. Count: 50, Neg. LLF: 101.77755777408674
Iteration: 6, Func. Count: 60, Neg. LLF: 102.1006358953275
Iteration: 7, Func. Count: 70, Neg. LLF: 77.57648324322908
Iteration: 8, Func. Count: 79, Neg. LLF: 77.5754521453349
Iteration: 9, Func. Count: 88, Neg. LLF: 77.57541681629348
Iteration: 10, Func. Count: 97, Neg. LLF: 77.57541349214605
Iteration: 11, Func. Count: 105, Neg. LLF: 77.57541349213687
Optimization terminated successfully (Exit mode 0)
Current function value: 77.57541349214605
Iterations: 11
Function evaluations: 105
Gradient evaluations: 11
Iteration: 1, Func. Count: 11, Neg. LLF: 98.72600083635531
Iteration: 2, Func. Count: 22, Neg. LLF: 178.1599618431236
Iteration: 3, Func. Count: 34, Neg. LLF: 78.24138759011606
Iteration: 4, Func. Count: 45, Neg. LLF: 78.45404693359629
Iteration: 5, Func. Count: 56, Neg. LLF: 111.28245186944774
Iteration: 6, Func. Count: 67, Neg. LLF: 77.27223485620064
Iteration: 7, Func. Count: 77, Neg. LLF: 77.26940701579667
Iteration: 8, Func. Count: 87, Neg. LLF: 77.26875464204706
Iteration: 9, Func. Count: 97, Neg. LLF: 77.26874069108455
Iteration: 10, Func. Count: 106, Neg. LLF: 77.26874069101271
Optimization terminated successfully (Exit mode 0)
Current function value: 77.26874069108455
Iterations: 10
Function evaluations: 106
Gradient evaluations: 10
Iteration: 1, Func. Count: 12, Neg. LLF: 103.40878331763662
Iteration: 2, Func. Count: 25, Neg. LLF: 2876408.517626884
Iteration: 3, Func. Count: 37, Neg. LLF: 78.27437126846947
Iteration: 4, Func. Count: 49, Neg. LLF: 78.17223728338232
Iteration: 5, Func. Count: 61, Neg. LLF: 90.05309384741534
Iteration: 6, Func. Count: 73, Neg. LLF: 77.29648718920332
Iteration: 7, Func. Count: 84, Neg. LLF: 77.27121820936495
Iteration: 8, Func. Count: 95, Neg. LLF: 77.26885547191061
Iteration: 9, Func. Count: 106, Neg. LLF: 77.26874517389555
Iteration: 10, Func. Count: 117, Neg. LLF: 77.2687402641961
Iteration: 11, Func. Count: 127, Neg. LLF: 77.26874031215567
Optimization terminated successfully (Exit mode 0)
Current function value: 77.2687402641961
Iterations: 11
Function evaluations: 127
Gradient evaluations: 11
Iteration: 1, Func. Count: 13, Neg. LLF: 105.94552982159661
Iteration: 2, Func. Count: 27, Neg. LLF: 2454303.2169357096
Iteration: 3, Func. Count: 40, Neg. LLF: 82.48956932717748
Iteration: 4, Func. Count: 53, Neg. LLF: 77.8309005455943
Iteration: 5, Func. Count: 65, Neg. LLF: 78.14918595145076
Iteration: 6, Func. Count: 78, Neg. LLF: 77.33615802226156
Iteration: 7, Func. Count: 90, Neg. LLF: 77.3229401649903
Iteration: 8, Func. Count: 103, Neg. LLF: 77.26939994656752
Iteration: 9, Func. Count: 115, Neg. LLF: 77.26876001544758
Iteration: 10, Func. Count: 127, Neg. LLF: 77.26874095454261
Iteration: 11, Func. Count: 139, Neg. LLF: 77.2687400330147
Optimization terminated successfully (Exit mode 0)
Current function value: 77.2687400330147
Iterations: 11
Function evaluations: 139
Gradient evaluations: 11
Iteration: 1, Func. Count: 6, Neg. LLF: 141.48250407198162
Iteration: 2, Func. Count: 15, Neg. LLF: 134.21931757437426
Iteration: 3, Func. Count: 22, Neg. LLF: 79.04397865990084
Iteration: 4, Func. Count: 28, Neg. LLF: 78.60350661263247
Iteration: 5, Func. Count: 34, Neg. LLF: 78.49242457213525
Iteration: 6, Func. Count: 40, Neg. LLF: 78.48948638233205
Iteration: 7, Func. Count: 46, Neg. LLF: 78.48503535685029
Iteration: 8, Func. Count: 51, Neg. LLF: 78.4850341063679
Iteration: 9, Func. Count: 55, Neg. LLF: 78.48503410636366
Optimization terminated successfully (Exit mode 0)
Current function value: 78.4850341063679
Iterations: 9
Function evaluations: 55
Gradient evaluations: 9
Iteration: 1, Func. Count: 7, Neg. LLF: 102.83826930592751
Iteration: 2, Func. Count: 15, Neg. LLF: 147.3755471946666
Iteration: 3, Func. Count: 23, Neg. LLF: 78.57636387172134
Iteration: 4, Func. Count: 30, Neg. LLF: 79.57625963741822
Iteration: 5, Func. Count: 37, Neg. LLF: 78.3849361466983
Iteration: 6, Func. Count: 44, Neg. LLF: 78.36440112487531
Iteration: 7, Func. Count: 51, Neg. LLF: 78.36238697547408
Iteration: 8, Func. Count: 56, Neg. LLF: 78.36238697550077
Optimization terminated successfully (Exit mode 0)
Current function value: 78.36238697547408
Iterations: 8
Function evaluations: 56
Gradient evaluations: 8
Iteration: 1, Func. Count: 8, Neg. LLF: 85.95836757270922
Iteration: 2, Func. Count: 17, Neg. LLF: 2260.9339321320567
Iteration: 3, Func. Count: 26, Neg. LLF: 78.59355294991296
Iteration: 4, Func. Count: 34, Neg. LLF: 79.33540013147409
Iteration: 5, Func. Count: 43, Neg. LLF: 78.2680070508465
Iteration: 6, Func. Count: 50, Neg. LLF: 78.25511610556163
Iteration: 7, Func. Count: 57, Neg. LLF: 78.25455505154177
Iteration: 8, Func. Count: 64, Neg. LLF: 78.25451072435438
Iteration: 9, Func. Count: 71, Neg. LLF: 78.25448036982391
Iteration: 10, Func. Count: 78, Neg. LLF: 78.25447838851714
Iteration: 11, Func. Count: 84, Neg. LLF: 78.25447838854079
Optimization terminated successfully (Exit mode 0)
Current function value: 78.25447838851714
Iterations: 11
Function evaluations: 84
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 89.41391089736626
Iteration: 2, Func. Count: 19, Neg. LLF: 119.21362686543057
Iteration: 3, Func. Count: 29, Neg. LLF: 79.34926989808707
Iteration: 4, Func. Count: 38, Neg. LLF: 78.97441899469698
Iteration: 5, Func. Count: 47, Neg. LLF: 78.26807357074564
Iteration: 6, Func. Count: 55, Neg. LLF: 78.256148672599
Iteration: 7, Func. Count: 63, Neg. LLF: 78.25483230256884
Iteration: 8, Func. Count: 71, Neg. LLF: 78.25450863079112
Iteration: 9, Func. Count: 79, Neg. LLF: 78.25447896482417
Iteration: 10, Func. Count: 87, Neg. LLF: 78.25447834764633
Optimization terminated successfully (Exit mode 0)
Current function value: 78.25447834764633
Iterations: 10
Function evaluations: 87
Gradient evaluations: 10
Iteration: 1, Func. Count: 10, Neg. LLF: 91.28302556534439
Iteration: 2, Func. Count: 21, Neg. LLF: 93.80731901981166
Iteration: 3, Func. Count: 32, Neg. LLF: 80.8857284715583
Iteration: 4, Func. Count: 42, Neg. LLF: 78.59128945078984
Iteration: 5, Func. Count: 51, Neg. LLF: 78.29874049162338
Iteration: 6, Func. Count: 60, Neg. LLF: 78.8929143134407
Iteration: 7, Func. Count: 70, Neg. LLF: 78.2560037210158
Iteration: 8, Func. Count: 79, Neg. LLF: 78.25450222760053
Iteration: 9, Func. Count: 88, Neg. LLF: 78.25447852079368
Iteration: 10, Func. Count: 96, Neg. LLF: 78.25447855017642
Optimization terminated successfully (Exit mode 0)
Current function value: 78.25447852079368
Iterations: 10
Function evaluations: 96
Gradient evaluations: 10
Iteration: 1, Func. Count: 7, Neg. LLF: 138.5101629487959
Iteration: 2, Func. Count: 17, Neg. LLF: 130.92556107269846
Iteration: 3, Func. Count: 25, Neg. LLF: 96.28741812410101
Iteration: 4, Func. Count: 32, Neg. LLF: 77.80843991507058
Iteration: 5, Func. Count: 38, Neg. LLF: 77.71089732872534
Iteration: 6, Func. Count: 44, Neg. LLF: 77.72318183300327
Iteration: 7, Func. Count: 51, Neg. LLF: 77.66357528197553
Iteration: 8, Func. Count: 57, Neg. LLF: 77.66325645251239
Iteration: 9, Func. Count: 63, Neg. LLF: 77.66323770593401
Iteration: 10, Func. Count: 69, Neg. LLF: 77.66323218239268
Iteration: 11, Func. Count: 75, Neg. LLF: 77.66323102253996
Iteration: 12, Func. Count: 80, Neg. LLF: 77.66323094824195
Optimization terminated successfully (Exit mode 0)
Current function value: 77.66323102253996
Iterations: 12
Function evaluations: 80
Gradient evaluations: 12
Iteration: 1, Func. Count: 8, Neg. LLF: 96.3321265413463
Iteration: 2, Func. Count: 16, Neg. LLF: 103.1922794122089
Iteration: 3, Func. Count: 25, Neg. LLF: 83.49404378921372
Iteration: 4, Func. Count: 33, Neg. LLF: 77.87831886213857
Iteration: 5, Func. Count: 40, Neg. LLF: 77.78140294075025
Iteration: 6, Func. Count: 47, Neg. LLF: 85.97058105576082
Iteration: 7, Func. Count: 55, Neg. LLF: 77.67896205508131
Iteration: 8, Func. Count: 62, Neg. LLF: 77.68077970786887
Iteration: 9, Func. Count: 70, Neg. LLF: 77.67207277270528
Iteration: 10, Func. Count: 77, Neg. LLF: 77.67146159320609
Iteration: 11, Func. Count: 84, Neg. LLF: 77.67116053660999
Iteration: 12, Func. Count: 91, Neg. LLF: 77.67106675268813
Iteration: 13, Func. Count: 98, Neg. LLF: 77.67089964739945
Iteration: 14, Func. Count: 105, Neg. LLF: 77.67087975949116
Iteration: 15, Func. Count: 112, Neg. LLF: 77.67087889201798
Optimization terminated successfully (Exit mode 0)
Current function value: 77.67087889201798
Iterations: 15
Function evaluations: 112
Gradient evaluations: 15
Iteration: 1, Func. Count: 9, Neg. LLF: 83.6917066728877
Iteration: 2, Func. Count: 18, Neg. LLF: 121.61015469175787
Iteration: 3, Func. Count: 28, Neg. LLF: 78.62644579450104
Iteration: 4, Func. Count: 37, Neg. LLF: 78.67336674417912
Iteration: 5, Func. Count: 46, Neg. LLF: 77.47733470641835
Iteration: 6, Func. Count: 54, Neg. LLF: 77.33001504223883
Iteration: 7, Func. Count: 62, Neg. LLF: 77.33681494730259
Iteration: 8, Func. Count: 71, Neg. LLF: 77.2714140651319
Iteration: 9, Func. Count: 79, Neg. LLF: 77.26885535935928
Iteration: 10, Func. Count: 87, Neg. LLF: 77.26874081465425
Iteration: 11, Func. Count: 95, Neg. LLF: 77.26874003557502
Optimization terminated successfully (Exit mode 0)
Current function value: 77.26874003557502
Iterations: 11
Function evaluations: 95
Gradient evaluations: 11
Iteration: 1, Func. Count: 10, Neg. LLF: 85.20946921278323
Iteration: 2, Func. Count: 21, Neg. LLF: 3471591.314034535
Iteration: 3, Func. Count: 31, Neg. LLF: 26654690.0839747
Iteration: 4, Func. Count: 42, Neg. LLF: 77.796984660228
Iteration: 5, Func. Count: 51, Neg. LLF: 80.4089675027322
Iteration: 6, Func. Count: 61, Neg. LLF: 77.28033681621191
Iteration: 7, Func. Count: 70, Neg. LLF: 77.27010784490656
Iteration: 8, Func. Count: 79, Neg. LLF: 77.26905960426363
Iteration: 9, Func. Count: 88, Neg. LLF: 77.26881954281778
Iteration: 10, Func. Count: 97, Neg. LLF: 77.26875558475419
Iteration: 11, Func. Count: 106, Neg. LLF: 77.26874039623138
Iteration: 12, Func. Count: 114, Neg. LLF: 77.26874044427412
Optimization terminated successfully (Exit mode 0)
Current function value: 77.26874039623138
Iterations: 12
Function evaluations: 114
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 89.95091171517731
Iteration: 2, Func. Count: 23, Neg. LLF: 8171084.007900814
Iteration: 3, Func. Count: 34, Neg. LLF: 41273907.4574336
Iteration: 4, Func. Count: 46, Neg. LLF: 77.79373567784954
Iteration: 5, Func. Count: 56, Neg. LLF: 77.31457863795671
Iteration: 6, Func. Count: 66, Neg. LLF: 77.38043902153
Iteration: 7, Func. Count: 77, Neg. LLF: 77.26924493457861
Iteration: 8, Func. Count: 87, Neg. LLF: 77.26886531080694
Iteration: 9, Func. Count: 97, Neg. LLF: 77.2687559743516
Iteration: 10, Func. Count: 107, Neg. LLF: 77.26874058216231
Iteration: 11, Func. Count: 117, Neg. LLF: 77.26874003876763
Optimization terminated successfully (Exit mode 0)
Current function value: 77.26874003876763
Iterations: 11
Function evaluations: 117
Gradient evaluations: 11
Iteration: 1, Func. Count: 8, Neg. LLF: 138.0858232566084
Iteration: 2, Func. Count: 19, Neg. LLF: 130.9131767418234
Iteration: 3, Func. Count: 28, Neg. LLF: 100.14306105315944
Iteration: 4, Func. Count: 36, Neg. LLF: 77.82867557071624
Iteration: 5, Func. Count: 43, Neg. LLF: 77.70738548561452
Iteration: 6, Func. Count: 50, Neg. LLF: 81.22169432377068
Iteration: 7, Func. Count: 59, Neg. LLF: 77.6397962994069
Iteration: 8, Func. Count: 66, Neg. LLF: 77.57588225648405
Iteration: 9, Func. Count: 73, Neg. LLF: 77.5670052664344
Iteration: 10, Func. Count: 80, Neg. LLF: 77.566379736757
Iteration: 11, Func. Count: 87, Neg. LLF: 77.56634319602757
Iteration: 12, Func. Count: 94, Neg. LLF: 77.56634142811508
Iteration: 13, Func. Count: 100, Neg. LLF: 77.56634142812162
Optimization terminated successfully (Exit mode 0)
Current function value: 77.56634142811508
Iterations: 13
Function evaluations: 100
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 103.1050706548975
Iteration: 2, Func. Count: 18, Neg. LLF: 103.02509426945916
Iteration: 3, Func. Count: 28, Neg. LLF: 86.13765664059801
Iteration: 4, Func. Count: 38, Neg. LLF: 77.85796229744007
Iteration: 5, Func. Count: 46, Neg. LLF: 77.61513618832198
Iteration: 6, Func. Count: 54, Neg. LLF: 85.80943955726377
Iteration: 7, Func. Count: 64, Neg. LLF: 77.59378069959766
Iteration: 8, Func. Count: 73, Neg. LLF: 77.56785925743617
Iteration: 9, Func. Count: 81, Neg. LLF: 77.56672909747064
Iteration: 10, Func. Count: 89, Neg. LLF: 77.5664029024272
Iteration: 11, Func. Count: 97, Neg. LLF: 77.56634664226209
Iteration: 12, Func. Count: 105, Neg. LLF: 77.56634187365034
Iteration: 13, Func. Count: 113, Neg. LLF: 77.5663411065155
Optimization terminated successfully (Exit mode 0)
Current function value: 77.5663411065155
Iterations: 13
Function evaluations: 113
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 84.68249574039133
Iteration: 2, Func. Count: 20, Neg. LLF: 114.29077288865456
Iteration: 3, Func. Count: 31, Neg. LLF: 79.13725074123553
Iteration: 4, Func. Count: 41, Neg. LLF: 78.26682362053083
Iteration: 5, Func. Count: 51, Neg. LLF: 78.59605171945336
Iteration: 6, Func. Count: 61, Neg. LLF: 77.29161339753338
Iteration: 7, Func. Count: 70, Neg. LLF: 77.27141764639272
Iteration: 8, Func. Count: 79, Neg. LLF: 77.26880523086221
Iteration: 9, Func. Count: 88, Neg. LLF: 77.26874684624693
Iteration: 10, Func. Count: 97, Neg. LLF: 77.26874032610868
Iteration: 11, Func. Count: 105, Neg. LLF: 77.26874032614109
Optimization terminated successfully (Exit mode 0)
Current function value: 77.26874032610868
Iterations: 11
Function evaluations: 105
Gradient evaluations: 11
Iteration: 1, Func. Count: 11, Neg. LLF: 86.36730777390548
Iteration: 2, Func. Count: 23, Neg. LLF: 3628670.4606353943
Iteration: 3, Func. Count: 34, Neg. LLF: 25234126.117226988
Iteration: 4, Func. Count: 46, Neg. LLF: 77.80806645636214
Iteration: 5, Func. Count: 56, Neg. LLF: 80.78670206431015
Iteration: 6, Func. Count: 67, Neg. LLF: 77.29720928740767
Iteration: 7, Func. Count: 77, Neg. LLF: 77.27405643115615
Iteration: 8, Func. Count: 87, Neg. LLF: 77.26928018595667
Iteration: 9, Func. Count: 97, Neg. LLF: 77.268826086856
Iteration: 10, Func. Count: 107, Neg. LLF: 77.26876971408501
Iteration: 11, Func. Count: 117, Neg. LLF: 77.26874008003571
Iteration: 12, Func. Count: 126, Neg. LLF: 77.26874012800276
Optimization terminated successfully (Exit mode 0)
Current function value: 77.26874008003571
Iterations: 12
Function evaluations: 126
Gradient evaluations: 12
Iteration: 1, Func. Count: 12, Neg. LLF: 90.9196583779125
Iteration: 2, Func. Count: 25, Neg. LLF: 6649482.527944327
Iteration: 3, Func. Count: 37, Neg. LLF: 30610683.154579837
Iteration: 4, Func. Count: 50, Neg. LLF: 77.79551649496847
Iteration: 5, Func. Count: 61, Neg. LLF: 77.82026847243789
Iteration: 6, Func. Count: 73, Neg. LLF: 78.92857421827034
Iteration: 7, Func. Count: 86, Neg. LLF: 78.40441604597589
Iteration: 8, Func. Count: 98, Neg. LLF: 77.43941660253303
Iteration: 9, Func. Count: 110, Neg. LLF: 77.27619399891383
Iteration: 10, Func. Count: 121, Neg. LLF: 77.26953696769088
Iteration: 11, Func. Count: 132, Neg. LLF: 77.26893213317233
Iteration: 12, Func. Count: 143, Neg. LLF: 77.26878343281385
Iteration: 13, Func. Count: 154, Neg. LLF: 77.26874056768665
Iteration: 14, Func. Count: 165, Neg. LLF: 77.26874003527278
Optimization terminated successfully (Exit mode 0)
Current function value: 77.26874003527278
Iterations: 14
Function evaluations: 165
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 146.0769034311743
Iteration: 2, Func. Count: 21, Neg. LLF: 129.68863679800884
Iteration: 3, Func. Count: 31, Neg. LLF: 104.0251297670331
Iteration: 4, Func. Count: 40, Neg. LLF: 77.84588960805819
Iteration: 5, Func. Count: 48, Neg. LLF: 77.67847539686234
Iteration: 6, Func. Count: 56, Neg. LLF: 80.77658344486464
Iteration: 7, Func. Count: 67, Neg. LLF: 77.5958340493027
Iteration: 8, Func. Count: 75, Neg. LLF: 77.5684551148923
Iteration: 9, Func. Count: 83, Neg. LLF: 77.56643853870045
Iteration: 10, Func. Count: 91, Neg. LLF: 77.56634237341758
Iteration: 11, Func. Count: 99, Neg. LLF: 77.56634105621546
Iteration: 12, Func. Count: 106, Neg. LLF: 77.56634108412356
Optimization terminated successfully (Exit mode 0)
Current function value: 77.56634105621546
Iterations: 12
Function evaluations: 106
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 104.55157264958075
Iteration: 2, Func. Count: 20, Neg. LLF: 102.58681614124227
Iteration: 3, Func. Count: 31, Neg. LLF: 85.13214140343966
Iteration: 4, Func. Count: 42, Neg. LLF: 77.8667221506121
Iteration: 5, Func. Count: 51, Neg. LLF: 77.61841948544918
Iteration: 6, Func. Count: 60, Neg. LLF: 85.86144097115259
Iteration: 7, Func. Count: 71, Neg. LLF: 77.5947554051568
Iteration: 8, Func. Count: 81, Neg. LLF: 77.56783425629067
Iteration: 9, Func. Count: 90, Neg. LLF: 77.56667470908931
Iteration: 10, Func. Count: 99, Neg. LLF: 77.56640892972793
Iteration: 11, Func. Count: 108, Neg. LLF: 77.56634715571171
Iteration: 12, Func. Count: 117, Neg. LLF: 77.56634186622229
Iteration: 13, Func. Count: 126, Neg. LLF: 77.5663411233466
Optimization terminated successfully (Exit mode 0)
Current function value: 77.5663411233466
Iterations: 13
Function evaluations: 126
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 85.28179719354956
Iteration: 2, Func. Count: 22, Neg. LLF: 117.72381477689066
Iteration: 3, Func. Count: 34, Neg. LLF: 78.547560314424
Iteration: 4, Func. Count: 45, Neg. LLF: 78.41310510942655
Iteration: 5, Func. Count: 56, Neg. LLF: 78.13085820516486
Iteration: 6, Func. Count: 67, Neg. LLF: 77.33622144391038
Iteration: 7, Func. Count: 77, Neg. LLF: 77.27609173994847
Iteration: 8, Func. Count: 87, Neg. LLF: 77.26914975167385
Iteration: 9, Func. Count: 97, Neg. LLF: 77.26875105590852
Iteration: 10, Func. Count: 107, Neg. LLF: 77.26874050143583
Iteration: 11, Func. Count: 117, Neg. LLF: 77.2687400489541
Optimization terminated successfully (Exit mode 0)
Current function value: 77.2687400489541
Iterations: 11
Function evaluations: 117
Gradient evaluations: 11
Iteration: 1, Func. Count: 12, Neg. LLF: 87.2655302626985
Iteration: 2, Func. Count: 25, Neg. LLF: 3539379.060319731
Iteration: 3, Func. Count: 37, Neg. LLF: 25469224.21962675
Iteration: 4, Func. Count: 50, Neg. LLF: 77.804352178985
Iteration: 5, Func. Count: 61, Neg. LLF: 80.52346768951315
Iteration: 6, Func. Count: 73, Neg. LLF: 77.28459048404507
Iteration: 7, Func. Count: 84, Neg. LLF: 77.26948500342903
Iteration: 8, Func. Count: 95, Neg. LLF: 77.26916063873446
Iteration: 9, Func. Count: 106, Neg. LLF: 77.26876216267446
Iteration: 10, Func. Count: 117, Neg. LLF: 77.26874866666921
Iteration: 11, Func. Count: 128, Neg. LLF: 77.26874003324096
Iteration: 12, Func. Count: 138, Neg. LLF: 77.26874008120375
Optimization terminated successfully (Exit mode 0)
Current function value: 77.26874003324096
Iterations: 12
Function evaluations: 138
Gradient evaluations: 12
Iteration: 1, Func. Count: 13, Neg. LLF: 91.65038811908455
Iteration: 2, Func. Count: 27, Neg. LLF: 6461783.295579667
Iteration: 3, Func. Count: 40, Neg. LLF: 30657589.747603327
Iteration: 4, Func. Count: 54, Neg. LLF: 77.7948620558334
Iteration: 5, Func. Count: 66, Neg. LLF: 77.78857134787881
Iteration: 6, Func. Count: 79, Neg. LLF: 79.70867840173206
Iteration: 7, Func. Count: 93, Neg. LLF: 77.72534111277511
Iteration: 8, Func. Count: 106, Neg. LLF: 77.31325777396269
Iteration: 9, Func. Count: 118, Neg. LLF: 77.27603202171842
Iteration: 10, Func. Count: 130, Neg. LLF: 77.26922863856579
Iteration: 11, Func. Count: 142, Neg. LLF: 77.26885818488812
Iteration: 12, Func. Count: 154, Neg. LLF: 77.26875639984604
Iteration: 13, Func. Count: 166, Neg. LLF: 77.26874056781521
Iteration: 14, Func. Count: 177, Neg. LLF: 77.268740611954
Optimization terminated successfully (Exit mode 0)
Current function value: 77.26874056781521
Iterations: 14
Function evaluations: 177
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 152.75122962849673
Iteration: 2, Func. Count: 23, Neg. LLF: 129.70674900338423
Iteration: 3, Func. Count: 34, Neg. LLF: 118.73448254084795
Iteration: 4, Func. Count: 44, Neg. LLF: 77.84736327538549
Iteration: 5, Func. Count: 53, Neg. LLF: 77.65736075217733
Iteration: 6, Func. Count: 62, Neg. LLF: 80.82249394797223
Iteration: 7, Func. Count: 74, Neg. LLF: 77.58563705799816
Iteration: 8, Func. Count: 83, Neg. LLF: 77.56812884970837
Iteration: 9, Func. Count: 92, Neg. LLF: 77.56643259795133
Iteration: 10, Func. Count: 101, Neg. LLF: 77.56634335435685
Iteration: 11, Func. Count: 110, Neg. LLF: 77.56634105565317
Iteration: 12, Func. Count: 118, Neg. LLF: 77.56634109626064
Optimization terminated successfully (Exit mode 0)
Current function value: 77.56634105565317
Iterations: 12
Function evaluations: 118
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 103.87380703297286
Iteration: 2, Func. Count: 22, Neg. LLF: 102.58398441965278
Iteration: 3, Func. Count: 34, Neg. LLF: 84.67739345545792
Iteration: 4, Func. Count: 45, Neg. LLF: 77.86134786852807
Iteration: 5, Func. Count: 55, Neg. LLF: 77.67625126593808
Iteration: 6, Func. Count: 65, Neg. LLF: 84.26648716830367
Iteration: 7, Func. Count: 77, Neg. LLF: 77.61758567544892
Iteration: 8, Func. Count: 87, Neg. LLF: 77.57025746831198
Iteration: 9, Func. Count: 97, Neg. LLF: 77.56887861925608
Iteration: 10, Func. Count: 107, Neg. LLF: 77.5666586754015
Iteration: 11, Func. Count: 117, Neg. LLF: 77.56642313548694
Iteration: 12, Func. Count: 127, Neg. LLF: 77.56634632474777
Iteration: 13, Func. Count: 137, Neg. LLF: 77.56634250769316
Iteration: 14, Func. Count: 147, Neg. LLF: 77.56634111453947
Iteration: 15, Func. Count: 156, Neg. LLF: 77.56634111559399
Optimization terminated successfully (Exit mode 0)
Current function value: 77.56634111453947
Iterations: 15
Function evaluations: 156
Gradient evaluations: 15
Iteration: 1, Func. Count: 12, Neg. LLF: 85.44666764664528
Iteration: 2, Func. Count: 24, Neg. LLF: 119.85932601910534
Iteration: 3, Func. Count: 37, Neg. LLF: 78.31356061582522
Iteration: 4, Func. Count: 49, Neg. LLF: 78.67273757568736
Iteration: 5, Func. Count: 61, Neg. LLF: 77.9614829833719
Iteration: 6, Func. Count: 73, Neg. LLF: 77.37880163128214
Iteration: 7, Func. Count: 84, Neg. LLF: 77.27761415713795
Iteration: 8, Func. Count: 95, Neg. LLF: 77.26952014410449
Iteration: 9, Func. Count: 106, Neg. LLF: 77.26877819251669
Iteration: 10, Func. Count: 117, Neg. LLF: 77.26874027627534
Iteration: 11, Func. Count: 127, Neg. LLF: 77.26874027619553
Optimization terminated successfully (Exit mode 0)
Current function value: 77.26874027627534
Iterations: 11
Function evaluations: 127
Gradient evaluations: 11
Iteration: 1, Func. Count: 13, Neg. LLF: 87.63664188385916
Iteration: 2, Func. Count: 27, Neg. LLF: 3478496.926528989
Iteration: 3, Func. Count: 40, Neg. LLF: 25573364.949284673
Iteration: 4, Func. Count: 54, Neg. LLF: 77.80346767295539
Iteration: 5, Func. Count: 66, Neg. LLF: 80.41644491085175
Iteration: 6, Func. Count: 79, Neg. LLF: 77.28245725635217
Iteration: 7, Func. Count: 91, Neg. LLF: 77.26906859685259
Iteration: 8, Func. Count: 103, Neg. LLF: 77.26875572946827
Iteration: 9, Func. Count: 115, Neg. LLF: 77.2687472654832
Iteration: 10, Func. Count: 127, Neg. LLF: 77.26874146674398
Iteration: 11, Func. Count: 139, Neg. LLF: 77.26874014701052
Iteration: 12, Func. Count: 150, Neg. LLF: 77.26874019501244
Optimization terminated successfully (Exit mode 0)
Current function value: 77.26874014701052
Iterations: 12
Function evaluations: 150
Gradient evaluations: 12
Iteration: 1, Func. Count: 14, Neg. LLF: 91.92807642022471
Iteration: 2, Func. Count: 29, Neg. LLF: 6418300.965481079
Iteration: 3, Func. Count: 43, Neg. LLF: 30599114.039865002
Iteration: 4, Func. Count: 58, Neg. LLF: 77.79475678031217
Iteration: 5, Func. Count: 71, Neg. LLF: 77.77826401833937
Iteration: 6, Func. Count: 85, Neg. LLF: 79.99997578610271
Iteration: 7, Func. Count: 100, Neg. LLF: 77.64453294712781
Iteration: 8, Func. Count: 114, Neg. LLF: 77.29719363626725
Iteration: 9, Func. Count: 127, Neg. LLF: 77.27302171196779
Iteration: 10, Func. Count: 140, Neg. LLF: 77.26911065928651
Iteration: 11, Func. Count: 153, Neg. LLF: 77.26883796138837
Iteration: 12, Func. Count: 166, Neg. LLF: 77.26874975367602
Iteration: 13, Func. Count: 179, Neg. LLF: 77.26874021023337
Iteration: 14, Func. Count: 191, Neg. LLF: 77.26874025441428
Optimization terminated successfully (Exit mode 0)
Current function value: 77.26874021023337
Iterations: 14
Function evaluations: 191
Gradient evaluations: 14
Iteration: 1, Func. Count: 7, Neg. LLF: 117.24275719535356
Iteration: 2, Func. Count: 17, Neg. LLF: 161.9781070542425
Iteration: 3, Func. Count: 24, Neg. LLF: 1447.2078579242088
Iteration: 4, Func. Count: 31, Neg. LLF: 77.62005544038941
Iteration: 5, Func. Count: 38, Neg. LLF: 78.78830956242065
Iteration: 6, Func. Count: 45, Neg. LLF: 77.46894304543704
Iteration: 7, Func. Count: 52, Neg. LLF: 77.44454661249756
Iteration: 8, Func. Count: 58, Neg. LLF: 77.56795176875956
Iteration: 9, Func. Count: 65, Neg. LLF: 77.44289079956131
Iteration: 10, Func. Count: 71, Neg. LLF: 77.44273178720917
Iteration: 11, Func. Count: 77, Neg. LLF: 77.44273090223736
Optimization terminated successfully (Exit mode 0)
Current function value: 77.44273090223736
Iterations: 11
Function evaluations: 77
Gradient evaluations: 11
Iteration: 1, Func. Count: 8, Neg. LLF: 78.60145725366571
Iteration: 2, Func. Count: 16, Neg. LLF: 77.79540467746502
Iteration: 3, Func. Count: 23, Neg. LLF: 100.91885559947285
Iteration: 4, Func. Count: 32, Neg. LLF: 91.38717314507961
Iteration: 5, Func. Count: 40, Neg. LLF: 79.2208603164137
Iteration: 6, Func. Count: 48, Neg. LLF: 81.34686509660176
Iteration: 7, Func. Count: 56, Neg. LLF: 77.5155835791943
Iteration: 8, Func. Count: 64, Neg. LLF: 77.66915417118784
Iteration: 9, Func. Count: 72, Neg. LLF: 77.44375024644366
Iteration: 10, Func. Count: 79, Neg. LLF: 77.44278496340267
Iteration: 11, Func. Count: 86, Neg. LLF: 77.44273919206297
Iteration: 12, Func. Count: 93, Neg. LLF: 77.44273087556145
Iteration: 13, Func. Count: 99, Neg. LLF: 77.44273090083543
Optimization terminated successfully (Exit mode 0)
Current function value: 77.44273087556145
Iterations: 13
Function evaluations: 99
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 81.38687009421464
Iteration: 2, Func. Count: 19, Neg. LLF: 78.13491549435409
Iteration: 3, Func. Count: 27, Neg. LLF: 78.74772379983419
Iteration: 4, Func. Count: 36, Neg. LLF: 315.2552371889899
Iteration: 5, Func. Count: 45, Neg. LLF: 83.31416607239927
Iteration: 6, Func. Count: 55, Neg. LLF: 77.45831913272272
Iteration: 7, Func. Count: 63, Neg. LLF: 77.71018834422681
Iteration: 8, Func. Count: 72, Neg. LLF: 77.68050186446865
Iteration: 9, Func. Count: 81, Neg. LLF: 77.4427436208079
Iteration: 10, Func. Count: 89, Neg. LLF: 77.44273140513313
Iteration: 11, Func. Count: 97, Neg. LLF: 77.44273081940885
Optimization terminated successfully (Exit mode 0)
Current function value: 77.44273081940885
Iterations: 11
Function evaluations: 97
Gradient evaluations: 11
Iteration: 1, Func. Count: 10, Neg. LLF: 83.2708660925993
Iteration: 2, Func. Count: 21, Neg. LLF: 78.88513937881352
Iteration: 3, Func. Count: 31, Neg. LLF: 79.27071647822562
Iteration: 4, Func. Count: 41, Neg. LLF: 79.33111470000335
Iteration: 5, Func. Count: 51, Neg. LLF: 82.35887922579977
Iteration: 6, Func. Count: 62, Neg. LLF: 77.45885542891791
Iteration: 7, Func. Count: 71, Neg. LLF: 77.44396225148664
Iteration: 8, Func. Count: 80, Neg. LLF: 77.57751736347893
Iteration: 9, Func. Count: 91, Neg. LLF: 77.44277284988206
Iteration: 10, Func. Count: 100, Neg. LLF: 77.442730961403
Iteration: 11, Func. Count: 108, Neg. LLF: 77.4427310024446
Optimization terminated successfully (Exit mode 0)
Current function value: 77.442730961403
Iterations: 11
Function evaluations: 108
Gradient evaluations: 11
Iteration: 1, Func. Count: 11, Neg. LLF: 83.23558831562373
Iteration: 2, Func. Count: 23, Neg. LLF: 86.35327106422709
Iteration: 3, Func. Count: 34, Neg. LLF: 78.12298205178115
Iteration: 4, Func. Count: 44, Neg. LLF: 80.61919509638084
Iteration: 5, Func. Count: 55, Neg. LLF: 494.09339468518687
Iteration: 6, Func. Count: 66, Neg. LLF: 78.4766602262026
Iteration: 7, Func. Count: 77, Neg. LLF: 77.92709379050557
Iteration: 8, Func. Count: 88, Neg. LLF: 77.72190102654409
Iteration: 9, Func. Count: 99, Neg. LLF: 77.44323298352857
Iteration: 10, Func. Count: 109, Neg. LLF: 77.44277882358976
Iteration: 11, Func. Count: 119, Neg. LLF: 77.44273118153575
Iteration: 12, Func. Count: 128, Neg. LLF: 77.4427312107933
Optimization terminated successfully (Exit mode 0)
Current function value: 77.44273118153575
Iterations: 12
Function evaluations: 128
Gradient evaluations: 12
Iteration: 1, Func. Count: 8, Neg. LLF: 116.9081886973278
Iteration: 2, Func. Count: 19, Neg. LLF: 12136.024568830791
Iteration: 3, Func. Count: 27, Neg. LLF: 1933.7643034064947
Iteration: 4, Func. Count: 35, Neg. LLF: 77.08904105986801
Iteration: 5, Func. Count: 42, Neg. LLF: 77.71859768209724
Iteration: 6, Func. Count: 50, Neg. LLF: 78.293064181343
Iteration: 7, Func. Count: 59, Neg. LLF: 77.07062675884303
Iteration: 8, Func. Count: 67, Neg. LLF: 77.01716417509668
Iteration: 9, Func. Count: 74, Neg. LLF: 77.0164454730266
Iteration: 10, Func. Count: 81, Neg. LLF: 77.01639848306003
Iteration: 11, Func. Count: 87, Neg. LLF: 77.01639840558363
Optimization terminated successfully (Exit mode 0)
Current function value: 77.01639848306003
Iterations: 11
Function evaluations: 87
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 81.12875854962908
Iteration: 2, Func. Count: 20, Neg. LLF: 22518359.369769555
Iteration: 3, Func. Count: 29, Neg. LLF: 78.85082673062361
Iteration: 4, Func. Count: 38, Neg. LLF: 79.88457027493864
Iteration: 5, Func. Count: 47, Neg. LLF: 78.00300805482922
Iteration: 6, Func. Count: 56, Neg. LLF: 77.04212005920311
Iteration: 7, Func. Count: 64, Neg. LLF: 78.96255516644558
Iteration: 8, Func. Count: 74, Neg. LLF: 77.02176488669214
Iteration: 9, Func. Count: 82, Neg. LLF: 77.01762383327353
Iteration: 10, Func. Count: 90, Neg. LLF: 77.0164026710643
Iteration: 11, Func. Count: 98, Neg. LLF: 77.01639814806428
Iteration: 12, Func. Count: 105, Neg. LLF: 77.01639816966367
Optimization terminated successfully (Exit mode 0)
Current function value: 77.01639814806428
Iterations: 12
Function evaluations: 105
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 81.60176401502466
Iteration: 2, Func. Count: 21, Neg. LLF: 20212752.270955592
Iteration: 3, Func. Count: 31, Neg. LLF: 84.15475113482928
Iteration: 4, Func. Count: 41, Neg. LLF: 77.82605971627306
Iteration: 5, Func. Count: 51, Neg. LLF: 77.43830618832362
Iteration: 6, Func. Count: 61, Neg. LLF: 77.06456846121094
Iteration: 7, Func. Count: 70, Neg. LLF: 81.11232543692546
Iteration: 8, Func. Count: 81, Neg. LLF: 77.01992616663779
Iteration: 9, Func. Count: 90, Neg. LLF: 77.01665088456197
Iteration: 10, Func. Count: 99, Neg. LLF: 77.01641377375148
Iteration: 11, Func. Count: 108, Neg. LLF: 77.01639820451716
Iteration: 12, Func. Count: 116, Neg. LLF: 77.01639822881461
Optimization terminated successfully (Exit mode 0)
Current function value: 77.01639820451716
Iterations: 12
Function evaluations: 116
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 82.30273586962345
Iteration: 2, Func. Count: 23, Neg. LLF: 17913696.625001088
Iteration: 3, Func. Count: 34, Neg. LLF: 77.79191844043156
Iteration: 4, Func. Count: 44, Neg. LLF: 77.3090223219018
Iteration: 5, Func. Count: 54, Neg. LLF: 118.26265046421129
Iteration: 6, Func. Count: 66, Neg. LLF: 79.57692610097158
Iteration: 7, Func. Count: 78, Neg. LLF: 77.58025758078654
Iteration: 8, Func. Count: 89, Neg. LLF: 77.04731038095106
Iteration: 9, Func. Count: 99, Neg. LLF: 77.05297580952544
Iteration: 10, Func. Count: 110, Neg. LLF: 77.01651288996123
Iteration: 11, Func. Count: 120, Neg. LLF: 77.01641141027349
Iteration: 12, Func. Count: 130, Neg. LLF: 77.01639819516737
Iteration: 13, Func. Count: 139, Neg. LLF: 77.01639823953798
Optimization terminated successfully (Exit mode 0)
Current function value: 77.01639819516737
Iterations: 13
Function evaluations: 139
Gradient evaluations: 13
Iteration: 1, Func. Count: 12, Neg. LLF: 82.16646729140199
Iteration: 2, Func. Count: 25, Neg. LLF: 17998226.236575596
Iteration: 3, Func. Count: 37, Neg. LLF: 77.79337436362827
Iteration: 4, Func. Count: 48, Neg. LLF: 77.795220245699
Iteration: 5, Func. Count: 60, Neg. LLF: 135.5952745102092
Iteration: 6, Func. Count: 73, Neg. LLF: 77.04778782454304
Iteration: 7, Func. Count: 84, Neg. LLF: 116.4784559257187
Iteration: 8, Func. Count: 97, Neg. LLF: 77.04563352151042
Iteration: 9, Func. Count: 109, Neg. LLF: 77.0165371857194
Iteration: 10, Func. Count: 120, Neg. LLF: 77.01640712066757
Iteration: 11, Func. Count: 131, Neg. LLF: 77.01640126672774
Iteration: 12, Func. Count: 142, Neg. LLF: 77.01639813071603
Iteration: 13, Func. Count: 152, Neg. LLF: 77.01639815976414
Optimization terminated successfully (Exit mode 0)
Current function value: 77.01639813071603
Iterations: 13
Function evaluations: 152
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 116.88823601860092
Iteration: 2, Func. Count: 21, Neg. LLF: 248977.46822477682
Iteration: 3, Func. Count: 30, Neg. LLF: 5341.270831686388
Iteration: 4, Func. Count: 39, Neg. LLF: 77.07541934268284
Iteration: 5, Func. Count: 47, Neg. LLF: 77.54883418613946
Iteration: 6, Func. Count: 56, Neg. LLF: 77.18224127584956
Iteration: 7, Func. Count: 65, Neg. LLF: 78.30038225823264
Iteration: 8, Func. Count: 75, Neg. LLF: 76.99374304585471
Iteration: 9, Func. Count: 83, Neg. LLF: 76.99329686835043
Iteration: 10, Func. Count: 91, Neg. LLF: 76.99327227294965
Iteration: 11, Func. Count: 98, Neg. LLF: 76.99327225187274
Optimization terminated successfully (Exit mode 0)
Current function value: 76.99327227294965
Iterations: 11
Function evaluations: 98
Gradient evaluations: 11
Iteration: 1, Func. Count: 10, Neg. LLF: 80.9968802128594
Iteration: 2, Func. Count: 22, Neg. LLF: 22734555.92482108
Iteration: 3, Func. Count: 32, Neg. LLF: 79.00130542074389
Iteration: 4, Func. Count: 42, Neg. LLF: 79.59767737664939
Iteration: 5, Func. Count: 52, Neg. LLF: 78.02329506932384
Iteration: 6, Func. Count: 62, Neg. LLF: 77.04310235496692
Iteration: 7, Func. Count: 71, Neg. LLF: 110.54184111874656
Iteration: 8, Func. Count: 82, Neg. LLF: 76.99900766484554
Iteration: 9, Func. Count: 91, Neg. LLF: 76.99476512804969
Iteration: 10, Func. Count: 100, Neg. LLF: 76.99329452981995
Iteration: 11, Func. Count: 109, Neg. LLF: 76.99327417453121
Iteration: 12, Func. Count: 118, Neg. LLF: 76.99327201379961
Iteration: 13, Func. Count: 126, Neg. LLF: 76.99327203807512
Optimization terminated successfully (Exit mode 0)
Current function value: 76.99327201379961
Iterations: 13
Function evaluations: 126
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 81.43346590173907
Iteration: 2, Func. Count: 23, Neg. LLF: 21447634.873843294
Iteration: 3, Func. Count: 34, Neg. LLF: 85.12238441850192
Iteration: 4, Func. Count: 45, Neg. LLF: 77.81150440968455
Iteration: 5, Func. Count: 56, Neg. LLF: 77.40690994339354
Iteration: 6, Func. Count: 66, Neg. LLF: 77.15041100445836
Iteration: 7, Func. Count: 76, Neg. LLF: 84.93045465540506
Iteration: 8, Func. Count: 88, Neg. LLF: 77.0470291121253
Iteration: 9, Func. Count: 98, Neg. LLF: 77.00820535365231
Iteration: 10, Func. Count: 108, Neg. LLF: 76.99483011221996
Iteration: 11, Func. Count: 118, Neg. LLF: 76.99332361924209
Iteration: 12, Func. Count: 128, Neg. LLF: 76.99327236771931
Iteration: 13, Func. Count: 137, Neg. LLF: 76.99327239399999
Optimization terminated successfully (Exit mode 0)
Current function value: 76.99327236771931
Iterations: 13
Function evaluations: 137
Gradient evaluations: 13
Iteration: 1, Func. Count: 12, Neg. LLF: 82.0974197658352
Iteration: 2, Func. Count: 25, Neg. LLF: 18045319.020746846
Iteration: 3, Func. Count: 37, Neg. LLF: 77.85603384750254
Iteration: 4, Func. Count: 48, Neg. LLF: 79.55859462825327
Iteration: 5, Func. Count: 60, Neg. LLF: 119.21840749230897
Iteration: 6, Func. Count: 72, Neg. LLF: 81.05934494090745
Iteration: 7, Func. Count: 85, Neg. LLF: 77.01789337453876
Iteration: 8, Func. Count: 96, Neg. LLF: 77.08648472426016
Iteration: 9, Func. Count: 108, Neg. LLF: 76.99329517831214
Iteration: 10, Func. Count: 119, Neg. LLF: 76.99327241838166
Iteration: 11, Func. Count: 129, Neg. LLF: 76.99327246407806
Optimization terminated successfully (Exit mode 0)
Current function value: 76.99327241838166
Iterations: 11
Function evaluations: 129
Gradient evaluations: 11
Iteration: 1, Func. Count: 13, Neg. LLF: 81.95590093986951
Iteration: 2, Func. Count: 27, Neg. LLF: 18121783.677429263
Iteration: 3, Func. Count: 40, Neg. LLF: 77.87916158508243
Iteration: 4, Func. Count: 52, Neg. LLF: 79.08148631543222
Iteration: 5, Func. Count: 65, Neg. LLF: 125.28847200638805
Iteration: 6, Func. Count: 78, Neg. LLF: 81.50998983084574
Iteration: 7, Func. Count: 92, Neg. LLF: 77.00870241459144
Iteration: 8, Func. Count: 104, Neg. LLF: 77.1517131384471
Iteration: 9, Func. Count: 117, Neg. LLF: 76.99329539713837
Iteration: 10, Func. Count: 129, Neg. LLF: 76.99327890045438
Iteration: 11, Func. Count: 141, Neg. LLF: 76.99327233758635
Iteration: 12, Func. Count: 152, Neg. LLF: 76.9932723680574
Optimization terminated successfully (Exit mode 0)
Current function value: 76.99327233758635
Iterations: 12
Function evaluations: 152
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 114.91524483567407
Iteration: 2, Func. Count: 23, Neg. LLF: 111.25483683788887
Iteration: 3, Func. Count: 34, Neg. LLF: 13922466.831604421
Iteration: 4, Func. Count: 44, Neg. LLF: 77.12076610386788
Iteration: 5, Func. Count: 53, Neg. LLF: 76.66306932721615
Iteration: 6, Func. Count: 62, Neg. LLF: 82.8843748873024
Iteration: 7, Func. Count: 73, Neg. LLF: 76.62846609018185
Iteration: 8, Func. Count: 82, Neg. LLF: 76.62389009992631
Iteration: 9, Func. Count: 91, Neg. LLF: 76.6229653581385
Iteration: 10, Func. Count: 100, Neg. LLF: 76.62269800105382
Iteration: 11, Func. Count: 109, Neg. LLF: 76.62263852379736
Iteration: 12, Func. Count: 118, Neg. LLF: 76.62262841509387
Iteration: 13, Func. Count: 126, Neg. LLF: 76.62262840166586
Optimization terminated successfully (Exit mode 0)
Current function value: 76.62262841509387
Iterations: 13
Function evaluations: 126
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 80.47258111224535
Iteration: 2, Func. Count: 24, Neg. LLF: 16409948.763999594
Iteration: 3, Func. Count: 35, Neg. LLF: 80.82512526819293
Iteration: 4, Func. Count: 46, Neg. LLF: 76.8378862282735
Iteration: 5, Func. Count: 56, Neg. LLF: 76.65345803111511
Iteration: 6, Func. Count: 66, Neg. LLF: 81.3159833087191
Iteration: 7, Func. Count: 78, Neg. LLF: 77.5940194885298
Iteration: 8, Func. Count: 89, Neg. LLF: 76.62341722110318
Iteration: 9, Func. Count: 99, Neg. LLF: 76.62285400313759
Iteration: 10, Func. Count: 109, Neg. LLF: 76.62263433144845
Iteration: 11, Func. Count: 119, Neg. LLF: 76.6226283464689
Iteration: 12, Func. Count: 128, Neg. LLF: 76.62262836832934
Optimization terminated successfully (Exit mode 0)
Current function value: 76.6226283464689
Iterations: 12
Function evaluations: 128
Gradient evaluations: 12
Iteration: 1, Func. Count: 12, Neg. LLF: 80.63559187563344
Iteration: 2, Func. Count: 26, Neg. LLF: 14083564.761260217
Iteration: 3, Func. Count: 38, Neg. LLF: 83.07044116968635
Iteration: 4, Func. Count: 50, Neg. LLF: 76.72540473872374
Iteration: 5, Func. Count: 61, Neg. LLF: 77.95517917924604
Iteration: 6, Func. Count: 73, Neg. LLF: 76.7391719214185
Iteration: 7, Func. Count: 85, Neg. LLF: 80.15477193818343
Iteration: 8, Func. Count: 97, Neg. LLF: 76.62324780143082
Iteration: 9, Func. Count: 108, Neg. LLF: 76.62282360125286
Iteration: 10, Func. Count: 119, Neg. LLF: 76.62263513278938
Iteration: 11, Func. Count: 130, Neg. LLF: 76.62262829056084
Iteration: 12, Func. Count: 140, Neg. LLF: 76.62262830681293
Optimization terminated successfully (Exit mode 0)
Current function value: 76.62262829056084
Iterations: 12
Function evaluations: 140
Gradient evaluations: 12
Iteration: 1, Func. Count: 13, Neg. LLF: 80.97890272030844
Iteration: 2, Func. Count: 28, Neg. LLF: 11862802.871768147
Iteration: 3, Func. Count: 41, Neg. LLF: 78.74485221580926
Iteration: 4, Func. Count: 54, Neg. LLF: 76.90854086072544
Iteration: 5, Func. Count: 66, Neg. LLF: 78.00468730312772
Iteration: 6, Func. Count: 79, Neg. LLF: 76.89691356579142
Iteration: 7, Func. Count: 92, Neg. LLF: 83.90123437091204
Iteration: 8, Func. Count: 106, Neg. LLF: 76.62426074314358
Iteration: 9, Func. Count: 118, Neg. LLF: 76.62283923782546
Iteration: 10, Func. Count: 130, Neg. LLF: 76.62265449106545
Iteration: 11, Func. Count: 142, Neg. LLF: 76.62262905784658
Iteration: 12, Func. Count: 154, Neg. LLF: 76.62262825274716
Optimization terminated successfully (Exit mode 0)
Current function value: 76.62262825274716
Iterations: 12
Function evaluations: 154
Gradient evaluations: 12
Iteration: 1, Func. Count: 14, Neg. LLF: 80.8296723793894
Iteration: 2, Func. Count: 30, Neg. LLF: 11859314.668272892
Iteration: 3, Func. Count: 44, Neg. LLF: 79.47899312808364
Iteration: 4, Func. Count: 58, Neg. LLF: 76.81146107683658
Iteration: 5, Func. Count: 71, Neg. LLF: 77.97714575860333
Iteration: 6, Func. Count: 85, Neg. LLF: 76.66692673908739
Iteration: 7, Func. Count: 98, Neg. LLF: 78.01903569719677
Iteration: 8, Func. Count: 113, Neg. LLF: 76.62944655080746
Iteration: 9, Func. Count: 126, Neg. LLF: 76.62327080645987
Iteration: 10, Func. Count: 139, Neg. LLF: 76.62279700407821
Iteration: 11, Func. Count: 152, Neg. LLF: 76.62263516265759
Iteration: 12, Func. Count: 165, Neg. LLF: 76.62262870102246
Iteration: 13, Func. Count: 177, Neg. LLF: 76.62262875049312
Optimization terminated successfully (Exit mode 0)
Current function value: 76.62262870102246
Iterations: 13
Function evaluations: 177
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 114.57422567511831
Iteration: 2, Func. Count: 24, Neg. LLF: 122.43879095229678
Iteration: 3, Func. Count: 36, Neg. LLF: 11645878.546129124
Iteration: 4, Func. Count: 47, Neg. LLF: 76.8842904644797
Iteration: 5, Func. Count: 57, Neg. LLF: 78.03093090086176
Iteration: 6, Func. Count: 68, Neg. LLF: 77.1018184268622
Iteration: 7, Func. Count: 79, Neg. LLF: 76.66264530172802
Iteration: 8, Func. Count: 90, Neg. LLF: 83.31372730723413
Iteration: 9, Func. Count: 101, Neg. LLF: 76.62363160583287
Iteration: 10, Func. Count: 111, Neg. LLF: 76.62266916810047
Iteration: 11, Func. Count: 121, Neg. LLF: 76.62262864638909
Iteration: 12, Func. Count: 130, Neg. LLF: 76.62262868700508
Optimization terminated successfully (Exit mode 0)
Current function value: 76.62262864638909
Iterations: 12
Function evaluations: 130
Gradient evaluations: 12
Iteration: 1, Func. Count: 12, Neg. LLF: 80.4199097853803
Iteration: 2, Func. Count: 26, Neg. LLF: 16387889.453169521
Iteration: 3, Func. Count: 38, Neg. LLF: 80.97017116046797
Iteration: 4, Func. Count: 50, Neg. LLF: 76.82873001545505
Iteration: 5, Func. Count: 61, Neg. LLF: 76.65320195248783
Iteration: 6, Func. Count: 72, Neg. LLF: 81.13357960471674
Iteration: 7, Func. Count: 85, Neg. LLF: 77.55518639812774
Iteration: 8, Func. Count: 97, Neg. LLF: 76.62341633776666
Iteration: 9, Func. Count: 108, Neg. LLF: 76.62285142480422
Iteration: 10, Func. Count: 119, Neg. LLF: 76.62263456936891
Iteration: 11, Func. Count: 130, Neg. LLF: 76.6226283462457
Iteration: 12, Func. Count: 140, Neg. LLF: 76.62262836810551
Optimization terminated successfully (Exit mode 0)
Current function value: 76.6226283462457
Iterations: 12
Function evaluations: 140
Gradient evaluations: 12
Iteration: 1, Func. Count: 13, Neg. LLF: 80.58700102918917
Iteration: 2, Func. Count: 28, Neg. LLF: 14012241.053196177
Iteration: 3, Func. Count: 41, Neg. LLF: 82.97424767684495
Iteration: 4, Func. Count: 54, Neg. LLF: 76.7247459364945
Iteration: 5, Func. Count: 66, Neg. LLF: 77.95740483781316
Iteration: 6, Func. Count: 79, Neg. LLF: 76.73501602240552
Iteration: 7, Func. Count: 92, Neg. LLF: 80.02592265573118
Iteration: 8, Func. Count: 105, Neg. LLF: 76.62330538834249
Iteration: 9, Func. Count: 117, Neg. LLF: 76.62283815830912
Iteration: 10, Func. Count: 129, Neg. LLF: 76.62263587656696
Iteration: 11, Func. Count: 141, Neg. LLF: 76.62262830829675
Iteration: 12, Func. Count: 152, Neg. LLF: 76.62262832454927
Optimization terminated successfully (Exit mode 0)
Current function value: 76.62262830829675
Iterations: 12
Function evaluations: 152
Gradient evaluations: 12
Iteration: 1, Func. Count: 14, Neg. LLF: 80.95522533720309
Iteration: 2, Func. Count: 30, Neg. LLF: 11827085.438281944
Iteration: 3, Func. Count: 44, Neg. LLF: 78.54929564793743
Iteration: 4, Func. Count: 58, Neg. LLF: 76.95134875575759
Iteration: 5, Func. Count: 71, Neg. LLF: 78.0581614031634
Iteration: 6, Func. Count: 85, Neg. LLF: 76.9888615352729
Iteration: 7, Func. Count: 99, Neg. LLF: 83.49891229320835
Iteration: 8, Func. Count: 114, Neg. LLF: 76.62459399900177
Iteration: 9, Func. Count: 127, Neg. LLF: 76.6228683462495
Iteration: 10, Func. Count: 140, Neg. LLF: 76.6226596649029
Iteration: 11, Func. Count: 153, Neg. LLF: 76.62262946615859
Iteration: 12, Func. Count: 166, Neg. LLF: 76.62262828793747
Iteration: 13, Func. Count: 178, Neg. LLF: 76.62262833034123
Optimization terminated successfully (Exit mode 0)
Current function value: 76.62262828793747
Iterations: 13
Function evaluations: 178
Gradient evaluations: 13
Iteration: 1, Func. Count: 15, Neg. LLF: 80.82283949038232
Iteration: 2, Func. Count: 32, Neg. LLF: 11819985.724447591
Iteration: 3, Func. Count: 47, Neg. LLF: 79.20305377770656
Iteration: 4, Func. Count: 62, Neg. LLF: 76.8418938124206
Iteration: 5, Func. Count: 76, Neg. LLF: 78.01597349732076
Iteration: 6, Func. Count: 91, Neg. LLF: 76.72012829549749
Iteration: 7, Func. Count: 106, Neg. LLF: 84.54071834970665
Iteration: 8, Func. Count: 122, Neg. LLF: 76.62390245999562
Iteration: 9, Func. Count: 136, Neg. LLF: 76.62282601442188
Iteration: 10, Func. Count: 150, Neg. LLF: 76.62264689895719
Iteration: 11, Func. Count: 164, Neg. LLF: 76.62262889489786
Iteration: 12, Func. Count: 178, Neg. LLF: 76.62262822421748
Optimization terminated successfully (Exit mode 0)
Current function value: 76.62262822421748
Iterations: 12
Function evaluations: 178
Gradient evaluations: 12
Iteration: 1, Func. Count: 8, Neg. LLF: 123.7815901608339
Iteration: 2, Func. Count: 19, Neg. LLF: 134.84496195373254
Iteration: 3, Func. Count: 28, Neg. LLF: 639.6947021670137
Iteration: 4, Func. Count: 36, Neg. LLF: 88.5146684721533
Iteration: 5, Func. Count: 45, Neg. LLF: 77.44912847604104
Iteration: 6, Func. Count: 52, Neg. LLF: 77.44945339020597
Iteration: 7, Func. Count: 60, Neg. LLF: 77.45122047425852
Iteration: 8, Func. Count: 68, Neg. LLF: 77.4427449984098
Iteration: 9, Func. Count: 75, Neg. LLF: 77.44273174207788
Iteration: 10, Func. Count: 82, Neg. LLF: 77.44273081772953
Optimization terminated successfully (Exit mode 0)
Current function value: 77.44273081772953
Iterations: 10
Function evaluations: 82
Gradient evaluations: 10
Iteration: 1, Func. Count: 9, Neg. LLF: 83.23494380347306
Iteration: 2, Func. Count: 19, Neg. LLF: 252.05195710035028
Iteration: 3, Func. Count: 28, Neg. LLF: 79.95151765493306
Iteration: 4, Func. Count: 37, Neg. LLF: 77.72261672588543
Iteration: 5, Func. Count: 45, Neg. LLF: 78.93650369173032
Iteration: 6, Func. Count: 54, Neg. LLF: 77.59069294164765
Iteration: 7, Func. Count: 63, Neg. LLF: 82.3948988870938
Iteration: 8, Func. Count: 73, Neg. LLF: 77.44329917065777
Iteration: 9, Func. Count: 81, Neg. LLF: 77.44274728453561
Iteration: 10, Func. Count: 89, Neg. LLF: 77.4427322806511
Iteration: 11, Func. Count: 97, Neg. LLF: 77.44273086289896
Iteration: 12, Func. Count: 104, Neg. LLF: 77.4427308881805
Optimization terminated successfully (Exit mode 0)
Current function value: 77.44273086289896
Iterations: 12
Function evaluations: 104
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 83.50274457259475
Iteration: 2, Func. Count: 21, Neg. LLF: 5552.015571352638
Iteration: 3, Func. Count: 31, Neg. LLF: 88.77429905300752
Iteration: 4, Func. Count: 41, Neg. LLF: 77.64346650426435
Iteration: 5, Func. Count: 50, Neg. LLF: 79.26133410482845
Iteration: 6, Func. Count: 60, Neg. LLF: 77.89927626418063
Iteration: 7, Func. Count: 71, Neg. LLF: 78.91944631239627
Iteration: 8, Func. Count: 81, Neg. LLF: 77.44299681135386
Iteration: 9, Func. Count: 90, Neg. LLF: 77.44275018076206
Iteration: 10, Func. Count: 99, Neg. LLF: 77.4427311345224
Iteration: 11, Func. Count: 107, Neg. LLF: 77.44273116529372
Optimization terminated successfully (Exit mode 0)
Current function value: 77.4427311345224
Iterations: 11
Function evaluations: 107
Gradient evaluations: 11
Iteration: 1, Func. Count: 11, Neg. LLF: 84.71945073849668
Iteration: 2, Func. Count: 23, Neg. LLF: 169.9640023091144
Iteration: 3, Func. Count: 34, Neg. LLF: 633.1121824951836
Iteration: 4, Func. Count: 45, Neg. LLF: 77.47355518109698
Iteration: 5, Func. Count: 55, Neg. LLF: 77.67154057876839
Iteration: 6, Func. Count: 66, Neg. LLF: 78.82194822215058
Iteration: 7, Func. Count: 77, Neg. LLF: 77.55214974366811
Iteration: 8, Func. Count: 88, Neg. LLF: 77.52904978911322
Iteration: 9, Func. Count: 99, Neg. LLF: 77.44287430683256
Iteration: 10, Func. Count: 109, Neg. LLF: 77.44274553200283
Iteration: 11, Func. Count: 119, Neg. LLF: 77.44273095216394
Iteration: 12, Func. Count: 128, Neg. LLF: 77.44273099316271
Optimization terminated successfully (Exit mode 0)
Current function value: 77.44273095216394
Iterations: 12
Function evaluations: 128
Gradient evaluations: 12
Iteration: 1, Func. Count: 12, Neg. LLF: 84.83536507362182
Iteration: 2, Func. Count: 25, Neg. LLF: 141.57030504332704
Iteration: 3, Func. Count: 37, Neg. LLF: 517.0526038113373
Iteration: 4, Func. Count: 49, Neg. LLF: 80.37297424592447
Iteration: 5, Func. Count: 61, Neg. LLF: 77.72291144831583
Iteration: 6, Func. Count: 72, Neg. LLF: 77.49999532555748
Iteration: 7, Func. Count: 83, Neg. LLF: 77.45272672254765
Iteration: 8, Func. Count: 94, Neg. LLF: 77.53058048060316
Iteration: 9, Func. Count: 106, Neg. LLF: 77.6510460092842
Iteration: 10, Func. Count: 118, Neg. LLF: 77.44303660466328
Iteration: 11, Func. Count: 129, Neg. LLF: 77.44275144864447
Iteration: 12, Func. Count: 140, Neg. LLF: 77.44273095041694
Iteration: 13, Func. Count: 150, Neg. LLF: 77.44273097965774
Optimization terminated successfully (Exit mode 0)
Current function value: 77.44273095041694
Iterations: 13
Function evaluations: 150
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 122.11463001967222
Iteration: 2, Func. Count: 21, Neg. LLF: 115.60184128748496
Iteration: 3, Func. Count: 31, Neg. LLF: 182.90880631717948
Iteration: 4, Func. Count: 40, Neg. LLF: 81.86472669327536
Iteration: 5, Func. Count: 49, Neg. LLF: 77.0287473408838
Iteration: 6, Func. Count: 57, Neg. LLF: 77.32949117064203
Iteration: 7, Func. Count: 66, Neg. LLF: 77.0191749366403
Iteration: 8, Func. Count: 74, Neg. LLF: 77.01690580575585
Iteration: 9, Func. Count: 82, Neg. LLF: 77.01645868355948
Iteration: 10, Func. Count: 90, Neg. LLF: 77.01640011543248
Iteration: 11, Func. Count: 98, Neg. LLF: 77.01639819902636
Iteration: 12, Func. Count: 105, Neg. LLF: 77.01639812155547
Optimization terminated successfully (Exit mode 0)
Current function value: 77.01639819902636
Iterations: 12
Function evaluations: 105
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 80.7433885844969
Iteration: 2, Func. Count: 21, Neg. LLF: 24689861.50944461
Iteration: 3, Func. Count: 31, Neg. LLF: 1063257.6199825301
Iteration: 4, Func. Count: 42, Neg. LLF: 77.91951577190271
Iteration: 5, Func. Count: 52, Neg. LLF: 77.1364490583712
Iteration: 6, Func. Count: 61, Neg. LLF: 78.72764264362218
Iteration: 7, Func. Count: 71, Neg. LLF: 77.09521107320533
Iteration: 8, Func. Count: 80, Neg. LLF: 77.02799283990944
Iteration: 9, Func. Count: 89, Neg. LLF: 77.02036306999476
Iteration: 10, Func. Count: 98, Neg. LLF: 77.01644491296413
Iteration: 11, Func. Count: 107, Neg. LLF: 77.01639977729786
Iteration: 12, Func. Count: 116, Neg. LLF: 77.01639812914863
Iteration: 13, Func. Count: 124, Neg. LLF: 77.01639815073779
Optimization terminated successfully (Exit mode 0)
Current function value: 77.01639812914863
Iterations: 13
Function evaluations: 124
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 81.90179317554792
Iteration: 2, Func. Count: 24, Neg. LLF: 16639345.79429681
Iteration: 3, Func. Count: 35, Neg. LLF: 83.48352359217355
Iteration: 4, Func. Count: 46, Neg. LLF: 78.14128038294166
Iteration: 5, Func. Count: 57, Neg. LLF: 77.13307606068584
Iteration: 6, Func. Count: 67, Neg. LLF: 78.5844280470233
Iteration: 7, Func. Count: 79, Neg. LLF: 77.14764247907075
Iteration: 8, Func. Count: 90, Neg. LLF: 77.02453317113739
Iteration: 9, Func. Count: 100, Neg. LLF: 77.01834954537897
Iteration: 10, Func. Count: 110, Neg. LLF: 77.01651435081959
Iteration: 11, Func. Count: 120, Neg. LLF: 77.01639940885993
Iteration: 12, Func. Count: 130, Neg. LLF: 77.01639811354461
Iteration: 13, Func. Count: 139, Neg. LLF: 77.01639813783378
Optimization terminated successfully (Exit mode 0)
Current function value: 77.01639811354461
Iterations: 13
Function evaluations: 139
Gradient evaluations: 13
Iteration: 1, Func. Count: 12, Neg. LLF: 83.12716655391712
Iteration: 2, Func. Count: 26, Neg. LLF: 12550868.157123942
Iteration: 3, Func. Count: 38, Neg. LLF: 129.41352774650085
Iteration: 4, Func. Count: 51, Neg. LLF: 77.06439453055616
Iteration: 5, Func. Count: 62, Neg. LLF: 77.43115853637242
Iteration: 6, Func. Count: 74, Neg. LLF: 77.03058448768854
Iteration: 7, Func. Count: 85, Neg. LLF: 77.02835570785916
Iteration: 8, Func. Count: 97, Neg. LLF: 77.0190529770601
Iteration: 9, Func. Count: 108, Neg. LLF: 77.01707180415615
Iteration: 10, Func. Count: 119, Neg. LLF: 77.01647316248813
Iteration: 11, Func. Count: 130, Neg. LLF: 77.01640000531215
Iteration: 12, Func. Count: 141, Neg. LLF: 77.0163981210837
Iteration: 13, Func. Count: 151, Neg. LLF: 77.01639816546451
Optimization terminated successfully (Exit mode 0)
Current function value: 77.0163981210837
Iterations: 13
Function evaluations: 151
Gradient evaluations: 13
Iteration: 1, Func. Count: 13, Neg. LLF: 83.17655181095806
Iteration: 2, Func. Count: 28, Neg. LLF: 16833657.182700984
Iteration: 3, Func. Count: 41, Neg. LLF: 147.33852884080034
Iteration: 4, Func. Count: 55, Neg. LLF: 77.81752285964497
Iteration: 5, Func. Count: 67, Neg. LLF: 77.11595843654442
Iteration: 6, Func. Count: 79, Neg. LLF: 92.66740178263531
Iteration: 7, Func. Count: 93, Neg. LLF: 77.03035490834081
Iteration: 8, Func. Count: 105, Neg. LLF: 77.02421280300241
Iteration: 9, Func. Count: 117, Neg. LLF: 77.01683558520708
Iteration: 10, Func. Count: 129, Neg. LLF: 77.01642706933389
Iteration: 11, Func. Count: 141, Neg. LLF: 77.01639858621786
Iteration: 12, Func. Count: 152, Neg. LLF: 77.01639861531501
Optimization terminated successfully (Exit mode 0)
Current function value: 77.01639858621786
Iterations: 12
Function evaluations: 152
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 122.26270003658165
Iteration: 2, Func. Count: 23, Neg. LLF: 114.66226557124945
Iteration: 3, Func. Count: 34, Neg. LLF: 575.8187978126199
Iteration: 4, Func. Count: 44, Neg. LLF: 80.11812536155762
Iteration: 5, Func. Count: 54, Neg. LLF: 77.02627179551106
Iteration: 6, Func. Count: 63, Neg. LLF: 77.97498921807654
Iteration: 7, Func. Count: 73, Neg. LLF: 76.99619543191977
Iteration: 8, Func. Count: 82, Neg. LLF: 76.99373050325732
Iteration: 9, Func. Count: 91, Neg. LLF: 76.99335095249978
Iteration: 10, Func. Count: 100, Neg. LLF: 76.9932762758272
Iteration: 11, Func. Count: 109, Neg. LLF: 76.99327205353987
Iteration: 12, Func. Count: 117, Neg. LLF: 76.9932720324596
Optimization terminated successfully (Exit mode 0)
Current function value: 76.99327205353987
Iterations: 12
Function evaluations: 117
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 80.61900283788583
Iteration: 2, Func. Count: 23, Neg. LLF: 25180306.78221473
Iteration: 3, Func. Count: 34, Neg. LLF: 950156.4472038306
Iteration: 4, Func. Count: 46, Neg. LLF: 77.92150182089975
Iteration: 5, Func. Count: 57, Neg. LLF: 77.15189166492993
Iteration: 6, Func. Count: 67, Neg. LLF: 78.38183325317964
Iteration: 7, Func. Count: 78, Neg. LLF: 77.32711664230439
Iteration: 8, Func. Count: 89, Neg. LLF: 77.00981114897348
Iteration: 9, Func. Count: 99, Neg. LLF: 76.99407504723835
Iteration: 10, Func. Count: 109, Neg. LLF: 76.99330261889189
Iteration: 11, Func. Count: 119, Neg. LLF: 76.99327447502534
Iteration: 12, Func. Count: 129, Neg. LLF: 76.99327203210356
Iteration: 13, Func. Count: 138, Neg. LLF: 76.99327205636106
Optimization terminated successfully (Exit mode 0)
Current function value: 76.99327203210356
Iterations: 13
Function evaluations: 138
Gradient evaluations: 13
Iteration: 1, Func. Count: 12, Neg. LLF: 81.61663698541454
Iteration: 2, Func. Count: 25, Neg. LLF: 16636633.019695379
Iteration: 3, Func. Count: 37, Neg. LLF: 79.12180463213201
Iteration: 4, Func. Count: 49, Neg. LLF: 78.8243096561599
Iteration: 5, Func. Count: 61, Neg. LLF: 82.0596789302449
Iteration: 6, Func. Count: 73, Neg. LLF: 77.57827518209545
Iteration: 7, Func. Count: 85, Neg. LLF: 78.13455024738671
Iteration: 8, Func. Count: 97, Neg. LLF: 77.0186417021069
Iteration: 9, Func. Count: 108, Neg. LLF: 76.99713160809699
Iteration: 10, Func. Count: 119, Neg. LLF: 76.99411640963135
Iteration: 11, Func. Count: 130, Neg. LLF: 76.99334856529616
Iteration: 12, Func. Count: 141, Neg. LLF: 76.99327524284541
Iteration: 13, Func. Count: 152, Neg. LLF: 76.9932721664998
Iteration: 14, Func. Count: 162, Neg. LLF: 76.99327219272877
Optimization terminated successfully (Exit mode 0)
Current function value: 76.9932721664998
Iterations: 14
Function evaluations: 162
Gradient evaluations: 14
Iteration: 1, Func. Count: 13, Neg. LLF: 82.73431145573112
Iteration: 2, Func. Count: 28, Neg. LLF: 16885771.947076723
Iteration: 3, Func. Count: 41, Neg. LLF: 116.55639258340024
Iteration: 4, Func. Count: 55, Neg. LLF: 77.08888427721426
Iteration: 5, Func. Count: 67, Neg. LLF: 78.07093640469023
Iteration: 6, Func. Count: 80, Neg. LLF: 77.5323973363772
Iteration: 7, Func. Count: 93, Neg. LLF: 77.00051903372521
Iteration: 8, Func. Count: 105, Neg. LLF: 76.99577155019298
Iteration: 9, Func. Count: 117, Neg. LLF: 76.99407141431344
Iteration: 10, Func. Count: 129, Neg. LLF: 76.99327685684656
Iteration: 11, Func. Count: 141, Neg. LLF: 76.99327203613464
Iteration: 12, Func. Count: 152, Neg. LLF: 76.99327208182126
Optimization terminated successfully (Exit mode 0)
Current function value: 76.99327203613464
Iterations: 12
Function evaluations: 152
Gradient evaluations: 12
Iteration: 1, Func. Count: 14, Neg. LLF: 82.77841050001979
Iteration: 2, Func. Count: 30, Neg. LLF: 16692802.01814185
Iteration: 3, Func. Count: 44, Neg. LLF: 112.81593988562697
Iteration: 4, Func. Count: 59, Neg. LLF: 77.51208392155567
Iteration: 5, Func. Count: 72, Neg. LLF: 77.15611476611167
Iteration: 6, Func. Count: 85, Neg. LLF: 91.20798870974836
Iteration: 7, Func. Count: 100, Neg. LLF: 77.00821721795887
Iteration: 8, Func. Count: 113, Neg. LLF: 77.00056982346605
Iteration: 9, Func. Count: 126, Neg. LLF: 76.99449095007319
Iteration: 10, Func. Count: 139, Neg. LLF: 76.99329974620031
Iteration: 11, Func. Count: 152, Neg. LLF: 76.99327220787526
Iteration: 12, Func. Count: 164, Neg. LLF: 76.99327223837139
Optimization terminated successfully (Exit mode 0)
Current function value: 76.99327220787526
Iterations: 12
Function evaluations: 164
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 122.04186982198196
Iteration: 2, Func. Count: 25, Neg. LLF: 127.43828101465952
Iteration: 3, Func. Count: 37, Neg. LLF: 10742735.525832644
Iteration: 4, Func. Count: 48, Neg. LLF: 78.40216331073869
Iteration: 5, Func. Count: 59, Neg. LLF: 76.6623359258223
Iteration: 6, Func. Count: 69, Neg. LLF: 79.11394276358739
Iteration: 7, Func. Count: 81, Neg. LLF: 76.63853978366014
Iteration: 8, Func. Count: 91, Neg. LLF: 76.62487498623288
Iteration: 9, Func. Count: 101, Neg. LLF: 76.6231764102976
Iteration: 10, Func. Count: 111, Neg. LLF: 76.62275695408411
Iteration: 11, Func. Count: 121, Neg. LLF: 76.6226289967011
Iteration: 12, Func. Count: 131, Neg. LLF: 76.62262820359804
Optimization terminated successfully (Exit mode 0)
Current function value: 76.62262820359804
Iterations: 12
Function evaluations: 131
Gradient evaluations: 12
Iteration: 1, Func. Count: 12, Neg. LLF: 80.05972979313243
Iteration: 2, Func. Count: 25, Neg. LLF: 33373397.380583026
Iteration: 3, Func. Count: 37, Neg. LLF: 697382.9382103342
Iteration: 4, Func. Count: 49, Neg. LLF: 77.034022762459
Iteration: 5, Func. Count: 60, Neg. LLF: 77.79372124716403
Iteration: 6, Func. Count: 72, Neg. LLF: 76.782840138159
Iteration: 7, Func. Count: 84, Neg. LLF: 79.14622724549946
Iteration: 8, Func. Count: 97, Neg. LLF: 76.65397815850122
Iteration: 9, Func. Count: 109, Neg. LLF: 76.62435488622319
Iteration: 10, Func. Count: 120, Neg. LLF: 76.6226639958664
Iteration: 11, Func. Count: 131, Neg. LLF: 76.62262889660015
Iteration: 12, Func. Count: 142, Neg. LLF: 76.62262821925492
Optimization terminated successfully (Exit mode 0)
Current function value: 76.62262821925492
Iterations: 12
Function evaluations: 142
Gradient evaluations: 12
Iteration: 1, Func. Count: 13, Neg. LLF: 80.60346014288066
Iteration: 2, Func. Count: 28, Neg. LLF: 12746319.507632868
Iteration: 3, Func. Count: 41, Neg. LLF: 94.38008871109824
Iteration: 4, Func. Count: 54, Neg. LLF: 77.27415347906764
Iteration: 5, Func. Count: 66, Neg. LLF: 77.69559857486618
Iteration: 6, Func. Count: 79, Neg. LLF: 76.83034996742829
Iteration: 7, Func. Count: 92, Neg. LLF: 76.70765350593076
Iteration: 8, Func. Count: 105, Neg. LLF: 76.87220456449126
Iteration: 9, Func. Count: 118, Neg. LLF: 76.62537486176345
Iteration: 10, Func. Count: 130, Neg. LLF: 76.62310209389052
Iteration: 11, Func. Count: 142, Neg. LLF: 76.62287386593663
Iteration: 12, Func. Count: 154, Neg. LLF: 76.62268677600777
Iteration: 13, Func. Count: 166, Neg. LLF: 76.62264323090601
Iteration: 14, Func. Count: 178, Neg. LLF: 76.62262845278202
Iteration: 15, Func. Count: 189, Neg. LLF: 76.62262846899836
Optimization terminated successfully (Exit mode 0)
Current function value: 76.62262845278202
Iterations: 15
Function evaluations: 189
Gradient evaluations: 15
Iteration: 1, Func. Count: 14, Neg. LLF: 81.44572626714773
Iteration: 2, Func. Count: 30, Neg. LLF: 10889768.734089326
Iteration: 3, Func. Count: 44, Neg. LLF: 87.62769167975662
Iteration: 4, Func. Count: 58, Neg. LLF: 77.3371146492193
Iteration: 5, Func. Count: 71, Neg. LLF: 76.95807017347002
Iteration: 6, Func. Count: 84, Neg. LLF: 86.00208456554464
Iteration: 7, Func. Count: 99, Neg. LLF: 76.8029723371983
Iteration: 8, Func. Count: 112, Neg. LLF: 76.63958028180275
Iteration: 9, Func. Count: 125, Neg. LLF: 76.63149819852464
Iteration: 10, Func. Count: 138, Neg. LLF: 76.62534338065113
Iteration: 11, Func. Count: 151, Neg. LLF: 76.6227751097557
Iteration: 12, Func. Count: 164, Neg. LLF: 76.62263390260254
Iteration: 13, Func. Count: 177, Neg. LLF: 76.62262819209387
Iteration: 14, Func. Count: 189, Neg. LLF: 76.62262823450543
Optimization terminated successfully (Exit mode 0)
Current function value: 76.62262819209387
Iterations: 14
Function evaluations: 189
Gradient evaluations: 14
Iteration: 1, Func. Count: 15, Neg. LLF: 81.47565147033642
Iteration: 2, Func. Count: 32, Neg. LLF: 10944679.80968402
Iteration: 3, Func. Count: 47, Neg. LLF: 85.49200361441989
Iteration: 4, Func. Count: 62, Neg. LLF: 76.85340148195958
Iteration: 5, Func. Count: 76, Neg. LLF: 77.1757791472096
Iteration: 6, Func. Count: 91, Neg. LLF: 82.39459059824755
Iteration: 7, Func. Count: 107, Neg. LLF: 76.6391170338328
Iteration: 8, Func. Count: 121, Neg. LLF: 76.62334569606273
Iteration: 9, Func. Count: 135, Neg. LLF: 76.62285222137082
Iteration: 10, Func. Count: 149, Neg. LLF: 76.62263646913017
Iteration: 11, Func. Count: 163, Neg. LLF: 76.622632128662
Iteration: 12, Func. Count: 177, Neg. LLF: 76.62262836446118
Iteration: 13, Func. Count: 190, Neg. LLF: 76.62262841400174
Optimization terminated successfully (Exit mode 0)
Current function value: 76.62262836446118
Iterations: 13
Function evaluations: 190
Gradient evaluations: 13
Iteration: 1, Func. Count: 12, Neg. LLF: 125.79786450971453
Iteration: 2, Func. Count: 27, Neg. LLF: 130.3409238961195
Iteration: 3, Func. Count: 40, Neg. LLF: 10860743.610175628
Iteration: 4, Func. Count: 52, Neg. LLF: 83.43061238617705
Iteration: 5, Func. Count: 64, Neg. LLF: 76.6652308958075
Iteration: 6, Func. Count: 75, Neg. LLF: 77.19854502926117
Iteration: 7, Func. Count: 87, Neg. LLF: 76.62802474419425
Iteration: 8, Func. Count: 98, Neg. LLF: 76.62368608252932
Iteration: 9, Func. Count: 109, Neg. LLF: 76.62272294641245
Iteration: 10, Func. Count: 120, Neg. LLF: 76.62264004497055
Iteration: 11, Func. Count: 131, Neg. LLF: 76.62262883374099
Iteration: 12, Func. Count: 142, Neg. LLF: 76.62262819760466
Optimization terminated successfully (Exit mode 0)
Current function value: 76.62262819760466
Iterations: 12
Function evaluations: 142
Gradient evaluations: 12
Iteration: 1, Func. Count: 13, Neg. LLF: 80.06740840555184
Iteration: 2, Func. Count: 27, Neg. LLF: 32671596.479693625
Iteration: 3, Func. Count: 40, Neg. LLF: 705798.0620906011
Iteration: 4, Func. Count: 53, Neg. LLF: 77.01030745953449
Iteration: 5, Func. Count: 65, Neg. LLF: 77.81960582570298
Iteration: 6, Func. Count: 78, Neg. LLF: 76.96927312473704
Iteration: 7, Func. Count: 91, Neg. LLF: 78.9178725170818
Iteration: 8, Func. Count: 105, Neg. LLF: 76.6350331396659
Iteration: 9, Func. Count: 117, Neg. LLF: 76.62920087631157
Iteration: 10, Func. Count: 129, Neg. LLF: 76.62287685012707
Iteration: 11, Func. Count: 141, Neg. LLF: 76.62265774555634
Iteration: 12, Func. Count: 153, Neg. LLF: 76.62262852890434
Iteration: 13, Func. Count: 164, Neg. LLF: 76.62262855074886
Optimization terminated successfully (Exit mode 0)
Current function value: 76.62262852890434
Iterations: 13
Function evaluations: 164
Gradient evaluations: 13
Iteration: 1, Func. Count: 14, Neg. LLF: 80.63880588649195
Iteration: 2, Func. Count: 30, Neg. LLF: 11953162.008073632
Iteration: 3, Func. Count: 44, Neg. LLF: 91.73487060005337
Iteration: 4, Func. Count: 58, Neg. LLF: 77.42448212943157
Iteration: 5, Func. Count: 71, Neg. LLF: 77.35602271327306
Iteration: 6, Func. Count: 85, Neg. LLF: 77.27064305043305
Iteration: 7, Func. Count: 99, Neg. LLF: 77.95605430086214
Iteration: 8, Func. Count: 113, Neg. LLF: 76.62622258347692
Iteration: 9, Func. Count: 126, Neg. LLF: 76.62415459353757
Iteration: 10, Func. Count: 139, Neg. LLF: 76.62296802710085
Iteration: 11, Func. Count: 152, Neg. LLF: 76.62277920328889
Iteration: 12, Func. Count: 165, Neg. LLF: 76.62269693255642
Iteration: 13, Func. Count: 178, Neg. LLF: 76.6226381231497
Iteration: 14, Func. Count: 191, Neg. LLF: 76.62262890397047
Iteration: 15, Func. Count: 204, Neg. LLF: 76.6226281999867
Optimization terminated successfully (Exit mode 0)
Current function value: 76.6226281999867
Iterations: 15
Function evaluations: 204
Gradient evaluations: 15
Iteration: 1, Func. Count: 15, Neg. LLF: 81.50208211324036
Iteration: 2, Func. Count: 32, Neg. LLF: 10985573.972597305
Iteration: 3, Func. Count: 47, Neg. LLF: 92.11030315144157
Iteration: 4, Func. Count: 62, Neg. LLF: 77.1664887807409
Iteration: 5, Func. Count: 76, Neg. LLF: 77.0993075559283
Iteration: 6, Func. Count: 91, Neg. LLF: 82.1775323648019
Iteration: 7, Func. Count: 107, Neg. LLF: 76.76755928309515
Iteration: 8, Func. Count: 122, Neg. LLF: 76.62417597297159
Iteration: 9, Func. Count: 136, Neg. LLF: 76.62287103510988
Iteration: 10, Func. Count: 150, Neg. LLF: 76.6227663709224
Iteration: 11, Func. Count: 164, Neg. LLF: 76.6226289915307
Iteration: 12, Func. Count: 178, Neg. LLF: 76.62262829838512
Optimization terminated successfully (Exit mode 0)
Current function value: 76.62262829838512
Iterations: 12
Function evaluations: 178
Gradient evaluations: 12
Iteration: 1, Func. Count: 16, Neg. LLF: 81.5416514329103
Iteration: 2, Func. Count: 34, Neg. LLF: 11044161.943213254
Iteration: 3, Func. Count: 50, Neg. LLF: 89.79635257140824
Iteration: 4, Func. Count: 66, Neg. LLF: 76.8059885488772
Iteration: 5, Func. Count: 81, Neg. LLF: 77.33938570855157
Iteration: 6, Func. Count: 97, Neg. LLF: 80.08986938345868
Iteration: 7, Func. Count: 114, Neg. LLF: 76.63743322740271
Iteration: 8, Func. Count: 129, Neg. LLF: 76.62356430186432
Iteration: 9, Func. Count: 144, Neg. LLF: 76.62293845867845
Iteration: 10, Func. Count: 159, Neg. LLF: 76.62265934896216
Iteration: 11, Func. Count: 174, Neg. LLF: 76.62264329883511
Iteration: 12, Func. Count: 189, Neg. LLF: 76.62262839834077
Iteration: 13, Func. Count: 203, Neg. LLF: 76.62262844787388
Optimization terminated successfully (Exit mode 0)
Current function value: 76.62262839834077
Iterations: 13
Function evaluations: 203
Gradient evaluations: 13
Iteration: 1, Func. Count: 5, Neg. LLF: 163.5861321364116
Iteration: 2, Func. Count: 13, Neg. LLF: 200.85419612330912
Iteration: 3, Func. Count: 19, Neg. LLF: 79.12000126231705
Iteration: 4, Func. Count: 24, Neg. LLF: 78.56411885725703
Iteration: 5, Func. Count: 28, Neg. LLF: 78.55292857806461
Iteration: 6, Func. Count: 32, Neg. LLF: 78.55259619632314
Iteration: 7, Func. Count: 36, Neg. LLF: 78.55258992694448
Iteration: 8, Func. Count: 39, Neg. LLF: 78.55258992691182
Optimization terminated successfully (Exit mode 0)
Current function value: 78.55258992694448
Iterations: 8
Function evaluations: 39
Gradient evaluations: 8
Iteration: 1, Func. Count: 5, Neg. LLF: 116.00907510773473
Iteration: 2, Func. Count: 12, Neg. LLF: 153.8913432305027
Iteration: 3, Func. Count: 18, Neg. LLF: 79.81626893958766
Iteration: 4, Func. Count: 22, Neg. LLF: 78.41169199108175
Iteration: 5, Func. Count: 26, Neg. LLF: 78.41042035975212
Iteration: 6, Func. Count: 31, Neg. LLF: 78.3972535180052
Iteration: 7, Func. Count: 35, Neg. LLF: 78.39725277554034
Optimization terminated successfully (Exit mode 0)
Current function value: 78.39725277554034
Iterations: 7
Function evaluations: 35
Gradient evaluations: 7
Iteration: 1, Func. Count: 6, Neg. LLF: 24686709.917593997
Iteration: 2, Func. Count: 13, Neg. LLF: 78.09597950992301
Iteration: 3, Func. Count: 18, Neg. LLF: 77.74287892627152
Iteration: 4, Func. Count: 23, Neg. LLF: 759.3310170195142
Iteration: 5, Func. Count: 30, Neg. LLF: 77.63487795150242
Iteration: 6, Func. Count: 35, Neg. LLF: 77.6346974947339
Iteration: 7, Func. Count: 39, Neg. LLF: 77.63469749401256
Optimization terminated successfully (Exit mode 0)
Current function value: 77.6346974947339
Iterations: 7
Function evaluations: 39
Gradient evaluations: 7
Iteration: 1, Func. Count: 7, Neg. LLF: 24467400.112651207
Iteration: 2, Func. Count: 15, Neg. LLF: 77.91732696136137
Iteration: 3, Func. Count: 21, Neg. LLF: 77.8943986686915
Iteration: 4, Func. Count: 28, Neg. LLF: 97.35518901489002
Iteration: 5, Func. Count: 36, Neg. LLF: 77.64437098139302
Iteration: 6, Func. Count: 42, Neg. LLF: 77.64411023568536
Iteration: 7, Func. Count: 48, Neg. LLF: 77.64274545016458
Iteration: 8, Func. Count: 54, Neg. LLF: 77.63791848598154
Iteration: 9, Func. Count: 60, Neg. LLF: 77.63469759833866
Iteration: 10, Func. Count: 65, Neg. LLF: 77.63469759845717
Optimization terminated successfully (Exit mode 0)
Current function value: 77.63469759833866
Iterations: 10
Function evaluations: 65
Gradient evaluations: 10
Iteration: 1, Func. Count: 8, Neg. LLF: 24386773.302105617
Iteration: 2, Func. Count: 17, Neg. LLF: 77.97168053423218
Iteration: 3, Func. Count: 24, Neg. LLF: 77.79071894160727
Iteration: 4, Func. Count: 31, Neg. LLF: 79.97406353233137
Iteration: 5, Func. Count: 39, Neg. LLF: 77.65024379825152
Iteration: 6, Func. Count: 46, Neg. LLF: 77.64386289689757
Iteration: 7, Func. Count: 53, Neg. LLF: 77.64287961582639
Iteration: 8, Func. Count: 60, Neg. LLF: 77.64285216182914
Iteration: 9, Func. Count: 67, Neg. LLF: 77.64279582483626
Iteration: 10, Func. Count: 74, Neg. LLF: 77.64279507164372
Optimization terminated successfully (Exit mode 0)
Current function value: 77.64279507164372
Iterations: 10
Function evaluations: 74
Gradient evaluations: 10
Iteration: 1, Func. Count: 9, Neg. LLF: 24386145.450386144
Iteration: 2, Func. Count: 19, Neg. LLF: 78.19628568647576
Iteration: 3, Func. Count: 28, Neg. LLF: 77.72295924846738
Iteration: 4, Func. Count: 36, Neg. LLF: 77.74230477114357
Iteration: 5, Func. Count: 45, Neg. LLF: 77.66837746255459
Iteration: 6, Func. Count: 53, Neg. LLF: 77.65953726422399
Iteration: 7, Func. Count: 61, Neg. LLF: 77.6564189917144
Iteration: 8, Func. Count: 69, Neg. LLF: 77.65164201445974
Iteration: 9, Func. Count: 77, Neg. LLF: 77.64602521372555
Iteration: 10, Func. Count: 85, Neg. LLF: 77.63688229105657
Iteration: 11, Func. Count: 93, Neg. LLF: 77.6369165953376
Iteration: 12, Func. Count: 102, Neg. LLF: 77.6362856615534
Iteration: 13, Func. Count: 110, Neg. LLF: 77.63473148038008
Iteration: 14, Func. Count: 118, Neg. LLF: 14709156.115294779
Iteration: 15, Func. Count: 131, Neg. LLF: 77.69007084484544
Iteration: 16, Func. Count: 140, Neg. LLF: 77.63469732614725
Optimization terminated successfully (Exit mode 0)
Current function value: 77.63469732384971
Iterations: 17
Function evaluations: 140
Gradient evaluations: 16
Iteration: 1, Func. Count: 6, Neg. LLF: 120.41757869814128
Iteration: 2, Func. Count: 15, Neg. LLF: 235.3157722392587
Iteration: 3, Func. Count: 22, Neg. LLF: 78.24534903232524
Iteration: 4, Func. Count: 27, Neg. LLF: 78.33367443367247
Iteration: 5, Func. Count: 33, Neg. LLF: 78.18997206332789
Iteration: 6, Func. Count: 38, Neg. LLF: 78.17082327261669
Iteration: 7, Func. Count: 43, Neg. LLF: 78.16892675594421
Iteration: 8, Func. Count: 48, Neg. LLF: 78.16878948009557
Iteration: 9, Func. Count: 53, Neg. LLF: 78.16878835540562
Iteration: 10, Func. Count: 57, Neg. LLF: 78.16878835540042
Optimization terminated successfully (Exit mode 0)
Current function value: 78.16878835540562
Iterations: 10
Function evaluations: 57
Gradient evaluations: 10
Iteration: 1, Func. Count: 7, Neg. LLF: 24689063.29707846
Iteration: 2, Func. Count: 15, Neg. LLF: 78.10956776454361
Iteration: 3, Func. Count: 21, Neg. LLF: 77.66987555947178
Iteration: 4, Func. Count: 27, Neg. LLF: 349.59568820943895
Iteration: 5, Func. Count: 35, Neg. LLF: 77.63482297922866
Iteration: 6, Func. Count: 41, Neg. LLF: 77.6346973830325
Iteration: 7, Func. Count: 46, Neg. LLF: 77.63469738258557
Optimization terminated successfully (Exit mode 0)
Current function value: 77.6346973830325
Iterations: 7
Function evaluations: 46
Gradient evaluations: 7
Iteration: 1, Func. Count: 8, Neg. LLF: 24642198.936792113
Iteration: 2, Func. Count: 17, Neg. LLF: 77.91558912612969
Iteration: 3, Func. Count: 24, Neg. LLF: 77.85961029414709
Iteration: 4, Func. Count: 32, Neg. LLF: 100.53173131152664
Iteration: 5, Func. Count: 41, Neg. LLF: 77.64474167112863
Iteration: 6, Func. Count: 48, Neg. LLF: 77.64436126397726
Iteration: 7, Func. Count: 55, Neg. LLF: 77.64302328844613
Iteration: 8, Func. Count: 62, Neg. LLF: 77.64075444971205
Iteration: 9, Func. Count: 69, Neg. LLF: 77.63477117193474
Iteration: 10, Func. Count: 76, Neg. LLF: 77.63470954068181
Iteration: 11, Func. Count: 83, Neg. LLF: 77.63469911694858
Iteration: 12, Func. Count: 90, Neg. LLF: 77.63469732450143
Iteration: 13, Func. Count: 96, Neg. LLF: 77.63469732488741
Optimization terminated successfully (Exit mode 0)
Current function value: 77.63469732450143
Iterations: 13
Function evaluations: 96
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 24633178.527724598
Iteration: 2, Func. Count: 19, Neg. LLF: 77.95047734446094
Iteration: 3, Func. Count: 27, Neg. LLF: 77.73925561147284
Iteration: 4, Func. Count: 35, Neg. LLF: 87.64569565445636
Iteration: 5, Func. Count: 45, Neg. LLF: 77.90103214704104
Iteration: 6, Func. Count: 54, Neg. LLF: 77.20617692650052
Iteration: 7, Func. Count: 62, Neg. LLF: 78.4930492069514
Iteration: 8, Func. Count: 72, Neg. LLF: 77.06258068616411
Iteration: 9, Func. Count: 80, Neg. LLF: 76.95754461200347
Iteration: 10, Func. Count: 88, Neg. LLF: 76.93888296367142
Iteration: 11, Func. Count: 96, Neg. LLF: 76.93560068654268
Iteration: 12, Func. Count: 104, Neg. LLF: 76.93546840365963
Iteration: 13, Func. Count: 112, Neg. LLF: 76.93545991220593
Iteration: 14, Func. Count: 120, Neg. LLF: 76.93543452835705
Iteration: 15, Func. Count: 128, Neg. LLF: 76.93543335294657
Iteration: 16, Func. Count: 135, Neg. LLF: 76.93543335296177
Optimization terminated successfully (Exit mode 0)
Current function value: 76.93543335294657
Iterations: 16
Function evaluations: 135
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 24574107.33536174
Iteration: 2, Func. Count: 21, Neg. LLF: 80.13006515723472
Iteration: 3, Func. Count: 31, Neg. LLF: 83.10882081266602
Iteration: 4, Func. Count: 41, Neg. LLF: 77.70041581924316
Iteration: 5, Func. Count: 50, Neg. LLF: 77.63421639355845
Iteration: 6, Func. Count: 59, Neg. LLF: 77.38898831311451
Iteration: 7, Func. Count: 68, Neg. LLF: 76.93176255738221
Iteration: 8, Func. Count: 77, Neg. LLF: 76.77212457285677
Iteration: 9, Func. Count: 86, Neg. LLF: 76.61913224656905
Iteration: 10, Func. Count: 95, Neg. LLF: 76.6125908493011
Iteration: 11, Func. Count: 104, Neg. LLF: 76.61236761947609
Iteration: 12, Func. Count: 113, Neg. LLF: 76.61236687189076
Optimization terminated successfully (Exit mode 0)
Current function value: 76.61236687189076
Iterations: 12
Function evaluations: 113
Gradient evaluations: 12
Iteration: 1, Func. Count: 7, Neg. LLF: 144.63742241563895
Iteration: 2, Func. Count: 17, Neg. LLF: 359.7561921180459
Iteration: 3, Func. Count: 25, Neg. LLF: 78.57596709636451
Iteration: 4, Func. Count: 32, Neg. LLF: 78.18983379669478
Iteration: 5, Func. Count: 38, Neg. LLF: 78.3899558159569
Iteration: 6, Func. Count: 45, Neg. LLF: 78.17310954588206
Iteration: 7, Func. Count: 51, Neg. LLF: 78.16738885899072
Iteration: 8, Func. Count: 57, Neg. LLF: 78.16720296631713
Iteration: 9, Func. Count: 63, Neg. LLF: 78.16720155674207
Iteration: 10, Func. Count: 68, Neg. LLF: 78.1672015567426
Optimization terminated successfully (Exit mode 0)
Current function value: 78.16720155674207
Iterations: 10
Function evaluations: 68
Gradient evaluations: 10
Iteration: 1, Func. Count: 8, Neg. LLF: 24480605.692314677
Iteration: 2, Func. Count: 17, Neg. LLF: 78.05311100433782
Iteration: 3, Func. Count: 24, Neg. LLF: 77.79187434438148
Iteration: 4, Func. Count: 31, Neg. LLF: 513.7468807055664
Iteration: 5, Func. Count: 40, Neg. LLF: 77.63534383704943
Iteration: 6, Func. Count: 47, Neg. LLF: 77.63469951105422
Iteration: 7, Func. Count: 54, Neg. LLF: 77.63469732462887
Iteration: 8, Func. Count: 60, Neg. LLF: 77.6346973246072
Optimization terminated successfully (Exit mode 0)
Current function value: 77.63469732462887
Iterations: 8
Function evaluations: 60
Gradient evaluations: 8
Iteration: 1, Func. Count: 9, Neg. LLF: 24445932.625095613
Iteration: 2, Func. Count: 19, Neg. LLF: 77.92043906361329
Iteration: 3, Func. Count: 27, Neg. LLF: 77.90752651089106
Iteration: 4, Func. Count: 36, Neg. LLF: 90.71490171696074
Iteration: 5, Func. Count: 45, Neg. LLF: 77.64548183570236
Iteration: 6, Func. Count: 53, Neg. LLF: 77.64488481815195
Iteration: 7, Func. Count: 61, Neg. LLF: 77.6441576845898
Iteration: 8, Func. Count: 69, Neg. LLF: 77.64246752649187
Iteration: 9, Func. Count: 77, Neg. LLF: 77.63905854331657
Iteration: 10, Func. Count: 85, Neg. LLF: 77.63486562300206
Iteration: 11, Func. Count: 93, Neg. LLF: 77.63476454348061
Iteration: 12, Func. Count: 101, Neg. LLF: 77.63472676638419
Iteration: 13, Func. Count: 109, Neg. LLF: 77.63469838094795
Iteration: 14, Func. Count: 117, Neg. LLF: 77.63469738707492
Optimization terminated successfully (Exit mode 0)
Current function value: 77.63469738707492
Iterations: 14
Function evaluations: 117
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 24393046.297179863
Iteration: 2, Func. Count: 21, Neg. LLF: 77.98789976189155
Iteration: 3, Func. Count: 30, Neg. LLF: 77.85811031485038
Iteration: 4, Func. Count: 39, Neg. LLF: 82.7520039965874
Iteration: 5, Func. Count: 49, Neg. LLF: 77.95348411478331
Iteration: 6, Func. Count: 59, Neg. LLF: 77.15790410293461
Iteration: 7, Func. Count: 68, Neg. LLF: 76.9479740094242
Iteration: 8, Func. Count: 77, Neg. LLF: 84.32077902520436
Iteration: 9, Func. Count: 88, Neg. LLF: 76.92697268447975
Iteration: 10, Func. Count: 97, Neg. LLF: 76.92672167320629
Iteration: 11, Func. Count: 106, Neg. LLF: 76.92638462177571
Iteration: 12, Func. Count: 115, Neg. LLF: 76.92609997763724
Iteration: 13, Func. Count: 124, Neg. LLF: 76.92603603793431
Iteration: 14, Func. Count: 133, Neg. LLF: 76.92603078129777
Iteration: 15, Func. Count: 141, Neg. LLF: 76.92603078157528
Optimization terminated successfully (Exit mode 0)
Current function value: 76.92603078129777
Iterations: 15
Function evaluations: 141
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 24325524.606604353
Iteration: 2, Func. Count: 23, Neg. LLF: 80.74427519146397
Iteration: 3, Func. Count: 35, Neg. LLF: 81.95608733977751
Iteration: 4, Func. Count: 46, Neg. LLF: 77.7134994827199
Iteration: 5, Func. Count: 56, Neg. LLF: 77.58587932221097
Iteration: 6, Func. Count: 66, Neg. LLF: 77.3790540635462
Iteration: 7, Func. Count: 76, Neg. LLF: 77.04996548449394
Iteration: 8, Func. Count: 86, Neg. LLF: 76.96065888324439
Iteration: 9, Func. Count: 97, Neg. LLF: 76.6141899858517
Iteration: 10, Func. Count: 107, Neg. LLF: 76.6124465401679
Iteration: 11, Func. Count: 117, Neg. LLF: 76.61237033692173
Iteration: 12, Func. Count: 127, Neg. LLF: 76.6123668569917
Iteration: 13, Func. Count: 136, Neg. LLF: 76.61236681151716
Optimization terminated successfully (Exit mode 0)
Current function value: 76.6123668569917
Iterations: 13
Function evaluations: 136
Gradient evaluations: 13
Iteration: 1, Func. Count: 8, Neg. LLF: 155.21635318099268
Iteration: 2, Func. Count: 19, Neg. LLF: 414.468698660619
Iteration: 3, Func. Count: 28, Neg. LLF: 79.0415840241208
Iteration: 4, Func. Count: 36, Neg. LLF: 78.18295165037199
Iteration: 5, Func. Count: 43, Neg. LLF: 78.33572650633329
Iteration: 6, Func. Count: 51, Neg. LLF: 78.17219753357209
Iteration: 7, Func. Count: 58, Neg. LLF: 78.16735746503679
Iteration: 8, Func. Count: 65, Neg. LLF: 78.16720281740399
Iteration: 9, Func. Count: 72, Neg. LLF: 78.16720156231115
Iteration: 10, Func. Count: 78, Neg. LLF: 78.1672016099845
Optimization terminated successfully (Exit mode 0)
Current function value: 78.16720156231115
Iterations: 10
Function evaluations: 78
Gradient evaluations: 10
Iteration: 1, Func. Count: 9, Neg. LLF: 24541351.461580835
Iteration: 2, Func. Count: 19, Neg. LLF: 78.06420688894478
Iteration: 3, Func. Count: 27, Neg. LLF: 77.77491782078903
Iteration: 4, Func. Count: 35, Neg. LLF: 611.2190003390788
Iteration: 5, Func. Count: 45, Neg. LLF: 77.63518372583246
Iteration: 6, Func. Count: 53, Neg. LLF: 77.63469854757247
Iteration: 7, Func. Count: 61, Neg. LLF: 77.63469732421608
Iteration: 8, Func. Count: 68, Neg. LLF: 77.63469732419699
Optimization terminated successfully (Exit mode 0)
Current function value: 77.63469732421608
Iterations: 8
Function evaluations: 68
Gradient evaluations: 8
Iteration: 1, Func. Count: 10, Neg. LLF: 24434849.60735912
Iteration: 2, Func. Count: 21, Neg. LLF: 77.91824382643966
Iteration: 3, Func. Count: 30, Neg. LLF: 77.90305753914697
Iteration: 4, Func. Count: 40, Neg. LLF: 91.4165080641799
Iteration: 5, Func. Count: 50, Neg. LLF: 77.6455235955331
Iteration: 6, Func. Count: 59, Neg. LLF: 77.64491037378899
Iteration: 7, Func. Count: 68, Neg. LLF: 77.64418003457976
Iteration: 8, Func. Count: 77, Neg. LLF: 77.64247382243407
Iteration: 9, Func. Count: 86, Neg. LLF: 77.63907595190042
Iteration: 10, Func. Count: 95, Neg. LLF: 77.63486193281234
Iteration: 11, Func. Count: 104, Neg. LLF: 77.63476219395119
Iteration: 12, Func. Count: 113, Neg. LLF: 77.63472614336851
Iteration: 13, Func. Count: 122, Neg. LLF: 77.63469835040985
Iteration: 14, Func. Count: 131, Neg. LLF: 77.63469736448013
Optimization terminated successfully (Exit mode 0)
Current function value: 77.63469736448013
Iterations: 14
Function evaluations: 131
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 24347171.91609522
Iteration: 2, Func. Count: 23, Neg. LLF: 77.96467195647641
Iteration: 3, Func. Count: 33, Neg. LLF: 77.70077572254704
Iteration: 4, Func. Count: 43, Neg. LLF: 77.72939935943056
Iteration: 5, Func. Count: 55, Neg. LLF: 78.35728378748212
Iteration: 6, Func. Count: 66, Neg. LLF: 77.1439401193766
Iteration: 7, Func. Count: 76, Neg. LLF: 80.7160782213685
Iteration: 8, Func. Count: 87, Neg. LLF: 77.09564862681728
Iteration: 9, Func. Count: 98, Neg. LLF: 76.9355539537135
Iteration: 10, Func. Count: 108, Neg. LLF: 76.92678482681677
Iteration: 11, Func. Count: 118, Neg. LLF: 76.92626759252447
Iteration: 12, Func. Count: 128, Neg. LLF: 76.92609419942904
Iteration: 13, Func. Count: 138, Neg. LLF: 76.92607975193992
Iteration: 14, Func. Count: 148, Neg. LLF: 76.92603490854266
Iteration: 15, Func. Count: 158, Neg. LLF: 76.926030955448
Iteration: 16, Func. Count: 167, Neg. LLF: 76.92603095545483
Optimization terminated successfully (Exit mode 0)
Current function value: 76.926030955448
Iterations: 16
Function evaluations: 167
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 24275527.41569039
Iteration: 2, Func. Count: 25, Neg. LLF: 81.03667617241159
Iteration: 3, Func. Count: 38, Neg. LLF: 82.19578729196994
Iteration: 4, Func. Count: 50, Neg. LLF: 77.71833544568092
Iteration: 5, Func. Count: 61, Neg. LLF: 77.58779949447404
Iteration: 6, Func. Count: 72, Neg. LLF: 77.38760381511237
Iteration: 7, Func. Count: 83, Neg. LLF: 77.0595128297506
Iteration: 8, Func. Count: 94, Neg. LLF: 77.13058931512904
Iteration: 9, Func. Count: 106, Neg. LLF: 76.61260341976474
Iteration: 10, Func. Count: 117, Neg. LLF: 76.61239484818913
Iteration: 11, Func. Count: 128, Neg. LLF: 76.61236688739301
Iteration: 12, Func. Count: 138, Neg. LLF: 76.61236684184779
Optimization terminated successfully (Exit mode 0)
Current function value: 76.61236688739301
Iterations: 12
Function evaluations: 138
Gradient evaluations: 12
Iteration: 1, Func. Count: 5, Neg. LLF: 163.54152730501036
Iteration: 2, Func. Count: 13, Neg. LLF: 203.91040690621304
Iteration: 3, Func. Count: 19, Neg. LLF: 78.5517731908662
Iteration: 4, Func. Count: 24, Neg. LLF: 77.830222467789
Iteration: 5, Func. Count: 28, Neg. LLF: 77.82405908323284
Iteration: 6, Func. Count: 32, Neg. LLF: 77.82387326744973
Iteration: 7, Func. Count: 36, Neg. LLF: 77.82386419867743
Iteration: 8, Func. Count: 40, Neg. LLF: 77.82386125956472
Iteration: 9, Func. Count: 43, Neg. LLF: 77.82386125951267
Optimization terminated successfully (Exit mode 0)
Current function value: 77.82386125956472
Iterations: 9
Function evaluations: 43
Gradient evaluations: 9
Iteration: 1, Func. Count: 6, Neg. LLF: 118.57518601921075
Iteration: 2, Func. Count: 13, Neg. LLF: 120.76843345509093
Iteration: 3, Func. Count: 20, Neg. LLF: 78.03796646768768
Iteration: 4, Func. Count: 27, Neg. LLF: 77.70477859374155
Iteration: 5, Func. Count: 33, Neg. LLF: 77.70200596977764
Iteration: 6, Func. Count: 37, Neg. LLF: 77.70200596976967
Optimization terminated successfully (Exit mode 0)
Current function value: 77.70200596977764
Iterations: 6
Function evaluations: 37
Gradient evaluations: 6
Iteration: 1, Func. Count: 7, Neg. LLF: 151.1465948462551
Iteration: 2, Func. Count: 15, Neg. LLF: 151.26036297880498
Iteration: 3, Func. Count: 23, Neg. LLF: 77.54018213495293
Iteration: 4, Func. Count: 29, Neg. LLF: 77.58471778555034
Iteration: 5, Func. Count: 36, Neg. LLF: 77.50543162062377
Iteration: 6, Func. Count: 42, Neg. LLF: 77.50007968178659
Iteration: 7, Func. Count: 48, Neg. LLF: 77.49977385304298
Iteration: 8, Func. Count: 54, Neg. LLF: 77.49977043707439
Iteration: 9, Func. Count: 59, Neg. LLF: 77.49977043708085
Optimization terminated successfully (Exit mode 0)
Current function value: 77.49977043707439
Iterations: 9
Function evaluations: 59
Gradient evaluations: 9
Iteration: 1, Func. Count: 8, Neg. LLF: 706.9325054953997
Iteration: 2, Func. Count: 17, Neg. LLF: 91.73555204251218
Iteration: 3, Func. Count: 26, Neg. LLF: 78.99323070294831
Iteration: 4, Func. Count: 34, Neg. LLF: 77.83801974757701
Iteration: 5, Func. Count: 42, Neg. LLF: 77.50555518852246
Iteration: 6, Func. Count: 49, Neg. LLF: 77.49988983310452
Iteration: 7, Func. Count: 56, Neg. LLF: 77.4997743434648
Iteration: 8, Func. Count: 63, Neg. LLF: 77.49977064103084
Iteration: 9, Func. Count: 69, Neg. LLF: 77.49977066825407
Optimization terminated successfully (Exit mode 0)
Current function value: 77.49977064103084
Iterations: 9
Function evaluations: 69
Gradient evaluations: 9
Iteration: 1, Func. Count: 9, Neg. LLF: 2449.0763001812716
Iteration: 2, Func. Count: 19, Neg. LLF: 93.5940869421768
Iteration: 3, Func. Count: 29, Neg. LLF: 77.72487551257197
Iteration: 4, Func. Count: 37, Neg. LLF: 78.37391322796302
Iteration: 5, Func. Count: 46, Neg. LLF: 78.04387004665365
Iteration: 6, Func. Count: 55, Neg. LLF: 77.50158904509306
Iteration: 7, Func. Count: 63, Neg. LLF: 77.49986377848828
Iteration: 8, Func. Count: 71, Neg. LLF: 77.4997719641319
Iteration: 9, Func. Count: 79, Neg. LLF: 77.49977040239465
Iteration: 10, Func. Count: 86, Neg. LLF: 77.4997704236285
Optimization terminated successfully (Exit mode 0)
Current function value: 77.49977040239465
Iterations: 10
Function evaluations: 86
Gradient evaluations: 10
Iteration: 1, Func. Count: 6, Neg. LLF: 176.24322636184738
Iteration: 2, Func. Count: 15, Neg. LLF: 147.68313422954915
Iteration: 3, Func. Count: 22, Neg. LLF: 77.24614358949668
Iteration: 4, Func. Count: 27, Neg. LLF: 77.04663182106925
Iteration: 5, Func. Count: 32, Neg. LLF: 77.04537104449366
Iteration: 6, Func. Count: 37, Neg. LLF: 77.04485983387026
Iteration: 7, Func. Count: 42, Neg. LLF: 77.04474074857283
Iteration: 8, Func. Count: 46, Neg. LLF: 77.04474068715399
Optimization terminated successfully (Exit mode 0)
Current function value: 77.04474074857283
Iterations: 8
Function evaluations: 46
Gradient evaluations: 8
Iteration: 1, Func. Count: 7, Neg. LLF: 167.2388361629593
Iteration: 2, Func. Count: 14, Neg. LLF: 92.13691789185222
Iteration: 3, Func. Count: 22, Neg. LLF: 114.45248273531732
Iteration: 4, Func. Count: 30, Neg. LLF: 77.03189400355677
Iteration: 5, Func. Count: 36, Neg. LLF: 77.02204544903137
Iteration: 6, Func. Count: 42, Neg. LLF: 77.24411985897302
Iteration: 7, Func. Count: 49, Neg. LLF: 77.2242450739725
Iteration: 8, Func. Count: 56, Neg. LLF: 77.01128254483068
Iteration: 9, Func. Count: 63, Neg. LLF: 77.00821591739246
Iteration: 10, Func. Count: 69, Neg. LLF: 77.00820731878582
Iteration: 11, Func. Count: 75, Neg. LLF: 77.00820500390539
Iteration: 12, Func. Count: 80, Neg. LLF: 77.00820500393365
Optimization terminated successfully (Exit mode 0)
Current function value: 77.00820500390539
Iterations: 12
Function evaluations: 80
Gradient evaluations: 12
Iteration: 1, Func. Count: 8, Neg. LLF: 641.1920829934231
Iteration: 2, Func. Count: 16, Neg. LLF: 88.31694164713254
Iteration: 3, Func. Count: 25, Neg. LLF: 122.57027761857687
Iteration: 4, Func. Count: 34, Neg. LLF: 76.65160343450282
Iteration: 5, Func. Count: 41, Neg. LLF: 76.52894541985718
Iteration: 6, Func. Count: 48, Neg. LLF: 76.51022378163658
Iteration: 7, Func. Count: 55, Neg. LLF: 76.508601885022
Iteration: 8, Func. Count: 62, Neg. LLF: 76.5085202728355
Iteration: 9, Func. Count: 69, Neg. LLF: 76.50850496618608
Iteration: 10, Func. Count: 75, Neg. LLF: 76.50850496626636
Optimization terminated successfully (Exit mode 0)
Current function value: 76.50850496618608
Iterations: 10
Function evaluations: 75
Gradient evaluations: 10
Iteration: 1, Func. Count: 9, Neg. LLF: 193.41667593220458
Iteration: 2, Func. Count: 18, Neg. LLF: 87.80390741138322
Iteration: 3, Func. Count: 27, Neg. LLF: 7341591.932655669
Iteration: 4, Func. Count: 37, Neg. LLF: 76.57231894810423
Iteration: 5, Func. Count: 45, Neg. LLF: 76.84399879565115
Iteration: 6, Func. Count: 54, Neg. LLF: 76.51320890314639
Iteration: 7, Func. Count: 62, Neg. LLF: 76.50860118613666
Iteration: 8, Func. Count: 70, Neg. LLF: 76.50850603404827
Iteration: 9, Func. Count: 78, Neg. LLF: 76.50850482272185
Iteration: 10, Func. Count: 85, Neg. LLF: 76.50850486470895
Optimization terminated successfully (Exit mode 0)
Current function value: 76.50850482272185
Iterations: 10
Function evaluations: 85
Gradient evaluations: 10
Iteration: 1, Func. Count: 10, Neg. LLF: 229.2469772879074
Iteration: 2, Func. Count: 20, Neg. LLF: 85.90617316098513
Iteration: 3, Func. Count: 30, Neg. LLF: 7180394.499723861
Iteration: 4, Func. Count: 41, Neg. LLF: 76.67874903626459
Iteration: 5, Func. Count: 50, Neg. LLF: 77.05723904042489
Iteration: 6, Func. Count: 60, Neg. LLF: 76.5591458287278
Iteration: 7, Func. Count: 70, Neg. LLF: 76.50872579200191
Iteration: 8, Func. Count: 79, Neg. LLF: 76.50851349701273
Iteration: 9, Func. Count: 88, Neg. LLF: 76.50850573894256
Iteration: 10, Func. Count: 97, Neg. LLF: 76.50850475003955
Optimization terminated successfully (Exit mode 0)
Current function value: 76.50850475003955
Iterations: 10
Function evaluations: 97
Gradient evaluations: 10
Iteration: 1, Func. Count: 7, Neg. LLF: 150.27786520137803
Iteration: 2, Func. Count: 17, Neg. LLF: 135.34545590510564
Iteration: 3, Func. Count: 25, Neg. LLF: 77.10423026513352
Iteration: 4, Func. Count: 31, Neg. LLF: 78.55729805413281
Iteration: 5, Func. Count: 38, Neg. LLF: 78.29416834477759
Iteration: 6, Func. Count: 45, Neg. LLF: 76.85137229483391
Iteration: 7, Func. Count: 51, Neg. LLF: 76.84694546342419
Iteration: 8, Func. Count: 57, Neg. LLF: 76.84648901770004
Iteration: 9, Func. Count: 63, Neg. LLF: 76.84631493831861
Iteration: 10, Func. Count: 69, Neg. LLF: 76.84631134226717
Iteration: 11, Func. Count: 75, Neg. LLF: 76.84631061652033
Optimization terminated successfully (Exit mode 0)
Current function value: 76.84631061652033
Iterations: 11
Function evaluations: 75
Gradient evaluations: 11
Iteration: 1, Func. Count: 8, Neg. LLF: 133.4799543883734
Iteration: 2, Func. Count: 16, Neg. LLF: 117.79075782367818
Iteration: 3, Func. Count: 25, Neg. LLF: 81.52306454276243
Iteration: 4, Func. Count: 34, Neg. LLF: 77.100273546096
Iteration: 5, Func. Count: 41, Neg. LLF: 76.8847600140062
Iteration: 6, Func. Count: 48, Neg. LLF: 78.2343127986713
Iteration: 7, Func. Count: 56, Neg. LLF: 76.8472788729006
Iteration: 8, Func. Count: 63, Neg. LLF: 76.84272805013174
Iteration: 9, Func. Count: 70, Neg. LLF: 76.84209892997546
Iteration: 10, Func. Count: 77, Neg. LLF: 76.84203392696726
Iteration: 11, Func. Count: 84, Neg. LLF: 76.8420266830288
Iteration: 12, Func. Count: 90, Neg. LLF: 76.84202668305612
Optimization terminated successfully (Exit mode 0)
Current function value: 76.8420266830288
Iterations: 12
Function evaluations: 90
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 6332560.2586859455
Iteration: 2, Func. Count: 18, Neg. LLF: 121.52695507325585
Iteration: 3, Func. Count: 28, Neg. LLF: 97.40300319284547
Iteration: 4, Func. Count: 38, Neg. LLF: 77.08265247738395
Iteration: 5, Func. Count: 46, Neg. LLF: 76.5233798140526
Iteration: 6, Func. Count: 54, Neg. LLF: 76.5094787449217
Iteration: 7, Func. Count: 62, Neg. LLF: 76.5092808171161
Iteration: 8, Func. Count: 71, Neg. LLF: 76.50851999275967
Iteration: 9, Func. Count: 79, Neg. LLF: 76.50850847222102
Iteration: 10, Func. Count: 87, Neg. LLF: 76.50850474050945
Iteration: 11, Func. Count: 94, Neg. LLF: 76.50850474051228
Optimization terminated successfully (Exit mode 0)
Current function value: 76.50850474050945
Iterations: 11
Function evaluations: 94
Gradient evaluations: 11
Iteration: 1, Func. Count: 10, Neg. LLF: 152.10779464429805
Iteration: 2, Func. Count: 20, Neg. LLF: 4148874.647241877
Iteration: 3, Func. Count: 31, Neg. LLF: 96.16702490367167
Iteration: 4, Func. Count: 42, Neg. LLF: 76.75212263172936
Iteration: 5, Func. Count: 51, Neg. LLF: 76.5265165837935
Iteration: 6, Func. Count: 60, Neg. LLF: 76.51726244349555
Iteration: 7, Func. Count: 69, Neg. LLF: 76.50861709728326
Iteration: 8, Func. Count: 78, Neg. LLF: 76.50851559492051
Iteration: 9, Func. Count: 87, Neg. LLF: 76.50850563585757
Iteration: 10, Func. Count: 96, Neg. LLF: 76.50850474040439
Optimization terminated successfully (Exit mode 0)
Current function value: 76.50850474040439
Iterations: 10
Function evaluations: 96
Gradient evaluations: 10
Iteration: 1, Func. Count: 11, Neg. LLF: 194.73736957430847
Iteration: 2, Func. Count: 22, Neg. LLF: 4738067.442338434
Iteration: 3, Func. Count: 34, Neg. LLF: 92.24678327877697
Iteration: 4, Func. Count: 46, Neg. LLF: 76.60121364792971
Iteration: 5, Func. Count: 56, Neg. LLF: 76.57086077952788
Iteration: 6, Func. Count: 66, Neg. LLF: 76.51041267327865
Iteration: 7, Func. Count: 76, Neg. LLF: 76.5087956543581
Iteration: 8, Func. Count: 86, Neg. LLF: 76.50851926233794
Iteration: 9, Func. Count: 96, Neg. LLF: 76.50850487081696
Iteration: 10, Func. Count: 105, Neg. LLF: 76.50850490023878
Optimization terminated successfully (Exit mode 0)
Current function value: 76.50850487081696
Iterations: 10
Function evaluations: 105
Gradient evaluations: 10
Iteration: 1, Func. Count: 8, Neg. LLF: 163.74820482041574
Iteration: 2, Func. Count: 19, Neg. LLF: 137.36245564533527
Iteration: 3, Func. Count: 28, Neg. LLF: 77.22247950326117
Iteration: 4, Func. Count: 35, Neg. LLF: 77.06892314117026
Iteration: 5, Func. Count: 42, Neg. LLF: 78.38727778423895
Iteration: 6, Func. Count: 50, Neg. LLF: 76.96897106599408
Iteration: 7, Func. Count: 58, Neg. LLF: 76.84776183725953
Iteration: 8, Func. Count: 65, Neg. LLF: 76.84636745597344
Iteration: 9, Func. Count: 72, Neg. LLF: 76.84631398203899
Iteration: 10, Func. Count: 79, Neg. LLF: 76.84631139561688
Iteration: 11, Func. Count: 86, Neg. LLF: 76.84631062561436
Optimization terminated successfully (Exit mode 0)
Current function value: 76.84631062561436
Iterations: 11
Function evaluations: 86
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 134.72177274462254
Iteration: 2, Func. Count: 18, Neg. LLF: 133.07004284069498
Iteration: 3, Func. Count: 28, Neg. LLF: 85.15213310154567
Iteration: 4, Func. Count: 38, Neg. LLF: 77.09855892278654
Iteration: 5, Func. Count: 46, Neg. LLF: 76.87699941065789
Iteration: 6, Func. Count: 54, Neg. LLF: 77.68134387646117
Iteration: 7, Func. Count: 63, Neg. LLF: 76.84729249701272
Iteration: 8, Func. Count: 71, Neg. LLF: 76.84235062129015
Iteration: 9, Func. Count: 79, Neg. LLF: 76.84210016446839
Iteration: 10, Func. Count: 87, Neg. LLF: 76.84202869270676
Iteration: 11, Func. Count: 95, Neg. LLF: 76.8420267903779
Iteration: 12, Func. Count: 102, Neg. LLF: 76.84202679042438
Optimization terminated successfully (Exit mode 0)
Current function value: 76.8420267903779
Iterations: 12
Function evaluations: 102
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 6464096.512052744
Iteration: 2, Func. Count: 20, Neg. LLF: 128.743651899583
Iteration: 3, Func. Count: 31, Neg. LLF: 97.64296353476216
Iteration: 4, Func. Count: 42, Neg. LLF: 77.08496483648605
Iteration: 5, Func. Count: 51, Neg. LLF: 76.53287135172405
Iteration: 6, Func. Count: 60, Neg. LLF: 76.51106829497317
Iteration: 7, Func. Count: 69, Neg. LLF: 76.51008482830255
Iteration: 8, Func. Count: 78, Neg. LLF: 76.50859463011273
Iteration: 9, Func. Count: 87, Neg. LLF: 76.50851783408538
Iteration: 10, Func. Count: 96, Neg. LLF: 76.50850672231044
Iteration: 11, Func. Count: 105, Neg. LLF: 76.50850474507963
Iteration: 12, Func. Count: 113, Neg. LLF: 76.50850474508454
Optimization terminated successfully (Exit mode 0)
Current function value: 76.50850474507963
Iterations: 12
Function evaluations: 113
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 149.04457366309012
Iteration: 2, Func. Count: 22, Neg. LLF: 4199563.235663137
Iteration: 3, Func. Count: 33, Neg. LLF: 96.44269812299018
Iteration: 4, Func. Count: 45, Neg. LLF: 77.07327837148281
Iteration: 5, Func. Count: 55, Neg. LLF: 78.57001719399842
Iteration: 6, Func. Count: 66, Neg. LLF: 76.69483639797009
Iteration: 7, Func. Count: 76, Neg. LLF: 76.55497569306944
Iteration: 8, Func. Count: 86, Neg. LLF: 76.51468014935686
Iteration: 9, Func. Count: 96, Neg. LLF: 76.50925567842494
Iteration: 10, Func. Count: 106, Neg. LLF: 76.50857026240757
Iteration: 11, Func. Count: 116, Neg. LLF: 76.5085060083524
Iteration: 12, Func. Count: 126, Neg. LLF: 76.50850475246182
Iteration: 13, Func. Count: 135, Neg. LLF: 76.5085047944204
Optimization terminated successfully (Exit mode 0)
Current function value: 76.50850475246182
Iterations: 13
Function evaluations: 135
Gradient evaluations: 13
Iteration: 1, Func. Count: 12, Neg. LLF: 183.53082714500397
Iteration: 2, Func. Count: 24, Neg. LLF: 4813997.660020245
Iteration: 3, Func. Count: 36, Neg. LLF: 94.40047947367647
Iteration: 4, Func. Count: 49, Neg. LLF: 76.85365040416971
Iteration: 5, Func. Count: 60, Neg. LLF: 78.73832668587387
Iteration: 6, Func. Count: 72, Neg. LLF: 76.66957040587907
Iteration: 7, Func. Count: 83, Neg. LLF: 76.52930789374864
Iteration: 8, Func. Count: 94, Neg. LLF: 76.51078293568632
Iteration: 9, Func. Count: 105, Neg. LLF: 76.50863078320268
Iteration: 10, Func. Count: 116, Neg. LLF: 76.50851544471627
Iteration: 11, Func. Count: 127, Neg. LLF: 76.50850523016409
Iteration: 12, Func. Count: 137, Neg. LLF: 76.50850525951644
Optimization terminated successfully (Exit mode 0)
Current function value: 76.50850523016409
Iterations: 12
Function evaluations: 137
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 173.88806429886375
Iteration: 2, Func. Count: 21, Neg. LLF: 135.97785815736796
Iteration: 3, Func. Count: 31, Neg. LLF: 78.0786525947917
Iteration: 4, Func. Count: 40, Neg. LLF: 77.13087378974713
Iteration: 5, Func. Count: 48, Neg. LLF: 78.28549020893983
Iteration: 6, Func. Count: 57, Neg. LLF: 76.87189185403439
Iteration: 7, Func. Count: 65, Neg. LLF: 76.84841505373662
Iteration: 8, Func. Count: 73, Neg. LLF: 76.84648065360311
Iteration: 9, Func. Count: 81, Neg. LLF: 76.84634519517401
Iteration: 10, Func. Count: 89, Neg. LLF: 76.84631597861873
Iteration: 11, Func. Count: 97, Neg. LLF: 76.84631084892145
Iteration: 12, Func. Count: 104, Neg. LLF: 76.84631087805754
Optimization terminated successfully (Exit mode 0)
Current function value: 76.84631084892145
Iterations: 12
Function evaluations: 104
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 135.94630234537055
Iteration: 2, Func. Count: 20, Neg. LLF: 147.25705694353078
Iteration: 3, Func. Count: 31, Neg. LLF: 86.88184272357209
Iteration: 4, Func. Count: 42, Neg. LLF: 77.1003415801732
Iteration: 5, Func. Count: 51, Neg. LLF: 76.877403143538
Iteration: 6, Func. Count: 60, Neg. LLF: 77.58357560193654
Iteration: 7, Func. Count: 70, Neg. LLF: 76.84778021048945
Iteration: 8, Func. Count: 79, Neg. LLF: 76.84233844235162
Iteration: 9, Func. Count: 88, Neg. LLF: 76.84210338080425
Iteration: 10, Func. Count: 97, Neg. LLF: 76.84202819659004
Iteration: 11, Func. Count: 106, Neg. LLF: 76.8420267771149
Iteration: 12, Func. Count: 114, Neg. LLF: 76.84202677716243
Optimization terminated successfully (Exit mode 0)
Current function value: 76.8420267771149
Iterations: 12
Function evaluations: 114
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 6555157.106286436
Iteration: 2, Func. Count: 22, Neg. LLF: 132.18416666120277
Iteration: 3, Func. Count: 34, Neg. LLF: 97.72381864910633
Iteration: 4, Func. Count: 46, Neg. LLF: 77.08523737303108
Iteration: 5, Func. Count: 56, Neg. LLF: 76.5337564943435
Iteration: 6, Func. Count: 66, Neg. LLF: 76.51123134772618
Iteration: 7, Func. Count: 76, Neg. LLF: 76.50975004006654
Iteration: 8, Func. Count: 86, Neg. LLF: 76.50861844945523
Iteration: 9, Func. Count: 96, Neg. LLF: 76.50851816238183
Iteration: 10, Func. Count: 106, Neg. LLF: 76.50850703242409
Iteration: 11, Func. Count: 116, Neg. LLF: 76.50850474624073
Iteration: 12, Func. Count: 125, Neg. LLF: 76.50850474624586
Optimization terminated successfully (Exit mode 0)
Current function value: 76.50850474624073
Iterations: 12
Function evaluations: 125
Gradient evaluations: 12
Iteration: 1, Func. Count: 12, Neg. LLF: 149.5661824511691
Iteration: 2, Func. Count: 24, Neg. LLF: 4228699.436966881
Iteration: 3, Func. Count: 36, Neg. LLF: 96.434634139684
Iteration: 4, Func. Count: 49, Neg. LLF: 77.07339768355634
Iteration: 5, Func. Count: 60, Neg. LLF: 78.55881835239713
Iteration: 6, Func. Count: 72, Neg. LLF: 76.68630980066969
Iteration: 7, Func. Count: 83, Neg. LLF: 76.55397293594126
Iteration: 8, Func. Count: 94, Neg. LLF: 76.51455028183588
Iteration: 9, Func. Count: 105, Neg. LLF: 76.50923524493913
Iteration: 10, Func. Count: 116, Neg. LLF: 76.50856806408109
Iteration: 11, Func. Count: 127, Neg. LLF: 76.50850598573203
Iteration: 12, Func. Count: 138, Neg. LLF: 76.50850475081941
Iteration: 13, Func. Count: 148, Neg. LLF: 76.5085047927794
Optimization terminated successfully (Exit mode 0)
Current function value: 76.50850475081941
Iterations: 13
Function evaluations: 148
Gradient evaluations: 13
Iteration: 1, Func. Count: 13, Neg. LLF: 182.17999298713036
Iteration: 2, Func. Count: 26, Neg. LLF: 4853122.49025426
Iteration: 3, Func. Count: 39, Neg. LLF: 94.47974147472951
Iteration: 4, Func. Count: 53, Neg. LLF: 76.83512675021728
Iteration: 5, Func. Count: 65, Neg. LLF: 78.7456233018575
Iteration: 6, Func. Count: 78, Neg. LLF: 76.64717129179067
Iteration: 7, Func. Count: 90, Neg. LLF: 76.52586470613504
Iteration: 8, Func. Count: 102, Neg. LLF: 76.5102392291822
Iteration: 9, Func. Count: 114, Neg. LLF: 76.50859575609927
Iteration: 10, Func. Count: 126, Neg. LLF: 76.50851338234234
Iteration: 11, Func. Count: 138, Neg. LLF: 76.50850508140287
Iteration: 12, Func. Count: 149, Neg. LLF: 76.50850511076915
Optimization terminated successfully (Exit mode 0)
Current function value: 76.50850508140287
Iterations: 12
Function evaluations: 149
Gradient evaluations: 12
Iteration: 1, Func. Count: 6, Neg. LLF: 138.7823261682349
Iteration: 2, Func. Count: 15, Neg. LLF: 131.34363987453324
Iteration: 3, Func. Count: 22, Neg. LLF: 78.45384608645914
Iteration: 4, Func. Count: 28, Neg. LLF: 77.86851632121468
Iteration: 5, Func. Count: 34, Neg. LLF: 77.77507192755539
Iteration: 6, Func. Count: 39, Neg. LLF: 77.77824995393189
Iteration: 7, Func. Count: 45, Neg. LLF: 77.7744510186252
Iteration: 8, Func. Count: 50, Neg. LLF: 77.77438362770793
Iteration: 9, Func. Count: 54, Neg. LLF: 77.77438362772544
Optimization terminated successfully (Exit mode 0)
Current function value: 77.77438362770793
Iterations: 9
Function evaluations: 54
Gradient evaluations: 9
Iteration: 1, Func. Count: 7, Neg. LLF: 134.66338883933548
Iteration: 2, Func. Count: 15, Neg. LLF: 101.95285789016354
Iteration: 3, Func. Count: 23, Neg. LLF: 77.75739902029017
Iteration: 4, Func. Count: 30, Neg. LLF: 78.38938404058871
Iteration: 5, Func. Count: 38, Neg. LLF: 77.70381702935059
Iteration: 6, Func. Count: 45, Neg. LLF: 77.69552446101243
Iteration: 7, Func. Count: 52, Neg. LLF: 77.69513642900132
Iteration: 8, Func. Count: 58, Neg. LLF: 77.6951347173734
Iteration: 9, Func. Count: 63, Neg. LLF: 77.6951347173733
Optimization terminated successfully (Exit mode 0)
Current function value: 77.6951347173734
Iterations: 9
Function evaluations: 63
Gradient evaluations: 9
Iteration: 1, Func. Count: 8, Neg. LLF: 98.59382348319431
Iteration: 2, Func. Count: 16, Neg. LLF: 100.22895817119907
Iteration: 3, Func. Count: 25, Neg. LLF: 77.83465418554306
Iteration: 4, Func. Count: 33, Neg. LLF: 79.22056142447217
Iteration: 5, Func. Count: 42, Neg. LLF: 77.53636035926476
Iteration: 6, Func. Count: 49, Neg. LLF: 77.50371857722274
Iteration: 7, Func. Count: 56, Neg. LLF: 77.50046572095295
Iteration: 8, Func. Count: 63, Neg. LLF: 77.49978087414094
Iteration: 9, Func. Count: 70, Neg. LLF: 77.49977059099382
Iteration: 10, Func. Count: 76, Neg. LLF: 77.4997705910198
Optimization terminated successfully (Exit mode 0)
Current function value: 77.49977059099382
Iterations: 10
Function evaluations: 76
Gradient evaluations: 10
Iteration: 1, Func. Count: 9, Neg. LLF: 98.8057202663099
Iteration: 2, Func. Count: 18, Neg. LLF: 111.39927847741806
Iteration: 3, Func. Count: 28, Neg. LLF: 77.75086322459279
Iteration: 4, Func. Count: 36, Neg. LLF: 80.97233345077676
Iteration: 5, Func. Count: 45, Neg. LLF: 81.52555062229723
Iteration: 6, Func. Count: 54, Neg. LLF: 77.5216800243303
Iteration: 7, Func. Count: 62, Neg. LLF: 77.50396824379088
Iteration: 8, Func. Count: 70, Neg. LLF: 77.5000896968596
Iteration: 9, Func. Count: 78, Neg. LLF: 77.4999178177735
Iteration: 10, Func. Count: 86, Neg. LLF: 77.49977224691494
Iteration: 11, Func. Count: 94, Neg. LLF: 77.49977049076215
Iteration: 12, Func. Count: 101, Neg. LLF: 77.49977051801157
Optimization terminated successfully (Exit mode 0)
Current function value: 77.49977049076215
Iterations: 12
Function evaluations: 101
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 105.69362468843416
Iteration: 2, Func. Count: 20, Neg. LLF: 102.4726910628332
Iteration: 3, Func. Count: 31, Neg. LLF: 79.5806845199212
Iteration: 4, Func. Count: 41, Neg. LLF: 78.06377204911688
Iteration: 5, Func. Count: 51, Neg. LLF: 77.5119547401205
Iteration: 6, Func. Count: 60, Neg. LLF: 77.50749103905514
Iteration: 7, Func. Count: 69, Neg. LLF: 77.49994045045366
Iteration: 8, Func. Count: 78, Neg. LLF: 77.49979689518702
Iteration: 9, Func. Count: 87, Neg. LLF: 77.49977062755089
Iteration: 10, Func. Count: 95, Neg. LLF: 77.49977064872115
Optimization terminated successfully (Exit mode 0)
Current function value: 77.49977062755089
Iterations: 10
Function evaluations: 95
Gradient evaluations: 10
Iteration: 1, Func. Count: 7, Neg. LLF: 135.74261602400227
Iteration: 2, Func. Count: 17, Neg. LLF: 130.23787444159953
Iteration: 3, Func. Count: 25, Neg. LLF: 97.89804027411554
Iteration: 4, Func. Count: 32, Neg. LLF: 77.06952656486416
Iteration: 5, Func. Count: 38, Neg. LLF: 77.01828573010759
Iteration: 6, Func. Count: 45, Neg. LLF: 77.03633682043022
Iteration: 7, Func. Count: 52, Neg. LLF: 76.92893329812938
Iteration: 8, Func. Count: 58, Neg. LLF: 76.92892843109291
Iteration: 9, Func. Count: 64, Neg. LLF: 76.92892491294076
Iteration: 10, Func. Count: 69, Neg. LLF: 76.92892484226333
Optimization terminated successfully (Exit mode 0)
Current function value: 76.92892491294076
Iterations: 10
Function evaluations: 69
Gradient evaluations: 10
Iteration: 1, Func. Count: 8, Neg. LLF: 115.49745749319024
Iteration: 2, Func. Count: 16, Neg. LLF: 103.33766228764662
Iteration: 3, Func. Count: 25, Neg. LLF: 80.18939109995668
Iteration: 4, Func. Count: 33, Neg. LLF: 77.1402183879161
Iteration: 5, Func. Count: 40, Neg. LLF: 77.0168871119317
Iteration: 6, Func. Count: 47, Neg. LLF: 76.94600866936122
Iteration: 7, Func. Count: 54, Neg. LLF: 76.93052159544003
Iteration: 8, Func. Count: 61, Neg. LLF: 76.92931053387615
Iteration: 9, Func. Count: 68, Neg. LLF: 76.92899524767982
Iteration: 10, Func. Count: 75, Neg. LLF: 76.92893694393676
Iteration: 11, Func. Count: 82, Neg. LLF: 76.92892751990202
Iteration: 12, Func. Count: 89, Neg. LLF: 76.92892507221312
Iteration: 13, Func. Count: 95, Neg. LLF: 76.92892507730997
Optimization terminated successfully (Exit mode 0)
Current function value: 76.92892507221312
Iterations: 13
Function evaluations: 95
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 105.67641233593794
Iteration: 2, Func. Count: 18, Neg. LLF: 108.60717771412253
Iteration: 3, Func. Count: 28, Neg. LLF: 86.72304369624305
Iteration: 4, Func. Count: 37, Neg. LLF: 76.88193646765664
Iteration: 5, Func. Count: 45, Neg. LLF: 76.5438333748972
Iteration: 6, Func. Count: 53, Neg. LLF: 76.51969706955708
Iteration: 7, Func. Count: 61, Neg. LLF: 76.50907793344058
Iteration: 8, Func. Count: 69, Neg. LLF: 76.50866449050274
Iteration: 9, Func. Count: 77, Neg. LLF: 76.50854784541794
Iteration: 10, Func. Count: 85, Neg. LLF: 76.50850749969331
Iteration: 11, Func. Count: 93, Neg. LLF: 76.50850479522079
Iteration: 12, Func. Count: 100, Neg. LLF: 76.5085047952005
Optimization terminated successfully (Exit mode 0)
Current function value: 76.50850479522079
Iterations: 12
Function evaluations: 100
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 114.13567080027617
Iteration: 2, Func. Count: 20, Neg. LLF: 112.85539536286
Iteration: 3, Func. Count: 31, Neg. LLF: 79.5855464181483
Iteration: 4, Func. Count: 41, Neg. LLF: 76.63809695429022
Iteration: 5, Func. Count: 50, Neg. LLF: 76.75625521247584
Iteration: 6, Func. Count: 60, Neg. LLF: 76.51914379339993
Iteration: 7, Func. Count: 69, Neg. LLF: 76.50865607788519
Iteration: 8, Func. Count: 78, Neg. LLF: 76.5085280285252
Iteration: 9, Func. Count: 87, Neg. LLF: 76.5085121511416
Iteration: 10, Func. Count: 96, Neg. LLF: 76.50850475074473
Iteration: 11, Func. Count: 104, Neg. LLF: 76.50850479271246
Optimization terminated successfully (Exit mode 0)
Current function value: 76.50850475074473
Iterations: 11
Function evaluations: 104
Gradient evaluations: 11
Iteration: 1, Func. Count: 11, Neg. LLF: 130.52684936043855
Iteration: 2, Func. Count: 22, Neg. LLF: 113.3796615686495
Iteration: 3, Func. Count: 34, Neg. LLF: 109.1485584772663
Iteration: 4, Func. Count: 46, Neg. LLF: 76.5271498656198
Iteration: 5, Func. Count: 56, Neg. LLF: 76.52891578337032
Iteration: 6, Func. Count: 67, Neg. LLF: 76.51222227836665
Iteration: 7, Func. Count: 77, Neg. LLF: 76.50908566286563
Iteration: 8, Func. Count: 87, Neg. LLF: 76.50856054968641
Iteration: 9, Func. Count: 97, Neg. LLF: 76.50850654003965
Iteration: 10, Func. Count: 107, Neg. LLF: 76.50850476032527
Iteration: 11, Func. Count: 116, Neg. LLF: 76.50850478970685
Optimization terminated successfully (Exit mode 0)
Current function value: 76.50850476032527
Iterations: 11
Function evaluations: 116
Gradient evaluations: 11
Iteration: 1, Func. Count: 8, Neg. LLF: 133.90257578299187
Iteration: 2, Func. Count: 19, Neg. LLF: 130.0425484631027
Iteration: 3, Func. Count: 28, Neg. LLF: 100.94322358183499
Iteration: 4, Func. Count: 36, Neg. LLF: 77.090107653356
Iteration: 5, Func. Count: 43, Neg. LLF: 77.04678064387647
Iteration: 6, Func. Count: 51, Neg. LLF: 79.92426072679231
Iteration: 7, Func. Count: 60, Neg. LLF: 76.9283177125908
Iteration: 8, Func. Count: 68, Neg. LLF: 76.83123102180382
Iteration: 9, Func. Count: 75, Neg. LLF: 76.83076129177262
Iteration: 10, Func. Count: 82, Neg. LLF: 76.83069847924824
Iteration: 11, Func. Count: 89, Neg. LLF: 76.83068274076564
Iteration: 12, Func. Count: 95, Neg. LLF: 76.83068274075808
Optimization terminated successfully (Exit mode 0)
Current function value: 76.83068274076564
Iterations: 12
Function evaluations: 95
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 133.76935163352383
Iteration: 2, Func. Count: 18, Neg. LLF: 100.68561836303442
Iteration: 3, Func. Count: 28, Neg. LLF: 79.30668699435887
Iteration: 4, Func. Count: 37, Neg. LLF: 77.18069243522531
Iteration: 5, Func. Count: 45, Neg. LLF: 77.10309510039698
Iteration: 6, Func. Count: 54, Neg. LLF: 82.67599481071673
Iteration: 7, Func. Count: 64, Neg. LLF: 76.92774642982222
Iteration: 8, Func. Count: 73, Neg. LLF: 76.83101440929606
Iteration: 9, Func. Count: 81, Neg. LLF: 76.83077269864448
Iteration: 10, Func. Count: 89, Neg. LLF: 76.83069070453989
Iteration: 11, Func. Count: 97, Neg. LLF: 76.83068545239912
Iteration: 12, Func. Count: 105, Neg. LLF: 76.83068283838544
Iteration: 13, Func. Count: 112, Neg. LLF: 76.83068284088552
Optimization terminated successfully (Exit mode 0)
Current function value: 76.83068283838544
Iterations: 13
Function evaluations: 112
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 102.9161754353804
Iteration: 2, Func. Count: 20, Neg. LLF: 109.96399144985338
Iteration: 3, Func. Count: 31, Neg. LLF: 77.87045353685026
Iteration: 4, Func. Count: 41, Neg. LLF: 77.16980361158059
Iteration: 5, Func. Count: 51, Neg. LLF: 77.01188321445075
Iteration: 6, Func. Count: 61, Neg. LLF: 76.53631841292349
Iteration: 7, Func. Count: 70, Neg. LLF: 76.53048270742883
Iteration: 8, Func. Count: 80, Neg. LLF: 76.51253110643087
Iteration: 9, Func. Count: 90, Neg. LLF: 76.50872954001663
Iteration: 10, Func. Count: 99, Neg. LLF: 76.50850618612431
Iteration: 11, Func. Count: 108, Neg. LLF: 76.50850475038278
Iteration: 12, Func. Count: 116, Neg. LLF: 76.5085047503732
Optimization terminated successfully (Exit mode 0)
Current function value: 76.50850475038278
Iterations: 12
Function evaluations: 116
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 104.63123848045385
Iteration: 2, Func. Count: 22, Neg. LLF: 720201.2761744675
Iteration: 3, Func. Count: 34, Neg. LLF: 77.35627621385089
Iteration: 4, Func. Count: 44, Neg. LLF: 78.96213654365702
Iteration: 5, Func. Count: 55, Neg. LLF: 65096.18751751175
Iteration: 6, Func. Count: 66, Neg. LLF: 80.4361717084595
Iteration: 7, Func. Count: 77, Neg. LLF: 76.79427813554915
Iteration: 8, Func. Count: 88, Neg. LLF: 76.52025648920265
Iteration: 9, Func. Count: 98, Neg. LLF: 76.5143924968342
Iteration: 10, Func. Count: 108, Neg. LLF: 76.50871757710306
Iteration: 11, Func. Count: 118, Neg. LLF: 76.50856924404734
Iteration: 12, Func. Count: 128, Neg. LLF: 76.50850763868732
Iteration: 13, Func. Count: 138, Neg. LLF: 76.50850486324751
Iteration: 14, Func. Count: 147, Neg. LLF: 76.50850490518332
Optimization terminated successfully (Exit mode 0)
Current function value: 76.50850486324751
Iterations: 14
Function evaluations: 147
Gradient evaluations: 14
Iteration: 1, Func. Count: 12, Neg. LLF: 114.78467897629606
Iteration: 2, Func. Count: 24, Neg. LLF: 864857.2691664317
Iteration: 3, Func. Count: 37, Neg. LLF: 108.15556225770139
Iteration: 4, Func. Count: 50, Neg. LLF: 76.90513910318053
Iteration: 5, Func. Count: 61, Neg. LLF: 76.5183838186542
Iteration: 6, Func. Count: 72, Neg. LLF: 76.50954325910945
Iteration: 7, Func. Count: 83, Neg. LLF: 76.5088053752667
Iteration: 8, Func. Count: 94, Neg. LLF: 76.50857272799566
Iteration: 9, Func. Count: 105, Neg. LLF: 76.50851340790075
Iteration: 10, Func. Count: 116, Neg. LLF: 76.50850474633523
Iteration: 11, Func. Count: 126, Neg. LLF: 76.50850477572693
Optimization terminated successfully (Exit mode 0)
Current function value: 76.50850474633523
Iterations: 11
Function evaluations: 126
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 141.9879932391802
Iteration: 2, Func. Count: 21, Neg. LLF: 130.67569240241812
Iteration: 3, Func. Count: 31, Neg. LLF: 103.20796699825324
Iteration: 4, Func. Count: 40, Neg. LLF: 77.10735886214565
Iteration: 5, Func. Count: 48, Neg. LLF: 76.96425892316522
Iteration: 6, Func. Count: 56, Neg. LLF: 80.12929871793615
Iteration: 7, Func. Count: 66, Neg. LLF: 76.87667973343866
Iteration: 8, Func. Count: 74, Neg. LLF: 76.83606320480065
Iteration: 9, Func. Count: 82, Neg. LLF: 76.83093455123166
Iteration: 10, Func. Count: 90, Neg. LLF: 76.83069810898223
Iteration: 11, Func. Count: 98, Neg. LLF: 76.83068276622616
Iteration: 12, Func. Count: 105, Neg. LLF: 76.83068279745957
Optimization terminated successfully (Exit mode 0)
Current function value: 76.83068276622616
Iterations: 12
Function evaluations: 105
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 140.8364245407019
Iteration: 2, Func. Count: 20, Neg. LLF: 100.13452056010502
Iteration: 3, Func. Count: 31, Neg. LLF: 78.18857839635399
Iteration: 4, Func. Count: 41, Neg. LLF: 77.28203291118477
Iteration: 5, Func. Count: 51, Neg. LLF: 77.75831245139717
Iteration: 6, Func. Count: 61, Neg. LLF: 76.8519532068313
Iteration: 7, Func. Count: 70, Neg. LLF: 78.93948027499505
Iteration: 8, Func. Count: 81, Neg. LLF: 76.83161499981875
Iteration: 9, Func. Count: 90, Neg. LLF: 76.83098525450333
Iteration: 10, Func. Count: 99, Neg. LLF: 76.83070746998992
Iteration: 11, Func. Count: 108, Neg. LLF: 76.83068718652714
Iteration: 12, Func. Count: 117, Neg. LLF: 76.83068307029669
Iteration: 13, Func. Count: 125, Neg. LLF: 76.83068307276301
Optimization terminated successfully (Exit mode 0)
Current function value: 76.83068307029669
Iterations: 13
Function evaluations: 125
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 103.93095631601906
Iteration: 2, Func. Count: 22, Neg. LLF: 118.33969978394121
Iteration: 3, Func. Count: 34, Neg. LLF: 77.21314027360178
Iteration: 4, Func. Count: 45, Neg. LLF: 79.291564560613
Iteration: 5, Func. Count: 57, Neg. LLF: 76.85228684326255
Iteration: 6, Func. Count: 68, Neg. LLF: 76.53015833574095
Iteration: 7, Func. Count: 78, Neg. LLF: 76.60133871392037
Iteration: 8, Func. Count: 89, Neg. LLF: 76.50943985104165
Iteration: 9, Func. Count: 99, Neg. LLF: 76.50867368625444
Iteration: 10, Func. Count: 109, Neg. LLF: 76.50855316281037
Iteration: 11, Func. Count: 119, Neg. LLF: 76.50850790991821
Iteration: 12, Func. Count: 129, Neg. LLF: 76.50850480380934
Iteration: 13, Func. Count: 138, Neg. LLF: 76.50850480377814
Optimization terminated successfully (Exit mode 0)
Current function value: 76.50850480380934
Iterations: 13
Function evaluations: 138
Gradient evaluations: 13
Iteration: 1, Func. Count: 12, Neg. LLF: 106.1536023911626
Iteration: 2, Func. Count: 24, Neg. LLF: 614825.73342381
Iteration: 3, Func. Count: 37, Neg. LLF: 77.54247106739548
Iteration: 4, Func. Count: 49, Neg. LLF: 77.44856397009217
Iteration: 5, Func. Count: 61, Neg. LLF: 80.518138652868
Iteration: 6, Func. Count: 74, Neg. LLF: 76.51667485410267
Iteration: 7, Func. Count: 85, Neg. LLF: 76.51942764577656
Iteration: 8, Func. Count: 97, Neg. LLF: 76.50869584033654
Iteration: 9, Func. Count: 108, Neg. LLF: 76.50854087142318
Iteration: 10, Func. Count: 119, Neg. LLF: 76.50851249980057
Iteration: 11, Func. Count: 130, Neg. LLF: 76.5085051347795
Iteration: 12, Func. Count: 140, Neg. LLF: 76.5085051766924
Optimization terminated successfully (Exit mode 0)
Current function value: 76.5085051347795
Iterations: 12
Function evaluations: 140
Gradient evaluations: 12
Iteration: 1, Func. Count: 13, Neg. LLF: 117.16229227522207
Iteration: 2, Func. Count: 26, Neg. LLF: 769445.9750735635
Iteration: 3, Func. Count: 40, Neg. LLF: 106.98532239633506
Iteration: 4, Func. Count: 54, Neg. LLF: 76.87869060323105
Iteration: 5, Func. Count: 66, Neg. LLF: 76.51437239864957
Iteration: 6, Func. Count: 78, Neg. LLF: 76.5091389989411
Iteration: 7, Func. Count: 90, Neg. LLF: 76.50869204706632
Iteration: 8, Func. Count: 102, Neg. LLF: 76.50853738737362
Iteration: 9, Func. Count: 114, Neg. LLF: 76.50850698984776
Iteration: 10, Func. Count: 126, Neg. LLF: 76.50850477711025
Iteration: 11, Func. Count: 137, Neg. LLF: 76.50850480648703
Optimization terminated successfully (Exit mode 0)
Current function value: 76.50850477711025
Iterations: 11
Function evaluations: 137
Gradient evaluations: 11
Iteration: 1, Func. Count: 10, Neg. LLF: 151.28877396167593
Iteration: 2, Func. Count: 23, Neg. LLF: 129.6561625836203
Iteration: 3, Func. Count: 34, Neg. LLF: 123.70844402361998
Iteration: 4, Func. Count: 44, Neg. LLF: 77.11241812438477
Iteration: 5, Func. Count: 53, Neg. LLF: 76.94331529300302
Iteration: 6, Func. Count: 62, Neg. LLF: 80.2553573700873
Iteration: 7, Func. Count: 73, Neg. LLF: 76.86652911430018
Iteration: 8, Func. Count: 82, Neg. LLF: 76.83604144260414
Iteration: 9, Func. Count: 91, Neg. LLF: 76.830922363444
Iteration: 10, Func. Count: 100, Neg. LLF: 76.830690191997
Iteration: 11, Func. Count: 109, Neg. LLF: 76.8306828757643
Iteration: 12, Func. Count: 117, Neg. LLF: 76.83068290178885
Optimization terminated successfully (Exit mode 0)
Current function value: 76.8306828757643
Iterations: 12
Function evaluations: 117
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 143.29678477882362
Iteration: 2, Func. Count: 22, Neg. LLF: 99.83790612647235
Iteration: 3, Func. Count: 34, Neg. LLF: 77.99619110458717
Iteration: 4, Func. Count: 45, Neg. LLF: 77.31630189932805
Iteration: 5, Func. Count: 56, Neg. LLF: 78.130470060877
Iteration: 6, Func. Count: 67, Neg. LLF: 76.85245501964187
Iteration: 7, Func. Count: 77, Neg. LLF: 78.80099001615237
Iteration: 8, Func. Count: 88, Neg. LLF: 76.83176747767442
Iteration: 9, Func. Count: 98, Neg. LLF: 76.8310134203012
Iteration: 10, Func. Count: 108, Neg. LLF: 76.83072247131956
Iteration: 11, Func. Count: 118, Neg. LLF: 76.83068942451575
Iteration: 12, Func. Count: 128, Neg. LLF: 76.83068327903199
Iteration: 13, Func. Count: 137, Neg. LLF: 76.83068328149278
Optimization terminated successfully (Exit mode 0)
Current function value: 76.83068327903199
Iterations: 13
Function evaluations: 137
Gradient evaluations: 13
Iteration: 1, Func. Count: 12, Neg. LLF: 104.2703342953358
Iteration: 2, Func. Count: 24, Neg. LLF: 120.4307006468675
Iteration: 3, Func. Count: 37, Neg. LLF: 77.25485447207956
Iteration: 4, Func. Count: 49, Neg. LLF: 78.62879301025431
Iteration: 5, Func. Count: 62, Neg. LLF: 76.97418943355761
Iteration: 6, Func. Count: 74, Neg. LLF: 76.52792209997644
Iteration: 7, Func. Count: 85, Neg. LLF: 76.58558819948259
Iteration: 8, Func. Count: 97, Neg. LLF: 76.50928178189585
Iteration: 9, Func. Count: 108, Neg. LLF: 76.50866981808423
Iteration: 10, Func. Count: 119, Neg. LLF: 76.50854891384748
Iteration: 11, Func. Count: 130, Neg. LLF: 76.50850784610601
Iteration: 12, Func. Count: 141, Neg. LLF: 76.50850480044625
Iteration: 13, Func. Count: 151, Neg. LLF: 76.50850480041858
Optimization terminated successfully (Exit mode 0)
Current function value: 76.50850480044625
Iterations: 13
Function evaluations: 151
Gradient evaluations: 13
Iteration: 1, Func. Count: 13, Neg. LLF: 106.75311573543071
Iteration: 2, Func. Count: 26, Neg. LLF: 837467.9467704905
Iteration: 3, Func. Count: 40, Neg. LLF: 77.69481604664439
Iteration: 4, Func. Count: 53, Neg. LLF: 77.29344990416254
Iteration: 5, Func. Count: 66, Neg. LLF: 80.10305351910596
Iteration: 6, Func. Count: 80, Neg. LLF: 76.51548920656407
Iteration: 7, Func. Count: 92, Neg. LLF: 76.51790492148392
Iteration: 8, Func. Count: 105, Neg. LLF: 76.50862909670042
Iteration: 9, Func. Count: 117, Neg. LLF: 76.50853049373954
Iteration: 10, Func. Count: 129, Neg. LLF: 76.50850956475303
Iteration: 11, Func. Count: 141, Neg. LLF: 76.50850498332342
Iteration: 12, Func. Count: 152, Neg. LLF: 76.50850502525283
Optimization terminated successfully (Exit mode 0)
Current function value: 76.50850498332342
Iterations: 12
Function evaluations: 152
Gradient evaluations: 12
Iteration: 1, Func. Count: 14, Neg. LLF: 117.84572254943977
Iteration: 2, Func. Count: 28, Neg. LLF: 733124.2145066195
Iteration: 3, Func. Count: 43, Neg. LLF: 107.08277166156218
Iteration: 4, Func. Count: 58, Neg. LLF: 76.86885379068988
Iteration: 5, Func. Count: 71, Neg. LLF: 76.51317735306132
Iteration: 6, Func. Count: 84, Neg. LLF: 76.50904126814484
Iteration: 7, Func. Count: 97, Neg. LLF: 76.50867053707123
Iteration: 8, Func. Count: 110, Neg. LLF: 76.50852867872983
Iteration: 9, Func. Count: 123, Neg. LLF: 76.50850616269163
Iteration: 10, Func. Count: 136, Neg. LLF: 76.50850479292747
Iteration: 11, Func. Count: 148, Neg. LLF: 76.50850482229585
Optimization terminated successfully (Exit mode 0)
Current function value: 76.50850479292747
Iterations: 11
Function evaluations: 148
Gradient evaluations: 11
Iteration: 1, Func. Count: 7, Neg. LLF: 116.96240685791543
Iteration: 2, Func. Count: 17, Neg. LLF: 205.95557761484983
Iteration: 3, Func. Count: 24, Neg. LLF: 5767.10832952438
Iteration: 4, Func. Count: 31, Neg. LLF: 84.04982093919578
Iteration: 5, Func. Count: 39, Neg. LLF: 76.87526609186288
Iteration: 6, Func. Count: 45, Neg. LLF: 76.86849585410923
Iteration: 7, Func. Count: 51, Neg. LLF: 76.85502929022104
Iteration: 8, Func. Count: 57, Neg. LLF: 76.85410839023064
Iteration: 9, Func. Count: 63, Neg. LLF: 76.85403063082936
Iteration: 10, Func. Count: 69, Neg. LLF: 76.85402966007298
Optimization terminated successfully (Exit mode 0)
Current function value: 76.85402966007298
Iterations: 10
Function evaluations: 69
Gradient evaluations: 10
Iteration: 1, Func. Count: 8, Neg. LLF: 83.39314199087883
Iteration: 2, Func. Count: 16, Neg. LLF: 81.50492790576558
Iteration: 3, Func. Count: 25, Neg. LLF: 76.96357358170884
Iteration: 4, Func. Count: 32, Neg. LLF: 78.88243237769437
Iteration: 5, Func. Count: 40, Neg. LLF: 77.46553995268121
Iteration: 6, Func. Count: 48, Neg. LLF: 77.94630283211643
Iteration: 7, Func. Count: 56, Neg. LLF: 76.85414907093197
Iteration: 8, Func. Count: 63, Neg. LLF: 76.85403351580435
Iteration: 9, Func. Count: 70, Neg. LLF: 76.85402970351498
Iteration: 10, Func. Count: 76, Neg. LLF: 76.85402972863245
Optimization terminated successfully (Exit mode 0)
Current function value: 76.85402970351498
Iterations: 10
Function evaluations: 76
Gradient evaluations: 10
Iteration: 1, Func. Count: 9, Neg. LLF: 82.72481829489396
Iteration: 2, Func. Count: 19, Neg. LLF: 87.38669472017318
Iteration: 3, Func. Count: 28, Neg. LLF: 78.58996525685625
Iteration: 4, Func. Count: 37, Neg. LLF: 77.17978189567465
Iteration: 5, Func. Count: 45, Neg. LLF: 77.85728257372571
Iteration: 6, Func. Count: 54, Neg. LLF: 83.12254855276832
Iteration: 7, Func. Count: 63, Neg. LLF: 76.85677906412089
Iteration: 8, Func. Count: 71, Neg. LLF: 76.85433056617343
Iteration: 9, Func. Count: 79, Neg. LLF: 76.85403387683306
Iteration: 10, Func. Count: 87, Neg. LLF: 76.8540300195683
Iteration: 11, Func. Count: 94, Neg. LLF: 76.85403003794063
Optimization terminated successfully (Exit mode 0)
Current function value: 76.8540300195683
Iterations: 11
Function evaluations: 94
Gradient evaluations: 11
Iteration: 1, Func. Count: 10, Neg. LLF: 85.08820638692752
Iteration: 2, Func. Count: 21, Neg. LLF: 106.56401125756211
Iteration: 3, Func. Count: 31, Neg. LLF: 84.43396466437493
Iteration: 4, Func. Count: 42, Neg. LLF: 76.8815921630657
Iteration: 5, Func. Count: 51, Neg. LLF: 77.50649597342266
Iteration: 6, Func. Count: 61, Neg. LLF: 76.95987117154527
Iteration: 7, Func. Count: 71, Neg. LLF: 76.85428620701308
Iteration: 8, Func. Count: 80, Neg. LLF: 76.85403020619684
Iteration: 9, Func. Count: 88, Neg. LLF: 76.85403024094745
Optimization terminated successfully (Exit mode 0)
Current function value: 76.85403020619684
Iterations: 9
Function evaluations: 88
Gradient evaluations: 9
Iteration: 1, Func. Count: 11, Neg. LLF: 86.59769434095483
Iteration: 2, Func. Count: 23, Neg. LLF: 153.3485963495816
Iteration: 3, Func. Count: 34, Neg. LLF: 82.4397226479698
Iteration: 4, Func. Count: 46, Neg. LLF: 76.95393925735536
Iteration: 5, Func. Count: 56, Neg. LLF: 80.73585503887857
Iteration: 6, Func. Count: 67, Neg. LLF: 76.86617196921604
Iteration: 7, Func. Count: 77, Neg. LLF: 76.8546240498389
Iteration: 8, Func. Count: 87, Neg. LLF: 76.85408812214631
Iteration: 9, Func. Count: 97, Neg. LLF: 76.85403002619675
Iteration: 10, Func. Count: 106, Neg. LLF: 76.85403005467225
Optimization terminated successfully (Exit mode 0)
Current function value: 76.85403002619675
Iterations: 10
Function evaluations: 106
Gradient evaluations: 10
Iteration: 1, Func. Count: 8, Neg. LLF: 116.46267762426353
Iteration: 2, Func. Count: 19, Neg. LLF: 636932.5226520704
Iteration: 3, Func. Count: 27, Neg. LLF: 3108.9140336062933
Iteration: 4, Func. Count: 35, Neg. LLF: 76.40992694423477
Iteration: 5, Func. Count: 42, Neg. LLF: 77.16564364000831
Iteration: 6, Func. Count: 50, Neg. LLF: 76.5886777869466
Iteration: 7, Func. Count: 58, Neg. LLF: 76.40483625347356
Iteration: 8, Func. Count: 66, Neg. LLF: 76.38310773713724
Iteration: 9, Func. Count: 73, Neg. LLF: 76.38298207574607
Iteration: 10, Func. Count: 80, Neg. LLF: 76.38296160824292
Iteration: 11, Func. Count: 86, Neg. LLF: 76.38296153669016
Optimization terminated successfully (Exit mode 0)
Current function value: 76.38296160824292
Iterations: 11
Function evaluations: 86
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 81.08008864608877
Iteration: 2, Func. Count: 19, Neg. LLF: 15884794.442288755
Iteration: 3, Func. Count: 28, Neg. LLF: 77.81360937731228
Iteration: 4, Func. Count: 37, Neg. LLF: 78.9511044671606
Iteration: 5, Func. Count: 46, Neg. LLF: 77.5464237177323
Iteration: 6, Func. Count: 55, Neg. LLF: 76.41717766856672
Iteration: 7, Func. Count: 63, Neg. LLF: 77.1903217000355
Iteration: 8, Func. Count: 72, Neg. LLF: 76.38438150350875
Iteration: 9, Func. Count: 80, Neg. LLF: 76.38298536388336
Iteration: 10, Func. Count: 88, Neg. LLF: 76.38296236989737
Iteration: 11, Func. Count: 96, Neg. LLF: 76.38296154586402
Optimization terminated successfully (Exit mode 0)
Current function value: 76.38296154586402
Iterations: 11
Function evaluations: 96
Gradient evaluations: 11
Iteration: 1, Func. Count: 10, Neg. LLF: 81.21778654227472
Iteration: 2, Func. Count: 21, Neg. LLF: 13901107.11957108
Iteration: 3, Func. Count: 31, Neg. LLF: 77.26911180364208
Iteration: 4, Func. Count: 41, Neg. LLF: 81.68901306169253
Iteration: 5, Func. Count: 51, Neg. LLF: 77.72608875451142
Iteration: 6, Func. Count: 61, Neg. LLF: 76.41189776905009
Iteration: 7, Func. Count: 70, Neg. LLF: 77.25698842495875
Iteration: 8, Func. Count: 80, Neg. LLF: 76.38399557353753
Iteration: 9, Func. Count: 89, Neg. LLF: 76.38314276379828
Iteration: 10, Func. Count: 98, Neg. LLF: 76.38296197617238
Iteration: 11, Func. Count: 107, Neg. LLF: 76.38296151162035
Optimization terminated successfully (Exit mode 0)
Current function value: 76.38296151162035
Iterations: 11
Function evaluations: 107
Gradient evaluations: 11
Iteration: 1, Func. Count: 11, Neg. LLF: 81.70352240254212
Iteration: 2, Func. Count: 23, Neg. LLF: 13895494.700927103
Iteration: 3, Func. Count: 34, Neg. LLF: 77.08463061372417
Iteration: 4, Func. Count: 44, Neg. LLF: 77.77983016153104
Iteration: 5, Func. Count: 55, Neg. LLF: 105.04433717385436
Iteration: 6, Func. Count: 66, Neg. LLF: 76.39829418998153
Iteration: 7, Func. Count: 76, Neg. LLF: 80.61795311148909
Iteration: 8, Func. Count: 88, Neg. LLF: 76.41222976297789
Iteration: 9, Func. Count: 99, Neg. LLF: 76.3834587123928
Iteration: 10, Func. Count: 109, Neg. LLF: 76.38305200404814
Iteration: 11, Func. Count: 119, Neg. LLF: 76.38298137844154
Iteration: 12, Func. Count: 129, Neg. LLF: 76.38296173439095
Iteration: 13, Func. Count: 138, Neg. LLF: 76.38296177627807
Optimization terminated successfully (Exit mode 0)
Current function value: 76.38296173439095
Iterations: 13
Function evaluations: 138
Gradient evaluations: 13
Iteration: 1, Func. Count: 12, Neg. LLF: 82.13914774386777
Iteration: 2, Func. Count: 25, Neg. LLF: 19191077.992518518
Iteration: 3, Func. Count: 37, Neg. LLF: 78.62472609819952
Iteration: 4, Func. Count: 49, Neg. LLF: 79.01286626305108
Iteration: 5, Func. Count: 61, Neg. LLF: 77.67650218913094
Iteration: 6, Func. Count: 73, Neg. LLF: 76.51244059811971
Iteration: 7, Func. Count: 84, Neg. LLF: 76.58165088745169
Iteration: 8, Func. Count: 96, Neg. LLF: 77.50825000889196
Iteration: 9, Func. Count: 108, Neg. LLF: 76.38798222988488
Iteration: 10, Func. Count: 119, Neg. LLF: 76.38317141708266
Iteration: 11, Func. Count: 130, Neg. LLF: 76.38296455477541
Iteration: 12, Func. Count: 141, Neg. LLF: 76.38296181435855
Iteration: 13, Func. Count: 151, Neg. LLF: 76.38296184457612
Optimization terminated successfully (Exit mode 0)
Current function value: 76.38296181435855
Iterations: 13
Function evaluations: 151
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 116.41776669808269
Iteration: 2, Func. Count: 21, Neg. LLF: 1951.8977834865807
Iteration: 3, Func. Count: 30, Neg. LLF: 1423.8360807077872
Iteration: 4, Func. Count: 39, Neg. LLF: 76.3980337175378
Iteration: 5, Func. Count: 47, Neg. LLF: 79.07217405597385
Iteration: 6, Func. Count: 56, Neg. LLF: 76.79283709590283
Iteration: 7, Func. Count: 65, Neg. LLF: 76.39412480725478
Iteration: 8, Func. Count: 74, Neg. LLF: 76.36780979817169
Iteration: 9, Func. Count: 82, Neg. LLF: 76.3675785627106
Iteration: 10, Func. Count: 89, Neg. LLF: 76.36757854619543
Optimization terminated successfully (Exit mode 0)
Current function value: 76.3675785627106
Iterations: 10
Function evaluations: 89
Gradient evaluations: 10
Iteration: 1, Func. Count: 10, Neg. LLF: 80.6049761336672
Iteration: 2, Func. Count: 21, Neg. LLF: 15587569.616765535
Iteration: 3, Func. Count: 31, Neg. LLF: 77.26580295664249
Iteration: 4, Func. Count: 41, Neg. LLF: 82.48308467999402
Iteration: 5, Func. Count: 51, Neg. LLF: 77.49801630356424
Iteration: 6, Func. Count: 61, Neg. LLF: 76.41043517627742
Iteration: 7, Func. Count: 70, Neg. LLF: 77.17450816258068
Iteration: 8, Func. Count: 80, Neg. LLF: 76.3681477328606
Iteration: 9, Func. Count: 89, Neg. LLF: 76.36758849796345
Iteration: 10, Func. Count: 98, Neg. LLF: 76.36757847264766
Iteration: 11, Func. Count: 106, Neg. LLF: 76.36757849621696
Optimization terminated successfully (Exit mode 0)
Current function value: 76.36757847264766
Iterations: 11
Function evaluations: 106
Gradient evaluations: 11
Iteration: 1, Func. Count: 11, Neg. LLF: 81.18671693030376
Iteration: 2, Func. Count: 23, Neg. LLF: 13888235.930788556
Iteration: 3, Func. Count: 34, Neg. LLF: 77.0676995358779
Iteration: 4, Func. Count: 44, Neg. LLF: 77.27207811861635
Iteration: 5, Func. Count: 55, Neg. LLF: 101.54740470266428
Iteration: 6, Func. Count: 66, Neg. LLF: 78.53314650336576
Iteration: 7, Func. Count: 78, Neg. LLF: 76.37679278849777
Iteration: 8, Func. Count: 88, Neg. LLF: 76.3694759105489
Iteration: 9, Func. Count: 98, Neg. LLF: 76.36788217678237
Iteration: 10, Func. Count: 108, Neg. LLF: 76.36772524326408
Iteration: 11, Func. Count: 118, Neg. LLF: 76.3675916113342
Iteration: 12, Func. Count: 128, Neg. LLF: 76.3675782345814
Iteration: 13, Func. Count: 137, Neg. LLF: 76.36757824728416
Optimization terminated successfully (Exit mode 0)
Current function value: 76.3675782345814
Iterations: 13
Function evaluations: 137
Gradient evaluations: 13
Iteration: 1, Func. Count: 12, Neg. LLF: 81.75943401676672
Iteration: 2, Func. Count: 25, Neg. LLF: 15560664.731968196
Iteration: 3, Func. Count: 37, Neg. LLF: 77.2996102640289
Iteration: 4, Func. Count: 49, Neg. LLF: 85.57177899308232
Iteration: 5, Func. Count: 61, Neg. LLF: 77.4347481903735
Iteration: 6, Func. Count: 73, Neg. LLF: 76.40486593470041
Iteration: 7, Func. Count: 84, Neg. LLF: 79.63933543445683
Iteration: 8, Func. Count: 96, Neg. LLF: 76.36786292605733
Iteration: 9, Func. Count: 107, Neg. LLF: 76.36758448773301
Iteration: 10, Func. Count: 118, Neg. LLF: 76.367578585301
Iteration: 11, Func. Count: 129, Neg. LLF: 76.36757804350778
Optimization terminated successfully (Exit mode 0)
Current function value: 76.36757804350778
Iterations: 11
Function evaluations: 129
Gradient evaluations: 11
Iteration: 1, Func. Count: 13, Neg. LLF: 82.68076595282076
Iteration: 2, Func. Count: 27, Neg. LLF: 20023478.55045367
Iteration: 3, Func. Count: 41, Neg. LLF: 78.72398936293744
Iteration: 4, Func. Count: 54, Neg. LLF: 77.43981891812707
Iteration: 5, Func. Count: 67, Neg. LLF: 77.38312132560556
Iteration: 6, Func. Count: 80, Neg. LLF: 76.40888539146177
Iteration: 7, Func. Count: 92, Neg. LLF: 84.49771798701632
Iteration: 8, Func. Count: 106, Neg. LLF: 76.36977897247155
Iteration: 9, Func. Count: 118, Neg. LLF: 76.36767310228619
Iteration: 10, Func. Count: 130, Neg. LLF: 76.36758191525662
Iteration: 11, Func. Count: 142, Neg. LLF: 76.36757836987871
Iteration: 12, Func. Count: 153, Neg. LLF: 76.36757840171234
Optimization terminated successfully (Exit mode 0)
Current function value: 76.36757836987871
Iterations: 12
Function evaluations: 153
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 114.84104066213287
Iteration: 2, Func. Count: 23, Neg. LLF: 111.87893226418593
Iteration: 3, Func. Count: 34, Neg. LLF: 12255164.084863238
Iteration: 4, Func. Count: 44, Neg. LLF: 76.02237018368103
Iteration: 5, Func. Count: 53, Neg. LLF: 76.39955023874562
Iteration: 6, Func. Count: 63, Neg. LLF: 76.03739986018958
Iteration: 7, Func. Count: 73, Neg. LLF: 76.0062288899369
Iteration: 8, Func. Count: 82, Neg. LLF: 76.0059680598695
Iteration: 9, Func. Count: 91, Neg. LLF: 76.00596534115857
Iteration: 10, Func. Count: 99, Neg. LLF: 76.00596532496411
Optimization terminated successfully (Exit mode 0)
Current function value: 76.00596534115857
Iterations: 10
Function evaluations: 99
Gradient evaluations: 10
Iteration: 1, Func. Count: 11, Neg. LLF: 80.74652158771094
Iteration: 2, Func. Count: 23, Neg. LLF: 11262555.466288852
Iteration: 3, Func. Count: 34, Neg. LLF: 81.26034303701312
Iteration: 4, Func. Count: 45, Neg. LLF: 77.15854657998173
Iteration: 5, Func. Count: 56, Neg. LLF: 77.3754934165975
Iteration: 6, Func. Count: 67, Neg. LLF: 76.04120040238554
Iteration: 7, Func. Count: 77, Neg. LLF: 77.67338123655666
Iteration: 8, Func. Count: 89, Neg. LLF: 76.01396543968573
Iteration: 9, Func. Count: 99, Neg. LLF: 76.0065129542077
Iteration: 10, Func. Count: 109, Neg. LLF: 76.0060078714831
Iteration: 11, Func. Count: 119, Neg. LLF: 76.0059668471662
Iteration: 12, Func. Count: 129, Neg. LLF: 76.00596529335226
Iteration: 13, Func. Count: 138, Neg. LLF: 76.0059653189251
Optimization terminated successfully (Exit mode 0)
Current function value: 76.00596529335226
Iterations: 13
Function evaluations: 138
Gradient evaluations: 13
Iteration: 1, Func. Count: 12, Neg. LLF: 81.21980788841817
Iteration: 2, Func. Count: 25, Neg. LLF: 11343364.429855848
Iteration: 3, Func. Count: 37, Neg. LLF: 83.26575594599437
Iteration: 4, Func. Count: 49, Neg. LLF: 77.08123538868013
Iteration: 5, Func. Count: 61, Neg. LLF: 77.46450281131867
Iteration: 6, Func. Count: 73, Neg. LLF: 76.02591508586771
Iteration: 7, Func. Count: 84, Neg. LLF: 77.68193110059707
Iteration: 8, Func. Count: 96, Neg. LLF: 76.00899599396402
Iteration: 9, Func. Count: 107, Neg. LLF: 76.00629733834239
Iteration: 10, Func. Count: 118, Neg. LLF: 76.00598132250636
Iteration: 11, Func. Count: 129, Neg. LLF: 76.00596533016659
Iteration: 12, Func. Count: 139, Neg. LLF: 76.00596534126744
Optimization terminated successfully (Exit mode 0)
Current function value: 76.00596533016659
Iterations: 12
Function evaluations: 139
Gradient evaluations: 12
Iteration: 1, Func. Count: 13, Neg. LLF: 83.11521528892177
Iteration: 2, Func. Count: 27, Neg. LLF: 11431933.238793824
Iteration: 3, Func. Count: 40, Neg. LLF: 78.40855668799192
Iteration: 4, Func. Count: 53, Neg. LLF: 78.16776805069313
Iteration: 5, Func. Count: 66, Neg. LLF: 77.65661809811574
Iteration: 6, Func. Count: 79, Neg. LLF: 76.14524015753823
Iteration: 7, Func. Count: 91, Neg. LLF: 76.02286077124256
Iteration: 8, Func. Count: 103, Neg. LLF: 78.4815954250483
Iteration: 9, Func. Count: 117, Neg. LLF: 76.00696956140982
Iteration: 10, Func. Count: 129, Neg. LLF: 76.00597544244071
Iteration: 11, Func. Count: 141, Neg. LLF: 76.00596550301697
Iteration: 12, Func. Count: 152, Neg. LLF: 76.0059655433559
Optimization terminated successfully (Exit mode 0)
Current function value: 76.00596550301697
Iterations: 12
Function evaluations: 152
Gradient evaluations: 12
Iteration: 1, Func. Count: 14, Neg. LLF: 86.84432723936773
Iteration: 2, Func. Count: 29, Neg. LLF: 15396027.624008078
Iteration: 3, Func. Count: 44, Neg. LLF: 78.76765080339304
Iteration: 4, Func. Count: 58, Neg. LLF: 77.2658177394728
Iteration: 5, Func. Count: 72, Neg. LLF: 77.36881960266628
Iteration: 6, Func. Count: 86, Neg. LLF: 76.11057180842025
Iteration: 7, Func. Count: 99, Neg. LLF: 76.0184991883588
Iteration: 8, Func. Count: 112, Neg. LLF: 77.44407199355405
Iteration: 9, Func. Count: 127, Neg. LLF: 76.00651204440506
Iteration: 10, Func. Count: 140, Neg. LLF: 76.00598488313881
Iteration: 11, Func. Count: 153, Neg. LLF: 76.00596672736933
Iteration: 12, Func. Count: 166, Neg. LLF: 76.00596530370525
Iteration: 13, Func. Count: 178, Neg. LLF: 76.00596534109694
Optimization terminated successfully (Exit mode 0)
Current function value: 76.00596530370525
Iterations: 13
Function evaluations: 178
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 115.22948824775585
Iteration: 2, Func. Count: 24, Neg. LLF: 123.44197909385944
Iteration: 3, Func. Count: 36, Neg. LLF: 10038074.165385166
Iteration: 4, Func. Count: 47, Neg. LLF: 76.34461622132055
Iteration: 5, Func. Count: 57, Neg. LLF: 77.52717541987126
Iteration: 6, Func. Count: 68, Neg. LLF: 78.208066334313
Iteration: 7, Func. Count: 80, Neg. LLF: 77.27745644361832
Iteration: 8, Func. Count: 91, Neg. LLF: 76.01682394172954
Iteration: 9, Func. Count: 101, Neg. LLF: 76.00731177005278
Iteration: 10, Func. Count: 111, Neg. LLF: 76.0060476720565
Iteration: 11, Func. Count: 121, Neg. LLF: 76.00596680570317
Iteration: 12, Func. Count: 131, Neg. LLF: 76.00596529678243
Iteration: 13, Func. Count: 140, Neg. LLF: 76.00596532305816
Optimization terminated successfully (Exit mode 0)
Current function value: 76.00596529678243
Iterations: 13
Function evaluations: 140
Gradient evaluations: 13
Iteration: 1, Func. Count: 12, Neg. LLF: 80.94812797640832
Iteration: 2, Func. Count: 25, Neg. LLF: 11085435.857273009
Iteration: 3, Func. Count: 37, Neg. LLF: 80.3921428073769
Iteration: 4, Func. Count: 49, Neg. LLF: 77.25170198470322
Iteration: 5, Func. Count: 61, Neg. LLF: 77.41376933577529
Iteration: 6, Func. Count: 73, Neg. LLF: 76.04575449048411
Iteration: 7, Func. Count: 84, Neg. LLF: 77.4374969786316
Iteration: 8, Func. Count: 97, Neg. LLF: 76.02038248914614
Iteration: 9, Func. Count: 108, Neg. LLF: 76.00682060366601
Iteration: 10, Func. Count: 119, Neg. LLF: 76.00603007893082
Iteration: 11, Func. Count: 130, Neg. LLF: 76.00596788647113
Iteration: 12, Func. Count: 141, Neg. LLF: 76.00596533420558
Iteration: 13, Func. Count: 151, Neg. LLF: 76.00596535978855
Optimization terminated successfully (Exit mode 0)
Current function value: 76.00596533420558
Iterations: 13
Function evaluations: 151
Gradient evaluations: 13
Iteration: 1, Func. Count: 13, Neg. LLF: 81.5135487476452
Iteration: 2, Func. Count: 27, Neg. LLF: 11061082.076882908
Iteration: 3, Func. Count: 40, Neg. LLF: 81.62070995724781
Iteration: 4, Func. Count: 53, Neg. LLF: 77.1221474775137
Iteration: 5, Func. Count: 66, Neg. LLF: 77.51442639922672
Iteration: 6, Func. Count: 79, Neg. LLF: 76.02949211985131
Iteration: 7, Func. Count: 91, Neg. LLF: 77.8425699269108
Iteration: 8, Func. Count: 104, Neg. LLF: 76.01041223603812
Iteration: 9, Func. Count: 116, Neg. LLF: 76.0065546676008
Iteration: 10, Func. Count: 128, Neg. LLF: 76.00599716584185
Iteration: 11, Func. Count: 140, Neg. LLF: 76.00596557982853
Iteration: 12, Func. Count: 151, Neg. LLF: 76.00596559094936
Optimization terminated successfully (Exit mode 0)
Current function value: 76.00596557982853
Iterations: 12
Function evaluations: 151
Gradient evaluations: 12
Iteration: 1, Func. Count: 14, Neg. LLF: 83.61540237341477
Iteration: 2, Func. Count: 29, Neg. LLF: 11132073.340084085
Iteration: 3, Func. Count: 43, Neg. LLF: 77.89296318801182
Iteration: 4, Func. Count: 57, Neg. LLF: 78.1468517801391
Iteration: 5, Func. Count: 71, Neg. LLF: 77.68308284263367
Iteration: 6, Func. Count: 85, Neg. LLF: 76.14506744825066
Iteration: 7, Func. Count: 98, Neg. LLF: 76.01966780399643
Iteration: 8, Func. Count: 111, Neg. LLF: 76.02173160862975
Iteration: 9, Func. Count: 125, Neg. LLF: 76.07502036809461
Iteration: 10, Func. Count: 139, Neg. LLF: 76.00597106687063
Iteration: 11, Func. Count: 152, Neg. LLF: 76.00596533417324
Iteration: 12, Func. Count: 164, Neg. LLF: 76.00596537452212
Optimization terminated successfully (Exit mode 0)
Current function value: 76.00596533417324
Iterations: 12
Function evaluations: 164
Gradient evaluations: 12
Iteration: 1, Func. Count: 15, Neg. LLF: 87.70946501428278
Iteration: 2, Func. Count: 31, Neg. LLF: 14688110.970780337
Iteration: 3, Func. Count: 47, Neg. LLF: 78.54950424162276
Iteration: 4, Func. Count: 62, Neg. LLF: 77.22250167320712
Iteration: 5, Func. Count: 77, Neg. LLF: 77.37087320960096
Iteration: 6, Func. Count: 92, Neg. LLF: 76.09701951482538
Iteration: 7, Func. Count: 106, Neg. LLF: 76.01012511272751
Iteration: 8, Func. Count: 120, Neg. LLF: 76.02081353466049
Iteration: 9, Func. Count: 135, Neg. LLF: 76.04989584837067
Iteration: 10, Func. Count: 150, Neg. LLF: 76.00598582492982
Iteration: 11, Func. Count: 164, Neg. LLF: 76.00596672821194
Iteration: 12, Func. Count: 178, Neg. LLF: 76.00596529886975
Iteration: 13, Func. Count: 191, Neg. LLF: 76.00596533625696
Optimization terminated successfully (Exit mode 0)
Current function value: 76.00596529886975
Iterations: 13
Function evaluations: 191
Gradient evaluations: 13
Iteration: 1, Func. Count: 8, Neg. LLF: 126.99004428765508
Iteration: 2, Func. Count: 19, Neg. LLF: 130.84960292774062
Iteration: 3, Func. Count: 28, Neg. LLF: 97.95724358779471
Iteration: 4, Func. Count: 36, Neg. LLF: 77.64250132186353
Iteration: 5, Func. Count: 44, Neg. LLF: 76.86009156513728
Iteration: 6, Func. Count: 51, Neg. LLF: 76.85536193159105
Iteration: 7, Func. Count: 58, Neg. LLF: 76.85463865020704
Iteration: 8, Func. Count: 65, Neg. LLF: 76.85405774714084
Iteration: 9, Func. Count: 72, Neg. LLF: 76.85403160866561
Iteration: 10, Func. Count: 79, Neg. LLF: 76.85403027209054
Iteration: 11, Func. Count: 86, Neg. LLF: 76.854029669979
Optimization terminated successfully (Exit mode 0)
Current function value: 76.854029669979
Iterations: 11
Function evaluations: 86
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 99.21753279507752
Iteration: 2, Func. Count: 19, Neg. LLF: 223.62787773355117
Iteration: 3, Func. Count: 28, Neg. LLF: 95.47804266323739
Iteration: 4, Func. Count: 37, Neg. LLF: 77.15938442542753
Iteration: 5, Func. Count: 45, Neg. LLF: 77.8452199059734
Iteration: 6, Func. Count: 54, Neg. LLF: 77.1980583669289
Iteration: 7, Func. Count: 63, Neg. LLF: 76.85496120619027
Iteration: 8, Func. Count: 71, Neg. LLF: 76.85403744947276
Iteration: 9, Func. Count: 79, Neg. LLF: 76.8540306727662
Iteration: 10, Func. Count: 87, Neg. LLF: 76.85402983819598
Optimization terminated successfully (Exit mode 0)
Current function value: 76.85402983819598
Iterations: 10
Function evaluations: 87
Gradient evaluations: 10
Iteration: 1, Func. Count: 10, Neg. LLF: 98.51228542943626
Iteration: 2, Func. Count: 21, Neg. LLF: 171.92829971734622
Iteration: 3, Func. Count: 31, Neg. LLF: 115.45630677106466
Iteration: 4, Func. Count: 41, Neg. LLF: 77.17246564479413
Iteration: 5, Func. Count: 50, Neg. LLF: 77.85517036547516
Iteration: 6, Func. Count: 60, Neg. LLF: 77.05282083324197
Iteration: 7, Func. Count: 70, Neg. LLF: 76.85469439992815
Iteration: 8, Func. Count: 79, Neg. LLF: 76.8540399154733
Iteration: 9, Func. Count: 88, Neg. LLF: 76.85403206797483
Iteration: 10, Func. Count: 97, Neg. LLF: 76.85402972187406
Iteration: 11, Func. Count: 105, Neg. LLF: 76.85402974028848
Optimization terminated successfully (Exit mode 0)
Current function value: 76.85402972187406
Iterations: 11
Function evaluations: 105
Gradient evaluations: 11
Iteration: 1, Func. Count: 11, Neg. LLF: 100.86465014121052
Iteration: 2, Func. Count: 23, Neg. LLF: 96.65886915135688
Iteration: 3, Func. Count: 34, Neg. LLF: 431.46849619852225
Iteration: 4, Func. Count: 45, Neg. LLF: 76.91585117690423
Iteration: 5, Func. Count: 55, Neg. LLF: 78.33588400098427
Iteration: 6, Func. Count: 66, Neg. LLF: 76.85975104942823
Iteration: 7, Func. Count: 77, Neg. LLF: 76.85410643701486
Iteration: 8, Func. Count: 87, Neg. LLF: 76.85403761773647
Iteration: 9, Func. Count: 97, Neg. LLF: 76.85402969633236
Iteration: 10, Func. Count: 106, Neg. LLF: 76.85402973110662
Optimization terminated successfully (Exit mode 0)
Current function value: 76.85402969633236
Iterations: 10
Function evaluations: 106
Gradient evaluations: 10
Iteration: 1, Func. Count: 12, Neg. LLF: 99.4537069726202
Iteration: 2, Func. Count: 25, Neg. LLF: 111.64250859918627
Iteration: 3, Func. Count: 37, Neg. LLF: 1754.1396073604694
Iteration: 4, Func. Count: 49, Neg. LLF: 76.95577753942142
Iteration: 5, Func. Count: 60, Neg. LLF: 77.2338297119573
Iteration: 6, Func. Count: 72, Neg. LLF: 76.86151355511392
Iteration: 7, Func. Count: 83, Neg. LLF: 76.86551963241065
Iteration: 8, Func. Count: 95, Neg. LLF: 76.85417131165808
Iteration: 9, Func. Count: 106, Neg. LLF: 76.85404419597299
Iteration: 10, Func. Count: 117, Neg. LLF: 76.85403098564248
Iteration: 11, Func. Count: 128, Neg. LLF: 76.8540296690167
Iteration: 12, Func. Count: 138, Neg. LLF: 76.85402969749147
Optimization terminated successfully (Exit mode 0)
Current function value: 76.8540296690167
Iterations: 12
Function evaluations: 138
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 124.98709847272012
Iteration: 2, Func. Count: 21, Neg. LLF: 116.4640811466308
Iteration: 3, Func. Count: 31, Neg. LLF: 3303.2143402431325
Iteration: 4, Func. Count: 40, Neg. LLF: 77.62282454272209
Iteration: 5, Func. Count: 49, Neg. LLF: 76.40927026969561
Iteration: 6, Func. Count: 57, Neg. LLF: 77.64277927488543
Iteration: 7, Func. Count: 67, Neg. LLF: 76.40737682975555
Iteration: 8, Func. Count: 76, Neg. LLF: 76.383677761768
Iteration: 9, Func. Count: 84, Neg. LLF: 76.38310968360734
Iteration: 10, Func. Count: 92, Neg. LLF: 76.38296319872309
Iteration: 11, Func. Count: 100, Neg. LLF: 76.3829615750533
Iteration: 12, Func. Count: 107, Neg. LLF: 76.38296150348539
Optimization terminated successfully (Exit mode 0)
Current function value: 76.3829615750533
Iterations: 12
Function evaluations: 107
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 96.95382751369674
Iteration: 2, Func. Count: 21, Neg. LLF: 7140469.38694155
Iteration: 3, Func. Count: 31, Neg. LLF: 26224756.208569854
Iteration: 4, Func. Count: 42, Neg. LLF: 77.05283780047388
Iteration: 5, Func. Count: 51, Neg. LLF: 76.49463367720239
Iteration: 6, Func. Count: 60, Neg. LLF: 76.41293242578485
Iteration: 7, Func. Count: 69, Neg. LLF: 80.22246016489281
Iteration: 8, Func. Count: 80, Neg. LLF: 76.39024240120928
Iteration: 9, Func. Count: 89, Neg. LLF: 76.38473241081209
Iteration: 10, Func. Count: 98, Neg. LLF: 76.38300203514187
Iteration: 11, Func. Count: 107, Neg. LLF: 76.38296176625117
Iteration: 12, Func. Count: 115, Neg. LLF: 76.38296178734258
Optimization terminated successfully (Exit mode 0)
Current function value: 76.38296176625117
Iterations: 12
Function evaluations: 115
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 96.47620902757193
Iteration: 2, Func. Count: 23, Neg. LLF: 35457.51697268931
Iteration: 3, Func. Count: 34, Neg. LLF: 23441190.484856736
Iteration: 4, Func. Count: 45, Neg. LLF: 77.04780934707692
Iteration: 5, Func. Count: 55, Neg. LLF: 77.68151057887172
Iteration: 6, Func. Count: 66, Neg. LLF: 76.42991407197245
Iteration: 7, Func. Count: 76, Neg. LLF: 79.46338308096949
Iteration: 8, Func. Count: 88, Neg. LLF: 76.39807788111251
Iteration: 9, Func. Count: 98, Neg. LLF: 76.3853322740163
Iteration: 10, Func. Count: 108, Neg. LLF: 76.38346869877266
Iteration: 11, Func. Count: 118, Neg. LLF: 76.38307491179633
Iteration: 12, Func. Count: 128, Neg. LLF: 76.38296299929964
Iteration: 13, Func. Count: 138, Neg. LLF: 76.3829615287162
Iteration: 14, Func. Count: 147, Neg. LLF: 76.38296153993817
Optimization terminated successfully (Exit mode 0)
Current function value: 76.3829615287162
Iterations: 14
Function evaluations: 147
Gradient evaluations: 14
Iteration: 1, Func. Count: 12, Neg. LLF: 97.08181565633457
Iteration: 2, Func. Count: 25, Neg. LLF: 435.8096854965658
Iteration: 3, Func. Count: 37, Neg. LLF: 21021769.890917134
Iteration: 4, Func. Count: 49, Neg. LLF: 77.04761576139684
Iteration: 5, Func. Count: 60, Neg. LLF: 77.47110068695763
Iteration: 6, Func. Count: 72, Neg. LLF: 76.58641673434484
Iteration: 7, Func. Count: 84, Neg. LLF: 79.32218376796712
Iteration: 8, Func. Count: 97, Neg. LLF: 76.39176235342012
Iteration: 9, Func. Count: 108, Neg. LLF: 76.3845043637298
Iteration: 10, Func. Count: 119, Neg. LLF: 76.3833308702275
Iteration: 11, Func. Count: 130, Neg. LLF: 76.38304770580145
Iteration: 12, Func. Count: 141, Neg. LLF: 76.38296181483206
Iteration: 13, Func. Count: 151, Neg. LLF: 76.38296185670792
Optimization terminated successfully (Exit mode 0)
Current function value: 76.38296181483206
Iterations: 13
Function evaluations: 151
Gradient evaluations: 13
Iteration: 1, Func. Count: 13, Neg. LLF: 95.27624732994309
Iteration: 2, Func. Count: 27, Neg. LLF: 308.13295403035215
Iteration: 3, Func. Count: 40, Neg. LLF: 20480073.82846262
Iteration: 4, Func. Count: 53, Neg. LLF: 76.77072435546195
Iteration: 5, Func. Count: 65, Neg. LLF: 77.4559350058922
Iteration: 6, Func. Count: 78, Neg. LLF: 76.57394572971391
Iteration: 7, Func. Count: 91, Neg. LLF: 79.63056441406053
Iteration: 8, Func. Count: 105, Neg. LLF: 76.3920852446933
Iteration: 9, Func. Count: 117, Neg. LLF: 76.38432278308473
Iteration: 10, Func. Count: 129, Neg. LLF: 76.38313271295718
Iteration: 11, Func. Count: 141, Neg. LLF: 76.3829687573857
Iteration: 12, Func. Count: 153, Neg. LLF: 76.38296152686249
Iteration: 13, Func. Count: 164, Neg. LLF: 76.38296155708055
Optimization terminated successfully (Exit mode 0)
Current function value: 76.38296152686249
Iterations: 13
Function evaluations: 164
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 124.31396058052356
Iteration: 2, Func. Count: 23, Neg. LLF: 117.02651847919269
Iteration: 3, Func. Count: 34, Neg. LLF: 1370.2698118425078
Iteration: 4, Func. Count: 44, Neg. LLF: 77.38349276244033
Iteration: 5, Func. Count: 54, Neg. LLF: 76.41137276732397
Iteration: 6, Func. Count: 63, Neg. LLF: 90.1840134824747
Iteration: 7, Func. Count: 74, Neg. LLF: 76.3712582654548
Iteration: 8, Func. Count: 83, Neg. LLF: 76.36870169064377
Iteration: 9, Func. Count: 92, Neg. LLF: 76.36783989196532
Iteration: 10, Func. Count: 101, Neg. LLF: 76.36758753361197
Iteration: 11, Func. Count: 110, Neg. LLF: 76.36757816871281
Iteration: 12, Func. Count: 118, Neg. LLF: 76.36757815216774
Optimization terminated successfully (Exit mode 0)
Current function value: 76.36757816871281
Iterations: 12
Function evaluations: 118
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 96.85555929214082
Iteration: 2, Func. Count: 23, Neg. LLF: 7271308.466857004
Iteration: 3, Func. Count: 34, Neg. LLF: 25822834.73258106
Iteration: 4, Func. Count: 46, Neg. LLF: 77.05322135830187
Iteration: 5, Func. Count: 56, Neg. LLF: 76.51549763718748
Iteration: 6, Func. Count: 66, Neg. LLF: 76.82890658751668
Iteration: 7, Func. Count: 77, Neg. LLF: 90.14766638514898
Iteration: 8, Func. Count: 88, Neg. LLF: 76.37635521927784
Iteration: 9, Func. Count: 98, Neg. LLF: 76.3703140928282
Iteration: 10, Func. Count: 108, Neg. LLF: 76.36760859441073
Iteration: 11, Func. Count: 118, Neg. LLF: 76.36757850746642
Iteration: 12, Func. Count: 127, Neg. LLF: 76.36757853108668
Optimization terminated successfully (Exit mode 0)
Current function value: 76.36757850746642
Iterations: 12
Function evaluations: 127
Gradient evaluations: 12
Iteration: 1, Func. Count: 12, Neg. LLF: 96.2619259101008
Iteration: 2, Func. Count: 25, Neg. LLF: 5705156.807784322
Iteration: 3, Func. Count: 37, Neg. LLF: 23520623.70229338
Iteration: 4, Func. Count: 49, Neg. LLF: 77.04829244168096
Iteration: 5, Func. Count: 60, Neg. LLF: 77.74531764343169
Iteration: 6, Func. Count: 72, Neg. LLF: 76.42715086444298
Iteration: 7, Func. Count: 83, Neg. LLF: 525.5017871379622
Iteration: 8, Func. Count: 96, Neg. LLF: 76.37840946862396
Iteration: 9, Func. Count: 107, Neg. LLF: 76.36977756728506
Iteration: 10, Func. Count: 118, Neg. LLF: 76.36792196271574
Iteration: 11, Func. Count: 129, Neg. LLF: 76.36766454556269
Iteration: 12, Func. Count: 140, Neg. LLF: 76.36757854633996
Iteration: 13, Func. Count: 150, Neg. LLF: 76.36757855900682
Optimization terminated successfully (Exit mode 0)
Current function value: 76.36757854633996
Iterations: 13
Function evaluations: 150
Gradient evaluations: 13
Iteration: 1, Func. Count: 13, Neg. LLF: 96.71848729774452
Iteration: 2, Func. Count: 27, Neg. LLF: 749.2239964233295
Iteration: 3, Func. Count: 40, Neg. LLF: 21513589.391941167
Iteration: 4, Func. Count: 53, Neg. LLF: 77.04808654442816
Iteration: 5, Func. Count: 65, Neg. LLF: 77.60366747146465
Iteration: 6, Func. Count: 78, Neg. LLF: 76.5395715495979
Iteration: 7, Func. Count: 90, Neg. LLF: 552.2292062745568
Iteration: 8, Func. Count: 104, Neg. LLF: 76.41218617704156
Iteration: 9, Func. Count: 116, Neg. LLF: 76.37745329797603
Iteration: 10, Func. Count: 128, Neg. LLF: 76.36889815828413
Iteration: 11, Func. Count: 140, Neg. LLF: 76.36786728693691
Iteration: 12, Func. Count: 152, Neg. LLF: 76.36760905961717
Iteration: 13, Func. Count: 164, Neg. LLF: 76.3675789003657
Iteration: 14, Func. Count: 176, Neg. LLF: 76.36757808540655
Optimization terminated successfully (Exit mode 0)
Current function value: 76.36757808540655
Iterations: 14
Function evaluations: 176
Gradient evaluations: 14
Iteration: 1, Func. Count: 14, Neg. LLF: 94.98819711372694
Iteration: 2, Func. Count: 29, Neg. LLF: 446.4121132855193
Iteration: 3, Func. Count: 43, Neg. LLF: 20723488.91295322
Iteration: 4, Func. Count: 57, Neg. LLF: 76.82100136843243
Iteration: 5, Func. Count: 70, Neg. LLF: 77.48426649206483
Iteration: 6, Func. Count: 84, Neg. LLF: 76.55953464346464
Iteration: 7, Func. Count: 98, Neg. LLF: 88.39182876793228
Iteration: 8, Func. Count: 113, Neg. LLF: 76.3815102940857
Iteration: 9, Func. Count: 126, Neg. LLF: 76.36980737974925
Iteration: 10, Func. Count: 139, Neg. LLF: 76.36786056730641
Iteration: 11, Func. Count: 152, Neg. LLF: 76.36760363832644
Iteration: 12, Func. Count: 165, Neg. LLF: 76.3675781613898
Iteration: 13, Func. Count: 177, Neg. LLF: 76.36757819322415
Optimization terminated successfully (Exit mode 0)
Current function value: 76.3675781613898
Iterations: 13
Function evaluations: 177
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 124.4596732801532
Iteration: 2, Func. Count: 25, Neg. LLF: 128.7419186577374
Iteration: 3, Func. Count: 37, Neg. LLF: 9973859.951483816
Iteration: 4, Func. Count: 48, Neg. LLF: 76.9065423642426
Iteration: 5, Func. Count: 58, Neg. LLF: 76.11522466544668
Iteration: 6, Func. Count: 68, Neg. LLF: 95.00056051618175
Iteration: 7, Func. Count: 80, Neg. LLF: 76.0203410047045
Iteration: 8, Func. Count: 90, Neg. LLF: 76.00699007198324
Iteration: 9, Func. Count: 100, Neg. LLF: 76.00600608568364
Iteration: 10, Func. Count: 110, Neg. LLF: 76.00597389845487
Iteration: 11, Func. Count: 120, Neg. LLF: 76.00596837957578
Iteration: 12, Func. Count: 130, Neg. LLF: 76.00596542987392
Iteration: 13, Func. Count: 139, Neg. LLF: 76.00596541367732
Optimization terminated successfully (Exit mode 0)
Current function value: 76.00596542987392
Iterations: 13
Function evaluations: 139
Gradient evaluations: 13
Iteration: 1, Func. Count: 12, Neg. LLF: 97.43694145374154
Iteration: 2, Func. Count: 25, Neg. LLF: 115.83933835685198
Iteration: 3, Func. Count: 37, Neg. LLF: 12013557.844926776
Iteration: 4, Func. Count: 49, Neg. LLF: 76.59799930774892
Iteration: 5, Func. Count: 60, Neg. LLF: 77.75400149315057
Iteration: 6, Func. Count: 72, Neg. LLF: 76.40352696193418
Iteration: 7, Func. Count: 84, Neg. LLF: 78.98643913409516
Iteration: 8, Func. Count: 97, Neg. LLF: 76.01067762146111
Iteration: 9, Func. Count: 108, Neg. LLF: 76.00685226245253
Iteration: 10, Func. Count: 119, Neg. LLF: 76.00630522197626
Iteration: 11, Func. Count: 130, Neg. LLF: 76.00601681281296
Iteration: 12, Func. Count: 141, Neg. LLF: 76.0059669859908
Iteration: 13, Func. Count: 152, Neg. LLF: 76.0059652921384
Iteration: 14, Func. Count: 162, Neg. LLF: 76.00596531770704
Optimization terminated successfully (Exit mode 0)
Current function value: 76.0059652921384
Iterations: 14
Function evaluations: 162
Gradient evaluations: 14
Iteration: 1, Func. Count: 13, Neg. LLF: 96.59169061186604
Iteration: 2, Func. Count: 27, Neg. LLF: 112.74726037938464
Iteration: 3, Func. Count: 41, Neg. LLF: 11255480.749838956
Iteration: 4, Func. Count: 54, Neg. LLF: 76.0613188528665
Iteration: 5, Func. Count: 66, Neg. LLF: 76.82942717710573
Iteration: 6, Func. Count: 79, Neg. LLF: 76.06805496934332
Iteration: 7, Func. Count: 92, Neg. LLF: 76.0465407979761
Iteration: 8, Func. Count: 105, Neg. LLF: 76.00678558770065
Iteration: 9, Func. Count: 117, Neg. LLF: 76.00597259175275
Iteration: 10, Func. Count: 129, Neg. LLF: 76.00596534329269
Iteration: 11, Func. Count: 140, Neg. LLF: 76.00596535437543
Optimization terminated successfully (Exit mode 0)
Current function value: 76.00596534329269
Iterations: 11
Function evaluations: 140
Gradient evaluations: 11
Iteration: 1, Func. Count: 14, Neg. LLF: 97.89082440436685
Iteration: 2, Func. Count: 29, Neg. LLF: 113.36402727578533
Iteration: 3, Func. Count: 44, Neg. LLF: 10119925.950194322
Iteration: 4, Func. Count: 58, Neg. LLF: 76.1751778273414
Iteration: 5, Func. Count: 71, Neg. LLF: 76.35222336752241
Iteration: 6, Func. Count: 85, Neg. LLF: 76.67145901402377
Iteration: 7, Func. Count: 100, Neg. LLF: 76.01357762980557
Iteration: 8, Func. Count: 113, Neg. LLF: 76.00744963343041
Iteration: 9, Func. Count: 126, Neg. LLF: 76.00609232176544
Iteration: 10, Func. Count: 139, Neg. LLF: 76.00596685117895
Iteration: 11, Func. Count: 152, Neg. LLF: 76.005965288698
Iteration: 12, Func. Count: 164, Neg. LLF: 76.005965329049
Optimization terminated successfully (Exit mode 0)
Current function value: 76.005965288698
Iterations: 12
Function evaluations: 164
Gradient evaluations: 12
Iteration: 1, Func. Count: 15, Neg. LLF: 96.5833223783627
Iteration: 2, Func. Count: 31, Neg. LLF: 113.95819981206985
Iteration: 3, Func. Count: 47, Neg. LLF: 10013245.928348953
Iteration: 4, Func. Count: 62, Neg. LLF: 76.15332303780876
Iteration: 5, Func. Count: 76, Neg. LLF: 76.2742457867783
Iteration: 6, Func. Count: 91, Neg. LLF: 76.66215977954839
Iteration: 7, Func. Count: 107, Neg. LLF: 76.01281795310597
Iteration: 8, Func. Count: 121, Neg. LLF: 76.0073468564794
Iteration: 9, Func. Count: 135, Neg. LLF: 76.00601918866342
Iteration: 10, Func. Count: 149, Neg. LLF: 76.0059657640702
Iteration: 11, Func. Count: 163, Neg. LLF: 76.00596527477518
Optimization terminated successfully (Exit mode 0)
Current function value: 76.00596527477518
Iterations: 11
Function evaluations: 163
Gradient evaluations: 11
Iteration: 1, Func. Count: 12, Neg. LLF: 131.1348825241392
Iteration: 2, Func. Count: 26, Neg. LLF: 138.97730722835584
Iteration: 3, Func. Count: 39, Neg. LLF: 8785683.062423322
Iteration: 4, Func. Count: 51, Neg. LLF: 77.91222626454908
Iteration: 5, Func. Count: 63, Neg. LLF: 78.2901908432185
Iteration: 6, Func. Count: 75, Neg. LLF: 76.05386792831766
Iteration: 7, Func. Count: 86, Neg. LLF: 78.43026219845189
Iteration: 8, Func. Count: 99, Neg. LLF: 76.01620241111499
Iteration: 9, Func. Count: 110, Neg. LLF: 76.00738491337134
Iteration: 10, Func. Count: 121, Neg. LLF: 76.00600352577794
Iteration: 11, Func. Count: 132, Neg. LLF: 76.00596638117833
Iteration: 12, Func. Count: 143, Neg. LLF: 76.00596527419694
Iteration: 13, Func. Count: 153, Neg. LLF: 76.00596530046742
Optimization terminated successfully (Exit mode 0)
Current function value: 76.00596527419694
Iterations: 13
Function evaluations: 153
Gradient evaluations: 13
Iteration: 1, Func. Count: 13, Neg. LLF: 97.88540924236028
Iteration: 2, Func. Count: 27, Neg. LLF: 115.24765933833997
Iteration: 3, Func. Count: 41, Neg. LLF: 11597021.941416904
Iteration: 4, Func. Count: 54, Neg. LLF: 76.03702637632068
Iteration: 5, Func. Count: 66, Neg. LLF: 76.12315304919986
Iteration: 6, Func. Count: 79, Neg. LLF: 76.01766157881578
Iteration: 7, Func. Count: 91, Neg. LLF: 76.05138279564942
Iteration: 8, Func. Count: 104, Neg. LLF: 76.00717266278014
Iteration: 9, Func. Count: 116, Neg. LLF: 76.00604517575239
Iteration: 10, Func. Count: 128, Neg. LLF: 76.0059676610855
Iteration: 11, Func. Count: 140, Neg. LLF: 76.00596527994892
Iteration: 12, Func. Count: 151, Neg. LLF: 76.00596530552278
Optimization terminated successfully (Exit mode 0)
Current function value: 76.00596527994892
Iterations: 12
Function evaluations: 151
Gradient evaluations: 12
Iteration: 1, Func. Count: 14, Neg. LLF: 97.08188677586045
Iteration: 2, Func. Count: 29, Neg. LLF: 112.73515842927617
Iteration: 3, Func. Count: 44, Neg. LLF: 11237502.397365337
Iteration: 4, Func. Count: 58, Neg. LLF: 76.06176741273896
Iteration: 5, Func. Count: 71, Neg. LLF: 76.86521610638343
Iteration: 6, Func. Count: 85, Neg. LLF: 76.06918498946041
Iteration: 7, Func. Count: 99, Neg. LLF: 76.04509666029932
Iteration: 8, Func. Count: 113, Neg. LLF: 76.00688383467732
Iteration: 9, Func. Count: 126, Neg. LLF: 76.00597297494966
Iteration: 10, Func. Count: 139, Neg. LLF: 76.00596534060425
Iteration: 11, Func. Count: 151, Neg. LLF: 76.00596535168442
Optimization terminated successfully (Exit mode 0)
Current function value: 76.00596534060425
Iterations: 11
Function evaluations: 151
Gradient evaluations: 11
Iteration: 1, Func. Count: 15, Neg. LLF: 98.47404502638864
Iteration: 2, Func. Count: 31, Neg. LLF: 113.48564129969581
Iteration: 3, Func. Count: 47, Neg. LLF: 10105460.519660175
Iteration: 4, Func. Count: 62, Neg. LLF: 76.17448991451525
Iteration: 5, Func. Count: 76, Neg. LLF: 76.34828248189665
Iteration: 6, Func. Count: 91, Neg. LLF: 76.67059266317436
Iteration: 7, Func. Count: 107, Neg. LLF: 76.01342332896397
Iteration: 8, Func. Count: 121, Neg. LLF: 76.00748415413636
Iteration: 9, Func. Count: 135, Neg. LLF: 76.00610329575096
Iteration: 10, Func. Count: 149, Neg. LLF: 76.00596738811619
Iteration: 11, Func. Count: 163, Neg. LLF: 76.00596529271766
Iteration: 12, Func. Count: 176, Neg. LLF: 76.00596533306896
Optimization terminated successfully (Exit mode 0)
Current function value: 76.00596529271766
Iterations: 12
Function evaluations: 176
Gradient evaluations: 12
Iteration: 1, Func. Count: 16, Neg. LLF: 97.24970394634603
Iteration: 2, Func. Count: 33, Neg. LLF: 114.09246505123559
Iteration: 3, Func. Count: 50, Neg. LLF: 10004790.634285953
Iteration: 4, Func. Count: 66, Neg. LLF: 76.15080830589515
Iteration: 5, Func. Count: 81, Neg. LLF: 76.27183267275106
Iteration: 6, Func. Count: 97, Neg. LLF: 76.65141049028516
Iteration: 7, Func. Count: 114, Neg. LLF: 76.01269109801434
Iteration: 8, Func. Count: 129, Neg. LLF: 76.00739764887757
Iteration: 9, Func. Count: 144, Neg. LLF: 76.00602565903586
Iteration: 10, Func. Count: 159, Neg. LLF: 76.00596598944877
Iteration: 11, Func. Count: 174, Neg. LLF: 76.00596527724765
Optimization terminated successfully (Exit mode 0)
Current function value: 76.00596527724765
Iterations: 11
Function evaluations: 174
Gradient evaluations: 11
Iteration: 1, Func. Count: 5, Neg. LLF: 163.54152730501036
Iteration: 2, Func. Count: 13, Neg. LLF: 203.91040690621304
Iteration: 3, Func. Count: 19, Neg. LLF: 78.5517731908662
Iteration: 4, Func. Count: 24, Neg. LLF: 77.830222467789
Iteration: 5, Func. Count: 28, Neg. LLF: 77.82405908323284
Iteration: 6, Func. Count: 32, Neg. LLF: 77.82387326744973
Iteration: 7, Func. Count: 36, Neg. LLF: 77.82386419867743
Iteration: 8, Func. Count: 40, Neg. LLF: 77.82386125956472
Iteration: 9, Func. Count: 43, Neg. LLF: 77.82386125951267
Optimization terminated successfully (Exit mode 0)
Current function value: 77.82386125956472
Iterations: 9
Function evaluations: 43
Gradient evaluations: 9
Iteration: 1, Func. Count: 5, Neg. LLF: 130.19601597723985
Iteration: 2, Func. Count: 13, Neg. LLF: 443.53569903024527
Iteration: 3, Func. Count: 19, Neg. LLF: 75.7808921879197
Iteration: 4, Func. Count: 23, Neg. LLF: 75.77245849983603
Iteration: 5, Func. Count: 27, Neg. LLF: 75.76084824224093
Iteration: 6, Func. Count: 31, Neg. LLF: 75.75859653513952
Iteration: 7, Func. Count: 35, Neg. LLF: 75.75806724657353
Iteration: 8, Func. Count: 39, Neg. LLF: 75.75806265798661
Iteration: 9, Func. Count: 42, Neg. LLF: 75.75806272117995
Optimization terminated successfully (Exit mode 0)
Current function value: 75.75806265798661
Iterations: 9
Function evaluations: 42
Gradient evaluations: 9
Iteration: 1, Func. Count: 6, Neg. LLF: 22298371.723734036
Iteration: 2, Func. Count: 13, Neg. LLF: 76.94139498887282
Iteration: 3, Func. Count: 19, Neg. LLF: 74.6639087518851
Iteration: 4, Func. Count: 24, Neg. LLF: 74.62693775671167
Iteration: 5, Func. Count: 29, Neg. LLF: 74.55316995149443
Iteration: 6, Func. Count: 34, Neg. LLF: 74.34353588330447
Iteration: 7, Func. Count: 39, Neg. LLF: 74.31065012176862
Iteration: 8, Func. Count: 44, Neg. LLF: 74.31034697158992
Iteration: 9, Func. Count: 49, Neg. LLF: 74.31033996775193
Iteration: 10, Func. Count: 53, Neg. LLF: 74.31033996794969
Optimization terminated successfully (Exit mode 0)
Current function value: 74.31033996775193
Iterations: 10
Function evaluations: 53
Gradient evaluations: 10
Iteration: 1, Func. Count: 7, Neg. LLF: 21930893.811172258
Iteration: 2, Func. Count: 15, Neg. LLF: 80.008498858894
Iteration: 3, Func. Count: 22, Neg. LLF: 74.70635049906514
Iteration: 4, Func. Count: 28, Neg. LLF: 74.77383129786067
Iteration: 5, Func. Count: 35, Neg. LLF: 74.36491542436745
Iteration: 6, Func. Count: 41, Neg. LLF: 74.33058613245571
Iteration: 7, Func. Count: 47, Neg. LLF: 74.32995033115387
Iteration: 8, Func. Count: 53, Neg. LLF: 74.32886199216527
Iteration: 9, Func. Count: 59, Neg. LLF: 74.32624617865244
Iteration: 10, Func. Count: 65, Neg. LLF: 74.32051880198998
Iteration: 11, Func. Count: 71, Neg. LLF: 74.31232003755228
Iteration: 12, Func. Count: 77, Neg. LLF: 74.31159536628982
Iteration: 13, Func. Count: 83, Neg. LLF: 74.31056356021101
Iteration: 14, Func. Count: 89, Neg. LLF: 74.31041709895712
Iteration: 15, Func. Count: 95, Neg. LLF: 74.31034020108558
Iteration: 16, Func. Count: 100, Neg. LLF: 74.31034020171457
Optimization terminated successfully (Exit mode 0)
Current function value: 74.31034020108558
Iterations: 16
Function evaluations: 100
Gradient evaluations: 16
Iteration: 1, Func. Count: 8, Neg. LLF: 22099758.915552396
Iteration: 2, Func. Count: 17, Neg. LLF: 75.88904712252696
Iteration: 3, Func. Count: 25, Neg. LLF: 75.21373328490735
Iteration: 4, Func. Count: 33, Neg. LLF: 74.71777111635205
Iteration: 5, Func. Count: 40, Neg. LLF: 74.41471752081252
Iteration: 6, Func. Count: 47, Neg. LLF: 74.61600595334066
Iteration: 7, Func. Count: 55, Neg. LLF: 74.33631249805259
Iteration: 8, Func. Count: 62, Neg. LLF: 74.3341467667505
Iteration: 9, Func. Count: 69, Neg. LLF: 74.3340907315467
Iteration: 10, Func. Count: 76, Neg. LLF: 74.33404502264189
Iteration: 11, Func. Count: 83, Neg. LLF: 74.33391538680343
Iteration: 12, Func. Count: 90, Neg. LLF: 74.33365351044355
Iteration: 13, Func. Count: 97, Neg. LLF: 74.33234322891835
Iteration: 14, Func. Count: 104, Neg. LLF: 74.3281495052048
Iteration: 15, Func. Count: 111, Neg. LLF: 22801726.525616862
Iteration: 16, Func. Count: 122, Neg. LLF: 75.44213187531896
Iteration: 17, Func. Count: 131, Neg. LLF: 74.32462132962223
Iteration: 18, Func. Count: 138, Neg. LLF: 74.3103416795278
Iteration: 19, Func. Count: 145, Neg. LLF: 74.31034095164722
Optimization terminated successfully (Exit mode 0)
Current function value: 74.31034095164722
Iterations: 20
Function evaluations: 145
Gradient evaluations: 19
Iteration: 1, Func. Count: 9, Neg. LLF: 21919407.152391437
Iteration: 2, Func. Count: 19, Neg. LLF: 75.03025350858451
Iteration: 3, Func. Count: 27, Neg. LLF: 74.46082873727933
Iteration: 4, Func. Count: 35, Neg. LLF: 100.38028314546006
Iteration: 5, Func. Count: 45, Neg. LLF: 74.33864529130787
Iteration: 6, Func. Count: 53, Neg. LLF: 74.3395884532872
Iteration: 7, Func. Count: 62, Neg. LLF: 74.32294127976782
Iteration: 8, Func. Count: 70, Neg. LLF: 74.32252700418864
Iteration: 9, Func. Count: 78, Neg. LLF: 74.32237956811971
Iteration: 10, Func. Count: 86, Neg. LLF: 74.32229691981024
Iteration: 11, Func. Count: 93, Neg. LLF: 74.32229691974501
Optimization terminated successfully (Exit mode 0)
Current function value: 74.32229691981024
Iterations: 11
Function evaluations: 93
Gradient evaluations: 11
Iteration: 1, Func. Count: 6, Neg. LLF: 120.32890915190086
Iteration: 2, Func. Count: 15, Neg. LLF: 372.5181474918565
Iteration: 3, Func. Count: 22, Neg. LLF: 80.74885872705744
Iteration: 4, Func. Count: 28, Neg. LLF: 74.99549441841171
Iteration: 5, Func. Count: 33, Neg. LLF: 74.98827186213022
Iteration: 6, Func. Count: 38, Neg. LLF: 74.97935407622803
Iteration: 7, Func. Count: 43, Neg. LLF: 74.97900423417671
Iteration: 8, Func. Count: 48, Neg. LLF: 74.9788438727295
Iteration: 9, Func. Count: 53, Neg. LLF: 74.9788261520154
Iteration: 10, Func. Count: 57, Neg. LLF: 74.97882615203241
Optimization terminated successfully (Exit mode 0)
Current function value: 74.9788261520154
Iterations: 10
Function evaluations: 57
Gradient evaluations: 10
Iteration: 1, Func. Count: 7, Neg. LLF: 40486890.123918094
Iteration: 2, Func. Count: 15, Neg. LLF: 90.83314428545187
Iteration: 3, Func. Count: 23, Neg. LLF: 84.42259074211408
Iteration: 4, Func. Count: 31, Neg. LLF: 74.94293393212367
Iteration: 5, Func. Count: 37, Neg. LLF: 75.17537019374373
Iteration: 6, Func. Count: 44, Neg. LLF: 75.11760332528831
Iteration: 7, Func. Count: 51, Neg. LLF: 74.99205356561549
Iteration: 8, Func. Count: 58, Neg. LLF: 74.78163982388828
Iteration: 9, Func. Count: 64, Neg. LLF: 74.77635692631878
Iteration: 10, Func. Count: 70, Neg. LLF: 74.75437343800189
Iteration: 11, Func. Count: 76, Neg. LLF: 74.75004504092314
Iteration: 12, Func. Count: 82, Neg. LLF: 74.74799518205488
Iteration: 13, Func. Count: 88, Neg. LLF: 74.74759174770476
Iteration: 14, Func. Count: 94, Neg. LLF: 74.74758127375951
Iteration: 15, Func. Count: 100, Neg. LLF: 74.74756032367965
Iteration: 16, Func. Count: 106, Neg. LLF: 74.74751123959167
Iteration: 17, Func. Count: 112, Neg. LLF: 74.74740509324597
Iteration: 18, Func. Count: 118, Neg. LLF: 74.74723379721571
Iteration: 19, Func. Count: 124, Neg. LLF: 74.74707431570077
Iteration: 20, Func. Count: 130, Neg. LLF: 74.74701259887624
Iteration: 21, Func. Count: 136, Neg. LLF: 74.74700359229789
Iteration: 22, Func. Count: 141, Neg. LLF: 74.74700359234062
Optimization terminated successfully (Exit mode 0)
Current function value: 74.74700359229789
Iterations: 22
Function evaluations: 141
Gradient evaluations: 22
Iteration: 1, Func. Count: 8, Neg. LLF: 38617818.47231801
Iteration: 2, Func. Count: 17, Neg. LLF: 125.08102798003603
Iteration: 3, Func. Count: 26, Neg. LLF: 190.2155587727195
Iteration: 4, Func. Count: 35, Neg. LLF: 74.89123635984856
Iteration: 5, Func. Count: 42, Neg. LLF: 74.80987483112553
Iteration: 6, Func. Count: 50, Neg. LLF: 74.35324513056935
Iteration: 7, Func. Count: 57, Neg. LLF: 74.33742167556568
Iteration: 8, Func. Count: 64, Neg. LLF: 74.3322014271904
Iteration: 9, Func. Count: 71, Neg. LLF: 74.3307562651031
Iteration: 10, Func. Count: 78, Neg. LLF: 74.33019130496503
Iteration: 11, Func. Count: 85, Neg. LLF: 74.32874361109972
Iteration: 12, Func. Count: 92, Neg. LLF: 74.32616015291994
Iteration: 13, Func. Count: 99, Neg. LLF: 74.31908553567762
Iteration: 14, Func. Count: 106, Neg. LLF: 74.31175208040887
Iteration: 15, Func. Count: 113, Neg. LLF: 74.31050057274236
Iteration: 16, Func. Count: 120, Neg. LLF: 74.31039896739988
Iteration: 17, Func. Count: 127, Neg. LLF: 74.31034019530586
Iteration: 18, Func. Count: 133, Neg. LLF: 74.31034019568685
Optimization terminated successfully (Exit mode 0)
Current function value: 74.31034019530586
Iterations: 18
Function evaluations: 133
Gradient evaluations: 18
Iteration: 1, Func. Count: 9, Neg. LLF: 11988306.891232695
Iteration: 2, Func. Count: 19, Neg. LLF: 106.50334652727986
Iteration: 3, Func. Count: 28, Neg. LLF: 81.29185399669488
Iteration: 4, Func. Count: 38, Neg. LLF: 74.81869651251554
Iteration: 5, Func. Count: 46, Neg. LLF: 74.78458085031234
Iteration: 6, Func. Count: 54, Neg. LLF: 74.77243967601927
Iteration: 7, Func. Count: 62, Neg. LLF: 74.76357223570209
Iteration: 8, Func. Count: 70, Neg. LLF: 74.75361125570079
Iteration: 9, Func. Count: 78, Neg. LLF: 74.7485768578812
Iteration: 10, Func. Count: 86, Neg. LLF: 74.74727568933973
Iteration: 11, Func. Count: 94, Neg. LLF: 74.74700836119831
Iteration: 12, Func. Count: 102, Neg. LLF: 74.74700330655547
Iteration: 13, Func. Count: 109, Neg. LLF: 74.74700331356362
Optimization terminated successfully (Exit mode 0)
Current function value: 74.74700330655547
Iterations: 13
Function evaluations: 109
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 11511222.574071243
Iteration: 2, Func. Count: 21, Neg. LLF: 141.00134038961426
Iteration: 3, Func. Count: 31, Neg. LLF: 135.53259806347856
Iteration: 4, Func. Count: 42, Neg. LLF: 74.74027205011792
Iteration: 5, Func. Count: 51, Neg. LLF: 74.6855783809804
Iteration: 6, Func. Count: 60, Neg. LLF: 74.60929052003577
Iteration: 7, Func. Count: 69, Neg. LLF: 74.16170300411162
Iteration: 8, Func. Count: 78, Neg. LLF: 74.4809285128118
Iteration: 9, Func. Count: 88, Neg. LLF: 73.48169906905547
Iteration: 10, Func. Count: 97, Neg. LLF: 73.12862499694104
Iteration: 11, Func. Count: 106, Neg. LLF: 72.77734158710348
Iteration: 12, Func. Count: 115, Neg. LLF: 72.15428305109741
Iteration: 13, Func. Count: 124, Neg. LLF: 72.09399842298471
Iteration: 14, Func. Count: 133, Neg. LLF: 72.08325989149111
Iteration: 15, Func. Count: 142, Neg. LLF: 72.083100715421
Iteration: 16, Func. Count: 150, Neg. LLF: 72.08310070910721
Optimization terminated successfully (Exit mode 0)
Current function value: 72.083100715421
Iterations: 16
Function evaluations: 150
Gradient evaluations: 16
Iteration: 1, Func. Count: 7, Neg. LLF: 138.82839324322504
Iteration: 2, Func. Count: 17, Neg. LLF: 501.87506412863206
Iteration: 3, Func. Count: 25, Neg. LLF: 3208330.641668331
Iteration: 4, Func. Count: 32, Neg. LLF: 75.02220890865802
Iteration: 5, Func. Count: 39, Neg. LLF: 74.73031058532568
Iteration: 6, Func. Count: 45, Neg. LLF: 74.62458050993315
Iteration: 7, Func. Count: 51, Neg. LLF: 74.62136110225003
Iteration: 8, Func. Count: 57, Neg. LLF: 74.62061054596806
Iteration: 9, Func. Count: 63, Neg. LLF: 74.62003615655019
Iteration: 10, Func. Count: 69, Neg. LLF: 74.6197722324289
Iteration: 11, Func. Count: 75, Neg. LLF: 74.61971769542671
Iteration: 12, Func. Count: 81, Neg. LLF: 74.61971473208447
Iteration: 13, Func. Count: 86, Neg. LLF: 74.61971473207927
Optimization terminated successfully (Exit mode 0)
Current function value: 74.61971473208447
Iterations: 13
Function evaluations: 86
Gradient evaluations: 13
Iteration: 1, Func. Count: 8, Neg. LLF: 22207495.400584433
Iteration: 2, Func. Count: 17, Neg. LLF: 808.6798853597865
Iteration: 3, Func. Count: 26, Neg. LLF: 82.30379731414708
Iteration: 4, Func. Count: 35, Neg. LLF: 75.11265371571326
Iteration: 5, Func. Count: 43, Neg. LLF: 74.93746026938933
Iteration: 6, Func. Count: 50, Neg. LLF: 74.85456958928653
Iteration: 7, Func. Count: 57, Neg. LLF: 74.79224847942082
Iteration: 8, Func. Count: 64, Neg. LLF: 74.75883738654775
Iteration: 9, Func. Count: 71, Neg. LLF: 74.71740735658746
Iteration: 10, Func. Count: 78, Neg. LLF: 74.65896677712166
Iteration: 11, Func. Count: 85, Neg. LLF: 74.6420916294593
Iteration: 12, Func. Count: 92, Neg. LLF: 74.63554527548686
Iteration: 13, Func. Count: 99, Neg. LLF: 74.62785663932256
Iteration: 14, Func. Count: 106, Neg. LLF: 74.62309624101826
Iteration: 15, Func. Count: 113, Neg. LLF: 74.62036061222493
Iteration: 16, Func. Count: 120, Neg. LLF: 74.61974689138196
Iteration: 17, Func. Count: 127, Neg. LLF: 74.61972838546929
Iteration: 18, Func. Count: 133, Neg. LLF: 74.61972839230425
Optimization terminated successfully (Exit mode 0)
Current function value: 74.61972838546929
Iterations: 18
Function evaluations: 133
Gradient evaluations: 18
Iteration: 1, Func. Count: 9, Neg. LLF: 34887647.85075662
Iteration: 2, Func. Count: 19, Neg. LLF: 8274724.958640041
Iteration: 3, Func. Count: 29, Neg. LLF: 288.60997076799737
Iteration: 4, Func. Count: 39, Neg. LLF: 74.85861112861528
Iteration: 5, Func. Count: 47, Neg. LLF: 74.79465892545433
Iteration: 6, Func. Count: 56, Neg. LLF: 74.35774849623621
Iteration: 7, Func. Count: 64, Neg. LLF: 74.34020410561128
Iteration: 8, Func. Count: 72, Neg. LLF: 74.33405755053671
Iteration: 9, Func. Count: 80, Neg. LLF: 74.33311568314392
Iteration: 10, Func. Count: 88, Neg. LLF: 74.33215139378976
Iteration: 11, Func. Count: 96, Neg. LLF: 74.33035771832226
Iteration: 12, Func. Count: 104, Neg. LLF: 74.3278977731941
Iteration: 13, Func. Count: 112, Neg. LLF: 74.31398518174994
Iteration: 14, Func. Count: 120, Neg. LLF: 74.31078658246471
Iteration: 15, Func. Count: 128, Neg. LLF: 74.31038077583632
Iteration: 16, Func. Count: 136, Neg. LLF: 74.31034735444938
Iteration: 17, Func. Count: 144, Neg. LLF: 74.31033995282175
Iteration: 18, Func. Count: 151, Neg. LLF: 74.31033995341429
Optimization terminated successfully (Exit mode 0)
Current function value: 74.31033995282175
Iterations: 18
Function evaluations: 151
Gradient evaluations: 18
Iteration: 1, Func. Count: 10, Neg. LLF: 20902677.269905757
Iteration: 2, Func. Count: 20, Neg. LLF: 94.59068679753439
Iteration: 3, Func. Count: 31, Neg. LLF: 102.39571331852923
Iteration: 4, Func. Count: 42, Neg. LLF: 75.14647684391548
Iteration: 5, Func. Count: 52, Neg. LLF: 75.42139278590854
Iteration: 6, Func. Count: 62, Neg. LLF: 74.70339931477386
Iteration: 7, Func. Count: 71, Neg. LLF: 74.65119373871865
Iteration: 8, Func. Count: 80, Neg. LLF: 74.62911095416318
Iteration: 9, Func. Count: 89, Neg. LLF: 74.62131772632274
Iteration: 10, Func. Count: 98, Neg. LLF: 74.62022267316406
Iteration: 11, Func. Count: 107, Neg. LLF: 74.61985961823189
Iteration: 12, Func. Count: 116, Neg. LLF: 74.6197425514878
Iteration: 13, Func. Count: 125, Neg. LLF: 74.61972007682256
Iteration: 14, Func. Count: 134, Neg. LLF: 74.61971687628788
Iteration: 15, Func. Count: 143, Neg. LLF: 74.61971542274087
Iteration: 16, Func. Count: 152, Neg. LLF: 74.61971475879722
Optimization terminated successfully (Exit mode 0)
Current function value: 74.61971475879722
Iterations: 16
Function evaluations: 152
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 14021201.630307315
Iteration: 2, Func. Count: 22, Neg. LLF: 118.93182564118526
Iteration: 3, Func. Count: 34, Neg. LLF: 127.96175548486868
Iteration: 4, Func. Count: 46, Neg. LLF: 74.85850673162965
Iteration: 5, Func. Count: 56, Neg. LLF: 75.03423145257257
Iteration: 6, Func. Count: 67, Neg. LLF: 74.63487386388117
Iteration: 7, Func. Count: 77, Neg. LLF: 73.6080642023153
Iteration: 8, Func. Count: 87, Neg. LLF: 72.44813280850941
Iteration: 9, Func. Count: 97, Neg. LLF: 78.94423085326459
Iteration: 10, Func. Count: 108, Neg. LLF: 72.10184963244502
Iteration: 11, Func. Count: 118, Neg. LLF: 72.08410024595105
Iteration: 12, Func. Count: 128, Neg. LLF: 72.08312058326999
Iteration: 13, Func. Count: 138, Neg. LLF: 72.15058028089845
Iteration: 14, Func. Count: 150, Neg. LLF: 72.0891821274784
Iteration: 15, Func. Count: 162, Neg. LLF: 72.0831002466135
Iteration: 16, Func. Count: 171, Neg. LLF: 72.08310024002522
Optimization terminated successfully (Exit mode 0)
Current function value: 72.0831002466135
Iterations: 17
Function evaluations: 171
Gradient evaluations: 16
Iteration: 1, Func. Count: 8, Neg. LLF: 143.9469893682989
Iteration: 2, Func. Count: 19, Neg. LLF: 496.8250866526854
Iteration: 3, Func. Count: 28, Neg. LLF: 3208637.6887422884
Iteration: 4, Func. Count: 36, Neg. LLF: 75.55165395524229
Iteration: 5, Func. Count: 44, Neg. LLF: 74.6940408678339
Iteration: 6, Func. Count: 51, Neg. LLF: 74.62890800840385
Iteration: 7, Func. Count: 58, Neg. LLF: 74.62563618399656
Iteration: 8, Func. Count: 65, Neg. LLF: 74.62120107483628
Iteration: 9, Func. Count: 72, Neg. LLF: 74.61991638842727
Iteration: 10, Func. Count: 79, Neg. LLF: 74.6197283402637
Iteration: 11, Func. Count: 86, Neg. LLF: 74.61971498867655
Iteration: 12, Func. Count: 92, Neg. LLF: 74.61971501352595
Optimization terminated successfully (Exit mode 0)
Current function value: 74.61971498867655
Iterations: 12
Function evaluations: 92
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 22221344.922288638
Iteration: 2, Func. Count: 19, Neg. LLF: 1461.264012316558
Iteration: 3, Func. Count: 29, Neg. LLF: 82.3381210684973
Iteration: 4, Func. Count: 39, Neg. LLF: 75.31472014961169
Iteration: 5, Func. Count: 48, Neg. LLF: 74.93365133709534
Iteration: 6, Func. Count: 56, Neg. LLF: 74.85220192712184
Iteration: 7, Func. Count: 64, Neg. LLF: 74.79259572376921
Iteration: 8, Func. Count: 72, Neg. LLF: 74.76146710983409
Iteration: 9, Func. Count: 80, Neg. LLF: 74.72108011793304
Iteration: 10, Func. Count: 88, Neg. LLF: 74.66271092920792
Iteration: 11, Func. Count: 96, Neg. LLF: 74.64314116039512
Iteration: 12, Func. Count: 104, Neg. LLF: 74.63427296247059
Iteration: 13, Func. Count: 112, Neg. LLF: 74.62880004263134
Iteration: 14, Func. Count: 120, Neg. LLF: 74.6239554850183
Iteration: 15, Func. Count: 128, Neg. LLF: 74.62097520676635
Iteration: 16, Func. Count: 136, Neg. LLF: 74.61980844328592
Iteration: 17, Func. Count: 144, Neg. LLF: 74.61971959623504
Iteration: 18, Func. Count: 152, Neg. LLF: 74.6197179550745
Iteration: 19, Func. Count: 159, Neg. LLF: 74.61971796178035
Optimization terminated successfully (Exit mode 0)
Current function value: 74.6197179550745
Iterations: 19
Function evaluations: 159
Gradient evaluations: 19
Iteration: 1, Func. Count: 10, Neg. LLF: 21945060.57589279
Iteration: 2, Func. Count: 21, Neg. LLF: 396.80751947440297
Iteration: 3, Func. Count: 32, Neg. LLF: 740.468440982002
Iteration: 4, Func. Count: 43, Neg. LLF: 74.72515627000944
Iteration: 5, Func. Count: 52, Neg. LLF: 74.34642599183398
Iteration: 6, Func. Count: 61, Neg. LLF: 74.32901767540163
Iteration: 7, Func. Count: 70, Neg. LLF: 74.32821272423388
Iteration: 8, Func. Count: 79, Neg. LLF: 74.32774976273662
Iteration: 9, Func. Count: 88, Neg. LLF: 74.32490181175066
Iteration: 10, Func. Count: 97, Neg. LLF: 74.31050633340463
Iteration: 11, Func. Count: 106, Neg. LLF: 74.3103897574996
Iteration: 12, Func. Count: 115, Neg. LLF: 74.31034217248232
Iteration: 13, Func. Count: 124, Neg. LLF: 74.31033995936748
Iteration: 14, Func. Count: 132, Neg. LLF: 74.31033996011334
Optimization terminated successfully (Exit mode 0)
Current function value: 74.31033995936748
Iterations: 14
Function evaluations: 132
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 5012851.585144184
Iteration: 2, Func. Count: 22, Neg. LLF: 99.6026602320612
Iteration: 3, Func. Count: 34, Neg. LLF: 80.71778439389875
Iteration: 4, Func. Count: 46, Neg. LLF: 83.53884144339769
Iteration: 5, Func. Count: 58, Neg. LLF: 74.75308822999213
Iteration: 6, Func. Count: 68, Neg. LLF: 74.67545340681173
Iteration: 7, Func. Count: 78, Neg. LLF: 73.30477761783568
Iteration: 8, Func. Count: 88, Neg. LLF: 74.84900652973079
Iteration: 9, Func. Count: 100, Neg. LLF: 72.85177387523436
Iteration: 10, Func. Count: 110, Neg. LLF: 72.86749058272903
Iteration: 11, Func. Count: 121, Neg. LLF: 72.84446833921368
Iteration: 12, Func. Count: 132, Neg. LLF: 773.6890504167694
Iteration: 13, Func. Count: 145, Neg. LLF: 73.23659106078188
Iteration: 14, Func. Count: 157, Neg. LLF: 72.91051874132832
Iteration: 15, Func. Count: 169, Neg. LLF: 72.8494240067369
Iteration: 16, Func. Count: 181, Neg. LLF: 72.84363137641911
Iteration: 17, Func. Count: 190, Neg. LLF: 72.84363137659366
Optimization terminated successfully (Exit mode 0)
Current function value: 72.84363137641911
Iterations: 18
Function evaluations: 190
Gradient evaluations: 17
Iteration: 1, Func. Count: 12, Neg. LLF: 4627035.85063252
Iteration: 2, Func. Count: 24, Neg. LLF: 102.26582830429724
Iteration: 3, Func. Count: 37, Neg. LLF: 83.56604839706901
Iteration: 4, Func. Count: 50, Neg. LLF: 80.9648860902193
Iteration: 5, Func. Count: 62, Neg. LLF: 72.91674354483291
Iteration: 6, Func. Count: 73, Neg. LLF: 72.21053023118634
Iteration: 7, Func. Count: 84, Neg. LLF: 72.14182903843209
Iteration: 8, Func. Count: 95, Neg. LLF: 72.08367105491904
Iteration: 9, Func. Count: 106, Neg. LLF: 72.08311480013947
Iteration: 10, Func. Count: 117, Neg. LLF: 72.08310025156693
Iteration: 11, Func. Count: 127, Neg. LLF: 72.08310024497442
Optimization terminated successfully (Exit mode 0)
Current function value: 72.08310025156693
Iterations: 11
Function evaluations: 127
Gradient evaluations: 11
Iteration: 1, Func. Count: 5, Neg. LLF: 160.55552214601482
Iteration: 2, Func. Count: 13, Neg. LLF: 142.05752167001884
Iteration: 3, Func. Count: 19, Neg. LLF: 75.95911180685599
Iteration: 4, Func. Count: 24, Neg. LLF: 74.56549358791324
Iteration: 5, Func. Count: 28, Neg. LLF: 74.5646026231116
Iteration: 6, Func. Count: 32, Neg. LLF: 74.56437576432597
Iteration: 7, Func. Count: 35, Neg. LLF: 74.56437576433242
Optimization terminated successfully (Exit mode 0)
Current function value: 74.56437576432597
Iterations: 7
Function evaluations: 35
Gradient evaluations: 7
Iteration: 1, Func. Count: 6, Neg. LLF: 121878366.05556777
Iteration: 2, Func. Count: 13, Neg. LLF: 75.5355453442222
Iteration: 3, Func. Count: 19, Neg. LLF: 4493724.193200492
Iteration: 4, Func. Count: 26, Neg. LLF: 77.29173923953682
Iteration: 5, Func. Count: 32, Neg. LLF: 74.31282733376426
Iteration: 6, Func. Count: 37, Neg. LLF: 74.31260803152074
Iteration: 7, Func. Count: 42, Neg. LLF: 74.31260404353401
Iteration: 8, Func. Count: 46, Neg. LLF: 74.31260404344759
Optimization terminated successfully (Exit mode 0)
Current function value: 74.31260404353401
Iterations: 8
Function evaluations: 46
Gradient evaluations: 8
Iteration: 1, Func. Count: 7, Neg. LLF: 87168952.81254022
Iteration: 2, Func. Count: 15, Neg. LLF: 228.90934110689096
Iteration: 3, Func. Count: 23, Neg. LLF: 102.74902706856945
Iteration: 4, Func. Count: 30, Neg. LLF: 82.0263500816952
Iteration: 5, Func. Count: 37, Neg. LLF: 74.0469307932455
Iteration: 6, Func. Count: 43, Neg. LLF: 74.04556721791221
Iteration: 7, Func. Count: 49, Neg. LLF: 74.04537875434997
Iteration: 8, Func. Count: 55, Neg. LLF: 74.04513008525609
Iteration: 9, Func. Count: 61, Neg. LLF: 74.04512938396802
Optimization terminated successfully (Exit mode 0)
Current function value: 74.04512938396802
Iterations: 9
Function evaluations: 61
Gradient evaluations: 9
Iteration: 1, Func. Count: 8, Neg. LLF: 119874331.13654111
Iteration: 2, Func. Count: 17, Neg. LLF: 109.4283391099429
Iteration: 3, Func. Count: 25, Neg. LLF: 82.62649353363287
Iteration: 4, Func. Count: 33, Neg. LLF: 80.13160042534648
Iteration: 5, Func. Count: 41, Neg. LLF: 74.04595000887795
Iteration: 6, Func. Count: 48, Neg. LLF: 74.04526799626561
Iteration: 7, Func. Count: 55, Neg. LLF: 74.04517109763844
Iteration: 8, Func. Count: 62, Neg. LLF: 74.04514286928169
Iteration: 9, Func. Count: 69, Neg. LLF: 74.04513013560282
Iteration: 10, Func. Count: 76, Neg. LLF: 74.04512939467116
Optimization terminated successfully (Exit mode 0)
Current function value: 74.04512939467116
Iterations: 10
Function evaluations: 76
Gradient evaluations: 10
Iteration: 1, Func. Count: 9, Neg. LLF: 133379019.3125733
Iteration: 2, Func. Count: 19, Neg. LLF: 115.85768596905146
Iteration: 3, Func. Count: 28, Neg. LLF: 85.86896869162966
Iteration: 4, Func. Count: 37, Neg. LLF: 79.4771667764961
Iteration: 5, Func. Count: 46, Neg. LLF: 74.0491507679209
Iteration: 6, Func. Count: 54, Neg. LLF: 74.0455544323645
Iteration: 7, Func. Count: 62, Neg. LLF: 74.04514799588115
Iteration: 8, Func. Count: 70, Neg. LLF: 74.04513007576969
Iteration: 9, Func. Count: 78, Neg. LLF: 74.0451293748268
Optimization terminated successfully (Exit mode 0)
Current function value: 74.0451293748268
Iterations: 9
Function evaluations: 78
Gradient evaluations: 9
Iteration: 1, Func. Count: 6, Neg. LLF: 159.81825269097905
Iteration: 2, Func. Count: 15, Neg. LLF: 141.30564468723557
Iteration: 3, Func. Count: 22, Neg. LLF: 77.59285268733537
Iteration: 4, Func. Count: 28, Neg. LLF: 73.7598790388088
Iteration: 5, Func. Count: 33, Neg. LLF: 73.82352121974515
Iteration: 6, Func. Count: 39, Neg. LLF: 73.74727983287272
Iteration: 7, Func. Count: 44, Neg. LLF: 73.74718720594048
Iteration: 8, Func. Count: 49, Neg. LLF: 73.74716922190242
Iteration: 9, Func. Count: 54, Neg. LLF: 73.74716769552847
Iteration: 10, Func. Count: 58, Neg. LLF: 73.7471676524766
Optimization terminated successfully (Exit mode 0)
Current function value: 73.74716769552847
Iterations: 10
Function evaluations: 58
Gradient evaluations: 10
Iteration: 1, Func. Count: 7, Neg. LLF: 103363731.83396654
Iteration: 2, Func. Count: 15, Neg. LLF: 76.15817239895672
Iteration: 3, Func. Count: 23, Neg. LLF: 11993095.11401461
Iteration: 4, Func. Count: 31, Neg. LLF: 73.81187323309136
Iteration: 5, Func. Count: 37, Neg. LLF: 73.8002364135354
Iteration: 6, Func. Count: 43, Neg. LLF: 73.80464768489968
Iteration: 7, Func. Count: 50, Neg. LLF: 73.79690846902959
Iteration: 8, Func. Count: 56, Neg. LLF: 73.79684319062088
Iteration: 9, Func. Count: 62, Neg. LLF: 73.79684154481457
Iteration: 10, Func. Count: 67, Neg. LLF: 73.79684154478574
Optimization terminated successfully (Exit mode 0)
Current function value: 73.79684154481457
Iterations: 10
Function evaluations: 67
Gradient evaluations: 10
Iteration: 1, Func. Count: 8, Neg. LLF: 69877836.3359497
Iteration: 2, Func. Count: 17, Neg. LLF: 1558.5697282848864
Iteration: 3, Func. Count: 25, Neg. LLF: 78.76122462073823
Iteration: 4, Func. Count: 33, Neg. LLF: 72.78130264148407
Iteration: 5, Func. Count: 40, Neg. LLF: 73.07572968547261
Iteration: 6, Func. Count: 48, Neg. LLF: 72.7464568217346
Iteration: 7, Func. Count: 55, Neg. LLF: 72.73982448288788
Iteration: 8, Func. Count: 62, Neg. LLF: 72.73903899043326
Iteration: 9, Func. Count: 69, Neg. LLF: 72.73888383222997
Iteration: 10, Func. Count: 76, Neg. LLF: 72.73887014573633
Iteration: 11, Func. Count: 83, Neg. LLF: 72.73886961362028
Optimization terminated successfully (Exit mode 0)
Current function value: 72.73886961362028
Iterations: 11
Function evaluations: 83
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 103719087.09012471
Iteration: 2, Func. Count: 19, Neg. LLF: 134.3326529484358
Iteration: 3, Func. Count: 28, Neg. LLF: 81.51661337304094
Iteration: 4, Func. Count: 37, Neg. LLF: 77.22841778517143
Iteration: 5, Func. Count: 46, Neg. LLF: 72.85329615420248
Iteration: 6, Func. Count: 54, Neg. LLF: 73.01247904899432
Iteration: 7, Func. Count: 63, Neg. LLF: 72.79356785756923
Iteration: 8, Func. Count: 71, Neg. LLF: 72.75408814853996
Iteration: 9, Func. Count: 79, Neg. LLF: 72.74228723166243
Iteration: 10, Func. Count: 87, Neg. LLF: 72.73925963312867
Iteration: 11, Func. Count: 95, Neg. LLF: 72.73892207427457
Iteration: 12, Func. Count: 103, Neg. LLF: 72.73887323466727
Iteration: 13, Func. Count: 111, Neg. LLF: 72.73886965297181
Iteration: 14, Func. Count: 118, Neg. LLF: 72.7388697024914
Optimization terminated successfully (Exit mode 0)
Current function value: 72.73886965297181
Iterations: 14
Function evaluations: 118
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 95855268.79009214
Iteration: 2, Func. Count: 21, Neg. LLF: 147.71177092007906
Iteration: 3, Func. Count: 31, Neg. LLF: 80.02939298486336
Iteration: 4, Func. Count: 41, Neg. LLF: 83.83713284341476
Iteration: 5, Func. Count: 51, Neg. LLF: 72.82556920093542
Iteration: 6, Func. Count: 60, Neg. LLF: 72.89528259659748
Iteration: 7, Func. Count: 70, Neg. LLF: 72.75905293338438
Iteration: 8, Func. Count: 79, Neg. LLF: 72.740964985047
Iteration: 9, Func. Count: 88, Neg. LLF: 72.73901956743632
Iteration: 10, Func. Count: 97, Neg. LLF: 72.73888854863213
Iteration: 11, Func. Count: 106, Neg. LLF: 72.73887175381654
Iteration: 12, Func. Count: 115, Neg. LLF: 72.73886962610962
Iteration: 13, Func. Count: 123, Neg. LLF: 72.73886965877918
Optimization terminated successfully (Exit mode 0)
Current function value: 72.73886962610962
Iterations: 13
Function evaluations: 123
Gradient evaluations: 13
Iteration: 1, Func. Count: 7, Neg. LLF: 140.8762376252076
Iteration: 2, Func. Count: 17, Neg. LLF: 124.17405438739674
Iteration: 3, Func. Count: 25, Neg. LLF: 2432979.627947326
Iteration: 4, Func. Count: 32, Neg. LLF: 73.03740474250124
Iteration: 5, Func. Count: 38, Neg. LLF: 73.02240920729506
Iteration: 6, Func. Count: 44, Neg. LLF: 72.99753142750993
Iteration: 7, Func. Count: 50, Neg. LLF: 72.99622197268464
Iteration: 8, Func. Count: 56, Neg. LLF: 72.9961915002511
Iteration: 9, Func. Count: 62, Neg. LLF: 72.99618000780309
Iteration: 10, Func. Count: 67, Neg. LLF: 72.99618000779482
Optimization terminated successfully (Exit mode 0)
Current function value: 72.99618000780309
Iterations: 10
Function evaluations: 67
Gradient evaluations: 10
Iteration: 1, Func. Count: 8, Neg. LLF: 197.98087748294566
Iteration: 2, Func. Count: 17, Neg. LLF: 1954399.3381432714
Iteration: 3, Func. Count: 25, Neg. LLF: 73.70664401859305
Iteration: 4, Func. Count: 32, Neg. LLF: 73.08154752557215
Iteration: 5, Func. Count: 39, Neg. LLF: 75.23009735008412
Iteration: 6, Func. Count: 47, Neg. LLF: 73.00743569630443
Iteration: 7, Func. Count: 54, Neg. LLF: 72.99841647096564
Iteration: 8, Func. Count: 61, Neg. LLF: 72.99635461806649
Iteration: 9, Func. Count: 68, Neg. LLF: 72.99618636011277
Iteration: 10, Func. Count: 75, Neg. LLF: 72.99618022050828
Iteration: 11, Func. Count: 81, Neg. LLF: 72.99618023297185
Optimization terminated successfully (Exit mode 0)
Current function value: 72.99618022050828
Iterations: 11
Function evaluations: 81
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 4607231.142482851
Iteration: 2, Func. Count: 19, Neg. LLF: 2094149.3475679746
Iteration: 3, Func. Count: 28, Neg. LLF: 73.04475602012832
Iteration: 4, Func. Count: 36, Neg. LLF: 73.03078240146779
Iteration: 5, Func. Count: 45, Neg. LLF: 73.09507685454449
Iteration: 6, Func. Count: 54, Neg. LLF: 85.76918990045887
Iteration: 7, Func. Count: 63, Neg. LLF: 72.7067464899055
Iteration: 8, Func. Count: 72, Neg. LLF: 72.66443648441756
Iteration: 9, Func. Count: 80, Neg. LLF: 72.66007157100486
Iteration: 10, Func. Count: 88, Neg. LLF: 72.65997961441855
Iteration: 11, Func. Count: 96, Neg. LLF: 72.65997137090594
Iteration: 12, Func. Count: 104, Neg. LLF: 72.65996752177605
Iteration: 13, Func. Count: 111, Neg. LLF: 72.65996752176432
Optimization terminated successfully (Exit mode 0)
Current function value: 72.65996752177605
Iterations: 13
Function evaluations: 111
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 313.55763871352787
Iteration: 2, Func. Count: 21, Neg. LLF: 2145739.5522061996
Iteration: 3, Func. Count: 31, Neg. LLF: 83.94856332584058
Iteration: 4, Func. Count: 42, Neg. LLF: 72.80037612949381
Iteration: 5, Func. Count: 51, Neg. LLF: 72.9642264207522
Iteration: 6, Func. Count: 61, Neg. LLF: 72.93683852323267
Iteration: 7, Func. Count: 71, Neg. LLF: 72.69418934067949
Iteration: 8, Func. Count: 80, Neg. LLF: 72.66248703757893
Iteration: 9, Func. Count: 89, Neg. LLF: 72.66031002110887
Iteration: 10, Func. Count: 98, Neg. LLF: 72.65997860901541
Iteration: 11, Func. Count: 107, Neg. LLF: 72.65996786882977
Iteration: 12, Func. Count: 115, Neg. LLF: 72.65996791207672
Optimization terminated successfully (Exit mode 0)
Current function value: 72.65996786882977
Iterations: 12
Function evaluations: 115
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 5413831.956566644
Iteration: 2, Func. Count: 23, Neg. LLF: 2236926.9844877585
Iteration: 3, Func. Count: 34, Neg. LLF: 77.58934050776055
Iteration: 4, Func. Count: 45, Neg. LLF: 73.49057559791409
Iteration: 5, Func. Count: 55, Neg. LLF: 72.98177867785556
Iteration: 6, Func. Count: 65, Neg. LLF: 73.4211884241564
Iteration: 7, Func. Count: 76, Neg. LLF: 72.73655980210486
Iteration: 8, Func. Count: 87, Neg. LLF: 72.67560448198653
Iteration: 9, Func. Count: 97, Neg. LLF: 72.66159258896552
Iteration: 10, Func. Count: 107, Neg. LLF: 72.66024243638353
Iteration: 11, Func. Count: 117, Neg. LLF: 72.65996945485958
Iteration: 12, Func. Count: 127, Neg. LLF: 72.65996759494207
Iteration: 13, Func. Count: 136, Neg. LLF: 72.65996761562258
Optimization terminated successfully (Exit mode 0)
Current function value: 72.65996759494207
Iterations: 13
Function evaluations: 136
Gradient evaluations: 13
Iteration: 1, Func. Count: 8, Neg. LLF: 149.92771978927223
Iteration: 2, Func. Count: 18, Neg. LLF: 135.00150947973185
Iteration: 3, Func. Count: 27, Neg. LLF: 2545138.772680258
Iteration: 4, Func. Count: 35, Neg. LLF: 76.41294425312208
Iteration: 5, Func. Count: 43, Neg. LLF: 79.21264081481615
Iteration: 6, Func. Count: 51, Neg. LLF: 73.03964424500494
Iteration: 7, Func. Count: 58, Neg. LLF: 73.00440655190755
Iteration: 8, Func. Count: 65, Neg. LLF: 72.99828999898862
Iteration: 9, Func. Count: 72, Neg. LLF: 72.99638551752146
Iteration: 10, Func. Count: 79, Neg. LLF: 72.99618660655615
Iteration: 11, Func. Count: 86, Neg. LLF: 72.99618002538313
Iteration: 12, Func. Count: 92, Neg. LLF: 72.99618002715387
Optimization terminated successfully (Exit mode 0)
Current function value: 72.99618002538313
Iterations: 12
Function evaluations: 92
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 213.805658590294
Iteration: 2, Func. Count: 19, Neg. LLF: 2034963.7682084797
Iteration: 3, Func. Count: 28, Neg. LLF: 73.24704697749604
Iteration: 4, Func. Count: 36, Neg. LLF: 73.02861345018471
Iteration: 5, Func. Count: 44, Neg. LLF: 73.10382093547247
Iteration: 6, Func. Count: 53, Neg. LLF: 73.10731946584299
Iteration: 7, Func. Count: 62, Neg. LLF: 73.01024621586848
Iteration: 8, Func. Count: 71, Neg. LLF: 72.9974406283187
Iteration: 9, Func. Count: 79, Neg. LLF: 72.9962029181846
Iteration: 10, Func. Count: 87, Neg. LLF: 72.99618000470903
Iteration: 11, Func. Count: 94, Neg. LLF: 72.99618001715405
Optimization terminated successfully (Exit mode 0)
Current function value: 72.99618000470903
Iterations: 11
Function evaluations: 94
Gradient evaluations: 11
Iteration: 1, Func. Count: 10, Neg. LLF: 5442868.026327824
Iteration: 2, Func. Count: 21, Neg. LLF: 2258874.7022513794
Iteration: 3, Func. Count: 31, Neg. LLF: 105.61930805438013
Iteration: 4, Func. Count: 42, Neg. LLF: 72.9148063972989
Iteration: 5, Func. Count: 51, Neg. LLF: 72.73265927794326
Iteration: 6, Func. Count: 60, Neg. LLF: 74.67598350067209
Iteration: 7, Func. Count: 70, Neg. LLF: 72.71047578810527
Iteration: 8, Func. Count: 80, Neg. LLF: 72.6630406903327
Iteration: 9, Func. Count: 89, Neg. LLF: 72.66004336025296
Iteration: 10, Func. Count: 98, Neg. LLF: 72.6599715978765
Iteration: 11, Func. Count: 107, Neg. LLF: 72.65996816573586
Iteration: 12, Func. Count: 116, Neg. LLF: 72.6599674944006
Optimization terminated successfully (Exit mode 0)
Current function value: 72.6599674944006
Iterations: 12
Function evaluations: 116
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 216.95846454153417
Iteration: 2, Func. Count: 23, Neg. LLF: 2602169.339630205
Iteration: 3, Func. Count: 34, Neg. LLF: 73.77139605986942
Iteration: 4, Func. Count: 44, Neg. LLF: 76.31837997843537
Iteration: 5, Func. Count: 55, Neg. LLF: 90.1145863642018
Iteration: 6, Func. Count: 66, Neg. LLF: 76.78364503415635
Iteration: 7, Func. Count: 77, Neg. LLF: 78.67637059581716
Iteration: 8, Func. Count: 88, Neg. LLF: 74.0440628490478
Iteration: 9, Func. Count: 99, Neg. LLF: 72.7515747456526
Iteration: 10, Func. Count: 110, Neg. LLF: 72.67369877157888
Iteration: 11, Func. Count: 120, Neg. LLF: 72.67644315185632
Iteration: 12, Func. Count: 131, Neg. LLF: 72.66008409124235
Iteration: 13, Func. Count: 141, Neg. LLF: 72.65997620110001
Iteration: 14, Func. Count: 151, Neg. LLF: 72.6599682566922
Iteration: 15, Func. Count: 160, Neg. LLF: 72.65996830001951
Optimization terminated successfully (Exit mode 0)
Current function value: 72.6599682566922
Iterations: 15
Function evaluations: 160
Gradient evaluations: 15
Iteration: 1, Func. Count: 12, Neg. LLF: 235.66761450503665
Iteration: 2, Func. Count: 25, Neg. LLF: 2901749.3155069784
Iteration: 3, Func. Count: 37, Neg. LLF: 77.14433682724537
Iteration: 4, Func. Count: 49, Neg. LLF: 75.18616192605118
Iteration: 5, Func. Count: 62, Neg. LLF: 72.87150549643923
Iteration: 6, Func. Count: 73, Neg. LLF: 72.75267206774029
Iteration: 7, Func. Count: 84, Neg. LLF: 72.6844808762292
Iteration: 8, Func. Count: 95, Neg. LLF: 72.66863309373672
Iteration: 9, Func. Count: 106, Neg. LLF: 72.66206315311183
Iteration: 10, Func. Count: 117, Neg. LLF: 72.66055545588232
Iteration: 11, Func. Count: 128, Neg. LLF: 72.66010598739557
Iteration: 12, Func. Count: 139, Neg. LLF: 72.65996858533703
Iteration: 13, Func. Count: 150, Neg. LLF: 72.65996748963619
Iteration: 14, Func. Count: 160, Neg. LLF: 72.65996751033022
Optimization terminated successfully (Exit mode 0)
Current function value: 72.65996748963619
Iterations: 14
Function evaluations: 160
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 160.22058441539644
Iteration: 2, Func. Count: 20, Neg. LLF: 135.22189941519133
Iteration: 3, Func. Count: 30, Neg. LLF: 2635252.084299842
Iteration: 4, Func. Count: 39, Neg. LLF: 76.78381791123277
Iteration: 5, Func. Count: 48, Neg. LLF: 74.96567252851483
Iteration: 6, Func. Count: 57, Neg. LLF: 73.01084621618972
Iteration: 7, Func. Count: 65, Neg. LLF: 73.0019786663218
Iteration: 8, Func. Count: 73, Neg. LLF: 72.99632336906393
Iteration: 9, Func. Count: 81, Neg. LLF: 72.99624178204164
Iteration: 10, Func. Count: 89, Neg. LLF: 72.9961816711238
Iteration: 11, Func. Count: 97, Neg. LLF: 72.99618002714332
Iteration: 12, Func. Count: 104, Neg. LLF: 72.996180040093
Optimization terminated successfully (Exit mode 0)
Current function value: 72.99618002714332
Iterations: 12
Function evaluations: 104
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 5725775.742377083
Iteration: 2, Func. Count: 21, Neg. LLF: 2076721.0287503598
Iteration: 3, Func. Count: 31, Neg. LLF: 73.07815894086747
Iteration: 4, Func. Count: 40, Neg. LLF: 73.75561679367449
Iteration: 5, Func. Count: 50, Neg. LLF: 73.80843978102514
Iteration: 6, Func. Count: 60, Neg. LLF: 73.00320093640836
Iteration: 7, Func. Count: 69, Neg. LLF: 72.9980020369108
Iteration: 8, Func. Count: 78, Neg. LLF: 72.99645784592126
Iteration: 9, Func. Count: 87, Neg. LLF: 72.99619012770462
Iteration: 10, Func. Count: 96, Neg. LLF: 72.996180188707
Iteration: 11, Func. Count: 104, Neg. LLF: 72.99618020118663
Optimization terminated successfully (Exit mode 0)
Current function value: 72.996180188707
Iterations: 11
Function evaluations: 104
Gradient evaluations: 11
Iteration: 1, Func. Count: 11, Neg. LLF: 5520651.545514605
Iteration: 2, Func. Count: 23, Neg. LLF: 2261987.9875430968
Iteration: 3, Func. Count: 34, Neg. LLF: 114.7441673241692
Iteration: 4, Func. Count: 46, Neg. LLF: 72.92111324004645
Iteration: 5, Func. Count: 56, Neg. LLF: 72.73160895062611
Iteration: 6, Func. Count: 66, Neg. LLF: 74.84316826371679
Iteration: 7, Func. Count: 77, Neg. LLF: 72.70338041630595
Iteration: 8, Func. Count: 88, Neg. LLF: 72.66299979868802
Iteration: 9, Func. Count: 98, Neg. LLF: 72.66005886476256
Iteration: 10, Func. Count: 108, Neg. LLF: 72.65997558980031
Iteration: 11, Func. Count: 118, Neg. LLF: 72.65996831598714
Iteration: 12, Func. Count: 128, Neg. LLF: 72.65996750708017
Optimization terminated successfully (Exit mode 0)
Current function value: 72.65996750708017
Iterations: 12
Function evaluations: 128
Gradient evaluations: 12
Iteration: 1, Func. Count: 12, Neg. LLF: 328.3088478312433
Iteration: 2, Func. Count: 25, Neg. LLF: 2704095.435050681
Iteration: 3, Func. Count: 37, Neg. LLF: 75.85642563770865
Iteration: 4, Func. Count: 49, Neg. LLF: 75.47339480399886
Iteration: 5, Func. Count: 62, Neg. LLF: 72.86568789357028
Iteration: 6, Func. Count: 73, Neg. LLF: 72.77369824521499
Iteration: 7, Func. Count: 84, Neg. LLF: 72.6751706079588
Iteration: 8, Func. Count: 95, Neg. LLF: 72.6637234861354
Iteration: 9, Func. Count: 106, Neg. LLF: 72.66077313916038
Iteration: 10, Func. Count: 117, Neg. LLF: 72.66019031842865
Iteration: 11, Func. Count: 128, Neg. LLF: 72.66005830340981
Iteration: 12, Func. Count: 139, Neg. LLF: 72.65996791668076
Iteration: 13, Func. Count: 149, Neg. LLF: 72.65996796001549
Optimization terminated successfully (Exit mode 0)
Current function value: 72.65996791668076
Iterations: 13
Function evaluations: 149
Gradient evaluations: 13
Iteration: 1, Func. Count: 13, Neg. LLF: 141.45072321373334
Iteration: 2, Func. Count: 27, Neg. LLF: 2590636.7807680867
Iteration: 3, Func. Count: 40, Neg. LLF: 85.01573763924178
Iteration: 4, Func. Count: 53, Neg. LLF: 74.75780876207733
Iteration: 5, Func. Count: 66, Neg. LLF: 72.90031457902242
Iteration: 6, Func. Count: 78, Neg. LLF: 84.55650368795501
Iteration: 7, Func. Count: 91, Neg. LLF: 72.80976857571746
Iteration: 8, Func. Count: 104, Neg. LLF: 72.66925894433422
Iteration: 9, Func. Count: 116, Neg. LLF: 72.66184979249064
Iteration: 10, Func. Count: 128, Neg. LLF: 72.6608887629379
Iteration: 11, Func. Count: 140, Neg. LLF: 72.66004948833216
Iteration: 12, Func. Count: 152, Neg. LLF: 72.65997748357906
Iteration: 13, Func. Count: 164, Neg. LLF: 72.65996749464891
Iteration: 14, Func. Count: 175, Neg. LLF: 72.65996751531812
Optimization terminated successfully (Exit mode 0)
Current function value: 72.65996749464891
Iterations: 14
Function evaluations: 175
Gradient evaluations: 14
Iteration: 1, Func. Count: 6, Neg. LLF: 145.9156216134559
Iteration: 2, Func. Count: 15, Neg. LLF: 132.46003947206043
Iteration: 3, Func. Count: 22, Neg. LLF: 1381.9798431481004
Iteration: 4, Func. Count: 28, Neg. LLF: 74.56928853778065
Iteration: 5, Func. Count: 34, Neg. LLF: 74.65074831773134
Iteration: 6, Func. Count: 40, Neg. LLF: 74.4516279175147
Iteration: 7, Func. Count: 45, Neg. LLF: 74.45146424074849
Iteration: 8, Func. Count: 50, Neg. LLF: 74.4514327743595
Iteration: 9, Func. Count: 54, Neg. LLF: 74.45143277435083
Optimization terminated successfully (Exit mode 0)
Current function value: 74.4514327743595
Iterations: 9
Function evaluations: 54
Gradient evaluations: 9
Iteration: 1, Func. Count: 7, Neg. LLF: 262.6682753369007
Iteration: 2, Func. Count: 15, Neg. LLF: 4302.0236080973755
Iteration: 3, Func. Count: 23, Neg. LLF: 110.9376081507731
Iteration: 4, Func. Count: 31, Neg. LLF: 74.432029875206
Iteration: 5, Func. Count: 37, Neg. LLF: 74.3457388953785
Iteration: 6, Func. Count: 43, Neg. LLF: 74.35294970167375
Iteration: 7, Func. Count: 50, Neg. LLF: 74.31300584958457
Iteration: 8, Func. Count: 56, Neg. LLF: 74.31263039829895
Iteration: 9, Func. Count: 62, Neg. LLF: 74.31260551777746
Iteration: 10, Func. Count: 68, Neg. LLF: 74.31260387442775
Iteration: 11, Func. Count: 73, Neg. LLF: 74.3126038744417
Optimization terminated successfully (Exit mode 0)
Current function value: 74.31260387442775
Iterations: 11
Function evaluations: 73
Gradient evaluations: 11
Iteration: 1, Func. Count: 8, Neg. LLF: 378.91642558921245
Iteration: 2, Func. Count: 17, Neg. LLF: 221530.96667334816
Iteration: 3, Func. Count: 26, Neg. LLF: 123.04337103563333
Iteration: 4, Func. Count: 35, Neg. LLF: 74.54653981106132
Iteration: 5, Func. Count: 43, Neg. LLF: 74.07780950555775
Iteration: 6, Func. Count: 50, Neg. LLF: 74.04934854134018
Iteration: 7, Func. Count: 57, Neg. LLF: 74.04573992431443
Iteration: 8, Func. Count: 64, Neg. LLF: 74.04526966477086
Iteration: 9, Func. Count: 71, Neg. LLF: 74.04513256796298
Iteration: 10, Func. Count: 78, Neg. LLF: 74.04512945687867
Iteration: 11, Func. Count: 84, Neg. LLF: 74.04512945684436
Optimization terminated successfully (Exit mode 0)
Current function value: 74.04512945687867
Iterations: 11
Function evaluations: 84
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 19866.512841297586
Iteration: 2, Func. Count: 19, Neg. LLF: 2151.3509814604504
Iteration: 3, Func. Count: 29, Neg. LLF: 124.18149765906642
Iteration: 4, Func. Count: 39, Neg. LLF: 74.57941423359051
Iteration: 5, Func. Count: 48, Neg. LLF: 74.07686563728448
Iteration: 6, Func. Count: 56, Neg. LLF: 74.04932300761389
Iteration: 7, Func. Count: 64, Neg. LLF: 74.0458169910437
Iteration: 8, Func. Count: 72, Neg. LLF: 74.04534034500821
Iteration: 9, Func. Count: 80, Neg. LLF: 74.04513464951741
Iteration: 10, Func. Count: 88, Neg. LLF: 74.04512983131487
Iteration: 11, Func. Count: 95, Neg. LLF: 74.0451298542853
Optimization terminated successfully (Exit mode 0)
Current function value: 74.04512983131487
Iterations: 11
Function evaluations: 95
Gradient evaluations: 11
Iteration: 1, Func. Count: 10, Neg. LLF: 2058235.9035180171
Iteration: 2, Func. Count: 21, Neg. LLF: 31428.061274265223
Iteration: 3, Func. Count: 31, Neg. LLF: 83.36458053819199
Iteration: 4, Func. Count: 41, Neg. LLF: 74.6447802489357
Iteration: 5, Func. Count: 51, Neg. LLF: 74.09334824647411
Iteration: 6, Func. Count: 60, Neg. LLF: 74.10836196935887
Iteration: 7, Func. Count: 70, Neg. LLF: 74.04594619942523
Iteration: 8, Func. Count: 79, Neg. LLF: 74.0454045006774
Iteration: 9, Func. Count: 88, Neg. LLF: 74.0451721051616
Iteration: 10, Func. Count: 97, Neg. LLF: 74.04512951400775
Iteration: 11, Func. Count: 105, Neg. LLF: 74.04512953515248
Optimization terminated successfully (Exit mode 0)
Current function value: 74.04512951400775
Iterations: 11
Function evaluations: 105
Gradient evaluations: 11
Iteration: 1, Func. Count: 7, Neg. LLF: 143.21323869378637
Iteration: 2, Func. Count: 17, Neg. LLF: 130.4630331983922
Iteration: 3, Func. Count: 25, Neg. LLF: 185.87184985209976
Iteration: 4, Func. Count: 32, Neg. LLF: 73.83470079563182
Iteration: 5, Func. Count: 38, Neg. LLF: 78.08007649665043
Iteration: 6, Func. Count: 45, Neg. LLF: 73.71015251286471
Iteration: 7, Func. Count: 52, Neg. LLF: 73.55765733762587
Iteration: 8, Func. Count: 58, Neg. LLF: 73.55272484299375
Iteration: 9, Func. Count: 64, Neg. LLF: 73.55213090815528
Iteration: 10, Func. Count: 70, Neg. LLF: 73.55201520088659
Iteration: 11, Func. Count: 76, Neg. LLF: 73.55198935804395
Iteration: 12, Func. Count: 82, Neg. LLF: 73.5519864137511
Iteration: 13, Func. Count: 87, Neg. LLF: 73.55198636265594
Optimization terminated successfully (Exit mode 0)
Current function value: 73.5519864137511
Iterations: 13
Function evaluations: 87
Gradient evaluations: 13
Iteration: 1, Func. Count: 8, Neg. LLF: 66873218.26509346
Iteration: 2, Func. Count: 17, Neg. LLF: 1900.181040828282
Iteration: 3, Func. Count: 25, Neg. LLF: 87.69088283916662
Iteration: 4, Func. Count: 34, Neg. LLF: 73.80483405849989
Iteration: 5, Func. Count: 41, Neg. LLF: 73.64376323650728
Iteration: 6, Func. Count: 48, Neg. LLF: 73.56196100017105
Iteration: 7, Func. Count: 55, Neg. LLF: 73.55319365272891
Iteration: 8, Func. Count: 62, Neg. LLF: 73.55199896765768
Iteration: 9, Func. Count: 69, Neg. LLF: 73.55198851380618
Iteration: 10, Func. Count: 76, Neg. LLF: 73.5519865177177
Iteration: 11, Func. Count: 82, Neg. LLF: 73.55198653163231
Optimization terminated successfully (Exit mode 0)
Current function value: 73.5519865177177
Iterations: 11
Function evaluations: 82
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 72292029.01190487
Iteration: 2, Func. Count: 19, Neg. LLF: 7559621.609682324
Iteration: 3, Func. Count: 28, Neg. LLF: 86.60177126423582
Iteration: 4, Func. Count: 38, Neg. LLF: 73.3341234478984
Iteration: 5, Func. Count: 46, Neg. LLF: 72.87733282026203
Iteration: 6, Func. Count: 54, Neg. LLF: 72.86653430977697
Iteration: 7, Func. Count: 63, Neg. LLF: 72.7415532098486
Iteration: 8, Func. Count: 71, Neg. LLF: 72.73893784851822
Iteration: 9, Func. Count: 79, Neg. LLF: 72.73887104518582
Iteration: 10, Func. Count: 87, Neg. LLF: 72.73886991347176
Iteration: 11, Func. Count: 94, Neg. LLF: 72.73886991344135
Optimization terminated successfully (Exit mode 0)
Current function value: 72.73886991347176
Iterations: 11
Function evaluations: 94
Gradient evaluations: 11
Iteration: 1, Func. Count: 10, Neg. LLF: 82293332.51944488
Iteration: 2, Func. Count: 21, Neg. LLF: 7235017.264283137
Iteration: 3, Func. Count: 31, Neg. LLF: 86.40732278615955
Iteration: 4, Func. Count: 42, Neg. LLF: 73.23547453878747
Iteration: 5, Func. Count: 51, Neg. LLF: 72.981555002265
Iteration: 6, Func. Count: 60, Neg. LLF: 72.83976781008994
Iteration: 7, Func. Count: 69, Neg. LLF: 72.74421879389091
Iteration: 8, Func. Count: 78, Neg. LLF: 72.74067883894546
Iteration: 9, Func. Count: 87, Neg. LLF: 72.73903994156476
Iteration: 10, Func. Count: 96, Neg. LLF: 72.73890785238467
Iteration: 11, Func. Count: 105, Neg. LLF: 72.73886963109616
Iteration: 12, Func. Count: 113, Neg. LLF: 72.73886968059244
Optimization terminated successfully (Exit mode 0)
Current function value: 72.73886963109616
Iterations: 12
Function evaluations: 113
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 83189664.73064178
Iteration: 2, Func. Count: 23, Neg. LLF: 7098617.237686725
Iteration: 3, Func. Count: 34, Neg. LLF: 86.40382573375416
Iteration: 4, Func. Count: 46, Neg. LLF: 73.27568053479769
Iteration: 5, Func. Count: 56, Neg. LLF: 72.95639364712376
Iteration: 6, Func. Count: 66, Neg. LLF: 72.95569514557091
Iteration: 7, Func. Count: 77, Neg. LLF: 72.74099648266895
Iteration: 8, Func. Count: 87, Neg. LLF: 72.74054351134114
Iteration: 9, Func. Count: 98, Neg. LLF: 72.7389846975516
Iteration: 10, Func. Count: 108, Neg. LLF: 72.73886975344723
Iteration: 11, Func. Count: 117, Neg. LLF: 72.73886978604996
Optimization terminated successfully (Exit mode 0)
Current function value: 72.73886975344723
Iterations: 11
Function evaluations: 117
Gradient evaluations: 11
Iteration: 1, Func. Count: 8, Neg. LLF: 131.3371939022049
Iteration: 2, Func. Count: 19, Neg. LLF: 123.68454231483481
Iteration: 3, Func. Count: 28, Neg. LLF: 3661702.8303908077
Iteration: 4, Func. Count: 36, Neg. LLF: 73.06620910444163
Iteration: 5, Func. Count: 43, Neg. LLF: 73.30476984616067
Iteration: 6, Func. Count: 51, Neg. LLF: 73.00874420151739
Iteration: 7, Func. Count: 58, Neg. LLF: 72.99709820968665
Iteration: 8, Func. Count: 65, Neg. LLF: 72.99637697213171
Iteration: 9, Func. Count: 72, Neg. LLF: 72.99618295440969
Iteration: 10, Func. Count: 79, Neg. LLF: 72.99617993361922
Iteration: 11, Func. Count: 85, Neg. LLF: 72.99617993361566
Optimization terminated successfully (Exit mode 0)
Current function value: 72.99617993361922
Iterations: 11
Function evaluations: 85
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 5272034.774715549
Iteration: 2, Func. Count: 19, Neg. LLF: 2238714.6912550577
Iteration: 3, Func. Count: 28, Neg. LLF: 73.15982836382035
Iteration: 4, Func. Count: 36, Neg. LLF: 73.03508009115268
Iteration: 5, Func. Count: 44, Neg. LLF: 74.15395214860308
Iteration: 6, Func. Count: 53, Neg. LLF: 72.99679893285592
Iteration: 7, Func. Count: 61, Neg. LLF: 72.99620561201907
Iteration: 8, Func. Count: 69, Neg. LLF: 72.9961807582461
Iteration: 9, Func. Count: 77, Neg. LLF: 72.9961800107293
Optimization terminated successfully (Exit mode 0)
Current function value: 72.9961800107293
Iterations: 9
Function evaluations: 77
Gradient evaluations: 9
Iteration: 1, Func. Count: 10, Neg. LLF: 5614217.265632297
Iteration: 2, Func. Count: 21, Neg. LLF: 2131702.397946547
Iteration: 3, Func. Count: 31, Neg. LLF: 74.76355080372352
Iteration: 4, Func. Count: 41, Neg. LLF: 73.9571914845153
Iteration: 5, Func. Count: 51, Neg. LLF: 73.43161058678811
Iteration: 6, Func. Count: 61, Neg. LLF: 72.86103644890655
Iteration: 7, Func. Count: 70, Neg. LLF: 105.3324048475193
Iteration: 8, Func. Count: 80, Neg. LLF: 73.35916901290189
Iteration: 9, Func. Count: 90, Neg. LLF: 72.73888728380493
Iteration: 10, Func. Count: 100, Neg. LLF: 72.66159167676908
Iteration: 11, Func. Count: 109, Neg. LLF: 72.66007281037585
Iteration: 12, Func. Count: 118, Neg. LLF: 72.65997544298891
Iteration: 13, Func. Count: 127, Neg. LLF: 72.65996923561808
Iteration: 14, Func. Count: 136, Neg. LLF: 72.65996776522755
Iteration: 15, Func. Count: 144, Neg. LLF: 72.65996776519233
Optimization terminated successfully (Exit mode 0)
Current function value: 72.65996776522755
Iterations: 15
Function evaluations: 144
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 6250078.111991513
Iteration: 2, Func. Count: 23, Neg. LLF: 2000185.5230671703
Iteration: 3, Func. Count: 34, Neg. LLF: 73.47413310126741
Iteration: 4, Func. Count: 44, Neg. LLF: 81.89353962585182
Iteration: 5, Func. Count: 56, Neg. LLF: 267.8151944768557
Iteration: 6, Func. Count: 67, Neg. LLF: 73.17243180507647
Iteration: 7, Func. Count: 78, Neg. LLF: 73.00929013179642
Iteration: 8, Func. Count: 89, Neg. LLF: 72.66561245102916
Iteration: 9, Func. Count: 99, Neg. LLF: 72.66175460551631
Iteration: 10, Func. Count: 109, Neg. LLF: 72.6603739903902
Iteration: 11, Func. Count: 119, Neg. LLF: 72.66005561343522
Iteration: 12, Func. Count: 129, Neg. LLF: 72.65998616896039
Iteration: 13, Func. Count: 139, Neg. LLF: 72.65996783821271
Iteration: 14, Func. Count: 148, Neg. LLF: 72.65996788147946
Optimization terminated successfully (Exit mode 0)
Current function value: 72.65996783821271
Iterations: 14
Function evaluations: 148
Gradient evaluations: 14
Iteration: 1, Func. Count: 12, Neg. LLF: 6310277.1342161065
Iteration: 2, Func. Count: 25, Neg. LLF: 2001502.7956098244
Iteration: 3, Func. Count: 37, Neg. LLF: 81.75838877813455
Iteration: 4, Func. Count: 49, Neg. LLF: 73.28169120018755
Iteration: 5, Func. Count: 60, Neg. LLF: 73.02529010752643
Iteration: 6, Func. Count: 71, Neg. LLF: 73.19102118300079
Iteration: 7, Func. Count: 83, Neg. LLF: 74.66247749493346
Iteration: 8, Func. Count: 95, Neg. LLF: 72.69912556055857
Iteration: 9, Func. Count: 106, Neg. LLF: 72.66603097331226
Iteration: 10, Func. Count: 117, Neg. LLF: 72.66057006757543
Iteration: 11, Func. Count: 128, Neg. LLF: 72.66001308097508
Iteration: 12, Func. Count: 139, Neg. LLF: 72.65997435371418
Iteration: 13, Func. Count: 150, Neg. LLF: 72.659967773472
Iteration: 14, Func. Count: 160, Neg. LLF: 72.65996779414618
Optimization terminated successfully (Exit mode 0)
Current function value: 72.659967773472
Iterations: 14
Function evaluations: 160
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 139.37235824844177
Iteration: 2, Func. Count: 20, Neg. LLF: 129.31353247630722
Iteration: 3, Func. Count: 30, Neg. LLF: 2590147.9653803115
Iteration: 4, Func. Count: 39, Neg. LLF: 73.16113146846087
Iteration: 5, Func. Count: 47, Neg. LLF: 73.19970590225019
Iteration: 6, Func. Count: 56, Neg. LLF: 73.05621605531621
Iteration: 7, Func. Count: 65, Neg. LLF: 72.99752145373401
Iteration: 8, Func. Count: 73, Neg. LLF: 72.99642418830514
Iteration: 9, Func. Count: 81, Neg. LLF: 72.99618147755544
Iteration: 10, Func. Count: 89, Neg. LLF: 72.9961799407149
Iteration: 11, Func. Count: 96, Neg. LLF: 72.99617994248979
Optimization terminated successfully (Exit mode 0)
Current function value: 72.9961799407149
Iterations: 11
Function evaluations: 96
Gradient evaluations: 11
Iteration: 1, Func. Count: 10, Neg. LLF: 5343559.728625405
Iteration: 2, Func. Count: 21, Neg. LLF: 2224083.1219172436
Iteration: 3, Func. Count: 31, Neg. LLF: 73.12947604638961
Iteration: 4, Func. Count: 40, Neg. LLF: 73.72898159001214
Iteration: 5, Func. Count: 50, Neg. LLF: 137.83529846740004
Iteration: 6, Func. Count: 60, Neg. LLF: 72.99697336577287
Iteration: 7, Func. Count: 69, Neg. LLF: 72.99620476284835
Iteration: 8, Func. Count: 78, Neg. LLF: 72.99618313624207
Iteration: 9, Func. Count: 87, Neg. LLF: 72.9961799348001
Iteration: 10, Func. Count: 95, Neg. LLF: 72.99617994724144
Optimization terminated successfully (Exit mode 0)
Current function value: 72.9961799348001
Iterations: 10
Function evaluations: 95
Gradient evaluations: 10
Iteration: 1, Func. Count: 11, Neg. LLF: 5668711.842464257
Iteration: 2, Func. Count: 23, Neg. LLF: 2133112.016149371
Iteration: 3, Func. Count: 34, Neg. LLF: 75.34286904496298
Iteration: 4, Func. Count: 45, Neg. LLF: 73.82558505151627
Iteration: 5, Func. Count: 56, Neg. LLF: 73.31510451313615
Iteration: 6, Func. Count: 67, Neg. LLF: 72.78923513200304
Iteration: 7, Func. Count: 77, Neg. LLF: 86.8191825823091
Iteration: 8, Func. Count: 88, Neg. LLF: 72.90832643960515
Iteration: 9, Func. Count: 99, Neg. LLF: 72.66866512536714
Iteration: 10, Func. Count: 109, Neg. LLF: 72.66050222727829
Iteration: 11, Func. Count: 119, Neg. LLF: 72.65999310093474
Iteration: 12, Func. Count: 129, Neg. LLF: 72.65996982211772
Iteration: 13, Func. Count: 139, Neg. LLF: 72.65996794923036
Iteration: 14, Func. Count: 148, Neg. LLF: 72.65996794921307
Optimization terminated successfully (Exit mode 0)
Current function value: 72.65996794923036
Iterations: 14
Function evaluations: 148
Gradient evaluations: 14
Iteration: 1, Func. Count: 12, Neg. LLF: 6323188.890924899
Iteration: 2, Func. Count: 25, Neg. LLF: 2003140.9642899835
Iteration: 3, Func. Count: 37, Neg. LLF: 73.86198158818924
Iteration: 4, Func. Count: 48, Neg. LLF: 76.26646425348979
Iteration: 5, Func. Count: 60, Neg. LLF: 6362990.484435031
Iteration: 6, Func. Count: 72, Neg. LLF: 73.09004949321502
Iteration: 7, Func. Count: 84, Neg. LLF: 81.7318319247715
Iteration: 8, Func. Count: 96, Neg. LLF: 72.77989761074258
Iteration: 9, Func. Count: 108, Neg. LLF: 72.6639540405864
Iteration: 10, Func. Count: 119, Neg. LLF: 72.66112079807375
Iteration: 11, Func. Count: 130, Neg. LLF: 72.66031956095725
Iteration: 12, Func. Count: 141, Neg. LLF: 72.66013885022876
Iteration: 13, Func. Count: 152, Neg. LLF: 72.65998928769115
Iteration: 14, Func. Count: 163, Neg. LLF: 72.6599692269262
Iteration: 15, Func. Count: 174, Neg. LLF: 72.65996749588655
Iteration: 16, Func. Count: 184, Neg. LLF: 72.65996753919265
Optimization terminated successfully (Exit mode 0)
Current function value: 72.65996749588655
Iterations: 16
Function evaluations: 184
Gradient evaluations: 16
Iteration: 1, Func. Count: 13, Neg. LLF: 6394945.13390161
Iteration: 2, Func. Count: 27, Neg. LLF: 2004902.536592028
Iteration: 3, Func. Count: 40, Neg. LLF: 85.58817225818756
Iteration: 4, Func. Count: 53, Neg. LLF: 73.11420525467605
Iteration: 5, Func. Count: 65, Neg. LLF: 73.04983034279068
Iteration: 6, Func. Count: 78, Neg. LLF: 73.16572773650682
Iteration: 7, Func. Count: 91, Neg. LLF: 73.70293311757109
Iteration: 8, Func. Count: 104, Neg. LLF: 72.69140845404776
Iteration: 9, Func. Count: 117, Neg. LLF: 72.66014168916462
Iteration: 10, Func. Count: 129, Neg. LLF: 72.65999285119199
Iteration: 11, Func. Count: 141, Neg. LLF: 72.65997099886286
Iteration: 12, Func. Count: 153, Neg. LLF: 72.65996760681915
Iteration: 13, Func. Count: 164, Neg. LLF: 72.6599676275283
Optimization terminated successfully (Exit mode 0)
Current function value: 72.65996760681915
Iterations: 13
Function evaluations: 164
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 146.5215333894099
Iteration: 2, Func. Count: 22, Neg. LLF: 126.48957004824749
Iteration: 3, Func. Count: 33, Neg. LLF: 2832113.583528018
Iteration: 4, Func. Count: 43, Neg. LLF: 73.79042690495294
Iteration: 5, Func. Count: 52, Neg. LLF: 73.16542576378671
Iteration: 6, Func. Count: 61, Neg. LLF: 73.17761172934217
Iteration: 7, Func. Count: 71, Neg. LLF: 73.00261361416435
Iteration: 8, Func. Count: 80, Neg. LLF: 72.99726845402598
Iteration: 9, Func. Count: 89, Neg. LLF: 72.99646783716629
Iteration: 10, Func. Count: 98, Neg. LLF: 72.99618061346307
Iteration: 11, Func. Count: 107, Neg. LLF: 72.99617999592994
Optimization terminated successfully (Exit mode 0)
Current function value: 72.99617999592994
Iterations: 11
Function evaluations: 107
Gradient evaluations: 11
Iteration: 1, Func. Count: 11, Neg. LLF: 5379027.63494224
Iteration: 2, Func. Count: 23, Neg. LLF: 2222211.0816327003
Iteration: 3, Func. Count: 34, Neg. LLF: 73.14179245452485
Iteration: 4, Func. Count: 44, Neg. LLF: 78.98239549011386
Iteration: 5, Func. Count: 56, Neg. LLF: 74.08153893005294
Iteration: 6, Func. Count: 67, Neg. LLF: 72.99860737725459
Iteration: 7, Func. Count: 77, Neg. LLF: 72.99666382119679
Iteration: 8, Func. Count: 87, Neg. LLF: 72.99623892284808
Iteration: 9, Func. Count: 97, Neg. LLF: 72.99618099948668
Iteration: 10, Func. Count: 107, Neg. LLF: 72.99617992254754
Iteration: 11, Func. Count: 116, Neg. LLF: 72.99617993499562
Optimization terminated successfully (Exit mode 0)
Current function value: 72.99617992254754
Iterations: 11
Function evaluations: 116
Gradient evaluations: 11
Iteration: 1, Func. Count: 12, Neg. LLF: 5709857.068916764
Iteration: 2, Func. Count: 25, Neg. LLF: 2131526.127742671
Iteration: 3, Func. Count: 37, Neg. LLF: 75.77728854395237
Iteration: 4, Func. Count: 49, Neg. LLF: 73.7979033453843
Iteration: 5, Func. Count: 61, Neg. LLF: 73.21345962570551
Iteration: 6, Func. Count: 72, Neg. LLF: 72.85069305173887
Iteration: 7, Func. Count: 83, Neg. LLF: 87.16958594399274
Iteration: 8, Func. Count: 95, Neg. LLF: 73.9377109981936
Iteration: 9, Func. Count: 107, Neg. LLF: 72.97405711019334
Iteration: 10, Func. Count: 119, Neg. LLF: 72.6801110982043
Iteration: 11, Func. Count: 131, Neg. LLF: 72.6603744524783
Iteration: 12, Func. Count: 142, Neg. LLF: 72.66010668199846
Iteration: 13, Func. Count: 153, Neg. LLF: 72.65998674134084
Iteration: 14, Func. Count: 164, Neg. LLF: 72.65996749980282
Iteration: 15, Func. Count: 174, Neg. LLF: 72.65996749979921
Optimization terminated successfully (Exit mode 0)
Current function value: 72.65996749980282
Iterations: 15
Function evaluations: 174
Gradient evaluations: 15
Iteration: 1, Func. Count: 13, Neg. LLF: 6370488.3157787
Iteration: 2, Func. Count: 27, Neg. LLF: 2002848.95748796
Iteration: 3, Func. Count: 40, Neg. LLF: 74.24575405870782
Iteration: 4, Func. Count: 53, Neg. LLF: 74.2475910711968
Iteration: 5, Func. Count: 66, Neg. LLF: 74.14795295548716
Iteration: 6, Func. Count: 80, Neg. LLF: 72.83185100591221
Iteration: 7, Func. Count: 92, Neg. LLF: 122.18326080395292
Iteration: 8, Func. Count: 105, Neg. LLF: 73.03958495935676
Iteration: 9, Func. Count: 118, Neg. LLF: 72.67908424123162
Iteration: 10, Func. Count: 130, Neg. LLF: 72.66160388042273
Iteration: 11, Func. Count: 142, Neg. LLF: 72.6600823316241
Iteration: 12, Func. Count: 154, Neg. LLF: 72.65997074664736
Iteration: 13, Func. Count: 166, Neg. LLF: 72.65996806875498
Iteration: 14, Func. Count: 177, Neg. LLF: 72.65996811203559
Optimization terminated successfully (Exit mode 0)
Current function value: 72.65996806875498
Iterations: 14
Function evaluations: 177
Gradient evaluations: 14
Iteration: 1, Func. Count: 14, Neg. LLF: 6442290.925174783
Iteration: 2, Func. Count: 29, Neg. LLF: 2005448.079593953
Iteration: 3, Func. Count: 43, Neg. LLF: 88.2967378705502
Iteration: 4, Func. Count: 57, Neg. LLF: 73.09715449176286
Iteration: 5, Func. Count: 70, Neg. LLF: 72.99916137327168
Iteration: 6, Func. Count: 83, Neg. LLF: 73.56030323815648
Iteration: 7, Func. Count: 97, Neg. LLF: 72.94477288204158
Iteration: 8, Func. Count: 111, Neg. LLF: 72.8419908513054
Iteration: 9, Func. Count: 125, Neg. LLF: 72.66512766878773
Iteration: 10, Func. Count: 138, Neg. LLF: 72.66023841488942
Iteration: 11, Func. Count: 151, Neg. LLF: 72.65998716899152
Iteration: 12, Func. Count: 164, Neg. LLF: 72.65997105991454
Iteration: 13, Func. Count: 177, Neg. LLF: 72.65996775663201
Iteration: 14, Func. Count: 189, Neg. LLF: 72.65996777731743
Optimization terminated successfully (Exit mode 0)
Current function value: 72.65996775663201
Iterations: 14
Function evaluations: 189
Gradient evaluations: 14
Iteration: 1, Func. Count: 7, Neg. LLF: 121.08882971738404
Iteration: 2, Func. Count: 17, Neg. LLF: 185.4995316235266
Iteration: 3, Func. Count: 25, Neg. LLF: 261.423880242614
Iteration: 4, Func. Count: 32, Neg. LLF: 763.9144121010854
Iteration: 5, Func. Count: 40, Neg. LLF: 73.5972035563244
Iteration: 6, Func. Count: 46, Neg. LLF: 73.58753480279589
Iteration: 7, Func. Count: 52, Neg. LLF: 73.58709307309688
Iteration: 8, Func. Count: 58, Neg. LLF: 73.58708054434555
Iteration: 9, Func. Count: 64, Neg. LLF: 73.58707650747054
Iteration: 10, Func. Count: 69, Neg. LLF: 73.58707650743679
Optimization terminated successfully (Exit mode 0)
Current function value: 73.58707650747054
Iterations: 10
Function evaluations: 69
Gradient evaluations: 10
Iteration: 1, Func. Count: 8, Neg. LLF: 2682.6518013496266
Iteration: 2, Func. Count: 16, Neg. LLF: 3570.8343764366455
Iteration: 3, Func. Count: 25, Neg. LLF: 95.33799532848164
Iteration: 4, Func. Count: 34, Neg. LLF: 93.72889166085197
Iteration: 5, Func. Count: 42, Neg. LLF: 73.61089421316464
Iteration: 6, Func. Count: 49, Neg. LLF: 73.5889024685614
Iteration: 7, Func. Count: 56, Neg. LLF: 73.58725210175527
Iteration: 8, Func. Count: 63, Neg. LLF: 73.58712498696735
Iteration: 9, Func. Count: 70, Neg. LLF: 73.58708116592707
Iteration: 10, Func. Count: 77, Neg. LLF: 73.58707665389966
Iteration: 11, Func. Count: 83, Neg. LLF: 73.58707668394996
Optimization terminated successfully (Exit mode 0)
Current function value: 73.58707665389966
Iterations: 11
Function evaluations: 83
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 156.48551679551613
Iteration: 2, Func. Count: 18, Neg. LLF: 600.3156047127428
Iteration: 3, Func. Count: 28, Neg. LLF: 213.4151135520271
Iteration: 4, Func. Count: 38, Neg. LLF: 73.76083842226986
Iteration: 5, Func. Count: 46, Neg. LLF: 73.61632782924788
Iteration: 6, Func. Count: 54, Neg. LLF: 73.59019447992277
Iteration: 7, Func. Count: 62, Neg. LLF: 73.58738728595333
Iteration: 8, Func. Count: 70, Neg. LLF: 73.58710454811877
Iteration: 9, Func. Count: 78, Neg. LLF: 73.587079687794
Iteration: 10, Func. Count: 86, Neg. LLF: 73.58707631273015
Iteration: 11, Func. Count: 93, Neg. LLF: 73.5870763344857
Optimization terminated successfully (Exit mode 0)
Current function value: 73.58707631273015
Iterations: 11
Function evaluations: 93
Gradient evaluations: 11
Iteration: 1, Func. Count: 10, Neg. LLF: 155.53862607247663
Iteration: 2, Func. Count: 20, Neg. LLF: 1449.88582623341
Iteration: 3, Func. Count: 31, Neg. LLF: 146.67326167153755
Iteration: 4, Func. Count: 42, Neg. LLF: 79.25711519333838
Iteration: 5, Func. Count: 52, Neg. LLF: 73.59313015327903
Iteration: 6, Func. Count: 61, Neg. LLF: 73.58794869960705
Iteration: 7, Func. Count: 70, Neg. LLF: 73.58725514524404
Iteration: 8, Func. Count: 79, Neg. LLF: 73.5870816835683
Iteration: 9, Func. Count: 88, Neg. LLF: 73.58707749202009
Iteration: 10, Func. Count: 97, Neg. LLF: 73.58707629759242
Iteration: 11, Func. Count: 105, Neg. LLF: 73.58707632565412
Optimization terminated successfully (Exit mode 0)
Current function value: 73.58707629759242
Iterations: 11
Function evaluations: 105
Gradient evaluations: 11
Iteration: 1, Func. Count: 11, Neg. LLF: 151.10665578514465
Iteration: 2, Func. Count: 22, Neg. LLF: 2941031.0760276844
Iteration: 3, Func. Count: 34, Neg. LLF: 89.90683151812955
Iteration: 4, Func. Count: 45, Neg. LLF: 82.31684499430598
Iteration: 5, Func. Count: 56, Neg. LLF: 73.61912021849997
Iteration: 6, Func. Count: 66, Neg. LLF: 73.58926956016414
Iteration: 7, Func. Count: 76, Neg. LLF: 73.58718804019657
Iteration: 8, Func. Count: 86, Neg. LLF: 73.58707667485275
Iteration: 9, Func. Count: 95, Neg. LLF: 73.58707669981676
Optimization terminated successfully (Exit mode 0)
Current function value: 73.58707667485275
Iterations: 9
Function evaluations: 95
Gradient evaluations: 9
Iteration: 1, Func. Count: 8, Neg. LLF: 119.20983266950327
Iteration: 2, Func. Count: 19, Neg. LLF: 120.40237911722225
Iteration: 3, Func. Count: 28, Neg. LLF: 18067476.205411494
Iteration: 4, Func. Count: 36, Neg. LLF: 305.4701158958468
Iteration: 5, Func. Count: 44, Neg. LLF: 72.72452694771582
Iteration: 6, Func. Count: 51, Neg. LLF: 72.70573401879989
Iteration: 7, Func. Count: 58, Neg. LLF: 72.70063177889588
Iteration: 8, Func. Count: 65, Neg. LLF: 72.70035519669439
Iteration: 9, Func. Count: 72, Neg. LLF: 72.70024961932292
Iteration: 10, Func. Count: 79, Neg. LLF: 72.70024204532785
Iteration: 11, Func. Count: 85, Neg. LLF: 72.70024196522326
Optimization terminated successfully (Exit mode 0)
Current function value: 72.70024204532785
Iterations: 11
Function evaluations: 85
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 25510895.407849927
Iteration: 2, Func. Count: 18, Neg. LLF: 106.62375285384144
Iteration: 3, Func. Count: 28, Neg. LLF: 80.29610467262708
Iteration: 4, Func. Count: 38, Neg. LLF: 72.83887184002624
Iteration: 5, Func. Count: 46, Neg. LLF: 74.61508058476143
Iteration: 6, Func. Count: 55, Neg. LLF: 72.708437569925
Iteration: 7, Func. Count: 63, Neg. LLF: 72.7044565480304
Iteration: 8, Func. Count: 71, Neg. LLF: 72.70205580179838
Iteration: 9, Func. Count: 79, Neg. LLF: 72.70072244372206
Iteration: 10, Func. Count: 87, Neg. LLF: 72.70031498520711
Iteration: 11, Func. Count: 95, Neg. LLF: 72.70025238064865
Iteration: 12, Func. Count: 103, Neg. LLF: 72.70024330936481
Iteration: 13, Func. Count: 111, Neg. LLF: 72.7002418776357
Iteration: 14, Func. Count: 118, Neg. LLF: 72.70024192836452
Optimization terminated successfully (Exit mode 0)
Current function value: 72.7002418776357
Iterations: 14
Function evaluations: 118
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 23760682.809110235
Iteration: 2, Func. Count: 20, Neg. LLF: 120.16935213552922
Iteration: 3, Func. Count: 31, Neg. LLF: 81.63309168708338
Iteration: 4, Func. Count: 42, Neg. LLF: 73.82888939970013
Iteration: 5, Func. Count: 52, Neg. LLF: 72.8027380018597
Iteration: 6, Func. Count: 61, Neg. LLF: 72.7007492134469
Iteration: 7, Func. Count: 70, Neg. LLF: 72.7002610211273
Iteration: 8, Func. Count: 79, Neg. LLF: 72.70024515038217
Iteration: 9, Func. Count: 88, Neg. LLF: 72.70024201013486
Iteration: 10, Func. Count: 96, Neg. LLF: 72.70024202917672
Optimization terminated successfully (Exit mode 0)
Current function value: 72.70024201013486
Iterations: 10
Function evaluations: 96
Gradient evaluations: 10
Iteration: 1, Func. Count: 11, Neg. LLF: 23757450.872178096
Iteration: 2, Func. Count: 22, Neg. LLF: 116.77286851074882
Iteration: 3, Func. Count: 34, Neg. LLF: 78.73681231690439
Iteration: 4, Func. Count: 46, Neg. LLF: 72.73946518059168
Iteration: 5, Func. Count: 56, Neg. LLF: 78.28405871590775
Iteration: 6, Func. Count: 67, Neg. LLF: 72.70320224729393
Iteration: 7, Func. Count: 77, Neg. LLF: 72.70130915228945
Iteration: 8, Func. Count: 87, Neg. LLF: 72.70080668760994
Iteration: 9, Func. Count: 97, Neg. LLF: 72.70053091776813
Iteration: 10, Func. Count: 107, Neg. LLF: 72.70036676021952
Iteration: 11, Func. Count: 117, Neg. LLF: 72.70026266642041
Iteration: 12, Func. Count: 127, Neg. LLF: 72.70024326574129
Iteration: 13, Func. Count: 137, Neg. LLF: 72.70024182088511
Iteration: 14, Func. Count: 146, Neg. LLF: 72.70024185989087
Optimization terminated successfully (Exit mode 0)
Current function value: 72.70024182088511
Iterations: 14
Function evaluations: 146
Gradient evaluations: 14
Iteration: 1, Func. Count: 12, Neg. LLF: 23370830.11917035
Iteration: 2, Func. Count: 24, Neg. LLF: 117.47775516613734
Iteration: 3, Func. Count: 37, Neg. LLF: 77.33135339088975
Iteration: 4, Func. Count: 50, Neg. LLF: 72.78695438761405
Iteration: 5, Func. Count: 61, Neg. LLF: 73.44240850043408
Iteration: 6, Func. Count: 73, Neg. LLF: 72.7217874305151
Iteration: 7, Func. Count: 84, Neg. LLF: 72.70758400293442
Iteration: 8, Func. Count: 95, Neg. LLF: 72.70129078851905
Iteration: 9, Func. Count: 106, Neg. LLF: 72.70032465386474
Iteration: 10, Func. Count: 117, Neg. LLF: 72.70025091280469
Iteration: 11, Func. Count: 128, Neg. LLF: 72.70024316674427
Iteration: 12, Func. Count: 139, Neg. LLF: 72.70024186960744
Iteration: 13, Func. Count: 149, Neg. LLF: 72.70024190086664
Optimization terminated successfully (Exit mode 0)
Current function value: 72.70024186960744
Iterations: 13
Function evaluations: 149
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 111.87674009749762
Iteration: 2, Func. Count: 20, Neg. LLF: 120.24192514869418
Iteration: 3, Func. Count: 30, Neg. LLF: 15232803.009569997
Iteration: 4, Func. Count: 39, Neg. LLF: 120.40441975922597
Iteration: 5, Func. Count: 48, Neg. LLF: 73.47284706081273
Iteration: 6, Func. Count: 57, Neg. LLF: 72.56026096399725
Iteration: 7, Func. Count: 65, Neg. LLF: 72.86225054376077
Iteration: 8, Func. Count: 74, Neg. LLF: 72.3970650646537
Iteration: 9, Func. Count: 82, Neg. LLF: 72.39000190349049
Iteration: 10, Func. Count: 91, Neg. LLF: 72.36345392509116
Iteration: 11, Func. Count: 99, Neg. LLF: 72.35921128838916
Iteration: 12, Func. Count: 107, Neg. LLF: 72.35538493652541
Iteration: 13, Func. Count: 115, Neg. LLF: 72.35526163421636
Iteration: 14, Func. Count: 123, Neg. LLF: 72.35525862312846
Iteration: 15, Func. Count: 130, Neg. LLF: 72.35525862314871
Optimization terminated successfully (Exit mode 0)
Current function value: 72.35525862312846
Iterations: 15
Function evaluations: 130
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 7296392.133540878
Iteration: 2, Func. Count: 20, Neg. LLF: 600930.2882656046
Iteration: 3, Func. Count: 31, Neg. LLF: 121.9573453215683
Iteration: 4, Func. Count: 42, Neg. LLF: 72.85689586562495
Iteration: 5, Func. Count: 51, Neg. LLF: 72.61495385930506
Iteration: 6, Func. Count: 60, Neg. LLF: 72.52964698186447
Iteration: 7, Func. Count: 69, Neg. LLF: 72.4035122830616
Iteration: 8, Func. Count: 78, Neg. LLF: 72.37267481428091
Iteration: 9, Func. Count: 87, Neg. LLF: 72.36320743930803
Iteration: 10, Func. Count: 96, Neg. LLF: 72.35948991096393
Iteration: 11, Func. Count: 105, Neg. LLF: 72.3569268515886
Iteration: 12, Func. Count: 114, Neg. LLF: 72.35538087496924
Iteration: 13, Func. Count: 123, Neg. LLF: 72.35526313742423
Iteration: 14, Func. Count: 132, Neg. LLF: 72.35525861454138
Iteration: 15, Func. Count: 140, Neg. LLF: 72.35525868985232
Optimization terminated successfully (Exit mode 0)
Current function value: 72.35525861454138
Iterations: 15
Function evaluations: 140
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 6651657.599074026
Iteration: 2, Func. Count: 22, Neg. LLF: 700538.7189145404
Iteration: 3, Func. Count: 34, Neg. LLF: 2404109.997678056
Iteration: 4, Func. Count: 46, Neg. LLF: 73.0257256002445
Iteration: 5, Func. Count: 56, Neg. LLF: 72.5017606259831
Iteration: 6, Func. Count: 66, Neg. LLF: 72.67219733153087
Iteration: 7, Func. Count: 77, Neg. LLF: 72.37991712707047
Iteration: 8, Func. Count: 87, Neg. LLF: 72.36721351998166
Iteration: 9, Func. Count: 97, Neg. LLF: 72.35772423666936
Iteration: 10, Func. Count: 107, Neg. LLF: 72.35549653955448
Iteration: 11, Func. Count: 117, Neg. LLF: 72.35537601961563
Iteration: 12, Func. Count: 127, Neg. LLF: 72.35526208829313
Iteration: 13, Func. Count: 137, Neg. LLF: 72.35525824399267
Iteration: 14, Func. Count: 146, Neg. LLF: 72.35525829908988
Optimization terminated successfully (Exit mode 0)
Current function value: 72.35525824399267
Iterations: 14
Function evaluations: 146
Gradient evaluations: 14
Iteration: 1, Func. Count: 12, Neg. LLF: 6617918.4441283895
Iteration: 2, Func. Count: 24, Neg. LLF: 825258.8452697058
Iteration: 3, Func. Count: 37, Neg. LLF: 88.47270247956119
Iteration: 4, Func. Count: 49, Neg. LLF: 72.82976265444803
Iteration: 5, Func. Count: 60, Neg. LLF: 72.4599764824191
Iteration: 6, Func. Count: 71, Neg. LLF: 73.5482232246574
Iteration: 7, Func. Count: 83, Neg. LLF: 72.41346166143663
Iteration: 8, Func. Count: 95, Neg. LLF: 72.35607398306787
Iteration: 9, Func. Count: 106, Neg. LLF: 72.35543235289106
Iteration: 10, Func. Count: 117, Neg. LLF: 72.35535697482736
Iteration: 11, Func. Count: 128, Neg. LLF: 72.35527770978804
Iteration: 12, Func. Count: 139, Neg. LLF: 72.3552605833012
Iteration: 13, Func. Count: 150, Neg. LLF: 72.35525826063758
Iteration: 14, Func. Count: 160, Neg. LLF: 72.35525835060567
Optimization terminated successfully (Exit mode 0)
Current function value: 72.35525826063758
Iterations: 14
Function evaluations: 160
Gradient evaluations: 14
Iteration: 1, Func. Count: 13, Neg. LLF: 6477762.130278549
Iteration: 2, Func. Count: 26, Neg. LLF: 873696.4295965638
Iteration: 3, Func. Count: 40, Neg. LLF: 2974343.2413868085
Iteration: 4, Func. Count: 54, Neg. LLF: 73.2036233997425
Iteration: 5, Func. Count: 66, Neg. LLF: 73.59355570415612
Iteration: 6, Func. Count: 79, Neg. LLF: 76.52049099320553
Iteration: 7, Func. Count: 92, Neg. LLF: 72.36452908985756
Iteration: 8, Func. Count: 104, Neg. LLF: 72.35717817516941
Iteration: 9, Func. Count: 116, Neg. LLF: 72.35601773145456
Iteration: 10, Func. Count: 128, Neg. LLF: 72.35568265351492
Iteration: 11, Func. Count: 140, Neg. LLF: 72.35535890204272
Iteration: 12, Func. Count: 152, Neg. LLF: 72.35527141346847
Iteration: 13, Func. Count: 164, Neg. LLF: 72.35525873080059
Iteration: 14, Func. Count: 175, Neg. LLF: 72.35525874713532
Optimization terminated successfully (Exit mode 0)
Current function value: 72.35525873080059
Iterations: 14
Function evaluations: 175
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 109.73124574664469
Iteration: 2, Func. Count: 22, Neg. LLF: 116.96735370992666
Iteration: 3, Func. Count: 33, Neg. LLF: 15242894.978343405
Iteration: 4, Func. Count: 43, Neg. LLF: 1498208.827474779
Iteration: 5, Func. Count: 53, Neg. LLF: 72.63783063777016
Iteration: 6, Func. Count: 62, Neg. LLF: 72.37802090888285
Iteration: 7, Func. Count: 71, Neg. LLF: 79.61496986173086
Iteration: 8, Func. Count: 81, Neg. LLF: 72.27165398879102
Iteration: 9, Func. Count: 90, Neg. LLF: 72.2544405728912
Iteration: 10, Func. Count: 99, Neg. LLF: 72.25119340489832
Iteration: 11, Func. Count: 108, Neg. LLF: 72.24823254797926
Iteration: 12, Func. Count: 117, Neg. LLF: 72.24712023166694
Iteration: 13, Func. Count: 126, Neg. LLF: 72.24690369632468
Iteration: 14, Func. Count: 135, Neg. LLF: 72.2468827672479
Iteration: 15, Func. Count: 144, Neg. LLF: 72.24688043612055
Iteration: 16, Func. Count: 153, Neg. LLF: 72.24687964468184
Optimization terminated successfully (Exit mode 0)
Current function value: 72.24687964468184
Iterations: 16
Function evaluations: 153
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 6133707.386364116
Iteration: 2, Func. Count: 22, Neg. LLF: 124.25183548260183
Iteration: 3, Func. Count: 33, Neg. LLF: 134.17495247033145
Iteration: 4, Func. Count: 44, Neg. LLF: 77.82683094045689
Iteration: 5, Func. Count: 55, Neg. LLF: 73.0789910426865
Iteration: 6, Func. Count: 65, Neg. LLF: 72.54088382517008
Iteration: 7, Func. Count: 75, Neg. LLF: 91.41201806745569
Iteration: 8, Func. Count: 86, Neg. LLF: 72.34965762770118
Iteration: 9, Func. Count: 97, Neg. LLF: 72.27019868807106
Iteration: 10, Func. Count: 107, Neg. LLF: 72.25400970398019
Iteration: 11, Func. Count: 117, Neg. LLF: 72.25004985920985
Iteration: 12, Func. Count: 127, Neg. LLF: 72.24760006657684
Iteration: 13, Func. Count: 137, Neg. LLF: 72.24710961377696
Iteration: 14, Func. Count: 147, Neg. LLF: 72.24688893994231
Iteration: 15, Func. Count: 157, Neg. LLF: 72.24687979882775
Iteration: 16, Func. Count: 166, Neg. LLF: 72.24687986200557
Optimization terminated successfully (Exit mode 0)
Current function value: 72.24687979882775
Iterations: 16
Function evaluations: 166
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 5546483.799266563
Iteration: 2, Func. Count: 24, Neg. LLF: 124.04147100489607
Iteration: 3, Func. Count: 36, Neg. LLF: 7499273.701757036
Iteration: 4, Func. Count: 48, Neg. LLF: 75.29390793980123
Iteration: 5, Func. Count: 60, Neg. LLF: 73.0648075904149
Iteration: 6, Func. Count: 72, Neg. LLF: 72.36909203670857
Iteration: 7, Func. Count: 83, Neg. LLF: 76.33298000715426
Iteration: 8, Func. Count: 96, Neg. LLF: 72.2656724916538
Iteration: 9, Func. Count: 107, Neg. LLF: 72.25600759945586
Iteration: 10, Func. Count: 118, Neg. LLF: 72.24861319175028
Iteration: 11, Func. Count: 129, Neg. LLF: 72.24718842611334
Iteration: 12, Func. Count: 140, Neg. LLF: 72.24694512537585
Iteration: 13, Func. Count: 151, Neg. LLF: 72.24688305360162
Iteration: 14, Func. Count: 162, Neg. LLF: 72.2468799532168
Iteration: 15, Func. Count: 172, Neg. LLF: 72.2468799787958
Optimization terminated successfully (Exit mode 0)
Current function value: 72.2468799532168
Iterations: 15
Function evaluations: 172
Gradient evaluations: 15
Iteration: 1, Func. Count: 13, Neg. LLF: 5531494.66013245
Iteration: 2, Func. Count: 26, Neg. LLF: 134.15441165851976
Iteration: 3, Func. Count: 40, Neg. LLF: 7449126.665270477
Iteration: 4, Func. Count: 53, Neg. LLF: 72.73553721186508
Iteration: 5, Func. Count: 65, Neg. LLF: 73.32255868982229
Iteration: 6, Func. Count: 78, Neg. LLF: 73.89037000710357
Iteration: 7, Func. Count: 91, Neg. LLF: 72.35719802974657
Iteration: 8, Func. Count: 103, Neg. LLF: 72.9766452678402
Iteration: 9, Func. Count: 116, Neg. LLF: 72.28481929879658
Iteration: 10, Func. Count: 128, Neg. LLF: 72.26271045523335
Iteration: 11, Func. Count: 140, Neg. LLF: 72.24873141012174
Iteration: 12, Func. Count: 152, Neg. LLF: 72.24749654379742
Iteration: 13, Func. Count: 164, Neg. LLF: 72.24729382035494
Iteration: 14, Func. Count: 176, Neg. LLF: 72.24688300303507
Iteration: 15, Func. Count: 188, Neg. LLF: 72.24687977756503
Iteration: 16, Func. Count: 199, Neg. LLF: 72.24687985723101
Optimization terminated successfully (Exit mode 0)
Current function value: 72.24687977756503
Iterations: 16
Function evaluations: 199
Gradient evaluations: 16
Iteration: 1, Func. Count: 14, Neg. LLF: 5421397.314259987
Iteration: 2, Func. Count: 28, Neg. LLF: 139.60535829745018
Iteration: 3, Func. Count: 42, Neg. LLF: 7583694.700930083
Iteration: 4, Func. Count: 56, Neg. LLF: 77.73346559507158
Iteration: 5, Func. Count: 70, Neg. LLF: 73.28440708257746
Iteration: 6, Func. Count: 84, Neg. LLF: 72.35654425805572
Iteration: 7, Func. Count: 97, Neg. LLF: 77.41086518717385
Iteration: 8, Func. Count: 112, Neg. LLF: 72.27642443060141
Iteration: 9, Func. Count: 125, Neg. LLF: 72.26062684593637
Iteration: 10, Func. Count: 138, Neg. LLF: 72.25194852364909
Iteration: 11, Func. Count: 151, Neg. LLF: 72.24856107317777
Iteration: 12, Func. Count: 164, Neg. LLF: 72.24694372762015
Iteration: 13, Func. Count: 177, Neg. LLF: 72.24688791924437
Iteration: 14, Func. Count: 190, Neg. LLF: 72.24688016141711
Iteration: 15, Func. Count: 202, Neg. LLF: 72.24688017938759
Optimization terminated successfully (Exit mode 0)
Current function value: 72.24688016141711
Iterations: 15
Function evaluations: 202
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 111.53803359578751
Iteration: 2, Func. Count: 24, Neg. LLF: 119.86575248998057
Iteration: 3, Func. Count: 36, Neg. LLF: 15021300.270574097
Iteration: 4, Func. Count: 47, Neg. LLF: 1507520.5665621783
Iteration: 5, Func. Count: 58, Neg. LLF: 72.53976548647906
Iteration: 6, Func. Count: 68, Neg. LLF: 72.31279499394174
Iteration: 7, Func. Count: 78, Neg. LLF: 76.4439735098985
Iteration: 8, Func. Count: 90, Neg. LLF: 72.27406840311879
Iteration: 9, Func. Count: 100, Neg. LLF: 72.25625371695614
Iteration: 10, Func. Count: 110, Neg. LLF: 72.2502883767245
Iteration: 11, Func. Count: 120, Neg. LLF: 72.24800561495132
Iteration: 12, Func. Count: 130, Neg. LLF: 72.24695996521478
Iteration: 13, Func. Count: 140, Neg. LLF: 72.24689402763454
Iteration: 14, Func. Count: 150, Neg. LLF: 72.24688143130346
Iteration: 15, Func. Count: 160, Neg. LLF: 72.24687966505485
Iteration: 16, Func. Count: 169, Neg. LLF: 72.24687970420597
Optimization terminated successfully (Exit mode 0)
Current function value: 72.24687966505485
Iterations: 16
Function evaluations: 169
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 6168881.7055409895
Iteration: 2, Func. Count: 24, Neg. LLF: 124.39936137978356
Iteration: 3, Func. Count: 36, Neg. LLF: 151.02863461475926
Iteration: 4, Func. Count: 48, Neg. LLF: 77.60681855962613
Iteration: 5, Func. Count: 60, Neg. LLF: 73.0600411608974
Iteration: 6, Func. Count: 71, Neg. LLF: 72.63964826541
Iteration: 7, Func. Count: 82, Neg. LLF: 93.79579708407466
Iteration: 8, Func. Count: 94, Neg. LLF: 72.34145001041219
Iteration: 9, Func. Count: 105, Neg. LLF: 72.27411792307906
Iteration: 10, Func. Count: 116, Neg. LLF: 72.25559965965707
Iteration: 11, Func. Count: 127, Neg. LLF: 72.25302883097996
Iteration: 12, Func. Count: 138, Neg. LLF: 72.24837611969326
Iteration: 13, Func. Count: 149, Neg. LLF: 72.2476104811239
Iteration: 14, Func. Count: 160, Neg. LLF: 72.24693341585713
Iteration: 15, Func. Count: 171, Neg. LLF: 72.2468887184212
Iteration: 16, Func. Count: 182, Neg. LLF: 72.24687973235073
Iteration: 17, Func. Count: 192, Neg. LLF: 72.24687979550679
Optimization terminated successfully (Exit mode 0)
Current function value: 72.24687973235073
Iterations: 17
Function evaluations: 192
Gradient evaluations: 17
Iteration: 1, Func. Count: 13, Neg. LLF: 5585501.8877274925
Iteration: 2, Func. Count: 26, Neg. LLF: 124.16123477770994
Iteration: 3, Func. Count: 39, Neg. LLF: 7499337.108820479
Iteration: 4, Func. Count: 52, Neg. LLF: 75.07536877791833
Iteration: 5, Func. Count: 65, Neg. LLF: 73.03616637818492
Iteration: 6, Func. Count: 78, Neg. LLF: 72.37077310308642
Iteration: 7, Func. Count: 90, Neg. LLF: 76.29048433872089
Iteration: 8, Func. Count: 104, Neg. LLF: 72.26604413601542
Iteration: 9, Func. Count: 116, Neg. LLF: 72.25622536627539
Iteration: 10, Func. Count: 128, Neg. LLF: 72.24868639919224
Iteration: 11, Func. Count: 140, Neg. LLF: 72.24721188649684
Iteration: 12, Func. Count: 152, Neg. LLF: 72.24694569884055
Iteration: 13, Func. Count: 164, Neg. LLF: 72.24688383156862
Iteration: 14, Func. Count: 176, Neg. LLF: 72.24687996530677
Iteration: 15, Func. Count: 187, Neg. LLF: 72.24687999088283
Optimization terminated successfully (Exit mode 0)
Current function value: 72.24687996530677
Iterations: 15
Function evaluations: 187
Gradient evaluations: 15
Iteration: 1, Func. Count: 14, Neg. LLF: 5572626.130093455
Iteration: 2, Func. Count: 28, Neg. LLF: 134.50381051353867
Iteration: 3, Func. Count: 42, Neg. LLF: 7577584.12837527
Iteration: 4, Func. Count: 56, Neg. LLF: 76.02987162258478
Iteration: 5, Func. Count: 70, Neg. LLF: 73.24975150195681
Iteration: 6, Func. Count: 84, Neg. LLF: 72.35725551681497
Iteration: 7, Func. Count: 97, Neg. LLF: 77.45558232518668
Iteration: 8, Func. Count: 112, Neg. LLF: 72.27343977232849
Iteration: 9, Func. Count: 125, Neg. LLF: 72.26003125539138
Iteration: 10, Func. Count: 138, Neg. LLF: 72.25123043138609
Iteration: 11, Func. Count: 151, Neg. LLF: 72.24835277897438
Iteration: 12, Func. Count: 164, Neg. LLF: 72.24702068778636
Iteration: 13, Func. Count: 177, Neg. LLF: 72.24690357762401
Iteration: 14, Func. Count: 190, Neg. LLF: 72.2468802300614
Iteration: 15, Func. Count: 202, Neg. LLF: 72.24688030979597
Optimization terminated successfully (Exit mode 0)
Current function value: 72.2468802300614
Iterations: 15
Function evaluations: 202
Gradient evaluations: 15
Iteration: 1, Func. Count: 15, Neg. LLF: 5463670.856938974
Iteration: 2, Func. Count: 30, Neg. LLF: 139.9864904727055
Iteration: 3, Func. Count: 45, Neg. LLF: 7584645.813279751
Iteration: 4, Func. Count: 60, Neg. LLF: 77.62884330024016
Iteration: 5, Func. Count: 75, Neg. LLF: 73.26179808365757
Iteration: 6, Func. Count: 90, Neg. LLF: 72.35608150142578
Iteration: 7, Func. Count: 104, Neg. LLF: 77.42481229222572
Iteration: 8, Func. Count: 120, Neg. LLF: 72.27675347687446
Iteration: 9, Func. Count: 134, Neg. LLF: 72.26104842827623
Iteration: 10, Func. Count: 148, Neg. LLF: 72.25216166712897
Iteration: 11, Func. Count: 162, Neg. LLF: 72.24869376468148
Iteration: 12, Func. Count: 176, Neg. LLF: 72.24694826325714
Iteration: 13, Func. Count: 190, Neg. LLF: 72.24688786372343
Iteration: 14, Func. Count: 204, Neg. LLF: 72.24688018992266
Iteration: 15, Func. Count: 217, Neg. LLF: 72.24688020789127
Optimization terminated successfully (Exit mode 0)
Current function value: 72.24688018992266
Iterations: 15
Function evaluations: 217
Gradient evaluations: 15
Iteration: 1, Func. Count: 8, Neg. LLF: 127.81348798499599
Iteration: 2, Func. Count: 19, Neg. LLF: 138.5188456744835
Iteration: 3, Func. Count: 28, Neg. LLF: 4428105.448954255
Iteration: 4, Func. Count: 36, Neg. LLF: 131.18515323268957
Iteration: 5, Func. Count: 44, Neg. LLF: 73.59963528752013
Iteration: 6, Func. Count: 51, Neg. LLF: 73.58749451860437
Iteration: 7, Func. Count: 58, Neg. LLF: 73.58719165799003
Iteration: 8, Func. Count: 65, Neg. LLF: 73.58708727832301
Iteration: 9, Func. Count: 72, Neg. LLF: 73.58707677078301
Iteration: 10, Func. Count: 78, Neg. LLF: 73.5870768570807
Optimization terminated successfully (Exit mode 0)
Current function value: 73.58707677078301
Iterations: 10
Function evaluations: 78
Gradient evaluations: 10
Iteration: 1, Func. Count: 9, Neg. LLF: 1143.9992615657566
Iteration: 2, Func. Count: 18, Neg. LLF: 4567.768828148344
Iteration: 3, Func. Count: 28, Neg. LLF: 76.70568264734186
Iteration: 4, Func. Count: 38, Neg. LLF: 81.81651945948288
Iteration: 5, Func. Count: 47, Neg. LLF: 73.60844334511792
Iteration: 6, Func. Count: 55, Neg. LLF: 73.58795351278586
Iteration: 7, Func. Count: 63, Neg. LLF: 73.58719971627681
Iteration: 8, Func. Count: 71, Neg. LLF: 73.58708242625943
Iteration: 9, Func. Count: 79, Neg. LLF: 73.58707657420085
Iteration: 10, Func. Count: 86, Neg. LLF: 73.58707660431334
Optimization terminated successfully (Exit mode 0)
Current function value: 73.58707657420085
Iterations: 10
Function evaluations: 86
Gradient evaluations: 10
Iteration: 1, Func. Count: 10, Neg. LLF: 1384.7710961364028
Iteration: 2, Func. Count: 20, Neg. LLF: 1704.3046761502521
Iteration: 3, Func. Count: 31, Neg. LLF: 75.45652212364037
Iteration: 4, Func. Count: 41, Neg. LLF: 75.92658329292753
Iteration: 5, Func. Count: 52, Neg. LLF: 73.686588458008
Iteration: 6, Func. Count: 61, Neg. LLF: 73.58903016194613
Iteration: 7, Func. Count: 70, Neg. LLF: 73.58730275157669
Iteration: 8, Func. Count: 79, Neg. LLF: 73.5870790492292
Iteration: 9, Func. Count: 88, Neg. LLF: 73.58707635725045
Iteration: 10, Func. Count: 96, Neg. LLF: 73.58707637901698
Optimization terminated successfully (Exit mode 0)
Current function value: 73.58707635725045
Iterations: 10
Function evaluations: 96
Gradient evaluations: 10
Iteration: 1, Func. Count: 11, Neg. LLF: 1813.1376990994622
Iteration: 2, Func. Count: 22, Neg. LLF: 9695.103328135558
Iteration: 3, Func. Count: 34, Neg. LLF: 367.362073320183
Iteration: 4, Func. Count: 45, Neg. LLF: 74.17923488551031
Iteration: 5, Func. Count: 55, Neg. LLF: 74.93753694096779
Iteration: 6, Func. Count: 66, Neg. LLF: 73.80326062785977
Iteration: 7, Func. Count: 77, Neg. LLF: 73.58953631907389
Iteration: 8, Func. Count: 87, Neg. LLF: 73.58715685370385
Iteration: 9, Func. Count: 97, Neg. LLF: 73.58708166479977
Iteration: 10, Func. Count: 107, Neg. LLF: 73.58707639013267
Iteration: 11, Func. Count: 116, Neg. LLF: 73.5870764181628
Optimization terminated successfully (Exit mode 0)
Current function value: 73.58707639013267
Iterations: 11
Function evaluations: 116
Gradient evaluations: 11
Iteration: 1, Func. Count: 12, Neg. LLF: 8925.785739806794
Iteration: 2, Func. Count: 24, Neg. LLF: 1319.3140483036557
Iteration: 3, Func. Count: 37, Neg. LLF: 417.53373465081626
Iteration: 4, Func. Count: 49, Neg. LLF: 131.94179662941437
Iteration: 5, Func. Count: 62, Neg. LLF: 73.64503018763338
Iteration: 6, Func. Count: 73, Neg. LLF: 73.59289431557995
Iteration: 7, Func. Count: 84, Neg. LLF: 73.58778608564513
Iteration: 8, Func. Count: 95, Neg. LLF: 73.58709473081214
Iteration: 9, Func. Count: 106, Neg. LLF: 73.58707914997446
Iteration: 10, Func. Count: 117, Neg. LLF: 73.58707631825648
Iteration: 11, Func. Count: 127, Neg. LLF: 73.58707634328765
Optimization terminated successfully (Exit mode 0)
Current function value: 73.58707631825648
Iterations: 11
Function evaluations: 127
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 125.21241341194543
Iteration: 2, Func. Count: 21, Neg. LLF: 126.39866239159166
Iteration: 3, Func. Count: 31, Neg. LLF: 15921976.75989828
Iteration: 4, Func. Count: 40, Neg. LLF: 383.3004322308048
Iteration: 5, Func. Count: 49, Neg. LLF: 72.74133037916312
Iteration: 6, Func. Count: 57, Neg. LLF: 72.70885086506178
Iteration: 7, Func. Count: 65, Neg. LLF: 72.7016061258376
Iteration: 8, Func. Count: 73, Neg. LLF: 72.70064588187212
Iteration: 9, Func. Count: 81, Neg. LLF: 72.70028877496748
Iteration: 10, Func. Count: 89, Neg. LLF: 72.70024268633499
Iteration: 11, Func. Count: 97, Neg. LLF: 72.70024179687263
Optimization terminated successfully (Exit mode 0)
Current function value: 72.70024179687263
Iterations: 11
Function evaluations: 97
Gradient evaluations: 11
Iteration: 1, Func. Count: 10, Neg. LLF: 644.3028454367333
Iteration: 2, Func. Count: 20, Neg. LLF: 311.6699852445791
Iteration: 3, Func. Count: 30, Neg. LLF: 78.50298407877384
Iteration: 4, Func. Count: 41, Neg. LLF: 73.91189139854771
Iteration: 5, Func. Count: 51, Neg. LLF: 76.17991800231437
Iteration: 6, Func. Count: 61, Neg. LLF: 72.72248195090442
Iteration: 7, Func. Count: 70, Neg. LLF: 72.70189577209243
Iteration: 8, Func. Count: 79, Neg. LLF: 72.70054632581238
Iteration: 9, Func. Count: 88, Neg. LLF: 72.70030613348462
Iteration: 10, Func. Count: 97, Neg. LLF: 72.7002431909689
Iteration: 11, Func. Count: 106, Neg. LLF: 72.700241924369
Iteration: 12, Func. Count: 114, Neg. LLF: 72.700241975077
Optimization terminated successfully (Exit mode 0)
Current function value: 72.700241924369
Iterations: 12
Function evaluations: 114
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 4646.317315872504
Iteration: 2, Func. Count: 22, Neg. LLF: 1012804.527745151
Iteration: 3, Func. Count: 33, Neg. LLF: 74.59057002302573
Iteration: 4, Func. Count: 44, Neg. LLF: 75.19226019833276
Iteration: 5, Func. Count: 55, Neg. LLF: 674.1222898383553
Iteration: 6, Func. Count: 66, Neg. LLF: 72.72330909821541
Iteration: 7, Func. Count: 76, Neg. LLF: 72.70304588863047
Iteration: 8, Func. Count: 86, Neg. LLF: 72.70069947910115
Iteration: 9, Func. Count: 96, Neg. LLF: 72.70031406964078
Iteration: 10, Func. Count: 106, Neg. LLF: 72.70026630570729
Iteration: 11, Func. Count: 116, Neg. LLF: 72.70024477846772
Iteration: 12, Func. Count: 126, Neg. LLF: 72.70024270947359
Iteration: 13, Func. Count: 136, Neg. LLF: 72.70024191080302
Optimization terminated successfully (Exit mode 0)
Current function value: 72.70024191080302
Iterations: 13
Function evaluations: 136
Gradient evaluations: 13
Iteration: 1, Func. Count: 12, Neg. LLF: 9245.714720564783
Iteration: 2, Func. Count: 24, Neg. LLF: 995855.0744580233
Iteration: 3, Func. Count: 36, Neg. LLF: 73.8223956748073
Iteration: 4, Func. Count: 47, Neg. LLF: 104.96297376119999
Iteration: 5, Func. Count: 60, Neg. LLF: 77.8802404191975
Iteration: 6, Func. Count: 72, Neg. LLF: 72.8810886497588
Iteration: 7, Func. Count: 83, Neg. LLF: 72.7662183506249
Iteration: 8, Func. Count: 94, Neg. LLF: 72.72027752625667
Iteration: 9, Func. Count: 105, Neg. LLF: 72.7016422605775
Iteration: 10, Func. Count: 116, Neg. LLF: 72.70056388943
Iteration: 11, Func. Count: 127, Neg. LLF: 72.70030852567426
Iteration: 12, Func. Count: 138, Neg. LLF: 72.7002495069246
Iteration: 13, Func. Count: 149, Neg. LLF: 72.70024210012555
Iteration: 14, Func. Count: 159, Neg. LLF: 72.70024213917321
Optimization terminated successfully (Exit mode 0)
Current function value: 72.70024210012555
Iterations: 14
Function evaluations: 159
Gradient evaluations: 14
Iteration: 1, Func. Count: 13, Neg. LLF: 122894.10199848699
Iteration: 2, Func. Count: 26, Neg. LLF: 840018.1734894288
Iteration: 3, Func. Count: 39, Neg. LLF: 80.2840140819959
Iteration: 4, Func. Count: 52, Neg. LLF: 86.26496066219072
Iteration: 5, Func. Count: 66, Neg. LLF: 78.17720663800966
Iteration: 6, Func. Count: 79, Neg. LLF: 72.7205423195552
Iteration: 7, Func. Count: 91, Neg. LLF: 72.70517988263136
Iteration: 8, Func. Count: 103, Neg. LLF: 72.70078196489307
Iteration: 9, Func. Count: 115, Neg. LLF: 72.70045714396741
Iteration: 10, Func. Count: 127, Neg. LLF: 72.70031436777602
Iteration: 11, Func. Count: 139, Neg. LLF: 72.70026889186987
Iteration: 12, Func. Count: 151, Neg. LLF: 72.70024768259704
Iteration: 13, Func. Count: 163, Neg. LLF: 72.70024245569331
Iteration: 14, Func. Count: 175, Neg. LLF: 72.70024181452854
Optimization terminated successfully (Exit mode 0)
Current function value: 72.70024181452854
Iterations: 14
Function evaluations: 175
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 118.20148369568705
Iteration: 2, Func. Count: 22, Neg. LLF: 123.79119619175424
Iteration: 3, Func. Count: 33, Neg. LLF: 14314859.666353136
Iteration: 4, Func. Count: 43, Neg. LLF: 160.3413663021687
Iteration: 5, Func. Count: 53, Neg. LLF: 73.43573836171905
Iteration: 6, Func. Count: 62, Neg. LLF: 72.80581643395396
Iteration: 7, Func. Count: 71, Neg. LLF: 73.90978937085852
Iteration: 8, Func. Count: 81, Neg. LLF: 72.45633122802214
Iteration: 9, Func. Count: 90, Neg. LLF: 72.39969595090834
Iteration: 10, Func. Count: 99, Neg. LLF: 72.37490287310032
Iteration: 11, Func. Count: 108, Neg. LLF: 72.36863062369578
Iteration: 12, Func. Count: 117, Neg. LLF: 72.3613633472522
Iteration: 13, Func. Count: 126, Neg. LLF: 72.35828118588276
Iteration: 14, Func. Count: 135, Neg. LLF: 72.35539107614797
Iteration: 15, Func. Count: 144, Neg. LLF: 72.35526137822434
Iteration: 16, Func. Count: 153, Neg. LLF: 72.35525822487985
Iteration: 17, Func. Count: 161, Neg. LLF: 72.35525822488638
Optimization terminated successfully (Exit mode 0)
Current function value: 72.35525822487985
Iterations: 17
Function evaluations: 161
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 816.7674974693039
Iteration: 2, Func. Count: 22, Neg. LLF: 699620.3496963661
Iteration: 3, Func. Count: 33, Neg. LLF: 77.66584579656549
Iteration: 4, Func. Count: 44, Neg. LLF: 79.99250506891053
Iteration: 5, Func. Count: 55, Neg. LLF: 75.192881426699
Iteration: 6, Func. Count: 66, Neg. LLF: 73.05223684042839
Iteration: 7, Func. Count: 76, Neg. LLF: 72.7297941933826
Iteration: 8, Func. Count: 86, Neg. LLF: 74.51631003398901
Iteration: 9, Func. Count: 97, Neg. LLF: 72.44025442077255
Iteration: 10, Func. Count: 107, Neg. LLF: 72.4022437908168
Iteration: 11, Func. Count: 117, Neg. LLF: 72.38604002185347
Iteration: 12, Func. Count: 127, Neg. LLF: 72.36429012827188
Iteration: 13, Func. Count: 137, Neg. LLF: 72.3565263673487
Iteration: 14, Func. Count: 147, Neg. LLF: 72.35530268319476
Iteration: 15, Func. Count: 157, Neg. LLF: 72.35526588991979
Iteration: 16, Func. Count: 167, Neg. LLF: 72.35525825598836
Iteration: 17, Func. Count: 176, Neg. LLF: 72.35525833126442
Optimization terminated successfully (Exit mode 0)
Current function value: 72.35525825598836
Iterations: 17
Function evaluations: 176
Gradient evaluations: 17
Iteration: 1, Func. Count: 12, Neg. LLF: 5970905.658761118
Iteration: 2, Func. Count: 24, Neg. LLF: 861511.6180807842
Iteration: 3, Func. Count: 36, Neg. LLF: 13635147.137396922
Iteration: 4, Func. Count: 49, Neg. LLF: 73.22598322013101
Iteration: 5, Func. Count: 60, Neg. LLF: 79.14084536534801
Iteration: 6, Func. Count: 72, Neg. LLF: 73.20144824206989
Iteration: 7, Func. Count: 84, Neg. LLF: 78.5520678554692
Iteration: 8, Func. Count: 96, Neg. LLF: 72.48787029660733
Iteration: 9, Func. Count: 107, Neg. LLF: 72.45915450447359
Iteration: 10, Func. Count: 118, Neg. LLF: 72.40692156036484
Iteration: 11, Func. Count: 129, Neg. LLF: 72.37797198215067
Iteration: 12, Func. Count: 140, Neg. LLF: 72.35906055467065
Iteration: 13, Func. Count: 151, Neg. LLF: 72.3555897678382
Iteration: 14, Func. Count: 162, Neg. LLF: 72.3552831225551
Iteration: 15, Func. Count: 173, Neg. LLF: 72.35526498835416
Iteration: 16, Func. Count: 184, Neg. LLF: 72.35525831659824
Iteration: 17, Func. Count: 194, Neg. LLF: 72.3552583717719
Optimization terminated successfully (Exit mode 0)
Current function value: 72.35525831659824
Iterations: 17
Function evaluations: 194
Gradient evaluations: 17
Iteration: 1, Func. Count: 13, Neg. LLF: 5923324.101983207
Iteration: 2, Func. Count: 26, Neg. LLF: 765952.6487060885
Iteration: 3, Func. Count: 39, Neg. LLF: 13745659.920376027
Iteration: 4, Func. Count: 53, Neg. LLF: 73.56271343658436
Iteration: 5, Func. Count: 65, Neg. LLF: 74.86668317694824
Iteration: 6, Func. Count: 78, Neg. LLF: 73.07602956756304
Iteration: 7, Func. Count: 91, Neg. LLF: 72.42141116572638
Iteration: 8, Func. Count: 103, Neg. LLF: 72.45863808828742
Iteration: 9, Func. Count: 116, Neg. LLF: 72.37885645815916
Iteration: 10, Func. Count: 128, Neg. LLF: 72.36453629647872
Iteration: 11, Func. Count: 140, Neg. LLF: 72.35680548986525
Iteration: 12, Func. Count: 152, Neg. LLF: 72.3553561608089
Iteration: 13, Func. Count: 164, Neg. LLF: 72.35526114998011
Iteration: 14, Func. Count: 176, Neg. LLF: 72.35525838423821
Iteration: 15, Func. Count: 187, Neg. LLF: 72.35525847425754
Optimization terminated successfully (Exit mode 0)
Current function value: 72.35525838423821
Iterations: 15
Function evaluations: 187
Gradient evaluations: 15
Iteration: 1, Func. Count: 14, Neg. LLF: 7079066.424613105
Iteration: 2, Func. Count: 28, Neg. LLF: 792795.0689720353
Iteration: 3, Func. Count: 42, Neg. LLF: 13771630.804107461
Iteration: 4, Func. Count: 56, Neg. LLF: 75.22253870196825
Iteration: 5, Func. Count: 70, Neg. LLF: 75.81817165112571
Iteration: 6, Func. Count: 84, Neg. LLF: 72.47166510778281
Iteration: 7, Func. Count: 97, Neg. LLF: 72.53913369957161
Iteration: 8, Func. Count: 111, Neg. LLF: 72.39573643342189
Iteration: 9, Func. Count: 124, Neg. LLF: 72.37206404640777
Iteration: 10, Func. Count: 137, Neg. LLF: 72.36061623093457
Iteration: 11, Func. Count: 150, Neg. LLF: 72.35574953848754
Iteration: 12, Func. Count: 163, Neg. LLF: 72.35527289898651
Iteration: 13, Func. Count: 176, Neg. LLF: 72.3552602628446
Iteration: 14, Func. Count: 189, Neg. LLF: 72.35525835802152
Iteration: 15, Func. Count: 201, Neg. LLF: 72.35525837438863
Optimization terminated successfully (Exit mode 0)
Current function value: 72.35525835802152
Iterations: 15
Function evaluations: 201
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 116.9929547576643
Iteration: 2, Func. Count: 24, Neg. LLF: 126.2447763562317
Iteration: 3, Func. Count: 36, Neg. LLF: 14137243.206065442
Iteration: 4, Func. Count: 47, Neg. LLF: 1498658.7158371096
Iteration: 5, Func. Count: 58, Neg. LLF: 72.9540148400478
Iteration: 6, Func. Count: 68, Neg. LLF: 72.37122950827357
Iteration: 7, Func. Count: 78, Neg. LLF: 82.20991432020061
Iteration: 8, Func. Count: 89, Neg. LLF: 72.2785194013562
Iteration: 9, Func. Count: 99, Neg. LLF: 72.26000779215767
Iteration: 10, Func. Count: 109, Neg. LLF: 72.25381410571279
Iteration: 11, Func. Count: 119, Neg. LLF: 72.25130110667632
Iteration: 12, Func. Count: 129, Neg. LLF: 72.24752375246122
Iteration: 13, Func. Count: 139, Neg. LLF: 72.24691883594654
Iteration: 14, Func. Count: 149, Neg. LLF: 72.24688542340948
Iteration: 15, Func. Count: 159, Neg. LLF: 72.2468806491745
Iteration: 16, Func. Count: 169, Neg. LLF: 72.24687966791164
Optimization terminated successfully (Exit mode 0)
Current function value: 72.24687966791164
Iterations: 16
Function evaluations: 169
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 5723190.099113372
Iteration: 2, Func. Count: 24, Neg. LLF: 113.08235285436173
Iteration: 3, Func. Count: 37, Neg. LLF: 1509261.374356259
Iteration: 4, Func. Count: 49, Neg. LLF: 73.66856860775816
Iteration: 5, Func. Count: 61, Neg. LLF: 72.40944735756223
Iteration: 6, Func. Count: 72, Neg. LLF: 75.31931167939716
Iteration: 7, Func. Count: 85, Neg. LLF: 72.28212185629715
Iteration: 8, Func. Count: 96, Neg. LLF: 72.25772110569285
Iteration: 9, Func. Count: 107, Neg. LLF: 72.25288792480387
Iteration: 10, Func. Count: 118, Neg. LLF: 72.24962690629324
Iteration: 11, Func. Count: 129, Neg. LLF: 72.24726594536013
Iteration: 12, Func. Count: 140, Neg. LLF: 72.24690859092861
Iteration: 13, Func. Count: 151, Neg. LLF: 72.2468805228184
Iteration: 14, Func. Count: 162, Neg. LLF: 72.24687971012865
Optimization terminated successfully (Exit mode 0)
Current function value: 72.24687971012865
Iterations: 14
Function evaluations: 162
Gradient evaluations: 14
Iteration: 1, Func. Count: 13, Neg. LLF: 4547841.32008297
Iteration: 2, Func. Count: 26, Neg. LLF: 112.77780355463288
Iteration: 3, Func. Count: 39, Neg. LLF: 11929259.403886324
Iteration: 4, Func. Count: 52, Neg. LLF: 75.75710629310946
Iteration: 5, Func. Count: 65, Neg. LLF: 73.66954324888007
Iteration: 6, Func. Count: 78, Neg. LLF: 72.48338007924063
Iteration: 7, Func. Count: 90, Neg. LLF: 76.72100800079502
Iteration: 8, Func. Count: 103, Neg. LLF: 72.30612746579541
Iteration: 9, Func. Count: 115, Neg. LLF: 72.26972541121357
Iteration: 10, Func. Count: 127, Neg. LLF: 72.25807470403431
Iteration: 11, Func. Count: 139, Neg. LLF: 72.25090023086148
Iteration: 12, Func. Count: 151, Neg. LLF: 72.24775889651981
Iteration: 13, Func. Count: 163, Neg. LLF: 72.24700569520402
Iteration: 14, Func. Count: 175, Neg. LLF: 72.24689325282364
Iteration: 15, Func. Count: 187, Neg. LLF: 72.24688040982643
Iteration: 16, Func. Count: 199, Neg. LLF: 72.24687966132828
Optimization terminated successfully (Exit mode 0)
Current function value: 72.24687966132828
Iterations: 16
Function evaluations: 199
Gradient evaluations: 16
Iteration: 1, Func. Count: 14, Neg. LLF: 4518348.1484680725
Iteration: 2, Func. Count: 28, Neg. LLF: 112.17248366706852
Iteration: 3, Func. Count: 43, Neg. LLF: 6243160.374760256
Iteration: 4, Func. Count: 57, Neg. LLF: 72.55576748605563
Iteration: 5, Func. Count: 70, Neg. LLF: 72.49969192175159
Iteration: 6, Func. Count: 84, Neg. LLF: 72.50500091482718
Iteration: 7, Func. Count: 98, Neg. LLF: 72.34194145730997
Iteration: 8, Func. Count: 112, Neg. LLF: 72.26366408992023
Iteration: 9, Func. Count: 125, Neg. LLF: 72.25720638694223
Iteration: 10, Func. Count: 138, Neg. LLF: 72.2500721367605
Iteration: 11, Func. Count: 151, Neg. LLF: 72.24765065560656
Iteration: 12, Func. Count: 164, Neg. LLF: 72.24696907550323
Iteration: 13, Func. Count: 177, Neg. LLF: 72.24688054286882
Iteration: 14, Func. Count: 190, Neg. LLF: 72.24687987351096
Optimization terminated successfully (Exit mode 0)
Current function value: 72.24687987351096
Iterations: 14
Function evaluations: 190
Gradient evaluations: 14
Iteration: 1, Func. Count: 15, Neg. LLF: 5746716.5102433385
Iteration: 2, Func. Count: 30, Neg. LLF: 112.36991954719747
Iteration: 3, Func. Count: 46, Neg. LLF: 6243767.496607206
Iteration: 4, Func. Count: 61, Neg. LLF: 73.00921188581427
Iteration: 5, Func. Count: 75, Neg. LLF: 72.4048936333619
Iteration: 6, Func. Count: 89, Neg. LLF: 74.31464820715968
Iteration: 7, Func. Count: 104, Neg. LLF: 72.35338194667
Iteration: 8, Func. Count: 118, Neg. LLF: 72.31804194225606
Iteration: 9, Func. Count: 132, Neg. LLF: 72.34045434516733
Iteration: 10, Func. Count: 147, Neg. LLF: 72.26984299610703
Iteration: 11, Func. Count: 161, Neg. LLF: 72.2696463770479
Iteration: 12, Func. Count: 176, Neg. LLF: 72.25113442476882
Iteration: 13, Func. Count: 190, Neg. LLF: 72.24727176677357
Iteration: 14, Func. Count: 204, Neg. LLF: 72.24693243637243
Iteration: 15, Func. Count: 218, Neg. LLF: 72.24689548113852
Iteration: 16, Func. Count: 232, Neg. LLF: 72.24688185514114
Iteration: 17, Func. Count: 246, Neg. LLF: 72.24687964785554
Iteration: 18, Func. Count: 259, Neg. LLF: 72.24687966580353
Optimization terminated successfully (Exit mode 0)
Current function value: 72.24687964785554
Iterations: 18
Function evaluations: 259
Gradient evaluations: 18
Iteration: 1, Func. Count: 12, Neg. LLF: 119.37421982064063
Iteration: 2, Func. Count: 26, Neg. LLF: 127.26640730357275
Iteration: 3, Func. Count: 39, Neg. LLF: 14111980.264397059
Iteration: 4, Func. Count: 51, Neg. LLF: 1510527.3924540589
Iteration: 5, Func. Count: 63, Neg. LLF: 72.76250070347207
Iteration: 6, Func. Count: 74, Neg. LLF: 72.36758915055147
Iteration: 7, Func. Count: 85, Neg. LLF: 72.47976086846366
Iteration: 8, Func. Count: 97, Neg. LLF: 72.27723445604464
Iteration: 9, Func. Count: 108, Neg. LLF: 72.27100452869975
Iteration: 10, Func. Count: 120, Neg. LLF: 72.255996656917
Iteration: 11, Func. Count: 131, Neg. LLF: 72.25074020144216
Iteration: 12, Func. Count: 142, Neg. LLF: 72.24843744795893
Iteration: 13, Func. Count: 153, Neg. LLF: 72.24710728248033
Iteration: 14, Func. Count: 164, Neg. LLF: 72.24690489140542
Iteration: 15, Func. Count: 175, Neg. LLF: 72.246882499565
Iteration: 16, Func. Count: 186, Neg. LLF: 72.2468798190988
Iteration: 17, Func. Count: 196, Neg. LLF: 72.24687977994242
Optimization terminated successfully (Exit mode 0)
Current function value: 72.2468798190988
Iterations: 17
Function evaluations: 196
Gradient evaluations: 17
Iteration: 1, Func. Count: 13, Neg. LLF: 4947007.705755064
Iteration: 2, Func. Count: 26, Neg. LLF: 117.24935510217313
Iteration: 3, Func. Count: 39, Neg. LLF: 617.8590311793441
Iteration: 4, Func. Count: 52, Neg. LLF: 74.3561708591774
Iteration: 5, Func. Count: 65, Neg. LLF: 72.72326411764745
Iteration: 6, Func. Count: 77, Neg. LLF: 73.51904342064657
Iteration: 7, Func. Count: 91, Neg. LLF: 75.80903720909085
Iteration: 8, Func. Count: 104, Neg. LLF: 72.28334857210126
Iteration: 9, Func. Count: 116, Neg. LLF: 72.26162895964457
Iteration: 10, Func. Count: 128, Neg. LLF: 72.25498888991912
Iteration: 11, Func. Count: 140, Neg. LLF: 72.24966080800424
Iteration: 12, Func. Count: 152, Neg. LLF: 72.2477332459274
Iteration: 13, Func. Count: 164, Neg. LLF: 72.24695220579451
Iteration: 14, Func. Count: 176, Neg. LLF: 72.24688319625298
Iteration: 15, Func. Count: 188, Neg. LLF: 72.246879690382
Iteration: 16, Func. Count: 199, Neg. LLF: 72.24687975354526
Optimization terminated successfully (Exit mode 0)
Current function value: 72.246879690382
Iterations: 16
Function evaluations: 199
Gradient evaluations: 16
Iteration: 1, Func. Count: 14, Neg. LLF: 4572123.473458022
Iteration: 2, Func. Count: 28, Neg. LLF: 112.77403358779016
Iteration: 3, Func. Count: 42, Neg. LLF: 11930768.108437171
Iteration: 4, Func. Count: 56, Neg. LLF: 75.76014757308732
Iteration: 5, Func. Count: 70, Neg. LLF: 73.74564318072377
Iteration: 6, Func. Count: 84, Neg. LLF: 72.476166417847
Iteration: 7, Func. Count: 97, Neg. LLF: 76.88070457143756
Iteration: 8, Func. Count: 111, Neg. LLF: 72.30144465924543
Iteration: 9, Func. Count: 124, Neg. LLF: 72.27009410488189
Iteration: 10, Func. Count: 137, Neg. LLF: 72.2579877503595
Iteration: 11, Func. Count: 150, Neg. LLF: 72.25096805814437
Iteration: 12, Func. Count: 163, Neg. LLF: 72.24767471408252
Iteration: 13, Func. Count: 176, Neg. LLF: 72.24700546484743
Iteration: 14, Func. Count: 189, Neg. LLF: 72.24689166128815
Iteration: 15, Func. Count: 202, Neg. LLF: 72.24688039050021
Iteration: 16, Func. Count: 215, Neg. LLF: 72.24687965986956
Optimization terminated successfully (Exit mode 0)
Current function value: 72.24687965986956
Iterations: 16
Function evaluations: 215
Gradient evaluations: 16
Iteration: 1, Func. Count: 15, Neg. LLF: 4542750.551553093
Iteration: 2, Func. Count: 30, Neg. LLF: 112.15985811980251
Iteration: 3, Func. Count: 46, Neg. LLF: 6242664.568974412
Iteration: 4, Func. Count: 61, Neg. LLF: 72.55781746168566
Iteration: 5, Func. Count: 75, Neg. LLF: 72.49308330088972
Iteration: 6, Func. Count: 90, Neg. LLF: 72.47716329351043
Iteration: 7, Func. Count: 105, Neg. LLF: 72.36905419500641
Iteration: 8, Func. Count: 120, Neg. LLF: 72.26788798703635
Iteration: 9, Func. Count: 134, Neg. LLF: 72.25792798514534
Iteration: 10, Func. Count: 148, Neg. LLF: 72.25064981282446
Iteration: 11, Func. Count: 162, Neg. LLF: 72.24786398602775
Iteration: 12, Func. Count: 176, Neg. LLF: 72.24700917588514
Iteration: 13, Func. Count: 190, Neg. LLF: 72.2468844443052
Iteration: 14, Func. Count: 204, Neg. LLF: 72.24688154591648
Iteration: 15, Func. Count: 218, Neg. LLF: 72.24687969430126
Iteration: 16, Func. Count: 231, Neg. LLF: 72.24687977398445
Optimization terminated successfully (Exit mode 0)
Current function value: 72.24687969430126
Iterations: 16
Function evaluations: 231
Gradient evaluations: 16
Iteration: 1, Func. Count: 16, Neg. LLF: 5783554.956133554
Iteration: 2, Func. Count: 32, Neg. LLF: 112.34630182575985
Iteration: 3, Func. Count: 49, Neg. LLF: 6243265.927160979
Iteration: 4, Func. Count: 65, Neg. LLF: 73.0162848814097
Iteration: 5, Func. Count: 80, Neg. LLF: 72.40482997110732
Iteration: 6, Func. Count: 95, Neg. LLF: 74.26241850571289
Iteration: 7, Func. Count: 111, Neg. LLF: 72.35396172855968
Iteration: 8, Func. Count: 126, Neg. LLF: 72.3179580355182
Iteration: 9, Func. Count: 141, Neg. LLF: 72.3409507736408
Iteration: 10, Func. Count: 157, Neg. LLF: 72.26968969610105
Iteration: 11, Func. Count: 172, Neg. LLF: 72.26943314711023
Iteration: 12, Func. Count: 188, Neg. LLF: 72.2511859525891
Iteration: 13, Func. Count: 203, Neg. LLF: 72.24723176705325
Iteration: 14, Func. Count: 218, Neg. LLF: 72.24692904835858
Iteration: 15, Func. Count: 233, Neg. LLF: 72.24689441231908
Iteration: 16, Func. Count: 248, Neg. LLF: 72.24688169160534
Iteration: 17, Func. Count: 263, Neg. LLF: 72.24687964784347
Iteration: 18, Func. Count: 277, Neg. LLF: 72.24687966579198
Optimization terminated successfully (Exit mode 0)
Current function value: 72.24687964784347
Iterations: 18
Function evaluations: 277
Gradient evaluations: 18
Iteration: 1, Func. Count: 5, Neg. LLF: 160.55552214601482
Iteration: 2, Func. Count: 13, Neg. LLF: 142.05752167001884
Iteration: 3, Func. Count: 19, Neg. LLF: 75.95911180685599
Iteration: 4, Func. Count: 24, Neg. LLF: 74.56549358791324
Iteration: 5, Func. Count: 28, Neg. LLF: 74.5646026231116
Iteration: 6, Func. Count: 32, Neg. LLF: 74.56437576432597
Iteration: 7, Func. Count: 35, Neg. LLF: 74.56437576433242
Optimization terminated successfully (Exit mode 0)
Current function value: 74.56437576432597
Iterations: 7
Function evaluations: 35
Gradient evaluations: 7
Iteration: 1, Func. Count: 5, Neg. LLF: 105.6205458267772
Iteration: 2, Func. Count: 12, Neg. LLF: 93.12952149305711
Iteration: 3, Func. Count: 18, Neg. LLF: 70.8142929040257
Iteration: 4, Func. Count: 22, Neg. LLF: 71.73342188780632
Iteration: 5, Func. Count: 27, Neg. LLF: 69.76094689453916
Iteration: 6, Func. Count: 32, Neg. LLF: 69.60210643918002
Iteration: 7, Func. Count: 36, Neg. LLF: 69.60205238703374
Iteration: 8, Func. Count: 40, Neg. LLF: 69.6020517501145
Optimization terminated successfully (Exit mode 0)
Current function value: 69.6020517501145
Iterations: 8
Function evaluations: 40
Gradient evaluations: 8
Iteration: 1, Func. Count: 6, Neg. LLF: 154.61003032518073
Iteration: 2, Func. Count: 14, Neg. LLF: 72.28953741725155
Iteration: 3, Func. Count: 21, Neg. LLF: 70.15873145505833
Iteration: 4, Func. Count: 27, Neg. LLF: 69.59161670642793
Iteration: 5, Func. Count: 33, Neg. LLF: 70.02807604021234
Iteration: 6, Func. Count: 39, Neg. LLF: 69.538363569502
Iteration: 7, Func. Count: 45, Neg. LLF: 69.52816916207686
Iteration: 8, Func. Count: 50, Neg. LLF: 69.52798676177375
Iteration: 9, Func. Count: 55, Neg. LLF: 69.52798563334298
Iteration: 10, Func. Count: 61, Neg. LLF: 69.52797448026
Iteration: 11, Func. Count: 65, Neg. LLF: 69.52797448019832
Optimization terminated successfully (Exit mode 0)
Current function value: 69.52797448026
Iterations: 11
Function evaluations: 65
Gradient evaluations: 11
Iteration: 1, Func. Count: 7, Neg. LLF: 145.1047066553634
Iteration: 2, Func. Count: 16, Neg. LLF: 69.69386457633738
Iteration: 3, Func. Count: 23, Neg. LLF: 70.49595060039313
Iteration: 4, Func. Count: 30, Neg. LLF: 69.5857425494143
Iteration: 5, Func. Count: 36, Neg. LLF: 69.58528064888263
Iteration: 6, Func. Count: 42, Neg. LLF: 69.58526591853133
Iteration: 7, Func. Count: 49, Neg. LLF: 69.58516655600681
Iteration: 8, Func. Count: 55, Neg. LLF: 69.58515599220864
Iteration: 9, Func. Count: 61, Neg. LLF: 69.58509829316988
Iteration: 10, Func. Count: 67, Neg. LLF: 69.57990630673851
Iteration: 11, Func. Count: 73, Neg. LLF: 69.5791761348677
Iteration: 12, Func. Count: 79, Neg. LLF: 69.57456085680153
Iteration: 13, Func. Count: 85, Neg. LLF: 69.56204068073353
Iteration: 14, Func. Count: 91, Neg. LLF: 69.54545753799307
Iteration: 15, Func. Count: 97, Neg. LLF: 69.53292033373576
Iteration: 16, Func. Count: 103, Neg. LLF: 69.52931988342546
Iteration: 17, Func. Count: 109, Neg. LLF: 69.52817608613074
Iteration: 18, Func. Count: 115, Neg. LLF: 69.52798034074301
Iteration: 19, Func. Count: 121, Neg. LLF: 69.52797497678233
Iteration: 20, Func. Count: 126, Neg. LLF: 69.52797498159474
Optimization terminated successfully (Exit mode 0)
Current function value: 69.52797497678233
Iterations: 20
Function evaluations: 126
Gradient evaluations: 20
Iteration: 1, Func. Count: 8, Neg. LLF: 140.26832591532377
Iteration: 2, Func. Count: 18, Neg. LLF: 69.74232790042258
Iteration: 3, Func. Count: 26, Neg. LLF: 69.58714993029919
Iteration: 4, Func. Count: 33, Neg. LLF: 69.58918059472246
Iteration: 5, Func. Count: 41, Neg. LLF: 69.58598415584672
Iteration: 6, Func. Count: 48, Neg. LLF: 69.58558415696166
Iteration: 7, Func. Count: 55, Neg. LLF: 69.5849202927615
Iteration: 8, Func. Count: 62, Neg. LLF: 69.58490563299212
Iteration: 9, Func. Count: 69, Neg. LLF: 69.58482415204296
Iteration: 10, Func. Count: 76, Neg. LLF: 69.58349441008396
Iteration: 11, Func. Count: 83, Neg. LLF: 69.58279350486912
Iteration: 12, Func. Count: 90, Neg. LLF: 69.57971637707205
Iteration: 13, Func. Count: 97, Neg. LLF: 69.58832382358804
Iteration: 14, Func. Count: 105, Neg. LLF: 69.57655175418105
Iteration: 15, Func. Count: 112, Neg. LLF: 69.5730109411819
Iteration: 16, Func. Count: 119, Neg. LLF: 69.56358701328826
Iteration: 17, Func. Count: 126, Neg. LLF: 69.54727705574807
Iteration: 18, Func. Count: 133, Neg. LLF: 69.5329861198491
Iteration: 19, Func. Count: 140, Neg. LLF: 69.52860277067286
Iteration: 20, Func. Count: 147, Neg. LLF: 69.52808371895189
Iteration: 21, Func. Count: 154, Neg. LLF: 69.52798412418392
Iteration: 22, Func. Count: 161, Neg. LLF: 69.5279794913706
Iteration: 23, Func. Count: 168, Neg. LLF: 89.89634568227184
Iteration: 24, Func. Count: 178, Neg. LLF: 69.52852516733681
Optimization terminated successfully (Exit mode 0)
Current function value: 69.52797611278382
Iterations: 25
Function evaluations: 180
Gradient evaluations: 24
Iteration: 1, Func. Count: 9, Neg. LLF: 133.85217945339625
Iteration: 2, Func. Count: 20, Neg. LLF: 69.77635843734443
Iteration: 3, Func. Count: 29, Neg. LLF: 69.60226021025751
Iteration: 4, Func. Count: 37, Neg. LLF: 69.59015648247784
Iteration: 5, Func. Count: 45, Neg. LLF: 69.61345064840965
Iteration: 6, Func. Count: 54, Neg. LLF: 69.5892803286857
Iteration: 7, Func. Count: 63, Neg. LLF: 69.58821232162165
Iteration: 8, Func. Count: 71, Neg. LLF: 69.58772579027458
Iteration: 9, Func. Count: 79, Neg. LLF: 69.58675058356137
Iteration: 10, Func. Count: 87, Neg. LLF: 69.58579379925361
Iteration: 11, Func. Count: 95, Neg. LLF: 69.58547668960651
Iteration: 12, Func. Count: 103, Neg. LLF: 69.58510561833539
Iteration: 13, Func. Count: 111, Neg. LLF: 69.58495206756304
Iteration: 14, Func. Count: 119, Neg. LLF: 69.58493860787478
Iteration: 15, Func. Count: 127, Neg. LLF: 69.58491144878232
Iteration: 16, Func. Count: 135, Neg. LLF: 69.58459775997656
Iteration: 17, Func. Count: 143, Neg. LLF: 69.5831859727509
Iteration: 18, Func. Count: 151, Neg. LLF: 69.58179042983974
Iteration: 19, Func. Count: 159, Neg. LLF: 69.57874995784371
Iteration: 20, Func. Count: 167, Neg. LLF: 69.56580088213596
Iteration: 21, Func. Count: 175, Neg. LLF: 69.54151466296383
Iteration: 22, Func. Count: 183, Neg. LLF: 69.52962876472542
Iteration: 23, Func. Count: 191, Neg. LLF: 69.5282326610967
Iteration: 24, Func. Count: 199, Neg. LLF: 69.52800100355887
Iteration: 25, Func. Count: 207, Neg. LLF: 69.52797843106497
Iteration: 26, Func. Count: 215, Neg. LLF: 69.52797515236226
Iteration: 27, Func. Count: 223, Neg. LLF: 69.52797439685988
Optimization terminated successfully (Exit mode 0)
Current function value: 69.52797439685988
Iterations: 27
Function evaluations: 223
Gradient evaluations: 27
Iteration: 1, Func. Count: 6, Neg. LLF: 112.87641284288856
Iteration: 2, Func. Count: 15, Neg. LLF: 449.7457884154708
Iteration: 3, Func. Count: 22, Neg. LLF: 71.21892025826097
Iteration: 4, Func. Count: 28, Neg. LLF: 68.75830819117935
Iteration: 5, Func. Count: 33, Neg. LLF: 68.72851219556375
Iteration: 6, Func. Count: 38, Neg. LLF: 68.69191792043776
Iteration: 7, Func. Count: 43, Neg. LLF: 68.68955274054619
Iteration: 8, Func. Count: 48, Neg. LLF: 68.68937621638095
Iteration: 9, Func. Count: 53, Neg. LLF: 68.68936629738933
Iteration: 10, Func. Count: 57, Neg. LLF: 68.6893662973844
Optimization terminated successfully (Exit mode 0)
Current function value: 68.68936629738933
Iterations: 10
Function evaluations: 57
Gradient evaluations: 10
Iteration: 1, Func. Count: 7, Neg. LLF: 76.5402524645853
Iteration: 2, Func. Count: 16, Neg. LLF: 7193462.581373539
Iteration: 3, Func. Count: 23, Neg. LLF: 72.33203558530982
Iteration: 4, Func. Count: 30, Neg. LLF: 68.7120163229825
Iteration: 5, Func. Count: 36, Neg. LLF: 68.56232932678081
Iteration: 6, Func. Count: 42, Neg. LLF: 68.55534272331114
Iteration: 7, Func. Count: 48, Neg. LLF: 68.5391447942672
Iteration: 8, Func. Count: 54, Neg. LLF: 68.5385048828077
Iteration: 9, Func. Count: 60, Neg. LLF: 68.53840220853083
Iteration: 10, Func. Count: 66, Neg. LLF: 68.5383750770533
Iteration: 11, Func. Count: 72, Neg. LLF: 68.53835797837954
Iteration: 12, Func. Count: 78, Neg. LLF: 68.53835676580384
Iteration: 13, Func. Count: 83, Neg. LLF: 68.53835676577589
Optimization terminated successfully (Exit mode 0)
Current function value: 68.53835676580384
Iterations: 13
Function evaluations: 83
Gradient evaluations: 13
Iteration: 1, Func. Count: 8, Neg. LLF: 77.336937190199
Iteration: 2, Func. Count: 18, Neg. LLF: 15244266.692902982
Iteration: 3, Func. Count: 26, Neg. LLF: 248.70121863507907
Iteration: 4, Func. Count: 35, Neg. LLF: 68.67323514437327
Iteration: 5, Func. Count: 42, Neg. LLF: 68.576178448233
Iteration: 6, Func. Count: 49, Neg. LLF: 68.5408915117937
Iteration: 7, Func. Count: 56, Neg. LLF: 68.53901926804464
Iteration: 8, Func. Count: 63, Neg. LLF: 68.53863872291878
Iteration: 9, Func. Count: 70, Neg. LLF: 68.53841723502859
Iteration: 10, Func. Count: 77, Neg. LLF: 68.53836878156243
Iteration: 11, Func. Count: 84, Neg. LLF: 68.53835691605413
Iteration: 12, Func. Count: 90, Neg. LLF: 68.53835693405496
Optimization terminated successfully (Exit mode 0)
Current function value: 68.53835691605413
Iterations: 12
Function evaluations: 90
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 78.7899753518137
Iteration: 2, Func. Count: 20, Neg. LLF: 16050159.844845627
Iteration: 3, Func. Count: 29, Neg. LLF: 5633721.751098231
Iteration: 4, Func. Count: 39, Neg. LLF: 68.55411109919861
Iteration: 5, Func. Count: 47, Neg. LLF: 68.548141489213
Iteration: 6, Func. Count: 55, Neg. LLF: 68.54164518658142
Iteration: 7, Func. Count: 63, Neg. LLF: 68.53863779110094
Iteration: 8, Func. Count: 71, Neg. LLF: 68.53847125175957
Iteration: 9, Func. Count: 79, Neg. LLF: 68.53837479466841
Iteration: 10, Func. Count: 87, Neg. LLF: 68.5383580758776
Iteration: 11, Func. Count: 95, Neg. LLF: 68.53835673638072
Iteration: 12, Func. Count: 102, Neg. LLF: 68.53835674461587
Optimization terminated successfully (Exit mode 0)
Current function value: 68.53835673638072
Iterations: 12
Function evaluations: 102
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 79.18699869669521
Iteration: 2, Func. Count: 22, Neg. LLF: 16474781.571893847
Iteration: 3, Func. Count: 32, Neg. LLF: 5167802.34092962
Iteration: 4, Func. Count: 43, Neg. LLF: 68.59092627237196
Iteration: 5, Func. Count: 52, Neg. LLF: 68.57162921797122
Iteration: 6, Func. Count: 61, Neg. LLF: 68.5443457453549
Iteration: 7, Func. Count: 70, Neg. LLF: 68.53942856156353
Iteration: 8, Func. Count: 79, Neg. LLF: 68.53887738489777
Iteration: 9, Func. Count: 88, Neg. LLF: 68.5383921449014
Iteration: 10, Func. Count: 97, Neg. LLF: 68.53835726804135
Iteration: 11, Func. Count: 106, Neg. LLF: 68.53835671453905
Optimization terminated successfully (Exit mode 0)
Current function value: 68.53835671453905
Iterations: 11
Function evaluations: 106
Gradient evaluations: 11
Iteration: 1, Func. Count: 7, Neg. LLF: 137.55638233237354
Iteration: 2, Func. Count: 17, Neg. LLF: 688.937720901128
Iteration: 3, Func. Count: 25, Neg. LLF: 664.5276585533755
Iteration: 4, Func. Count: 32, Neg. LLF: 69.16665542468402
Iteration: 5, Func. Count: 39, Neg. LLF: 68.44957978826598
Iteration: 6, Func. Count: 45, Neg. LLF: 68.44489879489424
Iteration: 7, Func. Count: 51, Neg. LLF: 68.4436882260617
Iteration: 8, Func. Count: 57, Neg. LLF: 68.44244621598821
Iteration: 9, Func. Count: 63, Neg. LLF: 68.44243838479986
Iteration: 10, Func. Count: 68, Neg. LLF: 68.442438384789
Optimization terminated successfully (Exit mode 0)
Current function value: 68.44243838479986
Iterations: 10
Function evaluations: 68
Gradient evaluations: 10
Iteration: 1, Func. Count: 8, Neg. LLF: 82.08813822693483
Iteration: 2, Func. Count: 18, Neg. LLF: 31142250.991822623
Iteration: 3, Func. Count: 26, Neg. LLF: 8094763.748083166
Iteration: 4, Func. Count: 35, Neg. LLF: 68.72765147213872
Iteration: 5, Func. Count: 42, Neg. LLF: 68.8865987494788
Iteration: 6, Func. Count: 50, Neg. LLF: 68.44865908544007
Iteration: 7, Func. Count: 57, Neg. LLF: 68.44503355243322
Iteration: 8, Func. Count: 64, Neg. LLF: 68.44281636558453
Iteration: 9, Func. Count: 71, Neg. LLF: 68.44254245117612
Iteration: 10, Func. Count: 78, Neg. LLF: 68.44246930394516
Iteration: 11, Func. Count: 85, Neg. LLF: 68.44244652235847
Iteration: 12, Func. Count: 92, Neg. LLF: 68.44243860416135
Iteration: 13, Func. Count: 98, Neg. LLF: 68.44243861031924
Optimization terminated successfully (Exit mode 0)
Current function value: 68.44243860416135
Iterations: 13
Function evaluations: 98
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 82.47649363462516
Iteration: 2, Func. Count: 20, Neg. LLF: 34574256.47240326
Iteration: 3, Func. Count: 29, Neg. LLF: 7112543.951699615
Iteration: 4, Func. Count: 39, Neg. LLF: 68.72041358121336
Iteration: 5, Func. Count: 47, Neg. LLF: 70.31202960477802
Iteration: 6, Func. Count: 56, Neg. LLF: 68.45768717997606
Iteration: 7, Func. Count: 64, Neg. LLF: 68.44590584288007
Iteration: 8, Func. Count: 72, Neg. LLF: 68.44359904975806
Iteration: 9, Func. Count: 80, Neg. LLF: 68.44249280155474
Iteration: 10, Func. Count: 88, Neg. LLF: 68.44246055509106
Iteration: 11, Func. Count: 96, Neg. LLF: 68.44244621620679
Iteration: 12, Func. Count: 104, Neg. LLF: 68.44243935905021
Iteration: 13, Func. Count: 112, Neg. LLF: 68.44243825760661
Iteration: 14, Func. Count: 119, Neg. LLF: 68.44243827344552
Optimization terminated successfully (Exit mode 0)
Current function value: 68.44243825760661
Iterations: 14
Function evaluations: 119
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 81.99751477057714
Iteration: 2, Func. Count: 22, Neg. LLF: 40174609.31415935
Iteration: 3, Func. Count: 32, Neg. LLF: 6378899.845607411
Iteration: 4, Func. Count: 43, Neg. LLF: 68.5088850352403
Iteration: 5, Func. Count: 52, Neg. LLF: 68.7035177376799
Iteration: 6, Func. Count: 62, Neg. LLF: 68.45729878046642
Iteration: 7, Func. Count: 71, Neg. LLF: 68.44271129109694
Iteration: 8, Func. Count: 80, Neg. LLF: 68.44248331174526
Iteration: 9, Func. Count: 89, Neg. LLF: 68.44245477437377
Iteration: 10, Func. Count: 98, Neg. LLF: 68.44244577864285
Iteration: 11, Func. Count: 107, Neg. LLF: 68.44243897017054
Iteration: 12, Func. Count: 116, Neg. LLF: 68.44243824339908
Optimization terminated successfully (Exit mode 0)
Current function value: 68.44243824339908
Iterations: 12
Function evaluations: 116
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 81.71984184675779
Iteration: 2, Func. Count: 24, Neg. LLF: 40797869.786468476
Iteration: 3, Func. Count: 35, Neg. LLF: 6124722.449723932
Iteration: 4, Func. Count: 47, Neg. LLF: 68.82081335592882
Iteration: 5, Func. Count: 57, Neg. LLF: 68.84134365827181
Iteration: 6, Func. Count: 68, Neg. LLF: 68.47790568582778
Iteration: 7, Func. Count: 78, Neg. LLF: 68.46188814062403
Iteration: 8, Func. Count: 88, Neg. LLF: 68.4444165160005
Iteration: 9, Func. Count: 98, Neg. LLF: 68.44266406077917
Iteration: 10, Func. Count: 108, Neg. LLF: 68.44254850953388
Iteration: 11, Func. Count: 118, Neg. LLF: 68.44247411732849
Iteration: 12, Func. Count: 128, Neg. LLF: 68.44244342762241
Iteration: 13, Func. Count: 138, Neg. LLF: 68.44243846261148
Iteration: 14, Func. Count: 147, Neg. LLF: 68.44243847177516
Optimization terminated successfully (Exit mode 0)
Current function value: 68.44243846261148
Iterations: 14
Function evaluations: 147
Gradient evaluations: 14
Iteration: 1, Func. Count: 8, Neg. LLF: 145.85027214543405
Iteration: 2, Func. Count: 19, Neg. LLF: 696.212394658779
Iteration: 3, Func. Count: 28, Neg. LLF: 4373524.65212385
Iteration: 4, Func. Count: 36, Neg. LLF: 69.42080472885003
Iteration: 5, Func. Count: 44, Neg. LLF: 68.4448270839086
Iteration: 6, Func. Count: 51, Neg. LLF: 68.442673539861
Iteration: 7, Func. Count: 58, Neg. LLF: 68.44248193596734
Iteration: 8, Func. Count: 65, Neg. LLF: 68.4424605166355
Iteration: 9, Func. Count: 72, Neg. LLF: 68.44244537598509
Iteration: 10, Func. Count: 79, Neg. LLF: 68.44243987898862
Iteration: 11, Func. Count: 86, Neg. LLF: 68.4424382893319
Iteration: 12, Func. Count: 92, Neg. LLF: 68.4424383358673
Optimization terminated successfully (Exit mode 0)
Current function value: 68.4424382893319
Iterations: 12
Function evaluations: 92
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 75.39382611864158
Iteration: 2, Func. Count: 20, Neg. LLF: 47192285.8759571
Iteration: 3, Func. Count: 29, Neg. LLF: 6887991.789502846
Iteration: 4, Func. Count: 38, Neg. LLF: 68.83074939723619
Iteration: 5, Func. Count: 47, Neg. LLF: 69.58968701459881
Iteration: 6, Func. Count: 57, Neg. LLF: 68.4499456389977
Iteration: 7, Func. Count: 65, Neg. LLF: 68.4437336867269
Iteration: 8, Func. Count: 73, Neg. LLF: 68.44316874239256
Iteration: 9, Func. Count: 81, Neg. LLF: 68.44273433339873
Iteration: 10, Func. Count: 89, Neg. LLF: 68.44256704340756
Iteration: 11, Func. Count: 97, Neg. LLF: 68.44245680710104
Iteration: 12, Func. Count: 105, Neg. LLF: 68.44243962439079
Iteration: 13, Func. Count: 113, Neg. LLF: 68.44243822889936
Iteration: 14, Func. Count: 120, Neg. LLF: 68.44243823501263
Optimization terminated successfully (Exit mode 0)
Current function value: 68.44243822889936
Iterations: 14
Function evaluations: 120
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 77.34160885724027
Iteration: 2, Func. Count: 22, Neg. LLF: 51627307.016635895
Iteration: 3, Func. Count: 32, Neg. LLF: 6896835.888513695
Iteration: 4, Func. Count: 42, Neg. LLF: 69.57391758510856
Iteration: 5, Func. Count: 52, Neg. LLF: 68.90596582083391
Iteration: 6, Func. Count: 62, Neg. LLF: 68.44771535713531
Iteration: 7, Func. Count: 71, Neg. LLF: 68.44289875061405
Iteration: 8, Func. Count: 80, Neg. LLF: 68.44245077028071
Iteration: 9, Func. Count: 89, Neg. LLF: 68.44244442154681
Iteration: 10, Func. Count: 98, Neg. LLF: 68.44244216884047
Iteration: 11, Func. Count: 107, Neg. LLF: 68.44243886425213
Iteration: 12, Func. Count: 115, Neg. LLF: 68.44243888011988
Optimization terminated successfully (Exit mode 0)
Current function value: 68.44243886425213
Iterations: 12
Function evaluations: 115
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 77.84580748393914
Iteration: 2, Func. Count: 24, Neg. LLF: 56355568.26849197
Iteration: 3, Func. Count: 35, Neg. LLF: 6414247.31851426
Iteration: 4, Func. Count: 46, Neg. LLF: 76.7072828908775
Iteration: 5, Func. Count: 58, Neg. LLF: 68.71936972626108
Iteration: 6, Func. Count: 68, Neg. LLF: 68.4702468735524
Iteration: 7, Func. Count: 78, Neg. LLF: 68.44332092452393
Iteration: 8, Func. Count: 88, Neg. LLF: 68.44257956168401
Iteration: 9, Func. Count: 98, Neg. LLF: 68.44251618513304
Iteration: 10, Func. Count: 108, Neg. LLF: 68.44247298451982
Iteration: 11, Func. Count: 118, Neg. LLF: 68.4424543775171
Iteration: 12, Func. Count: 128, Neg. LLF: 68.44244191097684
Iteration: 13, Func. Count: 138, Neg. LLF: 68.44243859368046
Iteration: 14, Func. Count: 147, Neg. LLF: 68.44243860167249
Optimization terminated successfully (Exit mode 0)
Current function value: 68.44243859368046
Iterations: 14
Function evaluations: 147
Gradient evaluations: 14
Iteration: 1, Func. Count: 12, Neg. LLF: 78.04953344329999
Iteration: 2, Func. Count: 26, Neg. LLF: 57192970.41190443
Iteration: 3, Func. Count: 38, Neg. LLF: 6239195.984970531
Iteration: 4, Func. Count: 50, Neg. LLF: 87.59367612152192
Iteration: 5, Func. Count: 63, Neg. LLF: 68.69691168428363
Iteration: 6, Func. Count: 74, Neg. LLF: 68.46858221492488
Iteration: 7, Func. Count: 85, Neg. LLF: 68.44357133919308
Iteration: 8, Func. Count: 96, Neg. LLF: 68.44274700534567
Iteration: 9, Func. Count: 107, Neg. LLF: 68.44257415098531
Iteration: 10, Func. Count: 118, Neg. LLF: 68.44250944717238
Iteration: 11, Func. Count: 129, Neg. LLF: 68.44246879579869
Iteration: 12, Func. Count: 140, Neg. LLF: 68.44244739641185
Iteration: 13, Func. Count: 151, Neg. LLF: 68.4424392436883
Iteration: 14, Func. Count: 162, Neg. LLF: 68.44243824547482
Optimization terminated successfully (Exit mode 0)
Current function value: 68.44243824547482
Iterations: 14
Function evaluations: 162
Gradient evaluations: 14
Iteration: 1, Func. Count: 5, Neg. LLF: 244.4205999288251
Iteration: 2, Func. Count: 12, Neg. LLF: 449.203675456897
Iteration: 3, Func. Count: 18, Neg. LLF: 69.68766737918072
Iteration: 4, Func. Count: 22, Neg. LLF: 261.3129975844641
Iteration: 5, Func. Count: 27, Neg. LLF: 69.35063770213473
Iteration: 6, Func. Count: 31, Neg. LLF: 69.17414664540715
Iteration: 7, Func. Count: 35, Neg. LLF: 69.15144506346205
Iteration: 8, Func. Count: 39, Neg. LLF: 69.14960088197412
Iteration: 9, Func. Count: 43, Neg. LLF: 69.14951193108274
Iteration: 10, Func. Count: 47, Neg. LLF: 69.14950524116793
Iteration: 11, Func. Count: 50, Neg. LLF: 69.14950524119868
Optimization terminated successfully (Exit mode 0)
Current function value: 69.14950524116793
Iterations: 11
Function evaluations: 50
Gradient evaluations: 11
Iteration: 1, Func. Count: 6, Neg. LLF: 127.42779351974139
Iteration: 2, Func. Count: 13, Neg. LLF: 93.7768062893465
Iteration: 3, Func. Count: 20, Neg. LLF: 71.01774329857706
Iteration: 4, Func. Count: 26, Neg. LLF: 70.39047501505128
Iteration: 5, Func. Count: 33, Neg. LLF: 68.85703387844764
Iteration: 6, Func. Count: 39, Neg. LLF: 68.83336902709169
Iteration: 7, Func. Count: 44, Neg. LLF: 68.83335507513725
Iteration: 8, Func. Count: 48, Neg. LLF: 68.83335507512204
Optimization terminated successfully (Exit mode 0)
Current function value: 68.83335507513725
Iterations: 8
Function evaluations: 48
Gradient evaluations: 8
Iteration: 1, Func. Count: 7, Neg. LLF: 117.60147639492153
Iteration: 2, Func. Count: 15, Neg. LLF: 75.3783779324041
Iteration: 3, Func. Count: 23, Neg. LLF: 71.06942104875401
Iteration: 4, Func. Count: 30, Neg. LLF: 69.62489592573388
Iteration: 5, Func. Count: 37, Neg. LLF: 68.59031905421548
Iteration: 6, Func. Count: 43, Neg. LLF: 68.57796981813226
Iteration: 7, Func. Count: 49, Neg. LLF: 68.57532139892491
Iteration: 8, Func. Count: 55, Neg. LLF: 68.57200910156165
Iteration: 9, Func. Count: 61, Neg. LLF: 68.57179471603476
Iteration: 10, Func. Count: 67, Neg. LLF: 68.57179064263958
Iteration: 11, Func. Count: 72, Neg. LLF: 68.57179064263089
Optimization terminated successfully (Exit mode 0)
Current function value: 68.57179064263958
Iterations: 11
Function evaluations: 72
Gradient evaluations: 11
Iteration: 1, Func. Count: 8, Neg. LLF: 111.44435112542835
Iteration: 2, Func. Count: 17, Neg. LLF: 8510100.852104895
Iteration: 3, Func. Count: 26, Neg. LLF: 72.64829561920982
Iteration: 4, Func. Count: 34, Neg. LLF: 72.12398074134764
Iteration: 5, Func. Count: 42, Neg. LLF: 68.57302701334798
Iteration: 6, Func. Count: 49, Neg. LLF: 68.57185719819078
Iteration: 7, Func. Count: 56, Neg. LLF: 68.5718141781998
Iteration: 8, Func. Count: 63, Neg. LLF: 68.57179602446335
Iteration: 9, Func. Count: 70, Neg. LLF: 68.57179098210815
Iteration: 10, Func. Count: 76, Neg. LLF: 68.57179100486078
Optimization terminated successfully (Exit mode 0)
Current function value: 68.57179098210815
Iterations: 10
Function evaluations: 76
Gradient evaluations: 10
Iteration: 1, Func. Count: 9, Neg. LLF: 119.80669557489392
Iteration: 2, Func. Count: 19, Neg. LLF: 5896659.122301277
Iteration: 3, Func. Count: 29, Neg. LLF: 73.87476777146388
Iteration: 4, Func. Count: 38, Neg. LLF: 71.95345758224401
Iteration: 5, Func. Count: 47, Neg. LLF: 68.57980331156466
Iteration: 6, Func. Count: 55, Neg. LLF: 68.57247506229585
Iteration: 7, Func. Count: 63, Neg. LLF: 68.57179556330556
Iteration: 8, Func. Count: 71, Neg. LLF: 68.57179142266784
Iteration: 9, Func. Count: 79, Neg. LLF: 68.571790639011
Optimization terminated successfully (Exit mode 0)
Current function value: 68.571790639011
Iterations: 9
Function evaluations: 79
Gradient evaluations: 9
Iteration: 1, Func. Count: 6, Neg. LLF: 247.13281650387177
Iteration: 2, Func. Count: 14, Neg. LLF: 195.08848129668138
Iteration: 3, Func. Count: 22, Neg. LLF: 69.67258136903875
Iteration: 4, Func. Count: 27, Neg. LLF: 72.43441218199422
Iteration: 5, Func. Count: 33, Neg. LLF: 68.7106532326232
Iteration: 6, Func. Count: 38, Neg. LLF: 68.61049390525692
Iteration: 7, Func. Count: 43, Neg. LLF: 68.59965336642102
Iteration: 8, Func. Count: 48, Neg. LLF: 68.5968876603415
Iteration: 9, Func. Count: 53, Neg. LLF: 68.5963668474202
Iteration: 10, Func. Count: 58, Neg. LLF: 68.5963503150074
Iteration: 11, Func. Count: 62, Neg. LLF: 68.59635023563625
Optimization terminated successfully (Exit mode 0)
Current function value: 68.5963503150074
Iterations: 11
Function evaluations: 62
Gradient evaluations: 11
Iteration: 1, Func. Count: 7, Neg. LLF: 112.96258060170298
Iteration: 2, Func. Count: 15, Neg. LLF: 2980384.7251525745
Iteration: 3, Func. Count: 23, Neg. LLF: 80.44370909381536
Iteration: 4, Func. Count: 31, Neg. LLF: 68.8302425655626
Iteration: 5, Func. Count: 38, Neg. LLF: 68.66338523117447
Iteration: 6, Func. Count: 44, Neg. LLF: 68.6556544963459
Iteration: 7, Func. Count: 50, Neg. LLF: 68.65539890956948
Iteration: 8, Func. Count: 56, Neg. LLF: 68.65536262293442
Iteration: 9, Func. Count: 61, Neg. LLF: 68.65536262281145
Optimization terminated successfully (Exit mode 0)
Current function value: 68.65536262293442
Iterations: 9
Function evaluations: 61
Gradient evaluations: 9
Iteration: 1, Func. Count: 8, Neg. LLF: 115.67958012536785
Iteration: 2, Func. Count: 17, Neg. LLF: 14128.392750047766
Iteration: 3, Func. Count: 26, Neg. LLF: 89.607873590238
Iteration: 4, Func. Count: 35, Neg. LLF: 67.83505301240322
Iteration: 5, Func. Count: 42, Neg. LLF: 67.68649956806583
Iteration: 6, Func. Count: 49, Neg. LLF: 67.64912547548256
Iteration: 7, Func. Count: 56, Neg. LLF: 67.61581458512094
Iteration: 8, Func. Count: 63, Neg. LLF: 67.61086314753784
Iteration: 9, Func. Count: 70, Neg. LLF: 67.61055203163377
Iteration: 10, Func. Count: 77, Neg. LLF: 67.61055095434452
Iteration: 11, Func. Count: 83, Neg. LLF: 67.61055095430284
Optimization terminated successfully (Exit mode 0)
Current function value: 67.61055095434452
Iterations: 11
Function evaluations: 83
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 101.57917251954424
Iteration: 2, Func. Count: 19, Neg. LLF: 17962197.183046646
Iteration: 3, Func. Count: 29, Neg. LLF: 82.14289824697576
Iteration: 4, Func. Count: 38, Neg. LLF: 70.98963656983767
Iteration: 5, Func. Count: 47, Neg. LLF: 67.64632541118175
Iteration: 6, Func. Count: 55, Neg. LLF: 67.6226893229498
Iteration: 7, Func. Count: 63, Neg. LLF: 67.6110310486638
Iteration: 8, Func. Count: 71, Neg. LLF: 67.61059521032209
Iteration: 9, Func. Count: 79, Neg. LLF: 67.61055877978893
Iteration: 10, Func. Count: 87, Neg. LLF: 67.61055329609836
Iteration: 11, Func. Count: 95, Neg. LLF: 67.61055092261283
Iteration: 12, Func. Count: 102, Neg. LLF: 67.61055096157091
Optimization terminated successfully (Exit mode 0)
Current function value: 67.61055092261283
Iterations: 12
Function evaluations: 102
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 101.48624544796114
Iteration: 2, Func. Count: 21, Neg. LLF: 340789.10705140163
Iteration: 3, Func. Count: 31, Neg. LLF: 76.33089396384781
Iteration: 4, Func. Count: 41, Neg. LLF: 70.26957473242966
Iteration: 5, Func. Count: 51, Neg. LLF: 68.42843231015797
Iteration: 6, Func. Count: 61, Neg. LLF: 67.63315144862656
Iteration: 7, Func. Count: 70, Neg. LLF: 67.61639599193828
Iteration: 8, Func. Count: 79, Neg. LLF: 67.61081827620889
Iteration: 9, Func. Count: 88, Neg. LLF: 67.61058078055514
Iteration: 10, Func. Count: 97, Neg. LLF: 67.6105572984373
Iteration: 11, Func. Count: 106, Neg. LLF: 67.61055251995003
Iteration: 12, Func. Count: 115, Neg. LLF: 67.61055086466945
Iteration: 13, Func. Count: 123, Neg. LLF: 67.6105508904849
Optimization terminated successfully (Exit mode 0)
Current function value: 67.61055086466945
Iterations: 13
Function evaluations: 123
Gradient evaluations: 13
Iteration: 1, Func. Count: 7, Neg. LLF: 156.6273854867755
Iteration: 2, Func. Count: 17, Neg. LLF: 365.9540386567273
Iteration: 3, Func. Count: 25, Neg. LLF: 7068391.7010555435
Iteration: 4, Func. Count: 32, Neg. LLF: 67.96804134909775
Iteration: 5, Func. Count: 38, Neg. LLF: 67.30901807305555
Iteration: 6, Func. Count: 44, Neg. LLF: 67.28218326166117
Iteration: 7, Func. Count: 50, Neg. LLF: 67.27389794853231
Iteration: 8, Func. Count: 56, Neg. LLF: 67.26943310898562
Iteration: 9, Func. Count: 62, Neg. LLF: 67.26925307160657
Iteration: 10, Func. Count: 68, Neg. LLF: 67.26924769714697
Iteration: 11, Func. Count: 74, Neg. LLF: 67.26924691660669
Optimization terminated successfully (Exit mode 0)
Current function value: 67.26924691660669
Iterations: 11
Function evaluations: 74
Gradient evaluations: 11
Iteration: 1, Func. Count: 8, Neg. LLF: 93.62769139210891
Iteration: 2, Func. Count: 17, Neg. LLF: 3845693.4583331114
Iteration: 3, Func. Count: 25, Neg. LLF: 3762333.8914031363
Iteration: 4, Func. Count: 34, Neg. LLF: 67.76206043265078
Iteration: 5, Func. Count: 41, Neg. LLF: 67.37429493962433
Iteration: 6, Func. Count: 48, Neg. LLF: 67.28833648429827
Iteration: 7, Func. Count: 55, Neg. LLF: 67.2770054281494
Iteration: 8, Func. Count: 62, Neg. LLF: 67.27219955883535
Iteration: 9, Func. Count: 69, Neg. LLF: 67.26986294028745
Iteration: 10, Func. Count: 76, Neg. LLF: 67.2693099128264
Iteration: 11, Func. Count: 83, Neg. LLF: 67.26924829369707
Iteration: 12, Func. Count: 90, Neg. LLF: 67.26924655417432
Iteration: 13, Func. Count: 96, Neg. LLF: 67.26924658097546
Optimization terminated successfully (Exit mode 0)
Current function value: 67.26924655417432
Iterations: 13
Function evaluations: 96
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 83.872163938183
Iteration: 2, Func. Count: 19, Neg. LLF: 5038307.795038334
Iteration: 3, Func. Count: 28, Neg. LLF: 2770109.7854825323
Iteration: 4, Func. Count: 37, Neg. LLF: 67.31310918326524
Iteration: 5, Func. Count: 45, Neg. LLF: 67.28084385152243
Iteration: 6, Func. Count: 53, Neg. LLF: 68.79536350745985
Iteration: 7, Func. Count: 62, Neg. LLF: 67.27060351378309
Iteration: 8, Func. Count: 70, Neg. LLF: 67.26965637065067
Iteration: 9, Func. Count: 78, Neg. LLF: 67.2693867272266
Iteration: 10, Func. Count: 86, Neg. LLF: 67.26925817947509
Iteration: 11, Func. Count: 94, Neg. LLF: 67.26924700771914
Iteration: 12, Func. Count: 101, Neg. LLF: 67.26924700823852
Optimization terminated successfully (Exit mode 0)
Current function value: 67.26924700771914
Iterations: 12
Function evaluations: 101
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 93.3067309712803
Iteration: 2, Func. Count: 21, Neg. LLF: 719269.8619072106
Iteration: 3, Func. Count: 31, Neg. LLF: 3670012.030118066
Iteration: 4, Func. Count: 41, Neg. LLF: 68.35903016341143
Iteration: 5, Func. Count: 51, Neg. LLF: 67.42991943502724
Iteration: 6, Func. Count: 60, Neg. LLF: 67.30105859616303
Iteration: 7, Func. Count: 69, Neg. LLF: 67.2762693018866
Iteration: 8, Func. Count: 78, Neg. LLF: 67.26965609801056
Iteration: 9, Func. Count: 87, Neg. LLF: 67.26926598077331
Iteration: 10, Func. Count: 96, Neg. LLF: 67.26924976507136
Iteration: 11, Func. Count: 105, Neg. LLF: 67.26924828334971
Iteration: 12, Func. Count: 114, Neg. LLF: 67.26924654903613
Iteration: 13, Func. Count: 122, Neg. LLF: 67.2692465640822
Optimization terminated successfully (Exit mode 0)
Current function value: 67.26924654903613
Iterations: 13
Function evaluations: 122
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 87.29668987116851
Iteration: 2, Func. Count: 24, Neg. LLF: 3378256.2529924274
Iteration: 3, Func. Count: 35, Neg. LLF: 4034465.271227114
Iteration: 4, Func. Count: 46, Neg. LLF: 67.68915598515028
Iteration: 5, Func. Count: 56, Neg. LLF: 69.13716845314073
Iteration: 6, Func. Count: 67, Neg. LLF: 67.29362575675985
Iteration: 7, Func. Count: 77, Neg. LLF: 67.27816885133274
Iteration: 8, Func. Count: 87, Neg. LLF: 67.26936304118284
Iteration: 9, Func. Count: 97, Neg. LLF: 67.2692760776258
Iteration: 10, Func. Count: 107, Neg. LLF: 67.26925818713802
Iteration: 11, Func. Count: 117, Neg. LLF: 67.26924694095392
Iteration: 12, Func. Count: 126, Neg. LLF: 67.26924696420292
Optimization terminated successfully (Exit mode 0)
Current function value: 67.26924694095392
Iterations: 12
Function evaluations: 126
Gradient evaluations: 12
Iteration: 1, Func. Count: 8, Neg. LLF: 152.4868738023532
Iteration: 2, Func. Count: 19, Neg. LLF: 169.54674242155684
Iteration: 3, Func. Count: 28, Neg. LLF: 2983715.255474408
Iteration: 4, Func. Count: 36, Neg. LLF: 67.61868229346254
Iteration: 5, Func. Count: 43, Neg. LLF: 80.64617876803877
Iteration: 6, Func. Count: 51, Neg. LLF: 67.32447268852609
Iteration: 7, Func. Count: 58, Neg. LLF: 67.28246569296743
Iteration: 8, Func. Count: 65, Neg. LLF: 67.32393044761844
Iteration: 9, Func. Count: 73, Neg. LLF: 67.26875095809471
Iteration: 10, Func. Count: 80, Neg. LLF: 67.26867687569155
Iteration: 11, Func. Count: 87, Neg. LLF: 67.2685959656574
Iteration: 12, Func. Count: 94, Neg. LLF: 67.2685910272101
Iteration: 13, Func. Count: 100, Neg. LLF: 67.26859102722062
Optimization terminated successfully (Exit mode 0)
Current function value: 67.2685910272101
Iterations: 13
Function evaluations: 100
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 100.3511487336002
Iteration: 2, Func. Count: 19, Neg. LLF: 927872.8698811694
Iteration: 3, Func. Count: 28, Neg. LLF: 3476884.992639889
Iteration: 4, Func. Count: 37, Neg. LLF: 68.66139054995415
Iteration: 5, Func. Count: 47, Neg. LLF: 67.51438725029116
Iteration: 6, Func. Count: 55, Neg. LLF: 67.28331559613734
Iteration: 7, Func. Count: 63, Neg. LLF: 67.27985991103256
Iteration: 8, Func. Count: 71, Neg. LLF: 67.31024341826557
Iteration: 9, Func. Count: 80, Neg. LLF: 67.2704440880812
Iteration: 10, Func. Count: 88, Neg. LLF: 67.26927037528573
Iteration: 11, Func. Count: 96, Neg. LLF: 67.26864076885086
Iteration: 12, Func. Count: 104, Neg. LLF: 67.26859738003198
Iteration: 13, Func. Count: 112, Neg. LLF: 67.26859047421486
Iteration: 14, Func. Count: 119, Neg. LLF: 67.2685905018746
Optimization terminated successfully (Exit mode 0)
Current function value: 67.26859047421486
Iterations: 14
Function evaluations: 119
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 89.55155786887447
Iteration: 2, Func. Count: 21, Neg. LLF: 923116.9425769808
Iteration: 3, Func. Count: 31, Neg. LLF: 3512384.0823129695
Iteration: 4, Func. Count: 41, Neg. LLF: 68.55353450240105
Iteration: 5, Func. Count: 51, Neg. LLF: 67.53267933862189
Iteration: 6, Func. Count: 60, Neg. LLF: 67.3172352725264
Iteration: 7, Func. Count: 69, Neg. LLF: 67.30131309457737
Iteration: 8, Func. Count: 78, Neg. LLF: 67.28002488782887
Iteration: 9, Func. Count: 87, Neg. LLF: 67.27140818654296
Iteration: 10, Func. Count: 96, Neg. LLF: 67.27018282857532
Iteration: 11, Func. Count: 105, Neg. LLF: 67.26888055273503
Iteration: 12, Func. Count: 114, Neg. LLF: 67.26874237452455
Iteration: 13, Func. Count: 123, Neg. LLF: 67.26860792300437
Iteration: 14, Func. Count: 132, Neg. LLF: 67.26859107853602
Iteration: 15, Func. Count: 141, Neg. LLF: 67.26859043782699
Optimization terminated successfully (Exit mode 0)
Current function value: 67.26859043782699
Iterations: 15
Function evaluations: 141
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 98.91901487304804
Iteration: 2, Func. Count: 23, Neg. LLF: 831321.7477558453
Iteration: 3, Func. Count: 34, Neg. LLF: 3290369.3175549083
Iteration: 4, Func. Count: 45, Neg. LLF: 68.62671082173779
Iteration: 5, Func. Count: 56, Neg. LLF: 68.3030051528816
Iteration: 6, Func. Count: 67, Neg. LLF: 67.28705634644231
Iteration: 7, Func. Count: 77, Neg. LLF: 67.27656350322987
Iteration: 8, Func. Count: 87, Neg. LLF: 67.36443175565111
Iteration: 9, Func. Count: 98, Neg. LLF: 67.27104340803544
Iteration: 10, Func. Count: 108, Neg. LLF: 67.26861679008738
Iteration: 11, Func. Count: 118, Neg. LLF: 67.26860066312882
Iteration: 12, Func. Count: 128, Neg. LLF: 67.26859565008542
Iteration: 13, Func. Count: 138, Neg. LLF: 67.26859137933084
Iteration: 14, Func. Count: 148, Neg. LLF: 67.26859051306937
Optimization terminated successfully (Exit mode 0)
Current function value: 67.26859051306937
Iterations: 14
Function evaluations: 148
Gradient evaluations: 14
Iteration: 1, Func. Count: 12, Neg. LLF: 75.28002301309299
Iteration: 2, Func. Count: 26, Neg. LLF: 2095062.0354442992
Iteration: 3, Func. Count: 38, Neg. LLF: 5154853.601465837
Iteration: 4, Func. Count: 51, Neg. LLF: 73.11109684115576
Iteration: 5, Func. Count: 63, Neg. LLF: 67.28454852021403
Iteration: 6, Func. Count: 74, Neg. LLF: 67.31405835927126
Iteration: 7, Func. Count: 86, Neg. LLF: 67.2710620635924
Iteration: 8, Func. Count: 97, Neg. LLF: 67.26908794944423
Iteration: 9, Func. Count: 108, Neg. LLF: 67.26876445369815
Iteration: 10, Func. Count: 119, Neg. LLF: 67.26865253090575
Iteration: 11, Func. Count: 130, Neg. LLF: 67.26859890627648
Iteration: 12, Func. Count: 141, Neg. LLF: 67.26859088289805
Iteration: 13, Func. Count: 151, Neg. LLF: 67.26859090618164
Optimization terminated successfully (Exit mode 0)
Current function value: 67.26859088289805
Iterations: 13
Function evaluations: 151
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 163.8990465044541
Iteration: 2, Func. Count: 21, Neg. LLF: 177.44143834212483
Iteration: 3, Func. Count: 31, Neg. LLF: 2962604.039188605
Iteration: 4, Func. Count: 40, Neg. LLF: 70.52848795833452
Iteration: 5, Func. Count: 49, Neg. LLF: 69.07175043451464
Iteration: 6, Func. Count: 58, Neg. LLF: 67.28429886385013
Iteration: 7, Func. Count: 66, Neg. LLF: 67.4813257131259
Iteration: 8, Func. Count: 75, Neg. LLF: 67.27664865967219
Iteration: 9, Func. Count: 83, Neg. LLF: 67.27270946614526
Iteration: 10, Func. Count: 91, Neg. LLF: 67.26942100375608
Iteration: 11, Func. Count: 99, Neg. LLF: 67.26870484737671
Iteration: 12, Func. Count: 107, Neg. LLF: 67.26861028234316
Iteration: 13, Func. Count: 115, Neg. LLF: 67.26859660729146
Iteration: 14, Func. Count: 123, Neg. LLF: 67.26859091165186
Iteration: 15, Func. Count: 130, Neg. LLF: 67.26859096497357
Optimization terminated successfully (Exit mode 0)
Current function value: 67.26859091165186
Iterations: 15
Function evaluations: 130
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 128.03339152863467
Iteration: 2, Func. Count: 21, Neg. LLF: 903682.4468543436
Iteration: 3, Func. Count: 31, Neg. LLF: 69.21251871659463
Iteration: 4, Func. Count: 42, Neg. LLF: 67.92015984611899
Iteration: 5, Func. Count: 51, Neg. LLF: 71.65988275425778
Iteration: 6, Func. Count: 62, Neg. LLF: 68.13775316515027
Iteration: 7, Func. Count: 72, Neg. LLF: 67.28621545864688
Iteration: 8, Func. Count: 81, Neg. LLF: 68.08091518080144
Iteration: 9, Func. Count: 91, Neg. LLF: 67.28988634182376
Iteration: 10, Func. Count: 101, Neg. LLF: 67.26870752912723
Iteration: 11, Func. Count: 110, Neg. LLF: 67.26864551845969
Iteration: 12, Func. Count: 119, Neg. LLF: 67.26860920028356
Iteration: 13, Func. Count: 128, Neg. LLF: 67.2685945231946
Iteration: 14, Func. Count: 137, Neg. LLF: 67.26859063767218
Iteration: 15, Func. Count: 145, Neg. LLF: 67.26859066537769
Optimization terminated successfully (Exit mode 0)
Current function value: 67.26859063767218
Iterations: 15
Function evaluations: 145
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 158.77256392790233
Iteration: 2, Func. Count: 23, Neg. LLF: 757680.3753179774
Iteration: 3, Func. Count: 34, Neg. LLF: 70.22247442738956
Iteration: 4, Func. Count: 46, Neg. LLF: 159.49554505458204
Iteration: 5, Func. Count: 57, Neg. LLF: 67.43233476839333
Iteration: 6, Func. Count: 67, Neg. LLF: 67.31338861444529
Iteration: 7, Func. Count: 77, Neg. LLF: 67.29833230709974
Iteration: 8, Func. Count: 87, Neg. LLF: 67.27229274123276
Iteration: 9, Func. Count: 97, Neg. LLF: 67.27042401130643
Iteration: 10, Func. Count: 107, Neg. LLF: 67.2705090975711
Iteration: 11, Func. Count: 118, Neg. LLF: 67.27201586621132
Iteration: 12, Func. Count: 129, Neg. LLF: 67.27008327449106
Iteration: 13, Func. Count: 139, Neg. LLF: 67.26997953883563
Iteration: 14, Func. Count: 149, Neg. LLF: 67.2696687136955
Iteration: 15, Func. Count: 159, Neg. LLF: 67.26879673003523
Iteration: 16, Func. Count: 169, Neg. LLF: 67.26875191346254
Iteration: 17, Func. Count: 179, Neg. LLF: 67.26864174795087
Iteration: 18, Func. Count: 189, Neg. LLF: 67.26860065410854
Iteration: 19, Func. Count: 199, Neg. LLF: 67.26859108639144
Iteration: 20, Func. Count: 209, Neg. LLF: 67.26859045827597
Optimization terminated successfully (Exit mode 0)
Current function value: 67.26859045827597
Iterations: 20
Function evaluations: 209
Gradient evaluations: 20
Iteration: 1, Func. Count: 12, Neg. LLF: 106.98104285395847
Iteration: 2, Func. Count: 25, Neg. LLF: 571638.9646744409
Iteration: 3, Func. Count: 37, Neg. LLF: 3425041.3179762173
Iteration: 4, Func. Count: 49, Neg. LLF: 69.05148392208947
Iteration: 5, Func. Count: 61, Neg. LLF: 70.19727778297029
Iteration: 6, Func. Count: 73, Neg. LLF: 67.38927883374534
Iteration: 7, Func. Count: 84, Neg. LLF: 67.28025235776802
Iteration: 8, Func. Count: 95, Neg. LLF: 67.29550335128981
Iteration: 9, Func. Count: 107, Neg. LLF: 67.2751049274089
Iteration: 10, Func. Count: 119, Neg. LLF: 67.27018247357312
Iteration: 11, Func. Count: 130, Neg. LLF: 67.2700869814501
Iteration: 12, Func. Count: 141, Neg. LLF: 67.27004534431508
Iteration: 13, Func. Count: 152, Neg. LLF: 67.26998649034222
Iteration: 14, Func. Count: 163, Neg. LLF: 67.26978468596627
Iteration: 15, Func. Count: 174, Neg. LLF: 67.26882247359192
Iteration: 16, Func. Count: 185, Neg. LLF: 67.26874978752292
Iteration: 17, Func. Count: 196, Neg. LLF: 67.26862675310178
Iteration: 18, Func. Count: 207, Neg. LLF: 67.26859634676843
Iteration: 19, Func. Count: 218, Neg. LLF: 67.26859078558513
Iteration: 20, Func. Count: 228, Neg. LLF: 67.26859080084708
Optimization terminated successfully (Exit mode 0)
Current function value: 67.26859078558513
Iterations: 20
Function evaluations: 228
Gradient evaluations: 20
Iteration: 1, Func. Count: 13, Neg. LLF: 106.28321012570366
Iteration: 2, Func. Count: 27, Neg. LLF: 698417.5634381933
Iteration: 3, Func. Count: 40, Neg. LLF: 2986384.5878892
Iteration: 4, Func. Count: 53, Neg. LLF: 70.70413065421161
Iteration: 5, Func. Count: 66, Neg. LLF: 72.06845319420908
Iteration: 6, Func. Count: 79, Neg. LLF: 67.27614705237775
Iteration: 7, Func. Count: 91, Neg. LLF: 67.53418782101393
Iteration: 8, Func. Count: 104, Neg. LLF: 67.26904885682593
Iteration: 9, Func. Count: 116, Neg. LLF: 67.26874416612277
Iteration: 10, Func. Count: 128, Neg. LLF: 67.26863565650572
Iteration: 11, Func. Count: 140, Neg. LLF: 67.26860395281463
Iteration: 12, Func. Count: 152, Neg. LLF: 67.26859106748006
Iteration: 13, Func. Count: 164, Neg. LLF: 67.26859045234352
Optimization terminated successfully (Exit mode 0)
Current function value: 67.26859045234352
Iterations: 13
Function evaluations: 164
Gradient evaluations: 13
Iteration: 1, Func. Count: 6, Neg. LLF: 154.18082419602774
Iteration: 2, Func. Count: 15, Neg. LLF: 163.12190517089817
Iteration: 3, Func. Count: 22, Neg. LLF: 69.69748026619251
Iteration: 4, Func. Count: 28, Neg. LLF: 69.40940443745968
Iteration: 5, Func. Count: 34, Neg. LLF: 70.14894014264735
Iteration: 6, Func. Count: 41, Neg. LLF: 69.05124313730292
Iteration: 7, Func. Count: 47, Neg. LLF: 69.04171117313471
Iteration: 8, Func. Count: 52, Neg. LLF: 69.04167488175862
Iteration: 9, Func. Count: 57, Neg. LLF: 69.04167349011173
Iteration: 10, Func. Count: 61, Neg. LLF: 69.04167349009225
Optimization terminated successfully (Exit mode 0)
Current function value: 69.04167349011173
Iterations: 10
Function evaluations: 61
Gradient evaluations: 10
Iteration: 1, Func. Count: 7, Neg. LLF: 204.0817158850663
Iteration: 2, Func. Count: 15, Neg. LLF: 79.867542316206
Iteration: 3, Func. Count: 23, Neg. LLF: 68.97116461739785
Iteration: 4, Func. Count: 30, Neg. LLF: 69.05609488032115
Iteration: 5, Func. Count: 37, Neg. LLF: 68.83831941193924
Iteration: 6, Func. Count: 44, Neg. LLF: 68.81391713799192
Iteration: 7, Func. Count: 50, Neg. LLF: 68.81363404544034
Iteration: 8, Func. Count: 56, Neg. LLF: 68.81362338055548
Iteration: 9, Func. Count: 62, Neg. LLF: 68.81362195670363
Iteration: 10, Func. Count: 67, Neg. LLF: 68.81362195670685
Optimization terminated successfully (Exit mode 0)
Current function value: 68.81362195670363
Iterations: 10
Function evaluations: 67
Gradient evaluations: 10
Iteration: 1, Func. Count: 8, Neg. LLF: 204.49961290944853
Iteration: 2, Func. Count: 17, Neg. LLF: 103.16456598588435
Iteration: 3, Func. Count: 26, Neg. LLF: 75.577737219755
Iteration: 4, Func. Count: 35, Neg. LLF: 69.1454911175428
Iteration: 5, Func. Count: 43, Neg. LLF: 68.72790462119943
Iteration: 6, Func. Count: 50, Neg. LLF: 68.57733996454732
Iteration: 7, Func. Count: 57, Neg. LLF: 68.57302929990782
Iteration: 8, Func. Count: 64, Neg. LLF: 68.57245483943481
Iteration: 9, Func. Count: 71, Neg. LLF: 68.57209395615594
Iteration: 10, Func. Count: 78, Neg. LLF: 68.57185315946828
Iteration: 11, Func. Count: 85, Neg. LLF: 68.5717961692482
Iteration: 12, Func. Count: 92, Neg. LLF: 68.5717907483385
Iteration: 13, Func. Count: 98, Neg. LLF: 68.57179074835476
Optimization terminated successfully (Exit mode 0)
Current function value: 68.5717907483385
Iterations: 13
Function evaluations: 98
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 97.81555342843534
Iteration: 2, Func. Count: 19, Neg. LLF: 1521.8463767486091
Iteration: 3, Func. Count: 29, Neg. LLF: 72.2303623939938
Iteration: 4, Func. Count: 39, Neg. LLF: 68.75863893754568
Iteration: 5, Func. Count: 47, Neg. LLF: 68.67274341226566
Iteration: 6, Func. Count: 55, Neg. LLF: 68.57746596551965
Iteration: 7, Func. Count: 63, Neg. LLF: 68.57406600695774
Iteration: 8, Func. Count: 71, Neg. LLF: 68.57186200470906
Iteration: 9, Func. Count: 79, Neg. LLF: 68.5717931293314
Iteration: 10, Func. Count: 87, Neg. LLF: 68.57179062049335
Iteration: 11, Func. Count: 94, Neg. LLF: 68.5717906431544
Optimization terminated successfully (Exit mode 0)
Current function value: 68.57179062049335
Iterations: 11
Function evaluations: 94
Gradient evaluations: 11
Iteration: 1, Func. Count: 10, Neg. LLF: 94.99935175454678
Iteration: 2, Func. Count: 21, Neg. LLF: 2830.854857788354
Iteration: 3, Func. Count: 32, Neg. LLF: 69.2194300376898
Iteration: 4, Func. Count: 42, Neg. LLF: 68.59801400778463
Iteration: 5, Func. Count: 51, Neg. LLF: 68.78357433792233
Iteration: 6, Func. Count: 61, Neg. LLF: 68.57347509402796
Iteration: 7, Func. Count: 70, Neg. LLF: 68.57250479601962
Iteration: 8, Func. Count: 79, Neg. LLF: 68.57194008893967
Iteration: 9, Func. Count: 88, Neg. LLF: 68.57180070751613
Iteration: 10, Func. Count: 97, Neg. LLF: 68.57179086190713
Iteration: 11, Func. Count: 105, Neg. LLF: 68.57179088206837
Optimization terminated successfully (Exit mode 0)
Current function value: 68.57179086190713
Iterations: 11
Function evaluations: 105
Gradient evaluations: 11
Iteration: 1, Func. Count: 7, Neg. LLF: 154.06372436865246
Iteration: 2, Func. Count: 17, Neg. LLF: 162.00940790114817
Iteration: 3, Func. Count: 25, Neg. LLF: 74.91274450229967
Iteration: 4, Func. Count: 32, Neg. LLF: 68.60975030909803
Iteration: 5, Func. Count: 38, Neg. LLF: 70.43443435890929
Iteration: 6, Func. Count: 45, Neg. LLF: 68.57518373335355
Iteration: 7, Func. Count: 52, Neg. LLF: 68.46942132006613
Iteration: 8, Func. Count: 58, Neg. LLF: 68.46805900080551
Iteration: 9, Func. Count: 64, Neg. LLF: 68.4680168256449
Iteration: 10, Func. Count: 70, Neg. LLF: 68.46801197516115
Iteration: 11, Func. Count: 75, Neg. LLF: 68.4680119013498
Optimization terminated successfully (Exit mode 0)
Current function value: 68.46801197516115
Iterations: 11
Function evaluations: 75
Gradient evaluations: 11
Iteration: 1, Func. Count: 8, Neg. LLF: 12190372.482463583
Iteration: 2, Func. Count: 16, Neg. LLF: 88.87188162817576
Iteration: 3, Func. Count: 25, Neg. LLF: 115.10596711480424
Iteration: 4, Func. Count: 34, Neg. LLF: 68.74139614755643
Iteration: 5, Func. Count: 42, Neg. LLF: 68.98845228652331
Iteration: 6, Func. Count: 50, Neg. LLF: 68.59954644953869
Iteration: 7, Func. Count: 58, Neg. LLF: 68.49455243959115
Iteration: 8, Func. Count: 65, Neg. LLF: 68.49395673657536
Iteration: 9, Func. Count: 72, Neg. LLF: 68.49386895035703
Iteration: 10, Func. Count: 79, Neg. LLF: 68.49386727829072
Iteration: 11, Func. Count: 85, Neg. LLF: 68.49386727830965
Optimization terminated successfully (Exit mode 0)
Current function value: 68.49386727829072
Iterations: 11
Function evaluations: 85
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 158.87511685004912
Iteration: 2, Func. Count: 18, Neg. LLF: 101.19255387137923
Iteration: 3, Func. Count: 28, Neg. LLF: 4716221.164473965
Iteration: 4, Func. Count: 38, Neg. LLF: 67.81524700925844
Iteration: 5, Func. Count: 46, Neg. LLF: 69.19668536308632
Iteration: 6, Func. Count: 55, Neg. LLF: 67.61922237120176
Iteration: 7, Func. Count: 63, Neg. LLF: 67.61312583929428
Iteration: 8, Func. Count: 71, Neg. LLF: 67.61157046690633
Iteration: 9, Func. Count: 79, Neg. LLF: 67.61059669264046
Iteration: 10, Func. Count: 87, Neg. LLF: 67.61055499438935
Iteration: 11, Func. Count: 95, Neg. LLF: 67.61055086944287
Iteration: 12, Func. Count: 102, Neg. LLF: 67.61055086942906
Optimization terminated successfully (Exit mode 0)
Current function value: 67.61055086944287
Iterations: 12
Function evaluations: 102
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 93.46729391509099
Iteration: 2, Func. Count: 21, Neg. LLF: 979180.2343635792
Iteration: 3, Func. Count: 32, Neg. LLF: 25943852.959464107
Iteration: 4, Func. Count: 43, Neg. LLF: 67.64706127317068
Iteration: 5, Func. Count: 52, Neg. LLF: 67.68933080350621
Iteration: 6, Func. Count: 62, Neg. LLF: 67.6239615212003
Iteration: 7, Func. Count: 71, Neg. LLF: 67.61275240890448
Iteration: 8, Func. Count: 80, Neg. LLF: 67.61127131607174
Iteration: 9, Func. Count: 89, Neg. LLF: 67.61061694698066
Iteration: 10, Func. Count: 98, Neg. LLF: 67.61055287875722
Iteration: 11, Func. Count: 107, Neg. LLF: 67.61055085297205
Iteration: 12, Func. Count: 115, Neg. LLF: 67.6105508918972
Optimization terminated successfully (Exit mode 0)
Current function value: 67.61055085297205
Iterations: 12
Function evaluations: 115
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 88.71161768965138
Iteration: 2, Func. Count: 23, Neg. LLF: 766593.6752111051
Iteration: 3, Func. Count: 35, Neg. LLF: 30626808.479358956
Iteration: 4, Func. Count: 47, Neg. LLF: 67.93298093831633
Iteration: 5, Func. Count: 57, Neg. LLF: 67.75142500814971
Iteration: 6, Func. Count: 67, Neg. LLF: 67.67503583725772
Iteration: 7, Func. Count: 77, Neg. LLF: 67.62545822820076
Iteration: 8, Func. Count: 87, Neg. LLF: 67.612443871071
Iteration: 9, Func. Count: 97, Neg. LLF: 67.61069503667471
Iteration: 10, Func. Count: 107, Neg. LLF: 67.61055994169178
Iteration: 11, Func. Count: 117, Neg. LLF: 67.61055235818138
Iteration: 12, Func. Count: 127, Neg. LLF: 67.61055097662428
Iteration: 13, Func. Count: 136, Neg. LLF: 67.6105510025352
Optimization terminated successfully (Exit mode 0)
Current function value: 67.61055097662428
Iterations: 13
Function evaluations: 136
Gradient evaluations: 13
Iteration: 1, Func. Count: 8, Neg. LLF: 141.08261401873247
Iteration: 2, Func. Count: 19, Neg. LLF: 149.0777163743999
Iteration: 3, Func. Count: 28, Neg. LLF: 82.78713261206563
Iteration: 4, Func. Count: 36, Neg. LLF: 67.53675089690141
Iteration: 5, Func. Count: 43, Neg. LLF: 67.50034059281661
Iteration: 6, Func. Count: 50, Neg. LLF: 67.33524813875852
Iteration: 7, Func. Count: 57, Neg. LLF: 67.2941622755897
Iteration: 8, Func. Count: 64, Neg. LLF: 67.27357591534631
Iteration: 9, Func. Count: 71, Neg. LLF: 67.27002130553149
Iteration: 10, Func. Count: 78, Neg. LLF: 67.2693683646564
Iteration: 11, Func. Count: 85, Neg. LLF: 67.26924401986896
Iteration: 12, Func. Count: 92, Neg. LLF: 67.26981312615574
Optimization terminated successfully (Exit mode 0)
Current function value: 67.26924379552494
Iterations: 13
Function evaluations: 94
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 81.87488502788818
Iteration: 2, Func. Count: 19, Neg. LLF: 965770.9814192095
Iteration: 3, Func. Count: 29, Neg. LLF: 3119842.089484142
Iteration: 4, Func. Count: 38, Neg. LLF: 69.86892062582434
Iteration: 5, Func. Count: 47, Neg. LLF: 67.28968444641538
Iteration: 6, Func. Count: 55, Neg. LLF: 67.27617743672553
Iteration: 7, Func. Count: 63, Neg. LLF: 67.27193551171459
Iteration: 8, Func. Count: 71, Neg. LLF: 67.27045782323033
Iteration: 9, Func. Count: 79, Neg. LLF: 67.26926502599368
Iteration: 10, Func. Count: 87, Neg. LLF: 67.26924841866942
Iteration: 11, Func. Count: 95, Neg. LLF: 67.26924700637025
Iteration: 12, Func. Count: 102, Neg. LLF: 67.26924703316935
Optimization terminated successfully (Exit mode 0)
Current function value: 67.26924700637025
Iterations: 12
Function evaluations: 102
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 82.29368229231176
Iteration: 2, Func. Count: 21, Neg. LLF: 752591.544045925
Iteration: 3, Func. Count: 32, Neg. LLF: 3464929.107132871
Iteration: 4, Func. Count: 42, Neg. LLF: 70.1412538808022
Iteration: 5, Func. Count: 52, Neg. LLF: 67.2951347145498
Iteration: 6, Func. Count: 61, Neg. LLF: 67.27847466864117
Iteration: 7, Func. Count: 70, Neg. LLF: 67.27000389445813
Iteration: 8, Func. Count: 79, Neg. LLF: 67.2695225901365
Iteration: 9, Func. Count: 88, Neg. LLF: 67.26925452399469
Iteration: 10, Func. Count: 97, Neg. LLF: 67.26924737958991
Iteration: 11, Func. Count: 106, Neg. LLF: 67.26924651177701
Optimization terminated successfully (Exit mode 0)
Current function value: 67.26924651177701
Iterations: 11
Function evaluations: 106
Gradient evaluations: 11
Iteration: 1, Func. Count: 11, Neg. LLF: 85.46138391313718
Iteration: 2, Func. Count: 23, Neg. LLF: 730835.166883329
Iteration: 3, Func. Count: 35, Neg. LLF: 3382725.3617389887
Iteration: 4, Func. Count: 46, Neg. LLF: 69.76769484009228
Iteration: 5, Func. Count: 57, Neg. LLF: 67.29323824312075
Iteration: 6, Func. Count: 67, Neg. LLF: 67.27532956399936
Iteration: 7, Func. Count: 77, Neg. LLF: 67.26987925142573
Iteration: 8, Func. Count: 87, Neg. LLF: 67.26952080794365
Iteration: 9, Func. Count: 97, Neg. LLF: 67.26924807799398
Iteration: 10, Func. Count: 107, Neg. LLF: 67.26924652466859
Iteration: 11, Func. Count: 116, Neg. LLF: 67.2692465396945
Optimization terminated successfully (Exit mode 0)
Current function value: 67.26924652466859
Iterations: 11
Function evaluations: 116
Gradient evaluations: 11
Iteration: 1, Func. Count: 12, Neg. LLF: 85.31305609166779
Iteration: 2, Func. Count: 25, Neg. LLF: 780313.7687955064
Iteration: 3, Func. Count: 38, Neg. LLF: 3194364.686687245
Iteration: 4, Func. Count: 50, Neg. LLF: 69.77977666206253
Iteration: 5, Func. Count: 62, Neg. LLF: 67.29020129388964
Iteration: 6, Func. Count: 73, Neg. LLF: 67.2720584176278
Iteration: 7, Func. Count: 84, Neg. LLF: 67.26982712784373
Iteration: 8, Func. Count: 95, Neg. LLF: 67.26937454051517
Iteration: 9, Func. Count: 106, Neg. LLF: 67.26928991086203
Iteration: 10, Func. Count: 117, Neg. LLF: 67.26924722854054
Iteration: 11, Func. Count: 128, Neg. LLF: 67.26924652406308
Optimization terminated successfully (Exit mode 0)
Current function value: 67.26924652406308
Iterations: 11
Function evaluations: 128
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 149.91220982071204
Iteration: 2, Func. Count: 21, Neg. LLF: 149.5737543074194
Iteration: 3, Func. Count: 31, Neg. LLF: 89.63653600731551
Iteration: 4, Func. Count: 40, Neg. LLF: 68.68584126790313
Iteration: 5, Func. Count: 49, Neg. LLF: 67.28796815363404
Iteration: 6, Func. Count: 57, Neg. LLF: 67.66120304720617
Iteration: 7, Func. Count: 66, Neg. LLF: 67.27213518869043
Iteration: 8, Func. Count: 74, Neg. LLF: 67.26984260614125
Iteration: 9, Func. Count: 82, Neg. LLF: 67.2689774737819
Iteration: 10, Func. Count: 90, Neg. LLF: 67.26878134182978
Iteration: 11, Func. Count: 98, Neg. LLF: 67.26860324308329
Iteration: 12, Func. Count: 106, Neg. LLF: 67.26859109800864
Iteration: 13, Func. Count: 114, Neg. LLF: 67.268590426917
Optimization terminated successfully (Exit mode 0)
Current function value: 67.268590426917
Iterations: 13
Function evaluations: 114
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 87.98332616631302
Iteration: 2, Func. Count: 21, Neg. LLF: 551637.7361407304
Iteration: 3, Func. Count: 32, Neg. LLF: 4865537.403891577
Iteration: 4, Func. Count: 42, Neg. LLF: 69.63994016579184
Iteration: 5, Func. Count: 52, Neg. LLF: 67.29161024283326
Iteration: 6, Func. Count: 61, Neg. LLF: 67.27723474928185
Iteration: 7, Func. Count: 70, Neg. LLF: 67.27204957562527
Iteration: 8, Func. Count: 79, Neg. LLF: 67.27050259506551
Iteration: 9, Func. Count: 88, Neg. LLF: 67.28761443277409
Iteration: 10, Func. Count: 98, Neg. LLF: 67.2689811599149
Iteration: 11, Func. Count: 107, Neg. LLF: 67.2687044143951
Iteration: 12, Func. Count: 116, Neg. LLF: 67.26862604510886
Iteration: 13, Func. Count: 125, Neg. LLF: 67.26859271189215
Iteration: 14, Func. Count: 134, Neg. LLF: 67.26859051673777
Iteration: 15, Func. Count: 142, Neg. LLF: 67.26859054443446
Optimization terminated successfully (Exit mode 0)
Current function value: 67.26859051673777
Iterations: 15
Function evaluations: 142
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 86.21611616512654
Iteration: 2, Func. Count: 23, Neg. LLF: 805807.7316018755
Iteration: 3, Func. Count: 35, Neg. LLF: 3201700.3412667084
Iteration: 4, Func. Count: 46, Neg. LLF: 69.89202455813516
Iteration: 5, Func. Count: 57, Neg. LLF: 67.2963085677359
Iteration: 6, Func. Count: 67, Neg. LLF: 67.2744098710375
Iteration: 7, Func. Count: 77, Neg. LLF: 67.28565560946465
Iteration: 8, Func. Count: 88, Neg. LLF: 67.27480201602799
Iteration: 9, Func. Count: 99, Neg. LLF: 67.26880300890136
Iteration: 10, Func. Count: 109, Neg. LLF: 67.26865027236258
Iteration: 11, Func. Count: 119, Neg. LLF: 67.26859224091167
Iteration: 12, Func. Count: 129, Neg. LLF: 67.26859046991346
Iteration: 13, Func. Count: 138, Neg. LLF: 67.26859047064427
Optimization terminated successfully (Exit mode 0)
Current function value: 67.26859046991346
Iterations: 13
Function evaluations: 138
Gradient evaluations: 13
Iteration: 1, Func. Count: 12, Neg. LLF: 90.01028013695084
Iteration: 2, Func. Count: 25, Neg. LLF: 610014.1828615153
Iteration: 3, Func. Count: 38, Neg. LLF: 3153693.731545557
Iteration: 4, Func. Count: 50, Neg. LLF: 69.29171031038715
Iteration: 5, Func. Count: 62, Neg. LLF: 67.29446128516788
Iteration: 6, Func. Count: 73, Neg. LLF: 67.27210109954912
Iteration: 7, Func. Count: 84, Neg. LLF: 67.35630793406936
Iteration: 8, Func. Count: 96, Neg. LLF: 67.26877844281232
Iteration: 9, Func. Count: 107, Neg. LLF: 67.26862212464562
Iteration: 10, Func. Count: 118, Neg. LLF: 67.26860549137876
Iteration: 11, Func. Count: 129, Neg. LLF: 67.26859052660124
Iteration: 12, Func. Count: 139, Neg. LLF: 67.2685905419075
Optimization terminated successfully (Exit mode 0)
Current function value: 67.26859052660124
Iterations: 12
Function evaluations: 139
Gradient evaluations: 12
Iteration: 1, Func. Count: 13, Neg. LLF: 86.0337058764326
Iteration: 2, Func. Count: 27, Neg. LLF: 553734.1690464336
Iteration: 3, Func. Count: 41, Neg. LLF: 3313880.664620172
Iteration: 4, Func. Count: 54, Neg. LLF: 69.75096876381735
Iteration: 5, Func. Count: 67, Neg. LLF: 67.29287309896519
Iteration: 6, Func. Count: 79, Neg. LLF: 67.29395819212064
Iteration: 7, Func. Count: 92, Neg. LLF: 67.29258233048587
Iteration: 8, Func. Count: 105, Neg. LLF: 67.26902878885592
Iteration: 9, Func. Count: 117, Neg. LLF: 67.2687402376866
Iteration: 10, Func. Count: 129, Neg. LLF: 67.26861706511541
Iteration: 11, Func. Count: 141, Neg. LLF: 67.26859053530184
Iteration: 12, Func. Count: 152, Neg. LLF: 67.2685905586332
Optimization terminated successfully (Exit mode 0)
Current function value: 67.26859053530184
Iterations: 12
Function evaluations: 152
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 159.77245610493068
Iteration: 2, Func. Count: 22, Neg. LLF: 157.75445682836158
Iteration: 3, Func. Count: 33, Neg. LLF: 82.79762521858889
Iteration: 4, Func. Count: 43, Neg. LLF: 70.99497062038611
Iteration: 5, Func. Count: 53, Neg. LLF: 69.07628329987516
Iteration: 6, Func. Count: 63, Neg. LLF: 67.33844670419813
Iteration: 7, Func. Count: 72, Neg. LLF: 68.82076070840418
Iteration: 8, Func. Count: 82, Neg. LLF: 67.2722310838528
Iteration: 9, Func. Count: 91, Neg. LLF: 67.26916563449292
Iteration: 10, Func. Count: 100, Neg. LLF: 67.26861357301966
Iteration: 11, Func. Count: 109, Neg. LLF: 67.26859156534216
Iteration: 12, Func. Count: 117, Neg. LLF: 67.26859161867652
Optimization terminated successfully (Exit mode 0)
Current function value: 67.26859156534216
Iterations: 12
Function evaluations: 117
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 6078254.351025074
Iteration: 2, Func. Count: 22, Neg. LLF: 118.74848685122002
Iteration: 3, Func. Count: 34, Neg. LLF: 71.52423112999429
Iteration: 4, Func. Count: 45, Neg. LLF: 72.03574391079404
Iteration: 5, Func. Count: 57, Neg. LLF: 67.29167964743876
Iteration: 6, Func. Count: 67, Neg. LLF: 67.352646892019
Iteration: 7, Func. Count: 78, Neg. LLF: 67.27307793022952
Iteration: 8, Func. Count: 88, Neg. LLF: 67.269221870315
Iteration: 9, Func. Count: 98, Neg. LLF: 67.26885239668432
Iteration: 10, Func. Count: 108, Neg. LLF: 67.26868828048181
Iteration: 11, Func. Count: 118, Neg. LLF: 67.2686316086739
Iteration: 12, Func. Count: 128, Neg. LLF: 67.26859843624622
Iteration: 13, Func. Count: 138, Neg. LLF: 67.26859109084516
Iteration: 14, Func. Count: 148, Neg. LLF: 67.26859043761756
Optimization terminated successfully (Exit mode 0)
Current function value: 67.26859043761756
Iterations: 14
Function evaluations: 148
Gradient evaluations: 14
Iteration: 1, Func. Count: 12, Neg. LLF: 143.56812983605204
Iteration: 2, Func. Count: 24, Neg. LLF: 839193.3216866443
Iteration: 3, Func. Count: 37, Neg. LLF: 75.1226591746986
Iteration: 4, Func. Count: 49, Neg. LLF: 69.754457697718
Iteration: 5, Func. Count: 61, Neg. LLF: 67.29083135477094
Iteration: 6, Func. Count: 72, Neg. LLF: 67.31289572740616
Iteration: 7, Func. Count: 84, Neg. LLF: 67.27269453533667
Iteration: 8, Func. Count: 95, Neg. LLF: 67.27011374684108
Iteration: 9, Func. Count: 106, Neg. LLF: 67.27059899300201
Iteration: 10, Func. Count: 118, Neg. LLF: 67.26974862082912
Iteration: 11, Func. Count: 129, Neg. LLF: 67.26964186238837
Iteration: 12, Func. Count: 140, Neg. LLF: 67.2688312924209
Iteration: 13, Func. Count: 151, Neg. LLF: 67.26869200321633
Iteration: 14, Func. Count: 162, Neg. LLF: 67.26859336339118
Iteration: 15, Func. Count: 173, Neg. LLF: 67.26859105502118
Iteration: 16, Func. Count: 184, Neg. LLF: 67.26859047805735
Optimization terminated successfully (Exit mode 0)
Current function value: 67.26859047805735
Iterations: 16
Function evaluations: 184
Gradient evaluations: 16
Iteration: 1, Func. Count: 13, Neg. LLF: 102.78753100032914
Iteration: 2, Func. Count: 27, Neg. LLF: 658771.9805459272
Iteration: 3, Func. Count: 41, Neg. LLF: 4647908.76050847
Iteration: 4, Func. Count: 54, Neg. LLF: 69.16965667793964
Iteration: 5, Func. Count: 67, Neg. LLF: 67.30919004301677
Iteration: 6, Func. Count: 79, Neg. LLF: 67.27471284191924
Iteration: 7, Func. Count: 91, Neg. LLF: 67.44885743463001
Iteration: 8, Func. Count: 104, Neg. LLF: 67.26899417819574
Iteration: 9, Func. Count: 116, Neg. LLF: 67.26869739750694
Iteration: 10, Func. Count: 128, Neg. LLF: 67.26861974913143
Iteration: 11, Func. Count: 140, Neg. LLF: 67.26859255303143
Iteration: 12, Func. Count: 152, Neg. LLF: 67.26859061235335
Iteration: 13, Func. Count: 163, Neg. LLF: 67.26859062762921
Optimization terminated successfully (Exit mode 0)
Current function value: 67.26859061235335
Iterations: 13
Function evaluations: 163
Gradient evaluations: 13
Iteration: 1, Func. Count: 14, Neg. LLF: 98.3917979673561
Iteration: 2, Func. Count: 29, Neg. LLF: 600367.6833419256
Iteration: 3, Func. Count: 44, Neg. LLF: 4638518.738782531
Iteration: 4, Func. Count: 58, Neg. LLF: 69.10865767609226
Iteration: 5, Func. Count: 72, Neg. LLF: 67.29334626585245
Iteration: 6, Func. Count: 85, Neg. LLF: 67.27525806126235
Iteration: 7, Func. Count: 98, Neg. LLF: 67.27576682268732
Iteration: 8, Func. Count: 112, Neg. LLF: 67.2702430400898
Iteration: 9, Func. Count: 126, Neg. LLF: 67.26976806297719
Iteration: 10, Func. Count: 139, Neg. LLF: 67.26901541184748
Iteration: 11, Func. Count: 152, Neg. LLF: 67.26878804136905
Iteration: 12, Func. Count: 165, Neg. LLF: 67.26862472132034
Iteration: 13, Func. Count: 178, Neg. LLF: 67.26860456726097
Iteration: 14, Func. Count: 191, Neg. LLF: 67.26859358315832
Iteration: 15, Func. Count: 204, Neg. LLF: 67.26859082194834
Iteration: 16, Func. Count: 216, Neg. LLF: 67.26859084534193
Optimization terminated successfully (Exit mode 0)
Current function value: 67.26859082194834
Iterations: 16
Function evaluations: 216
Gradient evaluations: 16
Iteration: 1, Func. Count: 7, Neg. LLF: 111.34814053554514
Iteration: 2, Func. Count: 17, Neg. LLF: 142.47793515091354
Iteration: 3, Func. Count: 25, Neg. LLF: 298.3593853393136
Iteration: 4, Func. Count: 32, Neg. LLF: 75.71026655787733
Iteration: 5, Func. Count: 40, Neg. LLF: 67.48485365571139
Iteration: 6, Func. Count: 46, Neg. LLF: 67.47898547668568
Iteration: 7, Func. Count: 52, Neg. LLF: 67.47764330683313
Iteration: 8, Func. Count: 58, Neg. LLF: 67.47686351546656
Iteration: 9, Func. Count: 64, Neg. LLF: 67.4764131831093
Iteration: 10, Func. Count: 70, Neg. LLF: 67.476380630497
Iteration: 11, Func. Count: 76, Neg. LLF: 67.47637955220083
Iteration: 12, Func. Count: 81, Neg. LLF: 67.47637955219439
Optimization terminated successfully (Exit mode 0)
Current function value: 67.47637955220083
Iterations: 12
Function evaluations: 81
Gradient evaluations: 12
Iteration: 1, Func. Count: 8, Neg. LLF: 84.43482889581121
Iteration: 2, Func. Count: 17, Neg. LLF: 2187.747291077446
Iteration: 3, Func. Count: 25, Neg. LLF: 75.10005405797726
Iteration: 4, Func. Count: 34, Neg. LLF: 68.13264631129609
Iteration: 5, Func. Count: 41, Neg. LLF: 69.20503337461861
Iteration: 6, Func. Count: 49, Neg. LLF: 67.56542893517721
Iteration: 7, Func. Count: 56, Neg. LLF: 67.4861670443502
Iteration: 8, Func. Count: 63, Neg. LLF: 67.4781163610421
Iteration: 9, Func. Count: 70, Neg. LLF: 67.47638775853095
Iteration: 10, Func. Count: 77, Neg. LLF: 67.4763805217052
Iteration: 11, Func. Count: 84, Neg. LLF: 67.47637973475244
Optimization terminated successfully (Exit mode 0)
Current function value: 67.47637973475244
Iterations: 11
Function evaluations: 84
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 81.22850852622726
Iteration: 2, Func. Count: 19, Neg. LLF: 949.1279781476695
Iteration: 3, Func. Count: 29, Neg. LLF: 75.25692697704883
Iteration: 4, Func. Count: 38, Neg. LLF: 68.12643657071021
Iteration: 5, Func. Count: 46, Neg. LLF: 67.97926991731903
Iteration: 6, Func. Count: 55, Neg. LLF: 67.5561241446924
Iteration: 7, Func. Count: 63, Neg. LLF: 67.48024106447988
Iteration: 8, Func. Count: 71, Neg. LLF: 67.47737337454322
Iteration: 9, Func. Count: 79, Neg. LLF: 67.47641070913986
Iteration: 10, Func. Count: 87, Neg. LLF: 67.47638762234493
Iteration: 11, Func. Count: 95, Neg. LLF: 67.4763803876071
Iteration: 12, Func. Count: 103, Neg. LLF: 67.47637954785604
Optimization terminated successfully (Exit mode 0)
Current function value: 67.47637954785604
Iterations: 12
Function evaluations: 103
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 81.07402121837731
Iteration: 2, Func. Count: 21, Neg. LLF: 6221.282846555304
Iteration: 3, Func. Count: 32, Neg. LLF: 123.48981284898943
Iteration: 4, Func. Count: 43, Neg. LLF: 67.91265339308589
Iteration: 5, Func. Count: 52, Neg. LLF: 67.78197825478338
Iteration: 6, Func. Count: 62, Neg. LLF: 67.50337506613074
Iteration: 7, Func. Count: 71, Neg. LLF: 67.47868227548642
Iteration: 8, Func. Count: 80, Neg. LLF: 67.47687159447065
Iteration: 9, Func. Count: 89, Neg. LLF: 67.4763852631204
Iteration: 10, Func. Count: 98, Neg. LLF: 67.47638118885874
Iteration: 11, Func. Count: 107, Neg. LLF: 67.47637956342443
Iteration: 12, Func. Count: 115, Neg. LLF: 67.4763795934935
Optimization terminated successfully (Exit mode 0)
Current function value: 67.47637956342443
Iterations: 12
Function evaluations: 115
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 78.53863881320228
Iteration: 2, Func. Count: 23, Neg. LLF: 518.0087192586368
Iteration: 3, Func. Count: 35, Neg. LLF: 887.1636309285277
Iteration: 4, Func. Count: 47, Neg. LLF: 69.7113272213318
Iteration: 5, Func. Count: 58, Neg. LLF: 67.51864355264723
Iteration: 6, Func. Count: 68, Neg. LLF: 67.49037850024683
Iteration: 7, Func. Count: 78, Neg. LLF: 67.47838788415089
Iteration: 8, Func. Count: 88, Neg. LLF: 67.47664693955029
Iteration: 9, Func. Count: 98, Neg. LLF: 67.47639636624984
Iteration: 10, Func. Count: 108, Neg. LLF: 67.47637988755712
Iteration: 11, Func. Count: 117, Neg. LLF: 67.476379896949
Optimization terminated successfully (Exit mode 0)
Current function value: 67.47637988755712
Iterations: 11
Function evaluations: 117
Gradient evaluations: 11
Iteration: 1, Func. Count: 8, Neg. LLF: 110.11107499663798
Iteration: 2, Func. Count: 19, Neg. LLF: 105.90426387848773
Iteration: 3, Func. Count: 28, Neg. LLF: 1992.9978969624485
Iteration: 4, Func. Count: 36, Neg. LLF: 88.41707897077346
Iteration: 5, Func. Count: 44, Neg. LLF: 66.90266581842884
Iteration: 6, Func. Count: 51, Neg. LLF: 66.89411996137362
Iteration: 7, Func. Count: 58, Neg. LLF: 66.8905516800624
Iteration: 8, Func. Count: 65, Neg. LLF: 66.88996003208496
Iteration: 9, Func. Count: 72, Neg. LLF: 66.8898447017132
Iteration: 10, Func. Count: 79, Neg. LLF: 66.88981035266944
Iteration: 11, Func. Count: 86, Neg. LLF: 66.8898087848705
Iteration: 12, Func. Count: 92, Neg. LLF: 66.88980867212018
Optimization terminated successfully (Exit mode 0)
Current function value: 66.8898087848705
Iterations: 12
Function evaluations: 92
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 80.04849820124278
Iteration: 2, Func. Count: 19, Neg. LLF: 8010697.937754102
Iteration: 3, Func. Count: 29, Neg. LLF: 197.84968088486252
Iteration: 4, Func. Count: 39, Neg. LLF: 72.09612529135303
Iteration: 5, Func. Count: 48, Neg. LLF: 66.98383158018738
Iteration: 6, Func. Count: 56, Neg. LLF: 66.91057297137523
Iteration: 7, Func. Count: 64, Neg. LLF: 66.8983383319297
Iteration: 8, Func. Count: 72, Neg. LLF: 66.89279094262832
Iteration: 9, Func. Count: 80, Neg. LLF: 66.8913153831825
Iteration: 10, Func. Count: 88, Neg. LLF: 66.89007609737432
Iteration: 11, Func. Count: 96, Neg. LLF: 66.88983234568428
Iteration: 12, Func. Count: 104, Neg. LLF: 66.88980914546607
Iteration: 13, Func. Count: 111, Neg. LLF: 66.88980919060982
Optimization terminated successfully (Exit mode 0)
Current function value: 66.88980914546607
Iterations: 13
Function evaluations: 111
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 78.23586765654534
Iteration: 2, Func. Count: 21, Neg. LLF: 5341948.679518861
Iteration: 3, Func. Count: 32, Neg. LLF: 29886866.273617305
Iteration: 4, Func. Count: 43, Neg. LLF: 67.02441038323477
Iteration: 5, Func. Count: 52, Neg. LLF: 68.35262807984743
Iteration: 6, Func. Count: 62, Neg. LLF: 66.90798687720184
Iteration: 7, Func. Count: 71, Neg. LLF: 66.8931296418389
Iteration: 8, Func. Count: 80, Neg. LLF: 66.89035681874793
Iteration: 9, Func. Count: 89, Neg. LLF: 66.88992642348836
Iteration: 10, Func. Count: 98, Neg. LLF: 66.88981608543924
Iteration: 11, Func. Count: 107, Neg. LLF: 66.88980886617675
Iteration: 12, Func. Count: 115, Neg. LLF: 66.88980890365353
Optimization terminated successfully (Exit mode 0)
Current function value: 66.88980886617675
Iterations: 12
Function evaluations: 115
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 77.7499061113372
Iteration: 2, Func. Count: 23, Neg. LLF: 5320221.923398664
Iteration: 3, Func. Count: 35, Neg. LLF: 2508.4489203114886
Iteration: 4, Func. Count: 46, Neg. LLF: 70.9649712022836
Iteration: 5, Func. Count: 57, Neg. LLF: 67.11297118500292
Iteration: 6, Func. Count: 67, Neg. LLF: 66.94734550248906
Iteration: 7, Func. Count: 77, Neg. LLF: 66.9018591918718
Iteration: 8, Func. Count: 87, Neg. LLF: 66.89193387383214
Iteration: 9, Func. Count: 97, Neg. LLF: 66.8898191298213
Iteration: 10, Func. Count: 107, Neg. LLF: 66.88980882688874
Iteration: 11, Func. Count: 116, Neg. LLF: 66.88980885935611
Optimization terminated successfully (Exit mode 0)
Current function value: 66.88980882688874
Iterations: 11
Function evaluations: 116
Gradient evaluations: 11
Iteration: 1, Func. Count: 12, Neg. LLF: 75.39725539503173
Iteration: 2, Func. Count: 25, Neg. LLF: 316.4055301556773
Iteration: 3, Func. Count: 38, Neg. LLF: 1126.31395149253
Iteration: 4, Func. Count: 50, Neg. LLF: 68.53270764977815
Iteration: 5, Func. Count: 62, Neg. LLF: 67.35109020021541
Iteration: 6, Func. Count: 73, Neg. LLF: 66.92526866082646
Iteration: 7, Func. Count: 84, Neg. LLF: 66.89903621404352
Iteration: 8, Func. Count: 95, Neg. LLF: 66.89004971607062
Iteration: 9, Func. Count: 106, Neg. LLF: 66.88981135519613
Iteration: 10, Func. Count: 117, Neg. LLF: 66.88980880898416
Iteration: 11, Func. Count: 127, Neg. LLF: 66.88980882687407
Optimization terminated successfully (Exit mode 0)
Current function value: 66.88980880898416
Iterations: 11
Function evaluations: 127
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 110.49386664855159
Iteration: 2, Func. Count: 21, Neg. LLF: 113.26598125116055
Iteration: 3, Func. Count: 31, Neg. LLF: 132.94167539626557
Iteration: 4, Func. Count: 40, Neg. LLF: 67.53223272603024
Iteration: 5, Func. Count: 48, Neg. LLF: 67.96189518845993
Iteration: 6, Func. Count: 57, Neg. LLF: 67.15884639849489
Iteration: 7, Func. Count: 66, Neg. LLF: 66.62646149033615
Iteration: 8, Func. Count: 74, Neg. LLF: 66.60008438361328
Iteration: 9, Func. Count: 82, Neg. LLF: 66.59953258910083
Iteration: 10, Func. Count: 90, Neg. LLF: 66.59946614537441
Iteration: 11, Func. Count: 98, Neg. LLF: 66.59944857629961
Iteration: 12, Func. Count: 106, Neg. LLF: 66.59943840919703
Iteration: 13, Func. Count: 114, Neg. LLF: 66.59943765504302
Optimization terminated successfully (Exit mode 0)
Current function value: 66.59943765504302
Iterations: 13
Function evaluations: 114
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 80.66158396888817
Iteration: 2, Func. Count: 21, Neg. LLF: 3536351.749141903
Iteration: 3, Func. Count: 32, Neg. LLF: 834.4052677933573
Iteration: 4, Func. Count: 42, Neg. LLF: 73.24468095244335
Iteration: 5, Func. Count: 52, Neg. LLF: 67.5697589391689
Iteration: 6, Func. Count: 61, Neg. LLF: 66.76699724301919
Iteration: 7, Func. Count: 70, Neg. LLF: 66.65352837557212
Iteration: 8, Func. Count: 79, Neg. LLF: 66.60366266303696
Iteration: 9, Func. Count: 88, Neg. LLF: 66.60058886574062
Iteration: 10, Func. Count: 97, Neg. LLF: 66.60003473024227
Iteration: 11, Func. Count: 106, Neg. LLF: 66.59961686193007
Iteration: 12, Func. Count: 115, Neg. LLF: 66.5994545110028
Iteration: 13, Func. Count: 124, Neg. LLF: 66.59943880191967
Iteration: 14, Func. Count: 133, Neg. LLF: 66.59943769021064
Iteration: 15, Func. Count: 141, Neg. LLF: 66.59943775186454
Optimization terminated successfully (Exit mode 0)
Current function value: 66.59943769021064
Iterations: 15
Function evaluations: 141
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 78.8338780031406
Iteration: 2, Func. Count: 23, Neg. LLF: 879242.5896861259
Iteration: 3, Func. Count: 35, Neg. LLF: 2867249.086333645
Iteration: 4, Func. Count: 46, Neg. LLF: 75.01848151183296
Iteration: 5, Func. Count: 57, Neg. LLF: 67.4518126386361
Iteration: 6, Func. Count: 67, Neg. LLF: 67.0396995495059
Iteration: 7, Func. Count: 77, Neg. LLF: 67.01576424840916
Iteration: 8, Func. Count: 88, Neg. LLF: 66.60806153853655
Iteration: 9, Func. Count: 98, Neg. LLF: 66.60076709837946
Iteration: 10, Func. Count: 108, Neg. LLF: 66.60026892205764
Iteration: 11, Func. Count: 118, Neg. LLF: 66.5999120591805
Iteration: 12, Func. Count: 128, Neg. LLF: 66.59954395431721
Iteration: 13, Func. Count: 138, Neg. LLF: 66.59945512795674
Iteration: 14, Func. Count: 148, Neg. LLF: 66.59943937771929
Iteration: 15, Func. Count: 158, Neg. LLF: 66.59943780559821
Iteration: 16, Func. Count: 167, Neg. LLF: 66.59943785808102
Optimization terminated successfully (Exit mode 0)
Current function value: 66.59943780559821
Iterations: 16
Function evaluations: 167
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 78.0058036639607
Iteration: 2, Func. Count: 25, Neg. LLF: 746950.9893595874
Iteration: 3, Func. Count: 38, Neg. LLF: 3781038.4406690584
Iteration: 4, Func. Count: 50, Neg. LLF: 71.77717328034029
Iteration: 5, Func. Count: 62, Neg. LLF: 71.08029803004258
Iteration: 6, Func. Count: 74, Neg. LLF: 66.63982166309897
Iteration: 7, Func. Count: 85, Neg. LLF: 66.62174926015908
Iteration: 8, Func. Count: 96, Neg. LLF: 66.61552484851791
Iteration: 9, Func. Count: 107, Neg. LLF: 66.60949346553413
Iteration: 10, Func. Count: 118, Neg. LLF: 66.60399451770462
Iteration: 11, Func. Count: 129, Neg. LLF: 66.60081238447746
Iteration: 12, Func. Count: 140, Neg. LLF: 66.59995699146106
Iteration: 13, Func. Count: 151, Neg. LLF: 66.59963753607396
Iteration: 14, Func. Count: 162, Neg. LLF: 66.59948874746442
Iteration: 15, Func. Count: 173, Neg. LLF: 66.59944206896118
Iteration: 16, Func. Count: 184, Neg. LLF: 66.5994377429585
Iteration: 17, Func. Count: 194, Neg. LLF: 66.59943778938174
Optimization terminated successfully (Exit mode 0)
Current function value: 66.5994377429585
Iterations: 17
Function evaluations: 194
Gradient evaluations: 17
Iteration: 1, Func. Count: 13, Neg. LLF: 75.45558058762234
Iteration: 2, Func. Count: 27, Neg. LLF: 171.1128564572985
Iteration: 3, Func. Count: 40, Neg. LLF: 156.62044155259548
Iteration: 4, Func. Count: 53, Neg. LLF: 70.29825782487634
Iteration: 5, Func. Count: 66, Neg. LLF: 68.42255945015143
Iteration: 6, Func. Count: 79, Neg. LLF: 68.55996026069897
Iteration: 7, Func. Count: 92, Neg. LLF: 66.60567377373555
Iteration: 8, Func. Count: 104, Neg. LLF: 66.60215177961356
Iteration: 9, Func. Count: 116, Neg. LLF: 66.60053030056352
Iteration: 10, Func. Count: 128, Neg. LLF: 66.599607951902
Iteration: 11, Func. Count: 140, Neg. LLF: 66.5994514905958
Iteration: 12, Func. Count: 152, Neg. LLF: 66.599437831712
Iteration: 13, Func. Count: 163, Neg. LLF: 66.59943784604856
Optimization terminated successfully (Exit mode 0)
Current function value: 66.599437831712
Iterations: 13
Function evaluations: 163
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 108.88298737657063
Iteration: 2, Func. Count: 23, Neg. LLF: 113.79517470003037
Iteration: 3, Func. Count: 34, Neg. LLF: 1391341.6250383728
Iteration: 4, Func. Count: 44, Neg. LLF: 66.63849651984485
Iteration: 5, Func. Count: 53, Neg. LLF: 101.38862796400983
Iteration: 6, Func. Count: 63, Neg. LLF: 70.66798331794293
Iteration: 7, Func. Count: 73, Neg. LLF: 66.61455888252345
Iteration: 8, Func. Count: 83, Neg. LLF: 66.46538413629465
Iteration: 9, Func. Count: 92, Neg. LLF: 66.46073362175458
Iteration: 10, Func. Count: 101, Neg. LLF: 66.46001067132791
Iteration: 11, Func. Count: 110, Neg. LLF: 66.45995143429676
Iteration: 12, Func. Count: 119, Neg. LLF: 66.45991551596582
Iteration: 13, Func. Count: 128, Neg. LLF: 66.4599058048137
Iteration: 14, Func. Count: 137, Neg. LLF: 66.45990372084763
Iteration: 15, Func. Count: 145, Neg. LLF: 66.45990372082264
Optimization terminated successfully (Exit mode 0)
Current function value: 66.45990372084763
Iterations: 15
Function evaluations: 145
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 78.26428880919296
Iteration: 2, Func. Count: 23, Neg. LLF: 181.4583931034779
Iteration: 3, Func. Count: 35, Neg. LLF: 1380097.531668004
Iteration: 4, Func. Count: 46, Neg. LLF: 71.00912070452871
Iteration: 5, Func. Count: 57, Neg. LLF: 68.2581768792651
Iteration: 6, Func. Count: 68, Neg. LLF: 66.5472513936726
Iteration: 7, Func. Count: 78, Neg. LLF: 68.27055269087928
Iteration: 8, Func. Count: 90, Neg. LLF: 66.46945681634465
Iteration: 9, Func. Count: 100, Neg. LLF: 66.4605256628232
Iteration: 10, Func. Count: 110, Neg. LLF: 66.45997666178161
Iteration: 11, Func. Count: 120, Neg. LLF: 66.45992804242678
Iteration: 12, Func. Count: 130, Neg. LLF: 66.45991207469503
Iteration: 13, Func. Count: 140, Neg. LLF: 66.45990499092271
Iteration: 14, Func. Count: 150, Neg. LLF: 66.4599037222921
Iteration: 15, Func. Count: 159, Neg. LLF: 66.45990377167492
Optimization terminated successfully (Exit mode 0)
Current function value: 66.4599037222921
Iterations: 15
Function evaluations: 159
Gradient evaluations: 15
Iteration: 1, Func. Count: 12, Neg. LLF: 76.02798692473496
Iteration: 2, Func. Count: 25, Neg. LLF: 132.71270973576367
Iteration: 3, Func. Count: 38, Neg. LLF: 1540180.5935243147
Iteration: 4, Func. Count: 50, Neg. LLF: 73.79938103899413
Iteration: 5, Func. Count: 62, Neg. LLF: 66.6923203662767
Iteration: 6, Func. Count: 73, Neg. LLF: 67.31375902144616
Iteration: 7, Func. Count: 85, Neg. LLF: 66.52222489239048
Iteration: 8, Func. Count: 96, Neg. LLF: 76.44644675145598
Iteration: 9, Func. Count: 108, Neg. LLF: 66.46265003270005
Iteration: 10, Func. Count: 119, Neg. LLF: 66.4610280391044
Iteration: 11, Func. Count: 130, Neg. LLF: 66.46042831157104
Iteration: 12, Func. Count: 141, Neg. LLF: 66.46000409196112
Iteration: 13, Func. Count: 152, Neg. LLF: 66.45991129060813
Iteration: 14, Func. Count: 163, Neg. LLF: 66.45990385739786
Iteration: 15, Func. Count: 173, Neg. LLF: 66.45990392121776
Optimization terminated successfully (Exit mode 0)
Current function value: 66.45990385739786
Iterations: 15
Function evaluations: 173
Gradient evaluations: 15
Iteration: 1, Func. Count: 13, Neg. LLF: 75.95992441540486
Iteration: 2, Func. Count: 27, Neg. LLF: 125.57108464158125
Iteration: 3, Func. Count: 41, Neg. LLF: 1423727.4976235293
Iteration: 4, Func. Count: 54, Neg. LLF: 72.57223226292213
Iteration: 5, Func. Count: 67, Neg. LLF: 67.04189122963692
Iteration: 6, Func. Count: 79, Neg. LLF: 66.61723193129747
Iteration: 7, Func. Count: 91, Neg. LLF: 69.89266022137251
Iteration: 8, Func. Count: 104, Neg. LLF: 67.49043931886702
Iteration: 9, Func. Count: 117, Neg. LLF: 66.46384060239501
Iteration: 10, Func. Count: 129, Neg. LLF: 66.46119206622183
Iteration: 11, Func. Count: 141, Neg. LLF: 66.46055593035686
Iteration: 12, Func. Count: 153, Neg. LLF: 66.45998109266968
Iteration: 13, Func. Count: 165, Neg. LLF: 66.45991550226617
Iteration: 14, Func. Count: 177, Neg. LLF: 66.45990448253212
Iteration: 15, Func. Count: 189, Neg. LLF: 66.4599035776257
Optimization terminated successfully (Exit mode 0)
Current function value: 66.4599035776257
Iterations: 15
Function evaluations: 189
Gradient evaluations: 15
Iteration: 1, Func. Count: 14, Neg. LLF: 74.2740310824254
Iteration: 2, Func. Count: 29, Neg. LLF: 188.0192449952607
Iteration: 3, Func. Count: 43, Neg. LLF: 1745526.9852251513
Iteration: 4, Func. Count: 57, Neg. LLF: 71.85867392231835
Iteration: 5, Func. Count: 71, Neg. LLF: 67.89369040449569
Iteration: 6, Func. Count: 85, Neg. LLF: 67.3013703402613
Iteration: 7, Func. Count: 99, Neg. LLF: 66.77007542514767
Iteration: 8, Func. Count: 112, Neg. LLF: 66.69662497595736
Iteration: 9, Func. Count: 125, Neg. LLF: 66.91695606883141
Iteration: 10, Func. Count: 139, Neg. LLF: 66.51975874729494
Iteration: 11, Func. Count: 153, Neg. LLF: 66.46154705803134
Iteration: 12, Func. Count: 166, Neg. LLF: 66.46005663975869
Iteration: 13, Func. Count: 179, Neg. LLF: 66.45996491236319
Iteration: 14, Func. Count: 192, Neg. LLF: 66.45992900049929
Iteration: 15, Func. Count: 205, Neg. LLF: 66.45991014533384
Iteration: 16, Func. Count: 218, Neg. LLF: 66.45990408823121
Iteration: 17, Func. Count: 230, Neg. LLF: 66.45990410193883
Optimization terminated successfully (Exit mode 0)
Current function value: 66.45990408823121
Iterations: 17
Function evaluations: 230
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 112.45717871318061
Iteration: 2, Func. Count: 25, Neg. LLF: 121.47453000514597
Iteration: 3, Func. Count: 37, Neg. LLF: 2115147.5491850968
Iteration: 4, Func. Count: 48, Neg. LLF: 67.9902671312543
Iteration: 5, Func. Count: 59, Neg. LLF: 66.65119791923891
Iteration: 6, Func. Count: 69, Neg. LLF: 72.48326675161454
Iteration: 7, Func. Count: 80, Neg. LLF: 66.79449202474893
Iteration: 8, Func. Count: 91, Neg. LLF: 66.46399186159906
Iteration: 9, Func. Count: 101, Neg. LLF: 66.460841233312
Iteration: 10, Func. Count: 111, Neg. LLF: 66.45996007636782
Iteration: 11, Func. Count: 121, Neg. LLF: 66.4599160225753
Iteration: 12, Func. Count: 131, Neg. LLF: 66.45991044962193
Iteration: 13, Func. Count: 141, Neg. LLF: 66.45990466993452
Iteration: 14, Func. Count: 151, Neg. LLF: 66.45990367801318
Optimization terminated successfully (Exit mode 0)
Current function value: 66.45990367801318
Iterations: 14
Function evaluations: 151
Gradient evaluations: 14
Iteration: 1, Func. Count: 12, Neg. LLF: 78.6139126014343
Iteration: 2, Func. Count: 25, Neg. LLF: 166.0737071321219
Iteration: 3, Func. Count: 38, Neg. LLF: 1354412.851744545
Iteration: 4, Func. Count: 50, Neg. LLF: 70.9626097559471
Iteration: 5, Func. Count: 62, Neg. LLF: 68.26764978099003
Iteration: 6, Func. Count: 74, Neg. LLF: 66.54645665247689
Iteration: 7, Func. Count: 85, Neg. LLF: 68.08554548876256
Iteration: 8, Func. Count: 98, Neg. LLF: 66.46952468876918
Iteration: 9, Func. Count: 109, Neg. LLF: 66.46053064513644
Iteration: 10, Func. Count: 120, Neg. LLF: 66.45998496089473
Iteration: 11, Func. Count: 131, Neg. LLF: 66.45993211263223
Iteration: 12, Func. Count: 142, Neg. LLF: 66.45991327437866
Iteration: 13, Func. Count: 153, Neg. LLF: 66.45990495881615
Iteration: 14, Func. Count: 164, Neg. LLF: 66.45990371385813
Iteration: 15, Func. Count: 174, Neg. LLF: 66.45990376324326
Optimization terminated successfully (Exit mode 0)
Current function value: 66.45990371385813
Iterations: 15
Function evaluations: 174
Gradient evaluations: 15
Iteration: 1, Func. Count: 13, Neg. LLF: 76.28666887088215
Iteration: 2, Func. Count: 27, Neg. LLF: 126.1751131544746
Iteration: 3, Func. Count: 41, Neg. LLF: 1495230.5486071028
Iteration: 4, Func. Count: 54, Neg. LLF: 73.94975023042359
Iteration: 5, Func. Count: 67, Neg. LLF: 66.67370236392638
Iteration: 6, Func. Count: 79, Neg. LLF: 67.29901685573107
Iteration: 7, Func. Count: 92, Neg. LLF: 66.52402169556733
Iteration: 8, Func. Count: 104, Neg. LLF: 77.47074800657597
Iteration: 9, Func. Count: 117, Neg. LLF: 66.46256584131322
Iteration: 10, Func. Count: 129, Neg. LLF: 66.46110438695075
Iteration: 11, Func. Count: 141, Neg. LLF: 66.46041509787669
Iteration: 12, Func. Count: 153, Neg. LLF: 66.46000221545734
Iteration: 13, Func. Count: 165, Neg. LLF: 66.45991057823971
Iteration: 14, Func. Count: 177, Neg. LLF: 66.4599038435537
Iteration: 15, Func. Count: 188, Neg. LLF: 66.45990390737889
Optimization terminated successfully (Exit mode 0)
Current function value: 66.4599038435537
Iterations: 15
Function evaluations: 188
Gradient evaluations: 15
Iteration: 1, Func. Count: 14, Neg. LLF: 76.297733223002
Iteration: 2, Func. Count: 29, Neg. LLF: 120.68384664558174
Iteration: 3, Func. Count: 44, Neg. LLF: 1384791.008517276
Iteration: 4, Func. Count: 58, Neg. LLF: 72.5471398225753
Iteration: 5, Func. Count: 72, Neg. LLF: 67.08091357302786
Iteration: 6, Func. Count: 85, Neg. LLF: 66.60565122622546
Iteration: 7, Func. Count: 98, Neg. LLF: 69.96601734028117
Iteration: 8, Func. Count: 112, Neg. LLF: 67.1247432265345
Iteration: 9, Func. Count: 126, Neg. LLF: 66.46339969754148
Iteration: 10, Func. Count: 139, Neg. LLF: 66.46125454066748
Iteration: 11, Func. Count: 152, Neg. LLF: 66.46052820451996
Iteration: 12, Func. Count: 165, Neg. LLF: 66.45998389278016
Iteration: 13, Func. Count: 178, Neg. LLF: 66.45991483691535
Iteration: 14, Func. Count: 191, Neg. LLF: 66.45990455067421
Iteration: 15, Func. Count: 204, Neg. LLF: 66.45990360617861
Optimization terminated successfully (Exit mode 0)
Current function value: 66.45990360617861
Iterations: 15
Function evaluations: 204
Gradient evaluations: 15
Iteration: 1, Func. Count: 15, Neg. LLF: 74.67048753594385
Iteration: 2, Func. Count: 31, Neg. LLF: 167.39381547761496
Iteration: 3, Func. Count: 46, Neg. LLF: 1704088.0362423246
Iteration: 4, Func. Count: 61, Neg. LLF: 71.90415238598905
Iteration: 5, Func. Count: 76, Neg. LLF: 67.89995987203287
Iteration: 6, Func. Count: 91, Neg. LLF: 67.38853153717466
Iteration: 7, Func. Count: 106, Neg. LLF: 66.73066641090365
Iteration: 8, Func. Count: 120, Neg. LLF: 66.9084394177994
Iteration: 9, Func. Count: 135, Neg. LLF: 66.94818578988092
Iteration: 10, Func. Count: 150, Neg. LLF: 66.4623682742511
Iteration: 11, Func. Count: 164, Neg. LLF: 66.46027002487936
Iteration: 12, Func. Count: 178, Neg. LLF: 66.46009245535056
Iteration: 13, Func. Count: 192, Neg. LLF: 66.4599517754786
Iteration: 14, Func. Count: 206, Neg. LLF: 66.45991333689689
Iteration: 15, Func. Count: 220, Neg. LLF: 66.45990421625439
Iteration: 16, Func. Count: 234, Neg. LLF: 66.4599035650103
Optimization terminated successfully (Exit mode 0)
Current function value: 66.4599035650103
Iterations: 16
Function evaluations: 234
Gradient evaluations: 16
Iteration: 1, Func. Count: 8, Neg. LLF: 118.67475399001589
Iteration: 2, Func. Count: 19, Neg. LLF: 135.14125529173205
Iteration: 3, Func. Count: 28, Neg. LLF: 117.22531313970846
Iteration: 4, Func. Count: 36, Neg. LLF: 69.0856548187879
Iteration: 5, Func. Count: 44, Neg. LLF: 67.51832075916714
Iteration: 6, Func. Count: 51, Neg. LLF: 67.50899623669756
Iteration: 7, Func. Count: 58, Neg. LLF: 67.47713435417889
Iteration: 8, Func. Count: 65, Neg. LLF: 67.47649125949359
Iteration: 9, Func. Count: 72, Neg. LLF: 67.47640769663089
Iteration: 10, Func. Count: 79, Neg. LLF: 67.47637954996891
Iteration: 11, Func. Count: 85, Neg. LLF: 67.47637965542265
Optimization terminated successfully (Exit mode 0)
Current function value: 67.47637954996891
Iterations: 11
Function evaluations: 85
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 93.58204026894259
Iteration: 2, Func. Count: 19, Neg. LLF: 283.98749286771925
Iteration: 3, Func. Count: 28, Neg. LLF: 607.6108461100564
Iteration: 4, Func. Count: 38, Neg. LLF: 68.03847182304752
Iteration: 5, Func. Count: 46, Neg. LLF: 67.73427764125294
Iteration: 6, Func. Count: 54, Neg. LLF: 67.5731618311508
Iteration: 7, Func. Count: 62, Neg. LLF: 67.49281434972356
Iteration: 8, Func. Count: 70, Neg. LLF: 67.47930066524904
Iteration: 9, Func. Count: 78, Neg. LLF: 67.47653669578467
Iteration: 10, Func. Count: 86, Neg. LLF: 67.4763804043049
Iteration: 11, Func. Count: 94, Neg. LLF: 67.47637955548754
Optimization terminated successfully (Exit mode 0)
Current function value: 67.47637955548754
Iterations: 11
Function evaluations: 94
Gradient evaluations: 11
Iteration: 1, Func. Count: 10, Neg. LLF: 89.66592761968579
Iteration: 2, Func. Count: 21, Neg. LLF: 413.2484543678481
Iteration: 3, Func. Count: 31, Neg. LLF: 109.01377387664176
Iteration: 4, Func. Count: 42, Neg. LLF: 67.54668519471645
Iteration: 5, Func. Count: 51, Neg. LLF: 67.95216678943764
Iteration: 6, Func. Count: 61, Neg. LLF: 67.47698848583123
Iteration: 7, Func. Count: 70, Neg. LLF: 67.47643012879064
Iteration: 8, Func. Count: 79, Neg. LLF: 67.4763800650143
Iteration: 9, Func. Count: 87, Neg. LLF: 67.47638010134654
Optimization terminated successfully (Exit mode 0)
Current function value: 67.4763800650143
Iterations: 9
Function evaluations: 87
Gradient evaluations: 9
Iteration: 1, Func. Count: 11, Neg. LLF: 89.515705416326
Iteration: 2, Func. Count: 23, Neg. LLF: 122.99722227843414
Iteration: 3, Func. Count: 34, Neg. LLF: 154.4836296695705
Iteration: 4, Func. Count: 45, Neg. LLF: 69.56371963372571
Iteration: 5, Func. Count: 56, Neg. LLF: 67.7203633592165
Iteration: 6, Func. Count: 66, Neg. LLF: 67.49050859804468
Iteration: 7, Func. Count: 76, Neg. LLF: 67.47801020231645
Iteration: 8, Func. Count: 86, Neg. LLF: 67.47658541084306
Iteration: 9, Func. Count: 96, Neg. LLF: 67.47640688666529
Iteration: 10, Func. Count: 106, Neg. LLF: 67.47637970735835
Iteration: 11, Func. Count: 115, Neg. LLF: 67.4763797374197
Optimization terminated successfully (Exit mode 0)
Current function value: 67.47637970735835
Iterations: 11
Function evaluations: 115
Gradient evaluations: 11
Iteration: 1, Func. Count: 12, Neg. LLF: 87.35519642002988
Iteration: 2, Func. Count: 25, Neg. LLF: 164.2968592339637
Iteration: 3, Func. Count: 37, Neg. LLF: 3096.7815745709827
Iteration: 4, Func. Count: 49, Neg. LLF: 70.05105773165681
Iteration: 5, Func. Count: 61, Neg. LLF: 68.38118480249015
Iteration: 6, Func. Count: 73, Neg. LLF: 67.4874554380636
Iteration: 7, Func. Count: 84, Neg. LLF: 67.47855653321908
Iteration: 8, Func. Count: 95, Neg. LLF: 67.47677788673488
Iteration: 9, Func. Count: 106, Neg. LLF: 67.4764274489298
Iteration: 10, Func. Count: 117, Neg. LLF: 67.47637978012267
Iteration: 11, Func. Count: 127, Neg. LLF: 67.47637978947374
Optimization terminated successfully (Exit mode 0)
Current function value: 67.47637978012267
Iterations: 11
Function evaluations: 127
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 116.88321503580543
Iteration: 2, Func. Count: 21, Neg. LLF: 123.7283434039845
Iteration: 3, Func. Count: 31, Neg. LLF: 1112.8153029899163
Iteration: 4, Func. Count: 40, Neg. LLF: 2575.755183482711
Iteration: 5, Func. Count: 49, Neg. LLF: 66.89678233846956
Iteration: 6, Func. Count: 57, Neg. LLF: 66.89232996882214
Iteration: 7, Func. Count: 65, Neg. LLF: 66.89026668577934
Iteration: 8, Func. Count: 73, Neg. LLF: 66.88991368999844
Iteration: 9, Func. Count: 81, Neg. LLF: 66.88985935531863
Iteration: 10, Func. Count: 89, Neg. LLF: 66.88980982903546
Iteration: 11, Func. Count: 97, Neg. LLF: 66.88980877984494
Iteration: 12, Func. Count: 104, Neg. LLF: 66.88980866709461
Optimization terminated successfully (Exit mode 0)
Current function value: 66.88980877984494
Iterations: 12
Function evaluations: 104
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 91.16064386158155
Iteration: 2, Func. Count: 21, Neg. LLF: 166.43363134213993
Iteration: 3, Func. Count: 32, Neg. LLF: 2456.691768541994
Iteration: 4, Func. Count: 42, Neg. LLF: 126.36058550604602
Iteration: 5, Func. Count: 52, Neg. LLF: 66.97433993065304
Iteration: 6, Func. Count: 61, Neg. LLF: 66.91698122665264
Iteration: 7, Func. Count: 70, Neg. LLF: 66.89469390533155
Iteration: 8, Func. Count: 79, Neg. LLF: 66.89039030181122
Iteration: 9, Func. Count: 88, Neg. LLF: 66.88985049506405
Iteration: 10, Func. Count: 97, Neg. LLF: 66.88981242716292
Iteration: 11, Func. Count: 106, Neg. LLF: 66.88980875951437
Iteration: 12, Func. Count: 114, Neg. LLF: 66.88980880469042
Optimization terminated successfully (Exit mode 0)
Current function value: 66.88980875951437
Iterations: 12
Function evaluations: 114
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 87.81011542405214
Iteration: 2, Func. Count: 23, Neg. LLF: 195.56661434371355
Iteration: 3, Func. Count: 34, Neg. LLF: 26733503.905033905
Iteration: 4, Func. Count: 45, Neg. LLF: 84.96992807866539
Iteration: 5, Func. Count: 56, Neg. LLF: 68.17628884156892
Iteration: 6, Func. Count: 66, Neg. LLF: 67.00206590195594
Iteration: 7, Func. Count: 76, Neg. LLF: 66.92930818240623
Iteration: 8, Func. Count: 86, Neg. LLF: 66.90551593741289
Iteration: 9, Func. Count: 96, Neg. LLF: 66.89059131703037
Iteration: 10, Func. Count: 106, Neg. LLF: 66.88985380364946
Iteration: 11, Func. Count: 116, Neg. LLF: 66.88981021243848
Iteration: 12, Func. Count: 126, Neg. LLF: 66.88980878711529
Iteration: 13, Func. Count: 135, Neg. LLF: 66.88980882462593
Optimization terminated successfully (Exit mode 0)
Current function value: 66.88980878711529
Iterations: 13
Function evaluations: 135
Gradient evaluations: 13
Iteration: 1, Func. Count: 12, Neg. LLF: 86.3067953167921
Iteration: 2, Func. Count: 25, Neg. LLF: 111.33584418985959
Iteration: 3, Func. Count: 38, Neg. LLF: 23983610.660985682
Iteration: 4, Func. Count: 50, Neg. LLF: 580.8515031618228
Iteration: 5, Func. Count: 62, Neg. LLF: 66.93507472267875
Iteration: 6, Func. Count: 73, Neg. LLF: 66.90888196625409
Iteration: 7, Func. Count: 84, Neg. LLF: 66.89089790665372
Iteration: 8, Func. Count: 95, Neg. LLF: 66.88993394573762
Iteration: 9, Func. Count: 106, Neg. LLF: 66.88981860241397
Iteration: 10, Func. Count: 117, Neg. LLF: 66.88980876918872
Iteration: 11, Func. Count: 127, Neg. LLF: 66.88980880164617
Optimization terminated successfully (Exit mode 0)
Current function value: 66.88980876918872
Iterations: 11
Function evaluations: 127
Gradient evaluations: 11
Iteration: 1, Func. Count: 13, Neg. LLF: 84.17456811816221
Iteration: 2, Func. Count: 27, Neg. LLF: 110.39263580482726
Iteration: 3, Func. Count: 41, Neg. LLF: 909.4123767864382
Iteration: 4, Func. Count: 54, Neg. LLF: 69.56312546090587
Iteration: 5, Func. Count: 67, Neg. LLF: 66.92708601760185
Iteration: 6, Func. Count: 79, Neg. LLF: 66.89805250083202
Iteration: 7, Func. Count: 91, Neg. LLF: 66.89048462948304
Iteration: 8, Func. Count: 103, Neg. LLF: 66.8898182892778
Iteration: 9, Func. Count: 115, Neg. LLF: 66.88980880411147
Iteration: 10, Func. Count: 126, Neg. LLF: 66.88980882199097
Optimization terminated successfully (Exit mode 0)
Current function value: 66.88980880411147
Iterations: 10
Function evaluations: 126
Gradient evaluations: 10
Iteration: 1, Func. Count: 10, Neg. LLF: 117.07013295861896
Iteration: 2, Func. Count: 23, Neg. LLF: 126.14467839158122
Iteration: 3, Func. Count: 34, Neg. LLF: 111.07831970543161
Iteration: 4, Func. Count: 44, Neg. LLF: 70.79324437968337
Iteration: 5, Func. Count: 54, Neg. LLF: 66.81843970347244
Iteration: 6, Func. Count: 63, Neg. LLF: 67.04829727494706
Iteration: 7, Func. Count: 73, Neg. LLF: 66.62592115205985
Iteration: 8, Func. Count: 82, Neg. LLF: 66.60892533348147
Iteration: 9, Func. Count: 91, Neg. LLF: 66.60445249971275
Iteration: 10, Func. Count: 100, Neg. LLF: 66.60267182385515
Iteration: 11, Func. Count: 109, Neg. LLF: 66.60023583903283
Iteration: 12, Func. Count: 118, Neg. LLF: 66.59955974248903
Iteration: 13, Func. Count: 127, Neg. LLF: 66.5994383604904
Iteration: 14, Func. Count: 136, Neg. LLF: 66.5994376425193
Optimization terminated successfully (Exit mode 0)
Current function value: 66.5994376425193
Iterations: 14
Function evaluations: 136
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 92.62771941329497
Iteration: 2, Func. Count: 23, Neg. LLF: 185.11378077087477
Iteration: 3, Func. Count: 35, Neg. LLF: 2799606.2146109226
Iteration: 4, Func. Count: 46, Neg. LLF: 79.1695320916535
Iteration: 5, Func. Count: 57, Neg. LLF: 68.11028065189163
Iteration: 6, Func. Count: 68, Neg. LLF: 66.66480791013824
Iteration: 7, Func. Count: 78, Neg. LLF: 66.61501950256496
Iteration: 8, Func. Count: 88, Neg. LLF: 66.60596335450495
Iteration: 9, Func. Count: 98, Neg. LLF: 66.60268645830274
Iteration: 10, Func. Count: 108, Neg. LLF: 66.60124959655725
Iteration: 11, Func. Count: 118, Neg. LLF: 66.5998872491327
Iteration: 12, Func. Count: 128, Neg. LLF: 66.59947916204332
Iteration: 13, Func. Count: 138, Neg. LLF: 66.59943956207479
Iteration: 14, Func. Count: 148, Neg. LLF: 66.5994376927062
Iteration: 15, Func. Count: 157, Neg. LLF: 66.59943775436953
Optimization terminated successfully (Exit mode 0)
Current function value: 66.5994376927062
Iterations: 15
Function evaluations: 157
Gradient evaluations: 15
Iteration: 1, Func. Count: 12, Neg. LLF: 89.17599603956319
Iteration: 2, Func. Count: 25, Neg. LLF: 1192701.35009213
Iteration: 3, Func. Count: 38, Neg. LLF: 3079544.551534283
Iteration: 4, Func. Count: 50, Neg. LLF: 84.38099230576249
Iteration: 5, Func. Count: 62, Neg. LLF: 68.69426336944731
Iteration: 6, Func. Count: 74, Neg. LLF: 66.65880718340267
Iteration: 7, Func. Count: 85, Neg. LLF: 66.6297927335221
Iteration: 8, Func. Count: 96, Neg. LLF: 66.61122478252442
Iteration: 9, Func. Count: 107, Neg. LLF: 66.60529139311674
Iteration: 10, Func. Count: 118, Neg. LLF: 66.60239784226613
Iteration: 11, Func. Count: 129, Neg. LLF: 66.60092372903395
Iteration: 12, Func. Count: 140, Neg. LLF: 66.60010498080484
Iteration: 13, Func. Count: 151, Neg. LLF: 66.59958834896923
Iteration: 14, Func. Count: 162, Neg. LLF: 66.59945525536938
Iteration: 15, Func. Count: 173, Neg. LLF: 66.59943856475685
Iteration: 16, Func. Count: 184, Neg. LLF: 66.59943771245715
Optimization terminated successfully (Exit mode 0)
Current function value: 66.59943771245715
Iterations: 16
Function evaluations: 184
Gradient evaluations: 16
Iteration: 1, Func. Count: 13, Neg. LLF: 87.10552058053871
Iteration: 2, Func. Count: 27, Neg. LLF: 123.49709927063823
Iteration: 3, Func. Count: 41, Neg. LLF: 3726038.8670473997
Iteration: 4, Func. Count: 54, Neg. LLF: 83.83683388877739
Iteration: 5, Func. Count: 67, Neg. LLF: 68.82074476075444
Iteration: 6, Func. Count: 80, Neg. LLF: 66.64741672424262
Iteration: 7, Func. Count: 92, Neg. LLF: 66.62083815559068
Iteration: 8, Func. Count: 104, Neg. LLF: 66.61045795903428
Iteration: 9, Func. Count: 116, Neg. LLF: 66.60421005587635
Iteration: 10, Func. Count: 128, Neg. LLF: 66.60160801453003
Iteration: 11, Func. Count: 140, Neg. LLF: 66.60024099694039
Iteration: 12, Func. Count: 152, Neg. LLF: 66.59965164168351
Iteration: 13, Func. Count: 164, Neg. LLF: 66.59946044475075
Iteration: 14, Func. Count: 176, Neg. LLF: 66.59943911620091
Iteration: 15, Func. Count: 188, Neg. LLF: 66.59943764777074
Iteration: 16, Func. Count: 199, Neg. LLF: 66.59943769417424
Optimization terminated successfully (Exit mode 0)
Current function value: 66.59943764777074
Iterations: 16
Function evaluations: 199
Gradient evaluations: 16
Iteration: 1, Func. Count: 14, Neg. LLF: 84.5955267315316
Iteration: 2, Func. Count: 29, Neg. LLF: 114.64285300980612
Iteration: 3, Func. Count: 44, Neg. LLF: 296.3971402850162
Iteration: 4, Func. Count: 58, Neg. LLF: 69.19980827216457
Iteration: 5, Func. Count: 72, Neg. LLF: 68.35634544249093
Iteration: 6, Func. Count: 86, Neg. LLF: 66.66104356969453
Iteration: 7, Func. Count: 99, Neg. LLF: 66.61144895554877
Iteration: 8, Func. Count: 112, Neg. LLF: 66.60447813578074
Iteration: 9, Func. Count: 125, Neg. LLF: 66.60245557191116
Iteration: 10, Func. Count: 138, Neg. LLF: 66.6002601579733
Iteration: 11, Func. Count: 151, Neg. LLF: 66.599485428756
Iteration: 12, Func. Count: 164, Neg. LLF: 66.59943936965111
Iteration: 13, Func. Count: 177, Neg. LLF: 66.59943769514791
Iteration: 14, Func. Count: 189, Neg. LLF: 66.59943770947778
Optimization terminated successfully (Exit mode 0)
Current function value: 66.59943769514791
Iterations: 14
Function evaluations: 189
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 116.24302974325471
Iteration: 2, Func. Count: 25, Neg. LLF: 131.32144979638167
Iteration: 3, Func. Count: 37, Neg. LLF: 2023313.606572241
Iteration: 4, Func. Count: 48, Neg. LLF: 90.30035135364622
Iteration: 5, Func. Count: 59, Neg. LLF: 66.60792030800346
Iteration: 6, Func. Count: 69, Neg. LLF: 68.57751454247162
Iteration: 7, Func. Count: 80, Neg. LLF: 67.44804527016598
Iteration: 8, Func. Count: 91, Neg. LLF: 66.4658690053243
Iteration: 9, Func. Count: 101, Neg. LLF: 66.46070378072721
Iteration: 10, Func. Count: 111, Neg. LLF: 66.46019487264239
Iteration: 11, Func. Count: 121, Neg. LLF: 66.46004680702912
Iteration: 12, Func. Count: 131, Neg. LLF: 66.45994213495018
Iteration: 13, Func. Count: 141, Neg. LLF: 66.45991045970378
Iteration: 14, Func. Count: 151, Neg. LLF: 66.4599041097262
Iteration: 15, Func. Count: 160, Neg. LLF: 66.45990410969843
Optimization terminated successfully (Exit mode 0)
Current function value: 66.4599041097262
Iterations: 15
Function evaluations: 160
Gradient evaluations: 15
Iteration: 1, Func. Count: 12, Neg. LLF: 89.29929113479994
Iteration: 2, Func. Count: 25, Neg. LLF: 106.75300305225035
Iteration: 3, Func. Count: 38, Neg. LLF: 12753562.583448812
Iteration: 4, Func. Count: 50, Neg. LLF: 71.20233225093585
Iteration: 5, Func. Count: 62, Neg. LLF: 68.21303736519198
Iteration: 6, Func. Count: 74, Neg. LLF: 66.56746173437102
Iteration: 7, Func. Count: 85, Neg. LLF: 69.2221061438919
Iteration: 8, Func. Count: 97, Neg. LLF: 66.46710920046957
Iteration: 9, Func. Count: 108, Neg. LLF: 66.46175685651697
Iteration: 10, Func. Count: 119, Neg. LLF: 66.46067599685482
Iteration: 11, Func. Count: 130, Neg. LLF: 66.46032085997508
Iteration: 12, Func. Count: 141, Neg. LLF: 66.46000113103396
Iteration: 13, Func. Count: 152, Neg. LLF: 66.4599188883089
Iteration: 14, Func. Count: 163, Neg. LLF: 66.45990454891516
Iteration: 15, Func. Count: 174, Neg. LLF: 66.45990356765947
Optimization terminated successfully (Exit mode 0)
Current function value: 66.45990356765947
Iterations: 15
Function evaluations: 174
Gradient evaluations: 15
Iteration: 1, Func. Count: 13, Neg. LLF: 85.18946272731678
Iteration: 2, Func. Count: 27, Neg. LLF: 108.86726811509838
Iteration: 3, Func. Count: 41, Neg. LLF: 12890895.829486407
Iteration: 4, Func. Count: 54, Neg. LLF: 75.15784675827787
Iteration: 5, Func. Count: 67, Neg. LLF: 67.25570426668207
Iteration: 6, Func. Count: 79, Neg. LLF: 66.61318841212503
Iteration: 7, Func. Count: 91, Neg. LLF: 78.00135899033098
Iteration: 8, Func. Count: 104, Neg. LLF: 66.73149389917799
Iteration: 9, Func. Count: 117, Neg. LLF: 66.46590922550502
Iteration: 10, Func. Count: 129, Neg. LLF: 66.46255761276373
Iteration: 11, Func. Count: 141, Neg. LLF: 66.46131684373752
Iteration: 12, Func. Count: 153, Neg. LLF: 66.46043139992636
Iteration: 13, Func. Count: 165, Neg. LLF: 66.46008947343476
Iteration: 14, Func. Count: 177, Neg. LLF: 66.4599355221387
Iteration: 15, Func. Count: 189, Neg. LLF: 66.45990649621659
Iteration: 16, Func. Count: 201, Neg. LLF: 66.45990364797879
Iteration: 17, Func. Count: 212, Neg. LLF: 66.45990371180052
Optimization terminated successfully (Exit mode 0)
Current function value: 66.45990364797879
Iterations: 17
Function evaluations: 212
Gradient evaluations: 17
Iteration: 1, Func. Count: 14, Neg. LLF: 83.67480442724346
Iteration: 2, Func. Count: 29, Neg. LLF: 113.84681280475957
Iteration: 3, Func. Count: 44, Neg. LLF: 11936550.231178708
Iteration: 4, Func. Count: 58, Neg. LLF: 70.98018606534127
Iteration: 5, Func. Count: 72, Neg. LLF: 67.74582356957431
Iteration: 6, Func. Count: 86, Neg. LLF: 66.5601210165901
Iteration: 7, Func. Count: 99, Neg. LLF: 70.86358310522026
Iteration: 8, Func. Count: 113, Neg. LLF: 66.48118249285605
Iteration: 9, Func. Count: 126, Neg. LLF: 66.46450265782613
Iteration: 10, Func. Count: 139, Neg. LLF: 66.46253512407537
Iteration: 11, Func. Count: 152, Neg. LLF: 66.46120827865992
Iteration: 12, Func. Count: 165, Neg. LLF: 66.45999791318602
Iteration: 13, Func. Count: 178, Neg. LLF: 66.45991110697787
Iteration: 14, Func. Count: 191, Neg. LLF: 66.45990389112053
Iteration: 15, Func. Count: 203, Neg. LLF: 66.45990393965823
Optimization terminated successfully (Exit mode 0)
Current function value: 66.45990389112053
Iterations: 15
Function evaluations: 203
Gradient evaluations: 15
Iteration: 1, Func. Count: 15, Neg. LLF: 81.53970727548356
Iteration: 2, Func. Count: 31, Neg. LLF: 115.95402063311049
Iteration: 3, Func. Count: 47, Neg. LLF: 11798179.755793506
Iteration: 4, Func. Count: 62, Neg. LLF: 70.00078739998641
Iteration: 5, Func. Count: 77, Neg. LLF: 68.4575434481752
Iteration: 6, Func. Count: 92, Neg. LLF: 66.54485639965232
Iteration: 7, Func. Count: 106, Neg. LLF: 71.43439726848854
Iteration: 8, Func. Count: 121, Neg. LLF: 66.47100194092747
Iteration: 9, Func. Count: 135, Neg. LLF: 66.46424909373373
Iteration: 10, Func. Count: 149, Neg. LLF: 66.46256175957589
Iteration: 11, Func. Count: 163, Neg. LLF: 66.46057737775052
Iteration: 12, Func. Count: 177, Neg. LLF: 66.4599862769401
Iteration: 13, Func. Count: 191, Neg. LLF: 66.45990637529736
Iteration: 14, Func. Count: 205, Neg. LLF: 66.45990373568182
Iteration: 15, Func. Count: 218, Neg. LLF: 66.45990374940418
Optimization terminated successfully (Exit mode 0)
Current function value: 66.45990373568182
Iterations: 15
Function evaluations: 218
Gradient evaluations: 15
Iteration: 1, Func. Count: 12, Neg. LLF: 120.58427525401954
Iteration: 2, Func. Count: 27, Neg. LLF: 134.03004761981336
Iteration: 3, Func. Count: 40, Neg. LLF: 1989894.3847353917
Iteration: 4, Func. Count: 52, Neg. LLF: 24839561.114179593
Iteration: 5, Func. Count: 64, Neg. LLF: 66.62001575309456
Iteration: 6, Func. Count: 75, Neg. LLF: 70.58022346723973
Iteration: 7, Func. Count: 87, Neg. LLF: 67.50496279057933
Iteration: 8, Func. Count: 99, Neg. LLF: 66.47342658970402
Iteration: 9, Func. Count: 110, Neg. LLF: 66.46102665968097
Iteration: 10, Func. Count: 121, Neg. LLF: 66.45999806397882
Iteration: 11, Func. Count: 132, Neg. LLF: 66.45995478192734
Iteration: 12, Func. Count: 143, Neg. LLF: 66.45994008563403
Iteration: 13, Func. Count: 154, Neg. LLF: 66.45991224733551
Iteration: 14, Func. Count: 165, Neg. LLF: 66.45990555000735
Iteration: 15, Func. Count: 176, Neg. LLF: 66.45990363675303
Iteration: 16, Func. Count: 186, Neg. LLF: 66.45990357846969
Optimization terminated successfully (Exit mode 0)
Current function value: 66.45990363675303
Iterations: 16
Function evaluations: 186
Gradient evaluations: 16
Iteration: 1, Func. Count: 13, Neg. LLF: 89.54555015381582
Iteration: 2, Func. Count: 27, Neg. LLF: 106.9427172263608
Iteration: 3, Func. Count: 41, Neg. LLF: 12733902.80342548
Iteration: 4, Func. Count: 54, Neg. LLF: 71.1631933328696
Iteration: 5, Func. Count: 67, Neg. LLF: 68.19374300057477
Iteration: 6, Func. Count: 80, Neg. LLF: 66.56586397316175
Iteration: 7, Func. Count: 92, Neg. LLF: 69.39088659513179
Iteration: 8, Func. Count: 105, Neg. LLF: 66.46722176736999
Iteration: 9, Func. Count: 117, Neg. LLF: 66.46188706290157
Iteration: 10, Func. Count: 129, Neg. LLF: 66.4607597046092
Iteration: 11, Func. Count: 141, Neg. LLF: 66.46035732546096
Iteration: 12, Func. Count: 153, Neg. LLF: 66.46000946183986
Iteration: 13, Func. Count: 165, Neg. LLF: 66.45991950561232
Iteration: 14, Func. Count: 177, Neg. LLF: 66.45990458704236
Iteration: 15, Func. Count: 189, Neg. LLF: 66.45990357005192
Iteration: 16, Func. Count: 200, Neg. LLF: 66.45990361942177
Optimization terminated successfully (Exit mode 0)
Current function value: 66.45990357005192
Iterations: 16
Function evaluations: 200
Gradient evaluations: 16
Iteration: 1, Func. Count: 14, Neg. LLF: 85.41311847531662
Iteration: 2, Func. Count: 29, Neg. LLF: 109.14602853155208
Iteration: 3, Func. Count: 44, Neg. LLF: 12862893.184719436
Iteration: 4, Func. Count: 58, Neg. LLF: 75.0379696870171
Iteration: 5, Func. Count: 72, Neg. LLF: 67.25004149012715
Iteration: 6, Func. Count: 85, Neg. LLF: 66.60893054176093
Iteration: 7, Func. Count: 98, Neg. LLF: 78.12036887402785
Iteration: 8, Func. Count: 112, Neg. LLF: 66.70149105498534
Iteration: 9, Func. Count: 126, Neg. LLF: 66.4658321737921
Iteration: 10, Func. Count: 139, Neg. LLF: 66.46268715523439
Iteration: 11, Func. Count: 152, Neg. LLF: 66.46136132757498
Iteration: 12, Func. Count: 165, Neg. LLF: 66.4604464501766
Iteration: 13, Func. Count: 178, Neg. LLF: 66.46007850968873
Iteration: 14, Func. Count: 191, Neg. LLF: 66.45993362901521
Iteration: 15, Func. Count: 204, Neg. LLF: 66.4599063269069
Iteration: 16, Func. Count: 217, Neg. LLF: 66.45990364299092
Iteration: 17, Func. Count: 229, Neg. LLF: 66.45990370680975
Optimization terminated successfully (Exit mode 0)
Current function value: 66.45990364299092
Iterations: 17
Function evaluations: 229
Gradient evaluations: 17
Iteration: 1, Func. Count: 15, Neg. LLF: 83.90156466148355
Iteration: 2, Func. Count: 31, Neg. LLF: 114.23012577337732
Iteration: 3, Func. Count: 47, Neg. LLF: 11926157.390083151
Iteration: 4, Func. Count: 62, Neg. LLF: 70.93417805488454
Iteration: 5, Func. Count: 77, Neg. LLF: 67.73920211575278
Iteration: 6, Func. Count: 92, Neg. LLF: 66.55944868705852
Iteration: 7, Func. Count: 106, Neg. LLF: 70.9305519311141
Iteration: 8, Func. Count: 121, Neg. LLF: 66.47967097190339
Iteration: 9, Func. Count: 135, Neg. LLF: 66.46470393093476
Iteration: 10, Func. Count: 149, Neg. LLF: 66.46264888106022
Iteration: 11, Func. Count: 163, Neg. LLF: 66.46124798372992
Iteration: 12, Func. Count: 177, Neg. LLF: 66.4599999861856
Iteration: 13, Func. Count: 191, Neg. LLF: 66.45991088653501
Iteration: 14, Func. Count: 205, Neg. LLF: 66.45990388446702
Iteration: 15, Func. Count: 218, Neg. LLF: 66.45990393300447
Optimization terminated successfully (Exit mode 0)
Current function value: 66.45990388446702
Iterations: 15
Function evaluations: 218
Gradient evaluations: 15
Iteration: 1, Func. Count: 16, Neg. LLF: 81.77035792827583
Iteration: 2, Func. Count: 33, Neg. LLF: 116.58345890671093
Iteration: 3, Func. Count: 50, Neg. LLF: 11790728.458925609
Iteration: 4, Func. Count: 66, Neg. LLF: 69.97244202364588
Iteration: 5, Func. Count: 82, Neg. LLF: 68.44440847208803
Iteration: 6, Func. Count: 98, Neg. LLF: 66.54488862506673
Iteration: 7, Func. Count: 113, Neg. LLF: 71.59561839380878
Iteration: 8, Func. Count: 129, Neg. LLF: 66.47125607276507
Iteration: 9, Func. Count: 144, Neg. LLF: 66.46437777982483
Iteration: 10, Func. Count: 159, Neg. LLF: 66.46265775466468
Iteration: 11, Func. Count: 174, Neg. LLF: 66.46055004137904
Iteration: 12, Func. Count: 189, Neg. LLF: 66.45998395091577
Iteration: 13, Func. Count: 204, Neg. LLF: 66.45990608353736
Iteration: 14, Func. Count: 219, Neg. LLF: 66.45990368816507
Iteration: 15, Func. Count: 233, Neg. LLF: 66.45990370187957
Optimization terminated successfully (Exit mode 0)
Current function value: 66.45990368816507
Iterations: 15
Function evaluations: 233
Gradient evaluations: 15
Iteration: 1, Func. Count: 5, Neg. LLF: 244.4205999288251
Iteration: 2, Func. Count: 12, Neg. LLF: 449.203675456897
Iteration: 3, Func. Count: 18, Neg. LLF: 69.68766737918072
Iteration: 4, Func. Count: 22, Neg. LLF: 261.3129975844641
Iteration: 5, Func. Count: 27, Neg. LLF: 69.35063770213473
Iteration: 6, Func. Count: 31, Neg. LLF: 69.17414664540715
Iteration: 7, Func. Count: 35, Neg. LLF: 69.15144506346205
Iteration: 8, Func. Count: 39, Neg. LLF: 69.14960088197412
Iteration: 9, Func. Count: 43, Neg. LLF: 69.14951193108274
Iteration: 10, Func. Count: 47, Neg. LLF: 69.14950524116793
Iteration: 11, Func. Count: 50, Neg. LLF: 69.14950524119868
Optimization terminated successfully (Exit mode 0)
Current function value: 69.14950524116793
Iterations: 11
Function evaluations: 50
Gradient evaluations: 11
Iteration: 1, Func. Count: 5, Neg. LLF: 128.77829104951476
Iteration: 2, Func. Count: 13, Neg. LLF: 694.2385587517198
Iteration: 3, Func. Count: 19, Neg. LLF: 68.97499581814475
Iteration: 4, Func. Count: 23, Neg. LLF: 68.96828265049251
Iteration: 5, Func. Count: 27, Neg. LLF: 68.95780291439662
Iteration: 6, Func. Count: 31, Neg. LLF: 68.95700609805486
Iteration: 7, Func. Count: 35, Neg. LLF: 68.95680282249666
Iteration: 8, Func. Count: 38, Neg. LLF: 68.95680289648044
Optimization terminated successfully (Exit mode 0)
Current function value: 68.95680282249666
Iterations: 8
Function evaluations: 38
Gradient evaluations: 8
Iteration: 1, Func. Count: 6, Neg. LLF: 492286543.2577973
Iteration: 2, Func. Count: 13, Neg. LLF: 70.71505639167782
Iteration: 3, Func. Count: 19, Neg. LLF: 67.89517846962616
Iteration: 4, Func. Count: 24, Neg. LLF: 67.6072891266204
Iteration: 5, Func. Count: 29, Neg. LLF: 67.31602664580122
Iteration: 6, Func. Count: 34, Neg. LLF: 67.31400877437272
Iteration: 7, Func. Count: 39, Neg. LLF: 67.31398370265138
Iteration: 8, Func. Count: 43, Neg. LLF: 67.31398370179193
Optimization terminated successfully (Exit mode 0)
Current function value: 67.31398370265138
Iterations: 8
Function evaluations: 43
Gradient evaluations: 8
Iteration: 1, Func. Count: 7, Neg. LLF: 22393618.45614944
Iteration: 2, Func. Count: 15, Neg. LLF: 71.49472759593132
Iteration: 3, Func. Count: 22, Neg. LLF: 67.73683194421487
Iteration: 4, Func. Count: 28, Neg. LLF: 67.33426213433071
Iteration: 5, Func. Count: 34, Neg. LLF: 67.32313507832095
Iteration: 6, Func. Count: 40, Neg. LLF: 67.31998198929259
Iteration: 7, Func. Count: 46, Neg. LLF: 67.31992577130876
Iteration: 8, Func. Count: 52, Neg. LLF: 67.3199185560539
Iteration: 9, Func. Count: 57, Neg. LLF: 67.3199185560559
Optimization terminated successfully (Exit mode 0)
Current function value: 67.3199185560539
Iterations: 9
Function evaluations: 57
Gradient evaluations: 9
Iteration: 1, Func. Count: 8, Neg. LLF: 22831355.339556754
Iteration: 2, Func. Count: 17, Neg. LLF: 76.81489486277057
Iteration: 3, Func. Count: 25, Neg. LLF: 67.5690549674545
Iteration: 4, Func. Count: 32, Neg. LLF: 67.37512524754982
Iteration: 5, Func. Count: 39, Neg. LLF: 67.31487346259948
Iteration: 6, Func. Count: 46, Neg. LLF: 67.29818793070193
Iteration: 7, Func. Count: 53, Neg. LLF: 67.2865632409382
Iteration: 8, Func. Count: 60, Neg. LLF: 67.28115532189747
Iteration: 9, Func. Count: 67, Neg. LLF: 67.2817018593141
Iteration: 10, Func. Count: 75, Neg. LLF: 67.28049280751301
Iteration: 11, Func. Count: 83, Neg. LLF: 67.27989501375369
Iteration: 12, Func. Count: 89, Neg. LLF: 67.27989501374158
Optimization terminated successfully (Exit mode 0)
Current function value: 67.27989501375369
Iterations: 12
Function evaluations: 89
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 23125404.71642852
Iteration: 2, Func. Count: 19, Neg. LLF: 85.65083618420962
Iteration: 3, Func. Count: 29, Neg. LLF: 67.49655714157687
Iteration: 4, Func. Count: 37, Neg. LLF: 67.33171241763706
Iteration: 5, Func. Count: 45, Neg. LLF: 67.2946844200178
Iteration: 6, Func. Count: 53, Neg. LLF: 67.28849422843206
Iteration: 7, Func. Count: 61, Neg. LLF: 67.2873359351446
Iteration: 8, Func. Count: 69, Neg. LLF: 67.28732119787333
Iteration: 9, Func. Count: 77, Neg. LLF: 67.28730614622503
Iteration: 10, Func. Count: 84, Neg. LLF: 67.28730614624394
Optimization terminated successfully (Exit mode 0)
Current function value: 67.28730614622503
Iterations: 10
Function evaluations: 84
Gradient evaluations: 10
Iteration: 1, Func. Count: 6, Neg. LLF: 110.20831433154227
Iteration: 2, Func. Count: 15, Neg. LLF: 684.7648501819784
Iteration: 3, Func. Count: 22, Neg. LLF: 140.12179819675836
Iteration: 4, Func. Count: 28, Neg. LLF: 67.68962533450558
Iteration: 5, Func. Count: 33, Neg. LLF: 67.68210315106434
Iteration: 6, Func. Count: 38, Neg. LLF: 67.66960233032682
Iteration: 7, Func. Count: 43, Neg. LLF: 67.66934950427958
Iteration: 8, Func. Count: 48, Neg. LLF: 67.66934175384091
Iteration: 9, Func. Count: 53, Neg. LLF: 67.66933809516344
Iteration: 10, Func. Count: 57, Neg. LLF: 67.66933809513539
Optimization terminated successfully (Exit mode 0)
Current function value: 67.66933809516344
Iterations: 10
Function evaluations: 57
Gradient evaluations: 10
Iteration: 1, Func. Count: 7, Neg. LLF: 573039481.4783549
Iteration: 2, Func. Count: 15, Neg. LLF: 199.14855677872492
Iteration: 3, Func. Count: 23, Neg. LLF: 67.74705240383729
Iteration: 4, Func. Count: 29, Neg. LLF: 67.33877611468516
Iteration: 5, Func. Count: 35, Neg. LLF: 67.31700670219516
Iteration: 6, Func. Count: 41, Neg. LLF: 67.31418342583294
Iteration: 7, Func. Count: 47, Neg. LLF: 67.31399212427989
Iteration: 8, Func. Count: 53, Neg. LLF: 67.313983561766
Iteration: 9, Func. Count: 58, Neg. LLF: 67.31398356129317
Optimization terminated successfully (Exit mode 0)
Current function value: 67.313983561766
Iterations: 9
Function evaluations: 58
Gradient evaluations: 9
Iteration: 1, Func. Count: 8, Neg. LLF: 567184325.5795817
Iteration: 2, Func. Count: 17, Neg. LLF: 295.16577142733826
Iteration: 3, Func. Count: 27, Neg. LLF: 68.4856285224296
Iteration: 4, Func. Count: 35, Neg. LLF: 67.95129733486034
Iteration: 5, Func. Count: 43, Neg. LLF: 67.27064539235789
Iteration: 6, Func. Count: 50, Neg. LLF: 67.31793906970864
Iteration: 7, Func. Count: 58, Neg. LLF: 67.25034677758421
Iteration: 8, Func. Count: 65, Neg. LLF: 67.24978159562613
Iteration: 9, Func. Count: 72, Neg. LLF: 67.24961912568973
Iteration: 10, Func. Count: 79, Neg. LLF: 67.24961546285095
Iteration: 11, Func. Count: 85, Neg. LLF: 67.24961546266307
Optimization terminated successfully (Exit mode 0)
Current function value: 67.24961546285095
Iterations: 11
Function evaluations: 85
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 862634014.0990001
Iteration: 2, Func. Count: 19, Neg. LLF: 2946065.729725309
Iteration: 3, Func. Count: 30, Neg. LLF: 67.32149599167049
Iteration: 4, Func. Count: 38, Neg. LLF: 67.83921170367739
Iteration: 5, Func. Count: 47, Neg. LLF: 67.54660303135921
Iteration: 6, Func. Count: 56, Neg. LLF: 66.5002952854058
Iteration: 7, Func. Count: 64, Neg. LLF: 70.37253745541616
Iteration: 8, Func. Count: 73, Neg. LLF: 65.54623678319032
Iteration: 9, Func. Count: 81, Neg. LLF: 66.38414754114851
Iteration: 10, Func. Count: 91, Neg. LLF: 65.27960610079636
Iteration: 11, Func. Count: 99, Neg. LLF: 65.18605777110187
Iteration: 12, Func. Count: 107, Neg. LLF: 65.1738111678588
Iteration: 13, Func. Count: 115, Neg. LLF: 65.17355387249636
Iteration: 14, Func. Count: 123, Neg. LLF: 65.17352714556426
Iteration: 15, Func. Count: 131, Neg. LLF: 65.17720172043931
Optimization terminated successfully (Exit mode 0)
Current function value: 65.17352712797656
Iterations: 16
Function evaluations: 134
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 966388332.178744
Iteration: 2, Func. Count: 21, Neg. LLF: 246580993.12167805
Iteration: 3, Func. Count: 32, Neg. LLF: 69.7206590975085
Iteration: 4, Func. Count: 42, Neg. LLF: 66.43749434082123
Iteration: 5, Func. Count: 51, Neg. LLF: 66.7772177834669
Iteration: 6, Func. Count: 62, Neg. LLF: 67.31067512023637
Iteration: 7, Func. Count: 74, Neg. LLF: 66.29914195588896
Iteration: 8, Func. Count: 83, Neg. LLF: 66.29559317179826
Iteration: 9, Func. Count: 92, Neg. LLF: 66.29552347125797
Iteration: 10, Func. Count: 101, Neg. LLF: 66.29549078605578
Iteration: 11, Func. Count: 110, Neg. LLF: 66.29548671332289
Iteration: 12, Func. Count: 119, Neg. LLF: 66.29548507458986
Iteration: 13, Func. Count: 127, Neg. LLF: 66.29548507463507
Optimization terminated successfully (Exit mode 0)
Current function value: 66.29548507458986
Iterations: 13
Function evaluations: 127
Gradient evaluations: 13
Iteration: 1, Func. Count: 7, Neg. LLF: 142.922413257787
Iteration: 2, Func. Count: 17, Neg. LLF: 751.8797545959202
Iteration: 3, Func. Count: 25, Neg. LLF: 5999766.55886649
Iteration: 4, Func. Count: 32, Neg. LLF: 75.25165378334479
Iteration: 5, Func. Count: 40, Neg. LLF: 67.51580815623649
Iteration: 6, Func. Count: 46, Neg. LLF: 67.51360552816871
Iteration: 7, Func. Count: 52, Neg. LLF: 67.51095889738232
Iteration: 8, Func. Count: 58, Neg. LLF: 67.50990077807255
Iteration: 9, Func. Count: 64, Neg. LLF: 67.50974884285522
Iteration: 10, Func. Count: 70, Neg. LLF: 67.50974514744419
Iteration: 11, Func. Count: 75, Neg. LLF: 67.50974514746676
Optimization terminated successfully (Exit mode 0)
Current function value: 67.50974514744419
Iterations: 11
Function evaluations: 75
Gradient evaluations: 11
Iteration: 1, Func. Count: 8, Neg. LLF: 502820783.65672296
Iteration: 2, Func. Count: 17, Neg. LLF: 97.0085433795401
Iteration: 3, Func. Count: 26, Neg. LLF: 67.86976037533331
Iteration: 4, Func. Count: 33, Neg. LLF: 68.09200522252169
Iteration: 5, Func. Count: 41, Neg. LLF: 71.24766513122462
Iteration: 6, Func. Count: 49, Neg. LLF: 70.75346787839983
Iteration: 7, Func. Count: 57, Neg. LLF: 69.89562236721305
Iteration: 8, Func. Count: 65, Neg. LLF: 69.208404686072
Iteration: 9, Func. Count: 73, Neg. LLF: 68.71178128047173
Iteration: 10, Func. Count: 81, Neg. LLF: 68.34044865980336
Iteration: 11, Func. Count: 89, Neg. LLF: 67.69822457922942
Iteration: 12, Func. Count: 97, Neg. LLF: 67.43975599788288
Iteration: 13, Func. Count: 105, Neg. LLF: 67.39972846623883
Iteration: 14, Func. Count: 112, Neg. LLF: 67.35325069115716
Iteration: 15, Func. Count: 119, Neg. LLF: 67.3213865593841
Iteration: 16, Func. Count: 126, Neg. LLF: 67.3141134488782
Iteration: 17, Func. Count: 133, Neg. LLF: 67.31399236883622
Iteration: 18, Func. Count: 140, Neg. LLF: 67.31398351706538
Iteration: 19, Func. Count: 146, Neg. LLF: 67.31398351706272
Optimization terminated successfully (Exit mode 0)
Current function value: 67.31398351706538
Iterations: 19
Function evaluations: 146
Gradient evaluations: 19
Iteration: 1, Func. Count: 9, Neg. LLF: 473790305.660404
Iteration: 2, Func. Count: 19, Neg. LLF: 258.1083934266916
Iteration: 3, Func. Count: 30, Neg. LLF: 80.69443364204923
Iteration: 4, Func. Count: 40, Neg. LLF: 67.36843817861548
Iteration: 5, Func. Count: 48, Neg. LLF: 67.2627044101915
Iteration: 6, Func. Count: 56, Neg. LLF: 67.26383074159537
Iteration: 7, Func. Count: 65, Neg. LLF: 67.2505598386007
Iteration: 8, Func. Count: 73, Neg. LLF: 67.24982510205963
Iteration: 9, Func. Count: 81, Neg. LLF: 67.24968262067017
Iteration: 10, Func. Count: 89, Neg. LLF: 67.24962447174303
Iteration: 11, Func. Count: 97, Neg. LLF: 67.24961584541887
Iteration: 12, Func. Count: 105, Neg. LLF: 67.24961518544754
Optimization terminated successfully (Exit mode 0)
Current function value: 67.24961518544754
Iterations: 12
Function evaluations: 105
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 718806825.0623236
Iteration: 2, Func. Count: 21, Neg. LLF: 4763912.62258009
Iteration: 3, Func. Count: 32, Neg. LLF: 126.52971031970053
Iteration: 4, Func. Count: 43, Neg. LLF: 65.67302511819247
Iteration: 5, Func. Count: 52, Neg. LLF: 66.45631315178548
Iteration: 6, Func. Count: 63, Neg. LLF: 65.19653571114276
Iteration: 7, Func. Count: 72, Neg. LLF: 65.17448387820349
Iteration: 8, Func. Count: 81, Neg. LLF: 65.17288884953739
Iteration: 9, Func. Count: 90, Neg. LLF: 65.17241841027322
Iteration: 10, Func. Count: 99, Neg. LLF: 65.17237394965751
Iteration: 11, Func. Count: 108, Neg. LLF: 65.17237110837982
Iteration: 12, Func. Count: 116, Neg. LLF: 65.17237110844206
Optimization terminated successfully (Exit mode 0)
Current function value: 65.17237110837982
Iterations: 12
Function evaluations: 116
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 202404302.01146662
Iteration: 2, Func. Count: 23, Neg. LLF: 4431700.028371125
Iteration: 3, Func. Count: 34, Neg. LLF: 234.3713186028375
Iteration: 4, Func. Count: 46, Neg. LLF: 66.36337634945865
Iteration: 5, Func. Count: 56, Neg. LLF: 66.7457076481244
Iteration: 6, Func. Count: 67, Neg. LLF: 66.45283298305338
Iteration: 7, Func. Count: 78, Neg. LLF: 66.26926496737079
Iteration: 8, Func. Count: 88, Neg. LLF: 66.25570914360549
Iteration: 9, Func. Count: 98, Neg. LLF: 66.24897500172752
Iteration: 10, Func. Count: 108, Neg. LLF: 66.23845471651032
Iteration: 11, Func. Count: 118, Neg. LLF: 66.23544485831472
Iteration: 12, Func. Count: 128, Neg. LLF: 66.23403213367875
Iteration: 13, Func. Count: 138, Neg. LLF: 66.23370224219815
Iteration: 14, Func. Count: 148, Neg. LLF: 66.23368789205635
Iteration: 15, Func. Count: 158, Neg. LLF: 66.23368531808721
Iteration: 16, Func. Count: 167, Neg. LLF: 66.23368531812822
Optimization terminated successfully (Exit mode 0)
Current function value: 66.23368531808721
Iterations: 16
Function evaluations: 167
Gradient evaluations: 16
Iteration: 1, Func. Count: 8, Neg. LLF: 145.39124456230778
Iteration: 2, Func. Count: 19, Neg. LLF: 766.133191706188
Iteration: 3, Func. Count: 28, Neg. LLF: 6043165.780337294
Iteration: 4, Func. Count: 36, Neg. LLF: 162.4758355638642
Iteration: 5, Func. Count: 45, Neg. LLF: 67.5307824232603
Iteration: 6, Func. Count: 52, Neg. LLF: 67.52458198745133
Iteration: 7, Func. Count: 59, Neg. LLF: 67.5163647704082
Iteration: 8, Func. Count: 66, Neg. LLF: 67.51152092036553
Iteration: 9, Func. Count: 73, Neg. LLF: 67.51005192393896
Iteration: 10, Func. Count: 80, Neg. LLF: 67.50982738233824
Iteration: 11, Func. Count: 87, Neg. LLF: 67.5097618087961
Iteration: 12, Func. Count: 94, Neg. LLF: 67.50974602729563
Iteration: 13, Func. Count: 101, Neg. LLF: 67.5097448534813
Iteration: 14, Func. Count: 107, Neg. LLF: 67.50974490157571
Optimization terminated successfully (Exit mode 0)
Current function value: 67.5097448534813
Iterations: 14
Function evaluations: 107
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 505209842.74019307
Iteration: 2, Func. Count: 19, Neg. LLF: 281.098672503579
Iteration: 3, Func. Count: 29, Neg. LLF: 339.51416583845787
Iteration: 4, Func. Count: 40, Neg. LLF: 67.48498337116933
Iteration: 5, Func. Count: 48, Neg. LLF: 67.55718112372375
Iteration: 6, Func. Count: 57, Neg. LLF: 67.38979120110164
Iteration: 7, Func. Count: 65, Neg. LLF: 67.3460970968758
Iteration: 8, Func. Count: 73, Neg. LLF: 67.31731292414901
Iteration: 9, Func. Count: 81, Neg. LLF: 67.31408951655135
Iteration: 10, Func. Count: 89, Neg. LLF: 67.31398377932622
Iteration: 11, Func. Count: 96, Neg. LLF: 67.31398377788155
Optimization terminated successfully (Exit mode 0)
Current function value: 67.31398377932622
Iterations: 11
Function evaluations: 96
Gradient evaluations: 11
Iteration: 1, Func. Count: 10, Neg. LLF: 486935461.6086295
Iteration: 2, Func. Count: 21, Neg. LLF: 275.9156244148035
Iteration: 3, Func. Count: 32, Neg. LLF: 5911209.520100399
Iteration: 4, Func. Count: 43, Neg. LLF: 67.4459329738568
Iteration: 5, Func. Count: 52, Neg. LLF: 67.27307840666573
Iteration: 6, Func. Count: 61, Neg. LLF: 67.28999129104758
Iteration: 7, Func. Count: 71, Neg. LLF: 67.25142759281414
Iteration: 8, Func. Count: 80, Neg. LLF: 67.24981372949422
Iteration: 9, Func. Count: 89, Neg. LLF: 67.24968513350001
Iteration: 10, Func. Count: 98, Neg. LLF: 67.24964861388878
Iteration: 11, Func. Count: 107, Neg. LLF: 67.24961722234698
Iteration: 12, Func. Count: 116, Neg. LLF: 67.24961528274868
Iteration: 13, Func. Count: 124, Neg. LLF: 67.2496152829437
Optimization terminated successfully (Exit mode 0)
Current function value: 67.24961528274868
Iterations: 13
Function evaluations: 124
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 708046052.4737067
Iteration: 2, Func. Count: 23, Neg. LLF: 5193705.800809842
Iteration: 3, Func. Count: 35, Neg. LLF: 231.95727679641018
Iteration: 4, Func. Count: 47, Neg. LLF: 65.79829158440229
Iteration: 5, Func. Count: 57, Neg. LLF: 67.13632374833745
Iteration: 6, Func. Count: 69, Neg. LLF: 65.18805262819328
Iteration: 7, Func. Count: 79, Neg. LLF: 65.1740419450572
Iteration: 8, Func. Count: 89, Neg. LLF: 65.17268179239932
Iteration: 9, Func. Count: 99, Neg. LLF: 65.17254254444296
Iteration: 10, Func. Count: 109, Neg. LLF: 65.17241382022041
Iteration: 11, Func. Count: 119, Neg. LLF: 65.17239049702064
Iteration: 12, Func. Count: 129, Neg. LLF: 65.17238223471924
Iteration: 13, Func. Count: 139, Neg. LLF: 65.17237109629424
Iteration: 14, Func. Count: 148, Neg. LLF: 65.17237109631883
Optimization terminated successfully (Exit mode 0)
Current function value: 65.17237109629424
Iterations: 14
Function evaluations: 148
Gradient evaluations: 14
Iteration: 1, Func. Count: 12, Neg. LLF: 201397616.1435724
Iteration: 2, Func. Count: 25, Neg. LLF: 5681271.886101169
Iteration: 3, Func. Count: 37, Neg. LLF: 93.67808397531851
Iteration: 4, Func. Count: 50, Neg. LLF: 66.39224478981158
Iteration: 5, Func. Count: 61, Neg. LLF: 67.27413632913594
Iteration: 6, Func. Count: 73, Neg. LLF: 66.21052585671906
Iteration: 7, Func. Count: 84, Neg. LLF: 67.56276917145757
Iteration: 8, Func. Count: 96, Neg. LLF: 70.82006064306239
Iteration: 9, Func. Count: 108, Neg. LLF: 65.43770781893194
Iteration: 10, Func. Count: 119, Neg. LLF: 65.34370760512134
Iteration: 11, Func. Count: 130, Neg. LLF: 65.32423072203032
Iteration: 12, Func. Count: 142, Neg. LLF: 65.18892237996457
Iteration: 13, Func. Count: 153, Neg. LLF: 65.1741308428538
Iteration: 14, Func. Count: 164, Neg. LLF: 65.17238690385199
Iteration: 15, Func. Count: 175, Neg. LLF: 65.17238289697666
Iteration: 16, Func. Count: 187, Neg. LLF: 65.1723711105146
Optimization terminated successfully (Exit mode 0)
Current function value: 65.1723711105146
Iterations: 16
Function evaluations: 187
Gradient evaluations: 16
Iteration: 1, Func. Count: 5, Neg. LLF: 180.4954212253692
Iteration: 2, Func. Count: 13, Neg. LLF: 381.39606131979997
Iteration: 3, Func. Count: 19, Neg. LLF: 69.14789412924212
Iteration: 4, Func. Count: 24, Neg. LLF: 68.72038310800166
Iteration: 5, Func. Count: 29, Neg. LLF: 68.60803847489872
Iteration: 6, Func. Count: 34, Neg. LLF: 68.28790968786743
Iteration: 7, Func. Count: 38, Neg. LLF: 68.28671297229172
Iteration: 8, Func. Count: 42, Neg. LLF: 68.28632340630932
Iteration: 9, Func. Count: 45, Neg. LLF: 68.28632340627915
Optimization terminated successfully (Exit mode 0)
Current function value: 68.28632340630932
Iterations: 9
Function evaluations: 45
Gradient evaluations: 9
Iteration: 1, Func. Count: 6, Neg. LLF: 91627409.79333453
Iteration: 2, Func. Count: 13, Neg. LLF: 78.91127957677206
Iteration: 3, Func. Count: 20, Neg. LLF: 88.81399214866894
Iteration: 4, Func. Count: 27, Neg. LLF: 68.41859641382392
Iteration: 5, Func. Count: 33, Neg. LLF: 67.8038639800815
Iteration: 6, Func. Count: 38, Neg. LLF: 67.80360636783115
Iteration: 7, Func. Count: 43, Neg. LLF: 67.80359746164072
Iteration: 8, Func. Count: 47, Neg. LLF: 67.80359746174634
Optimization terminated successfully (Exit mode 0)
Current function value: 67.80359746164072
Iterations: 8
Function evaluations: 47
Gradient evaluations: 8
Iteration: 1, Func. Count: 7, Neg. LLF: 1546.292047115053
Iteration: 2, Func. Count: 15, Neg. LLF: 38074.07498330749
Iteration: 3, Func. Count: 23, Neg. LLF: 80.44310617171918
Iteration: 4, Func. Count: 31, Neg. LLF: 67.96155498909248
Iteration: 5, Func. Count: 38, Neg. LLF: 67.8078625757181
Iteration: 6, Func. Count: 44, Neg. LLF: 67.7589845148582
Iteration: 7, Func. Count: 50, Neg. LLF: 67.7582549918723
Iteration: 8, Func. Count: 56, Neg. LLF: 67.75752750673256
Iteration: 9, Func. Count: 62, Neg. LLF: 67.75730745714097
Iteration: 10, Func. Count: 68, Neg. LLF: 67.75727823334914
Iteration: 11, Func. Count: 73, Neg. LLF: 67.75727823330395
Optimization terminated successfully (Exit mode 0)
Current function value: 67.75727823334914
Iterations: 11
Function evaluations: 73
Gradient evaluations: 11
Iteration: 1, Func. Count: 8, Neg. LLF: 1134.6493084520794
Iteration: 2, Func. Count: 17, Neg. LLF: 191.8254248028451
Iteration: 3, Func. Count: 26, Neg. LLF: 72.3677302991848
Iteration: 4, Func. Count: 34, Neg. LLF: 74.47334187701844
Iteration: 5, Func. Count: 42, Neg. LLF: 67.76060104697324
Iteration: 6, Func. Count: 49, Neg. LLF: 67.75884900357146
Iteration: 7, Func. Count: 56, Neg. LLF: 67.75763154045517
Iteration: 8, Func. Count: 63, Neg. LLF: 67.75733183558297
Iteration: 9, Func. Count: 70, Neg. LLF: 67.75727811064016
Iteration: 10, Func. Count: 76, Neg. LLF: 67.7572781303239
Optimization terminated successfully (Exit mode 0)
Current function value: 67.75727811064016
Iterations: 10
Function evaluations: 76
Gradient evaluations: 10
Iteration: 1, Func. Count: 9, Neg. LLF: 78221247.54755446
Iteration: 2, Func. Count: 19, Neg. LLF: 70.84899423896736
Iteration: 3, Func. Count: 28, Neg. LLF: 68.98562084084017
Iteration: 4, Func. Count: 37, Neg. LLF: 84.26000306164387
Iteration: 5, Func. Count: 46, Neg. LLF: 68.11142175279537
Iteration: 6, Func. Count: 55, Neg. LLF: 67.4808873920078
Iteration: 7, Func. Count: 63, Neg. LLF: 67.4513514992075
Iteration: 8, Func. Count: 72, Neg. LLF: 67.29010197167553
Iteration: 9, Func. Count: 80, Neg. LLF: 67.37241924036151
Iteration: 10, Func. Count: 89, Neg. LLF: 67.27665536411737
Iteration: 11, Func. Count: 98, Neg. LLF: 67.25371478906258
Iteration: 12, Func. Count: 106, Neg. LLF: 67.25153075510016
Iteration: 13, Func. Count: 114, Neg. LLF: 67.25130781439609
Iteration: 14, Func. Count: 122, Neg. LLF: 67.25106891021791
Iteration: 15, Func. Count: 130, Neg. LLF: 67.25094782920407
Iteration: 16, Func. Count: 138, Neg. LLF: 67.25094144892331
Iteration: 17, Func. Count: 145, Neg. LLF: 67.25094144935066
Optimization terminated successfully (Exit mode 0)
Current function value: 67.25094144892331
Iterations: 17
Function evaluations: 145
Gradient evaluations: 17
Iteration: 1, Func. Count: 6, Neg. LLF: 180.94308672443643
Iteration: 2, Func. Count: 15, Neg. LLF: 184.4148601424759
Iteration: 3, Func. Count: 23, Neg. LLF: 69.15933033484657
Iteration: 4, Func. Count: 29, Neg. LLF: 67.70177909456905
Iteration: 5, Func. Count: 34, Neg. LLF: 67.69719887029183
Iteration: 6, Func. Count: 39, Neg. LLF: 67.69355534012699
Iteration: 7, Func. Count: 44, Neg. LLF: 67.69291443996234
Iteration: 8, Func. Count: 49, Neg. LLF: 67.69289907722077
Iteration: 9, Func. Count: 53, Neg. LLF: 67.6928990095703
Optimization terminated successfully (Exit mode 0)
Current function value: 67.69289907722077
Iterations: 9
Function evaluations: 53
Gradient evaluations: 9
Iteration: 1, Func. Count: 7, Neg. LLF: 75495190.14264944
Iteration: 2, Func. Count: 15, Neg. LLF: 73.21282057064472
Iteration: 3, Func. Count: 23, Neg. LLF: 4482574.150386649
Iteration: 4, Func. Count: 31, Neg. LLF: 67.6964933824086
Iteration: 5, Func. Count: 37, Neg. LLF: 67.69501425550003
Iteration: 6, Func. Count: 43, Neg. LLF: 67.69331391859788
Iteration: 7, Func. Count: 49, Neg. LLF: 67.69301291751447
Iteration: 8, Func. Count: 55, Neg. LLF: 67.69292119218885
Iteration: 9, Func. Count: 61, Neg. LLF: 67.69290127179696
Iteration: 10, Func. Count: 67, Neg. LLF: 67.69289858931161
Iteration: 11, Func. Count: 72, Neg. LLF: 67.69289861025773
Optimization terminated successfully (Exit mode 0)
Current function value: 67.69289858931161
Iterations: 11
Function evaluations: 72
Gradient evaluations: 11
Iteration: 1, Func. Count: 8, Neg. LLF: 55113535.048017785
Iteration: 2, Func. Count: 17, Neg. LLF: 191.79915547688228
Iteration: 3, Func. Count: 26, Neg. LLF: 78.7498198553161
Iteration: 4, Func. Count: 35, Neg. LLF: 66.61358649330333
Iteration: 5, Func. Count: 42, Neg. LLF: 66.9627129938528
Iteration: 6, Func. Count: 50, Neg. LLF: 66.43880076957421
Iteration: 7, Func. Count: 57, Neg. LLF: 66.26528050783728
Iteration: 8, Func. Count: 64, Neg. LLF: 66.44572824241956
Iteration: 9, Func. Count: 72, Neg. LLF: 66.22899744820765
Iteration: 10, Func. Count: 79, Neg. LLF: 66.22875884492208
Iteration: 11, Func. Count: 86, Neg. LLF: 66.2287538169387
Iteration: 12, Func. Count: 92, Neg. LLF: 66.22875381696694
Optimization terminated successfully (Exit mode 0)
Current function value: 66.2287538169387
Iterations: 12
Function evaluations: 92
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 79295328.95402427
Iteration: 2, Func. Count: 19, Neg. LLF: 83.9422277001943
Iteration: 3, Func. Count: 28, Neg. LLF: 81.48130581634598
Iteration: 4, Func. Count: 38, Neg. LLF: 66.94598365163087
Iteration: 5, Func. Count: 46, Neg. LLF: 67.05270645135153
Iteration: 6, Func. Count: 55, Neg. LLF: 69.62205946235197
Iteration: 7, Func. Count: 64, Neg. LLF: 66.29629294817173
Iteration: 8, Func. Count: 72, Neg. LLF: 66.26125973304556
Iteration: 9, Func. Count: 80, Neg. LLF: 66.23220399136481
Iteration: 10, Func. Count: 88, Neg. LLF: 66.55756174824904
Iteration: 11, Func. Count: 97, Neg. LLF: 66.22742136549253
Iteration: 12, Func. Count: 105, Neg. LLF: 66.22740389301445
Iteration: 13, Func. Count: 112, Neg. LLF: 66.22740389306206
Optimization terminated successfully (Exit mode 0)
Current function value: 66.22740389301445
Iterations: 13
Function evaluations: 112
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 44774413.77705285
Iteration: 2, Func. Count: 21, Neg. LLF: 85.73185868613147
Iteration: 3, Func. Count: 31, Neg. LLF: 77.28992652163404
Iteration: 4, Func. Count: 41, Neg. LLF: 69.53990278537657
Iteration: 5, Func. Count: 51, Neg. LLF: 66.59763284924192
Iteration: 6, Func. Count: 60, Neg. LLF: 66.55085473343708
Iteration: 7, Func. Count: 69, Neg. LLF: 66.52953691512613
Iteration: 8, Func. Count: 78, Neg. LLF: 66.52686369862292
Iteration: 9, Func. Count: 87, Neg. LLF: 66.51087941953492
Iteration: 10, Func. Count: 96, Neg. LLF: 66.52720923875663
Iteration: 11, Func. Count: 106, Neg. LLF: 66.2829027829183
Iteration: 12, Func. Count: 115, Neg. LLF: 66.27623246509151
Iteration: 13, Func. Count: 125, Neg. LLF: 70.99297637357563
Iteration: 14, Func. Count: 136, Neg. LLF: 66.22822580647801
Iteration: 15, Func. Count: 145, Neg. LLF: 66.22581348201086
Iteration: 16, Func. Count: 154, Neg. LLF: 66.22564116310826
Iteration: 17, Func. Count: 163, Neg. LLF: 66.22435855548316
Iteration: 18, Func. Count: 172, Neg. LLF: 66.22234852888799
Iteration: 19, Func. Count: 181, Neg. LLF: 66.22168055687786
Iteration: 20, Func. Count: 190, Neg. LLF: 66.22146963149976
Iteration: 21, Func. Count: 199, Neg. LLF: 66.22143239861538
Iteration: 22, Func. Count: 208, Neg. LLF: 66.50376749968596
Optimization terminated successfully (Exit mode 0)
Current function value: 66.2214323825125
Iterations: 23
Function evaluations: 212
Gradient evaluations: 22
Iteration: 1, Func. Count: 7, Neg. LLF: 158.80343939900683
Iteration: 2, Func. Count: 17, Neg. LLF: 308.58576609303447
Iteration: 3, Func. Count: 25, Neg. LLF: 5880707.090112104
Iteration: 4, Func. Count: 32, Neg. LLF: 69.37614808593555
Iteration: 5, Func. Count: 39, Neg. LLF: 65.80786246421043
Iteration: 6, Func. Count: 45, Neg. LLF: 65.77047262495414
Iteration: 7, Func. Count: 51, Neg. LLF: 65.75430221449533
Iteration: 8, Func. Count: 57, Neg. LLF: 65.74069473472349
Iteration: 9, Func. Count: 63, Neg. LLF: 65.73898053456585
Iteration: 10, Func. Count: 69, Neg. LLF: 65.73856810132644
Iteration: 11, Func. Count: 75, Neg. LLF: 65.73856177651304
Iteration: 12, Func. Count: 80, Neg. LLF: 65.73856177651876
Optimization terminated successfully (Exit mode 0)
Current function value: 65.73856177651304
Iterations: 12
Function evaluations: 80
Gradient evaluations: 12
Iteration: 1, Func. Count: 8, Neg. LLF: 3224656.9153616033
Iteration: 2, Func. Count: 16, Neg. LLF: 75.46536588429656
Iteration: 3, Func. Count: 25, Neg. LLF: 92.54540169179518
Iteration: 4, Func. Count: 33, Neg. LLF: 69.46817591270239
Iteration: 5, Func. Count: 41, Neg. LLF: 66.2249198076401
Iteration: 6, Func. Count: 48, Neg. LLF: 65.764451391433
Iteration: 7, Func. Count: 55, Neg. LLF: 65.74068164677234
Iteration: 8, Func. Count: 62, Neg. LLF: 65.73916408051322
Iteration: 9, Func. Count: 69, Neg. LLF: 65.73874263867444
Iteration: 10, Func. Count: 76, Neg. LLF: 65.7385941427073
Iteration: 11, Func. Count: 83, Neg. LLF: 65.7385637240384
Iteration: 12, Func. Count: 90, Neg. LLF: 65.73856172876258
Iteration: 13, Func. Count: 96, Neg. LLF: 65.73856177558639
Optimization terminated successfully (Exit mode 0)
Current function value: 65.73856172876258
Iterations: 13
Function evaluations: 96
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 2796918.144503634
Iteration: 2, Func. Count: 18, Neg. LLF: 85.14599141664698
Iteration: 3, Func. Count: 28, Neg. LLF: 73.68893236575231
Iteration: 4, Func. Count: 37, Neg. LLF: 69.08815395413217
Iteration: 5, Func. Count: 46, Neg. LLF: 65.79787928610865
Iteration: 6, Func. Count: 54, Neg. LLF: 65.7520136465437
Iteration: 7, Func. Count: 62, Neg. LLF: 65.74049569122954
Iteration: 8, Func. Count: 70, Neg. LLF: 65.73871037786975
Iteration: 9, Func. Count: 78, Neg. LLF: 65.73862752580244
Iteration: 10, Func. Count: 86, Neg. LLF: 65.73856190238249
Iteration: 11, Func. Count: 93, Neg. LLF: 65.73856190661877
Optimization terminated successfully (Exit mode 0)
Current function value: 65.73856190238249
Iterations: 11
Function evaluations: 93
Gradient evaluations: 11
Iteration: 1, Func. Count: 10, Neg. LLF: 3139600.086356476
Iteration: 2, Func. Count: 20, Neg. LLF: 140.8192171987962
Iteration: 3, Func. Count: 31, Neg. LLF: 69.0810028455951
Iteration: 4, Func. Count: 42, Neg. LLF: 70.40376888422607
Iteration: 5, Func. Count: 52, Neg. LLF: 68.46013287534886
Iteration: 6, Func. Count: 62, Neg. LLF: 65.7495113790165
Iteration: 7, Func. Count: 71, Neg. LLF: 65.74213622383989
Iteration: 8, Func. Count: 80, Neg. LLF: 65.7395392645621
Iteration: 9, Func. Count: 89, Neg. LLF: 65.7385975515641
Iteration: 10, Func. Count: 98, Neg. LLF: 65.73856520480074
Iteration: 11, Func. Count: 107, Neg. LLF: 65.73856298899771
Iteration: 12, Func. Count: 116, Neg. LLF: 65.73856199721662
Optimization terminated successfully (Exit mode 0)
Current function value: 65.73856199721662
Iterations: 12
Function evaluations: 116
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 3308339.8571990468
Iteration: 2, Func. Count: 22, Neg. LLF: 899901.7686674888
Iteration: 3, Func. Count: 34, Neg. LLF: 68.02103892249109
Iteration: 4, Func. Count: 45, Neg. LLF: 68.84920665234566
Iteration: 5, Func. Count: 57, Neg. LLF: 66.45067504007909
Iteration: 6, Func. Count: 67, Neg. LLF: 65.77228773546622
Iteration: 7, Func. Count: 77, Neg. LLF: 65.74350479943688
Iteration: 8, Func. Count: 87, Neg. LLF: 65.73893080408818
Iteration: 9, Func. Count: 97, Neg. LLF: 65.7386985645368
Iteration: 10, Func. Count: 107, Neg. LLF: 65.7385635873833
Iteration: 11, Func. Count: 117, Neg. LLF: 65.73856218224424
Iteration: 12, Func. Count: 126, Neg. LLF: 65.73856219214426
Optimization terminated successfully (Exit mode 0)
Current function value: 65.73856218224424
Iterations: 12
Function evaluations: 126
Gradient evaluations: 12
Iteration: 1, Func. Count: 8, Neg. LLF: 169.5476771420815
Iteration: 2, Func. Count: 19, Neg. LLF: 342.6510343752707
Iteration: 3, Func. Count: 28, Neg. LLF: 5882007.613252667
Iteration: 4, Func. Count: 36, Neg. LLF: 66.69997259708877
Iteration: 5, Func. Count: 43, Neg. LLF: 65.8430914551346
Iteration: 6, Func. Count: 50, Neg. LLF: 65.84742500888629
Iteration: 7, Func. Count: 58, Neg. LLF: 65.77687788891842
Iteration: 8, Func. Count: 65, Neg. LLF: 65.74272728811242
Iteration: 9, Func. Count: 72, Neg. LLF: 65.73891187316612
Iteration: 10, Func. Count: 79, Neg. LLF: 65.7385645718163
Iteration: 11, Func. Count: 86, Neg. LLF: 65.73856168862649
Iteration: 12, Func. Count: 92, Neg. LLF: 65.73856172341483
Optimization terminated successfully (Exit mode 0)
Current function value: 65.73856168862649
Iterations: 12
Function evaluations: 92
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 4947189.5997998845
Iteration: 2, Func. Count: 19, Neg. LLF: 5055199.601170519
Iteration: 3, Func. Count: 28, Neg. LLF: 68.53563286831218
Iteration: 4, Func. Count: 38, Neg. LLF: 3538391.9726828123
Iteration: 5, Func. Count: 48, Neg. LLF: 65.79823505817126
Iteration: 6, Func. Count: 56, Neg. LLF: 65.77053047574586
Iteration: 7, Func. Count: 64, Neg. LLF: 65.7437633354678
Iteration: 8, Func. Count: 72, Neg. LLF: 65.74049518399045
Iteration: 9, Func. Count: 80, Neg. LLF: 65.73908198105207
Iteration: 10, Func. Count: 88, Neg. LLF: 65.73881933788881
Iteration: 11, Func. Count: 96, Neg. LLF: 65.7385898053082
Iteration: 12, Func. Count: 104, Neg. LLF: 65.7385633985029
Iteration: 13, Func. Count: 112, Neg. LLF: 65.73856171794168
Iteration: 14, Func. Count: 119, Neg. LLF: 65.7385617647681
Optimization terminated successfully (Exit mode 0)
Current function value: 65.73856171794168
Iterations: 14
Function evaluations: 119
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 6493403.884236054
Iteration: 2, Func. Count: 20, Neg. LLF: 3554937.384374279
Iteration: 3, Func. Count: 30, Neg. LLF: 72.49637083161589
Iteration: 4, Func. Count: 41, Neg. LLF: 4089252.4035127177
Iteration: 5, Func. Count: 51, Neg. LLF: 65.75887116771672
Iteration: 6, Func. Count: 60, Neg. LLF: 65.74611745535657
Iteration: 7, Func. Count: 69, Neg. LLF: 65.74019392608095
Iteration: 8, Func. Count: 78, Neg. LLF: 65.73914595464201
Iteration: 9, Func. Count: 87, Neg. LLF: 65.73861892633325
Iteration: 10, Func. Count: 96, Neg. LLF: 65.73856919105533
Iteration: 11, Func. Count: 105, Neg. LLF: 65.73856179540853
Iteration: 12, Func. Count: 113, Neg. LLF: 65.73856179973603
Optimization terminated successfully (Exit mode 0)
Current function value: 65.73856179540853
Iterations: 12
Function evaluations: 113
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 101.31587817218443
Iteration: 2, Func. Count: 23, Neg. LLF: 1464648.0591844728
Iteration: 3, Func. Count: 34, Neg. LLF: 222.50836064321072
Iteration: 4, Func. Count: 45, Neg. LLF: 75.69127493396178
Iteration: 5, Func. Count: 57, Neg. LLF: 65.7937769618953
Iteration: 6, Func. Count: 67, Neg. LLF: 65.76394062984306
Iteration: 7, Func. Count: 77, Neg. LLF: 65.74966046651065
Iteration: 8, Func. Count: 87, Neg. LLF: 65.74378272475046
Iteration: 9, Func. Count: 97, Neg. LLF: 65.73990668184204
Iteration: 10, Func. Count: 107, Neg. LLF: 65.73872249741727
Iteration: 11, Func. Count: 117, Neg. LLF: 65.7385650022525
Iteration: 12, Func. Count: 127, Neg. LLF: 65.73856196311874
Iteration: 13, Func. Count: 136, Neg. LLF: 65.73856198704242
Optimization terminated successfully (Exit mode 0)
Current function value: 65.73856196311874
Iterations: 13
Function evaluations: 136
Gradient evaluations: 13
Iteration: 1, Func. Count: 12, Neg. LLF: 101.07403970081305
Iteration: 2, Func. Count: 25, Neg. LLF: 551124.6018450758
Iteration: 3, Func. Count: 37, Neg. LLF: 2957078.5308124335
Iteration: 4, Func. Count: 49, Neg. LLF: 79.84418140614204
Iteration: 5, Func. Count: 62, Neg. LLF: 65.83944788465962
Iteration: 6, Func. Count: 73, Neg. LLF: 65.76227615167656
Iteration: 7, Func. Count: 84, Neg. LLF: 65.75073476206815
Iteration: 8, Func. Count: 95, Neg. LLF: 65.73595823747134
Iteration: 9, Func. Count: 106, Neg. LLF: 65.19165639898166
Iteration: 10, Func. Count: 117, Neg. LLF: 65.00567016231554
Iteration: 11, Func. Count: 128, Neg. LLF: 64.7856947042573
Iteration: 12, Func. Count: 139, Neg. LLF: 64.69139526396663
Iteration: 13, Func. Count: 150, Neg. LLF: 64.67208806375974
Iteration: 14, Func. Count: 161, Neg. LLF: 64.63002195294135
Iteration: 15, Func. Count: 172, Neg. LLF: 64.62663490061283
Iteration: 16, Func. Count: 183, Neg. LLF: 64.6260919964692
Iteration: 17, Func. Count: 194, Neg. LLF: 64.62602354333129
Iteration: 18, Func. Count: 205, Neg. LLF: 64.62598744287786
Iteration: 19, Func. Count: 216, Neg. LLF: 64.62599490304734
Iteration: 20, Func. Count: 227, Neg. LLF: 64.62599226386241
Iteration: 21, Func. Count: 248, Neg. LLF: 64.62599949379072
Iteration: 22, Func. Count: 261, Neg. LLF: 64.62599666889707
Iteration: 23, Func. Count: 273, Neg. LLF: 64.62599644191859
Iteration: 24, Func. Count: 283, Neg. LLF: 64.62599643006239
Optimization terminated successfully (Exit mode 0)
Current function value: 64.62599644191859
Iterations: 25
Function evaluations: 283
Gradient evaluations: 24
Iteration: 1, Func. Count: 9, Neg. LLF: 177.4743229944065
Iteration: 2, Func. Count: 21, Neg. LLF: 327.9355999524488
Iteration: 3, Func. Count: 31, Neg. LLF: 5881297.203036001
Iteration: 4, Func. Count: 40, Neg. LLF: 67.23524739418079
Iteration: 5, Func. Count: 49, Neg. LLF: 65.88153408701248
Iteration: 6, Func. Count: 57, Neg. LLF: 65.81386128267869
Iteration: 7, Func. Count: 65, Neg. LLF: 65.78064080622453
Iteration: 8, Func. Count: 73, Neg. LLF: 65.74490701478089
Iteration: 9, Func. Count: 81, Neg. LLF: 65.73896853922035
Iteration: 10, Func. Count: 89, Neg. LLF: 65.73856874387678
Iteration: 11, Func. Count: 97, Neg. LLF: 65.73856171129908
Iteration: 12, Func. Count: 104, Neg. LLF: 65.73856176884202
Optimization terminated successfully (Exit mode 0)
Current function value: 65.73856171129908
Iterations: 12
Function evaluations: 104
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 2615708.6159822457
Iteration: 2, Func. Count: 21, Neg. LLF: 3031607.517612298
Iteration: 3, Func. Count: 31, Neg. LLF: 67.01555105671115
Iteration: 4, Func. Count: 40, Neg. LLF: 69.10892325904945
Iteration: 5, Func. Count: 51, Neg. LLF: 163.5998790813871
Iteration: 6, Func. Count: 61, Neg. LLF: 65.85332188822902
Iteration: 7, Func. Count: 70, Neg. LLF: 65.75691394747189
Iteration: 8, Func. Count: 79, Neg. LLF: 65.74556318475412
Iteration: 9, Func. Count: 88, Neg. LLF: 65.73995849760902
Iteration: 10, Func. Count: 97, Neg. LLF: 65.73882841524771
Iteration: 11, Func. Count: 106, Neg. LLF: 65.73858168954801
Iteration: 12, Func. Count: 115, Neg. LLF: 65.73856544455052
Iteration: 13, Func. Count: 124, Neg. LLF: 65.73856182726189
Iteration: 14, Func. Count: 132, Neg. LLF: 65.73856187411789
Optimization terminated successfully (Exit mode 0)
Current function value: 65.73856182726189
Iterations: 14
Function evaluations: 132
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 6811448.20355421
Iteration: 2, Func. Count: 22, Neg. LLF: 1370167.1692225067
Iteration: 3, Func. Count: 33, Neg. LLF: 73.28504305546745
Iteration: 4, Func. Count: 45, Neg. LLF: 73.66494041131335
Iteration: 5, Func. Count: 56, Neg. LLF: 66.08919833363952
Iteration: 6, Func. Count: 66, Neg. LLF: 65.75557575232901
Iteration: 7, Func. Count: 76, Neg. LLF: 65.74626456245356
Iteration: 8, Func. Count: 86, Neg. LLF: 65.74054888616404
Iteration: 9, Func. Count: 96, Neg. LLF: 65.739144345307
Iteration: 10, Func. Count: 106, Neg. LLF: 65.7385705006623
Iteration: 11, Func. Count: 116, Neg. LLF: 65.73856190398341
Iteration: 12, Func. Count: 125, Neg. LLF: 65.73856190825718
Optimization terminated successfully (Exit mode 0)
Current function value: 65.73856190398341
Iterations: 12
Function evaluations: 125
Gradient evaluations: 12
Iteration: 1, Func. Count: 12, Neg. LLF: 136.24141848182413
Iteration: 2, Func. Count: 24, Neg. LLF: 463962.68610311474
Iteration: 3, Func. Count: 36, Neg. LLF: 72.43152185440216
Iteration: 4, Func. Count: 49, Neg. LLF: 2487940.264994909
Iteration: 5, Func. Count: 61, Neg. LLF: 65.75980750917694
Iteration: 6, Func. Count: 72, Neg. LLF: 65.74707424989845
Iteration: 7, Func. Count: 83, Neg. LLF: 65.74478033863114
Iteration: 8, Func. Count: 94, Neg. LLF: 65.7419329250416
Iteration: 9, Func. Count: 105, Neg. LLF: 65.73982724190627
Iteration: 10, Func. Count: 116, Neg. LLF: 65.73857784792334
Iteration: 11, Func. Count: 127, Neg. LLF: 65.73856837181316
Iteration: 12, Func. Count: 138, Neg. LLF: 65.73856571772006
Iteration: 13, Func. Count: 149, Neg. LLF: 65.73856390412732
Iteration: 14, Func. Count: 160, Neg. LLF: 65.7385621885624
Iteration: 15, Func. Count: 170, Neg. LLF: 65.73856221249046
Optimization terminated successfully (Exit mode 0)
Current function value: 65.7385621885624
Iterations: 15
Function evaluations: 170
Gradient evaluations: 15
Iteration: 1, Func. Count: 13, Neg. LLF: 128.3325636446398
Iteration: 2, Func. Count: 27, Neg. LLF: 827228.8293733929
Iteration: 3, Func. Count: 40, Neg. LLF: 3098332.0526538407
Iteration: 4, Func. Count: 53, Neg. LLF: 82.26883011988886
Iteration: 5, Func. Count: 67, Neg. LLF: 65.94949499225991
Iteration: 6, Func. Count: 79, Neg. LLF: 65.78349540362007
Iteration: 7, Func. Count: 91, Neg. LLF: 65.71044372639876
Iteration: 8, Func. Count: 103, Neg. LLF: 65.10475381560397
Iteration: 9, Func. Count: 115, Neg. LLF: 65.29399499332999
Iteration: 10, Func. Count: 128, Neg. LLF: 64.71524318638959
Iteration: 11, Func. Count: 140, Neg. LLF: 64.67216713686454
Iteration: 12, Func. Count: 152, Neg. LLF: 64.64842384944885
Iteration: 13, Func. Count: 164, Neg. LLF: 64.62824904579799
Iteration: 14, Func. Count: 176, Neg. LLF: 64.6266732815337
Iteration: 15, Func. Count: 188, Neg. LLF: 64.62600778224922
Iteration: 16, Func. Count: 200, Neg. LLF: 64.7232605905331
Iteration: 17, Func. Count: 214, Neg. LLF: 64.63569212314245
Iteration: 18, Func. Count: 228, Neg. LLF: 64.626140587729
Iteration: 19, Func. Count: 242, Neg. LLF: 64.62599698869191
Iteration: 20, Func. Count: 255, Neg. LLF: 64.62599643763211
Iteration: 21, Func. Count: 266, Neg. LLF: 64.62599642575643
Optimization terminated successfully (Exit mode 0)
Current function value: 64.62599643763211
Iterations: 22
Function evaluations: 266
Gradient evaluations: 21
Iteration: 1, Func. Count: 6, Neg. LLF: 155.67921955104458
Iteration: 2, Func. Count: 15, Neg. LLF: 157.0501146199978
Iteration: 3, Func. Count: 22, Neg. LLF: 77.9258372798226
Iteration: 4, Func. Count: 29, Neg. LLF: 68.30812859292273
Iteration: 5, Func. Count: 35, Neg. LLF: 68.61199689111291
Iteration: 6, Func. Count: 41, Neg. LLF: 67.94016121888113
Iteration: 7, Func. Count: 46, Neg. LLF: 67.94008388586204
Iteration: 8, Func. Count: 51, Neg. LLF: 67.9400627772631
Iteration: 9, Func. Count: 55, Neg. LLF: 67.94006277728415
Optimization terminated successfully (Exit mode 0)
Current function value: 67.9400627772631
Iterations: 9
Function evaluations: 55
Gradient evaluations: 9
Iteration: 1, Func. Count: 7, Neg. LLF: 132037526.83946097
Iteration: 2, Func. Count: 15, Neg. LLF: 77.01086641997284
Iteration: 3, Func. Count: 23, Neg. LLF: 70.89497088138081
Iteration: 4, Func. Count: 31, Neg. LLF: 67.94946367068094
Iteration: 5, Func. Count: 38, Neg. LLF: 67.77191651812582
Iteration: 6, Func. Count: 45, Neg. LLF: 67.7387558237139
Iteration: 7, Func. Count: 51, Neg. LLF: 67.7387144082474
Iteration: 8, Func. Count: 57, Neg. LLF: 67.73871385582652
Optimization terminated successfully (Exit mode 0)
Current function value: 67.73871385582652
Iterations: 8
Function evaluations: 57
Gradient evaluations: 8
Iteration: 1, Func. Count: 8, Neg. LLF: 3878.829603889943
Iteration: 2, Func. Count: 17, Neg. LLF: 93.85195729740312
Iteration: 3, Func. Count: 26, Neg. LLF: 73.3136998512812
Iteration: 4, Func. Count: 35, Neg. LLF: 68.31196529578808
Iteration: 5, Func. Count: 43, Neg. LLF: 67.87035484453445
Iteration: 6, Func. Count: 51, Neg. LLF: 67.74138370382906
Iteration: 7, Func. Count: 58, Neg. LLF: 67.73970416388129
Iteration: 8, Func. Count: 65, Neg. LLF: 67.73884880971379
Iteration: 9, Func. Count: 72, Neg. LLF: 67.73871479044004
Iteration: 10, Func. Count: 79, Neg. LLF: 67.73871376174426
Iteration: 11, Func. Count: 85, Neg. LLF: 67.73871377155382
Optimization terminated successfully (Exit mode 0)
Current function value: 67.73871376174426
Iterations: 11
Function evaluations: 85
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 1069.5091178494176
Iteration: 2, Func. Count: 19, Neg. LLF: 74.00442460518508
Iteration: 3, Func. Count: 29, Neg. LLF: 74.93423766580361
Iteration: 4, Func. Count: 39, Neg. LLF: 68.19495993397148
Iteration: 5, Func. Count: 48, Neg. LLF: 67.88815352666946
Iteration: 6, Func. Count: 56, Neg. LLF: 67.80123472120796
Iteration: 7, Func. Count: 64, Neg. LLF: 67.76700596001213
Iteration: 8, Func. Count: 72, Neg. LLF: 67.74838851442358
Iteration: 9, Func. Count: 80, Neg. LLF: 67.73945880306329
Iteration: 10, Func. Count: 88, Neg. LLF: 67.73874417943829
Iteration: 11, Func. Count: 96, Neg. LLF: 67.73871512899217
Iteration: 12, Func. Count: 104, Neg. LLF: 67.73871378241954
Iteration: 13, Func. Count: 111, Neg. LLF: 67.73871381227102
Optimization terminated successfully (Exit mode 0)
Current function value: 67.73871378241954
Iterations: 13
Function evaluations: 111
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 169034497.11885083
Iteration: 2, Func. Count: 21, Neg. LLF: 73.6935948379249
Iteration: 3, Func. Count: 32, Neg. LLF: 76.19319277139152
Iteration: 4, Func. Count: 43, Neg. LLF: 68.0260129089426
Iteration: 5, Func. Count: 53, Neg. LLF: 67.820959792225
Iteration: 6, Func. Count: 62, Neg. LLF: 67.74851403632995
Iteration: 7, Func. Count: 71, Neg. LLF: 67.73982932675135
Iteration: 8, Func. Count: 80, Neg. LLF: 67.73874640426651
Iteration: 9, Func. Count: 89, Neg. LLF: 67.73871525047755
Iteration: 10, Func. Count: 98, Neg. LLF: 67.73871386802179
Iteration: 11, Func. Count: 106, Neg. LLF: 67.73871389596943
Optimization terminated successfully (Exit mode 0)
Current function value: 67.73871386802179
Iterations: 11
Function evaluations: 106
Gradient evaluations: 11
Iteration: 1, Func. Count: 7, Neg. LLF: 155.65621898719277
Iteration: 2, Func. Count: 17, Neg. LLF: 157.52376159946058
Iteration: 3, Func. Count: 25, Neg. LLF: 87.39631250893518
Iteration: 4, Func. Count: 32, Neg. LLF: 67.33842015398635
Iteration: 5, Func. Count: 38, Neg. LLF: 67.47146933938905
Iteration: 6, Func. Count: 45, Neg. LLF: 67.30965966429632
Iteration: 7, Func. Count: 51, Neg. LLF: 67.30918638708127
Iteration: 8, Func. Count: 57, Neg. LLF: 67.30916946988933
Iteration: 9, Func. Count: 63, Neg. LLF: 67.30916836778079
Iteration: 10, Func. Count: 68, Neg. LLF: 67.30916830637764
Optimization terminated successfully (Exit mode 0)
Current function value: 67.30916836778079
Iterations: 10
Function evaluations: 68
Gradient evaluations: 10
Iteration: 1, Func. Count: 8, Neg. LLF: 114723328.42644326
Iteration: 2, Func. Count: 17, Neg. LLF: 89.03052966318648
Iteration: 3, Func. Count: 26, Neg. LLF: 86.63872304310935
Iteration: 4, Func. Count: 35, Neg. LLF: 67.83874049224958
Iteration: 5, Func. Count: 43, Neg. LLF: 67.35846016670655
Iteration: 6, Func. Count: 50, Neg. LLF: 67.33851861292781
Iteration: 7, Func. Count: 57, Neg. LLF: 67.33247216711479
Iteration: 8, Func. Count: 64, Neg. LLF: 67.3309952213074
Iteration: 9, Func. Count: 71, Neg. LLF: 67.31349739878956
Iteration: 10, Func. Count: 78, Neg. LLF: 67.31141325310485
Iteration: 11, Func. Count: 85, Neg. LLF: 67.30924207787075
Iteration: 12, Func. Count: 92, Neg. LLF: 67.30918563220717
Iteration: 13, Func. Count: 99, Neg. LLF: 67.30916845570215
Iteration: 14, Func. Count: 105, Neg. LLF: 67.30916846194957
Optimization terminated successfully (Exit mode 0)
Current function value: 67.30916845570215
Iterations: 14
Function evaluations: 105
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 133379106.8260497
Iteration: 2, Func. Count: 19, Neg. LLF: 91.71019457126762
Iteration: 3, Func. Count: 28, Neg. LLF: 85.76352387975564
Iteration: 4, Func. Count: 38, Neg. LLF: 67.74827159795306
Iteration: 5, Func. Count: 47, Neg. LLF: 66.78187724711516
Iteration: 6, Func. Count: 55, Neg. LLF: 66.59152472635192
Iteration: 7, Func. Count: 63, Neg. LLF: 66.5470358504256
Iteration: 8, Func. Count: 71, Neg. LLF: 66.5328521120927
Iteration: 9, Func. Count: 79, Neg. LLF: 66.52960547032941
Iteration: 10, Func. Count: 87, Neg. LLF: 66.52745472417669
Iteration: 11, Func. Count: 95, Neg. LLF: 66.52033162670408
Iteration: 12, Func. Count: 103, Neg. LLF: 66.37569463867425
Iteration: 13, Func. Count: 111, Neg. LLF: 66.46713487967104
Iteration: 14, Func. Count: 120, Neg. LLF: 66.29207951053716
Iteration: 15, Func. Count: 128, Neg. LLF: 66.26023047965934
Iteration: 16, Func. Count: 136, Neg. LLF: 66.23360081400423
Iteration: 17, Func. Count: 144, Neg. LLF: 66.24095943088471
Iteration: 18, Func. Count: 153, Neg. LLF: 66.22879361709249
Iteration: 19, Func. Count: 161, Neg. LLF: 66.22875480188225
Iteration: 20, Func. Count: 169, Neg. LLF: 66.22875374459723
Iteration: 21, Func. Count: 176, Neg. LLF: 66.22875374459998
Optimization terminated successfully (Exit mode 0)
Current function value: 66.22875374459723
Iterations: 21
Function evaluations: 176
Gradient evaluations: 21
Iteration: 1, Func. Count: 10, Neg. LLF: 1115.6004184058454
Iteration: 2, Func. Count: 21, Neg. LLF: 88.8237012401493
Iteration: 3, Func. Count: 31, Neg. LLF: 87.25059654019768
Iteration: 4, Func. Count: 42, Neg. LLF: 66.93723503732609
Iteration: 5, Func. Count: 51, Neg. LLF: 68.21442960337615
Iteration: 6, Func. Count: 61, Neg. LLF: 66.83718097064035
Iteration: 7, Func. Count: 70, Neg. LLF: 66.61626523720913
Iteration: 8, Func. Count: 79, Neg. LLF: 66.531832517992
Iteration: 9, Func. Count: 88, Neg. LLF: 66.52836608617709
Iteration: 10, Func. Count: 97, Neg. LLF: 66.5232061281313
Iteration: 11, Func. Count: 106, Neg. LLF: 66.49528447194795
Iteration: 12, Func. Count: 115, Neg. LLF: 66.23979846336188
Iteration: 13, Func. Count: 124, Neg. LLF: 66.27763207474923
Iteration: 14, Func. Count: 134, Neg. LLF: 66.2383836836887
Iteration: 15, Func. Count: 144, Neg. LLF: 66.2285306537523
Iteration: 16, Func. Count: 153, Neg. LLF: 66.22783128981314
Iteration: 17, Func. Count: 162, Neg. LLF: 66.22755387038552
Iteration: 18, Func. Count: 171, Neg. LLF: 66.22741837014695
Iteration: 19, Func. Count: 180, Neg. LLF: 66.2274035585815
Iteration: 20, Func. Count: 189, Neg. LLF: 66.22740298754829
Optimization terminated successfully (Exit mode 0)
Current function value: 66.22740298754829
Iterations: 20
Function evaluations: 189
Gradient evaluations: 20
Iteration: 1, Func. Count: 11, Neg. LLF: 909.2831584688096
Iteration: 2, Func. Count: 23, Neg. LLF: 91.50252044993108
Iteration: 3, Func. Count: 34, Neg. LLF: 86.81392640286911
Iteration: 4, Func. Count: 46, Neg. LLF: 66.61644656173839
Iteration: 5, Func. Count: 56, Neg. LLF: 67.35293842723597
Iteration: 6, Func. Count: 67, Neg. LLF: 66.55122975231815
Iteration: 7, Func. Count: 78, Neg. LLF: 66.52456717539108
Iteration: 8, Func. Count: 88, Neg. LLF: 66.52149582896529
Iteration: 9, Func. Count: 98, Neg. LLF: 66.63927835831049
Iteration: 10, Func. Count: 109, Neg. LLF: 66.61633114747666
Iteration: 11, Func. Count: 120, Neg. LLF: 66.57316602724059
Iteration: 12, Func. Count: 131, Neg. LLF: 75660907.10323586
Iteration: 13, Func. Count: 143, Neg. LLF: 126.5832436777805
Iteration: 14, Func. Count: 156, Neg. LLF: 78.56418002399595
Iteration: 15, Func. Count: 167, Neg. LLF: 66.24445637969701
Iteration: 16, Func. Count: 177, Neg. LLF: 66.23752191720703
Iteration: 17, Func. Count: 187, Neg. LLF: 66.4036300191924
Iteration: 18, Func. Count: 198, Neg. LLF: 66.23038455753726
Iteration: 19, Func. Count: 209, Neg. LLF: 66.22148749543788
Iteration: 20, Func. Count: 219, Neg. LLF: 66.22143566438906
Iteration: 21, Func. Count: 229, Neg. LLF: 66.22143238115727
Iteration: 22, Func. Count: 238, Neg. LLF: 66.22143238107536
Optimization terminated successfully (Exit mode 0)
Current function value: 66.22143238115727
Iterations: 23
Function evaluations: 238
Gradient evaluations: 22
Iteration: 1, Func. Count: 8, Neg. LLF: 136.78932424791628
Iteration: 2, Func. Count: 19, Neg. LLF: 135.43507850283223
Iteration: 3, Func. Count: 28, Neg. LLF: 3179545.9508914007
Iteration: 4, Func. Count: 36, Neg. LLF: 69.98322720275047
Iteration: 5, Func. Count: 44, Neg. LLF: 65.76363396630457
Iteration: 6, Func. Count: 51, Neg. LLF: 65.74274606344648
Iteration: 7, Func. Count: 58, Neg. LLF: 65.74055395164649
Iteration: 8, Func. Count: 65, Neg. LLF: 65.73943631913329
Iteration: 9, Func. Count: 72, Neg. LLF: 65.73892258734055
Iteration: 10, Func. Count: 79, Neg. LLF: 65.73870338586504
Iteration: 11, Func. Count: 86, Neg. LLF: 65.73859663167052
Iteration: 12, Func. Count: 93, Neg. LLF: 65.73856462829737
Iteration: 13, Func. Count: 100, Neg. LLF: 65.73856177253866
Iteration: 14, Func. Count: 106, Neg. LLF: 65.73856177253916
Optimization terminated successfully (Exit mode 0)
Current function value: 65.73856177253866
Iterations: 14
Function evaluations: 106
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 3880147.98248012
Iteration: 2, Func. Count: 19, Neg. LLF: 2143635.542535367
Iteration: 3, Func. Count: 28, Neg. LLF: 71.61842392374513
Iteration: 4, Func. Count: 38, Neg. LLF: 73.42388246678918
Iteration: 5, Func. Count: 47, Neg. LLF: 65.75528785135518
Iteration: 6, Func. Count: 55, Neg. LLF: 65.74355533633677
Iteration: 7, Func. Count: 63, Neg. LLF: 65.74011772042834
Iteration: 8, Func. Count: 71, Neg. LLF: 65.73952366674365
Iteration: 9, Func. Count: 79, Neg. LLF: 65.73866211801769
Iteration: 10, Func. Count: 87, Neg. LLF: 65.73856924193723
Iteration: 11, Func. Count: 95, Neg. LLF: 65.73856177121314
Iteration: 12, Func. Count: 102, Neg. LLF: 65.73856181805594
Optimization terminated successfully (Exit mode 0)
Current function value: 65.73856177121314
Iterations: 12
Function evaluations: 102
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 165.68731183012844
Iteration: 2, Func. Count: 21, Neg. LLF: 2143442.6907150447
Iteration: 3, Func. Count: 31, Neg. LLF: 70.83059033406302
Iteration: 4, Func. Count: 42, Neg. LLF: 93.22273292063329
Iteration: 5, Func. Count: 52, Neg. LLF: 65.75657844881731
Iteration: 6, Func. Count: 61, Neg. LLF: 65.7449242682713
Iteration: 7, Func. Count: 70, Neg. LLF: 65.74086919893425
Iteration: 8, Func. Count: 79, Neg. LLF: 65.73929335701366
Iteration: 9, Func. Count: 88, Neg. LLF: 65.73877697170194
Iteration: 10, Func. Count: 97, Neg. LLF: 65.73860505267545
Iteration: 11, Func. Count: 106, Neg. LLF: 65.73856370540113
Iteration: 12, Func. Count: 115, Neg. LLF: 65.73856173119181
Iteration: 13, Func. Count: 123, Neg. LLF: 65.73856173550031
Optimization terminated successfully (Exit mode 0)
Current function value: 65.73856173119181
Iterations: 13
Function evaluations: 123
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 119.47594146416434
Iteration: 2, Func. Count: 23, Neg. LLF: 2176394.7350390293
Iteration: 3, Func. Count: 34, Neg. LLF: 4599491.453440541
Iteration: 4, Func. Count: 45, Neg. LLF: 70.03223443673289
Iteration: 5, Func. Count: 56, Neg. LLF: 65.74669678543079
Iteration: 6, Func. Count: 66, Neg. LLF: 65.74127849581022
Iteration: 7, Func. Count: 76, Neg. LLF: 65.74011349291519
Iteration: 8, Func. Count: 86, Neg. LLF: 65.7387466934439
Iteration: 9, Func. Count: 96, Neg. LLF: 65.73857901604262
Iteration: 10, Func. Count: 106, Neg. LLF: 65.7385618249528
Iteration: 11, Func. Count: 115, Neg. LLF: 65.7385618489092
Optimization terminated successfully (Exit mode 0)
Current function value: 65.7385618249528
Iterations: 11
Function evaluations: 115
Gradient evaluations: 11
Iteration: 1, Func. Count: 12, Neg. LLF: 119.35043814860367
Iteration: 2, Func. Count: 25, Neg. LLF: 2141313.821585187
Iteration: 3, Func. Count: 37, Neg. LLF: 4549774.77009443
Iteration: 4, Func. Count: 49, Neg. LLF: 71.11361391672727
Iteration: 5, Func. Count: 61, Neg. LLF: 65.74334564282564
Iteration: 6, Func. Count: 72, Neg. LLF: 65.73898670052566
Iteration: 7, Func. Count: 83, Neg. LLF: 65.73867731601146
Iteration: 8, Func. Count: 94, Neg. LLF: 65.73859680707649
Iteration: 9, Func. Count: 105, Neg. LLF: 65.7385717398845
Iteration: 10, Func. Count: 116, Neg. LLF: 65.73856418799983
Iteration: 11, Func. Count: 127, Neg. LLF: 65.73856197682636
Iteration: 12, Func. Count: 137, Neg. LLF: 65.73856198677531
Optimization terminated successfully (Exit mode 0)
Current function value: 65.73856197682636
Iterations: 12
Function evaluations: 137
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 152.64066248060357
Iteration: 2, Func. Count: 20, Neg. LLF: 146.6476264304683
Iteration: 3, Func. Count: 30, Neg. LLF: 2806575.875521083
Iteration: 4, Func. Count: 39, Neg. LLF: 81.48704650747875
Iteration: 5, Func. Count: 48, Neg. LLF: 67.58815839422911
Iteration: 6, Func. Count: 57, Neg. LLF: 65.74781264134661
Iteration: 7, Func. Count: 65, Neg. LLF: 65.74206260688953
Iteration: 8, Func. Count: 73, Neg. LLF: 65.73961195309063
Iteration: 9, Func. Count: 81, Neg. LLF: 65.73903043236413
Iteration: 10, Func. Count: 89, Neg. LLF: 65.73862228769386
Iteration: 11, Func. Count: 97, Neg. LLF: 65.73857185268768
Iteration: 12, Func. Count: 105, Neg. LLF: 65.7385631348044
Iteration: 13, Func. Count: 113, Neg. LLF: 65.73856182876632
Iteration: 14, Func. Count: 120, Neg. LLF: 65.73856186356818
Optimization terminated successfully (Exit mode 0)
Current function value: 65.73856182876632
Iterations: 14
Function evaluations: 120
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 3957049.3324147915
Iteration: 2, Func. Count: 21, Neg. LLF: 2117964.1470334344
Iteration: 3, Func. Count: 31, Neg. LLF: 71.68538025131947
Iteration: 4, Func. Count: 42, Neg. LLF: 73.07407839810298
Iteration: 5, Func. Count: 52, Neg. LLF: 65.75554539563558
Iteration: 6, Func. Count: 61, Neg. LLF: 65.74380636085495
Iteration: 7, Func. Count: 70, Neg. LLF: 65.74022590858398
Iteration: 8, Func. Count: 79, Neg. LLF: 65.73956134884133
Iteration: 9, Func. Count: 88, Neg. LLF: 65.73862985578123
Iteration: 10, Func. Count: 97, Neg. LLF: 65.73856562354575
Iteration: 11, Func. Count: 106, Neg. LLF: 65.73856171372077
Iteration: 12, Func. Count: 114, Neg. LLF: 65.73856176055126
Optimization terminated successfully (Exit mode 0)
Current function value: 65.73856171372077
Iterations: 12
Function evaluations: 114
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 2583554.4295028998
Iteration: 2, Func. Count: 23, Neg. LLF: 2334510.2721893876
Iteration: 3, Func. Count: 34, Neg. LLF: 71.69324357826807
Iteration: 4, Func. Count: 46, Neg. LLF: 80.58933203510891
Iteration: 5, Func. Count: 57, Neg. LLF: 65.7628059239466
Iteration: 6, Func. Count: 67, Neg. LLF: 65.74607034976088
Iteration: 7, Func. Count: 77, Neg. LLF: 65.74219112655378
Iteration: 8, Func. Count: 87, Neg. LLF: 65.73935272334361
Iteration: 9, Func. Count: 97, Neg. LLF: 65.73888679551095
Iteration: 10, Func. Count: 107, Neg. LLF: 65.7386043543774
Iteration: 11, Func. Count: 117, Neg. LLF: 65.73856437420157
Iteration: 12, Func. Count: 127, Neg. LLF: 65.73856172236012
Iteration: 13, Func. Count: 136, Neg. LLF: 65.73856172667023
Optimization terminated successfully (Exit mode 0)
Current function value: 65.73856172236012
Iterations: 13
Function evaluations: 136
Gradient evaluations: 13
Iteration: 1, Func. Count: 12, Neg. LLF: 261.6300661336534
Iteration: 2, Func. Count: 25, Neg. LLF: 2143981.8408024176
Iteration: 3, Func. Count: 37, Neg. LLF: 74.51431085951283
Iteration: 4, Func. Count: 50, Neg. LLF: 76.99325491013393
Iteration: 5, Func. Count: 62, Neg. LLF: 65.75813237598672
Iteration: 6, Func. Count: 73, Neg. LLF: 65.74436462389541
Iteration: 7, Func. Count: 84, Neg. LLF: 65.74162403958216
Iteration: 8, Func. Count: 95, Neg. LLF: 65.73861385304569
Iteration: 9, Func. Count: 106, Neg. LLF: 65.73856266531175
Iteration: 10, Func. Count: 117, Neg. LLF: 65.73856169507376
Optimization terminated successfully (Exit mode 0)
Current function value: 65.73856169507376
Iterations: 10
Function evaluations: 117
Gradient evaluations: 10
Iteration: 1, Func. Count: 13, Neg. LLF: 213.21745038651773
Iteration: 2, Func. Count: 27, Neg. LLF: 1344363.6708272928
Iteration: 3, Func. Count: 40, Neg. LLF: 73.87880725453628
Iteration: 4, Func. Count: 54, Neg. LLF: 82.97802681472216
Iteration: 5, Func. Count: 67, Neg. LLF: 65.77500446547711
Iteration: 6, Func. Count: 79, Neg. LLF: 65.7451392458919
Iteration: 7, Func. Count: 91, Neg. LLF: 65.74051931524372
Iteration: 8, Func. Count: 103, Neg. LLF: 65.7393051579203
Iteration: 9, Func. Count: 115, Neg. LLF: 65.73872291002273
Iteration: 10, Func. Count: 127, Neg. LLF: 65.73858863476066
Iteration: 11, Func. Count: 139, Neg. LLF: 65.73856372578362
Iteration: 12, Func. Count: 151, Neg. LLF: 65.73856175662189
Iteration: 13, Func. Count: 162, Neg. LLF: 65.73856176657972
Optimization terminated successfully (Exit mode 0)
Current function value: 65.73856175662189
Iterations: 13
Function evaluations: 162
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 157.56330034578872
Iteration: 2, Func. Count: 22, Neg. LLF: 143.171264667419
Iteration: 3, Func. Count: 33, Neg. LLF: 2810060.306520675
Iteration: 4, Func. Count: 43, Neg. LLF: 77.46668184525655
Iteration: 5, Func. Count: 53, Neg. LLF: 67.71287894057934
Iteration: 6, Func. Count: 63, Neg. LLF: 65.74806226175491
Iteration: 7, Func. Count: 72, Neg. LLF: 65.7410872817466
Iteration: 8, Func. Count: 81, Neg. LLF: 65.73935264770269
Iteration: 9, Func. Count: 90, Neg. LLF: 65.73895110263884
Iteration: 10, Func. Count: 99, Neg. LLF: 65.73861863297667
Iteration: 11, Func. Count: 108, Neg. LLF: 65.73857041714126
Iteration: 12, Func. Count: 117, Neg. LLF: 65.73856338391404
Iteration: 13, Func. Count: 126, Neg. LLF: 65.73856205021919
Iteration: 14, Func. Count: 134, Neg. LLF: 65.7385621077855
Optimization terminated successfully (Exit mode 0)
Current function value: 65.73856205021919
Iterations: 14
Function evaluations: 134
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 3950956.1293737325
Iteration: 2, Func. Count: 23, Neg. LLF: 2119406.001083589
Iteration: 3, Func. Count: 34, Neg. LLF: 71.59221114656286
Iteration: 4, Func. Count: 46, Neg. LLF: 73.0728317063754
Iteration: 5, Func. Count: 57, Neg. LLF: 65.75616069468686
Iteration: 6, Func. Count: 67, Neg. LLF: 65.74420041523645
Iteration: 7, Func. Count: 77, Neg. LLF: 65.74032465624221
Iteration: 8, Func. Count: 87, Neg. LLF: 65.73959513126249
Iteration: 9, Func. Count: 97, Neg. LLF: 65.73864655735576
Iteration: 10, Func. Count: 107, Neg. LLF: 65.73856562644033
Iteration: 11, Func. Count: 117, Neg. LLF: 65.73856172025333
Iteration: 12, Func. Count: 126, Neg. LLF: 65.73856176708486
Optimization terminated successfully (Exit mode 0)
Current function value: 65.73856172025333
Iterations: 12
Function evaluations: 126
Gradient evaluations: 12
Iteration: 1, Func. Count: 12, Neg. LLF: 2586503.3779261406
Iteration: 2, Func. Count: 25, Neg. LLF: 2337518.9982890566
Iteration: 3, Func. Count: 37, Neg. LLF: 71.59085907825292
Iteration: 4, Func. Count: 50, Neg. LLF: 80.62234015069338
Iteration: 5, Func. Count: 62, Neg. LLF: 65.7636146828051
Iteration: 6, Func. Count: 73, Neg. LLF: 65.74657042890352
Iteration: 7, Func. Count: 84, Neg. LLF: 65.74246349545147
Iteration: 8, Func. Count: 95, Neg. LLF: 65.73936679286268
Iteration: 9, Func. Count: 106, Neg. LLF: 65.73889365980581
Iteration: 10, Func. Count: 117, Neg. LLF: 65.73860359636802
Iteration: 11, Func. Count: 128, Neg. LLF: 65.73856425159711
Iteration: 12, Func. Count: 139, Neg. LLF: 65.7385617197267
Iteration: 13, Func. Count: 149, Neg. LLF: 65.73856172403693
Optimization terminated successfully (Exit mode 0)
Current function value: 65.7385617197267
Iterations: 13
Function evaluations: 149
Gradient evaluations: 13
Iteration: 1, Func. Count: 13, Neg. LLF: 299.5126256790416
Iteration: 2, Func. Count: 27, Neg. LLF: 2145987.020897798
Iteration: 3, Func. Count: 40, Neg. LLF: 74.69637789917087
Iteration: 4, Func. Count: 54, Neg. LLF: 76.78261662861821
Iteration: 5, Func. Count: 67, Neg. LLF: 65.75829465714489
Iteration: 6, Func. Count: 79, Neg. LLF: 65.7447292657189
Iteration: 7, Func. Count: 91, Neg. LLF: 65.74154785002355
Iteration: 8, Func. Count: 103, Neg. LLF: 65.73862080098772
Iteration: 9, Func. Count: 115, Neg. LLF: 65.73856266092153
Iteration: 10, Func. Count: 127, Neg. LLF: 65.738561708602
Optimization terminated successfully (Exit mode 0)
Current function value: 65.738561708602
Iterations: 10
Function evaluations: 127
Gradient evaluations: 10
Iteration: 1, Func. Count: 14, Neg. LLF: 230.62803292583195
Iteration: 2, Func. Count: 29, Neg. LLF: 2030187.951023342
Iteration: 3, Func. Count: 43, Neg. LLF: 74.06046320709156
Iteration: 4, Func. Count: 58, Neg. LLF: 82.55647746762294
Iteration: 5, Func. Count: 72, Neg. LLF: 65.77339315198277
Iteration: 6, Func. Count: 85, Neg. LLF: 65.74560877742336
Iteration: 7, Func. Count: 98, Neg. LLF: 65.7404134384804
Iteration: 8, Func. Count: 111, Neg. LLF: 65.73930430240999
Iteration: 9, Func. Count: 124, Neg. LLF: 65.73869644860902
Iteration: 10, Func. Count: 137, Neg. LLF: 65.7385860945867
Iteration: 11, Func. Count: 150, Neg. LLF: 65.7385630941407
Iteration: 12, Func. Count: 163, Neg. LLF: 65.73856173088352
Iteration: 13, Func. Count: 175, Neg. LLF: 65.73856174083413
Optimization terminated successfully (Exit mode 0)
Current function value: 65.73856173088352
Iterations: 13
Function evaluations: 175
Gradient evaluations: 13
Iteration: 1, Func. Count: 7, Neg. LLF: 118.94098578474252
Iteration: 2, Func. Count: 17, Neg. LLF: 122.15924977519158
Iteration: 3, Func. Count: 25, Neg. LLF: 207.85005061783087
Iteration: 4, Func. Count: 32, Neg. LLF: 67.57593351655211
Iteration: 5, Func. Count: 39, Neg. LLF: 66.96452296345197
Iteration: 6, Func. Count: 45, Neg. LLF: 66.96067509636964
Iteration: 7, Func. Count: 51, Neg. LLF: 66.96018524981781
Iteration: 8, Func. Count: 57, Neg. LLF: 66.96018382854417
Iteration: 9, Func. Count: 62, Neg. LLF: 66.96018382853694
Optimization terminated successfully (Exit mode 0)
Current function value: 66.96018382854417
Iterations: 9
Function evaluations: 62
Gradient evaluations: 9
Iteration: 1, Func. Count: 8, Neg. LLF: 308.06531149384085
Iteration: 2, Func. Count: 17, Neg. LLF: 22214445.81013503
Iteration: 3, Func. Count: 26, Neg. LLF: 72.9110491722839
Iteration: 4, Func. Count: 34, Neg. LLF: 68.30005498345147
Iteration: 5, Func. Count: 42, Neg. LLF: 66.99737240895844
Iteration: 6, Func. Count: 49, Neg. LLF: 66.96327053753572
Iteration: 7, Func. Count: 56, Neg. LLF: 66.96068302670751
Iteration: 8, Func. Count: 63, Neg. LLF: 66.96021544119509
Iteration: 9, Func. Count: 70, Neg. LLF: 66.96018396187289
Iteration: 10, Func. Count: 76, Neg. LLF: 66.9601839797866
Optimization terminated successfully (Exit mode 0)
Current function value: 66.96018396187289
Iterations: 10
Function evaluations: 76
Gradient evaluations: 10
Iteration: 1, Func. Count: 9, Neg. LLF: 2494.0763295403303
Iteration: 2, Func. Count: 19, Neg. LLF: 1537968.7623994222
Iteration: 3, Func. Count: 29, Neg. LLF: 70.65038678942176
Iteration: 4, Func. Count: 38, Neg. LLF: 67.11085286027321
Iteration: 5, Func. Count: 46, Neg. LLF: 67.29132449755652
Iteration: 6, Func. Count: 55, Neg. LLF: 66.96513579302565
Iteration: 7, Func. Count: 63, Neg. LLF: 66.96063040713783
Iteration: 8, Func. Count: 71, Neg. LLF: 66.9602298950142
Iteration: 9, Func. Count: 79, Neg. LLF: 66.96018792896022
Iteration: 10, Func. Count: 87, Neg. LLF: 66.96018382597771
Iteration: 11, Func. Count: 94, Neg. LLF: 66.96018385508978
Optimization terminated successfully (Exit mode 0)
Current function value: 66.96018382597771
Iterations: 11
Function evaluations: 94
Gradient evaluations: 11
Iteration: 1, Func. Count: 10, Neg. LLF: 1308.5967533354603
Iteration: 2, Func. Count: 21, Neg. LLF: 28237.9562699651
Iteration: 3, Func. Count: 32, Neg. LLF: 90.61983728722511
Iteration: 4, Func. Count: 43, Neg. LLF: 68.01523504000448
Iteration: 5, Func. Count: 53, Neg. LLF: 67.01172713093943
Iteration: 6, Func. Count: 62, Neg. LLF: 66.9616640665688
Iteration: 7, Func. Count: 71, Neg. LLF: 66.96028569614212
Iteration: 8, Func. Count: 80, Neg. LLF: 66.96020136720384
Iteration: 9, Func. Count: 89, Neg. LLF: 66.96018384248947
Iteration: 10, Func. Count: 97, Neg. LLF: 66.96018386558633
Optimization terminated successfully (Exit mode 0)
Current function value: 66.96018384248947
Iterations: 10
Function evaluations: 97
Gradient evaluations: 10
Iteration: 1, Func. Count: 11, Neg. LLF: 117.46025570905758
Iteration: 2, Func. Count: 23, Neg. LLF: 33280.916406005796
Iteration: 3, Func. Count: 34, Neg. LLF: 73.30393619870357
Iteration: 4, Func. Count: 46, Neg. LLF: 67.6590542142627
Iteration: 5, Func. Count: 57, Neg. LLF: 68.35139615361047
Iteration: 6, Func. Count: 68, Neg. LLF: 66.96375799542145
Iteration: 7, Func. Count: 78, Neg. LLF: 66.96025403452228
Iteration: 8, Func. Count: 88, Neg. LLF: 66.96019105335313
Iteration: 9, Func. Count: 98, Neg. LLF: 66.96018405023479
Iteration: 10, Func. Count: 107, Neg. LLF: 66.96018406260103
Optimization terminated successfully (Exit mode 0)
Current function value: 66.96018405023479
Iterations: 10
Function evaluations: 107
Gradient evaluations: 10
Iteration: 1, Func. Count: 8, Neg. LLF: 116.83882617679173
Iteration: 2, Func. Count: 19, Neg. LLF: 119.01500912528586
Iteration: 3, Func. Count: 28, Neg. LLF: 3170.901653884965
Iteration: 4, Func. Count: 36, Neg. LLF: 68.42551548044985
Iteration: 5, Func. Count: 44, Neg. LLF: 66.36146914394772
Iteration: 6, Func. Count: 51, Neg. LLF: 66.35336301625084
Iteration: 7, Func. Count: 58, Neg. LLF: 66.35211652833637
Iteration: 8, Func. Count: 65, Neg. LLF: 66.351606262
Iteration: 9, Func. Count: 72, Neg. LLF: 66.3515229557171
Iteration: 10, Func. Count: 79, Neg. LLF: 66.35146108040132
Iteration: 11, Func. Count: 86, Neg. LLF: 66.35145075624719
Iteration: 12, Func. Count: 93, Neg. LLF: 66.3514498353506
Optimization terminated successfully (Exit mode 0)
Current function value: 66.3514498353506
Iterations: 12
Function evaluations: 93
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 34020116.15523706
Iteration: 2, Func. Count: 18, Neg. LLF: 87.05457883241861
Iteration: 3, Func. Count: 28, Neg. LLF: 68.00969274881128
Iteration: 4, Func. Count: 37, Neg. LLF: 66.4201859566178
Iteration: 5, Func. Count: 45, Neg. LLF: 73.34289189271637
Iteration: 6, Func. Count: 55, Neg. LLF: 66.37433633316749
Iteration: 7, Func. Count: 63, Neg. LLF: 66.35234418018239
Iteration: 8, Func. Count: 71, Neg. LLF: 66.3514679354249
Iteration: 9, Func. Count: 79, Neg. LLF: 66.35145079051861
Iteration: 10, Func. Count: 87, Neg. LLF: 66.3514498188847
Optimization terminated successfully (Exit mode 0)
Current function value: 66.3514498188847
Iterations: 10
Function evaluations: 87
Gradient evaluations: 10
Iteration: 1, Func. Count: 10, Neg. LLF: 30921776.645161815
Iteration: 2, Func. Count: 20, Neg. LLF: 89.89093895263282
Iteration: 3, Func. Count: 31, Neg. LLF: 69.22219439303451
Iteration: 4, Func. Count: 42, Neg. LLF: 68.29735481904662
Iteration: 5, Func. Count: 52, Neg. LLF: 68.95935246154919
Iteration: 6, Func. Count: 62, Neg. LLF: 66.36097066402608
Iteration: 7, Func. Count: 71, Neg. LLF: 66.35342989036768
Iteration: 8, Func. Count: 80, Neg. LLF: 66.3516374485885
Iteration: 9, Func. Count: 89, Neg. LLF: 66.35154484243598
Iteration: 10, Func. Count: 98, Neg. LLF: 66.35151299249563
Iteration: 11, Func. Count: 107, Neg. LLF: 66.35147122169579
Iteration: 12, Func. Count: 116, Neg. LLF: 66.3514548617921
Iteration: 13, Func. Count: 125, Neg. LLF: 66.35145010755556
Iteration: 14, Func. Count: 133, Neg. LLF: 66.35145013256037
Optimization terminated successfully (Exit mode 0)
Current function value: 66.35145010755556
Iterations: 14
Function evaluations: 133
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 1485695.62955041
Iteration: 2, Func. Count: 22, Neg. LLF: 791848.4258697988
Iteration: 3, Func. Count: 34, Neg. LLF: 74.31568630318567
Iteration: 4, Func. Count: 46, Neg. LLF: 67.95400406174461
Iteration: 5, Func. Count: 57, Neg. LLF: 66.80217225492612
Iteration: 6, Func. Count: 67, Neg. LLF: 66.37111816508408
Iteration: 7, Func. Count: 77, Neg. LLF: 66.35726536556616
Iteration: 8, Func. Count: 87, Neg. LLF: 66.352018869832
Iteration: 9, Func. Count: 97, Neg. LLF: 66.35154042338262
Iteration: 10, Func. Count: 107, Neg. LLF: 66.35145156408936
Iteration: 11, Func. Count: 117, Neg. LLF: 66.351450022905
Iteration: 12, Func. Count: 126, Neg. LLF: 66.3514500459841
Optimization terminated successfully (Exit mode 0)
Current function value: 66.351450022905
Iterations: 12
Function evaluations: 126
Gradient evaluations: 12
Iteration: 1, Func. Count: 12, Neg. LLF: 2305.743582351404
Iteration: 2, Func. Count: 24, Neg. LLF: 859045.4321853287
Iteration: 3, Func. Count: 37, Neg. LLF: 68.10193385578967
Iteration: 4, Func. Count: 49, Neg. LLF: 69.39332069552454
Iteration: 5, Func. Count: 61, Neg. LLF: 71.39088476335945
Iteration: 6, Func. Count: 73, Neg. LLF: 66.35213917520643
Iteration: 7, Func. Count: 84, Neg. LLF: 66.35154406338663
Iteration: 8, Func. Count: 95, Neg. LLF: 66.35145859544224
Iteration: 9, Func. Count: 106, Neg. LLF: 66.35145220558637
Iteration: 10, Func. Count: 117, Neg. LLF: 66.35144999569688
Iteration: 11, Func. Count: 127, Neg. LLF: 66.35145001260881
Optimization terminated successfully (Exit mode 0)
Current function value: 66.35144999569688
Iterations: 11
Function evaluations: 127
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 113.82676424609376
Iteration: 2, Func. Count: 21, Neg. LLF: 118.48624076124001
Iteration: 3, Func. Count: 31, Neg. LLF: 2968355.624058005
Iteration: 4, Func. Count: 40, Neg. LLF: 68.9194474329908
Iteration: 5, Func. Count: 49, Neg. LLF: 67.69454896254956
Iteration: 6, Func. Count: 58, Neg. LLF: 68.0244710567791
Iteration: 7, Func. Count: 67, Neg. LLF: 64.98074102939786
Iteration: 8, Func. Count: 75, Neg. LLF: 64.98366411928626
Iteration: 9, Func. Count: 84, Neg. LLF: 64.85314013601484
Iteration: 10, Func. Count: 92, Neg. LLF: 64.83225256412265
Iteration: 11, Func. Count: 100, Neg. LLF: 64.82632757903544
Iteration: 12, Func. Count: 108, Neg. LLF: 64.82579590542332
Iteration: 13, Func. Count: 116, Neg. LLF: 64.82579049969004
Iteration: 14, Func. Count: 124, Neg. LLF: 64.82578984778037
Optimization terminated successfully (Exit mode 0)
Current function value: 64.82578984778037
Iterations: 14
Function evaluations: 124
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 5201532.393255503
Iteration: 2, Func. Count: 20, Neg. LLF: 975552.4987804584
Iteration: 3, Func. Count: 31, Neg. LLF: 81.20216401927607
Iteration: 4, Func. Count: 41, Neg. LLF: 66.98977839525489
Iteration: 5, Func. Count: 51, Neg. LLF: 65.21862135781743
Iteration: 6, Func. Count: 60, Neg. LLF: 78.59944087782065
Iteration: 7, Func. Count: 71, Neg. LLF: 65.14674123399323
Iteration: 8, Func. Count: 81, Neg. LLF: 64.90799769243783
Iteration: 9, Func. Count: 90, Neg. LLF: 64.84190024890366
Iteration: 10, Func. Count: 99, Neg. LLF: 64.82934524325778
Iteration: 11, Func. Count: 108, Neg. LLF: 64.82682717753836
Iteration: 12, Func. Count: 117, Neg. LLF: 64.8261382340409
Iteration: 13, Func. Count: 126, Neg. LLF: 64.82582894277589
Iteration: 14, Func. Count: 135, Neg. LLF: 64.82579123293583
Iteration: 15, Func. Count: 144, Neg. LLF: 64.82578983888024
Iteration: 16, Func. Count: 152, Neg. LLF: 64.82578994445099
Optimization terminated successfully (Exit mode 0)
Current function value: 64.82578983888024
Iterations: 16
Function evaluations: 152
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 5757287.431515928
Iteration: 2, Func. Count: 22, Neg. LLF: 500408.0172827135
Iteration: 3, Func. Count: 34, Neg. LLF: 5945624.565329049
Iteration: 4, Func. Count: 45, Neg. LLF: 69.83961387330999
Iteration: 5, Func. Count: 57, Neg. LLF: 66.29881545057938
Iteration: 6, Func. Count: 67, Neg. LLF: 65.53651778162474
Iteration: 7, Func. Count: 77, Neg. LLF: 66.08080095972727
Iteration: 8, Func. Count: 88, Neg. LLF: 65.10405818603995
Iteration: 9, Func. Count: 98, Neg. LLF: 64.93367131849392
Iteration: 10, Func. Count: 108, Neg. LLF: 64.87125579252555
Iteration: 11, Func. Count: 118, Neg. LLF: 64.84408106050408
Iteration: 12, Func. Count: 128, Neg. LLF: 64.83435771684047
Iteration: 13, Func. Count: 138, Neg. LLF: 64.8273723608146
Iteration: 14, Func. Count: 148, Neg. LLF: 64.82585820082288
Iteration: 15, Func. Count: 158, Neg. LLF: 64.82579171808939
Iteration: 16, Func. Count: 168, Neg. LLF: 64.82579003005661
Iteration: 17, Func. Count: 177, Neg. LLF: 64.8257901367689
Optimization terminated successfully (Exit mode 0)
Current function value: 64.82579003005661
Iterations: 17
Function evaluations: 177
Gradient evaluations: 17
Iteration: 1, Func. Count: 12, Neg. LLF: 5718234.958943989
Iteration: 2, Func. Count: 24, Neg. LLF: 576362.6308378422
Iteration: 3, Func. Count: 37, Neg. LLF: 5942595.150198915
Iteration: 4, Func. Count: 49, Neg. LLF: 69.55069601953187
Iteration: 5, Func. Count: 62, Neg. LLF: 71.47276613654802
Iteration: 6, Func. Count: 74, Neg. LLF: 65.10648706165085
Iteration: 7, Func. Count: 85, Neg. LLF: 65.01274329042232
Iteration: 8, Func. Count: 96, Neg. LLF: 64.966753154832
Iteration: 9, Func. Count: 107, Neg. LLF: 64.88442352993903
Iteration: 10, Func. Count: 118, Neg. LLF: 64.84608257080012
Iteration: 11, Func. Count: 129, Neg. LLF: 64.82811255522009
Iteration: 12, Func. Count: 140, Neg. LLF: 64.82627190506686
Iteration: 13, Func. Count: 151, Neg. LLF: 64.82579408269258
Iteration: 14, Func. Count: 162, Neg. LLF: 64.82579000676694
Iteration: 15, Func. Count: 172, Neg. LLF: 64.82579010041943
Optimization terminated successfully (Exit mode 0)
Current function value: 64.82579000676694
Iterations: 15
Function evaluations: 172
Gradient evaluations: 15
Iteration: 1, Func. Count: 13, Neg. LLF: 5318923.342317645
Iteration: 2, Func. Count: 26, Neg. LLF: 430966.33299159247
Iteration: 3, Func. Count: 40, Neg. LLF: 5885537.385007318
Iteration: 4, Func. Count: 53, Neg. LLF: 66.97434044567571
Iteration: 5, Func. Count: 66, Neg. LLF: 94.40620760080508
Iteration: 6, Func. Count: 79, Neg. LLF: 125.28554158341468
Iteration: 7, Func. Count: 92, Neg. LLF: 65.54144217973423
Iteration: 8, Func. Count: 104, Neg. LLF: 65.05485990174748
Iteration: 9, Func. Count: 116, Neg. LLF: 65.21265015300689
Iteration: 10, Func. Count: 130, Neg. LLF: 64.63685725534413
Iteration: 11, Func. Count: 142, Neg. LLF: 64.54500738832138
Iteration: 12, Func. Count: 154, Neg. LLF: 64.49866805281607
Iteration: 13, Func. Count: 166, Neg. LLF: 64.49271970171209
Iteration: 14, Func. Count: 178, Neg. LLF: 64.4915257104471
Iteration: 15, Func. Count: 190, Neg. LLF: 64.49139640640936
Iteration: 16, Func. Count: 202, Neg. LLF: 64.49139133048847
Iteration: 17, Func. Count: 214, Neg. LLF: 64.49139011388301
Iteration: 18, Func. Count: 225, Neg. LLF: 64.49139009016292
Optimization terminated successfully (Exit mode 0)
Current function value: 64.49139011388301
Iterations: 18
Function evaluations: 225
Gradient evaluations: 18
Iteration: 1, Func. Count: 10, Neg. LLF: 114.04592995824366
Iteration: 2, Func. Count: 23, Neg. LLF: 117.92887214200515
Iteration: 3, Func. Count: 34, Neg. LLF: 1121671.0574867968
Iteration: 4, Func. Count: 44, Neg. LLF: 87.07492310637241
Iteration: 5, Func. Count: 54, Neg. LLF: 108.79839324754512
Iteration: 6, Func. Count: 64, Neg. LLF: 108.3248971522888
Iteration: 7, Func. Count: 74, Neg. LLF: 64.85117950959477
Iteration: 8, Func. Count: 83, Neg. LLF: 64.52503824739824
Iteration: 9, Func. Count: 92, Neg. LLF: 65.25004651063523
Iteration: 10, Func. Count: 102, Neg. LLF: 64.4160181817946
Iteration: 11, Func. Count: 111, Neg. LLF: 64.23998006712858
Iteration: 12, Func. Count: 120, Neg. LLF: 64.2025437895498
Iteration: 13, Func. Count: 129, Neg. LLF: 64.1977111526499
Iteration: 14, Func. Count: 138, Neg. LLF: 64.19558528094038
Iteration: 15, Func. Count: 147, Neg. LLF: 64.19543736011181
Iteration: 16, Func. Count: 156, Neg. LLF: 64.19536606152812
Iteration: 17, Func. Count: 165, Neg. LLF: 64.19535811448833
Iteration: 18, Func. Count: 173, Neg. LLF: 64.19535811450038
Optimization terminated successfully (Exit mode 0)
Current function value: 64.19535811448833
Iterations: 18
Function evaluations: 173
Gradient evaluations: 18
Iteration: 1, Func. Count: 11, Neg. LLF: 4983668.698268598
Iteration: 2, Func. Count: 22, Neg. LLF: 116.56432127982796
Iteration: 3, Func. Count: 34, Neg. LLF: 152.1536812876284
Iteration: 4, Func. Count: 45, Neg. LLF: 1282996.102678429
Iteration: 5, Func. Count: 56, Neg. LLF: 67.92351040941702
Iteration: 6, Func. Count: 67, Neg. LLF: 67.87380747362688
Iteration: 7, Func. Count: 78, Neg. LLF: 64.41931670007835
Iteration: 8, Func. Count: 88, Neg. LLF: 66.25871116301542
Iteration: 9, Func. Count: 99, Neg. LLF: 64.24744106488315
Iteration: 10, Func. Count: 109, Neg. LLF: 64.20859362228067
Iteration: 11, Func. Count: 119, Neg. LLF: 64.2370581796123
Iteration: 12, Func. Count: 130, Neg. LLF: 64.19566254370434
Iteration: 13, Func. Count: 140, Neg. LLF: 64.19547555129542
Iteration: 14, Func. Count: 150, Neg. LLF: 64.19538669470245
Iteration: 15, Func. Count: 160, Neg. LLF: 64.19536036878729
Iteration: 16, Func. Count: 170, Neg. LLF: 64.19535799862435
Iteration: 17, Func. Count: 179, Neg. LLF: 64.1953580299636
Optimization terminated successfully (Exit mode 0)
Current function value: 64.19535799862435
Iterations: 17
Function evaluations: 179
Gradient evaluations: 17
Iteration: 1, Func. Count: 12, Neg. LLF: 3477995.2244470995
Iteration: 2, Func. Count: 24, Neg. LLF: 115.0693672503369
Iteration: 3, Func. Count: 37, Neg. LLF: 2047364.456847325
Iteration: 4, Func. Count: 49, Neg. LLF: 1197923.2733518388
Iteration: 5, Func. Count: 61, Neg. LLF: 68.74889027538354
Iteration: 6, Func. Count: 73, Neg. LLF: 65.86500045399546
Iteration: 7, Func. Count: 85, Neg. LLF: 64.29967489036463
Iteration: 8, Func. Count: 96, Neg. LLF: 66.51404057434512
Iteration: 9, Func. Count: 108, Neg. LLF: 64.21589175714853
Iteration: 10, Func. Count: 119, Neg. LLF: 64.1994958379831
Iteration: 11, Func. Count: 130, Neg. LLF: 64.21462703739333
Iteration: 12, Func. Count: 142, Neg. LLF: 64.19550602849758
Iteration: 13, Func. Count: 153, Neg. LLF: 64.19539609425578
Iteration: 14, Func. Count: 164, Neg. LLF: 64.19536049151797
Iteration: 15, Func. Count: 175, Neg. LLF: 64.1953581668213
Iteration: 16, Func. Count: 185, Neg. LLF: 64.19535832823988
Optimization terminated successfully (Exit mode 0)
Current function value: 64.1953581668213
Iterations: 16
Function evaluations: 185
Gradient evaluations: 16
Iteration: 1, Func. Count: 13, Neg. LLF: 4935717.325688099
Iteration: 2, Func. Count: 26, Neg. LLF: 111.76035257694595
Iteration: 3, Func. Count: 40, Neg. LLF: 2112944.896589847
Iteration: 4, Func. Count: 53, Neg. LLF: 1198594.6362870845
Iteration: 5, Func. Count: 66, Neg. LLF: 65.65960985263047
Iteration: 6, Func. Count: 78, Neg. LLF: 66.52372233456671
Iteration: 7, Func. Count: 91, Neg. LLF: 73.4375782084021
Iteration: 8, Func. Count: 104, Neg. LLF: 64.2949664536219
Iteration: 9, Func. Count: 116, Neg. LLF: 64.43116067438369
Iteration: 10, Func. Count: 129, Neg. LLF: 64.27183589305443
Iteration: 11, Func. Count: 142, Neg. LLF: 64.19630188593904
Iteration: 12, Func. Count: 154, Neg. LLF: 64.19552854980283
Iteration: 13, Func. Count: 166, Neg. LLF: 64.1954469204133
Iteration: 14, Func. Count: 178, Neg. LLF: 64.19536503290524
Iteration: 15, Func. Count: 190, Neg. LLF: 64.19535838111334
Iteration: 16, Func. Count: 201, Neg. LLF: 64.19535848244551
Optimization terminated successfully (Exit mode 0)
Current function value: 64.19535838111334
Iterations: 16
Function evaluations: 201
Gradient evaluations: 16
Iteration: 1, Func. Count: 14, Neg. LLF: 3195499.690732716
Iteration: 2, Func. Count: 28, Neg. LLF: 110.98611687278132
Iteration: 3, Func. Count: 43, Neg. LLF: 2016397.3153538462
Iteration: 4, Func. Count: 57, Neg. LLF: 1201964.5993370027
Iteration: 5, Func. Count: 71, Neg. LLF: 114.75888312309117
Iteration: 6, Func. Count: 85, Neg. LLF: 100.70142963255968
Iteration: 7, Func. Count: 99, Neg. LLF: 63.0992193927662
Iteration: 8, Func. Count: 112, Neg. LLF: 65.95935319979304
Iteration: 9, Func. Count: 128, Neg. LLF: 62.97335352468589
Iteration: 10, Func. Count: 142, Neg. LLF: 62.74237043246355
Iteration: 11, Func. Count: 155, Neg. LLF: 62.658065791402706
Iteration: 12, Func. Count: 168, Neg. LLF: 62.63456627591546
Iteration: 13, Func. Count: 181, Neg. LLF: 62.63339791255438
Iteration: 14, Func. Count: 194, Neg. LLF: 62.63322146003179
Iteration: 15, Func. Count: 207, Neg. LLF: 62.63320961839098
Iteration: 16, Func. Count: 220, Neg. LLF: 62.63319234632096
Iteration: 17, Func. Count: 233, Neg. LLF: 62.64245316193754
Optimization terminated successfully (Exit mode 0)
Current function value: 62.633192329429626
Iterations: 18
Function evaluations: 236
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 115.01135868860261
Iteration: 2, Func. Count: 25, Neg. LLF: 117.04359671058023
Iteration: 3, Func. Count: 37, Neg. LLF: 1152448.7484252688
Iteration: 4, Func. Count: 48, Neg. LLF: 3622721.348394157
Iteration: 5, Func. Count: 59, Neg. LLF: 68.26565889552205
Iteration: 6, Func. Count: 70, Neg. LLF: 65.08733529442024
Iteration: 7, Func. Count: 80, Neg. LLF: 64.70671929322472
Iteration: 8, Func. Count: 90, Neg. LLF: 64.42550010259376
Iteration: 9, Func. Count: 100, Neg. LLF: 65.25419970600727
Iteration: 10, Func. Count: 111, Neg. LLF: 64.35441852257392
Iteration: 11, Func. Count: 122, Neg. LLF: 64.2038758200547
Iteration: 12, Func. Count: 132, Neg. LLF: 64.19749414532802
Iteration: 13, Func. Count: 142, Neg. LLF: 64.19587176664264
Iteration: 14, Func. Count: 152, Neg. LLF: 64.19551394119726
Iteration: 15, Func. Count: 162, Neg. LLF: 64.19536549250383
Iteration: 16, Func. Count: 172, Neg. LLF: 64.19535879522415
Iteration: 17, Func. Count: 181, Neg. LLF: 64.1953589188883
Optimization terminated successfully (Exit mode 0)
Current function value: 64.19535879522415
Iterations: 17
Function evaluations: 181
Gradient evaluations: 17
Iteration: 1, Func. Count: 12, Neg. LLF: 4949557.869034562
Iteration: 2, Func. Count: 24, Neg. LLF: 115.70177756990333
Iteration: 3, Func. Count: 37, Neg. LLF: 154.21240426548295
Iteration: 4, Func. Count: 49, Neg. LLF: 1278930.8084774183
Iteration: 5, Func. Count: 61, Neg. LLF: 67.96115410146601
Iteration: 6, Func. Count: 73, Neg. LLF: 67.88674624656053
Iteration: 7, Func. Count: 85, Neg. LLF: 64.41247242863054
Iteration: 8, Func. Count: 96, Neg. LLF: 66.27027122111951
Iteration: 9, Func. Count: 108, Neg. LLF: 64.24294627177416
Iteration: 10, Func. Count: 119, Neg. LLF: 64.21114315259078
Iteration: 11, Func. Count: 130, Neg. LLF: 64.24095430634024
Iteration: 12, Func. Count: 142, Neg. LLF: 64.19572702964723
Iteration: 13, Func. Count: 153, Neg. LLF: 64.19550642583623
Iteration: 14, Func. Count: 164, Neg. LLF: 64.19539157272922
Iteration: 15, Func. Count: 175, Neg. LLF: 64.19536120173143
Iteration: 16, Func. Count: 186, Neg. LLF: 64.19535800888302
Iteration: 17, Func. Count: 196, Neg. LLF: 64.19535804021146
Optimization terminated successfully (Exit mode 0)
Current function value: 64.19535800888302
Iterations: 17
Function evaluations: 196
Gradient evaluations: 17
Iteration: 1, Func. Count: 13, Neg. LLF: 3427378.9797561653
Iteration: 2, Func. Count: 26, Neg. LLF: 114.74335278694228
Iteration: 3, Func. Count: 40, Neg. LLF: 2052460.0203235978
Iteration: 4, Func. Count: 53, Neg. LLF: 1196856.4086244577
Iteration: 5, Func. Count: 66, Neg. LLF: 69.13400564281328
Iteration: 6, Func. Count: 79, Neg. LLF: 66.3847753792009
Iteration: 7, Func. Count: 92, Neg. LLF: 64.309599126383
Iteration: 8, Func. Count: 104, Neg. LLF: 66.36528109537889
Iteration: 9, Func. Count: 117, Neg. LLF: 64.21397516267841
Iteration: 10, Func. Count: 129, Neg. LLF: 64.21776835393572
Iteration: 11, Func. Count: 142, Neg. LLF: 64.20192309822133
Iteration: 12, Func. Count: 155, Neg. LLF: 64.19544577788483
Iteration: 13, Func. Count: 167, Neg. LLF: 64.19537035592887
Iteration: 14, Func. Count: 179, Neg. LLF: 64.19535979576906
Iteration: 15, Func. Count: 191, Neg. LLF: 64.19535798465654
Iteration: 16, Func. Count: 202, Neg. LLF: 64.19535814600621
Optimization terminated successfully (Exit mode 0)
Current function value: 64.19535798465654
Iterations: 16
Function evaluations: 202
Gradient evaluations: 16
Iteration: 1, Func. Count: 14, Neg. LLF: 4923627.069619841
Iteration: 2, Func. Count: 28, Neg. LLF: 111.71463364897893
Iteration: 3, Func. Count: 43, Neg. LLF: 2118919.99368979
Iteration: 4, Func. Count: 57, Neg. LLF: 1197736.7375943745
Iteration: 5, Func. Count: 71, Neg. LLF: 65.82694382138914
Iteration: 6, Func. Count: 84, Neg. LLF: 66.8007109045449
Iteration: 7, Func. Count: 98, Neg. LLF: 74.15533185539341
Iteration: 8, Func. Count: 112, Neg. LLF: 64.33436189207157
Iteration: 9, Func. Count: 125, Neg. LLF: 64.38802498904629
Iteration: 10, Func. Count: 139, Neg. LLF: 64.33553025287048
Iteration: 11, Func. Count: 153, Neg. LLF: 64.19810265670323
Iteration: 12, Func. Count: 166, Neg. LLF: 64.19620729583964
Iteration: 13, Func. Count: 179, Neg. LLF: 64.19574734332376
Iteration: 14, Func. Count: 192, Neg. LLF: 64.19539228978702
Iteration: 15, Func. Count: 205, Neg. LLF: 64.19535942562949
Iteration: 16, Func. Count: 218, Neg. LLF: 64.19535795889725
Iteration: 17, Func. Count: 230, Neg. LLF: 64.1953580602079
Optimization terminated successfully (Exit mode 0)
Current function value: 64.19535795889725
Iterations: 17
Function evaluations: 230
Gradient evaluations: 17
Iteration: 1, Func. Count: 15, Neg. LLF: 3182645.8286814573
Iteration: 2, Func. Count: 30, Neg. LLF: 110.93869353072382
Iteration: 3, Func. Count: 46, Neg. LLF: 2019946.578768192
Iteration: 4, Func. Count: 61, Neg. LLF: 1201305.2168232005
Iteration: 5, Func. Count: 76, Neg. LLF: 99.8608918786141
Iteration: 6, Func. Count: 91, Neg. LLF: 93.99209032865697
Iteration: 7, Func. Count: 106, Neg. LLF: 63.07531587593175
Iteration: 8, Func. Count: 120, Neg. LLF: 66.17305441403526
Iteration: 9, Func. Count: 137, Neg. LLF: 62.93897502973802
Iteration: 10, Func. Count: 151, Neg. LLF: 62.70210729327843
Iteration: 11, Func. Count: 165, Neg. LLF: 62.641609211582036
Iteration: 12, Func. Count: 179, Neg. LLF: 62.63553748636512
Iteration: 13, Func. Count: 193, Neg. LLF: 62.63364772572103
Iteration: 14, Func. Count: 207, Neg. LLF: 62.633219723226325
Iteration: 15, Func. Count: 221, Neg. LLF: 62.63320364695344
Iteration: 16, Func. Count: 235, Neg. LLF: 62.63320077600736
Iteration: 17, Func. Count: 249, Neg. LLF: 62.633197032131605
Iteration: 18, Func. Count: 262, Neg. LLF: 62.63319692893674
Optimization terminated successfully (Exit mode 0)
Current function value: 62.633197032131605
Iterations: 19
Function evaluations: 262
Gradient evaluations: 18
Iteration: 1, Func. Count: 8, Neg. LLF: 124.00511086134445
Iteration: 2, Func. Count: 19, Neg. LLF: 134.89689204427285
Iteration: 3, Func. Count: 28, Neg. LLF: 420.78716688725603
Iteration: 4, Func. Count: 36, Neg. LLF: 343.7189006998606
Iteration: 5, Func. Count: 45, Neg. LLF: 66.96277049677998
Iteration: 6, Func. Count: 52, Neg. LLF: 66.9606669502933
Iteration: 7, Func. Count: 59, Neg. LLF: 66.96037666790953
Iteration: 8, Func. Count: 66, Neg. LLF: 66.9602287448504
Iteration: 9, Func. Count: 73, Neg. LLF: 66.96020067092957
Iteration: 10, Func. Count: 80, Neg. LLF: 66.9601841694507
Iteration: 11, Func. Count: 86, Neg. LLF: 66.96018424703193
Optimization terminated successfully (Exit mode 0)
Current function value: 66.9601841694507
Iterations: 11
Function evaluations: 86
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 5515.761687549779
Iteration: 2, Func. Count: 19, Neg. LLF: 134.15937463419138
Iteration: 3, Func. Count: 29, Neg. LLF: 74.30425333077385
Iteration: 4, Func. Count: 38, Neg. LLF: 74.42992153371414
Iteration: 5, Func. Count: 47, Neg. LLF: 67.03922025323283
Iteration: 6, Func. Count: 55, Neg. LLF: 66.96486357213993
Iteration: 7, Func. Count: 63, Neg. LLF: 66.96050554247098
Iteration: 8, Func. Count: 71, Neg. LLF: 66.96019688355663
Iteration: 9, Func. Count: 79, Neg. LLF: 66.96018469929405
Iteration: 10, Func. Count: 87, Neg. LLF: 66.96018382653453
Optimization terminated successfully (Exit mode 0)
Current function value: 66.96018382653453
Iterations: 10
Function evaluations: 87
Gradient evaluations: 10
Iteration: 1, Func. Count: 10, Neg. LLF: 477.5928360907431
Iteration: 2, Func. Count: 21, Neg. LLF: 120.35391130272473
Iteration: 3, Func. Count: 32, Neg. LLF: 73.83987916752656
Iteration: 4, Func. Count: 42, Neg. LLF: 68.34957937022045
Iteration: 5, Func. Count: 53, Neg. LLF: 66.96646786010606
Iteration: 6, Func. Count: 62, Neg. LLF: 66.96061645248965
Iteration: 7, Func. Count: 71, Neg. LLF: 66.96021071055415
Iteration: 8, Func. Count: 80, Neg. LLF: 66.96018438614198
Iteration: 9, Func. Count: 89, Neg. LLF: 66.96018383038935
Optimization terminated successfully (Exit mode 0)
Current function value: 66.96018383038935
Iterations: 9
Function evaluations: 89
Gradient evaluations: 9
Iteration: 1, Func. Count: 11, Neg. LLF: 545.0409327860112
Iteration: 2, Func. Count: 23, Neg. LLF: 183.0719020977849
Iteration: 3, Func. Count: 35, Neg. LLF: 68.79040923467853
Iteration: 4, Func. Count: 46, Neg. LLF: 110.693840998151
Iteration: 5, Func. Count: 57, Neg. LLF: 69.0141323722081
Iteration: 6, Func. Count: 68, Neg. LLF: 66.96706435202671
Iteration: 7, Func. Count: 78, Neg. LLF: 66.96037483679287
Iteration: 8, Func. Count: 88, Neg. LLF: 66.96018967104638
Iteration: 9, Func. Count: 98, Neg. LLF: 66.96018389474936
Iteration: 10, Func. Count: 107, Neg. LLF: 66.96018391785243
Optimization terminated successfully (Exit mode 0)
Current function value: 66.96018389474936
Iterations: 10
Function evaluations: 107
Gradient evaluations: 10
Iteration: 1, Func. Count: 12, Neg. LLF: 508.4992253694283
Iteration: 2, Func. Count: 25, Neg. LLF: 1835.8754159651983
Iteration: 3, Func. Count: 37, Neg. LLF: 70.84345271050368
Iteration: 4, Func. Count: 49, Neg. LLF: 68.45866033971845
Iteration: 5, Func. Count: 61, Neg. LLF: 68.723617788085
Iteration: 6, Func. Count: 73, Neg. LLF: 67.12371405598486
Iteration: 7, Func. Count: 84, Neg. LLF: 66.96213302160247
Iteration: 8, Func. Count: 95, Neg. LLF: 66.96032436717063
Iteration: 9, Func. Count: 106, Neg. LLF: 66.96018431758365
Iteration: 10, Func. Count: 116, Neg. LLF: 66.96018432997195
Optimization terminated successfully (Exit mode 0)
Current function value: 66.96018431758365
Iterations: 10
Function evaluations: 116
Gradient evaluations: 10
Iteration: 1, Func. Count: 9, Neg. LLF: 121.83582858980064
Iteration: 2, Func. Count: 21, Neg. LLF: 130.20126819458105
Iteration: 3, Func. Count: 31, Neg. LLF: 2113.1316594661957
Iteration: 4, Func. Count: 40, Neg. LLF: 66.92945089770105
Iteration: 5, Func. Count: 48, Neg. LLF: 67.29214246448558
Iteration: 6, Func. Count: 57, Neg. LLF: 67.2668888392441
Iteration: 7, Func. Count: 66, Neg. LLF: 66.35147761854421
Iteration: 8, Func. Count: 74, Neg. LLF: 66.35145525502712
Iteration: 9, Func. Count: 82, Neg. LLF: 66.3514501865887
Iteration: 10, Func. Count: 89, Neg. LLF: 66.35145009097558
Optimization terminated successfully (Exit mode 0)
Current function value: 66.3514501865887
Iterations: 10
Function evaluations: 89
Gradient evaluations: 10
Iteration: 1, Func. Count: 10, Neg. LLF: 2478.5576371681336
Iteration: 2, Func. Count: 20, Neg. LLF: 121.286486162165
Iteration: 3, Func. Count: 31, Neg. LLF: 74.40716517304304
Iteration: 4, Func. Count: 42, Neg. LLF: 68.01032141103397
Iteration: 5, Func. Count: 52, Neg. LLF: 66.83079294315428
Iteration: 6, Func. Count: 61, Neg. LLF: 66.37358776328834
Iteration: 7, Func. Count: 70, Neg. LLF: 66.35661655839036
Iteration: 8, Func. Count: 79, Neg. LLF: 66.35202987953492
Iteration: 9, Func. Count: 88, Neg. LLF: 66.35157531527096
Iteration: 10, Func. Count: 97, Neg. LLF: 66.35145180921921
Iteration: 11, Func. Count: 106, Neg. LLF: 66.35145005936991
Iteration: 12, Func. Count: 114, Neg. LLF: 66.35145009381814
Optimization terminated successfully (Exit mode 0)
Current function value: 66.35145005936991
Iterations: 12
Function evaluations: 114
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 13402.851949737327
Iteration: 2, Func. Count: 22, Neg. LLF: 694906.796005997
Iteration: 3, Func. Count: 34, Neg. LLF: 78.84132415704639
Iteration: 4, Func. Count: 46, Neg. LLF: 67.94465569157298
Iteration: 5, Func. Count: 57, Neg. LLF: 66.41427306221199
Iteration: 6, Func. Count: 67, Neg. LLF: 66.35939465066998
Iteration: 7, Func. Count: 77, Neg. LLF: 66.35264703600039
Iteration: 8, Func. Count: 87, Neg. LLF: 66.35151629142342
Iteration: 9, Func. Count: 97, Neg. LLF: 66.35145253202089
Iteration: 10, Func. Count: 107, Neg. LLF: 66.35144981927523
Iteration: 11, Func. Count: 116, Neg. LLF: 66.35144984425072
Optimization terminated successfully (Exit mode 0)
Current function value: 66.35144981927523
Iterations: 11
Function evaluations: 116
Gradient evaluations: 11
Iteration: 1, Func. Count: 12, Neg. LLF: 5027.802434327063
Iteration: 2, Func. Count: 24, Neg. LLF: 113.50165210093934
Iteration: 3, Func. Count: 37, Neg. LLF: 68.41760976536135
Iteration: 4, Func. Count: 49, Neg. LLF: 69.19180244490876
Iteration: 5, Func. Count: 61, Neg. LLF: 107.4877863066502
Iteration: 6, Func. Count: 73, Neg. LLF: 66.35351305908112
Iteration: 7, Func. Count: 84, Neg. LLF: 66.35166765203527
Iteration: 8, Func. Count: 95, Neg. LLF: 66.35151764285172
Iteration: 9, Func. Count: 106, Neg. LLF: 66.35145686914267
Iteration: 10, Func. Count: 117, Neg. LLF: 66.35145034142096
Iteration: 11, Func. Count: 127, Neg. LLF: 66.35145036451304
Optimization terminated successfully (Exit mode 0)
Current function value: 66.35145034142096
Iterations: 11
Function evaluations: 127
Gradient evaluations: 11
Iteration: 1, Func. Count: 13, Neg. LLF: 962669.1014869887
Iteration: 2, Func. Count: 26, Neg. LLF: 114.28451517118037
Iteration: 3, Func. Count: 40, Neg. LLF: 68.8735743661016
Iteration: 4, Func. Count: 53, Neg. LLF: 68.28270163252468
Iteration: 5, Func. Count: 66, Neg. LLF: 67.86732890511985
Iteration: 6, Func. Count: 79, Neg. LLF: 66.35585543954582
Iteration: 7, Func. Count: 91, Neg. LLF: 66.35161754528613
Iteration: 8, Func. Count: 103, Neg. LLF: 66.35146922653406
Iteration: 9, Func. Count: 115, Neg. LLF: 66.35144995037159
Iteration: 10, Func. Count: 126, Neg. LLF: 66.35144996732016
Optimization terminated successfully (Exit mode 0)
Current function value: 66.35144995037159
Iterations: 10
Function evaluations: 126
Gradient evaluations: 10
Iteration: 1, Func. Count: 10, Neg. LLF: 117.6019108353915
Iteration: 2, Func. Count: 23, Neg. LLF: 127.3690493112283
Iteration: 3, Func. Count: 34, Neg. LLF: 2706052.9974433957
Iteration: 4, Func. Count: 44, Neg. LLF: 69.89930726837201
Iteration: 5, Func. Count: 54, Neg. LLF: 69.08038458308245
Iteration: 6, Func. Count: 64, Neg. LLF: 66.08911237013018
Iteration: 7, Func. Count: 74, Neg. LLF: 64.97506471369786
Iteration: 8, Func. Count: 83, Neg. LLF: 64.92669454913951
Iteration: 9, Func. Count: 92, Neg. LLF: 64.85711354852654
Iteration: 10, Func. Count: 101, Neg. LLF: 64.83464396525821
Iteration: 11, Func. Count: 110, Neg. LLF: 64.82672796223429
Iteration: 12, Func. Count: 119, Neg. LLF: 64.82584418600257
Iteration: 13, Func. Count: 128, Neg. LLF: 64.82579993289238
Iteration: 14, Func. Count: 137, Neg. LLF: 64.82578983840641
Iteration: 15, Func. Count: 145, Neg. LLF: 64.82578983823366
Optimization terminated successfully (Exit mode 0)
Current function value: 64.82578983840641
Iterations: 15
Function evaluations: 145
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 89.38620263340411
Iteration: 2, Func. Count: 22, Neg. LLF: 598583.5025346107
Iteration: 3, Func. Count: 33, Neg. LLF: 111.21174931587294
Iteration: 4, Func. Count: 44, Neg. LLF: 68.97725228340633
Iteration: 5, Func. Count: 55, Neg. LLF: 69.56722476267521
Iteration: 6, Func. Count: 66, Neg. LLF: 65.68031503705406
Iteration: 7, Func. Count: 76, Neg. LLF: 64.93401788472393
Iteration: 8, Func. Count: 86, Neg. LLF: 64.88688799219076
Iteration: 9, Func. Count: 96, Neg. LLF: 65.04575920377549
Iteration: 10, Func. Count: 107, Neg. LLF: 64.84614228135743
Iteration: 11, Func. Count: 117, Neg. LLF: 64.82962392299589
Iteration: 12, Func. Count: 127, Neg. LLF: 64.82657383138181
Iteration: 13, Func. Count: 137, Neg. LLF: 64.82586024569714
Iteration: 14, Func. Count: 147, Neg. LLF: 64.8258044206637
Iteration: 15, Func. Count: 157, Neg. LLF: 64.82578997787269
Iteration: 16, Func. Count: 166, Neg. LLF: 64.82579008341617
Optimization terminated successfully (Exit mode 0)
Current function value: 64.82578997787269
Iterations: 16
Function evaluations: 166
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 88.0733345321525
Iteration: 2, Func. Count: 24, Neg. LLF: 629366.6736978779
Iteration: 3, Func. Count: 36, Neg. LLF: 2692219.8073289283
Iteration: 4, Func. Count: 48, Neg. LLF: 70.20202719441066
Iteration: 5, Func. Count: 60, Neg. LLF: 81.42228905705326
Iteration: 6, Func. Count: 72, Neg. LLF: 65.18305505572333
Iteration: 7, Func. Count: 83, Neg. LLF: 65.27462188287275
Iteration: 8, Func. Count: 95, Neg. LLF: 67.10030818080462
Iteration: 9, Func. Count: 107, Neg. LLF: 64.86198273860549
Iteration: 10, Func. Count: 118, Neg. LLF: 64.83957427783649
Iteration: 11, Func. Count: 129, Neg. LLF: 64.82735694499819
Iteration: 12, Func. Count: 140, Neg. LLF: 64.82597866625747
Iteration: 13, Func. Count: 151, Neg. LLF: 64.8258138277077
Iteration: 14, Func. Count: 162, Neg. LLF: 64.82579531736376
Iteration: 15, Func. Count: 173, Neg. LLF: 64.82578991741387
Iteration: 16, Func. Count: 183, Neg. LLF: 64.82579002410702
Optimization terminated successfully (Exit mode 0)
Current function value: 64.82578991741387
Iterations: 16
Function evaluations: 183
Gradient evaluations: 16
Iteration: 1, Func. Count: 13, Neg. LLF: 95.89807824842592
Iteration: 2, Func. Count: 26, Neg. LLF: 548406.2700559266
Iteration: 3, Func. Count: 40, Neg. LLF: 2684687.8588086613
Iteration: 4, Func. Count: 53, Neg. LLF: 69.05414567508666
Iteration: 5, Func. Count: 66, Neg. LLF: 70.54683421149137
Iteration: 6, Func. Count: 79, Neg. LLF: 65.24664522388896
Iteration: 7, Func. Count: 91, Neg. LLF: 64.97012069943304
Iteration: 8, Func. Count: 103, Neg. LLF: 64.88970503382004
Iteration: 9, Func. Count: 115, Neg. LLF: 64.83550539013626
Iteration: 10, Func. Count: 127, Neg. LLF: 64.83302353194168
Iteration: 11, Func. Count: 140, Neg. LLF: 64.82580229079187
Iteration: 12, Func. Count: 152, Neg. LLF: 64.82579094314006
Iteration: 13, Func. Count: 164, Neg. LLF: 64.8257898363938
Iteration: 14, Func. Count: 175, Neg. LLF: 64.82578993007267
Optimization terminated successfully (Exit mode 0)
Current function value: 64.8257898363938
Iterations: 14
Function evaluations: 175
Gradient evaluations: 14
Iteration: 1, Func. Count: 14, Neg. LLF: 164.81564992935702
Iteration: 2, Func. Count: 28, Neg. LLF: 832749.8854158592
Iteration: 3, Func. Count: 43, Neg. LLF: 5880755.8998441305
Iteration: 4, Func. Count: 57, Neg. LLF: 67.46466358047138
Iteration: 5, Func. Count: 71, Neg. LLF: 101.6615106029884
Iteration: 6, Func. Count: 85, Neg. LLF: 82.83573045309603
Iteration: 7, Func. Count: 99, Neg. LLF: 65.11661130927128
Iteration: 8, Func. Count: 112, Neg. LLF: 67.68097621989939
Iteration: 9, Func. Count: 126, Neg. LLF: 65.42387449702353
Iteration: 10, Func. Count: 140, Neg. LLF: 64.56234537755216
Iteration: 11, Func. Count: 153, Neg. LLF: 64.519524018475
Iteration: 12, Func. Count: 166, Neg. LLF: 64.49258934492386
Iteration: 13, Func. Count: 179, Neg. LLF: 64.49153613733229
Iteration: 14, Func. Count: 192, Neg. LLF: 64.49143132636657
Iteration: 15, Func. Count: 205, Neg. LLF: 64.4914080658163
Iteration: 16, Func. Count: 218, Neg. LLF: 64.49139016602993
Iteration: 17, Func. Count: 230, Neg. LLF: 64.49139014229169
Optimization terminated successfully (Exit mode 0)
Current function value: 64.49139016602993
Iterations: 17
Function evaluations: 230
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 120.30193865844922
Iteration: 2, Func. Count: 25, Neg. LLF: 128.2593182638317
Iteration: 3, Func. Count: 37, Neg. LLF: 1188569.0669974359
Iteration: 4, Func. Count: 48, Neg. LLF: 3338514.2626792584
Iteration: 5, Func. Count: 59, Neg. LLF: 67.10651098650851
Iteration: 6, Func. Count: 70, Neg. LLF: 64.98545416855292
Iteration: 7, Func. Count: 80, Neg. LLF: 65.44995978754571
Iteration: 8, Func. Count: 91, Neg. LLF: 68.5355761960141
Iteration: 9, Func. Count: 104, Neg. LLF: 64.33569913458678
Iteration: 10, Func. Count: 114, Neg. LLF: 64.24078323026717
Iteration: 11, Func. Count: 124, Neg. LLF: 64.203729730528
Iteration: 12, Func. Count: 134, Neg. LLF: 64.19724728376053
Iteration: 13, Func. Count: 144, Neg. LLF: 64.19558426881993
Iteration: 14, Func. Count: 154, Neg. LLF: 64.19537806901904
Iteration: 15, Func. Count: 164, Neg. LLF: 64.19536535944067
Iteration: 16, Func. Count: 174, Neg. LLF: 64.19535862457059
Iteration: 17, Func. Count: 184, Neg. LLF: 64.19535796810428
Optimization terminated successfully (Exit mode 0)
Current function value: 64.19535796810428
Iterations: 17
Function evaluations: 184
Gradient evaluations: 17
Iteration: 1, Func. Count: 12, Neg. LLF: 4464090.059076303
Iteration: 2, Func. Count: 24, Neg. LLF: 109.57714827779985
Iteration: 3, Func. Count: 37, Neg. LLF: 69.50243170619913
Iteration: 4, Func. Count: 49, Neg. LLF: 177037.9238805525
Iteration: 5, Func. Count: 61, Neg. LLF: 67.21758102772303
Iteration: 6, Func. Count: 73, Neg. LLF: 1161584.54294271
Iteration: 7, Func. Count: 85, Neg. LLF: 64.3326590088791
Iteration: 8, Func. Count: 96, Neg. LLF: 132.91599176466966
Iteration: 9, Func. Count: 109, Neg. LLF: 64.4683537332826
Iteration: 10, Func. Count: 121, Neg. LLF: 64.22312205984998
Iteration: 11, Func. Count: 132, Neg. LLF: 64.19977800178637
Iteration: 12, Func. Count: 143, Neg. LLF: 64.1960067363601
Iteration: 13, Func. Count: 154, Neg. LLF: 64.19551699134979
Iteration: 14, Func. Count: 165, Neg. LLF: 64.19537225021142
Iteration: 15, Func. Count: 176, Neg. LLF: 64.19535867533222
Iteration: 16, Func. Count: 187, Neg. LLF: 64.19535794282723
Optimization terminated successfully (Exit mode 0)
Current function value: 64.19535794282723
Iterations: 16
Function evaluations: 187
Gradient evaluations: 16
Iteration: 1, Func. Count: 13, Neg. LLF: 4101424.380550386
Iteration: 2, Func. Count: 26, Neg. LLF: 112.28767033534322
Iteration: 3, Func. Count: 40, Neg. LLF: 2245118.6177146873
Iteration: 4, Func. Count: 53, Neg. LLF: 1214689.074407745
Iteration: 5, Func. Count: 66, Neg. LLF: 70.89818593036328
Iteration: 6, Func. Count: 79, Neg. LLF: 64.48825207659591
Iteration: 7, Func. Count: 91, Neg. LLF: 64.24516734328563
Iteration: 8, Func. Count: 103, Neg. LLF: 64.42079214127698
Iteration: 9, Func. Count: 116, Neg. LLF: 64.64637026766381
Iteration: 10, Func. Count: 129, Neg. LLF: 64.19593915530542
Iteration: 11, Func. Count: 141, Neg. LLF: 64.19539597580635
Iteration: 12, Func. Count: 153, Neg. LLF: 64.19535895381213
Iteration: 13, Func. Count: 164, Neg. LLF: 64.19535911512502
Optimization terminated successfully (Exit mode 0)
Current function value: 64.19535895381213
Iterations: 13
Function evaluations: 164
Gradient evaluations: 13
Iteration: 1, Func. Count: 14, Neg. LLF: 4158312.708810901
Iteration: 2, Func. Count: 28, Neg. LLF: 113.15355169835617
Iteration: 3, Func. Count: 43, Neg. LLF: 507.3147905396006
Iteration: 4, Func. Count: 57, Neg. LLF: 1230238.853810994
Iteration: 5, Func. Count: 71, Neg. LLF: 69.55600236967113
Iteration: 6, Func. Count: 85, Neg. LLF: 64.4850203200963
Iteration: 7, Func. Count: 98, Neg. LLF: 64.37520047044364
Iteration: 8, Func. Count: 111, Neg. LLF: 65.24354551891797
Iteration: 9, Func. Count: 125, Neg. LLF: 64.21940458836903
Iteration: 10, Func. Count: 138, Neg. LLF: 64.22911377177942
Iteration: 11, Func. Count: 152, Neg. LLF: 64.19593067068651
Iteration: 12, Func. Count: 165, Neg. LLF: 64.1954325045237
Iteration: 13, Func. Count: 178, Neg. LLF: 64.19538454401597
Iteration: 14, Func. Count: 191, Neg. LLF: 64.19536335546033
Iteration: 15, Func. Count: 204, Neg. LLF: 64.19535874366267
Iteration: 16, Func. Count: 217, Neg. LLF: 64.19535798733607
Optimization terminated successfully (Exit mode 0)
Current function value: 64.19535798733607
Iterations: 16
Function evaluations: 217
Gradient evaluations: 16
Iteration: 1, Func. Count: 15, Neg. LLF: 5689777.511946648
Iteration: 2, Func. Count: 30, Neg. LLF: 114.7034905463428
Iteration: 3, Func. Count: 46, Neg. LLF: 2257737.0890982826
Iteration: 4, Func. Count: 61, Neg. LLF: 1240334.298125934
Iteration: 5, Func. Count: 76, Neg. LLF: 69.64021242460737
Iteration: 6, Func. Count: 91, Neg. LLF: 66.44081919538523
Iteration: 7, Func. Count: 106, Neg. LLF: 63.072004883928706
Iteration: 8, Func. Count: 120, Neg. LLF: 63.199152831447954
Iteration: 9, Func. Count: 135, Neg. LLF: 110.27040561615912
Iteration: 10, Func. Count: 152, Neg. LLF: 62.71363386510787
Iteration: 11, Func. Count: 166, Neg. LLF: 62.64183878408409
Iteration: 12, Func. Count: 180, Neg. LLF: 62.63388783217871
Iteration: 13, Func. Count: 194, Neg. LLF: 62.63336983423646
Iteration: 14, Func. Count: 208, Neg. LLF: 62.633225811822285
Iteration: 15, Func. Count: 222, Neg. LLF: 62.633197951938726
Iteration: 16, Func. Count: 236, Neg. LLF: 62.63319705703078
Optimization terminated successfully (Exit mode 0)
Current function value: 62.63319705703078
Iterations: 16
Function evaluations: 236
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 120.28967352205845
Iteration: 2, Func. Count: 27, Neg. LLF: 126.60697059661123
Iteration: 3, Func. Count: 40, Neg. LLF: 1250377.5449678584
Iteration: 4, Func. Count: 52, Neg. LLF: 2934283.2080194326
Iteration: 5, Func. Count: 64, Neg. LLF: 66.32198670415625
Iteration: 6, Func. Count: 76, Neg. LLF: 65.09006146643256
Iteration: 7, Func. Count: 87, Neg. LLF: 64.50767665778092
Iteration: 8, Func. Count: 98, Neg. LLF: 65.01756735027267
Iteration: 9, Func. Count: 110, Neg. LLF: 68.54806313225721
Iteration: 10, Func. Count: 122, Neg. LLF: 64.3398678333549
Iteration: 11, Func. Count: 134, Neg. LLF: 64.20172717840353
Iteration: 12, Func. Count: 145, Neg. LLF: 64.19668980074427
Iteration: 13, Func. Count: 156, Neg. LLF: 64.1954004541952
Iteration: 14, Func. Count: 167, Neg. LLF: 64.19536949289004
Iteration: 15, Func. Count: 178, Neg. LLF: 64.19536175514293
Iteration: 16, Func. Count: 189, Neg. LLF: 64.19535795586616
Iteration: 17, Func. Count: 199, Neg. LLF: 64.19535807946663
Optimization terminated successfully (Exit mode 0)
Current function value: 64.19535795586616
Iterations: 17
Function evaluations: 199
Gradient evaluations: 17
Iteration: 1, Func. Count: 13, Neg. LLF: 4430639.054830341
Iteration: 2, Func. Count: 26, Neg. LLF: 109.70335203248065
Iteration: 3, Func. Count: 40, Neg. LLF: 69.50274472910168
Iteration: 4, Func. Count: 53, Neg. LLF: 177217.52154646773
Iteration: 5, Func. Count: 66, Neg. LLF: 65.73033214610575
Iteration: 6, Func. Count: 78, Neg. LLF: 1137452.119712427
Iteration: 7, Func. Count: 91, Neg. LLF: 67.78928139520607
Iteration: 8, Func. Count: 105, Neg. LLF: 64.46126611891907
Iteration: 9, Func. Count: 117, Neg. LLF: 69.82700396818866
Iteration: 10, Func. Count: 130, Neg. LLF: 64.48434608301945
Iteration: 11, Func. Count: 143, Neg. LLF: 64.23742122428598
Iteration: 12, Func. Count: 155, Neg. LLF: 64.19995566632132
Iteration: 13, Func. Count: 167, Neg. LLF: 64.19651157661332
Iteration: 14, Func. Count: 179, Neg. LLF: 64.19544456356324
Iteration: 15, Func. Count: 191, Neg. LLF: 64.19537260763958
Iteration: 16, Func. Count: 203, Neg. LLF: 64.19536014344582
Iteration: 17, Func. Count: 215, Neg. LLF: 64.19535862861514
Iteration: 18, Func. Count: 227, Neg. LLF: 64.19535794691564
Optimization terminated successfully (Exit mode 0)
Current function value: 64.19535794691564
Iterations: 18
Function evaluations: 227
Gradient evaluations: 18
Iteration: 1, Func. Count: 14, Neg. LLF: 4091331.3332072953
Iteration: 2, Func. Count: 28, Neg. LLF: 112.46209791715081
Iteration: 3, Func. Count: 43, Neg. LLF: 2251189.125012759
Iteration: 4, Func. Count: 57, Neg. LLF: 1215858.9977067779
Iteration: 5, Func. Count: 71, Neg. LLF: 70.69270982954473
Iteration: 6, Func. Count: 85, Neg. LLF: 64.4620267937951
Iteration: 7, Func. Count: 98, Neg. LLF: 64.23395949528911
Iteration: 8, Func. Count: 111, Neg. LLF: 64.43240132155503
Iteration: 9, Func. Count: 125, Neg. LLF: 64.48091578987918
Iteration: 10, Func. Count: 139, Neg. LLF: 64.1957696494225
Iteration: 11, Func. Count: 152, Neg. LLF: 64.19537402458786
Iteration: 12, Func. Count: 165, Neg. LLF: 64.19535907887877
Iteration: 13, Func. Count: 177, Neg. LLF: 64.1953592402211
Optimization terminated successfully (Exit mode 0)
Current function value: 64.19535907887877
Iterations: 13
Function evaluations: 177
Gradient evaluations: 13
Iteration: 1, Func. Count: 15, Neg. LLF: 4152112.954594875
Iteration: 2, Func. Count: 30, Neg. LLF: 113.32130480110759
Iteration: 3, Func. Count: 46, Neg. LLF: 2303182.7128399787
Iteration: 4, Func. Count: 61, Neg. LLF: 1226200.3617587558
Iteration: 5, Func. Count: 76, Neg. LLF: 69.44364434395665
Iteration: 6, Func. Count: 91, Neg. LLF: 64.46394814400765
Iteration: 7, Func. Count: 105, Neg. LLF: 64.56862092911136
Iteration: 8, Func. Count: 120, Neg. LLF: 64.89473821066676
Iteration: 9, Func. Count: 135, Neg. LLF: 64.20328228011304
Iteration: 10, Func. Count: 149, Neg. LLF: 64.20532663354109
Iteration: 11, Func. Count: 164, Neg. LLF: 64.19586772459314
Iteration: 12, Func. Count: 178, Neg. LLF: 64.19543615632868
Iteration: 13, Func. Count: 192, Neg. LLF: 64.19538342373065
Iteration: 14, Func. Count: 206, Neg. LLF: 64.1953627188792
Iteration: 15, Func. Count: 220, Neg. LLF: 64.1953588163532
Iteration: 16, Func. Count: 234, Neg. LLF: 64.19535798110662
Optimization terminated successfully (Exit mode 0)
Current function value: 64.19535798110662
Iterations: 16
Function evaluations: 234
Gradient evaluations: 16
Iteration: 1, Func. Count: 16, Neg. LLF: 5677988.8140470525
Iteration: 2, Func. Count: 32, Neg. LLF: 114.91040545311064
Iteration: 3, Func. Count: 49, Neg. LLF: 2263840.4073397396
Iteration: 4, Func. Count: 65, Neg. LLF: 1242418.255590358
Iteration: 5, Func. Count: 81, Neg. LLF: 69.48179350200233
Iteration: 6, Func. Count: 97, Neg. LLF: 66.02789297247575
Iteration: 7, Func. Count: 113, Neg. LLF: 63.10525319547774
Iteration: 8, Func. Count: 128, Neg. LLF: 63.30904531907414
Iteration: 9, Func. Count: 144, Neg. LLF: 70.22242418292107
Iteration: 10, Func. Count: 162, Neg. LLF: 62.66635262184614
Iteration: 11, Func. Count: 177, Neg. LLF: 62.63883425039565
Iteration: 12, Func. Count: 192, Neg. LLF: 62.63448427435095
Iteration: 13, Func. Count: 207, Neg. LLF: 62.633570554331705
Iteration: 14, Func. Count: 222, Neg. LLF: 62.63329269398082
Iteration: 15, Func. Count: 237, Neg. LLF: 62.633199298662255
Iteration: 16, Func. Count: 252, Neg. LLF: 62.63319695584218
Iteration: 17, Func. Count: 266, Neg. LLF: 62.63319685265374
Optimization terminated successfully (Exit mode 0)
Current function value: 62.63319695584218
Iterations: 18
Function evaluations: 266
Gradient evaluations: 17
Iteration: 1, Func. Count: 7, Neg. LLF: 158.80343939900683
Iteration: 2, Func. Count: 17, Neg. LLF: 308.58576609303447
Iteration: 3, Func. Count: 25, Neg. LLF: 5880707.090112104
Iteration: 4, Func. Count: 32, Neg. LLF: 69.37614808593555
Iteration: 5, Func. Count: 39, Neg. LLF: 65.80786246421043
Iteration: 6, Func. Count: 45, Neg. LLF: 65.77047262495414
Iteration: 7, Func. Count: 51, Neg. LLF: 65.75430221449533
Iteration: 8, Func. Count: 57, Neg. LLF: 65.74069473472349
Iteration: 9, Func. Count: 63, Neg. LLF: 65.73898053456585
Iteration: 10, Func. Count: 69, Neg. LLF: 65.73856810132644
Iteration: 11, Func. Count: 75, Neg. LLF: 65.73856177651304
Iteration: 12, Func. Count: 80, Neg. LLF: 65.73856177651876
Optimization terminated successfully (Exit mode 0)
Current function value: 65.73856177651304
Iterations: 12
Function evaluations: 80
Gradient evaluations: 12
Iteration: 1, Func. Count: 5, Neg. LLF: 105.0779664217286
Iteration: 2, Func. Count: 12, Neg. LLF: 97.0672829925669
Iteration: 3, Func. Count: 18, Neg. LLF: 70.27526400384637
Iteration: 4, Func. Count: 22, Neg. LLF: 70.55040947124829
Iteration: 5, Func. Count: 27, Neg. LLF: 69.11406186897304
Iteration: 6, Func. Count: 32, Neg. LLF: 69.0196852385682
Iteration: 7, Func. Count: 36, Neg. LLF: 69.01966752499926
Iteration: 8, Func. Count: 40, Neg. LLF: 69.01966689569204
Optimization terminated successfully (Exit mode 0)
Current function value: 69.01966689569204
Iterations: 8
Function evaluations: 40
Gradient evaluations: 8
Iteration: 1, Func. Count: 6, Neg. LLF: 65448869.94031575
Iteration: 2, Func. Count: 13, Neg. LLF: 112.59121305958051
Iteration: 3, Func. Count: 19, Neg. LLF: 73.1292011851241
Iteration: 4, Func. Count: 25, Neg. LLF: 71.6647953822286
Iteration: 5, Func. Count: 31, Neg. LLF: 70.95706299184727
Iteration: 6, Func. Count: 37, Neg. LLF: 70.59572540368244
Iteration: 7, Func. Count: 43, Neg. LLF: 69.93364021466446
Iteration: 8, Func. Count: 49, Neg. LLF: 69.45655902796989
Iteration: 9, Func. Count: 55, Neg. LLF: 67.60279272159313
Iteration: 10, Func. Count: 60, Neg. LLF: 71.5495850674403
Iteration: 11, Func. Count: 66, Neg. LLF: 90.07749084783494
Iteration: 12, Func. Count: 74, Neg. LLF: 67.50850701264568
Iteration: 13, Func. Count: 79, Neg. LLF: 67.45066821397698
Iteration: 14, Func. Count: 84, Neg. LLF: 67.4092480771008
Iteration: 15, Func. Count: 89, Neg. LLF: 67.34435892551764
Iteration: 16, Func. Count: 94, Neg. LLF: 67.33777594142175
Iteration: 17, Func. Count: 99, Neg. LLF: 67.33773357167242
Iteration: 18, Func. Count: 104, Neg. LLF: 67.33773002051579
Iteration: 19, Func. Count: 108, Neg. LLF: 67.33773002049817
Optimization terminated successfully (Exit mode 0)
Current function value: 67.33773002051579
Iterations: 19
Function evaluations: 108
Gradient evaluations: 19
Iteration: 1, Func. Count: 7, Neg. LLF: 23941564.843228288
Iteration: 2, Func. Count: 15, Neg. LLF: 91.49541664664521
Iteration: 3, Func. Count: 22, Neg. LLF: 69.05818172160902
Iteration: 4, Func. Count: 29, Neg. LLF: 67.59846416325661
Iteration: 5, Func. Count: 35, Neg. LLF: 67.51042200970615
Iteration: 6, Func. Count: 42, Neg. LLF: 70.3107878450459
Iteration: 7, Func. Count: 51, Neg. LLF: 67.57484263661611
Iteration: 8, Func. Count: 58, Neg. LLF: 67.35899650237866
Iteration: 9, Func. Count: 64, Neg. LLF: 67.35590076588193
Iteration: 10, Func. Count: 70, Neg. LLF: 67.35565890834327
Iteration: 11, Func. Count: 76, Neg. LLF: 67.35539267746505
Iteration: 12, Func. Count: 82, Neg. LLF: 67.35485938840257
Iteration: 13, Func. Count: 88, Neg. LLF: 67.35338907114377
Iteration: 14, Func. Count: 94, Neg. LLF: 67.34542316153252
Iteration: 15, Func. Count: 100, Neg. LLF: 67.33812366534069
Iteration: 16, Func. Count: 106, Neg. LLF: 67.33785838081586
Iteration: 17, Func. Count: 112, Neg. LLF: 67.33779145855519
Iteration: 18, Func. Count: 118, Neg. LLF: 67.33775125881938
Iteration: 19, Func. Count: 124, Neg. LLF: 67.33773099113827
Iteration: 20, Func. Count: 130, Neg. LLF: 67.33773003195424
Optimization terminated successfully (Exit mode 0)
Current function value: 67.33773003195424
Iterations: 20
Function evaluations: 130
Gradient evaluations: 20
Iteration: 1, Func. Count: 8, Neg. LLF: 24539724.535133887
Iteration: 2, Func. Count: 17, Neg. LLF: 118.18432971969602
Iteration: 3, Func. Count: 26, Neg. LLF: 68.22335497990038
Iteration: 4, Func. Count: 34, Neg. LLF: 67.41603481187701
Iteration: 5, Func. Count: 41, Neg. LLF: 67.47811799605665
Iteration: 6, Func. Count: 49, Neg. LLF: 67.37225262570773
Iteration: 7, Func. Count: 56, Neg. LLF: 67.36605049968894
Iteration: 8, Func. Count: 63, Neg. LLF: 67.36440518649027
Iteration: 9, Func. Count: 70, Neg. LLF: 67.3632029421315
Iteration: 10, Func. Count: 77, Neg. LLF: 67.36309675020048
Iteration: 11, Func. Count: 84, Neg. LLF: 67.36308897372969
Iteration: 12, Func. Count: 90, Neg. LLF: 67.36308897412266
Optimization terminated successfully (Exit mode 0)
Current function value: 67.36308897372969
Iterations: 12
Function evaluations: 90
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 24744404.39918068
Iteration: 2, Func. Count: 19, Neg. LLF: 155.5148974329906
Iteration: 3, Func. Count: 29, Neg. LLF: 67.74645829583723
Iteration: 4, Func. Count: 37, Neg. LLF: 67.38985866740624
Iteration: 5, Func. Count: 45, Neg. LLF: 67.35486160579423
Iteration: 6, Func. Count: 53, Neg. LLF: 67.33282348420113
Iteration: 7, Func. Count: 61, Neg. LLF: 67.32787724885985
Iteration: 8, Func. Count: 69, Neg. LLF: 67.32530407716575
Iteration: 9, Func. Count: 77, Neg. LLF: 67.32518362486687
Iteration: 10, Func. Count: 85, Neg. LLF: 67.32516575168383
Iteration: 11, Func. Count: 93, Neg. LLF: 67.32516109080322
Iteration: 12, Func. Count: 101, Neg. LLF: 67.32515841769576
Iteration: 13, Func. Count: 108, Neg. LLF: 67.32515841765006
Optimization terminated successfully (Exit mode 0)
Current function value: 67.32515841769576
Iterations: 13
Function evaluations: 108
Gradient evaluations: 13
Iteration: 1, Func. Count: 6, Neg. LLF: 113.80600508881943
Iteration: 2, Func. Count: 15, Neg. LLF: 878.4208268358303
Iteration: 3, Func. Count: 22, Neg. LLF: 4871063.881752334
Iteration: 4, Func. Count: 28, Neg. LLF: 67.3676346218668
Iteration: 5, Func. Count: 33, Neg. LLF: 67.36665567180634
Iteration: 6, Func. Count: 38, Neg. LLF: 67.36656981017227
Iteration: 7, Func. Count: 43, Neg. LLF: 67.36656667822197
Iteration: 8, Func. Count: 47, Neg. LLF: 67.36656667828308
Optimization terminated successfully (Exit mode 0)
Current function value: 67.36656667822197
Iterations: 8
Function evaluations: 47
Gradient evaluations: 8
Iteration: 1, Func. Count: 7, Neg. LLF: 821967796.7197506
Iteration: 2, Func. Count: 15, Neg. LLF: 1503757471.782085
Iteration: 3, Func. Count: 24, Neg. LLF: 69.2559228696294
Iteration: 4, Func. Count: 31, Neg. LLF: 67.58557294713094
Iteration: 5, Func. Count: 37, Neg. LLF: 67.55009207994898
Iteration: 6, Func. Count: 44, Neg. LLF: 67.35469804814444
Iteration: 7, Func. Count: 50, Neg. LLF: 67.3447640793741
Iteration: 8, Func. Count: 56, Neg. LLF: 67.34814404414628
Iteration: 9, Func. Count: 63, Neg. LLF: 67.33778067588256
Iteration: 10, Func. Count: 69, Neg. LLF: 67.33773063865883
Iteration: 11, Func. Count: 75, Neg. LLF: 67.33773002038544
Optimization terminated successfully (Exit mode 0)
Current function value: 67.33773002038544
Iterations: 11
Function evaluations: 75
Gradient evaluations: 11
Iteration: 1, Func. Count: 8, Neg. LLF: 201741123.56576848
Iteration: 2, Func. Count: 17, Neg. LLF: 2620102.419553646
Iteration: 3, Func. Count: 26, Neg. LLF: 164.4133564484569
Iteration: 4, Func. Count: 35, Neg. LLF: 67.51718987820108
Iteration: 5, Func. Count: 42, Neg. LLF: 67.40086452782987
Iteration: 6, Func. Count: 50, Neg. LLF: 67.19673899629223
Iteration: 7, Func. Count: 57, Neg. LLF: 67.19144411648857
Iteration: 8, Func. Count: 65, Neg. LLF: 67.38849732638732
Iteration: 9, Func. Count: 73, Neg. LLF: 67.07478572267372
Iteration: 10, Func. Count: 80, Neg. LLF: 67.06942094095052
Iteration: 11, Func. Count: 87, Neg. LLF: 67.06774622113258
Iteration: 12, Func. Count: 94, Neg. LLF: 67.0675349453867
Iteration: 13, Func. Count: 101, Neg. LLF: 67.06751707625565
Iteration: 14, Func. Count: 108, Neg. LLF: 67.06750522404458
Iteration: 15, Func. Count: 115, Neg. LLF: 67.06750400955107
Iteration: 16, Func. Count: 121, Neg. LLF: 67.06750400945768
Optimization terminated successfully (Exit mode 0)
Current function value: 67.06750400955107
Iterations: 16
Function evaluations: 121
Gradient evaluations: 16
Iteration: 1, Func. Count: 9, Neg. LLF: 240319527.0516336
Iteration: 2, Func. Count: 19, Neg. LLF: 429130766.90562356
Iteration: 3, Func. Count: 29, Neg. LLF: 149.4321247862879
Iteration: 4, Func. Count: 38, Neg. LLF: 64.9880150408399
Iteration: 5, Func. Count: 46, Neg. LLF: 66.78508458354615
Iteration: 6, Func. Count: 57, Neg. LLF: 64.73997123161962
Iteration: 7, Func. Count: 65, Neg. LLF: 64.69285613219256
Iteration: 8, Func. Count: 73, Neg. LLF: 64.68699032795028
Iteration: 9, Func. Count: 81, Neg. LLF: 64.68567421120207
Iteration: 10, Func. Count: 89, Neg. LLF: 64.68557424622036
Iteration: 11, Func. Count: 97, Neg. LLF: 64.6855662952444
Iteration: 12, Func. Count: 104, Neg. LLF: 64.68556629518106
Optimization terminated successfully (Exit mode 0)
Current function value: 64.6855662952444
Iterations: 12
Function evaluations: 104
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 525480427.125227
Iteration: 2, Func. Count: 21, Neg. LLF: 4870431.646922819
Iteration: 3, Func. Count: 32, Neg. LLF: 107.74882768650636
Iteration: 4, Func. Count: 42, Neg. LLF: 65.81073659976428
Iteration: 5, Func. Count: 51, Neg. LLF: 65.87115560426568
Iteration: 6, Func. Count: 61, Neg. LLF: 66.78437877564623
Iteration: 7, Func. Count: 72, Neg. LLF: 65.75862392081343
Iteration: 8, Func. Count: 82, Neg. LLF: 65.7226890627755
Iteration: 9, Func. Count: 91, Neg. LLF: 65.7223326601328
Iteration: 10, Func. Count: 100, Neg. LLF: 65.72232085776119
Iteration: 11, Func. Count: 108, Neg. LLF: 65.72232085750417
Optimization terminated successfully (Exit mode 0)
Current function value: 65.72232085776119
Iterations: 11
Function evaluations: 108
Gradient evaluations: 11
Iteration: 1, Func. Count: 7, Neg. LLF: 152.82572663696627
Iteration: 2, Func. Count: 17, Neg. LLF: 708.8567067899235
Iteration: 3, Func. Count: 25, Neg. LLF: 3979226.24299274
Iteration: 4, Func. Count: 32, Neg. LLF: 96.9463075648896
Iteration: 5, Func. Count: 39, Neg. LLF: 67.20191156177223
Iteration: 6, Func. Count: 45, Neg. LLF: 67.17932449158862
Iteration: 7, Func. Count: 51, Neg. LLF: 67.1651133230154
Iteration: 8, Func. Count: 57, Neg. LLF: 67.14833907858899
Iteration: 9, Func. Count: 63, Neg. LLF: 67.14727604446946
Iteration: 10, Func. Count: 69, Neg. LLF: 67.14723664940696
Iteration: 11, Func. Count: 74, Neg. LLF: 67.14723664946101
Optimization terminated successfully (Exit mode 0)
Current function value: 67.14723664940696
Iterations: 11
Function evaluations: 74
Gradient evaluations: 11
Iteration: 1, Func. Count: 8, Neg. LLF: 728445000.7601445
Iteration: 2, Func. Count: 17, Neg. LLF: 1600016853.8450947
Iteration: 3, Func. Count: 27, Neg. LLF: 68.8554575886944
Iteration: 4, Func. Count: 36, Neg. LLF: 68.38171395101557
Iteration: 5, Func. Count: 44, Neg. LLF: 67.89151983281072
Iteration: 6, Func. Count: 52, Neg. LLF: 68.31356402682147
Iteration: 7, Func. Count: 60, Neg. LLF: 67.97979676288683
Iteration: 8, Func. Count: 68, Neg. LLF: 68.07167840883561
Iteration: 9, Func. Count: 76, Neg. LLF: 67.55056333456348
Iteration: 10, Func. Count: 83, Neg. LLF: 67.45446057041032
Iteration: 11, Func. Count: 90, Neg. LLF: 67.41921926696642
Iteration: 12, Func. Count: 97, Neg. LLF: 67.35134169614707
Iteration: 13, Func. Count: 104, Neg. LLF: 67.34285829901563
Iteration: 14, Func. Count: 111, Neg. LLF: 67.33833413981024
Iteration: 15, Func. Count: 118, Neg. LLF: 67.33773662123915
Iteration: 16, Func. Count: 125, Neg. LLF: 67.33773027252441
Iteration: 17, Func. Count: 131, Neg. LLF: 67.33773027348502
Optimization terminated successfully (Exit mode 0)
Current function value: 67.33773027252441
Iterations: 17
Function evaluations: 131
Gradient evaluations: 17
Iteration: 1, Func. Count: 9, Neg. LLF: 161617070.3545385
Iteration: 2, Func. Count: 19, Neg. LLF: 5437472.970871001
Iteration: 3, Func. Count: 28, Neg. LLF: 332.4268169068946
Iteration: 4, Func. Count: 38, Neg. LLF: 67.15396865163505
Iteration: 5, Func. Count: 46, Neg. LLF: 67.8712669224633
Iteration: 6, Func. Count: 56, Neg. LLF: 67.33067293338745
Iteration: 7, Func. Count: 67, Neg. LLF: 67.07356369070743
Iteration: 8, Func. Count: 75, Neg. LLF: 67.06851513048919
Iteration: 9, Func. Count: 83, Neg. LLF: 67.06777248093948
Iteration: 10, Func. Count: 91, Neg. LLF: 67.06755287026701
Iteration: 11, Func. Count: 99, Neg. LLF: 67.06751061220811
Iteration: 12, Func. Count: 107, Neg. LLF: 67.0675040838371
Iteration: 13, Func. Count: 114, Neg. LLF: 67.06750408400123
Optimization terminated successfully (Exit mode 0)
Current function value: 67.0675040838371
Iterations: 13
Function evaluations: 114
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 186181532.92880806
Iteration: 2, Func. Count: 21, Neg. LLF: 2858635.4459415292
Iteration: 3, Func. Count: 32, Neg. LLF: 181.99861059187717
Iteration: 4, Func. Count: 42, Neg. LLF: 64.92407937045597
Iteration: 5, Func. Count: 51, Neg. LLF: 66.61877941878937
Iteration: 6, Func. Count: 63, Neg. LLF: 64.93898514202061
Iteration: 7, Func. Count: 73, Neg. LLF: 64.70618370071976
Iteration: 8, Func. Count: 82, Neg. LLF: 64.68803020125095
Iteration: 9, Func. Count: 91, Neg. LLF: 64.68615685712815
Iteration: 10, Func. Count: 100, Neg. LLF: 64.68562926983967
Iteration: 11, Func. Count: 109, Neg. LLF: 64.68557015368488
Iteration: 12, Func. Count: 118, Neg. LLF: 64.68556619273579
Iteration: 13, Func. Count: 126, Neg. LLF: 64.68556619272208
Optimization terminated successfully (Exit mode 0)
Current function value: 64.68556619273579
Iterations: 13
Function evaluations: 126
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 371705006.98644805
Iteration: 2, Func. Count: 23, Neg. LLF: 4932085.51660947
Iteration: 3, Func. Count: 34, Neg. LLF: 90.5117718215989
Iteration: 4, Func. Count: 46, Neg. LLF: 65.90371582671274
Iteration: 5, Func. Count: 56, Neg. LLF: 66.31514882928224
Iteration: 6, Func. Count: 68, Neg. LLF: 65.48854714756511
Iteration: 7, Func. Count: 78, Neg. LLF: 67.57522338791435
Iteration: 8, Func. Count: 90, Neg. LLF: 65.23664697873936
Iteration: 9, Func. Count: 100, Neg. LLF: 64.70888657807085
Iteration: 10, Func. Count: 110, Neg. LLF: 64.69562923872498
Iteration: 11, Func. Count: 120, Neg. LLF: 64.68628766896893
Iteration: 12, Func. Count: 130, Neg. LLF: 64.68562208661014
Iteration: 13, Func. Count: 140, Neg. LLF: 64.68556747124441
Iteration: 14, Func. Count: 150, Neg. LLF: 64.68556674450427
Optimization terminated successfully (Exit mode 0)
Current function value: 64.68556674450427
Iterations: 14
Function evaluations: 150
Gradient evaluations: 14
Iteration: 1, Func. Count: 8, Neg. LLF: 153.5789917584897
Iteration: 2, Func. Count: 19, Neg. LLF: 729.3717312564728
Iteration: 3, Func. Count: 28, Neg. LLF: 4011725.2953575607
Iteration: 4, Func. Count: 36, Neg. LLF: 120.7416704604563
Iteration: 5, Func. Count: 45, Neg. LLF: 67.23225716836752
Iteration: 6, Func. Count: 52, Neg. LLF: 67.2018006918004
Iteration: 7, Func. Count: 59, Neg. LLF: 67.1686398066568
Iteration: 8, Func. Count: 66, Neg. LLF: 67.1502498916751
Iteration: 9, Func. Count: 73, Neg. LLF: 67.14742447885851
Iteration: 10, Func. Count: 80, Neg. LLF: 67.14723858901817
Iteration: 11, Func. Count: 87, Neg. LLF: 67.1472363024519
Iteration: 12, Func. Count: 93, Neg. LLF: 67.14723635702491
Optimization terminated successfully (Exit mode 0)
Current function value: 67.1472363024519
Iterations: 12
Function evaluations: 93
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 23445913.941728815
Iteration: 2, Func. Count: 19, Neg. LLF: 5396462.835576574
Iteration: 3, Func. Count: 28, Neg. LLF: 812.3751946308951
Iteration: 4, Func. Count: 38, Neg. LLF: 68.03268306258347
Iteration: 5, Func. Count: 46, Neg. LLF: 69.45197382789071
Iteration: 6, Func. Count: 55, Neg. LLF: 83.81522083937526
Iteration: 7, Func. Count: 65, Neg. LLF: 67.58185996211719
Iteration: 8, Func. Count: 73, Neg. LLF: 67.43411991365423
Iteration: 9, Func. Count: 81, Neg. LLF: 67.40592121592181
Iteration: 10, Func. Count: 89, Neg. LLF: 67.35914514064814
Iteration: 11, Func. Count: 97, Neg. LLF: 67.339695680145
Iteration: 12, Func. Count: 105, Neg. LLF: 67.3378259200115
Iteration: 13, Func. Count: 113, Neg. LLF: 67.33773049746748
Iteration: 14, Func. Count: 120, Neg. LLF: 67.33773049895598
Optimization terminated successfully (Exit mode 0)
Current function value: 67.33773049746748
Iterations: 14
Function evaluations: 120
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 80281617.57388161
Iteration: 2, Func. Count: 21, Neg. LLF: 5669000.965574136
Iteration: 3, Func. Count: 31, Neg. LLF: 742.7496024583663
Iteration: 4, Func. Count: 42, Neg. LLF: 67.2587991976701
Iteration: 5, Func. Count: 51, Neg. LLF: 67.53225672790856
Iteration: 6, Func. Count: 61, Neg. LLF: 67.19073522998853
Iteration: 7, Func. Count: 71, Neg. LLF: 67.31955948702169
Iteration: 8, Func. Count: 81, Neg. LLF: 67.0719958345707
Iteration: 9, Func. Count: 90, Neg. LLF: 67.07208252612934
Iteration: 10, Func. Count: 100, Neg. LLF: 67.06807019949056
Iteration: 11, Func. Count: 109, Neg. LLF: 67.06757177907804
Iteration: 12, Func. Count: 118, Neg. LLF: 67.06750441696717
Iteration: 13, Func. Count: 126, Neg. LLF: 67.06750441655363
Optimization terminated successfully (Exit mode 0)
Current function value: 67.06750441696717
Iterations: 13
Function evaluations: 126
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 194869623.49035743
Iteration: 2, Func. Count: 23, Neg. LLF: 5247652.327881184
Iteration: 3, Func. Count: 34, Neg. LLF: 330.98545474456324
Iteration: 4, Func. Count: 46, Neg. LLF: 64.94151057310775
Iteration: 5, Func. Count: 56, Neg. LLF: 66.67995266767174
Iteration: 6, Func. Count: 69, Neg. LLF: 64.63310233400897
Iteration: 7, Func. Count: 79, Neg. LLF: 64.60788624503724
Iteration: 8, Func. Count: 89, Neg. LLF: 64.60150345651707
Iteration: 9, Func. Count: 99, Neg. LLF: 64.59969364967984
Iteration: 10, Func. Count: 109, Neg. LLF: 64.59965379693433
Iteration: 11, Func. Count: 119, Neg. LLF: 64.59964422111577
Iteration: 12, Func. Count: 128, Neg. LLF: 64.59964421463573
Optimization terminated successfully (Exit mode 0)
Current function value: 64.59964422111577
Iterations: 12
Function evaluations: 128
Gradient evaluations: 12
Iteration: 1, Func. Count: 12, Neg. LLF: 381136388.3539708
Iteration: 2, Func. Count: 25, Neg. LLF: 6361159.988995319
Iteration: 3, Func. Count: 37, Neg. LLF: 66.54688966696276
Iteration: 4, Func. Count: 48, Neg. LLF: 66.38572769450121
Iteration: 5, Func. Count: 59, Neg. LLF: 65.88568483152702
Iteration: 6, Func. Count: 70, Neg. LLF: 120.18207283913684
Iteration: 7, Func. Count: 82, Neg. LLF: 65.68542081091897
Iteration: 8, Func. Count: 93, Neg. LLF: 75.44950174764875
Iteration: 9, Func. Count: 106, Neg. LLF: 65.6819961951753
Iteration: 10, Func. Count: 117, Neg. LLF: 65.68104636777302
Iteration: 11, Func. Count: 128, Neg. LLF: 65.6809508814025
Iteration: 12, Func. Count: 139, Neg. LLF: 65.68089535928137
Iteration: 13, Func. Count: 150, Neg. LLF: 65.68089297179708
Iteration: 14, Func. Count: 161, Neg. LLF: 65.68088612515618
Iteration: 15, Func. Count: 172, Neg. LLF: 65.68087920477593
Iteration: 16, Func. Count: 182, Neg. LLF: 65.68087920478972
Optimization terminated successfully (Exit mode 0)
Current function value: 65.68087920477593
Iterations: 16
Function evaluations: 182
Gradient evaluations: 16
Iteration: 1, Func. Count: 5, Neg. LLF: 170.71801403360223
Iteration: 2, Func. Count: 13, Neg. LLF: 415.0195459365067
Iteration: 3, Func. Count: 19, Neg. LLF: 69.20033323480337
Iteration: 4, Func. Count: 24, Neg. LLF: 68.43074436892003
Iteration: 5, Func. Count: 29, Neg. LLF: 68.34177632839757
Iteration: 6, Func. Count: 34, Neg. LLF: 68.33618601593366
Iteration: 7, Func. Count: 38, Neg. LLF: 68.33567139530055
Iteration: 8, Func. Count: 42, Neg. LLF: 68.33567061977998
Optimization terminated successfully (Exit mode 0)
Current function value: 68.33567061977998
Iterations: 8
Function evaluations: 42
Gradient evaluations: 8
Iteration: 1, Func. Count: 6, Neg. LLF: 953.3057415654665
Iteration: 2, Func. Count: 13, Neg. LLF: 172.05022335170707
Iteration: 3, Func. Count: 20, Neg. LLF: 69.48338079445281
Iteration: 4, Func. Count: 27, Neg. LLF: 75.48325084090825
Iteration: 5, Func. Count: 33, Neg. LLF: 67.94072974267722
Iteration: 6, Func. Count: 38, Neg. LLF: 67.94072749416088
Iteration: 7, Func. Count: 42, Neg. LLF: 67.94072749418103
Optimization terminated successfully (Exit mode 0)
Current function value: 67.94072749416088
Iterations: 7
Function evaluations: 42
Gradient evaluations: 7
Iteration: 1, Func. Count: 7, Neg. LLF: 61014927.78237321
Iteration: 2, Func. Count: 15, Neg. LLF: 102.048514891046
Iteration: 3, Func. Count: 23, Neg. LLF: 98.33608017251461
Iteration: 4, Func. Count: 31, Neg. LLF: 68.01858537307798
Iteration: 5, Func. Count: 37, Neg. LLF: 67.91319610871663
Iteration: 6, Func. Count: 43, Neg. LLF: 67.87126081728533
Iteration: 7, Func. Count: 49, Neg. LLF: 70.98449683373164
Iteration: 8, Func. Count: 56, Neg. LLF: 68.18639046800016
Iteration: 9, Func. Count: 63, Neg. LLF: 67.5740388299505
Iteration: 10, Func. Count: 69, Neg. LLF: 69.32277264457962
Iteration: 11, Func. Count: 76, Neg. LLF: 67.43116920519076
Iteration: 12, Func. Count: 83, Neg. LLF: 67.36167638492273
Iteration: 13, Func. Count: 89, Neg. LLF: 67.36059519091145
Iteration: 14, Func. Count: 95, Neg. LLF: 67.36030952908958
Iteration: 15, Func. Count: 101, Neg. LLF: 67.35934608615639
Iteration: 16, Func. Count: 107, Neg. LLF: 67.35646314365404
Iteration: 17, Func. Count: 113, Neg. LLF: 67.35217788895228
Iteration: 18, Func. Count: 119, Neg. LLF: 67.34293531130784
Iteration: 19, Func. Count: 125, Neg. LLF: 73.78121766096075
Iteration: 20, Func. Count: 134, Neg. LLF: 1024.1963647412747
Optimization terminated successfully (Exit mode 0)
Current function value: 67.3428870788019
Iterations: 21
Function evaluations: 139
Gradient evaluations: 20
Iteration: 1, Func. Count: 8, Neg. LLF: 72205079.51016678
Iteration: 2, Func. Count: 17, Neg. LLF: 87.33357169903276
Iteration: 3, Func. Count: 26, Neg. LLF: 76.86363881851395
Iteration: 4, Func. Count: 34, Neg. LLF: 70.77642850891122
Iteration: 5, Func. Count: 42, Neg. LLF: 70.46218913005707
Iteration: 6, Func. Count: 50, Neg. LLF: 70.2447607911117
Iteration: 7, Func. Count: 58, Neg. LLF: 68.89579306462011
Iteration: 8, Func. Count: 66, Neg. LLF: 67.68522053641912
Iteration: 9, Func. Count: 73, Neg. LLF: 68.17900888237358
Iteration: 10, Func. Count: 81, Neg. LLF: 67.56188751877586
Iteration: 11, Func. Count: 88, Neg. LLF: 67.96127523782027
Iteration: 12, Func. Count: 96, Neg. LLF: 67.36635324423588
Iteration: 13, Func. Count: 104, Neg. LLF: 67.42705348026531
Iteration: 14, Func. Count: 113, Neg. LLF: 67.36090792124082
Iteration: 15, Func. Count: 120, Neg. LLF: 67.36076931725518
Iteration: 16, Func. Count: 127, Neg. LLF: 67.36064378604843
Iteration: 17, Func. Count: 134, Neg. LLF: 67.36030271670093
Iteration: 18, Func. Count: 141, Neg. LLF: 67.36012721092399
Iteration: 19, Func. Count: 148, Neg. LLF: 67.36007622767195
Iteration: 20, Func. Count: 155, Neg. LLF: 67.36006741313679
Iteration: 21, Func. Count: 162, Neg. LLF: 67.36004998857653
Iteration: 22, Func. Count: 169, Neg. LLF: 67.36000649791694
Iteration: 23, Func. Count: 176, Neg. LLF: 67.35989358106302
Iteration: 24, Func. Count: 183, Neg. LLF: 67.35957819231368
Iteration: 25, Func. Count: 190, Neg. LLF: 67.35869271551418
Iteration: 26, Func. Count: 197, Neg. LLF: 67.35601123272312
Iteration: 27, Func. Count: 204, Neg. LLF: 67.35414784680974
Iteration: 28, Func. Count: 211, Neg. LLF: 67.34270786646947
Iteration: 29, Func. Count: 218, Neg. LLF: 25548618.74842584
Iteration: 30, Func. Count: 228, Neg. LLF: 72.58460467914512
Iteration: 31, Func. Count: 237, Neg. LLF: 67.33860029302383
Iteration: 32, Func. Count: 244, Neg. LLF: 68.3639210429609
Iteration: 33, Func. Count: 253, Neg. LLF: 67.33773262095472
Iteration: 34, Func. Count: 260, Neg. LLF: 67.33773002263455
Iteration: 35, Func. Count: 266, Neg. LLF: 67.33773002460592
Optimization terminated successfully (Exit mode 0)
Current function value: 67.33773002263455
Iterations: 36
Function evaluations: 266
Gradient evaluations: 35
Iteration: 1, Func. Count: 9, Neg. LLF: 69296273.44321196
Iteration: 2, Func. Count: 19, Neg. LLF: 70.34163952056201
Iteration: 3, Func. Count: 28, Neg. LLF: 118.64049588107277
Iteration: 4, Func. Count: 37, Neg. LLF: 72.25929410223051
Iteration: 5, Func. Count: 46, Neg. LLF: 69.6536129437925
Iteration: 6, Func. Count: 55, Neg. LLF: 68.97444088403688
Iteration: 7, Func. Count: 64, Neg. LLF: 67.94592976289385
Iteration: 8, Func. Count: 73, Neg. LLF: 68.12198291061473
Iteration: 9, Func. Count: 82, Neg. LLF: 67.46766326061274
Iteration: 10, Func. Count: 90, Neg. LLF: 67.42075017379405
Iteration: 11, Func. Count: 98, Neg. LLF: 67.46200620957573
Iteration: 12, Func. Count: 107, Neg. LLF: 73.28460144391408
Iteration: 13, Func. Count: 117, Neg. LLF: 67.3758390882299
Iteration: 14, Func. Count: 125, Neg. LLF: 67.36300642556294
Iteration: 15, Func. Count: 133, Neg. LLF: 67.36211943274334
Iteration: 16, Func. Count: 141, Neg. LLF: 67.36139531765144
Iteration: 17, Func. Count: 149, Neg. LLF: 67.35982450038159
Iteration: 18, Func. Count: 157, Neg. LLF: 67.35907908994095
Iteration: 19, Func. Count: 165, Neg. LLF: 67.35778953930793
Iteration: 20, Func. Count: 173, Neg. LLF: 67.35536451602782
Iteration: 21, Func. Count: 181, Neg. LLF: 67.34976751199645
Iteration: 22, Func. Count: 189, Neg. LLF: 67.33786399660254
Iteration: 23, Func. Count: 197, Neg. LLF: 67.3377562377646
Iteration: 24, Func. Count: 205, Neg. LLF: 67.35866595639467
Optimization terminated successfully (Exit mode 0)
Current function value: 67.33775623770565
Iterations: 24
Function evaluations: 210
Gradient evaluations: 24
Iteration: 1, Func. Count: 6, Neg. LLF: 229.35585073010793
Iteration: 2, Func. Count: 14, Neg. LLF: 190.2824860290895
Iteration: 3, Func. Count: 22, Neg. LLF: 69.08047755425127
Iteration: 4, Func. Count: 28, Neg. LLF: 69.62591730374992
Iteration: 5, Func. Count: 34, Neg. LLF: 67.59184397136835
Iteration: 6, Func. Count: 39, Neg. LLF: 67.58624526476389
Iteration: 7, Func. Count: 44, Neg. LLF: 67.5848796375498
Iteration: 8, Func. Count: 49, Neg. LLF: 67.58486762166895
Iteration: 9, Func. Count: 53, Neg. LLF: 67.58486754201289
Optimization terminated successfully (Exit mode 0)
Current function value: 67.58486762166895
Iterations: 9
Function evaluations: 53
Gradient evaluations: 9
Iteration: 1, Func. Count: 7, Neg. LLF: 55791738.98982582
Iteration: 2, Func. Count: 15, Neg. LLF: 76.95654313140925
Iteration: 3, Func. Count: 23, Neg. LLF: 155047.4228255872
Iteration: 4, Func. Count: 31, Neg. LLF: 67.793550848274
Iteration: 5, Func. Count: 37, Neg. LLF: 67.76950560803311
Iteration: 6, Func. Count: 43, Neg. LLF: 67.76489088657551
Iteration: 7, Func. Count: 49, Neg. LLF: 67.76316529142065
Iteration: 8, Func. Count: 55, Neg. LLF: 67.76289776176995
Iteration: 9, Func. Count: 61, Neg. LLF: 67.76287358771764
Iteration: 10, Func. Count: 66, Neg. LLF: 67.76287358771529
Optimization terminated successfully (Exit mode 0)
Current function value: 67.76287358771764
Iterations: 10
Function evaluations: 66
Gradient evaluations: 10
Iteration: 1, Func. Count: 8, Neg. LLF: 48901126.77973425
Iteration: 2, Func. Count: 17, Neg. LLF: 86.5326226061546
Iteration: 3, Func. Count: 26, Neg. LLF: 79.68566676748495
Iteration: 4, Func. Count: 35, Neg. LLF: 67.67055432949087
Iteration: 5, Func. Count: 42, Neg. LLF: 66.92304217067826
Iteration: 6, Func. Count: 49, Neg. LLF: 66.79753595292432
Iteration: 7, Func. Count: 56, Neg. LLF: 66.75935304602397
Iteration: 8, Func. Count: 63, Neg. LLF: 66.75607468318695
Iteration: 9, Func. Count: 70, Neg. LLF: 66.75292926060511
Iteration: 10, Func. Count: 77, Neg. LLF: 66.75041794393331
Iteration: 11, Func. Count: 84, Neg. LLF: 66.74944046354884
Iteration: 12, Func. Count: 91, Neg. LLF: 66.74921681912627
Iteration: 13, Func. Count: 98, Neg. LLF: 66.74921063601354
Iteration: 14, Func. Count: 104, Neg. LLF: 66.7492106359909
Optimization terminated successfully (Exit mode 0)
Current function value: 66.74921063601354
Iterations: 14
Function evaluations: 104
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 57995108.75967176
Iteration: 2, Func. Count: 19, Neg. LLF: 73.69442053557573
Iteration: 3, Func. Count: 29, Neg. LLF: 90.02359545119184
Iteration: 4, Func. Count: 39, Neg. LLF: 67.09814483635195
Iteration: 5, Func. Count: 47, Neg. LLF: 66.7604074567044
Iteration: 6, Func. Count: 55, Neg. LLF: 66.75547055069514
Iteration: 7, Func. Count: 63, Neg. LLF: 66.75476756241208
Iteration: 8, Func. Count: 71, Neg. LLF: 66.75372578404286
Iteration: 9, Func. Count: 79, Neg. LLF: 66.7534181783558
Iteration: 10, Func. Count: 87, Neg. LLF: 66.7389726868252
Iteration: 11, Func. Count: 95, Neg. LLF: 67.49443745142426
Iteration: 12, Func. Count: 104, Neg. LLF: 67.55252707191342
Iteration: 13, Func. Count: 113, Neg. LLF: 68.39324900426908
Iteration: 14, Func. Count: 122, Neg. LLF: 66.73953657126007
Iteration: 15, Func. Count: 131, Neg. LLF: 66.7085208940839
Iteration: 16, Func. Count: 140, Neg. LLF: 66.70587019798074
Iteration: 17, Func. Count: 148, Neg. LLF: 66.70575690881377
Iteration: 18, Func. Count: 156, Neg. LLF: 66.70575382592695
Iteration: 19, Func. Count: 164, Neg. LLF: 66.70575049924112
Iteration: 20, Func. Count: 171, Neg. LLF: 66.70575049926244
Optimization terminated successfully (Exit mode 0)
Current function value: 66.70575049924112
Iterations: 20
Function evaluations: 171
Gradient evaluations: 20
Iteration: 1, Func. Count: 10, Neg. LLF: 54428972.226364054
Iteration: 2, Func. Count: 21, Neg. LLF: 72.70542326324097
Iteration: 3, Func. Count: 32, Neg. LLF: 69.21706501835193
Iteration: 4, Func. Count: 42, Neg. LLF: 86.58755810062974
Iteration: 5, Func. Count: 52, Neg. LLF: 69.65395724310703
Iteration: 6, Func. Count: 62, Neg. LLF: 66.75961263303928
Iteration: 7, Func. Count: 71, Neg. LLF: 66.75059041949142
Iteration: 8, Func. Count: 80, Neg. LLF: 66.73205681748271
Iteration: 9, Func. Count: 89, Neg. LLF: 69.92927114499855
Iteration: 10, Func. Count: 99, Neg. LLF: 66.84435631327577
Iteration: 11, Func. Count: 109, Neg. LLF: 66.90901036052531
Iteration: 12, Func. Count: 119, Neg. LLF: 66.7087861082463
Iteration: 13, Func. Count: 128, Neg. LLF: 66.70605452031526
Iteration: 14, Func. Count: 137, Neg. LLF: 66.70585410448287
Iteration: 15, Func. Count: 146, Neg. LLF: 66.70577264002523
Iteration: 16, Func. Count: 155, Neg. LLF: 66.70575184075246
Iteration: 17, Func. Count: 164, Neg. LLF: 66.7057505060164
Iteration: 18, Func. Count: 172, Neg. LLF: 66.70575050777241
Optimization terminated successfully (Exit mode 0)
Current function value: 66.7057505060164
Iterations: 18
Function evaluations: 172
Gradient evaluations: 18
Iteration: 1, Func. Count: 7, Neg. LLF: 150.9337439835855
Iteration: 2, Func. Count: 17, Neg. LLF: 365.8610171854683
Iteration: 3, Func. Count: 25, Neg. LLF: 3059059.5271632415
Iteration: 4, Func. Count: 32, Neg. LLF: 69.93725196559603
Iteration: 5, Func. Count: 39, Neg. LLF: 65.2616943675401
Iteration: 6, Func. Count: 45, Neg. LLF: 65.68126371201964
Iteration: 7, Func. Count: 52, Neg. LLF: 65.16310422837844
Iteration: 8, Func. Count: 58, Neg. LLF: 65.1440970850134
Iteration: 9, Func. Count: 64, Neg. LLF: 65.1364821837584
Iteration: 10, Func. Count: 70, Neg. LLF: 65.13402477701497
Iteration: 11, Func. Count: 76, Neg. LLF: 65.13387166743
Iteration: 12, Func. Count: 82, Neg. LLF: 65.13386598801394
Iteration: 13, Func. Count: 87, Neg. LLF: 65.13386598803602
Optimization terminated successfully (Exit mode 0)
Current function value: 65.13386598801394
Iterations: 13
Function evaluations: 87
Gradient evaluations: 13
Iteration: 1, Func. Count: 8, Neg. LLF: 73.3906856276654
Iteration: 2, Func. Count: 16, Neg. LLF: 5102261.878093235
Iteration: 3, Func. Count: 24, Neg. LLF: 69.28579404703171
Iteration: 4, Func. Count: 32, Neg. LLF: 68.70163215336851
Iteration: 5, Func. Count: 40, Neg. LLF: 67.17185849081797
Iteration: 6, Func. Count: 48, Neg. LLF: 65.14504698494741
Iteration: 7, Func. Count: 55, Neg. LLF: 65.13821807669115
Iteration: 8, Func. Count: 62, Neg. LLF: 65.13504857244025
Iteration: 9, Func. Count: 69, Neg. LLF: 65.13390159158088
Iteration: 10, Func. Count: 76, Neg. LLF: 65.13386784499767
Iteration: 11, Func. Count: 83, Neg. LLF: 65.1338656916138
Iteration: 12, Func. Count: 89, Neg. LLF: 65.13386574573458
Optimization terminated successfully (Exit mode 0)
Current function value: 65.1338656916138
Iterations: 12
Function evaluations: 89
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 69.40789809026766
Iteration: 2, Func. Count: 18, Neg. LLF: 4992006.616087737
Iteration: 3, Func. Count: 27, Neg. LLF: 5038365.383465241
Iteration: 4, Func. Count: 36, Neg. LLF: 67.88785921376665
Iteration: 5, Func. Count: 45, Neg. LLF: 65.44759396293016
Iteration: 6, Func. Count: 53, Neg. LLF: 65.17989376544664
Iteration: 7, Func. Count: 61, Neg. LLF: 65.1667809936702
Iteration: 8, Func. Count: 69, Neg. LLF: 65.13726312269102
Iteration: 9, Func. Count: 77, Neg. LLF: 65.13409480978993
Iteration: 10, Func. Count: 85, Neg. LLF: 65.13386686666774
Iteration: 11, Func. Count: 93, Neg. LLF: 65.13386562028883
Iteration: 12, Func. Count: 100, Neg. LLF: 65.13386563753708
Optimization terminated successfully (Exit mode 0)
Current function value: 65.13386562028883
Iterations: 12
Function evaluations: 100
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 69.96152575883619
Iteration: 2, Func. Count: 20, Neg. LLF: 5287971.908393881
Iteration: 3, Func. Count: 30, Neg. LLF: 5154032.219759888
Iteration: 4, Func. Count: 40, Neg. LLF: 68.7486415927367
Iteration: 5, Func. Count: 50, Neg. LLF: 65.19149595002594
Iteration: 6, Func. Count: 59, Neg. LLF: 65.14377861084516
Iteration: 7, Func. Count: 68, Neg. LLF: 65.14328287603726
Iteration: 8, Func. Count: 78, Neg. LLF: 65.13403907941621
Iteration: 9, Func. Count: 87, Neg. LLF: 65.13387071795258
Iteration: 10, Func. Count: 96, Neg. LLF: 65.13386572441651
Iteration: 11, Func. Count: 104, Neg. LLF: 65.13386575745021
Optimization terminated successfully (Exit mode 0)
Current function value: 65.13386572441651
Iterations: 11
Function evaluations: 104
Gradient evaluations: 11
Iteration: 1, Func. Count: 11, Neg. LLF: 69.52315004460269
Iteration: 2, Func. Count: 22, Neg. LLF: 5461097.84419604
Iteration: 3, Func. Count: 33, Neg. LLF: 84.82696235172698
Iteration: 4, Func. Count: 44, Neg. LLF: 67.71848936082617
Iteration: 5, Func. Count: 55, Neg. LLF: 65.36940035984743
Iteration: 6, Func. Count: 65, Neg. LLF: 65.15434754593794
Iteration: 7, Func. Count: 75, Neg. LLF: 65.13683405620105
Iteration: 8, Func. Count: 85, Neg. LLF: 65.13405550576847
Iteration: 9, Func. Count: 95, Neg. LLF: 65.13386714251345
Iteration: 10, Func. Count: 105, Neg. LLF: 65.13386563163782
Iteration: 11, Func. Count: 114, Neg. LLF: 65.13386565947857
Optimization terminated successfully (Exit mode 0)
Current function value: 65.13386563163782
Iterations: 11
Function evaluations: 114
Gradient evaluations: 11
Iteration: 1, Func. Count: 8, Neg. LLF: 165.752349483526
Iteration: 2, Func. Count: 19, Neg. LLF: 381.2604663134421
Iteration: 3, Func. Count: 28, Neg. LLF: 4866905.105798653
Iteration: 4, Func. Count: 36, Neg. LLF: 74.82000119927275
Iteration: 5, Func. Count: 44, Neg. LLF: 65.33217827076378
Iteration: 6, Func. Count: 51, Neg. LLF: 65.25092231867481
Iteration: 7, Func. Count: 58, Neg. LLF: 65.16467490273656
Iteration: 8, Func. Count: 65, Neg. LLF: 65.14907422716148
Iteration: 9, Func. Count: 72, Neg. LLF: 65.1345696287275
Iteration: 10, Func. Count: 79, Neg. LLF: 65.13391201885213
Iteration: 11, Func. Count: 86, Neg. LLF: 65.13386638908615
Iteration: 12, Func. Count: 93, Neg. LLF: 65.13386566422389
Optimization terminated successfully (Exit mode 0)
Current function value: 65.13386566422389
Iterations: 12
Function evaluations: 93
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 97.1873610991692
Iteration: 2, Func. Count: 19, Neg. LLF: 5125755.979393072
Iteration: 3, Func. Count: 28, Neg. LLF: 2598073.2734256904
Iteration: 4, Func. Count: 37, Neg. LLF: 65.38470928024176
Iteration: 5, Func. Count: 45, Neg. LLF: 65.32596174704807
Iteration: 6, Func. Count: 53, Neg. LLF: 65.23795099910177
Iteration: 7, Func. Count: 61, Neg. LLF: 65.20168226241891
Iteration: 8, Func. Count: 69, Neg. LLF: 65.15010385723177
Iteration: 9, Func. Count: 77, Neg. LLF: 65.14742981774744
Iteration: 10, Func. Count: 85, Neg. LLF: 65.13838905439786
Iteration: 11, Func. Count: 93, Neg. LLF: 65.13528442292497
Iteration: 12, Func. Count: 101, Neg. LLF: 65.13396949629194
Iteration: 13, Func. Count: 109, Neg. LLF: 65.13386649885332
Iteration: 14, Func. Count: 117, Neg. LLF: 65.13386588076871
Optimization terminated successfully (Exit mode 0)
Current function value: 65.13386588076871
Iterations: 14
Function evaluations: 117
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 90.54522860725865
Iteration: 2, Func. Count: 21, Neg. LLF: 5722174.260166785
Iteration: 3, Func. Count: 31, Neg. LLF: 2652188.982834458
Iteration: 4, Func. Count: 41, Neg. LLF: 79.99820883253905
Iteration: 5, Func. Count: 51, Neg. LLF: 65.17777401280445
Iteration: 6, Func. Count: 60, Neg. LLF: 65.14492879069884
Iteration: 7, Func. Count: 69, Neg. LLF: 65.1385258127935
Iteration: 8, Func. Count: 78, Neg. LLF: 65.13585507101168
Iteration: 9, Func. Count: 87, Neg. LLF: 65.13418834977755
Iteration: 10, Func. Count: 96, Neg. LLF: 65.13388221968009
Iteration: 11, Func. Count: 105, Neg. LLF: 65.13386603031982
Iteration: 12, Func. Count: 113, Neg. LLF: 65.1338660475656
Optimization terminated successfully (Exit mode 0)
Current function value: 65.13386603031982
Iterations: 12
Function evaluations: 113
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 95.58612581041909
Iteration: 2, Func. Count: 23, Neg. LLF: 1298378.6600925238
Iteration: 3, Func. Count: 34, Neg. LLF: 2137089.158492449
Iteration: 4, Func. Count: 45, Neg. LLF: 101.5887943891872
Iteration: 5, Func. Count: 56, Neg. LLF: 65.19796317388251
Iteration: 6, Func. Count: 66, Neg. LLF: 65.18152843897968
Iteration: 7, Func. Count: 77, Neg. LLF: 65.14490850672985
Iteration: 8, Func. Count: 87, Neg. LLF: 65.1371300770304
Iteration: 9, Func. Count: 97, Neg. LLF: 65.13529933913578
Iteration: 10, Func. Count: 107, Neg. LLF: 65.13390856621038
Iteration: 11, Func. Count: 117, Neg. LLF: 65.1338675291224
Iteration: 12, Func. Count: 127, Neg. LLF: 65.13386565012898
Iteration: 13, Func. Count: 136, Neg. LLF: 65.13386568313712
Optimization terminated successfully (Exit mode 0)
Current function value: 65.13386565012898
Iterations: 13
Function evaluations: 136
Gradient evaluations: 13
Iteration: 1, Func. Count: 12, Neg. LLF: 94.78098868518782
Iteration: 2, Func. Count: 25, Neg. LLF: 475782.8101353057
Iteration: 3, Func. Count: 37, Neg. LLF: 1915045.9302568408
Iteration: 4, Func. Count: 49, Neg. LLF: 5478383.48585884
Iteration: 5, Func. Count: 61, Neg. LLF: 65.23580484257303
Iteration: 6, Func. Count: 72, Neg. LLF: 65.16158851537163
Iteration: 7, Func. Count: 83, Neg. LLF: 65.14477334991672
Iteration: 8, Func. Count: 94, Neg. LLF: 65.13737483531679
Iteration: 9, Func. Count: 105, Neg. LLF: 65.13538543482008
Iteration: 10, Func. Count: 116, Neg. LLF: 65.13387695980843
Iteration: 11, Func. Count: 127, Neg. LLF: 65.13386569320112
Iteration: 12, Func. Count: 137, Neg. LLF: 65.1338657210124
Optimization terminated successfully (Exit mode 0)
Current function value: 65.13386569320112
Iterations: 12
Function evaluations: 137
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 172.32318730388474
Iteration: 2, Func. Count: 21, Neg. LLF: 374.5498958250584
Iteration: 3, Func. Count: 31, Neg. LLF: 4866315.8041186435
Iteration: 4, Func. Count: 40, Neg. LLF: 76.95866155116971
Iteration: 5, Func. Count: 49, Neg. LLF: 65.39367806667342
Iteration: 6, Func. Count: 57, Neg. LLF: 65.24515014592252
Iteration: 7, Func. Count: 65, Neg. LLF: 65.17104758676564
Iteration: 8, Func. Count: 73, Neg. LLF: 65.1544065618312
Iteration: 9, Func. Count: 81, Neg. LLF: 65.14169917515001
Iteration: 10, Func. Count: 89, Neg. LLF: 65.13544367720978
Iteration: 11, Func. Count: 97, Neg. LLF: 65.1340317818251
Iteration: 12, Func. Count: 105, Neg. LLF: 65.13388200892777
Iteration: 13, Func. Count: 113, Neg. LLF: 65.13386603544053
Iteration: 14, Func. Count: 120, Neg. LLF: 65.13386610404417
Optimization terminated successfully (Exit mode 0)
Current function value: 65.13386603544053
Iterations: 14
Function evaluations: 120
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 98.7513704889674
Iteration: 2, Func. Count: 21, Neg. LLF: 3266197.676089687
Iteration: 3, Func. Count: 31, Neg. LLF: 2015027.199335607
Iteration: 4, Func. Count: 41, Neg. LLF: 77.53136017921776
Iteration: 5, Func. Count: 51, Neg. LLF: 65.23311732741158
Iteration: 6, Func. Count: 60, Neg. LLF: 65.16332500240004
Iteration: 7, Func. Count: 69, Neg. LLF: 65.1484429470605
Iteration: 8, Func. Count: 78, Neg. LLF: 65.1353184714377
Iteration: 9, Func. Count: 87, Neg. LLF: 65.13502060004703
Iteration: 10, Func. Count: 96, Neg. LLF: 65.1345122968731
Iteration: 11, Func. Count: 105, Neg. LLF: 65.13408003521629
Iteration: 12, Func. Count: 114, Neg. LLF: 65.1338903464702
Iteration: 13, Func. Count: 123, Neg. LLF: 65.13386679215246
Iteration: 14, Func. Count: 132, Neg. LLF: 65.13386560653362
Iteration: 15, Func. Count: 140, Neg. LLF: 65.13386566065886
Optimization terminated successfully (Exit mode 0)
Current function value: 65.13386560653362
Iterations: 15
Function evaluations: 140
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 115.80140388349473
Iteration: 2, Func. Count: 23, Neg. LLF: 443272.521767604
Iteration: 3, Func. Count: 34, Neg. LLF: 2319161.693275786
Iteration: 4, Func. Count: 45, Neg. LLF: 72.51518155096736
Iteration: 5, Func. Count: 57, Neg. LLF: 65.23252495254158
Iteration: 6, Func. Count: 67, Neg. LLF: 65.17965617368563
Iteration: 7, Func. Count: 77, Neg. LLF: 65.15437047362788
Iteration: 8, Func. Count: 87, Neg. LLF: 65.13590347843875
Iteration: 9, Func. Count: 97, Neg. LLF: 65.13407595134156
Iteration: 10, Func. Count: 107, Neg. LLF: 65.1338768021613
Iteration: 11, Func. Count: 117, Neg. LLF: 65.13386619268954
Iteration: 12, Func. Count: 127, Neg. LLF: 65.13386563060745
Optimization terminated successfully (Exit mode 0)
Current function value: 65.13386563060745
Iterations: 12
Function evaluations: 127
Gradient evaluations: 12
Iteration: 1, Func. Count: 12, Neg. LLF: 98.53896998597838
Iteration: 2, Func. Count: 25, Neg. LLF: 527432.0091568959
Iteration: 3, Func. Count: 37, Neg. LLF: 1878967.0162396634
Iteration: 4, Func. Count: 49, Neg. LLF: 591.7503434051403
Iteration: 5, Func. Count: 61, Neg. LLF: 65.24791610629681
Iteration: 6, Func. Count: 72, Neg. LLF: 65.17424755189664
Iteration: 7, Func. Count: 83, Neg. LLF: 65.15026546991605
Iteration: 8, Func. Count: 94, Neg. LLF: 65.1381821633679
Iteration: 9, Func. Count: 105, Neg. LLF: 65.13595118621022
Iteration: 10, Func. Count: 116, Neg. LLF: 65.13418130062259
Iteration: 11, Func. Count: 127, Neg. LLF: 65.13388813300324
Iteration: 12, Func. Count: 138, Neg. LLF: 65.13386598242225
Iteration: 13, Func. Count: 148, Neg. LLF: 65.13386601540091
Optimization terminated successfully (Exit mode 0)
Current function value: 65.13386598242225
Iterations: 13
Function evaluations: 148
Gradient evaluations: 13
Iteration: 1, Func. Count: 13, Neg. LLF: 97.79457105795936
Iteration: 2, Func. Count: 27, Neg. LLF: 821029.5140347263
Iteration: 3, Func. Count: 40, Neg. LLF: 3738655.7267808807
Iteration: 4, Func. Count: 53, Neg. LLF: 3907802.9499817425
Iteration: 5, Func. Count: 66, Neg. LLF: 65.59344026616112
Iteration: 6, Func. Count: 78, Neg. LLF: 65.19584370373177
Iteration: 7, Func. Count: 90, Neg. LLF: 65.16274584331873
Iteration: 8, Func. Count: 102, Neg. LLF: 65.1510072902242
Iteration: 9, Func. Count: 114, Neg. LLF: 65.13660181985416
Iteration: 10, Func. Count: 126, Neg. LLF: 65.13442533865759
Iteration: 11, Func. Count: 138, Neg. LLF: 65.13393695213
Iteration: 12, Func. Count: 150, Neg. LLF: 65.1338709869295
Iteration: 13, Func. Count: 162, Neg. LLF: 65.1338657977012
Iteration: 14, Func. Count: 173, Neg. LLF: 65.13386582553991
Optimization terminated successfully (Exit mode 0)
Current function value: 65.1338657977012
Iterations: 14
Function evaluations: 173
Gradient evaluations: 14
Iteration: 1, Func. Count: 6, Neg. LLF: 149.8758536109942
Iteration: 2, Func. Count: 15, Neg. LLF: 155.42457974547997
Iteration: 3, Func. Count: 22, Neg. LLF: 79.35082875748911
Iteration: 4, Func. Count: 29, Neg. LLF: 68.17090491670298
Iteration: 5, Func. Count: 35, Neg. LLF: 67.95636744685744
Iteration: 6, Func. Count: 41, Neg. LLF: 67.8896908273185
Iteration: 7, Func. Count: 46, Neg. LLF: 67.88938667774757
Iteration: 8, Func. Count: 51, Neg. LLF: 67.8893818815317
Iteration: 9, Func. Count: 55, Neg. LLF: 67.88938188151934
Optimization terminated successfully (Exit mode 0)
Current function value: 67.8893818815317
Iterations: 9
Function evaluations: 55
Gradient evaluations: 9
Iteration: 1, Func. Count: 7, Neg. LLF: 136.7861136172276
Iteration: 2, Func. Count: 15, Neg. LLF: 105.5342396727699
Iteration: 3, Func. Count: 23, Neg. LLF: 69.1362713086393
Iteration: 4, Func. Count: 31, Neg. LLF: 68.41268126412461
Iteration: 5, Func. Count: 38, Neg. LLF: 67.98821416620733
Iteration: 6, Func. Count: 45, Neg. LLF: 67.77551787932519
Iteration: 7, Func. Count: 51, Neg. LLF: 67.77550955718714
Iteration: 8, Func. Count: 56, Neg. LLF: 67.77550955718391
Optimization terminated successfully (Exit mode 0)
Current function value: 67.77550955718714
Iterations: 8
Function evaluations: 56
Gradient evaluations: 8
Iteration: 1, Func. Count: 8, Neg. LLF: 132.302058617334
Iteration: 2, Func. Count: 17, Neg. LLF: 187.9153413111755
Iteration: 3, Func. Count: 26, Neg. LLF: 69.83164181886747
Iteration: 4, Func. Count: 34, Neg. LLF: 68.4521699529387
Iteration: 5, Func. Count: 42, Neg. LLF: 67.95891654672651
Iteration: 6, Func. Count: 50, Neg. LLF: 67.7804203187879
Iteration: 7, Func. Count: 57, Neg. LLF: 67.775962042395
Iteration: 8, Func. Count: 64, Neg. LLF: 67.77558185374134
Iteration: 9, Func. Count: 71, Neg. LLF: 67.77550965307711
Iteration: 10, Func. Count: 77, Neg. LLF: 67.77550966792568
Optimization terminated successfully (Exit mode 0)
Current function value: 67.77550965307711
Iterations: 10
Function evaluations: 77
Gradient evaluations: 10
Iteration: 1, Func. Count: 9, Neg. LLF: 126.07338010801932
Iteration: 2, Func. Count: 19, Neg. LLF: 270.04020000595284
Iteration: 3, Func. Count: 29, Neg. LLF: 69.84180083086554
Iteration: 4, Func. Count: 38, Neg. LLF: 68.36867174412289
Iteration: 5, Func. Count: 47, Neg. LLF: 67.8746610340014
Iteration: 6, Func. Count: 55, Neg. LLF: 67.90314173987551
Iteration: 7, Func. Count: 64, Neg. LLF: 67.78457578867902
Iteration: 8, Func. Count: 72, Neg. LLF: 67.77768394126447
Iteration: 9, Func. Count: 80, Neg. LLF: 67.7755367755757
Iteration: 10, Func. Count: 88, Neg. LLF: 67.77550967561243
Iteration: 11, Func. Count: 95, Neg. LLF: 67.77550971329501
Optimization terminated successfully (Exit mode 0)
Current function value: 67.77550967561243
Iterations: 11
Function evaluations: 95
Gradient evaluations: 11
Iteration: 1, Func. Count: 10, Neg. LLF: 117.8116537854925
Iteration: 2, Func. Count: 21, Neg. LLF: 31540.439016398155
Iteration: 3, Func. Count: 32, Neg. LLF: 68.98262696148815
Iteration: 4, Func. Count: 42, Neg. LLF: 68.0810296824368
Iteration: 5, Func. Count: 52, Neg. LLF: 68.58463354115013
Iteration: 6, Func. Count: 62, Neg. LLF: 67.78418679019691
Iteration: 7, Func. Count: 71, Neg. LLF: 67.77687657210542
Iteration: 8, Func. Count: 80, Neg. LLF: 67.77555237677183
Iteration: 9, Func. Count: 89, Neg. LLF: 67.77551555977091
Iteration: 10, Func. Count: 98, Neg. LLF: 67.77551126590714
Iteration: 11, Func. Count: 107, Neg. LLF: 67.77550987641571
Iteration: 12, Func. Count: 115, Neg. LLF: 67.77550990991053
Optimization terminated successfully (Exit mode 0)
Current function value: 67.77550987641571
Iterations: 12
Function evaluations: 115
Gradient evaluations: 12
Iteration: 1, Func. Count: 7, Neg. LLF: 148.32430817333523
Iteration: 2, Func. Count: 17, Neg. LLF: 155.82852164544906
Iteration: 3, Func. Count: 25, Neg. LLF: 83.09549769587333
Iteration: 4, Func. Count: 32, Neg. LLF: 68.97638390494005
Iteration: 5, Func. Count: 39, Neg. LLF: 67.0770199783234
Iteration: 6, Func. Count: 45, Neg. LLF: 67.07604656274391
Iteration: 7, Func. Count: 51, Neg. LLF: 67.07595279187451
Iteration: 8, Func. Count: 57, Neg. LLF: 67.07595150500079
Iteration: 9, Func. Count: 62, Neg. LLF: 67.07595142951725
Optimization terminated successfully (Exit mode 0)
Current function value: 67.07595150500079
Iterations: 9
Function evaluations: 62
Gradient evaluations: 9
Iteration: 1, Func. Count: 8, Neg. LLF: 184.38148458668329
Iteration: 2, Func. Count: 17, Neg. LLF: 422.002287912503
Iteration: 3, Func. Count: 26, Neg. LLF: 84.72630526784005
Iteration: 4, Func. Count: 35, Neg. LLF: 67.08770043402775
Iteration: 5, Func. Count: 42, Neg. LLF: 67.59983814822331
Iteration: 6, Func. Count: 50, Neg. LLF: 67.07697145066305
Iteration: 7, Func. Count: 57, Neg. LLF: 67.07612560870872
Iteration: 8, Func. Count: 64, Neg. LLF: 67.07596278680643
Iteration: 9, Func. Count: 71, Neg. LLF: 67.07595395243864
Iteration: 10, Func. Count: 78, Neg. LLF: 67.07595100857495
Iteration: 11, Func. Count: 84, Neg. LLF: 67.0759510209572
Optimization terminated successfully (Exit mode 0)
Current function value: 67.07595100857495
Iterations: 11
Function evaluations: 84
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 169.48037016135808
Iteration: 2, Func. Count: 19, Neg. LLF: 11956645.902108938
Iteration: 3, Func. Count: 28, Neg. LLF: 85.44103697362549
Iteration: 4, Func. Count: 38, Neg. LLF: 67.63200487397056
Iteration: 5, Func. Count: 47, Neg. LLF: 67.30371984220005
Iteration: 6, Func. Count: 55, Neg. LLF: 66.95637793946152
Iteration: 7, Func. Count: 63, Neg. LLF: 66.88572582698153
Iteration: 8, Func. Count: 71, Neg. LLF: 66.75353508092991
Iteration: 9, Func. Count: 79, Neg. LLF: 66.7505803958672
Iteration: 10, Func. Count: 87, Neg. LLF: 66.74974219664819
Iteration: 11, Func. Count: 95, Neg. LLF: 66.74930578978118
Iteration: 12, Func. Count: 103, Neg. LLF: 66.74921396936233
Iteration: 13, Func. Count: 111, Neg. LLF: 66.74921052924601
Iteration: 14, Func. Count: 118, Neg. LLF: 66.74921052923845
Optimization terminated successfully (Exit mode 0)
Current function value: 66.74921052924601
Iterations: 14
Function evaluations: 118
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 137.54643154454374
Iteration: 2, Func. Count: 21, Neg. LLF: 13877308.743235003
Iteration: 3, Func. Count: 31, Neg. LLF: 93.2780220336737
Iteration: 4, Func. Count: 42, Neg. LLF: 67.60030364513936
Iteration: 5, Func. Count: 51, Neg. LLF: 67.19867514559718
Iteration: 6, Func. Count: 60, Neg. LLF: 67.05249863189383
Iteration: 7, Func. Count: 69, Neg. LLF: 66.76505021550625
Iteration: 8, Func. Count: 78, Neg. LLF: 66.7508220481063
Iteration: 9, Func. Count: 87, Neg. LLF: 66.74974877415657
Iteration: 10, Func. Count: 96, Neg. LLF: 66.74933614439382
Iteration: 11, Func. Count: 105, Neg. LLF: 66.74930939010211
Iteration: 12, Func. Count: 114, Neg. LLF: 66.74922239517812
Iteration: 13, Func. Count: 123, Neg. LLF: 66.74921224142162
Iteration: 14, Func. Count: 132, Neg. LLF: 66.74921049221567
Iteration: 15, Func. Count: 140, Neg. LLF: 66.74921050368624
Optimization terminated successfully (Exit mode 0)
Current function value: 66.74921049221567
Iterations: 15
Function evaluations: 140
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 138.11533594280368
Iteration: 2, Func. Count: 23, Neg. LLF: 11748054.094771035
Iteration: 3, Func. Count: 34, Neg. LLF: 92.50939385143721
Iteration: 4, Func. Count: 46, Neg. LLF: 66.91363905113757
Iteration: 5, Func. Count: 56, Neg. LLF: 68.71659002789966
Iteration: 6, Func. Count: 67, Neg. LLF: 66.80490936510597
Iteration: 7, Func. Count: 77, Neg. LLF: 66.77226195540005
Iteration: 8, Func. Count: 87, Neg. LLF: 66.75471010441521
Iteration: 9, Func. Count: 97, Neg. LLF: 66.7540946605298
Iteration: 10, Func. Count: 107, Neg. LLF: 66.75379741145822
Iteration: 11, Func. Count: 117, Neg. LLF: 66.75368067192332
Iteration: 12, Func. Count: 127, Neg. LLF: 66.75339868080525
Iteration: 13, Func. Count: 137, Neg. LLF: 66.75065695739293
Iteration: 14, Func. Count: 147, Neg. LLF: 67.92689837613115
Iteration: 15, Func. Count: 158, Neg. LLF: 66.74947400770195
Iteration: 16, Func. Count: 168, Neg. LLF: 66.74925287711051
Iteration: 17, Func. Count: 178, Neg. LLF: 66.74921205440836
Iteration: 18, Func. Count: 188, Neg. LLF: 66.74921062040633
Iteration: 19, Func. Count: 197, Neg. LLF: 66.74921063599305
Optimization terminated successfully (Exit mode 0)
Current function value: 66.74921062040633
Iterations: 19
Function evaluations: 197
Gradient evaluations: 19
Iteration: 1, Func. Count: 8, Neg. LLF: 131.58465076924628
Iteration: 2, Func. Count: 19, Neg. LLF: 135.05263721591606
Iteration: 3, Func. Count: 28, Neg. LLF: 3595860.5562234614
Iteration: 4, Func. Count: 36, Neg. LLF: 69.28262426955166
Iteration: 5, Func. Count: 44, Neg. LLF: 65.68285499651246
Iteration: 6, Func. Count: 51, Neg. LLF: 65.147294668215
Iteration: 7, Func. Count: 58, Neg. LLF: 65.13682170108278
Iteration: 8, Func. Count: 65, Neg. LLF: 65.1342402050119
Iteration: 9, Func. Count: 72, Neg. LLF: 65.1340053357379
Iteration: 10, Func. Count: 79, Neg. LLF: 65.13386617456312
Iteration: 11, Func. Count: 85, Neg. LLF: 65.13386617455649
Optimization terminated successfully (Exit mode 0)
Current function value: 65.13386617456312
Iterations: 11
Function evaluations: 85
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 106.53601553770643
Iteration: 2, Func. Count: 19, Neg. LLF: 2510541.948119206
Iteration: 3, Func. Count: 28, Neg. LLF: 5310265.169250477
Iteration: 4, Func. Count: 37, Neg. LLF: 70.71620548522391
Iteration: 5, Func. Count: 46, Neg. LLF: 65.14874526113236
Iteration: 6, Func. Count: 54, Neg. LLF: 65.13516351581687
Iteration: 7, Func. Count: 62, Neg. LLF: 65.13454867609184
Iteration: 8, Func. Count: 70, Neg. LLF: 65.13390079307308
Iteration: 9, Func. Count: 78, Neg. LLF: 65.13387474787112
Iteration: 10, Func. Count: 86, Neg. LLF: 65.13386777739856
Iteration: 11, Func. Count: 94, Neg. LLF: 65.1338659187661
Iteration: 12, Func. Count: 101, Neg. LLF: 65.13386597292008
Optimization terminated successfully (Exit mode 0)
Current function value: 65.1338659187661
Iterations: 12
Function evaluations: 101
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 109.3503957422439
Iteration: 2, Func. Count: 21, Neg. LLF: 2591908.5241266196
Iteration: 3, Func. Count: 31, Neg. LLF: 5063644.045344406
Iteration: 4, Func. Count: 41, Neg. LLF: 70.03314956237556
Iteration: 5, Func. Count: 51, Neg. LLF: 65.1409174037608
Iteration: 6, Func. Count: 60, Neg. LLF: 65.1361318195243
Iteration: 7, Func. Count: 69, Neg. LLF: 65.13434381990552
Iteration: 8, Func. Count: 78, Neg. LLF: 65.13389730588005
Iteration: 9, Func. Count: 87, Neg. LLF: 65.13388287189441
Iteration: 10, Func. Count: 96, Neg. LLF: 65.13386929820722
Iteration: 11, Func. Count: 105, Neg. LLF: 65.13386598642747
Iteration: 12, Func. Count: 113, Neg. LLF: 65.13386600368496
Optimization terminated successfully (Exit mode 0)
Current function value: 65.13386598642747
Iterations: 12
Function evaluations: 113
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 110.62983029556955
Iteration: 2, Func. Count: 23, Neg. LLF: 2720685.2031663675
Iteration: 3, Func. Count: 34, Neg. LLF: 5083334.117356699
Iteration: 4, Func. Count: 45, Neg. LLF: 69.76282018127884
Iteration: 5, Func. Count: 56, Neg. LLF: 65.14050528512307
Iteration: 6, Func. Count: 66, Neg. LLF: 65.13592608366204
Iteration: 7, Func. Count: 76, Neg. LLF: 65.13429140849124
Iteration: 8, Func. Count: 86, Neg. LLF: 65.13388409684283
Iteration: 9, Func. Count: 96, Neg. LLF: 65.13386940994756
Iteration: 10, Func. Count: 106, Neg. LLF: 65.13386711669445
Iteration: 11, Func. Count: 116, Neg. LLF: 65.13386600263367
Iteration: 12, Func. Count: 125, Neg. LLF: 65.13386603559354
Optimization terminated successfully (Exit mode 0)
Current function value: 65.13386600263367
Iterations: 12
Function evaluations: 125
Gradient evaluations: 12
Iteration: 1, Func. Count: 12, Neg. LLF: 108.54167389116172
Iteration: 2, Func. Count: 25, Neg. LLF: 2834527.893951007
Iteration: 3, Func. Count: 37, Neg. LLF: 5067862.076389599
Iteration: 4, Func. Count: 49, Neg. LLF: 69.35031658643183
Iteration: 5, Func. Count: 61, Neg. LLF: 65.14372768673024
Iteration: 6, Func. Count: 72, Neg. LLF: 65.1351103364581
Iteration: 7, Func. Count: 83, Neg. LLF: 65.13402141019883
Iteration: 8, Func. Count: 94, Neg. LLF: 65.13390391146677
Iteration: 9, Func. Count: 105, Neg. LLF: 65.13386997348101
Iteration: 10, Func. Count: 116, Neg. LLF: 65.13386643427863
Iteration: 11, Func. Count: 127, Neg. LLF: 65.13386564419652
Optimization terminated successfully (Exit mode 0)
Current function value: 65.13386564419652
Iterations: 11
Function evaluations: 127
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 152.92603563167572
Iteration: 2, Func. Count: 20, Neg. LLF: 147.62114305772465
Iteration: 3, Func. Count: 30, Neg. LLF: 3527093.544297797
Iteration: 4, Func. Count: 39, Neg. LLF: 9888679.391716894
Iteration: 5, Func. Count: 48, Neg. LLF: 67.34566283379475
Iteration: 6, Func. Count: 57, Neg. LLF: 65.14751679634149
Iteration: 7, Func. Count: 65, Neg. LLF: 65.14137794959171
Iteration: 8, Func. Count: 73, Neg. LLF: 65.13396525646996
Iteration: 9, Func. Count: 81, Neg. LLF: 65.13388598493904
Iteration: 10, Func. Count: 89, Neg. LLF: 65.13387318154511
Iteration: 11, Func. Count: 97, Neg. LLF: 65.13386598219073
Iteration: 12, Func. Count: 104, Neg. LLF: 65.13386601628345
Optimization terminated successfully (Exit mode 0)
Current function value: 65.13386598219073
Iterations: 12
Function evaluations: 104
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 128.29360949448716
Iteration: 2, Func. Count: 21, Neg. LLF: 2332987.393686722
Iteration: 3, Func. Count: 31, Neg. LLF: 68.92738898776861
Iteration: 4, Func. Count: 41, Neg. LLF: 5307144.667530972
Iteration: 5, Func. Count: 51, Neg. LLF: 65.34352306344249
Iteration: 6, Func. Count: 60, Neg. LLF: 65.16384329108992
Iteration: 7, Func. Count: 69, Neg. LLF: 65.13946009086388
Iteration: 8, Func. Count: 78, Neg. LLF: 65.1340386729421
Iteration: 9, Func. Count: 87, Neg. LLF: 65.13387922367653
Iteration: 10, Func. Count: 96, Neg. LLF: 65.13386563239018
Iteration: 11, Func. Count: 104, Neg. LLF: 65.13386568651494
Optimization terminated successfully (Exit mode 0)
Current function value: 65.13386563239018
Iterations: 11
Function evaluations: 104
Gradient evaluations: 11
Iteration: 1, Func. Count: 11, Neg. LLF: 126.23634543647093
Iteration: 2, Func. Count: 23, Neg. LLF: 2381039.2440769123
Iteration: 3, Func. Count: 34, Neg. LLF: 5027712.941269065
Iteration: 4, Func. Count: 45, Neg. LLF: 75.51746235616088
Iteration: 5, Func. Count: 56, Neg. LLF: 65.1973971420348
Iteration: 6, Func. Count: 66, Neg. LLF: 65.15309921875264
Iteration: 7, Func. Count: 76, Neg. LLF: 65.13708252498718
Iteration: 8, Func. Count: 86, Neg. LLF: 65.13404339396016
Iteration: 9, Func. Count: 96, Neg. LLF: 65.13390807532045
Iteration: 10, Func. Count: 106, Neg. LLF: 65.13387446101949
Iteration: 11, Func. Count: 116, Neg. LLF: 65.13386590862412
Iteration: 12, Func. Count: 125, Neg. LLF: 65.1338659259033
Optimization terminated successfully (Exit mode 0)
Current function value: 65.13386590862412
Iterations: 12
Function evaluations: 125
Gradient evaluations: 12
Iteration: 1, Func. Count: 12, Neg. LLF: 124.07920055531774
Iteration: 2, Func. Count: 25, Neg. LLF: 2337338.7822349737
Iteration: 3, Func. Count: 37, Neg. LLF: 5103830.74704443
Iteration: 4, Func. Count: 49, Neg. LLF: 74.7795763269515
Iteration: 5, Func. Count: 61, Neg. LLF: 65.17987830807782
Iteration: 6, Func. Count: 72, Neg. LLF: 65.1508184369435
Iteration: 7, Func. Count: 83, Neg. LLF: 65.13652256313337
Iteration: 8, Func. Count: 94, Neg. LLF: 65.13393963286478
Iteration: 9, Func. Count: 105, Neg. LLF: 65.13386704737312
Iteration: 10, Func. Count: 116, Neg. LLF: 65.13386625598238
Optimization terminated successfully (Exit mode 0)
Current function value: 65.13386625598238
Iterations: 10
Function evaluations: 116
Gradient evaluations: 10
Iteration: 1, Func. Count: 13, Neg. LLF: 120.19058080495591
Iteration: 2, Func. Count: 27, Neg. LLF: 2331836.3776767543
Iteration: 3, Func. Count: 40, Neg. LLF: 5183941.917325871
Iteration: 4, Func. Count: 53, Neg. LLF: 74.14722508317031
Iteration: 5, Func. Count: 66, Neg. LLF: 65.17905588987539
Iteration: 6, Func. Count: 78, Neg. LLF: 65.15019694630625
Iteration: 7, Func. Count: 90, Neg. LLF: 65.13727971860409
Iteration: 8, Func. Count: 102, Neg. LLF: 65.13390462367556
Iteration: 9, Func. Count: 114, Neg. LLF: 65.13387266356314
Iteration: 10, Func. Count: 126, Neg. LLF: 65.13386892500316
Iteration: 11, Func. Count: 138, Neg. LLF: 65.13386567990614
Iteration: 12, Func. Count: 149, Neg. LLF: 65.13386570770317
Optimization terminated successfully (Exit mode 0)
Current function value: 65.13386567990614
Iterations: 12
Function evaluations: 149
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 156.6637004309013
Iteration: 2, Func. Count: 22, Neg. LLF: 145.6266877859037
Iteration: 3, Func. Count: 33, Neg. LLF: 3683141.1244046544
Iteration: 4, Func. Count: 43, Neg. LLF: 9943282.393744396
Iteration: 5, Func. Count: 53, Neg. LLF: 66.51075474153076
Iteration: 6, Func. Count: 62, Neg. LLF: 65.31156474427166
Iteration: 7, Func. Count: 71, Neg. LLF: 65.19524128658695
Iteration: 8, Func. Count: 80, Neg. LLF: 65.14347918843248
Iteration: 9, Func. Count: 89, Neg. LLF: 65.13433450155505
Iteration: 10, Func. Count: 98, Neg. LLF: 65.1339567393595
Iteration: 11, Func. Count: 107, Neg. LLF: 65.13391517200158
Iteration: 12, Func. Count: 116, Neg. LLF: 65.13387409625832
Iteration: 13, Func. Count: 125, Neg. LLF: 65.13386609242853
Iteration: 14, Func. Count: 133, Neg. LLF: 65.13386616101596
Optimization terminated successfully (Exit mode 0)
Current function value: 65.13386609242853
Iterations: 14
Function evaluations: 133
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 128.2017424188118
Iteration: 2, Func. Count: 23, Neg. LLF: 2332019.5183684113
Iteration: 3, Func. Count: 34, Neg. LLF: 68.93359359308047
Iteration: 4, Func. Count: 45, Neg. LLF: 4948732.24898557
Iteration: 5, Func. Count: 56, Neg. LLF: 65.18344385132785
Iteration: 6, Func. Count: 66, Neg. LLF: 65.14091615803095
Iteration: 7, Func. Count: 76, Neg. LLF: 65.13841551330346
Iteration: 8, Func. Count: 86, Neg. LLF: 65.13525159616137
Iteration: 9, Func. Count: 96, Neg. LLF: 65.1344877372495
Iteration: 10, Func. Count: 106, Neg. LLF: 65.13413109315562
Iteration: 11, Func. Count: 116, Neg. LLF: 65.13393446417051
Iteration: 12, Func. Count: 126, Neg. LLF: 65.13387116489474
Iteration: 13, Func. Count: 136, Neg. LLF: 65.13386579216834
Iteration: 14, Func. Count: 145, Neg. LLF: 65.13386584629868
Optimization terminated successfully (Exit mode 0)
Current function value: 65.13386579216834
Iterations: 14
Function evaluations: 145
Gradient evaluations: 14
Iteration: 1, Func. Count: 12, Neg. LLF: 126.20568421507876
Iteration: 2, Func. Count: 25, Neg. LLF: 2384299.830887334
Iteration: 3, Func. Count: 37, Neg. LLF: 5032428.481479612
Iteration: 4, Func. Count: 49, Neg. LLF: 75.23855170579137
Iteration: 5, Func. Count: 61, Neg. LLF: 65.19975607089977
Iteration: 6, Func. Count: 72, Neg. LLF: 65.15424248358252
Iteration: 7, Func. Count: 83, Neg. LLF: 65.1371838957414
Iteration: 8, Func. Count: 94, Neg. LLF: 65.13405317983232
Iteration: 9, Func. Count: 105, Neg. LLF: 65.13390873513626
Iteration: 10, Func. Count: 116, Neg. LLF: 65.13387536778284
Iteration: 11, Func. Count: 127, Neg. LLF: 65.13386590835964
Iteration: 12, Func. Count: 137, Neg. LLF: 65.13386592563594
Optimization terminated successfully (Exit mode 0)
Current function value: 65.13386590835964
Iterations: 12
Function evaluations: 137
Gradient evaluations: 12
Iteration: 1, Func. Count: 13, Neg. LLF: 127.96687553867517
Iteration: 2, Func. Count: 27, Neg. LLF: 2350900.726104432
Iteration: 3, Func. Count: 40, Neg. LLF: 5016791.947688269
Iteration: 4, Func. Count: 53, Neg. LLF: 75.10390481943762
Iteration: 5, Func. Count: 66, Neg. LLF: 65.22054407189803
Iteration: 6, Func. Count: 78, Neg. LLF: 65.16217009826444
Iteration: 7, Func. Count: 90, Neg. LLF: 65.13990039663267
Iteration: 8, Func. Count: 102, Neg. LLF: 65.13452478989063
Iteration: 9, Func. Count: 114, Neg. LLF: 65.13407996827047
Iteration: 10, Func. Count: 126, Neg. LLF: 65.13390739356167
Iteration: 11, Func. Count: 138, Neg. LLF: 65.13386960331584
Iteration: 12, Func. Count: 150, Neg. LLF: 65.13386568589226
Iteration: 13, Func. Count: 161, Neg. LLF: 65.13386571888188
Optimization terminated successfully (Exit mode 0)
Current function value: 65.13386568589226
Iterations: 13
Function evaluations: 161
Gradient evaluations: 13
Iteration: 1, Func. Count: 14, Neg. LLF: 129.0825209310729
Iteration: 2, Func. Count: 29, Neg. LLF: 2356909.330034885
Iteration: 3, Func. Count: 43, Neg. LLF: 4955301.371233504
Iteration: 4, Func. Count: 57, Neg. LLF: 75.13130213394439
Iteration: 5, Func. Count: 71, Neg. LLF: 65.3185415246869
Iteration: 6, Func. Count: 84, Neg. LLF: 65.18643560907857
Iteration: 7, Func. Count: 97, Neg. LLF: 65.14604759627191
Iteration: 8, Func. Count: 110, Neg. LLF: 65.13596381018638
Iteration: 9, Func. Count: 123, Neg. LLF: 65.134389478057
Iteration: 10, Func. Count: 136, Neg. LLF: 65.1340198093448
Iteration: 11, Func. Count: 149, Neg. LLF: 65.13390463339607
Iteration: 12, Func. Count: 162, Neg. LLF: 65.13386690103123
Iteration: 13, Func. Count: 175, Neg. LLF: 65.13386565346183
Iteration: 14, Func. Count: 187, Neg. LLF: 65.1338656812614
Optimization terminated successfully (Exit mode 0)
Current function value: 65.13386565346183
Iterations: 14
Function evaluations: 187
Gradient evaluations: 14
Iteration: 1, Func. Count: 7, Neg. LLF: 122.54191240300086
Iteration: 2, Func. Count: 17, Neg. LLF: 128.35880375806065
Iteration: 3, Func. Count: 25, Neg. LLF: 101.03894550681281
Iteration: 4, Func. Count: 32, Neg. LLF: 78.5141835710662
Iteration: 5, Func. Count: 40, Neg. LLF: 67.22607401753305
Iteration: 6, Func. Count: 46, Neg. LLF: 67.22244583504211
Iteration: 7, Func. Count: 52, Neg. LLF: 67.22195353656575
Iteration: 8, Func. Count: 58, Neg. LLF: 67.2217392255546
Iteration: 9, Func. Count: 64, Neg. LLF: 67.22172104544771
Iteration: 10, Func. Count: 70, Neg. LLF: 67.22171993574342
Iteration: 11, Func. Count: 75, Neg. LLF: 67.22171993573852
Optimization terminated successfully (Exit mode 0)
Current function value: 67.22171993574342
Iterations: 11
Function evaluations: 75
Gradient evaluations: 11
Iteration: 1, Func. Count: 8, Neg. LLF: 125.47110018698507
Iteration: 2, Func. Count: 17, Neg. LLF: 105.04190441932347
Iteration: 3, Func. Count: 26, Neg. LLF: 71.24962464553903
Iteration: 4, Func. Count: 34, Neg. LLF: 68.43129718184971
Iteration: 5, Func. Count: 42, Neg. LLF: 67.23741464571145
Iteration: 6, Func. Count: 49, Neg. LLF: 67.22551930059683
Iteration: 7, Func. Count: 56, Neg. LLF: 67.2220980312536
Iteration: 8, Func. Count: 63, Neg. LLF: 67.2217565147154
Iteration: 9, Func. Count: 70, Neg. LLF: 67.22172013679196
Iteration: 10, Func. Count: 76, Neg. LLF: 67.22172015691243
Optimization terminated successfully (Exit mode 0)
Current function value: 67.22172013679196
Iterations: 10
Function evaluations: 76
Gradient evaluations: 10
Iteration: 1, Func. Count: 9, Neg. LLF: 102.59077890960046
Iteration: 2, Func. Count: 19, Neg. LLF: 137.09889260255525
Iteration: 3, Func. Count: 29, Neg. LLF: 70.11716702056219
Iteration: 4, Func. Count: 38, Neg. LLF: 68.54351111704247
Iteration: 5, Func. Count: 47, Neg. LLF: 67.24600011189719
Iteration: 6, Func. Count: 55, Neg. LLF: 67.22578721631635
Iteration: 7, Func. Count: 63, Neg. LLF: 67.2224067919515
Iteration: 8, Func. Count: 71, Neg. LLF: 67.22173194084294
Iteration: 9, Func. Count: 79, Neg. LLF: 67.22172048593049
Iteration: 10, Func. Count: 87, Neg. LLF: 67.22171993063263
Optimization terminated successfully (Exit mode 0)
Current function value: 67.22171993063263
Iterations: 10
Function evaluations: 87
Gradient evaluations: 10
Iteration: 1, Func. Count: 10, Neg. LLF: 124.06630291641947
Iteration: 2, Func. Count: 21, Neg. LLF: 79.67026996130872
Iteration: 3, Func. Count: 32, Neg. LLF: 69.58980914218286
Iteration: 4, Func. Count: 42, Neg. LLF: 68.28085756078272
Iteration: 5, Func. Count: 52, Neg. LLF: 67.31989613594769
Iteration: 6, Func. Count: 61, Neg. LLF: 67.22738005382266
Iteration: 7, Func. Count: 70, Neg. LLF: 67.22194835590214
Iteration: 8, Func. Count: 79, Neg. LLF: 67.22172113006701
Iteration: 9, Func. Count: 88, Neg. LLF: 67.22171994532923
Iteration: 10, Func. Count: 96, Neg. LLF: 67.22171997659436
Optimization terminated successfully (Exit mode 0)
Current function value: 67.22171994532923
Iterations: 10
Function evaluations: 96
Gradient evaluations: 10
Iteration: 1, Func. Count: 11, Neg. LLF: 172.35021164576634
Iteration: 2, Func. Count: 23, Neg. LLF: 685.6320121345842
Iteration: 3, Func. Count: 35, Neg. LLF: 69.15728785283865
Iteration: 4, Func. Count: 46, Neg. LLF: 68.029547676734
Iteration: 5, Func. Count: 57, Neg. LLF: 67.51614233352618
Iteration: 6, Func. Count: 67, Neg. LLF: 67.23310696891627
Iteration: 7, Func. Count: 77, Neg. LLF: 67.2237420118223
Iteration: 8, Func. Count: 87, Neg. LLF: 67.22173258261596
Iteration: 9, Func. Count: 97, Neg. LLF: 67.22171997710042
Iteration: 10, Func. Count: 106, Neg. LLF: 67.22171999035122
Optimization terminated successfully (Exit mode 0)
Current function value: 67.22171997710042
Iterations: 10
Function evaluations: 106
Gradient evaluations: 10
Iteration: 1, Func. Count: 8, Neg. LLF: 120.30177227676594
Iteration: 2, Func. Count: 19, Neg. LLF: 126.72125797461254
Iteration: 3, Func. Count: 28, Neg. LLF: 48685.28132712829
Iteration: 4, Func. Count: 36, Neg. LLF: 77.78837675441031
Iteration: 5, Func. Count: 44, Neg. LLF: 66.49785005731766
Iteration: 6, Func. Count: 51, Neg. LLF: 66.49221229747742
Iteration: 7, Func. Count: 58, Neg. LLF: 66.49151753115011
Iteration: 8, Func. Count: 65, Neg. LLF: 66.49111403757007
Iteration: 9, Func. Count: 72, Neg. LLF: 66.49110221392908
Iteration: 10, Func. Count: 79, Neg. LLF: 66.49109773440719
Iteration: 11, Func. Count: 85, Neg. LLF: 66.4910976321877
Optimization terminated successfully (Exit mode 0)
Current function value: 66.49109773440719
Iterations: 11
Function evaluations: 85
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 204.35128027074
Iteration: 2, Func. Count: 18, Neg. LLF: 83.80428343514383
Iteration: 3, Func. Count: 28, Neg. LLF: 69.68917153256555
Iteration: 4, Func. Count: 37, Neg. LLF: 67.34795272885144
Iteration: 5, Func. Count: 46, Neg. LLF: 68.00251317024029
Iteration: 6, Func. Count: 55, Neg. LLF: 66.71468322472812
Iteration: 7, Func. Count: 63, Neg. LLF: 66.5254569976256
Iteration: 8, Func. Count: 71, Neg. LLF: 66.49392253851066
Iteration: 9, Func. Count: 79, Neg. LLF: 66.49139228525183
Iteration: 10, Func. Count: 87, Neg. LLF: 66.49111638244781
Iteration: 11, Func. Count: 95, Neg. LLF: 66.49109911250784
Iteration: 12, Func. Count: 103, Neg. LLF: 66.49109764124655
Iteration: 13, Func. Count: 110, Neg. LLF: 66.49109768252754
Optimization terminated successfully (Exit mode 0)
Current function value: 66.49109764124655
Iterations: 13
Function evaluations: 110
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 132.26291516345393
Iteration: 2, Func. Count: 20, Neg. LLF: 94.07921812396428
Iteration: 3, Func. Count: 30, Neg. LLF: 70.15323395494039
Iteration: 4, Func. Count: 41, Neg. LLF: 67.82511559887129
Iteration: 5, Func. Count: 51, Neg. LLF: 70.03107963087021
Iteration: 6, Func. Count: 61, Neg. LLF: 66.51067886535255
Iteration: 7, Func. Count: 70, Neg. LLF: 66.49287186031133
Iteration: 8, Func. Count: 79, Neg. LLF: 66.49144313458046
Iteration: 9, Func. Count: 88, Neg. LLF: 66.49129930356915
Iteration: 10, Func. Count: 97, Neg. LLF: 66.49110159609016
Iteration: 11, Func. Count: 106, Neg. LLF: 66.49109752962163
Iteration: 12, Func. Count: 114, Neg. LLF: 66.49109755669635
Optimization terminated successfully (Exit mode 0)
Current function value: 66.49109752962163
Iterations: 12
Function evaluations: 114
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 111.62791220002727
Iteration: 2, Func. Count: 22, Neg. LLF: 239.1283527317234
Iteration: 3, Func. Count: 33, Neg. LLF: 92.43728024875705
Iteration: 4, Func. Count: 45, Neg. LLF: 67.7573127445222
Iteration: 5, Func. Count: 56, Neg. LLF: 69.18816751186735
Iteration: 6, Func. Count: 67, Neg. LLF: 66.50650668849529
Iteration: 7, Func. Count: 77, Neg. LLF: 66.49217440891161
Iteration: 8, Func. Count: 87, Neg. LLF: 66.49120712443937
Iteration: 9, Func. Count: 97, Neg. LLF: 66.49111769702766
Iteration: 10, Func. Count: 107, Neg. LLF: 66.49109863377066
Iteration: 11, Func. Count: 117, Neg. LLF: 66.49109766604343
Optimization terminated successfully (Exit mode 0)
Current function value: 66.49109766604343
Iterations: 11
Function evaluations: 117
Gradient evaluations: 11
Iteration: 1, Func. Count: 12, Neg. LLF: 34969.06500766318
Iteration: 2, Func. Count: 24, Neg. LLF: 98.13699258031124
Iteration: 3, Func. Count: 37, Neg. LLF: 68.91956800933508
Iteration: 4, Func. Count: 50, Neg. LLF: 67.91178504764292
Iteration: 5, Func. Count: 62, Neg. LLF: 70.89393904637875
Iteration: 6, Func. Count: 74, Neg. LLF: 66.49461146779278
Iteration: 7, Func. Count: 85, Neg. LLF: 66.49243627604294
Iteration: 8, Func. Count: 96, Neg. LLF: 66.49129955811642
Iteration: 9, Func. Count: 107, Neg. LLF: 66.49111111217223
Iteration: 10, Func. Count: 118, Neg. LLF: 66.49109771704931
Iteration: 11, Func. Count: 128, Neg. LLF: 66.49109773845613
Optimization terminated successfully (Exit mode 0)
Current function value: 66.49109771704931
Iterations: 11
Function evaluations: 128
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 118.38163341776276
Iteration: 2, Func. Count: 21, Neg. LLF: 127.76482886884081
Iteration: 3, Func. Count: 31, Neg. LLF: 1615584.8375133078
Iteration: 4, Func. Count: 40, Neg. LLF: 76.58757209078563
Iteration: 5, Func. Count: 49, Neg. LLF: 101.39054603696611
Iteration: 6, Func. Count: 58, Neg. LLF: 27897.17120115414
Iteration: 7, Func. Count: 67, Neg. LLF: 64.62592550570105
Iteration: 8, Func. Count: 75, Neg. LLF: 64.41453124119278
Iteration: 9, Func. Count: 83, Neg. LLF: 64.36305743915779
Iteration: 10, Func. Count: 91, Neg. LLF: 64.35408618184927
Iteration: 11, Func. Count: 99, Neg. LLF: 64.35372540447996
Iteration: 12, Func. Count: 107, Neg. LLF: 64.35372932409373
Iteration: 13, Func. Count: 116, Neg. LLF: 64.35370242926743
Iteration: 14, Func. Count: 123, Neg. LLF: 64.35370242926007
Optimization terminated successfully (Exit mode 0)
Current function value: 64.35370242926743
Iterations: 14
Function evaluations: 123
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 86.92975811940933
Iteration: 2, Func. Count: 21, Neg. LLF: 1400042.9038840418
Iteration: 3, Func. Count: 31, Neg. LLF: 2996689.8369637663
Iteration: 4, Func. Count: 41, Neg. LLF: 68.13242199731458
Iteration: 5, Func. Count: 51, Neg. LLF: 444.2613670405374
Iteration: 6, Func. Count: 61, Neg. LLF: 66.13614748172961
Iteration: 7, Func. Count: 71, Neg. LLF: 64.51126621202937
Iteration: 8, Func. Count: 80, Neg. LLF: 64.4163212145742
Iteration: 9, Func. Count: 89, Neg. LLF: 64.37643735411487
Iteration: 10, Func. Count: 98, Neg. LLF: 64.36360594730691
Iteration: 11, Func. Count: 107, Neg. LLF: 64.35753654705621
Iteration: 12, Func. Count: 116, Neg. LLF: 64.35391715903833
Iteration: 13, Func. Count: 125, Neg. LLF: 64.35370510019365
Iteration: 14, Func. Count: 134, Neg. LLF: 64.35370206242358
Iteration: 15, Func. Count: 142, Neg. LLF: 64.35370217044138
Optimization terminated successfully (Exit mode 0)
Current function value: 64.35370206242358
Iterations: 15
Function evaluations: 142
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 85.71698452893361
Iteration: 2, Func. Count: 23, Neg. LLF: 1402109.384402052
Iteration: 3, Func. Count: 34, Neg. LLF: 3106435.7306792643
Iteration: 4, Func. Count: 45, Neg. LLF: 69.2611742268914
Iteration: 5, Func. Count: 56, Neg. LLF: 79.3112267660941
Iteration: 6, Func. Count: 67, Neg. LLF: 66.14834294119436
Iteration: 7, Func. Count: 78, Neg. LLF: 64.5195201803647
Iteration: 8, Func. Count: 88, Neg. LLF: 64.4493696423844
Iteration: 9, Func. Count: 98, Neg. LLF: 64.38575246184138
Iteration: 10, Func. Count: 108, Neg. LLF: 64.36473405441939
Iteration: 11, Func. Count: 118, Neg. LLF: 64.35688248419459
Iteration: 12, Func. Count: 128, Neg. LLF: 64.3539071329194
Iteration: 13, Func. Count: 138, Neg. LLF: 64.35371065883547
Iteration: 14, Func. Count: 148, Neg. LLF: 64.35370194214866
Iteration: 15, Func. Count: 157, Neg. LLF: 64.35370207230832
Optimization terminated successfully (Exit mode 0)
Current function value: 64.35370194214866
Iterations: 15
Function evaluations: 157
Gradient evaluations: 15
Iteration: 1, Func. Count: 12, Neg. LLF: 83.27761790039794
Iteration: 2, Func. Count: 25, Neg. LLF: 406784.02857769345
Iteration: 3, Func. Count: 37, Neg. LLF: 3084323.677997115
Iteration: 4, Func. Count: 49, Neg. LLF: 70.63134519875767
Iteration: 5, Func. Count: 61, Neg. LLF: 67.09220893967621
Iteration: 6, Func. Count: 73, Neg. LLF: 64.97719351278624
Iteration: 7, Func. Count: 84, Neg. LLF: 66.7862767521995
Iteration: 8, Func. Count: 96, Neg. LLF: 64.61227600590958
Iteration: 9, Func. Count: 107, Neg. LLF: 64.42044849497968
Iteration: 10, Func. Count: 118, Neg. LLF: 64.48409471487126
Iteration: 11, Func. Count: 130, Neg. LLF: 64.37082496780688
Iteration: 12, Func. Count: 141, Neg. LLF: 64.35503739133796
Iteration: 13, Func. Count: 152, Neg. LLF: 64.35374160113048
Iteration: 14, Func. Count: 163, Neg. LLF: 64.3537099587319
Iteration: 15, Func. Count: 174, Neg. LLF: 64.35370398446005
Iteration: 16, Func. Count: 185, Neg. LLF: 64.35370195712255
Iteration: 17, Func. Count: 195, Neg. LLF: 64.35370202782778
Optimization terminated successfully (Exit mode 0)
Current function value: 64.35370195712255
Iterations: 17
Function evaluations: 195
Gradient evaluations: 17
Iteration: 1, Func. Count: 13, Neg. LLF: 81.75767507666889
Iteration: 2, Func. Count: 26, Neg. LLF: 4782748.447304503
Iteration: 3, Func. Count: 39, Neg. LLF: 6265829.901017741
Iteration: 4, Func. Count: 52, Neg. LLF: 73.1912759413514
Iteration: 5, Func. Count: 65, Neg. LLF: 189.5604819315769
Iteration: 6, Func. Count: 78, Neg. LLF: 68.44778863629901
Iteration: 7, Func. Count: 91, Neg. LLF: 64.48145163762922
Iteration: 8, Func. Count: 103, Neg. LLF: 64.61393781334414
Iteration: 9, Func. Count: 116, Neg. LLF: 65.90836840648814
Iteration: 10, Func. Count: 130, Neg. LLF: 64.33245817094806
Iteration: 11, Func. Count: 142, Neg. LLF: 64.31631077287555
Iteration: 12, Func. Count: 154, Neg. LLF: 64.31542988937447
Iteration: 13, Func. Count: 166, Neg. LLF: 64.3153884023178
Iteration: 14, Func. Count: 178, Neg. LLF: 64.31538348450103
Iteration: 15, Func. Count: 190, Neg. LLF: 64.31538267657366
Optimization terminated successfully (Exit mode 0)
Current function value: 64.31538267657366
Iterations: 15
Function evaluations: 190
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 127.4304505698964
Iteration: 2, Func. Count: 23, Neg. LLF: 123.80878689056829
Iteration: 3, Func. Count: 34, Neg. LLF: 1203377.59339374
Iteration: 4, Func. Count: 44, Neg. LLF: 2274051.387066451
Iteration: 5, Func. Count: 54, Neg. LLF: 65.68661390227794
Iteration: 6, Func. Count: 63, Neg. LLF: 1181218.6638893022
Iteration: 7, Func. Count: 73, Neg. LLF: 66.32523492852694
Iteration: 8, Func. Count: 83, Neg. LLF: 64.30315953898842
Iteration: 9, Func. Count: 92, Neg. LLF: 67.02713688043143
Iteration: 10, Func. Count: 102, Neg. LLF: 63.95182466671925
Iteration: 11, Func. Count: 111, Neg. LLF: 63.88489684857331
Iteration: 12, Func. Count: 120, Neg. LLF: 63.88702035983093
Iteration: 13, Func. Count: 130, Neg. LLF: 63.84161614267789
Iteration: 14, Func. Count: 139, Neg. LLF: 63.838104570354524
Iteration: 15, Func. Count: 148, Neg. LLF: 63.83636211099899
Iteration: 16, Func. Count: 157, Neg. LLF: 63.83531598756449
Iteration: 17, Func. Count: 166, Neg. LLF: 63.835089904961436
Iteration: 18, Func. Count: 175, Neg. LLF: 63.83507016622364
Iteration: 19, Func. Count: 183, Neg. LLF: 63.83507016622334
Optimization terminated successfully (Exit mode 0)
Current function value: 63.83507016622364
Iterations: 19
Function evaluations: 183
Gradient evaluations: 19
Iteration: 1, Func. Count: 11, Neg. LLF: 103.02682288246403
Iteration: 2, Func. Count: 23, Neg. LLF: 4938687.303759248
Iteration: 3, Func. Count: 34, Neg. LLF: 1968495.9294565138
Iteration: 4, Func. Count: 45, Neg. LLF: 247.92986528173338
Iteration: 5, Func. Count: 56, Neg. LLF: 69.28715655845369
Iteration: 6, Func. Count: 67, Neg. LLF: 73.71804599267465
Iteration: 7, Func. Count: 78, Neg. LLF: 64.14783992243441
Iteration: 8, Func. Count: 88, Neg. LLF: 70.9389133869089
Iteration: 9, Func. Count: 99, Neg. LLF: 64.92007794298425
Iteration: 10, Func. Count: 110, Neg. LLF: 63.86026417975417
Iteration: 11, Func. Count: 120, Neg. LLF: 63.84683769408789
Iteration: 12, Func. Count: 130, Neg. LLF: 63.837359453304316
Iteration: 13, Func. Count: 140, Neg. LLF: 63.83584610054957
Iteration: 14, Func. Count: 150, Neg. LLF: 63.835103897118664
Iteration: 15, Func. Count: 160, Neg. LLF: 63.835075072648934
Iteration: 16, Func. Count: 170, Neg. LLF: 63.835070112755
Iteration: 17, Func. Count: 179, Neg. LLF: 63.83507015442555
Optimization terminated successfully (Exit mode 0)
Current function value: 63.835070112755
Iterations: 17
Function evaluations: 179
Gradient evaluations: 17
Iteration: 1, Func. Count: 12, Neg. LLF: 111.64602300336398
Iteration: 2, Func. Count: 24, Neg. LLF: 4952116.313646983
Iteration: 3, Func. Count: 36, Neg. LLF: 2245718.322701892
Iteration: 4, Func. Count: 48, Neg. LLF: 64.7283888046458
Iteration: 5, Func. Count: 59, Neg. LLF: 1121667.4402658164
Iteration: 6, Func. Count: 71, Neg. LLF: 80.52191314656413
Iteration: 7, Func. Count: 83, Neg. LLF: 65.78627212456577
Iteration: 8, Func. Count: 95, Neg. LLF: 63.84854834378365
Iteration: 9, Func. Count: 106, Neg. LLF: 63.910212517126155
Iteration: 10, Func. Count: 118, Neg. LLF: 63.84461539766902
Iteration: 11, Func. Count: 130, Neg. LLF: 63.837767900376605
Iteration: 12, Func. Count: 142, Neg. LLF: 63.83508122219424
Iteration: 13, Func. Count: 153, Neg. LLF: 63.83507039338681
Iteration: 14, Func. Count: 164, Neg. LLF: 63.83506975106851
Optimization terminated successfully (Exit mode 0)
Current function value: 63.83506975106851
Iterations: 14
Function evaluations: 164
Gradient evaluations: 14
Iteration: 1, Func. Count: 13, Neg. LLF: 137.87025168175754
Iteration: 2, Func. Count: 26, Neg. LLF: 5064852.870782126
Iteration: 3, Func. Count: 39, Neg. LLF: 72.3074469405737
Iteration: 4, Func. Count: 52, Neg. LLF: 1799971.8415895575
Iteration: 5, Func. Count: 65, Neg. LLF: 72.570216191272
Iteration: 6, Func. Count: 78, Neg. LLF: 75.80314762796637
Iteration: 7, Func. Count: 91, Neg. LLF: 63.9467890301453
Iteration: 8, Func. Count: 103, Neg. LLF: 64.12783817796743
Iteration: 9, Func. Count: 116, Neg. LLF: 63.84842075614633
Iteration: 10, Func. Count: 128, Neg. LLF: 63.83748135632625
Iteration: 11, Func. Count: 140, Neg. LLF: 63.83516288131447
Iteration: 12, Func. Count: 152, Neg. LLF: 63.83509926227055
Iteration: 13, Func. Count: 164, Neg. LLF: 63.83507672449475
Iteration: 14, Func. Count: 176, Neg. LLF: 63.83507009692005
Iteration: 15, Func. Count: 187, Neg. LLF: 63.83507016704385
Optimization terminated successfully (Exit mode 0)
Current function value: 63.83507009692005
Iterations: 15
Function evaluations: 187
Gradient evaluations: 15
Iteration: 1, Func. Count: 14, Neg. LLF: 3977880.7370243506
Iteration: 2, Func. Count: 28, Neg. LLF: 3262214.393251253
Iteration: 3, Func. Count: 42, Neg. LLF: 69.84546286211015
Iteration: 4, Func. Count: 56, Neg. LLF: 1804545.7262485777
Iteration: 5, Func. Count: 70, Neg. LLF: 306894.4859595593
Iteration: 6, Func. Count: 84, Neg. LLF: 1270085.0589751059
Iteration: 7, Func. Count: 98, Neg. LLF: 73.84182261604897
Iteration: 8, Func. Count: 112, Neg. LLF: 64.15081084543547
Iteration: 9, Func. Count: 125, Neg. LLF: 66.83543130411519
Iteration: 10, Func. Count: 139, Neg. LLF: 68.75661198790569
Iteration: 11, Func. Count: 154, Neg. LLF: 63.76226456053561
Iteration: 12, Func. Count: 167, Neg. LLF: 63.71572043704673
Iteration: 13, Func. Count: 180, Neg. LLF: 63.70187738691401
Iteration: 14, Func. Count: 193, Neg. LLF: 63.69727268083092
Iteration: 15, Func. Count: 206, Neg. LLF: 63.69658233980962
Iteration: 16, Func. Count: 219, Neg. LLF: 63.69614719959069
Iteration: 17, Func. Count: 232, Neg. LLF: 63.69609912585009
Iteration: 18, Func. Count: 245, Neg. LLF: 63.69609822604283
Optimization terminated successfully (Exit mode 0)
Current function value: 63.69609822604283
Iterations: 18
Function evaluations: 245
Gradient evaluations: 18
Iteration: 1, Func. Count: 11, Neg. LLF: 127.67005485263002
Iteration: 2, Func. Count: 25, Neg. LLF: 122.92516817402284
Iteration: 3, Func. Count: 37, Neg. LLF: 1263714.082640182
Iteration: 4, Func. Count: 48, Neg. LLF: 2075942.9181098521
Iteration: 5, Func. Count: 59, Neg. LLF: 66.00447608894845
Iteration: 6, Func. Count: 69, Neg. LLF: 1153404.4357229644
Iteration: 7, Func. Count: 80, Neg. LLF: 65.53865046087505
Iteration: 8, Func. Count: 91, Neg. LLF: 64.25514482699288
Iteration: 9, Func. Count: 101, Neg. LLF: 64.09846633150802
Iteration: 10, Func. Count: 111, Neg. LLF: 63.92831239101123
Iteration: 11, Func. Count: 121, Neg. LLF: 63.880476977869854
Iteration: 12, Func. Count: 131, Neg. LLF: 64.13873878278044
Iteration: 13, Func. Count: 142, Neg. LLF: 63.873722250765425
Iteration: 14, Func. Count: 153, Neg. LLF: 63.83816555066518
Iteration: 15, Func. Count: 163, Neg. LLF: 63.83634492020984
Iteration: 16, Func. Count: 173, Neg. LLF: 63.83525207577817
Iteration: 17, Func. Count: 183, Neg. LLF: 63.83509092577123
Iteration: 18, Func. Count: 193, Neg. LLF: 63.835070537893905
Iteration: 19, Func. Count: 203, Neg. LLF: 63.83506981785695
Optimization terminated successfully (Exit mode 0)
Current function value: 63.83506981785695
Iterations: 19
Function evaluations: 203
Gradient evaluations: 19
Iteration: 1, Func. Count: 12, Neg. LLF: 140.68953855517074
Iteration: 2, Func. Count: 24, Neg. LLF: 5264990.1127127865
Iteration: 3, Func. Count: 36, Neg. LLF: 70.93855385340866
Iteration: 4, Func. Count: 48, Neg. LLF: 1982908.8526607633
Iteration: 5, Func. Count: 60, Neg. LLF: 2235723.7569439844
Iteration: 6, Func. Count: 72, Neg. LLF: 102.68391040494095
Iteration: 7, Func. Count: 84, Neg. LLF: 1128968.166980576
Iteration: 8, Func. Count: 96, Neg. LLF: 64.33851555330916
Iteration: 9, Func. Count: 107, Neg. LLF: 64.03187556787236
Iteration: 10, Func. Count: 118, Neg. LLF: 64.75391650505655
Iteration: 11, Func. Count: 130, Neg. LLF: 64.04184398147802
Iteration: 12, Func. Count: 142, Neg. LLF: 63.845025850281544
Iteration: 13, Func. Count: 153, Neg. LLF: 63.83863962945237
Iteration: 14, Func. Count: 164, Neg. LLF: 63.836616631265926
Iteration: 15, Func. Count: 175, Neg. LLF: 63.83512409687569
Iteration: 16, Func. Count: 186, Neg. LLF: 63.83507105776395
Iteration: 17, Func. Count: 197, Neg. LLF: 63.83506979867779
Iteration: 18, Func. Count: 207, Neg. LLF: 63.83506984035362
Optimization terminated successfully (Exit mode 0)
Current function value: 63.83506979867779
Iterations: 18
Function evaluations: 207
Gradient evaluations: 18
Iteration: 1, Func. Count: 13, Neg. LLF: 111.41608544236182
Iteration: 2, Func. Count: 26, Neg. LLF: 4994271.95044427
Iteration: 3, Func. Count: 39, Neg. LLF: 2243948.406809204
Iteration: 4, Func. Count: 52, Neg. LLF: 64.65620177259568
Iteration: 5, Func. Count: 64, Neg. LLF: 1122163.6089268075
Iteration: 6, Func. Count: 77, Neg. LLF: 78.43204835365442
Iteration: 7, Func. Count: 90, Neg. LLF: 64.98101232973178
Iteration: 8, Func. Count: 103, Neg. LLF: 63.847448855538985
Iteration: 9, Func. Count: 115, Neg. LLF: 64.1314422318463
Iteration: 10, Func. Count: 128, Neg. LLF: 63.84574602797664
Iteration: 11, Func. Count: 141, Neg. LLF: 63.83520615871009
Iteration: 12, Func. Count: 153, Neg. LLF: 63.83507797773572
Iteration: 13, Func. Count: 165, Neg. LLF: 63.83507007785115
Iteration: 14, Func. Count: 176, Neg. LLF: 63.83507025059836
Optimization terminated successfully (Exit mode 0)
Current function value: 63.83507007785115
Iterations: 14
Function evaluations: 176
Gradient evaluations: 14
Iteration: 1, Func. Count: 14, Neg. LLF: 138.87054256071113
Iteration: 2, Func. Count: 28, Neg. LLF: 5136428.816320253
Iteration: 3, Func. Count: 42, Neg. LLF: 72.02583822573483
Iteration: 4, Func. Count: 56, Neg. LLF: 1802122.3026045582
Iteration: 5, Func. Count: 70, Neg. LLF: 70.4081626812183
Iteration: 6, Func. Count: 84, Neg. LLF: 87.28719234267177
Iteration: 7, Func. Count: 98, Neg. LLF: 63.938408157946114
Iteration: 8, Func. Count: 111, Neg. LLF: 64.22008988488396
Iteration: 9, Func. Count: 125, Neg. LLF: 63.84739908964772
Iteration: 10, Func. Count: 138, Neg. LLF: 63.8362976590132
Iteration: 11, Func. Count: 151, Neg. LLF: 63.83527016161133
Iteration: 12, Func. Count: 164, Neg. LLF: 63.83511103741863
Iteration: 13, Func. Count: 177, Neg. LLF: 63.83510194306986
Iteration: 14, Func. Count: 190, Neg. LLF: 63.835078104635954
Iteration: 15, Func. Count: 203, Neg. LLF: 63.83507409826415
Iteration: 16, Func. Count: 216, Neg. LLF: 63.83506917233067
Iteration: 17, Func. Count: 229, Neg. LLF: 63.835618880754176
Optimization terminated successfully (Exit mode 0)
Current function value: 63.83506914723564
Iterations: 18
Function evaluations: 231
Gradient evaluations: 17
Iteration: 1, Func. Count: 15, Neg. LLF: 3938313.1021160875
Iteration: 2, Func. Count: 30, Neg. LLF: 1326367.8246030966
Iteration: 3, Func. Count: 45, Neg. LLF: 69.8773635376171
Iteration: 4, Func. Count: 60, Neg. LLF: 1799672.5204409994
Iteration: 5, Func. Count: 75, Neg. LLF: 314881.78605472867
Iteration: 6, Func. Count: 90, Neg. LLF: 2222628.8166613635
Iteration: 7, Func. Count: 105, Neg. LLF: 73.53705856060974
Iteration: 8, Func. Count: 120, Neg. LLF: 64.16915511558467
Iteration: 9, Func. Count: 134, Neg. LLF: 66.77446540038952
Iteration: 10, Func. Count: 149, Neg. LLF: 68.80750496324004
Iteration: 11, Func. Count: 165, Neg. LLF: 63.76211849638757
Iteration: 12, Func. Count: 179, Neg. LLF: 63.716037938671406
Iteration: 13, Func. Count: 193, Neg. LLF: 63.702162885423924
Iteration: 14, Func. Count: 207, Neg. LLF: 63.69723621183932
Iteration: 15, Func. Count: 221, Neg. LLF: 63.69655972707881
Iteration: 16, Func. Count: 235, Neg. LLF: 63.69616034957047
Iteration: 17, Func. Count: 249, Neg. LLF: 63.69609910882331
Iteration: 18, Func. Count: 263, Neg. LLF: 63.696098226878334
Optimization terminated successfully (Exit mode 0)
Current function value: 63.696098226878334
Iterations: 18
Function evaluations: 263
Gradient evaluations: 18
Iteration: 1, Func. Count: 8, Neg. LLF: 127.74701293682139
Iteration: 2, Func. Count: 19, Neg. LLF: 139.8749586988929
Iteration: 3, Func. Count: 28, Neg. LLF: 6255.869386800854
Iteration: 4, Func. Count: 36, Neg. LLF: 68.18371618166037
Iteration: 5, Func. Count: 44, Neg. LLF: 67.22703619963575
Iteration: 6, Func. Count: 51, Neg. LLF: 67.22354092223799
Iteration: 7, Func. Count: 58, Neg. LLF: 67.22206954545716
Iteration: 8, Func. Count: 65, Neg. LLF: 67.22184295570185
Iteration: 9, Func. Count: 72, Neg. LLF: 67.22177371216095
Iteration: 10, Func. Count: 79, Neg. LLF: 67.22173983999875
Iteration: 11, Func. Count: 86, Neg. LLF: 67.22172212811313
Iteration: 12, Func. Count: 93, Neg. LLF: 67.22172002973899
Iteration: 13, Func. Count: 99, Neg. LLF: 67.22172012604548
Optimization terminated successfully (Exit mode 0)
Current function value: 67.22172002973899
Iterations: 13
Function evaluations: 99
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 104.17429454350642
Iteration: 2, Func. Count: 19, Neg. LLF: 22824.95872068556
Iteration: 3, Func. Count: 29, Neg. LLF: 2259.367629410679
Iteration: 4, Func. Count: 39, Neg. LLF: 68.82252880312319
Iteration: 5, Func. Count: 48, Neg. LLF: 67.25571614349744
Iteration: 6, Func. Count: 56, Neg. LLF: 67.23378917971203
Iteration: 7, Func. Count: 64, Neg. LLF: 67.22308167790982
Iteration: 8, Func. Count: 72, Neg. LLF: 67.22202709441797
Iteration: 9, Func. Count: 80, Neg. LLF: 67.22172038460414
Iteration: 10, Func. Count: 87, Neg. LLF: 67.22172040473866
Optimization terminated successfully (Exit mode 0)
Current function value: 67.22172038460414
Iterations: 10
Function evaluations: 87
Gradient evaluations: 10
Iteration: 1, Func. Count: 10, Neg. LLF: 100.36488201611805
Iteration: 2, Func. Count: 21, Neg. LLF: 1460.0162774724597
Iteration: 3, Func. Count: 32, Neg. LLF: 3443.6744181689282
Iteration: 4, Func. Count: 43, Neg. LLF: 68.5324065709542
Iteration: 5, Func. Count: 53, Neg. LLF: 67.24745285535354
Iteration: 6, Func. Count: 62, Neg. LLF: 67.22565312791993
Iteration: 7, Func. Count: 71, Neg. LLF: 67.22252993759547
Iteration: 8, Func. Count: 80, Neg. LLF: 67.22175404563524
Iteration: 9, Func. Count: 89, Neg. LLF: 67.22172005230395
Iteration: 10, Func. Count: 97, Neg. LLF: 67.22172008494123
Optimization terminated successfully (Exit mode 0)
Current function value: 67.22172005230395
Iterations: 10
Function evaluations: 97
Gradient evaluations: 10
Iteration: 1, Func. Count: 11, Neg. LLF: 99.70246442757862
Iteration: 2, Func. Count: 23, Neg. LLF: 202.91002730108818
Iteration: 3, Func. Count: 35, Neg. LLF: 643.43099475187
Iteration: 4, Func. Count: 47, Neg. LLF: 73.2696122258494
Iteration: 5, Func. Count: 58, Neg. LLF: 67.24385104205311
Iteration: 6, Func. Count: 68, Neg. LLF: 67.22389595830938
Iteration: 7, Func. Count: 78, Neg. LLF: 67.2222842696558
Iteration: 8, Func. Count: 88, Neg. LLF: 67.22173432652448
Iteration: 9, Func. Count: 98, Neg. LLF: 67.22172082298621
Iteration: 10, Func. Count: 108, Neg. LLF: 67.22171993055376
Optimization terminated successfully (Exit mode 0)
Current function value: 67.22171993055376
Iterations: 10
Function evaluations: 108
Gradient evaluations: 10
Iteration: 1, Func. Count: 12, Neg. LLF: 102.93237756232197
Iteration: 2, Func. Count: 25, Neg. LLF: 107.1964716371371
Iteration: 3, Func. Count: 37, Neg. LLF: 69.19255194137239
Iteration: 4, Func. Count: 50, Neg. LLF: 70.62793934641172
Iteration: 5, Func. Count: 62, Neg. LLF: 68.4707260276373
Iteration: 6, Func. Count: 74, Neg. LLF: 67.23023087087563
Iteration: 7, Func. Count: 85, Neg. LLF: 67.2239912287571
Iteration: 8, Func. Count: 96, Neg. LLF: 67.22192627430522
Iteration: 9, Func. Count: 107, Neg. LLF: 67.22172086977292
Iteration: 10, Func. Count: 118, Neg. LLF: 67.22171994550688
Optimization terminated successfully (Exit mode 0)
Current function value: 67.22171994550688
Iterations: 10
Function evaluations: 118
Gradient evaluations: 10
Iteration: 1, Func. Count: 9, Neg. LLF: 125.51225181086184
Iteration: 2, Func. Count: 21, Neg. LLF: 137.45934835295813
Iteration: 3, Func. Count: 31, Neg. LLF: 3163.1142012927226
Iteration: 4, Func. Count: 40, Neg. LLF: 102.7154339137089
Iteration: 5, Func. Count: 49, Neg. LLF: 66.49723569673306
Iteration: 6, Func. Count: 57, Neg. LLF: 66.4916428833199
Iteration: 7, Func. Count: 65, Neg. LLF: 66.4912900823612
Iteration: 8, Func. Count: 73, Neg. LLF: 66.4911699512941
Iteration: 9, Func. Count: 81, Neg. LLF: 66.49111323623399
Iteration: 10, Func. Count: 89, Neg. LLF: 66.49110205268056
Iteration: 11, Func. Count: 97, Neg. LLF: 66.49109855108382
Iteration: 12, Func. Count: 105, Neg. LLF: 66.49109753092674
Iteration: 13, Func. Count: 112, Neg. LLF: 66.49109742870937
Optimization terminated successfully (Exit mode 0)
Current function value: 66.49109753092674
Iterations: 13
Function evaluations: 112
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 100.6195767626488
Iteration: 2, Func. Count: 21, Neg. LLF: 5557255.301814899
Iteration: 3, Func. Count: 31, Neg. LLF: 26095100.487430234
Iteration: 4, Func. Count: 42, Neg. LLF: 67.62977566146644
Iteration: 5, Func. Count: 52, Neg. LLF: 67.26364319674988
Iteration: 6, Func. Count: 62, Neg. LLF: 66.58437028469366
Iteration: 7, Func. Count: 71, Neg. LLF: 66.5875699016818
Iteration: 8, Func. Count: 81, Neg. LLF: 66.49343985210183
Iteration: 9, Func. Count: 90, Neg. LLF: 66.49190519460751
Iteration: 10, Func. Count: 99, Neg. LLF: 66.4911786910959
Iteration: 11, Func. Count: 108, Neg. LLF: 66.49110510496517
Iteration: 12, Func. Count: 117, Neg. LLF: 66.49109740295232
Iteration: 13, Func. Count: 125, Neg. LLF: 66.4910974442497
Optimization terminated successfully (Exit mode 0)
Current function value: 66.49109740295232
Iterations: 13
Function evaluations: 125
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 97.53543927602443
Iteration: 2, Func. Count: 23, Neg. LLF: 4742181.079968779
Iteration: 3, Func. Count: 34, Neg. LLF: 24998804.17784159
Iteration: 4, Func. Count: 46, Neg. LLF: 67.59994487237856
Iteration: 5, Func. Count: 57, Neg. LLF: 67.19261913240318
Iteration: 6, Func. Count: 68, Neg. LLF: 66.50245302404424
Iteration: 7, Func. Count: 78, Neg. LLF: 66.49359659472441
Iteration: 8, Func. Count: 88, Neg. LLF: 66.49203378017629
Iteration: 9, Func. Count: 98, Neg. LLF: 66.49110662846331
Iteration: 10, Func. Count: 108, Neg. LLF: 66.49109764258982
Iteration: 11, Func. Count: 117, Neg. LLF: 66.49109766965563
Optimization terminated successfully (Exit mode 0)
Current function value: 66.49109764258982
Iterations: 11
Function evaluations: 117
Gradient evaluations: 11
Iteration: 1, Func. Count: 12, Neg. LLF: 97.50580273377967
Iteration: 2, Func. Count: 25, Neg. LLF: 4736.150680827484
Iteration: 3, Func. Count: 37, Neg. LLF: 21654698.061972234
Iteration: 4, Func. Count: 50, Neg. LLF: 67.60289816709266
Iteration: 5, Func. Count: 62, Neg. LLF: 70.02122984983454
Iteration: 6, Func. Count: 74, Neg. LLF: 66.50546776097535
Iteration: 7, Func. Count: 85, Neg. LLF: 66.49514261948255
Iteration: 8, Func. Count: 96, Neg. LLF: 66.49197131756084
Iteration: 9, Func. Count: 107, Neg. LLF: 66.49117993311236
Iteration: 10, Func. Count: 118, Neg. LLF: 66.49110750741436
Iteration: 11, Func. Count: 129, Neg. LLF: 66.49109853551782
Iteration: 12, Func. Count: 140, Neg. LLF: 66.49109746025992
Iteration: 13, Func. Count: 150, Neg. LLF: 66.49109749321038
Optimization terminated successfully (Exit mode 0)
Current function value: 66.49109746025992
Iterations: 13
Function evaluations: 150
Gradient evaluations: 13
Iteration: 1, Func. Count: 13, Neg. LLF: 101.97358076817315
Iteration: 2, Func. Count: 27, Neg. LLF: 107.67411803730074
Iteration: 3, Func. Count: 41, Neg. LLF: 16038678.214183943
Iteration: 4, Func. Count: 55, Neg. LLF: 67.63846237989664
Iteration: 5, Func. Count: 68, Neg. LLF: 66.52190584388096
Iteration: 6, Func. Count: 80, Neg. LLF: 66.49300041588279
Iteration: 7, Func. Count: 92, Neg. LLF: 66.49133845207156
Iteration: 8, Func. Count: 104, Neg. LLF: 66.49115026366242
Iteration: 9, Func. Count: 116, Neg. LLF: 66.49110055091526
Iteration: 10, Func. Count: 128, Neg. LLF: 66.49109858190955
Iteration: 11, Func. Count: 140, Neg. LLF: 66.4910973833225
Iteration: 12, Func. Count: 151, Neg. LLF: 66.49109740472367
Optimization terminated successfully (Exit mode 0)
Current function value: 66.4910973833225
Iterations: 12
Function evaluations: 151
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 122.41406470195295
Iteration: 2, Func. Count: 23, Neg. LLF: 133.69382385777718
Iteration: 3, Func. Count: 34, Neg. LLF: 3679575.333282448
Iteration: 4, Func. Count: 44, Neg. LLF: 70.43109060774222
Iteration: 5, Func. Count: 54, Neg. LLF: 68.90212759722586
Iteration: 6, Func. Count: 64, Neg. LLF: 126.37798587637302
Iteration: 7, Func. Count: 74, Neg. LLF: 64.57740865821502
Iteration: 8, Func. Count: 83, Neg. LLF: 64.45794194467237
Iteration: 9, Func. Count: 92, Neg. LLF: 64.36576453715851
Iteration: 10, Func. Count: 101, Neg. LLF: 64.35690476293537
Iteration: 11, Func. Count: 110, Neg. LLF: 64.35456007041168
Iteration: 12, Func. Count: 119, Neg. LLF: 64.35385817058716
Iteration: 13, Func. Count: 128, Neg. LLF: 64.35372029553864
Iteration: 14, Func. Count: 137, Neg. LLF: 64.35370493860923
Iteration: 15, Func. Count: 146, Neg. LLF: 64.35370216561708
Iteration: 16, Func. Count: 154, Neg. LLF: 64.35370216562481
Optimization terminated successfully (Exit mode 0)
Current function value: 64.35370216561708
Iterations: 16
Function evaluations: 154
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 88.30975720683388
Iteration: 2, Func. Count: 24, Neg. LLF: 739915.4720946323
Iteration: 3, Func. Count: 36, Neg. LLF: 3570685.375400011
Iteration: 4, Func. Count: 47, Neg. LLF: 70.35848487007392
Iteration: 5, Func. Count: 58, Neg. LLF: 69.80230688516704
Iteration: 6, Func. Count: 69, Neg. LLF: 67.91400223345649
Iteration: 7, Func. Count: 80, Neg. LLF: 64.61485040228357
Iteration: 8, Func. Count: 90, Neg. LLF: 65.24876333296142
Iteration: 9, Func. Count: 101, Neg. LLF: 64.4157367625007
Iteration: 10, Func. Count: 111, Neg. LLF: 64.3841532935812
Iteration: 11, Func. Count: 121, Neg. LLF: 64.36366166239954
Iteration: 12, Func. Count: 131, Neg. LLF: 64.35615809415091
Iteration: 13, Func. Count: 141, Neg. LLF: 64.35389600903147
Iteration: 14, Func. Count: 151, Neg. LLF: 64.35372918593603
Iteration: 15, Func. Count: 161, Neg. LLF: 64.35370598027636
Iteration: 16, Func. Count: 171, Neg. LLF: 64.3537021758183
Iteration: 17, Func. Count: 180, Neg. LLF: 64.35370228376576
Optimization terminated successfully (Exit mode 0)
Current function value: 64.3537021758183
Iterations: 17
Function evaluations: 180
Gradient evaluations: 17
Iteration: 1, Func. Count: 12, Neg. LLF: 88.03642404606431
Iteration: 2, Func. Count: 26, Neg. LLF: 830812.8929951043
Iteration: 3, Func. Count: 39, Neg. LLF: 3592000.3154830034
Iteration: 4, Func. Count: 51, Neg. LLF: 75.25663461850347
Iteration: 5, Func. Count: 63, Neg. LLF: 73.5567300689691
Iteration: 6, Func. Count: 75, Neg. LLF: 67.76177972936307
Iteration: 7, Func. Count: 87, Neg. LLF: 64.72715416440715
Iteration: 8, Func. Count: 98, Neg. LLF: 64.52520673636364
Iteration: 9, Func. Count: 109, Neg. LLF: 64.42333945598106
Iteration: 10, Func. Count: 120, Neg. LLF: 64.39113712872881
Iteration: 11, Func. Count: 131, Neg. LLF: 64.36438989427904
Iteration: 12, Func. Count: 142, Neg. LLF: 64.35449911486775
Iteration: 13, Func. Count: 153, Neg. LLF: 64.3537432874455
Iteration: 14, Func. Count: 164, Neg. LLF: 64.35370522830702
Iteration: 15, Func. Count: 175, Neg. LLF: 64.35370267559571
Iteration: 16, Func. Count: 186, Neg. LLF: 64.35370196175948
Optimization terminated successfully (Exit mode 0)
Current function value: 64.35370196175948
Iterations: 16
Function evaluations: 186
Gradient evaluations: 16
Iteration: 1, Func. Count: 13, Neg. LLF: 85.38200550739829
Iteration: 2, Func. Count: 28, Neg. LLF: 862395.5588752198
Iteration: 3, Func. Count: 42, Neg. LLF: 3529260.534231519
Iteration: 4, Func. Count: 55, Neg. LLF: 72.08838318803949
Iteration: 5, Func. Count: 68, Neg. LLF: 79.89447701688181
Iteration: 6, Func. Count: 81, Neg. LLF: 69.64618452508688
Iteration: 7, Func. Count: 94, Neg. LLF: 66.3655695160133
Iteration: 8, Func. Count: 107, Neg. LLF: 64.48588646688057
Iteration: 9, Func. Count: 119, Neg. LLF: 64.42607011504698
Iteration: 10, Func. Count: 131, Neg. LLF: 64.37486543108436
Iteration: 11, Func. Count: 143, Neg. LLF: 64.357551730002
Iteration: 12, Func. Count: 155, Neg. LLF: 64.35417929872116
Iteration: 13, Func. Count: 167, Neg. LLF: 64.35379973880339
Iteration: 14, Func. Count: 179, Neg. LLF: 64.35371930671805
Iteration: 15, Func. Count: 191, Neg. LLF: 64.35370385583477
Iteration: 16, Func. Count: 203, Neg. LLF: 64.35370207160348
Iteration: 17, Func. Count: 214, Neg. LLF: 64.35370214226042
Optimization terminated successfully (Exit mode 0)
Current function value: 64.35370207160348
Iterations: 17
Function evaluations: 214
Gradient evaluations: 17
Iteration: 1, Func. Count: 14, Neg. LLF: 85.23031856705681
Iteration: 2, Func. Count: 29, Neg. LLF: 785577.1660752416
Iteration: 3, Func. Count: 43, Neg. LLF: 3241920.983300424
Iteration: 4, Func. Count: 57, Neg. LLF: 74.81639314660829
Iteration: 5, Func. Count: 71, Neg. LLF: 69.13640369757634
Iteration: 6, Func. Count: 85, Neg. LLF: 72.28955703491388
Iteration: 7, Func. Count: 99, Neg. LLF: 68.11923636588908
Iteration: 8, Func. Count: 113, Neg. LLF: 64.48293174998537
Iteration: 9, Func. Count: 126, Neg. LLF: 64.9268617770147
Iteration: 10, Func. Count: 140, Neg. LLF: 64.56920675797335
Iteration: 11, Func. Count: 154, Neg. LLF: 64.35119256739179
Iteration: 12, Func. Count: 167, Neg. LLF: 64.3267356934582
Iteration: 13, Func. Count: 180, Neg. LLF: 64.31668989087682
Iteration: 14, Func. Count: 193, Neg. LLF: 64.31552556630639
Iteration: 15, Func. Count: 206, Neg. LLF: 64.31538857926223
Iteration: 16, Func. Count: 219, Neg. LLF: 64.3153832441155
Iteration: 17, Func. Count: 232, Neg. LLF: 64.31538267003154
Optimization terminated successfully (Exit mode 0)
Current function value: 64.31538267003154
Iterations: 17
Function evaluations: 232
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 133.45999951825007
Iteration: 2, Func. Count: 25, Neg. LLF: 131.7016381583183
Iteration: 3, Func. Count: 37, Neg. LLF: 1362675.1164518886
Iteration: 4, Func. Count: 48, Neg. LLF: 1746951.3451098232
Iteration: 5, Func. Count: 59, Neg. LLF: 64.46026859256278
Iteration: 6, Func. Count: 69, Neg. LLF: 65.31631970594542
Iteration: 7, Func. Count: 80, Neg. LLF: 64.1729882421738
Iteration: 8, Func. Count: 90, Neg. LLF: 64.2136402404478
Iteration: 9, Func. Count: 101, Neg. LLF: 63.8793750706248
Iteration: 10, Func. Count: 111, Neg. LLF: 64.09084421854551
Iteration: 11, Func. Count: 122, Neg. LLF: 63.83911652463914
Iteration: 12, Func. Count: 132, Neg. LLF: 63.83580497391849
Iteration: 13, Func. Count: 142, Neg. LLF: 63.83532267674213
Iteration: 14, Func. Count: 152, Neg. LLF: 63.835077463601316
Iteration: 15, Func. Count: 162, Neg. LLF: 63.835070596454045
Iteration: 16, Func. Count: 171, Neg. LLF: 63.83507059642986
Optimization terminated successfully (Exit mode 0)
Current function value: 63.835070596454045
Iterations: 16
Function evaluations: 171
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 102.47932543506361
Iteration: 2, Func. Count: 25, Neg. LLF: 1383981.7477468052
Iteration: 3, Func. Count: 37, Neg. LLF: 1239251.2111978058
Iteration: 4, Func. Count: 49, Neg. LLF: 388614.71071832476
Iteration: 5, Func. Count: 61, Neg. LLF: 71.28048848233088
Iteration: 6, Func. Count: 73, Neg. LLF: 72.94381517909052
Iteration: 7, Func. Count: 85, Neg. LLF: 64.14143769472801
Iteration: 8, Func. Count: 96, Neg. LLF: 68.56136726829203
Iteration: 9, Func. Count: 108, Neg. LLF: 64.2326881630004
Iteration: 10, Func. Count: 120, Neg. LLF: 63.8745632912367
Iteration: 11, Func. Count: 131, Neg. LLF: 63.84038386066795
Iteration: 12, Func. Count: 142, Neg. LLF: 63.83633406329502
Iteration: 13, Func. Count: 153, Neg. LLF: 63.83530885850153
Iteration: 14, Func. Count: 164, Neg. LLF: 63.83510980078839
Iteration: 15, Func. Count: 175, Neg. LLF: 63.835070475054074
Iteration: 16, Func. Count: 186, Neg. LLF: 63.835069743681224
Optimization terminated successfully (Exit mode 0)
Current function value: 63.835069743681224
Iterations: 16
Function evaluations: 186
Gradient evaluations: 16
Iteration: 1, Func. Count: 13, Neg. LLF: 100.37843522871609
Iteration: 2, Func. Count: 27, Neg. LLF: 405638.43098269886
Iteration: 3, Func. Count: 40, Neg. LLF: 2228321.096743321
Iteration: 4, Func. Count: 53, Neg. LLF: 1720013.288553969
Iteration: 5, Func. Count: 66, Neg. LLF: 64.83897158543432
Iteration: 6, Func. Count: 78, Neg. LLF: 450086.47575090744
Iteration: 7, Func. Count: 91, Neg. LLF: 65.72290558844739
Iteration: 8, Func. Count: 104, Neg. LLF: 64.51704797630669
Iteration: 9, Func. Count: 117, Neg. LLF: 65.71869709420928
Iteration: 10, Func. Count: 130, Neg. LLF: 63.8980695607676
Iteration: 11, Func. Count: 142, Neg. LLF: 63.857264224977044
Iteration: 12, Func. Count: 154, Neg. LLF: 63.84215574477074
Iteration: 13, Func. Count: 166, Neg. LLF: 63.83674951353992
Iteration: 14, Func. Count: 178, Neg. LLF: 63.835642714575656
Iteration: 15, Func. Count: 190, Neg. LLF: 63.83523897674881
Iteration: 16, Func. Count: 202, Neg. LLF: 63.83507714206578
Iteration: 17, Func. Count: 214, Neg. LLF: 63.835070466553866
Iteration: 18, Func. Count: 226, Neg. LLF: 63.83506981334269
Optimization terminated successfully (Exit mode 0)
Current function value: 63.83506981334269
Iterations: 18
Function evaluations: 226
Gradient evaluations: 18
Iteration: 1, Func. Count: 14, Neg. LLF: 99.43395874537414
Iteration: 2, Func. Count: 29, Neg. LLF: 434170.51217314077
Iteration: 3, Func. Count: 43, Neg. LLF: 1887048.399392076
Iteration: 4, Func. Count: 57, Neg. LLF: 1964978.1543764223
Iteration: 5, Func. Count: 71, Neg. LLF: 73.37114111544453
Iteration: 6, Func. Count: 85, Neg. LLF: 71.1198332108811
Iteration: 7, Func. Count: 99, Neg. LLF: 64.10280647952591
Iteration: 8, Func. Count: 112, Neg. LLF: 65.39168724943599
Iteration: 9, Func. Count: 126, Neg. LLF: 63.93737654435296
Iteration: 10, Func. Count: 139, Neg. LLF: 63.88526462780256
Iteration: 11, Func. Count: 152, Neg. LLF: 63.846816240946765
Iteration: 12, Func. Count: 165, Neg. LLF: 63.838140634807786
Iteration: 13, Func. Count: 178, Neg. LLF: 63.8355990123409
Iteration: 14, Func. Count: 191, Neg. LLF: 63.83513857149764
Iteration: 15, Func. Count: 204, Neg. LLF: 63.835083084486726
Iteration: 16, Func. Count: 217, Neg. LLF: 63.835070428492564
Iteration: 17, Func. Count: 230, Neg. LLF: 63.83506975935944
Optimization terminated successfully (Exit mode 0)
Current function value: 63.83506975935944
Iterations: 17
Function evaluations: 230
Gradient evaluations: 17
Iteration: 1, Func. Count: 15, Neg. LLF: 111.41421607282622
Iteration: 2, Func. Count: 30, Neg. LLF: 3748.792565004125
Iteration: 3, Func. Count: 45, Neg. LLF: 2425766.0899502644
Iteration: 4, Func. Count: 60, Neg. LLF: 2110026.7659197985
Iteration: 5, Func. Count: 75, Neg. LLF: 69.57433065620832
Iteration: 6, Func. Count: 90, Neg. LLF: 64.77040148363388
Iteration: 7, Func. Count: 104, Neg. LLF: 68.07688399043741
Iteration: 8, Func. Count: 119, Neg. LLF: 69.33822654696337
Iteration: 9, Func. Count: 135, Neg. LLF: 63.79203727791519
Iteration: 10, Func. Count: 149, Neg. LLF: 63.72380719913888
Iteration: 11, Func. Count: 163, Neg. LLF: 63.71008939843652
Iteration: 12, Func. Count: 177, Neg. LLF: 63.703935438427195
Iteration: 13, Func. Count: 191, Neg. LLF: 63.69777896813342
Iteration: 14, Func. Count: 205, Neg. LLF: 63.696531379437225
Iteration: 15, Func. Count: 219, Neg. LLF: 63.69610870089469
Iteration: 16, Func. Count: 233, Neg. LLF: 63.69609925248195
Iteration: 17, Func. Count: 247, Neg. LLF: 63.69609836898881
Optimization terminated successfully (Exit mode 0)
Current function value: 63.69609836898881
Iterations: 17
Function evaluations: 247
Gradient evaluations: 17
Iteration: 1, Func. Count: 12, Neg. LLF: 132.9598886184231
Iteration: 2, Func. Count: 27, Neg. LLF: 130.73982066926183
Iteration: 3, Func. Count: 40, Neg. LLF: 165310.4913487738
Iteration: 4, Func. Count: 52, Neg. LLF: 294292.4387376122
Iteration: 5, Func. Count: 64, Neg. LLF: 64.57322739727297
Iteration: 6, Func. Count: 75, Neg. LLF: 81.37196679364611
Iteration: 7, Func. Count: 87, Neg. LLF: 64.02647679872081
Iteration: 8, Func. Count: 98, Neg. LLF: 63.89378992210143
Iteration: 9, Func. Count: 109, Neg. LLF: 63.853250409364065
Iteration: 10, Func. Count: 120, Neg. LLF: 63.84144696253578
Iteration: 11, Func. Count: 131, Neg. LLF: 63.83548778568315
Iteration: 12, Func. Count: 142, Neg. LLF: 63.835169669154496
Iteration: 13, Func. Count: 153, Neg. LLF: 63.83512119377639
Iteration: 14, Func. Count: 164, Neg. LLF: 63.836840273495724
Iteration: 15, Func. Count: 176, Neg. LLF: 63.83507210165328
Iteration: 16, Func. Count: 187, Neg. LLF: 63.83507049173077
Iteration: 17, Func. Count: 197, Neg. LLF: 63.83507036701438
Optimization terminated successfully (Exit mode 0)
Current function value: 63.83507049173077
Iterations: 17
Function evaluations: 197
Gradient evaluations: 17
Iteration: 1, Func. Count: 13, Neg. LLF: 105.06729891458063
Iteration: 2, Func. Count: 27, Neg. LLF: 1412019.3061856772
Iteration: 3, Func. Count: 40, Neg. LLF: 1830945.75977062
Iteration: 4, Func. Count: 53, Neg. LLF: 323569.1193862194
Iteration: 5, Func. Count: 66, Neg. LLF: 72.85051478595794
Iteration: 6, Func. Count: 79, Neg. LLF: 69.78405404630169
Iteration: 7, Func. Count: 92, Neg. LLF: 64.14112791944173
Iteration: 8, Func. Count: 104, Neg. LLF: 68.35659865150008
Iteration: 9, Func. Count: 117, Neg. LLF: 64.11167421475159
Iteration: 10, Func. Count: 130, Neg. LLF: 63.86282445336286
Iteration: 11, Func. Count: 142, Neg. LLF: 63.837979670967336
Iteration: 12, Func. Count: 154, Neg. LLF: 63.8358002086143
Iteration: 13, Func. Count: 166, Neg. LLF: 63.83521037200462
Iteration: 14, Func. Count: 178, Neg. LLF: 63.835092885648486
Iteration: 15, Func. Count: 190, Neg. LLF: 63.83507048672253
Iteration: 16, Func. Count: 202, Neg. LLF: 63.83506974143899
Optimization terminated successfully (Exit mode 0)
Current function value: 63.83506974143899
Iterations: 16
Function evaluations: 202
Gradient evaluations: 16
Iteration: 1, Func. Count: 14, Neg. LLF: 101.7043058365278
Iteration: 2, Func. Count: 29, Neg. LLF: 426093.6720186304
Iteration: 3, Func. Count: 43, Neg. LLF: 1237660.1165092827
Iteration: 4, Func. Count: 57, Neg. LLF: 243.53954027287944
Iteration: 5, Func. Count: 71, Neg. LLF: 68.14094888103288
Iteration: 6, Func. Count: 85, Neg. LLF: 72.7389747357697
Iteration: 7, Func. Count: 99, Neg. LLF: 64.00500659606172
Iteration: 8, Func. Count: 112, Neg. LLF: 64.48969074791445
Iteration: 9, Func. Count: 126, Neg. LLF: 63.88586313295975
Iteration: 10, Func. Count: 139, Neg. LLF: 63.88835529280803
Iteration: 11, Func. Count: 153, Neg. LLF: 63.84254203561962
Iteration: 12, Func. Count: 166, Neg. LLF: 63.836189577389725
Iteration: 13, Func. Count: 179, Neg. LLF: 63.83523580250752
Iteration: 14, Func. Count: 192, Neg. LLF: 63.835080202185175
Iteration: 15, Func. Count: 205, Neg. LLF: 63.83507077703568
Iteration: 16, Func. Count: 218, Neg. LLF: 63.83506984699299
Optimization terminated successfully (Exit mode 0)
Current function value: 63.83506984699299
Iterations: 16
Function evaluations: 218
Gradient evaluations: 16
Iteration: 1, Func. Count: 15, Neg. LLF: 102.05896804277883
Iteration: 2, Func. Count: 31, Neg. LLF: 430416.0000529168
Iteration: 3, Func. Count: 46, Neg. LLF: 1869073.9335591279
Iteration: 4, Func. Count: 61, Neg. LLF: 64.58070437637063
Iteration: 5, Func. Count: 75, Neg. LLF: 69.16840190769743
Iteration: 6, Func. Count: 90, Neg. LLF: 69.20163577704096
Iteration: 7, Func. Count: 105, Neg. LLF: 66.65020499503808
Iteration: 8, Func. Count: 120, Neg. LLF: 64.80529551898941
Iteration: 9, Func. Count: 135, Neg. LLF: 63.967923592834495
Iteration: 10, Func. Count: 150, Neg. LLF: 63.84393045116172
Iteration: 11, Func. Count: 164, Neg. LLF: 63.836051957868534
Iteration: 12, Func. Count: 178, Neg. LLF: 63.83519684778273
Iteration: 13, Func. Count: 192, Neg. LLF: 63.835087251825875
Iteration: 14, Func. Count: 206, Neg. LLF: 63.83507019059944
Iteration: 15, Func. Count: 219, Neg. LLF: 63.83507026074069
Optimization terminated successfully (Exit mode 0)
Current function value: 63.83507019059944
Iterations: 15
Function evaluations: 219
Gradient evaluations: 15
Iteration: 1, Func. Count: 16, Neg. LLF: 110.94595198719152
Iteration: 2, Func. Count: 32, Neg. LLF: 3568.752776092887
Iteration: 3, Func. Count: 48, Neg. LLF: 2429715.742659473
Iteration: 4, Func. Count: 64, Neg. LLF: 2112433.2578364694
Iteration: 5, Func. Count: 80, Neg. LLF: 69.54977152987043
Iteration: 6, Func. Count: 96, Neg. LLF: 64.78404232190678
Iteration: 7, Func. Count: 111, Neg. LLF: 68.07085189908418
Iteration: 8, Func. Count: 127, Neg. LLF: 69.37303094770192
Iteration: 9, Func. Count: 144, Neg. LLF: 63.79365775523685
Iteration: 10, Func. Count: 159, Neg. LLF: 63.7245826222088
Iteration: 11, Func. Count: 174, Neg. LLF: 63.71061514818631
Iteration: 12, Func. Count: 189, Neg. LLF: 63.704615514993264
Iteration: 13, Func. Count: 204, Neg. LLF: 63.697895785957975
Iteration: 14, Func. Count: 219, Neg. LLF: 63.69658392401202
Iteration: 15, Func. Count: 234, Neg. LLF: 63.696109968275714
Iteration: 16, Func. Count: 249, Neg. LLF: 63.696099191073735
Iteration: 17, Func. Count: 264, Neg. LLF: 63.69609836214286
Optimization terminated successfully (Exit mode 0)
Current function value: 63.69609836214286
Iterations: 17
Function evaluations: 264
Gradient evaluations: 17
Iteration: 1, Func. Count: 7, Neg. LLF: 150.9337439835855
Iteration: 2, Func. Count: 17, Neg. LLF: 365.8610171854683
Iteration: 3, Func. Count: 25, Neg. LLF: 3059059.5271632415
Iteration: 4, Func. Count: 32, Neg. LLF: 69.93725196559603
Iteration: 5, Func. Count: 39, Neg. LLF: 65.2616943675401
Iteration: 6, Func. Count: 45, Neg. LLF: 65.68126371201964
Iteration: 7, Func. Count: 52, Neg. LLF: 65.16310422837844
Iteration: 8, Func. Count: 58, Neg. LLF: 65.1440970850134
Iteration: 9, Func. Count: 64, Neg. LLF: 65.1364821837584
Iteration: 10, Func. Count: 70, Neg. LLF: 65.13402477701497
Iteration: 11, Func. Count: 76, Neg. LLF: 65.13387166743
Iteration: 12, Func. Count: 82, Neg. LLF: 65.13386598801394
Iteration: 13, Func. Count: 87, Neg. LLF: 65.13386598803602
Optimization terminated successfully (Exit mode 0)
Current function value: 65.13386598801394
Iterations: 13
Function evaluations: 87
Gradient evaluations: 13
Iteration: 1, Func. Count: 5, Neg. LLF: 113.53951587042566
Iteration: 2, Func. Count: 12, Neg. LLF: 242.52108895472992
Iteration: 3, Func. Count: 18, Neg. LLF: 75.64928996448268
Iteration: 4, Func. Count: 22, Neg. LLF: 74.28228148657213
Iteration: 5, Func. Count: 26, Neg. LLF: 74.27388001568264
Iteration: 6, Func. Count: 31, Neg. LLF: 74.23646403834496
Iteration: 7, Func. Count: 35, Neg. LLF: 74.23646334024473
Optimization terminated successfully (Exit mode 0)
Current function value: 74.23646334024473
Iterations: 7
Function evaluations: 35
Gradient evaluations: 7
Iteration: 1, Func. Count: 6, Neg. LLF: 310762202.40701514
Iteration: 2, Func. Count: 13, Neg. LLF: 191.4753707515042
Iteration: 3, Func. Count: 21, Neg. LLF: 74.47746402463669
Iteration: 4, Func. Count: 27, Neg. LLF: 72.58999965180101
Iteration: 5, Func. Count: 33, Neg. LLF: 72.53864388358788
Iteration: 6, Func. Count: 39, Neg. LLF: 72.47511314873124
Iteration: 7, Func. Count: 45, Neg. LLF: 72.46808963202622
Iteration: 8, Func. Count: 50, Neg. LLF: 72.46803574978102
Iteration: 9, Func. Count: 56, Neg. LLF: 72.46789110158642
Iteration: 10, Func. Count: 61, Neg. LLF: 72.46788612156159
Iteration: 11, Func. Count: 65, Neg. LLF: 72.46788612156121
Optimization terminated successfully (Exit mode 0)
Current function value: 72.46788612156159
Iterations: 11
Function evaluations: 65
Gradient evaluations: 11
Iteration: 1, Func. Count: 7, Neg. LLF: 214836271.93357006
Iteration: 2, Func. Count: 15, Neg. LLF: 571309270.597251
Iteration: 3, Func. Count: 24, Neg. LLF: 76.10849768656556
Iteration: 4, Func. Count: 33, Neg. LLF: 72.62626105169271
Iteration: 5, Func. Count: 39, Neg. LLF: 72.50774285648299
Iteration: 6, Func. Count: 45, Neg. LLF: 72.47923321374623
Iteration: 7, Func. Count: 51, Neg. LLF: 72.47033553802693
Iteration: 8, Func. Count: 57, Neg. LLF: 72.46818525499309
Iteration: 9, Func. Count: 63, Neg. LLF: 72.4678917497798
Iteration: 10, Func. Count: 69, Neg. LLF: 72.46788624197303
Iteration: 11, Func. Count: 74, Neg. LLF: 72.46788624832023
Optimization terminated successfully (Exit mode 0)
Current function value: 72.46788624197303
Iterations: 11
Function evaluations: 74
Gradient evaluations: 11
Iteration: 1, Func. Count: 8, Neg. LLF: 27468359.33040803
Iteration: 2, Func. Count: 16, Neg. LLF: 1211.93627150204
Iteration: 3, Func. Count: 25, Neg. LLF: 74.65289626750162
Iteration: 4, Func. Count: 33, Neg. LLF: 78.96192088513271
Iteration: 5, Func. Count: 41, Neg. LLF: 72.53829659508357
Iteration: 6, Func. Count: 48, Neg. LLF: 72.52056513141645
Iteration: 7, Func. Count: 55, Neg. LLF: 72.51356866934192
Iteration: 8, Func. Count: 62, Neg. LLF: 72.51188779227016
Iteration: 9, Func. Count: 70, Neg. LLF: 72.50383552543613
Iteration: 10, Func. Count: 77, Neg. LLF: 72.50213175508586
Iteration: 11, Func. Count: 84, Neg. LLF: 72.50201971126009
Iteration: 12, Func. Count: 91, Neg. LLF: 72.50200700576883
Iteration: 13, Func. Count: 97, Neg. LLF: 72.50200700576069
Optimization terminated successfully (Exit mode 0)
Current function value: 72.50200700576883
Iterations: 13
Function evaluations: 97
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 28428264.32674861
Iteration: 2, Func. Count: 18, Neg. LLF: 5725.947949558592
Iteration: 3, Func. Count: 28, Neg. LLF: 76.3961408727064
Iteration: 4, Func. Count: 37, Neg. LLF: 77.42476110562482
Iteration: 5, Func. Count: 46, Neg. LLF: 72.72736304853662
Iteration: 6, Func. Count: 55, Neg. LLF: 72.5485033764441
Iteration: 7, Func. Count: 63, Neg. LLF: 72.53905177994963
Iteration: 8, Func. Count: 71, Neg. LLF: 72.53610791267064
Iteration: 9, Func. Count: 79, Neg. LLF: 72.50776551981549
Iteration: 10, Func. Count: 87, Neg. LLF: 72.50843223106992
Iteration: 11, Func. Count: 96, Neg. LLF: 72.50211141092292
Iteration: 12, Func. Count: 104, Neg. LLF: 72.50202544168226
Iteration: 13, Func. Count: 112, Neg. LLF: 72.50200709032903
Iteration: 14, Func. Count: 119, Neg. LLF: 72.50200710135697
Optimization terminated successfully (Exit mode 0)
Current function value: 72.50200709032903
Iterations: 14
Function evaluations: 119
Gradient evaluations: 14
Iteration: 1, Func. Count: 6, Neg. LLF: 123.69428258704379
Iteration: 2, Func. Count: 15, Neg. LLF: 837.141496134008
Iteration: 3, Func. Count: 22, Neg. LLF: 7825718.483157417
Iteration: 4, Func. Count: 28, Neg. LLF: 72.29050120912748
Iteration: 5, Func. Count: 33, Neg. LLF: 72.18246776648233
Iteration: 6, Func. Count: 38, Neg. LLF: 72.13890513497142
Iteration: 7, Func. Count: 43, Neg. LLF: 72.11331016832388
Iteration: 8, Func. Count: 48, Neg. LLF: 72.09619101187023
Iteration: 9, Func. Count: 53, Neg. LLF: 72.0832066571304
Iteration: 10, Func. Count: 58, Neg. LLF: 72.08250010425728
Iteration: 11, Func. Count: 63, Neg. LLF: 72.08249210178009
Iteration: 12, Func. Count: 67, Neg. LLF: 72.08249210178548
Optimization terminated successfully (Exit mode 0)
Current function value: 72.08249210178009
Iterations: 12
Function evaluations: 67
Gradient evaluations: 12
Iteration: 1, Func. Count: 7, Neg. LLF: 297505444.82647395
Iteration: 2, Func. Count: 15, Neg. LLF: 96.73905371621328
Iteration: 3, Func. Count: 22, Neg. LLF: 176.94647484315027
Iteration: 4, Func. Count: 30, Neg. LLF: 71.84550708015915
Iteration: 5, Func. Count: 37, Neg. LLF: 71.0448129416841
Iteration: 6, Func. Count: 43, Neg. LLF: 70.99332368839217
Iteration: 7, Func. Count: 49, Neg. LLF: 70.98251034870825
Iteration: 8, Func. Count: 55, Neg. LLF: 70.9726084610722
Iteration: 9, Func. Count: 61, Neg. LLF: 70.96930104749983
Iteration: 10, Func. Count: 67, Neg. LLF: 70.96880993469799
Iteration: 11, Func. Count: 73, Neg. LLF: 70.96879658350034
Iteration: 12, Func. Count: 79, Neg. LLF: 70.96879584856222
Optimization terminated successfully (Exit mode 0)
Current function value: 70.96879584856222
Iterations: 12
Function evaluations: 79
Gradient evaluations: 12
Iteration: 1, Func. Count: 8, Neg. LLF: 342002042.6613835
Iteration: 2, Func. Count: 17, Neg. LLF: 5275564.723704439
Iteration: 3, Func. Count: 25, Neg. LLF: 130.34463405814975
Iteration: 4, Func. Count: 33, Neg. LLF: 71.02178286780347
Iteration: 5, Func. Count: 40, Neg. LLF: 71.05282656182345
Iteration: 6, Func. Count: 48, Neg. LLF: 71.47312311331565
Iteration: 7, Func. Count: 56, Neg. LLF: 70.9679210849078
Iteration: 8, Func. Count: 63, Neg. LLF: 70.95388939296373
Iteration: 9, Func. Count: 70, Neg. LLF: 70.9508718128406
Iteration: 10, Func. Count: 77, Neg. LLF: 70.95017538696118
Iteration: 11, Func. Count: 84, Neg. LLF: 70.95012769231387
Iteration: 12, Func. Count: 91, Neg. LLF: 70.95012627500932
Iteration: 13, Func. Count: 97, Neg. LLF: 70.95012627504491
Optimization terminated successfully (Exit mode 0)
Current function value: 70.95012627500932
Iterations: 13
Function evaluations: 97
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 358152142.28960794
Iteration: 2, Func. Count: 19, Neg. LLF: 7455130.275926073
Iteration: 3, Func. Count: 28, Neg. LLF: 159.24884209142496
Iteration: 4, Func. Count: 38, Neg. LLF: 71.9002994123738
Iteration: 5, Func. Count: 47, Neg. LLF: 73.94154379898009
Iteration: 6, Func. Count: 56, Neg. LLF: 70.72219257542353
Iteration: 7, Func. Count: 64, Neg. LLF: 70.13387880183708
Iteration: 8, Func. Count: 72, Neg. LLF: 71.2420934074587
Iteration: 9, Func. Count: 81, Neg. LLF: 69.92930635030432
Iteration: 10, Func. Count: 89, Neg. LLF: 69.90803966442888
Iteration: 11, Func. Count: 98, Neg. LLF: 69.80972578888782
Iteration: 12, Func. Count: 106, Neg. LLF: 69.79201132976272
Iteration: 13, Func. Count: 114, Neg. LLF: 69.79113176608466
Iteration: 14, Func. Count: 122, Neg. LLF: 69.79104287655933
Iteration: 15, Func. Count: 131, Neg. LLF: 69.79075837941569
Iteration: 16, Func. Count: 139, Neg. LLF: 69.790750026909
Iteration: 17, Func. Count: 147, Neg. LLF: 69.79074858048658
Iteration: 18, Func. Count: 154, Neg. LLF: 69.79074858045601
Optimization terminated successfully (Exit mode 0)
Current function value: 69.79074858048658
Iterations: 18
Function evaluations: 154
Gradient evaluations: 18
Iteration: 1, Func. Count: 10, Neg. LLF: 122221363.79204193
Iteration: 2, Func. Count: 21, Neg. LLF: 5281028.884421017
Iteration: 3, Func. Count: 31, Neg. LLF: 73.0959010301262
Iteration: 4, Func. Count: 41, Neg. LLF: 71.24619890020588
Iteration: 5, Func. Count: 51, Neg. LLF: 73.64523367855664
Iteration: 6, Func. Count: 61, Neg. LLF: 81.67299765354457
Iteration: 7, Func. Count: 71, Neg. LLF: 79.56373725967076
Iteration: 8, Func. Count: 81, Neg. LLF: 70.83834682596024
Iteration: 9, Func. Count: 91, Neg. LLF: 70.6210304617721
Iteration: 10, Func. Count: 101, Neg. LLF: 70.4461084945536
Iteration: 11, Func. Count: 110, Neg. LLF: 70.57765922513167
Iteration: 12, Func. Count: 120, Neg. LLF: 70.43109311425255
Iteration: 13, Func. Count: 129, Neg. LLF: 70.43002033241777
Iteration: 14, Func. Count: 139, Neg. LLF: 70.42459754795749
Iteration: 15, Func. Count: 149, Neg. LLF: 70.42422548063475
Iteration: 16, Func. Count: 158, Neg. LLF: 70.42419681470805
Iteration: 17, Func. Count: 166, Neg. LLF: 70.42419681470712
Optimization terminated successfully (Exit mode 0)
Current function value: 70.42419681470805
Iterations: 17
Function evaluations: 166
Gradient evaluations: 17
Iteration: 1, Func. Count: 7, Neg. LLF: 138.93605775803792
Iteration: 2, Func. Count: 17, Neg. LLF: 776.6914864746774
Iteration: 3, Func. Count: 25, Neg. LLF: 4562922.26653612
Iteration: 4, Func. Count: 32, Neg. LLF: 7839900.21956857
Iteration: 5, Func. Count: 39, Neg. LLF: 72.19630949329066
Iteration: 6, Func. Count: 46, Neg. LLF: 71.28589902426049
Iteration: 7, Func. Count: 52, Neg. LLF: 71.15790898822917
Iteration: 8, Func. Count: 58, Neg. LLF: 71.12794004417967
Iteration: 9, Func. Count: 64, Neg. LLF: 71.11249499128773
Iteration: 10, Func. Count: 70, Neg. LLF: 71.10751890257654
Iteration: 11, Func. Count: 76, Neg. LLF: 71.10636973088856
Iteration: 12, Func. Count: 82, Neg. LLF: 71.10627404097971
Iteration: 13, Func. Count: 88, Neg. LLF: 71.10626306007687
Iteration: 14, Func. Count: 94, Neg. LLF: 71.1062619761912
Iteration: 15, Func. Count: 99, Neg. LLF: 71.10626197618977
Optimization terminated successfully (Exit mode 0)
Current function value: 71.1062619761912
Iterations: 15
Function evaluations: 99
Gradient evaluations: 15
Iteration: 1, Func. Count: 8, Neg. LLF: 259909010.15999484
Iteration: 2, Func. Count: 17, Neg. LLF: 78.17972072633577
Iteration: 3, Func. Count: 25, Neg. LLF: 7132724.019665071
Iteration: 4, Func. Count: 33, Neg. LLF: 72.22012570864659
Iteration: 5, Func. Count: 42, Neg. LLF: 71.04212396391422
Iteration: 6, Func. Count: 49, Neg. LLF: 70.96937837567874
Iteration: 7, Func. Count: 56, Neg. LLF: 70.968815783738
Iteration: 8, Func. Count: 63, Neg. LLF: 70.96879832979884
Iteration: 9, Func. Count: 70, Neg. LLF: 70.9687971332693
Iteration: 10, Func. Count: 77, Neg. LLF: 70.96879593928577
Iteration: 11, Func. Count: 83, Neg. LLF: 70.96879593928924
Optimization terminated successfully (Exit mode 0)
Current function value: 70.96879593928577
Iterations: 11
Function evaluations: 83
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 270762575.0073751
Iteration: 2, Func. Count: 19, Neg. LLF: 329.57837271010584
Iteration: 3, Func. Count: 28, Neg. LLF: 132.95135969829155
Iteration: 4, Func. Count: 38, Neg. LLF: 71.32191328196376
Iteration: 5, Func. Count: 47, Neg. LLF: 75.15944078342113
Iteration: 6, Func. Count: 56, Neg. LLF: 71.11910123570277
Iteration: 7, Func. Count: 65, Neg. LLF: 70.9852673623247
Iteration: 8, Func. Count: 73, Neg. LLF: 70.96598641715539
Iteration: 9, Func. Count: 81, Neg. LLF: 70.95567572454415
Iteration: 10, Func. Count: 89, Neg. LLF: 70.9525772166515
Iteration: 11, Func. Count: 97, Neg. LLF: 70.95018864451737
Iteration: 12, Func. Count: 105, Neg. LLF: 70.95012740866133
Iteration: 13, Func. Count: 113, Neg. LLF: 70.95012630844663
Iteration: 14, Func. Count: 120, Neg. LLF: 70.95012630840715
Optimization terminated successfully (Exit mode 0)
Current function value: 70.95012630844663
Iterations: 14
Function evaluations: 120
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 93607483.26513693
Iteration: 2, Func. Count: 20, Neg. LLF: 6840079.407814127
Iteration: 3, Func. Count: 30, Neg. LLF: 74.51785054632754
Iteration: 4, Func. Count: 41, Neg. LLF: 73.79421184264909
Iteration: 5, Func. Count: 51, Neg. LLF: 70.42487711290316
Iteration: 6, Func. Count: 60, Neg. LLF: 71.37191479975387
Iteration: 7, Func. Count: 71, Neg. LLF: 72.28564278150408
Iteration: 8, Func. Count: 81, Neg. LLF: 69.82884120754298
Iteration: 9, Func. Count: 90, Neg. LLF: 69.81586191815022
Iteration: 10, Func. Count: 100, Neg. LLF: 70.42738322154558
Iteration: 11, Func. Count: 110, Neg. LLF: 69.76747741032389
Iteration: 12, Func. Count: 119, Neg. LLF: 69.76699757566331
Iteration: 13, Func. Count: 128, Neg. LLF: 69.76666229216792
Iteration: 14, Func. Count: 137, Neg. LLF: 69.76664030664053
Iteration: 15, Func. Count: 145, Neg. LLF: 69.76664030198555
Optimization terminated successfully (Exit mode 0)
Current function value: 69.76664030664053
Iterations: 15
Function evaluations: 145
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 94804285.51580493
Iteration: 2, Func. Count: 22, Neg. LLF: 6632388.059714531
Iteration: 3, Func. Count: 33, Neg. LLF: 72.56345342618683
Iteration: 4, Func. Count: 45, Neg. LLF: 85.41572279084882
Iteration: 5, Func. Count: 56, Neg. LLF: 73.67912742341646
Iteration: 6, Func. Count: 67, Neg. LLF: 80.92747762531542
Iteration: 7, Func. Count: 78, Neg. LLF: 80.54822228279136
Iteration: 8, Func. Count: 89, Neg. LLF: 78.80249808975354
Iteration: 9, Func. Count: 100, Neg. LLF: 74.20631302297558
Iteration: 10, Func. Count: 111, Neg. LLF: 71.27032244875114
Iteration: 11, Func. Count: 122, Neg. LLF: 70.51349927807429
Iteration: 12, Func. Count: 132, Neg. LLF: 70.53792923486463
Iteration: 13, Func. Count: 143, Neg. LLF: 71.19362085636757
Iteration: 14, Func. Count: 154, Neg. LLF: 70.40704681397548
Iteration: 15, Func. Count: 164, Neg. LLF: 70.4324140940878
Iteration: 16, Func. Count: 175, Neg. LLF: 70.36252264137143
Iteration: 17, Func. Count: 185, Neg. LLF: 70.30783255902324
Iteration: 18, Func. Count: 195, Neg. LLF: 70.28548542276107
Iteration: 19, Func. Count: 205, Neg. LLF: 70.27606782428344
Iteration: 20, Func. Count: 215, Neg. LLF: 70.27455752922423
Iteration: 21, Func. Count: 225, Neg. LLF: 70.27446930937008
Iteration: 22, Func. Count: 235, Neg. LLF: 70.27446750970046
Iteration: 23, Func. Count: 244, Neg. LLF: 70.27446750970331
Optimization terminated successfully (Exit mode 0)
Current function value: 70.27446750970046
Iterations: 23
Function evaluations: 244
Gradient evaluations: 23
Iteration: 1, Func. Count: 8, Neg. LLF: 130.6626324458859
Iteration: 2, Func. Count: 19, Neg. LLF: 1543.112783731466
Iteration: 3, Func. Count: 28, Neg. LLF: 4483835.668738527
Iteration: 4, Func. Count: 36, Neg. LLF: 3538597.3243574696
Iteration: 5, Func. Count: 44, Neg. LLF: 86.44148855839704
Iteration: 6, Func. Count: 52, Neg. LLF: 98.77058974092067
Iteration: 7, Func. Count: 60, Neg. LLF: 72.7334715948278
Iteration: 8, Func. Count: 68, Neg. LLF: 71.33648133445793
Iteration: 9, Func. Count: 75, Neg. LLF: 71.3411912296841
Iteration: 10, Func. Count: 83, Neg. LLF: 71.11213011775443
Iteration: 11, Func. Count: 90, Neg. LLF: 71.0828599063187
Iteration: 12, Func. Count: 97, Neg. LLF: 71.07149140473977
Iteration: 13, Func. Count: 104, Neg. LLF: 71.0655071879431
Iteration: 14, Func. Count: 111, Neg. LLF: 71.05931409643159
Iteration: 15, Func. Count: 118, Neg. LLF: 71.05710425158408
Iteration: 16, Func. Count: 125, Neg. LLF: 71.05663408643647
Iteration: 17, Func. Count: 132, Neg. LLF: 71.05658677216755
Iteration: 18, Func. Count: 139, Neg. LLF: 71.05658299863835
Iteration: 19, Func. Count: 146, Neg. LLF: 71.05658214633388
Optimization terminated successfully (Exit mode 0)
Current function value: 71.05658214633388
Iterations: 19
Function evaluations: 146
Gradient evaluations: 19
Iteration: 1, Func. Count: 9, Neg. LLF: 288611519.76596594
Iteration: 2, Func. Count: 19, Neg. LLF: 137.69506650469685
Iteration: 3, Func. Count: 30, Neg. LLF: 100.50006139710008
Iteration: 4, Func. Count: 39, Neg. LLF: 73.07566729746176
Iteration: 5, Func. Count: 49, Neg. LLF: 71.51970665144246
Iteration: 6, Func. Count: 58, Neg. LLF: 71.08440651521353
Iteration: 7, Func. Count: 66, Neg. LLF: 71.04406766307103
Iteration: 8, Func. Count: 74, Neg. LLF: 71.00079629408103
Iteration: 9, Func. Count: 82, Neg. LLF: 70.97161686559056
Iteration: 10, Func. Count: 90, Neg. LLF: 70.9690336853634
Iteration: 11, Func. Count: 98, Neg. LLF: 70.96885719363429
Iteration: 12, Func. Count: 106, Neg. LLF: 70.96875591795634
Iteration: 13, Func. Count: 114, Neg. LLF: 70.96865662033184
Iteration: 14, Func. Count: 122, Neg. LLF: 70.96850542976213
Iteration: 15, Func. Count: 130, Neg. LLF: 70.96845160521141
Iteration: 16, Func. Count: 138, Neg. LLF: 70.9684326398991
Iteration: 17, Func. Count: 145, Neg. LLF: 70.96843264002133
Optimization terminated successfully (Exit mode 0)
Current function value: 70.9684326398991
Iterations: 17
Function evaluations: 145
Gradient evaluations: 17
Iteration: 1, Func. Count: 10, Neg. LLF: 305347130.6058305
Iteration: 2, Func. Count: 21, Neg. LLF: 131.51283288759393
Iteration: 3, Func. Count: 31, Neg. LLF: 125.88716303061067
Iteration: 4, Func. Count: 42, Neg. LLF: 71.252466307461
Iteration: 5, Func. Count: 51, Neg. LLF: 73.78358033111799
Iteration: 6, Func. Count: 61, Neg. LLF: 71.02986113101866
Iteration: 7, Func. Count: 70, Neg. LLF: 71.05933985762597
Iteration: 8, Func. Count: 80, Neg. LLF: 70.98227176351091
Iteration: 9, Func. Count: 89, Neg. LLF: 70.96979243021335
Iteration: 10, Func. Count: 98, Neg. LLF: 70.96018779390998
Iteration: 11, Func. Count: 107, Neg. LLF: 70.95457871672868
Iteration: 12, Func. Count: 116, Neg. LLF: 70.9538675410513
Iteration: 13, Func. Count: 125, Neg. LLF: 70.95329828474377
Iteration: 14, Func. Count: 134, Neg. LLF: 70.95037027389789
Iteration: 15, Func. Count: 143, Neg. LLF: 70.95015316575923
Iteration: 16, Func. Count: 152, Neg. LLF: 70.95013025757392
Iteration: 17, Func. Count: 161, Neg. LLF: 70.95012734429733
Iteration: 18, Func. Count: 170, Neg. LLF: 70.95012617110808
Iteration: 19, Func. Count: 178, Neg. LLF: 70.9501261711147
Optimization terminated successfully (Exit mode 0)
Current function value: 70.95012617110808
Iterations: 19
Function evaluations: 178
Gradient evaluations: 19
Iteration: 1, Func. Count: 11, Neg. LLF: 118844881.04601412
Iteration: 2, Func. Count: 22, Neg. LLF: 6930839.011104092
Iteration: 3, Func. Count: 33, Neg. LLF: 76.83438654473761
Iteration: 4, Func. Count: 46, Neg. LLF: 76.5511331993968
Iteration: 5, Func. Count: 57, Neg. LLF: 70.40423856537721
Iteration: 6, Func. Count: 67, Neg. LLF: 70.71193124559352
Iteration: 7, Func. Count: 78, Neg. LLF: 73.62872583060583
Iteration: 8, Func. Count: 90, Neg. LLF: 70.3975536855808
Iteration: 9, Func. Count: 101, Neg. LLF: 69.83820749431688
Iteration: 10, Func. Count: 111, Neg. LLF: 76.67120507813773
Iteration: 11, Func. Count: 123, Neg. LLF: 69.81145224240106
Iteration: 12, Func. Count: 134, Neg. LLF: 69.78250136896087
Iteration: 13, Func. Count: 145, Neg. LLF: 69.76786258450358
Iteration: 14, Func. Count: 155, Neg. LLF: 69.76665646360459
Iteration: 15, Func. Count: 165, Neg. LLF: 69.76664185093222
Iteration: 16, Func. Count: 175, Neg. LLF: 69.7666400401133
Iteration: 17, Func. Count: 184, Neg. LLF: 69.7666400356212
Optimization terminated successfully (Exit mode 0)
Current function value: 69.7666400401133
Iterations: 17
Function evaluations: 184
Gradient evaluations: 17
Iteration: 1, Func. Count: 12, Neg. LLF: 123171708.8479748
Iteration: 2, Func. Count: 24, Neg. LLF: 6682467.87332596
Iteration: 3, Func. Count: 36, Neg. LLF: 74.45267169681296
Iteration: 4, Func. Count: 49, Neg. LLF: 84.51185465353927
Iteration: 5, Func. Count: 61, Neg. LLF: 72.3671767847629
Iteration: 6, Func. Count: 73, Neg. LLF: 81.46519791640887
Iteration: 7, Func. Count: 85, Neg. LLF: 79.66379117015688
Iteration: 8, Func. Count: 97, Neg. LLF: 74.60971688008857
Iteration: 9, Func. Count: 109, Neg. LLF: 73.35611557141169
Iteration: 10, Func. Count: 121, Neg. LLF: 70.94320608322762
Iteration: 11, Func. Count: 133, Neg. LLF: 70.4613020214154
Iteration: 12, Func. Count: 144, Neg. LLF: 70.6124655589718
Iteration: 13, Func. Count: 156, Neg. LLF: 70.75664452163396
Iteration: 14, Func. Count: 169, Neg. LLF: 70.39911067907792
Iteration: 15, Func. Count: 180, Neg. LLF: 70.35910223651611
Iteration: 16, Func. Count: 191, Neg. LLF: 70.3218947218343
Iteration: 17, Func. Count: 202, Neg. LLF: 70.27851793517225
Iteration: 18, Func. Count: 213, Neg. LLF: 70.27491609603064
Iteration: 19, Func. Count: 224, Neg. LLF: 70.27448161138352
Iteration: 20, Func. Count: 235, Neg. LLF: 70.27446794588556
Iteration: 21, Func. Count: 245, Neg. LLF: 70.27446794585981
Optimization terminated successfully (Exit mode 0)
Current function value: 70.27446794588556
Iterations: 21
Function evaluations: 245
Gradient evaluations: 21
Iteration: 1, Func. Count: 5, Neg. LLF: 163.66543598027366
Iteration: 2, Func. Count: 13, Neg. LLF: 262.9404059706918
Iteration: 3, Func. Count: 19, Neg. LLF: 74.39571067794884
Iteration: 4, Func. Count: 24, Neg. LLF: 73.67500509373977
Iteration: 5, Func. Count: 28, Neg. LLF: 73.65983715897299
Iteration: 6, Func. Count: 32, Neg. LLF: 73.65895782688702
Iteration: 7, Func. Count: 36, Neg. LLF: 73.65889668896523
Iteration: 8, Func. Count: 40, Neg. LLF: 73.6588844584484
Iteration: 9, Func. Count: 44, Neg. LLF: 73.65888012342207
Iteration: 10, Func. Count: 47, Neg. LLF: 73.65888012342438
Optimization terminated successfully (Exit mode 0)
Current function value: 73.65888012342207
Iterations: 10
Function evaluations: 47
Gradient evaluations: 10
Iteration: 1, Func. Count: 6, Neg. LLF: 182.61050639934956
Iteration: 2, Func. Count: 13, Neg. LLF: 199.6715499229317
Iteration: 3, Func. Count: 21, Neg. LLF: 79.3648446658497
Iteration: 4, Func. Count: 28, Neg. LLF: 73.70854813325515
Iteration: 5, Func. Count: 34, Neg. LLF: 71.59898120626264
Iteration: 6, Func. Count: 39, Neg. LLF: 71.59697679582499
Iteration: 7, Func. Count: 44, Neg. LLF: 71.59684800688304
Iteration: 8, Func. Count: 49, Neg. LLF: 71.59684520783907
Iteration: 9, Func. Count: 53, Neg. LLF: 71.59684520786605
Optimization terminated successfully (Exit mode 0)
Current function value: 71.59684520783907
Iterations: 9
Function evaluations: 53
Gradient evaluations: 9
Iteration: 1, Func. Count: 7, Neg. LLF: 24444725.937856894
Iteration: 2, Func. Count: 15, Neg. LLF: 74.85357344512185
Iteration: 3, Func. Count: 23, Neg. LLF: 75.19788452455083
Iteration: 4, Func. Count: 30, Neg. LLF: 73.48999656460566
Iteration: 5, Func. Count: 37, Neg. LLF: 71.4038599217786
Iteration: 6, Func. Count: 43, Neg. LLF: 71.32357228398462
Iteration: 7, Func. Count: 49, Neg. LLF: 71.30323365748116
Iteration: 8, Func. Count: 55, Neg. LLF: 71.30072544401975
Iteration: 9, Func. Count: 61, Neg. LLF: 71.30050504240455
Iteration: 10, Func. Count: 67, Neg. LLF: 71.30049442297988
Iteration: 11, Func. Count: 72, Neg. LLF: 71.30049442300509
Optimization terminated successfully (Exit mode 0)
Current function value: 71.30049442297988
Iterations: 11
Function evaluations: 72
Gradient evaluations: 11
Iteration: 1, Func. Count: 8, Neg. LLF: 43456870.415551804
Iteration: 2, Func. Count: 17, Neg. LLF: 76.13686719157687
Iteration: 3, Func. Count: 25, Neg. LLF: 2028.0492316911327
Iteration: 4, Func. Count: 33, Neg. LLF: 79.29625884013062
Iteration: 5, Func. Count: 41, Neg. LLF: 78.2007318176018
Iteration: 6, Func. Count: 49, Neg. LLF: 71.95891099476718
Iteration: 7, Func. Count: 57, Neg. LLF: 71.31354308935708
Iteration: 8, Func. Count: 64, Neg. LLF: 71.30475474971354
Iteration: 9, Func. Count: 71, Neg. LLF: 71.30213664978986
Iteration: 10, Func. Count: 78, Neg. LLF: 71.30051807526611
Iteration: 11, Func. Count: 85, Neg. LLF: 71.30049448181036
Iteration: 12, Func. Count: 91, Neg. LLF: 71.30049450119516
Optimization terminated successfully (Exit mode 0)
Current function value: 71.30049448181036
Iterations: 12
Function evaluations: 91
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 44687156.39554247
Iteration: 2, Func. Count: 19, Neg. LLF: 77.06919150347652
Iteration: 3, Func. Count: 28, Neg. LLF: 1905.7389241448686
Iteration: 4, Func. Count: 37, Neg. LLF: 79.69863599070871
Iteration: 5, Func. Count: 46, Neg. LLF: 72.42217783538077
Iteration: 6, Func. Count: 55, Neg. LLF: 76.18290248865202
Iteration: 7, Func. Count: 64, Neg. LLF: 71.31157793278517
Iteration: 8, Func. Count: 72, Neg. LLF: 71.30065390584782
Iteration: 9, Func. Count: 80, Neg. LLF: 71.30049625605051
Iteration: 10, Func. Count: 88, Neg. LLF: 71.30049441434008
Iteration: 11, Func. Count: 95, Neg. LLF: 71.300494445159
Optimization terminated successfully (Exit mode 0)
Current function value: 71.30049441434008
Iterations: 11
Function evaluations: 95
Gradient evaluations: 11
Iteration: 1, Func. Count: 6, Neg. LLF: 184.05428360456384
Iteration: 2, Func. Count: 15, Neg. LLF: 160.48646392160566
Iteration: 3, Func. Count: 22, Neg. LLF: 74.05608024340282
Iteration: 4, Func. Count: 28, Neg. LLF: 72.71650692553816
Iteration: 5, Func. Count: 33, Neg. LLF: 74.32457809671799
Iteration: 6, Func. Count: 39, Neg. LLF: 72.69768151188674
Iteration: 7, Func. Count: 44, Neg. LLF: 72.69767774690385
Iteration: 8, Func. Count: 48, Neg. LLF: 72.69767771108448
Optimization terminated successfully (Exit mode 0)
Current function value: 72.69767774690385
Iterations: 8
Function evaluations: 48
Gradient evaluations: 8
Iteration: 1, Func. Count: 7, Neg. LLF: 97.66215374197793
Iteration: 2, Func. Count: 15, Neg. LLF: 378.0996217697127
Iteration: 3, Func. Count: 23, Neg. LLF: 77.20979204520187
Iteration: 4, Func. Count: 31, Neg. LLF: 71.15660238128878
Iteration: 5, Func. Count: 37, Neg. LLF: 71.29155877139392
Iteration: 6, Func. Count: 44, Neg. LLF: 71.08359545146199
Iteration: 7, Func. Count: 50, Neg. LLF: 71.07443337356183
Iteration: 8, Func. Count: 56, Neg. LLF: 71.07422387444163
Iteration: 9, Func. Count: 62, Neg. LLF: 71.07419433881415
Iteration: 10, Func. Count: 67, Neg. LLF: 71.07419433887644
Optimization terminated successfully (Exit mode 0)
Current function value: 71.07419433881415
Iterations: 10
Function evaluations: 67
Gradient evaluations: 10
Iteration: 1, Func. Count: 8, Neg. LLF: 24115547.694082808
Iteration: 2, Func. Count: 17, Neg. LLF: 73.22183089634302
Iteration: 3, Func. Count: 26, Neg. LLF: 113.23334183743519
Iteration: 4, Func. Count: 34, Neg. LLF: 73.71967662310918
Iteration: 5, Func. Count: 42, Neg. LLF: 70.42899394833044
Iteration: 6, Func. Count: 49, Neg. LLF: 75.39804140060089
Iteration: 7, Func. Count: 58, Neg. LLF: 73.88110423288104
Iteration: 8, Func. Count: 66, Neg. LLF: 70.10052482563768
Iteration: 9, Func. Count: 73, Neg. LLF: 70.0813908857622
Iteration: 10, Func. Count: 80, Neg. LLF: 70.07743957203574
Iteration: 11, Func. Count: 87, Neg. LLF: 70.0758138423811
Iteration: 12, Func. Count: 94, Neg. LLF: 70.07576832688677
Iteration: 13, Func. Count: 101, Neg. LLF: 70.0757584289901
Iteration: 14, Func. Count: 107, Neg. LLF: 70.07575842895416
Optimization terminated successfully (Exit mode 0)
Current function value: 70.0757584289901
Iterations: 14
Function evaluations: 107
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 24360426.771576818
Iteration: 2, Func. Count: 18, Neg. LLF: 109.25955674065249
Iteration: 3, Func. Count: 27, Neg. LLF: 80.17742738346425
Iteration: 4, Func. Count: 36, Neg. LLF: 364.8067977783647
Iteration: 5, Func. Count: 45, Neg. LLF: 78.49347427911596
Iteration: 6, Func. Count: 55, Neg. LLF: 70.85044991000673
Iteration: 7, Func. Count: 63, Neg. LLF: 74.52298354000916
Iteration: 8, Func. Count: 73, Neg. LLF: 77.39946472603174
Iteration: 9, Func. Count: 83, Neg. LLF: 70.10222924983144
Iteration: 10, Func. Count: 91, Neg. LLF: 70.08339553368016
Iteration: 11, Func. Count: 99, Neg. LLF: 70.07673242812982
Iteration: 12, Func. Count: 107, Neg. LLF: 70.07589576847694
Iteration: 13, Func. Count: 115, Neg. LLF: 70.07576888758013
Iteration: 14, Func. Count: 123, Neg. LLF: 70.07576089116003
Iteration: 15, Func. Count: 131, Neg. LLF: 70.07575832896674
Iteration: 16, Func. Count: 138, Neg. LLF: 70.07575833721943
Optimization terminated successfully (Exit mode 0)
Current function value: 70.07575832896674
Iterations: 16
Function evaluations: 138
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 25017913.48489835
Iteration: 2, Func. Count: 21, Neg. LLF: 130.38404551088863
Iteration: 3, Func. Count: 31, Neg. LLF: 152.20162915073723
Iteration: 4, Func. Count: 41, Neg. LLF: 92.58096704857206
Iteration: 5, Func. Count: 51, Neg. LLF: 81.01155532607122
Iteration: 6, Func. Count: 61, Neg. LLF: 71.34146802684226
Iteration: 7, Func. Count: 71, Neg. LLF: 70.47743153959883
Iteration: 8, Func. Count: 80, Neg. LLF: 94.31708998098432
Iteration: 9, Func. Count: 90, Neg. LLF: 70.14436627916213
Iteration: 10, Func. Count: 99, Neg. LLF: 70.23834985720148
Iteration: 11, Func. Count: 109, Neg. LLF: 70.11762304523315
Iteration: 12, Func. Count: 119, Neg. LLF: 70.07704483659597
Iteration: 13, Func. Count: 128, Neg. LLF: 70.0758962133191
Iteration: 14, Func. Count: 137, Neg. LLF: 70.07576204053701
Iteration: 15, Func. Count: 146, Neg. LLF: 70.07575859207968
Iteration: 16, Func. Count: 154, Neg. LLF: 70.07575863491698
Optimization terminated successfully (Exit mode 0)
Current function value: 70.07575859207968
Iterations: 16
Function evaluations: 154
Gradient evaluations: 16
Iteration: 1, Func. Count: 7, Neg. LLF: 147.04315721019734
Iteration: 2, Func. Count: 17, Neg. LLF: 394.72740132415566
Iteration: 3, Func. Count: 25, Neg. LLF: 4417920.505436773
Iteration: 4, Func. Count: 32, Neg. LLF: 71.67750020844676
Iteration: 5, Func. Count: 39, Neg. LLF: 74.26134188484514
Iteration: 6, Func. Count: 46, Neg. LLF: 70.32411706059199
Iteration: 7, Func. Count: 52, Neg. LLF: 72.94248121231847
Iteration: 8, Func. Count: 59, Neg. LLF: 70.1698619443113
Iteration: 9, Func. Count: 65, Neg. LLF: 70.21253517160439
Iteration: 10, Func. Count: 72, Neg. LLF: 70.13183189336272
Iteration: 11, Func. Count: 78, Neg. LLF: 70.12830116758927
Iteration: 12, Func. Count: 84, Neg. LLF: 70.12778893869246
Iteration: 13, Func. Count: 90, Neg. LLF: 70.12778219685536
Iteration: 14, Func. Count: 95, Neg. LLF: 70.12778219685694
Optimization terminated successfully (Exit mode 0)
Current function value: 70.12778219685536
Iterations: 14
Function evaluations: 95
Gradient evaluations: 14
Iteration: 1, Func. Count: 8, Neg. LLF: 601016.6575421323
Iteration: 2, Func. Count: 17, Neg. LLF: 84.8168826676562
Iteration: 3, Func. Count: 27, Neg. LLF: 96.62764023142992
Iteration: 4, Func. Count: 35, Neg. LLF: 73.59819977633805
Iteration: 5, Func. Count: 43, Neg. LLF: 70.53749851027668
Iteration: 6, Func. Count: 50, Neg. LLF: 71.23246244391424
Iteration: 7, Func. Count: 58, Neg. LLF: 70.33142374134326
Iteration: 8, Func. Count: 65, Neg. LLF: 70.24751609151927
Iteration: 9, Func. Count: 72, Neg. LLF: 70.24225397173888
Iteration: 10, Func. Count: 79, Neg. LLF: 70.21801071068553
Iteration: 11, Func. Count: 86, Neg. LLF: 70.25666712762266
Iteration: 12, Func. Count: 94, Neg. LLF: 70.23118279411285
Iteration: 13, Func. Count: 102, Neg. LLF: 70.17279341242295
Iteration: 14, Func. Count: 110, Neg. LLF: 70.14536969876886
Iteration: 15, Func. Count: 117, Neg. LLF: 70.15148870689201
Iteration: 16, Func. Count: 125, Neg. LLF: 70.1387204751087
Iteration: 17, Func. Count: 132, Neg. LLF: 70.17816783860943
Iteration: 18, Func. Count: 140, Neg. LLF: 70.13306678771289
Iteration: 19, Func. Count: 147, Neg. LLF: 70.13062646361664
Iteration: 20, Func. Count: 154, Neg. LLF: 70.12892711604398
Iteration: 21, Func. Count: 161, Neg. LLF: 70.12841555032827
Iteration: 22, Func. Count: 168, Neg. LLF: 70.12781733161493
Iteration: 23, Func. Count: 175, Neg. LLF: 70.12778444853369
Iteration: 24, Func. Count: 182, Neg. LLF: 70.12778215409939
Iteration: 25, Func. Count: 188, Neg. LLF: 70.12778215513066
Optimization terminated successfully (Exit mode 0)
Current function value: 70.12778215409939
Iterations: 25
Function evaluations: 188
Gradient evaluations: 25
Iteration: 1, Func. Count: 9, Neg. LLF: 1351617.7186945002
Iteration: 2, Func. Count: 19, Neg. LLF: 3030173.208597899
Iteration: 3, Func. Count: 28, Neg. LLF: 73.29659257598651
Iteration: 4, Func. Count: 39, Neg. LLF: 73.05352063248223
Iteration: 5, Func. Count: 48, Neg. LLF: 71.36939773415045
Iteration: 6, Func. Count: 57, Neg. LLF: 70.29645324519126
Iteration: 7, Func. Count: 66, Neg. LLF: 69.67786818156547
Iteration: 8, Func. Count: 74, Neg. LLF: 70.03731584863667
Iteration: 9, Func. Count: 83, Neg. LLF: 69.48079471401432
Iteration: 10, Func. Count: 91, Neg. LLF: 69.40344610102956
Iteration: 11, Func. Count: 99, Neg. LLF: 69.40128892925625
Iteration: 12, Func. Count: 108, Neg. LLF: 69.38993916095149
Iteration: 13, Func. Count: 116, Neg. LLF: 69.38962316086338
Iteration: 14, Func. Count: 124, Neg. LLF: 69.38958751846236
Iteration: 15, Func. Count: 132, Neg. LLF: 69.38958428937521
Iteration: 16, Func. Count: 139, Neg. LLF: 69.38958427676374
Optimization terminated successfully (Exit mode 0)
Current function value: 69.38958428937521
Iterations: 16
Function evaluations: 139
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 628783.1312296949
Iteration: 2, Func. Count: 21, Neg. LLF: 5618436.083776079
Iteration: 3, Func. Count: 31, Neg. LLF: 74.7168713808918
Iteration: 4, Func. Count: 43, Neg. LLF: 118.8686144444245
Iteration: 5, Func. Count: 53, Neg. LLF: 69.96489652921666
Iteration: 6, Func. Count: 62, Neg. LLF: 69.71079865708315
Iteration: 7, Func. Count: 72, Neg. LLF: 69.43814749506075
Iteration: 8, Func. Count: 81, Neg. LLF: 69.39883669397356
Iteration: 9, Func. Count: 90, Neg. LLF: 69.3932636207873
Iteration: 10, Func. Count: 99, Neg. LLF: 69.39031810441696
Iteration: 11, Func. Count: 108, Neg. LLF: 69.38964734455348
Iteration: 12, Func. Count: 117, Neg. LLF: 69.38958825633598
Iteration: 13, Func. Count: 126, Neg. LLF: 69.38958413677092
Iteration: 14, Func. Count: 134, Neg. LLF: 69.38958421617039
Optimization terminated successfully (Exit mode 0)
Current function value: 69.38958413677092
Iterations: 14
Function evaluations: 134
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 3949296.949812711
Iteration: 2, Func. Count: 22, Neg. LLF: 3201889.7922344403
Iteration: 3, Func. Count: 33, Neg. LLF: 74.69676115297905
Iteration: 4, Func. Count: 44, Neg. LLF: 1341130.649140409
Iteration: 5, Func. Count: 55, Neg. LLF: 75.36198490438392
Iteration: 6, Func. Count: 66, Neg. LLF: 70.39373367923203
Iteration: 7, Func. Count: 77, Neg. LLF: 69.84814988357954
Iteration: 8, Func. Count: 87, Neg. LLF: 69.70663938803781
Iteration: 9, Func. Count: 98, Neg. LLF: 70.45887019181333
Iteration: 10, Func. Count: 110, Neg. LLF: 69.43433328036257
Iteration: 11, Func. Count: 120, Neg. LLF: 69.40170311445563
Iteration: 12, Func. Count: 130, Neg. LLF: 70.2695356140374
Iteration: 13, Func. Count: 141, Neg. LLF: 69.38795126722805
Iteration: 14, Func. Count: 152, Neg. LLF: 69.37508977095436
Iteration: 15, Func. Count: 162, Neg. LLF: 69.37412878851809
Iteration: 16, Func. Count: 172, Neg. LLF: 69.37409087627802
Iteration: 17, Func. Count: 182, Neg. LLF: 69.37407667523433
Iteration: 18, Func. Count: 191, Neg. LLF: 69.37407665801081
Optimization terminated successfully (Exit mode 0)
Current function value: 69.37407667523433
Iterations: 18
Function evaluations: 191
Gradient evaluations: 18
Iteration: 1, Func. Count: 8, Neg. LLF: 150.54438234664514
Iteration: 2, Func. Count: 19, Neg. LLF: 595.403881169078
Iteration: 3, Func. Count: 28, Neg. LLF: 4598690.615206032
Iteration: 4, Func. Count: 36, Neg. LLF: 92.77537165966865
Iteration: 5, Func. Count: 44, Neg. LLF: 81.09633371384122
Iteration: 6, Func. Count: 52, Neg. LLF: 70.9573449934633
Iteration: 7, Func. Count: 59, Neg. LLF: 80.28208157135249
Iteration: 8, Func. Count: 68, Neg. LLF: 74.38853254838818
Iteration: 9, Func. Count: 76, Neg. LLF: 70.16245528800903
Iteration: 10, Func. Count: 83, Neg. LLF: 70.1606969810177
Iteration: 11, Func. Count: 91, Neg. LLF: 70.09122526793722
Iteration: 12, Func. Count: 98, Neg. LLF: 70.06467100234129
Iteration: 13, Func. Count: 105, Neg. LLF: 70.06296427900905
Iteration: 14, Func. Count: 112, Neg. LLF: 70.06264188296807
Iteration: 15, Func. Count: 119, Neg. LLF: 70.06257495959136
Iteration: 16, Func. Count: 126, Neg. LLF: 70.06256673228378
Iteration: 17, Func. Count: 132, Neg. LLF: 70.06256673228313
Optimization terminated successfully (Exit mode 0)
Current function value: 70.06256673228378
Iterations: 17
Function evaluations: 132
Gradient evaluations: 17
Iteration: 1, Func. Count: 9, Neg. LLF: 98.60102075029275
Iteration: 2, Func. Count: 19, Neg. LLF: 7834716.285555458
Iteration: 3, Func. Count: 28, Neg. LLF: 165.67044861770094
Iteration: 4, Func. Count: 37, Neg. LLF: 70.99552905362609
Iteration: 5, Func. Count: 46, Neg. LLF: 71.59098415487612
Iteration: 6, Func. Count: 55, Neg. LLF: 71.04712852168186
Iteration: 7, Func. Count: 64, Neg. LLF: 70.21606242415287
Iteration: 8, Func. Count: 72, Neg. LLF: 70.1761367856046
Iteration: 9, Func. Count: 80, Neg. LLF: 70.1656272753257
Iteration: 10, Func. Count: 88, Neg. LLF: 70.2983008510292
Iteration: 11, Func. Count: 97, Neg. LLF: 70.07655709974637
Iteration: 12, Func. Count: 105, Neg. LLF: 70.07538845807483
Iteration: 13, Func. Count: 114, Neg. LLF: 70.06376626230919
Iteration: 14, Func. Count: 122, Neg. LLF: 70.06333050413676
Iteration: 15, Func. Count: 130, Neg. LLF: 70.06285486357102
Iteration: 16, Func. Count: 138, Neg. LLF: 70.0626476614512
Iteration: 17, Func. Count: 146, Neg. LLF: 70.06257300689249
Iteration: 18, Func. Count: 154, Neg. LLF: 70.06256672078483
Iteration: 19, Func. Count: 161, Neg. LLF: 70.06256673744015
Optimization terminated successfully (Exit mode 0)
Current function value: 70.06256672078483
Iterations: 19
Function evaluations: 161
Gradient evaluations: 19
Iteration: 1, Func. Count: 10, Neg. LLF: 73.14049358135938
Iteration: 2, Func. Count: 22, Neg. LLF: 20626682.577743176
Iteration: 3, Func. Count: 32, Neg. LLF: 4760477.743657533
Iteration: 4, Func. Count: 42, Neg. LLF: 72.34910540248066
Iteration: 5, Func. Count: 52, Neg. LLF: 69.88301266503852
Iteration: 6, Func. Count: 61, Neg. LLF: 71.51831606869854
Iteration: 7, Func. Count: 71, Neg. LLF: 74.78561289560389
Iteration: 8, Func. Count: 82, Neg. LLF: 69.45781030702089
Iteration: 9, Func. Count: 91, Neg. LLF: 69.40003021511636
Iteration: 10, Func. Count: 100, Neg. LLF: 69.39301786544198
Iteration: 11, Func. Count: 109, Neg. LLF: 69.39036402580949
Iteration: 12, Func. Count: 118, Neg. LLF: 69.38961745500227
Iteration: 13, Func. Count: 127, Neg. LLF: 69.38959116248972
Iteration: 14, Func. Count: 136, Neg. LLF: 69.38958413818546
Iteration: 15, Func. Count: 144, Neg. LLF: 69.38958412556009
Optimization terminated successfully (Exit mode 0)
Current function value: 69.38958413818546
Iterations: 15
Function evaluations: 144
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 121259429.59667437
Iteration: 2, Func. Count: 23, Neg. LLF: 74.7347966242736
Iteration: 3, Func. Count: 35, Neg. LLF: 3524629.0208899234
Iteration: 4, Func. Count: 46, Neg. LLF: 73.01003605138682
Iteration: 5, Func. Count: 57, Neg. LLF: 70.44736640914229
Iteration: 6, Func. Count: 68, Neg. LLF: 71.68083250443523
Iteration: 7, Func. Count: 79, Neg. LLF: 69.8044320449181
Iteration: 8, Func. Count: 90, Neg. LLF: 69.74217768275194
Iteration: 9, Func. Count: 101, Neg. LLF: 69.76317163116279
Iteration: 10, Func. Count: 112, Neg. LLF: 69.48711721161685
Iteration: 11, Func. Count: 122, Neg. LLF: 69.43230728347913
Iteration: 12, Func. Count: 132, Neg. LLF: 69.40639689218516
Iteration: 13, Func. Count: 142, Neg. LLF: 69.3924581332711
Iteration: 14, Func. Count: 152, Neg. LLF: 69.39025235776127
Iteration: 15, Func. Count: 162, Neg. LLF: 69.38959282473392
Iteration: 16, Func. Count: 172, Neg. LLF: 69.38958460238673
Iteration: 17, Func. Count: 181, Neg. LLF: 69.38958468167982
Optimization terminated successfully (Exit mode 0)
Current function value: 69.38958460238673
Iterations: 17
Function evaluations: 181
Gradient evaluations: 17
Iteration: 1, Func. Count: 12, Neg. LLF: 26146996.814360593
Iteration: 2, Func. Count: 24, Neg. LLF: 5951992.271861519
Iteration: 3, Func. Count: 36, Neg. LLF: 119.60560550051208
Iteration: 4, Func. Count: 48, Neg. LLF: 70.48763537248095
Iteration: 5, Func. Count: 60, Neg. LLF: 72.32255961530213
Iteration: 6, Func. Count: 73, Neg. LLF: 70.80520766008073
Iteration: 7, Func. Count: 85, Neg. LLF: 69.68048759880894
Iteration: 8, Func. Count: 96, Neg. LLF: 69.57565825995253
Iteration: 9, Func. Count: 107, Neg. LLF: 70.97328373552243
Iteration: 10, Func. Count: 120, Neg. LLF: 69.44187731733864
Iteration: 11, Func. Count: 131, Neg. LLF: 69.42300130028386
Iteration: 12, Func. Count: 142, Neg. LLF: 69.50305417363204
Iteration: 13, Func. Count: 154, Neg. LLF: 69.38157102287562
Iteration: 14, Func. Count: 165, Neg. LLF: 69.37427342387076
Iteration: 15, Func. Count: 176, Neg. LLF: 69.37410115479473
Iteration: 16, Func. Count: 187, Neg. LLF: 69.37408211940348
Iteration: 17, Func. Count: 198, Neg. LLF: 69.37407624734357
Iteration: 18, Func. Count: 208, Neg. LLF: 69.37407623005278
Optimization terminated successfully (Exit mode 0)
Current function value: 69.37407624734357
Iterations: 18
Function evaluations: 208
Gradient evaluations: 18
Iteration: 1, Func. Count: 9, Neg. LLF: 149.3040307841114
Iteration: 2, Func. Count: 21, Neg. LLF: 1049.1023291551312
Iteration: 3, Func. Count: 31, Neg. LLF: 4399425.847914847
Iteration: 4, Func. Count: 40, Neg. LLF: 106.63950077326083
Iteration: 5, Func. Count: 49, Neg. LLF: 81.40465764060738
Iteration: 6, Func. Count: 58, Neg. LLF: 71.19069433790509
Iteration: 7, Func. Count: 67, Neg. LLF: 70.29536677991267
Iteration: 8, Func. Count: 75, Neg. LLF: 70.12510805906938
Iteration: 9, Func. Count: 83, Neg. LLF: 70.07482640171159
Iteration: 10, Func. Count: 91, Neg. LLF: 70.0638544798665
Iteration: 11, Func. Count: 99, Neg. LLF: 70.06277402972458
Iteration: 12, Func. Count: 107, Neg. LLF: 70.06257790028772
Iteration: 13, Func. Count: 115, Neg. LLF: 70.06256654181675
Iteration: 14, Func. Count: 122, Neg. LLF: 70.06256657670198
Optimization terminated successfully (Exit mode 0)
Current function value: 70.06256654181675
Iterations: 14
Function evaluations: 122
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 97.92141690039979
Iteration: 2, Func. Count: 21, Neg. LLF: 6810682.171500918
Iteration: 3, Func. Count: 31, Neg. LLF: 168.6061412300659
Iteration: 4, Func. Count: 41, Neg. LLF: 70.98164878803307
Iteration: 5, Func. Count: 52, Neg. LLF: 71.95765520939831
Iteration: 6, Func. Count: 62, Neg. LLF: 70.55941449969613
Iteration: 7, Func. Count: 72, Neg. LLF: 70.2269288040315
Iteration: 8, Func. Count: 81, Neg. LLF: 70.22119266091892
Iteration: 9, Func. Count: 90, Neg. LLF: 70.19225226150108
Iteration: 10, Func. Count: 99, Neg. LLF: 70.15826740347279
Iteration: 11, Func. Count: 108, Neg. LLF: 70.18903365489182
Iteration: 12, Func. Count: 118, Neg. LLF: 70.17899026465113
Iteration: 13, Func. Count: 128, Neg. LLF: 70.07631106341063
Iteration: 14, Func. Count: 137, Neg. LLF: 70.06512799523757
Iteration: 15, Func. Count: 146, Neg. LLF: 70.06342972910096
Iteration: 16, Func. Count: 155, Neg. LLF: 70.06304193313055
Iteration: 17, Func. Count: 164, Neg. LLF: 70.0628308779341
Iteration: 18, Func. Count: 173, Neg. LLF: 70.06265710731739
Iteration: 19, Func. Count: 182, Neg. LLF: 70.06258000197847
Iteration: 20, Func. Count: 191, Neg. LLF: 70.06256718842457
Iteration: 21, Func. Count: 200, Neg. LLF: 70.06256654376028
Optimization terminated successfully (Exit mode 0)
Current function value: 70.06256654376028
Iterations: 21
Function evaluations: 200
Gradient evaluations: 21
Iteration: 1, Func. Count: 11, Neg. LLF: 6985784.6949974345
Iteration: 2, Func. Count: 22, Neg. LLF: 86.72273133653836
Iteration: 3, Func. Count: 35, Neg. LLF: 176.5205058980203
Iteration: 4, Func. Count: 47, Neg. LLF: 70.34877352117556
Iteration: 5, Func. Count: 57, Neg. LLF: 71.42906063801122
Iteration: 6, Func. Count: 69, Neg. LLF: 74.96852785883807
Iteration: 7, Func. Count: 80, Neg. LLF: 70.5718186250324
Iteration: 8, Func. Count: 91, Neg. LLF: 69.45450374786618
Iteration: 9, Func. Count: 101, Neg. LLF: 69.44095531297998
Iteration: 10, Func. Count: 111, Neg. LLF: 69.3963945102951
Iteration: 11, Func. Count: 121, Neg. LLF: 69.39188259146505
Iteration: 12, Func. Count: 131, Neg. LLF: 69.39012091625717
Iteration: 13, Func. Count: 141, Neg. LLF: 69.3896947158882
Iteration: 14, Func. Count: 151, Neg. LLF: 69.38958484741926
Iteration: 15, Func. Count: 161, Neg. LLF: 69.3895841248103
Optimization terminated successfully (Exit mode 0)
Current function value: 69.3895841248103
Iterations: 15
Function evaluations: 161
Gradient evaluations: 15
Iteration: 1, Func. Count: 12, Neg. LLF: 4324399.284507507
Iteration: 2, Func. Count: 24, Neg. LLF: 5168856.204430519
Iteration: 3, Func. Count: 36, Neg. LLF: 73.40721314001907
Iteration: 4, Func. Count: 48, Neg. LLF: 13794.232099857683
Iteration: 5, Func. Count: 61, Neg. LLF: 74.60551681811772
Iteration: 6, Func. Count: 73, Neg. LLF: 70.92551220319666
Iteration: 7, Func. Count: 85, Neg. LLF: 69.70147693512007
Iteration: 8, Func. Count: 96, Neg. LLF: 70.54705704835828
Iteration: 9, Func. Count: 108, Neg. LLF: 69.54733575927466
Iteration: 10, Func. Count: 119, Neg. LLF: 69.46360566716145
Iteration: 11, Func. Count: 130, Neg. LLF: 69.56343650970251
Iteration: 12, Func. Count: 142, Neg. LLF: 69.40559847517885
Iteration: 13, Func. Count: 153, Neg. LLF: 69.39016412860074
Iteration: 14, Func. Count: 164, Neg. LLF: 69.3896782847434
Iteration: 15, Func. Count: 175, Neg. LLF: 69.38958691371562
Iteration: 16, Func. Count: 186, Neg. LLF: 69.38958424445329
Iteration: 17, Func. Count: 196, Neg. LLF: 69.38958432386768
Optimization terminated successfully (Exit mode 0)
Current function value: 69.38958424445329
Iterations: 17
Function evaluations: 196
Gradient evaluations: 17
Iteration: 1, Func. Count: 13, Neg. LLF: 49352139.027701825
Iteration: 2, Func. Count: 26, Neg. LLF: 5233907.454203925
Iteration: 3, Func. Count: 39, Neg. LLF: 126.62990191194993
Iteration: 4, Func. Count: 52, Neg. LLF: 70.36375798252014
Iteration: 5, Func. Count: 65, Neg. LLF: 72.14087956502104
Iteration: 6, Func. Count: 78, Neg. LLF: 69.90642643450907
Iteration: 7, Func. Count: 91, Neg. LLF: 69.68329289263147
Iteration: 8, Func. Count: 104, Neg. LLF: 69.85546008686137
Iteration: 9, Func. Count: 117, Neg. LLF: 69.40807332060248
Iteration: 10, Func. Count: 129, Neg. LLF: 69.42041437094389
Iteration: 11, Func. Count: 142, Neg. LLF: 69.39082311102035
Iteration: 12, Func. Count: 154, Neg. LLF: 69.3795367755235
Iteration: 13, Func. Count: 166, Neg. LLF: 69.3767607124388
Iteration: 14, Func. Count: 178, Neg. LLF: 69.37427518620777
Iteration: 15, Func. Count: 190, Neg. LLF: 69.37408900799691
Iteration: 16, Func. Count: 202, Neg. LLF: 69.37407666570616
Iteration: 17, Func. Count: 213, Neg. LLF: 69.37407664824882
Optimization terminated successfully (Exit mode 0)
Current function value: 69.37407666570616
Iterations: 17
Function evaluations: 213
Gradient evaluations: 17
Iteration: 1, Func. Count: 6, Neg. LLF: 139.82794131641555
Iteration: 2, Func. Count: 15, Neg. LLF: 126.69096680925216
Iteration: 3, Func. Count: 22, Neg. LLF: 178.49554331651012
Iteration: 4, Func. Count: 28, Neg. LLF: 87.63202104943979
Iteration: 5, Func. Count: 35, Neg. LLF: 72.60377166755553
Iteration: 6, Func. Count: 40, Neg. LLF: 72.5645790454149
Iteration: 7, Func. Count: 45, Neg. LLF: 72.56103790225089
Iteration: 8, Func. Count: 50, Neg. LLF: 72.56014717880805
Iteration: 9, Func. Count: 55, Neg. LLF: 72.56006862729018
Iteration: 10, Func. Count: 60, Neg. LLF: 72.56006210762563
Iteration: 11, Func. Count: 64, Neg. LLF: 72.56006210762996
Optimization terminated successfully (Exit mode 0)
Current function value: 72.56006210762563
Iterations: 11
Function evaluations: 64
Gradient evaluations: 11
Iteration: 1, Func. Count: 7, Neg. LLF: 38220417.02893529
Iteration: 2, Func. Count: 15, Neg. LLF: 88.27817473589825
Iteration: 3, Func. Count: 23, Neg. LLF: 87.41737961400189
Iteration: 4, Func. Count: 31, Neg. LLF: 76.51891745479307
Iteration: 5, Func. Count: 38, Neg. LLF: 71.7463039079155
Iteration: 6, Func. Count: 45, Neg. LLF: 73.04886464045092
Iteration: 7, Func. Count: 52, Neg. LLF: 71.18990123428662
Iteration: 8, Func. Count: 58, Neg. LLF: 71.18947791987233
Iteration: 9, Func. Count: 64, Neg. LLF: 71.18930478852862
Iteration: 10, Func. Count: 70, Neg. LLF: 71.1892974253988
Iteration: 11, Func. Count: 76, Neg. LLF: 71.189295833743
Iteration: 12, Func. Count: 81, Neg. LLF: 71.1892958337558
Optimization terminated successfully (Exit mode 0)
Current function value: 71.189295833743
Iterations: 12
Function evaluations: 81
Gradient evaluations: 12
Iteration: 1, Func. Count: 8, Neg. LLF: 25994804.509926617
Iteration: 2, Func. Count: 17, Neg. LLF: 74.71230426940288
Iteration: 3, Func. Count: 26, Neg. LLF: 96.29454229495953
Iteration: 4, Func. Count: 34, Neg. LLF: 87.71105892976202
Iteration: 5, Func. Count: 43, Neg. LLF: 71.6059270429183
Iteration: 6, Func. Count: 50, Neg. LLF: 71.29231538050016
Iteration: 7, Func. Count: 57, Neg. LLF: 71.21664100801513
Iteration: 8, Func. Count: 64, Neg. LLF: 71.19051761629414
Iteration: 9, Func. Count: 71, Neg. LLF: 71.1893715735715
Iteration: 10, Func. Count: 78, Neg. LLF: 71.1893130883344
Iteration: 11, Func. Count: 85, Neg. LLF: 71.18929808468069
Iteration: 12, Func. Count: 92, Neg. LLF: 71.1892959407221
Iteration: 13, Func. Count: 98, Neg. LLF: 71.18929597284972
Optimization terminated successfully (Exit mode 0)
Current function value: 71.1892959407221
Iterations: 13
Function evaluations: 98
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 44744648.76487938
Iteration: 2, Func. Count: 19, Neg. LLF: 2669.1527910287937
Iteration: 3, Func. Count: 29, Neg. LLF: 83.17468935889795
Iteration: 4, Func. Count: 38, Neg. LLF: 76.69613462667061
Iteration: 5, Func. Count: 47, Neg. LLF: 74.57580808977008
Iteration: 6, Func. Count: 56, Neg. LLF: 73.96840469947996
Iteration: 7, Func. Count: 65, Neg. LLF: 73.054566648151
Iteration: 8, Func. Count: 74, Neg. LLF: 73.99757689859659
Iteration: 9, Func. Count: 83, Neg. LLF: 71.66864271623237
Iteration: 10, Func. Count: 92, Neg. LLF: 71.3767505774824
Iteration: 11, Func. Count: 100, Neg. LLF: 71.32672306978527
Iteration: 12, Func. Count: 108, Neg. LLF: 71.27621635460197
Iteration: 13, Func. Count: 116, Neg. LLF: 71.2015671643257
Iteration: 14, Func. Count: 124, Neg. LLF: 71.19036942657338
Iteration: 15, Func. Count: 132, Neg. LLF: 71.18932325213379
Iteration: 16, Func. Count: 140, Neg. LLF: 71.18929711022628
Iteration: 17, Func. Count: 148, Neg. LLF: 71.18929603686745
Iteration: 18, Func. Count: 155, Neg. LLF: 71.18929606637137
Optimization terminated successfully (Exit mode 0)
Current function value: 71.18929603686745
Iterations: 18
Function evaluations: 155
Gradient evaluations: 18
Iteration: 1, Func. Count: 10, Neg. LLF: 40881331.73632749
Iteration: 2, Func. Count: 21, Neg. LLF: 99904537.86997335
Iteration: 3, Func. Count: 32, Neg. LLF: 79.38877286713974
Iteration: 4, Func. Count: 42, Neg. LLF: 78.85247794961056
Iteration: 5, Func. Count: 52, Neg. LLF: 74.65191193312307
Iteration: 6, Func. Count: 62, Neg. LLF: 72.53675492607923
Iteration: 7, Func. Count: 72, Neg. LLF: 71.44679042980901
Iteration: 8, Func. Count: 81, Neg. LLF: 75.55223340420088
Iteration: 9, Func. Count: 91, Neg. LLF: 72.10074779045998
Iteration: 10, Func. Count: 101, Neg. LLF: 71.1972322705608
Iteration: 11, Func. Count: 110, Neg. LLF: 71.18978358369004
Iteration: 12, Func. Count: 119, Neg. LLF: 71.18932570715378
Iteration: 13, Func. Count: 128, Neg. LLF: 71.1892989042756
Iteration: 14, Func. Count: 137, Neg. LLF: 71.1892960756695
Iteration: 15, Func. Count: 145, Neg. LLF: 71.18929608777835
Optimization terminated successfully (Exit mode 0)
Current function value: 71.1892960756695
Iterations: 15
Function evaluations: 145
Gradient evaluations: 15
Iteration: 1, Func. Count: 7, Neg. LLF: 136.91000648555018
Iteration: 2, Func. Count: 17, Neg. LLF: 125.55445619313431
Iteration: 3, Func. Count: 25, Neg. LLF: 699.9170468326816
Iteration: 4, Func. Count: 32, Neg. LLF: 3428.756188806875
Iteration: 5, Func. Count: 39, Neg. LLF: 71.72081849615512
Iteration: 6, Func. Count: 45, Neg. LLF: 71.68218179983647
Iteration: 7, Func. Count: 51, Neg. LLF: 71.66671560737932
Iteration: 8, Func. Count: 57, Neg. LLF: 71.66385569299904
Iteration: 9, Func. Count: 63, Neg. LLF: 71.66360134899398
Iteration: 10, Func. Count: 69, Neg. LLF: 71.66357688357922
Iteration: 11, Func. Count: 75, Neg. LLF: 71.66357519362701
Iteration: 12, Func. Count: 80, Neg. LLF: 71.6635751691946
Optimization terminated successfully (Exit mode 0)
Current function value: 71.66357519362701
Iterations: 12
Function evaluations: 80
Gradient evaluations: 12
Iteration: 1, Func. Count: 8, Neg. LLF: 20653385.544082724
Iteration: 2, Func. Count: 17, Neg. LLF: 106.74490193917114
Iteration: 3, Func. Count: 26, Neg. LLF: 87.61522208499646
Iteration: 4, Func. Count: 34, Neg. LLF: 80.68275319321711
Iteration: 5, Func. Count: 42, Neg. LLF: 76.91422584514251
Iteration: 6, Func. Count: 50, Neg. LLF: 70.65504527484951
Iteration: 7, Func. Count: 57, Neg. LLF: 70.64702804629563
Iteration: 8, Func. Count: 64, Neg. LLF: 70.64581819380011
Iteration: 9, Func. Count: 71, Neg. LLF: 70.64567916429195
Iteration: 10, Func. Count: 78, Neg. LLF: 70.64565085598609
Iteration: 11, Func. Count: 85, Neg. LLF: 70.64564736358302
Iteration: 12, Func. Count: 91, Neg. LLF: 70.64564736359313
Optimization terminated successfully (Exit mode 0)
Current function value: 70.64564736358302
Iterations: 12
Function evaluations: 91
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 11842488.441906318
Iteration: 2, Func. Count: 18, Neg. LLF: 75.77773123960161
Iteration: 3, Func. Count: 27, Neg. LLF: 122.0274649662953
Iteration: 4, Func. Count: 37, Neg. LLF: 71.37315740714257
Iteration: 5, Func. Count: 46, Neg. LLF: 73.4931938634742
Iteration: 6, Func. Count: 55, Neg. LLF: 70.1438407995142
Iteration: 7, Func. Count: 63, Neg. LLF: 76.62867521844079
Iteration: 8, Func. Count: 72, Neg. LLF: 72.3356231578906
Iteration: 9, Func. Count: 82, Neg. LLF: 70.07655571761762
Iteration: 10, Func. Count: 90, Neg. LLF: 70.07580583963606
Iteration: 11, Func. Count: 98, Neg. LLF: 70.07576175945901
Iteration: 12, Func. Count: 106, Neg. LLF: 70.07575831803089
Iteration: 13, Func. Count: 113, Neg. LLF: 70.07575831802733
Optimization terminated successfully (Exit mode 0)
Current function value: 70.07575831803089
Iterations: 13
Function evaluations: 113
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 25121777.21159206
Iteration: 2, Func. Count: 20, Neg. LLF: 5028535.00174991
Iteration: 3, Func. Count: 31, Neg. LLF: 73.49523870337781
Iteration: 4, Func. Count: 41, Neg. LLF: 86.22826074013547
Iteration: 5, Func. Count: 51, Neg. LLF: 172.66687514380698
Iteration: 6, Func. Count: 61, Neg. LLF: 73.1189303614726
Iteration: 7, Func. Count: 71, Neg. LLF: 70.2258515184641
Iteration: 8, Func. Count: 80, Neg. LLF: 85.73472833408405
Iteration: 9, Func. Count: 91, Neg. LLF: 73.28532506253241
Iteration: 10, Func. Count: 102, Neg. LLF: 70.08359225447872
Iteration: 11, Func. Count: 111, Neg. LLF: 70.15537500542243
Iteration: 12, Func. Count: 121, Neg. LLF: 70.07588867155582
Iteration: 13, Func. Count: 130, Neg. LLF: 70.07577379083274
Iteration: 14, Func. Count: 139, Neg. LLF: 70.07575851783689
Iteration: 15, Func. Count: 147, Neg. LLF: 70.07575852610341
Optimization terminated successfully (Exit mode 0)
Current function value: 70.07575851783689
Iterations: 15
Function evaluations: 147
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 22807360.62950119
Iteration: 2, Func. Count: 22, Neg. LLF: 148.66096366897247
Iteration: 3, Func. Count: 34, Neg. LLF: 73.41676042861323
Iteration: 4, Func. Count: 45, Neg. LLF: 86.27179284753848
Iteration: 5, Func. Count: 56, Neg. LLF: 153.60461490759565
Iteration: 6, Func. Count: 67, Neg. LLF: 78.27340340545489
Iteration: 7, Func. Count: 78, Neg. LLF: 70.57045236659268
Iteration: 8, Func. Count: 88, Neg. LLF: 75.2281710521976
Iteration: 9, Func. Count: 99, Neg. LLF: 72.26203630751431
Iteration: 10, Func. Count: 111, Neg. LLF: 70.68649663136854
Iteration: 11, Func. Count: 122, Neg. LLF: 70.08593900468912
Iteration: 12, Func. Count: 132, Neg. LLF: 70.11214433388635
Iteration: 13, Func. Count: 143, Neg. LLF: 70.07616955536558
Iteration: 14, Func. Count: 153, Neg. LLF: 70.07581585545198
Iteration: 15, Func. Count: 163, Neg. LLF: 70.07576155172822
Iteration: 16, Func. Count: 173, Neg. LLF: 70.07575869553122
Iteration: 17, Func. Count: 182, Neg. LLF: 70.07575873834827
Optimization terminated successfully (Exit mode 0)
Current function value: 70.07575869553122
Iterations: 17
Function evaluations: 182
Gradient evaluations: 17
Iteration: 1, Func. Count: 8, Neg. LLF: 120.82125345409202
Iteration: 2, Func. Count: 18, Neg. LLF: 130.40636235222718
Iteration: 3, Func. Count: 26, Neg. LLF: 4301694.018220733
Iteration: 4, Func. Count: 34, Neg. LLF: 85.04444856370604
Iteration: 5, Func. Count: 42, Neg. LLF: 103.38756240168992
Iteration: 6, Func. Count: 50, Neg. LLF: 70.95307451001824
Iteration: 7, Func. Count: 58, Neg. LLF: 70.22516174523253
Iteration: 8, Func. Count: 65, Neg. LLF: 73.46551431637845
Iteration: 9, Func. Count: 74, Neg. LLF: 70.65750379123787
Iteration: 10, Func. Count: 82, Neg. LLF: 70.13595621562413
Iteration: 11, Func. Count: 89, Neg. LLF: 70.1303777768126
Iteration: 12, Func. Count: 96, Neg. LLF: 70.12840877462068
Iteration: 13, Func. Count: 103, Neg. LLF: 70.12784191100893
Iteration: 14, Func. Count: 110, Neg. LLF: 70.12778412716624
Iteration: 15, Func. Count: 117, Neg. LLF: 70.12778231740508
Iteration: 16, Func. Count: 123, Neg. LLF: 70.12778231740933
Optimization terminated successfully (Exit mode 0)
Current function value: 70.12778231740508
Iterations: 16
Function evaluations: 123
Gradient evaluations: 16
Iteration: 1, Func. Count: 9, Neg. LLF: 80.71065311079646
Iteration: 2, Func. Count: 20, Neg. LLF: 101.6905252236157
Iteration: 3, Func. Count: 29, Neg. LLF: 157.13784370642935
Iteration: 4, Func. Count: 39, Neg. LLF: 73.55750342644733
Iteration: 5, Func. Count: 48, Neg. LLF: 73.36550467497912
Iteration: 6, Func. Count: 57, Neg. LLF: 70.29894098881046
Iteration: 7, Func. Count: 65, Neg. LLF: 71.26476646087261
Iteration: 8, Func. Count: 74, Neg. LLF: 70.25814524641535
Iteration: 9, Func. Count: 82, Neg. LLF: 70.25219402073593
Iteration: 10, Func. Count: 90, Neg. LLF: 70.24871253309767
Iteration: 11, Func. Count: 98, Neg. LLF: 70.24382481676446
Iteration: 12, Func. Count: 106, Neg. LLF: 70.23201593112378
Iteration: 13, Func. Count: 114, Neg. LLF: 70.21338823644503
Iteration: 14, Func. Count: 122, Neg. LLF: 70.21040121964775
Iteration: 15, Func. Count: 131, Neg. LLF: 70.19375792386067
Iteration: 16, Func. Count: 140, Neg. LLF: 73.50576959988057
Iteration: 17, Func. Count: 150, Neg. LLF: 70.15833394941716
Iteration: 18, Func. Count: 159, Neg. LLF: 70.13754341100788
Iteration: 19, Func. Count: 167, Neg. LLF: 70.13418216784639
Iteration: 20, Func. Count: 175, Neg. LLF: 70.12924265027891
Iteration: 21, Func. Count: 183, Neg. LLF: 70.128210353598
Iteration: 22, Func. Count: 191, Neg. LLF: 70.12793488478844
Iteration: 23, Func. Count: 199, Neg. LLF: 70.12785958078277
Iteration: 24, Func. Count: 207, Neg. LLF: 70.12779866585365
Iteration: 25, Func. Count: 215, Neg. LLF: 70.12778392966689
Iteration: 26, Func. Count: 223, Neg. LLF: 70.12778219388181
Iteration: 27, Func. Count: 230, Neg. LLF: 70.12778219491142
Optimization terminated successfully (Exit mode 0)
Current function value: 70.12778219388181
Iterations: 27
Function evaluations: 230
Gradient evaluations: 27
Iteration: 1, Func. Count: 10, Neg. LLF: 77.85823159968675
Iteration: 2, Func. Count: 21, Neg. LLF: 4944004.328884771
Iteration: 3, Func. Count: 31, Neg. LLF: 5908416.0117115835
Iteration: 4, Func. Count: 41, Neg. LLF: 72.72829720127696
Iteration: 5, Func. Count: 51, Neg. LLF: 71.84470844691671
Iteration: 6, Func. Count: 61, Neg. LLF: 70.88949951360476
Iteration: 7, Func. Count: 71, Neg. LLF: 69.72807200371454
Iteration: 8, Func. Count: 80, Neg. LLF: 71.20494297965921
Iteration: 9, Func. Count: 90, Neg. LLF: 69.56637948931073
Iteration: 10, Func. Count: 100, Neg. LLF: 69.43537170275633
Iteration: 11, Func. Count: 109, Neg. LLF: 69.3940668943473
Iteration: 12, Func. Count: 118, Neg. LLF: 69.39085435486633
Iteration: 13, Func. Count: 127, Neg. LLF: 69.3897881685438
Iteration: 14, Func. Count: 136, Neg. LLF: 69.3895906879958
Iteration: 15, Func. Count: 145, Neg. LLF: 69.3895845700735
Iteration: 16, Func. Count: 154, Neg. LLF: 69.38958420518647
Optimization terminated successfully (Exit mode 0)
Current function value: 69.38958420518647
Iterations: 16
Function evaluations: 154
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 96.75806806551323
Iteration: 2, Func. Count: 24, Neg. LLF: 6974622.077940588
Iteration: 3, Func. Count: 35, Neg. LLF: 245.57783860317383
Iteration: 4, Func. Count: 46, Neg. LLF: 72.90772265996259
Iteration: 5, Func. Count: 57, Neg. LLF: 70.54619129671266
Iteration: 6, Func. Count: 68, Neg. LLF: 69.97076465101095
Iteration: 7, Func. Count: 78, Neg. LLF: 73.23638957288551
Iteration: 8, Func. Count: 90, Neg. LLF: 72.02678006189257
Iteration: 9, Func. Count: 101, Neg. LLF: 69.50731344729412
Iteration: 10, Func. Count: 111, Neg. LLF: 69.42320270576822
Iteration: 11, Func. Count: 121, Neg. LLF: 69.4025028736276
Iteration: 12, Func. Count: 131, Neg. LLF: 69.39214287783896
Iteration: 13, Func. Count: 141, Neg. LLF: 69.39020411554151
Iteration: 14, Func. Count: 151, Neg. LLF: 69.38965408044426
Iteration: 15, Func. Count: 161, Neg. LLF: 69.38959020576986
Iteration: 16, Func. Count: 171, Neg. LLF: 69.3895843826947
Iteration: 17, Func. Count: 180, Neg. LLF: 69.38958446213907
Optimization terminated successfully (Exit mode 0)
Current function value: 69.3895843826947
Iterations: 17
Function evaluations: 180
Gradient evaluations: 17
Iteration: 1, Func. Count: 12, Neg. LLF: 98.00489088698048
Iteration: 2, Func. Count: 25, Neg. LLF: 4307371.938663658
Iteration: 3, Func. Count: 37, Neg. LLF: 71.01403742087612
Iteration: 4, Func. Count: 49, Neg. LLF: 83.2814249529344
Iteration: 5, Func. Count: 62, Neg. LLF: 403.0041828251749
Iteration: 6, Func. Count: 75, Neg. LLF: 69.7290791703605
Iteration: 7, Func. Count: 86, Neg. LLF: 69.66170088237241
Iteration: 8, Func. Count: 98, Neg. LLF: 69.47116837139242
Iteration: 9, Func. Count: 110, Neg. LLF: 69.38809365402241
Iteration: 10, Func. Count: 122, Neg. LLF: 69.37435130637216
Iteration: 11, Func. Count: 133, Neg. LLF: 69.37409075381255
Iteration: 12, Func. Count: 144, Neg. LLF: 69.37407740873637
Iteration: 13, Func. Count: 155, Neg. LLF: 69.37407658716256
Optimization terminated successfully (Exit mode 0)
Current function value: 69.37407658716256
Iterations: 13
Function evaluations: 155
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 130.9284639410722
Iteration: 2, Func. Count: 20, Neg. LLF: 122.16981341945923
Iteration: 3, Func. Count: 30, Neg. LLF: 4217298.575816214
Iteration: 4, Func. Count: 39, Neg. LLF: 1742811.700051055
Iteration: 5, Func. Count: 48, Neg. LLF: 159.71500203441548
Iteration: 6, Func. Count: 57, Neg. LLF: 70.99719544817714
Iteration: 7, Func. Count: 66, Neg. LLF: 70.17838621051168
Iteration: 8, Func. Count: 74, Neg. LLF: 70.12709197527091
Iteration: 9, Func. Count: 82, Neg. LLF: 70.88606744331904
Iteration: 10, Func. Count: 92, Neg. LLF: 70.13990786499814
Iteration: 11, Func. Count: 101, Neg. LLF: 70.06386596545714
Iteration: 12, Func. Count: 109, Neg. LLF: 70.06265451650347
Iteration: 13, Func. Count: 117, Neg. LLF: 70.06256752915817
Iteration: 14, Func. Count: 125, Neg. LLF: 70.06256655215735
Optimization terminated successfully (Exit mode 0)
Current function value: 70.06256655215735
Iterations: 14
Function evaluations: 125
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 2867881.446367062
Iteration: 2, Func. Count: 20, Neg. LLF: 73.52255948864796
Iteration: 3, Func. Count: 32, Neg. LLF: 131.39091313773832
Iteration: 4, Func. Count: 43, Neg. LLF: 73.57942494563619
Iteration: 5, Func. Count: 53, Neg. LLF: 73.59431322971182
Iteration: 6, Func. Count: 63, Neg. LLF: 70.43103150156774
Iteration: 7, Func. Count: 72, Neg. LLF: 70.26974991259108
Iteration: 8, Func. Count: 81, Neg. LLF: 71.90224195551674
Iteration: 9, Func. Count: 91, Neg. LLF: 70.25031847493378
Iteration: 10, Func. Count: 100, Neg. LLF: 70.24806413066321
Iteration: 11, Func. Count: 109, Neg. LLF: 70.24573101432249
Iteration: 12, Func. Count: 118, Neg. LLF: 70.23869090283745
Iteration: 13, Func. Count: 127, Neg. LLF: 70.22137953859381
Iteration: 14, Func. Count: 136, Neg. LLF: 70.1960974058854
Iteration: 15, Func. Count: 145, Neg. LLF: 70.20311411917656
Iteration: 16, Func. Count: 155, Neg. LLF: 70.17201058525833
Iteration: 17, Func. Count: 165, Neg. LLF: 70.1467504012385
Iteration: 18, Func. Count: 174, Neg. LLF: 70.13381687774663
Iteration: 19, Func. Count: 183, Neg. LLF: 70.11871716891986
Iteration: 20, Func. Count: 192, Neg. LLF: 70.09039509062782
Iteration: 21, Func. Count: 201, Neg. LLF: 70.07196570255826
Iteration: 22, Func. Count: 210, Neg. LLF: 70.0657490151527
Iteration: 23, Func. Count: 219, Neg. LLF: 70.06382706250461
Iteration: 24, Func. Count: 228, Neg. LLF: 70.06309612650101
Iteration: 25, Func. Count: 237, Neg. LLF: 70.0627116541608
Iteration: 26, Func. Count: 246, Neg. LLF: 70.0625796685247
Iteration: 27, Func. Count: 255, Neg. LLF: 70.06256692572084
Iteration: 28, Func. Count: 263, Neg. LLF: 70.06256694237567
Optimization terminated successfully (Exit mode 0)
Current function value: 70.06256692572084
Iterations: 28
Function evaluations: 263
Gradient evaluations: 28
Iteration: 1, Func. Count: 11, Neg. LLF: 77.32925792375869
Iteration: 2, Func. Count: 24, Neg. LLF: 3126816.439781817
Iteration: 3, Func. Count: 35, Neg. LLF: 540293.7822965299
Iteration: 4, Func. Count: 47, Neg. LLF: 72.535673930631
Iteration: 5, Func. Count: 58, Neg. LLF: 74.16719438832524
Iteration: 6, Func. Count: 69, Neg. LLF: 70.78507506219383
Iteration: 7, Func. Count: 80, Neg. LLF: 69.75104137779785
Iteration: 8, Func. Count: 90, Neg. LLF: 69.57823611427591
Iteration: 9, Func. Count: 100, Neg. LLF: 69.75509838213549
Iteration: 10, Func. Count: 111, Neg. LLF: 69.41665673671429
Iteration: 11, Func. Count: 121, Neg. LLF: 69.39513561482065
Iteration: 12, Func. Count: 131, Neg. LLF: 69.39028958519428
Iteration: 13, Func. Count: 141, Neg. LLF: 69.38977493878372
Iteration: 14, Func. Count: 151, Neg. LLF: 69.38959313174922
Iteration: 15, Func. Count: 161, Neg. LLF: 69.3895845454184
Iteration: 16, Func. Count: 170, Neg. LLF: 69.38958453268381
Optimization terminated successfully (Exit mode 0)
Current function value: 69.3895845454184
Iterations: 16
Function evaluations: 170
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 4177694.8521288857
Iteration: 2, Func. Count: 24, Neg. LLF: 117.86500477078252
Iteration: 3, Func. Count: 37, Neg. LLF: 184.00790308592974
Iteration: 4, Func. Count: 49, Neg. LLF: 72.87774915876673
Iteration: 5, Func. Count: 61, Neg. LLF: 77.97306442843968
Iteration: 6, Func. Count: 73, Neg. LLF: 72.58661008054305
Iteration: 7, Func. Count: 85, Neg. LLF: 70.34676004259204
Iteration: 8, Func. Count: 97, Neg. LLF: 69.73009807857565
Iteration: 9, Func. Count: 108, Neg. LLF: 70.27306354387251
Iteration: 10, Func. Count: 120, Neg. LLF: 70.11922896858515
Iteration: 11, Func. Count: 132, Neg. LLF: 69.5572465899669
Iteration: 12, Func. Count: 144, Neg. LLF: 69.45402478760279
Iteration: 13, Func. Count: 155, Neg. LLF: 69.40204732184894
Iteration: 14, Func. Count: 166, Neg. LLF: 69.39341122742191
Iteration: 15, Func. Count: 177, Neg. LLF: 69.38983294069281
Iteration: 16, Func. Count: 188, Neg. LLF: 69.38962174902503
Iteration: 17, Func. Count: 199, Neg. LLF: 69.38958476133722
Iteration: 18, Func. Count: 210, Neg. LLF: 69.38958412610687
Optimization terminated successfully (Exit mode 0)
Current function value: 69.38958412610687
Iterations: 18
Function evaluations: 210
Gradient evaluations: 18
Iteration: 1, Func. Count: 13, Neg. LLF: 3141965.2167729256
Iteration: 2, Func. Count: 26, Neg. LLF: 110.78574547222014
Iteration: 3, Func. Count: 40, Neg. LLF: 117.20913566980252
Iteration: 4, Func. Count: 53, Neg. LLF: 72.45727681310092
Iteration: 5, Func. Count: 66, Neg. LLF: 72.63663901124474
Iteration: 6, Func. Count: 79, Neg. LLF: 69.84863255015077
Iteration: 7, Func. Count: 91, Neg. LLF: 74.46008051746973
Iteration: 8, Func. Count: 104, Neg. LLF: 70.90477745687392
Iteration: 9, Func. Count: 118, Neg. LLF: 69.76184094778624
Iteration: 10, Func. Count: 131, Neg. LLF: 69.72847179277146
Iteration: 11, Func. Count: 144, Neg. LLF: 69.64030617506347
Iteration: 12, Func. Count: 157, Neg. LLF: 69.44281138479278
Iteration: 13, Func. Count: 169, Neg. LLF: 69.40850406032332
Iteration: 14, Func. Count: 181, Neg. LLF: 69.52255500659463
Iteration: 15, Func. Count: 194, Neg. LLF: 69.37425286762736
Iteration: 16, Func. Count: 206, Neg. LLF: 69.3740822602871
Iteration: 17, Func. Count: 218, Neg. LLF: 69.3740772941936
Iteration: 18, Func. Count: 230, Neg. LLF: 69.37407644680975
Optimization terminated successfully (Exit mode 0)
Current function value: 69.37407644680975
Iterations: 18
Function evaluations: 230
Gradient evaluations: 18
Iteration: 1, Func. Count: 10, Neg. LLF: 130.04630355904192
Iteration: 2, Func. Count: 22, Neg. LLF: 124.20575436343458
Iteration: 3, Func. Count: 33, Neg. LLF: 4349176.812187786
Iteration: 4, Func. Count: 43, Neg. LLF: 4526800.31749106
Iteration: 5, Func. Count: 53, Neg. LLF: 79.71187652079558
Iteration: 6, Func. Count: 63, Neg. LLF: 74.84995649702226
Iteration: 7, Func. Count: 73, Neg. LLF: 75.86682613145709
Iteration: 8, Func. Count: 83, Neg. LLF: 70.23914190327584
Iteration: 9, Func. Count: 92, Neg. LLF: 70.65979540153403
Iteration: 10, Func. Count: 102, Neg. LLF: 70.33459778415566
Iteration: 11, Func. Count: 112, Neg. LLF: 70.07995965367734
Iteration: 12, Func. Count: 121, Neg. LLF: 70.06482429392827
Iteration: 13, Func. Count: 130, Neg. LLF: 70.06265043202856
Iteration: 14, Func. Count: 139, Neg. LLF: 70.06256991774798
Iteration: 15, Func. Count: 148, Neg. LLF: 70.06256663504558
Iteration: 16, Func. Count: 156, Neg. LLF: 70.06256666992947
Optimization terminated successfully (Exit mode 0)
Current function value: 70.06256663504558
Iterations: 16
Function evaluations: 156
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 4819232.775406676
Iteration: 2, Func. Count: 22, Neg. LLF: 247.23892575116827
Iteration: 3, Func. Count: 33, Neg. LLF: 71.95402787556304
Iteration: 4, Func. Count: 45, Neg. LLF: 75.0309854502541
Iteration: 5, Func. Count: 56, Neg. LLF: 71.44714847529067
Iteration: 6, Func. Count: 67, Neg. LLF: 70.51963562114763
Iteration: 7, Func. Count: 78, Neg. LLF: 70.25810726166644
Iteration: 8, Func. Count: 88, Neg. LLF: 70.25464900121739
Iteration: 9, Func. Count: 99, Neg. LLF: 70.31441358830628
Iteration: 10, Func. Count: 110, Neg. LLF: 70.24135950085179
Iteration: 11, Func. Count: 120, Neg. LLF: 70.23614816212402
Iteration: 12, Func. Count: 130, Neg. LLF: 70.2294570751648
Iteration: 13, Func. Count: 140, Neg. LLF: 70.20493917038223
Iteration: 14, Func. Count: 150, Neg. LLF: 70.2100732727876
Iteration: 15, Func. Count: 161, Neg. LLF: 70.15866906079482
Iteration: 16, Func. Count: 171, Neg. LLF: 70.13623952833254
Iteration: 17, Func. Count: 181, Neg. LLF: 70.10594233478025
Iteration: 18, Func. Count: 191, Neg. LLF: 70.079509109806
Iteration: 19, Func. Count: 201, Neg. LLF: 70.07006464910837
Iteration: 20, Func. Count: 211, Neg. LLF: 70.06463628530685
Iteration: 21, Func. Count: 221, Neg. LLF: 70.06317945250578
Iteration: 22, Func. Count: 231, Neg. LLF: 70.06265510949002
Iteration: 23, Func. Count: 241, Neg. LLF: 70.06257236552716
Iteration: 24, Func. Count: 251, Neg. LLF: 70.06256688838258
Iteration: 25, Func. Count: 260, Neg. LLF: 70.06256690501276
Optimization terminated successfully (Exit mode 0)
Current function value: 70.06256688838258
Iterations: 25
Function evaluations: 260
Gradient evaluations: 25
Iteration: 1, Func. Count: 12, Neg. LLF: 2903491.178192741
Iteration: 2, Func. Count: 24, Neg. LLF: 86.58582477303437
Iteration: 3, Func. Count: 37, Neg. LLF: 5748514.585720504
Iteration: 4, Func. Count: 50, Neg. LLF: 73.94436003759814
Iteration: 5, Func. Count: 62, Neg. LLF: 72.79897464458736
Iteration: 6, Func. Count: 74, Neg. LLF: 69.9017139690219
Iteration: 7, Func. Count: 85, Neg. LLF: 72.05069895407087
Iteration: 8, Func. Count: 98, Neg. LLF: 71.46317810178029
Iteration: 9, Func. Count: 110, Neg. LLF: 69.52520606042683
Iteration: 10, Func. Count: 121, Neg. LLF: 69.44005476483842
Iteration: 11, Func. Count: 132, Neg. LLF: 69.39976554106381
Iteration: 12, Func. Count: 143, Neg. LLF: 69.39140325280127
Iteration: 13, Func. Count: 154, Neg. LLF: 69.38966213243123
Iteration: 14, Func. Count: 165, Neg. LLF: 69.38960620106178
Iteration: 15, Func. Count: 176, Neg. LLF: 69.38958931255638
Iteration: 16, Func. Count: 187, Neg. LLF: 69.38958425492596
Iteration: 17, Func. Count: 197, Neg. LLF: 69.38958424224563
Optimization terminated successfully (Exit mode 0)
Current function value: 69.38958425492596
Iterations: 17
Function evaluations: 197
Gradient evaluations: 17
Iteration: 1, Func. Count: 13, Neg. LLF: 2796213.828015263
Iteration: 2, Func. Count: 26, Neg. LLF: 440075.8518864312
Iteration: 3, Func. Count: 40, Neg. LLF: 7334.176012879371
Iteration: 4, Func. Count: 53, Neg. LLF: 77.11802121378481
Iteration: 5, Func. Count: 66, Neg. LLF: 75.06275336271094
Iteration: 6, Func. Count: 79, Neg. LLF: 70.26622255665394
Iteration: 7, Func. Count: 92, Neg. LLF: 69.96755280832004
Iteration: 8, Func. Count: 105, Neg. LLF: 69.78027825058551
Iteration: 9, Func. Count: 118, Neg. LLF: 78.65619851825984
Iteration: 10, Func. Count: 131, Neg. LLF: 69.4750084875703
Iteration: 11, Func. Count: 143, Neg. LLF: 69.43085907263061
Iteration: 12, Func. Count: 155, Neg. LLF: 69.39997925992756
Iteration: 13, Func. Count: 167, Neg. LLF: 69.39058259077534
Iteration: 14, Func. Count: 179, Neg. LLF: 69.38959148242904
Iteration: 15, Func. Count: 191, Neg. LLF: 69.38958439868524
Iteration: 16, Func. Count: 202, Neg. LLF: 69.38958447805614
Optimization terminated successfully (Exit mode 0)
Current function value: 69.38958439868524
Iterations: 16
Function evaluations: 202
Gradient evaluations: 16
Iteration: 1, Func. Count: 14, Neg. LLF: 3803272.356924866
Iteration: 2, Func. Count: 28, Neg. LLF: 1766138.992812021
Iteration: 3, Func. Count: 43, Neg. LLF: 98.4152354669596
Iteration: 4, Func. Count: 57, Neg. LLF: 71.82484667721711
Iteration: 5, Func. Count: 71, Neg. LLF: 72.6467678861752
Iteration: 6, Func. Count: 86, Neg. LLF: 70.0939221616808
Iteration: 7, Func. Count: 100, Neg. LLF: 69.99620823779392
Iteration: 8, Func. Count: 114, Neg. LLF: 69.92213385384129
Iteration: 9, Func. Count: 128, Neg. LLF: 69.46603682515139
Iteration: 10, Func. Count: 141, Neg. LLF: 69.43058685893845
Iteration: 11, Func. Count: 154, Neg. LLF: 69.51507139583173
Iteration: 12, Func. Count: 168, Neg. LLF: 69.37643342863707
Iteration: 13, Func. Count: 181, Neg. LLF: 69.375722729178
Iteration: 14, Func. Count: 194, Neg. LLF: 69.37421032115935
Iteration: 15, Func. Count: 207, Neg. LLF: 69.37409944459102
Iteration: 16, Func. Count: 220, Neg. LLF: 69.37407712443617
Iteration: 17, Func. Count: 233, Neg. LLF: 69.37407626157433
Optimization terminated successfully (Exit mode 0)
Current function value: 69.37407626157433
Iterations: 17
Function evaluations: 233
Gradient evaluations: 17
Iteration: 1, Func. Count: 7, Neg. LLF: 111.61358891316357
Iteration: 2, Func. Count: 17, Neg. LLF: 18306.64879258118
Iteration: 3, Func. Count: 24, Neg. LLF: 970.3953231020236
Iteration: 4, Func. Count: 31, Neg. LLF: 168.533410036323
Iteration: 5, Func. Count: 38, Neg. LLF: 116.34692928245907
Iteration: 6, Func. Count: 45, Neg. LLF: 259.3914794255527
Iteration: 7, Func. Count: 52, Neg. LLF: 68.77857811585376
Iteration: 8, Func. Count: 58, Neg. LLF: 68.545712466901
Iteration: 9, Func. Count: 64, Neg. LLF: 68.4612931550533
Iteration: 10, Func. Count: 70, Neg. LLF: 68.4372107996558
Iteration: 11, Func. Count: 76, Neg. LLF: 68.43620666430024
Iteration: 12, Func. Count: 82, Neg. LLF: 68.43615444182454
Iteration: 13, Func. Count: 87, Neg. LLF: 68.43615444179157
Optimization terminated successfully (Exit mode 0)
Current function value: 68.43615444182454
Iterations: 13
Function evaluations: 87
Gradient evaluations: 13
Iteration: 1, Func. Count: 8, Neg. LLF: 26397497.673519336
Iteration: 2, Func. Count: 17, Neg. LLF: 76.40872040804825
Iteration: 3, Func. Count: 26, Neg. LLF: 107.3298894649943
Iteration: 4, Func. Count: 35, Neg. LLF: 70.4721660913603
Iteration: 5, Func. Count: 42, Neg. LLF: 68.67025127920802
Iteration: 6, Func. Count: 49, Neg. LLF: 70.17670164022755
Iteration: 7, Func. Count: 58, Neg. LLF: 68.489587433323
Iteration: 8, Func. Count: 65, Neg. LLF: 68.44369191882232
Iteration: 9, Func. Count: 72, Neg. LLF: 68.44002147150314
Iteration: 10, Func. Count: 79, Neg. LLF: 68.43905911895763
Iteration: 11, Func. Count: 86, Neg. LLF: 68.43741327084895
Iteration: 12, Func. Count: 93, Neg. LLF: 68.43647383571914
Iteration: 13, Func. Count: 100, Neg. LLF: 68.43617986122116
Iteration: 14, Func. Count: 107, Neg. LLF: 68.43615485563593
Iteration: 15, Func. Count: 114, Neg. LLF: 68.43615413124091
Optimization terminated successfully (Exit mode 0)
Current function value: 68.43615413124091
Iterations: 15
Function evaluations: 114
Gradient evaluations: 15
Iteration: 1, Func. Count: 9, Neg. LLF: 342.8207864203798
Iteration: 2, Func. Count: 18, Neg. LLF: 25047329.926035203
Iteration: 3, Func. Count: 27, Neg. LLF: 68.76918358104471
Iteration: 4, Func. Count: 35, Neg. LLF: 199.54610273604996
Iteration: 5, Func. Count: 44, Neg. LLF: 68.51764465028988
Iteration: 6, Func. Count: 52, Neg. LLF: 68.46836947717131
Iteration: 7, Func. Count: 60, Neg. LLF: 68.43823625823086
Iteration: 8, Func. Count: 68, Neg. LLF: 68.436177801967
Iteration: 9, Func. Count: 76, Neg. LLF: 68.43615415472105
Iteration: 10, Func. Count: 83, Neg. LLF: 68.43615419608129
Optimization terminated successfully (Exit mode 0)
Current function value: 68.43615415472105
Iterations: 10
Function evaluations: 83
Gradient evaluations: 10
Iteration: 1, Func. Count: 10, Neg. LLF: 171.7666943583902
Iteration: 2, Func. Count: 20, Neg. LLF: 2392.783042773011
Iteration: 3, Func. Count: 30, Neg. LLF: 215.27783648151382
Iteration: 4, Func. Count: 41, Neg. LLF: 70.0914040664821
Iteration: 5, Func. Count: 50, Neg. LLF: 69.0644842893252
Iteration: 6, Func. Count: 59, Neg. LLF: 84.78766514471444
Iteration: 7, Func. Count: 70, Neg. LLF: 68.59603591533485
Iteration: 8, Func. Count: 79, Neg. LLF: 68.46254820035453
Iteration: 9, Func. Count: 88, Neg. LLF: 68.44138897935147
Iteration: 10, Func. Count: 97, Neg. LLF: 68.43892335554379
Iteration: 11, Func. Count: 106, Neg. LLF: 68.43622190839666
Iteration: 12, Func. Count: 115, Neg. LLF: 68.43615567112703
Iteration: 13, Func. Count: 124, Neg. LLF: 68.43615413208117
Iteration: 14, Func. Count: 132, Neg. LLF: 68.43615416266665
Optimization terminated successfully (Exit mode 0)
Current function value: 68.43615413208117
Iterations: 14
Function evaluations: 132
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 203.67662343885252
Iteration: 2, Func. Count: 22, Neg. LLF: 4216.752023484968
Iteration: 3, Func. Count: 33, Neg. LLF: 49746386.13072833
Iteration: 4, Func. Count: 45, Neg. LLF: 87.35967035711967
Iteration: 5, Func. Count: 56, Neg. LLF: 68.76591171929152
Iteration: 6, Func. Count: 66, Neg. LLF: 68.4593092968877
Iteration: 7, Func. Count: 76, Neg. LLF: 68.47983860687602
Iteration: 8, Func. Count: 87, Neg. LLF: 68.41183550350779
Iteration: 9, Func. Count: 97, Neg. LLF: 68.4091577408891
Iteration: 10, Func. Count: 107, Neg. LLF: 68.40890066588155
Iteration: 11, Func. Count: 117, Neg. LLF: 68.40886587730644
Iteration: 12, Func. Count: 126, Neg. LLF: 68.40886587732648
Optimization terminated successfully (Exit mode 0)
Current function value: 68.40886587730644
Iterations: 12
Function evaluations: 126
Gradient evaluations: 12
Iteration: 1, Func. Count: 8, Neg. LLF: 110.83810506234381
Iteration: 2, Func. Count: 19, Neg. LLF: 113.69360397175748
Iteration: 3, Func. Count: 27, Neg. LLF: 949.4634107963753
Iteration: 4, Func. Count: 35, Neg. LLF: 1253.130903243358
Iteration: 5, Func. Count: 43, Neg. LLF: 277.28472359728744
Iteration: 6, Func. Count: 51, Neg. LLF: 70.3889493877897
Iteration: 7, Func. Count: 59, Neg. LLF: 68.98641008445237
Iteration: 8, Func. Count: 67, Neg. LLF: 68.31538443509193
Iteration: 9, Func. Count: 74, Neg. LLF: 68.28926896915746
Iteration: 10, Func. Count: 81, Neg. LLF: 68.2825709918494
Iteration: 11, Func. Count: 88, Neg. LLF: 68.28225841068198
Iteration: 12, Func. Count: 95, Neg. LLF: 68.28222940913362
Iteration: 13, Func. Count: 102, Neg. LLF: 68.28222682845268
Iteration: 14, Func. Count: 108, Neg. LLF: 68.28222674622094
Optimization terminated successfully (Exit mode 0)
Current function value: 68.28222682845268
Iterations: 14
Function evaluations: 108
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 11913167.491601665
Iteration: 2, Func. Count: 18, Neg. LLF: 76.93008962768248
Iteration: 3, Func. Count: 28, Neg. LLF: 98.90019775420438
Iteration: 4, Func. Count: 38, Neg. LLF: 69.18752803494758
Iteration: 5, Func. Count: 46, Neg. LLF: 68.76300417348205
Iteration: 6, Func. Count: 54, Neg. LLF: 79.69183618294699
Iteration: 7, Func. Count: 63, Neg. LLF: 68.32435439583668
Iteration: 8, Func. Count: 71, Neg. LLF: 70.96380415956153
Iteration: 9, Func. Count: 81, Neg. LLF: 68.28650151775385
Iteration: 10, Func. Count: 89, Neg. LLF: 68.2834142810576
Iteration: 11, Func. Count: 97, Neg. LLF: 68.28259244956189
Iteration: 12, Func. Count: 105, Neg. LLF: 68.28234101989995
Iteration: 13, Func. Count: 113, Neg. LLF: 68.28224416281128
Iteration: 14, Func. Count: 121, Neg. LLF: 68.28222774755329
Iteration: 15, Func. Count: 129, Neg. LLF: 68.28222678855532
Optimization terminated successfully (Exit mode 0)
Current function value: 68.28222678855532
Iterations: 15
Function evaluations: 129
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 162.6881467499442
Iteration: 2, Func. Count: 20, Neg. LLF: 1242.9608291610382
Iteration: 3, Func. Count: 31, Neg. LLF: 721.7401917698834
Iteration: 4, Func. Count: 41, Neg. LLF: 71.0839979506892
Iteration: 5, Func. Count: 51, Neg. LLF: 68.52042502475649
Iteration: 6, Func. Count: 60, Neg. LLF: 68.4307824665316
Iteration: 7, Func. Count: 69, Neg. LLF: 68.51395597222528
Iteration: 8, Func. Count: 79, Neg. LLF: 68.29321532518787
Iteration: 9, Func. Count: 88, Neg. LLF: 68.28564711435047
Iteration: 10, Func. Count: 97, Neg. LLF: 68.28367446830495
Iteration: 11, Func. Count: 106, Neg. LLF: 68.28229094410214
Iteration: 12, Func. Count: 115, Neg. LLF: 68.28222924473192
Iteration: 13, Func. Count: 124, Neg. LLF: 68.28222678407595
Iteration: 14, Func. Count: 132, Neg. LLF: 68.28222683726985
Optimization terminated successfully (Exit mode 0)
Current function value: 68.28222678407595
Iterations: 14
Function evaluations: 132
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 196.2542500525562
Iteration: 2, Func. Count: 22, Neg. LLF: 1830.9264145669783
Iteration: 3, Func. Count: 33, Neg. LLF: 2115.501374836582
Iteration: 4, Func. Count: 44, Neg. LLF: 98.70038231785409
Iteration: 5, Func. Count: 55, Neg. LLF: 68.679734165771
Iteration: 6, Func. Count: 65, Neg. LLF: 68.42465179726997
Iteration: 7, Func. Count: 75, Neg. LLF: 68.33009344281076
Iteration: 8, Func. Count: 85, Neg. LLF: 68.38782567800203
Iteration: 9, Func. Count: 96, Neg. LLF: 68.40909506175144
Iteration: 10, Func. Count: 107, Neg. LLF: 68.28446501970046
Iteration: 11, Func. Count: 117, Neg. LLF: 68.28239570543764
Iteration: 12, Func. Count: 127, Neg. LLF: 68.28223563083198
Iteration: 13, Func. Count: 137, Neg. LLF: 68.28222915318177
Iteration: 14, Func. Count: 147, Neg. LLF: 68.28222677257112
Iteration: 15, Func. Count: 156, Neg. LLF: 68.28222679816982
Optimization terminated successfully (Exit mode 0)
Current function value: 68.28222677257112
Iterations: 15
Function evaluations: 156
Gradient evaluations: 15
Iteration: 1, Func. Count: 12, Neg. LLF: 23537.557965823606
Iteration: 2, Func. Count: 24, Neg. LLF: 676.8302247476411
Iteration: 3, Func. Count: 36, Neg. LLF: 1613.7868816740186
Iteration: 4, Func. Count: 48, Neg. LLF: 76.34939911865327
Iteration: 5, Func. Count: 60, Neg. LLF: 68.39385806587605
Iteration: 6, Func. Count: 71, Neg. LLF: 68.35112482399165
Iteration: 7, Func. Count: 82, Neg. LLF: 68.36256405484576
Iteration: 8, Func. Count: 94, Neg. LLF: 68.38051603130856
Iteration: 9, Func. Count: 106, Neg. LLF: 68.40473846407889
Iteration: 10, Func. Count: 118, Neg. LLF: 68.28422108143225
Iteration: 11, Func. Count: 129, Neg. LLF: 68.28131959883747
Iteration: 12, Func. Count: 140, Neg. LLF: 68.28112690845958
Iteration: 13, Func. Count: 151, Neg. LLF: 68.28109358820423
Iteration: 14, Func. Count: 161, Neg. LLF: 68.2810935881555
Optimization terminated successfully (Exit mode 0)
Current function value: 68.28109358820423
Iterations: 14
Function evaluations: 161
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 98.68476078064349
Iteration: 2, Func. Count: 20, Neg. LLF: 2301.986277123594
Iteration: 3, Func. Count: 29, Neg. LLF: 5200.860185778945
Iteration: 4, Func. Count: 38, Neg. LLF: 566.916243615109
Iteration: 5, Func. Count: 47, Neg. LLF: 175.40783860258176
Iteration: 6, Func. Count: 56, Neg. LLF: 112.83635584274536
Iteration: 7, Func. Count: 65, Neg. LLF: 89.99627776144729
Iteration: 8, Func. Count: 74, Neg. LLF: 103.00727171815356
Iteration: 9, Func. Count: 83, Neg. LLF: 67.90527194265879
Iteration: 10, Func. Count: 91, Neg. LLF: 67.99691322579389
Iteration: 11, Func. Count: 100, Neg. LLF: 67.65729844176599
Iteration: 12, Func. Count: 109, Neg. LLF: 67.50393184896092
Iteration: 13, Func. Count: 117, Neg. LLF: 67.58016756484727
Iteration: 14, Func. Count: 126, Neg. LLF: 67.47745709754994
Iteration: 15, Func. Count: 134, Neg. LLF: 67.47734968658854
Iteration: 16, Func. Count: 142, Neg. LLF: 67.47734543775782
Iteration: 17, Func. Count: 149, Neg. LLF: 67.47734543776369
Optimization terminated successfully (Exit mode 0)
Current function value: 67.47734543775782
Iterations: 17
Function evaluations: 149
Gradient evaluations: 17
Iteration: 1, Func. Count: 10, Neg. LLF: 107.27074997725668
Iteration: 2, Func. Count: 22, Neg. LLF: 4051919.9425072027
Iteration: 3, Func. Count: 33, Neg. LLF: 128.0916035121606
Iteration: 4, Func. Count: 43, Neg. LLF: 69.29292487114134
Iteration: 5, Func. Count: 52, Neg. LLF: 73.48153250671368
Iteration: 6, Func. Count: 62, Neg. LLF: 82.62516526449522
Iteration: 7, Func. Count: 74, Neg. LLF: 69.78855847113773
Iteration: 8, Func. Count: 84, Neg. LLF: 67.52315253060253
Iteration: 9, Func. Count: 93, Neg. LLF: 67.58076594303846
Iteration: 10, Func. Count: 103, Neg. LLF: 67.48246343763824
Iteration: 11, Func. Count: 112, Neg. LLF: 67.479308526676
Iteration: 12, Func. Count: 121, Neg. LLF: 67.47776117178998
Iteration: 13, Func. Count: 130, Neg. LLF: 67.47744715141629
Iteration: 14, Func. Count: 139, Neg. LLF: 67.47739858853484
Iteration: 15, Func. Count: 148, Neg. LLF: 67.4773719358866
Iteration: 16, Func. Count: 157, Neg. LLF: 67.47735149724434
Iteration: 17, Func. Count: 166, Neg. LLF: 67.47734594938636
Iteration: 18, Func. Count: 174, Neg. LLF: 67.47734601012296
Optimization terminated successfully (Exit mode 0)
Current function value: 67.47734594938636
Iterations: 18
Function evaluations: 174
Gradient evaluations: 18
Iteration: 1, Func. Count: 11, Neg. LLF: 5894.619149387267
Iteration: 2, Func. Count: 22, Neg. LLF: 376.45928653550453
Iteration: 3, Func. Count: 33, Neg. LLF: 247.84527241088736
Iteration: 4, Func. Count: 44, Neg. LLF: 68.42535419385287
Iteration: 5, Func. Count: 54, Neg. LLF: 231.01397546962278
Iteration: 6, Func. Count: 65, Neg. LLF: 2253.323864263996
Iteration: 7, Func. Count: 76, Neg. LLF: 68.5660780118802
Iteration: 8, Func. Count: 87, Neg. LLF: 67.69629096871245
Iteration: 9, Func. Count: 98, Neg. LLF: 67.47766161217909
Iteration: 10, Func. Count: 108, Neg. LLF: 67.47742418534314
Iteration: 11, Func. Count: 118, Neg. LLF: 67.47734938898924
Iteration: 12, Func. Count: 128, Neg. LLF: 67.47734539710396
Iteration: 13, Func. Count: 137, Neg. LLF: 67.47734542713951
Optimization terminated successfully (Exit mode 0)
Current function value: 67.47734539710396
Iterations: 13
Function evaluations: 137
Gradient evaluations: 13
Iteration: 1, Func. Count: 12, Neg. LLF: 111.36346698930107
Iteration: 2, Func. Count: 25, Neg. LLF: 283.11830368814447
Iteration: 3, Func. Count: 37, Neg. LLF: 399.308072880528
Iteration: 4, Func. Count: 49, Neg. LLF: 305.56166687737436
Iteration: 5, Func. Count: 61, Neg. LLF: 68.33612044037262
Iteration: 6, Func. Count: 72, Neg. LLF: 72.85629482318325
Iteration: 7, Func. Count: 84, Neg. LLF: 75.89463460533707
Iteration: 8, Func. Count: 97, Neg. LLF: 68.27251434816438
Iteration: 9, Func. Count: 109, Neg. LLF: 67.75791747412534
Iteration: 10, Func. Count: 121, Neg. LLF: 67.5547173419876
Iteration: 11, Func. Count: 132, Neg. LLF: 67.50262109317495
Iteration: 12, Func. Count: 143, Neg. LLF: 67.47984562914361
Iteration: 13, Func. Count: 154, Neg. LLF: 67.47762378118009
Iteration: 14, Func. Count: 165, Neg. LLF: 67.47736340074125
Iteration: 15, Func. Count: 176, Neg. LLF: 67.47734629386491
Iteration: 16, Func. Count: 187, Neg. LLF: 67.47734544939694
Optimization terminated successfully (Exit mode 0)
Current function value: 67.47734544939694
Iterations: 16
Function evaluations: 187
Gradient evaluations: 16
Iteration: 1, Func. Count: 13, Neg. LLF: 110.74418091749043
Iteration: 2, Func. Count: 27, Neg. LLF: 1761.7335092088913
Iteration: 3, Func. Count: 40, Neg. LLF: 704.1594741800326
Iteration: 4, Func. Count: 53, Neg. LLF: 240.05174561459128
Iteration: 5, Func. Count: 66, Neg. LLF: 68.87478868400274
Iteration: 6, Func. Count: 78, Neg. LLF: 75.76228474611447
Iteration: 7, Func. Count: 92, Neg. LLF: 86.25195192463818
Iteration: 8, Func. Count: 107, Neg. LLF: 67.7475467951451
Iteration: 9, Func. Count: 119, Neg. LLF: 69.20933562948242
Iteration: 10, Func. Count: 132, Neg. LLF: 67.49215569729012
Iteration: 11, Func. Count: 144, Neg. LLF: 67.43688758243134
Iteration: 12, Func. Count: 156, Neg. LLF: 67.43394285911843
Iteration: 13, Func. Count: 168, Neg. LLF: 67.4338684553982
Iteration: 14, Func. Count: 180, Neg. LLF: 67.43386507595942
Iteration: 15, Func. Count: 192, Neg. LLF: 67.43386437458331
Optimization terminated successfully (Exit mode 0)
Current function value: 67.43386437458331
Iterations: 15
Function evaluations: 192
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 96.9447343294147
Iteration: 2, Func. Count: 22, Neg. LLF: 1133766.7435833593
Iteration: 3, Func. Count: 32, Neg. LLF: 3230962.8539317343
Iteration: 4, Func. Count: 42, Neg. LLF: 6907270.9747988
Iteration: 5, Func. Count: 52, Neg. LLF: 1634.2152436315846
Iteration: 6, Func. Count: 62, Neg. LLF: 2696056.5979588637
Iteration: 7, Func. Count: 72, Neg. LLF: 117.18571779796521
Iteration: 8, Func. Count: 82, Neg. LLF: 69.72202332943006
Iteration: 9, Func. Count: 92, Neg. LLF: 67.86804530092326
Iteration: 10, Func. Count: 102, Neg. LLF: 67.29480091029585
Iteration: 11, Func. Count: 111, Neg. LLF: 67.26904512232011
Iteration: 12, Func. Count: 120, Neg. LLF: 67.25985462413283
Iteration: 13, Func. Count: 129, Neg. LLF: 67.25952911009567
Iteration: 14, Func. Count: 138, Neg. LLF: 67.25950317363697
Iteration: 15, Func. Count: 147, Neg. LLF: 67.25949922845577
Iteration: 16, Func. Count: 155, Neg. LLF: 67.259499228462
Optimization terminated successfully (Exit mode 0)
Current function value: 67.25949922845577
Iterations: 16
Function evaluations: 155
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 296.4062270387341
Iteration: 2, Func. Count: 22, Neg. LLF: 4329459.239650513
Iteration: 3, Func. Count: 33, Neg. LLF: 3280305.733151619
Iteration: 4, Func. Count: 44, Neg. LLF: 767.1512237307895
Iteration: 5, Func. Count: 55, Neg. LLF: 79.75609706751769
Iteration: 6, Func. Count: 66, Neg. LLF: 68.06367284000811
Iteration: 7, Func. Count: 76, Neg. LLF: 67.82397097929902
Iteration: 8, Func. Count: 87, Neg. LLF: 71.81225435178982
Iteration: 9, Func. Count: 100, Neg. LLF: 68.29468628861693
Iteration: 10, Func. Count: 111, Neg. LLF: 67.82751051929678
Iteration: 11, Func. Count: 122, Neg. LLF: 67.2660119376398
Iteration: 12, Func. Count: 132, Neg. LLF: 67.26154853779116
Iteration: 13, Func. Count: 142, Neg. LLF: 67.26007635186403
Iteration: 14, Func. Count: 152, Neg. LLF: 67.25952970972958
Iteration: 15, Func. Count: 162, Neg. LLF: 67.2595010224652
Iteration: 16, Func. Count: 172, Neg. LLF: 67.25949917653153
Iteration: 17, Func. Count: 181, Neg. LLF: 67.25949922945426
Optimization terminated successfully (Exit mode 0)
Current function value: 67.25949917653153
Iterations: 17
Function evaluations: 181
Gradient evaluations: 17
Iteration: 1, Func. Count: 12, Neg. LLF: 265.05299376319067
Iteration: 2, Func. Count: 24, Neg. LLF: 25373845.404961422
Iteration: 3, Func. Count: 36, Neg. LLF: 3280621.6084562135
Iteration: 4, Func. Count: 48, Neg. LLF: 196.53769628212345
Iteration: 5, Func. Count: 60, Neg. LLF: 70.72059272471421
Iteration: 6, Func. Count: 72, Neg. LLF: 69.21819570898747
Iteration: 7, Func. Count: 84, Neg. LLF: 67.55802392921362
Iteration: 8, Func. Count: 95, Neg. LLF: 67.34809365260197
Iteration: 9, Func. Count: 106, Neg. LLF: 67.74939564770607
Iteration: 10, Func. Count: 118, Neg. LLF: 67.27276564587646
Iteration: 11, Func. Count: 129, Neg. LLF: 67.26046253401721
Iteration: 12, Func. Count: 140, Neg. LLF: 67.25964827382303
Iteration: 13, Func. Count: 151, Neg. LLF: 67.25950634769856
Iteration: 14, Func. Count: 162, Neg. LLF: 67.2594996372629
Iteration: 15, Func. Count: 172, Neg. LLF: 67.25949968953392
Optimization terminated successfully (Exit mode 0)
Current function value: 67.2594996372629
Iterations: 15
Function evaluations: 172
Gradient evaluations: 15
Iteration: 1, Func. Count: 13, Neg. LLF: 2304.9011087078197
Iteration: 2, Func. Count: 26, Neg. LLF: 4500909.696944812
Iteration: 3, Func. Count: 39, Neg. LLF: 3281213.6456247526
Iteration: 4, Func. Count: 52, Neg. LLF: 169.9711624662867
Iteration: 5, Func. Count: 65, Neg. LLF: 70.09828261464423
Iteration: 6, Func. Count: 78, Neg. LLF: 70.67770195426175
Iteration: 7, Func. Count: 91, Neg. LLF: 695.6944530089248
Iteration: 8, Func. Count: 104, Neg. LLF: 67.32400740933097
Iteration: 9, Func. Count: 116, Neg. LLF: 68.13584587005481
Iteration: 10, Func. Count: 129, Neg. LLF: 67.28107315920037
Iteration: 11, Func. Count: 141, Neg. LLF: 67.26650082282791
Iteration: 12, Func. Count: 153, Neg. LLF: 67.26024633337886
Iteration: 13, Func. Count: 165, Neg. LLF: 67.25981052309925
Iteration: 14, Func. Count: 177, Neg. LLF: 67.25950780625242
Iteration: 15, Func. Count: 189, Neg. LLF: 67.25949921017882
Iteration: 16, Func. Count: 200, Neg. LLF: 67.25949923708546
Optimization terminated successfully (Exit mode 0)
Current function value: 67.25949921017882
Iterations: 16
Function evaluations: 200
Gradient evaluations: 16
Iteration: 1, Func. Count: 14, Neg. LLF: 2195.832863610734
Iteration: 2, Func. Count: 28, Neg. LLF: 3734608.92816677
Iteration: 3, Func. Count: 42, Neg. LLF: 3283009.5958342287
Iteration: 4, Func. Count: 56, Neg. LLF: 71.94432895511278
Iteration: 5, Func. Count: 70, Neg. LLF: 283.105216934052
Iteration: 6, Func. Count: 84, Neg. LLF: 75.13335610698827
Iteration: 7, Func. Count: 98, Neg. LLF: 136.4417892829073
Iteration: 8, Func. Count: 112, Neg. LLF: 67.49427933745578
Iteration: 9, Func. Count: 125, Neg. LLF: 68.65728115685046
Iteration: 10, Func. Count: 139, Neg. LLF: 69.65828125605789
Iteration: 11, Func. Count: 153, Neg. LLF: 67.30611713565501
Iteration: 12, Func. Count: 166, Neg. LLF: 67.27200952856494
Iteration: 13, Func. Count: 179, Neg. LLF: 67.26631260716117
Iteration: 14, Func. Count: 192, Neg. LLF: 67.25973685242708
Iteration: 15, Func. Count: 205, Neg. LLF: 67.25952138447084
Iteration: 16, Func. Count: 218, Neg. LLF: 67.2594996454365
Iteration: 17, Func. Count: 231, Neg. LLF: 67.2594990312282
Optimization terminated successfully (Exit mode 0)
Current function value: 67.2594990312282
Iterations: 17
Function evaluations: 231
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 98.02014058568577
Iteration: 2, Func. Count: 24, Neg. LLF: 3307624.972732508
Iteration: 3, Func. Count: 35, Neg. LLF: 34610.364800806434
Iteration: 4, Func. Count: 46, Neg. LLF: 506.9822214261765
Iteration: 5, Func. Count: 57, Neg. LLF: 33764.89058079518
Iteration: 6, Func. Count: 68, Neg. LLF: 604710.0532476963
Iteration: 7, Func. Count: 79, Neg. LLF: 874.3213297163227
Iteration: 8, Func. Count: 90, Neg. LLF: 119.91000445308703
Iteration: 9, Func. Count: 101, Neg. LLF: 68.3553744879217
Iteration: 10, Func. Count: 112, Neg. LLF: 92.48503735263624
Iteration: 11, Func. Count: 123, Neg. LLF: 67.37512878753157
Iteration: 12, Func. Count: 133, Neg. LLF: 67.28995230475755
Iteration: 13, Func. Count: 143, Neg. LLF: 67.26840084227157
Iteration: 14, Func. Count: 153, Neg. LLF: 67.26103022193371
Iteration: 15, Func. Count: 163, Neg. LLF: 67.25985292768061
Iteration: 16, Func. Count: 173, Neg. LLF: 67.25951001117781
Iteration: 17, Func. Count: 183, Neg. LLF: 67.25949978178639
Iteration: 18, Func. Count: 193, Neg. LLF: 67.25949899087175
Optimization terminated successfully (Exit mode 0)
Current function value: 67.25949899087175
Iterations: 18
Function evaluations: 193
Gradient evaluations: 18
Iteration: 1, Func. Count: 12, Neg. LLF: 107.87426533199994
Iteration: 2, Func. Count: 25, Neg. LLF: 3209400.0477997167
Iteration: 3, Func. Count: 37, Neg. LLF: 3268316.1104733674
Iteration: 4, Func. Count: 49, Neg. LLF: 71.0179063139642
Iteration: 5, Func. Count: 61, Neg. LLF: 78.10611418103166
Iteration: 6, Func. Count: 73, Neg. LLF: 2769865.1841860907
Iteration: 7, Func. Count: 85, Neg. LLF: 71.05917331231237
Iteration: 8, Func. Count: 97, Neg. LLF: 69.06430542272504
Iteration: 9, Func. Count: 109, Neg. LLF: 68.17181848004243
Iteration: 10, Func. Count: 121, Neg. LLF: 67.28951192718367
Iteration: 11, Func. Count: 132, Neg. LLF: 68.00064969570454
Iteration: 12, Func. Count: 144, Neg. LLF: 67.2672883993173
Iteration: 13, Func. Count: 155, Neg. LLF: 67.26172782763494
Iteration: 14, Func. Count: 166, Neg. LLF: 67.259700195392
Iteration: 15, Func. Count: 177, Neg. LLF: 67.25952075997672
Iteration: 16, Func. Count: 188, Neg. LLF: 67.25949981576575
Iteration: 17, Func. Count: 199, Neg. LLF: 67.25949898204553
Optimization terminated successfully (Exit mode 0)
Current function value: 67.25949898204553
Iterations: 17
Function evaluations: 199
Gradient evaluations: 17
Iteration: 1, Func. Count: 13, Neg. LLF: 108.53919315633324
Iteration: 2, Func. Count: 27, Neg. LLF: 5878851.507563794
Iteration: 3, Func. Count: 40, Neg. LLF: 3267531.2795404517
Iteration: 4, Func. Count: 53, Neg. LLF: 71.41116190156077
Iteration: 5, Func. Count: 66, Neg. LLF: 70.16325979466598
Iteration: 6, Func. Count: 80, Neg. LLF: 69.99415246610933
Iteration: 7, Func. Count: 93, Neg. LLF: 68.25500876857551
Iteration: 8, Func. Count: 106, Neg. LLF: 67.70787316759855
Iteration: 9, Func. Count: 119, Neg. LLF: 67.30262188906747
Iteration: 10, Func. Count: 131, Neg. LLF: 67.26831101838044
Iteration: 11, Func. Count: 143, Neg. LLF: 67.26178122549648
Iteration: 12, Func. Count: 155, Neg. LLF: 67.25987277803279
Iteration: 13, Func. Count: 167, Neg. LLF: 67.25951802282235
Iteration: 14, Func. Count: 179, Neg. LLF: 67.25949919316572
Iteration: 15, Func. Count: 190, Neg. LLF: 67.25949924544274
Optimization terminated successfully (Exit mode 0)
Current function value: 67.25949919316572
Iterations: 15
Function evaluations: 190
Gradient evaluations: 15
Iteration: 1, Func. Count: 14, Neg. LLF: 109.23710867074679
Iteration: 2, Func. Count: 29, Neg. LLF: 3725118.1503870417
Iteration: 3, Func. Count: 43, Neg. LLF: 3280344.74599748
Iteration: 4, Func. Count: 57, Neg. LLF: 73.42318930784526
Iteration: 5, Func. Count: 71, Neg. LLF: 82.84418980998178
Iteration: 6, Func. Count: 85, Neg. LLF: 135.63159183792015
Iteration: 7, Func. Count: 99, Neg. LLF: 71.47893822113879
Iteration: 8, Func. Count: 113, Neg. LLF: 67.4258106077907
Iteration: 9, Func. Count: 126, Neg. LLF: 67.31476933713711
Iteration: 10, Func. Count: 139, Neg. LLF: 67.27538332121725
Iteration: 11, Func. Count: 152, Neg. LLF: 67.26872240494878
Iteration: 12, Func. Count: 165, Neg. LLF: 67.26050811628339
Iteration: 13, Func. Count: 178, Neg. LLF: 67.2596157832973
Iteration: 14, Func. Count: 191, Neg. LLF: 67.25950880038326
Iteration: 15, Func. Count: 204, Neg. LLF: 67.25949924457845
Iteration: 16, Func. Count: 216, Neg. LLF: 67.25949927146927
Optimization terminated successfully (Exit mode 0)
Current function value: 67.25949924457845
Iterations: 16
Function evaluations: 216
Gradient evaluations: 16
Iteration: 1, Func. Count: 15, Neg. LLF: 109.15278528775204
Iteration: 2, Func. Count: 31, Neg. LLF: 3079833.864090114
Iteration: 3, Func. Count: 46, Neg. LLF: 3285846.125445606
Iteration: 4, Func. Count: 61, Neg. LLF: 78.04676766267958
Iteration: 5, Func. Count: 76, Neg. LLF: 7112.24525517108
Iteration: 6, Func. Count: 91, Neg. LLF: 75.94058943569313
Iteration: 7, Func. Count: 106, Neg. LLF: 68.9596727472427
Iteration: 8, Func. Count: 121, Neg. LLF: 67.46956824721502
Iteration: 9, Func. Count: 135, Neg. LLF: 68.12383399330524
Iteration: 10, Func. Count: 150, Neg. LLF: 70.00100663015269
Iteration: 11, Func. Count: 165, Neg. LLF: 67.28888204233766
Iteration: 12, Func. Count: 179, Neg. LLF: 67.26966772393712
Iteration: 13, Func. Count: 193, Neg. LLF: 67.2623967723513
Iteration: 14, Func. Count: 207, Neg. LLF: 67.25981768133254
Iteration: 15, Func. Count: 221, Neg. LLF: 67.25953529326735
Iteration: 16, Func. Count: 235, Neg. LLF: 67.25949979010291
Iteration: 17, Func. Count: 249, Neg. LLF: 67.25949902264803
Optimization terminated successfully (Exit mode 0)
Current function value: 67.25949902264803
Iterations: 17
Function evaluations: 249
Gradient evaluations: 17
Iteration: 1, Func. Count: 8, Neg. LLF: 112.19448294797917
Iteration: 2, Func. Count: 19, Neg. LLF: 5728.484534705945
Iteration: 3, Func. Count: 27, Neg. LLF: 575.1276025936799
Iteration: 4, Func. Count: 35, Neg. LLF: 376.55045753364647
Iteration: 5, Func. Count: 43, Neg. LLF: 503.166871248341
Iteration: 6, Func. Count: 51, Neg. LLF: 80.89523045816925
Iteration: 7, Func. Count: 59, Neg. LLF: 71.2531935708787
Iteration: 8, Func. Count: 67, Neg. LLF: 68.54130943878239
Iteration: 9, Func. Count: 74, Neg. LLF: 68.458437104163
Iteration: 10, Func. Count: 81, Neg. LLF: 68.43753269463325
Iteration: 11, Func. Count: 88, Neg. LLF: 68.43620555263062
Iteration: 12, Func. Count: 95, Neg. LLF: 68.4361553508247
Iteration: 13, Func. Count: 102, Neg. LLF: 68.43615413193457
Iteration: 14, Func. Count: 108, Neg. LLF: 68.43615421566194
Optimization terminated successfully (Exit mode 0)
Current function value: 68.43615413193457
Iterations: 14
Function evaluations: 108
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 6913.553917716669
Iteration: 2, Func. Count: 18, Neg. LLF: 253.79632116277867
Iteration: 3, Func. Count: 28, Neg. LLF: 283166.734555514
Iteration: 4, Func. Count: 37, Neg. LLF: 70.42224670446572
Iteration: 5, Func. Count: 45, Neg. LLF: 74.18050842534157
Iteration: 6, Func. Count: 55, Neg. LLF: 81.87006570839887
Iteration: 7, Func. Count: 64, Neg. LLF: 80.2349862937063
Iteration: 8, Func. Count: 74, Neg. LLF: 68.57797580215326
Iteration: 9, Func. Count: 82, Neg. LLF: 68.4674487253716
Iteration: 10, Func. Count: 90, Neg. LLF: 68.43918129178502
Iteration: 11, Func. Count: 98, Neg. LLF: 68.43704103586154
Iteration: 12, Func. Count: 106, Neg. LLF: 68.43623844314234
Iteration: 13, Func. Count: 114, Neg. LLF: 68.43616621186209
Iteration: 14, Func. Count: 122, Neg. LLF: 68.43615433652887
Iteration: 15, Func. Count: 129, Neg. LLF: 68.43615439561496
Optimization terminated successfully (Exit mode 0)
Current function value: 68.43615433652887
Iterations: 15
Function evaluations: 129
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 2037.3560984733274
Iteration: 2, Func. Count: 20, Neg. LLF: 1721.4803021930218
Iteration: 3, Func. Count: 31, Neg. LLF: 1476.2012223464221
Iteration: 4, Func. Count: 41, Neg. LLF: 69.20218390562748
Iteration: 5, Func. Count: 50, Neg. LLF: 68.53461795520883
Iteration: 6, Func. Count: 59, Neg. LLF: 68.46941628012048
Iteration: 7, Func. Count: 68, Neg. LLF: 68.44225545126199
Iteration: 8, Func. Count: 77, Neg. LLF: 68.43659050733132
Iteration: 9, Func. Count: 86, Neg. LLF: 68.4361569114403
Iteration: 10, Func. Count: 95, Neg. LLF: 68.43615415709469
Iteration: 11, Func. Count: 103, Neg. LLF: 68.4361541984621
Optimization terminated successfully (Exit mode 0)
Current function value: 68.43615415709469
Iterations: 11
Function evaluations: 103
Gradient evaluations: 11
Iteration: 1, Func. Count: 11, Neg. LLF: 544.0095167241201
Iteration: 2, Func. Count: 22, Neg. LLF: 2032.8799026408876
Iteration: 3, Func. Count: 34, Neg. LLF: 716.4973257583604
Iteration: 4, Func. Count: 45, Neg. LLF: 69.72743188913927
Iteration: 5, Func. Count: 55, Neg. LLF: 68.61441169012859
Iteration: 6, Func. Count: 65, Neg. LLF: 68.49241440216595
Iteration: 7, Func. Count: 75, Neg. LLF: 68.4539890106689
Iteration: 8, Func. Count: 85, Neg. LLF: 68.4376144651193
Iteration: 9, Func. Count: 95, Neg. LLF: 68.43616522315592
Iteration: 10, Func. Count: 105, Neg. LLF: 68.4361541318198
Iteration: 11, Func. Count: 114, Neg. LLF: 68.43615416239552
Optimization terminated successfully (Exit mode 0)
Current function value: 68.4361541318198
Iterations: 11
Function evaluations: 114
Gradient evaluations: 11
Iteration: 1, Func. Count: 12, Neg. LLF: 5963.659349337964
Iteration: 2, Func. Count: 24, Neg. LLF: 1872.9797625883914
Iteration: 3, Func. Count: 36, Neg. LLF: 770.2566396781226
Iteration: 4, Func. Count: 48, Neg. LLF: 78.32898787672026
Iteration: 5, Func. Count: 60, Neg. LLF: 68.79898692648604
Iteration: 6, Func. Count: 71, Neg. LLF: 75.19807992352172
Iteration: 7, Func. Count: 83, Neg. LLF: 68.53800095067996
Iteration: 8, Func. Count: 94, Neg. LLF: 68.5013196258125
Iteration: 9, Func. Count: 105, Neg. LLF: 68.43146862247127
Iteration: 10, Func. Count: 116, Neg. LLF: 68.41295554616443
Iteration: 11, Func. Count: 127, Neg. LLF: 68.40937634039452
Iteration: 12, Func. Count: 138, Neg. LLF: 68.40891354751061
Iteration: 13, Func. Count: 149, Neg. LLF: 68.40886591270153
Iteration: 14, Func. Count: 159, Neg. LLF: 68.40886591280628
Optimization terminated successfully (Exit mode 0)
Current function value: 68.40886591270153
Iterations: 14
Function evaluations: 159
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 111.85178396102506
Iteration: 2, Func. Count: 21, Neg. LLF: 1787.917240483789
Iteration: 3, Func. Count: 30, Neg. LLF: 884.8693832437144
Iteration: 4, Func. Count: 39, Neg. LLF: 1144.592206439046
Iteration: 5, Func. Count: 48, Neg. LLF: 260.5067284897081
Iteration: 6, Func. Count: 57, Neg. LLF: 69.48126246694281
Iteration: 7, Func. Count: 66, Neg. LLF: 68.31124174480341
Iteration: 8, Func. Count: 74, Neg. LLF: 68.28983752853681
Iteration: 9, Func. Count: 82, Neg. LLF: 68.28363324642892
Iteration: 10, Func. Count: 90, Neg. LLF: 68.28236852675528
Iteration: 11, Func. Count: 98, Neg. LLF: 68.28223345203793
Iteration: 12, Func. Count: 106, Neg. LLF: 68.28222685017981
Iteration: 13, Func. Count: 113, Neg. LLF: 68.28222676796543
Optimization terminated successfully (Exit mode 0)
Current function value: 68.28222685017981
Iterations: 13
Function evaluations: 113
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 433.0613431337528
Iteration: 2, Func. Count: 20, Neg. LLF: 2149.1715197340754
Iteration: 3, Func. Count: 31, Neg. LLF: 344.6883338066579
Iteration: 4, Func. Count: 41, Neg. LLF: 75.56945052550121
Iteration: 5, Func. Count: 51, Neg. LLF: 68.46992185626614
Iteration: 6, Func. Count: 60, Neg. LLF: 68.3421837133244
Iteration: 7, Func. Count: 69, Neg. LLF: 68.29387704193435
Iteration: 8, Func. Count: 78, Neg. LLF: 68.28699066263364
Iteration: 9, Func. Count: 87, Neg. LLF: 68.2828073976426
Iteration: 10, Func. Count: 96, Neg. LLF: 68.28225947943469
Iteration: 11, Func. Count: 105, Neg. LLF: 68.28222792807945
Iteration: 12, Func. Count: 114, Neg. LLF: 68.28222678603065
Iteration: 13, Func. Count: 122, Neg. LLF: 68.28222684823916
Optimization terminated successfully (Exit mode 0)
Current function value: 68.28222678603065
Iterations: 13
Function evaluations: 122
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 120.6054446091462
Iteration: 2, Func. Count: 22, Neg. LLF: 567.901689458022
Iteration: 3, Func. Count: 34, Neg. LLF: 355.4241624520729
Iteration: 4, Func. Count: 45, Neg. LLF: 71.17045797794727
Iteration: 5, Func. Count: 56, Neg. LLF: 68.52491286163686
Iteration: 6, Func. Count: 66, Neg. LLF: 68.764721574502
Iteration: 7, Func. Count: 77, Neg. LLF: 68.53763637545823
Iteration: 8, Func. Count: 88, Neg. LLF: 68.28941094854557
Iteration: 9, Func. Count: 98, Neg. LLF: 68.28427136632806
Iteration: 10, Func. Count: 108, Neg. LLF: 68.28286984372397
Iteration: 11, Func. Count: 118, Neg. LLF: 68.28236027510047
Iteration: 12, Func. Count: 128, Neg. LLF: 68.28223665103089
Iteration: 13, Func. Count: 138, Neg. LLF: 68.28222689617787
Iteration: 14, Func. Count: 147, Neg. LLF: 68.2822269493676
Optimization terminated successfully (Exit mode 0)
Current function value: 68.28222689617787
Iterations: 14
Function evaluations: 147
Gradient evaluations: 14
Iteration: 1, Func. Count: 12, Neg. LLF: 105.76032196859306
Iteration: 2, Func. Count: 24, Neg. LLF: 5067.310855968892
Iteration: 3, Func. Count: 36, Neg. LLF: 466.0903135396294
Iteration: 4, Func. Count: 48, Neg. LLF: 72.654653197516
Iteration: 5, Func. Count: 60, Neg. LLF: 68.35614943221458
Iteration: 6, Func. Count: 71, Neg. LLF: 68.39888147319688
Iteration: 7, Func. Count: 83, Neg. LLF: 68.39143008858817
Iteration: 8, Func. Count: 95, Neg. LLF: 68.2857652750368
Iteration: 9, Func. Count: 106, Neg. LLF: 68.28262755942193
Iteration: 10, Func. Count: 117, Neg. LLF: 68.28223052171207
Iteration: 11, Func. Count: 128, Neg. LLF: 68.2822268366916
Iteration: 12, Func. Count: 138, Neg. LLF: 68.2822268622785
Optimization terminated successfully (Exit mode 0)
Current function value: 68.2822268366916
Iterations: 12
Function evaluations: 138
Gradient evaluations: 12
Iteration: 1, Func. Count: 13, Neg. LLF: 204.85663832765516
Iteration: 2, Func. Count: 26, Neg. LLF: 783.7105827847017
Iteration: 3, Func. Count: 39, Neg. LLF: 577.7044213529665
Iteration: 4, Func. Count: 52, Neg. LLF: 74.56822602708176
Iteration: 5, Func. Count: 65, Neg. LLF: 68.44975482752982
Iteration: 6, Func. Count: 77, Neg. LLF: 68.53402508485225
Iteration: 7, Func. Count: 90, Neg. LLF: 68.2962358734553
Iteration: 8, Func. Count: 102, Neg. LLF: 68.60845964286833
Iteration: 9, Func. Count: 115, Neg. LLF: 68.28499898950474
Iteration: 10, Func. Count: 127, Neg. LLF: 68.2815001143524
Iteration: 11, Func. Count: 139, Neg. LLF: 68.28113488394868
Iteration: 12, Func. Count: 151, Neg. LLF: 68.2810943825885
Iteration: 13, Func. Count: 163, Neg. LLF: 68.28109333649559
Iteration: 14, Func. Count: 174, Neg. LLF: 68.28109333650568
Optimization terminated successfully (Exit mode 0)
Current function value: 68.28109333649559
Iterations: 14
Function evaluations: 174
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 100.9953975280682
Iteration: 2, Func. Count: 22, Neg. LLF: 723.0533867913869
Iteration: 3, Func. Count: 32, Neg. LLF: 338.84381709036785
Iteration: 4, Func. Count: 42, Neg. LLF: 2838.4346557498848
Iteration: 5, Func. Count: 52, Neg. LLF: 162.46588404761513
Iteration: 6, Func. Count: 62, Neg. LLF: 193.66014248398253
Iteration: 7, Func. Count: 72, Neg. LLF: 100.2314009804144
Iteration: 8, Func. Count: 82, Neg. LLF: 126.9731382895319
Iteration: 9, Func. Count: 92, Neg. LLF: 68.43171502861996
Iteration: 10, Func. Count: 102, Neg. LLF: 67.49089043714604
Iteration: 11, Func. Count: 111, Neg. LLF: 67.48584549277086
Iteration: 12, Func. Count: 120, Neg. LLF: 67.47759275374564
Iteration: 13, Func. Count: 129, Neg. LLF: 67.47741682057088
Iteration: 14, Func. Count: 138, Neg. LLF: 67.47734610210168
Iteration: 15, Func. Count: 147, Neg. LLF: 67.47734542513642
Optimization terminated successfully (Exit mode 0)
Current function value: 67.47734542513642
Iterations: 15
Function evaluations: 147
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 137.13925626772303
Iteration: 2, Func. Count: 22, Neg. LLF: 1544.3867237477643
Iteration: 3, Func. Count: 33, Neg. LLF: 232.45758561111347
Iteration: 4, Func. Count: 44, Neg. LLF: 70.52492305730424
Iteration: 5, Func. Count: 56, Neg. LLF: 69.64768221314773
Iteration: 6, Func. Count: 67, Neg. LLF: 81.05604375493257
Iteration: 7, Func. Count: 78, Neg. LLF: 67.61647179067167
Iteration: 8, Func. Count: 88, Neg. LLF: 67.62992023168076
Iteration: 9, Func. Count: 99, Neg. LLF: 67.52655038338138
Iteration: 10, Func. Count: 110, Neg. LLF: 67.4813505245535
Iteration: 11, Func. Count: 120, Neg. LLF: 67.47882771614367
Iteration: 12, Func. Count: 130, Neg. LLF: 67.47761141707576
Iteration: 13, Func. Count: 140, Neg. LLF: 67.47738755426184
Iteration: 14, Func. Count: 150, Neg. LLF: 67.47734735235663
Iteration: 15, Func. Count: 160, Neg. LLF: 67.47734543029526
Iteration: 16, Func. Count: 169, Neg. LLF: 67.47734549097503
Optimization terminated successfully (Exit mode 0)
Current function value: 67.47734543029526
Iterations: 16
Function evaluations: 169
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 108.9298454475786
Iteration: 2, Func. Count: 25, Neg. LLF: 1221.6188509371368
Iteration: 3, Func. Count: 37, Neg. LLF: 310.4058056707497
Iteration: 4, Func. Count: 49, Neg. LLF: 68.23264403255698
Iteration: 5, Func. Count: 60, Neg. LLF: 89.9614033014603
Iteration: 6, Func. Count: 72, Neg. LLF: 4197314.626315881
Iteration: 7, Func. Count: 84, Neg. LLF: 71.62872741862599
Iteration: 8, Func. Count: 97, Neg. LLF: 67.94866369613369
Iteration: 9, Func. Count: 109, Neg. LLF: 67.48127777760102
Iteration: 10, Func. Count: 120, Neg. LLF: 67.47791147242363
Iteration: 11, Func. Count: 131, Neg. LLF: 67.4774462476664
Iteration: 12, Func. Count: 142, Neg. LLF: 67.47736161048262
Iteration: 13, Func. Count: 153, Neg. LLF: 67.47734558493492
Iteration: 14, Func. Count: 163, Neg. LLF: 67.47734561499689
Optimization terminated successfully (Exit mode 0)
Current function value: 67.47734558493492
Iterations: 14
Function evaluations: 163
Gradient evaluations: 14
Iteration: 1, Func. Count: 13, Neg. LLF: 117.99168226026617
Iteration: 2, Func. Count: 27, Neg. LLF: 66293.24708901028
Iteration: 3, Func. Count: 40, Neg. LLF: 338.75124489587455
Iteration: 4, Func. Count: 53, Neg. LLF: 3036.811343636986
Iteration: 5, Func. Count: 66, Neg. LLF: 68.1654683844475
Iteration: 6, Func. Count: 78, Neg. LLF: 320.36554879739333
Iteration: 7, Func. Count: 91, Neg. LLF: 74.463524830325
Iteration: 8, Func. Count: 105, Neg. LLF: 75.41503583335525
Iteration: 9, Func. Count: 118, Neg. LLF: 67.60967678026502
Iteration: 10, Func. Count: 130, Neg. LLF: 67.52437970382229
Iteration: 11, Func. Count: 142, Neg. LLF: 67.49554137247145
Iteration: 12, Func. Count: 154, Neg. LLF: 67.47771042593928
Iteration: 13, Func. Count: 166, Neg. LLF: 67.47738693158222
Iteration: 14, Func. Count: 178, Neg. LLF: 67.47735358726267
Iteration: 15, Func. Count: 190, Neg. LLF: 67.47734538861187
Iteration: 16, Func. Count: 201, Neg. LLF: 67.47734542586724
Optimization terminated successfully (Exit mode 0)
Current function value: 67.47734538861187
Iterations: 16
Function evaluations: 201
Gradient evaluations: 16
Iteration: 1, Func. Count: 14, Neg. LLF: 110.86034167985218
Iteration: 2, Func. Count: 29, Neg. LLF: 633.0934209161111
Iteration: 3, Func. Count: 43, Neg. LLF: 388.7969155521148
Iteration: 4, Func. Count: 57, Neg. LLF: 946.355297746931
Iteration: 5, Func. Count: 71, Neg. LLF: 68.03160738411029
Iteration: 6, Func. Count: 84, Neg. LLF: 100.25366694623504
Iteration: 7, Func. Count: 98, Neg. LLF: 67.62770672866802
Iteration: 8, Func. Count: 111, Neg. LLF: 70.51658854181511
Iteration: 9, Func. Count: 125, Neg. LLF: 67.62834255524086
Iteration: 10, Func. Count: 139, Neg. LLF: 67.43954020873959
Iteration: 11, Func. Count: 152, Neg. LLF: 67.4389291807825
Iteration: 12, Func. Count: 166, Neg. LLF: 67.43393084866163
Iteration: 13, Func. Count: 179, Neg. LLF: 67.43386847802581
Iteration: 14, Func. Count: 192, Neg. LLF: 67.43386419099201
Iteration: 15, Func. Count: 204, Neg. LLF: 67.43386419103373
Optimization terminated successfully (Exit mode 0)
Current function value: 67.43386419099201
Iterations: 15
Function evaluations: 204
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 100.08603858414963
Iteration: 2, Func. Count: 24, Neg. LLF: 1317463.7427351363
Iteration: 3, Func. Count: 35, Neg. LLF: 10366240.006290892
Iteration: 4, Func. Count: 46, Neg. LLF: 7025925.467536939
Iteration: 5, Func. Count: 57, Neg. LLF: 2927.6898319666234
Iteration: 6, Func. Count: 68, Neg. LLF: 1652521.2887572083
Iteration: 7, Func. Count: 79, Neg. LLF: 130.5074480835719
Iteration: 8, Func. Count: 90, Neg. LLF: 78.59950329279316
Iteration: 9, Func. Count: 101, Neg. LLF: 109.21380855362798
Iteration: 10, Func. Count: 112, Neg. LLF: 67.69801901750799
Iteration: 11, Func. Count: 122, Neg. LLF: 69.72561564823728
Iteration: 12, Func. Count: 134, Neg. LLF: 72.52491316623542
Iteration: 13, Func. Count: 146, Neg. LLF: 67.30143841707309
Iteration: 14, Func. Count: 156, Neg. LLF: 67.26612892921392
Iteration: 15, Func. Count: 166, Neg. LLF: 67.26037808001936
Iteration: 16, Func. Count: 176, Neg. LLF: 67.2595501321678
Iteration: 17, Func. Count: 186, Neg. LLF: 67.25950224401498
Iteration: 18, Func. Count: 196, Neg. LLF: 67.25949902634076
Iteration: 19, Func. Count: 205, Neg. LLF: 67.25949902634055
Optimization terminated successfully (Exit mode 0)
Current function value: 67.25949902634076
Iterations: 19
Function evaluations: 205
Gradient evaluations: 19
Iteration: 1, Func. Count: 12, Neg. LLF: 20901.1067960606
Iteration: 2, Func. Count: 24, Neg. LLF: 6319576.016690236
Iteration: 3, Func. Count: 36, Neg. LLF: 3280532.8932339293
Iteration: 4, Func. Count: 48, Neg. LLF: 3287019.0102153867
Iteration: 5, Func. Count: 60, Neg. LLF: 71.3761319118138
Iteration: 6, Func. Count: 72, Neg. LLF: 68.83346979331274
Iteration: 7, Func. Count: 84, Neg. LLF: 67.56151447277757
Iteration: 8, Func. Count: 95, Neg. LLF: 68.33737494187271
Iteration: 9, Func. Count: 107, Neg. LLF: 67.2989087727649
Iteration: 10, Func. Count: 118, Neg. LLF: 67.27578927353858
Iteration: 11, Func. Count: 129, Neg. LLF: 67.26081621962855
Iteration: 12, Func. Count: 140, Neg. LLF: 67.2598478024317
Iteration: 13, Func. Count: 151, Neg. LLF: 67.25953523618469
Iteration: 14, Func. Count: 162, Neg. LLF: 67.25950470861535
Iteration: 15, Func. Count: 173, Neg. LLF: 67.25950002402064
Iteration: 16, Func. Count: 184, Neg. LLF: 67.25949909617856
Optimization terminated successfully (Exit mode 0)
Current function value: 67.25949909617856
Iterations: 16
Function evaluations: 184
Gradient evaluations: 16
Iteration: 1, Func. Count: 13, Neg. LLF: 1031.2657998897193
Iteration: 2, Func. Count: 26, Neg. LLF: 36144971.96218467
Iteration: 3, Func. Count: 39, Neg. LLF: 3280873.8855387093
Iteration: 4, Func. Count: 52, Neg. LLF: 2688.5126431329345
Iteration: 5, Func. Count: 65, Neg. LLF: 68.65155407161704
Iteration: 6, Func. Count: 77, Neg. LLF: 70.29492345762958
Iteration: 7, Func. Count: 91, Neg. LLF: 87.85711931451047
Iteration: 8, Func. Count: 106, Neg. LLF: 7276.156869271495
Iteration: 9, Func. Count: 119, Neg. LLF: 68.9981803154096
Iteration: 10, Func. Count: 132, Neg. LLF: 67.28618131184544
Iteration: 11, Func. Count: 144, Neg. LLF: 67.27572921372165
Iteration: 12, Func. Count: 156, Neg. LLF: 67.26012495037206
Iteration: 13, Func. Count: 168, Neg. LLF: 67.25962858466063
Iteration: 14, Func. Count: 180, Neg. LLF: 67.25952278592256
Iteration: 15, Func. Count: 192, Neg. LLF: 67.25950455616403
Iteration: 16, Func. Count: 204, Neg. LLF: 67.25949953041997
Iteration: 17, Func. Count: 215, Neg. LLF: 67.25949958244416
Optimization terminated successfully (Exit mode 0)
Current function value: 67.25949953041997
Iterations: 17
Function evaluations: 215
Gradient evaluations: 17
Iteration: 1, Func. Count: 14, Neg. LLF: 102.11897785248406
Iteration: 2, Func. Count: 29, Neg. LLF: 6080052.696318796
Iteration: 3, Func. Count: 43, Neg. LLF: 3270827.5365328267
Iteration: 4, Func. Count: 57, Neg. LLF: 68.27970076132736
Iteration: 5, Func. Count: 70, Neg. LLF: 256.95579629782475
Iteration: 6, Func. Count: 84, Neg. LLF: 86.34714687279212
Iteration: 7, Func. Count: 98, Neg. LLF: 73.11984074184257
Iteration: 8, Func. Count: 112, Neg. LLF: 68.17326478986377
Iteration: 9, Func. Count: 126, Neg. LLF: 67.33876094433657
Iteration: 10, Func. Count: 139, Neg. LLF: 67.40099400871331
Iteration: 11, Func. Count: 153, Neg. LLF: 67.30679620034691
Iteration: 12, Func. Count: 167, Neg. LLF: 67.27000729917096
Iteration: 13, Func. Count: 181, Neg. LLF: 67.25985239865797
Iteration: 14, Func. Count: 194, Neg. LLF: 67.2595391866022
Iteration: 15, Func. Count: 207, Neg. LLF: 67.25949972922203
Iteration: 16, Func. Count: 220, Neg. LLF: 67.25949908079787
Optimization terminated successfully (Exit mode 0)
Current function value: 67.25949908079787
Iterations: 16
Function evaluations: 220
Gradient evaluations: 16
Iteration: 1, Func. Count: 15, Neg. LLF: 886.4378883210388
Iteration: 2, Func. Count: 30, Neg. LLF: 6163827.124424955
Iteration: 3, Func. Count: 45, Neg. LLF: 3280571.6443142286
Iteration: 4, Func. Count: 60, Neg. LLF: 75.3156666843036
Iteration: 5, Func. Count: 75, Neg. LLF: 71.11434375403454
Iteration: 6, Func. Count: 90, Neg. LLF: 73.87689201432507
Iteration: 7, Func. Count: 105, Neg. LLF: 203.29590014226923
Iteration: 8, Func. Count: 120, Neg. LLF: 67.41989280724631
Iteration: 9, Func. Count: 134, Neg. LLF: 68.27006427196476
Iteration: 10, Func. Count: 149, Neg. LLF: 68.69041555205251
Iteration: 11, Func. Count: 164, Neg. LLF: 67.27761632219924
Iteration: 12, Func. Count: 178, Neg. LLF: 67.26730961395548
Iteration: 13, Func. Count: 192, Neg. LLF: 68.15905446146648
Iteration: 14, Func. Count: 208, Neg. LLF: 67.26081894732802
Iteration: 15, Func. Count: 222, Neg. LLF: 67.25954849891247
Iteration: 16, Func. Count: 236, Neg. LLF: 67.25950333760825
Iteration: 17, Func. Count: 250, Neg. LLF: 67.25949902127239
Iteration: 18, Func. Count: 263, Neg. LLF: 67.25949902555259
Optimization terminated successfully (Exit mode 0)
Current function value: 67.25949902127239
Iterations: 18
Function evaluations: 263
Gradient evaluations: 18
Iteration: 1, Func. Count: 12, Neg. LLF: 101.59254472602133
Iteration: 2, Func. Count: 26, Neg. LLF: 7916417.6396498885
Iteration: 3, Func. Count: 38, Neg. LLF: 30006002.007687233
Iteration: 4, Func. Count: 50, Neg. LLF: 5048239.051595829
Iteration: 5, Func. Count: 62, Neg. LLF: 168.31342033083644
Iteration: 6, Func. Count: 74, Neg. LLF: 191.01216816459663
Iteration: 7, Func. Count: 86, Neg. LLF: 132.70339008649654
Iteration: 8, Func. Count: 98, Neg. LLF: 70.5226683470443
Iteration: 9, Func. Count: 110, Neg. LLF: 77.63112972255806
Iteration: 10, Func. Count: 122, Neg. LLF: 67.36952786548136
Iteration: 11, Func. Count: 133, Neg. LLF: 67.28809102800352
Iteration: 12, Func. Count: 144, Neg. LLF: 67.2693202281504
Iteration: 13, Func. Count: 155, Neg. LLF: 67.260648921
Iteration: 14, Func. Count: 166, Neg. LLF: 67.25957717027595
Iteration: 15, Func. Count: 177, Neg. LLF: 67.25950671217831
Iteration: 16, Func. Count: 188, Neg. LLF: 67.25949928492197
Iteration: 17, Func. Count: 198, Neg. LLF: 67.25949923211624
Optimization terminated successfully (Exit mode 0)
Current function value: 67.25949928492197
Iterations: 17
Function evaluations: 198
Gradient evaluations: 17
Iteration: 1, Func. Count: 13, Neg. LLF: 878.8099388120768
Iteration: 2, Func. Count: 26, Neg. LLF: 6014376.260451489
Iteration: 3, Func. Count: 39, Neg. LLF: 3281960.4632980353
Iteration: 4, Func. Count: 52, Neg. LLF: 1292.7481087468827
Iteration: 5, Func. Count: 65, Neg. LLF: 74.50565450108411
Iteration: 6, Func. Count: 78, Neg. LLF: 68.29565444259933
Iteration: 7, Func. Count: 90, Neg. LLF: 68.37274672516365
Iteration: 8, Func. Count: 103, Neg. LLF: 68.95797848204174
Iteration: 9, Func. Count: 116, Neg. LLF: 68.03114321960271
Iteration: 10, Func. Count: 129, Neg. LLF: 67.27943100050486
Iteration: 11, Func. Count: 141, Neg. LLF: 67.26565389484303
Iteration: 12, Func. Count: 153, Neg. LLF: 67.260463652998
Iteration: 13, Func. Count: 165, Neg. LLF: 67.25972597749424
Iteration: 14, Func. Count: 177, Neg. LLF: 67.2595120216532
Iteration: 15, Func. Count: 189, Neg. LLF: 67.259502367986
Iteration: 16, Func. Count: 201, Neg. LLF: 67.25949913377099
Iteration: 17, Func. Count: 212, Neg. LLF: 67.25949918673132
Optimization terminated successfully (Exit mode 0)
Current function value: 67.25949913377099
Iterations: 17
Function evaluations: 212
Gradient evaluations: 17
Iteration: 1, Func. Count: 14, Neg. LLF: 108.07548622549542
Iteration: 2, Func. Count: 29, Neg. LLF: 35309704.473757744
Iteration: 3, Func. Count: 43, Neg. LLF: 3272952.000517652
Iteration: 4, Func. Count: 57, Neg. LLF: 3285715.730830525
Iteration: 5, Func. Count: 71, Neg. LLF: 68.33948035557115
Iteration: 6, Func. Count: 84, Neg. LLF: 69.9812808319876
Iteration: 7, Func. Count: 98, Neg. LLF: 79.63765175832299
Iteration: 8, Func. Count: 114, Neg. LLF: 68.31114596711068
Iteration: 9, Func. Count: 128, Neg. LLF: 68.30745303932959
Iteration: 10, Func. Count: 142, Neg. LLF: 67.29104154553471
Iteration: 11, Func. Count: 155, Neg. LLF: 67.2670481398183
Iteration: 12, Func. Count: 168, Neg. LLF: 67.26222986212778
Iteration: 13, Func. Count: 181, Neg. LLF: 67.25971625776181
Iteration: 14, Func. Count: 194, Neg. LLF: 67.25955748725184
Iteration: 15, Func. Count: 207, Neg. LLF: 67.25950199752349
Iteration: 16, Func. Count: 220, Neg. LLF: 67.25949922394015
Iteration: 17, Func. Count: 232, Neg. LLF: 67.25949927612058
Optimization terminated successfully (Exit mode 0)
Current function value: 67.25949922394015
Iterations: 17
Function evaluations: 232
Gradient evaluations: 17
Iteration: 1, Func. Count: 15, Neg. LLF: 108.46568182958902
Iteration: 2, Func. Count: 31, Neg. LLF: 6238236.246166205
Iteration: 3, Func. Count: 46, Neg. LLF: 3280421.607492291
Iteration: 4, Func. Count: 61, Neg. LLF: 70.97679063142355
Iteration: 5, Func. Count: 76, Neg. LLF: 77.148541593561
Iteration: 6, Func. Count: 91, Neg. LLF: 2769995.582388884
Iteration: 7, Func. Count: 106, Neg. LLF: 107.65522161238869
Iteration: 8, Func. Count: 121, Neg. LLF: 69.68105108086046
Iteration: 9, Func. Count: 136, Neg. LLF: 67.77748242896199
Iteration: 10, Func. Count: 150, Neg. LLF: 67.31382390790928
Iteration: 11, Func. Count: 164, Neg. LLF: 67.27815872762079
Iteration: 12, Func. Count: 178, Neg. LLF: 67.2623306386405
Iteration: 13, Func. Count: 192, Neg. LLF: 67.25992530820812
Iteration: 14, Func. Count: 206, Neg. LLF: 67.25955769240144
Iteration: 15, Func. Count: 220, Neg. LLF: 67.25950392151292
Iteration: 16, Func. Count: 234, Neg. LLF: 67.25949952638254
Iteration: 17, Func. Count: 247, Neg. LLF: 67.25949955326008
Optimization terminated successfully (Exit mode 0)
Current function value: 67.25949952638254
Iterations: 17
Function evaluations: 247
Gradient evaluations: 17
Iteration: 1, Func. Count: 16, Neg. LLF: 109.16402062730063
Iteration: 2, Func. Count: 33, Neg. LLF: 4327152.4390693335
Iteration: 3, Func. Count: 49, Neg. LLF: 3282633.4255774715
Iteration: 4, Func. Count: 65, Neg. LLF: 75.6292470375678
Iteration: 5, Func. Count: 81, Neg. LLF: 86.14475018041644
Iteration: 6, Func. Count: 97, Neg. LLF: 2907583.9693314927
Iteration: 7, Func. Count: 113, Neg. LLF: 72.22063915226377
Iteration: 8, Func. Count: 129, Neg. LLF: 68.00001223009724
Iteration: 9, Func. Count: 144, Neg. LLF: 68.43585228361134
Iteration: 10, Func. Count: 160, Neg. LLF: 68.86944666228614
Iteration: 11, Func. Count: 176, Neg. LLF: 67.7833822987077
Iteration: 12, Func. Count: 192, Neg. LLF: 67.31999022475175
Iteration: 13, Func. Count: 207, Neg. LLF: 67.28396663025725
Iteration: 14, Func. Count: 222, Neg. LLF: 67.26880936936477
Iteration: 15, Func. Count: 237, Neg. LLF: 67.2603473017753
Iteration: 16, Func. Count: 252, Neg. LLF: 67.25975640984396
Iteration: 17, Func. Count: 267, Neg. LLF: 67.2595140745755
Iteration: 18, Func. Count: 282, Neg. LLF: 67.25950001251881
Iteration: 19, Func. Count: 297, Neg. LLF: 67.25949906984371
Optimization terminated successfully (Exit mode 0)
Current function value: 67.25949906984371
Iterations: 19
Function evaluations: 297
Gradient evaluations: 19
Iteration: 1, Func. Count: 7, Neg. LLF: 111.61358891316357
Iteration: 2, Func. Count: 17, Neg. LLF: 18306.64879258118
Iteration: 3, Func. Count: 24, Neg. LLF: 970.3953231020236
Iteration: 4, Func. Count: 31, Neg. LLF: 168.533410036323
Iteration: 5, Func. Count: 38, Neg. LLF: 116.34692928245907
Iteration: 6, Func. Count: 45, Neg. LLF: 259.3914794255527
Iteration: 7, Func. Count: 52, Neg. LLF: 68.77857811585376
Iteration: 8, Func. Count: 58, Neg. LLF: 68.545712466901
Iteration: 9, Func. Count: 64, Neg. LLF: 68.4612931550533
Iteration: 10, Func. Count: 70, Neg. LLF: 68.4372107996558
Iteration: 11, Func. Count: 76, Neg. LLF: 68.43620666430024
Iteration: 12, Func. Count: 82, Neg. LLF: 68.43615444182454
Iteration: 13, Func. Count: 87, Neg. LLF: 68.43615444179157
Optimization terminated successfully (Exit mode 0)
Current function value: 68.43615444182454
Iterations: 13
Function evaluations: 87
Gradient evaluations: 13
Iteration: 1, Func. Count: 5, Neg. LLF: 140.14556216510093
Iteration: 2, Func. Count: 13, Neg. LLF: 242.28795234199086
Iteration: 3, Func. Count: 19, Neg. LLF: 82.81999506071469
Iteration: 4, Func. Count: 23, Neg. LLF: 82.8051543023005
Iteration: 5, Func. Count: 27, Neg. LLF: 82.78353456299321
Iteration: 6, Func. Count: 31, Neg. LLF: 82.77776825473535
Iteration: 7, Func. Count: 35, Neg. LLF: 82.77671982905015
Iteration: 8, Func. Count: 39, Neg. LLF: 82.77660415158621
Iteration: 9, Func. Count: 43, Neg. LLF: 82.77659699787205
Iteration: 10, Func. Count: 46, Neg. LLF: 82.77659699787831
Optimization terminated successfully (Exit mode 0)
Current function value: 82.77659699787205
Iterations: 10
Function evaluations: 46
Gradient evaluations: 10
Iteration: 1, Func. Count: 6, Neg. LLF: 171.91606233696365
Iteration: 2, Func. Count: 17, Neg. LLF: 305.2495357214377
Iteration: 3, Func. Count: 23, Neg. LLF: 759.3033912395371
Iteration: 4, Func. Count: 30, Neg. LLF: 74.51465243760313
Iteration: 5, Func. Count: 35, Neg. LLF: 74.49601781780753
Iteration: 6, Func. Count: 40, Neg. LLF: 74.48614548509542
Iteration: 7, Func. Count: 45, Neg. LLF: 74.48268090423613
Iteration: 8, Func. Count: 50, Neg. LLF: 74.48201094810904
Iteration: 9, Func. Count: 55, Neg. LLF: 74.48198537859072
Iteration: 10, Func. Count: 60, Neg. LLF: 74.48198466712151
Optimization terminated successfully (Exit mode 0)
Current function value: 74.48198466712151
Iterations: 10
Function evaluations: 60
Gradient evaluations: 10
Iteration: 1, Func. Count: 7, Neg. LLF: 14634853.714657728
Iteration: 2, Func. Count: 14, Neg. LLF: 119640382.76772477
Iteration: 3, Func. Count: 21, Neg. LLF: 133.46582058800365
Iteration: 4, Func. Count: 29, Neg. LLF: 74.77650136879494
Iteration: 5, Func. Count: 35, Neg. LLF: 74.52212393532972
Iteration: 6, Func. Count: 41, Neg. LLF: 74.48586642045726
Iteration: 7, Func. Count: 47, Neg. LLF: 74.48218677491518
Iteration: 8, Func. Count: 53, Neg. LLF: 74.48198795815223
Iteration: 9, Func. Count: 59, Neg. LLF: 74.48198468195434
Iteration: 10, Func. Count: 64, Neg. LLF: 74.48198461521226
Optimization terminated successfully (Exit mode 0)
Current function value: 74.48198468195434
Iterations: 10
Function evaluations: 64
Gradient evaluations: 10
Iteration: 1, Func. Count: 8, Neg. LLF: 141.86097431148383
Iteration: 2, Func. Count: 19, Neg. LLF: 16089442.472998036
Iteration: 3, Func. Count: 27, Neg. LLF: 309.8184264414427
Iteration: 4, Func. Count: 36, Neg. LLF: 75.32891143091949
Iteration: 5, Func. Count: 43, Neg. LLF: 74.9147454270976
Iteration: 6, Func. Count: 50, Neg. LLF: 74.54543107921091
Iteration: 7, Func. Count: 57, Neg. LLF: 74.49723807047073
Iteration: 8, Func. Count: 64, Neg. LLF: 74.48496034399129
Iteration: 9, Func. Count: 71, Neg. LLF: 74.48271518146872
Iteration: 10, Func. Count: 78, Neg. LLF: 74.48198963619335
Iteration: 11, Func. Count: 85, Neg. LLF: 74.48198476960944
Iteration: 12, Func. Count: 91, Neg. LLF: 74.48198473159046
Optimization terminated successfully (Exit mode 0)
Current function value: 74.48198476960944
Iterations: 12
Function evaluations: 91
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 154.13555441374388
Iteration: 2, Func. Count: 22, Neg. LLF: 17622607.23974752
Iteration: 3, Func. Count: 31, Neg. LLF: 321.12646706893173
Iteration: 4, Func. Count: 41, Neg. LLF: 75.67169465349038
Iteration: 5, Func. Count: 49, Neg. LLF: 75.19114788969412
Iteration: 6, Func. Count: 57, Neg. LLF: 74.6034627210209
Iteration: 7, Func. Count: 65, Neg. LLF: 74.51783181948626
Iteration: 8, Func. Count: 73, Neg. LLF: 74.48729019122582
Iteration: 9, Func. Count: 81, Neg. LLF: 74.48308389116734
Iteration: 10, Func. Count: 89, Neg. LLF: 74.4819908919279
Iteration: 11, Func. Count: 97, Neg. LLF: 74.48198465764473
Iteration: 12, Func. Count: 104, Neg. LLF: 74.48198463233264
Optimization terminated successfully (Exit mode 0)
Current function value: 74.48198465764473
Iterations: 12
Function evaluations: 104
Gradient evaluations: 12
Iteration: 1, Func. Count: 6, Neg. LLF: 149.9603816879815
Iteration: 2, Func. Count: 15, Neg. LLF: 1332.2092116231365
Iteration: 3, Func. Count: 21, Neg. LLF: 10343137.634555478
Iteration: 4, Func. Count: 27, Neg. LLF: 105.41549660147578
Iteration: 5, Func. Count: 33, Neg. LLF: 83.2774503426491
Iteration: 6, Func. Count: 39, Neg. LLF: 77.94084569452312
Iteration: 7, Func. Count: 45, Neg. LLF: 79.06750922200963
Iteration: 8, Func. Count: 51, Neg. LLF: 90.55479212732102
Iteration: 9, Func. Count: 57, Neg. LLF: 76.24634884106635
Iteration: 10, Func. Count: 62, Neg. LLF: 75.96593461375389
Iteration: 11, Func. Count: 67, Neg. LLF: 75.8044235835642
Iteration: 12, Func. Count: 72, Neg. LLF: 75.77194613809829
Iteration: 13, Func. Count: 77, Neg. LLF: 75.76754989493968
Iteration: 14, Func. Count: 82, Neg. LLF: 75.76735964603319
Iteration: 15, Func. Count: 87, Neg. LLF: 75.76735848220923
Iteration: 16, Func. Count: 91, Neg. LLF: 75.76735848220918
Optimization terminated successfully (Exit mode 0)
Current function value: 75.76735848220923
Iterations: 16
Function evaluations: 91
Gradient evaluations: 16
Iteration: 1, Func. Count: 7, Neg. LLF: 168.7097621737664
Iteration: 2, Func. Count: 19, Neg. LLF: 7402333.388461336
Iteration: 3, Func. Count: 26, Neg. LLF: 912.0640311145927
Iteration: 4, Func. Count: 34, Neg. LLF: 73.00093841760071
Iteration: 5, Func. Count: 40, Neg. LLF: 75.2300074472465
Iteration: 6, Func. Count: 47, Neg. LLF: 77.86963903557208
Iteration: 7, Func. Count: 54, Neg. LLF: 72.6678750499188
Iteration: 8, Func. Count: 60, Neg. LLF: 72.56843142234067
Iteration: 9, Func. Count: 66, Neg. LLF: 72.45032460551782
Iteration: 10, Func. Count: 72, Neg. LLF: 72.40986476199824
Iteration: 11, Func. Count: 78, Neg. LLF: 72.39403515325304
Iteration: 12, Func. Count: 84, Neg. LLF: 72.39231196785765
Iteration: 13, Func. Count: 90, Neg. LLF: 72.3921529409691
Iteration: 14, Func. Count: 96, Neg. LLF: 72.39213650733673
Iteration: 15, Func. Count: 102, Neg. LLF: 72.39213513115598
Iteration: 16, Func. Count: 107, Neg. LLF: 72.39213512062449
Optimization terminated successfully (Exit mode 0)
Current function value: 72.39213513115598
Iterations: 16
Function evaluations: 107
Gradient evaluations: 16
Iteration: 1, Func. Count: 8, Neg. LLF: 6278474.712040336
Iteration: 2, Func. Count: 16, Neg. LLF: 139004298.19204125
Iteration: 3, Func. Count: 24, Neg. LLF: 156.6443202691143
Iteration: 4, Func. Count: 34, Neg. LLF: 72.64798825801653
Iteration: 5, Func. Count: 41, Neg. LLF: 72.91176038218535
Iteration: 6, Func. Count: 49, Neg. LLF: 72.62896874555742
Iteration: 7, Func. Count: 57, Neg. LLF: 72.43043897221696
Iteration: 8, Func. Count: 64, Neg. LLF: 72.37041217749058
Iteration: 9, Func. Count: 71, Neg. LLF: 72.354839434252
Iteration: 10, Func. Count: 78, Neg. LLF: 72.3497560965892
Iteration: 11, Func. Count: 85, Neg. LLF: 72.34853452421511
Iteration: 12, Func. Count: 92, Neg. LLF: 72.34821233155813
Iteration: 13, Func. Count: 99, Neg. LLF: 72.34819799186054
Iteration: 14, Func. Count: 105, Neg. LLF: 72.34819797115392
Optimization terminated successfully (Exit mode 0)
Current function value: 72.34819799186054
Iterations: 14
Function evaluations: 105
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 135.8123987937719
Iteration: 2, Func. Count: 19, Neg. LLF: 74571488.44512959
Iteration: 3, Func. Count: 28, Neg. LLF: 8211295.722098899
Iteration: 4, Func. Count: 37, Neg. LLF: 244.11994305306519
Iteration: 5, Func. Count: 46, Neg. LLF: 76.08351467556396
Iteration: 6, Func. Count: 55, Neg. LLF: 73.22933776746034
Iteration: 7, Func. Count: 64, Neg. LLF: 72.46575239576589
Iteration: 8, Func. Count: 72, Neg. LLF: 72.43104227367535
Iteration: 9, Func. Count: 80, Neg. LLF: 72.3805636345664
Iteration: 10, Func. Count: 88, Neg. LLF: 72.367120108565
Iteration: 11, Func. Count: 96, Neg. LLF: 72.35375635032685
Iteration: 12, Func. Count: 104, Neg. LLF: 72.34865991501823
Iteration: 13, Func. Count: 112, Neg. LLF: 72.34820306411734
Iteration: 14, Func. Count: 120, Neg. LLF: 72.34819799940301
Iteration: 15, Func. Count: 127, Neg. LLF: 72.34819799291135
Optimization terminated successfully (Exit mode 0)
Current function value: 72.34819799940301
Iterations: 15
Function evaluations: 127
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 141.62103492945133
Iteration: 2, Func. Count: 23, Neg. LLF: 92850718.97722864
Iteration: 3, Func. Count: 33, Neg. LLF: 8266882.014722022
Iteration: 4, Func. Count: 43, Neg. LLF: 83.19455568496606
Iteration: 5, Func. Count: 53, Neg. LLF: 73.2967599337278
Iteration: 6, Func. Count: 62, Neg. LLF: 72.54831559175919
Iteration: 7, Func. Count: 71, Neg. LLF: 74.19034389173083
Iteration: 8, Func. Count: 81, Neg. LLF: 72.49235074397589
Iteration: 9, Func. Count: 91, Neg. LLF: 72.39424324393653
Iteration: 10, Func. Count: 101, Neg. LLF: 72.36719774475888
Iteration: 11, Func. Count: 111, Neg. LLF: 72.35332696913555
Iteration: 12, Func. Count: 120, Neg. LLF: 72.34590087995836
Iteration: 13, Func. Count: 129, Neg. LLF: 72.34168950978719
Iteration: 14, Func. Count: 138, Neg. LLF: 72.34087348878741
Iteration: 15, Func. Count: 147, Neg. LLF: 72.34074609482832
Iteration: 16, Func. Count: 156, Neg. LLF: 72.34072188326984
Iteration: 17, Func. Count: 165, Neg. LLF: 72.34071997858044
Iteration: 18, Func. Count: 173, Neg. LLF: 72.34071995168794
Optimization terminated successfully (Exit mode 0)
Current function value: 72.34071997858044
Iterations: 18
Function evaluations: 173
Gradient evaluations: 18
Iteration: 1, Func. Count: 7, Neg. LLF: 153.9567082714406
Iteration: 2, Func. Count: 17, Neg. LLF: 484.40599891208575
Iteration: 3, Func. Count: 24, Neg. LLF: 4318291.47122674
Iteration: 4, Func. Count: 31, Neg. LLF: 6473807.877214227
Iteration: 5, Func. Count: 38, Neg. LLF: 125.73118041191552
Iteration: 6, Func. Count: 45, Neg. LLF: 4905732.656233158
Iteration: 7, Func. Count: 52, Neg. LLF: 7443348.732307265
Iteration: 8, Func. Count: 59, Neg. LLF: 76.69446852202734
Iteration: 9, Func. Count: 66, Neg. LLF: 74.42131688550965
Iteration: 10, Func. Count: 72, Neg. LLF: 73.91544434542611
Iteration: 11, Func. Count: 78, Neg. LLF: 73.74400780583488
Iteration: 12, Func. Count: 84, Neg. LLF: 73.58928325237693
Iteration: 13, Func. Count: 90, Neg. LLF: 73.53396413871619
Iteration: 14, Func. Count: 96, Neg. LLF: 73.5287333342839
Iteration: 15, Func. Count: 102, Neg. LLF: 73.5282036826067
Iteration: 16, Func. Count: 108, Neg. LLF: 73.52808003232627
Iteration: 17, Func. Count: 114, Neg. LLF: 73.52795830447059
Iteration: 18, Func. Count: 120, Neg. LLF: 73.5279252391778
Iteration: 19, Func. Count: 126, Neg. LLF: 73.52791992440662
Iteration: 20, Func. Count: 131, Neg. LLF: 73.5279199244186
Optimization terminated successfully (Exit mode 0)
Current function value: 73.52791992440662
Iterations: 20
Function evaluations: 131
Gradient evaluations: 20
Iteration: 1, Func. Count: 8, Neg. LLF: 178.95969197028228
Iteration: 2, Func. Count: 21, Neg. LLF: 10029340.901664458
Iteration: 3, Func. Count: 29, Neg. LLF: 1097.4482112792405
Iteration: 4, Func. Count: 38, Neg. LLF: 72.96431256815545
Iteration: 5, Func. Count: 45, Neg. LLF: 75.93494106196988
Iteration: 6, Func. Count: 53, Neg. LLF: 72.98655910147119
Iteration: 7, Func. Count: 61, Neg. LLF: 72.86811587064919
Iteration: 8, Func. Count: 69, Neg. LLF: 72.50565705859135
Iteration: 9, Func. Count: 76, Neg. LLF: 72.44015894489165
Iteration: 10, Func. Count: 83, Neg. LLF: 72.41133163484965
Iteration: 11, Func. Count: 90, Neg. LLF: 72.39412167519716
Iteration: 12, Func. Count: 97, Neg. LLF: 72.39222709834793
Iteration: 13, Func. Count: 104, Neg. LLF: 72.39213621594641
Iteration: 14, Func. Count: 111, Neg. LLF: 72.39213518940578
Iteration: 15, Func. Count: 117, Neg. LLF: 72.39213517883495
Optimization terminated successfully (Exit mode 0)
Current function value: 72.39213518940578
Iterations: 15
Function evaluations: 117
Gradient evaluations: 15
Iteration: 1, Func. Count: 9, Neg. LLF: 5912879.858647032
Iteration: 2, Func. Count: 18, Neg. LLF: 148248775.1975346
Iteration: 3, Func. Count: 27, Neg. LLF: 154.53347966179788
Iteration: 4, Func. Count: 38, Neg. LLF: 73.23174130050617
Iteration: 5, Func. Count: 46, Neg. LLF: 72.74409932566815
Iteration: 6, Func. Count: 54, Neg. LLF: 72.73964507764803
Iteration: 7, Func. Count: 63, Neg. LLF: 73.36678641476789
Iteration: 8, Func. Count: 72, Neg. LLF: 72.36982346887716
Iteration: 9, Func. Count: 80, Neg. LLF: 72.36146540871327
Iteration: 10, Func. Count: 88, Neg. LLF: 72.34522091461625
Iteration: 11, Func. Count: 96, Neg. LLF: 72.28885250306485
Iteration: 12, Func. Count: 104, Neg. LLF: 72.26386631230714
Iteration: 13, Func. Count: 112, Neg. LLF: 72.23282963971701
Iteration: 14, Func. Count: 120, Neg. LLF: 72.22671100966924
Iteration: 15, Func. Count: 128, Neg. LLF: 72.22181494134679
Iteration: 16, Func. Count: 136, Neg. LLF: 72.21960451160807
Iteration: 17, Func. Count: 144, Neg. LLF: 72.21891378678842
Iteration: 18, Func. Count: 152, Neg. LLF: 72.21887323939947
Iteration: 19, Func. Count: 160, Neg. LLF: 72.21886829269184
Iteration: 20, Func. Count: 168, Neg. LLF: 72.21886732340408
Optimization terminated successfully (Exit mode 0)
Current function value: 72.21886732340408
Iterations: 20
Function evaluations: 168
Gradient evaluations: 20
Iteration: 1, Func. Count: 10, Neg. LLF: 144.13853374066628
Iteration: 2, Func. Count: 21, Neg. LLF: 93800562.80251975
Iteration: 3, Func. Count: 31, Neg. LLF: 16058393.572954448
Iteration: 4, Func. Count: 41, Neg. LLF: 104.937783735628
Iteration: 5, Func. Count: 51, Neg. LLF: 91.25712192651278
Iteration: 6, Func. Count: 61, Neg. LLF: 72.7313617700797
Iteration: 7, Func. Count: 70, Neg. LLF: 74.49223425490214
Iteration: 8, Func. Count: 80, Neg. LLF: 72.40090826159548
Iteration: 9, Func. Count: 89, Neg. LLF: 72.36588187636815
Iteration: 10, Func. Count: 98, Neg. LLF: 72.27466286701977
Iteration: 11, Func. Count: 107, Neg. LLF: 72.22500180187238
Iteration: 12, Func. Count: 116, Neg. LLF: 72.22020318608259
Iteration: 13, Func. Count: 125, Neg. LLF: 72.2191814504486
Iteration: 14, Func. Count: 134, Neg. LLF: 72.2189230697913
Iteration: 15, Func. Count: 143, Neg. LLF: 72.21887235979209
Iteration: 16, Func. Count: 152, Neg. LLF: 72.21886756310957
Iteration: 17, Func. Count: 160, Neg. LLF: 72.21886757077061
Optimization terminated successfully (Exit mode 0)
Current function value: 72.21886756310957
Iterations: 17
Function evaluations: 160
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 137.9126145796509
Iteration: 2, Func. Count: 25, Neg. LLF: 113263312.96697272
Iteration: 3, Func. Count: 36, Neg. LLF: 3257814.4655849217
Iteration: 4, Func. Count: 47, Neg. LLF: 89.1708080556229
Iteration: 5, Func. Count: 58, Neg. LLF: 78.78980035018012
Iteration: 6, Func. Count: 69, Neg. LLF: 83.79764222424296
Iteration: 7, Func. Count: 80, Neg. LLF: 73.28822431568032
Iteration: 8, Func. Count: 90, Neg. LLF: 72.93743915720856
Iteration: 9, Func. Count: 101, Neg. LLF: 72.4411243464941
Iteration: 10, Func. Count: 111, Neg. LLF: 72.3132960451803
Iteration: 11, Func. Count: 121, Neg. LLF: 72.25638998300272
Iteration: 12, Func. Count: 131, Neg. LLF: 72.23924332466
Iteration: 13, Func. Count: 141, Neg. LLF: 72.20396591539841
Iteration: 14, Func. Count: 151, Neg. LLF: 72.19864846179988
Iteration: 15, Func. Count: 161, Neg. LLF: 72.1932255836912
Iteration: 16, Func. Count: 171, Neg. LLF: 72.19306278131386
Iteration: 17, Func. Count: 181, Neg. LLF: 72.19294176310034
Iteration: 18, Func. Count: 191, Neg. LLF: 72.19293255670371
Iteration: 19, Func. Count: 201, Neg. LLF: 72.1929315877002
Optimization terminated successfully (Exit mode 0)
Current function value: 72.1929315877002
Iterations: 19
Function evaluations: 201
Gradient evaluations: 19
Iteration: 1, Func. Count: 8, Neg. LLF: 159.51412081428785
Iteration: 2, Func. Count: 19, Neg. LLF: 965.0534133128778
Iteration: 3, Func. Count: 27, Neg. LLF: 9321966.342370147
Iteration: 4, Func. Count: 35, Neg. LLF: 1552118.387463361
Iteration: 5, Func. Count: 43, Neg. LLF: 2317156.223060848
Iteration: 6, Func. Count: 51, Neg. LLF: 1426851.942098706
Iteration: 7, Func. Count: 59, Neg. LLF: 82.8757144453119
Iteration: 8, Func. Count: 67, Neg. LLF: 2163507.956874308
Iteration: 9, Func. Count: 75, Neg. LLF: 75.02501329789403
Iteration: 10, Func. Count: 83, Neg. LLF: 73.15750783794853
Iteration: 11, Func. Count: 90, Neg. LLF: 72.6529280616177
Iteration: 12, Func. Count: 97, Neg. LLF: 72.65547344059866
Iteration: 13, Func. Count: 105, Neg. LLF: 72.4043265481962
Iteration: 14, Func. Count: 112, Neg. LLF: 72.3659859365338
Iteration: 15, Func. Count: 119, Neg. LLF: 72.35575568920498
Iteration: 16, Func. Count: 126, Neg. LLF: 72.35467079526885
Iteration: 17, Func. Count: 133, Neg. LLF: 72.354533914306
Iteration: 18, Func. Count: 140, Neg. LLF: 72.3543631695282
Iteration: 19, Func. Count: 147, Neg. LLF: 72.35431847237261
Iteration: 20, Func. Count: 154, Neg. LLF: 72.35430168578186
Iteration: 21, Func. Count: 161, Neg. LLF: 72.3542981272863
Iteration: 22, Func. Count: 168, Neg. LLF: 72.35429707910679
Iteration: 23, Func. Count: 174, Neg. LLF: 72.35429707909684
Optimization terminated successfully (Exit mode 0)
Current function value: 72.35429707910679
Iterations: 23
Function evaluations: 174
Gradient evaluations: 23
Iteration: 1, Func. Count: 9, Neg. LLF: 8083017.045481589
Iteration: 2, Func. Count: 18, Neg. LLF: 351933085.05551887
Iteration: 3, Func. Count: 28, Neg. LLF: 98.26540574862697
Iteration: 4, Func. Count: 38, Neg. LLF: 72.86615879018265
Iteration: 5, Func. Count: 46, Neg. LLF: 74.19419762330278
Iteration: 6, Func. Count: 55, Neg. LLF: 77.01558697779197
Iteration: 7, Func. Count: 64, Neg. LLF: 73.17349996415085
Iteration: 8, Func. Count: 74, Neg. LLF: 72.44990618312093
Iteration: 9, Func. Count: 82, Neg. LLF: 72.38049074439037
Iteration: 10, Func. Count: 90, Neg. LLF: 72.36039414867658
Iteration: 11, Func. Count: 98, Neg. LLF: 72.35333740200281
Iteration: 12, Func. Count: 106, Neg. LLF: 72.35152824210407
Iteration: 13, Func. Count: 114, Neg. LLF: 72.35108126331347
Iteration: 14, Func. Count: 122, Neg. LLF: 72.35087784952313
Iteration: 15, Func. Count: 130, Neg. LLF: 72.35084364876178
Iteration: 16, Func. Count: 137, Neg. LLF: 72.35084364220091
Optimization terminated successfully (Exit mode 0)
Current function value: 72.35084364876178
Iterations: 16
Function evaluations: 137
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 2534425.2828493677
Iteration: 2, Func. Count: 20, Neg. LLF: 134316924.75996822
Iteration: 3, Func. Count: 30, Neg. LLF: 147.48200204773687
Iteration: 4, Func. Count: 42, Neg. LLF: 74.63729045992878
Iteration: 5, Func. Count: 52, Neg. LLF: 72.95053015635702
Iteration: 6, Func. Count: 61, Neg. LLF: 74.78993597615776
Iteration: 7, Func. Count: 71, Neg. LLF: 74.12829387238152
Iteration: 8, Func. Count: 81, Neg. LLF: 72.47679972479835
Iteration: 9, Func. Count: 90, Neg. LLF: 72.3403081912303
Iteration: 10, Func. Count: 99, Neg. LLF: 72.32620067365669
Iteration: 11, Func. Count: 108, Neg. LLF: 72.30688858236316
Iteration: 12, Func. Count: 117, Neg. LLF: 72.26152141921347
Iteration: 13, Func. Count: 126, Neg. LLF: 72.23512855523094
Iteration: 14, Func. Count: 135, Neg. LLF: 72.21298816158712
Iteration: 15, Func. Count: 144, Neg. LLF: 72.21145894158097
Iteration: 16, Func. Count: 153, Neg. LLF: 72.21111908855715
Iteration: 17, Func. Count: 162, Neg. LLF: 72.2110080141313
Iteration: 18, Func. Count: 171, Neg. LLF: 72.21093451575278
Iteration: 19, Func. Count: 180, Neg. LLF: 72.21087374616788
Iteration: 20, Func. Count: 189, Neg. LLF: 72.2108357340835
Iteration: 21, Func. Count: 198, Neg. LLF: 72.21082344197949
Iteration: 22, Func. Count: 207, Neg. LLF: 72.21082099325986
Iteration: 23, Func. Count: 215, Neg. LLF: 72.21082097858907
Optimization terminated successfully (Exit mode 0)
Current function value: 72.21082099325986
Iterations: 23
Function evaluations: 215
Gradient evaluations: 23
Iteration: 1, Func. Count: 11, Neg. LLF: 137.65016720735537
Iteration: 2, Func. Count: 25, Neg. LLF: 121152900.57536095
Iteration: 3, Func. Count: 36, Neg. LLF: 11887.817767930066
Iteration: 4, Func. Count: 47, Neg. LLF: 79.2695296527986
Iteration: 5, Func. Count: 58, Neg. LLF: 81.42892790406322
Iteration: 6, Func. Count: 69, Neg. LLF: 82.00653879627492
Iteration: 7, Func. Count: 80, Neg. LLF: 73.45530132578784
Iteration: 8, Func. Count: 91, Neg. LLF: 73.09921094221603
Iteration: 9, Func. Count: 102, Neg. LLF: 72.61306591696918
Iteration: 10, Func. Count: 112, Neg. LLF: 73.08756336985245
Iteration: 11, Func. Count: 123, Neg. LLF: 72.44627509632471
Iteration: 12, Func. Count: 133, Neg. LLF: 72.39166743362482
Iteration: 13, Func. Count: 143, Neg. LLF: 72.36636739587001
Iteration: 14, Func. Count: 153, Neg. LLF: 72.3535509831924
Iteration: 15, Func. Count: 163, Neg. LLF: 72.33990160526218
Iteration: 16, Func. Count: 173, Neg. LLF: 72.3268617564798
Iteration: 17, Func. Count: 183, Neg. LLF: 72.31833050271743
Iteration: 18, Func. Count: 193, Neg. LLF: 72.30789799296944
Iteration: 19, Func. Count: 203, Neg. LLF: 72.30397371390325
Iteration: 20, Func. Count: 213, Neg. LLF: 72.28687640155125
Iteration: 21, Func. Count: 223, Neg. LLF: 72.22911138940081
Iteration: 22, Func. Count: 233, Neg. LLF: 72.2138171512537
Iteration: 23, Func. Count: 243, Neg. LLF: 72.21129128121791
Iteration: 24, Func. Count: 253, Neg. LLF: 72.21092501049016
Iteration: 25, Func. Count: 263, Neg. LLF: 72.21086157412431
Iteration: 26, Func. Count: 273, Neg. LLF: 72.2108286773927
Iteration: 27, Func. Count: 283, Neg. LLF: 72.21082173477988
Iteration: 28, Func. Count: 293, Neg. LLF: 72.21082048394499
Iteration: 29, Func. Count: 302, Neg. LLF: 72.21082049278053
Optimization terminated successfully (Exit mode 0)
Current function value: 72.21082048394499
Iterations: 29
Function evaluations: 302
Gradient evaluations: 29
Iteration: 1, Func. Count: 12, Neg. LLF: 146.33563309876226
Iteration: 2, Func. Count: 27, Neg. LLF: 148205076.4679109
Iteration: 3, Func. Count: 39, Neg. LLF: 2531413.792091124
Iteration: 4, Func. Count: 51, Neg. LLF: 108.13443271922698
Iteration: 5, Func. Count: 63, Neg. LLF: 85.63153211678097
Iteration: 6, Func. Count: 75, Neg. LLF: 83.36852316519173
Iteration: 7, Func. Count: 87, Neg. LLF: 73.26659311165224
Iteration: 8, Func. Count: 99, Neg. LLF: 94.74300594863001
Iteration: 9, Func. Count: 111, Neg. LLF: 75.97543962842605
Iteration: 10, Func. Count: 123, Neg. LLF: 72.27904082835647
Iteration: 11, Func. Count: 134, Neg. LLF: 72.10019111224591
Iteration: 12, Func. Count: 145, Neg. LLF: 72.0662711272498
Iteration: 13, Func. Count: 156, Neg. LLF: 72.05581965685937
Iteration: 14, Func. Count: 167, Neg. LLF: 72.04996848599552
Iteration: 15, Func. Count: 178, Neg. LLF: 72.04842059199603
Iteration: 16, Func. Count: 189, Neg. LLF: 72.04803333017244
Iteration: 17, Func. Count: 200, Neg. LLF: 72.04799556680332
Iteration: 18, Func. Count: 211, Neg. LLF: 72.04799317021363
Iteration: 19, Func. Count: 221, Neg. LLF: 72.04799314386408
Optimization terminated successfully (Exit mode 0)
Current function value: 72.04799317021363
Iterations: 19
Function evaluations: 221
Gradient evaluations: 19
Iteration: 1, Func. Count: 5, Neg. LLF: 181.3782781264443
Iteration: 2, Func. Count: 12, Neg. LLF: 139.15120569940626
Iteration: 3, Func. Count: 18, Neg. LLF: 82.789458646259
Iteration: 4, Func. Count: 23, Neg. LLF: 80.68798895051381
Iteration: 5, Func. Count: 27, Neg. LLF: 80.65487226634804
Iteration: 6, Func. Count: 31, Neg. LLF: 80.64223847730558
Iteration: 7, Func. Count: 35, Neg. LLF: 80.64173959116779
Iteration: 8, Func. Count: 39, Neg. LLF: 80.64167885218454
Iteration: 9, Func. Count: 43, Neg. LLF: 80.6416783531929
Optimization terminated successfully (Exit mode 0)
Current function value: 80.6416783531929
Iterations: 9
Function evaluations: 43
Gradient evaluations: 9
Iteration: 1, Func. Count: 6, Neg. LLF: 152.68251229099928
Iteration: 2, Func. Count: 17, Neg. LLF: 164.30235490810512
Iteration: 3, Func. Count: 24, Neg. LLF: 119.78955022566575
Iteration: 4, Func. Count: 30, Neg. LLF: 74.4018492600895
Iteration: 5, Func. Count: 35, Neg. LLF: 74.39592544396305
Iteration: 6, Func. Count: 40, Neg. LLF: 74.39378218514342
Iteration: 7, Func. Count: 45, Neg. LLF: 74.39372413507675
Iteration: 8, Func. Count: 49, Neg. LLF: 74.39372409118823
Optimization terminated successfully (Exit mode 0)
Current function value: 74.39372413507675
Iterations: 8
Function evaluations: 49
Gradient evaluations: 8
Iteration: 1, Func. Count: 7, Neg. LLF: 176.9634803036168
Iteration: 2, Func. Count: 15, Neg. LLF: 419.8322171673468
Iteration: 3, Func. Count: 22, Neg. LLF: 84.04847496871099
Iteration: 4, Func. Count: 30, Neg. LLF: 74.72224382282808
Iteration: 5, Func. Count: 36, Neg. LLF: 74.78427233407007
Iteration: 6, Func. Count: 43, Neg. LLF: 74.61145700407394
Iteration: 7, Func. Count: 49, Neg. LLF: 74.63169685233852
Iteration: 8, Func. Count: 56, Neg. LLF: 74.59337962916447
Iteration: 9, Func. Count: 63, Neg. LLF: 74.58976384676126
Iteration: 10, Func. Count: 69, Neg. LLF: 74.58970277736145
Iteration: 11, Func. Count: 75, Neg. LLF: 74.58968745049805
Iteration: 12, Func. Count: 81, Neg. LLF: 74.58968589143997
Iteration: 13, Func. Count: 86, Neg. LLF: 74.58968589133457
Optimization terminated successfully (Exit mode 0)
Current function value: 74.58968589143997
Iterations: 13
Function evaluations: 86
Gradient evaluations: 13
Iteration: 1, Func. Count: 8, Neg. LLF: 142.16345502838672
Iteration: 2, Func. Count: 18, Neg. LLF: 75375.61202498472
Iteration: 3, Func. Count: 26, Neg. LLF: 89.83551772686657
Iteration: 4, Func. Count: 34, Neg. LLF: 75.52515493155121
Iteration: 5, Func. Count: 41, Neg. LLF: 75.31150147551233
Iteration: 6, Func. Count: 49, Neg. LLF: 74.98502307531356
Iteration: 7, Func. Count: 57, Neg. LLF: 74.64234209372485
Iteration: 8, Func. Count: 64, Neg. LLF: 74.71015256597514
Iteration: 9, Func. Count: 72, Neg. LLF: 74.59391206052123
Iteration: 10, Func. Count: 79, Neg. LLF: 74.59001384960206
Iteration: 11, Func. Count: 86, Neg. LLF: 74.58969968767504
Iteration: 12, Func. Count: 93, Neg. LLF: 74.58968910227769
Iteration: 13, Func. Count: 100, Neg. LLF: 74.58968580988484
Iteration: 14, Func. Count: 106, Neg. LLF: 74.58968583277725
Optimization terminated successfully (Exit mode 0)
Current function value: 74.58968580988484
Iterations: 14
Function evaluations: 106
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 151.720569801535
Iteration: 2, Func. Count: 21, Neg. LLF: 7733.265721882375
Iteration: 3, Func. Count: 30, Neg. LLF: 89.77973637496333
Iteration: 4, Func. Count: 39, Neg. LLF: 75.8810383524096
Iteration: 5, Func. Count: 47, Neg. LLF: 79.79383794163935
Iteration: 6, Func. Count: 56, Neg. LLF: 76.22821121727749
Iteration: 7, Func. Count: 65, Neg. LLF: 74.71953860690137
Iteration: 8, Func. Count: 74, Neg. LLF: 74.62899196033898
Iteration: 9, Func. Count: 82, Neg. LLF: 74.59988931471976
Iteration: 10, Func. Count: 90, Neg. LLF: 74.59079919056227
Iteration: 11, Func. Count: 98, Neg. LLF: 74.5915329542571
Iteration: 12, Func. Count: 107, Neg. LLF: 74.58973106774843
Iteration: 13, Func. Count: 115, Neg. LLF: 74.58969010069735
Iteration: 14, Func. Count: 123, Neg. LLF: 74.589685842622
Iteration: 15, Func. Count: 130, Neg. LLF: 74.58968591351393
Optimization terminated successfully (Exit mode 0)
Current function value: 74.589685842622
Iterations: 15
Function evaluations: 130
Gradient evaluations: 15
Iteration: 1, Func. Count: 6, Neg. LLF: 177.85289532591713
Iteration: 2, Func. Count: 14, Neg. LLF: 124.85055600360295
Iteration: 3, Func. Count: 21, Neg. LLF: 81.77052092211764
Iteration: 4, Func. Count: 27, Neg. LLF: 81.18491504545884
Iteration: 5, Func. Count: 33, Neg. LLF: 80.68872076507674
Iteration: 6, Func. Count: 39, Neg. LLF: 80.63623575303906
Iteration: 7, Func. Count: 44, Neg. LLF: 80.63615632621658
Iteration: 8, Func. Count: 49, Neg. LLF: 80.63615249176254
Iteration: 9, Func. Count: 53, Neg. LLF: 80.63615249176348
Optimization terminated successfully (Exit mode 0)
Current function value: 80.63615249176254
Iterations: 9
Function evaluations: 53
Gradient evaluations: 9
Iteration: 1, Func. Count: 7, Neg. LLF: 143.8311070707066
Iteration: 2, Func. Count: 15, Neg. LLF: 78.06344240875
Iteration: 3, Func. Count: 22, Neg. LLF: 78.29308844088855
Iteration: 4, Func. Count: 29, Neg. LLF: 74.25633668872922
Iteration: 5, Func. Count: 35, Neg. LLF: 74.35024480585453
Iteration: 6, Func. Count: 42, Neg. LLF: 74.19479737072064
Iteration: 7, Func. Count: 49, Neg. LLF: 74.11254248366359
Iteration: 8, Func. Count: 55, Neg. LLF: 74.11160857925653
Iteration: 9, Func. Count: 61, Neg. LLF: 74.11155897708524
Iteration: 10, Func. Count: 67, Neg. LLF: 74.11155312327631
Iteration: 11, Func. Count: 72, Neg. LLF: 74.11155305150669
Optimization terminated successfully (Exit mode 0)
Current function value: 74.11155312327631
Iterations: 11
Function evaluations: 72
Gradient evaluations: 11
Iteration: 1, Func. Count: 8, Neg. LLF: 109.6834862108311
Iteration: 2, Func. Count: 18, Neg. LLF: 105.57743247359032
Iteration: 3, Func. Count: 27, Neg. LLF: 83.05908476083303
Iteration: 4, Func. Count: 35, Neg. LLF: 80.27634961943788
Iteration: 5, Func. Count: 43, Neg. LLF: 75.12387396691702
Iteration: 6, Func. Count: 51, Neg. LLF: 74.60838552312772
Iteration: 7, Func. Count: 58, Neg. LLF: 74.87778655792742
Iteration: 8, Func. Count: 66, Neg. LLF: 78.87142142608407
Iteration: 9, Func. Count: 74, Neg. LLF: 74.77673944612366
Iteration: 10, Func. Count: 82, Neg. LLF: 74.51270396021538
Iteration: 11, Func. Count: 90, Neg. LLF: 74.47718158161378
Iteration: 12, Func. Count: 97, Neg. LLF: 74.47276955897779
Iteration: 13, Func. Count: 104, Neg. LLF: 74.4708998248185
Iteration: 14, Func. Count: 111, Neg. LLF: 74.46985184066133
Iteration: 15, Func. Count: 118, Neg. LLF: 74.46958528478153
Iteration: 16, Func. Count: 125, Neg. LLF: 74.46956390256354
Iteration: 17, Func. Count: 132, Neg. LLF: 74.46956318539164
Optimization terminated successfully (Exit mode 0)
Current function value: 74.46956318539164
Iterations: 17
Function evaluations: 132
Gradient evaluations: 17
Iteration: 1, Func. Count: 9, Neg. LLF: 163.6071458937888
Iteration: 2, Func. Count: 21, Neg. LLF: 85.41944990536955
Iteration: 3, Func. Count: 30, Neg. LLF: 105.19400637185979
Iteration: 4, Func. Count: 39, Neg. LLF: 89.3197822635711
Iteration: 5, Func. Count: 48, Neg. LLF: 75.55559519614168
Iteration: 6, Func. Count: 57, Neg. LLF: 75.21730637717255
Iteration: 7, Func. Count: 66, Neg. LLF: 74.5047088151818
Iteration: 8, Func. Count: 74, Neg. LLF: 74.9397731295881
Iteration: 9, Func. Count: 83, Neg. LLF: 74.56240928804309
Iteration: 10, Func. Count: 92, Neg. LLF: 74.50836373224953
Iteration: 11, Func. Count: 101, Neg. LLF: 74.47069972178979
Iteration: 12, Func. Count: 109, Neg. LLF: 74.4700474940617
Iteration: 13, Func. Count: 117, Neg. LLF: 74.46958512479824
Iteration: 14, Func. Count: 125, Neg. LLF: 74.46956364621967
Iteration: 15, Func. Count: 132, Neg. LLF: 74.46956364907577
Optimization terminated successfully (Exit mode 0)
Current function value: 74.46956364621967
Iterations: 15
Function evaluations: 132
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 173.36961127956636
Iteration: 2, Func. Count: 23, Neg. LLF: 80.97709870244204
Iteration: 3, Func. Count: 33, Neg. LLF: 113.63876765536665
Iteration: 4, Func. Count: 43, Neg. LLF: 93.2184599131335
Iteration: 5, Func. Count: 53, Neg. LLF: 76.53589522366009
Iteration: 6, Func. Count: 63, Neg. LLF: 75.2199012100209
Iteration: 7, Func. Count: 73, Neg. LLF: 74.68364330124227
Iteration: 8, Func. Count: 82, Neg. LLF: 81.33041832867677
Iteration: 9, Func. Count: 92, Neg. LLF: 74.57529357874296
Iteration: 10, Func. Count: 102, Neg. LLF: 74.55958871483334
Iteration: 11, Func. Count: 112, Neg. LLF: 74.47332570881417
Iteration: 12, Func. Count: 121, Neg. LLF: 74.4779346512433
Iteration: 13, Func. Count: 131, Neg. LLF: 74.47025224679847
Iteration: 14, Func. Count: 140, Neg. LLF: 74.46969432700354
Iteration: 15, Func. Count: 149, Neg. LLF: 74.46956552662925
Iteration: 16, Func. Count: 158, Neg. LLF: 74.46956318336555
Iteration: 17, Func. Count: 166, Neg. LLF: 74.46956325944197
Optimization terminated successfully (Exit mode 0)
Current function value: 74.46956318336555
Iterations: 17
Function evaluations: 166
Gradient evaluations: 17
Iteration: 1, Func. Count: 7, Neg. LLF: 179.80330789213158
Iteration: 2, Func. Count: 16, Neg. LLF: 142.77732715088223
Iteration: 3, Func. Count: 23, Neg. LLF: 6157180.891880273
Iteration: 4, Func. Count: 30, Neg. LLF: 6132514.281675448
Iteration: 5, Func. Count: 37, Neg. LLF: 90.1809420479179
Iteration: 6, Func. Count: 44, Neg. LLF: 5608570.230873229
Iteration: 7, Func. Count: 51, Neg. LLF: 75.14821001676418
Iteration: 8, Func. Count: 58, Neg. LLF: 78.60117025791175
Iteration: 9, Func. Count: 65, Neg. LLF: 73.63580690677807
Iteration: 10, Func. Count: 71, Neg. LLF: 73.42492173873815
Iteration: 11, Func. Count: 77, Neg. LLF: 73.37161485391621
Iteration: 12, Func. Count: 83, Neg. LLF: 73.35160984574128
Iteration: 13, Func. Count: 89, Neg. LLF: 73.34969203089845
Iteration: 14, Func. Count: 95, Neg. LLF: 73.34959535648052
Iteration: 15, Func. Count: 101, Neg. LLF: 73.34959174346034
Iteration: 16, Func. Count: 106, Neg. LLF: 73.34959174346213
Optimization terminated successfully (Exit mode 0)
Current function value: 73.34959174346034
Iterations: 16
Function evaluations: 106
Gradient evaluations: 16
Iteration: 1, Func. Count: 8, Neg. LLF: 6029336.07713065
Iteration: 2, Func. Count: 17, Neg. LLF: 27452793.03533627
Iteration: 3, Func. Count: 25, Neg. LLF: 85.27684599057157
Iteration: 4, Func. Count: 34, Neg. LLF: 72.73732443312647
Iteration: 5, Func. Count: 42, Neg. LLF: 74.36083790707417
Iteration: 6, Func. Count: 50, Neg. LLF: 72.15002766710779
Iteration: 7, Func. Count: 57, Neg. LLF: 72.14327540200868
Iteration: 8, Func. Count: 64, Neg. LLF: 72.13983781176539
Iteration: 9, Func. Count: 71, Neg. LLF: 72.13980597811201
Iteration: 10, Func. Count: 78, Neg. LLF: 72.13979852019666
Iteration: 11, Func. Count: 85, Neg. LLF: 72.13979654089006
Iteration: 12, Func. Count: 91, Neg. LLF: 72.13979653571133
Optimization terminated successfully (Exit mode 0)
Current function value: 72.13979654089006
Iterations: 12
Function evaluations: 91
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 5596818.920407742
Iteration: 2, Func. Count: 18, Neg. LLF: 25161294.227607016
Iteration: 3, Func. Count: 27, Neg. LLF: 90.62007571249825
Iteration: 4, Func. Count: 37, Neg. LLF: 72.64847739509457
Iteration: 5, Func. Count: 46, Neg. LLF: 83.01967417001491
Iteration: 6, Func. Count: 55, Neg. LLF: 72.06706276762536
Iteration: 7, Func. Count: 63, Neg. LLF: 72.0303203744611
Iteration: 8, Func. Count: 71, Neg. LLF: 72.02045215370761
Iteration: 9, Func. Count: 79, Neg. LLF: 72.03576679097735
Iteration: 10, Func. Count: 88, Neg. LLF: 72.01055787622401
Iteration: 11, Func. Count: 96, Neg. LLF: 72.01039849393618
Iteration: 12, Func. Count: 104, Neg. LLF: 72.01039417655149
Iteration: 13, Func. Count: 112, Neg. LLF: 72.01039164238969
Iteration: 14, Func. Count: 119, Neg. LLF: 72.01039161680889
Optimization terminated successfully (Exit mode 0)
Current function value: 72.01039164238969
Iterations: 14
Function evaluations: 119
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 132.01911445012888
Iteration: 2, Func. Count: 22, Neg. LLF: 22641017.141227882
Iteration: 3, Func. Count: 32, Neg. LLF: 7586554.627448878
Iteration: 4, Func. Count: 42, Neg. LLF: 77.09370665096347
Iteration: 5, Func. Count: 52, Neg. LLF: 73.83153473842376
Iteration: 6, Func. Count: 62, Neg. LLF: 73.50308310413354
Iteration: 7, Func. Count: 72, Neg. LLF: 72.12447718603757
Iteration: 8, Func. Count: 81, Neg. LLF: 72.06055689053618
Iteration: 9, Func. Count: 90, Neg. LLF: 72.23396742730904
Iteration: 10, Func. Count: 100, Neg. LLF: 72.02414916447383
Iteration: 11, Func. Count: 109, Neg. LLF: 72.01416971706456
Iteration: 12, Func. Count: 118, Neg. LLF: 72.01064912489085
Iteration: 13, Func. Count: 127, Neg. LLF: 72.01045165524548
Iteration: 14, Func. Count: 136, Neg. LLF: 72.01039778023677
Iteration: 15, Func. Count: 145, Neg. LLF: 72.01039161996954
Iteration: 16, Func. Count: 153, Neg. LLF: 72.01039162048615
Optimization terminated successfully (Exit mode 0)
Current function value: 72.01039161996954
Iterations: 16
Function evaluations: 153
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 149.7033407423269
Iteration: 2, Func. Count: 24, Neg. LLF: 25932179.573687572
Iteration: 3, Func. Count: 35, Neg. LLF: 6965597.630914165
Iteration: 4, Func. Count: 46, Neg. LLF: 89.75295044665936
Iteration: 5, Func. Count: 57, Neg. LLF: 74.49922532321035
Iteration: 6, Func. Count: 68, Neg. LLF: 72.46660877588147
Iteration: 7, Func. Count: 78, Neg. LLF: 72.97840614997033
Iteration: 8, Func. Count: 89, Neg. LLF: 81.17610390825423
Iteration: 9, Func. Count: 100, Neg. LLF: 72.45755375365253
Iteration: 10, Func. Count: 111, Neg. LLF: 72.05939186152445
Iteration: 11, Func. Count: 122, Neg. LLF: 72.01345671797137
Iteration: 12, Func. Count: 132, Neg. LLF: 72.00751222217201
Iteration: 13, Func. Count: 142, Neg. LLF: 72.00535311979066
Iteration: 14, Func. Count: 152, Neg. LLF: 72.00497490721482
Iteration: 15, Func. Count: 162, Neg. LLF: 72.00493953711758
Iteration: 16, Func. Count: 172, Neg. LLF: 72.00493768348059
Iteration: 17, Func. Count: 181, Neg. LLF: 72.00493765339559
Optimization terminated successfully (Exit mode 0)
Current function value: 72.00493768348059
Iterations: 17
Function evaluations: 181
Gradient evaluations: 17
Iteration: 1, Func. Count: 8, Neg. LLF: 173.18795661731986
Iteration: 2, Func. Count: 17, Neg. LLF: 136.75906420895555
Iteration: 3, Func. Count: 25, Neg. LLF: 27478970.232913855
Iteration: 4, Func. Count: 33, Neg. LLF: 3223634.23000387
Iteration: 5, Func. Count: 41, Neg. LLF: 4923036.5345833395
Iteration: 6, Func. Count: 49, Neg. LLF: 2648978.32528498
Iteration: 7, Func. Count: 57, Neg. LLF: 73.7228098450801
Iteration: 8, Func. Count: 65, Neg. LLF: 89.80730392570948
Iteration: 9, Func. Count: 73, Neg. LLF: 72.8739998417802
Iteration: 10, Func. Count: 80, Neg. LLF: 72.78741078783459
Iteration: 11, Func. Count: 87, Neg. LLF: 72.75735339774077
Iteration: 12, Func. Count: 94, Neg. LLF: 72.75243955370058
Iteration: 13, Func. Count: 101, Neg. LLF: 72.7521640607049
Iteration: 14, Func. Count: 108, Neg. LLF: 72.7521491462992
Iteration: 15, Func. Count: 115, Neg. LLF: 72.75214657836759
Iteration: 16, Func. Count: 122, Neg. LLF: 72.75214563038733
Optimization terminated successfully (Exit mode 0)
Current function value: 72.75214563038733
Iterations: 16
Function evaluations: 122
Gradient evaluations: 16
Iteration: 1, Func. Count: 9, Neg. LLF: 6086520.323168266
Iteration: 2, Func. Count: 18, Neg. LLF: 28212257.28057271
Iteration: 3, Func. Count: 27, Neg. LLF: 89.38659998758365
Iteration: 4, Func. Count: 37, Neg. LLF: 72.65542243281949
Iteration: 5, Func. Count: 46, Neg. LLF: 72.41392543609439
Iteration: 6, Func. Count: 55, Neg. LLF: 72.2182090352207
Iteration: 7, Func. Count: 63, Neg. LLF: 72.15163046934843
Iteration: 8, Func. Count: 71, Neg. LLF: 72.1416657817078
Iteration: 9, Func. Count: 79, Neg. LLF: 72.13994461513866
Iteration: 10, Func. Count: 87, Neg. LLF: 72.13983114960294
Iteration: 11, Func. Count: 95, Neg. LLF: 72.13979686678232
Iteration: 12, Func. Count: 102, Neg. LLF: 72.13979686174852
Optimization terminated successfully (Exit mode 0)
Current function value: 72.13979686678232
Iterations: 12
Function evaluations: 102
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 9044748.41238943
Iteration: 2, Func. Count: 20, Neg. LLF: 31078012.287670363
Iteration: 3, Func. Count: 30, Neg. LLF: 92.69620126314825
Iteration: 4, Func. Count: 41, Neg. LLF: 73.53058893014298
Iteration: 5, Func. Count: 51, Neg. LLF: 72.9341500417045
Iteration: 6, Func. Count: 61, Neg. LLF: 74.49537220150144
Iteration: 7, Func. Count: 71, Neg. LLF: 71.71868202143712
Iteration: 8, Func. Count: 80, Neg. LLF: 71.85700737106701
Iteration: 9, Func. Count: 90, Neg. LLF: 71.68897626505226
Iteration: 10, Func. Count: 100, Neg. LLF: 71.6540272654758
Iteration: 11, Func. Count: 109, Neg. LLF: 71.65369599932102
Iteration: 12, Func. Count: 118, Neg. LLF: 71.65368764330928
Iteration: 13, Func. Count: 126, Neg. LLF: 71.65368760939039
Optimization terminated successfully (Exit mode 0)
Current function value: 71.65368764330928
Iterations: 13
Function evaluations: 126
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 120.25961851572592
Iteration: 2, Func. Count: 24, Neg. LLF: 27270284.071733125
Iteration: 3, Func. Count: 35, Neg. LLF: 2961650.7792923967
Iteration: 4, Func. Count: 46, Neg. LLF: 74.04244988890126
Iteration: 5, Func. Count: 57, Neg. LLF: 73.71446520148159
Iteration: 6, Func. Count: 68, Neg. LLF: 74.72689570984888
Iteration: 7, Func. Count: 79, Neg. LLF: 71.77481551216225
Iteration: 8, Func. Count: 89, Neg. LLF: 73.55116834570252
Iteration: 9, Func. Count: 100, Neg. LLF: 71.67057526142509
Iteration: 10, Func. Count: 110, Neg. LLF: 71.65420797043836
Iteration: 11, Func. Count: 120, Neg. LLF: 71.65371343078567
Iteration: 12, Func. Count: 130, Neg. LLF: 71.65369082632624
Iteration: 13, Func. Count: 140, Neg. LLF: 71.65368750850607
Iteration: 14, Func. Count: 149, Neg. LLF: 71.65368752264757
Optimization terminated successfully (Exit mode 0)
Current function value: 71.65368750850607
Iterations: 14
Function evaluations: 149
Gradient evaluations: 14
Iteration: 1, Func. Count: 12, Neg. LLF: 139.04732566459754
Iteration: 2, Func. Count: 26, Neg. LLF: 32596681.664835714
Iteration: 3, Func. Count: 38, Neg. LLF: 4603993.554786592
Iteration: 4, Func. Count: 50, Neg. LLF: 91.0942282551612
Iteration: 5, Func. Count: 62, Neg. LLF: 72.21321519354052
Iteration: 6, Func. Count: 73, Neg. LLF: 73.63909544881022
Iteration: 7, Func. Count: 85, Neg. LLF: 72.60470921208363
Iteration: 8, Func. Count: 97, Neg. LLF: 72.48820728741794
Iteration: 9, Func. Count: 109, Neg. LLF: 71.68917651760769
Iteration: 10, Func. Count: 121, Neg. LLF: 71.65454177233755
Iteration: 11, Func. Count: 132, Neg. LLF: 71.65374507285254
Iteration: 12, Func. Count: 143, Neg. LLF: 71.65370077700021
Iteration: 13, Func. Count: 154, Neg. LLF: 71.65368759177746
Iteration: 14, Func. Count: 164, Neg. LLF: 71.6536875632862
Optimization terminated successfully (Exit mode 0)
Current function value: 71.65368759177746
Iterations: 14
Function evaluations: 164
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 176.15991590994415
Iteration: 2, Func. Count: 20, Neg. LLF: 214.8473877648062
Iteration: 3, Func. Count: 29, Neg. LLF: 10904508.641976088
Iteration: 4, Func. Count: 38, Neg. LLF: 3422001.0121418666
Iteration: 5, Func. Count: 47, Neg. LLF: 88.9514937260829
Iteration: 6, Func. Count: 56, Neg. LLF: 82.4304916860054
Iteration: 7, Func. Count: 65, Neg. LLF: 78.16569709695763
Iteration: 8, Func. Count: 74, Neg. LLF: 72.84820889655776
Iteration: 9, Func. Count: 82, Neg. LLF: 73.6114014996869
Iteration: 10, Func. Count: 91, Neg. LLF: 76.59523920864031
Iteration: 11, Func. Count: 101, Neg. LLF: 72.44742966153635
Iteration: 12, Func. Count: 109, Neg. LLF: 72.38459320663213
Iteration: 13, Func. Count: 117, Neg. LLF: 72.37332100336513
Iteration: 14, Func. Count: 125, Neg. LLF: 72.36182016781949
Iteration: 15, Func. Count: 133, Neg. LLF: 72.35942307827543
Iteration: 16, Func. Count: 141, Neg. LLF: 72.3548475526656
Iteration: 17, Func. Count: 149, Neg. LLF: 72.35437380010029
Iteration: 18, Func. Count: 157, Neg. LLF: 72.35430092596695
Iteration: 19, Func. Count: 165, Neg. LLF: 72.35429770880772
Iteration: 20, Func. Count: 173, Neg. LLF: 72.35429703738137
Optimization terminated successfully (Exit mode 0)
Current function value: 72.35429703738137
Iterations: 20
Function evaluations: 173
Gradient evaluations: 20
Iteration: 1, Func. Count: 10, Neg. LLF: 2186168.3968679495
Iteration: 2, Func. Count: 21, Neg. LLF: 27930583.827678703
Iteration: 3, Func. Count: 31, Neg. LLF: 91.80560051339444
Iteration: 4, Func. Count: 42, Neg. LLF: 72.70735219092137
Iteration: 5, Func. Count: 51, Neg. LLF: 77.36442070825686
Iteration: 6, Func. Count: 61, Neg. LLF: 74.26331965946225
Iteration: 7, Func. Count: 71, Neg. LLF: 72.45155639307454
Iteration: 8, Func. Count: 81, Neg. LLF: 72.15478251153868
Iteration: 9, Func. Count: 90, Neg. LLF: 72.17508847762645
Iteration: 10, Func. Count: 100, Neg. LLF: 72.14308257683534
Iteration: 11, Func. Count: 109, Neg. LLF: 72.13998835805525
Iteration: 12, Func. Count: 118, Neg. LLF: 72.1398415227263
Iteration: 13, Func. Count: 127, Neg. LLF: 72.13980717115349
Iteration: 14, Func. Count: 136, Neg. LLF: 72.13979773656986
Iteration: 15, Func. Count: 145, Neg. LLF: 72.13979653733216
Iteration: 16, Func. Count: 153, Neg. LLF: 72.13979653220929
Optimization terminated successfully (Exit mode 0)
Current function value: 72.13979653733216
Iterations: 16
Function evaluations: 153
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 115.33638880364849
Iteration: 2, Func. Count: 23, Neg. LLF: 25248649.93005903
Iteration: 3, Func. Count: 34, Neg. LLF: 95.85381040722994
Iteration: 4, Func. Count: 45, Neg. LLF: 93.38151477428076
Iteration: 5, Func. Count: 57, Neg. LLF: 77.6681484855061
Iteration: 6, Func. Count: 68, Neg. LLF: 72.17040957968743
Iteration: 7, Func. Count: 78, Neg. LLF: 72.07809987758675
Iteration: 8, Func. Count: 89, Neg. LLF: 73.65766539626058
Iteration: 9, Func. Count: 101, Neg. LLF: 71.664226774234
Iteration: 10, Func. Count: 111, Neg. LLF: 71.6549785099122
Iteration: 11, Func. Count: 121, Neg. LLF: 71.65401503996986
Iteration: 12, Func. Count: 131, Neg. LLF: 71.65371432011125
Iteration: 13, Func. Count: 141, Neg. LLF: 71.65369096072534
Iteration: 14, Func. Count: 151, Neg. LLF: 71.65368748987244
Iteration: 15, Func. Count: 160, Neg. LLF: 71.65368745593071
Optimization terminated successfully (Exit mode 0)
Current function value: 71.65368748987244
Iterations: 15
Function evaluations: 160
Gradient evaluations: 15
Iteration: 1, Func. Count: 12, Neg. LLF: 126.04342322055625
Iteration: 2, Func. Count: 26, Neg. LLF: 33273331.658225857
Iteration: 3, Func. Count: 38, Neg. LLF: 3083562.324000064
Iteration: 4, Func. Count: 50, Neg. LLF: 75.99190103575098
Iteration: 5, Func. Count: 62, Neg. LLF: 73.70014626848759
Iteration: 6, Func. Count: 74, Neg. LLF: 74.32450425473769
Iteration: 7, Func. Count: 86, Neg. LLF: 71.85378195436503
Iteration: 8, Func. Count: 97, Neg. LLF: 73.58336962082205
Iteration: 9, Func. Count: 110, Neg. LLF: 71.68764260346752
Iteration: 10, Func. Count: 121, Neg. LLF: 71.65675969315355
Iteration: 11, Func. Count: 132, Neg. LLF: 71.65419125866684
Iteration: 12, Func. Count: 143, Neg. LLF: 71.65370448080026
Iteration: 13, Func. Count: 154, Neg. LLF: 71.65368903220082
Iteration: 14, Func. Count: 165, Neg. LLF: 71.65368746364572
Iteration: 15, Func. Count: 175, Neg. LLF: 71.65368747778949
Optimization terminated successfully (Exit mode 0)
Current function value: 71.65368746364572
Iterations: 15
Function evaluations: 175
Gradient evaluations: 15
Iteration: 1, Func. Count: 13, Neg. LLF: 144.25318299471428
Iteration: 2, Func. Count: 28, Neg. LLF: 50127950.62315264
Iteration: 3, Func. Count: 41, Neg. LLF: 4400237.196236595
Iteration: 4, Func. Count: 54, Neg. LLF: 109.07660647850017
Iteration: 5, Func. Count: 67, Neg. LLF: 79.79168733078347
Iteration: 6, Func. Count: 80, Neg. LLF: 73.96093815364401
Iteration: 7, Func. Count: 93, Neg. LLF: 72.02090180991607
Iteration: 8, Func. Count: 105, Neg. LLF: 72.89098371023734
Iteration: 9, Func. Count: 118, Neg. LLF: 71.78368696625914
Iteration: 10, Func. Count: 131, Neg. LLF: 71.6571165124507
Iteration: 11, Func. Count: 143, Neg. LLF: 71.65400926983624
Iteration: 12, Func. Count: 155, Neg. LLF: 71.65374960004131
Iteration: 13, Func. Count: 167, Neg. LLF: 71.65368907296143
Iteration: 14, Func. Count: 179, Neg. LLF: 71.65368786547354
Iteration: 15, Func. Count: 190, Neg. LLF: 71.65368783695416
Optimization terminated successfully (Exit mode 0)
Current function value: 71.65368786547354
Iterations: 15
Function evaluations: 190
Gradient evaluations: 15
Iteration: 1, Func. Count: 6, Neg. LLF: 174.9057600848832
Iteration: 2, Func. Count: 14, Neg. LLF: 120.54784635003766
Iteration: 3, Func. Count: 21, Neg. LLF: 455.94277742466966
Iteration: 4, Func. Count: 27, Neg. LLF: 2559.8809377600405
Iteration: 5, Func. Count: 33, Neg. LLF: 88.12888251557808
Iteration: 6, Func. Count: 39, Neg. LLF: 77.36884715516494
Iteration: 7, Func. Count: 45, Neg. LLF: 76.44022722222022
Iteration: 8, Func. Count: 50, Neg. LLF: 76.43363066714812
Iteration: 9, Func. Count: 55, Neg. LLF: 76.42847472793274
Iteration: 10, Func. Count: 60, Neg. LLF: 76.42832828082362
Iteration: 11, Func. Count: 65, Neg. LLF: 76.42831613848011
Iteration: 12, Func. Count: 69, Neg. LLF: 76.42831613849854
Optimization terminated successfully (Exit mode 0)
Current function value: 76.42831613848011
Iterations: 12
Function evaluations: 69
Gradient evaluations: 12
Iteration: 1, Func. Count: 7, Neg. LLF: 145.06858138733588
Iteration: 2, Func. Count: 19, Neg. LLF: 150.1070119701243
Iteration: 3, Func. Count: 27, Neg. LLF: 114.8331112904878
Iteration: 4, Func. Count: 34, Neg. LLF: 73.08410054865399
Iteration: 5, Func. Count: 40, Neg. LLF: 82.08416355780118
Iteration: 6, Func. Count: 47, Neg. LLF: 72.92778480179761
Iteration: 7, Func. Count: 53, Neg. LLF: 72.91190476338166
Iteration: 8, Func. Count: 59, Neg. LLF: 72.90569519078842
Iteration: 9, Func. Count: 65, Neg. LLF: 72.90547439013785
Iteration: 10, Func. Count: 71, Neg. LLF: 72.90547251243235
Iteration: 11, Func. Count: 76, Neg. LLF: 72.90547249570405
Optimization terminated successfully (Exit mode 0)
Current function value: 72.90547251243235
Iterations: 11
Function evaluations: 76
Gradient evaluations: 11
Iteration: 1, Func. Count: 8, Neg. LLF: 196.89478765126327
Iteration: 2, Func. Count: 17, Neg. LLF: 152.22746495566474
Iteration: 3, Func. Count: 25, Neg. LLF: 80.00131316031778
Iteration: 4, Func. Count: 34, Neg. LLF: 73.28322161067742
Iteration: 5, Func. Count: 41, Neg. LLF: 73.43414874567063
Iteration: 6, Func. Count: 49, Neg. LLF: 80.4664345434606
Iteration: 7, Func. Count: 58, Neg. LLF: 73.16509831498311
Iteration: 8, Func. Count: 66, Neg. LLF: 72.90756663706415
Iteration: 9, Func. Count: 73, Neg. LLF: 72.90623355329343
Iteration: 10, Func. Count: 80, Neg. LLF: 72.90549120640719
Iteration: 11, Func. Count: 87, Neg. LLF: 72.90547631837121
Iteration: 12, Func. Count: 94, Neg. LLF: 72.90547246959166
Iteration: 13, Func. Count: 100, Neg. LLF: 72.90547250293689
Optimization terminated successfully (Exit mode 0)
Current function value: 72.90547246959166
Iterations: 13
Function evaluations: 100
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 151.91942247433852
Iteration: 2, Func. Count: 19, Neg. LLF: 137.21306671177845
Iteration: 3, Func. Count: 28, Neg. LLF: 89.37829145381205
Iteration: 4, Func. Count: 39, Neg. LLF: 73.48913423101779
Iteration: 5, Func. Count: 47, Neg. LLF: 76.32825259298522
Iteration: 6, Func. Count: 57, Neg. LLF: 79.33092714047675
Iteration: 7, Func. Count: 67, Neg. LLF: 72.91471965474453
Iteration: 8, Func. Count: 75, Neg. LLF: 72.90859857157443
Iteration: 9, Func. Count: 83, Neg. LLF: 72.90587491120635
Iteration: 10, Func. Count: 91, Neg. LLF: 72.90550000887237
Iteration: 11, Func. Count: 99, Neg. LLF: 72.90547830522179
Iteration: 12, Func. Count: 107, Neg. LLF: 72.90547256000922
Iteration: 13, Func. Count: 114, Neg. LLF: 72.90547258096449
Optimization terminated successfully (Exit mode 0)
Current function value: 72.90547256000922
Iterations: 13
Function evaluations: 114
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 152.4323227607181
Iteration: 2, Func. Count: 22, Neg. LLF: 943.1649909428239
Iteration: 3, Func. Count: 32, Neg. LLF: 94.98879829348087
Iteration: 4, Func. Count: 42, Neg. LLF: 74.22511018106309
Iteration: 5, Func. Count: 51, Neg. LLF: 112.42429262716445
Iteration: 6, Func. Count: 62, Neg. LLF: 92.70288295696842
Iteration: 7, Func. Count: 72, Neg. LLF: 74.73723650995886
Iteration: 8, Func. Count: 82, Neg. LLF: 72.96319917397885
Iteration: 9, Func. Count: 91, Neg. LLF: 72.91182490364234
Iteration: 10, Func. Count: 100, Neg. LLF: 72.90619088451979
Iteration: 11, Func. Count: 109, Neg. LLF: 72.90555217587368
Iteration: 12, Func. Count: 118, Neg. LLF: 72.9054999315436
Iteration: 13, Func. Count: 127, Neg. LLF: 72.90547626911018
Iteration: 14, Func. Count: 136, Neg. LLF: 72.9054726417684
Iteration: 15, Func. Count: 144, Neg. LLF: 72.9054726439006
Optimization terminated successfully (Exit mode 0)
Current function value: 72.9054726417684
Iterations: 15
Function evaluations: 144
Gradient evaluations: 15
Iteration: 1, Func. Count: 7, Neg. LLF: 175.51453763480612
Iteration: 2, Func. Count: 16, Neg. LLF: 114.01248180220456
Iteration: 3, Func. Count: 24, Neg. LLF: 507.6961808586575
Iteration: 4, Func. Count: 31, Neg. LLF: 404.2821221315034
Iteration: 5, Func. Count: 38, Neg. LLF: 141.58840401633202
Iteration: 6, Func. Count: 45, Neg. LLF: 78.92722460456872
Iteration: 7, Func. Count: 52, Neg. LLF: 75.82930618783053
Iteration: 8, Func. Count: 58, Neg. LLF: 75.71443484581812
Iteration: 9, Func. Count: 64, Neg. LLF: 75.70199742611797
Iteration: 10, Func. Count: 70, Neg. LLF: 75.70126601623825
Iteration: 11, Func. Count: 76, Neg. LLF: 75.70121835324754
Iteration: 12, Func. Count: 82, Neg. LLF: 75.70120370890288
Iteration: 13, Func. Count: 88, Neg. LLF: 75.70120217608569
Iteration: 14, Func. Count: 93, Neg. LLF: 75.70120214278198
Optimization terminated successfully (Exit mode 0)
Current function value: 75.70120217608569
Iterations: 14
Function evaluations: 93
Gradient evaluations: 14
Iteration: 1, Func. Count: 8, Neg. LLF: 1775.5278573985897
Iteration: 2, Func. Count: 17, Neg. LLF: 2553.608714319071
Iteration: 3, Func. Count: 25, Neg. LLF: 79.349568229392
Iteration: 4, Func. Count: 34, Neg. LLF: 76.55020878615427
Iteration: 5, Func. Count: 43, Neg. LLF: 72.70488199817609
Iteration: 6, Func. Count: 50, Neg. LLF: 72.66570825824734
Iteration: 7, Func. Count: 57, Neg. LLF: 72.65838534286259
Iteration: 8, Func. Count: 64, Neg. LLF: 72.65843969910863
Iteration: 9, Func. Count: 72, Neg. LLF: 72.65812937513194
Iteration: 10, Func. Count: 78, Neg. LLF: 72.6581293702461
Optimization terminated successfully (Exit mode 0)
Current function value: 72.65812937513194
Iterations: 10
Function evaluations: 78
Gradient evaluations: 10
Iteration: 1, Func. Count: 9, Neg. LLF: 111.18847812876506
Iteration: 2, Func. Count: 19, Neg. LLF: 667.8453347066468
Iteration: 3, Func. Count: 28, Neg. LLF: 77.97400602265614
Iteration: 4, Func. Count: 37, Neg. LLF: 75.96434544709103
Iteration: 5, Func. Count: 46, Neg. LLF: 82.63818241869215
Iteration: 6, Func. Count: 55, Neg. LLF: 72.89786080648204
Iteration: 7, Func. Count: 63, Neg. LLF: 74.71629546084947
Iteration: 8, Func. Count: 72, Neg. LLF: 72.76885207214421
Iteration: 9, Func. Count: 81, Neg. LLF: 72.65911755030447
Iteration: 10, Func. Count: 89, Neg. LLF: 72.65815219791182
Iteration: 11, Func. Count: 97, Neg. LLF: 72.65813015802797
Iteration: 12, Func. Count: 105, Neg. LLF: 72.65812914281624
Iteration: 13, Func. Count: 112, Neg. LLF: 72.6581291859509
Optimization terminated successfully (Exit mode 0)
Current function value: 72.65812914281624
Iterations: 13
Function evaluations: 112
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 132.45859094450967
Iteration: 2, Func. Count: 22, Neg. LLF: 399.79911953301064
Iteration: 3, Func. Count: 32, Neg. LLF: 100.13350638723028
Iteration: 4, Func. Count: 42, Neg. LLF: 75.13597665985614
Iteration: 5, Func. Count: 52, Neg. LLF: 77.27203611227486
Iteration: 6, Func. Count: 62, Neg. LLF: 72.71203711997434
Iteration: 7, Func. Count: 71, Neg. LLF: 73.72341367732979
Iteration: 8, Func. Count: 81, Neg. LLF: 72.66620902688142
Iteration: 9, Func. Count: 90, Neg. LLF: 72.65813415393056
Iteration: 10, Func. Count: 99, Neg. LLF: 72.65812923594126
Iteration: 11, Func. Count: 107, Neg. LLF: 72.65812925855518
Optimization terminated successfully (Exit mode 0)
Current function value: 72.65812923594126
Iterations: 11
Function evaluations: 107
Gradient evaluations: 11
Iteration: 1, Func. Count: 11, Neg. LLF: 141.46441049651784
Iteration: 2, Func. Count: 25, Neg. LLF: 325.15086563164715
Iteration: 3, Func. Count: 36, Neg. LLF: 100.31908257576075
Iteration: 4, Func. Count: 47, Neg. LLF: 79.4783834461273
Iteration: 5, Func. Count: 58, Neg. LLF: 76.04592948247338
Iteration: 6, Func. Count: 69, Neg. LLF: 73.0004080845146
Iteration: 7, Func. Count: 79, Neg. LLF: 73.14048693828394
Iteration: 8, Func. Count: 90, Neg. LLF: 72.73169703885341
Iteration: 9, Func. Count: 101, Neg. LLF: 72.65861470350148
Iteration: 10, Func. Count: 111, Neg. LLF: 72.65818985084407
Iteration: 11, Func. Count: 121, Neg. LLF: 72.65814229279053
Iteration: 12, Func. Count: 131, Neg. LLF: 72.6581299667472
Iteration: 13, Func. Count: 141, Neg. LLF: 72.65812912935819
Optimization terminated successfully (Exit mode 0)
Current function value: 72.65812912935819
Iterations: 13
Function evaluations: 141
Gradient evaluations: 13
Iteration: 1, Func. Count: 8, Neg. LLF: 172.83244474890932
Iteration: 2, Func. Count: 17, Neg. LLF: 89.17991100330204
Iteration: 3, Func. Count: 25, Neg. LLF: 5967782.341229922
Iteration: 4, Func. Count: 33, Neg. LLF: 11087055.66674542
Iteration: 5, Func. Count: 41, Neg. LLF: 4373877.042149287
Iteration: 6, Func. Count: 49, Neg. LLF: 5606040.227157882
Iteration: 7, Func. Count: 57, Neg. LLF: 79.76059119519529
Iteration: 8, Func. Count: 65, Neg. LLF: 75.76802330232631
Iteration: 9, Func. Count: 73, Neg. LLF: 73.41446084724774
Iteration: 10, Func. Count: 80, Neg. LLF: 77.32316731235247
Iteration: 11, Func. Count: 89, Neg. LLF: 73.52579839759126
Iteration: 12, Func. Count: 97, Neg. LLF: 73.81314824526176
Iteration: 13, Func. Count: 105, Neg. LLF: 73.35270551938594
Iteration: 14, Func. Count: 112, Neg. LLF: 73.34238544922805
Iteration: 15, Func. Count: 119, Neg. LLF: 73.33894057720188
Iteration: 16, Func. Count: 126, Neg. LLF: 73.33806227523598
Iteration: 17, Func. Count: 133, Neg. LLF: 73.33784439446605
Iteration: 18, Func. Count: 139, Neg. LLF: 73.33784439447786
Optimization terminated successfully (Exit mode 0)
Current function value: 73.33784439446605
Iterations: 18
Function evaluations: 139
Gradient evaluations: 18
Iteration: 1, Func. Count: 9, Neg. LLF: 8077030.031778315
Iteration: 2, Func. Count: 18, Neg. LLF: 32277329.174063228
Iteration: 3, Func. Count: 27, Neg. LLF: 82.71564983276183
Iteration: 4, Func. Count: 37, Neg. LLF: 72.64974316482171
Iteration: 5, Func. Count: 46, Neg. LLF: 72.04296426900989
Iteration: 6, Func. Count: 54, Neg. LLF: 72.72068958936164
Iteration: 7, Func. Count: 63, Neg. LLF: 72.12675841598728
Iteration: 8, Func. Count: 72, Neg. LLF: 71.86210466694574
Iteration: 9, Func. Count: 80, Neg. LLF: 71.86100837912528
Iteration: 10, Func. Count: 88, Neg. LLF: 71.86035155777334
Iteration: 11, Func. Count: 96, Neg. LLF: 71.86026882170496
Iteration: 12, Func. Count: 104, Neg. LLF: 71.86026739363567
Iteration: 13, Func. Count: 111, Neg. LLF: 71.86026738095674
Optimization terminated successfully (Exit mode 0)
Current function value: 71.86026739363567
Iterations: 13
Function evaluations: 111
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 2234222.5178646124
Iteration: 2, Func. Count: 21, Neg. LLF: 22380615.29785778
Iteration: 3, Func. Count: 31, Neg. LLF: 84.95902245043584
Iteration: 4, Func. Count: 42, Neg. LLF: 79.56440044382656
Iteration: 5, Func. Count: 52, Neg. LLF: 72.56951271231516
Iteration: 6, Func. Count: 62, Neg. LLF: 72.013786232344
Iteration: 7, Func. Count: 71, Neg. LLF: 71.8717200107564
Iteration: 8, Func. Count: 80, Neg. LLF: 71.86400623318471
Iteration: 9, Func. Count: 89, Neg. LLF: 71.86092958545075
Iteration: 10, Func. Count: 98, Neg. LLF: 71.86032968768082
Iteration: 11, Func. Count: 107, Neg. LLF: 71.8602701472886
Iteration: 12, Func. Count: 116, Neg. LLF: 71.8602674465537
Iteration: 13, Func. Count: 124, Neg. LLF: 71.86026745788573
Optimization terminated successfully (Exit mode 0)
Current function value: 71.8602674465537
Iterations: 13
Function evaluations: 124
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 146.8988386222473
Iteration: 2, Func. Count: 23, Neg. LLF: 19437319.594496496
Iteration: 3, Func. Count: 34, Neg. LLF: 79.05494558042238
Iteration: 4, Func. Count: 46, Neg. LLF: 224.95485281611298
Iteration: 5, Func. Count: 57, Neg. LLF: 78.79390072167165
Iteration: 6, Func. Count: 68, Neg. LLF: 73.20988817930092
Iteration: 7, Func. Count: 79, Neg. LLF: 71.92865689489841
Iteration: 8, Func. Count: 89, Neg. LLF: 71.8656994436848
Iteration: 9, Func. Count: 99, Neg. LLF: 71.86076201444715
Iteration: 10, Func. Count: 109, Neg. LLF: 71.86036427652655
Iteration: 11, Func. Count: 119, Neg. LLF: 71.86030937463478
Iteration: 12, Func. Count: 129, Neg. LLF: 71.86026775432147
Iteration: 13, Func. Count: 138, Neg. LLF: 71.86026775836105
Optimization terminated successfully (Exit mode 0)
Current function value: 71.86026775432147
Iterations: 13
Function evaluations: 138
Gradient evaluations: 13
Iteration: 1, Func. Count: 12, Neg. LLF: 150.01279951891163
Iteration: 2, Func. Count: 25, Neg. LLF: 19856907.130566534
Iteration: 3, Func. Count: 37, Neg. LLF: 227.40815912781312
Iteration: 4, Func. Count: 49, Neg. LLF: 99.63542993065633
Iteration: 5, Func. Count: 61, Neg. LLF: 72.60486502623009
Iteration: 6, Func. Count: 72, Neg. LLF: 80.5545987587305
Iteration: 7, Func. Count: 85, Neg. LLF: 162.44028927079884
Iteration: 8, Func. Count: 97, Neg. LLF: 76.23337016550823
Iteration: 9, Func. Count: 109, Neg. LLF: 71.95511712848923
Iteration: 10, Func. Count: 121, Neg. LLF: 71.86310198311145
Iteration: 11, Func. Count: 132, Neg. LLF: 71.8541784234025
Iteration: 12, Func. Count: 143, Neg. LLF: 71.85280630586549
Iteration: 13, Func. Count: 154, Neg. LLF: 71.85268729199348
Iteration: 14, Func. Count: 165, Neg. LLF: 71.85266991787829
Iteration: 15, Func. Count: 176, Neg. LLF: 71.85266275977023
Iteration: 16, Func. Count: 187, Neg. LLF: 71.85266212895515
Optimization terminated successfully (Exit mode 0)
Current function value: 71.85266212895515
Iterations: 16
Function evaluations: 187
Gradient evaluations: 16
Iteration: 1, Func. Count: 9, Neg. LLF: 166.1345710446126
Iteration: 2, Func. Count: 19, Neg. LLF: 104.64536321467057
Iteration: 3, Func. Count: 28, Neg. LLF: 6215724.199411766
Iteration: 4, Func. Count: 37, Neg. LLF: 5869492.75759777
Iteration: 5, Func. Count: 46, Neg. LLF: 186.13955295328145
Iteration: 6, Func. Count: 55, Neg. LLF: 73.48255259629086
Iteration: 7, Func. Count: 64, Neg. LLF: 74.5630329149105
Iteration: 8, Func. Count: 74, Neg. LLF: 72.77674355944482
Iteration: 9, Func. Count: 82, Neg. LLF: 72.74219913983013
Iteration: 10, Func. Count: 90, Neg. LLF: 74.04471668703256
Iteration: 11, Func. Count: 99, Neg. LLF: 72.71406528243256
Iteration: 12, Func. Count: 107, Neg. LLF: 72.71303568966628
Iteration: 13, Func. Count: 115, Neg. LLF: 72.7128022959583
Iteration: 14, Func. Count: 123, Neg. LLF: 72.71277810430539
Iteration: 15, Func. Count: 131, Neg. LLF: 72.71277697179491
Iteration: 16, Func. Count: 138, Neg. LLF: 72.71277697179848
Optimization terminated successfully (Exit mode 0)
Current function value: 72.71277697179491
Iterations: 16
Function evaluations: 138
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 7545547.865580873
Iteration: 2, Func. Count: 20, Neg. LLF: 33567206.64875753
Iteration: 3, Func. Count: 30, Neg. LLF: 83.17362171258301
Iteration: 4, Func. Count: 41, Neg. LLF: 72.5278142030591
Iteration: 5, Func. Count: 51, Neg. LLF: 71.94408504511334
Iteration: 6, Func. Count: 60, Neg. LLF: 72.27429225197085
Iteration: 7, Func. Count: 70, Neg. LLF: 72.10773269636454
Iteration: 8, Func. Count: 80, Neg. LLF: 71.86133317181111
Iteration: 9, Func. Count: 89, Neg. LLF: 71.86032273417155
Iteration: 10, Func. Count: 98, Neg. LLF: 71.86029916965974
Iteration: 11, Func. Count: 107, Neg. LLF: 71.86026760073666
Iteration: 12, Func. Count: 115, Neg. LLF: 71.86026758806828
Optimization terminated successfully (Exit mode 0)
Current function value: 71.86026760073666
Iterations: 12
Function evaluations: 115
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 6058555.770044077
Iteration: 2, Func. Count: 22, Neg. LLF: 24028263.84819345
Iteration: 3, Func. Count: 33, Neg. LLF: 89.50091572570761
Iteration: 4, Func. Count: 45, Neg. LLF: 82.67162341758855
Iteration: 5, Func. Count: 56, Neg. LLF: 71.86303431835312
Iteration: 6, Func. Count: 66, Neg. LLF: 72.49595787234918
Iteration: 7, Func. Count: 77, Neg. LLF: 72.23339740512063
Iteration: 8, Func. Count: 88, Neg. LLF: 71.75623317683389
Iteration: 9, Func. Count: 99, Neg. LLF: 71.7017998634874
Iteration: 10, Func. Count: 110, Neg. LLF: 71.653989370643
Iteration: 11, Func. Count: 120, Neg. LLF: 71.65369146713014
Iteration: 12, Func. Count: 130, Neg. LLF: 71.65368748188344
Iteration: 13, Func. Count: 139, Neg. LLF: 71.65368744795244
Optimization terminated successfully (Exit mode 0)
Current function value: 71.65368748188344
Iterations: 13
Function evaluations: 139
Gradient evaluations: 13
Iteration: 1, Func. Count: 12, Neg. LLF: 154.27460664698947
Iteration: 2, Func. Count: 25, Neg. LLF: 21537332.68063567
Iteration: 3, Func. Count: 37, Neg. LLF: 91.99461432793649
Iteration: 4, Func. Count: 50, Neg. LLF: 375260.22170572326
Iteration: 5, Func. Count: 62, Neg. LLF: 74.45494243200733
Iteration: 6, Func. Count: 74, Neg. LLF: 74.06892308337152
Iteration: 7, Func. Count: 86, Neg. LLF: 71.85642151104197
Iteration: 8, Func. Count: 97, Neg. LLF: 71.70385050079086
Iteration: 9, Func. Count: 108, Neg. LLF: 71.66495151459279
Iteration: 10, Func. Count: 119, Neg. LLF: 71.65582358931779
Iteration: 11, Func. Count: 130, Neg. LLF: 71.65387281626062
Iteration: 12, Func. Count: 141, Neg. LLF: 71.65371580885888
Iteration: 13, Func. Count: 152, Neg. LLF: 71.65368895313031
Iteration: 14, Func. Count: 163, Neg. LLF: 71.65368749314682
Iteration: 15, Func. Count: 173, Neg. LLF: 71.65368750731552
Optimization terminated successfully (Exit mode 0)
Current function value: 71.65368749314682
Iterations: 15
Function evaluations: 173
Gradient evaluations: 15
Iteration: 1, Func. Count: 13, Neg. LLF: 147.2101068807597
Iteration: 2, Func. Count: 27, Neg. LLF: 22145356.58858471
Iteration: 3, Func. Count: 40, Neg. LLF: 10004902.398993943
Iteration: 4, Func. Count: 53, Neg. LLF: 90.36881885954031
Iteration: 5, Func. Count: 67, Neg. LLF: 75.22229774584284
Iteration: 6, Func. Count: 80, Neg. LLF: 72.14086374645949
Iteration: 7, Func. Count: 92, Neg. LLF: 71.80865427737481
Iteration: 8, Func. Count: 104, Neg. LLF: 76.06883244515026
Iteration: 9, Func. Count: 118, Neg. LLF: 71.80689358713384
Iteration: 10, Func. Count: 131, Neg. LLF: 71.6617023371352
Iteration: 11, Func. Count: 143, Neg. LLF: 71.65430021072146
Iteration: 12, Func. Count: 155, Neg. LLF: 71.6537950982758
Iteration: 13, Func. Count: 167, Neg. LLF: 71.65369113658126
Iteration: 14, Func. Count: 179, Neg. LLF: 71.65368771451584
Iteration: 15, Func. Count: 190, Neg. LLF: 71.65368768600096
Optimization terminated successfully (Exit mode 0)
Current function value: 71.65368771451584
Iterations: 15
Function evaluations: 190
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 171.81168572541537
Iteration: 2, Func. Count: 21, Neg. LLF: 89.28230463725238
Iteration: 3, Func. Count: 31, Neg. LLF: 6175825.383507902
Iteration: 4, Func. Count: 41, Neg. LLF: 6152525.1781946495
Iteration: 5, Func. Count: 51, Neg. LLF: 3608545.712855327
Iteration: 6, Func. Count: 61, Neg. LLF: 76.4890328688773
Iteration: 7, Func. Count: 71, Neg. LLF: 72.68687906810563
Iteration: 8, Func. Count: 81, Neg. LLF: 73.43880258725248
Iteration: 9, Func. Count: 91, Neg. LLF: 73.51170130965528
Iteration: 10, Func. Count: 101, Neg. LLF: 72.40755639455693
Iteration: 11, Func. Count: 110, Neg. LLF: 72.36836250999913
Iteration: 12, Func. Count: 119, Neg. LLF: 72.35641650934484
Iteration: 13, Func. Count: 128, Neg. LLF: 72.35453079163773
Iteration: 14, Func. Count: 137, Neg. LLF: 72.35430815493342
Iteration: 15, Func. Count: 146, Neg. LLF: 72.35429757420283
Iteration: 16, Func. Count: 154, Neg. LLF: 72.35429757417035
Optimization terminated successfully (Exit mode 0)
Current function value: 72.35429757420283
Iterations: 16
Function evaluations: 154
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 7357469.349106955
Iteration: 2, Func. Count: 22, Neg. LLF: 30835694.690957777
Iteration: 3, Func. Count: 33, Neg. LLF: 87.34065376025207
Iteration: 4, Func. Count: 45, Neg. LLF: 72.43176181020092
Iteration: 5, Func. Count: 56, Neg. LLF: 72.47344167246378
Iteration: 6, Func. Count: 67, Neg. LLF: 71.97871564825756
Iteration: 7, Func. Count: 77, Neg. LLF: 71.97718530875575
Iteration: 8, Func. Count: 88, Neg. LLF: 71.89661261931423
Iteration: 9, Func. Count: 99, Neg. LLF: 71.86036288203803
Iteration: 10, Func. Count: 109, Neg. LLF: 71.86027356407044
Iteration: 11, Func. Count: 119, Neg. LLF: 71.86026801761375
Iteration: 12, Func. Count: 129, Neg. LLF: 71.86026735340954
Optimization terminated successfully (Exit mode 0)
Current function value: 71.86026735340954
Iterations: 12
Function evaluations: 129
Gradient evaluations: 12
Iteration: 1, Func. Count: 12, Neg. LLF: 2211041.153842424
Iteration: 2, Func. Count: 25, Neg. LLF: 23611396.342138804
Iteration: 3, Func. Count: 37, Neg. LLF: 91.625899287643
Iteration: 4, Func. Count: 50, Neg. LLF: 89.67992255876719
Iteration: 5, Func. Count: 62, Neg. LLF: 72.15519950472459
Iteration: 6, Func. Count: 73, Neg. LLF: 73.56549660061371
Iteration: 7, Func. Count: 85, Neg. LLF: 74.02565204360322
Iteration: 8, Func. Count: 98, Neg. LLF: 72.0593558379368
Iteration: 9, Func. Count: 110, Neg. LLF: 71.66675050299486
Iteration: 10, Func. Count: 121, Neg. LLF: 71.65785248741628
Iteration: 11, Func. Count: 132, Neg. LLF: 71.65471537467363
Iteration: 12, Func. Count: 143, Neg. LLF: 71.654006702448
Iteration: 13, Func. Count: 154, Neg. LLF: 71.65374739998171
Iteration: 14, Func. Count: 165, Neg. LLF: 71.65370621663749
Iteration: 15, Func. Count: 176, Neg. LLF: 71.65368916912976
Iteration: 16, Func. Count: 187, Neg. LLF: 71.65368768180325
Iteration: 17, Func. Count: 197, Neg. LLF: 71.65368764781698
Optimization terminated successfully (Exit mode 0)
Current function value: 71.65368768180325
Iterations: 17
Function evaluations: 197
Gradient evaluations: 17
Iteration: 1, Func. Count: 13, Neg. LLF: 140.04843290466147
Iteration: 2, Func. Count: 27, Neg. LLF: 14654658.03572005
Iteration: 3, Func. Count: 40, Neg. LLF: 188.84885629556123
Iteration: 4, Func. Count: 53, Neg. LLF: 77.71558941926612
Iteration: 5, Func. Count: 66, Neg. LLF: 72.2961911010766
Iteration: 6, Func. Count: 78, Neg. LLF: 73.64878102981731
Iteration: 7, Func. Count: 91, Neg. LLF: 87.34147416653636
Iteration: 8, Func. Count: 104, Neg. LLF: 72.00925825973799
Iteration: 9, Func. Count: 116, Neg. LLF: 71.88592219324254
Iteration: 10, Func. Count: 128, Neg. LLF: 71.8649225426643
Iteration: 11, Func. Count: 140, Neg. LLF: 71.86046135931818
Iteration: 12, Func. Count: 152, Neg. LLF: 71.86028077715501
Iteration: 13, Func. Count: 164, Neg. LLF: 71.86026981097893
Iteration: 14, Func. Count: 176, Neg. LLF: 71.86026734522069
Iteration: 15, Func. Count: 187, Neg. LLF: 71.86026734922558
Optimization terminated successfully (Exit mode 0)
Current function value: 71.86026734522069
Iterations: 15
Function evaluations: 187
Gradient evaluations: 15
Iteration: 1, Func. Count: 14, Neg. LLF: 146.23674252572374
Iteration: 2, Func. Count: 30, Neg. LLF: 15848925.138253909
Iteration: 3, Func. Count: 44, Neg. LLF: 1815819.6183772194
Iteration: 4, Func. Count: 58, Neg. LLF: 74.72400152413205
Iteration: 5, Func. Count: 72, Neg. LLF: 111.17817068524276
Iteration: 6, Func. Count: 86, Neg. LLF: 75.83198152123732
Iteration: 7, Func. Count: 100, Neg. LLF: 71.78183419585075
Iteration: 8, Func. Count: 113, Neg. LLF: 73.65223475431863
Iteration: 9, Func. Count: 128, Neg. LLF: 71.69198838247918
Iteration: 10, Func. Count: 141, Neg. LLF: 71.65444359752203
Iteration: 11, Func. Count: 154, Neg. LLF: 71.65381303926841
Iteration: 12, Func. Count: 167, Neg. LLF: 71.65371741184146
Iteration: 13, Func. Count: 180, Neg. LLF: 71.6536899274619
Iteration: 14, Func. Count: 193, Neg. LLF: 71.65368783854784
Iteration: 15, Func. Count: 205, Neg. LLF: 71.65368781009845
Optimization terminated successfully (Exit mode 0)
Current function value: 71.65368783854784
Iterations: 15
Function evaluations: 205
Gradient evaluations: 15
Iteration: 1, Func. Count: 7, Neg. LLF: 116.74418351692299
Iteration: 2, Func. Count: 15, Neg. LLF: 184.01124159123606
Iteration: 3, Func. Count: 22, Neg. LLF: 171.79249489741633
Iteration: 4, Func. Count: 29, Neg. LLF: 484.55332974237984
Iteration: 5, Func. Count: 36, Neg. LLF: 116.79422129076018
Iteration: 6, Func. Count: 43, Neg. LLF: 156.35858049291963
Iteration: 7, Func. Count: 50, Neg. LLF: 124.54940175615465
Iteration: 8, Func. Count: 57, Neg. LLF: 87.39315137601326
Iteration: 9, Func. Count: 64, Neg. LLF: 71.57881608989052
Iteration: 10, Func. Count: 71, Neg. LLF: 74.27879297547715
Iteration: 11, Func. Count: 78, Neg. LLF: 70.42953241387936
Iteration: 12, Func. Count: 84, Neg. LLF: 70.41570963423254
Iteration: 13, Func. Count: 90, Neg. LLF: 70.40705224645977
Iteration: 14, Func. Count: 96, Neg. LLF: 70.40628618129011
Iteration: 15, Func. Count: 102, Neg. LLF: 70.40620974446912
Iteration: 16, Func. Count: 108, Neg. LLF: 70.40620150743291
Iteration: 17, Func. Count: 113, Neg. LLF: 70.40620150742227
Optimization terminated successfully (Exit mode 0)
Current function value: 70.40620150743291
Iterations: 17
Function evaluations: 113
Gradient evaluations: 17
Iteration: 1, Func. Count: 8, Neg. LLF: 7099.097979808335
Iteration: 2, Func. Count: 16, Neg. LLF: 621.4537772192039
Iteration: 3, Func. Count: 24, Neg. LLF: 75.90092908743334
Iteration: 4, Func. Count: 33, Neg. LLF: 87.63092783236378
Iteration: 5, Func. Count: 41, Neg. LLF: 71.49233635160218
Iteration: 6, Func. Count: 48, Neg. LLF: 342.37736151127774
Iteration: 7, Func. Count: 56, Neg. LLF: 86.118703914495
Iteration: 8, Func. Count: 64, Neg. LLF: 71.03534767268161
Iteration: 9, Func. Count: 72, Neg. LLF: 73.96103360200219
Iteration: 10, Func. Count: 80, Neg. LLF: 70.47985592795317
Iteration: 11, Func. Count: 87, Neg. LLF: 70.44173535760137
Iteration: 12, Func. Count: 94, Neg. LLF: 70.41905779214831
Iteration: 13, Func. Count: 101, Neg. LLF: 70.40908388607049
Iteration: 14, Func. Count: 108, Neg. LLF: 70.40713338742201
Iteration: 15, Func. Count: 115, Neg. LLF: 70.40637695532368
Iteration: 16, Func. Count: 122, Neg. LLF: 70.40625443864151
Iteration: 17, Func. Count: 129, Neg. LLF: 70.40620334123486
Iteration: 18, Func. Count: 136, Neg. LLF: 70.40620145234104
Iteration: 19, Func. Count: 142, Neg. LLF: 70.40620146195705
Optimization terminated successfully (Exit mode 0)
Current function value: 70.40620145234104
Iterations: 19
Function evaluations: 142
Gradient evaluations: 19
Iteration: 1, Func. Count: 9, Neg. LLF: 44295.33170241698
Iteration: 2, Func. Count: 18, Neg. LLF: 650083.4862472787
Iteration: 3, Func. Count: 27, Neg. LLF: 79.42159172421167
Iteration: 4, Func. Count: 38, Neg. LLF: 72.14190239428633
Iteration: 5, Func. Count: 46, Neg. LLF: 78.95533375526992
Iteration: 6, Func. Count: 55, Neg. LLF: 71.68196376735021
Iteration: 7, Func. Count: 64, Neg. LLF: 73.61424236833253
Iteration: 8, Func. Count: 73, Neg. LLF: 71.70065990197497
Iteration: 9, Func. Count: 82, Neg. LLF: 70.45173655357986
Iteration: 10, Func. Count: 90, Neg. LLF: 70.4129447135291
Iteration: 11, Func. Count: 98, Neg. LLF: 70.40646998470025
Iteration: 12, Func. Count: 106, Neg. LLF: 70.4062998218687
Iteration: 13, Func. Count: 114, Neg. LLF: 70.40626071603991
Iteration: 14, Func. Count: 122, Neg. LLF: 70.40621235039268
Iteration: 15, Func. Count: 130, Neg. LLF: 70.40620258380238
Iteration: 16, Func. Count: 138, Neg. LLF: 70.4062014371446
Iteration: 17, Func. Count: 145, Neg. LLF: 70.40620148193715
Optimization terminated successfully (Exit mode 0)
Current function value: 70.4062014371446
Iterations: 17
Function evaluations: 145
Gradient evaluations: 17
Iteration: 1, Func. Count: 10, Neg. LLF: 1221.7666216573475
Iteration: 2, Func. Count: 20, Neg. LLF: 252452.6364201829
Iteration: 3, Func. Count: 30, Neg. LLF: 85.54862391664822
Iteration: 4, Func. Count: 42, Neg. LLF: 72.20083596042913
Iteration: 5, Func. Count: 51, Neg. LLF: 78.03990460102959
Iteration: 6, Func. Count: 61, Neg. LLF: 81.52357257506077
Iteration: 7, Func. Count: 71, Neg. LLF: 71.63033275149057
Iteration: 8, Func. Count: 81, Neg. LLF: 73.09852840695116
Iteration: 9, Func. Count: 91, Neg. LLF: 70.50827509620039
Iteration: 10, Func. Count: 100, Neg. LLF: 70.4336496566678
Iteration: 11, Func. Count: 109, Neg. LLF: 70.4108749059806
Iteration: 12, Func. Count: 118, Neg. LLF: 70.4063283459436
Iteration: 13, Func. Count: 127, Neg. LLF: 70.40620487619887
Iteration: 14, Func. Count: 136, Neg. LLF: 70.40620268877001
Iteration: 15, Func. Count: 144, Neg. LLF: 70.40620269665143
Optimization terminated successfully (Exit mode 0)
Current function value: 70.40620268877001
Iterations: 15
Function evaluations: 144
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 325.7307876478132
Iteration: 2, Func. Count: 22, Neg. LLF: 36098.06263917484
Iteration: 3, Func. Count: 33, Neg. LLF: 84.80577979905249
Iteration: 4, Func. Count: 46, Neg. LLF: 72.21018606666603
Iteration: 5, Func. Count: 56, Neg. LLF: 74.48571477842535
Iteration: 6, Func. Count: 67, Neg. LLF: 83.07208341586144
Iteration: 7, Func. Count: 78, Neg. LLF: 73.53997492921073
Iteration: 8, Func. Count: 89, Neg. LLF: 70.90072470644138
Iteration: 9, Func. Count: 100, Neg. LLF: 70.872526995098
Iteration: 10, Func. Count: 111, Neg. LLF: 70.42585007634408
Iteration: 11, Func. Count: 121, Neg. LLF: 70.40715982187939
Iteration: 12, Func. Count: 131, Neg. LLF: 70.40637155853932
Iteration: 13, Func. Count: 141, Neg. LLF: 70.40631545542287
Iteration: 14, Func. Count: 151, Neg. LLF: 70.40626299417765
Iteration: 15, Func. Count: 161, Neg. LLF: 70.4062170320778
Iteration: 16, Func. Count: 171, Neg. LLF: 70.40620300248548
Iteration: 17, Func. Count: 181, Neg. LLF: 70.40620145757438
Iteration: 18, Func. Count: 190, Neg. LLF: 70.40620149277208
Optimization terminated successfully (Exit mode 0)
Current function value: 70.40620145757438
Iterations: 18
Function evaluations: 190
Gradient evaluations: 18
Iteration: 1, Func. Count: 8, Neg. LLF: 117.0033817316186
Iteration: 2, Func. Count: 17, Neg. LLF: 176.08320121203295
Iteration: 3, Func. Count: 25, Neg. LLF: 68768.77701121704
Iteration: 4, Func. Count: 33, Neg. LLF: 574.345222146786
Iteration: 5, Func. Count: 41, Neg. LLF: 184.1847559846367
Iteration: 6, Func. Count: 49, Neg. LLF: 331.77270083285845
Iteration: 7, Func. Count: 57, Neg. LLF: 121.37344653146744
Iteration: 8, Func. Count: 65, Neg. LLF: 74.72935349445174
Iteration: 9, Func. Count: 73, Neg. LLF: 98.15110764482556
Iteration: 10, Func. Count: 81, Neg. LLF: 70.11520096631097
Iteration: 11, Func. Count: 88, Neg. LLF: 70.06065878706379
Iteration: 12, Func. Count: 95, Neg. LLF: 70.05254573522247
Iteration: 13, Func. Count: 102, Neg. LLF: 70.05090130238106
Iteration: 14, Func. Count: 109, Neg. LLF: 70.05068723052545
Iteration: 15, Func. Count: 116, Neg. LLF: 70.05066598026903
Iteration: 16, Func. Count: 123, Neg. LLF: 70.0506564090828
Iteration: 17, Func. Count: 129, Neg. LLF: 70.05065635852888
Optimization terminated successfully (Exit mode 0)
Current function value: 70.0506564090828
Iterations: 17
Function evaluations: 129
Gradient evaluations: 17
Iteration: 1, Func. Count: 9, Neg. LLF: 1435.9480206213902
Iteration: 2, Func. Count: 18, Neg. LLF: 121.22248571614409
Iteration: 3, Func. Count: 27, Neg. LLF: 73.31416865279408
Iteration: 4, Func. Count: 37, Neg. LLF: 72.0255842681392
Iteration: 5, Func. Count: 45, Neg. LLF: 116.34384690512961
Iteration: 6, Func. Count: 55, Neg. LLF: 85.61055106990709
Iteration: 7, Func. Count: 64, Neg. LLF: 74.31835851471085
Iteration: 8, Func. Count: 74, Neg. LLF: 70.20972530119502
Iteration: 9, Func. Count: 82, Neg. LLF: 70.13357671154478
Iteration: 10, Func. Count: 90, Neg. LLF: 70.1020497559851
Iteration: 11, Func. Count: 98, Neg. LLF: 70.08207849509532
Iteration: 12, Func. Count: 106, Neg. LLF: 70.06208313624835
Iteration: 13, Func. Count: 114, Neg. LLF: 70.05216952893458
Iteration: 14, Func. Count: 122, Neg. LLF: 70.05084071190305
Iteration: 15, Func. Count: 130, Neg. LLF: 70.05069227671268
Iteration: 16, Func. Count: 138, Neg. LLF: 70.0506593274238
Iteration: 17, Func. Count: 146, Neg. LLF: 70.0506564326153
Iteration: 18, Func. Count: 153, Neg. LLF: 70.05065646668972
Optimization terminated successfully (Exit mode 0)
Current function value: 70.0506564326153
Iterations: 18
Function evaluations: 153
Gradient evaluations: 18
Iteration: 1, Func. Count: 10, Neg. LLF: 1411.5367380012635
Iteration: 2, Func. Count: 20, Neg. LLF: 88.28998206597198
Iteration: 3, Func. Count: 31, Neg. LLF: 1231419.5392669037
Iteration: 4, Func. Count: 41, Neg. LLF: 73.05287551137309
Iteration: 5, Func. Count: 51, Neg. LLF: 86.15346188901027
Iteration: 6, Func. Count: 61, Neg. LLF: 70.3578802823769
Iteration: 7, Func. Count: 70, Neg. LLF: 93.09499432149728
Iteration: 8, Func. Count: 81, Neg. LLF: 70.19996912306244
Iteration: 9, Func. Count: 90, Neg. LLF: 70.0702416464123
Iteration: 10, Func. Count: 99, Neg. LLF: 70.05522280826509
Iteration: 11, Func. Count: 108, Neg. LLF: 70.05159177241534
Iteration: 12, Func. Count: 117, Neg. LLF: 70.05101598938742
Iteration: 13, Func. Count: 126, Neg. LLF: 70.05070803841943
Iteration: 14, Func. Count: 135, Neg. LLF: 70.05067313348992
Iteration: 15, Func. Count: 144, Neg. LLF: 70.05065985478124
Iteration: 16, Func. Count: 153, Neg. LLF: 70.05065694321415
Iteration: 17, Func. Count: 161, Neg. LLF: 70.05065698795586
Optimization terminated successfully (Exit mode 0)
Current function value: 70.05065694321415
Iterations: 17
Function evaluations: 161
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 91.03967181730695
Iteration: 2, Func. Count: 24, Neg. LLF: 7875.012319986526
Iteration: 3, Func. Count: 35, Neg. LLF: 814.7867705846581
Iteration: 4, Func. Count: 46, Neg. LLF: 72.90661688343899
Iteration: 5, Func. Count: 57, Neg. LLF: 71.545058518342
Iteration: 6, Func. Count: 67, Neg. LLF: 77.94451183010659
Iteration: 7, Func. Count: 78, Neg. LLF: 79.51978784289128
Iteration: 8, Func. Count: 89, Neg. LLF: 71.03522372922728
Iteration: 9, Func. Count: 100, Neg. LLF: 70.13138090812929
Iteration: 10, Func. Count: 110, Neg. LLF: 70.10521918181072
Iteration: 11, Func. Count: 120, Neg. LLF: 70.09205608777205
Iteration: 12, Func. Count: 130, Neg. LLF: 70.07003139973004
Iteration: 13, Func. Count: 140, Neg. LLF: 70.05927757752262
Iteration: 14, Func. Count: 150, Neg. LLF: 70.05305786267586
Iteration: 15, Func. Count: 160, Neg. LLF: 70.05110355503015
Iteration: 16, Func. Count: 170, Neg. LLF: 70.05070412146759
Iteration: 17, Func. Count: 180, Neg. LLF: 70.0506573572786
Iteration: 18, Func. Count: 190, Neg. LLF: 70.0506563672753
Optimization terminated successfully (Exit mode 0)
Current function value: 70.0506563672753
Iterations: 18
Function evaluations: 190
Gradient evaluations: 18
Iteration: 1, Func. Count: 12, Neg. LLF: 101.85729713551633
Iteration: 2, Func. Count: 26, Neg. LLF: 756.1770141302582
Iteration: 3, Func. Count: 38, Neg. LLF: 868.2486664084066
Iteration: 4, Func. Count: 50, Neg. LLF: 75.09509237217779
Iteration: 5, Func. Count: 62, Neg. LLF: 71.64372320346929
Iteration: 6, Func. Count: 73, Neg. LLF: 85.35539242407266
Iteration: 7, Func. Count: 85, Neg. LLF: 80.63202034049286
Iteration: 8, Func. Count: 97, Neg. LLF: 71.3962250345295
Iteration: 9, Func. Count: 109, Neg. LLF: 70.17533050010269
Iteration: 10, Func. Count: 120, Neg. LLF: 70.11417124545305
Iteration: 11, Func. Count: 131, Neg. LLF: 70.09256974923915
Iteration: 12, Func. Count: 142, Neg. LLF: 70.08198268601116
Iteration: 13, Func. Count: 153, Neg. LLF: 70.06772292320323
Iteration: 14, Func. Count: 164, Neg. LLF: 70.05709795277492
Iteration: 15, Func. Count: 175, Neg. LLF: 70.05158294684765
Iteration: 16, Func. Count: 186, Neg. LLF: 70.0507774909878
Iteration: 17, Func. Count: 197, Neg. LLF: 70.05066676409143
Iteration: 18, Func. Count: 208, Neg. LLF: 70.05065657945099
Iteration: 19, Func. Count: 218, Neg. LLF: 70.05065662115764
Optimization terminated successfully (Exit mode 0)
Current function value: 70.05065657945099
Iterations: 19
Function evaluations: 218
Gradient evaluations: 19
Iteration: 1, Func. Count: 9, Neg. LLF: 3224.545089292979
Iteration: 2, Func. Count: 18, Neg. LLF: 359.0386531644298
Iteration: 3, Func. Count: 27, Neg. LLF: 120308.78363440545
Iteration: 4, Func. Count: 36, Neg. LLF: 291.1670429728609
Iteration: 5, Func. Count: 45, Neg. LLF: 91.91028583062868
Iteration: 6, Func. Count: 54, Neg. LLF: 77.8774643953729
Iteration: 7, Func. Count: 63, Neg. LLF: 143.71719294930395
Iteration: 8, Func. Count: 72, Neg. LLF: 74.3318196672387
Iteration: 9, Func. Count: 81, Neg. LLF: 70.66246016263212
Iteration: 10, Func. Count: 90, Neg. LLF: 72.58261080238988
Iteration: 11, Func. Count: 99, Neg. LLF: 69.59884741814795
Iteration: 12, Func. Count: 107, Neg. LLF: 69.6447243009848
Iteration: 13, Func. Count: 116, Neg. LLF: 69.56245834635506
Iteration: 14, Func. Count: 124, Neg. LLF: 69.55572777568202
Iteration: 15, Func. Count: 132, Neg. LLF: 69.55564428225006
Iteration: 16, Func. Count: 140, Neg. LLF: 69.55564114348783
Iteration: 17, Func. Count: 147, Neg. LLF: 69.55564114347654
Optimization terminated successfully (Exit mode 0)
Current function value: 69.55564114348783
Iterations: 17
Function evaluations: 147
Gradient evaluations: 17
Iteration: 1, Func. Count: 10, Neg. LLF: 2937.62663152276
Iteration: 2, Func. Count: 20, Neg. LLF: 1155.2339249353586
Iteration: 3, Func. Count: 31, Neg. LLF: 71.94809397812647
Iteration: 4, Func. Count: 41, Neg. LLF: 79.60718010682591
Iteration: 5, Func. Count: 51, Neg. LLF: 72.3902896004058
Iteration: 6, Func. Count: 61, Neg. LLF: 88.80233815470608
Iteration: 7, Func. Count: 71, Neg. LLF: 183.372687157397
Iteration: 8, Func. Count: 81, Neg. LLF: 69.71354275315025
Iteration: 9, Func. Count: 90, Neg. LLF: 69.58741882932716
Iteration: 10, Func. Count: 99, Neg. LLF: 69.56533376414681
Iteration: 11, Func. Count: 108, Neg. LLF: 69.55744582525405
Iteration: 12, Func. Count: 117, Neg. LLF: 69.55604208151026
Iteration: 13, Func. Count: 126, Neg. LLF: 69.55565298475487
Iteration: 14, Func. Count: 135, Neg. LLF: 69.55564097750067
Iteration: 15, Func. Count: 143, Neg. LLF: 69.55564099830879
Optimization terminated successfully (Exit mode 0)
Current function value: 69.55564097750067
Iterations: 15
Function evaluations: 143
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 727.5409643877684
Iteration: 2, Func. Count: 22, Neg. LLF: 1480.2100309478583
Iteration: 3, Func. Count: 33, Neg. LLF: 76.4305591127697
Iteration: 4, Func. Count: 45, Neg. LLF: 74.21038333341508
Iteration: 5, Func. Count: 56, Neg. LLF: 491.7001354086506
Iteration: 6, Func. Count: 67, Neg. LLF: 85.04610794743898
Iteration: 7, Func. Count: 78, Neg. LLF: 70.89712493004384
Iteration: 8, Func. Count: 89, Neg. LLF: 70.57154001440507
Iteration: 9, Func. Count: 100, Neg. LLF: 69.5965055740066
Iteration: 10, Func. Count: 110, Neg. LLF: 69.73112148522574
Iteration: 11, Func. Count: 121, Neg. LLF: 69.56045066057243
Iteration: 12, Func. Count: 131, Neg. LLF: 69.55679659182611
Iteration: 13, Func. Count: 141, Neg. LLF: 69.55579144358639
Iteration: 14, Func. Count: 151, Neg. LLF: 69.55564880845753
Iteration: 15, Func. Count: 161, Neg. LLF: 69.55564131404113
Iteration: 16, Func. Count: 170, Neg. LLF: 69.55564133541826
Optimization terminated successfully (Exit mode 0)
Current function value: 69.55564131404113
Iterations: 16
Function evaluations: 170
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 2488.10706708595
Iteration: 2, Func. Count: 24, Neg. LLF: 103586.15034239323
Iteration: 3, Func. Count: 36, Neg. LLF: 77.12183692673474
Iteration: 4, Func. Count: 49, Neg. LLF: 5624809.420668004
Iteration: 5, Func. Count: 61, Neg. LLF: 77.09126641155463
Iteration: 6, Func. Count: 73, Neg. LLF: 70.76193164887623
Iteration: 7, Func. Count: 85, Neg. LLF: 71.4190160729633
Iteration: 8, Func. Count: 97, Neg. LLF: 71.01020042433413
Iteration: 9, Func. Count: 109, Neg. LLF: 69.58305472862847
Iteration: 10, Func. Count: 120, Neg. LLF: 69.5592731567006
Iteration: 11, Func. Count: 131, Neg. LLF: 69.55597920116631
Iteration: 12, Func. Count: 142, Neg. LLF: 69.55569670543147
Iteration: 13, Func. Count: 153, Neg. LLF: 69.55564483170956
Iteration: 14, Func. Count: 164, Neg. LLF: 69.55564110995316
Iteration: 15, Func. Count: 174, Neg. LLF: 69.55564111010044
Optimization terminated successfully (Exit mode 0)
Current function value: 69.55564110995316
Iterations: 15
Function evaluations: 174
Gradient evaluations: 15
Iteration: 1, Func. Count: 13, Neg. LLF: 1030.503789594077
Iteration: 2, Func. Count: 26, Neg. LLF: 413.4790341618496
Iteration: 3, Func. Count: 39, Neg. LLF: 77.84723679678069
Iteration: 4, Func. Count: 53, Neg. LLF: 4024444.8327267957
Iteration: 5, Func. Count: 66, Neg. LLF: 74.64002513849978
Iteration: 6, Func. Count: 79, Neg. LLF: 78.88482630811386
Iteration: 7, Func. Count: 92, Neg. LLF: 70.26056648780364
Iteration: 8, Func. Count: 104, Neg. LLF: 70.97838382985469
Iteration: 9, Func. Count: 117, Neg. LLF: 73.5860356472277
Iteration: 10, Func. Count: 130, Neg. LLF: 70.26365106546476
Iteration: 11, Func. Count: 143, Neg. LLF: 69.6656851312827
Iteration: 12, Func. Count: 156, Neg. LLF: 69.560320406896
Iteration: 13, Func. Count: 168, Neg. LLF: 69.55712222407215
Iteration: 14, Func. Count: 180, Neg. LLF: 69.55599473032052
Iteration: 15, Func. Count: 192, Neg. LLF: 69.55577345762273
Iteration: 16, Func. Count: 204, Neg. LLF: 69.55565869847351
Iteration: 17, Func. Count: 216, Neg. LLF: 69.55564208106908
Iteration: 18, Func. Count: 228, Neg. LLF: 69.55564096855048
Iteration: 19, Func. Count: 239, Neg. LLF: 69.55564100644985
Optimization terminated successfully (Exit mode 0)
Current function value: 69.55564096855048
Iterations: 19
Function evaluations: 239
Gradient evaluations: 19
Iteration: 1, Func. Count: 10, Neg. LLF: 909.2121825948288
Iteration: 2, Func. Count: 20, Neg. LLF: 107.29822807841596
Iteration: 3, Func. Count: 30, Neg. LLF: 1713.2793977807228
Iteration: 4, Func. Count: 40, Neg. LLF: 1018.7797305453438
Iteration: 5, Func. Count: 50, Neg. LLF: 8915.466785354643
Iteration: 6, Func. Count: 60, Neg. LLF: 925.8532730767491
Iteration: 7, Func. Count: 70, Neg. LLF: 76.91183486512934
Iteration: 8, Func. Count: 80, Neg. LLF: 131.97391823053803
Iteration: 9, Func. Count: 90, Neg. LLF: 94.27877797287417
Iteration: 10, Func. Count: 100, Neg. LLF: 74.12394843999617
Iteration: 11, Func. Count: 110, Neg. LLF: 73.71762397464543
Iteration: 12, Func. Count: 120, Neg. LLF: 69.6444787030586
Iteration: 13, Func. Count: 129, Neg. LLF: 69.56996478162553
Iteration: 14, Func. Count: 138, Neg. LLF: 69.55646366487157
Iteration: 15, Func. Count: 147, Neg. LLF: 69.55263309139977
Iteration: 16, Func. Count: 156, Neg. LLF: 69.55240988246156
Iteration: 17, Func. Count: 165, Neg. LLF: 69.55240682520166
Iteration: 18, Func. Count: 174, Neg. LLF: 69.55240514687
Iteration: 19, Func. Count: 183, Neg. LLF: 69.55240441215066
Optimization terminated successfully (Exit mode 0)
Current function value: 69.55240441215066
Iterations: 19
Function evaluations: 183
Gradient evaluations: 19
Iteration: 1, Func. Count: 11, Neg. LLF: 4538698.955722465
Iteration: 2, Func. Count: 22, Neg. LLF: 82.36553433566824
Iteration: 3, Func. Count: 34, Neg. LLF: 9596654.395547397
Iteration: 4, Func. Count: 45, Neg. LLF: 102.06123709045212
Iteration: 5, Func. Count: 56, Neg. LLF: 98.66505840246118
Iteration: 6, Func. Count: 67, Neg. LLF: 73.78490369140101
Iteration: 7, Func. Count: 78, Neg. LLF: 75.15108952396177
Iteration: 8, Func. Count: 89, Neg. LLF: 72.27578282204068
Iteration: 9, Func. Count: 100, Neg. LLF: 72.29531749020524
Iteration: 10, Func. Count: 111, Neg. LLF: 69.58378269956599
Iteration: 11, Func. Count: 121, Neg. LLF: 69.57621861724728
Iteration: 12, Func. Count: 131, Neg. LLF: 69.56048230389385
Iteration: 13, Func. Count: 141, Neg. LLF: 69.55558907029034
Iteration: 14, Func. Count: 151, Neg. LLF: 69.55301626029153
Iteration: 15, Func. Count: 161, Neg. LLF: 69.55246691033132
Iteration: 16, Func. Count: 171, Neg. LLF: 69.5524257620319
Iteration: 17, Func. Count: 181, Neg. LLF: 69.5524060817746
Iteration: 18, Func. Count: 191, Neg. LLF: 69.55240439408999
Iteration: 19, Func. Count: 200, Neg. LLF: 69.55240441536947
Optimization terminated successfully (Exit mode 0)
Current function value: 69.55240439408999
Iterations: 19
Function evaluations: 200
Gradient evaluations: 19
Iteration: 1, Func. Count: 12, Neg. LLF: 1750245.7399895056
Iteration: 2, Func. Count: 24, Neg. LLF: 154.0333795081174
Iteration: 3, Func. Count: 37, Neg. LLF: 2995286.1839162153
Iteration: 4, Func. Count: 49, Neg. LLF: 75.57095186411085
Iteration: 5, Func. Count: 62, Neg. LLF: 83.42674336180785
Iteration: 6, Func. Count: 74, Neg. LLF: 256.13051996819877
Iteration: 7, Func. Count: 86, Neg. LLF: 71.79027781777337
Iteration: 8, Func. Count: 98, Neg. LLF: 37011.044464281986
Iteration: 9, Func. Count: 110, Neg. LLF: 71.42771576796406
Iteration: 10, Func. Count: 122, Neg. LLF: 69.65835216699784
Iteration: 11, Func. Count: 133, Neg. LLF: 69.57653341040049
Iteration: 12, Func. Count: 144, Neg. LLF: 69.56373560491961
Iteration: 13, Func. Count: 155, Neg. LLF: 69.55566398881709
Iteration: 14, Func. Count: 166, Neg. LLF: 69.5527788905529
Iteration: 15, Func. Count: 177, Neg. LLF: 69.55251978486335
Iteration: 16, Func. Count: 188, Neg. LLF: 69.55245735151338
Iteration: 17, Func. Count: 199, Neg. LLF: 69.55241181008078
Iteration: 18, Func. Count: 210, Neg. LLF: 69.55240488483595
Iteration: 19, Func. Count: 220, Neg. LLF: 69.55240490707223
Optimization terminated successfully (Exit mode 0)
Current function value: 69.55240488483595
Iterations: 19
Function evaluations: 220
Gradient evaluations: 19
Iteration: 1, Func. Count: 13, Neg. LLF: 4717100.4908888815
Iteration: 2, Func. Count: 26, Neg. LLF: 379.0113098030855
Iteration: 3, Func. Count: 39, Neg. LLF: 330.7239570679789
Iteration: 4, Func. Count: 52, Neg. LLF: 78.49163339886162
Iteration: 5, Func. Count: 66, Neg. LLF: 86.76807950589868
Iteration: 6, Func. Count: 79, Neg. LLF: 75.84538552015317
Iteration: 7, Func. Count: 92, Neg. LLF: 88.14569475793641
Iteration: 8, Func. Count: 105, Neg. LLF: 71.24523217399839
Iteration: 9, Func. Count: 118, Neg. LLF: 70.32517703247677
Iteration: 10, Func. Count: 131, Neg. LLF: 69.59056686713886
Iteration: 11, Func. Count: 143, Neg. LLF: 69.62656951126404
Iteration: 12, Func. Count: 156, Neg. LLF: 69.54964143276094
Iteration: 13, Func. Count: 168, Neg. LLF: 69.5406962494098
Iteration: 14, Func. Count: 180, Neg. LLF: 69.53965299807452
Iteration: 15, Func. Count: 192, Neg. LLF: 69.53837129676701
Iteration: 16, Func. Count: 204, Neg. LLF: 69.53784157462911
Iteration: 17, Func. Count: 216, Neg. LLF: 69.53775042018414
Iteration: 18, Func. Count: 228, Neg. LLF: 69.53773417066617
Iteration: 19, Func. Count: 239, Neg. LLF: 69.53773416719241
Optimization terminated successfully (Exit mode 0)
Current function value: 69.53773417066617
Iterations: 19
Function evaluations: 239
Gradient evaluations: 19
Iteration: 1, Func. Count: 14, Neg. LLF: 8609670.893621692
Iteration: 2, Func. Count: 28, Neg. LLF: 11149.010902218288
Iteration: 3, Func. Count: 42, Neg. LLF: 263.6938546154977
Iteration: 4, Func. Count: 56, Neg. LLF: 79.14349676270153
Iteration: 5, Func. Count: 72, Neg. LLF: 141.10613190307382
Iteration: 6, Func. Count: 86, Neg. LLF: 72.79800681910318
Iteration: 7, Func. Count: 100, Neg. LLF: 91.81246212125552
Iteration: 8, Func. Count: 114, Neg. LLF: 70.63621516534602
Iteration: 9, Func. Count: 128, Neg. LLF: 69.65825346627187
Iteration: 10, Func. Count: 141, Neg. LLF: 69.59893722983426
Iteration: 11, Func. Count: 154, Neg. LLF: 69.60661798407051
Iteration: 12, Func. Count: 168, Neg. LLF: 69.54644909475306
Iteration: 13, Func. Count: 181, Neg. LLF: 69.53889095287377
Iteration: 14, Func. Count: 194, Neg. LLF: 69.53844694489284
Iteration: 15, Func. Count: 207, Neg. LLF: 69.53801472015631
Iteration: 16, Func. Count: 220, Neg. LLF: 69.53783733407808
Iteration: 17, Func. Count: 233, Neg. LLF: 69.53775230427044
Iteration: 18, Func. Count: 246, Neg. LLF: 69.53773765785174
Iteration: 19, Func. Count: 259, Neg. LLF: 69.53773408549921
Iteration: 20, Func. Count: 271, Neg. LLF: 69.53773413636647
Optimization terminated successfully (Exit mode 0)
Current function value: 69.53773408549921
Iterations: 20
Function evaluations: 271
Gradient evaluations: 20
Iteration: 1, Func. Count: 11, Neg. LLF: 1475.0905597319331
Iteration: 2, Func. Count: 22, Neg. LLF: 2431.7176437408334
Iteration: 3, Func. Count: 33, Neg. LLF: 502.3537288043188
Iteration: 4, Func. Count: 44, Neg. LLF: 219.31542671823325
Iteration: 5, Func. Count: 55, Neg. LLF: 245.83361794220724
Iteration: 6, Func. Count: 66, Neg. LLF: 71.1418828998803
Iteration: 7, Func. Count: 77, Neg. LLF: 92.68706567939094
Iteration: 8, Func. Count: 88, Neg. LLF: 86.15196897711776
Iteration: 9, Func. Count: 99, Neg. LLF: 72.4987795756886
Iteration: 10, Func. Count: 110, Neg. LLF: 71.92304184644075
Iteration: 11, Func. Count: 121, Neg. LLF: 69.3824131273384
Iteration: 12, Func. Count: 131, Neg. LLF: 69.31264271138883
Iteration: 13, Func. Count: 141, Neg. LLF: 69.29796096960736
Iteration: 14, Func. Count: 151, Neg. LLF: 69.28908198699261
Iteration: 15, Func. Count: 161, Neg. LLF: 69.28570581943636
Iteration: 16, Func. Count: 171, Neg. LLF: 69.2855962244102
Iteration: 17, Func. Count: 181, Neg. LLF: 69.28554922339328
Iteration: 18, Func. Count: 190, Neg. LLF: 69.28554921610439
Optimization terminated successfully (Exit mode 0)
Current function value: 69.28554922339328
Iterations: 18
Function evaluations: 190
Gradient evaluations: 18
Iteration: 1, Func. Count: 12, Neg. LLF: 5912767.961544098
Iteration: 2, Func. Count: 24, Neg. LLF: 12461656.521529812
Iteration: 3, Func. Count: 37, Neg. LLF: 83.4315003388415
Iteration: 4, Func. Count: 51, Neg. LLF: 71.68646517439846
Iteration: 5, Func. Count: 62, Neg. LLF: 73.71136560980067
Iteration: 6, Func. Count: 74, Neg. LLF: 100.7226664718624
Iteration: 7, Func. Count: 87, Neg. LLF: 79.43658565035945
Iteration: 8, Func. Count: 99, Neg. LLF: 70.70441757545161
Iteration: 9, Func. Count: 111, Neg. LLF: 78.42436848467557
Iteration: 10, Func. Count: 123, Neg. LLF: 69.44177399801022
Iteration: 11, Func. Count: 134, Neg. LLF: 69.35707824199784
Iteration: 12, Func. Count: 145, Neg. LLF: 69.31794829705746
Iteration: 13, Func. Count: 156, Neg. LLF: 69.2992782112823
Iteration: 14, Func. Count: 167, Neg. LLF: 69.28824919269593
Iteration: 15, Func. Count: 178, Neg. LLF: 69.2860890805798
Iteration: 16, Func. Count: 189, Neg. LLF: 69.28561402185778
Iteration: 17, Func. Count: 200, Neg. LLF: 69.28555072480772
Iteration: 18, Func. Count: 211, Neg. LLF: 69.28554909458362
Iteration: 19, Func. Count: 221, Neg. LLF: 69.2855491427194
Optimization terminated successfully (Exit mode 0)
Current function value: 69.28554909458362
Iterations: 19
Function evaluations: 221
Gradient evaluations: 19
Iteration: 1, Func. Count: 13, Neg. LLF: 6065157.0016381685
Iteration: 2, Func. Count: 26, Neg. LLF: 13021778.627166113
Iteration: 3, Func. Count: 39, Neg. LLF: 2943504.875699184
Iteration: 4, Func. Count: 52, Neg. LLF: 77.69829497128532
Iteration: 5, Func. Count: 66, Neg. LLF: 83.56248787326992
Iteration: 6, Func. Count: 79, Neg. LLF: 85.34816341681243
Iteration: 7, Func. Count: 92, Neg. LLF: 71.43619706791644
Iteration: 8, Func. Count: 105, Neg. LLF: 72.24265919389855
Iteration: 9, Func. Count: 118, Neg. LLF: 69.59968175801956
Iteration: 10, Func. Count: 130, Neg. LLF: 69.64239762913677
Iteration: 11, Func. Count: 143, Neg. LLF: 70.60374212087048
Iteration: 12, Func. Count: 156, Neg. LLF: 69.3146107771195
Iteration: 13, Func. Count: 168, Neg. LLF: 69.29125846729653
Iteration: 14, Func. Count: 180, Neg. LLF: 69.28638016437708
Iteration: 15, Func. Count: 192, Neg. LLF: 69.28594687957772
Iteration: 16, Func. Count: 204, Neg. LLF: 69.28559746852741
Iteration: 17, Func. Count: 216, Neg. LLF: 69.28555453179051
Iteration: 18, Func. Count: 228, Neg. LLF: 69.28554970457614
Iteration: 19, Func. Count: 240, Neg. LLF: 69.28554901082273
Optimization terminated successfully (Exit mode 0)
Current function value: 69.28554901082273
Iterations: 19
Function evaluations: 240
Gradient evaluations: 19
Iteration: 1, Func. Count: 14, Neg. LLF: 5666909.030518221
Iteration: 2, Func. Count: 28, Neg. LLF: 3030844.364576465
Iteration: 3, Func. Count: 42, Neg. LLF: 177.7244078368386
Iteration: 4, Func. Count: 56, Neg. LLF: 82.8187775163379
Iteration: 5, Func. Count: 72, Neg. LLF: 93.29104096200096
Iteration: 6, Func. Count: 86, Neg. LLF: 72.81196168468895
Iteration: 7, Func. Count: 100, Neg. LLF: 77.89093860259206
Iteration: 8, Func. Count: 114, Neg. LLF: 69.98717374059866
Iteration: 9, Func. Count: 127, Neg. LLF: 71.67140290499911
Iteration: 10, Func. Count: 141, Neg. LLF: 69.48314114328365
Iteration: 11, Func. Count: 154, Neg. LLF: 69.52580648868592
Iteration: 12, Func. Count: 168, Neg. LLF: 69.30615656550839
Iteration: 13, Func. Count: 181, Neg. LLF: 69.29326072526985
Iteration: 14, Func. Count: 194, Neg. LLF: 69.28618328670329
Iteration: 15, Func. Count: 207, Neg. LLF: 69.28568941341729
Iteration: 16, Func. Count: 220, Neg. LLF: 69.28555012336835
Iteration: 17, Func. Count: 233, Neg. LLF: 69.28554897936235
Iteration: 18, Func. Count: 245, Neg. LLF: 69.28554898794089
Optimization terminated successfully (Exit mode 0)
Current function value: 69.28554897936235
Iterations: 18
Function evaluations: 245
Gradient evaluations: 18
Iteration: 1, Func. Count: 15, Neg. LLF: 7623010.506427374
Iteration: 2, Func. Count: 30, Neg. LLF: 3253697.4151091645
Iteration: 3, Func. Count: 45, Neg. LLF: 513.7976494450872
Iteration: 4, Func. Count: 60, Neg. LLF: 79.85832034395975
Iteration: 5, Func. Count: 76, Neg. LLF: 2395980.450272578
Iteration: 6, Func. Count: 91, Neg. LLF: 74.03778876809871
Iteration: 7, Func. Count: 106, Neg. LLF: 69.83335341100657
Iteration: 8, Func. Count: 120, Neg. LLF: 69.59092351637213
Iteration: 9, Func. Count: 134, Neg. LLF: 71.73942821557903
Iteration: 10, Func. Count: 149, Neg. LLF: 71.38403488800016
Iteration: 11, Func. Count: 165, Neg. LLF: 69.30684222670013
Iteration: 12, Func. Count: 179, Neg. LLF: 69.28983357804402
Iteration: 13, Func. Count: 193, Neg. LLF: 69.28607307243713
Iteration: 14, Func. Count: 207, Neg. LLF: 69.28556884812377
Iteration: 15, Func. Count: 221, Neg. LLF: 69.28555039929265
Iteration: 16, Func. Count: 235, Neg. LLF: 69.28554918338256
Iteration: 17, Func. Count: 248, Neg. LLF: 69.28554920569246
Optimization terminated successfully (Exit mode 0)
Current function value: 69.28554918338256
Iterations: 17
Function evaluations: 248
Gradient evaluations: 17
Iteration: 1, Func. Count: 8, Neg. LLF: 115.83077190510313
Iteration: 2, Func. Count: 17, Neg. LLF: 283.07952159545073
Iteration: 3, Func. Count: 25, Neg. LLF: 362.3393203990307
Iteration: 4, Func. Count: 33, Neg. LLF: 753.6140075564942
Iteration: 5, Func. Count: 41, Neg. LLF: 181.00469440625562
Iteration: 6, Func. Count: 49, Neg. LLF: 144.6584566387295
Iteration: 7, Func. Count: 57, Neg. LLF: 119.57841574472361
Iteration: 8, Func. Count: 65, Neg. LLF: 92.91102597642208
Iteration: 9, Func. Count: 73, Neg. LLF: 99.18935308067002
Iteration: 10, Func. Count: 81, Neg. LLF: 89.65038329291177
Iteration: 11, Func. Count: 89, Neg. LLF: 72.6896487308229
Iteration: 12, Func. Count: 97, Neg. LLF: 75.9542057134932
Iteration: 13, Func. Count: 105, Neg. LLF: 70.43089285387813
Iteration: 14, Func. Count: 112, Neg. LLF: 70.40983785192485
Iteration: 15, Func. Count: 119, Neg. LLF: 70.40770606770639
Iteration: 16, Func. Count: 126, Neg. LLF: 70.40620919803685
Iteration: 17, Func. Count: 133, Neg. LLF: 70.406201694795
Iteration: 18, Func. Count: 139, Neg. LLF: 70.40620170644121
Optimization terminated successfully (Exit mode 0)
Current function value: 70.406201694795
Iterations: 18
Function evaluations: 139
Gradient evaluations: 18
Iteration: 1, Func. Count: 9, Neg. LLF: 30085.105343734187
Iteration: 2, Func. Count: 18, Neg. LLF: 668.4068643971341
Iteration: 3, Func. Count: 27, Neg. LLF: 79.91478994677429
Iteration: 4, Func. Count: 38, Neg. LLF: 89.61439473145992
Iteration: 5, Func. Count: 47, Neg. LLF: 71.66913122947811
Iteration: 6, Func. Count: 55, Neg. LLF: 73.08151686458831
Iteration: 7, Func. Count: 64, Neg. LLF: 85.78824821389324
Iteration: 8, Func. Count: 74, Neg. LLF: 70.44510530389296
Iteration: 9, Func. Count: 82, Neg. LLF: 70.42869473165214
Iteration: 10, Func. Count: 90, Neg. LLF: 70.41414482861673
Iteration: 11, Func. Count: 98, Neg. LLF: 70.40888538005224
Iteration: 12, Func. Count: 106, Neg. LLF: 70.40647852461807
Iteration: 13, Func. Count: 114, Neg. LLF: 70.40622650245707
Iteration: 14, Func. Count: 122, Neg. LLF: 70.40620409246225
Iteration: 15, Func. Count: 130, Neg. LLF: 70.40620224095672
Iteration: 16, Func. Count: 137, Neg. LLF: 70.4062022505361
Optimization terminated successfully (Exit mode 0)
Current function value: 70.40620224095672
Iterations: 16
Function evaluations: 137
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 4501.188485401559
Iteration: 2, Func. Count: 20, Neg. LLF: 812571.1360795696
Iteration: 3, Func. Count: 30, Neg. LLF: 87.52536002480446
Iteration: 4, Func. Count: 42, Neg. LLF: 72.03016557810778
Iteration: 5, Func. Count: 51, Neg. LLF: 74.24680192985835
Iteration: 6, Func. Count: 61, Neg. LLF: 72.13534239026588
Iteration: 7, Func. Count: 71, Neg. LLF: 71.32867078871261
Iteration: 8, Func. Count: 81, Neg. LLF: 70.46022420212154
Iteration: 9, Func. Count: 90, Neg. LLF: 70.41188509463038
Iteration: 10, Func. Count: 99, Neg. LLF: 70.40754349870988
Iteration: 11, Func. Count: 108, Neg. LLF: 70.40633516658916
Iteration: 12, Func. Count: 117, Neg. LLF: 70.40620940595112
Iteration: 13, Func. Count: 126, Neg. LLF: 70.40620164722108
Iteration: 14, Func. Count: 134, Neg. LLF: 70.40620169201426
Optimization terminated successfully (Exit mode 0)
Current function value: 70.40620164722108
Iterations: 14
Function evaluations: 134
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 132.39406820525255
Iteration: 2, Func. Count: 23, Neg. LLF: 5332.433113826511
Iteration: 3, Func. Count: 34, Neg. LLF: 821.0802077156474
Iteration: 4, Func. Count: 45, Neg. LLF: 72.82035505021149
Iteration: 5, Func. Count: 56, Neg. LLF: 72.12784396609257
Iteration: 6, Func. Count: 67, Neg. LLF: 71.46147263255969
Iteration: 7, Func. Count: 78, Neg. LLF: 70.59638374927412
Iteration: 8, Func. Count: 88, Neg. LLF: 71.09517782494831
Iteration: 9, Func. Count: 99, Neg. LLF: 70.52214951612811
Iteration: 10, Func. Count: 110, Neg. LLF: 70.4113476434919
Iteration: 11, Func. Count: 120, Neg. LLF: 70.40737025517105
Iteration: 12, Func. Count: 130, Neg. LLF: 70.40670894473838
Iteration: 13, Func. Count: 140, Neg. LLF: 70.40629484219556
Iteration: 14, Func. Count: 150, Neg. LLF: 70.40621747428126
Iteration: 15, Func. Count: 160, Neg. LLF: 70.40620202497547
Iteration: 16, Func. Count: 170, Neg. LLF: 70.40620142039562
Optimization terminated successfully (Exit mode 0)
Current function value: 70.40620142039562
Iterations: 16
Function evaluations: 170
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 115.04422838582468
Iteration: 2, Func. Count: 26, Neg. LLF: 235.4505335246927
Iteration: 3, Func. Count: 38, Neg. LLF: 1269.9489309550079
Iteration: 4, Func. Count: 50, Neg. LLF: 109.9163518883463
Iteration: 5, Func. Count: 62, Neg. LLF: 74.67859233294215
Iteration: 6, Func. Count: 74, Neg. LLF: 77.11675848666593
Iteration: 7, Func. Count: 86, Neg. LLF: 79.21161005646393
Iteration: 8, Func. Count: 98, Neg. LLF: 71.20180461598179
Iteration: 9, Func. Count: 109, Neg. LLF: 70.72430909782547
Iteration: 10, Func. Count: 120, Neg. LLF: 71.34146564928918
Iteration: 11, Func. Count: 132, Neg. LLF: 70.50199672305067
Iteration: 12, Func. Count: 143, Neg. LLF: 70.4321819113968
Iteration: 13, Func. Count: 154, Neg. LLF: 70.40829254758462
Iteration: 14, Func. Count: 165, Neg. LLF: 70.40649689405284
Iteration: 15, Func. Count: 176, Neg. LLF: 70.40622242444698
Iteration: 16, Func. Count: 187, Neg. LLF: 70.40620547481394
Iteration: 17, Func. Count: 198, Neg. LLF: 70.40620173042653
Iteration: 18, Func. Count: 208, Neg. LLF: 70.40620176557172
Optimization terminated successfully (Exit mode 0)
Current function value: 70.40620173042653
Iterations: 18
Function evaluations: 208
Gradient evaluations: 18
Iteration: 1, Func. Count: 9, Neg. LLF: 116.28704793950916
Iteration: 2, Func. Count: 19, Neg. LLF: 357.0619493576641
Iteration: 3, Func. Count: 28, Neg. LLF: 2830.5853118638493
Iteration: 4, Func. Count: 37, Neg. LLF: 284.0317437694026
Iteration: 5, Func. Count: 46, Neg. LLF: 689.5454698457315
Iteration: 6, Func. Count: 55, Neg. LLF: 292.0352423113527
Iteration: 7, Func. Count: 64, Neg. LLF: 163.13907171395113
Iteration: 8, Func. Count: 73, Neg. LLF: 3235.4448962687356
Iteration: 9, Func. Count: 82, Neg. LLF: 108.09792093082073
Iteration: 10, Func. Count: 91, Neg. LLF: 76.99628740798413
Iteration: 11, Func. Count: 100, Neg. LLF: 72.84170924065606
Iteration: 12, Func. Count: 109, Neg. LLF: 70.13022616074899
Iteration: 13, Func. Count: 117, Neg. LLF: 70.06585850075075
Iteration: 14, Func. Count: 125, Neg. LLF: 70.05750457313057
Iteration: 15, Func. Count: 133, Neg. LLF: 70.0508306020364
Iteration: 16, Func. Count: 141, Neg. LLF: 70.05067990651895
Iteration: 17, Func. Count: 149, Neg. LLF: 70.05065739709315
Iteration: 18, Func. Count: 157, Neg. LLF: 70.05065639309
Iteration: 19, Func. Count: 164, Neg. LLF: 70.05065634254073
Optimization terminated successfully (Exit mode 0)
Current function value: 70.05065639309
Iterations: 19
Function evaluations: 164
Gradient evaluations: 19
Iteration: 1, Func. Count: 10, Neg. LLF: 147.61558514944034
Iteration: 2, Func. Count: 20, Neg. LLF: 85.00465735256496
Iteration: 3, Func. Count: 30, Neg. LLF: 84.084541124907
Iteration: 4, Func. Count: 42, Neg. LLF: 71.6396890785975
Iteration: 5, Func. Count: 51, Neg. LLF: 789.1103013998221
Iteration: 6, Func. Count: 61, Neg. LLF: 73.33989990722176
Iteration: 7, Func. Count: 71, Neg. LLF: 70.78613680886887
Iteration: 8, Func. Count: 81, Neg. LLF: 70.17463743906899
Iteration: 9, Func. Count: 90, Neg. LLF: 70.14578768163824
Iteration: 10, Func. Count: 99, Neg. LLF: 70.08342242451118
Iteration: 11, Func. Count: 108, Neg. LLF: 70.0702477746067
Iteration: 12, Func. Count: 117, Neg. LLF: 70.05798310248979
Iteration: 13, Func. Count: 126, Neg. LLF: 70.0533997677657
Iteration: 14, Func. Count: 135, Neg. LLF: 70.05180816581682
Iteration: 15, Func. Count: 144, Neg. LLF: 70.05098979354658
Iteration: 16, Func. Count: 153, Neg. LLF: 70.05069655053406
Iteration: 17, Func. Count: 162, Neg. LLF: 70.0506578313272
Iteration: 18, Func. Count: 171, Neg. LLF: 70.05065635754686
Iteration: 19, Func. Count: 179, Neg. LLF: 70.05065639160027
Optimization terminated successfully (Exit mode 0)
Current function value: 70.05065635754686
Iterations: 19
Function evaluations: 179
Gradient evaluations: 19
Iteration: 1, Func. Count: 11, Neg. LLF: 91.15030931717287
Iteration: 2, Func. Count: 24, Neg. LLF: 471.78485109062524
Iteration: 3, Func. Count: 35, Neg. LLF: 955.5340330128747
Iteration: 4, Func. Count: 46, Neg. LLF: 71.59480861175392
Iteration: 5, Func. Count: 56, Neg. LLF: 81.44905629942365
Iteration: 6, Func. Count: 67, Neg. LLF: 72.98978536870945
Iteration: 7, Func. Count: 78, Neg. LLF: 93.7778758099173
Iteration: 8, Func. Count: 90, Neg. LLF: 70.18077856636936
Iteration: 9, Func. Count: 100, Neg. LLF: 70.08391413154708
Iteration: 10, Func. Count: 110, Neg. LLF: 70.06679328720531
Iteration: 11, Func. Count: 120, Neg. LLF: 70.05302745742705
Iteration: 12, Func. Count: 130, Neg. LLF: 70.0516923978214
Iteration: 13, Func. Count: 140, Neg. LLF: 70.05101518187814
Iteration: 14, Func. Count: 150, Neg. LLF: 70.05081104204551
Iteration: 15, Func. Count: 160, Neg. LLF: 70.05067165999353
Iteration: 16, Func. Count: 170, Neg. LLF: 70.05065719855615
Iteration: 17, Func. Count: 180, Neg. LLF: 70.05065635907116
Optimization terminated successfully (Exit mode 0)
Current function value: 70.05065635907116
Iterations: 17
Function evaluations: 180
Gradient evaluations: 17
Iteration: 1, Func. Count: 12, Neg. LLF: 104.61340349629833
Iteration: 2, Func. Count: 27, Neg. LLF: 2188.4581537268214
Iteration: 3, Func. Count: 39, Neg. LLF: 907.0744915104223
Iteration: 4, Func. Count: 51, Neg. LLF: 82.57880655199891
Iteration: 5, Func. Count: 63, Neg. LLF: 71.30205267282308
Iteration: 6, Func. Count: 74, Neg. LLF: 71.23110222889454
Iteration: 7, Func. Count: 86, Neg. LLF: 71.81605973218136
Iteration: 8, Func. Count: 98, Neg. LLF: 70.35090620179787
Iteration: 9, Func. Count: 110, Neg. LLF: 70.05727690045676
Iteration: 10, Func. Count: 121, Neg. LLF: 70.05274307006937
Iteration: 11, Func. Count: 132, Neg. LLF: 70.0510139224225
Iteration: 12, Func. Count: 143, Neg. LLF: 70.05070022136111
Iteration: 13, Func. Count: 154, Neg. LLF: 70.05067929185523
Iteration: 14, Func. Count: 165, Neg. LLF: 70.05067160665371
Iteration: 15, Func. Count: 176, Neg. LLF: 70.05066252377145
Iteration: 16, Func. Count: 187, Neg. LLF: 70.05065752910116
Iteration: 17, Func. Count: 198, Neg. LLF: 70.05065642160764
Iteration: 18, Func. Count: 208, Neg. LLF: 70.05065643467954
Optimization terminated successfully (Exit mode 0)
Current function value: 70.05065642160764
Iterations: 18
Function evaluations: 208
Gradient evaluations: 18
Iteration: 1, Func. Count: 13, Neg. LLF: 112.52095360820104
Iteration: 2, Func. Count: 29, Neg. LLF: 3951.2349071045332
Iteration: 3, Func. Count: 42, Neg. LLF: 392.5427440427495
Iteration: 4, Func. Count: 55, Neg. LLF: 91.33040033913716
Iteration: 5, Func. Count: 68, Neg. LLF: 71.38632599683076
Iteration: 6, Func. Count: 80, Neg. LLF: 76.68595901232432
Iteration: 7, Func. Count: 93, Neg. LLF: 79.60835825426167
Iteration: 8, Func. Count: 106, Neg. LLF: 72.53866161312811
Iteration: 9, Func. Count: 119, Neg. LLF: 70.12868454258441
Iteration: 10, Func. Count: 131, Neg. LLF: 70.07928180851893
Iteration: 11, Func. Count: 143, Neg. LLF: 70.0544955261866
Iteration: 12, Func. Count: 155, Neg. LLF: 70.0528844291372
Iteration: 13, Func. Count: 167, Neg. LLF: 70.05218773606022
Iteration: 14, Func. Count: 179, Neg. LLF: 70.05118901098187
Iteration: 15, Func. Count: 191, Neg. LLF: 70.05074592487829
Iteration: 16, Func. Count: 203, Neg. LLF: 70.0506605984746
Iteration: 17, Func. Count: 215, Neg. LLF: 70.05065646816776
Iteration: 18, Func. Count: 226, Neg. LLF: 70.05065650989278
Optimization terminated successfully (Exit mode 0)
Current function value: 70.05065646816776
Iterations: 18
Function evaluations: 226
Gradient evaluations: 18
Iteration: 1, Func. Count: 10, Neg. LLF: 139.2594824652116
Iteration: 2, Func. Count: 21, Neg. LLF: 203.80582140910667
Iteration: 3, Func. Count: 31, Neg. LLF: 964.4658019649512
Iteration: 4, Func. Count: 41, Neg. LLF: 206.7310834115104
Iteration: 5, Func. Count: 51, Neg. LLF: 266.85219136113915
Iteration: 6, Func. Count: 61, Neg. LLF: 81.21603270400448
Iteration: 7, Func. Count: 71, Neg. LLF: 149.43719338203505
Iteration: 8, Func. Count: 81, Neg. LLF: 70.49494676849429
Iteration: 9, Func. Count: 91, Neg. LLF: 104.56110370828905
Iteration: 10, Func. Count: 101, Neg. LLF: 70.85003937066655
Iteration: 11, Func. Count: 111, Neg. LLF: 71.3459968709671
Iteration: 12, Func. Count: 121, Neg. LLF: 69.75707155881533
Iteration: 13, Func. Count: 131, Neg. LLF: 69.55761088219617
Iteration: 14, Func. Count: 140, Neg. LLF: 69.55579622004474
Iteration: 15, Func. Count: 149, Neg. LLF: 69.55564981234576
Iteration: 16, Func. Count: 158, Neg. LLF: 69.5556432403776
Iteration: 17, Func. Count: 167, Neg. LLF: 69.55564120238154
Iteration: 18, Func. Count: 175, Neg. LLF: 69.55564120238661
Optimization terminated successfully (Exit mode 0)
Current function value: 69.55564120238154
Iterations: 18
Function evaluations: 175
Gradient evaluations: 18
Iteration: 1, Func. Count: 11, Neg. LLF: 1214.901629020765
Iteration: 2, Func. Count: 22, Neg. LLF: 48187536.31583788
Iteration: 3, Func. Count: 33, Neg. LLF: 80.53553069639489
Iteration: 4, Func. Count: 45, Neg. LLF: 311.3685477930528
Iteration: 5, Func. Count: 56, Neg. LLF: 11790.551854717989
Iteration: 6, Func. Count: 67, Neg. LLF: 72.12451256158282
Iteration: 7, Func. Count: 78, Neg. LLF: 78.34676033908733
Iteration: 8, Func. Count: 89, Neg. LLF: 69.98290940038045
Iteration: 9, Func. Count: 99, Neg. LLF: 69.67633486858703
Iteration: 10, Func. Count: 109, Neg. LLF: 69.59682855868019
Iteration: 11, Func. Count: 119, Neg. LLF: 69.56301765998865
Iteration: 12, Func. Count: 129, Neg. LLF: 69.55758528427455
Iteration: 13, Func. Count: 139, Neg. LLF: 69.55587438172181
Iteration: 14, Func. Count: 149, Neg. LLF: 69.55565773347881
Iteration: 15, Func. Count: 159, Neg. LLF: 69.55564113571884
Iteration: 16, Func. Count: 168, Neg. LLF: 69.55564115654224
Optimization terminated successfully (Exit mode 0)
Current function value: 69.55564113571884
Iterations: 16
Function evaluations: 168
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 2753.9460812961347
Iteration: 2, Func. Count: 24, Neg. LLF: 235.95812892027539
Iteration: 3, Func. Count: 36, Neg. LLF: 83.83014789108974
Iteration: 4, Func. Count: 50, Neg. LLF: 75.46721433262871
Iteration: 5, Func. Count: 62, Neg. LLF: 80.11624568602397
Iteration: 6, Func. Count: 74, Neg. LLF: 74.897329215534
Iteration: 7, Func. Count: 86, Neg. LLF: 70.51814213521135
Iteration: 8, Func. Count: 98, Neg. LLF: 70.00608063017688
Iteration: 9, Func. Count: 109, Neg. LLF: 69.65989510238086
Iteration: 10, Func. Count: 120, Neg. LLF: 69.59999799558538
Iteration: 11, Func. Count: 131, Neg. LLF: 69.55807655342201
Iteration: 12, Func. Count: 142, Neg. LLF: 69.55619210285475
Iteration: 13, Func. Count: 153, Neg. LLF: 69.55573785467118
Iteration: 14, Func. Count: 164, Neg. LLF: 69.55565982798682
Iteration: 15, Func. Count: 175, Neg. LLF: 69.55564441782215
Iteration: 16, Func. Count: 186, Neg. LLF: 69.55564194517987
Iteration: 17, Func. Count: 197, Neg. LLF: 69.55564095340753
Optimization terminated successfully (Exit mode 0)
Current function value: 69.55564095340753
Iterations: 17
Function evaluations: 197
Gradient evaluations: 17
Iteration: 1, Func. Count: 13, Neg. LLF: 121.51402541654122
Iteration: 2, Func. Count: 26, Neg. LLF: 354.4639960717005
Iteration: 3, Func. Count: 39, Neg. LLF: 81.14539524603008
Iteration: 4, Func. Count: 53, Neg. LLF: 47384.64947305957
Iteration: 5, Func. Count: 66, Neg. LLF: 80.66093742201936
Iteration: 6, Func. Count: 79, Neg. LLF: 83.47598882407785
Iteration: 7, Func. Count: 92, Neg. LLF: 70.3120078258773
Iteration: 8, Func. Count: 104, Neg. LLF: 70.67555734131523
Iteration: 9, Func. Count: 117, Neg. LLF: 74.64293211989902
Iteration: 10, Func. Count: 131, Neg. LLF: 69.80361765004572
Iteration: 11, Func. Count: 144, Neg. LLF: 69.6313206577285
Iteration: 12, Func. Count: 157, Neg. LLF: 69.55846329387556
Iteration: 13, Func. Count: 169, Neg. LLF: 69.55596271810619
Iteration: 14, Func. Count: 181, Neg. LLF: 69.55577091510976
Iteration: 15, Func. Count: 193, Neg. LLF: 69.5556603283957
Iteration: 16, Func. Count: 205, Neg. LLF: 69.55564466302236
Iteration: 17, Func. Count: 217, Neg. LLF: 69.55564104907094
Iteration: 18, Func. Count: 228, Neg. LLF: 69.55564104923701
Optimization terminated successfully (Exit mode 0)
Current function value: 69.55564104907094
Iterations: 18
Function evaluations: 228
Gradient evaluations: 18
Iteration: 1, Func. Count: 14, Neg. LLF: 117.6416583750057
Iteration: 2, Func. Count: 29, Neg. LLF: 34748.59506785142
Iteration: 3, Func. Count: 43, Neg. LLF: 6317592.18989892
Iteration: 4, Func. Count: 57, Neg. LLF: 258.06459791108284
Iteration: 5, Func. Count: 71, Neg. LLF: 81.83752164464636
Iteration: 6, Func. Count: 85, Neg. LLF: 73.03137800895435
Iteration: 7, Func. Count: 99, Neg. LLF: 70.81802072486596
Iteration: 8, Func. Count: 113, Neg. LLF: 72.38912180860206
Iteration: 9, Func. Count: 127, Neg. LLF: 69.6065020283443
Iteration: 10, Func. Count: 140, Neg. LLF: 69.57757624521867
Iteration: 11, Func. Count: 153, Neg. LLF: 69.55865751562736
Iteration: 12, Func. Count: 166, Neg. LLF: 69.55615388170327
Iteration: 13, Func. Count: 179, Neg. LLF: 69.55575836952637
Iteration: 14, Func. Count: 192, Neg. LLF: 69.55566235648939
Iteration: 15, Func. Count: 205, Neg. LLF: 69.55564107933509
Iteration: 16, Func. Count: 217, Neg. LLF: 69.55564111725295
Optimization terminated successfully (Exit mode 0)
Current function value: 69.55564107933509
Iterations: 16
Function evaluations: 217
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 131.2637589495505
Iteration: 2, Func. Count: 23, Neg. LLF: 118.5561616088538
Iteration: 3, Func. Count: 34, Neg. LLF: 7805.40333065477
Iteration: 4, Func. Count: 45, Neg. LLF: 401.6171839676901
Iteration: 5, Func. Count: 56, Neg. LLF: 7011.797145381384
Iteration: 6, Func. Count: 67, Neg. LLF: 91.33854679740618
Iteration: 7, Func. Count: 78, Neg. LLF: 78.13893614662382
Iteration: 8, Func. Count: 89, Neg. LLF: 70.86650730416079
Iteration: 9, Func. Count: 100, Neg. LLF: 102.48324411423393
Iteration: 10, Func. Count: 111, Neg. LLF: 69.65554124417255
Iteration: 11, Func. Count: 121, Neg. LLF: 69.56722875043174
Iteration: 12, Func. Count: 131, Neg. LLF: 69.55319651825013
Iteration: 13, Func. Count: 141, Neg. LLF: 69.5524988107922
Iteration: 14, Func. Count: 151, Neg. LLF: 69.55241546128013
Iteration: 15, Func. Count: 161, Neg. LLF: 69.55240587296224
Iteration: 16, Func. Count: 171, Neg. LLF: 69.55240477795778
Iteration: 17, Func. Count: 180, Neg. LLF: 69.55240477792653
Optimization terminated successfully (Exit mode 0)
Current function value: 69.55240477795778
Iterations: 17
Function evaluations: 180
Gradient evaluations: 17
Iteration: 1, Func. Count: 12, Neg. LLF: 4564382.994247674
Iteration: 2, Func. Count: 24, Neg. LLF: 3343848.9269698793
Iteration: 3, Func. Count: 36, Neg. LLF: 84.21922194043017
Iteration: 4, Func. Count: 50, Neg. LLF: 137.74718599579933
Iteration: 5, Func. Count: 62, Neg. LLF: 75.76472353667789
Iteration: 6, Func. Count: 74, Neg. LLF: 86.05371493383879
Iteration: 7, Func. Count: 86, Neg. LLF: 71.95958594521213
Iteration: 8, Func. Count: 98, Neg. LLF: 70.5852734881411
Iteration: 9, Func. Count: 110, Neg. LLF: 70.38531493950941
Iteration: 10, Func. Count: 122, Neg. LLF: 69.60353656826479
Iteration: 11, Func. Count: 133, Neg. LLF: 69.56215318626617
Iteration: 12, Func. Count: 144, Neg. LLF: 69.55613739265507
Iteration: 13, Func. Count: 155, Neg. LLF: 69.5533330307342
Iteration: 14, Func. Count: 166, Neg. LLF: 69.5524674946784
Iteration: 15, Func. Count: 177, Neg. LLF: 69.55241501289515
Iteration: 16, Func. Count: 188, Neg. LLF: 69.55240726151955
Iteration: 17, Func. Count: 199, Neg. LLF: 69.552405525669
Iteration: 18, Func. Count: 210, Neg. LLF: 69.55240454559635
Optimization terminated successfully (Exit mode 0)
Current function value: 69.55240454559635
Iterations: 18
Function evaluations: 210
Gradient evaluations: 18
Iteration: 1, Func. Count: 13, Neg. LLF: 5198588.499658438
Iteration: 2, Func. Count: 26, Neg. LLF: 881.0773009123425
Iteration: 3, Func. Count: 39, Neg. LLF: 75.7036677290655
Iteration: 4, Func. Count: 53, Neg. LLF: 12407.376581496554
Iteration: 5, Func. Count: 66, Neg. LLF: 72.80851506938254
Iteration: 6, Func. Count: 79, Neg. LLF: 77.51282924163141
Iteration: 7, Func. Count: 92, Neg. LLF: 309.21000526742813
Iteration: 8, Func. Count: 105, Neg. LLF: 70.25797990761839
Iteration: 9, Func. Count: 118, Neg. LLF: 73.17676984157822
Iteration: 10, Func. Count: 131, Neg. LLF: 69.64048288016971
Iteration: 11, Func. Count: 143, Neg. LLF: 69.6023581987831
Iteration: 12, Func. Count: 155, Neg. LLF: 69.55931630610861
Iteration: 13, Func. Count: 167, Neg. LLF: 69.55406670635867
Iteration: 14, Func. Count: 179, Neg. LLF: 69.55273206479899
Iteration: 15, Func. Count: 191, Neg. LLF: 69.55241986063446
Iteration: 16, Func. Count: 203, Neg. LLF: 69.55240719095555
Iteration: 17, Func. Count: 215, Neg. LLF: 69.55240530470438
Iteration: 18, Func. Count: 226, Neg. LLF: 69.55240532690355
Optimization terminated successfully (Exit mode 0)
Current function value: 69.55240530470438
Iterations: 18
Function evaluations: 226
Gradient evaluations: 18
Iteration: 1, Func. Count: 14, Neg. LLF: 125.90328214345229
Iteration: 2, Func. Count: 28, Neg. LLF: 3936265.5614145487
Iteration: 3, Func. Count: 42, Neg. LLF: 188.9942697285734
Iteration: 4, Func. Count: 56, Neg. LLF: 285.7274217088469
Iteration: 5, Func. Count: 70, Neg. LLF: 73.75138737900564
Iteration: 6, Func. Count: 84, Neg. LLF: 71.30837664489712
Iteration: 7, Func. Count: 98, Neg. LLF: 70.2303873953303
Iteration: 8, Func. Count: 112, Neg. LLF: 70.40712784904646
Iteration: 9, Func. Count: 126, Neg. LLF: 70.02177524187282
Iteration: 10, Func. Count: 140, Neg. LLF: 69.55754652614081
Iteration: 11, Func. Count: 153, Neg. LLF: 69.54614235741727
Iteration: 12, Func. Count: 166, Neg. LLF: 69.54240076184784
Iteration: 13, Func. Count: 179, Neg. LLF: 69.54131627124926
Iteration: 14, Func. Count: 192, Neg. LLF: 69.53879715598254
Iteration: 15, Func. Count: 205, Neg. LLF: 69.53789732541604
Iteration: 16, Func. Count: 218, Neg. LLF: 69.53774542428904
Iteration: 17, Func. Count: 231, Neg. LLF: 69.53773432254144
Iteration: 18, Func. Count: 244, Neg. LLF: 69.53773363650681
Optimization terminated successfully (Exit mode 0)
Current function value: 69.53773363650681
Iterations: 18
Function evaluations: 244
Gradient evaluations: 18
Iteration: 1, Func. Count: 15, Neg. LLF: 112.19245528760555
Iteration: 2, Func. Count: 31, Neg. LLF: 3515142.977901806
Iteration: 3, Func. Count: 46, Neg. LLF: 176.37325585544238
Iteration: 4, Func. Count: 61, Neg. LLF: 2052.3448580238223
Iteration: 5, Func. Count: 76, Neg. LLF: 85.63992733078109
Iteration: 6, Func. Count: 91, Neg. LLF: 83.38067028133247
Iteration: 7, Func. Count: 106, Neg. LLF: 70.95956405249318
Iteration: 8, Func. Count: 121, Neg. LLF: 71.82361745182361
Iteration: 9, Func. Count: 136, Neg. LLF: 72.19566495660953
Iteration: 10, Func. Count: 151, Neg. LLF: 69.6480485810482
Iteration: 11, Func. Count: 165, Neg. LLF: 69.5588168181777
Iteration: 12, Func. Count: 179, Neg. LLF: 69.5491981744368
Iteration: 13, Func. Count: 193, Neg. LLF: 69.54561573991687
Iteration: 14, Func. Count: 207, Neg. LLF: 69.5435528686629
Iteration: 15, Func. Count: 221, Neg. LLF: 69.54019897269781
Iteration: 16, Func. Count: 235, Neg. LLF: 69.53808979255835
Iteration: 17, Func. Count: 249, Neg. LLF: 69.53777999073245
Iteration: 18, Func. Count: 263, Neg. LLF: 69.53773615378506
Iteration: 19, Func. Count: 277, Neg. LLF: 69.5377341560742
Iteration: 20, Func. Count: 291, Neg. LLF: 69.53773362431025
Optimization terminated successfully (Exit mode 0)
Current function value: 69.53773362431025
Iterations: 20
Function evaluations: 291
Gradient evaluations: 20
Iteration: 1, Func. Count: 12, Neg. LLF: 124.19299363667983
Iteration: 2, Func. Count: 25, Neg. LLF: 390.8676987154967
Iteration: 3, Func. Count: 37, Neg. LLF: 1947.621554285126
Iteration: 4, Func. Count: 49, Neg. LLF: 255.78531245332422
Iteration: 5, Func. Count: 61, Neg. LLF: 72.91348683464628
Iteration: 6, Func. Count: 73, Neg. LLF: 104.05385798821942
Iteration: 7, Func. Count: 85, Neg. LLF: 27837.11495823034
Iteration: 8, Func. Count: 97, Neg. LLF: 69.79547992847601
Iteration: 9, Func. Count: 108, Neg. LLF: 71.18632276681929
Iteration: 10, Func. Count: 120, Neg. LLF: 73.51383608839237
Iteration: 11, Func. Count: 132, Neg. LLF: 69.35778046731745
Iteration: 12, Func. Count: 143, Neg. LLF: 69.28689007200543
Iteration: 13, Func. Count: 154, Neg. LLF: 69.2857179450961
Iteration: 14, Func. Count: 165, Neg. LLF: 69.28561588382813
Iteration: 15, Func. Count: 176, Neg. LLF: 69.28556118430741
Iteration: 16, Func. Count: 187, Neg. LLF: 69.28554957876517
Iteration: 17, Func. Count: 198, Neg. LLF: 69.285548913898
Optimization terminated successfully (Exit mode 0)
Current function value: 69.285548913898
Iterations: 17
Function evaluations: 198
Gradient evaluations: 17
Iteration: 1, Func. Count: 13, Neg. LLF: 5306553.480338596
Iteration: 2, Func. Count: 26, Neg. LLF: 3772795.3034325955
Iteration: 3, Func. Count: 39, Neg. LLF: 92.00688230928772
Iteration: 4, Func. Count: 54, Neg. LLF: 99.95441508296291
Iteration: 5, Func. Count: 67, Neg. LLF: 77.40731053581864
Iteration: 6, Func. Count: 80, Neg. LLF: 76.64181926221154
Iteration: 7, Func. Count: 93, Neg. LLF: 71.93076812578623
Iteration: 8, Func. Count: 106, Neg. LLF: 70.79973436584216
Iteration: 9, Func. Count: 119, Neg. LLF: 70.00242530080175
Iteration: 10, Func. Count: 132, Neg. LLF: 69.49025503766734
Iteration: 11, Func. Count: 144, Neg. LLF: 69.31822283735508
Iteration: 12, Func. Count: 156, Neg. LLF: 69.293800951505
Iteration: 13, Func. Count: 168, Neg. LLF: 69.28826177036134
Iteration: 14, Func. Count: 180, Neg. LLF: 69.285889598332
Iteration: 15, Func. Count: 192, Neg. LLF: 69.28562803345464
Iteration: 16, Func. Count: 204, Neg. LLF: 69.2855576260272
Iteration: 17, Func. Count: 216, Neg. LLF: 69.28555099421725
Iteration: 18, Func. Count: 228, Neg. LLF: 69.28554915211883
Iteration: 19, Func. Count: 239, Neg. LLF: 69.28554920019315
Optimization terminated successfully (Exit mode 0)
Current function value: 69.28554915211883
Iterations: 19
Function evaluations: 239
Gradient evaluations: 19
Iteration: 1, Func. Count: 14, Neg. LLF: 100.40459136409429
Iteration: 2, Func. Count: 28, Neg. LLF: 7449605.3753742445
Iteration: 3, Func. Count: 42, Neg. LLF: 25443.413147525087
Iteration: 4, Func. Count: 56, Neg. LLF: 643.9695856583047
Iteration: 5, Func. Count: 70, Neg. LLF: 141.50804113232644
Iteration: 6, Func. Count: 84, Neg. LLF: 73.55020045091844
Iteration: 7, Func. Count: 98, Neg. LLF: 72.75730940401716
Iteration: 8, Func. Count: 112, Neg. LLF: 69.70765233315493
Iteration: 9, Func. Count: 125, Neg. LLF: 69.52612288812347
Iteration: 10, Func. Count: 138, Neg. LLF: 77.84904857445527
Iteration: 11, Func. Count: 152, Neg. LLF: 69.29523108850691
Iteration: 12, Func. Count: 165, Neg. LLF: 69.2874286803921
Iteration: 13, Func. Count: 178, Neg. LLF: 69.28668522135462
Iteration: 14, Func. Count: 191, Neg. LLF: 69.28556963554327
Iteration: 15, Func. Count: 204, Neg. LLF: 69.285552002157
Iteration: 16, Func. Count: 217, Neg. LLF: 69.28554897696355
Iteration: 17, Func. Count: 229, Neg. LLF: 69.28554901371953
Optimization terminated successfully (Exit mode 0)
Current function value: 69.28554897696355
Iterations: 17
Function evaluations: 229
Gradient evaluations: 17
Iteration: 1, Func. Count: 15, Neg. LLF: 100.78481983508769
Iteration: 2, Func. Count: 32, Neg. LLF: 13375809.216897156
Iteration: 3, Func. Count: 47, Neg. LLF: 406.2560192138489
Iteration: 4, Func. Count: 62, Neg. LLF: 1740528.1080480714
Iteration: 5, Func. Count: 77, Neg. LLF: 79.40243699114318
Iteration: 6, Func. Count: 92, Neg. LLF: 74.28098761370707
Iteration: 7, Func. Count: 107, Neg. LLF: 74.92893831147218
Iteration: 8, Func. Count: 122, Neg. LLF: 72.9612710102617
Iteration: 9, Func. Count: 137, Neg. LLF: 71.81953922533455
Iteration: 10, Func. Count: 152, Neg. LLF: 69.46387988037286
Iteration: 11, Func. Count: 166, Neg. LLF: 69.69247099854017
Iteration: 12, Func. Count: 181, Neg. LLF: 69.29847179501063
Iteration: 13, Func. Count: 195, Neg. LLF: 69.29158633393092
Iteration: 14, Func. Count: 209, Neg. LLF: 69.28711935955377
Iteration: 15, Func. Count: 223, Neg. LLF: 69.28570389231926
Iteration: 16, Func. Count: 237, Neg. LLF: 69.28556080489712
Iteration: 17, Func. Count: 251, Neg. LLF: 69.2855497625112
Iteration: 18, Func. Count: 265, Neg. LLF: 69.28554891293183
Optimization terminated successfully (Exit mode 0)
Current function value: 69.28554891293183
Iterations: 18
Function evaluations: 265
Gradient evaluations: 18
Iteration: 1, Func. Count: 16, Neg. LLF: 108.39376173095006
Iteration: 2, Func. Count: 34, Neg. LLF: 2555.503812497205
Iteration: 3, Func. Count: 50, Neg. LLF: 302.9164460594266
Iteration: 4, Func. Count: 66, Neg. LLF: 1817148.5555103533
Iteration: 5, Func. Count: 82, Neg. LLF: 84.03581385555665
Iteration: 6, Func. Count: 98, Neg. LLF: 75.63287643034276
Iteration: 7, Func. Count: 114, Neg. LLF: 82.18121724088067
Iteration: 8, Func. Count: 130, Neg. LLF: 71.72636611408004
Iteration: 9, Func. Count: 146, Neg. LLF: 71.70830107718555
Iteration: 10, Func. Count: 162, Neg. LLF: 71.84249143439689
Iteration: 11, Func. Count: 178, Neg. LLF: 69.57811150144403
Iteration: 12, Func. Count: 193, Neg. LLF: 69.34215857694421
Iteration: 13, Func. Count: 208, Neg. LLF: 69.29734458339325
Iteration: 14, Func. Count: 223, Neg. LLF: 69.28812244087314
Iteration: 15, Func. Count: 238, Neg. LLF: 69.2857514005117
Iteration: 16, Func. Count: 253, Neg. LLF: 69.28560367566966
Iteration: 17, Func. Count: 268, Neg. LLF: 69.28556676853756
Iteration: 18, Func. Count: 283, Neg. LLF: 69.2855544584905
Iteration: 19, Func. Count: 298, Neg. LLF: 69.28554918095635
Iteration: 20, Func. Count: 312, Neg. LLF: 69.28554920322235
Optimization terminated successfully (Exit mode 0)
Current function value: 69.28554918095635
Iterations: 20
Function evaluations: 312
Gradient evaluations: 20
Iteration: 1, Func. Count: 7, Neg. LLF: 116.74418351692299
Iteration: 2, Func. Count: 15, Neg. LLF: 184.01124159123606
Iteration: 3, Func. Count: 22, Neg. LLF: 171.79249489741633
Iteration: 4, Func. Count: 29, Neg. LLF: 484.55332974237984
Iteration: 5, Func. Count: 36, Neg. LLF: 116.79422129076018
Iteration: 6, Func. Count: 43, Neg. LLF: 156.35858049291963
Iteration: 7, Func. Count: 50, Neg. LLF: 124.54940175615465
Iteration: 8, Func. Count: 57, Neg. LLF: 87.39315137601326
Iteration: 9, Func. Count: 64, Neg. LLF: 71.57881608989052
Iteration: 10, Func. Count: 71, Neg. LLF: 74.27879297547715
Iteration: 11, Func. Count: 78, Neg. LLF: 70.42953241387936
Iteration: 12, Func. Count: 84, Neg. LLF: 70.41570963423254
Iteration: 13, Func. Count: 90, Neg. LLF: 70.40705224645977
Iteration: 14, Func. Count: 96, Neg. LLF: 70.40628618129011
Iteration: 15, Func. Count: 102, Neg. LLF: 70.40620974446912
Iteration: 16, Func. Count: 108, Neg. LLF: 70.40620150743291
Iteration: 17, Func. Count: 113, Neg. LLF: 70.40620150742227
Optimization terminated successfully (Exit mode 0)
Current function value: 70.40620150743291
Iterations: 17
Function evaluations: 113
Gradient evaluations: 17
Iteration: 1, Func. Count: 5, Neg. LLF: 123.97473207589532
Iteration: 2, Func. Count: 13, Neg. LLF: 95.75821392636425
Iteration: 3, Func. Count: 18, Neg. LLF: 86.87373097643122
Iteration: 4, Func. Count: 22, Neg. LLF: 86.9615227665836
Iteration: 5, Func. Count: 27, Neg. LLF: 86.84733744954553
Iteration: 6, Func. Count: 31, Neg. LLF: 86.84045525421861
Iteration: 7, Func. Count: 35, Neg. LLF: 86.83980184797787
Iteration: 8, Func. Count: 39, Neg. LLF: 86.83978627916261
Iteration: 9, Func. Count: 42, Neg. LLF: 86.8397862791336
Optimization terminated successfully (Exit mode 0)
Current function value: 86.83978627916261
Iterations: 9
Function evaluations: 42
Gradient evaluations: 9
Iteration: 1, Func. Count: 6, Neg. LLF: 176.873429817051
Iteration: 2, Func. Count: 18, Neg. LLF: 16567075.844383236
Iteration: 3, Func. Count: 24, Neg. LLF: 638.5656281881876
Iteration: 4, Func. Count: 31, Neg. LLF: 77.99071152202421
Iteration: 5, Func. Count: 36, Neg. LLF: 77.92143799902944
Iteration: 6, Func. Count: 41, Neg. LLF: 77.9114552201705
Iteration: 7, Func. Count: 46, Neg. LLF: 77.90843841247228
Iteration: 8, Func. Count: 51, Neg. LLF: 77.90838483209656
Iteration: 9, Func. Count: 56, Neg. LLF: 77.9083824992916
Iteration: 10, Func. Count: 60, Neg. LLF: 77.90838238811118
Optimization terminated successfully (Exit mode 0)
Current function value: 77.9083824992916
Iterations: 10
Function evaluations: 60
Gradient evaluations: 10
Iteration: 1, Func. Count: 7, Neg. LLF: 15016524.78884962
Iteration: 2, Func. Count: 14, Neg. LLF: 117429358.82407376
Iteration: 3, Func. Count: 21, Neg. LLF: 135.9525448489001
Iteration: 4, Func. Count: 29, Neg. LLF: 77.92282831118597
Iteration: 5, Func. Count: 35, Neg. LLF: 77.91097128625111
Iteration: 6, Func. Count: 41, Neg. LLF: 77.90873721317455
Iteration: 7, Func. Count: 47, Neg. LLF: 77.90866031652948
Iteration: 8, Func. Count: 54, Neg. LLF: 77.90838253928412
Iteration: 9, Func. Count: 59, Neg. LLF: 77.90838248161472
Optimization terminated successfully (Exit mode 0)
Current function value: 77.90838253928412
Iterations: 9
Function evaluations: 59
Gradient evaluations: 9
Iteration: 1, Func. Count: 8, Neg. LLF: 140.2610063090431
Iteration: 2, Func. Count: 19, Neg. LLF: 21473004.926223326
Iteration: 3, Func. Count: 27, Neg. LLF: 80.48974583716782
Iteration: 4, Func. Count: 34, Neg. LLF: 90.01132035104675
Iteration: 5, Func. Count: 42, Neg. LLF: 146.2342413497382
Iteration: 6, Func. Count: 51, Neg. LLF: 78.04647769499941
Iteration: 7, Func. Count: 58, Neg. LLF: 77.96016278467916
Iteration: 8, Func. Count: 65, Neg. LLF: 77.92098804866727
Iteration: 9, Func. Count: 72, Neg. LLF: 77.91207272109304
Iteration: 10, Func. Count: 79, Neg. LLF: 77.90861686079585
Iteration: 11, Func. Count: 86, Neg. LLF: 77.90843045877202
Iteration: 12, Func. Count: 93, Neg. LLF: 77.90838267387795
Iteration: 13, Func. Count: 99, Neg. LLF: 77.9083826361205
Optimization terminated successfully (Exit mode 0)
Current function value: 77.90838267387795
Iterations: 13
Function evaluations: 99
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 152.04320697665736
Iteration: 2, Func. Count: 22, Neg. LLF: 19822224.951723423
Iteration: 3, Func. Count: 31, Neg. LLF: 129.11766017456577
Iteration: 4, Func. Count: 40, Neg. LLF: 80.1553624932763
Iteration: 5, Func. Count: 48, Neg. LLF: 79.62071521311442
Iteration: 6, Func. Count: 57, Neg. LLF: 78.18708202618969
Iteration: 7, Func. Count: 65, Neg. LLF: 77.9768161175562
Iteration: 8, Func. Count: 73, Neg. LLF: 77.92997262924186
Iteration: 9, Func. Count: 81, Neg. LLF: 77.9108958069915
Iteration: 10, Func. Count: 89, Neg. LLF: 77.90875602421903
Iteration: 11, Func. Count: 97, Neg. LLF: 77.90838305986121
Iteration: 12, Func. Count: 105, Neg. LLF: 77.90838239693737
Optimization terminated successfully (Exit mode 0)
Current function value: 77.90838239693737
Iterations: 12
Function evaluations: 105
Gradient evaluations: 12
Iteration: 1, Func. Count: 6, Neg. LLF: 146.2778591618717
Iteration: 2, Func. Count: 14, Neg. LLF: 621534492.5213495
Iteration: 3, Func. Count: 20, Neg. LLF: 9054895.39119648
Iteration: 4, Func. Count: 26, Neg. LLF: 2461735.336501444
Iteration: 5, Func. Count: 32, Neg. LLF: 9042905.384481182
Iteration: 6, Func. Count: 38, Neg. LLF: 2884911.8984317183
Iteration: 7, Func. Count: 44, Neg. LLF: 155.3287153134323
Iteration: 8, Func. Count: 50, Neg. LLF: 134.80717404457317
Iteration: 9, Func. Count: 56, Neg. LLF: 80.52478576930231
Iteration: 10, Func. Count: 62, Neg. LLF: 78.06557764575405
Iteration: 11, Func. Count: 67, Neg. LLF: 77.9243737685361
Iteration: 12, Func. Count: 72, Neg. LLF: 77.74302013153284
Iteration: 13, Func. Count: 77, Neg. LLF: 77.5836346270857
Iteration: 14, Func. Count: 82, Neg. LLF: 77.56624495376988
Iteration: 15, Func. Count: 87, Neg. LLF: 77.56396459113564
Iteration: 16, Func. Count: 92, Neg. LLF: 77.56345179893603
Iteration: 17, Func. Count: 97, Neg. LLF: 77.56340683194692
Iteration: 18, Func. Count: 102, Neg. LLF: 77.5634050105426
Iteration: 19, Func. Count: 106, Neg. LLF: 77.56340501054058
Optimization terminated successfully (Exit mode 0)
Current function value: 77.5634050105426
Iterations: 19
Function evaluations: 106
Gradient evaluations: 19
Iteration: 1, Func. Count: 7, Neg. LLF: 176.3529015767628
Iteration: 2, Func. Count: 19, Neg. LLF: 9135594.204731442
Iteration: 3, Func. Count: 26, Neg. LLF: 465.9307652465672
Iteration: 4, Func. Count: 34, Neg. LLF: 76.0339394688348
Iteration: 5, Func. Count: 40, Neg. LLF: 79.73556080795869
Iteration: 6, Func. Count: 47, Neg. LLF: 75.9046565368514
Iteration: 7, Func. Count: 54, Neg. LLF: 87.58769552653274
Iteration: 8, Func. Count: 61, Neg. LLF: 75.67316892863214
Iteration: 9, Func. Count: 67, Neg. LLF: 75.57947653587047
Iteration: 10, Func. Count: 73, Neg. LLF: 75.50025577114823
Iteration: 11, Func. Count: 79, Neg. LLF: 75.4118908434675
Iteration: 12, Func. Count: 85, Neg. LLF: 75.39679924816393
Iteration: 13, Func. Count: 91, Neg. LLF: 75.3946864218504
Iteration: 14, Func. Count: 97, Neg. LLF: 75.3945665719399
Iteration: 15, Func. Count: 103, Neg. LLF: 75.39454600458869
Iteration: 16, Func. Count: 109, Neg. LLF: 75.39454076783605
Iteration: 17, Func. Count: 114, Neg. LLF: 75.39454076786431
Optimization terminated successfully (Exit mode 0)
Current function value: 75.39454076783605
Iterations: 17
Function evaluations: 114
Gradient evaluations: 17
Iteration: 1, Func. Count: 8, Neg. LLF: 2832801.5036217947
Iteration: 2, Func. Count: 16, Neg. LLF: 126774044.55158217
Iteration: 3, Func. Count: 24, Neg. LLF: 84.4542843395298
Iteration: 4, Func. Count: 32, Neg. LLF: 75.92481516492498
Iteration: 5, Func. Count: 40, Neg. LLF: 80.29368475843029
Iteration: 6, Func. Count: 48, Neg. LLF: 75.74716258056911
Iteration: 7, Func. Count: 56, Neg. LLF: 76.31060503981344
Iteration: 8, Func. Count: 64, Neg. LLF: 76.36343434131378
Iteration: 9, Func. Count: 72, Neg. LLF: 75.31571587065893
Iteration: 10, Func. Count: 80, Neg. LLF: 75.28521974688638
Iteration: 11, Func. Count: 87, Neg. LLF: 75.28026122153757
Iteration: 12, Func. Count: 94, Neg. LLF: 75.2795620945585
Iteration: 13, Func. Count: 101, Neg. LLF: 75.2787517229793
Iteration: 14, Func. Count: 108, Neg. LLF: 75.27873072767484
Iteration: 15, Func. Count: 115, Neg. LLF: 75.27872977140298
Optimization terminated successfully (Exit mode 0)
Current function value: 75.27872977140298
Iterations: 15
Function evaluations: 115
Gradient evaluations: 15
Iteration: 1, Func. Count: 9, Neg. LLF: 4933328.615636643
Iteration: 2, Func. Count: 18, Neg. LLF: 92217776.93012552
Iteration: 3, Func. Count: 27, Neg. LLF: 96.28957197784656
Iteration: 4, Func. Count: 36, Neg. LLF: 110.71883722757659
Iteration: 5, Func. Count: 46, Neg. LLF: 76.11500021562048
Iteration: 6, Func. Count: 54, Neg. LLF: 80.14525858516959
Iteration: 7, Func. Count: 63, Neg. LLF: 80.4547604091415
Iteration: 8, Func. Count: 73, Neg. LLF: 75.84049747717387
Iteration: 9, Func. Count: 82, Neg. LLF: 75.8121826829196
Iteration: 10, Func. Count: 91, Neg. LLF: 75.35494266705388
Iteration: 11, Func. Count: 99, Neg. LLF: 75.30368392268404
Iteration: 12, Func. Count: 107, Neg. LLF: 75.29986379934188
Iteration: 13, Func. Count: 116, Neg. LLF: 75.28366622625234
Iteration: 14, Func. Count: 124, Neg. LLF: 75.27986816414753
Iteration: 15, Func. Count: 132, Neg. LLF: 75.27900145661269
Iteration: 16, Func. Count: 140, Neg. LLF: 75.27876988181372
Iteration: 17, Func. Count: 148, Neg. LLF: 75.27873721870827
Iteration: 18, Func. Count: 156, Neg. LLF: 75.27872984331577
Iteration: 19, Func. Count: 163, Neg. LLF: 75.27872984397743
Optimization terminated successfully (Exit mode 0)
Current function value: 75.27872984331577
Iterations: 19
Function evaluations: 163
Gradient evaluations: 19
Iteration: 1, Func. Count: 10, Neg. LLF: 143.9994668943473
Iteration: 2, Func. Count: 23, Neg. LLF: 130005325.29918525
Iteration: 3, Func. Count: 33, Neg. LLF: 5217085.434683192
Iteration: 4, Func. Count: 43, Neg. LLF: 85.23755952622413
Iteration: 5, Func. Count: 53, Neg. LLF: 77.67394471230052
Iteration: 6, Func. Count: 63, Neg. LLF: 78.41884788809924
Iteration: 7, Func. Count: 73, Neg. LLF: 78.68974805270767
Iteration: 8, Func. Count: 83, Neg. LLF: 77.89047345638473
Iteration: 9, Func. Count: 93, Neg. LLF: 75.4935158916782
Iteration: 10, Func. Count: 102, Neg. LLF: 75.50404389360416
Iteration: 11, Func. Count: 112, Neg. LLF: 75.28214236393151
Iteration: 12, Func. Count: 121, Neg. LLF: 75.26010982017483
Iteration: 13, Func. Count: 130, Neg. LLF: 75.24953514986677
Iteration: 14, Func. Count: 139, Neg. LLF: 75.2440138616787
Iteration: 15, Func. Count: 148, Neg. LLF: 75.24380941230314
Iteration: 16, Func. Count: 157, Neg. LLF: 75.24365442363228
Iteration: 17, Func. Count: 166, Neg. LLF: 75.24365061298661
Iteration: 18, Func. Count: 174, Neg. LLF: 75.24365060124681
Optimization terminated successfully (Exit mode 0)
Current function value: 75.24365061298661
Iterations: 18
Function evaluations: 174
Gradient evaluations: 18
Iteration: 1, Func. Count: 7, Neg. LLF: 143.7467703953988
Iteration: 2, Func. Count: 16, Neg. LLF: 1106975944.3786118
Iteration: 3, Func. Count: 24, Neg. LLF: 10897391.80666572
Iteration: 4, Func. Count: 31, Neg. LLF: 5702759.22974895
Iteration: 5, Func. Count: 38, Neg. LLF: 3017869.455579015
Iteration: 6, Func. Count: 45, Neg. LLF: 4108200.1606552643
Iteration: 7, Func. Count: 52, Neg. LLF: 4520264.2945630625
Iteration: 8, Func. Count: 59, Neg. LLF: 985120.2602250351
Iteration: 9, Func. Count: 66, Neg. LLF: 83.49845399856952
Iteration: 10, Func. Count: 73, Neg. LLF: 111.0490085604946
Iteration: 11, Func. Count: 80, Neg. LLF: 80.4639178159109
Iteration: 12, Func. Count: 87, Neg. LLF: 76.59990812453445
Iteration: 13, Func. Count: 93, Neg. LLF: 76.34745635713755
Iteration: 14, Func. Count: 99, Neg. LLF: 76.27842318843355
Iteration: 15, Func. Count: 105, Neg. LLF: 76.25720089138636
Iteration: 16, Func. Count: 111, Neg. LLF: 76.25064701492963
Iteration: 17, Func. Count: 117, Neg. LLF: 76.24987415241246
Iteration: 18, Func. Count: 123, Neg. LLF: 76.24985236866537
Iteration: 19, Func. Count: 129, Neg. LLF: 76.24984391213006
Iteration: 20, Func. Count: 135, Neg. LLF: 76.24984110019686
Iteration: 21, Func. Count: 140, Neg. LLF: 76.2498411001892
Optimization terminated successfully (Exit mode 0)
Current function value: 76.24984110019686
Iterations: 21
Function evaluations: 140
Gradient evaluations: 21
Iteration: 1, Func. Count: 8, Neg. LLF: 185.5505774780089
Iteration: 2, Func. Count: 22, Neg. LLF: 14876377.669056874
Iteration: 3, Func. Count: 30, Neg. LLF: 180.13107395256762
Iteration: 4, Func. Count: 39, Neg. LLF: 76.24525225140165
Iteration: 5, Func. Count: 46, Neg. LLF: 79.50564846347999
Iteration: 6, Func. Count: 54, Neg. LLF: 80.02365347966334
Iteration: 7, Func. Count: 62, Neg. LLF: 75.74924711909836
Iteration: 8, Func. Count: 69, Neg. LLF: 75.60198922064015
Iteration: 9, Func. Count: 76, Neg. LLF: 75.47000416424324
Iteration: 10, Func. Count: 83, Neg. LLF: 75.41844789046267
Iteration: 11, Func. Count: 90, Neg. LLF: 75.4240472746697
Iteration: 12, Func. Count: 98, Neg. LLF: 75.39848638303627
Iteration: 13, Func. Count: 105, Neg. LLF: 75.39671983012603
Iteration: 14, Func. Count: 112, Neg. LLF: 75.39486707595688
Iteration: 15, Func. Count: 119, Neg. LLF: 75.3945718228695
Iteration: 16, Func. Count: 126, Neg. LLF: 75.39454159639934
Iteration: 17, Func. Count: 133, Neg. LLF: 75.39454037378279
Iteration: 18, Func. Count: 139, Neg. LLF: 75.39454037379501
Optimization terminated successfully (Exit mode 0)
Current function value: 75.39454037378279
Iterations: 18
Function evaluations: 139
Gradient evaluations: 18
Iteration: 1, Func. Count: 9, Neg. LLF: 3004002.524973394
Iteration: 2, Func. Count: 18, Neg. LLF: 141796898.58127964
Iteration: 3, Func. Count: 27, Neg. LLF: 5378414.026989732
Iteration: 4, Func. Count: 37, Neg. LLF: 77.0584482775273
Iteration: 5, Func. Count: 46, Neg. LLF: 79.82890178474932
Iteration: 6, Func. Count: 55, Neg. LLF: 79.56055542038948
Iteration: 7, Func. Count: 65, Neg. LLF: 75.34653780734011
Iteration: 8, Func. Count: 73, Neg. LLF: 75.3069689958688
Iteration: 9, Func. Count: 81, Neg. LLF: 75.35532889585726
Iteration: 10, Func. Count: 90, Neg. LLF: 75.28224202053919
Iteration: 11, Func. Count: 98, Neg. LLF: 75.27911269159634
Iteration: 12, Func. Count: 106, Neg. LLF: 75.27873345652425
Iteration: 13, Func. Count: 114, Neg. LLF: 75.27872991386175
Iteration: 14, Func. Count: 121, Neg. LLF: 75.2787299138804
Optimization terminated successfully (Exit mode 0)
Current function value: 75.27872991386175
Iterations: 14
Function evaluations: 121
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 166.60892636573337
Iteration: 2, Func. Count: 21, Neg. LLF: 127084410.52564563
Iteration: 3, Func. Count: 31, Neg. LLF: 2043592.691360747
Iteration: 4, Func. Count: 41, Neg. LLF: 101.738570690931
Iteration: 5, Func. Count: 52, Neg. LLF: 78.46720968824951
Iteration: 6, Func. Count: 62, Neg. LLF: 77.06013848376051
Iteration: 7, Func. Count: 72, Neg. LLF: 75.6715815478886
Iteration: 8, Func. Count: 82, Neg. LLF: 76.46562074577753
Iteration: 9, Func. Count: 93, Neg. LLF: 75.39967627661731
Iteration: 10, Func. Count: 102, Neg. LLF: 75.32931119313822
Iteration: 11, Func. Count: 111, Neg. LLF: 75.30253840712315
Iteration: 12, Func. Count: 120, Neg. LLF: 75.28870539237208
Iteration: 13, Func. Count: 129, Neg. LLF: 75.28405357579774
Iteration: 14, Func. Count: 138, Neg. LLF: 75.28145462389418
Iteration: 15, Func. Count: 147, Neg. LLF: 75.28062431393509
Iteration: 16, Func. Count: 156, Neg. LLF: 75.28001469495399
Iteration: 17, Func. Count: 165, Neg. LLF: 75.27905142192972
Iteration: 18, Func. Count: 174, Neg. LLF: 75.27878653255013
Iteration: 19, Func. Count: 183, Neg. LLF: 75.27874606713834
Iteration: 20, Func. Count: 192, Neg. LLF: 75.27873002435713
Iteration: 21, Func. Count: 200, Neg. LLF: 75.27873002506121
Optimization terminated successfully (Exit mode 0)
Current function value: 75.27873002435713
Iterations: 21
Function evaluations: 200
Gradient evaluations: 21
Iteration: 1, Func. Count: 11, Neg. LLF: 142.70523300861186
Iteration: 2, Func. Count: 25, Neg. LLF: 239896394.18331996
Iteration: 3, Func. Count: 36, Neg. LLF: 5449568.066411913
Iteration: 4, Func. Count: 47, Neg. LLF: 5127.885464175229
Iteration: 5, Func. Count: 58, Neg. LLF: 85.8243609247019
Iteration: 6, Func. Count: 69, Neg. LLF: 84.69112846538049
Iteration: 7, Func. Count: 80, Neg. LLF: 80.05128666898031
Iteration: 8, Func. Count: 91, Neg. LLF: 79.0239398817945
Iteration: 9, Func. Count: 102, Neg. LLF: 76.53246632039433
Iteration: 10, Func. Count: 113, Neg. LLF: 76.04075051684381
Iteration: 11, Func. Count: 124, Neg. LLF: 75.48264881073887
Iteration: 12, Func. Count: 134, Neg. LLF: 75.52946370435455
Iteration: 13, Func. Count: 145, Neg. LLF: 75.37155626248673
Iteration: 14, Func. Count: 156, Neg. LLF: 75.28423388537868
Iteration: 15, Func. Count: 167, Neg. LLF: 75.24187479714847
Iteration: 16, Func. Count: 177, Neg. LLF: 75.23915647474179
Iteration: 17, Func. Count: 187, Neg. LLF: 75.23740979051344
Iteration: 18, Func. Count: 197, Neg. LLF: 75.23614849352244
Iteration: 19, Func. Count: 207, Neg. LLF: 75.23144729707685
Iteration: 20, Func. Count: 217, Neg. LLF: 75.22512806944636
Iteration: 21, Func. Count: 227, Neg. LLF: 75.2210658929
Iteration: 22, Func. Count: 237, Neg. LLF: 75.21816857837939
Iteration: 23, Func. Count: 247, Neg. LLF: 75.21604212747008
Iteration: 24, Func. Count: 257, Neg. LLF: 75.21600729296713
Iteration: 25, Func. Count: 267, Neg. LLF: 75.21600618350361
Iteration: 26, Func. Count: 276, Neg. LLF: 75.21600616942366
Optimization terminated successfully (Exit mode 0)
Current function value: 75.21600618350361
Iterations: 26
Function evaluations: 276
Gradient evaluations: 26
Iteration: 1, Func. Count: 8, Neg. LLF: 152.37841054938895
Iteration: 2, Func. Count: 18, Neg. LLF: 1161155303.8647459
Iteration: 3, Func. Count: 27, Neg. LLF: 32381988.678350683
Iteration: 4, Func. Count: 35, Neg. LLF: 5676717.13694194
Iteration: 5, Func. Count: 43, Neg. LLF: 244822.0148867231
Iteration: 6, Func. Count: 51, Neg. LLF: 1428334.2035316497
Iteration: 7, Func. Count: 59, Neg. LLF: 158279.1776398866
Iteration: 8, Func. Count: 67, Neg. LLF: 1391584.7744864882
Iteration: 9, Func. Count: 75, Neg. LLF: 430.9725094134918
Iteration: 10, Func. Count: 83, Neg. LLF: 168350.2608529921
Iteration: 11, Func. Count: 91, Neg. LLF: 93.44125280942964
Iteration: 12, Func. Count: 99, Neg. LLF: 155080.57287831398
Iteration: 13, Func. Count: 107, Neg. LLF: 77.00422300775907
Iteration: 14, Func. Count: 115, Neg. LLF: 75.44407806199284
Iteration: 15, Func. Count: 122, Neg. LLF: 75.40306361011532
Iteration: 16, Func. Count: 129, Neg. LLF: 75.35163161695819
Iteration: 17, Func. Count: 136, Neg. LLF: 75.34609714574191
Iteration: 18, Func. Count: 143, Neg. LLF: 75.3445306364794
Iteration: 19, Func. Count: 150, Neg. LLF: 75.34413223796513
Iteration: 20, Func. Count: 157, Neg. LLF: 75.34385890894421
Iteration: 21, Func. Count: 164, Neg. LLF: 75.34383672700982
Iteration: 22, Func. Count: 170, Neg. LLF: 75.34383672700797
Optimization terminated successfully (Exit mode 0)
Current function value: 75.34383672700982
Iterations: 22
Function evaluations: 170
Gradient evaluations: 22
Iteration: 1, Func. Count: 9, Neg. LLF: 194.88521533858346
Iteration: 2, Func. Count: 24, Neg. LLF: 24795645.68283687
Iteration: 3, Func. Count: 33, Neg. LLF: 5086268.7336000325
Iteration: 4, Func. Count: 43, Neg. LLF: 76.31572148593705
Iteration: 5, Func. Count: 51, Neg. LLF: 78.61861750655672
Iteration: 6, Func. Count: 60, Neg. LLF: 80.21796613848508
Iteration: 7, Func. Count: 69, Neg. LLF: 77.59764057625625
Iteration: 8, Func. Count: 78, Neg. LLF: 75.64950291125632
Iteration: 9, Func. Count: 86, Neg. LLF: 75.52081643608751
Iteration: 10, Func. Count: 94, Neg. LLF: 75.4556599602821
Iteration: 11, Func. Count: 102, Neg. LLF: 75.39137200496786
Iteration: 12, Func. Count: 110, Neg. LLF: 75.40816689349158
Iteration: 13, Func. Count: 119, Neg. LLF: 75.34265532131714
Iteration: 14, Func. Count: 127, Neg. LLF: 75.3325251863572
Iteration: 15, Func. Count: 135, Neg. LLF: 75.32137706009179
Iteration: 16, Func. Count: 143, Neg. LLF: 75.31165676391389
Iteration: 17, Func. Count: 151, Neg. LLF: 75.30734406781599
Iteration: 18, Func. Count: 159, Neg. LLF: 75.30648549951759
Iteration: 19, Func. Count: 167, Neg. LLF: 75.30638243712218
Iteration: 20, Func. Count: 175, Neg. LLF: 75.30636075809062
Iteration: 21, Func. Count: 183, Neg. LLF: 75.30635998110684
Optimization terminated successfully (Exit mode 0)
Current function value: 75.30635998110684
Iterations: 21
Function evaluations: 183
Gradient evaluations: 21
Iteration: 1, Func. Count: 10, Neg. LLF: 4243266.65087451
Iteration: 2, Func. Count: 20, Neg. LLF: 135275138.87077042
Iteration: 3, Func. Count: 30, Neg. LLF: 94.91168953204125
Iteration: 4, Func. Count: 40, Neg. LLF: 90.1444932630453
Iteration: 5, Func. Count: 50, Neg. LLF: 75.65759827432808
Iteration: 6, Func. Count: 59, Neg. LLF: 78.8526272345938
Iteration: 7, Func. Count: 69, Neg. LLF: 76.32704007321891
Iteration: 8, Func. Count: 79, Neg. LLF: 76.54066649179644
Iteration: 9, Func. Count: 89, Neg. LLF: 76.04638896622467
Iteration: 10, Func. Count: 99, Neg. LLF: 76.32684831319173
Iteration: 11, Func. Count: 109, Neg. LLF: 75.29339297784797
Iteration: 12, Func. Count: 118, Neg. LLF: 75.28687655170245
Iteration: 13, Func. Count: 127, Neg. LLF: 75.27991560980558
Iteration: 14, Func. Count: 136, Neg. LLF: 75.27911598277049
Iteration: 15, Func. Count: 145, Neg. LLF: 75.27876579335818
Iteration: 16, Func. Count: 154, Neg. LLF: 75.27873185000006
Iteration: 17, Func. Count: 163, Neg. LLF: 75.27872977964589
Iteration: 18, Func. Count: 171, Neg. LLF: 75.27872977965684
Optimization terminated successfully (Exit mode 0)
Current function value: 75.27872977964589
Iterations: 18
Function evaluations: 171
Gradient evaluations: 18
Iteration: 1, Func. Count: 11, Neg. LLF: 144.40834641912747
Iteration: 2, Func. Count: 24, Neg. LLF: 211845387.24544635
Iteration: 3, Func. Count: 35, Neg. LLF: 5542332.36586253
Iteration: 4, Func. Count: 46, Neg. LLF: 705.483457793835
Iteration: 5, Func. Count: 57, Neg. LLF: 91.99624239434196
Iteration: 6, Func. Count: 68, Neg. LLF: 77.67545320872651
Iteration: 7, Func. Count: 79, Neg. LLF: 83.16312688754364
Iteration: 8, Func. Count: 90, Neg. LLF: 78.96869247426974
Iteration: 9, Func. Count: 101, Neg. LLF: 76.82823380426623
Iteration: 10, Func. Count: 112, Neg. LLF: 76.0392857575326
Iteration: 11, Func. Count: 123, Neg. LLF: 75.54537597730156
Iteration: 12, Func. Count: 133, Neg. LLF: 75.44974714325113
Iteration: 13, Func. Count: 143, Neg. LLF: 75.37423659775246
Iteration: 14, Func. Count: 153, Neg. LLF: 75.33672698490523
Iteration: 15, Func. Count: 163, Neg. LLF: 75.31579761733128
Iteration: 16, Func. Count: 173, Neg. LLF: 75.30993983842988
Iteration: 17, Func. Count: 183, Neg. LLF: 75.30762257052946
Iteration: 18, Func. Count: 193, Neg. LLF: 75.30706571119339
Iteration: 19, Func. Count: 203, Neg. LLF: 75.3070163037509
Iteration: 20, Func. Count: 213, Neg. LLF: 75.30700285274519
Iteration: 21, Func. Count: 222, Neg. LLF: 75.30700285269725
Optimization terminated successfully (Exit mode 0)
Current function value: 75.30700285274519
Iterations: 21
Function evaluations: 222
Gradient evaluations: 21
Iteration: 1, Func. Count: 12, Neg. LLF: 151.51148564690973
Iteration: 2, Func. Count: 27, Neg. LLF: 306671753.1075575
Iteration: 3, Func. Count: 39, Neg. LLF: 5460315.39363822
Iteration: 4, Func. Count: 51, Neg. LLF: 18431463.02102429
Iteration: 5, Func. Count: 63, Neg. LLF: 103.53228663002285
Iteration: 6, Func. Count: 75, Neg. LLF: 99.0463248506838
Iteration: 7, Func. Count: 87, Neg. LLF: 77.63049647848449
Iteration: 8, Func. Count: 99, Neg. LLF: 95.73209047249638
Iteration: 9, Func. Count: 111, Neg. LLF: 76.48544734085259
Iteration: 10, Func. Count: 123, Neg. LLF: 80.6353682491475
Iteration: 11, Func. Count: 135, Neg. LLF: 76.06167496678209
Iteration: 12, Func. Count: 147, Neg. LLF: 75.75269963573919
Iteration: 13, Func. Count: 159, Neg. LLF: 75.49959210399692
Iteration: 14, Func. Count: 170, Neg. LLF: 75.41328834697269
Iteration: 15, Func. Count: 181, Neg. LLF: 75.30325018292885
Iteration: 16, Func. Count: 192, Neg. LLF: 75.24580299603443
Iteration: 17, Func. Count: 203, Neg. LLF: 75.23042641485026
Iteration: 18, Func. Count: 214, Neg. LLF: 75.2284069902536
Iteration: 19, Func. Count: 225, Neg. LLF: 75.22283241064336
Iteration: 20, Func. Count: 236, Neg. LLF: 75.2193940855166
Iteration: 21, Func. Count: 247, Neg. LLF: 75.2176210686071
Iteration: 22, Func. Count: 258, Neg. LLF: 75.21603358135518
Iteration: 23, Func. Count: 269, Neg. LLF: 75.21600896934049
Iteration: 24, Func. Count: 280, Neg. LLF: 75.21600628082751
Iteration: 25, Func. Count: 290, Neg. LLF: 75.21600626686026
Optimization terminated successfully (Exit mode 0)
Current function value: 75.21600628082751
Iterations: 25
Function evaluations: 290
Gradient evaluations: 25
Iteration: 1, Func. Count: 5, Neg. LLF: 140.6998590470658
Iteration: 2, Func. Count: 12, Neg. LLF: 156.23139468380793
Iteration: 3, Func. Count: 18, Neg. LLF: 86.94907292663717
Iteration: 4, Func. Count: 23, Neg. LLF: 97.83513312182919
Iteration: 5, Func. Count: 28, Neg. LLF: 86.16463587224943
Iteration: 6, Func. Count: 32, Neg. LLF: 86.0134110620374
Iteration: 7, Func. Count: 36, Neg. LLF: 85.99912184724094
Iteration: 8, Func. Count: 40, Neg. LLF: 85.9986784254299
Iteration: 9, Func. Count: 45, Neg. LLF: 85.99737698191022
Iteration: 10, Func. Count: 48, Neg. LLF: 85.99737698189466
Optimization terminated successfully (Exit mode 0)
Current function value: 85.99737698191022
Iterations: 10
Function evaluations: 48
Gradient evaluations: 10
Iteration: 1, Func. Count: 6, Neg. LLF: 166.7906766918482
Iteration: 2, Func. Count: 17, Neg. LLF: 267.21853365165816
Iteration: 3, Func. Count: 24, Neg. LLF: 124.38023939831754
Iteration: 4, Func. Count: 31, Neg. LLF: 77.68705261715503
Iteration: 5, Func. Count: 36, Neg. LLF: 79.02407886602795
Iteration: 6, Func. Count: 42, Neg. LLF: 77.68076725657568
Iteration: 7, Func. Count: 47, Neg. LLF: 77.68075712125844
Iteration: 8, Func. Count: 51, Neg. LLF: 77.68075709106715
Optimization terminated successfully (Exit mode 0)
Current function value: 77.68075712125844
Iterations: 8
Function evaluations: 51
Gradient evaluations: 8
Iteration: 1, Func. Count: 7, Neg. LLF: 165.86931035333401
Iteration: 2, Func. Count: 15, Neg. LLF: 912.0345426123547
Iteration: 3, Func. Count: 22, Neg. LLF: 82.18902981878723
Iteration: 4, Func. Count: 29, Neg. LLF: 77.77452078026806
Iteration: 5, Func. Count: 35, Neg. LLF: 89.41861335344133
Iteration: 6, Func. Count: 42, Neg. LLF: 78.37736179365123
Iteration: 7, Func. Count: 49, Neg. LLF: 78.45831392997854
Iteration: 8, Func. Count: 57, Neg. LLF: 77.49781860928854
Iteration: 9, Func. Count: 63, Neg. LLF: 77.47994898469467
Iteration: 10, Func. Count: 69, Neg. LLF: 77.47180246915063
Iteration: 11, Func. Count: 75, Neg. LLF: 77.47122799838922
Iteration: 12, Func. Count: 81, Neg. LLF: 77.47118982293225
Iteration: 13, Func. Count: 86, Neg. LLF: 77.47118982290073
Optimization terminated successfully (Exit mode 0)
Current function value: 77.47118982293225
Iterations: 13
Function evaluations: 86
Gradient evaluations: 13
Iteration: 1, Func. Count: 8, Neg. LLF: 165.68023163213834
Iteration: 2, Func. Count: 17, Neg. LLF: 98.92739804001661
Iteration: 3, Func. Count: 25, Neg. LLF: 84.52147333808686
Iteration: 4, Func. Count: 33, Neg. LLF: 83.92314408824885
Iteration: 5, Func. Count: 41, Neg. LLF: 77.75349775083507
Iteration: 6, Func. Count: 48, Neg. LLF: 77.64297350779107
Iteration: 7, Func. Count: 56, Neg. LLF: 77.51475937470468
Iteration: 8, Func. Count: 64, Neg. LLF: 77.49030964892306
Iteration: 9, Func. Count: 72, Neg. LLF: 77.47148267650765
Iteration: 10, Func. Count: 79, Neg. LLF: 77.47119206842167
Iteration: 11, Func. Count: 86, Neg. LLF: 77.47118944205384
Iteration: 12, Func. Count: 92, Neg. LLF: 77.47118945581556
Optimization terminated successfully (Exit mode 0)
Current function value: 77.47118944205384
Iterations: 12
Function evaluations: 92
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 142.35601577290112
Iteration: 2, Func. Count: 20, Neg. LLF: 3490.035483472179
Iteration: 3, Func. Count: 29, Neg. LLF: 82.79535265040187
Iteration: 4, Func. Count: 38, Neg. LLF: 80.46727168201154
Iteration: 5, Func. Count: 47, Neg. LLF: 78.33437250000837
Iteration: 6, Func. Count: 56, Neg. LLF: 81.530017834417
Iteration: 7, Func. Count: 65, Neg. LLF: 77.4889862783473
Iteration: 8, Func. Count: 73, Neg. LLF: 77.47291569397049
Iteration: 9, Func. Count: 81, Neg. LLF: 77.47135129384505
Iteration: 10, Func. Count: 89, Neg. LLF: 77.47120252498482
Iteration: 11, Func. Count: 97, Neg. LLF: 77.47118971280565
Iteration: 12, Func. Count: 104, Neg. LLF: 77.47118979736484
Optimization terminated successfully (Exit mode 0)
Current function value: 77.47118971280565
Iterations: 12
Function evaluations: 104
Gradient evaluations: 12
Iteration: 1, Func. Count: 6, Neg. LLF: 128.0397253412142
Iteration: 2, Func. Count: 14, Neg. LLF: 140.47614062322032
Iteration: 3, Func. Count: 21, Neg. LLF: 86.8850380563981
Iteration: 4, Func. Count: 26, Neg. LLF: 89.92389416827503
Iteration: 5, Func. Count: 32, Neg. LLF: 91.4365431082628
Iteration: 6, Func. Count: 40, Neg. LLF: 86.00044343525941
Iteration: 7, Func. Count: 46, Neg. LLF: 85.8617854718479
Iteration: 8, Func. Count: 51, Neg. LLF: 85.85272272668942
Iteration: 9, Func. Count: 56, Neg. LLF: 85.85116192151722
Iteration: 10, Func. Count: 61, Neg. LLF: 85.85007282051407
Iteration: 11, Func. Count: 66, Neg. LLF: 85.85005321876065
Iteration: 12, Func. Count: 71, Neg. LLF: 85.85005242536069
Optimization terminated successfully (Exit mode 0)
Current function value: 85.85005242536069
Iterations: 12
Function evaluations: 71
Gradient evaluations: 12
Iteration: 1, Func. Count: 7, Neg. LLF: 148.03162334586244
Iteration: 2, Func. Count: 19, Neg. LLF: 168.94979196165923
Iteration: 3, Func. Count: 26, Neg. LLF: 153.82098075653138
Iteration: 4, Func. Count: 34, Neg. LLF: 77.53340167979506
Iteration: 5, Func. Count: 40, Neg. LLF: 77.49896226454392
Iteration: 6, Func. Count: 46, Neg. LLF: 77.48515109285
Iteration: 7, Func. Count: 52, Neg. LLF: 77.48303291666137
Iteration: 8, Func. Count: 58, Neg. LLF: 77.4829031031151
Iteration: 9, Func. Count: 64, Neg. LLF: 77.48290256775704
Optimization terminated successfully (Exit mode 0)
Current function value: 77.48290256775704
Iterations: 9
Function evaluations: 64
Gradient evaluations: 9
Iteration: 1, Func. Count: 8, Neg. LLF: 147.7153223206232
Iteration: 2, Func. Count: 16, Neg. LLF: 153.57948424949993
Iteration: 3, Func. Count: 24, Neg. LLF: 82.68386789697263
Iteration: 4, Func. Count: 32, Neg. LLF: 92.2631102426608
Iteration: 5, Func. Count: 40, Neg. LLF: 88.92574779197268
Iteration: 6, Func. Count: 48, Neg. LLF: 81.04954366227324
Iteration: 7, Func. Count: 56, Neg. LLF: 77.37543771043624
Iteration: 8, Func. Count: 63, Neg. LLF: 77.5303901287251
Iteration: 9, Func. Count: 71, Neg. LLF: 78.09098590316667
Iteration: 10, Func. Count: 79, Neg. LLF: 77.21463143695443
Iteration: 11, Func. Count: 86, Neg. LLF: 77.21933412721464
Iteration: 12, Func. Count: 94, Neg. LLF: 77.21374813305492
Iteration: 13, Func. Count: 101, Neg. LLF: 77.21346589933546
Iteration: 14, Func. Count: 108, Neg. LLF: 77.21346162263713
Iteration: 15, Func. Count: 114, Neg. LLF: 77.21346162264994
Optimization terminated successfully (Exit mode 0)
Current function value: 77.21346162263713
Iterations: 15
Function evaluations: 114
Gradient evaluations: 15
Iteration: 1, Func. Count: 9, Neg. LLF: 116.1939142665302
Iteration: 2, Func. Count: 19, Neg. LLF: 106.89830101612586
Iteration: 3, Func. Count: 28, Neg. LLF: 92.80605924686994
Iteration: 4, Func. Count: 37, Neg. LLF: 227.11601611981584
Iteration: 5, Func. Count: 46, Neg. LLF: 77.5255637743363
Iteration: 6, Func. Count: 54, Neg. LLF: 83.33416631353231
Iteration: 7, Func. Count: 63, Neg. LLF: 82.6310935368403
Iteration: 8, Func. Count: 73, Neg. LLF: 77.2466395583619
Iteration: 9, Func. Count: 81, Neg. LLF: 77.22577520213774
Iteration: 10, Func. Count: 89, Neg. LLF: 77.21500507843774
Iteration: 11, Func. Count: 97, Neg. LLF: 77.21374767824669
Iteration: 12, Func. Count: 105, Neg. LLF: 77.2134647877402
Iteration: 13, Func. Count: 113, Neg. LLF: 77.21346149095841
Iteration: 14, Func. Count: 120, Neg. LLF: 77.21346150061072
Optimization terminated successfully (Exit mode 0)
Current function value: 77.21346149095841
Iterations: 14
Function evaluations: 120
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 163.75571664114324
Iteration: 2, Func. Count: 22, Neg. LLF: 86.77127907417636
Iteration: 3, Func. Count: 32, Neg. LLF: 112.51160644691033
Iteration: 4, Func. Count: 42, Neg. LLF: 236.66387696115132
Iteration: 5, Func. Count: 52, Neg. LLF: 85.86530383702912
Iteration: 6, Func. Count: 62, Neg. LLF: 80.50377402028064
Iteration: 7, Func. Count: 72, Neg. LLF: 77.95287062611779
Iteration: 8, Func. Count: 82, Neg. LLF: 83.1972557921093
Iteration: 9, Func. Count: 92, Neg. LLF: 78.1435133206729
Iteration: 10, Func. Count: 102, Neg. LLF: 77.22680578529445
Iteration: 11, Func. Count: 111, Neg. LLF: 77.22411800793056
Iteration: 12, Func. Count: 121, Neg. LLF: 77.21500163427557
Iteration: 13, Func. Count: 130, Neg. LLF: 77.21348099678062
Iteration: 14, Func. Count: 139, Neg. LLF: 77.2134616973643
Iteration: 15, Func. Count: 147, Neg. LLF: 77.21346179441794
Optimization terminated successfully (Exit mode 0)
Current function value: 77.2134616973643
Iterations: 15
Function evaluations: 147
Gradient evaluations: 15
Iteration: 1, Func. Count: 7, Neg. LLF: 166.9212310355494
Iteration: 2, Func. Count: 16, Neg. LLF: 2604.8813460361484
Iteration: 3, Func. Count: 23, Neg. LLF: 6723811.660493876
Iteration: 4, Func. Count: 30, Neg. LLF: 6858509.488550009
Iteration: 5, Func. Count: 37, Neg. LLF: 762.0540481669681
Iteration: 6, Func. Count: 44, Neg. LLF: 6401541.439815055
Iteration: 7, Func. Count: 51, Neg. LLF: 78.94433111407956
Iteration: 8, Func. Count: 58, Neg. LLF: 93.35201878387683
Iteration: 9, Func. Count: 65, Neg. LLF: 79.82689009415105
Iteration: 10, Func. Count: 72, Neg. LLF: 75.07902086429038
Iteration: 11, Func. Count: 78, Neg. LLF: 74.9956260284369
Iteration: 12, Func. Count: 84, Neg. LLF: 74.96164331504163
Iteration: 13, Func. Count: 90, Neg. LLF: 74.95558973101681
Iteration: 14, Func. Count: 96, Neg. LLF: 74.95174640772319
Iteration: 15, Func. Count: 102, Neg. LLF: 74.95155347419981
Iteration: 16, Func. Count: 108, Neg. LLF: 74.95152337293146
Iteration: 17, Func. Count: 114, Neg. LLF: 74.95152248126273
Optimization terminated successfully (Exit mode 0)
Current function value: 74.95152248126273
Iterations: 17
Function evaluations: 114
Gradient evaluations: 17
Iteration: 1, Func. Count: 8, Neg. LLF: 152.61329392709465
Iteration: 2, Func. Count: 21, Neg. LLF: 6376420.159668169
Iteration: 3, Func. Count: 29, Neg. LLF: 274.77201447951217
Iteration: 4, Func. Count: 37, Neg. LLF: 78.29765701939601
Iteration: 5, Func. Count: 45, Neg. LLF: 78.75268874189877
Iteration: 6, Func. Count: 53, Neg. LLF: 75.45282451418274
Iteration: 7, Func. Count: 60, Neg. LLF: 75.69324363881493
Iteration: 8, Func. Count: 68, Neg. LLF: 80.25879652046775
Iteration: 9, Func. Count: 76, Neg. LLF: 75.26977071902401
Iteration: 10, Func. Count: 83, Neg. LLF: 75.20930925782318
Iteration: 11, Func. Count: 90, Neg. LLF: 75.17957059375081
Iteration: 12, Func. Count: 97, Neg. LLF: 75.1419999572793
Iteration: 13, Func. Count: 104, Neg. LLF: 75.1258628966915
Iteration: 14, Func. Count: 111, Neg. LLF: 75.10533041373161
Iteration: 15, Func. Count: 118, Neg. LLF: 74.99422548805191
Iteration: 16, Func. Count: 125, Neg. LLF: 74.97172226989554
Iteration: 17, Func. Count: 132, Neg. LLF: 74.96413352458508
Iteration: 18, Func. Count: 139, Neg. LLF: 74.95556727969293
Iteration: 19, Func. Count: 146, Neg. LLF: 74.95285483290951
Iteration: 20, Func. Count: 153, Neg. LLF: 74.95203919474825
Iteration: 21, Func. Count: 160, Neg. LLF: 74.95172666835916
Iteration: 22, Func. Count: 167, Neg. LLF: 74.95157110964364
Iteration: 23, Func. Count: 174, Neg. LLF: 74.95153901290212
Iteration: 24, Func. Count: 181, Neg. LLF: 74.9515305381967
Iteration: 25, Func. Count: 188, Neg. LLF: 74.95152530280022
Iteration: 26, Func. Count: 195, Neg. LLF: 74.95152289252685
Iteration: 27, Func. Count: 201, Neg. LLF: 74.95152295505353
Optimization terminated successfully (Exit mode 0)
Current function value: 74.95152289252685
Iterations: 27
Function evaluations: 201
Gradient evaluations: 27
Iteration: 1, Func. Count: 9, Neg. LLF: 6689505.984889018
Iteration: 2, Func. Count: 18, Neg. LLF: 21090115.02811406
Iteration: 3, Func. Count: 27, Neg. LLF: 88.9993556493507
Iteration: 4, Func. Count: 37, Neg. LLF: 80.54868882113408
Iteration: 5, Func. Count: 46, Neg. LLF: 106.8216389441932
Iteration: 6, Func. Count: 55, Neg. LLF: 76.24870355773146
Iteration: 7, Func. Count: 64, Neg. LLF: 75.01150396393905
Iteration: 8, Func. Count: 73, Neg. LLF: 75.20800820008051
Iteration: 9, Func. Count: 82, Neg. LLF: 74.88176232026551
Iteration: 10, Func. Count: 90, Neg. LLF: 74.89699287701879
Iteration: 11, Func. Count: 99, Neg. LLF: 74.86889439862053
Iteration: 12, Func. Count: 107, Neg. LLF: 74.8681498102204
Iteration: 13, Func. Count: 115, Neg. LLF: 74.8681398680671
Iteration: 14, Func. Count: 123, Neg. LLF: 74.86813782966188
Iteration: 15, Func. Count: 130, Neg. LLF: 74.86813782130173
Optimization terminated successfully (Exit mode 0)
Current function value: 74.86813782966188
Iterations: 15
Function evaluations: 130
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 4253060.588052592
Iteration: 2, Func. Count: 21, Neg. LLF: 22514966.773443427
Iteration: 3, Func. Count: 31, Neg. LLF: 84.58462951030351
Iteration: 4, Func. Count: 42, Neg. LLF: 84.48885829503352
Iteration: 5, Func. Count: 52, Neg. LLF: 76.26581850521603
Iteration: 6, Func. Count: 62, Neg. LLF: 76.48718697952006
Iteration: 7, Func. Count: 72, Neg. LLF: 78.02218814273517
Iteration: 8, Func. Count: 82, Neg. LLF: 75.96743713005493
Iteration: 9, Func. Count: 92, Neg. LLF: 75.55643579195235
Iteration: 10, Func. Count: 102, Neg. LLF: 75.1072242895231
Iteration: 11, Func. Count: 112, Neg. LLF: 74.8765839717915
Iteration: 12, Func. Count: 121, Neg. LLF: 74.87203597078882
Iteration: 13, Func. Count: 130, Neg. LLF: 74.86974295108925
Iteration: 14, Func. Count: 139, Neg. LLF: 74.86870606692018
Iteration: 15, Func. Count: 148, Neg. LLF: 74.8682273811641
Iteration: 16, Func. Count: 157, Neg. LLF: 74.86813837539118
Iteration: 17, Func. Count: 166, Neg. LLF: 74.86813782283149
Optimization terminated successfully (Exit mode 0)
Current function value: 74.86813782283149
Iterations: 17
Function evaluations: 166
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 156.02198050384777
Iteration: 2, Func. Count: 23, Neg. LLF: 24121121.86017873
Iteration: 3, Func. Count: 34, Neg. LLF: 6470484.774875429
Iteration: 4, Func. Count: 45, Neg. LLF: 156.80260382734275
Iteration: 5, Func. Count: 56, Neg. LLF: 79.11590519975995
Iteration: 6, Func. Count: 67, Neg. LLF: 77.86053490883063
Iteration: 7, Func. Count: 78, Neg. LLF: 77.47112840134265
Iteration: 8, Func. Count: 89, Neg. LLF: 76.0177175135015
Iteration: 9, Func. Count: 100, Neg. LLF: 74.89970333656315
Iteration: 10, Func. Count: 110, Neg. LLF: 75.01797016706048
Iteration: 11, Func. Count: 121, Neg. LLF: 74.93037863708919
Iteration: 12, Func. Count: 132, Neg. LLF: 74.84381142073693
Iteration: 13, Func. Count: 142, Neg. LLF: 74.84365592829575
Iteration: 14, Func. Count: 152, Neg. LLF: 74.84344114730503
Iteration: 15, Func. Count: 162, Neg. LLF: 74.84342075469826
Iteration: 16, Func. Count: 172, Neg. LLF: 74.84341590779053
Iteration: 17, Func. Count: 181, Neg. LLF: 74.84341589396428
Optimization terminated successfully (Exit mode 0)
Current function value: 74.84341590779053
Iterations: 17
Function evaluations: 181
Gradient evaluations: 17
Iteration: 1, Func. Count: 8, Neg. LLF: 150.74751293678918
Iteration: 2, Func. Count: 17, Neg. LLF: 4350.62417851947
Iteration: 3, Func. Count: 25, Neg. LLF: 5288589.945428158
Iteration: 4, Func. Count: 33, Neg. LLF: 2853488.4543075217
Iteration: 5, Func. Count: 41, Neg. LLF: 6620032.667264733
Iteration: 6, Func. Count: 49, Neg. LLF: 2067705.02747918
Iteration: 7, Func. Count: 57, Neg. LLF: 100.5065599237338
Iteration: 8, Func. Count: 65, Neg. LLF: 76.96363547195531
Iteration: 9, Func. Count: 73, Neg. LLF: 192.68700004949312
Iteration: 10, Func. Count: 81, Neg. LLF: 75.69765615758543
Iteration: 11, Func. Count: 89, Neg. LLF: 75.08907424018346
Iteration: 12, Func. Count: 96, Neg. LLF: 75.02759854003361
Iteration: 13, Func. Count: 103, Neg. LLF: 75.01778210610793
Iteration: 14, Func. Count: 110, Neg. LLF: 75.00417580982534
Iteration: 15, Func. Count: 117, Neg. LLF: 74.95299522146601
Iteration: 16, Func. Count: 124, Neg. LLF: 74.95177734138886
Iteration: 17, Func. Count: 131, Neg. LLF: 74.95156033880427
Iteration: 18, Func. Count: 138, Neg. LLF: 74.95152420115453
Iteration: 19, Func. Count: 145, Neg. LLF: 74.95152252304182
Iteration: 20, Func. Count: 151, Neg. LLF: 74.95152255714754
Optimization terminated successfully (Exit mode 0)
Current function value: 74.95152252304182
Iterations: 20
Function evaluations: 151
Gradient evaluations: 20
Iteration: 1, Func. Count: 9, Neg. LLF: 3002087.1838380108
Iteration: 2, Func. Count: 19, Neg. LLF: 20347687.208187103
Iteration: 3, Func. Count: 28, Neg. LLF: 85.53487242506365
Iteration: 4, Func. Count: 38, Neg. LLF: 80.53738540716353
Iteration: 5, Func. Count: 47, Neg. LLF: 79.33302306825134
Iteration: 6, Func. Count: 56, Neg. LLF: 80.36639356043966
Iteration: 7, Func. Count: 65, Neg. LLF: 77.14423808676803
Iteration: 8, Func. Count: 74, Neg. LLF: 77.07789615464273
Iteration: 9, Func. Count: 83, Neg. LLF: 75.64426420266963
Iteration: 10, Func. Count: 92, Neg. LLF: 75.04357437427859
Iteration: 11, Func. Count: 100, Neg. LLF: 75.11587724781397
Iteration: 12, Func. Count: 109, Neg. LLF: 75.09211729035589
Iteration: 13, Func. Count: 118, Neg. LLF: 74.97854232027515
Iteration: 14, Func. Count: 126, Neg. LLF: 74.95479666892759
Iteration: 15, Func. Count: 134, Neg. LLF: 74.95263844486509
Iteration: 16, Func. Count: 142, Neg. LLF: 74.9521960694468
Iteration: 17, Func. Count: 150, Neg. LLF: 74.95184993941962
Iteration: 18, Func. Count: 158, Neg. LLF: 74.95160744269576
Iteration: 19, Func. Count: 166, Neg. LLF: 74.95153101616116
Iteration: 20, Func. Count: 174, Neg. LLF: 74.95152275807627
Iteration: 21, Func. Count: 181, Neg. LLF: 74.9515228206045
Optimization terminated successfully (Exit mode 0)
Current function value: 74.95152275807627
Iterations: 21
Function evaluations: 181
Gradient evaluations: 21
Iteration: 1, Func. Count: 10, Neg. LLF: 8029758.8408618
Iteration: 2, Func. Count: 20, Neg. LLF: 25098119.81302377
Iteration: 3, Func. Count: 30, Neg. LLF: 90.55209059855864
Iteration: 4, Func. Count: 41, Neg. LLF: 77.67621105024007
Iteration: 5, Func. Count: 51, Neg. LLF: 120.56192794337498
Iteration: 6, Func. Count: 61, Neg. LLF: 75.2941679801098
Iteration: 7, Func. Count: 71, Neg. LLF: 75.90609769057184
Iteration: 8, Func. Count: 81, Neg. LLF: 74.70713286362786
Iteration: 9, Func. Count: 90, Neg. LLF: 74.6721112955782
Iteration: 10, Func. Count: 99, Neg. LLF: 74.6425167049052
Iteration: 11, Func. Count: 108, Neg. LLF: 74.61640410280827
Iteration: 12, Func. Count: 117, Neg. LLF: 74.61401505297576
Iteration: 13, Func. Count: 126, Neg. LLF: 74.61382267865183
Iteration: 14, Func. Count: 135, Neg. LLF: 74.61381790237007
Iteration: 15, Func. Count: 143, Neg. LLF: 74.61381788981495
Optimization terminated successfully (Exit mode 0)
Current function value: 74.61381790237007
Iterations: 15
Function evaluations: 143
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 2765875.558676345
Iteration: 2, Func. Count: 22, Neg. LLF: 29237484.05778153
Iteration: 3, Func. Count: 33, Neg. LLF: 97.42698452241545
Iteration: 4, Func. Count: 46, Neg. LLF: 76.90172784639213
Iteration: 5, Func. Count: 57, Neg. LLF: 94.26144336242497
Iteration: 6, Func. Count: 68, Neg. LLF: 76.37690288367094
Iteration: 7, Func. Count: 79, Neg. LLF: 74.71921247531688
Iteration: 8, Func. Count: 89, Neg. LLF: 74.71425915673373
Iteration: 9, Func. Count: 100, Neg. LLF: 74.62315577074868
Iteration: 10, Func. Count: 110, Neg. LLF: 74.61569677390071
Iteration: 11, Func. Count: 120, Neg. LLF: 74.61420856707737
Iteration: 12, Func. Count: 130, Neg. LLF: 74.61383987922525
Iteration: 13, Func. Count: 140, Neg. LLF: 74.6138201127301
Iteration: 14, Func. Count: 150, Neg. LLF: 74.61381774882443
Iteration: 15, Func. Count: 159, Neg. LLF: 74.6138177657873
Optimization terminated successfully (Exit mode 0)
Current function value: 74.61381774882443
Iterations: 15
Function evaluations: 159
Gradient evaluations: 15
Iteration: 1, Func. Count: 12, Neg. LLF: 146.4768622707607
Iteration: 2, Func. Count: 25, Neg. LLF: 30849149.696270842
Iteration: 3, Func. Count: 37, Neg. LLF: 3124050.665329819
Iteration: 4, Func. Count: 49, Neg. LLF: 93.33801594714248
Iteration: 5, Func. Count: 61, Neg. LLF: 80.10304542721158
Iteration: 6, Func. Count: 73, Neg. LLF: 77.81585634424633
Iteration: 7, Func. Count: 85, Neg. LLF: 75.29617457139338
Iteration: 8, Func. Count: 97, Neg. LLF: 74.64353629798747
Iteration: 9, Func. Count: 108, Neg. LLF: 74.69219396748497
Iteration: 10, Func. Count: 120, Neg. LLF: 74.62000261389147
Iteration: 11, Func. Count: 131, Neg. LLF: 74.61478024059596
Iteration: 12, Func. Count: 142, Neg. LLF: 74.61392387247426
Iteration: 13, Func. Count: 153, Neg. LLF: 74.61383953552738
Iteration: 14, Func. Count: 164, Neg. LLF: 74.61382191859114
Iteration: 15, Func. Count: 175, Neg. LLF: 74.61381801552358
Iteration: 16, Func. Count: 185, Neg. LLF: 74.61381800906264
Optimization terminated successfully (Exit mode 0)
Current function value: 74.61381801552358
Iterations: 16
Function evaluations: 185
Gradient evaluations: 16
Iteration: 1, Func. Count: 9, Neg. LLF: 156.33944391203562
Iteration: 2, Func. Count: 20, Neg. LLF: 602904014.1050113
Iteration: 3, Func. Count: 29, Neg. LLF: 13337085.035422018
Iteration: 4, Func. Count: 38, Neg. LLF: 2136919.91469639
Iteration: 5, Func. Count: 47, Neg. LLF: 1074081.1190740464
Iteration: 6, Func. Count: 56, Neg. LLF: 3263477.192048829
Iteration: 7, Func. Count: 65, Neg. LLF: 80.44176091092639
Iteration: 8, Func. Count: 74, Neg. LLF: 81.64204377885378
Iteration: 9, Func. Count: 83, Neg. LLF: 77.13740161615316
Iteration: 10, Func. Count: 92, Neg. LLF: 535.6036096644111
Iteration: 11, Func. Count: 101, Neg. LLF: 75.38526910196792
Iteration: 12, Func. Count: 109, Neg. LLF: 75.13553841727735
Iteration: 13, Func. Count: 117, Neg. LLF: 75.05277997876995
Iteration: 14, Func. Count: 125, Neg. LLF: 75.02669926504085
Iteration: 15, Func. Count: 133, Neg. LLF: 75.01877931971657
Iteration: 16, Func. Count: 141, Neg. LLF: 75.013771419916
Iteration: 17, Func. Count: 149, Neg. LLF: 74.95973977696258
Iteration: 18, Func. Count: 157, Neg. LLF: 74.95411813040187
Iteration: 19, Func. Count: 165, Neg. LLF: 74.95229696865094
Iteration: 20, Func. Count: 173, Neg. LLF: 74.95157047434512
Iteration: 21, Func. Count: 181, Neg. LLF: 74.95152390182264
Iteration: 22, Func. Count: 189, Neg. LLF: 74.95152247858053
Iteration: 23, Func. Count: 196, Neg. LLF: 74.9515224967877
Optimization terminated successfully (Exit mode 0)
Current function value: 74.95152247858053
Iterations: 23
Function evaluations: 196
Gradient evaluations: 23
Iteration: 1, Func. Count: 10, Neg. LLF: 3390838.347469722
Iteration: 2, Func. Count: 21, Neg. LLF: 20729009.579652477
Iteration: 3, Func. Count: 31, Neg. LLF: 89.21872985156332
Iteration: 4, Func. Count: 42, Neg. LLF: 80.57069853497632
Iteration: 5, Func. Count: 52, Neg. LLF: 78.93899282566898
Iteration: 6, Func. Count: 62, Neg. LLF: 80.45263732605724
Iteration: 7, Func. Count: 72, Neg. LLF: 77.17043528728692
Iteration: 8, Func. Count: 82, Neg. LLF: 75.67260377536992
Iteration: 9, Func. Count: 92, Neg. LLF: 75.10814724872564
Iteration: 10, Func. Count: 101, Neg. LLF: 78.31310561058298
Iteration: 11, Func. Count: 111, Neg. LLF: 75.00895204262497
Iteration: 12, Func. Count: 120, Neg. LLF: 75.01472513275026
Iteration: 13, Func. Count: 130, Neg. LLF: 74.95996607402894
Iteration: 14, Func. Count: 139, Neg. LLF: 74.95298378305117
Iteration: 15, Func. Count: 148, Neg. LLF: 74.9521884084993
Iteration: 16, Func. Count: 157, Neg. LLF: 74.95199766739508
Iteration: 17, Func. Count: 166, Neg. LLF: 74.95178876405559
Iteration: 18, Func. Count: 175, Neg. LLF: 74.9516101265715
Iteration: 19, Func. Count: 184, Neg. LLF: 74.95153252608297
Iteration: 20, Func. Count: 193, Neg. LLF: 74.95152281611634
Iteration: 21, Func. Count: 201, Neg. LLF: 74.95152287862429
Optimization terminated successfully (Exit mode 0)
Current function value: 74.95152281611634
Iterations: 21
Function evaluations: 201
Gradient evaluations: 21
Iteration: 1, Func. Count: 11, Neg. LLF: 6511661.785343554
Iteration: 2, Func. Count: 22, Neg. LLF: 24806214.4886231
Iteration: 3, Func. Count: 33, Neg. LLF: 95.05397859225326
Iteration: 4, Func. Count: 45, Neg. LLF: 80.54777189328944
Iteration: 5, Func. Count: 56, Neg. LLF: 90.60490555287073
Iteration: 6, Func. Count: 67, Neg. LLF: 75.92268282560262
Iteration: 7, Func. Count: 78, Neg. LLF: 78.28128404742122
Iteration: 8, Func. Count: 89, Neg. LLF: 74.73305150000137
Iteration: 9, Func. Count: 99, Neg. LLF: 74.6361721000839
Iteration: 10, Func. Count: 109, Neg. LLF: 74.61794057932761
Iteration: 11, Func. Count: 119, Neg. LLF: 74.61422261315893
Iteration: 12, Func. Count: 129, Neg. LLF: 74.61383030719664
Iteration: 13, Func. Count: 139, Neg. LLF: 74.61381871739675
Iteration: 14, Func. Count: 149, Neg. LLF: 74.61381773755178
Optimization terminated successfully (Exit mode 0)
Current function value: 74.61381773755178
Iterations: 14
Function evaluations: 149
Gradient evaluations: 14
Iteration: 1, Func. Count: 12, Neg. LLF: 132.65261633021547
Iteration: 2, Func. Count: 25, Neg. LLF: 31837104.355474643
Iteration: 3, Func. Count: 37, Neg. LLF: 6380615.889665732
Iteration: 4, Func. Count: 49, Neg. LLF: 95.42826086189076
Iteration: 5, Func. Count: 61, Neg. LLF: 77.6490484168144
Iteration: 6, Func. Count: 73, Neg. LLF: 76.35424195763517
Iteration: 7, Func. Count: 85, Neg. LLF: 74.84110898779076
Iteration: 8, Func. Count: 96, Neg. LLF: 74.87078425064352
Iteration: 9, Func. Count: 108, Neg. LLF: 75.06822018750097
Iteration: 10, Func. Count: 120, Neg. LLF: 74.62455355312012
Iteration: 11, Func. Count: 131, Neg. LLF: 74.61495172412334
Iteration: 12, Func. Count: 142, Neg. LLF: 74.61400294725004
Iteration: 13, Func. Count: 153, Neg. LLF: 74.6138486315063
Iteration: 14, Func. Count: 164, Neg. LLF: 74.61382133612813
Iteration: 15, Func. Count: 175, Neg. LLF: 74.61381764769061
Iteration: 16, Func. Count: 185, Neg. LLF: 74.61381766469678
Optimization terminated successfully (Exit mode 0)
Current function value: 74.61381764769061
Iterations: 16
Function evaluations: 185
Gradient evaluations: 16
Iteration: 1, Func. Count: 13, Neg. LLF: 145.82009187320045
Iteration: 2, Func. Count: 28, Neg. LLF: 58489750.277975164
Iteration: 3, Func. Count: 41, Neg. LLF: 7130912.016793908
Iteration: 4, Func. Count: 54, Neg. LLF: 140.34875588558137
Iteration: 5, Func. Count: 67, Neg. LLF: 78.33899468634934
Iteration: 6, Func. Count: 80, Neg. LLF: 77.24269345837902
Iteration: 7, Func. Count: 93, Neg. LLF: 75.42343774977522
Iteration: 8, Func. Count: 106, Neg. LLF: 74.89849135390571
Iteration: 9, Func. Count: 118, Neg. LLF: 75.48981972077756
Iteration: 10, Func. Count: 131, Neg. LLF: 75.09047328200626
Iteration: 11, Func. Count: 144, Neg. LLF: 75.11277621168684
Iteration: 12, Func. Count: 157, Neg. LLF: 74.61531863110044
Iteration: 13, Func. Count: 169, Neg. LLF: 74.61423293581984
Iteration: 14, Func. Count: 181, Neg. LLF: 74.61382651718382
Iteration: 15, Func. Count: 193, Neg. LLF: 74.61381982762069
Iteration: 16, Func. Count: 205, Neg. LLF: 74.61381814788392
Iteration: 17, Func. Count: 216, Neg. LLF: 74.613818141634
Optimization terminated successfully (Exit mode 0)
Current function value: 74.61381814788392
Iterations: 17
Function evaluations: 216
Gradient evaluations: 17
Iteration: 1, Func. Count: 6, Neg. LLF: 172.78654723203016
Iteration: 2, Func. Count: 14, Neg. LLF: 112.3721261538391
Iteration: 3, Func. Count: 21, Neg. LLF: 628.9843867077597
Iteration: 4, Func. Count: 27, Neg. LLF: 218.92882443384977
Iteration: 5, Func. Count: 33, Neg. LLF: 318.94863775317833
Iteration: 6, Func. Count: 39, Neg. LLF: 86.92643228569752
Iteration: 7, Func. Count: 45, Neg. LLF: 81.16776843186271
Iteration: 8, Func. Count: 51, Neg. LLF: 79.95830238713745
Iteration: 9, Func. Count: 56, Neg. LLF: 79.88720332518058
Iteration: 10, Func. Count: 61, Neg. LLF: 79.88354885524589
Iteration: 11, Func. Count: 66, Neg. LLF: 79.88281974166267
Iteration: 12, Func. Count: 71, Neg. LLF: 79.8827752602313
Iteration: 13, Func. Count: 76, Neg. LLF: 79.88277465679293
Optimization terminated successfully (Exit mode 0)
Current function value: 79.88277465679293
Iterations: 13
Function evaluations: 76
Gradient evaluations: 13
Iteration: 1, Func. Count: 7, Neg. LLF: 153.04444374612362
Iteration: 2, Func. Count: 19, Neg. LLF: 157.8656804359324
Iteration: 3, Func. Count: 27, Neg. LLF: 114.66036614714598
Iteration: 4, Func. Count: 34, Neg. LLF: 88.57414723492062
Iteration: 5, Func. Count: 42, Neg. LLF: 76.58323159397493
Iteration: 6, Func. Count: 49, Neg. LLF: 86.09784318424583
Iteration: 7, Func. Count: 57, Neg. LLF: 76.29709488793617
Iteration: 8, Func. Count: 63, Neg. LLF: 76.28692139012867
Iteration: 9, Func. Count: 69, Neg. LLF: 76.28406337887886
Iteration: 10, Func. Count: 75, Neg. LLF: 76.28373059254497
Iteration: 11, Func. Count: 81, Neg. LLF: 76.28371442039658
Iteration: 12, Func. Count: 87, Neg. LLF: 76.28371378928864
Optimization terminated successfully (Exit mode 0)
Current function value: 76.28371378928864
Iterations: 12
Function evaluations: 87
Gradient evaluations: 12
Iteration: 1, Func. Count: 8, Neg. LLF: 237.915214505286
Iteration: 2, Func. Count: 17, Neg. LLF: 149.63570058853415
Iteration: 3, Func. Count: 25, Neg. LLF: 78.72946085869714
Iteration: 4, Func. Count: 33, Neg. LLF: 77.96821691835316
Iteration: 5, Func. Count: 41, Neg. LLF: 83.3868284971821
Iteration: 6, Func. Count: 49, Neg. LLF: 76.5416366755716
Iteration: 7, Func. Count: 56, Neg. LLF: 77.2395259782267
Iteration: 8, Func. Count: 64, Neg. LLF: 76.83124163434911
Iteration: 9, Func. Count: 72, Neg. LLF: 76.29084157840413
Iteration: 10, Func. Count: 79, Neg. LLF: 76.2841981919986
Iteration: 11, Func. Count: 86, Neg. LLF: 76.28374722625341
Iteration: 12, Func. Count: 93, Neg. LLF: 76.28371446741119
Iteration: 13, Func. Count: 100, Neg. LLF: 76.28371380321855
Optimization terminated successfully (Exit mode 0)
Current function value: 76.28371380321855
Iterations: 13
Function evaluations: 100
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 155.82899174700935
Iteration: 2, Func. Count: 19, Neg. LLF: 7770.605690728304
Iteration: 3, Func. Count: 28, Neg. LLF: 88.63474016357166
Iteration: 4, Func. Count: 38, Neg. LLF: 79.625203683265
Iteration: 5, Func. Count: 47, Neg. LLF: 76.52936088072957
Iteration: 6, Func. Count: 55, Neg. LLF: 76.5457886979145
Iteration: 7, Func. Count: 64, Neg. LLF: 76.72122936561001
Iteration: 8, Func. Count: 73, Neg. LLF: 76.29152645237657
Iteration: 9, Func. Count: 82, Neg. LLF: 76.28377955904857
Iteration: 10, Func. Count: 90, Neg. LLF: 76.28373700766795
Iteration: 11, Func. Count: 98, Neg. LLF: 76.28371521076346
Iteration: 12, Func. Count: 106, Neg. LLF: 76.28371379388497
Iteration: 13, Func. Count: 113, Neg. LLF: 76.28371383226897
Optimization terminated successfully (Exit mode 0)
Current function value: 76.28371379388497
Iterations: 13
Function evaluations: 113
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 171.3478784734266
Iteration: 2, Func. Count: 21, Neg. LLF: 1518.6418759971107
Iteration: 3, Func. Count: 31, Neg. LLF: 108.68333320105383
Iteration: 4, Func. Count: 41, Neg. LLF: 79.59547450293454
Iteration: 5, Func. Count: 51, Neg. LLF: 83.09578459498883
Iteration: 6, Func. Count: 62, Neg. LLF: 76.34631524088468
Iteration: 7, Func. Count: 71, Neg. LLF: 76.63307453875215
Iteration: 8, Func. Count: 81, Neg. LLF: 76.31176389173834
Iteration: 9, Func. Count: 91, Neg. LLF: 76.28542320689235
Iteration: 10, Func. Count: 100, Neg. LLF: 76.28425833522542
Iteration: 11, Func. Count: 109, Neg. LLF: 76.28381267535835
Iteration: 12, Func. Count: 118, Neg. LLF: 76.28371737081724
Iteration: 13, Func. Count: 127, Neg. LLF: 76.28371378093632
Iteration: 14, Func. Count: 135, Neg. LLF: 76.2837138000414
Optimization terminated successfully (Exit mode 0)
Current function value: 76.28371378093632
Iterations: 14
Function evaluations: 135
Gradient evaluations: 14
Iteration: 1, Func. Count: 7, Neg. LLF: 172.04435115097
Iteration: 2, Func. Count: 16, Neg. LLF: 112.15197576666877
Iteration: 3, Func. Count: 24, Neg. LLF: 1026.8786028266634
Iteration: 4, Func. Count: 31, Neg. LLF: 537.2637406122766
Iteration: 5, Func. Count: 38, Neg. LLF: 3213.1103961066487
Iteration: 6, Func. Count: 45, Neg. LLF: 103806.35392792211
Iteration: 7, Func. Count: 52, Neg. LLF: 83.78896333818741
Iteration: 8, Func. Count: 59, Neg. LLF: 82.18964549159826
Iteration: 9, Func. Count: 66, Neg. LLF: 80.26530978874119
Iteration: 10, Func. Count: 73, Neg. LLF: 80.08421472945898
Iteration: 11, Func. Count: 80, Neg. LLF: 79.46098475887561
Iteration: 12, Func. Count: 86, Neg. LLF: 79.45737340575839
Iteration: 13, Func. Count: 92, Neg. LLF: 79.4550132041498
Iteration: 14, Func. Count: 98, Neg. LLF: 79.45457570083168
Iteration: 15, Func. Count: 104, Neg. LLF: 79.45441534497279
Iteration: 16, Func. Count: 110, Neg. LLF: 79.45430392040875
Iteration: 17, Func. Count: 115, Neg. LLF: 79.45430392040195
Optimization terminated successfully (Exit mode 0)
Current function value: 79.45430392040875
Iterations: 17
Function evaluations: 115
Gradient evaluations: 17
Iteration: 1, Func. Count: 8, Neg. LLF: 6276.622217612967
Iteration: 2, Func. Count: 17, Neg. LLF: 10147.806119928026
Iteration: 3, Func. Count: 25, Neg. LLF: 81.55254228813062
Iteration: 4, Func. Count: 33, Neg. LLF: 82.09172734223266
Iteration: 5, Func. Count: 41, Neg. LLF: 76.53733072165691
Iteration: 6, Func. Count: 48, Neg. LLF: 76.10817510854858
Iteration: 7, Func. Count: 55, Neg. LLF: 85.0816952708242
Iteration: 8, Func. Count: 64, Neg. LLF: 76.05391979356916
Iteration: 9, Func. Count: 71, Neg. LLF: 76.03805226593768
Iteration: 10, Func. Count: 78, Neg. LLF: 76.0330415369933
Iteration: 11, Func. Count: 85, Neg. LLF: 76.03277761149538
Iteration: 12, Func. Count: 92, Neg. LLF: 76.03277174484677
Iteration: 13, Func. Count: 99, Neg. LLF: 76.03277006216643
Iteration: 14, Func. Count: 105, Neg. LLF: 76.0327700621714
Optimization terminated successfully (Exit mode 0)
Current function value: 76.03277006216643
Iterations: 14
Function evaluations: 105
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 930.4817898705951
Iteration: 2, Func. Count: 19, Neg. LLF: 1015.1041600590394
Iteration: 3, Func. Count: 28, Neg. LLF: 88.37837533166267
Iteration: 4, Func. Count: 38, Neg. LLF: 77.01507131384477
Iteration: 5, Func. Count: 46, Neg. LLF: 77.07011200078121
Iteration: 6, Func. Count: 55, Neg. LLF: 83.0491961584017
Iteration: 7, Func. Count: 65, Neg. LLF: 76.07677900090353
Iteration: 8, Func. Count: 73, Neg. LLF: 76.03883511845058
Iteration: 9, Func. Count: 81, Neg. LLF: 76.0328640010398
Iteration: 10, Func. Count: 89, Neg. LLF: 76.03277500051739
Iteration: 11, Func. Count: 97, Neg. LLF: 76.03277041396478
Iteration: 12, Func. Count: 104, Neg. LLF: 76.03277046568859
Optimization terminated successfully (Exit mode 0)
Current function value: 76.03277041396478
Iterations: 12
Function evaluations: 104
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 1744.2610409563188
Iteration: 2, Func. Count: 21, Neg. LLF: 311.6162141106909
Iteration: 3, Func. Count: 31, Neg. LLF: 85.8211519043485
Iteration: 4, Func. Count: 43, Neg. LLF: 78.27448790908171
Iteration: 5, Func. Count: 52, Neg. LLF: 78.07106391180133
Iteration: 6, Func. Count: 62, Neg. LLF: 85.4898678800889
Iteration: 7, Func. Count: 72, Neg. LLF: 76.06517647054652
Iteration: 8, Func. Count: 81, Neg. LLF: 76.03614098290286
Iteration: 9, Func. Count: 90, Neg. LLF: 76.03339804676514
Iteration: 10, Func. Count: 99, Neg. LLF: 76.03283221028981
Iteration: 11, Func. Count: 108, Neg. LLF: 76.032779189698
Iteration: 12, Func. Count: 117, Neg. LLF: 76.0327712011342
Iteration: 13, Func. Count: 126, Neg. LLF: 76.03277008641132
Iteration: 14, Func. Count: 134, Neg. LLF: 76.03277012358586
Optimization terminated successfully (Exit mode 0)
Current function value: 76.03277008641132
Iterations: 14
Function evaluations: 134
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 143.62835726551805
Iteration: 2, Func. Count: 24, Neg. LLF: 442202.8674236007
Iteration: 3, Func. Count: 35, Neg. LLF: 81.89532489276911
Iteration: 4, Func. Count: 46, Neg. LLF: 77.80752820471486
Iteration: 5, Func. Count: 57, Neg. LLF: 82.10363328713888
Iteration: 6, Func. Count: 68, Neg. LLF: 78.4343463335457
Iteration: 7, Func. Count: 79, Neg. LLF: 76.17909879815862
Iteration: 8, Func. Count: 89, Neg. LLF: 76.09365872106363
Iteration: 9, Func. Count: 99, Neg. LLF: 76.05158597544674
Iteration: 10, Func. Count: 109, Neg. LLF: 76.0344811667672
Iteration: 11, Func. Count: 119, Neg. LLF: 76.03301836674774
Iteration: 12, Func. Count: 129, Neg. LLF: 76.03282317028251
Iteration: 13, Func. Count: 139, Neg. LLF: 76.03277160985081
Iteration: 14, Func. Count: 149, Neg. LLF: 76.03277008157217
Iteration: 15, Func. Count: 158, Neg. LLF: 76.0327700980331
Optimization terminated successfully (Exit mode 0)
Current function value: 76.03277008157217
Iterations: 15
Function evaluations: 158
Gradient evaluations: 15
Iteration: 1, Func. Count: 8, Neg. LLF: 177.77907760768588
Iteration: 2, Func. Count: 17, Neg. LLF: 564.614943499033
Iteration: 3, Func. Count: 25, Neg. LLF: 6797559.971010719
Iteration: 4, Func. Count: 33, Neg. LLF: 6243135.211333413
Iteration: 5, Func. Count: 41, Neg. LLF: 79.03664959993468
Iteration: 6, Func. Count: 49, Neg. LLF: 2417.7624810939483
Iteration: 7, Func. Count: 57, Neg. LLF: 6952807.553685038
Iteration: 8, Func. Count: 65, Neg. LLF: 75.08835006722602
Iteration: 9, Func. Count: 72, Neg. LLF: 74.97506416501346
Iteration: 10, Func. Count: 79, Neg. LLF: 74.96078159381211
Iteration: 11, Func. Count: 86, Neg. LLF: 74.95433891493958
Iteration: 12, Func. Count: 93, Neg. LLF: 74.95157033664145
Iteration: 13, Func. Count: 100, Neg. LLF: 74.95152384537558
Iteration: 14, Func. Count: 107, Neg. LLF: 74.95152246989929
Iteration: 15, Func. Count: 113, Neg. LLF: 74.95152246990122
Optimization terminated successfully (Exit mode 0)
Current function value: 74.95152246989929
Iterations: 15
Function evaluations: 113
Gradient evaluations: 15
Iteration: 1, Func. Count: 9, Neg. LLF: 2677344.290730306
Iteration: 2, Func. Count: 19, Neg. LLF: 20029704.58825086
Iteration: 3, Func. Count: 28, Neg. LLF: 82.92456111932425
Iteration: 4, Func. Count: 38, Neg. LLF: 75.45210841861136
Iteration: 5, Func. Count: 46, Neg. LLF: 77.6883533136951
Iteration: 6, Func. Count: 55, Neg. LLF: 76.60340899673716
Iteration: 7, Func. Count: 64, Neg. LLF: 75.53747988201309
Iteration: 8, Func. Count: 73, Neg. LLF: 75.86323306571818
Iteration: 9, Func. Count: 82, Neg. LLF: 75.14268956331067
Iteration: 10, Func. Count: 90, Neg. LLF: 75.141973697326
Iteration: 11, Func. Count: 98, Neg. LLF: 75.14115706373465
Iteration: 12, Func. Count: 106, Neg. LLF: 75.14111626162942
Iteration: 13, Func. Count: 114, Neg. LLF: 75.14109383778887
Iteration: 14, Func. Count: 122, Neg. LLF: 75.141091564253
Iteration: 15, Func. Count: 129, Neg. LLF: 75.14109156424959
Optimization terminated successfully (Exit mode 0)
Current function value: 75.141091564253
Iterations: 15
Function evaluations: 129
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 3541700.3614103994
Iteration: 2, Func. Count: 21, Neg. LLF: 17633646.171013612
Iteration: 3, Func. Count: 31, Neg. LLF: 82.35276023082376
Iteration: 4, Func. Count: 42, Neg. LLF: 115.86289052137715
Iteration: 5, Func. Count: 52, Neg. LLF: 76.4643847474058
Iteration: 6, Func. Count: 62, Neg. LLF: 77.73962308642123
Iteration: 7, Func. Count: 72, Neg. LLF: 75.35165638727482
Iteration: 8, Func. Count: 82, Neg. LLF: 74.92116827522946
Iteration: 9, Func. Count: 91, Neg. LLF: 75.1654761296396
Iteration: 10, Func. Count: 101, Neg. LLF: 74.94603580257638
Iteration: 11, Func. Count: 111, Neg. LLF: 74.86897917512931
Iteration: 12, Func. Count: 120, Neg. LLF: 74.86820331535212
Iteration: 13, Func. Count: 129, Neg. LLF: 74.86813858977092
Iteration: 14, Func. Count: 138, Neg. LLF: 74.86813785801608
Optimization terminated successfully (Exit mode 0)
Current function value: 74.86813785801608
Iterations: 14
Function evaluations: 138
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 6958349.580767475
Iteration: 2, Func. Count: 23, Neg. LLF: 17584033.554330736
Iteration: 3, Func. Count: 34, Neg. LLF: 79.92594515106481
Iteration: 4, Func. Count: 46, Neg. LLF: 6894700.2152253
Iteration: 5, Func. Count: 57, Neg. LLF: 83.63755294433341
Iteration: 6, Func. Count: 68, Neg. LLF: 77.57100366537368
Iteration: 7, Func. Count: 79, Neg. LLF: 76.86821804440535
Iteration: 8, Func. Count: 90, Neg. LLF: 76.0225529057781
Iteration: 9, Func. Count: 101, Neg. LLF: 75.42179007154215
Iteration: 10, Func. Count: 112, Neg. LLF: 75.09729083888206
Iteration: 11, Func. Count: 123, Neg. LLF: 74.89309213897874
Iteration: 12, Func. Count: 133, Neg. LLF: 74.87540917902143
Iteration: 13, Func. Count: 143, Neg. LLF: 74.87026608667406
Iteration: 14, Func. Count: 153, Neg. LLF: 74.86825210318479
Iteration: 15, Func. Count: 163, Neg. LLF: 74.86814574216193
Iteration: 16, Func. Count: 173, Neg. LLF: 74.86813787831868
Iteration: 17, Func. Count: 182, Neg. LLF: 74.86813789100982
Optimization terminated successfully (Exit mode 0)
Current function value: 74.86813787831868
Iterations: 17
Function evaluations: 182
Gradient evaluations: 17
Iteration: 1, Func. Count: 12, Neg. LLF: 2146003.5181946703
Iteration: 2, Func. Count: 25, Neg. LLF: 17743859.20469441
Iteration: 3, Func. Count: 37, Neg. LLF: 214.07621436691832
Iteration: 4, Func. Count: 49, Neg. LLF: 86.82991807744334
Iteration: 5, Func. Count: 62, Neg. LLF: 101.50847123432695
Iteration: 6, Func. Count: 74, Neg. LLF: 77.04755967656537
Iteration: 7, Func. Count: 86, Neg. LLF: 75.07092753726867
Iteration: 8, Func. Count: 97, Neg. LLF: 78.25692900014371
Iteration: 9, Func. Count: 109, Neg. LLF: 75.79787736845928
Iteration: 10, Func. Count: 121, Neg. LLF: 75.2120925659798
Iteration: 11, Func. Count: 133, Neg. LLF: 74.92295518503276
Iteration: 12, Func. Count: 145, Neg. LLF: 74.84479376401275
Iteration: 13, Func. Count: 156, Neg. LLF: 74.8438382654512
Iteration: 14, Func. Count: 167, Neg. LLF: 74.84342005177311
Iteration: 15, Func. Count: 178, Neg. LLF: 74.84341623634752
Iteration: 16, Func. Count: 188, Neg. LLF: 74.84341622241065
Optimization terminated successfully (Exit mode 0)
Current function value: 74.84341623634752
Iterations: 16
Function evaluations: 188
Gradient evaluations: 16
Iteration: 1, Func. Count: 9, Neg. LLF: 180.33342770472805
Iteration: 2, Func. Count: 19, Neg. LLF: 57966780.09954212
Iteration: 3, Func. Count: 28, Neg. LLF: 3257501.8672494777
Iteration: 4, Func. Count: 37, Neg. LLF: 5647627.006315327
Iteration: 5, Func. Count: 46, Neg. LLF: 6277368.123986312
Iteration: 6, Func. Count: 55, Neg. LLF: 77.71485454513389
Iteration: 7, Func. Count: 64, Neg. LLF: 75.90910943933314
Iteration: 8, Func. Count: 73, Neg. LLF: 18457.909819003246
Iteration: 9, Func. Count: 82, Neg. LLF: 75.25565302914659
Iteration: 10, Func. Count: 90, Neg. LLF: 75.08833001940394
Iteration: 11, Func. Count: 98, Neg. LLF: 75.056503307531
Iteration: 12, Func. Count: 106, Neg. LLF: 75.03607789794651
Iteration: 13, Func. Count: 114, Neg. LLF: 75.01492720811285
Iteration: 14, Func. Count: 122, Neg. LLF: 74.95674763938378
Iteration: 15, Func. Count: 130, Neg. LLF: 74.95272725311705
Iteration: 16, Func. Count: 138, Neg. LLF: 74.95167318461468
Iteration: 17, Func. Count: 146, Neg. LLF: 74.9515287733635
Iteration: 18, Func. Count: 154, Neg. LLF: 74.95152258804166
Iteration: 19, Func. Count: 161, Neg. LLF: 74.95152262215609
Optimization terminated successfully (Exit mode 0)
Current function value: 74.95152258804166
Iterations: 19
Function evaluations: 161
Gradient evaluations: 19
Iteration: 1, Func. Count: 10, Neg. LLF: 2495583.4223324214
Iteration: 2, Func. Count: 20, Neg. LLF: 20376115.911706906
Iteration: 3, Func. Count: 30, Neg. LLF: 86.22417311581344
Iteration: 4, Func. Count: 40, Neg. LLF: 80.68693810997051
Iteration: 5, Func. Count: 50, Neg. LLF: 179.37688941406194
Iteration: 6, Func. Count: 60, Neg. LLF: 76.3724628584381
Iteration: 7, Func. Count: 70, Neg. LLF: 75.20266651909357
Iteration: 8, Func. Count: 79, Neg. LLF: 75.38210643111775
Iteration: 9, Func. Count: 89, Neg. LLF: 75.2191268586504
Iteration: 10, Func. Count: 99, Neg. LLF: 75.12437865007394
Iteration: 11, Func. Count: 108, Neg. LLF: 75.10139847093951
Iteration: 12, Func. Count: 117, Neg. LLF: 75.0000724144469
Iteration: 13, Func. Count: 126, Neg. LLF: 74.96905062017962
Iteration: 14, Func. Count: 135, Neg. LLF: 74.95631308369845
Iteration: 15, Func. Count: 144, Neg. LLF: 74.95399468767306
Iteration: 16, Func. Count: 153, Neg. LLF: 74.95316341933227
Iteration: 17, Func. Count: 162, Neg. LLF: 74.9520322435413
Iteration: 18, Func. Count: 171, Neg. LLF: 74.95161290575948
Iteration: 19, Func. Count: 180, Neg. LLF: 74.95152837227836
Iteration: 20, Func. Count: 189, Neg. LLF: 74.95152302230068
Iteration: 21, Func. Count: 197, Neg. LLF: 74.95152308494995
Optimization terminated successfully (Exit mode 0)
Current function value: 74.95152302230068
Iterations: 21
Function evaluations: 197
Gradient evaluations: 21
Iteration: 1, Func. Count: 11, Neg. LLF: 3155687.307990468
Iteration: 2, Func. Count: 23, Neg. LLF: 7398030.857702832
Iteration: 3, Func. Count: 34, Neg. LLF: 84.2775173758284
Iteration: 4, Func. Count: 46, Neg. LLF: 96.43729687349048
Iteration: 5, Func. Count: 57, Neg. LLF: 76.05088604189285
Iteration: 6, Func. Count: 68, Neg. LLF: 79.3512691647616
Iteration: 7, Func. Count: 79, Neg. LLF: 74.76975530419291
Iteration: 8, Func. Count: 89, Neg. LLF: 74.69686434376324
Iteration: 9, Func. Count: 99, Neg. LLF: 74.64177966026634
Iteration: 10, Func. Count: 109, Neg. LLF: 74.61789623517282
Iteration: 11, Func. Count: 119, Neg. LLF: 74.61437649720268
Iteration: 12, Func. Count: 129, Neg. LLF: 74.61392352533413
Iteration: 13, Func. Count: 139, Neg. LLF: 74.61383022721971
Iteration: 14, Func. Count: 149, Neg. LLF: 74.6138177397618
Iteration: 15, Func. Count: 158, Neg. LLF: 74.61381772721604
Optimization terminated successfully (Exit mode 0)
Current function value: 74.6138177397618
Iterations: 15
Function evaluations: 158
Gradient evaluations: 15
Iteration: 1, Func. Count: 12, Neg. LLF: 5676488.8894997435
Iteration: 2, Func. Count: 25, Neg. LLF: 19034652.9847059
Iteration: 3, Func. Count: 37, Neg. LLF: 80.20492290251038
Iteration: 4, Func. Count: 49, Neg. LLF: 87.64128245756532
Iteration: 5, Func. Count: 61, Neg. LLF: 78.56621850064604
Iteration: 6, Func. Count: 73, Neg. LLF: 80.88830267062264
Iteration: 7, Func. Count: 85, Neg. LLF: 82.99020963785982
Iteration: 8, Func. Count: 97, Neg. LLF: 75.2447013909203
Iteration: 9, Func. Count: 109, Neg. LLF: 75.07933290896808
Iteration: 10, Func. Count: 121, Neg. LLF: 75.85678754765263
Iteration: 11, Func. Count: 133, Neg. LLF: 74.6431859669389
Iteration: 12, Func. Count: 144, Neg. LLF: 74.62165331197862
Iteration: 13, Func. Count: 155, Neg. LLF: 74.61602069028615
Iteration: 14, Func. Count: 166, Neg. LLF: 74.61476915544515
Iteration: 15, Func. Count: 177, Neg. LLF: 74.61408176209645
Iteration: 16, Func. Count: 188, Neg. LLF: 74.61391056156539
Iteration: 17, Func. Count: 199, Neg. LLF: 74.61382389092157
Iteration: 18, Func. Count: 210, Neg. LLF: 74.61381795962717
Iteration: 19, Func. Count: 220, Neg. LLF: 74.61381797667022
Optimization terminated successfully (Exit mode 0)
Current function value: 74.61381795962717
Iterations: 19
Function evaluations: 220
Gradient evaluations: 19
Iteration: 1, Func. Count: 13, Neg. LLF: 7047036.105789368
Iteration: 2, Func. Count: 27, Neg. LLF: 19838216.993255816
Iteration: 3, Func. Count: 40, Neg. LLF: 3184769.5049379542
Iteration: 4, Func. Count: 53, Neg. LLF: 85.97472637233501
Iteration: 5, Func. Count: 67, Neg. LLF: 77.18453986648713
Iteration: 6, Func. Count: 80, Neg. LLF: 78.34202336885329
Iteration: 7, Func. Count: 93, Neg. LLF: 74.75685534254762
Iteration: 8, Func. Count: 105, Neg. LLF: 74.77395112957359
Iteration: 9, Func. Count: 118, Neg. LLF: 74.68947417878304
Iteration: 10, Func. Count: 131, Neg. LLF: 74.61486695654179
Iteration: 11, Func. Count: 143, Neg. LLF: 74.61398905677501
Iteration: 12, Func. Count: 155, Neg. LLF: 74.6138670439495
Iteration: 13, Func. Count: 167, Neg. LLF: 74.61383290550444
Iteration: 14, Func. Count: 179, Neg. LLF: 74.61381974857754
Iteration: 15, Func. Count: 191, Neg. LLF: 74.61381770366847
Iteration: 16, Func. Count: 202, Neg. LLF: 74.61381769730106
Optimization terminated successfully (Exit mode 0)
Current function value: 74.61381770366847
Iterations: 16
Function evaluations: 202
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 176.62542802059332
Iteration: 2, Func. Count: 21, Neg. LLF: 72889698.84331484
Iteration: 3, Func. Count: 31, Neg. LLF: 2901745.143463129
Iteration: 4, Func. Count: 41, Neg. LLF: 2937972.551998781
Iteration: 5, Func. Count: 51, Neg. LLF: 81.55307309450819
Iteration: 6, Func. Count: 61, Neg. LLF: 145.3216437169092
Iteration: 7, Func. Count: 71, Neg. LLF: 75.49279362472473
Iteration: 8, Func. Count: 80, Neg. LLF: 75.90773900013957
Iteration: 9, Func. Count: 90, Neg. LLF: 76.35008393847059
Iteration: 10, Func. Count: 100, Neg. LLF: 75.22295794207811
Iteration: 11, Func. Count: 110, Neg. LLF: 75.06838121270752
Iteration: 12, Func. Count: 119, Neg. LLF: 75.03274670929457
Iteration: 13, Func. Count: 128, Neg. LLF: 75.01937926975366
Iteration: 14, Func. Count: 137, Neg. LLF: 75.00476832081058
Iteration: 15, Func. Count: 146, Neg. LLF: 74.95896165343306
Iteration: 16, Func. Count: 155, Neg. LLF: 74.95650904417823
Iteration: 17, Func. Count: 164, Neg. LLF: 74.95350091895911
Iteration: 18, Func. Count: 173, Neg. LLF: 74.95196821304977
Iteration: 19, Func. Count: 182, Neg. LLF: 74.95156525904503
Iteration: 20, Func. Count: 191, Neg. LLF: 74.95152486991105
Iteration: 21, Func. Count: 200, Neg. LLF: 74.95152255842869
Iteration: 22, Func. Count: 208, Neg. LLF: 74.95152257664178
Optimization terminated successfully (Exit mode 0)
Current function value: 74.95152255842869
Iterations: 22
Function evaluations: 208
Gradient evaluations: 22
Iteration: 1, Func. Count: 11, Neg. LLF: 2930779.0773483086
Iteration: 2, Func. Count: 23, Neg. LLF: 20113206.2014888
Iteration: 3, Func. Count: 34, Neg. LLF: 84.90661151838601
Iteration: 4, Func. Count: 46, Neg. LLF: 77.35503228683832
Iteration: 5, Func. Count: 57, Neg. LLF: 119.71177952407241
Iteration: 6, Func. Count: 68, Neg. LLF: 75.95371940626293
Iteration: 7, Func. Count: 79, Neg. LLF: 75.26833008593012
Iteration: 8, Func. Count: 90, Neg. LLF: 75.35177167420821
Iteration: 9, Func. Count: 101, Neg. LLF: 75.14217934005706
Iteration: 10, Func. Count: 111, Neg. LLF: 75.12935791413112
Iteration: 11, Func. Count: 121, Neg. LLF: 75.13394430031937
Iteration: 12, Func. Count: 132, Neg. LLF: 75.0568309586273
Iteration: 13, Func. Count: 142, Neg. LLF: 74.97738084031468
Iteration: 14, Func. Count: 152, Neg. LLF: 74.95684667010435
Iteration: 15, Func. Count: 162, Neg. LLF: 74.95261424871747
Iteration: 16, Func. Count: 172, Neg. LLF: 74.9515389736083
Iteration: 17, Func. Count: 182, Neg. LLF: 74.95152455571288
Iteration: 18, Func. Count: 192, Neg. LLF: 74.95152309878276
Iteration: 19, Func. Count: 201, Neg. LLF: 74.9515231613341
Optimization terminated successfully (Exit mode 0)
Current function value: 74.95152309878276
Iterations: 19
Function evaluations: 201
Gradient evaluations: 19
Iteration: 1, Func. Count: 12, Neg. LLF: 3601037.04233291
Iteration: 2, Func. Count: 25, Neg. LLF: 18503980.998054355
Iteration: 3, Func. Count: 37, Neg. LLF: 86.30174473938978
Iteration: 4, Func. Count: 50, Neg. LLF: 98.63515501152497
Iteration: 5, Func. Count: 62, Neg. LLF: 75.8283295200071
Iteration: 6, Func. Count: 74, Neg. LLF: 76.01708538581681
Iteration: 7, Func. Count: 86, Neg. LLF: 74.74033655654479
Iteration: 8, Func. Count: 97, Neg. LLF: 75.01921898568901
Iteration: 9, Func. Count: 109, Neg. LLF: 74.6819946007204
Iteration: 10, Func. Count: 120, Neg. LLF: 74.6189334383163
Iteration: 11, Func. Count: 131, Neg. LLF: 74.61487759987423
Iteration: 12, Func. Count: 142, Neg. LLF: 74.61390296815006
Iteration: 13, Func. Count: 153, Neg. LLF: 74.61382909462075
Iteration: 14, Func. Count: 164, Neg. LLF: 74.6138185524268
Iteration: 15, Func. Count: 175, Neg. LLF: 74.61381767912339
Optimization terminated successfully (Exit mode 0)
Current function value: 74.61381767912339
Iterations: 15
Function evaluations: 175
Gradient evaluations: 15
Iteration: 1, Func. Count: 13, Neg. LLF: 6680501.558111434
Iteration: 2, Func. Count: 27, Neg. LLF: 19336932.869422015
Iteration: 3, Func. Count: 40, Neg. LLF: 243.67663227206148
Iteration: 4, Func. Count: 53, Neg. LLF: 88.46626818299926
Iteration: 5, Func. Count: 67, Neg. LLF: 77.3392498337281
Iteration: 6, Func. Count: 80, Neg. LLF: 78.75501908044093
Iteration: 7, Func. Count: 93, Neg. LLF: 74.7379456789651
Iteration: 8, Func. Count: 105, Neg. LLF: 74.88456109684091
Iteration: 9, Func. Count: 118, Neg. LLF: 74.65663218756313
Iteration: 10, Func. Count: 131, Neg. LLF: 74.61676509649136
Iteration: 11, Func. Count: 143, Neg. LLF: 74.61422825105548
Iteration: 12, Func. Count: 155, Neg. LLF: 74.61389420435457
Iteration: 13, Func. Count: 167, Neg. LLF: 74.61382667256353
Iteration: 14, Func. Count: 179, Neg. LLF: 74.61381933578949
Iteration: 15, Func. Count: 191, Neg. LLF: 74.61381767315899
Iteration: 16, Func. Count: 202, Neg. LLF: 74.61381769015198
Optimization terminated successfully (Exit mode 0)
Current function value: 74.61381767315899
Iterations: 16
Function evaluations: 202
Gradient evaluations: 16
Iteration: 1, Func. Count: 14, Neg. LLF: 220.04545354797335
Iteration: 2, Func. Count: 29, Neg. LLF: 20337109.047356464
Iteration: 3, Func. Count: 43, Neg. LLF: 2975194.1027185777
Iteration: 4, Func. Count: 57, Neg. LLF: 77.31934233971724
Iteration: 5, Func. Count: 71, Neg. LLF: 144.16392465694307
Iteration: 6, Func. Count: 85, Neg. LLF: 76.83959365480248
Iteration: 7, Func. Count: 99, Neg. LLF: 87.75583937736545
Iteration: 8, Func. Count: 113, Neg. LLF: 74.72834671074712
Iteration: 9, Func. Count: 126, Neg. LLF: 75.75469775283895
Iteration: 10, Func. Count: 140, Neg. LLF: 74.66287360856566
Iteration: 11, Func. Count: 154, Neg. LLF: 74.61444067999274
Iteration: 12, Func. Count: 167, Neg. LLF: 74.61403145525183
Iteration: 13, Func. Count: 180, Neg. LLF: 74.61384634042336
Iteration: 14, Func. Count: 193, Neg. LLF: 74.61382617982179
Iteration: 15, Func. Count: 206, Neg. LLF: 74.61381802967973
Iteration: 16, Func. Count: 218, Neg. LLF: 74.61381802340678
Optimization terminated successfully (Exit mode 0)
Current function value: 74.61381802967973
Iterations: 16
Function evaluations: 218
Gradient evaluations: 16
Iteration: 1, Func. Count: 7, Neg. LLF: 130.08462460944912
Iteration: 2, Func. Count: 15, Neg. LLF: 300.0833938556333
Iteration: 3, Func. Count: 22, Neg. LLF: 103.8434102025461
Iteration: 4, Func. Count: 29, Neg. LLF: 148.60183686424753
Iteration: 5, Func. Count: 36, Neg. LLF: 76.54479263437457
Iteration: 6, Func. Count: 43, Neg. LLF: 96.81518375586819
Iteration: 7, Func. Count: 50, Neg. LLF: 128.45605806509113
Iteration: 8, Func. Count: 57, Neg. LLF: 73.21463382560188
Iteration: 9, Func. Count: 64, Neg. LLF: 72.56002722955697
Iteration: 10, Func. Count: 70, Neg. LLF: 72.55158115637113
Iteration: 11, Func. Count: 76, Neg. LLF: 72.54922351902432
Iteration: 12, Func. Count: 82, Neg. LLF: 72.54912320358586
Iteration: 13, Func. Count: 88, Neg. LLF: 72.54911696395375
Iteration: 14, Func. Count: 93, Neg. LLF: 72.54911696394899
Optimization terminated successfully (Exit mode 0)
Current function value: 72.54911696395375
Iterations: 14
Function evaluations: 93
Gradient evaluations: 14
Iteration: 1, Func. Count: 8, Neg. LLF: 483.97226513417695
Iteration: 2, Func. Count: 16, Neg. LLF: 364.6367997381101
Iteration: 3, Func. Count: 24, Neg. LLF: 77.54520190779049
Iteration: 4, Func. Count: 33, Neg. LLF: 76.09605893797426
Iteration: 5, Func. Count: 41, Neg. LLF: 73.42600966290621
Iteration: 6, Func. Count: 48, Neg. LLF: 104.44116720101785
Iteration: 7, Func. Count: 56, Neg. LLF: 72.9380789362741
Iteration: 8, Func. Count: 64, Neg. LLF: 78.5218507371946
Iteration: 9, Func. Count: 72, Neg. LLF: 72.75424239919447
Iteration: 10, Func. Count: 80, Neg. LLF: 72.55186435199911
Iteration: 11, Func. Count: 87, Neg. LLF: 72.55013894348488
Iteration: 12, Func. Count: 94, Neg. LLF: 72.54914396651745
Iteration: 13, Func. Count: 101, Neg. LLF: 72.5491177860091
Iteration: 14, Func. Count: 108, Neg. LLF: 72.54911701607935
Optimization terminated successfully (Exit mode 0)
Current function value: 72.54911701607935
Iterations: 14
Function evaluations: 108
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 1799.9573842873476
Iteration: 2, Func. Count: 18, Neg. LLF: 847.1272903326185
Iteration: 3, Func. Count: 27, Neg. LLF: 76.56224769918144
Iteration: 4, Func. Count: 37, Neg. LLF: 74.11618887861553
Iteration: 5, Func. Count: 45, Neg. LLF: 107.54276697940664
Iteration: 6, Func. Count: 54, Neg. LLF: 90.47186538075391
Iteration: 7, Func. Count: 64, Neg. LLF: 72.9844647823875
Iteration: 8, Func. Count: 72, Neg. LLF: 73.31882989347702
Iteration: 9, Func. Count: 81, Neg. LLF: 88.12128480749195
Iteration: 10, Func. Count: 91, Neg. LLF: 72.55302102589644
Iteration: 11, Func. Count: 99, Neg. LLF: 72.55074259900539
Iteration: 12, Func. Count: 107, Neg. LLF: 72.54950538233877
Iteration: 13, Func. Count: 115, Neg. LLF: 72.54918279101787
Iteration: 14, Func. Count: 123, Neg. LLF: 72.54913394599514
Iteration: 15, Func. Count: 131, Neg. LLF: 72.54912254950301
Iteration: 16, Func. Count: 139, Neg. LLF: 72.54911740121698
Iteration: 17, Func. Count: 147, Neg. LLF: 72.54911670947072
Optimization terminated successfully (Exit mode 0)
Current function value: 72.54911670947072
Iterations: 17
Function evaluations: 147
Gradient evaluations: 17
Iteration: 1, Func. Count: 10, Neg. LLF: 1512.4269407644495
Iteration: 2, Func. Count: 20, Neg. LLF: 2228.027141691098
Iteration: 3, Func. Count: 30, Neg. LLF: 766.3003205796321
Iteration: 4, Func. Count: 40, Neg. LLF: 85.15905078230364
Iteration: 5, Func. Count: 50, Neg. LLF: 73.85355957332486
Iteration: 6, Func. Count: 59, Neg. LLF: 79.05441580034011
Iteration: 7, Func. Count: 70, Neg. LLF: 73.24147910183795
Iteration: 8, Func. Count: 80, Neg. LLF: 95.92347092002929
Iteration: 9, Func. Count: 90, Neg. LLF: 72.61546192586968
Iteration: 10, Func. Count: 99, Neg. LLF: 72.56107788712721
Iteration: 11, Func. Count: 108, Neg. LLF: 72.55374224342853
Iteration: 12, Func. Count: 117, Neg. LLF: 72.54950602424842
Iteration: 13, Func. Count: 126, Neg. LLF: 72.54932352358352
Iteration: 14, Func. Count: 135, Neg. LLF: 72.54920437556241
Iteration: 15, Func. Count: 144, Neg. LLF: 72.54913424047618
Iteration: 16, Func. Count: 153, Neg. LLF: 72.54911793383216
Iteration: 17, Func. Count: 162, Neg. LLF: 72.54911668715063
Iteration: 18, Func. Count: 170, Neg. LLF: 72.54911671138443
Optimization terminated successfully (Exit mode 0)
Current function value: 72.54911668715063
Iterations: 18
Function evaluations: 170
Gradient evaluations: 18
Iteration: 1, Func. Count: 11, Neg. LLF: 568.6411954292576
Iteration: 2, Func. Count: 22, Neg. LLF: 2493.5225569267063
Iteration: 3, Func. Count: 33, Neg. LLF: 446.5404791766632
Iteration: 4, Func. Count: 44, Neg. LLF: 83.12330923222336
Iteration: 5, Func. Count: 55, Neg. LLF: 73.7509929418927
Iteration: 6, Func. Count: 65, Neg. LLF: 84.8785830366765
Iteration: 7, Func. Count: 77, Neg. LLF: 73.85137208630748
Iteration: 8, Func. Count: 88, Neg. LLF: 74.51921554900333
Iteration: 9, Func. Count: 99, Neg. LLF: 74.15636412582185
Iteration: 10, Func. Count: 110, Neg. LLF: 72.56511053696445
Iteration: 11, Func. Count: 120, Neg. LLF: 72.5557288496739
Iteration: 12, Func. Count: 130, Neg. LLF: 72.54955512692668
Iteration: 13, Func. Count: 140, Neg. LLF: 72.54936616561766
Iteration: 14, Func. Count: 150, Neg. LLF: 72.54920921912846
Iteration: 15, Func. Count: 160, Neg. LLF: 72.54913496619386
Iteration: 16, Func. Count: 170, Neg. LLF: 72.54911789180869
Iteration: 17, Func. Count: 180, Neg. LLF: 72.5491166913313
Iteration: 18, Func. Count: 189, Neg. LLF: 72.5491167254957
Optimization terminated successfully (Exit mode 0)
Current function value: 72.5491166913313
Iterations: 18
Function evaluations: 189
Gradient evaluations: 18
Iteration: 1, Func. Count: 8, Neg. LLF: 129.11055307129683
Iteration: 2, Func. Count: 16, Neg. LLF: 127.19517016603511
Iteration: 3, Func. Count: 24, Neg. LLF: 243.1548891818171
Iteration: 4, Func. Count: 32, Neg. LLF: 894.0312602331416
Iteration: 5, Func. Count: 40, Neg. LLF: 102.69872435630198
Iteration: 6, Func. Count: 48, Neg. LLF: 608.806362703233
Iteration: 7, Func. Count: 56, Neg. LLF: 73.27158211215215
Iteration: 8, Func. Count: 64, Neg. LLF: 111.34555887704795
Iteration: 9, Func. Count: 72, Neg. LLF: 72.28284058346759
Iteration: 10, Func. Count: 79, Neg. LLF: 72.25590430027736
Iteration: 11, Func. Count: 86, Neg. LLF: 72.25526530983943
Iteration: 12, Func. Count: 93, Neg. LLF: 72.25506691403265
Iteration: 13, Func. Count: 100, Neg. LLF: 72.25504695074099
Iteration: 14, Func. Count: 107, Neg. LLF: 72.25504606910172
Optimization terminated successfully (Exit mode 0)
Current function value: 72.25504606910172
Iterations: 14
Function evaluations: 107
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 342.0440812263977
Iteration: 2, Func. Count: 18, Neg. LLF: 1115.3534654208515
Iteration: 3, Func. Count: 27, Neg. LLF: 76.50549573928673
Iteration: 4, Func. Count: 37, Neg. LLF: 73.41280605323922
Iteration: 5, Func. Count: 45, Neg. LLF: 2614.337075300193
Iteration: 6, Func. Count: 55, Neg. LLF: 83.54092694086464
Iteration: 7, Func. Count: 65, Neg. LLF: 73.84060396920351
Iteration: 8, Func. Count: 74, Neg. LLF: 74.92075037441177
Iteration: 9, Func. Count: 83, Neg. LLF: 72.28611112029901
Iteration: 10, Func. Count: 91, Neg. LLF: 72.27280169923347
Iteration: 11, Func. Count: 99, Neg. LLF: 72.26150748610853
Iteration: 12, Func. Count: 107, Neg. LLF: 72.25667505203599
Iteration: 13, Func. Count: 115, Neg. LLF: 72.25566715107234
Iteration: 14, Func. Count: 123, Neg. LLF: 72.25531202197361
Iteration: 15, Func. Count: 131, Neg. LLF: 72.25510659311475
Iteration: 16, Func. Count: 139, Neg. LLF: 72.25505165070052
Iteration: 17, Func. Count: 147, Neg. LLF: 72.25504620188734
Iteration: 18, Func. Count: 154, Neg. LLF: 72.25504626379484
Optimization terminated successfully (Exit mode 0)
Current function value: 72.25504620188734
Iterations: 18
Function evaluations: 154
Gradient evaluations: 18
Iteration: 1, Func. Count: 10, Neg. LLF: 1458.9236680263498
Iteration: 2, Func. Count: 20, Neg. LLF: 133.9122345411055
Iteration: 3, Func. Count: 31, Neg. LLF: 82.00421120910045
Iteration: 4, Func. Count: 43, Neg. LLF: 85.01488256264086
Iteration: 5, Func. Count: 53, Neg. LLF: 73.10118055023611
Iteration: 6, Func. Count: 62, Neg. LLF: 77.88171282564385
Iteration: 7, Func. Count: 73, Neg. LLF: 102.24243637934497
Iteration: 8, Func. Count: 83, Neg. LLF: 73.05518180869525
Iteration: 9, Func. Count: 93, Neg. LLF: 72.27609774744671
Iteration: 10, Func. Count: 102, Neg. LLF: 72.26166700670998
Iteration: 11, Func. Count: 111, Neg. LLF: 72.25810951597383
Iteration: 12, Func. Count: 120, Neg. LLF: 72.25599507141939
Iteration: 13, Func. Count: 129, Neg. LLF: 72.25514295772973
Iteration: 14, Func. Count: 138, Neg. LLF: 72.25504998653055
Iteration: 15, Func. Count: 147, Neg. LLF: 72.25504612329264
Iteration: 16, Func. Count: 155, Neg. LLF: 72.25504619184755
Optimization terminated successfully (Exit mode 0)
Current function value: 72.25504612329264
Iterations: 16
Function evaluations: 155
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 730.9138333977919
Iteration: 2, Func. Count: 22, Neg. LLF: 145.6404730844279
Iteration: 3, Func. Count: 33, Neg. LLF: 92.69915520898878
Iteration: 4, Func. Count: 46, Neg. LLF: 5509.110110691606
Iteration: 5, Func. Count: 57, Neg. LLF: 74.99796119299457
Iteration: 6, Func. Count: 67, Neg. LLF: 107.1578664418041
Iteration: 7, Func. Count: 80, Neg. LLF: 155.18221604617588
Iteration: 8, Func. Count: 92, Neg. LLF: 72.49386313286409
Iteration: 9, Func. Count: 102, Neg. LLF: 72.32035904038563
Iteration: 10, Func. Count: 112, Neg. LLF: 72.26235495623476
Iteration: 11, Func. Count: 122, Neg. LLF: 72.25946631219247
Iteration: 12, Func. Count: 132, Neg. LLF: 72.25642596871451
Iteration: 13, Func. Count: 142, Neg. LLF: 72.25576004893412
Iteration: 14, Func. Count: 152, Neg. LLF: 72.25524694334749
Iteration: 15, Func. Count: 162, Neg. LLF: 72.25512555583855
Iteration: 16, Func. Count: 172, Neg. LLF: 72.25506269957123
Iteration: 17, Func. Count: 182, Neg. LLF: 72.25504777697728
Iteration: 18, Func. Count: 192, Neg. LLF: 72.25504610776301
Iteration: 19, Func. Count: 201, Neg. LLF: 72.2550461343322
Optimization terminated successfully (Exit mode 0)
Current function value: 72.25504610776301
Iterations: 19
Function evaluations: 201
Gradient evaluations: 19
Iteration: 1, Func. Count: 12, Neg. LLF: 2044.506112952786
Iteration: 2, Func. Count: 24, Neg. LLF: 684.5505716581479
Iteration: 3, Func. Count: 36, Neg. LLF: 94.348233775905
Iteration: 4, Func. Count: 50, Neg. LLF: 1108.6866601549357
Iteration: 5, Func. Count: 62, Neg. LLF: 73.01542566736983
Iteration: 6, Func. Count: 73, Neg. LLF: 81.64886997195721
Iteration: 7, Func. Count: 86, Neg. LLF: 79.01629676372019
Iteration: 8, Func. Count: 98, Neg. LLF: 72.32406845895493
Iteration: 9, Func. Count: 109, Neg. LLF: 72.27032304039851
Iteration: 10, Func. Count: 120, Neg. LLF: 72.26001152525721
Iteration: 11, Func. Count: 131, Neg. LLF: 72.25606603228113
Iteration: 12, Func. Count: 142, Neg. LLF: 72.25533831429132
Iteration: 13, Func. Count: 153, Neg. LLF: 72.25516683408182
Iteration: 14, Func. Count: 164, Neg. LLF: 72.25510142034975
Iteration: 15, Func. Count: 175, Neg. LLF: 72.25506046116219
Iteration: 16, Func. Count: 186, Neg. LLF: 72.25504766843649
Iteration: 17, Func. Count: 197, Neg. LLF: 72.25504612048663
Iteration: 18, Func. Count: 207, Neg. LLF: 72.25504616906758
Optimization terminated successfully (Exit mode 0)
Current function value: 72.25504612048663
Iterations: 18
Function evaluations: 207
Gradient evaluations: 18
Iteration: 1, Func. Count: 9, Neg. LLF: 1487.1101726437973
Iteration: 2, Func. Count: 18, Neg. LLF: 178.69450437447134
Iteration: 3, Func. Count: 27, Neg. LLF: 95055.94999785643
Iteration: 4, Func. Count: 36, Neg. LLF: 211.91702693644282
Iteration: 5, Func. Count: 45, Neg. LLF: 181.766241906911
Iteration: 6, Func. Count: 54, Neg. LLF: 254.9775812519518
Iteration: 7, Func. Count: 63, Neg. LLF: 164.34239257999798
Iteration: 8, Func. Count: 72, Neg. LLF: 117.55322315844771
Iteration: 9, Func. Count: 81, Neg. LLF: 73.70486185266624
Iteration: 10, Func. Count: 90, Neg. LLF: 96.89211731510183
Iteration: 11, Func. Count: 99, Neg. LLF: 78.87585047234704
Iteration: 12, Func. Count: 108, Neg. LLF: 71.7774832260066
Iteration: 13, Func. Count: 116, Neg. LLF: 71.7603737244104
Iteration: 14, Func. Count: 124, Neg. LLF: 71.7599614969178
Iteration: 15, Func. Count: 132, Neg. LLF: 71.75991889295715
Iteration: 16, Func. Count: 140, Neg. LLF: 71.75990254136043
Iteration: 17, Func. Count: 148, Neg. LLF: 71.75990219428357
Optimization terminated successfully (Exit mode 0)
Current function value: 71.75990219428357
Iterations: 17
Function evaluations: 148
Gradient evaluations: 17
Iteration: 1, Func. Count: 10, Neg. LLF: 157.19681110645956
Iteration: 2, Func. Count: 20, Neg. LLF: 832.6839393770326
Iteration: 3, Func. Count: 30, Neg. LLF: 75.33403022630328
Iteration: 4, Func. Count: 40, Neg. LLF: 78.22249017133718
Iteration: 5, Func. Count: 50, Neg. LLF: 1172.408262451649
Iteration: 6, Func. Count: 60, Neg. LLF: 73.73125544509367
Iteration: 7, Func. Count: 70, Neg. LLF: 93.47696522392853
Iteration: 8, Func. Count: 80, Neg. LLF: 72.58245059298666
Iteration: 9, Func. Count: 90, Neg. LLF: 71.81266154580807
Iteration: 10, Func. Count: 99, Neg. LLF: 71.76829237844443
Iteration: 11, Func. Count: 108, Neg. LLF: 71.7628427174276
Iteration: 12, Func. Count: 117, Neg. LLF: 71.7609448662697
Iteration: 13, Func. Count: 126, Neg. LLF: 71.75998639795394
Iteration: 14, Func. Count: 135, Neg. LLF: 71.75990669825072
Iteration: 15, Func. Count: 144, Neg. LLF: 71.75990206511379
Iteration: 16, Func. Count: 152, Neg. LLF: 71.75990212397818
Optimization terminated successfully (Exit mode 0)
Current function value: 71.75990206511379
Iterations: 16
Function evaluations: 152
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 109.14266795812095
Iteration: 2, Func. Count: 22, Neg. LLF: 914.335515720281
Iteration: 3, Func. Count: 33, Neg. LLF: 78.52431330471329
Iteration: 4, Func. Count: 44, Neg. LLF: 667.3144741769577
Iteration: 5, Func. Count: 55, Neg. LLF: 261.93440476775237
Iteration: 6, Func. Count: 66, Neg. LLF: 73.63838476534397
Iteration: 7, Func. Count: 77, Neg. LLF: 1613.0700743492173
Iteration: 8, Func. Count: 88, Neg. LLF: 101.16010990906574
Iteration: 9, Func. Count: 99, Neg. LLF: 71.86581116799127
Iteration: 10, Func. Count: 109, Neg. LLF: 71.79238337228689
Iteration: 11, Func. Count: 119, Neg. LLF: 71.76623335048488
Iteration: 12, Func. Count: 129, Neg. LLF: 71.76091585341904
Iteration: 13, Func. Count: 139, Neg. LLF: 71.7602056110319
Iteration: 14, Func. Count: 149, Neg. LLF: 71.75998730956786
Iteration: 15, Func. Count: 159, Neg. LLF: 71.75991084556345
Iteration: 16, Func. Count: 169, Neg. LLF: 71.75990220479568
Iteration: 17, Func. Count: 178, Neg. LLF: 71.75990226749396
Optimization terminated successfully (Exit mode 0)
Current function value: 71.75990220479568
Iterations: 17
Function evaluations: 178
Gradient evaluations: 17
Iteration: 1, Func. Count: 12, Neg. LLF: 1647.9055996033967
Iteration: 2, Func. Count: 24, Neg. LLF: 646.612163967716
Iteration: 3, Func. Count: 36, Neg. LLF: 105.60818179972003
Iteration: 4, Func. Count: 48, Neg. LLF: 531.5706091415769
Iteration: 5, Func. Count: 60, Neg. LLF: 75.4336678387267
Iteration: 6, Func. Count: 72, Neg. LLF: 91.41672701806765
Iteration: 7, Func. Count: 84, Neg. LLF: 72.83497859254567
Iteration: 8, Func. Count: 96, Neg. LLF: 71.98194904928386
Iteration: 9, Func. Count: 107, Neg. LLF: 73.55313554886851
Iteration: 10, Func. Count: 119, Neg. LLF: 72.08502386295847
Iteration: 11, Func. Count: 131, Neg. LLF: 71.77479816501406
Iteration: 12, Func. Count: 143, Neg. LLF: 71.76114634683805
Iteration: 13, Func. Count: 154, Neg. LLF: 71.75991905433789
Iteration: 14, Func. Count: 165, Neg. LLF: 71.75990529729462
Iteration: 15, Func. Count: 176, Neg. LLF: 71.75990210820187
Iteration: 16, Func. Count: 186, Neg. LLF: 71.75990211006192
Optimization terminated successfully (Exit mode 0)
Current function value: 71.75990210820187
Iterations: 16
Function evaluations: 186
Gradient evaluations: 16
Iteration: 1, Func. Count: 13, Neg. LLF: 1307.7877008264359
Iteration: 2, Func. Count: 26, Neg. LLF: 2165.5126382305734
Iteration: 3, Func. Count: 39, Neg. LLF: 6413744.616147385
Iteration: 4, Func. Count: 52, Neg. LLF: 84.22631853491437
Iteration: 5, Func. Count: 65, Neg. LLF: 78.33303785235766
Iteration: 6, Func. Count: 79, Neg. LLF: 75.85277327812942
Iteration: 7, Func. Count: 92, Neg. LLF: 72.74891547811616
Iteration: 8, Func. Count: 105, Neg. LLF: 76.05291935025261
Iteration: 9, Func. Count: 118, Neg. LLF: 71.77926433424952
Iteration: 10, Func. Count: 130, Neg. LLF: 71.76608960115881
Iteration: 11, Func. Count: 142, Neg. LLF: 71.76063279592228
Iteration: 12, Func. Count: 154, Neg. LLF: 71.75999337111097
Iteration: 13, Func. Count: 166, Neg. LLF: 71.75993762338854
Iteration: 14, Func. Count: 178, Neg. LLF: 71.7599063884588
Iteration: 15, Func. Count: 190, Neg. LLF: 71.75990194799962
Iteration: 16, Func. Count: 201, Neg. LLF: 71.75990200237705
Optimization terminated successfully (Exit mode 0)
Current function value: 71.75990194799962
Iterations: 16
Function evaluations: 201
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 124.91888965370023
Iteration: 2, Func. Count: 22, Neg. LLF: 2733514.5559713505
Iteration: 3, Func. Count: 32, Neg. LLF: 650373.2157056021
Iteration: 4, Func. Count: 42, Neg. LLF: 1109.4058984080289
Iteration: 5, Func. Count: 52, Neg. LLF: 5612.591748387268
Iteration: 6, Func. Count: 62, Neg. LLF: 48173.96095811835
Iteration: 7, Func. Count: 72, Neg. LLF: 199.4517743790244
Iteration: 8, Func. Count: 82, Neg. LLF: 75.779728715601
Iteration: 9, Func. Count: 92, Neg. LLF: 92.2569891079924
Iteration: 10, Func. Count: 102, Neg. LLF: 84.51368070373547
Iteration: 11, Func. Count: 112, Neg. LLF: 133.3142739623411
Iteration: 12, Func. Count: 122, Neg. LLF: 88.4152459319176
Iteration: 13, Func. Count: 132, Neg. LLF: 72.10757573992443
Iteration: 14, Func. Count: 142, Neg. LLF: 71.69177445474091
Iteration: 15, Func. Count: 151, Neg. LLF: 71.77959536133577
Iteration: 16, Func. Count: 161, Neg. LLF: 71.80924377679546
Iteration: 17, Func. Count: 171, Neg. LLF: 71.65803736163437
Iteration: 18, Func. Count: 180, Neg. LLF: 71.6569558661573
Iteration: 19, Func. Count: 189, Neg. LLF: 71.65614490414023
Iteration: 20, Func. Count: 198, Neg. LLF: 71.65551281755944
Iteration: 21, Func. Count: 207, Neg. LLF: 71.65541436875539
Iteration: 22, Func. Count: 216, Neg. LLF: 71.65540665824989
Iteration: 23, Func. Count: 224, Neg. LLF: 71.65540665825398
Optimization terminated successfully (Exit mode 0)
Current function value: 71.65540665824989
Iterations: 23
Function evaluations: 224
Gradient evaluations: 23
Iteration: 1, Func. Count: 11, Neg. LLF: 4545587.765759545
Iteration: 2, Func. Count: 22, Neg. LLF: 3197605.47734196
Iteration: 3, Func. Count: 33, Neg. LLF: 6284872.390545238
Iteration: 4, Func. Count: 44, Neg. LLF: 80.8444568390799
Iteration: 5, Func. Count: 55, Neg. LLF: 83.02995456162544
Iteration: 6, Func. Count: 66, Neg. LLF: 137.95132022502273
Iteration: 7, Func. Count: 77, Neg. LLF: 75.08737563303082
Iteration: 8, Func. Count: 88, Neg. LLF: 72.72565762365073
Iteration: 9, Func. Count: 99, Neg. LLF: 79.89736311878481
Iteration: 10, Func. Count: 110, Neg. LLF: 71.69563971910355
Iteration: 11, Func. Count: 120, Neg. LLF: 71.774055025303
Iteration: 12, Func. Count: 131, Neg. LLF: 71.66215457842095
Iteration: 13, Func. Count: 141, Neg. LLF: 71.65792451085275
Iteration: 14, Func. Count: 151, Neg. LLF: 71.65573361895144
Iteration: 15, Func. Count: 161, Neg. LLF: 71.65545672144485
Iteration: 16, Func. Count: 171, Neg. LLF: 71.65540909822603
Iteration: 17, Func. Count: 181, Neg. LLF: 71.6554066901901
Iteration: 18, Func. Count: 190, Neg. LLF: 71.6554067438026
Optimization terminated successfully (Exit mode 0)
Current function value: 71.6554066901901
Iterations: 18
Function evaluations: 190
Gradient evaluations: 18
Iteration: 1, Func. Count: 12, Neg. LLF: 5364363.892511172
Iteration: 2, Func. Count: 24, Neg. LLF: 1574061.48823547
Iteration: 3, Func. Count: 36, Neg. LLF: 2864177.1590575967
Iteration: 4, Func. Count: 48, Neg. LLF: 86.67821381198857
Iteration: 5, Func. Count: 60, Neg. LLF: 73.89584664727393
Iteration: 6, Func. Count: 72, Neg. LLF: 172359.62195476188
Iteration: 7, Func. Count: 84, Neg. LLF: 80.29052196296573
Iteration: 8, Func. Count: 96, Neg. LLF: 85.79244652353644
Iteration: 9, Func. Count: 108, Neg. LLF: 101.2854727425016
Iteration: 10, Func. Count: 120, Neg. LLF: 81.05139736599132
Iteration: 11, Func. Count: 132, Neg. LLF: 72.22042372745018
Iteration: 12, Func. Count: 144, Neg. LLF: 71.69798925677442
Iteration: 13, Func. Count: 155, Neg. LLF: 71.90496884742306
Iteration: 14, Func. Count: 167, Neg. LLF: 71.66319599796249
Iteration: 15, Func. Count: 178, Neg. LLF: 71.65805616776161
Iteration: 16, Func. Count: 189, Neg. LLF: 71.65607806733829
Iteration: 17, Func. Count: 200, Neg. LLF: 71.65545545175038
Iteration: 18, Func. Count: 211, Neg. LLF: 71.65540743804806
Iteration: 19, Func. Count: 222, Neg. LLF: 71.65540650846842
Optimization terminated successfully (Exit mode 0)
Current function value: 71.65540650846842
Iterations: 19
Function evaluations: 222
Gradient evaluations: 19
Iteration: 1, Func. Count: 13, Neg. LLF: 6221324.133643914
Iteration: 2, Func. Count: 26, Neg. LLF: 12781001.523724284
Iteration: 3, Func. Count: 39, Neg. LLF: 631.5820194371919
Iteration: 4, Func. Count: 52, Neg. LLF: 586.9849540523644
Iteration: 5, Func. Count: 65, Neg. LLF: 76.81312508396874
Iteration: 6, Func. Count: 78, Neg. LLF: 73.97187829365458
Iteration: 7, Func. Count: 91, Neg. LLF: 76.27554362077566
Iteration: 8, Func. Count: 104, Neg. LLF: 90.01045885288096
Iteration: 9, Func. Count: 117, Neg. LLF: 72.71611373951762
Iteration: 10, Func. Count: 130, Neg. LLF: 78.68862087098053
Iteration: 11, Func. Count: 143, Neg. LLF: 71.69616973066546
Iteration: 12, Func. Count: 155, Neg. LLF: 71.63128148434947
Iteration: 13, Func. Count: 167, Neg. LLF: 71.60888739915154
Iteration: 14, Func. Count: 179, Neg. LLF: 71.5462888648119
Iteration: 15, Func. Count: 191, Neg. LLF: 71.53592131308184
Iteration: 16, Func. Count: 203, Neg. LLF: 71.53860225813796
Iteration: 17, Func. Count: 216, Neg. LLF: 71.53223341735395
Iteration: 18, Func. Count: 228, Neg. LLF: 71.53221436049047
Iteration: 19, Func. Count: 240, Neg. LLF: 71.53221394464879
Optimization terminated successfully (Exit mode 0)
Current function value: 71.53221394464879
Iterations: 19
Function evaluations: 240
Gradient evaluations: 19
Iteration: 1, Func. Count: 14, Neg. LLF: 7818002.13199705
Iteration: 2, Func. Count: 28, Neg. LLF: 12575210.161946049
Iteration: 3, Func. Count: 42, Neg. LLF: 417.49195540072384
Iteration: 4, Func. Count: 56, Neg. LLF: 432.0165313455169
Iteration: 5, Func. Count: 70, Neg. LLF: 75.8816897976803
Iteration: 6, Func. Count: 84, Neg. LLF: 73.282663861201
Iteration: 7, Func. Count: 97, Neg. LLF: 103.70980006484257
Iteration: 8, Func. Count: 111, Neg. LLF: 92.80955440724294
Iteration: 9, Func. Count: 125, Neg. LLF: 75.79026043638615
Iteration: 10, Func. Count: 139, Neg. LLF: 73.75572026036743
Iteration: 11, Func. Count: 153, Neg. LLF: 71.7387981867286
Iteration: 12, Func. Count: 167, Neg. LLF: 71.94085893177333
Iteration: 13, Func. Count: 181, Neg. LLF: 71.59769333737468
Iteration: 14, Func. Count: 194, Neg. LLF: 71.5573915469846
Iteration: 15, Func. Count: 207, Neg. LLF: 71.54653258746953
Iteration: 16, Func. Count: 220, Neg. LLF: 71.5336915152111
Iteration: 17, Func. Count: 233, Neg. LLF: 71.53265322137756
Iteration: 18, Func. Count: 246, Neg. LLF: 71.532391747821
Iteration: 19, Func. Count: 259, Neg. LLF: 71.53231561426591
Iteration: 20, Func. Count: 272, Neg. LLF: 71.53222738955608
Iteration: 21, Func. Count: 285, Neg. LLF: 71.53221475830459
Iteration: 22, Func. Count: 298, Neg. LLF: 71.53221391998882
Optimization terminated successfully (Exit mode 0)
Current function value: 71.53221391998882
Iterations: 22
Function evaluations: 298
Gradient evaluations: 22
Iteration: 1, Func. Count: 11, Neg. LLF: 7947348.778775161
Iteration: 2, Func. Count: 22, Neg. LLF: 411.37291817022447
Iteration: 3, Func. Count: 33, Neg. LLF: 179.78558072495017
Iteration: 4, Func. Count: 44, Neg. LLF: 69068.15399655461
Iteration: 5, Func. Count: 55, Neg. LLF: 731.7473529748659
Iteration: 6, Func. Count: 66, Neg. LLF: 121.61026651988706
Iteration: 7, Func. Count: 77, Neg. LLF: 176.85805036732532
Iteration: 8, Func. Count: 88, Neg. LLF: 320.2311263928918
Iteration: 9, Func. Count: 99, Neg. LLF: 287.73919553503885
Iteration: 10, Func. Count: 110, Neg. LLF: 73.50510388362277
Iteration: 11, Func. Count: 121, Neg. LLF: 95.44120878847386
Iteration: 12, Func. Count: 132, Neg. LLF: 73.4552880442926
Iteration: 13, Func. Count: 143, Neg. LLF: 71.70099936376494
Iteration: 14, Func. Count: 153, Neg. LLF: 71.82238112560017
Iteration: 15, Func. Count: 164, Neg. LLF: 71.7366664788986
Iteration: 16, Func. Count: 175, Neg. LLF: 71.67019602634389
Iteration: 17, Func. Count: 185, Neg. LLF: 71.66212102330323
Iteration: 18, Func. Count: 195, Neg. LLF: 71.65675600105102
Iteration: 19, Func. Count: 205, Neg. LLF: 71.65544453318032
Iteration: 20, Func. Count: 215, Neg. LLF: 71.65541157783572
Iteration: 21, Func. Count: 225, Neg. LLF: 71.65540680857892
Iteration: 22, Func. Count: 234, Neg. LLF: 71.65540684778604
Optimization terminated successfully (Exit mode 0)
Current function value: 71.65540680857892
Iterations: 22
Function evaluations: 234
Gradient evaluations: 22
Iteration: 1, Func. Count: 12, Neg. LLF: 5333739.530442931
Iteration: 2, Func. Count: 24, Neg. LLF: 3750649.4318692842
Iteration: 3, Func. Count: 36, Neg. LLF: 8874142.60051134
Iteration: 4, Func. Count: 48, Neg. LLF: 84.50297550804252
Iteration: 5, Func. Count: 60, Neg. LLF: 87.98802650955739
Iteration: 6, Func. Count: 72, Neg. LLF: 79.52301767485372
Iteration: 7, Func. Count: 84, Neg. LLF: 75.52175107144141
Iteration: 8, Func. Count: 96, Neg. LLF: 72.64884203828609
Iteration: 9, Func. Count: 108, Neg. LLF: 74.08750676513031
Iteration: 10, Func. Count: 120, Neg. LLF: 71.68422233224285
Iteration: 11, Func. Count: 131, Neg. LLF: 71.81609596309121
Iteration: 12, Func. Count: 143, Neg. LLF: 71.65991914990751
Iteration: 13, Func. Count: 154, Neg. LLF: 71.65761702874826
Iteration: 14, Func. Count: 165, Neg. LLF: 71.65551930575249
Iteration: 15, Func. Count: 176, Neg. LLF: 71.65542059455527
Iteration: 16, Func. Count: 187, Neg. LLF: 71.65540840324006
Iteration: 17, Func. Count: 198, Neg. LLF: 71.65540656114801
Iteration: 18, Func. Count: 208, Neg. LLF: 71.65540661469663
Optimization terminated successfully (Exit mode 0)
Current function value: 71.65540656114801
Iterations: 18
Function evaluations: 208
Gradient evaluations: 18
Iteration: 1, Func. Count: 13, Neg. LLF: 6039500.395429126
Iteration: 2, Func. Count: 26, Neg. LLF: 3509211.2407049453
Iteration: 3, Func. Count: 39, Neg. LLF: 2875233.1266310196
Iteration: 4, Func. Count: 52, Neg. LLF: 86.1337164415378
Iteration: 5, Func. Count: 65, Neg. LLF: 74.74748354765687
Iteration: 6, Func. Count: 78, Neg. LLF: 93.5447597912585
Iteration: 7, Func. Count: 91, Neg. LLF: 90.69071526205964
Iteration: 8, Func. Count: 104, Neg. LLF: 213.8526707632995
Iteration: 9, Func. Count: 117, Neg. LLF: 72.93984234666759
Iteration: 10, Func. Count: 130, Neg. LLF: 177.77184224571815
Iteration: 11, Func. Count: 143, Neg. LLF: 71.73580849908876
Iteration: 12, Func. Count: 155, Neg. LLF: 71.74643232429639
Iteration: 13, Func. Count: 168, Neg. LLF: 71.67530653527608
Iteration: 14, Func. Count: 180, Neg. LLF: 71.8745201706053
Iteration: 15, Func. Count: 193, Neg. LLF: 71.65820753387453
Iteration: 16, Func. Count: 205, Neg. LLF: 71.65620050899236
Iteration: 17, Func. Count: 217, Neg. LLF: 71.65552531763639
Iteration: 18, Func. Count: 229, Neg. LLF: 71.65542411822464
Iteration: 19, Func. Count: 241, Neg. LLF: 71.65540741470984
Iteration: 20, Func. Count: 253, Neg. LLF: 71.65540652168866
Optimization terminated successfully (Exit mode 0)
Current function value: 71.65540652168866
Iterations: 20
Function evaluations: 253
Gradient evaluations: 20
Iteration: 1, Func. Count: 14, Neg. LLF: 7360387.821581095
Iteration: 2, Func. Count: 28, Neg. LLF: 12471757.263047023
Iteration: 3, Func. Count: 42, Neg. LLF: 189.50121623529134
Iteration: 4, Func. Count: 56, Neg. LLF: 11831.331243453686
Iteration: 5, Func. Count: 70, Neg. LLF: 77.44423634950977
Iteration: 6, Func. Count: 84, Neg. LLF: 77.08125849982738
Iteration: 7, Func. Count: 98, Neg. LLF: 82.00426266388018
Iteration: 8, Func. Count: 112, Neg. LLF: 73.01950888364993
Iteration: 9, Func. Count: 126, Neg. LLF: 81.90615509043477
Iteration: 10, Func. Count: 141, Neg. LLF: 71.6789823785604
Iteration: 11, Func. Count: 154, Neg. LLF: 71.73908991468456
Iteration: 12, Func. Count: 168, Neg. LLF: 71.62061321490256
Iteration: 13, Func. Count: 181, Neg. LLF: 71.64913939760086
Iteration: 14, Func. Count: 195, Neg. LLF: 71.56464941242874
Iteration: 15, Func. Count: 208, Neg. LLF: 71.5386375972399
Iteration: 16, Func. Count: 221, Neg. LLF: 71.53265681788187
Iteration: 17, Func. Count: 234, Neg. LLF: 71.53223022924905
Iteration: 18, Func. Count: 247, Neg. LLF: 71.53221501526137
Iteration: 19, Func. Count: 260, Neg. LLF: 71.53221392198935
Iteration: 20, Func. Count: 272, Neg. LLF: 71.5322139166258
Optimization terminated successfully (Exit mode 0)
Current function value: 71.53221392198935
Iterations: 20
Function evaluations: 272
Gradient evaluations: 20
Iteration: 1, Func. Count: 15, Neg. LLF: 6460063.469685889
Iteration: 2, Func. Count: 30, Neg. LLF: 12252888.540913822
Iteration: 3, Func. Count: 45, Neg. LLF: 183.81051675807402
Iteration: 4, Func. Count: 60, Neg. LLF: 2884549.8884136993
Iteration: 5, Func. Count: 75, Neg. LLF: 79.2550550840038
Iteration: 6, Func. Count: 90, Neg. LLF: 73.990072400468
Iteration: 7, Func. Count: 105, Neg. LLF: 76.43551132141519
Iteration: 8, Func. Count: 120, Neg. LLF: 72.46583658604267
Iteration: 9, Func. Count: 135, Neg. LLF: 77.90252997166151
Iteration: 10, Func. Count: 150, Neg. LLF: 71.67160659456292
Iteration: 11, Func. Count: 164, Neg. LLF: 71.69644901525899
Iteration: 12, Func. Count: 179, Neg. LLF: 71.61931595639938
Iteration: 13, Func. Count: 193, Neg. LLF: 71.75229706094999
Iteration: 14, Func. Count: 208, Neg. LLF: 71.58439944270236
Iteration: 15, Func. Count: 222, Neg. LLF: 71.55222959520151
Iteration: 16, Func. Count: 236, Neg. LLF: 71.55504334107518
Iteration: 17, Func. Count: 251, Neg. LLF: 71.53377604001884
Iteration: 18, Func. Count: 265, Neg. LLF: 71.53231844156268
Iteration: 19, Func. Count: 279, Neg. LLF: 71.53222432821397
Iteration: 20, Func. Count: 293, Neg. LLF: 71.53221443187829
Iteration: 21, Func. Count: 306, Neg. LLF: 71.53221450993806
Optimization terminated successfully (Exit mode 0)
Current function value: 71.53221443187829
Iterations: 21
Function evaluations: 306
Gradient evaluations: 21
Iteration: 1, Func. Count: 8, Neg. LLF: 105.99214751670226
Iteration: 2, Func. Count: 17, Neg. LLF: 536.5454536165882
Iteration: 3, Func. Count: 25, Neg. LLF: 414.6595264656083
Iteration: 4, Func. Count: 33, Neg. LLF: 4186.063229970544
Iteration: 5, Func. Count: 41, Neg. LLF: 194.5093847523708
Iteration: 6, Func. Count: 49, Neg. LLF: 123.86068823990581
Iteration: 7, Func. Count: 57, Neg. LLF: 140.43844427818937
Iteration: 8, Func. Count: 65, Neg. LLF: 122.19290763884183
Iteration: 9, Func. Count: 73, Neg. LLF: 74.63306102008755
Iteration: 10, Func. Count: 81, Neg. LLF: 98.64146562088304
Iteration: 11, Func. Count: 89, Neg. LLF: 75.59518039070093
Iteration: 12, Func. Count: 97, Neg. LLF: 72.61458989050816
Iteration: 13, Func. Count: 104, Neg. LLF: 72.55790783294127
Iteration: 14, Func. Count: 111, Neg. LLF: 72.55011514352735
Iteration: 15, Func. Count: 118, Neg. LLF: 72.54912616450962
Iteration: 16, Func. Count: 125, Neg. LLF: 72.54911678520132
Iteration: 17, Func. Count: 131, Neg. LLF: 72.54911685170127
Optimization terminated successfully (Exit mode 0)
Current function value: 72.54911678520132
Iterations: 17
Function evaluations: 131
Gradient evaluations: 17
Iteration: 1, Func. Count: 9, Neg. LLF: 474.15875672802815
Iteration: 2, Func. Count: 18, Neg. LLF: 821.0168078309258
Iteration: 3, Func. Count: 27, Neg. LLF: 81.1682819069319
Iteration: 4, Func. Count: 38, Neg. LLF: 74.57284767899885
Iteration: 5, Func. Count: 46, Neg. LLF: 1062.6378660981043
Iteration: 6, Func. Count: 56, Neg. LLF: 9464.4769576687
Iteration: 7, Func. Count: 65, Neg. LLF: 94.80964882525438
Iteration: 8, Func. Count: 74, Neg. LLF: 72.63465813448575
Iteration: 9, Func. Count: 82, Neg. LLF: 72.58929762149187
Iteration: 10, Func. Count: 90, Neg. LLF: 72.56040708916812
Iteration: 11, Func. Count: 98, Neg. LLF: 72.55041375632183
Iteration: 12, Func. Count: 106, Neg. LLF: 72.54953755464864
Iteration: 13, Func. Count: 114, Neg. LLF: 72.54925484161792
Iteration: 14, Func. Count: 122, Neg. LLF: 72.54915895917988
Iteration: 15, Func. Count: 130, Neg. LLF: 72.54913024630625
Iteration: 16, Func. Count: 138, Neg. LLF: 72.54911890235213
Iteration: 17, Func. Count: 146, Neg. LLF: 72.5491167980885
Iteration: 18, Func. Count: 153, Neg. LLF: 72.54911684189574
Optimization terminated successfully (Exit mode 0)
Current function value: 72.5491167980885
Iterations: 18
Function evaluations: 153
Gradient evaluations: 18
Iteration: 1, Func. Count: 10, Neg. LLF: 1281.584532596349
Iteration: 2, Func. Count: 20, Neg. LLF: 3403.134926723607
Iteration: 3, Func. Count: 30, Neg. LLF: 84.11132704356606
Iteration: 4, Func. Count: 42, Neg. LLF: 73.95116607233744
Iteration: 5, Func. Count: 51, Neg. LLF: 86.90354739593674
Iteration: 6, Func. Count: 61, Neg. LLF: 73.27066776439978
Iteration: 7, Func. Count: 71, Neg. LLF: 73.396010209344
Iteration: 8, Func. Count: 81, Neg. LLF: 72.59925611950676
Iteration: 9, Func. Count: 90, Neg. LLF: 72.55694194740238
Iteration: 10, Func. Count: 99, Neg. LLF: 72.5503609622938
Iteration: 11, Func. Count: 108, Neg. LLF: 72.54922127061934
Iteration: 12, Func. Count: 117, Neg. LLF: 72.54912193397548
Iteration: 13, Func. Count: 126, Neg. LLF: 72.54911666688677
Iteration: 14, Func. Count: 134, Neg. LLF: 72.54911673242954
Optimization terminated successfully (Exit mode 0)
Current function value: 72.54911666688677
Iterations: 14
Function evaluations: 134
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 1274.2079049064698
Iteration: 2, Func. Count: 22, Neg. LLF: 162.27665743977371
Iteration: 3, Func. Count: 33, Neg. LLF: 74.2535890702224
Iteration: 4, Func. Count: 43, Neg. LLF: 87.99029443343639
Iteration: 5, Func. Count: 55, Neg. LLF: 3008.69421992277
Iteration: 6, Func. Count: 66, Neg. LLF: 378.11039278731465
Iteration: 7, Func. Count: 77, Neg. LLF: 75362.41325357565
Iteration: 8, Func. Count: 88, Neg. LLF: 72.86601623889747
Iteration: 9, Func. Count: 98, Neg. LLF: 72.84018415414285
Iteration: 10, Func. Count: 109, Neg. LLF: 72.63876445070035
Iteration: 11, Func. Count: 120, Neg. LLF: 72.55761459359059
Iteration: 12, Func. Count: 130, Neg. LLF: 72.550338538212
Iteration: 13, Func. Count: 140, Neg. LLF: 72.54954880104827
Iteration: 14, Func. Count: 150, Neg. LLF: 72.54918985108921
Iteration: 15, Func. Count: 160, Neg. LLF: 72.54912745233312
Iteration: 16, Func. Count: 170, Neg. LLF: 72.54911725344095
Iteration: 17, Func. Count: 179, Neg. LLF: 72.54911727765607
Optimization terminated successfully (Exit mode 0)
Current function value: 72.54911725344095
Iterations: 17
Function evaluations: 179
Gradient evaluations: 17
Iteration: 1, Func. Count: 12, Neg. LLF: 19348.541498696068
Iteration: 2, Func. Count: 24, Neg. LLF: 157.4586666264352
Iteration: 3, Func. Count: 36, Neg. LLF: 86.74108750503318
Iteration: 4, Func. Count: 48, Neg. LLF: 96.5999954686931
Iteration: 5, Func. Count: 60, Neg. LLF: 73.91082073000791
Iteration: 6, Func. Count: 71, Neg. LLF: 87.98445844663833
Iteration: 7, Func. Count: 84, Neg. LLF: 74.25443266944647
Iteration: 8, Func. Count: 96, Neg. LLF: 74.79031308816468
Iteration: 9, Func. Count: 108, Neg. LLF: 72.70087327301106
Iteration: 10, Func. Count: 120, Neg. LLF: 72.55045715927346
Iteration: 11, Func. Count: 131, Neg. LLF: 72.54965603001756
Iteration: 12, Func. Count: 142, Neg. LLF: 72.54945775494583
Iteration: 13, Func. Count: 153, Neg. LLF: 72.54918269027115
Iteration: 14, Func. Count: 164, Neg. LLF: 72.54913774058173
Iteration: 15, Func. Count: 175, Neg. LLF: 72.54912200317493
Iteration: 16, Func. Count: 186, Neg. LLF: 72.54911764722581
Iteration: 17, Func. Count: 197, Neg. LLF: 72.54911670922316
Optimization terminated successfully (Exit mode 0)
Current function value: 72.54911670922316
Iterations: 17
Function evaluations: 197
Gradient evaluations: 17
Iteration: 1, Func. Count: 9, Neg. LLF: 104.95951536594426
Iteration: 2, Func. Count: 19, Neg. LLF: 520.4177689180274
Iteration: 3, Func. Count: 28, Neg. LLF: 1089.995345947838
Iteration: 4, Func. Count: 37, Neg. LLF: 4600.972904666236
Iteration: 5, Func. Count: 46, Neg. LLF: 3389.3060335008067
Iteration: 6, Func. Count: 55, Neg. LLF: 375.075905234334
Iteration: 7, Func. Count: 64, Neg. LLF: 106.36529285587471
Iteration: 8, Func. Count: 73, Neg. LLF: 367.8047272318553
Iteration: 9, Func. Count: 82, Neg. LLF: 130.60793805888804
Iteration: 10, Func. Count: 91, Neg. LLF: 75.40634159153886
Iteration: 11, Func. Count: 100, Neg. LLF: 123.81189414677397
Iteration: 12, Func. Count: 109, Neg. LLF: 72.94918930397759
Iteration: 13, Func. Count: 118, Neg. LLF: 72.30405554901968
Iteration: 14, Func. Count: 126, Neg. LLF: 72.26267630041008
Iteration: 15, Func. Count: 134, Neg. LLF: 72.25548647012036
Iteration: 16, Func. Count: 142, Neg. LLF: 72.25506815024163
Iteration: 17, Func. Count: 150, Neg. LLF: 72.2550463069064
Iteration: 18, Func. Count: 157, Neg. LLF: 72.25504626673516
Optimization terminated successfully (Exit mode 0)
Current function value: 72.2550463069064
Iterations: 18
Function evaluations: 157
Gradient evaluations: 18
Iteration: 1, Func. Count: 10, Neg. LLF: 180.8365995977064
Iteration: 2, Func. Count: 20, Neg. LLF: 378.0070032464662
Iteration: 3, Func. Count: 30, Neg. LLF: 80.44921843776734
Iteration: 4, Func. Count: 41, Neg. LLF: 73.58524976981134
Iteration: 5, Func. Count: 50, Neg. LLF: 5094.397365950377
Iteration: 6, Func. Count: 60, Neg. LLF: 142.80964904515517
Iteration: 7, Func. Count: 72, Neg. LLF: 72.50960322960047
Iteration: 8, Func. Count: 81, Neg. LLF: 73.80087968264937
Iteration: 9, Func. Count: 92, Neg. LLF: 72.37282647613792
Iteration: 10, Func. Count: 101, Neg. LLF: 72.26956066437144
Iteration: 11, Func. Count: 110, Neg. LLF: 72.2584187505227
Iteration: 12, Func. Count: 119, Neg. LLF: 72.25625354037378
Iteration: 13, Func. Count: 128, Neg. LLF: 72.25532728246935
Iteration: 14, Func. Count: 137, Neg. LLF: 72.25515033073621
Iteration: 15, Func. Count: 146, Neg. LLF: 72.25506138495345
Iteration: 16, Func. Count: 155, Neg. LLF: 72.25505063891535
Iteration: 17, Func. Count: 164, Neg. LLF: 72.25504793133783
Iteration: 18, Func. Count: 173, Neg. LLF: 72.2550464990516
Iteration: 19, Func. Count: 181, Neg. LLF: 72.25504656092171
Optimization terminated successfully (Exit mode 0)
Current function value: 72.2550464990516
Iterations: 19
Function evaluations: 181
Gradient evaluations: 19
Iteration: 1, Func. Count: 11, Neg. LLF: 1806.1618106332114
Iteration: 2, Func. Count: 22, Neg. LLF: 159.31413751347034
Iteration: 3, Func. Count: 33, Neg. LLF: 94.4370266374415
Iteration: 4, Func. Count: 46, Neg. LLF: 81.29004763859608
Iteration: 5, Func. Count: 57, Neg. LLF: 73.67503963171897
Iteration: 6, Func. Count: 67, Neg. LLF: 81.08885978380664
Iteration: 7, Func. Count: 79, Neg. LLF: 130.0663380776192
Iteration: 8, Func. Count: 90, Neg. LLF: 73.35206966068121
Iteration: 9, Func. Count: 101, Neg. LLF: 72.3441066365619
Iteration: 10, Func. Count: 111, Neg. LLF: 72.28086990469863
Iteration: 11, Func. Count: 121, Neg. LLF: 72.25850088611858
Iteration: 12, Func. Count: 131, Neg. LLF: 72.25628300414243
Iteration: 13, Func. Count: 141, Neg. LLF: 72.25535767518728
Iteration: 14, Func. Count: 151, Neg. LLF: 72.2550751988523
Iteration: 15, Func. Count: 161, Neg. LLF: 72.25505332945386
Iteration: 16, Func. Count: 171, Neg. LLF: 72.25505006156587
Iteration: 17, Func. Count: 181, Neg. LLF: 72.25504749346074
Iteration: 18, Func. Count: 191, Neg. LLF: 72.25504626827221
Iteration: 19, Func. Count: 200, Neg. LLF: 72.25504633682868
Optimization terminated successfully (Exit mode 0)
Current function value: 72.25504626827221
Iterations: 19
Function evaluations: 200
Gradient evaluations: 19
Iteration: 1, Func. Count: 12, Neg. LLF: 91.41303842945051
Iteration: 2, Func. Count: 26, Neg. LLF: 145.15801677755033
Iteration: 3, Func. Count: 38, Neg. LLF: 618.4376379174072
Iteration: 4, Func. Count: 50, Neg. LLF: 147.74482976366897
Iteration: 5, Func. Count: 62, Neg. LLF: 73.7306551064212
Iteration: 6, Func. Count: 73, Neg. LLF: 100.19090869237628
Iteration: 7, Func. Count: 86, Neg. LLF: 119.30793189604991
Iteration: 8, Func. Count: 98, Neg. LLF: 72.58097804740397
Iteration: 9, Func. Count: 109, Neg. LLF: 72.63739323571171
Iteration: 10, Func. Count: 121, Neg. LLF: 72.31540824506799
Iteration: 11, Func. Count: 132, Neg. LLF: 72.29377328358513
Iteration: 12, Func. Count: 143, Neg. LLF: 72.25740865342001
Iteration: 13, Func. Count: 154, Neg. LLF: 72.25553559684245
Iteration: 14, Func. Count: 165, Neg. LLF: 72.25535876306186
Iteration: 15, Func. Count: 176, Neg. LLF: 72.25515903208716
Iteration: 16, Func. Count: 187, Neg. LLF: 72.2550657930878
Iteration: 17, Func. Count: 198, Neg. LLF: 72.2550473389961
Iteration: 18, Func. Count: 209, Neg. LLF: 72.2550460756319
Iteration: 19, Func. Count: 219, Neg. LLF: 72.25504610221208
Optimization terminated successfully (Exit mode 0)
Current function value: 72.2550460756319
Iterations: 19
Function evaluations: 219
Gradient evaluations: 19
Iteration: 1, Func. Count: 13, Neg. LLF: 103.24056127005112
Iteration: 2, Func. Count: 28, Neg. LLF: 144.9342687569335
Iteration: 3, Func. Count: 41, Neg. LLF: 2109.7060611166153
Iteration: 4, Func. Count: 54, Neg. LLF: 186.33467993728308
Iteration: 5, Func. Count: 67, Neg. LLF: 74.30377044783434
Iteration: 6, Func. Count: 79, Neg. LLF: 101.38784536527443
Iteration: 7, Func. Count: 93, Neg. LLF: 120.56225976689379
Iteration: 8, Func. Count: 107, Neg. LLF: 73.86594668635074
Iteration: 9, Func. Count: 120, Neg. LLF: 72.38596124942545
Iteration: 10, Func. Count: 132, Neg. LLF: 72.33526752567761
Iteration: 11, Func. Count: 144, Neg. LLF: 72.28059017049142
Iteration: 12, Func. Count: 156, Neg. LLF: 72.25637566466948
Iteration: 13, Func. Count: 168, Neg. LLF: 72.25515898882372
Iteration: 14, Func. Count: 180, Neg. LLF: 72.2550893282068
Iteration: 15, Func. Count: 192, Neg. LLF: 72.25507262852601
Iteration: 16, Func. Count: 204, Neg. LLF: 72.25505063458486
Iteration: 17, Func. Count: 216, Neg. LLF: 72.25504677069588
Iteration: 18, Func. Count: 228, Neg. LLF: 72.25504607245668
Optimization terminated successfully (Exit mode 0)
Current function value: 72.25504607245668
Iterations: 18
Function evaluations: 228
Gradient evaluations: 18
Iteration: 1, Func. Count: 10, Neg. LLF: 14671.099658359451
Iteration: 2, Func. Count: 20, Neg. LLF: 145.20733187950125
Iteration: 3, Func. Count: 30, Neg. LLF: 1095.3824437132198
Iteration: 4, Func. Count: 40, Neg. LLF: 329.0771914392655
Iteration: 5, Func. Count: 50, Neg. LLF: 146.76584420167143
Iteration: 6, Func. Count: 60, Neg. LLF: 355.79485195691905
Iteration: 7, Func. Count: 70, Neg. LLF: 139.9701432919705
Iteration: 8, Func. Count: 80, Neg. LLF: 74.43477683248564
Iteration: 9, Func. Count: 90, Neg. LLF: 112.42264510594167
Iteration: 10, Func. Count: 100, Neg. LLF: 74.27585643395692
Iteration: 11, Func. Count: 110, Neg. LLF: 73.72839453524314
Iteration: 12, Func. Count: 120, Neg. LLF: 71.76818476094768
Iteration: 13, Func. Count: 129, Neg. LLF: 71.76171202274983
Iteration: 14, Func. Count: 138, Neg. LLF: 71.76009312455919
Iteration: 15, Func. Count: 147, Neg. LLF: 71.75991709002318
Iteration: 16, Func. Count: 156, Neg. LLF: 71.75990248110097
Iteration: 17, Func. Count: 165, Neg. LLF: 71.75990201918215
Optimization terminated successfully (Exit mode 0)
Current function value: 71.75990201918215
Iterations: 17
Function evaluations: 165
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 114.97073775260709
Iteration: 2, Func. Count: 22, Neg. LLF: 1837.1481756566436
Iteration: 3, Func. Count: 33, Neg. LLF: 84.37266366343461
Iteration: 4, Func. Count: 45, Neg. LLF: 77.37264064675026
Iteration: 5, Func. Count: 56, Neg. LLF: 93.17865316279526
Iteration: 6, Func. Count: 67, Neg. LLF: 73.95183937457861
Iteration: 7, Func. Count: 78, Neg. LLF: 73.60007120135224
Iteration: 8, Func. Count: 89, Neg. LLF: 73.0492900307051
Iteration: 9, Func. Count: 100, Neg. LLF: 73.39985580258204
Iteration: 10, Func. Count: 111, Neg. LLF: 71.77167197170962
Iteration: 11, Func. Count: 121, Neg. LLF: 71.76141806099328
Iteration: 12, Func. Count: 131, Neg. LLF: 71.76125788471208
Iteration: 13, Func. Count: 142, Neg. LLF: 71.75990634378573
Iteration: 14, Func. Count: 152, Neg. LLF: 71.75990209409537
Iteration: 15, Func. Count: 161, Neg. LLF: 71.75990215294014
Optimization terminated successfully (Exit mode 0)
Current function value: 71.75990209409537
Iterations: 15
Function evaluations: 161
Gradient evaluations: 15
Iteration: 1, Func. Count: 12, Neg. LLF: 121.48143044185055
Iteration: 2, Func. Count: 24, Neg. LLF: 439.80962441985093
Iteration: 3, Func. Count: 36, Neg. LLF: 81.37301568005198
Iteration: 4, Func. Count: 49, Neg. LLF: 149.7699924767278
Iteration: 5, Func. Count: 61, Neg. LLF: 91.73070966897032
Iteration: 6, Func. Count: 73, Neg. LLF: 73.58553821444968
Iteration: 7, Func. Count: 84, Neg. LLF: 181.5921894447847
Iteration: 8, Func. Count: 96, Neg. LLF: 134.3497718791172
Iteration: 9, Func. Count: 110, Neg. LLF: 87.80122621967388
Iteration: 10, Func. Count: 122, Neg. LLF: 72.57605170068078
Iteration: 11, Func. Count: 134, Neg. LLF: 71.83419460142522
Iteration: 12, Func. Count: 145, Neg. LLF: 71.9344659238882
Iteration: 13, Func. Count: 157, Neg. LLF: 71.77810859540998
Iteration: 14, Func. Count: 168, Neg. LLF: 71.7687730658481
Iteration: 15, Func. Count: 179, Neg. LLF: 71.76488061704103
Iteration: 16, Func. Count: 190, Neg. LLF: 71.76080991674247
Iteration: 17, Func. Count: 201, Neg. LLF: 71.7602677482318
Iteration: 18, Func. Count: 212, Neg. LLF: 71.76008252317618
Iteration: 19, Func. Count: 223, Neg. LLF: 71.75998262227318
Iteration: 20, Func. Count: 234, Neg. LLF: 71.75991164669684
Iteration: 21, Func. Count: 245, Neg. LLF: 71.75990243398397
Iteration: 22, Func. Count: 255, Neg. LLF: 71.75990249666457
Optimization terminated successfully (Exit mode 0)
Current function value: 71.75990243398397
Iterations: 22
Function evaluations: 255
Gradient evaluations: 22
Iteration: 1, Func. Count: 13, Neg. LLF: 3864.1143936846665
Iteration: 2, Func. Count: 26, Neg. LLF: 1189.394346844789
Iteration: 3, Func. Count: 39, Neg. LLF: 78.76138234262322
Iteration: 4, Func. Count: 53, Neg. LLF: 6215705.876746732
Iteration: 5, Func. Count: 66, Neg. LLF: 73.39366620545572
Iteration: 6, Func. Count: 78, Neg. LLF: 157.51774467362736
Iteration: 7, Func. Count: 91, Neg. LLF: 93.69858447000036
Iteration: 8, Func. Count: 106, Neg. LLF: 73.34521100030928
Iteration: 9, Func. Count: 119, Neg. LLF: 104.64687197574351
Iteration: 10, Func. Count: 132, Neg. LLF: 71.8863280925606
Iteration: 11, Func. Count: 144, Neg. LLF: 71.8194785312925
Iteration: 12, Func. Count: 156, Neg. LLF: 71.86798805618375
Iteration: 13, Func. Count: 169, Neg. LLF: 71.77017856204226
Iteration: 14, Func. Count: 181, Neg. LLF: 71.76227666945132
Iteration: 15, Func. Count: 193, Neg. LLF: 71.76062722710468
Iteration: 16, Func. Count: 205, Neg. LLF: 71.7602903627404
Iteration: 17, Func. Count: 217, Neg. LLF: 71.75997439354568
Iteration: 18, Func. Count: 229, Neg. LLF: 71.75990804829165
Iteration: 19, Func. Count: 241, Neg. LLF: 71.75990207826308
Iteration: 20, Func. Count: 252, Neg. LLF: 71.75990208016547
Optimization terminated successfully (Exit mode 0)
Current function value: 71.75990207826308
Iterations: 20
Function evaluations: 252
Gradient evaluations: 20
Iteration: 1, Func. Count: 14, Neg. LLF: 1003.876097550763
Iteration: 2, Func. Count: 28, Neg. LLF: 894.88107173768
Iteration: 3, Func. Count: 42, Neg. LLF: 169.41220237101902
Iteration: 4, Func. Count: 56, Neg. LLF: 362.4243169688656
Iteration: 5, Func. Count: 70, Neg. LLF: 82.07592178305202
Iteration: 6, Func. Count: 84, Neg. LLF: 73.04320551181445
Iteration: 7, Func. Count: 97, Neg. LLF: 638.3046981180186
Iteration: 8, Func. Count: 111, Neg. LLF: 79.06600227269136
Iteration: 9, Func. Count: 125, Neg. LLF: 73.50723126520153
Iteration: 10, Func. Count: 139, Neg. LLF: 72.2834488058816
Iteration: 11, Func. Count: 153, Neg. LLF: 73.03803781286896
Iteration: 12, Func. Count: 167, Neg. LLF: 71.99260300603437
Iteration: 13, Func. Count: 181, Neg. LLF: 71.79566752130854
Iteration: 14, Func. Count: 194, Neg. LLF: 71.78168458455366
Iteration: 15, Func. Count: 207, Neg. LLF: 71.7779698623445
Iteration: 16, Func. Count: 220, Neg. LLF: 71.76915752945185
Iteration: 17, Func. Count: 233, Neg. LLF: 71.76240172834721
Iteration: 18, Func. Count: 246, Neg. LLF: 71.76016165564178
Iteration: 19, Func. Count: 259, Neg. LLF: 71.75992558293107
Iteration: 20, Func. Count: 272, Neg. LLF: 71.75990586584936
Iteration: 21, Func. Count: 285, Neg. LLF: 71.75990206800502
Iteration: 22, Func. Count: 297, Neg. LLF: 71.75990212239536
Optimization terminated successfully (Exit mode 0)
Current function value: 71.75990206800502
Iterations: 22
Function evaluations: 297
Gradient evaluations: 22
Iteration: 1, Func. Count: 11, Neg. LLF: 7873333.373834687
Iteration: 2, Func. Count: 22, Neg. LLF: 246.47713670009352
Iteration: 3, Func. Count: 33, Neg. LLF: 178.10396252795454
Iteration: 4, Func. Count: 44, Neg. LLF: 32141412.394582685
Iteration: 5, Func. Count: 55, Neg. LLF: 1567.6797444302617
Iteration: 6, Func. Count: 66, Neg. LLF: 284.92706564801
Iteration: 7, Func. Count: 77, Neg. LLF: 93.82415863054008
Iteration: 8, Func. Count: 88, Neg. LLF: 242.03813488439266
Iteration: 9, Func. Count: 99, Neg. LLF: 74.2175579178921
Iteration: 10, Func. Count: 110, Neg. LLF: 81.73381022713107
Iteration: 11, Func. Count: 121, Neg. LLF: 77.43426310560972
Iteration: 12, Func. Count: 132, Neg. LLF: 72.90363567900471
Iteration: 13, Func. Count: 143, Neg. LLF: 73.25468565326443
Iteration: 14, Func. Count: 154, Neg. LLF: 71.74972132157502
Iteration: 15, Func. Count: 164, Neg. LLF: 71.71314913993659
Iteration: 16, Func. Count: 174, Neg. LLF: 71.74408933943748
Iteration: 17, Func. Count: 185, Neg. LLF: 71.7043869106879
Iteration: 18, Func. Count: 196, Neg. LLF: 71.67049283625134
Iteration: 19, Func. Count: 206, Neg. LLF: 71.6596627159052
Iteration: 20, Func. Count: 216, Neg. LLF: 71.65969329620253
Iteration: 21, Func. Count: 227, Neg. LLF: 71.65546851419604
Iteration: 22, Func. Count: 237, Neg. LLF: 71.65540668194171
Iteration: 23, Func. Count: 246, Neg. LLF: 71.65540668192382
Optimization terminated successfully (Exit mode 0)
Current function value: 71.65540668194171
Iterations: 23
Function evaluations: 246
Gradient evaluations: 23
Iteration: 1, Func. Count: 12, Neg. LLF: 5999272.7510544
Iteration: 2, Func. Count: 24, Neg. LLF: 7258405.821579591
Iteration: 3, Func. Count: 36, Neg. LLF: 2891028.4841708154
Iteration: 4, Func. Count: 48, Neg. LLF: 79.32465115319985
Iteration: 5, Func. Count: 61, Neg. LLF: 86.58813482995744
Iteration: 6, Func. Count: 73, Neg. LLF: 91.54091595231182
Iteration: 7, Func. Count: 85, Neg. LLF: 81.74732086279234
Iteration: 8, Func. Count: 97, Neg. LLF: 73.08489733709692
Iteration: 9, Func. Count: 109, Neg. LLF: 71.90394212009555
Iteration: 10, Func. Count: 120, Neg. LLF: 73.79590350580143
Iteration: 11, Func. Count: 132, Neg. LLF: 71.96502289015926
Iteration: 12, Func. Count: 144, Neg. LLF: 71.83026181591282
Iteration: 13, Func. Count: 156, Neg. LLF: 72.75284015324871
Iteration: 14, Func. Count: 168, Neg. LLF: 71.66002888332173
Iteration: 15, Func. Count: 179, Neg. LLF: 71.65732700516608
Iteration: 16, Func. Count: 190, Neg. LLF: 71.65586277177604
Iteration: 17, Func. Count: 201, Neg. LLF: 71.6554369968686
Iteration: 18, Func. Count: 212, Neg. LLF: 71.65540700537339
Iteration: 19, Func. Count: 223, Neg. LLF: 71.65540649082774
Optimization terminated successfully (Exit mode 0)
Current function value: 71.65540649082774
Iterations: 19
Function evaluations: 223
Gradient evaluations: 19
Iteration: 1, Func. Count: 13, Neg. LLF: 7681412.567973141
Iteration: 2, Func. Count: 26, Neg. LLF: 1521108.6404677294
Iteration: 3, Func. Count: 39, Neg. LLF: 2824682.0989746363
Iteration: 4, Func. Count: 52, Neg. LLF: 77.4579560015088
Iteration: 5, Func. Count: 65, Neg. LLF: 103.4392452882558
Iteration: 6, Func. Count: 78, Neg. LLF: 94134.18051270611
Iteration: 7, Func. Count: 91, Neg. LLF: 73.84553363817352
Iteration: 8, Func. Count: 104, Neg. LLF: 78.43957852797412
Iteration: 9, Func. Count: 117, Neg. LLF: 72.39963273151608
Iteration: 10, Func. Count: 130, Neg. LLF: 79.26102503163192
Iteration: 11, Func. Count: 143, Neg. LLF: 71.68569490176228
Iteration: 12, Func. Count: 155, Neg. LLF: 71.9625672131177
Iteration: 13, Func. Count: 168, Neg. LLF: 71.67865047895273
Iteration: 14, Func. Count: 181, Neg. LLF: 71.65751699951122
Iteration: 15, Func. Count: 193, Neg. LLF: 71.65599090550297
Iteration: 16, Func. Count: 205, Neg. LLF: 71.65557421939221
Iteration: 17, Func. Count: 217, Neg. LLF: 71.65541410353785
Iteration: 18, Func. Count: 229, Neg. LLF: 71.65540737400694
Iteration: 19, Func. Count: 241, Neg. LLF: 71.65540658360953
Optimization terminated successfully (Exit mode 0)
Current function value: 71.65540658360953
Iterations: 19
Function evaluations: 241
Gradient evaluations: 19
Iteration: 1, Func. Count: 14, Neg. LLF: 6273449.2506831745
Iteration: 2, Func. Count: 28, Neg. LLF: 12974378.354323486
Iteration: 3, Func. Count: 42, Neg. LLF: 346.57932435230595
Iteration: 4, Func. Count: 56, Neg. LLF: 471.97681658636657
Iteration: 5, Func. Count: 70, Neg. LLF: 76.56226239453
Iteration: 6, Func. Count: 84, Neg. LLF: 72.69417725975448
Iteration: 7, Func. Count: 97, Neg. LLF: 806.7337393250868
Iteration: 8, Func. Count: 111, Neg. LLF: 77.78237830647349
Iteration: 9, Func. Count: 125, Neg. LLF: 81.26180948030509
Iteration: 10, Func. Count: 139, Neg. LLF: 81.96794621543454
Iteration: 11, Func. Count: 153, Neg. LLF: 71.77447687788802
Iteration: 12, Func. Count: 167, Neg. LLF: 71.80550365158749
Iteration: 13, Func. Count: 181, Neg. LLF: 71.63291244846222
Iteration: 14, Func. Count: 194, Neg. LLF: 71.59903151239472
Iteration: 15, Func. Count: 207, Neg. LLF: 71.57337994272886
Iteration: 16, Func. Count: 220, Neg. LLF: 71.54981792889829
Iteration: 17, Func. Count: 233, Neg. LLF: 71.53851959876435
Iteration: 18, Func. Count: 246, Neg. LLF: 71.53490544405949
Iteration: 19, Func. Count: 259, Neg. LLF: 71.53277440946077
Iteration: 20, Func. Count: 272, Neg. LLF: 71.53226787170169
Iteration: 21, Func. Count: 285, Neg. LLF: 71.53222521132011
Iteration: 22, Func. Count: 298, Neg. LLF: 71.53221404038948
Iteration: 23, Func. Count: 310, Neg. LLF: 71.53221403502553
Optimization terminated successfully (Exit mode 0)
Current function value: 71.53221404038948
Iterations: 23
Function evaluations: 310
Gradient evaluations: 23
Iteration: 1, Func. Count: 15, Neg. LLF: 2408755.6652648305
Iteration: 2, Func. Count: 30, Neg. LLF: 13033432.682880899
Iteration: 3, Func. Count: 45, Neg. LLF: 200.45645955540482
Iteration: 4, Func. Count: 60, Neg. LLF: 604.0164781169069
Iteration: 5, Func. Count: 75, Neg. LLF: 76.93033965278161
Iteration: 6, Func. Count: 90, Neg. LLF: 72.63029195549878
Iteration: 7, Func. Count: 104, Neg. LLF: 341.22256106510594
Iteration: 8, Func. Count: 119, Neg. LLF: 78.74319368279934
Iteration: 9, Func. Count: 134, Neg. LLF: 72.16277325990725
Iteration: 10, Func. Count: 149, Neg. LLF: 80.2817346221243
Iteration: 11, Func. Count: 164, Neg. LLF: 71.76318517521544
Iteration: 12, Func. Count: 179, Neg. LLF: 75.05523370626047
Iteration: 13, Func. Count: 194, Neg. LLF: 71.6082812120919
Iteration: 14, Func. Count: 208, Neg. LLF: 71.5827426358301
Iteration: 15, Func. Count: 222, Neg. LLF: 71.7265227143747
Iteration: 16, Func. Count: 237, Neg. LLF: 71.5498516683024
Iteration: 17, Func. Count: 251, Neg. LLF: 71.53991589032198
Iteration: 18, Func. Count: 265, Neg. LLF: 71.53580965850054
Iteration: 19, Func. Count: 279, Neg. LLF: 71.53320988672645
Iteration: 20, Func. Count: 293, Neg. LLF: 71.53231915276885
Iteration: 21, Func. Count: 307, Neg. LLF: 71.5322181304812
Iteration: 22, Func. Count: 321, Neg. LLF: 71.5322139716548
Iteration: 23, Func. Count: 334, Neg. LLF: 71.53221404967871
Optimization terminated successfully (Exit mode 0)
Current function value: 71.5322139716548
Iterations: 23
Function evaluations: 334
Gradient evaluations: 23
Iteration: 1, Func. Count: 12, Neg. LLF: 6362984.795984353
Iteration: 2, Func. Count: 24, Neg. LLF: 20158.79365216136
Iteration: 3, Func. Count: 37, Neg. LLF: 18196.395713135946
Iteration: 4, Func. Count: 49, Neg. LLF: 711.3410972820946
Iteration: 5, Func. Count: 61, Neg. LLF: 324.47956388917225
Iteration: 6, Func. Count: 73, Neg. LLF: 87.601714802968
Iteration: 7, Func. Count: 85, Neg. LLF: 199.34157571878413
Iteration: 8, Func. Count: 97, Neg. LLF: 275.350255605634
Iteration: 9, Func. Count: 109, Neg. LLF: 155.43595827299754
Iteration: 10, Func. Count: 121, Neg. LLF: 72.71816794475576
Iteration: 11, Func. Count: 133, Neg. LLF: 90.63869390851329
Iteration: 12, Func. Count: 145, Neg. LLF: 73.11562600057462
Iteration: 13, Func. Count: 157, Neg. LLF: 71.76663466831721
Iteration: 14, Func. Count: 168, Neg. LLF: 71.70320525303832
Iteration: 15, Func. Count: 179, Neg. LLF: 71.68632894272532
Iteration: 16, Func. Count: 190, Neg. LLF: 71.67086640696186
Iteration: 17, Func. Count: 201, Neg. LLF: 71.76779213289629
Iteration: 18, Func. Count: 213, Neg. LLF: 71.67280664267575
Iteration: 19, Func. Count: 225, Neg. LLF: 71.6556136067696
Iteration: 20, Func. Count: 236, Neg. LLF: 71.65541026300046
Iteration: 21, Func. Count: 247, Neg. LLF: 71.65540666988015
Iteration: 22, Func. Count: 257, Neg. LLF: 71.65540663066481
Optimization terminated successfully (Exit mode 0)
Current function value: 71.65540666988015
Iterations: 22
Function evaluations: 257
Gradient evaluations: 22
Iteration: 1, Func. Count: 13, Neg. LLF: 6511377.951402024
Iteration: 2, Func. Count: 26, Neg. LLF: 7267315.838839361
Iteration: 3, Func. Count: 39, Neg. LLF: 80.24133241852198
Iteration: 4, Func. Count: 52, Neg. LLF: 4559672.7860495085
Iteration: 5, Func. Count: 65, Neg. LLF: 101.26414903341539
Iteration: 6, Func. Count: 78, Neg. LLF: 73.79302440790609
Iteration: 7, Func. Count: 91, Neg. LLF: 80.44784979357522
Iteration: 8, Func. Count: 104, Neg. LLF: 77.71909148853902
Iteration: 9, Func. Count: 117, Neg. LLF: 74.16823086410635
Iteration: 10, Func. Count: 131, Neg. LLF: 71.70275563119888
Iteration: 11, Func. Count: 143, Neg. LLF: 71.7341784039051
Iteration: 12, Func. Count: 156, Neg. LLF: 71.92898022894539
Iteration: 13, Func. Count: 169, Neg. LLF: 71.659345034528
Iteration: 14, Func. Count: 181, Neg. LLF: 71.6566980615096
Iteration: 15, Func. Count: 193, Neg. LLF: 71.65546451261866
Iteration: 16, Func. Count: 205, Neg. LLF: 71.65541605927233
Iteration: 17, Func. Count: 217, Neg. LLF: 71.6554067452126
Iteration: 18, Func. Count: 228, Neg. LLF: 71.65540679877378
Optimization terminated successfully (Exit mode 0)
Current function value: 71.6554067452126
Iterations: 18
Function evaluations: 228
Gradient evaluations: 18
Iteration: 1, Func. Count: 14, Neg. LLF: 7995984.18267447
Iteration: 2, Func. Count: 28, Neg. LLF: 2528605.746363842
Iteration: 3, Func. Count: 42, Neg. LLF: 2908642.7326555676
Iteration: 4, Func. Count: 56, Neg. LLF: 76.15759198427402
Iteration: 5, Func. Count: 70, Neg. LLF: 168.12487493374644
Iteration: 6, Func. Count: 84, Neg. LLF: 1597.2191005953034
Iteration: 7, Func. Count: 98, Neg. LLF: 74.12076086430238
Iteration: 8, Func. Count: 112, Neg. LLF: 90.57640545153107
Iteration: 9, Func. Count: 126, Neg. LLF: 72.44260923940715
Iteration: 10, Func. Count: 140, Neg. LLF: 83.095509650102
Iteration: 11, Func. Count: 154, Neg. LLF: 71.68931043954387
Iteration: 12, Func. Count: 167, Neg. LLF: 71.80649627457215
Iteration: 13, Func. Count: 181, Neg. LLF: 71.70797712267323
Iteration: 14, Func. Count: 195, Neg. LLF: 71.65651214564639
Iteration: 15, Func. Count: 208, Neg. LLF: 71.65559707438248
Iteration: 16, Func. Count: 221, Neg. LLF: 71.6554358439975
Iteration: 17, Func. Count: 234, Neg. LLF: 71.65541230410373
Iteration: 18, Func. Count: 247, Neg. LLF: 71.65540667864963
Iteration: 19, Func. Count: 259, Neg. LLF: 71.65540675509347
Optimization terminated successfully (Exit mode 0)
Current function value: 71.65540667864963
Iterations: 19
Function evaluations: 259
Gradient evaluations: 19
Iteration: 1, Func. Count: 15, Neg. LLF: 5884587.532344594
Iteration: 2, Func. Count: 30, Neg. LLF: 13273724.986294465
Iteration: 3, Func. Count: 45, Neg. LLF: 182.74662425283148
Iteration: 4, Func. Count: 60, Neg. LLF: 10621.423534368525
Iteration: 5, Func. Count: 75, Neg. LLF: 76.77064543696308
Iteration: 6, Func. Count: 90, Neg. LLF: 74.65427913780117
Iteration: 7, Func. Count: 105, Neg. LLF: 73.32516019831034
Iteration: 8, Func. Count: 120, Neg. LLF: 93.59755272692156
Iteration: 9, Func. Count: 135, Neg. LLF: 81.09332417462448
Iteration: 10, Func. Count: 150, Neg. LLF: 71.65826413186804
Iteration: 11, Func. Count: 164, Neg. LLF: 71.64252209882082
Iteration: 12, Func. Count: 178, Neg. LLF: 71.60906371492439
Iteration: 13, Func. Count: 192, Neg. LLF: 71.58186520863136
Iteration: 14, Func. Count: 206, Neg. LLF: 72.55465051060122
Iteration: 15, Func. Count: 221, Neg. LLF: 71.55290661121637
Iteration: 16, Func. Count: 235, Neg. LLF: 71.53466647564898
Iteration: 17, Func. Count: 249, Neg. LLF: 71.53256299914848
Iteration: 18, Func. Count: 263, Neg. LLF: 71.53222091184527
Iteration: 19, Func. Count: 277, Neg. LLF: 71.53221413571552
Iteration: 20, Func. Count: 290, Neg. LLF: 71.53221413038547
Optimization terminated successfully (Exit mode 0)
Current function value: 71.53221413571552
Iterations: 20
Function evaluations: 290
Gradient evaluations: 20
Iteration: 1, Func. Count: 16, Neg. LLF: 2747231.246462979
Iteration: 2, Func. Count: 32, Neg. LLF: 13279067.333569776
Iteration: 3, Func. Count: 48, Neg. LLF: 256.5732727720499
Iteration: 4, Func. Count: 64, Neg. LLF: 2887226.065524427
Iteration: 5, Func. Count: 80, Neg. LLF: 78.5230031284696
Iteration: 6, Func. Count: 96, Neg. LLF: 73.72597996245663
Iteration: 7, Func. Count: 112, Neg. LLF: 76.15074056159797
Iteration: 8, Func. Count: 128, Neg. LLF: 72.97714632746417
Iteration: 9, Func. Count: 144, Neg. LLF: 75.88432955483196
Iteration: 10, Func. Count: 160, Neg. LLF: 71.66935306686321
Iteration: 11, Func. Count: 175, Neg. LLF: 71.67402722055354
Iteration: 12, Func. Count: 191, Neg. LLF: 71.67555610377575
Iteration: 13, Func. Count: 207, Neg. LLF: 71.60327058537287
Iteration: 14, Func. Count: 222, Neg. LLF: 71.61671783691756
Iteration: 15, Func. Count: 238, Neg. LLF: 71.53772505848852
Iteration: 16, Func. Count: 253, Neg. LLF: 71.53282902773941
Iteration: 17, Func. Count: 268, Neg. LLF: 71.53225717788361
Iteration: 18, Func. Count: 283, Neg. LLF: 71.53221773052714
Iteration: 19, Func. Count: 298, Neg. LLF: 71.53221419055949
Iteration: 20, Func. Count: 312, Neg. LLF: 71.53221426864575
Optimization terminated successfully (Exit mode 0)
Current function value: 71.53221419055949
Iterations: 20
Function evaluations: 312
Gradient evaluations: 20
Iteration: 1, Func. Count: 7, Neg. LLF: 130.08462460944912
Iteration: 2, Func. Count: 15, Neg. LLF: 300.0833938556333
Iteration: 3, Func. Count: 22, Neg. LLF: 103.8434102025461
Iteration: 4, Func. Count: 29, Neg. LLF: 148.60183686424753
Iteration: 5, Func. Count: 36, Neg. LLF: 76.54479263437457
Iteration: 6, Func. Count: 43, Neg. LLF: 96.81518375586819
Iteration: 7, Func. Count: 50, Neg. LLF: 128.45605806509113
Iteration: 8, Func. Count: 57, Neg. LLF: 73.21463382560188
Iteration: 9, Func. Count: 64, Neg. LLF: 72.56002722955697
Iteration: 10, Func. Count: 70, Neg. LLF: 72.55158115637113
Iteration: 11, Func. Count: 76, Neg. LLF: 72.54922351902432
Iteration: 12, Func. Count: 82, Neg. LLF: 72.54912320358586
Iteration: 13, Func. Count: 88, Neg. LLF: 72.54911696395375
Iteration: 14, Func. Count: 93, Neg. LLF: 72.54911696394899
Optimization terminated successfully (Exit mode 0)
Current function value: 72.54911696395375
Iterations: 14
Function evaluations: 93
Gradient evaluations: 14
Iteration: 1, Func. Count: 5, Neg. LLF: 126.94560596432449
Iteration: 2, Func. Count: 12, Neg. LLF: 101.94228323045971
Iteration: 3, Func. Count: 17, Neg. LLF: 93.11445116552302
Iteration: 4, Func. Count: 21, Neg. LLF: 93.04075145268905
Iteration: 5, Func. Count: 26, Neg. LLF: 92.5479073426911
Iteration: 6, Func. Count: 30, Neg. LLF: 92.54327831117111
Iteration: 7, Func. Count: 34, Neg. LLF: 92.5432136144612
Iteration: 8, Func. Count: 38, Neg. LLF: 92.54321225683
Iteration: 9, Func. Count: 41, Neg. LLF: 92.5432122650442
Optimization terminated successfully (Exit mode 0)
Current function value: 92.54321225683
Iterations: 9
Function evaluations: 41
Gradient evaluations: 9
Iteration: 1, Func. Count: 6, Neg. LLF: 128.18092710532406
Iteration: 2, Func. Count: 15, Neg. LLF: 1872.3869634270707
Iteration: 3, Func. Count: 22, Neg. LLF: 18357906.367813587
Iteration: 4, Func. Count: 28, Neg. LLF: 83.34191284209513
Iteration: 5, Func. Count: 33, Neg. LLF: 83.3141871924342
Iteration: 6, Func. Count: 38, Neg. LLF: 83.31074629190887
Iteration: 7, Func. Count: 43, Neg. LLF: 83.31004661330515
Iteration: 8, Func. Count: 48, Neg. LLF: 83.31002072294639
Iteration: 9, Func. Count: 53, Neg. LLF: 83.31002014602517
Optimization terminated successfully (Exit mode 0)
Current function value: 83.31002014602517
Iterations: 9
Function evaluations: 53
Gradient evaluations: 9
Iteration: 1, Func. Count: 7, Neg. LLF: 134.672250943959
Iteration: 2, Func. Count: 19, Neg. LLF: 977.3843704591952
Iteration: 3, Func. Count: 26, Neg. LLF: 14769911.09459332
Iteration: 4, Func. Count: 34, Neg. LLF: 83.4480870093038
Iteration: 5, Func. Count: 40, Neg. LLF: 83.42796735863986
Iteration: 6, Func. Count: 47, Neg. LLF: 83.311990819169
Iteration: 7, Func. Count: 53, Neg. LLF: 83.31031921217364
Iteration: 8, Func. Count: 59, Neg. LLF: 83.31005008873817
Iteration: 9, Func. Count: 65, Neg. LLF: 83.31002052511235
Iteration: 10, Func. Count: 70, Neg. LLF: 83.31002035737446
Optimization terminated successfully (Exit mode 0)
Current function value: 83.31002052511235
Iterations: 10
Function evaluations: 70
Gradient evaluations: 10
Iteration: 1, Func. Count: 8, Neg. LLF: 103.08315489475973
Iteration: 2, Func. Count: 17, Neg. LLF: 114243776.5900568
Iteration: 3, Func. Count: 26, Neg. LLF: 49313.45014598251
Iteration: 4, Func. Count: 34, Neg. LLF: 87.43763449917981
Iteration: 5, Func. Count: 42, Neg. LLF: 85.26072746416435
Iteration: 6, Func. Count: 50, Neg. LLF: 84.32919063719325
Iteration: 7, Func. Count: 58, Neg. LLF: 83.33072917362423
Iteration: 8, Func. Count: 65, Neg. LLF: 83.31244103837912
Iteration: 9, Func. Count: 72, Neg. LLF: 83.3109145638272
Iteration: 10, Func. Count: 79, Neg. LLF: 83.31002838260136
Iteration: 11, Func. Count: 86, Neg. LLF: 83.3100208118013
Iteration: 12, Func. Count: 93, Neg. LLF: 83.3100201507498
Optimization terminated successfully (Exit mode 0)
Current function value: 83.3100201507498
Iterations: 12
Function evaluations: 93
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 106.70723917011486
Iteration: 2, Func. Count: 21, Neg. LLF: 58878644.43284069
Iteration: 3, Func. Count: 30, Neg. LLF: 95.27630745014575
Iteration: 4, Func. Count: 39, Neg. LLF: 84.25374752741224
Iteration: 5, Func. Count: 47, Neg. LLF: 88.35428948287567
Iteration: 6, Func. Count: 56, Neg. LLF: 83.34520960658278
Iteration: 7, Func. Count: 64, Neg. LLF: 83.32456292759369
Iteration: 8, Func. Count: 72, Neg. LLF: 83.3113587390056
Iteration: 9, Func. Count: 80, Neg. LLF: 83.31005850575602
Iteration: 10, Func. Count: 88, Neg. LLF: 83.31002089651697
Iteration: 11, Func. Count: 96, Neg. LLF: 83.3100201448203
Optimization terminated successfully (Exit mode 0)
Current function value: 83.3100201448203
Iterations: 11
Function evaluations: 96
Gradient evaluations: 11
Iteration: 1, Func. Count: 6, Neg. LLF: 141.10873677983943
Iteration: 2, Func. Count: 14, Neg. LLF: 703.9361645947347
Iteration: 3, Func. Count: 20, Neg. LLF: 8914666.598134233
Iteration: 4, Func. Count: 26, Neg. LLF: 90.2057099132063
Iteration: 5, Func. Count: 32, Neg. LLF: 90.12767348385779
Iteration: 6, Func. Count: 38, Neg. LLF: 88.9659566244996
Iteration: 7, Func. Count: 44, Neg. LLF: 88.47084290346457
Iteration: 8, Func. Count: 49, Neg. LLF: 88.42987844534368
Iteration: 9, Func. Count: 54, Neg. LLF: 88.40391094169779
Iteration: 10, Func. Count: 59, Neg. LLF: 88.40233954622911
Iteration: 11, Func. Count: 64, Neg. LLF: 88.40211336607328
Iteration: 12, Func. Count: 69, Neg. LLF: 88.401992548902
Iteration: 13, Func. Count: 73, Neg. LLF: 88.40199254889873
Optimization terminated successfully (Exit mode 0)
Current function value: 88.401992548902
Iterations: 13
Function evaluations: 73
Gradient evaluations: 13
Iteration: 1, Func. Count: 7, Neg. LLF: 390.5337424682814
Iteration: 2, Func. Count: 14, Neg. LLF: 6106983.435141021
Iteration: 3, Func. Count: 21, Neg. LLF: 84.43985726002684
Iteration: 4, Func. Count: 28, Neg. LLF: 81.42794051202716
Iteration: 5, Func. Count: 34, Neg. LLF: 81.41545079479887
Iteration: 6, Func. Count: 41, Neg. LLF: 81.390703050502
Iteration: 7, Func. Count: 48, Neg. LLF: 81.39031608053011
Iteration: 8, Func. Count: 54, Neg. LLF: 81.39031539493197
Optimization terminated successfully (Exit mode 0)
Current function value: 81.39031539493197
Iterations: 8
Function evaluations: 54
Gradient evaluations: 8
Iteration: 1, Func. Count: 8, Neg. LLF: 123.85683557222902
Iteration: 2, Func. Count: 21, Neg. LLF: 245154805.88998348
Iteration: 3, Func. Count: 29, Neg. LLF: 7901758.82137125
Iteration: 4, Func. Count: 37, Neg. LLF: 84.23246642277692
Iteration: 5, Func. Count: 45, Neg. LLF: 82.22921913766751
Iteration: 6, Func. Count: 53, Neg. LLF: 88.34191439217194
Iteration: 7, Func. Count: 61, Neg. LLF: 84.8756709225072
Iteration: 8, Func. Count: 69, Neg. LLF: 81.03889949113479
Iteration: 9, Func. Count: 76, Neg. LLF: 81.97284629627464
Iteration: 10, Func. Count: 85, Neg. LLF: 81.12733003851402
Iteration: 11, Func. Count: 93, Neg. LLF: 80.59303443689578
Iteration: 12, Func. Count: 100, Neg. LLF: 80.57123937311164
Iteration: 13, Func. Count: 107, Neg. LLF: 80.56666175943003
Iteration: 14, Func. Count: 114, Neg. LLF: 80.5656112300386
Iteration: 15, Func. Count: 121, Neg. LLF: 80.5656056214782
Iteration: 16, Func. Count: 127, Neg. LLF: 80.56560551303232
Optimization terminated successfully (Exit mode 0)
Current function value: 80.5656056214782
Iterations: 16
Function evaluations: 127
Gradient evaluations: 16
Iteration: 1, Func. Count: 9, Neg. LLF: 147.30396569493763
Iteration: 2, Func. Count: 23, Neg. LLF: 246732660.94389904
Iteration: 3, Func. Count: 32, Neg. LLF: 7946734.51738365
Iteration: 4, Func. Count: 41, Neg. LLF: 83.22251149899134
Iteration: 5, Func. Count: 50, Neg. LLF: 83.00313895370707
Iteration: 6, Func. Count: 59, Neg. LLF: 81.15484032460604
Iteration: 7, Func. Count: 67, Neg. LLF: 82.44667872366496
Iteration: 8, Func. Count: 76, Neg. LLF: 81.08845621883384
Iteration: 9, Func. Count: 84, Neg. LLF: 81.08853742464959
Iteration: 10, Func. Count: 93, Neg. LLF: 81.08311749001507
Iteration: 11, Func. Count: 101, Neg. LLF: 81.0826187349287
Iteration: 12, Func. Count: 109, Neg. LLF: 81.08261402678542
Iteration: 13, Func. Count: 116, Neg. LLF: 81.08261389253087
Optimization terminated successfully (Exit mode 0)
Current function value: 81.08261402678542
Iterations: 13
Function evaluations: 116
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 11988664.337224789
Iteration: 2, Func. Count: 20, Neg. LLF: 365268050.7852025
Iteration: 3, Func. Count: 31, Neg. LLF: 9321738.40506826
Iteration: 4, Func. Count: 41, Neg. LLF: 104.225286710198
Iteration: 5, Func. Count: 51, Neg. LLF: 85.43189834610203
Iteration: 6, Func. Count: 61, Neg. LLF: 84.86952682596694
Iteration: 7, Func. Count: 71, Neg. LLF: 80.77628747232319
Iteration: 8, Func. Count: 80, Neg. LLF: 80.35747636044668
Iteration: 9, Func. Count: 89, Neg. LLF: 84.57869607693051
Iteration: 10, Func. Count: 100, Neg. LLF: 80.3497932845202
Iteration: 11, Func. Count: 110, Neg. LLF: 80.19856722899834
Iteration: 12, Func. Count: 119, Neg. LLF: 80.36668128209878
Iteration: 13, Func. Count: 129, Neg. LLF: 80.14452074708232
Iteration: 14, Func. Count: 138, Neg. LLF: 80.13630336904811
Iteration: 15, Func. Count: 147, Neg. LLF: 80.13568389722026
Iteration: 16, Func. Count: 156, Neg. LLF: 80.13556449670398
Iteration: 17, Func. Count: 165, Neg. LLF: 80.13555850038226
Iteration: 18, Func. Count: 173, Neg. LLF: 80.13555840159637
Optimization terminated successfully (Exit mode 0)
Current function value: 80.13555850038226
Iterations: 18
Function evaluations: 173
Gradient evaluations: 18
Iteration: 1, Func. Count: 7, Neg. LLF: 139.54979032162882
Iteration: 2, Func. Count: 16, Neg. LLF: 450090147.2950528
Iteration: 3, Func. Count: 23, Neg. LLF: 5287502.671045504
Iteration: 4, Func. Count: 30, Neg. LLF: 89.62788395921888
Iteration: 5, Func. Count: 37, Neg. LLF: 88.56381039338532
Iteration: 6, Func. Count: 44, Neg. LLF: 88.78272251899836
Iteration: 7, Func. Count: 51, Neg. LLF: 88.4551087494381
Iteration: 8, Func. Count: 57, Neg. LLF: 91.4706530587538
Iteration: 9, Func. Count: 65, Neg. LLF: 88.40847952540872
Iteration: 10, Func. Count: 71, Neg. LLF: 88.3968497909854
Iteration: 11, Func. Count: 77, Neg. LLF: 88.39623940477284
Iteration: 12, Func. Count: 83, Neg. LLF: 88.39619229002776
Iteration: 13, Func. Count: 89, Neg. LLF: 88.39618968425715
Iteration: 14, Func. Count: 94, Neg. LLF: 88.39618968427436
Optimization terminated successfully (Exit mode 0)
Current function value: 88.39618968425715
Iterations: 14
Function evaluations: 94
Gradient evaluations: 14
Iteration: 1, Func. Count: 8, Neg. LLF: 117.12315966573065
Iteration: 2, Func. Count: 20, Neg. LLF: 10233.701172667508
Iteration: 3, Func. Count: 29, Neg. LLF: 6146926.311086574
Iteration: 4, Func. Count: 37, Neg. LLF: 81.63883077757352
Iteration: 5, Func. Count: 44, Neg. LLF: 99.2332336407941
Iteration: 6, Func. Count: 53, Neg. LLF: 81.42063163066699
Iteration: 7, Func. Count: 60, Neg. LLF: 81.39144600129819
Iteration: 8, Func. Count: 67, Neg. LLF: 81.39042825920718
Iteration: 9, Func. Count: 74, Neg. LLF: 81.39031574662246
Iteration: 10, Func. Count: 80, Neg. LLF: 81.39031557899904
Optimization terminated successfully (Exit mode 0)
Current function value: 81.39031574662246
Iterations: 10
Function evaluations: 80
Gradient evaluations: 10
Iteration: 1, Func. Count: 9, Neg. LLF: 131.40559582948453
Iteration: 2, Func. Count: 23, Neg. LLF: 274434480.7102931
Iteration: 3, Func. Count: 32, Neg. LLF: 8230723.275667703
Iteration: 4, Func. Count: 41, Neg. LLF: 84.28854710911776
Iteration: 5, Func. Count: 50, Neg. LLF: 90.50529752555884
Iteration: 6, Func. Count: 59, Neg. LLF: 82.2562234568286
Iteration: 7, Func. Count: 68, Neg. LLF: 81.51039644506226
Iteration: 8, Func. Count: 77, Neg. LLF: 80.72154765324927
Iteration: 9, Func. Count: 85, Neg. LLF: 80.30297788122937
Iteration: 10, Func. Count: 93, Neg. LLF: 80.30940072596977
Iteration: 11, Func. Count: 102, Neg. LLF: 80.29303238510505
Iteration: 12, Func. Count: 110, Neg. LLF: 80.29100053086107
Iteration: 13, Func. Count: 118, Neg. LLF: 80.29081517403061
Iteration: 14, Func. Count: 126, Neg. LLF: 80.2907829213769
Iteration: 15, Func. Count: 134, Neg. LLF: 80.29078186927389
Iteration: 16, Func. Count: 141, Neg. LLF: 80.29078176128904
Optimization terminated successfully (Exit mode 0)
Current function value: 80.29078186927389
Iterations: 16
Function evaluations: 141
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 147.81838504613143
Iteration: 2, Func. Count: 25, Neg. LLF: 311784882.7688004
Iteration: 3, Func. Count: 35, Neg. LLF: 7426165.735910272
Iteration: 4, Func. Count: 45, Neg. LLF: 129.8312834984508
Iteration: 5, Func. Count: 55, Neg. LLF: 105.72037514960738
Iteration: 6, Func. Count: 66, Neg. LLF: 82.88577468072262
Iteration: 7, Func. Count: 76, Neg. LLF: 81.31598350283711
Iteration: 8, Func. Count: 85, Neg. LLF: 81.13584759178742
Iteration: 9, Func. Count: 94, Neg. LLF: 81.38139987762457
Iteration: 10, Func. Count: 104, Neg. LLF: 81.1143026989181
Iteration: 11, Func. Count: 113, Neg. LLF: 81.08667736023051
Iteration: 12, Func. Count: 122, Neg. LLF: 81.08342107924047
Iteration: 13, Func. Count: 131, Neg. LLF: 81.08266307401699
Iteration: 14, Func. Count: 140, Neg. LLF: 81.0826143715086
Iteration: 15, Func. Count: 148, Neg. LLF: 81.0826142374097
Optimization terminated successfully (Exit mode 0)
Current function value: 81.0826143715086
Iterations: 15
Function evaluations: 148
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 1403.6214229647248
Iteration: 2, Func. Count: 22, Neg. LLF: 381481316.4724455
Iteration: 3, Func. Count: 34, Neg. LLF: 7981369.400126979
Iteration: 4, Func. Count: 45, Neg. LLF: 180.32752527885546
Iteration: 5, Func. Count: 56, Neg. LLF: 104.64795055271696
Iteration: 6, Func. Count: 67, Neg. LLF: 81.76017036594973
Iteration: 7, Func. Count: 77, Neg. LLF: 80.53967232550833
Iteration: 8, Func. Count: 87, Neg. LLF: 82.09363007706988
Iteration: 9, Func. Count: 98, Neg. LLF: 82.31425218567672
Iteration: 10, Func. Count: 109, Neg. LLF: 80.03092268724839
Iteration: 11, Func. Count: 119, Neg. LLF: 80.0606514615047
Iteration: 12, Func. Count: 130, Neg. LLF: 80.06753699781649
Iteration: 13, Func. Count: 141, Neg. LLF: 79.8913318435238
Iteration: 14, Func. Count: 152, Neg. LLF: 79.88812283687771
Iteration: 15, Func. Count: 162, Neg. LLF: 79.88755516418
Iteration: 16, Func. Count: 172, Neg. LLF: 79.8874915544786
Iteration: 17, Func. Count: 182, Neg. LLF: 79.88749009619832
Iteration: 18, Func. Count: 191, Neg. LLF: 79.88749000023546
Optimization terminated successfully (Exit mode 0)
Current function value: 79.88749009619832
Iterations: 18
Function evaluations: 191
Gradient evaluations: 18
Iteration: 1, Func. Count: 8, Neg. LLF: 137.01988104530687
Iteration: 2, Func. Count: 18, Neg. LLF: 539305301.4411589
Iteration: 3, Func. Count: 26, Neg. LLF: 5058632.874604292
Iteration: 4, Func. Count: 34, Neg. LLF: 2653745.281420108
Iteration: 5, Func. Count: 42, Neg. LLF: 3016851.2941190433
Iteration: 6, Func. Count: 50, Neg. LLF: 1147518.866890735
Iteration: 7, Func. Count: 58, Neg. LLF: 1245632.2872755022
Iteration: 8, Func. Count: 66, Neg. LLF: 90.71566707765868
Iteration: 9, Func. Count: 74, Neg. LLF: 86.56497700360119
Iteration: 10, Func. Count: 81, Neg. LLF: 86.44546735490897
Iteration: 11, Func. Count: 88, Neg. LLF: 86.25312391119576
Iteration: 12, Func. Count: 95, Neg. LLF: 86.18261979064116
Iteration: 13, Func. Count: 102, Neg. LLF: 86.04299743164992
Iteration: 14, Func. Count: 109, Neg. LLF: 86.0360852969876
Iteration: 15, Func. Count: 116, Neg. LLF: 86.03412314013504
Iteration: 16, Func. Count: 123, Neg. LLF: 86.0334976250863
Iteration: 17, Func. Count: 130, Neg. LLF: 86.0331018699018
Iteration: 18, Func. Count: 137, Neg. LLF: 86.03303293521715
Iteration: 19, Func. Count: 144, Neg. LLF: 86.03302799725938
Iteration: 20, Func. Count: 150, Neg. LLF: 86.03302799724074
Optimization terminated successfully (Exit mode 0)
Current function value: 86.03302799725938
Iterations: 20
Function evaluations: 150
Gradient evaluations: 20
Iteration: 1, Func. Count: 9, Neg. LLF: 118.020371242755
Iteration: 2, Func. Count: 23, Neg. LLF: 214817487.7788659
Iteration: 3, Func. Count: 32, Neg. LLF: 6290061.968930363
Iteration: 4, Func. Count: 41, Neg. LLF: 82.34505666652923
Iteration: 5, Func. Count: 49, Neg. LLF: 81.60890707543611
Iteration: 6, Func. Count: 57, Neg. LLF: 81.45917697764575
Iteration: 7, Func. Count: 65, Neg. LLF: 81.40178092088242
Iteration: 8, Func. Count: 73, Neg. LLF: 81.39078259064213
Iteration: 9, Func. Count: 81, Neg. LLF: 81.39032189133668
Iteration: 10, Func. Count: 89, Neg. LLF: 81.3903155299171
Iteration: 11, Func. Count: 96, Neg. LLF: 81.39031536234326
Optimization terminated successfully (Exit mode 0)
Current function value: 81.3903155299171
Iterations: 11
Function evaluations: 96
Gradient evaluations: 11
Iteration: 1, Func. Count: 10, Neg. LLF: 139.64895024561065
Iteration: 2, Func. Count: 25, Neg. LLF: 277980005.1315562
Iteration: 3, Func. Count: 35, Neg. LLF: 8209645.635973419
Iteration: 4, Func. Count: 45, Neg. LLF: 84.24743231934396
Iteration: 5, Func. Count: 55, Neg. LLF: 106.15916178808698
Iteration: 6, Func. Count: 65, Neg. LLF: 81.94836807052428
Iteration: 7, Func. Count: 75, Neg. LLF: 81.70838997340557
Iteration: 8, Func. Count: 85, Neg. LLF: 80.49285175215468
Iteration: 9, Func. Count: 94, Neg. LLF: 86.021043185387
Iteration: 10, Func. Count: 105, Neg. LLF: 80.98834973320376
Iteration: 11, Func. Count: 115, Neg. LLF: 80.2966022909829
Iteration: 12, Func. Count: 124, Neg. LLF: 80.29168319659716
Iteration: 13, Func. Count: 133, Neg. LLF: 80.29093148304231
Iteration: 14, Func. Count: 142, Neg. LLF: 80.29078279923603
Iteration: 15, Func. Count: 151, Neg. LLF: 80.29078189373567
Optimization terminated successfully (Exit mode 0)
Current function value: 80.29078189373567
Iterations: 15
Function evaluations: 151
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 17481934.20017454
Iteration: 2, Func. Count: 22, Neg. LLF: 52131826.09149052
Iteration: 3, Func. Count: 33, Neg. LLF: 21914379.79764833
Iteration: 4, Func. Count: 44, Neg. LLF: 83.7659582331304
Iteration: 5, Func. Count: 55, Neg. LLF: 91.2862554980418
Iteration: 6, Func. Count: 68, Neg. LLF: 86.3070945141393
Iteration: 7, Func. Count: 79, Neg. LLF: 81.35892105891217
Iteration: 8, Func. Count: 89, Neg. LLF: 81.40113804158811
Iteration: 9, Func. Count: 100, Neg. LLF: 83.9555031429047
Iteration: 10, Func. Count: 111, Neg. LLF: 81.27595101026361
Iteration: 11, Func. Count: 122, Neg. LLF: 81.04863796371318
Iteration: 12, Func. Count: 132, Neg. LLF: 81.03102871871192
Iteration: 13, Func. Count: 142, Neg. LLF: 81.0136169473081
Iteration: 14, Func. Count: 152, Neg. LLF: 81.00856299961266
Iteration: 15, Func. Count: 162, Neg. LLF: 81.00707121346672
Iteration: 16, Func. Count: 172, Neg. LLF: 81.00700613477267
Iteration: 17, Func. Count: 182, Neg. LLF: 81.0070001597931
Iteration: 18, Func. Count: 192, Neg. LLF: 81.00699956147888
Optimization terminated successfully (Exit mode 0)
Current function value: 81.00699956147888
Iterations: 18
Function evaluations: 192
Gradient evaluations: 18
Iteration: 1, Func. Count: 12, Neg. LLF: 89.85658323836805
Iteration: 2, Func. Count: 25, Neg. LLF: 273570748.01211303
Iteration: 3, Func. Count: 37, Neg. LLF: 9309435.914691133
Iteration: 4, Func. Count: 49, Neg. LLF: 408.54108332385704
Iteration: 5, Func. Count: 61, Neg. LLF: 87.24242595259548
Iteration: 6, Func. Count: 73, Neg. LLF: 91.6780355501422
Iteration: 7, Func. Count: 85, Neg. LLF: 82.9593071546864
Iteration: 8, Func. Count: 97, Neg. LLF: 81.89180345008741
Iteration: 9, Func. Count: 109, Neg. LLF: 79.96734657464793
Iteration: 10, Func. Count: 120, Neg. LLF: 79.88342607863407
Iteration: 11, Func. Count: 131, Neg. LLF: 79.86064839126222
Iteration: 12, Func. Count: 143, Neg. LLF: 79.77426918152959
Iteration: 13, Func. Count: 154, Neg. LLF: 79.75247895674434
Iteration: 14, Func. Count: 165, Neg. LLF: 79.75212016686636
Iteration: 15, Func. Count: 177, Neg. LLF: 79.74798108832617
Iteration: 16, Func. Count: 188, Neg. LLF: 79.74790819989387
Iteration: 17, Func. Count: 199, Neg. LLF: 79.74782850371409
Iteration: 18, Func. Count: 210, Neg. LLF: 79.74782780958236
Optimization terminated successfully (Exit mode 0)
Current function value: 79.74782780958236
Iterations: 18
Function evaluations: 210
Gradient evaluations: 18
Iteration: 1, Func. Count: 5, Neg. LLF: 132.54161056928217
Iteration: 2, Func. Count: 12, Neg. LLF: 141.28871358008706
Iteration: 3, Func. Count: 18, Neg. LLF: 92.56673155556032
Iteration: 4, Func. Count: 22, Neg. LLF: 92.3331461875006
Iteration: 5, Func. Count: 26, Neg. LLF: 92.23302967346538
Iteration: 6, Func. Count: 30, Neg. LLF: 92.23054209354896
Iteration: 7, Func. Count: 35, Neg. LLF: 92.18567352414993
Iteration: 8, Func. Count: 39, Neg. LLF: 92.185603081319
Iteration: 9, Func. Count: 42, Neg. LLF: 92.18560308138419
Optimization terminated successfully (Exit mode 0)
Current function value: 92.185603081319
Iterations: 9
Function evaluations: 42
Gradient evaluations: 9
Iteration: 1, Func. Count: 6, Neg. LLF: 154.28399615716881
Iteration: 2, Func. Count: 17, Neg. LLF: 670.4562640002626
Iteration: 3, Func. Count: 24, Neg. LLF: 159.40319156754822
Iteration: 4, Func. Count: 31, Neg. LLF: 82.81819853276448
Iteration: 5, Func. Count: 36, Neg. LLF: 82.82035907656197
Iteration: 6, Func. Count: 42, Neg. LLF: 82.81803794778371
Iteration: 7, Func. Count: 47, Neg. LLF: 82.8180365069295
Iteration: 8, Func. Count: 51, Neg. LLF: 82.81803643011212
Optimization terminated successfully (Exit mode 0)
Current function value: 82.8180365069295
Iterations: 8
Function evaluations: 51
Gradient evaluations: 8
Iteration: 1, Func. Count: 7, Neg. LLF: 154.5290124461987
Iteration: 2, Func. Count: 19, Neg. LLF: 209.99424791781303
Iteration: 3, Func. Count: 27, Neg. LLF: 173.01953778998757
Iteration: 4, Func. Count: 34, Neg. LLF: 83.14368230028693
Iteration: 5, Func. Count: 40, Neg. LLF: 82.82519889874723
Iteration: 6, Func. Count: 46, Neg. LLF: 82.82020923851981
Iteration: 7, Func. Count: 52, Neg. LLF: 82.8191174543127
Iteration: 8, Func. Count: 58, Neg. LLF: 82.81808803443307
Iteration: 9, Func. Count: 64, Neg. LLF: 82.8180415096116
Iteration: 10, Func. Count: 70, Neg. LLF: 82.81803649760103
Iteration: 11, Func. Count: 75, Neg. LLF: 82.81803645977021
Optimization terminated successfully (Exit mode 0)
Current function value: 82.81803649760103
Iterations: 11
Function evaluations: 75
Gradient evaluations: 11
Iteration: 1, Func. Count: 8, Neg. LLF: 191.89088771134405
Iteration: 2, Func. Count: 17, Neg. LLF: 2473.4324791510594
Iteration: 3, Func. Count: 25, Neg. LLF: 90.1560322933132
Iteration: 4, Func. Count: 33, Neg. LLF: 86.74804132390237
Iteration: 5, Func. Count: 41, Neg. LLF: 85.59802816585736
Iteration: 6, Func. Count: 49, Neg. LLF: 86.27961174218396
Iteration: 7, Func. Count: 57, Neg. LLF: 84.92018244237275
Iteration: 8, Func. Count: 65, Neg. LLF: 83.74465020781425
Iteration: 9, Func. Count: 72, Neg. LLF: 83.4515577059598
Iteration: 10, Func. Count: 79, Neg. LLF: 83.43311336987735
Iteration: 11, Func. Count: 86, Neg. LLF: 83.42163277398272
Iteration: 12, Func. Count: 93, Neg. LLF: 83.15894065058843
Iteration: 13, Func. Count: 100, Neg. LLF: 82.86665184711617
Iteration: 14, Func. Count: 107, Neg. LLF: 82.83771362090967
Iteration: 15, Func. Count: 114, Neg. LLF: 82.81920729241702
Iteration: 16, Func. Count: 121, Neg. LLF: 82.81807097714865
Iteration: 17, Func. Count: 128, Neg. LLF: 82.81803604821053
Iteration: 18, Func. Count: 134, Neg. LLF: 82.81803606086149
Optimization terminated successfully (Exit mode 0)
Current function value: 82.81803604821053
Iterations: 18
Function evaluations: 134
Gradient evaluations: 18
Iteration: 1, Func. Count: 9, Neg. LLF: 111.95755510204638
Iteration: 2, Func. Count: 19, Neg. LLF: 1643.3864748393703
Iteration: 3, Func. Count: 28, Neg. LLF: 92.01999986454457
Iteration: 4, Func. Count: 37, Neg. LLF: 89.23551634524702
Iteration: 5, Func. Count: 46, Neg. LLF: 89.09017385738672
Iteration: 6, Func. Count: 55, Neg. LLF: 88.02612616463884
Iteration: 7, Func. Count: 64, Neg. LLF: 83.53544983438019
Iteration: 8, Func. Count: 72, Neg. LLF: 83.4085038876433
Iteration: 9, Func. Count: 80, Neg. LLF: 83.37631839373498
Iteration: 10, Func. Count: 88, Neg. LLF: 82.87312068023247
Iteration: 11, Func. Count: 96, Neg. LLF: 82.98793093857995
Iteration: 12, Func. Count: 105, Neg. LLF: 82.818605039552
Iteration: 13, Func. Count: 113, Neg. LLF: 82.8180478309517
Iteration: 14, Func. Count: 121, Neg. LLF: 82.81803642422653
Iteration: 15, Func. Count: 128, Neg. LLF: 82.81803643341372
Optimization terminated successfully (Exit mode 0)
Current function value: 82.81803642422653
Iterations: 15
Function evaluations: 128
Gradient evaluations: 15
Iteration: 1, Func. Count: 6, Neg. LLF: 120.99979826901414
Iteration: 2, Func. Count: 14, Neg. LLF: 120.53860716777078
Iteration: 3, Func. Count: 20, Neg. LLF: 92.57427617558832
Iteration: 4, Func. Count: 25, Neg. LLF: 94.57529978210727
Iteration: 5, Func. Count: 31, Neg. LLF: 92.87917865947864
Iteration: 6, Func. Count: 37, Neg. LLF: 92.18817541600443
Iteration: 7, Func. Count: 43, Neg. LLF: 92.0212937969285
Iteration: 8, Func. Count: 48, Neg. LLF: 92.0192484387343
Iteration: 9, Func. Count: 53, Neg. LLF: 92.01876790661335
Iteration: 10, Func. Count: 58, Neg. LLF: 92.01866745193942
Iteration: 11, Func. Count: 63, Neg. LLF: 92.01863168272277
Iteration: 12, Func. Count: 68, Neg. LLF: 92.01862330817468
Iteration: 13, Func. Count: 73, Neg. LLF: 92.0186216386775
Iteration: 14, Func. Count: 77, Neg. LLF: 92.0186216386704
Optimization terminated successfully (Exit mode 0)
Current function value: 92.0186216386775
Iterations: 14
Function evaluations: 77
Gradient evaluations: 14
Iteration: 1, Func. Count: 7, Neg. LLF: 161.96301690371712
Iteration: 2, Func. Count: 18, Neg. LLF: 259.4367552875493
Iteration: 3, Func. Count: 26, Neg. LLF: 163.3588194542559
Iteration: 4, Func. Count: 34, Neg. LLF: 83.97476034320434
Iteration: 5, Func. Count: 41, Neg. LLF: 82.69805772236194
Iteration: 6, Func. Count: 47, Neg. LLF: 82.69508024705497
Iteration: 7, Func. Count: 53, Neg. LLF: 82.6942366453725
Iteration: 8, Func. Count: 59, Neg. LLF: 82.69422435449533
Iteration: 9, Func. Count: 65, Neg. LLF: 82.69422373020639
Optimization terminated successfully (Exit mode 0)
Current function value: 82.69422373020639
Iterations: 9
Function evaluations: 65
Gradient evaluations: 9
Iteration: 1, Func. Count: 8, Neg. LLF: 156.10016235606815
Iteration: 2, Func. Count: 21, Neg. LLF: 409.09706812813914
Iteration: 3, Func. Count: 30, Neg. LLF: 165.04948666143196
Iteration: 4, Func. Count: 38, Neg. LLF: 85.31003800963035
Iteration: 5, Func. Count: 46, Neg. LLF: 82.76810311653402
Iteration: 6, Func. Count: 53, Neg. LLF: 82.69451124169292
Iteration: 7, Func. Count: 60, Neg. LLF: 82.6942652651937
Iteration: 8, Func. Count: 67, Neg. LLF: 82.69422712297172
Iteration: 9, Func. Count: 74, Neg. LLF: 82.69422402210348
Iteration: 10, Func. Count: 80, Neg. LLF: 82.69422395532975
Optimization terminated successfully (Exit mode 0)
Current function value: 82.69422402210348
Iterations: 10
Function evaluations: 80
Gradient evaluations: 10
Iteration: 1, Func. Count: 9, Neg. LLF: 143.0926712725771
Iteration: 2, Func. Count: 19, Neg. LLF: 244.16469878824464
Iteration: 3, Func. Count: 28, Neg. LLF: 165.1280178618553
Iteration: 4, Func. Count: 37, Neg. LLF: 86.97442112161033
Iteration: 5, Func. Count: 46, Neg. LLF: 85.77325276891015
Iteration: 6, Func. Count: 55, Neg. LLF: 99.90270406469882
Iteration: 7, Func. Count: 64, Neg. LLF: 85.87657544854042
Iteration: 8, Func. Count: 73, Neg. LLF: 86.660983449631
Iteration: 9, Func. Count: 82, Neg. LLF: 83.40428590213698
Iteration: 10, Func. Count: 90, Neg. LLF: 83.56827295839115
Iteration: 11, Func. Count: 99, Neg. LLF: 83.37327147285286
Iteration: 12, Func. Count: 107, Neg. LLF: 83.36121637067832
Iteration: 13, Func. Count: 115, Neg. LLF: 83.35416213198148
Iteration: 14, Func. Count: 123, Neg. LLF: 83.35296129168717
Iteration: 15, Func. Count: 131, Neg. LLF: 83.35280364772801
Iteration: 16, Func. Count: 139, Neg. LLF: 83.3528026128344
Iteration: 17, Func. Count: 146, Neg. LLF: 83.35280257827498
Optimization terminated successfully (Exit mode 0)
Current function value: 83.3528026128344
Iterations: 17
Function evaluations: 146
Gradient evaluations: 17
Iteration: 1, Func. Count: 10, Neg. LLF: 138.18548388982083
Iteration: 2, Func. Count: 21, Neg. LLF: 102.90838290471771
Iteration: 3, Func. Count: 31, Neg. LLF: 90.47070857317885
Iteration: 4, Func. Count: 41, Neg. LLF: 90.7996236059044
Iteration: 5, Func. Count: 51, Neg. LLF: 88.16157143727709
Iteration: 6, Func. Count: 61, Neg. LLF: 88.62329080106433
Iteration: 7, Func. Count: 71, Neg. LLF: 88.40460871295012
Iteration: 8, Func. Count: 81, Neg. LLF: 83.56782659442942
Iteration: 9, Func. Count: 90, Neg. LLF: 83.48298745723974
Iteration: 10, Func. Count: 99, Neg. LLF: 83.40010048786355
Iteration: 11, Func. Count: 108, Neg. LLF: 83.35745392814775
Iteration: 12, Func. Count: 117, Neg. LLF: 83.35411948041246
Iteration: 13, Func. Count: 126, Neg. LLF: 83.35376629801871
Iteration: 14, Func. Count: 135, Neg. LLF: 83.35371851067136
Iteration: 15, Func. Count: 144, Neg. LLF: 83.35348525680496
Iteration: 16, Func. Count: 153, Neg. LLF: 83.35317849672883
Iteration: 17, Func. Count: 162, Neg. LLF: 83.35290816031342
Iteration: 18, Func. Count: 171, Neg. LLF: 83.3528137190652
Iteration: 19, Func. Count: 180, Neg. LLF: 83.35280283997918
Iteration: 20, Func. Count: 188, Neg. LLF: 83.35280286186614
Optimization terminated successfully (Exit mode 0)
Current function value: 83.35280283997918
Iterations: 20
Function evaluations: 188
Gradient evaluations: 20
Iteration: 1, Func. Count: 7, Neg. LLF: 146.20452600328724
Iteration: 2, Func. Count: 16, Neg. LLF: 394.47434029591307
Iteration: 3, Func. Count: 23, Neg. LLF: 4653187.214803029
Iteration: 4, Func. Count: 30, Neg. LLF: 91.44163101495334
Iteration: 5, Func. Count: 37, Neg. LLF: 89.02695145941004
Iteration: 6, Func. Count: 44, Neg. LLF: 87.96291036169609
Iteration: 7, Func. Count: 51, Neg. LLF: 89.6139705682935
Iteration: 8, Func. Count: 58, Neg. LLF: 87.53949871707229
Iteration: 9, Func. Count: 64, Neg. LLF: 87.48125773570412
Iteration: 10, Func. Count: 70, Neg. LLF: 87.47554237957308
Iteration: 11, Func. Count: 76, Neg. LLF: 87.47483869544858
Iteration: 12, Func. Count: 82, Neg. LLF: 87.47476584415622
Iteration: 13, Func. Count: 87, Neg. LLF: 87.47476584416216
Optimization terminated successfully (Exit mode 0)
Current function value: 87.47476584415622
Iterations: 13
Function evaluations: 87
Gradient evaluations: 13
Iteration: 1, Func. Count: 8, Neg. LLF: 289.27510843903826
Iteration: 2, Func. Count: 18, Neg. LLF: 410776356.4168896
Iteration: 3, Func. Count: 27, Neg. LLF: 309.73322138362346
Iteration: 4, Func. Count: 35, Neg. LLF: 86.28796811162681
Iteration: 5, Func. Count: 43, Neg. LLF: 80.83293601176197
Iteration: 6, Func. Count: 50, Neg. LLF: 80.79914029409929
Iteration: 7, Func. Count: 57, Neg. LLF: 80.79517217039776
Iteration: 8, Func. Count: 64, Neg. LLF: 80.79194900230186
Iteration: 9, Func. Count: 71, Neg. LLF: 80.79190811308224
Iteration: 10, Func. Count: 78, Neg. LLF: 80.7919066482905
Iteration: 11, Func. Count: 84, Neg. LLF: 80.791906570598
Optimization terminated successfully (Exit mode 0)
Current function value: 80.7919066482905
Iterations: 11
Function evaluations: 84
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 165.61561214485005
Iteration: 2, Func. Count: 22, Neg. LLF: 27503.942577037895
Iteration: 3, Func. Count: 32, Neg. LLF: 12147024.449565874
Iteration: 4, Func. Count: 41, Neg. LLF: 82.02028804075047
Iteration: 5, Func. Count: 50, Neg. LLF: 80.95676719840712
Iteration: 6, Func. Count: 59, Neg. LLF: 80.528707911671
Iteration: 7, Func. Count: 68, Neg. LLF: 81.25346753017922
Iteration: 8, Func. Count: 77, Neg. LLF: 79.91205994199603
Iteration: 9, Func. Count: 85, Neg. LLF: 79.96286445110609
Iteration: 10, Func. Count: 94, Neg. LLF: 79.89421756325635
Iteration: 11, Func. Count: 102, Neg. LLF: 79.8905212897332
Iteration: 12, Func. Count: 110, Neg. LLF: 79.89034901448285
Iteration: 13, Func. Count: 118, Neg. LLF: 79.8903172818124
Iteration: 14, Func. Count: 126, Neg. LLF: 79.89031348373105
Iteration: 15, Func. Count: 133, Neg. LLF: 79.89031336480677
Optimization terminated successfully (Exit mode 0)
Current function value: 79.89031348373105
Iterations: 15
Function evaluations: 133
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 140.76813019445922
Iteration: 2, Func. Count: 24, Neg. LLF: 291814251.00637877
Iteration: 3, Func. Count: 35, Neg. LLF: 12442446.838764453
Iteration: 4, Func. Count: 45, Neg. LLF: 86.20726964049213
Iteration: 5, Func. Count: 55, Neg. LLF: 82.47265836043135
Iteration: 6, Func. Count: 65, Neg. LLF: 81.49495842468886
Iteration: 7, Func. Count: 75, Neg. LLF: 80.85457087272358
Iteration: 8, Func. Count: 84, Neg. LLF: 80.72796623220228
Iteration: 9, Func. Count: 93, Neg. LLF: 80.82861986013108
Iteration: 10, Func. Count: 103, Neg. LLF: 80.66577006293265
Iteration: 11, Func. Count: 112, Neg. LLF: 80.64688271394581
Iteration: 12, Func. Count: 121, Neg. LLF: 80.5748193800217
Iteration: 13, Func. Count: 130, Neg. LLF: 80.04322459933199
Iteration: 14, Func. Count: 139, Neg. LLF: 79.91305932354288
Iteration: 15, Func. Count: 148, Neg. LLF: 79.90915509817876
Iteration: 16, Func. Count: 157, Neg. LLF: 79.8711356245953
Iteration: 17, Func. Count: 166, Neg. LLF: 79.89361318399172
Iteration: 18, Func. Count: 176, Neg. LLF: 79.87846496740548
Iteration: 19, Func. Count: 185, Neg. LLF: 83.3276534646808
Iteration: 20, Func. Count: 196, Neg. LLF: 79.92320763840083
Iteration: 21, Func. Count: 207, Neg. LLF: 79.9174798352141
Iteration: 22, Func. Count: 218, Neg. LLF: 79.8906207606275
Iteration: 23, Func. Count: 228, Neg. LLF: 79.89256632898176
Iteration: 24, Func. Count: 239, Neg. LLF: 79.89119401723295
Iteration: 25, Func. Count: 249, Neg. LLF: 79.89031495161787
Iteration: 26, Func. Count: 260, Neg. LLF: 79.89031350261563
Iteration: 27, Func. Count: 268, Neg. LLF: 79.89031355408613
Optimization terminated successfully (Exit mode 0)
Current function value: 79.89031350261563
Iterations: 28
Function evaluations: 268
Gradient evaluations: 27
Iteration: 1, Func. Count: 11, Neg. LLF: 127.98025302429022
Iteration: 2, Func. Count: 26, Neg. LLF: 227699327.8187697
Iteration: 3, Func. Count: 38, Neg. LLF: 12445450.387525849
Iteration: 4, Func. Count: 49, Neg. LLF: 87.23591994718055
Iteration: 5, Func. Count: 60, Neg. LLF: 85.62945888041273
Iteration: 6, Func. Count: 71, Neg. LLF: 81.68204924535944
Iteration: 7, Func. Count: 82, Neg. LLF: 83.98267120337417
Iteration: 8, Func. Count: 93, Neg. LLF: 80.52467658910498
Iteration: 9, Func. Count: 104, Neg. LLF: 80.27010898016746
Iteration: 10, Func. Count: 115, Neg. LLF: 82.02643191235725
Iteration: 11, Func. Count: 126, Neg. LLF: 80.68895181739155
Iteration: 12, Func. Count: 137, Neg. LLF: 80.79464863242504
Iteration: 13, Func. Count: 148, Neg. LLF: 79.58551954788312
Iteration: 14, Func. Count: 158, Neg. LLF: 79.5879672641243
Iteration: 15, Func. Count: 169, Neg. LLF: 79.56228448012068
Iteration: 16, Func. Count: 179, Neg. LLF: 79.56201301564955
Iteration: 17, Func. Count: 189, Neg. LLF: 79.56200707248117
Iteration: 18, Func. Count: 198, Neg. LLF: 79.56200696753717
Optimization terminated successfully (Exit mode 0)
Current function value: 79.56200707248117
Iterations: 18
Function evaluations: 198
Gradient evaluations: 18
Iteration: 1, Func. Count: 8, Neg. LLF: 133.05577760154205
Iteration: 2, Func. Count: 18, Neg. LLF: 491848995.1053196
Iteration: 3, Func. Count: 27, Neg. LLF: 4449334.947256061
Iteration: 4, Func. Count: 35, Neg. LLF: 169.1479204643941
Iteration: 5, Func. Count: 43, Neg. LLF: 88.41768400580962
Iteration: 6, Func. Count: 51, Neg. LLF: 87.99135793216715
Iteration: 7, Func. Count: 59, Neg. LLF: 95.0023105790931
Iteration: 8, Func. Count: 67, Neg. LLF: 87.51303155824229
Iteration: 9, Func. Count: 74, Neg. LLF: 87.48058880281266
Iteration: 10, Func. Count: 81, Neg. LLF: 87.47518481231958
Iteration: 11, Func. Count: 88, Neg. LLF: 87.47477741770953
Iteration: 12, Func. Count: 95, Neg. LLF: 87.47476580610497
Iteration: 13, Func. Count: 101, Neg. LLF: 87.47476586140999
Optimization terminated successfully (Exit mode 0)
Current function value: 87.47476580610497
Iterations: 13
Function evaluations: 101
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 216.8680084721557
Iteration: 2, Func. Count: 21, Neg. LLF: 315.7009326453986
Iteration: 3, Func. Count: 31, Neg. LLF: 2047.462810445551
Iteration: 4, Func. Count: 40, Neg. LLF: 86.21136031086807
Iteration: 5, Func. Count: 49, Neg. LLF: 80.82874852450578
Iteration: 6, Func. Count: 57, Neg. LLF: 80.82854779539792
Iteration: 7, Func. Count: 66, Neg. LLF: 80.79338101869457
Iteration: 8, Func. Count: 74, Neg. LLF: 80.79197172889445
Iteration: 9, Func. Count: 82, Neg. LLF: 80.79190940198183
Iteration: 10, Func. Count: 90, Neg. LLF: 80.79190673151655
Iteration: 11, Func. Count: 97, Neg. LLF: 80.79190665371435
Optimization terminated successfully (Exit mode 0)
Current function value: 80.79190673151655
Iterations: 11
Function evaluations: 97
Gradient evaluations: 11
Iteration: 1, Func. Count: 10, Neg. LLF: 165.54983952996963
Iteration: 2, Func. Count: 24, Neg. LLF: 595.3905240259722
Iteration: 3, Func. Count: 35, Neg. LLF: 6808056.686934107
Iteration: 4, Func. Count: 45, Neg. LLF: 82.63939480648547
Iteration: 5, Func. Count: 55, Neg. LLF: 81.64508881151544
Iteration: 6, Func. Count: 65, Neg. LLF: 80.70133799368567
Iteration: 7, Func. Count: 75, Neg. LLF: 80.5492531627448
Iteration: 8, Func. Count: 85, Neg. LLF: 79.95889871499159
Iteration: 9, Func. Count: 94, Neg. LLF: 89.8912892491264
Iteration: 10, Func. Count: 105, Neg. LLF: 79.8621402243922
Iteration: 11, Func. Count: 114, Neg. LLF: 79.84323529483115
Iteration: 12, Func. Count: 123, Neg. LLF: 79.83932956394992
Iteration: 13, Func. Count: 132, Neg. LLF: 79.83842201318608
Iteration: 14, Func. Count: 141, Neg. LLF: 79.83835957524016
Iteration: 15, Func. Count: 150, Neg. LLF: 79.83835455255362
Iteration: 16, Func. Count: 159, Neg. LLF: 79.83835391758168
Optimization terminated successfully (Exit mode 0)
Current function value: 79.83835391758168
Iterations: 16
Function evaluations: 159
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 148.0637304761319
Iteration: 2, Func. Count: 26, Neg. LLF: 302534347.3665172
Iteration: 3, Func. Count: 38, Neg. LLF: 6604692.802319949
Iteration: 4, Func. Count: 49, Neg. LLF: 83.81164655263852
Iteration: 5, Func. Count: 60, Neg. LLF: 83.71784432616202
Iteration: 6, Func. Count: 71, Neg. LLF: 81.001753800421
Iteration: 7, Func. Count: 81, Neg. LLF: 82.9620755147399
Iteration: 8, Func. Count: 92, Neg. LLF: 81.16102997134263
Iteration: 9, Func. Count: 103, Neg. LLF: 80.66069972054868
Iteration: 10, Func. Count: 113, Neg. LLF: 80.92079976643315
Iteration: 11, Func. Count: 124, Neg. LLF: 80.13411228651431
Iteration: 12, Func. Count: 134, Neg. LLF: 80.64108490080756
Iteration: 13, Func. Count: 145, Neg. LLF: 80.01766178249288
Iteration: 14, Func. Count: 156, Neg. LLF: 79.84330068674402
Iteration: 15, Func. Count: 166, Neg. LLF: 79.83930672768987
Iteration: 16, Func. Count: 176, Neg. LLF: 79.8384637001414
Iteration: 17, Func. Count: 186, Neg. LLF: 79.83835421912225
Iteration: 18, Func. Count: 195, Neg. LLF: 79.83835425855983
Optimization terminated successfully (Exit mode 0)
Current function value: 79.83835421912225
Iterations: 18
Function evaluations: 195
Gradient evaluations: 18
Iteration: 1, Func. Count: 12, Neg. LLF: 132.4818237624093
Iteration: 2, Func. Count: 28, Neg. LLF: 218985538.03846508
Iteration: 3, Func. Count: 40, Neg. LLF: 9353729.334092325
Iteration: 4, Func. Count: 52, Neg. LLF: 90.43313399328981
Iteration: 5, Func. Count: 64, Neg. LLF: 82.00537967725137
Iteration: 6, Func. Count: 76, Neg. LLF: 113.88425326381024
Iteration: 7, Func. Count: 88, Neg. LLF: 83.33179881905406
Iteration: 8, Func. Count: 100, Neg. LLF: 80.47859273046672
Iteration: 9, Func. Count: 112, Neg. LLF: 82.52102882180289
Iteration: 10, Func. Count: 124, Neg. LLF: 79.87442466074462
Iteration: 11, Func. Count: 135, Neg. LLF: 81.78305148699567
Iteration: 12, Func. Count: 147, Neg. LLF: 79.71249692850314
Iteration: 13, Func. Count: 159, Neg. LLF: 79.54832457705002
Iteration: 14, Func. Count: 170, Neg. LLF: 79.52813303578888
Iteration: 15, Func. Count: 181, Neg. LLF: 79.5269429565828
Iteration: 16, Func. Count: 192, Neg. LLF: 79.52680890551991
Iteration: 17, Func. Count: 203, Neg. LLF: 79.52680187143315
Iteration: 18, Func. Count: 214, Neg. LLF: 79.52680130026076
Optimization terminated successfully (Exit mode 0)
Current function value: 79.52680130026076
Iterations: 18
Function evaluations: 214
Gradient evaluations: 18
Iteration: 1, Func. Count: 9, Neg. LLF: 132.66514280529188
Iteration: 2, Func. Count: 19, Neg. LLF: 2024.8010202643773
Iteration: 3, Func. Count: 28, Neg. LLF: 11585566.258350682
Iteration: 4, Func. Count: 37, Neg. LLF: 5247469.251286706
Iteration: 5, Func. Count: 46, Neg. LLF: 2292831.861053126
Iteration: 6, Func. Count: 55, Neg. LLF: 122.01757061883174
Iteration: 7, Func. Count: 64, Neg. LLF: 97.05293206603173
Iteration: 8, Func. Count: 73, Neg. LLF: 92.63523685220406
Iteration: 9, Func. Count: 82, Neg. LLF: 85.81460201737654
Iteration: 10, Func. Count: 90, Neg. LLF: 85.58456361957393
Iteration: 11, Func. Count: 98, Neg. LLF: 85.5207322065942
Iteration: 12, Func. Count: 106, Neg. LLF: 85.44474542666237
Iteration: 13, Func. Count: 114, Neg. LLF: 85.40745507432226
Iteration: 14, Func. Count: 122, Neg. LLF: 85.40372652588702
Iteration: 15, Func. Count: 130, Neg. LLF: 85.40323970250839
Iteration: 16, Func. Count: 138, Neg. LLF: 85.40323492962168
Iteration: 17, Func. Count: 145, Neg. LLF: 85.40323492966797
Optimization terminated successfully (Exit mode 0)
Current function value: 85.40323492962168
Iterations: 17
Function evaluations: 145
Gradient evaluations: 17
Iteration: 1, Func. Count: 10, Neg. LLF: 158.26509438742286
Iteration: 2, Func. Count: 25, Neg. LLF: 547177490.867492
Iteration: 3, Func. Count: 36, Neg. LLF: 12351810.734324118
Iteration: 4, Func. Count: 46, Neg. LLF: 81.33105293347712
Iteration: 5, Func. Count: 55, Neg. LLF: 80.89985659310224
Iteration: 6, Func. Count: 64, Neg. LLF: 80.83276466564662
Iteration: 7, Func. Count: 73, Neg. LLF: 80.80460997449542
Iteration: 8, Func. Count: 82, Neg. LLF: 80.79274718480785
Iteration: 9, Func. Count: 91, Neg. LLF: 80.7919314068272
Iteration: 10, Func. Count: 100, Neg. LLF: 80.79190694788784
Iteration: 11, Func. Count: 109, Neg. LLF: 80.79190659671382
Optimization terminated successfully (Exit mode 0)
Current function value: 80.79190659671382
Iterations: 11
Function evaluations: 109
Gradient evaluations: 11
Iteration: 1, Func. Count: 11, Neg. LLF: 157.65651702244355
Iteration: 2, Func. Count: 26, Neg. LLF: 2542.702289109218
Iteration: 3, Func. Count: 38, Neg. LLF: 12326793.0261594
Iteration: 4, Func. Count: 49, Neg. LLF: 82.94689173676194
Iteration: 5, Func. Count: 60, Neg. LLF: 84.48370115725709
Iteration: 6, Func. Count: 71, Neg. LLF: 80.83809153741409
Iteration: 7, Func. Count: 82, Neg. LLF: 80.45794507392104
Iteration: 8, Func. Count: 93, Neg. LLF: 79.98187260514727
Iteration: 9, Func. Count: 103, Neg. LLF: 84.52195985806158
Iteration: 10, Func. Count: 115, Neg. LLF: 79.90709847686715
Iteration: 11, Func. Count: 126, Neg. LLF: 79.85559017583455
Iteration: 12, Func. Count: 136, Neg. LLF: 79.8401604283215
Iteration: 13, Func. Count: 146, Neg. LLF: 79.83882295656417
Iteration: 14, Func. Count: 156, Neg. LLF: 79.83835805070396
Iteration: 15, Func. Count: 166, Neg. LLF: 79.83835441983548
Iteration: 16, Func. Count: 176, Neg. LLF: 79.83835397476236
Optimization terminated successfully (Exit mode 0)
Current function value: 79.83835397476236
Iterations: 16
Function evaluations: 176
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 142.9591989174826
Iteration: 2, Func. Count: 29, Neg. LLF: 436856416.50664926
Iteration: 3, Func. Count: 42, Neg. LLF: 6555138.884629919
Iteration: 4, Func. Count: 54, Neg. LLF: 102.57443746106087
Iteration: 5, Func. Count: 66, Neg. LLF: 86.6824366081894
Iteration: 6, Func. Count: 78, Neg. LLF: 82.3603248598879
Iteration: 7, Func. Count: 90, Neg. LLF: 83.12984926381957
Iteration: 8, Func. Count: 102, Neg. LLF: 81.01925392878283
Iteration: 9, Func. Count: 114, Neg. LLF: 80.8048352934722
Iteration: 10, Func. Count: 126, Neg. LLF: 81.70715156588459
Iteration: 11, Func. Count: 138, Neg. LLF: 80.68074618348182
Iteration: 12, Func. Count: 149, Neg. LLF: 80.73444802562346
Iteration: 13, Func. Count: 161, Neg. LLF: 80.67965992224299
Iteration: 14, Func. Count: 172, Neg. LLF: 80.6795292184239
Iteration: 15, Func. Count: 183, Neg. LLF: 80.67952101781253
Iteration: 16, Func. Count: 194, Neg. LLF: 80.6795200184889
Optimization terminated successfully (Exit mode 0)
Current function value: 80.6795200184889
Iterations: 16
Function evaluations: 194
Gradient evaluations: 16
Iteration: 1, Func. Count: 13, Neg. LLF: 186546102.68515185
Iteration: 2, Func. Count: 26, Neg. LLF: 7892631.58338974
Iteration: 3, Func. Count: 39, Neg. LLF: 85.70406059482016
Iteration: 4, Func. Count: 52, Neg. LLF: 162.3622573584268
Iteration: 5, Func. Count: 65, Neg. LLF: 83.87085693444745
Iteration: 6, Func. Count: 79, Neg. LLF: 81.46902365302009
Iteration: 7, Func. Count: 92, Neg. LLF: 84.43429742479987
Iteration: 8, Func. Count: 105, Neg. LLF: 83.25203188382683
Iteration: 9, Func. Count: 118, Neg. LLF: 79.6787573025423
Iteration: 10, Func. Count: 130, Neg. LLF: 91.75189929231453
Iteration: 11, Func. Count: 143, Neg. LLF: 79.55275979047015
Iteration: 12, Func. Count: 155, Neg. LLF: 79.5329240700558
Iteration: 13, Func. Count: 167, Neg. LLF: 79.52732280644165
Iteration: 14, Func. Count: 179, Neg. LLF: 79.52685289384891
Iteration: 15, Func. Count: 191, Neg. LLF: 79.52680310712617
Iteration: 16, Func. Count: 203, Neg. LLF: 79.52680133127458
Iteration: 17, Func. Count: 214, Neg. LLF: 79.52680122612011
Optimization terminated successfully (Exit mode 0)
Current function value: 79.52680133127458
Iterations: 17
Function evaluations: 214
Gradient evaluations: 17
Iteration: 1, Func. Count: 6, Neg. LLF: 118.67021406846968
Iteration: 2, Func. Count: 13, Neg. LLF: 154.7465683312383
Iteration: 3, Func. Count: 19, Neg. LLF: 2370.073473694699
Iteration: 4, Func. Count: 25, Neg. LLF: 490.27859705854524
Iteration: 5, Func. Count: 31, Neg. LLF: 259.69383789789595
Iteration: 6, Func. Count: 37, Neg. LLF: 516.8811403365961
Iteration: 7, Func. Count: 43, Neg. LLF: 140.4988135198422
Iteration: 8, Func. Count: 49, Neg. LLF: 94.84712838403401
Iteration: 9, Func. Count: 55, Neg. LLF: 118.13303890562693
Iteration: 10, Func. Count: 61, Neg. LLF: 86.59498998753573
Iteration: 11, Func. Count: 67, Neg. LLF: 85.5025272841616
Iteration: 12, Func. Count: 72, Neg. LLF: 85.31165936928484
Iteration: 13, Func. Count: 77, Neg. LLF: 85.26992891458187
Iteration: 14, Func. Count: 82, Neg. LLF: 85.26620277647346
Iteration: 15, Func. Count: 87, Neg. LLF: 85.26575907640371
Iteration: 16, Func. Count: 92, Neg. LLF: 85.26575650544426
Iteration: 17, Func. Count: 96, Neg. LLF: 85.2657564934477
Optimization terminated successfully (Exit mode 0)
Current function value: 85.26575650544426
Iterations: 17
Function evaluations: 96
Gradient evaluations: 17
Iteration: 1, Func. Count: 7, Neg. LLF: 157.27629743310493
Iteration: 2, Func. Count: 18, Neg. LLF: 233.19411781814262
Iteration: 3, Func. Count: 26, Neg. LLF: 114.81515742867161
Iteration: 4, Func. Count: 33, Neg. LLF: 81.16082068804496
Iteration: 5, Func. Count: 39, Neg. LLF: 90.32047550408971
Iteration: 6, Func. Count: 46, Neg. LLF: 81.4431928250671
Iteration: 7, Func. Count: 53, Neg. LLF: 81.34020500571125
Iteration: 8, Func. Count: 60, Neg. LLF: 80.98716314514255
Iteration: 9, Func. Count: 66, Neg. LLF: 80.98580640249854
Iteration: 10, Func. Count: 72, Neg. LLF: 80.98576148687704
Iteration: 11, Func. Count: 78, Neg. LLF: 80.98575988963557
Iteration: 12, Func. Count: 83, Neg. LLF: 80.98575987306424
Optimization terminated successfully (Exit mode 0)
Current function value: 80.98575988963557
Iterations: 12
Function evaluations: 83
Gradient evaluations: 12
Iteration: 1, Func. Count: 8, Neg. LLF: 149.3196234327005
Iteration: 2, Func. Count: 21, Neg. LLF: 203.31882274229616
Iteration: 3, Func. Count: 30, Neg. LLF: 109.48814708554792
Iteration: 4, Func. Count: 38, Neg. LLF: 81.28353603243798
Iteration: 5, Func. Count: 45, Neg. LLF: 81.30370378289159
Iteration: 6, Func. Count: 53, Neg. LLF: 92.70616236965692
Iteration: 7, Func. Count: 62, Neg. LLF: 81.01042622441724
Iteration: 8, Func. Count: 69, Neg. LLF: 80.99121536074246
Iteration: 9, Func. Count: 76, Neg. LLF: 80.98619508629564
Iteration: 10, Func. Count: 83, Neg. LLF: 80.98577377673949
Iteration: 11, Func. Count: 90, Neg. LLF: 80.98576022989137
Iteration: 12, Func. Count: 96, Neg. LLF: 80.98576026181573
Optimization terminated successfully (Exit mode 0)
Current function value: 80.98576022989137
Iterations: 12
Function evaluations: 96
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 219.15969077881064
Iteration: 2, Func. Count: 18, Neg. LLF: 689.4782402430395
Iteration: 3, Func. Count: 27, Neg. LLF: 85.56549514410337
Iteration: 4, Func. Count: 36, Neg. LLF: 83.12670702810725
Iteration: 5, Func. Count: 45, Neg. LLF: 81.15095743295771
Iteration: 6, Func. Count: 53, Neg. LLF: 84.70236632788927
Iteration: 7, Func. Count: 62, Neg. LLF: 81.39110049943848
Iteration: 8, Func. Count: 71, Neg. LLF: 81.01788285910011
Iteration: 9, Func. Count: 80, Neg. LLF: 80.98591658843506
Iteration: 10, Func. Count: 88, Neg. LLF: 80.98576232350833
Iteration: 11, Func. Count: 96, Neg. LLF: 80.9857599383945
Iteration: 12, Func. Count: 103, Neg. LLF: 80.98575997667346
Optimization terminated successfully (Exit mode 0)
Current function value: 80.9857599383945
Iterations: 12
Function evaluations: 103
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 407380.2178099718
Iteration: 2, Func. Count: 20, Neg. LLF: 1213.362988635878
Iteration: 3, Func. Count: 30, Neg. LLF: 86.75879955667973
Iteration: 4, Func. Count: 40, Neg. LLF: 81.25821571011109
Iteration: 5, Func. Count: 49, Neg. LLF: 83.72267754862301
Iteration: 6, Func. Count: 60, Neg. LLF: 81.48312056345694
Iteration: 7, Func. Count: 70, Neg. LLF: 80.98884811187051
Iteration: 8, Func. Count: 79, Neg. LLF: 80.98584472360557
Iteration: 9, Func. Count: 88, Neg. LLF: 80.98576274897502
Iteration: 10, Func. Count: 97, Neg. LLF: 80.98576024381263
Iteration: 11, Func. Count: 105, Neg. LLF: 80.98576025015487
Optimization terminated successfully (Exit mode 0)
Current function value: 80.98576024381263
Iterations: 11
Function evaluations: 105
Gradient evaluations: 11
Iteration: 1, Func. Count: 7, Neg. LLF: 117.84247716421791
Iteration: 2, Func. Count: 15, Neg. LLF: 155.8164394807239
Iteration: 3, Func. Count: 22, Neg. LLF: 1808.7465174894648
Iteration: 4, Func. Count: 29, Neg. LLF: 3614.1876946264165
Iteration: 5, Func. Count: 36, Neg. LLF: 7205.201842159401
Iteration: 6, Func. Count: 43, Neg. LLF: 21477.421161431954
Iteration: 7, Func. Count: 50, Neg. LLF: 575.3705283243272
Iteration: 8, Func. Count: 57, Neg. LLF: 176.16581080530338
Iteration: 9, Func. Count: 64, Neg. LLF: 1106.5938089036838
Iteration: 10, Func. Count: 71, Neg. LLF: 95.37529903115525
Iteration: 11, Func. Count: 78, Neg. LLF: 94.37688233437088
Iteration: 12, Func. Count: 85, Neg. LLF: 85.51057202003727
Iteration: 13, Func. Count: 92, Neg. LLF: 85.88100533100574
Iteration: 14, Func. Count: 99, Neg. LLF: 85.12874884620771
Iteration: 15, Func. Count: 105, Neg. LLF: 85.06978686418954
Iteration: 16, Func. Count: 111, Neg. LLF: 85.06886753307671
Iteration: 17, Func. Count: 117, Neg. LLF: 85.0688139252196
Iteration: 18, Func. Count: 123, Neg. LLF: 85.06881345120198
Optimization terminated successfully (Exit mode 0)
Current function value: 85.06881345120198
Iterations: 18
Function evaluations: 123
Gradient evaluations: 18
Iteration: 1, Func. Count: 8, Neg. LLF: 164.61758245366542
Iteration: 2, Func. Count: 20, Neg. LLF: 173.1161416710849
Iteration: 3, Func. Count: 29, Neg. LLF: 104.1676249896542
Iteration: 4, Func. Count: 37, Neg. LLF: 80.84045476732499
Iteration: 5, Func. Count: 44, Neg. LLF: 92.99729513889037
Iteration: 6, Func. Count: 53, Neg. LLF: 81.903717454778
Iteration: 7, Func. Count: 61, Neg. LLF: 80.83597767841741
Iteration: 8, Func. Count: 69, Neg. LLF: 80.78151127238733
Iteration: 9, Func. Count: 76, Neg. LLF: 80.78001066082794
Iteration: 10, Func. Count: 83, Neg. LLF: 80.77975108723204
Iteration: 11, Func. Count: 90, Neg. LLF: 80.7797482464484
Iteration: 12, Func. Count: 96, Neg. LLF: 80.77974823775736
Optimization terminated successfully (Exit mode 0)
Current function value: 80.7797482464484
Iterations: 12
Function evaluations: 96
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 157.31054059434953
Iteration: 2, Func. Count: 22, Neg. LLF: 156.86357063208015
Iteration: 3, Func. Count: 32, Neg. LLF: 103.82935692341414
Iteration: 4, Func. Count: 41, Neg. LLF: 81.26824770446626
Iteration: 5, Func. Count: 49, Neg. LLF: 81.41976405734317
Iteration: 6, Func. Count: 58, Neg. LLF: 88.98473728769802
Iteration: 7, Func. Count: 68, Neg. LLF: 82.59136249472456
Iteration: 8, Func. Count: 77, Neg. LLF: 80.78505280582804
Iteration: 9, Func. Count: 85, Neg. LLF: 80.7809913206203
Iteration: 10, Func. Count: 93, Neg. LLF: 80.7798212330245
Iteration: 11, Func. Count: 101, Neg. LLF: 80.77975902074996
Iteration: 12, Func. Count: 109, Neg. LLF: 80.77975007850378
Iteration: 13, Func. Count: 117, Neg. LLF: 80.77974831112203
Iteration: 14, Func. Count: 124, Neg. LLF: 80.77974834765352
Optimization terminated successfully (Exit mode 0)
Current function value: 80.77974831112203
Iterations: 14
Function evaluations: 124
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 158.2579454516302
Iteration: 2, Func. Count: 21, Neg. LLF: 561.4271669256242
Iteration: 3, Func. Count: 31, Neg. LLF: 88.04373173361792
Iteration: 4, Func. Count: 41, Neg. LLF: 81.66740441150414
Iteration: 5, Func. Count: 50, Neg. LLF: 82.87347229797285
Iteration: 6, Func. Count: 61, Neg. LLF: 84.48998910464853
Iteration: 7, Func. Count: 71, Neg. LLF: 80.7813716347989
Iteration: 8, Func. Count: 80, Neg. LLF: 80.7797577091443
Iteration: 9, Func. Count: 89, Neg. LLF: 80.77974835014074
Iteration: 10, Func. Count: 97, Neg. LLF: 80.77974838629936
Optimization terminated successfully (Exit mode 0)
Current function value: 80.77974835014074
Iterations: 10
Function evaluations: 97
Gradient evaluations: 10
Iteration: 1, Func. Count: 11, Neg. LLF: 261.5909818702392
Iteration: 2, Func. Count: 22, Neg. LLF: 545.1117676290156
Iteration: 3, Func. Count: 33, Neg. LLF: 106.47555903639167
Iteration: 4, Func. Count: 44, Neg. LLF: 84.94292500718788
Iteration: 5, Func. Count: 55, Neg. LLF: 88.01124385714205
Iteration: 6, Func. Count: 66, Neg. LLF: 88.4117897932739
Iteration: 7, Func. Count: 77, Neg. LLF: 85.28288901341371
Iteration: 8, Func. Count: 88, Neg. LLF: 80.83189795861068
Iteration: 9, Func. Count: 98, Neg. LLF: 80.81508035817168
Iteration: 10, Func. Count: 109, Neg. LLF: 80.7799196109449
Iteration: 11, Func. Count: 119, Neg. LLF: 80.77977124955004
Iteration: 12, Func. Count: 129, Neg. LLF: 80.77974897788053
Iteration: 13, Func. Count: 139, Neg. LLF: 80.779748216443
Optimization terminated successfully (Exit mode 0)
Current function value: 80.779748216443
Iterations: 13
Function evaluations: 139
Gradient evaluations: 13
Iteration: 1, Func. Count: 8, Neg. LLF: 109.34675465041452
Iteration: 2, Func. Count: 17, Neg. LLF: 184.58426578613089
Iteration: 3, Func. Count: 25, Neg. LLF: 252.6939125677579
Iteration: 4, Func. Count: 33, Neg. LLF: 314.43225810075836
Iteration: 5, Func. Count: 41, Neg. LLF: 1593.4156421839152
Iteration: 6, Func. Count: 49, Neg. LLF: 96.45520205352771
Iteration: 7, Func. Count: 57, Neg. LLF: 87.98517238391943
Iteration: 8, Func. Count: 65, Neg. LLF: 86.60752922905601
Iteration: 9, Func. Count: 73, Neg. LLF: 84.72415524714053
Iteration: 10, Func. Count: 80, Neg. LLF: 85.51434782229602
Iteration: 11, Func. Count: 88, Neg. LLF: 84.90124784791735
Iteration: 12, Func. Count: 96, Neg. LLF: 84.54303006295918
Iteration: 13, Func. Count: 103, Neg. LLF: 84.53789072433997
Iteration: 14, Func. Count: 110, Neg. LLF: 84.53606418547186
Iteration: 15, Func. Count: 117, Neg. LLF: 84.53429644079243
Iteration: 16, Func. Count: 124, Neg. LLF: 84.5329473569215
Iteration: 17, Func. Count: 131, Neg. LLF: 84.53252069422894
Iteration: 18, Func. Count: 138, Neg. LLF: 84.53250702825349
Iteration: 19, Func. Count: 144, Neg. LLF: 84.5325070247611
Optimization terminated successfully (Exit mode 0)
Current function value: 84.53250702825349
Iterations: 19
Function evaluations: 144
Gradient evaluations: 19
Iteration: 1, Func. Count: 9, Neg. LLF: 181.4615263259486
Iteration: 2, Func. Count: 22, Neg. LLF: 304.765723256095
Iteration: 3, Func. Count: 32, Neg. LLF: 141.54928213378577
Iteration: 4, Func. Count: 41, Neg. LLF: 93.13492280692111
Iteration: 5, Func. Count: 50, Neg. LLF: 80.41832580090791
Iteration: 6, Func. Count: 58, Neg. LLF: 81.79542585051414
Iteration: 7, Func. Count: 67, Neg. LLF: 80.2809116728003
Iteration: 8, Func. Count: 75, Neg. LLF: 80.25240162489142
Iteration: 9, Func. Count: 83, Neg. LLF: 80.25175005042304
Iteration: 10, Func. Count: 91, Neg. LLF: 80.25162274211677
Iteration: 11, Func. Count: 99, Neg. LLF: 80.25159558290761
Iteration: 12, Func. Count: 106, Neg. LLF: 80.2515955527821
Optimization terminated successfully (Exit mode 0)
Current function value: 80.25159558290761
Iterations: 12
Function evaluations: 106
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 178.50994147808828
Iteration: 2, Func. Count: 23, Neg. LLF: 3832893.8510462614
Iteration: 3, Func. Count: 34, Neg. LLF: 1204.9659975835689
Iteration: 4, Func. Count: 44, Neg. LLF: 81.45300647048914
Iteration: 5, Func. Count: 54, Neg. LLF: 82.68305254814877
Iteration: 6, Func. Count: 64, Neg. LLF: 82.41896376509422
Iteration: 7, Func. Count: 74, Neg. LLF: 80.56466069065182
Iteration: 8, Func. Count: 83, Neg. LLF: 80.52285037907937
Iteration: 9, Func. Count: 93, Neg. LLF: 83.71726715346963
Iteration: 10, Func. Count: 104, Neg. LLF: 79.96145392533178
Iteration: 11, Func. Count: 113, Neg. LLF: 79.90859428393354
Iteration: 12, Func. Count: 122, Neg. LLF: 79.89485584826103
Iteration: 13, Func. Count: 131, Neg. LLF: 79.89167464701106
Iteration: 14, Func. Count: 140, Neg. LLF: 79.89064662470574
Iteration: 15, Func. Count: 149, Neg. LLF: 79.8903532264524
Iteration: 16, Func. Count: 158, Neg. LLF: 79.89031472195063
Iteration: 17, Func. Count: 167, Neg. LLF: 79.89031351173115
Iteration: 18, Func. Count: 175, Neg. LLF: 79.89031339280724
Optimization terminated successfully (Exit mode 0)
Current function value: 79.89031351173115
Iterations: 18
Function evaluations: 175
Gradient evaluations: 18
Iteration: 1, Func. Count: 11, Neg. LLF: 141.8584761170038
Iteration: 2, Func. Count: 26, Neg. LLF: 3667489.9935201886
Iteration: 3, Func. Count: 38, Neg. LLF: 12008184.020554602
Iteration: 4, Func. Count: 49, Neg. LLF: 92.01125821721396
Iteration: 5, Func. Count: 60, Neg. LLF: 83.19682020208775
Iteration: 6, Func. Count: 71, Neg. LLF: 80.56317329121742
Iteration: 7, Func. Count: 81, Neg. LLF: 80.28912408656508
Iteration: 8, Func. Count: 91, Neg. LLF: 80.25648781839433
Iteration: 9, Func. Count: 101, Neg. LLF: 80.25257504292644
Iteration: 10, Func. Count: 111, Neg. LLF: 80.25164700182634
Iteration: 11, Func. Count: 121, Neg. LLF: 80.25160859425219
Iteration: 12, Func. Count: 131, Neg. LLF: 80.25159525231574
Iteration: 13, Func. Count: 140, Neg. LLF: 80.25159524239947
Optimization terminated successfully (Exit mode 0)
Current function value: 80.25159525231574
Iterations: 13
Function evaluations: 140
Gradient evaluations: 13
Iteration: 1, Func. Count: 12, Neg. LLF: 130.90711583278775
Iteration: 2, Func. Count: 28, Neg. LLF: 233565777.79407153
Iteration: 3, Func. Count: 41, Neg. LLF: 12069506.053674253
Iteration: 4, Func. Count: 53, Neg. LLF: 142.07834707211848
Iteration: 5, Func. Count: 65, Neg. LLF: 84.7313909280352
Iteration: 6, Func. Count: 77, Neg. LLF: 80.64193048569271
Iteration: 7, Func. Count: 88, Neg. LLF: 80.58826752405989
Iteration: 8, Func. Count: 100, Neg. LLF: 80.13441704224014
Iteration: 9, Func. Count: 112, Neg. LLF: 85.75425013693527
Iteration: 10, Func. Count: 125, Neg. LLF: 79.5995791730128
Iteration: 11, Func. Count: 136, Neg. LLF: 79.69496249860124
Iteration: 12, Func. Count: 148, Neg. LLF: 79.84753501654724
Iteration: 13, Func. Count: 160, Neg. LLF: 79.54790244856753
Iteration: 14, Func. Count: 171, Neg. LLF: 79.54562314043915
Iteration: 15, Func. Count: 182, Neg. LLF: 79.54496838988318
Iteration: 16, Func. Count: 193, Neg. LLF: 79.54477573808308
Iteration: 17, Func. Count: 204, Neg. LLF: 79.54475831253528
Iteration: 18, Func. Count: 215, Neg. LLF: 79.54475709140787
Iteration: 19, Func. Count: 225, Neg. LLF: 79.54475699049695
Optimization terminated successfully (Exit mode 0)
Current function value: 79.54475709140787
Iterations: 19
Function evaluations: 225
Gradient evaluations: 19
Iteration: 1, Func. Count: 9, Neg. LLF: 99.15336794378405
Iteration: 2, Func. Count: 19, Neg. LLF: 590.6995985491543
Iteration: 3, Func. Count: 28, Neg. LLF: 178.5658473041481
Iteration: 4, Func. Count: 37, Neg. LLF: 563.3344160100205
Iteration: 5, Func. Count: 46, Neg. LLF: 5728.81236448536
Iteration: 6, Func. Count: 55, Neg. LLF: 163.14151207519672
Iteration: 7, Func. Count: 64, Neg. LLF: 88.74565662811608
Iteration: 8, Func. Count: 73, Neg. LLF: 89.10828518950365
Iteration: 9, Func. Count: 82, Neg. LLF: 86.53058969780663
Iteration: 10, Func. Count: 91, Neg. LLF: 84.16652319567812
Iteration: 11, Func. Count: 99, Neg. LLF: 84.11750046665897
Iteration: 12, Func. Count: 107, Neg. LLF: 84.10723373702082
Iteration: 13, Func. Count: 115, Neg. LLF: 84.10430844343038
Iteration: 14, Func. Count: 123, Neg. LLF: 84.10212518080576
Iteration: 15, Func. Count: 131, Neg. LLF: 84.10067605558515
Iteration: 16, Func. Count: 139, Neg. LLF: 84.10061895957556
Iteration: 17, Func. Count: 147, Neg. LLF: 84.10061662113061
Iteration: 18, Func. Count: 154, Neg. LLF: 84.10061661902489
Optimization terminated successfully (Exit mode 0)
Current function value: 84.10061662113061
Iterations: 18
Function evaluations: 154
Gradient evaluations: 18
Iteration: 1, Func. Count: 10, Neg. LLF: 178.26566729374676
Iteration: 2, Func. Count: 24, Neg. LLF: 251.93673049144238
Iteration: 3, Func. Count: 35, Neg. LLF: 138.55944987906472
Iteration: 4, Func. Count: 45, Neg. LLF: 91.43007893354958
Iteration: 5, Func. Count: 55, Neg. LLF: 80.42985525629992
Iteration: 6, Func. Count: 64, Neg. LLF: 83.21795561750658
Iteration: 7, Func. Count: 74, Neg. LLF: 80.28451534949656
Iteration: 8, Func. Count: 83, Neg. LLF: 80.25295986398247
Iteration: 9, Func. Count: 92, Neg. LLF: 80.2518916058369
Iteration: 10, Func. Count: 101, Neg. LLF: 80.25161921919928
Iteration: 11, Func. Count: 110, Neg. LLF: 80.25159581627375
Iteration: 12, Func. Count: 119, Neg. LLF: 80.2515952078574
Optimization terminated successfully (Exit mode 0)
Current function value: 80.2515952078574
Iterations: 12
Function evaluations: 119
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 174.89611304010944
Iteration: 2, Func. Count: 26, Neg. LLF: 294.4457786264687
Iteration: 3, Func. Count: 38, Neg. LLF: 6766865.291682084
Iteration: 4, Func. Count: 49, Neg. LLF: 80.7575657213653
Iteration: 5, Func. Count: 59, Neg. LLF: 85.8011154017707
Iteration: 6, Func. Count: 70, Neg. LLF: 90.43354021522362
Iteration: 7, Func. Count: 81, Neg. LLF: 80.8080482941167
Iteration: 8, Func. Count: 92, Neg. LLF: 80.88658462698781
Iteration: 9, Func. Count: 103, Neg. LLF: 80.00166736929212
Iteration: 10, Func. Count: 113, Neg. LLF: 79.99545666862903
Iteration: 11, Func. Count: 124, Neg. LLF: 79.93575641499169
Iteration: 12, Func. Count: 135, Neg. LLF: 79.84065151638224
Iteration: 13, Func. Count: 145, Neg. LLF: 79.83842793810096
Iteration: 14, Func. Count: 155, Neg. LLF: 79.83748546354917
Iteration: 15, Func. Count: 165, Neg. LLF: 79.83711529861561
Iteration: 16, Func. Count: 175, Neg. LLF: 79.83709424764136
Iteration: 17, Func. Count: 185, Neg. LLF: 79.837087587377
Iteration: 18, Func. Count: 194, Neg. LLF: 79.83708747187349
Optimization terminated successfully (Exit mode 0)
Current function value: 79.837087587377
Iterations: 18
Function evaluations: 194
Gradient evaluations: 18
Iteration: 1, Func. Count: 12, Neg. LLF: 145.32229194976932
Iteration: 2, Func. Count: 28, Neg. LLF: 3988006.535698422
Iteration: 3, Func. Count: 41, Neg. LLF: 6974678.354772007
Iteration: 4, Func. Count: 53, Neg. LLF: 95.15224436914824
Iteration: 5, Func. Count: 65, Neg. LLF: 81.16580326725204
Iteration: 6, Func. Count: 76, Neg. LLF: 81.97602434546636
Iteration: 7, Func. Count: 88, Neg. LLF: 89.24006886745846
Iteration: 8, Func. Count: 100, Neg. LLF: 81.40021742377435
Iteration: 9, Func. Count: 112, Neg. LLF: 80.2717228182039
Iteration: 10, Func. Count: 123, Neg. LLF: 80.03800644988279
Iteration: 11, Func. Count: 134, Neg. LLF: 79.98895554607499
Iteration: 12, Func. Count: 145, Neg. LLF: 80.31551786973445
Iteration: 13, Func. Count: 157, Neg. LLF: 79.89535324266313
Iteration: 14, Func. Count: 168, Neg. LLF: 80.05808407964825
Iteration: 15, Func. Count: 180, Neg. LLF: 79.84490989998028
Iteration: 16, Func. Count: 191, Neg. LLF: 79.83795319201468
Iteration: 17, Func. Count: 202, Neg. LLF: 79.83710889654738
Iteration: 18, Func. Count: 213, Neg. LLF: 79.83708898340033
Iteration: 19, Func. Count: 224, Neg. LLF: 79.83708753490073
Iteration: 20, Func. Count: 234, Neg. LLF: 79.83708757773404
Optimization terminated successfully (Exit mode 0)
Current function value: 79.83708753490073
Iterations: 20
Function evaluations: 234
Gradient evaluations: 20
Iteration: 1, Func. Count: 13, Neg. LLF: 133.0739293506366
Iteration: 2, Func. Count: 30, Neg. LLF: 261471669.79536715
Iteration: 3, Func. Count: 44, Neg. LLF: 12195082.935308224
Iteration: 4, Func. Count: 57, Neg. LLF: 270.16777005553064
Iteration: 5, Func. Count: 70, Neg. LLF: 82.44935373656075
Iteration: 6, Func. Count: 83, Neg. LLF: 81.86735705175975
Iteration: 7, Func. Count: 96, Neg. LLF: 82.10669551285208
Iteration: 8, Func. Count: 109, Neg. LLF: 80.05722663704016
Iteration: 9, Func. Count: 121, Neg. LLF: 80.40263974289576
Iteration: 10, Func. Count: 134, Neg. LLF: 86.9549233689201
Iteration: 11, Func. Count: 148, Neg. LLF: 82.06342045078536
Iteration: 12, Func. Count: 161, Neg. LLF: 79.54377423167733
Iteration: 13, Func. Count: 173, Neg. LLF: 79.67682488067423
Iteration: 14, Func. Count: 186, Neg. LLF: 79.97401922089252
Iteration: 15, Func. Count: 199, Neg. LLF: 79.49533353141607
Iteration: 16, Func. Count: 211, Neg. LLF: 79.49411812464838
Iteration: 17, Func. Count: 223, Neg. LLF: 79.49406465344889
Iteration: 18, Func. Count: 235, Neg. LLF: 79.49406014937558
Iteration: 19, Func. Count: 247, Neg. LLF: 79.49405918369206
Optimization terminated successfully (Exit mode 0)
Current function value: 79.49405918369206
Iterations: 19
Function evaluations: 247
Gradient evaluations: 19
Iteration: 1, Func. Count: 10, Neg. LLF: 104.3225174454704
Iteration: 2, Func. Count: 21, Neg. LLF: 152.32426481933538
Iteration: 3, Func. Count: 31, Neg. LLF: 25377.35882046059
Iteration: 4, Func. Count: 41, Neg. LLF: 119.36738823407488
Iteration: 5, Func. Count: 51, Neg. LLF: 277.92727101351187
Iteration: 6, Func. Count: 61, Neg. LLF: 173.7480846711025
Iteration: 7, Func. Count: 71, Neg. LLF: 933.9581207084154
Iteration: 8, Func. Count: 81, Neg. LLF: 106.5478790324839
Iteration: 9, Func. Count: 91, Neg. LLF: 83.39423513629148
Iteration: 10, Func. Count: 101, Neg. LLF: 81.93703434835076
Iteration: 11, Func. Count: 111, Neg. LLF: 81.63758482625144
Iteration: 12, Func. Count: 120, Neg. LLF: 81.54415853927664
Iteration: 13, Func. Count: 129, Neg. LLF: 81.54565919803187
Iteration: 14, Func. Count: 139, Neg. LLF: 81.52796304889532
Iteration: 15, Func. Count: 148, Neg. LLF: 81.5227113920109
Iteration: 16, Func. Count: 157, Neg. LLF: 81.5222416684005
Iteration: 17, Func. Count: 166, Neg. LLF: 81.5220495499513
Iteration: 18, Func. Count: 175, Neg. LLF: 81.52204632821577
Iteration: 19, Func. Count: 183, Neg. LLF: 81.52204632337751
Optimization terminated successfully (Exit mode 0)
Current function value: 81.52204632821577
Iterations: 19
Function evaluations: 183
Gradient evaluations: 19
Iteration: 1, Func. Count: 11, Neg. LLF: 184.65532946898392
Iteration: 2, Func. Count: 26, Neg. LLF: 248.67322793361976
Iteration: 3, Func. Count: 38, Neg. LLF: 418.7798102568772
Iteration: 4, Func. Count: 49, Neg. LLF: 92.74713121817209
Iteration: 5, Func. Count: 60, Neg. LLF: 80.4329917703647
Iteration: 6, Func. Count: 70, Neg. LLF: 87.597338917735
Iteration: 7, Func. Count: 81, Neg. LLF: 80.28070452861733
Iteration: 8, Func. Count: 91, Neg. LLF: 80.25319126434792
Iteration: 9, Func. Count: 101, Neg. LLF: 80.25194114302528
Iteration: 10, Func. Count: 111, Neg. LLF: 80.2516710487453
Iteration: 11, Func. Count: 121, Neg. LLF: 80.2515964571974
Iteration: 12, Func. Count: 131, Neg. LLF: 80.25159528001305
Iteration: 13, Func. Count: 140, Neg. LLF: 80.2515952498249
Optimization terminated successfully (Exit mode 0)
Current function value: 80.25159528001305
Iterations: 13
Function evaluations: 140
Gradient evaluations: 13
Iteration: 1, Func. Count: 12, Neg. LLF: 162.69454934094887
Iteration: 2, Func. Count: 28, Neg. LLF: 332.7757506232406
Iteration: 3, Func. Count: 41, Neg. LLF: 6790060.647478478
Iteration: 4, Func. Count: 53, Neg. LLF: 81.90295768002055
Iteration: 5, Func. Count: 65, Neg. LLF: 90.30392997145529
Iteration: 6, Func. Count: 77, Neg. LLF: 81.06465199743782
Iteration: 7, Func. Count: 89, Neg. LLF: 80.30200233005986
Iteration: 8, Func. Count: 100, Neg. LLF: 80.99132146339261
Iteration: 9, Func. Count: 112, Neg. LLF: 80.51593687005435
Iteration: 10, Func. Count: 124, Neg. LLF: 79.86163058580024
Iteration: 11, Func. Count: 135, Neg. LLF: 80.77744417967205
Iteration: 12, Func. Count: 147, Neg. LLF: 79.83835726472857
Iteration: 13, Func. Count: 158, Neg. LLF: 79.8371749695572
Iteration: 14, Func. Count: 169, Neg. LLF: 79.83709317659272
Iteration: 15, Func. Count: 180, Neg. LLF: 79.83708846509145
Iteration: 16, Func. Count: 191, Neg. LLF: 79.83708751448734
Optimization terminated successfully (Exit mode 0)
Current function value: 79.83708751448734
Iterations: 16
Function evaluations: 191
Gradient evaluations: 16
Iteration: 1, Func. Count: 13, Neg. LLF: 137.03192545256226
Iteration: 2, Func. Count: 30, Neg. LLF: 335589989.2659961
Iteration: 3, Func. Count: 44, Neg. LLF: 6549772.042954744
Iteration: 4, Func. Count: 57, Neg. LLF: 89.39711559153248
Iteration: 5, Func. Count: 70, Neg. LLF: 82.84858808536967
Iteration: 6, Func. Count: 83, Neg. LLF: 81.98610866769388
Iteration: 7, Func. Count: 96, Neg. LLF: 80.4746688214607
Iteration: 8, Func. Count: 108, Neg. LLF: 80.55194396301212
Iteration: 9, Func. Count: 121, Neg. LLF: 80.26947095213146
Iteration: 10, Func. Count: 133, Neg. LLF: 80.25248278382944
Iteration: 11, Func. Count: 145, Neg. LLF: 80.2518037474948
Iteration: 12, Func. Count: 157, Neg. LLF: 80.2515993761114
Iteration: 13, Func. Count: 169, Neg. LLF: 80.2515958309341
Iteration: 14, Func. Count: 181, Neg. LLF: 80.2515951945652
Optimization terminated successfully (Exit mode 0)
Current function value: 80.2515951945652
Iterations: 14
Function evaluations: 181
Gradient evaluations: 14
Iteration: 1, Func. Count: 14, Neg. LLF: 127.58652710241036
Iteration: 2, Func. Count: 32, Neg. LLF: 273406582.6244709
Iteration: 3, Func. Count: 47, Neg. LLF: 12278883.754254274
Iteration: 4, Func. Count: 61, Neg. LLF: 362.96766247331107
Iteration: 5, Func. Count: 75, Neg. LLF: 84.10837572328089
Iteration: 6, Func. Count: 89, Neg. LLF: 82.02017070202834
Iteration: 7, Func. Count: 103, Neg. LLF: 82.97597798378362
Iteration: 8, Func. Count: 117, Neg. LLF: 80.58575774880383
Iteration: 9, Func. Count: 131, Neg. LLF: 79.95179993931093
Iteration: 10, Func. Count: 145, Neg. LLF: 80.3974432622419
Iteration: 11, Func. Count: 159, Neg. LLF: 80.46645376468398
Iteration: 12, Func. Count: 173, Neg. LLF: 79.59823736246132
Iteration: 13, Func. Count: 186, Neg. LLF: 79.55609790072731
Iteration: 14, Func. Count: 199, Neg. LLF: 80.05130635563246
Iteration: 15, Func. Count: 213, Neg. LLF: 79.50015730189926
Iteration: 16, Func. Count: 226, Neg. LLF: 79.49622897074863
Iteration: 17, Func. Count: 239, Neg. LLF: 79.4942348656946
Iteration: 18, Func. Count: 252, Neg. LLF: 79.49406682375897
Iteration: 19, Func. Count: 265, Neg. LLF: 79.49406034756194
Iteration: 20, Func. Count: 278, Neg. LLF: 79.49405921878218
Iteration: 21, Func. Count: 290, Neg. LLF: 79.49405912045238
Optimization terminated successfully (Exit mode 0)
Current function value: 79.49405921878218
Iterations: 21
Function evaluations: 290
Gradient evaluations: 21
Iteration: 1, Func. Count: 7, Neg. LLF: 104.11366490049375
Iteration: 2, Func. Count: 15, Neg. LLF: 398.8787361205127
Iteration: 3, Func. Count: 22, Neg. LLF: 136.57754071173667
Iteration: 4, Func. Count: 29, Neg. LLF: 147.92043145604106
Iteration: 5, Func. Count: 36, Neg. LLF: 90.51625326440015
Iteration: 6, Func. Count: 43, Neg. LLF: 101.73887546355292
Iteration: 7, Func. Count: 50, Neg. LLF: 92.29043856875683
Iteration: 8, Func. Count: 57, Neg. LLF: 112.61939275547287
Iteration: 9, Func. Count: 64, Neg. LLF: 94.79615755232393
Iteration: 10, Func. Count: 71, Neg. LLF: 97.28783496370454
Iteration: 11, Func. Count: 78, Neg. LLF: 88.53547431810547
Iteration: 12, Func. Count: 85, Neg. LLF: 81.27932420057654
Iteration: 13, Func. Count: 92, Neg. LLF: 80.55716116478663
Iteration: 14, Func. Count: 99, Neg. LLF: 79.82086033733574
Iteration: 15, Func. Count: 105, Neg. LLF: 79.79210972490753
Iteration: 16, Func. Count: 111, Neg. LLF: 79.78841290533221
Iteration: 17, Func. Count: 117, Neg. LLF: 79.78835364644074
Iteration: 18, Func. Count: 122, Neg. LLF: 79.7883536446448
Optimization terminated successfully (Exit mode 0)
Current function value: 79.78835364644074
Iterations: 18
Function evaluations: 122
Gradient evaluations: 18
Iteration: 1, Func. Count: 8, Neg. LLF: 159.02827344720146
Iteration: 2, Func. Count: 21, Neg. LLF: 171.79364623231243
Iteration: 3, Func. Count: 30, Neg. LLF: 133.25547187439687
Iteration: 4, Func. Count: 38, Neg. LLF: 87.23968599231243
Iteration: 5, Func. Count: 46, Neg. LLF: 87.57864226960247
Iteration: 6, Func. Count: 54, Neg. LLF: 87.47490109155405
Iteration: 7, Func. Count: 62, Neg. LLF: 81.46169596270207
Iteration: 8, Func. Count: 70, Neg. LLF: 80.17662275938507
Iteration: 9, Func. Count: 78, Neg. LLF: 80.23340128986145
Iteration: 10, Func. Count: 86, Neg. LLF: 80.17387237056843
Iteration: 11, Func. Count: 94, Neg. LLF: 79.50314729146754
Iteration: 12, Func. Count: 101, Neg. LLF: 79.4849818680884
Iteration: 13, Func. Count: 108, Neg. LLF: 79.47235962862203
Iteration: 14, Func. Count: 115, Neg. LLF: 79.45231637735981
Iteration: 15, Func. Count: 122, Neg. LLF: 79.45060752507821
Iteration: 16, Func. Count: 129, Neg. LLF: 79.4505849114154
Iteration: 17, Func. Count: 135, Neg. LLF: 79.45058491143159
Optimization terminated successfully (Exit mode 0)
Current function value: 79.4505849114154
Iterations: 17
Function evaluations: 135
Gradient evaluations: 17
Iteration: 1, Func. Count: 9, Neg. LLF: 153.8462483940838
Iteration: 2, Func. Count: 23, Neg. LLF: 290.6000589239892
Iteration: 3, Func. Count: 33, Neg. LLF: 135.1272383414719
Iteration: 4, Func. Count: 42, Neg. LLF: 87.62499460574323
Iteration: 5, Func. Count: 51, Neg. LLF: 82.29892669390011
Iteration: 6, Func. Count: 60, Neg. LLF: 88.10639917132536
Iteration: 7, Func. Count: 69, Neg. LLF: 79.63595337912069
Iteration: 8, Func. Count: 77, Neg. LLF: 87.54134160978755
Iteration: 9, Func. Count: 87, Neg. LLF: 79.55683915770403
Iteration: 10, Func. Count: 95, Neg. LLF: 79.51280102445963
Iteration: 11, Func. Count: 103, Neg. LLF: 79.4664645486798
Iteration: 12, Func. Count: 111, Neg. LLF: 79.45387111922646
Iteration: 13, Func. Count: 119, Neg. LLF: 79.45088593488776
Iteration: 14, Func. Count: 127, Neg. LLF: 79.45060601468788
Iteration: 15, Func. Count: 135, Neg. LLF: 79.45058534976471
Iteration: 16, Func. Count: 143, Neg. LLF: 79.45058453100036
Optimization terminated successfully (Exit mode 0)
Current function value: 79.45058453100036
Iterations: 16
Function evaluations: 143
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 334.26236711605054
Iteration: 2, Func. Count: 20, Neg. LLF: 1650.238066264557
Iteration: 3, Func. Count: 30, Neg. LLF: 131.4713262151902
Iteration: 4, Func. Count: 40, Neg. LLF: 111.72297537670657
Iteration: 5, Func. Count: 51, Neg. LLF: 98.85726678981875
Iteration: 6, Func. Count: 61, Neg. LLF: 80.57776764849115
Iteration: 7, Func. Count: 70, Neg. LLF: 81.45787612148126
Iteration: 8, Func. Count: 80, Neg. LLF: 81.79943029264939
Iteration: 9, Func. Count: 90, Neg. LLF: 83.79836241813976
Iteration: 10, Func. Count: 100, Neg. LLF: 79.56748467517762
Iteration: 11, Func. Count: 110, Neg. LLF: 79.43809022215989
Iteration: 12, Func. Count: 119, Neg. LLF: 79.40530195493551
Iteration: 13, Func. Count: 128, Neg. LLF: 79.42542765437162
Iteration: 14, Func. Count: 138, Neg. LLF: 79.39825772079861
Iteration: 15, Func. Count: 147, Neg. LLF: 79.39752916543237
Iteration: 16, Func. Count: 156, Neg. LLF: 79.39709715338586
Iteration: 17, Func. Count: 165, Neg. LLF: 79.39700601093874
Iteration: 18, Func. Count: 174, Neg. LLF: 79.39700216106023
Iteration: 19, Func. Count: 182, Neg. LLF: 79.39700216106357
Optimization terminated successfully (Exit mode 0)
Current function value: 79.39700216106023
Iterations: 19
Function evaluations: 182
Gradient evaluations: 19
Iteration: 1, Func. Count: 11, Neg. LLF: 897.7632457405939
Iteration: 2, Func. Count: 22, Neg. LLF: 455.41737186985245
Iteration: 3, Func. Count: 33, Neg. LLF: 438.74552766906737
Iteration: 4, Func. Count: 44, Neg. LLF: 124.12696239400111
Iteration: 5, Func. Count: 56, Neg. LLF: 81.68291915106465
Iteration: 6, Func. Count: 67, Neg. LLF: 82.46092894250445
Iteration: 7, Func. Count: 78, Neg. LLF: 85.0516580984924
Iteration: 8, Func. Count: 89, Neg. LLF: 79.52035713839975
Iteration: 9, Func. Count: 99, Neg. LLF: 79.7974276045546
Iteration: 10, Func. Count: 110, Neg. LLF: 79.62822659920744
Iteration: 11, Func. Count: 121, Neg. LLF: 79.40242584411938
Iteration: 12, Func. Count: 131, Neg. LLF: 79.39781704233948
Iteration: 13, Func. Count: 141, Neg. LLF: 79.39836208783025
Iteration: 14, Func. Count: 152, Neg. LLF: 79.39700841501976
Iteration: 15, Func. Count: 162, Neg. LLF: 79.39700268454821
Iteration: 16, Func. Count: 172, Neg. LLF: 79.39700211438196
Optimization terminated successfully (Exit mode 0)
Current function value: 79.39700211438196
Iterations: 16
Function evaluations: 172
Gradient evaluations: 16
Iteration: 1, Func. Count: 8, Neg. LLF: 104.62683700346888
Iteration: 2, Func. Count: 17, Neg. LLF: 450.3684519107547
Iteration: 3, Func. Count: 25, Neg. LLF: 106.55386390751386
Iteration: 4, Func. Count: 33, Neg. LLF: 98.177011589916
Iteration: 5, Func. Count: 41, Neg. LLF: 99.29899431436897
Iteration: 6, Func. Count: 49, Neg. LLF: 89.10299076580638
Iteration: 7, Func. Count: 57, Neg. LLF: 90.94490839803399
Iteration: 8, Func. Count: 65, Neg. LLF: 99.17344495962875
Iteration: 9, Func. Count: 73, Neg. LLF: 87.13936013022283
Iteration: 10, Func. Count: 81, Neg. LLF: 109.77704665749691
Iteration: 11, Func. Count: 89, Neg. LLF: 80.32986867481735
Iteration: 12, Func. Count: 97, Neg. LLF: 79.53532033032889
Iteration: 13, Func. Count: 104, Neg. LLF: 79.50733688425274
Iteration: 14, Func. Count: 111, Neg. LLF: 79.50367391726549
Iteration: 15, Func. Count: 118, Neg. LLF: 79.50338952454494
Iteration: 16, Func. Count: 125, Neg. LLF: 79.5033425794551
Iteration: 17, Func. Count: 132, Neg. LLF: 79.50334150408932
Iteration: 18, Func. Count: 138, Neg. LLF: 79.5033414552495
Optimization terminated successfully (Exit mode 0)
Current function value: 79.50334150408932
Iterations: 18
Function evaluations: 138
Gradient evaluations: 18
Iteration: 1, Func. Count: 9, Neg. LLF: 165.0022936616694
Iteration: 2, Func. Count: 22, Neg. LLF: 171.82279304120584
Iteration: 3, Func. Count: 32, Neg. LLF: 86.17334772092077
Iteration: 4, Func. Count: 41, Neg. LLF: 88.02935438038787
Iteration: 5, Func. Count: 50, Neg. LLF: 88.08368005313838
Iteration: 6, Func. Count: 59, Neg. LLF: 80.50551605936332
Iteration: 7, Func. Count: 68, Neg. LLF: 80.78276438590247
Iteration: 8, Func. Count: 77, Neg. LLF: 79.60823985594736
Iteration: 9, Func. Count: 86, Neg. LLF: 79.30027896678675
Iteration: 10, Func. Count: 94, Neg. LLF: 79.29649322271626
Iteration: 11, Func. Count: 102, Neg. LLF: 79.29442299462414
Iteration: 12, Func. Count: 110, Neg. LLF: 79.29378605096493
Iteration: 13, Func. Count: 118, Neg. LLF: 79.29273477842153
Iteration: 14, Func. Count: 126, Neg. LLF: 79.29247431467898
Iteration: 15, Func. Count: 134, Neg. LLF: 79.29245572863104
Iteration: 16, Func. Count: 142, Neg. LLF: 79.29245402455874
Iteration: 17, Func. Count: 149, Neg. LLF: 79.29245402455915
Optimization terminated successfully (Exit mode 0)
Current function value: 79.29245402455874
Iterations: 17
Function evaluations: 149
Gradient evaluations: 17
Iteration: 1, Func. Count: 10, Neg. LLF: 160.7050134510877
Iteration: 2, Func. Count: 24, Neg. LLF: 168.50610269782035
Iteration: 3, Func. Count: 35, Neg. LLF: 96.4917880347177
Iteration: 4, Func. Count: 45, Neg. LLF: 98.44344321013209
Iteration: 5, Func. Count: 55, Neg. LLF: 81.05009830345601
Iteration: 6, Func. Count: 65, Neg. LLF: 81.66261188404138
Iteration: 7, Func. Count: 75, Neg. LLF: 80.07164209740765
Iteration: 8, Func. Count: 85, Neg. LLF: 81.1878460857809
Iteration: 9, Func. Count: 95, Neg. LLF: 79.32127701750088
Iteration: 10, Func. Count: 104, Neg. LLF: 79.31151220931118
Iteration: 11, Func. Count: 113, Neg. LLF: 79.30223094928955
Iteration: 12, Func. Count: 122, Neg. LLF: 79.29797932854763
Iteration: 13, Func. Count: 131, Neg. LLF: 79.29379884203328
Iteration: 14, Func. Count: 140, Neg. LLF: 79.29251809628883
Iteration: 15, Func. Count: 149, Neg. LLF: 79.292457306831
Iteration: 16, Func. Count: 158, Neg. LLF: 79.29245400117648
Iteration: 17, Func. Count: 166, Neg. LLF: 79.29245406460237
Optimization terminated successfully (Exit mode 0)
Current function value: 79.29245400117648
Iterations: 17
Function evaluations: 166
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 152.47163539187366
Iteration: 2, Func. Count: 27, Neg. LLF: 478.30136674472897
Iteration: 3, Func. Count: 39, Neg. LLF: 205.0111260408443
Iteration: 4, Func. Count: 50, Neg. LLF: 99.28931234166063
Iteration: 5, Func. Count: 61, Neg. LLF: 87.43220745103062
Iteration: 6, Func. Count: 72, Neg. LLF: 88.40469315139977
Iteration: 7, Func. Count: 83, Neg. LLF: 80.72926217173114
Iteration: 8, Func. Count: 94, Neg. LLF: 80.2731439932903
Iteration: 9, Func. Count: 105, Neg. LLF: 80.03229273943185
Iteration: 10, Func. Count: 116, Neg. LLF: 79.36434407042871
Iteration: 11, Func. Count: 126, Neg. LLF: 79.30241199206746
Iteration: 12, Func. Count: 136, Neg. LLF: 79.27859197107513
Iteration: 13, Func. Count: 146, Neg. LLF: 79.2652485513178
Iteration: 14, Func. Count: 156, Neg. LLF: 79.26330279208612
Iteration: 15, Func. Count: 166, Neg. LLF: 79.26285807721995
Iteration: 16, Func. Count: 176, Neg. LLF: 79.2628260485154
Iteration: 17, Func. Count: 186, Neg. LLF: 79.26282413070724
Iteration: 18, Func. Count: 195, Neg. LLF: 79.2628241306994
Optimization terminated successfully (Exit mode 0)
Current function value: 79.26282413070724
Iterations: 18
Function evaluations: 195
Gradient evaluations: 18
Iteration: 1, Func. Count: 12, Neg. LLF: 577.4753276972161
Iteration: 2, Func. Count: 25, Neg. LLF: 884.5398599850473
Iteration: 3, Func. Count: 37, Neg. LLF: 1786.3599338164183
Iteration: 4, Func. Count: 49, Neg. LLF: 83.5888802751295
Iteration: 5, Func. Count: 62, Neg. LLF: 141.37884347614587
Iteration: 6, Func. Count: 74, Neg. LLF: 82.94886440494756
Iteration: 7, Func. Count: 86, Neg. LLF: 80.48063078404057
Iteration: 8, Func. Count: 98, Neg. LLF: 79.56750048763489
Iteration: 9, Func. Count: 109, Neg. LLF: 80.0118109713069
Iteration: 10, Func. Count: 121, Neg. LLF: 81.66600526487503
Iteration: 11, Func. Count: 133, Neg. LLF: 79.64661013392032
Iteration: 12, Func. Count: 145, Neg. LLF: 79.37132974163748
Iteration: 13, Func. Count: 157, Neg. LLF: 79.26596424971568
Iteration: 14, Func. Count: 168, Neg. LLF: 79.26322352758879
Iteration: 15, Func. Count: 179, Neg. LLF: 79.26286273110762
Iteration: 16, Func. Count: 190, Neg. LLF: 79.2628244698634
Iteration: 17, Func. Count: 201, Neg. LLF: 79.26282375015889
Optimization terminated successfully (Exit mode 0)
Current function value: 79.26282375015889
Iterations: 17
Function evaluations: 201
Gradient evaluations: 17
Iteration: 1, Func. Count: 9, Neg. LLF: 98.53590989761788
Iteration: 2, Func. Count: 18, Neg. LLF: 135.45935701125285
Iteration: 3, Func. Count: 27, Neg. LLF: 453.1603809773435
Iteration: 4, Func. Count: 36, Neg. LLF: 1061.1538735765944
Iteration: 5, Func. Count: 45, Neg. LLF: 8848.815847202059
Iteration: 6, Func. Count: 54, Neg. LLF: 163.97110928691612
Iteration: 7, Func. Count: 63, Neg. LLF: 933.8599207743387
Iteration: 8, Func. Count: 72, Neg. LLF: 476.9182166152169
Iteration: 9, Func. Count: 81, Neg. LLF: 124.87657146005368
Iteration: 10, Func. Count: 90, Neg. LLF: 103.10952930197757
Iteration: 11, Func. Count: 99, Neg. LLF: 81.40760431448047
Iteration: 12, Func. Count: 108, Neg. LLF: 79.63394314105616
Iteration: 13, Func. Count: 116, Neg. LLF: 79.75457464246202
Iteration: 14, Func. Count: 125, Neg. LLF: 79.64836498515191
Iteration: 15, Func. Count: 134, Neg. LLF: 79.49923848563236
Iteration: 16, Func. Count: 143, Neg. LLF: 79.54903992394533
Iteration: 17, Func. Count: 152, Neg. LLF: 79.48201203960964
Iteration: 18, Func. Count: 161, Neg. LLF: 79.4459429841324
Iteration: 19, Func. Count: 169, Neg. LLF: 79.44349528181381
Iteration: 20, Func. Count: 177, Neg. LLF: 79.44286000577738
Iteration: 21, Func. Count: 185, Neg. LLF: 79.44268212619926
Iteration: 22, Func. Count: 193, Neg. LLF: 79.44265625279196
Iteration: 23, Func. Count: 201, Neg. LLF: 79.44263819250334
Iteration: 24, Func. Count: 208, Neg. LLF: 79.44263819248401
Optimization terminated successfully (Exit mode 0)
Current function value: 79.44263819250334
Iterations: 24
Function evaluations: 208
Gradient evaluations: 24
Iteration: 1, Func. Count: 10, Neg. LLF: 180.28494166910664
Iteration: 2, Func. Count: 24, Neg. LLF: 276.37433097724755
Iteration: 3, Func. Count: 35, Neg. LLF: 161.72811327425808
Iteration: 4, Func. Count: 45, Neg. LLF: 79.73421439892293
Iteration: 5, Func. Count: 54, Neg. LLF: 82.2954710410028
Iteration: 6, Func. Count: 64, Neg. LLF: 82.54614341574617
Iteration: 7, Func. Count: 74, Neg. LLF: 81.15350945579146
Iteration: 8, Func. Count: 84, Neg. LLF: 79.59185601409706
Iteration: 9, Func. Count: 94, Neg. LLF: 80.38980551930729
Iteration: 10, Func. Count: 104, Neg. LLF: 79.29506651602023
Iteration: 11, Func. Count: 113, Neg. LLF: 79.29320019318602
Iteration: 12, Func. Count: 122, Neg. LLF: 79.29087291926643
Iteration: 13, Func. Count: 131, Neg. LLF: 79.28907001948811
Iteration: 14, Func. Count: 140, Neg. LLF: 79.28860112459316
Iteration: 15, Func. Count: 149, Neg. LLF: 79.28845351779847
Iteration: 16, Func. Count: 158, Neg. LLF: 79.2883809046535
Iteration: 17, Func. Count: 167, Neg. LLF: 79.28836179344458
Iteration: 18, Func. Count: 176, Neg. LLF: 79.28835943485223
Iteration: 19, Func. Count: 184, Neg. LLF: 79.28835943485458
Optimization terminated successfully (Exit mode 0)
Current function value: 79.28835943485223
Iterations: 19
Function evaluations: 184
Gradient evaluations: 19
Iteration: 1, Func. Count: 11, Neg. LLF: 173.03533915267812
Iteration: 2, Func. Count: 25, Neg. LLF: 241.77436525809762
Iteration: 3, Func. Count: 37, Neg. LLF: 1471.4566802314514
Iteration: 4, Func. Count: 48, Neg. LLF: 80.48549254360128
Iteration: 5, Func. Count: 58, Neg. LLF: 81.39998759857768
Iteration: 6, Func. Count: 69, Neg. LLF: 81.10012386930089
Iteration: 7, Func. Count: 80, Neg. LLF: 86.32772147279289
Iteration: 8, Func. Count: 91, Neg. LLF: 80.69871928149489
Iteration: 9, Func. Count: 102, Neg. LLF: 79.59429037223293
Iteration: 10, Func. Count: 113, Neg. LLF: 79.30182836539666
Iteration: 11, Func. Count: 123, Neg. LLF: 79.2964301391652
Iteration: 12, Func. Count: 133, Neg. LLF: 79.29260118319931
Iteration: 13, Func. Count: 143, Neg. LLF: 79.28978357269642
Iteration: 14, Func. Count: 153, Neg. LLF: 79.28877563033814
Iteration: 15, Func. Count: 163, Neg. LLF: 79.28846505921335
Iteration: 16, Func. Count: 173, Neg. LLF: 79.28840654224268
Iteration: 17, Func. Count: 183, Neg. LLF: 79.28837415537014
Iteration: 18, Func. Count: 193, Neg. LLF: 79.28836610662688
Iteration: 19, Func. Count: 203, Neg. LLF: 79.28836268243937
Iteration: 20, Func. Count: 213, Neg. LLF: 79.28836068391854
Iteration: 21, Func. Count: 223, Neg. LLF: 79.28835958944623
Iteration: 22, Func. Count: 232, Neg. LLF: 79.2883596633781
Optimization terminated successfully (Exit mode 0)
Current function value: 79.28835958944623
Iterations: 22
Function evaluations: 232
Gradient evaluations: 22
Iteration: 1, Func. Count: 12, Neg. LLF: 169.92276057800743
Iteration: 2, Func. Count: 27, Neg. LLF: 388.48603572506755
Iteration: 3, Func. Count: 40, Neg. LLF: 719.1437937069795
Iteration: 4, Func. Count: 52, Neg. LLF: 133.87804888399396
Iteration: 5, Func. Count: 64, Neg. LLF: 80.19657145392301
Iteration: 6, Func. Count: 75, Neg. LLF: 81.14324340078159
Iteration: 7, Func. Count: 87, Neg. LLF: 82.17329139355252
Iteration: 8, Func. Count: 99, Neg. LLF: 90.31925370852343
Iteration: 9, Func. Count: 112, Neg. LLF: 80.03074125355333
Iteration: 10, Func. Count: 124, Neg. LLF: 79.24263036139398
Iteration: 11, Func. Count: 135, Neg. LLF: 79.2268000871627
Iteration: 12, Func. Count: 147, Neg. LLF: 79.19166392614542
Iteration: 13, Func. Count: 158, Neg. LLF: 79.18765765600543
Iteration: 14, Func. Count: 169, Neg. LLF: 79.18625775888327
Iteration: 15, Func. Count: 180, Neg. LLF: 79.18461925518518
Iteration: 16, Func. Count: 191, Neg. LLF: 79.18413346496222
Iteration: 17, Func. Count: 202, Neg. LLF: 79.18366820148937
Iteration: 18, Func. Count: 213, Neg. LLF: 79.1835646927378
Iteration: 19, Func. Count: 224, Neg. LLF: 79.1835443974213
Iteration: 20, Func. Count: 235, Neg. LLF: 79.18353777675163
Iteration: 21, Func. Count: 246, Neg. LLF: 79.18353658083149
Iteration: 22, Func. Count: 256, Neg. LLF: 79.18353654626195
Optimization terminated successfully (Exit mode 0)
Current function value: 79.18353658083149
Iterations: 22
Function evaluations: 256
Gradient evaluations: 22
Iteration: 1, Func. Count: 13, Neg. LLF: 155.79061594490776
Iteration: 2, Func. Count: 29, Neg. LLF: 698.3451758366341
Iteration: 3, Func. Count: 42, Neg. LLF: 738.5993356525032
Iteration: 4, Func. Count: 55, Neg. LLF: 6315347.221672389
Iteration: 5, Func. Count: 68, Neg. LLF: 130.26981129868437
Iteration: 6, Func. Count: 81, Neg. LLF: 82.66267448964958
Iteration: 7, Func. Count: 94, Neg. LLF: 79.51122232431733
Iteration: 8, Func. Count: 106, Neg. LLF: 80.09073849938913
Iteration: 9, Func. Count: 119, Neg. LLF: 79.82444558095828
Iteration: 10, Func. Count: 132, Neg. LLF: 79.32992428535884
Iteration: 11, Func. Count: 145, Neg. LLF: 79.30690086900542
Iteration: 12, Func. Count: 158, Neg. LLF: 79.25809559089392
Iteration: 13, Func. Count: 170, Neg. LLF: 79.21796080584355
Iteration: 14, Func. Count: 182, Neg. LLF: 79.20961242058311
Iteration: 15, Func. Count: 194, Neg. LLF: 79.20407431825343
Iteration: 16, Func. Count: 206, Neg. LLF: 79.19387975307468
Iteration: 17, Func. Count: 218, Neg. LLF: 79.19098385126232
Iteration: 18, Func. Count: 230, Neg. LLF: 79.18695048381673
Iteration: 19, Func. Count: 242, Neg. LLF: 79.18508370373901
Iteration: 20, Func. Count: 254, Neg. LLF: 79.18413897717451
Iteration: 21, Func. Count: 266, Neg. LLF: 79.18366361889886
Iteration: 22, Func. Count: 278, Neg. LLF: 79.183556282435
Iteration: 23, Func. Count: 290, Neg. LLF: 79.18353855406123
Iteration: 24, Func. Count: 302, Neg. LLF: 79.18353677492357
Iteration: 25, Func. Count: 313, Neg. LLF: 79.18353676513253
Optimization terminated successfully (Exit mode 0)
Current function value: 79.18353677492357
Iterations: 25
Function evaluations: 313
Gradient evaluations: 25
Iteration: 1, Func. Count: 10, Neg. LLF: 116.80715731084862
Iteration: 2, Func. Count: 20, Neg. LLF: 129.9043412261362
Iteration: 3, Func. Count: 30, Neg. LLF: 1508.96851520063
Iteration: 4, Func. Count: 40, Neg. LLF: 137.09441955828143
Iteration: 5, Func. Count: 50, Neg. LLF: 118.67110716211405
Iteration: 6, Func. Count: 60, Neg. LLF: 122.21929913664339
Iteration: 7, Func. Count: 70, Neg. LLF: 272.3980955751505
Iteration: 8, Func. Count: 80, Neg. LLF: 486.8435286336302
Iteration: 9, Func. Count: 90, Neg. LLF: 159.79950945444295
Iteration: 10, Func. Count: 100, Neg. LLF: 551.2565213266872
Iteration: 11, Func. Count: 110, Neg. LLF: 82.85037711805799
Iteration: 12, Func. Count: 120, Neg. LLF: 79.35623823777732
Iteration: 13, Func. Count: 129, Neg. LLF: 79.37981490889777
Iteration: 14, Func. Count: 139, Neg. LLF: 79.28301060558421
Iteration: 15, Func. Count: 148, Neg. LLF: 79.50133987077137
Iteration: 16, Func. Count: 158, Neg. LLF: 79.27500916989666
Iteration: 17, Func. Count: 167, Neg. LLF: 79.27469162238488
Iteration: 18, Func. Count: 176, Neg. LLF: 79.27461838913632
Iteration: 19, Func. Count: 185, Neg. LLF: 79.27458297482598
Iteration: 20, Func. Count: 194, Neg. LLF: 79.27456745672939
Iteration: 21, Func. Count: 203, Neg. LLF: 79.27456267798347
Iteration: 22, Func. Count: 212, Neg. LLF: 79.27456209574487
Optimization terminated successfully (Exit mode 0)
Current function value: 79.27456209574487
Iterations: 22
Function evaluations: 212
Gradient evaluations: 22
Iteration: 1, Func. Count: 11, Neg. LLF: 172.92926502416623
Iteration: 2, Func. Count: 26, Neg. LLF: 198.39997767762085
Iteration: 3, Func. Count: 38, Neg. LLF: 135.09763752502752
Iteration: 4, Func. Count: 49, Neg. LLF: 82.62100789079089
Iteration: 5, Func. Count: 60, Neg. LLF: 88.36118245457857
Iteration: 6, Func. Count: 71, Neg. LLF: 83.52449289340598
Iteration: 7, Func. Count: 82, Neg. LLF: 82.097098432556
Iteration: 8, Func. Count: 93, Neg. LLF: 79.72356442999876
Iteration: 9, Func. Count: 104, Neg. LLF: 79.69080056469501
Iteration: 10, Func. Count: 115, Neg. LLF: 79.37423422427948
Iteration: 11, Func. Count: 126, Neg. LLF: 79.52960244816067
Iteration: 12, Func. Count: 137, Neg. LLF: 79.1935727210912
Iteration: 13, Func. Count: 147, Neg. LLF: 79.18826580333358
Iteration: 14, Func. Count: 157, Neg. LLF: 79.18271634170324
Iteration: 15, Func. Count: 167, Neg. LLF: 79.1791540987879
Iteration: 16, Func. Count: 177, Neg. LLF: 79.1773964835395
Iteration: 17, Func. Count: 187, Neg. LLF: 79.17612223605384
Iteration: 18, Func. Count: 197, Neg. LLF: 79.1755962104582
Iteration: 19, Func. Count: 207, Neg. LLF: 79.17543114176503
Iteration: 20, Func. Count: 217, Neg. LLF: 79.17522284424768
Iteration: 21, Func. Count: 227, Neg. LLF: 79.17520005494049
Iteration: 22, Func. Count: 237, Neg. LLF: 79.17519664580763
Iteration: 23, Func. Count: 246, Neg. LLF: 79.17519664576706
Optimization terminated successfully (Exit mode 0)
Current function value: 79.17519664580763
Iterations: 23
Function evaluations: 246
Gradient evaluations: 23
Iteration: 1, Func. Count: 12, Neg. LLF: 163.91447176113678
Iteration: 2, Func. Count: 27, Neg. LLF: 169.70567810120485
Iteration: 3, Func. Count: 40, Neg. LLF: 452.13289452711507
Iteration: 4, Func. Count: 52, Neg. LLF: 84.83816523722146
Iteration: 5, Func. Count: 64, Neg. LLF: 82.93279287054438
Iteration: 6, Func. Count: 76, Neg. LLF: 80.91298660925331
Iteration: 7, Func. Count: 88, Neg. LLF: 80.86350796642208
Iteration: 8, Func. Count: 100, Neg. LLF: 82.31588206230484
Iteration: 9, Func. Count: 112, Neg. LLF: 79.41090749763777
Iteration: 10, Func. Count: 123, Neg. LLF: 80.01499395102681
Iteration: 11, Func. Count: 135, Neg. LLF: 81.93867526514582
Iteration: 12, Func. Count: 147, Neg. LLF: 79.19278969659531
Iteration: 13, Func. Count: 158, Neg. LLF: 79.18336559001973
Iteration: 14, Func. Count: 169, Neg. LLF: 79.18004413336284
Iteration: 15, Func. Count: 180, Neg. LLF: 79.1778481333487
Iteration: 16, Func. Count: 191, Neg. LLF: 79.176398057623
Iteration: 17, Func. Count: 202, Neg. LLF: 79.17572918363396
Iteration: 18, Func. Count: 213, Neg. LLF: 79.17544122875829
Iteration: 19, Func. Count: 224, Neg. LLF: 79.17533534955021
Iteration: 20, Func. Count: 235, Neg. LLF: 79.17527640057541
Iteration: 21, Func. Count: 246, Neg. LLF: 79.17522971112555
Iteration: 22, Func. Count: 257, Neg. LLF: 79.17519920736832
Iteration: 23, Func. Count: 268, Neg. LLF: 79.17519679471074
Iteration: 24, Func. Count: 278, Neg. LLF: 79.17519687666723
Optimization terminated successfully (Exit mode 0)
Current function value: 79.17519679471074
Iterations: 24
Function evaluations: 278
Gradient evaluations: 24
Iteration: 1, Func. Count: 13, Neg. LLF: 157.22812444651444
Iteration: 2, Func. Count: 29, Neg. LLF: 185.40309786615023
Iteration: 3, Func. Count: 43, Neg. LLF: 3617747.0294396593
Iteration: 4, Func. Count: 56, Neg. LLF: 257.4380284587944
Iteration: 5, Func. Count: 69, Neg. LLF: 82.72670243027234
Iteration: 6, Func. Count: 82, Neg. LLF: 82.65603066906279
Iteration: 7, Func. Count: 95, Neg. LLF: 81.44694640598505
Iteration: 8, Func. Count: 108, Neg. LLF: 79.09491025630692
Iteration: 9, Func. Count: 120, Neg. LLF: 79.57096634862391
Iteration: 10, Func. Count: 133, Neg. LLF: 79.21151306560473
Iteration: 11, Func. Count: 146, Neg. LLF: 78.80238505022432
Iteration: 12, Func. Count: 158, Neg. LLF: 78.78589327874592
Iteration: 13, Func. Count: 170, Neg. LLF: 78.78347503921358
Iteration: 14, Func. Count: 182, Neg. LLF: 78.78312599808524
Iteration: 15, Func. Count: 194, Neg. LLF: 78.78308221270663
Iteration: 16, Func. Count: 206, Neg. LLF: 78.78307958947882
Iteration: 17, Func. Count: 217, Neg. LLF: 78.78307954033987
Optimization terminated successfully (Exit mode 0)
Current function value: 78.78307958947882
Iterations: 17
Function evaluations: 217
Gradient evaluations: 17
Iteration: 1, Func. Count: 14, Neg. LLF: 151.56900305525838
Iteration: 2, Func. Count: 31, Neg. LLF: 1572146.7959371514
Iteration: 3, Func. Count: 46, Neg. LLF: 1857.556121394538
Iteration: 4, Func. Count: 60, Neg. LLF: 19251.587522825506
Iteration: 5, Func. Count: 74, Neg. LLF: 86.61464063085873
Iteration: 6, Func. Count: 88, Neg. LLF: 82.12488057495058
Iteration: 7, Func. Count: 102, Neg. LLF: 82.34738190963309
Iteration: 8, Func. Count: 116, Neg. LLF: 80.71821204178991
Iteration: 9, Func. Count: 130, Neg. LLF: 79.94756658178983
Iteration: 10, Func. Count: 144, Neg. LLF: 79.40218920261637
Iteration: 11, Func. Count: 157, Neg. LLF: 79.02461041629141
Iteration: 12, Func. Count: 170, Neg. LLF: 79.1403278858958
Iteration: 13, Func. Count: 184, Neg. LLF: 78.86406128266782
Iteration: 14, Func. Count: 197, Neg. LLF: 78.81657841800497
Iteration: 15, Func. Count: 210, Neg. LLF: 78.791592797164
Iteration: 16, Func. Count: 223, Neg. LLF: 78.78767912599844
Iteration: 17, Func. Count: 236, Neg. LLF: 78.78383798598618
Iteration: 18, Func. Count: 249, Neg. LLF: 78.78319458624912
Iteration: 19, Func. Count: 262, Neg. LLF: 78.78309320876666
Iteration: 20, Func. Count: 275, Neg. LLF: 78.7830795581535
Iteration: 21, Func. Count: 287, Neg. LLF: 78.78307958529642
Optimization terminated successfully (Exit mode 0)
Current function value: 78.7830795581535
Iterations: 21
Function evaluations: 287
Gradient evaluations: 21
Iteration: 1, Func. Count: 11, Neg. LLF: 1971201.855547328
Iteration: 2, Func. Count: 22, Neg. LLF: 38514631.45933197
Iteration: 3, Func. Count: 33, Neg. LLF: 28030.88703909447
Iteration: 4, Func. Count: 44, Neg. LLF: 150.25796763204787
Iteration: 5, Func. Count: 55, Neg. LLF: 11348.798223154026
Iteration: 6, Func. Count: 66, Neg. LLF: 241.9367865623382
Iteration: 7, Func. Count: 77, Neg. LLF: 152.61447717323568
Iteration: 8, Func. Count: 88, Neg. LLF: 127.52788079560494
Iteration: 9, Func. Count: 99, Neg. LLF: 143.648930715909
Iteration: 10, Func. Count: 110, Neg. LLF: 79.63638197488794
Iteration: 11, Func. Count: 120, Neg. LLF: 79.31887967488922
Iteration: 12, Func. Count: 130, Neg. LLF: 79.4117750612525
Iteration: 13, Func. Count: 141, Neg. LLF: 79.38301346407822
Iteration: 14, Func. Count: 152, Neg. LLF: 79.4180171120543
Iteration: 15, Func. Count: 163, Neg. LLF: 79.2468085073698
Iteration: 16, Func. Count: 173, Neg. LLF: 79.24550037434076
Iteration: 17, Func. Count: 183, Neg. LLF: 79.24502409125357
Iteration: 18, Func. Count: 193, Neg. LLF: 79.24447510252654
Iteration: 19, Func. Count: 203, Neg. LLF: 79.24394862741086
Iteration: 20, Func. Count: 213, Neg. LLF: 79.24384665365176
Iteration: 21, Func. Count: 223, Neg. LLF: 79.24383714145908
Iteration: 22, Func. Count: 233, Neg. LLF: 79.24383638610766
Optimization terminated successfully (Exit mode 0)
Current function value: 79.24383638610766
Iterations: 22
Function evaluations: 233
Gradient evaluations: 22
Iteration: 1, Func. Count: 12, Neg. LLF: 167.91658975111073
Iteration: 2, Func. Count: 28, Neg. LLF: 189.16200620065686
Iteration: 3, Func. Count: 41, Neg. LLF: 172.61066545984636
Iteration: 4, Func. Count: 53, Neg. LLF: 92.39842772056666
Iteration: 5, Func. Count: 65, Neg. LLF: 94.92307946525035
Iteration: 6, Func. Count: 77, Neg. LLF: 93.20061253392541
Iteration: 7, Func. Count: 89, Neg. LLF: 87.86038776893403
Iteration: 8, Func. Count: 101, Neg. LLF: 80.71840597315655
Iteration: 9, Func. Count: 113, Neg. LLF: 85.98433435909006
Iteration: 10, Func. Count: 125, Neg. LLF: 79.50924974979354
Iteration: 11, Func. Count: 137, Neg. LLF: 79.78683203657239
Iteration: 12, Func. Count: 149, Neg. LLF: 79.21458724692472
Iteration: 13, Func. Count: 160, Neg. LLF: 79.3076347362056
Iteration: 14, Func. Count: 172, Neg. LLF: 79.20022766939344
Iteration: 15, Func. Count: 183, Neg. LLF: 79.18872510274923
Iteration: 16, Func. Count: 194, Neg. LLF: 79.1826091176498
Iteration: 17, Func. Count: 205, Neg. LLF: 79.17991915992823
Iteration: 18, Func. Count: 216, Neg. LLF: 79.1778028269949
Iteration: 19, Func. Count: 227, Neg. LLF: 79.17621484799176
Iteration: 20, Func. Count: 238, Neg. LLF: 79.17558449698257
Iteration: 21, Func. Count: 249, Neg. LLF: 79.17539053981548
Iteration: 22, Func. Count: 260, Neg. LLF: 79.17527186171476
Iteration: 23, Func. Count: 271, Neg. LLF: 79.17521300556615
Iteration: 24, Func. Count: 282, Neg. LLF: 79.17519691084242
Iteration: 25, Func. Count: 292, Neg. LLF: 79.17519691081105
Optimization terminated successfully (Exit mode 0)
Current function value: 79.17519691084242
Iterations: 25
Function evaluations: 292
Gradient evaluations: 25
Iteration: 1, Func. Count: 13, Neg. LLF: 162.24779208944446
Iteration: 2, Func. Count: 30, Neg. LLF: 175.7702923917239
Iteration: 3, Func. Count: 44, Neg. LLF: 5481552.249861944
Iteration: 4, Func. Count: 57, Neg. LLF: 94.32089498584101
Iteration: 5, Func. Count: 70, Neg. LLF: 83.10813639191001
Iteration: 6, Func. Count: 83, Neg. LLF: 80.70904701473258
Iteration: 7, Func. Count: 96, Neg. LLF: 83.3425862512791
Iteration: 8, Func. Count: 109, Neg. LLF: 80.17388929344521
Iteration: 9, Func. Count: 122, Neg. LLF: 79.94701605980373
Iteration: 10, Func. Count: 135, Neg. LLF: 83.25289035769914
Iteration: 11, Func. Count: 148, Neg. LLF: 79.33489549749964
Iteration: 12, Func. Count: 160, Neg. LLF: 79.25683826767298
Iteration: 13, Func. Count: 172, Neg. LLF: 79.22083502439969
Iteration: 14, Func. Count: 184, Neg. LLF: 79.33058654344056
Iteration: 15, Func. Count: 197, Neg. LLF: 79.1959633241336
Iteration: 16, Func. Count: 209, Neg. LLF: 79.1895479660668
Iteration: 17, Func. Count: 221, Neg. LLF: 79.18174093104471
Iteration: 18, Func. Count: 233, Neg. LLF: 79.17973414900631
Iteration: 19, Func. Count: 245, Neg. LLF: 79.1773272142211
Iteration: 20, Func. Count: 257, Neg. LLF: 79.17560701982806
Iteration: 21, Func. Count: 269, Neg. LLF: 79.17534636202991
Iteration: 22, Func. Count: 281, Neg. LLF: 79.17525667550076
Iteration: 23, Func. Count: 293, Neg. LLF: 79.17521735462253
Iteration: 24, Func. Count: 305, Neg. LLF: 79.17520099769217
Iteration: 25, Func. Count: 317, Neg. LLF: 79.1751969577987
Iteration: 26, Func. Count: 329, Neg. LLF: 79.17519651846118
Optimization terminated successfully (Exit mode 0)
Current function value: 79.17519651846118
Iterations: 26
Function evaluations: 329
Gradient evaluations: 26
Iteration: 1, Func. Count: 14, Neg. LLF: 152.68818174595867
Iteration: 2, Func. Count: 32, Neg. LLF: 172.71065521160972
Iteration: 3, Func. Count: 47, Neg. LLF: 6645.079220977622
Iteration: 4, Func. Count: 61, Neg. LLF: 312.5773944228573
Iteration: 5, Func. Count: 75, Neg. LLF: 94.44067619712807
Iteration: 6, Func. Count: 89, Neg. LLF: 81.28891055421052
Iteration: 7, Func. Count: 103, Neg. LLF: 87.68187657747096
Iteration: 8, Func. Count: 117, Neg. LLF: 79.02594121516475
Iteration: 9, Func. Count: 130, Neg. LLF: 79.09716256993576
Iteration: 10, Func. Count: 144, Neg. LLF: 78.8989440686025
Iteration: 11, Func. Count: 158, Neg. LLF: 78.80890758340693
Iteration: 12, Func. Count: 171, Neg. LLF: 78.78699056788255
Iteration: 13, Func. Count: 184, Neg. LLF: 78.78731699453223
Iteration: 14, Func. Count: 198, Neg. LLF: 78.78324333857529
Iteration: 15, Func. Count: 211, Neg. LLF: 78.78309610786916
Iteration: 16, Func. Count: 224, Neg. LLF: 78.78308078251293
Iteration: 17, Func. Count: 237, Neg. LLF: 78.78307960256073
Iteration: 18, Func. Count: 249, Neg. LLF: 78.78307955341852
Optimization terminated successfully (Exit mode 0)
Current function value: 78.78307960256073
Iterations: 18
Function evaluations: 249
Gradient evaluations: 18
Iteration: 1, Func. Count: 15, Neg. LLF: 146.22609476575485
Iteration: 2, Func. Count: 34, Neg. LLF: 25401.751297032937
Iteration: 3, Func. Count: 50, Neg. LLF: 440.98875164855974
Iteration: 4, Func. Count: 65, Neg. LLF: 4158184.4851677148
Iteration: 5, Func. Count: 80, Neg. LLF: 129.28106918721323
Iteration: 6, Func. Count: 95, Neg. LLF: 81.4580450062962
Iteration: 7, Func. Count: 110, Neg. LLF: 95.23167895330415
Iteration: 8, Func. Count: 125, Neg. LLF: 81.0272941468576
Iteration: 9, Func. Count: 140, Neg. LLF: 79.25792153688045
Iteration: 10, Func. Count: 154, Neg. LLF: 79.71766021618636
Iteration: 11, Func. Count: 169, Neg. LLF: 78.97392533184501
Iteration: 12, Func. Count: 183, Neg. LLF: 78.91161243219665
Iteration: 13, Func. Count: 197, Neg. LLF: 78.86366157293601
Iteration: 14, Func. Count: 211, Neg. LLF: 78.85113773646573
Iteration: 15, Func. Count: 225, Neg. LLF: 78.84790464777846
Iteration: 16, Func. Count: 239, Neg. LLF: 78.84739115254445
Iteration: 17, Func. Count: 253, Neg. LLF: 78.84731002265579
Iteration: 18, Func. Count: 267, Neg. LLF: 78.8473077299993
Iteration: 19, Func. Count: 280, Neg. LLF: 78.84730767706417
Optimization terminated successfully (Exit mode 0)
Current function value: 78.8473077299993
Iterations: 19
Function evaluations: 280
Gradient evaluations: 19
Iteration: 1, Func. Count: 8, Neg. LLF: 109.23205955868825
Iteration: 2, Func. Count: 17, Neg. LLF: 388.63737075205813
Iteration: 3, Func. Count: 25, Neg. LLF: 107.57589897857903
Iteration: 4, Func. Count: 33, Neg. LLF: 107.13699157343291
Iteration: 5, Func. Count: 41, Neg. LLF: 176.3342463745988
Iteration: 6, Func. Count: 49, Neg. LLF: 98.6172404440332
Iteration: 7, Func. Count: 57, Neg. LLF: 94.45777416805556
Iteration: 8, Func. Count: 65, Neg. LLF: 115.47058042254903
Iteration: 9, Func. Count: 73, Neg. LLF: 124.95792163029313
Iteration: 10, Func. Count: 81, Neg. LLF: 82.96242615044594
Iteration: 11, Func. Count: 89, Neg. LLF: 79.54089291577984
Iteration: 12, Func. Count: 96, Neg. LLF: 79.34277486809307
Iteration: 13, Func. Count: 103, Neg. LLF: 79.29762744886578
Iteration: 14, Func. Count: 110, Neg. LLF: 79.28902222014275
Iteration: 15, Func. Count: 117, Neg. LLF: 79.28773535140748
Iteration: 16, Func. Count: 124, Neg. LLF: 79.28770319548164
Iteration: 17, Func. Count: 131, Neg. LLF: 79.2876981948032
Iteration: 18, Func. Count: 137, Neg. LLF: 79.28769819476064
Optimization terminated successfully (Exit mode 0)
Current function value: 79.2876981948032
Iterations: 18
Function evaluations: 137
Gradient evaluations: 18
Iteration: 1, Func. Count: 9, Neg. LLF: 157.00597663839295
Iteration: 2, Func. Count: 23, Neg. LLF: 159.14109047387333
Iteration: 3, Func. Count: 33, Neg. LLF: 158.60895467027268
Iteration: 4, Func. Count: 42, Neg. LLF: 81.36538240742465
Iteration: 5, Func. Count: 50, Neg. LLF: 82.50776801490282
Iteration: 6, Func. Count: 59, Neg. LLF: 83.07198674203457
Iteration: 7, Func. Count: 69, Neg. LLF: 79.63101742371467
Iteration: 8, Func. Count: 78, Neg. LLF: 79.30807526337347
Iteration: 9, Func. Count: 86, Neg. LLF: 79.30387490230304
Iteration: 10, Func. Count: 94, Neg. LLF: 79.29567893099477
Iteration: 11, Func. Count: 102, Neg. LLF: 79.29277805343415
Iteration: 12, Func. Count: 110, Neg. LLF: 79.28917333193783
Iteration: 13, Func. Count: 118, Neg. LLF: 79.28785422561434
Iteration: 14, Func. Count: 126, Neg. LLF: 79.28770461336947
Iteration: 15, Func. Count: 134, Neg. LLF: 79.28769823296355
Iteration: 16, Func. Count: 141, Neg. LLF: 79.28769825090308
Optimization terminated successfully (Exit mode 0)
Current function value: 79.28769823296355
Iterations: 16
Function evaluations: 141
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 240.9726084829377
Iteration: 2, Func. Count: 20, Neg. LLF: 368.19230422269993
Iteration: 3, Func. Count: 30, Neg. LLF: 97.39158907100392
Iteration: 4, Func. Count: 40, Neg. LLF: 42652.41529706403
Iteration: 5, Func. Count: 50, Neg. LLF: 90.6780240037824
Iteration: 6, Func. Count: 60, Neg. LLF: 84.13511834393175
Iteration: 7, Func. Count: 70, Neg. LLF: 83.82030040509127
Iteration: 8, Func. Count: 80, Neg. LLF: 83.93605203134047
Iteration: 9, Func. Count: 90, Neg. LLF: 79.58253955003998
Iteration: 10, Func. Count: 99, Neg. LLF: 79.52139575733086
Iteration: 11, Func. Count: 109, Neg. LLF: 79.53682251512905
Iteration: 12, Func. Count: 119, Neg. LLF: 79.2941677171446
Iteration: 13, Func. Count: 128, Neg. LLF: 79.28806926361956
Iteration: 14, Func. Count: 137, Neg. LLF: 79.28779447490778
Iteration: 15, Func. Count: 146, Neg. LLF: 79.28771382481818
Iteration: 16, Func. Count: 155, Neg. LLF: 79.28769806411415
Iteration: 17, Func. Count: 163, Neg. LLF: 79.28769813154355
Optimization terminated successfully (Exit mode 0)
Current function value: 79.28769806411415
Iterations: 17
Function evaluations: 163
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 296.9955131967818
Iteration: 2, Func. Count: 22, Neg. LLF: 668.7189040996607
Iteration: 3, Func. Count: 33, Neg. LLF: 517.252948334682
Iteration: 4, Func. Count: 44, Neg. LLF: 101.9783693090772
Iteration: 5, Func. Count: 56, Neg. LLF: 97.75584442136294
Iteration: 6, Func. Count: 67, Neg. LLF: 84.06110748215454
Iteration: 7, Func. Count: 78, Neg. LLF: 82.1805410678526
Iteration: 8, Func. Count: 89, Neg. LLF: 82.55731572361168
Iteration: 9, Func. Count: 100, Neg. LLF: 79.48409401406948
Iteration: 10, Func. Count: 110, Neg. LLF: 79.5293829005485
Iteration: 11, Func. Count: 121, Neg. LLF: 79.38771912529576
Iteration: 12, Func. Count: 132, Neg. LLF: 79.25267536601277
Iteration: 13, Func. Count: 142, Neg. LLF: 79.24679355057496
Iteration: 14, Func. Count: 152, Neg. LLF: 79.24520420519886
Iteration: 15, Func. Count: 162, Neg. LLF: 79.24507749459187
Iteration: 16, Func. Count: 172, Neg. LLF: 79.24502379154026
Iteration: 17, Func. Count: 182, Neg. LLF: 79.2450191414983
Iteration: 18, Func. Count: 191, Neg. LLF: 79.24501914154766
Optimization terminated successfully (Exit mode 0)
Current function value: 79.2450191414983
Iterations: 18
Function evaluations: 191
Gradient evaluations: 18
Iteration: 1, Func. Count: 12, Neg. LLF: 1004.2663287096345
Iteration: 2, Func. Count: 24, Neg. LLF: 626.9861237954714
Iteration: 3, Func. Count: 36, Neg. LLF: 445.75104738397715
Iteration: 4, Func. Count: 48, Neg. LLF: 157.23077636744915
Iteration: 5, Func. Count: 60, Neg. LLF: 81.58625896877584
Iteration: 6, Func. Count: 72, Neg. LLF: 85.72341662584762
Iteration: 7, Func. Count: 84, Neg. LLF: 80.44242498333163
Iteration: 8, Func. Count: 96, Neg. LLF: 79.70322572770722
Iteration: 9, Func. Count: 108, Neg. LLF: 79.68405795790382
Iteration: 10, Func. Count: 120, Neg. LLF: 79.27140184925285
Iteration: 11, Func. Count: 131, Neg. LLF: 79.25464720287971
Iteration: 12, Func. Count: 142, Neg. LLF: 79.25967508161933
Iteration: 13, Func. Count: 154, Neg. LLF: 79.24562119808412
Iteration: 14, Func. Count: 165, Neg. LLF: 79.2450707670035
Iteration: 15, Func. Count: 176, Neg. LLF: 79.24501921148024
Iteration: 16, Func. Count: 186, Neg. LLF: 79.24501923420026
Optimization terminated successfully (Exit mode 0)
Current function value: 79.24501921148024
Iterations: 16
Function evaluations: 186
Gradient evaluations: 16
Iteration: 1, Func. Count: 9, Neg. LLF: 109.51010256593457
Iteration: 2, Func. Count: 19, Neg. LLF: 366.46007349668247
Iteration: 3, Func. Count: 28, Neg. LLF: 107.67843501319143
Iteration: 4, Func. Count: 37, Neg. LLF: 107.37969064098004
Iteration: 5, Func. Count: 46, Neg. LLF: 176.53051450320706
Iteration: 6, Func. Count: 55, Neg. LLF: 98.29924409668894
Iteration: 7, Func. Count: 64, Neg. LLF: 93.98546625301168
Iteration: 8, Func. Count: 73, Neg. LLF: 119.95303907603046
Iteration: 9, Func. Count: 82, Neg. LLF: 124.48764559779983
Iteration: 10, Func. Count: 91, Neg. LLF: 82.76104275009006
Iteration: 11, Func. Count: 100, Neg. LLF: 80.76465112566522
Iteration: 12, Func. Count: 109, Neg. LLF: 79.22989558332844
Iteration: 13, Func. Count: 117, Neg. LLF: 79.20743264550177
Iteration: 14, Func. Count: 125, Neg. LLF: 79.20244599211611
Iteration: 15, Func. Count: 133, Neg. LLF: 79.20224630176891
Iteration: 16, Func. Count: 141, Neg. LLF: 79.20219170315505
Iteration: 17, Func. Count: 149, Neg. LLF: 79.20218421730318
Iteration: 18, Func. Count: 156, Neg. LLF: 79.20218415734185
Optimization terminated successfully (Exit mode 0)
Current function value: 79.20218421730318
Iterations: 18
Function evaluations: 156
Gradient evaluations: 18
Iteration: 1, Func. Count: 10, Neg. LLF: 164.30642053136373
Iteration: 2, Func. Count: 24, Neg. LLF: 175.20309911078917
Iteration: 3, Func. Count: 35, Neg. LLF: 80.90360439780227
Iteration: 4, Func. Count: 44, Neg. LLF: 100.61292247914176
Iteration: 5, Func. Count: 55, Neg. LLF: 88.20727984201329
Iteration: 6, Func. Count: 66, Neg. LLF: 88.75637187265843
Iteration: 7, Func. Count: 76, Neg. LLF: 84.42512464849244
Iteration: 8, Func. Count: 86, Neg. LLF: 79.21396159872411
Iteration: 9, Func. Count: 95, Neg. LLF: 79.20884383863466
Iteration: 10, Func. Count: 104, Neg. LLF: 79.20454199917415
Iteration: 11, Func. Count: 113, Neg. LLF: 79.20327786864965
Iteration: 12, Func. Count: 122, Neg. LLF: 79.20263737959516
Iteration: 13, Func. Count: 131, Neg. LLF: 79.20237680473117
Iteration: 14, Func. Count: 140, Neg. LLF: 79.20225159926116
Iteration: 15, Func. Count: 149, Neg. LLF: 79.20219399821465
Iteration: 16, Func. Count: 158, Neg. LLF: 79.2021845370872
Iteration: 17, Func. Count: 167, Neg. LLF: 79.20218391121779
Optimization terminated successfully (Exit mode 0)
Current function value: 79.20218391121779
Iterations: 17
Function evaluations: 167
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 176.67544705099832
Iteration: 2, Func. Count: 23, Neg. LLF: 644.2603313031475
Iteration: 3, Func. Count: 34, Neg. LLF: 89.10001883449074
Iteration: 4, Func. Count: 45, Neg. LLF: 12723.971376232617
Iteration: 5, Func. Count: 56, Neg. LLF: 108.97776246584051
Iteration: 6, Func. Count: 67, Neg. LLF: 84.06517498628124
Iteration: 7, Func. Count: 78, Neg. LLF: 80.22669985014329
Iteration: 8, Func. Count: 88, Neg. LLF: 83.11271713461134
Iteration: 9, Func. Count: 99, Neg. LLF: 90.75460172269818
Iteration: 10, Func. Count: 111, Neg. LLF: 79.56360649956352
Iteration: 11, Func. Count: 122, Neg. LLF: 79.20752345143492
Iteration: 12, Func. Count: 132, Neg. LLF: 79.20311812820763
Iteration: 13, Func. Count: 142, Neg. LLF: 79.20240707638237
Iteration: 14, Func. Count: 152, Neg. LLF: 79.20219482894468
Iteration: 15, Func. Count: 162, Neg. LLF: 79.20218404825953
Iteration: 16, Func. Count: 171, Neg. LLF: 79.20218411350548
Optimization terminated successfully (Exit mode 0)
Current function value: 79.20218404825953
Iterations: 16
Function evaluations: 171
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 209.06273868448417
Iteration: 2, Func. Count: 25, Neg. LLF: 72781.02493004399
Iteration: 3, Func. Count: 37, Neg. LLF: 171.88815672535486
Iteration: 4, Func. Count: 49, Neg. LLF: 87.76584938343659
Iteration: 5, Func. Count: 63, Neg. LLF: 83.16317261620803
Iteration: 6, Func. Count: 75, Neg. LLF: 80.18636160347191
Iteration: 7, Func. Count: 86, Neg. LLF: 79.9264496646788
Iteration: 8, Func. Count: 97, Neg. LLF: 84.16683586163808
Iteration: 9, Func. Count: 109, Neg. LLF: 84.01868208550582
Iteration: 10, Func. Count: 121, Neg. LLF: 79.54906058998556
Iteration: 11, Func. Count: 133, Neg. LLF: 79.23426919493326
Iteration: 12, Func. Count: 144, Neg. LLF: 79.22291207891391
Iteration: 13, Func. Count: 156, Neg. LLF: 79.2031836158953
Iteration: 14, Func. Count: 168, Neg. LLF: 79.18356699799673
Iteration: 15, Func. Count: 179, Neg. LLF: 79.17911692585382
Iteration: 16, Func. Count: 190, Neg. LLF: 79.17840834706419
Iteration: 17, Func. Count: 201, Neg. LLF: 79.17831181629477
Iteration: 18, Func. Count: 212, Neg. LLF: 79.17830922011618
Iteration: 19, Func. Count: 222, Neg. LLF: 79.17830922010923
Optimization terminated successfully (Exit mode 0)
Current function value: 79.17830922011618
Iterations: 19
Function evaluations: 222
Gradient evaluations: 19
Iteration: 1, Func. Count: 13, Neg. LLF: 274.59506998860127
Iteration: 2, Func. Count: 26, Neg. LLF: 508.6725662921487
Iteration: 3, Func. Count: 39, Neg. LLF: 93.83848159162015
Iteration: 4, Func. Count: 53, Neg. LLF: 10241.58829288794
Iteration: 5, Func. Count: 66, Neg. LLF: 83.90695774491242
Iteration: 6, Func. Count: 79, Neg. LLF: 85.43943441107011
Iteration: 7, Func. Count: 92, Neg. LLF: 84.34284945179766
Iteration: 8, Func. Count: 105, Neg. LLF: 79.80392206850937
Iteration: 9, Func. Count: 117, Neg. LLF: 79.85281625181918
Iteration: 10, Func. Count: 130, Neg. LLF: 86.44633586013963
Iteration: 11, Func. Count: 143, Neg. LLF: 79.8807780462802
Iteration: 12, Func. Count: 156, Neg. LLF: 79.1996468780192
Iteration: 13, Func. Count: 168, Neg. LLF: 79.18689334135559
Iteration: 14, Func. Count: 180, Neg. LLF: 79.1804980719613
Iteration: 15, Func. Count: 192, Neg. LLF: 79.17856197798979
Iteration: 16, Func. Count: 204, Neg. LLF: 79.17839442567497
Iteration: 17, Func. Count: 216, Neg. LLF: 79.17831372017615
Iteration: 18, Func. Count: 228, Neg. LLF: 79.17830985414564
Iteration: 19, Func. Count: 240, Neg. LLF: 79.17830913359927
Optimization terminated successfully (Exit mode 0)
Current function value: 79.17830913359927
Iterations: 19
Function evaluations: 240
Gradient evaluations: 19
Iteration: 1, Func. Count: 10, Neg. LLF: 110.47660535399112
Iteration: 2, Func. Count: 20, Neg. LLF: 3665.5453098304356
Iteration: 3, Func. Count: 30, Neg. LLF: 176.36860855863432
Iteration: 4, Func. Count: 40, Neg. LLF: 358247.82754037064
Iteration: 5, Func. Count: 50, Neg. LLF: 109.84356121874745
Iteration: 6, Func. Count: 60, Neg. LLF: 1929.0110074362262
Iteration: 7, Func. Count: 70, Neg. LLF: 97.19567040901867
Iteration: 8, Func. Count: 80, Neg. LLF: 120.71384198119513
Iteration: 9, Func. Count: 90, Neg. LLF: 98.37886229520169
Iteration: 10, Func. Count: 100, Neg. LLF: 94.42354056829231
Iteration: 11, Func. Count: 110, Neg. LLF: 79.29828249668776
Iteration: 12, Func. Count: 119, Neg. LLF: 79.58935057438906
Iteration: 13, Func. Count: 129, Neg. LLF: 80.28259477260144
Iteration: 14, Func. Count: 139, Neg. LLF: 79.22920952936519
Iteration: 15, Func. Count: 149, Neg. LLF: 79.20526817800119
Iteration: 16, Func. Count: 158, Neg. LLF: 79.20027276532949
Iteration: 17, Func. Count: 167, Neg. LLF: 79.1984092784078
Iteration: 18, Func. Count: 176, Neg. LLF: 79.19741156803701
Iteration: 19, Func. Count: 185, Neg. LLF: 79.19732326607816
Iteration: 20, Func. Count: 194, Neg. LLF: 79.19731233786757
Iteration: 21, Func. Count: 203, Neg. LLF: 79.19731122006955
Iteration: 22, Func. Count: 211, Neg. LLF: 79.19731122006831
Optimization terminated successfully (Exit mode 0)
Current function value: 79.19731122006955
Iterations: 22
Function evaluations: 211
Gradient evaluations: 22
Iteration: 1, Func. Count: 11, Neg. LLF: 180.46089069801525
Iteration: 2, Func. Count: 26, Neg. LLF: 190.60415922511046
Iteration: 3, Func. Count: 38, Neg. LLF: 942.0030809289084
Iteration: 4, Func. Count: 49, Neg. LLF: 80.27019134028355
Iteration: 5, Func. Count: 59, Neg. LLF: 79.97359271232864
Iteration: 6, Func. Count: 70, Neg. LLF: 110.69653076171798
Iteration: 7, Func. Count: 81, Neg. LLF: 79.96024975767179
Iteration: 8, Func. Count: 92, Neg. LLF: 79.53368629819514
Iteration: 9, Func. Count: 103, Neg. LLF: 79.29123193268926
Iteration: 10, Func. Count: 114, Neg. LLF: 79.20748811152623
Iteration: 11, Func. Count: 124, Neg. LLF: 79.20118272441775
Iteration: 12, Func. Count: 134, Neg. LLF: 79.19976511221591
Iteration: 13, Func. Count: 144, Neg. LLF: 79.19848945268814
Iteration: 14, Func. Count: 154, Neg. LLF: 79.19793213688597
Iteration: 15, Func. Count: 164, Neg. LLF: 79.19760093320406
Iteration: 16, Func. Count: 174, Neg. LLF: 79.19742209598535
Iteration: 17, Func. Count: 184, Neg. LLF: 79.19733266315261
Iteration: 18, Func. Count: 194, Neg. LLF: 79.19731383775041
Iteration: 19, Func. Count: 204, Neg. LLF: 79.1973116680083
Iteration: 20, Func. Count: 213, Neg. LLF: 79.19731168236805
Optimization terminated successfully (Exit mode 0)
Current function value: 79.1973116680083
Iterations: 20
Function evaluations: 213
Gradient evaluations: 20
Iteration: 1, Func. Count: 12, Neg. LLF: 165.1141864370089
Iteration: 2, Func. Count: 28, Neg. LLF: 176.85417127032335
Iteration: 3, Func. Count: 41, Neg. LLF: 1730.7992646382236
Iteration: 4, Func. Count: 53, Neg. LLF: 80.58273288965982
Iteration: 5, Func. Count: 64, Neg. LLF: 84.35805357400645
Iteration: 6, Func. Count: 76, Neg. LLF: 80.34324040797354
Iteration: 7, Func. Count: 88, Neg. LLF: 81.44945707013527
Iteration: 8, Func. Count: 100, Neg. LLF: 81.70840315783644
Iteration: 9, Func. Count: 112, Neg. LLF: 79.34677411999418
Iteration: 10, Func. Count: 123, Neg. LLF: 79.2792061378058
Iteration: 11, Func. Count: 134, Neg. LLF: 79.24922432837518
Iteration: 12, Func. Count: 145, Neg. LLF: 79.20274017231097
Iteration: 13, Func. Count: 156, Neg. LLF: 79.19908826993446
Iteration: 14, Func. Count: 167, Neg. LLF: 79.19830766412205
Iteration: 15, Func. Count: 178, Neg. LLF: 79.19756148276538
Iteration: 16, Func. Count: 189, Neg. LLF: 79.1974711776652
Iteration: 17, Func. Count: 200, Neg. LLF: 79.19735095990032
Iteration: 18, Func. Count: 211, Neg. LLF: 79.19731978472049
Iteration: 19, Func. Count: 222, Neg. LLF: 79.19731163623268
Iteration: 20, Func. Count: 232, Neg. LLF: 79.19731169385474
Optimization terminated successfully (Exit mode 0)
Current function value: 79.19731163623268
Iterations: 20
Function evaluations: 232
Gradient evaluations: 20
Iteration: 1, Func. Count: 13, Neg. LLF: 148.0148178938478
Iteration: 2, Func. Count: 30, Neg. LLF: 393.51291690596395
Iteration: 3, Func. Count: 44, Neg. LLF: 105973.72819164397
Iteration: 4, Func. Count: 57, Neg. LLF: 202.023685646779
Iteration: 5, Func. Count: 70, Neg. LLF: 93.55023001023476
Iteration: 6, Func. Count: 83, Neg. LLF: 81.47422802150078
Iteration: 7, Func. Count: 96, Neg. LLF: 79.50630346017114
Iteration: 8, Func. Count: 108, Neg. LLF: 79.28778276297928
Iteration: 9, Func. Count: 120, Neg. LLF: 80.04804392240851
Iteration: 10, Func. Count: 134, Neg. LLF: 79.74008965477088
Iteration: 11, Func. Count: 147, Neg. LLF: 79.04107469672616
Iteration: 12, Func. Count: 159, Neg. LLF: 79.035138695722
Iteration: 13, Func. Count: 171, Neg. LLF: 79.0227752697653
Iteration: 14, Func. Count: 183, Neg. LLF: 79.02158178359751
Iteration: 15, Func. Count: 195, Neg. LLF: 79.02136993346798
Iteration: 16, Func. Count: 207, Neg. LLF: 79.02131346370587
Iteration: 17, Func. Count: 219, Neg. LLF: 79.02130163879805
Iteration: 18, Func. Count: 230, Neg. LLF: 79.0213016151366
Optimization terminated successfully (Exit mode 0)
Current function value: 79.02130163879805
Iterations: 18
Function evaluations: 230
Gradient evaluations: 18
Iteration: 1, Func. Count: 14, Neg. LLF: 893.690134921254
Iteration: 2, Func. Count: 29, Neg. LLF: 411.37909743397785
Iteration: 3, Func. Count: 43, Neg. LLF: 8187133.478967578
Iteration: 4, Func. Count: 57, Neg. LLF: 118.96847859800364
Iteration: 5, Func. Count: 71, Neg. LLF: 94.71541020347128
Iteration: 6, Func. Count: 85, Neg. LLF: 83.70229695262896
Iteration: 7, Func. Count: 99, Neg. LLF: 79.88863208729519
Iteration: 8, Func. Count: 112, Neg. LLF: 79.67153878808567
Iteration: 9, Func. Count: 125, Neg. LLF: 82.81432411382622
Iteration: 10, Func. Count: 139, Neg. LLF: 80.09011681946794
Iteration: 11, Func. Count: 153, Neg. LLF: 84.36333986556194
Iteration: 12, Func. Count: 167, Neg. LLF: 79.58527604475076
Iteration: 13, Func. Count: 181, Neg. LLF: 79.58694500703187
Iteration: 14, Func. Count: 195, Neg. LLF: 79.64388605164245
Iteration: 15, Func. Count: 209, Neg. LLF: 79.31338171827721
Iteration: 16, Func. Count: 223, Neg. LLF: 79.73226361928289
Iteration: 17, Func. Count: 237, Neg. LLF: 79.12933950584079
Iteration: 18, Func. Count: 250, Neg. LLF: 79.10710731063136
Iteration: 19, Func. Count: 263, Neg. LLF: 79.09745605293793
Iteration: 20, Func. Count: 276, Neg. LLF: 79.08352171338781
Iteration: 21, Func. Count: 289, Neg. LLF: 79.05442819160173
Iteration: 22, Func. Count: 302, Neg. LLF: 79.03701344315411
Iteration: 23, Func. Count: 315, Neg. LLF: 79.02628663655175
Iteration: 24, Func. Count: 328, Neg. LLF: 79.02374481240349
Iteration: 25, Func. Count: 341, Neg. LLF: 79.0217586277284
Iteration: 26, Func. Count: 354, Neg. LLF: 79.02137050346059
Iteration: 27, Func. Count: 367, Neg. LLF: 79.02130553922375
Iteration: 28, Func. Count: 380, Neg. LLF: 79.0213012285938
Iteration: 29, Func. Count: 392, Neg. LLF: 79.02130124297835
Optimization terminated successfully (Exit mode 0)
Current function value: 79.0213012285938
Iterations: 29
Function evaluations: 392
Gradient evaluations: 29
Iteration: 1, Func. Count: 11, Neg. LLF: 232.81258660213612
Iteration: 2, Func. Count: 22, Neg. LLF: 372.9594092521434
Iteration: 3, Func. Count: 33, Neg. LLF: 103.4160542545711
Iteration: 4, Func. Count: 44, Neg. LLF: 148.00662665148639
Iteration: 5, Func. Count: 55, Neg. LLF: 656.948391975854
Iteration: 6, Func. Count: 66, Neg. LLF: 657.0133614937348
Iteration: 7, Func. Count: 77, Neg. LLF: 137.88706564513973
Iteration: 8, Func. Count: 88, Neg. LLF: 84.52404743364254
Iteration: 9, Func. Count: 99, Neg. LLF: 27608.625736304813
Iteration: 10, Func. Count: 110, Neg. LLF: 80.62618355060299
Iteration: 11, Func. Count: 121, Neg. LLF: 79.29458573739502
Iteration: 12, Func. Count: 131, Neg. LLF: 81.56558246056333
Iteration: 13, Func. Count: 142, Neg. LLF: 79.39377585790844
Iteration: 14, Func. Count: 153, Neg. LLF: 79.15861200190234
Iteration: 15, Func. Count: 163, Neg. LLF: 79.14759089667663
Iteration: 16, Func. Count: 173, Neg. LLF: 79.14344707355608
Iteration: 17, Func. Count: 183, Neg. LLF: 79.1380178680201
Iteration: 18, Func. Count: 193, Neg. LLF: 79.13628864651118
Iteration: 19, Func. Count: 203, Neg. LLF: 79.13590911463633
Iteration: 20, Func. Count: 213, Neg. LLF: 79.13582465890501
Iteration: 21, Func. Count: 223, Neg. LLF: 79.13578704384852
Iteration: 22, Func. Count: 233, Neg. LLF: 79.13572341046688
Iteration: 23, Func. Count: 243, Neg. LLF: 79.13569289867354
Iteration: 24, Func. Count: 253, Neg. LLF: 79.13568509279965
Iteration: 25, Func. Count: 262, Neg. LLF: 79.13568509280206
Optimization terminated successfully (Exit mode 0)
Current function value: 79.13568509279965
Iterations: 25
Function evaluations: 262
Gradient evaluations: 25
Iteration: 1, Func. Count: 12, Neg. LLF: 163.48877465894378
Iteration: 2, Func. Count: 28, Neg. LLF: 176.77953372732085
Iteration: 3, Func. Count: 41, Neg. LLF: 180.55252959241454
Iteration: 4, Func. Count: 53, Neg. LLF: 84.15225852156357
Iteration: 5, Func. Count: 65, Neg. LLF: 80.54639093206838
Iteration: 6, Func. Count: 77, Neg. LLF: 81.03910013886956
Iteration: 7, Func. Count: 89, Neg. LLF: 80.25993018533914
Iteration: 8, Func. Count: 101, Neg. LLF: 82.18926785649082
Iteration: 9, Func. Count: 113, Neg. LLF: 79.60075979490817
Iteration: 10, Func. Count: 125, Neg. LLF: 79.48424213625334
Iteration: 11, Func. Count: 137, Neg. LLF: 79.17837296170391
Iteration: 12, Func. Count: 148, Neg. LLF: 79.17016707667462
Iteration: 13, Func. Count: 159, Neg. LLF: 79.15625677827626
Iteration: 14, Func. Count: 170, Neg. LLF: 79.14666130232386
Iteration: 15, Func. Count: 181, Neg. LLF: 79.14420929088071
Iteration: 16, Func. Count: 192, Neg. LLF: 79.1429004810071
Iteration: 17, Func. Count: 203, Neg. LLF: 79.1404052719848
Iteration: 18, Func. Count: 214, Neg. LLF: 79.13951028941712
Iteration: 19, Func. Count: 225, Neg. LLF: 79.13776299657533
Iteration: 20, Func. Count: 236, Neg. LLF: 79.1366771401337
Iteration: 21, Func. Count: 247, Neg. LLF: 79.13586739586536
Iteration: 22, Func. Count: 258, Neg. LLF: 79.13571284357589
Iteration: 23, Func. Count: 269, Neg. LLF: 79.13568705728737
Iteration: 24, Func. Count: 280, Neg. LLF: 79.13568494469854
Iteration: 25, Func. Count: 290, Neg. LLF: 79.13568495440416
Optimization terminated successfully (Exit mode 0)
Current function value: 79.13568494469854
Iterations: 25
Function evaluations: 290
Gradient evaluations: 25
Iteration: 1, Func. Count: 13, Neg. LLF: 155.2967531178845
Iteration: 2, Func. Count: 30, Neg. LLF: 172.10733271732022
Iteration: 3, Func. Count: 44, Neg. LLF: 3363640.721634433
Iteration: 4, Func. Count: 57, Neg. LLF: 185.7779544475369
Iteration: 5, Func. Count: 70, Neg. LLF: 87.40234839301132
Iteration: 6, Func. Count: 83, Neg. LLF: 80.67374188650192
Iteration: 7, Func. Count: 96, Neg. LLF: 90.2419071241478
Iteration: 8, Func. Count: 109, Neg. LLF: 84.8589669858546
Iteration: 9, Func. Count: 122, Neg. LLF: 81.31720390057289
Iteration: 10, Func. Count: 135, Neg. LLF: 79.28861289663799
Iteration: 11, Func. Count: 147, Neg. LLF: 79.20368024981005
Iteration: 12, Func. Count: 159, Neg. LLF: 79.15990975665346
Iteration: 13, Func. Count: 171, Neg. LLF: 79.14734083262555
Iteration: 14, Func. Count: 183, Neg. LLF: 79.14213230332945
Iteration: 15, Func. Count: 195, Neg. LLF: 79.13900131757426
Iteration: 16, Func. Count: 207, Neg. LLF: 79.13656529976775
Iteration: 17, Func. Count: 219, Neg. LLF: 79.1358844422977
Iteration: 18, Func. Count: 231, Neg. LLF: 79.13572788560006
Iteration: 19, Func. Count: 243, Neg. LLF: 79.13570839672924
Iteration: 20, Func. Count: 255, Neg. LLF: 79.1357006903259
Iteration: 21, Func. Count: 267, Neg. LLF: 79.13569300910923
Iteration: 22, Func. Count: 279, Neg. LLF: 79.13568852904031
Iteration: 23, Func. Count: 291, Neg. LLF: 79.13568602998825
Iteration: 24, Func. Count: 303, Neg. LLF: 79.13568499753876
Iteration: 25, Func. Count: 314, Neg. LLF: 79.13568506367767
Optimization terminated successfully (Exit mode 0)
Current function value: 79.13568499753876
Iterations: 25
Function evaluations: 314
Gradient evaluations: 25
Iteration: 1, Func. Count: 14, Neg. LLF: 148.49865199940712
Iteration: 2, Func. Count: 32, Neg. LLF: 173.71387785133933
Iteration: 3, Func. Count: 47, Neg. LLF: 1206.0466809126626
Iteration: 4, Func. Count: 61, Neg. LLF: 9683.987730632325
Iteration: 5, Func. Count: 75, Neg. LLF: 107.81672234382621
Iteration: 6, Func. Count: 89, Neg. LLF: 82.05512232048748
Iteration: 7, Func. Count: 103, Neg. LLF: 84.68703005447583
Iteration: 8, Func. Count: 117, Neg. LLF: 79.1212413738966
Iteration: 9, Func. Count: 130, Neg. LLF: 79.08648717455102
Iteration: 10, Func. Count: 144, Neg. LLF: 78.81325499252713
Iteration: 11, Func. Count: 157, Neg. LLF: 78.76308655942391
Iteration: 12, Func. Count: 170, Neg. LLF: 78.76175057830913
Iteration: 13, Func. Count: 183, Neg. LLF: 78.76129361888167
Iteration: 14, Func. Count: 196, Neg. LLF: 78.76127886476965
Iteration: 15, Func. Count: 209, Neg. LLF: 78.76127694452859
Iteration: 16, Func. Count: 221, Neg. LLF: 78.76127690277308
Optimization terminated successfully (Exit mode 0)
Current function value: 78.76127694452859
Iterations: 16
Function evaluations: 221
Gradient evaluations: 16
Iteration: 1, Func. Count: 15, Neg. LLF: 263.65509918891206
Iteration: 2, Func. Count: 31, Neg. LLF: 6563404.092839666
Iteration: 3, Func. Count: 46, Neg. LLF: 183.69853226783178
Iteration: 4, Func. Count: 61, Neg. LLF: 22300.67574325483
Iteration: 5, Func. Count: 76, Neg. LLF: 96.92357063608497
Iteration: 6, Func. Count: 91, Neg. LLF: 265.4510120332806
Iteration: 7, Func. Count: 106, Neg. LLF: 87.46943211597286
Iteration: 8, Func. Count: 121, Neg. LLF: 84.67232628048843
Iteration: 9, Func. Count: 136, Neg. LLF: 79.06403153817887
Iteration: 10, Func. Count: 150, Neg. LLF: 81.2297657375779
Iteration: 11, Func. Count: 165, Neg. LLF: 79.07331189401845
Iteration: 12, Func. Count: 180, Neg. LLF: 78.9498024512457
Iteration: 13, Func. Count: 195, Neg. LLF: 78.8739858593827
Iteration: 14, Func. Count: 209, Neg. LLF: 78.8714005834319
Iteration: 15, Func. Count: 223, Neg. LLF: 78.87118081430111
Iteration: 16, Func. Count: 237, Neg. LLF: 78.87113945430359
Iteration: 17, Func. Count: 251, Neg. LLF: 78.8711288388301
Iteration: 18, Func. Count: 264, Neg. LLF: 78.87112880638102
Optimization terminated successfully (Exit mode 0)
Current function value: 78.8711288388301
Iterations: 18
Function evaluations: 264
Gradient evaluations: 18
Iteration: 1, Func. Count: 12, Neg. LLF: 876.178665370484
Iteration: 2, Func. Count: 24, Neg. LLF: 64323862.825968064
Iteration: 3, Func. Count: 36, Neg. LLF: 101.45407359905842
Iteration: 4, Func. Count: 48, Neg. LLF: 106.98528960304986
Iteration: 5, Func. Count: 60, Neg. LLF: 298.38503461179357
Iteration: 6, Func. Count: 72, Neg. LLF: 698.9118592304379
Iteration: 7, Func. Count: 84, Neg. LLF: 65446.31294882233
Iteration: 8, Func. Count: 96, Neg. LLF: 83.89094431987776
Iteration: 9, Func. Count: 108, Neg. LLF: 130.67465017342371
Iteration: 10, Func. Count: 120, Neg. LLF: 101.52435540004586
Iteration: 11, Func. Count: 132, Neg. LLF: 81.20683313034687
Iteration: 12, Func. Count: 144, Neg. LLF: 79.50491646880323
Iteration: 13, Func. Count: 156, Neg. LLF: 79.24719429486224
Iteration: 14, Func. Count: 167, Neg. LLF: 79.54710339958521
Iteration: 15, Func. Count: 179, Neg. LLF: 79.17918742644834
Iteration: 16, Func. Count: 190, Neg. LLF: 79.13118403851922
Iteration: 17, Func. Count: 201, Neg. LLF: 79.12329593159279
Iteration: 18, Func. Count: 212, Neg. LLF: 79.1131764202782
Iteration: 19, Func. Count: 223, Neg. LLF: 79.10747461092113
Iteration: 20, Func. Count: 234, Neg. LLF: 79.10581261609094
Iteration: 21, Func. Count: 245, Neg. LLF: 79.1056230712477
Iteration: 22, Func. Count: 256, Neg. LLF: 79.1055026660453
Iteration: 23, Func. Count: 267, Neg. LLF: 79.10543742627578
Iteration: 24, Func. Count: 278, Neg. LLF: 79.10539864166466
Iteration: 25, Func. Count: 289, Neg. LLF: 79.10538665525758
Iteration: 26, Func. Count: 300, Neg. LLF: 79.10538507275686
Iteration: 27, Func. Count: 310, Neg. LLF: 79.10538507278393
Optimization terminated successfully (Exit mode 0)
Current function value: 79.10538507275686
Iterations: 27
Function evaluations: 310
Gradient evaluations: 27
Iteration: 1, Func. Count: 13, Neg. LLF: 159.3559198645634
Iteration: 2, Func. Count: 31, Neg. LLF: 227.05034917772204
Iteration: 3, Func. Count: 45, Neg. LLF: 5277237.581211046
Iteration: 4, Func. Count: 58, Neg. LLF: 89.39426192945085
Iteration: 5, Func. Count: 71, Neg. LLF: 92.0399506435671
Iteration: 6, Func. Count: 84, Neg. LLF: 96.22528643616307
Iteration: 7, Func. Count: 97, Neg. LLF: 87.76933839119138
Iteration: 8, Func. Count: 110, Neg. LLF: 80.78267141257109
Iteration: 9, Func. Count: 123, Neg. LLF: 79.58982645908942
Iteration: 10, Func. Count: 135, Neg. LLF: 79.6716517405797
Iteration: 11, Func. Count: 148, Neg. LLF: 82.11565874580592
Iteration: 12, Func. Count: 161, Neg. LLF: 79.51614819896726
Iteration: 13, Func. Count: 174, Neg. LLF: 79.14136383913852
Iteration: 14, Func. Count: 186, Neg. LLF: 79.12956615562099
Iteration: 15, Func. Count: 198, Neg. LLF: 79.11793380272483
Iteration: 16, Func. Count: 210, Neg. LLF: 79.11270850584664
Iteration: 17, Func. Count: 222, Neg. LLF: 79.11097716683427
Iteration: 18, Func. Count: 234, Neg. LLF: 79.10939228047097
Iteration: 19, Func. Count: 246, Neg. LLF: 79.10798902417137
Iteration: 20, Func. Count: 258, Neg. LLF: 79.10700001104625
Iteration: 21, Func. Count: 270, Neg. LLF: 79.10628715004384
Iteration: 22, Func. Count: 282, Neg. LLF: 79.10575320450346
Iteration: 23, Func. Count: 294, Neg. LLF: 79.10543133843423
Iteration: 24, Func. Count: 306, Neg. LLF: 79.10539355312288
Iteration: 25, Func. Count: 318, Neg. LLF: 79.10538584018813
Iteration: 26, Func. Count: 330, Neg. LLF: 79.10538507745306
Optimization terminated successfully (Exit mode 0)
Current function value: 79.10538507745306
Iterations: 26
Function evaluations: 330
Gradient evaluations: 26
Iteration: 1, Func. Count: 14, Neg. LLF: 189.60004935028422
Iteration: 2, Func. Count: 29, Neg. LLF: 3526328.031032287
Iteration: 3, Func. Count: 43, Neg. LLF: 4099739.6965730474
Iteration: 4, Func. Count: 57, Neg. LLF: 452.34193397013956
Iteration: 5, Func. Count: 71, Neg. LLF: 89.26386744331356
Iteration: 6, Func. Count: 85, Neg. LLF: 1064.6278726765374
Iteration: 7, Func. Count: 99, Neg. LLF: 83.41111469508803
Iteration: 8, Func. Count: 113, Neg. LLF: 82.61591353424488
Iteration: 9, Func. Count: 127, Neg. LLF: 79.55564765942663
Iteration: 10, Func. Count: 140, Neg. LLF: 79.56640111550206
Iteration: 11, Func. Count: 154, Neg. LLF: 79.35549080905028
Iteration: 12, Func. Count: 168, Neg. LLF: 79.15634989088261
Iteration: 13, Func. Count: 181, Neg. LLF: 79.25446530018297
Iteration: 14, Func. Count: 195, Neg. LLF: 79.1797840429669
Iteration: 15, Func. Count: 209, Neg. LLF: 79.1214829052548
Iteration: 16, Func. Count: 222, Neg. LLF: 79.11208613852607
Iteration: 17, Func. Count: 235, Neg. LLF: 79.10880396864614
Iteration: 18, Func. Count: 248, Neg. LLF: 79.10593051316168
Iteration: 19, Func. Count: 261, Neg. LLF: 79.105490629725
Iteration: 20, Func. Count: 274, Neg. LLF: 79.1054380754965
Iteration: 21, Func. Count: 287, Neg. LLF: 79.10539494702671
Iteration: 22, Func. Count: 300, Neg. LLF: 79.10538985970824
Iteration: 23, Func. Count: 313, Neg. LLF: 79.10538623061592
Iteration: 24, Func. Count: 326, Neg. LLF: 79.1053852916356
Optimization terminated successfully (Exit mode 0)
Current function value: 79.1053852916356
Iterations: 24
Function evaluations: 326
Gradient evaluations: 24
Iteration: 1, Func. Count: 15, Neg. LLF: 222.229826332712
Iteration: 2, Func. Count: 31, Neg. LLF: 6257037.504281682
Iteration: 3, Func. Count: 46, Neg. LLF: 849.5460209567038
Iteration: 4, Func. Count: 61, Neg. LLF: 95.00328089843472
Iteration: 5, Func. Count: 76, Neg. LLF: 86.16507484719257
Iteration: 6, Func. Count: 91, Neg. LLF: 83.14095139540804
Iteration: 7, Func. Count: 106, Neg. LLF: 82.79414855995756
Iteration: 8, Func. Count: 121, Neg. LLF: 79.7584411189948
Iteration: 9, Func. Count: 136, Neg. LLF: 79.03238596181194
Iteration: 10, Func. Count: 150, Neg. LLF: 78.6644290335727
Iteration: 11, Func. Count: 164, Neg. LLF: 81.84284048131465
Iteration: 12, Func. Count: 180, Neg. LLF: 78.52124336391881
Iteration: 13, Func. Count: 194, Neg. LLF: 78.49240815074334
Iteration: 14, Func. Count: 208, Neg. LLF: 78.46587315472995
Iteration: 15, Func. Count: 222, Neg. LLF: 78.46502174061273
Iteration: 16, Func. Count: 236, Neg. LLF: 78.462947504612
Iteration: 17, Func. Count: 250, Neg. LLF: 78.46290722968322
Iteration: 18, Func. Count: 264, Neg. LLF: 78.4629009641944
Iteration: 19, Func. Count: 278, Neg. LLF: 78.46290029481523
Optimization terminated successfully (Exit mode 0)
Current function value: 78.46290029481523
Iterations: 19
Function evaluations: 278
Gradient evaluations: 19
Iteration: 1, Func. Count: 16, Neg. LLF: 323.60464070936695
Iteration: 2, Func. Count: 33, Neg. LLF: 4678327.213517452
Iteration: 3, Func. Count: 49, Neg. LLF: 433.83173417216386
Iteration: 4, Func. Count: 65, Neg. LLF: 118.28154925028613
Iteration: 5, Func. Count: 81, Neg. LLF: 93.2171101062172
Iteration: 6, Func. Count: 97, Neg. LLF: 84.32390820235094
Iteration: 7, Func. Count: 113, Neg. LLF: 1730.4290839740208
Iteration: 8, Func. Count: 129, Neg. LLF: 80.56290556092321
Iteration: 9, Func. Count: 145, Neg. LLF: 79.22131664006776
Iteration: 10, Func. Count: 160, Neg. LLF: 81.54724138203403
Iteration: 11, Func. Count: 176, Neg. LLF: 79.41598604299236
Iteration: 12, Func. Count: 192, Neg. LLF: 79.38612994680591
Iteration: 13, Func. Count: 208, Neg. LLF: 78.86740101584992
Iteration: 14, Func. Count: 223, Neg. LLF: 78.63009160074542
Iteration: 15, Func. Count: 238, Neg. LLF: 78.52822900908536
Iteration: 16, Func. Count: 253, Neg. LLF: 78.47592471650205
Iteration: 17, Func. Count: 268, Neg. LLF: 78.47180940700417
Iteration: 18, Func. Count: 283, Neg. LLF: 78.46777313025126
Iteration: 19, Func. Count: 298, Neg. LLF: 78.46360054195956
Iteration: 20, Func. Count: 313, Neg. LLF: 78.46291415216515
Iteration: 21, Func. Count: 328, Neg. LLF: 78.46290090032936
Iteration: 22, Func. Count: 343, Neg. LLF: 78.46290021902746
Optimization terminated successfully (Exit mode 0)
Current function value: 78.46290021902746
Iterations: 22
Function evaluations: 343
Gradient evaluations: 22
Iteration: 1, Func. Count: 7, Neg. LLF: 104.11366490049375
Iteration: 2, Func. Count: 15, Neg. LLF: 398.8787361205127
Iteration: 3, Func. Count: 22, Neg. LLF: 136.57754071173667
Iteration: 4, Func. Count: 29, Neg. LLF: 147.92043145604106
Iteration: 5, Func. Count: 36, Neg. LLF: 90.51625326440015
Iteration: 6, Func. Count: 43, Neg. LLF: 101.73887546355292
Iteration: 7, Func. Count: 50, Neg. LLF: 92.29043856875683
Iteration: 8, Func. Count: 57, Neg. LLF: 112.61939275547287
Iteration: 9, Func. Count: 64, Neg. LLF: 94.79615755232393
Iteration: 10, Func. Count: 71, Neg. LLF: 97.28783496370454
Iteration: 11, Func. Count: 78, Neg. LLF: 88.53547431810547
Iteration: 12, Func. Count: 85, Neg. LLF: 81.27932420057654
Iteration: 13, Func. Count: 92, Neg. LLF: 80.55716116478663
Iteration: 14, Func. Count: 99, Neg. LLF: 79.82086033733574
Iteration: 15, Func. Count: 105, Neg. LLF: 79.79210972490753
Iteration: 16, Func. Count: 111, Neg. LLF: 79.78841290533221
Iteration: 17, Func. Count: 117, Neg. LLF: 79.78835364644074
Iteration: 18, Func. Count: 122, Neg. LLF: 79.7883536446448
Optimization terminated successfully (Exit mode 0)
Current function value: 79.78835364644074
Iterations: 18
Function evaluations: 122
Gradient evaluations: 18
Iteration: 1, Func. Count: 5, Neg. LLF: 126.06419629959282
Iteration: 2, Func. Count: 12, Neg. LLF: 99.13453608907169
Iteration: 3, Func. Count: 17, Neg. LLF: 94.10592144869337
Iteration: 4, Func. Count: 21, Neg. LLF: 94.4219482425873
Iteration: 5, Func. Count: 26, Neg. LLF: 93.78960945091583
Iteration: 6, Func. Count: 30, Neg. LLF: 93.78774976565359
Iteration: 7, Func. Count: 34, Neg. LLF: 93.78773816571254
Iteration: 8, Func. Count: 37, Neg. LLF: 93.78773817116266
Optimization terminated successfully (Exit mode 0)
Current function value: 93.78773816571254
Iterations: 8
Function evaluations: 37
Gradient evaluations: 8
Iteration: 1, Func. Count: 6, Neg. LLF: 124.6045561100216
Iteration: 2, Func. Count: 17, Neg. LLF: 828.4073434213426
Iteration: 3, Func. Count: 23, Neg. LLF: 195.28747779044485
Iteration: 4, Func. Count: 30, Neg. LLF: 85.72575879540712
Iteration: 5, Func. Count: 35, Neg. LLF: 85.65555418107719
Iteration: 6, Func. Count: 40, Neg. LLF: 85.65031170486557
Iteration: 7, Func. Count: 45, Neg. LLF: 85.64855433350533
Iteration: 8, Func. Count: 50, Neg. LLF: 85.64839223368169
Iteration: 9, Func. Count: 55, Neg. LLF: 85.6483906419747
Iteration: 10, Func. Count: 59, Neg. LLF: 85.64839041629524
Optimization terminated successfully (Exit mode 0)
Current function value: 85.6483906419747
Iterations: 10
Function evaluations: 59
Gradient evaluations: 10
Iteration: 1, Func. Count: 7, Neg. LLF: 151.18681597741266
Iteration: 2, Func. Count: 20, Neg. LLF: 839.0408959531653
Iteration: 3, Func. Count: 27, Neg. LLF: 192.64738248167288
Iteration: 4, Func. Count: 34, Neg. LLF: 85.68218609840143
Iteration: 5, Func. Count: 40, Neg. LLF: 85.66672341374583
Iteration: 6, Func. Count: 46, Neg. LLF: 85.65280246709128
Iteration: 7, Func. Count: 52, Neg. LLF: 85.64904469637419
Iteration: 8, Func. Count: 58, Neg. LLF: 85.64852534646036
Iteration: 9, Func. Count: 64, Neg. LLF: 85.64839663536604
Iteration: 10, Func. Count: 70, Neg. LLF: 85.64839070045547
Iteration: 11, Func. Count: 75, Neg. LLF: 85.64839051480539
Optimization terminated successfully (Exit mode 0)
Current function value: 85.64839070045547
Iterations: 11
Function evaluations: 75
Gradient evaluations: 11
Iteration: 1, Func. Count: 8, Neg. LLF: 103.00009757048706
Iteration: 2, Func. Count: 19, Neg. LLF: 7291.389034563031
Iteration: 3, Func. Count: 27, Neg. LLF: 93.3882578531396
Iteration: 4, Func. Count: 35, Neg. LLF: 86.15360293136888
Iteration: 5, Func. Count: 42, Neg. LLF: 103.4601096984251
Iteration: 6, Func. Count: 50, Neg. LLF: 85.7002129760988
Iteration: 7, Func. Count: 57, Neg. LLF: 85.65117171511206
Iteration: 8, Func. Count: 64, Neg. LLF: 85.64871094896968
Iteration: 9, Func. Count: 71, Neg. LLF: 85.64841384696368
Iteration: 10, Func. Count: 78, Neg. LLF: 85.64839071673175
Iteration: 11, Func. Count: 84, Neg. LLF: 85.64839054395853
Optimization terminated successfully (Exit mode 0)
Current function value: 85.64839071673175
Iterations: 11
Function evaluations: 84
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 114.67892229418383
Iteration: 2, Func. Count: 21, Neg. LLF: 507.6246662156885
Iteration: 3, Func. Count: 30, Neg. LLF: 128.35263687892638
Iteration: 4, Func. Count: 39, Neg. LLF: 89.46750896859174
Iteration: 5, Func. Count: 48, Neg. LLF: 87.48043168915642
Iteration: 6, Func. Count: 56, Neg. LLF: 95.59068247547067
Iteration: 7, Func. Count: 65, Neg. LLF: 92.40498384425413
Iteration: 8, Func. Count: 74, Neg. LLF: 86.2530876789793
Iteration: 9, Func. Count: 83, Neg. LLF: 85.65751025608229
Iteration: 10, Func. Count: 91, Neg. LLF: 85.65005128518814
Iteration: 11, Func. Count: 99, Neg. LLF: 85.64856416162552
Iteration: 12, Func. Count: 107, Neg. LLF: 85.64840266454115
Iteration: 13, Func. Count: 115, Neg. LLF: 85.64839066055225
Iteration: 14, Func. Count: 122, Neg. LLF: 85.6483904908186
Optimization terminated successfully (Exit mode 0)
Current function value: 85.64839066055225
Iterations: 14
Function evaluations: 122
Gradient evaluations: 14
Iteration: 1, Func. Count: 6, Neg. LLF: 136.5252646286732
Iteration: 2, Func. Count: 14, Neg. LLF: 594.402171991216
Iteration: 3, Func. Count: 20, Neg. LLF: 7990001.332756059
Iteration: 4, Func. Count: 26, Neg. LLF: 91.08545031341782
Iteration: 5, Func. Count: 32, Neg. LLF: 98.34417060215956
Iteration: 6, Func. Count: 39, Neg. LLF: 90.32116980261668
Iteration: 7, Func. Count: 44, Neg. LLF: 90.29864901306146
Iteration: 8, Func. Count: 49, Neg. LLF: 90.25856765440771
Iteration: 9, Func. Count: 54, Neg. LLF: 90.25041145797618
Iteration: 10, Func. Count: 59, Neg. LLF: 90.24887298354462
Iteration: 11, Func. Count: 64, Neg. LLF: 90.2488339167149
Iteration: 12, Func. Count: 69, Neg. LLF: 90.24883264164222
Iteration: 13, Func. Count: 73, Neg. LLF: 90.24883264164342
Optimization terminated successfully (Exit mode 0)
Current function value: 90.24883264164222
Iterations: 13
Function evaluations: 73
Gradient evaluations: 13
Iteration: 1, Func. Count: 7, Neg. LLF: 116.05311103536953
Iteration: 2, Func. Count: 18, Neg. LLF: 6621.916693805053
Iteration: 3, Func. Count: 25, Neg. LLF: 4439767.423785183
Iteration: 4, Func. Count: 33, Neg. LLF: 84.03530172902049
Iteration: 5, Func. Count: 39, Neg. LLF: 85.40582286306513
Iteration: 6, Func. Count: 46, Neg. LLF: 83.95036618174704
Iteration: 7, Func. Count: 52, Neg. LLF: 83.94319997424226
Iteration: 8, Func. Count: 58, Neg. LLF: 83.94234349639339
Iteration: 9, Func. Count: 64, Neg. LLF: 83.94223244704204
Iteration: 10, Func. Count: 70, Neg. LLF: 83.94223086265444
Iteration: 11, Func. Count: 75, Neg. LLF: 83.9422306471017
Optimization terminated successfully (Exit mode 0)
Current function value: 83.94223086265444
Iterations: 11
Function evaluations: 75
Gradient evaluations: 11
Iteration: 1, Func. Count: 8, Neg. LLF: 146.05833437284446
Iteration: 2, Func. Count: 21, Neg. LLF: 118680420.41782027
Iteration: 3, Func. Count: 29, Neg. LLF: 5859308.223320835
Iteration: 4, Func. Count: 37, Neg. LLF: 84.16215951089515
Iteration: 5, Func. Count: 44, Neg. LLF: 85.32848448503465
Iteration: 6, Func. Count: 53, Neg. LLF: 85.09311350798933
Iteration: 7, Func. Count: 61, Neg. LLF: 83.48221200679254
Iteration: 8, Func. Count: 68, Neg. LLF: 83.97346352809762
Iteration: 9, Func. Count: 77, Neg. LLF: 83.08921565224738
Iteration: 10, Func. Count: 84, Neg. LLF: 83.01271539054258
Iteration: 11, Func. Count: 91, Neg. LLF: 83.00137538094769
Iteration: 12, Func. Count: 98, Neg. LLF: 82.99926197310833
Iteration: 13, Func. Count: 105, Neg. LLF: 82.99862555147159
Iteration: 14, Func. Count: 112, Neg. LLF: 82.99852472561683
Iteration: 15, Func. Count: 119, Neg. LLF: 82.99852244782902
Iteration: 16, Func. Count: 125, Neg. LLF: 82.99852230932004
Optimization terminated successfully (Exit mode 0)
Current function value: 82.99852244782902
Iterations: 16
Function evaluations: 125
Gradient evaluations: 16
Iteration: 1, Func. Count: 9, Neg. LLF: 11966619.264088126
Iteration: 2, Func. Count: 18, Neg. LLF: 62158164.184740245
Iteration: 3, Func. Count: 28, Neg. LLF: 93.74314679426257
Iteration: 4, Func. Count: 37, Neg. LLF: 84.72520908289356
Iteration: 5, Func. Count: 46, Neg. LLF: 94.33695696476143
Iteration: 6, Func. Count: 55, Neg. LLF: 84.44794381493234
Iteration: 7, Func. Count: 64, Neg. LLF: 83.80803786734296
Iteration: 8, Func. Count: 73, Neg. LLF: 83.43878026279998
Iteration: 9, Func. Count: 81, Neg. LLF: 83.40348771861595
Iteration: 10, Func. Count: 89, Neg. LLF: 83.38362521670865
Iteration: 11, Func. Count: 97, Neg. LLF: 83.37442183540854
Iteration: 12, Func. Count: 105, Neg. LLF: 83.38730104289522
Iteration: 13, Func. Count: 114, Neg. LLF: 83.37386312287151
Iteration: 14, Func. Count: 122, Neg. LLF: 83.37384842743276
Iteration: 15, Func. Count: 129, Neg. LLF: 83.37384827069843
Optimization terminated successfully (Exit mode 0)
Current function value: 83.37384842743276
Iterations: 15
Function evaluations: 129
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 98.42469169009459
Iteration: 2, Func. Count: 23, Neg. LLF: 210862582.57007945
Iteration: 3, Func. Count: 33, Neg. LLF: 9183401.519678542
Iteration: 4, Func. Count: 43, Neg. LLF: 87.24503396543923
Iteration: 5, Func. Count: 53, Neg. LLF: 85.85024860658228
Iteration: 6, Func. Count: 63, Neg. LLF: 85.45715378307654
Iteration: 7, Func. Count: 73, Neg. LLF: 133.96137529226385
Iteration: 8, Func. Count: 83, Neg. LLF: 83.93605777336691
Iteration: 9, Func. Count: 93, Neg. LLF: 82.65307299945924
Iteration: 10, Func. Count: 102, Neg. LLF: 83.12564842468149
Iteration: 11, Func. Count: 112, Neg. LLF: 89.13810569346158
Iteration: 12, Func. Count: 122, Neg. LLF: 82.41200235387845
Iteration: 13, Func. Count: 131, Neg. LLF: 82.40431100872303
Iteration: 14, Func. Count: 140, Neg. LLF: 82.40205591163138
Iteration: 15, Func. Count: 149, Neg. LLF: 82.40194962674708
Iteration: 16, Func. Count: 158, Neg. LLF: 82.40194842341245
Iteration: 17, Func. Count: 166, Neg. LLF: 82.4019483095758
Optimization terminated successfully (Exit mode 0)
Current function value: 82.40194842341245
Iterations: 17
Function evaluations: 166
Gradient evaluations: 17
Iteration: 1, Func. Count: 7, Neg. LLF: 135.232484262242
Iteration: 2, Func. Count: 16, Neg. LLF: 333146409.79754233
Iteration: 3, Func. Count: 23, Neg. LLF: 4593853.9977610195
Iteration: 4, Func. Count: 30, Neg. LLF: 91.49646803383564
Iteration: 5, Func. Count: 37, Neg. LLF: 90.97404568653558
Iteration: 6, Func. Count: 44, Neg. LLF: 90.35272404536691
Iteration: 7, Func. Count: 50, Neg. LLF: 90.49610443422584
Iteration: 8, Func. Count: 57, Neg. LLF: 90.356081398174
Iteration: 9, Func. Count: 64, Neg. LLF: 90.30286926310265
Iteration: 10, Func. Count: 70, Neg. LLF: 90.27128244317794
Iteration: 11, Func. Count: 76, Neg. LLF: 90.2673376249087
Iteration: 12, Func. Count: 82, Neg. LLF: 90.26481272928014
Iteration: 13, Func. Count: 88, Neg. LLF: 90.25923149144671
Iteration: 14, Func. Count: 94, Neg. LLF: 90.24910523054812
Iteration: 15, Func. Count: 100, Neg. LLF: 90.24895523839324
Iteration: 16, Func. Count: 106, Neg. LLF: 90.24886179916902
Iteration: 17, Func. Count: 112, Neg. LLF: 90.24884023506374
Iteration: 18, Func. Count: 118, Neg. LLF: 90.24883293680683
Iteration: 19, Func. Count: 123, Neg. LLF: 90.2488329471386
Optimization terminated successfully (Exit mode 0)
Current function value: 90.24883293680683
Iterations: 19
Function evaluations: 123
Gradient evaluations: 19
Iteration: 1, Func. Count: 8, Neg. LLF: 128.6217766835618
Iteration: 2, Func. Count: 21, Neg. LLF: 81155619.16688743
Iteration: 3, Func. Count: 29, Neg. LLF: 4329324.113490228
Iteration: 4, Func. Count: 38, Neg. LLF: 84.0620556849192
Iteration: 5, Func. Count: 45, Neg. LLF: 86.04864796390235
Iteration: 6, Func. Count: 54, Neg. LLF: 83.95924612311754
Iteration: 7, Func. Count: 61, Neg. LLF: 83.94611757528394
Iteration: 8, Func. Count: 68, Neg. LLF: 83.94231451917857
Iteration: 9, Func. Count: 75, Neg. LLF: 83.94223608710166
Iteration: 10, Func. Count: 82, Neg. LLF: 83.94223099875339
Iteration: 11, Func. Count: 88, Neg. LLF: 83.94223078316293
Optimization terminated successfully (Exit mode 0)
Current function value: 83.94223099875339
Iterations: 11
Function evaluations: 88
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 151.86944886485642
Iteration: 2, Func. Count: 23, Neg. LLF: 132775338.78856535
Iteration: 3, Func. Count: 32, Neg. LLF: 6131256.803127258
Iteration: 4, Func. Count: 41, Neg. LLF: 85.02315635678673
Iteration: 5, Func. Count: 50, Neg. LLF: 84.38780326849468
Iteration: 6, Func. Count: 59, Neg. LLF: 83.06559056776965
Iteration: 7, Func. Count: 67, Neg. LLF: 83.27974247193653
Iteration: 8, Func. Count: 76, Neg. LLF: 83.30748964690135
Iteration: 9, Func. Count: 85, Neg. LLF: 82.77337884517277
Iteration: 10, Func. Count: 93, Neg. LLF: 82.77026086267247
Iteration: 11, Func. Count: 101, Neg. LLF: 82.76896753694558
Iteration: 12, Func. Count: 109, Neg. LLF: 82.76878317924165
Iteration: 13, Func. Count: 117, Neg. LLF: 82.7686890863804
Iteration: 14, Func. Count: 125, Neg. LLF: 82.76868558068341
Iteration: 15, Func. Count: 133, Neg. LLF: 82.7686838946706
Iteration: 16, Func. Count: 141, Neg. LLF: 82.7686839337513
Optimization terminated successfully (Exit mode 0)
Current function value: 82.76868389470266
Iterations: 16
Function evaluations: 151
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 11966504.029557897
Iteration: 2, Func. Count: 20, Neg. LLF: 57947813.062061846
Iteration: 3, Func. Count: 30, Neg. LLF: 20587527.71781392
Iteration: 4, Func. Count: 40, Neg. LLF: 86.12726393705401
Iteration: 5, Func. Count: 50, Neg. LLF: 90.71134884558595
Iteration: 6, Func. Count: 61, Neg. LLF: 83.78577290549258
Iteration: 7, Func. Count: 70, Neg. LLF: 90.72438733832713
Iteration: 8, Func. Count: 80, Neg. LLF: 88.25776583125989
Iteration: 9, Func. Count: 90, Neg. LLF: 86.23202657124875
Iteration: 10, Func. Count: 100, Neg. LLF: 83.35695203552837
Iteration: 11, Func. Count: 109, Neg. LLF: 83.31921879082272
Iteration: 12, Func. Count: 118, Neg. LLF: 83.3175491811884
Iteration: 13, Func. Count: 127, Neg. LLF: 83.3172470172645
Iteration: 14, Func. Count: 136, Neg. LLF: 83.3172317255569
Iteration: 15, Func. Count: 144, Neg. LLF: 83.31723161731105
Optimization terminated successfully (Exit mode 0)
Current function value: 83.3172317255569
Iterations: 15
Function evaluations: 144
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 99.86355779006303
Iteration: 2, Func. Count: 25, Neg. LLF: 222559032.72721595
Iteration: 3, Func. Count: 36, Neg. LLF: 6830313.339361848
Iteration: 4, Func. Count: 47, Neg. LLF: 6803762.283631311
Iteration: 5, Func. Count: 58, Neg. LLF: 92.18268224500072
Iteration: 6, Func. Count: 69, Neg. LLF: 84.10843481074778
Iteration: 7, Func. Count: 79, Neg. LLF: 87.10775969143806
Iteration: 8, Func. Count: 91, Neg. LLF: 85.02199513575924
Iteration: 9, Func. Count: 102, Neg. LLF: 83.01470551279277
Iteration: 10, Func. Count: 113, Neg. LLF: 87.44376487125992
Iteration: 11, Func. Count: 124, Neg. LLF: 82.96961461303198
Iteration: 12, Func. Count: 135, Neg. LLF: 82.12620552494849
Iteration: 13, Func. Count: 145, Neg. LLF: 82.13291216211947
Iteration: 14, Func. Count: 156, Neg. LLF: 82.14045027445094
Iteration: 15, Func. Count: 167, Neg. LLF: 82.09215815496808
Iteration: 16, Func. Count: 177, Neg. LLF: 82.0918583640341
Iteration: 17, Func. Count: 187, Neg. LLF: 82.09182178617077
Iteration: 18, Func. Count: 197, Neg. LLF: 82.09181607702084
Iteration: 19, Func. Count: 207, Neg. LLF: 82.09181513368061
Optimization terminated successfully (Exit mode 0)
Current function value: 82.09181513368061
Iterations: 19
Function evaluations: 207
Gradient evaluations: 19
Iteration: 1, Func. Count: 8, Neg. LLF: 132.04132723977116
Iteration: 2, Func. Count: 18, Neg. LLF: 367125889.6413192
Iteration: 3, Func. Count: 26, Neg. LLF: 4996911.915447028
Iteration: 4, Func. Count: 34, Neg. LLF: 2440685.4791643163
Iteration: 5, Func. Count: 42, Neg. LLF: 1115358.7567925768
Iteration: 6, Func. Count: 50, Neg. LLF: 100.27919121827591
Iteration: 7, Func. Count: 58, Neg. LLF: 92.55103401350803
Iteration: 8, Func. Count: 66, Neg. LLF: 90.40306481490116
Iteration: 9, Func. Count: 74, Neg. LLF: 89.1108309392204
Iteration: 10, Func. Count: 82, Neg. LLF: 88.75746103894257
Iteration: 11, Func. Count: 89, Neg. LLF: 88.54712176827081
Iteration: 12, Func. Count: 96, Neg. LLF: 88.38305782644204
Iteration: 13, Func. Count: 103, Neg. LLF: 88.36535634645765
Iteration: 14, Func. Count: 110, Neg. LLF: 88.35254361501077
Iteration: 15, Func. Count: 117, Neg. LLF: 88.3482144258883
Iteration: 16, Func. Count: 124, Neg. LLF: 88.34745884121209
Iteration: 17, Func. Count: 131, Neg. LLF: 88.34742413102708
Iteration: 18, Func. Count: 138, Neg. LLF: 88.34742211305058
Iteration: 19, Func. Count: 144, Neg. LLF: 88.34742211304686
Optimization terminated successfully (Exit mode 0)
Current function value: 88.34742211305058
Iterations: 19
Function evaluations: 144
Gradient evaluations: 19
Iteration: 1, Func. Count: 9, Neg. LLF: 139.0967183078466
Iteration: 2, Func. Count: 24, Neg. LLF: 115746451.41055691
Iteration: 3, Func. Count: 33, Neg. LLF: 3940806.865151508
Iteration: 4, Func. Count: 42, Neg. LLF: 84.13137289796944
Iteration: 5, Func. Count: 50, Neg. LLF: 84.11965884420776
Iteration: 6, Func. Count: 59, Neg. LLF: 86.49729919250024
Iteration: 7, Func. Count: 68, Neg. LLF: 83.95268769388265
Iteration: 8, Func. Count: 76, Neg. LLF: 83.94326367180703
Iteration: 9, Func. Count: 84, Neg. LLF: 83.942326097976
Iteration: 10, Func. Count: 92, Neg. LLF: 83.94223091109728
Iteration: 11, Func. Count: 99, Neg. LLF: 83.9422306956212
Optimization terminated successfully (Exit mode 0)
Current function value: 83.94223091109728
Iterations: 11
Function evaluations: 99
Gradient evaluations: 11
Iteration: 1, Func. Count: 10, Neg. LLF: 21000756.037583575
Iteration: 2, Func. Count: 20, Neg. LLF: 126.84293429441158
Iteration: 3, Func. Count: 31, Neg. LLF: 85.31674354228073
Iteration: 4, Func. Count: 40, Neg. LLF: 139.24662267175987
Iteration: 5, Func. Count: 51, Neg. LLF: 93.11607549080777
Iteration: 6, Func. Count: 61, Neg. LLF: 84.27383228921101
Iteration: 7, Func. Count: 71, Neg. LLF: 83.11312599855977
Iteration: 8, Func. Count: 80, Neg. LLF: 89.5115411599744
Iteration: 9, Func. Count: 90, Neg. LLF: 82.9611877866006
Iteration: 10, Func. Count: 100, Neg. LLF: 82.87808001050772
Iteration: 11, Func. Count: 110, Neg. LLF: 82.76951058459996
Iteration: 12, Func. Count: 119, Neg. LLF: 82.76898868518599
Iteration: 13, Func. Count: 128, Neg. LLF: 82.7688381154718
Iteration: 14, Func. Count: 137, Neg. LLF: 82.76873399342999
Iteration: 15, Func. Count: 146, Neg. LLF: 82.7686885961273
Iteration: 16, Func. Count: 155, Neg. LLF: 82.76868499242673
Iteration: 17, Func. Count: 163, Neg. LLF: 82.76868485018602
Optimization terminated successfully (Exit mode 0)
Current function value: 82.76868499242673
Iterations: 17
Function evaluations: 163
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 91.0532968032853
Iteration: 2, Func. Count: 23, Neg. LLF: 242719553.98590255
Iteration: 3, Func. Count: 34, Neg. LLF: 3454859.528939752
Iteration: 4, Func. Count: 45, Neg. LLF: 93.63286647219721
Iteration: 5, Func. Count: 56, Neg. LLF: 86.7543830412997
Iteration: 6, Func. Count: 67, Neg. LLF: 90.24729612849126
Iteration: 7, Func. Count: 78, Neg. LLF: 86.0633061206553
Iteration: 8, Func. Count: 89, Neg. LLF: 83.58324068043011
Iteration: 9, Func. Count: 100, Neg. LLF: 83.42246314987305
Iteration: 10, Func. Count: 111, Neg. LLF: 84.29544266201229
Iteration: 11, Func. Count: 122, Neg. LLF: 83.2370174960927
Iteration: 12, Func. Count: 132, Neg. LLF: 83.22887562938024
Iteration: 13, Func. Count: 142, Neg. LLF: 83.22806144174709
Iteration: 14, Func. Count: 152, Neg. LLF: 83.22784999898037
Iteration: 15, Func. Count: 162, Neg. LLF: 83.22783537754255
Iteration: 16, Func. Count: 171, Neg. LLF: 83.22783528338898
Optimization terminated successfully (Exit mode 0)
Current function value: 83.22783537754255
Iterations: 16
Function evaluations: 171
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 104.87840433502731
Iteration: 2, Func. Count: 27, Neg. LLF: 214618389.24899065
Iteration: 3, Func. Count: 39, Neg. LLF: 6852440.881500638
Iteration: 4, Func. Count: 51, Neg. LLF: 3916332.327240553
Iteration: 5, Func. Count: 63, Neg. LLF: 95.11232105418954
Iteration: 6, Func. Count: 75, Neg. LLF: 87.5208942180303
Iteration: 7, Func. Count: 87, Neg. LLF: 113.68409953389136
Iteration: 8, Func. Count: 99, Neg. LLF: 110.36053298980585
Iteration: 9, Func. Count: 111, Neg. LLF: 82.62281478458983
Iteration: 10, Func. Count: 122, Neg. LLF: 103.54329791667763
Iteration: 11, Func. Count: 134, Neg. LLF: 82.46137871571196
Iteration: 12, Func. Count: 146, Neg. LLF: 82.96760714929026
Iteration: 13, Func. Count: 158, Neg. LLF: 82.14044474541322
Iteration: 14, Func. Count: 169, Neg. LLF: 82.11660442423
Iteration: 15, Func. Count: 180, Neg. LLF: 82.0959504702368
Iteration: 16, Func. Count: 191, Neg. LLF: 82.09211361414353
Iteration: 17, Func. Count: 202, Neg. LLF: 82.09182487612881
Iteration: 18, Func. Count: 213, Neg. LLF: 82.0918155990957
Iteration: 19, Func. Count: 224, Neg. LLF: 82.09181496506862
Optimization terminated successfully (Exit mode 0)
Current function value: 82.09181496506862
Iterations: 19
Function evaluations: 224
Gradient evaluations: 19
Iteration: 1, Func. Count: 5, Neg. LLF: 125.68163629738368
Iteration: 2, Func. Count: 12, Neg. LLF: 120.87692001693584
Iteration: 3, Func. Count: 17, Neg. LLF: 93.79998202673933
Iteration: 4, Func. Count: 21, Neg. LLF: 94.24720998539993
Iteration: 5, Func. Count: 26, Neg. LLF: 93.69300704281423
Iteration: 6, Func. Count: 31, Neg. LLF: 93.63669928669437
Iteration: 7, Func. Count: 35, Neg. LLF: 93.63357450716508
Iteration: 8, Func. Count: 39, Neg. LLF: 93.63353927366619
Iteration: 9, Func. Count: 42, Neg. LLF: 93.63353927357709
Optimization terminated successfully (Exit mode 0)
Current function value: 93.63353927366619
Iterations: 9
Function evaluations: 42
Gradient evaluations: 9
Iteration: 1, Func. Count: 6, Neg. LLF: 145.09646476330508
Iteration: 2, Func. Count: 17, Neg. LLF: 220.52819582972776
Iteration: 3, Func. Count: 24, Neg. LLF: 159.43073709519348
Iteration: 4, Func. Count: 31, Neg. LLF: 84.83227862033559
Iteration: 5, Func. Count: 36, Neg. LLF: 84.83186493438993
Iteration: 6, Func. Count: 41, Neg. LLF: 84.83329925807304
Iteration: 7, Func. Count: 47, Neg. LLF: 84.83178332969896
Iteration: 8, Func. Count: 51, Neg. LLF: 84.83178325385703
Optimization terminated successfully (Exit mode 0)
Current function value: 84.83178332969896
Iterations: 8
Function evaluations: 51
Gradient evaluations: 8
Iteration: 1, Func. Count: 7, Neg. LLF: 146.99352344690445
Iteration: 2, Func. Count: 19, Neg. LLF: 325.02861006059504
Iteration: 3, Func. Count: 27, Neg. LLF: 178.7122429836462
Iteration: 4, Func. Count: 34, Neg. LLF: 85.04953021668213
Iteration: 5, Func. Count: 40, Neg. LLF: 84.83895440165242
Iteration: 6, Func. Count: 46, Neg. LLF: 84.83196863664726
Iteration: 7, Func. Count: 52, Neg. LLF: 84.83178739912388
Iteration: 8, Func. Count: 58, Neg. LLF: 84.83178383327893
Iteration: 9, Func. Count: 63, Neg. LLF: 84.83178379092892
Optimization terminated successfully (Exit mode 0)
Current function value: 84.83178383327893
Iterations: 9
Function evaluations: 63
Gradient evaluations: 9
Iteration: 1, Func. Count: 8, Neg. LLF: 253.43843867177668
Iteration: 2, Func. Count: 17, Neg. LLF: 2240.631941172157
Iteration: 3, Func. Count: 25, Neg. LLF: 94.02255980535028
Iteration: 4, Func. Count: 33, Neg. LLF: 89.47197651572107
Iteration: 5, Func. Count: 41, Neg. LLF: 85.88771267188147
Iteration: 6, Func. Count: 48, Neg. LLF: 88.34910365111884
Iteration: 7, Func. Count: 56, Neg. LLF: 86.01003295062392
Iteration: 8, Func. Count: 64, Neg. LLF: 85.64581165174329
Iteration: 9, Func. Count: 71, Neg. LLF: 85.64219999784389
Iteration: 10, Func. Count: 78, Neg. LLF: 85.64012745089236
Iteration: 11, Func. Count: 85, Neg. LLF: 85.63963550702108
Iteration: 12, Func. Count: 92, Neg. LLF: 85.63960221171041
Iteration: 13, Func. Count: 98, Neg. LLF: 85.63960213579256
Optimization terminated successfully (Exit mode 0)
Current function value: 85.63960221171041
Iterations: 13
Function evaluations: 98
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 114.45897718624366
Iteration: 2, Func. Count: 20, Neg. LLF: 123.33462700956578
Iteration: 3, Func. Count: 29, Neg. LLF: 96.41340459394192
Iteration: 4, Func. Count: 38, Neg. LLF: 90.11328252370963
Iteration: 5, Func. Count: 47, Neg. LLF: 85.9777277138216
Iteration: 6, Func. Count: 55, Neg. LLF: 87.30061587830866
Iteration: 7, Func. Count: 64, Neg. LLF: 86.48253541660715
Iteration: 8, Func. Count: 73, Neg. LLF: 85.40512365346225
Iteration: 9, Func. Count: 81, Neg. LLF: 85.34014465224033
Iteration: 10, Func. Count: 89, Neg. LLF: 85.20729185230915
Iteration: 11, Func. Count: 97, Neg. LLF: 84.96652045431269
Iteration: 12, Func. Count: 105, Neg. LLF: 84.90282024933124
Iteration: 13, Func. Count: 113, Neg. LLF: 84.8470877388329
Iteration: 14, Func. Count: 121, Neg. LLF: 84.83347809654543
Iteration: 15, Func. Count: 129, Neg. LLF: 84.8319780392703
Iteration: 16, Func. Count: 137, Neg. LLF: 84.83178617232693
Iteration: 17, Func. Count: 145, Neg. LLF: 84.83178350082274
Iteration: 18, Func. Count: 152, Neg. LLF: 84.83178351475546
Optimization terminated successfully (Exit mode 0)
Current function value: 84.83178350082274
Iterations: 18
Function evaluations: 152
Gradient evaluations: 18
Iteration: 1, Func. Count: 6, Neg. LLF: 118.8872545872482
Iteration: 2, Func. Count: 14, Neg. LLF: 107.20461974704244
Iteration: 3, Func. Count: 20, Neg. LLF: 93.80553341614664
Iteration: 4, Func. Count: 25, Neg. LLF: 93.91737925682006
Iteration: 5, Func. Count: 31, Neg. LLF: 93.79106724220398
Iteration: 6, Func. Count: 37, Neg. LLF: 93.63625008499532
Iteration: 7, Func. Count: 43, Neg. LLF: 93.5594523686011
Iteration: 8, Func. Count: 48, Neg. LLF: 93.5573627684102
Iteration: 9, Func. Count: 53, Neg. LLF: 93.55729190423042
Iteration: 10, Func. Count: 58, Neg. LLF: 93.55728992687828
Iteration: 11, Func. Count: 63, Neg. LLF: 93.55728933068433
Optimization terminated successfully (Exit mode 0)
Current function value: 93.55728933068433
Iterations: 11
Function evaluations: 63
Gradient evaluations: 11
Iteration: 1, Func. Count: 7, Neg. LLF: 196.57721765894524
Iteration: 2, Func. Count: 18, Neg. LLF: 217.18425108000514
Iteration: 3, Func. Count: 26, Neg. LLF: 86.98250877793276
Iteration: 4, Func. Count: 33, Neg. LLF: 86.97282442664638
Iteration: 5, Func. Count: 40, Neg. LLF: 84.80377709415141
Iteration: 6, Func. Count: 46, Neg. LLF: 84.75049505200639
Iteration: 7, Func. Count: 52, Neg. LLF: 84.744807895973
Iteration: 8, Func. Count: 58, Neg. LLF: 84.74446047841735
Iteration: 9, Func. Count: 64, Neg. LLF: 84.7444531254308
Iteration: 10, Func. Count: 69, Neg. LLF: 84.74445301689639
Optimization terminated successfully (Exit mode 0)
Current function value: 84.7444531254308
Iterations: 10
Function evaluations: 69
Gradient evaluations: 10
Iteration: 1, Func. Count: 8, Neg. LLF: 150.4490985010134
Iteration: 2, Func. Count: 21, Neg. LLF: 214.1018162527845
Iteration: 3, Func. Count: 30, Neg. LLF: 170.26026490090038
Iteration: 4, Func. Count: 38, Neg. LLF: 87.09777740998301
Iteration: 5, Func. Count: 46, Neg. LLF: 84.80332503828382
Iteration: 6, Func. Count: 53, Neg. LLF: 84.74858417608645
Iteration: 7, Func. Count: 60, Neg. LLF: 84.74452276404156
Iteration: 8, Func. Count: 67, Neg. LLF: 84.7444604937549
Iteration: 9, Func. Count: 74, Neg. LLF: 84.74445328812341
Iteration: 10, Func. Count: 80, Neg. LLF: 84.74445321705461
Optimization terminated successfully (Exit mode 0)
Current function value: 84.74445328812341
Iterations: 10
Function evaluations: 80
Gradient evaluations: 10
Iteration: 1, Func. Count: 9, Neg. LLF: 142.01935024357235
Iteration: 2, Func. Count: 19, Neg. LLF: 349.6852044465322
Iteration: 3, Func. Count: 28, Neg. LLF: 135.2044198688606
Iteration: 4, Func. Count: 37, Neg. LLF: 92.3695690896976
Iteration: 5, Func. Count: 47, Neg. LLF: 91.46542969371536
Iteration: 6, Func. Count: 56, Neg. LLF: 87.50197019713738
Iteration: 7, Func. Count: 65, Neg. LLF: 89.62593741247247
Iteration: 8, Func. Count: 74, Neg. LLF: 85.33383214819911
Iteration: 9, Func. Count: 82, Neg. LLF: 85.30570918512878
Iteration: 10, Func. Count: 90, Neg. LLF: 85.30075383405982
Iteration: 11, Func. Count: 98, Neg. LLF: 85.2887787036307
Iteration: 12, Func. Count: 106, Neg. LLF: 85.285965401526
Iteration: 13, Func. Count: 114, Neg. LLF: 85.28362247256092
Iteration: 14, Func. Count: 122, Neg. LLF: 85.28312487304228
Iteration: 15, Func. Count: 130, Neg. LLF: 85.28299108452401
Iteration: 16, Func. Count: 138, Neg. LLF: 85.28294126715923
Iteration: 17, Func. Count: 146, Neg. LLF: 85.28292834918138
Iteration: 18, Func. Count: 154, Neg. LLF: 85.28292536413066
Iteration: 19, Func. Count: 162, Neg. LLF: 85.28292439126355
Optimization terminated successfully (Exit mode 0)
Current function value: 85.28292439126355
Iterations: 19
Function evaluations: 162
Gradient evaluations: 19
Iteration: 1, Func. Count: 10, Neg. LLF: 130.81230378326197
Iteration: 2, Func. Count: 21, Neg. LLF: 97.43409936959114
Iteration: 3, Func. Count: 31, Neg. LLF: 165.11277026358695
Iteration: 4, Func. Count: 41, Neg. LLF: 93.1465603843714
Iteration: 5, Func. Count: 51, Neg. LLF: 88.521546714376
Iteration: 6, Func. Count: 61, Neg. LLF: 88.54998510742743
Iteration: 7, Func. Count: 71, Neg. LLF: 93.28966517716124
Iteration: 8, Func. Count: 81, Neg. LLF: 87.60287931005581
Iteration: 9, Func. Count: 91, Neg. LLF: 85.3288435576368
Iteration: 10, Func. Count: 100, Neg. LLF: 85.3190070319374
Iteration: 11, Func. Count: 109, Neg. LLF: 85.31413609116122
Iteration: 12, Func. Count: 118, Neg. LLF: 85.3094877585685
Iteration: 13, Func. Count: 127, Neg. LLF: 85.29735465353674
Iteration: 14, Func. Count: 136, Neg. LLF: 85.16015964292804
Iteration: 15, Func. Count: 145, Neg. LLF: 84.8761696327412
Iteration: 16, Func. Count: 154, Neg. LLF: 85.14919102722475
Iteration: 17, Func. Count: 164, Neg. LLF: 84.74553696005187
Iteration: 18, Func. Count: 173, Neg. LLF: 84.74449724677457
Iteration: 19, Func. Count: 182, Neg. LLF: 84.74446125884073
Iteration: 20, Func. Count: 191, Neg. LLF: 84.74445329898539
Iteration: 21, Func. Count: 199, Neg. LLF: 84.74445327576362
Optimization terminated successfully (Exit mode 0)
Current function value: 84.74445329898539
Iterations: 21
Function evaluations: 199
Gradient evaluations: 21
Iteration: 1, Func. Count: 7, Neg. LLF: 138.76740600671425
Iteration: 2, Func. Count: 15, Neg. LLF: 230.3535376252342
Iteration: 3, Func. Count: 22, Neg. LLF: 11632150.634315183
Iteration: 4, Func. Count: 29, Neg. LLF: 3743020.896743174
Iteration: 5, Func. Count: 36, Neg. LLF: 97.8662277130872
Iteration: 6, Func. Count: 43, Neg. LLF: 90.22972954999695
Iteration: 7, Func. Count: 50, Neg. LLF: 89.8529738081274
Iteration: 8, Func. Count: 57, Neg. LLF: 104.5419218094992
Iteration: 9, Func. Count: 64, Neg. LLF: 89.64410289669503
Iteration: 10, Func. Count: 70, Neg. LLF: 89.63705764435504
Iteration: 11, Func. Count: 76, Neg. LLF: 89.62712667663887
Iteration: 12, Func. Count: 82, Neg. LLF: 89.62574763258668
Iteration: 13, Func. Count: 88, Neg. LLF: 89.62560511648309
Iteration: 14, Func. Count: 94, Neg. LLF: 89.62560311232734
Iteration: 15, Func. Count: 99, Neg. LLF: 89.62560311233025
Optimization terminated successfully (Exit mode 0)
Current function value: 89.62560311232734
Iterations: 15
Function evaluations: 99
Gradient evaluations: 15
Iteration: 1, Func. Count: 8, Neg. LLF: 153.1771789786768
Iteration: 2, Func. Count: 19, Neg. LLF: 220.89377761655305
Iteration: 3, Func. Count: 28, Neg. LLF: 293.50589153000334
Iteration: 4, Func. Count: 36, Neg. LLF: 94.0338076992544
Iteration: 5, Func. Count: 44, Neg. LLF: 83.03347308607518
Iteration: 6, Func. Count: 51, Neg. LLF: 82.99591768270984
Iteration: 7, Func. Count: 58, Neg. LLF: 82.99482807724164
Iteration: 8, Func. Count: 65, Neg. LLF: 82.99483379873456
Iteration: 9, Func. Count: 73, Neg. LLF: 82.99481372691254
Iteration: 10, Func. Count: 80, Neg. LLF: 82.99481275312858
Optimization terminated successfully (Exit mode 0)
Current function value: 82.99481275312858
Iterations: 10
Function evaluations: 80
Gradient evaluations: 10
Iteration: 1, Func. Count: 9, Neg. LLF: 139.66117916833653
Iteration: 2, Func. Count: 22, Neg. LLF: 358624929.5994386
Iteration: 3, Func. Count: 32, Neg. LLF: 11445310.955999522
Iteration: 4, Func. Count: 41, Neg. LLF: 85.2543366491942
Iteration: 5, Func. Count: 50, Neg. LLF: 83.72168623358777
Iteration: 6, Func. Count: 59, Neg. LLF: 83.18896001860531
Iteration: 7, Func. Count: 68, Neg. LLF: 82.86341278747443
Iteration: 8, Func. Count: 76, Neg. LLF: 82.85784193669193
Iteration: 9, Func. Count: 84, Neg. LLF: 82.85242578133037
Iteration: 10, Func. Count: 92, Neg. LLF: 82.85043815176883
Iteration: 11, Func. Count: 100, Neg. LLF: 82.85036452110427
Iteration: 12, Func. Count: 108, Neg. LLF: 82.85036093477896
Iteration: 13, Func. Count: 115, Neg. LLF: 82.85036081464199
Optimization terminated successfully (Exit mode 0)
Current function value: 82.85036093477896
Iterations: 13
Function evaluations: 115
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 131.4523516835326
Iteration: 2, Func. Count: 25, Neg. LLF: 352516143.638231
Iteration: 3, Func. Count: 36, Neg. LLF: 8018413.608921658
Iteration: 4, Func. Count: 46, Neg. LLF: 83.85536752650346
Iteration: 5, Func. Count: 55, Neg. LLF: 98.3594484036119
Iteration: 6, Func. Count: 65, Neg. LLF: 124.33370133890686
Iteration: 7, Func. Count: 76, Neg. LLF: 84.60233587404093
Iteration: 8, Func. Count: 86, Neg. LLF: 85.4854344398972
Iteration: 9, Func. Count: 96, Neg. LLF: 82.29324216328037
Iteration: 10, Func. Count: 105, Neg. LLF: 82.29949356486304
Iteration: 11, Func. Count: 115, Neg. LLF: 82.27158439127457
Iteration: 12, Func. Count: 124, Neg. LLF: 82.2680941490258
Iteration: 13, Func. Count: 133, Neg. LLF: 82.26790441106306
Iteration: 14, Func. Count: 142, Neg. LLF: 82.26789644407607
Iteration: 15, Func. Count: 150, Neg. LLF: 82.26789634115156
Optimization terminated successfully (Exit mode 0)
Current function value: 82.26789644407607
Iterations: 15
Function evaluations: 150
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 92653669.08482948
Iteration: 2, Func. Count: 22, Neg. LLF: 6532233.475487511
Iteration: 3, Func. Count: 33, Neg. LLF: 120.17892855771889
Iteration: 4, Func. Count: 44, Neg. LLF: 92.28932278004748
Iteration: 5, Func. Count: 55, Neg. LLF: 82.89055119546288
Iteration: 6, Func. Count: 65, Neg. LLF: 84.14879581465885
Iteration: 7, Func. Count: 76, Neg. LLF: 86.35162339223884
Iteration: 8, Func. Count: 88, Neg. LLF: 83.13333983995093
Iteration: 9, Func. Count: 99, Neg. LLF: 82.44825653063401
Iteration: 10, Func. Count: 110, Neg. LLF: 82.26888090826193
Iteration: 11, Func. Count: 120, Neg. LLF: 82.2679173071086
Iteration: 12, Func. Count: 130, Neg. LLF: 82.267897204208
Iteration: 13, Func. Count: 140, Neg. LLF: 82.26789637895062
Optimization terminated successfully (Exit mode 0)
Current function value: 82.26789637895062
Iterations: 13
Function evaluations: 140
Gradient evaluations: 13
Iteration: 1, Func. Count: 8, Neg. LLF: 126.39778453376358
Iteration: 2, Func. Count: 18, Neg. LLF: 456937860.16922784
Iteration: 3, Func. Count: 27, Neg. LLF: 11804619.449171748
Iteration: 4, Func. Count: 35, Neg. LLF: 100.36356163182107
Iteration: 5, Func. Count: 43, Neg. LLF: 90.7129142560584
Iteration: 6, Func. Count: 51, Neg. LLF: 90.1252372021546
Iteration: 7, Func. Count: 59, Neg. LLF: 94.68989030715542
Iteration: 8, Func. Count: 67, Neg. LLF: 89.67756547505255
Iteration: 9, Func. Count: 74, Neg. LLF: 89.63485323847276
Iteration: 10, Func. Count: 81, Neg. LLF: 89.62640096989544
Iteration: 11, Func. Count: 88, Neg. LLF: 89.62562959219312
Iteration: 12, Func. Count: 95, Neg. LLF: 89.6256037574047
Iteration: 13, Func. Count: 102, Neg. LLF: 89.62560294580678
Optimization terminated successfully (Exit mode 0)
Current function value: 89.62560294580678
Iterations: 13
Function evaluations: 102
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 145.85350311132132
Iteration: 2, Func. Count: 22, Neg. LLF: 249.73707963385877
Iteration: 3, Func. Count: 32, Neg. LLF: 1074.1568856972026
Iteration: 4, Func. Count: 41, Neg. LLF: 96.52595026271091
Iteration: 5, Func. Count: 50, Neg. LLF: 83.04328364165912
Iteration: 6, Func. Count: 58, Neg. LLF: 82.99726362794719
Iteration: 7, Func. Count: 66, Neg. LLF: 82.9949844878385
Iteration: 8, Func. Count: 74, Neg. LLF: 82.99505603718936
Iteration: 9, Func. Count: 83, Neg. LLF: 82.99481319361243
Iteration: 10, Func. Count: 90, Neg. LLF: 82.99481307687844
Optimization terminated successfully (Exit mode 0)
Current function value: 82.99481319361243
Iterations: 10
Function evaluations: 90
Gradient evaluations: 10
Iteration: 1, Func. Count: 10, Neg. LLF: 140.89315730399287
Iteration: 2, Func. Count: 25, Neg. LLF: 448341393.3628738
Iteration: 3, Func. Count: 36, Neg. LLF: 6527162.971091622
Iteration: 4, Func. Count: 46, Neg. LLF: 85.00138238783488
Iteration: 5, Func. Count: 56, Neg. LLF: 82.93671696455769
Iteration: 6, Func. Count: 65, Neg. LLF: 82.86799493384376
Iteration: 7, Func. Count: 74, Neg. LLF: 83.4538191282908
Iteration: 8, Func. Count: 84, Neg. LLF: 82.85212423625107
Iteration: 9, Func. Count: 93, Neg. LLF: 82.85092731267811
Iteration: 10, Func. Count: 102, Neg. LLF: 82.8503710110799
Iteration: 11, Func. Count: 111, Neg. LLF: 82.85036111402482
Iteration: 12, Func. Count: 119, Neg. LLF: 82.85036099399602
Optimization terminated successfully (Exit mode 0)
Current function value: 82.85036111402482
Iterations: 12
Function evaluations: 119
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 136.14201640541157
Iteration: 2, Func. Count: 27, Neg. LLF: 373882815.92358273
Iteration: 3, Func. Count: 39, Neg. LLF: 5065428.7698722165
Iteration: 4, Func. Count: 50, Neg. LLF: 90.45195275492985
Iteration: 5, Func. Count: 61, Neg. LLF: 94.40587383028611
Iteration: 6, Func. Count: 72, Neg. LLF: 83.52309308509982
Iteration: 7, Func. Count: 83, Neg. LLF: 83.12410189728668
Iteration: 8, Func. Count: 94, Neg. LLF: 81.97223022366094
Iteration: 9, Func. Count: 104, Neg. LLF: 82.00475792875642
Iteration: 10, Func. Count: 115, Neg. LLF: 81.95438829809146
Iteration: 11, Func. Count: 126, Neg. LLF: 81.93830567651163
Iteration: 12, Func. Count: 136, Neg. LLF: 81.93703837802025
Iteration: 13, Func. Count: 146, Neg. LLF: 81.93696203933766
Iteration: 14, Func. Count: 156, Neg. LLF: 81.93695652750692
Iteration: 15, Func. Count: 165, Neg. LLF: 81.93695646115994
Optimization terminated successfully (Exit mode 0)
Current function value: 81.93695652750692
Iterations: 15
Function evaluations: 165
Gradient evaluations: 15
Iteration: 1, Func. Count: 12, Neg. LLF: 135943728.77613264
Iteration: 2, Func. Count: 24, Neg. LLF: 6352242.320903732
Iteration: 3, Func. Count: 36, Neg. LLF: 112.67224788250223
Iteration: 4, Func. Count: 48, Neg. LLF: 88.69016872026423
Iteration: 5, Func. Count: 60, Neg. LLF: 92.136631830982
Iteration: 6, Func. Count: 72, Neg. LLF: 83.32195222302553
Iteration: 7, Func. Count: 84, Neg. LLF: 82.9027610585191
Iteration: 8, Func. Count: 96, Neg. LLF: 82.28289474711676
Iteration: 9, Func. Count: 108, Neg. LLF: 82.49036571995191
Iteration: 10, Func. Count: 120, Neg. LLF: 81.94090517183726
Iteration: 11, Func. Count: 131, Neg. LLF: 81.9378137134312
Iteration: 12, Func. Count: 142, Neg. LLF: 81.9369874947019
Iteration: 13, Func. Count: 153, Neg. LLF: 81.93695883081399
Iteration: 14, Func. Count: 164, Neg. LLF: 81.9369565627062
Iteration: 15, Func. Count: 174, Neg. LLF: 81.93695652823399
Optimization terminated successfully (Exit mode 0)
Current function value: 81.9369565627062
Iterations: 15
Function evaluations: 174
Gradient evaluations: 15
Iteration: 1, Func. Count: 9, Neg. LLF: 124.80739566439703
Iteration: 2, Func. Count: 19, Neg. LLF: 5123.722414594138
Iteration: 3, Func. Count: 28, Neg. LLF: 9310707.809584133
Iteration: 4, Func. Count: 37, Neg. LLF: 5057352.075987213
Iteration: 5, Func. Count: 46, Neg. LLF: 159.08340938395463
Iteration: 6, Func. Count: 55, Neg. LLF: 95.85925888692427
Iteration: 7, Func. Count: 64, Neg. LLF: 143.59048943076274
Iteration: 8, Func. Count: 73, Neg. LLF: 90.83069081045983
Iteration: 9, Func. Count: 82, Neg. LLF: 88.55350936158368
Iteration: 10, Func. Count: 91, Neg. LLF: 88.21049044301944
Iteration: 11, Func. Count: 99, Neg. LLF: 88.10280495352467
Iteration: 12, Func. Count: 107, Neg. LLF: 88.0174145783175
Iteration: 13, Func. Count: 115, Neg. LLF: 88.00718945169095
Iteration: 14, Func. Count: 123, Neg. LLF: 88.00195377280794
Iteration: 15, Func. Count: 131, Neg. LLF: 88.00181338375265
Iteration: 16, Func. Count: 139, Neg. LLF: 88.00180074416106
Iteration: 17, Func. Count: 146, Neg. LLF: 88.00180074419637
Optimization terminated successfully (Exit mode 0)
Current function value: 88.00180074416106
Iterations: 17
Function evaluations: 146
Gradient evaluations: 17
Iteration: 1, Func. Count: 10, Neg. LLF: 142.61105132387192
Iteration: 2, Func. Count: 25, Neg. LLF: 377865839.36425805
Iteration: 3, Func. Count: 36, Neg. LLF: 8029947.313344403
Iteration: 4, Func. Count: 46, Neg. LLF: 84.58744010132834
Iteration: 5, Func. Count: 56, Neg. LLF: 83.01624282315142
Iteration: 6, Func. Count: 65, Neg. LLF: 82.99871825958802
Iteration: 7, Func. Count: 74, Neg. LLF: 82.99753103025313
Iteration: 8, Func. Count: 83, Neg. LLF: 82.9949190035292
Iteration: 9, Func. Count: 92, Neg. LLF: 82.99481809219412
Iteration: 10, Func. Count: 101, Neg. LLF: 82.99481279616111
Iteration: 11, Func. Count: 109, Neg. LLF: 82.99481267960653
Optimization terminated successfully (Exit mode 0)
Current function value: 82.99481279616111
Iterations: 11
Function evaluations: 109
Gradient evaluations: 11
Iteration: 1, Func. Count: 11, Neg. LLF: 140.76355445245235
Iteration: 2, Func. Count: 27, Neg. LLF: 2882.038417061211
Iteration: 3, Func. Count: 39, Neg. LLF: 2567688.9426815133
Iteration: 4, Func. Count: 50, Neg. LLF: 84.95649331844598
Iteration: 5, Func. Count: 61, Neg. LLF: 83.07102564376984
Iteration: 6, Func. Count: 71, Neg. LLF: 83.170742359417
Iteration: 7, Func. Count: 82, Neg. LLF: 83.5549960593979
Iteration: 8, Func. Count: 93, Neg. LLF: 82.92121634192371
Iteration: 9, Func. Count: 104, Neg. LLF: 82.85154130797426
Iteration: 10, Func. Count: 114, Neg. LLF: 82.85039128488239
Iteration: 11, Func. Count: 124, Neg. LLF: 82.85036363474126
Iteration: 12, Func. Count: 134, Neg. LLF: 82.85036092512824
Iteration: 13, Func. Count: 143, Neg. LLF: 82.85036080496832
Optimization terminated successfully (Exit mode 0)
Current function value: 82.85036092512824
Iterations: 13
Function evaluations: 143
Gradient evaluations: 13
Iteration: 1, Func. Count: 12, Neg. LLF: 284453303.25027704
Iteration: 2, Func. Count: 25, Neg. LLF: 6675308.541008456
Iteration: 3, Func. Count: 37, Neg. LLF: 86.74582641164642
Iteration: 4, Func. Count: 49, Neg. LLF: 90.39006809513435
Iteration: 5, Func. Count: 61, Neg. LLF: 85.79863645137091
Iteration: 6, Func. Count: 73, Neg. LLF: 82.23512159387104
Iteration: 7, Func. Count: 84, Neg. LLF: 82.22428330636865
Iteration: 8, Func. Count: 96, Neg. LLF: 85.27467149459704
Iteration: 9, Func. Count: 108, Neg. LLF: 81.98560754643275
Iteration: 10, Func. Count: 120, Neg. LLF: 82.27443299082867
Iteration: 11, Func. Count: 132, Neg. LLF: 81.93702967710138
Iteration: 12, Func. Count: 143, Neg. LLF: 81.93695948738008
Iteration: 13, Func. Count: 154, Neg. LLF: 81.93695675695233
Iteration: 14, Func. Count: 164, Neg. LLF: 81.9369566905797
Optimization terminated successfully (Exit mode 0)
Current function value: 81.93695675695233
Iterations: 14
Function evaluations: 164
Gradient evaluations: 14
Iteration: 1, Func. Count: 13, Neg. LLF: 128395794.39686497
Iteration: 2, Func. Count: 26, Neg. LLF: 5747099.930885845
Iteration: 3, Func. Count: 39, Neg. LLF: 114.98836281328309
Iteration: 4, Func. Count: 52, Neg. LLF: 88.70869356567204
Iteration: 5, Func. Count: 65, Neg. LLF: 89.83184217520879
Iteration: 6, Func. Count: 78, Neg. LLF: 82.49011998877471
Iteration: 7, Func. Count: 90, Neg. LLF: 84.12872534687777
Iteration: 8, Func. Count: 103, Neg. LLF: 94.36368215253691
Iteration: 9, Func. Count: 116, Neg. LLF: 82.08456111614801
Iteration: 10, Func. Count: 129, Neg. LLF: 81.94509887931055
Iteration: 11, Func. Count: 141, Neg. LLF: 81.9383289856079
Iteration: 12, Func. Count: 153, Neg. LLF: 81.93714044959997
Iteration: 13, Func. Count: 165, Neg. LLF: 81.93697538030835
Iteration: 14, Func. Count: 177, Neg. LLF: 81.936957138604
Iteration: 15, Func. Count: 189, Neg. LLF: 81.93695655538534
Optimization terminated successfully (Exit mode 0)
Current function value: 81.93695655538534
Iterations: 15
Function evaluations: 189
Gradient evaluations: 15
Iteration: 1, Func. Count: 6, Neg. LLF: 115.84935616360187
Iteration: 2, Func. Count: 13, Neg. LLF: 157.48326307570795
Iteration: 3, Func. Count: 19, Neg. LLF: 660.6215530385285
Iteration: 4, Func. Count: 25, Neg. LLF: 213.31135724512308
Iteration: 5, Func. Count: 31, Neg. LLF: 162.15710409801306
Iteration: 6, Func. Count: 37, Neg. LLF: 182.81489209576148
Iteration: 7, Func. Count: 43, Neg. LLF: 101.83974333364439
Iteration: 8, Func. Count: 49, Neg. LLF: 121.87850739477047
Iteration: 9, Func. Count: 55, Neg. LLF: 91.22749711081654
Iteration: 10, Func. Count: 61, Neg. LLF: 89.56730879525179
Iteration: 11, Func. Count: 67, Neg. LLF: 88.95133163762503
Iteration: 12, Func. Count: 72, Neg. LLF: 88.84495726140352
Iteration: 13, Func. Count: 77, Neg. LLF: 88.81091492263793
Iteration: 14, Func. Count: 82, Neg. LLF: 88.80916761274476
Iteration: 15, Func. Count: 87, Neg. LLF: 88.8088622852953
Iteration: 16, Func. Count: 92, Neg. LLF: 88.80886002387511
Iteration: 17, Func. Count: 97, Neg. LLF: 88.80885951267905
Optimization terminated successfully (Exit mode 0)
Current function value: 88.80885951267905
Iterations: 17
Function evaluations: 97
Gradient evaluations: 17
Iteration: 1, Func. Count: 7, Neg. LLF: 141.51007670097866
Iteration: 2, Func. Count: 18, Neg. LLF: 226.11089728147704
Iteration: 3, Func. Count: 26, Neg. LLF: 124.1112468880113
Iteration: 4, Func. Count: 33, Neg. LLF: 83.62445460779102
Iteration: 5, Func. Count: 39, Neg. LLF: 93.53453924512789
Iteration: 6, Func. Count: 46, Neg. LLF: 83.50730758442985
Iteration: 7, Func. Count: 52, Neg. LLF: 83.49851922655097
Iteration: 8, Func. Count: 58, Neg. LLF: 83.49690442050168
Iteration: 9, Func. Count: 64, Neg. LLF: 83.49667428252695
Iteration: 10, Func. Count: 70, Neg. LLF: 83.49664731699549
Iteration: 11, Func. Count: 75, Neg. LLF: 83.49664728806573
Optimization terminated successfully (Exit mode 0)
Current function value: 83.49664731699549
Iterations: 11
Function evaluations: 75
Gradient evaluations: 11
Iteration: 1, Func. Count: 8, Neg. LLF: 140.8005332795358
Iteration: 2, Func. Count: 21, Neg. LLF: 176.45810952471925
Iteration: 3, Func. Count: 30, Neg. LLF: 119.69550974311761
Iteration: 4, Func. Count: 38, Neg. LLF: 83.95911513696666
Iteration: 5, Func. Count: 45, Neg. LLF: 84.36517980912056
Iteration: 6, Func. Count: 53, Neg. LLF: 84.03860177198119
Iteration: 7, Func. Count: 61, Neg. LLF: 83.49962638600147
Iteration: 8, Func. Count: 68, Neg. LLF: 83.49705158546797
Iteration: 9, Func. Count: 75, Neg. LLF: 83.4966775149517
Iteration: 10, Func. Count: 82, Neg. LLF: 83.4966508422528
Iteration: 11, Func. Count: 89, Neg. LLF: 83.49664747557274
Iteration: 12, Func. Count: 95, Neg. LLF: 83.49664747136843
Optimization terminated successfully (Exit mode 0)
Current function value: 83.49664747557274
Iterations: 12
Function evaluations: 95
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 239.05970498055962
Iteration: 2, Func. Count: 18, Neg. LLF: 12157.063808643481
Iteration: 3, Func. Count: 27, Neg. LLF: 92.1941518885301
Iteration: 4, Func. Count: 36, Neg. LLF: 87.81795073630178
Iteration: 5, Func. Count: 45, Neg. LLF: 86.8671335575255
Iteration: 6, Func. Count: 55, Neg. LLF: 83.8290204028927
Iteration: 7, Func. Count: 63, Neg. LLF: 83.57367526599309
Iteration: 8, Func. Count: 71, Neg. LLF: 83.50412403315431
Iteration: 9, Func. Count: 79, Neg. LLF: 83.49866118059641
Iteration: 10, Func. Count: 87, Neg. LLF: 83.4968310516476
Iteration: 11, Func. Count: 95, Neg. LLF: 83.49665298440522
Iteration: 12, Func. Count: 103, Neg. LLF: 83.49664719224145
Iteration: 13, Func. Count: 110, Neg. LLF: 83.4966472056336
Optimization terminated successfully (Exit mode 0)
Current function value: 83.49664719224145
Iterations: 13
Function evaluations: 110
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 9383.804408808961
Iteration: 2, Func. Count: 20, Neg. LLF: 1950.4180458669791
Iteration: 3, Func. Count: 30, Neg. LLF: 92.19874690297881
Iteration: 4, Func. Count: 40, Neg. LLF: 89.14588351711174
Iteration: 5, Func. Count: 50, Neg. LLF: 85.25923517124569
Iteration: 6, Func. Count: 60, Neg. LLF: 83.79342751162834
Iteration: 7, Func. Count: 69, Neg. LLF: 83.69998251898599
Iteration: 8, Func. Count: 79, Neg. LLF: 83.50893745824426
Iteration: 9, Func. Count: 88, Neg. LLF: 83.49717691960771
Iteration: 10, Func. Count: 97, Neg. LLF: 83.49669592961598
Iteration: 11, Func. Count: 106, Neg. LLF: 83.49665364581594
Iteration: 12, Func. Count: 115, Neg. LLF: 83.49664717091473
Iteration: 13, Func. Count: 123, Neg. LLF: 83.49664716239884
Optimization terminated successfully (Exit mode 0)
Current function value: 83.49664717091473
Iterations: 13
Function evaluations: 123
Gradient evaluations: 13
Iteration: 1, Func. Count: 7, Neg. LLF: 112.29472206090267
Iteration: 2, Func. Count: 15, Neg. LLF: 171.1278733108904
Iteration: 3, Func. Count: 22, Neg. LLF: 583.1350397607691
Iteration: 4, Func. Count: 29, Neg. LLF: 832.5016299234397
Iteration: 5, Func. Count: 36, Neg. LLF: 16452.705833829088
Iteration: 6, Func. Count: 43, Neg. LLF: 182.0720876530345
Iteration: 7, Func. Count: 50, Neg. LLF: 103.45413890664277
Iteration: 8, Func. Count: 57, Neg. LLF: 160.55397331327887
Iteration: 9, Func. Count: 64, Neg. LLF: 90.80879964155291
Iteration: 10, Func. Count: 71, Neg. LLF: 97.25408429499889
Iteration: 11, Func. Count: 78, Neg. LLF: 88.87389612672527
Iteration: 12, Func. Count: 84, Neg. LLF: 88.79359000507698
Iteration: 13, Func. Count: 90, Neg. LLF: 88.76499908540224
Iteration: 14, Func. Count: 96, Neg. LLF: 88.7196849481799
Iteration: 15, Func. Count: 102, Neg. LLF: 88.7072277173841
Iteration: 16, Func. Count: 108, Neg. LLF: 88.7060244414801
Iteration: 17, Func. Count: 114, Neg. LLF: 88.70596012495767
Iteration: 18, Func. Count: 120, Neg. LLF: 88.70595892599403
Iteration: 19, Func. Count: 125, Neg. LLF: 88.705958929529
Optimization terminated successfully (Exit mode 0)
Current function value: 88.70595892599403
Iterations: 19
Function evaluations: 125
Gradient evaluations: 19
Iteration: 1, Func. Count: 8, Neg. LLF: 145.31285271923767
Iteration: 2, Func. Count: 20, Neg. LLF: 236.48384667240887
Iteration: 3, Func. Count: 29, Neg. LLF: 115.758430623623
Iteration: 4, Func. Count: 37, Neg. LLF: 83.36140540256672
Iteration: 5, Func. Count: 44, Neg. LLF: 83.616857928999
Iteration: 6, Func. Count: 52, Neg. LLF: 83.3482830179146
Iteration: 7, Func. Count: 59, Neg. LLF: 83.34710254751673
Iteration: 8, Func. Count: 66, Neg. LLF: 83.34703578920634
Iteration: 9, Func. Count: 73, Neg. LLF: 83.34702074967096
Iteration: 10, Func. Count: 80, Neg. LLF: 83.34701960147775
Iteration: 11, Func. Count: 86, Neg. LLF: 83.34701957541343
Optimization terminated successfully (Exit mode 0)
Current function value: 83.34701960147775
Iterations: 11
Function evaluations: 86
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 147.10261554355424
Iteration: 2, Func. Count: 23, Neg. LLF: 151.70647792334495
Iteration: 3, Func. Count: 33, Neg. LLF: 133.65938773739748
Iteration: 4, Func. Count: 42, Neg. LLF: 84.32696790385481
Iteration: 5, Func. Count: 50, Neg. LLF: 83.84057166338036
Iteration: 6, Func. Count: 58, Neg. LLF: 84.60195466432472
Iteration: 7, Func. Count: 67, Neg. LLF: 83.4105278283299
Iteration: 8, Func. Count: 75, Neg. LLF: 83.36041002590679
Iteration: 9, Func. Count: 83, Neg. LLF: 83.348386065343
Iteration: 10, Func. Count: 91, Neg. LLF: 83.34731469357888
Iteration: 11, Func. Count: 99, Neg. LLF: 83.34702291553124
Iteration: 12, Func. Count: 107, Neg. LLF: 83.34701964460766
Iteration: 13, Func. Count: 114, Neg. LLF: 83.3470196352381
Optimization terminated successfully (Exit mode 0)
Current function value: 83.34701964460766
Iterations: 13
Function evaluations: 114
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 147.45514328196683
Iteration: 2, Func. Count: 21, Neg. LLF: 356.1667276761129
Iteration: 3, Func. Count: 31, Neg. LLF: 88.84069749228773
Iteration: 4, Func. Count: 41, Neg. LLF: 83.71347759865881
Iteration: 5, Func. Count: 50, Neg. LLF: 86.10699349917546
Iteration: 6, Func. Count: 60, Neg. LLF: 86.68071505145639
Iteration: 7, Func. Count: 70, Neg. LLF: 83.9281518411572
Iteration: 8, Func. Count: 80, Neg. LLF: 83.37991334774489
Iteration: 9, Func. Count: 89, Neg. LLF: 83.3887828622149
Iteration: 10, Func. Count: 99, Neg. LLF: 83.39281829143872
Iteration: 11, Func. Count: 109, Neg. LLF: 83.347097139239
Iteration: 12, Func. Count: 118, Neg. LLF: 83.34702144936429
Iteration: 13, Func. Count: 127, Neg. LLF: 83.34701960165796
Iteration: 14, Func. Count: 135, Neg. LLF: 83.34701959967269
Optimization terminated successfully (Exit mode 0)
Current function value: 83.34701960165796
Iterations: 14
Function evaluations: 135
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 192.22411239340738
Iteration: 2, Func. Count: 22, Neg. LLF: 278.6276022487211
Iteration: 3, Func. Count: 33, Neg. LLF: 255.3040366965063
Iteration: 4, Func. Count: 44, Neg. LLF: 83.88724750610136
Iteration: 5, Func. Count: 54, Neg. LLF: 87.35244812134742
Iteration: 6, Func. Count: 65, Neg. LLF: 138.90867162198526
Iteration: 7, Func. Count: 77, Neg. LLF: 83.51962844795355
Iteration: 8, Func. Count: 88, Neg. LLF: 83.34926128122164
Iteration: 9, Func. Count: 98, Neg. LLF: 83.3470658788504
Iteration: 10, Func. Count: 108, Neg. LLF: 83.34702054568646
Iteration: 11, Func. Count: 118, Neg. LLF: 83.3470196032148
Optimization terminated successfully (Exit mode 0)
Current function value: 83.3470196032148
Iterations: 11
Function evaluations: 118
Gradient evaluations: 11
Iteration: 1, Func. Count: 8, Neg. LLF: 109.03456410822835
Iteration: 2, Func. Count: 17, Neg. LLF: 353.45541581784613
Iteration: 3, Func. Count: 25, Neg. LLF: 141.36925005612574
Iteration: 4, Func. Count: 33, Neg. LLF: 316.643550870554
Iteration: 5, Func. Count: 41, Neg. LLF: 20619.41609370121
Iteration: 6, Func. Count: 49, Neg. LLF: 93.10747976194723
Iteration: 7, Func. Count: 57, Neg. LLF: 91.98646216123632
Iteration: 8, Func. Count: 65, Neg. LLF: 88.25130581008696
Iteration: 9, Func. Count: 73, Neg. LLF: 89.26466958412247
Iteration: 10, Func. Count: 81, Neg. LLF: 87.8582322606778
Iteration: 11, Func. Count: 89, Neg. LLF: 87.71146080755011
Iteration: 12, Func. Count: 96, Neg. LLF: 87.68467654909416
Iteration: 13, Func. Count: 103, Neg. LLF: 87.67611483718217
Iteration: 14, Func. Count: 110, Neg. LLF: 87.66992220480489
Iteration: 15, Func. Count: 117, Neg. LLF: 87.66870665669656
Iteration: 16, Func. Count: 124, Neg. LLF: 87.66868607904121
Iteration: 17, Func. Count: 131, Neg. LLF: 87.66868505197571
Iteration: 18, Func. Count: 137, Neg. LLF: 87.66868504659611
Optimization terminated successfully (Exit mode 0)
Current function value: 87.66868505197571
Iterations: 18
Function evaluations: 137
Gradient evaluations: 18
Iteration: 1, Func. Count: 9, Neg. LLF: 157.1616403832458
Iteration: 2, Func. Count: 22, Neg. LLF: 302.4307124202268
Iteration: 3, Func. Count: 32, Neg. LLF: 132.70226360259196
Iteration: 4, Func. Count: 41, Neg. LLF: 94.28128688294522
Iteration: 5, Func. Count: 50, Neg. LLF: 82.98094374475073
Iteration: 6, Func. Count: 58, Neg. LLF: 83.10487977754882
Iteration: 7, Func. Count: 67, Neg. LLF: 82.84798222192828
Iteration: 8, Func. Count: 76, Neg. LLF: 82.79186659420036
Iteration: 9, Func. Count: 84, Neg. LLF: 82.78732336734886
Iteration: 10, Func. Count: 92, Neg. LLF: 82.787170150385
Iteration: 11, Func. Count: 100, Neg. LLF: 82.78716394012443
Iteration: 12, Func. Count: 107, Neg. LLF: 82.78716386578276
Optimization terminated successfully (Exit mode 0)
Current function value: 82.78716394012443
Iterations: 12
Function evaluations: 107
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 143.66072551445026
Iteration: 2, Func. Count: 24, Neg. LLF: 986478.512426369
Iteration: 3, Func. Count: 35, Neg. LLF: 11841221.046534758
Iteration: 4, Func. Count: 45, Neg. LLF: 101.4318538884654
Iteration: 5, Func. Count: 55, Neg. LLF: 83.05503188774674
Iteration: 6, Func. Count: 64, Neg. LLF: 85.5564570559682
Iteration: 7, Func. Count: 74, Neg. LLF: 90.3723580751846
Iteration: 8, Func. Count: 85, Neg. LLF: 82.342420696603
Iteration: 9, Func. Count: 94, Neg. LLF: 82.33166917269439
Iteration: 10, Func. Count: 104, Neg. LLF: 82.29518401962395
Iteration: 11, Func. Count: 113, Neg. LLF: 82.29417232172193
Iteration: 12, Func. Count: 122, Neg. LLF: 82.29401137878827
Iteration: 13, Func. Count: 131, Neg. LLF: 82.29397095590534
Iteration: 14, Func. Count: 140, Neg. LLF: 82.2939631705337
Iteration: 15, Func. Count: 149, Neg. LLF: 82.29396245104783
Optimization terminated successfully (Exit mode 0)
Current function value: 82.29396245104783
Iterations: 15
Function evaluations: 149
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 126.59043449531536
Iteration: 2, Func. Count: 26, Neg. LLF: 3482425.1352294274
Iteration: 3, Func. Count: 38, Neg. LLF: 6489981.462204132
Iteration: 4, Func. Count: 49, Neg. LLF: 131.33500475513472
Iteration: 5, Func. Count: 60, Neg. LLF: 88.27628100302505
Iteration: 6, Func. Count: 71, Neg. LLF: 83.12245826132485
Iteration: 7, Func. Count: 82, Neg. LLF: 82.34123629261722
Iteration: 8, Func. Count: 92, Neg. LLF: 82.43628415423741
Iteration: 9, Func. Count: 103, Neg. LLF: 82.39123981295972
Iteration: 10, Func. Count: 114, Neg. LLF: 82.2685793565028
Iteration: 11, Func. Count: 124, Neg. LLF: 82.26794623943633
Iteration: 12, Func. Count: 134, Neg. LLF: 82.26790302542605
Iteration: 13, Func. Count: 144, Neg. LLF: 82.26789657554387
Iteration: 14, Func. Count: 153, Neg. LLF: 82.26789647256294
Optimization terminated successfully (Exit mode 0)
Current function value: 82.26789657554387
Iterations: 14
Function evaluations: 153
Gradient evaluations: 14
Iteration: 1, Func. Count: 12, Neg. LLF: 121.24655243590924
Iteration: 2, Func. Count: 28, Neg. LLF: 240864064.3518646
Iteration: 3, Func. Count: 41, Neg. LLF: 11582064.63620272
Iteration: 4, Func. Count: 53, Neg. LLF: 618.8933597533487
Iteration: 5, Func. Count: 65, Neg. LLF: 90.85039571412526
Iteration: 6, Func. Count: 77, Neg. LLF: 83.46258759340367
Iteration: 7, Func. Count: 89, Neg. LLF: 83.64249259177646
Iteration: 8, Func. Count: 101, Neg. LLF: 86.10137511529072
Iteration: 9, Func. Count: 113, Neg. LLF: 82.79353364927198
Iteration: 10, Func. Count: 125, Neg. LLF: 82.25777227591875
Iteration: 11, Func. Count: 136, Neg. LLF: 81.82599235384144
Iteration: 12, Func. Count: 147, Neg. LLF: 81.77434347907206
Iteration: 13, Func. Count: 158, Neg. LLF: 81.74199474814772
Iteration: 14, Func. Count: 169, Neg. LLF: 81.71446697914983
Iteration: 15, Func. Count: 180, Neg. LLF: 81.89321160148295
Iteration: 16, Func. Count: 192, Neg. LLF: 81.70455528013431
Iteration: 17, Func. Count: 203, Neg. LLF: 81.70311643357005
Iteration: 18, Func. Count: 214, Neg. LLF: 81.70300566388711
Iteration: 19, Func. Count: 225, Neg. LLF: 81.70295297809834
Iteration: 20, Func. Count: 235, Neg. LLF: 81.70295284639948
Optimization terminated successfully (Exit mode 0)
Current function value: 81.70295297809834
Iterations: 20
Function evaluations: 235
Gradient evaluations: 20
Iteration: 1, Func. Count: 9, Neg. LLF: 100.83305525731183
Iteration: 2, Func. Count: 19, Neg. LLF: 581.7999908972653
Iteration: 3, Func. Count: 28, Neg. LLF: 170.06738874231948
Iteration: 4, Func. Count: 37, Neg. LLF: 17790.249050970455
Iteration: 5, Func. Count: 46, Neg. LLF: 23164.767802791535
Iteration: 6, Func. Count: 55, Neg. LLF: 108.9101710864666
Iteration: 7, Func. Count: 64, Neg. LLF: 98.10387859101635
Iteration: 8, Func. Count: 73, Neg. LLF: 88.33919270950922
Iteration: 9, Func. Count: 82, Neg. LLF: 88.01162813533743
Iteration: 10, Func. Count: 91, Neg. LLF: 89.85104070839022
Iteration: 11, Func. Count: 100, Neg. LLF: 87.5778012468881
Iteration: 12, Func. Count: 108, Neg. LLF: 87.54704733048446
Iteration: 13, Func. Count: 116, Neg. LLF: 87.53642352483288
Iteration: 14, Func. Count: 124, Neg. LLF: 87.53317543753627
Iteration: 15, Func. Count: 132, Neg. LLF: 87.53170840216374
Iteration: 16, Func. Count: 140, Neg. LLF: 87.53165735544113
Iteration: 17, Func. Count: 148, Neg. LLF: 87.5316568219414
Optimization terminated successfully (Exit mode 0)
Current function value: 87.5316568219414
Iterations: 17
Function evaluations: 148
Gradient evaluations: 17
Iteration: 1, Func. Count: 10, Neg. LLF: 153.28513170838139
Iteration: 2, Func. Count: 24, Neg. LLF: 267.8466809802913
Iteration: 3, Func. Count: 35, Neg. LLF: 127.71967835583463
Iteration: 4, Func. Count: 45, Neg. LLF: 94.43728671161519
Iteration: 5, Func. Count: 55, Neg. LLF: 82.97524945835498
Iteration: 6, Func. Count: 64, Neg. LLF: 83.18728615747983
Iteration: 7, Func. Count: 74, Neg. LLF: 82.94649510351428
Iteration: 8, Func. Count: 84, Neg. LLF: 82.78801662941181
Iteration: 9, Func. Count: 93, Neg. LLF: 82.78721533894024
Iteration: 10, Func. Count: 102, Neg. LLF: 82.78716952263983
Iteration: 11, Func. Count: 111, Neg. LLF: 82.78716397589673
Iteration: 12, Func. Count: 119, Neg. LLF: 82.7871639016217
Optimization terminated successfully (Exit mode 0)
Current function value: 82.78716397589673
Iterations: 12
Function evaluations: 119
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 140.31825047253065
Iteration: 2, Func. Count: 26, Neg. LLF: 22274.518509019133
Iteration: 3, Func. Count: 38, Neg. LLF: 6397422.19303895
Iteration: 4, Func. Count: 49, Neg. LLF: 88.78981024065124
Iteration: 5, Func. Count: 60, Neg. LLF: 83.81729573020708
Iteration: 6, Func. Count: 71, Neg. LLF: 86.83949080681867
Iteration: 7, Func. Count: 82, Neg. LLF: 83.44930168154286
Iteration: 8, Func. Count: 93, Neg. LLF: 82.27244630801175
Iteration: 9, Func. Count: 103, Neg. LLF: 82.42000134712023
Iteration: 10, Func. Count: 114, Neg. LLF: 82.66464078676279
Iteration: 11, Func. Count: 125, Neg. LLF: 82.14038466022598
Iteration: 12, Func. Count: 135, Neg. LLF: 82.1383046914425
Iteration: 13, Func. Count: 145, Neg. LLF: 82.13795843786176
Iteration: 14, Func. Count: 155, Neg. LLF: 82.13787869603182
Iteration: 15, Func. Count: 165, Neg. LLF: 82.13787605182019
Iteration: 16, Func. Count: 174, Neg. LLF: 82.13787595349312
Optimization terminated successfully (Exit mode 0)
Current function value: 82.13787605182019
Iterations: 16
Function evaluations: 174
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 127.2582203898155
Iteration: 2, Func. Count: 28, Neg. LLF: 3715703.1766442508
Iteration: 3, Func. Count: 41, Neg. LLF: 2581011.1892891433
Iteration: 4, Func. Count: 53, Neg. LLF: 95.09585219889715
Iteration: 5, Func. Count: 65, Neg. LLF: 88.72012254792344
Iteration: 6, Func. Count: 77, Neg. LLF: 100.49978502976546
Iteration: 7, Func. Count: 89, Neg. LLF: 83.18240591834288
Iteration: 8, Func. Count: 101, Neg. LLF: 82.47212439436021
Iteration: 9, Func. Count: 113, Neg. LLF: 82.07265704051818
Iteration: 10, Func. Count: 124, Neg. LLF: 82.3560133295164
Iteration: 11, Func. Count: 136, Neg. LLF: 81.96731366612701
Iteration: 12, Func. Count: 147, Neg. LLF: 81.93804903493822
Iteration: 13, Func. Count: 158, Neg. LLF: 81.93722728624991
Iteration: 14, Func. Count: 169, Neg. LLF: 81.93697102309515
Iteration: 15, Func. Count: 180, Neg. LLF: 81.9369586527412
Iteration: 16, Func. Count: 191, Neg. LLF: 81.9369565710811
Iteration: 17, Func. Count: 201, Neg. LLF: 81.9369565047231
Optimization terminated successfully (Exit mode 0)
Current function value: 81.9369565710811
Iterations: 17
Function evaluations: 201
Gradient evaluations: 17
Iteration: 1, Func. Count: 13, Neg. LLF: 121.35695126621857
Iteration: 2, Func. Count: 30, Neg. LLF: 255509818.89275974
Iteration: 3, Func. Count: 44, Neg. LLF: 11750219.602299355
Iteration: 4, Func. Count: 57, Neg. LLF: 3771274.4088223367
Iteration: 5, Func. Count: 70, Neg. LLF: 88.31207898467453
Iteration: 6, Func. Count: 83, Neg. LLF: 87.80609393650789
Iteration: 7, Func. Count: 96, Neg. LLF: 84.3319462764527
Iteration: 8, Func. Count: 109, Neg. LLF: 81.89535183075569
Iteration: 9, Func. Count: 121, Neg. LLF: 83.44631656792453
Iteration: 10, Func. Count: 134, Neg. LLF: 81.69820102941082
Iteration: 11, Func. Count: 146, Neg. LLF: 81.67122625355657
Iteration: 12, Func. Count: 159, Neg. LLF: 81.56451209864672
Iteration: 13, Func. Count: 171, Neg. LLF: 81.56564566484529
Iteration: 14, Func. Count: 184, Neg. LLF: 81.56108062127575
Iteration: 15, Func. Count: 196, Neg. LLF: 81.56030787945362
Iteration: 16, Func. Count: 208, Neg. LLF: 81.56029636481865
Iteration: 17, Func. Count: 220, Neg. LLF: 81.5602948186873
Iteration: 18, Func. Count: 231, Neg. LLF: 81.56029469209575
Optimization terminated successfully (Exit mode 0)
Current function value: 81.5602948186873
Iterations: 18
Function evaluations: 231
Gradient evaluations: 18
Iteration: 1, Func. Count: 10, Neg. LLF: 101.29605124695485
Iteration: 2, Func. Count: 21, Neg. LLF: 162.04820052061126
Iteration: 3, Func. Count: 31, Neg. LLF: 331.1277262737255
Iteration: 4, Func. Count: 41, Neg. LLF: 239.74703587750275
Iteration: 5, Func. Count: 51, Neg. LLF: 192.19799280977443
Iteration: 6, Func. Count: 61, Neg. LLF: 79513.46150109594
Iteration: 7, Func. Count: 71, Neg. LLF: 113.54603727102092
Iteration: 8, Func. Count: 81, Neg. LLF: 100.50283342209374
Iteration: 9, Func. Count: 91, Neg. LLF: 97.60698615094275
Iteration: 10, Func. Count: 101, Neg. LLF: 85.63491633714877
Iteration: 11, Func. Count: 110, Neg. LLF: 86.68900885042602
Iteration: 12, Func. Count: 120, Neg. LLF: 87.00206970509896
Iteration: 13, Func. Count: 130, Neg. LLF: 85.40699047263008
Iteration: 14, Func. Count: 139, Neg. LLF: 85.38070151185283
Iteration: 15, Func. Count: 148, Neg. LLF: 85.37554038148475
Iteration: 16, Func. Count: 157, Neg. LLF: 85.37468875328375
Iteration: 17, Func. Count: 166, Neg. LLF: 85.37465099322607
Iteration: 18, Func. Count: 175, Neg. LLF: 85.3746500633559
Optimization terminated successfully (Exit mode 0)
Current function value: 85.3746500633559
Iterations: 18
Function evaluations: 175
Gradient evaluations: 18
Iteration: 1, Func. Count: 11, Neg. LLF: 142.46940534084843
Iteration: 2, Func. Count: 26, Neg. LLF: 890.9604699416113
Iteration: 3, Func. Count: 38, Neg. LLF: 4843.340873335242
Iteration: 4, Func. Count: 49, Neg. LLF: 100.70827569009037
Iteration: 5, Func. Count: 60, Neg. LLF: 82.99981485584017
Iteration: 6, Func. Count: 70, Neg. LLF: 83.08775626416316
Iteration: 7, Func. Count: 81, Neg. LLF: 82.966860567011
Iteration: 8, Func. Count: 92, Neg. LLF: 82.78780222151887
Iteration: 9, Func. Count: 102, Neg. LLF: 82.78722664278301
Iteration: 10, Func. Count: 112, Neg. LLF: 82.78717371443273
Iteration: 11, Func. Count: 122, Neg. LLF: 82.7871640653108
Iteration: 12, Func. Count: 131, Neg. LLF: 82.78716399089048
Optimization terminated successfully (Exit mode 0)
Current function value: 82.7871640653108
Iterations: 12
Function evaluations: 131
Gradient evaluations: 12
Iteration: 1, Func. Count: 12, Neg. LLF: 137.85244637282528
Iteration: 2, Func. Count: 28, Neg. LLF: 4295902.997963261
Iteration: 3, Func. Count: 41, Neg. LLF: 6395127.734381417
Iteration: 4, Func. Count: 53, Neg. LLF: 94.57514501118192
Iteration: 5, Func. Count: 65, Neg. LLF: 83.75695756878068
Iteration: 6, Func. Count: 77, Neg. LLF: 88.74432512596736
Iteration: 7, Func. Count: 89, Neg. LLF: 83.2711324214921
Iteration: 8, Func. Count: 101, Neg. LLF: 82.25543051526178
Iteration: 9, Func. Count: 112, Neg. LLF: 82.65958084339526
Iteration: 10, Func. Count: 124, Neg. LLF: 82.34271867707663
Iteration: 11, Func. Count: 136, Neg. LLF: 82.14120658648488
Iteration: 12, Func. Count: 147, Neg. LLF: 82.1381738189262
Iteration: 13, Func. Count: 158, Neg. LLF: 82.13796780977462
Iteration: 14, Func. Count: 169, Neg. LLF: 82.13788555534653
Iteration: 15, Func. Count: 180, Neg. LLF: 82.13787652313354
Iteration: 16, Func. Count: 191, Neg. LLF: 82.13787586066348
Optimization terminated successfully (Exit mode 0)
Current function value: 82.13787586066348
Iterations: 16
Function evaluations: 191
Gradient evaluations: 16
Iteration: 1, Func. Count: 13, Neg. LLF: 127.10139761210532
Iteration: 2, Func. Count: 30, Neg. LLF: 3562408.5775151784
Iteration: 3, Func. Count: 44, Neg. LLF: 5085753.0002249135
Iteration: 4, Func. Count: 57, Neg. LLF: 120.72092784269434
Iteration: 5, Func. Count: 70, Neg. LLF: 93.6246064407505
Iteration: 6, Func. Count: 83, Neg. LLF: 91.65989717546427
Iteration: 7, Func. Count: 96, Neg. LLF: 83.52075302283966
Iteration: 8, Func. Count: 109, Neg. LLF: 82.53957280050739
Iteration: 9, Func. Count: 122, Neg. LLF: 82.01734106712568
Iteration: 10, Func. Count: 134, Neg. LLF: 85.56994548501211
Iteration: 11, Func. Count: 148, Neg. LLF: 81.94780007645224
Iteration: 12, Func. Count: 160, Neg. LLF: 81.93756473419607
Iteration: 13, Func. Count: 172, Neg. LLF: 81.93704665596425
Iteration: 14, Func. Count: 184, Neg. LLF: 81.9369739145512
Iteration: 15, Func. Count: 196, Neg. LLF: 81.9369595417658
Iteration: 16, Func. Count: 208, Neg. LLF: 81.93695699127596
Iteration: 17, Func. Count: 219, Neg. LLF: 81.93695692486814
Optimization terminated successfully (Exit mode 0)
Current function value: 81.93695699127596
Iterations: 17
Function evaluations: 219
Gradient evaluations: 17
Iteration: 1, Func. Count: 14, Neg. LLF: 145144655.18960637
Iteration: 2, Func. Count: 28, Neg. LLF: 9148558.979252962
Iteration: 3, Func. Count: 42, Neg. LLF: 1271.309820134318
Iteration: 4, Func. Count: 56, Neg. LLF: 84.86472966637055
Iteration: 5, Func. Count: 70, Neg. LLF: 87.59080285015438
Iteration: 6, Func. Count: 84, Neg. LLF: 83.21359678192218
Iteration: 7, Func. Count: 98, Neg. LLF: 86.15775146132597
Iteration: 8, Func. Count: 112, Neg. LLF: 83.43953697746693
Iteration: 9, Func. Count: 126, Neg. LLF: 84.64862528585665
Iteration: 10, Func. Count: 140, Neg. LLF: 81.96457793420478
Iteration: 11, Func. Count: 153, Neg. LLF: 81.94190093010823
Iteration: 12, Func. Count: 166, Neg. LLF: 81.94562530788063
Iteration: 13, Func. Count: 180, Neg. LLF: 81.93697897678497
Iteration: 14, Func. Count: 193, Neg. LLF: 81.93695902872159
Iteration: 15, Func. Count: 206, Neg. LLF: 81.93695685816236
Iteration: 16, Func. Count: 218, Neg. LLF: 81.93695682361452
Optimization terminated successfully (Exit mode 0)
Current function value: 81.93695685816236
Iterations: 16
Function evaluations: 218
Gradient evaluations: 16
Iteration: 1, Func. Count: 7, Neg. LLF: 107.23529748749478
Iteration: 2, Func. Count: 15, Neg. LLF: 1934.031346819276
Iteration: 3, Func. Count: 22, Neg. LLF: 368.77747509411057
Iteration: 4, Func. Count: 29, Neg. LLF: 1237.3508860397883
Iteration: 5, Func. Count: 36, Neg. LLF: 114.41626234383885
Iteration: 6, Func. Count: 43, Neg. LLF: 119.67761266255401
Iteration: 7, Func. Count: 50, Neg. LLF: 109.70133906758736
Iteration: 8, Func. Count: 57, Neg. LLF: 5925.05860650324
Iteration: 9, Func. Count: 64, Neg. LLF: 87.05103013114785
Iteration: 10, Func. Count: 71, Neg. LLF: 86.86185609167343
Iteration: 11, Func. Count: 77, Neg. LLF: 86.8289451313036
Iteration: 12, Func. Count: 83, Neg. LLF: 86.81905416694873
Iteration: 13, Func. Count: 89, Neg. LLF: 86.81785231851052
Iteration: 14, Func. Count: 95, Neg. LLF: 86.81778324875891
Iteration: 15, Func. Count: 101, Neg. LLF: 86.8177815485345
Iteration: 16, Func. Count: 106, Neg. LLF: 86.81778154854881
Optimization terminated successfully (Exit mode 0)
Current function value: 86.8177815485345
Iterations: 16
Function evaluations: 106
Gradient evaluations: 16
Iteration: 1, Func. Count: 8, Neg. LLF: 143.54993781774397
Iteration: 2, Func. Count: 21, Neg. LLF: 210.18578139943585
Iteration: 3, Func. Count: 30, Neg. LLF: 106.5511853053543
Iteration: 4, Func. Count: 38, Neg. LLF: 83.6336431217071
Iteration: 5, Func. Count: 46, Neg. LLF: 96.6484990828813
Iteration: 6, Func. Count: 54, Neg. LLF: 88.98197832377186
Iteration: 7, Func. Count: 62, Neg. LLF: 83.2531330370467
Iteration: 8, Func. Count: 70, Neg. LLF: 86.84201550533744
Iteration: 9, Func. Count: 79, Neg. LLF: 82.88671567916944
Iteration: 10, Func. Count: 86, Neg. LLF: 82.87222453092431
Iteration: 11, Func. Count: 93, Neg. LLF: 82.86287461485671
Iteration: 12, Func. Count: 100, Neg. LLF: 82.8624941802892
Iteration: 13, Func. Count: 107, Neg. LLF: 82.86239834081911
Iteration: 14, Func. Count: 114, Neg. LLF: 82.86239212849492
Iteration: 15, Func. Count: 120, Neg. LLF: 82.86239212853118
Optimization terminated successfully (Exit mode 0)
Current function value: 82.86239212849492
Iterations: 15
Function evaluations: 120
Gradient evaluations: 15
Iteration: 1, Func. Count: 9, Neg. LLF: 143.44203333169145
Iteration: 2, Func. Count: 23, Neg. LLF: 352.7398554504173
Iteration: 3, Func. Count: 33, Neg. LLF: 154.97216080083388
Iteration: 4, Func. Count: 42, Neg. LLF: 94.11035012200155
Iteration: 5, Func. Count: 51, Neg. LLF: 89.04006907722362
Iteration: 6, Func. Count: 60, Neg. LLF: 84.348539459343
Iteration: 7, Func. Count: 69, Neg. LLF: 83.51014166582645
Iteration: 8, Func. Count: 78, Neg. LLF: 83.10421278748227
Iteration: 9, Func. Count: 86, Neg. LLF: 82.93913922257288
Iteration: 10, Func. Count: 94, Neg. LLF: 82.88112280300206
Iteration: 11, Func. Count: 102, Neg. LLF: 82.86862891463272
Iteration: 12, Func. Count: 110, Neg. LLF: 82.86412727609347
Iteration: 13, Func. Count: 118, Neg. LLF: 82.86247754153975
Iteration: 14, Func. Count: 126, Neg. LLF: 82.86239826433459
Iteration: 15, Func. Count: 134, Neg. LLF: 82.862392414601
Iteration: 16, Func. Count: 141, Neg. LLF: 82.86239242655898
Optimization terminated successfully (Exit mode 0)
Current function value: 82.862392414601
Iterations: 16
Function evaluations: 141
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 12226599.926485723
Iteration: 2, Func. Count: 20, Neg. LLF: 1657.9677888863482
Iteration: 3, Func. Count: 30, Neg. LLF: 199.60992108922517
Iteration: 4, Func. Count: 40, Neg. LLF: 84.762981640389
Iteration: 5, Func. Count: 50, Neg. LLF: 90.04440907187241
Iteration: 6, Func. Count: 60, Neg. LLF: 89.95195625662656
Iteration: 7, Func. Count: 70, Neg. LLF: 82.81194922929697
Iteration: 8, Func. Count: 80, Neg. LLF: 82.57983812817656
Iteration: 9, Func. Count: 89, Neg. LLF: 82.79962766192433
Iteration: 10, Func. Count: 99, Neg. LLF: 83.56225678958586
Iteration: 11, Func. Count: 110, Neg. LLF: 82.52343926798137
Iteration: 12, Func. Count: 119, Neg. LLF: 82.52224965581988
Iteration: 13, Func. Count: 128, Neg. LLF: 82.52207898644902
Iteration: 14, Func. Count: 137, Neg. LLF: 82.52207403013372
Iteration: 15, Func. Count: 145, Neg. LLF: 82.5220740301362
Optimization terminated successfully (Exit mode 0)
Current function value: 82.52207403013372
Iterations: 15
Function evaluations: 145
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 1873.4510159297959
Iteration: 2, Func. Count: 22, Neg. LLF: 735.3839733264799
Iteration: 3, Func. Count: 33, Neg. LLF: 107.84740844388595
Iteration: 4, Func. Count: 44, Neg. LLF: 84.9072141612919
Iteration: 5, Func. Count: 55, Neg. LLF: 94.98101673303262
Iteration: 6, Func. Count: 67, Neg. LLF: 85.82300983125461
Iteration: 7, Func. Count: 78, Neg. LLF: 85.19734384875419
Iteration: 8, Func. Count: 89, Neg. LLF: 83.36955129957462
Iteration: 9, Func. Count: 100, Neg. LLF: 82.54505606464079
Iteration: 10, Func. Count: 110, Neg. LLF: 82.54765458665584
Iteration: 11, Func. Count: 121, Neg. LLF: 82.58252161918132
Iteration: 12, Func. Count: 132, Neg. LLF: 82.52229572214685
Iteration: 13, Func. Count: 142, Neg. LLF: 82.52209408038347
Iteration: 14, Func. Count: 152, Neg. LLF: 82.5220756495192
Iteration: 15, Func. Count: 162, Neg. LLF: 82.52207404591574
Iteration: 16, Func. Count: 171, Neg. LLF: 82.5220740475934
Optimization terminated successfully (Exit mode 0)
Current function value: 82.52207404591574
Iterations: 16
Function evaluations: 171
Gradient evaluations: 16
Iteration: 1, Func. Count: 8, Neg. LLF: 110.26927666016044
Iteration: 2, Func. Count: 17, Neg. LLF: 438.34233693382924
Iteration: 3, Func. Count: 25, Neg. LLF: 137.79886400523736
Iteration: 4, Func. Count: 33, Neg. LLF: 142.38747224659053
Iteration: 5, Func. Count: 41, Neg. LLF: 121.86938662398438
Iteration: 6, Func. Count: 49, Neg. LLF: 1430.8089811598202
Iteration: 7, Func. Count: 57, Neg. LLF: 124.19895307349869
Iteration: 8, Func. Count: 65, Neg. LLF: 97.60519552661181
Iteration: 9, Func. Count: 73, Neg. LLF: 95.25897731263751
Iteration: 10, Func. Count: 81, Neg. LLF: 86.92026858614895
Iteration: 11, Func. Count: 89, Neg. LLF: 86.83258079957984
Iteration: 12, Func. Count: 96, Neg. LLF: 86.81626228448701
Iteration: 13, Func. Count: 103, Neg. LLF: 86.81006320563618
Iteration: 14, Func. Count: 110, Neg. LLF: 86.80906332591536
Iteration: 15, Func. Count: 117, Neg. LLF: 86.80905789652985
Iteration: 16, Func. Count: 123, Neg. LLF: 86.8090578965505
Optimization terminated successfully (Exit mode 0)
Current function value: 86.80905789652985
Iterations: 16
Function evaluations: 123
Gradient evaluations: 16
Iteration: 1, Func. Count: 9, Neg. LLF: 148.8058527128518
Iteration: 2, Func. Count: 22, Neg. LLF: 152.39719056241933
Iteration: 3, Func. Count: 32, Neg. LLF: 92.7897343555524
Iteration: 4, Func. Count: 41, Neg. LLF: 95.46246175191848
Iteration: 5, Func. Count: 50, Neg. LLF: 84.22814112766727
Iteration: 6, Func. Count: 59, Neg. LLF: 84.49242505613357
Iteration: 7, Func. Count: 68, Neg. LLF: 82.86105196898467
Iteration: 8, Func. Count: 76, Neg. LLF: 83.0185369820335
Iteration: 9, Func. Count: 85, Neg. LLF: 82.88876589107039
Iteration: 10, Func. Count: 94, Neg. LLF: 82.79695412074182
Iteration: 11, Func. Count: 102, Neg. LLF: 82.79592753418089
Iteration: 12, Func. Count: 110, Neg. LLF: 82.79573380581543
Iteration: 13, Func. Count: 118, Neg. LLF: 82.79560638591565
Iteration: 14, Func. Count: 126, Neg. LLF: 82.79557175538896
Iteration: 15, Func. Count: 133, Neg. LLF: 82.79557175538943
Optimization terminated successfully (Exit mode 0)
Current function value: 82.79557175538896
Iterations: 15
Function evaluations: 133
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 147.61298520685241
Iteration: 2, Func. Count: 25, Neg. LLF: 170.70854588854488
Iteration: 3, Func. Count: 36, Neg. LLF: 156.51763751907222
Iteration: 4, Func. Count: 46, Neg. LLF: 83.52771159039993
Iteration: 5, Func. Count: 55, Neg. LLF: 83.47568838937914
Iteration: 6, Func. Count: 65, Neg. LLF: 94.91591239282957
Iteration: 7, Func. Count: 75, Neg. LLF: 87.06838308612465
Iteration: 8, Func. Count: 85, Neg. LLF: 83.04564026346095
Iteration: 9, Func. Count: 95, Neg. LLF: 82.81782922914563
Iteration: 10, Func. Count: 104, Neg. LLF: 82.7993283495437
Iteration: 11, Func. Count: 113, Neg. LLF: 82.79674254013682
Iteration: 12, Func. Count: 122, Neg. LLF: 82.79569250858462
Iteration: 13, Func. Count: 131, Neg. LLF: 82.79557465644247
Iteration: 14, Func. Count: 140, Neg. LLF: 82.79557172454929
Iteration: 15, Func. Count: 148, Neg. LLF: 82.79557172590386
Optimization terminated successfully (Exit mode 0)
Current function value: 82.79557172454929
Iterations: 15
Function evaluations: 148
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 266.9684442378869
Iteration: 2, Func. Count: 23, Neg. LLF: 1056.5414675127283
Iteration: 3, Func. Count: 34, Neg. LLF: 130.19927865569935
Iteration: 4, Func. Count: 45, Neg. LLF: 88.77558103404182
Iteration: 5, Func. Count: 56, Neg. LLF: 84.42837652201806
Iteration: 6, Func. Count: 67, Neg. LLF: 82.51731982988889
Iteration: 7, Func. Count: 77, Neg. LLF: 270.966525034224
Iteration: 8, Func. Count: 89, Neg. LLF: 84.87035693070659
Iteration: 9, Func. Count: 100, Neg. LLF: 82.05334715684103
Iteration: 10, Func. Count: 110, Neg. LLF: 97.31453808748269
Iteration: 11, Func. Count: 122, Neg. LLF: 81.95132613792622
Iteration: 12, Func. Count: 132, Neg. LLF: 81.9238490776265
Iteration: 13, Func. Count: 142, Neg. LLF: 81.90287208134168
Iteration: 14, Func. Count: 152, Neg. LLF: 81.89817704185046
Iteration: 15, Func. Count: 162, Neg. LLF: 81.8962752334529
Iteration: 16, Func. Count: 172, Neg. LLF: 81.89527359833528
Iteration: 17, Func. Count: 182, Neg. LLF: 81.89524536110275
Iteration: 18, Func. Count: 192, Neg. LLF: 81.89524377976461
Iteration: 19, Func. Count: 201, Neg. LLF: 81.89524377277385
Optimization terminated successfully (Exit mode 0)
Current function value: 81.89524377976461
Iterations: 19
Function evaluations: 201
Gradient evaluations: 19
Iteration: 1, Func. Count: 12, Neg. LLF: 247.98713381768235
Iteration: 2, Func. Count: 24, Neg. LLF: 480.7796475883473
Iteration: 3, Func. Count: 36, Neg. LLF: 93.06416897985412
Iteration: 4, Func. Count: 49, Neg. LLF: 3770.422458560099
Iteration: 5, Func. Count: 61, Neg. LLF: 90.51034710125776
Iteration: 6, Func. Count: 73, Neg. LLF: 89.36807370346712
Iteration: 7, Func. Count: 85, Neg. LLF: 82.6978502179616
Iteration: 8, Func. Count: 96, Neg. LLF: 84.02778855485218
Iteration: 9, Func. Count: 109, Neg. LLF: 106.5418739099126
Iteration: 10, Func. Count: 121, Neg. LLF: 86.23238355859245
Iteration: 11, Func. Count: 133, Neg. LLF: 81.93869978442119
Iteration: 12, Func. Count: 144, Neg. LLF: 81.91341928810044
Iteration: 13, Func. Count: 155, Neg. LLF: 81.90043221755028
Iteration: 14, Func. Count: 166, Neg. LLF: 81.89538579970824
Iteration: 15, Func. Count: 177, Neg. LLF: 81.89525499440563
Iteration: 16, Func. Count: 188, Neg. LLF: 81.89524471576665
Iteration: 17, Func. Count: 199, Neg. LLF: 81.89524385079545
Optimization terminated successfully (Exit mode 0)
Current function value: 81.89524385079545
Iterations: 17
Function evaluations: 199
Gradient evaluations: 17
Iteration: 1, Func. Count: 9, Neg. LLF: 100.04620912570367
Iteration: 2, Func. Count: 19, Neg. LLF: 213.46328168575926
Iteration: 3, Func. Count: 28, Neg. LLF: 232.39504028737753
Iteration: 4, Func. Count: 37, Neg. LLF: 185.8026313795731
Iteration: 5, Func. Count: 46, Neg. LLF: 3557.474092635666
Iteration: 6, Func. Count: 55, Neg. LLF: 93.25018580217508
Iteration: 7, Func. Count: 64, Neg. LLF: 95.44802272831139
Iteration: 8, Func. Count: 73, Neg. LLF: 87.8271795530386
Iteration: 9, Func. Count: 82, Neg. LLF: 86.88901294127648
Iteration: 10, Func. Count: 91, Neg. LLF: 87.05810786701367
Iteration: 11, Func. Count: 100, Neg. LLF: 86.7188752086635
Iteration: 12, Func. Count: 108, Neg. LLF: 87.53282015208123
Iteration: 13, Func. Count: 117, Neg. LLF: 86.70390321689037
Iteration: 14, Func. Count: 125, Neg. LLF: 86.70379499222005
Iteration: 15, Func. Count: 133, Neg. LLF: 86.70379148048788
Iteration: 16, Func. Count: 140, Neg. LLF: 86.70379148045689
Optimization terminated successfully (Exit mode 0)
Current function value: 86.70379148048788
Iterations: 16
Function evaluations: 140
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 150.70388684818727
Iteration: 2, Func. Count: 24, Neg. LLF: 206.9401745593103
Iteration: 3, Func. Count: 35, Neg. LLF: 154.78637938167853
Iteration: 4, Func. Count: 45, Neg. LLF: 105.51536774506766
Iteration: 5, Func. Count: 55, Neg. LLF: 82.58901802812149
Iteration: 6, Func. Count: 64, Neg. LLF: 83.84221960281138
Iteration: 7, Func. Count: 74, Neg. LLF: 82.58263325793303
Iteration: 8, Func. Count: 84, Neg. LLF: 82.64950595816975
Iteration: 9, Func. Count: 94, Neg. LLF: 82.50780734599934
Iteration: 10, Func. Count: 103, Neg. LLF: 82.5073150839902
Iteration: 11, Func. Count: 112, Neg. LLF: 82.50727279801059
Iteration: 12, Func. Count: 121, Neg. LLF: 82.50727106337777
Iteration: 13, Func. Count: 129, Neg. LLF: 82.5072710395788
Optimization terminated successfully (Exit mode 0)
Current function value: 82.50727106337777
Iterations: 13
Function evaluations: 129
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 142.28796975183258
Iteration: 2, Func. Count: 26, Neg. LLF: 636.7150775297545
Iteration: 3, Func. Count: 38, Neg. LLF: 3380.697003006705
Iteration: 4, Func. Count: 49, Neg. LLF: 84.47865472619807
Iteration: 5, Func. Count: 60, Neg. LLF: 82.67352751684321
Iteration: 6, Func. Count: 70, Neg. LLF: 83.37701983619625
Iteration: 7, Func. Count: 81, Neg. LLF: 82.88085431731612
Iteration: 8, Func. Count: 93, Neg. LLF: 82.55601255040123
Iteration: 9, Func. Count: 104, Neg. LLF: 82.60714586792768
Iteration: 10, Func. Count: 115, Neg. LLF: 82.50189104340647
Iteration: 11, Func. Count: 125, Neg. LLF: 82.50172778173086
Iteration: 12, Func. Count: 135, Neg. LLF: 82.50171570011096
Iteration: 13, Func. Count: 145, Neg. LLF: 82.50171499834238
Optimization terminated successfully (Exit mode 0)
Current function value: 82.50171499834238
Iterations: 13
Function evaluations: 145
Gradient evaluations: 13
Iteration: 1, Func. Count: 12, Neg. LLF: 135.5662461546646
Iteration: 2, Func. Count: 28, Neg. LLF: 260.4395837601361
Iteration: 3, Func. Count: 41, Neg. LLF: 492.11568878435537
Iteration: 4, Func. Count: 53, Neg. LLF: 99.06953684553466
Iteration: 5, Func. Count: 65, Neg. LLF: 92.77650653709547
Iteration: 6, Func. Count: 77, Neg. LLF: 82.04919344502689
Iteration: 7, Func. Count: 88, Neg. LLF: 82.35832567405286
Iteration: 8, Func. Count: 100, Neg. LLF: 82.01885049076951
Iteration: 9, Func. Count: 112, Neg. LLF: 81.72803053398405
Iteration: 10, Func. Count: 123, Neg. LLF: 81.70036813465934
Iteration: 11, Func. Count: 134, Neg. LLF: 81.66256171540181
Iteration: 12, Func. Count: 145, Neg. LLF: 81.65709574555483
Iteration: 13, Func. Count: 156, Neg. LLF: 81.65701528653854
Iteration: 14, Func. Count: 167, Neg. LLF: 81.65700712341177
Iteration: 15, Func. Count: 177, Neg. LLF: 81.65700709407554
Optimization terminated successfully (Exit mode 0)
Current function value: 81.65700712341177
Iterations: 15
Function evaluations: 177
Gradient evaluations: 15
Iteration: 1, Func. Count: 13, Neg. LLF: 128.183491147337
Iteration: 2, Func. Count: 30, Neg. LLF: 338.1882790883572
Iteration: 3, Func. Count: 44, Neg. LLF: 454.88259342345185
Iteration: 4, Func. Count: 57, Neg. LLF: 1059.631841008195
Iteration: 5, Func. Count: 70, Neg. LLF: 87.27731030723376
Iteration: 6, Func. Count: 83, Neg. LLF: 81.93273957295231
Iteration: 7, Func. Count: 95, Neg. LLF: 81.91618003402088
Iteration: 8, Func. Count: 108, Neg. LLF: 81.74829572158197
Iteration: 9, Func. Count: 120, Neg. LLF: 83.56769696836837
Iteration: 10, Func. Count: 133, Neg. LLF: 81.66868163679162
Iteration: 11, Func. Count: 145, Neg. LLF: 81.65867501393123
Iteration: 12, Func. Count: 157, Neg. LLF: 81.65706056937631
Iteration: 13, Func. Count: 169, Neg. LLF: 81.65700763467864
Iteration: 14, Func. Count: 181, Neg. LLF: 81.65700664072712
Optimization terminated successfully (Exit mode 0)
Current function value: 81.65700664072712
Iterations: 14
Function evaluations: 181
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 109.26782068752149
Iteration: 2, Func. Count: 21, Neg. LLF: 136.4888106930341
Iteration: 3, Func. Count: 31, Neg. LLF: 2691.633560321041
Iteration: 4, Func. Count: 41, Neg. LLF: 231.14246564841636
Iteration: 5, Func. Count: 51, Neg. LLF: 503.1109710121026
Iteration: 6, Func. Count: 61, Neg. LLF: 96.87064382505783
Iteration: 7, Func. Count: 71, Neg. LLF: 89.73058354296249
Iteration: 8, Func. Count: 81, Neg. LLF: 115.26787098307429
Iteration: 9, Func. Count: 91, Neg. LLF: 86.8781490466657
Iteration: 10, Func. Count: 101, Neg. LLF: 86.66400244732306
Iteration: 11, Func. Count: 110, Neg. LLF: 87.06017141774562
Iteration: 12, Func. Count: 121, Neg. LLF: 86.62220280382732
Iteration: 13, Func. Count: 130, Neg. LLF: 86.61531595206822
Iteration: 14, Func. Count: 139, Neg. LLF: 86.61409197847749
Iteration: 15, Func. Count: 148, Neg. LLF: 86.61382548434803
Iteration: 16, Func. Count: 157, Neg. LLF: 86.61380478549054
Iteration: 17, Func. Count: 165, Neg. LLF: 86.61380478547167
Optimization terminated successfully (Exit mode 0)
Current function value: 86.61380478549054
Iterations: 17
Function evaluations: 165
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 149.94484896163704
Iteration: 2, Func. Count: 26, Neg. LLF: 205.68128198855925
Iteration: 3, Func. Count: 38, Neg. LLF: 160.15636848382496
Iteration: 4, Func. Count: 49, Neg. LLF: 84.85210020324415
Iteration: 5, Func. Count: 60, Neg. LLF: 82.62239160011354
Iteration: 6, Func. Count: 70, Neg. LLF: 82.36978738259343
Iteration: 7, Func. Count: 80, Neg. LLF: 97.28380070961927
Iteration: 8, Func. Count: 91, Neg. LLF: 82.24487376638325
Iteration: 9, Func. Count: 101, Neg. LLF: 82.20242084746195
Iteration: 10, Func. Count: 111, Neg. LLF: 82.16034782198889
Iteration: 11, Func. Count: 121, Neg. LLF: 82.15718780926062
Iteration: 12, Func. Count: 131, Neg. LLF: 82.15703583603394
Iteration: 13, Func. Count: 141, Neg. LLF: 82.15701080874973
Iteration: 14, Func. Count: 151, Neg. LLF: 82.15700716425684
Iteration: 15, Func. Count: 160, Neg. LLF: 82.1570071375451
Optimization terminated successfully (Exit mode 0)
Current function value: 82.15700716425684
Iterations: 15
Function evaluations: 160
Gradient evaluations: 15
Iteration: 1, Func. Count: 12, Neg. LLF: 138.57238596797802
Iteration: 2, Func. Count: 28, Neg. LLF: 171.60749206761602
Iteration: 3, Func. Count: 41, Neg. LLF: 1930359.2339747897
Iteration: 4, Func. Count: 53, Neg. LLF: 92.09775764889227
Iteration: 5, Func. Count: 65, Neg. LLF: 82.77591334833744
Iteration: 6, Func. Count: 76, Neg. LLF: 82.7503250782192
Iteration: 7, Func. Count: 88, Neg. LLF: 84.45523985865958
Iteration: 8, Func. Count: 100, Neg. LLF: 82.19553908244873
Iteration: 9, Func. Count: 111, Neg. LLF: 82.16052169582977
Iteration: 10, Func. Count: 122, Neg. LLF: 82.1579980497242
Iteration: 11, Func. Count: 133, Neg. LLF: 82.15704307290491
Iteration: 12, Func. Count: 144, Neg. LLF: 82.15701246724285
Iteration: 13, Func. Count: 155, Neg. LLF: 82.15700722891224
Iteration: 14, Func. Count: 165, Neg. LLF: 82.15700721108279
Optimization terminated successfully (Exit mode 0)
Current function value: 82.15700722891224
Iterations: 14
Function evaluations: 165
Gradient evaluations: 14
Iteration: 1, Func. Count: 13, Neg. LLF: 134.49753883659258
Iteration: 2, Func. Count: 30, Neg. LLF: 171.55597463744513
Iteration: 3, Func. Count: 44, Neg. LLF: 222.799477365976
Iteration: 4, Func. Count: 57, Neg. LLF: 384.6513275907284
Iteration: 5, Func. Count: 70, Neg. LLF: 87.38791325958364
Iteration: 6, Func. Count: 83, Neg. LLF: 100.75633122303955
Iteration: 7, Func. Count: 96, Neg. LLF: 81.85161282033167
Iteration: 8, Func. Count: 108, Neg. LLF: 81.95791476405147
Iteration: 9, Func. Count: 121, Neg. LLF: 81.69142317110881
Iteration: 10, Func. Count: 133, Neg. LLF: 81.64303235900985
Iteration: 11, Func. Count: 145, Neg. LLF: 81.63908504658022
Iteration: 12, Func. Count: 157, Neg. LLF: 81.6386064714946
Iteration: 13, Func. Count: 169, Neg. LLF: 81.63856686268174
Iteration: 14, Func. Count: 181, Neg. LLF: 81.63856376755675
Iteration: 15, Func. Count: 192, Neg. LLF: 81.63856373942895
Optimization terminated successfully (Exit mode 0)
Current function value: 81.63856376755675
Iterations: 15
Function evaluations: 192
Gradient evaluations: 15
Iteration: 1, Func. Count: 14, Neg. LLF: 129.97187012572394
Iteration: 2, Func. Count: 32, Neg. LLF: 1959238.1053079362
Iteration: 3, Func. Count: 47, Neg. LLF: 205.36114088121758
Iteration: 4, Func. Count: 61, Neg. LLF: 200.68819097458817
Iteration: 5, Func. Count: 75, Neg. LLF: 106.28370896240051
Iteration: 6, Func. Count: 89, Neg. LLF: 83.35115712391156
Iteration: 7, Func. Count: 103, Neg. LLF: 82.72009952547091
Iteration: 8, Func. Count: 117, Neg. LLF: 81.71559294769258
Iteration: 9, Func. Count: 130, Neg. LLF: 83.70145536760842
Iteration: 10, Func. Count: 145, Neg. LLF: 81.65447330998973
Iteration: 11, Func. Count: 158, Neg. LLF: 81.64262016102624
Iteration: 12, Func. Count: 171, Neg. LLF: 81.6389256907147
Iteration: 13, Func. Count: 184, Neg. LLF: 81.63864248808959
Iteration: 14, Func. Count: 197, Neg. LLF: 81.6385684657823
Iteration: 15, Func. Count: 210, Neg. LLF: 81.63856477672653
Iteration: 16, Func. Count: 223, Neg. LLF: 81.63856337473158
Iteration: 17, Func. Count: 235, Neg. LLF: 81.63856339727637
Optimization terminated successfully (Exit mode 0)
Current function value: 81.63856337473158
Iterations: 17
Function evaluations: 235
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 106.73741664846585
Iteration: 2, Func. Count: 23, Neg. LLF: 124.48903838722453
Iteration: 3, Func. Count: 34, Neg. LLF: 3889766.2390754954
Iteration: 4, Func. Count: 45, Neg. LLF: 338.7945700985266
Iteration: 5, Func. Count: 56, Neg. LLF: 336.63231077741244
Iteration: 6, Func. Count: 67, Neg. LLF: 90.85264655352462
Iteration: 7, Func. Count: 78, Neg. LLF: 87.5923133231546
Iteration: 8, Func. Count: 89, Neg. LLF: 92.57242642416352
Iteration: 9, Func. Count: 100, Neg. LLF: 87.50505981615416
Iteration: 10, Func. Count: 111, Neg. LLF: 86.78219531540412
Iteration: 11, Func. Count: 122, Neg. LLF: 86.6156784432214
Iteration: 12, Func. Count: 133, Neg. LLF: 86.527797504483
Iteration: 13, Func. Count: 143, Neg. LLF: 86.57581527518292
Iteration: 14, Func. Count: 154, Neg. LLF: 86.5218469409947
Iteration: 15, Func. Count: 164, Neg. LLF: 86.52142279653518
Iteration: 16, Func. Count: 174, Neg. LLF: 86.52140006788468
Iteration: 17, Func. Count: 184, Neg. LLF: 86.52139936549608
Optimization terminated successfully (Exit mode 0)
Current function value: 86.52139936549608
Iterations: 17
Function evaluations: 184
Gradient evaluations: 17
Iteration: 1, Func. Count: 12, Neg. LLF: 144.9254199116649
Iteration: 2, Func. Count: 29, Neg. LLF: 196.79858734788928
Iteration: 3, Func. Count: 42, Neg. LLF: 245.58916336112526
Iteration: 4, Func. Count: 54, Neg. LLF: 83.99811329272352
Iteration: 5, Func. Count: 66, Neg. LLF: 82.82475221271996
Iteration: 6, Func. Count: 78, Neg. LLF: 82.19889188676596
Iteration: 7, Func. Count: 89, Neg. LLF: 84.81876277210841
Iteration: 8, Func. Count: 101, Neg. LLF: 82.15925742424302
Iteration: 9, Func. Count: 112, Neg. LLF: 82.15713285348981
Iteration: 10, Func. Count: 123, Neg. LLF: 82.15700889473837
Iteration: 11, Func. Count: 134, Neg. LLF: 82.15700717096382
Iteration: 12, Func. Count: 144, Neg. LLF: 82.15700714414118
Optimization terminated successfully (Exit mode 0)
Current function value: 82.15700717096382
Iterations: 12
Function evaluations: 144
Gradient evaluations: 12
Iteration: 1, Func. Count: 13, Neg. LLF: 136.4993339488146
Iteration: 2, Func. Count: 30, Neg. LLF: 177.28290961275334
Iteration: 3, Func. Count: 44, Neg. LLF: 4071507.704549969
Iteration: 4, Func. Count: 57, Neg. LLF: 85.8646717006242
Iteration: 5, Func. Count: 70, Neg. LLF: 83.72152118590793
Iteration: 6, Func. Count: 83, Neg. LLF: 84.55839666919168
Iteration: 7, Func. Count: 96, Neg. LLF: 82.23233565722383
Iteration: 8, Func. Count: 108, Neg. LLF: 82.19188023726149
Iteration: 9, Func. Count: 120, Neg. LLF: 82.15960064047238
Iteration: 10, Func. Count: 132, Neg. LLF: 82.15731387202467
Iteration: 11, Func. Count: 144, Neg. LLF: 82.15701719972766
Iteration: 12, Func. Count: 156, Neg. LLF: 82.15701151737849
Iteration: 13, Func. Count: 168, Neg. LLF: 82.1570070748546
Iteration: 14, Func. Count: 179, Neg. LLF: 82.15700705708308
Optimization terminated successfully (Exit mode 0)
Current function value: 82.1570070748546
Iterations: 14
Function evaluations: 179
Gradient evaluations: 14
Iteration: 1, Func. Count: 14, Neg. LLF: 132.76663189341576
Iteration: 2, Func. Count: 32, Neg. LLF: 213.9984328384553
Iteration: 3, Func. Count: 47, Neg. LLF: 229.839919549386
Iteration: 4, Func. Count: 61, Neg. LLF: 361.4440218109907
Iteration: 5, Func. Count: 75, Neg. LLF: 89.87507311194553
Iteration: 6, Func. Count: 89, Neg. LLF: 85.82241795304644
Iteration: 7, Func. Count: 103, Neg. LLF: 82.13034265993666
Iteration: 8, Func. Count: 116, Neg. LLF: 83.51065768726454
Iteration: 9, Func. Count: 131, Neg. LLF: 84.06102288009038
Iteration: 10, Func. Count: 145, Neg. LLF: 81.69984149217407
Iteration: 11, Func. Count: 158, Neg. LLF: 81.66313147986881
Iteration: 12, Func. Count: 171, Neg. LLF: 81.64162520039376
Iteration: 13, Func. Count: 184, Neg. LLF: 81.63890133064828
Iteration: 14, Func. Count: 197, Neg. LLF: 81.63862170196381
Iteration: 15, Func. Count: 210, Neg. LLF: 81.63857071950845
Iteration: 16, Func. Count: 223, Neg. LLF: 81.6385643625558
Iteration: 17, Func. Count: 236, Neg. LLF: 81.63856337895622
Optimization terminated successfully (Exit mode 0)
Current function value: 81.63856337895622
Iterations: 17
Function evaluations: 236
Gradient evaluations: 17
Iteration: 1, Func. Count: 15, Neg. LLF: 2259866.270116087
Iteration: 2, Func. Count: 31, Neg. LLF: 2811.7120288667857
Iteration: 3, Func. Count: 46, Neg. LLF: 322.28219646546165
Iteration: 4, Func. Count: 61, Neg. LLF: 86.19244404653772
Iteration: 5, Func. Count: 76, Neg. LLF: 86.0270650996617
Iteration: 6, Func. Count: 91, Neg. LLF: 82.42680254513138
Iteration: 7, Func. Count: 105, Neg. LLF: 82.86844673216676
Iteration: 8, Func. Count: 120, Neg. LLF: 85.38980951552205
Iteration: 9, Func. Count: 136, Neg. LLF: 82.29086262344738
Iteration: 10, Func. Count: 151, Neg. LLF: 82.25643455638335
Iteration: 11, Func. Count: 166, Neg. LLF: 81.84885759034778
Iteration: 12, Func. Count: 180, Neg. LLF: 81.76956062830955
Iteration: 13, Func. Count: 194, Neg. LLF: 81.69900737231724
Iteration: 14, Func. Count: 208, Neg. LLF: 81.66715943716922
Iteration: 15, Func. Count: 222, Neg. LLF: 81.64646060660603
Iteration: 16, Func. Count: 236, Neg. LLF: 81.6432625842565
Iteration: 17, Func. Count: 250, Neg. LLF: 81.63872445997288
Iteration: 18, Func. Count: 264, Neg. LLF: 81.63857826507102
Iteration: 19, Func. Count: 278, Neg. LLF: 81.63856516965346
Iteration: 20, Func. Count: 292, Neg. LLF: 81.63856367515913
Iteration: 21, Func. Count: 305, Neg. LLF: 81.6385636977374
Optimization terminated successfully (Exit mode 0)
Current function value: 81.63856367515913
Iterations: 21
Function evaluations: 305
Gradient evaluations: 21
Iteration: 1, Func. Count: 8, Neg. LLF: 107.72058289880549
Iteration: 2, Func. Count: 17, Neg. LLF: 146.45987295680692
Iteration: 3, Func. Count: 25, Neg. LLF: 3291.25020155762
Iteration: 4, Func. Count: 33, Neg. LLF: 116.44305401271328
Iteration: 5, Func. Count: 41, Neg. LLF: 6965.6647713280645
Iteration: 6, Func. Count: 49, Neg. LLF: 90.7911182420373
Iteration: 7, Func. Count: 57, Neg. LLF: 105.60151129031796
Iteration: 8, Func. Count: 65, Neg. LLF: 92.22302666403928
Iteration: 9, Func. Count: 73, Neg. LLF: 87.1265807210256
Iteration: 10, Func. Count: 81, Neg. LLF: 114.82602943646299
Iteration: 11, Func. Count: 89, Neg. LLF: 82.77154390808916
Iteration: 12, Func. Count: 96, Neg. LLF: 82.74633332792996
Iteration: 13, Func. Count: 103, Neg. LLF: 82.7164858702408
Iteration: 14, Func. Count: 110, Neg. LLF: 82.69924129485311
Iteration: 15, Func. Count: 117, Neg. LLF: 82.69896569805027
Iteration: 16, Func. Count: 124, Neg. LLF: 82.69893275270755
Iteration: 17, Func. Count: 131, Neg. LLF: 82.69892576860535
Iteration: 18, Func. Count: 137, Neg. LLF: 82.6989257685986
Optimization terminated successfully (Exit mode 0)
Current function value: 82.69892576860535
Iterations: 18
Function evaluations: 137
Gradient evaluations: 18
Iteration: 1, Func. Count: 9, Neg. LLF: 147.44062375062916
Iteration: 2, Func. Count: 23, Neg. LLF: 271.92046274337935
Iteration: 3, Func. Count: 33, Neg. LLF: 155.54223740272198
Iteration: 4, Func. Count: 42, Neg. LLF: 83.5737491722381
Iteration: 5, Func. Count: 50, Neg. LLF: 90.52136564875643
Iteration: 6, Func. Count: 59, Neg. LLF: 92.45374805065603
Iteration: 7, Func. Count: 68, Neg. LLF: 88.19087413478266
Iteration: 8, Func. Count: 78, Neg. LLF: 83.38822279834098
Iteration: 9, Func. Count: 87, Neg. LLF: 83.07451235462985
Iteration: 10, Func. Count: 96, Neg. LLF: 82.80819645259695
Iteration: 11, Func. Count: 104, Neg. LLF: 82.75616549609585
Iteration: 12, Func. Count: 112, Neg. LLF: 82.73817812638866
Iteration: 13, Func. Count: 120, Neg. LLF: 82.70534829997732
Iteration: 14, Func. Count: 128, Neg. LLF: 82.70370650195932
Iteration: 15, Func. Count: 136, Neg. LLF: 82.70132072634465
Iteration: 16, Func. Count: 144, Neg. LLF: 82.69988232240452
Iteration: 17, Func. Count: 152, Neg. LLF: 82.69920351258759
Iteration: 18, Func. Count: 160, Neg. LLF: 82.69900546939262
Iteration: 19, Func. Count: 168, Neg. LLF: 82.69894092841004
Iteration: 20, Func. Count: 176, Neg. LLF: 82.69892716564028
Iteration: 21, Func. Count: 184, Neg. LLF: 82.69892572626331
Iteration: 22, Func. Count: 191, Neg. LLF: 82.69892573363006
Optimization terminated successfully (Exit mode 0)
Current function value: 82.69892572626331
Iterations: 22
Function evaluations: 191
Gradient evaluations: 22
Iteration: 1, Func. Count: 10, Neg. LLF: 886.3058247408294
Iteration: 2, Func. Count: 20, Neg. LLF: 869.7422039150588
Iteration: 3, Func. Count: 30, Neg. LLF: 93.08481793228394
Iteration: 4, Func. Count: 41, Neg. LLF: 139.86807975047373
Iteration: 5, Func. Count: 51, Neg. LLF: 96.79146652916887
Iteration: 6, Func. Count: 61, Neg. LLF: 83.58789198782789
Iteration: 7, Func. Count: 71, Neg. LLF: 85.81692618789691
Iteration: 8, Func. Count: 81, Neg. LLF: 83.33082747740968
Iteration: 9, Func. Count: 91, Neg. LLF: 83.2342936203041
Iteration: 10, Func. Count: 101, Neg. LLF: 82.71932640495862
Iteration: 11, Func. Count: 110, Neg. LLF: 82.67979454324657
Iteration: 12, Func. Count: 119, Neg. LLF: 82.68410652614531
Iteration: 13, Func. Count: 129, Neg. LLF: 82.67617321900615
Iteration: 14, Func. Count: 138, Neg. LLF: 82.67598372213469
Iteration: 15, Func. Count: 147, Neg. LLF: 82.6759644889581
Iteration: 16, Func. Count: 156, Neg. LLF: 82.67596096450328
Iteration: 17, Func. Count: 164, Neg. LLF: 82.67596096455287
Optimization terminated successfully (Exit mode 0)
Current function value: 82.67596096450328
Iterations: 17
Function evaluations: 164
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 1608.7004496786685
Iteration: 2, Func. Count: 22, Neg. LLF: 7631.237063348065
Iteration: 3, Func. Count: 33, Neg. LLF: 1620.327118590065
Iteration: 4, Func. Count: 44, Neg. LLF: 85.24435660898068
Iteration: 5, Func. Count: 55, Neg. LLF: 110.80107908837043
Iteration: 6, Func. Count: 66, Neg. LLF: 83.88681072572781
Iteration: 7, Func. Count: 77, Neg. LLF: 95.71324099816138
Iteration: 8, Func. Count: 88, Neg. LLF: 87.3100906649444
Iteration: 9, Func. Count: 99, Neg. LLF: 82.37079176232243
Iteration: 10, Func. Count: 109, Neg. LLF: 86.41828947225734
Iteration: 11, Func. Count: 121, Neg. LLF: 82.85884246332023
Iteration: 12, Func. Count: 132, Neg. LLF: 82.36958242290059
Iteration: 13, Func. Count: 143, Neg. LLF: 82.28627734888136
Iteration: 14, Func. Count: 153, Neg. LLF: 82.28490169241454
Iteration: 15, Func. Count: 163, Neg. LLF: 82.28476967552504
Iteration: 16, Func. Count: 173, Neg. LLF: 82.28476447954024
Iteration: 17, Func. Count: 182, Neg. LLF: 82.28476447951351
Optimization terminated successfully (Exit mode 0)
Current function value: 82.28476447954024
Iterations: 17
Function evaluations: 182
Gradient evaluations: 17
Iteration: 1, Func. Count: 12, Neg. LLF: 16658.155826937087
Iteration: 2, Func. Count: 24, Neg. LLF: 570.4390427084402
Iteration: 3, Func. Count: 36, Neg. LLF: 99.21334715756065
Iteration: 4, Func. Count: 48, Neg. LLF: 85.84590359791743
Iteration: 5, Func. Count: 60, Neg. LLF: 118.82240353862693
Iteration: 6, Func. Count: 72, Neg. LLF: 93.28539625212804
Iteration: 7, Func. Count: 84, Neg. LLF: 86.50973815775431
Iteration: 8, Func. Count: 96, Neg. LLF: 82.70685027833281
Iteration: 9, Func. Count: 108, Neg. LLF: 84.72997064171636
Iteration: 10, Func. Count: 120, Neg. LLF: 82.34271335199236
Iteration: 11, Func. Count: 131, Neg. LLF: 83.08560557052871
Iteration: 12, Func. Count: 144, Neg. LLF: 82.58520029586285
Iteration: 13, Func. Count: 156, Neg. LLF: 82.28935643534344
Iteration: 14, Func. Count: 167, Neg. LLF: 82.32855072360627
Iteration: 15, Func. Count: 179, Neg. LLF: 82.2890052186804
Iteration: 16, Func. Count: 191, Neg. LLF: 82.28486820318068
Iteration: 17, Func. Count: 202, Neg. LLF: 82.28476567963914
Iteration: 18, Func. Count: 213, Neg. LLF: 82.28476401234693
Iteration: 19, Func. Count: 223, Neg. LLF: 82.2847640237356
Optimization terminated successfully (Exit mode 0)
Current function value: 82.28476401234693
Iterations: 19
Function evaluations: 223
Gradient evaluations: 19
Iteration: 1, Func. Count: 9, Neg. LLF: 108.55647772655026
Iteration: 2, Func. Count: 19, Neg. LLF: 149.06269586516012
Iteration: 3, Func. Count: 28, Neg. LLF: 1325.2793817703284
Iteration: 4, Func. Count: 37, Neg. LLF: 117.49907226119053
Iteration: 5, Func. Count: 46, Neg. LLF: 2103.758275570359
Iteration: 6, Func. Count: 55, Neg. LLF: 96.08985041381337
Iteration: 7, Func. Count: 64, Neg. LLF: 102.02857498624908
Iteration: 8, Func. Count: 73, Neg. LLF: 92.01271944809336
Iteration: 9, Func. Count: 82, Neg. LLF: 107.1447461253369
Iteration: 10, Func. Count: 91, Neg. LLF: 91.88459999846575
Iteration: 11, Func. Count: 100, Neg. LLF: 84.22939573387552
Iteration: 12, Func. Count: 109, Neg. LLF: 84.08971262018285
Iteration: 13, Func. Count: 118, Neg. LLF: 82.73353285499849
Iteration: 14, Func. Count: 126, Neg. LLF: 82.70901366702567
Iteration: 15, Func. Count: 134, Neg. LLF: 82.69425661491506
Iteration: 16, Func. Count: 142, Neg. LLF: 82.69337147399986
Iteration: 17, Func. Count: 150, Neg. LLF: 82.69324487239427
Iteration: 18, Func. Count: 158, Neg. LLF: 82.69322174407874
Iteration: 19, Func. Count: 166, Neg. LLF: 82.69322006475008
Iteration: 20, Func. Count: 173, Neg. LLF: 82.69322006474033
Optimization terminated successfully (Exit mode 0)
Current function value: 82.69322006475008
Iterations: 20
Function evaluations: 173
Gradient evaluations: 20
Iteration: 1, Func. Count: 10, Neg. LLF: 150.21916364435776
Iteration: 2, Func. Count: 25, Neg. LLF: 159.2752885048145
Iteration: 3, Func. Count: 36, Neg. LLF: 94.72424752321312
Iteration: 4, Func. Count: 46, Neg. LLF: 99.26706293151942
Iteration: 5, Func. Count: 56, Neg. LLF: 90.9821128484471
Iteration: 6, Func. Count: 66, Neg. LLF: 88.21276745333054
Iteration: 7, Func. Count: 76, Neg. LLF: 91.24564745136423
Iteration: 8, Func. Count: 86, Neg. LLF: 83.6959166093433
Iteration: 9, Func. Count: 96, Neg. LLF: 83.66009889595266
Iteration: 10, Func. Count: 106, Neg. LLF: 83.13330649478694
Iteration: 11, Func. Count: 116, Neg. LLF: 82.78382258569117
Iteration: 12, Func. Count: 125, Neg. LLF: 82.71831622113154
Iteration: 13, Func. Count: 134, Neg. LLF: 82.70199684702673
Iteration: 14, Func. Count: 143, Neg. LLF: 82.69583469171722
Iteration: 15, Func. Count: 152, Neg. LLF: 82.69463424475418
Iteration: 16, Func. Count: 161, Neg. LLF: 82.69388489365672
Iteration: 17, Func. Count: 170, Neg. LLF: 82.69356886932346
Iteration: 18, Func. Count: 179, Neg. LLF: 82.69326936664133
Iteration: 19, Func. Count: 188, Neg. LLF: 82.69322378037349
Iteration: 20, Func. Count: 197, Neg. LLF: 82.69322000874126
Iteration: 21, Func. Count: 205, Neg. LLF: 82.69322001812141
Optimization terminated successfully (Exit mode 0)
Current function value: 82.69322000874126
Iterations: 21
Function evaluations: 205
Gradient evaluations: 21
Iteration: 1, Func. Count: 11, Neg. LLF: 167.94227996939
Iteration: 2, Func. Count: 23, Neg. LLF: 1037.8536103737536
Iteration: 3, Func. Count: 34, Neg. LLF: 158.04745101004872
Iteration: 4, Func. Count: 45, Neg. LLF: 89.27756760490509
Iteration: 5, Func. Count: 57, Neg. LLF: 84.7877929449704
Iteration: 6, Func. Count: 68, Neg. LLF: 85.3538004524761
Iteration: 7, Func. Count: 79, Neg. LLF: 99.16759692149363
Iteration: 8, Func. Count: 90, Neg. LLF: 86.57883945405428
Iteration: 9, Func. Count: 101, Neg. LLF: 83.31027655781243
Iteration: 10, Func. Count: 112, Neg. LLF: 84.77298335982451
Iteration: 11, Func. Count: 123, Neg. LLF: 82.72079540873965
Iteration: 12, Func. Count: 134, Neg. LLF: 82.66284024644634
Iteration: 13, Func. Count: 144, Neg. LLF: 82.66223897939874
Iteration: 14, Func. Count: 154, Neg. LLF: 82.66181595023143
Iteration: 15, Func. Count: 164, Neg. LLF: 82.66177115620998
Iteration: 16, Func. Count: 174, Neg. LLF: 82.6617624327701
Iteration: 17, Func. Count: 184, Neg. LLF: 82.66176119348168
Iteration: 18, Func. Count: 193, Neg. LLF: 82.66176119348034
Optimization terminated successfully (Exit mode 0)
Current function value: 82.66176119348168
Iterations: 18
Function evaluations: 193
Gradient evaluations: 18
Iteration: 1, Func. Count: 12, Neg. LLF: 296.9472072035202
Iteration: 2, Func. Count: 25, Neg. LLF: 605.4067207965198
Iteration: 3, Func. Count: 37, Neg. LLF: 215.61568620795038
Iteration: 4, Func. Count: 49, Neg. LLF: 86.4061439512714
Iteration: 5, Func. Count: 62, Neg. LLF: 98.56074245647177
Iteration: 6, Func. Count: 74, Neg. LLF: 85.06763273129611
Iteration: 7, Func. Count: 86, Neg. LLF: 82.94768879939207
Iteration: 8, Func. Count: 98, Neg. LLF: 82.1733113572814
Iteration: 9, Func. Count: 109, Neg. LLF: 82.45263370378663
Iteration: 10, Func. Count: 121, Neg. LLF: 84.81786214662036
Iteration: 11, Func. Count: 133, Neg. LLF: 82.24773886056784
Iteration: 12, Func. Count: 145, Neg. LLF: 81.9604748679162
Iteration: 13, Func. Count: 156, Neg. LLF: 81.91557429457474
Iteration: 14, Func. Count: 167, Neg. LLF: 81.89761196325068
Iteration: 15, Func. Count: 178, Neg. LLF: 81.89531726534018
Iteration: 16, Func. Count: 189, Neg. LLF: 81.89525094108728
Iteration: 17, Func. Count: 200, Neg. LLF: 81.89524400381886
Iteration: 18, Func. Count: 210, Neg. LLF: 81.8952439968894
Optimization terminated successfully (Exit mode 0)
Current function value: 81.89524400381886
Iterations: 18
Function evaluations: 210
Gradient evaluations: 18
Iteration: 1, Func. Count: 13, Neg. LLF: 252.91017124699277
Iteration: 2, Func. Count: 26, Neg. LLF: 1321.0426142758677
Iteration: 3, Func. Count: 39, Neg. LLF: 91.24248394115484
Iteration: 4, Func. Count: 54, Neg. LLF: 1351.638982333112
Iteration: 5, Func. Count: 67, Neg. LLF: 94.60032200392948
Iteration: 6, Func. Count: 80, Neg. LLF: 82.8983330466692
Iteration: 7, Func. Count: 92, Neg. LLF: 87.27447817560056
Iteration: 8, Func. Count: 105, Neg. LLF: 82.81930521576783
Iteration: 9, Func. Count: 118, Neg. LLF: 82.33452791508378
Iteration: 10, Func. Count: 131, Neg. LLF: 82.03636918587833
Iteration: 11, Func. Count: 144, Neg. LLF: 92.15681765830402
Iteration: 12, Func. Count: 158, Neg. LLF: 81.94872567866867
Iteration: 13, Func. Count: 170, Neg. LLF: 81.91521509260627
Iteration: 14, Func. Count: 182, Neg. LLF: 81.89571582159982
Iteration: 15, Func. Count: 194, Neg. LLF: 81.89525926592667
Iteration: 16, Func. Count: 206, Neg. LLF: 81.89524378322666
Iteration: 17, Func. Count: 217, Neg. LLF: 81.89524382353177
Optimization terminated successfully (Exit mode 0)
Current function value: 81.89524378322666
Iterations: 17
Function evaluations: 217
Gradient evaluations: 17
Iteration: 1, Func. Count: 10, Neg. LLF: 108.85512058962541
Iteration: 2, Func. Count: 21, Neg. LLF: 95.73316531669867
Iteration: 3, Func. Count: 31, Neg. LLF: 139.66355024099167
Iteration: 4, Func. Count: 41, Neg. LLF: 1725.074230081054
Iteration: 5, Func. Count: 51, Neg. LLF: 123.29081987445417
Iteration: 6, Func. Count: 61, Neg. LLF: 96.07920167594418
Iteration: 7, Func. Count: 71, Neg. LLF: 107.10784043008422
Iteration: 8, Func. Count: 81, Neg. LLF: 111.51360173752687
Iteration: 9, Func. Count: 91, Neg. LLF: 92.75217694826937
Iteration: 10, Func. Count: 101, Neg. LLF: 142.70924772509076
Iteration: 11, Func. Count: 111, Neg. LLF: 82.35287859230682
Iteration: 12, Func. Count: 120, Neg. LLF: 84.50644337128293
Iteration: 13, Func. Count: 130, Neg. LLF: 82.63889610348625
Iteration: 14, Func. Count: 140, Neg. LLF: 82.08237263354579
Iteration: 15, Func. Count: 149, Neg. LLF: 82.05952851312828
Iteration: 16, Func. Count: 158, Neg. LLF: 82.02955265625327
Iteration: 17, Func. Count: 167, Neg. LLF: 82.02071370246564
Iteration: 18, Func. Count: 176, Neg. LLF: 82.0168194038674
Iteration: 19, Func. Count: 185, Neg. LLF: 82.01472827749703
Iteration: 20, Func. Count: 194, Neg. LLF: 82.014204689899
Iteration: 21, Func. Count: 203, Neg. LLF: 82.01416487296258
Iteration: 22, Func. Count: 212, Neg. LLF: 82.01416370045939
Iteration: 23, Func. Count: 220, Neg. LLF: 82.01416369237344
Optimization terminated successfully (Exit mode 0)
Current function value: 82.01416370045939
Iterations: 23
Function evaluations: 220
Gradient evaluations: 23
Iteration: 1, Func. Count: 11, Neg. LLF: 142.46631280140264
Iteration: 2, Func. Count: 26, Neg. LLF: 3963.781556816077
Iteration: 3, Func. Count: 38, Neg. LLF: 11360643.469177024
Iteration: 4, Func. Count: 49, Neg. LLF: 88.32151160289095
Iteration: 5, Func. Count: 60, Neg. LLF: 87.87678214991587
Iteration: 6, Func. Count: 71, Neg. LLF: 85.68069979265641
Iteration: 7, Func. Count: 82, Neg. LLF: 82.70777172351428
Iteration: 8, Func. Count: 93, Neg. LLF: 82.32061112598589
Iteration: 9, Func. Count: 104, Neg. LLF: 81.97856446000613
Iteration: 10, Func. Count: 114, Neg. LLF: 82.67677174377643
Iteration: 11, Func. Count: 125, Neg. LLF: 81.9299726583523
Iteration: 12, Func. Count: 135, Neg. LLF: 81.92540921628459
Iteration: 13, Func. Count: 145, Neg. LLF: 81.92386179112191
Iteration: 14, Func. Count: 155, Neg. LLF: 81.92360638324564
Iteration: 15, Func. Count: 165, Neg. LLF: 81.92354127706876
Iteration: 16, Func. Count: 175, Neg. LLF: 81.92353937097216
Iteration: 17, Func. Count: 184, Neg. LLF: 81.92353934412576
Optimization terminated successfully (Exit mode 0)
Current function value: 81.92353937097216
Iterations: 17
Function evaluations: 184
Gradient evaluations: 17
Iteration: 1, Func. Count: 12, Neg. LLF: 138.45107563953005
Iteration: 2, Func. Count: 28, Neg. LLF: 4426882.504123749
Iteration: 3, Func. Count: 41, Neg. LLF: 1721.095285895629
Iteration: 4, Func. Count: 53, Neg. LLF: 88.62704831062271
Iteration: 5, Func. Count: 65, Neg. LLF: 85.08860923766963
Iteration: 6, Func. Count: 77, Neg. LLF: 82.03573348115839
Iteration: 7, Func. Count: 88, Neg. LLF: 86.85311751840739
Iteration: 8, Func. Count: 100, Neg. LLF: 82.4037749767032
Iteration: 9, Func. Count: 112, Neg. LLF: 84.45360201074735
Iteration: 10, Func. Count: 124, Neg. LLF: 81.41108039209911
Iteration: 11, Func. Count: 135, Neg. LLF: 81.39807856318382
Iteration: 12, Func. Count: 146, Neg. LLF: 81.3920238045627
Iteration: 13, Func. Count: 157, Neg. LLF: 81.38923810684193
Iteration: 14, Func. Count: 168, Neg. LLF: 81.38900208629903
Iteration: 15, Func. Count: 179, Neg. LLF: 81.38898973757328
Iteration: 16, Func. Count: 190, Neg. LLF: 81.38898868554853
Iteration: 17, Func. Count: 200, Neg. LLF: 81.38898862573856
Optimization terminated successfully (Exit mode 0)
Current function value: 81.38898868554853
Iterations: 17
Function evaluations: 200
Gradient evaluations: 17
Iteration: 1, Func. Count: 13, Neg. LLF: 480.96333122796443
Iteration: 2, Func. Count: 27, Neg. LLF: 1070.0029523402195
Iteration: 3, Func. Count: 40, Neg. LLF: 1971.3531488661167
Iteration: 4, Func. Count: 53, Neg. LLF: 106.0535592069962
Iteration: 5, Func. Count: 66, Neg. LLF: 122.90932579185726
Iteration: 6, Func. Count: 79, Neg. LLF: 83.15558683674936
Iteration: 7, Func. Count: 92, Neg. LLF: 100.32749930220602
Iteration: 8, Func. Count: 105, Neg. LLF: 84.198592949209
Iteration: 9, Func. Count: 118, Neg. LLF: 82.16042348873518
Iteration: 10, Func. Count: 131, Neg. LLF: 82.1030449366459
Iteration: 11, Func. Count: 144, Neg. LLF: 81.93493988544176
Iteration: 12, Func. Count: 156, Neg. LLF: 81.92434433606171
Iteration: 13, Func. Count: 169, Neg. LLF: 82.62680048446732
Iteration: 14, Func. Count: 182, Neg. LLF: 81.5718916906285
Iteration: 15, Func. Count: 194, Neg. LLF: 81.42417205143006
Iteration: 16, Func. Count: 206, Neg. LLF: 81.44407797286085
Iteration: 17, Func. Count: 219, Neg. LLF: 81.39131773446037
Iteration: 18, Func. Count: 231, Neg. LLF: 81.38912986309143
Iteration: 19, Func. Count: 243, Neg. LLF: 81.38902615290478
Iteration: 20, Func. Count: 255, Neg. LLF: 81.38899245357044
Iteration: 21, Func. Count: 267, Neg. LLF: 81.38898946023232
Iteration: 22, Func. Count: 279, Neg. LLF: 81.38898870562073
Optimization terminated successfully (Exit mode 0)
Current function value: 81.38898870562073
Iterations: 22
Function evaluations: 279
Gradient evaluations: 22
Iteration: 1, Func. Count: 14, Neg. LLF: 335.51254398525145
Iteration: 2, Func. Count: 29, Neg. LLF: 1463.4925379031574
Iteration: 3, Func. Count: 43, Neg. LLF: 1200.6787198543416
Iteration: 4, Func. Count: 57, Neg. LLF: 480.1541444645494
Iteration: 5, Func. Count: 71, Neg. LLF: 353.72286975343
Iteration: 6, Func. Count: 85, Neg. LLF: 83.42655264820324
Iteration: 7, Func. Count: 99, Neg. LLF: 84.96060635180352
Iteration: 8, Func. Count: 113, Neg. LLF: 82.90320984708697
Iteration: 9, Func. Count: 127, Neg. LLF: 80.87836390151007
Iteration: 10, Func. Count: 140, Neg. LLF: 90.00608626439576
Iteration: 11, Func. Count: 154, Neg. LLF: 83.94850781760567
Iteration: 12, Func. Count: 169, Neg. LLF: 80.47077095845077
Iteration: 13, Func. Count: 182, Neg. LLF: 83.97943279943456
Iteration: 14, Func. Count: 196, Neg. LLF: 80.44592588055791
Iteration: 15, Func. Count: 209, Neg. LLF: 80.44028997325066
Iteration: 16, Func. Count: 222, Neg. LLF: 80.4387953356804
Iteration: 17, Func. Count: 235, Neg. LLF: 80.43867339455227
Iteration: 18, Func. Count: 248, Neg. LLF: 80.43864728667673
Iteration: 19, Func. Count: 261, Neg. LLF: 80.43864562408142
Iteration: 20, Func. Count: 273, Neg. LLF: 80.43864556878232
Optimization terminated successfully (Exit mode 0)
Current function value: 80.43864562408142
Iterations: 20
Function evaluations: 273
Gradient evaluations: 20
Iteration: 1, Func. Count: 11, Neg. LLF: 108.99407932322892
Iteration: 2, Func. Count: 23, Neg. LLF: 548.3156371621469
Iteration: 3, Func. Count: 34, Neg. LLF: 128.15630287412884
Iteration: 4, Func. Count: 45, Neg. LLF: 1033.0567044065617
Iteration: 5, Func. Count: 56, Neg. LLF: 1110.3821027661184
Iteration: 6, Func. Count: 67, Neg. LLF: 122.56883717197123
Iteration: 7, Func. Count: 78, Neg. LLF: 96.03473836209298
Iteration: 8, Func. Count: 89, Neg. LLF: 93.77609199701712
Iteration: 9, Func. Count: 100, Neg. LLF: 94.51293414477843
Iteration: 10, Func. Count: 111, Neg. LLF: 93.9505915361257
Iteration: 11, Func. Count: 122, Neg. LLF: 89.39401820241636
Iteration: 12, Func. Count: 133, Neg. LLF: 98.80935324310845
Iteration: 13, Func. Count: 144, Neg. LLF: 82.49092486591971
Iteration: 14, Func. Count: 154, Neg. LLF: 82.28660295298127
Iteration: 15, Func. Count: 164, Neg. LLF: 82.16356769452602
Iteration: 16, Func. Count: 174, Neg. LLF: 82.14917961658524
Iteration: 17, Func. Count: 185, Neg. LLF: 82.00406933714507
Iteration: 18, Func. Count: 195, Neg. LLF: 82.00553866821254
Iteration: 19, Func. Count: 206, Neg. LLF: 82.01053272035436
Iteration: 20, Func. Count: 217, Neg. LLF: 81.68992839785899
Iteration: 21, Func. Count: 227, Neg. LLF: 81.65810362653161
Iteration: 22, Func. Count: 237, Neg. LLF: 81.65125894793485
Iteration: 23, Func. Count: 247, Neg. LLF: 81.6491556197048
Iteration: 24, Func. Count: 257, Neg. LLF: 81.64911875260833
Iteration: 25, Func. Count: 267, Neg. LLF: 81.64911761879847
Iteration: 26, Func. Count: 276, Neg. LLF: 81.64911760313602
Optimization terminated successfully (Exit mode 0)
Current function value: 81.64911761879847
Iterations: 26
Function evaluations: 276
Gradient evaluations: 26
Iteration: 1, Func. Count: 12, Neg. LLF: 139.27310555857832
Iteration: 2, Func. Count: 29, Neg. LLF: 222.43130140210417
Iteration: 3, Func. Count: 42, Neg. LLF: 5894118.420428746
Iteration: 4, Func. Count: 54, Neg. LLF: 90.9851396906576
Iteration: 5, Func. Count: 66, Neg. LLF: 86.2273763489948
Iteration: 6, Func. Count: 78, Neg. LLF: 94.7065549599437
Iteration: 7, Func. Count: 90, Neg. LLF: 86.92138353034173
Iteration: 8, Func. Count: 102, Neg. LLF: 83.796384691413
Iteration: 9, Func. Count: 114, Neg. LLF: 83.22352222362836
Iteration: 10, Func. Count: 126, Neg. LLF: 82.83651685154447
Iteration: 11, Func. Count: 138, Neg. LLF: 82.77934040132223
Iteration: 12, Func. Count: 150, Neg. LLF: 82.01947101880204
Iteration: 13, Func. Count: 161, Neg. LLF: 83.77400286050363
Iteration: 14, Func. Count: 173, Neg. LLF: 82.30923726638578
Iteration: 15, Func. Count: 185, Neg. LLF: 81.83776940503243
Iteration: 16, Func. Count: 196, Neg. LLF: 81.73796169718737
Iteration: 17, Func. Count: 207, Neg. LLF: 81.71103389129242
Iteration: 18, Func. Count: 218, Neg. LLF: 81.67983407464355
Iteration: 19, Func. Count: 229, Neg. LLF: 81.65145391272078
Iteration: 20, Func. Count: 240, Neg. LLF: 81.64934851420912
Iteration: 21, Func. Count: 251, Neg. LLF: 81.64912735805176
Iteration: 22, Func. Count: 262, Neg. LLF: 81.64911809585195
Iteration: 23, Func. Count: 272, Neg. LLF: 81.64911809358362
Optimization terminated successfully (Exit mode 0)
Current function value: 81.64911809585195
Iterations: 23
Function evaluations: 272
Gradient evaluations: 23
Iteration: 1, Func. Count: 13, Neg. LLF: 134.72298012005223
Iteration: 2, Func. Count: 31, Neg. LLF: 181.15907022045624
Iteration: 3, Func. Count: 45, Neg. LLF: 1816471.5527870466
Iteration: 4, Func. Count: 58, Neg. LLF: 193.65751197542966
Iteration: 5, Func. Count: 71, Neg. LLF: 99.26875453737722
Iteration: 6, Func. Count: 84, Neg. LLF: 87.8072110537231
Iteration: 7, Func. Count: 97, Neg. LLF: 85.42926451680519
Iteration: 8, Func. Count: 110, Neg. LLF: 85.17103416029742
Iteration: 9, Func. Count: 123, Neg. LLF: 82.05419541954228
Iteration: 10, Func. Count: 135, Neg. LLF: 81.90956038692833
Iteration: 11, Func. Count: 148, Neg. LLF: 82.219778615674
Iteration: 12, Func. Count: 161, Neg. LLF: 82.49426599217661
Iteration: 13, Func. Count: 174, Neg. LLF: 81.33083343158867
Iteration: 14, Func. Count: 186, Neg. LLF: 81.29923152348465
Iteration: 15, Func. Count: 198, Neg. LLF: 81.29689576625442
Iteration: 16, Func. Count: 210, Neg. LLF: 81.29671133672298
Iteration: 17, Func. Count: 222, Neg. LLF: 81.2967006960374
Iteration: 18, Func. Count: 234, Neg. LLF: 81.2966992097837
Iteration: 19, Func. Count: 245, Neg. LLF: 81.29669915168527
Optimization terminated successfully (Exit mode 0)
Current function value: 81.2966992097837
Iterations: 19
Function evaluations: 245
Gradient evaluations: 19
Iteration: 1, Func. Count: 14, Neg. LLF: 2613874.3798749773
Iteration: 2, Func. Count: 29, Neg. LLF: 2936595.2855515033
Iteration: 3, Func. Count: 43, Neg. LLF: 629.0680425555353
Iteration: 4, Func. Count: 57, Neg. LLF: 193.7246420086471
Iteration: 5, Func. Count: 71, Neg. LLF: 87.30479912969146
Iteration: 6, Func. Count: 85, Neg. LLF: 83.60627879059992
Iteration: 7, Func. Count: 99, Neg. LLF: 82.93353129212825
Iteration: 8, Func. Count: 113, Neg. LLF: 84.40184097105222
Iteration: 9, Func. Count: 127, Neg. LLF: 81.77032710164617
Iteration: 10, Func. Count: 140, Neg. LLF: 82.29820289217525
Iteration: 11, Func. Count: 154, Neg. LLF: 82.28679997166054
Iteration: 12, Func. Count: 168, Neg. LLF: 81.6118468454179
Iteration: 13, Func. Count: 181, Neg. LLF: 81.47642360870825
Iteration: 14, Func. Count: 194, Neg. LLF: 81.43902988702146
Iteration: 15, Func. Count: 207, Neg. LLF: 81.34520856060739
Iteration: 16, Func. Count: 220, Neg. LLF: 81.30656056386995
Iteration: 17, Func. Count: 233, Neg. LLF: 81.29741717769005
Iteration: 18, Func. Count: 246, Neg. LLF: 81.29682909959014
Iteration: 19, Func. Count: 259, Neg. LLF: 81.29671718548772
Iteration: 20, Func. Count: 272, Neg. LLF: 81.296699844853
Iteration: 21, Func. Count: 285, Neg. LLF: 81.29669904388962
Optimization terminated successfully (Exit mode 0)
Current function value: 81.29669904388962
Iterations: 21
Function evaluations: 285
Gradient evaluations: 21
Iteration: 1, Func. Count: 15, Neg. LLF: 2179438.762225692
Iteration: 2, Func. Count: 31, Neg. LLF: 4208686.894555378
Iteration: 3, Func. Count: 46, Neg. LLF: 1796.2234460816444
Iteration: 4, Func. Count: 61, Neg. LLF: 223.79731818448295
Iteration: 5, Func. Count: 76, Neg. LLF: 90.15436750208431
Iteration: 6, Func. Count: 91, Neg. LLF: 83.50796184947961
Iteration: 7, Func. Count: 106, Neg. LLF: 81.40587939950342
Iteration: 8, Func. Count: 120, Neg. LLF: 83.39782851815693
Iteration: 9, Func. Count: 135, Neg. LLF: 86.56269262200244
Iteration: 10, Func. Count: 151, Neg. LLF: 80.73485764311398
Iteration: 11, Func. Count: 165, Neg. LLF: 80.79376538234399
Iteration: 12, Func. Count: 180, Neg. LLF: 80.9551866586486
Iteration: 13, Func. Count: 195, Neg. LLF: 80.49758893010912
Iteration: 14, Func. Count: 210, Neg. LLF: 80.45131219335717
Iteration: 15, Func. Count: 225, Neg. LLF: 80.43882112826023
Iteration: 16, Func. Count: 239, Neg. LLF: 80.43867038962671
Iteration: 17, Func. Count: 253, Neg. LLF: 80.43865027542445
Iteration: 18, Func. Count: 267, Neg. LLF: 80.43864650387904
Iteration: 19, Func. Count: 281, Neg. LLF: 80.4386456327429
Optimization terminated successfully (Exit mode 0)
Current function value: 80.4386456327429
Iterations: 19
Function evaluations: 281
Gradient evaluations: 19
Iteration: 1, Func. Count: 12, Neg. LLF: 113.53573888650635
Iteration: 2, Func. Count: 25, Neg. LLF: 162238400.55069074
Iteration: 3, Func. Count: 37, Neg. LLF: 378.2644302550091
Iteration: 4, Func. Count: 49, Neg. LLF: 119.65482999728907
Iteration: 5, Func. Count: 61, Neg. LLF: 824.6918448569174
Iteration: 6, Func. Count: 73, Neg. LLF: 151.67220979405465
Iteration: 7, Func. Count: 85, Neg. LLF: 113.26159382018655
Iteration: 8, Func. Count: 97, Neg. LLF: 132.544144714263
Iteration: 9, Func. Count: 109, Neg. LLF: 96.28124111528345
Iteration: 10, Func. Count: 121, Neg. LLF: 88.31528701503892
Iteration: 11, Func. Count: 133, Neg. LLF: 94.57746019081291
Iteration: 12, Func. Count: 145, Neg. LLF: 96.68112010358185
Iteration: 13, Func. Count: 157, Neg. LLF: 82.26387204954574
Iteration: 14, Func. Count: 168, Neg. LLF: 82.25993065528974
Iteration: 15, Func. Count: 180, Neg. LLF: 82.00280319160869
Iteration: 16, Func. Count: 191, Neg. LLF: 82.07400388437246
Iteration: 17, Func. Count: 203, Neg. LLF: 81.86833644428113
Iteration: 18, Func. Count: 214, Neg. LLF: 82.74503337260934
Iteration: 19, Func. Count: 226, Neg. LLF: 81.73817769972763
Iteration: 20, Func. Count: 237, Neg. LLF: 81.63037854752788
Iteration: 21, Func. Count: 248, Neg. LLF: 81.61109792015046
Iteration: 22, Func. Count: 259, Neg. LLF: 81.60924038052434
Iteration: 23, Func. Count: 270, Neg. LLF: 81.60878835264391
Iteration: 24, Func. Count: 281, Neg. LLF: 81.60873691485409
Iteration: 25, Func. Count: 292, Neg. LLF: 81.60873344842884
Iteration: 26, Func. Count: 302, Neg. LLF: 81.60873346298912
Optimization terminated successfully (Exit mode 0)
Current function value: 81.60873344842884
Iterations: 26
Function evaluations: 302
Gradient evaluations: 26
Iteration: 1, Func. Count: 13, Neg. LLF: 137.63064594329205
Iteration: 2, Func. Count: 31, Neg. LLF: 248.00328016335774
Iteration: 3, Func. Count: 45, Neg. LLF: 3463713.962009797
Iteration: 4, Func. Count: 58, Neg. LLF: 108.50115397600064
Iteration: 5, Func. Count: 71, Neg. LLF: 100.7985689531846
Iteration: 6, Func. Count: 84, Neg. LLF: 102.05911912274489
Iteration: 7, Func. Count: 97, Neg. LLF: 89.70207989766212
Iteration: 8, Func. Count: 110, Neg. LLF: 84.05286758338022
Iteration: 9, Func. Count: 123, Neg. LLF: 85.76655731511754
Iteration: 10, Func. Count: 136, Neg. LLF: 85.14627451918051
Iteration: 11, Func. Count: 149, Neg. LLF: 82.78997654403149
Iteration: 12, Func. Count: 162, Neg. LLF: 82.28519967020004
Iteration: 13, Func. Count: 175, Neg. LLF: 81.87428892789897
Iteration: 14, Func. Count: 187, Neg. LLF: 81.79028469060901
Iteration: 15, Func. Count: 199, Neg. LLF: 82.07610017142095
Iteration: 16, Func. Count: 212, Neg. LLF: 81.77723492565461
Iteration: 17, Func. Count: 225, Neg. LLF: 81.75119770265192
Iteration: 18, Func. Count: 237, Neg. LLF: 81.73839544276561
Iteration: 19, Func. Count: 249, Neg. LLF: 81.72757305645054
Iteration: 20, Func. Count: 261, Neg. LLF: 81.70355787682405
Iteration: 21, Func. Count: 273, Neg. LLF: 81.66266845456738
Iteration: 22, Func. Count: 285, Neg. LLF: 81.6434870996132
Iteration: 23, Func. Count: 297, Neg. LLF: 81.61306112798715
Iteration: 24, Func. Count: 309, Neg. LLF: 81.61025248218404
Iteration: 25, Func. Count: 321, Neg. LLF: 81.60883750656046
Iteration: 26, Func. Count: 333, Neg. LLF: 81.60874367128025
Iteration: 27, Func. Count: 345, Neg. LLF: 81.60873358783424
Iteration: 28, Func. Count: 357, Neg. LLF: 81.60873301763424
Optimization terminated successfully (Exit mode 0)
Current function value: 81.60873301763424
Iterations: 28
Function evaluations: 357
Gradient evaluations: 28
Iteration: 1, Func. Count: 14, Neg. LLF: 378.9952107735773
Iteration: 2, Func. Count: 29, Neg. LLF: 5223739.31517751
Iteration: 3, Func. Count: 43, Neg. LLF: 2471323.513247482
Iteration: 4, Func. Count: 57, Neg. LLF: 1283690.818537938
Iteration: 5, Func. Count: 71, Neg. LLF: 89.99151114734693
Iteration: 6, Func. Count: 85, Neg. LLF: 827.2815609170871
Iteration: 7, Func. Count: 99, Neg. LLF: 86.9503184803272
Iteration: 8, Func. Count: 113, Neg. LLF: 82.69858189358638
Iteration: 9, Func. Count: 127, Neg. LLF: 82.25791496578915
Iteration: 10, Func. Count: 141, Neg. LLF: 81.45546468321547
Iteration: 11, Func. Count: 154, Neg. LLF: 81.20216118573546
Iteration: 12, Func. Count: 167, Neg. LLF: 81.13937428273186
Iteration: 13, Func. Count: 180, Neg. LLF: 81.12257847549294
Iteration: 14, Func. Count: 193, Neg. LLF: 81.11220920118977
Iteration: 15, Func. Count: 206, Neg. LLF: 81.11121428533542
Iteration: 16, Func. Count: 220, Neg. LLF: 81.10875016007654
Iteration: 17, Func. Count: 233, Neg. LLF: 81.10868627368933
Iteration: 18, Func. Count: 246, Neg. LLF: 81.10868401513753
Iteration: 19, Func. Count: 259, Neg. LLF: 81.1086833629104
Optimization terminated successfully (Exit mode 0)
Current function value: 81.1086833629104
Iterations: 19
Function evaluations: 259
Gradient evaluations: 19
Iteration: 1, Func. Count: 15, Neg. LLF: 2617193.948294596
Iteration: 2, Func. Count: 31, Neg. LLF: 1187.9097350338961
Iteration: 3, Func. Count: 46, Neg. LLF: 166.4312396030863
Iteration: 4, Func. Count: 61, Neg. LLF: 2693.8467275562475
Iteration: 5, Func. Count: 76, Neg. LLF: 93.59488401369256
Iteration: 6, Func. Count: 91, Neg. LLF: 3801636.4237254644
Iteration: 7, Func. Count: 106, Neg. LLF: 82.25535895783058
Iteration: 8, Func. Count: 121, Neg. LLF: 86.15198646659924
Iteration: 9, Func. Count: 136, Neg. LLF: 81.4227464193914
Iteration: 10, Func. Count: 150, Neg. LLF: 82.74559069174161
Iteration: 11, Func. Count: 165, Neg. LLF: 81.24403607551515
Iteration: 12, Func. Count: 179, Neg. LLF: 81.19675274593006
Iteration: 13, Func. Count: 193, Neg. LLF: 81.37352470745434
Iteration: 14, Func. Count: 208, Neg. LLF: 81.12391503739974
Iteration: 15, Func. Count: 222, Neg. LLF: 81.10643210309917
Iteration: 16, Func. Count: 236, Neg. LLF: 81.10096599177513
Iteration: 17, Func. Count: 250, Neg. LLF: 81.1002659240612
Iteration: 18, Func. Count: 264, Neg. LLF: 81.10011593758101
Iteration: 19, Func. Count: 278, Neg. LLF: 81.10009772060252
Iteration: 20, Func. Count: 292, Neg. LLF: 81.10009610778249
Iteration: 21, Func. Count: 305, Neg. LLF: 81.10009610240857
Optimization terminated successfully (Exit mode 0)
Current function value: 81.10009610778249
Iterations: 21
Function evaluations: 305
Gradient evaluations: 21
Iteration: 1, Func. Count: 16, Neg. LLF: 2152531.9259746415
Iteration: 2, Func. Count: 33, Neg. LLF: 4993495.788363366
Iteration: 3, Func. Count: 49, Neg. LLF: 143.39282339616486
Iteration: 4, Func. Count: 65, Neg. LLF: 456.61437025680044
Iteration: 5, Func. Count: 81, Neg. LLF: 2385606.020549243
Iteration: 6, Func. Count: 97, Neg. LLF: 95.04037657981827
Iteration: 7, Func. Count: 113, Neg. LLF: 1955.6336225767773
Iteration: 8, Func. Count: 129, Neg. LLF: 84.18199144390272
Iteration: 9, Func. Count: 145, Neg. LLF: 83.8283032380102
Iteration: 10, Func. Count: 161, Neg. LLF: 80.88120365991773
Iteration: 11, Func. Count: 176, Neg. LLF: 84.27341748180551
Iteration: 12, Func. Count: 192, Neg. LLF: 80.98583719121888
Iteration: 13, Func. Count: 208, Neg. LLF: 81.09640515276891
Iteration: 14, Func. Count: 224, Neg. LLF: 80.4693471328259
Iteration: 15, Func. Count: 239, Neg. LLF: 80.62334220942694
Iteration: 16, Func. Count: 255, Neg. LLF: 80.3921009126691
Iteration: 17, Func. Count: 270, Neg. LLF: 80.38625335036646
Iteration: 18, Func. Count: 285, Neg. LLF: 80.38352580420703
Iteration: 19, Func. Count: 300, Neg. LLF: 80.38339575623978
Iteration: 20, Func. Count: 315, Neg. LLF: 80.38336396108878
Iteration: 21, Func. Count: 330, Neg. LLF: 80.38336318365177
Optimization terminated successfully (Exit mode 0)
Current function value: 80.38336318365177
Iterations: 21
Function evaluations: 330
Gradient evaluations: 21
Iteration: 1, Func. Count: 7, Neg. LLF: 141.51007670097866
Iteration: 2, Func. Count: 18, Neg. LLF: 226.11089728147704
Iteration: 3, Func. Count: 26, Neg. LLF: 124.1112468880113
Iteration: 4, Func. Count: 33, Neg. LLF: 83.62445460779102
Iteration: 5, Func. Count: 39, Neg. LLF: 93.53453924512789
Iteration: 6, Func. Count: 46, Neg. LLF: 83.50730758442985
Iteration: 7, Func. Count: 52, Neg. LLF: 83.49851922655097
Iteration: 8, Func. Count: 58, Neg. LLF: 83.49690442050168
Iteration: 9, Func. Count: 64, Neg. LLF: 83.49667428252695
Iteration: 10, Func. Count: 70, Neg. LLF: 83.49664731699549
Iteration: 11, Func. Count: 75, Neg. LLF: 83.49664728806573
Optimization terminated successfully (Exit mode 0)
Current function value: 83.49664731699549
Iterations: 11
Function evaluations: 75
Gradient evaluations: 11
Iteration: 1, Func. Count: 5, Neg. LLF: 124.85670774362262
Iteration: 2, Func. Count: 12, Neg. LLF: 104.62626950695962
Iteration: 3, Func. Count: 17, Neg. LLF: 96.79417361091556
Iteration: 4, Func. Count: 21, Neg. LLF: 96.61647085981522
Iteration: 5, Func. Count: 25, Neg. LLF: 96.58672423084074
Iteration: 6, Func. Count: 29, Neg. LLF: 96.5853991692439
Iteration: 7, Func. Count: 33, Neg. LLF: 96.58539131443439
Iteration: 8, Func. Count: 36, Neg. LLF: 96.58539133832349
Optimization terminated successfully (Exit mode 0)
Current function value: 96.58539131443439
Iterations: 8
Function evaluations: 36
Gradient evaluations: 8
Iteration: 1, Func. Count: 6, Neg. LLF: 118.65199255819626
Iteration: 2, Func. Count: 16, Neg. LLF: 1031.0749796560813
Iteration: 3, Func. Count: 23, Neg. LLF: 12989009.694929501
Iteration: 4, Func. Count: 30, Neg. LLF: 90.50739700417503
Iteration: 5, Func. Count: 35, Neg. LLF: 90.89357340027105
Iteration: 6, Func. Count: 41, Neg. LLF: 90.46907290822958
Iteration: 7, Func. Count: 46, Neg. LLF: 90.46874413421975
Iteration: 8, Func. Count: 51, Neg. LLF: 90.46873488276262
Iteration: 9, Func. Count: 55, Neg. LLF: 90.46873471272914
Optimization terminated successfully (Exit mode 0)
Current function value: 90.46873488276262
Iterations: 9
Function evaluations: 55
Gradient evaluations: 9
Iteration: 1, Func. Count: 7, Neg. LLF: 171.840141180133
Iteration: 2, Func. Count: 14, Neg. LLF: 109.55269586910627
Iteration: 3, Func. Count: 21, Neg. LLF: 94.54162644616285
Iteration: 4, Func. Count: 28, Neg. LLF: 90.66768700451685
Iteration: 5, Func. Count: 34, Neg. LLF: 90.5160092187338
Iteration: 6, Func. Count: 40, Neg. LLF: 90.47077288508673
Iteration: 7, Func. Count: 46, Neg. LLF: 90.47161839680034
Iteration: 8, Func. Count: 53, Neg. LLF: 90.46876343952637
Iteration: 9, Func. Count: 59, Neg. LLF: 90.46873488831953
Iteration: 10, Func. Count: 64, Neg. LLF: 90.46873475608808
Optimization terminated successfully (Exit mode 0)
Current function value: 90.46873488831953
Iterations: 10
Function evaluations: 64
Gradient evaluations: 10
Iteration: 1, Func. Count: 8, Neg. LLF: 105.97616146690747
Iteration: 2, Func. Count: 19, Neg. LLF: 1070.2581177573343
Iteration: 3, Func. Count: 27, Neg. LLF: 97.34416415201623
Iteration: 4, Func. Count: 35, Neg. LLF: 91.25336540018039
Iteration: 5, Func. Count: 42, Neg. LLF: 96.70638506265158
Iteration: 6, Func. Count: 51, Neg. LLF: 94.1093643367048
Iteration: 7, Func. Count: 59, Neg. LLF: 90.47587438256221
Iteration: 8, Func. Count: 66, Neg. LLF: 90.46880271520783
Iteration: 9, Func. Count: 73, Neg. LLF: 90.4687360863403
Iteration: 10, Func. Count: 80, Neg. LLF: 90.46873486589253
Iteration: 11, Func. Count: 86, Neg. LLF: 90.46873473628166
Optimization terminated successfully (Exit mode 0)
Current function value: 90.46873486589253
Iterations: 11
Function evaluations: 86
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 118.615039263768
Iteration: 2, Func. Count: 21, Neg. LLF: 201.5828433431561
Iteration: 3, Func. Count: 30, Neg. LLF: 114.88044350113046
Iteration: 4, Func. Count: 39, Neg. LLF: 95.91220188454382
Iteration: 5, Func. Count: 48, Neg. LLF: 94.74956906027691
Iteration: 6, Func. Count: 57, Neg. LLF: 93.8320152250202
Iteration: 7, Func. Count: 66, Neg. LLF: 91.08505227476411
Iteration: 8, Func. Count: 74, Neg. LLF: 90.81805373542696
Iteration: 9, Func. Count: 82, Neg. LLF: 90.49941644848691
Iteration: 10, Func. Count: 90, Neg. LLF: 90.46913988721599
Iteration: 11, Func. Count: 98, Neg. LLF: 90.46886540934862
Iteration: 12, Func. Count: 106, Neg. LLF: 90.46873478969007
Iteration: 13, Func. Count: 113, Neg. LLF: 90.46873466383094
Optimization terminated successfully (Exit mode 0)
Current function value: 90.46873478969007
Iterations: 13
Function evaluations: 113
Gradient evaluations: 13
Iteration: 1, Func. Count: 6, Neg. LLF: 132.01454775057582
Iteration: 2, Func. Count: 14, Neg. LLF: 2772.176696482572
Iteration: 3, Func. Count: 20, Neg. LLF: 8507774.309994455
Iteration: 4, Func. Count: 26, Neg. LLF: 93.62606814609691
Iteration: 5, Func. Count: 31, Neg. LLF: 105.37976826143499
Iteration: 6, Func. Count: 38, Neg. LLF: 93.52756514019511
Iteration: 7, Func. Count: 43, Neg. LLF: 93.47847740523439
Iteration: 8, Func. Count: 48, Neg. LLF: 93.46174506055085
Iteration: 9, Func. Count: 53, Neg. LLF: 93.44204257255599
Iteration: 10, Func. Count: 58, Neg. LLF: 93.43368855777891
Iteration: 11, Func. Count: 63, Neg. LLF: 93.43281641478825
Iteration: 12, Func. Count: 68, Neg. LLF: 93.4327587267961
Iteration: 13, Func. Count: 73, Neg. LLF: 93.43275629423972
Iteration: 14, Func. Count: 77, Neg. LLF: 93.43275629424987
Optimization terminated successfully (Exit mode 0)
Current function value: 93.43275629423972
Iterations: 14
Function evaluations: 77
Gradient evaluations: 14
Iteration: 1, Func. Count: 7, Neg. LLF: 113.90418471951459
Iteration: 2, Func. Count: 18, Neg. LLF: 3991.7709452532135
Iteration: 3, Func. Count: 25, Neg. LLF: 3977316.113966877
Iteration: 4, Func. Count: 32, Neg. LLF: 89.33901046127112
Iteration: 5, Func. Count: 38, Neg. LLF: 89.00663199166164
Iteration: 6, Func. Count: 44, Neg. LLF: 93.427310352789
Iteration: 7, Func. Count: 52, Neg. LLF: 88.95497708516774
Iteration: 8, Func. Count: 58, Neg. LLF: 88.94402271368466
Iteration: 9, Func. Count: 64, Neg. LLF: 88.94323835466318
Iteration: 10, Func. Count: 70, Neg. LLF: 88.94322141883856
Iteration: 11, Func. Count: 75, Neg. LLF: 88.94322126329226
Optimization terminated successfully (Exit mode 0)
Current function value: 88.94322141883856
Iterations: 11
Function evaluations: 75
Gradient evaluations: 11
Iteration: 1, Func. Count: 8, Neg. LLF: 123.8903185910062
Iteration: 2, Func. Count: 21, Neg. LLF: 148651725.1025262
Iteration: 3, Func. Count: 29, Neg. LLF: 6799905.391122909
Iteration: 4, Func. Count: 37, Neg. LLF: 90.58829418621133
Iteration: 5, Func. Count: 45, Neg. LLF: 88.76989927453805
Iteration: 6, Func. Count: 52, Neg. LLF: 88.03553180632437
Iteration: 7, Func. Count: 59, Neg. LLF: 87.43276883315133
Iteration: 8, Func. Count: 66, Neg. LLF: 87.27489976644779
Iteration: 9, Func. Count: 73, Neg. LLF: 87.21159740223666
Iteration: 10, Func. Count: 80, Neg. LLF: 87.19846291198013
Iteration: 11, Func. Count: 87, Neg. LLF: 87.19798310266691
Iteration: 12, Func. Count: 94, Neg. LLF: 87.19794385881505
Iteration: 13, Func. Count: 101, Neg. LLF: 87.19793999191008
Iteration: 14, Func. Count: 107, Neg. LLF: 87.19793987281965
Optimization terminated successfully (Exit mode 0)
Current function value: 87.19793999191008
Iterations: 14
Function evaluations: 107
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 171.4345253442394
Iteration: 2, Func. Count: 18, Neg. LLF: 6992023.109245437
Iteration: 3, Func. Count: 27, Neg. LLF: 92.99951075933525
Iteration: 4, Func. Count: 36, Neg. LLF: 90.73748110209338
Iteration: 5, Func. Count: 45, Neg. LLF: 88.5039662817837
Iteration: 6, Func. Count: 53, Neg. LLF: 96.46972603406617
Iteration: 7, Func. Count: 62, Neg. LLF: 89.40641288889877
Iteration: 8, Func. Count: 72, Neg. LLF: 87.2042587797752
Iteration: 9, Func. Count: 80, Neg. LLF: 87.57413838799134
Iteration: 10, Func. Count: 89, Neg. LLF: 87.19885839705059
Iteration: 11, Func. Count: 97, Neg. LLF: 87.19813284886075
Iteration: 12, Func. Count: 105, Neg. LLF: 87.19795694728468
Iteration: 13, Func. Count: 113, Neg. LLF: 87.19794193721239
Iteration: 14, Func. Count: 121, Neg. LLF: 87.19794000553127
Iteration: 15, Func. Count: 128, Neg. LLF: 87.19794002892732
Optimization terminated successfully (Exit mode 0)
Current function value: 87.19794000553127
Iterations: 15
Function evaluations: 128
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 97.05337438586747
Iteration: 2, Func. Count: 23, Neg. LLF: 110665682.36660482
Iteration: 3, Func. Count: 33, Neg. LLF: 7034061.387744697
Iteration: 4, Func. Count: 43, Neg. LLF: 93.81128487395311
Iteration: 5, Func. Count: 53, Neg. LLF: 91.53622146987806
Iteration: 6, Func. Count: 63, Neg. LLF: 96.49651120976449
Iteration: 7, Func. Count: 73, Neg. LLF: 89.17653287637825
Iteration: 8, Func. Count: 83, Neg. LLF: 87.45852012334826
Iteration: 9, Func. Count: 92, Neg. LLF: 87.62132671045468
Iteration: 10, Func. Count: 102, Neg. LLF: 91.40331465602351
Iteration: 11, Func. Count: 112, Neg. LLF: 86.88440863518724
Iteration: 12, Func. Count: 121, Neg. LLF: 86.8633808339106
Iteration: 13, Func. Count: 130, Neg. LLF: 86.85062035855415
Iteration: 14, Func. Count: 139, Neg. LLF: 86.85028677421488
Iteration: 15, Func. Count: 148, Neg. LLF: 86.85006163675195
Iteration: 16, Func. Count: 157, Neg. LLF: 86.85005001749586
Iteration: 17, Func. Count: 166, Neg. LLF: 86.85004736138073
Iteration: 18, Func. Count: 174, Neg. LLF: 86.8500472632416
Optimization terminated successfully (Exit mode 0)
Current function value: 86.85004736138073
Iterations: 18
Function evaluations: 174
Gradient evaluations: 18
Iteration: 1, Func. Count: 7, Neg. LLF: 134.49777241769493
Iteration: 2, Func. Count: 16, Neg. LLF: 316491709.1884835
Iteration: 3, Func. Count: 23, Neg. LLF: 8510255.29733638
Iteration: 4, Func. Count: 30, Neg. LLF: 93.90055449852052
Iteration: 5, Func. Count: 36, Neg. LLF: 94.33521686640236
Iteration: 6, Func. Count: 44, Neg. LLF: 104.14604367133805
Iteration: 7, Func. Count: 51, Neg. LLF: 93.52666218201216
Iteration: 8, Func. Count: 57, Neg. LLF: 93.4717344876241
Iteration: 9, Func. Count: 63, Neg. LLF: 93.44407632860747
Iteration: 10, Func. Count: 69, Neg. LLF: 93.43320688325437
Iteration: 11, Func. Count: 75, Neg. LLF: 93.43277959372443
Iteration: 12, Func. Count: 81, Neg. LLF: 93.43276200835064
Iteration: 13, Func. Count: 87, Neg. LLF: 93.43275607594539
Iteration: 14, Func. Count: 92, Neg. LLF: 93.43275610145376
Optimization terminated successfully (Exit mode 0)
Current function value: 93.43275607594539
Iterations: 14
Function evaluations: 92
Gradient evaluations: 14
Iteration: 1, Func. Count: 8, Neg. LLF: 115.53785532968077
Iteration: 2, Func. Count: 20, Neg. LLF: 5538.391220582148
Iteration: 3, Func. Count: 28, Neg. LLF: 4668976.467899841
Iteration: 4, Func. Count: 36, Neg. LLF: 89.04963737433071
Iteration: 5, Func. Count: 43, Neg. LLF: 90.59639803844576
Iteration: 6, Func. Count: 52, Neg. LLF: 88.96424934782381
Iteration: 7, Func. Count: 59, Neg. LLF: 88.94493853349745
Iteration: 8, Func. Count: 66, Neg. LLF: 88.94342308369748
Iteration: 9, Func. Count: 73, Neg. LLF: 88.94322211881097
Iteration: 10, Func. Count: 80, Neg. LLF: 88.9432213318205
Optimization terminated successfully (Exit mode 0)
Current function value: 88.9432213318205
Iterations: 10
Function evaluations: 80
Gradient evaluations: 10
Iteration: 1, Func. Count: 9, Neg. LLF: 130.71672731962954
Iteration: 2, Func. Count: 23, Neg. LLF: 170545495.67413765
Iteration: 3, Func. Count: 32, Neg. LLF: 6109839.454725599
Iteration: 4, Func. Count: 41, Neg. LLF: 90.68713904934009
Iteration: 5, Func. Count: 50, Neg. LLF: 90.59783898665596
Iteration: 6, Func. Count: 59, Neg. LLF: 88.11999327544936
Iteration: 7, Func. Count: 67, Neg. LLF: 100.28431831142726
Iteration: 8, Func. Count: 77, Neg. LLF: 91.46644253131333
Iteration: 9, Func. Count: 86, Neg. LLF: 87.34958159527497
Iteration: 10, Func. Count: 94, Neg. LLF: 87.22046928216236
Iteration: 11, Func. Count: 102, Neg. LLF: 87.17301707444706
Iteration: 12, Func. Count: 110, Neg. LLF: 87.13148168292794
Iteration: 13, Func. Count: 118, Neg. LLF: 87.12919512232669
Iteration: 14, Func. Count: 126, Neg. LLF: 87.12909036520648
Iteration: 15, Func. Count: 134, Neg. LLF: 87.12907353911402
Iteration: 16, Func. Count: 142, Neg. LLF: 87.12907239240872
Iteration: 17, Func. Count: 149, Neg. LLF: 87.12907227230723
Optimization terminated successfully (Exit mode 0)
Current function value: 87.12907239240872
Iterations: 17
Function evaluations: 149
Gradient evaluations: 17
Iteration: 1, Func. Count: 10, Neg. LLF: 113.88043968387633
Iteration: 2, Func. Count: 20, Neg. LLF: 1293.8906817749648
Iteration: 3, Func. Count: 30, Neg. LLF: 13264468.337599501
Iteration: 4, Func. Count: 40, Neg. LLF: 90.96602438512753
Iteration: 5, Func. Count: 50, Neg. LLF: 93.64725802792132
Iteration: 6, Func. Count: 60, Neg. LLF: 88.38054272617397
Iteration: 7, Func. Count: 69, Neg. LLF: 88.99636226689073
Iteration: 8, Func. Count: 79, Neg. LLF: 88.20608790033177
Iteration: 9, Func. Count: 89, Neg. LLF: 87.48156074722588
Iteration: 10, Func. Count: 99, Neg. LLF: 87.1990972556592
Iteration: 11, Func. Count: 108, Neg. LLF: 87.12960071201748
Iteration: 12, Func. Count: 117, Neg. LLF: 87.12934623529793
Iteration: 13, Func. Count: 126, Neg. LLF: 87.12907270857491
Iteration: 14, Func. Count: 135, Neg. LLF: 87.12907215300703
Optimization terminated successfully (Exit mode 0)
Current function value: 87.12907215300703
Iterations: 14
Function evaluations: 135
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 98.28836057899615
Iteration: 2, Func. Count: 25, Neg. LLF: 116125483.48238096
Iteration: 3, Func. Count: 36, Neg. LLF: 6592785.618895707
Iteration: 4, Func. Count: 47, Neg. LLF: 89.95320767955187
Iteration: 5, Func. Count: 57, Neg. LLF: 95.64120902915538
Iteration: 6, Func. Count: 68, Neg. LLF: 128.22339167355193
Iteration: 7, Func. Count: 80, Neg. LLF: 121.64513680961021
Iteration: 8, Func. Count: 91, Neg. LLF: 88.84373775888534
Iteration: 9, Func. Count: 102, Neg. LLF: 106.62079707074288
Iteration: 10, Func. Count: 113, Neg. LLF: 87.10607801496717
Iteration: 11, Func. Count: 123, Neg. LLF: 87.06602786959644
Iteration: 12, Func. Count: 134, Neg. LLF: 86.76412002412151
Iteration: 13, Func. Count: 144, Neg. LLF: 86.73933307208469
Iteration: 14, Func. Count: 154, Neg. LLF: 86.73779526754798
Iteration: 15, Func. Count: 165, Neg. LLF: 86.73404645804624
Iteration: 16, Func. Count: 175, Neg. LLF: 86.73395692293586
Iteration: 17, Func. Count: 185, Neg. LLF: 86.7339359849859
Iteration: 18, Func. Count: 195, Neg. LLF: 86.73393001485259
Iteration: 19, Func. Count: 204, Neg. LLF: 86.7339299121141
Optimization terminated successfully (Exit mode 0)
Current function value: 86.73393001485259
Iterations: 19
Function evaluations: 204
Gradient evaluations: 19
Iteration: 1, Func. Count: 8, Neg. LLF: 129.52981961893605
Iteration: 2, Func. Count: 18, Neg. LLF: 239925042.2173
Iteration: 3, Func. Count: 26, Neg. LLF: 2940010.391914568
Iteration: 4, Func. Count: 34, Neg. LLF: 3394697.748711876
Iteration: 5, Func. Count: 42, Neg. LLF: 1138846.9794299428
Iteration: 6, Func. Count: 50, Neg. LLF: 95.0169434847553
Iteration: 7, Func. Count: 58, Neg. LLF: 94.05753428815389
Iteration: 8, Func. Count: 66, Neg. LLF: 91.94229633960443
Iteration: 9, Func. Count: 73, Neg. LLF: 91.75954899419372
Iteration: 10, Func. Count: 80, Neg. LLF: 91.55538769181096
Iteration: 11, Func. Count: 87, Neg. LLF: 91.50174752387001
Iteration: 12, Func. Count: 94, Neg. LLF: 91.49598609180323
Iteration: 13, Func. Count: 101, Neg. LLF: 91.4954341465893
Iteration: 14, Func. Count: 108, Neg. LLF: 91.49540099877231
Iteration: 15, Func. Count: 115, Neg. LLF: 91.4953978593159
Iteration: 16, Func. Count: 121, Neg. LLF: 91.49539785934374
Optimization terminated successfully (Exit mode 0)
Current function value: 91.4953978593159
Iterations: 16
Function evaluations: 121
Gradient evaluations: 16
Iteration: 1, Func. Count: 9, Neg. LLF: 122.1140600469022
Iteration: 2, Func. Count: 23, Neg. LLF: 114731985.71247435
Iteration: 3, Func. Count: 32, Neg. LLF: 4516205.218657513
Iteration: 4, Func. Count: 41, Neg. LLF: 89.16985054802629
Iteration: 5, Func. Count: 49, Neg. LLF: 89.45935880715652
Iteration: 6, Func. Count: 58, Neg. LLF: 89.41411736962581
Iteration: 7, Func. Count: 67, Neg. LLF: 88.94712989073763
Iteration: 8, Func. Count: 75, Neg. LLF: 88.94346593098841
Iteration: 9, Func. Count: 83, Neg. LLF: 88.94322889447855
Iteration: 10, Func. Count: 91, Neg. LLF: 88.94322147768445
Iteration: 11, Func. Count: 98, Neg. LLF: 88.94322132199783
Optimization terminated successfully (Exit mode 0)
Current function value: 88.94322147768445
Iterations: 11
Function evaluations: 98
Gradient evaluations: 11
Iteration: 1, Func. Count: 10, Neg. LLF: 24542204.944492146
Iteration: 2, Func. Count: 20, Neg. LLF: 166.00554239561
Iteration: 3, Func. Count: 31, Neg. LLF: 8333837.817366053
Iteration: 4, Func. Count: 42, Neg. LLF: 125.12179696374554
Iteration: 5, Func. Count: 52, Neg. LLF: 92.46728384683765
Iteration: 6, Func. Count: 62, Neg. LLF: 88.60961134547068
Iteration: 7, Func. Count: 71, Neg. LLF: 88.4771455672259
Iteration: 8, Func. Count: 81, Neg. LLF: 96.49553089801198
Iteration: 9, Func. Count: 91, Neg. LLF: 87.43720303973757
Iteration: 10, Func. Count: 100, Neg. LLF: 87.30854856555415
Iteration: 11, Func. Count: 109, Neg. LLF: 87.18412822848923
Iteration: 12, Func. Count: 118, Neg. LLF: 87.16013938261547
Iteration: 13, Func. Count: 127, Neg. LLF: 87.135067410383
Iteration: 14, Func. Count: 136, Neg. LLF: 87.13018020666155
Iteration: 15, Func. Count: 145, Neg. LLF: 87.12908386232651
Iteration: 16, Func. Count: 154, Neg. LLF: 87.12907218366946
Iteration: 17, Func. Count: 162, Neg. LLF: 87.12907206354302
Optimization terminated successfully (Exit mode 0)
Current function value: 87.12907218366946
Iterations: 17
Function evaluations: 162
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 97.25407490881086
Iteration: 2, Func. Count: 23, Neg. LLF: 85051044.2249988
Iteration: 3, Func. Count: 34, Neg. LLF: 6090595.906715855
Iteration: 4, Func. Count: 45, Neg. LLF: 97.83875943479948
Iteration: 5, Func. Count: 56, Neg. LLF: 93.41139305819311
Iteration: 6, Func. Count: 67, Neg. LLF: 94.1356990075948
Iteration: 7, Func. Count: 78, Neg. LLF: 89.71492291634632
Iteration: 8, Func. Count: 89, Neg. LLF: 88.94161299945318
Iteration: 9, Func. Count: 100, Neg. LLF: 88.50005059153094
Iteration: 10, Func. Count: 110, Neg. LLF: 88.58307405636903
Iteration: 11, Func. Count: 121, Neg. LLF: 88.65779632035881
Iteration: 12, Func. Count: 132, Neg. LLF: 88.3475012186851
Iteration: 13, Func. Count: 142, Neg. LLF: 88.32840741470342
Iteration: 14, Func. Count: 152, Neg. LLF: 88.31930731364943
Iteration: 15, Func. Count: 162, Neg. LLF: 88.31533533089245
Iteration: 16, Func. Count: 172, Neg. LLF: 88.31361655624201
Iteration: 17, Func. Count: 182, Neg. LLF: 88.31334950830099
Iteration: 18, Func. Count: 192, Neg. LLF: 88.31333719796024
Iteration: 19, Func. Count: 202, Neg. LLF: 88.31333501660177
Iteration: 20, Func. Count: 211, Neg. LLF: 88.31333493036692
Optimization terminated successfully (Exit mode 0)
Current function value: 88.31333501660177
Iterations: 20
Function evaluations: 211
Gradient evaluations: 20
Iteration: 1, Func. Count: 12, Neg. LLF: 100.47069264559748
Iteration: 2, Func. Count: 27, Neg. LLF: 114206187.35438804
Iteration: 3, Func. Count: 39, Neg. LLF: 6579559.444229846
Iteration: 4, Func. Count: 51, Neg. LLF: 4734287.291199974
Iteration: 5, Func. Count: 63, Neg. LLF: 117.511025329743
Iteration: 6, Func. Count: 75, Neg. LLF: 93.13827416885762
Iteration: 7, Func. Count: 87, Neg. LLF: 89.300585950039
Iteration: 8, Func. Count: 99, Neg. LLF: 90.35989471884942
Iteration: 9, Func. Count: 111, Neg. LLF: 90.77986130006592
Iteration: 10, Func. Count: 123, Neg. LLF: 86.9402093302591
Iteration: 11, Func. Count: 134, Neg. LLF: 87.8542682264926
Iteration: 12, Func. Count: 146, Neg. LLF: 86.85533120656898
Iteration: 13, Func. Count: 157, Neg. LLF: 86.82405600778765
Iteration: 14, Func. Count: 168, Neg. LLF: 86.79803877925649
Iteration: 15, Func. Count: 179, Neg. LLF: 86.76836805861579
Iteration: 16, Func. Count: 190, Neg. LLF: 86.7356782445267
Iteration: 17, Func. Count: 201, Neg. LLF: 86.73411361591286
Iteration: 18, Func. Count: 212, Neg. LLF: 86.73396413723347
Iteration: 19, Func. Count: 223, Neg. LLF: 86.7339341523026
Iteration: 20, Func. Count: 234, Neg. LLF: 86.7339297795533
Iteration: 21, Func. Count: 244, Neg. LLF: 86.733929677003
Optimization terminated successfully (Exit mode 0)
Current function value: 86.7339297795533
Iterations: 21
Function evaluations: 244
Gradient evaluations: 21
Iteration: 1, Func. Count: 5, Neg. LLF: 129.83287839764432
Iteration: 2, Func. Count: 12, Neg. LLF: 136.1016053884442
Iteration: 3, Func. Count: 17, Neg. LLF: 96.60032699060396
Iteration: 4, Func. Count: 21, Neg. LLF: 96.75928388554854
Iteration: 5, Func. Count: 26, Neg. LLF: 96.60312712956794
Iteration: 6, Func. Count: 31, Neg. LLF: 96.55305933954297
Iteration: 7, Func. Count: 35, Neg. LLF: 96.55294973250028
Iteration: 8, Func. Count: 39, Neg. LLF: 96.55293478377476
Iteration: 9, Func. Count: 43, Neg. LLF: 96.55292693484694
Iteration: 10, Func. Count: 46, Neg. LLF: 96.55292693483003
Optimization terminated successfully (Exit mode 0)
Current function value: 96.55292693484694
Iterations: 10
Function evaluations: 46
Gradient evaluations: 10
Iteration: 1, Func. Count: 6, Neg. LLF: 153.40009512448512
Iteration: 2, Func. Count: 16, Neg. LLF: 438.8524655499559
Iteration: 3, Func. Count: 23, Neg. LLF: 147.8380511480958
Iteration: 4, Func. Count: 30, Neg. LLF: 90.20819947922114
Iteration: 5, Func. Count: 35, Neg. LLF: 90.21720686094858
Iteration: 6, Func. Count: 41, Neg. LLF: 90.20415083414821
Iteration: 7, Func. Count: 46, Neg. LLF: 90.20409847015748
Iteration: 8, Func. Count: 50, Neg. LLF: 90.20409841957324
Optimization terminated successfully (Exit mode 0)
Current function value: 90.20409847015748
Iterations: 8
Function evaluations: 50
Gradient evaluations: 8
Iteration: 1, Func. Count: 7, Neg. LLF: 149.6004606364454
Iteration: 2, Func. Count: 19, Neg. LLF: 7148.218383756778
Iteration: 3, Func. Count: 27, Neg. LLF: 174.07766080727674
Iteration: 4, Func. Count: 34, Neg. LLF: 90.27101874375273
Iteration: 5, Func. Count: 40, Neg. LLF: 90.22354223009367
Iteration: 6, Func. Count: 46, Neg. LLF: 90.2045561404224
Iteration: 7, Func. Count: 52, Neg. LLF: 90.20413243781682
Iteration: 8, Func. Count: 58, Neg. LLF: 90.20409874933259
Iteration: 9, Func. Count: 63, Neg. LLF: 90.20409873583768
Optimization terminated successfully (Exit mode 0)
Current function value: 90.20409874933259
Iterations: 9
Function evaluations: 63
Gradient evaluations: 9
Iteration: 1, Func. Count: 8, Neg. LLF: 140.7454107603341
Iteration: 2, Func. Count: 17, Neg. LLF: 6316.931592135951
Iteration: 3, Func. Count: 25, Neg. LLF: 101.64753154977699
Iteration: 4, Func. Count: 33, Neg. LLF: 94.2947766707879
Iteration: 5, Func. Count: 41, Neg. LLF: 92.12322206114214
Iteration: 6, Func. Count: 49, Neg. LLF: 90.8919868392038
Iteration: 7, Func. Count: 56, Neg. LLF: 90.3686359380044
Iteration: 8, Func. Count: 63, Neg. LLF: 90.69945218930269
Iteration: 9, Func. Count: 71, Neg. LLF: 90.20530736134002
Iteration: 10, Func. Count: 78, Neg. LLF: 90.20417611467568
Iteration: 11, Func. Count: 85, Neg. LLF: 90.20410491002636
Iteration: 12, Func. Count: 92, Neg. LLF: 90.20409850920663
Iteration: 13, Func. Count: 98, Neg. LLF: 90.20409853728876
Optimization terminated successfully (Exit mode 0)
Current function value: 90.20409850920663
Iterations: 13
Function evaluations: 98
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 124.89222260573194
Iteration: 2, Func. Count: 20, Neg. LLF: 118.58142296018123
Iteration: 3, Func. Count: 29, Neg. LLF: 93.80210795908972
Iteration: 4, Func. Count: 38, Neg. LLF: 94.46224198052582
Iteration: 5, Func. Count: 47, Neg. LLF: 93.2882850298694
Iteration: 6, Func. Count: 56, Neg. LLF: 90.7658091325083
Iteration: 7, Func. Count: 64, Neg. LLF: 94.04258982646374
Iteration: 8, Func. Count: 73, Neg. LLF: 90.28326626378548
Iteration: 9, Func. Count: 81, Neg. LLF: 90.44756117306679
Iteration: 10, Func. Count: 90, Neg. LLF: 90.20489344497128
Iteration: 11, Func. Count: 98, Neg. LLF: 90.20414595271559
Iteration: 12, Func. Count: 106, Neg. LLF: 90.20409969331138
Iteration: 13, Func. Count: 114, Neg. LLF: 90.20409848821949
Iteration: 14, Func. Count: 121, Neg. LLF: 90.20409853266969
Optimization terminated successfully (Exit mode 0)
Current function value: 90.20409848821949
Iterations: 14
Function evaluations: 121
Gradient evaluations: 14
Iteration: 1, Func. Count: 6, Neg. LLF: 121.19287248056891
Iteration: 2, Func. Count: 14, Neg. LLF: 126.11742310181526
Iteration: 3, Func. Count: 20, Neg. LLF: 96.63309892696928
Iteration: 4, Func. Count: 25, Neg. LLF: 96.88940634189768
Iteration: 5, Func. Count: 31, Neg. LLF: 96.50962885584032
Iteration: 6, Func. Count: 37, Neg. LLF: 96.45245887990804
Iteration: 7, Func. Count: 42, Neg. LLF: 96.4501980893327
Iteration: 8, Func. Count: 47, Neg. LLF: 96.45016565950772
Iteration: 9, Func. Count: 52, Neg. LLF: 96.4501533878925
Iteration: 10, Func. Count: 56, Neg. LLF: 96.45015336739412
Optimization terminated successfully (Exit mode 0)
Current function value: 96.4501533878925
Iterations: 10
Function evaluations: 56
Gradient evaluations: 10
Iteration: 1, Func. Count: 7, Neg. LLF: 190.5092696107915
Iteration: 2, Func. Count: 18, Neg. LLF: 1011.5804843773979
Iteration: 3, Func. Count: 26, Neg. LLF: 91.61714113860883
Iteration: 4, Func. Count: 33, Neg. LLF: 92.39244165818793
Iteration: 5, Func. Count: 40, Neg. LLF: 89.98037763113213
Iteration: 6, Func. Count: 46, Neg. LLF: 89.9913808313218
Iteration: 7, Func. Count: 53, Neg. LLF: 89.97990375954765
Iteration: 8, Func. Count: 59, Neg. LLF: 89.97962602379046
Iteration: 9, Func. Count: 65, Neg. LLF: 89.97962466603225
Iteration: 10, Func. Count: 70, Neg. LLF: 89.97962456051424
Optimization terminated successfully (Exit mode 0)
Current function value: 89.97962466603225
Iterations: 10
Function evaluations: 70
Gradient evaluations: 10
Iteration: 1, Func. Count: 8, Neg. LLF: 171.11419005877661
Iteration: 2, Func. Count: 20, Neg. LLF: 208.27235783233346
Iteration: 3, Func. Count: 29, Neg. LLF: 102.06342653140057
Iteration: 4, Func. Count: 37, Neg. LLF: 93.2094605231036
Iteration: 5, Func. Count: 45, Neg. LLF: 90.00831922527429
Iteration: 6, Func. Count: 52, Neg. LLF: 89.99099761364221
Iteration: 7, Func. Count: 59, Neg. LLF: 89.97986519128837
Iteration: 8, Func. Count: 66, Neg. LLF: 89.97968469053058
Iteration: 9, Func. Count: 73, Neg. LLF: 89.97962481983615
Iteration: 10, Func. Count: 79, Neg. LLF: 89.9796247569274
Optimization terminated successfully (Exit mode 0)
Current function value: 89.97962481983615
Iterations: 10
Function evaluations: 79
Gradient evaluations: 10
Iteration: 1, Func. Count: 9, Neg. LLF: 132.47721761862846
Iteration: 2, Func. Count: 19, Neg. LLF: 133.24240523892098
Iteration: 3, Func. Count: 28, Neg. LLF: 203.13733132669944
Iteration: 4, Func. Count: 37, Neg. LLF: 108.02308576387449
Iteration: 5, Func. Count: 46, Neg. LLF: 105.4816057196438
Iteration: 6, Func. Count: 55, Neg. LLF: 93.3509775693637
Iteration: 7, Func. Count: 64, Neg. LLF: 94.03924717407492
Iteration: 8, Func. Count: 73, Neg. LLF: 94.62574758344385
Iteration: 9, Func. Count: 82, Neg. LLF: 91.21731305636007
Iteration: 10, Func. Count: 90, Neg. LLF: 91.20795740947264
Iteration: 11, Func. Count: 98, Neg. LLF: 91.20565641151306
Iteration: 12, Func. Count: 106, Neg. LLF: 91.20566983819936
Iteration: 13, Func. Count: 115, Neg. LLF: 91.20495023687086
Iteration: 14, Func. Count: 123, Neg. LLF: 91.2014482510694
Iteration: 15, Func. Count: 131, Neg. LLF: 91.10706322665446
Iteration: 16, Func. Count: 139, Neg. LLF: 91.03268365566178
Iteration: 17, Func. Count: 147, Neg. LLF: 90.89170342641476
Iteration: 18, Func. Count: 155, Neg. LLF: 90.10437009879645
Iteration: 19, Func. Count: 163, Neg. LLF: 90.0109106113861
Iteration: 20, Func. Count: 171, Neg. LLF: 89.98579548230701
Iteration: 21, Func. Count: 179, Neg. LLF: 89.98055996446274
Iteration: 22, Func. Count: 187, Neg. LLF: 89.97964202106185
Iteration: 23, Func. Count: 195, Neg. LLF: 89.97962491271954
Iteration: 24, Func. Count: 202, Neg. LLF: 89.97962487425518
Optimization terminated successfully (Exit mode 0)
Current function value: 89.97962491271954
Iterations: 24
Function evaluations: 202
Gradient evaluations: 24
Iteration: 1, Func. Count: 10, Neg. LLF: 160.42782682750257
Iteration: 2, Func. Count: 21, Neg. LLF: 93.30091510878303
Iteration: 3, Func. Count: 31, Neg. LLF: 93.81422895568458
Iteration: 4, Func. Count: 41, Neg. LLF: 95.3542766886315
Iteration: 5, Func. Count: 51, Neg. LLF: 91.86053644629266
Iteration: 6, Func. Count: 61, Neg. LLF: 91.58004794120512
Iteration: 7, Func. Count: 71, Neg. LLF: 90.01625212369247
Iteration: 8, Func. Count: 80, Neg. LLF: 89.99780950590409
Iteration: 9, Func. Count: 89, Neg. LLF: 89.97979466102106
Iteration: 10, Func. Count: 98, Neg. LLF: 89.97964277379148
Iteration: 11, Func. Count: 107, Neg. LLF: 89.9796247291371
Iteration: 12, Func. Count: 115, Neg. LLF: 89.97962470584906
Optimization terminated successfully (Exit mode 0)
Current function value: 89.9796247291371
Iterations: 12
Function evaluations: 115
Gradient evaluations: 12
Iteration: 1, Func. Count: 7, Neg. LLF: 144.20251039488613
Iteration: 2, Func. Count: 15, Neg. LLF: 208.4030038902004
Iteration: 3, Func. Count: 22, Neg. LLF: 10131823.13313147
Iteration: 4, Func. Count: 29, Neg. LLF: 98.25284202553858
Iteration: 5, Func. Count: 36, Neg. LLF: 94.36963677417563
Iteration: 6, Func. Count: 43, Neg. LLF: 93.31343111712066
Iteration: 7, Func. Count: 50, Neg. LLF: 93.22544549946248
Iteration: 8, Func. Count: 57, Neg. LLF: 93.19945193044866
Iteration: 9, Func. Count: 64, Neg. LLF: 93.1298437792635
Iteration: 10, Func. Count: 70, Neg. LLF: 93.12345350372237
Iteration: 11, Func. Count: 76, Neg. LLF: 93.12140734853739
Iteration: 12, Func. Count: 82, Neg. LLF: 93.12137983458562
Iteration: 13, Func. Count: 88, Neg. LLF: 93.12137867306024
Iteration: 14, Func. Count: 93, Neg. LLF: 93.1213786730597
Optimization terminated successfully (Exit mode 0)
Current function value: 93.12137867306024
Iterations: 14
Function evaluations: 93
Gradient evaluations: 14
Iteration: 1, Func. Count: 8, Neg. LLF: 219.6111854810598
Iteration: 2, Func. Count: 18, Neg. LLF: 278183829.7184713
Iteration: 3, Func. Count: 27, Neg. LLF: 367.1664740135513
Iteration: 4, Func. Count: 35, Neg. LLF: 98.43960230903974
Iteration: 5, Func. Count: 43, Neg. LLF: 88.52526477143097
Iteration: 6, Func. Count: 50, Neg. LLF: 88.45889246751591
Iteration: 7, Func. Count: 57, Neg. LLF: 88.5141804213341
Iteration: 8, Func. Count: 65, Neg. LLF: 88.40141659288734
Iteration: 9, Func. Count: 72, Neg. LLF: 88.39839259862329
Iteration: 10, Func. Count: 79, Neg. LLF: 88.3982285078825
Iteration: 11, Func. Count: 86, Neg. LLF: 88.39822698902195
Iteration: 12, Func. Count: 92, Neg. LLF: 88.39822689732307
Optimization terminated successfully (Exit mode 0)
Current function value: 88.39822698902195
Iterations: 12
Function evaluations: 92
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 157.12935596794935
Iteration: 2, Func. Count: 21, Neg. LLF: 115617519.13344634
Iteration: 3, Func. Count: 31, Neg. LLF: 8331400.883636894
Iteration: 4, Func. Count: 40, Neg. LLF: 89.63981789943027
Iteration: 5, Func. Count: 49, Neg. LLF: 90.59132159414777
Iteration: 6, Func. Count: 58, Neg. LLF: 87.6837694941861
Iteration: 7, Func. Count: 66, Neg. LLF: 87.4124977858871
Iteration: 8, Func. Count: 74, Neg. LLF: 87.3071096733193
Iteration: 9, Func. Count: 82, Neg. LLF: 87.75626173249064
Iteration: 10, Func. Count: 91, Neg. LLF: 87.23165292556381
Iteration: 11, Func. Count: 100, Neg. LLF: 87.10895771016466
Iteration: 12, Func. Count: 108, Neg. LLF: 87.10835016642613
Iteration: 13, Func. Count: 116, Neg. LLF: 87.10834539480265
Iteration: 14, Func. Count: 123, Neg. LLF: 87.10834526739949
Optimization terminated successfully (Exit mode 0)
Current function value: 87.10834539480265
Iterations: 14
Function evaluations: 123
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 135.56807827237702
Iteration: 2, Func. Count: 24, Neg. LLF: 143481096.07775313
Iteration: 3, Func. Count: 35, Neg. LLF: 8568559.244422354
Iteration: 4, Func. Count: 45, Neg. LLF: 97.97030744631988
Iteration: 5, Func. Count: 55, Neg. LLF: 126.31198269930256
Iteration: 6, Func. Count: 65, Neg. LLF: 98.23764199706622
Iteration: 7, Func. Count: 75, Neg. LLF: 93.49763231088939
Iteration: 8, Func. Count: 85, Neg. LLF: 88.48775268518185
Iteration: 9, Func. Count: 95, Neg. LLF: 88.82229355062876
Iteration: 10, Func. Count: 105, Neg. LLF: 88.0040037222453
Iteration: 11, Func. Count: 115, Neg. LLF: 87.78475337671446
Iteration: 12, Func. Count: 125, Neg. LLF: 87.66473947038311
Iteration: 13, Func. Count: 134, Neg. LLF: 87.66147001374149
Iteration: 14, Func. Count: 143, Neg. LLF: 87.66074851725594
Iteration: 15, Func. Count: 152, Neg. LLF: 87.66062171455485
Iteration: 16, Func. Count: 161, Neg. LLF: 87.6605895236501
Iteration: 17, Func. Count: 170, Neg. LLF: 87.66058869414455
Optimization terminated successfully (Exit mode 0)
Current function value: 87.66058869414455
Iterations: 17
Function evaluations: 170
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 312.37690180251417
Iteration: 2, Func. Count: 22, Neg. LLF: 4070490.158178558
Iteration: 3, Func. Count: 33, Neg. LLF: 126.97593246671673
Iteration: 4, Func. Count: 44, Neg. LLF: 109.36109764525386
Iteration: 5, Func. Count: 55, Neg. LLF: 96.14146108580375
Iteration: 6, Func. Count: 66, Neg. LLF: 95.34140137057554
Iteration: 7, Func. Count: 77, Neg. LLF: 90.83861130191603
Iteration: 8, Func. Count: 88, Neg. LLF: 95.68091124115533
Iteration: 9, Func. Count: 99, Neg. LLF: 87.94966097946613
Iteration: 10, Func. Count: 109, Neg. LLF: 88.9494276225321
Iteration: 11, Func. Count: 120, Neg. LLF: 92.8790144212445
Iteration: 12, Func. Count: 132, Neg. LLF: 88.54842923979236
Iteration: 13, Func. Count: 143, Neg. LLF: 87.70945468087329
Iteration: 14, Func. Count: 154, Neg. LLF: 87.66910390013933
Iteration: 15, Func. Count: 164, Neg. LLF: 87.66213804010935
Iteration: 16, Func. Count: 174, Neg. LLF: 87.66095791577067
Iteration: 17, Func. Count: 184, Neg. LLF: 87.66062544711669
Iteration: 18, Func. Count: 194, Neg. LLF: 87.66058959846627
Iteration: 19, Func. Count: 204, Neg. LLF: 87.66058859166397
Iteration: 20, Func. Count: 213, Neg. LLF: 87.66058850624071
Optimization terminated successfully (Exit mode 0)
Current function value: 87.66058859166397
Iterations: 20
Function evaluations: 213
Gradient evaluations: 20
Iteration: 1, Func. Count: 8, Neg. LLF: 134.42736390435786
Iteration: 2, Func. Count: 17, Neg. LLF: 370.10414094668806
Iteration: 3, Func. Count: 25, Neg. LLF: 10135720.001482157
Iteration: 4, Func. Count: 33, Neg. LLF: 95.47847456648022
Iteration: 5, Func. Count: 41, Neg. LLF: 93.67025246827761
Iteration: 6, Func. Count: 49, Neg. LLF: 94.61516238583386
Iteration: 7, Func. Count: 57, Neg. LLF: 93.20711880098644
Iteration: 8, Func. Count: 65, Neg. LLF: 93.13416881585536
Iteration: 9, Func. Count: 72, Neg. LLF: 93.12837429050678
Iteration: 10, Func. Count: 79, Neg. LLF: 93.12280617767942
Iteration: 11, Func. Count: 86, Neg. LLF: 93.12142633969137
Iteration: 12, Func. Count: 93, Neg. LLF: 93.12138196741944
Iteration: 13, Func. Count: 100, Neg. LLF: 93.12137872801733
Iteration: 14, Func. Count: 106, Neg. LLF: 93.12137878897852
Optimization terminated successfully (Exit mode 0)
Current function value: 93.12137872801733
Iterations: 14
Function evaluations: 106
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 171.69521536941863
Iteration: 2, Func. Count: 21, Neg. LLF: 420571847.73712486
Iteration: 3, Func. Count: 31, Neg. LLF: 10208937.962474177
Iteration: 4, Func. Count: 40, Neg. LLF: 97.39960070747121
Iteration: 5, Func. Count: 49, Neg. LLF: 88.45333934321577
Iteration: 6, Func. Count: 57, Neg. LLF: 88.43087682973828
Iteration: 7, Func. Count: 65, Neg. LLF: 88.46636811764063
Iteration: 8, Func. Count: 74, Neg. LLF: 88.39881305202343
Iteration: 9, Func. Count: 82, Neg. LLF: 88.39827572307054
Iteration: 10, Func. Count: 90, Neg. LLF: 88.3982304250394
Iteration: 11, Func. Count: 98, Neg. LLF: 88.39822689335395
Iteration: 12, Func. Count: 105, Neg. LLF: 88.39822680172709
Optimization terminated successfully (Exit mode 0)
Current function value: 88.39822689335395
Iterations: 12
Function evaluations: 105
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 151.66981914631717
Iteration: 2, Func. Count: 24, Neg. LLF: 229602078.95527735
Iteration: 3, Func. Count: 35, Neg. LLF: 8289833.6777406065
Iteration: 4, Func. Count: 45, Neg. LLF: 89.68485810342035
Iteration: 5, Func. Count: 55, Neg. LLF: 89.78525055006983
Iteration: 6, Func. Count: 65, Neg. LLF: 87.99675195625814
Iteration: 7, Func. Count: 74, Neg. LLF: 87.55940196829232
Iteration: 8, Func. Count: 83, Neg. LLF: 87.71812957939171
Iteration: 9, Func. Count: 93, Neg. LLF: 87.64420436683656
Iteration: 10, Func. Count: 103, Neg. LLF: 87.11210718506965
Iteration: 11, Func. Count: 112, Neg. LLF: 87.16016668785853
Iteration: 12, Func. Count: 122, Neg. LLF: 87.09518469546782
Iteration: 13, Func. Count: 131, Neg. LLF: 87.10069286324261
Iteration: 14, Func. Count: 141, Neg. LLF: 87.09427645372178
Iteration: 15, Func. Count: 150, Neg. LLF: 87.09426660421036
Iteration: 16, Func. Count: 159, Neg. LLF: 87.09426493398638
Iteration: 17, Func. Count: 167, Neg. LLF: 87.09426480763364
Optimization terminated successfully (Exit mode 0)
Current function value: 87.09426493398638
Iterations: 17
Function evaluations: 167
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 182713097.1406336
Iteration: 2, Func. Count: 22, Neg. LLF: 6629332.314277206
Iteration: 3, Func. Count: 33, Neg. LLF: 109.42638650774131
Iteration: 4, Func. Count: 44, Neg. LLF: 105.87129309656378
Iteration: 5, Func. Count: 55, Neg. LLF: 96.6059667662814
Iteration: 6, Func. Count: 66, Neg. LLF: 88.73559540120701
Iteration: 7, Func. Count: 77, Neg. LLF: 89.31123272948906
Iteration: 8, Func. Count: 88, Neg. LLF: 88.7673317737101
Iteration: 9, Func. Count: 99, Neg. LLF: 88.35466470781014
Iteration: 10, Func. Count: 110, Neg. LLF: 88.71207734095684
Iteration: 11, Func. Count: 121, Neg. LLF: 87.68535103591091
Iteration: 12, Func. Count: 131, Neg. LLF: 87.66395690260487
Iteration: 13, Func. Count: 141, Neg. LLF: 87.6631560542964
Iteration: 14, Func. Count: 152, Neg. LLF: 87.6606110621385
Iteration: 15, Func. Count: 162, Neg. LLF: 87.66058996840133
Iteration: 16, Func. Count: 172, Neg. LLF: 87.66058864096864
Iteration: 17, Func. Count: 181, Neg. LLF: 87.660588544653
Optimization terminated successfully (Exit mode 0)
Current function value: 87.66058864096864
Iterations: 17
Function evaluations: 181
Gradient evaluations: 17
Iteration: 1, Func. Count: 12, Neg. LLF: 275.4134304937601
Iteration: 2, Func. Count: 24, Neg. LLF: 4092351.3179197335
Iteration: 3, Func. Count: 36, Neg. LLF: 122.58182306490552
Iteration: 4, Func. Count: 48, Neg. LLF: 102.84103066400446
Iteration: 5, Func. Count: 60, Neg. LLF: 95.44281416630663
Iteration: 6, Func. Count: 72, Neg. LLF: 92.63052686792102
Iteration: 7, Func. Count: 84, Neg. LLF: 90.93986523851804
Iteration: 8, Func. Count: 96, Neg. LLF: 93.45230464782905
Iteration: 9, Func. Count: 108, Neg. LLF: 88.37060715942668
Iteration: 10, Func. Count: 120, Neg. LLF: 88.43430734404653
Iteration: 11, Func. Count: 132, Neg. LLF: 88.70543826333203
Iteration: 12, Func. Count: 144, Neg. LLF: 87.66419093303404
Iteration: 13, Func. Count: 155, Neg. LLF: 87.6660116206463
Iteration: 14, Func. Count: 167, Neg. LLF: 87.6610509084825
Iteration: 15, Func. Count: 178, Neg. LLF: 87.66073478478329
Iteration: 16, Func. Count: 189, Neg. LLF: 87.66062332809855
Iteration: 17, Func. Count: 200, Neg. LLF: 87.6605895615477
Iteration: 18, Func. Count: 211, Neg. LLF: 87.66058858766212
Optimization terminated successfully (Exit mode 0)
Current function value: 87.66058858766212
Iterations: 18
Function evaluations: 211
Gradient evaluations: 18
Iteration: 1, Func. Count: 9, Neg. LLF: 128.31728950285108
Iteration: 2, Func. Count: 19, Neg. LLF: 1240.7539882642425
Iteration: 3, Func. Count: 28, Neg. LLF: 9514716.366643196
Iteration: 4, Func. Count: 37, Neg. LLF: 3453164.0032739346
Iteration: 5, Func. Count: 46, Neg. LLF: 157.20133266489873
Iteration: 6, Func. Count: 55, Neg. LLF: 94.82685524016463
Iteration: 7, Func. Count: 64, Neg. LLF: 94.24869951718222
Iteration: 8, Func. Count: 73, Neg. LLF: 92.33777616198451
Iteration: 9, Func. Count: 82, Neg. LLF: 91.61100303418335
Iteration: 10, Func. Count: 90, Neg. LLF: 91.90223553125686
Iteration: 11, Func. Count: 99, Neg. LLF: 91.50756821745986
Iteration: 12, Func. Count: 107, Neg. LLF: 91.39568666834525
Iteration: 13, Func. Count: 115, Neg. LLF: 91.38281110470616
Iteration: 14, Func. Count: 123, Neg. LLF: 91.37970690968845
Iteration: 15, Func. Count: 131, Neg. LLF: 91.37918181109148
Iteration: 16, Func. Count: 139, Neg. LLF: 91.37916661173215
Iteration: 17, Func. Count: 147, Neg. LLF: 91.3791658403552
Optimization terminated successfully (Exit mode 0)
Current function value: 91.3791658403552
Iterations: 17
Function evaluations: 147
Gradient evaluations: 17
Iteration: 1, Func. Count: 10, Neg. LLF: 160.33541140079785
Iteration: 2, Func. Count: 24, Neg. LLF: 232264519.20658317
Iteration: 3, Func. Count: 35, Neg. LLF: 8272966.329737949
Iteration: 4, Func. Count: 45, Neg. LLF: 89.91436751876253
Iteration: 5, Func. Count: 55, Neg. LLF: 88.46158971321067
Iteration: 6, Func. Count: 64, Neg. LLF: 88.4140886660318
Iteration: 7, Func. Count: 73, Neg. LLF: 88.40076293267556
Iteration: 8, Func. Count: 82, Neg. LLF: 88.40344179737585
Iteration: 9, Func. Count: 92, Neg. LLF: 88.3982518245513
Iteration: 10, Func. Count: 101, Neg. LLF: 88.39822752209564
Iteration: 11, Func. Count: 110, Neg. LLF: 88.39822679321078
Optimization terminated successfully (Exit mode 0)
Current function value: 88.39822679321078
Iterations: 11
Function evaluations: 110
Gradient evaluations: 11
Iteration: 1, Func. Count: 11, Neg. LLF: 148.83337817541326
Iteration: 2, Func. Count: 26, Neg. LLF: 223735256.36443508
Iteration: 3, Func. Count: 38, Neg. LLF: 8303110.162579579
Iteration: 4, Func. Count: 49, Neg. LLF: 90.13138274544771
Iteration: 5, Func. Count: 60, Neg. LLF: 94.60289914533975
Iteration: 6, Func. Count: 71, Neg. LLF: 88.03652762464273
Iteration: 7, Func. Count: 81, Neg. LLF: 87.43608571120983
Iteration: 8, Func. Count: 91, Neg. LLF: 87.66721462641866
Iteration: 9, Func. Count: 102, Neg. LLF: 87.89559978424543
Iteration: 10, Func. Count: 113, Neg. LLF: 87.12146048651124
Iteration: 11, Func. Count: 123, Neg. LLF: 87.23587112729285
Iteration: 12, Func. Count: 134, Neg. LLF: 87.1013161227301
Iteration: 13, Func. Count: 145, Neg. LLF: 87.09446302316618
Iteration: 14, Func. Count: 155, Neg. LLF: 87.09430442800335
Iteration: 15, Func. Count: 165, Neg. LLF: 87.0942754663753
Iteration: 16, Func. Count: 175, Neg. LLF: 87.09426464847782
Iteration: 17, Func. Count: 184, Neg. LLF: 87.09426452197373
Optimization terminated successfully (Exit mode 0)
Current function value: 87.09426464847782
Iterations: 17
Function evaluations: 184
Gradient evaluations: 17
Iteration: 1, Func. Count: 12, Neg. LLF: 185355652.77226582
Iteration: 2, Func. Count: 24, Neg. LLF: 175.30259616530108
Iteration: 3, Func. Count: 36, Neg. LLF: 112.09764153452656
Iteration: 4, Func. Count: 48, Neg. LLF: 96.13374832247631
Iteration: 5, Func. Count: 60, Neg. LLF: 96.47615992967904
Iteration: 6, Func. Count: 72, Neg. LLF: 105.86778686162191
Iteration: 7, Func. Count: 84, Neg. LLF: 89.26245828394883
Iteration: 8, Func. Count: 96, Neg. LLF: 89.80069591247072
Iteration: 9, Func. Count: 108, Neg. LLF: 89.30904571337383
Iteration: 10, Func. Count: 120, Neg. LLF: 88.1030668587837
Iteration: 11, Func. Count: 132, Neg. LLF: 87.56202771415263
Iteration: 12, Func. Count: 143, Neg. LLF: 87.42075638569527
Iteration: 13, Func. Count: 154, Neg. LLF: 87.41580521160327
Iteration: 14, Func. Count: 165, Neg. LLF: 87.411623175684
Iteration: 15, Func. Count: 176, Neg. LLF: 87.41153016510587
Iteration: 16, Func. Count: 187, Neg. LLF: 87.41150431980931
Iteration: 17, Func. Count: 197, Neg. LLF: 87.41150423001412
Optimization terminated successfully (Exit mode 0)
Current function value: 87.41150431980931
Iterations: 17
Function evaluations: 197
Gradient evaluations: 17
Iteration: 1, Func. Count: 13, Neg. LLF: 173.51150852995517
Iteration: 2, Func. Count: 26, Neg. LLF: 4295394.066123146
Iteration: 3, Func. Count: 39, Neg. LLF: 5029993.69187541
Iteration: 4, Func. Count: 52, Neg. LLF: 93.61146318339192
Iteration: 5, Func. Count: 65, Neg. LLF: 93.64788754143292
Iteration: 6, Func. Count: 78, Neg. LLF: 92.9509205218864
Iteration: 7, Func. Count: 91, Neg. LLF: 91.00992374647613
Iteration: 8, Func. Count: 104, Neg. LLF: 88.70156899617918
Iteration: 9, Func. Count: 117, Neg. LLF: 88.56774593113593
Iteration: 10, Func. Count: 130, Neg. LLF: 87.59501284185735
Iteration: 11, Func. Count: 143, Neg. LLF: 87.1679740076153
Iteration: 12, Func. Count: 155, Neg. LLF: 86.75939552999813
Iteration: 13, Func. Count: 167, Neg. LLF: 87.30098083799251
Iteration: 14, Func. Count: 180, Neg. LLF: 86.69901338212284
Iteration: 15, Func. Count: 193, Neg. LLF: 86.64268571720537
Iteration: 16, Func. Count: 206, Neg. LLF: 86.63443859260909
Iteration: 17, Func. Count: 219, Neg. LLF: 86.63370392548336
Iteration: 18, Func. Count: 231, Neg. LLF: 86.6336767068625
Iteration: 19, Func. Count: 243, Neg. LLF: 86.63367578822908
Optimization terminated successfully (Exit mode 0)
Current function value: 86.63367578822908
Iterations: 19
Function evaluations: 243
Gradient evaluations: 19
Iteration: 1, Func. Count: 6, Neg. LLF: 114.02870177033272
Iteration: 2, Func. Count: 13, Neg. LLF: 187.42190707347473
Iteration: 3, Func. Count: 19, Neg. LLF: 656.5782986246825
Iteration: 4, Func. Count: 25, Neg. LLF: 158.65038438232676
Iteration: 5, Func. Count: 31, Neg. LLF: 203.64490059929707
Iteration: 6, Func. Count: 37, Neg. LLF: 138.61905485098444
Iteration: 7, Func. Count: 43, Neg. LLF: 95.39764111924488
Iteration: 8, Func. Count: 49, Neg. LLF: 93.08074505092439
Iteration: 9, Func. Count: 55, Neg. LLF: 92.89764174083783
Iteration: 10, Func. Count: 60, Neg. LLF: 92.8484673869362
Iteration: 11, Func. Count: 65, Neg. LLF: 92.83607312220106
Iteration: 12, Func. Count: 70, Neg. LLF: 92.83408852487021
Iteration: 13, Func. Count: 75, Neg. LLF: 92.83396575723567
Iteration: 14, Func. Count: 80, Neg. LLF: 92.83395882111019
Iteration: 15, Func. Count: 85, Neg. LLF: 92.83395792657784
Optimization terminated successfully (Exit mode 0)
Current function value: 92.83395792657784
Iterations: 15
Function evaluations: 85
Gradient evaluations: 15
Iteration: 1, Func. Count: 7, Neg. LLF: 154.84412155236868
Iteration: 2, Func. Count: 18, Neg. LLF: 288.00727625000627
Iteration: 3, Func. Count: 26, Neg. LLF: 122.51347604229552
Iteration: 4, Func. Count: 33, Neg. LLF: 88.84449564947322
Iteration: 5, Func. Count: 39, Neg. LLF: 101.56883156386183
Iteration: 6, Func. Count: 46, Neg. LLF: 88.71202214393877
Iteration: 7, Func. Count: 52, Neg. LLF: 89.86962156314208
Iteration: 8, Func. Count: 60, Neg. LLF: 88.70109996058919
Iteration: 9, Func. Count: 66, Neg. LLF: 88.69891957072281
Iteration: 10, Func. Count: 72, Neg. LLF: 88.69878422174428
Iteration: 11, Func. Count: 78, Neg. LLF: 88.69876990024267
Iteration: 12, Func. Count: 83, Neg. LLF: 88.69876988991162
Optimization terminated successfully (Exit mode 0)
Current function value: 88.69876990024267
Iterations: 12
Function evaluations: 83
Gradient evaluations: 12
Iteration: 1, Func. Count: 8, Neg. LLF: 1162.5530159664827
Iteration: 2, Func. Count: 16, Neg. LLF: 1579.2581089840285
Iteration: 3, Func. Count: 24, Neg. LLF: 96.09011208049833
Iteration: 4, Func. Count: 32, Neg. LLF: 100.21816334096005
Iteration: 5, Func. Count: 40, Neg. LLF: 90.11204078444587
Iteration: 6, Func. Count: 48, Neg. LLF: 111.87201031967946
Iteration: 7, Func. Count: 56, Neg. LLF: 88.92797662459792
Iteration: 8, Func. Count: 64, Neg. LLF: 88.84408800052556
Iteration: 9, Func. Count: 72, Neg. LLF: 88.43284686662365
Iteration: 10, Func. Count: 79, Neg. LLF: 88.42746757754192
Iteration: 11, Func. Count: 87, Neg. LLF: 88.3779811352031
Iteration: 12, Func. Count: 94, Neg. LLF: 88.37387163119382
Iteration: 13, Func. Count: 101, Neg. LLF: 88.37380534371117
Iteration: 14, Func. Count: 108, Neg. LLF: 88.37380459035022
Optimization terminated successfully (Exit mode 0)
Current function value: 88.37380459035022
Iterations: 14
Function evaluations: 108
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 235.15168946120477
Iteration: 2, Func. Count: 18, Neg. LLF: 361.2153738476733
Iteration: 3, Func. Count: 27, Neg. LLF: 124.61627495447483
Iteration: 4, Func. Count: 36, Neg. LLF: 110.00228147775142
Iteration: 5, Func. Count: 45, Neg. LLF: 90.83800634504625
Iteration: 6, Func. Count: 54, Neg. LLF: 95.10532018433777
Iteration: 7, Func. Count: 63, Neg. LLF: 91.84142577571895
Iteration: 8, Func. Count: 72, Neg. LLF: 91.50501729128372
Iteration: 9, Func. Count: 81, Neg. LLF: 89.08999730731651
Iteration: 10, Func. Count: 90, Neg. LLF: 88.71638903172902
Iteration: 11, Func. Count: 98, Neg. LLF: 88.72075485078989
Iteration: 12, Func. Count: 107, Neg. LLF: 88.69924585150332
Iteration: 13, Func. Count: 115, Neg. LLF: 88.69884416463263
Iteration: 14, Func. Count: 123, Neg. LLF: 88.69876973589048
Iteration: 15, Func. Count: 130, Neg. LLF: 88.69876977127154
Optimization terminated successfully (Exit mode 0)
Current function value: 88.69876973589048
Iterations: 15
Function evaluations: 130
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 121.90899401373093
Iteration: 2, Func. Count: 20, Neg. LLF: 18580.17770459861
Iteration: 3, Func. Count: 30, Neg. LLF: 143.82530163468178
Iteration: 4, Func. Count: 40, Neg. LLF: 128.09726535572497
Iteration: 5, Func. Count: 50, Neg. LLF: 95.35835348985918
Iteration: 6, Func. Count: 60, Neg. LLF: 92.30231560498936
Iteration: 7, Func. Count: 70, Neg. LLF: 88.56990159155491
Iteration: 8, Func. Count: 79, Neg. LLF: 88.45123236937296
Iteration: 9, Func. Count: 88, Neg. LLF: 88.3904428906958
Iteration: 10, Func. Count: 97, Neg. LLF: 88.37981564018486
Iteration: 11, Func. Count: 106, Neg. LLF: 88.3754515513174
Iteration: 12, Func. Count: 115, Neg. LLF: 88.37387276974856
Iteration: 13, Func. Count: 124, Neg. LLF: 88.3738065371207
Iteration: 14, Func. Count: 133, Neg. LLF: 88.3738045665303
Iteration: 15, Func. Count: 141, Neg. LLF: 88.37380455995995
Optimization terminated successfully (Exit mode 0)
Current function value: 88.3738045665303
Iterations: 15
Function evaluations: 141
Gradient evaluations: 15
Iteration: 1, Func. Count: 7, Neg. LLF: 113.46651124277096
Iteration: 2, Func. Count: 15, Neg. LLF: 190.9040975308453
Iteration: 3, Func. Count: 22, Neg. LLF: 608.69881172609
Iteration: 4, Func. Count: 29, Neg. LLF: 441.77200815170295
Iteration: 5, Func. Count: 36, Neg. LLF: 342.8641825607438
Iteration: 6, Func. Count: 43, Neg. LLF: 172.02242357354152
Iteration: 7, Func. Count: 50, Neg. LLF: 115.84519531176959
Iteration: 8, Func. Count: 57, Neg. LLF: 96.3784786980838
Iteration: 9, Func. Count: 64, Neg. LLF: 98.4090586338097
Iteration: 10, Func. Count: 71, Neg. LLF: 92.81307653623499
Iteration: 11, Func. Count: 77, Neg. LLF: 92.79572726928897
Iteration: 12, Func. Count: 83, Neg. LLF: 92.8010026110868
Iteration: 13, Func. Count: 90, Neg. LLF: 92.75230414692766
Iteration: 14, Func. Count: 96, Neg. LLF: 92.74292995467445
Iteration: 15, Func. Count: 102, Neg. LLF: 92.73399517147308
Iteration: 16, Func. Count: 108, Neg. LLF: 92.73244763170258
Iteration: 17, Func. Count: 114, Neg. LLF: 92.73238006484145
Iteration: 18, Func. Count: 120, Neg. LLF: 92.73237930775353
Optimization terminated successfully (Exit mode 0)
Current function value: 92.73237930775353
Iterations: 18
Function evaluations: 120
Gradient evaluations: 18
Iteration: 1, Func. Count: 8, Neg. LLF: 163.06274861405754
Iteration: 2, Func. Count: 20, Neg. LLF: 243.5833201062567
Iteration: 3, Func. Count: 29, Neg. LLF: 112.79299657661318
Iteration: 4, Func. Count: 37, Neg. LLF: 88.8227239060139
Iteration: 5, Func. Count: 44, Neg. LLF: 98.89827882965186
Iteration: 6, Func. Count: 52, Neg. LLF: 88.70721311964402
Iteration: 7, Func. Count: 59, Neg. LLF: 88.65814402794722
Iteration: 8, Func. Count: 66, Neg. LLF: 88.65641630442275
Iteration: 9, Func. Count: 73, Neg. LLF: 88.65624378374156
Iteration: 10, Func. Count: 80, Neg. LLF: 88.65623192096407
Iteration: 11, Func. Count: 87, Neg. LLF: 88.65623120766637
Optimization terminated successfully (Exit mode 0)
Current function value: 88.65623120766637
Iterations: 11
Function evaluations: 87
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 151.1407148552069
Iteration: 2, Func. Count: 22, Neg. LLF: 160.58887904729193
Iteration: 3, Func. Count: 32, Neg. LLF: 127.74435312852626
Iteration: 4, Func. Count: 41, Neg. LLF: 89.56790574083405
Iteration: 5, Func. Count: 50, Neg. LLF: 88.99938345343155
Iteration: 6, Func. Count: 59, Neg. LLF: 88.70668172029123
Iteration: 7, Func. Count: 67, Neg. LLF: 88.6829539476554
Iteration: 8, Func. Count: 75, Neg. LLF: 88.67103223286169
Iteration: 9, Func. Count: 83, Neg. LLF: 88.61140806607807
Iteration: 10, Func. Count: 91, Neg. LLF: 88.55112133358824
Iteration: 11, Func. Count: 99, Neg. LLF: 88.4555708194315
Iteration: 12, Func. Count: 107, Neg. LLF: 88.40652469400433
Iteration: 13, Func. Count: 115, Neg. LLF: 88.37064917551223
Iteration: 14, Func. Count: 123, Neg. LLF: 88.3694585465162
Iteration: 15, Func. Count: 131, Neg. LLF: 88.36928086954485
Iteration: 16, Func. Count: 139, Neg. LLF: 88.36924785301058
Iteration: 17, Func. Count: 147, Neg. LLF: 88.3692400734402
Iteration: 18, Func. Count: 154, Neg. LLF: 88.36924003511496
Optimization terminated successfully (Exit mode 0)
Current function value: 88.3692400734402
Iterations: 18
Function evaluations: 154
Gradient evaluations: 18
Iteration: 1, Func. Count: 10, Neg. LLF: 411.53636954154655
Iteration: 2, Func. Count: 20, Neg. LLF: 671.518732796592
Iteration: 3, Func. Count: 30, Neg. LLF: 158.279258952646
Iteration: 4, Func. Count: 40, Neg. LLF: 95.65123551843612
Iteration: 5, Func. Count: 50, Neg. LLF: 92.77184241847864
Iteration: 6, Func. Count: 61, Neg. LLF: 89.42244673543654
Iteration: 7, Func. Count: 70, Neg. LLF: 88.98103198182443
Iteration: 8, Func. Count: 79, Neg. LLF: 97.64844894345988
Iteration: 9, Func. Count: 89, Neg. LLF: 88.79941334862362
Iteration: 10, Func. Count: 98, Neg. LLF: 88.65861556112729
Iteration: 11, Func. Count: 107, Neg. LLF: 88.88458045586454
Iteration: 12, Func. Count: 117, Neg. LLF: 88.44756653252465
Iteration: 13, Func. Count: 126, Neg. LLF: 88.38005305335597
Iteration: 14, Func. Count: 135, Neg. LLF: 88.3699749790076
Iteration: 15, Func. Count: 144, Neg. LLF: 88.36931472611518
Iteration: 16, Func. Count: 153, Neg. LLF: 88.36925458714325
Iteration: 17, Func. Count: 162, Neg. LLF: 88.36924056444111
Iteration: 18, Func. Count: 171, Neg. LLF: 88.36923982290364
Optimization terminated successfully (Exit mode 0)
Current function value: 88.36923982290364
Iterations: 18
Function evaluations: 171
Gradient evaluations: 18
Iteration: 1, Func. Count: 11, Neg. LLF: 144.1971348028403
Iteration: 2, Func. Count: 22, Neg. LLF: 600.0729210008557
Iteration: 3, Func. Count: 33, Neg. LLF: 203.0872838888043
Iteration: 4, Func. Count: 44, Neg. LLF: 98.7102013502423
Iteration: 5, Func. Count: 55, Neg. LLF: 93.06826578750385
Iteration: 6, Func. Count: 66, Neg. LLF: 88.78577298103869
Iteration: 7, Func. Count: 76, Neg. LLF: 88.81253577406748
Iteration: 8, Func. Count: 87, Neg. LLF: 89.50214346449715
Iteration: 9, Func. Count: 98, Neg. LLF: 88.58699892642758
Iteration: 10, Func. Count: 109, Neg. LLF: 88.57220607470413
Iteration: 11, Func. Count: 120, Neg. LLF: 88.39385588596524
Iteration: 12, Func. Count: 130, Neg. LLF: 88.58436854447217
Iteration: 13, Func. Count: 141, Neg. LLF: 88.37486645084986
Iteration: 14, Func. Count: 151, Neg. LLF: 88.36958796262411
Iteration: 15, Func. Count: 161, Neg. LLF: 88.36926288821384
Iteration: 16, Func. Count: 171, Neg. LLF: 88.36924030282523
Iteration: 17, Func. Count: 181, Neg. LLF: 88.36923982831279
Optimization terminated successfully (Exit mode 0)
Current function value: 88.36923982831279
Iterations: 17
Function evaluations: 181
Gradient evaluations: 17
Iteration: 1, Func. Count: 8, Neg. LLF: 106.49162593928646
Iteration: 2, Func. Count: 17, Neg. LLF: 258.10230292360365
Iteration: 3, Func. Count: 25, Neg. LLF: 546.0231907555258
Iteration: 4, Func. Count: 33, Neg. LLF: 327.26555102430115
Iteration: 5, Func. Count: 41, Neg. LLF: 280.4402907631593
Iteration: 6, Func. Count: 49, Neg. LLF: 94.09218064010136
Iteration: 7, Func. Count: 57, Neg. LLF: 95.26322582637782
Iteration: 8, Func. Count: 65, Neg. LLF: 92.7823508884949
Iteration: 9, Func. Count: 73, Neg. LLF: 91.88208222503847
Iteration: 10, Func. Count: 81, Neg. LLF: 91.74668854848244
Iteration: 11, Func. Count: 88, Neg. LLF: 91.64900534468035
Iteration: 12, Func. Count: 95, Neg. LLF: 91.63385765144386
Iteration: 13, Func. Count: 102, Neg. LLF: 91.62413263647069
Iteration: 14, Func. Count: 109, Neg. LLF: 91.62178445040016
Iteration: 15, Func. Count: 116, Neg. LLF: 91.62146760618725
Iteration: 16, Func. Count: 123, Neg. LLF: 91.62144314423928
Iteration: 17, Func. Count: 130, Neg. LLF: 91.62144206468727
Iteration: 18, Func. Count: 136, Neg. LLF: 91.62144206469098
Optimization terminated successfully (Exit mode 0)
Current function value: 91.62144206468727
Iterations: 18
Function evaluations: 136
Gradient evaluations: 18
Iteration: 1, Func. Count: 9, Neg. LLF: 204.62911319993253
Iteration: 2, Func. Count: 21, Neg. LLF: 308236401.44938517
Iteration: 3, Func. Count: 31, Neg. LLF: 129.61653175048082
Iteration: 4, Func. Count: 40, Neg. LLF: 106.35366071309483
Iteration: 5, Func. Count: 49, Neg. LLF: 88.08340178509314
Iteration: 6, Func. Count: 57, Neg. LLF: 88.14716410995462
Iteration: 7, Func. Count: 66, Neg. LLF: 88.71052791738856
Iteration: 8, Func. Count: 75, Neg. LLF: 87.98580948764352
Iteration: 9, Func. Count: 84, Neg. LLF: 87.97512028436435
Iteration: 10, Func. Count: 93, Neg. LLF: 87.95470551635779
Iteration: 11, Func. Count: 101, Neg. LLF: 87.95458593717993
Iteration: 12, Func. Count: 109, Neg. LLF: 87.95458360970572
Iteration: 13, Func. Count: 116, Neg. LLF: 87.95458355559333
Optimization terminated successfully (Exit mode 0)
Current function value: 87.95458360970572
Iterations: 13
Function evaluations: 116
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 183.62537669523326
Iteration: 2, Func. Count: 23, Neg. LLF: 173196494.5941472
Iteration: 3, Func. Count: 34, Neg. LLF: 10559041.380992953
Iteration: 4, Func. Count: 44, Neg. LLF: 115.44386943651386
Iteration: 5, Func. Count: 54, Neg. LLF: 87.75521997796596
Iteration: 6, Func. Count: 63, Neg. LLF: 101.61379582278457
Iteration: 7, Func. Count: 73, Neg. LLF: 98.57905945585117
Iteration: 8, Func. Count: 84, Neg. LLF: 88.19608665935719
Iteration: 9, Func. Count: 94, Neg. LLF: 86.51596758261313
Iteration: 10, Func. Count: 103, Neg. LLF: 86.45201501048378
Iteration: 11, Func. Count: 112, Neg. LLF: 86.43259188721953
Iteration: 12, Func. Count: 121, Neg. LLF: 86.42998643678371
Iteration: 13, Func. Count: 130, Neg. LLF: 86.42914489920724
Iteration: 14, Func. Count: 139, Neg. LLF: 86.4289987147622
Iteration: 15, Func. Count: 148, Neg. LLF: 86.42898083028206
Iteration: 16, Func. Count: 156, Neg. LLF: 86.42898074197089
Optimization terminated successfully (Exit mode 0)
Current function value: 86.42898083028206
Iterations: 16
Function evaluations: 156
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 187194471.46895543
Iteration: 2, Func. Count: 22, Neg. LLF: 8531011.263606554
Iteration: 3, Func. Count: 33, Neg. LLF: 678.3282829956754
Iteration: 4, Func. Count: 44, Neg. LLF: 92.1364884355643
Iteration: 5, Func. Count: 55, Neg. LLF: 92.82693845090427
Iteration: 6, Func. Count: 66, Neg. LLF: 87.34805640470316
Iteration: 7, Func. Count: 76, Neg. LLF: 106.64360988347303
Iteration: 8, Func. Count: 87, Neg. LLF: 116.96977076256023
Iteration: 9, Func. Count: 99, Neg. LLF: 88.02669148294994
Iteration: 10, Func. Count: 110, Neg. LLF: 86.45009828697087
Iteration: 11, Func. Count: 120, Neg. LLF: 86.43727502769613
Iteration: 12, Func. Count: 130, Neg. LLF: 86.43144410965901
Iteration: 13, Func. Count: 140, Neg. LLF: 86.42923000766484
Iteration: 14, Func. Count: 150, Neg. LLF: 86.42899553886213
Iteration: 15, Func. Count: 160, Neg. LLF: 86.42898065339385
Iteration: 16, Func. Count: 169, Neg. LLF: 86.42898073630434
Optimization terminated successfully (Exit mode 0)
Current function value: 86.42898065339385
Iterations: 16
Function evaluations: 169
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 129930362.11997849
Iteration: 2, Func. Count: 24, Neg. LLF: 8749282.22638497
Iteration: 3, Func. Count: 36, Neg. LLF: 210.94156640841385
Iteration: 4, Func. Count: 48, Neg. LLF: 89.92975864765062
Iteration: 5, Func. Count: 60, Neg. LLF: 88.97803742453709
Iteration: 6, Func. Count: 72, Neg. LLF: 86.98526496976149
Iteration: 7, Func. Count: 83, Neg. LLF: 102.27759975350511
Iteration: 8, Func. Count: 95, Neg. LLF: 92.03076432695991
Iteration: 9, Func. Count: 107, Neg. LLF: 90.2861561304273
Iteration: 10, Func. Count: 119, Neg. LLF: 87.9394618615618
Iteration: 11, Func. Count: 131, Neg. LLF: 86.53116640978267
Iteration: 12, Func. Count: 143, Neg. LLF: 86.90059115159919
Iteration: 13, Func. Count: 155, Neg. LLF: 86.37248008588645
Iteration: 14, Func. Count: 166, Neg. LLF: 86.37233495061803
Iteration: 15, Func. Count: 177, Neg. LLF: 86.37232832653301
Iteration: 16, Func. Count: 188, Neg. LLF: 86.37232748778672
Optimization terminated successfully (Exit mode 0)
Current function value: 86.37232748778672
Iterations: 16
Function evaluations: 188
Gradient evaluations: 16
Iteration: 1, Func. Count: 9, Neg. LLF: 102.5252681940375
Iteration: 2, Func. Count: 19, Neg. LLF: 377.2225177758964
Iteration: 3, Func. Count: 28, Neg. LLF: 458.3390904060063
Iteration: 4, Func. Count: 37, Neg. LLF: 1562.4714135425013
Iteration: 5, Func. Count: 46, Neg. LLF: 12003.797077207137
Iteration: 6, Func. Count: 55, Neg. LLF: 743.8658519382587
Iteration: 7, Func. Count: 64, Neg. LLF: 91.91841729028789
Iteration: 8, Func. Count: 72, Neg. LLF: 92.13191995540379
Iteration: 9, Func. Count: 81, Neg. LLF: 101.86079081859619
Iteration: 10, Func. Count: 92, Neg. LLF: 91.7465299802579
Iteration: 11, Func. Count: 100, Neg. LLF: 91.66387000645335
Iteration: 12, Func. Count: 108, Neg. LLF: 91.63024529981718
Iteration: 13, Func. Count: 116, Neg. LLF: 91.6217958206663
Iteration: 14, Func. Count: 124, Neg. LLF: 91.62145488208067
Iteration: 15, Func. Count: 132, Neg. LLF: 91.62144313489748
Iteration: 16, Func. Count: 140, Neg. LLF: 91.62144214945775
Optimization terminated successfully (Exit mode 0)
Current function value: 91.62144214945775
Iterations: 16
Function evaluations: 140
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 196.11540362560214
Iteration: 2, Func. Count: 24, Neg. LLF: 455466521.0820279
Iteration: 3, Func. Count: 35, Neg. LLF: 145.73233510573723
Iteration: 4, Func. Count: 45, Neg. LLF: 106.0214579083229
Iteration: 5, Func. Count: 55, Neg. LLF: 88.03998444076753
Iteration: 6, Func. Count: 64, Neg. LLF: 88.05450825863008
Iteration: 7, Func. Count: 74, Neg. LLF: 88.61239090497483
Iteration: 8, Func. Count: 84, Neg. LLF: 87.95732033853996
Iteration: 9, Func. Count: 93, Neg. LLF: 87.95560800689374
Iteration: 10, Func. Count: 102, Neg. LLF: 87.95460116144449
Iteration: 11, Func. Count: 111, Neg. LLF: 87.95458549496415
Iteration: 12, Func. Count: 120, Neg. LLF: 87.95458348857541
Iteration: 13, Func. Count: 128, Neg. LLF: 87.95458343446357
Optimization terminated successfully (Exit mode 0)
Current function value: 87.95458348857541
Iterations: 13
Function evaluations: 128
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 168.89077131236428
Iteration: 2, Func. Count: 25, Neg. LLF: 188646548.55263257
Iteration: 3, Func. Count: 37, Neg. LLF: 10130243.125511145
Iteration: 4, Func. Count: 48, Neg. LLF: 115.86715945590677
Iteration: 5, Func. Count: 59, Neg. LLF: 88.162235691071
Iteration: 6, Func. Count: 70, Neg. LLF: 88.68538373322082
Iteration: 7, Func. Count: 81, Neg. LLF: 86.87788892848904
Iteration: 8, Func. Count: 91, Neg. LLF: 87.12433237423677
Iteration: 9, Func. Count: 102, Neg. LLF: 92.55256497834834
Iteration: 10, Func. Count: 114, Neg. LLF: 86.46499243015987
Iteration: 11, Func. Count: 124, Neg. LLF: 86.64043001697323
Iteration: 12, Func. Count: 135, Neg. LLF: 86.43464012580137
Iteration: 13, Func. Count: 145, Neg. LLF: 86.41941231818964
Iteration: 14, Func. Count: 155, Neg. LLF: 86.41857630306255
Iteration: 15, Func. Count: 165, Neg. LLF: 86.41833822971769
Iteration: 16, Func. Count: 175, Neg. LLF: 86.41833395227303
Iteration: 17, Func. Count: 184, Neg. LLF: 86.4183338657958
Optimization terminated successfully (Exit mode 0)
Current function value: 86.41833395227303
Iterations: 17
Function evaluations: 184
Gradient evaluations: 17
Iteration: 1, Func. Count: 12, Neg. LLF: 200503302.6095492
Iteration: 2, Func. Count: 24, Neg. LLF: 8673772.924323954
Iteration: 3, Func. Count: 36, Neg. LLF: 326485.2104647201
Iteration: 4, Func. Count: 48, Neg. LLF: 91.76956533955486
Iteration: 5, Func. Count: 60, Neg. LLF: 91.79350917619993
Iteration: 6, Func. Count: 72, Neg. LLF: 90.63612650775262
Iteration: 7, Func. Count: 84, Neg. LLF: 87.28327851887862
Iteration: 8, Func. Count: 95, Neg. LLF: 90.32607271312509
Iteration: 9, Func. Count: 107, Neg. LLF: 123.47755450338944
Iteration: 10, Func. Count: 119, Neg. LLF: 87.79487164645502
Iteration: 11, Func. Count: 131, Neg. LLF: 86.60500721278096
Iteration: 12, Func. Count: 143, Neg. LLF: 88.24830200338762
Iteration: 13, Func. Count: 155, Neg. LLF: 86.42037872539777
Iteration: 14, Func. Count: 166, Neg. LLF: 86.41857177033651
Iteration: 15, Func. Count: 177, Neg. LLF: 86.4183512073222
Iteration: 16, Func. Count: 188, Neg. LLF: 86.4183347483878
Iteration: 17, Func. Count: 199, Neg. LLF: 86.41833361099299
Iteration: 18, Func. Count: 209, Neg. LLF: 86.41833369092095
Optimization terminated successfully (Exit mode 0)
Current function value: 86.41833361099299
Iterations: 18
Function evaluations: 209
Gradient evaluations: 18
Iteration: 1, Func. Count: 13, Neg. LLF: 142470729.7248007
Iteration: 2, Func. Count: 26, Neg. LLF: 6905430.035969405
Iteration: 3, Func. Count: 39, Neg. LLF: 146.05578131129872
Iteration: 4, Func. Count: 52, Neg. LLF: 90.03455250449971
Iteration: 5, Func. Count: 65, Neg. LLF: 95.05567134208242
Iteration: 6, Func. Count: 78, Neg. LLF: 87.86032929276587
Iteration: 7, Func. Count: 91, Neg. LLF: 88.2208516996132
Iteration: 8, Func. Count: 104, Neg. LLF: 90.49743114892777
Iteration: 9, Func. Count: 117, Neg. LLF: 105.84108492205881
Iteration: 10, Func. Count: 130, Neg. LLF: 88.11441095745053
Iteration: 11, Func. Count: 143, Neg. LLF: 86.50433792496135
Iteration: 12, Func. Count: 155, Neg. LLF: 86.5612285985739
Iteration: 13, Func. Count: 168, Neg. LLF: 86.71493576468873
Iteration: 14, Func. Count: 181, Neg. LLF: 86.3518161515124
Iteration: 15, Func. Count: 193, Neg. LLF: 86.35188407030438
Iteration: 16, Func. Count: 206, Neg. LLF: 86.36106226805386
Iteration: 17, Func. Count: 219, Neg. LLF: 86.3509666207555
Iteration: 18, Func. Count: 231, Neg. LLF: 86.35096039805356
Iteration: 19, Func. Count: 242, Neg. LLF: 86.35096030164821
Optimization terminated successfully (Exit mode 0)
Current function value: 86.35096039805356
Iterations: 19
Function evaluations: 242
Gradient evaluations: 19
Iteration: 1, Func. Count: 10, Neg. LLF: 100.64119909968592
Iteration: 2, Func. Count: 21, Neg. LLF: 140.99456410189265
Iteration: 3, Func. Count: 31, Neg. LLF: 177.77875947909678
Iteration: 4, Func. Count: 41, Neg. LLF: 260.55883540292393
Iteration: 5, Func. Count: 51, Neg. LLF: 251.0503500025354
Iteration: 6, Func. Count: 61, Neg. LLF: 111.06341975917152
Iteration: 7, Func. Count: 71, Neg. LLF: 77309.31205820164
Iteration: 8, Func. Count: 81, Neg. LLF: 1040.7625311743711
Iteration: 9, Func. Count: 91, Neg. LLF: 103.10032123281574
Iteration: 10, Func. Count: 101, Neg. LLF: 102.13334913002824
Iteration: 11, Func. Count: 111, Neg. LLF: 89.43406642115355
Iteration: 12, Func. Count: 120, Neg. LLF: 89.03633753129331
Iteration: 13, Func. Count: 129, Neg. LLF: 88.9886979588549
Iteration: 14, Func. Count: 138, Neg. LLF: 88.98584365736257
Iteration: 15, Func. Count: 147, Neg. LLF: 88.9853105476665
Iteration: 16, Func. Count: 156, Neg. LLF: 88.98524109668112
Iteration: 17, Func. Count: 165, Neg. LLF: 88.98522859061417
Iteration: 18, Func. Count: 174, Neg. LLF: 88.98522764490785
Optimization terminated successfully (Exit mode 0)
Current function value: 88.98522764490785
Iterations: 18
Function evaluations: 174
Gradient evaluations: 18
Iteration: 1, Func. Count: 11, Neg. LLF: 174.06326596345568
Iteration: 2, Func. Count: 26, Neg. LLF: 330038237.1344817
Iteration: 3, Func. Count: 38, Neg. LLF: 28955.264859703744
Iteration: 4, Func. Count: 49, Neg. LLF: 102.42588761864499
Iteration: 5, Func. Count: 60, Neg. LLF: 88.09156521086128
Iteration: 6, Func. Count: 70, Neg. LLF: 88.70944909445076
Iteration: 7, Func. Count: 81, Neg. LLF: 88.41775607703975
Iteration: 8, Func. Count: 92, Neg. LLF: 88.12891878788994
Iteration: 9, Func. Count: 103, Neg. LLF: 87.95610966131285
Iteration: 10, Func. Count: 113, Neg. LLF: 87.9546659481242
Iteration: 11, Func. Count: 123, Neg. LLF: 87.95458553308197
Iteration: 12, Func. Count: 133, Neg. LLF: 87.95458365604361
Iteration: 13, Func. Count: 142, Neg. LLF: 87.95458360191196
Optimization terminated successfully (Exit mode 0)
Current function value: 87.95458365604361
Iterations: 13
Function evaluations: 142
Gradient evaluations: 13
Iteration: 1, Func. Count: 12, Neg. LLF: 159.0650954966776
Iteration: 2, Func. Count: 27, Neg. LLF: 172698207.72866476
Iteration: 3, Func. Count: 40, Neg. LLF: 10152295.768890511
Iteration: 4, Func. Count: 52, Neg. LLF: 113.32162859309805
Iteration: 5, Func. Count: 64, Neg. LLF: 89.16334815758816
Iteration: 6, Func. Count: 76, Neg. LLF: 87.31544479199769
Iteration: 7, Func. Count: 87, Neg. LLF: 88.90976191593676
Iteration: 8, Func. Count: 99, Neg. LLF: 91.59924120964293
Iteration: 9, Func. Count: 112, Neg. LLF: 88.55198824318738
Iteration: 10, Func. Count: 124, Neg. LLF: 86.6606189267221
Iteration: 11, Func. Count: 136, Neg. LLF: 86.63710357409502
Iteration: 12, Func. Count: 148, Neg. LLF: 86.4453329679342
Iteration: 13, Func. Count: 159, Neg. LLF: 86.41971240152212
Iteration: 14, Func. Count: 170, Neg. LLF: 86.41863665249981
Iteration: 15, Func. Count: 181, Neg. LLF: 86.41836555997406
Iteration: 16, Func. Count: 192, Neg. LLF: 86.41833536693755
Iteration: 17, Func. Count: 203, Neg. LLF: 86.41833372658517
Iteration: 18, Func. Count: 213, Neg. LLF: 86.41833364013738
Optimization terminated successfully (Exit mode 0)
Current function value: 86.41833372658517
Iterations: 18
Function evaluations: 213
Gradient evaluations: 18
Iteration: 1, Func. Count: 13, Neg. LLF: 190907005.6407971
Iteration: 2, Func. Count: 26, Neg. LLF: 8855766.174215356
Iteration: 3, Func. Count: 39, Neg. LLF: 3145.518920485979
Iteration: 4, Func. Count: 52, Neg. LLF: 90.65526943836423
Iteration: 5, Func. Count: 65, Neg. LLF: 91.47950171267884
Iteration: 6, Func. Count: 78, Neg. LLF: 87.96549191240652
Iteration: 7, Func. Count: 91, Neg. LLF: 91.41437828979326
Iteration: 8, Func. Count: 104, Neg. LLF: 86.82835743868442
Iteration: 9, Func. Count: 116, Neg. LLF: 88.17382139674923
Iteration: 10, Func. Count: 129, Neg. LLF: 5156.049414378721
Iteration: 11, Func. Count: 143, Neg. LLF: 86.59610358792406
Iteration: 12, Func. Count: 156, Neg. LLF: 86.58834630055016
Iteration: 13, Func. Count: 169, Neg. LLF: 86.4187795696958
Iteration: 14, Func. Count: 181, Neg. LLF: 86.4183523602241
Iteration: 15, Func. Count: 193, Neg. LLF: 86.41833483485341
Iteration: 16, Func. Count: 205, Neg. LLF: 86.41833362768088
Iteration: 17, Func. Count: 216, Neg. LLF: 86.41833370766015
Optimization terminated successfully (Exit mode 0)
Current function value: 86.41833362768088
Iterations: 17
Function evaluations: 216
Gradient evaluations: 17
Iteration: 1, Func. Count: 14, Neg. LLF: 132166236.20081632
Iteration: 2, Func. Count: 28, Neg. LLF: 7029881.674466055
Iteration: 3, Func. Count: 42, Neg. LLF: 3580239.436738056
Iteration: 4, Func. Count: 56, Neg. LLF: 100.388723882531
Iteration: 5, Func. Count: 70, Neg. LLF: 94.11435495591206
Iteration: 6, Func. Count: 84, Neg. LLF: 88.81440273759797
Iteration: 7, Func. Count: 98, Neg. LLF: 86.90732000209339
Iteration: 8, Func. Count: 111, Neg. LLF: 93.86461554740941
Iteration: 9, Func. Count: 125, Neg. LLF: 99.78101600486262
Iteration: 10, Func. Count: 140, Neg. LLF: 87.32701444735133
Iteration: 11, Func. Count: 155, Neg. LLF: 89.14350380338729
Iteration: 12, Func. Count: 169, Neg. LLF: 87.92468986364827
Iteration: 13, Func. Count: 183, Neg. LLF: 86.58135721775324
Iteration: 14, Func. Count: 197, Neg. LLF: 86.3521147046754
Iteration: 15, Func. Count: 210, Neg. LLF: 86.3512490403111
Iteration: 16, Func. Count: 223, Neg. LLF: 86.35100706367491
Iteration: 17, Func. Count: 236, Neg. LLF: 86.35096261396892
Iteration: 18, Func. Count: 249, Neg. LLF: 86.35096058002294
Iteration: 19, Func. Count: 261, Neg. LLF: 86.35096048353854
Optimization terminated successfully (Exit mode 0)
Current function value: 86.35096058002294
Iterations: 19
Function evaluations: 261
Gradient evaluations: 19
Iteration: 1, Func. Count: 7, Neg. LLF: 106.6242377823075
Iteration: 2, Func. Count: 15, Neg. LLF: 120.53780588237525
Iteration: 3, Func. Count: 22, Neg. LLF: 161.66872058791046
Iteration: 4, Func. Count: 29, Neg. LLF: 309.37458692572136
Iteration: 5, Func. Count: 36, Neg. LLF: 116.92276798096884
Iteration: 6, Func. Count: 43, Neg. LLF: 124.34379032998145
Iteration: 7, Func. Count: 50, Neg. LLF: 127.13394338192961
Iteration: 8, Func. Count: 57, Neg. LLF: 95.0808236231702
Iteration: 9, Func. Count: 64, Neg. LLF: 92.0131257110749
Iteration: 10, Func. Count: 70, Neg. LLF: 91.99042410998345
Iteration: 11, Func. Count: 76, Neg. LLF: 91.9868031990113
Iteration: 12, Func. Count: 82, Neg. LLF: 91.98388750513163
Iteration: 13, Func. Count: 88, Neg. LLF: 91.98379335958862
Iteration: 14, Func. Count: 94, Neg. LLF: 91.98378684324126
Iteration: 15, Func. Count: 100, Neg. LLF: 91.98378580025869
Iteration: 16, Func. Count: 105, Neg. LLF: 91.98378580025994
Optimization terminated successfully (Exit mode 0)
Current function value: 91.98378580025869
Iterations: 16
Function evaluations: 105
Gradient evaluations: 16
Iteration: 1, Func. Count: 8, Neg. LLF: 154.59936863287626
Iteration: 2, Func. Count: 20, Neg. LLF: 276.526550698982
Iteration: 3, Func. Count: 29, Neg. LLF: 123.28936278074292
Iteration: 4, Func. Count: 37, Neg. LLF: 88.82059935554307
Iteration: 5, Func. Count: 44, Neg. LLF: 128.4687493949992
Iteration: 6, Func. Count: 53, Neg. LLF: 95.27944449513745
Iteration: 7, Func. Count: 61, Neg. LLF: 94.63833516787453
Iteration: 8, Func. Count: 70, Neg. LLF: 88.61859424461217
Iteration: 9, Func. Count: 77, Neg. LLF: 88.61375044200811
Iteration: 10, Func. Count: 84, Neg. LLF: 88.61171916478143
Iteration: 11, Func. Count: 91, Neg. LLF: 88.61123610028062
Iteration: 12, Func. Count: 98, Neg. LLF: 88.61116993394018
Iteration: 13, Func. Count: 105, Neg. LLF: 88.61116621142506
Iteration: 14, Func. Count: 111, Neg. LLF: 88.61116621147104
Optimization terminated successfully (Exit mode 0)
Current function value: 88.61116621142506
Iterations: 14
Function evaluations: 111
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 151.42400509590237
Iteration: 2, Func. Count: 19, Neg. LLF: 141.2007546108068
Iteration: 3, Func. Count: 28, Neg. LLF: 100.43794511561022
Iteration: 4, Func. Count: 37, Neg. LLF: 95.73458361386717
Iteration: 5, Func. Count: 46, Neg. LLF: 214.47019507253376
Iteration: 6, Func. Count: 55, Neg. LLF: 89.21549161672378
Iteration: 7, Func. Count: 64, Neg. LLF: 89.00864397016275
Iteration: 8, Func. Count: 73, Neg. LLF: 88.7130086972213
Iteration: 9, Func. Count: 82, Neg. LLF: 88.79536741750958
Iteration: 10, Func. Count: 91, Neg. LLF: 88.6156870473002
Iteration: 11, Func. Count: 99, Neg. LLF: 88.61354202363407
Iteration: 12, Func. Count: 107, Neg. LLF: 88.61143891016367
Iteration: 13, Func. Count: 115, Neg. LLF: 88.61119610180913
Iteration: 14, Func. Count: 123, Neg. LLF: 88.61116677870298
Iteration: 15, Func. Count: 131, Neg. LLF: 88.61116606863135
Optimization terminated successfully (Exit mode 0)
Current function value: 88.61116606863135
Iterations: 15
Function evaluations: 131
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 333256.0419920406
Iteration: 2, Func. Count: 20, Neg. LLF: 792.6205685211523
Iteration: 3, Func. Count: 30, Neg. LLF: 96.1680327111834
Iteration: 4, Func. Count: 40, Neg. LLF: 227.247354752499
Iteration: 5, Func. Count: 50, Neg. LLF: 104.93290122860776
Iteration: 6, Func. Count: 60, Neg. LLF: 97.66939452814259
Iteration: 7, Func. Count: 70, Neg. LLF: 89.0249278809735
Iteration: 8, Func. Count: 79, Neg. LLF: 89.02785771982492
Iteration: 9, Func. Count: 89, Neg. LLF: 89.42104554850019
Iteration: 10, Func. Count: 99, Neg. LLF: 88.64138674328693
Iteration: 11, Func. Count: 108, Neg. LLF: 88.62358237751681
Iteration: 12, Func. Count: 117, Neg. LLF: 88.61511391001885
Iteration: 13, Func. Count: 126, Neg. LLF: 88.61325013735156
Iteration: 14, Func. Count: 135, Neg. LLF: 88.61143208433901
Iteration: 15, Func. Count: 144, Neg. LLF: 88.61119179078504
Iteration: 16, Func. Count: 153, Neg. LLF: 88.61116826351154
Iteration: 17, Func. Count: 162, Neg. LLF: 88.61116607045045
Iteration: 18, Func. Count: 170, Neg. LLF: 88.61116608982302
Optimization terminated successfully (Exit mode 0)
Current function value: 88.61116607045045
Iterations: 18
Function evaluations: 170
Gradient evaluations: 18
Iteration: 1, Func. Count: 11, Neg. LLF: 622.5936334832047
Iteration: 2, Func. Count: 22, Neg. LLF: 404.2758156222852
Iteration: 3, Func. Count: 33, Neg. LLF: 95.8647103519711
Iteration: 4, Func. Count: 44, Neg. LLF: 1164.4736339670494
Iteration: 5, Func. Count: 55, Neg. LLF: 98.82053878618012
Iteration: 6, Func. Count: 66, Neg. LLF: 104.04567088527577
Iteration: 7, Func. Count: 77, Neg. LLF: 94.85456576929214
Iteration: 8, Func. Count: 88, Neg. LLF: 89.0012272239322
Iteration: 9, Func. Count: 99, Neg. LLF: 88.67180316913593
Iteration: 10, Func. Count: 109, Neg. LLF: 88.69537955885312
Iteration: 11, Func. Count: 120, Neg. LLF: 89.1029143498386
Iteration: 12, Func. Count: 131, Neg. LLF: 88.64031938605976
Iteration: 13, Func. Count: 142, Neg. LLF: 88.6223066953236
Iteration: 14, Func. Count: 152, Neg. LLF: 88.61233510250707
Iteration: 15, Func. Count: 162, Neg. LLF: 88.61131510246105
Iteration: 16, Func. Count: 172, Neg. LLF: 88.61117237145419
Iteration: 17, Func. Count: 182, Neg. LLF: 88.61116613377212
Iteration: 18, Func. Count: 191, Neg. LLF: 88.61116614121227
Optimization terminated successfully (Exit mode 0)
Current function value: 88.61116613377212
Iterations: 18
Function evaluations: 191
Gradient evaluations: 18
Iteration: 1, Func. Count: 8, Neg. LLF: 106.69753842699953
Iteration: 2, Func. Count: 17, Neg. LLF: 120.18586239117859
Iteration: 3, Func. Count: 25, Neg. LLF: 184.47455161085045
Iteration: 4, Func. Count: 33, Neg. LLF: 137.412073753494
Iteration: 5, Func. Count: 41, Neg. LLF: 206.61326083739104
Iteration: 6, Func. Count: 49, Neg. LLF: 115.97880047814294
Iteration: 7, Func. Count: 57, Neg. LLF: 93.91449957387215
Iteration: 8, Func. Count: 65, Neg. LLF: 92.09710592165564
Iteration: 9, Func. Count: 73, Neg. LLF: 99.84325385262423
Iteration: 10, Func. Count: 82, Neg. LLF: 91.96231423048815
Iteration: 11, Func. Count: 90, Neg. LLF: 91.94282211884067
Iteration: 12, Func. Count: 97, Neg. LLF: 91.93894116928935
Iteration: 13, Func. Count: 104, Neg. LLF: 91.93892297246785
Iteration: 14, Func. Count: 110, Neg. LLF: 91.93892297245827
Optimization terminated successfully (Exit mode 0)
Current function value: 91.93892297246785
Iterations: 14
Function evaluations: 110
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 165.57221707357533
Iteration: 2, Func. Count: 22, Neg. LLF: 199.99151151476292
Iteration: 3, Func. Count: 32, Neg. LLF: 110.83185490063632
Iteration: 4, Func. Count: 41, Neg. LLF: 89.70980929441784
Iteration: 5, Func. Count: 50, Neg. LLF: 88.6377906576976
Iteration: 6, Func. Count: 58, Neg. LLF: 88.64872449446433
Iteration: 7, Func. Count: 67, Neg. LLF: 90.62536356902886
Iteration: 8, Func. Count: 76, Neg. LLF: 88.61223204827083
Iteration: 9, Func. Count: 85, Neg. LLF: 88.59034617907739
Iteration: 10, Func. Count: 94, Neg. LLF: 88.58758489284317
Iteration: 11, Func. Count: 102, Neg. LLF: 88.58758128966083
Iteration: 12, Func. Count: 110, Neg. LLF: 88.58758054938282
Optimization terminated successfully (Exit mode 0)
Current function value: 88.58758054938282
Iterations: 12
Function evaluations: 110
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 156.44204213431377
Iteration: 2, Func. Count: 21, Neg. LLF: 206.91354687832882
Iteration: 3, Func. Count: 31, Neg. LLF: 124.14720262674945
Iteration: 4, Func. Count: 41, Neg. LLF: 101.18970873853132
Iteration: 5, Func. Count: 51, Neg. LLF: 90.24646881237162
Iteration: 6, Func. Count: 61, Neg. LLF: 292.6591046807776
Iteration: 7, Func. Count: 71, Neg. LLF: 98.07727030207931
Iteration: 8, Func. Count: 81, Neg. LLF: 90.66437865766325
Iteration: 9, Func. Count: 91, Neg. LLF: 89.633736857773
Iteration: 10, Func. Count: 101, Neg. LLF: 88.70519782706567
Iteration: 11, Func. Count: 110, Neg. LLF: 88.62665145696144
Iteration: 12, Func. Count: 119, Neg. LLF: 88.64923281810734
Iteration: 13, Func. Count: 129, Neg. LLF: 88.59953718095622
Iteration: 14, Func. Count: 138, Neg. LLF: 88.59170814116227
Iteration: 15, Func. Count: 147, Neg. LLF: 88.58831193243707
Iteration: 16, Func. Count: 156, Neg. LLF: 88.5876836843848
Iteration: 17, Func. Count: 165, Neg. LLF: 88.58758518150204
Iteration: 18, Func. Count: 174, Neg. LLF: 88.58758078499535
Iteration: 19, Func. Count: 182, Neg. LLF: 88.58758078901138
Optimization terminated successfully (Exit mode 0)
Current function value: 88.58758078499535
Iterations: 19
Function evaluations: 182
Gradient evaluations: 19
Iteration: 1, Func. Count: 11, Neg. LLF: 190.51382041951035
Iteration: 2, Func. Count: 23, Neg. LLF: 31560.33013220863
Iteration: 3, Func. Count: 34, Neg. LLF: 109.25090693438543
Iteration: 4, Func. Count: 45, Neg. LLF: 108.5091443489015
Iteration: 5, Func. Count: 56, Neg. LLF: 88.82839288066656
Iteration: 6, Func. Count: 66, Neg. LLF: 90.0294889499127
Iteration: 7, Func. Count: 78, Neg. LLF: 89.99983231958896
Iteration: 8, Func. Count: 89, Neg. LLF: 105.14857238113323
Iteration: 9, Func. Count: 101, Neg. LLF: 88.75816615961011
Iteration: 10, Func. Count: 112, Neg. LLF: 88.59597621278952
Iteration: 11, Func. Count: 122, Neg. LLF: 88.59140859984421
Iteration: 12, Func. Count: 132, Neg. LLF: 88.58799175019331
Iteration: 13, Func. Count: 142, Neg. LLF: 88.58761962596415
Iteration: 14, Func. Count: 152, Neg. LLF: 88.58758278055488
Iteration: 15, Func. Count: 162, Neg. LLF: 88.58758055736709
Iteration: 16, Func. Count: 171, Neg. LLF: 88.58758056805259
Optimization terminated successfully (Exit mode 0)
Current function value: 88.58758055736709
Iterations: 16
Function evaluations: 171
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 8696.728866506952
Iteration: 2, Func. Count: 24, Neg. LLF: 584.1441878320218
Iteration: 3, Func. Count: 36, Neg. LLF: 95.51417893453988
Iteration: 4, Func. Count: 49, Neg. LLF: 121.82599626807253
Iteration: 5, Func. Count: 61, Neg. LLF: 96.51100131650553
Iteration: 6, Func. Count: 73, Neg. LLF: 89.32618194887547
Iteration: 7, Func. Count: 85, Neg. LLF: 88.72159099970816
Iteration: 8, Func. Count: 97, Neg. LLF: 88.65891490785437
Iteration: 9, Func. Count: 109, Neg. LLF: 88.70485085417921
Iteration: 10, Func. Count: 121, Neg. LLF: 88.66766187089175
Iteration: 11, Func. Count: 133, Neg. LLF: 88.69562779060966
Iteration: 12, Func. Count: 145, Neg. LLF: 88.58746267235638
Iteration: 13, Func. Count: 156, Neg. LLF: 88.58643191420454
Iteration: 14, Func. Count: 167, Neg. LLF: 88.5861732275492
Iteration: 15, Func. Count: 178, Neg. LLF: 88.58602461389093
Iteration: 16, Func. Count: 189, Neg. LLF: 88.58591026004333
Iteration: 17, Func. Count: 200, Neg. LLF: 88.58590329992846
Iteration: 18, Func. Count: 210, Neg. LLF: 88.58590329993858
Optimization terminated successfully (Exit mode 0)
Current function value: 88.58590329992846
Iterations: 18
Function evaluations: 210
Gradient evaluations: 18
Iteration: 1, Func. Count: 9, Neg. LLF: 99.21249880719644
Iteration: 2, Func. Count: 19, Neg. LLF: 143.96460002610553
Iteration: 3, Func. Count: 28, Neg. LLF: 174.58902727365802
Iteration: 4, Func. Count: 37, Neg. LLF: 157.14227123396745
Iteration: 5, Func. Count: 46, Neg. LLF: 128.29033261860397
Iteration: 6, Func. Count: 55, Neg. LLF: 121.03764647606158
Iteration: 7, Func. Count: 64, Neg. LLF: 93.67023103932198
Iteration: 8, Func. Count: 73, Neg. LLF: 93.30149097429852
Iteration: 9, Func. Count: 82, Neg. LLF: 91.80623088827926
Iteration: 10, Func. Count: 91, Neg. LLF: 92.0466921678571
Iteration: 11, Func. Count: 100, Neg. LLF: 91.46686774664522
Iteration: 12, Func. Count: 108, Neg. LLF: 91.42958222583418
Iteration: 13, Func. Count: 116, Neg. LLF: 91.4266835619357
Iteration: 14, Func. Count: 124, Neg. LLF: 91.42651181249761
Iteration: 15, Func. Count: 132, Neg. LLF: 91.42650324862618
Iteration: 16, Func. Count: 139, Neg. LLF: 91.42650324861023
Optimization terminated successfully (Exit mode 0)
Current function value: 91.42650324862618
Iterations: 16
Function evaluations: 139
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 204.22857044404424
Iteration: 2, Func. Count: 23, Neg. LLF: 362071447.80205417
Iteration: 3, Func. Count: 34, Neg. LLF: 291.4795140953229
Iteration: 4, Func. Count: 44, Neg. LLF: 100.9852252570514
Iteration: 5, Func. Count: 54, Neg. LLF: 89.12628053255092
Iteration: 6, Func. Count: 64, Neg. LLF: 88.0432233753858
Iteration: 7, Func. Count: 74, Neg. LLF: 88.34833240557226
Iteration: 8, Func. Count: 84, Neg. LLF: 87.88640126685432
Iteration: 9, Func. Count: 93, Neg. LLF: 87.85960855379972
Iteration: 10, Func. Count: 102, Neg. LLF: 87.86325382561367
Iteration: 11, Func. Count: 112, Neg. LLF: 87.85940977471982
Iteration: 12, Func. Count: 122, Neg. LLF: 87.8580953868012
Iteration: 13, Func. Count: 131, Neg. LLF: 87.85809197663521
Iteration: 14, Func. Count: 139, Neg. LLF: 87.85809193951336
Optimization terminated successfully (Exit mode 0)
Current function value: 87.85809197663521
Iterations: 14
Function evaluations: 139
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 173.67912833001742
Iteration: 2, Func. Count: 25, Neg. LLF: 234314202.7559595
Iteration: 3, Func. Count: 37, Neg. LLF: 10135004.742742382
Iteration: 4, Func. Count: 48, Neg. LLF: 114.86137034476937
Iteration: 5, Func. Count: 59, Neg. LLF: 87.78443222508139
Iteration: 6, Func. Count: 69, Neg. LLF: 249.2486918139963
Iteration: 7, Func. Count: 80, Neg. LLF: 94.84791648552586
Iteration: 8, Func. Count: 92, Neg. LLF: 91.04668308286975
Iteration: 9, Func. Count: 103, Neg. LLF: 86.50044967426645
Iteration: 10, Func. Count: 113, Neg. LLF: 86.44246238916499
Iteration: 11, Func. Count: 123, Neg. LLF: 86.42963520248638
Iteration: 12, Func. Count: 133, Neg. LLF: 86.4290873081851
Iteration: 13, Func. Count: 143, Neg. LLF: 86.42900338737836
Iteration: 14, Func. Count: 153, Neg. LLF: 86.42898605727719
Iteration: 15, Func. Count: 163, Neg. LLF: 86.4289800472233
Iteration: 16, Func. Count: 172, Neg. LLF: 86.42897995884098
Optimization terminated successfully (Exit mode 0)
Current function value: 86.4289800472233
Iterations: 16
Function evaluations: 172
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 4047184.8609114634
Iteration: 2, Func. Count: 25, Neg. LLF: 8307434.0930257775
Iteration: 3, Func. Count: 37, Neg. LLF: 1326.8785132930814
Iteration: 4, Func. Count: 49, Neg. LLF: 99.93459496235046
Iteration: 5, Func. Count: 61, Neg. LLF: 89.30433333410944
Iteration: 6, Func. Count: 73, Neg. LLF: 86.99631511930872
Iteration: 7, Func. Count: 84, Neg. LLF: 87.72986339818537
Iteration: 8, Func. Count: 96, Neg. LLF: 92.21830393041539
Iteration: 9, Func. Count: 108, Neg. LLF: 86.59800631859228
Iteration: 10, Func. Count: 119, Neg. LLF: 86.66858225298716
Iteration: 11, Func. Count: 131, Neg. LLF: 86.49481430314195
Iteration: 12, Func. Count: 143, Neg. LLF: 86.4301665219258
Iteration: 13, Func. Count: 154, Neg. LLF: 86.4292160126939
Iteration: 14, Func. Count: 165, Neg. LLF: 86.42899741863481
Iteration: 15, Func. Count: 176, Neg. LLF: 86.42898133426154
Iteration: 16, Func. Count: 187, Neg. LLF: 86.42898000067426
Iteration: 17, Func. Count: 197, Neg. LLF: 86.42898008355296
Optimization terminated successfully (Exit mode 0)
Current function value: 86.42898000067426
Iterations: 17
Function evaluations: 197
Gradient evaluations: 17
Iteration: 1, Func. Count: 13, Neg. LLF: 212983551.34592485
Iteration: 2, Func. Count: 27, Neg. LLF: 8424110.939498309
Iteration: 3, Func. Count: 40, Neg. LLF: 1633.5127904051726
Iteration: 4, Func. Count: 53, Neg. LLF: 90.14708636247728
Iteration: 5, Func. Count: 66, Neg. LLF: 86.97990181030643
Iteration: 6, Func. Count: 78, Neg. LLF: 87.58695176136845
Iteration: 7, Func. Count: 91, Neg. LLF: 139.32524681209068
Iteration: 8, Func. Count: 104, Neg. LLF: 91.00248083226579
Iteration: 9, Func. Count: 117, Neg. LLF: 87.87450442080188
Iteration: 10, Func. Count: 130, Neg. LLF: 86.67301363674535
Iteration: 11, Func. Count: 143, Neg. LLF: 86.46395493937874
Iteration: 12, Func. Count: 156, Neg. LLF: 86.37327612897488
Iteration: 13, Func. Count: 168, Neg. LLF: 86.37266477420934
Iteration: 14, Func. Count: 180, Neg. LLF: 86.37233204994251
Iteration: 15, Func. Count: 192, Neg. LLF: 86.37232765980724
Iteration: 16, Func. Count: 203, Neg. LLF: 86.3723275616345
Optimization terminated successfully (Exit mode 0)
Current function value: 86.37232765980724
Iterations: 16
Function evaluations: 203
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 102.6808510540465
Iteration: 2, Func. Count: 21, Neg. LLF: 196.3074520616223
Iteration: 3, Func. Count: 31, Neg. LLF: 652.5899185631984
Iteration: 4, Func. Count: 41, Neg. LLF: 156.01520207749607
Iteration: 5, Func. Count: 51, Neg. LLF: 138.78879317506787
Iteration: 6, Func. Count: 61, Neg. LLF: 110.20604002752822
Iteration: 7, Func. Count: 71, Neg. LLF: 104.42616319164526
Iteration: 8, Func. Count: 81, Neg. LLF: 91.7028496360698
Iteration: 9, Func. Count: 91, Neg. LLF: 95.22904412429659
Iteration: 10, Func. Count: 101, Neg. LLF: 92.14241004657035
Iteration: 11, Func. Count: 111, Neg. LLF: 91.31896392677807
Iteration: 12, Func. Count: 120, Neg. LLF: 91.36210864015449
Iteration: 13, Func. Count: 130, Neg. LLF: 91.15649666483479
Iteration: 14, Func. Count: 139, Neg. LLF: 91.14863363498598
Iteration: 15, Func. Count: 148, Neg. LLF: 91.14430751930243
Iteration: 16, Func. Count: 157, Neg. LLF: 91.14405094430639
Iteration: 17, Func. Count: 166, Neg. LLF: 91.14399908976057
Iteration: 18, Func. Count: 174, Neg. LLF: 91.14399906011681
Optimization terminated successfully (Exit mode 0)
Current function value: 91.14399908976057
Iterations: 18
Function evaluations: 174
Gradient evaluations: 18
Iteration: 1, Func. Count: 11, Neg. LLF: 166.58217648124506
Iteration: 2, Func. Count: 26, Neg. LLF: 212.8906295820606
Iteration: 3, Func. Count: 38, Neg. LLF: 248.21422010925508
Iteration: 4, Func. Count: 49, Neg. LLF: 113.01338347774373
Iteration: 5, Func. Count: 60, Neg. LLF: 87.8842735973796
Iteration: 6, Func. Count: 70, Neg. LLF: 99.64667577101096
Iteration: 7, Func. Count: 81, Neg. LLF: 88.20004026576478
Iteration: 8, Func. Count: 92, Neg. LLF: 87.79740952559013
Iteration: 9, Func. Count: 103, Neg. LLF: 87.47628005578022
Iteration: 10, Func. Count: 113, Neg. LLF: 87.47260584932988
Iteration: 11, Func. Count: 123, Neg. LLF: 87.47231111690236
Iteration: 12, Func. Count: 133, Neg. LLF: 87.47229910198914
Iteration: 13, Func. Count: 143, Neg. LLF: 87.47229712255313
Iteration: 14, Func. Count: 152, Neg. LLF: 87.47229710176258
Optimization terminated successfully (Exit mode 0)
Current function value: 87.47229712255313
Iterations: 14
Function evaluations: 152
Gradient evaluations: 14
Iteration: 1, Func. Count: 12, Neg. LLF: 159.50312399691234
Iteration: 2, Func. Count: 27, Neg. LLF: 2074663.0450422368
Iteration: 3, Func. Count: 40, Neg. LLF: 4842701.681529597
Iteration: 4, Func. Count: 52, Neg. LLF: 113.25368502821428
Iteration: 5, Func. Count: 64, Neg. LLF: 89.02627253321229
Iteration: 6, Func. Count: 76, Neg. LLF: 91.94012283004176
Iteration: 7, Func. Count: 88, Neg. LLF: 87.15078905929524
Iteration: 8, Func. Count: 99, Neg. LLF: 86.9399183491971
Iteration: 9, Func. Count: 111, Neg. LLF: 88.52738818126437
Iteration: 10, Func. Count: 123, Neg. LLF: 86.58524001440689
Iteration: 11, Func. Count: 134, Neg. LLF: 86.61944183109124
Iteration: 12, Func. Count: 146, Neg. LLF: 86.49723627380214
Iteration: 13, Func. Count: 158, Neg. LLF: 86.42628149913199
Iteration: 14, Func. Count: 170, Neg. LLF: 86.41836908646602
Iteration: 15, Func. Count: 181, Neg. LLF: 86.41833628006178
Iteration: 16, Func. Count: 192, Neg. LLF: 86.4183339629656
Iteration: 17, Func. Count: 202, Neg. LLF: 86.4183338765007
Optimization terminated successfully (Exit mode 0)
Current function value: 86.4183339629656
Iterations: 17
Function evaluations: 202
Gradient evaluations: 17
Iteration: 1, Func. Count: 13, Neg. LLF: 2538714.0947486702
Iteration: 2, Func. Count: 27, Neg. LLF: 4011434.1494595725
Iteration: 3, Func. Count: 40, Neg. LLF: 473.5051543542959
Iteration: 4, Func. Count: 53, Neg. LLF: 97.5864059491838
Iteration: 5, Func. Count: 66, Neg. LLF: 93.33553393696039
Iteration: 6, Func. Count: 79, Neg. LLF: 90.53930631234073
Iteration: 7, Func. Count: 92, Neg. LLF: 88.23619574455446
Iteration: 8, Func. Count: 105, Neg. LLF: 87.06595883456626
Iteration: 9, Func. Count: 117, Neg. LLF: 89.7286028726032
Iteration: 10, Func. Count: 130, Neg. LLF: 100.4364903173958
Iteration: 11, Func. Count: 143, Neg. LLF: 87.0618981264959
Iteration: 12, Func. Count: 156, Neg. LLF: 86.52087458859266
Iteration: 13, Func. Count: 169, Neg. LLF: 86.42271798167442
Iteration: 14, Func. Count: 181, Neg. LLF: 86.41933279342797
Iteration: 15, Func. Count: 193, Neg. LLF: 86.41891702870345
Iteration: 16, Func. Count: 205, Neg. LLF: 86.41835034163742
Iteration: 17, Func. Count: 217, Neg. LLF: 86.41833513664655
Iteration: 18, Func. Count: 229, Neg. LLF: 86.41833357354166
Iteration: 19, Func. Count: 240, Neg. LLF: 86.41833365349693
Optimization terminated successfully (Exit mode 0)
Current function value: 86.41833357354166
Iterations: 19
Function evaluations: 240
Gradient evaluations: 19
Iteration: 1, Func. Count: 14, Neg. LLF: 2069195.6472293478
Iteration: 2, Func. Count: 29, Neg. LLF: 5005156.356319839
Iteration: 3, Func. Count: 43, Neg. LLF: 828.4083315177091
Iteration: 4, Func. Count: 57, Neg. LLF: 106.70669122746753
Iteration: 5, Func. Count: 71, Neg. LLF: 93.93628318606011
Iteration: 6, Func. Count: 85, Neg. LLF: 89.210043649028
Iteration: 7, Func. Count: 99, Neg. LLF: 87.27704708965638
Iteration: 8, Func. Count: 112, Neg. LLF: 88.96862996077958
Iteration: 9, Func. Count: 128, Neg. LLF: 88.44964549498697
Iteration: 10, Func. Count: 142, Neg. LLF: 102.34008971209492
Iteration: 11, Func. Count: 156, Neg. LLF: 89.56486750663082
Iteration: 12, Func. Count: 170, Neg. LLF: 87.84762619020017
Iteration: 13, Func. Count: 184, Neg. LLF: 86.53857543046723
Iteration: 14, Func. Count: 198, Neg. LLF: 86.5043237650408
Iteration: 15, Func. Count: 212, Neg. LLF: 86.35241480102799
Iteration: 16, Func. Count: 225, Neg. LLF: 86.35120924340366
Iteration: 17, Func. Count: 238, Neg. LLF: 86.35097854325852
Iteration: 18, Func. Count: 251, Neg. LLF: 86.35096179650407
Iteration: 19, Func. Count: 264, Neg. LLF: 86.3509603487469
Iteration: 20, Func. Count: 276, Neg. LLF: 86.35096025233541
Optimization terminated successfully (Exit mode 0)
Current function value: 86.3509603487469
Iterations: 20
Function evaluations: 276
Gradient evaluations: 20
Iteration: 1, Func. Count: 11, Neg. LLF: 101.01257365032347
Iteration: 2, Func. Count: 23, Neg. LLF: 129.3169152337422
Iteration: 3, Func. Count: 34, Neg. LLF: 369.6292561949392
Iteration: 4, Func. Count: 45, Neg. LLF: 979.9020509651016
Iteration: 5, Func. Count: 56, Neg. LLF: 1164.224473411029
Iteration: 6, Func. Count: 67, Neg. LLF: 169.00747694458988
Iteration: 7, Func. Count: 78, Neg. LLF: 111.9523257520995
Iteration: 8, Func. Count: 89, Neg. LLF: 208.66830234990863
Iteration: 9, Func. Count: 100, Neg. LLF: 90.88661992308853
Iteration: 10, Func. Count: 111, Neg. LLF: 92.60140841624758
Iteration: 11, Func. Count: 122, Neg. LLF: 89.66740942063245
Iteration: 12, Func. Count: 133, Neg. LLF: 89.2220420714035
Iteration: 13, Func. Count: 143, Neg. LLF: 89.07216920495297
Iteration: 14, Func. Count: 153, Neg. LLF: 89.00366716597561
Iteration: 15, Func. Count: 163, Neg. LLF: 88.98698084832652
Iteration: 16, Func. Count: 173, Neg. LLF: 88.98572349468988
Iteration: 17, Func. Count: 183, Neg. LLF: 88.98525336710199
Iteration: 18, Func. Count: 193, Neg. LLF: 88.98523194794623
Iteration: 19, Func. Count: 203, Neg. LLF: 88.98522765569341
Iteration: 20, Func. Count: 212, Neg. LLF: 88.98522764344902
Optimization terminated successfully (Exit mode 0)
Current function value: 88.98522765569341
Iterations: 20
Function evaluations: 212
Gradient evaluations: 20
Iteration: 1, Func. Count: 12, Neg. LLF: 170.05574963416464
Iteration: 2, Func. Count: 28, Neg. LLF: 216.91444099669621
Iteration: 3, Func. Count: 41, Neg. LLF: 3697169.26067364
Iteration: 4, Func. Count: 53, Neg. LLF: 112.34454294973334
Iteration: 5, Func. Count: 65, Neg. LLF: 88.02605137607912
Iteration: 6, Func. Count: 77, Neg. LLF: 97.4322105618685
Iteration: 7, Func. Count: 89, Neg. LLF: 87.86301962543355
Iteration: 8, Func. Count: 101, Neg. LLF: 87.48760603458771
Iteration: 9, Func. Count: 112, Neg. LLF: 87.47338884498963
Iteration: 10, Func. Count: 123, Neg. LLF: 87.47242779933644
Iteration: 11, Func. Count: 134, Neg. LLF: 87.47230053000806
Iteration: 12, Func. Count: 145, Neg. LLF: 87.47229718523685
Iteration: 13, Func. Count: 155, Neg. LLF: 87.47229716436108
Optimization terminated successfully (Exit mode 0)
Current function value: 87.47229718523685
Iterations: 13
Function evaluations: 155
Gradient evaluations: 13
Iteration: 1, Func. Count: 13, Neg. LLF: 477.41622940789614
Iteration: 2, Func. Count: 27, Neg. LLF: 5137230.652747612
Iteration: 3, Func. Count: 40, Neg. LLF: 243.54395494610435
Iteration: 4, Func. Count: 53, Neg. LLF: 90.04167436040795
Iteration: 5, Func. Count: 66, Neg. LLF: 97.73263687382575
Iteration: 6, Func. Count: 79, Neg. LLF: 87.1820941679855
Iteration: 7, Func. Count: 91, Neg. LLF: 89.85484045698368
Iteration: 8, Func. Count: 104, Neg. LLF: 90.01761533337158
Iteration: 9, Func. Count: 117, Neg. LLF: 90.01342386809883
Iteration: 10, Func. Count: 130, Neg. LLF: 86.55705058905957
Iteration: 11, Func. Count: 142, Neg. LLF: 86.52117440694201
Iteration: 12, Func. Count: 154, Neg. LLF: 86.44203228870323
Iteration: 13, Func. Count: 166, Neg. LLF: 86.4266278631366
Iteration: 14, Func. Count: 178, Neg. LLF: 86.4184888910738
Iteration: 15, Func. Count: 190, Neg. LLF: 86.41834784872728
Iteration: 16, Func. Count: 202, Neg. LLF: 86.41833420635896
Iteration: 17, Func. Count: 214, Neg. LLF: 86.41833351964894
Optimization terminated successfully (Exit mode 0)
Current function value: 86.41833351964894
Iterations: 17
Function evaluations: 214
Gradient evaluations: 17
Iteration: 1, Func. Count: 14, Neg. LLF: 2562335.9781557084
Iteration: 2, Func. Count: 29, Neg. LLF: 4767275.654448472
Iteration: 3, Func. Count: 43, Neg. LLF: 993.9644755256136
Iteration: 4, Func. Count: 57, Neg. LLF: 94.20488235397629
Iteration: 5, Func. Count: 71, Neg. LLF: 90.72788488928484
Iteration: 6, Func. Count: 85, Neg. LLF: 88.88197258297168
Iteration: 7, Func. Count: 99, Neg. LLF: 91.77392176317852
Iteration: 8, Func. Count: 113, Neg. LLF: 88.2536787514145
Iteration: 9, Func. Count: 127, Neg. LLF: 87.92215323435794
Iteration: 10, Func. Count: 141, Neg. LLF: 87.51356337735592
Iteration: 11, Func. Count: 154, Neg. LLF: 87.56981628132233
Iteration: 12, Func. Count: 168, Neg. LLF: 87.48795702460279
Iteration: 13, Func. Count: 181, Neg. LLF: 87.47758046934608
Iteration: 14, Func. Count: 194, Neg. LLF: 87.4734528615126
Iteration: 15, Func. Count: 207, Neg. LLF: 87.4723864895325
Iteration: 16, Func. Count: 220, Neg. LLF: 87.47230922225863
Iteration: 17, Func. Count: 233, Neg. LLF: 87.4722973989409
Iteration: 18, Func. Count: 245, Neg. LLF: 87.47229737893211
Optimization terminated successfully (Exit mode 0)
Current function value: 87.4722973989409
Iterations: 18
Function evaluations: 245
Gradient evaluations: 18
Iteration: 1, Func. Count: 15, Neg. LLF: 2079577.0136351855
Iteration: 2, Func. Count: 31, Neg. LLF: 5172739.385968603
Iteration: 3, Func. Count: 46, Neg. LLF: 3491948.6606514095
Iteration: 4, Func. Count: 61, Neg. LLF: 100.63002013091462
Iteration: 5, Func. Count: 76, Neg. LLF: 92.0770468564599
Iteration: 6, Func. Count: 91, Neg. LLF: 88.75239127848731
Iteration: 7, Func. Count: 106, Neg. LLF: 88.01553672505035
Iteration: 8, Func. Count: 121, Neg. LLF: 87.59959248261143
Iteration: 9, Func. Count: 136, Neg. LLF: 87.7420942189207
Iteration: 10, Func. Count: 151, Neg. LLF: 88.93492251059055
Iteration: 11, Func. Count: 166, Neg. LLF: 87.2406355736371
Iteration: 12, Func. Count: 181, Neg. LLF: 87.47400191906071
Iteration: 13, Func. Count: 196, Neg. LLF: 86.5754278471166
Iteration: 14, Func. Count: 211, Neg. LLF: 86.70470611927142
Iteration: 15, Func. Count: 226, Neg. LLF: 86.36399146280156
Iteration: 16, Func. Count: 240, Neg. LLF: 86.35191557457819
Iteration: 17, Func. Count: 254, Neg. LLF: 86.35119315793061
Iteration: 18, Func. Count: 268, Neg. LLF: 86.350977722121
Iteration: 19, Func. Count: 282, Neg. LLF: 86.35096228902223
Iteration: 20, Func. Count: 296, Neg. LLF: 86.35096021521233
Iteration: 21, Func. Count: 309, Neg. LLF: 86.35096011876291
Optimization terminated successfully (Exit mode 0)
Current function value: 86.35096021521233
Iterations: 21
Function evaluations: 309
Gradient evaluations: 21
Iteration: 1, Func. Count: 8, Neg. LLF: 106.74815071774371
Iteration: 2, Func. Count: 17, Neg. LLF: 126.3969541755479
Iteration: 3, Func. Count: 25, Neg. LLF: 110.07766785636404
Iteration: 4, Func. Count: 33, Neg. LLF: 209.93737876680737
Iteration: 5, Func. Count: 41, Neg. LLF: 108.38592986112862
Iteration: 6, Func. Count: 49, Neg. LLF: 112.52612587185524
Iteration: 7, Func. Count: 57, Neg. LLF: 95.75923278977741
Iteration: 8, Func. Count: 65, Neg. LLF: 115.43214402223832
Iteration: 9, Func. Count: 73, Neg. LLF: 96.11528605097669
Iteration: 10, Func. Count: 81, Neg. LLF: 124.93997539731743
Iteration: 11, Func. Count: 89, Neg. LLF: 97.97163443239094
Iteration: 12, Func. Count: 97, Neg. LLF: 90.50372831418468
Iteration: 13, Func. Count: 105, Neg. LLF: 88.30234605160743
Iteration: 14, Func. Count: 113, Neg. LLF: 88.11800076692421
Iteration: 15, Func. Count: 120, Neg. LLF: 88.11327512228767
Iteration: 16, Func. Count: 127, Neg. LLF: 88.11236950990921
Iteration: 17, Func. Count: 134, Neg. LLF: 88.11233299919849
Iteration: 18, Func. Count: 141, Neg. LLF: 88.11232248124833
Iteration: 19, Func. Count: 148, Neg. LLF: 88.11232207795997
Optimization terminated successfully (Exit mode 0)
Current function value: 88.11232207795997
Iterations: 19
Function evaluations: 148
Gradient evaluations: 19
Iteration: 1, Func. Count: 9, Neg. LLF: 443.03510865993417
Iteration: 2, Func. Count: 18, Neg. LLF: 1484.1698190062066
Iteration: 3, Func. Count: 27, Neg. LLF: 11168.996712432547
Iteration: 4, Func. Count: 36, Neg. LLF: 99.02239907883543
Iteration: 5, Func. Count: 45, Neg. LLF: 135.7551334347604
Iteration: 6, Func. Count: 54, Neg. LLF: 167.41985758824006
Iteration: 7, Func. Count: 63, Neg. LLF: 91.06179793784142
Iteration: 8, Func. Count: 72, Neg. LLF: 88.8525065204959
Iteration: 9, Func. Count: 81, Neg. LLF: 88.20759995763346
Iteration: 10, Func. Count: 89, Neg. LLF: 88.88465677184496
Iteration: 11, Func. Count: 98, Neg. LLF: 88.1150637250547
Iteration: 12, Func. Count: 106, Neg. LLF: 88.11267723000556
Iteration: 13, Func. Count: 114, Neg. LLF: 88.11243753043571
Iteration: 14, Func. Count: 122, Neg. LLF: 88.1123343948915
Iteration: 15, Func. Count: 130, Neg. LLF: 88.11232378512665
Iteration: 16, Func. Count: 138, Neg. LLF: 88.11232201209347
Iteration: 17, Func. Count: 145, Neg. LLF: 88.11232202116807
Optimization terminated successfully (Exit mode 0)
Current function value: 88.11232201209347
Iterations: 17
Function evaluations: 145
Gradient evaluations: 17
Iteration: 1, Func. Count: 10, Neg. LLF: 175.4501152684509
Iteration: 2, Func. Count: 20, Neg. LLF: 118.50645798702813
Iteration: 3, Func. Count: 30, Neg. LLF: 99.04798564175185
Iteration: 4, Func. Count: 40, Neg. LLF: 93.34516758512726
Iteration: 5, Func. Count: 50, Neg. LLF: 138.98109608080355
Iteration: 6, Func. Count: 60, Neg. LLF: 97.20160841970706
Iteration: 7, Func. Count: 70, Neg. LLF: 89.54869245604175
Iteration: 8, Func. Count: 80, Neg. LLF: 88.32201720661106
Iteration: 9, Func. Count: 90, Neg. LLF: 88.20844541898803
Iteration: 10, Func. Count: 100, Neg. LLF: 88.278082058574
Iteration: 11, Func. Count: 110, Neg. LLF: 88.11522232038676
Iteration: 12, Func. Count: 119, Neg. LLF: 88.09999472663684
Iteration: 13, Func. Count: 128, Neg. LLF: 88.09960968612513
Iteration: 14, Func. Count: 137, Neg. LLF: 88.0993761508039
Iteration: 15, Func. Count: 146, Neg. LLF: 88.09937476535775
Iteration: 16, Func. Count: 154, Neg. LLF: 88.09937476537561
Optimization terminated successfully (Exit mode 0)
Current function value: 88.09937476535775
Iterations: 16
Function evaluations: 154
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 9230.514287691723
Iteration: 2, Func. Count: 22, Neg. LLF: 546.3643028153989
Iteration: 3, Func. Count: 33, Neg. LLF: 97.32229784762708
Iteration: 4, Func. Count: 45, Neg. LLF: 111.03086796750745
Iteration: 5, Func. Count: 56, Neg. LLF: 89.53783729902338
Iteration: 6, Func. Count: 67, Neg. LLF: 90.22860761628218
Iteration: 7, Func. Count: 78, Neg. LLF: 98.86180953913887
Iteration: 8, Func. Count: 89, Neg. LLF: 88.25498121205916
Iteration: 9, Func. Count: 99, Neg. LLF: 88.31884965741739
Iteration: 10, Func. Count: 110, Neg. LLF: 90.55974400961105
Iteration: 11, Func. Count: 121, Neg. LLF: 88.10257468467242
Iteration: 12, Func. Count: 131, Neg. LLF: 88.09976473165196
Iteration: 13, Func. Count: 141, Neg. LLF: 88.09953575035924
Iteration: 14, Func. Count: 151, Neg. LLF: 88.09942772427698
Iteration: 15, Func. Count: 161, Neg. LLF: 88.09938237030862
Iteration: 16, Func. Count: 171, Neg. LLF: 88.09937785307933
Iteration: 17, Func. Count: 181, Neg. LLF: 88.09937556703265
Iteration: 18, Func. Count: 191, Neg. LLF: 88.09937474486846
Optimization terminated successfully (Exit mode 0)
Current function value: 88.09937474486846
Iterations: 18
Function evaluations: 191
Gradient evaluations: 18
Iteration: 1, Func. Count: 12, Neg. LLF: 146.57813972662944
Iteration: 2, Func. Count: 25, Neg. LLF: 972.3369659851292
Iteration: 3, Func. Count: 37, Neg. LLF: 1875.0793616864903
Iteration: 4, Func. Count: 49, Neg. LLF: 100.03964163259326
Iteration: 5, Func. Count: 61, Neg. LLF: 131.4679691512676
Iteration: 6, Func. Count: 73, Neg. LLF: 91.74041708022362
Iteration: 7, Func. Count: 85, Neg. LLF: 88.55021671625563
Iteration: 8, Func. Count: 96, Neg. LLF: 92.38692162148025
Iteration: 9, Func. Count: 108, Neg. LLF: 90.59041481512227
Iteration: 10, Func. Count: 120, Neg. LLF: 88.36815048907813
Iteration: 11, Func. Count: 132, Neg. LLF: 88.13144574973609
Iteration: 12, Func. Count: 143, Neg. LLF: 88.09698174885796
Iteration: 13, Func. Count: 154, Neg. LLF: 88.09008886774818
Iteration: 14, Func. Count: 165, Neg. LLF: 88.08647077201155
Iteration: 15, Func. Count: 176, Neg. LLF: 88.08506020471596
Iteration: 16, Func. Count: 187, Neg. LLF: 88.08501512075193
Iteration: 17, Func. Count: 198, Neg. LLF: 88.08500685091802
Iteration: 18, Func. Count: 209, Neg. LLF: 88.08500565748514
Iteration: 19, Func. Count: 219, Neg. LLF: 88.08500565749041
Optimization terminated successfully (Exit mode 0)
Current function value: 88.08500565748514
Iterations: 19
Function evaluations: 219
Gradient evaluations: 19
Iteration: 1, Func. Count: 9, Neg. LLF: 107.02376616957717
Iteration: 2, Func. Count: 19, Neg. LLF: 124.01068784187643
Iteration: 3, Func. Count: 28, Neg. LLF: 109.23858449694629
Iteration: 4, Func. Count: 37, Neg. LLF: 168.39999544944448
Iteration: 5, Func. Count: 46, Neg. LLF: 119.63854566313654
Iteration: 6, Func. Count: 55, Neg. LLF: 111.4254818502557
Iteration: 7, Func. Count: 64, Neg. LLF: 94.11928560766627
Iteration: 8, Func. Count: 73, Neg. LLF: 113.93388818140365
Iteration: 9, Func. Count: 82, Neg. LLF: 97.80751692368281
Iteration: 10, Func. Count: 91, Neg. LLF: 124.93723761813213
Iteration: 11, Func. Count: 100, Neg. LLF: 95.71968235916135
Iteration: 12, Func. Count: 109, Neg. LLF: 95.26333803456387
Iteration: 13, Func. Count: 118, Neg. LLF: 88.63840884549339
Iteration: 14, Func. Count: 127, Neg. LLF: 88.12587642434987
Iteration: 15, Func. Count: 136, Neg. LLF: 88.09633574088016
Iteration: 16, Func. Count: 144, Neg. LLF: 88.09169420489899
Iteration: 17, Func. Count: 152, Neg. LLF: 88.09153466307087
Iteration: 18, Func. Count: 160, Neg. LLF: 88.09151567617077
Iteration: 19, Func. Count: 168, Neg. LLF: 88.0915116388242
Iteration: 20, Func. Count: 176, Neg. LLF: 88.09151112943667
Optimization terminated successfully (Exit mode 0)
Current function value: 88.09151112943667
Iterations: 20
Function evaluations: 176
Gradient evaluations: 20
Iteration: 1, Func. Count: 10, Neg. LLF: 161.8910740828769
Iteration: 2, Func. Count: 24, Neg. LLF: 199.05271264220153
Iteration: 3, Func. Count: 35, Neg. LLF: 115.41565590565384
Iteration: 4, Func. Count: 45, Neg. LLF: 90.16304296204828
Iteration: 5, Func. Count: 55, Neg. LLF: 89.16165301887001
Iteration: 6, Func. Count: 65, Neg. LLF: 90.6145219299124
Iteration: 7, Func. Count: 75, Neg. LLF: 88.76523068169456
Iteration: 8, Func. Count: 85, Neg. LLF: 90.92391104159728
Iteration: 9, Func. Count: 95, Neg. LLF: 89.16724623315653
Iteration: 10, Func. Count: 105, Neg. LLF: 88.10864520009933
Iteration: 11, Func. Count: 114, Neg. LLF: 88.09624277504383
Iteration: 12, Func. Count: 123, Neg. LLF: 88.09449426608494
Iteration: 13, Func. Count: 132, Neg. LLF: 88.09289705050504
Iteration: 14, Func. Count: 141, Neg. LLF: 88.09222746229665
Iteration: 15, Func. Count: 150, Neg. LLF: 88.09163786875338
Iteration: 16, Func. Count: 159, Neg. LLF: 88.0915268337042
Iteration: 17, Func. Count: 168, Neg. LLF: 88.09151322834798
Iteration: 18, Func. Count: 177, Neg. LLF: 88.09151166232496
Iteration: 19, Func. Count: 185, Neg. LLF: 88.0915116745819
Optimization terminated successfully (Exit mode 0)
Current function value: 88.09151166232496
Iterations: 19
Function evaluations: 185
Gradient evaluations: 19
Iteration: 1, Func. Count: 11, Neg. LLF: 171.13249750782072
Iteration: 2, Func. Count: 23, Neg. LLF: 206.95504692123075
Iteration: 3, Func. Count: 34, Neg. LLF: 136.5945652751212
Iteration: 4, Func. Count: 45, Neg. LLF: 95.0911531846352
Iteration: 5, Func. Count: 56, Neg. LLF: 123.90886269640953
Iteration: 6, Func. Count: 67, Neg. LLF: 88.99414665367571
Iteration: 7, Func. Count: 78, Neg. LLF: 92.96495730522932
Iteration: 8, Func. Count: 89, Neg. LLF: 139.26480905164135
Iteration: 9, Func. Count: 100, Neg. LLF: 88.4503778411428
Iteration: 10, Func. Count: 111, Neg. LLF: 89.22449003834797
Iteration: 11, Func. Count: 122, Neg. LLF: 88.10404147499985
Iteration: 12, Func. Count: 132, Neg. LLF: 88.09277515896623
Iteration: 13, Func. Count: 142, Neg. LLF: 88.09172370934061
Iteration: 14, Func. Count: 152, Neg. LLF: 88.09155299314425
Iteration: 15, Func. Count: 162, Neg. LLF: 88.09151608896316
Iteration: 16, Func. Count: 172, Neg. LLF: 88.09151182948291
Iteration: 17, Func. Count: 182, Neg. LLF: 88.09151111865285
Optimization terminated successfully (Exit mode 0)
Current function value: 88.09151111865285
Iterations: 17
Function evaluations: 182
Gradient evaluations: 17
Iteration: 1, Func. Count: 12, Neg. LLF: 242.55167537227024
Iteration: 2, Func. Count: 24, Neg. LLF: 507.8758323598289
Iteration: 3, Func. Count: 36, Neg. LLF: 97.8779875664349
Iteration: 4, Func. Count: 49, Neg. LLF: 16754.34418465159
Iteration: 5, Func. Count: 61, Neg. LLF: 93.78266522059505
Iteration: 6, Func. Count: 73, Neg. LLF: 107.56886057365544
Iteration: 7, Func. Count: 85, Neg. LLF: 94.64755869873682
Iteration: 8, Func. Count: 97, Neg. LLF: 88.84585808832487
Iteration: 9, Func. Count: 109, Neg. LLF: 88.72566741091067
Iteration: 10, Func. Count: 121, Neg. LLF: 88.91451100362649
Iteration: 11, Func. Count: 133, Neg. LLF: 88.16230650759212
Iteration: 12, Func. Count: 144, Neg. LLF: 88.35159609292675
Iteration: 13, Func. Count: 156, Neg. LLF: 88.15227835578597
Iteration: 14, Func. Count: 168, Neg. LLF: 88.09347497764827
Iteration: 15, Func. Count: 179, Neg. LLF: 88.09260361684622
Iteration: 16, Func. Count: 190, Neg. LLF: 88.09218946974217
Iteration: 17, Func. Count: 201, Neg. LLF: 88.0916763280201
Iteration: 18, Func. Count: 212, Neg. LLF: 88.09154430811961
Iteration: 19, Func. Count: 223, Neg. LLF: 88.09151400600315
Iteration: 20, Func. Count: 234, Neg. LLF: 88.09151154408676
Iteration: 21, Func. Count: 244, Neg. LLF: 88.0915115731957
Optimization terminated successfully (Exit mode 0)
Current function value: 88.09151154408676
Iterations: 21
Function evaluations: 244
Gradient evaluations: 21
Iteration: 1, Func. Count: 13, Neg. LLF: 163.8567744726746
Iteration: 2, Func. Count: 27, Neg. LLF: 661.3578008882989
Iteration: 3, Func. Count: 40, Neg. LLF: 182.37656149894767
Iteration: 4, Func. Count: 53, Neg. LLF: 139.43850327050012
Iteration: 5, Func. Count: 66, Neg. LLF: 89.07978375095654
Iteration: 6, Func. Count: 78, Neg. LLF: 97.1198984063752
Iteration: 7, Func. Count: 91, Neg. LLF: 94.80655787689032
Iteration: 8, Func. Count: 104, Neg. LLF: 88.36353434112078
Iteration: 9, Func. Count: 117, Neg. LLF: 112.39133675600691
Iteration: 10, Func. Count: 130, Neg. LLF: 89.25782328298499
Iteration: 11, Func. Count: 143, Neg. LLF: 88.10629841710862
Iteration: 12, Func. Count: 155, Neg. LLF: 88.10622606567065
Iteration: 13, Func. Count: 168, Neg. LLF: 88.0978113582203
Iteration: 14, Func. Count: 181, Neg. LLF: 88.09013637706072
Iteration: 15, Func. Count: 194, Neg. LLF: 88.08485520799265
Iteration: 16, Func. Count: 206, Neg. LLF: 88.08433441066734
Iteration: 17, Func. Count: 218, Neg. LLF: 88.08420665832728
Iteration: 18, Func. Count: 230, Neg. LLF: 88.08420367186896
Iteration: 19, Func. Count: 241, Neg. LLF: 88.0842036718528
Optimization terminated successfully (Exit mode 0)
Current function value: 88.08420367186896
Iterations: 19
Function evaluations: 241
Gradient evaluations: 19
Iteration: 1, Func. Count: 10, Neg. LLF: 104.90004478921288
Iteration: 2, Func. Count: 21, Neg. LLF: 90.15295652613558
Iteration: 3, Func. Count: 30, Neg. LLF: 126.19768083337391
Iteration: 4, Func. Count: 40, Neg. LLF: 4029464.5603692546
Iteration: 5, Func. Count: 50, Neg. LLF: 154.74201791542345
Iteration: 6, Func. Count: 60, Neg. LLF: 4458.480054667248
Iteration: 7, Func. Count: 70, Neg. LLF: 89.36956806404594
Iteration: 8, Func. Count: 80, Neg. LLF: 96.0828694996445
Iteration: 9, Func. Count: 90, Neg. LLF: 110.14327456161108
Iteration: 10, Func. Count: 100, Neg. LLF: 93.79684988405128
Iteration: 11, Func. Count: 110, Neg. LLF: 91.47037900524876
Iteration: 12, Func. Count: 120, Neg. LLF: 92.63274588586928
Iteration: 13, Func. Count: 130, Neg. LLF: 85.43925990534632
Iteration: 14, Func. Count: 140, Neg. LLF: 85.27389123358125
Iteration: 15, Func. Count: 149, Neg. LLF: 85.25965667206685
Iteration: 16, Func. Count: 158, Neg. LLF: 85.2596031631976
Iteration: 17, Func. Count: 168, Neg. LLF: 85.25871545061355
Iteration: 18, Func. Count: 177, Neg. LLF: 85.25871045518036
Iteration: 19, Func. Count: 186, Neg. LLF: 85.25871026764362
Optimization terminated successfully (Exit mode 0)
Current function value: 85.25871026764362
Iterations: 19
Function evaluations: 186
Gradient evaluations: 19
Iteration: 1, Func. Count: 11, Neg. LLF: 184.81825861479996
Iteration: 2, Func. Count: 26, Neg. LLF: 442894916.68630475
Iteration: 3, Func. Count: 38, Neg. LLF: 10575023.669318203
Iteration: 4, Func. Count: 49, Neg. LLF: 90.62619247295405
Iteration: 5, Func. Count: 60, Neg. LLF: 89.35962528816049
Iteration: 6, Func. Count: 71, Neg. LLF: 88.90118785020704
Iteration: 7, Func. Count: 82, Neg. LLF: 86.34944852196915
Iteration: 8, Func. Count: 92, Neg. LLF: 89.38508038783293
Iteration: 9, Func. Count: 103, Neg. LLF: 127.0926103758967
Iteration: 10, Func. Count: 114, Neg. LLF: 85.47532803091408
Iteration: 11, Func. Count: 124, Neg. LLF: 85.30524839903381
Iteration: 12, Func. Count: 134, Neg. LLF: 85.27684192795053
Iteration: 13, Func. Count: 144, Neg. LLF: 85.26771155887174
Iteration: 14, Func. Count: 154, Neg. LLF: 85.26026457754257
Iteration: 15, Func. Count: 164, Neg. LLF: 85.25900302149134
Iteration: 16, Func. Count: 174, Neg. LLF: 85.25873161813452
Iteration: 17, Func. Count: 184, Neg. LLF: 85.25871957003663
Iteration: 18, Func. Count: 194, Neg. LLF: 85.25871474320839
Iteration: 19, Func. Count: 204, Neg. LLF: 85.25871105561262
Iteration: 20, Func. Count: 214, Neg. LLF: 85.25871014190061
Optimization terminated successfully (Exit mode 0)
Current function value: 85.25871014190061
Iterations: 20
Function evaluations: 214
Gradient evaluations: 20
Iteration: 1, Func. Count: 12, Neg. LLF: 336520423.5992666
Iteration: 2, Func. Count: 25, Neg. LLF: 10142998.512506096
Iteration: 3, Func. Count: 37, Neg. LLF: 7410.7931724510145
Iteration: 4, Func. Count: 49, Neg. LLF: 101.89468611779759
Iteration: 5, Func. Count: 61, Neg. LLF: 87.26758152513602
Iteration: 6, Func. Count: 73, Neg. LLF: 89.28536095065141
Iteration: 7, Func. Count: 85, Neg. LLF: 92.71661131591475
Iteration: 8, Func. Count: 97, Neg. LLF: 99.0740832515501
Iteration: 9, Func. Count: 109, Neg. LLF: 86.48043864628458
Iteration: 10, Func. Count: 121, Neg. LLF: 88.63808429520319
Iteration: 11, Func. Count: 133, Neg. LLF: 85.16763464209996
Iteration: 12, Func. Count: 144, Neg. LLF: 85.14738626943576
Iteration: 13, Func. Count: 155, Neg. LLF: 85.14087184592098
Iteration: 14, Func. Count: 166, Neg. LLF: 85.1386384433791
Iteration: 15, Func. Count: 177, Neg. LLF: 85.13779772978354
Iteration: 16, Func. Count: 188, Neg. LLF: 85.13755781120904
Iteration: 17, Func. Count: 199, Neg. LLF: 85.13754048786264
Iteration: 18, Func. Count: 210, Neg. LLF: 85.1375402202333
Optimization terminated successfully (Exit mode 0)
Current function value: 85.1375402202333
Iterations: 18
Function evaluations: 210
Gradient evaluations: 18
Iteration: 1, Func. Count: 13, Neg. LLF: 263896945.90915942
Iteration: 2, Func. Count: 27, Neg. LLF: 8427306.768187936
Iteration: 3, Func. Count: 40, Neg. LLF: 250.78029095879737
Iteration: 4, Func. Count: 53, Neg. LLF: 274.8333950822045
Iteration: 5, Func. Count: 66, Neg. LLF: 108.50234134661773
Iteration: 6, Func. Count: 79, Neg. LLF: 86.91638316752723
Iteration: 7, Func. Count: 91, Neg. LLF: 86.29209576019318
Iteration: 8, Func. Count: 103, Neg. LLF: 827.5317646078744
Iteration: 9, Func. Count: 116, Neg. LLF: 89.18072136616534
Iteration: 10, Func. Count: 129, Neg. LLF: 93.07060575264691
Iteration: 11, Func. Count: 142, Neg. LLF: 90.16536951464192
Iteration: 12, Func. Count: 155, Neg. LLF: 85.83513540124812
Iteration: 13, Func. Count: 168, Neg. LLF: 85.21727650416501
Iteration: 14, Func. Count: 181, Neg. LLF: 85.15717236117425
Iteration: 15, Func. Count: 194, Neg. LLF: 85.13915627491863
Iteration: 16, Func. Count: 206, Neg. LLF: 85.13814058202645
Iteration: 17, Func. Count: 218, Neg. LLF: 85.13767159532041
Iteration: 18, Func. Count: 230, Neg. LLF: 85.13757221093454
Iteration: 19, Func. Count: 242, Neg. LLF: 85.13754171192787
Iteration: 20, Func. Count: 254, Neg. LLF: 85.13754011388299
Iteration: 21, Func. Count: 265, Neg. LLF: 85.13754021250868
Optimization terminated successfully (Exit mode 0)
Current function value: 85.13754011388299
Iterations: 21
Function evaluations: 265
Gradient evaluations: 21
Iteration: 1, Func. Count: 14, Neg. LLF: 214224796.07368767
Iteration: 2, Func. Count: 28, Neg. LLF: 8655076.632028809
Iteration: 3, Func. Count: 42, Neg. LLF: 750.4504876666077
Iteration: 4, Func. Count: 56, Neg. LLF: 387.60545730699926
Iteration: 5, Func. Count: 70, Neg. LLF: 2598.6431499907535
Iteration: 6, Func. Count: 84, Neg. LLF: 90.32942438293787
Iteration: 7, Func. Count: 98, Neg. LLF: 86.29667028642601
Iteration: 8, Func. Count: 112, Neg. LLF: 88.77455660201447
Iteration: 9, Func. Count: 126, Neg. LLF: 94.19486487127206
Iteration: 10, Func. Count: 140, Neg. LLF: 99.91261245573698
Iteration: 11, Func. Count: 154, Neg. LLF: 84.77034699431165
Iteration: 12, Func. Count: 167, Neg. LLF: 84.73793903063557
Iteration: 13, Func. Count: 180, Neg. LLF: 84.73989399644805
Iteration: 14, Func. Count: 194, Neg. LLF: 84.73261028351297
Iteration: 15, Func. Count: 207, Neg. LLF: 84.73174487396929
Iteration: 16, Func. Count: 220, Neg. LLF: 84.73169736832546
Iteration: 17, Func. Count: 233, Neg. LLF: 84.73168612686922
Iteration: 18, Func. Count: 246, Neg. LLF: 84.73168393569638
Iteration: 19, Func. Count: 258, Neg. LLF: 84.73168388807679
Optimization terminated successfully (Exit mode 0)
Current function value: 84.73168393569638
Iterations: 19
Function evaluations: 258
Gradient evaluations: 19
Iteration: 1, Func. Count: 11, Neg. LLF: 106.33149702548819
Iteration: 2, Func. Count: 23, Neg. LLF: 101.44964390933883
Iteration: 3, Func. Count: 34, Neg. LLF: 220.3357508369115
Iteration: 4, Func. Count: 45, Neg. LLF: 97.57768971343468
Iteration: 5, Func. Count: 56, Neg. LLF: 718.0626935461839
Iteration: 6, Func. Count: 67, Neg. LLF: 127.85747002589474
Iteration: 7, Func. Count: 78, Neg. LLF: 3855.514678190728
Iteration: 8, Func. Count: 89, Neg. LLF: 412.8382834950565
Iteration: 9, Func. Count: 100, Neg. LLF: 94.43604013322006
Iteration: 10, Func. Count: 111, Neg. LLF: 97.45869625179597
Iteration: 11, Func. Count: 122, Neg. LLF: 91.78710879482611
Iteration: 12, Func. Count: 133, Neg. LLF: 90.11988442629747
Iteration: 13, Func. Count: 144, Neg. LLF: 93.72017439190842
Iteration: 14, Func. Count: 155, Neg. LLF: 85.39149967348467
Iteration: 15, Func. Count: 165, Neg. LLF: 85.27549071535019
Iteration: 16, Func. Count: 175, Neg. LLF: 85.29705718187485
Iteration: 17, Func. Count: 186, Neg. LLF: 85.26063611958158
Iteration: 18, Func. Count: 196, Neg. LLF: 85.25873224982072
Iteration: 19, Func. Count: 206, Neg. LLF: 85.25871214272028
Iteration: 20, Func. Count: 216, Neg. LLF: 85.25871061434577
Iteration: 21, Func. Count: 226, Neg. LLF: 85.25871006178795
Optimization terminated successfully (Exit mode 0)
Current function value: 85.25871006178795
Iterations: 21
Function evaluations: 226
Gradient evaluations: 21
Iteration: 1, Func. Count: 12, Neg. LLF: 208.34455644639246
Iteration: 2, Func. Count: 25, Neg. LLF: 4896900.238723411
Iteration: 3, Func. Count: 37, Neg. LLF: 172.09889661464612
Iteration: 4, Func. Count: 49, Neg. LLF: 176.20981742373667
Iteration: 5, Func. Count: 61, Neg. LLF: 87.82714552016184
Iteration: 6, Func. Count: 73, Neg. LLF: 87.17003479446849
Iteration: 7, Func. Count: 85, Neg. LLF: 87.44109175933907
Iteration: 8, Func. Count: 97, Neg. LLF: 92.67873595019553
Iteration: 9, Func. Count: 109, Neg. LLF: 85.44160152964793
Iteration: 10, Func. Count: 120, Neg. LLF: 85.33141465778326
Iteration: 11, Func. Count: 131, Neg. LLF: 85.29407818232622
Iteration: 12, Func. Count: 142, Neg. LLF: 85.33978378340045
Iteration: 13, Func. Count: 154, Neg. LLF: 85.26332314570023
Iteration: 14, Func. Count: 165, Neg. LLF: 85.25873546374179
Iteration: 15, Func. Count: 176, Neg. LLF: 85.25871020808009
Iteration: 16, Func. Count: 186, Neg. LLF: 85.25871026295108
Optimization terminated successfully (Exit mode 0)
Current function value: 85.25871020808009
Iterations: 16
Function evaluations: 186
Gradient evaluations: 16
Iteration: 1, Func. Count: 13, Neg. LLF: 1101.68060424787
Iteration: 2, Func. Count: 27, Neg. LLF: 3377960.0540361535
Iteration: 3, Func. Count: 40, Neg. LLF: 296.4616472944105
Iteration: 4, Func. Count: 53, Neg. LLF: 286.59932527977907
Iteration: 5, Func. Count: 66, Neg. LLF: 88.89195672216619
Iteration: 6, Func. Count: 79, Neg. LLF: 102.28246553161736
Iteration: 7, Func. Count: 92, Neg. LLF: 99.02646113599117
Iteration: 8, Func. Count: 105, Neg. LLF: 85.98322015581003
Iteration: 9, Func. Count: 118, Neg. LLF: 86.72362806755076
Iteration: 10, Func. Count: 131, Neg. LLF: 85.4587572546556
Iteration: 11, Func. Count: 143, Neg. LLF: 85.1876212164604
Iteration: 12, Func. Count: 155, Neg. LLF: 85.15588755929494
Iteration: 13, Func. Count: 167, Neg. LLF: 85.15927291810333
Iteration: 14, Func. Count: 180, Neg. LLF: 85.13892110026823
Iteration: 15, Func. Count: 192, Neg. LLF: 85.13785108929734
Iteration: 16, Func. Count: 204, Neg. LLF: 85.13756924019536
Iteration: 17, Func. Count: 216, Neg. LLF: 85.1375418307346
Iteration: 18, Func. Count: 228, Neg. LLF: 85.13754011833625
Iteration: 19, Func. Count: 239, Neg. LLF: 85.13754005589384
Optimization terminated successfully (Exit mode 0)
Current function value: 85.13754011833625
Iterations: 19
Function evaluations: 239
Gradient evaluations: 19
Iteration: 1, Func. Count: 14, Neg. LLF: 2532904.585065279
Iteration: 2, Func. Count: 29, Neg. LLF: 5038894.433701493
Iteration: 3, Func. Count: 43, Neg. LLF: 137.8560171407625
Iteration: 4, Func. Count: 57, Neg. LLF: 439.3931615195671
Iteration: 5, Func. Count: 71, Neg. LLF: 87.44700042752409
Iteration: 6, Func. Count: 85, Neg. LLF: 88.77059384899182
Iteration: 7, Func. Count: 99, Neg. LLF: 120.57294877548898
Iteration: 8, Func. Count: 114, Neg. LLF: 86.11222367304329
Iteration: 9, Func. Count: 128, Neg. LLF: 87.80475316410552
Iteration: 10, Func. Count: 142, Neg. LLF: 85.19643401303908
Iteration: 11, Func. Count: 155, Neg. LLF: 85.16299048219155
Iteration: 12, Func. Count: 168, Neg. LLF: 85.18111249940434
Iteration: 13, Func. Count: 182, Neg. LLF: 85.14362799303213
Iteration: 14, Func. Count: 196, Neg. LLF: 85.13779767139546
Iteration: 15, Func. Count: 209, Neg. LLF: 85.13757027497364
Iteration: 16, Func. Count: 222, Neg. LLF: 85.13754509010343
Iteration: 17, Func. Count: 235, Neg. LLF: 85.13754122980107
Iteration: 18, Func. Count: 248, Neg. LLF: 85.13754021032503
Iteration: 19, Func. Count: 260, Neg. LLF: 85.137540308948
Optimization terminated successfully (Exit mode 0)
Current function value: 85.13754021032503
Iterations: 19
Function evaluations: 260
Gradient evaluations: 19
Iteration: 1, Func. Count: 15, Neg. LLF: 2050170.4764497697
Iteration: 2, Func. Count: 30, Neg. LLF: 3555840.272984971
Iteration: 3, Func. Count: 45, Neg. LLF: 1008.1678330855328
Iteration: 4, Func. Count: 60, Neg. LLF: 3542.8201177454957
Iteration: 5, Func. Count: 75, Neg. LLF: 259.1936939628285
Iteration: 6, Func. Count: 90, Neg. LLF: 87.29996772416993
Iteration: 7, Func. Count: 105, Neg. LLF: 89.2519345368092
Iteration: 8, Func. Count: 120, Neg. LLF: 98.27212162384653
Iteration: 9, Func. Count: 135, Neg. LLF: 173.258759848173
Iteration: 10, Func. Count: 150, Neg. LLF: 89.20070326119168
Iteration: 11, Func. Count: 165, Neg. LLF: 84.76908106447023
Iteration: 12, Func. Count: 179, Neg. LLF: 86.9362619477515
Iteration: 13, Func. Count: 195, Neg. LLF: 84.74465562989884
Iteration: 14, Func. Count: 209, Neg. LLF: 84.73269311147473
Iteration: 15, Func. Count: 223, Neg. LLF: 84.7317536780586
Iteration: 16, Func. Count: 237, Neg. LLF: 84.73169567258107
Iteration: 17, Func. Count: 251, Neg. LLF: 84.7316844639529
Iteration: 18, Func. Count: 265, Neg. LLF: 84.73168396363918
Optimization terminated successfully (Exit mode 0)
Current function value: 84.73168396363918
Iterations: 18
Function evaluations: 265
Gradient evaluations: 18
Iteration: 1, Func. Count: 12, Neg. LLF: 111.37559193702104
Iteration: 2, Func. Count: 25, Neg. LLF: 121.98706468120349
Iteration: 3, Func. Count: 37, Neg. LLF: 208.8055137146739
Iteration: 4, Func. Count: 49, Neg. LLF: 205.35056505028075
Iteration: 5, Func. Count: 61, Neg. LLF: 6261.555528072437
Iteration: 6, Func. Count: 73, Neg. LLF: 121.97143380938667
Iteration: 7, Func. Count: 85, Neg. LLF: 1347.7092224219027
Iteration: 8, Func. Count: 97, Neg. LLF: 113.13279566964253
Iteration: 9, Func. Count: 109, Neg. LLF: 137.432551624511
Iteration: 10, Func. Count: 121, Neg. LLF: 94.00433341208021
Iteration: 11, Func. Count: 133, Neg. LLF: 97.36319625445796
Iteration: 12, Func. Count: 145, Neg. LLF: 91.76403961259395
Iteration: 13, Func. Count: 157, Neg. LLF: 151.03887288023424
Iteration: 14, Func. Count: 169, Neg. LLF: 93.33237802513146
Iteration: 15, Func. Count: 181, Neg. LLF: 85.431460523408
Iteration: 16, Func. Count: 192, Neg. LLF: 85.30670590763046
Iteration: 17, Func. Count: 203, Neg. LLF: 85.31128080599625
Iteration: 18, Func. Count: 215, Neg. LLF: 85.26573779923068
Iteration: 19, Func. Count: 226, Neg. LLF: 85.25657605350418
Iteration: 20, Func. Count: 237, Neg. LLF: 85.25069943256247
Iteration: 21, Func. Count: 248, Neg. LLF: 85.24924845504633
Iteration: 22, Func. Count: 259, Neg. LLF: 85.24909388288374
Iteration: 23, Func. Count: 270, Neg. LLF: 85.24903613546631
Iteration: 24, Func. Count: 281, Neg. LLF: 85.24903352117073
Iteration: 25, Func. Count: 291, Neg. LLF: 85.24903354070841
Optimization terminated successfully (Exit mode 0)
Current function value: 85.24903352117073
Iterations: 25
Function evaluations: 291
Gradient evaluations: 25
Iteration: 1, Func. Count: 13, Neg. LLF: 231.44617076168504
Iteration: 2, Func. Count: 27, Neg. LLF: 4930525.009826743
Iteration: 3, Func. Count: 40, Neg. LLF: 1908159.4455745323
Iteration: 4, Func. Count: 53, Neg. LLF: 125.88064944227177
Iteration: 5, Func. Count: 66, Neg. LLF: 88.50378837571431
Iteration: 6, Func. Count: 79, Neg. LLF: 107.10262190479658
Iteration: 7, Func. Count: 92, Neg. LLF: 86.66524308327791
Iteration: 8, Func. Count: 105, Neg. LLF: 86.79319043698314
Iteration: 9, Func. Count: 118, Neg. LLF: 1954.1715125513151
Iteration: 10, Func. Count: 131, Neg. LLF: 86.23617957563623
Iteration: 11, Func. Count: 144, Neg. LLF: 85.35318137195607
Iteration: 12, Func. Count: 156, Neg. LLF: 85.26309628937136
Iteration: 13, Func. Count: 168, Neg. LLF: 85.25594732435052
Iteration: 14, Func. Count: 180, Neg. LLF: 85.25067829396903
Iteration: 15, Func. Count: 192, Neg. LLF: 85.24937018566825
Iteration: 16, Func. Count: 204, Neg. LLF: 85.24905873787948
Iteration: 17, Func. Count: 216, Neg. LLF: 85.24903466250261
Iteration: 18, Func. Count: 228, Neg. LLF: 85.24903348398631
Iteration: 19, Func. Count: 239, Neg. LLF: 85.24903354205308
Optimization terminated successfully (Exit mode 0)
Current function value: 85.24903348398631
Iterations: 19
Function evaluations: 239
Gradient evaluations: 19
Iteration: 1, Func. Count: 14, Neg. LLF: 2661.585961993003
Iteration: 2, Func. Count: 29, Neg. LLF: 3525097.1805415647
Iteration: 3, Func. Count: 43, Neg. LLF: 4926090.950125881
Iteration: 4, Func. Count: 57, Neg. LLF: 221.068501236224
Iteration: 5, Func. Count: 71, Neg. LLF: 92.18438979794944
Iteration: 6, Func. Count: 85, Neg. LLF: 93.69383644767971
Iteration: 7, Func. Count: 99, Neg. LLF: 103.85030739836174
Iteration: 8, Func. Count: 113, Neg. LLF: 88.45113637842847
Iteration: 9, Func. Count: 127, Neg. LLF: 86.91634956988446
Iteration: 10, Func. Count: 141, Neg. LLF: 89.52180730646083
Iteration: 11, Func. Count: 155, Neg. LLF: 85.1099005396102
Iteration: 12, Func. Count: 168, Neg. LLF: 85.12098103103452
Iteration: 13, Func. Count: 182, Neg. LLF: 85.0630765829613
Iteration: 14, Func. Count: 195, Neg. LLF: 85.05594771180625
Iteration: 15, Func. Count: 208, Neg. LLF: 85.052234024979
Iteration: 16, Func. Count: 221, Neg. LLF: 85.05163929398445
Iteration: 17, Func. Count: 234, Neg. LLF: 85.05145351241725
Iteration: 18, Func. Count: 247, Neg. LLF: 85.05143555971706
Iteration: 19, Func. Count: 260, Neg. LLF: 85.05143473713305
Optimization terminated successfully (Exit mode 0)
Current function value: 85.05143473713305
Iterations: 19
Function evaluations: 260
Gradient evaluations: 19
Iteration: 1, Func. Count: 15, Neg. LLF: 2532794.5232690065
Iteration: 2, Func. Count: 31, Neg. LLF: 5295282.72937411
Iteration: 3, Func. Count: 46, Neg. LLF: 4934723.850537142
Iteration: 4, Func. Count: 61, Neg. LLF: 197.81315406735075
Iteration: 5, Func. Count: 76, Neg. LLF: 546.8091710875989
Iteration: 6, Func. Count: 91, Neg. LLF: 100.87682586485253
Iteration: 7, Func. Count: 106, Neg. LLF: 88.3860704961758
Iteration: 8, Func. Count: 121, Neg. LLF: 87.19754754439533
Iteration: 9, Func. Count: 136, Neg. LLF: 88.62154024325096
Iteration: 10, Func. Count: 151, Neg. LLF: 85.98464075312933
Iteration: 11, Func. Count: 166, Neg. LLF: 85.49344285461295
Iteration: 12, Func. Count: 180, Neg. LLF: 85.30055318948304
Iteration: 13, Func. Count: 194, Neg. LLF: 85.09789709399551
Iteration: 14, Func. Count: 208, Neg. LLF: 85.05899513893324
Iteration: 15, Func. Count: 222, Neg. LLF: 85.06397663774347
Iteration: 16, Func. Count: 237, Neg. LLF: 85.05220043463937
Iteration: 17, Func. Count: 251, Neg. LLF: 85.05150796013692
Iteration: 18, Func. Count: 265, Neg. LLF: 85.05143810787808
Iteration: 19, Func. Count: 279, Neg. LLF: 85.05143481946675
Iteration: 20, Func. Count: 292, Neg. LLF: 85.05143492649248
Optimization terminated successfully (Exit mode 0)
Current function value: 85.05143481946675
Iterations: 20
Function evaluations: 292
Gradient evaluations: 20
Iteration: 1, Func. Count: 16, Neg. LLF: 2040318.7648502958
Iteration: 2, Func. Count: 32, Neg. LLF: 3656596.018901069
Iteration: 3, Func. Count: 48, Neg. LLF: 4900893.010490151
Iteration: 4, Func. Count: 64, Neg. LLF: 167.9068700153351
Iteration: 5, Func. Count: 80, Neg. LLF: 274.69379009516973
Iteration: 6, Func. Count: 96, Neg. LLF: 87.17011324329255
Iteration: 7, Func. Count: 112, Neg. LLF: 107.86129136372384
Iteration: 8, Func. Count: 128, Neg. LLF: 86.6298368313718
Iteration: 9, Func. Count: 144, Neg. LLF: 572.3958505977217
Iteration: 10, Func. Count: 160, Neg. LLF: 89.29034635135922
Iteration: 11, Func. Count: 176, Neg. LLF: 84.79868203726402
Iteration: 12, Func. Count: 191, Neg. LLF: 88.81457938512028
Iteration: 13, Func. Count: 208, Neg. LLF: 84.73567741403579
Iteration: 14, Func. Count: 223, Neg. LLF: 84.72995615146213
Iteration: 15, Func. Count: 238, Neg. LLF: 84.72334225556847
Iteration: 16, Func. Count: 253, Neg. LLF: 84.72275829506013
Iteration: 17, Func. Count: 268, Neg. LLF: 84.72252805307346
Iteration: 18, Func. Count: 283, Neg. LLF: 84.72252235050041
Iteration: 19, Func. Count: 297, Neg. LLF: 84.72252230048645
Optimization terminated successfully (Exit mode 0)
Current function value: 84.72252235050041
Iterations: 19
Function evaluations: 297
Gradient evaluations: 19
Iteration: 1, Func. Count: 8, Neg. LLF: 123.8903185910062
Iteration: 2, Func. Count: 21, Neg. LLF: 148651725.1025262
Iteration: 3, Func. Count: 29, Neg. LLF: 6799905.391122909
Iteration: 4, Func. Count: 37, Neg. LLF: 90.58829418621133
Iteration: 5, Func. Count: 45, Neg. LLF: 88.76989927453805
Iteration: 6, Func. Count: 52, Neg. LLF: 88.03553180632437
Iteration: 7, Func. Count: 59, Neg. LLF: 87.43276883315133
Iteration: 8, Func. Count: 66, Neg. LLF: 87.27489976644779
Iteration: 9, Func. Count: 73, Neg. LLF: 87.21159740223666
Iteration: 10, Func. Count: 80, Neg. LLF: 87.19846291198013
Iteration: 11, Func. Count: 87, Neg. LLF: 87.19798310266691
Iteration: 12, Func. Count: 94, Neg. LLF: 87.19794385881505
Iteration: 13, Func. Count: 101, Neg. LLF: 87.19793999191008
Iteration: 14, Func. Count: 107, Neg. LLF: 87.19793987281965
Optimization terminated successfully (Exit mode 0)
Current function value: 87.19793999191008
Iterations: 14
Function evaluations: 107
Gradient evaluations: 14
Iteration: 1, Func. Count: 5, Neg. LLF: 124.94501828081093
Iteration: 2, Func. Count: 12, Neg. LLF: 99.88580753290066
Iteration: 3, Func. Count: 17, Neg. LLF: 96.84645820677181
Iteration: 4, Func. Count: 21, Neg. LLF: 96.75586092312628
Iteration: 5, Func. Count: 25, Neg. LLF: 96.69011547867036
Iteration: 6, Func. Count: 29, Neg. LLF: 96.68799620596248
Iteration: 7, Func. Count: 33, Neg. LLF: 96.68795330737923
Iteration: 8, Func. Count: 36, Neg. LLF: 96.68795333255561
Optimization terminated successfully (Exit mode 0)
Current function value: 96.68795330737923
Iterations: 8
Function evaluations: 36
Gradient evaluations: 8
Iteration: 1, Func. Count: 6, Neg. LLF: 118.06141838939153
Iteration: 2, Func. Count: 16, Neg. LLF: 656.319076176275
Iteration: 3, Func. Count: 22, Neg. LLF: 12859371.017650368
Iteration: 4, Func. Count: 28, Neg. LLF: 92.12480428868376
Iteration: 5, Func. Count: 33, Neg. LLF: 92.0435043348424
Iteration: 6, Func. Count: 38, Neg. LLF: 92.02609698514516
Iteration: 7, Func. Count: 43, Neg. LLF: 92.01742676944066
Iteration: 8, Func. Count: 48, Neg. LLF: 92.01675665902508
Iteration: 9, Func. Count: 53, Neg. LLF: 92.01674501955733
Iteration: 10, Func. Count: 57, Neg. LLF: 92.0167449255553
Optimization terminated successfully (Exit mode 0)
Current function value: 92.01674501955733
Iterations: 10
Function evaluations: 57
Gradient evaluations: 10
Iteration: 1, Func. Count: 7, Neg. LLF: 116.70067832769408
Iteration: 2, Func. Count: 15, Neg. LLF: 77540399.55237375
Iteration: 3, Func. Count: 23, Neg. LLF: 693.3002205767789
Iteration: 4, Func. Count: 30, Neg. LLF: 92.8945507504874
Iteration: 5, Func. Count: 36, Neg. LLF: 93.0893118516698
Iteration: 6, Func. Count: 43, Neg. LLF: 92.02999041450555
Iteration: 7, Func. Count: 49, Neg. LLF: 92.01813968600587
Iteration: 8, Func. Count: 55, Neg. LLF: 92.02256474432582
Iteration: 9, Func. Count: 62, Neg. LLF: 92.0167454883644
Iteration: 10, Func. Count: 67, Neg. LLF: 92.01674542895083
Optimization terminated successfully (Exit mode 0)
Current function value: 92.0167454883644
Iterations: 10
Function evaluations: 67
Gradient evaluations: 10
Iteration: 1, Func. Count: 8, Neg. LLF: 108.84774520756163
Iteration: 2, Func. Count: 19, Neg. LLF: 477.70991869715635
Iteration: 3, Func. Count: 27, Neg. LLF: 123.12850496541415
Iteration: 4, Func. Count: 35, Neg. LLF: 93.52584137131483
Iteration: 5, Func. Count: 42, Neg. LLF: 99.60137075400463
Iteration: 6, Func. Count: 51, Neg. LLF: 94.54066241393853
Iteration: 7, Func. Count: 59, Neg. LLF: 92.07269224500608
Iteration: 8, Func. Count: 66, Neg. LLF: 92.03389070943555
Iteration: 9, Func. Count: 73, Neg. LLF: 92.02021918944685
Iteration: 10, Func. Count: 80, Neg. LLF: 92.01688087946665
Iteration: 11, Func. Count: 87, Neg. LLF: 92.01674605548625
Iteration: 12, Func. Count: 94, Neg. LLF: 92.01674502192625
Iteration: 13, Func. Count: 100, Neg. LLF: 92.01674496677153
Optimization terminated successfully (Exit mode 0)
Current function value: 92.01674502192625
Iterations: 13
Function evaluations: 100
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 128.8872244717961
Iteration: 2, Func. Count: 21, Neg. LLF: 180.1099532516735
Iteration: 3, Func. Count: 30, Neg. LLF: 108.55968056550235
Iteration: 4, Func. Count: 39, Neg. LLF: 100.55788029914547
Iteration: 5, Func. Count: 48, Neg. LLF: 99.33717564717304
Iteration: 6, Func. Count: 57, Neg. LLF: 97.18974228552133
Iteration: 7, Func. Count: 66, Neg. LLF: 94.90442480738129
Iteration: 8, Func. Count: 75, Neg. LLF: 93.07891342250933
Iteration: 9, Func. Count: 83, Neg. LLF: 92.35130061272902
Iteration: 10, Func. Count: 91, Neg. LLF: 92.09375941901527
Iteration: 11, Func. Count: 99, Neg. LLF: 92.03278331615778
Iteration: 12, Func. Count: 107, Neg. LLF: 92.02180350335031
Iteration: 13, Func. Count: 115, Neg. LLF: 92.01695662837447
Iteration: 14, Func. Count: 123, Neg. LLF: 92.01675078639964
Iteration: 15, Func. Count: 131, Neg. LLF: 92.01674551736943
Iteration: 16, Func. Count: 139, Neg. LLF: 92.01674500718418
Optimization terminated successfully (Exit mode 0)
Current function value: 92.01674500718418
Iterations: 16
Function evaluations: 139
Gradient evaluations: 16
Iteration: 1, Func. Count: 6, Neg. LLF: 129.21200112626602
Iteration: 2, Func. Count: 14, Neg. LLF: 16142.645468116574
Iteration: 3, Func. Count: 20, Neg. LLF: 7433715.415063873
Iteration: 4, Func. Count: 26, Neg. LLF: 94.0734702058001
Iteration: 5, Func. Count: 31, Neg. LLF: 95.12486123051215
Iteration: 6, Func. Count: 38, Neg. LLF: 94.0660176950016
Iteration: 7, Func. Count: 44, Neg. LLF: 94.02027946354691
Iteration: 8, Func. Count: 49, Neg. LLF: 94.00821090676331
Iteration: 9, Func. Count: 54, Neg. LLF: 94.00636507823711
Iteration: 10, Func. Count: 59, Neg. LLF: 94.00627207672038
Iteration: 11, Func. Count: 64, Neg. LLF: 94.006268404838
Iteration: 12, Func. Count: 68, Neg. LLF: 94.00626840484944
Optimization terminated successfully (Exit mode 0)
Current function value: 94.006268404838
Iterations: 12
Function evaluations: 68
Gradient evaluations: 12
Iteration: 1, Func. Count: 7, Neg. LLF: 111.47831330147993
Iteration: 2, Func. Count: 18, Neg. LLF: 1055.037044607124
Iteration: 3, Func. Count: 25, Neg. LLF: 3592528.4303533575
Iteration: 4, Func. Count: 32, Neg. LLF: 91.04981266309623
Iteration: 5, Func. Count: 38, Neg. LLF: 92.08874162827827
Iteration: 6, Func. Count: 46, Neg. LLF: 90.91022251731346
Iteration: 7, Func. Count: 52, Neg. LLF: 90.87992998030421
Iteration: 8, Func. Count: 58, Neg. LLF: 90.8745379390965
Iteration: 9, Func. Count: 64, Neg. LLF: 90.87418557521883
Iteration: 10, Func. Count: 70, Neg. LLF: 90.87417738610655
Iteration: 11, Func. Count: 75, Neg. LLF: 90.8741773202355
Optimization terminated successfully (Exit mode 0)
Current function value: 90.87417738610655
Iterations: 11
Function evaluations: 75
Gradient evaluations: 11
Iteration: 1, Func. Count: 8, Neg. LLF: 40645168.63267071
Iteration: 2, Func. Count: 16, Neg. LLF: 4260269.5184638845
Iteration: 3, Func. Count: 24, Neg. LLF: 93.28452170545306
Iteration: 4, Func. Count: 32, Neg. LLF: 97.89155483532724
Iteration: 5, Func. Count: 40, Neg. LLF: 89.78091952125395
Iteration: 6, Func. Count: 47, Neg. LLF: 147.02262765050637
Iteration: 7, Func. Count: 55, Neg. LLF: 100.66828605546158
Iteration: 8, Func. Count: 64, Neg. LLF: 89.0737849122646
Iteration: 9, Func. Count: 71, Neg. LLF: 89.0595081292126
Iteration: 10, Func. Count: 78, Neg. LLF: 89.05738278563669
Iteration: 11, Func. Count: 85, Neg. LLF: 89.05720558156861
Iteration: 12, Func. Count: 92, Neg. LLF: 89.0571595418836
Iteration: 13, Func. Count: 98, Neg. LLF: 89.05715947440059
Optimization terminated successfully (Exit mode 0)
Current function value: 89.0571595418836
Iterations: 13
Function evaluations: 98
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 108.68225580786782
Iteration: 2, Func. Count: 18, Neg. LLF: 4311381.523364021
Iteration: 3, Func. Count: 27, Neg. LLF: 9330837.67701222
Iteration: 4, Func. Count: 36, Neg. LLF: 102.4538276972461
Iteration: 5, Func. Count: 45, Neg. LLF: 92.98778481999706
Iteration: 6, Func. Count: 54, Neg. LLF: 94.67431526032108
Iteration: 7, Func. Count: 63, Neg. LLF: 90.7311533601618
Iteration: 8, Func. Count: 72, Neg. LLF: 89.91298779432533
Iteration: 9, Func. Count: 81, Neg. LLF: 89.40536284397248
Iteration: 10, Func. Count: 89, Neg. LLF: 89.16644355990859
Iteration: 11, Func. Count: 97, Neg. LLF: 89.0739845275315
Iteration: 12, Func. Count: 105, Neg. LLF: 89.06585803088944
Iteration: 13, Func. Count: 113, Neg. LLF: 89.05734210804314
Iteration: 14, Func. Count: 121, Neg. LLF: 89.05723099559299
Iteration: 15, Func. Count: 129, Neg. LLF: 89.0571588589731
Iteration: 16, Func. Count: 136, Neg. LLF: 89.05715893976705
Optimization terminated successfully (Exit mode 0)
Current function value: 89.0571588589731
Iterations: 16
Function evaluations: 136
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 98.78009740532154
Iteration: 2, Func. Count: 22, Neg. LLF: 84038716.24409275
Iteration: 3, Func. Count: 32, Neg. LLF: 6073381.053553291
Iteration: 4, Func. Count: 42, Neg. LLF: 98.52296825930455
Iteration: 5, Func. Count: 52, Neg. LLF: 95.23985986442702
Iteration: 6, Func. Count: 62, Neg. LLF: 92.73711113284621
Iteration: 7, Func. Count: 72, Neg. LLF: 89.55514845946315
Iteration: 8, Func. Count: 81, Neg. LLF: 89.49199847176695
Iteration: 9, Func. Count: 91, Neg. LLF: 112.51679940102763
Iteration: 10, Func. Count: 102, Neg. LLF: 89.44948740008542
Iteration: 11, Func. Count: 112, Neg. LLF: 88.77331527459337
Iteration: 12, Func. Count: 121, Neg. LLF: 88.68573321480582
Iteration: 13, Func. Count: 130, Neg. LLF: 88.6854224398519
Iteration: 14, Func. Count: 140, Neg. LLF: 88.68230368978715
Iteration: 15, Func. Count: 149, Neg. LLF: 88.68202460758147
Iteration: 16, Func. Count: 158, Neg. LLF: 88.68200783190127
Iteration: 17, Func. Count: 167, Neg. LLF: 88.68200728547913
Optimization terminated successfully (Exit mode 0)
Current function value: 88.68200728547913
Iterations: 17
Function evaluations: 167
Gradient evaluations: 17
Iteration: 1, Func. Count: 7, Neg. LLF: 131.9302140010729
Iteration: 2, Func. Count: 16, Neg. LLF: 239255819.28563648
Iteration: 3, Func. Count: 23, Neg. LLF: 7425209.586911642
Iteration: 4, Func. Count: 30, Neg. LLF: 94.27182527149435
Iteration: 5, Func. Count: 36, Neg. LLF: 94.06484063772658
Iteration: 6, Func. Count: 42, Neg. LLF: 98.77943750176512
Iteration: 7, Func. Count: 50, Neg. LLF: 94.04481944316076
Iteration: 8, Func. Count: 56, Neg. LLF: 94.01595451916747
Iteration: 9, Func. Count: 62, Neg. LLF: 94.00777486429847
Iteration: 10, Func. Count: 68, Neg. LLF: 94.00631671258594
Iteration: 11, Func. Count: 74, Neg. LLF: 94.0062709544676
Iteration: 12, Func. Count: 80, Neg. LLF: 94.00626827903692
Iteration: 13, Func. Count: 85, Neg. LLF: 94.00626829806895
Optimization terminated successfully (Exit mode 0)
Current function value: 94.00626827903692
Iterations: 13
Function evaluations: 85
Gradient evaluations: 13
Iteration: 1, Func. Count: 8, Neg. LLF: 49312339.48611575
Iteration: 2, Func. Count: 16, Neg. LLF: 145.93630553288244
Iteration: 3, Func. Count: 25, Neg. LLF: 91.98333943665851
Iteration: 4, Func. Count: 33, Neg. LLF: 91.0767700881777
Iteration: 5, Func. Count: 40, Neg. LLF: 91.00618045586366
Iteration: 6, Func. Count: 47, Neg. LLF: 91.6720079856512
Iteration: 7, Func. Count: 55, Neg. LLF: 90.88560665583829
Iteration: 8, Func. Count: 62, Neg. LLF: 90.87579144779491
Iteration: 9, Func. Count: 69, Neg. LLF: 90.87586592137758
Iteration: 10, Func. Count: 77, Neg. LLF: 90.87418266627016
Iteration: 11, Func. Count: 84, Neg. LLF: 90.87417721294709
Iteration: 12, Func. Count: 90, Neg. LLF: 90.87417714707337
Optimization terminated successfully (Exit mode 0)
Current function value: 90.87417721294709
Iterations: 12
Function evaluations: 90
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 19866466.65792404
Iteration: 2, Func. Count: 18, Neg. LLF: 168.08972589160632
Iteration: 3, Func. Count: 28, Neg. LLF: 5982264.34629051
Iteration: 4, Func. Count: 38, Neg. LLF: 107.56844432076561
Iteration: 5, Func. Count: 47, Neg. LLF: 92.24773473256379
Iteration: 6, Func. Count: 56, Neg. LLF: 89.97890224054836
Iteration: 7, Func. Count: 64, Neg. LLF: 90.29160943882962
Iteration: 8, Func. Count: 73, Neg. LLF: 96.75041238540318
Iteration: 9, Func. Count: 82, Neg. LLF: 89.12753352741811
Iteration: 10, Func. Count: 90, Neg. LLF: 89.08909734812171
Iteration: 11, Func. Count: 98, Neg. LLF: 89.05129343912884
Iteration: 12, Func. Count: 106, Neg. LLF: 89.04902484786625
Iteration: 13, Func. Count: 114, Neg. LLF: 89.04731735419843
Iteration: 14, Func. Count: 122, Neg. LLF: 89.04709921446555
Iteration: 15, Func. Count: 130, Neg. LLF: 89.0470801688013
Iteration: 16, Func. Count: 137, Neg. LLF: 89.04708010116603
Optimization terminated successfully (Exit mode 0)
Current function value: 89.0470801688013
Iterations: 16
Function evaluations: 137
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 101.37903868666143
Iteration: 2, Func. Count: 20, Neg. LLF: 3666973.630709535
Iteration: 3, Func. Count: 30, Neg. LLF: 11259024.468472918
Iteration: 4, Func. Count: 40, Neg. LLF: 102.53492703998259
Iteration: 5, Func. Count: 50, Neg. LLF: 104.25270519020948
Iteration: 6, Func. Count: 60, Neg. LLF: 92.65512337448541
Iteration: 7, Func. Count: 70, Neg. LLF: 92.95216828932364
Iteration: 8, Func. Count: 80, Neg. LLF: 92.2267480087844
Iteration: 9, Func. Count: 90, Neg. LLF: 89.7461057977491
Iteration: 10, Func. Count: 99, Neg. LLF: 89.46225774610578
Iteration: 11, Func. Count: 108, Neg. LLF: 93.18518650399929
Iteration: 12, Func. Count: 120, Neg. LLF: 89.27891059338496
Iteration: 13, Func. Count: 129, Neg. LLF: 89.09782829684954
Iteration: 14, Func. Count: 138, Neg. LLF: 89.05709512807334
Iteration: 15, Func. Count: 147, Neg. LLF: 89.04816522049353
Iteration: 16, Func. Count: 156, Neg. LLF: 89.04728516803644
Iteration: 17, Func. Count: 165, Neg. LLF: 89.04709481498273
Iteration: 18, Func. Count: 174, Neg. LLF: 89.04708131275403
Iteration: 19, Func. Count: 183, Neg. LLF: 89.04707964172684
Iteration: 20, Func. Count: 191, Neg. LLF: 89.04707973547708
Optimization terminated successfully (Exit mode 0)
Current function value: 89.04707964172684
Iterations: 20
Function evaluations: 191
Gradient evaluations: 20
Iteration: 1, Func. Count: 11, Neg. LLF: 98.99943173185366
Iteration: 2, Func. Count: 25, Neg. LLF: 83593998.70092957
Iteration: 3, Func. Count: 36, Neg. LLF: 6323803.570351987
Iteration: 4, Func. Count: 47, Neg. LLF: 91.987064116905
Iteration: 5, Func. Count: 58, Neg. LLF: 93.02823989056012
Iteration: 6, Func. Count: 69, Neg. LLF: 98.3361269501444
Iteration: 7, Func. Count: 81, Neg. LLF: 89.57126608327565
Iteration: 8, Func. Count: 91, Neg. LLF: 93.25392332252589
Iteration: 9, Func. Count: 102, Neg. LLF: 94.59725791641915
Iteration: 10, Func. Count: 113, Neg. LLF: 88.69264338184743
Iteration: 11, Func. Count: 123, Neg. LLF: 88.66439141464964
Iteration: 12, Func. Count: 133, Neg. LLF: 88.66565241200057
Iteration: 13, Func. Count: 144, Neg. LLF: 88.6636654318903
Iteration: 14, Func. Count: 154, Neg. LLF: 88.66366482116024
Optimization terminated successfully (Exit mode 0)
Current function value: 88.66366482116024
Iterations: 14
Function evaluations: 154
Gradient evaluations: 14
Iteration: 1, Func. Count: 8, Neg. LLF: 128.71027343736506
Iteration: 2, Func. Count: 18, Neg. LLF: 170909869.87431717
Iteration: 3, Func. Count: 26, Neg. LLF: 2784905.6098150425
Iteration: 4, Func. Count: 34, Neg. LLF: 4498766.30085681
Iteration: 5, Func. Count: 42, Neg. LLF: 1208482.1956229277
Iteration: 6, Func. Count: 50, Neg. LLF: 95.59333863722024
Iteration: 7, Func. Count: 58, Neg. LLF: 92.73906182071394
Iteration: 8, Func. Count: 65, Neg. LLF: 92.60507385734584
Iteration: 9, Func. Count: 72, Neg. LLF: 92.48993007550258
Iteration: 10, Func. Count: 79, Neg. LLF: 92.38598946664632
Iteration: 11, Func. Count: 86, Neg. LLF: 92.35894110748677
Iteration: 12, Func. Count: 93, Neg. LLF: 92.3561480591151
Iteration: 13, Func. Count: 100, Neg. LLF: 92.3560713522491
Iteration: 14, Func. Count: 107, Neg. LLF: 92.35607043613632
Optimization terminated successfully (Exit mode 0)
Current function value: 92.35607043613632
Iterations: 14
Function evaluations: 107
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 40960148.055724144
Iteration: 2, Func. Count: 18, Neg. LLF: 142.9416973029168
Iteration: 3, Func. Count: 28, Neg. LLF: 91.96909625484221
Iteration: 4, Func. Count: 37, Neg. LLF: 91.3975402297132
Iteration: 5, Func. Count: 46, Neg. LLF: 92.07698843407172
Iteration: 6, Func. Count: 55, Neg. LLF: 90.9422516512721
Iteration: 7, Func. Count: 63, Neg. LLF: 90.87859192420214
Iteration: 8, Func. Count: 71, Neg. LLF: 90.8754302612957
Iteration: 9, Func. Count: 79, Neg. LLF: 90.87424009065467
Iteration: 10, Func. Count: 87, Neg. LLF: 90.87417898912712
Iteration: 11, Func. Count: 95, Neg. LLF: 90.87417721498758
Iteration: 12, Func. Count: 102, Neg. LLF: 90.87417714907588
Optimization terminated successfully (Exit mode 0)
Current function value: 90.87417721498758
Iterations: 12
Function evaluations: 102
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 206.52445508060723
Iteration: 2, Func. Count: 20, Neg. LLF: 5608870.917455642
Iteration: 3, Func. Count: 30, Neg. LLF: 92.67662686558783
Iteration: 4, Func. Count: 40, Neg. LLF: 386.92815985969247
Iteration: 5, Func. Count: 50, Neg. LLF: 106.85565861880869
Iteration: 6, Func. Count: 60, Neg. LLF: 89.21352135574115
Iteration: 7, Func. Count: 69, Neg. LLF: 89.45701950205893
Iteration: 8, Func. Count: 79, Neg. LLF: 89.06533838356378
Iteration: 9, Func. Count: 88, Neg. LLF: 89.24288522450078
Iteration: 10, Func. Count: 98, Neg. LLF: 89.09914478626932
Iteration: 11, Func. Count: 108, Neg. LLF: 89.04721790584912
Iteration: 12, Func. Count: 117, Neg. LLF: 89.0470977871207
Iteration: 13, Func. Count: 126, Neg. LLF: 89.04707973640207
Iteration: 14, Func. Count: 134, Neg. LLF: 89.04707966874793
Optimization terminated successfully (Exit mode 0)
Current function value: 89.04707973640207
Iterations: 14
Function evaluations: 134
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 98.37598757438981
Iteration: 2, Func. Count: 24, Neg. LLF: 88320297.01292953
Iteration: 3, Func. Count: 35, Neg. LLF: 5669550.4657208705
Iteration: 4, Func. Count: 46, Neg. LLF: 98.33878380722278
Iteration: 5, Func. Count: 57, Neg. LLF: 94.5703259400802
Iteration: 6, Func. Count: 68, Neg. LLF: 93.28713432308108
Iteration: 7, Func. Count: 79, Neg. LLF: 90.65112485785905
Iteration: 8, Func. Count: 90, Neg. LLF: 90.37549168491668
Iteration: 9, Func. Count: 101, Neg. LLF: 89.94972768639619
Iteration: 10, Func. Count: 111, Neg. LLF: 92.76408978304319
Iteration: 11, Func. Count: 123, Neg. LLF: 92.45896178192308
Iteration: 12, Func. Count: 135, Neg. LLF: 89.78152315778529
Iteration: 13, Func. Count: 146, Neg. LLF: 89.46694365011834
Iteration: 14, Func. Count: 156, Neg. LLF: 89.14639543681298
Iteration: 15, Func. Count: 166, Neg. LLF: 89.07474134184136
Iteration: 16, Func. Count: 176, Neg. LLF: 89.04889079430394
Iteration: 17, Func. Count: 186, Neg. LLF: 89.04766637060627
Iteration: 18, Func. Count: 196, Neg. LLF: 89.04712154162017
Iteration: 19, Func. Count: 206, Neg. LLF: 89.04708066672646
Iteration: 20, Func. Count: 216, Neg. LLF: 89.04707969736533
Optimization terminated successfully (Exit mode 0)
Current function value: 89.04707969736533
Iterations: 20
Function evaluations: 216
Gradient evaluations: 20
Iteration: 1, Func. Count: 12, Neg. LLF: 100.52055234766446
Iteration: 2, Func. Count: 27, Neg. LLF: 83223277.2810341
Iteration: 3, Func. Count: 39, Neg. LLF: 6332762.469461828
Iteration: 4, Func. Count: 51, Neg. LLF: 4649981.798147683
Iteration: 5, Func. Count: 63, Neg. LLF: 106.68356167318197
Iteration: 6, Func. Count: 75, Neg. LLF: 96.46753059220278
Iteration: 7, Func. Count: 87, Neg. LLF: 95.34063147915946
Iteration: 8, Func. Count: 99, Neg. LLF: 97.08686679275009
Iteration: 9, Func. Count: 111, Neg. LLF: 90.68155866202541
Iteration: 10, Func. Count: 123, Neg. LLF: 89.26523149568598
Iteration: 11, Func. Count: 134, Neg. LLF: 89.12661769325317
Iteration: 12, Func. Count: 145, Neg. LLF: 89.69855480614521
Iteration: 13, Func. Count: 157, Neg. LLF: 88.79364961917307
Iteration: 14, Func. Count: 168, Neg. LLF: 88.74256511068958
Iteration: 15, Func. Count: 179, Neg. LLF: 88.70733410639716
Iteration: 16, Func. Count: 190, Neg. LLF: 88.66505298784666
Iteration: 17, Func. Count: 201, Neg. LLF: 88.66417906145722
Iteration: 18, Func. Count: 212, Neg. LLF: 88.66370561610002
Iteration: 19, Func. Count: 223, Neg. LLF: 88.66367721084585
Iteration: 20, Func. Count: 234, Neg. LLF: 88.6636670368137
Iteration: 21, Func. Count: 245, Neg. LLF: 88.66366525018682
Iteration: 22, Func. Count: 255, Neg. LLF: 88.66366518736614
Optimization terminated successfully (Exit mode 0)
Current function value: 88.66366525018682
Iterations: 22
Function evaluations: 255
Gradient evaluations: 22
Iteration: 1, Func. Count: 5, Neg. LLF: 127.13487932461908
Iteration: 2, Func. Count: 12, Neg. LLF: 128.90359802386752
Iteration: 3, Func. Count: 17, Neg. LLF: 96.69847591492149
Iteration: 4, Func. Count: 21, Neg. LLF: 96.75459965920392
Iteration: 5, Func. Count: 26, Neg. LLF: 96.69832191187392
Iteration: 6, Func. Count: 31, Neg. LLF: 96.67399289583189
Iteration: 7, Func. Count: 35, Neg. LLF: 96.67393151086654
Iteration: 8, Func. Count: 39, Neg. LLF: 96.67390963427874
Iteration: 9, Func. Count: 43, Neg. LLF: 96.67390665292316
Iteration: 10, Func. Count: 46, Neg. LLF: 96.67390665286679
Optimization terminated successfully (Exit mode 0)
Current function value: 96.67390665292316
Iterations: 10
Function evaluations: 46
Gradient evaluations: 10
Iteration: 1, Func. Count: 6, Neg. LLF: 142.28168075602645
Iteration: 2, Func. Count: 16, Neg. LLF: 2866.0941444410632
Iteration: 3, Func. Count: 23, Neg. LLF: 161.4264478108637
Iteration: 4, Func. Count: 29, Neg. LLF: 91.84978294757532
Iteration: 5, Func. Count: 34, Neg. LLF: 91.84926179893695
Iteration: 6, Func. Count: 39, Neg. LLF: 91.84923803215483
Iteration: 7, Func. Count: 44, Neg. LLF: 91.84923522057201
Iteration: 8, Func. Count: 48, Neg. LLF: 91.8492352143334
Optimization terminated successfully (Exit mode 0)
Current function value: 91.84923522057201
Iterations: 8
Function evaluations: 48
Gradient evaluations: 8
Iteration: 1, Func. Count: 7, Neg. LLF: 248.28586911045718
Iteration: 2, Func. Count: 15, Neg. LLF: 744.7691406824607
Iteration: 3, Func. Count: 22, Neg. LLF: 92.01373054185201
Iteration: 4, Func. Count: 28, Neg. LLF: 93.6702510027515
Iteration: 5, Func. Count: 35, Neg. LLF: 91.93719501299579
Iteration: 6, Func. Count: 42, Neg. LLF: 91.85050081797766
Iteration: 7, Func. Count: 48, Neg. LLF: 91.84923671569548
Iteration: 8, Func. Count: 54, Neg. LLF: 91.84923536906503
Iteration: 9, Func. Count: 59, Neg. LLF: 91.84923540878079
Optimization terminated successfully (Exit mode 0)
Current function value: 91.84923536906503
Iterations: 9
Function evaluations: 59
Gradient evaluations: 9
Iteration: 1, Func. Count: 8, Neg. LLF: 124.90269711033395
Iteration: 2, Func. Count: 17, Neg. LLF: 1231.1657364153189
Iteration: 3, Func. Count: 25, Neg. LLF: 98.51369807389237
Iteration: 4, Func. Count: 33, Neg. LLF: 96.1573795848988
Iteration: 5, Func. Count: 41, Neg. LLF: 103.06506241892173
Iteration: 6, Func. Count: 49, Neg. LLF: 92.46048540023398
Iteration: 7, Func. Count: 56, Neg. LLF: 92.51189778296606
Iteration: 8, Func. Count: 64, Neg. LLF: 92.04606895475725
Iteration: 9, Func. Count: 71, Neg. LLF: 92.16232259664564
Iteration: 10, Func. Count: 79, Neg. LLF: 91.85650191959111
Iteration: 11, Func. Count: 86, Neg. LLF: 91.85021349518455
Iteration: 12, Func. Count: 93, Neg. LLF: 91.8492595136678
Iteration: 13, Func. Count: 100, Neg. LLF: 91.84923566554906
Iteration: 14, Func. Count: 107, Neg. LLF: 91.84923514887588
Optimization terminated successfully (Exit mode 0)
Current function value: 91.84923514887588
Iterations: 14
Function evaluations: 107
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 157.10434521153323
Iteration: 2, Func. Count: 20, Neg. LLF: 104.90581696807791
Iteration: 3, Func. Count: 29, Neg. LLF: 93.49772633282706
Iteration: 4, Func. Count: 37, Neg. LLF: 96.05217456167995
Iteration: 5, Func. Count: 46, Neg. LLF: 98.38876107662657
Iteration: 6, Func. Count: 56, Neg. LLF: 93.03811917714847
Iteration: 7, Func. Count: 65, Neg. LLF: 91.9275895123124
Iteration: 8, Func. Count: 73, Neg. LLF: 92.24029185193046
Iteration: 9, Func. Count: 82, Neg. LLF: 91.84933671832168
Iteration: 10, Func. Count: 90, Neg. LLF: 91.84924506264295
Iteration: 11, Func. Count: 98, Neg. LLF: 91.84923523918333
Iteration: 12, Func. Count: 105, Neg. LLF: 91.84923535971888
Optimization terminated successfully (Exit mode 0)
Current function value: 91.84923523918333
Iterations: 12
Function evaluations: 105
Gradient evaluations: 12
Iteration: 1, Func. Count: 6, Neg. LLF: 118.9806042266195
Iteration: 2, Func. Count: 14, Neg. LLF: 112.06608355502729
Iteration: 3, Func. Count: 20, Neg. LLF: 96.72247064598133
Iteration: 4, Func. Count: 25, Neg. LLF: 96.80789208302218
Iteration: 5, Func. Count: 31, Neg. LLF: 96.6101233786382
Iteration: 6, Func. Count: 36, Neg. LLF: 96.59818366697003
Iteration: 7, Func. Count: 41, Neg. LLF: 96.59731428150421
Iteration: 8, Func. Count: 46, Neg. LLF: 96.59721485685067
Iteration: 9, Func. Count: 51, Neg. LLF: 96.5971966273323
Iteration: 10, Func. Count: 56, Neg. LLF: 96.59719518796523
Iteration: 11, Func. Count: 60, Neg. LLF: 96.59719516502564
Optimization terminated successfully (Exit mode 0)
Current function value: 96.59719518796523
Iterations: 11
Function evaluations: 60
Gradient evaluations: 11
Iteration: 1, Func. Count: 7, Neg. LLF: 150.1448587430197
Iteration: 2, Func. Count: 18, Neg. LLF: 144094.88956472004
Iteration: 3, Func. Count: 26, Neg. LLF: 163.15170347815825
Iteration: 4, Func. Count: 34, Neg. LLF: 92.82449006758726
Iteration: 5, Func. Count: 41, Neg. LLF: 91.56279438563345
Iteration: 6, Func. Count: 47, Neg. LLF: 91.5617146316122
Iteration: 7, Func. Count: 53, Neg. LLF: 91.56184409675335
Iteration: 8, Func. Count: 60, Neg. LLF: 91.56145824154189
Iteration: 9, Func. Count: 66, Neg. LLF: 91.5614563500438
Iteration: 10, Func. Count: 71, Neg. LLF: 91.56145628892409
Optimization terminated successfully (Exit mode 0)
Current function value: 91.5614563500438
Iterations: 10
Function evaluations: 71
Gradient evaluations: 10
Iteration: 1, Func. Count: 8, Neg. LLF: 137.31946535246743
Iteration: 2, Func. Count: 17, Neg. LLF: 102.68013081494935
Iteration: 3, Func. Count: 25, Neg. LLF: 95.45272796637427
Iteration: 4, Func. Count: 33, Neg. LLF: 92.87964914717637
Iteration: 5, Func. Count: 41, Neg. LLF: 91.93382422985783
Iteration: 6, Func. Count: 48, Neg. LLF: 95.16605018382295
Iteration: 7, Func. Count: 57, Neg. LLF: 97.00708426393034
Iteration: 8, Func. Count: 65, Neg. LLF: 91.57324506607154
Iteration: 9, Func. Count: 72, Neg. LLF: 91.56256038433327
Iteration: 10, Func. Count: 79, Neg. LLF: 91.56150953215294
Iteration: 11, Func. Count: 86, Neg. LLF: 91.5614600940816
Iteration: 12, Func. Count: 93, Neg. LLF: 91.56145655065113
Iteration: 13, Func. Count: 99, Neg. LLF: 91.56145653735376
Optimization terminated successfully (Exit mode 0)
Current function value: 91.56145655065113
Iterations: 13
Function evaluations: 99
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 136.966796027824
Iteration: 2, Func. Count: 19, Neg. LLF: 453.7899003086552
Iteration: 3, Func. Count: 28, Neg. LLF: 92.78176116532283
Iteration: 4, Func. Count: 36, Neg. LLF: 94.56905620098631
Iteration: 5, Func. Count: 45, Neg. LLF: 92.83479247102835
Iteration: 6, Func. Count: 54, Neg. LLF: 104.25837457269373
Iteration: 7, Func. Count: 63, Neg. LLF: 91.59497065382618
Iteration: 8, Func. Count: 71, Neg. LLF: 91.63482013173399
Iteration: 9, Func. Count: 80, Neg. LLF: 91.56164968769322
Iteration: 10, Func. Count: 88, Neg. LLF: 91.56145853472593
Iteration: 11, Func. Count: 96, Neg. LLF: 91.56145651594025
Iteration: 12, Func. Count: 103, Neg. LLF: 91.56145653362981
Optimization terminated successfully (Exit mode 0)
Current function value: 91.56145651594025
Iterations: 12
Function evaluations: 103
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 163.62498393803398
Iteration: 2, Func. Count: 21, Neg. LLF: 144.9928806053463
Iteration: 3, Func. Count: 31, Neg. LLF: 112.16142728410163
Iteration: 4, Func. Count: 41, Neg. LLF: 115.67736198681726
Iteration: 5, Func. Count: 51, Neg. LLF: 100.00974663443478
Iteration: 6, Func. Count: 61, Neg. LLF: 107.4102223509619
Iteration: 7, Func. Count: 71, Neg. LLF: 96.85477739750264
Iteration: 8, Func. Count: 81, Neg. LLF: 93.39623283978176
Iteration: 9, Func. Count: 91, Neg. LLF: 97.4627170945097
Iteration: 10, Func. Count: 101, Neg. LLF: 92.59422070005137
Iteration: 11, Func. Count: 110, Neg. LLF: 95.8801628177795
Iteration: 12, Func. Count: 120, Neg. LLF: 91.6164429792728
Iteration: 13, Func. Count: 129, Neg. LLF: 91.58029755855628
Iteration: 14, Func. Count: 138, Neg. LLF: 91.56378413306035
Iteration: 15, Func. Count: 147, Neg. LLF: 91.56189521481309
Iteration: 16, Func. Count: 156, Neg. LLF: 91.56147950988179
Iteration: 17, Func. Count: 165, Neg. LLF: 91.56146727008553
Iteration: 18, Func. Count: 174, Neg. LLF: 91.56145636150833
Iteration: 19, Func. Count: 182, Neg. LLF: 91.56145640596081
Optimization terminated successfully (Exit mode 0)
Current function value: 91.56145636150833
Iterations: 19
Function evaluations: 182
Gradient evaluations: 19
Iteration: 1, Func. Count: 7, Neg. LLF: 137.82352436008082
Iteration: 2, Func. Count: 15, Neg. LLF: 225.95437110465465
Iteration: 3, Func. Count: 22, Neg. LLF: 9065784.105884435
Iteration: 4, Func. Count: 29, Neg. LLF: 94.81180463914106
Iteration: 5, Func. Count: 36, Neg. LLF: 107.94083111885901
Iteration: 6, Func. Count: 43, Neg. LLF: 93.82422228612563
Iteration: 7, Func. Count: 49, Neg. LLF: 93.8649588951919
Iteration: 8, Func. Count: 56, Neg. LLF: 93.84779324045752
Iteration: 9, Func. Count: 63, Neg. LLF: 93.7856936821759
Iteration: 10, Func. Count: 69, Neg. LLF: 93.78558053968723
Iteration: 11, Func. Count: 75, Neg. LLF: 93.78550317253298
Iteration: 12, Func. Count: 81, Neg. LLF: 93.78546222564952
Iteration: 13, Func. Count: 87, Neg. LLF: 93.78545566830059
Iteration: 14, Func. Count: 92, Neg. LLF: 93.78545566830553
Optimization terminated successfully (Exit mode 0)
Current function value: 93.78545566830059
Iterations: 14
Function evaluations: 92
Gradient evaluations: 14
Iteration: 1, Func. Count: 8, Neg. LLF: 175.32367960629148
Iteration: 2, Func. Count: 19, Neg. LLF: 177462560.22930256
Iteration: 3, Func. Count: 28, Neg. LLF: 152.5408065538011
Iteration: 4, Func. Count: 36, Neg. LLF: 91.8595929571969
Iteration: 5, Func. Count: 44, Neg. LLF: 90.37382664748209
Iteration: 6, Func. Count: 51, Neg. LLF: 90.295451241197
Iteration: 7, Func. Count: 58, Neg. LLF: 90.23913109798998
Iteration: 8, Func. Count: 65, Neg. LLF: 90.24060521544786
Iteration: 9, Func. Count: 73, Neg. LLF: 90.25426447581451
Iteration: 10, Func. Count: 81, Neg. LLF: 90.23022408658171
Iteration: 11, Func. Count: 88, Neg. LLF: 90.23022364293547
Optimization terminated successfully (Exit mode 0)
Current function value: 90.23022364293547
Iterations: 11
Function evaluations: 88
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 143.07795819114045
Iteration: 2, Func. Count: 21, Neg. LLF: 104212712.3021796
Iteration: 3, Func. Count: 31, Neg. LLF: 7474759.308294541
Iteration: 4, Func. Count: 40, Neg. LLF: 91.99389844964591
Iteration: 5, Func. Count: 49, Neg. LLF: 91.40597006765574
Iteration: 6, Func. Count: 58, Neg. LLF: 90.20155637373134
Iteration: 7, Func. Count: 67, Neg. LLF: 89.50416061948587
Iteration: 8, Func. Count: 75, Neg. LLF: 89.341798100086
Iteration: 9, Func. Count: 83, Neg. LLF: 91.808192695091
Iteration: 10, Func. Count: 94, Neg. LLF: 91.72581481755647
Iteration: 11, Func. Count: 103, Neg. LLF: 89.04652009656915
Iteration: 12, Func. Count: 111, Neg. LLF: 89.0440457261464
Iteration: 13, Func. Count: 119, Neg. LLF: 89.04380972963082
Iteration: 14, Func. Count: 127, Neg. LLF: 89.04379519700161
Iteration: 15, Func. Count: 135, Neg. LLF: 89.04378941924803
Iteration: 16, Func. Count: 143, Neg. LLF: 89.04378565027933
Iteration: 17, Func. Count: 151, Neg. LLF: 89.043784671356
Optimization terminated successfully (Exit mode 0)
Current function value: 89.043784671356
Iterations: 17
Function evaluations: 151
Gradient evaluations: 17
Iteration: 1, Func. Count: 10, Neg. LLF: 11044.504864940249
Iteration: 2, Func. Count: 20, Neg. LLF: 148.1317183765689
Iteration: 3, Func. Count: 30, Neg. LLF: 106.3700760452524
Iteration: 4, Func. Count: 40, Neg. LLF: 103.30590381960253
Iteration: 5, Func. Count: 50, Neg. LLF: 91.76885197403135
Iteration: 6, Func. Count: 60, Neg. LLF: 90.28706073066957
Iteration: 7, Func. Count: 70, Neg. LLF: 92.34501990259385
Iteration: 8, Func. Count: 80, Neg. LLF: 90.32566450530241
Iteration: 9, Func. Count: 90, Neg. LLF: 90.06693734595584
Iteration: 10, Func. Count: 100, Neg. LLF: 89.84410409854269
Iteration: 11, Func. Count: 109, Neg. LLF: 89.84285162437547
Iteration: 12, Func. Count: 118, Neg. LLF: 89.84219486976956
Iteration: 13, Func. Count: 127, Neg. LLF: 89.8420642010934
Iteration: 14, Func. Count: 136, Neg. LLF: 89.8420548526044
Iteration: 15, Func. Count: 145, Neg. LLF: 89.84205447274255
Optimization terminated successfully (Exit mode 0)
Current function value: 89.84205447274255
Iterations: 15
Function evaluations: 145
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 119.10888745840919
Iteration: 2, Func. Count: 22, Neg. LLF: 4522211.845333726
Iteration: 3, Func. Count: 33, Neg. LLF: 9111928.611094335
Iteration: 4, Func. Count: 44, Neg. LLF: 98.01205626944987
Iteration: 5, Func. Count: 55, Neg. LLF: 94.11257634086172
Iteration: 6, Func. Count: 66, Neg. LLF: 92.07546316802198
Iteration: 7, Func. Count: 77, Neg. LLF: 91.26657217440228
Iteration: 8, Func. Count: 88, Neg. LLF: 90.301055980524
Iteration: 9, Func. Count: 99, Neg. LLF: 89.80062304280943
Iteration: 10, Func. Count: 110, Neg. LLF: 90.93526248500505
Iteration: 11, Func. Count: 121, Neg. LLF: 88.87259467225992
Iteration: 12, Func. Count: 131, Neg. LLF: 95.18366633444057
Iteration: 13, Func. Count: 142, Neg. LLF: 88.6740231981269
Iteration: 14, Func. Count: 152, Neg. LLF: 88.9488112497695
Iteration: 15, Func. Count: 163, Neg. LLF: 88.6041348201416
Iteration: 16, Func. Count: 173, Neg. LLF: 88.59776562718575
Iteration: 17, Func. Count: 183, Neg. LLF: 88.59763878369687
Iteration: 18, Func. Count: 193, Neg. LLF: 88.5976180955357
Iteration: 19, Func. Count: 203, Neg. LLF: 88.59761529287938
Iteration: 20, Func. Count: 212, Neg. LLF: 88.59761522658606
Optimization terminated successfully (Exit mode 0)
Current function value: 88.59761529287938
Iterations: 20
Function evaluations: 212
Gradient evaluations: 20
Iteration: 1, Func. Count: 8, Neg. LLF: 129.04804082753554
Iteration: 2, Func. Count: 17, Neg. LLF: 420.64151418306363
Iteration: 3, Func. Count: 25, Neg. LLF: 8730200.728882816
Iteration: 4, Func. Count: 33, Neg. LLF: 95.0808873836949
Iteration: 5, Func. Count: 41, Neg. LLF: 96.98967816012028
Iteration: 6, Func. Count: 49, Neg. LLF: 93.8299456307996
Iteration: 7, Func. Count: 56, Neg. LLF: 93.94784810079801
Iteration: 8, Func. Count: 64, Neg. LLF: 94.21041002279674
Iteration: 9, Func. Count: 72, Neg. LLF: 93.78553424107682
Iteration: 10, Func. Count: 79, Neg. LLF: 93.78547853647484
Iteration: 11, Func. Count: 86, Neg. LLF: 93.78546773552925
Iteration: 12, Func. Count: 93, Neg. LLF: 93.78546261869575
Iteration: 13, Func. Count: 100, Neg. LLF: 93.78545747848246
Iteration: 14, Func. Count: 107, Neg. LLF: 93.78545547284499
Iteration: 15, Func. Count: 113, Neg. LLF: 93.78545552072191
Optimization terminated successfully (Exit mode 0)
Current function value: 93.78545547284499
Iterations: 15
Function evaluations: 113
Gradient evaluations: 15
Iteration: 1, Func. Count: 9, Neg. LLF: 161.7985172133795
Iteration: 2, Func. Count: 22, Neg. LLF: 237293343.02037147
Iteration: 3, Func. Count: 32, Neg. LLF: 228.82839863934512
Iteration: 4, Func. Count: 41, Neg. LLF: 90.64386505791362
Iteration: 5, Func. Count: 49, Neg. LLF: 90.69082974439992
Iteration: 6, Func. Count: 58, Neg. LLF: 90.7577988608479
Iteration: 7, Func. Count: 67, Neg. LLF: 90.36728475361332
Iteration: 8, Func. Count: 76, Neg. LLF: 90.23142473684392
Iteration: 9, Func. Count: 84, Neg. LLF: 90.23032377162106
Iteration: 10, Func. Count: 92, Neg. LLF: 90.23023632054104
Iteration: 11, Func. Count: 100, Neg. LLF: 90.23022378141752
Iteration: 12, Func. Count: 107, Neg. LLF: 90.23022374883179
Optimization terminated successfully (Exit mode 0)
Current function value: 90.23022378141752
Iterations: 12
Function evaluations: 107
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 147595674.92558846
Iteration: 2, Func. Count: 21, Neg. LLF: 5991226.325529453
Iteration: 3, Func. Count: 31, Neg. LLF: 94.94495640961287
Iteration: 4, Func. Count: 41, Neg. LLF: 91.55838535955134
Iteration: 5, Func. Count: 51, Neg. LLF: 93.32793167962517
Iteration: 6, Func. Count: 61, Neg. LLF: 90.7089134541899
Iteration: 7, Func. Count: 71, Neg. LLF: 90.19370045089752
Iteration: 8, Func. Count: 81, Neg. LLF: 94.04252220951261
Iteration: 9, Func. Count: 91, Neg. LLF: 89.94817950313949
Iteration: 10, Func. Count: 101, Neg. LLF: 89.45814370253568
Iteration: 11, Func. Count: 110, Neg. LLF: 89.58649351577255
Iteration: 12, Func. Count: 120, Neg. LLF: 95.81551849292318
Iteration: 13, Func. Count: 130, Neg. LLF: 91.95740454675602
Iteration: 14, Func. Count: 141, Neg. LLF: 89.08699939010114
Iteration: 15, Func. Count: 150, Neg. LLF: 89.08489645406047
Iteration: 16, Func. Count: 160, Neg. LLF: 89.10268934921068
Iteration: 17, Func. Count: 170, Neg. LLF: 89.04269291167293
Iteration: 18, Func. Count: 179, Neg. LLF: 89.04252451390913
Iteration: 19, Func. Count: 188, Neg. LLF: 89.04247894966976
Iteration: 20, Func. Count: 197, Neg. LLF: 89.0424723990269
Iteration: 21, Func. Count: 206, Neg. LLF: 89.04247122107195
Iteration: 22, Func. Count: 214, Neg. LLF: 89.04247115288132
Optimization terminated successfully (Exit mode 0)
Current function value: 89.04247122107195
Iterations: 22
Function evaluations: 214
Gradient evaluations: 22
Iteration: 1, Func. Count: 11, Neg. LLF: 1104.148355543054
Iteration: 2, Func. Count: 22, Neg. LLF: 145.0470679432261
Iteration: 3, Func. Count: 33, Neg. LLF: 119.85024193225951
Iteration: 4, Func. Count: 44, Neg. LLF: 101.14637444059852
Iteration: 5, Func. Count: 55, Neg. LLF: 91.52920835717956
Iteration: 6, Func. Count: 66, Neg. LLF: 90.91369972285145
Iteration: 7, Func. Count: 77, Neg. LLF: 90.51476661537889
Iteration: 8, Func. Count: 88, Neg. LLF: 89.90397214404888
Iteration: 9, Func. Count: 98, Neg. LLF: 90.43239497850567
Iteration: 10, Func. Count: 109, Neg. LLF: 89.90872892312322
Iteration: 11, Func. Count: 120, Neg. LLF: 89.85429010130369
Iteration: 12, Func. Count: 131, Neg. LLF: 89.84228704373643
Iteration: 13, Func. Count: 141, Neg. LLF: 89.84208221735402
Iteration: 14, Func. Count: 151, Neg. LLF: 89.84205730612227
Iteration: 15, Func. Count: 161, Neg. LLF: 89.84205453322137
Iteration: 16, Func. Count: 170, Neg. LLF: 89.84205448036668
Optimization terminated successfully (Exit mode 0)
Current function value: 89.84205453322137
Iterations: 16
Function evaluations: 170
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 129.99319820928622
Iteration: 2, Func. Count: 24, Neg. LLF: 408.2601639638104
Iteration: 3, Func. Count: 36, Neg. LLF: 9087296.412673118
Iteration: 4, Func. Count: 48, Neg. LLF: 96.33578554296025
Iteration: 5, Func. Count: 60, Neg. LLF: 93.41794242308167
Iteration: 6, Func. Count: 72, Neg. LLF: 93.87374148229875
Iteration: 7, Func. Count: 84, Neg. LLF: 90.25891672488775
Iteration: 8, Func. Count: 96, Neg. LLF: 89.50384463235542
Iteration: 9, Func. Count: 108, Neg. LLF: 89.34014896891402
Iteration: 10, Func. Count: 120, Neg. LLF: 88.79001357205195
Iteration: 11, Func. Count: 131, Neg. LLF: 88.6471608300959
Iteration: 12, Func. Count: 142, Neg. LLF: 88.62237172468511
Iteration: 13, Func. Count: 153, Neg. LLF: 88.60516065010691
Iteration: 14, Func. Count: 164, Neg. LLF: 88.59920262427441
Iteration: 15, Func. Count: 175, Neg. LLF: 88.5981922182575
Iteration: 16, Func. Count: 186, Neg. LLF: 88.59768925762425
Iteration: 17, Func. Count: 197, Neg. LLF: 88.59761751586944
Iteration: 18, Func. Count: 208, Neg. LLF: 88.59761522357093
Iteration: 19, Func. Count: 218, Neg. LLF: 88.59761515724492
Optimization terminated successfully (Exit mode 0)
Current function value: 88.59761522357093
Iterations: 19
Function evaluations: 218
Gradient evaluations: 19
Iteration: 1, Func. Count: 9, Neg. LLF: 124.88056022040738
Iteration: 2, Func. Count: 19, Neg. LLF: 1665.3935035437096
Iteration: 3, Func. Count: 28, Neg. LLF: 8862279.825462423
Iteration: 4, Func. Count: 37, Neg. LLF: 4412134.269537434
Iteration: 5, Func. Count: 46, Neg. LLF: 93.74582256534808
Iteration: 6, Func. Count: 55, Neg. LLF: 4093.843809068108
Iteration: 7, Func. Count: 64, Neg. LLF: 92.75730016342412
Iteration: 8, Func. Count: 73, Neg. LLF: 93.41553532370202
Iteration: 9, Func. Count: 82, Neg. LLF: 92.46002833818756
Iteration: 10, Func. Count: 90, Neg. LLF: 92.34076234694832
Iteration: 11, Func. Count: 98, Neg. LLF: 92.30678305592367
Iteration: 12, Func. Count: 106, Neg. LLF: 92.29450985581713
Iteration: 13, Func. Count: 114, Neg. LLF: 92.29223352735227
Iteration: 14, Func. Count: 122, Neg. LLF: 92.29220364070223
Iteration: 15, Func. Count: 129, Neg. LLF: 92.29220364065375
Optimization terminated successfully (Exit mode 0)
Current function value: 92.29220364070223
Iterations: 15
Function evaluations: 129
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 150.41838209470933
Iteration: 2, Func. Count: 24, Neg. LLF: 205806145.07753864
Iteration: 3, Func. Count: 35, Neg. LLF: 461.17397814174035
Iteration: 4, Func. Count: 45, Neg. LLF: 90.52268754067397
Iteration: 5, Func. Count: 54, Neg. LLF: 90.64063565751789
Iteration: 6, Func. Count: 64, Neg. LLF: 90.91455477038491
Iteration: 7, Func. Count: 75, Neg. LLF: 90.23647146622662
Iteration: 8, Func. Count: 84, Neg. LLF: 90.23066491222801
Iteration: 9, Func. Count: 93, Neg. LLF: 90.23028967185904
Iteration: 10, Func. Count: 102, Neg. LLF: 90.23022541403542
Iteration: 11, Func. Count: 111, Neg. LLF: 90.23022367105013
Iteration: 12, Func. Count: 119, Neg. LLF: 90.23022363858027
Optimization terminated successfully (Exit mode 0)
Current function value: 90.23022367105013
Iterations: 12
Function evaluations: 119
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 146316957.0339543
Iteration: 2, Func. Count: 23, Neg. LLF: 6022608.41434337
Iteration: 3, Func. Count: 34, Neg. LLF: 95.02567917932157
Iteration: 4, Func. Count: 45, Neg. LLF: 91.52921051053153
Iteration: 5, Func. Count: 56, Neg. LLF: 93.78315221368274
Iteration: 6, Func. Count: 67, Neg. LLF: 90.57610566226332
Iteration: 7, Func. Count: 78, Neg. LLF: 89.93844612709763
Iteration: 8, Func. Count: 89, Neg. LLF: 95.12316481350425
Iteration: 9, Func. Count: 100, Neg. LLF: 89.60566466108406
Iteration: 10, Func. Count: 111, Neg. LLF: 89.29992694871984
Iteration: 11, Func. Count: 121, Neg. LLF: 89.32314785412066
Iteration: 12, Func. Count: 132, Neg. LLF: 89.13603959728272
Iteration: 13, Func. Count: 142, Neg. LLF: 89.05182404948901
Iteration: 14, Func. Count: 152, Neg. LLF: 89.04668276825554
Iteration: 15, Func. Count: 162, Neg. LLF: 89.05478428284098
Iteration: 16, Func. Count: 173, Neg. LLF: 89.04256231365164
Iteration: 17, Func. Count: 183, Neg. LLF: 89.04253783963533
Iteration: 18, Func. Count: 193, Neg. LLF: 89.04247249310994
Iteration: 19, Func. Count: 203, Neg. LLF: 89.04247123957502
Iteration: 20, Func. Count: 212, Neg. LLF: 89.04247117139866
Optimization terminated successfully (Exit mode 0)
Current function value: 89.04247123957502
Iterations: 20
Function evaluations: 212
Gradient evaluations: 20
Iteration: 1, Func. Count: 12, Neg. LLF: 293.04307462996013
Iteration: 2, Func. Count: 24, Neg. LLF: 5381677.330611384
Iteration: 3, Func. Count: 36, Neg. LLF: 101.836102555942
Iteration: 4, Func. Count: 48, Neg. LLF: 104.73832272290367
Iteration: 5, Func. Count: 60, Neg. LLF: 93.74280249418003
Iteration: 6, Func. Count: 72, Neg. LLF: 95.22059384970689
Iteration: 7, Func. Count: 84, Neg. LLF: 91.72021880691398
Iteration: 8, Func. Count: 96, Neg. LLF: 89.96485579903373
Iteration: 9, Func. Count: 108, Neg. LLF: 91.27570980594489
Iteration: 10, Func. Count: 120, Neg. LLF: 89.68287276957214
Iteration: 11, Func. Count: 131, Neg. LLF: 89.66170890440779
Iteration: 12, Func. Count: 142, Neg. LLF: 89.66007289073652
Iteration: 13, Func. Count: 154, Neg. LLF: 89.65127922709347
Iteration: 14, Func. Count: 165, Neg. LLF: 89.651264166985
Iteration: 15, Func. Count: 176, Neg. LLF: 89.65124628211333
Iteration: 16, Func. Count: 186, Neg. LLF: 89.65124623308469
Optimization terminated successfully (Exit mode 0)
Current function value: 89.65124628211333
Iterations: 16
Function evaluations: 186
Gradient evaluations: 16
Iteration: 1, Func. Count: 13, Neg. LLF: 116.61006384534332
Iteration: 2, Func. Count: 27, Neg. LLF: 4924852.337362475
Iteration: 3, Func. Count: 40, Neg. LLF: 9276444.898878975
Iteration: 4, Func. Count: 53, Neg. LLF: 614.4473001636455
Iteration: 5, Func. Count: 66, Neg. LLF: 100.93256268608059
Iteration: 6, Func. Count: 79, Neg. LLF: 96.26269556406145
Iteration: 7, Func. Count: 92, Neg. LLF: 95.2196345416944
Iteration: 8, Func. Count: 105, Neg. LLF: 90.87583886111656
Iteration: 9, Func. Count: 118, Neg. LLF: 90.2026962605219
Iteration: 10, Func. Count: 131, Neg. LLF: 89.30603706930076
Iteration: 11, Func. Count: 143, Neg. LLF: 89.38843236207313
Iteration: 12, Func. Count: 156, Neg. LLF: 91.42806296800073
Iteration: 13, Func. Count: 170, Neg. LLF: 89.30051459618004
Iteration: 14, Func. Count: 183, Neg. LLF: 88.69783681899058
Iteration: 15, Func. Count: 195, Neg. LLF: 88.65097685460393
Iteration: 16, Func. Count: 207, Neg. LLF: 88.60426670985119
Iteration: 17, Func. Count: 219, Neg. LLF: 88.59786907037103
Iteration: 18, Func. Count: 231, Neg. LLF: 88.59770721652355
Iteration: 19, Func. Count: 243, Neg. LLF: 88.5976250482553
Iteration: 20, Func. Count: 255, Neg. LLF: 88.59761809538828
Iteration: 21, Func. Count: 267, Neg. LLF: 88.59761523800553
Iteration: 22, Func. Count: 278, Neg. LLF: 88.59761517169702
Optimization terminated successfully (Exit mode 0)
Current function value: 88.59761523800553
Iterations: 22
Function evaluations: 278
Gradient evaluations: 22
Iteration: 1, Func. Count: 6, Neg. LLF: 111.70292863362951
Iteration: 2, Func. Count: 13, Neg. LLF: 233.2516197394825
Iteration: 3, Func. Count: 19, Neg. LLF: 1855.3085402745032
Iteration: 4, Func. Count: 25, Neg. LLF: 141.05678576844835
Iteration: 5, Func. Count: 31, Neg. LLF: 1539.3928937018813
Iteration: 6, Func. Count: 37, Neg. LLF: 115.17671625116172
Iteration: 7, Func. Count: 43, Neg. LLF: 94.10332189618653
Iteration: 8, Func. Count: 49, Neg. LLF: 93.76675919807373
Iteration: 9, Func. Count: 54, Neg. LLF: 93.75316748335503
Iteration: 10, Func. Count: 59, Neg. LLF: 93.74442749590357
Iteration: 11, Func. Count: 64, Neg. LLF: 93.74217212279623
Iteration: 12, Func. Count: 69, Neg. LLF: 93.74202415948656
Iteration: 13, Func. Count: 74, Neg. LLF: 93.74194321142365
Iteration: 14, Func. Count: 79, Neg. LLF: 93.74194255304948
Optimization terminated successfully (Exit mode 0)
Current function value: 93.74194255304948
Iterations: 14
Function evaluations: 79
Gradient evaluations: 14
Iteration: 1, Func. Count: 7, Neg. LLF: 1342.541929249213
Iteration: 2, Func. Count: 14, Neg. LLF: 4750.399644430797
Iteration: 3, Func. Count: 21, Neg. LLF: 93.93476009380856
Iteration: 4, Func. Count: 28, Neg. LLF: 143.77521101968784
Iteration: 5, Func. Count: 36, Neg. LLF: 91.62140296447167
Iteration: 6, Func. Count: 43, Neg. LLF: 91.56546214903435
Iteration: 7, Func. Count: 50, Neg. LLF: 90.24573594806192
Iteration: 8, Func. Count: 57, Neg. LLF: 90.15570923242446
Iteration: 9, Func. Count: 63, Neg. LLF: 90.68169355591763
Iteration: 10, Func. Count: 70, Neg. LLF: 90.15161054465749
Iteration: 11, Func. Count: 76, Neg. LLF: 90.15153008390807
Iteration: 12, Func. Count: 82, Neg. LLF: 90.15152117536799
Iteration: 13, Func. Count: 88, Neg. LLF: 90.1515206502225
Optimization terminated successfully (Exit mode 0)
Current function value: 90.1515206502225
Iterations: 13
Function evaluations: 88
Gradient evaluations: 13
Iteration: 1, Func. Count: 8, Neg. LLF: 234.15942407695678
Iteration: 2, Func. Count: 16, Neg. LLF: 651.4684907409911
Iteration: 3, Func. Count: 24, Neg. LLF: 690.360142853652
Iteration: 4, Func. Count: 33, Neg. LLF: 140.40180273919447
Iteration: 5, Func. Count: 41, Neg. LLF: 95.95315542500234
Iteration: 6, Func. Count: 49, Neg. LLF: 98.15843204306638
Iteration: 7, Func. Count: 57, Neg. LLF: 90.54309300036995
Iteration: 8, Func. Count: 65, Neg. LLF: 90.93912318318777
Iteration: 9, Func. Count: 73, Neg. LLF: 89.95978077941241
Iteration: 10, Func. Count: 80, Neg. LLF: 90.02654304318833
Iteration: 11, Func. Count: 88, Neg. LLF: 89.9000789136522
Iteration: 12, Func. Count: 96, Neg. LLF: 89.86736406598702
Iteration: 13, Func. Count: 103, Neg. LLF: 89.86655652799317
Iteration: 14, Func. Count: 110, Neg. LLF: 89.86654289157951
Iteration: 15, Func. Count: 116, Neg. LLF: 89.86654286137419
Optimization terminated successfully (Exit mode 0)
Current function value: 89.86654289157951
Iterations: 15
Function evaluations: 116
Gradient evaluations: 15
Iteration: 1, Func. Count: 9, Neg. LLF: 178.21149607167584
Iteration: 2, Func. Count: 18, Neg. LLF: 1120.0681124473535
Iteration: 3, Func. Count: 27, Neg. LLF: 139.598794088414
Iteration: 4, Func. Count: 36, Neg. LLF: 100.4338219965181
Iteration: 5, Func. Count: 45, Neg. LLF: 91.62993273095496
Iteration: 6, Func. Count: 54, Neg. LLF: 97.2158648107339
Iteration: 7, Func. Count: 63, Neg. LLF: 92.34793039912394
Iteration: 8, Func. Count: 72, Neg. LLF: 90.70175496157336
Iteration: 9, Func. Count: 81, Neg. LLF: 90.18322343143053
Iteration: 10, Func. Count: 89, Neg. LLF: 90.16068877824826
Iteration: 11, Func. Count: 97, Neg. LLF: 90.1575299744985
Iteration: 12, Func. Count: 105, Neg. LLF: 92.15294540975816
Iteration: 13, Func. Count: 115, Neg. LLF: 90.15179423839497
Iteration: 14, Func. Count: 123, Neg. LLF: 90.15161088855828
Iteration: 15, Func. Count: 131, Neg. LLF: 90.15152107428302
Iteration: 16, Func. Count: 138, Neg. LLF: 90.15152113807342
Optimization terminated successfully (Exit mode 0)
Current function value: 90.15152107428302
Iterations: 16
Function evaluations: 138
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 104.85979967744704
Iteration: 2, Func. Count: 21, Neg. LLF: 2988.3757031142186
Iteration: 3, Func. Count: 31, Neg. LLF: 425.51580666182554
Iteration: 4, Func. Count: 41, Neg. LLF: 108.5584708453278
Iteration: 5, Func. Count: 51, Neg. LLF: 203.97575008761734
Iteration: 6, Func. Count: 61, Neg. LLF: 93.28159167498913
Iteration: 7, Func. Count: 71, Neg. LLF: 91.24170355119462
Iteration: 8, Func. Count: 81, Neg. LLF: 90.07943292128374
Iteration: 9, Func. Count: 90, Neg. LLF: 90.13005726837551
Iteration: 10, Func. Count: 100, Neg. LLF: 89.90678018731103
Iteration: 11, Func. Count: 109, Neg. LLF: 89.88756757755999
Iteration: 12, Func. Count: 118, Neg. LLF: 89.8724289053395
Iteration: 13, Func. Count: 127, Neg. LLF: 89.86676919032566
Iteration: 14, Func. Count: 136, Neg. LLF: 89.86668523699421
Iteration: 15, Func. Count: 145, Neg. LLF: 89.86654379647474
Iteration: 16, Func. Count: 154, Neg. LLF: 89.86654268635533
Iteration: 17, Func. Count: 162, Neg. LLF: 89.86654269134206
Optimization terminated successfully (Exit mode 0)
Current function value: 89.86654268635533
Iterations: 17
Function evaluations: 162
Gradient evaluations: 17
Iteration: 1, Func. Count: 7, Neg. LLF: 111.19978993354829
Iteration: 2, Func. Count: 15, Neg. LLF: 235.493702040408
Iteration: 3, Func. Count: 22, Neg. LLF: 1442.7994132139875
Iteration: 4, Func. Count: 29, Neg. LLF: 1391.6232802175114
Iteration: 5, Func. Count: 36, Neg. LLF: 147.32540977883988
Iteration: 6, Func. Count: 43, Neg. LLF: 97.80510467796343
Iteration: 7, Func. Count: 50, Neg. LLF: 98.84664349574987
Iteration: 8, Func. Count: 57, Neg. LLF: 97.4630431629533
Iteration: 9, Func. Count: 64, Neg. LLF: 93.72061691034294
Iteration: 10, Func. Count: 70, Neg. LLF: 93.71520573693437
Iteration: 11, Func. Count: 77, Neg. LLF: 93.69720534450212
Iteration: 12, Func. Count: 84, Neg. LLF: 93.68557503563159
Iteration: 13, Func. Count: 90, Neg. LLF: 93.68187133891522
Iteration: 14, Func. Count: 96, Neg. LLF: 93.68137439478444
Iteration: 15, Func. Count: 102, Neg. LLF: 93.68137059996818
Iteration: 16, Func. Count: 107, Neg. LLF: 93.68137060002792
Optimization terminated successfully (Exit mode 0)
Current function value: 93.68137059996818
Iterations: 16
Function evaluations: 107
Gradient evaluations: 16
Iteration: 1, Func. Count: 8, Neg. LLF: 164.3674665548588
Iteration: 2, Func. Count: 19, Neg. LLF: 388.6924035828564
Iteration: 3, Func. Count: 28, Neg. LLF: 107.98507825416077
Iteration: 4, Func. Count: 36, Neg. LLF: 90.42494119192752
Iteration: 5, Func. Count: 43, Neg. LLF: 184.51510609081578
Iteration: 6, Func. Count: 51, Neg. LLF: 96.8485464252044
Iteration: 7, Func. Count: 60, Neg. LLF: 90.78364541075128
Iteration: 8, Func. Count: 68, Neg. LLF: 94.6893249606517
Iteration: 9, Func. Count: 77, Neg. LLF: 90.14243235020969
Iteration: 10, Func. Count: 84, Neg. LLF: 90.14125609063434
Iteration: 11, Func. Count: 91, Neg. LLF: 90.1410820694415
Iteration: 12, Func. Count: 98, Neg. LLF: 90.14097849764829
Iteration: 13, Func. Count: 105, Neg. LLF: 90.14097687102581
Iteration: 14, Func. Count: 111, Neg. LLF: 90.14097687098473
Optimization terminated successfully (Exit mode 0)
Current function value: 90.14097687102581
Iterations: 14
Function evaluations: 111
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 513.2986426909415
Iteration: 2, Func. Count: 18, Neg. LLF: 2386.488705673451
Iteration: 3, Func. Count: 27, Neg. LLF: 226.12278021315723
Iteration: 4, Func. Count: 36, Neg. LLF: 97.42641059637998
Iteration: 5, Func. Count: 46, Neg. LLF: 105.6938544785083
Iteration: 6, Func. Count: 55, Neg. LLF: 93.49988226894524
Iteration: 7, Func. Count: 64, Neg. LLF: 92.66486525817697
Iteration: 8, Func. Count: 73, Neg. LLF: 90.35337579840703
Iteration: 9, Func. Count: 82, Neg. LLF: 90.5908081761415
Iteration: 10, Func. Count: 91, Neg. LLF: 89.9608611895667
Iteration: 11, Func. Count: 100, Neg. LLF: 89.89020798229969
Iteration: 12, Func. Count: 108, Neg. LLF: 90.41831298475023
Iteration: 13, Func. Count: 117, Neg. LLF: 89.86456311564908
Iteration: 14, Func. Count: 125, Neg. LLF: 89.86334574843771
Iteration: 15, Func. Count: 133, Neg. LLF: 89.86328275839958
Iteration: 16, Func. Count: 141, Neg. LLF: 89.86326760946102
Iteration: 17, Func. Count: 148, Neg. LLF: 89.8632675805975
Optimization terminated successfully (Exit mode 0)
Current function value: 89.86326760946102
Iterations: 17
Function evaluations: 148
Gradient evaluations: 17
Iteration: 1, Func. Count: 10, Neg. LLF: 167.23229070904063
Iteration: 2, Func. Count: 21, Neg. LLF: 519.1710403480976
Iteration: 3, Func. Count: 31, Neg. LLF: 305091.8606114623
Iteration: 4, Func. Count: 41, Neg. LLF: 102.69105493244597
Iteration: 5, Func. Count: 51, Neg. LLF: 95.41804096652005
Iteration: 6, Func. Count: 61, Neg. LLF: 90.89689627789535
Iteration: 7, Func. Count: 70, Neg. LLF: 91.46567903629294
Iteration: 8, Func. Count: 80, Neg. LLF: 94.06340313162984
Iteration: 9, Func. Count: 90, Neg. LLF: 92.5579897170185
Iteration: 10, Func. Count: 100, Neg. LLF: 113.50098386851558
Iteration: 11, Func. Count: 111, Neg. LLF: 90.38925018945973
Iteration: 12, Func. Count: 121, Neg. LLF: 90.14211331501888
Iteration: 13, Func. Count: 130, Neg. LLF: 90.14100045081967
Iteration: 14, Func. Count: 139, Neg. LLF: 90.14098018133892
Iteration: 15, Func. Count: 148, Neg. LLF: 90.14097685468748
Iteration: 16, Func. Count: 156, Neg. LLF: 90.14097691024712
Optimization terminated successfully (Exit mode 0)
Current function value: 90.14097685468748
Iterations: 16
Function evaluations: 156
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 133.71901609747067
Iteration: 2, Func. Count: 23, Neg. LLF: 3128.1875201822468
Iteration: 3, Func. Count: 34, Neg. LLF: 895233.7181266408
Iteration: 4, Func. Count: 45, Neg. LLF: 103.3263254563492
Iteration: 5, Func. Count: 56, Neg. LLF: 95.84358342742063
Iteration: 6, Func. Count: 67, Neg. LLF: 93.69415563832047
Iteration: 7, Func. Count: 78, Neg. LLF: 90.76458563629673
Iteration: 8, Func. Count: 89, Neg. LLF: 103.11419903371717
Iteration: 9, Func. Count: 100, Neg. LLF: 89.99506842219577
Iteration: 10, Func. Count: 110, Neg. LLF: 91.94647097005888
Iteration: 11, Func. Count: 121, Neg. LLF: 89.95060838448448
Iteration: 12, Func. Count: 132, Neg. LLF: 89.92158610676118
Iteration: 13, Func. Count: 143, Neg. LLF: 89.86433939301982
Iteration: 14, Func. Count: 153, Neg. LLF: 89.86330218595512
Iteration: 15, Func. Count: 163, Neg. LLF: 89.86328508227382
Iteration: 16, Func. Count: 173, Neg. LLF: 89.86326750987257
Iteration: 17, Func. Count: 182, Neg. LLF: 89.86326751311314
Optimization terminated successfully (Exit mode 0)
Current function value: 89.86326750987257
Iterations: 17
Function evaluations: 182
Gradient evaluations: 17
Iteration: 1, Func. Count: 8, Neg. LLF: 102.10483766126414
Iteration: 2, Func. Count: 17, Neg. LLF: 474.6718663709638
Iteration: 3, Func. Count: 25, Neg. LLF: 261.2176492171142
Iteration: 4, Func. Count: 33, Neg. LLF: 299892.8224965045
Iteration: 5, Func. Count: 41, Neg. LLF: 98.53044623045628
Iteration: 6, Func. Count: 49, Neg. LLF: 1801.6826168507343
Iteration: 7, Func. Count: 57, Neg. LLF: 93.03422227120153
Iteration: 8, Func. Count: 65, Neg. LLF: 95.90639442167776
Iteration: 9, Func. Count: 73, Neg. LLF: 92.68246695946173
Iteration: 10, Func. Count: 80, Neg. LLF: 92.65669922302067
Iteration: 11, Func. Count: 87, Neg. LLF: 92.63149334189056
Iteration: 12, Func. Count: 94, Neg. LLF: 92.6300627560324
Iteration: 13, Func. Count: 101, Neg. LLF: 92.62870329904631
Iteration: 14, Func. Count: 108, Neg. LLF: 92.62866848339272
Iteration: 15, Func. Count: 115, Neg. LLF: 92.62866678257699
Iteration: 16, Func. Count: 121, Neg. LLF: 92.62866678257576
Optimization terminated successfully (Exit mode 0)
Current function value: 92.62866678257699
Iterations: 16
Function evaluations: 121
Gradient evaluations: 16
Iteration: 1, Func. Count: 9, Neg. LLF: 184.1551142333879
Iteration: 2, Func. Count: 21, Neg. LLF: 272728472.74774206
Iteration: 3, Func. Count: 31, Neg. LLF: 120.48375084870088
Iteration: 4, Func. Count: 40, Neg. LLF: 109.32028238904354
Iteration: 5, Func. Count: 49, Neg. LLF: 89.80237129686195
Iteration: 6, Func. Count: 57, Neg. LLF: 89.74952191943888
Iteration: 7, Func. Count: 66, Neg. LLF: 89.87242985420659
Iteration: 8, Func. Count: 75, Neg. LLF: 89.65672066251929
Iteration: 9, Func. Count: 84, Neg. LLF: 89.5876190579745
Iteration: 10, Func. Count: 92, Neg. LLF: 89.5860096434125
Iteration: 11, Func. Count: 100, Neg. LLF: 89.58598298979051
Iteration: 12, Func. Count: 108, Neg. LLF: 89.5859774427764
Iteration: 13, Func. Count: 115, Neg. LLF: 89.58597741782724
Optimization terminated successfully (Exit mode 0)
Current function value: 89.5859774427764
Iterations: 13
Function evaluations: 115
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 197672162.45588624
Iteration: 2, Func. Count: 21, Neg. LLF: 8707002.910383817
Iteration: 3, Func. Count: 31, Neg. LLF: 313.0379534205773
Iteration: 4, Func. Count: 41, Neg. LLF: 93.43901727342124
Iteration: 5, Func. Count: 51, Neg. LLF: 89.54708723284035
Iteration: 6, Func. Count: 61, Neg. LLF: 88.5377491353599
Iteration: 7, Func. Count: 70, Neg. LLF: 90.01119975833694
Iteration: 8, Func. Count: 80, Neg. LLF: 91.19299830431189
Iteration: 9, Func. Count: 90, Neg. LLF: 88.2220491141
Iteration: 10, Func. Count: 100, Neg. LLF: 90.68620673681255
Iteration: 11, Func. Count: 110, Neg. LLF: 88.13517346463503
Iteration: 12, Func. Count: 119, Neg. LLF: 88.13450689033718
Iteration: 13, Func. Count: 128, Neg. LLF: 88.13434819855745
Iteration: 14, Func. Count: 136, Neg. LLF: 88.13434813934263
Optimization terminated successfully (Exit mode 0)
Current function value: 88.13434819855745
Iterations: 14
Function evaluations: 136
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 115013715.8319177
Iteration: 2, Func. Count: 22, Neg. LLF: 7559141.089803333
Iteration: 3, Func. Count: 33, Neg. LLF: 3362.9501448229535
Iteration: 4, Func. Count: 44, Neg. LLF: 96.77483076498883
Iteration: 5, Func. Count: 55, Neg. LLF: 89.22261482206947
Iteration: 6, Func. Count: 65, Neg. LLF: 88.66968683102657
Iteration: 7, Func. Count: 75, Neg. LLF: 4058.6403102457166
Iteration: 8, Func. Count: 86, Neg. LLF: 91.6903414064576
Iteration: 9, Func. Count: 97, Neg. LLF: 88.23502533459552
Iteration: 10, Func. Count: 107, Neg. LLF: 88.39868192302973
Iteration: 11, Func. Count: 118, Neg. LLF: 89.23064985611646
Iteration: 12, Func. Count: 129, Neg. LLF: 88.13567239710477
Iteration: 13, Func. Count: 139, Neg. LLF: 88.13452409685337
Iteration: 14, Func. Count: 149, Neg. LLF: 88.13436153229976
Iteration: 15, Func. Count: 159, Neg. LLF: 88.134348155333
Iteration: 16, Func. Count: 168, Neg. LLF: 88.13434824534981
Optimization terminated successfully (Exit mode 0)
Current function value: 88.134348155333
Iterations: 16
Function evaluations: 168
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 71171885.00704716
Iteration: 2, Func. Count: 24, Neg. LLF: 6003462.270119263
Iteration: 3, Func. Count: 36, Neg. LLF: 3223.141615051032
Iteration: 4, Func. Count: 48, Neg. LLF: 95.2278048838076
Iteration: 5, Func. Count: 60, Neg. LLF: 92.02323208117032
Iteration: 6, Func. Count: 72, Neg. LLF: 88.68677112390564
Iteration: 7, Func. Count: 83, Neg. LLF: 88.96087722837774
Iteration: 8, Func. Count: 95, Neg. LLF: 94.80378773194356
Iteration: 9, Func. Count: 107, Neg. LLF: 89.33676634372462
Iteration: 10, Func. Count: 119, Neg. LLF: 89.04661003100011
Iteration: 11, Func. Count: 131, Neg. LLF: 88.14737888077725
Iteration: 12, Func. Count: 142, Neg. LLF: 88.13532413552325
Iteration: 13, Func. Count: 153, Neg. LLF: 88.1344413656219
Iteration: 14, Func. Count: 164, Neg. LLF: 88.13438659575736
Iteration: 15, Func. Count: 175, Neg. LLF: 88.1343478660005
Iteration: 16, Func. Count: 185, Neg. LLF: 88.13434781374428
Optimization terminated successfully (Exit mode 0)
Current function value: 88.1343478660005
Iterations: 16
Function evaluations: 185
Gradient evaluations: 16
Iteration: 1, Func. Count: 9, Neg. LLF: 100.68425140148982
Iteration: 2, Func. Count: 19, Neg. LLF: 11197.1896137232
Iteration: 3, Func. Count: 28, Neg. LLF: 1302.9119285971374
Iteration: 4, Func. Count: 37, Neg. LLF: 428.511965637487
Iteration: 5, Func. Count: 46, Neg. LLF: 340.58332354628755
Iteration: 6, Func. Count: 55, Neg. LLF: 94.24176572885828
Iteration: 7, Func. Count: 64, Neg. LLF: 97.38951921916774
Iteration: 8, Func. Count: 73, Neg. LLF: 93.33141097008202
Iteration: 9, Func. Count: 82, Neg. LLF: 92.70476981449552
Iteration: 10, Func. Count: 90, Neg. LLF: 92.66663303464519
Iteration: 11, Func. Count: 98, Neg. LLF: 92.63688412420849
Iteration: 12, Func. Count: 106, Neg. LLF: 92.62944386238908
Iteration: 13, Func. Count: 114, Neg. LLF: 92.6287859393955
Iteration: 14, Func. Count: 122, Neg. LLF: 92.628671505685
Iteration: 15, Func. Count: 130, Neg. LLF: 92.62866767034437
Iteration: 16, Func. Count: 138, Neg. LLF: 92.62866677384329
Optimization terminated successfully (Exit mode 0)
Current function value: 92.62866677384329
Iterations: 16
Function evaluations: 138
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 171.64079614015682
Iteration: 2, Func. Count: 23, Neg. LLF: 246009555.1112601
Iteration: 3, Func. Count: 34, Neg. LLF: 124.60532876653835
Iteration: 4, Func. Count: 44, Neg. LLF: 107.73790955129222
Iteration: 5, Func. Count: 54, Neg. LLF: 89.77717699470043
Iteration: 6, Func. Count: 63, Neg. LLF: 90.32557349554244
Iteration: 7, Func. Count: 73, Neg. LLF: 91.35550282059089
Iteration: 8, Func. Count: 84, Neg. LLF: 91.14605746001448
Iteration: 9, Func. Count: 94, Neg. LLF: 89.58692413510836
Iteration: 10, Func. Count: 103, Neg. LLF: 89.58603625045346
Iteration: 11, Func. Count: 112, Neg. LLF: 89.58598015846759
Iteration: 12, Func. Count: 121, Neg. LLF: 89.58597777230592
Iteration: 13, Func. Count: 129, Neg. LLF: 89.58597774736222
Optimization terminated successfully (Exit mode 0)
Current function value: 89.58597777230592
Iterations: 13
Function evaluations: 129
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 187432197.29823393
Iteration: 2, Func. Count: 23, Neg. LLF: 7402557.015071691
Iteration: 3, Func. Count: 34, Neg. LLF: 277.70497930279475
Iteration: 4, Func. Count: 45, Neg. LLF: 93.31895396762354
Iteration: 5, Func. Count: 56, Neg. LLF: 89.55011147410953
Iteration: 6, Func. Count: 67, Neg. LLF: 88.74476269249423
Iteration: 7, Func. Count: 78, Neg. LLF: 90.02252113350208
Iteration: 8, Func. Count: 89, Neg. LLF: 91.18727612279781
Iteration: 9, Func. Count: 100, Neg. LLF: 88.20381106251759
Iteration: 10, Func. Count: 110, Neg. LLF: 88.14218401070195
Iteration: 11, Func. Count: 120, Neg. LLF: 88.13888085494554
Iteration: 12, Func. Count: 130, Neg. LLF: 88.13447732681219
Iteration: 13, Func. Count: 140, Neg. LLF: 88.13436629714886
Iteration: 14, Func. Count: 150, Neg. LLF: 88.13434791260406
Iteration: 15, Func. Count: 159, Neg. LLF: 88.13434785334103
Optimization terminated successfully (Exit mode 0)
Current function value: 88.13434791260406
Iterations: 15
Function evaluations: 159
Gradient evaluations: 15
Iteration: 1, Func. Count: 12, Neg. LLF: 119397243.04013973
Iteration: 2, Func. Count: 24, Neg. LLF: 7688291.8679467775
Iteration: 3, Func. Count: 36, Neg. LLF: 582.7789882582572
Iteration: 4, Func. Count: 48, Neg. LLF: 94.55629210544944
Iteration: 5, Func. Count: 60, Neg. LLF: 89.35100376440792
Iteration: 6, Func. Count: 71, Neg. LLF: 88.76213808976144
Iteration: 7, Func. Count: 82, Neg. LLF: 352.3852052095542
Iteration: 8, Func. Count: 94, Neg. LLF: 89.75678903059622
Iteration: 9, Func. Count: 106, Neg. LLF: 88.45017152293305
Iteration: 10, Func. Count: 118, Neg. LLF: 88.62620043520947
Iteration: 11, Func. Count: 130, Neg. LLF: 88.14375464901035
Iteration: 12, Func. Count: 141, Neg. LLF: 88.13467652408781
Iteration: 13, Func. Count: 152, Neg. LLF: 88.1343720660628
Iteration: 14, Func. Count: 163, Neg. LLF: 88.13434901969055
Iteration: 15, Func. Count: 174, Neg. LLF: 88.13434810448923
Optimization terminated successfully (Exit mode 0)
Current function value: 88.13434810448923
Iterations: 15
Function evaluations: 174
Gradient evaluations: 15
Iteration: 1, Func. Count: 13, Neg. LLF: 76064268.70190941
Iteration: 2, Func. Count: 26, Neg. LLF: 6108883.222737492
Iteration: 3, Func. Count: 39, Neg. LLF: 602.840566522883
Iteration: 4, Func. Count: 52, Neg. LLF: 92.37945228395849
Iteration: 5, Func. Count: 65, Neg. LLF: 88.52325340042019
Iteration: 6, Func. Count: 77, Neg. LLF: 91.21691173928089
Iteration: 7, Func. Count: 90, Neg. LLF: 94.34333324691411
Iteration: 8, Func. Count: 103, Neg. LLF: 91.1988319617835
Iteration: 9, Func. Count: 116, Neg. LLF: 88.36094875401152
Iteration: 10, Func. Count: 129, Neg. LLF: 91.85479948441878
Iteration: 11, Func. Count: 142, Neg. LLF: 88.18805201013663
Iteration: 12, Func. Count: 155, Neg. LLF: 88.13673562837974
Iteration: 13, Func. Count: 167, Neg. LLF: 88.13456949596909
Iteration: 14, Func. Count: 179, Neg. LLF: 88.13435135260762
Iteration: 15, Func. Count: 191, Neg. LLF: 88.13434805034792
Iteration: 16, Func. Count: 202, Neg. LLF: 88.13434799817507
Optimization terminated successfully (Exit mode 0)
Current function value: 88.13434805034792
Iterations: 16
Function evaluations: 202
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 98.89883415597673
Iteration: 2, Func. Count: 21, Neg. LLF: 114.25577262652318
Iteration: 3, Func. Count: 32, Neg. LLF: 389393.2151118577
Iteration: 4, Func. Count: 42, Neg. LLF: 1165.6302199400884
Iteration: 5, Func. Count: 52, Neg. LLF: 146.3589254342152
Iteration: 6, Func. Count: 62, Neg. LLF: 134.27374713219996
Iteration: 7, Func. Count: 72, Neg. LLF: 174.74828549616328
Iteration: 8, Func. Count: 82, Neg. LLF: 159618.30829633452
Iteration: 9, Func. Count: 92, Neg. LLF: 93.10791724895994
Iteration: 10, Func. Count: 102, Neg. LLF: 93.66781079669015
Iteration: 11, Func. Count: 112, Neg. LLF: 90.82304499340397
Iteration: 12, Func. Count: 122, Neg. LLF: 90.34978750127246
Iteration: 13, Func. Count: 131, Neg. LLF: 90.26707639430464
Iteration: 14, Func. Count: 140, Neg. LLF: 90.2632781545934
Iteration: 15, Func. Count: 149, Neg. LLF: 90.26294567650014
Iteration: 16, Func. Count: 158, Neg. LLF: 90.26290710846615
Iteration: 17, Func. Count: 167, Neg. LLF: 90.26290661126119
Optimization terminated successfully (Exit mode 0)
Current function value: 90.26290661126119
Iterations: 17
Function evaluations: 167
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 2768.6674594142414
Iteration: 2, Func. Count: 23, Neg. LLF: 455.1999026146295
Iteration: 3, Func. Count: 34, Neg. LLF: 106.16148433644152
Iteration: 4, Func. Count: 45, Neg. LLF: 92.45528519100398
Iteration: 5, Func. Count: 56, Neg. LLF: 90.3921188557664
Iteration: 6, Func. Count: 67, Neg. LLF: 94.87577234250568
Iteration: 7, Func. Count: 78, Neg. LLF: 90.31640445898954
Iteration: 8, Func. Count: 89, Neg. LLF: 90.48495714499272
Iteration: 9, Func. Count: 100, Neg. LLF: 89.61889563243511
Iteration: 10, Func. Count: 110, Neg. LLF: 89.58864616785449
Iteration: 11, Func. Count: 120, Neg. LLF: 89.58907437669365
Iteration: 12, Func. Count: 131, Neg. LLF: 89.58608896982696
Iteration: 13, Func. Count: 141, Neg. LLF: 89.58598693722666
Iteration: 14, Func. Count: 151, Neg. LLF: 89.58597758885054
Iteration: 15, Func. Count: 160, Neg. LLF: 89.58597756389875
Optimization terminated successfully (Exit mode 0)
Current function value: 89.58597758885054
Iterations: 15
Function evaluations: 160
Gradient evaluations: 15
Iteration: 1, Func. Count: 12, Neg. LLF: 174867308.75923583
Iteration: 2, Func. Count: 25, Neg. LLF: 7410641.811268935
Iteration: 3, Func. Count: 37, Neg. LLF: 247.09654135389562
Iteration: 4, Func. Count: 49, Neg. LLF: 93.25077632499658
Iteration: 5, Func. Count: 61, Neg. LLF: 90.31147525831659
Iteration: 6, Func. Count: 73, Neg. LLF: 88.73939242571986
Iteration: 7, Func. Count: 84, Neg. LLF: 90.04728415846311
Iteration: 8, Func. Count: 96, Neg. LLF: 95.69447264602111
Iteration: 9, Func. Count: 108, Neg. LLF: 88.51008480394638
Iteration: 10, Func. Count: 120, Neg. LLF: 89.70023894290865
Iteration: 11, Func. Count: 132, Neg. LLF: 88.14077449124215
Iteration: 12, Func. Count: 143, Neg. LLF: 88.13448013138301
Iteration: 13, Func. Count: 154, Neg. LLF: 88.13435459087565
Iteration: 14, Func. Count: 165, Neg. LLF: 88.1343491477692
Iteration: 15, Func. Count: 176, Neg. LLF: 88.1343477692841
Iteration: 16, Func. Count: 186, Neg. LLF: 88.13434771005426
Optimization terminated successfully (Exit mode 0)
Current function value: 88.1343477692841
Iterations: 16
Function evaluations: 186
Gradient evaluations: 16
Iteration: 1, Func. Count: 13, Neg. LLF: 103860174.03429201
Iteration: 2, Func. Count: 26, Neg. LLF: 6040579.629267828
Iteration: 3, Func. Count: 39, Neg. LLF: 793.9950560128714
Iteration: 4, Func. Count: 52, Neg. LLF: 94.75743479056676
Iteration: 5, Func. Count: 65, Neg. LLF: 88.84140704069216
Iteration: 6, Func. Count: 77, Neg. LLF: 112.24223988155683
Iteration: 7, Func. Count: 90, Neg. LLF: 90.24193686616934
Iteration: 8, Func. Count: 103, Neg. LLF: 94.09687775166306
Iteration: 9, Func. Count: 116, Neg. LLF: 88.79456110559903
Iteration: 10, Func. Count: 129, Neg. LLF: 89.26864347456716
Iteration: 11, Func. Count: 142, Neg. LLF: 88.31169457368043
Iteration: 12, Func. Count: 155, Neg. LLF: 88.13545481313312
Iteration: 13, Func. Count: 167, Neg. LLF: 88.13458457371661
Iteration: 14, Func. Count: 179, Neg. LLF: 88.13435893973656
Iteration: 15, Func. Count: 191, Neg. LLF: 88.13437196204057
Iteration: 16, Func. Count: 204, Neg. LLF: 88.13434774554533
Iteration: 17, Func. Count: 215, Neg. LLF: 88.13434783554355
Optimization terminated successfully (Exit mode 0)
Current function value: 88.13434774554533
Iterations: 17
Function evaluations: 215
Gradient evaluations: 17
Iteration: 1, Func. Count: 14, Neg. LLF: 66907222.36559385
Iteration: 2, Func. Count: 28, Neg. LLF: 5624775.455878952
Iteration: 3, Func. Count: 42, Neg. LLF: 4448.618437917109
Iteration: 4, Func. Count: 56, Neg. LLF: 166.5420173636712
Iteration: 5, Func. Count: 70, Neg. LLF: 90.35753040373791
Iteration: 6, Func. Count: 84, Neg. LLF: 90.33318588783862
Iteration: 7, Func. Count: 98, Neg. LLF: 88.757557010608
Iteration: 8, Func. Count: 111, Neg. LLF: 93.95746136901907
Iteration: 9, Func. Count: 126, Neg. LLF: 111.08742759654507
Iteration: 10, Func. Count: 140, Neg. LLF: 93.69800618621886
Iteration: 11, Func. Count: 154, Neg. LLF: 88.38651996490435
Iteration: 12, Func. Count: 168, Neg. LLF: 88.13632149057771
Iteration: 13, Func. Count: 181, Neg. LLF: 88.14171376675328
Iteration: 14, Func. Count: 195, Neg. LLF: 88.13570647544252
Iteration: 15, Func. Count: 209, Neg. LLF: 88.1343547494073
Iteration: 16, Func. Count: 222, Neg. LLF: 88.13434853857022
Iteration: 17, Func. Count: 235, Neg. LLF: 88.13434781314606
Optimization terminated successfully (Exit mode 0)
Current function value: 88.13434781314606
Iterations: 17
Function evaluations: 235
Gradient evaluations: 17
Iteration: 1, Func. Count: 7, Neg. LLF: 109.77256200856525
Iteration: 2, Func. Count: 15, Neg. LLF: 121.74913088019343
Iteration: 3, Func. Count: 22, Neg. LLF: 21653.644261601985
Iteration: 4, Func. Count: 29, Neg. LLF: 178.79070766260168
Iteration: 5, Func. Count: 36, Neg. LLF: 121.95292728064747
Iteration: 6, Func. Count: 43, Neg. LLF: 103.27204406105044
Iteration: 7, Func. Count: 50, Neg. LLF: 118.1374519504895
Iteration: 8, Func. Count: 57, Neg. LLF: 93.02104324362794
Iteration: 9, Func. Count: 64, Neg. LLF: 92.7696816461786
Iteration: 10, Func. Count: 70, Neg. LLF: 92.76729722562166
Iteration: 11, Func. Count: 76, Neg. LLF: 92.76674958848697
Iteration: 12, Func. Count: 82, Neg. LLF: 92.76673989059324
Iteration: 13, Func. Count: 88, Neg. LLF: 92.76673874662737
Iteration: 14, Func. Count: 93, Neg. LLF: 92.76673874663207
Optimization terminated successfully (Exit mode 0)
Current function value: 92.76673874662737
Iterations: 14
Function evaluations: 93
Gradient evaluations: 14
Iteration: 1, Func. Count: 8, Neg. LLF: 12929.554165012985
Iteration: 2, Func. Count: 16, Neg. LLF: 352.19502544107553
Iteration: 3, Func. Count: 24, Neg. LLF: 97.8297777821106
Iteration: 4, Func. Count: 32, Neg. LLF: 93.60669575615802
Iteration: 5, Func. Count: 40, Neg. LLF: 97.48917031396998
Iteration: 6, Func. Count: 48, Neg. LLF: 93.19655968202117
Iteration: 7, Func. Count: 57, Neg. LLF: 98.07678204236561
Iteration: 8, Func. Count: 65, Neg. LLF: 90.08483372351152
Iteration: 9, Func. Count: 73, Neg. LLF: 90.06965301382817
Iteration: 10, Func. Count: 81, Neg. LLF: 90.06128311813481
Iteration: 11, Func. Count: 89, Neg. LLF: 90.05848849890297
Iteration: 12, Func. Count: 96, Neg. LLF: 90.0584866341101
Iteration: 13, Func. Count: 102, Neg. LLF: 90.05848663411224
Optimization terminated successfully (Exit mode 0)
Current function value: 90.0584866341101
Iterations: 13
Function evaluations: 102
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 187.49278148681384
Iteration: 2, Func. Count: 18, Neg. LLF: 195.70180727296304
Iteration: 3, Func. Count: 27, Neg. LLF: 776.7693267048629
Iteration: 4, Func. Count: 36, Neg. LLF: 126.55312167114228
Iteration: 5, Func. Count: 45, Neg. LLF: 95.4207773884767
Iteration: 6, Func. Count: 54, Neg. LLF: 95.73042882062899
Iteration: 7, Func. Count: 63, Neg. LLF: 91.27118745687919
Iteration: 8, Func. Count: 72, Neg. LLF: 90.17434780434215
Iteration: 9, Func. Count: 81, Neg. LLF: 89.91488806972167
Iteration: 10, Func. Count: 89, Neg. LLF: 90.03450050669412
Iteration: 11, Func. Count: 98, Neg. LLF: 89.94059554642624
Iteration: 12, Func. Count: 107, Neg. LLF: 89.75866323016744
Iteration: 13, Func. Count: 115, Neg. LLF: 89.75690510322265
Iteration: 14, Func. Count: 123, Neg. LLF: 89.75678851002075
Iteration: 15, Func. Count: 131, Neg. LLF: 89.75678564182174
Iteration: 16, Func. Count: 139, Neg. LLF: 89.75678317842316
Iteration: 17, Func. Count: 146, Neg. LLF: 89.75678315845971
Optimization terminated successfully (Exit mode 0)
Current function value: 89.75678317842316
Iterations: 17
Function evaluations: 146
Gradient evaluations: 17
Iteration: 1, Func. Count: 10, Neg. LLF: 186.09914188928042
Iteration: 2, Func. Count: 20, Neg. LLF: 226.13695607542547
Iteration: 3, Func. Count: 30, Neg. LLF: 98.82687993801328
Iteration: 4, Func. Count: 40, Neg. LLF: 139.8255355606389
Iteration: 5, Func. Count: 50, Neg. LLF: 96.22902610705967
Iteration: 6, Func. Count: 60, Neg. LLF: 90.85288674883721
Iteration: 7, Func. Count: 70, Neg. LLF: 90.32706015371349
Iteration: 8, Func. Count: 79, Neg. LLF: 90.98321091609229
Iteration: 9, Func. Count: 89, Neg. LLF: 91.97446599219866
Iteration: 10, Func. Count: 99, Neg. LLF: 90.26936585065039
Iteration: 11, Func. Count: 109, Neg. LLF: 90.33294104558307
Iteration: 12, Func. Count: 119, Neg. LLF: 90.06839993972793
Iteration: 13, Func. Count: 128, Neg. LLF: 90.06030951284212
Iteration: 14, Func. Count: 137, Neg. LLF: 90.05916751608292
Iteration: 15, Func. Count: 146, Neg. LLF: 90.05856097920477
Iteration: 16, Func. Count: 155, Neg. LLF: 90.05849247501293
Iteration: 17, Func. Count: 164, Neg. LLF: 90.05848676157929
Iteration: 18, Func. Count: 172, Neg. LLF: 90.05848679637803
Optimization terminated successfully (Exit mode 0)
Current function value: 90.05848676157929
Iterations: 18
Function evaluations: 172
Gradient evaluations: 18
Iteration: 1, Func. Count: 11, Neg. LLF: 139.57925708899643
Iteration: 2, Func. Count: 22, Neg. LLF: 262.1328801957101
Iteration: 3, Func. Count: 33, Neg. LLF: 519.2570565437873
Iteration: 4, Func. Count: 44, Neg. LLF: 126.3832878036836
Iteration: 5, Func. Count: 55, Neg. LLF: 91.35871130873558
Iteration: 6, Func. Count: 66, Neg. LLF: 105.9236441806882
Iteration: 7, Func. Count: 77, Neg. LLF: 91.54921970977185
Iteration: 8, Func. Count: 88, Neg. LLF: 92.78496393370585
Iteration: 9, Func. Count: 99, Neg. LLF: 90.08405243649986
Iteration: 10, Func. Count: 109, Neg. LLF: 90.07034818821953
Iteration: 11, Func. Count: 119, Neg. LLF: 90.06917870561723
Iteration: 12, Func. Count: 130, Neg. LLF: 90.06474043374052
Iteration: 13, Func. Count: 141, Neg. LLF: 90.05883981208899
Iteration: 14, Func. Count: 151, Neg. LLF: 90.05850173732878
Iteration: 15, Func. Count: 161, Neg. LLF: 90.05848689224364
Iteration: 16, Func. Count: 170, Neg. LLF: 90.05848691883752
Optimization terminated successfully (Exit mode 0)
Current function value: 90.05848689224364
Iterations: 16
Function evaluations: 170
Gradient evaluations: 16
Iteration: 1, Func. Count: 8, Neg. LLF: 110.13171335987032
Iteration: 2, Func. Count: 17, Neg. LLF: 122.51435751906143
Iteration: 3, Func. Count: 25, Neg. LLF: 12138.23759734931
Iteration: 4, Func. Count: 33, Neg. LLF: 150.19785127471795
Iteration: 5, Func. Count: 41, Neg. LLF: 160.1258144769411
Iteration: 6, Func. Count: 49, Neg. LLF: 117.68868881695597
Iteration: 7, Func. Count: 57, Neg. LLF: 93.10627849441234
Iteration: 8, Func. Count: 65, Neg. LLF: 94.486269774066
Iteration: 9, Func. Count: 74, Neg. LLF: 92.7435572867708
Iteration: 10, Func. Count: 81, Neg. LLF: 92.73934938767681
Iteration: 11, Func. Count: 88, Neg. LLF: 92.74399471161883
Iteration: 12, Func. Count: 96, Neg. LLF: 92.73664148879018
Iteration: 13, Func. Count: 103, Neg. LLF: 92.73650605670585
Iteration: 14, Func. Count: 110, Neg. LLF: 92.73647798453139
Iteration: 15, Func. Count: 116, Neg. LLF: 92.73647798456172
Optimization terminated successfully (Exit mode 0)
Current function value: 92.73647798453139
Iterations: 15
Function evaluations: 116
Gradient evaluations: 15
Iteration: 1, Func. Count: 9, Neg. LLF: 208.42091105743378
Iteration: 2, Func. Count: 19, Neg. LLF: 271.9698953415667
Iteration: 3, Func. Count: 28, Neg. LLF: 120.79533314809302
Iteration: 4, Func. Count: 37, Neg. LLF: 95.63506835697247
Iteration: 5, Func. Count: 46, Neg. LLF: 90.39543373158256
Iteration: 6, Func. Count: 55, Neg. LLF: 91.04761682780357
Iteration: 7, Func. Count: 65, Neg. LLF: 92.27579669297339
Iteration: 8, Func. Count: 75, Neg. LLF: 90.08609699095783
Iteration: 9, Func. Count: 84, Neg. LLF: 90.10422336329619
Iteration: 10, Func. Count: 93, Neg. LLF: 90.05094778252713
Iteration: 11, Func. Count: 101, Neg. LLF: 90.04888656870334
Iteration: 12, Func. Count: 109, Neg. LLF: 90.04887044080698
Iteration: 13, Func. Count: 117, Neg. LLF: 90.04886903746831
Iteration: 14, Func. Count: 124, Neg. LLF: 90.0488690374757
Optimization terminated successfully (Exit mode 0)
Current function value: 90.04886903746831
Iterations: 14
Function evaluations: 124
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 159.3038367736033
Iteration: 2, Func. Count: 21, Neg. LLF: 1147.5560219833085
Iteration: 3, Func. Count: 31, Neg. LLF: 189416.89898015483
Iteration: 4, Func. Count: 41, Neg. LLF: 95.6515254729445
Iteration: 5, Func. Count: 52, Neg. LLF: 170.35048104233132
Iteration: 6, Func. Count: 62, Neg. LLF: 98.57503569418753
Iteration: 7, Func. Count: 72, Neg. LLF: 91.38558158455375
Iteration: 8, Func. Count: 82, Neg. LLF: 90.60691132571779
Iteration: 9, Func. Count: 92, Neg. LLF: 90.41173481011334
Iteration: 10, Func. Count: 102, Neg. LLF: 90.07657703563676
Iteration: 11, Func. Count: 111, Neg. LLF: 90.2133137835617
Iteration: 12, Func. Count: 121, Neg. LLF: 90.1424114638177
Iteration: 13, Func. Count: 131, Neg. LLF: 90.05022933120576
Iteration: 14, Func. Count: 140, Neg. LLF: 90.04893982873301
Iteration: 15, Func. Count: 149, Neg. LLF: 90.04888117214617
Iteration: 16, Func. Count: 158, Neg. LLF: 90.0488692726278
Iteration: 17, Func. Count: 166, Neg. LLF: 90.04886928603615
Optimization terminated successfully (Exit mode 0)
Current function value: 90.0488692726278
Iterations: 17
Function evaluations: 166
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 164.64756769543925
Iteration: 2, Func. Count: 23, Neg. LLF: 2253.5115179125646
Iteration: 3, Func. Count: 34, Neg. LLF: 96.47247070642258
Iteration: 4, Func. Count: 45, Neg. LLF: 551.9270756733939
Iteration: 5, Func. Count: 56, Neg. LLF: 91.83449059104265
Iteration: 6, Func. Count: 67, Neg. LLF: 98.92576243054573
Iteration: 7, Func. Count: 78, Neg. LLF: 90.27584137259478
Iteration: 8, Func. Count: 88, Neg. LLF: 90.36902936636913
Iteration: 9, Func. Count: 99, Neg. LLF: 99.33000927133104
Iteration: 10, Func. Count: 110, Neg. LLF: 90.29380041114665
Iteration: 11, Func. Count: 121, Neg. LLF: 90.19876458096543
Iteration: 12, Func. Count: 132, Neg. LLF: 90.05546223975706
Iteration: 13, Func. Count: 142, Neg. LLF: 90.04992643929121
Iteration: 14, Func. Count: 152, Neg. LLF: 90.04932764975118
Iteration: 15, Func. Count: 162, Neg. LLF: 90.04892052700751
Iteration: 16, Func. Count: 172, Neg. LLF: 90.04887172945921
Iteration: 17, Func. Count: 182, Neg. LLF: 90.04886911482261
Iteration: 18, Func. Count: 191, Neg. LLF: 90.04886914282639
Optimization terminated successfully (Exit mode 0)
Current function value: 90.04886911482261
Iterations: 18
Function evaluations: 191
Gradient evaluations: 18
Iteration: 1, Func. Count: 12, Neg. LLF: 167.96830249597573
Iteration: 2, Func. Count: 24, Neg. LLF: 9344.165545074091
Iteration: 3, Func. Count: 36, Neg. LLF: 161.77594823906202
Iteration: 4, Func. Count: 48, Neg. LLF: 771.6731136556757
Iteration: 5, Func. Count: 60, Neg. LLF: 99.97821851474512
Iteration: 6, Func. Count: 72, Neg. LLF: 91.74894415990899
Iteration: 7, Func. Count: 84, Neg. LLF: 101.16187019258388
Iteration: 8, Func. Count: 96, Neg. LLF: 95.01453537730224
Iteration: 9, Func. Count: 108, Neg. LLF: 90.22490032948829
Iteration: 10, Func. Count: 119, Neg. LLF: 90.14469978714894
Iteration: 11, Func. Count: 130, Neg. LLF: 90.42220272720844
Iteration: 12, Func. Count: 142, Neg. LLF: 90.08306986324368
Iteration: 13, Func. Count: 153, Neg. LLF: 90.43609643429731
Iteration: 14, Func. Count: 165, Neg. LLF: 90.06622592340318
Iteration: 15, Func. Count: 177, Neg. LLF: 90.04985515341583
Iteration: 16, Func. Count: 188, Neg. LLF: 90.0492752171713
Iteration: 17, Func. Count: 199, Neg. LLF: 90.04888050283584
Iteration: 18, Func. Count: 210, Neg. LLF: 90.04886921135186
Iteration: 19, Func. Count: 220, Neg. LLF: 90.04886923235271
Optimization terminated successfully (Exit mode 0)
Current function value: 90.04886921135186
Iterations: 19
Function evaluations: 220
Gradient evaluations: 19
Iteration: 1, Func. Count: 9, Neg. LLF: 105.52178342471085
Iteration: 2, Func. Count: 19, Neg. LLF: 108.2164934307541
Iteration: 3, Func. Count: 28, Neg. LLF: 54251.517607594906
Iteration: 4, Func. Count: 37, Neg. LLF: 229.0376041506331
Iteration: 5, Func. Count: 46, Neg. LLF: 153.5933244570363
Iteration: 6, Func. Count: 55, Neg. LLF: 93.09040753879411
Iteration: 7, Func. Count: 64, Neg. LLF: 95.26318822583681
Iteration: 8, Func. Count: 73, Neg. LLF: 93.55050048307092
Iteration: 9, Func. Count: 82, Neg. LLF: 92.52606171457496
Iteration: 10, Func. Count: 90, Neg. LLF: 92.49697274598171
Iteration: 11, Func. Count: 98, Neg. LLF: 92.48852325067342
Iteration: 12, Func. Count: 106, Neg. LLF: 92.48563400057365
Iteration: 13, Func. Count: 114, Neg. LLF: 92.48516912546211
Iteration: 14, Func. Count: 122, Neg. LLF: 92.48507115856758
Iteration: 15, Func. Count: 130, Neg. LLF: 92.48507079855894
Optimization terminated successfully (Exit mode 0)
Current function value: 92.48507079855894
Iterations: 15
Function evaluations: 130
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 344.03524159132155
Iteration: 2, Func. Count: 21, Neg. LLF: 256.1929855995628
Iteration: 3, Func. Count: 31, Neg. LLF: 304.8816720562953
Iteration: 4, Func. Count: 41, Neg. LLF: 95.08972025963749
Iteration: 5, Func. Count: 51, Neg. LLF: 92.23804537129246
Iteration: 6, Func. Count: 61, Neg. LLF: 89.99543655844847
Iteration: 7, Func. Count: 71, Neg. LLF: 89.85019143187725
Iteration: 8, Func. Count: 81, Neg. LLF: 90.4006315213836
Iteration: 9, Func. Count: 91, Neg. LLF: 89.5490707684486
Iteration: 10, Func. Count: 101, Neg. LLF: 89.58579338246211
Iteration: 11, Func. Count: 111, Neg. LLF: 89.51551486421566
Iteration: 12, Func. Count: 120, Neg. LLF: 89.51387423793935
Iteration: 13, Func. Count: 129, Neg. LLF: 89.51378013527975
Iteration: 14, Func. Count: 139, Neg. LLF: 89.51358750331086
Iteration: 15, Func. Count: 147, Neg. LLF: 89.51358748948473
Optimization terminated successfully (Exit mode 0)
Current function value: 89.51358750331086
Iterations: 15
Function evaluations: 147
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 201074606.70489174
Iteration: 2, Func. Count: 23, Neg. LLF: 16221.7499716337
Iteration: 3, Func. Count: 34, Neg. LLF: 365.2710212363124
Iteration: 4, Func. Count: 45, Neg. LLF: 91.37507516051306
Iteration: 5, Func. Count: 56, Neg. LLF: 89.92006550930047
Iteration: 6, Func. Count: 67, Neg. LLF: 89.76521596528963
Iteration: 7, Func. Count: 78, Neg. LLF: 90.33473869892681
Iteration: 8, Func. Count: 89, Neg. LLF: 89.32835107584928
Iteration: 9, Func. Count: 100, Neg. LLF: 88.16817502371434
Iteration: 10, Func. Count: 110, Neg. LLF: 88.14217979933706
Iteration: 11, Func. Count: 120, Neg. LLF: 88.13468720962005
Iteration: 12, Func. Count: 130, Neg. LLF: 88.13444165454197
Iteration: 13, Func. Count: 140, Neg. LLF: 88.1343488039382
Iteration: 14, Func. Count: 150, Neg. LLF: 88.1343484635909
Optimization terminated successfully (Exit mode 0)
Current function value: 88.1343484635909
Iterations: 14
Function evaluations: 150
Gradient evaluations: 14
Iteration: 1, Func. Count: 12, Neg. LLF: 160078933.4931956
Iteration: 2, Func. Count: 24, Neg. LLF: 7492513.077368023
Iteration: 3, Func. Count: 36, Neg. LLF: 273.7538167590076
Iteration: 4, Func. Count: 48, Neg. LLF: 223.1733933235332
Iteration: 5, Func. Count: 60, Neg. LLF: 93.21154826980533
Iteration: 6, Func. Count: 72, Neg. LLF: 90.46055487363925
Iteration: 7, Func. Count: 85, Neg. LLF: 88.50504775437719
Iteration: 8, Func. Count: 96, Neg. LLF: 104.2854548395572
Iteration: 9, Func. Count: 108, Neg. LLF: 88.47685999390816
Iteration: 10, Func. Count: 120, Neg. LLF: 88.38238500885797
Iteration: 11, Func. Count: 132, Neg. LLF: 88.14019509928495
Iteration: 12, Func. Count: 143, Neg. LLF: 88.13509921954105
Iteration: 13, Func. Count: 154, Neg. LLF: 88.13436893160579
Iteration: 14, Func. Count: 165, Neg. LLF: 88.13435231782415
Iteration: 15, Func. Count: 176, Neg. LLF: 88.13434811814108
Iteration: 16, Func. Count: 186, Neg. LLF: 88.13434820815992
Optimization terminated successfully (Exit mode 0)
Current function value: 88.13434811814108
Iterations: 16
Function evaluations: 186
Gradient evaluations: 16
Iteration: 1, Func. Count: 13, Neg. LLF: 129104954.0506229
Iteration: 2, Func. Count: 26, Neg. LLF: 7521963.588889634
Iteration: 3, Func. Count: 39, Neg. LLF: 534.8000795880472
Iteration: 4, Func. Count: 52, Neg. LLF: 880.7174115004465
Iteration: 5, Func. Count: 65, Neg. LLF: 93.052597183021
Iteration: 6, Func. Count: 78, Neg. LLF: 89.48883583120066
Iteration: 7, Func. Count: 91, Neg. LLF: 88.83126378724762
Iteration: 8, Func. Count: 103, Neg. LLF: 198.12326770479302
Iteration: 9, Func. Count: 116, Neg. LLF: 92.60118529660708
Iteration: 10, Func. Count: 129, Neg. LLF: 88.30352364166116
Iteration: 11, Func. Count: 142, Neg. LLF: 88.18481158738517
Iteration: 12, Func. Count: 154, Neg. LLF: 88.14252246591819
Iteration: 13, Func. Count: 166, Neg. LLF: 88.13589302362735
Iteration: 14, Func. Count: 178, Neg. LLF: 88.13452348818265
Iteration: 15, Func. Count: 190, Neg. LLF: 88.13439328290815
Iteration: 16, Func. Count: 202, Neg. LLF: 88.13435083012018
Iteration: 17, Func. Count: 214, Neg. LLF: 88.13434787554718
Iteration: 18, Func. Count: 225, Neg. LLF: 88.13434782342992
Optimization terminated successfully (Exit mode 0)
Current function value: 88.13434787554718
Iterations: 18
Function evaluations: 225
Gradient evaluations: 18
Iteration: 1, Func. Count: 10, Neg. LLF: 110.08379167698553
Iteration: 2, Func. Count: 21, Neg. LLF: 143.82391553562556
Iteration: 3, Func. Count: 31, Neg. LLF: 461.82165755374865
Iteration: 4, Func. Count: 41, Neg. LLF: 183.07431224921666
Iteration: 5, Func. Count: 51, Neg. LLF: 142.8015651389642
Iteration: 6, Func. Count: 61, Neg. LLF: 102.75884147618066
Iteration: 7, Func. Count: 71, Neg. LLF: 101.27998522583441
Iteration: 8, Func. Count: 81, Neg. LLF: 92.75696816849828
Iteration: 9, Func. Count: 91, Neg. LLF: 95.2880765802963
Iteration: 10, Func. Count: 101, Neg. LLF: 92.52972879293594
Iteration: 11, Func. Count: 111, Neg. LLF: 92.38579273335372
Iteration: 12, Func. Count: 120, Neg. LLF: 92.23999287662423
Iteration: 13, Func. Count: 129, Neg. LLF: 92.19608767877527
Iteration: 14, Func. Count: 138, Neg. LLF: 92.17668127582789
Iteration: 15, Func. Count: 147, Neg. LLF: 92.17253197895886
Iteration: 16, Func. Count: 156, Neg. LLF: 92.17228151022147
Iteration: 17, Func. Count: 165, Neg. LLF: 92.172272348277
Iteration: 18, Func. Count: 173, Neg. LLF: 92.17227230959944
Optimization terminated successfully (Exit mode 0)
Current function value: 92.172272348277
Iterations: 18
Function evaluations: 173
Gradient evaluations: 18
Iteration: 1, Func. Count: 11, Neg. LLF: 165.22263399984672
Iteration: 2, Func. Count: 23, Neg. LLF: 2127.116919974001
Iteration: 3, Func. Count: 34, Neg. LLF: 713.3376950549277
Iteration: 4, Func. Count: 45, Neg. LLF: 93.2924513837741
Iteration: 5, Func. Count: 56, Neg. LLF: 102.29092826425659
Iteration: 6, Func. Count: 67, Neg. LLF: 90.34280367659974
Iteration: 7, Func. Count: 79, Neg. LLF: 90.3991490788426
Iteration: 8, Func. Count: 90, Neg. LLF: 89.69801241397747
Iteration: 9, Func. Count: 101, Neg. LLF: 89.27233074079878
Iteration: 10, Func. Count: 111, Neg. LLF: 89.28045836018354
Iteration: 11, Func. Count: 122, Neg. LLF: 89.45787071111515
Iteration: 12, Func. Count: 133, Neg. LLF: 89.42542891897979
Iteration: 13, Func. Count: 144, Neg. LLF: 89.22857601786293
Iteration: 14, Func. Count: 154, Neg. LLF: 89.22827901469421
Iteration: 15, Func. Count: 164, Neg. LLF: 89.22810554139315
Iteration: 16, Func. Count: 174, Neg. LLF: 89.22810499207827
Optimization terminated successfully (Exit mode 0)
Current function value: 89.22810499207827
Iterations: 16
Function evaluations: 174
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 2169740.325911162
Iteration: 2, Func. Count: 25, Neg. LLF: 1685.7806340851762
Iteration: 3, Func. Count: 37, Neg. LLF: 289.19898538014723
Iteration: 4, Func. Count: 49, Neg. LLF: 90.7527082395173
Iteration: 5, Func. Count: 61, Neg. LLF: 94.95839470423968
Iteration: 6, Func. Count: 73, Neg. LLF: 89.14464910271016
Iteration: 7, Func. Count: 85, Neg. LLF: 88.72659168234516
Iteration: 8, Func. Count: 97, Neg. LLF: 88.78405930312456
Iteration: 9, Func. Count: 109, Neg. LLF: 88.15308671399664
Iteration: 10, Func. Count: 120, Neg. LLF: 88.40096336397556
Iteration: 11, Func. Count: 132, Neg. LLF: 88.15362382850145
Iteration: 12, Func. Count: 144, Neg. LLF: 88.13546767751306
Iteration: 13, Func. Count: 155, Neg. LLF: 88.13436906200384
Iteration: 14, Func. Count: 166, Neg. LLF: 88.13434974612031
Iteration: 15, Func. Count: 177, Neg. LLF: 88.13434768686433
Iteration: 16, Func. Count: 187, Neg. LLF: 88.13434762761786
Optimization terminated successfully (Exit mode 0)
Current function value: 88.13434768686433
Iterations: 16
Function evaluations: 187
Gradient evaluations: 16
Iteration: 1, Func. Count: 13, Neg. LLF: 1842491.3364650963
Iteration: 2, Func. Count: 26, Neg. LLF: 4338733.400434696
Iteration: 3, Func. Count: 39, Neg. LLF: 326.23226297940977
Iteration: 4, Func. Count: 52, Neg. LLF: 549.9282007119684
Iteration: 5, Func. Count: 65, Neg. LLF: 92.7820229080112
Iteration: 6, Func. Count: 78, Neg. LLF: 91.03803516985154
Iteration: 7, Func. Count: 92, Neg. LLF: 88.56705027864457
Iteration: 8, Func. Count: 104, Neg. LLF: 100.45831213684197
Iteration: 9, Func. Count: 117, Neg. LLF: 88.22648448139836
Iteration: 10, Func. Count: 129, Neg. LLF: 88.15007466803279
Iteration: 11, Func. Count: 141, Neg. LLF: 88.35707829057887
Iteration: 12, Func. Count: 154, Neg. LLF: 88.17373303559536
Iteration: 13, Func. Count: 167, Neg. LLF: 88.13651011564586
Iteration: 14, Func. Count: 180, Neg. LLF: 88.13437697110905
Iteration: 15, Func. Count: 192, Neg. LLF: 88.1343502628582
Iteration: 16, Func. Count: 204, Neg. LLF: 88.13434799692374
Iteration: 17, Func. Count: 215, Neg. LLF: 88.13434808693059
Optimization terminated successfully (Exit mode 0)
Current function value: 88.13434799692374
Iterations: 17
Function evaluations: 215
Gradient evaluations: 17
Iteration: 1, Func. Count: 14, Neg. LLF: 1495586.6349657339
Iteration: 2, Func. Count: 28, Neg. LLF: 4612479.879342306
Iteration: 3, Func. Count: 42, Neg. LLF: 691.6550978419477
Iteration: 4, Func. Count: 56, Neg. LLF: 688.4004023725644
Iteration: 5, Func. Count: 70, Neg. LLF: 92.81224080493786
Iteration: 6, Func. Count: 84, Neg. LLF: 90.25176141585776
Iteration: 7, Func. Count: 98, Neg. LLF: 88.51017289448568
Iteration: 8, Func. Count: 111, Neg. LLF: 2411.009333219903
Iteration: 9, Func. Count: 125, Neg. LLF: 92.55429639131015
Iteration: 10, Func. Count: 139, Neg. LLF: 88.4848831987963
Iteration: 11, Func. Count: 153, Neg. LLF: 88.13981090992762
Iteration: 12, Func. Count: 166, Neg. LLF: 88.13503558559793
Iteration: 13, Func. Count: 179, Neg. LLF: 88.13445121559113
Iteration: 14, Func. Count: 192, Neg. LLF: 88.13435937233446
Iteration: 15, Func. Count: 205, Neg. LLF: 88.13434825101945
Iteration: 16, Func. Count: 218, Neg. LLF: 88.13434768615805
Optimization terminated successfully (Exit mode 0)
Current function value: 88.13434768615805
Iterations: 16
Function evaluations: 218
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 106.5855853188141
Iteration: 2, Func. Count: 23, Neg. LLF: 130.00905808432287
Iteration: 3, Func. Count: 35, Neg. LLF: 1231.1506070135874
Iteration: 4, Func. Count: 46, Neg. LLF: 149.60728834207626
Iteration: 5, Func. Count: 57, Neg. LLF: 154.9386054960167
Iteration: 6, Func. Count: 68, Neg. LLF: 115.73201140873766
Iteration: 7, Func. Count: 79, Neg. LLF: 96.92011169067823
Iteration: 8, Func. Count: 90, Neg. LLF: 92.32711021088132
Iteration: 9, Func. Count: 101, Neg. LLF: 93.30338958130503
Iteration: 10, Func. Count: 112, Neg. LLF: 90.46228036177925
Iteration: 11, Func. Count: 122, Neg. LLF: 90.45350412898347
Iteration: 12, Func. Count: 133, Neg. LLF: 90.2646455894698
Iteration: 13, Func. Count: 143, Neg. LLF: 90.26336351804275
Iteration: 14, Func. Count: 153, Neg. LLF: 90.26294122949618
Iteration: 15, Func. Count: 163, Neg. LLF: 90.26291261878093
Iteration: 16, Func. Count: 173, Neg. LLF: 90.26290658119365
Iteration: 17, Func. Count: 182, Neg. LLF: 90.26290657399497
Optimization terminated successfully (Exit mode 0)
Current function value: 90.26290658119365
Iterations: 17
Function evaluations: 182
Gradient evaluations: 17
Iteration: 1, Func. Count: 12, Neg. LLF: 1905.1601834804962
Iteration: 2, Func. Count: 25, Neg. LLF: 3705415.213025838
Iteration: 3, Func. Count: 37, Neg. LLF: 416.0205013537808
Iteration: 4, Func. Count: 49, Neg. LLF: 103.89476940936963
Iteration: 5, Func. Count: 61, Neg. LLF: 96.49156197232521
Iteration: 6, Func. Count: 73, Neg. LLF: 93.60293259254188
Iteration: 7, Func. Count: 86, Neg. LLF: 89.37421933410381
Iteration: 8, Func. Count: 97, Neg. LLF: 95.1723457530448
Iteration: 9, Func. Count: 109, Neg. LLF: 89.56591672831763
Iteration: 10, Func. Count: 121, Neg. LLF: 98.74647000519272
Iteration: 11, Func. Count: 134, Neg. LLF: 89.57483798416133
Iteration: 12, Func. Count: 146, Neg. LLF: 89.22939660042594
Iteration: 13, Func. Count: 157, Neg. LLF: 89.23678413488648
Iteration: 14, Func. Count: 169, Neg. LLF: 89.22872999685372
Iteration: 15, Func. Count: 180, Neg. LLF: 89.22811502771752
Iteration: 16, Func. Count: 191, Neg. LLF: 89.22810763589558
Iteration: 17, Func. Count: 202, Neg. LLF: 89.22810495868411
Iteration: 18, Func. Count: 212, Neg. LLF: 89.22810495867425
Optimization terminated successfully (Exit mode 0)
Current function value: 89.22810495868411
Iterations: 18
Function evaluations: 212
Gradient evaluations: 18
Iteration: 1, Func. Count: 13, Neg. LLF: 2104413.132116477
Iteration: 2, Func. Count: 27, Neg. LLF: 3347388.8611528124
Iteration: 3, Func. Count: 40, Neg. LLF: 211.3911839789607
Iteration: 4, Func. Count: 53, Neg. LLF: 92.24526533807962
Iteration: 5, Func. Count: 66, Neg. LLF: 98.62398576295593
Iteration: 6, Func. Count: 79, Neg. LLF: 89.19512308642454
Iteration: 7, Func. Count: 91, Neg. LLF: 90.71127087310529
Iteration: 8, Func. Count: 104, Neg. LLF: 89.91220390131387
Iteration: 9, Func. Count: 117, Neg. LLF: 89.39123629177453
Iteration: 10, Func. Count: 130, Neg. LLF: 88.21248315921265
Iteration: 11, Func. Count: 142, Neg. LLF: 88.87996909814214
Iteration: 12, Func. Count: 155, Neg. LLF: 88.62772240646132
Iteration: 13, Func. Count: 168, Neg. LLF: 88.14125815918621
Iteration: 14, Func. Count: 180, Neg. LLF: 88.13475540719853
Iteration: 15, Func. Count: 192, Neg. LLF: 88.13444449258589
Iteration: 16, Func. Count: 204, Neg. LLF: 88.13435007601576
Iteration: 17, Func. Count: 216, Neg. LLF: 88.1343483386422
Iteration: 18, Func. Count: 228, Neg. LLF: 88.13434767314325
Optimization terminated successfully (Exit mode 0)
Current function value: 88.13434767314325
Iterations: 18
Function evaluations: 228
Gradient evaluations: 18
Iteration: 1, Func. Count: 14, Neg. LLF: 1755102.3233703307
Iteration: 2, Func. Count: 28, Neg. LLF: 4545850.101323719
Iteration: 3, Func. Count: 42, Neg. LLF: 554.7062442995365
Iteration: 4, Func. Count: 56, Neg. LLF: 1284.1719552853879
Iteration: 5, Func. Count: 70, Neg. LLF: 92.54926755259969
Iteration: 6, Func. Count: 84, Neg. LLF: 92.00765286730122
Iteration: 7, Func. Count: 99, Neg. LLF: 88.59644510925514
Iteration: 8, Func. Count: 112, Neg. LLF: 92.19234133142905
Iteration: 9, Func. Count: 126, Neg. LLF: 88.23048193368854
Iteration: 10, Func. Count: 139, Neg. LLF: 88.33649500346185
Iteration: 11, Func. Count: 153, Neg. LLF: 88.67089736854012
Iteration: 12, Func. Count: 167, Neg. LLF: 88.17113563871254
Iteration: 13, Func. Count: 181, Neg. LLF: 88.13608235031997
Iteration: 14, Func. Count: 194, Neg. LLF: 88.13458440567916
Iteration: 15, Func. Count: 207, Neg. LLF: 88.1343693421906
Iteration: 16, Func. Count: 220, Neg. LLF: 88.1343505382058
Iteration: 17, Func. Count: 233, Neg. LLF: 88.13434787310372
Iteration: 18, Func. Count: 245, Neg. LLF: 88.13434796313574
Optimization terminated successfully (Exit mode 0)
Current function value: 88.13434787310372
Iterations: 18
Function evaluations: 245
Gradient evaluations: 18
Iteration: 1, Func. Count: 15, Neg. LLF: 1435956.3958804908
Iteration: 2, Func. Count: 30, Neg. LLF: 3230806.4424361656
Iteration: 3, Func. Count: 45, Neg. LLF: 9649.844523820968
Iteration: 4, Func. Count: 60, Neg. LLF: 526.2539038061632
Iteration: 5, Func. Count: 75, Neg. LLF: 92.57819447108015
Iteration: 6, Func. Count: 90, Neg. LLF: 90.01868993356969
Iteration: 7, Func. Count: 105, Neg. LLF: 88.55393125962232
Iteration: 8, Func. Count: 119, Neg. LLF: 334.6112735244928
Iteration: 9, Func. Count: 134, Neg. LLF: 91.87121948998494
Iteration: 10, Func. Count: 149, Neg. LLF: 89.30009047665574
Iteration: 11, Func. Count: 164, Neg. LLF: 88.1672864525527
Iteration: 12, Func. Count: 178, Neg. LLF: 88.13893484484147
Iteration: 13, Func. Count: 192, Neg. LLF: 88.13982600753046
Iteration: 14, Func. Count: 207, Neg. LLF: 88.13593475387195
Iteration: 15, Func. Count: 222, Neg. LLF: 88.134457850668
Iteration: 16, Func. Count: 236, Neg. LLF: 88.13436064362651
Iteration: 17, Func. Count: 250, Neg. LLF: 88.13434868400664
Iteration: 18, Func. Count: 264, Neg. LLF: 88.13434768013656
Iteration: 19, Func. Count: 277, Neg. LLF: 88.13434762793271
Optimization terminated successfully (Exit mode 0)
Current function value: 88.13434768013656
Iterations: 19
Function evaluations: 277
Gradient evaluations: 19
Iteration: 1, Func. Count: 8, Neg. LLF: 109.10361163190002
Iteration: 2, Func. Count: 17, Neg. LLF: 120.85397026028404
Iteration: 3, Func. Count: 25, Neg. LLF: 103.4805696090002
Iteration: 4, Func. Count: 33, Neg. LLF: 138.08660729080185
Iteration: 5, Func. Count: 41, Neg. LLF: 153.233717402813
Iteration: 6, Func. Count: 49, Neg. LLF: 117.06158315430002
Iteration: 7, Func. Count: 57, Neg. LLF: 104.53909183218681
Iteration: 8, Func. Count: 65, Neg. LLF: 98.00805397361135
Iteration: 9, Func. Count: 73, Neg. LLF: 108.92663823709286
Iteration: 10, Func. Count: 81, Neg. LLF: 94.82652179466199
Iteration: 11, Func. Count: 89, Neg. LLF: 110.22916190733886
Iteration: 12, Func. Count: 97, Neg. LLF: 95.96636124623937
Iteration: 13, Func. Count: 105, Neg. LLF: 89.68880282732242
Iteration: 14, Func. Count: 113, Neg. LLF: 89.46803070808032
Iteration: 15, Func. Count: 120, Neg. LLF: 89.46234280548704
Iteration: 16, Func. Count: 127, Neg. LLF: 89.46095044803396
Iteration: 17, Func. Count: 134, Neg. LLF: 89.46084626193104
Iteration: 18, Func. Count: 141, Neg. LLF: 89.46083592060357
Iteration: 19, Func. Count: 148, Neg. LLF: 89.46083464271568
Iteration: 20, Func. Count: 154, Neg. LLF: 89.46083464271925
Optimization terminated successfully (Exit mode 0)
Current function value: 89.46083464271568
Iterations: 20
Function evaluations: 154
Gradient evaluations: 20
Iteration: 1, Func. Count: 9, Neg. LLF: 503.15844039353186
Iteration: 2, Func. Count: 18, Neg. LLF: 761.2904509395422
Iteration: 3, Func. Count: 27, Neg. LLF: 244753.89645361455
Iteration: 4, Func. Count: 37, Neg. LLF: 103.37031270697186
Iteration: 5, Func. Count: 46, Neg. LLF: 99.87182154439971
Iteration: 6, Func. Count: 55, Neg. LLF: 105.12341587310206
Iteration: 7, Func. Count: 64, Neg. LLF: 91.68261962755611
Iteration: 8, Func. Count: 73, Neg. LLF: 90.01945504503804
Iteration: 9, Func. Count: 82, Neg. LLF: 89.54359815332836
Iteration: 10, Func. Count: 90, Neg. LLF: 89.47460087015574
Iteration: 11, Func. Count: 98, Neg. LLF: 89.46305607590178
Iteration: 12, Func. Count: 106, Neg. LLF: 89.46175318092425
Iteration: 13, Func. Count: 114, Neg. LLF: 89.46084127620027
Iteration: 14, Func. Count: 122, Neg. LLF: 89.46083576365412
Iteration: 15, Func. Count: 130, Neg. LLF: 89.46083494599131
Optimization terminated successfully (Exit mode 0)
Current function value: 89.46083494599131
Iterations: 15
Function evaluations: 130
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 156.05096376187782
Iteration: 2, Func. Count: 20, Neg. LLF: 110.6279779429771
Iteration: 3, Func. Count: 30, Neg. LLF: 95.27309417685468
Iteration: 4, Func. Count: 41, Neg. LLF: 109.81812632478119
Iteration: 5, Func. Count: 51, Neg. LLF: 98.02640749488113
Iteration: 6, Func. Count: 61, Neg. LLF: 91.10091197092319
Iteration: 7, Func. Count: 71, Neg. LLF: 90.9415474930274
Iteration: 8, Func. Count: 81, Neg. LLF: 90.95663470973453
Iteration: 9, Func. Count: 91, Neg. LLF: 90.0421137646798
Iteration: 10, Func. Count: 101, Neg. LLF: 89.4785277038231
Iteration: 11, Func. Count: 110, Neg. LLF: 89.51424708034898
Iteration: 12, Func. Count: 120, Neg. LLF: 89.49262941884436
Iteration: 13, Func. Count: 130, Neg. LLF: 89.4613400804525
Iteration: 14, Func. Count: 139, Neg. LLF: 89.46076673975965
Iteration: 15, Func. Count: 148, Neg. LLF: 89.46073003843559
Iteration: 16, Func. Count: 157, Neg. LLF: 89.46072852005202
Iteration: 17, Func. Count: 165, Neg. LLF: 89.46072852003316
Optimization terminated successfully (Exit mode 0)
Current function value: 89.46072852005202
Iterations: 17
Function evaluations: 165
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 139.45970759802373
Iteration: 2, Func. Count: 22, Neg. LLF: 1817.0612137011428
Iteration: 3, Func. Count: 33, Neg. LLF: 136.7710899979779
Iteration: 4, Func. Count: 44, Neg. LLF: 740.389639302238
Iteration: 5, Func. Count: 55, Neg. LLF: 118.20934721869918
Iteration: 6, Func. Count: 66, Neg. LLF: 90.49853299521303
Iteration: 7, Func. Count: 77, Neg. LLF: 91.68092946630154
Iteration: 8, Func. Count: 88, Neg. LLF: 90.81234766664774
Iteration: 9, Func. Count: 99, Neg. LLF: 90.10686575764294
Iteration: 10, Func. Count: 110, Neg. LLF: 89.53519149176141
Iteration: 11, Func. Count: 120, Neg. LLF: 89.46726305652591
Iteration: 12, Func. Count: 130, Neg. LLF: 89.46280407265895
Iteration: 13, Func. Count: 140, Neg. LLF: 89.46164197767814
Iteration: 14, Func. Count: 150, Neg. LLF: 89.46107895457668
Iteration: 15, Func. Count: 160, Neg. LLF: 89.46084578596361
Iteration: 16, Func. Count: 170, Neg. LLF: 89.46073088873476
Iteration: 17, Func. Count: 180, Neg. LLF: 89.46072856730333
Iteration: 18, Func. Count: 189, Neg. LLF: 89.46072858932722
Optimization terminated successfully (Exit mode 0)
Current function value: 89.46072856730333
Iterations: 18
Function evaluations: 189
Gradient evaluations: 18
Iteration: 1, Func. Count: 12, Neg. LLF: 268810.86793933273
Iteration: 2, Func. Count: 24, Neg. LLF: 882.0270915062061
Iteration: 3, Func. Count: 36, Neg. LLF: 136.92473513656222
Iteration: 4, Func. Count: 48, Neg. LLF: 106.9807062765779
Iteration: 5, Func. Count: 60, Neg. LLF: 162.3688754462931
Iteration: 6, Func. Count: 72, Neg. LLF: 95.2009076913517
Iteration: 7, Func. Count: 84, Neg. LLF: 102.85661038420551
Iteration: 8, Func. Count: 96, Neg. LLF: 89.90441926337171
Iteration: 9, Func. Count: 107, Neg. LLF: 90.27168264135473
Iteration: 10, Func. Count: 119, Neg. LLF: 94.66931198517037
Iteration: 11, Func. Count: 131, Neg. LLF: 89.79290437089563
Iteration: 12, Func. Count: 143, Neg. LLF: 89.54998831126065
Iteration: 13, Func. Count: 155, Neg. LLF: 89.47875230419055
Iteration: 14, Func. Count: 167, Neg. LLF: 89.45495162870043
Iteration: 15, Func. Count: 178, Neg. LLF: 89.45449601536725
Iteration: 16, Func. Count: 189, Neg. LLF: 89.45443941204599
Iteration: 17, Func. Count: 199, Neg. LLF: 89.45443941209228
Optimization terminated successfully (Exit mode 0)
Current function value: 89.45443941204599
Iterations: 17
Function evaluations: 199
Gradient evaluations: 17
Iteration: 1, Func. Count: 9, Neg. LLF: 109.59911747610019
Iteration: 2, Func. Count: 19, Neg. LLF: 119.48636242342118
Iteration: 3, Func. Count: 28, Neg. LLF: 108.7358926644571
Iteration: 4, Func. Count: 37, Neg. LLF: 148.94666801365378
Iteration: 5, Func. Count: 46, Neg. LLF: 131.1458594645164
Iteration: 6, Func. Count: 55, Neg. LLF: 122.09434268752226
Iteration: 7, Func. Count: 64, Neg. LLF: 120.72865201190221
Iteration: 8, Func. Count: 73, Neg. LLF: 100.00731809274325
Iteration: 9, Func. Count: 82, Neg. LLF: 179.05251449134178
Iteration: 10, Func. Count: 91, Neg. LLF: 97.59450650667674
Iteration: 11, Func. Count: 100, Neg. LLF: 94.98173832629588
Iteration: 12, Func. Count: 109, Neg. LLF: 155.4112384769588
Iteration: 13, Func. Count: 118, Neg. LLF: 94.97187145287864
Iteration: 14, Func. Count: 127, Neg. LLF: 89.93705789293095
Iteration: 15, Func. Count: 136, Neg. LLF: 89.45329244976325
Iteration: 16, Func. Count: 144, Neg. LLF: 89.44024618906701
Iteration: 17, Func. Count: 152, Neg. LLF: 89.4341252664244
Iteration: 18, Func. Count: 160, Neg. LLF: 89.43220738730801
Iteration: 19, Func. Count: 168, Neg. LLF: 89.43205178789569
Iteration: 20, Func. Count: 176, Neg. LLF: 89.43204028596254
Iteration: 21, Func. Count: 184, Neg. LLF: 89.43203888098716
Iteration: 22, Func. Count: 191, Neg. LLF: 89.43203888099418
Optimization terminated successfully (Exit mode 0)
Current function value: 89.43203888098716
Iterations: 22
Function evaluations: 191
Gradient evaluations: 22
Iteration: 1, Func. Count: 10, Neg. LLF: 353.7696639635
Iteration: 2, Func. Count: 21, Neg. LLF: 440.7368652047757
Iteration: 3, Func. Count: 31, Neg. LLF: 141.37657290037848
Iteration: 4, Func. Count: 41, Neg. LLF: 95.2896730021233
Iteration: 5, Func. Count: 51, Neg. LLF: 92.17283560081248
Iteration: 6, Func. Count: 61, Neg. LLF: 90.66714390232738
Iteration: 7, Func. Count: 71, Neg. LLF: 101.4720500640211
Iteration: 8, Func. Count: 81, Neg. LLF: 90.41657646009217
Iteration: 9, Func. Count: 91, Neg. LLF: 91.34163791962884
Iteration: 10, Func. Count: 101, Neg. LLF: 89.50451303287377
Iteration: 11, Func. Count: 110, Neg. LLF: 89.43786530806351
Iteration: 12, Func. Count: 119, Neg. LLF: 89.43278015490566
Iteration: 13, Func. Count: 128, Neg. LLF: 89.43211992306317
Iteration: 14, Func. Count: 137, Neg. LLF: 89.43205344507162
Iteration: 15, Func. Count: 146, Neg. LLF: 89.4320406690892
Iteration: 16, Func. Count: 155, Neg. LLF: 89.43203872897246
Iteration: 17, Func. Count: 163, Neg. LLF: 89.43203874416584
Optimization terminated successfully (Exit mode 0)
Current function value: 89.43203872897246
Iterations: 17
Function evaluations: 163
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 167.2571331683762
Iteration: 2, Func. Count: 23, Neg. LLF: 743.772803374015
Iteration: 3, Func. Count: 34, Neg. LLF: 1321.4009121648685
Iteration: 4, Func. Count: 45, Neg. LLF: 106.16299928003265
Iteration: 5, Func. Count: 56, Neg. LLF: 102.85805942480636
Iteration: 6, Func. Count: 67, Neg. LLF: 91.1815587909825
Iteration: 7, Func. Count: 79, Neg. LLF: 91.26546147510186
Iteration: 8, Func. Count: 90, Neg. LLF: 107.36393408799478
Iteration: 9, Func. Count: 101, Neg. LLF: 89.99942072508232
Iteration: 10, Func. Count: 112, Neg. LLF: 89.7810005896723
Iteration: 11, Func. Count: 123, Neg. LLF: 89.54988911546208
Iteration: 12, Func. Count: 134, Neg. LLF: 89.4385916935792
Iteration: 13, Func. Count: 144, Neg. LLF: 89.43294772673124
Iteration: 14, Func. Count: 154, Neg. LLF: 89.432302281777
Iteration: 15, Func. Count: 164, Neg. LLF: 89.43210155087881
Iteration: 16, Func. Count: 174, Neg. LLF: 89.43205496154116
Iteration: 17, Func. Count: 184, Neg. LLF: 89.43204110092988
Iteration: 18, Func. Count: 194, Neg. LLF: 89.43203877774694
Iteration: 19, Func. Count: 203, Neg. LLF: 89.43203878415775
Optimization terminated successfully (Exit mode 0)
Current function value: 89.43203877774694
Iterations: 19
Function evaluations: 203
Gradient evaluations: 19
Iteration: 1, Func. Count: 12, Neg. LLF: 160.60418409456432
Iteration: 2, Func. Count: 25, Neg. LLF: 2195.705030907634
Iteration: 3, Func. Count: 37, Neg. LLF: 282.5926463375963
Iteration: 4, Func. Count: 49, Neg. LLF: 1017.2526043913513
Iteration: 5, Func. Count: 61, Neg. LLF: 100.51488764831012
Iteration: 6, Func. Count: 73, Neg. LLF: 90.8318159201324
Iteration: 7, Func. Count: 85, Neg. LLF: 90.86486363216996
Iteration: 8, Func. Count: 97, Neg. LLF: 90.14383725014322
Iteration: 9, Func. Count: 109, Neg. LLF: 103.45074328914556
Iteration: 10, Func. Count: 122, Neg. LLF: 89.4582520280464
Iteration: 11, Func. Count: 133, Neg. LLF: 89.85290686387991
Iteration: 12, Func. Count: 145, Neg. LLF: 89.44895049707858
Iteration: 13, Func. Count: 157, Neg. LLF: 89.43211056891866
Iteration: 14, Func. Count: 168, Neg. LLF: 89.43204422324581
Iteration: 15, Func. Count: 179, Neg. LLF: 89.43203954271497
Iteration: 16, Func. Count: 190, Neg. LLF: 89.43203865878776
Optimization terminated successfully (Exit mode 0)
Current function value: 89.43203865878776
Iterations: 16
Function evaluations: 190
Gradient evaluations: 16
Iteration: 1, Func. Count: 13, Neg. LLF: 146.45561519873362
Iteration: 2, Func. Count: 27, Neg. LLF: 46871.987182127945
Iteration: 3, Func. Count: 40, Neg. LLF: 362.98669952119326
Iteration: 4, Func. Count: 53, Neg. LLF: 471.15989213054934
Iteration: 5, Func. Count: 66, Neg. LLF: 96.84385465873211
Iteration: 6, Func. Count: 79, Neg. LLF: 102.59654963401532
Iteration: 7, Func. Count: 92, Neg. LLF: 97.51304395819915
Iteration: 8, Func. Count: 105, Neg. LLF: 90.20310307398739
Iteration: 9, Func. Count: 118, Neg. LLF: 89.47390385172693
Iteration: 10, Func. Count: 130, Neg. LLF: 89.48626101469073
Iteration: 11, Func. Count: 143, Neg. LLF: 89.9786759102891
Iteration: 12, Func. Count: 156, Neg. LLF: 89.46561325381764
Iteration: 13, Func. Count: 169, Neg. LLF: 89.43216523732826
Iteration: 14, Func. Count: 181, Neg. LLF: 89.43204394528576
Iteration: 15, Func. Count: 193, Neg. LLF: 89.43203963705966
Iteration: 16, Func. Count: 205, Neg. LLF: 89.43203869390834
Optimization terminated successfully (Exit mode 0)
Current function value: 89.43203869390834
Iterations: 16
Function evaluations: 205
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 109.25630869128487
Iteration: 2, Func. Count: 21, Neg. LLF: 92.53661397977822
Iteration: 3, Func. Count: 31, Neg. LLF: 149.43448958560276
Iteration: 4, Func. Count: 41, Neg. LLF: 102.41205666704006
Iteration: 5, Func. Count: 51, Neg. LLF: 119.25495655594746
Iteration: 6, Func. Count: 61, Neg. LLF: 95.761729404676
Iteration: 7, Func. Count: 71, Neg. LLF: 106.0375568892534
Iteration: 8, Func. Count: 81, Neg. LLF: 96.79113415513302
Iteration: 9, Func. Count: 91, Neg. LLF: 99.94072727248682
Iteration: 10, Func. Count: 101, Neg. LLF: 96.6159076818128
Iteration: 11, Func. Count: 111, Neg. LLF: 105.61648077565255
Iteration: 12, Func. Count: 121, Neg. LLF: 89.17377067512234
Iteration: 13, Func. Count: 131, Neg. LLF: 87.61500700462875
Iteration: 14, Func. Count: 141, Neg. LLF: 87.38522450496906
Iteration: 15, Func. Count: 150, Neg. LLF: 87.36207775715565
Iteration: 16, Func. Count: 159, Neg. LLF: 87.35975734185922
Iteration: 17, Func. Count: 168, Neg. LLF: 87.35941368004367
Iteration: 18, Func. Count: 177, Neg. LLF: 87.35940106232597
Iteration: 19, Func. Count: 186, Neg. LLF: 87.35939835823316
Iteration: 20, Func. Count: 194, Neg. LLF: 87.35939834632163
Optimization terminated successfully (Exit mode 0)
Current function value: 87.35939835823316
Iterations: 20
Function evaluations: 194
Gradient evaluations: 20
Iteration: 1, Func. Count: 11, Neg. LLF: 44869.29687358706
Iteration: 2, Func. Count: 23, Neg. LLF: 1591.8590739850783
Iteration: 3, Func. Count: 34, Neg. LLF: 103.75731969141069
Iteration: 4, Func. Count: 45, Neg. LLF: 135.64807170205432
Iteration: 5, Func. Count: 56, Neg. LLF: 87.98600802701145
Iteration: 6, Func. Count: 66, Neg. LLF: 87.90842875938863
Iteration: 7, Func. Count: 77, Neg. LLF: 87.93286746967729
Iteration: 8, Func. Count: 88, Neg. LLF: 95.20794501088685
Iteration: 9, Func. Count: 99, Neg. LLF: 87.39485525114813
Iteration: 10, Func. Count: 109, Neg. LLF: 87.36255131126538
Iteration: 11, Func. Count: 119, Neg. LLF: 87.36047228000317
Iteration: 12, Func. Count: 129, Neg. LLF: 87.35951354431158
Iteration: 13, Func. Count: 139, Neg. LLF: 87.35940163349092
Iteration: 14, Func. Count: 149, Neg. LLF: 87.3593981596947
Iteration: 15, Func. Count: 158, Neg. LLF: 87.35939816933686
Optimization terminated successfully (Exit mode 0)
Current function value: 87.3593981596947
Iterations: 15
Function evaluations: 158
Gradient evaluations: 15
Iteration: 1, Func. Count: 12, Neg. LLF: 188885811.57440072
Iteration: 2, Func. Count: 24, Neg. LLF: 7438415.181647602
Iteration: 3, Func. Count: 36, Neg. LLF: 872.8645306322052
Iteration: 4, Func. Count: 48, Neg. LLF: 362.82256527954524
Iteration: 5, Func. Count: 60, Neg. LLF: 109.94220056551374
Iteration: 6, Func. Count: 72, Neg. LLF: 91.29312572726626
Iteration: 7, Func. Count: 85, Neg. LLF: 89.97169037175752
Iteration: 8, Func. Count: 97, Neg. LLF: 94.99648993309002
Iteration: 9, Func. Count: 109, Neg. LLF: 95.04255853770754
Iteration: 10, Func. Count: 121, Neg. LLF: 88.62766362716629
Iteration: 11, Func. Count: 133, Neg. LLF: 106.47215097985942
Iteration: 12, Func. Count: 145, Neg. LLF: 87.28813040045316
Iteration: 13, Func. Count: 156, Neg. LLF: 87.2300052020579
Iteration: 14, Func. Count: 167, Neg. LLF: 87.21599434707818
Iteration: 15, Func. Count: 178, Neg. LLF: 87.20762978235521
Iteration: 16, Func. Count: 189, Neg. LLF: 87.2061085874351
Iteration: 17, Func. Count: 200, Neg. LLF: 87.20584998275405
Iteration: 18, Func. Count: 211, Neg. LLF: 87.20577785873338
Iteration: 19, Func. Count: 222, Neg. LLF: 87.20577132681579
Iteration: 20, Func. Count: 232, Neg. LLF: 87.2057712872354
Optimization terminated successfully (Exit mode 0)
Current function value: 87.20577132681579
Iterations: 20
Function evaluations: 232
Gradient evaluations: 20
Iteration: 1, Func. Count: 13, Neg. LLF: 146648607.21352652
Iteration: 2, Func. Count: 26, Neg. LLF: 7582446.415834168
Iteration: 3, Func. Count: 39, Neg. LLF: 3789.817070975102
Iteration: 4, Func. Count: 52, Neg. LLF: 2225.4284798317253
Iteration: 5, Func. Count: 65, Neg. LLF: 105.70347702892099
Iteration: 6, Func. Count: 78, Neg. LLF: 88.87190115583041
Iteration: 7, Func. Count: 91, Neg. LLF: 89.9743841513625
Iteration: 8, Func. Count: 104, Neg. LLF: 87.80548257562826
Iteration: 9, Func. Count: 116, Neg. LLF: 96.03295493223642
Iteration: 10, Func. Count: 129, Neg. LLF: 93.22097309999131
Iteration: 11, Func. Count: 142, Neg. LLF: 87.42854232028878
Iteration: 12, Func. Count: 155, Neg. LLF: 87.2536639194805
Iteration: 13, Func. Count: 167, Neg. LLF: 87.26763266082827
Iteration: 14, Func. Count: 180, Neg. LLF: 87.21591338734123
Iteration: 15, Func. Count: 192, Neg. LLF: 87.20699368462998
Iteration: 16, Func. Count: 204, Neg. LLF: 87.2061438832983
Iteration: 17, Func. Count: 216, Neg. LLF: 87.20583213004464
Iteration: 18, Func. Count: 228, Neg. LLF: 87.20577757354135
Iteration: 19, Func. Count: 240, Neg. LLF: 87.2057722689415
Iteration: 20, Func. Count: 252, Neg. LLF: 87.2057710569222
Iteration: 21, Func. Count: 263, Neg. LLF: 87.20577114447524
Optimization terminated successfully (Exit mode 0)
Current function value: 87.2057710569222
Iterations: 21
Function evaluations: 263
Gradient evaluations: 21
Iteration: 1, Func. Count: 14, Neg. LLF: 116910746.15428978
Iteration: 2, Func. Count: 28, Neg. LLF: 7654951.681261807
Iteration: 3, Func. Count: 42, Neg. LLF: 635.4973355216534
Iteration: 4, Func. Count: 56, Neg. LLF: 13180.485754303692
Iteration: 5, Func. Count: 70, Neg. LLF: 100.46147736989217
Iteration: 6, Func. Count: 84, Neg. LLF: 89.53647748006794
Iteration: 7, Func. Count: 98, Neg. LLF: 89.3834923328374
Iteration: 8, Func. Count: 112, Neg. LLF: 92.47004413548873
Iteration: 9, Func. Count: 126, Neg. LLF: 87.35706427076931
Iteration: 10, Func. Count: 139, Neg. LLF: 87.36121818183913
Iteration: 11, Func. Count: 153, Neg. LLF: 88.44861012590685
Iteration: 12, Func. Count: 167, Neg. LLF: 86.85429754314703
Iteration: 13, Func. Count: 180, Neg. LLF: 86.78479051354496
Iteration: 14, Func. Count: 193, Neg. LLF: 86.77192985390568
Iteration: 15, Func. Count: 206, Neg. LLF: 86.77075637707048
Iteration: 16, Func. Count: 219, Neg. LLF: 86.77037682929331
Iteration: 17, Func. Count: 232, Neg. LLF: 86.77035198216001
Iteration: 18, Func. Count: 245, Neg. LLF: 86.77034501422109
Iteration: 19, Func. Count: 258, Neg. LLF: 86.77034029325324
Iteration: 20, Func. Count: 271, Neg. LLF: 86.7703381142422
Iteration: 21, Func. Count: 283, Neg. LLF: 86.77033807840147
Optimization terminated successfully (Exit mode 0)
Current function value: 86.7703381142422
Iterations: 21
Function evaluations: 283
Gradient evaluations: 21
Iteration: 1, Func. Count: 11, Neg. LLF: 110.44117341762556
Iteration: 2, Func. Count: 23, Neg. LLF: 108.61961841549476
Iteration: 3, Func. Count: 34, Neg. LLF: 357.2197575829423
Iteration: 4, Func. Count: 45, Neg. LLF: 101.08363368181563
Iteration: 5, Func. Count: 56, Neg. LLF: 121.89753529140239
Iteration: 6, Func. Count: 67, Neg. LLF: 123.84353639272268
Iteration: 7, Func. Count: 78, Neg. LLF: 128.58179220218312
Iteration: 8, Func. Count: 89, Neg. LLF: 105.54140958278725
Iteration: 9, Func. Count: 100, Neg. LLF: 100.69158638211375
Iteration: 10, Func. Count: 111, Neg. LLF: 97.00701981616353
Iteration: 11, Func. Count: 122, Neg. LLF: 94.54418171849429
Iteration: 12, Func. Count: 133, Neg. LLF: 89.37963795344508
Iteration: 13, Func. Count: 144, Neg. LLF: 92.55264854305422
Iteration: 14, Func. Count: 155, Neg. LLF: 87.55030581661546
Iteration: 15, Func. Count: 165, Neg. LLF: 87.42045111470782
Iteration: 16, Func. Count: 175, Neg. LLF: 87.41514791148816
Iteration: 17, Func. Count: 186, Neg. LLF: 87.39962017372227
Iteration: 18, Func. Count: 197, Neg. LLF: 87.35301534972999
Iteration: 19, Func. Count: 207, Neg. LLF: 87.35149269982531
Iteration: 20, Func. Count: 217, Neg. LLF: 87.35131981832379
Iteration: 21, Func. Count: 227, Neg. LLF: 87.35131166654432
Iteration: 22, Func. Count: 237, Neg. LLF: 87.35130749194622
Iteration: 23, Func. Count: 246, Neg. LLF: 87.35130745930185
Optimization terminated successfully (Exit mode 0)
Current function value: 87.35130749194622
Iterations: 23
Function evaluations: 246
Gradient evaluations: 23
Iteration: 1, Func. Count: 12, Neg. LLF: 2392766.605028546
Iteration: 2, Func. Count: 25, Neg. LLF: 3970407.4661706975
Iteration: 3, Func. Count: 37, Neg. LLF: 184.5218011384392
Iteration: 4, Func. Count: 49, Neg. LLF: 125.50660813162195
Iteration: 5, Func. Count: 61, Neg. LLF: 89.0052177075987
Iteration: 6, Func. Count: 72, Neg. LLF: 88.6685151361413
Iteration: 7, Func. Count: 84, Neg. LLF: 88.01591992668911
Iteration: 8, Func. Count: 95, Neg. LLF: 98.24651627517959
Iteration: 9, Func. Count: 108, Neg. LLF: 87.85060814604915
Iteration: 10, Func. Count: 120, Neg. LLF: 88.62275208215426
Iteration: 11, Func. Count: 132, Neg. LLF: 88.10932225120618
Iteration: 12, Func. Count: 144, Neg. LLF: 87.36309216985352
Iteration: 13, Func. Count: 155, Neg. LLF: 87.35314257536982
Iteration: 14, Func. Count: 166, Neg. LLF: 87.3515487126689
Iteration: 15, Func. Count: 177, Neg. LLF: 87.3513477771911
Iteration: 16, Func. Count: 188, Neg. LLF: 87.35131294877726
Iteration: 17, Func. Count: 199, Neg. LLF: 87.35130824189747
Iteration: 18, Func. Count: 210, Neg. LLF: 87.35130739672397
Optimization terminated successfully (Exit mode 0)
Current function value: 87.35130739672397
Iterations: 18
Function evaluations: 210
Gradient evaluations: 18
Iteration: 1, Func. Count: 13, Neg. LLF: 173907949.83472577
Iteration: 2, Func. Count: 26, Neg. LLF: 7488081.919345473
Iteration: 3, Func. Count: 39, Neg. LLF: 465.77419848732484
Iteration: 4, Func. Count: 52, Neg. LLF: 440.77106965909707
Iteration: 5, Func. Count: 65, Neg. LLF: 92.62896992860027
Iteration: 6, Func. Count: 78, Neg. LLF: 90.40270316866835
Iteration: 7, Func. Count: 92, Neg. LLF: 202.68530424591168
Iteration: 8, Func. Count: 105, Neg. LLF: 88.30127797630865
Iteration: 9, Func. Count: 118, Neg. LLF: 89.3766202029064
Iteration: 10, Func. Count: 131, Neg. LLF: 87.43790564828163
Iteration: 11, Func. Count: 143, Neg. LLF: 87.69766198834999
Iteration: 12, Func. Count: 156, Neg. LLF: 88.16314911140387
Iteration: 13, Func. Count: 169, Neg. LLF: 87.2137006220971
Iteration: 14, Func. Count: 181, Neg. LLF: 87.20738890640742
Iteration: 15, Func. Count: 193, Neg. LLF: 87.20622118088363
Iteration: 16, Func. Count: 205, Neg. LLF: 87.20585716281182
Iteration: 17, Func. Count: 217, Neg. LLF: 87.20579003293847
Iteration: 18, Func. Count: 229, Neg. LLF: 87.20577176803951
Iteration: 19, Func. Count: 241, Neg. LLF: 87.20577104622458
Optimization terminated successfully (Exit mode 0)
Current function value: 87.20577104622458
Iterations: 19
Function evaluations: 241
Gradient evaluations: 19
Iteration: 1, Func. Count: 14, Neg. LLF: 1659878.709726653
Iteration: 2, Func. Count: 28, Neg. LLF: 3212106.574977711
Iteration: 3, Func. Count: 42, Neg. LLF: 1971.4409577118836
Iteration: 4, Func. Count: 56, Neg. LLF: 486.19117225170424
Iteration: 5, Func. Count: 70, Neg. LLF: 105.31666665422125
Iteration: 6, Func. Count: 84, Neg. LLF: 88.50010857574806
Iteration: 7, Func. Count: 97, Neg. LLF: 90.38329745472947
Iteration: 8, Func. Count: 111, Neg. LLF: 93.16594302185851
Iteration: 9, Func. Count: 125, Neg. LLF: 91.85104232021605
Iteration: 10, Func. Count: 139, Neg. LLF: 87.69379075259191
Iteration: 11, Func. Count: 153, Neg. LLF: 89.91829262544603
Iteration: 12, Func. Count: 167, Neg. LLF: 90.06039081440868
Iteration: 13, Func. Count: 181, Neg. LLF: 91.1987158723677
Iteration: 14, Func. Count: 195, Neg. LLF: 87.91494989450369
Iteration: 15, Func. Count: 209, Neg. LLF: 87.21360967676941
Iteration: 16, Func. Count: 222, Neg. LLF: 87.20837570164127
Iteration: 17, Func. Count: 235, Neg. LLF: 87.20695385923233
Iteration: 18, Func. Count: 248, Neg. LLF: 87.2058386601322
Iteration: 19, Func. Count: 261, Neg. LLF: 87.20577810843741
Iteration: 20, Func. Count: 274, Neg. LLF: 87.20577229147902
Iteration: 21, Func. Count: 287, Neg. LLF: 87.20577149925475
Optimization terminated successfully (Exit mode 0)
Current function value: 87.20577149925475
Iterations: 21
Function evaluations: 287
Gradient evaluations: 21
Iteration: 1, Func. Count: 15, Neg. LLF: 1816102.3986909743
Iteration: 2, Func. Count: 30, Neg. LLF: 3401641.871550456
Iteration: 3, Func. Count: 45, Neg. LLF: 278.4465101914223
Iteration: 4, Func. Count: 60, Neg. LLF: 405.1735522062064
Iteration: 5, Func. Count: 75, Neg. LLF: 100.14710010170106
Iteration: 6, Func. Count: 90, Neg. LLF: 88.59826199851896
Iteration: 7, Func. Count: 105, Neg. LLF: 93.79729093736641
Iteration: 8, Func. Count: 120, Neg. LLF: 99.1680786184593
Iteration: 9, Func. Count: 135, Neg. LLF: 88.79905400987816
Iteration: 10, Func. Count: 150, Neg. LLF: 91.89631415072505
Iteration: 11, Func. Count: 165, Neg. LLF: 86.8764321046724
Iteration: 12, Func. Count: 179, Neg. LLF: 86.7874717429342
Iteration: 13, Func. Count: 193, Neg. LLF: 86.77506122300665
Iteration: 14, Func. Count: 207, Neg. LLF: 86.77100182570676
Iteration: 15, Func. Count: 221, Neg. LLF: 86.77051819082362
Iteration: 16, Func. Count: 235, Neg. LLF: 86.77036711284909
Iteration: 17, Func. Count: 249, Neg. LLF: 86.77033889545561
Iteration: 18, Func. Count: 263, Neg. LLF: 86.77033811160153
Optimization terminated successfully (Exit mode 0)
Current function value: 86.77033811160153
Iterations: 18
Function evaluations: 263
Gradient evaluations: 18
Iteration: 1, Func. Count: 12, Neg. LLF: 113.53613535857622
Iteration: 2, Func. Count: 25, Neg. LLF: 122.54777889778624
Iteration: 3, Func. Count: 37, Neg. LLF: 211.54375080935856
Iteration: 4, Func. Count: 49, Neg. LLF: 127.68967495273886
Iteration: 5, Func. Count: 61, Neg. LLF: 252.4418212332028
Iteration: 6, Func. Count: 73, Neg. LLF: 111.26912170613298
Iteration: 7, Func. Count: 85, Neg. LLF: 152.7286308942471
Iteration: 8, Func. Count: 97, Neg. LLF: 97.9626230421897
Iteration: 9, Func. Count: 109, Neg. LLF: 100.64383730185497
Iteration: 10, Func. Count: 121, Neg. LLF: 99.55795004605335
Iteration: 11, Func. Count: 133, Neg. LLF: 102.7478176828047
Iteration: 12, Func. Count: 145, Neg. LLF: 92.87822960311665
Iteration: 13, Func. Count: 157, Neg. LLF: 90.60845520088434
Iteration: 14, Func. Count: 169, Neg. LLF: 87.53263614316165
Iteration: 15, Func. Count: 180, Neg. LLF: 87.47728528090462
Iteration: 16, Func. Count: 192, Neg. LLF: 110.15479872876415
Iteration: 17, Func. Count: 205, Neg. LLF: 87.34549715732348
Iteration: 18, Func. Count: 216, Neg. LLF: 87.33779330966858
Iteration: 19, Func. Count: 227, Neg. LLF: 87.33629226962267
Iteration: 20, Func. Count: 238, Neg. LLF: 87.33600942528747
Iteration: 21, Func. Count: 249, Neg. LLF: 87.33594211219955
Iteration: 22, Func. Count: 260, Neg. LLF: 87.33593914506665
Iteration: 23, Func. Count: 270, Neg. LLF: 87.33593913191415
Optimization terminated successfully (Exit mode 0)
Current function value: 87.33593914506665
Iterations: 23
Function evaluations: 270
Gradient evaluations: 23
Iteration: 1, Func. Count: 13, Neg. LLF: 2162531.9550629784
Iteration: 2, Func. Count: 27, Neg. LLF: 3094767.8128893035
Iteration: 3, Func. Count: 40, Neg. LLF: 1541.2815023941723
Iteration: 4, Func. Count: 53, Neg. LLF: 249.16708345420076
Iteration: 5, Func. Count: 66, Neg. LLF: 110.40097404255886
Iteration: 6, Func. Count: 79, Neg. LLF: 89.89805954257935
Iteration: 7, Func. Count: 92, Neg. LLF: 88.99548544535779
Iteration: 8, Func. Count: 105, Neg. LLF: 89.58765444175033
Iteration: 9, Func. Count: 118, Neg. LLF: 88.39630747152788
Iteration: 10, Func. Count: 131, Neg. LLF: 87.7298674077583
Iteration: 11, Func. Count: 144, Neg. LLF: 87.49257617487152
Iteration: 12, Func. Count: 156, Neg. LLF: 90.39124209144356
Iteration: 13, Func. Count: 169, Neg. LLF: 87.36508678809018
Iteration: 14, Func. Count: 181, Neg. LLF: 87.3453032821075
Iteration: 15, Func. Count: 193, Neg. LLF: 87.33759730162916
Iteration: 16, Func. Count: 205, Neg. LLF: 87.33630621034133
Iteration: 17, Func. Count: 217, Neg. LLF: 87.33594205487604
Iteration: 18, Func. Count: 229, Neg. LLF: 87.33593887232692
Iteration: 19, Func. Count: 240, Neg. LLF: 87.33593888885619
Optimization terminated successfully (Exit mode 0)
Current function value: 87.33593887232692
Iterations: 19
Function evaluations: 240
Gradient evaluations: 19
Iteration: 1, Func. Count: 14, Neg. LLF: 169259358.66790026
Iteration: 2, Func. Count: 28, Neg. LLF: 7566151.529687846
Iteration: 3, Func. Count: 42, Neg. LLF: 4199048.404712663
Iteration: 4, Func. Count: 56, Neg. LLF: 233.90421575541913
Iteration: 5, Func. Count: 70, Neg. LLF: 106.4992992732868
Iteration: 6, Func. Count: 84, Neg. LLF: 95.5859842920865
Iteration: 7, Func. Count: 98, Neg. LLF: 218.85926549962178
Iteration: 8, Func. Count: 112, Neg. LLF: 88.43546995414209
Iteration: 9, Func. Count: 126, Neg. LLF: 89.32782324217017
Iteration: 10, Func. Count: 141, Neg. LLF: 89.4270710027613
Iteration: 11, Func. Count: 155, Neg. LLF: 87.70000561136325
Iteration: 12, Func. Count: 169, Neg. LLF: 87.29596816358212
Iteration: 13, Func. Count: 182, Neg. LLF: 87.16792675936325
Iteration: 14, Func. Count: 195, Neg. LLF: 87.14961818421408
Iteration: 15, Func. Count: 208, Neg. LLF: 87.14557238460858
Iteration: 16, Func. Count: 221, Neg. LLF: 87.14418039037052
Iteration: 17, Func. Count: 234, Neg. LLF: 87.14384220303666
Iteration: 18, Func. Count: 247, Neg. LLF: 87.14376178222041
Iteration: 19, Func. Count: 260, Neg. LLF: 87.14375479606232
Iteration: 20, Func. Count: 273, Neg. LLF: 87.14375372973161
Iteration: 21, Func. Count: 285, Neg. LLF: 87.14375368528262
Optimization terminated successfully (Exit mode 0)
Current function value: 87.14375372973161
Iterations: 21
Function evaluations: 285
Gradient evaluations: 21
Iteration: 1, Func. Count: 15, Neg. LLF: 1595715.7864507511
Iteration: 2, Func. Count: 30, Neg. LLF: 271.91342189074044
Iteration: 3, Func. Count: 45, Neg. LLF: 4211984.346047821
Iteration: 4, Func. Count: 60, Neg. LLF: 425.9631932245067
Iteration: 5, Func. Count: 75, Neg. LLF: 158.06113713143517
Iteration: 6, Func. Count: 90, Neg. LLF: 114.64825175540037
Iteration: 7, Func. Count: 105, Neg. LLF: 88.82727490062958
Iteration: 8, Func. Count: 120, Neg. LLF: 90.44260880159004
Iteration: 9, Func. Count: 135, Neg. LLF: 87.89094234899869
Iteration: 10, Func. Count: 150, Neg. LLF: 88.20076507639185
Iteration: 11, Func. Count: 165, Neg. LLF: 87.32480178786105
Iteration: 12, Func. Count: 179, Neg. LLF: 87.25065296358952
Iteration: 13, Func. Count: 193, Neg. LLF: 88.077972125472
Iteration: 14, Func. Count: 208, Neg. LLF: 87.52462506870502
Iteration: 15, Func. Count: 223, Neg. LLF: 87.15550151262349
Iteration: 16, Func. Count: 237, Neg. LLF: 87.14505121336539
Iteration: 17, Func. Count: 251, Neg. LLF: 87.14395303214631
Iteration: 18, Func. Count: 265, Neg. LLF: 87.14377796162837
Iteration: 19, Func. Count: 279, Neg. LLF: 87.1437561019384
Iteration: 20, Func. Count: 293, Neg. LLF: 87.14375379357686
Iteration: 21, Func. Count: 306, Neg. LLF: 87.14375389646074
Optimization terminated successfully (Exit mode 0)
Current function value: 87.14375379357686
Iterations: 21
Function evaluations: 306
Gradient evaluations: 21
Iteration: 1, Func. Count: 16, Neg. LLF: 3340.4810085838835
Iteration: 2, Func. Count: 32, Neg. LLF: 159.22080339584247
Iteration: 3, Func. Count: 48, Neg. LLF: 4214127.572045082
Iteration: 4, Func. Count: 64, Neg. LLF: 145.57321928529564
Iteration: 5, Func. Count: 80, Neg. LLF: 104.74762427099513
Iteration: 6, Func. Count: 96, Neg. LLF: 109.64577911044594
Iteration: 7, Func. Count: 112, Neg. LLF: 89.82925972166642
Iteration: 8, Func. Count: 128, Neg. LLF: 90.82196070729233
Iteration: 9, Func. Count: 144, Neg. LLF: 93.56022908998371
Iteration: 10, Func. Count: 160, Neg. LLF: 87.08282194016338
Iteration: 11, Func. Count: 175, Neg. LLF: 87.25100076782039
Iteration: 12, Func. Count: 191, Neg. LLF: 91.75559419740652
Iteration: 13, Func. Count: 207, Neg. LLF: 86.91702746003034
Iteration: 14, Func. Count: 223, Neg. LLF: 86.77717790068787
Iteration: 15, Func. Count: 238, Neg. LLF: 86.7639620676342
Iteration: 16, Func. Count: 253, Neg. LLF: 86.76174333657721
Iteration: 17, Func. Count: 268, Neg. LLF: 86.76105903812672
Iteration: 18, Func. Count: 283, Neg. LLF: 86.76100232925671
Iteration: 19, Func. Count: 298, Neg. LLF: 86.76099897923494
Iteration: 20, Func. Count: 312, Neg. LLF: 86.76099894188394
Optimization terminated successfully (Exit mode 0)
Current function value: 86.76099897923494
Iterations: 20
Function evaluations: 312
Gradient evaluations: 20
Iteration: 1, Func. Count: 8, Neg. LLF: 40645168.63267071
Iteration: 2, Func. Count: 16, Neg. LLF: 4260269.5184638845
Iteration: 3, Func. Count: 24, Neg. LLF: 93.28452170545306
Iteration: 4, Func. Count: 32, Neg. LLF: 97.89155483532724
Iteration: 5, Func. Count: 40, Neg. LLF: 89.78091952125395
Iteration: 6, Func. Count: 47, Neg. LLF: 147.02262765050637
Iteration: 7, Func. Count: 55, Neg. LLF: 100.66828605546158
Iteration: 8, Func. Count: 64, Neg. LLF: 89.0737849122646
Iteration: 9, Func. Count: 71, Neg. LLF: 89.0595081292126
Iteration: 10, Func. Count: 78, Neg. LLF: 89.05738278563669
Iteration: 11, Func. Count: 85, Neg. LLF: 89.05720558156861
Iteration: 12, Func. Count: 92, Neg. LLF: 89.0571595418836
Iteration: 13, Func. Count: 98, Neg. LLF: 89.05715947440059
Optimization terminated successfully (Exit mode 0)
Current function value: 89.0571595418836
Iterations: 13
Function evaluations: 98
Gradient evaluations: 13
Iteration: 1, Func. Count: 5, Neg. LLF: 124.70178964558832
Iteration: 2, Func. Count: 12, Neg. LLF: 102.44764457875287
Iteration: 3, Func. Count: 17, Neg. LLF: 96.95822957689037
Iteration: 4, Func. Count: 21, Neg. LLF: 96.8095552474356
Iteration: 5, Func. Count: 25, Neg. LLF: 96.78433651926287
Iteration: 6, Func. Count: 29, Neg. LLF: 96.78254256185518
Iteration: 7, Func. Count: 33, Neg. LLF: 96.78253624982142
Iteration: 8, Func. Count: 36, Neg. LLF: 96.78253627804345
Optimization terminated successfully (Exit mode 0)
Current function value: 96.78253624982142
Iterations: 8
Function evaluations: 36
Gradient evaluations: 8
Iteration: 1, Func. Count: 6, Neg. LLF: 44833029.3252171
Iteration: 2, Func. Count: 12, Neg. LLF: 256.56993072771854
Iteration: 3, Func. Count: 19, Neg. LLF: 95.93971764871053
Iteration: 4, Func. Count: 26, Neg. LLF: 92.82838224147858
Iteration: 5, Func. Count: 31, Neg. LLF: 92.82631644206522
Iteration: 6, Func. Count: 37, Neg. LLF: 92.79241330517492
Iteration: 7, Func. Count: 43, Neg. LLF: 92.78615630591341
Iteration: 8, Func. Count: 48, Neg. LLF: 92.7861538004716
Iteration: 9, Func. Count: 52, Neg. LLF: 92.78615375138264
Optimization terminated successfully (Exit mode 0)
Current function value: 92.7861538004716
Iterations: 9
Function evaluations: 52
Gradient evaluations: 9
Iteration: 1, Func. Count: 7, Neg. LLF: 26380634.402858175
Iteration: 2, Func. Count: 14, Neg. LLF: 106.43399776237541
Iteration: 3, Func. Count: 22, Neg. LLF: 95.12606879537744
Iteration: 4, Func. Count: 29, Neg. LLF: 93.26371666212303
Iteration: 5, Func. Count: 35, Neg. LLF: 92.7911198226117
Iteration: 6, Func. Count: 41, Neg. LLF: 92.78802060196318
Iteration: 7, Func. Count: 47, Neg. LLF: 92.7878013900001
Iteration: 8, Func. Count: 54, Neg. LLF: 92.7867002720516
Iteration: 9, Func. Count: 61, Neg. LLF: 92.78615375979636
Optimization terminated successfully (Exit mode 0)
Current function value: 92.78615375979636
Iterations: 9
Function evaluations: 61
Gradient evaluations: 9
Iteration: 1, Func. Count: 8, Neg. LLF: 153.32224399875943
Iteration: 2, Func. Count: 16, Neg. LLF: 736.6070737602696
Iteration: 3, Func. Count: 24, Neg. LLF: 99.82223970160146
Iteration: 4, Func. Count: 32, Neg. LLF: 93.55667873270451
Iteration: 5, Func. Count: 39, Neg. LLF: 105.46552473047015
Iteration: 6, Func. Count: 47, Neg. LLF: 92.80086470267258
Iteration: 7, Func. Count: 54, Neg. LLF: 92.78988964267702
Iteration: 8, Func. Count: 61, Neg. LLF: 92.78632439475534
Iteration: 9, Func. Count: 68, Neg. LLF: 92.7861555138459
Iteration: 10, Func. Count: 75, Neg. LLF: 92.78615378449406
Iteration: 11, Func. Count: 81, Neg. LLF: 92.78615377082598
Optimization terminated successfully (Exit mode 0)
Current function value: 92.78615378449406
Iterations: 11
Function evaluations: 81
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 103.95147424612352
Iteration: 2, Func. Count: 18, Neg. LLF: 110.10352690250696
Iteration: 3, Func. Count: 27, Neg. LLF: 112.40346253495123
Iteration: 4, Func. Count: 36, Neg. LLF: 118.57761478678258
Iteration: 5, Func. Count: 45, Neg. LLF: 23213153.867606573
Iteration: 6, Func. Count: 54, Neg. LLF: 109.74831012979992
Iteration: 7, Func. Count: 63, Neg. LLF: 105.12423764400486
Iteration: 8, Func. Count: 72, Neg. LLF: 96.65385790564949
Iteration: 9, Func. Count: 81, Neg. LLF: 96.9521502817879
Iteration: 10, Func. Count: 90, Neg. LLF: 94.27872326875719
Iteration: 11, Func. Count: 99, Neg. LLF: 93.5661337559755
Iteration: 12, Func. Count: 107, Neg. LLF: 94.24527705822861
Iteration: 13, Func. Count: 116, Neg. LLF: 92.86616901910602
Iteration: 14, Func. Count: 124, Neg. LLF: 92.85108596642958
Iteration: 15, Func. Count: 133, Neg. LLF: 92.7865961836901
Iteration: 16, Func. Count: 141, Neg. LLF: 92.78615517023849
Iteration: 17, Func. Count: 149, Neg. LLF: 92.7861538434383
Iteration: 18, Func. Count: 156, Neg. LLF: 92.78615384086473
Optimization terminated successfully (Exit mode 0)
Current function value: 92.7861538434383
Iterations: 18
Function evaluations: 156
Gradient evaluations: 18
Iteration: 1, Func. Count: 6, Neg. LLF: 132.33176132845682
Iteration: 2, Func. Count: 14, Neg. LLF: 3593.7024203484357
Iteration: 3, Func. Count: 20, Neg. LLF: 6749804.7496450255
Iteration: 4, Func. Count: 26, Neg. LLF: 94.01353972052964
Iteration: 5, Func. Count: 31, Neg. LLF: 95.13361178854632
Iteration: 6, Func. Count: 38, Neg. LLF: 94.06329861561049
Iteration: 7, Func. Count: 44, Neg. LLF: 93.92413122138096
Iteration: 8, Func. Count: 49, Neg. LLF: 93.90089528036242
Iteration: 9, Func. Count: 54, Neg. LLF: 93.8979374784264
Iteration: 10, Func. Count: 59, Neg. LLF: 93.89780661908704
Iteration: 11, Func. Count: 64, Neg. LLF: 93.89780447136678
Iteration: 12, Func. Count: 68, Neg. LLF: 93.89780447137329
Optimization terminated successfully (Exit mode 0)
Current function value: 93.89780447136678
Iterations: 12
Function evaluations: 68
Gradient evaluations: 12
Iteration: 1, Func. Count: 7, Neg. LLF: 35599854.392574705
Iteration: 2, Func. Count: 14, Neg. LLF: 4661416.062201301
Iteration: 3, Func. Count: 22, Neg. LLF: 92.06940046636895
Iteration: 4, Func. Count: 28, Neg. LLF: 92.2083265300451
Iteration: 5, Func. Count: 35, Neg. LLF: 95.19866271380059
Iteration: 6, Func. Count: 42, Neg. LLF: 91.7686113950457
Iteration: 7, Func. Count: 49, Neg. LLF: 91.68922599684257
Iteration: 8, Func. Count: 55, Neg. LLF: 91.68631464016234
Iteration: 9, Func. Count: 61, Neg. LLF: 91.68571536167858
Iteration: 10, Func. Count: 67, Neg. LLF: 91.68570216165726
Iteration: 11, Func. Count: 72, Neg. LLF: 91.6857021278704
Optimization terminated successfully (Exit mode 0)
Current function value: 91.68570216165726
Iterations: 11
Function evaluations: 72
Gradient evaluations: 11
Iteration: 1, Func. Count: 8, Neg. LLF: 24086329.249176893
Iteration: 2, Func. Count: 16, Neg. LLF: 4409641.282765719
Iteration: 3, Func. Count: 24, Neg. LLF: 33903590.26883357
Iteration: 4, Func. Count: 33, Neg. LLF: 105.84121792529999
Iteration: 5, Func. Count: 41, Neg. LLF: 92.57144528888665
Iteration: 6, Func. Count: 49, Neg. LLF: 90.39161210278988
Iteration: 7, Func. Count: 56, Neg. LLF: 90.33811984741212
Iteration: 8, Func. Count: 64, Neg. LLF: 91.31192574985998
Iteration: 9, Func. Count: 72, Neg. LLF: 89.96148764711576
Iteration: 10, Func. Count: 79, Neg. LLF: 90.01584520852118
Iteration: 11, Func. Count: 87, Neg. LLF: 89.94846311347517
Iteration: 12, Func. Count: 94, Neg. LLF: 89.94842792343796
Iteration: 13, Func. Count: 101, Neg. LLF: 89.9484252140535
Iteration: 14, Func. Count: 107, Neg. LLF: 89.94842518188794
Optimization terminated successfully (Exit mode 0)
Current function value: 89.9484252140535
Iterations: 14
Function evaluations: 107
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 18065218.708538663
Iteration: 2, Func. Count: 18, Neg. LLF: 4356378.186621582
Iteration: 3, Func. Count: 27, Neg. LLF: 5846900.26296325
Iteration: 4, Func. Count: 36, Neg. LLF: 132.09371489620972
Iteration: 5, Func. Count: 45, Neg. LLF: 90.70855410161343
Iteration: 6, Func. Count: 53, Neg. LLF: 90.50590965175518
Iteration: 7, Func. Count: 61, Neg. LLF: 106.3016891133922
Iteration: 8, Func. Count: 71, Neg. LLF: 90.5205795874263
Iteration: 9, Func. Count: 80, Neg. LLF: 89.95004505202095
Iteration: 10, Func. Count: 88, Neg. LLF: 89.94886411971275
Iteration: 11, Func. Count: 96, Neg. LLF: 89.94848979334488
Iteration: 12, Func. Count: 104, Neg. LLF: 89.94842619632212
Iteration: 13, Func. Count: 112, Neg. LLF: 89.94842515932554
Iteration: 14, Func. Count: 119, Neg. LLF: 89.94842517735081
Optimization terminated successfully (Exit mode 0)
Current function value: 89.94842515932554
Iterations: 14
Function evaluations: 119
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 9139386.465016507
Iteration: 2, Func. Count: 20, Neg. LLF: 6663670.747462987
Iteration: 3, Func. Count: 30, Neg. LLF: 160.65073548860371
Iteration: 4, Func. Count: 40, Neg. LLF: 106.54791256570634
Iteration: 5, Func. Count: 50, Neg. LLF: 95.69386436806745
Iteration: 6, Func. Count: 60, Neg. LLF: 104.20600777412771
Iteration: 7, Func. Count: 70, Neg. LLF: 91.77582285275075
Iteration: 8, Func. Count: 80, Neg. LLF: 91.55106564142855
Iteration: 9, Func. Count: 90, Neg. LLF: 90.22485561879249
Iteration: 10, Func. Count: 100, Neg. LLF: 91.19434562342164
Iteration: 11, Func. Count: 110, Neg. LLF: 89.68872210701686
Iteration: 12, Func. Count: 119, Neg. LLF: 90.16288234431401
Iteration: 13, Func. Count: 129, Neg. LLF: 89.65423766090909
Iteration: 14, Func. Count: 138, Neg. LLF: 89.64454489746386
Iteration: 15, Func. Count: 147, Neg. LLF: 89.6427821559409
Iteration: 16, Func. Count: 156, Neg. LLF: 89.64206320244898
Iteration: 17, Func. Count: 165, Neg. LLF: 89.64195826978617
Iteration: 18, Func. Count: 174, Neg. LLF: 89.64194767415894
Iteration: 19, Func. Count: 182, Neg. LLF: 89.64194764544423
Optimization terminated successfully (Exit mode 0)
Current function value: 89.64194767415894
Iterations: 19
Function evaluations: 182
Gradient evaluations: 19
Iteration: 1, Func. Count: 7, Neg. LLF: 134.73441700114762
Iteration: 2, Func. Count: 16, Neg. LLF: 197967802.78471935
Iteration: 3, Func. Count: 23, Neg. LLF: 6745277.132528841
Iteration: 4, Func. Count: 30, Neg. LLF: 94.2894593601987
Iteration: 5, Func. Count: 36, Neg. LLF: 93.98654222256404
Iteration: 6, Func. Count: 42, Neg. LLF: 98.65233398276636
Iteration: 7, Func. Count: 50, Neg. LLF: 93.95866238635352
Iteration: 8, Func. Count: 56, Neg. LLF: 93.91357288543246
Iteration: 9, Func. Count: 62, Neg. LLF: 93.89982917915937
Iteration: 10, Func. Count: 68, Neg. LLF: 93.89784014760178
Iteration: 11, Func. Count: 74, Neg. LLF: 93.89780470968398
Iteration: 12, Func. Count: 79, Neg. LLF: 93.8978047422036
Optimization terminated successfully (Exit mode 0)
Current function value: 93.89780470968398
Iterations: 12
Function evaluations: 79
Gradient evaluations: 12
Iteration: 1, Func. Count: 8, Neg. LLF: 25023944.352545463
Iteration: 2, Func. Count: 16, Neg. LLF: 143.72176411302343
Iteration: 3, Func. Count: 25, Neg. LLF: 92.01155272752275
Iteration: 4, Func. Count: 32, Neg. LLF: 92.43786288676999
Iteration: 5, Func. Count: 40, Neg. LLF: 95.68780629128115
Iteration: 6, Func. Count: 49, Neg. LLF: 92.00008119895293
Iteration: 7, Func. Count: 57, Neg. LLF: 91.68953277778937
Iteration: 8, Func. Count: 64, Neg. LLF: 91.68577970642973
Iteration: 9, Func. Count: 71, Neg. LLF: 91.68570273080387
Iteration: 10, Func. Count: 78, Neg. LLF: 91.68570205862042
Optimization terminated successfully (Exit mode 0)
Current function value: 91.68570205862042
Iterations: 10
Function evaluations: 78
Gradient evaluations: 10
Iteration: 1, Func. Count: 9, Neg. LLF: 18049889.90164886
Iteration: 2, Func. Count: 18, Neg. LLF: 5271213.798372587
Iteration: 3, Func. Count: 28, Neg. LLF: 6122272.063014856
Iteration: 4, Func. Count: 38, Neg. LLF: 103.53112279345675
Iteration: 5, Func. Count: 47, Neg. LLF: 92.15227716318759
Iteration: 6, Func. Count: 56, Neg. LLF: 91.91282442984311
Iteration: 7, Func. Count: 65, Neg. LLF: 90.38629548375634
Iteration: 8, Func. Count: 73, Neg. LLF: 91.32512123951655
Iteration: 9, Func. Count: 83, Neg. LLF: 93.01388985010024
Iteration: 10, Func. Count: 92, Neg. LLF: 90.00505732040877
Iteration: 11, Func. Count: 100, Neg. LLF: 89.95492360516667
Iteration: 12, Func. Count: 108, Neg. LLF: 89.93318106628155
Iteration: 13, Func. Count: 116, Neg. LLF: 89.93163776520917
Iteration: 14, Func. Count: 124, Neg. LLF: 89.93162281338894
Iteration: 15, Func. Count: 132, Neg. LLF: 89.9316213981601
Iteration: 16, Func. Count: 139, Neg. LLF: 89.9316213635551
Optimization terminated successfully (Exit mode 0)
Current function value: 89.9316213981601
Iterations: 16
Function evaluations: 139
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 17239498.979092363
Iteration: 2, Func. Count: 20, Neg. LLF: 133.21403606894287
Iteration: 3, Func. Count: 31, Neg. LLF: 5837267.593710772
Iteration: 4, Func. Count: 41, Neg. LLF: 141.80442706952817
Iteration: 5, Func. Count: 51, Neg. LLF: 94.5113314120951
Iteration: 6, Func. Count: 61, Neg. LLF: 90.65684501428734
Iteration: 7, Func. Count: 70, Neg. LLF: 90.52110840070817
Iteration: 8, Func. Count: 80, Neg. LLF: 90.14399187667519
Iteration: 9, Func. Count: 89, Neg. LLF: 90.85502510275107
Iteration: 10, Func. Count: 99, Neg. LLF: 91.05489629383362
Iteration: 11, Func. Count: 109, Neg. LLF: 90.02260223724655
Iteration: 12, Func. Count: 118, Neg. LLF: 89.9569307090034
Iteration: 13, Func. Count: 127, Neg. LLF: 89.93588751361183
Iteration: 14, Func. Count: 136, Neg. LLF: 89.93237658502271
Iteration: 15, Func. Count: 145, Neg. LLF: 89.93172487465561
Iteration: 16, Func. Count: 154, Neg. LLF: 89.93162137418493
Iteration: 17, Func. Count: 162, Neg. LLF: 89.93162142676167
Optimization terminated successfully (Exit mode 0)
Current function value: 89.93162137418493
Iterations: 17
Function evaluations: 162
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 8764925.024286231
Iteration: 2, Func. Count: 22, Neg. LLF: 8876170.682335986
Iteration: 3, Func. Count: 33, Neg. LLF: 115.5487577344261
Iteration: 4, Func. Count: 44, Neg. LLF: 100.36289649640824
Iteration: 5, Func. Count: 55, Neg. LLF: 92.44576641019435
Iteration: 6, Func. Count: 66, Neg. LLF: 92.21725992360398
Iteration: 7, Func. Count: 77, Neg. LLF: 90.45366069760213
Iteration: 8, Func. Count: 88, Neg. LLF: 89.7083804273011
Iteration: 9, Func. Count: 98, Neg. LLF: 89.83566175208591
Iteration: 10, Func. Count: 109, Neg. LLF: 93.6274016717584
Iteration: 11, Func. Count: 120, Neg. LLF: 89.6670960362431
Iteration: 12, Func. Count: 131, Neg. LLF: 89.61868822179599
Iteration: 13, Func. Count: 141, Neg. LLF: 89.61853466628179
Iteration: 14, Func. Count: 150, Neg. LLF: 89.61853463481165
Optimization terminated successfully (Exit mode 0)
Current function value: 89.61853466628179
Iterations: 14
Function evaluations: 150
Gradient evaluations: 14
Iteration: 1, Func. Count: 8, Neg. LLF: 131.00032866091848
Iteration: 2, Func. Count: 18, Neg. LLF: 155106328.5789271
Iteration: 3, Func. Count: 26, Neg. LLF: 2504258.99897988
Iteration: 4, Func. Count: 34, Neg. LLF: 2970769.919321263
Iteration: 5, Func. Count: 42, Neg. LLF: 1029896.9140319792
Iteration: 6, Func. Count: 50, Neg. LLF: 95.50884676230854
Iteration: 7, Func. Count: 58, Neg. LLF: 93.07895755330377
Iteration: 8, Func. Count: 66, Neg. LLF: 92.54717532860263
Iteration: 9, Func. Count: 73, Neg. LLF: 92.31880853367467
Iteration: 10, Func. Count: 80, Neg. LLF: 92.25108453505038
Iteration: 11, Func. Count: 87, Neg. LLF: 92.24309311836427
Iteration: 12, Func. Count: 94, Neg. LLF: 92.2421570297824
Iteration: 13, Func. Count: 101, Neg. LLF: 92.24212596506955
Iteration: 14, Func. Count: 108, Neg. LLF: 92.24212236573474
Iteration: 15, Func. Count: 115, Neg. LLF: 92.2421217125897
Optimization terminated successfully (Exit mode 0)
Current function value: 92.2421217125897
Iterations: 15
Function evaluations: 115
Gradient evaluations: 15
Iteration: 1, Func. Count: 9, Neg. LLF: 20073030.90232137
Iteration: 2, Func. Count: 18, Neg. LLF: 144.85134348932152
Iteration: 3, Func. Count: 28, Neg. LLF: 92.01138651623864
Iteration: 4, Func. Count: 36, Neg. LLF: 93.10167969173362
Iteration: 5, Func. Count: 45, Neg. LLF: 95.83686947278562
Iteration: 6, Func. Count: 55, Neg. LLF: 92.56580966423999
Iteration: 7, Func. Count: 64, Neg. LLF: 91.69287185204388
Iteration: 8, Func. Count: 72, Neg. LLF: 91.68610563863204
Iteration: 9, Func. Count: 80, Neg. LLF: 91.68571808947968
Iteration: 10, Func. Count: 88, Neg. LLF: 91.68570221678813
Iteration: 11, Func. Count: 95, Neg. LLF: 91.6857021830929
Optimization terminated successfully (Exit mode 0)
Current function value: 91.68570221678813
Iterations: 11
Function evaluations: 95
Gradient evaluations: 11
Iteration: 1, Func. Count: 10, Neg. LLF: 18543060.863647144
Iteration: 2, Func. Count: 20, Neg. LLF: 5175688.043274632
Iteration: 3, Func. Count: 31, Neg. LLF: 5932415.611459561
Iteration: 4, Func. Count: 42, Neg. LLF: 102.01303415023474
Iteration: 5, Func. Count: 52, Neg. LLF: 91.00501969849361
Iteration: 6, Func. Count: 61, Neg. LLF: 91.3787685738433
Iteration: 7, Func. Count: 71, Neg. LLF: 94.34983367065453
Iteration: 8, Func. Count: 83, Neg. LLF: 95.31032697776722
Iteration: 9, Func. Count: 93, Neg. LLF: 90.1518553394406
Iteration: 10, Func. Count: 103, Neg. LLF: 90.9117357571517
Iteration: 11, Func. Count: 113, Neg. LLF: 89.93687375679144
Iteration: 12, Func. Count: 122, Neg. LLF: 89.93335845078983
Iteration: 13, Func. Count: 131, Neg. LLF: 89.93175642590936
Iteration: 14, Func. Count: 140, Neg. LLF: 89.93163218734541
Iteration: 15, Func. Count: 149, Neg. LLF: 89.93162176396055
Iteration: 16, Func. Count: 157, Neg. LLF: 89.93162172919438
Optimization terminated successfully (Exit mode 0)
Current function value: 89.93162176396055
Iterations: 16
Function evaluations: 157
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 9288134.048234284
Iteration: 2, Func. Count: 22, Neg. LLF: 2972097.0588729177
Iteration: 3, Func. Count: 33, Neg. LLF: 900865.2129883934
Iteration: 4, Func. Count: 44, Neg. LLF: 6972.7079344215845
Iteration: 5, Func. Count: 55, Neg. LLF: 94.56276950196848
Iteration: 6, Func. Count: 66, Neg. LLF: 96.10133914779851
Iteration: 7, Func. Count: 77, Neg. LLF: 93.05246989451337
Iteration: 8, Func. Count: 88, Neg. LLF: 92.83487347011197
Iteration: 9, Func. Count: 99, Neg. LLF: 91.30350638741054
Iteration: 10, Func. Count: 109, Neg. LLF: 91.19685666415832
Iteration: 11, Func. Count: 119, Neg. LLF: 91.0923612043676
Iteration: 12, Func. Count: 129, Neg. LLF: 90.56072165039704
Iteration: 13, Func. Count: 139, Neg. LLF: 90.20476709095915
Iteration: 14, Func. Count: 149, Neg. LLF: 90.06024706913719
Iteration: 15, Func. Count: 159, Neg. LLF: 90.0302649937435
Iteration: 16, Func. Count: 169, Neg. LLF: 89.97341762725192
Iteration: 17, Func. Count: 179, Neg. LLF: 89.94804625791708
Iteration: 18, Func. Count: 189, Neg. LLF: 89.93619704684863
Iteration: 19, Func. Count: 199, Neg. LLF: 89.93196557843412
Iteration: 20, Func. Count: 209, Neg. LLF: 89.93163468108408
Iteration: 21, Func. Count: 219, Neg. LLF: 89.9316225039025
Iteration: 22, Func. Count: 229, Neg. LLF: 89.9316212145386
Iteration: 23, Func. Count: 238, Neg. LLF: 89.93162126715377
Optimization terminated successfully (Exit mode 0)
Current function value: 89.9316212145386
Iterations: 23
Function evaluations: 238
Gradient evaluations: 23
Iteration: 1, Func. Count: 12, Neg. LLF: 9235944.539462663
Iteration: 2, Func. Count: 24, Neg. LLF: 4044468.05231452
Iteration: 3, Func. Count: 36, Neg. LLF: 154.39742425590092
Iteration: 4, Func. Count: 48, Neg. LLF: 357.07505379425066
Iteration: 5, Func. Count: 60, Neg. LLF: 126.34978870597587
Iteration: 6, Func. Count: 72, Neg. LLF: 91.97841150142654
Iteration: 7, Func. Count: 84, Neg. LLF: 91.7861451781159
Iteration: 8, Func. Count: 96, Neg. LLF: 93.03709517917419
Iteration: 9, Func. Count: 108, Neg. LLF: 90.93119906823465
Iteration: 10, Func. Count: 120, Neg. LLF: 90.13603006713971
Iteration: 11, Func. Count: 132, Neg. LLF: 89.76744748369401
Iteration: 12, Func. Count: 143, Neg. LLF: 89.75556958337505
Iteration: 13, Func. Count: 154, Neg. LLF: 89.71434877874496
Iteration: 14, Func. Count: 165, Neg. LLF: 89.66807281792028
Iteration: 15, Func. Count: 176, Neg. LLF: 89.62523888081851
Iteration: 16, Func. Count: 187, Neg. LLF: 89.61899843528752
Iteration: 17, Func. Count: 198, Neg. LLF: 89.61862506686242
Iteration: 18, Func. Count: 209, Neg. LLF: 89.61854098277443
Iteration: 19, Func. Count: 220, Neg. LLF: 89.61853442282295
Iteration: 20, Func. Count: 230, Neg. LLF: 89.6185343913031
Optimization terminated successfully (Exit mode 0)
Current function value: 89.61853442282295
Iterations: 20
Function evaluations: 230
Gradient evaluations: 20
Iteration: 1, Func. Count: 5, Neg. LLF: 134.0736140894519
Iteration: 2, Func. Count: 12, Neg. LLF: 142.62510558451177
Iteration: 3, Func. Count: 17, Neg. LLF: 96.8035950196546
Iteration: 4, Func. Count: 21, Neg. LLF: 96.98377388780975
Iteration: 5, Func. Count: 26, Neg. LLF: 96.82401990248856
Iteration: 6, Func. Count: 31, Neg. LLF: 96.76113566888682
Iteration: 7, Func. Count: 35, Neg. LLF: 96.76094713356058
Iteration: 8, Func. Count: 39, Neg. LLF: 96.76090052628035
Iteration: 9, Func. Count: 43, Neg. LLF: 96.76088469909998
Iteration: 10, Func. Count: 46, Neg. LLF: 96.76088469901735
Optimization terminated successfully (Exit mode 0)
Current function value: 96.76088469909998
Iterations: 10
Function evaluations: 46
Gradient evaluations: 10
Iteration: 1, Func. Count: 6, Neg. LLF: 12981.61749311559
Iteration: 2, Func. Count: 12, Neg. LLF: 93.76930433660175
Iteration: 3, Func. Count: 18, Neg. LLF: 93.24507068168496
Iteration: 4, Func. Count: 24, Neg. LLF: 93.20917967653611
Iteration: 5, Func. Count: 30, Neg. LLF: 93.08261994412966
Iteration: 6, Func. Count: 36, Neg. LLF: 92.96195955566706
Iteration: 7, Func. Count: 42, Neg. LLF: 92.93387842796285
Iteration: 8, Func. Count: 48, Neg. LLF: 92.9330000031388
Iteration: 9, Func. Count: 53, Neg. LLF: 92.93298608170181
Iteration: 10, Func. Count: 57, Neg. LLF: 92.93298608171054
Optimization terminated successfully (Exit mode 0)
Current function value: 92.93298608170181
Iterations: 10
Function evaluations: 57
Gradient evaluations: 10
Iteration: 1, Func. Count: 7, Neg. LLF: 1390.0547903725121
Iteration: 2, Func. Count: 14, Neg. LLF: 94.36375581072528
Iteration: 3, Func. Count: 21, Neg. LLF: 93.36600654220408
Iteration: 4, Func. Count: 27, Neg. LLF: 94.15108027765186
Iteration: 5, Func. Count: 34, Neg. LLF: 129.46873654825202
Iteration: 6, Func. Count: 42, Neg. LLF: 93.06936701187064
Iteration: 7, Func. Count: 49, Neg. LLF: 92.94565968561598
Iteration: 8, Func. Count: 55, Neg. LLF: 92.93638747409395
Iteration: 9, Func. Count: 61, Neg. LLF: 92.93304767944751
Iteration: 10, Func. Count: 67, Neg. LLF: 92.9329864908083
Iteration: 11, Func. Count: 72, Neg. LLF: 92.9329865348118
Optimization terminated successfully (Exit mode 0)
Current function value: 92.9329864908083
Iterations: 11
Function evaluations: 72
Gradient evaluations: 11
Iteration: 1, Func. Count: 8, Neg. LLF: 104.38982206597692
Iteration: 2, Func. Count: 16, Neg. LLF: 501.27272108784143
Iteration: 3, Func. Count: 24, Neg. LLF: 95.07951764616311
Iteration: 4, Func. Count: 32, Neg. LLF: 111.06129735739431
Iteration: 5, Func. Count: 40, Neg. LLF: 93.62306809353446
Iteration: 6, Func. Count: 47, Neg. LLF: 94.36338840093741
Iteration: 7, Func. Count: 55, Neg. LLF: 95.04324715139347
Iteration: 8, Func. Count: 63, Neg. LLF: 92.94666910102954
Iteration: 9, Func. Count: 70, Neg. LLF: 92.93610233221071
Iteration: 10, Func. Count: 77, Neg. LLF: 92.93445060370469
Iteration: 11, Func. Count: 84, Neg. LLF: 92.93334824842955
Iteration: 12, Func. Count: 91, Neg. LLF: 92.93299441016941
Iteration: 13, Func. Count: 98, Neg. LLF: 92.9329863764428
Iteration: 14, Func. Count: 104, Neg. LLF: 92.93298647493398
Optimization terminated successfully (Exit mode 0)
Current function value: 92.9329863764428
Iterations: 14
Function evaluations: 104
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 127.37844408441316
Iteration: 2, Func. Count: 18, Neg. LLF: 97.26368438446846
Iteration: 3, Func. Count: 27, Neg. LLF: 94.15223837519444
Iteration: 4, Func. Count: 35, Neg. LLF: 102.74644251799734
Iteration: 5, Func. Count: 45, Neg. LLF: 99.63575417540801
Iteration: 6, Func. Count: 54, Neg. LLF: 93.15007969609955
Iteration: 7, Func. Count: 63, Neg. LLF: 92.98862697741068
Iteration: 8, Func. Count: 72, Neg. LLF: 92.9473466096899
Iteration: 9, Func. Count: 81, Neg. LLF: 92.93393454417452
Iteration: 10, Func. Count: 89, Neg. LLF: 92.93311501026581
Iteration: 11, Func. Count: 97, Neg. LLF: 92.93304821931179
Iteration: 12, Func. Count: 105, Neg. LLF: 92.93298641112072
Iteration: 13, Func. Count: 112, Neg. LLF: 92.93298655231195
Optimization terminated successfully (Exit mode 0)
Current function value: 92.93298641112072
Iterations: 13
Function evaluations: 112
Gradient evaluations: 13
Iteration: 1, Func. Count: 6, Neg. LLF: 123.4907557967772
Iteration: 2, Func. Count: 14, Neg. LLF: 131.333712889661
Iteration: 3, Func. Count: 20, Neg. LLF: 96.84336104718483
Iteration: 4, Func. Count: 25, Neg. LLF: 97.26981239110367
Iteration: 5, Func. Count: 31, Neg. LLF: 96.73103373034155
Iteration: 6, Func. Count: 37, Neg. LLF: 96.65325731023431
Iteration: 7, Func. Count: 42, Neg. LLF: 96.65021947109264
Iteration: 8, Func. Count: 47, Neg. LLF: 96.65018561933428
Iteration: 9, Func. Count: 52, Neg. LLF: 96.65017369508891
Iteration: 10, Func. Count: 56, Neg. LLF: 96.65017366977483
Optimization terminated successfully (Exit mode 0)
Current function value: 96.65017369508891
Iterations: 10
Function evaluations: 56
Gradient evaluations: 10
Iteration: 1, Func. Count: 7, Neg. LLF: 176.63686379513283
Iteration: 2, Func. Count: 17, Neg. LLF: 139.3440788772379
Iteration: 3, Func. Count: 25, Neg. LLF: 93.42408440110515
Iteration: 4, Func. Count: 32, Neg. LLF: 93.03726999836748
Iteration: 5, Func. Count: 39, Neg. LLF: 92.61162588998853
Iteration: 6, Func. Count: 45, Neg. LLF: 92.61352059222092
Iteration: 7, Func. Count: 52, Neg. LLF: 92.61110288264511
Iteration: 8, Func. Count: 58, Neg. LLF: 92.6110891167095
Iteration: 9, Func. Count: 63, Neg. LLF: 92.61108909087032
Optimization terminated successfully (Exit mode 0)
Current function value: 92.6110891167095
Iterations: 9
Function evaluations: 63
Gradient evaluations: 9
Iteration: 1, Func. Count: 8, Neg. LLF: 4777.245310513048
Iteration: 2, Func. Count: 16, Neg. LLF: 93.32953053333807
Iteration: 3, Func. Count: 23, Neg. LLF: 98.34536050325644
Iteration: 4, Func. Count: 31, Neg. LLF: 93.32434319181625
Iteration: 5, Func. Count: 39, Neg. LLF: 93.20235740017843
Iteration: 6, Func. Count: 47, Neg. LLF: 102.0234033305666
Iteration: 7, Func. Count: 55, Neg. LLF: 92.6240337697156
Iteration: 8, Func. Count: 62, Neg. LLF: 92.63194485658626
Iteration: 9, Func. Count: 70, Neg. LLF: 92.61126762259397
Iteration: 10, Func. Count: 77, Neg. LLF: 92.61108888960244
Iteration: 11, Func. Count: 83, Neg. LLF: 92.61108890642406
Optimization terminated successfully (Exit mode 0)
Current function value: 92.61108888960244
Iterations: 11
Function evaluations: 83
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 146.47055726305962
Iteration: 2, Func. Count: 19, Neg. LLF: 94.70923883099526
Iteration: 3, Func. Count: 28, Neg. LLF: 95.00818275977673
Iteration: 4, Func. Count: 37, Neg. LLF: 94.50200196932019
Iteration: 5, Func. Count: 46, Neg. LLF: 94.94765182341571
Iteration: 6, Func. Count: 55, Neg. LLF: 92.67690206394379
Iteration: 7, Func. Count: 63, Neg. LLF: 102.2349370649105
Iteration: 8, Func. Count: 73, Neg. LLF: 92.61898079892639
Iteration: 9, Func. Count: 81, Neg. LLF: 92.61135985352836
Iteration: 10, Func. Count: 89, Neg. LLF: 92.61109534931215
Iteration: 11, Func. Count: 97, Neg. LLF: 92.61108882095577
Iteration: 12, Func. Count: 104, Neg. LLF: 92.61108885776153
Optimization terminated successfully (Exit mode 0)
Current function value: 92.61108882095577
Iterations: 12
Function evaluations: 104
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 153.89442627504022
Iteration: 2, Func. Count: 21, Neg. LLF: 106.23871944507786
Iteration: 3, Func. Count: 31, Neg. LLF: 96.37203204503626
Iteration: 4, Func. Count: 41, Neg. LLF: 95.41222877670576
Iteration: 5, Func. Count: 51, Neg. LLF: 220.08855967570526
Iteration: 6, Func. Count: 62, Neg. LLF: 94.10700975255675
Iteration: 7, Func. Count: 72, Neg. LLF: 93.92063192276767
Iteration: 8, Func. Count: 82, Neg. LLF: 93.2262333447191
Iteration: 9, Func. Count: 92, Neg. LLF: 92.79391593125429
Iteration: 10, Func. Count: 101, Neg. LLF: 92.62553877530736
Iteration: 11, Func. Count: 110, Neg. LLF: 92.61178656381998
Iteration: 12, Func. Count: 119, Neg. LLF: 92.61116868974378
Iteration: 13, Func. Count: 128, Neg. LLF: 92.61109784779904
Iteration: 14, Func. Count: 137, Neg. LLF: 92.6110890793476
Iteration: 15, Func. Count: 145, Neg. LLF: 92.61108914915485
Optimization terminated successfully (Exit mode 0)
Current function value: 92.6110890793476
Iterations: 15
Function evaluations: 145
Gradient evaluations: 15
Iteration: 1, Func. Count: 7, Neg. LLF: 148.20805221783593
Iteration: 2, Func. Count: 15, Neg. LLF: 194.1440984401495
Iteration: 3, Func. Count: 22, Neg. LLF: 7686527.507016312
Iteration: 4, Func. Count: 29, Neg. LLF: 97.33785051536442
Iteration: 5, Func. Count: 36, Neg. LLF: 94.53650560467928
Iteration: 6, Func. Count: 43, Neg. LLF: 93.69511627344528
Iteration: 7, Func. Count: 50, Neg. LLF: 93.65163650174581
Iteration: 8, Func. Count: 57, Neg. LLF: 93.59452265042196
Iteration: 9, Func. Count: 64, Neg. LLF: 93.58367938793991
Iteration: 10, Func. Count: 70, Neg. LLF: 93.58151744089072
Iteration: 11, Func. Count: 76, Neg. LLF: 93.58126999678997
Iteration: 12, Func. Count: 82, Neg. LLF: 93.58125503045699
Iteration: 13, Func. Count: 87, Neg. LLF: 93.58125503047224
Optimization terminated successfully (Exit mode 0)
Current function value: 93.58125503045699
Iterations: 13
Function evaluations: 87
Gradient evaluations: 13
Iteration: 1, Func. Count: 8, Neg. LLF: 113.80168880069019
Iteration: 2, Func. Count: 19, Neg. LLF: 1079.3852664405047
Iteration: 3, Func. Count: 28, Neg. LLF: 215.2964477596281
Iteration: 4, Func. Count: 36, Neg. LLF: 92.06637229202963
Iteration: 5, Func. Count: 44, Neg. LLF: 92.4740112881243
Iteration: 6, Func. Count: 52, Neg. LLF: 91.52591765515614
Iteration: 7, Func. Count: 60, Neg. LLF: 91.62799339391383
Iteration: 8, Func. Count: 68, Neg. LLF: 91.50993975176674
Iteration: 9, Func. Count: 76, Neg. LLF: 91.4471282899971
Iteration: 10, Func. Count: 84, Neg. LLF: 91.43206461705702
Iteration: 11, Func. Count: 91, Neg. LLF: 91.43202826177887
Iteration: 12, Func. Count: 98, Neg. LLF: 91.43202755082241
Optimization terminated successfully (Exit mode 0)
Current function value: 91.43202755082241
Iterations: 12
Function evaluations: 98
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 16637907.754002819
Iteration: 2, Func. Count: 18, Neg. LLF: 3463099.339284272
Iteration: 3, Func. Count: 27, Neg. LLF: 91.7272376265588
Iteration: 4, Func. Count: 35, Neg. LLF: 94.17105280357033
Iteration: 5, Func. Count: 45, Neg. LLF: 14224632.543507086
Iteration: 6, Func. Count: 55, Neg. LLF: 90.26062887738132
Iteration: 7, Func. Count: 63, Neg. LLF: 90.42457716643534
Iteration: 8, Func. Count: 72, Neg. LLF: 92.33288943809475
Iteration: 9, Func. Count: 81, Neg. LLF: 89.88993105440989
Iteration: 10, Func. Count: 89, Neg. LLF: 89.87817887749952
Iteration: 11, Func. Count: 97, Neg. LLF: 89.87014791659729
Iteration: 12, Func. Count: 105, Neg. LLF: 89.86868421401972
Iteration: 13, Func. Count: 113, Neg. LLF: 89.86855462162085
Iteration: 14, Func. Count: 121, Neg. LLF: 89.86855007867203
Iteration: 15, Func. Count: 128, Neg. LLF: 89.86855004396611
Optimization terminated successfully (Exit mode 0)
Current function value: 89.86855007867203
Iterations: 15
Function evaluations: 128
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 10939798.007948913
Iteration: 2, Func. Count: 20, Neg. LLF: 3386358.455102587
Iteration: 3, Func. Count: 31, Neg. LLF: 97.87962994717192
Iteration: 4, Func. Count: 41, Neg. LLF: 5427120.024230342
Iteration: 5, Func. Count: 52, Neg. LLF: 134.94215063753472
Iteration: 6, Func. Count: 62, Neg. LLF: 92.9441239515986
Iteration: 7, Func. Count: 72, Neg. LLF: 92.87150331364363
Iteration: 8, Func. Count: 82, Neg. LLF: 91.11928729468065
Iteration: 9, Func. Count: 92, Neg. LLF: 91.38593355618058
Iteration: 10, Func. Count: 102, Neg. LLF: 90.85565637442144
Iteration: 11, Func. Count: 112, Neg. LLF: 90.82020331683738
Iteration: 12, Func. Count: 122, Neg. LLF: 90.7674375401853
Iteration: 13, Func. Count: 131, Neg. LLF: 90.75570150545497
Iteration: 14, Func. Count: 140, Neg. LLF: 90.75516577925225
Iteration: 15, Func. Count: 149, Neg. LLF: 90.75509769102405
Iteration: 16, Func. Count: 158, Neg. LLF: 90.75507419461103
Iteration: 17, Func. Count: 167, Neg. LLF: 90.755069039356
Iteration: 18, Func. Count: 175, Neg. LLF: 90.75506901784237
Optimization terminated successfully (Exit mode 0)
Current function value: 90.755069039356
Iterations: 18
Function evaluations: 175
Gradient evaluations: 18
Iteration: 1, Func. Count: 11, Neg. LLF: 5753421.205603422
Iteration: 2, Func. Count: 22, Neg. LLF: 111995605.16789627
Iteration: 3, Func. Count: 34, Neg. LLF: 5745752.341390235
Iteration: 4, Func. Count: 45, Neg. LLF: 106.89549831180355
Iteration: 5, Func. Count: 56, Neg. LLF: 126.80976900510811
Iteration: 6, Func. Count: 67, Neg. LLF: 92.34493029212531
Iteration: 7, Func. Count: 78, Neg. LLF: 90.06361230442933
Iteration: 8, Func. Count: 88, Neg. LLF: 92.39606582424076
Iteration: 9, Func. Count: 100, Neg. LLF: 90.00013163547374
Iteration: 10, Func. Count: 111, Neg. LLF: 89.85700786076828
Iteration: 11, Func. Count: 122, Neg. LLF: 89.58397929470149
Iteration: 12, Func. Count: 133, Neg. LLF: 89.4668754037328
Iteration: 13, Func. Count: 143, Neg. LLF: 89.46442306581756
Iteration: 14, Func. Count: 153, Neg. LLF: 89.46403985530152
Iteration: 15, Func. Count: 163, Neg. LLF: 89.46400658699126
Iteration: 16, Func. Count: 173, Neg. LLF: 89.46400594236758
Optimization terminated successfully (Exit mode 0)
Current function value: 89.46400594236758
Iterations: 16
Function evaluations: 173
Gradient evaluations: 16
Iteration: 1, Func. Count: 8, Neg. LLF: 138.33223528018314
Iteration: 2, Func. Count: 17, Neg. LLF: 328.9545686960001
Iteration: 3, Func. Count: 25, Neg. LLF: 7686963.65837272
Iteration: 4, Func. Count: 33, Neg. LLF: 94.77821261388482
Iteration: 5, Func. Count: 41, Neg. LLF: 93.99003307771734
Iteration: 6, Func. Count: 49, Neg. LLF: 93.75039931912065
Iteration: 7, Func. Count: 57, Neg. LLF: 93.64758611442886
Iteration: 8, Func. Count: 65, Neg. LLF: 93.59034865484597
Iteration: 9, Func. Count: 72, Neg. LLF: 93.58474824393946
Iteration: 10, Func. Count: 79, Neg. LLF: 93.58328503023782
Iteration: 11, Func. Count: 86, Neg. LLF: 93.5820732565637
Iteration: 12, Func. Count: 93, Neg. LLF: 93.58134361367581
Iteration: 13, Func. Count: 100, Neg. LLF: 93.58125804763242
Iteration: 14, Func. Count: 107, Neg. LLF: 93.58125476423069
Iteration: 15, Func. Count: 113, Neg. LLF: 93.58125483973868
Optimization terminated successfully (Exit mode 0)
Current function value: 93.58125476423069
Iterations: 15
Function evaluations: 113
Gradient evaluations: 15
Iteration: 1, Func. Count: 9, Neg. LLF: 112.56777907701019
Iteration: 2, Func. Count: 21, Neg. LLF: 1258.0578010487352
Iteration: 3, Func. Count: 30, Neg. LLF: 464.33340626528195
Iteration: 4, Func. Count: 39, Neg. LLF: 91.50204160109585
Iteration: 5, Func. Count: 47, Neg. LLF: 94.69895795641611
Iteration: 6, Func. Count: 57, Neg. LLF: 101.55323191363553
Iteration: 7, Func. Count: 67, Neg. LLF: 91.73346682031729
Iteration: 8, Func. Count: 76, Neg. LLF: 91.43394531118115
Iteration: 9, Func. Count: 85, Neg. LLF: 91.44033424422103
Iteration: 10, Func. Count: 94, Neg. LLF: 91.43202804744635
Iteration: 11, Func. Count: 101, Neg. LLF: 91.43202804734317
Optimization terminated successfully (Exit mode 0)
Current function value: 91.43202804744635
Iterations: 11
Function evaluations: 101
Gradient evaluations: 11
Iteration: 1, Func. Count: 10, Neg. LLF: 18571517.968787685
Iteration: 2, Func. Count: 20, Neg. LLF: 3338310.188600259
Iteration: 3, Func. Count: 30, Neg. LLF: 90.68446050993381
Iteration: 4, Func. Count: 39, Neg. LLF: 94.62324997518097
Iteration: 5, Func. Count: 49, Neg. LLF: 96.35489276608905
Iteration: 6, Func. Count: 60, Neg. LLF: 91.77321906816871
Iteration: 7, Func. Count: 70, Neg. LLF: 90.16432493376622
Iteration: 8, Func. Count: 80, Neg. LLF: 95.6856954903292
Iteration: 9, Func. Count: 90, Neg. LLF: 89.92034535254538
Iteration: 10, Func. Count: 99, Neg. LLF: 89.87456821752826
Iteration: 11, Func. Count: 108, Neg. LLF: 89.86896406768643
Iteration: 12, Func. Count: 117, Neg. LLF: 89.86857349260156
Iteration: 13, Func. Count: 126, Neg. LLF: 89.8685526054636
Iteration: 14, Func. Count: 135, Neg. LLF: 89.86855006031999
Iteration: 15, Func. Count: 143, Neg. LLF: 89.86855002559736
Optimization terminated successfully (Exit mode 0)
Current function value: 89.86855006031999
Iterations: 15
Function evaluations: 143
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 15225602.907613602
Iteration: 2, Func. Count: 22, Neg. LLF: 4826377.324561831
Iteration: 3, Func. Count: 34, Neg. LLF: 6682591.189547282
Iteration: 4, Func. Count: 46, Neg. LLF: 217.89031399788416
Iteration: 5, Func. Count: 57, Neg. LLF: 108.2615773427456
Iteration: 6, Func. Count: 68, Neg. LLF: 97.35027119126222
Iteration: 7, Func. Count: 79, Neg. LLF: 94.42776280937693
Iteration: 8, Func. Count: 90, Neg. LLF: 92.64565535921449
Iteration: 9, Func. Count: 101, Neg. LLF: 91.15435969746815
Iteration: 10, Func. Count: 112, Neg. LLF: 91.12920766499202
Iteration: 11, Func. Count: 123, Neg. LLF: 91.26783627493576
Iteration: 12, Func. Count: 134, Neg. LLF: 90.7715436568537
Iteration: 13, Func. Count: 144, Neg. LLF: 90.75670148862473
Iteration: 14, Func. Count: 154, Neg. LLF: 90.75581693403636
Iteration: 15, Func. Count: 164, Neg. LLF: 90.75507787669649
Iteration: 16, Func. Count: 174, Neg. LLF: 90.75507064569136
Iteration: 17, Func. Count: 184, Neg. LLF: 90.75506894805808
Iteration: 18, Func. Count: 193, Neg. LLF: 90.75506892650274
Optimization terminated successfully (Exit mode 0)
Current function value: 90.75506894805808
Iterations: 18
Function evaluations: 193
Gradient evaluations: 18
Iteration: 1, Func. Count: 12, Neg. LLF: 178.0474600411058
Iteration: 2, Func. Count: 24, Neg. LLF: 41798342.680140644
Iteration: 3, Func. Count: 37, Neg. LLF: 5409821.997296828
Iteration: 4, Func. Count: 49, Neg. LLF: 118.08702489435247
Iteration: 5, Func. Count: 61, Neg. LLF: 106.54594190073352
Iteration: 6, Func. Count: 73, Neg. LLF: 93.15235341063406
Iteration: 7, Func. Count: 85, Neg. LLF: 91.11079467463504
Iteration: 8, Func. Count: 97, Neg. LLF: 89.99115736836477
Iteration: 9, Func. Count: 108, Neg. LLF: 95.21046653876438
Iteration: 10, Func. Count: 120, Neg. LLF: 89.61886707006526
Iteration: 11, Func. Count: 131, Neg. LLF: 89.5577331370893
Iteration: 12, Func. Count: 142, Neg. LLF: 89.78948017412053
Iteration: 13, Func. Count: 154, Neg. LLF: 89.48473550800514
Iteration: 14, Func. Count: 165, Neg. LLF: 89.47260353439256
Iteration: 15, Func. Count: 176, Neg. LLF: 89.46683087612101
Iteration: 16, Func. Count: 187, Neg. LLF: 89.464355451466
Iteration: 17, Func. Count: 198, Neg. LLF: 89.4640403083132
Iteration: 18, Func. Count: 209, Neg. LLF: 89.46400678245364
Iteration: 19, Func. Count: 220, Neg. LLF: 89.46400601070808
Optimization terminated successfully (Exit mode 0)
Current function value: 89.46400601070808
Iterations: 19
Function evaluations: 220
Gradient evaluations: 19
Iteration: 1, Func. Count: 9, Neg. LLF: 133.69670043992505
Iteration: 2, Func. Count: 19, Neg. LLF: 677.5657395016362
Iteration: 3, Func. Count: 28, Neg. LLF: 6704671.030881245
Iteration: 4, Func. Count: 37, Neg. LLF: 3002409.123427705
Iteration: 5, Func. Count: 46, Neg. LLF: 95.09378066000536
Iteration: 6, Func. Count: 55, Neg. LLF: 100.81331856420174
Iteration: 7, Func. Count: 64, Neg. LLF: 93.23917811885688
Iteration: 8, Func. Count: 73, Neg. LLF: 99.08181003723945
Iteration: 9, Func. Count: 82, Neg. LLF: 92.26812877239365
Iteration: 10, Func. Count: 90, Neg. LLF: 92.18759857278339
Iteration: 11, Func. Count: 98, Neg. LLF: 92.13166869253314
Iteration: 12, Func. Count: 106, Neg. LLF: 92.10983012183041
Iteration: 13, Func. Count: 114, Neg. LLF: 92.10593891168365
Iteration: 14, Func. Count: 122, Neg. LLF: 92.10583769813417
Iteration: 15, Func. Count: 130, Neg. LLF: 92.10583470605918
Iteration: 16, Func. Count: 137, Neg. LLF: 92.1058347060966
Optimization terminated successfully (Exit mode 0)
Current function value: 92.10583470605918
Iterations: 16
Function evaluations: 137
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 108.89824483438413
Iteration: 2, Func. Count: 23, Neg. LLF: 3443.0007559613996
Iteration: 3, Func. Count: 33, Neg. LLF: 4643867.819618669
Iteration: 4, Func. Count: 43, Neg. LLF: 91.56632224136975
Iteration: 5, Func. Count: 52, Neg. LLF: 94.2773041507086
Iteration: 6, Func. Count: 63, Neg. LLF: 101.14355708114067
Iteration: 7, Func. Count: 74, Neg. LLF: 92.69548505518091
Iteration: 8, Func. Count: 84, Neg. LLF: 91.47727626071692
Iteration: 9, Func. Count: 94, Neg. LLF: 91.43271983509294
Iteration: 10, Func. Count: 103, Neg. LLF: 91.43202988198175
Iteration: 11, Func. Count: 112, Neg. LLF: 91.43202780609998
Iteration: 12, Func. Count: 120, Neg. LLF: 91.43202780595219
Optimization terminated successfully (Exit mode 0)
Current function value: 91.43202780609998
Iterations: 12
Function evaluations: 120
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 18934675.58861825
Iteration: 2, Func. Count: 22, Neg. LLF: 3439158.484983225
Iteration: 3, Func. Count: 33, Neg. LLF: 91.05373628688835
Iteration: 4, Func. Count: 43, Neg. LLF: 93.90575459590424
Iteration: 5, Func. Count: 55, Neg. LLF: 6380837.3977086665
Iteration: 6, Func. Count: 66, Neg. LLF: 91.46745391509099
Iteration: 7, Func. Count: 77, Neg. LLF: 91.08919228468787
Iteration: 8, Func. Count: 88, Neg. LLF: 89.92819216578486
Iteration: 9, Func. Count: 98, Neg. LLF: 89.88061518655604
Iteration: 10, Func. Count: 108, Neg. LLF: 89.87088661524545
Iteration: 11, Func. Count: 118, Neg. LLF: 89.86890548142213
Iteration: 12, Func. Count: 128, Neg. LLF: 89.86865408974016
Iteration: 13, Func. Count: 138, Neg. LLF: 89.86858161157976
Iteration: 14, Func. Count: 148, Neg. LLF: 89.86855117698687
Iteration: 15, Func. Count: 158, Neg. LLF: 89.8685500811506
Iteration: 16, Func. Count: 167, Neg. LLF: 89.86855004642412
Optimization terminated successfully (Exit mode 0)
Current function value: 89.8685500811506
Iterations: 16
Function evaluations: 167
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 14961703.284965197
Iteration: 2, Func. Count: 24, Neg. LLF: 5430508.055920841
Iteration: 3, Func. Count: 37, Neg. LLF: 6666853.889466109
Iteration: 4, Func. Count: 49, Neg. LLF: 119.45382297038744
Iteration: 5, Func. Count: 61, Neg. LLF: 104.64875082249173
Iteration: 6, Func. Count: 73, Neg. LLF: 98.50582395134742
Iteration: 7, Func. Count: 85, Neg. LLF: 92.26265821053758
Iteration: 8, Func. Count: 97, Neg. LLF: 91.31629180788059
Iteration: 9, Func. Count: 109, Neg. LLF: 92.23283601801424
Iteration: 10, Func. Count: 121, Neg. LLF: 91.44147681655932
Iteration: 11, Func. Count: 133, Neg. LLF: 90.61551462789535
Iteration: 12, Func. Count: 145, Neg. LLF: 90.43491254263951
Iteration: 13, Func. Count: 156, Neg. LLF: 90.43648967961529
Iteration: 14, Func. Count: 168, Neg. LLF: 90.43089549640456
Iteration: 15, Func. Count: 179, Neg. LLF: 90.43084176618754
Iteration: 16, Func. Count: 190, Neg. LLF: 90.4308402706972
Iteration: 17, Func. Count: 200, Neg. LLF: 90.43084024882958
Optimization terminated successfully (Exit mode 0)
Current function value: 90.4308402706972
Iterations: 17
Function evaluations: 200
Gradient evaluations: 17
Iteration: 1, Func. Count: 13, Neg. LLF: 106.32457282909262
Iteration: 2, Func. Count: 26, Neg. LLF: 120113636.57735027
Iteration: 3, Func. Count: 40, Neg. LLF: 4265670.725467807
Iteration: 4, Func. Count: 53, Neg. LLF: 93.58423396126109
Iteration: 5, Func. Count: 66, Neg. LLF: 92.02535238290457
Iteration: 6, Func. Count: 79, Neg. LLF: 91.42366980840609
Iteration: 7, Func. Count: 92, Neg. LLF: 90.52063975127471
Iteration: 8, Func. Count: 105, Neg. LLF: 90.26673054096669
Iteration: 9, Func. Count: 118, Neg. LLF: 90.78177364078753
Iteration: 10, Func. Count: 131, Neg. LLF: 89.76487993364682
Iteration: 11, Func. Count: 143, Neg. LLF: 90.1580414273469
Iteration: 12, Func. Count: 156, Neg. LLF: 89.59994709943246
Iteration: 13, Func. Count: 168, Neg. LLF: 89.52317525105124
Iteration: 14, Func. Count: 180, Neg. LLF: 89.48118290407635
Iteration: 15, Func. Count: 192, Neg. LLF: 89.46877394027884
Iteration: 16, Func. Count: 204, Neg. LLF: 89.46496588812832
Iteration: 17, Func. Count: 216, Neg. LLF: 89.4640771023566
Iteration: 18, Func. Count: 228, Neg. LLF: 89.46400710437673
Iteration: 19, Func. Count: 240, Neg. LLF: 89.46400593697733
Iteration: 20, Func. Count: 251, Neg. LLF: 89.4640059013545
Optimization terminated successfully (Exit mode 0)
Current function value: 89.46400593697733
Iterations: 20
Function evaluations: 251
Gradient evaluations: 20
Iteration: 1, Func. Count: 6, Neg. LLF: 120.72635827997914
Iteration: 2, Func. Count: 13, Neg. LLF: 152.41123144716113
Iteration: 3, Func. Count: 19, Neg. LLF: 11925.23469515559
Iteration: 4, Func. Count: 25, Neg. LLF: 117.36303522907816
Iteration: 5, Func. Count: 31, Neg. LLF: 164.28461319135783
Iteration: 6, Func. Count: 37, Neg. LLF: 106.85446881253974
Iteration: 7, Func. Count: 43, Neg. LLF: 94.2245603999646
Iteration: 8, Func. Count: 49, Neg. LLF: 94.15454239401154
Iteration: 9, Func. Count: 54, Neg. LLF: 94.15352887211827
Iteration: 10, Func. Count: 59, Neg. LLF: 94.15299794299146
Iteration: 11, Func. Count: 64, Neg. LLF: 94.15299676472442
Iteration: 12, Func. Count: 68, Neg. LLF: 94.15299676471929
Optimization terminated successfully (Exit mode 0)
Current function value: 94.15299676472442
Iterations: 12
Function evaluations: 68
Gradient evaluations: 12
Iteration: 1, Func. Count: 7, Neg. LLF: 320.54392465092
Iteration: 2, Func. Count: 14, Neg. LLF: 50957382.060717136
Iteration: 3, Func. Count: 22, Neg. LLF: 101.65021222062526
Iteration: 4, Func. Count: 30, Neg. LLF: 115.75258545134609
Iteration: 5, Func. Count: 37, Neg. LLF: 94.04360967214488
Iteration: 6, Func. Count: 44, Neg. LLF: 94.88969117073069
Iteration: 7, Func. Count: 51, Neg. LLF: 91.60289142798284
Iteration: 8, Func. Count: 58, Neg. LLF: 91.80597107061614
Iteration: 9, Func. Count: 65, Neg. LLF: 91.54451756110834
Iteration: 10, Func. Count: 71, Neg. LLF: 91.54440214511503
Iteration: 11, Func. Count: 77, Neg. LLF: 91.5444017058042
Optimization terminated successfully (Exit mode 0)
Current function value: 91.5444017058042
Iterations: 11
Function evaluations: 77
Gradient evaluations: 11
Iteration: 1, Func. Count: 8, Neg. LLF: 6194.490986370719
Iteration: 2, Func. Count: 16, Neg. LLF: 25985846.052987512
Iteration: 3, Func. Count: 25, Neg. LLF: 111.35974428298285
Iteration: 4, Func. Count: 33, Neg. LLF: 1188.360947825168
Iteration: 5, Func. Count: 41, Neg. LLF: 94.70320068291386
Iteration: 6, Func. Count: 49, Neg. LLF: 95.93794213954524
Iteration: 7, Func. Count: 57, Neg. LLF: 91.54688694951881
Iteration: 8, Func. Count: 64, Neg. LLF: 91.96080831011544
Iteration: 9, Func. Count: 72, Neg. LLF: 92.1419818533804
Iteration: 10, Func. Count: 81, Neg. LLF: 91.44173409110005
Iteration: 11, Func. Count: 88, Neg. LLF: 91.42456346316828
Iteration: 12, Func. Count: 95, Neg. LLF: 91.42028317449677
Iteration: 13, Func. Count: 102, Neg. LLF: 91.41764121834605
Iteration: 14, Func. Count: 109, Neg. LLF: 91.41739871607317
Iteration: 15, Func. Count: 116, Neg. LLF: 91.41737700754992
Iteration: 16, Func. Count: 123, Neg. LLF: 91.41737493679796
Iteration: 17, Func. Count: 129, Neg. LLF: 91.41737493680186
Optimization terminated successfully (Exit mode 0)
Current function value: 91.41737493679796
Iterations: 17
Function evaluations: 129
Gradient evaluations: 17
Iteration: 1, Func. Count: 9, Neg. LLF: 365.7652719146729
Iteration: 2, Func. Count: 18, Neg. LLF: 2900.6053303104095
Iteration: 3, Func. Count: 27, Neg. LLF: 802.8709197630617
Iteration: 4, Func. Count: 36, Neg. LLF: 130.6271735261128
Iteration: 5, Func. Count: 45, Neg. LLF: 100.25902075228794
Iteration: 6, Func. Count: 54, Neg. LLF: 94.27456797743149
Iteration: 7, Func. Count: 63, Neg. LLF: 91.6632903281643
Iteration: 8, Func. Count: 71, Neg. LLF: 91.75466341990469
Iteration: 9, Func. Count: 80, Neg. LLF: 105.868747758899
Iteration: 10, Func. Count: 89, Neg. LLF: 91.44417913246704
Iteration: 11, Func. Count: 97, Neg. LLF: 91.41805610631708
Iteration: 12, Func. Count: 105, Neg. LLF: 91.41764431929883
Iteration: 13, Func. Count: 113, Neg. LLF: 91.41737910780186
Iteration: 14, Func. Count: 121, Neg. LLF: 91.41737525794622
Iteration: 15, Func. Count: 128, Neg. LLF: 91.41737533446248
Optimization terminated successfully (Exit mode 0)
Current function value: 91.41737525794622
Iterations: 15
Function evaluations: 128
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 372.1649291193986
Iteration: 2, Func. Count: 20, Neg. LLF: 4144.579998271589
Iteration: 3, Func. Count: 30, Neg. LLF: 2786.724906649526
Iteration: 4, Func. Count: 40, Neg. LLF: 99.74711037832138
Iteration: 5, Func. Count: 50, Neg. LLF: 98.99609155093553
Iteration: 6, Func. Count: 60, Neg. LLF: 94.51525782786277
Iteration: 7, Func. Count: 70, Neg. LLF: 92.06913318268931
Iteration: 8, Func. Count: 79, Neg. LLF: 91.42830497510924
Iteration: 9, Func. Count: 88, Neg. LLF: 91.74786144499441
Iteration: 10, Func. Count: 99, Neg. LLF: 91.4216644191341
Iteration: 11, Func. Count: 108, Neg. LLF: 91.41745488590273
Iteration: 12, Func. Count: 117, Neg. LLF: 91.41737892146656
Iteration: 13, Func. Count: 126, Neg. LLF: 91.41737500071338
Iteration: 14, Func. Count: 134, Neg. LLF: 91.41737508204118
Optimization terminated successfully (Exit mode 0)
Current function value: 91.41737500071338
Iterations: 14
Function evaluations: 134
Gradient evaluations: 14
Iteration: 1, Func. Count: 7, Neg. LLF: 119.99821521176754
Iteration: 2, Func. Count: 15, Neg. LLF: 152.84826780546018
Iteration: 3, Func. Count: 22, Neg. LLF: 341.10705005528587
Iteration: 4, Func. Count: 29, Neg. LLF: 223.89650523015877
Iteration: 5, Func. Count: 36, Neg. LLF: 441.42286153887534
Iteration: 6, Func. Count: 43, Neg. LLF: 95.70978220416212
Iteration: 7, Func. Count: 50, Neg. LLF: 94.04444000618345
Iteration: 8, Func. Count: 57, Neg. LLF: 113.28233297878438
Iteration: 9, Func. Count: 65, Neg. LLF: 93.92842356909924
Iteration: 10, Func. Count: 71, Neg. LLF: 93.92770257137113
Iteration: 11, Func. Count: 77, Neg. LLF: 93.92754636922116
Iteration: 12, Func. Count: 83, Neg. LLF: 93.92745575260976
Iteration: 13, Func. Count: 89, Neg. LLF: 93.92743936353412
Iteration: 14, Func. Count: 94, Neg. LLF: 93.92743936352208
Optimization terminated successfully (Exit mode 0)
Current function value: 93.92743936353412
Iterations: 14
Function evaluations: 94
Gradient evaluations: 14
Iteration: 1, Func. Count: 8, Neg. LLF: 123.29602813354616
Iteration: 2, Func. Count: 19, Neg. LLF: 186.47389682609693
Iteration: 3, Func. Count: 28, Neg. LLF: 107.41314003836843
Iteration: 4, Func. Count: 36, Neg. LLF: 106.93632730645922
Iteration: 5, Func. Count: 45, Neg. LLF: 91.75927905323242
Iteration: 6, Func. Count: 52, Neg. LLF: 92.95129335035574
Iteration: 7, Func. Count: 60, Neg. LLF: 95.28200416676614
Iteration: 8, Func. Count: 68, Neg. LLF: 91.54380511942148
Iteration: 9, Func. Count: 76, Neg. LLF: 91.52137450888195
Iteration: 10, Func. Count: 83, Neg. LLF: 91.51754234296551
Iteration: 11, Func. Count: 90, Neg. LLF: 91.51746500105267
Iteration: 12, Func. Count: 97, Neg. LLF: 91.51744195855164
Iteration: 13, Func. Count: 104, Neg. LLF: 91.5174407921068
Iteration: 14, Func. Count: 110, Neg. LLF: 91.51744079205078
Optimization terminated successfully (Exit mode 0)
Current function value: 91.5174407921068
Iterations: 14
Function evaluations: 110
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 3657.091890312001
Iteration: 2, Func. Count: 18, Neg. LLF: 1327.2127570227156
Iteration: 3, Func. Count: 27, Neg. LLF: 95.24592080375906
Iteration: 4, Func. Count: 37, Neg. LLF: 3292.3820511600557
Iteration: 5, Func. Count: 46, Neg. LLF: 93.20800554539392
Iteration: 6, Func. Count: 55, Neg. LLF: 92.09435547043856
Iteration: 7, Func. Count: 64, Neg. LLF: 91.43653314580715
Iteration: 8, Func. Count: 72, Neg. LLF: 91.53247226537496
Iteration: 9, Func. Count: 81, Neg. LLF: 113.53021596287795
Iteration: 10, Func. Count: 90, Neg. LLF: 91.37631845749644
Iteration: 11, Func. Count: 99, Neg. LLF: 91.3020045126856
Iteration: 12, Func. Count: 107, Neg. LLF: 91.28897728448892
Iteration: 13, Func. Count: 115, Neg. LLF: 91.28879062325237
Iteration: 14, Func. Count: 123, Neg. LLF: 91.2887830345772
Iteration: 15, Func. Count: 130, Neg. LLF: 91.28878303455015
Optimization terminated successfully (Exit mode 0)
Current function value: 91.2887830345772
Iterations: 15
Function evaluations: 130
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 163.11624668793604
Iteration: 2, Func. Count: 20, Neg. LLF: 119.31091622362521
Iteration: 3, Func. Count: 30, Neg. LLF: 213.78300652897778
Iteration: 4, Func. Count: 40, Neg. LLF: 92.35761592132604
Iteration: 5, Func. Count: 49, Neg. LLF: 92.0101433285263
Iteration: 6, Func. Count: 58, Neg. LLF: 6080.822415548241
Iteration: 7, Func. Count: 69, Neg. LLF: 97.46853047713763
Iteration: 8, Func. Count: 80, Neg. LLF: 98.20306474239187
Iteration: 9, Func. Count: 90, Neg. LLF: 91.35881258889918
Iteration: 10, Func. Count: 99, Neg. LLF: 91.35471064557574
Iteration: 11, Func. Count: 109, Neg. LLF: 91.28915697930991
Iteration: 12, Func. Count: 118, Neg. LLF: 91.28881414164984
Iteration: 13, Func. Count: 127, Neg. LLF: 91.28878756623254
Iteration: 14, Func. Count: 136, Neg. LLF: 91.28878280088554
Iteration: 15, Func. Count: 144, Neg. LLF: 91.28878286988993
Optimization terminated successfully (Exit mode 0)
Current function value: 91.28878280088554
Iterations: 15
Function evaluations: 144
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 100.27874501188954
Iteration: 2, Func. Count: 22, Neg. LLF: 1300.1021493980227
Iteration: 3, Func. Count: 33, Neg. LLF: 265.85969758883704
Iteration: 4, Func. Count: 44, Neg. LLF: 97.10519195647
Iteration: 5, Func. Count: 55, Neg. LLF: 92.08868556118665
Iteration: 6, Func. Count: 65, Neg. LLF: 93.68168160069499
Iteration: 7, Func. Count: 76, Neg. LLF: 357.4915441587535
Iteration: 8, Func. Count: 88, Neg. LLF: 94.19986306124402
Iteration: 9, Func. Count: 99, Neg. LLF: 91.52328426605769
Iteration: 10, Func. Count: 110, Neg. LLF: 91.46816598462318
Iteration: 11, Func. Count: 121, Neg. LLF: 91.28930668412094
Iteration: 12, Func. Count: 131, Neg. LLF: 91.28883687293761
Iteration: 13, Func. Count: 141, Neg. LLF: 91.28879313066058
Iteration: 14, Func. Count: 151, Neg. LLF: 91.28878339225102
Iteration: 15, Func. Count: 161, Neg. LLF: 91.2887827081398
Optimization terminated successfully (Exit mode 0)
Current function value: 91.2887827081398
Iterations: 15
Function evaluations: 161
Gradient evaluations: 15
Iteration: 1, Func. Count: 8, Neg. LLF: 115.25034975482303
Iteration: 2, Func. Count: 17, Neg. LLF: 202.42102541211364
Iteration: 3, Func. Count: 25, Neg. LLF: 360.41977958954504
Iteration: 4, Func. Count: 33, Neg. LLF: 264.7792242327199
Iteration: 5, Func. Count: 41, Neg. LLF: 99.37792336819292
Iteration: 6, Func. Count: 49, Neg. LLF: 101.04676872139052
Iteration: 7, Func. Count: 57, Neg. LLF: 93.08322722000624
Iteration: 8, Func. Count: 65, Neg. LLF: 98.47407333541616
Iteration: 9, Func. Count: 73, Neg. LLF: 92.9203219997342
Iteration: 10, Func. Count: 80, Neg. LLF: 92.90639416558014
Iteration: 11, Func. Count: 87, Neg. LLF: 92.89980402625443
Iteration: 12, Func. Count: 94, Neg. LLF: 92.89859215894046
Iteration: 13, Func. Count: 101, Neg. LLF: 92.89848872278756
Iteration: 14, Func. Count: 108, Neg. LLF: 92.89848733763539
Iteration: 15, Func. Count: 114, Neg. LLF: 92.89848733763588
Optimization terminated successfully (Exit mode 0)
Current function value: 92.89848733763539
Iterations: 15
Function evaluations: 114
Gradient evaluations: 15
Iteration: 1, Func. Count: 9, Neg. LLF: 119.13642990010902
Iteration: 2, Func. Count: 20, Neg. LLF: 7092.866688022024
Iteration: 3, Func. Count: 29, Neg. LLF: 170.25822185049216
Iteration: 4, Func. Count: 38, Neg. LLF: 103.41909519290186
Iteration: 5, Func. Count: 47, Neg. LLF: 101.16882099201081
Iteration: 6, Func. Count: 56, Neg. LLF: 93.0582177566984
Iteration: 7, Func. Count: 65, Neg. LLF: 91.07247724602739
Iteration: 8, Func. Count: 74, Neg. LLF: 91.20467293526086
Iteration: 9, Func. Count: 83, Neg. LLF: 91.03382725740569
Iteration: 10, Func. Count: 92, Neg. LLF: 91.01641266618846
Iteration: 11, Func. Count: 101, Neg. LLF: 91.00009629655929
Iteration: 12, Func. Count: 109, Neg. LLF: 90.99998242941764
Iteration: 13, Func. Count: 117, Neg. LLF: 90.99998056863896
Iteration: 14, Func. Count: 125, Neg. LLF: 90.99997994250182
Optimization terminated successfully (Exit mode 0)
Current function value: 90.99997994250182
Iterations: 14
Function evaluations: 125
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 27100656.861930873
Iteration: 2, Func. Count: 20, Neg. LLF: 5523502.365693014
Iteration: 3, Func. Count: 30, Neg. LLF: 742.3918247847627
Iteration: 4, Func. Count: 40, Neg. LLF: 91.04145054971617
Iteration: 5, Func. Count: 50, Neg. LLF: 90.08077306594909
Iteration: 6, Func. Count: 59, Neg. LLF: 809.8413071498037
Iteration: 7, Func. Count: 69, Neg. LLF: 266.0242347907955
Iteration: 8, Func. Count: 80, Neg. LLF: 94.11342440613323
Iteration: 9, Func. Count: 91, Neg. LLF: 89.58859146665836
Iteration: 10, Func. Count: 100, Neg. LLF: 89.48626326173803
Iteration: 11, Func. Count: 109, Neg. LLF: 89.47883046392215
Iteration: 12, Func. Count: 118, Neg. LLF: 89.47793872749996
Iteration: 13, Func. Count: 127, Neg. LLF: 89.47786688379992
Iteration: 14, Func. Count: 136, Neg. LLF: 89.4778646437826
Iteration: 15, Func. Count: 144, Neg. LLF: 89.47786463053762
Optimization terminated successfully (Exit mode 0)
Current function value: 89.4778646437826
Iterations: 15
Function evaluations: 144
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 12436992.58832743
Iteration: 2, Func. Count: 22, Neg. LLF: 3905321.8942507203
Iteration: 3, Func. Count: 34, Neg. LLF: 3291813.6798598943
Iteration: 4, Func. Count: 45, Neg. LLF: 94.84681220247867
Iteration: 5, Func. Count: 56, Neg. LLF: 98.93821490856102
Iteration: 6, Func. Count: 67, Neg. LLF: 94.61851621868662
Iteration: 7, Func. Count: 78, Neg. LLF: 92.42306259046603
Iteration: 8, Func. Count: 89, Neg. LLF: 90.58950450454957
Iteration: 9, Func. Count: 100, Neg. LLF: 90.11362295597382
Iteration: 10, Func. Count: 110, Neg. LLF: 94.39844313947059
Iteration: 11, Func. Count: 121, Neg. LLF: 111.07697971367736
Iteration: 12, Func. Count: 132, Neg. LLF: 89.74147331103342
Iteration: 13, Func. Count: 143, Neg. LLF: 89.49957251786097
Iteration: 14, Func. Count: 153, Neg. LLF: 89.4790193580167
Iteration: 15, Func. Count: 163, Neg. LLF: 89.47831244533114
Iteration: 16, Func. Count: 173, Neg. LLF: 89.47793104688499
Iteration: 17, Func. Count: 183, Neg. LLF: 89.47787309082265
Iteration: 18, Func. Count: 193, Neg. LLF: 89.47786516816956
Iteration: 19, Func. Count: 203, Neg. LLF: 89.47786436889328
Optimization terminated successfully (Exit mode 0)
Current function value: 89.47786436889328
Iterations: 19
Function evaluations: 203
Gradient evaluations: 19
Iteration: 1, Func. Count: 12, Neg. LLF: 8728228.336545873
Iteration: 2, Func. Count: 24, Neg. LLF: 5149231.086143081
Iteration: 3, Func. Count: 36, Neg. LLF: 4463954.577325533
Iteration: 4, Func. Count: 48, Neg. LLF: 94.58674564804794
Iteration: 5, Func. Count: 60, Neg. LLF: 92.67291243424347
Iteration: 6, Func. Count: 72, Neg. LLF: 95.95279288028159
Iteration: 7, Func. Count: 85, Neg. LLF: 90.4306030287321
Iteration: 8, Func. Count: 97, Neg. LLF: 89.89087158101555
Iteration: 9, Func. Count: 108, Neg. LLF: 89.99137358609023
Iteration: 10, Func. Count: 120, Neg. LLF: 90.16097174272741
Iteration: 11, Func. Count: 132, Neg. LLF: 89.90093447470174
Iteration: 12, Func. Count: 144, Neg. LLF: 89.5409208599751
Iteration: 13, Func. Count: 156, Neg. LLF: 89.45156584763642
Iteration: 14, Func. Count: 167, Neg. LLF: 89.45003154470659
Iteration: 15, Func. Count: 178, Neg. LLF: 89.45001031205378
Iteration: 16, Func. Count: 190, Neg. LLF: 89.4497177131963
Iteration: 17, Func. Count: 201, Neg. LLF: 89.44971485906214
Iteration: 18, Func. Count: 211, Neg. LLF: 89.44971482879994
Optimization terminated successfully (Exit mode 0)
Current function value: 89.44971485906214
Iterations: 18
Function evaluations: 211
Gradient evaluations: 18
Iteration: 1, Func. Count: 9, Neg. LLF: 110.25274132495142
Iteration: 2, Func. Count: 19, Neg. LLF: 315.29510646130535
Iteration: 3, Func. Count: 28, Neg. LLF: 356.8842181166152
Iteration: 4, Func. Count: 37, Neg. LLF: 184.56737486828186
Iteration: 5, Func. Count: 46, Neg. LLF: 94.6045814431711
Iteration: 6, Func. Count: 55, Neg. LLF: 540.0999800825113
Iteration: 7, Func. Count: 64, Neg. LLF: 93.08973311723162
Iteration: 8, Func. Count: 73, Neg. LLF: 93.05242548255721
Iteration: 9, Func. Count: 82, Neg. LLF: 92.9214938334732
Iteration: 10, Func. Count: 90, Neg. LLF: 92.90400520326588
Iteration: 11, Func. Count: 98, Neg. LLF: 92.89970696813806
Iteration: 12, Func. Count: 106, Neg. LLF: 92.89866897736093
Iteration: 13, Func. Count: 114, Neg. LLF: 92.89848918934258
Iteration: 14, Func. Count: 122, Neg. LLF: 92.89848737414647
Iteration: 15, Func. Count: 129, Neg. LLF: 92.89848742878239
Optimization terminated successfully (Exit mode 0)
Current function value: 92.89848737414647
Iterations: 15
Function evaluations: 129
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 448.3266787754743
Iteration: 2, Func. Count: 20, Neg. LLF: 1131.188251066151
Iteration: 3, Func. Count: 30, Neg. LLF: 96.29133671107901
Iteration: 4, Func. Count: 41, Neg. LLF: 93.14246158557934
Iteration: 5, Func. Count: 51, Neg. LLF: 92.23184846213358
Iteration: 6, Func. Count: 61, Neg. LLF: 91.0571902040714
Iteration: 7, Func. Count: 70, Neg. LLF: 91.1870920438939
Iteration: 8, Func. Count: 80, Neg. LLF: 91.60418148430676
Iteration: 9, Func. Count: 90, Neg. LLF: 91.12425745647333
Iteration: 10, Func. Count: 100, Neg. LLF: 93.9901046388536
Iteration: 11, Func. Count: 111, Neg. LLF: 91.00020585829732
Iteration: 12, Func. Count: 120, Neg. LLF: 90.99998363527851
Iteration: 13, Func. Count: 129, Neg. LLF: 90.99998021662537
Iteration: 14, Func. Count: 137, Neg. LLF: 90.99998021663059
Optimization terminated successfully (Exit mode 0)
Current function value: 90.99998021662537
Iterations: 14
Function evaluations: 137
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 26750863.310526613
Iteration: 2, Func. Count: 22, Neg. LLF: 4352508.8708886355
Iteration: 3, Func. Count: 33, Neg. LLF: 797.4615276500615
Iteration: 4, Func. Count: 44, Neg. LLF: 91.16606319268965
Iteration: 5, Func. Count: 55, Neg. LLF: 90.22797337384493
Iteration: 6, Func. Count: 65, Neg. LLF: 338.83489379211693
Iteration: 7, Func. Count: 76, Neg. LLF: 256.5682967233983
Iteration: 8, Func. Count: 88, Neg. LLF: 95.81193774250846
Iteration: 9, Func. Count: 100, Neg. LLF: 89.80001905443062
Iteration: 10, Func. Count: 111, Neg. LLF: 89.50504380463538
Iteration: 11, Func. Count: 121, Neg. LLF: 95.12856769757279
Iteration: 12, Func. Count: 133, Neg. LLF: 89.47949700850656
Iteration: 13, Func. Count: 143, Neg. LLF: 89.47804699229363
Iteration: 14, Func. Count: 153, Neg. LLF: 89.47786835718594
Iteration: 15, Func. Count: 163, Neg. LLF: 89.47786552649899
Iteration: 16, Func. Count: 173, Neg. LLF: 89.47786431967285
Iteration: 17, Func. Count: 182, Neg. LLF: 89.47786430641865
Optimization terminated successfully (Exit mode 0)
Current function value: 89.47786431967285
Iterations: 17
Function evaluations: 182
Gradient evaluations: 17
Iteration: 1, Func. Count: 12, Neg. LLF: 14870862.940998884
Iteration: 2, Func. Count: 24, Neg. LLF: 4624736.819944217
Iteration: 3, Func. Count: 37, Neg. LLF: 3314822.0833171112
Iteration: 4, Func. Count: 49, Neg. LLF: 103.82750210540644
Iteration: 5, Func. Count: 61, Neg. LLF: 93.0160614539848
Iteration: 6, Func. Count: 73, Neg. LLF: 116.0772341436318
Iteration: 7, Func. Count: 85, Neg. LLF: 90.25930969343251
Iteration: 8, Func. Count: 96, Neg. LLF: 90.83230351722838
Iteration: 9, Func. Count: 108, Neg. LLF: 147.22747408944778
Iteration: 10, Func. Count: 121, Neg. LLF: 89.92754455664698
Iteration: 11, Func. Count: 133, Neg. LLF: 89.51449337027145
Iteration: 12, Func. Count: 144, Neg. LLF: 89.4820274885009
Iteration: 13, Func. Count: 155, Neg. LLF: 89.47839609184962
Iteration: 14, Func. Count: 166, Neg. LLF: 89.47798532840437
Iteration: 15, Func. Count: 177, Neg. LLF: 89.47786495920948
Iteration: 16, Func. Count: 187, Neg. LLF: 89.47786508815076
Optimization terminated successfully (Exit mode 0)
Current function value: 89.47786495920948
Iterations: 16
Function evaluations: 187
Gradient evaluations: 16
Iteration: 1, Func. Count: 13, Neg. LLF: 9691577.169264639
Iteration: 2, Func. Count: 26, Neg. LLF: 4654659.695968396
Iteration: 3, Func. Count: 39, Neg. LLF: 145.63727674714477
Iteration: 4, Func. Count: 52, Neg. LLF: 5780889.089926787
Iteration: 5, Func. Count: 65, Neg. LLF: 93.04410717654726
Iteration: 6, Func. Count: 78, Neg. LLF: 92.37695000130796
Iteration: 7, Func. Count: 91, Neg. LLF: 92.64926005810482
Iteration: 8, Func. Count: 104, Neg. LLF: 90.2517685470753
Iteration: 9, Func. Count: 117, Neg. LLF: 90.4892817236765
Iteration: 10, Func. Count: 130, Neg. LLF: 89.51807592778007
Iteration: 11, Func. Count: 142, Neg. LLF: 90.01711413201164
Iteration: 12, Func. Count: 155, Neg. LLF: 89.47784960104538
Iteration: 13, Func. Count: 167, Neg. LLF: 89.47100030940604
Iteration: 14, Func. Count: 179, Neg. LLF: 89.46771212724572
Iteration: 15, Func. Count: 191, Neg. LLF: 89.4613562589144
Iteration: 16, Func. Count: 203, Neg. LLF: 89.45490264120677
Iteration: 17, Func. Count: 215, Neg. LLF: 89.48311141442392
Iteration: 18, Func. Count: 228, Neg. LLF: 89.4509588484035
Iteration: 19, Func. Count: 240, Neg. LLF: 89.44980695545274
Iteration: 20, Func. Count: 252, Neg. LLF: 89.44972260397918
Iteration: 21, Func. Count: 264, Neg. LLF: 89.44971434501944
Iteration: 22, Func. Count: 275, Neg. LLF: 89.4497143146652
Optimization terminated successfully (Exit mode 0)
Current function value: 89.44971434501944
Iterations: 22
Function evaluations: 275
Gradient evaluations: 22
Iteration: 1, Func. Count: 10, Neg. LLF: 110.18850921263119
Iteration: 2, Func. Count: 21, Neg. LLF: 144.08051078214973
Iteration: 3, Func. Count: 31, Neg. LLF: 14677.796399481027
Iteration: 4, Func. Count: 41, Neg. LLF: 4106704.094750588
Iteration: 5, Func. Count: 51, Neg. LLF: 170.78622626246784
Iteration: 6, Func. Count: 61, Neg. LLF: 139.97481532127733
Iteration: 7, Func. Count: 71, Neg. LLF: 94.90676681762561
Iteration: 8, Func. Count: 81, Neg. LLF: 96.67974268936648
Iteration: 9, Func. Count: 91, Neg. LLF: 103.90363203601748
Iteration: 10, Func. Count: 101, Neg. LLF: 90.64351351417635
Iteration: 11, Func. Count: 110, Neg. LLF: 90.4624825770263
Iteration: 12, Func. Count: 119, Neg. LLF: 90.41337857166043
Iteration: 13, Func. Count: 128, Neg. LLF: 90.41255510071726
Iteration: 14, Func. Count: 137, Neg. LLF: 90.41246453482918
Iteration: 15, Func. Count: 146, Neg. LLF: 90.41246168383799
Iteration: 16, Func. Count: 154, Neg. LLF: 90.41246167887341
Optimization terminated successfully (Exit mode 0)
Current function value: 90.41246168383799
Iterations: 16
Function evaluations: 154
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 2213.694171258716
Iteration: 2, Func. Count: 22, Neg. LLF: 2215.780267868093
Iteration: 3, Func. Count: 33, Neg. LLF: 98.66391744474426
Iteration: 4, Func. Count: 44, Neg. LLF: 93.08446563718992
Iteration: 5, Func. Count: 55, Neg. LLF: 91.409882505877
Iteration: 6, Func. Count: 66, Neg. LLF: 91.60355777660898
Iteration: 7, Func. Count: 77, Neg. LLF: 91.27130899859016
Iteration: 8, Func. Count: 88, Neg. LLF: 91.29880522447556
Iteration: 9, Func. Count: 99, Neg. LLF: 91.0006660875892
Iteration: 10, Func. Count: 109, Neg. LLF: 91.0032531546564
Iteration: 11, Func. Count: 120, Neg. LLF: 91.0020957923029
Iteration: 12, Func. Count: 131, Neg. LLF: 90.99998041931953
Iteration: 13, Func. Count: 141, Neg. LLF: 90.99997992726493
Optimization terminated successfully (Exit mode 0)
Current function value: 90.99997992726493
Iterations: 13
Function evaluations: 141
Gradient evaluations: 13
Iteration: 1, Func. Count: 12, Neg. LLF: 24166368.136489287
Iteration: 2, Func. Count: 24, Neg. LLF: 3768935.1447744276
Iteration: 3, Func. Count: 36, Neg. LLF: 456.4009680206477
Iteration: 4, Func. Count: 48, Neg. LLF: 91.19190899240219
Iteration: 5, Func. Count: 60, Neg. LLF: 91.61684590607052
Iteration: 6, Func. Count: 72, Neg. LLF: 90.29664594799564
Iteration: 7, Func. Count: 84, Neg. LLF: 90.45873889635406
Iteration: 8, Func. Count: 96, Neg. LLF: 91.00957065787773
Iteration: 9, Func. Count: 108, Neg. LLF: 90.0755710531672
Iteration: 10, Func. Count: 120, Neg. LLF: 89.48663050026401
Iteration: 11, Func. Count: 131, Neg. LLF: 89.47925327289096
Iteration: 12, Func. Count: 142, Neg. LLF: 89.47794035656777
Iteration: 13, Func. Count: 153, Neg. LLF: 89.47786842500744
Iteration: 14, Func. Count: 164, Neg. LLF: 89.47786433957687
Iteration: 15, Func. Count: 174, Neg. LLF: 89.47786432629266
Optimization terminated successfully (Exit mode 0)
Current function value: 89.47786433957687
Iterations: 15
Function evaluations: 174
Gradient evaluations: 15
Iteration: 1, Func. Count: 13, Neg. LLF: 12482716.100900067
Iteration: 2, Func. Count: 26, Neg. LLF: 3620711.4862124342
Iteration: 3, Func. Count: 39, Neg. LLF: 4468929.143245661
Iteration: 4, Func. Count: 52, Neg. LLF: 105.01297212069281
Iteration: 5, Func. Count: 65, Neg. LLF: 113.53570791751268
Iteration: 6, Func. Count: 78, Neg. LLF: 122.34299525166844
Iteration: 7, Func. Count: 91, Neg. LLF: 92.7479857932746
Iteration: 8, Func. Count: 104, Neg. LLF: 92.5265838597327
Iteration: 9, Func. Count: 117, Neg. LLF: 90.5097856454747
Iteration: 10, Func. Count: 129, Neg. LLF: 91.5912018609902
Iteration: 11, Func. Count: 143, Neg. LLF: 90.4398433654866
Iteration: 12, Func. Count: 155, Neg. LLF: 90.43427177087167
Iteration: 13, Func. Count: 167, Neg. LLF: 90.43136500005436
Iteration: 14, Func. Count: 179, Neg. LLF: 90.43092064318895
Iteration: 15, Func. Count: 191, Neg. LLF: 90.43084137242876
Iteration: 16, Func. Count: 203, Neg. LLF: 90.43084019021401
Iteration: 17, Func. Count: 214, Neg. LLF: 90.43084016828816
Optimization terminated successfully (Exit mode 0)
Current function value: 90.43084019021401
Iterations: 17
Function evaluations: 214
Gradient evaluations: 17
Iteration: 1, Func. Count: 14, Neg. LLF: 9000230.678716797
Iteration: 2, Func. Count: 28, Neg. LLF: 7779559.985725911
Iteration: 3, Func. Count: 42, Neg. LLF: 2503069.17975654
Iteration: 4, Func. Count: 56, Neg. LLF: 139.47756539102323
Iteration: 5, Func. Count: 70, Neg. LLF: 90.94653945677614
Iteration: 6, Func. Count: 83, Neg. LLF: 92.80942036519978
Iteration: 7, Func. Count: 97, Neg. LLF: 33694.62976310529
Iteration: 8, Func. Count: 111, Neg. LLF: 90.88780645853454
Iteration: 9, Func. Count: 125, Neg. LLF: 93.504045195642
Iteration: 10, Func. Count: 139, Neg. LLF: 89.71900039429512
Iteration: 11, Func. Count: 153, Neg. LLF: 89.73544938132042
Iteration: 12, Func. Count: 167, Neg. LLF: 89.46236091381576
Iteration: 13, Func. Count: 180, Neg. LLF: 89.45719531337376
Iteration: 14, Func. Count: 193, Neg. LLF: 89.45299724299981
Iteration: 15, Func. Count: 206, Neg. LLF: 89.45007034155671
Iteration: 16, Func. Count: 219, Neg. LLF: 89.44975571848872
Iteration: 17, Func. Count: 232, Neg. LLF: 89.44971541640878
Iteration: 18, Func. Count: 245, Neg. LLF: 89.44971426777462
Iteration: 19, Func. Count: 257, Neg. LLF: 89.44971423742564
Optimization terminated successfully (Exit mode 0)
Current function value: 89.44971426777462
Iterations: 19
Function evaluations: 257
Gradient evaluations: 19
Iteration: 1, Func. Count: 7, Neg. LLF: 106.32500488902213
Iteration: 2, Func. Count: 15, Neg. LLF: 224.42766710638364
Iteration: 3, Func. Count: 22, Neg. LLF: 118.61405389740497
Iteration: 4, Func. Count: 29, Neg. LLF: 185.2491653020534
Iteration: 5, Func. Count: 36, Neg. LLF: 128.38305857021072
Iteration: 6, Func. Count: 43, Neg. LLF: 95.87111005298031
Iteration: 7, Func. Count: 50, Neg. LLF: 94.18150961619996
Iteration: 8, Func. Count: 57, Neg. LLF: 93.50648474877774
Iteration: 9, Func. Count: 64, Neg. LLF: 93.47179157910345
Iteration: 10, Func. Count: 70, Neg. LLF: 93.4717648736442
Iteration: 11, Func. Count: 75, Neg. LLF: 93.47176487364571
Optimization terminated successfully (Exit mode 0)
Current function value: 93.4717648736442
Iterations: 11
Function evaluations: 75
Gradient evaluations: 11
Iteration: 1, Func. Count: 8, Neg. LLF: 804.5639410872425
Iteration: 2, Func. Count: 16, Neg. LLF: 36947766.98183428
Iteration: 3, Func. Count: 25, Neg. LLF: 108.92074018338535
Iteration: 4, Func. Count: 33, Neg. LLF: 120.46964953725531
Iteration: 5, Func. Count: 41, Neg. LLF: 97.2529905603747
Iteration: 6, Func. Count: 49, Neg. LLF: 91.536030345783
Iteration: 7, Func. Count: 57, Neg. LLF: 94.2223533852729
Iteration: 8, Func. Count: 65, Neg. LLF: 91.30779094879153
Iteration: 9, Func. Count: 73, Neg. LLF: 91.13346573040732
Iteration: 10, Func. Count: 80, Neg. LLF: 91.13108654033641
Iteration: 11, Func. Count: 87, Neg. LLF: 91.12901849550087
Iteration: 12, Func. Count: 94, Neg. LLF: 91.12886875612537
Iteration: 13, Func. Count: 101, Neg. LLF: 91.12886338538873
Iteration: 14, Func. Count: 107, Neg. LLF: 91.12886338537216
Optimization terminated successfully (Exit mode 0)
Current function value: 91.12886338538873
Iterations: 14
Function evaluations: 107
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 245688.88940856204
Iteration: 2, Func. Count: 18, Neg. LLF: 7144.5527632772655
Iteration: 3, Func. Count: 27, Neg. LLF: 114.70389681927237
Iteration: 4, Func. Count: 36, Neg. LLF: 106.48594065326729
Iteration: 5, Func. Count: 45, Neg. LLF: 106.55601405720112
Iteration: 6, Func. Count: 54, Neg. LLF: 118.66808016529626
Iteration: 7, Func. Count: 63, Neg. LLF: 91.80458417702047
Iteration: 8, Func. Count: 72, Neg. LLF: 91.2043295483179
Iteration: 9, Func. Count: 80, Neg. LLF: 91.84051290241048
Iteration: 10, Func. Count: 89, Neg. LLF: 91.2519612964077
Iteration: 11, Func. Count: 98, Neg. LLF: 91.1432037242446
Iteration: 12, Func. Count: 106, Neg. LLF: 91.13239372400683
Iteration: 13, Func. Count: 114, Neg. LLF: 91.13071010827744
Iteration: 14, Func. Count: 122, Neg. LLF: 91.12894745296653
Iteration: 15, Func. Count: 130, Neg. LLF: 91.1288678222585
Iteration: 16, Func. Count: 138, Neg. LLF: 91.12886335827123
Iteration: 17, Func. Count: 145, Neg. LLF: 91.12886340491686
Optimization terminated successfully (Exit mode 0)
Current function value: 91.12886335827123
Iterations: 17
Function evaluations: 145
Gradient evaluations: 17
Iteration: 1, Func. Count: 10, Neg. LLF: 356.9669814371895
Iteration: 2, Func. Count: 20, Neg. LLF: 590.0804786670855
Iteration: 3, Func. Count: 30, Neg. LLF: 952.7092383669598
Iteration: 4, Func. Count: 40, Neg. LLF: 110.8017389511047
Iteration: 5, Func. Count: 50, Neg. LLF: 102.10529009705
Iteration: 6, Func. Count: 60, Neg. LLF: 99.05442636046125
Iteration: 7, Func. Count: 70, Neg. LLF: 96.35238414040207
Iteration: 8, Func. Count: 80, Neg. LLF: 97.56609135228621
Iteration: 9, Func. Count: 90, Neg. LLF: 91.21411866686316
Iteration: 10, Func. Count: 99, Neg. LLF: 91.29442516816306
Iteration: 11, Func. Count: 109, Neg. LLF: 91.4869524418094
Iteration: 12, Func. Count: 119, Neg. LLF: 91.13557076096221
Iteration: 13, Func. Count: 128, Neg. LLF: 91.13047499921602
Iteration: 14, Func. Count: 137, Neg. LLF: 91.12927367472612
Iteration: 15, Func. Count: 146, Neg. LLF: 91.12890686393519
Iteration: 16, Func. Count: 155, Neg. LLF: 91.12886428767786
Iteration: 17, Func. Count: 164, Neg. LLF: 91.1288633450169
Optimization terminated successfully (Exit mode 0)
Current function value: 91.1288633450169
Iterations: 17
Function evaluations: 164
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 386.6815943766633
Iteration: 2, Func. Count: 22, Neg. LLF: 237.5882782708106
Iteration: 3, Func. Count: 33, Neg. LLF: 105.86518555268272
Iteration: 4, Func. Count: 44, Neg. LLF: 131.73228038455952
Iteration: 5, Func. Count: 55, Neg. LLF: 100.57278038093303
Iteration: 6, Func. Count: 66, Neg. LLF: 111.081834657807
Iteration: 7, Func. Count: 77, Neg. LLF: 98.35361434790067
Iteration: 8, Func. Count: 88, Neg. LLF: 99.72612431036552
Iteration: 9, Func. Count: 99, Neg. LLF: 91.69203929834809
Iteration: 10, Func. Count: 109, Neg. LLF: 91.38313440261028
Iteration: 11, Func. Count: 119, Neg. LLF: 93.02987554408334
Iteration: 12, Func. Count: 131, Neg. LLF: 91.19446813119151
Iteration: 13, Func. Count: 141, Neg. LLF: 91.18015645180677
Iteration: 14, Func. Count: 151, Neg. LLF: 91.13440944532559
Iteration: 15, Func. Count: 161, Neg. LLF: 91.12994967824633
Iteration: 16, Func. Count: 171, Neg. LLF: 91.12908787010831
Iteration: 17, Func. Count: 181, Neg. LLF: 91.12891313179114
Iteration: 18, Func. Count: 191, Neg. LLF: 91.12886399427813
Iteration: 19, Func. Count: 201, Neg. LLF: 91.12886336927784
Optimization terminated successfully (Exit mode 0)
Current function value: 91.12886336927784
Iterations: 19
Function evaluations: 201
Gradient evaluations: 19
Iteration: 1, Func. Count: 8, Neg. LLF: 106.09528915262275
Iteration: 2, Func. Count: 17, Neg. LLF: 209.35034464341092
Iteration: 3, Func. Count: 25, Neg. LLF: 124.59436124409692
Iteration: 4, Func. Count: 33, Neg. LLF: 165.97319195118536
Iteration: 5, Func. Count: 41, Neg. LLF: 134.97346880330088
Iteration: 6, Func. Count: 49, Neg. LLF: 144.37986966808504
Iteration: 7, Func. Count: 57, Neg. LLF: 93.41386844881438
Iteration: 8, Func. Count: 64, Neg. LLF: 93.39199215272079
Iteration: 9, Func. Count: 71, Neg. LLF: 93.5075093244615
Iteration: 10, Func. Count: 80, Neg. LLF: 93.39593592553062
Iteration: 11, Func. Count: 88, Neg. LLF: 93.38792768602801
Iteration: 12, Func. Count: 95, Neg. LLF: 93.38780477949389
Iteration: 13, Func. Count: 101, Neg. LLF: 93.38780477949992
Optimization terminated successfully (Exit mode 0)
Current function value: 93.38780477949389
Iterations: 13
Function evaluations: 101
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 290.068072540395
Iteration: 2, Func. Count: 19, Neg. LLF: 155.07723339703898
Iteration: 3, Func. Count: 28, Neg. LLF: 125.31290723566623
Iteration: 4, Func. Count: 37, Neg. LLF: 117.03174684510816
Iteration: 5, Func. Count: 46, Neg. LLF: 95.35517998234471
Iteration: 6, Func. Count: 55, Neg. LLF: 91.29724822354007
Iteration: 7, Func. Count: 63, Neg. LLF: 91.77100545957846
Iteration: 8, Func. Count: 72, Neg. LLF: 93.00011549997657
Iteration: 9, Func. Count: 81, Neg. LLF: 91.20211150293123
Iteration: 10, Func. Count: 90, Neg. LLF: 91.1446043195839
Iteration: 11, Func. Count: 99, Neg. LLF: 91.12528477229534
Iteration: 12, Func. Count: 107, Neg. LLF: 91.12526506185532
Iteration: 13, Func. Count: 115, Neg. LLF: 91.12526452924816
Optimization terminated successfully (Exit mode 0)
Current function value: 91.12526452924816
Iterations: 13
Function evaluations: 115
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 260.2270626822084
Iteration: 2, Func. Count: 20, Neg. LLF: 862.6706717248136
Iteration: 3, Func. Count: 30, Neg. LLF: 99.96620731287149
Iteration: 4, Func. Count: 40, Neg. LLF: 104.6112593285285
Iteration: 5, Func. Count: 50, Neg. LLF: 92.2510287990705
Iteration: 6, Func. Count: 60, Neg. LLF: 93.53641315542659
Iteration: 7, Func. Count: 70, Neg. LLF: 102.03289039325395
Iteration: 8, Func. Count: 80, Neg. LLF: 91.6073983528357
Iteration: 9, Func. Count: 90, Neg. LLF: 91.35849938423326
Iteration: 10, Func. Count: 100, Neg. LLF: 91.26229004532281
Iteration: 11, Func. Count: 109, Neg. LLF: 91.42483510525943
Iteration: 12, Func. Count: 119, Neg. LLF: 92.78429672033599
Iteration: 13, Func. Count: 129, Neg. LLF: 91.20560151116926
Iteration: 14, Func. Count: 138, Neg. LLF: 91.20500662079007
Iteration: 15, Func. Count: 147, Neg. LLF: 91.20497759557031
Iteration: 16, Func. Count: 156, Neg. LLF: 91.20497535496445
Iteration: 17, Func. Count: 164, Neg. LLF: 91.2049753550039
Optimization terminated successfully (Exit mode 0)
Current function value: 91.20497535496445
Iterations: 17
Function evaluations: 164
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 159.5804169152187
Iteration: 2, Func. Count: 22, Neg. LLF: 336.6904469130496
Iteration: 3, Func. Count: 33, Neg. LLF: 97.25920044588005
Iteration: 4, Func. Count: 44, Neg. LLF: 378.7557143517946
Iteration: 5, Func. Count: 55, Neg. LLF: 91.67307995693058
Iteration: 6, Func. Count: 65, Neg. LLF: 91.31066908300929
Iteration: 7, Func. Count: 75, Neg. LLF: 91.88652253400898
Iteration: 8, Func. Count: 86, Neg. LLF: 94.2170634890438
Iteration: 9, Func. Count: 97, Neg. LLF: 91.21742111473213
Iteration: 10, Func. Count: 108, Neg. LLF: 93.78758519307009
Iteration: 11, Func. Count: 120, Neg. LLF: 91.1288991035741
Iteration: 12, Func. Count: 130, Neg. LLF: 91.12555949630213
Iteration: 13, Func. Count: 140, Neg. LLF: 91.1252807321135
Iteration: 14, Func. Count: 150, Neg. LLF: 91.12526642449971
Iteration: 15, Func. Count: 160, Neg. LLF: 91.12526492030564
Iteration: 16, Func. Count: 169, Neg. LLF: 91.12526497867336
Optimization terminated successfully (Exit mode 0)
Current function value: 91.12526492030564
Iterations: 16
Function evaluations: 169
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 132788.08192167932
Iteration: 2, Func. Count: 24, Neg. LLF: 113.93846418522857
Iteration: 3, Func. Count: 36, Neg. LLF: 504.94828922409397
Iteration: 4, Func. Count: 48, Neg. LLF: 91.5464063934648
Iteration: 5, Func. Count: 59, Neg. LLF: 129.56915989678131
Iteration: 6, Func. Count: 71, Neg. LLF: 94.18562076582513
Iteration: 7, Func. Count: 83, Neg. LLF: 95.24621841705383
Iteration: 8, Func. Count: 95, Neg. LLF: 93.9142984306309
Iteration: 9, Func. Count: 107, Neg. LLF: 91.1486814433771
Iteration: 10, Func. Count: 118, Neg. LLF: 94.37596047958665
Iteration: 11, Func. Count: 130, Neg. LLF: 91.15389743571606
Iteration: 12, Func. Count: 142, Neg. LLF: 91.12569677646998
Iteration: 13, Func. Count: 153, Neg. LLF: 91.12534907235158
Iteration: 14, Func. Count: 164, Neg. LLF: 91.12528022619593
Iteration: 15, Func. Count: 175, Neg. LLF: 91.12526515420946
Iteration: 16, Func. Count: 186, Neg. LLF: 91.12526453715034
Optimization terminated successfully (Exit mode 0)
Current function value: 91.12526453715034
Iterations: 16
Function evaluations: 186
Gradient evaluations: 16
Iteration: 1, Func. Count: 9, Neg. LLF: 99.78915046403384
Iteration: 2, Func. Count: 19, Neg. LLF: 349.56754445136863
Iteration: 3, Func. Count: 28, Neg. LLF: 158.01866640289046
Iteration: 4, Func. Count: 37, Neg. LLF: 4309786.277163191
Iteration: 5, Func. Count: 46, Neg. LLF: 96.60257491568592
Iteration: 6, Func. Count: 55, Neg. LLF: 109.20298251867163
Iteration: 7, Func. Count: 64, Neg. LLF: 93.0780046789749
Iteration: 8, Func. Count: 73, Neg. LLF: 93.82885309759492
Iteration: 9, Func. Count: 82, Neg. LLF: 92.91383530712451
Iteration: 10, Func. Count: 90, Neg. LLF: 92.90083673436783
Iteration: 11, Func. Count: 98, Neg. LLF: 92.89864876266658
Iteration: 12, Func. Count: 106, Neg. LLF: 92.89849481213737
Iteration: 13, Func. Count: 114, Neg. LLF: 92.89848759737758
Iteration: 14, Func. Count: 121, Neg. LLF: 92.89848759737576
Optimization terminated successfully (Exit mode 0)
Current function value: 92.89848759737758
Iterations: 14
Function evaluations: 121
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 395.5786649864599
Iteration: 2, Func. Count: 20, Neg. LLF: 24356.330664825833
Iteration: 3, Func. Count: 30, Neg. LLF: 285.58339651424967
Iteration: 4, Func. Count: 40, Neg. LLF: 95.13073393224451
Iteration: 5, Func. Count: 51, Neg. LLF: 91.49473270863257
Iteration: 6, Func. Count: 61, Neg. LLF: 91.25376561984577
Iteration: 7, Func. Count: 71, Neg. LLF: 95.76202569578888
Iteration: 8, Func. Count: 82, Neg. LLF: 90.90807741378778
Iteration: 9, Func. Count: 92, Neg. LLF: 90.9846523609642
Iteration: 10, Func. Count: 102, Neg. LLF: 90.86078094318184
Iteration: 11, Func. Count: 112, Neg. LLF: 90.85409365719082
Iteration: 12, Func. Count: 122, Neg. LLF: 90.84240064651678
Iteration: 13, Func. Count: 131, Neg. LLF: 90.84236941149788
Iteration: 14, Func. Count: 139, Neg. LLF: 90.84236941148974
Optimization terminated successfully (Exit mode 0)
Current function value: 90.84236941149788
Iterations: 14
Function evaluations: 139
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 39329502.59338586
Iteration: 2, Func. Count: 22, Neg. LLF: 5681741.310616538
Iteration: 3, Func. Count: 33, Neg. LLF: 1327.2937160877552
Iteration: 4, Func. Count: 44, Neg. LLF: 92.95730782112226
Iteration: 5, Func. Count: 56, Neg. LLF: 89.8205644096419
Iteration: 6, Func. Count: 66, Neg. LLF: 102.68950952315251
Iteration: 7, Func. Count: 77, Neg. LLF: 93.96676246291877
Iteration: 8, Func. Count: 88, Neg. LLF: 89.6618182568544
Iteration: 9, Func. Count: 99, Neg. LLF: 89.48289424669417
Iteration: 10, Func. Count: 109, Neg. LLF: 89.47852807016915
Iteration: 11, Func. Count: 119, Neg. LLF: 89.47786979478956
Iteration: 12, Func. Count: 129, Neg. LLF: 89.47786468643947
Iteration: 13, Func. Count: 138, Neg. LLF: 89.47786467317052
Optimization terminated successfully (Exit mode 0)
Current function value: 89.47786468643947
Iterations: 13
Function evaluations: 138
Gradient evaluations: 13
Iteration: 1, Func. Count: 12, Neg. LLF: 24096758.42174827
Iteration: 2, Func. Count: 24, Neg. LLF: 4353899.695999852
Iteration: 3, Func. Count: 36, Neg. LLF: 204.38150459980108
Iteration: 4, Func. Count: 48, Neg. LLF: 487.72218715205116
Iteration: 5, Func. Count: 60, Neg. LLF: 91.71638346617031
Iteration: 6, Func. Count: 72, Neg. LLF: 91.07633552991388
Iteration: 7, Func. Count: 84, Neg. LLF: 89.87894636628529
Iteration: 8, Func. Count: 95, Neg. LLF: 91.22433350399889
Iteration: 9, Func. Count: 107, Neg. LLF: 90.02622085837433
Iteration: 10, Func. Count: 119, Neg. LLF: 89.58776243454723
Iteration: 11, Func. Count: 130, Neg. LLF: 89.53601355436467
Iteration: 12, Func. Count: 141, Neg. LLF: 89.50128944085453
Iteration: 13, Func. Count: 152, Neg. LLF: 89.4798506187759
Iteration: 14, Func. Count: 163, Neg. LLF: 89.47795399970893
Iteration: 15, Func. Count: 174, Neg. LLF: 89.47787828421615
Iteration: 16, Func. Count: 185, Neg. LLF: 89.47786517481289
Iteration: 17, Func. Count: 196, Neg. LLF: 89.47786431644202
Optimization terminated successfully (Exit mode 0)
Current function value: 89.47786431644202
Iterations: 17
Function evaluations: 196
Gradient evaluations: 17
Iteration: 1, Func. Count: 13, Neg. LLF: 17986032.43504389
Iteration: 2, Func. Count: 26, Neg. LLF: 3952545.578582723
Iteration: 3, Func. Count: 39, Neg. LLF: 361.9875132891003
Iteration: 4, Func. Count: 52, Neg. LLF: 92.19988512369993
Iteration: 5, Func. Count: 65, Neg. LLF: 103.41984968977256
Iteration: 6, Func. Count: 78, Neg. LLF: 100.05078558065107
Iteration: 7, Func. Count: 91, Neg. LLF: 89.73622108834118
Iteration: 8, Func. Count: 103, Neg. LLF: 90.66276528067708
Iteration: 9, Func. Count: 116, Neg. LLF: 89.64752589098802
Iteration: 10, Func. Count: 129, Neg. LLF: 89.4937047364891
Iteration: 11, Func. Count: 141, Neg. LLF: 89.78472590945486
Iteration: 12, Func. Count: 154, Neg. LLF: 89.4718620023556
Iteration: 13, Func. Count: 167, Neg. LLF: 89.45065265388709
Iteration: 14, Func. Count: 179, Neg. LLF: 89.4498384299853
Iteration: 15, Func. Count: 191, Neg. LLF: 89.4497418475502
Iteration: 16, Func. Count: 203, Neg. LLF: 89.44971549116592
Iteration: 17, Func. Count: 215, Neg. LLF: 89.44971427506168
Iteration: 18, Func. Count: 226, Neg. LLF: 89.44971424470532
Optimization terminated successfully (Exit mode 0)
Current function value: 89.44971427506168
Iterations: 18
Function evaluations: 226
Gradient evaluations: 18
Iteration: 1, Func. Count: 10, Neg. LLF: 100.13568518174377
Iteration: 2, Func. Count: 21, Neg. LLF: 124.15135359049397
Iteration: 3, Func. Count: 31, Neg. LLF: 2030373.8273075423
Iteration: 4, Func. Count: 41, Neg. LLF: 419.93415770141377
Iteration: 5, Func. Count: 51, Neg. LLF: 323.0730027721808
Iteration: 6, Func. Count: 61, Neg. LLF: 110.49259527564394
Iteration: 7, Func. Count: 71, Neg. LLF: 93.21260930351546
Iteration: 8, Func. Count: 81, Neg. LLF: 97.70567154075303
Iteration: 9, Func. Count: 91, Neg. LLF: 92.5852793677064
Iteration: 10, Func. Count: 100, Neg. LLF: 92.54229973649426
Iteration: 11, Func. Count: 109, Neg. LLF: 92.46305457602622
Iteration: 12, Func. Count: 118, Neg. LLF: 92.44058095403172
Iteration: 13, Func. Count: 127, Neg. LLF: 92.43532838115993
Iteration: 14, Func. Count: 136, Neg. LLF: 92.43467016772533
Iteration: 15, Func. Count: 145, Neg. LLF: 92.43452604982522
Iteration: 16, Func. Count: 154, Neg. LLF: 92.43451919322786
Iteration: 17, Func. Count: 162, Neg. LLF: 92.43451910612349
Optimization terminated successfully (Exit mode 0)
Current function value: 92.43451919322786
Iterations: 17
Function evaluations: 162
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 10165225.101850808
Iteration: 2, Func. Count: 22, Neg. LLF: 2885960.7094623987
Iteration: 3, Func. Count: 33, Neg. LLF: 204.98553223937148
Iteration: 4, Func. Count: 44, Neg. LLF: 92.5489054866136
Iteration: 5, Func. Count: 56, Neg. LLF: 107.7564038191497
Iteration: 6, Func. Count: 67, Neg. LLF: 93.07899000218725
Iteration: 7, Func. Count: 78, Neg. LLF: 90.96510495128476
Iteration: 8, Func. Count: 89, Neg. LLF: 90.95811467252398
Iteration: 9, Func. Count: 100, Neg. LLF: 90.70022704979074
Iteration: 10, Func. Count: 111, Neg. LLF: 90.64208852810002
Iteration: 11, Func. Count: 122, Neg. LLF: 90.64815340168309
Iteration: 12, Func. Count: 133, Neg. LLF: 90.62297997138707
Iteration: 13, Func. Count: 143, Neg. LLF: 90.62287402421347
Iteration: 14, Func. Count: 153, Neg. LLF: 90.62286550874647
Iteration: 15, Func. Count: 163, Neg. LLF: 90.62286248674509
Iteration: 16, Func. Count: 172, Neg. LLF: 90.62286248674592
Optimization terminated successfully (Exit mode 0)
Current function value: 90.62286248674509
Iterations: 16
Function evaluations: 172
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 38217166.54846298
Iteration: 2, Func. Count: 24, Neg. LLF: 5545436.253111559
Iteration: 3, Func. Count: 36, Neg. LLF: 1706.327018288
Iteration: 4, Func. Count: 48, Neg. LLF: 92.33774338006991
Iteration: 5, Func. Count: 61, Neg. LLF: 90.18653338969604
Iteration: 6, Func. Count: 72, Neg. LLF: 100.54111024584743
Iteration: 7, Func. Count: 84, Neg. LLF: 110.7250412367808
Iteration: 8, Func. Count: 97, Neg. LLF: 90.20009142219895
Iteration: 9, Func. Count: 109, Neg. LLF: 89.4914792304926
Iteration: 10, Func. Count: 120, Neg. LLF: 89.47923674724322
Iteration: 11, Func. Count: 131, Neg. LLF: 89.478053002516
Iteration: 12, Func. Count: 142, Neg. LLF: 89.47790576205779
Iteration: 13, Func. Count: 153, Neg. LLF: 89.47786660626694
Iteration: 14, Func. Count: 164, Neg. LLF: 89.4778644520971
Iteration: 15, Func. Count: 174, Neg. LLF: 89.47786443885013
Optimization terminated successfully (Exit mode 0)
Current function value: 89.4778644520971
Iterations: 15
Function evaluations: 174
Gradient evaluations: 15
Iteration: 1, Func. Count: 13, Neg. LLF: 26903214.245495915
Iteration: 2, Func. Count: 26, Neg. LLF: 4463750.922217094
Iteration: 3, Func. Count: 39, Neg. LLF: 246.33300581842983
Iteration: 4, Func. Count: 52, Neg. LLF: 92.12354817387407
Iteration: 5, Func. Count: 65, Neg. LLF: 90.37730451637455
Iteration: 6, Func. Count: 77, Neg. LLF: 155.04904095891195
Iteration: 7, Func. Count: 91, Neg. LLF: 108.01009712992943
Iteration: 8, Func. Count: 104, Neg. LLF: 90.22402975137328
Iteration: 9, Func. Count: 117, Neg. LLF: 89.50799998340645
Iteration: 10, Func. Count: 129, Neg. LLF: 89.58215848894328
Iteration: 11, Func. Count: 142, Neg. LLF: 89.4823529837123
Iteration: 12, Func. Count: 154, Neg. LLF: 89.47855540424602
Iteration: 13, Func. Count: 166, Neg. LLF: 89.47803519530753
Iteration: 14, Func. Count: 178, Neg. LLF: 89.47787116183407
Iteration: 15, Func. Count: 190, Neg. LLF: 89.47786514056983
Iteration: 16, Func. Count: 202, Neg. LLF: 89.47786434677325
Optimization terminated successfully (Exit mode 0)
Current function value: 89.47786434677325
Iterations: 16
Function evaluations: 202
Gradient evaluations: 16
Iteration: 1, Func. Count: 14, Neg. LLF: 20108771.777273018
Iteration: 2, Func. Count: 28, Neg. LLF: 3967099.335540516
Iteration: 3, Func. Count: 42, Neg. LLF: 3331722.1071845284
Iteration: 4, Func. Count: 56, Neg. LLF: 91.9741832196644
Iteration: 5, Func. Count: 70, Neg. LLF: 94.62546325323032
Iteration: 6, Func. Count: 84, Neg. LLF: 107.45830429052633
Iteration: 7, Func. Count: 98, Neg. LLF: 90.64007313462723
Iteration: 8, Func. Count: 112, Neg. LLF: 90.84373636563575
Iteration: 9, Func. Count: 126, Neg. LLF: 89.63209178376276
Iteration: 10, Func. Count: 139, Neg. LLF: 89.66558851820666
Iteration: 11, Func. Count: 153, Neg. LLF: 89.68399105043623
Iteration: 12, Func. Count: 167, Neg. LLF: 89.47082277823118
Iteration: 13, Func. Count: 180, Neg. LLF: 89.4611682704441
Iteration: 14, Func. Count: 193, Neg. LLF: 89.48452402376458
Iteration: 15, Func. Count: 207, Neg. LLF: 89.453544103136
Iteration: 16, Func. Count: 221, Neg. LLF: 89.4587938021122
Iteration: 17, Func. Count: 235, Neg. LLF: 89.44978892033097
Iteration: 18, Func. Count: 248, Neg. LLF: 89.44972011025082
Iteration: 19, Func. Count: 261, Neg. LLF: 89.44971523491775
Iteration: 20, Func. Count: 274, Neg. LLF: 89.44971432343831
Optimization terminated successfully (Exit mode 0)
Current function value: 89.44971432343831
Iterations: 20
Function evaluations: 274
Gradient evaluations: 20
Iteration: 1, Func. Count: 11, Neg. LLF: 97.6303950801042
Iteration: 2, Func. Count: 23, Neg. LLF: 290.48643163529624
Iteration: 3, Func. Count: 34, Neg. LLF: 156.9702292744045
Iteration: 4, Func. Count: 45, Neg. LLF: 7004.463073834499
Iteration: 5, Func. Count: 56, Neg. LLF: 371.1320198963149
Iteration: 6, Func. Count: 67, Neg. LLF: 126.14677824611964
Iteration: 7, Func. Count: 78, Neg. LLF: 135.66698619086318
Iteration: 8, Func. Count: 89, Neg. LLF: 99.66005731682539
Iteration: 9, Func. Count: 100, Neg. LLF: 96.67162080182858
Iteration: 10, Func. Count: 111, Neg. LLF: 105.26708961675082
Iteration: 11, Func. Count: 122, Neg. LLF: 90.95479796969799
Iteration: 12, Func. Count: 132, Neg. LLF: 90.54124700663412
Iteration: 13, Func. Count: 142, Neg. LLF: 90.45522230543048
Iteration: 14, Func. Count: 152, Neg. LLF: 90.42414158600812
Iteration: 15, Func. Count: 162, Neg. LLF: 90.41265916115327
Iteration: 16, Func. Count: 172, Neg. LLF: 90.41248149448279
Iteration: 17, Func. Count: 182, Neg. LLF: 90.41246325361061
Iteration: 18, Func. Count: 192, Neg. LLF: 90.41246162640819
Iteration: 19, Func. Count: 201, Neg. LLF: 90.41246162143791
Optimization terminated successfully (Exit mode 0)
Current function value: 90.41246162640819
Iterations: 19
Function evaluations: 201
Gradient evaluations: 19
Iteration: 1, Func. Count: 12, Neg. LLF: 9468157.699481457
Iteration: 2, Func. Count: 24, Neg. LLF: 2942651.2397538377
Iteration: 3, Func. Count: 36, Neg. LLF: 389.6323782856344
Iteration: 4, Func. Count: 48, Neg. LLF: 94.67815875558071
Iteration: 5, Func. Count: 60, Neg. LLF: 113.65668155486149
Iteration: 6, Func. Count: 72, Neg. LLF: 91.37595609036414
Iteration: 7, Func. Count: 84, Neg. LLF: 90.78472565888997
Iteration: 8, Func. Count: 96, Neg. LLF: 91.26909504762608
Iteration: 9, Func. Count: 108, Neg. LLF: 91.0884871917258
Iteration: 10, Func. Count: 120, Neg. LLF: 90.66621924402772
Iteration: 11, Func. Count: 132, Neg. LLF: 90.53189603843656
Iteration: 12, Func. Count: 143, Neg. LLF: 90.52702324004422
Iteration: 13, Func. Count: 154, Neg. LLF: 90.5235506124879
Iteration: 14, Func. Count: 165, Neg. LLF: 90.52240873778995
Iteration: 15, Func. Count: 176, Neg. LLF: 90.52231656156081
Iteration: 16, Func. Count: 187, Neg. LLF: 90.52231466522484
Iteration: 17, Func. Count: 197, Neg. LLF: 90.52231466520541
Optimization terminated successfully (Exit mode 0)
Current function value: 90.52231466522484
Iterations: 17
Function evaluations: 197
Gradient evaluations: 17
Iteration: 1, Func. Count: 13, Neg. LLF: 37906390.75266973
Iteration: 2, Func. Count: 26, Neg. LLF: 4196162.2574276645
Iteration: 3, Func. Count: 39, Neg. LLF: 7685.0408673208585
Iteration: 4, Func. Count: 52, Neg. LLF: 92.47094339690159
Iteration: 5, Func. Count: 66, Neg. LLF: 90.52875345851052
Iteration: 6, Func. Count: 78, Neg. LLF: 134.26965784170338
Iteration: 7, Func. Count: 91, Neg. LLF: 106.53114392459169
Iteration: 8, Func. Count: 105, Neg. LLF: 93.6630234277238
Iteration: 9, Func. Count: 118, Neg. LLF: 89.539954784214
Iteration: 10, Func. Count: 130, Neg. LLF: 89.53759536403707
Iteration: 11, Func. Count: 143, Neg. LLF: 89.47875501137838
Iteration: 12, Func. Count: 155, Neg. LLF: 89.47813638827658
Iteration: 13, Func. Count: 167, Neg. LLF: 89.4779271505824
Iteration: 14, Func. Count: 179, Neg. LLF: 89.47786616796598
Iteration: 15, Func. Count: 191, Neg. LLF: 89.47786441634334
Iteration: 16, Func. Count: 202, Neg. LLF: 89.47786440309028
Optimization terminated successfully (Exit mode 0)
Current function value: 89.47786441634334
Iterations: 16
Function evaluations: 202
Gradient evaluations: 16
Iteration: 1, Func. Count: 14, Neg. LLF: 26858087.54996335
Iteration: 2, Func. Count: 28, Neg. LLF: 3953203.1847694893
Iteration: 3, Func. Count: 42, Neg. LLF: 1971236.4519541569
Iteration: 4, Func. Count: 56, Neg. LLF: 106.86839636055062
Iteration: 5, Func. Count: 70, Neg. LLF: 91.65900667388864
Iteration: 6, Func. Count: 84, Neg. LLF: 102.38842820982256
Iteration: 7, Func. Count: 98, Neg. LLF: 96.06546033344705
Iteration: 8, Func. Count: 112, Neg. LLF: 90.96962601716743
Iteration: 9, Func. Count: 126, Neg. LLF: 92.31521558263788
Iteration: 10, Func. Count: 140, Neg. LLF: 90.5319726515923
Iteration: 11, Func. Count: 153, Neg. LLF: 90.63360661620197
Iteration: 12, Func. Count: 167, Neg. LLF: 90.45579088245071
Iteration: 13, Func. Count: 180, Neg. LLF: 90.43230552099655
Iteration: 14, Func. Count: 193, Neg. LLF: 90.43110452071319
Iteration: 15, Func. Count: 206, Neg. LLF: 90.43089249522541
Iteration: 16, Func. Count: 219, Neg. LLF: 90.43084123550877
Iteration: 17, Func. Count: 232, Neg. LLF: 90.43084026273488
Optimization terminated successfully (Exit mode 0)
Current function value: 90.43084026273488
Iterations: 17
Function evaluations: 232
Gradient evaluations: 17
Iteration: 1, Func. Count: 15, Neg. LLF: 20265850.938290942
Iteration: 2, Func. Count: 30, Neg. LLF: 4196532.202027614
Iteration: 3, Func. Count: 45, Neg. LLF: 2875151.799412587
Iteration: 4, Func. Count: 60, Neg. LLF: 187.86113144449345
Iteration: 5, Func. Count: 75, Neg. LLF: 104.32928886679055
Iteration: 6, Func. Count: 90, Neg. LLF: 94.95962123763569
Iteration: 7, Func. Count: 105, Neg. LLF: 90.63986561366654
Iteration: 8, Func. Count: 119, Neg. LLF: 93.62863770273457
Iteration: 9, Func. Count: 134, Neg. LLF: 98.54565203046386
Iteration: 10, Func. Count: 150, Neg. LLF: 90.51346086245276
Iteration: 11, Func. Count: 165, Neg. LLF: 89.56741973362325
Iteration: 12, Func. Count: 179, Neg. LLF: 89.76921854981094
Iteration: 13, Func. Count: 194, Neg. LLF: 89.47080414169537
Iteration: 14, Func. Count: 208, Neg. LLF: 89.4558905899266
Iteration: 15, Func. Count: 222, Neg. LLF: 89.45076495739795
Iteration: 16, Func. Count: 236, Neg. LLF: 89.44990150725174
Iteration: 17, Func. Count: 250, Neg. LLF: 89.44972570310772
Iteration: 18, Func. Count: 264, Neg. LLF: 89.44971557259723
Iteration: 19, Func. Count: 278, Neg. LLF: 89.44971464503787
Optimization terminated successfully (Exit mode 0)
Current function value: 89.44971464503787
Iterations: 19
Function evaluations: 278
Gradient evaluations: 19
Iteration: 1, Func. Count: 8, Neg. LLF: 103.63926815680601
Iteration: 2, Func. Count: 17, Neg. LLF: 927.4227119141949
Iteration: 3, Func. Count: 25, Neg. LLF: 119.15938644255714
Iteration: 4, Func. Count: 33, Neg. LLF: 135.51731231822527
Iteration: 5, Func. Count: 41, Neg. LLF: 251.89018081820137
Iteration: 6, Func. Count: 49, Neg. LLF: 272.3747305839784
Iteration: 7, Func. Count: 57, Neg. LLF: 178.4268534052031
Iteration: 8, Func. Count: 65, Neg. LLF: 119.99970722343129
Iteration: 9, Func. Count: 73, Neg. LLF: 164.8249678354124
Iteration: 10, Func. Count: 81, Neg. LLF: 102.62723898002187
Iteration: 11, Func. Count: 89, Neg. LLF: 210.8934368078914
Iteration: 12, Func. Count: 97, Neg. LLF: 101.63247507087623
Iteration: 13, Func. Count: 105, Neg. LLF: 91.76391800775991
Iteration: 14, Func. Count: 113, Neg. LLF: 90.3648110970347
Iteration: 15, Func. Count: 121, Neg. LLF: 90.29748587628741
Iteration: 16, Func. Count: 128, Neg. LLF: 90.29492185042633
Iteration: 17, Func. Count: 135, Neg. LLF: 90.29429977491228
Iteration: 18, Func. Count: 142, Neg. LLF: 90.29424753083843
Iteration: 19, Func. Count: 149, Neg. LLF: 90.29424505023123
Iteration: 20, Func. Count: 155, Neg. LLF: 90.29424505024527
Optimization terminated successfully (Exit mode 0)
Current function value: 90.29424505023123
Iterations: 20
Function evaluations: 155
Gradient evaluations: 20
Iteration: 1, Func. Count: 9, Neg. LLF: 1092.4034433503034
Iteration: 2, Func. Count: 18, Neg. LLF: 29482.10938919747
Iteration: 3, Func. Count: 27, Neg. LLF: 116.0778943582018
Iteration: 4, Func. Count: 37, Neg. LLF: 101.90841093896694
Iteration: 5, Func. Count: 46, Neg. LLF: 103.11782011666034
Iteration: 6, Func. Count: 55, Neg. LLF: 94.33578675144717
Iteration: 7, Func. Count: 64, Neg. LLF: 95.97926387496797
Iteration: 8, Func. Count: 73, Neg. LLF: 97.23864937952654
Iteration: 9, Func. Count: 83, Neg. LLF: 90.49033303825026
Iteration: 10, Func. Count: 91, Neg. LLF: 90.39637814706447
Iteration: 11, Func. Count: 99, Neg. LLF: 90.32998556531685
Iteration: 12, Func. Count: 107, Neg. LLF: 90.29652600109195
Iteration: 13, Func. Count: 115, Neg. LLF: 90.29561657035269
Iteration: 14, Func. Count: 123, Neg. LLF: 90.29466437521025
Iteration: 15, Func. Count: 131, Neg. LLF: 90.29429310736265
Iteration: 16, Func. Count: 139, Neg. LLF: 90.29424754629616
Iteration: 17, Func. Count: 147, Neg. LLF: 90.29424507290744
Iteration: 18, Func. Count: 154, Neg. LLF: 90.29424509287387
Optimization terminated successfully (Exit mode 0)
Current function value: 90.29424507290744
Iterations: 18
Function evaluations: 154
Gradient evaluations: 18
Iteration: 1, Func. Count: 10, Neg. LLF: 148.0148131177661
Iteration: 2, Func. Count: 20, Neg. LLF: 1150.0791204923064
Iteration: 3, Func. Count: 30, Neg. LLF: 159.55578529342966
Iteration: 4, Func. Count: 40, Neg. LLF: 136.25550464200703
Iteration: 5, Func. Count: 50, Neg. LLF: 198.36932792637558
Iteration: 6, Func. Count: 60, Neg. LLF: 98.3133639527257
Iteration: 7, Func. Count: 70, Neg. LLF: 97.45922628165752
Iteration: 8, Func. Count: 80, Neg. LLF: 90.94969037930497
Iteration: 9, Func. Count: 90, Neg. LLF: 90.55330929542839
Iteration: 10, Func. Count: 100, Neg. LLF: 90.39306580498604
Iteration: 11, Func. Count: 109, Neg. LLF: 90.30271944594254
Iteration: 12, Func. Count: 118, Neg. LLF: 90.29689959237325
Iteration: 13, Func. Count: 127, Neg. LLF: 90.29427388022444
Iteration: 14, Func. Count: 136, Neg. LLF: 90.29425074679199
Iteration: 15, Func. Count: 145, Neg. LLF: 90.29424543462082
Iteration: 16, Func. Count: 153, Neg. LLF: 90.29424545860849
Optimization terminated successfully (Exit mode 0)
Current function value: 90.29424543462082
Iterations: 16
Function evaluations: 153
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 270.08853912173987
Iteration: 2, Func. Count: 22, Neg. LLF: 2365.0935756551185
Iteration: 3, Func. Count: 33, Neg. LLF: 136.7186232131558
Iteration: 4, Func. Count: 44, Neg. LLF: 316.2451526116192
Iteration: 5, Func. Count: 55, Neg. LLF: 116.5580747612738
Iteration: 6, Func. Count: 66, Neg. LLF: 191.89011195752545
Iteration: 7, Func. Count: 77, Neg. LLF: 94.14814604220187
Iteration: 8, Func. Count: 88, Neg. LLF: 90.73436830165654
Iteration: 9, Func. Count: 98, Neg. LLF: 90.45867467040385
Iteration: 10, Func. Count: 108, Neg. LLF: 90.759857331227
Iteration: 11, Func. Count: 119, Neg. LLF: 90.30023768325566
Iteration: 12, Func. Count: 129, Neg. LLF: 90.29456601771105
Iteration: 13, Func. Count: 139, Neg. LLF: 90.29427636371553
Iteration: 14, Func. Count: 149, Neg. LLF: 90.29424975729124
Iteration: 15, Func. Count: 159, Neg. LLF: 90.29424547249232
Iteration: 16, Func. Count: 168, Neg. LLF: 90.29424553324647
Optimization terminated successfully (Exit mode 0)
Current function value: 90.29424547249232
Iterations: 16
Function evaluations: 168
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 256.1695354442309
Iteration: 2, Func. Count: 24, Neg. LLF: 119.30312035930203
Iteration: 3, Func. Count: 36, Neg. LLF: 165.99988338800887
Iteration: 4, Func. Count: 48, Neg. LLF: 200.45859419204626
Iteration: 5, Func. Count: 60, Neg. LLF: 114.52339449876494
Iteration: 6, Func. Count: 72, Neg. LLF: 168.48660244973155
Iteration: 7, Func. Count: 84, Neg. LLF: 90.53285661151453
Iteration: 8, Func. Count: 95, Neg. LLF: 97.91520710310252
Iteration: 9, Func. Count: 107, Neg. LLF: 94.13160341979072
Iteration: 10, Func. Count: 120, Neg. LLF: 90.30452216870096
Iteration: 11, Func. Count: 131, Neg. LLF: 90.29558569129789
Iteration: 12, Func. Count: 142, Neg. LLF: 90.29453250851779
Iteration: 13, Func. Count: 153, Neg. LLF: 90.29426706144618
Iteration: 14, Func. Count: 164, Neg. LLF: 90.29424524430593
Iteration: 15, Func. Count: 174, Neg. LLF: 90.29424529788156
Optimization terminated successfully (Exit mode 0)
Current function value: 90.29424524430593
Iterations: 15
Function evaluations: 174
Gradient evaluations: 15
Iteration: 1, Func. Count: 9, Neg. LLF: 103.54886578180636
Iteration: 2, Func. Count: 19, Neg. LLF: 308.7147143870338
Iteration: 3, Func. Count: 28, Neg. LLF: 118.47120267126907
Iteration: 4, Func. Count: 37, Neg. LLF: 144.32907134341792
Iteration: 5, Func. Count: 46, Neg. LLF: 245.61803141219718
Iteration: 6, Func. Count: 55, Neg. LLF: 269.90015082043504
Iteration: 7, Func. Count: 64, Neg. LLF: 127.15120081660494
Iteration: 8, Func. Count: 73, Neg. LLF: 118.53590853075018
Iteration: 9, Func. Count: 82, Neg. LLF: 109.13622775698927
Iteration: 10, Func. Count: 91, Neg. LLF: 207.29069695924792
Iteration: 11, Func. Count: 100, Neg. LLF: 98.7975654877592
Iteration: 12, Func. Count: 109, Neg. LLF: 201.04024269655508
Iteration: 13, Func. Count: 118, Neg. LLF: 92.7456172506314
Iteration: 14, Func. Count: 127, Neg. LLF: 90.81511803388696
Iteration: 15, Func. Count: 136, Neg. LLF: 90.26466566190334
Iteration: 16, Func. Count: 144, Neg. LLF: 90.26073034672767
Iteration: 17, Func. Count: 152, Neg. LLF: 90.25923665176705
Iteration: 18, Func. Count: 160, Neg. LLF: 90.25913840580371
Iteration: 19, Func. Count: 168, Neg. LLF: 90.25910551822459
Iteration: 20, Func. Count: 175, Neg. LLF: 90.25910551826692
Optimization terminated successfully (Exit mode 0)
Current function value: 90.25910551822459
Iterations: 20
Function evaluations: 175
Gradient evaluations: 20
Iteration: 1, Func. Count: 10, Neg. LLF: 234.35779341470734
Iteration: 2, Func. Count: 20, Neg. LLF: 1192233.9950403445
Iteration: 3, Func. Count: 30, Neg. LLF: 109.6109427127972
Iteration: 4, Func. Count: 40, Neg. LLF: 94.56629466842848
Iteration: 5, Func. Count: 50, Neg. LLF: 98.13051340604721
Iteration: 6, Func. Count: 60, Neg. LLF: 94.5970942435768
Iteration: 7, Func. Count: 70, Neg. LLF: 90.87332975271823
Iteration: 8, Func. Count: 80, Neg. LLF: 91.33166195576025
Iteration: 9, Func. Count: 90, Neg. LLF: 95.30997816983157
Iteration: 10, Func. Count: 100, Neg. LLF: 90.26872482546271
Iteration: 11, Func. Count: 109, Neg. LLF: 90.26132106878954
Iteration: 12, Func. Count: 118, Neg. LLF: 90.2591591194858
Iteration: 13, Func. Count: 127, Neg. LLF: 90.25910561094446
Iteration: 14, Func. Count: 136, Neg. LLF: 90.2591051018357
Optimization terminated successfully (Exit mode 0)
Current function value: 90.2591051018357
Iterations: 14
Function evaluations: 136
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 284.536175554348
Iteration: 2, Func. Count: 22, Neg. LLF: 5119.570377811257
Iteration: 3, Func. Count: 33, Neg. LLF: 101.00522002193568
Iteration: 4, Func. Count: 44, Neg. LLF: 131.19979984740604
Iteration: 5, Func. Count: 55, Neg. LLF: 92.35777233961616
Iteration: 6, Func. Count: 66, Neg. LLF: 95.38778143982401
Iteration: 7, Func. Count: 77, Neg. LLF: 91.61156205536709
Iteration: 8, Func. Count: 88, Neg. LLF: 90.5151801401736
Iteration: 9, Func. Count: 98, Neg. LLF: 93.94146792762662
Iteration: 10, Func. Count: 109, Neg. LLF: 91.18441331759409
Iteration: 11, Func. Count: 120, Neg. LLF: 90.2790202542017
Iteration: 12, Func. Count: 130, Neg. LLF: 90.26032000776215
Iteration: 13, Func. Count: 140, Neg. LLF: 90.2599283698572
Iteration: 14, Func. Count: 150, Neg. LLF: 90.25914341166066
Iteration: 15, Func. Count: 160, Neg. LLF: 90.25911632739736
Iteration: 16, Func. Count: 170, Neg. LLF: 90.25910565118396
Iteration: 17, Func. Count: 179, Neg. LLF: 90.25910568464276
Optimization terminated successfully (Exit mode 0)
Current function value: 90.25910565118396
Iterations: 17
Function evaluations: 179
Gradient evaluations: 17
Iteration: 1, Func. Count: 12, Neg. LLF: 145.44925896300182
Iteration: 2, Func. Count: 24, Neg. LLF: 222.19014835952777
Iteration: 3, Func. Count: 36, Neg. LLF: 107.92780247693929
Iteration: 4, Func. Count: 48, Neg. LLF: 1106.3506604595002
Iteration: 5, Func. Count: 60, Neg. LLF: 95.80367952816745
Iteration: 6, Func. Count: 72, Neg. LLF: 90.86298680534715
Iteration: 7, Func. Count: 83, Neg. LLF: 94.86811217813069
Iteration: 8, Func. Count: 96, Neg. LLF: 90.86731557142983
Iteration: 9, Func. Count: 108, Neg. LLF: 100.74381305712939
Iteration: 10, Func. Count: 120, Neg. LLF: 90.27412863645516
Iteration: 11, Func. Count: 131, Neg. LLF: 90.2605354540674
Iteration: 12, Func. Count: 142, Neg. LLF: 90.25938586078647
Iteration: 13, Func. Count: 153, Neg. LLF: 90.2592057660285
Iteration: 14, Func. Count: 164, Neg. LLF: 90.25911219537029
Iteration: 15, Func. Count: 175, Neg. LLF: 90.25910520446759
Iteration: 16, Func. Count: 185, Neg. LLF: 90.259105277801
Optimization terminated successfully (Exit mode 0)
Current function value: 90.25910520446759
Iterations: 16
Function evaluations: 185
Gradient evaluations: 16
Iteration: 1, Func. Count: 13, Neg. LLF: 1323.3706154299127
Iteration: 2, Func. Count: 26, Neg. LLF: 98.39960753301118
Iteration: 3, Func. Count: 39, Neg. LLF: 106.27365136528594
Iteration: 4, Func. Count: 52, Neg. LLF: 1833.4415384566073
Iteration: 5, Func. Count: 65, Neg. LLF: 268.6505814647354
Iteration: 6, Func. Count: 78, Neg. LLF: 93.28674191972078
Iteration: 7, Func. Count: 91, Neg. LLF: 113.98851620933871
Iteration: 8, Func. Count: 104, Neg. LLF: 90.53281117893486
Iteration: 9, Func. Count: 116, Neg. LLF: 114.56996479815895
Iteration: 10, Func. Count: 129, Neg. LLF: 100.16391312198272
Iteration: 11, Func. Count: 142, Neg. LLF: 90.4671138997177
Iteration: 12, Func. Count: 155, Neg. LLF: 90.26679920090419
Iteration: 13, Func. Count: 167, Neg. LLF: 90.25946679723563
Iteration: 14, Func. Count: 179, Neg. LLF: 90.2591953844971
Iteration: 15, Func. Count: 191, Neg. LLF: 90.25911498421445
Iteration: 16, Func. Count: 203, Neg. LLF: 90.25910577974174
Iteration: 17, Func. Count: 215, Neg. LLF: 90.25910511882239
Optimization terminated successfully (Exit mode 0)
Current function value: 90.25910511882239
Iterations: 17
Function evaluations: 215
Gradient evaluations: 17
Iteration: 1, Func. Count: 10, Neg. LLF: 95.88230799867952
Iteration: 2, Func. Count: 21, Neg. LLF: 269.00132948114367
Iteration: 3, Func. Count: 31, Neg. LLF: 1116.1290572999362
Iteration: 4, Func. Count: 41, Neg. LLF: 114.40431651100134
Iteration: 5, Func. Count: 51, Neg. LLF: 809.4576957732693
Iteration: 6, Func. Count: 61, Neg. LLF: 109.27911235337245
Iteration: 7, Func. Count: 71, Neg. LLF: 337.19338473969117
Iteration: 8, Func. Count: 81, Neg. LLF: 100.23557213612354
Iteration: 9, Func. Count: 91, Neg. LLF: 242.4717346393597
Iteration: 10, Func. Count: 101, Neg. LLF: 100.36007735096975
Iteration: 11, Func. Count: 111, Neg. LLF: 91.77911870046643
Iteration: 12, Func. Count: 121, Neg. LLF: 93.83068122654642
Iteration: 13, Func. Count: 131, Neg. LLF: 88.77636224224413
Iteration: 14, Func. Count: 141, Neg. LLF: 88.6685726164528
Iteration: 15, Func. Count: 151, Neg. LLF: 88.56883671888248
Iteration: 16, Func. Count: 160, Neg. LLF: 88.56484148225718
Iteration: 17, Func. Count: 169, Neg. LLF: 88.56463450969642
Iteration: 18, Func. Count: 178, Neg. LLF: 88.56462578791869
Iteration: 19, Func. Count: 186, Neg. LLF: 88.56462578791519
Optimization terminated successfully (Exit mode 0)
Current function value: 88.56462578791869
Iterations: 19
Function evaluations: 186
Gradient evaluations: 19
Iteration: 1, Func. Count: 11, Neg. LLF: 46190145.46873147
Iteration: 2, Func. Count: 22, Neg. LLF: 224102.69561445643
Iteration: 3, Func. Count: 33, Neg. LLF: 2574.1820915890626
Iteration: 4, Func. Count: 44, Neg. LLF: 89.74959945098843
Iteration: 5, Func. Count: 54, Neg. LLF: 89.90736090888092
Iteration: 6, Func. Count: 65, Neg. LLF: 99.92488561874798
Iteration: 7, Func. Count: 76, Neg. LLF: 183.77253757405532
Iteration: 8, Func. Count: 87, Neg. LLF: 89.60516721456725
Iteration: 9, Func. Count: 98, Neg. LLF: 120.21153022508884
Iteration: 10, Func. Count: 109, Neg. LLF: 89.72613544025181
Iteration: 11, Func. Count: 120, Neg. LLF: 88.87291921982937
Iteration: 12, Func. Count: 131, Neg. LLF: 88.65771247603182
Iteration: 13, Func. Count: 141, Neg. LLF: 88.60807158880363
Iteration: 14, Func. Count: 151, Neg. LLF: 88.57591953775871
Iteration: 15, Func. Count: 161, Neg. LLF: 88.58704129512583
Iteration: 16, Func. Count: 172, Neg. LLF: 88.56729166995665
Iteration: 17, Func. Count: 182, Neg. LLF: 88.56475786955468
Iteration: 18, Func. Count: 192, Neg. LLF: 88.56464113871738
Iteration: 19, Func. Count: 202, Neg. LLF: 88.56462570931978
Iteration: 20, Func. Count: 211, Neg. LLF: 88.56462583175343
Optimization terminated successfully (Exit mode 0)
Current function value: 88.56462570931978
Iterations: 20
Function evaluations: 211
Gradient evaluations: 20
Iteration: 1, Func. Count: 12, Neg. LLF: 37955618.74762357
Iteration: 2, Func. Count: 24, Neg. LLF: 5366183.344664356
Iteration: 3, Func. Count: 36, Neg. LLF: 446.8353682097329
Iteration: 4, Func. Count: 48, Neg. LLF: 90.35270485997393
Iteration: 5, Func. Count: 60, Neg. LLF: 91.77100389387786
Iteration: 6, Func. Count: 72, Neg. LLF: 123.80211361881331
Iteration: 7, Func. Count: 84, Neg. LLF: 604.0636167110739
Iteration: 8, Func. Count: 96, Neg. LLF: 97.24898925276128
Iteration: 9, Func. Count: 108, Neg. LLF: 97.15989682166291
Iteration: 10, Func. Count: 120, Neg. LLF: 88.59794528991688
Iteration: 11, Func. Count: 131, Neg. LLF: 88.57908650851653
Iteration: 12, Func. Count: 142, Neg. LLF: 88.56467065135392
Iteration: 13, Func. Count: 153, Neg. LLF: 88.55162330530402
Iteration: 14, Func. Count: 164, Neg. LLF: 88.54075839528079
Iteration: 15, Func. Count: 175, Neg. LLF: 88.53442452162369
Iteration: 16, Func. Count: 186, Neg. LLF: 88.53117819402775
Iteration: 17, Func. Count: 197, Neg. LLF: 88.53069150272181
Iteration: 18, Func. Count: 208, Neg. LLF: 88.5304759263359
Iteration: 19, Func. Count: 219, Neg. LLF: 88.53033501258537
Iteration: 20, Func. Count: 230, Neg. LLF: 88.53033166736336
Iteration: 21, Func. Count: 240, Neg. LLF: 88.53033166329395
Optimization terminated successfully (Exit mode 0)
Current function value: 88.53033166736336
Iterations: 21
Function evaluations: 240
Gradient evaluations: 21
Iteration: 1, Func. Count: 13, Neg. LLF: 23170831.294162124
Iteration: 2, Func. Count: 26, Neg. LLF: 4039870.5076301442
Iteration: 3, Func. Count: 39, Neg. LLF: 196.22190348732866
Iteration: 4, Func. Count: 52, Neg. LLF: 19048.357537675118
Iteration: 5, Func. Count: 66, Neg. LLF: 110.3133643182542
Iteration: 6, Func. Count: 79, Neg. LLF: 94.19072094752548
Iteration: 7, Func. Count: 92, Neg. LLF: 90.9231987800399
Iteration: 8, Func. Count: 105, Neg. LLF: 89.18515616742609
Iteration: 9, Func. Count: 117, Neg. LLF: 89.13405247918085
Iteration: 10, Func. Count: 130, Neg. LLF: 90.27438540043752
Iteration: 11, Func. Count: 143, Neg. LLF: 88.96434091174868
Iteration: 12, Func. Count: 156, Neg. LLF: 89.66283269447501
Iteration: 13, Func. Count: 169, Neg. LLF: 88.56059605366201
Iteration: 14, Func. Count: 181, Neg. LLF: 88.54405731953112
Iteration: 15, Func. Count: 193, Neg. LLF: 88.5362713383468
Iteration: 16, Func. Count: 205, Neg. LLF: 88.53201894182551
Iteration: 17, Func. Count: 217, Neg. LLF: 88.53074407094444
Iteration: 18, Func. Count: 229, Neg. LLF: 88.53034240348833
Iteration: 19, Func. Count: 241, Neg. LLF: 88.53033374558073
Iteration: 20, Func. Count: 253, Neg. LLF: 88.53033183373661
Iteration: 21, Func. Count: 264, Neg. LLF: 88.53033198242838
Optimization terminated successfully (Exit mode 0)
Current function value: 88.53033183373661
Iterations: 21
Function evaluations: 264
Gradient evaluations: 21
Iteration: 1, Func. Count: 14, Neg. LLF: 16481985.259982273
Iteration: 2, Func. Count: 28, Neg. LLF: 196.50492606376568
Iteration: 3, Func. Count: 42, Neg. LLF: 148.82563968098142
Iteration: 4, Func. Count: 56, Neg. LLF: 1000.143177540216
Iteration: 5, Func. Count: 70, Neg. LLF: 1148.689257277786
Iteration: 6, Func. Count: 84, Neg. LLF: 106.2767471773109
Iteration: 7, Func. Count: 98, Neg. LLF: 178.7155377660518
Iteration: 8, Func. Count: 112, Neg. LLF: 91.10051521670268
Iteration: 9, Func. Count: 126, Neg. LLF: 91.56240103966813
Iteration: 10, Func. Count: 140, Neg. LLF: 88.28505633678108
Iteration: 11, Func. Count: 153, Neg. LLF: 88.62702791943005
Iteration: 12, Func. Count: 167, Neg. LLF: 88.7461360601391
Iteration: 13, Func. Count: 181, Neg. LLF: 88.15873400108447
Iteration: 14, Func. Count: 194, Neg. LLF: 88.12296700543101
Iteration: 15, Func. Count: 207, Neg. LLF: 88.1224522534024
Iteration: 16, Func. Count: 220, Neg. LLF: 88.12217420835407
Iteration: 17, Func. Count: 233, Neg. LLF: 88.12215058868152
Iteration: 18, Func. Count: 246, Neg. LLF: 88.12214636199276
Iteration: 19, Func. Count: 258, Neg. LLF: 88.12214635772825
Optimization terminated successfully (Exit mode 0)
Current function value: 88.12214636199276
Iterations: 19
Function evaluations: 258
Gradient evaluations: 19
Iteration: 1, Func. Count: 11, Neg. LLF: 97.76947026910278
Iteration: 2, Func. Count: 23, Neg. LLF: 100.48727332464763
Iteration: 3, Func. Count: 34, Neg. LLF: 9992.209012903855
Iteration: 4, Func. Count: 45, Neg. LLF: 159.00700679811817
Iteration: 5, Func. Count: 56, Neg. LLF: 3717.745429798907
Iteration: 6, Func. Count: 67, Neg. LLF: 458.845720597054
Iteration: 7, Func. Count: 78, Neg. LLF: 101.77620472545662
Iteration: 8, Func. Count: 89, Neg. LLF: 234.0470138464671
Iteration: 9, Func. Count: 100, Neg. LLF: 989.9433611916678
Iteration: 10, Func. Count: 111, Neg. LLF: 100.71494184690621
Iteration: 11, Func. Count: 122, Neg. LLF: 213.12746836174304
Iteration: 12, Func. Count: 133, Neg. LLF: 89.37119621385378
Iteration: 13, Func. Count: 144, Neg. LLF: 90.10964878959949
Iteration: 14, Func. Count: 155, Neg. LLF: 88.58585112980066
Iteration: 15, Func. Count: 165, Neg. LLF: 88.6242573214056
Iteration: 16, Func. Count: 176, Neg. LLF: 88.57208672606477
Iteration: 17, Func. Count: 186, Neg. LLF: 88.56471298388288
Iteration: 18, Func. Count: 196, Neg. LLF: 88.56464120576219
Iteration: 19, Func. Count: 206, Neg. LLF: 88.56462662433592
Iteration: 20, Func. Count: 216, Neg. LLF: 88.5646258797228
Optimization terminated successfully (Exit mode 0)
Current function value: 88.5646258797228
Iterations: 20
Function evaluations: 216
Gradient evaluations: 20
Iteration: 1, Func. Count: 12, Neg. LLF: 8843820.926246092
Iteration: 2, Func. Count: 24, Neg. LLF: 4865285.097272189
Iteration: 3, Func. Count: 36, Neg. LLF: 11174.314286732253
Iteration: 4, Func. Count: 48, Neg. LLF: 89.98314093696553
Iteration: 5, Func. Count: 59, Neg. LLF: 89.74686977085872
Iteration: 6, Func. Count: 70, Neg. LLF: 232.58595789520797
Iteration: 7, Func. Count: 82, Neg. LLF: 2644.690117459051
Iteration: 8, Func. Count: 94, Neg. LLF: 387.6205214038614
Iteration: 9, Func. Count: 107, Neg. LLF: 94.74803775408341
Iteration: 10, Func. Count: 119, Neg. LLF: 90.6391475727469
Iteration: 11, Func. Count: 131, Neg. LLF: 88.68340870627415
Iteration: 12, Func. Count: 142, Neg. LLF: 89.28157235578396
Iteration: 13, Func. Count: 154, Neg. LLF: 88.68913942699277
Iteration: 14, Func. Count: 166, Neg. LLF: 88.56588775389088
Iteration: 15, Func. Count: 177, Neg. LLF: 88.56497669351829
Iteration: 16, Func. Count: 188, Neg. LLF: 88.56468966952018
Iteration: 17, Func. Count: 199, Neg. LLF: 88.5646431212282
Iteration: 18, Func. Count: 210, Neg. LLF: 88.56462606929897
Iteration: 19, Func. Count: 221, Neg. LLF: 88.56462548982431
Optimization terminated successfully (Exit mode 0)
Current function value: 88.56462548982431
Iterations: 19
Function evaluations: 221
Gradient evaluations: 19
Iteration: 1, Func. Count: 13, Neg. LLF: 35450445.38726837
Iteration: 2, Func. Count: 26, Neg. LLF: 4410840.732099761
Iteration: 3, Func. Count: 39, Neg. LLF: 419.2208800869409
Iteration: 4, Func. Count: 52, Neg. LLF: 93.27141165707577
Iteration: 5, Func. Count: 65, Neg. LLF: 92.25411167703368
Iteration: 6, Func. Count: 78, Neg. LLF: 122.1637490127119
Iteration: 7, Func. Count: 91, Neg. LLF: 94.63849867907348
Iteration: 8, Func. Count: 104, Neg. LLF: 92.18851041020653
Iteration: 9, Func. Count: 117, Neg. LLF: 89.8712398449928
Iteration: 10, Func. Count: 130, Neg. LLF: 88.94504559625732
Iteration: 11, Func. Count: 142, Neg. LLF: 88.68232623824325
Iteration: 12, Func. Count: 154, Neg. LLF: 89.08804099552513
Iteration: 13, Func. Count: 167, Neg. LLF: 88.55445662559566
Iteration: 14, Func. Count: 179, Neg. LLF: 88.5361264597067
Iteration: 15, Func. Count: 191, Neg. LLF: 88.5314346437876
Iteration: 16, Func. Count: 203, Neg. LLF: 88.53057360521994
Iteration: 17, Func. Count: 215, Neg. LLF: 88.53033801449854
Iteration: 18, Func. Count: 227, Neg. LLF: 88.53033205518969
Iteration: 19, Func. Count: 238, Neg. LLF: 88.53033205099939
Optimization terminated successfully (Exit mode 0)
Current function value: 88.53033205518969
Iterations: 19
Function evaluations: 238
Gradient evaluations: 19
Iteration: 1, Func. Count: 14, Neg. LLF: 24782268.286458835
Iteration: 2, Func. Count: 28, Neg. LLF: 4203156.618637752
Iteration: 3, Func. Count: 42, Neg. LLF: 891.7661977258477
Iteration: 4, Func. Count: 56, Neg. LLF: 4005.0991858369152
Iteration: 5, Func. Count: 70, Neg. LLF: 108.75979247469293
Iteration: 6, Func. Count: 84, Neg. LLF: 89.89054474495872
Iteration: 7, Func. Count: 97, Neg. LLF: 90.83592766328893
Iteration: 8, Func. Count: 111, Neg. LLF: 97.69100909026452
Iteration: 9, Func. Count: 126, Neg. LLF: 89.2891526273527
Iteration: 10, Func. Count: 140, Neg. LLF: 88.6381222947875
Iteration: 11, Func. Count: 153, Neg. LLF: 88.74244376922515
Iteration: 12, Func. Count: 167, Neg. LLF: 88.94118641394655
Iteration: 13, Func. Count: 181, Neg. LLF: 88.57311502677341
Iteration: 14, Func. Count: 194, Neg. LLF: 88.56508276159596
Iteration: 15, Func. Count: 207, Neg. LLF: 88.56419499453551
Iteration: 16, Func. Count: 220, Neg. LLF: 88.56071694098479
Iteration: 17, Func. Count: 233, Neg. LLF: 88.85740777224443
Iteration: 18, Func. Count: 247, Neg. LLF: 88.64759054228755
Iteration: 19, Func. Count: 261, Neg. LLF: 88.55467385501576
Iteration: 20, Func. Count: 275, Neg. LLF: 88.5426414313856
Iteration: 21, Func. Count: 288, Neg. LLF: 88.53337745211064
Iteration: 22, Func. Count: 301, Neg. LLF: 88.53062942494377
Iteration: 23, Func. Count: 314, Neg. LLF: 88.53034745484817
Iteration: 24, Func. Count: 327, Neg. LLF: 88.53033193016032
Iteration: 25, Func. Count: 339, Neg. LLF: 88.53033207881263
Optimization terminated successfully (Exit mode 0)
Current function value: 88.53033193016032
Iterations: 25
Function evaluations: 339
Gradient evaluations: 25
Iteration: 1, Func. Count: 15, Neg. LLF: 3308875.6082026106
Iteration: 2, Func. Count: 30, Neg. LLF: 532.3760994671134
Iteration: 3, Func. Count: 45, Neg. LLF: 126.78823819955514
Iteration: 4, Func. Count: 60, Neg. LLF: 987.0030944361414
Iteration: 5, Func. Count: 75, Neg. LLF: 216.79132261718058
Iteration: 6, Func. Count: 90, Neg. LLF: 102.2871489460375
Iteration: 7, Func. Count: 105, Neg. LLF: 272.56051743587875
Iteration: 8, Func. Count: 120, Neg. LLF: 91.64152498433673
Iteration: 9, Func. Count: 135, Neg. LLF: 92.44459203374447
Iteration: 10, Func. Count: 150, Neg. LLF: 88.50908233565445
Iteration: 11, Func. Count: 164, Neg. LLF: 88.23038585140095
Iteration: 12, Func. Count: 178, Neg. LLF: 89.33363391201168
Iteration: 13, Func. Count: 193, Neg. LLF: 88.14290722168847
Iteration: 14, Func. Count: 207, Neg. LLF: 88.18445905051573
Iteration: 15, Func. Count: 222, Neg. LLF: 88.12384694111788
Iteration: 16, Func. Count: 236, Neg. LLF: 88.12216837457117
Iteration: 17, Func. Count: 250, Neg. LLF: 88.12215175084917
Iteration: 18, Func. Count: 264, Neg. LLF: 88.1221472734277
Iteration: 19, Func. Count: 278, Neg. LLF: 88.12214628009586
Optimization terminated successfully (Exit mode 0)
Current function value: 88.12214628009586
Iterations: 19
Function evaluations: 278
Gradient evaluations: 19
Iteration: 1, Func. Count: 12, Neg. LLF: 98.47468028680028
Iteration: 2, Func. Count: 25, Neg. LLF: 122.65284379997438
Iteration: 3, Func. Count: 37, Neg. LLF: 163.05117279567574
Iteration: 4, Func. Count: 49, Neg. LLF: 138.4047463555269
Iteration: 5, Func. Count: 61, Neg. LLF: 263.9794375923337
Iteration: 6, Func. Count: 73, Neg. LLF: 132.7238071691438
Iteration: 7, Func. Count: 85, Neg. LLF: 106.94413184179177
Iteration: 8, Func. Count: 97, Neg. LLF: 163.02084566870442
Iteration: 9, Func. Count: 109, Neg. LLF: 106.62296395947682
Iteration: 10, Func. Count: 121, Neg. LLF: 127.44715772628265
Iteration: 11, Func. Count: 133, Neg. LLF: 103.11471548829081
Iteration: 12, Func. Count: 145, Neg. LLF: 89.70684032235354
Iteration: 13, Func. Count: 157, Neg. LLF: 88.61638145624386
Iteration: 14, Func. Count: 168, Neg. LLF: 88.55024208850999
Iteration: 15, Func. Count: 179, Neg. LLF: 88.55721895239277
Iteration: 16, Func. Count: 191, Neg. LLF: 88.52486574270165
Iteration: 17, Func. Count: 202, Neg. LLF: 88.52326129835387
Iteration: 18, Func. Count: 213, Neg. LLF: 88.5228544615798
Iteration: 19, Func. Count: 224, Neg. LLF: 88.52279623522486
Iteration: 20, Func. Count: 235, Neg. LLF: 88.52279282625271
Iteration: 21, Func. Count: 245, Neg. LLF: 88.52279282592755
Optimization terminated successfully (Exit mode 0)
Current function value: 88.52279282625271
Iterations: 21
Function evaluations: 245
Gradient evaluations: 21
Iteration: 1, Func. Count: 13, Neg. LLF: 38875183.06444314
Iteration: 2, Func. Count: 26, Neg. LLF: 4211823.561711491
Iteration: 3, Func. Count: 39, Neg. LLF: 1341703.184140038
Iteration: 4, Func. Count: 52, Neg. LLF: 96.04366968508354
Iteration: 5, Func. Count: 65, Neg. LLF: 96.00311429289472
Iteration: 6, Func. Count: 78, Neg. LLF: 90.43654604830371
Iteration: 7, Func. Count: 91, Neg. LLF: 102.17047975327421
Iteration: 8, Func. Count: 104, Neg. LLF: 92.73774371807271
Iteration: 9, Func. Count: 117, Neg. LLF: 91.22149789624928
Iteration: 10, Func. Count: 130, Neg. LLF: 102.21957138026761
Iteration: 11, Func. Count: 143, Neg. LLF: 88.65023826859769
Iteration: 12, Func. Count: 155, Neg. LLF: 90.29768416640316
Iteration: 13, Func. Count: 168, Neg. LLF: 88.58386667631336
Iteration: 14, Func. Count: 180, Neg. LLF: 88.55645820617264
Iteration: 15, Func. Count: 192, Neg. LLF: 88.53781322322904
Iteration: 16, Func. Count: 204, Neg. LLF: 88.52713214205907
Iteration: 17, Func. Count: 216, Neg. LLF: 88.52432226067042
Iteration: 18, Func. Count: 228, Neg. LLF: 88.52332011044564
Iteration: 19, Func. Count: 240, Neg. LLF: 88.52295002603194
Iteration: 20, Func. Count: 252, Neg. LLF: 88.52279739479098
Iteration: 21, Func. Count: 264, Neg. LLF: 88.5227930400174
Iteration: 22, Func. Count: 275, Neg. LLF: 88.52279316786505
Optimization terminated successfully (Exit mode 0)
Current function value: 88.5227930400174
Iterations: 22
Function evaluations: 275
Gradient evaluations: 22
Iteration: 1, Func. Count: 14, Neg. LLF: 35003512.49844392
Iteration: 2, Func. Count: 28, Neg. LLF: 3908941.290444655
Iteration: 3, Func. Count: 42, Neg. LLF: 3754221.703424418
Iteration: 4, Func. Count: 56, Neg. LLF: 314.0927949877516
Iteration: 5, Func. Count: 70, Neg. LLF: 90.81895038986916
Iteration: 6, Func. Count: 84, Neg. LLF: 102.56096293691857
Iteration: 7, Func. Count: 98, Neg. LLF: 106.35398846465804
Iteration: 8, Func. Count: 112, Neg. LLF: 124.8229485948832
Iteration: 9, Func. Count: 126, Neg. LLF: 89.96520142012946
Iteration: 10, Func. Count: 140, Neg. LLF: 90.84827247935985
Iteration: 11, Func. Count: 154, Neg. LLF: 88.72069569185344
Iteration: 12, Func. Count: 167, Neg. LLF: 88.62345883836811
Iteration: 13, Func. Count: 180, Neg. LLF: 88.5442133288864
Iteration: 14, Func. Count: 193, Neg. LLF: 88.52525204968487
Iteration: 15, Func. Count: 206, Neg. LLF: 88.52343904579533
Iteration: 16, Func. Count: 219, Neg. LLF: 88.52289302346098
Iteration: 17, Func. Count: 232, Neg. LLF: 88.52281565674339
Iteration: 18, Func. Count: 245, Neg. LLF: 88.52279462625991
Iteration: 19, Func. Count: 258, Neg. LLF: 88.52279285401033
Iteration: 20, Func. Count: 270, Neg. LLF: 88.52279285746232
Optimization terminated successfully (Exit mode 0)
Current function value: 88.52279285401033
Iterations: 20
Function evaluations: 270
Gradient evaluations: 20
Iteration: 1, Func. Count: 15, Neg. LLF: 3305265.6450515357
Iteration: 2, Func. Count: 30, Neg. LLF: 2934223.1034887056
Iteration: 3, Func. Count: 45, Neg. LLF: 253.0962202559247
Iteration: 4, Func. Count: 60, Neg. LLF: 554.2503249677234
Iteration: 5, Func. Count: 75, Neg. LLF: 3773037.0312828976
Iteration: 6, Func. Count: 90, Neg. LLF: 194.31651355658659
Iteration: 7, Func. Count: 105, Neg. LLF: 5772.903879446858
Iteration: 8, Func. Count: 120, Neg. LLF: 91.44647934512983
Iteration: 9, Func. Count: 135, Neg. LLF: 89.21416653266756
Iteration: 10, Func. Count: 149, Neg. LLF: 88.82894161683414
Iteration: 11, Func. Count: 163, Neg. LLF: 90.84612868644989
Iteration: 12, Func. Count: 178, Neg. LLF: 88.62425975719466
Iteration: 13, Func. Count: 192, Neg. LLF: 88.61900184544746
Iteration: 14, Func. Count: 207, Neg. LLF: 88.67189098667106
Iteration: 15, Func. Count: 222, Neg. LLF: 88.53087062655679
Iteration: 16, Func. Count: 236, Neg. LLF: 88.53050094579426
Iteration: 17, Func. Count: 250, Neg. LLF: 88.53048677894053
Iteration: 18, Func. Count: 264, Neg. LLF: 88.53048517632786
Iteration: 19, Func. Count: 277, Neg. LLF: 88.5304853286521
Optimization terminated successfully (Exit mode 0)
Current function value: 88.53048517632786
Iterations: 19
Function evaluations: 277
Gradient evaluations: 19
Iteration: 1, Func. Count: 16, Neg. LLF: 3200431.7188134864
Iteration: 2, Func. Count: 32, Neg. LLF: 3272601.490508152
Iteration: 3, Func. Count: 48, Neg. LLF: 163.3690981161705
Iteration: 4, Func. Count: 64, Neg. LLF: 705.5625860451441
Iteration: 5, Func. Count: 80, Neg. LLF: 1890.6028163697738
Iteration: 6, Func. Count: 96, Neg. LLF: 94.61195243747075
Iteration: 7, Func. Count: 112, Neg. LLF: 105.62691478730304
Iteration: 8, Func. Count: 128, Neg. LLF: 91.77808592836863
Iteration: 9, Func. Count: 144, Neg. LLF: 90.70521059153134
Iteration: 10, Func. Count: 160, Neg. LLF: 88.30916782967381
Iteration: 11, Func. Count: 175, Neg. LLF: 88.1173239104634
Iteration: 12, Func. Count: 190, Neg. LLF: 88.34440117262115
Iteration: 13, Func. Count: 206, Neg. LLF: 88.08981308281085
Iteration: 14, Func. Count: 222, Neg. LLF: 88.04937205221364
Iteration: 15, Func. Count: 237, Neg. LLF: 88.04898849863892
Iteration: 16, Func. Count: 252, Neg. LLF: 88.04893691684025
Iteration: 17, Func. Count: 267, Neg. LLF: 88.04892838645678
Iteration: 18, Func. Count: 281, Neg. LLF: 88.04892837685678
Optimization terminated successfully (Exit mode 0)
Current function value: 88.04892838645678
Iterations: 18
Function evaluations: 281
Gradient evaluations: 18
Iteration: 1, Func. Count: 8, Neg. LLF: 24086329.249176893
Iteration: 2, Func. Count: 16, Neg. LLF: 4409641.282765719
Iteration: 3, Func. Count: 24, Neg. LLF: 33903590.26883357
Iteration: 4, Func. Count: 33, Neg. LLF: 105.84121792529999
Iteration: 5, Func. Count: 41, Neg. LLF: 92.57144528888665
Iteration: 6, Func. Count: 49, Neg. LLF: 90.39161210278988
Iteration: 7, Func. Count: 56, Neg. LLF: 90.33811984741212
Iteration: 8, Func. Count: 64, Neg. LLF: 91.31192574985998
Iteration: 9, Func. Count: 72, Neg. LLF: 89.96148764711576
Iteration: 10, Func. Count: 79, Neg. LLF: 90.01584520852118
Iteration: 11, Func. Count: 87, Neg. LLF: 89.94846311347517
Iteration: 12, Func. Count: 94, Neg. LLF: 89.94842792343796
Iteration: 13, Func. Count: 101, Neg. LLF: 89.9484252140535
Iteration: 14, Func. Count: 107, Neg. LLF: 89.94842518188794
Optimization terminated successfully (Exit mode 0)
Current function value: 89.9484252140535
Iterations: 14
Function evaluations: 107
Gradient evaluations: 14
Iteration: 1, Func. Count: 5, Neg. LLF: 124.37610375007827
Iteration: 2, Func. Count: 12, Neg. LLF: 99.43017491709392
Iteration: 3, Func. Count: 17, Neg. LLF: 98.16240100036863
Iteration: 4, Func. Count: 21, Neg. LLF: 98.08954822753459
Iteration: 5, Func. Count: 25, Neg. LLF: 98.0792216608045
Iteration: 6, Func. Count: 29, Neg. LLF: 98.07824774002769
Iteration: 7, Func. Count: 33, Neg. LLF: 98.0782299677672
Iteration: 8, Func. Count: 36, Neg. LLF: 98.07823000799124
Optimization terminated successfully (Exit mode 0)
Current function value: 98.0782299677672
Iterations: 8
Function evaluations: 36
Gradient evaluations: 8
Iteration: 1, Func. Count: 6, Neg. LLF: 29373509.243991
Iteration: 2, Func. Count: 13, Neg. LLF: 120.65668231210235
Iteration: 3, Func. Count: 20, Neg. LLF: 97.0389181065008
Iteration: 4, Func. Count: 26, Neg. LLF: 96.43450780960114
Iteration: 5, Func. Count: 32, Neg. LLF: 96.29014158515196
Iteration: 6, Func. Count: 38, Neg. LLF: 96.28830594702728
Iteration: 7, Func. Count: 44, Neg. LLF: 96.28547911912779
Iteration: 8, Func. Count: 49, Neg. LLF: 96.28540862123944
Iteration: 9, Func. Count: 54, Neg. LLF: 96.28540741215556
Iteration: 10, Func. Count: 58, Neg. LLF: 96.28540741214685
Optimization terminated successfully (Exit mode 0)
Current function value: 96.28540741215556
Iterations: 10
Function evaluations: 58
Gradient evaluations: 10
Iteration: 1, Func. Count: 7, Neg. LLF: 377324.96740708733
Iteration: 2, Func. Count: 15, Neg. LLF: 111.24605586675267
Iteration: 3, Func. Count: 23, Neg. LLF: 98.47015800139532
Iteration: 4, Func. Count: 30, Neg. LLF: 96.70208246721467
Iteration: 5, Func. Count: 36, Neg. LLF: 97.3835059681376
Iteration: 6, Func. Count: 43, Neg. LLF: 96.7017760614887
Iteration: 7, Func. Count: 50, Neg. LLF: 96.29901139354354
Iteration: 8, Func. Count: 56, Neg. LLF: 96.28640136209155
Iteration: 9, Func. Count: 62, Neg. LLF: 96.28552154991829
Iteration: 10, Func. Count: 68, Neg. LLF: 96.28543102195952
Iteration: 11, Func. Count: 74, Neg. LLF: 96.28541322772175
Iteration: 12, Func. Count: 80, Neg. LLF: 96.28540754573618
Iteration: 13, Func. Count: 85, Neg. LLF: 96.28540756441723
Optimization terminated successfully (Exit mode 0)
Current function value: 96.28540754573618
Iterations: 13
Function evaluations: 85
Gradient evaluations: 13
Iteration: 1, Func. Count: 8, Neg. LLF: 44732318.22391489
Iteration: 2, Func. Count: 17, Neg. LLF: 158.80718180773388
Iteration: 3, Func. Count: 26, Neg. LLF: 106.25315765428961
Iteration: 4, Func. Count: 34, Neg. LLF: 99.07444089685166
Iteration: 5, Func. Count: 42, Neg. LLF: 96.68881361211179
Iteration: 6, Func. Count: 49, Neg. LLF: 96.64051132889226
Iteration: 7, Func. Count: 57, Neg. LLF: 97.71887324386859
Iteration: 8, Func. Count: 66, Neg. LLF: 96.32014230659632
Iteration: 9, Func. Count: 73, Neg. LLF: 96.29037319436803
Iteration: 10, Func. Count: 80, Neg. LLF: 96.28634190005401
Iteration: 11, Func. Count: 87, Neg. LLF: 96.2854151024603
Iteration: 12, Func. Count: 94, Neg. LLF: 96.28540762325234
Iteration: 13, Func. Count: 100, Neg. LLF: 96.28540764405638
Optimization terminated successfully (Exit mode 0)
Current function value: 96.28540762325234
Iterations: 13
Function evaluations: 100
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 41834301.07770451
Iteration: 2, Func. Count: 19, Neg. LLF: 144.2877254271994
Iteration: 3, Func. Count: 29, Neg. LLF: 97.07136357505223
Iteration: 4, Func. Count: 37, Neg. LLF: 97.96654879889903
Iteration: 5, Func. Count: 46, Neg. LLF: 99.63709870621166
Iteration: 6, Func. Count: 55, Neg. LLF: 96.33507518927046
Iteration: 7, Func. Count: 63, Neg. LLF: 96.30105351763288
Iteration: 8, Func. Count: 71, Neg. LLF: 96.28815888005482
Iteration: 9, Func. Count: 79, Neg. LLF: 96.28553195982622
Iteration: 10, Func. Count: 87, Neg. LLF: 96.28542760122394
Iteration: 11, Func. Count: 95, Neg. LLF: 96.28541296136429
Iteration: 12, Func. Count: 103, Neg. LLF: 96.2854079134649
Iteration: 13, Func. Count: 110, Neg. LLF: 96.28540794339524
Optimization terminated successfully (Exit mode 0)
Current function value: 96.2854079134649
Iterations: 13
Function evaluations: 110
Gradient evaluations: 13
Iteration: 1, Func. Count: 6, Neg. LLF: 126.66960626896748
Iteration: 2, Func. Count: 14, Neg. LLF: 90703266.61933877
Iteration: 3, Func. Count: 20, Neg. LLF: 6064996.641132296
Iteration: 4, Func. Count: 26, Neg. LLF: 96.1169945229192
Iteration: 5, Func. Count: 31, Neg. LLF: 96.1073080090163
Iteration: 6, Func. Count: 36, Neg. LLF: 96.10627167297096
Iteration: 7, Func. Count: 41, Neg. LLF: 96.10611370186652
Iteration: 8, Func. Count: 46, Neg. LLF: 96.10585363963953
Iteration: 9, Func. Count: 51, Neg. LLF: 96.10584078453888
Iteration: 10, Func. Count: 56, Neg. LLF: 96.10584022182736
Optimization terminated successfully (Exit mode 0)
Current function value: 96.10584022182736
Iterations: 10
Function evaluations: 56
Gradient evaluations: 10
Iteration: 1, Func. Count: 7, Neg. LLF: 31488184.96985093
Iteration: 2, Func. Count: 14, Neg. LLF: 97.83809640880878
Iteration: 3, Func. Count: 23, Neg. LLF: 99.63547915661908
Iteration: 4, Func. Count: 30, Neg. LLF: 95.70994606987203
Iteration: 5, Func. Count: 37, Neg. LLF: 99.40237254896219
Iteration: 6, Func. Count: 44, Neg. LLF: 95.45964033521739
Iteration: 7, Func. Count: 50, Neg. LLF: 95.45824994098199
Iteration: 8, Func. Count: 56, Neg. LLF: 95.45848900999
Iteration: 9, Func. Count: 63, Neg. LLF: 95.4580689019164
Iteration: 10, Func. Count: 69, Neg. LLF: 95.45806440612972
Iteration: 11, Func. Count: 74, Neg. LLF: 95.458064406124
Optimization terminated successfully (Exit mode 0)
Current function value: 95.45806440612972
Iterations: 11
Function evaluations: 74
Gradient evaluations: 11
Iteration: 1, Func. Count: 8, Neg. LLF: 32271492.81171436
Iteration: 2, Func. Count: 16, Neg. LLF: 112.8196233976973
Iteration: 3, Func. Count: 25, Neg. LLF: 98.00818325622254
Iteration: 4, Func. Count: 33, Neg. LLF: 94.09808307958365
Iteration: 5, Func. Count: 40, Neg. LLF: 94.50360855825622
Iteration: 6, Func. Count: 48, Neg. LLF: 94.01793532109899
Iteration: 7, Func. Count: 55, Neg. LLF: 94.01099079183345
Iteration: 8, Func. Count: 62, Neg. LLF: 94.04369993849113
Iteration: 9, Func. Count: 70, Neg. LLF: 93.99389783481124
Iteration: 10, Func. Count: 77, Neg. LLF: 93.99332297388685
Iteration: 11, Func. Count: 84, Neg. LLF: 93.99303606679135
Iteration: 12, Func. Count: 91, Neg. LLF: 93.9925915777469
Iteration: 13, Func. Count: 98, Neg. LLF: 93.99252822107698
Iteration: 14, Func. Count: 105, Neg. LLF: 93.99252223833801
Iteration: 15, Func. Count: 111, Neg. LLF: 93.99252223838948
Optimization terminated successfully (Exit mode 0)
Current function value: 93.99252223833801
Iterations: 15
Function evaluations: 111
Gradient evaluations: 15
Iteration: 1, Func. Count: 9, Neg. LLF: 32385367.689041127
Iteration: 2, Func. Count: 18, Neg. LLF: 148.69652642443353
Iteration: 3, Func. Count: 27, Neg. LLF: 98.72565407270373
Iteration: 4, Func. Count: 37, Neg. LLF: 95.28121172048753
Iteration: 5, Func. Count: 45, Neg. LLF: 97.3934907706835
Iteration: 6, Func. Count: 54, Neg. LLF: 94.57505735234594
Iteration: 7, Func. Count: 62, Neg. LLF: 99.02256075400041
Iteration: 8, Func. Count: 72, Neg. LLF: 94.6526455567887
Iteration: 9, Func. Count: 81, Neg. LLF: 94.16017630840216
Iteration: 10, Func. Count: 90, Neg. LLF: 93.99864866258578
Iteration: 11, Func. Count: 98, Neg. LLF: 93.99294551490837
Iteration: 12, Func. Count: 106, Neg. LLF: 93.9925900268108
Iteration: 13, Func. Count: 114, Neg. LLF: 93.99254445531845
Iteration: 14, Func. Count: 122, Neg. LLF: 93.99252483966492
Iteration: 15, Func. Count: 130, Neg. LLF: 93.99252226939208
Iteration: 16, Func. Count: 137, Neg. LLF: 93.99252235103445
Optimization terminated successfully (Exit mode 0)
Current function value: 93.99252226939208
Iterations: 16
Function evaluations: 137
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 33974112.956741646
Iteration: 2, Func. Count: 20, Neg. LLF: 2810692.5921077267
Iteration: 3, Func. Count: 30, Neg. LLF: 96.5740075057185
Iteration: 4, Func. Count: 41, Neg. LLF: 94.59999926075476
Iteration: 5, Func. Count: 50, Neg. LLF: 169.7721191196061
Iteration: 6, Func. Count: 60, Neg. LLF: 96.43884527310213
Iteration: 7, Func. Count: 70, Neg. LLF: 97.18330207964678
Iteration: 8, Func. Count: 80, Neg. LLF: 94.24000660817028
Iteration: 9, Func. Count: 90, Neg. LLF: 93.94537863429395
Iteration: 10, Func. Count: 100, Neg. LLF: 93.77560105010645
Iteration: 11, Func. Count: 109, Neg. LLF: 93.76632336973645
Iteration: 12, Func. Count: 118, Neg. LLF: 93.76582345515003
Iteration: 13, Func. Count: 127, Neg. LLF: 93.76578998967463
Iteration: 14, Func. Count: 136, Neg. LLF: 93.76577093829482
Iteration: 15, Func. Count: 145, Neg. LLF: 93.7657623251248
Iteration: 16, Func. Count: 154, Neg. LLF: 93.76576172567479
Optimization terminated successfully (Exit mode 0)
Current function value: 93.76576172567479
Iterations: 16
Function evaluations: 154
Gradient evaluations: 16
Iteration: 1, Func. Count: 7, Neg. LLF: 132.10567490728135
Iteration: 2, Func. Count: 16, Neg. LLF: 136654028.6738207
Iteration: 3, Func. Count: 23, Neg. LLF: 6038947.115611522
Iteration: 4, Func. Count: 30, Neg. LLF: 96.18263785111414
Iteration: 5, Func. Count: 36, Neg. LLF: 96.11843585598537
Iteration: 6, Func. Count: 42, Neg. LLF: 96.1146926528211
Iteration: 7, Func. Count: 48, Neg. LLF: 96.10643881860443
Iteration: 8, Func. Count: 54, Neg. LLF: 96.10586323202486
Iteration: 9, Func. Count: 60, Neg. LLF: 96.10584035659843
Iteration: 10, Func. Count: 65, Neg. LLF: 96.10584039113613
Optimization terminated successfully (Exit mode 0)
Current function value: 96.10584035659843
Iterations: 10
Function evaluations: 65
Gradient evaluations: 10
Iteration: 1, Func. Count: 8, Neg. LLF: 21331395.84165688
Iteration: 2, Func. Count: 16, Neg. LLF: 97.99304196574472
Iteration: 3, Func. Count: 26, Neg. LLF: 96.51808844007682
Iteration: 4, Func. Count: 34, Neg. LLF: 95.6931706385819
Iteration: 5, Func. Count: 42, Neg. LLF: 97.49708127552255
Iteration: 6, Func. Count: 50, Neg. LLF: 95.46015186958904
Iteration: 7, Func. Count: 57, Neg. LLF: 95.45853630360963
Iteration: 8, Func. Count: 64, Neg. LLF: 95.45807655793476
Iteration: 9, Func. Count: 71, Neg. LLF: 95.45806572892619
Iteration: 10, Func. Count: 78, Neg. LLF: 95.45806440895615
Iteration: 11, Func. Count: 84, Neg. LLF: 95.45806440895298
Optimization terminated successfully (Exit mode 0)
Current function value: 95.45806440895615
Iterations: 11
Function evaluations: 84
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 20789596.690682013
Iteration: 2, Func. Count: 18, Neg. LLF: 113.87285418505434
Iteration: 3, Func. Count: 28, Neg. LLF: 94.22418082089197
Iteration: 4, Func. Count: 36, Neg. LLF: 101.90109878958509
Iteration: 5, Func. Count: 45, Neg. LLF: 96.52782209639565
Iteration: 6, Func. Count: 54, Neg. LLF: 94.04226999482493
Iteration: 7, Func. Count: 62, Neg. LLF: 94.01203299492718
Iteration: 8, Func. Count: 70, Neg. LLF: 94.00184551882288
Iteration: 9, Func. Count: 78, Neg. LLF: 94.02516426029952
Iteration: 10, Func. Count: 87, Neg. LLF: 93.99303330673503
Iteration: 11, Func. Count: 95, Neg. LLF: 93.99252565426515
Iteration: 12, Func. Count: 103, Neg. LLF: 93.99252212850882
Iteration: 13, Func. Count: 110, Neg. LLF: 93.99252212851887
Optimization terminated successfully (Exit mode 0)
Current function value: 93.99252212850882
Iterations: 13
Function evaluations: 110
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 22953479.97301863
Iteration: 2, Func. Count: 20, Neg. LLF: 136.12819645594885
Iteration: 3, Func. Count: 31, Neg. LLF: 99.95272844487755
Iteration: 4, Func. Count: 41, Neg. LLF: 96.14765562071646
Iteration: 5, Func. Count: 51, Neg. LLF: 94.0707657254428
Iteration: 6, Func. Count: 60, Neg. LLF: 95.10008449533821
Iteration: 7, Func. Count: 71, Neg. LLF: 94.02939593248664
Iteration: 8, Func. Count: 80, Neg. LLF: 94.10472537957278
Iteration: 9, Func. Count: 90, Neg. LLF: 93.99928812223031
Iteration: 10, Func. Count: 99, Neg. LLF: 93.99358053770884
Iteration: 11, Func. Count: 108, Neg. LLF: 93.9928310988616
Iteration: 12, Func. Count: 117, Neg. LLF: 93.99268550659106
Iteration: 13, Func. Count: 126, Neg. LLF: 93.9925651353022
Iteration: 14, Func. Count: 135, Neg. LLF: 93.99252787881241
Iteration: 15, Func. Count: 144, Neg. LLF: 93.99252232468508
Iteration: 16, Func. Count: 152, Neg. LLF: 93.99252240634544
Optimization terminated successfully (Exit mode 0)
Current function value: 93.99252232468508
Iterations: 16
Function evaluations: 152
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 22887254.061678868
Iteration: 2, Func. Count: 22, Neg. LLF: 216.9952420438297
Iteration: 3, Func. Count: 34, Neg. LLF: 428.477894131869
Iteration: 4, Func. Count: 46, Neg. LLF: 99.22961634662552
Iteration: 5, Func. Count: 57, Neg. LLF: 94.72637038525937
Iteration: 6, Func. Count: 67, Neg. LLF: 94.97667070399746
Iteration: 7, Func. Count: 78, Neg. LLF: 95.84311485120935
Iteration: 8, Func. Count: 89, Neg. LLF: 93.83648816500883
Iteration: 9, Func. Count: 99, Neg. LLF: 93.80169277589033
Iteration: 10, Func. Count: 109, Neg. LLF: 93.78846411954824
Iteration: 11, Func. Count: 119, Neg. LLF: 93.76750737846282
Iteration: 12, Func. Count: 129, Neg. LLF: 93.76599117517424
Iteration: 13, Func. Count: 139, Neg. LLF: 93.7657747932659
Iteration: 14, Func. Count: 149, Neg. LLF: 93.76576295761068
Iteration: 15, Func. Count: 159, Neg. LLF: 93.76576189566164
Iteration: 16, Func. Count: 168, Neg. LLF: 93.76576189571604
Optimization terminated successfully (Exit mode 0)
Current function value: 93.76576189566164
Iterations: 16
Function evaluations: 168
Gradient evaluations: 16
Iteration: 1, Func. Count: 8, Neg. LLF: 129.48798487119774
Iteration: 2, Func. Count: 18, Neg. LLF: 107015132.1195956
Iteration: 3, Func. Count: 26, Neg. LLF: 2180986.3053346295
Iteration: 4, Func. Count: 34, Neg. LLF: 4360832.253467604
Iteration: 5, Func. Count: 42, Neg. LLF: 95.45057079752401
Iteration: 6, Func. Count: 49, Neg. LLF: 99.62528118407974
Iteration: 7, Func. Count: 58, Neg. LLF: 95.44645422461272
Iteration: 8, Func. Count: 66, Neg. LLF: 95.24705336622732
Iteration: 9, Func. Count: 73, Neg. LLF: 95.19291845545496
Iteration: 10, Func. Count: 80, Neg. LLF: 95.16936982580904
Iteration: 11, Func. Count: 87, Neg. LLF: 95.16274336254692
Iteration: 12, Func. Count: 94, Neg. LLF: 95.16241319046945
Iteration: 13, Func. Count: 101, Neg. LLF: 95.16239679974842
Iteration: 14, Func. Count: 108, Neg. LLF: 95.16239534488547
Iteration: 15, Func. Count: 114, Neg. LLF: 95.16239534488025
Optimization terminated successfully (Exit mode 0)
Current function value: 95.16239534488547
Iterations: 15
Function evaluations: 114
Gradient evaluations: 15
Iteration: 1, Func. Count: 9, Neg. LLF: 18559739.126395017
Iteration: 2, Func. Count: 18, Neg. LLF: 98.9812669878929
Iteration: 3, Func. Count: 29, Neg. LLF: 95.74399494824114
Iteration: 4, Func. Count: 38, Neg. LLF: 95.75012950988175
Iteration: 5, Func. Count: 47, Neg. LLF: 97.65110341386563
Iteration: 6, Func. Count: 56, Neg. LLF: 95.45863724804342
Iteration: 7, Func. Count: 64, Neg. LLF: 95.46361655967821
Iteration: 8, Func. Count: 73, Neg. LLF: 95.45809098540025
Iteration: 9, Func. Count: 81, Neg. LLF: 95.45806576480706
Iteration: 10, Func. Count: 89, Neg. LLF: 95.45806446377438
Iteration: 11, Func. Count: 96, Neg. LLF: 95.45806446378862
Optimization terminated successfully (Exit mode 0)
Current function value: 95.45806446377438
Iterations: 11
Function evaluations: 96
Gradient evaluations: 11
Iteration: 1, Func. Count: 10, Neg. LLF: 21951309.470863577
Iteration: 2, Func. Count: 20, Neg. LLF: 117.15114956524883
Iteration: 3, Func. Count: 31, Neg. LLF: 115.39171815993663
Iteration: 4, Func. Count: 42, Neg. LLF: 94.2291100754029
Iteration: 5, Func. Count: 51, Neg. LLF: 97.71030757640567
Iteration: 6, Func. Count: 61, Neg. LLF: 94.09541438584267
Iteration: 7, Func. Count: 70, Neg. LLF: 94.01803965612808
Iteration: 8, Func. Count: 79, Neg. LLF: 94.11748303362957
Iteration: 9, Func. Count: 89, Neg. LLF: 94.03524059342814
Iteration: 10, Func. Count: 99, Neg. LLF: 93.99332111375989
Iteration: 11, Func. Count: 108, Neg. LLF: 93.99260791935957
Iteration: 12, Func. Count: 117, Neg. LLF: 93.99255586102352
Iteration: 13, Func. Count: 126, Neg. LLF: 93.99252403998628
Iteration: 14, Func. Count: 135, Neg. LLF: 93.99252221241187
Iteration: 15, Func. Count: 143, Neg. LLF: 93.99252221246734
Optimization terminated successfully (Exit mode 0)
Current function value: 93.99252221241187
Iterations: 15
Function evaluations: 143
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 23212947.39217334
Iteration: 2, Func. Count: 22, Neg. LLF: 136.10301202542132
Iteration: 3, Func. Count: 34, Neg. LLF: 141.1877719978091
Iteration: 4, Func. Count: 46, Neg. LLF: 114.16921557532082
Iteration: 5, Func. Count: 57, Neg. LLF: 95.27244229048324
Iteration: 6, Func. Count: 68, Neg. LLF: 94.07436492323993
Iteration: 7, Func. Count: 78, Neg. LLF: 94.07962350422841
Iteration: 8, Func. Count: 89, Neg. LLF: 94.01461250313443
Iteration: 9, Func. Count: 99, Neg. LLF: 94.60593036915022
Iteration: 10, Func. Count: 110, Neg. LLF: 93.99975547558148
Iteration: 11, Func. Count: 120, Neg. LLF: 93.99591489975262
Iteration: 12, Func. Count: 130, Neg. LLF: 93.99298747179361
Iteration: 13, Func. Count: 140, Neg. LLF: 93.99263710673259
Iteration: 14, Func. Count: 150, Neg. LLF: 93.99253049444637
Iteration: 15, Func. Count: 160, Neg. LLF: 93.9925224821257
Iteration: 16, Func. Count: 169, Neg. LLF: 93.99252256377595
Optimization terminated successfully (Exit mode 0)
Current function value: 93.9925224821257
Iterations: 16
Function evaluations: 169
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 11167048.206011014
Iteration: 2, Func. Count: 24, Neg. LLF: 4974643.170717943
Iteration: 3, Func. Count: 36, Neg. LLF: 242.4978179660798
Iteration: 4, Func. Count: 48, Neg. LLF: 97.11103325270261
Iteration: 5, Func. Count: 60, Neg. LLF: 97.73891968870318
Iteration: 6, Func. Count: 72, Neg. LLF: 95.61134864712048
Iteration: 7, Func. Count: 84, Neg. LLF: 93.9347103460461
Iteration: 8, Func. Count: 95, Neg. LLF: 94.0576496855784
Iteration: 9, Func. Count: 107, Neg. LLF: 93.8615498914072
Iteration: 10, Func. Count: 118, Neg. LLF: 93.81327060227336
Iteration: 11, Func. Count: 129, Neg. LLF: 93.77160316631519
Iteration: 12, Func. Count: 140, Neg. LLF: 93.7683797077502
Iteration: 13, Func. Count: 151, Neg. LLF: 93.76651643294625
Iteration: 14, Func. Count: 162, Neg. LLF: 93.76583883617621
Iteration: 15, Func. Count: 173, Neg. LLF: 93.76576516259999
Iteration: 16, Func. Count: 184, Neg. LLF: 93.76576236155412
Iteration: 17, Func. Count: 195, Neg. LLF: 93.76576171387995
Optimization terminated successfully (Exit mode 0)
Current function value: 93.76576171387995
Iterations: 17
Function evaluations: 195
Gradient evaluations: 17
Iteration: 1, Func. Count: 5, Neg. LLF: 130.37006134038953
Iteration: 2, Func. Count: 12, Neg. LLF: 134.429939737238
Iteration: 3, Func. Count: 17, Neg. LLF: 98.09122913354597
Iteration: 4, Func. Count: 21, Neg. LLF: 98.09109033647789
Iteration: 5, Func. Count: 26, Neg. LLF: 98.07984169489836
Iteration: 6, Func. Count: 30, Neg. LLF: 98.07823198121551
Iteration: 7, Func. Count: 34, Neg. LLF: 98.07822994204818
Iteration: 8, Func. Count: 37, Neg. LLF: 98.07822994955497
Optimization terminated successfully (Exit mode 0)
Current function value: 98.07822994204818
Iterations: 8
Function evaluations: 37
Gradient evaluations: 8
Iteration: 1, Func. Count: 6, Neg. LLF: 157.95823265860525
Iteration: 2, Func. Count: 13, Neg. LLF: 99.15524598313705
Iteration: 3, Func. Count: 20, Neg. LLF: 100.54451610720268
Iteration: 4, Func. Count: 26, Neg. LLF: 97.29413091438074
Iteration: 5, Func. Count: 32, Neg. LLF: 96.88326355043627
Iteration: 6, Func. Count: 38, Neg. LLF: 96.74122186183386
Iteration: 7, Func. Count: 43, Neg. LLF: 96.74116566653319
Iteration: 8, Func. Count: 48, Neg. LLF: 96.74116177529243
Iteration: 9, Func. Count: 52, Neg. LLF: 96.74116177534961
Optimization terminated successfully (Exit mode 0)
Current function value: 96.74116177529243
Iterations: 9
Function evaluations: 52
Gradient evaluations: 9
Iteration: 1, Func. Count: 7, Neg. LLF: 149.75344008664575
Iteration: 2, Func. Count: 15, Neg. LLF: 98.36103359811926
Iteration: 3, Func. Count: 23, Neg. LLF: 99.60577677334405
Iteration: 4, Func. Count: 30, Neg. LLF: 96.98251811542585
Iteration: 5, Func. Count: 36, Neg. LLF: 96.78170868357645
Iteration: 6, Func. Count: 42, Neg. LLF: 96.81342119855238
Iteration: 7, Func. Count: 49, Neg. LLF: 96.74183203500039
Iteration: 8, Func. Count: 55, Neg. LLF: 96.74116983111644
Iteration: 9, Func. Count: 61, Neg. LLF: 96.74116170887757
Iteration: 10, Func. Count: 66, Neg. LLF: 96.74116172804028
Optimization terminated successfully (Exit mode 0)
Current function value: 96.74116170887757
Iterations: 10
Function evaluations: 66
Gradient evaluations: 10
Iteration: 1, Func. Count: 8, Neg. LLF: 109.54620249344973
Iteration: 2, Func. Count: 17, Neg. LLF: 104.65125532170052
Iteration: 3, Func. Count: 25, Neg. LLF: 102.12008631696122
Iteration: 4, Func. Count: 33, Neg. LLF: 103.85949644538698
Iteration: 5, Func. Count: 41, Neg. LLF: 98.33822103948793
Iteration: 6, Func. Count: 49, Neg. LLF: 98.74529149557911
Iteration: 7, Func. Count: 57, Neg. LLF: 98.90754063949733
Iteration: 8, Func. Count: 65, Neg. LLF: 99.09837229246722
Iteration: 9, Func. Count: 73, Neg. LLF: 97.83917765685558
Iteration: 10, Func. Count: 81, Neg. LLF: 97.30988732143209
Iteration: 11, Func. Count: 89, Neg. LLF: 97.03158100226652
Iteration: 12, Func. Count: 96, Neg. LLF: 96.87519598229677
Iteration: 13, Func. Count: 103, Neg. LLF: 96.87451358364281
Iteration: 14, Func. Count: 111, Neg. LLF: 96.74960748512672
Iteration: 15, Func. Count: 118, Neg. LLF: 96.74233966056065
Iteration: 16, Func. Count: 125, Neg. LLF: 96.7412453849834
Iteration: 17, Func. Count: 132, Neg. LLF: 96.74116470875299
Iteration: 18, Func. Count: 139, Neg. LLF: 96.74116166571055
Iteration: 19, Func. Count: 145, Neg. LLF: 96.74116170855181
Optimization terminated successfully (Exit mode 0)
Current function value: 96.74116166571055
Iterations: 19
Function evaluations: 145
Gradient evaluations: 19
Iteration: 1, Func. Count: 9, Neg. LLF: 129.54068986899517
Iteration: 2, Func. Count: 19, Neg. LLF: 98.27150424888355
Iteration: 3, Func. Count: 28, Neg. LLF: 102.33662432289859
Iteration: 4, Func. Count: 37, Neg. LLF: 100.7842861241658
Iteration: 5, Func. Count: 46, Neg. LLF: 100.20777052132894
Iteration: 6, Func. Count: 55, Neg. LLF: 112.29174988100286
Iteration: 7, Func. Count: 65, Neg. LLF: 98.76394174821922
Iteration: 8, Func. Count: 74, Neg. LLF: 98.3671798592985
Iteration: 9, Func. Count: 83, Neg. LLF: 97.09455681575841
Iteration: 10, Func. Count: 91, Neg. LLF: 96.94517595644504
Iteration: 11, Func. Count: 99, Neg. LLF: 96.86973748630443
Iteration: 12, Func. Count: 107, Neg. LLF: 96.75715002206768
Iteration: 13, Func. Count: 115, Neg. LLF: 96.74409817744241
Iteration: 14, Func. Count: 123, Neg. LLF: 96.741462377052
Iteration: 15, Func. Count: 131, Neg. LLF: 96.74117922877393
Iteration: 16, Func. Count: 139, Neg. LLF: 96.74116219214604
Iteration: 17, Func. Count: 146, Neg. LLF: 96.74116224875964
Optimization terminated successfully (Exit mode 0)
Current function value: 96.74116219214604
Iterations: 17
Function evaluations: 146
Gradient evaluations: 17
Iteration: 1, Func. Count: 6, Neg. LLF: 126.662163202746
Iteration: 2, Func. Count: 14, Neg. LLF: 133.25100247318403
Iteration: 3, Func. Count: 20, Neg. LLF: 98.10640438389788
Iteration: 4, Func. Count: 25, Neg. LLF: 98.28212289585325
Iteration: 5, Func. Count: 31, Neg. LLF: 98.05451952926599
Iteration: 6, Func. Count: 37, Neg. LLF: 98.02732398228865
Iteration: 7, Func. Count: 42, Neg. LLF: 98.02580831686876
Iteration: 8, Func. Count: 47, Neg. LLF: 98.02572747433854
Iteration: 9, Func. Count: 52, Neg. LLF: 98.02571106250281
Iteration: 10, Func. Count: 56, Neg. LLF: 98.02571102302065
Optimization terminated successfully (Exit mode 0)
Current function value: 98.02571106250281
Iterations: 10
Function evaluations: 56
Gradient evaluations: 10
Iteration: 1, Func. Count: 7, Neg. LLF: 137.8843295483374
Iteration: 2, Func. Count: 15, Neg. LLF: 548.5425613440834
Iteration: 3, Func. Count: 23, Neg. LLF: 98.16334211304293
Iteration: 4, Func. Count: 30, Neg. LLF: 96.47648181577952
Iteration: 5, Func. Count: 37, Neg. LLF: 96.2881188469711
Iteration: 6, Func. Count: 43, Neg. LLF: 96.28564446020086
Iteration: 7, Func. Count: 49, Neg. LLF: 96.28547077218212
Iteration: 8, Func. Count: 55, Neg. LLF: 96.28540772011159
Iteration: 9, Func. Count: 60, Neg. LLF: 96.2854077201923
Optimization terminated successfully (Exit mode 0)
Current function value: 96.28540772011159
Iterations: 9
Function evaluations: 60
Gradient evaluations: 9
Iteration: 1, Func. Count: 8, Neg. LLF: 101.49034201318459
Iteration: 2, Func. Count: 16, Neg. LLF: 137.35961131914206
Iteration: 3, Func. Count: 25, Neg. LLF: 97.72878951492108
Iteration: 4, Func. Count: 33, Neg. LLF: 97.10312240631025
Iteration: 5, Func. Count: 41, Neg. LLF: 97.2445868204919
Iteration: 6, Func. Count: 49, Neg. LLF: 96.36819712455888
Iteration: 7, Func. Count: 56, Neg. LLF: 96.8436889978874
Iteration: 8, Func. Count: 64, Neg. LLF: 96.28936669054674
Iteration: 9, Func. Count: 71, Neg. LLF: 96.28784208701602
Iteration: 10, Func. Count: 78, Neg. LLF: 96.28550237904942
Iteration: 11, Func. Count: 85, Neg. LLF: 96.28541951976679
Iteration: 12, Func. Count: 92, Neg. LLF: 96.28540759892039
Iteration: 13, Func. Count: 98, Neg. LLF: 96.28540761737834
Optimization terminated successfully (Exit mode 0)
Current function value: 96.28540759892039
Iterations: 13
Function evaluations: 98
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 125.51187846282465
Iteration: 2, Func. Count: 19, Neg. LLF: 618.5368941395276
Iteration: 3, Func. Count: 29, Neg. LLF: 96.7825137280486
Iteration: 4, Func. Count: 37, Neg. LLF: 97.45016119663019
Iteration: 5, Func. Count: 46, Neg. LLF: 96.89362595081226
Iteration: 6, Func. Count: 55, Neg. LLF: 96.36077157005381
Iteration: 7, Func. Count: 64, Neg. LLF: 96.28654723062304
Iteration: 8, Func. Count: 72, Neg. LLF: 96.2854317324863
Iteration: 9, Func. Count: 80, Neg. LLF: 96.28540755697951
Iteration: 10, Func. Count: 87, Neg. LLF: 96.28540757789662
Optimization terminated successfully (Exit mode 0)
Current function value: 96.28540755697951
Iterations: 10
Function evaluations: 87
Gradient evaluations: 10
Iteration: 1, Func. Count: 10, Neg. LLF: 106.35965730263266
Iteration: 2, Func. Count: 20, Neg. LLF: 558.0989106053355
Iteration: 3, Func. Count: 31, Neg. LLF: 98.30992225309957
Iteration: 4, Func. Count: 41, Neg. LLF: 98.46460601346396
Iteration: 5, Func. Count: 51, Neg. LLF: 96.99338200669416
Iteration: 6, Func. Count: 61, Neg. LLF: 96.33150395149153
Iteration: 7, Func. Count: 70, Neg. LLF: 96.59997683117442
Iteration: 8, Func. Count: 80, Neg. LLF: 96.29068328324534
Iteration: 9, Func. Count: 90, Neg. LLF: 96.28600277742024
Iteration: 10, Func. Count: 100, Neg. LLF: 96.28540897139249
Iteration: 11, Func. Count: 109, Neg. LLF: 96.28540742058975
Iteration: 12, Func. Count: 117, Neg. LLF: 96.28540745045616
Optimization terminated successfully (Exit mode 0)
Current function value: 96.28540742058975
Iterations: 12
Function evaluations: 117
Gradient evaluations: 12
Iteration: 1, Func. Count: 7, Neg. LLF: 139.63753213555086
Iteration: 2, Func. Count: 15, Neg. LLF: 209.79181286837368
Iteration: 3, Func. Count: 22, Neg. LLF: 8320743.411675775
Iteration: 4, Func. Count: 29, Neg. LLF: 96.29805230114887
Iteration: 5, Func. Count: 35, Neg. LLF: 97.84431715304076
Iteration: 6, Func. Count: 42, Neg. LLF: 99.39373036426838
Iteration: 7, Func. Count: 50, Neg. LLF: 96.00864676730971
Iteration: 8, Func. Count: 56, Neg. LLF: 95.9993038683545
Iteration: 9, Func. Count: 62, Neg. LLF: 95.99792983191475
Iteration: 10, Func. Count: 68, Neg. LLF: 95.9970319094218
Iteration: 11, Func. Count: 74, Neg. LLF: 95.99696248235107
Iteration: 12, Func. Count: 80, Neg. LLF: 95.99694922634026
Iteration: 13, Func. Count: 85, Neg. LLF: 95.99694922633546
Optimization terminated successfully (Exit mode 0)
Current function value: 95.99694922634026
Iterations: 13
Function evaluations: 85
Gradient evaluations: 13
Iteration: 1, Func. Count: 8, Neg. LLF: 30459636.813346263
Iteration: 2, Func. Count: 17, Neg. LLF: 105.93472218834906
Iteration: 3, Func. Count: 27, Neg. LLF: 99.65601995143196
Iteration: 4, Func. Count: 35, Neg. LLF: 95.69527768125904
Iteration: 5, Func. Count: 42, Neg. LLF: 95.66806920182026
Iteration: 6, Func. Count: 50, Neg. LLF: 95.7269074185127
Iteration: 7, Func. Count: 58, Neg. LLF: 95.46745390665222
Iteration: 8, Func. Count: 65, Neg. LLF: 95.45889967320826
Iteration: 9, Func. Count: 72, Neg. LLF: 95.45811552644909
Iteration: 10, Func. Count: 79, Neg. LLF: 95.45807558051817
Iteration: 11, Func. Count: 86, Neg. LLF: 95.45806453675469
Iteration: 12, Func. Count: 92, Neg. LLF: 95.45806453664642
Optimization terminated successfully (Exit mode 0)
Current function value: 95.45806453675469
Iterations: 12
Function evaluations: 92
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 22790538.74121594
Iteration: 2, Func. Count: 18, Neg. LLF: 98.26824259189533
Iteration: 3, Func. Count: 28, Neg. LLF: 100.83945801967562
Iteration: 4, Func. Count: 37, Neg. LLF: 94.90091591832413
Iteration: 5, Func. Count: 45, Neg. LLF: 101.19103860028567
Iteration: 6, Func. Count: 54, Neg. LLF: 94.7046841198622
Iteration: 7, Func. Count: 63, Neg. LLF: 94.04857642284435
Iteration: 8, Func. Count: 72, Neg. LLF: 93.99963088868498
Iteration: 9, Func. Count: 80, Neg. LLF: 94.02774819048716
Iteration: 10, Func. Count: 89, Neg. LLF: 93.99567414926393
Iteration: 11, Func. Count: 97, Neg. LLF: 93.99256384845417
Iteration: 12, Func. Count: 105, Neg. LLF: 93.99253053827681
Iteration: 13, Func. Count: 113, Neg. LLF: 93.99252212899857
Iteration: 14, Func. Count: 120, Neg. LLF: 93.99252212898597
Optimization terminated successfully (Exit mode 0)
Current function value: 93.99252212899857
Iterations: 14
Function evaluations: 120
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 21293978.69566852
Iteration: 2, Func. Count: 20, Neg. LLF: 110.8470082163824
Iteration: 3, Func. Count: 31, Neg. LLF: 105.80492700451387
Iteration: 4, Func. Count: 42, Neg. LLF: 99.84091196452356
Iteration: 5, Func. Count: 52, Neg. LLF: 94.11934721386744
Iteration: 6, Func. Count: 61, Neg. LLF: 94.06247663424993
Iteration: 7, Func. Count: 70, Neg. LLF: 94.00512949280186
Iteration: 8, Func. Count: 79, Neg. LLF: 93.99346335193212
Iteration: 9, Func. Count: 88, Neg. LLF: 93.99257286120738
Iteration: 10, Func. Count: 97, Neg. LLF: 93.99328350285451
Iteration: 11, Func. Count: 107, Neg. LLF: 93.99253176291943
Iteration: 12, Func. Count: 116, Neg. LLF: 93.99252518515084
Iteration: 13, Func. Count: 125, Neg. LLF: 93.99252212072133
Iteration: 14, Func. Count: 133, Neg. LLF: 93.99252220227869
Optimization terminated successfully (Exit mode 0)
Current function value: 93.99252212072133
Iterations: 14
Function evaluations: 133
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 17950978.0791575
Iteration: 2, Func. Count: 22, Neg. LLF: 126.74942517580935
Iteration: 3, Func. Count: 34, Neg. LLF: 149.19247510849925
Iteration: 4, Func. Count: 46, Neg. LLF: 96.08476195801514
Iteration: 5, Func. Count: 57, Neg. LLF: 94.58635164037597
Iteration: 6, Func. Count: 67, Neg. LLF: 94.10975949658369
Iteration: 7, Func. Count: 77, Neg. LLF: 94.17362372926628
Iteration: 8, Func. Count: 88, Neg. LLF: 93.83933856126824
Iteration: 9, Func. Count: 98, Neg. LLF: 93.78444453638741
Iteration: 10, Func. Count: 108, Neg. LLF: 93.77351834904299
Iteration: 11, Func. Count: 118, Neg. LLF: 93.76989943036983
Iteration: 12, Func. Count: 128, Neg. LLF: 93.76604954085484
Iteration: 13, Func. Count: 138, Neg. LLF: 93.76578469330296
Iteration: 14, Func. Count: 148, Neg. LLF: 93.76576353582568
Iteration: 15, Func. Count: 158, Neg. LLF: 93.76576177756547
Iteration: 16, Func. Count: 167, Neg. LLF: 93.76576177760954
Optimization terminated successfully (Exit mode 0)
Current function value: 93.76576177756547
Iterations: 16
Function evaluations: 167
Gradient evaluations: 16
Iteration: 1, Func. Count: 8, Neg. LLF: 134.46906265835034
Iteration: 2, Func. Count: 17, Neg. LLF: 303.0503619010323
Iteration: 3, Func. Count: 25, Neg. LLF: 8320245.426541722
Iteration: 4, Func. Count: 33, Neg. LLF: 96.40876297383134
Iteration: 5, Func. Count: 40, Neg. LLF: 96.83581417998487
Iteration: 6, Func. Count: 48, Neg. LLF: 101.76793151515714
Iteration: 7, Func. Count: 57, Neg. LLF: 96.02214056890244
Iteration: 8, Func. Count: 64, Neg. LLF: 96.00466474155016
Iteration: 9, Func. Count: 71, Neg. LLF: 96.00079641950215
Iteration: 10, Func. Count: 78, Neg. LLF: 95.9980903808471
Iteration: 11, Func. Count: 85, Neg. LLF: 95.99710794852516
Iteration: 12, Func. Count: 92, Neg. LLF: 95.99696458581558
Iteration: 13, Func. Count: 99, Neg. LLF: 95.9969492877661
Iteration: 14, Func. Count: 105, Neg. LLF: 95.99694934019323
Optimization terminated successfully (Exit mode 0)
Current function value: 95.9969492877661
Iterations: 14
Function evaluations: 105
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 878.8382038769995
Iteration: 2, Func. Count: 18, Neg. LLF: 102.86530587767157
Iteration: 3, Func. Count: 29, Neg. LLF: 104.2144967457824
Iteration: 4, Func. Count: 38, Neg. LLF: 95.72885846485171
Iteration: 5, Func. Count: 46, Neg. LLF: 100.6397094304603
Iteration: 6, Func. Count: 55, Neg. LLF: 95.58473450664614
Iteration: 7, Func. Count: 64, Neg. LLF: 95.46186728792631
Iteration: 8, Func. Count: 72, Neg. LLF: 95.45858121896788
Iteration: 9, Func. Count: 80, Neg. LLF: 95.45816596119086
Iteration: 10, Func. Count: 88, Neg. LLF: 95.45806707862806
Iteration: 11, Func. Count: 96, Neg. LLF: 95.45806447993336
Iteration: 12, Func. Count: 103, Neg. LLF: 95.45806447989287
Optimization terminated successfully (Exit mode 0)
Current function value: 95.45806447993336
Iterations: 12
Function evaluations: 103
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 17195821.275051024
Iteration: 2, Func. Count: 20, Neg. LLF: 100.72433302250283
Iteration: 3, Func. Count: 32, Neg. LLF: 99.43403121732096
Iteration: 4, Func. Count: 42, Neg. LLF: 95.02104092646822
Iteration: 5, Func. Count: 51, Neg. LLF: 94.54310431112492
Iteration: 6, Func. Count: 60, Neg. LLF: 95.14602092092412
Iteration: 7, Func. Count: 70, Neg. LLF: 94.32980788105334
Iteration: 8, Func. Count: 80, Neg. LLF: 94.03889480176849
Iteration: 9, Func. Count: 89, Neg. LLF: 94.0077518562398
Iteration: 10, Func. Count: 98, Neg. LLF: 93.99773858823389
Iteration: 11, Func. Count: 107, Neg. LLF: 93.99349227464204
Iteration: 12, Func. Count: 116, Neg. LLF: 93.99264394889843
Iteration: 13, Func. Count: 125, Neg. LLF: 93.99252767780514
Iteration: 14, Func. Count: 134, Neg. LLF: 93.9925224486748
Iteration: 15, Func. Count: 142, Neg. LLF: 93.99252244866184
Optimization terminated successfully (Exit mode 0)
Current function value: 93.9925224486748
Iterations: 15
Function evaluations: 142
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 451.3205960599996
Iteration: 2, Func. Count: 22, Neg. LLF: 109.134966478832
Iteration: 3, Func. Count: 34, Neg. LLF: 99.97992614080064
Iteration: 4, Func. Count: 45, Neg. LLF: 101.84223629101821
Iteration: 5, Func. Count: 56, Neg. LLF: 94.92093758737288
Iteration: 6, Func. Count: 66, Neg. LLF: 95.5875084317198
Iteration: 7, Func. Count: 77, Neg. LLF: 96.47277481254656
Iteration: 8, Func. Count: 89, Neg. LLF: 94.09858911703608
Iteration: 9, Func. Count: 99, Neg. LLF: 98.53842907994802
Iteration: 10, Func. Count: 110, Neg. LLF: 94.00371923558536
Iteration: 11, Func. Count: 120, Neg. LLF: 93.99419273108865
Iteration: 12, Func. Count: 130, Neg. LLF: 93.99298338381683
Iteration: 13, Func. Count: 140, Neg. LLF: 93.99266780792755
Iteration: 14, Func. Count: 150, Neg. LLF: 93.9925434328888
Iteration: 15, Func. Count: 160, Neg. LLF: 93.9925237106113
Iteration: 16, Func. Count: 170, Neg. LLF: 93.99252219232486
Iteration: 17, Func. Count: 179, Neg. LLF: 93.99252227395716
Optimization terminated successfully (Exit mode 0)
Current function value: 93.99252219232486
Iterations: 17
Function evaluations: 179
Gradient evaluations: 17
Iteration: 1, Func. Count: 12, Neg. LLF: 15474141.374303509
Iteration: 2, Func. Count: 24, Neg. LLF: 114.45008708106958
Iteration: 3, Func. Count: 37, Neg. LLF: 269.85582988881407
Iteration: 4, Func. Count: 50, Neg. LLF: 95.28265794204505
Iteration: 5, Func. Count: 61, Neg. LLF: 95.0395367909136
Iteration: 6, Func. Count: 73, Neg. LLF: 95.02629605072168
Iteration: 7, Func. Count: 85, Neg. LLF: 95.01253550660631
Iteration: 8, Func. Count: 97, Neg. LLF: 93.83424569029222
Iteration: 9, Func. Count: 108, Neg. LLF: 93.79042206512388
Iteration: 10, Func. Count: 119, Neg. LLF: 93.77886718897433
Iteration: 11, Func. Count: 130, Neg. LLF: 93.77356517932938
Iteration: 12, Func. Count: 141, Neg. LLF: 93.76773133167607
Iteration: 13, Func. Count: 152, Neg. LLF: 93.76585066891965
Iteration: 14, Func. Count: 163, Neg. LLF: 93.76576439292212
Iteration: 15, Func. Count: 174, Neg. LLF: 93.76576187838855
Iteration: 16, Func. Count: 184, Neg. LLF: 93.76576187837131
Optimization terminated successfully (Exit mode 0)
Current function value: 93.76576187838855
Iterations: 16
Function evaluations: 184
Gradient evaluations: 16
Iteration: 1, Func. Count: 9, Neg. LLF: 130.75023160133802
Iteration: 2, Func. Count: 19, Neg. LLF: 465.307884245043
Iteration: 3, Func. Count: 28, Neg. LLF: 237.9161265421287
Iteration: 4, Func. Count: 37, Neg. LLF: 4402222.512450288
Iteration: 5, Func. Count: 46, Neg. LLF: 95.55334415703997
Iteration: 6, Func. Count: 54, Neg. LLF: 116.07543888805894
Iteration: 7, Func. Count: 64, Neg. LLF: 97.61768511051307
Iteration: 8, Func. Count: 73, Neg. LLF: 97.60955252280625
Iteration: 9, Func. Count: 83, Neg. LLF: 95.18322624774532
Iteration: 10, Func. Count: 91, Neg. LLF: 95.17476649617123
Iteration: 11, Func. Count: 99, Neg. LLF: 95.16856400049639
Iteration: 12, Func. Count: 107, Neg. LLF: 95.15923515500398
Iteration: 13, Func. Count: 115, Neg. LLF: 95.15807185958937
Iteration: 14, Func. Count: 123, Neg. LLF: 95.15798342090491
Iteration: 15, Func. Count: 131, Neg. LLF: 95.15795745091374
Iteration: 16, Func. Count: 139, Neg. LLF: 95.1579494916134
Iteration: 17, Func. Count: 146, Neg. LLF: 95.15794949160924
Optimization terminated successfully (Exit mode 0)
Current function value: 95.1579494916134
Iterations: 17
Function evaluations: 146
Gradient evaluations: 17
Iteration: 1, Func. Count: 10, Neg. LLF: 599.6245422403052
Iteration: 2, Func. Count: 20, Neg. LLF: 99.84800590363476
Iteration: 3, Func. Count: 32, Neg. LLF: 102.55449458599082
Iteration: 4, Func. Count: 42, Neg. LLF: 95.65296458379594
Iteration: 5, Func. Count: 51, Neg. LLF: 96.29912094999075
Iteration: 6, Func. Count: 61, Neg. LLF: 95.84054584144477
Iteration: 7, Func. Count: 71, Neg. LLF: 95.46815127810463
Iteration: 8, Func. Count: 80, Neg. LLF: 97.54501752738693
Iteration: 9, Func. Count: 91, Neg. LLF: 95.4583724793342
Iteration: 10, Func. Count: 100, Neg. LLF: 95.458066719615
Iteration: 11, Func. Count: 109, Neg. LLF: 95.4580644435355
Iteration: 12, Func. Count: 117, Neg. LLF: 95.45806444357845
Optimization terminated successfully (Exit mode 0)
Current function value: 95.4580644435355
Iterations: 12
Function evaluations: 117
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 17870727.013825826
Iteration: 2, Func. Count: 22, Neg. LLF: 102.40470756868554
Iteration: 3, Func. Count: 35, Neg. LLF: 101.18365113006605
Iteration: 4, Func. Count: 46, Neg. LLF: 95.52469532943499
Iteration: 5, Func. Count: 57, Neg. LLF: 94.4062390971355
Iteration: 6, Func. Count: 67, Neg. LLF: 94.7677083800727
Iteration: 7, Func. Count: 78, Neg. LLF: 95.41777192074363
Iteration: 8, Func. Count: 90, Neg. LLF: 94.03439766971806
Iteration: 9, Func. Count: 100, Neg. LLF: 94.50052793200305
Iteration: 10, Func. Count: 111, Neg. LLF: 93.99622712223075
Iteration: 11, Func. Count: 121, Neg. LLF: 93.99296917262996
Iteration: 12, Func. Count: 131, Neg. LLF: 93.99254226164895
Iteration: 13, Func. Count: 141, Neg. LLF: 93.99252402204549
Iteration: 14, Func. Count: 151, Neg. LLF: 93.99252217844841
Iteration: 15, Func. Count: 160, Neg. LLF: 93.99252217850315
Optimization terminated successfully (Exit mode 0)
Current function value: 93.99252217844841
Iterations: 15
Function evaluations: 160
Gradient evaluations: 15
Iteration: 1, Func. Count: 12, Neg. LLF: 203.96934100641795
Iteration: 2, Func. Count: 24, Neg. LLF: 110.24045810425416
Iteration: 3, Func. Count: 36, Neg. LLF: 112.3540719867576
Iteration: 4, Func. Count: 49, Neg. LLF: 97.49274864292406
Iteration: 5, Func. Count: 61, Neg. LLF: 99.33840220348884
Iteration: 6, Func. Count: 73, Neg. LLF: 95.34189223481869
Iteration: 7, Func. Count: 84, Neg. LLF: 94.38781721592302
Iteration: 8, Func. Count: 95, Neg. LLF: 94.34719899790313
Iteration: 9, Func. Count: 107, Neg. LLF: 94.67098889241365
Iteration: 10, Func. Count: 119, Neg. LLF: 94.04332444237065
Iteration: 11, Func. Count: 130, Neg. LLF: 93.99850473044626
Iteration: 12, Func. Count: 141, Neg. LLF: 93.9927647652182
Iteration: 13, Func. Count: 152, Neg. LLF: 93.9925643898244
Iteration: 14, Func. Count: 163, Neg. LLF: 93.99253687087808
Iteration: 15, Func. Count: 174, Neg. LLF: 93.99252235530788
Iteration: 16, Func. Count: 184, Neg. LLF: 93.99252243694569
Optimization terminated successfully (Exit mode 0)
Current function value: 93.99252235530788
Iterations: 16
Function evaluations: 184
Gradient evaluations: 16
Iteration: 1, Func. Count: 13, Neg. LLF: 245.9358931152551
Iteration: 2, Func. Count: 26, Neg. LLF: 6497894.378721738
Iteration: 3, Func. Count: 39, Neg. LLF: 109.56246392630116
Iteration: 4, Func. Count: 52, Neg. LLF: 94.8122852076854
Iteration: 5, Func. Count: 64, Neg. LLF: 94.28038440632271
Iteration: 6, Func. Count: 76, Neg. LLF: 99.2476781167356
Iteration: 7, Func. Count: 90, Neg. LLF: 102.4087027130523
Iteration: 8, Func. Count: 103, Neg. LLF: 93.88491781506818
Iteration: 9, Func. Count: 115, Neg. LLF: 93.83830699181844
Iteration: 10, Func. Count: 127, Neg. LLF: 93.80922575544147
Iteration: 11, Func. Count: 139, Neg. LLF: 93.7972817720087
Iteration: 12, Func. Count: 151, Neg. LLF: 93.78963671396116
Iteration: 13, Func. Count: 163, Neg. LLF: 93.77468529460506
Iteration: 14, Func. Count: 175, Neg. LLF: 93.7696285583933
Iteration: 15, Func. Count: 187, Neg. LLF: 93.76807197179208
Iteration: 16, Func. Count: 199, Neg. LLF: 93.76799957241673
Iteration: 17, Func. Count: 211, Neg. LLF: 93.7679979477342
Iteration: 18, Func. Count: 222, Neg. LLF: 93.76799790149833
Optimization terminated successfully (Exit mode 0)
Current function value: 93.7679979477342
Iterations: 18
Function evaluations: 222
Gradient evaluations: 18
Iteration: 1, Func. Count: 6, Neg. LLF: 117.22925402455485
Iteration: 2, Func. Count: 13, Neg. LLF: 152.5519200461301
Iteration: 3, Func. Count: 19, Neg. LLF: 10958.393792879742
Iteration: 4, Func. Count: 25, Neg. LLF: 97.24964211136209
Iteration: 5, Func. Count: 30, Neg. LLF: 141.72818946534497
Iteration: 6, Func. Count: 36, Neg. LLF: 98.37809892479662
Iteration: 7, Func. Count: 42, Neg. LLF: 97.01107325809866
Iteration: 8, Func. Count: 47, Neg. LLF: 97.00065225386687
Iteration: 9, Func. Count: 52, Neg. LLF: 96.99986160932146
Iteration: 10, Func. Count: 57, Neg. LLF: 96.99984490642076
Iteration: 11, Func. Count: 62, Neg. LLF: 96.99984281593838
Iteration: 12, Func. Count: 66, Neg. LLF: 96.99984281593179
Optimization terminated successfully (Exit mode 0)
Current function value: 96.99984281593838
Iterations: 12
Function evaluations: 66
Gradient evaluations: 12
Iteration: 1, Func. Count: 7, Neg. LLF: 101.83090951616467
Iteration: 2, Func. Count: 15, Neg. LLF: 102.08547056622986
Iteration: 3, Func. Count: 22, Neg. LLF: 105.66736705290974
Iteration: 4, Func. Count: 29, Neg. LLF: 97.43339974212351
Iteration: 5, Func. Count: 36, Neg. LLF: 95.95350237686202
Iteration: 6, Func. Count: 43, Neg. LLF: 95.85749116463326
Iteration: 7, Func. Count: 50, Neg. LLF: 95.8395896810238
Iteration: 8, Func. Count: 56, Neg. LLF: 95.83519907909607
Iteration: 9, Func. Count: 62, Neg. LLF: 95.83485995355495
Iteration: 10, Func. Count: 68, Neg. LLF: 95.83472890656587
Iteration: 11, Func. Count: 73, Neg. LLF: 95.83472890652014
Optimization terminated successfully (Exit mode 0)
Current function value: 95.83472890656587
Iterations: 11
Function evaluations: 73
Gradient evaluations: 11
Iteration: 1, Func. Count: 8, Neg. LLF: 206.52952093144782
Iteration: 2, Func. Count: 16, Neg. LLF: 4495.744376019338
Iteration: 3, Func. Count: 25, Neg. LLF: 103.19784005569893
Iteration: 4, Func. Count: 33, Neg. LLF: 97.13451361818873
Iteration: 5, Func. Count: 41, Neg. LLF: 95.8055366239911
Iteration: 6, Func. Count: 48, Neg. LLF: 95.69524796506387
Iteration: 7, Func. Count: 55, Neg. LLF: 96.14816782024012
Iteration: 8, Func. Count: 63, Neg. LLF: 95.68572425898998
Iteration: 9, Func. Count: 70, Neg. LLF: 95.68260131705327
Iteration: 10, Func. Count: 77, Neg. LLF: 95.6824483054095
Iteration: 11, Func. Count: 84, Neg. LLF: 95.68243382189009
Iteration: 12, Func. Count: 91, Neg. LLF: 95.68243297364621
Optimization terminated successfully (Exit mode 0)
Current function value: 95.68243297364621
Iterations: 12
Function evaluations: 91
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 116.47007171781098
Iteration: 2, Func. Count: 18, Neg. LLF: 2340.6281710555927
Iteration: 3, Func. Count: 28, Neg. LLF: 100.27467273087915
Iteration: 4, Func. Count: 37, Neg. LLF: 96.89986257311001
Iteration: 5, Func. Count: 46, Neg. LLF: 95.85927654500999
Iteration: 6, Func. Count: 54, Neg. LLF: 96.18491065191446
Iteration: 7, Func. Count: 63, Neg. LLF: 95.74211296609458
Iteration: 8, Func. Count: 71, Neg. LLF: 95.70389364627046
Iteration: 9, Func. Count: 79, Neg. LLF: 95.68850487001377
Iteration: 10, Func. Count: 87, Neg. LLF: 95.68295347010498
Iteration: 11, Func. Count: 95, Neg. LLF: 95.68248100148777
Iteration: 12, Func. Count: 103, Neg. LLF: 95.68243467072318
Iteration: 13, Func. Count: 111, Neg. LLF: 95.68243302059003
Iteration: 14, Func. Count: 118, Neg. LLF: 95.68243309015428
Optimization terminated successfully (Exit mode 0)
Current function value: 95.68243302059003
Iterations: 14
Function evaluations: 118
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 112.02673429657224
Iteration: 2, Func. Count: 20, Neg. LLF: 431.7532749069364
Iteration: 3, Func. Count: 30, Neg. LLF: 98.9346701178289
Iteration: 4, Func. Count: 40, Neg. LLF: 96.80361791227456
Iteration: 5, Func. Count: 50, Neg. LLF: 95.82069077030557
Iteration: 6, Func. Count: 59, Neg. LLF: 95.69130958313244
Iteration: 7, Func. Count: 68, Neg. LLF: 97.33248371737328
Iteration: 8, Func. Count: 79, Neg. LLF: 95.68345323293292
Iteration: 9, Func. Count: 88, Neg. LLF: 95.68256830197237
Iteration: 10, Func. Count: 97, Neg. LLF: 95.6824337049825
Iteration: 11, Func. Count: 106, Neg. LLF: 95.68243299489369
Optimization terminated successfully (Exit mode 0)
Current function value: 95.68243299489369
Iterations: 11
Function evaluations: 106
Gradient evaluations: 11
Iteration: 1, Func. Count: 7, Neg. LLF: 116.64476203139883
Iteration: 2, Func. Count: 15, Neg. LLF: 152.34183525890566
Iteration: 3, Func. Count: 22, Neg. LLF: 7319.941460223638
Iteration: 4, Func. Count: 29, Neg. LLF: 113.48817105438097
Iteration: 5, Func. Count: 36, Neg. LLF: 97.07701676339832
Iteration: 6, Func. Count: 42, Neg. LLF: 96.8656824772124
Iteration: 7, Func. Count: 48, Neg. LLF: 96.8357414780033
Iteration: 8, Func. Count: 54, Neg. LLF: 96.83352686503615
Iteration: 9, Func. Count: 60, Neg. LLF: 96.83308616781154
Iteration: 10, Func. Count: 66, Neg. LLF: 96.83305491848883
Iteration: 11, Func. Count: 72, Neg. LLF: 96.83305374418725
Iteration: 12, Func. Count: 77, Neg. LLF: 96.83305372954811
Optimization terminated successfully (Exit mode 0)
Current function value: 96.83305374418725
Iterations: 12
Function evaluations: 77
Gradient evaluations: 12
Iteration: 1, Func. Count: 8, Neg. LLF: 103.03255899857282
Iteration: 2, Func. Count: 17, Neg. LLF: 103.12745002264934
Iteration: 3, Func. Count: 25, Neg. LLF: 103.09765591342938
Iteration: 4, Func. Count: 33, Neg. LLF: 97.34919229980966
Iteration: 5, Func. Count: 41, Neg. LLF: 95.91002623569872
Iteration: 6, Func. Count: 48, Neg. LLF: 95.88256232468171
Iteration: 7, Func. Count: 56, Neg. LLF: 96.76387154807432
Iteration: 8, Func. Count: 64, Neg. LLF: 95.82642459047213
Iteration: 9, Func. Count: 71, Neg. LLF: 95.82624089223143
Iteration: 10, Func. Count: 78, Neg. LLF: 95.82623216646726
Iteration: 11, Func. Count: 84, Neg. LLF: 95.82623216649097
Optimization terminated successfully (Exit mode 0)
Current function value: 95.82623216646726
Iterations: 11
Function evaluations: 84
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 101.57992264189802
Iteration: 2, Func. Count: 18, Neg. LLF: 101.773579922711
Iteration: 3, Func. Count: 27, Neg. LLF: 143.4632599879879
Iteration: 4, Func. Count: 37, Neg. LLF: 98.99282198961103
Iteration: 5, Func. Count: 46, Neg. LLF: 95.69657982556907
Iteration: 6, Func. Count: 54, Neg. LLF: 95.66301967003774
Iteration: 7, Func. Count: 62, Neg. LLF: 95.70892691251736
Iteration: 8, Func. Count: 71, Neg. LLF: 95.65044227621995
Iteration: 9, Func. Count: 79, Neg. LLF: 95.65031592300764
Iteration: 10, Func. Count: 87, Neg. LLF: 95.65029096434088
Iteration: 11, Func. Count: 94, Neg. LLF: 95.65029096428249
Optimization terminated successfully (Exit mode 0)
Current function value: 95.65029096434088
Iterations: 11
Function evaluations: 94
Gradient evaluations: 11
Iteration: 1, Func. Count: 10, Neg. LLF: 112.8230121214808
Iteration: 2, Func. Count: 20, Neg. LLF: 7208.319141943577
Iteration: 3, Func. Count: 31, Neg. LLF: 99.38786706036139
Iteration: 4, Func. Count: 41, Neg. LLF: 97.62155005075526
Iteration: 5, Func. Count: 51, Neg. LLF: 95.74826407250649
Iteration: 6, Func. Count: 60, Neg. LLF: 95.81566390222612
Iteration: 7, Func. Count: 70, Neg. LLF: 95.66242878226468
Iteration: 8, Func. Count: 79, Neg. LLF: 95.686996510162
Iteration: 9, Func. Count: 89, Neg. LLF: 95.65034918790526
Iteration: 10, Func. Count: 98, Neg. LLF: 95.65029454839339
Iteration: 11, Func. Count: 107, Neg. LLF: 95.65029120896119
Iteration: 12, Func. Count: 116, Neg. LLF: 95.65029048254225
Optimization terminated successfully (Exit mode 0)
Current function value: 95.65029048254225
Iterations: 12
Function evaluations: 116
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 109.37847717161215
Iteration: 2, Func. Count: 22, Neg. LLF: 243.66066426935114
Iteration: 3, Func. Count: 33, Neg. LLF: 98.7914546023261
Iteration: 4, Func. Count: 44, Neg. LLF: 97.28152057714665
Iteration: 5, Func. Count: 55, Neg. LLF: 95.95280608162153
Iteration: 6, Func. Count: 65, Neg. LLF: 95.96562398323093
Iteration: 7, Func. Count: 76, Neg. LLF: 95.88434855268038
Iteration: 8, Func. Count: 87, Neg. LLF: 95.65274616232944
Iteration: 9, Func. Count: 97, Neg. LLF: 95.65073252602782
Iteration: 10, Func. Count: 107, Neg. LLF: 95.65030958106566
Iteration: 11, Func. Count: 117, Neg. LLF: 95.65029063387313
Iteration: 12, Func. Count: 126, Neg. LLF: 95.65029066841757
Optimization terminated successfully (Exit mode 0)
Current function value: 95.65029063387313
Iterations: 12
Function evaluations: 126
Gradient evaluations: 12
Iteration: 1, Func. Count: 8, Neg. LLF: 109.63435612129864
Iteration: 2, Func. Count: 17, Neg. LLF: 185.60150663524382
Iteration: 3, Func. Count: 25, Neg. LLF: 139.9740595581967
Iteration: 4, Func. Count: 33, Neg. LLF: 127.83519351731667
Iteration: 5, Func. Count: 41, Neg. LLF: 96.0902575516672
Iteration: 6, Func. Count: 48, Neg. LLF: 96.07056622087931
Iteration: 7, Func. Count: 56, Neg. LLF: 96.36379203695726
Iteration: 8, Func. Count: 64, Neg. LLF: 95.92784809900805
Iteration: 9, Func. Count: 71, Neg. LLF: 95.92496550831558
Iteration: 10, Func. Count: 78, Neg. LLF: 95.92469420150478
Iteration: 11, Func. Count: 85, Neg. LLF: 95.92466197324772
Iteration: 12, Func. Count: 92, Neg. LLF: 95.92466101221704
Optimization terminated successfully (Exit mode 0)
Current function value: 95.92466101221704
Iterations: 12
Function evaluations: 92
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 127.55309897094662
Iteration: 2, Func. Count: 18, Neg. LLF: 193.11050911688406
Iteration: 3, Func. Count: 28, Neg. LLF: 107.93901807404437
Iteration: 4, Func. Count: 38, Neg. LLF: 96.06351543986803
Iteration: 5, Func. Count: 47, Neg. LLF: 98.83880629424232
Iteration: 6, Func. Count: 56, Neg. LLF: 95.48457178193674
Iteration: 7, Func. Count: 64, Neg. LLF: 95.43252660863189
Iteration: 8, Func. Count: 72, Neg. LLF: 95.40636267086481
Iteration: 9, Func. Count: 80, Neg. LLF: 95.4007951202111
Iteration: 10, Func. Count: 88, Neg. LLF: 95.39882898549052
Iteration: 11, Func. Count: 96, Neg. LLF: 95.3987485025864
Iteration: 12, Func. Count: 104, Neg. LLF: 95.39874660745171
Iteration: 13, Func. Count: 111, Neg. LLF: 95.39874660747058
Optimization terminated successfully (Exit mode 0)
Current function value: 95.39874660745171
Iterations: 13
Function evaluations: 111
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 371.2126464490192
Iteration: 2, Func. Count: 20, Neg. LLF: 98.57304871740786
Iteration: 3, Func. Count: 32, Neg. LLF: 111.2266945420307
Iteration: 4, Func. Count: 42, Neg. LLF: 95.71851034455838
Iteration: 5, Func. Count: 52, Neg. LLF: 94.56139485582362
Iteration: 6, Func. Count: 61, Neg. LLF: 94.83802059391152
Iteration: 7, Func. Count: 71, Neg. LLF: 94.43124771127157
Iteration: 8, Func. Count: 81, Neg. LLF: 94.02125456046812
Iteration: 9, Func. Count: 90, Neg. LLF: 94.39190181689179
Iteration: 10, Func. Count: 101, Neg. LLF: 93.99586082202372
Iteration: 11, Func. Count: 110, Neg. LLF: 93.99305843579745
Iteration: 12, Func. Count: 119, Neg. LLF: 93.99263435739326
Iteration: 13, Func. Count: 128, Neg. LLF: 93.99253303440705
Iteration: 14, Func. Count: 137, Neg. LLF: 93.99252241447434
Iteration: 15, Func. Count: 145, Neg. LLF: 93.99252241458389
Optimization terminated successfully (Exit mode 0)
Current function value: 93.99252241447434
Iterations: 15
Function evaluations: 145
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 122.3118071133527
Iteration: 2, Func. Count: 22, Neg. LLF: 100.33881843063814
Iteration: 3, Func. Count: 33, Neg. LLF: 103.13630676344688
Iteration: 4, Func. Count: 44, Neg. LLF: 98.41231527681529
Iteration: 5, Func. Count: 55, Neg. LLF: 96.4261877125946
Iteration: 6, Func. Count: 66, Neg. LLF: 95.12022350468445
Iteration: 7, Func. Count: 77, Neg. LLF: 94.18791907485624
Iteration: 8, Func. Count: 87, Neg. LLF: 94.92614772737974
Iteration: 9, Func. Count: 98, Neg. LLF: 94.12073499637313
Iteration: 10, Func. Count: 109, Neg. LLF: 94.20526831303971
Iteration: 11, Func. Count: 120, Neg. LLF: 94.03159263789581
Iteration: 12, Func. Count: 131, Neg. LLF: 93.99491758119046
Iteration: 13, Func. Count: 141, Neg. LLF: 93.99312130751632
Iteration: 14, Func. Count: 151, Neg. LLF: 93.99264030984878
Iteration: 15, Func. Count: 161, Neg. LLF: 93.99252391504832
Iteration: 16, Func. Count: 171, Neg. LLF: 93.9925221383473
Iteration: 17, Func. Count: 180, Neg. LLF: 93.99252221992025
Optimization terminated successfully (Exit mode 0)
Current function value: 93.9925221383473
Iterations: 17
Function evaluations: 180
Gradient evaluations: 17
Iteration: 1, Func. Count: 12, Neg. LLF: 116.38724638498188
Iteration: 2, Func. Count: 24, Neg. LLF: 97.4685797478082
Iteration: 3, Func. Count: 36, Neg. LLF: 112.9484392818863
Iteration: 4, Func. Count: 48, Neg. LLF: 94.9695611527323
Iteration: 5, Func. Count: 60, Neg. LLF: 107.9701596423197
Iteration: 6, Func. Count: 72, Neg. LLF: 95.14474788754893
Iteration: 7, Func. Count: 84, Neg. LLF: 94.22901058859729
Iteration: 8, Func. Count: 96, Neg. LLF: 93.81529045767641
Iteration: 9, Func. Count: 107, Neg. LLF: 93.79038020417903
Iteration: 10, Func. Count: 118, Neg. LLF: 93.77221338287049
Iteration: 11, Func. Count: 129, Neg. LLF: 93.76605330779991
Iteration: 12, Func. Count: 140, Neg. LLF: 93.76577019163486
Iteration: 13, Func. Count: 151, Neg. LLF: 93.76576177457402
Iteration: 14, Func. Count: 161, Neg. LLF: 93.76576177458915
Optimization terminated successfully (Exit mode 0)
Current function value: 93.76576177457402
Iterations: 14
Function evaluations: 161
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 109.18734045554274
Iteration: 2, Func. Count: 19, Neg. LLF: 217.52354510147885
Iteration: 3, Func. Count: 28, Neg. LLF: 232.95967197233838
Iteration: 4, Func. Count: 37, Neg. LLF: 98.38537265452415
Iteration: 5, Func. Count: 46, Neg. LLF: 96.41239237101055
Iteration: 6, Func. Count: 55, Neg. LLF: 96.15072157305329
Iteration: 7, Func. Count: 64, Neg. LLF: 95.93858416567775
Iteration: 8, Func. Count: 72, Neg. LLF: 95.92799207545184
Iteration: 9, Func. Count: 80, Neg. LLF: 96.09367432840806
Iteration: 10, Func. Count: 90, Neg. LLF: 95.92566424810109
Iteration: 11, Func. Count: 98, Neg. LLF: 95.92480723959343
Iteration: 12, Func. Count: 106, Neg. LLF: 95.92466406747509
Iteration: 13, Func. Count: 114, Neg. LLF: 95.92466103524805
Iteration: 14, Func. Count: 121, Neg. LLF: 95.92466107516316
Optimization terminated successfully (Exit mode 0)
Current function value: 95.92466103524805
Iterations: 14
Function evaluations: 121
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 120.31163373728202
Iteration: 2, Func. Count: 20, Neg. LLF: 175.6137172361133
Iteration: 3, Func. Count: 31, Neg. LLF: 114.26908348746034
Iteration: 4, Func. Count: 42, Neg. LLF: 96.70880565661938
Iteration: 5, Func. Count: 52, Neg. LLF: 96.43436092473925
Iteration: 6, Func. Count: 62, Neg. LLF: 95.62901651437986
Iteration: 7, Func. Count: 72, Neg. LLF: 95.41234597814157
Iteration: 8, Func. Count: 81, Neg. LLF: 95.40030144469371
Iteration: 9, Func. Count: 90, Neg. LLF: 95.39877641437782
Iteration: 10, Func. Count: 99, Neg. LLF: 95.39874754285884
Iteration: 11, Func. Count: 108, Neg. LLF: 95.39874656541306
Optimization terminated successfully (Exit mode 0)
Current function value: 95.39874656541306
Iterations: 11
Function evaluations: 108
Gradient evaluations: 11
Iteration: 1, Func. Count: 11, Neg. LLF: 309.43359366066164
Iteration: 2, Func. Count: 22, Neg. LLF: 101.89977413917862
Iteration: 3, Func. Count: 35, Neg. LLF: 102.38704449449693
Iteration: 4, Func. Count: 46, Neg. LLF: 95.58522527966716
Iteration: 5, Func. Count: 57, Neg. LLF: 94.69469485260038
Iteration: 6, Func. Count: 67, Neg. LLF: 95.99910471765205
Iteration: 7, Func. Count: 78, Neg. LLF: 94.30383430625884
Iteration: 8, Func. Count: 88, Neg. LLF: 94.74426979036913
Iteration: 9, Func. Count: 99, Neg. LLF: 94.74972010927037
Iteration: 10, Func. Count: 110, Neg. LLF: 94.00658564933453
Iteration: 11, Func. Count: 120, Neg. LLF: 93.99527264850795
Iteration: 12, Func. Count: 130, Neg. LLF: 93.99322800738031
Iteration: 13, Func. Count: 140, Neg. LLF: 93.99280110890433
Iteration: 14, Func. Count: 150, Neg. LLF: 93.99255375025112
Iteration: 15, Func. Count: 160, Neg. LLF: 93.99252269938482
Iteration: 16, Func. Count: 170, Neg. LLF: 93.99252212326444
Optimization terminated successfully (Exit mode 0)
Current function value: 93.99252212326444
Iterations: 16
Function evaluations: 170
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 123.23826161075037
Iteration: 2, Func. Count: 24, Neg. LLF: 98.70497709661205
Iteration: 3, Func. Count: 36, Neg. LLF: 101.146260469327
Iteration: 4, Func. Count: 48, Neg. LLF: 102.03703353859639
Iteration: 5, Func. Count: 60, Neg. LLF: 100.6350747760864
Iteration: 6, Func. Count: 72, Neg. LLF: 95.29146446660842
Iteration: 7, Func. Count: 84, Neg. LLF: 94.18223487104918
Iteration: 8, Func. Count: 95, Neg. LLF: 94.49333612813908
Iteration: 9, Func. Count: 107, Neg. LLF: 94.01992951646133
Iteration: 10, Func. Count: 118, Neg. LLF: 94.0023772861596
Iteration: 11, Func. Count: 129, Neg. LLF: 93.9956891922413
Iteration: 12, Func. Count: 140, Neg. LLF: 93.99275251652024
Iteration: 13, Func. Count: 151, Neg. LLF: 93.99258664582067
Iteration: 14, Func. Count: 162, Neg. LLF: 93.99252979046283
Iteration: 15, Func. Count: 173, Neg. LLF: 93.9925234507857
Iteration: 16, Func. Count: 184, Neg. LLF: 93.99252214033393
Iteration: 17, Func. Count: 194, Neg. LLF: 93.99252222187054
Optimization terminated successfully (Exit mode 0)
Current function value: 93.99252214033393
Iterations: 17
Function evaluations: 194
Gradient evaluations: 17
Iteration: 1, Func. Count: 13, Neg. LLF: 115.39875031502567
Iteration: 2, Func. Count: 26, Neg. LLF: 94.97167907227019
Iteration: 3, Func. Count: 38, Neg. LLF: 129.89543565605513
Iteration: 4, Func. Count: 51, Neg. LLF: 160.40449035379584
Iteration: 5, Func. Count: 66, Neg. LLF: 97.10867626213411
Iteration: 6, Func. Count: 79, Neg. LLF: 95.23498037497944
Iteration: 7, Func. Count: 92, Neg. LLF: 94.04330517455287
Iteration: 8, Func. Count: 105, Neg. LLF: 93.8164631777645
Iteration: 9, Func. Count: 117, Neg. LLF: 93.78561965328437
Iteration: 10, Func. Count: 129, Neg. LLF: 93.76884636433003
Iteration: 11, Func. Count: 141, Neg. LLF: 93.76592395549913
Iteration: 12, Func. Count: 153, Neg. LLF: 93.76579333520652
Iteration: 13, Func. Count: 165, Neg. LLF: 93.7657686275944
Iteration: 14, Func. Count: 177, Neg. LLF: 93.76576261433098
Iteration: 15, Func. Count: 189, Neg. LLF: 93.76576172720189
Optimization terminated successfully (Exit mode 0)
Current function value: 93.76576172720189
Iterations: 15
Function evaluations: 189
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 108.6716012527407
Iteration: 2, Func. Count: 21, Neg. LLF: 137.82676747860802
Iteration: 3, Func. Count: 31, Neg. LLF: 4758589.264655668
Iteration: 4, Func. Count: 41, Neg. LLF: 537.432017234897
Iteration: 5, Func. Count: 51, Neg. LLF: 252.39963969989674
Iteration: 6, Func. Count: 61, Neg. LLF: 103.84309786081545
Iteration: 7, Func. Count: 71, Neg. LLF: 95.04716298028472
Iteration: 8, Func. Count: 80, Neg. LLF: 111.42653979077384
Iteration: 9, Func. Count: 90, Neg. LLF: 96.20566183490273
Iteration: 10, Func. Count: 100, Neg. LLF: 108.68907087787838
Iteration: 11, Func. Count: 111, Neg. LLF: 94.89509711685676
Iteration: 12, Func. Count: 120, Neg. LLF: 94.88060055935019
Iteration: 13, Func. Count: 129, Neg. LLF: 94.87436215729144
Iteration: 14, Func. Count: 138, Neg. LLF: 94.86983503793202
Iteration: 15, Func. Count: 147, Neg. LLF: 94.868297476905
Iteration: 16, Func. Count: 156, Neg. LLF: 94.86821253734996
Iteration: 17, Func. Count: 165, Neg. LLF: 94.86820265149262
Iteration: 18, Func. Count: 174, Neg. LLF: 94.86820042555082
Iteration: 19, Func. Count: 182, Neg. LLF: 94.86820042556502
Optimization terminated successfully (Exit mode 0)
Current function value: 94.86820042555082
Iterations: 19
Function evaluations: 182
Gradient evaluations: 19
Iteration: 1, Func. Count: 11, Neg. LLF: 126.87744086472148
Iteration: 2, Func. Count: 22, Neg. LLF: 344.46696340644087
Iteration: 3, Func. Count: 34, Neg. LLF: 118.73573007784823
Iteration: 4, Func. Count: 46, Neg. LLF: 96.94069219868672
Iteration: 5, Func. Count: 57, Neg. LLF: 96.94350354288952
Iteration: 6, Func. Count: 68, Neg. LLF: 96.68754301312775
Iteration: 7, Func. Count: 79, Neg. LLF: 95.34323559985009
Iteration: 8, Func. Count: 89, Neg. LLF: 95.31099279062856
Iteration: 9, Func. Count: 99, Neg. LLF: 95.17951101904008
Iteration: 10, Func. Count: 109, Neg. LLF: 95.18329101215365
Iteration: 11, Func. Count: 120, Neg. LLF: 95.0123950178535
Iteration: 12, Func. Count: 130, Neg. LLF: 94.88175445616616
Iteration: 13, Func. Count: 140, Neg. LLF: 94.86890158356253
Iteration: 14, Func. Count: 150, Neg. LLF: 94.8684889217046
Iteration: 15, Func. Count: 160, Neg. LLF: 94.86823574719256
Iteration: 16, Func. Count: 170, Neg. LLF: 94.86820417514092
Iteration: 17, Func. Count: 180, Neg. LLF: 94.86820098390184
Iteration: 18, Func. Count: 189, Neg. LLF: 94.86820104000148
Optimization terminated successfully (Exit mode 0)
Current function value: 94.86820098390184
Iterations: 18
Function evaluations: 189
Gradient evaluations: 18
Iteration: 1, Func. Count: 12, Neg. LLF: 151.65772574354574
Iteration: 2, Func. Count: 24, Neg. LLF: 113.47500128869507
Iteration: 3, Func. Count: 36, Neg. LLF: 106.85535968731767
Iteration: 4, Func. Count: 48, Neg. LLF: 95.66131566759708
Iteration: 5, Func. Count: 60, Neg. LLF: 94.29648549690751
Iteration: 6, Func. Count: 71, Neg. LLF: 97.9163318026044
Iteration: 7, Func. Count: 83, Neg. LLF: 94.09886596549755
Iteration: 8, Func. Count: 94, Neg. LLF: 94.1976086978893
Iteration: 9, Func. Count: 106, Neg. LLF: 94.06518030336537
Iteration: 10, Func. Count: 118, Neg. LLF: 94.00212981394823
Iteration: 11, Func. Count: 129, Neg. LLF: 93.99587572531148
Iteration: 12, Func. Count: 140, Neg. LLF: 94.02992797576243
Iteration: 13, Func. Count: 152, Neg. LLF: 93.99289553423685
Iteration: 14, Func. Count: 163, Neg. LLF: 93.99256715191544
Iteration: 15, Func. Count: 174, Neg. LLF: 93.99252221013406
Iteration: 16, Func. Count: 184, Neg. LLF: 93.99252221009857
Optimization terminated successfully (Exit mode 0)
Current function value: 93.99252221013406
Iterations: 16
Function evaluations: 184
Gradient evaluations: 16
Iteration: 1, Func. Count: 13, Neg. LLF: 127.77560168650746
Iteration: 2, Func. Count: 26, Neg. LLF: 193.78993458837377
Iteration: 3, Func. Count: 39, Neg. LLF: 98.81161923578098
Iteration: 4, Func. Count: 52, Neg. LLF: 95.70783404924377
Iteration: 5, Func. Count: 65, Neg. LLF: 94.12752247851905
Iteration: 6, Func. Count: 77, Neg. LLF: 98.54197122550148
Iteration: 7, Func. Count: 90, Neg. LLF: 94.02777379725492
Iteration: 8, Func. Count: 102, Neg. LLF: 94.05046145338522
Iteration: 9, Func. Count: 115, Neg. LLF: 94.1375331922936
Iteration: 10, Func. Count: 128, Neg. LLF: 93.99441150569649
Iteration: 11, Func. Count: 140, Neg. LLF: 93.99282794834866
Iteration: 12, Func. Count: 152, Neg. LLF: 93.99296735762364
Iteration: 13, Func. Count: 165, Neg. LLF: 93.9925599180906
Iteration: 14, Func. Count: 177, Neg. LLF: 93.99252238103176
Iteration: 15, Func. Count: 188, Neg. LLF: 93.99252246253235
Optimization terminated successfully (Exit mode 0)
Current function value: 93.99252238103176
Iterations: 15
Function evaluations: 188
Gradient evaluations: 15
Iteration: 1, Func. Count: 14, Neg. LLF: 124.7754886718795
Iteration: 2, Func. Count: 28, Neg. LLF: 390.3289561475684
Iteration: 3, Func. Count: 42, Neg. LLF: 94.9691138883077
Iteration: 4, Func. Count: 55, Neg. LLF: 95.13912594692586
Iteration: 5, Func. Count: 69, Neg. LLF: 122.81607890260162
Iteration: 6, Func. Count: 83, Neg. LLF: 94.18819797693611
Iteration: 7, Func. Count: 97, Neg. LLF: 93.91765982184747
Iteration: 8, Func. Count: 110, Neg. LLF: 93.97962415151528
Iteration: 9, Func. Count: 124, Neg. LLF: 93.92345161215579
Iteration: 10, Func. Count: 138, Neg. LLF: 93.78490514783203
Iteration: 11, Func. Count: 151, Neg. LLF: 93.76859441852785
Iteration: 12, Func. Count: 164, Neg. LLF: 93.76610375705039
Iteration: 13, Func. Count: 177, Neg. LLF: 93.76582650139075
Iteration: 14, Func. Count: 190, Neg. LLF: 93.76576856306409
Iteration: 15, Func. Count: 203, Neg. LLF: 93.76576192625593
Iteration: 16, Func. Count: 215, Neg. LLF: 93.76576192627964
Optimization terminated successfully (Exit mode 0)
Current function value: 93.76576192625593
Iterations: 16
Function evaluations: 215
Gradient evaluations: 16
Iteration: 1, Func. Count: 7, Neg. LLF: 109.69963847033226
Iteration: 2, Func. Count: 15, Neg. LLF: 181.33933572265332
Iteration: 3, Func. Count: 22, Neg. LLF: 104.0909693767857
Iteration: 4, Func. Count: 29, Neg. LLF: 97.98625868635365
Iteration: 5, Func. Count: 36, Neg. LLF: 108.00797715502529
Iteration: 6, Func. Count: 43, Neg. LLF: 96.39313979381862
Iteration: 7, Func. Count: 49, Neg. LLF: 96.3896322380378
Iteration: 8, Func. Count: 55, Neg. LLF: 96.38631356468417
Iteration: 9, Func. Count: 61, Neg. LLF: 96.38632361397157
Iteration: 10, Func. Count: 68, Neg. LLF: 96.38624878301323
Iteration: 11, Func. Count: 74, Neg. LLF: 96.3862435058284
Iteration: 12, Func. Count: 79, Neg. LLF: 96.3862435058215
Optimization terminated successfully (Exit mode 0)
Current function value: 96.3862435058284
Iterations: 12
Function evaluations: 79
Gradient evaluations: 12
Iteration: 1, Func. Count: 8, Neg. LLF: 102.97362325558473
Iteration: 2, Func. Count: 16, Neg. LLF: 105.01617487614155
Iteration: 3, Func. Count: 24, Neg. LLF: 105.92815919522629
Iteration: 4, Func. Count: 32, Neg. LLF: 110.45024775812696
Iteration: 5, Func. Count: 40, Neg. LLF: 95.93780973438139
Iteration: 6, Func. Count: 48, Neg. LLF: 95.49842356958924
Iteration: 7, Func. Count: 55, Neg. LLF: 95.45885065808692
Iteration: 8, Func. Count: 62, Neg. LLF: 95.45558452531884
Iteration: 9, Func. Count: 69, Neg. LLF: 95.45127004232408
Iteration: 10, Func. Count: 76, Neg. LLF: 95.45108754995799
Iteration: 11, Func. Count: 83, Neg. LLF: 95.45107983580733
Iteration: 12, Func. Count: 89, Neg. LLF: 95.45107983576852
Optimization terminated successfully (Exit mode 0)
Current function value: 95.45107983580733
Iterations: 12
Function evaluations: 89
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 201.8874615620853
Iteration: 2, Func. Count: 18, Neg. LLF: 6701.973302097159
Iteration: 3, Func. Count: 28, Neg. LLF: 101.67314880514542
Iteration: 4, Func. Count: 37, Neg. LLF: 99.60850253806458
Iteration: 5, Func. Count: 46, Neg. LLF: 96.13743877648234
Iteration: 6, Func. Count: 55, Neg. LLF: 95.61476158693971
Iteration: 7, Func. Count: 63, Neg. LLF: 96.68308455489677
Iteration: 8, Func. Count: 72, Neg. LLF: 95.49719569899446
Iteration: 9, Func. Count: 80, Neg. LLF: 95.45454438502158
Iteration: 10, Func. Count: 88, Neg. LLF: 95.45131917476529
Iteration: 11, Func. Count: 96, Neg. LLF: 95.45108840179724
Iteration: 12, Func. Count: 104, Neg. LLF: 95.4510799737432
Iteration: 13, Func. Count: 111, Neg. LLF: 95.45107999855058
Optimization terminated successfully (Exit mode 0)
Current function value: 95.4510799737432
Iterations: 13
Function evaluations: 111
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 9526.483425313805
Iteration: 2, Func. Count: 20, Neg. LLF: 49538.28804474483
Iteration: 3, Func. Count: 31, Neg. LLF: 99.27564123062446
Iteration: 4, Func. Count: 41, Neg. LLF: 101.23942164650198
Iteration: 5, Func. Count: 51, Neg. LLF: 95.82805874771601
Iteration: 6, Func. Count: 60, Neg. LLF: 96.112612746988
Iteration: 7, Func. Count: 70, Neg. LLF: 95.56917509845611
Iteration: 8, Func. Count: 80, Neg. LLF: 95.452073575646
Iteration: 9, Func. Count: 89, Neg. LLF: 95.45124051369291
Iteration: 10, Func. Count: 98, Neg. LLF: 95.45110351537164
Iteration: 11, Func. Count: 107, Neg. LLF: 95.45108043652795
Iteration: 12, Func. Count: 116, Neg. LLF: 95.45107972410138
Optimization terminated successfully (Exit mode 0)
Current function value: 95.45107972410138
Iterations: 12
Function evaluations: 116
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 2330.366484150574
Iteration: 2, Func. Count: 22, Neg. LLF: 1681.761754146203
Iteration: 3, Func. Count: 34, Neg. LLF: 107.05458282431782
Iteration: 4, Func. Count: 45, Neg. LLF: 99.74961002125261
Iteration: 5, Func. Count: 56, Neg. LLF: 95.9561553421388
Iteration: 6, Func. Count: 67, Neg. LLF: 95.4989400246034
Iteration: 7, Func. Count: 77, Neg. LLF: 95.45148032630826
Iteration: 8, Func. Count: 87, Neg. LLF: 95.45112616530726
Iteration: 9, Func. Count: 97, Neg. LLF: 95.45108681719127
Iteration: 10, Func. Count: 107, Neg. LLF: 95.45107988082593
Iteration: 11, Func. Count: 116, Neg. LLF: 95.45107990563298
Optimization terminated successfully (Exit mode 0)
Current function value: 95.45107988082593
Iterations: 11
Function evaluations: 116
Gradient evaluations: 11
Iteration: 1, Func. Count: 8, Neg. LLF: 109.55527405398952
Iteration: 2, Func. Count: 17, Neg. LLF: 133.4182760979676
Iteration: 3, Func. Count: 25, Neg. LLF: 323.21406900049493
Iteration: 4, Func. Count: 33, Neg. LLF: 97.98376218688072
Iteration: 5, Func. Count: 41, Neg. LLF: 101.2720496439744
Iteration: 6, Func. Count: 49, Neg. LLF: 96.58753718218252
Iteration: 7, Func. Count: 57, Neg. LLF: 96.5330014818265
Iteration: 8, Func. Count: 65, Neg. LLF: 96.34265059977187
Iteration: 9, Func. Count: 72, Neg. LLF: 96.3375727292321
Iteration: 10, Func. Count: 79, Neg. LLF: 96.3373550364435
Iteration: 11, Func. Count: 86, Neg. LLF: 96.33735264832819
Iteration: 12, Func. Count: 92, Neg. LLF: 96.33735261329257
Optimization terminated successfully (Exit mode 0)
Current function value: 96.33735264832819
Iterations: 12
Function evaluations: 92
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 103.58031272870565
Iteration: 2, Func. Count: 18, Neg. LLF: 105.51742591607093
Iteration: 3, Func. Count: 27, Neg. LLF: 103.59318507681967
Iteration: 4, Func. Count: 36, Neg. LLF: 116.83768162257262
Iteration: 5, Func. Count: 45, Neg. LLF: 95.84133823738838
Iteration: 6, Func. Count: 54, Neg. LLF: 95.50186574313214
Iteration: 7, Func. Count: 62, Neg. LLF: 95.45326169963222
Iteration: 8, Func. Count: 70, Neg. LLF: 95.45145917183768
Iteration: 9, Func. Count: 78, Neg. LLF: 95.45139682462307
Iteration: 10, Func. Count: 87, Neg. LLF: 95.45108050278084
Iteration: 11, Func. Count: 95, Neg. LLF: 95.4510797684106
Optimization terminated successfully (Exit mode 0)
Current function value: 95.4510797684106
Iterations: 11
Function evaluations: 95
Gradient evaluations: 11
Iteration: 1, Func. Count: 10, Neg. LLF: 176.68234340447287
Iteration: 2, Func. Count: 20, Neg. LLF: 10333.86489092566
Iteration: 3, Func. Count: 31, Neg. LLF: 100.56799834786257
Iteration: 4, Func. Count: 41, Neg. LLF: 108.28685188588076
Iteration: 5, Func. Count: 51, Neg. LLF: 96.77100710244898
Iteration: 6, Func. Count: 61, Neg. LLF: 95.4804936797952
Iteration: 7, Func. Count: 70, Neg. LLF: 95.45539058352416
Iteration: 8, Func. Count: 79, Neg. LLF: 95.50107269207294
Iteration: 9, Func. Count: 89, Neg. LLF: 95.45121331678983
Iteration: 10, Func. Count: 98, Neg. LLF: 95.45110588428065
Iteration: 11, Func. Count: 107, Neg. LLF: 95.45107971657832
Iteration: 12, Func. Count: 115, Neg. LLF: 95.4510797413569
Optimization terminated successfully (Exit mode 0)
Current function value: 95.45107971657832
Iterations: 12
Function evaluations: 115
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 435.52156226319426
Iteration: 2, Func. Count: 22, Neg. LLF: 132378.84071159555
Iteration: 3, Func. Count: 34, Neg. LLF: 101.4371471198046
Iteration: 4, Func. Count: 45, Neg. LLF: 98.72542305792042
Iteration: 5, Func. Count: 56, Neg. LLF: 96.15720926145883
Iteration: 6, Func. Count: 67, Neg. LLF: 95.6294625250179
Iteration: 7, Func. Count: 77, Neg. LLF: 96.93988160945078
Iteration: 8, Func. Count: 88, Neg. LLF: 95.54024200573899
Iteration: 9, Func. Count: 98, Neg. LLF: 95.49166961483702
Iteration: 10, Func. Count: 108, Neg. LLF: 95.48185314443333
Iteration: 11, Func. Count: 118, Neg. LLF: 95.46290325953039
Iteration: 12, Func. Count: 128, Neg. LLF: 95.37604722467063
Iteration: 13, Func. Count: 138, Neg. LLF: 97.835792156814
Iteration: 14, Func. Count: 150, Neg. LLF: 95.34381028570597
Iteration: 15, Func. Count: 160, Neg. LLF: 95.33927271134695
Iteration: 16, Func. Count: 170, Neg. LLF: 95.33742653319754
Iteration: 17, Func. Count: 180, Neg. LLF: 95.33729711625584
Iteration: 18, Func. Count: 190, Neg. LLF: 95.33729521702409
Iteration: 19, Func. Count: 200, Neg. LLF: 95.33729461513444
Optimization terminated successfully (Exit mode 0)
Current function value: 95.33729461513444
Iterations: 19
Function evaluations: 200
Gradient evaluations: 19
Iteration: 1, Func. Count: 12, Neg. LLF: 626.0632664636532
Iteration: 2, Func. Count: 24, Neg. LLF: 385.97835702153185
Iteration: 3, Func. Count: 37, Neg. LLF: 107.55198791102946
Iteration: 4, Func. Count: 49, Neg. LLF: 100.16575421957758
Iteration: 5, Func. Count: 61, Neg. LLF: 96.95247624389857
Iteration: 6, Func. Count: 73, Neg. LLF: 95.46687492538487
Iteration: 7, Func. Count: 84, Neg. LLF: 95.45514344403773
Iteration: 8, Func. Count: 95, Neg. LLF: 95.46151638819863
Iteration: 9, Func. Count: 107, Neg. LLF: 95.4511662182254
Iteration: 10, Func. Count: 118, Neg. LLF: 95.4510937759058
Iteration: 11, Func. Count: 129, Neg. LLF: 95.45108047489822
Iteration: 12, Func. Count: 140, Neg. LLF: 95.45107971370084
Optimization terminated successfully (Exit mode 0)
Current function value: 95.45107971370084
Iterations: 12
Function evaluations: 140
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 103.9370306225832
Iteration: 2, Func. Count: 19, Neg. LLF: 102.37581499570149
Iteration: 3, Func. Count: 28, Neg. LLF: 5254671.40083919
Iteration: 4, Func. Count: 37, Neg. LLF: 99.82708061019592
Iteration: 5, Func. Count: 46, Neg. LLF: 96.18867318934085
Iteration: 6, Func. Count: 54, Neg. LLF: 96.64599536937436
Iteration: 7, Func. Count: 63, Neg. LLF: 96.13921461536818
Iteration: 8, Func. Count: 72, Neg. LLF: 96.58671930201
Iteration: 9, Func. Count: 82, Neg. LLF: 95.92656759158693
Iteration: 10, Func. Count: 90, Neg. LLF: 95.92484813274054
Iteration: 11, Func. Count: 98, Neg. LLF: 95.92466597765879
Iteration: 12, Func. Count: 106, Neg. LLF: 95.92466197672833
Iteration: 13, Func. Count: 114, Neg. LLF: 95.92466100363143
Optimization terminated successfully (Exit mode 0)
Current function value: 95.92466100363143
Iterations: 13
Function evaluations: 114
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 142.45422858743814
Iteration: 2, Func. Count: 20, Neg. LLF: 100.81426579202896
Iteration: 3, Func. Count: 31, Neg. LLF: 111.67059013465423
Iteration: 4, Func. Count: 42, Neg. LLF: 95.49379363535418
Iteration: 5, Func. Count: 51, Neg. LLF: 95.70593066649822
Iteration: 6, Func. Count: 61, Neg. LLF: 96.2762917758032
Iteration: 7, Func. Count: 71, Neg. LLF: 95.3262057476535
Iteration: 8, Func. Count: 80, Neg. LLF: 95.48543277753991
Iteration: 9, Func. Count: 90, Neg. LLF: 95.31546579168553
Iteration: 10, Func. Count: 99, Neg. LLF: 95.31405701224914
Iteration: 11, Func. Count: 108, Neg. LLF: 95.31398116321253
Iteration: 12, Func. Count: 117, Neg. LLF: 95.31396983143242
Iteration: 13, Func. Count: 126, Neg. LLF: 95.31396839368382
Iteration: 14, Func. Count: 134, Neg. LLF: 95.31396839363077
Optimization terminated successfully (Exit mode 0)
Current function value: 95.31396839368382
Iterations: 14
Function evaluations: 134
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 31354360.15625364
Iteration: 2, Func. Count: 22, Neg. LLF: 99.6438833067409
Iteration: 3, Func. Count: 34, Neg. LLF: 117.40015714336927
Iteration: 4, Func. Count: 45, Neg. LLF: 95.22314518773659
Iteration: 5, Func. Count: 55, Neg. LLF: 96.84330092471104
Iteration: 6, Func. Count: 66, Neg. LLF: 97.57974711901115
Iteration: 7, Func. Count: 77, Neg. LLF: 94.70266320815377
Iteration: 8, Func. Count: 88, Neg. LLF: 94.45562562447384
Iteration: 9, Func. Count: 99, Neg. LLF: 94.13724352607467
Iteration: 10, Func. Count: 109, Neg. LLF: 94.0108457571972
Iteration: 11, Func. Count: 119, Neg. LLF: 94.0065976557006
Iteration: 12, Func. Count: 129, Neg. LLF: 93.99436719426836
Iteration: 13, Func. Count: 139, Neg. LLF: 93.99305912145128
Iteration: 14, Func. Count: 149, Neg. LLF: 93.99254195951703
Iteration: 15, Func. Count: 159, Neg. LLF: 93.99252304346606
Iteration: 16, Func. Count: 169, Neg. LLF: 93.99252216288299
Optimization terminated successfully (Exit mode 0)
Current function value: 93.99252216288299
Iterations: 16
Function evaluations: 169
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 215.64129608826136
Iteration: 2, Func. Count: 24, Neg. LLF: 105.12830508550145
Iteration: 3, Func. Count: 36, Neg. LLF: 94.99712454174839
Iteration: 4, Func. Count: 47, Neg. LLF: 98.42668517754231
Iteration: 5, Func. Count: 59, Neg. LLF: 104.36555696366285
Iteration: 6, Func. Count: 71, Neg. LLF: 94.31070931813738
Iteration: 7, Func. Count: 82, Neg. LLF: 94.07979996051385
Iteration: 8, Func. Count: 93, Neg. LLF: 94.03656496021006
Iteration: 9, Func. Count: 104, Neg. LLF: 94.07034492576236
Iteration: 10, Func. Count: 116, Neg. LLF: 94.0034402523927
Iteration: 11, Func. Count: 127, Neg. LLF: 93.99737745332891
Iteration: 12, Func. Count: 138, Neg. LLF: 93.99959384495844
Iteration: 13, Func. Count: 150, Neg. LLF: 93.9934745038437
Iteration: 14, Func. Count: 161, Neg. LLF: 93.9927625269288
Iteration: 15, Func. Count: 172, Neg. LLF: 93.9925343154308
Iteration: 16, Func. Count: 183, Neg. LLF: 93.99252328299119
Iteration: 17, Func. Count: 194, Neg. LLF: 93.99252219510385
Iteration: 18, Func. Count: 204, Neg. LLF: 93.99252227666165
Optimization terminated successfully (Exit mode 0)
Current function value: 93.99252219510385
Iterations: 18
Function evaluations: 204
Gradient evaluations: 18
Iteration: 1, Func. Count: 13, Neg. LLF: 192.83760702855534
Iteration: 2, Func. Count: 26, Neg. LLF: 107.57793297350278
Iteration: 3, Func. Count: 39, Neg. LLF: 94.47626209617076
Iteration: 4, Func. Count: 51, Neg. LLF: 99.5165851819586
Iteration: 5, Func. Count: 64, Neg. LLF: 132.1805684985487
Iteration: 6, Func. Count: 77, Neg. LLF: 95.13521722169844
Iteration: 7, Func. Count: 90, Neg. LLF: 93.85672496779611
Iteration: 8, Func. Count: 102, Neg. LLF: 93.79175547820431
Iteration: 9, Func. Count: 114, Neg. LLF: 93.77867552982585
Iteration: 10, Func. Count: 126, Neg. LLF: 93.77101156280145
Iteration: 11, Func. Count: 138, Neg. LLF: 93.76699403260494
Iteration: 12, Func. Count: 150, Neg. LLF: 93.76584048757766
Iteration: 13, Func. Count: 162, Neg. LLF: 93.76577414439662
Iteration: 14, Func. Count: 174, Neg. LLF: 93.76576245143913
Iteration: 15, Func. Count: 186, Neg. LLF: 93.76576171743696
Optimization terminated successfully (Exit mode 0)
Current function value: 93.76576171743696
Iterations: 15
Function evaluations: 186
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 104.89702661045912
Iteration: 2, Func. Count: 21, Neg. LLF: 109.89178345901801
Iteration: 3, Func. Count: 31, Neg. LLF: 2673561.478506356
Iteration: 4, Func. Count: 41, Neg. LLF: 107.37324903877882
Iteration: 5, Func. Count: 51, Neg. LLF: 95.98775086085088
Iteration: 6, Func. Count: 60, Neg. LLF: 96.0371958205285
Iteration: 7, Func. Count: 70, Neg. LLF: 96.84850925948282
Iteration: 8, Func. Count: 80, Neg. LLF: 95.8813508403144
Iteration: 9, Func. Count: 89, Neg. LLF: 95.8755118703734
Iteration: 10, Func. Count: 98, Neg. LLF: 95.8743167759037
Iteration: 11, Func. Count: 107, Neg. LLF: 95.87429148913394
Iteration: 12, Func. Count: 115, Neg. LLF: 95.87429146307325
Optimization terminated successfully (Exit mode 0)
Current function value: 95.87429148913394
Iterations: 12
Function evaluations: 115
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 108.75138974364384
Iteration: 2, Func. Count: 23, Neg. LLF: 128.17225606830655
Iteration: 3, Func. Count: 34, Neg. LLF: 116.19679777796334
Iteration: 4, Func. Count: 45, Neg. LLF: 97.30591100353047
Iteration: 5, Func. Count: 56, Neg. LLF: 95.48787616637503
Iteration: 6, Func. Count: 67, Neg. LLF: 95.27648746394242
Iteration: 7, Func. Count: 78, Neg. LLF: 96.33191520830101
Iteration: 8, Func. Count: 90, Neg. LLF: 95.19821049366209
Iteration: 9, Func. Count: 100, Neg. LLF: 95.2271343889707
Iteration: 10, Func. Count: 111, Neg. LLF: 95.18918251699749
Iteration: 11, Func. Count: 121, Neg. LLF: 95.1972421337226
Iteration: 12, Func. Count: 132, Neg. LLF: 95.18860250362556
Iteration: 13, Func. Count: 143, Neg. LLF: 95.18561720505885
Iteration: 14, Func. Count: 153, Neg. LLF: 95.18560928718043
Iteration: 15, Func. Count: 163, Neg. LLF: 95.18560157617505
Iteration: 16, Func. Count: 173, Neg. LLF: 95.18560026276067
Iteration: 17, Func. Count: 182, Neg. LLF: 95.18560026277999
Optimization terminated successfully (Exit mode 0)
Current function value: 95.18560026276067
Iterations: 17
Function evaluations: 182
Gradient evaluations: 17
Iteration: 1, Func. Count: 12, Neg. LLF: 131.36598806052797
Iteration: 2, Func. Count: 24, Neg. LLF: 122.92992733715637
Iteration: 3, Func. Count: 36, Neg. LLF: 95.63724719752769
Iteration: 4, Func. Count: 47, Neg. LLF: 95.69085084472252
Iteration: 5, Func. Count: 59, Neg. LLF: 97.36729818014763
Iteration: 6, Func. Count: 71, Neg. LLF: 94.08737366464557
Iteration: 7, Func. Count: 82, Neg. LLF: 94.26452981474657
Iteration: 8, Func. Count: 94, Neg. LLF: 93.99999136150896
Iteration: 9, Func. Count: 106, Neg. LLF: 94.01961489167904
Iteration: 10, Func. Count: 118, Neg. LLF: 94.00055498257026
Iteration: 11, Func. Count: 130, Neg. LLF: 93.99261200498226
Iteration: 12, Func. Count: 141, Neg. LLF: 93.99255196543342
Iteration: 13, Func. Count: 152, Neg. LLF: 93.99252212646161
Iteration: 14, Func. Count: 162, Neg. LLF: 93.99252212644087
Optimization terminated successfully (Exit mode 0)
Current function value: 93.99252212646161
Iterations: 14
Function evaluations: 162
Gradient evaluations: 14
Iteration: 1, Func. Count: 13, Neg. LLF: 141.93191818185431
Iteration: 2, Func. Count: 26, Neg. LLF: 107.01959607257871
Iteration: 3, Func. Count: 39, Neg. LLF: 118.87090732339337
Iteration: 4, Func. Count: 52, Neg. LLF: 95.96522186277052
Iteration: 5, Func. Count: 65, Neg. LLF: 96.54698026169979
Iteration: 6, Func. Count: 78, Neg. LLF: 95.34168095796463
Iteration: 7, Func. Count: 90, Neg. LLF: 95.50878876547927
Iteration: 8, Func. Count: 103, Neg. LLF: 95.24425344680012
Iteration: 9, Func. Count: 115, Neg. LLF: 95.2104801189819
Iteration: 10, Func. Count: 127, Neg. LLF: 95.27795174192653
Iteration: 11, Func. Count: 140, Neg. LLF: 95.24637053646084
Iteration: 12, Func. Count: 153, Neg. LLF: 95.21487473980619
Iteration: 13, Func. Count: 166, Neg. LLF: 95.18808640783358
Iteration: 14, Func. Count: 179, Neg. LLF: 95.18612420973074
Iteration: 15, Func. Count: 191, Neg. LLF: 95.18580510888404
Iteration: 16, Func. Count: 203, Neg. LLF: 95.18561927498621
Iteration: 17, Func. Count: 215, Neg. LLF: 95.18560197823058
Iteration: 18, Func. Count: 227, Neg. LLF: 95.18560042778
Iteration: 19, Func. Count: 238, Neg. LLF: 95.18560044310072
Optimization terminated successfully (Exit mode 0)
Current function value: 95.18560042778
Iterations: 19
Function evaluations: 238
Gradient evaluations: 19
Iteration: 1, Func. Count: 14, Neg. LLF: 130.7687421541866
Iteration: 2, Func. Count: 28, Neg. LLF: 112.31586592239384
Iteration: 3, Func. Count: 42, Neg. LLF: 96.98201844464768
Iteration: 4, Func. Count: 56, Neg. LLF: 100.8262649355235
Iteration: 5, Func. Count: 70, Neg. LLF: 96.94484822216913
Iteration: 6, Func. Count: 84, Neg. LLF: 96.20768328453963
Iteration: 7, Func. Count: 98, Neg. LLF: 94.49589079683216
Iteration: 8, Func. Count: 111, Neg. LLF: 94.23112972847781
Iteration: 9, Func. Count: 124, Neg. LLF: 97.18703510119197
Iteration: 10, Func. Count: 139, Neg. LLF: 94.08642625753936
Iteration: 11, Func. Count: 152, Neg. LLF: 93.82346307478855
Iteration: 12, Func. Count: 165, Neg. LLF: 93.78264742260892
Iteration: 13, Func. Count: 178, Neg. LLF: 93.76829880708733
Iteration: 14, Func. Count: 191, Neg. LLF: 93.76634138096904
Iteration: 15, Func. Count: 204, Neg. LLF: 93.7658436939357
Iteration: 16, Func. Count: 217, Neg. LLF: 93.76578101801341
Iteration: 17, Func. Count: 230, Neg. LLF: 93.76576174585435
Iteration: 18, Func. Count: 242, Neg. LLF: 93.76576174582873
Optimization terminated successfully (Exit mode 0)
Current function value: 93.76576174585435
Iterations: 18
Function evaluations: 242
Gradient evaluations: 18
Iteration: 1, Func. Count: 11, Neg. LLF: 102.92045090612449
Iteration: 2, Func. Count: 23, Neg. LLF: 4348795.734154985
Iteration: 3, Func. Count: 34, Neg. LLF: 392.22578750027213
Iteration: 4, Func. Count: 45, Neg. LLF: 218.2956851593549
Iteration: 5, Func. Count: 56, Neg. LLF: 95.38465286014902
Iteration: 6, Func. Count: 66, Neg. LLF: 97.4578830661732
Iteration: 7, Func. Count: 77, Neg. LLF: 95.97887386273533
Iteration: 8, Func. Count: 88, Neg. LLF: 97.81667342821088
Iteration: 9, Func. Count: 99, Neg. LLF: 94.93066220165154
Iteration: 10, Func. Count: 109, Neg. LLF: 96.69455907784223
Iteration: 11, Func. Count: 120, Neg. LLF: 94.88518234241566
Iteration: 12, Func. Count: 130, Neg. LLF: 94.87637496613921
Iteration: 13, Func. Count: 140, Neg. LLF: 94.86988130687928
Iteration: 14, Func. Count: 150, Neg. LLF: 94.86857799938554
Iteration: 15, Func. Count: 160, Neg. LLF: 94.86827429936012
Iteration: 16, Func. Count: 170, Neg. LLF: 94.868207520303
Iteration: 17, Func. Count: 180, Neg. LLF: 94.86820060084315
Iteration: 18, Func. Count: 189, Neg. LLF: 94.86820060085348
Optimization terminated successfully (Exit mode 0)
Current function value: 94.86820060084315
Iterations: 18
Function evaluations: 189
Gradient evaluations: 18
Iteration: 1, Func. Count: 12, Neg. LLF: 184.03239086251216
Iteration: 2, Func. Count: 24, Neg. LLF: 205.12894343285004
Iteration: 3, Func. Count: 36, Neg. LLF: 97.38274851693453
Iteration: 4, Func. Count: 48, Neg. LLF: 97.81803245527921
Iteration: 5, Func. Count: 60, Neg. LLF: 95.49378814195218
Iteration: 6, Func. Count: 72, Neg. LLF: 95.4622158201713
Iteration: 7, Func. Count: 84, Neg. LLF: 95.09371204247294
Iteration: 8, Func. Count: 95, Neg. LLF: 95.03014758551068
Iteration: 9, Func. Count: 106, Neg. LLF: 95.0636521357565
Iteration: 10, Func. Count: 118, Neg. LLF: 95.01640657774207
Iteration: 11, Func. Count: 129, Neg. LLF: 95.07758753823803
Iteration: 12, Func. Count: 141, Neg. LLF: 95.01397268762159
Iteration: 13, Func. Count: 152, Neg. LLF: 95.01392338715183
Iteration: 14, Func. Count: 163, Neg. LLF: 95.01392034166305
Iteration: 15, Func. Count: 174, Neg. LLF: 95.01391980149518
Optimization terminated successfully (Exit mode 0)
Current function value: 95.01391980149518
Iterations: 15
Function evaluations: 174
Gradient evaluations: 15
Iteration: 1, Func. Count: 13, Neg. LLF: 157.15168115415625
Iteration: 2, Func. Count: 26, Neg. LLF: 116.0306174515165
Iteration: 3, Func. Count: 39, Neg. LLF: 96.65957421849245
Iteration: 4, Func. Count: 52, Neg. LLF: 101.86038461606012
Iteration: 5, Func. Count: 65, Neg. LLF: 94.84169429206692
Iteration: 6, Func. Count: 77, Neg. LLF: 94.16088679975772
Iteration: 7, Func. Count: 89, Neg. LLF: 94.57465525583054
Iteration: 8, Func. Count: 102, Neg. LLF: 94.47988096762147
Iteration: 9, Func. Count: 115, Neg. LLF: 94.0011010474175
Iteration: 10, Func. Count: 127, Neg. LLF: 93.998410440217
Iteration: 11, Func. Count: 139, Neg. LLF: 93.99288171157265
Iteration: 12, Func. Count: 151, Neg. LLF: 93.99266730425411
Iteration: 13, Func. Count: 163, Neg. LLF: 93.99252870138204
Iteration: 14, Func. Count: 175, Neg. LLF: 93.9925221588286
Iteration: 15, Func. Count: 186, Neg. LLF: 93.99252215885446
Optimization terminated successfully (Exit mode 0)
Current function value: 93.9925221588286
Iterations: 15
Function evaluations: 186
Gradient evaluations: 15
Iteration: 1, Func. Count: 14, Neg. LLF: 165.82985232269263
Iteration: 2, Func. Count: 28, Neg. LLF: 127.62343149049819
Iteration: 3, Func. Count: 42, Neg. LLF: 97.50416098555041
Iteration: 4, Func. Count: 56, Neg. LLF: 98.63068223616527
Iteration: 5, Func. Count: 70, Neg. LLF: 95.6123446952136
Iteration: 6, Func. Count: 84, Neg. LLF: 95.65435830223552
Iteration: 7, Func. Count: 98, Neg. LLF: 95.03339270821283
Iteration: 8, Func. Count: 111, Neg. LLF: 94.61381059845061
Iteration: 9, Func. Count: 124, Neg. LLF: 98.70376298354701
Iteration: 10, Func. Count: 139, Neg. LLF: 94.15495168255623
Iteration: 11, Func. Count: 152, Neg. LLF: 94.45593889592861
Iteration: 12, Func. Count: 166, Neg. LLF: 93.9979676742972
Iteration: 13, Func. Count: 179, Neg. LLF: 93.99515752840539
Iteration: 14, Func. Count: 192, Neg. LLF: 93.99255176684912
Iteration: 15, Func. Count: 205, Neg. LLF: 93.99252536867375
Iteration: 16, Func. Count: 218, Neg. LLF: 93.99252328868424
Iteration: 17, Func. Count: 231, Neg. LLF: 93.99252227534281
Iteration: 18, Func. Count: 243, Neg. LLF: 93.99252235697041
Optimization terminated successfully (Exit mode 0)
Current function value: 93.99252227534281
Iterations: 18
Function evaluations: 243
Gradient evaluations: 18
Iteration: 1, Func. Count: 15, Neg. LLF: 161.6689817264192
Iteration: 2, Func. Count: 30, Neg. LLF: 145.82886447723394
Iteration: 3, Func. Count: 45, Neg. LLF: 97.85793334525822
Iteration: 4, Func. Count: 60, Neg. LLF: 96.05966208141415
Iteration: 5, Func. Count: 75, Neg. LLF: 95.93166189999256
Iteration: 6, Func. Count: 90, Neg. LLF: 94.38595099666503
Iteration: 7, Func. Count: 104, Neg. LLF: 94.00689392311371
Iteration: 8, Func. Count: 118, Neg. LLF: 93.95269368355181
Iteration: 9, Func. Count: 132, Neg. LLF: 93.9756246085159
Iteration: 10, Func. Count: 147, Neg. LLF: 93.87355930095957
Iteration: 11, Func. Count: 161, Neg. LLF: 93.78428561630386
Iteration: 12, Func. Count: 175, Neg. LLF: 93.76787787719023
Iteration: 13, Func. Count: 189, Neg. LLF: 93.76600210819585
Iteration: 14, Func. Count: 203, Neg. LLF: 93.76582915916376
Iteration: 15, Func. Count: 217, Neg. LLF: 93.76578918025557
Iteration: 16, Func. Count: 231, Neg. LLF: 93.76576605116459
Iteration: 17, Func. Count: 245, Neg. LLF: 93.76576178932504
Iteration: 18, Func. Count: 258, Neg. LLF: 93.7657617892751
Optimization terminated successfully (Exit mode 0)
Current function value: 93.76576178932504
Iterations: 18
Function evaluations: 258
Gradient evaluations: 18
Iteration: 1, Func. Count: 8, Neg. LLF: 107.64843824078837
Iteration: 2, Func. Count: 17, Neg. LLF: 714.0083404529412
Iteration: 3, Func. Count: 25, Neg. LLF: 125.27420961855842
Iteration: 4, Func. Count: 33, Neg. LLF: 104.18266642750208
Iteration: 5, Func. Count: 41, Neg. LLF: 210.89293533003914
Iteration: 6, Func. Count: 49, Neg. LLF: 142.20130238231593
Iteration: 7, Func. Count: 57, Neg. LLF: 94.92158995375189
Iteration: 8, Func. Count: 64, Neg. LLF: 94.8881458854036
Iteration: 9, Func. Count: 71, Neg. LLF: 94.88488819268814
Iteration: 10, Func. Count: 78, Neg. LLF: 94.88479263402118
Iteration: 11, Func. Count: 85, Neg. LLF: 94.88479048861066
Iteration: 12, Func. Count: 91, Neg. LLF: 94.8847904885543
Optimization terminated successfully (Exit mode 0)
Current function value: 94.88479048861066
Iterations: 12
Function evaluations: 91
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 227.31248672916476
Iteration: 2, Func. Count: 18, Neg. LLF: 23213.600985223584
Iteration: 3, Func. Count: 28, Neg. LLF: 156.89084571497173
Iteration: 4, Func. Count: 37, Neg. LLF: 95.98756385672596
Iteration: 5, Func. Count: 46, Neg. LLF: 96.99902923427054
Iteration: 6, Func. Count: 55, Neg. LLF: 94.95861569526875
Iteration: 7, Func. Count: 63, Neg. LLF: 94.95378714922977
Iteration: 8, Func. Count: 72, Neg. LLF: 94.8858962165677
Iteration: 9, Func. Count: 80, Neg. LLF: 94.88513333337276
Iteration: 10, Func. Count: 88, Neg. LLF: 94.88483884357947
Iteration: 11, Func. Count: 96, Neg. LLF: 94.88480462912183
Iteration: 12, Func. Count: 104, Neg. LLF: 94.88479016012832
Iteration: 13, Func. Count: 111, Neg. LLF: 94.88479017986005
Optimization terminated successfully (Exit mode 0)
Current function value: 94.88479016012832
Iterations: 13
Function evaluations: 111
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 164.64042812681132
Iteration: 2, Func. Count: 20, Neg. LLF: 197.024159016221
Iteration: 3, Func. Count: 30, Neg. LLF: 634.1489167574725
Iteration: 4, Func. Count: 41, Neg. LLF: 95.29172164900693
Iteration: 5, Func. Count: 50, Neg. LLF: 96.79493553994187
Iteration: 6, Func. Count: 60, Neg. LLF: 103.24972237669056
Iteration: 7, Func. Count: 70, Neg. LLF: 94.91345473333124
Iteration: 8, Func. Count: 79, Neg. LLF: 94.88549267201789
Iteration: 9, Func. Count: 88, Neg. LLF: 94.88501180163377
Iteration: 10, Func. Count: 97, Neg. LLF: 94.88482506783787
Iteration: 11, Func. Count: 106, Neg. LLF: 94.88479034569264
Iteration: 12, Func. Count: 114, Neg. LLF: 94.88479035712268
Optimization terminated successfully (Exit mode 0)
Current function value: 94.88479034569264
Iterations: 12
Function evaluations: 114
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 514.4273777698659
Iteration: 2, Func. Count: 22, Neg. LLF: 162.11010957463176
Iteration: 3, Func. Count: 33, Neg. LLF: 110.1518397440186
Iteration: 4, Func. Count: 44, Neg. LLF: 100.04331400567769
Iteration: 5, Func. Count: 55, Neg. LLF: 95.6552171150801
Iteration: 6, Func. Count: 66, Neg. LLF: 98.6879985498951
Iteration: 7, Func. Count: 77, Neg. LLF: 94.99473321618227
Iteration: 8, Func. Count: 87, Neg. LLF: 94.89110861363324
Iteration: 9, Func. Count: 97, Neg. LLF: 94.88609664035307
Iteration: 10, Func. Count: 107, Neg. LLF: 94.88515414887202
Iteration: 11, Func. Count: 117, Neg. LLF: 94.88479321283948
Iteration: 12, Func. Count: 127, Neg. LLF: 94.88479049964613
Iteration: 13, Func. Count: 136, Neg. LLF: 94.88479052918855
Optimization terminated successfully (Exit mode 0)
Current function value: 94.88479049964613
Iterations: 13
Function evaluations: 136
Gradient evaluations: 13
Iteration: 1, Func. Count: 12, Neg. LLF: 637.7809374647627
Iteration: 2, Func. Count: 24, Neg. LLF: 153.9849594819899
Iteration: 3, Func. Count: 36, Neg. LLF: 588.8606439325513
Iteration: 4, Func. Count: 49, Neg. LLF: 97.91886150451792
Iteration: 5, Func. Count: 61, Neg. LLF: 96.73329440038874
Iteration: 6, Func. Count: 73, Neg. LLF: 95.56520207619074
Iteration: 7, Func. Count: 85, Neg. LLF: 94.89760336302874
Iteration: 8, Func. Count: 96, Neg. LLF: 94.88691440497105
Iteration: 9, Func. Count: 107, Neg. LLF: 94.8851754546738
Iteration: 10, Func. Count: 118, Neg. LLF: 94.88486371720887
Iteration: 11, Func. Count: 129, Neg. LLF: 94.8847979109254
Iteration: 12, Func. Count: 140, Neg. LLF: 94.88479023337929
Iteration: 13, Func. Count: 150, Neg. LLF: 94.88479025950181
Optimization terminated successfully (Exit mode 0)
Current function value: 94.88479023337929
Iterations: 13
Function evaluations: 150
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 107.58765688637286
Iteration: 2, Func. Count: 19, Neg. LLF: 243.0061047777635
Iteration: 3, Func. Count: 28, Neg. LLF: 128.1533791706121
Iteration: 4, Func. Count: 37, Neg. LLF: 104.70085848868825
Iteration: 5, Func. Count: 46, Neg. LLF: 187.2600690645052
Iteration: 6, Func. Count: 55, Neg. LLF: 125.02914526229146
Iteration: 7, Func. Count: 64, Neg. LLF: 94.9296880590758
Iteration: 8, Func. Count: 72, Neg. LLF: 94.88945718805178
Iteration: 9, Func. Count: 80, Neg. LLF: 94.88494409429467
Iteration: 10, Func. Count: 88, Neg. LLF: 94.88479259537627
Iteration: 11, Func. Count: 96, Neg. LLF: 94.88479050729025
Iteration: 12, Func. Count: 103, Neg. LLF: 94.88479048855869
Optimization terminated successfully (Exit mode 0)
Current function value: 94.88479050729025
Iterations: 12
Function evaluations: 103
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 156.05519894157186
Iteration: 2, Func. Count: 20, Neg. LLF: 114.29548134770758
Iteration: 3, Func. Count: 30, Neg. LLF: 104.07539803950856
Iteration: 4, Func. Count: 40, Neg. LLF: 97.53437322131239
Iteration: 5, Func. Count: 51, Neg. LLF: 101.72047299309654
Iteration: 6, Func. Count: 61, Neg. LLF: 98.25872250982744
Iteration: 7, Func. Count: 71, Neg. LLF: 94.91452976785685
Iteration: 8, Func. Count: 80, Neg. LLF: 94.8929325553728
Iteration: 9, Func. Count: 89, Neg. LLF: 94.88487950173817
Iteration: 10, Func. Count: 98, Neg. LLF: 94.8848009108313
Iteration: 11, Func. Count: 107, Neg. LLF: 94.8847907072098
Iteration: 12, Func. Count: 115, Neg. LLF: 94.88479072699796
Optimization terminated successfully (Exit mode 0)
Current function value: 94.8847907072098
Iterations: 12
Function evaluations: 115
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 156.33842453624845
Iteration: 2, Func. Count: 22, Neg. LLF: 332.8851908262044
Iteration: 3, Func. Count: 33, Neg. LLF: 580.2415751635615
Iteration: 4, Func. Count: 45, Neg. LLF: 95.63384759837666
Iteration: 5, Func. Count: 56, Neg. LLF: 96.51120231047257
Iteration: 6, Func. Count: 67, Neg. LLF: 101.53349136723655
Iteration: 7, Func. Count: 78, Neg. LLF: 94.90425060841363
Iteration: 8, Func. Count: 88, Neg. LLF: 94.88532559982956
Iteration: 9, Func. Count: 98, Neg. LLF: 94.88486800974594
Iteration: 10, Func. Count: 108, Neg. LLF: 94.88480649460469
Iteration: 11, Func. Count: 118, Neg. LLF: 94.88479214808986
Iteration: 12, Func. Count: 128, Neg. LLF: 94.88479016997792
Iteration: 13, Func. Count: 137, Neg. LLF: 94.88479018141038
Optimization terminated successfully (Exit mode 0)
Current function value: 94.88479016997792
Iterations: 13
Function evaluations: 137
Gradient evaluations: 13
Iteration: 1, Func. Count: 12, Neg. LLF: 301.6269343342367
Iteration: 2, Func. Count: 24, Neg. LLF: 137.15367903005748
Iteration: 3, Func. Count: 36, Neg. LLF: 1205.2345404983635
Iteration: 4, Func. Count: 49, Neg. LLF: 97.21337346844999
Iteration: 5, Func. Count: 61, Neg. LLF: 95.27862849448383
Iteration: 6, Func. Count: 72, Neg. LLF: 96.00997077603995
Iteration: 7, Func. Count: 84, Neg. LLF: 94.97053500032149
Iteration: 8, Func. Count: 96, Neg. LLF: 94.88692374009331
Iteration: 9, Func. Count: 107, Neg. LLF: 94.88539498243067
Iteration: 10, Func. Count: 118, Neg. LLF: 94.88479409972358
Iteration: 11, Func. Count: 129, Neg. LLF: 94.88479030010352
Iteration: 12, Func. Count: 139, Neg. LLF: 94.88479032957312
Optimization terminated successfully (Exit mode 0)
Current function value: 94.88479030010352
Iterations: 12
Function evaluations: 139
Gradient evaluations: 12
Iteration: 1, Func. Count: 13, Neg. LLF: 309.3798803269808
Iteration: 2, Func. Count: 26, Neg. LLF: 159.09908091616722
Iteration: 3, Func. Count: 39, Neg. LLF: 588.7801485884755
Iteration: 4, Func. Count: 53, Neg. LLF: 99.24238541588318
Iteration: 5, Func. Count: 66, Neg. LLF: 96.68598944685215
Iteration: 6, Func. Count: 79, Neg. LLF: 95.2948134928054
Iteration: 7, Func. Count: 91, Neg. LLF: 94.91045673496295
Iteration: 8, Func. Count: 103, Neg. LLF: 94.89240980833668
Iteration: 9, Func. Count: 115, Neg. LLF: 94.88614221029994
Iteration: 10, Func. Count: 127, Neg. LLF: 94.88508447679558
Iteration: 11, Func. Count: 139, Neg. LLF: 94.88480869895479
Iteration: 12, Func. Count: 151, Neg. LLF: 94.88479060908288
Iteration: 13, Func. Count: 162, Neg. LLF: 94.88479063520434
Optimization terminated successfully (Exit mode 0)
Current function value: 94.88479060908288
Iterations: 13
Function evaluations: 162
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 103.56692255314563
Iteration: 2, Func. Count: 21, Neg. LLF: 103.41737767620675
Iteration: 3, Func. Count: 31, Neg. LLF: 36561256.3863935
Iteration: 4, Func. Count: 41, Neg. LLF: 5014.604011884837
Iteration: 5, Func. Count: 51, Neg. LLF: 124.06359818054938
Iteration: 6, Func. Count: 61, Neg. LLF: 93.95896096911366
Iteration: 7, Func. Count: 71, Neg. LLF: 93.71592722801846
Iteration: 8, Func. Count: 80, Neg. LLF: 93.62664884602148
Iteration: 9, Func. Count: 89, Neg. LLF: 93.61957625229397
Iteration: 10, Func. Count: 98, Neg. LLF: 93.61803182006823
Iteration: 11, Func. Count: 107, Neg. LLF: 93.61789065289666
Iteration: 12, Func. Count: 116, Neg. LLF: 93.6178735318546
Iteration: 13, Func. Count: 124, Neg. LLF: 93.61787353185306
Optimization terminated successfully (Exit mode 0)
Current function value: 93.6178735318546
Iterations: 13
Function evaluations: 124
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 835.9912863536388
Iteration: 2, Func. Count: 22, Neg. LLF: 549.4986528832328
Iteration: 3, Func. Count: 33, Neg. LLF: 99.49506071576168
Iteration: 4, Func. Count: 45, Neg. LLF: 94.90400769999252
Iteration: 5, Func. Count: 56, Neg. LLF: 93.82392843163449
Iteration: 6, Func. Count: 66, Neg. LLF: 93.72115462325675
Iteration: 7, Func. Count: 76, Neg. LLF: 93.99627905724563
Iteration: 8, Func. Count: 87, Neg. LLF: 95.86229105657691
Iteration: 9, Func. Count: 98, Neg. LLF: 93.64500048178293
Iteration: 10, Func. Count: 108, Neg. LLF: 93.62015417360104
Iteration: 11, Func. Count: 118, Neg. LLF: 93.61812012534075
Iteration: 12, Func. Count: 128, Neg. LLF: 93.6179060819243
Iteration: 13, Func. Count: 138, Neg. LLF: 93.61787657826197
Iteration: 14, Func. Count: 148, Neg. LLF: 93.61787321421978
Iteration: 15, Func. Count: 157, Neg. LLF: 93.6178732920595
Optimization terminated successfully (Exit mode 0)
Current function value: 93.61787321421978
Iterations: 15
Function evaluations: 157
Gradient evaluations: 15
Iteration: 1, Func. Count: 12, Neg. LLF: 18435.457321552076
Iteration: 2, Func. Count: 24, Neg. LLF: 309.0602779368858
Iteration: 3, Func. Count: 36, Neg. LLF: 99.64499999351641
Iteration: 4, Func. Count: 48, Neg. LLF: 95.89142195538602
Iteration: 5, Func. Count: 61, Neg. LLF: 94.2324565413012
Iteration: 6, Func. Count: 72, Neg. LLF: 214.46898200910942
Iteration: 7, Func. Count: 85, Neg. LLF: 98.57328651978574
Iteration: 8, Func. Count: 98, Neg. LLF: 93.5337533231464
Iteration: 9, Func. Count: 109, Neg. LLF: 93.4573979234295
Iteration: 10, Func. Count: 120, Neg. LLF: 93.70231174651165
Iteration: 11, Func. Count: 132, Neg. LLF: 93.44341182651317
Iteration: 12, Func. Count: 144, Neg. LLF: 93.41874222996384
Iteration: 13, Func. Count: 155, Neg. LLF: 93.41856666250192
Iteration: 14, Func. Count: 166, Neg. LLF: 93.41856383825582
Iteration: 15, Func. Count: 176, Neg. LLF: 93.41856383833476
Optimization terminated successfully (Exit mode 0)
Current function value: 93.41856383825582
Iterations: 15
Function evaluations: 176
Gradient evaluations: 15
Iteration: 1, Func. Count: 13, Neg. LLF: 17238512.01510266
Iteration: 2, Func. Count: 26, Neg. LLF: 894.3752996542624
Iteration: 3, Func. Count: 39, Neg. LLF: 96.12605391875218
Iteration: 4, Func. Count: 52, Neg. LLF: 94.3366779764905
Iteration: 5, Func. Count: 64, Neg. LLF: 98.67996698935772
Iteration: 6, Func. Count: 77, Neg. LLF: 196.2326481516771
Iteration: 7, Func. Count: 90, Neg. LLF: 102.81610190994282
Iteration: 8, Func. Count: 103, Neg. LLF: 93.54264175608105
Iteration: 9, Func. Count: 115, Neg. LLF: 93.44630002184631
Iteration: 10, Func. Count: 127, Neg. LLF: 93.42730363587468
Iteration: 11, Func. Count: 139, Neg. LLF: 93.42238027419704
Iteration: 12, Func. Count: 151, Neg. LLF: 93.42017752768012
Iteration: 13, Func. Count: 163, Neg. LLF: 93.41867086735957
Iteration: 14, Func. Count: 175, Neg. LLF: 93.41857274698297
Iteration: 15, Func. Count: 187, Neg. LLF: 93.41856422907657
Iteration: 16, Func. Count: 199, Neg. LLF: 93.41856302884455
Iteration: 17, Func. Count: 210, Neg. LLF: 93.4185631107282
Optimization terminated successfully (Exit mode 0)
Current function value: 93.41856302884455
Iterations: 17
Function evaluations: 210
Gradient evaluations: 17
Iteration: 1, Func. Count: 14, Neg. LLF: 16933838.54991115
Iteration: 2, Func. Count: 28, Neg. LLF: 464.4849982638078
Iteration: 3, Func. Count: 42, Neg. LLF: 98.90006830114525
Iteration: 4, Func. Count: 56, Neg. LLF: 93.80819388643508
Iteration: 5, Func. Count: 69, Neg. LLF: 93.82139912167106
Iteration: 6, Func. Count: 83, Neg. LLF: 8015750.377259146
Iteration: 7, Func. Count: 97, Neg. LLF: 104.11180672429059
Iteration: 8, Func. Count: 111, Neg. LLF: 93.20905751283881
Iteration: 9, Func. Count: 124, Neg. LLF: 93.65855107558696
Iteration: 10, Func. Count: 139, Neg. LLF: 93.19973606454722
Iteration: 11, Func. Count: 152, Neg. LLF: 93.1977866412619
Iteration: 12, Func. Count: 165, Neg. LLF: 93.19716951974769
Iteration: 13, Func. Count: 178, Neg. LLF: 93.19690964389088
Iteration: 14, Func. Count: 191, Neg. LLF: 93.19684419833327
Iteration: 15, Func. Count: 204, Neg. LLF: 93.19684052574031
Iteration: 16, Func. Count: 216, Neg. LLF: 93.19684052580628
Optimization terminated successfully (Exit mode 0)
Current function value: 93.19684052574031
Iterations: 16
Function evaluations: 216
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 102.40801152625811
Iteration: 2, Func. Count: 23, Neg. LLF: 109.06412797674622
Iteration: 3, Func. Count: 34, Neg. LLF: 668.3732686700438
Iteration: 4, Func. Count: 45, Neg. LLF: 480.9034222239286
Iteration: 5, Func. Count: 56, Neg. LLF: 152.17623099566407
Iteration: 6, Func. Count: 67, Neg. LLF: 95.69069061646074
Iteration: 7, Func. Count: 78, Neg. LLF: 93.67424079786569
Iteration: 8, Func. Count: 88, Neg. LLF: 93.63770908973753
Iteration: 9, Func. Count: 98, Neg. LLF: 93.62279731469445
Iteration: 10, Func. Count: 108, Neg. LLF: 93.62004971819259
Iteration: 11, Func. Count: 118, Neg. LLF: 93.6180703201894
Iteration: 12, Func. Count: 128, Neg. LLF: 93.61789164213296
Iteration: 13, Func. Count: 138, Neg. LLF: 93.61787365871962
Iteration: 14, Func. Count: 148, Neg. LLF: 93.61787326161607
Optimization terminated successfully (Exit mode 0)
Current function value: 93.61787326161607
Iterations: 14
Function evaluations: 148
Gradient evaluations: 14
Iteration: 1, Func. Count: 12, Neg. LLF: 2888189.669348987
Iteration: 2, Func. Count: 24, Neg. LLF: 166.863662467606
Iteration: 3, Func. Count: 36, Neg. LLF: 104.05376513189113
Iteration: 4, Func. Count: 48, Neg. LLF: 99.63265494301999
Iteration: 5, Func. Count: 60, Neg. LLF: 94.26043182682893
Iteration: 6, Func. Count: 71, Neg. LLF: 95.47428434869829
Iteration: 7, Func. Count: 83, Neg. LLF: 97.76666863839034
Iteration: 8, Func. Count: 97, Neg. LLF: 94.72474555556306
Iteration: 9, Func. Count: 109, Neg. LLF: 94.88200963340778
Iteration: 10, Func. Count: 122, Neg. LLF: 93.62870048382472
Iteration: 11, Func. Count: 133, Neg. LLF: 93.61941345822775
Iteration: 12, Func. Count: 144, Neg. LLF: 93.61792195941068
Iteration: 13, Func. Count: 155, Neg. LLF: 93.61788295718304
Iteration: 14, Func. Count: 166, Neg. LLF: 93.61787372469068
Iteration: 15, Func. Count: 176, Neg. LLF: 93.61787380257425
Optimization terminated successfully (Exit mode 0)
Current function value: 93.61787372469068
Iterations: 15
Function evaluations: 176
Gradient evaluations: 15
Iteration: 1, Func. Count: 13, Neg. LLF: 2855292.4288888364
Iteration: 2, Func. Count: 26, Neg. LLF: 385.06291820539997
Iteration: 3, Func. Count: 39, Neg. LLF: 100.1749012629466
Iteration: 4, Func. Count: 52, Neg. LLF: 99.9231120435453
Iteration: 5, Func. Count: 65, Neg. LLF: 99.42445301662765
Iteration: 6, Func. Count: 78, Neg. LLF: 93.61461196581713
Iteration: 7, Func. Count: 90, Neg. LLF: 94.73935092411796
Iteration: 8, Func. Count: 103, Neg. LLF: 93.48959903395019
Iteration: 9, Func. Count: 115, Neg. LLF: 93.48738816853309
Iteration: 10, Func. Count: 128, Neg. LLF: 94.11627229116469
Iteration: 11, Func. Count: 142, Neg. LLF: 93.42060281987527
Iteration: 12, Func. Count: 154, Neg. LLF: 93.41883274721317
Iteration: 13, Func. Count: 166, Neg. LLF: 93.41859834449471
Iteration: 14, Func. Count: 178, Neg. LLF: 93.41857087207791
Iteration: 15, Func. Count: 190, Neg. LLF: 93.41856314274104
Iteration: 16, Func. Count: 201, Neg. LLF: 93.4185631427033
Optimization terminated successfully (Exit mode 0)
Current function value: 93.41856314274104
Iterations: 16
Function evaluations: 201
Gradient evaluations: 16
Iteration: 1, Func. Count: 14, Neg. LLF: 2845284.270424979
Iteration: 2, Func. Count: 28, Neg. LLF: 11357.721540561595
Iteration: 3, Func. Count: 42, Neg. LLF: 102.1218758431559
Iteration: 4, Func. Count: 56, Neg. LLF: 93.98729961036176
Iteration: 5, Func. Count: 69, Neg. LLF: 95.5366173630142
Iteration: 6, Func. Count: 83, Neg. LLF: 336.756898432678
Iteration: 7, Func. Count: 97, Neg. LLF: 93.96547557926175
Iteration: 8, Func. Count: 111, Neg. LLF: 94.04316553882516
Iteration: 9, Func. Count: 125, Neg. LLF: 93.47045999868729
Iteration: 10, Func. Count: 138, Neg. LLF: 93.42731041107562
Iteration: 11, Func. Count: 151, Neg. LLF: 93.42017059666603
Iteration: 12, Func. Count: 164, Neg. LLF: 93.41943356993615
Iteration: 13, Func. Count: 177, Neg. LLF: 93.4185862399746
Iteration: 14, Func. Count: 190, Neg. LLF: 93.41856361093944
Iteration: 15, Func. Count: 203, Neg. LLF: 93.41856299938237
Optimization terminated successfully (Exit mode 0)
Current function value: 93.41856299938237
Iterations: 15
Function evaluations: 203
Gradient evaluations: 15
Iteration: 1, Func. Count: 15, Neg. LLF: 2793863.967950584
Iteration: 2, Func. Count: 30, Neg. LLF: 376506.8337925379
Iteration: 3, Func. Count: 45, Neg. LLF: 124.97918273271497
Iteration: 4, Func. Count: 60, Neg. LLF: 93.8761800937393
Iteration: 5, Func. Count: 74, Neg. LLF: 93.84978371084193
Iteration: 6, Func. Count: 89, Neg. LLF: 122.51178039178978
Iteration: 7, Func. Count: 104, Neg. LLF: 95.14109625326665
Iteration: 8, Func. Count: 120, Neg. LLF: 93.28824805817833
Iteration: 9, Func. Count: 134, Neg. LLF: 93.20765320806257
Iteration: 10, Func. Count: 148, Neg. LLF: 93.45211202397456
Iteration: 11, Func. Count: 164, Neg. LLF: 93.19779158327763
Iteration: 12, Func. Count: 178, Neg. LLF: 93.19685756480757
Iteration: 13, Func. Count: 192, Neg. LLF: 93.19684857960792
Iteration: 14, Func. Count: 206, Neg. LLF: 93.19684150744767
Iteration: 15, Func. Count: 220, Neg. LLF: 93.19684039927509
Iteration: 16, Func. Count: 233, Neg. LLF: 93.19684039925356
Optimization terminated successfully (Exit mode 0)
Current function value: 93.19684039927509
Iterations: 16
Function evaluations: 233
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 102.3542737173207
Iteration: 2, Func. Count: 25, Neg. LLF: 104.31775066133608
Iteration: 3, Func. Count: 37, Neg. LLF: 1162.0435687995766
Iteration: 4, Func. Count: 49, Neg. LLF: 3288651.2990918723
Iteration: 5, Func. Count: 61, Neg. LLF: 360.1282468092759
Iteration: 6, Func. Count: 73, Neg. LLF: 95.04721240915055
Iteration: 7, Func. Count: 85, Neg. LLF: 106.20499656233444
Iteration: 8, Func. Count: 97, Neg. LLF: 93.65677751022527
Iteration: 9, Func. Count: 108, Neg. LLF: 93.81432534779574
Iteration: 10, Func. Count: 120, Neg. LLF: 93.61598707126264
Iteration: 11, Func. Count: 131, Neg. LLF: 93.6062373809721
Iteration: 12, Func. Count: 142, Neg. LLF: 93.60427115278023
Iteration: 13, Func. Count: 153, Neg. LLF: 93.60364844112193
Iteration: 14, Func. Count: 164, Neg. LLF: 93.60369835311842
Iteration: 15, Func. Count: 176, Neg. LLF: 93.60361710918454
Iteration: 16, Func. Count: 186, Neg. LLF: 93.60361710917442
Optimization terminated successfully (Exit mode 0)
Current function value: 93.60361710918454
Iterations: 16
Function evaluations: 186
Gradient evaluations: 16
Iteration: 1, Func. Count: 13, Neg. LLF: 2825100.945549962
Iteration: 2, Func. Count: 26, Neg. LLF: 554.1857126445439
Iteration: 3, Func. Count: 39, Neg. LLF: 114.1860372705524
Iteration: 4, Func. Count: 52, Neg. LLF: 114.33922408214424
Iteration: 5, Func. Count: 65, Neg. LLF: 94.32329210518343
Iteration: 6, Func. Count: 77, Neg. LLF: 93.86457642422664
Iteration: 7, Func. Count: 89, Neg. LLF: 99.18792438486975
Iteration: 8, Func. Count: 103, Neg. LLF: 93.64785659498361
Iteration: 9, Func. Count: 115, Neg. LLF: 93.61440985509944
Iteration: 10, Func. Count: 127, Neg. LLF: 93.60633315674019
Iteration: 11, Func. Count: 139, Neg. LLF: 93.8254028837924
Iteration: 12, Func. Count: 153, Neg. LLF: 93.60433037957065
Iteration: 13, Func. Count: 165, Neg. LLF: 93.6036981172351
Iteration: 14, Func. Count: 177, Neg. LLF: 93.60362370771668
Iteration: 15, Func. Count: 189, Neg. LLF: 93.60361724432676
Iteration: 16, Func. Count: 200, Neg. LLF: 93.60361732476531
Optimization terminated successfully (Exit mode 0)
Current function value: 93.60361724432676
Iterations: 16
Function evaluations: 200
Gradient evaluations: 16
Iteration: 1, Func. Count: 14, Neg. LLF: 2919548.0720360004
Iteration: 2, Func. Count: 28, Neg. LLF: 3251183.090152976
Iteration: 3, Func. Count: 42, Neg. LLF: 112.73179693880931
Iteration: 4, Func. Count: 56, Neg. LLF: 96.73588641144791
Iteration: 5, Func. Count: 70, Neg. LLF: 99.80666965481292
Iteration: 6, Func. Count: 85, Neg. LLF: 94.03410954614961
Iteration: 7, Func. Count: 98, Neg. LLF: 95.6104903867407
Iteration: 8, Func. Count: 113, Neg. LLF: 98.96705411075548
Iteration: 9, Func. Count: 127, Neg. LLF: 93.46558705380819
Iteration: 10, Func. Count: 140, Neg. LLF: 93.50422330406826
Iteration: 11, Func. Count: 154, Neg. LLF: 93.47813664630388
Iteration: 12, Func. Count: 168, Neg. LLF: 93.41857937025756
Iteration: 13, Func. Count: 181, Neg. LLF: 93.41503839990018
Iteration: 14, Func. Count: 194, Neg. LLF: 93.4134714267209
Iteration: 15, Func. Count: 207, Neg. LLF: 93.41242347589747
Iteration: 16, Func. Count: 220, Neg. LLF: 93.41220932437633
Iteration: 17, Func. Count: 233, Neg. LLF: 93.41211102429223
Iteration: 18, Func. Count: 246, Neg. LLF: 93.41209299039934
Iteration: 19, Func. Count: 259, Neg. LLF: 93.41209171012069
Iteration: 20, Func. Count: 271, Neg. LLF: 93.41209171012622
Optimization terminated successfully (Exit mode 0)
Current function value: 93.41209171012069
Iterations: 20
Function evaluations: 271
Gradient evaluations: 20
Iteration: 1, Func. Count: 15, Neg. LLF: 2861179.058441393
Iteration: 2, Func. Count: 30, Neg. LLF: 454.477163651605
Iteration: 3, Func. Count: 45, Neg. LLF: 163.71434652372437
Iteration: 4, Func. Count: 60, Neg. LLF: 96.44964074153256
Iteration: 5, Func. Count: 75, Neg. LLF: 96.69379410471339
Iteration: 6, Func. Count: 91, Neg. LLF: 95.09405701258515
Iteration: 7, Func. Count: 106, Neg. LLF: 93.74988028331902
Iteration: 8, Func. Count: 120, Neg. LLF: 93.56236029960671
Iteration: 9, Func. Count: 134, Neg. LLF: 94.02090848898823
Iteration: 10, Func. Count: 149, Neg. LLF: 93.44743923322659
Iteration: 11, Func. Count: 163, Neg. LLF: 93.5274390572016
Iteration: 12, Func. Count: 178, Neg. LLF: 93.41630504870383
Iteration: 13, Func. Count: 192, Neg. LLF: 93.41325028136578
Iteration: 14, Func. Count: 206, Neg. LLF: 93.41235559043766
Iteration: 15, Func. Count: 220, Neg. LLF: 93.41212051504974
Iteration: 16, Func. Count: 234, Neg. LLF: 93.41209344256401
Iteration: 17, Func. Count: 248, Neg. LLF: 93.41209171247222
Iteration: 18, Func. Count: 261, Neg. LLF: 93.41209179704484
Optimization terminated successfully (Exit mode 0)
Current function value: 93.41209171247222
Iterations: 18
Function evaluations: 261
Gradient evaluations: 18
Iteration: 1, Func. Count: 16, Neg. LLF: 2834024.267676102
Iteration: 2, Func. Count: 32, Neg. LLF: 235.34266966781888
Iteration: 3, Func. Count: 48, Neg. LLF: 1068.9216517621576
Iteration: 4, Func. Count: 64, Neg. LLF: 105.4228904585762
Iteration: 5, Func. Count: 80, Neg. LLF: 99.02086830690178
Iteration: 6, Func. Count: 96, Neg. LLF: 94.14074210581755
Iteration: 7, Func. Count: 111, Neg. LLF: 94.68671251668236
Iteration: 8, Func. Count: 127, Neg. LLF: 99.35564046720124
Iteration: 9, Func. Count: 144, Neg. LLF: 93.59979557187555
Iteration: 10, Func. Count: 160, Neg. LLF: 93.79882103596388
Iteration: 11, Func. Count: 176, Neg. LLF: 93.16395096238688
Iteration: 12, Func. Count: 191, Neg. LLF: 93.1506882645337
Iteration: 13, Func. Count: 206, Neg. LLF: 93.14684513057577
Iteration: 14, Func. Count: 221, Neg. LLF: 93.14545090646341
Iteration: 15, Func. Count: 236, Neg. LLF: 93.14515819662887
Iteration: 16, Func. Count: 251, Neg. LLF: 93.14509272824962
Iteration: 17, Func. Count: 266, Neg. LLF: 93.14508381220683
Iteration: 18, Func. Count: 281, Neg. LLF: 93.14508141375917
Iteration: 19, Func. Count: 295, Neg. LLF: 93.14508141372579
Optimization terminated successfully (Exit mode 0)
Current function value: 93.14508141375917
Iterations: 19
Function evaluations: 295
Gradient evaluations: 19
Iteration: 1, Func. Count: 8, Neg. LLF: 32271492.81171436
Iteration: 2, Func. Count: 16, Neg. LLF: 112.8196233976973
Iteration: 3, Func. Count: 25, Neg. LLF: 98.00818325622254
Iteration: 4, Func. Count: 33, Neg. LLF: 94.09808307958365
Iteration: 5, Func. Count: 40, Neg. LLF: 94.50360855825622
Iteration: 6, Func. Count: 48, Neg. LLF: 94.01793532109899
Iteration: 7, Func. Count: 55, Neg. LLF: 94.01099079183345
Iteration: 8, Func. Count: 62, Neg. LLF: 94.04369993849113
Iteration: 9, Func. Count: 70, Neg. LLF: 93.99389783481124
Iteration: 10, Func. Count: 77, Neg. LLF: 93.99332297388685
Iteration: 11, Func. Count: 84, Neg. LLF: 93.99303606679135
Iteration: 12, Func. Count: 91, Neg. LLF: 93.9925915777469
Iteration: 13, Func. Count: 98, Neg. LLF: 93.99252822107698
Iteration: 14, Func. Count: 105, Neg. LLF: 93.99252223833801
Iteration: 15, Func. Count: 111, Neg. LLF: 93.99252223838948
Optimization terminated successfully (Exit mode 0)
Current function value: 93.99252223833801
Iterations: 15
Function evaluations: 111
Gradient evaluations: 15
Iteration: 1, Func. Count: 5, Neg. LLF: 124.36031312059198
Iteration: 2, Func. Count: 12, Neg. LLF: 98.88726082823932
Iteration: 3, Func. Count: 16, Neg. LLF: 98.716854384874
Iteration: 4, Func. Count: 20, Neg. LLF: 98.70043499157337
Iteration: 5, Func. Count: 24, Neg. LLF: 98.69985010941426
Iteration: 6, Func. Count: 28, Neg. LLF: 98.69984687109599
Iteration: 7, Func. Count: 32, Neg. LLF: 98.69984587434651
Optimization terminated successfully (Exit mode 0)
Current function value: 98.69984587434651
Iterations: 7
Function evaluations: 32
Gradient evaluations: 7
Iteration: 1, Func. Count: 6, Neg. LLF: 226576733.631231
Iteration: 2, Func. Count: 13, Neg. LLF: 312.2955822106025
Iteration: 3, Func. Count: 21, Neg. LLF: 99.52881043496302
Iteration: 4, Func. Count: 27, Neg. LLF: 95.76951561074353
Iteration: 5, Func. Count: 32, Neg. LLF: 95.6376779916738
Iteration: 6, Func. Count: 37, Neg. LLF: 95.83924973939855
Iteration: 7, Func. Count: 43, Neg. LLF: 95.61606128417961
Iteration: 8, Func. Count: 48, Neg. LLF: 95.61590588913009
Iteration: 9, Func. Count: 53, Neg. LLF: 95.61586061517052
Iteration: 10, Func. Count: 58, Neg. LLF: 95.61585894936826
Iteration: 11, Func. Count: 62, Neg. LLF: 95.61585894921744
Optimization terminated successfully (Exit mode 0)
Current function value: 95.61585894936826
Iterations: 11
Function evaluations: 62
Gradient evaluations: 11
Iteration: 1, Func. Count: 7, Neg. LLF: 236150371.97571173
Iteration: 2, Func. Count: 15, Neg. LLF: 102.62836129769698
Iteration: 3, Func. Count: 22, Neg. LLF: 167.88604904167926
Iteration: 4, Func. Count: 29, Neg. LLF: 95.64268803412305
Iteration: 5, Func. Count: 35, Neg. LLF: 95.80514490326173
Iteration: 6, Func. Count: 42, Neg. LLF: 95.6336307380575
Iteration: 7, Func. Count: 49, Neg. LLF: 95.61591181194193
Iteration: 8, Func. Count: 55, Neg. LLF: 95.61585884424166
Iteration: 9, Func. Count: 60, Neg. LLF: 95.61585885182127
Optimization terminated successfully (Exit mode 0)
Current function value: 95.61585884424166
Iterations: 9
Function evaluations: 60
Gradient evaluations: 9
Iteration: 1, Func. Count: 8, Neg. LLF: 93952987.10971132
Iteration: 2, Func. Count: 17, Neg. LLF: 101.71659804248571
Iteration: 3, Func. Count: 25, Neg. LLF: 100.82060956282075
Iteration: 4, Func. Count: 33, Neg. LLF: 99.57506650568331
Iteration: 5, Func. Count: 41, Neg. LLF: 98.15088522557018
Iteration: 6, Func. Count: 49, Neg. LLF: 98.80738290036935
Iteration: 7, Func. Count: 57, Neg. LLF: 96.3785756342299
Iteration: 8, Func. Count: 65, Neg. LLF: 97.63093415514678
Iteration: 9, Func. Count: 73, Neg. LLF: 95.83519243869713
Iteration: 10, Func. Count: 80, Neg. LLF: 95.8784749845291
Iteration: 11, Func. Count: 88, Neg. LLF: 95.66553191993917
Iteration: 12, Func. Count: 95, Neg. LLF: 95.6233311669881
Iteration: 13, Func. Count: 102, Neg. LLF: 95.61895641846046
Iteration: 14, Func. Count: 109, Neg. LLF: 95.61594059468187
Iteration: 15, Func. Count: 116, Neg. LLF: 95.61586147734018
Iteration: 16, Func. Count: 123, Neg. LLF: 95.6158588262019
Iteration: 17, Func. Count: 129, Neg. LLF: 95.61585883264885
Optimization terminated successfully (Exit mode 0)
Current function value: 95.6158588262019
Iterations: 17
Function evaluations: 129
Gradient evaluations: 17
Iteration: 1, Func. Count: 9, Neg. LLF: 90901054.9594143
Iteration: 2, Func. Count: 19, Neg. LLF: 3182.80169001204
Iteration: 3, Func. Count: 28, Neg. LLF: 97.86595072402716
Iteration: 4, Func. Count: 37, Neg. LLF: 100.97664611892826
Iteration: 5, Func. Count: 46, Neg. LLF: 97.4822354353977
Iteration: 6, Func. Count: 55, Neg. LLF: 95.94924181193392
Iteration: 7, Func. Count: 63, Neg. LLF: 97.23060996742173
Iteration: 8, Func. Count: 72, Neg. LLF: 106.36801587880969
Iteration: 9, Func. Count: 81, Neg. LLF: 95.75016955239842
Iteration: 10, Func. Count: 89, Neg. LLF: 95.71877988980002
Iteration: 11, Func. Count: 97, Neg. LLF: 95.68461690698403
Iteration: 12, Func. Count: 105, Neg. LLF: 95.63013711571566
Iteration: 13, Func. Count: 113, Neg. LLF: 95.61750369847269
Iteration: 14, Func. Count: 121, Neg. LLF: 95.61595010304126
Iteration: 15, Func. Count: 129, Neg. LLF: 95.61587398765919
Iteration: 16, Func. Count: 137, Neg. LLF: 95.6158591522041
Iteration: 17, Func. Count: 144, Neg. LLF: 95.61585916372077
Optimization terminated successfully (Exit mode 0)
Current function value: 95.6158591522041
Iterations: 17
Function evaluations: 144
Gradient evaluations: 17
Iteration: 1, Func. Count: 6, Neg. LLF: 125.95640361873484
Iteration: 2, Func. Count: 14, Neg. LLF: 68306702.69001712
Iteration: 3, Func. Count: 20, Neg. LLF: 4901173.983625745
Iteration: 4, Func. Count: 26, Neg. LLF: 96.85701104771044
Iteration: 5, Func. Count: 31, Neg. LLF: 96.8535574145552
Iteration: 6, Func. Count: 36, Neg. LLF: 96.85281959036368
Iteration: 7, Func. Count: 41, Neg. LLF: 96.85261743851144
Iteration: 8, Func. Count: 46, Neg. LLF: 96.85235821965162
Iteration: 9, Func. Count: 51, Neg. LLF: 96.85233779874883
Iteration: 10, Func. Count: 56, Neg. LLF: 96.85233667277699
Iteration: 11, Func. Count: 60, Neg. LLF: 96.85233667278067
Optimization terminated successfully (Exit mode 0)
Current function value: 96.85233667277699
Iterations: 11
Function evaluations: 60
Gradient evaluations: 11
Iteration: 1, Func. Count: 7, Neg. LLF: 219505822.45903563
Iteration: 2, Func. Count: 15, Neg. LLF: 242.78792061109368
Iteration: 3, Func. Count: 24, Neg. LLF: 96.35132523586078
Iteration: 4, Func. Count: 31, Neg. LLF: 95.34831710187325
Iteration: 5, Func. Count: 37, Neg. LLF: 95.33266894673238
Iteration: 6, Func. Count: 44, Neg. LLF: 95.2518195632036
Iteration: 7, Func. Count: 50, Neg. LLF: 95.24807002918419
Iteration: 8, Func. Count: 56, Neg. LLF: 95.24798576791389
Iteration: 9, Func. Count: 62, Neg. LLF: 95.2479752407523
Iteration: 10, Func. Count: 67, Neg. LLF: 95.24797524075679
Optimization terminated successfully (Exit mode 0)
Current function value: 95.2479752407523
Iterations: 10
Function evaluations: 67
Gradient evaluations: 10
Iteration: 1, Func. Count: 8, Neg. LLF: 251616479.03882486
Iteration: 2, Func. Count: 17, Neg. LLF: 3062328.2465446535
Iteration: 3, Func. Count: 26, Neg. LLF: 141.6969089735919
Iteration: 4, Func. Count: 34, Neg. LLF: 94.70805628099171
Iteration: 5, Func. Count: 41, Neg. LLF: 95.03882284216276
Iteration: 6, Func. Count: 52, Neg. LLF: 94.48418514439744
Iteration: 7, Func. Count: 60, Neg. LLF: 94.08336818178479
Iteration: 8, Func. Count: 67, Neg. LLF: 95.52482308075444
Iteration: 9, Func. Count: 75, Neg. LLF: 94.0751764588081
Iteration: 10, Func. Count: 82, Neg. LLF: 94.07479570186271
Iteration: 11, Func. Count: 89, Neg. LLF: 94.07431109254772
Iteration: 12, Func. Count: 96, Neg. LLF: 94.07422709843891
Iteration: 13, Func. Count: 103, Neg. LLF: 94.07419016301081
Iteration: 14, Func. Count: 110, Neg. LLF: 94.07418886883792
Iteration: 15, Func. Count: 116, Neg. LLF: 94.07418886862547
Optimization terminated successfully (Exit mode 0)
Current function value: 94.07418886883792
Iterations: 15
Function evaluations: 116
Gradient evaluations: 15
Iteration: 1, Func. Count: 9, Neg. LLF: 86539279.92088154
Iteration: 2, Func. Count: 19, Neg. LLF: 7382847.024387048
Iteration: 3, Func. Count: 28, Neg. LLF: 109.56229623538873
Iteration: 4, Func. Count: 38, Neg. LLF: 96.29382556111725
Iteration: 5, Func. Count: 47, Neg. LLF: 95.56273003190442
Iteration: 6, Func. Count: 56, Neg. LLF: 94.83439499779907
Iteration: 7, Func. Count: 65, Neg. LLF: 94.49657439030067
Iteration: 8, Func. Count: 73, Neg. LLF: 95.85729443888692
Iteration: 9, Func. Count: 82, Neg. LLF: 98.86399099590626
Iteration: 10, Func. Count: 91, Neg. LLF: 94.1265616686623
Iteration: 11, Func. Count: 99, Neg. LLF: 94.09325806937312
Iteration: 12, Func. Count: 107, Neg. LLF: 94.08361836306129
Iteration: 13, Func. Count: 115, Neg. LLF: 94.07734816199361
Iteration: 14, Func. Count: 123, Neg. LLF: 94.07443859903476
Iteration: 15, Func. Count: 131, Neg. LLF: 94.07419074112342
Iteration: 16, Func. Count: 139, Neg. LLF: 94.074188772207
Iteration: 17, Func. Count: 146, Neg. LLF: 94.0741888208674
Optimization terminated successfully (Exit mode 0)
Current function value: 94.074188772207
Iterations: 17
Function evaluations: 146
Gradient evaluations: 17
Iteration: 1, Func. Count: 10, Neg. LLF: 89897906.21386257
Iteration: 2, Func. Count: 21, Neg. LLF: 7702428.19981853
Iteration: 3, Func. Count: 31, Neg. LLF: 96.92673473418748
Iteration: 4, Func. Count: 41, Neg. LLF: 95.36903183779094
Iteration: 5, Func. Count: 51, Neg. LLF: 95.78492549358596
Iteration: 6, Func. Count: 61, Neg. LLF: 93.96743174600176
Iteration: 7, Func. Count: 70, Neg. LLF: 94.22339238364236
Iteration: 8, Func. Count: 80, Neg. LLF: 93.98214906595528
Iteration: 9, Func. Count: 90, Neg. LLF: 93.88223455247896
Iteration: 10, Func. Count: 100, Neg. LLF: 93.83293589701047
Iteration: 11, Func. Count: 110, Neg. LLF: 93.54765277387818
Iteration: 12, Func. Count: 119, Neg. LLF: 101.57629961116264
Iteration: 13, Func. Count: 129, Neg. LLF: 93.39302546854324
Iteration: 14, Func. Count: 138, Neg. LLF: 93.36667383599975
Iteration: 15, Func. Count: 147, Neg. LLF: 93.35758559325808
Iteration: 16, Func. Count: 156, Neg. LLF: 93.35633544353463
Iteration: 17, Func. Count: 165, Neg. LLF: 93.35626296683989
Iteration: 18, Func. Count: 174, Neg. LLF: 93.35625676646062
Iteration: 19, Func. Count: 183, Neg. LLF: 93.35624980899632
Iteration: 20, Func. Count: 192, Neg. LLF: 93.35624589302721
Iteration: 21, Func. Count: 201, Neg. LLF: 93.35624475888712
Iteration: 22, Func. Count: 209, Neg. LLF: 93.35624475064974
Optimization terminated successfully (Exit mode 0)
Current function value: 93.35624475888712
Iterations: 22
Function evaluations: 209
Gradient evaluations: 22
Iteration: 1, Func. Count: 7, Neg. LLF: 128.47935624889516
Iteration: 2, Func. Count: 16, Neg. LLF: 97150086.610716
Iteration: 3, Func. Count: 23, Neg. LLF: 4878957.937182116
Iteration: 4, Func. Count: 30, Neg. LLF: 96.88171893440564
Iteration: 5, Func. Count: 36, Neg. LLF: 96.86142492374775
Iteration: 6, Func. Count: 42, Neg. LLF: 96.85863378252573
Iteration: 7, Func. Count: 48, Neg. LLF: 96.8524499286641
Iteration: 8, Func. Count: 54, Neg. LLF: 96.85233780744414
Iteration: 9, Func. Count: 60, Neg. LLF: 96.85233666420572
Iteration: 10, Func. Count: 65, Neg. LLF: 96.85233670310018
Optimization terminated successfully (Exit mode 0)
Current function value: 96.85233666420572
Iterations: 10
Function evaluations: 65
Gradient evaluations: 10
Iteration: 1, Func. Count: 8, Neg. LLF: 198374162.94664404
Iteration: 2, Func. Count: 17, Neg. LLF: 275.7901376873061
Iteration: 3, Func. Count: 27, Neg. LLF: 101.62530286673085
Iteration: 4, Func. Count: 35, Neg. LLF: 95.32483916439263
Iteration: 5, Func. Count: 42, Neg. LLF: 95.28202796296576
Iteration: 6, Func. Count: 49, Neg. LLF: 95.25126942246669
Iteration: 7, Func. Count: 56, Neg. LLF: 95.25903558052876
Iteration: 8, Func. Count: 64, Neg. LLF: 95.24816644106238
Iteration: 9, Func. Count: 71, Neg. LLF: 95.24797525515731
Iteration: 10, Func. Count: 77, Neg. LLF: 95.24797525533802
Optimization terminated successfully (Exit mode 0)
Current function value: 95.24797525515731
Iterations: 10
Function evaluations: 77
Gradient evaluations: 10
Iteration: 1, Func. Count: 9, Neg. LLF: 224261079.14788127
Iteration: 2, Func. Count: 19, Neg. LLF: 2908776.3784043756
Iteration: 3, Func. Count: 29, Neg. LLF: 159.45034049656843
Iteration: 4, Func. Count: 38, Neg. LLF: 94.59838578068458
Iteration: 5, Func. Count: 46, Neg. LLF: 95.08363744520092
Iteration: 6, Func. Count: 58, Neg. LLF: 94.46113457690257
Iteration: 7, Func. Count: 67, Neg. LLF: 94.08473490487391
Iteration: 8, Func. Count: 75, Neg. LLF: 94.7685377031736
Iteration: 9, Func. Count: 84, Neg. LLF: 94.07561876112665
Iteration: 10, Func. Count: 92, Neg. LLF: 94.07461830340192
Iteration: 11, Func. Count: 100, Neg. LLF: 94.07443475055668
Iteration: 12, Func. Count: 108, Neg. LLF: 94.07421750497272
Iteration: 13, Func. Count: 116, Neg. LLF: 94.07419237248402
Iteration: 14, Func. Count: 124, Neg. LLF: 94.07418869708034
Iteration: 15, Func. Count: 131, Neg. LLF: 94.07418869707091
Optimization terminated successfully (Exit mode 0)
Current function value: 94.07418869708034
Iterations: 15
Function evaluations: 131
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 78042786.30805165
Iteration: 2, Func. Count: 21, Neg. LLF: 7912005.767616706
Iteration: 3, Func. Count: 31, Neg. LLF: 97.19306961812798
Iteration: 4, Func. Count: 41, Neg. LLF: 95.43505024382385
Iteration: 5, Func. Count: 51, Neg. LLF: 95.33035016952564
Iteration: 6, Func. Count: 61, Neg. LLF: 94.87061185757281
Iteration: 7, Func. Count: 71, Neg. LLF: 94.46943006456927
Iteration: 8, Func. Count: 80, Neg. LLF: 94.17314684450659
Iteration: 9, Func. Count: 89, Neg. LLF: 103.26049143718146
Iteration: 10, Func. Count: 100, Neg. LLF: 94.09723503660621
Iteration: 11, Func. Count: 109, Neg. LLF: 94.08356563380421
Iteration: 12, Func. Count: 118, Neg. LLF: 94.07668246924428
Iteration: 13, Func. Count: 127, Neg. LLF: 94.07498737154667
Iteration: 14, Func. Count: 136, Neg. LLF: 94.07432674564622
Iteration: 15, Func. Count: 145, Neg. LLF: 94.07419184643318
Iteration: 16, Func. Count: 154, Neg. LLF: 94.07418869609401
Iteration: 17, Func. Count: 162, Neg. LLF: 94.07418874486564
Optimization terminated successfully (Exit mode 0)
Current function value: 94.07418869609401
Iterations: 17
Function evaluations: 162
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 80001017.02721329
Iteration: 2, Func. Count: 23, Neg. LLF: 9791416.966578048
Iteration: 3, Func. Count: 34, Neg. LLF: 84857223.77028956
Iteration: 4, Func. Count: 46, Neg. LLF: 95.75704683260075
Iteration: 5, Func. Count: 57, Neg. LLF: 94.5348520391771
Iteration: 6, Func. Count: 67, Neg. LLF: 94.33527263913116
Iteration: 7, Func. Count: 78, Neg. LLF: 93.4416204995382
Iteration: 8, Func. Count: 88, Neg. LLF: 93.42769134707127
Iteration: 9, Func. Count: 99, Neg. LLF: 93.36222896642744
Iteration: 10, Func. Count: 109, Neg. LLF: 93.35682849855918
Iteration: 11, Func. Count: 119, Neg. LLF: 93.35646822343828
Iteration: 12, Func. Count: 129, Neg. LLF: 93.35626427137905
Iteration: 13, Func. Count: 139, Neg. LLF: 93.35624503791891
Iteration: 14, Func. Count: 148, Neg. LLF: 93.35624502959497
Optimization terminated successfully (Exit mode 0)
Current function value: 93.35624503791891
Iterations: 14
Function evaluations: 148
Gradient evaluations: 14
Iteration: 1, Func. Count: 8, Neg. LLF: 125.11265831062356
Iteration: 2, Func. Count: 18, Neg. LLF: 61987663.817989595
Iteration: 3, Func. Count: 26, Neg. LLF: 2158668.1549446443
Iteration: 4, Func. Count: 34, Neg. LLF: 7352290.936845722
Iteration: 5, Func. Count: 42, Neg. LLF: 96.1114064363179
Iteration: 6, Func. Count: 49, Neg. LLF: 478899.4063399165
Iteration: 7, Func. Count: 58, Neg. LLF: 96.05810688809252
Iteration: 8, Func. Count: 65, Neg. LLF: 96.01951235147735
Iteration: 9, Func. Count: 72, Neg. LLF: 95.98680888192159
Iteration: 10, Func. Count: 79, Neg. LLF: 95.97679922295247
Iteration: 11, Func. Count: 86, Neg. LLF: 95.97626019849179
Iteration: 12, Func. Count: 93, Neg. LLF: 95.97623293408267
Iteration: 13, Func. Count: 100, Neg. LLF: 95.97623084981429
Iteration: 14, Func. Count: 106, Neg. LLF: 95.97623084981477
Optimization terminated successfully (Exit mode 0)
Current function value: 95.97623084981429
Iterations: 14
Function evaluations: 106
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 200851443.53826568
Iteration: 2, Func. Count: 19, Neg. LLF: 301.577398821854
Iteration: 3, Func. Count: 30, Neg. LLF: 106.19675055514953
Iteration: 4, Func. Count: 39, Neg. LLF: 95.35393445038024
Iteration: 5, Func. Count: 47, Neg. LLF: 95.39683379145292
Iteration: 6, Func. Count: 56, Neg. LLF: 95.45160334031831
Iteration: 7, Func. Count: 65, Neg. LLF: 95.26019908332104
Iteration: 8, Func. Count: 73, Neg. LLF: 95.2489043420377
Iteration: 9, Func. Count: 81, Neg. LLF: 95.24797802441992
Iteration: 10, Func. Count: 89, Neg. LLF: 95.24797618497412
Iteration: 11, Func. Count: 97, Neg. LLF: 95.24797523930525
Optimization terminated successfully (Exit mode 0)
Current function value: 95.24797523930525
Iterations: 11
Function evaluations: 97
Gradient evaluations: 11
Iteration: 1, Func. Count: 10, Neg. LLF: 235910832.02240205
Iteration: 2, Func. Count: 21, Neg. LLF: 2895466.8003088427
Iteration: 3, Func. Count: 32, Neg. LLF: 159.3365551491048
Iteration: 4, Func. Count: 42, Neg. LLF: 94.51454392046469
Iteration: 5, Func. Count: 51, Neg. LLF: 95.05989486403878
Iteration: 6, Func. Count: 64, Neg. LLF: 94.39692385406113
Iteration: 7, Func. Count: 74, Neg. LLF: 94.08064128812354
Iteration: 8, Func. Count: 83, Neg. LLF: 94.69090541599455
Iteration: 9, Func. Count: 93, Neg. LLF: 94.0744013577806
Iteration: 10, Func. Count: 102, Neg. LLF: 94.07419038901811
Iteration: 11, Func. Count: 111, Neg. LLF: 94.07418881863903
Iteration: 12, Func. Count: 119, Neg. LLF: 94.07418881868941
Optimization terminated successfully (Exit mode 0)
Current function value: 94.07418881863903
Iterations: 12
Function evaluations: 119
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 82615872.30201839
Iteration: 2, Func. Count: 23, Neg. LLF: 9007187.367537828
Iteration: 3, Func. Count: 34, Neg. LLF: 106.72360555680801
Iteration: 4, Func. Count: 45, Neg. LLF: 96.31578414395837
Iteration: 5, Func. Count: 56, Neg. LLF: 96.06845998414857
Iteration: 6, Func. Count: 67, Neg. LLF: 94.77852092697012
Iteration: 7, Func. Count: 77, Neg. LLF: 95.8856621634611
Iteration: 8, Func. Count: 89, Neg. LLF: 104.4069298442624
Iteration: 9, Func. Count: 100, Neg. LLF: 94.1352464845173
Iteration: 10, Func. Count: 110, Neg. LLF: 94.0844319265297
Iteration: 11, Func. Count: 120, Neg. LLF: 94.08093537496484
Iteration: 12, Func. Count: 130, Neg. LLF: 94.07616627802055
Iteration: 13, Func. Count: 140, Neg. LLF: 94.0750054880624
Iteration: 14, Func. Count: 150, Neg. LLF: 94.07427640727525
Iteration: 15, Func. Count: 160, Neg. LLF: 94.07418895140448
Iteration: 16, Func. Count: 169, Neg. LLF: 94.07418900027913
Optimization terminated successfully (Exit mode 0)
Current function value: 94.07418895140448
Iterations: 16
Function evaluations: 169
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 87030203.06541069
Iteration: 2, Func. Count: 25, Neg. LLF: 10204073.144112587
Iteration: 3, Func. Count: 37, Neg. LLF: 312.85209972136414
Iteration: 4, Func. Count: 50, Neg. LLF: 124.64447604268561
Iteration: 5, Func. Count: 62, Neg. LLF: 93.91248020116637
Iteration: 6, Func. Count: 73, Neg. LLF: 93.68375709894897
Iteration: 7, Func. Count: 85, Neg. LLF: 93.26890552420176
Iteration: 8, Func. Count: 97, Neg. LLF: 93.03890472745246
Iteration: 9, Func. Count: 108, Neg. LLF: 92.99472197622008
Iteration: 10, Func. Count: 119, Neg. LLF: 92.99076634636286
Iteration: 11, Func. Count: 130, Neg. LLF: 92.9904122239914
Iteration: 12, Func. Count: 141, Neg. LLF: 92.99040279192427
Iteration: 13, Func. Count: 152, Neg. LLF: 92.990400001191
Iteration: 14, Func. Count: 162, Neg. LLF: 92.99039997199773
Optimization terminated successfully (Exit mode 0)
Current function value: 92.990400001191
Iterations: 14
Function evaluations: 162
Gradient evaluations: 14
Iteration: 1, Func. Count: 5, Neg. LLF: 125.53639175602473
Iteration: 2, Func. Count: 12, Neg. LLF: 121.63908596103423
Iteration: 3, Func. Count: 17, Neg. LLF: 98.7107545693044
Iteration: 4, Func. Count: 21, Neg. LLF: 98.70728239047553
Iteration: 5, Func. Count: 25, Neg. LLF: 98.70106642196822
Iteration: 6, Func. Count: 29, Neg. LLF: 98.70001902096423
Iteration: 7, Func. Count: 33, Neg. LLF: 98.69984951342772
Iteration: 8, Func. Count: 37, Neg. LLF: 98.69984568591566
Iteration: 9, Func. Count: 40, Neg. LLF: 98.69984570533114
Optimization terminated successfully (Exit mode 0)
Current function value: 98.69984568591566
Iterations: 9
Function evaluations: 40
Gradient evaluations: 9
Iteration: 1, Func. Count: 6, Neg. LLF: 26614220.317140818
Iteration: 2, Func. Count: 13, Neg. LLF: 295.7075537030886
Iteration: 3, Func. Count: 20, Neg. LLF: 108.88556177050071
Iteration: 4, Func. Count: 26, Neg. LLF: 96.12678455137733
Iteration: 5, Func. Count: 31, Neg. LLF: 96.30541607288315
Iteration: 6, Func. Count: 37, Neg. LLF: 95.95513692823923
Iteration: 7, Func. Count: 42, Neg. LLF: 95.95694427730426
Iteration: 8, Func. Count: 48, Neg. LLF: 95.95175211442219
Iteration: 9, Func. Count: 53, Neg. LLF: 95.95163591374624
Iteration: 10, Func. Count: 57, Neg. LLF: 95.95163591363936
Optimization terminated successfully (Exit mode 0)
Current function value: 95.95163591374624
Iterations: 10
Function evaluations: 57
Gradient evaluations: 10
Iteration: 1, Func. Count: 7, Neg. LLF: 41544778.75343982
Iteration: 2, Func. Count: 15, Neg. LLF: 884.4437051289658
Iteration: 3, Func. Count: 24, Neg. LLF: 99.93810491693581
Iteration: 4, Func. Count: 31, Neg. LLF: 112.66842329532264
Iteration: 5, Func. Count: 38, Neg. LLF: 102.48233914503226
Iteration: 6, Func. Count: 45, Neg. LLF: 99.97062919370158
Iteration: 7, Func. Count: 52, Neg. LLF: 98.92923661491946
Iteration: 8, Func. Count: 59, Neg. LLF: 97.30834588169685
Iteration: 9, Func. Count: 66, Neg. LLF: 96.14667143944594
Iteration: 10, Func. Count: 72, Neg. LLF: 96.95260887017574
Iteration: 11, Func. Count: 79, Neg. LLF: 95.95443454396691
Iteration: 12, Func. Count: 85, Neg. LLF: 95.95219331246118
Iteration: 13, Func. Count: 91, Neg. LLF: 95.95163639275962
Iteration: 14, Func. Count: 96, Neg. LLF: 95.9516363959357
Optimization terminated successfully (Exit mode 0)
Current function value: 95.95163639275962
Iterations: 14
Function evaluations: 96
Gradient evaluations: 14
Iteration: 1, Func. Count: 8, Neg. LLF: 32765272.162089486
Iteration: 2, Func. Count: 17, Neg. LLF: 383.94446104345855
Iteration: 3, Func. Count: 26, Neg. LLF: 111.63517397806768
Iteration: 4, Func. Count: 34, Neg. LLF: 103.52540364062334
Iteration: 5, Func. Count: 42, Neg. LLF: 98.13817940302268
Iteration: 6, Func. Count: 50, Neg. LLF: 99.37492641534382
Iteration: 7, Func. Count: 58, Neg. LLF: 96.66808365020727
Iteration: 8, Func. Count: 66, Neg. LLF: 96.13151498281434
Iteration: 9, Func. Count: 73, Neg. LLF: 96.1561033959238
Iteration: 10, Func. Count: 81, Neg. LLF: 95.99587272540559
Iteration: 11, Func. Count: 88, Neg. LLF: 95.9929027341459
Iteration: 12, Func. Count: 95, Neg. LLF: 95.97496828424794
Iteration: 13, Func. Count: 102, Neg. LLF: 95.97329338633267
Iteration: 14, Func. Count: 109, Neg. LLF: 95.97141879315603
Iteration: 15, Func. Count: 116, Neg. LLF: 95.96706017136208
Iteration: 16, Func. Count: 123, Neg. LLF: 95.95707777522382
Iteration: 17, Func. Count: 130, Neg. LLF: 95.95455748894035
Iteration: 18, Func. Count: 137, Neg. LLF: 95.95167318276486
Iteration: 19, Func. Count: 144, Neg. LLF: 95.95163598327365
Iteration: 20, Func. Count: 150, Neg. LLF: 95.95163598668253
Optimization terminated successfully (Exit mode 0)
Current function value: 95.95163598327365
Iterations: 20
Function evaluations: 150
Gradient evaluations: 20
Iteration: 1, Func. Count: 9, Neg. LLF: 21535344.39965465
Iteration: 2, Func. Count: 19, Neg. LLF: 196.0664915135438
Iteration: 3, Func. Count: 28, Neg. LLF: 126.21658522249614
Iteration: 4, Func. Count: 37, Neg. LLF: 105.22822944524964
Iteration: 5, Func. Count: 46, Neg. LLF: 98.28193711156801
Iteration: 6, Func. Count: 55, Neg. LLF: 98.15163155534918
Iteration: 7, Func. Count: 64, Neg. LLF: 96.73111658638689
Iteration: 8, Func. Count: 73, Neg. LLF: 97.66635821126148
Iteration: 9, Func. Count: 82, Neg. LLF: 96.7860555145852
Iteration: 10, Func. Count: 91, Neg. LLF: 96.3756651559778
Iteration: 11, Func. Count: 100, Neg. LLF: 96.11701691228558
Iteration: 12, Func. Count: 108, Neg. LLF: 96.03723000909123
Iteration: 13, Func. Count: 116, Neg. LLF: 96.02551665446548
Iteration: 14, Func. Count: 124, Neg. LLF: 95.95630545479949
Iteration: 15, Func. Count: 132, Neg. LLF: 95.95318962726742
Iteration: 16, Func. Count: 140, Neg. LLF: 95.95163895907667
Iteration: 17, Func. Count: 148, Neg. LLF: 95.9516360562099
Iteration: 18, Func. Count: 155, Neg. LLF: 95.95163606487242
Optimization terminated successfully (Exit mode 0)
Current function value: 95.9516360562099
Iterations: 18
Function evaluations: 155
Gradient evaluations: 18
Iteration: 1, Func. Count: 6, Neg. LLF: 119.43462628844507
Iteration: 2, Func. Count: 13, Neg. LLF: 125.22062193540536
Iteration: 3, Func. Count: 19, Neg. LLF: 99.00664855348663
Iteration: 4, Func. Count: 24, Neg. LLF: 104.24481029255693
Iteration: 5, Func. Count: 30, Neg. LLF: 98.81223478424901
Iteration: 6, Func. Count: 36, Neg. LLF: 98.6860938041866
Iteration: 7, Func. Count: 42, Neg. LLF: 98.67333519610658
Iteration: 8, Func. Count: 47, Neg. LLF: 98.67328548957737
Iteration: 9, Func. Count: 51, Neg. LLF: 98.67328544726485
Optimization terminated successfully (Exit mode 0)
Current function value: 98.67328548957737
Iterations: 9
Function evaluations: 51
Gradient evaluations: 9
Iteration: 1, Func. Count: 7, Neg. LLF: 199099185.92060038
Iteration: 2, Func. Count: 15, Neg. LLF: 355.68006497834614
Iteration: 3, Func. Count: 24, Neg. LLF: 103.15425140628166
Iteration: 4, Func. Count: 31, Neg. LLF: 95.66976307890005
Iteration: 5, Func. Count: 37, Neg. LLF: 95.63627617076317
Iteration: 6, Func. Count: 43, Neg. LLF: 95.62783225027323
Iteration: 7, Func. Count: 49, Neg. LLF: 95.61795629745181
Iteration: 8, Func. Count: 55, Neg. LLF: 95.61635121733084
Iteration: 9, Func. Count: 61, Neg. LLF: 95.61587828586947
Iteration: 10, Func. Count: 67, Neg. LLF: 95.61585911876783
Iteration: 11, Func. Count: 72, Neg. LLF: 95.6158591190452
Optimization terminated successfully (Exit mode 0)
Current function value: 95.61585911876783
Iterations: 11
Function evaluations: 72
Gradient evaluations: 11
Iteration: 1, Func. Count: 8, Neg. LLF: 137501886.5882039
Iteration: 2, Func. Count: 17, Neg. LLF: 239.4494192032095
Iteration: 3, Func. Count: 27, Neg. LLF: 110.18275973754727
Iteration: 4, Func. Count: 35, Neg. LLF: 95.87454331019639
Iteration: 5, Func. Count: 42, Neg. LLF: 95.79542121666417
Iteration: 6, Func. Count: 49, Neg. LLF: 95.8062392905882
Iteration: 7, Func. Count: 57, Neg. LLF: 97.18326446956155
Iteration: 8, Func. Count: 65, Neg. LLF: 96.35143403195526
Iteration: 9, Func. Count: 73, Neg. LLF: 95.70762911770888
Iteration: 10, Func. Count: 81, Neg. LLF: 95.61814342670158
Iteration: 11, Func. Count: 88, Neg. LLF: 95.61599328864067
Iteration: 12, Func. Count: 95, Neg. LLF: 95.61587477132335
Iteration: 13, Func. Count: 102, Neg. LLF: 95.61585900392373
Iteration: 14, Func. Count: 108, Neg. LLF: 95.6158590103663
Optimization terminated successfully (Exit mode 0)
Current function value: 95.61585900392373
Iterations: 14
Function evaluations: 108
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 155317029.60463357
Iteration: 2, Func. Count: 19, Neg. LLF: 142.814459329875
Iteration: 3, Func. Count: 29, Neg. LLF: 147.64691552689152
Iteration: 4, Func. Count: 38, Neg. LLF: 96.5090863377221
Iteration: 5, Func. Count: 47, Neg. LLF: 100.81045449418893
Iteration: 6, Func. Count: 56, Neg. LLF: 95.67181092047332
Iteration: 7, Func. Count: 64, Neg. LLF: 95.65645054487959
Iteration: 8, Func. Count: 73, Neg. LLF: 95.61740221672275
Iteration: 9, Func. Count: 82, Neg. LLF: 95.6158618826828
Iteration: 10, Func. Count: 90, Neg. LLF: 95.61585880013737
Iteration: 11, Func. Count: 97, Neg. LLF: 95.6158588066284
Optimization terminated successfully (Exit mode 0)
Current function value: 95.61585880013737
Iterations: 11
Function evaluations: 97
Gradient evaluations: 11
Iteration: 1, Func. Count: 10, Neg. LLF: 91353405.52255325
Iteration: 2, Func. Count: 21, Neg. LLF: 131.29063995337376
Iteration: 3, Func. Count: 32, Neg. LLF: 248.17761215732594
Iteration: 4, Func. Count: 42, Neg. LLF: 101.04511081056977
Iteration: 5, Func. Count: 52, Neg. LLF: 96.45855310168518
Iteration: 6, Func. Count: 61, Neg. LLF: 97.79540493086515
Iteration: 7, Func. Count: 71, Neg. LLF: 96.31963954537059
Iteration: 8, Func. Count: 81, Neg. LLF: 95.73545417018673
Iteration: 9, Func. Count: 90, Neg. LLF: 95.64884927784682
Iteration: 10, Func. Count: 99, Neg. LLF: 95.6232149216393
Iteration: 11, Func. Count: 108, Neg. LLF: 95.61966406717157
Iteration: 12, Func. Count: 117, Neg. LLF: 95.61642766133227
Iteration: 13, Func. Count: 126, Neg. LLF: 95.61586554118475
Iteration: 14, Func. Count: 135, Neg. LLF: 95.61585914362715
Iteration: 15, Func. Count: 143, Neg. LLF: 95.6158591553421
Optimization terminated successfully (Exit mode 0)
Current function value: 95.61585914362715
Iterations: 15
Function evaluations: 143
Gradient evaluations: 15
Iteration: 1, Func. Count: 7, Neg. LLF: 128.81647370817734
Iteration: 2, Func. Count: 15, Neg. LLF: 279.24737995516404
Iteration: 3, Func. Count: 22, Neg. LLF: 6895865.322118682
Iteration: 4, Func. Count: 29, Neg. LLF: 97.21740208420076
Iteration: 5, Func. Count: 35, Neg. LLF: 98.71297060625761
Iteration: 6, Func. Count: 43, Neg. LLF: 100.27252527737997
Iteration: 7, Func. Count: 51, Neg. LLF: 96.8304980642027
Iteration: 8, Func. Count: 57, Neg. LLF: 96.77994248794226
Iteration: 9, Func. Count: 63, Neg. LLF: 96.7780143640752
Iteration: 10, Func. Count: 69, Neg. LLF: 96.77780473693397
Iteration: 11, Func. Count: 75, Neg. LLF: 96.77779705386294
Iteration: 12, Func. Count: 80, Neg. LLF: 96.77779705384386
Optimization terminated successfully (Exit mode 0)
Current function value: 96.77779705386294
Iterations: 12
Function evaluations: 80
Gradient evaluations: 12
Iteration: 1, Func. Count: 8, Neg. LLF: 191625289.58132458
Iteration: 2, Func. Count: 17, Neg. LLF: 284.7515684331114
Iteration: 3, Func. Count: 27, Neg. LLF: 96.75640884169978
Iteration: 4, Func. Count: 35, Neg. LLF: 95.30803860400177
Iteration: 5, Func. Count: 42, Neg. LLF: 95.2914524189833
Iteration: 6, Func. Count: 50, Neg. LLF: 95.25407992347183
Iteration: 7, Func. Count: 58, Neg. LLF: 95.24810510930054
Iteration: 8, Func. Count: 65, Neg. LLF: 95.24797525625345
Iteration: 9, Func. Count: 71, Neg. LLF: 95.24797525624268
Optimization terminated successfully (Exit mode 0)
Current function value: 95.24797525625345
Iterations: 9
Function evaluations: 71
Gradient evaluations: 9
Iteration: 1, Func. Count: 9, Neg. LLF: 147869898.07285276
Iteration: 2, Func. Count: 19, Neg. LLF: 420.0486630159282
Iteration: 3, Func. Count: 29, Neg. LLF: 124.68555646681389
Iteration: 4, Func. Count: 38, Neg. LLF: 94.5085800643634
Iteration: 5, Func. Count: 46, Neg. LLF: 95.4026452276908
Iteration: 6, Func. Count: 56, Neg. LLF: 96.15377088256744
Iteration: 7, Func. Count: 66, Neg. LLF: 94.33753996750318
Iteration: 8, Func. Count: 75, Neg. LLF: 94.11546335721815
Iteration: 9, Func. Count: 83, Neg. LLF: 94.13811918689592
Iteration: 10, Func. Count: 92, Neg. LLF: 94.07580264987182
Iteration: 11, Func. Count: 100, Neg. LLF: 94.07432430980282
Iteration: 12, Func. Count: 108, Neg. LLF: 94.07423601501316
Iteration: 13, Func. Count: 116, Neg. LLF: 94.07419560508406
Iteration: 14, Func. Count: 124, Neg. LLF: 94.07418951766527
Iteration: 15, Func. Count: 132, Neg. LLF: 94.07418867217615
Optimization terminated successfully (Exit mode 0)
Current function value: 94.07418867217615
Iterations: 15
Function evaluations: 132
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 111542099.97850242
Iteration: 2, Func. Count: 21, Neg. LLF: 357.10287458053676
Iteration: 3, Func. Count: 32, Neg. LLF: 132.41918660477543
Iteration: 4, Func. Count: 42, Neg. LLF: 98.22370960029993
Iteration: 5, Func. Count: 52, Neg. LLF: 95.50780322574992
Iteration: 6, Func. Count: 61, Neg. LLF: 94.50399762691812
Iteration: 7, Func. Count: 70, Neg. LLF: 101.1606786601255
Iteration: 8, Func. Count: 82, Neg. LLF: 94.12181246437345
Iteration: 9, Func. Count: 91, Neg. LLF: 94.18241489571031
Iteration: 10, Func. Count: 101, Neg. LLF: 94.07612963456425
Iteration: 11, Func. Count: 110, Neg. LLF: 94.07446863878282
Iteration: 12, Func. Count: 119, Neg. LLF: 94.07425704034453
Iteration: 13, Func. Count: 128, Neg. LLF: 94.07419479917655
Iteration: 14, Func. Count: 137, Neg. LLF: 94.0741888278585
Iteration: 15, Func. Count: 145, Neg. LLF: 94.0741888766991
Optimization terminated successfully (Exit mode 0)
Current function value: 94.0741888278585
Iterations: 15
Function evaluations: 145
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 96120137.67450239
Iteration: 2, Func. Count: 23, Neg. LLF: 5006808.309335049
Iteration: 3, Func. Count: 34, Neg. LLF: 168.51957724533864
Iteration: 4, Func. Count: 45, Neg. LLF: 99.86602949233793
Iteration: 5, Func. Count: 57, Neg. LLF: 94.39410750604462
Iteration: 6, Func. Count: 67, Neg. LLF: 93.944851098964
Iteration: 7, Func. Count: 77, Neg. LLF: 95.62940955270149
Iteration: 8, Func. Count: 89, Neg. LLF: 93.49569115968512
Iteration: 9, Func. Count: 99, Neg. LLF: 93.41193558284394
Iteration: 10, Func. Count: 109, Neg. LLF: 93.91924511928535
Iteration: 11, Func. Count: 121, Neg. LLF: 93.43705647101012
Iteration: 12, Func. Count: 132, Neg. LLF: 93.35903860542727
Iteration: 13, Func. Count: 142, Neg. LLF: 93.3563562948495
Iteration: 14, Func. Count: 152, Neg. LLF: 93.35624772395481
Iteration: 15, Func. Count: 162, Neg. LLF: 93.3562447794012
Iteration: 16, Func. Count: 171, Neg. LLF: 93.3562447711312
Optimization terminated successfully (Exit mode 0)
Current function value: 93.3562447794012
Iterations: 16
Function evaluations: 171
Gradient evaluations: 16
Iteration: 1, Func. Count: 8, Neg. LLF: 125.94672602110737
Iteration: 2, Func. Count: 17, Neg. LLF: 462.61815072399736
Iteration: 3, Func. Count: 25, Neg. LLF: 6892264.342972136
Iteration: 4, Func. Count: 33, Neg. LLF: 97.41607771167392
Iteration: 5, Func. Count: 40, Neg. LLF: 97.27615099148541
Iteration: 6, Func. Count: 48, Neg. LLF: 97.83283302783522
Iteration: 7, Func. Count: 56, Neg. LLF: 96.84789386572132
Iteration: 8, Func. Count: 63, Neg. LLF: 96.81815238515601
Iteration: 9, Func. Count: 70, Neg. LLF: 96.79470466758534
Iteration: 10, Func. Count: 77, Neg. LLF: 96.7791843106451
Iteration: 11, Func. Count: 84, Neg. LLF: 96.77784062415033
Iteration: 12, Func. Count: 91, Neg. LLF: 96.77779720340325
Iteration: 13, Func. Count: 98, Neg. LLF: 96.7777967713436
Optimization terminated successfully (Exit mode 0)
Current function value: 96.7777967713436
Iterations: 13
Function evaluations: 98
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 171684247.60757622
Iteration: 2, Func. Count: 19, Neg. LLF: 329.84901540271983
Iteration: 3, Func. Count: 30, Neg. LLF: 102.16323243444994
Iteration: 4, Func. Count: 39, Neg. LLF: 95.31605943697474
Iteration: 5, Func. Count: 47, Neg. LLF: 95.27597763531203
Iteration: 6, Func. Count: 55, Neg. LLF: 95.25062971373231
Iteration: 7, Func. Count: 63, Neg. LLF: 95.2619997276639
Iteration: 8, Func. Count: 72, Neg. LLF: 95.24797650479816
Iteration: 9, Func. Count: 80, Neg. LLF: 95.24797523967189
Iteration: 10, Func. Count: 87, Neg. LLF: 95.24797523966771
Optimization terminated successfully (Exit mode 0)
Current function value: 95.24797523967189
Iterations: 10
Function evaluations: 87
Gradient evaluations: 10
Iteration: 1, Func. Count: 10, Neg. LLF: 126956533.01294605
Iteration: 2, Func. Count: 21, Neg. LLF: 358.4908570723884
Iteration: 3, Func. Count: 32, Neg. LLF: 127.49912428233215
Iteration: 4, Func. Count: 42, Neg. LLF: 95.09839724419294
Iteration: 5, Func. Count: 51, Neg. LLF: 94.5257616294599
Iteration: 6, Func. Count: 60, Neg. LLF: 97.66066539827958
Iteration: 7, Func. Count: 71, Neg. LLF: 94.13184496117904
Iteration: 8, Func. Count: 80, Neg. LLF: 94.25289243837155
Iteration: 9, Func. Count: 90, Neg. LLF: 94.08344561019551
Iteration: 10, Func. Count: 99, Neg. LLF: 94.07647943173717
Iteration: 11, Func. Count: 108, Neg. LLF: 94.07445047338025
Iteration: 12, Func. Count: 117, Neg. LLF: 94.07420211010756
Iteration: 13, Func. Count: 126, Neg. LLF: 94.07419179107396
Iteration: 14, Func. Count: 135, Neg. LLF: 94.07418993022267
Iteration: 15, Func. Count: 144, Neg. LLF: 94.0741886523989
Iteration: 16, Func. Count: 152, Neg. LLF: 94.07418865242873
Optimization terminated successfully (Exit mode 0)
Current function value: 94.0741886523989
Iterations: 16
Function evaluations: 152
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 99009751.80882731
Iteration: 2, Func. Count: 23, Neg. LLF: 331.43859240017645
Iteration: 3, Func. Count: 35, Neg. LLF: 160.4628479310657
Iteration: 4, Func. Count: 46, Neg. LLF: 98.73440141972901
Iteration: 5, Func. Count: 58, Neg. LLF: 96.7554525824171
Iteration: 6, Func. Count: 69, Neg. LLF: 94.7396771265852
Iteration: 7, Func. Count: 79, Neg. LLF: 94.47449904712768
Iteration: 8, Func. Count: 89, Neg. LLF: 94.7758938788747
Iteration: 9, Func. Count: 100, Neg. LLF: 94.15402921730752
Iteration: 10, Func. Count: 110, Neg. LLF: 95.5452355461121
Iteration: 11, Func. Count: 121, Neg. LLF: 94.181997895992
Iteration: 12, Func. Count: 132, Neg. LLF: 94.08011530226987
Iteration: 13, Func. Count: 142, Neg. LLF: 94.07682148529982
Iteration: 14, Func. Count: 152, Neg. LLF: 94.07534460334011
Iteration: 15, Func. Count: 162, Neg. LLF: 94.0743308391304
Iteration: 16, Func. Count: 172, Neg. LLF: 94.07420630118631
Iteration: 17, Func. Count: 182, Neg. LLF: 94.07418943102503
Iteration: 18, Func. Count: 192, Neg. LLF: 94.07418867327465
Optimization terminated successfully (Exit mode 0)
Current function value: 94.07418867327465
Iterations: 18
Function evaluations: 192
Gradient evaluations: 18
Iteration: 1, Func. Count: 12, Neg. LLF: 86116064.737231
Iteration: 2, Func. Count: 25, Neg. LLF: 4866981.517511983
Iteration: 3, Func. Count: 37, Neg. LLF: 224.58305923021507
Iteration: 4, Func. Count: 50, Neg. LLF: 99.29306496545685
Iteration: 5, Func. Count: 62, Neg. LLF: 97.42481314016702
Iteration: 6, Func. Count: 74, Neg. LLF: 94.23201895627524
Iteration: 7, Func. Count: 85, Neg. LLF: 93.63213589146457
Iteration: 8, Func. Count: 96, Neg. LLF: 93.49934990816786
Iteration: 9, Func. Count: 107, Neg. LLF: 95.47098847837198
Iteration: 10, Func. Count: 120, Neg. LLF: 93.45030215680067
Iteration: 11, Func. Count: 132, Neg. LLF: 93.36584721298614
Iteration: 12, Func. Count: 143, Neg. LLF: 93.35729133567133
Iteration: 13, Func. Count: 154, Neg. LLF: 93.3564102349783
Iteration: 14, Func. Count: 165, Neg. LLF: 93.35629069187574
Iteration: 15, Func. Count: 176, Neg. LLF: 93.35624499348305
Iteration: 16, Func. Count: 186, Neg. LLF: 93.35624498485956
Optimization terminated successfully (Exit mode 0)
Current function value: 93.35624499348305
Iterations: 16
Function evaluations: 186
Gradient evaluations: 16
Iteration: 1, Func. Count: 9, Neg. LLF: 122.06485801591023
Iteration: 2, Func. Count: 19, Neg. LLF: 2882.273694699808
Iteration: 3, Func. Count: 28, Neg. LLF: 5373211.373044727
Iteration: 4, Func. Count: 37, Neg. LLF: 4394197.979308492
Iteration: 5, Func. Count: 46, Neg. LLF: 96.33754800309396
Iteration: 6, Func. Count: 54, Neg. LLF: 989914.5483499796
Iteration: 7, Func. Count: 64, Neg. LLF: 98.30607838509644
Iteration: 8, Func. Count: 73, Neg. LLF: 95.9970939776148
Iteration: 9, Func. Count: 81, Neg. LLF: 96.51069959880425
Iteration: 10, Func. Count: 90, Neg. LLF: 96.03177404041023
Iteration: 11, Func. Count: 99, Neg. LLF: 95.97758410975996
Iteration: 12, Func. Count: 107, Neg. LLF: 95.9772004750454
Iteration: 13, Func. Count: 115, Neg. LLF: 95.97634642969629
Iteration: 14, Func. Count: 123, Neg. LLF: 95.97628732474338
Iteration: 15, Func. Count: 131, Neg. LLF: 95.97623696687275
Iteration: 16, Func. Count: 139, Neg. LLF: 95.97623113321553
Iteration: 17, Func. Count: 146, Neg. LLF: 95.97623113319322
Optimization terminated successfully (Exit mode 0)
Current function value: 95.97623113321553
Iterations: 17
Function evaluations: 146
Gradient evaluations: 17
Iteration: 1, Func. Count: 10, Neg. LLF: 173246518.2566744
Iteration: 2, Func. Count: 21, Neg. LLF: 416.0351582336456
Iteration: 3, Func. Count: 33, Neg. LLF: 105.88663615181791
Iteration: 4, Func. Count: 43, Neg. LLF: 95.34563953482193
Iteration: 5, Func. Count: 52, Neg. LLF: 95.40641096042208
Iteration: 6, Func. Count: 62, Neg. LLF: 95.43626390884901
Iteration: 7, Func. Count: 72, Neg. LLF: 95.25850867675798
Iteration: 8, Func. Count: 81, Neg. LLF: 95.24864583362233
Iteration: 9, Func. Count: 90, Neg. LLF: 95.24801308952712
Iteration: 10, Func. Count: 99, Neg. LLF: 95.24797903708222
Iteration: 11, Func. Count: 108, Neg. LLF: 95.24797529229184
Iteration: 12, Func. Count: 116, Neg. LLF: 95.247975292359
Optimization terminated successfully (Exit mode 0)
Current function value: 95.24797529229184
Iterations: 12
Function evaluations: 116
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 134977431.12064573
Iteration: 2, Func. Count: 23, Neg. LLF: 333.060159257319
Iteration: 3, Func. Count: 35, Neg. LLF: 131.0099852203478
Iteration: 4, Func. Count: 46, Neg. LLF: 96.5500779712524
Iteration: 5, Func. Count: 58, Neg. LLF: 94.37241937071808
Iteration: 6, Func. Count: 68, Neg. LLF: 94.31549444838868
Iteration: 7, Func. Count: 79, Neg. LLF: 94.14683706908609
Iteration: 8, Func. Count: 89, Neg. LLF: 94.1089225612649
Iteration: 9, Func. Count: 99, Neg. LLF: 94.08289468450364
Iteration: 10, Func. Count: 109, Neg. LLF: 94.07498276117165
Iteration: 11, Func. Count: 119, Neg. LLF: 94.0742871890056
Iteration: 12, Func. Count: 129, Neg. LLF: 94.0742217916966
Iteration: 13, Func. Count: 139, Neg. LLF: 94.07418889333735
Iteration: 14, Func. Count: 148, Neg. LLF: 94.07418889353363
Optimization terminated successfully (Exit mode 0)
Current function value: 94.07418889333735
Iterations: 14
Function evaluations: 148
Gradient evaluations: 14
Iteration: 1, Func. Count: 12, Neg. LLF: 104224013.96732461
Iteration: 2, Func. Count: 25, Neg. LLF: 339.4477817183636
Iteration: 3, Func. Count: 38, Neg. LLF: 197.49832761483376
Iteration: 4, Func. Count: 50, Neg. LLF: 98.91602882203826
Iteration: 5, Func. Count: 63, Neg. LLF: 96.25659089376134
Iteration: 6, Func. Count: 75, Neg. LLF: 95.6320801136698
Iteration: 7, Func. Count: 87, Neg. LLF: 94.85679412658112
Iteration: 8, Func. Count: 98, Neg. LLF: 94.50498545009748
Iteration: 9, Func. Count: 109, Neg. LLF: 94.26389267920719
Iteration: 10, Func. Count: 120, Neg. LLF: 94.0874769710137
Iteration: 11, Func. Count: 131, Neg. LLF: 94.27157007290123
Iteration: 12, Func. Count: 143, Neg. LLF: 94.09110996034525
Iteration: 13, Func. Count: 155, Neg. LLF: 94.07683195653647
Iteration: 14, Func. Count: 166, Neg. LLF: 94.07445613156035
Iteration: 15, Func. Count: 177, Neg. LLF: 94.07421599209837
Iteration: 16, Func. Count: 188, Neg. LLF: 94.07419128845825
Iteration: 17, Func. Count: 199, Neg. LLF: 94.07418882960135
Iteration: 18, Func. Count: 209, Neg. LLF: 94.0741888785984
Optimization terminated successfully (Exit mode 0)
Current function value: 94.07418882960135
Iterations: 18
Function evaluations: 209
Gradient evaluations: 18
Iteration: 1, Func. Count: 13, Neg. LLF: 93255464.55697437
Iteration: 2, Func. Count: 27, Neg. LLF: 6445885.886196466
Iteration: 3, Func. Count: 40, Neg. LLF: 243.39051040032518
Iteration: 4, Func. Count: 54, Neg. LLF: 101.378094873175
Iteration: 5, Func. Count: 68, Neg. LLF: 96.28262033596143
Iteration: 6, Func. Count: 81, Neg. LLF: 94.10634886177384
Iteration: 7, Func. Count: 93, Neg. LLF: 93.6983694566806
Iteration: 8, Func. Count: 105, Neg. LLF: 94.24650280683503
Iteration: 9, Func. Count: 119, Neg. LLF: 93.70800482936613
Iteration: 10, Func. Count: 132, Neg. LLF: 93.00201176548597
Iteration: 11, Func. Count: 144, Neg. LLF: 92.99198511900349
Iteration: 12, Func. Count: 156, Neg. LLF: 92.99057306946065
Iteration: 13, Func. Count: 168, Neg. LLF: 92.99041411987191
Iteration: 14, Func. Count: 180, Neg. LLF: 92.99040221239919
Iteration: 15, Func. Count: 192, Neg. LLF: 92.99040002336426
Iteration: 16, Func. Count: 203, Neg. LLF: 92.99039999417585
Optimization terminated successfully (Exit mode 0)
Current function value: 92.99040002336426
Iterations: 16
Function evaluations: 203
Gradient evaluations: 16
Iteration: 1, Func. Count: 6, Neg. LLF: 115.92719871908712
Iteration: 2, Func. Count: 13, Neg. LLF: 143.98232322672132
Iteration: 3, Func. Count: 19, Neg. LLF: 1215.912449348571
Iteration: 4, Func. Count: 25, Neg. LLF: 97.99364834639645
Iteration: 5, Func. Count: 30, Neg. LLF: 148.0955051500645
Iteration: 6, Func. Count: 36, Neg. LLF: 98.15939738519756
Iteration: 7, Func. Count: 42, Neg. LLF: 97.8259050167282
Iteration: 8, Func. Count: 47, Neg. LLF: 97.8247398418397
Iteration: 9, Func. Count: 52, Neg. LLF: 97.82473079011665
Iteration: 10, Func. Count: 57, Neg. LLF: 97.82473022498303
Optimization terminated successfully (Exit mode 0)
Current function value: 97.82473022498303
Iterations: 10
Function evaluations: 57
Gradient evaluations: 10
Iteration: 1, Func. Count: 7, Neg. LLF: 25229850.344862245
Iteration: 2, Func. Count: 15, Neg. LLF: 126.57857358904357
Iteration: 3, Func. Count: 23, Neg. LLF: 103.05307594247793
Iteration: 4, Func. Count: 30, Neg. LLF: 96.38187420783446
Iteration: 5, Func. Count: 37, Neg. LLF: 96.00108799097676
Iteration: 6, Func. Count: 43, Neg. LLF: 95.88383825281545
Iteration: 7, Func. Count: 49, Neg. LLF: 96.50468024033165
Iteration: 8, Func. Count: 56, Neg. LLF: 95.86925284864144
Iteration: 9, Func. Count: 62, Neg. LLF: 95.84558710464425
Iteration: 10, Func. Count: 68, Neg. LLF: 95.84553902896062
Iteration: 11, Func. Count: 74, Neg. LLF: 95.84553544750759
Iteration: 12, Func. Count: 79, Neg. LLF: 95.84553544702
Optimization terminated successfully (Exit mode 0)
Current function value: 95.84553544750759
Iterations: 12
Function evaluations: 79
Gradient evaluations: 12
Iteration: 1, Func. Count: 8, Neg. LLF: 23938788.93726098
Iteration: 2, Func. Count: 17, Neg. LLF: 139.961033072439
Iteration: 3, Func. Count: 26, Neg. LLF: 130.58304000586398
Iteration: 4, Func. Count: 35, Neg. LLF: 96.14400802026483
Iteration: 5, Func. Count: 42, Neg. LLF: 95.68749157877237
Iteration: 6, Func. Count: 49, Neg. LLF: 95.50741001930525
Iteration: 7, Func. Count: 56, Neg. LLF: 95.40106820256598
Iteration: 8, Func. Count: 63, Neg. LLF: 95.32151720156199
Iteration: 9, Func. Count: 70, Neg. LLF: 95.2789800913893
Iteration: 10, Func. Count: 77, Neg. LLF: 95.27627135549943
Iteration: 11, Func. Count: 84, Neg. LLF: 95.27491796592687
Iteration: 12, Func. Count: 91, Neg. LLF: 95.2753565419574
Iteration: 13, Func. Count: 99, Neg. LLF: 95.27483413482953
Iteration: 14, Func. Count: 106, Neg. LLF: 95.27483299144593
Iteration: 15, Func. Count: 112, Neg. LLF: 95.27483299146085
Optimization terminated successfully (Exit mode 0)
Current function value: 95.27483299144593
Iterations: 15
Function evaluations: 112
Gradient evaluations: 15
Iteration: 1, Func. Count: 9, Neg. LLF: 21591058.24416278
Iteration: 2, Func. Count: 19, Neg. LLF: 114.43219747773806
Iteration: 3, Func. Count: 28, Neg. LLF: 103.65686184677337
Iteration: 4, Func. Count: 37, Neg. LLF: 96.51894716202031
Iteration: 5, Func. Count: 46, Neg. LLF: 95.90758400424514
Iteration: 6, Func. Count: 54, Neg. LLF: 95.57744696239114
Iteration: 7, Func. Count: 62, Neg. LLF: 96.07346466299482
Iteration: 8, Func. Count: 72, Neg. LLF: 97.12867441080532
Iteration: 9, Func. Count: 81, Neg. LLF: 95.37568889006182
Iteration: 10, Func. Count: 90, Neg. LLF: 95.27262584378758
Iteration: 11, Func. Count: 98, Neg. LLF: 95.26775795879979
Iteration: 12, Func. Count: 106, Neg. LLF: 95.26692460709549
Iteration: 13, Func. Count: 114, Neg. LLF: 95.26674457018969
Iteration: 14, Func. Count: 121, Neg. LLF: 95.26674456995441
Optimization terminated successfully (Exit mode 0)
Current function value: 95.26674457018969
Iterations: 14
Function evaluations: 121
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 20605827.132214516
Iteration: 2, Func. Count: 21, Neg. LLF: 138.09293110214358
Iteration: 3, Func. Count: 31, Neg. LLF: 97.12319426936183
Iteration: 4, Func. Count: 41, Neg. LLF: 96.40253616478847
Iteration: 5, Func. Count: 51, Neg. LLF: 95.40818664862711
Iteration: 6, Func. Count: 60, Neg. LLF: 104.12046781094041
Iteration: 7, Func. Count: 71, Neg. LLF: 95.92921277581485
Iteration: 8, Func. Count: 81, Neg. LLF: 95.29172285263745
Iteration: 9, Func. Count: 90, Neg. LLF: 95.41991437481327
Iteration: 10, Func. Count: 100, Neg. LLF: 95.26806451825534
Iteration: 11, Func. Count: 109, Neg. LLF: 95.26675843399454
Iteration: 12, Func. Count: 118, Neg. LLF: 95.26674503908741
Iteration: 13, Func. Count: 127, Neg. LLF: 95.2667444367811
Optimization terminated successfully (Exit mode 0)
Current function value: 95.2667444367811
Iterations: 13
Function evaluations: 127
Gradient evaluations: 13
Iteration: 1, Func. Count: 7, Neg. LLF: 115.38144524355931
Iteration: 2, Func. Count: 15, Neg. LLF: 143.2550765168268
Iteration: 3, Func. Count: 22, Neg. LLF: 1200.3870170251382
Iteration: 4, Func. Count: 29, Neg. LLF: 107.68236479899223
Iteration: 5, Func. Count: 36, Neg. LLF: 97.88715625452714
Iteration: 6, Func. Count: 42, Neg. LLF: 97.70310317747156
Iteration: 7, Func. Count: 48, Neg. LLF: 97.68495034251379
Iteration: 8, Func. Count: 54, Neg. LLF: 97.68411283661203
Iteration: 9, Func. Count: 60, Neg. LLF: 97.68405362003658
Iteration: 10, Func. Count: 66, Neg. LLF: 97.68403656331716
Iteration: 11, Func. Count: 71, Neg. LLF: 97.68403654190774
Optimization terminated successfully (Exit mode 0)
Current function value: 97.68403656331716
Iterations: 11
Function evaluations: 71
Gradient evaluations: 11
Iteration: 1, Func. Count: 8, Neg. LLF: 202252613.72917968
Iteration: 2, Func. Count: 17, Neg. LLF: 351.16101069578065
Iteration: 3, Func. Count: 27, Neg. LLF: 103.23439072601958
Iteration: 4, Func. Count: 35, Neg. LLF: 95.6715343434639
Iteration: 5, Func. Count: 42, Neg. LLF: 95.93060292765513
Iteration: 6, Func. Count: 51, Neg. LLF: 95.70716924345265
Iteration: 7, Func. Count: 59, Neg. LLF: 95.61620857876271
Iteration: 8, Func. Count: 66, Neg. LLF: 95.61588533462559
Iteration: 9, Func. Count: 73, Neg. LLF: 95.6158612954097
Iteration: 10, Func. Count: 80, Neg. LLF: 95.61585880082635
Iteration: 11, Func. Count: 86, Neg. LLF: 95.61585880091839
Optimization terminated successfully (Exit mode 0)
Current function value: 95.61585880082635
Iterations: 11
Function evaluations: 86
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 25533101.6141421
Iteration: 2, Func. Count: 19, Neg. LLF: 142.4349750551091
Iteration: 3, Func. Count: 29, Neg. LLF: 243.25896354318004
Iteration: 4, Func. Count: 39, Neg. LLF: 96.1398972749113
Iteration: 5, Func. Count: 47, Neg. LLF: 95.83045722761914
Iteration: 6, Func. Count: 55, Neg. LLF: 95.42022288567436
Iteration: 7, Func. Count: 63, Neg. LLF: 95.33485169411195
Iteration: 8, Func. Count: 71, Neg. LLF: 172.40267865154692
Iteration: 9, Func. Count: 81, Neg. LLF: 95.37510468353804
Iteration: 10, Func. Count: 90, Neg. LLF: 95.28803012382336
Iteration: 11, Func. Count: 98, Neg. LLF: 95.27751251509248
Iteration: 12, Func. Count: 106, Neg. LLF: 95.2753901023852
Iteration: 13, Func. Count: 114, Neg. LLF: 95.27501842693385
Iteration: 14, Func. Count: 122, Neg. LLF: 95.27483520507114
Iteration: 15, Func. Count: 130, Neg. LLF: 95.27483302023103
Iteration: 16, Func. Count: 137, Neg. LLF: 95.27483302033241
Optimization terminated successfully (Exit mode 0)
Current function value: 95.27483302023103
Iterations: 16
Function evaluations: 137
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 22700771.70085589
Iteration: 2, Func. Count: 21, Neg. LLF: 110.39971052231904
Iteration: 3, Func. Count: 31, Neg. LLF: 107.08374015626255
Iteration: 4, Func. Count: 41, Neg. LLF: 96.52230158500524
Iteration: 5, Func. Count: 51, Neg. LLF: 96.11558957141463
Iteration: 6, Func. Count: 60, Neg. LLF: 95.41667754430584
Iteration: 7, Func. Count: 69, Neg. LLF: 96.75693796439208
Iteration: 8, Func. Count: 81, Neg. LLF: 96.17927482863888
Iteration: 9, Func. Count: 91, Neg. LLF: 95.27582567069818
Iteration: 10, Func. Count: 100, Neg. LLF: 95.27507750006988
Iteration: 11, Func. Count: 110, Neg. LLF: 95.26694328951292
Iteration: 12, Func. Count: 119, Neg. LLF: 95.26674782030275
Iteration: 13, Func. Count: 128, Neg. LLF: 95.26674464123487
Iteration: 14, Func. Count: 136, Neg. LLF: 95.26674464140623
Optimization terminated successfully (Exit mode 0)
Current function value: 95.26674464123487
Iterations: 14
Function evaluations: 136
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 21301462.252897337
Iteration: 2, Func. Count: 23, Neg. LLF: 135.28486503621684
Iteration: 3, Func. Count: 34, Neg. LLF: 96.47304053364005
Iteration: 4, Func. Count: 44, Neg. LLF: 95.5676506914021
Iteration: 5, Func. Count: 54, Neg. LLF: 106.00641869678381
Iteration: 6, Func. Count: 66, Neg. LLF: 95.5026895779698
Iteration: 7, Func. Count: 76, Neg. LLF: 95.3940281008052
Iteration: 8, Func. Count: 86, Neg. LLF: 95.3975886668408
Iteration: 9, Func. Count: 97, Neg. LLF: 95.30491308302227
Iteration: 10, Func. Count: 107, Neg. LLF: 95.2724339836622
Iteration: 11, Func. Count: 117, Neg. LLF: 95.26792386309035
Iteration: 12, Func. Count: 127, Neg. LLF: 95.26682728426097
Iteration: 13, Func. Count: 137, Neg. LLF: 95.26674896779649
Iteration: 14, Func. Count: 147, Neg. LLF: 95.26674445629956
Iteration: 15, Func. Count: 156, Neg. LLF: 95.26674446185663
Optimization terminated successfully (Exit mode 0)
Current function value: 95.26674445629956
Iterations: 15
Function evaluations: 156
Gradient evaluations: 15
Iteration: 1, Func. Count: 8, Neg. LLF: 109.21206267632965
Iteration: 2, Func. Count: 17, Neg. LLF: 198.98198383455158
Iteration: 3, Func. Count: 25, Neg. LLF: 122.81277388048149
Iteration: 4, Func. Count: 33, Neg. LLF: 117.73648707175047
Iteration: 5, Func. Count: 41, Neg. LLF: 96.77905902289648
Iteration: 6, Func. Count: 48, Neg. LLF: 96.82548893363305
Iteration: 7, Func. Count: 56, Neg. LLF: 96.80070765047068
Iteration: 8, Func. Count: 64, Neg. LLF: 96.72630450471785
Iteration: 9, Func. Count: 71, Neg. LLF: 96.72321822093183
Iteration: 10, Func. Count: 78, Neg. LLF: 96.72280200488768
Iteration: 11, Func. Count: 85, Neg. LLF: 96.7227965446421
Iteration: 12, Func. Count: 91, Neg. LLF: 96.72279654463976
Optimization terminated successfully (Exit mode 0)
Current function value: 96.7227965446421
Iterations: 12
Function evaluations: 91
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 193772209.533442
Iteration: 2, Func. Count: 19, Neg. LLF: 280.9364763125789
Iteration: 3, Func. Count: 30, Neg. LLF: 96.67763067377776
Iteration: 4, Func. Count: 39, Neg. LLF: 95.31166562031305
Iteration: 5, Func. Count: 47, Neg. LLF: 95.29225209685838
Iteration: 6, Func. Count: 56, Neg. LLF: 95.25298562735367
Iteration: 7, Func. Count: 65, Neg. LLF: 95.24809560775817
Iteration: 8, Func. Count: 73, Neg. LLF: 95.24797524812857
Iteration: 9, Func. Count: 80, Neg. LLF: 95.24797524816907
Optimization terminated successfully (Exit mode 0)
Current function value: 95.24797524812857
Iterations: 9
Function evaluations: 80
Gradient evaluations: 9
Iteration: 1, Func. Count: 10, Neg. LLF: 156986824.03781995
Iteration: 2, Func. Count: 21, Neg. LLF: 361.7173755030981
Iteration: 3, Func. Count: 32, Neg. LLF: 123.19078695842146
Iteration: 4, Func. Count: 42, Neg. LLF: 94.37270409649166
Iteration: 5, Func. Count: 51, Neg. LLF: 94.79054449194973
Iteration: 6, Func. Count: 61, Neg. LLF: 97.05134258197495
Iteration: 7, Func. Count: 72, Neg. LLF: 94.13032181592696
Iteration: 8, Func. Count: 81, Neg. LLF: 94.11086915825017
Iteration: 9, Func. Count: 90, Neg. LLF: 94.1032303469627
Iteration: 10, Func. Count: 100, Neg. LLF: 94.07513179273013
Iteration: 11, Func. Count: 109, Neg. LLF: 94.07428407854921
Iteration: 12, Func. Count: 118, Neg. LLF: 94.07422568924343
Iteration: 13, Func. Count: 127, Neg. LLF: 94.07418963418081
Iteration: 14, Func. Count: 136, Neg. LLF: 94.07418871752792
Optimization terminated successfully (Exit mode 0)
Current function value: 94.07418871752792
Iterations: 14
Function evaluations: 136
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 120021649.18606889
Iteration: 2, Func. Count: 23, Neg. LLF: 216.25103881121086
Iteration: 3, Func. Count: 35, Neg. LLF: 130.40013618474347
Iteration: 4, Func. Count: 46, Neg. LLF: 96.99019907637837
Iteration: 5, Func. Count: 58, Neg. LLF: 94.58006828434888
Iteration: 6, Func. Count: 68, Neg. LLF: 94.47042107228118
Iteration: 7, Func. Count: 78, Neg. LLF: 95.21182735677911
Iteration: 8, Func. Count: 89, Neg. LLF: 94.2434355109766
Iteration: 9, Func. Count: 99, Neg. LLF: 94.10178726107314
Iteration: 10, Func. Count: 109, Neg. LLF: 94.11893098709322
Iteration: 11, Func. Count: 120, Neg. LLF: 94.07776151221022
Iteration: 12, Func. Count: 130, Neg. LLF: 94.07510470592072
Iteration: 13, Func. Count: 140, Neg. LLF: 94.07469105947227
Iteration: 14, Func. Count: 150, Neg. LLF: 94.07421241261466
Iteration: 15, Func. Count: 160, Neg. LLF: 94.0741894682795
Iteration: 16, Func. Count: 170, Neg. LLF: 94.07418864580451
Optimization terminated successfully (Exit mode 0)
Current function value: 94.07418864580451
Iterations: 16
Function evaluations: 170
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 60955347.45227652
Iteration: 2, Func. Count: 25, Neg. LLF: 7488421.300113675
Iteration: 3, Func. Count: 37, Neg. LLF: 125.05436532877576
Iteration: 4, Func. Count: 50, Neg. LLF: 95.33368677850223
Iteration: 5, Func. Count: 61, Neg. LLF: 95.15992888383627
Iteration: 6, Func. Count: 73, Neg. LLF: 94.20219719432
Iteration: 7, Func. Count: 84, Neg. LLF: 94.49565020870922
Iteration: 8, Func. Count: 97, Neg. LLF: 93.85321358991101
Iteration: 9, Func. Count: 108, Neg. LLF: 93.61812959157201
Iteration: 10, Func. Count: 119, Neg. LLF: 93.38708592253661
Iteration: 11, Func. Count: 130, Neg. LLF: 93.37777454091517
Iteration: 12, Func. Count: 141, Neg. LLF: 93.36469528811926
Iteration: 13, Func. Count: 152, Neg. LLF: 93.35686604144412
Iteration: 14, Func. Count: 163, Neg. LLF: 93.3562672485405
Iteration: 15, Func. Count: 174, Neg. LLF: 93.35624483223755
Iteration: 16, Func. Count: 184, Neg. LLF: 93.35624482399888
Optimization terminated successfully (Exit mode 0)
Current function value: 93.35624483223755
Iterations: 16
Function evaluations: 184
Gradient evaluations: 16
Iteration: 1, Func. Count: 9, Neg. LLF: 107.40773615297567
Iteration: 2, Func. Count: 19, Neg. LLF: 198.49633649034834
Iteration: 3, Func. Count: 28, Neg. LLF: 11448.405231202738
Iteration: 4, Func. Count: 37, Neg. LLF: 101.08997910910676
Iteration: 5, Func. Count: 46, Neg. LLF: 96.84505018035108
Iteration: 6, Func. Count: 54, Neg. LLF: 112.45625993410036
Iteration: 7, Func. Count: 63, Neg. LLF: 96.8505166844236
Iteration: 8, Func. Count: 72, Neg. LLF: 96.7286991253361
Iteration: 9, Func. Count: 80, Neg. LLF: 96.72514484164283
Iteration: 10, Func. Count: 88, Neg. LLF: 96.72283999179265
Iteration: 11, Func. Count: 96, Neg. LLF: 96.72279818303576
Iteration: 12, Func. Count: 104, Neg. LLF: 96.72279651900007
Iteration: 13, Func. Count: 111, Neg. LLF: 96.72279656250302
Optimization terminated successfully (Exit mode 0)
Current function value: 96.72279651900007
Iterations: 13
Function evaluations: 111
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 173257456.0232321
Iteration: 2, Func. Count: 21, Neg. LLF: 319.48884555559255
Iteration: 3, Func. Count: 33, Neg. LLF: 101.84818241579713
Iteration: 4, Func. Count: 43, Neg. LLF: 95.31709471906503
Iteration: 5, Func. Count: 52, Neg. LLF: 95.27498525092834
Iteration: 6, Func. Count: 61, Neg. LLF: 95.25053085387076
Iteration: 7, Func. Count: 70, Neg. LLF: 95.26368261933543
Iteration: 8, Func. Count: 80, Neg. LLF: 95.24797586319596
Iteration: 9, Func. Count: 89, Neg. LLF: 95.2479752394242
Optimization terminated successfully (Exit mode 0)
Current function value: 95.2479752394242
Iterations: 9
Function evaluations: 89
Gradient evaluations: 9
Iteration: 1, Func. Count: 11, Neg. LLF: 134179856.81085102
Iteration: 2, Func. Count: 23, Neg. LLF: 286.92786358335644
Iteration: 3, Func. Count: 35, Neg. LLF: 126.51645547198795
Iteration: 4, Func. Count: 46, Neg. LLF: 95.6891991985286
Iteration: 5, Func. Count: 58, Neg. LLF: 94.36925470182095
Iteration: 6, Func. Count: 68, Neg. LLF: 94.46625014341151
Iteration: 7, Func. Count: 79, Neg. LLF: 94.23501973196505
Iteration: 8, Func. Count: 90, Neg. LLF: 94.0883332407916
Iteration: 9, Func. Count: 100, Neg. LLF: 94.07591424338037
Iteration: 10, Func. Count: 110, Neg. LLF: 94.07455787528122
Iteration: 11, Func. Count: 120, Neg. LLF: 94.0742221812763
Iteration: 12, Func. Count: 130, Neg. LLF: 94.0741896671622
Iteration: 13, Func. Count: 140, Neg. LLF: 94.0741886610393
Iteration: 14, Func. Count: 149, Neg. LLF: 94.07418866104294
Optimization terminated successfully (Exit mode 0)
Current function value: 94.0741886610393
Iterations: 14
Function evaluations: 149
Gradient evaluations: 14
Iteration: 1, Func. Count: 12, Neg. LLF: 104266486.71552663
Iteration: 2, Func. Count: 25, Neg. LLF: 182.6815120217701
Iteration: 3, Func. Count: 38, Neg. LLF: 539.7529687435367
Iteration: 4, Func. Count: 50, Neg. LLF: 99.28772370073278
Iteration: 5, Func. Count: 63, Neg. LLF: 94.84926711101943
Iteration: 6, Func. Count: 74, Neg. LLF: 96.25678750991148
Iteration: 7, Func. Count: 86, Neg. LLF: 94.2021684647348
Iteration: 8, Func. Count: 97, Neg. LLF: 94.11543582672397
Iteration: 9, Func. Count: 108, Neg. LLF: 94.8534601040194
Iteration: 10, Func. Count: 120, Neg. LLF: 94.09561811636424
Iteration: 11, Func. Count: 132, Neg. LLF: 94.07445436378849
Iteration: 12, Func. Count: 143, Neg. LLF: 94.07419752353404
Iteration: 13, Func. Count: 154, Neg. LLF: 94.07418878272804
Iteration: 14, Func. Count: 164, Neg. LLF: 94.07418883165266
Optimization terminated successfully (Exit mode 0)
Current function value: 94.07418878272804
Iterations: 14
Function evaluations: 164
Gradient evaluations: 14
Iteration: 1, Func. Count: 13, Neg. LLF: 40824848.174659975
Iteration: 2, Func. Count: 27, Neg. LLF: 7647887.073980712
Iteration: 3, Func. Count: 40, Neg. LLF: 118.10450325438974
Iteration: 4, Func. Count: 54, Neg. LLF: 95.33187841767673
Iteration: 5, Func. Count: 66, Neg. LLF: 94.51679373950839
Iteration: 6, Func. Count: 78, Neg. LLF: 94.80869726572197
Iteration: 7, Func. Count: 92, Neg. LLF: 94.05064863121963
Iteration: 8, Func. Count: 104, Neg. LLF: 93.94298139448746
Iteration: 9, Func. Count: 116, Neg. LLF: 93.89874341047195
Iteration: 10, Func. Count: 128, Neg. LLF: 93.88316545457558
Iteration: 11, Func. Count: 140, Neg. LLF: 93.87796751363129
Iteration: 12, Func. Count: 152, Neg. LLF: 93.85586645994633
Iteration: 13, Func. Count: 164, Neg. LLF: 93.87746798145459
Iteration: 14, Func. Count: 177, Neg. LLF: 93.57810446530239
Iteration: 15, Func. Count: 189, Neg. LLF: 93.46261130950937
Iteration: 16, Func. Count: 201, Neg. LLF: 93.44394318398042
Iteration: 17, Func. Count: 214, Neg. LLF: 93.36338512372377
Iteration: 18, Func. Count: 226, Neg. LLF: 93.35830021200037
Iteration: 19, Func. Count: 238, Neg. LLF: 93.35654986167293
Iteration: 20, Func. Count: 250, Neg. LLF: 93.35625400626792
Iteration: 21, Func. Count: 262, Neg. LLF: 93.35624493011346
Iteration: 22, Func. Count: 273, Neg. LLF: 93.35624492167646
Optimization terminated successfully (Exit mode 0)
Current function value: 93.35624493011346
Iterations: 22
Function evaluations: 273
Gradient evaluations: 22
Iteration: 1, Func. Count: 10, Neg. LLF: 105.77813439218757
Iteration: 2, Func. Count: 21, Neg. LLF: 143.74026011274938
Iteration: 3, Func. Count: 31, Neg. LLF: 5137332.150413126
Iteration: 4, Func. Count: 41, Neg. LLF: 36262.387715097684
Iteration: 5, Func. Count: 51, Neg. LLF: 188.61599150431724
Iteration: 6, Func. Count: 61, Neg. LLF: 96.03041276396935
Iteration: 7, Func. Count: 71, Neg. LLF: 109.27931893250727
Iteration: 8, Func. Count: 82, Neg. LLF: 95.74993752905478
Iteration: 9, Func. Count: 91, Neg. LLF: 97.47483207035023
Iteration: 10, Func. Count: 101, Neg. LLF: 95.72477796344505
Iteration: 11, Func. Count: 110, Neg. LLF: 95.71128163971059
Iteration: 12, Func. Count: 119, Neg. LLF: 95.7086148708209
Iteration: 13, Func. Count: 128, Neg. LLF: 95.70838992010549
Iteration: 14, Func. Count: 137, Neg. LLF: 95.70837923500147
Iteration: 15, Func. Count: 145, Neg. LLF: 95.70837923503561
Optimization terminated successfully (Exit mode 0)
Current function value: 95.70837923500147
Iterations: 15
Function evaluations: 145
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 174440697.9584447
Iteration: 2, Func. Count: 23, Neg. LLF: 402.4050911449542
Iteration: 3, Func. Count: 36, Neg. LLF: 105.53377437808817
Iteration: 4, Func. Count: 47, Neg. LLF: 95.34919014826698
Iteration: 5, Func. Count: 57, Neg. LLF: 95.41168457632686
Iteration: 6, Func. Count: 68, Neg. LLF: 95.4397330965464
Iteration: 7, Func. Count: 79, Neg. LLF: 95.25993356684127
Iteration: 8, Func. Count: 89, Neg. LLF: 95.24873823492709
Iteration: 9, Func. Count: 99, Neg. LLF: 95.24804631716343
Iteration: 10, Func. Count: 109, Neg. LLF: 95.24797934459656
Iteration: 11, Func. Count: 119, Neg. LLF: 95.2479753243794
Iteration: 12, Func. Count: 128, Neg. LLF: 95.24797532452068
Optimization terminated successfully (Exit mode 0)
Current function value: 95.2479753243794
Iterations: 12
Function evaluations: 128
Gradient evaluations: 12
Iteration: 1, Func. Count: 12, Neg. LLF: 141045167.9862769
Iteration: 2, Func. Count: 25, Neg. LLF: 259.1312747756103
Iteration: 3, Func. Count: 38, Neg. LLF: 132.9625135420295
Iteration: 4, Func. Count: 50, Neg. LLF: 97.61709338369388
Iteration: 5, Func. Count: 63, Neg. LLF: 94.35397353560067
Iteration: 6, Func. Count: 74, Neg. LLF: 94.3913863137186
Iteration: 7, Func. Count: 86, Neg. LLF: 94.13408210492908
Iteration: 8, Func. Count: 97, Neg. LLF: 94.08457625380159
Iteration: 9, Func. Count: 108, Neg. LLF: 94.07619641421905
Iteration: 10, Func. Count: 119, Neg. LLF: 94.07432565210674
Iteration: 11, Func. Count: 130, Neg. LLF: 94.07421185729737
Iteration: 12, Func. Count: 141, Neg. LLF: 94.07418901142582
Iteration: 13, Func. Count: 151, Neg. LLF: 94.0741890112314
Optimization terminated successfully (Exit mode 0)
Current function value: 94.07418901142582
Iterations: 13
Function evaluations: 151
Gradient evaluations: 13
Iteration: 1, Func. Count: 13, Neg. LLF: 108361175.32308628
Iteration: 2, Func. Count: 27, Neg. LLF: 176.33236091927927
Iteration: 3, Func. Count: 40, Neg. LLF: 4571208.418348651
Iteration: 4, Func. Count: 53, Neg. LLF: 98.83868477176638
Iteration: 5, Func. Count: 67, Neg. LLF: 95.00043953610833
Iteration: 6, Func. Count: 79, Neg. LLF: 94.52851975680815
Iteration: 7, Func. Count: 91, Neg. LLF: 94.41164648148532
Iteration: 8, Func. Count: 103, Neg. LLF: 94.10589054868893
Iteration: 9, Func. Count: 115, Neg. LLF: 94.08855191148317
Iteration: 10, Func. Count: 127, Neg. LLF: 94.12056518453886
Iteration: 11, Func. Count: 140, Neg. LLF: 94.07599498248817
Iteration: 12, Func. Count: 152, Neg. LLF: 94.07446130125074
Iteration: 13, Func. Count: 164, Neg. LLF: 94.07422403684134
Iteration: 14, Func. Count: 176, Neg. LLF: 94.07418941528566
Iteration: 15, Func. Count: 188, Neg. LLF: 94.07418865342
Optimization terminated successfully (Exit mode 0)
Current function value: 94.07418865342
Iterations: 15
Function evaluations: 188
Gradient evaluations: 15
Iteration: 1, Func. Count: 14, Neg. LLF: 38891890.77075708
Iteration: 2, Func. Count: 28, Neg. LLF: 134.12820866975972
Iteration: 3, Func. Count: 42, Neg. LLF: 96.98896343511348
Iteration: 4, Func. Count: 57, Neg. LLF: 95.1409261386831
Iteration: 5, Func. Count: 70, Neg. LLF: 93.950252118652
Iteration: 6, Func. Count: 83, Neg. LLF: 114.4971142449524
Iteration: 7, Func. Count: 97, Neg. LLF: 93.50781332935749
Iteration: 8, Func. Count: 110, Neg. LLF: 93.52508087121981
Iteration: 9, Func. Count: 124, Neg. LLF: 93.03102107152608
Iteration: 10, Func. Count: 138, Neg. LLF: 92.99189101064005
Iteration: 11, Func. Count: 151, Neg. LLF: 92.99042336943961
Iteration: 12, Func. Count: 164, Neg. LLF: 92.99040059109586
Iteration: 13, Func. Count: 177, Neg. LLF: 92.99040006088708
Optimization terminated successfully (Exit mode 0)
Current function value: 92.99040006088708
Iterations: 13
Function evaluations: 177
Gradient evaluations: 13
Iteration: 1, Func. Count: 7, Neg. LLF: 110.96073310475083
Iteration: 2, Func. Count: 15, Neg. LLF: 123.63191366468749
Iteration: 3, Func. Count: 22, Neg. LLF: 163.6713425991889
Iteration: 4, Func. Count: 29, Neg. LLF: 98.28419707365495
Iteration: 5, Func. Count: 36, Neg. LLF: 97.46325121884847
Iteration: 6, Func. Count: 43, Neg. LLF: 97.1892929128419
Iteration: 7, Func. Count: 49, Neg. LLF: 97.18612733627774
Iteration: 8, Func. Count: 55, Neg. LLF: 97.18602269512084
Iteration: 9, Func. Count: 61, Neg. LLF: 97.18602024374287
Iteration: 10, Func. Count: 67, Neg. LLF: 97.18601838143192
Iteration: 11, Func. Count: 72, Neg. LLF: 97.18601838145037
Optimization terminated successfully (Exit mode 0)
Current function value: 97.18601838143192
Iterations: 11
Function evaluations: 72
Gradient evaluations: 11
Iteration: 1, Func. Count: 8, Neg. LLF: 24664318.290650647
Iteration: 2, Func. Count: 17, Neg. LLF: 146.1748599852667
Iteration: 3, Func. Count: 26, Neg. LLF: 221.1646778815848
Iteration: 4, Func. Count: 35, Neg. LLF: 96.18449421077727
Iteration: 5, Func. Count: 43, Neg. LLF: 96.34929762813972
Iteration: 6, Func. Count: 51, Neg. LLF: 95.86368291644948
Iteration: 7, Func. Count: 58, Neg. LLF: 95.83438850875332
Iteration: 8, Func. Count: 65, Neg. LLF: 95.83277821376771
Iteration: 9, Func. Count: 72, Neg. LLF: 95.83264793435131
Iteration: 10, Func. Count: 79, Neg. LLF: 95.83264258672934
Iteration: 11, Func. Count: 85, Neg. LLF: 95.832642586846
Optimization terminated successfully (Exit mode 0)
Current function value: 95.83264258672934
Iterations: 11
Function evaluations: 85
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 23938096.7456271
Iteration: 2, Func. Count: 19, Neg. LLF: 118.72016169478293
Iteration: 3, Func. Count: 28, Neg. LLF: 134.57401563916588
Iteration: 4, Func. Count: 38, Neg. LLF: 96.11784834587179
Iteration: 5, Func. Count: 46, Neg. LLF: 96.22770082219122
Iteration: 6, Func. Count: 55, Neg. LLF: 96.33671771691735
Iteration: 7, Func. Count: 64, Neg. LLF: 95.84377413441364
Iteration: 8, Func. Count: 72, Neg. LLF: 95.83745615153038
Iteration: 9, Func. Count: 80, Neg. LLF: 95.83369831779733
Iteration: 10, Func. Count: 88, Neg. LLF: 95.83271392272613
Iteration: 11, Func. Count: 96, Neg. LLF: 95.83264665608485
Iteration: 12, Func. Count: 104, Neg. LLF: 95.83264250448725
Iteration: 13, Func. Count: 111, Neg. LLF: 95.83264251104409
Optimization terminated successfully (Exit mode 0)
Current function value: 95.83264250448725
Iterations: 13
Function evaluations: 111
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 23540920.52559094
Iteration: 2, Func. Count: 21, Neg. LLF: 166.5856692182627
Iteration: 3, Func. Count: 31, Neg. LLF: 143.79306092491706
Iteration: 4, Func. Count: 42, Neg. LLF: 95.95507057914837
Iteration: 5, Func. Count: 51, Neg. LLF: 95.70725197715007
Iteration: 6, Func. Count: 60, Neg. LLF: 96.32652939791372
Iteration: 7, Func. Count: 71, Neg. LLF: 95.60276427973857
Iteration: 8, Func. Count: 80, Neg. LLF: 95.55246860925946
Iteration: 9, Func. Count: 89, Neg. LLF: 95.5431939520116
Iteration: 10, Func. Count: 98, Neg. LLF: 95.54175929991449
Iteration: 11, Func. Count: 107, Neg. LLF: 95.54157810983429
Iteration: 12, Func. Count: 116, Neg. LLF: 95.54156161071198
Iteration: 13, Func. Count: 124, Neg. LLF: 95.54156161072514
Optimization terminated successfully (Exit mode 0)
Current function value: 95.54156161071198
Iterations: 13
Function evaluations: 124
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 22782345.45203457
Iteration: 2, Func. Count: 23, Neg. LLF: 150.8987612615986
Iteration: 3, Func. Count: 34, Neg. LLF: 98.88801311354386
Iteration: 4, Func. Count: 45, Neg. LLF: 96.31634298550291
Iteration: 5, Func. Count: 56, Neg. LLF: 95.63561377658507
Iteration: 6, Func. Count: 66, Neg. LLF: 95.96881950462146
Iteration: 7, Func. Count: 77, Neg. LLF: 95.5797437185467
Iteration: 8, Func. Count: 87, Neg. LLF: 95.544670917148
Iteration: 9, Func. Count: 97, Neg. LLF: 95.5419994043117
Iteration: 10, Func. Count: 107, Neg. LLF: 95.53979448711964
Iteration: 11, Func. Count: 117, Neg. LLF: 95.53941507598961
Iteration: 12, Func. Count: 127, Neg. LLF: 95.53928725754112
Iteration: 13, Func. Count: 137, Neg. LLF: 95.53928298438218
Iteration: 14, Func. Count: 147, Neg. LLF: 95.53928226130775
Optimization terminated successfully (Exit mode 0)
Current function value: 95.53928226130775
Iterations: 14
Function evaluations: 147
Gradient evaluations: 14
Iteration: 1, Func. Count: 8, Neg. LLF: 111.05599010742715
Iteration: 2, Func. Count: 17, Neg. LLF: 137.23884502778813
Iteration: 3, Func. Count: 25, Neg. LLF: 162.1188683038199
Iteration: 4, Func. Count: 33, Neg. LLF: 97.94425954547881
Iteration: 5, Func. Count: 41, Neg. LLF: 97.6955309904301
Iteration: 6, Func. Count: 49, Neg. LLF: 97.22377770122519
Iteration: 7, Func. Count: 56, Neg. LLF: 98.84702473563411
Iteration: 8, Func. Count: 64, Neg. LLF: 97.16852129634135
Iteration: 9, Func. Count: 71, Neg. LLF: 97.14834332078705
Iteration: 10, Func. Count: 78, Neg. LLF: 97.14779773836729
Iteration: 11, Func. Count: 85, Neg. LLF: 97.14777586626576
Iteration: 12, Func. Count: 92, Neg. LLF: 97.14777534618767
Optimization terminated successfully (Exit mode 0)
Current function value: 97.14777534618767
Iterations: 12
Function evaluations: 92
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 26501535.74357233
Iteration: 2, Func. Count: 19, Neg. LLF: 141.06837567957675
Iteration: 3, Func. Count: 29, Neg. LLF: 1541.8735503107496
Iteration: 4, Func. Count: 38, Neg. LLF: 96.22860127406364
Iteration: 5, Func. Count: 47, Neg. LLF: 98.45744636207534
Iteration: 6, Func. Count: 56, Neg. LLF: 95.89459835022296
Iteration: 7, Func. Count: 64, Neg. LLF: 95.83828513997096
Iteration: 8, Func. Count: 72, Neg. LLF: 95.83390863640399
Iteration: 9, Func. Count: 80, Neg. LLF: 95.83271103793658
Iteration: 10, Func. Count: 88, Neg. LLF: 95.83264942368397
Iteration: 11, Func. Count: 96, Neg. LLF: 95.83264284705267
Iteration: 12, Func. Count: 103, Neg. LLF: 95.8326428471329
Optimization terminated successfully (Exit mode 0)
Current function value: 95.83264284705267
Iterations: 12
Function evaluations: 103
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 25517480.587117344
Iteration: 2, Func. Count: 21, Neg. LLF: 118.16577514123436
Iteration: 3, Func. Count: 31, Neg. LLF: 124.44761792179183
Iteration: 4, Func. Count: 42, Neg. LLF: 96.10798273800508
Iteration: 5, Func. Count: 51, Neg. LLF: 96.3106428505544
Iteration: 6, Func. Count: 61, Neg. LLF: 96.61280068849325
Iteration: 7, Func. Count: 71, Neg. LLF: 95.84615018588329
Iteration: 8, Func. Count: 80, Neg. LLF: 95.83664527101504
Iteration: 9, Func. Count: 89, Neg. LLF: 95.8331894733035
Iteration: 10, Func. Count: 98, Neg. LLF: 95.83302088228893
Iteration: 11, Func. Count: 107, Neg. LLF: 95.8326699412244
Iteration: 12, Func. Count: 116, Neg. LLF: 95.83264424204201
Iteration: 13, Func. Count: 125, Neg. LLF: 95.83264245905951
Iteration: 14, Func. Count: 133, Neg. LLF: 95.8326424656085
Optimization terminated successfully (Exit mode 0)
Current function value: 95.83264245905951
Iterations: 14
Function evaluations: 133
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 25165853.03006873
Iteration: 2, Func. Count: 23, Neg. LLF: 159.10624862778837
Iteration: 3, Func. Count: 34, Neg. LLF: 135.34334638951555
Iteration: 4, Func. Count: 46, Neg. LLF: 95.95013086628293
Iteration: 5, Func. Count: 56, Neg. LLF: 95.6960544482853
Iteration: 6, Func. Count: 66, Neg. LLF: 99.15965277392031
Iteration: 7, Func. Count: 78, Neg. LLF: 95.61503687274933
Iteration: 8, Func. Count: 88, Neg. LLF: 95.56938499267594
Iteration: 9, Func. Count: 98, Neg. LLF: 95.55227007605845
Iteration: 10, Func. Count: 108, Neg. LLF: 95.5441872098264
Iteration: 11, Func. Count: 118, Neg. LLF: 95.5421980909998
Iteration: 12, Func. Count: 128, Neg. LLF: 95.54157741031315
Iteration: 13, Func. Count: 138, Neg. LLF: 95.54156278273105
Iteration: 14, Func. Count: 148, Neg. LLF: 95.54156121646028
Iteration: 15, Func. Count: 157, Neg. LLF: 95.54156121646514
Optimization terminated successfully (Exit mode 0)
Current function value: 95.54156121646028
Iterations: 15
Function evaluations: 157
Gradient evaluations: 15
Iteration: 1, Func. Count: 12, Neg. LLF: 24152583.273655713
Iteration: 2, Func. Count: 25, Neg. LLF: 149.8012266498476
Iteration: 3, Func. Count: 37, Neg. LLF: 109.65655864820356
Iteration: 4, Func. Count: 50, Neg. LLF: 96.48817979365545
Iteration: 5, Func. Count: 62, Neg. LLF: 95.61005873258908
Iteration: 6, Func. Count: 73, Neg. LLF: 95.57579319819614
Iteration: 7, Func. Count: 84, Neg. LLF: 95.54716717313478
Iteration: 8, Func. Count: 95, Neg. LLF: 95.56435247602334
Iteration: 9, Func. Count: 107, Neg. LLF: 95.54127570479612
Iteration: 10, Func. Count: 119, Neg. LLF: 95.53944006301255
Iteration: 11, Func. Count: 130, Neg. LLF: 95.53928617868493
Iteration: 12, Func. Count: 141, Neg. LLF: 95.53928264792228
Iteration: 13, Func. Count: 151, Neg. LLF: 95.53928264792746
Optimization terminated successfully (Exit mode 0)
Current function value: 95.53928264792228
Iterations: 13
Function evaluations: 151
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 105.35376936522137
Iteration: 2, Func. Count: 19, Neg. LLF: 117.64445746118342
Iteration: 3, Func. Count: 28, Neg. LLF: 110.10377694136666
Iteration: 4, Func. Count: 37, Neg. LLF: 97.02946547460326
Iteration: 5, Func. Count: 45, Neg. LLF: 96.85945661947642
Iteration: 6, Func. Count: 53, Neg. LLF: 97.64942552926635
Iteration: 7, Func. Count: 63, Neg. LLF: 101.10815532320565
Iteration: 8, Func. Count: 73, Neg. LLF: 96.72679021789745
Iteration: 9, Func. Count: 81, Neg. LLF: 96.72369952759576
Iteration: 10, Func. Count: 89, Neg. LLF: 96.72288488353723
Iteration: 11, Func. Count: 97, Neg. LLF: 96.72281299203689
Iteration: 12, Func. Count: 105, Neg. LLF: 96.72279695279803
Iteration: 13, Func. Count: 112, Neg. LLF: 96.72279695280652
Optimization terminated successfully (Exit mode 0)
Current function value: 96.72279695279803
Iterations: 13
Function evaluations: 112
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 194833648.96097308
Iteration: 2, Func. Count: 21, Neg. LLF: 274.8209425189974
Iteration: 3, Func. Count: 33, Neg. LLF: 96.80184872435548
Iteration: 4, Func. Count: 43, Neg. LLF: 95.31291650818346
Iteration: 5, Func. Count: 52, Neg. LLF: 95.28977944030696
Iteration: 6, Func. Count: 61, Neg. LLF: 95.26127556241056
Iteration: 7, Func. Count: 70, Neg. LLF: 95.24913080636256
Iteration: 8, Func. Count: 79, Neg. LLF: 95.24803285328767
Iteration: 9, Func. Count: 88, Neg. LLF: 95.24797900615012
Iteration: 10, Func. Count: 97, Neg. LLF: 95.24797694153358
Iteration: 11, Func. Count: 106, Neg. LLF: 95.24797527211159
Iteration: 12, Func. Count: 114, Neg. LLF: 95.24797527200786
Optimization terminated successfully (Exit mode 0)
Current function value: 95.24797527211159
Iterations: 12
Function evaluations: 114
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 156891250.1711509
Iteration: 2, Func. Count: 23, Neg. LLF: 291.82912405188387
Iteration: 3, Func. Count: 35, Neg. LLF: 122.06018452676871
Iteration: 4, Func. Count: 46, Neg. LLF: 94.41386346037365
Iteration: 5, Func. Count: 56, Neg. LLF: 95.26791941888139
Iteration: 6, Func. Count: 68, Neg. LLF: 96.21852572455411
Iteration: 7, Func. Count: 80, Neg. LLF: 94.22951439789514
Iteration: 8, Func. Count: 90, Neg. LLF: 94.09793078570195
Iteration: 9, Func. Count: 100, Neg. LLF: 94.07954201105576
Iteration: 10, Func. Count: 110, Neg. LLF: 94.07553773537455
Iteration: 11, Func. Count: 120, Neg. LLF: 94.074541323709
Iteration: 12, Func. Count: 130, Neg. LLF: 94.07423958183894
Iteration: 13, Func. Count: 140, Neg. LLF: 94.07419388172826
Iteration: 14, Func. Count: 150, Neg. LLF: 94.07418870546493
Iteration: 15, Func. Count: 159, Neg. LLF: 94.07418870540737
Optimization terminated successfully (Exit mode 0)
Current function value: 94.07418870546493
Iterations: 15
Function evaluations: 159
Gradient evaluations: 15
Iteration: 1, Func. Count: 12, Neg. LLF: 124158671.82184143
Iteration: 2, Func. Count: 25, Neg. LLF: 141.5709366550662
Iteration: 3, Func. Count: 37, Neg. LLF: 193.43371157566608
Iteration: 4, Func. Count: 50, Neg. LLF: 94.85564811952038
Iteration: 5, Func. Count: 61, Neg. LLF: 95.47550081929691
Iteration: 6, Func. Count: 73, Neg. LLF: 94.5285738571358
Iteration: 7, Func. Count: 84, Neg. LLF: 94.58999429184053
Iteration: 8, Func. Count: 96, Neg. LLF: 94.12630164279132
Iteration: 9, Func. Count: 107, Neg. LLF: 94.09830562479551
Iteration: 10, Func. Count: 118, Neg. LLF: 94.08713588646322
Iteration: 11, Func. Count: 129, Neg. LLF: 94.07771180902616
Iteration: 12, Func. Count: 140, Neg. LLF: 94.07497453568206
Iteration: 13, Func. Count: 151, Neg. LLF: 94.07427136173575
Iteration: 14, Func. Count: 162, Neg. LLF: 94.07419268650239
Iteration: 15, Func. Count: 173, Neg. LLF: 94.07418885447626
Iteration: 16, Func. Count: 183, Neg. LLF: 94.07418890318603
Optimization terminated successfully (Exit mode 0)
Current function value: 94.07418885447626
Iterations: 16
Function evaluations: 183
Gradient evaluations: 16
Iteration: 1, Func. Count: 13, Neg. LLF: 47635842.55573184
Iteration: 2, Func. Count: 27, Neg. LLF: 128.5210354503264
Iteration: 3, Func. Count: 40, Neg. LLF: 103.65159495685066
Iteration: 4, Func. Count: 53, Neg. LLF: 94.94321349600521
Iteration: 5, Func. Count: 65, Neg. LLF: 94.36891246374415
Iteration: 6, Func. Count: 77, Neg. LLF: 94.25553500346342
Iteration: 7, Func. Count: 90, Neg. LLF: 93.87896951734783
Iteration: 8, Func. Count: 102, Neg. LLF: 93.56598356026689
Iteration: 9, Func. Count: 114, Neg. LLF: 94.3569244590502
Iteration: 10, Func. Count: 127, Neg. LLF: 93.59227578528771
Iteration: 11, Func. Count: 140, Neg. LLF: 93.50698728424243
Iteration: 12, Func. Count: 153, Neg. LLF: 93.36333235351884
Iteration: 13, Func. Count: 165, Neg. LLF: 93.48897359437575
Iteration: 14, Func. Count: 178, Neg. LLF: 93.35661537223092
Iteration: 15, Func. Count: 190, Neg. LLF: 93.35625445303006
Iteration: 16, Func. Count: 202, Neg. LLF: 93.3562449983419
Iteration: 17, Func. Count: 213, Neg. LLF: 93.3562449898487
Optimization terminated successfully (Exit mode 0)
Current function value: 93.3562449983419
Iterations: 17
Function evaluations: 213
Gradient evaluations: 17
Iteration: 1, Func. Count: 10, Neg. LLF: 108.22562972547163
Iteration: 2, Func. Count: 21, Neg. LLF: 128.94891168240758
Iteration: 3, Func. Count: 31, Neg. LLF: 107.45187728088635
Iteration: 4, Func. Count: 41, Neg. LLF: 98.27103257159744
Iteration: 5, Func. Count: 51, Neg. LLF: 96.78650492927325
Iteration: 6, Func. Count: 60, Neg. LLF: 96.69071238301034
Iteration: 7, Func. Count: 69, Neg. LLF: 96.70135778180297
Iteration: 8, Func. Count: 79, Neg. LLF: 96.69535227075363
Iteration: 9, Func. Count: 89, Neg. LLF: 96.67159928945419
Iteration: 10, Func. Count: 98, Neg. LLF: 96.66973101662698
Iteration: 11, Func. Count: 107, Neg. LLF: 96.6696866955914
Iteration: 12, Func. Count: 116, Neg. LLF: 96.66968291846862
Iteration: 13, Func. Count: 125, Neg. LLF: 96.66968112404966
Iteration: 14, Func. Count: 133, Neg. LLF: 96.66968109717439
Optimization terminated successfully (Exit mode 0)
Current function value: 96.66968112404966
Iterations: 14
Function evaluations: 133
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 173861037.7484703
Iteration: 2, Func. Count: 23, Neg. LLF: 231.72604209841916
Iteration: 3, Func. Count: 36, Neg. LLF: 99.60106921806226
Iteration: 4, Func. Count: 47, Neg. LLF: 96.52686628782463
Iteration: 5, Func. Count: 58, Neg. LLF: 95.93526374304373
Iteration: 6, Func. Count: 69, Neg. LLF: 95.5234489323538
Iteration: 7, Func. Count: 80, Neg. LLF: 95.33918090307382
Iteration: 8, Func. Count: 90, Neg. LLF: 95.34360688877413
Iteration: 9, Func. Count: 101, Neg. LLF: 95.32810375694326
Iteration: 10, Func. Count: 111, Neg. LLF: 95.28568430062923
Iteration: 11, Func. Count: 121, Neg. LLF: 95.27591436568446
Iteration: 12, Func. Count: 131, Neg. LLF: 95.26318207356725
Iteration: 13, Func. Count: 141, Neg. LLF: 95.24929788317485
Iteration: 14, Func. Count: 151, Neg. LLF: 95.24803818415062
Iteration: 15, Func. Count: 161, Neg. LLF: 95.24797635119424
Iteration: 16, Func. Count: 171, Neg. LLF: 95.24797530647729
Iteration: 17, Func. Count: 180, Neg. LLF: 95.24797530646771
Optimization terminated successfully (Exit mode 0)
Current function value: 95.24797530647729
Iterations: 17
Function evaluations: 180
Gradient evaluations: 17
Iteration: 1, Func. Count: 12, Neg. LLF: 102106905.67868012
Iteration: 2, Func. Count: 25, Neg. LLF: 228.5747087853607
Iteration: 3, Func. Count: 39, Neg. LLF: 133.8161695297186
Iteration: 4, Func. Count: 51, Neg. LLF: 98.87638857111483
Iteration: 5, Func. Count: 64, Neg. LLF: 94.49592346828912
Iteration: 6, Func. Count: 75, Neg. LLF: 95.0584092699124
Iteration: 7, Func. Count: 88, Neg. LLF: 94.12728685294165
Iteration: 8, Func. Count: 99, Neg. LLF: 94.11633629836753
Iteration: 9, Func. Count: 111, Neg. LLF: 94.07528779306963
Iteration: 10, Func. Count: 122, Neg. LLF: 94.0744559057812
Iteration: 11, Func. Count: 133, Neg. LLF: 94.07422431740459
Iteration: 12, Func. Count: 144, Neg. LLF: 94.0741943918991
Iteration: 13, Func. Count: 155, Neg. LLF: 94.07419028436648
Iteration: 14, Func. Count: 166, Neg. LLF: 94.07418865257401
Iteration: 15, Func. Count: 176, Neg. LLF: 94.07418865257927
Optimization terminated successfully (Exit mode 0)
Current function value: 94.07418865257401
Iterations: 15
Function evaluations: 176
Gradient evaluations: 15
Iteration: 1, Func. Count: 13, Neg. LLF: 108243784.14358333
Iteration: 2, Func. Count: 27, Neg. LLF: 119.89249049997571
Iteration: 3, Func. Count: 40, Neg. LLF: 2836082.609550005
Iteration: 4, Func. Count: 54, Neg. LLF: 95.77955993702292
Iteration: 5, Func. Count: 67, Neg. LLF: 94.97946196852891
Iteration: 6, Func. Count: 79, Neg. LLF: 94.44620972067318
Iteration: 7, Func. Count: 91, Neg. LLF: 98.36191866440126
Iteration: 8, Func. Count: 106, Neg. LLF: 94.09471907873566
Iteration: 9, Func. Count: 118, Neg. LLF: 94.3578840306164
Iteration: 10, Func. Count: 131, Neg. LLF: 94.07848657530799
Iteration: 11, Func. Count: 143, Neg. LLF: 94.0759056767114
Iteration: 12, Func. Count: 155, Neg. LLF: 94.0747127106617
Iteration: 13, Func. Count: 167, Neg. LLF: 94.07424558539303
Iteration: 14, Func. Count: 179, Neg. LLF: 94.07419517383379
Iteration: 15, Func. Count: 191, Neg. LLF: 94.07418866121137
Iteration: 16, Func. Count: 202, Neg. LLF: 94.07418871000807
Optimization terminated successfully (Exit mode 0)
Current function value: 94.07418866121137
Iterations: 16
Function evaluations: 202
Gradient evaluations: 16
Iteration: 1, Func. Count: 14, Neg. LLF: 7075397.459711253
Iteration: 2, Func. Count: 29, Neg. LLF: 115.44505746826654
Iteration: 3, Func. Count: 43, Neg. LLF: 102.75522174273256
Iteration: 4, Func. Count: 57, Neg. LLF: 96.21980033148995
Iteration: 5, Func. Count: 71, Neg. LLF: 94.65210847409338
Iteration: 6, Func. Count: 84, Neg. LLF: 97.19818119430342
Iteration: 7, Func. Count: 98, Neg. LLF: 95.13884526676718
Iteration: 8, Func. Count: 112, Neg. LLF: 93.67156684095872
Iteration: 9, Func. Count: 125, Neg. LLF: 93.89676901575544
Iteration: 10, Func. Count: 139, Neg. LLF: 93.71984962714129
Iteration: 11, Func. Count: 153, Neg. LLF: 93.51026654090181
Iteration: 12, Func. Count: 167, Neg. LLF: 93.54089971872241
Iteration: 13, Func. Count: 181, Neg. LLF: 93.38169100605973
Iteration: 14, Func. Count: 194, Neg. LLF: 93.36102981482658
Iteration: 15, Func. Count: 207, Neg. LLF: 93.35711530518739
Iteration: 16, Func. Count: 220, Neg. LLF: 93.3563172405044
Iteration: 17, Func. Count: 233, Neg. LLF: 93.35624630893892
Iteration: 18, Func. Count: 246, Neg. LLF: 93.35624471661873
Iteration: 19, Func. Count: 258, Neg. LLF: 93.35624470828513
Optimization terminated successfully (Exit mode 0)
Current function value: 93.35624471661873
Iterations: 19
Function evaluations: 258
Gradient evaluations: 19
Iteration: 1, Func. Count: 11, Neg. LLF: 106.531847405558
Iteration: 2, Func. Count: 23, Neg. LLF: 252.88590805011714
Iteration: 3, Func. Count: 34, Neg. LLF: 8887450.738131402
Iteration: 4, Func. Count: 45, Neg. LLF: 127.08654082313319
Iteration: 5, Func. Count: 56, Neg. LLF: 108.15946754430429
Iteration: 6, Func. Count: 67, Neg. LLF: 95.88776774212951
Iteration: 7, Func. Count: 77, Neg. LLF: 95.89079169771507
Iteration: 8, Func. Count: 88, Neg. LLF: 96.60847721375258
Iteration: 9, Func. Count: 100, Neg. LLF: 95.79346464238972
Iteration: 10, Func. Count: 111, Neg. LLF: 95.72796313697923
Iteration: 11, Func. Count: 121, Neg. LLF: 95.70956689198916
Iteration: 12, Func. Count: 131, Neg. LLF: 95.70842380770354
Iteration: 13, Func. Count: 141, Neg. LLF: 95.70838483680177
Iteration: 14, Func. Count: 151, Neg. LLF: 95.70837896734687
Iteration: 15, Func. Count: 160, Neg. LLF: 95.70837896734683
Optimization terminated successfully (Exit mode 0)
Current function value: 95.70837896734687
Iterations: 15
Function evaluations: 160
Gradient evaluations: 15
Iteration: 1, Func. Count: 12, Neg. LLF: 174800573.0636372
Iteration: 2, Func. Count: 25, Neg. LLF: 211.90628413802483
Iteration: 3, Func. Count: 39, Neg. LLF: 103.50519109083946
Iteration: 4, Func. Count: 51, Neg. LLF: 97.88673022046105
Iteration: 5, Func. Count: 63, Neg. LLF: 99.0184102870536
Iteration: 6, Func. Count: 75, Neg. LLF: 95.34148422634384
Iteration: 7, Func. Count: 86, Neg. LLF: 95.41466831965342
Iteration: 8, Func. Count: 99, Neg. LLF: 95.32831012602983
Iteration: 9, Func. Count: 110, Neg. LLF: 95.31786218216166
Iteration: 10, Func. Count: 121, Neg. LLF: 95.26646636389016
Iteration: 11, Func. Count: 132, Neg. LLF: 95.24981962886211
Iteration: 12, Func. Count: 143, Neg. LLF: 95.24819507459132
Iteration: 13, Func. Count: 154, Neg. LLF: 95.24797527887985
Iteration: 14, Func. Count: 164, Neg. LLF: 95.24797527875504
Optimization terminated successfully (Exit mode 0)
Current function value: 95.24797527887985
Iterations: 14
Function evaluations: 164
Gradient evaluations: 14
Iteration: 1, Func. Count: 13, Neg. LLF: 106688234.30903535
Iteration: 2, Func. Count: 27, Neg. LLF: 228.68166500021516
Iteration: 3, Func. Count: 42, Neg. LLF: 135.78264692319684
Iteration: 4, Func. Count: 55, Neg. LLF: 99.10674798640144
Iteration: 5, Func. Count: 69, Neg. LLF: 94.4848934597104
Iteration: 6, Func. Count: 81, Neg. LLF: 94.91520171138119
Iteration: 7, Func. Count: 95, Neg. LLF: 94.12054460624974
Iteration: 8, Func. Count: 107, Neg. LLF: 94.08087225965338
Iteration: 9, Func. Count: 119, Neg. LLF: 94.07663697377082
Iteration: 10, Func. Count: 131, Neg. LLF: 94.07454995829828
Iteration: 11, Func. Count: 143, Neg. LLF: 94.07424088702783
Iteration: 12, Func. Count: 155, Neg. LLF: 94.074198077651
Iteration: 13, Func. Count: 167, Neg. LLF: 94.07419087102527
Iteration: 14, Func. Count: 179, Neg. LLF: 94.07418866063892
Iteration: 15, Func. Count: 190, Neg. LLF: 94.07418866063594
Optimization terminated successfully (Exit mode 0)
Current function value: 94.07418866063892
Iterations: 15
Function evaluations: 190
Gradient evaluations: 15
Iteration: 1, Func. Count: 14, Neg. LLF: 7673871.969429927
Iteration: 2, Func. Count: 29, Neg. LLF: 105.46157163978877
Iteration: 3, Func. Count: 43, Neg. LLF: 97.42591524885889
Iteration: 4, Func. Count: 57, Neg. LLF: 99.17309485697665
Iteration: 5, Func. Count: 71, Neg. LLF: 100.39450072830753
Iteration: 6, Func. Count: 85, Neg. LLF: 95.31125005020665
Iteration: 7, Func. Count: 98, Neg. LLF: 94.8203106929226
Iteration: 8, Func. Count: 111, Neg. LLF: 97.05423461720738
Iteration: 9, Func. Count: 125, Neg. LLF: 94.35969686970823
Iteration: 10, Func. Count: 138, Neg. LLF: 95.01653475606192
Iteration: 11, Func. Count: 152, Neg. LLF: 94.189101804023
Iteration: 12, Func. Count: 165, Neg. LLF: 94.17048387074215
Iteration: 13, Func. Count: 178, Neg. LLF: 94.14522976961202
Iteration: 14, Func. Count: 191, Neg. LLF: 94.08502936339181
Iteration: 15, Func. Count: 204, Neg. LLF: 94.12082084679024
Iteration: 16, Func. Count: 218, Neg. LLF: 94.07487414673395
Iteration: 17, Func. Count: 231, Neg. LLF: 94.07422887999837
Iteration: 18, Func. Count: 244, Neg. LLF: 94.07422377465936
Iteration: 19, Func. Count: 258, Neg. LLF: 94.07418875510109
Iteration: 20, Func. Count: 270, Neg. LLF: 94.0741888038344
Optimization terminated successfully (Exit mode 0)
Current function value: 94.07418875510109
Iterations: 20
Function evaluations: 270
Gradient evaluations: 20
Iteration: 1, Func. Count: 15, Neg. LLF: 46244933.93835856
Iteration: 2, Func. Count: 31, Neg. LLF: 141.88400483190787
Iteration: 3, Func. Count: 46, Neg. LLF: 105.12185782515152
Iteration: 4, Func. Count: 61, Neg. LLF: 97.02279881864409
Iteration: 5, Func. Count: 76, Neg. LLF: 95.33761439649832
Iteration: 6, Func. Count: 90, Neg. LLF: 95.83051919832745
Iteration: 7, Func. Count: 105, Neg. LLF: 97.16578093256548
Iteration: 8, Func. Count: 120, Neg. LLF: 93.79512764194261
Iteration: 9, Func. Count: 135, Neg. LLF: 93.099262299409
Iteration: 10, Func. Count: 149, Neg. LLF: 93.00541736881976
Iteration: 11, Func. Count: 163, Neg. LLF: 93.07539350963754
Iteration: 12, Func. Count: 178, Neg. LLF: 92.99047947112528
Iteration: 13, Func. Count: 192, Neg. LLF: 92.99040203352705
Iteration: 14, Func. Count: 206, Neg. LLF: 92.99040008752957
Iteration: 15, Func. Count: 219, Neg. LLF: 92.99040005842495
Optimization terminated successfully (Exit mode 0)
Current function value: 92.99040008752957
Iterations: 15
Function evaluations: 219
Gradient evaluations: 15
Iteration: 1, Func. Count: 8, Neg. LLF: 108.91459806949551
Iteration: 2, Func. Count: 17, Neg. LLF: 3882.3015321452203
Iteration: 3, Func. Count: 25, Neg. LLF: 180.05548672366666
Iteration: 4, Func. Count: 33, Neg. LLF: 126.40582990452816
Iteration: 5, Func. Count: 41, Neg. LLF: 109.60425212921128
Iteration: 6, Func. Count: 49, Neg. LLF: 98.10075940319217
Iteration: 7, Func. Count: 57, Neg. LLF: 95.51241470667965
Iteration: 8, Func. Count: 64, Neg. LLF: 95.42473050555475
Iteration: 9, Func. Count: 71, Neg. LLF: 95.41500972182978
Iteration: 10, Func. Count: 78, Neg. LLF: 95.41387006455773
Iteration: 11, Func. Count: 85, Neg. LLF: 95.4134290156323
Iteration: 12, Func. Count: 92, Neg. LLF: 95.41341206554205
Iteration: 13, Func. Count: 99, Neg. LLF: 95.4134049490652
Iteration: 14, Func. Count: 105, Neg. LLF: 95.4134049490633
Optimization terminated successfully (Exit mode 0)
Current function value: 95.4134049490652
Iterations: 14
Function evaluations: 105
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 22946895.31035243
Iteration: 2, Func. Count: 19, Neg. LLF: 122.292688033574
Iteration: 3, Func. Count: 28, Neg. LLF: 178.3743860023343
Iteration: 4, Func. Count: 38, Neg. LLF: 97.13424701567135
Iteration: 5, Func. Count: 47, Neg. LLF: 96.3112231545203
Iteration: 6, Func. Count: 56, Neg. LLF: 97.22675052812754
Iteration: 7, Func. Count: 65, Neg. LLF: 95.56375215305387
Iteration: 8, Func. Count: 73, Neg. LLF: 95.55412450512287
Iteration: 9, Func. Count: 82, Neg. LLF: 95.48443854817958
Iteration: 10, Func. Count: 90, Neg. LLF: 95.43001209736683
Iteration: 11, Func. Count: 98, Neg. LLF: 95.41735057942083
Iteration: 12, Func. Count: 106, Neg. LLF: 95.4161172271604
Iteration: 13, Func. Count: 114, Neg. LLF: 95.41508266170781
Iteration: 14, Func. Count: 122, Neg. LLF: 95.41380063849093
Iteration: 15, Func. Count: 130, Neg. LLF: 95.41344679881104
Iteration: 16, Func. Count: 138, Neg. LLF: 95.41340586964945
Iteration: 17, Func. Count: 146, Neg. LLF: 95.41340495377527
Optimization terminated successfully (Exit mode 0)
Current function value: 95.41340495377527
Iterations: 17
Function evaluations: 146
Gradient evaluations: 17
Iteration: 1, Func. Count: 10, Neg. LLF: 24100187.244297847
Iteration: 2, Func. Count: 21, Neg. LLF: 118.93373682228336
Iteration: 3, Func. Count: 31, Neg. LLF: 109.35143459085131
Iteration: 4, Func. Count: 41, Neg. LLF: 115.05266046821477
Iteration: 5, Func. Count: 51, Neg. LLF: 96.64043826218719
Iteration: 6, Func. Count: 61, Neg. LLF: 96.02954080097068
Iteration: 7, Func. Count: 71, Neg. LLF: 95.38831740610576
Iteration: 8, Func. Count: 80, Neg. LLF: 95.36121986657372
Iteration: 9, Func. Count: 89, Neg. LLF: 95.34372842078612
Iteration: 10, Func. Count: 98, Neg. LLF: 95.33058483540105
Iteration: 11, Func. Count: 107, Neg. LLF: 95.32859691672223
Iteration: 12, Func. Count: 116, Neg. LLF: 95.32624849420593
Iteration: 13, Func. Count: 125, Neg. LLF: 95.32620618512348
Iteration: 14, Func. Count: 134, Neg. LLF: 95.32620453466978
Iteration: 15, Func. Count: 142, Neg. LLF: 95.32620453463723
Optimization terminated successfully (Exit mode 0)
Current function value: 95.32620453466978
Iterations: 15
Function evaluations: 142
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 23936488.96793074
Iteration: 2, Func. Count: 23, Neg. LLF: 256.544222411342
Iteration: 3, Func. Count: 34, Neg. LLF: 158.43835413889596
Iteration: 4, Func. Count: 46, Neg. LLF: 107.60756120639293
Iteration: 5, Func. Count: 58, Neg. LLF: 95.52927637149708
Iteration: 6, Func. Count: 68, Neg. LLF: 95.5226615370627
Iteration: 7, Func. Count: 78, Neg. LLF: 95.56441872873702
Iteration: 8, Func. Count: 89, Neg. LLF: 95.50296371216128
Iteration: 9, Func. Count: 99, Neg. LLF: 95.49944411965454
Iteration: 10, Func. Count: 109, Neg. LLF: 95.49680741209762
Iteration: 11, Func. Count: 119, Neg. LLF: 95.49588944988434
Iteration: 12, Func. Count: 129, Neg. LLF: 95.49538639516827
Iteration: 13, Func. Count: 139, Neg. LLF: 95.49528416412488
Iteration: 14, Func. Count: 149, Neg. LLF: 95.49525359271823
Iteration: 15, Func. Count: 159, Neg. LLF: 95.49524796733445
Iteration: 16, Func. Count: 169, Neg. LLF: 95.4952474110008
Optimization terminated successfully (Exit mode 0)
Current function value: 95.4952474110008
Iterations: 16
Function evaluations: 169
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 23277734.8358221
Iteration: 2, Func. Count: 24, Neg. LLF: 26823.345082737407
Iteration: 3, Func. Count: 36, Neg. LLF: 168.54485044635777
Iteration: 4, Func. Count: 49, Neg. LLF: 120.92106747911598
Iteration: 5, Func. Count: 61, Neg. LLF: 97.2242953148547
Iteration: 6, Func. Count: 73, Neg. LLF: 95.49699159985724
Iteration: 7, Func. Count: 84, Neg. LLF: 96.59822300113129
Iteration: 8, Func. Count: 96, Neg. LLF: 95.33653769838989
Iteration: 9, Func. Count: 107, Neg. LLF: 95.32830132138885
Iteration: 10, Func. Count: 118, Neg. LLF: 95.32640110263148
Iteration: 11, Func. Count: 129, Neg. LLF: 95.32621925404263
Iteration: 12, Func. Count: 140, Neg. LLF: 95.32620867420925
Iteration: 13, Func. Count: 151, Neg. LLF: 95.32620536979645
Iteration: 14, Func. Count: 162, Neg. LLF: 95.32620445557501
Optimization terminated successfully (Exit mode 0)
Current function value: 95.32620445557501
Iterations: 14
Function evaluations: 162
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 109.06844570138723
Iteration: 2, Func. Count: 19, Neg. LLF: 978.5797463392502
Iteration: 3, Func. Count: 28, Neg. LLF: 194.87552350633857
Iteration: 4, Func. Count: 37, Neg. LLF: 127.60376471955784
Iteration: 5, Func. Count: 46, Neg. LLF: 110.14708101484305
Iteration: 6, Func. Count: 55, Neg. LLF: 97.88754731689015
Iteration: 7, Func. Count: 64, Neg. LLF: 95.49685890654901
Iteration: 8, Func. Count: 72, Neg. LLF: 95.42357158047713
Iteration: 9, Func. Count: 80, Neg. LLF: 96.29946476413716
Iteration: 10, Func. Count: 90, Neg. LLF: 95.41378299874496
Iteration: 11, Func. Count: 98, Neg. LLF: 95.41279430167508
Iteration: 12, Func. Count: 106, Neg. LLF: 95.41263930407155
Iteration: 13, Func. Count: 114, Neg. LLF: 95.41263105261251
Iteration: 14, Func. Count: 122, Neg. LLF: 95.41262804148707
Iteration: 15, Func. Count: 129, Neg. LLF: 95.4126280414811
Optimization terminated successfully (Exit mode 0)
Current function value: 95.41262804148707
Iterations: 15
Function evaluations: 129
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 32791317.877264522
Iteration: 2, Func. Count: 21, Neg. LLF: 123.07527994746593
Iteration: 3, Func. Count: 32, Neg. LLF: 114.67613750091138
Iteration: 4, Func. Count: 42, Neg. LLF: 97.90834028931394
Iteration: 5, Func. Count: 52, Neg. LLF: 95.66123227069014
Iteration: 6, Func. Count: 61, Neg. LLF: 97.89557696913224
Iteration: 7, Func. Count: 71, Neg. LLF: 97.71800737860735
Iteration: 8, Func. Count: 81, Neg. LLF: 96.29326164834274
Iteration: 9, Func. Count: 91, Neg. LLF: 95.45535246701371
Iteration: 10, Func. Count: 100, Neg. LLF: 95.42634651320085
Iteration: 11, Func. Count: 109, Neg. LLF: 95.41751860296723
Iteration: 12, Func. Count: 118, Neg. LLF: 95.41549419504486
Iteration: 13, Func. Count: 127, Neg. LLF: 95.41460558080657
Iteration: 14, Func. Count: 136, Neg. LLF: 95.41289626000294
Iteration: 15, Func. Count: 145, Neg. LLF: 95.41265584068495
Iteration: 16, Func. Count: 154, Neg. LLF: 95.41262841412131
Iteration: 17, Func. Count: 162, Neg. LLF: 95.41262842220009
Optimization terminated successfully (Exit mode 0)
Current function value: 95.41262841412131
Iterations: 17
Function evaluations: 162
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 25717750.317217734
Iteration: 2, Func. Count: 23, Neg. LLF: 117.5982815272508
Iteration: 3, Func. Count: 34, Neg. LLF: 109.38358643680252
Iteration: 4, Func. Count: 45, Neg. LLF: 116.48242884156689
Iteration: 5, Func. Count: 56, Neg. LLF: 96.75043583957648
Iteration: 6, Func. Count: 67, Neg. LLF: 96.0265573648384
Iteration: 7, Func. Count: 78, Neg. LLF: 95.3859738480706
Iteration: 8, Func. Count: 88, Neg. LLF: 95.35898264967994
Iteration: 9, Func. Count: 98, Neg. LLF: 95.34347520373608
Iteration: 10, Func. Count: 108, Neg. LLF: 95.33016267699112
Iteration: 11, Func. Count: 118, Neg. LLF: 95.32834367685732
Iteration: 12, Func. Count: 128, Neg. LLF: 95.32642455382367
Iteration: 13, Func. Count: 138, Neg. LLF: 95.32622292335374
Iteration: 14, Func. Count: 148, Neg. LLF: 95.32620729488092
Iteration: 15, Func. Count: 158, Neg. LLF: 95.32620494160005
Iteration: 16, Func. Count: 168, Neg. LLF: 95.32620408746655
Optimization terminated successfully (Exit mode 0)
Current function value: 95.32620408746655
Iterations: 16
Function evaluations: 168
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 25642075.249420974
Iteration: 2, Func. Count: 25, Neg. LLF: 236.5400698884013
Iteration: 3, Func. Count: 37, Neg. LLF: 145.39374723542275
Iteration: 4, Func. Count: 50, Neg. LLF: 110.61878053351182
Iteration: 5, Func. Count: 63, Neg. LLF: 95.52663489227895
Iteration: 6, Func. Count: 74, Neg. LLF: 95.52075870640486
Iteration: 7, Func. Count: 85, Neg. LLF: 95.55180325340953
Iteration: 8, Func. Count: 97, Neg. LLF: 95.50212859327583
Iteration: 9, Func. Count: 108, Neg. LLF: 95.49863647045055
Iteration: 10, Func. Count: 119, Neg. LLF: 95.49652930934354
Iteration: 11, Func. Count: 130, Neg. LLF: 95.49582167392361
Iteration: 12, Func. Count: 141, Neg. LLF: 95.49535379945748
Iteration: 13, Func. Count: 152, Neg. LLF: 95.4952997427279
Iteration: 14, Func. Count: 163, Neg. LLF: 95.49525415444302
Iteration: 15, Func. Count: 174, Neg. LLF: 95.49524792358305
Iteration: 16, Func. Count: 184, Neg. LLF: 95.49524792369725
Optimization terminated successfully (Exit mode 0)
Current function value: 95.49524792358305
Iterations: 16
Function evaluations: 184
Gradient evaluations: 16
Iteration: 1, Func. Count: 13, Neg. LLF: 32801366.2424443
Iteration: 2, Func. Count: 27, Neg. LLF: 530.5972388318828
Iteration: 3, Func. Count: 40, Neg. LLF: 126.87834194657512
Iteration: 4, Func. Count: 53, Neg. LLF: 99.94879922745388
Iteration: 5, Func. Count: 66, Neg. LLF: 97.85237660444412
Iteration: 6, Func. Count: 79, Neg. LLF: 96.02949984445111
Iteration: 7, Func. Count: 92, Neg. LLF: 95.43641838291231
Iteration: 8, Func. Count: 104, Neg. LLF: 95.43894926816185
Iteration: 9, Func. Count: 117, Neg. LLF: 95.34066216639052
Iteration: 10, Func. Count: 129, Neg. LLF: 95.3329543714253
Iteration: 11, Func. Count: 141, Neg. LLF: 95.32873324216199
Iteration: 12, Func. Count: 153, Neg. LLF: 95.32639366843392
Iteration: 13, Func. Count: 165, Neg. LLF: 95.32620951141391
Iteration: 14, Func. Count: 177, Neg. LLF: 95.32620437588216
Iteration: 15, Func. Count: 188, Neg. LLF: 95.32620438850284
Optimization terminated successfully (Exit mode 0)
Current function value: 95.32620437588216
Iterations: 15
Function evaluations: 188
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 107.16215979470718
Iteration: 2, Func. Count: 21, Neg. LLF: 101.30839341357085
Iteration: 3, Func. Count: 32, Neg. LLF: 784.8143605621447
Iteration: 4, Func. Count: 42, Neg. LLF: 1191.1278343154909
Iteration: 5, Func. Count: 52, Neg. LLF: 119.21717744201828
Iteration: 6, Func. Count: 62, Neg. LLF: 108.34766104601962
Iteration: 7, Func. Count: 72, Neg. LLF: 94.31352929687318
Iteration: 8, Func. Count: 81, Neg. LLF: 94.21745021789367
Iteration: 9, Func. Count: 90, Neg. LLF: 97.08184664465306
Iteration: 10, Func. Count: 100, Neg. LLF: 94.17454994715114
Iteration: 11, Func. Count: 109, Neg. LLF: 94.17253136798999
Iteration: 12, Func. Count: 118, Neg. LLF: 94.17163562860817
Iteration: 13, Func. Count: 127, Neg. LLF: 94.17131226551253
Iteration: 14, Func. Count: 136, Neg. LLF: 94.17121236381008
Iteration: 15, Func. Count: 145, Neg. LLF: 94.17120847898045
Iteration: 16, Func. Count: 153, Neg. LLF: 94.17120847897527
Optimization terminated successfully (Exit mode 0)
Current function value: 94.17120847898045
Iterations: 16
Function evaluations: 153
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 195900035.74319273
Iteration: 2, Func. Count: 23, Neg. LLF: 269.07038686896374
Iteration: 3, Func. Count: 36, Neg. LLF: 97.22011276645081
Iteration: 4, Func. Count: 47, Neg. LLF: 95.31290638499519
Iteration: 5, Func. Count: 57, Neg. LLF: 95.28218651131029
Iteration: 6, Func. Count: 67, Neg. LLF: 95.24846614769315
Iteration: 7, Func. Count: 77, Neg. LLF: 95.24812342908012
Iteration: 8, Func. Count: 87, Neg. LLF: 95.24797986149294
Iteration: 9, Func. Count: 97, Neg. LLF: 95.24797584879873
Iteration: 10, Func. Count: 107, Neg. LLF: 95.24797523923675
Optimization terminated successfully (Exit mode 0)
Current function value: 95.24797523923675
Iterations: 10
Function evaluations: 107
Gradient evaluations: 10
Iteration: 1, Func. Count: 12, Neg. LLF: 68419026.53012614
Iteration: 2, Func. Count: 25, Neg. LLF: 107.42795425671123
Iteration: 3, Func. Count: 37, Neg. LLF: 111.08782486357326
Iteration: 4, Func. Count: 49, Neg. LLF: 216.56654004533416
Iteration: 5, Func. Count: 61, Neg. LLF: 94.58056946872017
Iteration: 6, Func. Count: 72, Neg. LLF: 97.51753024303433
Iteration: 7, Func. Count: 84, Neg. LLF: 95.16544892964508
Iteration: 8, Func. Count: 96, Neg. LLF: 97.87946533625458
Iteration: 9, Func. Count: 109, Neg. LLF: 93.80899985404513
Iteration: 10, Func. Count: 120, Neg. LLF: 93.79388029569279
Iteration: 11, Func. Count: 131, Neg. LLF: 93.79292220385143
Iteration: 12, Func. Count: 142, Neg. LLF: 93.79250262077097
Iteration: 13, Func. Count: 153, Neg. LLF: 93.79247083760829
Iteration: 14, Func. Count: 164, Neg. LLF: 93.79246733593791
Iteration: 15, Func. Count: 175, Neg. LLF: 93.79246257554996
Iteration: 16, Func. Count: 185, Neg. LLF: 93.79246257549951
Optimization terminated successfully (Exit mode 0)
Current function value: 93.79246257554996
Iterations: 16
Function evaluations: 185
Gradient evaluations: 16
Iteration: 1, Func. Count: 13, Neg. LLF: 65348481.619552195
Iteration: 2, Func. Count: 27, Neg. LLF: 110.8452266956587
Iteration: 3, Func. Count: 40, Neg. LLF: 102.21966460093454
Iteration: 4, Func. Count: 53, Neg. LLF: 135.76324020611128
Iteration: 5, Func. Count: 66, Neg. LLF: 94.62750582439527
Iteration: 6, Func. Count: 78, Neg. LLF: 96.23089932767056
Iteration: 7, Func. Count: 92, Neg. LLF: 95.1002254093219
Iteration: 8, Func. Count: 105, Neg. LLF: 97.43438896020274
Iteration: 9, Func. Count: 119, Neg. LLF: 93.83600977830122
Iteration: 10, Func. Count: 131, Neg. LLF: 93.79453390570303
Iteration: 11, Func. Count: 143, Neg. LLF: 93.79380199840801
Iteration: 12, Func. Count: 155, Neg. LLF: 93.79256587407006
Iteration: 13, Func. Count: 167, Neg. LLF: 93.79250253058737
Iteration: 14, Func. Count: 179, Neg. LLF: 93.79248371273661
Iteration: 15, Func. Count: 191, Neg. LLF: 93.79246932463639
Iteration: 16, Func. Count: 203, Neg. LLF: 93.79246318432948
Iteration: 17, Func. Count: 215, Neg. LLF: 93.79246224850368
Optimization terminated successfully (Exit mode 0)
Current function value: 93.79246224850368
Iterations: 17
Function evaluations: 215
Gradient evaluations: 17
Iteration: 1, Func. Count: 14, Neg. LLF: 62771472.65317781
Iteration: 2, Func. Count: 29, Neg. LLF: 7745586.719177775
Iteration: 3, Func. Count: 43, Neg. LLF: 101.8378964741732
Iteration: 4, Func. Count: 57, Neg. LLF: 4023.339005061127
Iteration: 5, Func. Count: 71, Neg. LLF: 94.57725404763005
Iteration: 6, Func. Count: 84, Neg. LLF: 99.50428355175059
Iteration: 7, Func. Count: 99, Neg. LLF: 99.83160937188858
Iteration: 8, Func. Count: 113, Neg. LLF: 95.77917406792028
Iteration: 9, Func. Count: 128, Neg. LLF: 93.77278641335351
Iteration: 10, Func. Count: 142, Neg. LLF: 93.5575079681449
Iteration: 11, Func. Count: 155, Neg. LLF: 93.52112051700902
Iteration: 12, Func. Count: 168, Neg. LLF: 93.51206648781512
Iteration: 13, Func. Count: 181, Neg. LLF: 93.49797766400648
Iteration: 14, Func. Count: 194, Neg. LLF: 93.48641683442024
Iteration: 15, Func. Count: 207, Neg. LLF: 93.33804389661549
Iteration: 16, Func. Count: 220, Neg. LLF: 93.17309555380687
Iteration: 17, Func. Count: 233, Neg. LLF: 92.71903355823476
Iteration: 18, Func. Count: 246, Neg. LLF: 92.71930537844928
Iteration: 19, Func. Count: 260, Neg. LLF: 92.67011624536376
Iteration: 20, Func. Count: 273, Neg. LLF: 92.66437694528301
Iteration: 21, Func. Count: 286, Neg. LLF: 92.6639320004281
Iteration: 22, Func. Count: 299, Neg. LLF: 92.66377966823619
Iteration: 23, Func. Count: 312, Neg. LLF: 92.66374698140523
Iteration: 24, Func. Count: 325, Neg. LLF: 92.6637544073934
Iteration: 25, Func. Count: 348, Neg. LLF: 92.66373774925681
Iteration: 26, Func. Count: 371, Neg. LLF: 92.66380735823476
Iteration: 27, Func. Count: 386, Neg. LLF: 92.6637614955696
Iteration: 28, Func. Count: 401, Neg. LLF: 92.66375625737082
Iteration: 29, Func. Count: 415, Neg. LLF: 92.66375578930739
Iteration: 30, Func. Count: 429, Neg. LLF: 92.66375572145692
Iteration: 31, Func. Count: 441, Neg. LLF: 92.66375570265637
Optimization terminated successfully (Exit mode 0)
Current function value: 92.66375572145692
Iterations: 32
Function evaluations: 441
Gradient evaluations: 31
Iteration: 1, Func. Count: 11, Neg. LLF: 108.75390030246788
Iteration: 2, Func. Count: 23, Neg. LLF: 157.75066856337057
Iteration: 3, Func. Count: 34, Neg. LLF: 227.29991475642285
Iteration: 4, Func. Count: 45, Neg. LLF: 789.5002316459364
Iteration: 5, Func. Count: 56, Neg. LLF: 128.9572654531263
Iteration: 6, Func. Count: 67, Neg. LLF: 95.63736696786391
Iteration: 7, Func. Count: 78, Neg. LLF: 94.40436764808007
Iteration: 8, Func. Count: 88, Neg. LLF: 94.24053759904346
Iteration: 9, Func. Count: 98, Neg. LLF: 96.09224887901878
Iteration: 10, Func. Count: 109, Neg. LLF: 94.40550655153294
Iteration: 11, Func. Count: 120, Neg. LLF: 94.18549401002981
Iteration: 12, Func. Count: 130, Neg. LLF: 94.17177263594385
Iteration: 13, Func. Count: 140, Neg. LLF: 94.17136187982352
Iteration: 14, Func. Count: 150, Neg. LLF: 94.17121001125348
Iteration: 15, Func. Count: 160, Neg. LLF: 94.17120840508287
Iteration: 16, Func. Count: 169, Neg. LLF: 94.17120847318961
Optimization terminated successfully (Exit mode 0)
Current function value: 94.17120840508287
Iterations: 16
Function evaluations: 169
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 174378572.8358754
Iteration: 2, Func. Count: 25, Neg. LLF: 227.9395262535173
Iteration: 3, Func. Count: 39, Neg. LLF: 100.61102630762176
Iteration: 4, Func. Count: 51, Neg. LLF: 96.69197157634288
Iteration: 5, Func. Count: 63, Neg. LLF: 96.15402378426145
Iteration: 6, Func. Count: 75, Neg. LLF: 95.39427730727223
Iteration: 7, Func. Count: 86, Neg. LLF: 95.03368662975568
Iteration: 8, Func. Count: 97, Neg. LLF: 102.15062768758067
Iteration: 9, Func. Count: 110, Neg. LLF: 94.80747472804717
Iteration: 10, Func. Count: 122, Neg. LLF: 94.34292138379934
Iteration: 11, Func. Count: 133, Neg. LLF: 94.57707927114993
Iteration: 12, Func. Count: 145, Neg. LLF: 94.31292884922844
Iteration: 13, Func. Count: 156, Neg. LLF: 94.29663588816618
Iteration: 14, Func. Count: 167, Neg. LLF: 94.26941439060224
Iteration: 15, Func. Count: 178, Neg. LLF: 94.2612543050527
Iteration: 16, Func. Count: 189, Neg. LLF: 94.25417923259263
Iteration: 17, Func. Count: 200, Neg. LLF: 94.24910798035525
Iteration: 18, Func. Count: 211, Neg. LLF: 94.23890605722897
Iteration: 19, Func. Count: 222, Neg. LLF: 94.22558536965288
Iteration: 20, Func. Count: 233, Neg. LLF: 94.21456792886893
Iteration: 21, Func. Count: 244, Neg. LLF: 94.20980796036423
Iteration: 22, Func. Count: 255, Neg. LLF: 94.20775197786148
Iteration: 23, Func. Count: 266, Neg. LLF: 94.20513940369443
Iteration: 24, Func. Count: 277, Neg. LLF: 94.20003708012077
Iteration: 25, Func. Count: 288, Neg. LLF: 94.19016626550348
Iteration: 26, Func. Count: 299, Neg. LLF: 94.17815304180607
Iteration: 27, Func. Count: 310, Neg. LLF: 94.17226454751344
Iteration: 28, Func. Count: 321, Neg. LLF: 94.17125688110887
Iteration: 29, Func. Count: 332, Neg. LLF: 94.17120827306832
Iteration: 30, Func. Count: 342, Neg. LLF: 94.17120833939597
Optimization terminated successfully (Exit mode 0)
Current function value: 94.17120827306832
Iterations: 30
Function evaluations: 342
Gradient evaluations: 30
Iteration: 1, Func. Count: 13, Neg. LLF: 7699352.025316261
Iteration: 2, Func. Count: 27, Neg. LLF: 98.13297876265463
Iteration: 3, Func. Count: 40, Neg. LLF: 119.38795673901274
Iteration: 4, Func. Count: 53, Neg. LLF: 123.98898540431898
Iteration: 5, Func. Count: 66, Neg. LLF: 94.46154095467344
Iteration: 6, Func. Count: 78, Neg. LLF: 100.42462666327638
Iteration: 7, Func. Count: 91, Neg. LLF: 93.9525616036379
Iteration: 8, Func. Count: 103, Neg. LLF: 94.90847919790316
Iteration: 9, Func. Count: 116, Neg. LLF: 94.01897674098524
Iteration: 10, Func. Count: 129, Neg. LLF: 93.84373978564396
Iteration: 11, Func. Count: 142, Neg. LLF: 93.79551528263299
Iteration: 12, Func. Count: 154, Neg. LLF: 93.79370992932519
Iteration: 13, Func. Count: 166, Neg. LLF: 93.7927017628239
Iteration: 14, Func. Count: 178, Neg. LLF: 93.79248468348388
Iteration: 15, Func. Count: 190, Neg. LLF: 93.79246364995971
Iteration: 16, Func. Count: 202, Neg. LLF: 93.79246226650547
Iteration: 17, Func. Count: 213, Neg. LLF: 93.79246226647628
Optimization terminated successfully (Exit mode 0)
Current function value: 93.79246226650547
Iterations: 17
Function evaluations: 213
Gradient evaluations: 17
Iteration: 1, Func. Count: 14, Neg. LLF: 7728109.785139492
Iteration: 2, Func. Count: 28, Neg. LLF: 125.5440388203275
Iteration: 3, Func. Count: 42, Neg. LLF: 97.85312440040505
Iteration: 4, Func. Count: 56, Neg. LLF: 102.48292001605317
Iteration: 5, Func. Count: 70, Neg. LLF: 97.23898235794907
Iteration: 6, Func. Count: 84, Neg. LLF: 94.19579452765589
Iteration: 7, Func. Count: 97, Neg. LLF: 94.05069376371074
Iteration: 8, Func. Count: 110, Neg. LLF: 97.11960440746073
Iteration: 9, Func. Count: 124, Neg. LLF: 95.781591412789
Iteration: 10, Func. Count: 139, Neg. LLF: 93.8162643236522
Iteration: 11, Func. Count: 152, Neg. LLF: 93.79501628363278
Iteration: 12, Func. Count: 165, Neg. LLF: 93.7935518263633
Iteration: 13, Func. Count: 178, Neg. LLF: 93.79277535018097
Iteration: 14, Func. Count: 191, Neg. LLF: 93.79257340614583
Iteration: 15, Func. Count: 204, Neg. LLF: 93.79247371041117
Iteration: 16, Func. Count: 217, Neg. LLF: 93.79246367544194
Iteration: 17, Func. Count: 230, Neg. LLF: 93.79246225367609
Iteration: 18, Func. Count: 242, Neg. LLF: 93.7924622929859
Optimization terminated successfully (Exit mode 0)
Current function value: 93.79246225367609
Iterations: 18
Function evaluations: 242
Gradient evaluations: 18
Iteration: 1, Func. Count: 15, Neg. LLF: 46949943.69800063
Iteration: 2, Func. Count: 30, Neg. LLF: 1795544.7583198124
Iteration: 3, Func. Count: 45, Neg. LLF: 97.54517440551646
Iteration: 4, Func. Count: 60, Neg. LLF: 99.36892709607724
Iteration: 5, Func. Count: 75, Neg. LLF: 97.56447360281967
Iteration: 6, Func. Count: 90, Neg. LLF: 93.57344150561954
Iteration: 7, Func. Count: 104, Neg. LLF: 105.77504479393967
Iteration: 8, Func. Count: 119, Neg. LLF: 93.48066704561569
Iteration: 9, Func. Count: 133, Neg. LLF: 93.38464220171886
Iteration: 10, Func. Count: 147, Neg. LLF: 93.34841116328258
Iteration: 11, Func. Count: 162, Neg. LLF: 93.3274036013149
Iteration: 12, Func. Count: 177, Neg. LLF: 98.28877867430418
Iteration: 13, Func. Count: 193, Neg. LLF: 92.96276837994724
Iteration: 14, Func. Count: 207, Neg. LLF: 92.89887406943151
Iteration: 15, Func. Count: 221, Neg. LLF: 92.77084008219636
Iteration: 16, Func. Count: 235, Neg. LLF: 92.68219320211689
Iteration: 17, Func. Count: 249, Neg. LLF: 92.66542242737017
Iteration: 18, Func. Count: 263, Neg. LLF: 92.66381927588425
Iteration: 19, Func. Count: 277, Neg. LLF: 92.66375606006736
Iteration: 20, Func. Count: 290, Neg. LLF: 92.66375604139868
Optimization terminated successfully (Exit mode 0)
Current function value: 92.66375606006736
Iterations: 20
Function evaluations: 290
Gradient evaluations: 20
Iteration: 1, Func. Count: 12, Neg. LLF: 107.2410171801801
Iteration: 2, Func. Count: 25, Neg. LLF: 114.46696187733927
Iteration: 3, Func. Count: 37, Neg. LLF: 403.9534205539544
Iteration: 4, Func. Count: 49, Neg. LLF: 2597608.967942759
Iteration: 5, Func. Count: 61, Neg. LLF: 136.61620257856654
Iteration: 6, Func. Count: 73, Neg. LLF: 95.71283934933815
Iteration: 7, Func. Count: 85, Neg. LLF: 116.09053716703085
Iteration: 8, Func. Count: 97, Neg. LLF: 94.23257282804946
Iteration: 9, Func. Count: 108, Neg. LLF: 94.89771539128402
Iteration: 10, Func. Count: 120, Neg. LLF: 94.21064503640943
Iteration: 11, Func. Count: 132, Neg. LLF: 94.19929396789861
Iteration: 12, Func. Count: 144, Neg. LLF: 94.16033649740312
Iteration: 13, Func. Count: 155, Neg. LLF: 94.1588296134687
Iteration: 14, Func. Count: 166, Neg. LLF: 94.15835266336866
Iteration: 15, Func. Count: 177, Neg. LLF: 94.15835176532194
Optimization terminated successfully (Exit mode 0)
Current function value: 94.15835176532194
Iterations: 15
Function evaluations: 177
Gradient evaluations: 15
Iteration: 1, Func. Count: 13, Neg. LLF: 175119195.87189975
Iteration: 2, Func. Count: 27, Neg. LLF: 209.05321151027752
Iteration: 3, Func. Count: 42, Neg. LLF: 105.4512335528467
Iteration: 4, Func. Count: 55, Neg. LLF: 98.1232473732501
Iteration: 5, Func. Count: 68, Neg. LLF: 101.1452698684178
Iteration: 6, Func. Count: 81, Neg. LLF: 95.34309158085483
Iteration: 7, Func. Count: 93, Neg. LLF: 95.39786585624863
Iteration: 8, Func. Count: 107, Neg. LLF: 95.33583961820814
Iteration: 9, Func. Count: 119, Neg. LLF: 95.33031499941107
Iteration: 10, Func. Count: 131, Neg. LLF: 95.31986889683948
Iteration: 11, Func. Count: 143, Neg. LLF: 95.30234218817263
Iteration: 12, Func. Count: 155, Neg. LLF: 95.27987031312801
Iteration: 13, Func. Count: 167, Neg. LLF: 95.30610634477566
Iteration: 14, Func. Count: 180, Neg. LLF: 95.24803492238242
Iteration: 15, Func. Count: 192, Neg. LLF: 95.24797944558823
Iteration: 16, Func. Count: 204, Neg. LLF: 95.24797524997457
Iteration: 17, Func. Count: 215, Neg. LLF: 95.24797524999316
Optimization terminated successfully (Exit mode 0)
Current function value: 95.24797524997457
Iterations: 17
Function evaluations: 215
Gradient evaluations: 17
Iteration: 1, Func. Count: 14, Neg. LLF: 7326503.7540662
Iteration: 2, Func. Count: 28, Neg. LLF: 103.3657769811101
Iteration: 3, Func. Count: 42, Neg. LLF: 252.6786265753126
Iteration: 4, Func. Count: 56, Neg. LLF: 97.3918360642584
Iteration: 5, Func. Count: 70, Neg. LLF: 104.15307854587184
Iteration: 6, Func. Count: 84, Neg. LLF: 96.54689465707716
Iteration: 7, Func. Count: 98, Neg. LLF: 94.93534039302695
Iteration: 8, Func. Count: 112, Neg. LLF: 94.05238550807037
Iteration: 9, Func. Count: 125, Neg. LLF: 95.13073486896478
Iteration: 10, Func. Count: 139, Neg. LLF: 97.22860270221314
Iteration: 11, Func. Count: 153, Neg. LLF: 93.79807696933219
Iteration: 12, Func. Count: 166, Neg. LLF: 93.788950305864
Iteration: 13, Func. Count: 179, Neg. LLF: 93.78436745706517
Iteration: 14, Func. Count: 192, Neg. LLF: 93.78279172441536
Iteration: 15, Func. Count: 205, Neg. LLF: 93.78231492396927
Iteration: 16, Func. Count: 218, Neg. LLF: 93.78219720202132
Iteration: 17, Func. Count: 231, Neg. LLF: 93.78216257283326
Iteration: 18, Func. Count: 244, Neg. LLF: 93.78215520872524
Iteration: 19, Func. Count: 257, Neg. LLF: 93.78215448438499
Optimization terminated successfully (Exit mode 0)
Current function value: 93.78215448438499
Iterations: 19
Function evaluations: 257
Gradient evaluations: 19
Iteration: 1, Func. Count: 15, Neg. LLF: 7327824.253397159
Iteration: 2, Func. Count: 30, Neg. LLF: 1100772.6602686853
Iteration: 3, Func. Count: 45, Neg. LLF: 100.57042174635744
Iteration: 4, Func. Count: 60, Neg. LLF: 95.95695622788386
Iteration: 5, Func. Count: 75, Neg. LLF: 111.80065060504754
Iteration: 6, Func. Count: 91, Neg. LLF: 95.17831975028184
Iteration: 7, Func. Count: 106, Neg. LLF: 93.98952976495356
Iteration: 8, Func. Count: 120, Neg. LLF: 95.65622326809977
Iteration: 9, Func. Count: 135, Neg. LLF: 94.34455375652298
Iteration: 10, Func. Count: 150, Neg. LLF: 93.8344841824095
Iteration: 11, Func. Count: 165, Neg. LLF: 93.7944912197427
Iteration: 12, Func. Count: 179, Neg. LLF: 93.78752806571978
Iteration: 13, Func. Count: 193, Neg. LLF: 93.7852610423778
Iteration: 14, Func. Count: 207, Neg. LLF: 93.78337210338258
Iteration: 15, Func. Count: 221, Neg. LLF: 93.7823674540212
Iteration: 16, Func. Count: 235, Neg. LLF: 93.78216640330535
Iteration: 17, Func. Count: 249, Neg. LLF: 93.78215540545558
Iteration: 18, Func. Count: 263, Neg. LLF: 93.78215447338928
Optimization terminated successfully (Exit mode 0)
Current function value: 93.78215447338928
Iterations: 18
Function evaluations: 263
Gradient evaluations: 18
Iteration: 1, Func. Count: 16, Neg. LLF: 52742816.14080312
Iteration: 2, Func. Count: 32, Neg. LLF: 2463274.1559093986
Iteration: 3, Func. Count: 48, Neg. LLF: 105.85285376801033
Iteration: 4, Func. Count: 64, Neg. LLF: 98.4920533601752
Iteration: 5, Func. Count: 80, Neg. LLF: 98.35187387168652
Iteration: 6, Func. Count: 96, Neg. LLF: 94.63841975278855
Iteration: 7, Func. Count: 112, Neg. LLF: 94.39297017887655
Iteration: 8, Func. Count: 128, Neg. LLF: 94.10445557075612
Iteration: 9, Func. Count: 144, Neg. LLF: 94.06893645826877
Iteration: 10, Func. Count: 160, Neg. LLF: 94.67531464248205
Iteration: 11, Func. Count: 176, Neg. LLF: 94.58502125887536
Iteration: 12, Func. Count: 192, Neg. LLF: 94.0323566169369
Iteration: 13, Func. Count: 208, Neg. LLF: 93.84692472679119
Iteration: 14, Func. Count: 224, Neg. LLF: 93.64562684858639
Iteration: 15, Func. Count: 240, Neg. LLF: 93.29940532579522
Iteration: 16, Func. Count: 256, Neg. LLF: 93.09846188807674
Iteration: 17, Func. Count: 271, Neg. LLF: 92.96689913081018
Iteration: 18, Func. Count: 286, Neg. LLF: 92.73124272436272
Iteration: 19, Func. Count: 301, Neg. LLF: 92.67969565400946
Iteration: 20, Func. Count: 316, Neg. LLF: 92.66386069798466
Iteration: 21, Func. Count: 331, Neg. LLF: 92.66332390540406
Iteration: 22, Func. Count: 346, Neg. LLF: 92.6632509840403
Iteration: 23, Func. Count: 361, Neg. LLF: 92.663241275976
Iteration: 24, Func. Count: 376, Neg. LLF: 92.66324056686119
Optimization terminated successfully (Exit mode 0)
Current function value: 92.66324056686119
Iterations: 24
Function evaluations: 376
Gradient evaluations: 24
Iteration: 1, Func. Count: 6, Neg. LLF: 226576733.631231
Iteration: 2, Func. Count: 13, Neg. LLF: 312.2955822106025
Iteration: 3, Func. Count: 21, Neg. LLF: 99.52881043496302
Iteration: 4, Func. Count: 27, Neg. LLF: 95.76951561074353
Iteration: 5, Func. Count: 32, Neg. LLF: 95.6376779916738
Iteration: 6, Func. Count: 37, Neg. LLF: 95.83924973939855
Iteration: 7, Func. Count: 43, Neg. LLF: 95.61606128417961
Iteration: 8, Func. Count: 48, Neg. LLF: 95.61590588913009
Iteration: 9, Func. Count: 53, Neg. LLF: 95.61586061517052
Iteration: 10, Func. Count: 58, Neg. LLF: 95.61585894936826
Iteration: 11, Func. Count: 62, Neg. LLF: 95.61585894921744
Optimization terminated successfully (Exit mode 0)
Current function value: 95.61585894936826
Iterations: 11
Function evaluations: 62
Gradient evaluations: 11
Iteration: 1, Func. Count: 5, Neg. LLF: 125.11579076405354
Iteration: 2, Func. Count: 12, Neg. LLF: 99.03869873053723
Iteration: 3, Func. Count: 17, Neg. LLF: 96.83081986585968
Iteration: 4, Func. Count: 21, Neg. LLF: 96.74003384892585
Iteration: 5, Func. Count: 25, Neg. LLF: 96.68728992790807
Iteration: 6, Func. Count: 29, Neg. LLF: 96.6856520417556
Iteration: 7, Func. Count: 33, Neg. LLF: 96.68560408211506
Iteration: 8, Func. Count: 36, Neg. LLF: 96.685604116058
Optimization terminated successfully (Exit mode 0)
Current function value: 96.68560408211506
Iterations: 8
Function evaluations: 36
Gradient evaluations: 8
Iteration: 1, Func. Count: 6, Neg. LLF: 551869803.888144
Iteration: 2, Func. Count: 13, Neg. LLF: 298.48371120144634
Iteration: 3, Func. Count: 21, Neg. LLF: 101.2563527416213
Iteration: 4, Func. Count: 27, Neg. LLF: 100.380632380219
Iteration: 5, Func. Count: 33, Neg. LLF: 98.44967097949858
Iteration: 6, Func. Count: 39, Neg. LLF: 100.82650423181047
Iteration: 7, Func. Count: 45, Neg. LLF: 96.28260104785005
Iteration: 8, Func. Count: 51, Neg. LLF: 95.1810161801114
Iteration: 9, Func. Count: 57, Neg. LLF: 93.84854037655667
Iteration: 10, Func. Count: 63, Neg. LLF: 91.77708609954364
Iteration: 11, Func. Count: 68, Neg. LLF: 91.69480302210724
Iteration: 12, Func. Count: 73, Neg. LLF: 91.660461432651
Iteration: 13, Func. Count: 78, Neg. LLF: 91.63331074421036
Iteration: 14, Func. Count: 83, Neg. LLF: 91.61460634704683
Iteration: 15, Func. Count: 88, Neg. LLF: 91.5818282124175
Iteration: 16, Func. Count: 93, Neg. LLF: 91.50710416995352
Iteration: 17, Func. Count: 98, Neg. LLF: 91.46546166510387
Iteration: 18, Func. Count: 103, Neg. LLF: 91.4495670974462
Iteration: 19, Func. Count: 108, Neg. LLF: 91.45111277875654
Iteration: 20, Func. Count: 114, Neg. LLF: 91.44724344006087
Iteration: 21, Func. Count: 119, Neg. LLF: 91.44722086163341
Iteration: 22, Func. Count: 123, Neg. LLF: 91.44722086144694
Optimization terminated successfully (Exit mode 0)
Current function value: 91.44722086163341
Iterations: 22
Function evaluations: 123
Gradient evaluations: 22
Iteration: 1, Func. Count: 7, Neg. LLF: 523012003.0447935
Iteration: 2, Func. Count: 15, Neg. LLF: 103.40303918772202
Iteration: 3, Func. Count: 22, Neg. LLF: 588.6506672145815
Iteration: 4, Func. Count: 29, Neg. LLF: 97.01454710040014
Iteration: 5, Func. Count: 36, Neg. LLF: 93.95818099093515
Iteration: 6, Func. Count: 43, Neg. LLF: 92.04805297063864
Iteration: 7, Func. Count: 50, Neg. LLF: 91.52399407200113
Iteration: 8, Func. Count: 56, Neg. LLF: 91.6405373347859
Iteration: 9, Func. Count: 63, Neg. LLF: 91.46309155487221
Iteration: 10, Func. Count: 69, Neg. LLF: 91.44789817121145
Iteration: 11, Func. Count: 75, Neg. LLF: 91.44725528076665
Iteration: 12, Func. Count: 81, Neg. LLF: 91.44722089499578
Iteration: 13, Func. Count: 86, Neg. LLF: 91.44722089772651
Optimization terminated successfully (Exit mode 0)
Current function value: 91.44722089499578
Iterations: 13
Function evaluations: 86
Gradient evaluations: 13
Iteration: 1, Func. Count: 8, Neg. LLF: 227817014.0085042
Iteration: 2, Func. Count: 17, Neg. LLF: 179561834.46408588
Iteration: 3, Func. Count: 26, Neg. LLF: 102.62840036560053
Iteration: 4, Func. Count: 34, Neg. LLF: 94.36255439803108
Iteration: 5, Func. Count: 42, Neg. LLF: 92.19241439985126
Iteration: 6, Func. Count: 49, Neg. LLF: 92.77393216188136
Iteration: 7, Func. Count: 57, Neg. LLF: 95.1094298832328
Iteration: 8, Func. Count: 65, Neg. LLF: 91.60758201532887
Iteration: 9, Func. Count: 72, Neg. LLF: 91.56512124184798
Iteration: 10, Func. Count: 79, Neg. LLF: 91.55700439914874
Iteration: 11, Func. Count: 86, Neg. LLF: 91.52802024749032
Iteration: 12, Func. Count: 93, Neg. LLF: 91.47256859913307
Iteration: 13, Func. Count: 100, Neg. LLF: 91.48852355205129
Iteration: 14, Func. Count: 108, Neg. LLF: 91.45060597210711
Iteration: 15, Func. Count: 115, Neg. LLF: 91.44748257180476
Iteration: 16, Func. Count: 122, Neg. LLF: 91.44722646993391
Iteration: 17, Func. Count: 129, Neg. LLF: 91.44722092121918
Iteration: 18, Func. Count: 135, Neg. LLF: 91.44722092784392
Optimization terminated successfully (Exit mode 0)
Current function value: 91.44722092121918
Iterations: 18
Function evaluations: 135
Gradient evaluations: 18
Iteration: 1, Func. Count: 9, Neg. LLF: 210745236.06385213
Iteration: 2, Func. Count: 19, Neg. LLF: 165678505.1699497
Iteration: 3, Func. Count: 29, Neg. LLF: 112.39726572186548
Iteration: 4, Func. Count: 38, Neg. LLF: 94.15290129487086
Iteration: 5, Func. Count: 47, Neg. LLF: 92.49090380979342
Iteration: 6, Func. Count: 55, Neg. LLF: 91.81148832188003
Iteration: 7, Func. Count: 63, Neg. LLF: 91.88008505772824
Iteration: 8, Func. Count: 72, Neg. LLF: 91.70644623144618
Iteration: 9, Func. Count: 80, Neg. LLF: 91.67018164181005
Iteration: 10, Func. Count: 88, Neg. LLF: 91.70040208420858
Iteration: 11, Func. Count: 97, Neg. LLF: 91.62496841188965
Iteration: 12, Func. Count: 105, Neg. LLF: 91.62175404584418
Iteration: 13, Func. Count: 113, Neg. LLF: 91.62003766533842
Iteration: 14, Func. Count: 121, Neg. LLF: 91.61776804668861
Iteration: 15, Func. Count: 129, Neg. LLF: 91.60617449930527
Iteration: 16, Func. Count: 137, Neg. LLF: 91.58717035769703
Iteration: 17, Func. Count: 145, Neg. LLF: 91.57469460871857
Iteration: 18, Func. Count: 153, Neg. LLF: 91.55548033850629
Iteration: 19, Func. Count: 161, Neg. LLF: 91.53421957471673
Iteration: 20, Func. Count: 169, Neg. LLF: 91.52699955366428
Iteration: 21, Func. Count: 177, Neg. LLF: 91.45208373977535
Iteration: 22, Func. Count: 185, Neg. LLF: 91.45009282395635
Iteration: 23, Func. Count: 193, Neg. LLF: 91.44953942050812
Iteration: 24, Func. Count: 201, Neg. LLF: 91.45205052265993
Iteration: 25, Func. Count: 210, Neg. LLF: 91.44788330915443
Iteration: 26, Func. Count: 218, Neg. LLF: 18130946.75532861
Iteration: 27, Func. Count: 230, Neg. LLF: 91.77056261676135
Iteration: 28, Func. Count: 239, Neg. LLF: 91.44722117236485
Optimization terminated successfully (Exit mode 0)
Current function value: 91.4472211575543
Iterations: 29
Function evaluations: 239
Gradient evaluations: 28
Iteration: 1, Func. Count: 6, Neg. LLF: 119.70851343961802
Iteration: 2, Func. Count: 14, Neg. LLF: 33927834.562867634
Iteration: 3, Func. Count: 20, Neg. LLF: 4837983.6507712025
Iteration: 4, Func. Count: 26, Neg. LLF: 94.44195111621714
Iteration: 5, Func. Count: 31, Neg. LLF: 94.43783285472703
Iteration: 6, Func. Count: 36, Neg. LLF: 94.43522311414952
Iteration: 7, Func. Count: 41, Neg. LLF: 94.4351403942522
Iteration: 8, Func. Count: 46, Neg. LLF: 94.43509605351856
Iteration: 9, Func. Count: 51, Neg. LLF: 94.43502501368442
Iteration: 10, Func. Count: 55, Neg. LLF: 94.43502501369693
Optimization terminated successfully (Exit mode 0)
Current function value: 94.43502501368442
Iterations: 10
Function evaluations: 55
Gradient evaluations: 10
Iteration: 1, Func. Count: 7, Neg. LLF: 536071114.28267455
Iteration: 2, Func. Count: 15, Neg. LLF: 222.42754829573784
Iteration: 3, Func. Count: 24, Neg. LLF: 103.79272633435109
Iteration: 4, Func. Count: 31, Neg. LLF: 100.08492529450687
Iteration: 5, Func. Count: 38, Neg. LLF: 95.33488853226314
Iteration: 6, Func. Count: 45, Neg. LLF: 91.7833249742985
Iteration: 7, Func. Count: 51, Neg. LLF: 96.74736710832804
Iteration: 8, Func. Count: 58, Neg. LLF: 94.9665675403745
Iteration: 9, Func. Count: 65, Neg. LLF: 91.75781846057333
Iteration: 10, Func. Count: 72, Neg. LLF: 92.77082227200327
Iteration: 11, Func. Count: 79, Neg. LLF: 91.6704912255643
Iteration: 12, Func. Count: 86, Neg. LLF: 91.51181370561467
Iteration: 13, Func. Count: 93, Neg. LLF: 91.39093104617116
Iteration: 14, Func. Count: 99, Neg. LLF: 91.38772866922149
Iteration: 15, Func. Count: 105, Neg. LLF: 91.38733027298716
Iteration: 16, Func. Count: 111, Neg. LLF: 91.38732093955437
Iteration: 17, Func. Count: 116, Neg. LLF: 91.38732093897794
Optimization terminated successfully (Exit mode 0)
Current function value: 91.38732093955437
Iterations: 17
Function evaluations: 116
Gradient evaluations: 17
Iteration: 1, Func. Count: 8, Neg. LLF: 545824389.2056592
Iteration: 2, Func. Count: 17, Neg. LLF: 103.03903033691158
Iteration: 3, Func. Count: 26, Neg. LLF: 101.87878295744515
Iteration: 4, Func. Count: 34, Neg. LLF: 102.46734964285992
Iteration: 5, Func. Count: 42, Neg. LLF: 91.35488865085644
Iteration: 6, Func. Count: 49, Neg. LLF: 94.18383315725367
Iteration: 7, Func. Count: 60, Neg. LLF: 110.61930809470627
Iteration: 8, Func. Count: 68, Neg. LLF: 89.76994644498424
Iteration: 9, Func. Count: 75, Neg. LLF: 89.6586306116507
Iteration: 10, Func. Count: 82, Neg. LLF: 89.65518175360853
Iteration: 11, Func. Count: 89, Neg. LLF: 89.65136157469686
Iteration: 12, Func. Count: 96, Neg. LLF: 89.6511488131635
Iteration: 13, Func. Count: 103, Neg. LLF: 89.65113860664547
Iteration: 14, Func. Count: 109, Neg. LLF: 89.65113860657696
Optimization terminated successfully (Exit mode 0)
Current function value: 89.65113860664547
Iterations: 14
Function evaluations: 109
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 216251051.2457759
Iteration: 2, Func. Count: 19, Neg. LLF: 4961364.146448055
Iteration: 3, Func. Count: 28, Neg. LLF: 122.30318610792482
Iteration: 4, Func. Count: 37, Neg. LLF: 91.72383677746606
Iteration: 5, Func. Count: 45, Neg. LLF: 90.75205018730526
Iteration: 6, Func. Count: 53, Neg. LLF: 90.00985274881474
Iteration: 7, Func. Count: 61, Neg. LLF: 98.83456999283102
Iteration: 8, Func. Count: 71, Neg. LLF: 89.8006895895859
Iteration: 9, Func. Count: 79, Neg. LLF: 89.65515525217953
Iteration: 10, Func. Count: 87, Neg. LLF: 89.65155852539363
Iteration: 11, Func. Count: 95, Neg. LLF: 89.65115217776803
Iteration: 12, Func. Count: 103, Neg. LLF: 89.65113798699461
Iteration: 13, Func. Count: 111, Neg. LLF: 89.65113721945154
Optimization terminated successfully (Exit mode 0)
Current function value: 89.65113721945154
Iterations: 13
Function evaluations: 111
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 209098968.14929077
Iteration: 2, Func. Count: 21, Neg. LLF: 1011126.3027738133
Iteration: 3, Func. Count: 32, Neg. LLF: 166.21509235178624
Iteration: 4, Func. Count: 42, Neg. LLF: 90.26164169668195
Iteration: 5, Func. Count: 51, Neg. LLF: 90.72254982743374
Iteration: 6, Func. Count: 63, Neg. LLF: 90.54726175535386
Iteration: 7, Func. Count: 73, Neg. LLF: 89.05974592192949
Iteration: 8, Func. Count: 82, Neg. LLF: 89.96595496803675
Iteration: 9, Func. Count: 93, Neg. LLF: 89.45632942291384
Iteration: 10, Func. Count: 103, Neg. LLF: 88.88121117951081
Iteration: 11, Func. Count: 112, Neg. LLF: 88.82812073924455
Iteration: 12, Func. Count: 121, Neg. LLF: 88.82025622760436
Iteration: 13, Func. Count: 130, Neg. LLF: 88.82012481203168
Iteration: 14, Func. Count: 139, Neg. LLF: 88.82009738796364
Iteration: 15, Func. Count: 148, Neg. LLF: 88.82009669175099
Optimization terminated successfully (Exit mode 0)
Current function value: 88.82009669175099
Iterations: 15
Function evaluations: 148
Gradient evaluations: 15
Iteration: 1, Func. Count: 7, Neg. LLF: 125.178425536473
Iteration: 2, Func. Count: 16, Neg. LLF: 91317939.35225071
Iteration: 3, Func. Count: 23, Neg. LLF: 6342230.758658577
Iteration: 4, Func. Count: 30, Neg. LLF: 94.44878969974982
Iteration: 5, Func. Count: 36, Neg. LLF: 94.43738606741168
Iteration: 6, Func. Count: 42, Neg. LLF: 94.43656584741345
Iteration: 7, Func. Count: 48, Neg. LLF: 94.4358491132784
Iteration: 8, Func. Count: 54, Neg. LLF: 94.43520461756334
Iteration: 9, Func. Count: 60, Neg. LLF: 94.43504001839956
Iteration: 10, Func. Count: 66, Neg. LLF: 94.43502525935165
Iteration: 11, Func. Count: 71, Neg. LLF: 94.43502532014661
Optimization terminated successfully (Exit mode 0)
Current function value: 94.43502525935165
Iterations: 11
Function evaluations: 71
Gradient evaluations: 11
Iteration: 1, Func. Count: 8, Neg. LLF: 501588491.86553264
Iteration: 2, Func. Count: 17, Neg. LLF: 184.92692471164509
Iteration: 3, Func. Count: 27, Neg. LLF: 92.02824083852937
Iteration: 4, Func. Count: 34, Neg. LLF: 95.06279142673584
Iteration: 5, Func. Count: 42, Neg. LLF: 97.1277694971268
Iteration: 6, Func. Count: 53, Neg. LLF: 91.49271603521676
Iteration: 7, Func. Count: 60, Neg. LLF: 91.57422924833735
Iteration: 8, Func. Count: 68, Neg. LLF: 91.50693151382674
Iteration: 9, Func. Count: 76, Neg. LLF: 91.38878929234649
Iteration: 10, Func. Count: 83, Neg. LLF: 91.38756325569187
Iteration: 11, Func. Count: 90, Neg. LLF: 91.38735487151834
Iteration: 12, Func. Count: 97, Neg. LLF: 91.38732075252896
Iteration: 13, Func. Count: 103, Neg. LLF: 91.38732075252629
Optimization terminated successfully (Exit mode 0)
Current function value: 91.38732075252896
Iterations: 13
Function evaluations: 103
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 498521347.05656475
Iteration: 2, Func. Count: 19, Neg. LLF: 2860091.5655748704
Iteration: 3, Func. Count: 29, Neg. LLF: 94.67989159689068
Iteration: 4, Func. Count: 38, Neg. LLF: 107.55747862011007
Iteration: 5, Func. Count: 47, Neg. LLF: 89.95621427881245
Iteration: 6, Func. Count: 55, Neg. LLF: 91.2205458524462
Iteration: 7, Func. Count: 67, Neg. LLF: 89.71670739141763
Iteration: 8, Func. Count: 75, Neg. LLF: 89.65980005777605
Iteration: 9, Func. Count: 83, Neg. LLF: 89.65406889091203
Iteration: 10, Func. Count: 91, Neg. LLF: 89.6515583480064
Iteration: 11, Func. Count: 99, Neg. LLF: 89.651223767606
Iteration: 12, Func. Count: 107, Neg. LLF: 89.65114466108297
Iteration: 13, Func. Count: 115, Neg. LLF: 89.6511373453356
Iteration: 14, Func. Count: 122, Neg. LLF: 89.65113734539325
Optimization terminated successfully (Exit mode 0)
Current function value: 89.6511373453356
Iterations: 14
Function evaluations: 122
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 193592218.26095334
Iteration: 2, Func. Count: 21, Neg. LLF: 7150983.487987799
Iteration: 3, Func. Count: 31, Neg. LLF: 96.28930219805092
Iteration: 4, Func. Count: 41, Neg. LLF: 98.44251328834935
Iteration: 5, Func. Count: 51, Neg. LLF: 90.78385624078894
Iteration: 6, Func. Count: 60, Neg. LLF: 92.78519448033349
Iteration: 7, Func. Count: 70, Neg. LLF: 90.57455949770325
Iteration: 8, Func. Count: 79, Neg. LLF: 89.81704815311328
Iteration: 9, Func. Count: 88, Neg. LLF: 191.5977200181764
Iteration: 10, Func. Count: 99, Neg. LLF: 93.37486093067407
Iteration: 11, Func. Count: 110, Neg. LLF: 89.67823820737318
Iteration: 12, Func. Count: 119, Neg. LLF: 89.65403642684542
Iteration: 13, Func. Count: 128, Neg. LLF: 89.65152379656942
Iteration: 14, Func. Count: 137, Neg. LLF: 89.6511443884454
Iteration: 15, Func. Count: 146, Neg. LLF: 89.65113733492888
Iteration: 16, Func. Count: 154, Neg. LLF: 89.6511373648232
Optimization terminated successfully (Exit mode 0)
Current function value: 89.65113733492888
Iterations: 16
Function evaluations: 154
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 185769299.1701226
Iteration: 2, Func. Count: 23, Neg. LLF: 4397577.920396852
Iteration: 3, Func. Count: 34, Neg. LLF: 100.81447448013458
Iteration: 4, Func. Count: 45, Neg. LLF: 89.90520662553729
Iteration: 5, Func. Count: 55, Neg. LLF: 91.47407883630575
Iteration: 6, Func. Count: 69, Neg. LLF: 92.69960156007386
Iteration: 7, Func. Count: 80, Neg. LLF: 89.9201133776799
Iteration: 8, Func. Count: 91, Neg. LLF: 89.32254188737019
Iteration: 9, Func. Count: 101, Neg. LLF: 89.25922411456642
Iteration: 10, Func. Count: 111, Neg. LLF: 89.13015474478163
Iteration: 11, Func. Count: 122, Neg. LLF: 89.25952494274603
Iteration: 12, Func. Count: 133, Neg. LLF: 88.86175875129852
Iteration: 13, Func. Count: 143, Neg. LLF: 88.83234537603515
Iteration: 14, Func. Count: 153, Neg. LLF: 88.82237703323956
Iteration: 15, Func. Count: 163, Neg. LLF: 88.82081141520068
Iteration: 16, Func. Count: 173, Neg. LLF: 88.82013655931496
Iteration: 17, Func. Count: 183, Neg. LLF: 88.8201022807386
Iteration: 18, Func. Count: 193, Neg. LLF: 88.82009666326012
Iteration: 19, Func. Count: 202, Neg. LLF: 88.82009664145399
Optimization terminated successfully (Exit mode 0)
Current function value: 88.82009666326012
Iterations: 19
Function evaluations: 202
Gradient evaluations: 19
Iteration: 1, Func. Count: 8, Neg. LLF: 119.14300219953289
Iteration: 2, Func. Count: 18, Neg. LLF: 35741638.86423953
Iteration: 3, Func. Count: 26, Neg. LLF: 4161802.207614739
Iteration: 4, Func. Count: 34, Neg. LLF: 181.0334408771532
Iteration: 5, Func. Count: 42, Neg. LLF: 111.40267254693545
Iteration: 6, Func. Count: 50, Neg. LLF: 94.38507707721168
Iteration: 7, Func. Count: 58, Neg. LLF: 93.55652047775803
Iteration: 8, Func. Count: 65, Neg. LLF: 93.5870056122088
Iteration: 9, Func. Count: 73, Neg. LLF: 93.50602850795896
Iteration: 10, Func. Count: 80, Neg. LLF: 93.47000873613322
Iteration: 11, Func. Count: 87, Neg. LLF: 93.46684410425821
Iteration: 12, Func. Count: 94, Neg. LLF: 93.46661958453123
Iteration: 13, Func. Count: 101, Neg. LLF: 93.46661180585366
Iteration: 14, Func. Count: 108, Neg. LLF: 93.46661091215242
Optimization terminated successfully (Exit mode 0)
Current function value: 93.46661091215242
Iterations: 14
Function evaluations: 108
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 517160300.00507134
Iteration: 2, Func. Count: 19, Neg. LLF: 159.40107955352573
Iteration: 3, Func. Count: 29, Neg. LLF: 92.8230004793943
Iteration: 4, Func. Count: 38, Neg. LLF: 100.9157330821369
Iteration: 5, Func. Count: 47, Neg. LLF: 91.88754084803051
Iteration: 6, Func. Count: 55, Neg. LLF: 91.4693978699502
Iteration: 7, Func. Count: 63, Neg. LLF: 91.48600192546365
Iteration: 8, Func. Count: 72, Neg. LLF: 92.14154112049359
Iteration: 9, Func. Count: 81, Neg. LLF: 91.43937182924503
Iteration: 10, Func. Count: 90, Neg. LLF: 91.40102685407766
Iteration: 11, Func. Count: 99, Neg. LLF: 91.38656511978586
Iteration: 12, Func. Count: 107, Neg. LLF: 91.38648340845478
Iteration: 13, Func. Count: 115, Neg. LLF: 91.38648087305033
Iteration: 14, Func. Count: 122, Neg. LLF: 91.38648087337552
Optimization terminated successfully (Exit mode 0)
Current function value: 91.38648087305033
Iterations: 14
Function evaluations: 122
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 521542834.7347684
Iteration: 2, Func. Count: 21, Neg. LLF: 2835199.641011288
Iteration: 3, Func. Count: 32, Neg. LLF: 94.38451657919326
Iteration: 4, Func. Count: 42, Neg. LLF: 106.16080481399592
Iteration: 5, Func. Count: 52, Neg. LLF: 89.95238150246611
Iteration: 6, Func. Count: 61, Neg. LLF: 91.1491944065664
Iteration: 7, Func. Count: 74, Neg. LLF: 89.7314708841786
Iteration: 8, Func. Count: 83, Neg. LLF: 89.67792604082507
Iteration: 9, Func. Count: 92, Neg. LLF: 89.6578174164898
Iteration: 10, Func. Count: 101, Neg. LLF: 89.65189804064578
Iteration: 11, Func. Count: 110, Neg. LLF: 89.6513313193001
Iteration: 12, Func. Count: 119, Neg. LLF: 89.65118148163108
Iteration: 13, Func. Count: 128, Neg. LLF: 89.65113726224446
Iteration: 14, Func. Count: 136, Neg. LLF: 89.65113726241024
Optimization terminated successfully (Exit mode 0)
Current function value: 89.65113726224446
Iterations: 14
Function evaluations: 136
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 207863382.344851
Iteration: 2, Func. Count: 23, Neg. LLF: 7268618.923811014
Iteration: 3, Func. Count: 34, Neg. LLF: 94.55057645512461
Iteration: 4, Func. Count: 45, Neg. LLF: 107.14232093996321
Iteration: 5, Func. Count: 56, Neg. LLF: 94.25835058682271
Iteration: 6, Func. Count: 67, Neg. LLF: 93.5078046640441
Iteration: 7, Func. Count: 78, Neg. LLF: 90.74500842472762
Iteration: 8, Func. Count: 88, Neg. LLF: 90.31992655333624
Iteration: 9, Func. Count: 98, Neg. LLF: 89.71979879185353
Iteration: 10, Func. Count: 108, Neg. LLF: 91.0974085862807
Iteration: 11, Func. Count: 120, Neg. LLF: 89.77289107982881
Iteration: 12, Func. Count: 131, Neg. LLF: 89.65829725407256
Iteration: 13, Func. Count: 141, Neg. LLF: 89.65342000665358
Iteration: 14, Func. Count: 151, Neg. LLF: 89.6521846881038
Iteration: 15, Func. Count: 161, Neg. LLF: 89.65118014540512
Iteration: 16, Func. Count: 171, Neg. LLF: 89.65114063718038
Iteration: 17, Func. Count: 181, Neg. LLF: 89.65113726912712
Iteration: 18, Func. Count: 190, Neg. LLF: 89.65113729896828
Optimization terminated successfully (Exit mode 0)
Current function value: 89.65113726912712
Iterations: 18
Function evaluations: 190
Gradient evaluations: 18
Iteration: 1, Func. Count: 12, Neg. LLF: 202665718.5006279
Iteration: 2, Func. Count: 25, Neg. LLF: 4240419.795283522
Iteration: 3, Func. Count: 37, Neg. LLF: 103.9969848224644
Iteration: 4, Func. Count: 49, Neg. LLF: 352.2784168485577
Iteration: 5, Func. Count: 61, Neg. LLF: 89.81316142046988
Iteration: 6, Func. Count: 72, Neg. LLF: 89.09487553111266
Iteration: 7, Func. Count: 83, Neg. LLF: 91.68630694284215
Iteration: 8, Func. Count: 95, Neg. LLF: 88.42224168963786
Iteration: 9, Func. Count: 106, Neg. LLF: 88.32449553492891
Iteration: 10, Func. Count: 117, Neg. LLF: 88.28792235404345
Iteration: 11, Func. Count: 128, Neg. LLF: 88.28725578650112
Iteration: 12, Func. Count: 139, Neg. LLF: 88.2872513186408
Iteration: 13, Func. Count: 149, Neg. LLF: 88.28725127155256
Optimization terminated successfully (Exit mode 0)
Current function value: 88.2872513186408
Iterations: 13
Function evaluations: 149
Gradient evaluations: 13
Iteration: 1, Func. Count: 5, Neg. LLF: 129.8571772796184
Iteration: 2, Func. Count: 12, Neg. LLF: 131.30580582907922
Iteration: 3, Func. Count: 17, Neg. LLF: 96.68980487914247
Iteration: 4, Func. Count: 21, Neg. LLF: 96.69318163723041
Iteration: 5, Func. Count: 26, Neg. LLF: 96.68600976776312
Iteration: 6, Func. Count: 31, Neg. LLF: 96.68524390542719
Iteration: 7, Func. Count: 35, Neg. LLF: 96.68523875669833
Iteration: 8, Func. Count: 38, Neg. LLF: 96.6852387566928
Optimization terminated successfully (Exit mode 0)
Current function value: 96.68523875669833
Iterations: 8
Function evaluations: 38
Gradient evaluations: 8
Iteration: 1, Func. Count: 6, Neg. LLF: 87789607.03137133
Iteration: 2, Func. Count: 13, Neg. LLF: 627.0747529610176
Iteration: 3, Func. Count: 21, Neg. LLF: 112.73904426003813
Iteration: 4, Func. Count: 27, Neg. LLF: 95.10531250714476
Iteration: 5, Func. Count: 33, Neg. LLF: 92.41360657902392
Iteration: 6, Func. Count: 39, Neg. LLF: 91.52367712017085
Iteration: 7, Func. Count: 44, Neg. LLF: 92.18312934343686
Iteration: 8, Func. Count: 50, Neg. LLF: 91.44722310855326
Iteration: 9, Func. Count: 55, Neg. LLF: 91.44722085951179
Iteration: 10, Func. Count: 59, Neg. LLF: 91.4472208596313
Optimization terminated successfully (Exit mode 0)
Current function value: 91.44722085951179
Iterations: 10
Function evaluations: 59
Gradient evaluations: 10
Iteration: 1, Func. Count: 7, Neg. LLF: 149555970.14047897
Iteration: 2, Func. Count: 15, Neg. LLF: 294.481013900617
Iteration: 3, Func. Count: 24, Neg. LLF: 120.4043622191812
Iteration: 4, Func. Count: 31, Neg. LLF: 106.25288315818536
Iteration: 5, Func. Count: 38, Neg. LLF: 96.92285592348145
Iteration: 6, Func. Count: 45, Neg. LLF: 100.41148144396645
Iteration: 7, Func. Count: 52, Neg. LLF: 94.74132597664327
Iteration: 8, Func. Count: 59, Neg. LLF: 93.97121383551169
Iteration: 9, Func. Count: 66, Neg. LLF: 92.16050640583728
Iteration: 10, Func. Count: 73, Neg. LLF: 91.48272152493273
Iteration: 11, Func. Count: 79, Neg. LLF: 92.12894998931694
Iteration: 12, Func. Count: 86, Neg. LLF: 91.44722267876203
Iteration: 13, Func. Count: 92, Neg. LLF: 91.44722086195863
Iteration: 14, Func. Count: 97, Neg. LLF: 91.4472208640922
Optimization terminated successfully (Exit mode 0)
Current function value: 91.44722086195863
Iterations: 14
Function evaluations: 97
Gradient evaluations: 14
Iteration: 1, Func. Count: 8, Neg. LLF: 112035955.52090685
Iteration: 2, Func. Count: 17, Neg. LLF: 129.2771166135068
Iteration: 3, Func. Count: 26, Neg. LLF: 120.33261850261093
Iteration: 4, Func. Count: 34, Neg. LLF: 103.29604288638741
Iteration: 5, Func. Count: 42, Neg. LLF: 98.58968907892987
Iteration: 6, Func. Count: 50, Neg. LLF: 97.9521993503828
Iteration: 7, Func. Count: 58, Neg. LLF: 94.92081131013069
Iteration: 8, Func. Count: 66, Neg. LLF: 92.87677786810656
Iteration: 9, Func. Count: 74, Neg. LLF: 91.58858391610906
Iteration: 10, Func. Count: 81, Neg. LLF: 94.23302006485689
Iteration: 11, Func. Count: 89, Neg. LLF: 91.44724977040002
Iteration: 12, Func. Count: 96, Neg. LLF: 91.44722086453866
Iteration: 13, Func. Count: 102, Neg. LLF: 91.44722087146152
Optimization terminated successfully (Exit mode 0)
Current function value: 91.44722086453866
Iterations: 13
Function evaluations: 102
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 65830134.08785825
Iteration: 2, Func. Count: 18, Neg. LLF: 96099.88991982497
Iteration: 3, Func. Count: 28, Neg. LLF: 104.86327833391772
Iteration: 4, Func. Count: 37, Neg. LLF: 91.67566732515361
Iteration: 5, Func. Count: 45, Neg. LLF: 97.40873626087748
Iteration: 6, Func. Count: 54, Neg. LLF: 92.49115706821466
Iteration: 7, Func. Count: 63, Neg. LLF: 91.50014898450642
Iteration: 8, Func. Count: 71, Neg. LLF: 91.48070502977805
Iteration: 9, Func. Count: 79, Neg. LLF: 91.47212264220116
Iteration: 10, Func. Count: 87, Neg. LLF: 91.46343753263392
Iteration: 11, Func. Count: 95, Neg. LLF: 91.45121704497305
Iteration: 12, Func. Count: 103, Neg. LLF: 91.44890154345089
Iteration: 13, Func. Count: 111, Neg. LLF: 91.44726408457711
Iteration: 14, Func. Count: 119, Neg. LLF: 91.44722106899314
Iteration: 15, Func. Count: 126, Neg. LLF: 91.44722108203388
Optimization terminated successfully (Exit mode 0)
Current function value: 91.44722106899314
Iterations: 15
Function evaluations: 126
Gradient evaluations: 15
Iteration: 1, Func. Count: 6, Neg. LLF: 118.53293484500492
Iteration: 2, Func. Count: 13, Neg. LLF: 143.85071665963653
Iteration: 3, Func. Count: 19, Neg. LLF: 97.07438417258868
Iteration: 4, Func. Count: 24, Neg. LLF: 20081999.494077947
Iteration: 5, Func. Count: 30, Neg. LLF: 96.68515352862651
Iteration: 6, Func. Count: 35, Neg. LLF: 96.63254941122159
Iteration: 7, Func. Count: 40, Neg. LLF: 96.62964811959591
Iteration: 8, Func. Count: 45, Neg. LLF: 96.62959777015438
Iteration: 9, Func. Count: 50, Neg. LLF: 96.62959269188575
Iteration: 10, Func. Count: 54, Neg. LLF: 96.62959265864512
Optimization terminated successfully (Exit mode 0)
Current function value: 96.62959269188575
Iterations: 10
Function evaluations: 54
Gradient evaluations: 10
Iteration: 1, Func. Count: 7, Neg. LLF: 194515488.58921582
Iteration: 2, Func. Count: 15, Neg. LLF: 411.77329215121335
Iteration: 3, Func. Count: 24, Neg. LLF: 109.30056792244933
Iteration: 4, Func. Count: 31, Neg. LLF: 99.60250851851659
Iteration: 5, Func. Count: 38, Neg. LLF: 95.77588559950135
Iteration: 6, Func. Count: 45, Neg. LLF: 93.82126366832414
Iteration: 7, Func. Count: 52, Neg. LLF: 92.57143433691506
Iteration: 8, Func. Count: 59, Neg. LLF: 91.68200317606825
Iteration: 9, Func. Count: 65, Neg. LLF: 92.69459542921688
Iteration: 10, Func. Count: 72, Neg. LLF: 93.37994472742977
Iteration: 11, Func. Count: 79, Neg. LLF: 91.4502514029248
Iteration: 12, Func. Count: 85, Neg. LLF: 91.44771899072784
Iteration: 13, Func. Count: 91, Neg. LLF: 91.44725285431423
Iteration: 14, Func. Count: 97, Neg. LLF: 91.44722478960108
Iteration: 15, Func. Count: 103, Neg. LLF: 91.44722086346809
Iteration: 16, Func. Count: 108, Neg. LLF: 91.447220863635
Optimization terminated successfully (Exit mode 0)
Current function value: 91.44722086346809
Iterations: 16
Function evaluations: 108
Gradient evaluations: 16
Iteration: 1, Func. Count: 8, Neg. LLF: 161330382.7030351
Iteration: 2, Func. Count: 17, Neg. LLF: 289.59685154461926
Iteration: 3, Func. Count: 27, Neg. LLF: 120.75417929062307
Iteration: 4, Func. Count: 35, Neg. LLF: 107.6276511101399
Iteration: 5, Func. Count: 43, Neg. LLF: 96.7270995218822
Iteration: 6, Func. Count: 51, Neg. LLF: 100.92050686494038
Iteration: 7, Func. Count: 59, Neg. LLF: 95.27129335916612
Iteration: 8, Func. Count: 67, Neg. LLF: 94.15203660342155
Iteration: 9, Func. Count: 75, Neg. LLF: 92.40234198349577
Iteration: 10, Func. Count: 83, Neg. LLF: 91.6305725353253
Iteration: 11, Func. Count: 90, Neg. LLF: 92.90043757649399
Iteration: 12, Func. Count: 98, Neg. LLF: 91.4472449316904
Iteration: 13, Func. Count: 105, Neg. LLF: 91.44722097789747
Iteration: 14, Func. Count: 111, Neg. LLF: 91.44722097970613
Optimization terminated successfully (Exit mode 0)
Current function value: 91.44722097789747
Iterations: 14
Function evaluations: 111
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 125086305.54464759
Iteration: 2, Func. Count: 19, Neg. LLF: 128.0439468742285
Iteration: 3, Func. Count: 29, Neg. LLF: 120.85384992532197
Iteration: 4, Func. Count: 38, Neg. LLF: 104.4201004586001
Iteration: 5, Func. Count: 47, Neg. LLF: 100.73744962479319
Iteration: 6, Func. Count: 56, Neg. LLF: 99.6512426724331
Iteration: 7, Func. Count: 65, Neg. LLF: 95.37815154834136
Iteration: 8, Func. Count: 74, Neg. LLF: 93.31215505255118
Iteration: 9, Func. Count: 83, Neg. LLF: 91.88838706563305
Iteration: 10, Func. Count: 91, Neg. LLF: 95.37834924657096
Iteration: 11, Func. Count: 100, Neg. LLF: 104.75044958132547
Iteration: 12, Func. Count: 109, Neg. LLF: 91.58443044781885
Iteration: 13, Func. Count: 117, Neg. LLF: 91.5125541905441
Iteration: 14, Func. Count: 125, Neg. LLF: 91.46490860474313
Iteration: 15, Func. Count: 133, Neg. LLF: 91.45186489720919
Iteration: 16, Func. Count: 141, Neg. LLF: 91.4473002535285
Iteration: 17, Func. Count: 149, Neg. LLF: 91.44722432903966
Iteration: 18, Func. Count: 157, Neg. LLF: 91.44722087921105
Iteration: 19, Func. Count: 164, Neg. LLF: 91.44722088607885
Optimization terminated successfully (Exit mode 0)
Current function value: 91.44722087921105
Iterations: 19
Function evaluations: 164
Gradient evaluations: 19
Iteration: 1, Func. Count: 10, Neg. LLF: 114618962.33496635
Iteration: 2, Func. Count: 21, Neg. LLF: 105.06396870948902
Iteration: 3, Func. Count: 31, Neg. LLF: 339.5778280304763
Iteration: 4, Func. Count: 41, Neg. LLF: 107.09389478040882
Iteration: 5, Func. Count: 51, Neg. LLF: 107.23316999170558
Iteration: 6, Func. Count: 61, Neg. LLF: 98.45638699106021
Iteration: 7, Func. Count: 71, Neg. LLF: 94.36377087576123
Iteration: 8, Func. Count: 81, Neg. LLF: 95.57840544780618
Iteration: 9, Func. Count: 91, Neg. LLF: 91.64241397739174
Iteration: 10, Func. Count: 100, Neg. LLF: 92.92860502586528
Iteration: 11, Func. Count: 111, Neg. LLF: 91.45013858424707
Iteration: 12, Func. Count: 120, Neg. LLF: 91.44762972250898
Iteration: 13, Func. Count: 129, Neg. LLF: 91.44724763503497
Iteration: 14, Func. Count: 138, Neg. LLF: 91.44722085723687
Iteration: 15, Func. Count: 146, Neg. LLF: 91.44722087172131
Optimization terminated successfully (Exit mode 0)
Current function value: 91.44722085723687
Iterations: 15
Function evaluations: 146
Gradient evaluations: 15
Iteration: 1, Func. Count: 7, Neg. LLF: 121.6324109436665
Iteration: 2, Func. Count: 16, Neg. LLF: 104483408.24895477
Iteration: 3, Func. Count: 23, Neg. LLF: 6434208.1989958305
Iteration: 4, Func. Count: 30, Neg. LLF: 94.51726463576038
Iteration: 5, Func. Count: 36, Neg. LLF: 114.65944966078621
Iteration: 6, Func. Count: 44, Neg. LLF: 94.37067466622072
Iteration: 7, Func. Count: 50, Neg. LLF: 94.35838923602589
Iteration: 8, Func. Count: 56, Neg. LLF: 94.35243955438628
Iteration: 9, Func. Count: 62, Neg. LLF: 94.34806667033352
Iteration: 10, Func. Count: 68, Neg. LLF: 94.34729705907041
Iteration: 11, Func. Count: 74, Neg. LLF: 94.34721154681313
Iteration: 12, Func. Count: 80, Neg. LLF: 94.34720545822951
Iteration: 13, Func. Count: 85, Neg. LLF: 94.3472054582475
Optimization terminated successfully (Exit mode 0)
Current function value: 94.34720545822951
Iterations: 13
Function evaluations: 85
Gradient evaluations: 13
Iteration: 1, Func. Count: 8, Neg. LLF: 187481634.4167354
Iteration: 2, Func. Count: 17, Neg. LLF: 383.64931380303784
Iteration: 3, Func. Count: 27, Neg. LLF: 109.8098067971165
Iteration: 4, Func. Count: 35, Neg. LLF: 99.5245510433275
Iteration: 5, Func. Count: 43, Neg. LLF: 95.63080211390972
Iteration: 6, Func. Count: 51, Neg. LLF: 92.75537623774984
Iteration: 7, Func. Count: 59, Neg. LLF: 92.0234075739675
Iteration: 8, Func. Count: 67, Neg. LLF: 91.46739146963712
Iteration: 9, Func. Count: 74, Neg. LLF: 91.55799505439414
Iteration: 10, Func. Count: 82, Neg. LLF: 91.38750383079474
Iteration: 11, Func. Count: 89, Neg. LLF: 91.3873261086319
Iteration: 12, Func. Count: 96, Neg. LLF: 91.38732072042006
Iteration: 13, Func. Count: 102, Neg. LLF: 91.38732072060681
Optimization terminated successfully (Exit mode 0)
Current function value: 91.38732072042006
Iterations: 13
Function evaluations: 102
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 395216987.9485267
Iteration: 2, Func. Count: 19, Neg. LLF: 114.48854123931123
Iteration: 3, Func. Count: 29, Neg. LLF: 96.75219400809496
Iteration: 4, Func. Count: 38, Neg. LLF: 90.97347346887955
Iteration: 5, Func. Count: 46, Neg. LLF: 91.31363802467953
Iteration: 6, Func. Count: 58, Neg. LLF: 90.0391468384524
Iteration: 7, Func. Count: 66, Neg. LLF: 89.89686773261792
Iteration: 8, Func. Count: 74, Neg. LLF: 89.81176344371869
Iteration: 9, Func. Count: 82, Neg. LLF: 90.2596285757815
Iteration: 10, Func. Count: 91, Neg. LLF: 89.76073769622046
Iteration: 11, Func. Count: 100, Neg. LLF: 89.67272194891044
Iteration: 12, Func. Count: 108, Neg. LLF: 89.65543333005694
Iteration: 13, Func. Count: 116, Neg. LLF: 89.65205313324641
Iteration: 14, Func. Count: 124, Neg. LLF: 89.6512249380608
Iteration: 15, Func. Count: 132, Neg. LLF: 89.6511393449592
Iteration: 16, Func. Count: 140, Neg. LLF: 89.65113729195622
Iteration: 17, Func. Count: 147, Neg. LLF: 89.65113729199669
Optimization terminated successfully (Exit mode 0)
Current function value: 89.65113729195622
Iterations: 17
Function evaluations: 147
Gradient evaluations: 17
Iteration: 1, Func. Count: 10, Neg. LLF: 325945829.06035024
Iteration: 2, Func. Count: 21, Neg. LLF: 325.61869821370465
Iteration: 3, Func. Count: 31, Neg. LLF: 105.35062618157437
Iteration: 4, Func. Count: 41, Neg. LLF: 100.06639933521257
Iteration: 5, Func. Count: 51, Neg. LLF: 90.99001144707796
Iteration: 6, Func. Count: 60, Neg. LLF: 90.61834501867611
Iteration: 7, Func. Count: 69, Neg. LLF: 90.18765576525782
Iteration: 8, Func. Count: 78, Neg. LLF: 89.77512271036312
Iteration: 9, Func. Count: 87, Neg. LLF: 94.07809105893153
Iteration: 10, Func. Count: 99, Neg. LLF: 89.8070721189803
Iteration: 11, Func. Count: 109, Neg. LLF: 89.65170338623923
Iteration: 12, Func. Count: 118, Neg. LLF: 89.6512113251292
Iteration: 13, Func. Count: 127, Neg. LLF: 89.65113798268261
Iteration: 14, Func. Count: 136, Neg. LLF: 89.65113723160825
Optimization terminated successfully (Exit mode 0)
Current function value: 89.65113723160825
Iterations: 14
Function evaluations: 136
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 280125456.91810024
Iteration: 2, Func. Count: 23, Neg. LLF: 2182841.559320013
Iteration: 3, Func. Count: 35, Neg. LLF: 113.66358341027161
Iteration: 4, Func. Count: 46, Neg. LLF: 93.26227661900374
Iteration: 5, Func. Count: 57, Neg. LLF: 90.40537149536188
Iteration: 6, Func. Count: 67, Neg. LLF: 90.02712845907199
Iteration: 7, Func. Count: 77, Neg. LLF: 89.25283924623919
Iteration: 8, Func. Count: 87, Neg. LLF: 89.34715696239998
Iteration: 9, Func. Count: 98, Neg. LLF: 88.96258014812283
Iteration: 10, Func. Count: 109, Neg. LLF: 89.31546349633938
Iteration: 11, Func. Count: 120, Neg. LLF: 88.83110033591431
Iteration: 12, Func. Count: 130, Neg. LLF: 88.82194366421609
Iteration: 13, Func. Count: 140, Neg. LLF: 88.82020289346815
Iteration: 14, Func. Count: 150, Neg. LLF: 88.8201074628207
Iteration: 15, Func. Count: 160, Neg. LLF: 88.82010106367126
Iteration: 16, Func. Count: 170, Neg. LLF: 88.82009215825045
Iteration: 17, Func. Count: 180, Neg. LLF: 88.8200959857061
Iteration: 18, Func. Count: 190, Neg. LLF: 88.82009670472296
Optimization terminated successfully (Exit mode 0)
Current function value: 88.82009609568956
Iterations: 19
Function evaluations: 191
Gradient evaluations: 18
Iteration: 1, Func. Count: 8, Neg. LLF: 125.64837842212808
Iteration: 2, Func. Count: 18, Neg. LLF: 136149564.8824276
Iteration: 3, Func. Count: 26, Neg. LLF: 6386169.487096173
Iteration: 4, Func. Count: 34, Neg. LLF: 94.61603507121893
Iteration: 5, Func. Count: 41, Neg. LLF: 111.17321967552259
Iteration: 6, Func. Count: 50, Neg. LLF: 94.38817841764151
Iteration: 7, Func. Count: 57, Neg. LLF: 94.36438579827403
Iteration: 8, Func. Count: 64, Neg. LLF: 94.3584746456097
Iteration: 9, Func. Count: 71, Neg. LLF: 94.34849125088984
Iteration: 10, Func. Count: 78, Neg. LLF: 94.34733834288612
Iteration: 11, Func. Count: 85, Neg. LLF: 94.34721427902006
Iteration: 12, Func. Count: 92, Neg. LLF: 94.34720573767001
Iteration: 13, Func. Count: 99, Neg. LLF: 94.34720501435464
Optimization terminated successfully (Exit mode 0)
Current function value: 94.34720501435464
Iterations: 13
Function evaluations: 99
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 181620388.51973355
Iteration: 2, Func. Count: 19, Neg. LLF: 373.12537208100144
Iteration: 3, Func. Count: 30, Neg. LLF: 109.71426849858537
Iteration: 4, Func. Count: 39, Neg. LLF: 99.68537879782589
Iteration: 5, Func. Count: 48, Neg. LLF: 95.81680505719507
Iteration: 6, Func. Count: 57, Neg. LLF: 93.0397930493147
Iteration: 7, Func. Count: 66, Neg. LLF: 92.21241442261478
Iteration: 8, Func. Count: 75, Neg. LLF: 91.54855149570194
Iteration: 9, Func. Count: 83, Neg. LLF: 91.67998349144507
Iteration: 10, Func. Count: 92, Neg. LLF: 91.3882471539926
Iteration: 11, Func. Count: 100, Neg. LLF: 91.38751378358901
Iteration: 12, Func. Count: 108, Neg. LLF: 91.38732370374453
Iteration: 13, Func. Count: 116, Neg. LLF: 91.38732074462902
Iteration: 14, Func. Count: 123, Neg. LLF: 91.38732074424885
Optimization terminated successfully (Exit mode 0)
Current function value: 91.38732074462902
Iterations: 14
Function evaluations: 123
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 351358033.42633116
Iteration: 2, Func. Count: 21, Neg. LLF: 92.82513606768322
Iteration: 3, Func. Count: 31, Neg. LLF: 330.8395056824817
Iteration: 4, Func. Count: 42, Neg. LLF: 90.31122287377275
Iteration: 5, Func. Count: 51, Neg. LLF: 153.16011032518392
Iteration: 6, Func. Count: 62, Neg. LLF: 91.70287541970097
Iteration: 7, Func. Count: 72, Neg. LLF: 89.98598959329395
Iteration: 8, Func. Count: 82, Neg. LLF: 89.656685367008
Iteration: 9, Func. Count: 91, Neg. LLF: 89.65207424662854
Iteration: 10, Func. Count: 100, Neg. LLF: 89.65133467796936
Iteration: 11, Func. Count: 109, Neg. LLF: 89.65122827845411
Iteration: 12, Func. Count: 118, Neg. LLF: 89.65115318582338
Iteration: 13, Func. Count: 127, Neg. LLF: 89.65113856713282
Iteration: 14, Func. Count: 136, Neg. LLF: 89.65113724001594
Iteration: 15, Func. Count: 144, Neg. LLF: 89.65113724000847
Optimization terminated successfully (Exit mode 0)
Current function value: 89.65113724001594
Iterations: 15
Function evaluations: 144
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 289106944.7334918
Iteration: 2, Func. Count: 23, Neg. LLF: 338617.5924778413
Iteration: 3, Func. Count: 35, Neg. LLF: 131.14512529111016
Iteration: 4, Func. Count: 47, Neg. LLF: 102.65164254794684
Iteration: 5, Func. Count: 58, Neg. LLF: 91.85581760982356
Iteration: 6, Func. Count: 68, Neg. LLF: 90.36469102486264
Iteration: 7, Func. Count: 78, Neg. LLF: 92.46342903921926
Iteration: 8, Func. Count: 90, Neg. LLF: 89.81461485001226
Iteration: 9, Func. Count: 100, Neg. LLF: 90.93941473624375
Iteration: 10, Func. Count: 112, Neg. LLF: 90.80638779185497
Iteration: 11, Func. Count: 123, Neg. LLF: 89.65608982396144
Iteration: 12, Func. Count: 133, Neg. LLF: 89.65147536300033
Iteration: 13, Func. Count: 143, Neg. LLF: 89.65113897503984
Iteration: 14, Func. Count: 153, Neg. LLF: 89.65113733089377
Iteration: 15, Func. Count: 162, Neg. LLF: 89.65113736056357
Optimization terminated successfully (Exit mode 0)
Current function value: 89.65113733089377
Iterations: 15
Function evaluations: 162
Gradient evaluations: 15
Iteration: 1, Func. Count: 12, Neg. LLF: 250081219.12242204
Iteration: 2, Func. Count: 25, Neg. LLF: 6329101.946321172
Iteration: 3, Func. Count: 37, Neg. LLF: 108.95568436061559
Iteration: 4, Func. Count: 49, Neg. LLF: 93.83514553448137
Iteration: 5, Func. Count: 61, Neg. LLF: 90.43191957280094
Iteration: 6, Func. Count: 72, Neg. LLF: 90.92780078823986
Iteration: 7, Func. Count: 84, Neg. LLF: 90.16281792482587
Iteration: 8, Func. Count: 95, Neg. LLF: 90.10798540503087
Iteration: 9, Func. Count: 106, Neg. LLF: 89.95483693690858
Iteration: 10, Func. Count: 117, Neg. LLF: 88.96653363158744
Iteration: 11, Func. Count: 128, Neg. LLF: 89.01719905723634
Iteration: 12, Func. Count: 140, Neg. LLF: 89.09321822919162
Iteration: 13, Func. Count: 152, Neg. LLF: 88.87467232867338
Iteration: 14, Func. Count: 163, Neg. LLF: 88.82241440450026
Iteration: 15, Func. Count: 174, Neg. LLF: 88.82062391842547
Iteration: 16, Func. Count: 185, Neg. LLF: 88.82011114477073
Iteration: 17, Func. Count: 196, Neg. LLF: 89.16468154464418
Iteration: 18, Func. Count: 209, Neg. LLF: 88.85450183166432
Iteration: 19, Func. Count: 222, Neg. LLF: 88.82120473987459
Iteration: 20, Func. Count: 235, Neg. LLF: 88.82017767590355
Iteration: 21, Func. Count: 247, Neg. LLF: 88.82010627716281
Iteration: 22, Func. Count: 259, Neg. LLF: 88.82009662686917
Iteration: 23, Func. Count: 269, Neg. LLF: 88.82009660512698
Optimization terminated successfully (Exit mode 0)
Current function value: 88.82009662686917
Iterations: 24
Function evaluations: 269
Gradient evaluations: 23
Iteration: 1, Func. Count: 9, Neg. LLF: 117.79323629221402
Iteration: 2, Func. Count: 20, Neg. LLF: 81745028.31015562
Iteration: 3, Func. Count: 29, Neg. LLF: 3685491.5574084427
Iteration: 4, Func. Count: 38, Neg. LLF: 7375546.078601601
Iteration: 5, Func. Count: 47, Neg. LLF: 93.80353024334408
Iteration: 6, Func. Count: 55, Neg. LLF: 305.4111912259941
Iteration: 7, Func. Count: 65, Neg. LLF: 93.71309303566323
Iteration: 8, Func. Count: 74, Neg. LLF: 95.08452575113209
Iteration: 9, Func. Count: 83, Neg. LLF: 93.54922891514491
Iteration: 10, Func. Count: 91, Neg. LLF: 93.47356446705652
Iteration: 11, Func. Count: 99, Neg. LLF: 93.4515641381886
Iteration: 12, Func. Count: 107, Neg. LLF: 93.42214017452461
Iteration: 13, Func. Count: 115, Neg. LLF: 93.41767034259459
Iteration: 14, Func. Count: 123, Neg. LLF: 93.41735182618538
Iteration: 15, Func. Count: 131, Neg. LLF: 93.41734070499432
Iteration: 16, Func. Count: 139, Neg. LLF: 93.41733970330316
Iteration: 17, Func. Count: 146, Neg. LLF: 93.41733970331434
Optimization terminated successfully (Exit mode 0)
Current function value: 93.41733970330316
Iterations: 17
Function evaluations: 146
Gradient evaluations: 17
Iteration: 1, Func. Count: 10, Neg. LLF: 182167428.90542614
Iteration: 2, Func. Count: 21, Neg. LLF: 354.8359802476281
Iteration: 3, Func. Count: 33, Neg. LLF: 110.10295572062533
Iteration: 4, Func. Count: 43, Neg. LLF: 99.76917300244818
Iteration: 5, Func. Count: 53, Neg. LLF: 95.8292200439799
Iteration: 6, Func. Count: 63, Neg. LLF: 93.19285392649793
Iteration: 7, Func. Count: 73, Neg. LLF: 92.07371463600819
Iteration: 8, Func. Count: 83, Neg. LLF: 91.482182423953
Iteration: 9, Func. Count: 92, Neg. LLF: 91.46519675545282
Iteration: 10, Func. Count: 101, Neg. LLF: 91.87364402456171
Iteration: 11, Func. Count: 111, Neg. LLF: 91.39365397816887
Iteration: 12, Func. Count: 120, Neg. LLF: 91.45083375979593
Iteration: 13, Func. Count: 130, Neg. LLF: 91.3865903173977
Iteration: 14, Func. Count: 139, Neg. LLF: 91.38648293935806
Iteration: 15, Func. Count: 148, Neg. LLF: 91.386480612207
Iteration: 16, Func. Count: 156, Neg. LLF: 91.38648061276606
Optimization terminated successfully (Exit mode 0)
Current function value: 91.386480612207
Iterations: 16
Function evaluations: 156
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 206860952.55417868
Iteration: 2, Func. Count: 23, Neg. LLF: 109.85396150365904
Iteration: 3, Func. Count: 34, Neg. LLF: 117.29015131635994
Iteration: 4, Func. Count: 45, Neg. LLF: 90.79102138658808
Iteration: 5, Func. Count: 55, Neg. LLF: 92.25558391572196
Iteration: 6, Func. Count: 67, Neg. LLF: 92.004664788772
Iteration: 7, Func. Count: 78, Neg. LLF: 89.74744042083955
Iteration: 8, Func. Count: 88, Neg. LLF: 89.98335788862214
Iteration: 9, Func. Count: 99, Neg. LLF: 89.67688646379898
Iteration: 10, Func. Count: 109, Neg. LLF: 89.66361994027574
Iteration: 11, Func. Count: 119, Neg. LLF: 89.65594669392674
Iteration: 12, Func. Count: 129, Neg. LLF: 89.65155341795246
Iteration: 13, Func. Count: 139, Neg. LLF: 89.65115651988597
Iteration: 14, Func. Count: 149, Neg. LLF: 89.65113728034527
Iteration: 15, Func. Count: 158, Neg. LLF: 89.65113728053367
Optimization terminated successfully (Exit mode 0)
Current function value: 89.65113728034527
Iterations: 15
Function evaluations: 158
Gradient evaluations: 15
Iteration: 1, Func. Count: 12, Neg. LLF: 306560720.0272993
Iteration: 2, Func. Count: 25, Neg. LLF: 6380904.027128031
Iteration: 3, Func. Count: 38, Neg. LLF: 134.3158253175943
Iteration: 4, Func. Count: 51, Neg. LLF: 97.61314548870216
Iteration: 5, Func. Count: 63, Neg. LLF: 91.48863102924275
Iteration: 6, Func. Count: 74, Neg. LLF: 91.94000738762072
Iteration: 7, Func. Count: 86, Neg. LLF: 92.55232257022239
Iteration: 8, Func. Count: 99, Neg. LLF: 90.07801176209173
Iteration: 9, Func. Count: 110, Neg. LLF: 90.96606434787145
Iteration: 10, Func. Count: 125, Neg. LLF: 89.80743929051513
Iteration: 11, Func. Count: 136, Neg. LLF: 89.7168686530928
Iteration: 12, Func. Count: 147, Neg. LLF: 89.66011248296368
Iteration: 13, Func. Count: 158, Neg. LLF: 89.65478905076463
Iteration: 14, Func. Count: 169, Neg. LLF: 89.65139321536067
Iteration: 15, Func. Count: 180, Neg. LLF: 89.65114901675865
Iteration: 16, Func. Count: 191, Neg. LLF: 89.65113727941379
Iteration: 17, Func. Count: 201, Neg. LLF: 89.65113730928901
Optimization terminated successfully (Exit mode 0)
Current function value: 89.65113727941379
Iterations: 17
Function evaluations: 201
Gradient evaluations: 17
Iteration: 1, Func. Count: 13, Neg. LLF: 269619440.21660054
Iteration: 2, Func. Count: 27, Neg. LLF: 6617111.061008545
Iteration: 3, Func. Count: 40, Neg. LLF: 107.49788256437233
Iteration: 4, Func. Count: 53, Neg. LLF: 93.05848215877552
Iteration: 5, Func. Count: 66, Neg. LLF: 90.41200003145492
Iteration: 6, Func. Count: 78, Neg. LLF: 90.36487629757606
Iteration: 7, Func. Count: 91, Neg. LLF: 89.05675055696149
Iteration: 8, Func. Count: 103, Neg. LLF: 89.82692735020052
Iteration: 9, Func. Count: 116, Neg. LLF: 88.93750873331616
Iteration: 10, Func. Count: 129, Neg. LLF: 88.34937833899934
Iteration: 11, Func. Count: 141, Neg. LLF: 88.29037939882316
Iteration: 12, Func. Count: 153, Neg. LLF: 88.28736135532435
Iteration: 13, Func. Count: 165, Neg. LLF: 88.28725319495113
Iteration: 14, Func. Count: 177, Neg. LLF: 88.2872511808631
Iteration: 15, Func. Count: 188, Neg. LLF: 88.2872511338849
Optimization terminated successfully (Exit mode 0)
Current function value: 88.2872511808631
Iterations: 15
Function evaluations: 188
Gradient evaluations: 15
Iteration: 1, Func. Count: 6, Neg. LLF: 110.31423532083778
Iteration: 2, Func. Count: 13, Neg. LLF: 93152.54991438932
Iteration: 3, Func. Count: 19, Neg. LLF: 1493.6932353527466
Iteration: 4, Func. Count: 25, Neg. LLF: 151.58594590698155
Iteration: 5, Func. Count: 31, Neg. LLF: 98.65112334865366
Iteration: 6, Func. Count: 37, Neg. LLF: 95.42537971989255
Iteration: 7, Func. Count: 43, Neg. LLF: 95.38208195842917
Iteration: 8, Func. Count: 49, Neg. LLF: 94.60725512439502
Iteration: 9, Func. Count: 54, Neg. LLF: 94.59844877175347
Iteration: 10, Func. Count: 59, Neg. LLF: 94.59738370848599
Iteration: 11, Func. Count: 64, Neg. LLF: 94.59737819571623
Iteration: 12, Func. Count: 68, Neg. LLF: 94.59737819573218
Optimization terminated successfully (Exit mode 0)
Current function value: 94.59737819571623
Iterations: 12
Function evaluations: 68
Gradient evaluations: 12
Iteration: 1, Func. Count: 7, Neg. LLF: 93105938.3012937
Iteration: 2, Func. Count: 15, Neg. LLF: 179.60251743708827
Iteration: 3, Func. Count: 22, Neg. LLF: 94.19865472705028
Iteration: 4, Func. Count: 29, Neg. LLF: 225.6791400261745
Iteration: 5, Func. Count: 36, Neg. LLF: 131.4977814158686
Iteration: 6, Func. Count: 43, Neg. LLF: 111.41967060213487
Iteration: 7, Func. Count: 50, Neg. LLF: 99.65233312101896
Iteration: 8, Func. Count: 57, Neg. LLF: 97.1875040426063
Iteration: 9, Func. Count: 64, Neg. LLF: 96.56312902345176
Iteration: 10, Func. Count: 71, Neg. LLF: 91.49608255135067
Iteration: 11, Func. Count: 77, Neg. LLF: 18406849.07480061
Iteration: 12, Func. Count: 86, Neg. LLF: 466.24924235764314
Iteration: 13, Func. Count: 94, Neg. LLF: 101.0846195497662
Iteration: 14, Func. Count: 102, Neg. LLF: 91.3279127743965
Iteration: 15, Func. Count: 108, Neg. LLF: 91.32352191075866
Iteration: 16, Func. Count: 114, Neg. LLF: 91.3206300101617
Iteration: 17, Func. Count: 120, Neg. LLF: 91.31994384315894
Iteration: 18, Func. Count: 126, Neg. LLF: 91.31984133186043
Iteration: 19, Func. Count: 131, Neg. LLF: 91.31984133157283
Optimization terminated successfully (Exit mode 0)
Current function value: 91.31984133186043
Iterations: 20
Function evaluations: 131
Gradient evaluations: 19
Iteration: 1, Func. Count: 8, Neg. LLF: 164365118.3584501
Iteration: 2, Func. Count: 17, Neg. LLF: 127.6328634856305
Iteration: 3, Func. Count: 26, Neg. LLF: 113.72381103570007
Iteration: 4, Func. Count: 34, Neg. LLF: 91.26088393474969
Iteration: 5, Func. Count: 41, Neg. LLF: 93.93848777928335
Iteration: 6, Func. Count: 51, Neg. LLF: 93.11654014301865
Iteration: 7, Func. Count: 60, Neg. LLF: 91.22159059663808
Iteration: 8, Func. Count: 68, Neg. LLF: 90.81251402892015
Iteration: 9, Func. Count: 76, Neg. LLF: 90.57159220009615
Iteration: 10, Func. Count: 83, Neg. LLF: 90.81842173489164
Iteration: 11, Func. Count: 91, Neg. LLF: 90.51947174865795
Iteration: 12, Func. Count: 98, Neg. LLF: 90.51139993681493
Iteration: 13, Func. Count: 105, Neg. LLF: 90.51042161458436
Iteration: 14, Func. Count: 112, Neg. LLF: 90.51035846468055
Iteration: 15, Func. Count: 119, Neg. LLF: 90.51035787317618
Optimization terminated successfully (Exit mode 0)
Current function value: 90.51035787317618
Iterations: 15
Function evaluations: 119
Gradient evaluations: 15
Iteration: 1, Func. Count: 9, Neg. LLF: 110336555.90810683
Iteration: 2, Func. Count: 18, Neg. LLF: 273038657.39392316
Iteration: 3, Func. Count: 28, Neg. LLF: 126.69139497380576
Iteration: 4, Func. Count: 37, Neg. LLF: 95.46980385792378
Iteration: 5, Func. Count: 46, Neg. LLF: 91.62204241629958
Iteration: 6, Func. Count: 54, Neg. LLF: 91.19971038276645
Iteration: 7, Func. Count: 62, Neg. LLF: 105.76296025001459
Iteration: 8, Func. Count: 73, Neg. LLF: 97.33143112810073
Iteration: 9, Func. Count: 82, Neg. LLF: 91.17794049628394
Iteration: 10, Func. Count: 91, Neg. LLF: 90.65660633404686
Iteration: 11, Func. Count: 100, Neg. LLF: 90.50046286375884
Iteration: 12, Func. Count: 108, Neg. LLF: 90.50005995187988
Iteration: 13, Func. Count: 116, Neg. LLF: 90.50002824531654
Iteration: 14, Func. Count: 124, Neg. LLF: 90.50000844171548
Iteration: 15, Func. Count: 132, Neg. LLF: 90.50000681664432
Iteration: 16, Func. Count: 139, Neg. LLF: 90.50000681638193
Optimization terminated successfully (Exit mode 0)
Current function value: 90.50000681664432
Iterations: 16
Function evaluations: 139
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 56676728.26135299
Iteration: 2, Func. Count: 20, Neg. LLF: 198697637.0010952
Iteration: 3, Func. Count: 31, Neg. LLF: 342.8290097738607
Iteration: 4, Func. Count: 41, Neg. LLF: 91.202600469757
Iteration: 5, Func. Count: 50, Neg. LLF: 96.63308829303438
Iteration: 6, Func. Count: 61, Neg. LLF: 94.30938656717373
Iteration: 7, Func. Count: 71, Neg. LLF: 92.3368577387274
Iteration: 8, Func. Count: 81, Neg. LLF: 90.61221835775562
Iteration: 9, Func. Count: 90, Neg. LLF: 90.57430065301197
Iteration: 10, Func. Count: 99, Neg. LLF: 90.50211056436575
Iteration: 11, Func. Count: 108, Neg. LLF: 90.50048940807038
Iteration: 12, Func. Count: 117, Neg. LLF: 90.50000951210319
Iteration: 13, Func. Count: 126, Neg. LLF: 90.50000665166033
Iteration: 14, Func. Count: 134, Neg. LLF: 90.50000665821261
Optimization terminated successfully (Exit mode 0)
Current function value: 90.50000665166033
Iterations: 14
Function evaluations: 134
Gradient evaluations: 14
Iteration: 1, Func. Count: 7, Neg. LLF: 110.28519500330503
Iteration: 2, Func. Count: 15, Neg. LLF: 3934.1354906803153
Iteration: 3, Func. Count: 22, Neg. LLF: 5195.9402962804525
Iteration: 4, Func. Count: 29, Neg. LLF: 1719.6142640767432
Iteration: 5, Func. Count: 36, Neg. LLF: 100.86803749441921
Iteration: 6, Func. Count: 43, Neg. LLF: 94.64880978751088
Iteration: 7, Func. Count: 49, Neg. LLF: 1350.3855217447265
Iteration: 8, Func. Count: 57, Neg. LLF: 94.81555185994114
Iteration: 9, Func. Count: 64, Neg. LLF: 94.55255097913039
Iteration: 10, Func. Count: 70, Neg. LLF: 94.54767999372838
Iteration: 11, Func. Count: 76, Neg. LLF: 94.5468633068747
Iteration: 12, Func. Count: 82, Neg. LLF: 94.54684493222686
Iteration: 13, Func. Count: 88, Neg. LLF: 94.54684145241596
Iteration: 14, Func. Count: 93, Neg. LLF: 94.54684145233004
Optimization terminated successfully (Exit mode 0)
Current function value: 94.54684145241596
Iterations: 14
Function evaluations: 93
Gradient evaluations: 14
Iteration: 1, Func. Count: 8, Neg. LLF: 196332656.81959638
Iteration: 2, Func. Count: 17, Neg. LLF: 263.5104404128169
Iteration: 3, Func. Count: 27, Neg. LLF: 111.32643676357873
Iteration: 4, Func. Count: 35, Neg. LLF: 91.57171802324005
Iteration: 5, Func. Count: 42, Neg. LLF: 91.5538132230595
Iteration: 6, Func. Count: 50, Neg. LLF: 91.39565861251323
Iteration: 7, Func. Count: 58, Neg. LLF: 91.96099664099879
Iteration: 8, Func. Count: 66, Neg. LLF: 91.32009746548593
Iteration: 9, Func. Count: 73, Neg. LLF: 91.31984327170802
Iteration: 10, Func. Count: 80, Neg. LLF: 91.31984104173671
Iteration: 11, Func. Count: 86, Neg. LLF: 91.31984104177758
Optimization terminated successfully (Exit mode 0)
Current function value: 91.31984104173671
Iterations: 11
Function evaluations: 86
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 181386343.41466784
Iteration: 2, Func. Count: 19, Neg. LLF: 133.9551045020208
Iteration: 3, Func. Count: 29, Neg. LLF: 114.91893139808188
Iteration: 4, Func. Count: 38, Neg. LLF: 91.36591181587609
Iteration: 5, Func. Count: 46, Neg. LLF: 93.66553351284227
Iteration: 6, Func. Count: 57, Neg. LLF: 94.05301758559837
Iteration: 7, Func. Count: 68, Neg. LLF: 91.07225266453322
Iteration: 8, Func. Count: 77, Neg. LLF: 90.75448003735848
Iteration: 9, Func. Count: 86, Neg. LLF: 90.57867703989568
Iteration: 10, Func. Count: 94, Neg. LLF: 90.65035637220416
Iteration: 11, Func. Count: 103, Neg. LLF: 90.5203138067992
Iteration: 12, Func. Count: 112, Neg. LLF: 90.51039849479432
Iteration: 13, Func. Count: 120, Neg. LLF: 90.5103589593388
Iteration: 14, Func. Count: 128, Neg. LLF: 90.51035798710511
Optimization terminated successfully (Exit mode 0)
Current function value: 90.51035798710511
Iterations: 14
Function evaluations: 128
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 125818040.11769445
Iteration: 2, Func. Count: 21, Neg. LLF: 267345187.44205344
Iteration: 3, Func. Count: 33, Neg. LLF: 106.38182082485639
Iteration: 4, Func. Count: 43, Neg. LLF: 91.4018272278602
Iteration: 5, Func. Count: 52, Neg. LLF: 91.08784894813087
Iteration: 6, Func. Count: 61, Neg. LLF: 90.73377387176629
Iteration: 7, Func. Count: 70, Neg. LLF: 94.51455109243376
Iteration: 8, Func. Count: 82, Neg. LLF: 211.93714907304232
Iteration: 9, Func. Count: 92, Neg. LLF: 90.5344545705671
Iteration: 10, Func. Count: 101, Neg. LLF: 90.50485935203656
Iteration: 11, Func. Count: 110, Neg. LLF: 90.50086846600087
Iteration: 12, Func. Count: 119, Neg. LLF: 90.50005677793771
Iteration: 13, Func. Count: 128, Neg. LLF: 90.50001423239563
Iteration: 14, Func. Count: 137, Neg. LLF: 90.50000664362156
Iteration: 15, Func. Count: 145, Neg. LLF: 90.50000664365696
Optimization terminated successfully (Exit mode 0)
Current function value: 90.50000664362156
Iterations: 15
Function evaluations: 145
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 63692811.4994992
Iteration: 2, Func. Count: 22, Neg. LLF: 156675224.41236052
Iteration: 3, Func. Count: 34, Neg. LLF: 568.0529897138473
Iteration: 4, Func. Count: 45, Neg. LLF: 91.2899295104454
Iteration: 5, Func. Count: 55, Neg. LLF: 96.0691405687265
Iteration: 6, Func. Count: 69, Neg. LLF: 108.26458665829897
Iteration: 7, Func. Count: 80, Neg. LLF: 91.29594540253936
Iteration: 8, Func. Count: 91, Neg. LLF: 90.62100280348199
Iteration: 9, Func. Count: 101, Neg. LLF: 90.74719477076368
Iteration: 10, Func. Count: 112, Neg. LLF: 90.50826765310768
Iteration: 11, Func. Count: 122, Neg. LLF: 90.50057688127039
Iteration: 12, Func. Count: 132, Neg. LLF: 90.5000659801615
Iteration: 13, Func. Count: 142, Neg. LLF: 90.50001492251984
Iteration: 14, Func. Count: 152, Neg. LLF: 90.50000729656855
Iteration: 15, Func. Count: 162, Neg. LLF: 90.50000664091434
Optimization terminated successfully (Exit mode 0)
Current function value: 90.50000664091434
Iterations: 15
Function evaluations: 162
Gradient evaluations: 15
Iteration: 1, Func. Count: 8, Neg. LLF: 107.63783908148507
Iteration: 2, Func. Count: 17, Neg. LLF: 119.3937593433688
Iteration: 3, Func. Count: 25, Neg. LLF: 1451.4691120270736
Iteration: 4, Func. Count: 33, Neg. LLF: 103.95038832616902
Iteration: 5, Func. Count: 41, Neg. LLF: 94.57506576974619
Iteration: 6, Func. Count: 49, Neg. LLF: 99.6070352289219
Iteration: 7, Func. Count: 58, Neg. LLF: 93.9841232612992
Iteration: 8, Func. Count: 66, Neg. LLF: 93.95123696823126
Iteration: 9, Func. Count: 74, Neg. LLF: 93.94346087523452
Iteration: 10, Func. Count: 81, Neg. LLF: 93.94174374306743
Iteration: 11, Func. Count: 88, Neg. LLF: 93.94138359176816
Iteration: 12, Func. Count: 95, Neg. LLF: 93.94135424822
Iteration: 13, Func. Count: 102, Neg. LLF: 93.94135245440586
Iteration: 14, Func. Count: 108, Neg. LLF: 93.94135245440475
Optimization terminated successfully (Exit mode 0)
Current function value: 93.94135245440586
Iterations: 14
Function evaluations: 108
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 187152612.28126386
Iteration: 2, Func. Count: 19, Neg. LLF: 230.96015950060135
Iteration: 3, Func. Count: 30, Neg. LLF: 92.9810983701024
Iteration: 4, Func. Count: 39, Neg. LLF: 92.23786043615573
Iteration: 5, Func. Count: 48, Neg. LLF: 96.09316699914204
Iteration: 6, Func. Count: 57, Neg. LLF: 91.47720284659168
Iteration: 7, Func. Count: 65, Neg. LLF: 91.57498510461197
Iteration: 8, Func. Count: 74, Neg. LLF: 91.66680142312875
Iteration: 9, Func. Count: 84, Neg. LLF: 91.48211764309299
Iteration: 10, Func. Count: 93, Neg. LLF: 91.31584757770138
Iteration: 11, Func. Count: 101, Neg. LLF: 91.314378274729
Iteration: 12, Func. Count: 109, Neg. LLF: 91.31412562500495
Iteration: 13, Func. Count: 117, Neg. LLF: 91.31412212715225
Iteration: 14, Func. Count: 124, Neg. LLF: 91.3141221271275
Optimization terminated successfully (Exit mode 0)
Current function value: 91.31412212715225
Iterations: 14
Function evaluations: 124
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 180628814.21466216
Iteration: 2, Func. Count: 21, Neg. LLF: 132.67083876669986
Iteration: 3, Func. Count: 32, Neg. LLF: 92.83426146752123
Iteration: 4, Func. Count: 42, Neg. LLF: 92.21319790307587
Iteration: 5, Func. Count: 52, Neg. LLF: 91.49349460892742
Iteration: 6, Func. Count: 62, Neg. LLF: 90.87994163835043
Iteration: 7, Func. Count: 71, Neg. LLF: 93.42530962100726
Iteration: 8, Func. Count: 83, Neg. LLF: 173.75976356282766
Iteration: 9, Func. Count: 93, Neg. LLF: 89.81206549250322
Iteration: 10, Func. Count: 102, Neg. LLF: 89.682359827757
Iteration: 11, Func. Count: 111, Neg. LLF: 89.65778633699254
Iteration: 12, Func. Count: 120, Neg. LLF: 89.65156170717204
Iteration: 13, Func. Count: 129, Neg. LLF: 89.65131421620403
Iteration: 14, Func. Count: 138, Neg. LLF: 89.6511717124302
Iteration: 15, Func. Count: 147, Neg. LLF: 89.65113891363994
Iteration: 16, Func. Count: 156, Neg. LLF: 89.65113724298224
Iteration: 17, Func. Count: 164, Neg. LLF: 89.65113724288616
Optimization terminated successfully (Exit mode 0)
Current function value: 89.65113724298224
Iterations: 17
Function evaluations: 164
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 258180436.44828647
Iteration: 2, Func. Count: 23, Neg. LLF: 123.2528293980588
Iteration: 3, Func. Count: 34, Neg. LLF: 97.09134326850305
Iteration: 4, Func. Count: 45, Neg. LLF: 105.2907431068936
Iteration: 5, Func. Count: 56, Neg. LLF: 91.00174290778654
Iteration: 6, Func. Count: 66, Neg. LLF: 93.16485473705112
Iteration: 7, Func. Count: 77, Neg. LLF: 91.3897417405013
Iteration: 8, Func. Count: 89, Neg. LLF: 89.80838306830864
Iteration: 9, Func. Count: 99, Neg. LLF: 90.57420362692858
Iteration: 10, Func. Count: 112, Neg. LLF: 89.75481145694759
Iteration: 11, Func. Count: 123, Neg. LLF: 89.65600610478083
Iteration: 12, Func. Count: 133, Neg. LLF: 89.65160934997505
Iteration: 13, Func. Count: 143, Neg. LLF: 89.65115647991388
Iteration: 14, Func. Count: 153, Neg. LLF: 89.65114249591458
Iteration: 15, Func. Count: 163, Neg. LLF: 89.65113721944338
Iteration: 16, Func. Count: 172, Neg. LLF: 89.65113724944472
Optimization terminated successfully (Exit mode 0)
Current function value: 89.65113721944338
Iterations: 16
Function evaluations: 172
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 326738893.40385234
Iteration: 2, Func. Count: 25, Neg. LLF: 92.95513986941134
Iteration: 3, Func. Count: 37, Neg. LLF: 116.93112618148632
Iteration: 4, Func. Count: 49, Neg. LLF: 142.7552796703109
Iteration: 5, Func. Count: 61, Neg. LLF: 90.19643557566626
Iteration: 6, Func. Count: 72, Neg. LLF: 93.09663554688203
Iteration: 7, Func. Count: 84, Neg. LLF: 89.1368901774446
Iteration: 8, Func. Count: 95, Neg. LLF: 91.1424153207323
Iteration: 9, Func. Count: 107, Neg. LLF: 88.85230337547962
Iteration: 10, Func. Count: 118, Neg. LLF: 88.8475306830722
Iteration: 11, Func. Count: 130, Neg. LLF: 88.82855630220591
Iteration: 12, Func. Count: 142, Neg. LLF: 88.8201402339662
Iteration: 13, Func. Count: 153, Neg. LLF: 88.82009768656033
Iteration: 14, Func. Count: 164, Neg. LLF: 88.82009666337794
Iteration: 15, Func. Count: 174, Neg. LLF: 88.8200966416057
Optimization terminated successfully (Exit mode 0)
Current function value: 88.82009666337794
Iterations: 15
Function evaluations: 174
Gradient evaluations: 15
Iteration: 1, Func. Count: 9, Neg. LLF: 105.13544076737973
Iteration: 2, Func. Count: 19, Neg. LLF: 8386.910203139672
Iteration: 3, Func. Count: 28, Neg. LLF: 18239.04652820057
Iteration: 4, Func. Count: 37, Neg. LLF: 94.76497818421369
Iteration: 5, Func. Count: 46, Neg. LLF: 412.5857569493771
Iteration: 6, Func. Count: 55, Neg. LLF: 95.09752481708864
Iteration: 7, Func. Count: 64, Neg. LLF: 93.99235969194088
Iteration: 8, Func. Count: 72, Neg. LLF: 94.01199582167447
Iteration: 9, Func. Count: 81, Neg. LLF: 93.96714057965991
Iteration: 10, Func. Count: 90, Neg. LLF: 93.94281719034461
Iteration: 11, Func. Count: 98, Neg. LLF: 93.94141344752241
Iteration: 12, Func. Count: 106, Neg. LLF: 93.94136285606605
Iteration: 13, Func. Count: 114, Neg. LLF: 93.94135243139723
Iteration: 14, Func. Count: 121, Neg. LLF: 93.94135249725234
Optimization terminated successfully (Exit mode 0)
Current function value: 93.94135243139723
Iterations: 14
Function evaluations: 121
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 180461796.35030347
Iteration: 2, Func. Count: 21, Neg. LLF: 229.1363640650469
Iteration: 3, Func. Count: 33, Neg. LLF: 92.89779037995997
Iteration: 4, Func. Count: 43, Neg. LLF: 92.16575484008668
Iteration: 5, Func. Count: 53, Neg. LLF: 94.67828645168845
Iteration: 6, Func. Count: 63, Neg. LLF: 91.46455721366969
Iteration: 7, Func. Count: 72, Neg. LLF: 91.51864171104073
Iteration: 8, Func. Count: 82, Neg. LLF: 91.4731864164472
Iteration: 9, Func. Count: 92, Neg. LLF: 91.3274221765723
Iteration: 10, Func. Count: 101, Neg. LLF: 91.32994771568409
Iteration: 11, Func. Count: 111, Neg. LLF: 91.31437070886848
Iteration: 12, Func. Count: 120, Neg. LLF: 91.31413559146213
Iteration: 13, Func. Count: 129, Neg. LLF: 91.31412201268186
Iteration: 14, Func. Count: 137, Neg. LLF: 91.31412201282473
Optimization terminated successfully (Exit mode 0)
Current function value: 91.31412201268186
Iterations: 14
Function evaluations: 137
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 178468975.06154323
Iteration: 2, Func. Count: 23, Neg. LLF: 134.08561942356357
Iteration: 3, Func. Count: 35, Neg. LLF: 93.00336624777316
Iteration: 4, Func. Count: 46, Neg. LLF: 92.25972746549054
Iteration: 5, Func. Count: 57, Neg. LLF: 90.8393160030284
Iteration: 6, Func. Count: 67, Neg. LLF: 94.22320705172844
Iteration: 7, Func. Count: 80, Neg. LLF: 174.2338902864214
Iteration: 8, Func. Count: 91, Neg. LLF: 103.34464040849693
Iteration: 9, Func. Count: 102, Neg. LLF: 90.44542109571043
Iteration: 10, Func. Count: 113, Neg. LLF: 89.79081746949521
Iteration: 11, Func. Count: 123, Neg. LLF: 91.45520222602546
Iteration: 12, Func. Count: 134, Neg. LLF: 89.67003482140883
Iteration: 13, Func. Count: 144, Neg. LLF: 89.6555974520038
Iteration: 14, Func. Count: 154, Neg. LLF: 89.65270049993535
Iteration: 15, Func. Count: 164, Neg. LLF: 89.65128533059901
Iteration: 16, Func. Count: 174, Neg. LLF: 89.651147439506
Iteration: 17, Func. Count: 184, Neg. LLF: 89.65113740500396
Iteration: 18, Func. Count: 193, Neg. LLF: 89.65113740528591
Optimization terminated successfully (Exit mode 0)
Current function value: 89.65113740500396
Iterations: 18
Function evaluations: 193
Gradient evaluations: 18
Iteration: 1, Func. Count: 12, Neg. LLF: 174814720.02449372
Iteration: 2, Func. Count: 25, Neg. LLF: 2901591.1873651114
Iteration: 3, Func. Count: 38, Neg. LLF: 123.40200260091419
Iteration: 4, Func. Count: 50, Neg. LLF: 93.01178032323676
Iteration: 5, Func. Count: 62, Neg. LLF: 91.33408308853274
Iteration: 6, Func. Count: 73, Neg. LLF: 91.28716537855252
Iteration: 7, Func. Count: 85, Neg. LLF: 90.0767966784194
Iteration: 8, Func. Count: 96, Neg. LLF: 90.73453020968194
Iteration: 9, Func. Count: 111, Neg. LLF: 92.30099602415987
Iteration: 10, Func. Count: 123, Neg. LLF: 89.66293809720212
Iteration: 11, Func. Count: 134, Neg. LLF: 89.65474633870333
Iteration: 12, Func. Count: 145, Neg. LLF: 89.651740219921
Iteration: 13, Func. Count: 156, Neg. LLF: 89.65141417693447
Iteration: 14, Func. Count: 167, Neg. LLF: 89.65119432545481
Iteration: 15, Func. Count: 178, Neg. LLF: 89.65114117225531
Iteration: 16, Func. Count: 189, Neg. LLF: 89.6511373160699
Iteration: 17, Func. Count: 199, Neg. LLF: 89.65113734611977
Optimization terminated successfully (Exit mode 0)
Current function value: 89.6511373160699
Iterations: 17
Function evaluations: 199
Gradient evaluations: 17
Iteration: 1, Func. Count: 13, Neg. LLF: 187103967.4987444
Iteration: 2, Func. Count: 27, Neg. LLF: 2259103.131773128
Iteration: 3, Func. Count: 41, Neg. LLF: 123.74641465249368
Iteration: 4, Func. Count: 54, Neg. LLF: 92.67734132867866
Iteration: 5, Func. Count: 67, Neg. LLF: 90.56297769031622
Iteration: 6, Func. Count: 79, Neg. LLF: 90.56148352191624
Iteration: 7, Func. Count: 92, Neg. LLF: 90.13296142292431
Iteration: 8, Func. Count: 104, Neg. LLF: 89.99906973185954
Iteration: 9, Func. Count: 116, Neg. LLF: 89.02583254801927
Iteration: 10, Func. Count: 128, Neg. LLF: 91.6365010583337
Iteration: 11, Func. Count: 142, Neg. LLF: 88.92555829777217
Iteration: 12, Func. Count: 154, Neg. LLF: 89.03176435200469
Iteration: 13, Func. Count: 167, Neg. LLF: 88.8631263789901
Iteration: 14, Func. Count: 179, Neg. LLF: 88.84907474300108
Iteration: 15, Func. Count: 191, Neg. LLF: 88.82135117792383
Iteration: 16, Func. Count: 203, Neg. LLF: 88.82032116502519
Iteration: 17, Func. Count: 215, Neg. LLF: 88.82049643505849
Iteration: 18, Func. Count: 228, Neg. LLF: 88.82007367333036
Iteration: 19, Func. Count: 240, Neg. LLF: 88.81997981239145
Iteration: 20, Func. Count: 262, Neg. LLF: 88.82007714220501
Iteration: 21, Func. Count: 284, Neg. LLF: 88.825217548373
Iteration: 22, Func. Count: 298, Neg. LLF: 88.82025576978643
Iteration: 23, Func. Count: 312, Neg. LLF: 88.82030348444741
Iteration: 24, Func. Count: 326, Neg. LLF: 88.8201010545148
Iteration: 25, Func. Count: 340, Neg. LLF: 88.82009662687467
Iteration: 26, Func. Count: 351, Neg. LLF: 88.82009660513137
Optimization terminated successfully (Exit mode 0)
Current function value: 88.82009662687467
Iterations: 27
Function evaluations: 351
Gradient evaluations: 26
Iteration: 1, Func. Count: 10, Neg. LLF: 105.43237186298077
Iteration: 2, Func. Count: 21, Neg. LLF: 109.41247883133947
Iteration: 3, Func. Count: 32, Neg. LLF: 206.30731750726346
Iteration: 4, Func. Count: 42, Neg. LLF: 7880007.63448668
Iteration: 5, Func. Count: 52, Neg. LLF: 1055.9190684614732
Iteration: 6, Func. Count: 62, Neg. LLF: 104.326049492853
Iteration: 7, Func. Count: 72, Neg. LLF: 93.488740896541
Iteration: 8, Func. Count: 82, Neg. LLF: 103.92501848142021
Iteration: 9, Func. Count: 93, Neg. LLF: 92.87036599463752
Iteration: 10, Func. Count: 103, Neg. LLF: 92.63038523123737
Iteration: 11, Func. Count: 112, Neg. LLF: 92.61778282475952
Iteration: 12, Func. Count: 121, Neg. LLF: 92.60931897404605
Iteration: 13, Func. Count: 130, Neg. LLF: 92.60747041864377
Iteration: 14, Func. Count: 139, Neg. LLF: 92.60735032418225
Iteration: 15, Func. Count: 148, Neg. LLF: 92.60734316946896
Iteration: 16, Func. Count: 156, Neg. LLF: 92.6073431694597
Optimization terminated successfully (Exit mode 0)
Current function value: 92.60734316946896
Iterations: 16
Function evaluations: 156
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 180640969.45379862
Iteration: 2, Func. Count: 23, Neg. LLF: 222.35442433230529
Iteration: 3, Func. Count: 36, Neg. LLF: 92.12334630310255
Iteration: 4, Func. Count: 47, Neg. LLF: 93.49284414255825
Iteration: 5, Func. Count: 58, Neg. LLF: 93.32708183025639
Iteration: 6, Func. Count: 69, Neg. LLF: 95.27169922045329
Iteration: 7, Func. Count: 80, Neg. LLF: 91.52277215268394
Iteration: 8, Func. Count: 90, Neg. LLF: 91.44943440214973
Iteration: 9, Func. Count: 101, Neg. LLF: 92.80591099677564
Iteration: 10, Func. Count: 112, Neg. LLF: 91.32079689333368
Iteration: 11, Func. Count: 122, Neg. LLF: 91.31788933715906
Iteration: 12, Func. Count: 132, Neg. LLF: 91.31437364682147
Iteration: 13, Func. Count: 142, Neg. LLF: 91.31420934145986
Iteration: 14, Func. Count: 152, Neg. LLF: 91.31413097497928
Iteration: 15, Func. Count: 162, Neg. LLF: 91.31412279325652
Iteration: 16, Func. Count: 172, Neg. LLF: 91.31412197012999
Optimization terminated successfully (Exit mode 0)
Current function value: 91.31412197012999
Iterations: 16
Function evaluations: 172
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 178973533.3095438
Iteration: 2, Func. Count: 25, Neg. LLF: 132.821967603179
Iteration: 3, Func. Count: 38, Neg. LLF: 92.91310060786417
Iteration: 4, Func. Count: 50, Neg. LLF: 92.19405567025677
Iteration: 5, Func. Count: 62, Neg. LLF: 90.72477073164606
Iteration: 6, Func. Count: 73, Neg. LLF: 95.81161908706433
Iteration: 7, Func. Count: 87, Neg. LLF: 156.2719114687467
Iteration: 8, Func. Count: 100, Neg. LLF: 101.9288298087789
Iteration: 9, Func. Count: 112, Neg. LLF: 89.95398450048954
Iteration: 10, Func. Count: 123, Neg. LLF: 89.79895186593609
Iteration: 11, Func. Count: 134, Neg. LLF: 89.734096250273
Iteration: 12, Func. Count: 145, Neg. LLF: 89.68159773138115
Iteration: 13, Func. Count: 156, Neg. LLF: 89.65633591333321
Iteration: 14, Func. Count: 167, Neg. LLF: 89.65381936873659
Iteration: 15, Func. Count: 178, Neg. LLF: 89.65119789945257
Iteration: 16, Func. Count: 189, Neg. LLF: 89.651141688042
Iteration: 17, Func. Count: 200, Neg. LLF: 89.6511372388176
Iteration: 18, Func. Count: 210, Neg. LLF: 89.65113723876098
Optimization terminated successfully (Exit mode 0)
Current function value: 89.6511372388176
Iterations: 18
Function evaluations: 210
Gradient evaluations: 18
Iteration: 1, Func. Count: 13, Neg. LLF: 177306571.23652008
Iteration: 2, Func. Count: 27, Neg. LLF: 3079163.9225923945
Iteration: 3, Func. Count: 41, Neg. LLF: 123.68042242687305
Iteration: 4, Func. Count: 54, Neg. LLF: 93.04353571780658
Iteration: 5, Func. Count: 67, Neg. LLF: 91.33631772521939
Iteration: 6, Func. Count: 79, Neg. LLF: 91.27622949889327
Iteration: 7, Func. Count: 92, Neg. LLF: 93.58100576250988
Iteration: 8, Func. Count: 105, Neg. LLF: 90.06762330520856
Iteration: 9, Func. Count: 117, Neg. LLF: 89.73754296146394
Iteration: 10, Func. Count: 129, Neg. LLF: 91.41159131516551
Iteration: 11, Func. Count: 143, Neg. LLF: 91.81901366343148
Iteration: 12, Func. Count: 156, Neg. LLF: 89.65227759468449
Iteration: 13, Func. Count: 168, Neg. LLF: 89.65171247638747
Iteration: 14, Func. Count: 180, Neg. LLF: 89.65127016324023
Iteration: 15, Func. Count: 192, Neg. LLF: 89.65121165198454
Iteration: 16, Func. Count: 204, Neg. LLF: 89.65114089871106
Iteration: 17, Func. Count: 216, Neg. LLF: 89.65113747474395
Iteration: 18, Func. Count: 227, Neg. LLF: 89.65113750496998
Optimization terminated successfully (Exit mode 0)
Current function value: 89.65113747474395
Iterations: 18
Function evaluations: 227
Gradient evaluations: 18
Iteration: 1, Func. Count: 14, Neg. LLF: 194610990.1435049
Iteration: 2, Func. Count: 29, Neg. LLF: 2575579.3784903735
Iteration: 3, Func. Count: 44, Neg. LLF: 126.23255744790018
Iteration: 4, Func. Count: 58, Neg. LLF: 93.42665298737538
Iteration: 5, Func. Count: 72, Neg. LLF: 90.88958937390166
Iteration: 6, Func. Count: 85, Neg. LLF: 90.49209954892834
Iteration: 7, Func. Count: 98, Neg. LLF: 89.58115023041312
Iteration: 8, Func. Count: 111, Neg. LLF: 95.40328506363747
Iteration: 9, Func. Count: 125, Neg. LLF: 88.55009436797461
Iteration: 10, Func. Count: 138, Neg. LLF: 88.49414860356627
Iteration: 11, Func. Count: 152, Neg. LLF: 88.30942494962952
Iteration: 12, Func. Count: 165, Neg. LLF: 88.28983016870046
Iteration: 13, Func. Count: 178, Neg. LLF: 88.28728720035303
Iteration: 14, Func. Count: 191, Neg. LLF: 88.28725122943625
Iteration: 15, Func. Count: 203, Neg. LLF: 88.28725118249865
Optimization terminated successfully (Exit mode 0)
Current function value: 88.28725122943625
Iterations: 15
Function evaluations: 203
Gradient evaluations: 15
Iteration: 1, Func. Count: 7, Neg. LLF: 113.5561462401316
Iteration: 2, Func. Count: 15, Neg. LLF: 118.47658492100234
Iteration: 3, Func. Count: 22, Neg. LLF: 158.74309702471385
Iteration: 4, Func. Count: 29, Neg. LLF: 98.81136338578858
Iteration: 5, Func. Count: 36, Neg. LLF: 95.104635972737
Iteration: 6, Func. Count: 43, Neg. LLF: 94.3287264770476
Iteration: 7, Func. Count: 49, Neg. LLF: 94.29606854935899
Iteration: 8, Func. Count: 55, Neg. LLF: 94.49157678507699
Iteration: 9, Func. Count: 62, Neg. LLF: 94.29639506969028
Iteration: 10, Func. Count: 69, Neg. LLF: 94.28907258623055
Iteration: 11, Func. Count: 75, Neg. LLF: 94.28896284490823
Iteration: 12, Func. Count: 81, Neg. LLF: 94.28896076117681
Iteration: 13, Func. Count: 86, Neg. LLF: 94.28896076120803
Optimization terminated successfully (Exit mode 0)
Current function value: 94.28896076117681
Iterations: 13
Function evaluations: 86
Gradient evaluations: 13
Iteration: 1, Func. Count: 8, Neg. LLF: 198137632.15516555
Iteration: 2, Func. Count: 17, Neg. LLF: 213.83944154948801
Iteration: 3, Func. Count: 27, Neg. LLF: 109.6880629910295
Iteration: 4, Func. Count: 36, Neg. LLF: 92.26578364811715
Iteration: 5, Func. Count: 44, Neg. LLF: 92.247877457911
Iteration: 6, Func. Count: 52, Neg. LLF: 129.68076947941023
Iteration: 7, Func. Count: 62, Neg. LLF: 91.69000518164302
Iteration: 8, Func. Count: 69, Neg. LLF: 91.73143792949095
Iteration: 9, Func. Count: 77, Neg. LLF: 91.74738640276883
Iteration: 10, Func. Count: 85, Neg. LLF: 91.32300746552916
Iteration: 11, Func. Count: 92, Neg. LLF: 91.32106289986561
Iteration: 12, Func. Count: 99, Neg. LLF: 91.32058168003287
Iteration: 13, Func. Count: 106, Neg. LLF: 91.31994147827686
Iteration: 14, Func. Count: 113, Neg. LLF: 91.31984380532509
Iteration: 15, Func. Count: 120, Neg. LLF: 91.31984105136267
Iteration: 16, Func. Count: 126, Neg. LLF: 91.3198410516216
Optimization terminated successfully (Exit mode 0)
Current function value: 91.31984105136267
Iterations: 16
Function evaluations: 126
Gradient evaluations: 16
Iteration: 1, Func. Count: 9, Neg. LLF: 130649208.19580233
Iteration: 2, Func. Count: 19, Neg. LLF: 104.09927738334717
Iteration: 3, Func. Count: 29, Neg. LLF: 113.54852676701253
Iteration: 4, Func. Count: 38, Neg. LLF: 91.73855482339303
Iteration: 5, Func. Count: 46, Neg. LLF: 93.15797225784374
Iteration: 6, Func. Count: 57, Neg. LLF: 96.00883145368908
Iteration: 7, Func. Count: 66, Neg. LLF: 91.47156896394884
Iteration: 8, Func. Count: 75, Neg. LLF: 93.433762293214
Iteration: 9, Func. Count: 84, Neg. LLF: 97.73271747142233
Iteration: 10, Func. Count: 93, Neg. LLF: 92.91918874736467
Iteration: 11, Func. Count: 102, Neg. LLF: 91.50532592291653
Iteration: 12, Func. Count: 111, Neg. LLF: 90.77858666054698
Iteration: 13, Func. Count: 120, Neg. LLF: 90.5399758498456
Iteration: 14, Func. Count: 128, Neg. LLF: 90.54946238349387
Iteration: 15, Func. Count: 137, Neg. LLF: 90.51487047564576
Iteration: 16, Func. Count: 145, Neg. LLF: 90.51053271176723
Iteration: 17, Func. Count: 153, Neg. LLF: 90.510366525839
Iteration: 18, Func. Count: 161, Neg. LLF: 90.51035855038586
Iteration: 19, Func. Count: 169, Neg. LLF: 90.51035786422312
Optimization terminated successfully (Exit mode 0)
Current function value: 90.51035786422312
Iterations: 19
Function evaluations: 169
Gradient evaluations: 19
Iteration: 1, Func. Count: 10, Neg. LLF: 95044829.95293196
Iteration: 2, Func. Count: 20, Neg. LLF: 365508436.27540123
Iteration: 3, Func. Count: 32, Neg. LLF: 131.54963334476153
Iteration: 4, Func. Count: 42, Neg. LLF: 99.46455075297267
Iteration: 5, Func. Count: 52, Neg. LLF: 91.70860185816812
Iteration: 6, Func. Count: 61, Neg. LLF: 91.35645807905706
Iteration: 7, Func. Count: 70, Neg. LLF: 90.92456213862066
Iteration: 8, Func. Count: 79, Neg. LLF: 92.01877406916887
Iteration: 9, Func. Count: 90, Neg. LLF: 90.59089651826113
Iteration: 10, Func. Count: 99, Neg. LLF: 90.6212094376697
Iteration: 11, Func. Count: 109, Neg. LLF: 90.51144972528976
Iteration: 12, Func. Count: 118, Neg. LLF: 90.5005556399931
Iteration: 13, Func. Count: 127, Neg. LLF: 90.50002609562716
Iteration: 14, Func. Count: 136, Neg. LLF: 90.50002325543551
Iteration: 15, Func. Count: 146, Neg. LLF: 90.50000663993161
Optimization terminated successfully (Exit mode 0)
Current function value: 90.50000663993161
Iterations: 15
Function evaluations: 146
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 54877336.74388728
Iteration: 2, Func. Count: 22, Neg. LLF: 216188039.54924643
Iteration: 3, Func. Count: 34, Neg. LLF: 365.94430340216934
Iteration: 4, Func. Count: 45, Neg. LLF: 91.10724291271165
Iteration: 5, Func. Count: 55, Neg. LLF: 93.39379533401426
Iteration: 6, Func. Count: 66, Neg. LLF: 90.86509935541793
Iteration: 7, Func. Count: 76, Neg. LLF: 96.14889586069927
Iteration: 8, Func. Count: 87, Neg. LLF: 93.69493077677878
Iteration: 9, Func. Count: 98, Neg. LLF: 91.45158812514518
Iteration: 10, Func. Count: 109, Neg. LLF: 90.68390508101763
Iteration: 11, Func. Count: 120, Neg. LLF: 90.50100379735429
Iteration: 12, Func. Count: 130, Neg. LLF: 90.50017236230245
Iteration: 13, Func. Count: 140, Neg. LLF: 90.50002832084589
Iteration: 14, Func. Count: 150, Neg. LLF: 90.50001349994803
Iteration: 15, Func. Count: 160, Neg. LLF: 90.50000668356523
Iteration: 16, Func. Count: 169, Neg. LLF: 90.50000669015193
Optimization terminated successfully (Exit mode 0)
Current function value: 90.50000668356523
Iterations: 16
Function evaluations: 169
Gradient evaluations: 16
Iteration: 1, Func. Count: 8, Neg. LLF: 114.05498091953504
Iteration: 2, Func. Count: 17, Neg. LLF: 118.6867558649268
Iteration: 3, Func. Count: 25, Neg. LLF: 159.71447130579907
Iteration: 4, Func. Count: 33, Neg. LLF: 98.87388637183798
Iteration: 5, Func. Count: 41, Neg. LLF: 95.03820302605556
Iteration: 6, Func. Count: 49, Neg. LLF: 94.33109193433711
Iteration: 7, Func. Count: 56, Neg. LLF: 95.64778053897794
Iteration: 8, Func. Count: 64, Neg. LLF: 94.37862018730877
Iteration: 9, Func. Count: 72, Neg. LLF: 94.27889723428521
Iteration: 10, Func. Count: 79, Neg. LLF: 94.27873575712145
Iteration: 11, Func. Count: 86, Neg. LLF: 94.27871086389155
Iteration: 12, Func. Count: 92, Neg. LLF: 94.27871085229543
Optimization terminated successfully (Exit mode 0)
Current function value: 94.27871086389155
Iterations: 12
Function evaluations: 92
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 89637080.53531183
Iteration: 2, Func. Count: 19, Neg. LLF: 438.25371501261924
Iteration: 3, Func. Count: 28, Neg. LLF: 93.49500916174195
Iteration: 4, Func. Count: 37, Neg. LLF: 210.4625130777304
Iteration: 5, Func. Count: 46, Neg. LLF: 137.18094557600955
Iteration: 6, Func. Count: 55, Neg. LLF: 115.77883636271379
Iteration: 7, Func. Count: 64, Neg. LLF: 107.33397419867423
Iteration: 8, Func. Count: 73, Neg. LLF: 105.0985030327475
Iteration: 9, Func. Count: 82, Neg. LLF: 99.77077441846262
Iteration: 10, Func. Count: 91, Neg. LLF: 91.83668128007655
Iteration: 11, Func. Count: 99, Neg. LLF: 93.63269526469911
Iteration: 12, Func. Count: 108, Neg. LLF: 152.84643427285621
Iteration: 13, Func. Count: 118, Neg. LLF: 91.65647985299262
Iteration: 14, Func. Count: 126, Neg. LLF: 91.44165287846064
Iteration: 15, Func. Count: 134, Neg. LLF: 91.3901703021418
Iteration: 16, Func. Count: 142, Neg. LLF: 91.3766452220645
Iteration: 17, Func. Count: 150, Neg. LLF: 91.3696512376418
Iteration: 18, Func. Count: 158, Neg. LLF: 91.36470560559924
Iteration: 19, Func. Count: 166, Neg. LLF: 91.34182175600331
Iteration: 20, Func. Count: 174, Neg. LLF: 91.32682585477406
Iteration: 21, Func. Count: 182, Neg. LLF: 91.32047329465559
Iteration: 22, Func. Count: 190, Neg. LLF: 91.31990729822952
Iteration: 23, Func. Count: 198, Neg. LLF: 91.31984904568763
Iteration: 24, Func. Count: 206, Neg. LLF: 91.31984393454906
Iteration: 25, Func. Count: 214, Neg. LLF: 91.31984252666741
Iteration: 26, Func. Count: 222, Neg. LLF: 91.31984170145398
Optimization terminated successfully (Exit mode 0)
Current function value: 91.31984170145398
Iterations: 26
Function evaluations: 222
Gradient evaluations: 26
Iteration: 1, Func. Count: 10, Neg. LLF: 145551700.5208497
Iteration: 2, Func. Count: 21, Neg. LLF: 103.09306090362327
Iteration: 3, Func. Count: 31, Neg. LLF: 114.09124814372579
Iteration: 4, Func. Count: 41, Neg. LLF: 139.70113780942478
Iteration: 5, Func. Count: 51, Neg. LLF: 91.94321206138144
Iteration: 6, Func. Count: 61, Neg. LLF: 90.9859753951083
Iteration: 7, Func. Count: 70, Neg. LLF: 91.30110227485912
Iteration: 8, Func. Count: 82, Neg. LLF: 92.94216670356994
Iteration: 9, Func. Count: 93, Neg. LLF: 90.96063783319745
Iteration: 10, Func. Count: 103, Neg. LLF: 90.55885215782612
Iteration: 11, Func. Count: 112, Neg. LLF: 90.51746950070343
Iteration: 12, Func. Count: 121, Neg. LLF: 90.51054174188221
Iteration: 13, Func. Count: 130, Neg. LLF: 90.51045796850295
Iteration: 14, Func. Count: 139, Neg. LLF: 90.51035871873022
Iteration: 15, Func. Count: 148, Neg. LLF: 90.510357943237
Optimization terminated successfully (Exit mode 0)
Current function value: 90.510357943237
Iterations: 15
Function evaluations: 148
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 109032673.5768893
Iteration: 2, Func. Count: 22, Neg. LLF: 267264561.63964638
Iteration: 3, Func. Count: 34, Neg. LLF: 128.40921119511236
Iteration: 4, Func. Count: 45, Neg. LLF: 95.92767364997863
Iteration: 5, Func. Count: 56, Neg. LLF: 91.86133290168482
Iteration: 6, Func. Count: 66, Neg. LLF: 91.53337763843095
Iteration: 7, Func. Count: 76, Neg. LLF: 91.11937566242807
Iteration: 8, Func. Count: 86, Neg. LLF: 92.34663323613603
Iteration: 9, Func. Count: 99, Neg. LLF: 90.80382006629142
Iteration: 10, Func. Count: 110, Neg. LLF: 90.52577548561733
Iteration: 11, Func. Count: 120, Neg. LLF: 91.541676773989
Iteration: 12, Func. Count: 131, Neg. LLF: 90.50294122254945
Iteration: 13, Func. Count: 141, Neg. LLF: 90.50164264478249
Iteration: 14, Func. Count: 151, Neg. LLF: 90.50000835256786
Iteration: 15, Func. Count: 161, Neg. LLF: 90.50000667153307
Iteration: 16, Func. Count: 170, Neg. LLF: 90.5000066715195
Optimization terminated successfully (Exit mode 0)
Current function value: 90.50000667153307
Iterations: 16
Function evaluations: 170
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 61634805.13249365
Iteration: 2, Func. Count: 24, Neg. LLF: 170227924.1257695
Iteration: 3, Func. Count: 37, Neg. LLF: 886.2248016740348
Iteration: 4, Func. Count: 49, Neg. LLF: 91.19426802642081
Iteration: 5, Func. Count: 60, Neg. LLF: 91.12165578685897
Iteration: 6, Func. Count: 71, Neg. LLF: 129.27799580666783
Iteration: 7, Func. Count: 83, Neg. LLF: 93.22281167007645
Iteration: 8, Func. Count: 95, Neg. LLF: 91.09928216287845
Iteration: 9, Func. Count: 107, Neg. LLF: 90.5273238745455
Iteration: 10, Func. Count: 118, Neg. LLF: 90.50271306991661
Iteration: 11, Func. Count: 129, Neg. LLF: 90.50244987788483
Iteration: 12, Func. Count: 141, Neg. LLF: 90.50002200733921
Iteration: 13, Func. Count: 152, Neg. LLF: 90.50000835664738
Iteration: 14, Func. Count: 163, Neg. LLF: 90.50000664193173
Iteration: 15, Func. Count: 173, Neg. LLF: 90.50000664848127
Optimization terminated successfully (Exit mode 0)
Current function value: 90.50000664193173
Iterations: 15
Function evaluations: 173
Gradient evaluations: 15
Iteration: 1, Func. Count: 9, Neg. LLF: 116.44033196098916
Iteration: 2, Func. Count: 19, Neg. LLF: 112.57249619919283
Iteration: 3, Func. Count: 28, Neg. LLF: 419.2647493533894
Iteration: 4, Func. Count: 37, Neg. LLF: 106.95214906473375
Iteration: 5, Func. Count: 46, Neg. LLF: 95.28175708600753
Iteration: 6, Func. Count: 55, Neg. LLF: 94.85050794042155
Iteration: 7, Func. Count: 64, Neg. LLF: 93.98553294091127
Iteration: 8, Func. Count: 72, Neg. LLF: 94.24145547347207
Iteration: 9, Func. Count: 81, Neg. LLF: 93.96815163757391
Iteration: 10, Func. Count: 90, Neg. LLF: 93.941491908228
Iteration: 11, Func. Count: 98, Neg. LLF: 93.94137177211299
Iteration: 12, Func. Count: 106, Neg. LLF: 93.94135564010297
Iteration: 13, Func. Count: 114, Neg. LLF: 93.94135279668501
Iteration: 14, Func. Count: 121, Neg. LLF: 93.94135279667181
Optimization terminated successfully (Exit mode 0)
Current function value: 93.94135279668501
Iterations: 14
Function evaluations: 121
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 88603279.15781064
Iteration: 2, Func. Count: 21, Neg. LLF: 311.7838836305852
Iteration: 3, Func. Count: 31, Neg. LLF: 96.24829586904926
Iteration: 4, Func. Count: 41, Neg. LLF: 95.22199244431218
Iteration: 5, Func. Count: 51, Neg. LLF: 99.26615702822147
Iteration: 6, Func. Count: 61, Neg. LLF: 94.39480040892553
Iteration: 7, Func. Count: 71, Neg. LLF: 93.75312410164747
Iteration: 8, Func. Count: 81, Neg. LLF: 93.2505375992225
Iteration: 9, Func. Count: 91, Neg. LLF: 93.60220449254182
Iteration: 10, Func. Count: 101, Neg. LLF: 91.66926103568709
Iteration: 11, Func. Count: 110, Neg. LLF: 93.92061371611221
Iteration: 12, Func. Count: 121, Neg. LLF: 329.3085190567212
Iteration: 13, Func. Count: 132, Neg. LLF: 91.49281458660761
Iteration: 14, Func. Count: 141, Neg. LLF: 91.43230797996524
Iteration: 15, Func. Count: 150, Neg. LLF: 95.50740318952482
Iteration: 16, Func. Count: 161, Neg. LLF: 91.60943294100275
Iteration: 17, Func. Count: 172, Neg. LLF: 91.80202873056142
Iteration: 18, Func. Count: 182, Neg. LLF: 91.31467920855485
Iteration: 19, Func. Count: 191, Neg. LLF: 91.3141497015797
Iteration: 20, Func. Count: 200, Neg. LLF: 91.3141223244656
Iteration: 21, Func. Count: 208, Neg. LLF: 91.31412232431416
Optimization terminated successfully (Exit mode 0)
Current function value: 91.3141223244656
Iterations: 22
Function evaluations: 208
Gradient evaluations: 21
Iteration: 1, Func. Count: 11, Neg. LLF: 144814779.15902406
Iteration: 2, Func. Count: 23, Neg. LLF: 96.20204642101154
Iteration: 3, Func. Count: 34, Neg. LLF: 197.36674929061402
Iteration: 4, Func. Count: 45, Neg. LLF: 91.89565860819351
Iteration: 5, Func. Count: 55, Neg. LLF: 91.71649876067494
Iteration: 6, Func. Count: 66, Neg. LLF: 93.3152647060965
Iteration: 7, Func. Count: 80, Neg. LLF: 90.64988087856268
Iteration: 8, Func. Count: 91, Neg. LLF: 89.74838834263132
Iteration: 9, Func. Count: 101, Neg. LLF: 89.70985448990783
Iteration: 10, Func. Count: 111, Neg. LLF: 89.66198882968031
Iteration: 11, Func. Count: 121, Neg. LLF: 89.65390328566811
Iteration: 12, Func. Count: 131, Neg. LLF: 89.65248880321772
Iteration: 13, Func. Count: 141, Neg. LLF: 89.65160808895156
Iteration: 14, Func. Count: 151, Neg. LLF: 89.65117689615026
Iteration: 15, Func. Count: 161, Neg. LLF: 89.65113943014991
Iteration: 16, Func. Count: 171, Neg. LLF: 89.65113721800199
Iteration: 17, Func. Count: 180, Neg. LLF: 89.6511372180035
Optimization terminated successfully (Exit mode 0)
Current function value: 89.65113721800199
Iterations: 17
Function evaluations: 180
Gradient evaluations: 17
Iteration: 1, Func. Count: 12, Neg. LLF: 228989311.0773393
Iteration: 2, Func. Count: 25, Neg. LLF: 2898124.8618369955
Iteration: 3, Func. Count: 39, Neg. LLF: 208.3317345122628
Iteration: 4, Func. Count: 51, Neg. LLF: 100.21901710404444
Iteration: 5, Func. Count: 63, Neg. LLF: 91.82206410916645
Iteration: 6, Func. Count: 75, Neg. LLF: 90.85261260756664
Iteration: 7, Func. Count: 86, Neg. LLF: 90.72045619336286
Iteration: 8, Func. Count: 97, Neg. LLF: 89.76823711475339
Iteration: 9, Func. Count: 108, Neg. LLF: 108.52487128938306
Iteration: 10, Func. Count: 121, Neg. LLF: 90.03393386724045
Iteration: 11, Func. Count: 133, Neg. LLF: 89.65403350532443
Iteration: 12, Func. Count: 144, Neg. LLF: 89.65155293209321
Iteration: 13, Func. Count: 155, Neg. LLF: 89.65124754123282
Iteration: 14, Func. Count: 166, Neg. LLF: 89.65114005343486
Iteration: 15, Func. Count: 177, Neg. LLF: 89.65113732720435
Iteration: 16, Func. Count: 187, Neg. LLF: 89.65113735748089
Optimization terminated successfully (Exit mode 0)
Current function value: 89.65113732720435
Iterations: 16
Function evaluations: 187
Gradient evaluations: 16
Iteration: 1, Func. Count: 13, Neg. LLF: 301178120.9316162
Iteration: 2, Func. Count: 27, Neg. LLF: 92.8047787557201
Iteration: 3, Func. Count: 40, Neg. LLF: 215.11435064547015
Iteration: 4, Func. Count: 53, Neg. LLF: 97.33943680654642
Iteration: 5, Func. Count: 66, Neg. LLF: 89.8607832280981
Iteration: 6, Func. Count: 78, Neg. LLF: 92.33460448245354
Iteration: 7, Func. Count: 92, Neg. LLF: 89.19388410303458
Iteration: 8, Func. Count: 104, Neg. LLF: 89.04198653967845
Iteration: 9, Func. Count: 116, Neg. LLF: 113.25125911668748
Iteration: 10, Func. Count: 131, Neg. LLF: 88.90479821985562
Iteration: 11, Func. Count: 143, Neg. LLF: 88.857941169981
Iteration: 12, Func. Count: 155, Neg. LLF: 88.82445302664333
Iteration: 13, Func. Count: 167, Neg. LLF: 88.82054243655894
Iteration: 14, Func. Count: 179, Neg. LLF: 88.82033261942303
Iteration: 15, Func. Count: 191, Neg. LLF: 88.820097882129
Iteration: 16, Func. Count: 203, Neg. LLF: 88.8200967268866
Iteration: 17, Func. Count: 214, Neg. LLF: 88.82009670510342
Optimization terminated successfully (Exit mode 0)
Current function value: 88.8200967268866
Iterations: 17
Function evaluations: 214
Gradient evaluations: 17
Iteration: 1, Func. Count: 10, Neg. LLF: 115.00941189337016
Iteration: 2, Func. Count: 21, Neg. LLF: 151.34470540518114
Iteration: 3, Func. Count: 31, Neg. LLF: 2953159.361106088
Iteration: 4, Func. Count: 41, Neg. LLF: 550.475137795348
Iteration: 5, Func. Count: 51, Neg. LLF: 94.28507482067722
Iteration: 6, Func. Count: 61, Neg. LLF: 94.11604778731089
Iteration: 7, Func. Count: 71, Neg. LLF: 93.84169228413404
Iteration: 8, Func. Count: 81, Neg. LLF: 93.36269940699653
Iteration: 9, Func. Count: 90, Neg. LLF: 93.7092340105027
Iteration: 10, Func. Count: 100, Neg. LLF: 93.5344055186219
Iteration: 11, Func. Count: 110, Neg. LLF: 93.31398273538883
Iteration: 12, Func. Count: 119, Neg. LLF: 93.31196699119455
Iteration: 13, Func. Count: 128, Neg. LLF: 93.310948322937
Iteration: 14, Func. Count: 137, Neg. LLF: 93.31065836145581
Iteration: 15, Func. Count: 146, Neg. LLF: 93.3106512930297
Iteration: 16, Func. Count: 155, Neg. LLF: 93.31065012072226
Iteration: 17, Func. Count: 163, Neg. LLF: 93.31065004271977
Optimization terminated successfully (Exit mode 0)
Current function value: 93.31065012072226
Iterations: 17
Function evaluations: 163
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 1078965.4488755802
Iteration: 2, Func. Count: 23, Neg. LLF: 181.24081901758598
Iteration: 3, Func. Count: 34, Neg. LLF: 38233361.90147556
Iteration: 4, Func. Count: 46, Neg. LLF: 92.11395234550331
Iteration: 5, Func. Count: 57, Neg. LLF: 91.31577769387405
Iteration: 6, Func. Count: 67, Neg. LLF: 91.46754756447066
Iteration: 7, Func. Count: 78, Neg. LLF: 92.3380104484221
Iteration: 8, Func. Count: 89, Neg. LLF: 91.24341818818124
Iteration: 9, Func. Count: 100, Neg. LLF: 91.15207147993615
Iteration: 10, Func. Count: 110, Neg. LLF: 91.10302824388104
Iteration: 11, Func. Count: 120, Neg. LLF: 91.07670495091028
Iteration: 12, Func. Count: 130, Neg. LLF: 91.15382491958547
Iteration: 13, Func. Count: 141, Neg. LLF: 91.0452367843658
Iteration: 14, Func. Count: 151, Neg. LLF: 91.04458912464506
Iteration: 15, Func. Count: 162, Neg. LLF: 91.04307787612204
Iteration: 16, Func. Count: 172, Neg. LLF: 91.043070256244
Iteration: 17, Func. Count: 181, Neg. LLF: 91.04307025597676
Optimization terminated successfully (Exit mode 0)
Current function value: 91.043070256244
Iterations: 17
Function evaluations: 181
Gradient evaluations: 17
Iteration: 1, Func. Count: 12, Neg. LLF: 143019513.49672315
Iteration: 2, Func. Count: 25, Neg. LLF: 95.61450648465208
Iteration: 3, Func. Count: 37, Neg. LLF: 2297.8474487740646
Iteration: 4, Func. Count: 50, Neg. LLF: 92.46460403663343
Iteration: 5, Func. Count: 62, Neg. LLF: 95.51569953645783
Iteration: 6, Func. Count: 74, Neg. LLF: 91.61252510461951
Iteration: 7, Func. Count: 86, Neg. LLF: 93.14818209344399
Iteration: 8, Func. Count: 98, Neg. LLF: 91.10082322408475
Iteration: 9, Func. Count: 109, Neg. LLF: 91.0578725305504
Iteration: 10, Func. Count: 120, Neg. LLF: 90.99226302809805
Iteration: 11, Func. Count: 131, Neg. LLF: 90.93906480252966
Iteration: 12, Func. Count: 142, Neg. LLF: 90.93623746093314
Iteration: 13, Func. Count: 154, Neg. LLF: 90.91989783960747
Iteration: 14, Func. Count: 165, Neg. LLF: 90.91931249267014
Iteration: 15, Func. Count: 176, Neg. LLF: 90.91913466147598
Iteration: 16, Func. Count: 187, Neg. LLF: 90.91911748949933
Iteration: 17, Func. Count: 198, Neg. LLF: 90.91911669261991
Optimization terminated successfully (Exit mode 0)
Current function value: 90.91911669261991
Iterations: 17
Function evaluations: 198
Gradient evaluations: 17
Iteration: 1, Func. Count: 13, Neg. LLF: 208235639.91355434
Iteration: 2, Func. Count: 27, Neg. LLF: 551560.7502193463
Iteration: 3, Func. Count: 40, Neg. LLF: 98.99882008699042
Iteration: 4, Func. Count: 54, Neg. LLF: 95.36850213226867
Iteration: 5, Func. Count: 67, Neg. LLF: 108.52038873076167
Iteration: 6, Func. Count: 80, Neg. LLF: 91.6869528806845
Iteration: 7, Func. Count: 93, Neg. LLF: 91.07912670296359
Iteration: 8, Func. Count: 105, Neg. LLF: 91.81470698951792
Iteration: 9, Func. Count: 118, Neg. LLF: 90.85713333612404
Iteration: 10, Func. Count: 130, Neg. LLF: 90.82642318483136
Iteration: 11, Func. Count: 143, Neg. LLF: 90.74928475631236
Iteration: 12, Func. Count: 155, Neg. LLF: 90.74448096580849
Iteration: 13, Func. Count: 167, Neg. LLF: 90.7432695850239
Iteration: 14, Func. Count: 179, Neg. LLF: 90.74320997478247
Iteration: 15, Func. Count: 191, Neg. LLF: 90.74320864399847
Iteration: 16, Func. Count: 202, Neg. LLF: 90.74320864406337
Optimization terminated successfully (Exit mode 0)
Current function value: 90.74320864399847
Iterations: 16
Function evaluations: 202
Gradient evaluations: 16
Iteration: 1, Func. Count: 14, Neg. LLF: 174234910.15340915
Iteration: 2, Func. Count: 29, Neg. LLF: 101065379.48398928
Iteration: 3, Func. Count: 44, Neg. LLF: 176.626918978911
Iteration: 4, Func. Count: 58, Neg. LLF: 92.81022022535024
Iteration: 5, Func. Count: 72, Neg. LLF: 91.3479770161811
Iteration: 6, Func. Count: 85, Neg. LLF: 90.49284537006528
Iteration: 7, Func. Count: 98, Neg. LLF: 91.95566466380438
Iteration: 8, Func. Count: 113, Neg. LLF: 89.84036467133772
Iteration: 9, Func. Count: 126, Neg. LLF: 89.25839438264865
Iteration: 10, Func. Count: 139, Neg. LLF: 89.08930527150304
Iteration: 11, Func. Count: 152, Neg. LLF: 91.36363064060005
Iteration: 12, Func. Count: 168, Neg. LLF: 88.96130694083998
Iteration: 13, Func. Count: 181, Neg. LLF: 88.87118359701542
Iteration: 14, Func. Count: 194, Neg. LLF: 88.84399164937233
Iteration: 15, Func. Count: 207, Neg. LLF: 88.8235661085214
Iteration: 16, Func. Count: 220, Neg. LLF: 88.8201369095651
Iteration: 17, Func. Count: 233, Neg. LLF: 88.82009673504204
Iteration: 18, Func. Count: 245, Neg. LLF: 88.8200967133175
Optimization terminated successfully (Exit mode 0)
Current function value: 88.82009673504204
Iterations: 18
Function evaluations: 245
Gradient evaluations: 18
Iteration: 1, Func. Count: 11, Neg. LLF: 117.28205032541177
Iteration: 2, Func. Count: 23, Neg. LLF: 127.22171698886271
Iteration: 3, Func. Count: 35, Neg. LLF: 339.8230248726903
Iteration: 4, Func. Count: 46, Neg. LLF: 306.9817631515977
Iteration: 5, Func. Count: 57, Neg. LLF: 101.39097703205951
Iteration: 6, Func. Count: 68, Neg. LLF: 93.38221522412161
Iteration: 7, Func. Count: 79, Neg. LLF: 93.24602066532063
Iteration: 8, Func. Count: 90, Neg. LLF: 92.76758256528298
Iteration: 9, Func. Count: 100, Neg. LLF: 94.35386194592454
Iteration: 10, Func. Count: 112, Neg. LLF: 92.63814397928611
Iteration: 11, Func. Count: 122, Neg. LLF: 92.61568856228104
Iteration: 12, Func. Count: 132, Neg. LLF: 92.6092638050872
Iteration: 13, Func. Count: 142, Neg. LLF: 92.60741048673064
Iteration: 14, Func. Count: 152, Neg. LLF: 92.60735508202087
Iteration: 15, Func. Count: 162, Neg. LLF: 92.60734450896273
Iteration: 16, Func. Count: 172, Neg. LLF: 92.60734276293232
Iteration: 17, Func. Count: 181, Neg. LLF: 92.60734276292699
Optimization terminated successfully (Exit mode 0)
Current function value: 92.60734276293232
Iterations: 17
Function evaluations: 181
Gradient evaluations: 17
Iteration: 1, Func. Count: 12, Neg. LLF: 1080993.9236532354
Iteration: 2, Func. Count: 25, Neg. LLF: 180.1825657322311
Iteration: 3, Func. Count: 37, Neg. LLF: 38208449.53797036
Iteration: 4, Func. Count: 50, Neg. LLF: 92.1559219793851
Iteration: 5, Func. Count: 62, Neg. LLF: 92.16363291768793
Iteration: 6, Func. Count: 74, Neg. LLF: 96.50556293843375
Iteration: 7, Func. Count: 86, Neg. LLF: 91.79599043754293
Iteration: 8, Func. Count: 98, Neg. LLF: 91.28658724320485
Iteration: 9, Func. Count: 109, Neg. LLF: 91.20502758682285
Iteration: 10, Func. Count: 120, Neg. LLF: 91.17476271813372
Iteration: 11, Func. Count: 131, Neg. LLF: 91.13375174141078
Iteration: 12, Func. Count: 142, Neg. LLF: 102.73765942450304
Iteration: 13, Func. Count: 154, Neg. LLF: 91.1027032974119
Iteration: 14, Func. Count: 165, Neg. LLF: 91.04668746397951
Iteration: 15, Func. Count: 176, Neg. LLF: 91.04712771326098
Iteration: 16, Func. Count: 188, Neg. LLF: 91.04309068352609
Iteration: 17, Func. Count: 199, Neg. LLF: 91.04307195565563
Iteration: 18, Func. Count: 210, Neg. LLF: 91.04307000841499
Iteration: 19, Func. Count: 220, Neg. LLF: 91.04307000842685
Optimization terminated successfully (Exit mode 0)
Current function value: 91.04307000841499
Iterations: 19
Function evaluations: 220
Gradient evaluations: 19
Iteration: 1, Func. Count: 13, Neg. LLF: 143403247.3451056
Iteration: 2, Func. Count: 27, Neg. LLF: 96.14533498086605
Iteration: 3, Func. Count: 40, Neg. LLF: 9304.446615879617
Iteration: 4, Func. Count: 54, Neg. LLF: 92.33370675652108
Iteration: 5, Func. Count: 67, Neg. LLF: 94.57595571124374
Iteration: 6, Func. Count: 80, Neg. LLF: 91.57290927239673
Iteration: 7, Func. Count: 93, Neg. LLF: 92.14601938081222
Iteration: 8, Func. Count: 106, Neg. LLF: 91.0625328607973
Iteration: 9, Func. Count: 118, Neg. LLF: 91.01738861046935
Iteration: 10, Func. Count: 130, Neg. LLF: 90.96458300081805
Iteration: 11, Func. Count: 142, Neg. LLF: 90.92344318121248
Iteration: 12, Func. Count: 154, Neg. LLF: 90.92053003205245
Iteration: 13, Func. Count: 166, Neg. LLF: 90.91913148695345
Iteration: 14, Func. Count: 178, Neg. LLF: 90.91912339824707
Iteration: 15, Func. Count: 190, Neg. LLF: 90.91911912210452
Iteration: 16, Func. Count: 202, Neg. LLF: 90.91911682035112
Iteration: 17, Func. Count: 213, Neg. LLF: 90.91911682043464
Optimization terminated successfully (Exit mode 0)
Current function value: 90.91911682035112
Iterations: 17
Function evaluations: 213
Gradient evaluations: 17
Iteration: 1, Func. Count: 14, Neg. LLF: 214357624.8455552
Iteration: 2, Func. Count: 29, Neg. LLF: 2595071.331072234
Iteration: 3, Func. Count: 43, Neg. LLF: 99.01294673146394
Iteration: 4, Func. Count: 58, Neg. LLF: 94.42692345944513
Iteration: 5, Func. Count: 72, Neg. LLF: 106.07841654345425
Iteration: 6, Func. Count: 86, Neg. LLF: 91.45878240253266
Iteration: 7, Func. Count: 99, Neg. LLF: 91.60315265606918
Iteration: 8, Func. Count: 113, Neg. LLF: 98.31090111576982
Iteration: 9, Func. Count: 128, Neg. LLF: 91.54623587268831
Iteration: 10, Func. Count: 142, Neg. LLF: 90.81015173144652
Iteration: 11, Func. Count: 155, Neg. LLF: 90.71033695732265
Iteration: 12, Func. Count: 168, Neg. LLF: 90.53342024913358
Iteration: 13, Func. Count: 181, Neg. LLF: 89.93583849410355
Iteration: 14, Func. Count: 194, Neg. LLF: 90.49242114189123
Iteration: 15, Func. Count: 210, Neg. LLF: 89.85625551080528
Iteration: 16, Func. Count: 224, Neg. LLF: 89.69346769819884
Iteration: 17, Func. Count: 237, Neg. LLF: 89.68989213398496
Iteration: 18, Func. Count: 251, Neg. LLF: 89.65843878802596
Iteration: 19, Func. Count: 264, Neg. LLF: 89.6538305371421
Iteration: 20, Func. Count: 277, Neg. LLF: 89.6523131993785
Iteration: 21, Func. Count: 290, Neg. LLF: 89.65085736444192
Iteration: 22, Func. Count: 303, Neg. LLF: 89.65082289096675
Iteration: 23, Func. Count: 315, Neg. LLF: 89.65082292548003
Optimization terminated successfully (Exit mode 0)
Current function value: 89.65082289096675
Iterations: 23
Function evaluations: 315
Gradient evaluations: 23
Iteration: 1, Func. Count: 15, Neg. LLF: 280136312.0417298
Iteration: 2, Func. Count: 31, Neg. LLF: 2782410.875752559
Iteration: 3, Func. Count: 46, Neg. LLF: 100.78639975349031
Iteration: 4, Func. Count: 62, Neg. LLF: 94.43032797943324
Iteration: 5, Func. Count: 77, Neg. LLF: 92.99397647704173
Iteration: 6, Func. Count: 92, Neg. LLF: 91.12098438562728
Iteration: 7, Func. Count: 106, Neg. LLF: 91.01599233080636
Iteration: 8, Func. Count: 121, Neg. LLF: 93.57383926657391
Iteration: 9, Func. Count: 137, Neg. LLF: 99.2841315809513
Iteration: 10, Func. Count: 152, Neg. LLF: 90.00984032927225
Iteration: 11, Func. Count: 166, Neg. LLF: 90.56614194494027
Iteration: 12, Func. Count: 181, Neg. LLF: 89.49146761357683
Iteration: 13, Func. Count: 195, Neg. LLF: 90.89099319938552
Iteration: 14, Func. Count: 210, Neg. LLF: 91.75537015499485
Iteration: 15, Func. Count: 225, Neg. LLF: 89.23306980948394
Iteration: 16, Func. Count: 240, Neg. LLF: 89.19318457570053
Iteration: 17, Func. Count: 255, Neg. LLF: 88.63462778541984
Iteration: 18, Func. Count: 269, Neg. LLF: 88.51102267289697
Iteration: 19, Func. Count: 283, Neg. LLF: 88.41146338891339
Iteration: 20, Func. Count: 297, Neg. LLF: 88.34516089038637
Iteration: 21, Func. Count: 311, Neg. LLF: 88.28942370821454
Iteration: 22, Func. Count: 325, Neg. LLF: 88.28780863424757
Iteration: 23, Func. Count: 339, Neg. LLF: 88.2872896653451
Iteration: 24, Func. Count: 353, Neg. LLF: 88.28725601800012
Iteration: 25, Func. Count: 367, Neg. LLF: 88.30039359130805
Iteration: 26, Func. Count: 383, Neg. LLF: 88.28744218442156
Optimization terminated successfully (Exit mode 0)
Current function value: 88.28725362317226
Iterations: 27
Function evaluations: 385
Gradient evaluations: 26
Iteration: 1, Func. Count: 8, Neg. LLF: 115.5781731730652
Iteration: 2, Func. Count: 17, Neg. LLF: 115.12910996679499
Iteration: 3, Func. Count: 26, Neg. LLF: 4244.070081268629
Iteration: 4, Func. Count: 34, Neg. LLF: 124.21651851618829
Iteration: 5, Func. Count: 42, Neg. LLF: 168.87439522468463
Iteration: 6, Func. Count: 50, Neg. LLF: 125.69231145651081
Iteration: 7, Func. Count: 58, Neg. LLF: 93.02080638462867
Iteration: 8, Func. Count: 66, Neg. LLF: 93.39463448811276
Iteration: 9, Func. Count: 74, Neg. LLF: 92.80466891915384
Iteration: 10, Func. Count: 82, Neg. LLF: 92.17275829696646
Iteration: 11, Func. Count: 89, Neg. LLF: 92.16975049773814
Iteration: 12, Func. Count: 96, Neg. LLF: 92.16968551860701
Iteration: 13, Func. Count: 103, Neg. LLF: 92.16966653536034
Iteration: 14, Func. Count: 109, Neg. LLF: 92.16966653533648
Optimization terminated successfully (Exit mode 0)
Current function value: 92.16966653536034
Iterations: 14
Function evaluations: 109
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 193547281.98160642
Iteration: 2, Func. Count: 19, Neg. LLF: 166.882413668256
Iteration: 3, Func. Count: 30, Neg. LLF: 108.97128529787459
Iteration: 4, Func. Count: 40, Neg. LLF: 91.67822662730316
Iteration: 5, Func. Count: 48, Neg. LLF: 91.63339476924861
Iteration: 6, Func. Count: 57, Neg. LLF: 91.6044352289356
Iteration: 7, Func. Count: 66, Neg. LLF: 91.32200968455867
Iteration: 8, Func. Count: 74, Neg. LLF: 91.32003310517443
Iteration: 9, Func. Count: 82, Neg. LLF: 91.31987803692756
Iteration: 10, Func. Count: 90, Neg. LLF: 91.31984194447863
Iteration: 11, Func. Count: 98, Neg. LLF: 91.31984103256856
Optimization terminated successfully (Exit mode 0)
Current function value: 91.31984103256856
Iterations: 11
Function evaluations: 98
Gradient evaluations: 11
Iteration: 1, Func. Count: 10, Neg. LLF: 132859214.74989697
Iteration: 2, Func. Count: 21, Neg. LLF: 250642320.46627322
Iteration: 3, Func. Count: 33, Neg. LLF: 110.93465714194157
Iteration: 4, Func. Count: 43, Neg. LLF: 91.15160293697546
Iteration: 5, Func. Count: 52, Neg. LLF: 91.90547420557445
Iteration: 6, Func. Count: 64, Neg. LLF: 93.17035044518825
Iteration: 7, Func. Count: 75, Neg. LLF: 91.09718080672592
Iteration: 8, Func. Count: 85, Neg. LLF: 90.51901162478744
Iteration: 9, Func. Count: 94, Neg. LLF: 90.44159015300217
Iteration: 10, Func. Count: 103, Neg. LLF: 90.42214218098874
Iteration: 11, Func. Count: 112, Neg. LLF: 90.4170970036335
Iteration: 12, Func. Count: 121, Neg. LLF: 90.41696463921366
Iteration: 13, Func. Count: 130, Neg. LLF: 90.41675857826318
Iteration: 14, Func. Count: 139, Neg. LLF: 90.41675658622556
Iteration: 15, Func. Count: 147, Neg. LLF: 90.41675658616981
Optimization terminated successfully (Exit mode 0)
Current function value: 90.41675658622556
Iterations: 15
Function evaluations: 147
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 66463694.69839132
Iteration: 2, Func. Count: 22, Neg. LLF: 140921433.9560636
Iteration: 3, Func. Count: 34, Neg. LLF: 1966.7533284225535
Iteration: 4, Func. Count: 45, Neg. LLF: 110.68215403878501
Iteration: 5, Func. Count: 56, Neg. LLF: 91.60744002318663
Iteration: 6, Func. Count: 66, Neg. LLF: 93.30978506104952
Iteration: 7, Func. Count: 77, Neg. LLF: 91.79252544093906
Iteration: 8, Func. Count: 88, Neg. LLF: 91.04036555496846
Iteration: 9, Func. Count: 98, Neg. LLF: 188.3019065302691
Iteration: 10, Func. Count: 109, Neg. LLF: 93.74365151450816
Iteration: 11, Func. Count: 120, Neg. LLF: 90.55802755627084
Iteration: 12, Func. Count: 130, Neg. LLF: 90.44929723778247
Iteration: 13, Func. Count: 140, Neg. LLF: 90.53858384808589
Iteration: 14, Func. Count: 151, Neg. LLF: 90.41122907950916
Iteration: 15, Func. Count: 161, Neg. LLF: 90.40115180569475
Iteration: 16, Func. Count: 171, Neg. LLF: 90.4009753131795
Iteration: 17, Func. Count: 181, Neg. LLF: 90.40096435540332
Iteration: 18, Func. Count: 190, Neg. LLF: 90.40096435556148
Optimization terminated successfully (Exit mode 0)
Current function value: 90.40096435540332
Iterations: 18
Function evaluations: 190
Gradient evaluations: 18
Iteration: 1, Func. Count: 12, Neg. LLF: 58235379.49962683
Iteration: 2, Func. Count: 24, Neg. LLF: 169753192.6679923
Iteration: 3, Func. Count: 37, Neg. LLF: 153.87797924615677
Iteration: 4, Func. Count: 49, Neg. LLF: 103.85429356581677
Iteration: 5, Func. Count: 61, Neg. LLF: 91.21052810363898
Iteration: 6, Func. Count: 72, Neg. LLF: 91.44120912041257
Iteration: 7, Func. Count: 85, Neg. LLF: 91.7040796408319
Iteration: 8, Func. Count: 97, Neg. LLF: 90.78702283038486
Iteration: 9, Func. Count: 109, Neg. LLF: 90.65691583861407
Iteration: 10, Func. Count: 120, Neg. LLF: 90.5901103773805
Iteration: 11, Func. Count: 131, Neg. LLF: 90.57560007017314
Iteration: 12, Func. Count: 142, Neg. LLF: 90.57348129175462
Iteration: 13, Func. Count: 153, Neg. LLF: 90.57492715393073
Iteration: 14, Func. Count: 165, Neg. LLF: 90.57870091528221
Iteration: 15, Func. Count: 177, Neg. LLF: 90.56792722019222
Iteration: 16, Func. Count: 188, Neg. LLF: 90.56712641885886
Iteration: 17, Func. Count: 199, Neg. LLF: 90.5670989739886
Iteration: 18, Func. Count: 210, Neg. LLF: 90.56709549736563
Iteration: 19, Func. Count: 220, Neg. LLF: 90.56709549732035
Optimization terminated successfully (Exit mode 0)
Current function value: 90.56709549736563
Iterations: 19
Function evaluations: 220
Gradient evaluations: 19
Iteration: 1, Func. Count: 9, Neg. LLF: 116.43465146609394
Iteration: 2, Func. Count: 19, Neg. LLF: 114.55466675679087
Iteration: 3, Func. Count: 29, Neg. LLF: 2572.2331907877187
Iteration: 4, Func. Count: 38, Neg. LLF: 123.76043286199364
Iteration: 5, Func. Count: 47, Neg. LLF: 167.17182268175316
Iteration: 6, Func. Count: 56, Neg. LLF: 119.56202160438059
Iteration: 7, Func. Count: 65, Neg. LLF: 98.87448830788807
Iteration: 8, Func. Count: 74, Neg. LLF: 98.54383617507456
Iteration: 9, Func. Count: 83, Neg. LLF: 92.12248369862014
Iteration: 10, Func. Count: 91, Neg. LLF: 92.08125163617248
Iteration: 11, Func. Count: 99, Neg. LLF: 92.07475026798757
Iteration: 12, Func. Count: 107, Neg. LLF: 92.06967911169721
Iteration: 13, Func. Count: 115, Neg. LLF: 92.06945729398038
Iteration: 14, Func. Count: 123, Neg. LLF: 92.0694357689933
Iteration: 15, Func. Count: 131, Neg. LLF: 92.06942934390642
Iteration: 16, Func. Count: 139, Neg. LLF: 92.06942882373681
Optimization terminated successfully (Exit mode 0)
Current function value: 92.06942882373681
Iterations: 16
Function evaluations: 139
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 89580885.80292363
Iteration: 2, Func. Count: 21, Neg. LLF: 342.7483979209051
Iteration: 3, Func. Count: 31, Neg. LLF: 138.20775971879496
Iteration: 4, Func. Count: 41, Neg. LLF: 139.142220444664
Iteration: 5, Func. Count: 52, Neg. LLF: 92.95615047224103
Iteration: 6, Func. Count: 62, Neg. LLF: 92.00563804341951
Iteration: 7, Func. Count: 71, Neg. LLF: 92.72907581915418
Iteration: 8, Func. Count: 81, Neg. LLF: 92.06805443848219
Iteration: 9, Func. Count: 91, Neg. LLF: 91.88879237354692
Iteration: 10, Func. Count: 100, Neg. LLF: 91.88753045368917
Iteration: 11, Func. Count: 109, Neg. LLF: 91.88748609697555
Iteration: 12, Func. Count: 118, Neg. LLF: 91.88747655273373
Iteration: 13, Func. Count: 127, Neg. LLF: 91.88747529349618
Iteration: 14, Func. Count: 135, Neg. LLF: 91.88747529346375
Optimization terminated successfully (Exit mode 0)
Current function value: 91.88747529349618
Iterations: 14
Function evaluations: 135
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 148732463.62529814
Iteration: 2, Func. Count: 23, Neg. LLF: 194849315.21305302
Iteration: 3, Func. Count: 36, Neg. LLF: 110.24458593224605
Iteration: 4, Func. Count: 47, Neg. LLF: 91.19658195191447
Iteration: 5, Func. Count: 57, Neg. LLF: 92.05941334023
Iteration: 6, Func. Count: 70, Neg. LLF: 96.94116451718287
Iteration: 7, Func. Count: 82, Neg. LLF: 91.02470084649809
Iteration: 8, Func. Count: 93, Neg. LLF: 90.55365214836712
Iteration: 9, Func. Count: 103, Neg. LLF: 90.4431300047311
Iteration: 10, Func. Count: 113, Neg. LLF: 90.42079778864564
Iteration: 11, Func. Count: 123, Neg. LLF: 90.41734153464982
Iteration: 12, Func. Count: 133, Neg. LLF: 90.41741452199868
Iteration: 13, Func. Count: 144, Neg. LLF: 90.4167649121595
Iteration: 14, Func. Count: 154, Neg. LLF: 90.41675656812899
Iteration: 15, Func. Count: 163, Neg. LLF: 90.41675656815555
Optimization terminated successfully (Exit mode 0)
Current function value: 90.41675656812899
Iterations: 15
Function evaluations: 163
Gradient evaluations: 15
Iteration: 1, Func. Count: 12, Neg. LLF: 74648179.09348288
Iteration: 2, Func. Count: 24, Neg. LLF: 114365773.77859847
Iteration: 3, Func. Count: 37, Neg. LLF: 1456.486651155672
Iteration: 4, Func. Count: 49, Neg. LLF: 110.97079358042983
Iteration: 5, Func. Count: 61, Neg. LLF: 92.18498372052571
Iteration: 6, Func. Count: 73, Neg. LLF: 91.09296513103016
Iteration: 7, Func. Count: 84, Neg. LLF: 91.62486444184057
Iteration: 8, Func. Count: 98, Neg. LLF: 92.19066554625562
Iteration: 9, Func. Count: 110, Neg. LLF: 97.64013180050405
Iteration: 10, Func. Count: 122, Neg. LLF: 90.5799525270296
Iteration: 11, Func. Count: 133, Neg. LLF: 90.50626318435144
Iteration: 12, Func. Count: 144, Neg. LLF: 90.54284023613803
Iteration: 13, Func. Count: 156, Neg. LLF: 90.41733194813295
Iteration: 14, Func. Count: 167, Neg. LLF: 90.40604940344458
Iteration: 15, Func. Count: 178, Neg. LLF: 90.40206531252525
Iteration: 16, Func. Count: 189, Neg. LLF: 90.40101052156281
Iteration: 17, Func. Count: 200, Neg. LLF: 90.40096643015295
Iteration: 18, Func. Count: 211, Neg. LLF: 90.40096422796033
Iteration: 19, Func. Count: 221, Neg. LLF: 90.40096422812096
Optimization terminated successfully (Exit mode 0)
Current function value: 90.40096422796033
Iterations: 19
Function evaluations: 221
Gradient evaluations: 19
Iteration: 1, Func. Count: 13, Neg. LLF: 97784013.03550695
Iteration: 2, Func. Count: 26, Neg. LLF: 70926088.65980135
Iteration: 3, Func. Count: 40, Neg. LLF: 367.8492236181694
Iteration: 4, Func. Count: 53, Neg. LLF: 94.10916749672643
Iteration: 5, Func. Count: 66, Neg. LLF: 96.49552479669195
Iteration: 6, Func. Count: 79, Neg. LLF: 90.95976750460703
Iteration: 7, Func. Count: 91, Neg. LLF: 92.02188071635564
Iteration: 8, Func. Count: 105, Neg. LLF: 90.363896482622
Iteration: 9, Func. Count: 117, Neg. LLF: 90.64070784661418
Iteration: 10, Func. Count: 130, Neg. LLF: 90.15767244597059
Iteration: 11, Func. Count: 142, Neg. LLF: 90.147991095636
Iteration: 12, Func. Count: 154, Neg. LLF: 90.14780948415302
Iteration: 13, Func. Count: 166, Neg. LLF: 90.14776638233299
Iteration: 14, Func. Count: 178, Neg. LLF: 90.14774432418812
Iteration: 15, Func. Count: 189, Neg. LLF: 90.14774432415304
Optimization terminated successfully (Exit mode 0)
Current function value: 90.14774432418812
Iterations: 15
Function evaluations: 189
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 131.35798100526367
Iteration: 2, Func. Count: 21, Neg. LLF: 97.29741806096945
Iteration: 3, Func. Count: 31, Neg. LLF: 18640442.31276174
Iteration: 4, Func. Count: 41, Neg. LLF: 202.8260744565812
Iteration: 5, Func. Count: 51, Neg. LLF: 202.9352968862503
Iteration: 6, Func. Count: 61, Neg. LLF: 104.51291629819853
Iteration: 7, Func. Count: 71, Neg. LLF: 93.92241493368428
Iteration: 8, Func. Count: 81, Neg. LLF: 90.7233737021999
Iteration: 9, Func. Count: 90, Neg. LLF: 91.48740466561036
Iteration: 10, Func. Count: 100, Neg. LLF: 90.64434546804566
Iteration: 11, Func. Count: 110, Neg. LLF: 90.47617236236246
Iteration: 12, Func. Count: 119, Neg. LLF: 90.465810783856
Iteration: 13, Func. Count: 128, Neg. LLF: 90.46498713456867
Iteration: 14, Func. Count: 137, Neg. LLF: 90.46491295355268
Iteration: 15, Func. Count: 146, Neg. LLF: 90.46490876356285
Iteration: 16, Func. Count: 155, Neg. LLF: 90.4649080172346
Optimization terminated successfully (Exit mode 0)
Current function value: 90.4649080172346
Iterations: 16
Function evaluations: 155
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 122369104.13505371
Iteration: 2, Func. Count: 23, Neg. LLF: 461.62267916637313
Iteration: 3, Func. Count: 34, Neg. LLF: 121.93767775367996
Iteration: 4, Func. Count: 45, Neg. LLF: 126.30120312905164
Iteration: 5, Func. Count: 57, Neg. LLF: 92.99018023679453
Iteration: 6, Func. Count: 68, Neg. LLF: 92.02095904913527
Iteration: 7, Func. Count: 79, Neg. LLF: 90.93960746764904
Iteration: 8, Func. Count: 89, Neg. LLF: 95.18741729335535
Iteration: 9, Func. Count: 100, Neg. LLF: 90.59050522067142
Iteration: 10, Func. Count: 110, Neg. LLF: 90.4801132167886
Iteration: 11, Func. Count: 120, Neg. LLF: 90.46890486222068
Iteration: 12, Func. Count: 130, Neg. LLF: 90.4665210091043
Iteration: 13, Func. Count: 140, Neg. LLF: 90.46544720643037
Iteration: 14, Func. Count: 150, Neg. LLF: 90.46512400797495
Iteration: 15, Func. Count: 160, Neg. LLF: 90.46506325324478
Iteration: 16, Func. Count: 170, Neg. LLF: 90.46500619764478
Iteration: 17, Func. Count: 180, Neg. LLF: 90.46494365244837
Iteration: 18, Func. Count: 190, Neg. LLF: 90.46491351434521
Iteration: 19, Func. Count: 200, Neg. LLF: 90.46490830063901
Iteration: 20, Func. Count: 209, Neg. LLF: 90.4649083866524
Optimization terminated successfully (Exit mode 0)
Current function value: 90.46490830063901
Iterations: 20
Function evaluations: 209
Gradient evaluations: 20
Iteration: 1, Func. Count: 12, Neg. LLF: 210009243.29302046
Iteration: 2, Func. Count: 25, Neg. LLF: 2606749.1735500903
Iteration: 3, Func. Count: 38, Neg. LLF: 127.03890833024636
Iteration: 4, Func. Count: 50, Neg. LLF: 91.47459848868591
Iteration: 5, Func. Count: 61, Neg. LLF: 91.15067932214758
Iteration: 6, Func. Count: 72, Neg. LLF: 95.21867404902227
Iteration: 7, Func. Count: 84, Neg. LLF: 90.31493003637401
Iteration: 8, Func. Count: 95, Neg. LLF: 90.09416771347249
Iteration: 9, Func. Count: 106, Neg. LLF: 90.82463858655856
Iteration: 10, Func. Count: 119, Neg. LLF: 89.74552098145128
Iteration: 11, Func. Count: 130, Neg. LLF: 89.711753561045
Iteration: 12, Func. Count: 141, Neg. LLF: 89.83203052584166
Iteration: 13, Func. Count: 153, Neg. LLF: 89.68774012003955
Iteration: 14, Func. Count: 164, Neg. LLF: 89.66461477949375
Iteration: 15, Func. Count: 175, Neg. LLF: 89.65476420887141
Iteration: 16, Func. Count: 186, Neg. LLF: 89.6520250628371
Iteration: 17, Func. Count: 197, Neg. LLF: 89.65132017168659
Iteration: 18, Func. Count: 208, Neg. LLF: 89.65116989617161
Iteration: 19, Func. Count: 219, Neg. LLF: 89.6511374444315
Iteration: 20, Func. Count: 229, Neg. LLF: 89.65113744460555
Optimization terminated successfully (Exit mode 0)
Current function value: 89.6511374444315
Iterations: 20
Function evaluations: 229
Gradient evaluations: 20
Iteration: 1, Func. Count: 13, Neg. LLF: 241511398.85803592
Iteration: 2, Func. Count: 27, Neg. LLF: 773.5413147340282
Iteration: 3, Func. Count: 40, Neg. LLF: 159.5083947023293
Iteration: 4, Func. Count: 53, Neg. LLF: 94.65019678867925
Iteration: 5, Func. Count: 66, Neg. LLF: 91.33352760477882
Iteration: 6, Func. Count: 78, Neg. LLF: 128.40440027441667
Iteration: 7, Func. Count: 91, Neg. LLF: 92.5908256101163
Iteration: 8, Func. Count: 104, Neg. LLF: 97.83862947434095
Iteration: 9, Func. Count: 118, Neg. LLF: 90.27348532542553
Iteration: 10, Func. Count: 130, Neg. LLF: 90.11850546299502
Iteration: 11, Func. Count: 142, Neg. LLF: 89.95391790762501
Iteration: 12, Func. Count: 154, Neg. LLF: 89.95100131107299
Iteration: 13, Func. Count: 167, Neg. LLF: 89.94250377123946
Iteration: 14, Func. Count: 179, Neg. LLF: 89.94240589154559
Iteration: 15, Func. Count: 191, Neg. LLF: 89.94229311842768
Iteration: 16, Func. Count: 203, Neg. LLF: 89.94227453508782
Iteration: 17, Func. Count: 215, Neg. LLF: 89.942260334846
Iteration: 18, Func. Count: 227, Neg. LLF: 89.94225798732063
Iteration: 19, Func. Count: 238, Neg. LLF: 89.94225806139957
Optimization terminated successfully (Exit mode 0)
Current function value: 89.94225798732063
Iterations: 19
Function evaluations: 238
Gradient evaluations: 19
Iteration: 1, Func. Count: 14, Neg. LLF: 225301865.9725116
Iteration: 2, Func. Count: 29, Neg. LLF: 6618631.638385167
Iteration: 3, Func. Count: 43, Neg. LLF: 279.1778703651445
Iteration: 4, Func. Count: 57, Neg. LLF: 95.65858054392348
Iteration: 5, Func. Count: 71, Neg. LLF: 90.17210956620093
Iteration: 6, Func. Count: 84, Neg. LLF: 91.35667391405369
Iteration: 7, Func. Count: 98, Neg. LLF: 88.61808826781366
Iteration: 8, Func. Count: 111, Neg. LLF: 102.47089330313284
Iteration: 9, Func. Count: 126, Neg. LLF: 88.20354727533307
Iteration: 10, Func. Count: 139, Neg. LLF: 88.05739691512117
Iteration: 11, Func. Count: 152, Neg. LLF: 88.0269430175476
Iteration: 12, Func. Count: 165, Neg. LLF: 88.02213674073775
Iteration: 13, Func. Count: 178, Neg. LLF: 88.02172650795985
Iteration: 14, Func. Count: 191, Neg. LLF: 88.02161280476383
Iteration: 15, Func. Count: 203, Neg. LLF: 88.02161278150476
Optimization terminated successfully (Exit mode 0)
Current function value: 88.02161280476383
Iterations: 15
Function evaluations: 203
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 122.2998909694882
Iteration: 2, Func. Count: 23, Neg. LLF: 131.99468146205035
Iteration: 3, Func. Count: 34, Neg. LLF: 3116.86721173577
Iteration: 4, Func. Count: 45, Neg. LLF: 192.2910901793258
Iteration: 5, Func. Count: 56, Neg. LLF: 89482.7325976078
Iteration: 6, Func. Count: 67, Neg. LLF: 98.41391454394751
Iteration: 7, Func. Count: 78, Neg. LLF: 91.27167502664207
Iteration: 8, Func. Count: 88, Neg. LLF: 125.89087884008698
Iteration: 9, Func. Count: 99, Neg. LLF: 93.93262492637483
Iteration: 10, Func. Count: 110, Neg. LLF: 90.77335845728003
Iteration: 11, Func. Count: 121, Neg. LLF: 90.59128552476122
Iteration: 12, Func. Count: 131, Neg. LLF: 112.18088083845875
Iteration: 13, Func. Count: 143, Neg. LLF: 90.5213527809354
Iteration: 14, Func. Count: 153, Neg. LLF: 90.49381282209703
Iteration: 15, Func. Count: 163, Neg. LLF: 90.48406182723413
Iteration: 16, Func. Count: 173, Neg. LLF: 90.47089185372174
Iteration: 17, Func. Count: 183, Neg. LLF: 90.4664099413059
Iteration: 18, Func. Count: 193, Neg. LLF: 90.46540661620324
Iteration: 19, Func. Count: 203, Neg. LLF: 90.46506898685904
Iteration: 20, Func. Count: 213, Neg. LLF: 90.46495201225366
Iteration: 21, Func. Count: 223, Neg. LLF: 90.46491637513968
Iteration: 22, Func. Count: 233, Neg. LLF: 90.4649087825373
Iteration: 23, Func. Count: 243, Neg. LLF: 90.46490804014428
Optimization terminated successfully (Exit mode 0)
Current function value: 90.46490804014428
Iterations: 23
Function evaluations: 243
Gradient evaluations: 23
Iteration: 1, Func. Count: 12, Neg. LLF: 87690265.33331421
Iteration: 2, Func. Count: 25, Neg. LLF: 183.57971597823348
Iteration: 3, Func. Count: 37, Neg. LLF: 39204487.09916792
Iteration: 4, Func. Count: 50, Neg. LLF: 96.61255756186864
Iteration: 5, Func. Count: 62, Neg. LLF: 92.33672205534361
Iteration: 6, Func. Count: 74, Neg. LLF: 92.53325874388531
Iteration: 7, Func. Count: 86, Neg. LLF: 91.50209323281469
Iteration: 8, Func. Count: 98, Neg. LLF: 109.69793268883348
Iteration: 9, Func. Count: 110, Neg. LLF: 91.05628158302133
Iteration: 10, Func. Count: 121, Neg. LLF: 92.25622327391541
Iteration: 11, Func. Count: 133, Neg. LLF: 90.89907116553452
Iteration: 12, Func. Count: 144, Neg. LLF: 90.70326860811659
Iteration: 13, Func. Count: 155, Neg. LLF: 90.6190363864536
Iteration: 14, Func. Count: 166, Neg. LLF: 90.58298105941421
Iteration: 15, Func. Count: 177, Neg. LLF: 90.57226615401235
Iteration: 16, Func. Count: 188, Neg. LLF: 90.55251773983218
Iteration: 17, Func. Count: 199, Neg. LLF: 90.53587949099567
Iteration: 18, Func. Count: 210, Neg. LLF: 90.52040420034186
Iteration: 19, Func. Count: 221, Neg. LLF: 90.4999188546196
Iteration: 20, Func. Count: 232, Neg. LLF: 90.46805573859163
Iteration: 21, Func. Count: 243, Neg. LLF: 90.46529620297544
Iteration: 22, Func. Count: 254, Neg. LLF: 90.46508555859624
Iteration: 23, Func. Count: 265, Neg. LLF: 90.46495528047623
Iteration: 24, Func. Count: 276, Neg. LLF: 90.46492876415523
Iteration: 25, Func. Count: 287, Neg. LLF: 90.46490877817826
Iteration: 26, Func. Count: 298, Neg. LLF: 90.46490811251306
Optimization terminated successfully (Exit mode 0)
Current function value: 90.46490811251306
Iterations: 26
Function evaluations: 298
Gradient evaluations: 26
Iteration: 1, Func. Count: 13, Neg. LLF: 146065321.76478344
Iteration: 2, Func. Count: 27, Neg. LLF: 2324193.513200982
Iteration: 3, Func. Count: 41, Neg. LLF: 116.2257884876446
Iteration: 4, Func. Count: 54, Neg. LLF: 97.8401703377897
Iteration: 5, Func. Count: 67, Neg. LLF: 92.94334330031118
Iteration: 6, Func. Count: 80, Neg. LLF: 91.37873277016556
Iteration: 7, Func. Count: 92, Neg. LLF: 90.43417130851786
Iteration: 8, Func. Count: 104, Neg. LLF: 90.13850877003983
Iteration: 9, Func. Count: 116, Neg. LLF: 90.69423076572619
Iteration: 10, Func. Count: 130, Neg. LLF: 90.10861379749333
Iteration: 11, Func. Count: 142, Neg. LLF: 90.07682752170533
Iteration: 12, Func. Count: 154, Neg. LLF: 90.06735372462396
Iteration: 13, Func. Count: 167, Neg. LLF: 89.94027188170722
Iteration: 14, Func. Count: 179, Neg. LLF: 89.9309442263381
Iteration: 15, Func. Count: 192, Neg. LLF: 89.79401580507331
Iteration: 16, Func. Count: 204, Neg. LLF: 89.80509055176715
Iteration: 17, Func. Count: 217, Neg. LLF: 89.73235687055453
Iteration: 18, Func. Count: 229, Neg. LLF: 89.69676864382167
Iteration: 19, Func. Count: 241, Neg. LLF: 89.66533831724871
Iteration: 20, Func. Count: 253, Neg. LLF: 89.6528095794637
Iteration: 21, Func. Count: 265, Neg. LLF: 89.65088268338411
Iteration: 22, Func. Count: 277, Neg. LLF: 89.65083609664859
Iteration: 23, Func. Count: 289, Neg. LLF: 89.65082285869907
Iteration: 24, Func. Count: 300, Neg. LLF: 89.65082285860768
Optimization terminated successfully (Exit mode 0)
Current function value: 89.65082285869907
Iterations: 24
Function evaluations: 300
Gradient evaluations: 24
Iteration: 1, Func. Count: 14, Neg. LLF: 216749691.86652914
Iteration: 2, Func. Count: 29, Neg. LLF: 3592411.415681875
Iteration: 3, Func. Count: 44, Neg. LLF: 106.12486388037357
Iteration: 4, Func. Count: 58, Neg. LLF: 92.0290803130645
Iteration: 5, Func. Count: 72, Neg. LLF: 91.81773730743438
Iteration: 6, Func. Count: 86, Neg. LLF: 91.16732943903357
Iteration: 7, Func. Count: 100, Neg. LLF: 90.57122945929875
Iteration: 8, Func. Count: 113, Neg. LLF: 89.94121550709194
Iteration: 9, Func. Count: 126, Neg. LLF: 89.9534057479036
Iteration: 10, Func. Count: 140, Neg. LLF: 89.81118388328404
Iteration: 11, Func. Count: 154, Neg. LLF: 89.87615769855354
Iteration: 12, Func. Count: 168, Neg. LLF: 89.70611386425811
Iteration: 13, Func. Count: 181, Neg. LLF: 89.67138832518313
Iteration: 14, Func. Count: 194, Neg. LLF: 89.66040119399767
Iteration: 15, Func. Count: 207, Neg. LLF: 89.653358890281
Iteration: 16, Func. Count: 220, Neg. LLF: 89.6521401585475
Iteration: 17, Func. Count: 233, Neg. LLF: 89.65104016804581
Iteration: 18, Func. Count: 246, Neg. LLF: 89.6508547874164
Iteration: 19, Func. Count: 259, Neg. LLF: 89.6508309236197
Iteration: 20, Func. Count: 272, Neg. LLF: 89.65082239308592
Iteration: 21, Func. Count: 284, Neg. LLF: 89.65082242771994
Optimization terminated successfully (Exit mode 0)
Current function value: 89.65082239308592
Iterations: 21
Function evaluations: 284
Gradient evaluations: 21
Iteration: 1, Func. Count: 15, Neg. LLF: 283296125.5253171
Iteration: 2, Func. Count: 31, Neg. LLF: 2666099.058870046
Iteration: 3, Func. Count: 46, Neg. LLF: 97.8495301195342
Iteration: 4, Func. Count: 62, Neg. LLF: 95.49827653896203
Iteration: 5, Func. Count: 77, Neg. LLF: 90.9076669490513
Iteration: 6, Func. Count: 91, Neg. LLF: 89.95617549887028
Iteration: 7, Func. Count: 105, Neg. LLF: 105.03114907764282
Iteration: 8, Func. Count: 121, Neg. LLF: 91.26755420439156
Iteration: 9, Func. Count: 136, Neg. LLF: 88.48058241738494
Iteration: 10, Func. Count: 150, Neg. LLF: 90.0168309939303
Iteration: 11, Func. Count: 165, Neg. LLF: 88.12433339484924
Iteration: 12, Func. Count: 179, Neg. LLF: 88.07204355003682
Iteration: 13, Func. Count: 193, Neg. LLF: 88.0265722812815
Iteration: 14, Func. Count: 207, Neg. LLF: 88.02274765388869
Iteration: 15, Func. Count: 221, Neg. LLF: 88.02180297525709
Iteration: 16, Func. Count: 235, Neg. LLF: 88.02169900041876
Iteration: 17, Func. Count: 249, Neg. LLF: 88.0216164438813
Iteration: 18, Func. Count: 263, Neg. LLF: 88.02260092657268
Iteration: 19, Func. Count: 279, Neg. LLF: 88.0216328765697
Iteration: 20, Func. Count: 294, Neg. LLF: 88.0216134736171
Iteration: 21, Func. Count: 308, Neg. LLF: 88.02171174556618
Optimization terminated successfully (Exit mode 0)
Current function value: 88.02161333832966
Iterations: 22
Function evaluations: 309
Gradient evaluations: 21
Iteration: 1, Func. Count: 12, Neg. LLF: 126.96405820739383
Iteration: 2, Func. Count: 25, Neg. LLF: 139.55103881434158
Iteration: 3, Func. Count: 37, Neg. LLF: 1325.636363791374
Iteration: 4, Func. Count: 49, Neg. LLF: 397.63100994782405
Iteration: 5, Func. Count: 61, Neg. LLF: 226.8461890320257
Iteration: 6, Func. Count: 73, Neg. LLF: 103.25482382322538
Iteration: 7, Func. Count: 85, Neg. LLF: 104.43598476688473
Iteration: 8, Func. Count: 97, Neg. LLF: 91.0119493704227
Iteration: 9, Func. Count: 108, Neg. LLF: 108.7771817303636
Iteration: 10, Func. Count: 120, Neg. LLF: 97.61749493760938
Iteration: 11, Func. Count: 132, Neg. LLF: 91.42638020671222
Iteration: 12, Func. Count: 144, Neg. LLF: 90.61600413823938
Iteration: 13, Func. Count: 155, Neg. LLF: 90.43711957228518
Iteration: 14, Func. Count: 166, Neg. LLF: 90.38152658896747
Iteration: 15, Func. Count: 177, Neg. LLF: 90.32999892897429
Iteration: 16, Func. Count: 188, Neg. LLF: 90.31552057553156
Iteration: 17, Func. Count: 199, Neg. LLF: 90.31407727665099
Iteration: 18, Func. Count: 210, Neg. LLF: 90.313284537494
Iteration: 19, Func. Count: 221, Neg. LLF: 90.31295689029037
Iteration: 20, Func. Count: 232, Neg. LLF: 90.31266480676639
Iteration: 21, Func. Count: 243, Neg. LLF: 90.31262919460919
Iteration: 22, Func. Count: 254, Neg. LLF: 90.31262627383832
Iteration: 23, Func. Count: 264, Neg. LLF: 90.3126262733285
Optimization terminated successfully (Exit mode 0)
Current function value: 90.31262627383832
Iterations: 23
Function evaluations: 264
Gradient evaluations: 23
Iteration: 1, Func. Count: 13, Neg. LLF: 87837636.71272159
Iteration: 2, Func. Count: 27, Neg. LLF: 122.17782253053697
Iteration: 3, Func. Count: 40, Neg. LLF: 33405870.74661199
Iteration: 4, Func. Count: 54, Neg. LLF: 94.29807372230073
Iteration: 5, Func. Count: 67, Neg. LLF: 94.94841817876461
Iteration: 6, Func. Count: 80, Neg. LLF: 92.72613720195378
Iteration: 7, Func. Count: 93, Neg. LLF: 91.2940091227298
Iteration: 8, Func. Count: 105, Neg. LLF: 95.66430819446971
Iteration: 9, Func. Count: 118, Neg. LLF: 94.84127684776638
Iteration: 10, Func. Count: 131, Neg. LLF: 91.31948435555131
Iteration: 11, Func. Count: 144, Neg. LLF: 90.79986208043107
Iteration: 12, Func. Count: 156, Neg. LLF: 90.71774762648943
Iteration: 13, Func. Count: 168, Neg. LLF: 90.63087318942127
Iteration: 14, Func. Count: 180, Neg. LLF: 90.57534155162696
Iteration: 15, Func. Count: 192, Neg. LLF: 90.54030361227996
Iteration: 16, Func. Count: 204, Neg. LLF: 90.49329000885271
Iteration: 17, Func. Count: 216, Neg. LLF: 90.4740211546446
Iteration: 18, Func. Count: 228, Neg. LLF: 90.42027547828357
Iteration: 19, Func. Count: 240, Neg. LLF: 90.36446373815411
Iteration: 20, Func. Count: 252, Neg. LLF: 90.33229657922061
Iteration: 21, Func. Count: 264, Neg. LLF: 90.32550458617379
Iteration: 22, Func. Count: 276, Neg. LLF: 90.32000827082297
Iteration: 23, Func. Count: 288, Neg. LLF: 90.31363620002989
Iteration: 24, Func. Count: 300, Neg. LLF: 90.31276004222686
Iteration: 25, Func. Count: 312, Neg. LLF: 90.31265865828153
Iteration: 26, Func. Count: 324, Neg. LLF: 90.31264656349632
Iteration: 27, Func. Count: 336, Neg. LLF: 90.31263349889609
Iteration: 28, Func. Count: 348, Neg. LLF: 90.31262673343328
Iteration: 29, Func. Count: 360, Neg. LLF: 90.31262534342082
Iteration: 30, Func. Count: 371, Neg. LLF: 90.3126254432854
Optimization terminated successfully (Exit mode 0)
Current function value: 90.31262534342082
Iterations: 30
Function evaluations: 371
Gradient evaluations: 30
Iteration: 1, Func. Count: 14, Neg. LLF: 146458594.77525225
Iteration: 2, Func. Count: 29, Neg. LLF: 2337021.287029855
Iteration: 3, Func. Count: 44, Neg. LLF: 116.43616526673644
Iteration: 4, Func. Count: 58, Neg. LLF: 102.26942949281978
Iteration: 5, Func. Count: 72, Neg. LLF: 91.96047275633074
Iteration: 6, Func. Count: 86, Neg. LLF: 90.32613426304704
Iteration: 7, Func. Count: 99, Neg. LLF: 90.459945490916
Iteration: 8, Func. Count: 113, Neg. LLF: 91.00513957183634
Iteration: 9, Func. Count: 127, Neg. LLF: 90.88513140241034
Iteration: 10, Func. Count: 141, Neg. LLF: 90.81634573619303
Iteration: 11, Func. Count: 155, Neg. LLF: 90.68883056319599
Iteration: 12, Func. Count: 169, Neg. LLF: 90.65316813344877
Iteration: 13, Func. Count: 183, Neg. LLF: 90.77808770318995
Iteration: 14, Func. Count: 197, Neg. LLF: 89.93478010677757
Iteration: 15, Func. Count: 211, Neg. LLF: 90.2026074246404
Iteration: 16, Func. Count: 225, Neg. LLF: 89.7712354868962
Iteration: 17, Func. Count: 238, Neg. LLF: 89.73005653450527
Iteration: 18, Func. Count: 251, Neg. LLF: 89.73417981539234
Iteration: 19, Func. Count: 265, Neg. LLF: 89.6412248927217
Iteration: 20, Func. Count: 278, Neg. LLF: 89.62166799956456
Iteration: 21, Func. Count: 291, Neg. LLF: 89.61232565869956
Iteration: 22, Func. Count: 304, Neg. LLF: 89.60894986112771
Iteration: 23, Func. Count: 317, Neg. LLF: 89.6081494920983
Iteration: 24, Func. Count: 330, Neg. LLF: 89.6080505216741
Iteration: 25, Func. Count: 343, Neg. LLF: 89.60804855209027
Iteration: 26, Func. Count: 355, Neg. LLF: 89.60804855201542
Optimization terminated successfully (Exit mode 0)
Current function value: 89.60804855209027
Iterations: 26
Function evaluations: 355
Gradient evaluations: 26
Iteration: 1, Func. Count: 15, Neg. LLF: 221741344.7318074
Iteration: 2, Func. Count: 31, Neg. LLF: 3204821.416883121
Iteration: 3, Func. Count: 47, Neg. LLF: 104.80239545988654
Iteration: 4, Func. Count: 62, Neg. LLF: 108.33963218655272
Iteration: 5, Func. Count: 77, Neg. LLF: 93.40773992052071
Iteration: 6, Func. Count: 92, Neg. LLF: 91.57305781742204
Iteration: 7, Func. Count: 107, Neg. LLF: 90.67709802031904
Iteration: 8, Func. Count: 121, Neg. LLF: 91.10289006346201
Iteration: 9, Func. Count: 137, Neg. LLF: 89.96735750432973
Iteration: 10, Func. Count: 151, Neg. LLF: 89.78635540229499
Iteration: 11, Func. Count: 165, Neg. LLF: 89.78527081510569
Iteration: 12, Func. Count: 180, Neg. LLF: 89.80453006160855
Iteration: 13, Func. Count: 195, Neg. LLF: 89.6148521752337
Iteration: 14, Func. Count: 209, Neg. LLF: 89.60904847806526
Iteration: 15, Func. Count: 223, Neg. LLF: 89.60870409538788
Iteration: 16, Func. Count: 237, Neg. LLF: 89.60814942096005
Iteration: 17, Func. Count: 251, Neg. LLF: 89.60806290487751
Iteration: 18, Func. Count: 265, Neg. LLF: 89.60804942482575
Iteration: 19, Func. Count: 279, Neg. LLF: 89.60804847632197
Optimization terminated successfully (Exit mode 0)
Current function value: 89.60804847632197
Iterations: 19
Function evaluations: 279
Gradient evaluations: 19
Iteration: 1, Func. Count: 16, Neg. LLF: 205936981.71911708
Iteration: 2, Func. Count: 33, Neg. LLF: 2216139.2537586666
Iteration: 3, Func. Count: 49, Neg. LLF: 685002.2150666348
Iteration: 4, Func. Count: 65, Neg. LLF: 275.2946796770699
Iteration: 5, Func. Count: 82, Neg. LLF: 89.60792178963399
Iteration: 6, Func. Count: 97, Neg. LLF: 88.95666270135006
Iteration: 7, Func. Count: 112, Neg. LLF: 89.15433303898135
Iteration: 8, Func. Count: 128, Neg. LLF: 89.61034504083067
Iteration: 9, Func. Count: 144, Neg. LLF: 88.20337803800084
Iteration: 10, Func. Count: 159, Neg. LLF: 88.0158616248754
Iteration: 11, Func. Count: 174, Neg. LLF: 88.01590918541557
Iteration: 12, Func. Count: 190, Neg. LLF: 88.01378353079875
Iteration: 13, Func. Count: 205, Neg. LLF: 88.01381113831177
Optimization terminated successfully (Exit mode 0)
Current function value: 88.0137832132405
Iterations: 13
Function evaluations: 206
Gradient evaluations: 13
Iteration: 1, Func. Count: 6, Neg. LLF: 87789607.03137133
Iteration: 2, Func. Count: 13, Neg. LLF: 627.0747529610176
Iteration: 3, Func. Count: 21, Neg. LLF: 112.73904426003813
Iteration: 4, Func. Count: 27, Neg. LLF: 95.10531250714476
Iteration: 5, Func. Count: 33, Neg. LLF: 92.41360657902392
Iteration: 6, Func. Count: 39, Neg. LLF: 91.52367712017085
Iteration: 7, Func. Count: 44, Neg. LLF: 92.18312934343686
Iteration: 8, Func. Count: 50, Neg. LLF: 91.44722310855326
Iteration: 9, Func. Count: 55, Neg. LLF: 91.44722085951179
Iteration: 10, Func. Count: 59, Neg. LLF: 91.4472208596313
Optimization terminated successfully (Exit mode 0)
Current function value: 91.44722085951179
Iterations: 10
Function evaluations: 59
Gradient evaluations: 10
Iteration: 1, Func. Count: 5, Neg. LLF: 130.78952040519326
Iteration: 2, Func. Count: 12, Neg. LLF: 97.36055403160093
Iteration: 3, Func. Count: 17, Neg. LLF: 91.76013407495266
Iteration: 4, Func. Count: 21, Neg. LLF: 91.45107698417792
Iteration: 5, Func. Count: 25, Neg. LLF: 91.23985034141452
Iteration: 6, Func. Count: 29, Neg. LLF: 91.19341194199481
Iteration: 7, Func. Count: 33, Neg. LLF: 91.19019373809812
Iteration: 8, Func. Count: 37, Neg. LLF: 91.19013200009499
Iteration: 9, Func. Count: 40, Neg. LLF: 91.19013201086153
Optimization terminated successfully (Exit mode 0)
Current function value: 91.19013200009499
Iterations: 9
Function evaluations: 40
Gradient evaluations: 9
Iteration: 1, Func. Count: 6, Neg. LLF: 139125842.02732122
Iteration: 2, Func. Count: 13, Neg. LLF: 51152386.20520582
Iteration: 3, Func. Count: 20, Neg. LLF: 106.29192349224958
Iteration: 4, Func. Count: 26, Neg. LLF: 94.57111156752812
Iteration: 5, Func. Count: 32, Neg. LLF: 96.81118720583967
Iteration: 6, Func. Count: 38, Neg. LLF: 95.19000059795408
Iteration: 7, Func. Count: 44, Neg. LLF: 90.37615817983215
Iteration: 8, Func. Count: 50, Neg. LLF: 89.6392244907966
Iteration: 9, Func. Count: 56, Neg. LLF: 91.0566722186208
Iteration: 10, Func. Count: 62, Neg. LLF: 89.16188514870865
Iteration: 11, Func. Count: 68, Neg. LLF: 89.88143499893332
Iteration: 12, Func. Count: 74, Neg. LLF: 88.05871994654578
Iteration: 13, Func. Count: 80, Neg. LLF: 88.01855685555631
Iteration: 14, Func. Count: 86, Neg. LLF: 87.88713446707789
Iteration: 15, Func. Count: 91, Neg. LLF: 87.72876481543601
Iteration: 16, Func. Count: 96, Neg. LLF: 87.67101901329329
Iteration: 17, Func. Count: 101, Neg. LLF: 87.82284751528023
Iteration: 18, Func. Count: 107, Neg. LLF: 87.6203573259929
Iteration: 19, Func. Count: 112, Neg. LLF: 87.61995477677792
Iteration: 20, Func. Count: 117, Neg. LLF: 87.61985961266521
Iteration: 21, Func. Count: 122, Neg. LLF: 87.61985899109095
Optimization terminated successfully (Exit mode 0)
Current function value: 87.61985899109095
Iterations: 21
Function evaluations: 122
Gradient evaluations: 21
Iteration: 1, Func. Count: 7, Neg. LLF: 286379142.8016144
Iteration: 2, Func. Count: 15, Neg. LLF: 94.79218503819305
Iteration: 3, Func. Count: 22, Neg. LLF: 455.37015142099824
Iteration: 4, Func. Count: 29, Neg. LLF: 93.72711951513801
Iteration: 5, Func. Count: 36, Neg. LLF: 99.42568514156994
Iteration: 6, Func. Count: 43, Neg. LLF: 95.88278279846871
Iteration: 7, Func. Count: 50, Neg. LLF: 92.39693565475959
Iteration: 8, Func. Count: 57, Neg. LLF: 90.43081205784515
Iteration: 9, Func. Count: 64, Neg. LLF: 89.48357225601262
Iteration: 10, Func. Count: 71, Neg. LLF: 88.23512067826277
Iteration: 11, Func. Count: 78, Neg. LLF: 87.79652302490511
Iteration: 12, Func. Count: 85, Neg. LLF: 87.63234024755796
Iteration: 13, Func. Count: 91, Neg. LLF: 87.62673155715487
Iteration: 14, Func. Count: 97, Neg. LLF: 87.76731739946182
Iteration: 15, Func. Count: 104, Neg. LLF: 88.14834041721114
Iteration: 16, Func. Count: 112, Neg. LLF: 87.62023640196384
Iteration: 17, Func. Count: 118, Neg. LLF: 87.61986998981413
Iteration: 18, Func. Count: 124, Neg. LLF: 87.61985907699689
Iteration: 19, Func. Count: 129, Neg. LLF: 87.61985907776668
Optimization terminated successfully (Exit mode 0)
Current function value: 87.61985907699689
Iterations: 19
Function evaluations: 129
Gradient evaluations: 19
Iteration: 1, Func. Count: 8, Neg. LLF: 324315013.55995977
Iteration: 2, Func. Count: 17, Neg. LLF: 162173115.39900413
Iteration: 3, Func. Count: 26, Neg. LLF: 98.49798421153214
Iteration: 4, Func. Count: 34, Neg. LLF: 92.93544249682132
Iteration: 5, Func. Count: 42, Neg. LLF: 90.63584738087532
Iteration: 6, Func. Count: 50, Neg. LLF: 88.75981407747332
Iteration: 7, Func. Count: 58, Neg. LLF: 88.03109761063628
Iteration: 8, Func. Count: 66, Neg. LLF: 87.73065552553348
Iteration: 9, Func. Count: 73, Neg. LLF: 87.69998878079018
Iteration: 10, Func. Count: 80, Neg. LLF: 87.96534381263007
Iteration: 11, Func. Count: 88, Neg. LLF: 92.32408203772022
Iteration: 12, Func. Count: 97, Neg. LLF: 87.6709663256645
Iteration: 13, Func. Count: 104, Neg. LLF: 87.67007489382546
Iteration: 14, Func. Count: 111, Neg. LLF: 87.6698457490532
Iteration: 15, Func. Count: 118, Neg. LLF: 87.66969437356023
Iteration: 16, Func. Count: 125, Neg. LLF: 87.66832626657225
Iteration: 17, Func. Count: 132, Neg. LLF: 87.63552070658935
Iteration: 18, Func. Count: 139, Neg. LLF: 87.6314219578069
Iteration: 19, Func. Count: 146, Neg. LLF: 87.62380565437309
Iteration: 20, Func. Count: 153, Neg. LLF: 87.62255233299064
Iteration: 21, Func. Count: 160, Neg. LLF: 87.61995127308946
Iteration: 22, Func. Count: 167, Neg. LLF: 87.61986064583651
Iteration: 23, Func. Count: 174, Neg. LLF: 87.61985897723524
Iteration: 24, Func. Count: 180, Neg. LLF: 87.61985898130708
Optimization terminated successfully (Exit mode 0)
Current function value: 87.61985897723524
Iterations: 24
Function evaluations: 180
Gradient evaluations: 24
Iteration: 1, Func. Count: 9, Neg. LLF: 299947437.04478776
Iteration: 2, Func. Count: 19, Neg. LLF: 150045300.4003219
Iteration: 3, Func. Count: 29, Neg. LLF: 111.0103906408509
Iteration: 4, Func. Count: 38, Neg. LLF: 90.88015886474295
Iteration: 5, Func. Count: 47, Neg. LLF: 89.8393061207379
Iteration: 6, Func. Count: 56, Neg. LLF: 87.97168302914729
Iteration: 7, Func. Count: 64, Neg. LLF: 88.3216270258487
Iteration: 8, Func. Count: 73, Neg. LLF: 88.09252074931638
Iteration: 9, Func. Count: 82, Neg. LLF: 88.21563080177722
Iteration: 10, Func. Count: 91, Neg. LLF: 87.6866953821816
Iteration: 11, Func. Count: 99, Neg. LLF: 87.68345854085597
Iteration: 12, Func. Count: 107, Neg. LLF: 87.68262246558376
Iteration: 13, Func. Count: 115, Neg. LLF: 87.6806593860212
Iteration: 14, Func. Count: 123, Neg. LLF: 87.67609125588055
Iteration: 15, Func. Count: 131, Neg. LLF: 87.67474217686207
Iteration: 16, Func. Count: 139, Neg. LLF: 87.67194248837993
Iteration: 17, Func. Count: 147, Neg. LLF: 87.67166334589687
Iteration: 18, Func. Count: 155, Neg. LLF: 87.6714761270494
Iteration: 19, Func. Count: 163, Neg. LLF: 87.67119501486464
Iteration: 20, Func. Count: 171, Neg. LLF: 87.67056129698084
Iteration: 21, Func. Count: 179, Neg. LLF: 87.6663640460207
Iteration: 22, Func. Count: 187, Neg. LLF: 87.62225037489594
Iteration: 23, Func. Count: 195, Neg. LLF: 87.62585554760133
Iteration: 24, Func. Count: 204, Neg. LLF: 87.62064128985206
Iteration: 25, Func. Count: 212, Neg. LLF: 87.62008238166837
Iteration: 26, Func. Count: 220, Neg. LLF: 87.61986518248342
Iteration: 27, Func. Count: 228, Neg. LLF: 87.61985919148132
Iteration: 28, Func. Count: 235, Neg. LLF: 87.6198592009216
Optimization terminated successfully (Exit mode 0)
Current function value: 87.61985919148132
Iterations: 28
Function evaluations: 235
Gradient evaluations: 28
Iteration: 1, Func. Count: 6, Neg. LLF: 122.75974530660919
Iteration: 2, Func. Count: 14, Neg. LLF: 731.2933989944793
Iteration: 3, Func. Count: 20, Neg. LLF: 5383433.856576514
Iteration: 4, Func. Count: 26, Neg. LLF: 90.23784840044587
Iteration: 5, Func. Count: 31, Neg. LLF: 1685293.9442612233
Iteration: 6, Func. Count: 37, Neg. LLF: 89.97028235155548
Iteration: 7, Func. Count: 42, Neg. LLF: 89.95105219022857
Iteration: 8, Func. Count: 47, Neg. LLF: 89.94638750736476
Iteration: 9, Func. Count: 52, Neg. LLF: 89.9462764500178
Iteration: 10, Func. Count: 57, Neg. LLF: 89.94626384036943
Iteration: 11, Func. Count: 61, Neg. LLF: 89.94626384034288
Optimization terminated successfully (Exit mode 0)
Current function value: 89.94626384036943
Iterations: 11
Function evaluations: 61
Gradient evaluations: 11
Iteration: 1, Func. Count: 7, Neg. LLF: 244584757.76043054
Iteration: 2, Func. Count: 15, Neg. LLF: 94.53539038595956
Iteration: 3, Func. Count: 22, Neg. LLF: 104.06919658471006
Iteration: 4, Func. Count: 29, Neg. LLF: 104.4629792322348
Iteration: 5, Func. Count: 36, Neg. LLF: 154.19277896327662
Iteration: 6, Func. Count: 43, Neg. LLF: 92.92882995173808
Iteration: 7, Func. Count: 50, Neg. LLF: 93.89923377150673
Iteration: 8, Func. Count: 57, Neg. LLF: 90.5163132995884
Iteration: 9, Func. Count: 64, Neg. LLF: 89.03265560364493
Iteration: 10, Func. Count: 71, Neg. LLF: 88.79394724187233
Iteration: 11, Func. Count: 78, Neg. LLF: 87.99040859638293
Iteration: 12, Func. Count: 85, Neg. LLF: 88.1381649875365
Iteration: 13, Func. Count: 92, Neg. LLF: 87.83697795345968
Iteration: 14, Func. Count: 98, Neg. LLF: 87.72578386526453
Iteration: 15, Func. Count: 104, Neg. LLF: 87.5974691200976
Iteration: 16, Func. Count: 110, Neg. LLF: 87.58220860435728
Iteration: 17, Func. Count: 116, Neg. LLF: 87.57645681313925
Iteration: 18, Func. Count: 122, Neg. LLF: 87.57347648927434
Iteration: 19, Func. Count: 128, Neg. LLF: 87.57339301927793
Iteration: 20, Func. Count: 134, Neg. LLF: 87.57338147785626
Iteration: 21, Func. Count: 139, Neg. LLF: 87.57338147737943
Optimization terminated successfully (Exit mode 0)
Current function value: 87.57338147785626
Iterations: 21
Function evaluations: 139
Gradient evaluations: 21
Iteration: 1, Func. Count: 8, Neg. LLF: 279352135.58317775
Iteration: 2, Func. Count: 17, Neg. LLF: 343.2210522778026
Iteration: 3, Func. Count: 26, Neg. LLF: 97.45565940224954
Iteration: 4, Func. Count: 34, Neg. LLF: 87.60342679906735
Iteration: 5, Func. Count: 41, Neg. LLF: 86.35525114093748
Iteration: 6, Func. Count: 48, Neg. LLF: 86.24078508208414
Iteration: 7, Func. Count: 55, Neg. LLF: 86.15423136479151
Iteration: 8, Func. Count: 62, Neg. LLF: 86.02816774665493
Iteration: 9, Func. Count: 69, Neg. LLF: 85.9219908060804
Iteration: 10, Func. Count: 76, Neg. LLF: 85.88768953042536
Iteration: 11, Func. Count: 83, Neg. LLF: 85.88640606039202
Iteration: 12, Func. Count: 90, Neg. LLF: 85.88640134854445
Iteration: 13, Func. Count: 96, Neg. LLF: 85.88640134837188
Optimization terminated successfully (Exit mode 0)
Current function value: 85.88640134854445
Iterations: 13
Function evaluations: 96
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 281302751.68491805
Iteration: 2, Func. Count: 19, Neg. LLF: 168463569.7002061
Iteration: 3, Func. Count: 29, Neg. LLF: 123.27015306205907
Iteration: 4, Func. Count: 38, Neg. LLF: 90.88292483177347
Iteration: 5, Func. Count: 47, Neg. LLF: 87.65561882346061
Iteration: 6, Func. Count: 55, Neg. LLF: 87.05343964224285
Iteration: 7, Func. Count: 63, Neg. LLF: 86.03728073940337
Iteration: 8, Func. Count: 71, Neg. LLF: 86.05510430199368
Iteration: 9, Func. Count: 80, Neg. LLF: 85.8929260423341
Iteration: 10, Func. Count: 88, Neg. LLF: 85.89026518216379
Iteration: 11, Func. Count: 96, Neg. LLF: 85.88668861749007
Iteration: 12, Func. Count: 104, Neg. LLF: 85.88642385403406
Iteration: 13, Func. Count: 112, Neg. LLF: 85.88640099972964
Iteration: 14, Func. Count: 119, Neg. LLF: 85.88640117596758
Optimization terminated successfully (Exit mode 0)
Current function value: 85.88640099972964
Iterations: 14
Function evaluations: 119
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 267811387.58440018
Iteration: 2, Func. Count: 21, Neg. LLF: 151688095.61555642
Iteration: 3, Func. Count: 32, Neg. LLF: 103.12148156176491
Iteration: 4, Func. Count: 42, Neg. LLF: 86.69301338631398
Iteration: 5, Func. Count: 51, Neg. LLF: 85.92807062818788
Iteration: 6, Func. Count: 60, Neg. LLF: 89.89243884252978
Iteration: 7, Func. Count: 71, Neg. LLF: 85.47680682968034
Iteration: 8, Func. Count: 80, Neg. LLF: 85.70830075250484
Iteration: 9, Func. Count: 90, Neg. LLF: 85.32874819196132
Iteration: 10, Func. Count: 99, Neg. LLF: 85.31469117291383
Iteration: 11, Func. Count: 108, Neg. LLF: 85.31318942518588
Iteration: 12, Func. Count: 117, Neg. LLF: 85.3125787483237
Iteration: 13, Func. Count: 126, Neg. LLF: 85.31246177044856
Iteration: 14, Func. Count: 135, Neg. LLF: 85.31243483767874
Iteration: 15, Func. Count: 144, Neg. LLF: 85.31243410729448
Optimization terminated successfully (Exit mode 0)
Current function value: 85.31243410729448
Iterations: 15
Function evaluations: 144
Gradient evaluations: 15
Iteration: 1, Func. Count: 7, Neg. LLF: 127.02889980899597
Iteration: 2, Func. Count: 16, Neg. LLF: 1239.0401722333
Iteration: 3, Func. Count: 23, Neg. LLF: 7158465.560941775
Iteration: 4, Func. Count: 30, Neg. LLF: 90.31443104111072
Iteration: 5, Func. Count: 36, Neg. LLF: 3127799.629755966
Iteration: 6, Func. Count: 44, Neg. LLF: 90.11717106455254
Iteration: 7, Func. Count: 50, Neg. LLF: 91.09988161386244
Iteration: 8, Func. Count: 57, Neg. LLF: 89.97397750404151
Iteration: 9, Func. Count: 63, Neg. LLF: 89.95015485970661
Iteration: 10, Func. Count: 69, Neg. LLF: 89.94669869034662
Iteration: 11, Func. Count: 75, Neg. LLF: 89.94628110866694
Iteration: 12, Func. Count: 81, Neg. LLF: 89.94626368546533
Iteration: 13, Func. Count: 86, Neg. LLF: 89.9462637955581
Optimization terminated successfully (Exit mode 0)
Current function value: 89.94626368546533
Iterations: 13
Function evaluations: 86
Gradient evaluations: 13
Iteration: 1, Func. Count: 8, Neg. LLF: 236015726.5677688
Iteration: 2, Func. Count: 17, Neg. LLF: 94.48566504023017
Iteration: 3, Func. Count: 25, Neg. LLF: 99.6351354224696
Iteration: 4, Func. Count: 33, Neg. LLF: 99.91444211666077
Iteration: 5, Func. Count: 41, Neg. LLF: 99.33686051579679
Iteration: 6, Func. Count: 49, Neg. LLF: 88.27026228335255
Iteration: 7, Func. Count: 56, Neg. LLF: 92.86554292855658
Iteration: 8, Func. Count: 64, Neg. LLF: 110.39440407097545
Iteration: 9, Func. Count: 75, Neg. LLF: 135.49651406121674
Iteration: 10, Func. Count: 85, Neg. LLF: 88.0327499395659
Iteration: 11, Func. Count: 92, Neg. LLF: 88.8409242479519
Iteration: 12, Func. Count: 100, Neg. LLF: 87.97142568641115
Iteration: 13, Func. Count: 107, Neg. LLF: 87.84554129231113
Iteration: 14, Func. Count: 114, Neg. LLF: 87.6529972914586
Iteration: 15, Func. Count: 121, Neg. LLF: 87.59330519607181
Iteration: 16, Func. Count: 128, Neg. LLF: 87.57525291456936
Iteration: 17, Func. Count: 135, Neg. LLF: 87.57350099966916
Iteration: 18, Func. Count: 142, Neg. LLF: 87.57338278320542
Iteration: 19, Func. Count: 149, Neg. LLF: 87.57338115875473
Iteration: 20, Func. Count: 155, Neg. LLF: 87.57338115862846
Optimization terminated successfully (Exit mode 0)
Current function value: 87.57338115875473
Iterations: 20
Function evaluations: 155
Gradient evaluations: 20
Iteration: 1, Func. Count: 9, Neg. LLF: 248576896.79548928
Iteration: 2, Func. Count: 19, Neg. LLF: 1068174.593113787
Iteration: 3, Func. Count: 29, Neg. LLF: 92.01412155321448
Iteration: 4, Func. Count: 38, Neg. LLF: 87.69334371371345
Iteration: 5, Func. Count: 46, Neg. LLF: 86.31672407187256
Iteration: 6, Func. Count: 54, Neg. LLF: 86.23239722941898
Iteration: 7, Func. Count: 62, Neg. LLF: 86.0764129150926
Iteration: 8, Func. Count: 70, Neg. LLF: 86.03407770848725
Iteration: 9, Func. Count: 78, Neg. LLF: 85.92913431244374
Iteration: 10, Func. Count: 86, Neg. LLF: 85.89398380385768
Iteration: 11, Func. Count: 94, Neg. LLF: 85.89187495342881
Iteration: 12, Func. Count: 103, Neg. LLF: 85.8876166048331
Iteration: 13, Func. Count: 112, Neg. LLF: 85.88640158340806
Iteration: 14, Func. Count: 120, Neg. LLF: 85.88640097901366
Optimization terminated successfully (Exit mode 0)
Current function value: 85.88640097901366
Iterations: 14
Function evaluations: 120
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 256039012.25639293
Iteration: 2, Func. Count: 21, Neg. LLF: 181043797.0418875
Iteration: 3, Func. Count: 32, Neg. LLF: 280.9194429614811
Iteration: 4, Func. Count: 42, Neg. LLF: 91.71996150852652
Iteration: 5, Func. Count: 52, Neg. LLF: 89.22816020444304
Iteration: 6, Func. Count: 62, Neg. LLF: 87.54371645710098
Iteration: 7, Func. Count: 71, Neg. LLF: 87.14376141532173
Iteration: 8, Func. Count: 80, Neg. LLF: 86.10588589925655
Iteration: 9, Func. Count: 89, Neg. LLF: 86.22444098768271
Iteration: 10, Func. Count: 99, Neg. LLF: 85.89666109621234
Iteration: 11, Func. Count: 108, Neg. LLF: 85.888381793364
Iteration: 12, Func. Count: 117, Neg. LLF: 85.88674348249826
Iteration: 13, Func. Count: 126, Neg. LLF: 85.88647691579268
Iteration: 14, Func. Count: 135, Neg. LLF: 85.88640573299277
Iteration: 15, Func. Count: 144, Neg. LLF: 85.88640107822097
Iteration: 16, Func. Count: 152, Neg. LLF: 85.88640125465079
Optimization terminated successfully (Exit mode 0)
Current function value: 85.88640107822097
Iterations: 16
Function evaluations: 152
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 240773222.50529158
Iteration: 2, Func. Count: 23, Neg. LLF: 167084633.267184
Iteration: 3, Func. Count: 35, Neg. LLF: 154.13138036803545
Iteration: 4, Func. Count: 46, Neg. LLF: 87.1302906973897
Iteration: 5, Func. Count: 56, Neg. LLF: 85.52382886614696
Iteration: 6, Func. Count: 66, Neg. LLF: 89.3401587480388
Iteration: 7, Func. Count: 78, Neg. LLF: 85.3294811125006
Iteration: 8, Func. Count: 88, Neg. LLF: 85.31520176233204
Iteration: 9, Func. Count: 98, Neg. LLF: 85.31291458151269
Iteration: 10, Func. Count: 108, Neg. LLF: 85.31271374462605
Iteration: 11, Func. Count: 118, Neg. LLF: 85.31259150755072
Iteration: 12, Func. Count: 128, Neg. LLF: 85.31253115491387
Iteration: 13, Func. Count: 138, Neg. LLF: 85.31244806150093
Iteration: 14, Func. Count: 148, Neg. LLF: 85.31243536615045
Iteration: 15, Func. Count: 158, Neg. LLF: 85.31243412871407
Iteration: 16, Func. Count: 167, Neg. LLF: 85.31243412876783
Optimization terminated successfully (Exit mode 0)
Current function value: 85.31243412871407
Iterations: 16
Function evaluations: 167
Gradient evaluations: 16
Iteration: 1, Func. Count: 8, Neg. LLF: 118.72917920857594
Iteration: 2, Func. Count: 18, Neg. LLF: 16421135.857669307
Iteration: 3, Func. Count: 26, Neg. LLF: 13138801.705568852
Iteration: 4, Func. Count: 34, Neg. LLF: 354172.5540770216
Iteration: 5, Func. Count: 42, Neg. LLF: 134.64013183172653
Iteration: 6, Func. Count: 50, Neg. LLF: 88.85418318674444
Iteration: 7, Func. Count: 57, Neg. LLF: 88.81523296829609
Iteration: 8, Func. Count: 64, Neg. LLF: 88.787521195514
Iteration: 9, Func. Count: 71, Neg. LLF: 88.77573992819241
Iteration: 10, Func. Count: 78, Neg. LLF: 88.77294273786862
Iteration: 11, Func. Count: 85, Neg. LLF: 88.77259471991212
Iteration: 12, Func. Count: 92, Neg. LLF: 88.77259391489245
Optimization terminated successfully (Exit mode 0)
Current function value: 88.77259391489245
Iterations: 12
Function evaluations: 92
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 254173664.81567672
Iteration: 2, Func. Count: 19, Neg. LLF: 94.39714111622006
Iteration: 3, Func. Count: 28, Neg. LLF: 98.56442216327926
Iteration: 4, Func. Count: 37, Neg. LLF: 99.14301535657708
Iteration: 5, Func. Count: 46, Neg. LLF: 98.82609411960901
Iteration: 6, Func. Count: 55, Neg. LLF: 9030.956686935635
Iteration: 7, Func. Count: 66, Neg. LLF: 100.88154666189693
Iteration: 8, Func. Count: 75, Neg. LLF: 100.10416411476714
Iteration: 9, Func. Count: 84, Neg. LLF: 95.99533775810058
Iteration: 10, Func. Count: 93, Neg. LLF: 101.0307111119711
Iteration: 11, Func. Count: 102, Neg. LLF: 88.12231351613023
Iteration: 12, Func. Count: 111, Neg. LLF: 88.22566006297494
Iteration: 13, Func. Count: 120, Neg. LLF: 87.7286551503908
Iteration: 14, Func. Count: 128, Neg. LLF: 87.67938408413148
Iteration: 15, Func. Count: 136, Neg. LLF: 87.70318784613426
Iteration: 16, Func. Count: 145, Neg. LLF: 87.5718671105651
Iteration: 17, Func. Count: 153, Neg. LLF: 87.53289626997682
Iteration: 18, Func. Count: 161, Neg. LLF: 87.53476839362037
Iteration: 19, Func. Count: 170, Neg. LLF: 87.53057581304495
Iteration: 20, Func. Count: 178, Neg. LLF: 87.53057515361085
Optimization terminated successfully (Exit mode 0)
Current function value: 87.53057515361085
Iterations: 20
Function evaluations: 178
Gradient evaluations: 20
Iteration: 1, Func. Count: 10, Neg. LLF: 277687623.5413171
Iteration: 2, Func. Count: 21, Neg. LLF: 1642982.5147172727
Iteration: 3, Func. Count: 32, Neg. LLF: 100.18778182615758
Iteration: 4, Func. Count: 42, Neg. LLF: 87.59820682961632
Iteration: 5, Func. Count: 51, Neg. LLF: 86.43588543173594
Iteration: 6, Func. Count: 60, Neg. LLF: 87.53530015186902
Iteration: 7, Func. Count: 70, Neg. LLF: 86.26073043503196
Iteration: 8, Func. Count: 79, Neg. LLF: 86.11571286337288
Iteration: 9, Func. Count: 88, Neg. LLF: 86.11224801589668
Iteration: 10, Func. Count: 98, Neg. LLF: 85.948684258854
Iteration: 11, Func. Count: 108, Neg. LLF: 85.88770088113309
Iteration: 12, Func. Count: 117, Neg. LLF: 85.88641784918126
Iteration: 13, Func. Count: 126, Neg. LLF: 85.8864048824339
Iteration: 14, Func. Count: 135, Neg. LLF: 85.88640096713218
Iteration: 15, Func. Count: 143, Neg. LLF: 85.88640096722366
Optimization terminated successfully (Exit mode 0)
Current function value: 85.88640096713218
Iterations: 15
Function evaluations: 143
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 277231202.4843503
Iteration: 2, Func. Count: 23, Neg. LLF: 168597661.93356347
Iteration: 3, Func. Count: 35, Neg. LLF: 152.05437325056658
Iteration: 4, Func. Count: 46, Neg. LLF: 89.34848073627656
Iteration: 5, Func. Count: 57, Neg. LLF: 90.20088708014957
Iteration: 6, Func. Count: 68, Neg. LLF: 87.58168126784102
Iteration: 7, Func. Count: 78, Neg. LLF: 86.83292479531043
Iteration: 8, Func. Count: 88, Neg. LLF: 87.34516578461724
Iteration: 9, Func. Count: 99, Neg. LLF: 85.96671960829143
Iteration: 10, Func. Count: 109, Neg. LLF: 85.92333349025463
Iteration: 11, Func. Count: 119, Neg. LLF: 85.90893596107236
Iteration: 12, Func. Count: 129, Neg. LLF: 85.88764915328682
Iteration: 13, Func. Count: 139, Neg. LLF: 85.88662932826202
Iteration: 14, Func. Count: 149, Neg. LLF: 85.88645257273495
Iteration: 15, Func. Count: 159, Neg. LLF: 85.88642026294691
Iteration: 16, Func. Count: 169, Neg. LLF: 85.88640104600869
Iteration: 17, Func. Count: 178, Neg. LLF: 85.88640122244875
Optimization terminated successfully (Exit mode 0)
Current function value: 85.88640104600869
Iterations: 17
Function evaluations: 178
Gradient evaluations: 17
Iteration: 1, Func. Count: 12, Neg. LLF: 266649859.9861822
Iteration: 2, Func. Count: 25, Neg. LLF: 152494122.56986624
Iteration: 3, Func. Count: 38, Neg. LLF: 146.2933805371516
Iteration: 4, Func. Count: 50, Neg. LLF: 196.38762817897936
Iteration: 5, Func. Count: 62, Neg. LLF: 85.98466687911348
Iteration: 6, Func. Count: 73, Neg. LLF: 85.73315699234098
Iteration: 7, Func. Count: 84, Neg. LLF: 89.40557455673012
Iteration: 8, Func. Count: 98, Neg. LLF: 85.21569052575558
Iteration: 9, Func. Count: 109, Neg. LLF: 85.3650534535902
Iteration: 10, Func. Count: 121, Neg. LLF: 85.12644563136169
Iteration: 11, Func. Count: 132, Neg. LLF: 85.11052630898968
Iteration: 12, Func. Count: 143, Neg. LLF: 85.10645319104131
Iteration: 13, Func. Count: 154, Neg. LLF: 85.10620192561198
Iteration: 14, Func. Count: 165, Neg. LLF: 85.10617959980092
Iteration: 15, Func. Count: 176, Neg. LLF: 85.10617668965656
Iteration: 16, Func. Count: 186, Neg. LLF: 85.10617668980571
Optimization terminated successfully (Exit mode 0)
Current function value: 85.10617668965656
Iterations: 16
Function evaluations: 186
Gradient evaluations: 16
Iteration: 1, Func. Count: 5, Neg. LLF: 136.766246046325
Iteration: 2, Func. Count: 12, Neg. LLF: 138.80158172612016
Iteration: 3, Func. Count: 17, Neg. LLF: 91.48966061780975
Iteration: 4, Func. Count: 21, Neg. LLF: 91.22534603283326
Iteration: 5, Func. Count: 25, Neg. LLF: 91.1922020551128
Iteration: 6, Func. Count: 29, Neg. LLF: 91.19018329903491
Iteration: 7, Func. Count: 33, Neg. LLF: 91.19013194629972
Iteration: 8, Func. Count: 36, Neg. LLF: 91.1901320147318
Optimization terminated successfully (Exit mode 0)
Current function value: 91.19013194629972
Iterations: 8
Function evaluations: 36
Gradient evaluations: 8
Iteration: 1, Func. Count: 6, Neg. LLF: 54636519.60310707
Iteration: 2, Func. Count: 13, Neg. LLF: 100.46947327095752
Iteration: 3, Func. Count: 20, Neg. LLF: 118.03003347062116
Iteration: 4, Func. Count: 26, Neg. LLF: 114.27476021380392
Iteration: 5, Func. Count: 32, Neg. LLF: 110.53232280552048
Iteration: 6, Func. Count: 38, Neg. LLF: 110.05687676526789
Iteration: 7, Func. Count: 44, Neg. LLF: 104.81993753716259
Iteration: 8, Func. Count: 50, Neg. LLF: 91.92348337710314
Iteration: 9, Func. Count: 56, Neg. LLF: 89.83315830661427
Iteration: 10, Func. Count: 62, Neg. LLF: 88.80218757029566
Iteration: 11, Func. Count: 68, Neg. LLF: 89.05785258151275
Iteration: 12, Func. Count: 74, Neg. LLF: 88.132240269982
Iteration: 13, Func. Count: 79, Neg. LLF: 88.02066030333323
Iteration: 14, Func. Count: 84, Neg. LLF: 89.50262129023939
Iteration: 15, Func. Count: 91, Neg. LLF: 87.68028954994337
Iteration: 16, Func. Count: 96, Neg. LLF: 87.62098134557101
Iteration: 17, Func. Count: 101, Neg. LLF: 87.61993927449483
Iteration: 18, Func. Count: 106, Neg. LLF: 87.61987607297876
Iteration: 19, Func. Count: 111, Neg. LLF: 87.61985935632623
Iteration: 20, Func. Count: 115, Neg. LLF: 87.6198593562617
Optimization terminated successfully (Exit mode 0)
Current function value: 87.61985935632623
Iterations: 20
Function evaluations: 115
Gradient evaluations: 20
Iteration: 1, Func. Count: 7, Neg. LLF: 43272451.00985042
Iteration: 2, Func. Count: 15, Neg. LLF: 99.82525655858015
Iteration: 3, Func. Count: 22, Neg. LLF: 190.39374392469506
Iteration: 4, Func. Count: 29, Neg. LLF: 95.81624747580712
Iteration: 5, Func. Count: 36, Neg. LLF: 88.0765024828689
Iteration: 6, Func. Count: 42, Neg. LLF: 101.88947539850038
Iteration: 7, Func. Count: 50, Neg. LLF: 93.99221840345575
Iteration: 8, Func. Count: 58, Neg. LLF: 147.29915735853425
Iteration: 9, Func. Count: 66, Neg. LLF: 87.63179932537962
Iteration: 10, Func. Count: 72, Neg. LLF: 87.63011112079273
Iteration: 11, Func. Count: 79, Neg. LLF: 87.6202478455391
Iteration: 12, Func. Count: 85, Neg. LLF: 87.61986451662221
Iteration: 13, Func. Count: 91, Neg. LLF: 87.61985901599598
Iteration: 14, Func. Count: 96, Neg. LLF: 87.61985901734862
Optimization terminated successfully (Exit mode 0)
Current function value: 87.61985901599598
Iterations: 14
Function evaluations: 96
Gradient evaluations: 14
Iteration: 1, Func. Count: 8, Neg. LLF: 41295248.070487924
Iteration: 2, Func. Count: 17, Neg. LLF: 9935.61209771965
Iteration: 3, Func. Count: 26, Neg. LLF: 94.90083697058034
Iteration: 4, Func. Count: 34, Neg. LLF: 87.82692609779171
Iteration: 5, Func. Count: 41, Neg. LLF: 87.68829285627247
Iteration: 6, Func. Count: 48, Neg. LLF: 87.57513603498131
Iteration: 7, Func. Count: 55, Neg. LLF: 87.56252342463628
Iteration: 8, Func. Count: 62, Neg. LLF: 87.56203767358565
Iteration: 9, Func. Count: 69, Neg. LLF: 87.56184553244151
Iteration: 10, Func. Count: 75, Neg. LLF: 87.56184553229048
Optimization terminated successfully (Exit mode 0)
Current function value: 87.56184553244151
Iterations: 10
Function evaluations: 75
Gradient evaluations: 10
Iteration: 1, Func. Count: 9, Neg. LLF: 33700084.60758442
Iteration: 2, Func. Count: 18, Neg. LLF: 1298.9334533165584
Iteration: 3, Func. Count: 28, Neg. LLF: 87.975059358472
Iteration: 4, Func. Count: 36, Neg. LLF: 96.94875734968458
Iteration: 5, Func. Count: 45, Neg. LLF: 87.57687058982243
Iteration: 6, Func. Count: 53, Neg. LLF: 87.5970050566453
Iteration: 7, Func. Count: 62, Neg. LLF: 87.56185036539979
Iteration: 8, Func. Count: 70, Neg. LLF: 87.5618455101527
Iteration: 9, Func. Count: 77, Neg. LLF: 87.5618455430121
Optimization terminated successfully (Exit mode 0)
Current function value: 87.5618455101527
Iterations: 9
Function evaluations: 77
Gradient evaluations: 9
Iteration: 1, Func. Count: 6, Neg. LLF: 139.68864211244139
Iteration: 2, Func. Count: 14, Neg. LLF: 153.86585757677483
Iteration: 3, Func. Count: 20, Neg. LLF: 91.3057092804392
Iteration: 4, Func. Count: 25, Neg. LLF: 91.22164709610384
Iteration: 5, Func. Count: 30, Neg. LLF: 91.19151616551741
Iteration: 6, Func. Count: 35, Neg. LLF: 91.19014073791497
Iteration: 7, Func. Count: 40, Neg. LLF: 91.19013199435159
Iteration: 8, Func. Count: 44, Neg. LLF: 91.1901319836151
Optimization terminated successfully (Exit mode 0)
Current function value: 91.19013199435159
Iterations: 8
Function evaluations: 44
Gradient evaluations: 8
Iteration: 1, Func. Count: 7, Neg. LLF: 64281088.56327914
Iteration: 2, Func. Count: 15, Neg. LLF: 103.82715631429207
Iteration: 3, Func. Count: 23, Neg. LLF: 116.94266844369211
Iteration: 4, Func. Count: 30, Neg. LLF: 108.72331043860561
Iteration: 5, Func. Count: 37, Neg. LLF: 99.51085914489317
Iteration: 6, Func. Count: 44, Neg. LLF: 103.94268235122297
Iteration: 7, Func. Count: 51, Neg. LLF: 103.0736432195459
Iteration: 8, Func. Count: 58, Neg. LLF: 100.99051804995739
Iteration: 9, Func. Count: 65, Neg. LLF: 91.36244978435435
Iteration: 10, Func. Count: 72, Neg. LLF: 96.88178952830887
Iteration: 11, Func. Count: 79, Neg. LLF: 125.1015182147031
Iteration: 12, Func. Count: 86, Neg. LLF: 88.71299371080254
Iteration: 13, Func. Count: 93, Neg. LLF: 88.91555586668137
Iteration: 14, Func. Count: 100, Neg. LLF: 89.22853813637904
Iteration: 15, Func. Count: 107, Neg. LLF: 88.04026478206697
Iteration: 16, Func. Count: 113, Neg. LLF: 88.27808711695484
Iteration: 17, Func. Count: 120, Neg. LLF: 87.89968671226215
Iteration: 18, Func. Count: 127, Neg. LLF: 87.62593266925168
Iteration: 19, Func. Count: 133, Neg. LLF: 87.6209569075454
Iteration: 20, Func. Count: 139, Neg. LLF: 87.62056452810668
Iteration: 21, Func. Count: 145, Neg. LLF: 87.61988165306911
Iteration: 22, Func. Count: 151, Neg. LLF: 87.61985999952562
Iteration: 23, Func. Count: 157, Neg. LLF: 87.61985897810422
Iteration: 24, Func. Count: 162, Neg. LLF: 87.61985897818363
Optimization terminated successfully (Exit mode 0)
Current function value: 87.61985897810422
Iterations: 24
Function evaluations: 162
Gradient evaluations: 24
Iteration: 1, Func. Count: 8, Neg. LLF: 51547924.70794991
Iteration: 2, Func. Count: 17, Neg. LLF: 101.65109714473148
Iteration: 3, Func. Count: 25, Neg. LLF: 196.80810576852792
Iteration: 4, Func. Count: 33, Neg. LLF: 97.63275678915534
Iteration: 5, Func. Count: 41, Neg. LLF: 90.18558430188942
Iteration: 6, Func. Count: 49, Neg. LLF: 88.96860939715258
Iteration: 7, Func. Count: 57, Neg. LLF: 101.68374963978438
Iteration: 8, Func. Count: 65, Neg. LLF: 88.02279336286637
Iteration: 9, Func. Count: 72, Neg. LLF: 88.12969447684388
Iteration: 10, Func. Count: 80, Neg. LLF: 89.42030103364272
Iteration: 11, Func. Count: 89, Neg. LLF: 87.74419576844261
Iteration: 12, Func. Count: 97, Neg. LLF: 87.66315295721903
Iteration: 13, Func. Count: 104, Neg. LLF: 87.63324202501484
Iteration: 14, Func. Count: 111, Neg. LLF: 87.62857467552503
Iteration: 15, Func. Count: 118, Neg. LLF: 87.62679129945879
Iteration: 16, Func. Count: 125, Neg. LLF: 87.62153952745675
Iteration: 17, Func. Count: 132, Neg. LLF: 87.62048078697876
Iteration: 18, Func. Count: 139, Neg. LLF: 87.61991432780682
Iteration: 19, Func. Count: 146, Neg. LLF: 87.61986048335623
Iteration: 20, Func. Count: 153, Neg. LLF: 87.61985900303108
Iteration: 21, Func. Count: 159, Neg. LLF: 87.61985900461382
Optimization terminated successfully (Exit mode 0)
Current function value: 87.61985900303108
Iterations: 21
Function evaluations: 159
Gradient evaluations: 21
Iteration: 1, Func. Count: 9, Neg. LLF: 93425221.62788057
Iteration: 2, Func. Count: 19, Neg. LLF: 358437364.71620923
Iteration: 3, Func. Count: 30, Neg. LLF: 97.55933961762237
Iteration: 4, Func. Count: 39, Neg. LLF: 91.15960485737132
Iteration: 5, Func. Count: 48, Neg. LLF: 87.84406759930228
Iteration: 6, Func. Count: 56, Neg. LLF: 88.76147990333023
Iteration: 7, Func. Count: 65, Neg. LLF: 87.79321534757611
Iteration: 8, Func. Count: 74, Neg. LLF: 87.75424831235274
Iteration: 9, Func. Count: 83, Neg. LLF: 87.67898173032857
Iteration: 10, Func. Count: 91, Neg. LLF: 87.67276105647053
Iteration: 11, Func. Count: 99, Neg. LLF: 87.67226800653411
Iteration: 12, Func. Count: 107, Neg. LLF: 87.67163809908094
Iteration: 13, Func. Count: 115, Neg. LLF: 87.67012751057756
Iteration: 14, Func. Count: 123, Neg. LLF: 87.62941746273948
Iteration: 15, Func. Count: 131, Neg. LLF: 87.66092536615162
Iteration: 16, Func. Count: 140, Neg. LLF: 87.62054021844462
Iteration: 17, Func. Count: 148, Neg. LLF: 87.62033682193784
Iteration: 18, Func. Count: 156, Neg. LLF: 87.62049841135806
Iteration: 19, Func. Count: 165, Neg. LLF: 87.62008372831288
Iteration: 20, Func. Count: 173, Neg. LLF: 87.61986237374671
Iteration: 21, Func. Count: 181, Neg. LLF: 87.619859132672
Iteration: 22, Func. Count: 188, Neg. LLF: 87.61985913680434
Optimization terminated successfully (Exit mode 0)
Current function value: 87.619859132672
Iterations: 22
Function evaluations: 188
Gradient evaluations: 22
Iteration: 1, Func. Count: 10, Neg. LLF: 286588027.55990136
Iteration: 2, Func. Count: 21, Neg. LLF: 140174536.42096817
Iteration: 3, Func. Count: 32, Neg. LLF: 110.54193045354006
Iteration: 4, Func. Count: 42, Neg. LLF: 91.14884695164926
Iteration: 5, Func. Count: 52, Neg. LLF: 90.0036669369872
Iteration: 6, Func. Count: 62, Neg. LLF: 87.94186466879593
Iteration: 7, Func. Count: 71, Neg. LLF: 88.47073617892843
Iteration: 8, Func. Count: 81, Neg. LLF: 88.2085217752288
Iteration: 9, Func. Count: 91, Neg. LLF: 88.08610483319117
Iteration: 10, Func. Count: 101, Neg. LLF: 87.68479733348059
Iteration: 11, Func. Count: 110, Neg. LLF: 87.68323580111173
Iteration: 12, Func. Count: 119, Neg. LLF: 87.68233778872616
Iteration: 13, Func. Count: 128, Neg. LLF: 87.68049417121588
Iteration: 14, Func. Count: 137, Neg. LLF: 87.67573842624579
Iteration: 15, Func. Count: 146, Neg. LLF: 87.67413468631456
Iteration: 16, Func. Count: 155, Neg. LLF: 87.67198847059392
Iteration: 17, Func. Count: 164, Neg. LLF: 87.67156246847445
Iteration: 18, Func. Count: 173, Neg. LLF: 87.6713387869524
Iteration: 19, Func. Count: 182, Neg. LLF: 87.67115861397298
Iteration: 20, Func. Count: 191, Neg. LLF: 87.67061747491438
Iteration: 21, Func. Count: 200, Neg. LLF: 87.66862469371682
Iteration: 22, Func. Count: 209, Neg. LLF: 87.6250889150327
Iteration: 23, Func. Count: 218, Neg. LLF: 87.6303821933134
Iteration: 24, Func. Count: 228, Neg. LLF: 87.62238749879027
Iteration: 25, Func. Count: 237, Neg. LLF: 87.62068824873919
Iteration: 26, Func. Count: 246, Neg. LLF: 87.6233912169814
Iteration: 27, Func. Count: 257, Neg. LLF: 87.62074100448771
Iteration: 28, Func. Count: 267, Neg. LLF: 19654175.670724258
Iteration: 29, Func. Count: 280, Neg. LLF: 87.95633346511637
Iteration: 30, Func. Count: 291, Neg. LLF: 88.0840781055892
Iteration: 31, Func. Count: 303, Neg. LLF: 87.61985897685042
Iteration: 32, Func. Count: 311, Neg. LLF: 87.6198589850294
Optimization terminated successfully (Exit mode 0)
Current function value: 87.61985897685042
Iterations: 33
Function evaluations: 311
Gradient evaluations: 32
Iteration: 1, Func. Count: 7, Neg. LLF: 116.80644906385662
Iteration: 2, Func. Count: 16, Neg. LLF: 28834045.951167457
Iteration: 3, Func. Count: 23, Neg. LLF: 4326504.220089676
Iteration: 4, Func. Count: 30, Neg. LLF: 90.0642467158347
Iteration: 5, Func. Count: 36, Neg. LLF: 91.38551123469198
Iteration: 6, Func. Count: 43, Neg. LLF: 89.95331027567832
Iteration: 7, Func. Count: 49, Neg. LLF: 89.95543221613448
Iteration: 8, Func. Count: 56, Neg. LLF: 89.94628781842657
Iteration: 9, Func. Count: 62, Neg. LLF: 89.9462637661104
Iteration: 10, Func. Count: 67, Neg. LLF: 89.94626376609497
Optimization terminated successfully (Exit mode 0)
Current function value: 89.9462637661104
Iterations: 10
Function evaluations: 67
Gradient evaluations: 10
Iteration: 1, Func. Count: 8, Neg. LLF: 129989248.68468373
Iteration: 2, Func. Count: 17, Neg. LLF: 95.0100067029149
Iteration: 3, Func. Count: 25, Neg. LLF: 105.13353859815427
Iteration: 4, Func. Count: 33, Neg. LLF: 101.06132699347647
Iteration: 5, Func. Count: 41, Neg. LLF: 88.45569775259938
Iteration: 6, Func. Count: 49, Neg. LLF: 87.96655038727972
Iteration: 7, Func. Count: 56, Neg. LLF: 93.42061489312243
Iteration: 8, Func. Count: 64, Neg. LLF: 112.74531825669878
Iteration: 9, Func. Count: 73, Neg. LLF: 87.66435131678682
Iteration: 10, Func. Count: 81, Neg. LLF: 87.66868197790426
Iteration: 11, Func. Count: 89, Neg. LLF: 87.57399842751794
Iteration: 12, Func. Count: 96, Neg. LLF: 87.57365693937075
Iteration: 13, Func. Count: 103, Neg. LLF: 87.57347103585124
Iteration: 14, Func. Count: 110, Neg. LLF: 87.57340498686878
Iteration: 15, Func. Count: 117, Neg. LLF: 87.57338348172722
Iteration: 16, Func. Count: 124, Neg. LLF: 87.5733812566004
Iteration: 17, Func. Count: 130, Neg. LLF: 87.57338125662176
Optimization terminated successfully (Exit mode 0)
Current function value: 87.5733812566004
Iterations: 17
Function evaluations: 130
Gradient evaluations: 17
Iteration: 1, Func. Count: 9, Neg. LLF: 264857925.00723696
Iteration: 2, Func. Count: 19, Neg. LLF: 1594272.75943999
Iteration: 3, Func. Count: 29, Neg. LLF: 94.63720650819394
Iteration: 4, Func. Count: 38, Neg. LLF: 87.58583749486415
Iteration: 5, Func. Count: 46, Neg. LLF: 86.42265065461602
Iteration: 6, Func. Count: 54, Neg. LLF: 86.2807787155801
Iteration: 7, Func. Count: 62, Neg. LLF: 86.18119068591851
Iteration: 8, Func. Count: 70, Neg. LLF: 86.04367178249535
Iteration: 9, Func. Count: 78, Neg. LLF: 85.91397866218624
Iteration: 10, Func. Count: 86, Neg. LLF: 85.89298233764919
Iteration: 11, Func. Count: 94, Neg. LLF: 85.88684233208897
Iteration: 12, Func. Count: 102, Neg. LLF: 85.88641244729672
Iteration: 13, Func. Count: 110, Neg. LLF: 85.88640284232372
Iteration: 14, Func. Count: 118, Neg. LLF: 85.88640094817762
Iteration: 15, Func. Count: 125, Neg. LLF: 85.88640094811997
Optimization terminated successfully (Exit mode 0)
Current function value: 85.88640094817762
Iterations: 15
Function evaluations: 125
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 237295938.0187988
Iteration: 2, Func. Count: 21, Neg. LLF: 113884165.70853479
Iteration: 3, Func. Count: 32, Neg. LLF: 169.6656910722526
Iteration: 4, Func. Count: 42, Neg. LLF: 94.41476112867545
Iteration: 5, Func. Count: 52, Neg. LLF: 92.5724491274414
Iteration: 6, Func. Count: 62, Neg. LLF: 90.43475931613327
Iteration: 7, Func. Count: 72, Neg. LLF: 89.4443605503268
Iteration: 8, Func. Count: 82, Neg. LLF: 87.57398063761195
Iteration: 9, Func. Count: 91, Neg. LLF: 88.1909819318383
Iteration: 10, Func. Count: 101, Neg. LLF: 87.89039427035948
Iteration: 11, Func. Count: 111, Neg. LLF: 87.46786964206146
Iteration: 12, Func. Count: 120, Neg. LLF: 87.4455504760665
Iteration: 13, Func. Count: 129, Neg. LLF: 87.44312688557068
Iteration: 14, Func. Count: 138, Neg. LLF: 87.44271753498062
Iteration: 15, Func. Count: 147, Neg. LLF: 87.44265223517182
Iteration: 16, Func. Count: 156, Neg. LLF: 87.44264937717901
Iteration: 17, Func. Count: 164, Neg. LLF: 87.4426493770269
Optimization terminated successfully (Exit mode 0)
Current function value: 87.44264937717901
Iterations: 17
Function evaluations: 164
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 221661864.62422565
Iteration: 2, Func. Count: 23, Neg. LLF: 108266634.94041681
Iteration: 3, Func. Count: 35, Neg. LLF: 137.43384487622163
Iteration: 4, Func. Count: 46, Neg. LLF: 87.33204564002195
Iteration: 5, Func. Count: 56, Neg. LLF: 86.8682835362641
Iteration: 6, Func. Count: 66, Neg. LLF: 89.59291038320166
Iteration: 7, Func. Count: 78, Neg. LLF: 85.46339889309434
Iteration: 8, Func. Count: 88, Neg. LLF: 85.31854046392134
Iteration: 9, Func. Count: 98, Neg. LLF: 85.31484960030681
Iteration: 10, Func. Count: 108, Neg. LLF: 85.3139421122992
Iteration: 11, Func. Count: 118, Neg. LLF: 85.31261629920549
Iteration: 12, Func. Count: 128, Neg. LLF: 85.3124549402595
Iteration: 13, Func. Count: 138, Neg. LLF: 85.31243439509065
Iteration: 14, Func. Count: 147, Neg. LLF: 85.31243439508752
Optimization terminated successfully (Exit mode 0)
Current function value: 85.31243439509065
Iterations: 14
Function evaluations: 147
Gradient evaluations: 14
Iteration: 1, Func. Count: 8, Neg. LLF: 118.54146267203258
Iteration: 2, Func. Count: 18, Neg. LLF: 30635609.119856317
Iteration: 3, Func. Count: 26, Neg. LLF: 4737078.718411887
Iteration: 4, Func. Count: 34, Neg. LLF: 90.11678018522127
Iteration: 5, Func. Count: 41, Neg. LLF: 90.76531335903918
Iteration: 6, Func. Count: 49, Neg. LLF: 89.95875061875915
Iteration: 7, Func. Count: 56, Neg. LLF: 89.94758079820404
Iteration: 8, Func. Count: 63, Neg. LLF: 89.94642589283666
Iteration: 9, Func. Count: 70, Neg. LLF: 89.9462742208364
Iteration: 10, Func. Count: 77, Neg. LLF: 89.94626381385605
Iteration: 11, Func. Count: 83, Neg. LLF: 89.94626392396603
Optimization terminated successfully (Exit mode 0)
Current function value: 89.94626381385605
Iterations: 11
Function evaluations: 83
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 63144082.58582214
Iteration: 2, Func. Count: 19, Neg. LLF: 206.97206054484994
Iteration: 3, Func. Count: 29, Neg. LLF: 101.22733533505749
Iteration: 4, Func. Count: 39, Neg. LLF: 105.09921067336595
Iteration: 5, Func. Count: 48, Neg. LLF: 101.049718318571
Iteration: 6, Func. Count: 57, Neg. LLF: 98.16929343570234
Iteration: 7, Func. Count: 66, Neg. LLF: 97.14843762335938
Iteration: 8, Func. Count: 75, Neg. LLF: 92.85470991583257
Iteration: 9, Func. Count: 84, Neg. LLF: 87.70823306359047
Iteration: 10, Func. Count: 92, Neg. LLF: 89.38279112789806
Iteration: 11, Func. Count: 102, Neg. LLF: 90.37019304686889
Iteration: 12, Func. Count: 112, Neg. LLF: 87.61663904153463
Iteration: 13, Func. Count: 121, Neg. LLF: 87.59675292218616
Iteration: 14, Func. Count: 129, Neg. LLF: 87.58966236731538
Iteration: 15, Func. Count: 137, Neg. LLF: 87.57357363968956
Iteration: 16, Func. Count: 145, Neg. LLF: 97.41874859808023
Iteration: 17, Func. Count: 157, Neg. LLF: 87.68755160805222
Iteration: 18, Func. Count: 167, Neg. LLF: 87.67149197285447
Iteration: 19, Func. Count: 177, Neg. LLF: 87.57565323103474
Iteration: 20, Func. Count: 186, Neg. LLF: 87.57338114998102
Iteration: 21, Func. Count: 193, Neg. LLF: 87.57338114999122
Optimization terminated successfully (Exit mode 0)
Current function value: 87.57338114998102
Iterations: 22
Function evaluations: 193
Gradient evaluations: 21
Iteration: 1, Func. Count: 10, Neg. LLF: 235593173.408788
Iteration: 2, Func. Count: 21, Neg. LLF: 3536155.3137281486
Iteration: 3, Func. Count: 32, Neg. LLF: 89.96190787359284
Iteration: 4, Func. Count: 42, Neg. LLF: 87.39647283340177
Iteration: 5, Func. Count: 51, Neg. LLF: 89.03260153580491
Iteration: 6, Func. Count: 61, Neg. LLF: 95.3758287235833
Iteration: 7, Func. Count: 72, Neg. LLF: 85.92123689513998
Iteration: 8, Func. Count: 81, Neg. LLF: 85.90440309461118
Iteration: 9, Func. Count: 90, Neg. LLF: 85.8954279805171
Iteration: 10, Func. Count: 99, Neg. LLF: 85.88722026671789
Iteration: 11, Func. Count: 108, Neg. LLF: 85.88643264856725
Iteration: 12, Func. Count: 117, Neg. LLF: 85.88640371990374
Iteration: 13, Func. Count: 126, Neg. LLF: 85.8864013274104
Iteration: 14, Func. Count: 134, Neg. LLF: 85.88640132732101
Optimization terminated successfully (Exit mode 0)
Current function value: 85.8864013274104
Iterations: 14
Function evaluations: 134
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 215925999.40315846
Iteration: 2, Func. Count: 23, Neg. LLF: 1131341.5018630899
Iteration: 3, Func. Count: 35, Neg. LLF: 113.62031483601832
Iteration: 4, Func. Count: 46, Neg. LLF: 95.62633130881065
Iteration: 5, Func. Count: 57, Neg. LLF: 97.94863554307791
Iteration: 6, Func. Count: 68, Neg. LLF: 93.44737914920744
Iteration: 7, Func. Count: 79, Neg. LLF: 90.66192029166436
Iteration: 8, Func. Count: 90, Neg. LLF: 88.03154567560735
Iteration: 9, Func. Count: 101, Neg. LLF: 88.84912575767977
Iteration: 10, Func. Count: 112, Neg. LLF: 87.47915371827058
Iteration: 11, Func. Count: 122, Neg. LLF: 87.50224968811932
Iteration: 12, Func. Count: 133, Neg. LLF: 87.46340847926966
Iteration: 13, Func. Count: 144, Neg. LLF: 87.44329514241966
Iteration: 14, Func. Count: 154, Neg. LLF: 87.44276136108081
Iteration: 15, Func. Count: 164, Neg. LLF: 87.44265084815312
Iteration: 16, Func. Count: 174, Neg. LLF: 87.442649054694
Iteration: 17, Func. Count: 183, Neg. LLF: 87.44264905462362
Optimization terminated successfully (Exit mode 0)
Current function value: 87.442649054694
Iterations: 17
Function evaluations: 183
Gradient evaluations: 17
Iteration: 1, Func. Count: 12, Neg. LLF: 199400491.31695968
Iteration: 2, Func. Count: 25, Neg. LLF: 1236084.9030546758
Iteration: 3, Func. Count: 38, Neg. LLF: 137.8859802538072
Iteration: 4, Func. Count: 50, Neg. LLF: 88.01661672694559
Iteration: 5, Func. Count: 61, Neg. LLF: 86.99741477283088
Iteration: 6, Func. Count: 72, Neg. LLF: 88.71745879513459
Iteration: 7, Func. Count: 84, Neg. LLF: 85.47846431988351
Iteration: 8, Func. Count: 95, Neg. LLF: 85.5232870427408
Iteration: 9, Func. Count: 107, Neg. LLF: 85.3155110094234
Iteration: 10, Func. Count: 118, Neg. LLF: 85.31377221630086
Iteration: 11, Func. Count: 129, Neg. LLF: 85.31284211682267
Iteration: 12, Func. Count: 140, Neg. LLF: 85.31248211691886
Iteration: 13, Func. Count: 151, Neg. LLF: 85.31243469797617
Iteration: 14, Func. Count: 162, Neg. LLF: 85.31243409329133
Optimization terminated successfully (Exit mode 0)
Current function value: 85.31243409329133
Iterations: 14
Function evaluations: 162
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 115.35259585542539
Iteration: 2, Func. Count: 20, Neg. LLF: 5718171.789489941
Iteration: 3, Func. Count: 29, Neg. LLF: 31694998.94314138
Iteration: 4, Func. Count: 38, Neg. LLF: 4293516.426290086
Iteration: 5, Func. Count: 47, Neg. LLF: 88.84010098324265
Iteration: 6, Func. Count: 55, Neg. LLF: 88.90445681474189
Iteration: 7, Func. Count: 64, Neg. LLF: 88.78018327489646
Iteration: 8, Func. Count: 72, Neg. LLF: 88.77589834846962
Iteration: 9, Func. Count: 80, Neg. LLF: 88.77425769264535
Iteration: 10, Func. Count: 88, Neg. LLF: 88.77321362917583
Iteration: 11, Func. Count: 96, Neg. LLF: 88.77267293151644
Iteration: 12, Func. Count: 104, Neg. LLF: 88.77259601453781
Iteration: 13, Func. Count: 112, Neg. LLF: 88.77259390411841
Iteration: 14, Func. Count: 119, Neg. LLF: 88.77259390411461
Optimization terminated successfully (Exit mode 0)
Current function value: 88.77259390411841
Iterations: 14
Function evaluations: 119
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 63421618.879076526
Iteration: 2, Func. Count: 21, Neg. LLF: 1180.7064791596451
Iteration: 3, Func. Count: 32, Neg. LLF: 102.40695183625651
Iteration: 4, Func. Count: 43, Neg. LLF: 91.90878082177967
Iteration: 5, Func. Count: 53, Neg. LLF: 91.19297801800863
Iteration: 6, Func. Count: 63, Neg. LLF: 90.12250185868541
Iteration: 7, Func. Count: 73, Neg. LLF: 87.87953145702792
Iteration: 8, Func. Count: 82, Neg. LLF: 90.19342106995332
Iteration: 9, Func. Count: 92, Neg. LLF: 91.04618277422429
Iteration: 10, Func. Count: 105, Neg. LLF: 87.59279522497272
Iteration: 11, Func. Count: 114, Neg. LLF: 87.54331973402611
Iteration: 12, Func. Count: 123, Neg. LLF: 87.53751304337865
Iteration: 13, Func. Count: 132, Neg. LLF: 87.53110422754017
Iteration: 14, Func. Count: 141, Neg. LLF: 87.5306091636008
Iteration: 15, Func. Count: 150, Neg. LLF: 87.53063415236514
Optimization terminated successfully (Exit mode 0)
Current function value: 87.53060920919278
Iterations: 15
Function evaluations: 151
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 264535635.7650476
Iteration: 2, Func. Count: 23, Neg. LLF: 1174840.347936099
Iteration: 3, Func. Count: 35, Neg. LLF: 97.17568873184436
Iteration: 4, Func. Count: 46, Neg. LLF: 87.50021539192969
Iteration: 5, Func. Count: 56, Neg. LLF: 86.47888926186917
Iteration: 6, Func. Count: 66, Neg. LLF: 87.8760453464194
Iteration: 7, Func. Count: 77, Neg. LLF: 86.29089685772391
Iteration: 8, Func. Count: 87, Neg. LLF: 86.1201400614098
Iteration: 9, Func. Count: 97, Neg. LLF: 86.22465619804358
Iteration: 10, Func. Count: 108, Neg. LLF: 86.04947363201026
Iteration: 11, Func. Count: 119, Neg. LLF: 85.88747315166619
Iteration: 12, Func. Count: 129, Neg. LLF: 85.88690208488316
Iteration: 13, Func. Count: 139, Neg. LLF: 85.88640441649554
Iteration: 14, Func. Count: 149, Neg. LLF: 85.88640135024454
Iteration: 15, Func. Count: 158, Neg. LLF: 85.88640135042806
Optimization terminated successfully (Exit mode 0)
Current function value: 85.88640135024454
Iterations: 15
Function evaluations: 158
Gradient evaluations: 15
Iteration: 1, Func. Count: 12, Neg. LLF: 239014943.65923226
Iteration: 2, Func. Count: 25, Neg. LLF: 1209322.3703690176
Iteration: 3, Func. Count: 38, Neg. LLF: 123.07034275697232
Iteration: 4, Func. Count: 50, Neg. LLF: 92.35505452516284
Iteration: 5, Func. Count: 62, Neg. LLF: 90.96512870348558
Iteration: 6, Func. Count: 74, Neg. LLF: 87.99547450228725
Iteration: 7, Func. Count: 86, Neg. LLF: 87.3185681974315
Iteration: 8, Func. Count: 97, Neg. LLF: 87.13871706411449
Iteration: 9, Func. Count: 108, Neg. LLF: 87.86709221972276
Iteration: 10, Func. Count: 121, Neg. LLF: 86.59618447197204
Iteration: 11, Func. Count: 132, Neg. LLF: 86.414856744485
Iteration: 12, Func. Count: 143, Neg. LLF: 86.3480781478846
Iteration: 13, Func. Count: 154, Neg. LLF: 86.28314342555839
Iteration: 14, Func. Count: 165, Neg. LLF: 86.1596682877769
Iteration: 15, Func. Count: 176, Neg. LLF: 85.9927545692723
Iteration: 16, Func. Count: 187, Neg. LLF: 85.91217354667195
Iteration: 17, Func. Count: 198, Neg. LLF: 85.89060429031265
Iteration: 18, Func. Count: 209, Neg. LLF: 85.88673298095678
Iteration: 19, Func. Count: 220, Neg. LLF: 85.88646186226559
Iteration: 20, Func. Count: 231, Neg. LLF: 85.88642186410912
Iteration: 21, Func. Count: 242, Neg. LLF: 85.88641039056314
Iteration: 22, Func. Count: 253, Neg. LLF: 85.88640396732546
Iteration: 23, Func. Count: 264, Neg. LLF: 85.88640149010274
Iteration: 24, Func. Count: 275, Neg. LLF: 85.89031703141356
Optimization terminated successfully (Exit mode 0)
Current function value: 85.88640148946119
Iterations: 25
Function evaluations: 278
Gradient evaluations: 24
Iteration: 1, Func. Count: 13, Neg. LLF: 227778293.35601828
Iteration: 2, Func. Count: 27, Neg. LLF: 1279332.3604724735
Iteration: 3, Func. Count: 41, Neg. LLF: 142.7111517593798
Iteration: 4, Func. Count: 54, Neg. LLF: 156.1726017925098
Iteration: 5, Func. Count: 67, Neg. LLF: 86.27476992170665
Iteration: 6, Func. Count: 79, Neg. LLF: 85.61110197468587
Iteration: 7, Func. Count: 91, Neg. LLF: 87.25303225997074
Iteration: 8, Func. Count: 105, Neg. LLF: 85.39249030734008
Iteration: 9, Func. Count: 117, Neg. LLF: 85.15914852755809
Iteration: 10, Func. Count: 129, Neg. LLF: 85.14678384571299
Iteration: 11, Func. Count: 141, Neg. LLF: 85.10900663795867
Iteration: 12, Func. Count: 153, Neg. LLF: 85.10735461766035
Iteration: 13, Func. Count: 165, Neg. LLF: 85.10622627074264
Iteration: 14, Func. Count: 177, Neg. LLF: 85.1061788266413
Iteration: 15, Func. Count: 189, Neg. LLF: 85.1061766819375
Iteration: 16, Func. Count: 200, Neg. LLF: 85.10617668192829
Optimization terminated successfully (Exit mode 0)
Current function value: 85.1061766819375
Iterations: 16
Function evaluations: 200
Gradient evaluations: 16
Iteration: 1, Func. Count: 6, Neg. LLF: 128.02476900569226
Iteration: 2, Func. Count: 14, Neg. LLF: 128.19133450466342
Iteration: 3, Func. Count: 20, Neg. LLF: 2163.0124372860937
Iteration: 4, Func. Count: 26, Neg. LLF: 88.87051593479227
Iteration: 5, Func. Count: 31, Neg. LLF: 88.80773672043559
Iteration: 6, Func. Count: 36, Neg. LLF: 88.78641407278775
Iteration: 7, Func. Count: 41, Neg. LLF: 88.7861255551456
Iteration: 8, Func. Count: 46, Neg. LLF: 88.7860315136142
Iteration: 9, Func. Count: 51, Neg. LLF: 88.78599423178711
Iteration: 10, Func. Count: 56, Neg. LLF: 88.78599149882767
Iteration: 11, Func. Count: 60, Neg. LLF: 88.78599149882237
Optimization terminated successfully (Exit mode 0)
Current function value: 88.78599149882767
Iterations: 11
Function evaluations: 60
Gradient evaluations: 11
Iteration: 1, Func. Count: 7, Neg. LLF: 42893392.31924187
Iteration: 2, Func. Count: 15, Neg. LLF: 106.81334846051574
Iteration: 3, Func. Count: 23, Neg. LLF: 105.7604958443754
Iteration: 4, Func. Count: 30, Neg. LLF: 119.86340672577103
Iteration: 5, Func. Count: 37, Neg. LLF: 89.19835946309263
Iteration: 6, Func. Count: 44, Neg. LLF: 93.004167005445
Iteration: 7, Func. Count: 51, Neg. LLF: 88.0260239954374
Iteration: 8, Func. Count: 57, Neg. LLF: 97.1666583189863
Iteration: 9, Func. Count: 65, Neg. LLF: 91.18620700924352
Iteration: 10, Func. Count: 73, Neg. LLF: 87.8877099098751
Iteration: 11, Func. Count: 79, Neg. LLF: 87.75876049483703
Iteration: 12, Func. Count: 85, Neg. LLF: 87.67592305881084
Iteration: 13, Func. Count: 91, Neg. LLF: 87.62573859625181
Iteration: 14, Func. Count: 97, Neg. LLF: 87.62002555357392
Iteration: 15, Func. Count: 103, Neg. LLF: 87.61986408794543
Iteration: 16, Func. Count: 109, Neg. LLF: 87.61985901939121
Iteration: 17, Func. Count: 114, Neg. LLF: 87.61985901979479
Optimization terminated successfully (Exit mode 0)
Current function value: 87.61985901939121
Iterations: 17
Function evaluations: 114
Gradient evaluations: 17
Iteration: 1, Func. Count: 8, Neg. LLF: 78887592.61156264
Iteration: 2, Func. Count: 17, Neg. LLF: 144.2724328204941
Iteration: 3, Func. Count: 26, Neg. LLF: 89.65060545988355
Iteration: 4, Func. Count: 35, Neg. LLF: 89.61472191667126
Iteration: 5, Func. Count: 43, Neg. LLF: 87.06526468781657
Iteration: 6, Func. Count: 50, Neg. LLF: 86.80314903578737
Iteration: 7, Func. Count: 57, Neg. LLF: 86.64720835012186
Iteration: 8, Func. Count: 64, Neg. LLF: 86.44042037171094
Iteration: 9, Func. Count: 71, Neg. LLF: 88.03209751222695
Iteration: 10, Func. Count: 79, Neg. LLF: 86.9323239799836
Iteration: 11, Func. Count: 87, Neg. LLF: 86.56737785128414
Iteration: 12, Func. Count: 95, Neg. LLF: 86.34861859426302
Iteration: 13, Func. Count: 102, Neg. LLF: 86.34560919946709
Iteration: 14, Func. Count: 109, Neg. LLF: 86.34555145308447
Iteration: 15, Func. Count: 116, Neg. LLF: 86.34551047470026
Iteration: 16, Func. Count: 123, Neg. LLF: 86.34550201096727
Iteration: 17, Func. Count: 129, Neg. LLF: 86.34550201114018
Optimization terminated successfully (Exit mode 0)
Current function value: 86.34550201096727
Iterations: 17
Function evaluations: 129
Gradient evaluations: 17
Iteration: 1, Func. Count: 9, Neg. LLF: 72399838.87612613
Iteration: 2, Func. Count: 19, Neg. LLF: 620.6771623349238
Iteration: 3, Func. Count: 30, Neg. LLF: 88.75408758906202
Iteration: 4, Func. Count: 39, Neg. LLF: 89.37781821776079
Iteration: 5, Func. Count: 48, Neg. LLF: 89.56608197464986
Iteration: 6, Func. Count: 57, Neg. LLF: 88.00907345966512
Iteration: 7, Func. Count: 66, Neg. LLF: 87.0145063631132
Iteration: 8, Func. Count: 74, Neg. LLF: 87.16402733174505
Iteration: 9, Func. Count: 83, Neg. LLF: 86.64972125613852
Iteration: 10, Func. Count: 92, Neg. LLF: 86.36359750271579
Iteration: 11, Func. Count: 100, Neg. LLF: 86.35435040621441
Iteration: 12, Func. Count: 108, Neg. LLF: 86.34742632020968
Iteration: 13, Func. Count: 116, Neg. LLF: 86.34566420920382
Iteration: 14, Func. Count: 124, Neg. LLF: 86.34551806630981
Iteration: 15, Func. Count: 132, Neg. LLF: 86.34550200307625
Iteration: 16, Func. Count: 139, Neg. LLF: 86.34550208543772
Optimization terminated successfully (Exit mode 0)
Current function value: 86.34550200307625
Iterations: 16
Function evaluations: 139
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 62728336.54102944
Iteration: 2, Func. Count: 21, Neg. LLF: 232661311.27159527
Iteration: 3, Func. Count: 33, Neg. LLF: 97.6365195374611
Iteration: 4, Func. Count: 43, Neg. LLF: 88.91340333381058
Iteration: 5, Func. Count: 53, Neg. LLF: 87.10176066318186
Iteration: 6, Func. Count: 62, Neg. LLF: 86.59301339459611
Iteration: 7, Func. Count: 71, Neg. LLF: 86.76582226529348
Iteration: 8, Func. Count: 81, Neg. LLF: 86.52098241318893
Iteration: 9, Func. Count: 91, Neg. LLF: 86.48225477313055
Iteration: 10, Func. Count: 101, Neg. LLF: 86.39680645639493
Iteration: 11, Func. Count: 110, Neg. LLF: 86.36402202896642
Iteration: 12, Func. Count: 119, Neg. LLF: 86.34802307355251
Iteration: 13, Func. Count: 128, Neg. LLF: 86.34582841123073
Iteration: 14, Func. Count: 137, Neg. LLF: 86.3455263558509
Iteration: 15, Func. Count: 146, Neg. LLF: 86.34551323552168
Iteration: 16, Func. Count: 155, Neg. LLF: 86.34550187316539
Iteration: 17, Func. Count: 163, Neg. LLF: 86.34550187606982
Optimization terminated successfully (Exit mode 0)
Current function value: 86.34550187316539
Iterations: 17
Function evaluations: 163
Gradient evaluations: 17
Iteration: 1, Func. Count: 7, Neg. LLF: 132.01546615694312
Iteration: 2, Func. Count: 16, Neg. LLF: 126.20280599132286
Iteration: 3, Func. Count: 23, Neg. LLF: 2472.9631245372775
Iteration: 4, Func. Count: 30, Neg. LLF: 88.94128203751498
Iteration: 5, Func. Count: 36, Neg. LLF: 146.35207941942372
Iteration: 6, Func. Count: 44, Neg. LLF: 88.84280424721014
Iteration: 7, Func. Count: 51, Neg. LLF: 88.69428535005073
Iteration: 8, Func. Count: 57, Neg. LLF: 88.69020245901592
Iteration: 9, Func. Count: 63, Neg. LLF: 88.6893274004262
Iteration: 10, Func. Count: 69, Neg. LLF: 88.68912776425736
Iteration: 11, Func. Count: 75, Neg. LLF: 88.68912249673262
Iteration: 12, Func. Count: 80, Neg. LLF: 88.68912249672114
Optimization terminated successfully (Exit mode 0)
Current function value: 88.68912249673262
Iterations: 12
Function evaluations: 80
Gradient evaluations: 12
Iteration: 1, Func. Count: 8, Neg. LLF: 51564519.63653118
Iteration: 2, Func. Count: 17, Neg. LLF: 99.79455138496627
Iteration: 3, Func. Count: 26, Neg. LLF: 99.41921594057072
Iteration: 4, Func. Count: 35, Neg. LLF: 121.20377395632715
Iteration: 5, Func. Count: 43, Neg. LLF: 117.08438678183737
Iteration: 6, Func. Count: 51, Neg. LLF: 113.27029131946098
Iteration: 7, Func. Count: 59, Neg. LLF: 107.57274976415381
Iteration: 8, Func. Count: 67, Neg. LLF: 88.21116347411214
Iteration: 9, Func. Count: 74, Neg. LLF: 88.03965485261517
Iteration: 10, Func. Count: 81, Neg. LLF: 88.02557398101924
Iteration: 11, Func. Count: 88, Neg. LLF: 87.99886918229072
Iteration: 12, Func. Count: 95, Neg. LLF: 88.28904197487047
Iteration: 13, Func. Count: 103, Neg. LLF: 89.04177612709275
Iteration: 14, Func. Count: 111, Neg. LLF: 88.28801589755382
Iteration: 15, Func. Count: 119, Neg. LLF: 87.79583221799408
Iteration: 16, Func. Count: 126, Neg. LLF: 89.29037776367889
Iteration: 17, Func. Count: 134, Neg. LLF: 90.2407742499744
Iteration: 18, Func. Count: 142, Neg. LLF: 87.646994489841
Iteration: 19, Func. Count: 149, Neg. LLF: 87.71932510128913
Iteration: 20, Func. Count: 157, Neg. LLF: 87.61993141450506
Iteration: 21, Func. Count: 164, Neg. LLF: 87.6198593293773
Iteration: 22, Func. Count: 170, Neg. LLF: 87.61985932820592
Optimization terminated successfully (Exit mode 0)
Current function value: 87.6198593293773
Iterations: 22
Function evaluations: 170
Gradient evaluations: 22
Iteration: 1, Func. Count: 9, Neg. LLF: 87593734.10845341
Iteration: 2, Func. Count: 19, Neg. LLF: 149.32018201775745
Iteration: 3, Func. Count: 29, Neg. LLF: 90.8157082404821
Iteration: 4, Func. Count: 39, Neg. LLF: 89.62417743634103
Iteration: 5, Func. Count: 48, Neg. LLF: 86.86664748444285
Iteration: 6, Func. Count: 56, Neg. LLF: 89.2559346303639
Iteration: 7, Func. Count: 65, Neg. LLF: 86.65555204511288
Iteration: 8, Func. Count: 73, Neg. LLF: 86.53490697106616
Iteration: 9, Func. Count: 81, Neg. LLF: 93.00217827403814
Iteration: 10, Func. Count: 90, Neg. LLF: 88.35039382338323
Iteration: 11, Func. Count: 99, Neg. LLF: 87.33902186611996
Iteration: 12, Func. Count: 108, Neg. LLF: 86.86915772974571
Iteration: 13, Func. Count: 117, Neg. LLF: 86.51308969784493
Iteration: 14, Func. Count: 126, Neg. LLF: 86.34953301658959
Iteration: 15, Func. Count: 134, Neg. LLF: 86.34627810507952
Iteration: 16, Func. Count: 142, Neg. LLF: 86.34616707175215
Iteration: 17, Func. Count: 151, Neg. LLF: 86.34556759216018
Iteration: 18, Func. Count: 159, Neg. LLF: 86.3455036544416
Iteration: 19, Func. Count: 167, Neg. LLF: 86.34550191373904
Iteration: 20, Func. Count: 174, Neg. LLF: 86.34550191351943
Optimization terminated successfully (Exit mode 0)
Current function value: 86.34550191373904
Iterations: 20
Function evaluations: 174
Gradient evaluations: 20
Iteration: 1, Func. Count: 10, Neg. LLF: 81761901.17857899
Iteration: 2, Func. Count: 21, Neg. LLF: 423.0884332041499
Iteration: 3, Func. Count: 32, Neg. LLF: 89.47417396988452
Iteration: 4, Func. Count: 42, Neg. LLF: 89.1178143332813
Iteration: 5, Func. Count: 52, Neg. LLF: 89.56692503636172
Iteration: 6, Func. Count: 62, Neg. LLF: 87.8023178211611
Iteration: 7, Func. Count: 72, Neg. LLF: 87.02526421689534
Iteration: 8, Func. Count: 81, Neg. LLF: 86.52789549413414
Iteration: 9, Func. Count: 90, Neg. LLF: 86.57093941452771
Iteration: 10, Func. Count: 100, Neg. LLF: 86.37571463121097
Iteration: 11, Func. Count: 109, Neg. LLF: 86.35389969990399
Iteration: 12, Func. Count: 118, Neg. LLF: 86.34715788754593
Iteration: 13, Func. Count: 127, Neg. LLF: 86.34604464554697
Iteration: 14, Func. Count: 136, Neg. LLF: 86.34551155563871
Iteration: 15, Func. Count: 145, Neg. LLF: 86.34550256695843
Iteration: 16, Func. Count: 154, Neg. LLF: 86.345501661659
Optimization terminated successfully (Exit mode 0)
Current function value: 86.345501661659
Iterations: 16
Function evaluations: 154
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 71184833.14131495
Iteration: 2, Func. Count: 23, Neg. LLF: 184386789.5248302
Iteration: 3, Func. Count: 35, Neg. LLF: 97.24717547536555
Iteration: 4, Func. Count: 46, Neg. LLF: 88.89056544633291
Iteration: 5, Func. Count: 57, Neg. LLF: 87.16857216516097
Iteration: 6, Func. Count: 67, Neg. LLF: 86.46801077385523
Iteration: 7, Func. Count: 77, Neg. LLF: 88.91591994843033
Iteration: 8, Func. Count: 88, Neg. LLF: 86.42872704521467
Iteration: 9, Func. Count: 99, Neg. LLF: 86.3935843159275
Iteration: 10, Func. Count: 109, Neg. LLF: 86.37392504602691
Iteration: 11, Func. Count: 119, Neg. LLF: 86.36290510021631
Iteration: 12, Func. Count: 129, Neg. LLF: 86.3481323146264
Iteration: 13, Func. Count: 139, Neg. LLF: 86.34591298362331
Iteration: 14, Func. Count: 149, Neg. LLF: 86.34550891015122
Iteration: 15, Func. Count: 159, Neg. LLF: 86.34550258729875
Iteration: 16, Func. Count: 169, Neg. LLF: 86.34550167629462
Optimization terminated successfully (Exit mode 0)
Current function value: 86.34550167629462
Iterations: 16
Function evaluations: 169
Gradient evaluations: 16
Iteration: 1, Func. Count: 8, Neg. LLF: 129.65298189111468
Iteration: 2, Func. Count: 17, Neg. LLF: 115.50593270652335
Iteration: 3, Func. Count: 25, Neg. LLF: 4436.561125486977
Iteration: 4, Func. Count: 33, Neg. LLF: 89.0983222752541
Iteration: 5, Func. Count: 40, Neg. LLF: 205858.57654689983
Iteration: 6, Func. Count: 49, Neg. LLF: 91.17831100841265
Iteration: 7, Func. Count: 57, Neg. LLF: 88.69086833038598
Iteration: 8, Func. Count: 64, Neg. LLF: 88.75729389737937
Iteration: 9, Func. Count: 72, Neg. LLF: 88.66557450309459
Iteration: 10, Func. Count: 79, Neg. LLF: 88.66443338773125
Iteration: 11, Func. Count: 86, Neg. LLF: 88.66423416900902
Iteration: 12, Func. Count: 93, Neg. LLF: 88.66421146564501
Iteration: 13, Func. Count: 99, Neg. LLF: 88.66421146564906
Optimization terminated successfully (Exit mode 0)
Current function value: 88.66421146564501
Iterations: 13
Function evaluations: 99
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 50391143.24976882
Iteration: 2, Func. Count: 19, Neg. LLF: 99.24737750521149
Iteration: 3, Func. Count: 29, Neg. LLF: 102.2147760874943
Iteration: 4, Func. Count: 39, Neg. LLF: 121.82426376306915
Iteration: 5, Func. Count: 48, Neg. LLF: 119.99676472319427
Iteration: 6, Func. Count: 57, Neg. LLF: 116.5166503780825
Iteration: 7, Func. Count: 66, Neg. LLF: 89.67183642204459
Iteration: 8, Func. Count: 75, Neg. LLF: 88.7779719854023
Iteration: 9, Func. Count: 84, Neg. LLF: 88.06659938173917
Iteration: 10, Func. Count: 92, Neg. LLF: 88.02381890438078
Iteration: 11, Func. Count: 100, Neg. LLF: 87.99667403738324
Iteration: 12, Func. Count: 108, Neg. LLF: 88.33362040052245
Iteration: 13, Func. Count: 117, Neg. LLF: 88.07762994154211
Iteration: 14, Func. Count: 126, Neg. LLF: 88.53990151873866
Iteration: 15, Func. Count: 135, Neg. LLF: 87.69836887980884
Iteration: 16, Func. Count: 143, Neg. LLF: 88.6604385244281
Iteration: 17, Func. Count: 152, Neg. LLF: 87.61939300012433
Iteration: 18, Func. Count: 160, Neg. LLF: 87.62642262089024
Iteration: 19, Func. Count: 169, Neg. LLF: 87.5735880416067
Iteration: 20, Func. Count: 177, Neg. LLF: 87.5734511859901
Iteration: 21, Func. Count: 185, Neg. LLF: 87.5733823265722
Iteration: 22, Func. Count: 193, Neg. LLF: 87.57338117908476
Iteration: 23, Func. Count: 200, Neg. LLF: 87.57338117910561
Optimization terminated successfully (Exit mode 0)
Current function value: 87.57338117908476
Iterations: 23
Function evaluations: 200
Gradient evaluations: 23
Iteration: 1, Func. Count: 10, Neg. LLF: 131128390.57625274
Iteration: 2, Func. Count: 21, Neg. LLF: 802.2722337572477
Iteration: 3, Func. Count: 32, Neg. LLF: 98.40693603480436
Iteration: 4, Func. Count: 43, Neg. LLF: 86.97719039895703
Iteration: 5, Func. Count: 52, Neg. LLF: 86.62022762791128
Iteration: 6, Func. Count: 61, Neg. LLF: 86.54861018822847
Iteration: 7, Func. Count: 70, Neg. LLF: 89.32515103411833
Iteration: 8, Func. Count: 80, Neg. LLF: 86.58796396745952
Iteration: 9, Func. Count: 90, Neg. LLF: 86.03480753568725
Iteration: 10, Func. Count: 99, Neg. LLF: 86.06556702651837
Iteration: 11, Func. Count: 109, Neg. LLF: 85.94631906390781
Iteration: 12, Func. Count: 118, Neg. LLF: 85.89236932189601
Iteration: 13, Func. Count: 127, Neg. LLF: 85.88680925712012
Iteration: 14, Func. Count: 136, Neg. LLF: 85.88672501490414
Iteration: 15, Func. Count: 146, Neg. LLF: 85.88643357139647
Iteration: 16, Func. Count: 155, Neg. LLF: 85.88640094350778
Iteration: 17, Func. Count: 163, Neg. LLF: 85.88640094346653
Optimization terminated successfully (Exit mode 0)
Current function value: 85.88640094350778
Iterations: 17
Function evaluations: 163
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 79891886.74131398
Iteration: 2, Func. Count: 23, Neg. LLF: 135.82087811964362
Iteration: 3, Func. Count: 35, Neg. LLF: 153.95353026339185
Iteration: 4, Func. Count: 47, Neg. LLF: 89.50214627583397
Iteration: 5, Func. Count: 58, Neg. LLF: 87.63191037372113
Iteration: 6, Func. Count: 68, Neg. LLF: 90.27700241334318
Iteration: 7, Func. Count: 79, Neg. LLF: 86.95593631802357
Iteration: 8, Func. Count: 89, Neg. LLF: 87.80387559864037
Iteration: 9, Func. Count: 100, Neg. LLF: 86.7238424213634
Iteration: 10, Func. Count: 111, Neg. LLF: 86.3928436646304
Iteration: 11, Func. Count: 122, Neg. LLF: 86.13162941906923
Iteration: 12, Func. Count: 132, Neg. LLF: 86.52261220195467
Iteration: 13, Func. Count: 143, Neg. LLF: 85.95722774875547
Iteration: 14, Func. Count: 153, Neg. LLF: 85.9742837158839
Iteration: 15, Func. Count: 164, Neg. LLF: 85.88817686076895
Iteration: 16, Func. Count: 174, Neg. LLF: 85.88660216082828
Iteration: 17, Func. Count: 184, Neg. LLF: 85.88641361721606
Iteration: 18, Func. Count: 194, Neg. LLF: 85.88640101119493
Iteration: 19, Func. Count: 203, Neg. LLF: 85.88640118739953
Optimization terminated successfully (Exit mode 0)
Current function value: 85.88640101119493
Iterations: 19
Function evaluations: 203
Gradient evaluations: 19
Iteration: 1, Func. Count: 12, Neg. LLF: 211371754.81366533
Iteration: 2, Func. Count: 25, Neg. LLF: 72829319.0750967
Iteration: 3, Func. Count: 38, Neg. LLF: 100.02711513242436
Iteration: 4, Func. Count: 50, Neg. LLF: 87.26310393341156
Iteration: 5, Func. Count: 61, Neg. LLF: 87.18818155651901
Iteration: 6, Func. Count: 73, Neg. LLF: 96.37956387400826
Iteration: 7, Func. Count: 85, Neg. LLF: 85.97144179886713
Iteration: 8, Func. Count: 96, Neg. LLF: 85.46749222555296
Iteration: 9, Func. Count: 107, Neg. LLF: 85.3353410689195
Iteration: 10, Func. Count: 118, Neg. LLF: 85.3303201275011
Iteration: 11, Func. Count: 130, Neg. LLF: 85.3135052692521
Iteration: 12, Func. Count: 141, Neg. LLF: 85.31281921576854
Iteration: 13, Func. Count: 152, Neg. LLF: 85.31251514311663
Iteration: 14, Func. Count: 163, Neg. LLF: 85.31243576527135
Iteration: 15, Func. Count: 174, Neg. LLF: 85.3124341169149
Iteration: 16, Func. Count: 184, Neg. LLF: 85.31243411695067
Optimization terminated successfully (Exit mode 0)
Current function value: 85.3124341169149
Iterations: 16
Function evaluations: 184
Gradient evaluations: 16
Iteration: 1, Func. Count: 9, Neg. LLF: 129.19944527671302
Iteration: 2, Func. Count: 19, Neg. LLF: 118.92028774867326
Iteration: 3, Func. Count: 28, Neg. LLF: 32705.522978375906
Iteration: 4, Func. Count: 37, Neg. LLF: 89.36982525401199
Iteration: 5, Func. Count: 45, Neg. LLF: 2256.513340926084
Iteration: 6, Func. Count: 55, Neg. LLF: 94.18634707313817
Iteration: 7, Func. Count: 65, Neg. LLF: 88.92626769124227
Iteration: 8, Func. Count: 74, Neg. LLF: 88.66990857471814
Iteration: 9, Func. Count: 82, Neg. LLF: 88.66769600183646
Iteration: 10, Func. Count: 90, Neg. LLF: 88.66559513629566
Iteration: 11, Func. Count: 98, Neg. LLF: 88.66460585676376
Iteration: 12, Func. Count: 106, Neg. LLF: 88.66425195916017
Iteration: 13, Func. Count: 114, Neg. LLF: 88.66421191003086
Iteration: 14, Func. Count: 122, Neg. LLF: 88.66421109100443
Optimization terminated successfully (Exit mode 0)
Current function value: 88.66421109100443
Iterations: 14
Function evaluations: 122
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 50206585.400217265
Iteration: 2, Func. Count: 21, Neg. LLF: 99.07365206381922
Iteration: 3, Func. Count: 32, Neg. LLF: 101.74043723468411
Iteration: 4, Func. Count: 43, Neg. LLF: 121.266980063294
Iteration: 5, Func. Count: 53, Neg. LLF: 119.44395563166312
Iteration: 6, Func. Count: 63, Neg. LLF: 114.64593010286893
Iteration: 7, Func. Count: 73, Neg. LLF: 90.41012989952713
Iteration: 8, Func. Count: 83, Neg. LLF: 88.59888334057915
Iteration: 9, Func. Count: 93, Neg. LLF: 88.32246646522434
Iteration: 10, Func. Count: 103, Neg. LLF: 88.0193476239757
Iteration: 11, Func. Count: 112, Neg. LLF: 87.94928868969777
Iteration: 12, Func. Count: 121, Neg. LLF: 87.75838156172934
Iteration: 13, Func. Count: 130, Neg. LLF: 87.60465192100443
Iteration: 14, Func. Count: 139, Neg. LLF: 87.58850105308633
Iteration: 15, Func. Count: 148, Neg. LLF: 87.57388854834026
Iteration: 16, Func. Count: 157, Neg. LLF: 87.582519739296
Iteration: 17, Func. Count: 167, Neg. LLF: 87.57338376790645
Iteration: 18, Func. Count: 176, Neg. LLF: 87.57338141221649
Iteration: 19, Func. Count: 184, Neg. LLF: 87.57338141142588
Optimization terminated successfully (Exit mode 0)
Current function value: 87.57338141221649
Iterations: 19
Function evaluations: 184
Gradient evaluations: 19
Iteration: 1, Func. Count: 11, Neg. LLF: 85315506.88131788
Iteration: 2, Func. Count: 23, Neg. LLF: 173.56039037526332
Iteration: 3, Func. Count: 35, Neg. LLF: 94.10112877853871
Iteration: 4, Func. Count: 46, Neg. LLF: 93.87169758143835
Iteration: 5, Func. Count: 57, Neg. LLF: 89.44147299931691
Iteration: 6, Func. Count: 68, Neg. LLF: 86.7767677820959
Iteration: 7, Func. Count: 78, Neg. LLF: 86.44977942501774
Iteration: 8, Func. Count: 88, Neg. LLF: 86.28404857244918
Iteration: 9, Func. Count: 98, Neg. LLF: 86.20706011780179
Iteration: 10, Func. Count: 109, Neg. LLF: 85.93563772073693
Iteration: 11, Func. Count: 119, Neg. LLF: 85.8996289763815
Iteration: 12, Func. Count: 129, Neg. LLF: 85.89351052653838
Iteration: 13, Func. Count: 139, Neg. LLF: 85.89224285275253
Iteration: 14, Func. Count: 150, Neg. LLF: 85.88653529159461
Iteration: 15, Func. Count: 160, Neg. LLF: 85.8864148028437
Iteration: 16, Func. Count: 170, Neg. LLF: 85.88640094614387
Iteration: 17, Func. Count: 179, Neg. LLF: 85.88640094614868
Optimization terminated successfully (Exit mode 0)
Current function value: 85.88640094614387
Iterations: 17
Function evaluations: 179
Gradient evaluations: 17
Iteration: 1, Func. Count: 12, Neg. LLF: 79180399.80705263
Iteration: 2, Func. Count: 25, Neg. LLF: 134.40835509157893
Iteration: 3, Func. Count: 38, Neg. LLF: 155.7440678361057
Iteration: 4, Func. Count: 51, Neg. LLF: 89.52288833276442
Iteration: 5, Func. Count: 63, Neg. LLF: 87.6733001380482
Iteration: 6, Func. Count: 74, Neg. LLF: 90.2032127368553
Iteration: 7, Func. Count: 86, Neg. LLF: 86.92085467154745
Iteration: 8, Func. Count: 97, Neg. LLF: 87.79789286297778
Iteration: 9, Func. Count: 109, Neg. LLF: 86.74840460814038
Iteration: 10, Func. Count: 121, Neg. LLF: 86.41281958051214
Iteration: 11, Func. Count: 133, Neg. LLF: 86.13984029653304
Iteration: 12, Func. Count: 144, Neg. LLF: 86.22293218082847
Iteration: 13, Func. Count: 156, Neg. LLF: 85.94580216479825
Iteration: 14, Func. Count: 167, Neg. LLF: 85.91682622805716
Iteration: 15, Func. Count: 178, Neg. LLF: 85.89057883057025
Iteration: 16, Func. Count: 189, Neg. LLF: 85.886919486924
Iteration: 17, Func. Count: 200, Neg. LLF: 85.88652278834952
Iteration: 18, Func. Count: 211, Neg. LLF: 85.88640599945384
Iteration: 19, Func. Count: 222, Neg. LLF: 85.88640100244945
Iteration: 20, Func. Count: 232, Neg. LLF: 85.88640117862593
Optimization terminated successfully (Exit mode 0)
Current function value: 85.88640100244945
Iterations: 20
Function evaluations: 232
Gradient evaluations: 20
Iteration: 1, Func. Count: 13, Neg. LLF: 69104949.99824877
Iteration: 2, Func. Count: 27, Neg. LLF: 1065667.398038607
Iteration: 3, Func. Count: 41, Neg. LLF: 157.86952271887833
Iteration: 4, Func. Count: 54, Neg. LLF: 88.3157331419628
Iteration: 5, Func. Count: 67, Neg. LLF: 87.04294444326855
Iteration: 6, Func. Count: 79, Neg. LLF: 86.65961990754836
Iteration: 7, Func. Count: 91, Neg. LLF: 86.74718594767589
Iteration: 8, Func. Count: 104, Neg. LLF: 86.09065772446876
Iteration: 9, Func. Count: 116, Neg. LLF: 85.61821784311542
Iteration: 10, Func. Count: 128, Neg. LLF: 85.6319325945265
Iteration: 11, Func. Count: 141, Neg. LLF: 85.46322613410787
Iteration: 12, Func. Count: 153, Neg. LLF: 85.36209330598219
Iteration: 13, Func. Count: 165, Neg. LLF: 85.33818947821028
Iteration: 14, Func. Count: 177, Neg. LLF: 85.31474424825605
Iteration: 15, Func. Count: 189, Neg. LLF: 85.312565921574
Iteration: 16, Func. Count: 201, Neg. LLF: 85.31244460871125
Iteration: 17, Func. Count: 213, Neg. LLF: 85.31243419810784
Iteration: 18, Func. Count: 224, Neg. LLF: 85.31243419798436
Optimization terminated successfully (Exit mode 0)
Current function value: 85.31243419810784
Iterations: 18
Function evaluations: 224
Gradient evaluations: 18
Iteration: 1, Func. Count: 10, Neg. LLF: 141.59110129754603
Iteration: 2, Func. Count: 21, Neg. LLF: 110.82958920351744
Iteration: 3, Func. Count: 32, Neg. LLF: 57805.82520768477
Iteration: 4, Func. Count: 42, Neg. LLF: 569.9766727362252
Iteration: 5, Func. Count: 52, Neg. LLF: 87.83717675398502
Iteration: 6, Func. Count: 61, Neg. LLF: 197.40179395829642
Iteration: 7, Func. Count: 71, Neg. LLF: 89.29638275621912
Iteration: 8, Func. Count: 81, Neg. LLF: 87.96984400353371
Iteration: 9, Func. Count: 91, Neg. LLF: 87.58488603334527
Iteration: 10, Func. Count: 100, Neg. LLF: 87.58174476320862
Iteration: 11, Func. Count: 109, Neg. LLF: 87.58138982818275
Iteration: 12, Func. Count: 118, Neg. LLF: 87.58134557786826
Iteration: 13, Func. Count: 127, Neg. LLF: 87.58133609541491
Iteration: 14, Func. Count: 136, Neg. LLF: 87.58133428440667
Iteration: 15, Func. Count: 144, Neg. LLF: 87.58133428440186
Optimization terminated successfully (Exit mode 0)
Current function value: 87.58133428440667
Iterations: 15
Function evaluations: 144
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 50353143.80232054
Iteration: 2, Func. Count: 23, Neg. LLF: 454.0365782000989
Iteration: 3, Func. Count: 35, Neg. LLF: 99.20003031205434
Iteration: 4, Func. Count: 47, Neg. LLF: 99.5255772257037
Iteration: 5, Func. Count: 58, Neg. LLF: 102.60449488686255
Iteration: 6, Func. Count: 69, Neg. LLF: 108.91682155562818
Iteration: 7, Func. Count: 80, Neg. LLF: 100.740634021349
Iteration: 8, Func. Count: 91, Neg. LLF: 89.80106062797141
Iteration: 9, Func. Count: 102, Neg. LLF: 89.41451898034973
Iteration: 10, Func. Count: 113, Neg. LLF: 89.57200930459129
Iteration: 11, Func. Count: 124, Neg. LLF: 88.1179138186725
Iteration: 12, Func. Count: 135, Neg. LLF: 87.8658314833111
Iteration: 13, Func. Count: 145, Neg. LLF: 87.69663176865829
Iteration: 14, Func. Count: 155, Neg. LLF: 88.27839189832596
Iteration: 15, Func. Count: 166, Neg. LLF: 87.53976383509648
Iteration: 16, Func. Count: 176, Neg. LLF: 87.5377953307728
Iteration: 17, Func. Count: 187, Neg. LLF: 87.53200053071727
Iteration: 18, Func. Count: 198, Neg. LLF: 87.53057572444483
Iteration: 19, Func. Count: 208, Neg. LLF: 87.530575094255
Optimization terminated successfully (Exit mode 0)
Current function value: 87.530575094255
Iterations: 19
Function evaluations: 208
Gradient evaluations: 19
Iteration: 1, Func. Count: 12, Neg. LLF: 85823178.60705748
Iteration: 2, Func. Count: 25, Neg. LLF: 373.72290513939697
Iteration: 3, Func. Count: 38, Neg. LLF: 96.98216483716755
Iteration: 4, Func. Count: 50, Neg. LLF: 90.34660099108959
Iteration: 5, Func. Count: 63, Neg. LLF: 89.41163678654725
Iteration: 6, Func. Count: 75, Neg. LLF: 87.10860438430518
Iteration: 7, Func. Count: 86, Neg. LLF: 86.89749902970934
Iteration: 8, Func. Count: 97, Neg. LLF: 89.44510431237147
Iteration: 9, Func. Count: 109, Neg. LLF: 89.16772375940845
Iteration: 10, Func. Count: 122, Neg. LLF: 86.37415552511023
Iteration: 11, Func. Count: 133, Neg. LLF: 86.77204962683766
Iteration: 12, Func. Count: 145, Neg. LLF: 89.25783335855634
Iteration: 13, Func. Count: 157, Neg. LLF: 87.65946355584242
Iteration: 14, Func. Count: 169, Neg. LLF: 86.7407779543537
Iteration: 15, Func. Count: 181, Neg. LLF: 86.30598979653581
Iteration: 16, Func. Count: 193, Neg. LLF: 85.99236290315159
Iteration: 17, Func. Count: 204, Neg. LLF: 86.08590891852431
Iteration: 18, Func. Count: 216, Neg. LLF: 85.93095751043995
Iteration: 19, Func. Count: 227, Neg. LLF: 85.88869865141687
Iteration: 20, Func. Count: 238, Neg. LLF: 85.88668133908342
Iteration: 21, Func. Count: 249, Neg. LLF: 85.88644884851055
Iteration: 22, Func. Count: 260, Neg. LLF: 85.88640797560672
Iteration: 23, Func. Count: 271, Neg. LLF: 85.88640115881596
Iteration: 24, Func. Count: 281, Neg. LLF: 85.88640115856158
Optimization terminated successfully (Exit mode 0)
Current function value: 85.88640115881596
Iterations: 24
Function evaluations: 281
Gradient evaluations: 24
Iteration: 1, Func. Count: 13, Neg. LLF: 79605251.5637916
Iteration: 2, Func. Count: 27, Neg. LLF: 1085.7302900638822
Iteration: 3, Func. Count: 41, Neg. LLF: 102.71306024390564
Iteration: 4, Func. Count: 55, Neg. LLF: 94.253524214306
Iteration: 5, Func. Count: 68, Neg. LLF: 87.44280064870267
Iteration: 6, Func. Count: 80, Neg. LLF: 87.70501694293878
Iteration: 7, Func. Count: 93, Neg. LLF: 88.71645094412769
Iteration: 8, Func. Count: 106, Neg. LLF: 86.72006291145713
Iteration: 9, Func. Count: 118, Neg. LLF: 88.12392872950059
Iteration: 10, Func. Count: 131, Neg. LLF: 86.95262552234232
Iteration: 11, Func. Count: 144, Neg. LLF: 86.5651892416141
Iteration: 12, Func. Count: 157, Neg. LLF: 86.20067400057663
Iteration: 13, Func. Count: 169, Neg. LLF: 86.25380187219159
Iteration: 14, Func. Count: 182, Neg. LLF: 86.04588179362054
Iteration: 15, Func. Count: 194, Neg. LLF: 85.92121593439288
Iteration: 16, Func. Count: 206, Neg. LLF: 85.89399364363376
Iteration: 17, Func. Count: 218, Neg. LLF: 85.88955276577528
Iteration: 18, Func. Count: 230, Neg. LLF: 85.88692812133348
Iteration: 19, Func. Count: 242, Neg. LLF: 85.88643826223368
Iteration: 20, Func. Count: 254, Neg. LLF: 85.88640208637563
Iteration: 21, Func. Count: 266, Neg. LLF: 85.88640095317132
Iteration: 22, Func. Count: 277, Neg. LLF: 85.88640112939623
Optimization terminated successfully (Exit mode 0)
Current function value: 85.88640095317132
Iterations: 22
Function evaluations: 277
Gradient evaluations: 22
Iteration: 1, Func. Count: 14, Neg. LLF: 99062219.42143108
Iteration: 2, Func. Count: 29, Neg. LLF: 6412096.476896486
Iteration: 3, Func. Count: 43, Neg. LLF: 94.9573365176039
Iteration: 4, Func. Count: 57, Neg. LLF: 117.4870013421263
Iteration: 5, Func. Count: 72, Neg. LLF: 87.44053762175905
Iteration: 6, Func. Count: 85, Neg. LLF: 90.50028830511732
Iteration: 7, Func. Count: 100, Neg. LLF: 89.63834345522953
Iteration: 8, Func. Count: 114, Neg. LLF: 103.454051451528
Iteration: 9, Func. Count: 128, Neg. LLF: 85.72667202223897
Iteration: 10, Func. Count: 141, Neg. LLF: 85.83088185513681
Iteration: 11, Func. Count: 155, Neg. LLF: 85.4757853223961
Iteration: 12, Func. Count: 169, Neg. LLF: 85.15801748919442
Iteration: 13, Func. Count: 182, Neg. LLF: 85.12009602156215
Iteration: 14, Func. Count: 195, Neg. LLF: 85.1088251023578
Iteration: 15, Func. Count: 208, Neg. LLF: 85.10672904705578
Iteration: 16, Func. Count: 221, Neg. LLF: 85.10623773779382
Iteration: 17, Func. Count: 234, Neg. LLF: 85.10618051916425
Iteration: 18, Func. Count: 247, Neg. LLF: 85.10617653330985
Iteration: 19, Func. Count: 259, Neg. LLF: 85.10617653337987
Optimization terminated successfully (Exit mode 0)
Current function value: 85.10617653330985
Iterations: 19
Function evaluations: 259
Gradient evaluations: 19
Iteration: 1, Func. Count: 7, Neg. LLF: 120.0229861701902
Iteration: 2, Func. Count: 16, Neg. LLF: 176.24645397817093
Iteration: 3, Func. Count: 23, Neg. LLF: 7677.234793789402
Iteration: 4, Func. Count: 30, Neg. LLF: 88.91632606466696
Iteration: 5, Func. Count: 36, Neg. LLF: 88.82707270272647
Iteration: 6, Func. Count: 42, Neg. LLF: 88.78782832405288
Iteration: 7, Func. Count: 48, Neg. LLF: 88.78636007349441
Iteration: 8, Func. Count: 54, Neg. LLF: 88.78610836700129
Iteration: 9, Func. Count: 60, Neg. LLF: 88.7860388517317
Iteration: 10, Func. Count: 66, Neg. LLF: 88.78599832493455
Iteration: 11, Func. Count: 72, Neg. LLF: 88.78599158975722
Iteration: 12, Func. Count: 77, Neg. LLF: 88.78599166201477
Optimization terminated successfully (Exit mode 0)
Current function value: 88.78599158975722
Iterations: 12
Function evaluations: 77
Gradient evaluations: 12
Iteration: 1, Func. Count: 8, Neg. LLF: 35697759.11556794
Iteration: 2, Func. Count: 17, Neg. LLF: 108.99606812793655
Iteration: 3, Func. Count: 26, Neg. LLF: 143.22271221408408
Iteration: 4, Func. Count: 34, Neg. LLF: 133.70664160927737
Iteration: 5, Func. Count: 42, Neg. LLF: 96.64259491134298
Iteration: 6, Func. Count: 50, Neg. LLF: 89.95795570756192
Iteration: 7, Func. Count: 58, Neg. LLF: 89.80690329293772
Iteration: 8, Func. Count: 66, Neg. LLF: 88.20044531010882
Iteration: 9, Func. Count: 73, Neg. LLF: 88.05661622783367
Iteration: 10, Func. Count: 80, Neg. LLF: 88.03370693874345
Iteration: 11, Func. Count: 87, Neg. LLF: 87.98137926797521
Iteration: 12, Func. Count: 94, Neg. LLF: 88.03440692961826
Iteration: 13, Func. Count: 102, Neg. LLF: 87.69891083155647
Iteration: 14, Func. Count: 109, Neg. LLF: 88.08146319424921
Iteration: 15, Func. Count: 117, Neg. LLF: 87.79032936122267
Iteration: 16, Func. Count: 125, Neg. LLF: 87.62004630161704
Iteration: 17, Func. Count: 132, Neg. LLF: 87.61987411218809
Iteration: 18, Func. Count: 139, Neg. LLF: 87.61985931799575
Iteration: 19, Func. Count: 145, Neg. LLF: 87.61985931860325
Optimization terminated successfully (Exit mode 0)
Current function value: 87.61985931799575
Iterations: 19
Function evaluations: 145
Gradient evaluations: 19
Iteration: 1, Func. Count: 9, Neg. LLF: 47230484.45622465
Iteration: 2, Func. Count: 19, Neg. LLF: 149.6414861762946
Iteration: 3, Func. Count: 29, Neg. LLF: 93.23855702043389
Iteration: 4, Func. Count: 38, Neg. LLF: 89.10602155809794
Iteration: 5, Func. Count: 47, Neg. LLF: 86.84258056100157
Iteration: 6, Func. Count: 55, Neg. LLF: 86.63177972012247
Iteration: 7, Func. Count: 63, Neg. LLF: 86.5401876478636
Iteration: 8, Func. Count: 71, Neg. LLF: 86.52921412432858
Iteration: 9, Func. Count: 80, Neg. LLF: 86.476696262558
Iteration: 10, Func. Count: 89, Neg. LLF: 86.35539047920616
Iteration: 11, Func. Count: 97, Neg. LLF: 86.36257222791065
Iteration: 12, Func. Count: 106, Neg. LLF: 86.34594803870846
Iteration: 13, Func. Count: 114, Neg. LLF: 86.3455122250745
Iteration: 14, Func. Count: 122, Neg. LLF: 86.34550319946293
Iteration: 15, Func. Count: 130, Neg. LLF: 86.34550166197461
Iteration: 16, Func. Count: 137, Neg. LLF: 86.34550166196526
Optimization terminated successfully (Exit mode 0)
Current function value: 86.34550166197461
Iterations: 16
Function evaluations: 137
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 45876863.65754627
Iteration: 2, Func. Count: 21, Neg. LLF: 114.83805181105134
Iteration: 3, Func. Count: 31, Neg. LLF: 104.69048922067151
Iteration: 4, Func. Count: 42, Neg. LLF: 88.92206256924752
Iteration: 5, Func. Count: 52, Neg. LLF: 87.13374908215599
Iteration: 6, Func. Count: 61, Neg. LLF: 86.71126665875684
Iteration: 7, Func. Count: 70, Neg. LLF: 87.16006762063174
Iteration: 8, Func. Count: 80, Neg. LLF: 86.56528049622864
Iteration: 9, Func. Count: 89, Neg. LLF: 86.49802222370492
Iteration: 10, Func. Count: 98, Neg. LLF: 86.44567180412098
Iteration: 11, Func. Count: 107, Neg. LLF: 89.70303408370305
Iteration: 12, Func. Count: 117, Neg. LLF: 87.0871904248067
Iteration: 13, Func. Count: 127, Neg. LLF: 86.47402932507067
Iteration: 14, Func. Count: 137, Neg. LLF: 86.34887326541848
Iteration: 15, Func. Count: 146, Neg. LLF: 86.34563741211929
Iteration: 16, Func. Count: 155, Neg. LLF: 86.34554089289205
Iteration: 17, Func. Count: 164, Neg. LLF: 86.34550269879159
Iteration: 18, Func. Count: 173, Neg. LLF: 86.34550166773582
Iteration: 19, Func. Count: 181, Neg. LLF: 86.34550175023715
Optimization terminated successfully (Exit mode 0)
Current function value: 86.34550166773582
Iterations: 19
Function evaluations: 181
Gradient evaluations: 19
Iteration: 1, Func. Count: 11, Neg. LLF: 40379845.83798681
Iteration: 2, Func. Count: 23, Neg. LLF: 26970.09830624158
Iteration: 3, Func. Count: 35, Neg. LLF: 105.74994094130817
Iteration: 4, Func. Count: 46, Neg. LLF: 88.93610687426106
Iteration: 5, Func. Count: 57, Neg. LLF: 86.94684643251195
Iteration: 6, Func. Count: 67, Neg. LLF: 86.64504226257394
Iteration: 7, Func. Count: 77, Neg. LLF: 92.23971359437924
Iteration: 8, Func. Count: 88, Neg. LLF: 102.71317562778944
Iteration: 9, Func. Count: 99, Neg. LLF: 114.3007324904464
Iteration: 10, Func. Count: 110, Neg. LLF: 92.32650386212066
Iteration: 11, Func. Count: 121, Neg. LLF: 89.33681023408853
Iteration: 12, Func. Count: 132, Neg. LLF: 89.26820071125786
Iteration: 13, Func. Count: 143, Neg. LLF: 86.4216573924377
Iteration: 14, Func. Count: 153, Neg. LLF: 86.36863455428603
Iteration: 15, Func. Count: 163, Neg. LLF: 86.35378279308713
Iteration: 16, Func. Count: 173, Neg. LLF: 86.34782925838354
Iteration: 17, Func. Count: 183, Neg. LLF: 86.34583822461786
Iteration: 18, Func. Count: 193, Neg. LLF: 86.345542119444
Iteration: 19, Func. Count: 203, Neg. LLF: 86.34550219828778
Iteration: 20, Func. Count: 213, Neg. LLF: 86.3455016688177
Optimization terminated successfully (Exit mode 0)
Current function value: 86.3455016688177
Iterations: 20
Function evaluations: 213
Gradient evaluations: 20
Iteration: 1, Func. Count: 8, Neg. LLF: 125.94987046420175
Iteration: 2, Func. Count: 18, Neg. LLF: 167.17253766721967
Iteration: 3, Func. Count: 26, Neg. LLF: 1226.9168307200894
Iteration: 4, Func. Count: 34, Neg. LLF: 88.91742054016109
Iteration: 5, Func. Count: 41, Neg. LLF: 277.45681229575456
Iteration: 6, Func. Count: 50, Neg. LLF: 89.17499792644736
Iteration: 7, Func. Count: 58, Neg. LLF: 88.69741987917973
Iteration: 8, Func. Count: 65, Neg. LLF: 88.69015714382921
Iteration: 9, Func. Count: 72, Neg. LLF: 88.68924823300728
Iteration: 10, Func. Count: 79, Neg. LLF: 88.68913307833327
Iteration: 11, Func. Count: 86, Neg. LLF: 88.68912461722557
Iteration: 12, Func. Count: 93, Neg. LLF: 88.68912341027412
Iteration: 13, Func. Count: 100, Neg. LLF: 88.68912246792178
Optimization terminated successfully (Exit mode 0)
Current function value: 88.68912246792178
Iterations: 13
Function evaluations: 100
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 42874737.381792456
Iteration: 2, Func. Count: 19, Neg. LLF: 122.77480579248551
Iteration: 3, Func. Count: 29, Neg. LLF: 99.32341143160463
Iteration: 4, Func. Count: 39, Neg. LLF: 116.12502528721132
Iteration: 5, Func. Count: 48, Neg. LLF: 101.69688951121502
Iteration: 6, Func. Count: 57, Neg. LLF: 96.41169024245488
Iteration: 7, Func. Count: 66, Neg. LLF: 94.66960969381786
Iteration: 8, Func. Count: 75, Neg. LLF: 99.69040798118002
Iteration: 9, Func. Count: 85, Neg. LLF: 92.6337306848826
Iteration: 10, Func. Count: 94, Neg. LLF: 88.06162087420658
Iteration: 11, Func. Count: 102, Neg. LLF: 88.04730941516839
Iteration: 12, Func. Count: 110, Neg. LLF: 88.03892168366677
Iteration: 13, Func. Count: 118, Neg. LLF: 88.03934686909363
Iteration: 14, Func. Count: 127, Neg. LLF: 88.01883221698156
Iteration: 15, Func. Count: 135, Neg. LLF: 88.2984749283649
Iteration: 16, Func. Count: 144, Neg. LLF: 88.64804332847538
Iteration: 17, Func. Count: 153, Neg. LLF: 87.99427112179569
Iteration: 18, Func. Count: 162, Neg. LLF: 87.67659041622339
Iteration: 19, Func. Count: 170, Neg. LLF: 87.6324390736887
Iteration: 20, Func. Count: 178, Neg. LLF: 87.62005027140081
Iteration: 21, Func. Count: 186, Neg. LLF: 87.61994244055835
Iteration: 22, Func. Count: 194, Neg. LLF: 87.61985958173845
Iteration: 23, Func. Count: 202, Neg. LLF: 87.6198589986137
Optimization terminated successfully (Exit mode 0)
Current function value: 87.6198589986137
Iterations: 23
Function evaluations: 202
Gradient evaluations: 23
Iteration: 1, Func. Count: 10, Neg. LLF: 37551997.746935055
Iteration: 2, Func. Count: 21, Neg. LLF: 1290.4021901802712
Iteration: 3, Func. Count: 31, Neg. LLF: 135.1603644352718
Iteration: 4, Func. Count: 42, Neg. LLF: 89.19318294526686
Iteration: 5, Func. Count: 52, Neg. LLF: 86.74909890247872
Iteration: 6, Func. Count: 61, Neg. LLF: 86.63423750224344
Iteration: 7, Func. Count: 70, Neg. LLF: 148.87881966101253
Iteration: 8, Func. Count: 80, Neg. LLF: 160.26268878412603
Iteration: 9, Func. Count: 90, Neg. LLF: 127.89870534736278
Iteration: 10, Func. Count: 100, Neg. LLF: 87.36050889821202
Iteration: 11, Func. Count: 110, Neg. LLF: 86.55754758120636
Iteration: 12, Func. Count: 120, Neg. LLF: 86.4177510631437
Iteration: 13, Func. Count: 129, Neg. LLF: 86.39214838589673
Iteration: 14, Func. Count: 138, Neg. LLF: 86.35875290111933
Iteration: 15, Func. Count: 147, Neg. LLF: 86.34793026844143
Iteration: 16, Func. Count: 156, Neg. LLF: 86.34578097342919
Iteration: 17, Func. Count: 165, Neg. LLF: 86.34573899637941
Iteration: 18, Func. Count: 175, Neg. LLF: 86.34550349587077
Iteration: 19, Func. Count: 184, Neg. LLF: 86.34550172654058
Iteration: 20, Func. Count: 192, Neg. LLF: 86.34550172652725
Optimization terminated successfully (Exit mode 0)
Current function value: 86.34550172654058
Iterations: 20
Function evaluations: 192
Gradient evaluations: 20
Iteration: 1, Func. Count: 11, Neg. LLF: 52250976.51905462
Iteration: 2, Func. Count: 23, Neg. LLF: 100.77165569966499
Iteration: 3, Func. Count: 34, Neg. LLF: 108.0230061694786
Iteration: 4, Func. Count: 46, Neg. LLF: 89.03634486187589
Iteration: 5, Func. Count: 57, Neg. LLF: 86.93063864620636
Iteration: 6, Func. Count: 67, Neg. LLF: 86.7797245246436
Iteration: 7, Func. Count: 77, Neg. LLF: 87.8782980262123
Iteration: 8, Func. Count: 88, Neg. LLF: 86.65322274932618
Iteration: 9, Func. Count: 98, Neg. LLF: 87.28870500263277
Iteration: 10, Func. Count: 109, Neg. LLF: 86.57771097502133
Iteration: 11, Func. Count: 119, Neg. LLF: 86.53297063972988
Iteration: 12, Func. Count: 129, Neg. LLF: 86.41417662273206
Iteration: 13, Func. Count: 139, Neg. LLF: 86.3787140660937
Iteration: 14, Func. Count: 149, Neg. LLF: 86.4947314437293
Iteration: 15, Func. Count: 160, Neg. LLF: 86.35486452198276
Iteration: 16, Func. Count: 171, Neg. LLF: 86.34903819290513
Iteration: 17, Func. Count: 182, Neg. LLF: 86.34550173590961
Iteration: 18, Func. Count: 191, Neg. LLF: 86.34550181834928
Optimization terminated successfully (Exit mode 0)
Current function value: 86.34550173590961
Iterations: 18
Function evaluations: 191
Gradient evaluations: 18
Iteration: 1, Func. Count: 12, Neg. LLF: 46004806.969549306
Iteration: 2, Func. Count: 25, Neg. LLF: 1253.8430907183001
Iteration: 3, Func. Count: 38, Neg. LLF: 104.28659180162262
Iteration: 4, Func. Count: 50, Neg. LLF: 88.94529454143884
Iteration: 5, Func. Count: 62, Neg. LLF: 86.94400368127317
Iteration: 6, Func. Count: 73, Neg. LLF: 96.31651000294886
Iteration: 7, Func. Count: 86, Neg. LLF: 86.98102563241557
Iteration: 8, Func. Count: 98, Neg. LLF: 90.00585415032332
Iteration: 9, Func. Count: 110, Neg. LLF: 108.24139026062642
Iteration: 10, Func. Count: 122, Neg. LLF: 89.49378266112615
Iteration: 11, Func. Count: 134, Neg. LLF: 88.10710752488795
Iteration: 12, Func. Count: 146, Neg. LLF: 86.86466366604951
Iteration: 13, Func. Count: 158, Neg. LLF: 86.44697650919295
Iteration: 14, Func. Count: 169, Neg. LLF: 86.38237861337353
Iteration: 15, Func. Count: 180, Neg. LLF: 86.35144906169148
Iteration: 16, Func. Count: 191, Neg. LLF: 86.34609107289444
Iteration: 17, Func. Count: 202, Neg. LLF: 86.34555732074108
Iteration: 18, Func. Count: 213, Neg. LLF: 86.34552561375506
Iteration: 19, Func. Count: 224, Neg. LLF: 86.34550492227385
Iteration: 20, Func. Count: 235, Neg. LLF: 86.34550185936793
Iteration: 21, Func. Count: 245, Neg. LLF: 86.34550186231324
Optimization terminated successfully (Exit mode 0)
Current function value: 86.34550185936793
Iterations: 21
Function evaluations: 245
Gradient evaluations: 21
Iteration: 1, Func. Count: 9, Neg. LLF: 119.32345390068699
Iteration: 2, Func. Count: 19, Neg. LLF: 119.21128135300015
Iteration: 3, Func. Count: 28, Neg. LLF: 11191.972350315693
Iteration: 4, Func. Count: 37, Neg. LLF: 89.36323310745718
Iteration: 5, Func. Count: 45, Neg. LLF: 2617.1483998580306
Iteration: 6, Func. Count: 55, Neg. LLF: 91.95285661314234
Iteration: 7, Func. Count: 64, Neg. LLF: 88.81991260196875
Iteration: 8, Func. Count: 72, Neg. LLF: 88.6850964422827
Iteration: 9, Func. Count: 80, Neg. LLF: 88.66941955517485
Iteration: 10, Func. Count: 88, Neg. LLF: 88.66571347783412
Iteration: 11, Func. Count: 96, Neg. LLF: 88.66494578471678
Iteration: 12, Func. Count: 104, Neg. LLF: 88.66441630329386
Iteration: 13, Func. Count: 112, Neg. LLF: 88.66422095092715
Iteration: 14, Func. Count: 120, Neg. LLF: 88.66421137662554
Iteration: 15, Func. Count: 127, Neg. LLF: 88.66421137659928
Optimization terminated successfully (Exit mode 0)
Current function value: 88.66421137662554
Iterations: 15
Function evaluations: 127
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 70981914.68251339
Iteration: 2, Func. Count: 21, Neg. LLF: 117.50458965303291
Iteration: 3, Func. Count: 31, Neg. LLF: 188.77750170329895
Iteration: 4, Func. Count: 42, Neg. LLF: 88.41850797920418
Iteration: 5, Func. Count: 51, Neg. LLF: 89.56604281843065
Iteration: 6, Func. Count: 62, Neg. LLF: 90.45626918879366
Iteration: 7, Func. Count: 73, Neg. LLF: 90.88900161283554
Iteration: 8, Func. Count: 83, Neg. LLF: 88.37699383236856
Iteration: 9, Func. Count: 93, Neg. LLF: 88.99802037177864
Iteration: 10, Func. Count: 103, Neg. LLF: 88.32189611732859
Iteration: 11, Func. Count: 113, Neg. LLF: 88.04186001394287
Iteration: 12, Func. Count: 123, Neg. LLF: 87.65305197284938
Iteration: 13, Func. Count: 132, Neg. LLF: 88.86801375925792
Iteration: 14, Func. Count: 143, Neg. LLF: 87.68647663849956
Iteration: 15, Func. Count: 153, Neg. LLF: 87.59395915100555
Iteration: 16, Func. Count: 162, Neg. LLF: 87.58231372892837
Iteration: 17, Func. Count: 171, Neg. LLF: 87.57550038314182
Iteration: 18, Func. Count: 180, Neg. LLF: 87.57339444324954
Iteration: 19, Func. Count: 189, Neg. LLF: 87.57338131967002
Iteration: 20, Func. Count: 197, Neg. LLF: 87.57338132020259
Optimization terminated successfully (Exit mode 0)
Current function value: 87.57338131967002
Iterations: 20
Function evaluations: 197
Gradient evaluations: 20
Iteration: 1, Func. Count: 11, Neg. LLF: 107122345.44278955
Iteration: 2, Func. Count: 23, Neg. LLF: 889.2327145948065
Iteration: 3, Func. Count: 35, Neg. LLF: 109.20447394558707
Iteration: 4, Func. Count: 47, Neg. LLF: 89.41083650795713
Iteration: 5, Func. Count: 58, Neg. LLF: 87.03545578025089
Iteration: 6, Func. Count: 68, Neg. LLF: 86.41027835037053
Iteration: 7, Func. Count: 78, Neg. LLF: 86.27999062685709
Iteration: 8, Func. Count: 88, Neg. LLF: 86.566835140302
Iteration: 9, Func. Count: 99, Neg. LLF: 86.85492458155217
Iteration: 10, Func. Count: 110, Neg. LLF: 86.09022948345317
Iteration: 11, Func. Count: 121, Neg. LLF: 85.91002581138602
Iteration: 12, Func. Count: 131, Neg. LLF: 85.89203328196194
Iteration: 13, Func. Count: 141, Neg. LLF: 85.89071981734776
Iteration: 14, Func. Count: 152, Neg. LLF: 85.88674131295019
Iteration: 15, Func. Count: 162, Neg. LLF: 85.88641156728085
Iteration: 16, Func. Count: 172, Neg. LLF: 85.88640131581685
Iteration: 17, Func. Count: 181, Neg. LLF: 85.88640131554854
Optimization terminated successfully (Exit mode 0)
Current function value: 85.88640131581685
Iterations: 17
Function evaluations: 181
Gradient evaluations: 17
Iteration: 1, Func. Count: 12, Neg. LLF: 224319369.5478328
Iteration: 2, Func. Count: 25, Neg. LLF: 114590246.2424278
Iteration: 3, Func. Count: 38, Neg. LLF: 97.9158198324257
Iteration: 4, Func. Count: 50, Neg. LLF: 97.4558216414364
Iteration: 5, Func. Count: 62, Neg. LLF: 87.98884364981537
Iteration: 6, Func. Count: 73, Neg. LLF: 87.73234140039813
Iteration: 7, Func. Count: 84, Neg. LLF: 89.25566332361554
Iteration: 8, Func. Count: 97, Neg. LLF: 86.25952218051451
Iteration: 9, Func. Count: 108, Neg. LLF: 86.05967651392355
Iteration: 10, Func. Count: 119, Neg. LLF: 85.98653756050585
Iteration: 11, Func. Count: 130, Neg. LLF: 85.93990594230803
Iteration: 12, Func. Count: 141, Neg. LLF: 85.92076503199766
Iteration: 13, Func. Count: 152, Neg. LLF: 85.89611775057206
Iteration: 14, Func. Count: 163, Neg. LLF: 85.88807219522049
Iteration: 15, Func. Count: 174, Neg. LLF: 85.88646593285299
Iteration: 16, Func. Count: 185, Neg. LLF: 85.88640202972351
Iteration: 17, Func. Count: 196, Neg. LLF: 85.8864010235157
Iteration: 18, Func. Count: 206, Neg. LLF: 85.88640119968011
Optimization terminated successfully (Exit mode 0)
Current function value: 85.8864010235157
Iterations: 18
Function evaluations: 206
Gradient evaluations: 18
Iteration: 1, Func. Count: 13, Neg. LLF: 179074373.5379513
Iteration: 2, Func. Count: 27, Neg. LLF: 1277639.6892670975
Iteration: 3, Func. Count: 41, Neg. LLF: 100.17956428745127
Iteration: 4, Func. Count: 54, Neg. LLF: 87.18898778919298
Iteration: 5, Func. Count: 66, Neg. LLF: 87.42816818210922
Iteration: 6, Func. Count: 79, Neg. LLF: 94.96276683120713
Iteration: 7, Func. Count: 93, Neg. LLF: 85.56614358971517
Iteration: 8, Func. Count: 105, Neg. LLF: 85.41967494889197
Iteration: 9, Func. Count: 117, Neg. LLF: 85.34062864948035
Iteration: 10, Func. Count: 129, Neg. LLF: 85.32400936705713
Iteration: 11, Func. Count: 141, Neg. LLF: 85.31489140450383
Iteration: 12, Func. Count: 153, Neg. LLF: 85.31344149949602
Iteration: 13, Func. Count: 165, Neg. LLF: 85.31262654148101
Iteration: 14, Func. Count: 177, Neg. LLF: 85.31244472217911
Iteration: 15, Func. Count: 189, Neg. LLF: 85.31243420770622
Iteration: 16, Func. Count: 200, Neg. LLF: 85.31243420771949
Optimization terminated successfully (Exit mode 0)
Current function value: 85.31243420770622
Iterations: 16
Function evaluations: 200
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 118.34167914725847
Iteration: 2, Func. Count: 21, Neg. LLF: 121.67448886830891
Iteration: 3, Func. Count: 31, Neg. LLF: 1363.402424480391
Iteration: 4, Func. Count: 41, Neg. LLF: 89.78129186514136
Iteration: 5, Func. Count: 51, Neg. LLF: 88.84627825919009
Iteration: 6, Func. Count: 60, Neg. LLF: 91.74434532464181
Iteration: 7, Func. Count: 70, Neg. LLF: 95.97682223407475
Iteration: 8, Func. Count: 80, Neg. LLF: 88.6732167517297
Iteration: 9, Func. Count: 89, Neg. LLF: 88.6675136172275
Iteration: 10, Func. Count: 98, Neg. LLF: 88.66458360151343
Iteration: 11, Func. Count: 107, Neg. LLF: 88.66429880771538
Iteration: 12, Func. Count: 116, Neg. LLF: 88.66421814487691
Iteration: 13, Func. Count: 125, Neg. LLF: 88.66421117228083
Iteration: 14, Func. Count: 133, Neg. LLF: 88.6642110836957
Optimization terminated successfully (Exit mode 0)
Current function value: 88.66421117228083
Iterations: 14
Function evaluations: 133
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 41697602.4531344
Iteration: 2, Func. Count: 23, Neg. LLF: 123.81493213214291
Iteration: 3, Func. Count: 35, Neg. LLF: 99.52537344816871
Iteration: 4, Func. Count: 47, Neg. LLF: 89.76003103732488
Iteration: 5, Func. Count: 58, Neg. LLF: 135.68207244393162
Iteration: 6, Func. Count: 69, Neg. LLF: 88.9438287711562
Iteration: 7, Func. Count: 80, Neg. LLF: 88.66804626875086
Iteration: 8, Func. Count: 91, Neg. LLF: 88.05370294260092
Iteration: 9, Func. Count: 101, Neg. LLF: 88.0461182946044
Iteration: 10, Func. Count: 111, Neg. LLF: 87.98344826043092
Iteration: 11, Func. Count: 121, Neg. LLF: 88.56961762844932
Iteration: 12, Func. Count: 132, Neg. LLF: 88.3160733292683
Iteration: 13, Func. Count: 143, Neg. LLF: 88.39440980988162
Iteration: 14, Func. Count: 154, Neg. LLF: 88.08990064170725
Iteration: 15, Func. Count: 165, Neg. LLF: 88.13045437527924
Iteration: 16, Func. Count: 176, Neg. LLF: 87.79473912200882
Iteration: 17, Func. Count: 186, Neg. LLF: 87.66256963353325
Iteration: 18, Func. Count: 196, Neg. LLF: 89.30648466000179
Iteration: 19, Func. Count: 208, Neg. LLF: 87.57827083769803
Iteration: 20, Func. Count: 218, Neg. LLF: 87.57445737718513
Iteration: 21, Func. Count: 228, Neg. LLF: 87.57361199636156
Iteration: 22, Func. Count: 238, Neg. LLF: 87.5733945544331
Iteration: 23, Func. Count: 248, Neg. LLF: 87.57338122084109
Iteration: 24, Func. Count: 257, Neg. LLF: 87.57338122081717
Optimization terminated successfully (Exit mode 0)
Current function value: 87.57338122084109
Iterations: 24
Function evaluations: 257
Gradient evaluations: 24
Iteration: 1, Func. Count: 12, Neg. LLF: 62503957.97882663
Iteration: 2, Func. Count: 25, Neg. LLF: 2362.9297863644633
Iteration: 3, Func. Count: 37, Neg. LLF: 133.6417513026953
Iteration: 4, Func. Count: 50, Neg. LLF: 89.06674936158751
Iteration: 5, Func. Count: 62, Neg. LLF: 87.44204378886711
Iteration: 6, Func. Count: 73, Neg. LLF: 86.45632437661683
Iteration: 7, Func. Count: 84, Neg. LLF: 86.16434128186413
Iteration: 8, Func. Count: 95, Neg. LLF: 88.71335861332241
Iteration: 9, Func. Count: 107, Neg. LLF: 86.1463117555468
Iteration: 10, Func. Count: 119, Neg. LLF: 87.95952194639385
Iteration: 11, Func. Count: 131, Neg. LLF: 85.94603360657246
Iteration: 12, Func. Count: 142, Neg. LLF: 85.89023984481663
Iteration: 13, Func. Count: 153, Neg. LLF: 85.88666324167025
Iteration: 14, Func. Count: 164, Neg. LLF: 85.88640677004278
Iteration: 15, Func. Count: 175, Neg. LLF: 85.8864010013644
Iteration: 16, Func. Count: 185, Neg. LLF: 85.88640100144794
Optimization terminated successfully (Exit mode 0)
Current function value: 85.8864010013644
Iterations: 16
Function evaluations: 185
Gradient evaluations: 16
Iteration: 1, Func. Count: 13, Neg. LLF: 50314507.1985926
Iteration: 2, Func. Count: 27, Neg. LLF: 122.58722815889614
Iteration: 3, Func. Count: 40, Neg. LLF: 111.71709114009599
Iteration: 4, Func. Count: 54, Neg. LLF: 93.36814813785277
Iteration: 5, Func. Count: 68, Neg. LLF: 89.43732281122438
Iteration: 6, Func. Count: 81, Neg. LLF: 87.1302534529192
Iteration: 7, Func. Count: 93, Neg. LLF: 88.20098526494114
Iteration: 8, Func. Count: 106, Neg. LLF: 86.91688535238359
Iteration: 9, Func. Count: 119, Neg. LLF: 86.35227375283519
Iteration: 10, Func. Count: 131, Neg. LLF: 86.14317460472964
Iteration: 11, Func. Count: 143, Neg. LLF: 85.94928506049418
Iteration: 12, Func. Count: 155, Neg. LLF: 85.88853160419376
Iteration: 13, Func. Count: 167, Neg. LLF: 85.88643521581803
Iteration: 14, Func. Count: 179, Neg. LLF: 85.8864808441737
Iteration: 15, Func. Count: 192, Neg. LLF: 85.88640348085605
Iteration: 16, Func. Count: 204, Neg. LLF: 85.88640119197726
Iteration: 17, Func. Count: 215, Neg. LLF: 85.88640136808326
Optimization terminated successfully (Exit mode 0)
Current function value: 85.88640119197726
Iterations: 17
Function evaluations: 215
Gradient evaluations: 17
Iteration: 1, Func. Count: 14, Neg. LLF: 44485666.19505187
Iteration: 2, Func. Count: 29, Neg. LLF: 8477.230333402771
Iteration: 3, Func. Count: 43, Neg. LLF: 270.81358677526777
Iteration: 4, Func. Count: 58, Neg. LLF: 90.26843917092741
Iteration: 5, Func. Count: 73, Neg. LLF: 89.26400662696616
Iteration: 6, Func. Count: 87, Neg. LLF: 86.91740024474488
Iteration: 7, Func. Count: 100, Neg. LLF: 86.29032799447575
Iteration: 8, Func. Count: 113, Neg. LLF: 87.03995089202921
Iteration: 9, Func. Count: 128, Neg. LLF: 85.90382222515251
Iteration: 10, Func. Count: 141, Neg. LLF: 85.96064254207172
Iteration: 11, Func. Count: 155, Neg. LLF: 85.88255889545886
Iteration: 12, Func. Count: 168, Neg. LLF: 85.88008533496492
Iteration: 13, Func. Count: 181, Neg. LLF: 85.87887701226144
Iteration: 14, Func. Count: 194, Neg. LLF: 85.87627212969578
Iteration: 15, Func. Count: 207, Neg. LLF: 85.87605135744417
Iteration: 16, Func. Count: 220, Neg. LLF: 85.87604513036243
Iteration: 17, Func. Count: 232, Neg. LLF: 85.87604513030433
Optimization terminated successfully (Exit mode 0)
Current function value: 85.87604513036243
Iterations: 17
Function evaluations: 232
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 115.92524524856178
Iteration: 2, Func. Count: 23, Neg. LLF: 111.1053068558214
Iteration: 3, Func. Count: 34, Neg. LLF: 4911.5306381674545
Iteration: 4, Func. Count: 45, Neg. LLF: 1874.3494643216454
Iteration: 5, Func. Count: 56, Neg. LLF: 103.98295229931011
Iteration: 6, Func. Count: 67, Neg. LLF: 88.39754757914639
Iteration: 7, Func. Count: 77, Neg. LLF: 96.23769836423577
Iteration: 8, Func. Count: 88, Neg. LLF: 91.7121554712927
Iteration: 9, Func. Count: 99, Neg. LLF: 88.38842031370955
Iteration: 10, Func. Count: 110, Neg. LLF: 87.59812232945343
Iteration: 11, Func. Count: 120, Neg. LLF: 87.585982427797
Iteration: 12, Func. Count: 130, Neg. LLF: 87.58249483729074
Iteration: 13, Func. Count: 140, Neg. LLF: 87.5819803115226
Iteration: 14, Func. Count: 150, Neg. LLF: 87.58137899284144
Iteration: 15, Func. Count: 160, Neg. LLF: 87.58135655088941
Iteration: 16, Func. Count: 170, Neg. LLF: 87.58133633197461
Iteration: 17, Func. Count: 180, Neg. LLF: 87.58133437488418
Iteration: 18, Func. Count: 189, Neg. LLF: 87.58133437489194
Optimization terminated successfully (Exit mode 0)
Current function value: 87.58133437488418
Iterations: 18
Function evaluations: 189
Gradient evaluations: 18
Iteration: 1, Func. Count: 12, Neg. LLF: 41861600.54689151
Iteration: 2, Func. Count: 25, Neg. LLF: 121.05398654190866
Iteration: 3, Func. Count: 38, Neg. LLF: 99.97453985192259
Iteration: 4, Func. Count: 51, Neg. LLF: 96.34414768703199
Iteration: 5, Func. Count: 63, Neg. LLF: 123.59141948310815
Iteration: 6, Func. Count: 75, Neg. LLF: 90.41279080111856
Iteration: 7, Func. Count: 87, Neg. LLF: 106.15488104011659
Iteration: 8, Func. Count: 99, Neg. LLF: 88.07501982108123
Iteration: 9, Func. Count: 110, Neg. LLF: 88.65013213445734
Iteration: 10, Func. Count: 122, Neg. LLF: 89.367936033966
Iteration: 11, Func. Count: 134, Neg. LLF: 88.33085560650991
Iteration: 12, Func. Count: 146, Neg. LLF: 88.0199492327991
Iteration: 13, Func. Count: 157, Neg. LLF: 91.27429161268088
Iteration: 14, Func. Count: 169, Neg. LLF: 90.4042272693134
Iteration: 15, Func. Count: 181, Neg. LLF: 89.76157956925388
Iteration: 16, Func. Count: 193, Neg. LLF: 88.76850332022107
Iteration: 17, Func. Count: 205, Neg. LLF: 88.11704964676346
Iteration: 18, Func. Count: 217, Neg. LLF: 87.80954984370537
Iteration: 19, Func. Count: 228, Neg. LLF: 87.67845412304669
Iteration: 20, Func. Count: 239, Neg. LLF: 87.68988370831977
Iteration: 21, Func. Count: 251, Neg. LLF: 87.55311706635675
Iteration: 22, Func. Count: 262, Neg. LLF: 87.53504693920212
Iteration: 23, Func. Count: 273, Neg. LLF: 87.53102954987332
Iteration: 24, Func. Count: 284, Neg. LLF: 87.53071446254302
Iteration: 25, Func. Count: 295, Neg. LLF: 87.53057671350346
Iteration: 26, Func. Count: 306, Neg. LLF: 87.53057514025038
Iteration: 27, Func. Count: 316, Neg. LLF: 87.53057514001874
Optimization terminated successfully (Exit mode 0)
Current function value: 87.53057514025038
Iterations: 27
Function evaluations: 316
Gradient evaluations: 27
Iteration: 1, Func. Count: 13, Neg. LLF: 104971407.02028936
Iteration: 2, Func. Count: 27, Neg. LLF: 4474.404568019342
Iteration: 3, Func. Count: 41, Neg. LLF: 107.99820662510865
Iteration: 4, Func. Count: 55, Neg. LLF: 88.41292910649021
Iteration: 5, Func. Count: 68, Neg. LLF: 87.10410301627103
Iteration: 6, Func. Count: 80, Neg. LLF: 89.3030580687101
Iteration: 7, Func. Count: 93, Neg. LLF: 86.80778899374988
Iteration: 8, Func. Count: 106, Neg. LLF: 89.74204323995558
Iteration: 9, Func. Count: 119, Neg. LLF: 91.33709910624638
Iteration: 10, Func. Count: 132, Neg. LLF: 91.74008166348486
Iteration: 11, Func. Count: 145, Neg. LLF: 92.85118981945155
Iteration: 12, Func. Count: 158, Neg. LLF: 91.69133511757366
Iteration: 13, Func. Count: 171, Neg. LLF: 90.47801379104546
Iteration: 14, Func. Count: 184, Neg. LLF: 89.35593941033788
Iteration: 15, Func. Count: 197, Neg. LLF: 87.52233847539925
Iteration: 16, Func. Count: 210, Neg. LLF: 86.796780227164
Iteration: 17, Func. Count: 223, Neg. LLF: 86.2327105609837
Iteration: 18, Func. Count: 235, Neg. LLF: 86.30001004162115
Iteration: 19, Func. Count: 248, Neg. LLF: 86.20958810279653
Iteration: 20, Func. Count: 260, Neg. LLF: 86.14222977890483
Iteration: 21, Func. Count: 272, Neg. LLF: 86.02781212657534
Iteration: 22, Func. Count: 284, Neg. LLF: 85.92303338792479
Iteration: 23, Func. Count: 296, Neg. LLF: 85.89309649411439
Iteration: 24, Func. Count: 308, Neg. LLF: 85.88879751871109
Iteration: 25, Func. Count: 320, Neg. LLF: 85.88652857084381
Iteration: 26, Func. Count: 332, Neg. LLF: 85.88640838151477
Iteration: 27, Func. Count: 344, Neg. LLF: 85.88640096154234
Iteration: 28, Func. Count: 355, Neg. LLF: 85.8864009615543
Optimization terminated successfully (Exit mode 0)
Current function value: 85.88640096154234
Iterations: 28
Function evaluations: 355
Gradient evaluations: 28
Iteration: 1, Func. Count: 14, Neg. LLF: 102824844.30939397
Iteration: 2, Func. Count: 29, Neg. LLF: 201832228.64639267
Iteration: 3, Func. Count: 44, Neg. LLF: 105.13206196982445
Iteration: 4, Func. Count: 58, Neg. LLF: 87.9024945260005
Iteration: 5, Func. Count: 71, Neg. LLF: 87.94502986074278
Iteration: 6, Func. Count: 85, Neg. LLF: 155.6102022977479
Iteration: 7, Func. Count: 99, Neg. LLF: 86.27913284712604
Iteration: 8, Func. Count: 112, Neg. LLF: 86.16114433039002
Iteration: 9, Func. Count: 125, Neg. LLF: 86.09834137530743
Iteration: 10, Func. Count: 138, Neg. LLF: 85.93509230269139
Iteration: 11, Func. Count: 151, Neg. LLF: 85.90636253861001
Iteration: 12, Func. Count: 164, Neg. LLF: 85.89008553391224
Iteration: 13, Func. Count: 177, Neg. LLF: 85.88665757393326
Iteration: 14, Func. Count: 190, Neg. LLF: 85.88640644384263
Iteration: 15, Func. Count: 203, Neg. LLF: 85.88640304334749
Iteration: 16, Func. Count: 216, Neg. LLF: 85.88640105104021
Iteration: 17, Func. Count: 228, Neg. LLF: 85.88640122731263
Optimization terminated successfully (Exit mode 0)
Current function value: 85.88640105104021
Iterations: 17
Function evaluations: 228
Gradient evaluations: 17
Iteration: 1, Func. Count: 15, Neg. LLF: 177826375.2888285
Iteration: 2, Func. Count: 31, Neg. LLF: 1067846.3644428009
Iteration: 3, Func. Count: 47, Neg. LLF: 132.66456880646612
Iteration: 4, Func. Count: 62, Neg. LLF: 92.94681277407912
Iteration: 5, Func. Count: 77, Neg. LLF: 86.27240626528621
Iteration: 6, Func. Count: 91, Neg. LLF: 87.13823014957092
Iteration: 7, Func. Count: 106, Neg. LLF: 85.80603998267998
Iteration: 8, Func. Count: 120, Neg. LLF: 87.86065992856727
Iteration: 9, Func. Count: 136, Neg. LLF: 85.37785223077717
Iteration: 10, Func. Count: 150, Neg. LLF: 85.22557869928839
Iteration: 11, Func. Count: 164, Neg. LLF: 85.30694406331313
Iteration: 12, Func. Count: 179, Neg. LLF: 85.14590017987025
Iteration: 13, Func. Count: 194, Neg. LLF: 85.11291941089179
Iteration: 14, Func. Count: 208, Neg. LLF: 85.10661409474208
Iteration: 15, Func. Count: 222, Neg. LLF: 85.10620884886416
Iteration: 16, Func. Count: 236, Neg. LLF: 85.10618368787084
Iteration: 17, Func. Count: 250, Neg. LLF: 85.10617701810737
Iteration: 18, Func. Count: 264, Neg. LLF: 85.10617623612711
Optimization terminated successfully (Exit mode 0)
Current function value: 85.10617623612711
Iterations: 18
Function evaluations: 264
Gradient evaluations: 18
Iteration: 1, Func. Count: 8, Neg. LLF: 120.4963558003226
Iteration: 2, Func. Count: 17, Neg. LLF: 130.25983106379934
Iteration: 3, Func. Count: 25, Neg. LLF: 300724.0457040694
Iteration: 4, Func. Count: 33, Neg. LLF: 272.1681614430333
Iteration: 5, Func. Count: 41, Neg. LLF: 152.1259921694316
Iteration: 6, Func. Count: 49, Neg. LLF: 103.50952715814505
Iteration: 7, Func. Count: 57, Neg. LLF: 92.91679813949388
Iteration: 8, Func. Count: 65, Neg. LLF: 86.67704674368674
Iteration: 9, Func. Count: 72, Neg. LLF: 87.97599958218599
Iteration: 10, Func. Count: 81, Neg. LLF: 87.43836851870125
Iteration: 11, Func. Count: 89, Neg. LLF: 86.63112854943223
Iteration: 12, Func. Count: 96, Neg. LLF: 86.63037755599403
Iteration: 13, Func. Count: 103, Neg. LLF: 86.6302318770952
Iteration: 14, Func. Count: 110, Neg. LLF: 86.63020939532527
Iteration: 15, Func. Count: 117, Neg. LLF: 86.63020895629668
Optimization terminated successfully (Exit mode 0)
Current function value: 86.63020895629668
Iterations: 15
Function evaluations: 117
Gradient evaluations: 15
Iteration: 1, Func. Count: 9, Neg. LLF: 49879192.40670803
Iteration: 2, Func. Count: 19, Neg. LLF: 129.2346964533065
Iteration: 3, Func. Count: 29, Neg. LLF: 113.29099176943308
Iteration: 4, Func. Count: 39, Neg. LLF: 89.55398906037755
Iteration: 5, Func. Count: 48, Neg. LLF: 87.17824036565135
Iteration: 6, Func. Count: 56, Neg. LLF: 89.34436784777155
Iteration: 7, Func. Count: 65, Neg. LLF: 86.9654710242501
Iteration: 8, Func. Count: 74, Neg. LLF: 86.6887502008777
Iteration: 9, Func. Count: 82, Neg. LLF: 86.65875253321445
Iteration: 10, Func. Count: 90, Neg. LLF: 86.63100744538127
Iteration: 11, Func. Count: 98, Neg. LLF: 86.63052680574532
Iteration: 12, Func. Count: 106, Neg. LLF: 86.63046808024016
Iteration: 13, Func. Count: 114, Neg. LLF: 86.6302437596186
Iteration: 14, Func. Count: 122, Neg. LLF: 86.6302101133401
Iteration: 15, Func. Count: 130, Neg. LLF: 86.6302088859912
Iteration: 16, Func. Count: 137, Neg. LLF: 86.63020892130343
Optimization terminated successfully (Exit mode 0)
Current function value: 86.6302088859912
Iterations: 16
Function evaluations: 137
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 50277562.52980352
Iteration: 2, Func. Count: 21, Neg. LLF: 89.37938266754534
Iteration: 3, Func. Count: 31, Neg. LLF: 89.86680871214683
Iteration: 4, Func. Count: 41, Neg. LLF: 90.92078124808135
Iteration: 5, Func. Count: 51, Neg. LLF: 104.77051349250972
Iteration: 6, Func. Count: 61, Neg. LLF: 86.65384344031146
Iteration: 7, Func. Count: 70, Neg. LLF: 89.23375999325118
Iteration: 8, Func. Count: 80, Neg. LLF: 86.53157089657454
Iteration: 9, Func. Count: 89, Neg. LLF: 86.50677474427494
Iteration: 10, Func. Count: 98, Neg. LLF: 86.4981124474088
Iteration: 11, Func. Count: 107, Neg. LLF: 86.47231294005931
Iteration: 12, Func. Count: 116, Neg. LLF: 86.4007547703913
Iteration: 13, Func. Count: 125, Neg. LLF: 86.91409919426633
Iteration: 14, Func. Count: 135, Neg. LLF: 86.6784985419117
Iteration: 15, Func. Count: 145, Neg. LLF: 86.35346155422336
Iteration: 16, Func. Count: 154, Neg. LLF: 86.33580694380323
Iteration: 17, Func. Count: 163, Neg. LLF: 86.33424165672277
Iteration: 18, Func. Count: 172, Neg. LLF: 86.33367750979968
Iteration: 19, Func. Count: 181, Neg. LLF: 86.33361698682212
Iteration: 20, Func. Count: 190, Neg. LLF: 86.33361389305432
Iteration: 21, Func. Count: 198, Neg. LLF: 86.3336138930956
Optimization terminated successfully (Exit mode 0)
Current function value: 86.33361389305432
Iterations: 21
Function evaluations: 198
Gradient evaluations: 21
Iteration: 1, Func. Count: 11, Neg. LLF: 46618242.01253609
Iteration: 2, Func. Count: 23, Neg. LLF: 1830.9316735448178
Iteration: 3, Func. Count: 35, Neg. LLF: 88.15235118482337
Iteration: 4, Func. Count: 45, Neg. LLF: 88.05625414450884
Iteration: 5, Func. Count: 56, Neg. LLF: 87.10635238608415
Iteration: 6, Func. Count: 67, Neg. LLF: 88.2940016771287
Iteration: 7, Func. Count: 78, Neg. LLF: 86.54416019322754
Iteration: 8, Func. Count: 88, Neg. LLF: 86.55564841887967
Iteration: 9, Func. Count: 99, Neg. LLF: 87.48342443473213
Iteration: 10, Func. Count: 110, Neg. LLF: 101.23688095273823
Iteration: 11, Func. Count: 121, Neg. LLF: 101.74629390209387
Iteration: 12, Func. Count: 132, Neg. LLF: 87.04499113346803
Iteration: 13, Func. Count: 143, Neg. LLF: 94.39657857785846
Iteration: 14, Func. Count: 154, Neg. LLF: 86.44785660402667
Iteration: 15, Func. Count: 164, Neg. LLF: 86.43012870880699
Iteration: 16, Func. Count: 174, Neg. LLF: 86.4187188501173
Iteration: 17, Func. Count: 184, Neg. LLF: 86.35887393433659
Iteration: 18, Func. Count: 194, Neg. LLF: 86.46335476705266
Iteration: 19, Func. Count: 205, Neg. LLF: 86.33491400518541
Iteration: 20, Func. Count: 215, Neg. LLF: 86.33371179988262
Iteration: 21, Func. Count: 225, Neg. LLF: 86.33363802335724
Iteration: 22, Func. Count: 235, Neg. LLF: 86.33361422885172
Iteration: 23, Func. Count: 244, Neg. LLF: 86.33361431305866
Optimization terminated successfully (Exit mode 0)
Current function value: 86.33361422885172
Iterations: 23
Function evaluations: 244
Gradient evaluations: 23
Iteration: 1, Func. Count: 12, Neg. LLF: 43266527.679414414
Iteration: 2, Func. Count: 24, Neg. LLF: 309974806.13430333
Iteration: 3, Func. Count: 37, Neg. LLF: 177.01484445663684
Iteration: 4, Func. Count: 49, Neg. LLF: 90.84028479777669
Iteration: 5, Func. Count: 62, Neg. LLF: 91.37927480481585
Iteration: 6, Func. Count: 74, Neg. LLF: 86.90084715677928
Iteration: 7, Func. Count: 85, Neg. LLF: 86.55719520360061
Iteration: 8, Func. Count: 96, Neg. LLF: 86.41736569320902
Iteration: 9, Func. Count: 107, Neg. LLF: 86.56999967513951
Iteration: 10, Func. Count: 119, Neg. LLF: 86.3462136774661
Iteration: 11, Func. Count: 130, Neg. LLF: 86.32907677400263
Iteration: 12, Func. Count: 141, Neg. LLF: 86.31360728055701
Iteration: 13, Func. Count: 152, Neg. LLF: 86.30552075891572
Iteration: 14, Func. Count: 163, Neg. LLF: 86.30537507804873
Iteration: 15, Func. Count: 174, Neg. LLF: 86.30527898713387
Iteration: 16, Func. Count: 185, Neg. LLF: 86.30527555612241
Iteration: 17, Func. Count: 195, Neg. LLF: 86.30527555601671
Optimization terminated successfully (Exit mode 0)
Current function value: 86.30527555612241
Iterations: 17
Function evaluations: 195
Gradient evaluations: 17
Iteration: 1, Func. Count: 9, Neg. LLF: 122.18143322994833
Iteration: 2, Func. Count: 19, Neg. LLF: 129.76260987923055
Iteration: 3, Func. Count: 29, Neg. LLF: 31772.870541272267
Iteration: 4, Func. Count: 38, Neg. LLF: 153.37482904565752
Iteration: 5, Func. Count: 47, Neg. LLF: 134.34785160460848
Iteration: 6, Func. Count: 56, Neg. LLF: 145.71703524115657
Iteration: 7, Func. Count: 65, Neg. LLF: 87.23890738413024
Iteration: 8, Func. Count: 74, Neg. LLF: 86.65303789002562
Iteration: 9, Func. Count: 82, Neg. LLF: 86.52427875520802
Iteration: 10, Func. Count: 90, Neg. LLF: 86.52083922994754
Iteration: 11, Func. Count: 98, Neg. LLF: 86.5196306142822
Iteration: 12, Func. Count: 106, Neg. LLF: 86.51954290464256
Iteration: 13, Func. Count: 114, Neg. LLF: 86.51953876366399
Iteration: 14, Func. Count: 122, Neg. LLF: 86.51953787452952
Optimization terminated successfully (Exit mode 0)
Current function value: 86.51953787452952
Iterations: 14
Function evaluations: 122
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 43737978.739383824
Iteration: 2, Func. Count: 21, Neg. LLF: 579.7494046864107
Iteration: 3, Func. Count: 32, Neg. LLF: 124.19269378192831
Iteration: 4, Func. Count: 43, Neg. LLF: 88.59774477189865
Iteration: 5, Func. Count: 53, Neg. LLF: 86.97747845796532
Iteration: 6, Func. Count: 62, Neg. LLF: 93.51548977836588
Iteration: 7, Func. Count: 73, Neg. LLF: 86.76067994291977
Iteration: 8, Func. Count: 82, Neg. LLF: 86.71523814518477
Iteration: 9, Func. Count: 91, Neg. LLF: 86.62412622766466
Iteration: 10, Func. Count: 100, Neg. LLF: 86.58894918108153
Iteration: 11, Func. Count: 109, Neg. LLF: 86.56654799509748
Iteration: 12, Func. Count: 118, Neg. LLF: 86.5426051705546
Iteration: 13, Func. Count: 127, Neg. LLF: 86.53095339568324
Iteration: 14, Func. Count: 136, Neg. LLF: 86.52701494488704
Iteration: 15, Func. Count: 145, Neg. LLF: 86.52557327717494
Iteration: 16, Func. Count: 154, Neg. LLF: 86.52362195190533
Iteration: 17, Func. Count: 163, Neg. LLF: 86.52085247562727
Iteration: 18, Func. Count: 172, Neg. LLF: 86.51971730223855
Iteration: 19, Func. Count: 181, Neg. LLF: 86.5195457725944
Iteration: 20, Func. Count: 190, Neg. LLF: 86.51953780824348
Iteration: 21, Func. Count: 198, Neg. LLF: 86.51953785399326
Optimization terminated successfully (Exit mode 0)
Current function value: 86.51953780824348
Iterations: 21
Function evaluations: 198
Gradient evaluations: 21
Iteration: 1, Func. Count: 11, Neg. LLF: 56779038.20874228
Iteration: 2, Func. Count: 23, Neg. LLF: 87.56746152429845
Iteration: 3, Func. Count: 33, Neg. LLF: 94.83028893354707
Iteration: 4, Func. Count: 44, Neg. LLF: 122.60661835514856
Iteration: 5, Func. Count: 55, Neg. LLF: 97.62022496954049
Iteration: 6, Func. Count: 67, Neg. LLF: 86.61528637369697
Iteration: 7, Func. Count: 78, Neg. LLF: 88.35286097432899
Iteration: 8, Func. Count: 89, Neg. LLF: 86.5652023522989
Iteration: 9, Func. Count: 100, Neg. LLF: 86.52468637076764
Iteration: 10, Func. Count: 110, Neg. LLF: 86.5107769189305
Iteration: 11, Func. Count: 120, Neg. LLF: 86.50560603092737
Iteration: 12, Func. Count: 130, Neg. LLF: 86.50350247273522
Iteration: 13, Func. Count: 140, Neg. LLF: 86.50345509790866
Iteration: 14, Func. Count: 150, Neg. LLF: 86.50343856779023
Iteration: 15, Func. Count: 160, Neg. LLF: 86.50341504599895
Iteration: 16, Func. Count: 170, Neg. LLF: 86.50340468460325
Iteration: 17, Func. Count: 180, Neg. LLF: 86.50340260234077
Iteration: 18, Func. Count: 189, Neg. LLF: 86.50340260233341
Optimization terminated successfully (Exit mode 0)
Current function value: 86.50340260234077
Iterations: 18
Function evaluations: 189
Gradient evaluations: 18
Iteration: 1, Func. Count: 12, Neg. LLF: 53503420.27950718
Iteration: 2, Func. Count: 25, Neg. LLF: 3042.2202314630713
Iteration: 3, Func. Count: 38, Neg. LLF: 87.45843354305555
Iteration: 4, Func. Count: 49, Neg. LLF: 89.8062300784115
Iteration: 5, Func. Count: 61, Neg. LLF: 94.4892690286404
Iteration: 6, Func. Count: 73, Neg. LLF: 86.70730169847762
Iteration: 7, Func. Count: 85, Neg. LLF: 86.6841430535858
Iteration: 8, Func. Count: 97, Neg. LLF: 86.5632152410766
Iteration: 9, Func. Count: 109, Neg. LLF: 86.5223999537273
Iteration: 10, Func. Count: 120, Neg. LLF: 86.50670533320975
Iteration: 11, Func. Count: 131, Neg. LLF: 86.50496901939769
Iteration: 12, Func. Count: 142, Neg. LLF: 86.5046470516682
Iteration: 13, Func. Count: 153, Neg. LLF: 86.50459848570996
Iteration: 14, Func. Count: 164, Neg. LLF: 86.50258213745242
Iteration: 15, Func. Count: 175, Neg. LLF: 86.49841361149517
Iteration: 16, Func. Count: 186, Neg. LLF: 86.57062325605169
Iteration: 17, Func. Count: 198, Neg. LLF: 86.75013402947008
Iteration: 18, Func. Count: 210, Neg. LLF: 86.67134981848204
Iteration: 19, Func. Count: 222, Neg. LLF: 126.8640892434421
Iteration: 20, Func. Count: 235, Neg. LLF: 88.39747969320923
Iteration: 21, Func. Count: 248, Neg. LLF: 86.86038315908229
Iteration: 22, Func. Count: 260, Neg. LLF: 86.62593818506764
Iteration: 23, Func. Count: 272, Neg. LLF: 86.8892485687521
Iteration: 24, Func. Count: 284, Neg. LLF: 86.57320012572053
Iteration: 25, Func. Count: 296, Neg. LLF: 86.34927702803176
Iteration: 26, Func. Count: 308, Neg. LLF: 86.33716082047229
Iteration: 27, Func. Count: 320, Neg. LLF: 86.33371668421346
Iteration: 28, Func. Count: 332, Neg. LLF: 86.33361670186437
Iteration: 29, Func. Count: 343, Neg. LLF: 86.3336139729783
Iteration: 30, Func. Count: 353, Neg. LLF: 86.33361405717639
Optimization terminated successfully (Exit mode 0)
Current function value: 86.3336139729783
Iterations: 31
Function evaluations: 353
Gradient evaluations: 30
Iteration: 1, Func. Count: 13, Neg. LLF: 49744614.0847762
Iteration: 2, Func. Count: 27, Neg. LLF: 257434430.64898807
Iteration: 3, Func. Count: 41, Neg. LLF: 101.55401192454939
Iteration: 4, Func. Count: 54, Neg. LLF: 87.10583044269328
Iteration: 5, Func. Count: 66, Neg. LLF: 88.38915064758537
Iteration: 6, Func. Count: 79, Neg. LLF: 89.5737405173411
Iteration: 7, Func. Count: 92, Neg. LLF: 86.76589529862449
Iteration: 8, Func. Count: 105, Neg. LLF: 86.49691886039876
Iteration: 9, Func. Count: 117, Neg. LLF: 87.1141722518045
Iteration: 10, Func. Count: 130, Neg. LLF: 86.73017509758532
Iteration: 11, Func. Count: 143, Neg. LLF: 86.61965413732315
Iteration: 12, Func. Count: 156, Neg. LLF: 86.38741982338273
Iteration: 13, Func. Count: 168, Neg. LLF: 88.76445330412452
Iteration: 14, Func. Count: 181, Neg. LLF: 86.32719406615149
Iteration: 15, Func. Count: 193, Neg. LLF: 86.30527306395449
Iteration: 16, Func. Count: 205, Neg. LLF: 86.28292166166605
Iteration: 17, Func. Count: 217, Neg. LLF: 86.27030287874642
Iteration: 18, Func. Count: 229, Neg. LLF: 86.25925354699926
Iteration: 19, Func. Count: 241, Neg. LLF: 86.25844819403464
Iteration: 20, Func. Count: 253, Neg. LLF: 86.25830126651626
Iteration: 21, Func. Count: 265, Neg. LLF: 86.25828379069634
Iteration: 22, Func. Count: 277, Neg. LLF: 86.25828092941039
Iteration: 23, Func. Count: 288, Neg. LLF: 86.25828092939456
Optimization terminated successfully (Exit mode 0)
Current function value: 86.25828092941039
Iterations: 23
Function evaluations: 288
Gradient evaluations: 23
Iteration: 1, Func. Count: 10, Neg. LLF: 132.10630556129627
Iteration: 2, Func. Count: 21, Neg. LLF: 156.78552710765953
Iteration: 3, Func. Count: 31, Neg. LLF: 102.60769212197742
Iteration: 4, Func. Count: 41, Neg. LLF: 518.6884487286084
Iteration: 5, Func. Count: 51, Neg. LLF: 86.81637651859079
Iteration: 6, Func. Count: 61, Neg. LLF: 87.34674551232695
Iteration: 7, Func. Count: 71, Neg. LLF: 86.9551796042976
Iteration: 8, Func. Count: 81, Neg. LLF: 86.30443453692133
Iteration: 9, Func. Count: 90, Neg. LLF: 86.27899970564098
Iteration: 10, Func. Count: 99, Neg. LLF: 86.27939126073922
Iteration: 11, Func. Count: 109, Neg. LLF: 86.27696169914282
Iteration: 12, Func. Count: 118, Neg. LLF: 86.27695706972978
Iteration: 13, Func. Count: 126, Neg. LLF: 86.27695706970927
Optimization terminated successfully (Exit mode 0)
Current function value: 86.27695706972978
Iterations: 13
Function evaluations: 126
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 73265636.14530984
Iteration: 2, Func. Count: 23, Neg. LLF: 3561.430823673113
Iteration: 3, Func. Count: 35, Neg. LLF: 276.3809580061141
Iteration: 4, Func. Count: 47, Neg. LLF: 88.98213720837481
Iteration: 5, Func. Count: 58, Neg. LLF: 87.32465496264925
Iteration: 6, Func. Count: 68, Neg. LLF: 91.63948327697439
Iteration: 7, Func. Count: 79, Neg. LLF: 126.00761037941867
Iteration: 8, Func. Count: 90, Neg. LLF: 86.44099308442271
Iteration: 9, Func. Count: 100, Neg. LLF: 86.40655654050656
Iteration: 10, Func. Count: 110, Neg. LLF: 86.34160732429373
Iteration: 11, Func. Count: 120, Neg. LLF: 86.32176615642842
Iteration: 12, Func. Count: 130, Neg. LLF: 86.31125723183119
Iteration: 13, Func. Count: 140, Neg. LLF: 86.29158995297112
Iteration: 14, Func. Count: 150, Neg. LLF: 86.28424589658681
Iteration: 15, Func. Count: 160, Neg. LLF: 86.2796710457191
Iteration: 16, Func. Count: 170, Neg. LLF: 86.27803439849198
Iteration: 17, Func. Count: 180, Neg. LLF: 86.27759524753719
Iteration: 18, Func. Count: 190, Neg. LLF: 86.27700521661977
Iteration: 19, Func. Count: 200, Neg. LLF: 86.27696017500332
Iteration: 20, Func. Count: 210, Neg. LLF: 86.2769567726578
Iteration: 21, Func. Count: 219, Neg. LLF: 86.27695683441564
Optimization terminated successfully (Exit mode 0)
Current function value: 86.2769567726578
Iterations: 21
Function evaluations: 219
Gradient evaluations: 21
Iteration: 1, Func. Count: 12, Neg. LLF: 55574667.76976611
Iteration: 2, Func. Count: 25, Neg. LLF: 116.3237852286596
Iteration: 3, Func. Count: 37, Neg. LLF: 116.41235545693525
Iteration: 4, Func. Count: 50, Neg. LLF: 89.20945277400418
Iteration: 5, Func. Count: 62, Neg. LLF: 88.77007237201619
Iteration: 6, Func. Count: 74, Neg. LLF: 88.66302589368718
Iteration: 7, Func. Count: 86, Neg. LLF: 87.87365595903442
Iteration: 8, Func. Count: 98, Neg. LLF: 87.72855761195775
Iteration: 9, Func. Count: 110, Neg. LLF: 86.25211512138873
Iteration: 10, Func. Count: 121, Neg. LLF: 86.20943199084442
Iteration: 11, Func. Count: 132, Neg. LLF: 86.19353425931648
Iteration: 12, Func. Count: 143, Neg. LLF: 86.1873517850467
Iteration: 13, Func. Count: 154, Neg. LLF: 86.18539465043685
Iteration: 14, Func. Count: 165, Neg. LLF: 86.18298852586058
Iteration: 15, Func. Count: 176, Neg. LLF: 86.17964095482351
Iteration: 16, Func. Count: 187, Neg. LLF: 86.03658367294736
Iteration: 17, Func. Count: 198, Neg. LLF: 86.00028376708774
Iteration: 18, Func. Count: 209, Neg. LLF: 85.96378341544306
Iteration: 19, Func. Count: 221, Neg. LLF: 86.14495277148653
Iteration: 20, Func. Count: 233, Neg. LLF: 85.89103218532222
Iteration: 21, Func. Count: 244, Neg. LLF: 85.88645546417922
Iteration: 22, Func. Count: 255, Neg. LLF: 85.88640650340014
Iteration: 23, Func. Count: 266, Neg. LLF: 85.88640076283801
Iteration: 24, Func. Count: 276, Neg. LLF: 85.8864007629461
Optimization terminated successfully (Exit mode 0)
Current function value: 85.88640076283801
Iterations: 24
Function evaluations: 276
Gradient evaluations: 24
Iteration: 1, Func. Count: 13, Neg. LLF: 75490472.02433604
Iteration: 2, Func. Count: 27, Neg. LLF: 199.79631255512027
Iteration: 3, Func. Count: 41, Neg. LLF: 104.4695422471659
Iteration: 4, Func. Count: 54, Neg. LLF: 87.13851993825894
Iteration: 5, Func. Count: 66, Neg. LLF: 89.9506054212297
Iteration: 6, Func. Count: 79, Neg. LLF: 91.61226911410598
Iteration: 7, Func. Count: 92, Neg. LLF: 86.70790934459771
Iteration: 8, Func. Count: 105, Neg. LLF: 91.13931867519547
Iteration: 9, Func. Count: 118, Neg. LLF: 86.26730904617808
Iteration: 10, Func. Count: 130, Neg. LLF: 86.24479868346856
Iteration: 11, Func. Count: 142, Neg. LLF: 86.24862972096302
Iteration: 12, Func. Count: 155, Neg. LLF: 86.20798260959216
Iteration: 13, Func. Count: 167, Neg. LLF: 86.19438442819992
Iteration: 14, Func. Count: 179, Neg. LLF: 86.19132569082075
Iteration: 15, Func. Count: 191, Neg. LLF: 86.18858529365687
Iteration: 16, Func. Count: 203, Neg. LLF: 86.18514157015629
Iteration: 17, Func. Count: 215, Neg. LLF: 86.18149405161901
Iteration: 18, Func. Count: 227, Neg. LLF: 86.17232803264001
Iteration: 19, Func. Count: 239, Neg. LLF: 85.92936736500018
Iteration: 20, Func. Count: 251, Neg. LLF: 85.89958023751979
Iteration: 21, Func. Count: 263, Neg. LLF: 86.00259013140723
Iteration: 22, Func. Count: 276, Neg. LLF: 85.89633722404307
Iteration: 23, Func. Count: 289, Neg. LLF: 85.88646025732506
Iteration: 24, Func. Count: 301, Neg. LLF: 85.88640102071969
Iteration: 25, Func. Count: 312, Neg. LLF: 85.88640119680903
Optimization terminated successfully (Exit mode 0)
Current function value: 85.88640102071969
Iterations: 25
Function evaluations: 312
Gradient evaluations: 25
Iteration: 1, Func. Count: 14, Neg. LLF: 335.1696944016149
Iteration: 2, Func. Count: 29, Neg. LLF: 4780.249542270251
Iteration: 3, Func. Count: 43, Neg. LLF: 9235910.668737099
Iteration: 4, Func. Count: 57, Neg. LLF: 91.79041289737344
Iteration: 5, Func. Count: 71, Neg. LLF: 86.861542464607
Iteration: 6, Func. Count: 84, Neg. LLF: 88.53958074876859
Iteration: 7, Func. Count: 98, Neg. LLF: 88.89206563202319
Iteration: 8, Func. Count: 114, Neg. LLF: 89.24008833046541
Iteration: 9, Func. Count: 128, Neg. LLF: 85.99801920164228
Iteration: 10, Func. Count: 141, Neg. LLF: 85.93246708133324
Iteration: 11, Func. Count: 154, Neg. LLF: 85.7563540157727
Iteration: 12, Func. Count: 167, Neg. LLF: 86.03142695980596
Iteration: 13, Func. Count: 181, Neg. LLF: 89.23015256764594
Iteration: 14, Func. Count: 195, Neg. LLF: 85.46725235026379
Iteration: 15, Func. Count: 208, Neg. LLF: 85.79591939229022
Iteration: 16, Func. Count: 222, Neg. LLF: 85.56394644941106
Iteration: 17, Func. Count: 236, Neg. LLF: 85.15458933803986
Iteration: 18, Func. Count: 249, Neg. LLF: 85.06773031329594
Iteration: 19, Func. Count: 262, Neg. LLF: 85.05834236990714
Iteration: 20, Func. Count: 275, Neg. LLF: 85.05821036087067
Iteration: 21, Func. Count: 289, Neg. LLF: 85.05753107684936
Iteration: 22, Func. Count: 302, Neg. LLF: 85.05752610804109
Iteration: 23, Func. Count: 315, Neg. LLF: 85.05752544885937
Optimization terminated successfully (Exit mode 0)
Current function value: 85.05752544885937
Iterations: 23
Function evaluations: 315
Gradient evaluations: 23
Iteration: 1, Func. Count: 11, Neg. LLF: 126.54324662011012
Iteration: 2, Func. Count: 23, Neg. LLF: 184.93126271276458
Iteration: 3, Func. Count: 34, Neg. LLF: 113.90240838522018
Iteration: 4, Func. Count: 45, Neg. LLF: 189.65465833472336
Iteration: 5, Func. Count: 56, Neg. LLF: 87.57506288672138
Iteration: 6, Func. Count: 67, Neg. LLF: 178.63677441845385
Iteration: 7, Func. Count: 78, Neg. LLF: 86.46750271236488
Iteration: 8, Func. Count: 88, Neg. LLF: 88.17751726457406
Iteration: 9, Func. Count: 99, Neg. LLF: 86.3023110276335
Iteration: 10, Func. Count: 109, Neg. LLF: 86.279461677218
Iteration: 11, Func. Count: 119, Neg. LLF: 86.27889919673113
Iteration: 12, Func. Count: 129, Neg. LLF: 86.27715954866841
Iteration: 13, Func. Count: 139, Neg. LLF: 86.27697940218623
Iteration: 14, Func. Count: 149, Neg. LLF: 86.27696112668436
Iteration: 15, Func. Count: 159, Neg. LLF: 86.27695680453476
Iteration: 16, Func. Count: 168, Neg. LLF: 86.27695692492375
Optimization terminated successfully (Exit mode 0)
Current function value: 86.27695680453476
Iterations: 16
Function evaluations: 168
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 42533067.547916174
Iteration: 2, Func. Count: 25, Neg. LLF: 392.7748869798469
Iteration: 3, Func. Count: 38, Neg. LLF: 102.81688859687158
Iteration: 4, Func. Count: 51, Neg. LLF: 95.58079961515163
Iteration: 5, Func. Count: 63, Neg. LLF: 87.16671507286316
Iteration: 6, Func. Count: 74, Neg. LLF: 86.8318024744394
Iteration: 7, Func. Count: 85, Neg. LLF: 86.91041914824378
Iteration: 8, Func. Count: 97, Neg. LLF: 88.6119107242874
Iteration: 9, Func. Count: 109, Neg. LLF: 86.64809891977083
Iteration: 10, Func. Count: 120, Neg. LLF: 86.35834543224819
Iteration: 11, Func. Count: 131, Neg. LLF: 86.30093556437768
Iteration: 12, Func. Count: 142, Neg. LLF: 86.28729397060846
Iteration: 13, Func. Count: 153, Neg. LLF: 86.28330463893528
Iteration: 14, Func. Count: 164, Neg. LLF: 86.2786285239376
Iteration: 15, Func. Count: 175, Neg. LLF: 86.27807862853184
Iteration: 16, Func. Count: 186, Neg. LLF: 86.27756999300308
Iteration: 17, Func. Count: 197, Neg. LLF: 86.27750360230449
Iteration: 18, Func. Count: 208, Neg. LLF: 86.27737662484243
Iteration: 19, Func. Count: 219, Neg. LLF: 86.27722049717698
Iteration: 20, Func. Count: 230, Neg. LLF: 86.27704640450666
Iteration: 21, Func. Count: 241, Neg. LLF: 86.27697238356177
Iteration: 22, Func. Count: 252, Neg. LLF: 86.27695831818195
Iteration: 23, Func. Count: 263, Neg. LLF: 86.27695675411181
Iteration: 24, Func. Count: 274, Neg. LLF: 86.27701138977207
Optimization terminated successfully (Exit mode 0)
Current function value: 86.27695674396914
Iterations: 25
Function evaluations: 276
Gradient evaluations: 24
Iteration: 1, Func. Count: 13, Neg. LLF: 54877459.261836134
Iteration: 2, Func. Count: 27, Neg. LLF: 124.83713965617076
Iteration: 3, Func. Count: 40, Neg. LLF: 118.25517847957602
Iteration: 4, Func. Count: 54, Neg. LLF: 89.65112398966146
Iteration: 5, Func. Count: 67, Neg. LLF: 89.14868769260002
Iteration: 6, Func. Count: 80, Neg. LLF: 87.33529947366664
Iteration: 7, Func. Count: 93, Neg. LLF: 89.50311427687629
Iteration: 8, Func. Count: 106, Neg. LLF: 89.51077021022721
Iteration: 9, Func. Count: 119, Neg. LLF: 86.25089504351443
Iteration: 10, Func. Count: 131, Neg. LLF: 86.20220363653567
Iteration: 11, Func. Count: 143, Neg. LLF: 86.18994228161532
Iteration: 12, Func. Count: 155, Neg. LLF: 86.18573278288744
Iteration: 13, Func. Count: 167, Neg. LLF: 86.18377508749495
Iteration: 14, Func. Count: 179, Neg. LLF: 86.1806590814826
Iteration: 15, Func. Count: 191, Neg. LLF: 86.16391287444601
Iteration: 16, Func. Count: 203, Neg. LLF: 86.01189533303923
Iteration: 17, Func. Count: 215, Neg. LLF: 86.41493416729841
Iteration: 18, Func. Count: 228, Neg. LLF: 87.44321343968643
Iteration: 19, Func. Count: 243, Neg. LLF: 85.99504316253636
Iteration: 20, Func. Count: 256, Neg. LLF: 85.8963323295561
Iteration: 21, Func. Count: 268, Neg. LLF: 85.88649470295834
Iteration: 22, Func. Count: 280, Neg. LLF: 85.88640693705955
Iteration: 23, Func. Count: 292, Neg. LLF: 85.88640122722019
Iteration: 24, Func. Count: 303, Neg. LLF: 85.88640122738362
Optimization terminated successfully (Exit mode 0)
Current function value: 85.88640122722019
Iterations: 24
Function evaluations: 303
Gradient evaluations: 24
Iteration: 1, Func. Count: 14, Neg. LLF: 51409163.92010597
Iteration: 2, Func. Count: 29, Neg. LLF: 1321535.9244969867
Iteration: 3, Func. Count: 44, Neg. LLF: 184.6114263540995
Iteration: 4, Func. Count: 59, Neg. LLF: 86.98898924996331
Iteration: 5, Func. Count: 72, Neg. LLF: 87.41550399608121
Iteration: 6, Func. Count: 86, Neg. LLF: 93.84150207017224
Iteration: 7, Func. Count: 100, Neg. LLF: 86.59059499987717
Iteration: 8, Func. Count: 114, Neg. LLF: 88.35920900590297
Iteration: 9, Func. Count: 129, Neg. LLF: 86.22433119094526
Iteration: 10, Func. Count: 142, Neg. LLF: 86.21226357937236
Iteration: 11, Func. Count: 155, Neg. LLF: 86.18963055823848
Iteration: 12, Func. Count: 168, Neg. LLF: 86.18762399746764
Iteration: 13, Func. Count: 181, Neg. LLF: 86.18608584289689
Iteration: 14, Func. Count: 194, Neg. LLF: 86.18469638926028
Iteration: 15, Func. Count: 207, Neg. LLF: 86.18315138474988
Iteration: 16, Func. Count: 220, Neg. LLF: 86.18103417967465
Iteration: 17, Func. Count: 233, Neg. LLF: 86.09361947324831
Iteration: 18, Func. Count: 246, Neg. LLF: 86.17792803268813
Iteration: 19, Func. Count: 260, Neg. LLF: 90.0240570545552
Iteration: 20, Func. Count: 276, Neg. LLF: 86.01277018722915
Iteration: 21, Func. Count: 290, Neg. LLF: 90.06913978096097
Iteration: 22, Func. Count: 305, Neg. LLF: 85.8925759622379
Iteration: 23, Func. Count: 318, Neg. LLF: 85.90262600575336
Iteration: 24, Func. Count: 332, Neg. LLF: 85.88836218866318
Iteration: 25, Func. Count: 345, Neg. LLF: 85.88647394679688
Iteration: 26, Func. Count: 358, Neg. LLF: 85.88640333698068
Iteration: 27, Func. Count: 371, Neg. LLF: 85.88640095013682
Iteration: 28, Func. Count: 383, Neg. LLF: 85.8864011263515
Optimization terminated successfully (Exit mode 0)
Current function value: 85.88640095013682
Iterations: 28
Function evaluations: 383
Gradient evaluations: 28
Iteration: 1, Func. Count: 15, Neg. LLF: 47960512.57712924
Iteration: 2, Func. Count: 31, Neg. LLF: 1225649.6268703348
Iteration: 3, Func. Count: 47, Neg. LLF: 194.94319804123577
Iteration: 4, Func. Count: 62, Neg. LLF: 104.56393881234352
Iteration: 5, Func. Count: 77, Neg. LLF: 87.10076492710247
Iteration: 6, Func. Count: 91, Neg. LLF: 88.52658815681947
Iteration: 7, Func. Count: 107, Neg. LLF: 89.61566286855505
Iteration: 8, Func. Count: 123, Neg. LLF: 87.29722801474252
Iteration: 9, Func. Count: 138, Neg. LLF: 85.97632530336972
Iteration: 10, Func. Count: 152, Neg. LLF: 85.87757456533546
Iteration: 11, Func. Count: 166, Neg. LLF: 85.71122267454265
Iteration: 12, Func. Count: 180, Neg. LLF: 85.50532383223833
Iteration: 13, Func. Count: 194, Neg. LLF: 85.28839326792598
Iteration: 14, Func. Count: 208, Neg. LLF: 85.75975292376312
Iteration: 15, Func. Count: 223, Neg. LLF: 85.09770776552544
Iteration: 16, Func. Count: 237, Neg. LLF: 85.06983562976643
Iteration: 17, Func. Count: 251, Neg. LLF: 85.06128501960771
Iteration: 18, Func. Count: 265, Neg. LLF: 85.05881416314409
Iteration: 19, Func. Count: 279, Neg. LLF: 85.05757709816464
Iteration: 20, Func. Count: 293, Neg. LLF: 85.05752835301325
Iteration: 21, Func. Count: 307, Neg. LLF: 85.05752541063875
Iteration: 22, Func. Count: 320, Neg. LLF: 85.05752541062652
Optimization terminated successfully (Exit mode 0)
Current function value: 85.05752541063875
Iterations: 22
Function evaluations: 320
Gradient evaluations: 22
Iteration: 1, Func. Count: 12, Neg. LLF: 135.28568752056023
Iteration: 2, Func. Count: 25, Neg. LLF: 115.54771315404685
Iteration: 3, Func. Count: 38, Neg. LLF: 585.6740897597938
Iteration: 4, Func. Count: 50, Neg. LLF: 1192.0182782180166
Iteration: 5, Func. Count: 62, Neg. LLF: 2591.3912857588234
Iteration: 6, Func. Count: 74, Neg. LLF: 87.43532451648124
Iteration: 7, Func. Count: 86, Neg. LLF: 91.5619465442578
Iteration: 8, Func. Count: 98, Neg. LLF: 88.26603672526105
Iteration: 9, Func. Count: 110, Neg. LLF: 86.2845807499176
Iteration: 10, Func. Count: 121, Neg. LLF: 86.27724289434607
Iteration: 11, Func. Count: 132, Neg. LLF: 86.2769580976695
Iteration: 12, Func. Count: 143, Neg. LLF: 86.27694539558595
Iteration: 13, Func. Count: 154, Neg. LLF: 86.27694378459942
Iteration: 14, Func. Count: 164, Neg. LLF: 86.27694378457826
Optimization terminated successfully (Exit mode 0)
Current function value: 86.27694378459942
Iterations: 14
Function evaluations: 164
Gradient evaluations: 14
Iteration: 1, Func. Count: 13, Neg. LLF: 42737598.42205855
Iteration: 2, Func. Count: 27, Neg. LLF: 679.5196260535862
Iteration: 3, Func. Count: 40, Neg. LLF: 91.82102381200002
Iteration: 4, Func. Count: 53, Neg. LLF: 122.90787826346165
Iteration: 5, Func. Count: 67, Neg. LLF: 88.83881382075748
Iteration: 6, Func. Count: 80, Neg. LLF: 91.4915159520839
Iteration: 7, Func. Count: 93, Neg. LLF: 89.02773095654582
Iteration: 8, Func. Count: 106, Neg. LLF: 86.84987299388843
Iteration: 9, Func. Count: 118, Neg. LLF: 110.6331697732264
Iteration: 10, Func. Count: 131, Neg. LLF: 86.54424778952395
Iteration: 11, Func. Count: 143, Neg. LLF: 86.4311197408287
Iteration: 12, Func. Count: 155, Neg. LLF: 86.40065612349213
Iteration: 13, Func. Count: 167, Neg. LLF: 86.3794744024511
Iteration: 14, Func. Count: 179, Neg. LLF: 86.35426786516
Iteration: 15, Func. Count: 191, Neg. LLF: 86.32930148446393
Iteration: 16, Func. Count: 203, Neg. LLF: 86.31435279198065
Iteration: 17, Func. Count: 215, Neg. LLF: 86.2987215375505
Iteration: 18, Func. Count: 227, Neg. LLF: 86.2884465785552
Iteration: 19, Func. Count: 239, Neg. LLF: 86.28307347113868
Iteration: 20, Func. Count: 251, Neg. LLF: 86.2794157798393
Iteration: 21, Func. Count: 263, Neg. LLF: 86.27854769192375
Iteration: 22, Func. Count: 275, Neg. LLF: 86.27746805770995
Iteration: 23, Func. Count: 287, Neg. LLF: 86.27713003330467
Iteration: 24, Func. Count: 299, Neg. LLF: 86.27696261590556
Iteration: 25, Func. Count: 311, Neg. LLF: 86.27694489985706
Iteration: 26, Func. Count: 323, Neg. LLF: 86.27694371871972
Iteration: 27, Func. Count: 334, Neg. LLF: 86.27694378065407
Optimization terminated successfully (Exit mode 0)
Current function value: 86.27694371871972
Iterations: 27
Function evaluations: 334
Gradient evaluations: 27
Iteration: 1, Func. Count: 14, Neg. LLF: 55265821.63339645
Iteration: 2, Func. Count: 29, Neg. LLF: 131.61168282502905
Iteration: 3, Func. Count: 44, Neg. LLF: 117.9893381015825
Iteration: 4, Func. Count: 58, Neg. LLF: 89.91048616810168
Iteration: 5, Func. Count: 72, Neg. LLF: 88.7272725780193
Iteration: 6, Func. Count: 86, Neg. LLF: 87.57712491294939
Iteration: 7, Func. Count: 100, Neg. LLF: 87.22225833317322
Iteration: 8, Func. Count: 114, Neg. LLF: 86.71634076040854
Iteration: 9, Func. Count: 128, Neg. LLF: 89.46508571508193
Iteration: 10, Func. Count: 142, Neg. LLF: 86.2534329992894
Iteration: 11, Func. Count: 155, Neg. LLF: 86.21757655034304
Iteration: 12, Func. Count: 168, Neg. LLF: 86.18888703246526
Iteration: 13, Func. Count: 181, Neg. LLF: 86.18515994348569
Iteration: 14, Func. Count: 194, Neg. LLF: 86.18245871462257
Iteration: 15, Func. Count: 207, Neg. LLF: 86.17152701566235
Iteration: 16, Func. Count: 220, Neg. LLF: 86.05808818481064
Iteration: 17, Func. Count: 233, Neg. LLF: 86.01181645072329
Iteration: 18, Func. Count: 246, Neg. LLF: 88.33603171389032
Iteration: 19, Func. Count: 261, Neg. LLF: 86.6181136032682
Iteration: 20, Func. Count: 275, Neg. LLF: 85.92255328134192
Iteration: 21, Func. Count: 288, Neg. LLF: 85.88771292484414
Iteration: 22, Func. Count: 301, Neg. LLF: 85.8864904690733
Iteration: 23, Func. Count: 314, Neg. LLF: 85.88640391611685
Iteration: 24, Func. Count: 327, Neg. LLF: 85.88640098348789
Iteration: 25, Func. Count: 339, Neg. LLF: 85.88640098340912
Optimization terminated successfully (Exit mode 0)
Current function value: 85.88640098348789
Iterations: 25
Function evaluations: 339
Gradient evaluations: 25
Iteration: 1, Func. Count: 15, Neg. LLF: 51694306.53517176
Iteration: 2, Func. Count: 31, Neg. LLF: 1322943.8717396962
Iteration: 3, Func. Count: 47, Neg. LLF: 180.15604609442397
Iteration: 4, Func. Count: 63, Neg. LLF: 89.21308619496763
Iteration: 5, Func. Count: 78, Neg. LLF: 87.56283573319003
Iteration: 6, Func. Count: 93, Neg. LLF: 91.66030700467755
Iteration: 7, Func. Count: 108, Neg. LLF: 88.05039344154963
Iteration: 8, Func. Count: 123, Neg. LLF: 86.88406135351968
Iteration: 9, Func. Count: 138, Neg. LLF: 86.88591137972995
Iteration: 10, Func. Count: 153, Neg. LLF: 86.21204924751143
Iteration: 11, Func. Count: 167, Neg. LLF: 86.1956699056962
Iteration: 12, Func. Count: 181, Neg. LLF: 86.19079242927046
Iteration: 13, Func. Count: 195, Neg. LLF: 86.19146576948835
Iteration: 14, Func. Count: 210, Neg. LLF: 86.18722655435649
Iteration: 15, Func. Count: 224, Neg. LLF: 86.18310059204373
Iteration: 16, Func. Count: 238, Neg. LLF: 86.17927160550795
Iteration: 17, Func. Count: 252, Neg. LLF: 86.16822141592598
Iteration: 18, Func. Count: 266, Neg. LLF: 86.07511625235044
Iteration: 19, Func. Count: 280, Neg. LLF: 86.34855474906848
Iteration: 20, Func. Count: 295, Neg. LLF: 86.34152840098206
Iteration: 21, Func. Count: 312, Neg. LLF: 86.4646174996241
Iteration: 22, Func. Count: 327, Neg. LLF: 85.91322650503399
Iteration: 23, Func. Count: 341, Neg. LLF: 85.88942349066485
Iteration: 24, Func. Count: 355, Neg. LLF: 85.88672091961068
Iteration: 25, Func. Count: 369, Neg. LLF: 85.88642614417509
Iteration: 26, Func. Count: 383, Neg. LLF: 85.88640174297181
Iteration: 27, Func. Count: 397, Neg. LLF: 85.88640103796862
Optimization terminated successfully (Exit mode 0)
Current function value: 85.88640103796862
Iterations: 27
Function evaluations: 397
Gradient evaluations: 27
Iteration: 1, Func. Count: 16, Neg. LLF: 70507112.91801439
Iteration: 2, Func. Count: 33, Neg. LLF: 1069186.9654928162
Iteration: 3, Func. Count: 50, Neg. LLF: 157.03817660800968
Iteration: 4, Func. Count: 66, Neg. LLF: 95.19188715250539
Iteration: 5, Func. Count: 82, Neg. LLF: 89.4749464496084
Iteration: 6, Func. Count: 98, Neg. LLF: 89.0044077847642
Iteration: 7, Func. Count: 114, Neg. LLF: 87.41929710539472
Iteration: 8, Func. Count: 130, Neg. LLF: 85.63239885800562
Iteration: 9, Func. Count: 145, Neg. LLF: 109.83499138534704
Iteration: 10, Func. Count: 161, Neg. LLF: 86.04395187324332
Iteration: 11, Func. Count: 177, Neg. LLF: 85.81617882436305
Iteration: 12, Func. Count: 193, Neg. LLF: 85.3561797059105
Iteration: 13, Func. Count: 208, Neg. LLF: 85.25924885751384
Iteration: 14, Func. Count: 223, Neg. LLF: 85.12614428631518
Iteration: 15, Func. Count: 238, Neg. LLF: 85.06321294021805
Iteration: 16, Func. Count: 253, Neg. LLF: 85.05956702138661
Iteration: 17, Func. Count: 268, Neg. LLF: 85.05754495027465
Iteration: 18, Func. Count: 283, Neg. LLF: 85.05732907598265
Iteration: 19, Func. Count: 298, Neg. LLF: 85.05728107816256
Iteration: 20, Func. Count: 313, Neg. LLF: 85.05727583443552
Iteration: 21, Func. Count: 327, Neg. LLF: 85.05727583451477
Optimization terminated successfully (Exit mode 0)
Current function value: 85.05727583443552
Iterations: 21
Function evaluations: 327
Gradient evaluations: 21
Iteration: 1, Func. Count: 6, Neg. LLF: 139125842.02732122
Iteration: 2, Func. Count: 13, Neg. LLF: 51152386.20520582
Iteration: 3, Func. Count: 20, Neg. LLF: 106.29192349224958
Iteration: 4, Func. Count: 26, Neg. LLF: 94.57111156752812
Iteration: 5, Func. Count: 32, Neg. LLF: 96.81118720583967
Iteration: 6, Func. Count: 38, Neg. LLF: 95.19000059795408
Iteration: 7, Func. Count: 44, Neg. LLF: 90.37615817983215
Iteration: 8, Func. Count: 50, Neg. LLF: 89.6392244907966
Iteration: 9, Func. Count: 56, Neg. LLF: 91.0566722186208
Iteration: 10, Func. Count: 62, Neg. LLF: 89.16188514870865
Iteration: 11, Func. Count: 68, Neg. LLF: 89.88143499893332
Iteration: 12, Func. Count: 74, Neg. LLF: 88.05871994654578
Iteration: 13, Func. Count: 80, Neg. LLF: 88.01855685555631
Iteration: 14, Func. Count: 86, Neg. LLF: 87.88713446707789
Iteration: 15, Func. Count: 91, Neg. LLF: 87.72876481543601
Iteration: 16, Func. Count: 96, Neg. LLF: 87.67101901329329
Iteration: 17, Func. Count: 101, Neg. LLF: 87.82284751528023
Iteration: 18, Func. Count: 107, Neg. LLF: 87.6203573259929
Iteration: 19, Func. Count: 112, Neg. LLF: 87.61995477677792
Iteration: 20, Func. Count: 117, Neg. LLF: 87.61985961266521
Iteration: 21, Func. Count: 122, Neg. LLF: 87.61985899109095
Optimization terminated successfully (Exit mode 0)
Current function value: 87.61985899109095
Iterations: 21
Function evaluations: 122
Gradient evaluations: 21
Iteration: 1, Func. Count: 5, Neg. LLF: 126.5888844079909
Iteration: 2, Func. Count: 13, Neg. LLF: 109.64133340341684
Iteration: 3, Func. Count: 19, Neg. LLF: 89.13160242197404
Iteration: 4, Func. Count: 23, Neg. LLF: 89.11742674670865
Iteration: 5, Func. Count: 27, Neg. LLF: 89.09467928349065
Iteration: 6, Func. Count: 31, Neg. LLF: 89.0909859723838
Iteration: 7, Func. Count: 35, Neg. LLF: 89.09082906544047
Iteration: 8, Func. Count: 39, Neg. LLF: 89.09082853188508
Optimization terminated successfully (Exit mode 0)
Current function value: 89.09082853188508
Iterations: 8
Function evaluations: 39
Gradient evaluations: 8
Iteration: 1, Func. Count: 6, Neg. LLF: 60426222.02592762
Iteration: 2, Func. Count: 13, Neg. LLF: 176.04848222165145
Iteration: 3, Func. Count: 20, Neg. LLF: 90.80099402238272
Iteration: 4, Func. Count: 26, Neg. LLF: 89.93490419351846
Iteration: 5, Func. Count: 32, Neg. LLF: 88.87001509399713
Iteration: 6, Func. Count: 38, Neg. LLF: 88.48122076073935
Iteration: 7, Func. Count: 44, Neg. LLF: 88.30949110340043
Iteration: 8, Func. Count: 49, Neg. LLF: 88.3035588404957
Iteration: 9, Func. Count: 54, Neg. LLF: 88.31001706387558
Iteration: 10, Func. Count: 60, Neg. LLF: 88.30315678320193
Iteration: 11, Func. Count: 65, Neg. LLF: 88.3031552054142
Iteration: 12, Func. Count: 69, Neg. LLF: 88.30315520542433
Optimization terminated successfully (Exit mode 0)
Current function value: 88.3031552054142
Iterations: 12
Function evaluations: 69
Gradient evaluations: 12
Iteration: 1, Func. Count: 7, Neg. LLF: 57899324.62855996
Iteration: 2, Func. Count: 15, Neg. LLF: 214.70894816341595
Iteration: 3, Func. Count: 24, Neg. LLF: 90.12803126923605
Iteration: 4, Func. Count: 31, Neg. LLF: 88.32820062254054
Iteration: 5, Func. Count: 37, Neg. LLF: 88.32422316934768
Iteration: 6, Func. Count: 44, Neg. LLF: 88.31575377503943
Iteration: 7, Func. Count: 50, Neg. LLF: 88.31548399018946
Iteration: 8, Func. Count: 56, Neg. LLF: 88.31548228646781
Iteration: 9, Func. Count: 62, Neg. LLF: 88.31547419088218
Iteration: 10, Func. Count: 68, Neg. LLF: 88.31536262315215
Iteration: 11, Func. Count: 74, Neg. LLF: 88.32099982117067
Iteration: 12, Func. Count: 81, Neg. LLF: 88.31513856844636
Iteration: 13, Func. Count: 87, Neg. LLF: 88.31500235668204
Iteration: 14, Func. Count: 93, Neg. LLF: 88.3130114838844
Iteration: 15, Func. Count: 99, Neg. LLF: 88.30649582155422
Iteration: 16, Func. Count: 105, Neg. LLF: 88.30328289992256
Iteration: 17, Func. Count: 111, Neg. LLF: 88.3031691873603
Iteration: 18, Func. Count: 117, Neg. LLF: 88.30315656181375
Iteration: 19, Func. Count: 123, Neg. LLF: 88.30315521229117
Iteration: 20, Func. Count: 128, Neg. LLF: 88.3031552132937
Optimization terminated successfully (Exit mode 0)
Current function value: 88.30315521229117
Iterations: 20
Function evaluations: 128
Gradient evaluations: 20
Iteration: 1, Func. Count: 8, Neg. LLF: 94686831.22108701
Iteration: 2, Func. Count: 17, Neg. LLF: 273.4786772014597
Iteration: 3, Func. Count: 27, Neg. LLF: 89.3347667874386
Iteration: 4, Func. Count: 35, Neg. LLF: 88.44180549385732
Iteration: 5, Func. Count: 43, Neg. LLF: 88.31884587441488
Iteration: 6, Func. Count: 50, Neg. LLF: 88.31431215605669
Iteration: 7, Func. Count: 57, Neg. LLF: 88.31379681036063
Iteration: 8, Func. Count: 64, Neg. LLF: 88.3136089779645
Iteration: 9, Func. Count: 71, Neg. LLF: 88.31358416684726
Iteration: 10, Func. Count: 78, Neg. LLF: 88.31358299172037
Iteration: 11, Func. Count: 84, Neg. LLF: 88.31358299170934
Optimization terminated successfully (Exit mode 0)
Current function value: 88.31358299172037
Iterations: 11
Function evaluations: 84
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 85778885.37022708
Iteration: 2, Func. Count: 19, Neg. LLF: 227.2807886601919
Iteration: 3, Func. Count: 30, Neg. LLF: 88.72644727000227
Iteration: 4, Func. Count: 39, Neg. LLF: 88.67018061613301
Iteration: 5, Func. Count: 48, Neg. LLF: 88.29163806135303
Iteration: 6, Func. Count: 56, Neg. LLF: 88.33018815585127
Iteration: 7, Func. Count: 65, Neg. LLF: 88.23591608850587
Iteration: 8, Func. Count: 73, Neg. LLF: 88.37360831341202
Iteration: 9, Func. Count: 82, Neg. LLF: 88.53941231026543
Iteration: 10, Func. Count: 91, Neg. LLF: 88.16259373873888
Iteration: 11, Func. Count: 100, Neg. LLF: 87.85075804783861
Iteration: 12, Func. Count: 108, Neg. LLF: 87.79394934949875
Iteration: 13, Func. Count: 116, Neg. LLF: 87.7924141391752
Iteration: 14, Func. Count: 124, Neg. LLF: 87.79195928380284
Iteration: 15, Func. Count: 132, Neg. LLF: 87.79195690670977
Iteration: 16, Func. Count: 139, Neg. LLF: 87.79195688449205
Optimization terminated successfully (Exit mode 0)
Current function value: 87.79195690670977
Iterations: 16
Function evaluations: 139
Gradient evaluations: 16
Iteration: 1, Func. Count: 6, Neg. LLF: 124.93278064555219
Iteration: 2, Func. Count: 14, Neg. LLF: 129.4351475076328
Iteration: 3, Func. Count: 20, Neg. LLF: 89.40962576753384
Iteration: 4, Func. Count: 25, Neg. LLF: 89.21947154346964
Iteration: 5, Func. Count: 30, Neg. LLF: 88.89717272578507
Iteration: 6, Func. Count: 35, Neg. LLF: 88.88763111074364
Iteration: 7, Func. Count: 41, Neg. LLF: 88.6324114173364
Iteration: 8, Func. Count: 46, Neg. LLF: 88.81105569312825
Iteration: 9, Func. Count: 52, Neg. LLF: 88.5989304712786
Iteration: 10, Func. Count: 57, Neg. LLF: 88.59754312935713
Iteration: 11, Func. Count: 62, Neg. LLF: 88.5975046089644
Iteration: 12, Func. Count: 67, Neg. LLF: 88.59750150715433
Iteration: 13, Func. Count: 71, Neg. LLF: 88.59750150715307
Optimization terminated successfully (Exit mode 0)
Current function value: 88.59750150715433
Iterations: 13
Function evaluations: 71
Gradient evaluations: 13
Iteration: 1, Func. Count: 7, Neg. LLF: 32942651.16771217
Iteration: 2, Func. Count: 15, Neg. LLF: 127.15441915037701
Iteration: 3, Func. Count: 23, Neg. LLF: 92.53454662975139
Iteration: 4, Func. Count: 30, Neg. LLF: 88.9913818746265
Iteration: 5, Func. Count: 37, Neg. LLF: 88.39055240791708
Iteration: 6, Func. Count: 44, Neg. LLF: 88.30423832679504
Iteration: 7, Func. Count: 50, Neg. LLF: 88.3031725999653
Iteration: 8, Func. Count: 56, Neg. LLF: 88.30315522491489
Iteration: 9, Func. Count: 61, Neg. LLF: 88.30315522484148
Optimization terminated successfully (Exit mode 0)
Current function value: 88.30315522491489
Iterations: 9
Function evaluations: 61
Gradient evaluations: 9
Iteration: 1, Func. Count: 8, Neg. LLF: 58272950.915730104
Iteration: 2, Func. Count: 17, Neg. LLF: 220.74215378903907
Iteration: 3, Func. Count: 27, Neg. LLF: 89.81868694597402
Iteration: 4, Func. Count: 35, Neg. LLF: 88.31344608446105
Iteration: 5, Func. Count: 42, Neg. LLF: 88.36515733953262
Iteration: 6, Func. Count: 51, Neg. LLF: 88.23895391490679
Iteration: 7, Func. Count: 58, Neg. LLF: 88.2121938841261
Iteration: 8, Func. Count: 65, Neg. LLF: 88.19706032729337
Iteration: 9, Func. Count: 72, Neg. LLF: 88.18380928146804
Iteration: 10, Func. Count: 79, Neg. LLF: 88.18065065961542
Iteration: 11, Func. Count: 86, Neg. LLF: 88.17721413116291
Iteration: 12, Func. Count: 93, Neg. LLF: 88.17698283486146
Iteration: 13, Func. Count: 100, Neg. LLF: 88.17691404111352
Iteration: 14, Func. Count: 106, Neg. LLF: 88.17691404087871
Optimization terminated successfully (Exit mode 0)
Current function value: 88.17691404111352
Iterations: 14
Function evaluations: 106
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 90559872.78488068
Iteration: 2, Func. Count: 19, Neg. LLF: 260.8349229121782
Iteration: 3, Func. Count: 30, Neg. LLF: 89.01743742202328
Iteration: 4, Func. Count: 39, Neg. LLF: 90.18895426036099
Iteration: 5, Func. Count: 48, Neg. LLF: 88.40508977297964
Iteration: 6, Func. Count: 57, Neg. LLF: 88.21482000410543
Iteration: 7, Func. Count: 65, Neg. LLF: 88.1638492885083
Iteration: 8, Func. Count: 73, Neg. LLF: 88.14446596431472
Iteration: 9, Func. Count: 81, Neg. LLF: 88.14747378831308
Iteration: 10, Func. Count: 90, Neg. LLF: 88.1311369886464
Iteration: 11, Func. Count: 98, Neg. LLF: 88.13055442383515
Iteration: 12, Func. Count: 106, Neg. LLF: 88.13054922188414
Iteration: 13, Func. Count: 114, Neg. LLF: 88.13054862767768
Optimization terminated successfully (Exit mode 0)
Current function value: 88.13054862767768
Iterations: 13
Function evaluations: 114
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 144187851.32289717
Iteration: 2, Func. Count: 21, Neg. LLF: 236.7441000198907
Iteration: 3, Func. Count: 33, Neg. LLF: 89.11073687270972
Iteration: 4, Func. Count: 43, Neg. LLF: 88.51431498675265
Iteration: 5, Func. Count: 53, Neg. LLF: 87.97115681234106
Iteration: 6, Func. Count: 62, Neg. LLF: 87.78519655691069
Iteration: 7, Func. Count: 71, Neg. LLF: 87.34481072711847
Iteration: 8, Func. Count: 80, Neg. LLF: 87.04128213679128
Iteration: 9, Func. Count: 89, Neg. LLF: 87.01709709791233
Iteration: 10, Func. Count: 98, Neg. LLF: 87.01505800446374
Iteration: 11, Func. Count: 107, Neg. LLF: 87.01491818384834
Iteration: 12, Func. Count: 116, Neg. LLF: 87.01490144999092
Iteration: 13, Func. Count: 125, Neg. LLF: 87.01490019013467
Iteration: 14, Func. Count: 134, Neg. LLF: 87.01489935034186
Optimization terminated successfully (Exit mode 0)
Current function value: 87.01489935034186
Iterations: 14
Function evaluations: 134
Gradient evaluations: 14
Iteration: 1, Func. Count: 7, Neg. LLF: 132.49942539424686
Iteration: 2, Func. Count: 17, Neg. LLF: 182.13124667887115
Iteration: 3, Func. Count: 25, Neg. LLF: 91.58036277879032
Iteration: 4, Func. Count: 32, Neg. LLF: 88.87035154221756
Iteration: 5, Func. Count: 39, Neg. LLF: 88.6166921437681
Iteration: 6, Func. Count: 45, Neg. LLF: 88.60351880276839
Iteration: 7, Func. Count: 51, Neg. LLF: 88.59811191932502
Iteration: 8, Func. Count: 57, Neg. LLF: 88.59750634251927
Iteration: 9, Func. Count: 63, Neg. LLF: 88.59750149664892
Iteration: 10, Func. Count: 68, Neg. LLF: 88.59750156393827
Optimization terminated successfully (Exit mode 0)
Current function value: 88.59750149664892
Iterations: 10
Function evaluations: 68
Gradient evaluations: 10
Iteration: 1, Func. Count: 8, Neg. LLF: 32841640.038240105
Iteration: 2, Func. Count: 17, Neg. LLF: 127.14319677175027
Iteration: 3, Func. Count: 26, Neg. LLF: 92.50475087847087
Iteration: 4, Func. Count: 34, Neg. LLF: 89.00812243653542
Iteration: 5, Func. Count: 42, Neg. LLF: 88.3800236154515
Iteration: 6, Func. Count: 50, Neg. LLF: 88.30417066222242
Iteration: 7, Func. Count: 57, Neg. LLF: 88.30318457393837
Iteration: 8, Func. Count: 64, Neg. LLF: 88.30315792387073
Iteration: 9, Func. Count: 71, Neg. LLF: 88.30315520602498
Iteration: 10, Func. Count: 77, Neg. LLF: 88.30315520605163
Optimization terminated successfully (Exit mode 0)
Current function value: 88.30315520602498
Iterations: 10
Function evaluations: 77
Gradient evaluations: 10
Iteration: 1, Func. Count: 9, Neg. LLF: 54063718.5342464
Iteration: 2, Func. Count: 19, Neg. LLF: 213.6381282093458
Iteration: 3, Func. Count: 29, Neg. LLF: 89.78982522552677
Iteration: 4, Func. Count: 38, Neg. LLF: 89.02697848776367
Iteration: 5, Func. Count: 47, Neg. LLF: 88.41002286932418
Iteration: 6, Func. Count: 55, Neg. LLF: 88.28686544556035
Iteration: 7, Func. Count: 63, Neg. LLF: 88.21563874758107
Iteration: 8, Func. Count: 71, Neg. LLF: 88.19099835237785
Iteration: 9, Func. Count: 79, Neg. LLF: 88.17756152397189
Iteration: 10, Func. Count: 87, Neg. LLF: 88.17692840414827
Iteration: 11, Func. Count: 95, Neg. LLF: 88.17691429331802
Iteration: 12, Func. Count: 102, Neg. LLF: 88.1769142930616
Optimization terminated successfully (Exit mode 0)
Current function value: 88.17691429331802
Iterations: 12
Function evaluations: 102
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 52033859.88304643
Iteration: 2, Func. Count: 21, Neg. LLF: 801.1480956889693
Iteration: 3, Func. Count: 32, Neg. LLF: 102.83169381612655
Iteration: 4, Func. Count: 43, Neg. LLF: 88.76144206079154
Iteration: 5, Func. Count: 53, Neg. LLF: 88.23305019788343
Iteration: 6, Func. Count: 62, Neg. LLF: 88.17607820038961
Iteration: 7, Func. Count: 71, Neg. LLF: 88.1321965012622
Iteration: 8, Func. Count: 80, Neg. LLF: 88.13061715321193
Iteration: 9, Func. Count: 89, Neg. LLF: 88.13056595643857
Iteration: 10, Func. Count: 98, Neg. LLF: 88.13055004150424
Iteration: 11, Func. Count: 107, Neg. LLF: 88.13054866095594
Iteration: 12, Func. Count: 115, Neg. LLF: 88.13054866092305
Optimization terminated successfully (Exit mode 0)
Current function value: 88.13054866095594
Iterations: 12
Function evaluations: 115
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 72881904.16754876
Iteration: 2, Func. Count: 23, Neg. LLF: 516.7721545799874
Iteration: 3, Func. Count: 36, Neg. LLF: 107.66590412008824
Iteration: 4, Func. Count: 48, Neg. LLF: 88.122441117127
Iteration: 5, Func. Count: 58, Neg. LLF: 87.94886543280052
Iteration: 6, Func. Count: 68, Neg. LLF: 87.70473810340725
Iteration: 7, Func. Count: 78, Neg. LLF: 87.72229835925903
Iteration: 8, Func. Count: 89, Neg. LLF: 87.51629757506791
Iteration: 9, Func. Count: 99, Neg. LLF: 87.41125132687239
Iteration: 10, Func. Count: 109, Neg. LLF: 87.10565666635043
Iteration: 11, Func. Count: 119, Neg. LLF: 87.04816575409954
Iteration: 12, Func. Count: 129, Neg. LLF: 87.02937016861398
Iteration: 13, Func. Count: 139, Neg. LLF: 87.0229643571244
Iteration: 14, Func. Count: 149, Neg. LLF: 87.0182095003007
Iteration: 15, Func. Count: 159, Neg. LLF: 87.01550539748945
Iteration: 16, Func. Count: 169, Neg. LLF: 87.01493675008709
Iteration: 17, Func. Count: 179, Neg. LLF: 87.01489941335137
Iteration: 18, Func. Count: 189, Neg. LLF: 87.01489874105026
Optimization terminated successfully (Exit mode 0)
Current function value: 87.01489874105026
Iterations: 18
Function evaluations: 189
Gradient evaluations: 18
Iteration: 1, Func. Count: 8, Neg. LLF: 126.92895200042952
Iteration: 2, Func. Count: 19, Neg. LLF: 204.98423620883452
Iteration: 3, Func. Count: 27, Neg. LLF: 102.98372363176524
Iteration: 4, Func. Count: 35, Neg. LLF: 88.67796846366791
Iteration: 5, Func. Count: 42, Neg. LLF: 89.91908338469362
Iteration: 6, Func. Count: 50, Neg. LLF: 88.68472596279379
Iteration: 7, Func. Count: 58, Neg. LLF: 88.79967423641752
Iteration: 8, Func. Count: 66, Neg. LLF: 88.51599410178066
Iteration: 9, Func. Count: 73, Neg. LLF: 88.51299932170059
Iteration: 10, Func. Count: 80, Neg. LLF: 88.51097706176424
Iteration: 11, Func. Count: 87, Neg. LLF: 88.51094816263073
Iteration: 12, Func. Count: 94, Neg. LLF: 88.51094737493366
Optimization terminated successfully (Exit mode 0)
Current function value: 88.51094737493366
Iterations: 12
Function evaluations: 94
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 33062711.709626544
Iteration: 2, Func. Count: 19, Neg. LLF: 129.20105060465374
Iteration: 3, Func. Count: 29, Neg. LLF: 92.49741580995922
Iteration: 4, Func. Count: 38, Neg. LLF: 89.01742757880534
Iteration: 5, Func. Count: 47, Neg. LLF: 88.37967931457962
Iteration: 6, Func. Count: 56, Neg. LLF: 88.30417632297686
Iteration: 7, Func. Count: 64, Neg. LLF: 88.30319614216168
Iteration: 8, Func. Count: 72, Neg. LLF: 88.30315867801346
Iteration: 9, Func. Count: 80, Neg. LLF: 88.3031552061204
Iteration: 10, Func. Count: 87, Neg. LLF: 88.30315520614607
Optimization terminated successfully (Exit mode 0)
Current function value: 88.3031552061204
Iterations: 10
Function evaluations: 87
Gradient evaluations: 10
Iteration: 1, Func. Count: 10, Neg. LLF: 56019951.90036942
Iteration: 2, Func. Count: 21, Neg. LLF: 337.50634251596324
Iteration: 3, Func. Count: 33, Neg. LLF: 89.31559411008494
Iteration: 4, Func. Count: 43, Neg. LLF: 88.9928616375262
Iteration: 5, Func. Count: 53, Neg. LLF: 88.22611122024827
Iteration: 6, Func. Count: 62, Neg. LLF: 88.18774081692843
Iteration: 7, Func. Count: 71, Neg. LLF: 88.17996801056097
Iteration: 8, Func. Count: 80, Neg. LLF: 88.17799446730203
Iteration: 9, Func. Count: 89, Neg. LLF: 88.17735686197645
Iteration: 10, Func. Count: 98, Neg. LLF: 88.17697426796731
Iteration: 11, Func. Count: 107, Neg. LLF: 88.17692018347165
Iteration: 12, Func. Count: 116, Neg. LLF: 88.17691395674714
Iteration: 13, Func. Count: 124, Neg. LLF: 88.17691395663243
Optimization terminated successfully (Exit mode 0)
Current function value: 88.17691395674714
Iterations: 13
Function evaluations: 124
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 53626997.2309809
Iteration: 2, Func. Count: 23, Neg. LLF: 1136.836262020056
Iteration: 3, Func. Count: 35, Neg. LLF: 117.288762675012
Iteration: 4, Func. Count: 47, Neg. LLF: 88.66688382662869
Iteration: 5, Func. Count: 58, Neg. LLF: 88.21432497249978
Iteration: 6, Func. Count: 68, Neg. LLF: 88.16776682183719
Iteration: 7, Func. Count: 78, Neg. LLF: 88.13389458508405
Iteration: 8, Func. Count: 88, Neg. LLF: 88.13187030471502
Iteration: 9, Func. Count: 98, Neg. LLF: 88.1305981561092
Iteration: 10, Func. Count: 108, Neg. LLF: 88.13055370921225
Iteration: 11, Func. Count: 118, Neg. LLF: 88.13054960182683
Iteration: 12, Func. Count: 128, Neg. LLF: 88.13054863730201
Optimization terminated successfully (Exit mode 0)
Current function value: 88.13054863730201
Iterations: 12
Function evaluations: 128
Gradient evaluations: 12
Iteration: 1, Func. Count: 12, Neg. LLF: 76788172.56705518
Iteration: 2, Func. Count: 25, Neg. LLF: 890.2675108171716
Iteration: 3, Func. Count: 38, Neg. LLF: 177.11161105884287
Iteration: 4, Func. Count: 51, Neg. LLF: 88.01537877952381
Iteration: 5, Func. Count: 62, Neg. LLF: 88.06181736756402
Iteration: 6, Func. Count: 74, Neg. LLF: 87.84452363792924
Iteration: 7, Func. Count: 85, Neg. LLF: 87.76098567370042
Iteration: 8, Func. Count: 96, Neg. LLF: 87.38997058538271
Iteration: 9, Func. Count: 107, Neg. LLF: 87.23945677435445
Iteration: 10, Func. Count: 118, Neg. LLF: 87.10479309824225
Iteration: 11, Func. Count: 129, Neg. LLF: 87.08415847016165
Iteration: 12, Func. Count: 140, Neg. LLF: 87.0532112255145
Iteration: 13, Func. Count: 151, Neg. LLF: 87.03648123971965
Iteration: 14, Func. Count: 162, Neg. LLF: 87.02283227613697
Iteration: 15, Func. Count: 173, Neg. LLF: 87.0172777595599
Iteration: 16, Func. Count: 184, Neg. LLF: 87.01532255780053
Iteration: 17, Func. Count: 195, Neg. LLF: 87.01495421101193
Iteration: 18, Func. Count: 206, Neg. LLF: 87.01489978738682
Iteration: 19, Func. Count: 217, Neg. LLF: 87.01489968306112
Optimization terminated successfully (Exit mode 0)
Current function value: 87.01489968306112
Iterations: 19
Function evaluations: 217
Gradient evaluations: 19
Iteration: 1, Func. Count: 5, Neg. LLF: 121.800976815543
Iteration: 2, Func. Count: 12, Neg. LLF: 96.78060091810545
Iteration: 3, Func. Count: 17, Neg. LLF: 89.18909626119535
Iteration: 4, Func. Count: 21, Neg. LLF: 89.17499999665823
Iteration: 5, Func. Count: 26, Neg. LLF: 89.11846922445761
Iteration: 6, Func. Count: 30, Neg. LLF: 89.11842631189239
Iteration: 7, Func. Count: 33, Neg. LLF: 89.1184263349399
Optimization terminated successfully (Exit mode 0)
Current function value: 89.11842631189239
Iterations: 7
Function evaluations: 33
Gradient evaluations: 7
Iteration: 1, Func. Count: 6, Neg. LLF: 91964797.76964311
Iteration: 2, Func. Count: 13, Neg. LLF: 215.3759470229102
Iteration: 3, Func. Count: 21, Neg. LLF: 89.39073460627216
Iteration: 4, Func. Count: 28, Neg. LLF: 93.55237208137277
Iteration: 5, Func. Count: 35, Neg. LLF: 88.02854072753458
Iteration: 6, Func. Count: 40, Neg. LLF: 88.02851917385014
Iteration: 7, Func. Count: 45, Neg. LLF: 88.02851840636683
Optimization terminated successfully (Exit mode 0)
Current function value: 88.02851840636683
Iterations: 7
Function evaluations: 45
Gradient evaluations: 7
Iteration: 1, Func. Count: 7, Neg. LLF: 63423134.7521276
Iteration: 2, Func. Count: 15, Neg. LLF: 429.72800710573205
Iteration: 3, Func. Count: 24, Neg. LLF: 89.25247738072362
Iteration: 4, Func. Count: 32, Neg. LLF: 90.295590857452
Iteration: 5, Func. Count: 39, Neg. LLF: 88.10649036598988
Iteration: 6, Func. Count: 45, Neg. LLF: 88.05487118885463
Iteration: 7, Func. Count: 51, Neg. LLF: 88.03167451354123
Iteration: 8, Func. Count: 57, Neg. LLF: 88.02872515041341
Iteration: 9, Func. Count: 63, Neg. LLF: 88.02852560389978
Iteration: 10, Func. Count: 69, Neg. LLF: 88.02851875512658
Iteration: 11, Func. Count: 74, Neg. LLF: 88.02851876572562
Optimization terminated successfully (Exit mode 0)
Current function value: 88.02851875512658
Iterations: 11
Function evaluations: 74
Gradient evaluations: 11
Iteration: 1, Func. Count: 8, Neg. LLF: 40928969.78252951
Iteration: 2, Func. Count: 17, Neg. LLF: 110.01600490264958
Iteration: 3, Func. Count: 26, Neg. LLF: 118.96846640889613
Iteration: 4, Func. Count: 34, Neg. LLF: 90.47110679316502
Iteration: 5, Func. Count: 42, Neg. LLF: 91.8791922713825
Iteration: 6, Func. Count: 50, Neg. LLF: 89.83688997977272
Iteration: 7, Func. Count: 58, Neg. LLF: 88.09988370272315
Iteration: 8, Func. Count: 65, Neg. LLF: 88.03657426992801
Iteration: 9, Func. Count: 72, Neg. LLF: 88.03334466632654
Iteration: 10, Func. Count: 79, Neg. LLF: 88.03139382039058
Iteration: 11, Func. Count: 86, Neg. LLF: 88.03138182688424
Iteration: 12, Func. Count: 94, Neg. LLF: 88.03124124135431
Iteration: 13, Func. Count: 101, Neg. LLF: 88.0311493722904
Iteration: 14, Func. Count: 108, Neg. LLF: 88.03114286815406
Iteration: 15, Func. Count: 114, Neg. LLF: 88.03114286823053
Optimization terminated successfully (Exit mode 0)
Current function value: 88.03114286815406
Iterations: 15
Function evaluations: 114
Gradient evaluations: 15
Iteration: 1, Func. Count: 9, Neg. LLF: 31101888.67974435
Iteration: 2, Func. Count: 19, Neg. LLF: 100.08295213239433
Iteration: 3, Func. Count: 29, Neg. LLF: 102.29467645430431
Iteration: 4, Func. Count: 38, Neg. LLF: 89.81833618719529
Iteration: 5, Func. Count: 47, Neg. LLF: 89.43262966999549
Iteration: 6, Func. Count: 56, Neg. LLF: 88.75730855603607
Iteration: 7, Func. Count: 65, Neg. LLF: 88.40962665017244
Iteration: 8, Func. Count: 74, Neg. LLF: 88.12798907097194
Iteration: 9, Func. Count: 82, Neg. LLF: 88.07859547143376
Iteration: 10, Func. Count: 90, Neg. LLF: 88.04145737160941
Iteration: 11, Func. Count: 98, Neg. LLF: 88.03345129208418
Iteration: 12, Func. Count: 106, Neg. LLF: 88.0312510075201
Iteration: 13, Func. Count: 114, Neg. LLF: 88.03114342237353
Iteration: 14, Func. Count: 122, Neg. LLF: 88.0311426795331
Optimization terminated successfully (Exit mode 0)
Current function value: 88.0311426795331
Iterations: 14
Function evaluations: 122
Gradient evaluations: 14
Iteration: 1, Func. Count: 6, Neg. LLF: 124.99422114522967
Iteration: 2, Func. Count: 14, Neg. LLF: 111.62326475536298
Iteration: 3, Func. Count: 20, Neg. LLF: 89.11850176988648
Iteration: 4, Func. Count: 25, Neg. LLF: 89.30384804309588
Iteration: 5, Func. Count: 31, Neg. LLF: 89.09355080813167
Iteration: 6, Func. Count: 36, Neg. LLF: 89.09090320435224
Iteration: 7, Func. Count: 41, Neg. LLF: 89.09083311760857
Iteration: 8, Func. Count: 46, Neg. LLF: 89.09082855828603
Iteration: 9, Func. Count: 50, Neg. LLF: 89.0908285582721
Optimization terminated successfully (Exit mode 0)
Current function value: 89.09082855828603
Iterations: 9
Function evaluations: 50
Gradient evaluations: 9
Iteration: 1, Func. Count: 7, Neg. LLF: 6542649.336308057
Iteration: 2, Func. Count: 15, Neg. LLF: 208.62107295748942
Iteration: 3, Func. Count: 24, Neg. LLF: 97.94905316961798
Iteration: 4, Func. Count: 31, Neg. LLF: 89.38015516789183
Iteration: 5, Func. Count: 38, Neg. LLF: 87.56731142032118
Iteration: 6, Func. Count: 44, Neg. LLF: 87.57912963293761
Iteration: 7, Func. Count: 51, Neg. LLF: 87.5650063802019
Iteration: 8, Func. Count: 58, Neg. LLF: 87.54914094222879
Iteration: 9, Func. Count: 64, Neg. LLF: 87.54899243685706
Iteration: 10, Func. Count: 70, Neg. LLF: 87.54899131099343
Iteration: 11, Func. Count: 75, Neg. LLF: 87.54899131097213
Optimization terminated successfully (Exit mode 0)
Current function value: 87.54899131099343
Iterations: 11
Function evaluations: 75
Gradient evaluations: 11
Iteration: 1, Func. Count: 8, Neg. LLF: 59905103.33719169
Iteration: 2, Func. Count: 17, Neg. LLF: 181.22182704346528
Iteration: 3, Func. Count: 27, Neg. LLF: 90.55103410838646
Iteration: 4, Func. Count: 35, Neg. LLF: 88.44801087032191
Iteration: 5, Func. Count: 43, Neg. LLF: 87.88027118907878
Iteration: 6, Func. Count: 50, Neg. LLF: 87.9625888873838
Iteration: 7, Func. Count: 58, Neg. LLF: 87.60785402480401
Iteration: 8, Func. Count: 65, Neg. LLF: 87.59451303290571
Iteration: 9, Func. Count: 72, Neg. LLF: 87.57826293755076
Iteration: 10, Func. Count: 79, Neg. LLF: 87.55428139612371
Iteration: 11, Func. Count: 86, Neg. LLF: 87.54932811455376
Iteration: 12, Func. Count: 93, Neg. LLF: 87.54899864410503
Iteration: 13, Func. Count: 100, Neg. LLF: 87.54899144254044
Iteration: 14, Func. Count: 106, Neg. LLF: 87.54899145387685
Optimization terminated successfully (Exit mode 0)
Current function value: 87.54899144254044
Iterations: 14
Function evaluations: 106
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 43605623.19459205
Iteration: 2, Func. Count: 19, Neg. LLF: 108.2408729969041
Iteration: 3, Func. Count: 29, Neg. LLF: 174.9374345929805
Iteration: 4, Func. Count: 38, Neg. LLF: 113.70732414826765
Iteration: 5, Func. Count: 47, Neg. LLF: 104.65242269837496
Iteration: 6, Func. Count: 56, Neg. LLF: 98.50672575106579
Iteration: 7, Func. Count: 65, Neg. LLF: 87.8723097488282
Iteration: 8, Func. Count: 73, Neg. LLF: 89.50935845622101
Iteration: 9, Func. Count: 82, Neg. LLF: 88.45619730511672
Iteration: 10, Func. Count: 92, Neg. LLF: 87.71492852421206
Iteration: 11, Func. Count: 101, Neg. LLF: 87.63083218814852
Iteration: 12, Func. Count: 109, Neg. LLF: 87.58426346392055
Iteration: 13, Func. Count: 117, Neg. LLF: 87.55302909776887
Iteration: 14, Func. Count: 125, Neg. LLF: 87.54905117748096
Iteration: 15, Func. Count: 133, Neg. LLF: 87.54899255159954
Iteration: 16, Func. Count: 141, Neg. LLF: 87.54899144860426
Iteration: 17, Func. Count: 148, Neg. LLF: 87.5489914607447
Optimization terminated successfully (Exit mode 0)
Current function value: 87.54899144860426
Iterations: 17
Function evaluations: 148
Gradient evaluations: 17
Iteration: 1, Func. Count: 10, Neg. LLF: 85260599.72631308
Iteration: 2, Func. Count: 21, Neg. LLF: 226.54632765721632
Iteration: 3, Func. Count: 33, Neg. LLF: 88.49591721621303
Iteration: 4, Func. Count: 43, Neg. LLF: 89.31961920256245
Iteration: 5, Func. Count: 53, Neg. LLF: 88.42744137600566
Iteration: 6, Func. Count: 63, Neg. LLF: 88.293481127781
Iteration: 7, Func. Count: 72, Neg. LLF: 88.28438578812126
Iteration: 8, Func. Count: 81, Neg. LLF: 88.12224964536202
Iteration: 9, Func. Count: 90, Neg. LLF: 88.38870360209451
Iteration: 10, Func. Count: 100, Neg. LLF: 88.05356820800249
Iteration: 11, Func. Count: 110, Neg. LLF: 87.85847674191012
Iteration: 12, Func. Count: 119, Neg. LLF: 87.79724489763687
Iteration: 13, Func. Count: 128, Neg. LLF: 87.79415420874993
Iteration: 14, Func. Count: 137, Neg. LLF: 87.79204781173631
Iteration: 15, Func. Count: 146, Neg. LLF: 87.79196196913843
Iteration: 16, Func. Count: 155, Neg. LLF: 87.79196182130418
Optimization terminated successfully (Exit mode 0)
Current function value: 87.79196113056628
Iterations: 16
Function evaluations: 156
Gradient evaluations: 16
Iteration: 1, Func. Count: 7, Neg. LLF: 112.72445379176578
Iteration: 2, Func. Count: 16, Neg. LLF: 102.2423868149645
Iteration: 3, Func. Count: 23, Neg. LLF: 89.1577807215397
Iteration: 4, Func. Count: 29, Neg. LLF: 88.90368799066046
Iteration: 5, Func. Count: 35, Neg. LLF: 89.37271209575731
Iteration: 6, Func. Count: 42, Neg. LLF: 89.55398848473504
Iteration: 7, Func. Count: 49, Neg. LLF: 88.61879085695509
Iteration: 8, Func. Count: 55, Neg. LLF: 88.60266035803174
Iteration: 9, Func. Count: 61, Neg. LLF: 88.59778836482243
Iteration: 10, Func. Count: 67, Neg. LLF: 88.59750688799267
Iteration: 11, Func. Count: 73, Neg. LLF: 88.59750145778743
Iteration: 12, Func. Count: 78, Neg. LLF: 88.59750145778887
Optimization terminated successfully (Exit mode 0)
Current function value: 88.59750145778743
Iterations: 12
Function evaluations: 78
Gradient evaluations: 12
Iteration: 1, Func. Count: 8, Neg. LLF: 6511977.974133781
Iteration: 2, Func. Count: 17, Neg. LLF: 206.22887386456512
Iteration: 3, Func. Count: 27, Neg. LLF: 98.17850562733544
Iteration: 4, Func. Count: 35, Neg. LLF: 89.79773673500259
Iteration: 5, Func. Count: 43, Neg. LLF: 87.56666311787227
Iteration: 6, Func. Count: 50, Neg. LLF: 87.5939634162108
Iteration: 7, Func. Count: 58, Neg. LLF: 87.55482844480021
Iteration: 8, Func. Count: 65, Neg. LLF: 87.54912932577975
Iteration: 9, Func. Count: 72, Neg. LLF: 87.54899696711091
Iteration: 10, Func. Count: 79, Neg. LLF: 87.5489912941086
Iteration: 11, Func. Count: 85, Neg. LLF: 87.54899129409159
Optimization terminated successfully (Exit mode 0)
Current function value: 87.5489912941086
Iterations: 11
Function evaluations: 85
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 60288998.941590436
Iteration: 2, Func. Count: 19, Neg. LLF: 179.930289524417
Iteration: 3, Func. Count: 30, Neg. LLF: 90.2670452115376
Iteration: 4, Func. Count: 39, Neg. LLF: 88.32519096568906
Iteration: 5, Func. Count: 47, Neg. LLF: 89.1182538167136
Iteration: 6, Func. Count: 56, Neg. LLF: 88.31999479241718
Iteration: 7, Func. Count: 65, Neg. LLF: 88.31413483724543
Iteration: 8, Func. Count: 73, Neg. LLF: 88.31092361057269
Iteration: 9, Func. Count: 81, Neg. LLF: 88.27648227698782
Iteration: 10, Func. Count: 89, Neg. LLF: 88.22250805147402
Iteration: 11, Func. Count: 97, Neg. LLF: 88.19277752990658
Iteration: 12, Func. Count: 105, Neg. LLF: 88.18355946259317
Iteration: 13, Func. Count: 113, Neg. LLF: 88.17847726661266
Iteration: 14, Func. Count: 121, Neg. LLF: 88.17711341668105
Iteration: 15, Func. Count: 129, Neg. LLF: 88.17695637884792
Iteration: 16, Func. Count: 137, Neg. LLF: 88.17692183790601
Iteration: 17, Func. Count: 145, Neg. LLF: 88.17691446344833
Iteration: 18, Func. Count: 152, Neg. LLF: 88.1769144634825
Optimization terminated successfully (Exit mode 0)
Current function value: 88.17691446344833
Iterations: 18
Function evaluations: 152
Gradient evaluations: 18
Iteration: 1, Func. Count: 10, Neg. LLF: 91415398.59932007
Iteration: 2, Func. Count: 21, Neg. LLF: 196.63355149908955
Iteration: 3, Func. Count: 33, Neg. LLF: 88.38864460588451
Iteration: 4, Func. Count: 43, Neg. LLF: 90.68189995076602
Iteration: 5, Func. Count: 53, Neg. LLF: 88.49221177739263
Iteration: 6, Func. Count: 63, Neg. LLF: 88.4130887844917
Iteration: 7, Func. Count: 73, Neg. LLF: 88.28043082907547
Iteration: 8, Func. Count: 83, Neg. LLF: 88.19126702239525
Iteration: 9, Func. Count: 92, Neg. LLF: 88.22274600553803
Iteration: 10, Func. Count: 102, Neg. LLF: 88.11039070694349
Iteration: 11, Func. Count: 112, Neg. LLF: 87.87415381691848
Iteration: 12, Func. Count: 121, Neg. LLF: 87.70002706457684
Iteration: 13, Func. Count: 130, Neg. LLF: 87.65946542096279
Iteration: 14, Func. Count: 139, Neg. LLF: 87.62902224625711
Iteration: 15, Func. Count: 148, Neg. LLF: 87.6135906001788
Iteration: 16, Func. Count: 157, Neg. LLF: 87.57930946250904
Iteration: 17, Func. Count: 166, Neg. LLF: 87.55522284962447
Iteration: 18, Func. Count: 175, Neg. LLF: 87.55155833947846
Iteration: 19, Func. Count: 184, Neg. LLF: 87.55059746972955
Iteration: 20, Func. Count: 193, Neg. LLF: 87.54948002212535
Iteration: 21, Func. Count: 202, Neg. LLF: 87.54903918464254
Iteration: 22, Func. Count: 211, Neg. LLF: 87.54899474840926
Iteration: 23, Func. Count: 220, Neg. LLF: 87.54899130940953
Iteration: 24, Func. Count: 228, Neg. LLF: 87.54899132159782
Optimization terminated successfully (Exit mode 0)
Current function value: 87.54899130940953
Iterations: 24
Function evaluations: 228
Gradient evaluations: 24
Iteration: 1, Func. Count: 11, Neg. LLF: 141434194.97984323
Iteration: 2, Func. Count: 23, Neg. LLF: 233.03861543191238
Iteration: 3, Func. Count: 36, Neg. LLF: 88.8973880034851
Iteration: 4, Func. Count: 47, Neg. LLF: 88.2325255385317
Iteration: 5, Func. Count: 58, Neg. LLF: 88.08568445025267
Iteration: 6, Func. Count: 69, Neg. LLF: 87.47685652228506
Iteration: 7, Func. Count: 79, Neg. LLF: 87.06901773772849
Iteration: 8, Func. Count: 89, Neg. LLF: 87.01735081313251
Iteration: 9, Func. Count: 99, Neg. LLF: 87.01523612592975
Iteration: 10, Func. Count: 109, Neg. LLF: 87.01509737482618
Iteration: 11, Func. Count: 119, Neg. LLF: 87.01490468225269
Iteration: 12, Func. Count: 129, Neg. LLF: 87.01489959844857
Iteration: 13, Func. Count: 138, Neg. LLF: 87.01489956548318
Optimization terminated successfully (Exit mode 0)
Current function value: 87.01489959844857
Iterations: 13
Function evaluations: 138
Gradient evaluations: 13
Iteration: 1, Func. Count: 8, Neg. LLF: 114.95065488129866
Iteration: 2, Func. Count: 18, Neg. LLF: 117.4424486207525
Iteration: 3, Func. Count: 26, Neg. LLF: 89.12117254198253
Iteration: 4, Func. Count: 33, Neg. LLF: 90.48556896524926
Iteration: 5, Func. Count: 41, Neg. LLF: 89.20836111546956
Iteration: 6, Func. Count: 49, Neg. LLF: 88.60303755654768
Iteration: 7, Func. Count: 56, Neg. LLF: 88.59918532451675
Iteration: 8, Func. Count: 63, Neg. LLF: 88.60076320889563
Iteration: 9, Func. Count: 71, Neg. LLF: 88.59754149164146
Iteration: 10, Func. Count: 78, Neg. LLF: 88.5975014455577
Iteration: 11, Func. Count: 84, Neg. LLF: 88.59750151284723
Optimization terminated successfully (Exit mode 0)
Current function value: 88.5975014455577
Iterations: 11
Function evaluations: 84
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 6475801.333891099
Iteration: 2, Func. Count: 19, Neg. LLF: 204.00659706025758
Iteration: 3, Func. Count: 30, Neg. LLF: 98.05129540896341
Iteration: 4, Func. Count: 39, Neg. LLF: 89.34715347951352
Iteration: 5, Func. Count: 48, Neg. LLF: 87.56546321755258
Iteration: 6, Func. Count: 56, Neg. LLF: 87.57267142984139
Iteration: 7, Func. Count: 65, Neg. LLF: 87.56155491236824
Iteration: 8, Func. Count: 74, Neg. LLF: 87.54910157072163
Iteration: 9, Func. Count: 82, Neg. LLF: 87.5489920835547
Iteration: 10, Func. Count: 90, Neg. LLF: 87.54899130097817
Optimization terminated successfully (Exit mode 0)
Current function value: 87.54899130097817
Iterations: 10
Function evaluations: 90
Gradient evaluations: 10
Iteration: 1, Func. Count: 10, Neg. LLF: 46975055.045634165
Iteration: 2, Func. Count: 21, Neg. LLF: 181.15483957403328
Iteration: 3, Func. Count: 32, Neg. LLF: 88.58755365737838
Iteration: 4, Func. Count: 42, Neg. LLF: 89.07647571044481
Iteration: 5, Func. Count: 52, Neg. LLF: 88.33287158296396
Iteration: 6, Func. Count: 62, Neg. LLF: 93.20268470648037
Iteration: 7, Func. Count: 72, Neg. LLF: 87.74172903277429
Iteration: 8, Func. Count: 81, Neg. LLF: 87.6241520336055
Iteration: 9, Func. Count: 90, Neg. LLF: 87.56863511888575
Iteration: 10, Func. Count: 99, Neg. LLF: 87.55783218735685
Iteration: 11, Func. Count: 108, Neg. LLF: 87.54935657856636
Iteration: 12, Func. Count: 117, Neg. LLF: 87.54901050290727
Iteration: 13, Func. Count: 126, Neg. LLF: 87.54899746138433
Iteration: 14, Func. Count: 135, Neg. LLF: 87.54899353481817
Iteration: 15, Func. Count: 144, Neg. LLF: 87.54899133589653
Iteration: 16, Func. Count: 152, Neg. LLF: 87.54899134725451
Optimization terminated successfully (Exit mode 0)
Current function value: 87.54899133589653
Iterations: 16
Function evaluations: 152
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 30917298.49454889
Iteration: 2, Func. Count: 23, Neg. LLF: 89.59584448293785
Iteration: 3, Func. Count: 34, Neg. LLF: 1456.3412307685742
Iteration: 4, Func. Count: 45, Neg. LLF: 90.29517499168618
Iteration: 5, Func. Count: 56, Neg. LLF: 95.20892634890089
Iteration: 6, Func. Count: 67, Neg. LLF: 88.6428526149931
Iteration: 7, Func. Count: 78, Neg. LLF: 88.1547274654593
Iteration: 8, Func. Count: 89, Neg. LLF: 87.69733589177271
Iteration: 9, Func. Count: 99, Neg. LLF: 87.6442277504323
Iteration: 10, Func. Count: 109, Neg. LLF: 87.60528857292609
Iteration: 11, Func. Count: 119, Neg. LLF: 87.56456306574971
Iteration: 12, Func. Count: 129, Neg. LLF: 87.55911629044888
Iteration: 13, Func. Count: 139, Neg. LLF: 87.54910850082409
Iteration: 14, Func. Count: 149, Neg. LLF: 87.5490297099429
Iteration: 15, Func. Count: 159, Neg. LLF: 87.5489932446455
Iteration: 16, Func. Count: 169, Neg. LLF: 87.54899149950869
Iteration: 17, Func. Count: 178, Neg. LLF: 87.54899151154133
Optimization terminated successfully (Exit mode 0)
Current function value: 87.54899149950869
Iterations: 17
Function evaluations: 178
Gradient evaluations: 17
Iteration: 1, Func. Count: 12, Neg. LLF: 23162306.534704868
Iteration: 2, Func. Count: 24, Neg. LLF: 91.65801707618171
Iteration: 3, Func. Count: 37, Neg. LLF: 89.19498121111751
Iteration: 4, Func. Count: 49, Neg. LLF: 92.46394835549069
Iteration: 5, Func. Count: 61, Neg. LLF: 91.77117234392546
Iteration: 6, Func. Count: 73, Neg. LLF: 89.37990052105224
Iteration: 7, Func. Count: 85, Neg. LLF: 88.21395162989766
Iteration: 8, Func. Count: 97, Neg. LLF: 88.05493315136816
Iteration: 9, Func. Count: 108, Neg. LLF: 88.53166358609239
Iteration: 10, Func. Count: 120, Neg. LLF: 87.90319537406515
Iteration: 11, Func. Count: 131, Neg. LLF: 87.79446667328034
Iteration: 12, Func. Count: 142, Neg. LLF: 87.68401833381519
Iteration: 13, Func. Count: 153, Neg. LLF: 87.62415437424599
Iteration: 14, Func. Count: 164, Neg. LLF: 87.59323823536506
Iteration: 15, Func. Count: 175, Neg. LLF: 87.57914894237808
Iteration: 16, Func. Count: 186, Neg. LLF: 87.56995094154536
Iteration: 17, Func. Count: 197, Neg. LLF: 87.55185304871085
Iteration: 18, Func. Count: 208, Neg. LLF: 87.54968565875689
Iteration: 19, Func. Count: 219, Neg. LLF: 87.54899156055492
Iteration: 20, Func. Count: 229, Neg. LLF: 87.5489915976244
Optimization terminated successfully (Exit mode 0)
Current function value: 87.54899156055492
Iterations: 20
Function evaluations: 229
Gradient evaluations: 20
Iteration: 1, Func. Count: 9, Neg. LLF: 111.6167021978528
Iteration: 2, Func. Count: 20, Neg. LLF: 94.78083971410481
Iteration: 3, Func. Count: 29, Neg. LLF: 95.99290556573052
Iteration: 4, Func. Count: 38, Neg. LLF: 89.2008823135669
Iteration: 5, Func. Count: 46, Neg. LLF: 88.6179066475812
Iteration: 6, Func. Count: 54, Neg. LLF: 88.77089797700684
Iteration: 7, Func. Count: 63, Neg. LLF: 88.63379149511364
Iteration: 8, Func. Count: 72, Neg. LLF: 88.51571055804038
Iteration: 9, Func. Count: 80, Neg. LLF: 88.5114505889074
Iteration: 10, Func. Count: 88, Neg. LLF: 88.51096356241644
Iteration: 11, Func. Count: 96, Neg. LLF: 88.5109480471099
Iteration: 12, Func. Count: 104, Neg. LLF: 88.51094737252045
Optimization terminated successfully (Exit mode 0)
Current function value: 88.51094737252045
Iterations: 12
Function evaluations: 104
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 6488553.914774884
Iteration: 2, Func. Count: 21, Neg. LLF: 204.2221525686884
Iteration: 3, Func. Count: 33, Neg. LLF: 97.93863516306862
Iteration: 4, Func. Count: 43, Neg. LLF: 89.05346042674827
Iteration: 5, Func. Count: 53, Neg. LLF: 87.56507982143596
Iteration: 6, Func. Count: 62, Neg. LLF: 87.5607471058356
Iteration: 7, Func. Count: 71, Neg. LLF: 87.57925241148592
Iteration: 8, Func. Count: 81, Neg. LLF: 87.54915227306198
Iteration: 9, Func. Count: 90, Neg. LLF: 87.54899190447878
Iteration: 10, Func. Count: 99, Neg. LLF: 87.54899129984497
Optimization terminated successfully (Exit mode 0)
Current function value: 87.54899129984497
Iterations: 10
Function evaluations: 99
Gradient evaluations: 10
Iteration: 1, Func. Count: 11, Neg. LLF: 47395218.01127025
Iteration: 2, Func. Count: 23, Neg. LLF: 184.6543481343283
Iteration: 3, Func. Count: 35, Neg. LLF: 88.82196976532697
Iteration: 4, Func. Count: 46, Neg. LLF: 89.11114255461419
Iteration: 5, Func. Count: 57, Neg. LLF: 88.11944789005801
Iteration: 6, Func. Count: 67, Neg. LLF: 87.58690308947982
Iteration: 7, Func. Count: 77, Neg. LLF: 87.67656998451804
Iteration: 8, Func. Count: 88, Neg. LLF: 87.55510533955163
Iteration: 9, Func. Count: 98, Neg. LLF: 87.55014793937103
Iteration: 10, Func. Count: 108, Neg. LLF: 87.54940409708476
Iteration: 11, Func. Count: 118, Neg. LLF: 87.54899725883455
Iteration: 12, Func. Count: 128, Neg. LLF: 87.54899137504218
Iteration: 13, Func. Count: 137, Neg. LLF: 87.5489913864453
Optimization terminated successfully (Exit mode 0)
Current function value: 87.54899137504218
Iterations: 13
Function evaluations: 137
Gradient evaluations: 13
Iteration: 1, Func. Count: 12, Neg. LLF: 31273569.16367494
Iteration: 2, Func. Count: 25, Neg. LLF: 89.45349393813291
Iteration: 3, Func. Count: 37, Neg. LLF: 4629.716795608773
Iteration: 4, Func. Count: 49, Neg. LLF: 90.06974800058832
Iteration: 5, Func. Count: 61, Neg. LLF: 94.2101138375463
Iteration: 6, Func. Count: 73, Neg. LLF: 88.63510711052513
Iteration: 7, Func. Count: 85, Neg. LLF: 88.1054802808912
Iteration: 8, Func. Count: 97, Neg. LLF: 87.69352520940073
Iteration: 9, Func. Count: 108, Neg. LLF: 87.6479905350347
Iteration: 10, Func. Count: 119, Neg. LLF: 87.61796190251037
Iteration: 11, Func. Count: 130, Neg. LLF: 87.56460527469872
Iteration: 12, Func. Count: 141, Neg. LLF: 87.56174356551664
Iteration: 13, Func. Count: 152, Neg. LLF: 87.54972906097031
Iteration: 14, Func. Count: 163, Neg. LLF: 87.54905563554348
Iteration: 15, Func. Count: 174, Neg. LLF: 87.54900017556015
Iteration: 16, Func. Count: 185, Neg. LLF: 87.54899377638424
Iteration: 17, Func. Count: 196, Neg. LLF: 87.54899132919377
Iteration: 18, Func. Count: 206, Neg. LLF: 87.54899134137642
Optimization terminated successfully (Exit mode 0)
Current function value: 87.54899132919377
Iterations: 18
Function evaluations: 206
Gradient evaluations: 18
Iteration: 1, Func. Count: 13, Neg. LLF: 23393705.91486626
Iteration: 2, Func. Count: 26, Neg. LLF: 91.75342400205314
Iteration: 3, Func. Count: 40, Neg. LLF: 90.43518868631355
Iteration: 4, Func. Count: 53, Neg. LLF: 91.93208572906542
Iteration: 5, Func. Count: 66, Neg. LLF: 90.44024994655274
Iteration: 6, Func. Count: 79, Neg. LLF: 90.18024712025138
Iteration: 7, Func. Count: 92, Neg. LLF: 88.14407285895481
Iteration: 8, Func. Count: 104, Neg. LLF: 88.09745532508634
Iteration: 9, Func. Count: 116, Neg. LLF: 88.85489668323284
Iteration: 10, Func. Count: 129, Neg. LLF: 87.93952392812717
Iteration: 11, Func. Count: 141, Neg. LLF: 87.7849634372862
Iteration: 12, Func. Count: 153, Neg. LLF: 87.68163353071431
Iteration: 13, Func. Count: 165, Neg. LLF: 87.66002930876873
Iteration: 14, Func. Count: 177, Neg. LLF: 87.61930764008387
Iteration: 15, Func. Count: 189, Neg. LLF: 87.60211759707289
Iteration: 16, Func. Count: 201, Neg. LLF: 87.57267392660442
Iteration: 17, Func. Count: 213, Neg. LLF: 87.55360291318969
Iteration: 18, Func. Count: 225, Neg. LLF: 87.54959135514038
Iteration: 19, Func. Count: 237, Neg. LLF: 87.54901662492763
Iteration: 20, Func. Count: 249, Neg. LLF: 87.54899349307588
Iteration: 21, Func. Count: 261, Neg. LLF: 87.54899128968552
Iteration: 22, Func. Count: 272, Neg. LLF: 87.5489913266842
Optimization terminated successfully (Exit mode 0)
Current function value: 87.54899128968552
Iterations: 22
Function evaluations: 272
Gradient evaluations: 22
Iteration: 1, Func. Count: 6, Neg. LLF: 138.3520009162157
Iteration: 2, Func. Count: 14, Neg. LLF: 133.0941347369364
Iteration: 3, Func. Count: 21, Neg. LLF: 550.7439861553112
Iteration: 4, Func. Count: 27, Neg. LLF: 86.57515536725734
Iteration: 5, Func. Count: 32, Neg. LLF: 86.54990807536018
Iteration: 6, Func. Count: 37, Neg. LLF: 86.5322520714795
Iteration: 7, Func. Count: 42, Neg. LLF: 86.53084740165144
Iteration: 8, Func. Count: 47, Neg. LLF: 86.53053833138607
Iteration: 9, Func. Count: 52, Neg. LLF: 86.53051045810419
Iteration: 10, Func. Count: 56, Neg. LLF: 86.53051045811229
Optimization terminated successfully (Exit mode 0)
Current function value: 86.53051045810419
Iterations: 10
Function evaluations: 56
Gradient evaluations: 10
Iteration: 1, Func. Count: 7, Neg. LLF: 12575.698792225678
Iteration: 2, Func. Count: 15, Neg. LLF: 10151.931276628753
Iteration: 3, Func. Count: 23, Neg. LLF: 87.24572800079243
Iteration: 4, Func. Count: 29, Neg. LLF: 86.56833821073262
Iteration: 5, Func. Count: 35, Neg. LLF: 86.54929489486747
Iteration: 6, Func. Count: 41, Neg. LLF: 86.54125440023434
Iteration: 7, Func. Count: 47, Neg. LLF: 86.53133883711429
Iteration: 8, Func. Count: 53, Neg. LLF: 86.53062336535412
Iteration: 9, Func. Count: 59, Neg. LLF: 86.53051266133589
Iteration: 10, Func. Count: 65, Neg. LLF: 86.53051022529341
Iteration: 11, Func. Count: 70, Neg. LLF: 86.53051028327069
Optimization terminated successfully (Exit mode 0)
Current function value: 86.53051022529341
Iterations: 11
Function evaluations: 70
Gradient evaluations: 11
Iteration: 1, Func. Count: 8, Neg. LLF: 9370.875863523745
Iteration: 2, Func. Count: 16, Neg. LLF: 743.5019611305707
Iteration: 3, Func. Count: 24, Neg. LLF: 90.701373072443
Iteration: 4, Func. Count: 33, Neg. LLF: 87.87290804670322
Iteration: 5, Func. Count: 41, Neg. LLF: 86.24152256574425
Iteration: 6, Func. Count: 48, Neg. LLF: 86.03705291818193
Iteration: 7, Func. Count: 55, Neg. LLF: 85.94886325653353
Iteration: 8, Func. Count: 62, Neg. LLF: 85.93660318920612
Iteration: 9, Func. Count: 69, Neg. LLF: 85.93577209299826
Iteration: 10, Func. Count: 76, Neg. LLF: 85.93571131321936
Iteration: 11, Func. Count: 83, Neg. LLF: 85.93570691505094
Iteration: 12, Func. Count: 89, Neg. LLF: 85.93570691505559
Optimization terminated successfully (Exit mode 0)
Current function value: 85.93570691505094
Iterations: 12
Function evaluations: 89
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 2276.607818501135
Iteration: 2, Func. Count: 18, Neg. LLF: 8315.225158428217
Iteration: 3, Func. Count: 27, Neg. LLF: 87.31773334349836
Iteration: 4, Func. Count: 36, Neg. LLF: 104.46293080998628
Iteration: 5, Func. Count: 46, Neg. LLF: 125.84092744025641
Iteration: 6, Func. Count: 55, Neg. LLF: 85.98045324738004
Iteration: 7, Func. Count: 63, Neg. LLF: 85.94299619388445
Iteration: 8, Func. Count: 71, Neg. LLF: 85.93763210385997
Iteration: 9, Func. Count: 79, Neg. LLF: 85.93589274708673
Iteration: 10, Func. Count: 87, Neg. LLF: 85.93575544318396
Iteration: 11, Func. Count: 95, Neg. LLF: 85.93570699346256
Iteration: 12, Func. Count: 102, Neg. LLF: 85.93570700742981
Optimization terminated successfully (Exit mode 0)
Current function value: 85.93570699346256
Iterations: 12
Function evaluations: 102
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 4365.424081325154
Iteration: 2, Func. Count: 20, Neg. LLF: 74879.75305907901
Iteration: 3, Func. Count: 30, Neg. LLF: 102.32370503186006
Iteration: 4, Func. Count: 40, Neg. LLF: 101.59657690051776
Iteration: 5, Func. Count: 50, Neg. LLF: 85.99349394922886
Iteration: 6, Func. Count: 59, Neg. LLF: 86.15855178997619
Iteration: 7, Func. Count: 69, Neg. LLF: 85.93621232685808
Iteration: 8, Func. Count: 78, Neg. LLF: 85.93576409005927
Iteration: 9, Func. Count: 87, Neg. LLF: 85.93570901955736
Iteration: 10, Func. Count: 96, Neg. LLF: 85.93570691332302
Iteration: 11, Func. Count: 104, Neg. LLF: 85.93570692093274
Optimization terminated successfully (Exit mode 0)
Current function value: 85.93570691332302
Iterations: 11
Function evaluations: 104
Gradient evaluations: 11
Iteration: 1, Func. Count: 7, Neg. LLF: 140.76606410204843
Iteration: 2, Func. Count: 16, Neg. LLF: 126.14761840431146
Iteration: 3, Func. Count: 24, Neg. LLF: 557.7058841241836
Iteration: 4, Func. Count: 31, Neg. LLF: 86.58832349073667
Iteration: 5, Func. Count: 37, Neg. LLF: 86.56203985487682
Iteration: 6, Func. Count: 43, Neg. LLF: 86.54474260292474
Iteration: 7, Func. Count: 49, Neg. LLF: 86.53246516502892
Iteration: 8, Func. Count: 55, Neg. LLF: 86.52492584202741
Iteration: 9, Func. Count: 61, Neg. LLF: 86.52412542539936
Iteration: 10, Func. Count: 67, Neg. LLF: 86.52408070763305
Iteration: 11, Func. Count: 73, Neg. LLF: 86.52407728328171
Iteration: 12, Func. Count: 79, Neg. LLF: 86.52407677570076
Optimization terminated successfully (Exit mode 0)
Current function value: 86.52407677570076
Iterations: 12
Function evaluations: 79
Gradient evaluations: 12
Iteration: 1, Func. Count: 8, Neg. LLF: 1441.7228598773518
Iteration: 2, Func. Count: 17, Neg. LLF: 140.1906994997889
Iteration: 3, Func. Count: 26, Neg. LLF: 87.26681716915935
Iteration: 4, Func. Count: 33, Neg. LLF: 86.576552606497
Iteration: 5, Func. Count: 40, Neg. LLF: 86.55619326932157
Iteration: 6, Func. Count: 47, Neg. LLF: 87.06954312269717
Iteration: 7, Func. Count: 56, Neg. LLF: 86.53911568588589
Iteration: 8, Func. Count: 63, Neg. LLF: 86.525452390432
Iteration: 9, Func. Count: 70, Neg. LLF: 86.52428799042778
Iteration: 10, Func. Count: 77, Neg. LLF: 86.52409140594443
Iteration: 11, Func. Count: 84, Neg. LLF: 86.52407786901782
Iteration: 12, Func. Count: 91, Neg. LLF: 86.52407681440673
Iteration: 13, Func. Count: 97, Neg. LLF: 86.52407687233463
Optimization terminated successfully (Exit mode 0)
Current function value: 86.52407681440673
Iterations: 13
Function evaluations: 97
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 840.9329376581912
Iteration: 2, Func. Count: 18, Neg. LLF: 868.8690391011503
Iteration: 3, Func. Count: 27, Neg. LLF: 90.92244794717853
Iteration: 4, Func. Count: 37, Neg. LLF: 88.13278738159906
Iteration: 5, Func. Count: 46, Neg. LLF: 86.3683002899738
Iteration: 6, Func. Count: 54, Neg. LLF: 86.00998865976858
Iteration: 7, Func. Count: 62, Neg. LLF: 89.2825865458614
Iteration: 8, Func. Count: 72, Neg. LLF: 85.98948881161895
Iteration: 9, Func. Count: 81, Neg. LLF: 85.93409575203944
Iteration: 10, Func. Count: 89, Neg. LLF: 85.93306473127525
Iteration: 11, Func. Count: 97, Neg. LLF: 85.93300294436283
Iteration: 12, Func. Count: 105, Neg. LLF: 85.93299622945806
Iteration: 13, Func. Count: 112, Neg. LLF: 85.9329962294711
Optimization terminated successfully (Exit mode 0)
Current function value: 85.93299622945806
Iterations: 13
Function evaluations: 112
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 678.9068394812007
Iteration: 2, Func. Count: 20, Neg. LLF: 47835.55427673541
Iteration: 3, Func. Count: 30, Neg. LLF: 87.04766884090704
Iteration: 4, Func. Count: 40, Neg. LLF: 96.67604448918614
Iteration: 5, Func. Count: 50, Neg. LLF: 270.33409625136665
Iteration: 6, Func. Count: 60, Neg. LLF: 86.01811662733726
Iteration: 7, Func. Count: 69, Neg. LLF: 85.9475744711294
Iteration: 8, Func. Count: 78, Neg. LLF: 108.89865657401052
Iteration: 9, Func. Count: 89, Neg. LLF: 85.93436087083654
Iteration: 10, Func. Count: 98, Neg. LLF: 85.9331272964543
Iteration: 11, Func. Count: 107, Neg. LLF: 85.9330134304138
Iteration: 12, Func. Count: 116, Neg. LLF: 85.9329963374039
Iteration: 13, Func. Count: 124, Neg. LLF: 85.93299635557624
Optimization terminated successfully (Exit mode 0)
Current function value: 85.9329963374039
Iterations: 13
Function evaluations: 124
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 763.105051108551
Iteration: 2, Func. Count: 22, Neg. LLF: 218934.36982012852
Iteration: 3, Func. Count: 33, Neg. LLF: 89.83359903997363
Iteration: 4, Func. Count: 44, Neg. LLF: 103.31814587743013
Iteration: 5, Func. Count: 55, Neg. LLF: 86.11182570140092
Iteration: 6, Func. Count: 65, Neg. LLF: 86.61106483324694
Iteration: 7, Func. Count: 76, Neg. LLF: 88.90086363609677
Iteration: 8, Func. Count: 88, Neg. LLF: 85.98281145310258
Iteration: 9, Func. Count: 99, Neg. LLF: 85.93309200780789
Iteration: 10, Func. Count: 109, Neg. LLF: 85.9329977132448
Iteration: 11, Func. Count: 119, Neg. LLF: 85.93299630145353
Iteration: 12, Func. Count: 128, Neg. LLF: 85.93299630878315
Optimization terminated successfully (Exit mode 0)
Current function value: 85.93299630145353
Iterations: 12
Function evaluations: 128
Gradient evaluations: 12
Iteration: 1, Func. Count: 8, Neg. LLF: 142.58200839947557
Iteration: 2, Func. Count: 17, Neg. LLF: 117.911236577915
Iteration: 3, Func. Count: 26, Neg. LLF: 1031.5131630173428
Iteration: 4, Func. Count: 34, Neg. LLF: 86.68454756105571
Iteration: 5, Func. Count: 41, Neg. LLF: 87.4655989991985
Iteration: 6, Func. Count: 49, Neg. LLF: 87.6762992318824
Iteration: 7, Func. Count: 58, Neg. LLF: 87.51366228595597
Iteration: 8, Func. Count: 66, Neg. LLF: 86.51747289822133
Iteration: 9, Func. Count: 73, Neg. LLF: 86.51458355007514
Iteration: 10, Func. Count: 80, Neg. LLF: 86.5143548253858
Iteration: 11, Func. Count: 87, Neg. LLF: 86.51433241015565
Iteration: 12, Func. Count: 93, Neg. LLF: 86.51433241015576
Optimization terminated successfully (Exit mode 0)
Current function value: 86.51433241015565
Iterations: 12
Function evaluations: 93
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 4459723.774093422
Iteration: 2, Func. Count: 19, Neg. LLF: 89.2817677602111
Iteration: 3, Func. Count: 29, Neg. LLF: 17903991.988810364
Iteration: 4, Func. Count: 39, Neg. LLF: 87.69209911414804
Iteration: 5, Func. Count: 48, Neg. LLF: 87.20574070832721
Iteration: 6, Func. Count: 56, Neg. LLF: 87.00679946679466
Iteration: 7, Func. Count: 64, Neg. LLF: 86.69184643673329
Iteration: 8, Func. Count: 72, Neg. LLF: 86.67232482851367
Iteration: 9, Func. Count: 80, Neg. LLF: 86.58742817876652
Iteration: 10, Func. Count: 88, Neg. LLF: 86.5518355814015
Iteration: 11, Func. Count: 96, Neg. LLF: 86.53554947580109
Iteration: 12, Func. Count: 104, Neg. LLF: 86.51845994776625
Iteration: 13, Func. Count: 112, Neg. LLF: 86.51526420352542
Iteration: 14, Func. Count: 120, Neg. LLF: 86.51467583653441
Iteration: 15, Func. Count: 128, Neg. LLF: 86.51448216445681
Iteration: 16, Func. Count: 136, Neg. LLF: 86.51438146081301
Iteration: 17, Func. Count: 144, Neg. LLF: 86.51434123795438
Iteration: 18, Func. Count: 152, Neg. LLF: 86.51433271745756
Iteration: 19, Func. Count: 160, Neg. LLF: 86.5143318842073
Optimization terminated successfully (Exit mode 0)
Current function value: 86.5143318842073
Iterations: 19
Function evaluations: 160
Gradient evaluations: 19
Iteration: 1, Func. Count: 10, Neg. LLF: 4549024.767580528
Iteration: 2, Func. Count: 21, Neg. LLF: 993.441250850688
Iteration: 3, Func. Count: 31, Neg. LLF: 90.99341973430249
Iteration: 4, Func. Count: 42, Neg. LLF: 88.5229047240962
Iteration: 5, Func. Count: 52, Neg. LLF: 85.90288555322047
Iteration: 6, Func. Count: 61, Neg. LLF: 86.72049419093321
Iteration: 7, Func. Count: 71, Neg. LLF: 85.79234568955248
Iteration: 8, Func. Count: 80, Neg. LLF: 85.8405472431692
Iteration: 9, Func. Count: 90, Neg. LLF: 85.93234711773869
Iteration: 10, Func. Count: 100, Neg. LLF: 85.71473472298575
Iteration: 11, Func. Count: 109, Neg. LLF: 85.71177994390173
Iteration: 12, Func. Count: 118, Neg. LLF: 85.71096991390012
Iteration: 13, Func. Count: 127, Neg. LLF: 85.710863111701
Iteration: 14, Func. Count: 136, Neg. LLF: 85.71085633868745
Iteration: 15, Func. Count: 144, Neg. LLF: 85.71085633862053
Optimization terminated successfully (Exit mode 0)
Current function value: 85.71085633868745
Iterations: 15
Function evaluations: 144
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 4605967.578226845
Iteration: 2, Func. Count: 23, Neg. LLF: 479.68561889270404
Iteration: 3, Func. Count: 34, Neg. LLF: 86.92936587552829
Iteration: 4, Func. Count: 45, Neg. LLF: 89.76637071163657
Iteration: 5, Func. Count: 56, Neg. LLF: 90.36869204941975
Iteration: 6, Func. Count: 67, Neg. LLF: 116.48037377808356
Iteration: 7, Func. Count: 78, Neg. LLF: 85.78613207746957
Iteration: 8, Func. Count: 88, Neg. LLF: 96.29678295471659
Iteration: 9, Func. Count: 100, Neg. LLF: 85.7411389388347
Iteration: 10, Func. Count: 110, Neg. LLF: 85.71737975456341
Iteration: 11, Func. Count: 120, Neg. LLF: 85.71348847072224
Iteration: 12, Func. Count: 130, Neg. LLF: 85.71124445685022
Iteration: 13, Func. Count: 140, Neg. LLF: 85.71087332255112
Iteration: 14, Func. Count: 150, Neg. LLF: 85.71085979438492
Iteration: 15, Func. Count: 160, Neg. LLF: 85.7108561361251
Iteration: 16, Func. Count: 169, Neg. LLF: 85.71085616101432
Optimization terminated successfully (Exit mode 0)
Current function value: 85.7108561361251
Iterations: 16
Function evaluations: 169
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 2674.194992172409
Iteration: 2, Func. Count: 24, Neg. LLF: 165830.52056628195
Iteration: 3, Func. Count: 36, Neg. LLF: 90.11576378391082
Iteration: 4, Func. Count: 49, Neg. LLF: 95.32150032651201
Iteration: 5, Func. Count: 61, Neg. LLF: 86.73711498233642
Iteration: 6, Func. Count: 73, Neg. LLF: 87.16927212199894
Iteration: 7, Func. Count: 85, Neg. LLF: 86.52489584732295
Iteration: 8, Func. Count: 97, Neg. LLF: 85.74486523915738
Iteration: 9, Func. Count: 108, Neg. LLF: 85.72747797881685
Iteration: 10, Func. Count: 119, Neg. LLF: 85.8015619910814
Iteration: 11, Func. Count: 131, Neg. LLF: 85.7128997323183
Iteration: 12, Func. Count: 142, Neg. LLF: 85.71119102640681
Iteration: 13, Func. Count: 153, Neg. LLF: 85.71086036258905
Iteration: 14, Func. Count: 164, Neg. LLF: 85.71085614756166
Iteration: 15, Func. Count: 174, Neg. LLF: 85.7108561499345
Optimization terminated successfully (Exit mode 0)
Current function value: 85.71085614756166
Iterations: 15
Function evaluations: 174
Gradient evaluations: 15
Iteration: 1, Func. Count: 9, Neg. LLF: 137.42070878499462
Iteration: 2, Func. Count: 19, Neg. LLF: 121.28760864697476
Iteration: 3, Func. Count: 28, Neg. LLF: 320972.8191254802
Iteration: 4, Func. Count: 37, Neg. LLF: 87.17030668245226
Iteration: 5, Func. Count: 45, Neg. LLF: 94.89593863820338
Iteration: 6, Func. Count: 54, Neg. LLF: 92.0388936524664
Iteration: 7, Func. Count: 65, Neg. LLF: 88.82747178641355
Iteration: 8, Func. Count: 74, Neg. LLF: 86.5251420499812
Iteration: 9, Func. Count: 82, Neg. LLF: 86.51565024867021
Iteration: 10, Func. Count: 90, Neg. LLF: 86.51439017373568
Iteration: 11, Func. Count: 98, Neg. LLF: 86.51434918959771
Iteration: 12, Func. Count: 106, Neg. LLF: 86.51433615980756
Iteration: 13, Func. Count: 114, Neg. LLF: 86.51433247504147
Iteration: 14, Func. Count: 122, Neg. LLF: 86.51433187246033
Optimization terminated successfully (Exit mode 0)
Current function value: 86.51433187246033
Iterations: 14
Function evaluations: 122
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 4435081.414334877
Iteration: 2, Func. Count: 21, Neg. LLF: 89.23310999487835
Iteration: 3, Func. Count: 32, Neg. LLF: 18093220.880961955
Iteration: 4, Func. Count: 43, Neg. LLF: 87.70374254141862
Iteration: 5, Func. Count: 53, Neg. LLF: 87.18969193021603
Iteration: 6, Func. Count: 62, Neg. LLF: 86.89899794052212
Iteration: 7, Func. Count: 71, Neg. LLF: 86.6756208205859
Iteration: 8, Func. Count: 80, Neg. LLF: 86.57104963815435
Iteration: 9, Func. Count: 89, Neg. LLF: 86.51945099496965
Iteration: 10, Func. Count: 98, Neg. LLF: 86.51577838067236
Iteration: 11, Func. Count: 107, Neg. LLF: 86.51495136535365
Iteration: 12, Func. Count: 116, Neg. LLF: 86.51459470567501
Iteration: 13, Func. Count: 125, Neg. LLF: 86.5144023336861
Iteration: 14, Func. Count: 134, Neg. LLF: 86.5143471853202
Iteration: 15, Func. Count: 143, Neg. LLF: 86.51433903957233
Iteration: 16, Func. Count: 152, Neg. LLF: 86.51433452298751
Iteration: 17, Func. Count: 161, Neg. LLF: 86.514332428834
Iteration: 18, Func. Count: 169, Neg. LLF: 86.51433248543499
Optimization terminated successfully (Exit mode 0)
Current function value: 86.514332428834
Iterations: 18
Function evaluations: 169
Gradient evaluations: 18
Iteration: 1, Func. Count: 11, Neg. LLF: 4516758.68318135
Iteration: 2, Func. Count: 23, Neg. LLF: 898.5894736306174
Iteration: 3, Func. Count: 34, Neg. LLF: 91.15786151634076
Iteration: 4, Func. Count: 46, Neg. LLF: 88.88719544586189
Iteration: 5, Func. Count: 57, Neg. LLF: 86.20279744878384
Iteration: 6, Func. Count: 67, Neg. LLF: 86.23091516841858
Iteration: 7, Func. Count: 78, Neg. LLF: 86.93905236314416
Iteration: 8, Func. Count: 90, Neg. LLF: 85.89372485483852
Iteration: 9, Func. Count: 101, Neg. LLF: 85.7252248117513
Iteration: 10, Func. Count: 111, Neg. LLF: 85.71860305083803
Iteration: 11, Func. Count: 121, Neg. LLF: 85.71187696438307
Iteration: 12, Func. Count: 131, Neg. LLF: 85.71107961534743
Iteration: 13, Func. Count: 141, Neg. LLF: 85.71088953337234
Iteration: 14, Func. Count: 151, Neg. LLF: 85.71085867726732
Iteration: 15, Func. Count: 161, Neg. LLF: 85.71085619438063
Iteration: 16, Func. Count: 170, Neg. LLF: 85.71085619433495
Optimization terminated successfully (Exit mode 0)
Current function value: 85.71085619438063
Iterations: 16
Function evaluations: 170
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 4574719.754624135
Iteration: 2, Func. Count: 25, Neg. LLF: 470.49475952962877
Iteration: 3, Func. Count: 37, Neg. LLF: 87.22797384005021
Iteration: 4, Func. Count: 50, Neg. LLF: 90.03381375071847
Iteration: 5, Func. Count: 62, Neg. LLF: 86.85276971924381
Iteration: 6, Func. Count: 74, Neg. LLF: 87.82017515687208
Iteration: 7, Func. Count: 86, Neg. LLF: 85.80266707858783
Iteration: 8, Func. Count: 97, Neg. LLF: 86.62334524259529
Iteration: 9, Func. Count: 109, Neg. LLF: 86.03422051351406
Iteration: 10, Func. Count: 121, Neg. LLF: 85.73150349929423
Iteration: 11, Func. Count: 132, Neg. LLF: 85.71738207979553
Iteration: 12, Func. Count: 143, Neg. LLF: 85.7135691380636
Iteration: 13, Func. Count: 154, Neg. LLF: 85.71109298651672
Iteration: 14, Func. Count: 165, Neg. LLF: 85.71085970167357
Iteration: 15, Func. Count: 176, Neg. LLF: 85.71085620792266
Iteration: 16, Func. Count: 186, Neg. LLF: 85.71085623287304
Optimization terminated successfully (Exit mode 0)
Current function value: 85.71085620792266
Iterations: 16
Function evaluations: 186
Gradient evaluations: 16
Iteration: 1, Func. Count: 13, Neg. LLF: 2058.5595760064994
Iteration: 2, Func. Count: 26, Neg. LLF: 13977.547879165122
Iteration: 3, Func. Count: 39, Neg. LLF: 90.13035497308044
Iteration: 4, Func. Count: 53, Neg. LLF: 94.39901787140523
Iteration: 5, Func. Count: 66, Neg. LLF: 86.63821906267421
Iteration: 6, Func. Count: 79, Neg. LLF: 86.91019973404337
Iteration: 7, Func. Count: 92, Neg. LLF: 86.74759202336192
Iteration: 8, Func. Count: 105, Neg. LLF: 85.74230367263607
Iteration: 9, Func. Count: 117, Neg. LLF: 85.87542830438323
Iteration: 10, Func. Count: 130, Neg. LLF: 85.73807110390709
Iteration: 11, Func. Count: 143, Neg. LLF: 85.71292769533291
Iteration: 12, Func. Count: 155, Neg. LLF: 85.71132986115684
Iteration: 13, Func. Count: 167, Neg. LLF: 85.71087468073101
Iteration: 14, Func. Count: 179, Neg. LLF: 85.71085683410969
Iteration: 15, Func. Count: 191, Neg. LLF: 85.71085616116682
Optimization terminated successfully (Exit mode 0)
Current function value: 85.71085616116682
Iterations: 15
Function evaluations: 191
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 140.69995086201476
Iteration: 2, Func. Count: 21, Neg. LLF: 119.64293115724799
Iteration: 3, Func. Count: 32, Neg. LLF: 2871.2678677987365
Iteration: 4, Func. Count: 42, Neg. LLF: 86.59598072879754
Iteration: 5, Func. Count: 51, Neg. LLF: 86.6448580320653
Iteration: 6, Func. Count: 61, Neg. LLF: 87.84486498628118
Iteration: 7, Func. Count: 72, Neg. LLF: 86.79618140385776
Iteration: 8, Func. Count: 82, Neg. LLF: 86.51503572479302
Iteration: 9, Func. Count: 91, Neg. LLF: 86.51435591513305
Iteration: 10, Func. Count: 100, Neg. LLF: 86.51433286138399
Iteration: 11, Func. Count: 109, Neg. LLF: 86.5143318538739
Iteration: 12, Func. Count: 117, Neg. LLF: 86.51433189061355
Optimization terminated successfully (Exit mode 0)
Current function value: 86.5143318538739
Iterations: 12
Function evaluations: 117
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 4434427.964022685
Iteration: 2, Func. Count: 23, Neg. LLF: 89.20178370847195
Iteration: 3, Func. Count: 35, Neg. LLF: 18047752.10245141
Iteration: 4, Func. Count: 47, Neg. LLF: 87.72104023519631
Iteration: 5, Func. Count: 58, Neg. LLF: 87.15806818207254
Iteration: 6, Func. Count: 68, Neg. LLF: 86.58497204586332
Iteration: 7, Func. Count: 78, Neg. LLF: 86.5362829745071
Iteration: 8, Func. Count: 88, Neg. LLF: 86.53574645129011
Iteration: 9, Func. Count: 99, Neg. LLF: 86.5222631323802
Iteration: 10, Func. Count: 109, Neg. LLF: 86.51931423887245
Iteration: 11, Func. Count: 119, Neg. LLF: 86.51456455647015
Iteration: 12, Func. Count: 129, Neg. LLF: 86.51443569637375
Iteration: 13, Func. Count: 139, Neg. LLF: 86.51435787158886
Iteration: 14, Func. Count: 149, Neg. LLF: 86.51433833735634
Iteration: 15, Func. Count: 159, Neg. LLF: 86.51433208407833
Iteration: 16, Func. Count: 168, Neg. LLF: 86.51433214068577
Optimization terminated successfully (Exit mode 0)
Current function value: 86.51433208407833
Iterations: 16
Function evaluations: 168
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 4527640.622886522
Iteration: 2, Func. Count: 25, Neg. LLF: 981.8425277597049
Iteration: 3, Func. Count: 37, Neg. LLF: 91.21390277120275
Iteration: 4, Func. Count: 50, Neg. LLF: 89.11617704625469
Iteration: 5, Func. Count: 62, Neg. LLF: 86.22619587071125
Iteration: 6, Func. Count: 73, Neg. LLF: 86.14542345715927
Iteration: 7, Func. Count: 85, Neg. LLF: 87.41805260898448
Iteration: 8, Func. Count: 98, Neg. LLF: 86.16188682406884
Iteration: 9, Func. Count: 110, Neg. LLF: 85.72411761543404
Iteration: 10, Func. Count: 121, Neg. LLF: 85.71617077528107
Iteration: 11, Func. Count: 132, Neg. LLF: 85.7118287099669
Iteration: 12, Func. Count: 143, Neg. LLF: 85.71109224063801
Iteration: 13, Func. Count: 154, Neg. LLF: 85.71088618506771
Iteration: 14, Func. Count: 165, Neg. LLF: 85.71085740340651
Iteration: 15, Func. Count: 176, Neg. LLF: 85.71085617281966
Iteration: 16, Func. Count: 186, Neg. LLF: 85.71085617278247
Optimization terminated successfully (Exit mode 0)
Current function value: 85.71085617281966
Iterations: 16
Function evaluations: 186
Gradient evaluations: 16
Iteration: 1, Func. Count: 13, Neg. LLF: 4588038.990309738
Iteration: 2, Func. Count: 27, Neg. LLF: 477.7934760876971
Iteration: 3, Func. Count: 40, Neg. LLF: 87.13613798193826
Iteration: 4, Func. Count: 54, Neg. LLF: 90.06977944110423
Iteration: 5, Func. Count: 67, Neg. LLF: 86.88251869240295
Iteration: 6, Func. Count: 80, Neg. LLF: 88.72333448809138
Iteration: 7, Func. Count: 93, Neg. LLF: 85.81401254387647
Iteration: 8, Func. Count: 105, Neg. LLF: 86.8317763585089
Iteration: 9, Func. Count: 118, Neg. LLF: 86.35081874175177
Iteration: 10, Func. Count: 131, Neg. LLF: 85.73283231903856
Iteration: 11, Func. Count: 143, Neg. LLF: 85.7182216312217
Iteration: 12, Func. Count: 155, Neg. LLF: 85.71353376401422
Iteration: 13, Func. Count: 167, Neg. LLF: 85.71136556316952
Iteration: 14, Func. Count: 179, Neg. LLF: 85.71086490663521
Iteration: 15, Func. Count: 191, Neg. LLF: 85.71085628298924
Iteration: 16, Func. Count: 202, Neg. LLF: 85.71085630784832
Optimization terminated successfully (Exit mode 0)
Current function value: 85.71085628298924
Iterations: 16
Function evaluations: 202
Gradient evaluations: 16
Iteration: 1, Func. Count: 14, Neg. LLF: 1793.9414409801568
Iteration: 2, Func. Count: 28, Neg. LLF: 5314.049737377541
Iteration: 3, Func. Count: 42, Neg. LLF: 90.10117035538703
Iteration: 4, Func. Count: 57, Neg. LLF: 94.12260147573708
Iteration: 5, Func. Count: 71, Neg. LLF: 86.59036545409819
Iteration: 6, Func. Count: 85, Neg. LLF: 86.80711570590455
Iteration: 7, Func. Count: 99, Neg. LLF: 86.94394812989968
Iteration: 8, Func. Count: 113, Neg. LLF: 85.74095308466431
Iteration: 9, Func. Count: 126, Neg. LLF: 86.01732214894038
Iteration: 10, Func. Count: 140, Neg. LLF: 85.72256527871265
Iteration: 11, Func. Count: 153, Neg. LLF: 85.71298787905343
Iteration: 12, Func. Count: 166, Neg. LLF: 85.71169294864718
Iteration: 13, Func. Count: 179, Neg. LLF: 85.71086662323705
Iteration: 14, Func. Count: 192, Neg. LLF: 85.71085645047368
Iteration: 15, Func. Count: 204, Neg. LLF: 85.71085645279369
Optimization terminated successfully (Exit mode 0)
Current function value: 85.71085645047368
Iterations: 15
Function evaluations: 204
Gradient evaluations: 15
Iteration: 1, Func. Count: 7, Neg. LLF: 122.05102400799757
Iteration: 2, Func. Count: 16, Neg. LLF: 243.23753841360198
Iteration: 3, Func. Count: 23, Neg. LLF: 539.8865734772003
Iteration: 4, Func. Count: 30, Neg. LLF: 86.74637731559758
Iteration: 5, Func. Count: 36, Neg. LLF: 86.56513178914771
Iteration: 6, Func. Count: 42, Neg. LLF: 86.53490146010999
Iteration: 7, Func. Count: 48, Neg. LLF: 86.53188752306012
Iteration: 8, Func. Count: 54, Neg. LLF: 86.53084997970183
Iteration: 9, Func. Count: 60, Neg. LLF: 86.53061456331727
Iteration: 10, Func. Count: 66, Neg. LLF: 86.53051239093719
Iteration: 11, Func. Count: 72, Neg. LLF: 86.53051023173518
Iteration: 12, Func. Count: 77, Neg. LLF: 86.53051039567265
Optimization terminated successfully (Exit mode 0)
Current function value: 86.53051023173518
Iterations: 12
Function evaluations: 77
Gradient evaluations: 12
Iteration: 1, Func. Count: 8, Neg. LLF: 145.51911626448904
Iteration: 2, Func. Count: 16, Neg. LLF: 109.05606387240374
Iteration: 3, Func. Count: 24, Neg. LLF: 86.58868538486742
Iteration: 4, Func. Count: 31, Neg. LLF: 86.8096518486836
Iteration: 5, Func. Count: 39, Neg. LLF: 86.57159965590535
Iteration: 6, Func. Count: 47, Neg. LLF: 86.53051791259507
Iteration: 7, Func. Count: 54, Neg. LLF: 86.5305136997649
Iteration: 8, Func. Count: 61, Neg. LLF: 86.53051035375319
Iteration: 9, Func. Count: 67, Neg. LLF: 86.53051041167956
Optimization terminated successfully (Exit mode 0)
Current function value: 86.53051035375319
Iterations: 9
Function evaluations: 67
Gradient evaluations: 9
Iteration: 1, Func. Count: 9, Neg. LLF: 168.40780624269712
Iteration: 2, Func. Count: 18, Neg. LLF: 161.4175914859587
Iteration: 3, Func. Count: 27, Neg. LLF: 90.00737552062702
Iteration: 4, Func. Count: 37, Neg. LLF: 86.55542080280343
Iteration: 5, Func. Count: 45, Neg. LLF: 86.07527908797462
Iteration: 6, Func. Count: 53, Neg. LLF: 85.9891600288762
Iteration: 7, Func. Count: 61, Neg. LLF: 85.94367129858738
Iteration: 8, Func. Count: 69, Neg. LLF: 85.9387262124657
Iteration: 9, Func. Count: 77, Neg. LLF: 85.9357376034876
Iteration: 10, Func. Count: 85, Neg. LLF: 85.93570749151407
Iteration: 11, Func. Count: 93, Neg. LLF: 85.93570693273125
Optimization terminated successfully (Exit mode 0)
Current function value: 85.93570693273125
Iterations: 11
Function evaluations: 93
Gradient evaluations: 11
Iteration: 1, Func. Count: 10, Neg. LLF: 311.38700793356486
Iteration: 2, Func. Count: 20, Neg. LLF: 533.0707724219673
Iteration: 3, Func. Count: 30, Neg. LLF: 93.55213011199987
Iteration: 4, Func. Count: 41, Neg. LLF: 86.57871755577186
Iteration: 5, Func. Count: 50, Neg. LLF: 86.10212192190828
Iteration: 6, Func. Count: 59, Neg. LLF: 85.9873776466943
Iteration: 7, Func. Count: 68, Neg. LLF: 85.94879694290012
Iteration: 8, Func. Count: 77, Neg. LLF: 85.93892312797509
Iteration: 9, Func. Count: 86, Neg. LLF: 85.93583711351293
Iteration: 10, Func. Count: 95, Neg. LLF: 85.93570759370468
Iteration: 11, Func. Count: 104, Neg. LLF: 85.9357070028944
Optimization terminated successfully (Exit mode 0)
Current function value: 85.9357070028944
Iterations: 11
Function evaluations: 104
Gradient evaluations: 11
Iteration: 1, Func. Count: 11, Neg. LLF: 287.0178049219829
Iteration: 2, Func. Count: 22, Neg. LLF: 804.8012571208448
Iteration: 3, Func. Count: 33, Neg. LLF: 92.93845955657163
Iteration: 4, Func. Count: 45, Neg. LLF: 86.54343582983533
Iteration: 5, Func. Count: 55, Neg. LLF: 86.01746156101338
Iteration: 6, Func. Count: 65, Neg. LLF: 85.9587199604626
Iteration: 7, Func. Count: 75, Neg. LLF: 85.940577340292
Iteration: 8, Func. Count: 85, Neg. LLF: 85.93594186805339
Iteration: 9, Func. Count: 95, Neg. LLF: 85.93573357247539
Iteration: 10, Func. Count: 105, Neg. LLF: 85.9357069243438
Iteration: 11, Func. Count: 114, Neg. LLF: 85.93570693194367
Optimization terminated successfully (Exit mode 0)
Current function value: 85.9357069243438
Iterations: 11
Function evaluations: 114
Gradient evaluations: 11
Iteration: 1, Func. Count: 8, Neg. LLF: 121.20976817217425
Iteration: 2, Func. Count: 18, Neg. LLF: 705.1763201446524
Iteration: 3, Func. Count: 26, Neg. LLF: 1305.2181052510036
Iteration: 4, Func. Count: 34, Neg. LLF: 86.63395423063318
Iteration: 5, Func. Count: 41, Neg. LLF: 86.57697253369534
Iteration: 6, Func. Count: 48, Neg. LLF: 86.53101076898234
Iteration: 7, Func. Count: 55, Neg. LLF: 86.53350394422472
Iteration: 8, Func. Count: 63, Neg. LLF: 86.52438513495106
Iteration: 9, Func. Count: 70, Neg. LLF: 86.52416069632295
Iteration: 10, Func. Count: 77, Neg. LLF: 86.52408549353213
Iteration: 11, Func. Count: 84, Neg. LLF: 86.52407678013726
Iteration: 12, Func. Count: 90, Neg. LLF: 86.52407678013137
Optimization terminated successfully (Exit mode 0)
Current function value: 86.52407678013726
Iterations: 12
Function evaluations: 90
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 143.4269873396656
Iteration: 2, Func. Count: 18, Neg. LLF: 108.74834761265022
Iteration: 3, Func. Count: 27, Neg. LLF: 86.5855786005414
Iteration: 4, Func. Count: 35, Neg. LLF: 90.51349029296573
Iteration: 5, Func. Count: 45, Neg. LLF: 86.52852305451017
Iteration: 6, Func. Count: 53, Neg. LLF: 86.54560226933194
Iteration: 7, Func. Count: 62, Neg. LLF: 86.52453439497819
Iteration: 8, Func. Count: 70, Neg. LLF: 86.52415593787008
Iteration: 9, Func. Count: 78, Neg. LLF: 86.5240827917754
Iteration: 10, Func. Count: 86, Neg. LLF: 86.52407687856099
Iteration: 11, Func. Count: 93, Neg. LLF: 86.52407693648411
Optimization terminated successfully (Exit mode 0)
Current function value: 86.52407687856099
Iterations: 11
Function evaluations: 93
Gradient evaluations: 11
Iteration: 1, Func. Count: 10, Neg. LLF: 154.45263968072757
Iteration: 2, Func. Count: 20, Neg. LLF: 189.32574365010487
Iteration: 3, Func. Count: 30, Neg. LLF: 89.6227617525555
Iteration: 4, Func. Count: 41, Neg. LLF: 86.56104639003618
Iteration: 5, Func. Count: 50, Neg. LLF: 86.0910223339075
Iteration: 6, Func. Count: 59, Neg. LLF: 88.22102313732636
Iteration: 7, Func. Count: 70, Neg. LLF: 87.91968797916644
Iteration: 8, Func. Count: 80, Neg. LLF: 85.93795872300682
Iteration: 9, Func. Count: 89, Neg. LLF: 85.93399580155268
Iteration: 10, Func. Count: 98, Neg. LLF: 85.9330088087987
Iteration: 11, Func. Count: 107, Neg. LLF: 85.93299641425851
Iteration: 12, Func. Count: 115, Neg. LLF: 85.93299641429682
Optimization terminated successfully (Exit mode 0)
Current function value: 85.93299641425851
Iterations: 12
Function evaluations: 115
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 486.52916609493593
Iteration: 2, Func. Count: 22, Neg. LLF: 226.63856080758916
Iteration: 3, Func. Count: 33, Neg. LLF: 93.60938295090529
Iteration: 4, Func. Count: 45, Neg. LLF: 86.58513667640348
Iteration: 5, Func. Count: 55, Neg. LLF: 86.09875509273203
Iteration: 6, Func. Count: 65, Neg. LLF: 86.59794641312523
Iteration: 7, Func. Count: 76, Neg. LLF: 88.37081618209226
Iteration: 8, Func. Count: 87, Neg. LLF: 85.94390508879131
Iteration: 9, Func. Count: 97, Neg. LLF: 85.93621162531485
Iteration: 10, Func. Count: 107, Neg. LLF: 85.93305983217512
Iteration: 11, Func. Count: 117, Neg. LLF: 85.93299700979296
Iteration: 12, Func. Count: 127, Neg. LLF: 85.9329962174303
Optimization terminated successfully (Exit mode 0)
Current function value: 85.9329962174303
Iterations: 12
Function evaluations: 127
Gradient evaluations: 12
Iteration: 1, Func. Count: 12, Neg. LLF: 343.8865744764386
Iteration: 2, Func. Count: 24, Neg. LLF: 514.3823583364242
Iteration: 3, Func. Count: 36, Neg. LLF: 93.23705537417584
Iteration: 4, Func. Count: 49, Neg. LLF: 86.54745095360943
Iteration: 5, Func. Count: 60, Neg. LLF: 86.01584105268087
Iteration: 6, Func. Count: 71, Neg. LLF: 92.52956327540201
Iteration: 7, Func. Count: 84, Neg. LLF: 85.95515780739322
Iteration: 8, Func. Count: 95, Neg. LLF: 85.93853421282681
Iteration: 9, Func. Count: 106, Neg. LLF: 85.93341411566163
Iteration: 10, Func. Count: 117, Neg. LLF: 85.93302643209638
Iteration: 11, Func. Count: 128, Neg. LLF: 85.93299749268655
Iteration: 12, Func. Count: 139, Neg. LLF: 85.93299620763602
Iteration: 13, Func. Count: 149, Neg. LLF: 85.93299621497465
Optimization terminated successfully (Exit mode 0)
Current function value: 85.93299620763602
Iterations: 13
Function evaluations: 149
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 122.6596830401082
Iteration: 2, Func. Count: 19, Neg. LLF: 130.71275970784276
Iteration: 3, Func. Count: 28, Neg. LLF: 701.0015540881628
Iteration: 4, Func. Count: 37, Neg. LLF: 87.42177283172566
Iteration: 5, Func. Count: 45, Neg. LLF: 89.77472849244343
Iteration: 6, Func. Count: 55, Neg. LLF: 90.5947331348495
Iteration: 7, Func. Count: 65, Neg. LLF: 87.24719284607406
Iteration: 8, Func. Count: 74, Neg. LLF: 86.56395313472626
Iteration: 9, Func. Count: 82, Neg. LLF: 86.521545094502
Iteration: 10, Func. Count: 90, Neg. LLF: 86.51633453337689
Iteration: 11, Func. Count: 98, Neg. LLF: 86.514479656223
Iteration: 12, Func. Count: 106, Neg. LLF: 86.51433752735004
Iteration: 13, Func. Count: 114, Neg. LLF: 86.51433260535438
Iteration: 14, Func. Count: 121, Neg. LLF: 86.51433260530484
Optimization terminated successfully (Exit mode 0)
Current function value: 86.51433260535438
Iterations: 14
Function evaluations: 121
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 120.86662386563026
Iteration: 2, Func. Count: 21, Neg. LLF: 1046.8024477096653
Iteration: 3, Func. Count: 31, Neg. LLF: 97.61071461580748
Iteration: 4, Func. Count: 42, Neg. LLF: 88.4177230007436
Iteration: 5, Func. Count: 52, Neg. LLF: 86.52357238324443
Iteration: 6, Func. Count: 61, Neg. LLF: 88.25604356233042
Iteration: 7, Func. Count: 72, Neg. LLF: 86.51534944545294
Iteration: 8, Func. Count: 81, Neg. LLF: 86.51451853636371
Iteration: 9, Func. Count: 90, Neg. LLF: 86.51437331030158
Iteration: 10, Func. Count: 99, Neg. LLF: 86.51434815407839
Iteration: 11, Func. Count: 108, Neg. LLF: 86.51434210027138
Iteration: 12, Func. Count: 117, Neg. LLF: 86.51433844004642
Iteration: 13, Func. Count: 126, Neg. LLF: 86.51433592177146
Iteration: 14, Func. Count: 135, Neg. LLF: 86.5143334295586
Iteration: 15, Func. Count: 144, Neg. LLF: 86.51433215168949
Iteration: 16, Func. Count: 152, Neg. LLF: 86.51433220828999
Optimization terminated successfully (Exit mode 0)
Current function value: 86.51433215168949
Iterations: 16
Function evaluations: 152
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 147.45512801642974
Iteration: 2, Func. Count: 22, Neg. LLF: 158.3513770375882
Iteration: 3, Func. Count: 33, Neg. LLF: 97.61501759375255
Iteration: 4, Func. Count: 45, Neg. LLF: 88.66517029531816
Iteration: 5, Func. Count: 56, Neg. LLF: 86.08039127334536
Iteration: 6, Func. Count: 66, Neg. LLF: 86.15282644343608
Iteration: 7, Func. Count: 77, Neg. LLF: 85.923300993984
Iteration: 8, Func. Count: 88, Neg. LLF: 85.71887334965561
Iteration: 9, Func. Count: 98, Neg. LLF: 85.7127225677549
Iteration: 10, Func. Count: 108, Neg. LLF: 85.71140758766445
Iteration: 11, Func. Count: 118, Neg. LLF: 85.71089610957523
Iteration: 12, Func. Count: 128, Neg. LLF: 85.71086402901233
Iteration: 13, Func. Count: 138, Neg. LLF: 85.71085619816662
Iteration: 14, Func. Count: 147, Neg. LLF: 85.71085619820296
Optimization terminated successfully (Exit mode 0)
Current function value: 85.71085619816662
Iterations: 14
Function evaluations: 147
Gradient evaluations: 14
Iteration: 1, Func. Count: 12, Neg. LLF: 481.7816432980606
Iteration: 2, Func. Count: 24, Neg. LLF: 862.4249136259216
Iteration: 3, Func. Count: 36, Neg. LLF: 94.60956017010274
Iteration: 4, Func. Count: 49, Neg. LLF: 88.70842746248175
Iteration: 5, Func. Count: 61, Neg. LLF: 86.0817298592554
Iteration: 6, Func. Count: 72, Neg. LLF: 86.8740971934516
Iteration: 7, Func. Count: 84, Neg. LLF: 88.66951271818623
Iteration: 8, Func. Count: 98, Neg. LLF: 86.02479658150658
Iteration: 9, Func. Count: 110, Neg. LLF: 85.72246086287782
Iteration: 10, Func. Count: 121, Neg. LLF: 85.71315156249729
Iteration: 11, Func. Count: 132, Neg. LLF: 85.7115933198806
Iteration: 12, Func. Count: 143, Neg. LLF: 85.71094789206103
Iteration: 13, Func. Count: 154, Neg. LLF: 85.71086866382478
Iteration: 14, Func. Count: 165, Neg. LLF: 85.71085700002853
Iteration: 15, Func. Count: 176, Neg. LLF: 85.71085618120333
Optimization terminated successfully (Exit mode 0)
Current function value: 85.71085618120333
Iterations: 15
Function evaluations: 176
Gradient evaluations: 15
Iteration: 1, Func. Count: 13, Neg. LLF: 356.31791504592974
Iteration: 2, Func. Count: 26, Neg. LLF: 495.6987167727138
Iteration: 3, Func. Count: 39, Neg. LLF: 94.31153213478386
Iteration: 4, Func. Count: 53, Neg. LLF: 88.62850652370427
Iteration: 5, Func. Count: 66, Neg. LLF: 86.18114770491482
Iteration: 6, Func. Count: 78, Neg. LLF: 86.74880168304885
Iteration: 7, Func. Count: 91, Neg. LLF: 88.18881909554374
Iteration: 8, Func. Count: 105, Neg. LLF: 86.27719632533187
Iteration: 9, Func. Count: 118, Neg. LLF: 85.73715122715765
Iteration: 10, Func. Count: 130, Neg. LLF: 85.71942501721415
Iteration: 11, Func. Count: 142, Neg. LLF: 85.7132790311393
Iteration: 12, Func. Count: 154, Neg. LLF: 85.71129065035373
Iteration: 13, Func. Count: 166, Neg. LLF: 85.71094366089702
Iteration: 14, Func. Count: 178, Neg. LLF: 85.71085749888955
Iteration: 15, Func. Count: 190, Neg. LLF: 85.71085632323691
Iteration: 16, Func. Count: 201, Neg. LLF: 85.71085632558028
Optimization terminated successfully (Exit mode 0)
Current function value: 85.71085632323691
Iterations: 16
Function evaluations: 201
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 119.12944532298886
Iteration: 2, Func. Count: 21, Neg. LLF: 137.08643562865313
Iteration: 3, Func. Count: 31, Neg. LLF: 1296.984672315348
Iteration: 4, Func. Count: 41, Neg. LLF: 88.42316877649431
Iteration: 5, Func. Count: 51, Neg. LLF: 86.91596079553189
Iteration: 6, Func. Count: 60, Neg. LLF: 86.5332899539913
Iteration: 7, Func. Count: 69, Neg. LLF: 88.9159304483618
Iteration: 8, Func. Count: 80, Neg. LLF: 86.51684601520968
Iteration: 9, Func. Count: 89, Neg. LLF: 86.51554761947257
Iteration: 10, Func. Count: 98, Neg. LLF: 86.51433646839811
Iteration: 11, Func. Count: 107, Neg. LLF: 86.51433256636855
Iteration: 12, Func. Count: 116, Neg. LLF: 86.51433187108478
Optimization terminated successfully (Exit mode 0)
Current function value: 86.51433187108478
Iterations: 12
Function evaluations: 116
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 120.57758810576992
Iteration: 2, Func. Count: 23, Neg. LLF: 1134.1006248592353
Iteration: 3, Func. Count: 34, Neg. LLF: 97.37694383251295
Iteration: 4, Func. Count: 46, Neg. LLF: 88.52038897498177
Iteration: 5, Func. Count: 57, Neg. LLF: 86.52384115135804
Iteration: 6, Func. Count: 67, Neg. LLF: 88.31789023465544
Iteration: 7, Func. Count: 79, Neg. LLF: 86.51547672279426
Iteration: 8, Func. Count: 89, Neg. LLF: 86.51439239876649
Iteration: 9, Func. Count: 99, Neg. LLF: 86.51435082812513
Iteration: 10, Func. Count: 109, Neg. LLF: 86.51433471836624
Iteration: 11, Func. Count: 119, Neg. LLF: 86.51433312922367
Iteration: 12, Func. Count: 128, Neg. LLF: 86.5143331859099
Optimization terminated successfully (Exit mode 0)
Current function value: 86.51433312922367
Iterations: 12
Function evaluations: 128
Gradient evaluations: 12
Iteration: 1, Func. Count: 12, Neg. LLF: 135.7860826686762
Iteration: 2, Func. Count: 24, Neg. LLF: 475.9672241484467
Iteration: 3, Func. Count: 36, Neg. LLF: 98.77494689695905
Iteration: 4, Func. Count: 49, Neg. LLF: 88.59065913161899
Iteration: 5, Func. Count: 61, Neg. LLF: 86.0749300265177
Iteration: 6, Func. Count: 72, Neg. LLF: 86.37880099658588
Iteration: 7, Func. Count: 84, Neg. LLF: 85.88048051382403
Iteration: 8, Func. Count: 96, Neg. LLF: 85.71779137602091
Iteration: 9, Func. Count: 107, Neg. LLF: 85.71235264580264
Iteration: 10, Func. Count: 118, Neg. LLF: 85.71127744254731
Iteration: 11, Func. Count: 129, Neg. LLF: 85.71088657400601
Iteration: 12, Func. Count: 140, Neg. LLF: 85.71086096806941
Iteration: 13, Func. Count: 151, Neg. LLF: 85.71085629274731
Iteration: 14, Func. Count: 161, Neg. LLF: 85.7108562927977
Optimization terminated successfully (Exit mode 0)
Current function value: 85.71085629274731
Iterations: 14
Function evaluations: 161
Gradient evaluations: 14
Iteration: 1, Func. Count: 13, Neg. LLF: 408.13851978657965
Iteration: 2, Func. Count: 26, Neg. LLF: 288.12644042748474
Iteration: 3, Func. Count: 39, Neg. LLF: 94.77031982638727
Iteration: 4, Func. Count: 53, Neg. LLF: 88.75332958031989
Iteration: 5, Func. Count: 66, Neg. LLF: 86.09410569499944
Iteration: 6, Func. Count: 78, Neg. LLF: 86.59693511368982
Iteration: 7, Func. Count: 91, Neg. LLF: 88.39315636273918
Iteration: 8, Func. Count: 106, Neg. LLF: 86.02241508561877
Iteration: 9, Func. Count: 119, Neg. LLF: 85.7228145902049
Iteration: 10, Func. Count: 131, Neg. LLF: 85.71355619558418
Iteration: 11, Func. Count: 143, Neg. LLF: 85.71167004627493
Iteration: 12, Func. Count: 155, Neg. LLF: 85.7109612830931
Iteration: 13, Func. Count: 167, Neg. LLF: 85.71086761240926
Iteration: 14, Func. Count: 179, Neg. LLF: 85.71085690328277
Iteration: 15, Func. Count: 191, Neg. LLF: 85.71085618115615
Optimization terminated successfully (Exit mode 0)
Current function value: 85.71085618115615
Iterations: 15
Function evaluations: 191
Gradient evaluations: 15
Iteration: 1, Func. Count: 14, Neg. LLF: 333.0667235888486
Iteration: 2, Func. Count: 28, Neg. LLF: 526.6320860127825
Iteration: 3, Func. Count: 42, Neg. LLF: 94.43299113170686
Iteration: 4, Func. Count: 57, Neg. LLF: 88.628346541039
Iteration: 5, Func. Count: 71, Neg. LLF: 86.1876383126914
Iteration: 6, Func. Count: 84, Neg. LLF: 86.72502070789618
Iteration: 7, Func. Count: 98, Neg. LLF: 88.1911805427105
Iteration: 8, Func. Count: 114, Neg. LLF: 86.128487818479
Iteration: 9, Func. Count: 128, Neg. LLF: 85.7332786629078
Iteration: 10, Func. Count: 141, Neg. LLF: 85.71733320833532
Iteration: 11, Func. Count: 154, Neg. LLF: 85.71184372237326
Iteration: 12, Func. Count: 167, Neg. LLF: 85.71096506653764
Iteration: 13, Func. Count: 180, Neg. LLF: 85.71086890495233
Iteration: 14, Func. Count: 193, Neg. LLF: 85.71085656893408
Iteration: 15, Func. Count: 205, Neg. LLF: 85.71085657131194
Optimization terminated successfully (Exit mode 0)
Current function value: 85.71085656893408
Iterations: 15
Function evaluations: 205
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 121.82636446064033
Iteration: 2, Func. Count: 23, Neg. LLF: 133.11192782110814
Iteration: 3, Func. Count: 34, Neg. LLF: 572.3834451752099
Iteration: 4, Func. Count: 45, Neg. LLF: 87.7601898696412
Iteration: 5, Func. Count: 55, Neg. LLF: 86.94727226978695
Iteration: 6, Func. Count: 65, Neg. LLF: 88.43331172655273
Iteration: 7, Func. Count: 77, Neg. LLF: 86.65536602092989
Iteration: 8, Func. Count: 87, Neg. LLF: 89.45614367103552
Iteration: 9, Func. Count: 98, Neg. LLF: 86.5264717775265
Iteration: 10, Func. Count: 108, Neg. LLF: 86.51907779656241
Iteration: 11, Func. Count: 118, Neg. LLF: 86.51559366576001
Iteration: 12, Func. Count: 128, Neg. LLF: 86.51437322624491
Iteration: 13, Func. Count: 138, Neg. LLF: 86.51433232368939
Iteration: 14, Func. Count: 147, Neg. LLF: 86.51433236043994
Optimization terminated successfully (Exit mode 0)
Current function value: 86.51433232368939
Iterations: 14
Function evaluations: 147
Gradient evaluations: 14
Iteration: 1, Func. Count: 12, Neg. LLF: 120.55756817294635
Iteration: 2, Func. Count: 25, Neg. LLF: 1251.202310915568
Iteration: 3, Func. Count: 37, Neg. LLF: 97.18449496257297
Iteration: 4, Func. Count: 50, Neg. LLF: 88.59386419717548
Iteration: 5, Func. Count: 62, Neg. LLF: 86.52469124329903
Iteration: 6, Func. Count: 73, Neg. LLF: 88.36664410748
Iteration: 7, Func. Count: 86, Neg. LLF: 86.5156696850201
Iteration: 8, Func. Count: 97, Neg. LLF: 86.51443531945989
Iteration: 9, Func. Count: 108, Neg. LLF: 86.51437806301426
Iteration: 10, Func. Count: 119, Neg. LLF: 86.51435159277978
Iteration: 11, Func. Count: 130, Neg. LLF: 86.51434531624297
Iteration: 12, Func. Count: 141, Neg. LLF: 86.51433984163394
Iteration: 13, Func. Count: 152, Neg. LLF: 86.51433541806925
Iteration: 14, Func. Count: 163, Neg. LLF: 86.51433252233223
Iteration: 15, Func. Count: 174, Neg. LLF: 86.5143319021223
Optimization terminated successfully (Exit mode 0)
Current function value: 86.5143319021223
Iterations: 15
Function evaluations: 174
Gradient evaluations: 15
Iteration: 1, Func. Count: 13, Neg. LLF: 138.35303796888917
Iteration: 2, Func. Count: 26, Neg. LLF: 303.77095303250945
Iteration: 3, Func. Count: 39, Neg. LLF: 98.57807463431189
Iteration: 4, Func. Count: 53, Neg. LLF: 88.60794624243262
Iteration: 5, Func. Count: 66, Neg. LLF: 86.08144328047962
Iteration: 6, Func. Count: 78, Neg. LLF: 86.25622501802783
Iteration: 7, Func. Count: 91, Neg. LLF: 85.89824335989104
Iteration: 8, Func. Count: 104, Neg. LLF: 85.71830195018025
Iteration: 9, Func. Count: 116, Neg. LLF: 85.71255780218083
Iteration: 10, Func. Count: 128, Neg. LLF: 85.71134098977862
Iteration: 11, Func. Count: 140, Neg. LLF: 85.7108942662587
Iteration: 12, Func. Count: 152, Neg. LLF: 85.71086219034862
Iteration: 13, Func. Count: 164, Neg. LLF: 85.7108563003364
Iteration: 14, Func. Count: 175, Neg. LLF: 85.71085630038957
Optimization terminated successfully (Exit mode 0)
Current function value: 85.7108563003364
Iterations: 14
Function evaluations: 175
Gradient evaluations: 14
Iteration: 1, Func. Count: 14, Neg. LLF: 441.4251094437996
Iteration: 2, Func. Count: 28, Neg. LLF: 243.4261719907112
Iteration: 3, Func. Count: 42, Neg. LLF: 94.72709546465613
Iteration: 4, Func. Count: 57, Neg. LLF: 88.79174639668824
Iteration: 5, Func. Count: 71, Neg. LLF: 86.10369022366291
Iteration: 6, Func. Count: 84, Neg. LLF: 86.40762108013698
Iteration: 7, Func. Count: 98, Neg. LLF: 88.1227210821856
Iteration: 8, Func. Count: 114, Neg. LLF: 86.00008541491268
Iteration: 9, Func. Count: 128, Neg. LLF: 85.72272322537142
Iteration: 10, Func. Count: 141, Neg. LLF: 85.71367802514499
Iteration: 11, Func. Count: 154, Neg. LLF: 85.71168708777925
Iteration: 12, Func. Count: 167, Neg. LLF: 85.71095526384073
Iteration: 13, Func. Count: 180, Neg. LLF: 85.71086589542617
Iteration: 14, Func. Count: 193, Neg. LLF: 85.71085661573075
Iteration: 15, Func. Count: 205, Neg. LLF: 85.71085664075244
Optimization terminated successfully (Exit mode 0)
Current function value: 85.71085661573075
Iterations: 15
Function evaluations: 205
Gradient evaluations: 15
Iteration: 1, Func. Count: 15, Neg. LLF: 348.4612553539895
Iteration: 2, Func. Count: 30, Neg. LLF: 513.8623210376638
Iteration: 3, Func. Count: 45, Neg. LLF: 94.40858965061068
Iteration: 4, Func. Count: 61, Neg. LLF: 88.63613780723513
Iteration: 5, Func. Count: 76, Neg. LLF: 86.19001056513905
Iteration: 6, Func. Count: 90, Neg. LLF: 86.67705392407893
Iteration: 7, Func. Count: 105, Neg. LLF: 88.19362839387234
Iteration: 8, Func. Count: 122, Neg. LLF: 86.12560934983783
Iteration: 9, Func. Count: 137, Neg. LLF: 85.73333261471325
Iteration: 10, Func. Count: 151, Neg. LLF: 85.71728598544269
Iteration: 11, Func. Count: 165, Neg. LLF: 85.71186337814137
Iteration: 12, Func. Count: 179, Neg. LLF: 85.71096155744812
Iteration: 13, Func. Count: 193, Neg. LLF: 85.71086860780838
Iteration: 14, Func. Count: 207, Neg. LLF: 85.7108565007713
Iteration: 15, Func. Count: 220, Neg. LLF: 85.71085650314104
Optimization terminated successfully (Exit mode 0)
Current function value: 85.7108565007713
Iterations: 15
Function evaluations: 220
Gradient evaluations: 15
Iteration: 1, Func. Count: 8, Neg. LLF: 124.89004801402014
Iteration: 2, Func. Count: 18, Neg. LLF: 249.39813385043146
Iteration: 3, Func. Count: 26, Neg. LLF: 907.3858961380639
Iteration: 4, Func. Count: 34, Neg. LLF: 600.7760404577025
Iteration: 5, Func. Count: 42, Neg. LLF: 86.00469229798851
Iteration: 6, Func. Count: 49, Neg. LLF: 86.08158045219794
Iteration: 7, Func. Count: 57, Neg. LLF: 86.62315142507151
Iteration: 8, Func. Count: 65, Neg. LLF: 86.00456745599996
Iteration: 9, Func. Count: 73, Neg. LLF: 85.9624110835495
Iteration: 10, Func. Count: 81, Neg. LLF: 85.95830689414835
Iteration: 11, Func. Count: 88, Neg. LLF: 85.95768869218436
Iteration: 12, Func. Count: 95, Neg. LLF: 85.95768792011373
Optimization terminated successfully (Exit mode 0)
Current function value: 85.95768792011373
Iterations: 12
Function evaluations: 95
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 210.2414245194955
Iteration: 2, Func. Count: 18, Neg. LLF: 109.89957979921105
Iteration: 3, Func. Count: 27, Neg. LLF: 89.07712957805091
Iteration: 4, Func. Count: 37, Neg. LLF: 86.5748344910064
Iteration: 5, Func. Count: 45, Neg. LLF: 89.96418242042073
Iteration: 6, Func. Count: 54, Neg. LLF: 87.5113015290833
Iteration: 7, Func. Count: 63, Neg. LLF: 85.99888678684856
Iteration: 8, Func. Count: 71, Neg. LLF: 86.90971410529897
Iteration: 9, Func. Count: 80, Neg. LLF: 85.9595370864556
Iteration: 10, Func. Count: 88, Neg. LLF: 85.95777690679152
Iteration: 11, Func. Count: 96, Neg. LLF: 85.95768961227157
Iteration: 12, Func. Count: 104, Neg. LLF: 85.95768796730523
Iteration: 13, Func. Count: 111, Neg. LLF: 85.957688017437
Optimization terminated successfully (Exit mode 0)
Current function value: 85.95768796730523
Iterations: 13
Function evaluations: 111
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 216.44890280981994
Iteration: 2, Func. Count: 20, Neg. LLF: 547.9894539073803
Iteration: 3, Func. Count: 30, Neg. LLF: 1508.6461634720183
Iteration: 4, Func. Count: 40, Neg. LLF: 131.03282597700212
Iteration: 5, Func. Count: 50, Neg. LLF: 86.07162491879525
Iteration: 6, Func. Count: 59, Neg. LLF: 85.97119372828519
Iteration: 7, Func. Count: 68, Neg. LLF: 87.47197926769444
Iteration: 8, Func. Count: 79, Neg. LLF: 85.95166322913964
Iteration: 9, Func. Count: 88, Neg. LLF: 85.94816336435088
Iteration: 10, Func. Count: 97, Neg. LLF: 85.93938901798104
Iteration: 11, Func. Count: 106, Neg. LLF: 85.9365005987293
Iteration: 12, Func. Count: 115, Neg. LLF: 85.93510860542527
Iteration: 13, Func. Count: 124, Neg. LLF: 85.93506475362213
Iteration: 14, Func. Count: 133, Neg. LLF: 85.935063129594
Iteration: 15, Func. Count: 141, Neg. LLF: 85.93506312960777
Optimization terminated successfully (Exit mode 0)
Current function value: 85.935063129594
Iterations: 15
Function evaluations: 141
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 198087.88314776748
Iteration: 2, Func. Count: 22, Neg. LLF: 9521.434224823306
Iteration: 3, Func. Count: 33, Neg. LLF: 1383.171429376635
Iteration: 4, Func. Count: 44, Neg. LLF: 153.90897929629944
Iteration: 5, Func. Count: 55, Neg. LLF: 85.98658582775838
Iteration: 6, Func. Count: 65, Neg. LLF: 88.06069863292059
Iteration: 7, Func. Count: 77, Neg. LLF: 85.95332372179736
Iteration: 8, Func. Count: 87, Neg. LLF: 85.9492450849987
Iteration: 9, Func. Count: 97, Neg. LLF: 85.94225907355523
Iteration: 10, Func. Count: 107, Neg. LLF: 85.93699147162764
Iteration: 11, Func. Count: 117, Neg. LLF: 85.93530005351172
Iteration: 12, Func. Count: 127, Neg. LLF: 85.93506767179514
Iteration: 13, Func. Count: 137, Neg. LLF: 85.93506483654616
Iteration: 14, Func. Count: 147, Neg. LLF: 85.93506315174481
Iteration: 15, Func. Count: 156, Neg. LLF: 85.9350631644028
Optimization terminated successfully (Exit mode 0)
Current function value: 85.93506315174481
Iterations: 15
Function evaluations: 156
Gradient evaluations: 15
Iteration: 1, Func. Count: 12, Neg. LLF: 1361.497810771633
Iteration: 2, Func. Count: 24, Neg. LLF: 24429.911632534695
Iteration: 3, Func. Count: 36, Neg. LLF: 4466.128700896782
Iteration: 4, Func. Count: 48, Neg. LLF: 176.75827296905302
Iteration: 5, Func. Count: 60, Neg. LLF: 85.98500747987826
Iteration: 6, Func. Count: 71, Neg. LLF: 88.07002635661246
Iteration: 7, Func. Count: 84, Neg. LLF: 85.97483609675453
Iteration: 8, Func. Count: 96, Neg. LLF: 85.96455114732345
Iteration: 9, Func. Count: 108, Neg. LLF: 85.95117800163571
Iteration: 10, Func. Count: 119, Neg. LLF: 85.95004971260052
Iteration: 11, Func. Count: 130, Neg. LLF: 85.94677720061695
Iteration: 12, Func. Count: 141, Neg. LLF: 85.94193162335758
Iteration: 13, Func. Count: 152, Neg. LLF: 85.93749260012687
Iteration: 14, Func. Count: 163, Neg. LLF: 85.93534614713042
Iteration: 15, Func. Count: 174, Neg. LLF: 85.93507506247181
Iteration: 16, Func. Count: 185, Neg. LLF: 85.93506604733388
Iteration: 17, Func. Count: 196, Neg. LLF: 85.93506316644891
Iteration: 18, Func. Count: 206, Neg. LLF: 85.93506317336038
Optimization terminated successfully (Exit mode 0)
Current function value: 85.93506316644891
Iterations: 18
Function evaluations: 206
Gradient evaluations: 18
Iteration: 1, Func. Count: 9, Neg. LLF: 127.91157204914684
Iteration: 2, Func. Count: 19, Neg. LLF: 137.18548757828452
Iteration: 3, Func. Count: 28, Neg. LLF: 2354.0749580778297
Iteration: 4, Func. Count: 37, Neg. LLF: 351.4028955475419
Iteration: 5, Func. Count: 46, Neg. LLF: 99.78909368083207
Iteration: 6, Func. Count: 55, Neg. LLF: 88.03392913525988
Iteration: 7, Func. Count: 64, Neg. LLF: 86.20103721068445
Iteration: 8, Func. Count: 73, Neg. LLF: 98.70827347142642
Iteration: 9, Func. Count: 83, Neg. LLF: 85.90731089953928
Iteration: 10, Func. Count: 91, Neg. LLF: 85.90513953147709
Iteration: 11, Func. Count: 99, Neg. LLF: 85.90496777244735
Iteration: 12, Func. Count: 107, Neg. LLF: 85.9049616856745
Iteration: 13, Func. Count: 115, Neg. LLF: 85.90495993641383
Iteration: 14, Func. Count: 122, Neg. LLF: 85.90495993641557
Optimization terminated successfully (Exit mode 0)
Current function value: 85.90495993641383
Iterations: 14
Function evaluations: 122
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 186.65016080678063
Iteration: 2, Func. Count: 20, Neg. LLF: 109.42070484385758
Iteration: 3, Func. Count: 30, Neg. LLF: 89.22628140572522
Iteration: 4, Func. Count: 41, Neg. LLF: 86.75279771862722
Iteration: 5, Func. Count: 50, Neg. LLF: 89.94856239628486
Iteration: 6, Func. Count: 60, Neg. LLF: 90.07480154169187
Iteration: 7, Func. Count: 70, Neg. LLF: 86.27307067467527
Iteration: 8, Func. Count: 80, Neg. LLF: 87.8046674328751
Iteration: 9, Func. Count: 90, Neg. LLF: 85.91818427832538
Iteration: 10, Func. Count: 99, Neg. LLF: 85.90596811131584
Iteration: 11, Func. Count: 108, Neg. LLF: 85.90505861135671
Iteration: 12, Func. Count: 117, Neg. LLF: 85.90496302513206
Iteration: 13, Func. Count: 126, Neg. LLF: 85.90495996882977
Iteration: 14, Func. Count: 134, Neg. LLF: 85.90496002311109
Optimization terminated successfully (Exit mode 0)
Current function value: 85.90495996882977
Iterations: 14
Function evaluations: 134
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 180.51900346774116
Iteration: 2, Func. Count: 22, Neg. LLF: 843.146963002918
Iteration: 3, Func. Count: 33, Neg. LLF: 1258.1327444860392
Iteration: 4, Func. Count: 44, Neg. LLF: 132.63780269172426
Iteration: 5, Func. Count: 55, Neg. LLF: 86.00735136010356
Iteration: 6, Func. Count: 65, Neg. LLF: 91.73737061636572
Iteration: 7, Func. Count: 77, Neg. LLF: 85.91870589315626
Iteration: 8, Func. Count: 87, Neg. LLF: 85.90792635930666
Iteration: 9, Func. Count: 97, Neg. LLF: 85.90532631850328
Iteration: 10, Func. Count: 107, Neg. LLF: 85.90501462358804
Iteration: 11, Func. Count: 117, Neg. LLF: 85.9049658625708
Iteration: 12, Func. Count: 127, Neg. LLF: 85.90496002990295
Iteration: 13, Func. Count: 136, Neg. LLF: 85.90496003142808
Optimization terminated successfully (Exit mode 0)
Current function value: 85.90496002990295
Iterations: 13
Function evaluations: 136
Gradient evaluations: 13
Iteration: 1, Func. Count: 12, Neg. LLF: 1329.0998054362785
Iteration: 2, Func. Count: 24, Neg. LLF: 4241.619946430516
Iteration: 3, Func. Count: 36, Neg. LLF: 1148.7790842208558
Iteration: 4, Func. Count: 48, Neg. LLF: 143.7652250549496
Iteration: 5, Func. Count: 60, Neg. LLF: 85.98119378839483
Iteration: 6, Func. Count: 71, Neg. LLF: 88.71131375622264
Iteration: 7, Func. Count: 84, Neg. LLF: 85.91531829062188
Iteration: 8, Func. Count: 95, Neg. LLF: 85.90524554219719
Iteration: 9, Func. Count: 106, Neg. LLF: 85.90498585178749
Iteration: 10, Func. Count: 117, Neg. LLF: 85.90496013841268
Iteration: 11, Func. Count: 127, Neg. LLF: 85.90496016090287
Optimization terminated successfully (Exit mode 0)
Current function value: 85.90496013841268
Iterations: 11
Function evaluations: 127
Gradient evaluations: 11
Iteration: 1, Func. Count: 13, Neg. LLF: 8091.540495840459
Iteration: 2, Func. Count: 26, Neg. LLF: 1457.5822194210612
Iteration: 3, Func. Count: 39, Neg. LLF: 3437.705394029955
Iteration: 4, Func. Count: 52, Neg. LLF: 163.2521123732961
Iteration: 5, Func. Count: 65, Neg. LLF: 85.9830501662924
Iteration: 6, Func. Count: 77, Neg. LLF: 88.9535682151235
Iteration: 7, Func. Count: 91, Neg. LLF: 85.91022820611082
Iteration: 8, Func. Count: 103, Neg. LLF: 85.9107145076954
Iteration: 9, Func. Count: 116, Neg. LLF: 85.90777660310137
Iteration: 10, Func. Count: 129, Neg. LLF: 85.9049795751036
Iteration: 11, Func. Count: 141, Neg. LLF: 85.90496052468379
Iteration: 12, Func. Count: 153, Neg. LLF: 85.9049578660503
Iteration: 13, Func. Count: 164, Neg. LLF: 85.90495786604079
Optimization terminated successfully (Exit mode 0)
Current function value: 85.9049578660503
Iterations: 13
Function evaluations: 164
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 138.03767141096202
Iteration: 2, Func. Count: 21, Neg. LLF: 139.79800442324643
Iteration: 3, Func. Count: 31, Neg. LLF: 1561.3168589338593
Iteration: 4, Func. Count: 41, Neg. LLF: 884.9305129422326
Iteration: 5, Func. Count: 51, Neg. LLF: 86.05489309919547
Iteration: 6, Func. Count: 60, Neg. LLF: 142.2430119383456
Iteration: 7, Func. Count: 71, Neg. LLF: 86.01990436393315
Iteration: 8, Func. Count: 81, Neg. LLF: 87.54786232791574
Iteration: 9, Func. Count: 92, Neg. LLF: 85.90250123394658
Iteration: 10, Func. Count: 101, Neg. LLF: 85.90138379163095
Iteration: 11, Func. Count: 110, Neg. LLF: 85.90129881814127
Iteration: 12, Func. Count: 119, Neg. LLF: 85.90129259130279
Iteration: 13, Func. Count: 127, Neg. LLF: 85.90129259129993
Optimization terminated successfully (Exit mode 0)
Current function value: 85.90129259130279
Iterations: 13
Function evaluations: 127
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 129.8035273399165
Iteration: 2, Func. Count: 22, Neg. LLF: 127.69949405442338
Iteration: 3, Func. Count: 33, Neg. LLF: 373.7203390015904
Iteration: 4, Func. Count: 44, Neg. LLF: 98.57042689675245
Iteration: 5, Func. Count: 55, Neg. LLF: 93.48206042465239
Iteration: 6, Func. Count: 66, Neg. LLF: 86.75870676330473
Iteration: 7, Func. Count: 77, Neg. LLF: 86.02801385259892
Iteration: 8, Func. Count: 87, Neg. LLF: 96.74841627472888
Iteration: 9, Func. Count: 99, Neg. LLF: 85.90737077614945
Iteration: 10, Func. Count: 109, Neg. LLF: 85.90164931301528
Iteration: 11, Func. Count: 119, Neg. LLF: 85.9013180282509
Iteration: 12, Func. Count: 129, Neg. LLF: 85.90129428178156
Iteration: 13, Func. Count: 139, Neg. LLF: 85.9012924735934
Iteration: 14, Func. Count: 148, Neg. LLF: 85.90129252729875
Optimization terminated successfully (Exit mode 0)
Current function value: 85.9012924735934
Iterations: 14
Function evaluations: 148
Gradient evaluations: 14
Iteration: 1, Func. Count: 12, Neg. LLF: 130.84925683068266
Iteration: 2, Func. Count: 24, Neg. LLF: 158.23002997132065
Iteration: 3, Func. Count: 36, Neg. LLF: 673.4297724590373
Iteration: 4, Func. Count: 48, Neg. LLF: 99.78615283307624
Iteration: 5, Func. Count: 60, Neg. LLF: 89.9467431451652
Iteration: 6, Func. Count: 72, Neg. LLF: 86.76072227465701
Iteration: 7, Func. Count: 84, Neg. LLF: 87.11990004715165
Iteration: 8, Func. Count: 96, Neg. LLF: 86.07691685457641
Iteration: 9, Func. Count: 107, Neg. LLF: 87.68876319519343
Iteration: 10, Func. Count: 119, Neg. LLF: 85.903743687052
Iteration: 11, Func. Count: 130, Neg. LLF: 85.9014183329414
Iteration: 12, Func. Count: 141, Neg. LLF: 85.89874158914594
Iteration: 13, Func. Count: 152, Neg. LLF: 85.8538164260025
Iteration: 14, Func. Count: 163, Neg. LLF: 85.78757593796033
Iteration: 15, Func. Count: 174, Neg. LLF: 85.75317413266303
Iteration: 16, Func. Count: 185, Neg. LLF: 85.7221912071212
Iteration: 17, Func. Count: 196, Neg. LLF: 85.7150980522621
Iteration: 18, Func. Count: 207, Neg. LLF: 85.71106613617228
Iteration: 19, Func. Count: 218, Neg. LLF: 85.71086261111836
Iteration: 20, Func. Count: 229, Neg. LLF: 85.7108580211337
Iteration: 21, Func. Count: 240, Neg. LLF: 85.71085614911489
Iteration: 22, Func. Count: 250, Neg. LLF: 85.71085614910746
Optimization terminated successfully (Exit mode 0)
Current function value: 85.71085614911489
Iterations: 23
Function evaluations: 250
Gradient evaluations: 22
Iteration: 1, Func. Count: 13, Neg. LLF: 131.8833882923724
Iteration: 2, Func. Count: 26, Neg. LLF: 684.7065247657752
Iteration: 3, Func. Count: 39, Neg. LLF: 994.322495442835
Iteration: 4, Func. Count: 52, Neg. LLF: 107.04947652802004
Iteration: 5, Func. Count: 65, Neg. LLF: 87.58996353481159
Iteration: 6, Func. Count: 78, Neg. LLF: 86.8577938390757
Iteration: 7, Func. Count: 91, Neg. LLF: 86.25311270670794
Iteration: 8, Func. Count: 104, Neg. LLF: 89.37852209609169
Iteration: 9, Func. Count: 118, Neg. LLF: 85.90465438713912
Iteration: 10, Func. Count: 130, Neg. LLF: 85.901106347103
Iteration: 11, Func. Count: 142, Neg. LLF: 85.89537736868645
Iteration: 12, Func. Count: 154, Neg. LLF: 85.78586870471754
Iteration: 13, Func. Count: 166, Neg. LLF: 85.75239492054395
Iteration: 14, Func. Count: 178, Neg. LLF: 85.73331219491706
Iteration: 15, Func. Count: 190, Neg. LLF: 85.72036708246692
Iteration: 16, Func. Count: 202, Neg. LLF: 85.71219183381608
Iteration: 17, Func. Count: 214, Neg. LLF: 85.71095827934707
Iteration: 18, Func. Count: 226, Neg. LLF: 85.7108689229853
Iteration: 19, Func. Count: 238, Neg. LLF: 85.71085630006425
Iteration: 20, Func. Count: 249, Neg. LLF: 85.71085632492286
Optimization terminated successfully (Exit mode 0)
Current function value: 85.71085630006425
Iterations: 20
Function evaluations: 249
Gradient evaluations: 20
Iteration: 1, Func. Count: 14, Neg. LLF: 139.10288451450995
Iteration: 2, Func. Count: 29, Neg. LLF: 277.65743258375
Iteration: 3, Func. Count: 43, Neg. LLF: 549.875344519291
Iteration: 4, Func. Count: 57, Neg. LLF: 90.27368849782687
Iteration: 5, Func. Count: 71, Neg. LLF: 86.24255693902471
Iteration: 6, Func. Count: 84, Neg. LLF: 86.30035797801855
Iteration: 7, Func. Count: 98, Neg. LLF: 89.23534658925372
Iteration: 8, Func. Count: 113, Neg. LLF: 86.20114127057111
Iteration: 9, Func. Count: 127, Neg. LLF: 85.8825484312656
Iteration: 10, Func. Count: 140, Neg. LLF: 85.85096523040119
Iteration: 11, Func. Count: 153, Neg. LLF: 85.82036085221404
Iteration: 12, Func. Count: 166, Neg. LLF: 85.73122824525275
Iteration: 13, Func. Count: 179, Neg. LLF: 85.71998978788066
Iteration: 14, Func. Count: 192, Neg. LLF: 85.7129283743921
Iteration: 15, Func. Count: 205, Neg. LLF: 85.71091823423566
Iteration: 16, Func. Count: 218, Neg. LLF: 85.71086256837854
Iteration: 17, Func. Count: 231, Neg. LLF: 85.71085616607546
Iteration: 18, Func. Count: 243, Neg. LLF: 85.71085616845559
Optimization terminated successfully (Exit mode 0)
Current function value: 85.71085616607546
Iterations: 18
Function evaluations: 243
Gradient evaluations: 18
Iteration: 1, Func. Count: 11, Neg. LLF: 130.47952818639587
Iteration: 2, Func. Count: 23, Neg. LLF: 126.82757785165536
Iteration: 3, Func. Count: 35, Neg. LLF: 435.4531959486113
Iteration: 4, Func. Count: 46, Neg. LLF: 193.4825363781682
Iteration: 5, Func. Count: 57, Neg. LLF: 100.01583816505465
Iteration: 6, Func. Count: 68, Neg. LLF: 86.2294713506802
Iteration: 7, Func. Count: 78, Neg. LLF: 119.00421396813027
Iteration: 8, Func. Count: 90, Neg. LLF: 87.17198933990336
Iteration: 9, Func. Count: 101, Neg. LLF: 85.90661316297572
Iteration: 10, Func. Count: 111, Neg. LLF: 85.90211798237809
Iteration: 11, Func. Count: 121, Neg. LLF: 85.90155735776298
Iteration: 12, Func. Count: 131, Neg. LLF: 85.90129985217266
Iteration: 13, Func. Count: 141, Neg. LLF: 85.9012940260207
Iteration: 14, Func. Count: 151, Neg. LLF: 85.9012928306608
Iteration: 15, Func. Count: 160, Neg. LLF: 85.90129289997493
Optimization terminated successfully (Exit mode 0)
Current function value: 85.9012928306608
Iterations: 15
Function evaluations: 160
Gradient evaluations: 15
Iteration: 1, Func. Count: 12, Neg. LLF: 120.4786258874893
Iteration: 2, Func. Count: 25, Neg. LLF: 814.2031914622129
Iteration: 3, Func. Count: 37, Neg. LLF: 92.91981144760841
Iteration: 4, Func. Count: 49, Neg. LLF: 89.10123398979185
Iteration: 5, Func. Count: 61, Neg. LLF: 86.61185483333368
Iteration: 6, Func. Count: 72, Neg. LLF: 95.23403951076696
Iteration: 7, Func. Count: 84, Neg. LLF: 94.1269165618578
Iteration: 8, Func. Count: 96, Neg. LLF: 86.13473562942002
Iteration: 9, Func. Count: 107, Neg. LLF: 85.91358565437938
Iteration: 10, Func. Count: 118, Neg. LLF: 85.90575596849732
Iteration: 11, Func. Count: 129, Neg. LLF: 85.90183540177988
Iteration: 12, Func. Count: 140, Neg. LLF: 85.90140474020056
Iteration: 13, Func. Count: 151, Neg. LLF: 85.90131735985878
Iteration: 14, Func. Count: 162, Neg. LLF: 85.90129282232382
Iteration: 15, Func. Count: 172, Neg. LLF: 85.90129287604135
Optimization terminated successfully (Exit mode 0)
Current function value: 85.90129282232382
Iterations: 15
Function evaluations: 172
Gradient evaluations: 15
Iteration: 1, Func. Count: 13, Neg. LLF: 129.55794297276762
Iteration: 2, Func. Count: 26, Neg. LLF: 516.4597781626273
Iteration: 3, Func. Count: 39, Neg. LLF: 10609296.652554557
Iteration: 4, Func. Count: 53, Neg. LLF: 91.15171421820122
Iteration: 5, Func. Count: 66, Neg. LLF: 85.96416920412813
Iteration: 6, Func. Count: 78, Neg. LLF: 87.18683105969441
Iteration: 7, Func. Count: 91, Neg. LLF: 86.24332780870928
Iteration: 8, Func. Count: 104, Neg. LLF: 85.84526469779063
Iteration: 9, Func. Count: 116, Neg. LLF: 85.74281131905245
Iteration: 10, Func. Count: 128, Neg. LLF: 85.72208685042233
Iteration: 11, Func. Count: 140, Neg. LLF: 85.71406614014262
Iteration: 12, Func. Count: 152, Neg. LLF: 85.71098390841912
Iteration: 13, Func. Count: 164, Neg. LLF: 85.71090063490844
Iteration: 14, Func. Count: 176, Neg. LLF: 85.71086956238108
Iteration: 15, Func. Count: 188, Neg. LLF: 85.71085770630495
Iteration: 16, Func. Count: 200, Neg. LLF: 85.71085620227764
Iteration: 17, Func. Count: 211, Neg. LLF: 85.71085620227136
Optimization terminated successfully (Exit mode 0)
Current function value: 85.71085620227764
Iterations: 17
Function evaluations: 211
Gradient evaluations: 17
Iteration: 1, Func. Count: 14, Neg. LLF: 145.38673597810177
Iteration: 2, Func. Count: 28, Neg. LLF: 1027.9608377459379
Iteration: 3, Func. Count: 42, Neg. LLF: 1639.9629088687443
Iteration: 4, Func. Count: 56, Neg. LLF: 90.89801888169676
Iteration: 5, Func. Count: 71, Neg. LLF: 85.96822868309592
Iteration: 6, Func. Count: 84, Neg. LLF: 87.53505500609337
Iteration: 7, Func. Count: 98, Neg. LLF: 88.10051253511543
Iteration: 8, Func. Count: 112, Neg. LLF: 85.87837292856689
Iteration: 9, Func. Count: 125, Neg. LLF: 85.78703332539249
Iteration: 10, Func. Count: 138, Neg. LLF: 85.766208334233
Iteration: 11, Func. Count: 151, Neg. LLF: 85.71451732425301
Iteration: 12, Func. Count: 164, Neg. LLF: 85.71129719763914
Iteration: 13, Func. Count: 177, Neg. LLF: 85.71095178385555
Iteration: 14, Func. Count: 190, Neg. LLF: 85.71090857181964
Iteration: 15, Func. Count: 203, Neg. LLF: 85.71085628262159
Iteration: 16, Func. Count: 215, Neg. LLF: 85.71085630757098
Optimization terminated successfully (Exit mode 0)
Current function value: 85.71085628262159
Iterations: 16
Function evaluations: 215
Gradient evaluations: 16
Iteration: 1, Func. Count: 15, Neg. LLF: 141.61244416325093
Iteration: 2, Func. Count: 30, Neg. LLF: 497.3562173961737
Iteration: 3, Func. Count: 45, Neg. LLF: 14659.6048573803
Iteration: 4, Func. Count: 60, Neg. LLF: 96.87369184602542
Iteration: 5, Func. Count: 76, Neg. LLF: 85.97920505839488
Iteration: 6, Func. Count: 90, Neg. LLF: 88.55305505273364
Iteration: 7, Func. Count: 106, Neg. LLF: 85.9805414375918
Iteration: 8, Func. Count: 121, Neg. LLF: 85.90546430600102
Iteration: 9, Func. Count: 135, Neg. LLF: 85.86523702776721
Iteration: 10, Func. Count: 149, Neg. LLF: 85.80170986134917
Iteration: 11, Func. Count: 163, Neg. LLF: 85.77668709631624
Iteration: 12, Func. Count: 177, Neg. LLF: 85.75050252364335
Iteration: 13, Func. Count: 191, Neg. LLF: 85.73015426946122
Iteration: 14, Func. Count: 205, Neg. LLF: 85.71426872533095
Iteration: 15, Func. Count: 219, Neg. LLF: 85.71122927868474
Iteration: 16, Func. Count: 233, Neg. LLF: 85.71088718772418
Iteration: 17, Func. Count: 247, Neg. LLF: 85.710856193188
Iteration: 18, Func. Count: 260, Neg. LLF: 85.7108561955727
Optimization terminated successfully (Exit mode 0)
Current function value: 85.710856193188
Iterations: 18
Function evaluations: 260
Gradient evaluations: 18
Iteration: 1, Func. Count: 12, Neg. LLF: 135.88844593437727
Iteration: 2, Func. Count: 25, Neg. LLF: 185.14040489034383
Iteration: 3, Func. Count: 37, Neg. LLF: 782.4597795354023
Iteration: 4, Func. Count: 49, Neg. LLF: 2411.045703342099
Iteration: 5, Func. Count: 61, Neg. LLF: 85.74724169490239
Iteration: 6, Func. Count: 72, Neg. LLF: 91.96104352273463
Iteration: 7, Func. Count: 85, Neg. LLF: 87.47339557207363
Iteration: 8, Func. Count: 97, Neg. LLF: 86.23939925457987
Iteration: 9, Func. Count: 109, Neg. LLF: 85.54450038539068
Iteration: 10, Func. Count: 120, Neg. LLF: 85.54422929687637
Iteration: 11, Func. Count: 131, Neg. LLF: 85.54418817952971
Iteration: 12, Func. Count: 142, Neg. LLF: 85.54418134698898
Iteration: 13, Func. Count: 153, Neg. LLF: 85.54418016129318
Iteration: 14, Func. Count: 163, Neg. LLF: 85.54418013051338
Optimization terminated successfully (Exit mode 0)
Current function value: 85.54418016129318
Iterations: 14
Function evaluations: 163
Gradient evaluations: 14
Iteration: 1, Func. Count: 13, Neg. LLF: 125.89360027998407
Iteration: 2, Func. Count: 27, Neg. LLF: 516.9045003525217
Iteration: 3, Func. Count: 40, Neg. LLF: 87.64728524530517
Iteration: 4, Func. Count: 53, Neg. LLF: 91.4617374987105
Iteration: 5, Func. Count: 67, Neg. LLF: 91.0174231196234
Iteration: 6, Func. Count: 80, Neg. LLF: 115.39156331688648
Iteration: 7, Func. Count: 93, Neg. LLF: 85.6060914153381
Iteration: 8, Func. Count: 105, Neg. LLF: 86.31685933761634
Iteration: 9, Func. Count: 118, Neg. LLF: 85.55082700857776
Iteration: 10, Func. Count: 130, Neg. LLF: 85.54652167571197
Iteration: 11, Func. Count: 142, Neg. LLF: 85.54476717227787
Iteration: 12, Func. Count: 154, Neg. LLF: 85.54420408022392
Iteration: 13, Func. Count: 166, Neg. LLF: 85.54418185338508
Iteration: 14, Func. Count: 178, Neg. LLF: 85.54417989491945
Iteration: 15, Func. Count: 189, Neg. LLF: 85.54417994411166
Optimization terminated successfully (Exit mode 0)
Current function value: 85.54417989491945
Iterations: 15
Function evaluations: 189
Gradient evaluations: 15
Iteration: 1, Func. Count: 14, Neg. LLF: 125.59823199290169
Iteration: 2, Func. Count: 28, Neg. LLF: 7505.349309286825
Iteration: 3, Func. Count: 42, Neg. LLF: 89.50281084690326
Iteration: 4, Func. Count: 57, Neg. LLF: 106.76258531743733
Iteration: 5, Func. Count: 71, Neg. LLF: 85.87176097976793
Iteration: 6, Func. Count: 84, Neg. LLF: 85.70349642248078
Iteration: 7, Func. Count: 97, Neg. LLF: 103.29912191166127
Iteration: 8, Func. Count: 112, Neg. LLF: 87.28226720332987
Iteration: 9, Func. Count: 126, Neg. LLF: 85.54820928378825
Iteration: 10, Func. Count: 139, Neg. LLF: 85.54450897566112
Iteration: 11, Func. Count: 152, Neg. LLF: 85.54419102960343
Iteration: 12, Func. Count: 165, Neg. LLF: 85.54417994006377
Iteration: 13, Func. Count: 177, Neg. LLF: 85.54417994774268
Optimization terminated successfully (Exit mode 0)
Current function value: 85.54417994006377
Iterations: 13
Function evaluations: 177
Gradient evaluations: 13
Iteration: 1, Func. Count: 15, Neg. LLF: 127.0418399940005
Iteration: 2, Func. Count: 30, Neg. LLF: 975.4365154147662
Iteration: 3, Func. Count: 45, Neg. LLF: 91.08554299699088
Iteration: 4, Func. Count: 61, Neg. LLF: 127.95822231242377
Iteration: 5, Func. Count: 76, Neg. LLF: 86.32942814643289
Iteration: 6, Func. Count: 91, Neg. LLF: 85.59093693543896
Iteration: 7, Func. Count: 105, Neg. LLF: 90.57681333631344
Iteration: 8, Func. Count: 121, Neg. LLF: 86.24311842869311
Iteration: 9, Func. Count: 136, Neg. LLF: 85.54803366291495
Iteration: 10, Func. Count: 150, Neg. LLF: 85.54432883789787
Iteration: 11, Func. Count: 164, Neg. LLF: 85.544192364275
Iteration: 12, Func. Count: 178, Neg. LLF: 85.54417992038803
Iteration: 13, Func. Count: 191, Neg. LLF: 85.54417992641615
Optimization terminated successfully (Exit mode 0)
Current function value: 85.54417992038803
Iterations: 13
Function evaluations: 191
Gradient evaluations: 13
Iteration: 1, Func. Count: 16, Neg. LLF: 126.82431820118738
Iteration: 2, Func. Count: 32, Neg. LLF: 8771.466758817453
Iteration: 3, Func. Count: 48, Neg. LLF: 89.94727368654226
Iteration: 4, Func. Count: 65, Neg. LLF: 137.15175001637053
Iteration: 5, Func. Count: 81, Neg. LLF: 85.93532398419106
Iteration: 6, Func. Count: 96, Neg. LLF: 85.58767699096877
Iteration: 7, Func. Count: 111, Neg. LLF: 108.7614597725893
Iteration: 8, Func. Count: 128, Neg. LLF: 88.20400947662422
Iteration: 9, Func. Count: 144, Neg. LLF: 85.54819670350189
Iteration: 10, Func. Count: 160, Neg. LLF: 85.55032261206908
Iteration: 11, Func. Count: 176, Neg. LLF: 85.50865456463004
Iteration: 12, Func. Count: 191, Neg. LLF: 85.50864444601947
Iteration: 13, Func. Count: 205, Neg. LLF: 85.50864444596583
Optimization terminated successfully (Exit mode 0)
Current function value: 85.50864444601947
Iterations: 13
Function evaluations: 205
Gradient evaluations: 13
Iteration: 1, Func. Count: 6, Neg. LLF: 138.3520009162157
Iteration: 2, Func. Count: 14, Neg. LLF: 133.0941347369364
Iteration: 3, Func. Count: 21, Neg. LLF: 550.7439861553112
Iteration: 4, Func. Count: 27, Neg. LLF: 86.57515536725734
Iteration: 5, Func. Count: 32, Neg. LLF: 86.54990807536018
Iteration: 6, Func. Count: 37, Neg. LLF: 86.5322520714795
Iteration: 7, Func. Count: 42, Neg. LLF: 86.53084740165144
Iteration: 8, Func. Count: 47, Neg. LLF: 86.53053833138607
Iteration: 9, Func. Count: 52, Neg. LLF: 86.53051045810419
Iteration: 10, Func. Count: 56, Neg. LLF: 86.53051045811229
Optimization terminated successfully (Exit mode 0)
Current function value: 86.53051045810419
Iterations: 10
Function evaluations: 56
Gradient evaluations: 10
Iteration: 1, Func. Count: 5, Neg. LLF: 128.72347063701605
Iteration: 2, Func. Count: 13, Neg. LLF: 90.49611439563199
Iteration: 3, Func. Count: 18, Neg. LLF: 86.84070829590017
Iteration: 4, Func. Count: 22, Neg. LLF: 86.82809752747842
Iteration: 5, Func. Count: 27, Neg. LLF: 86.78564576816129
Iteration: 6, Func. Count: 31, Neg. LLF: 86.78281915588602
Iteration: 7, Func. Count: 35, Neg. LLF: 86.78271279798135
Iteration: 8, Func. Count: 39, Neg. LLF: 86.78270928620988
Iteration: 9, Func. Count: 42, Neg. LLF: 86.78270928622209
Optimization terminated successfully (Exit mode 0)
Current function value: 86.78270928620988
Iterations: 9
Function evaluations: 42
Gradient evaluations: 9
Iteration: 1, Func. Count: 6, Neg. LLF: 61237447.899900235
Iteration: 2, Func. Count: 13, Neg. LLF: 167.22927584594
Iteration: 3, Func. Count: 20, Neg. LLF: 86.24823071357058
Iteration: 4, Func. Count: 26, Neg. LLF: 86.17899608132274
Iteration: 5, Func. Count: 32, Neg. LLF: 86.15051214207114
Iteration: 6, Func. Count: 38, Neg. LLF: 86.14503073827042
Iteration: 7, Func. Count: 44, Neg. LLF: 86.14343016175957
Iteration: 8, Func. Count: 49, Neg. LLF: 86.14341876702132
Iteration: 9, Func. Count: 53, Neg. LLF: 86.14341876700269
Optimization terminated successfully (Exit mode 0)
Current function value: 86.14341876702132
Iterations: 9
Function evaluations: 53
Gradient evaluations: 9
Iteration: 1, Func. Count: 7, Neg. LLF: 56622376.395171724
Iteration: 2, Func. Count: 15, Neg. LLF: 211.68811662392824
Iteration: 3, Func. Count: 23, Neg. LLF: 86.63494827862394
Iteration: 4, Func. Count: 31, Neg. LLF: 86.17799574732899
Iteration: 5, Func. Count: 37, Neg. LLF: 86.20352109159131
Iteration: 6, Func. Count: 44, Neg. LLF: 86.15616778487241
Iteration: 7, Func. Count: 50, Neg. LLF: 86.1571211998876
Iteration: 8, Func. Count: 57, Neg. LLF: 86.15156382698618
Iteration: 9, Func. Count: 64, Neg. LLF: 86.1440354902135
Iteration: 10, Func. Count: 70, Neg. LLF: 86.14343445153541
Iteration: 11, Func. Count: 76, Neg. LLF: 86.14342000460904
Iteration: 12, Func. Count: 82, Neg. LLF: 86.14341906285058
Optimization terminated successfully (Exit mode 0)
Current function value: 86.14341906285058
Iterations: 12
Function evaluations: 82
Gradient evaluations: 12
Iteration: 1, Func. Count: 8, Neg. LLF: 38262447.17129104
Iteration: 2, Func. Count: 17, Neg. LLF: 92.36437599511197
Iteration: 3, Func. Count: 26, Neg. LLF: 95.42703871426512
Iteration: 4, Func. Count: 34, Neg. LLF: 88.63058157766187
Iteration: 5, Func. Count: 42, Neg. LLF: 87.31705327889253
Iteration: 6, Func. Count: 50, Neg. LLF: 86.99831207263543
Iteration: 7, Func. Count: 58, Neg. LLF: 86.17690481012511
Iteration: 8, Func. Count: 66, Neg. LLF: 86.10682600436378
Iteration: 9, Func. Count: 73, Neg. LLF: 86.10532339334357
Iteration: 10, Func. Count: 80, Neg. LLF: 86.10479865214026
Iteration: 11, Func. Count: 87, Neg. LLF: 86.10469282368959
Iteration: 12, Func. Count: 94, Neg. LLF: 86.10467520316739
Iteration: 13, Func. Count: 101, Neg. LLF: 86.10467299942174
Iteration: 14, Func. Count: 107, Neg. LLF: 86.10467299947082
Optimization terminated successfully (Exit mode 0)
Current function value: 86.10467299942174
Iterations: 14
Function evaluations: 107
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 37589501.533015445
Iteration: 2, Func. Count: 19, Neg. LLF: 90.17806823335681
Iteration: 3, Func. Count: 28, Neg. LLF: 95.91135675667556
Iteration: 4, Func. Count: 37, Neg. LLF: 89.84786348411349
Iteration: 5, Func. Count: 46, Neg. LLF: 89.28908621856353
Iteration: 6, Func. Count: 55, Neg. LLF: 86.84173670996985
Iteration: 7, Func. Count: 64, Neg. LLF: 86.21903120280739
Iteration: 8, Func. Count: 73, Neg. LLF: 86.11204077035138
Iteration: 9, Func. Count: 81, Neg. LLF: 86.0948766805197
Iteration: 10, Func. Count: 89, Neg. LLF: 86.09409151110223
Iteration: 11, Func. Count: 97, Neg. LLF: 86.09276783975002
Iteration: 12, Func. Count: 105, Neg. LLF: 86.09273684287214
Iteration: 13, Func. Count: 113, Neg. LLF: 86.09271683545349
Iteration: 14, Func. Count: 121, Neg. LLF: 86.09270805727701
Iteration: 15, Func. Count: 129, Neg. LLF: 86.09270496720481
Iteration: 16, Func. Count: 136, Neg. LLF: 86.09270496714771
Optimization terminated successfully (Exit mode 0)
Current function value: 86.09270496720481
Iterations: 16
Function evaluations: 136
Gradient evaluations: 16
Iteration: 1, Func. Count: 6, Neg. LLF: 124.34123895013593
Iteration: 2, Func. Count: 15, Neg. LLF: 93.8577540366063
Iteration: 3, Func. Count: 21, Neg. LLF: 91.87663942169365
Iteration: 4, Func. Count: 28, Neg. LLF: 86.86427880079229
Iteration: 5, Func. Count: 34, Neg. LLF: 86.05185638584227
Iteration: 6, Func. Count: 39, Neg. LLF: 86.02729883000421
Iteration: 7, Func. Count: 44, Neg. LLF: 86.02386092618649
Iteration: 8, Func. Count: 49, Neg. LLF: 86.02337992396977
Iteration: 9, Func. Count: 54, Neg. LLF: 86.02337556468927
Iteration: 10, Func. Count: 58, Neg. LLF: 86.0233755646945
Optimization terminated successfully (Exit mode 0)
Current function value: 86.02337556468927
Iterations: 10
Function evaluations: 58
Gradient evaluations: 10
Iteration: 1, Func. Count: 7, Neg. LLF: 504.8334143917998
Iteration: 2, Func. Count: 15, Neg. LLF: 90.94676584197953
Iteration: 3, Func. Count: 23, Neg. LLF: 87.63672141490078
Iteration: 4, Func. Count: 30, Neg. LLF: 86.31574483433567
Iteration: 5, Func. Count: 37, Neg. LLF: 86.06156151500224
Iteration: 6, Func. Count: 43, Neg. LLF: 86.03824784573088
Iteration: 7, Func. Count: 49, Neg. LLF: 86.02530698402774
Iteration: 8, Func. Count: 55, Neg. LLF: 86.02351516987115
Iteration: 9, Func. Count: 61, Neg. LLF: 86.02340329167576
Iteration: 10, Func. Count: 67, Neg. LLF: 86.02338131294877
Iteration: 11, Func. Count: 73, Neg. LLF: 86.02337615318281
Iteration: 12, Func. Count: 78, Neg. LLF: 86.02337617142727
Optimization terminated successfully (Exit mode 0)
Current function value: 86.02337615318281
Iterations: 12
Function evaluations: 78
Gradient evaluations: 12
Iteration: 1, Func. Count: 8, Neg. LLF: 1139.9138502034518
Iteration: 2, Func. Count: 17, Neg. LLF: 89.56395286350426
Iteration: 3, Func. Count: 26, Neg. LLF: 93.45207361403477
Iteration: 4, Func. Count: 35, Neg. LLF: 86.11225550302987
Iteration: 5, Func. Count: 42, Neg. LLF: 86.0591923316147
Iteration: 6, Func. Count: 49, Neg. LLF: 86.03834701856988
Iteration: 7, Func. Count: 56, Neg. LLF: 86.03268140542998
Iteration: 8, Func. Count: 63, Neg. LLF: 86.02597642198008
Iteration: 9, Func. Count: 70, Neg. LLF: 86.02493820772958
Iteration: 10, Func. Count: 77, Neg. LLF: 86.02418949579148
Iteration: 11, Func. Count: 84, Neg. LLF: 86.02399342975444
Iteration: 12, Func. Count: 91, Neg. LLF: 86.02379639386616
Iteration: 13, Func. Count: 98, Neg. LLF: 86.02367160415888
Iteration: 14, Func. Count: 105, Neg. LLF: 86.02342112464656
Iteration: 15, Func. Count: 112, Neg. LLF: 86.02337994671154
Iteration: 16, Func. Count: 119, Neg. LLF: 86.02337582111933
Iteration: 17, Func. Count: 125, Neg. LLF: 86.02337582138667
Optimization terminated successfully (Exit mode 0)
Current function value: 86.02337582111933
Iterations: 17
Function evaluations: 125
Gradient evaluations: 17
Iteration: 1, Func. Count: 9, Neg. LLF: 99847003.99537657
Iteration: 2, Func. Count: 19, Neg. LLF: 98.44175522033798
Iteration: 3, Func. Count: 29, Neg. LLF: 95.04009879385356
Iteration: 4, Func. Count: 39, Neg. LLF: 86.17174804916608
Iteration: 5, Func. Count: 48, Neg. LLF: 88.32988309806967
Iteration: 6, Func. Count: 57, Neg. LLF: 85.8932567521142
Iteration: 7, Func. Count: 65, Neg. LLF: 86.0187259572944
Iteration: 8, Func. Count: 74, Neg. LLF: 85.87935392736132
Iteration: 9, Func. Count: 82, Neg. LLF: 85.85673759522335
Iteration: 10, Func. Count: 90, Neg. LLF: 85.84601716848874
Iteration: 11, Func. Count: 98, Neg. LLF: 85.84343967812573
Iteration: 12, Func. Count: 106, Neg. LLF: 85.84329812212508
Iteration: 13, Func. Count: 114, Neg. LLF: 85.84329019276537
Iteration: 14, Func. Count: 122, Neg. LLF: 85.84328939201234
Optimization terminated successfully (Exit mode 0)
Current function value: 85.84328939201234
Iterations: 14
Function evaluations: 122
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 97735477.03127883
Iteration: 2, Func. Count: 21, Neg. LLF: 93.47613765548608
Iteration: 3, Func. Count: 32, Neg. LLF: 156.9624893581304
Iteration: 4, Func. Count: 43, Neg. LLF: 85.99937684922283
Iteration: 5, Func. Count: 53, Neg. LLF: 86.77680012081156
Iteration: 6, Func. Count: 63, Neg. LLF: 85.79748498748505
Iteration: 7, Func. Count: 72, Neg. LLF: 85.77747675949469
Iteration: 8, Func. Count: 81, Neg. LLF: 85.55961448004393
Iteration: 9, Func. Count: 90, Neg. LLF: 85.36818546951721
Iteration: 10, Func. Count: 99, Neg. LLF: 85.19161841565109
Iteration: 11, Func. Count: 108, Neg. LLF: 85.16863063613067
Iteration: 12, Func. Count: 117, Neg. LLF: 85.14709635680286
Iteration: 13, Func. Count: 126, Neg. LLF: 85.14637539927179
Iteration: 14, Func. Count: 135, Neg. LLF: 85.14614010697441
Iteration: 15, Func. Count: 144, Neg. LLF: 85.14611613036591
Iteration: 16, Func. Count: 153, Neg. LLF: 85.14611526085905
Optimization terminated successfully (Exit mode 0)
Current function value: 85.14611526085905
Iterations: 16
Function evaluations: 153
Gradient evaluations: 16
Iteration: 1, Func. Count: 7, Neg. LLF: 125.48632762620919
Iteration: 2, Func. Count: 17, Neg. LLF: 187.52687230134592
Iteration: 3, Func. Count: 24, Neg. LLF: 116.4081505569626
Iteration: 4, Func. Count: 31, Neg. LLF: 86.09013122489017
Iteration: 5, Func. Count: 37, Neg. LLF: 86.29893190863638
Iteration: 6, Func. Count: 44, Neg. LLF: 86.03990302919652
Iteration: 7, Func. Count: 50, Neg. LLF: 86.028018107223
Iteration: 8, Func. Count: 56, Neg. LLF: 86.02354154625127
Iteration: 9, Func. Count: 62, Neg. LLF: 86.02337937811886
Iteration: 10, Func. Count: 68, Neg. LLF: 86.02337614983215
Iteration: 11, Func. Count: 74, Neg. LLF: 86.02337558764526
Optimization terminated successfully (Exit mode 0)
Current function value: 86.02337558764526
Iterations: 11
Function evaluations: 74
Gradient evaluations: 11
Iteration: 1, Func. Count: 8, Neg. LLF: 30421782.125474624
Iteration: 2, Func. Count: 17, Neg. LLF: 132.26947095430089
Iteration: 3, Func. Count: 26, Neg. LLF: 86.77722552252642
Iteration: 4, Func. Count: 34, Neg. LLF: 86.15639449340426
Iteration: 5, Func. Count: 41, Neg. LLF: 88.40301321604305
Iteration: 6, Func. Count: 49, Neg. LLF: 86.14451046662066
Iteration: 7, Func. Count: 56, Neg. LLF: 86.14343845828242
Iteration: 8, Func. Count: 63, Neg. LLF: 86.14341896210873
Iteration: 9, Func. Count: 69, Neg. LLF: 86.1434189620215
Optimization terminated successfully (Exit mode 0)
Current function value: 86.14341896210873
Iterations: 9
Function evaluations: 69
Gradient evaluations: 9
Iteration: 1, Func. Count: 9, Neg. LLF: 48014552.1133628
Iteration: 2, Func. Count: 19, Neg. LLF: 297.9633692631478
Iteration: 3, Func. Count: 29, Neg. LLF: 90.90351372421081
Iteration: 4, Func. Count: 39, Neg. LLF: 86.55608258087413
Iteration: 5, Func. Count: 49, Neg. LLF: 86.09599959263589
Iteration: 6, Func. Count: 57, Neg. LLF: 86.20108541874602
Iteration: 7, Func. Count: 66, Neg. LLF: 86.08692936873848
Iteration: 8, Func. Count: 74, Neg. LLF: 86.0864759335806
Iteration: 9, Func. Count: 82, Neg. LLF: 86.08631472880047
Iteration: 10, Func. Count: 90, Neg. LLF: 86.08630267647209
Iteration: 11, Func. Count: 97, Neg. LLF: 86.08630267652183
Optimization terminated successfully (Exit mode 0)
Current function value: 86.08630267647209
Iterations: 11
Function evaluations: 97
Gradient evaluations: 11
Iteration: 1, Func. Count: 10, Neg. LLF: 11784102.981573956
Iteration: 2, Func. Count: 20, Neg. LLF: 88.44282328867054
Iteration: 3, Func. Count: 31, Neg. LLF: 93.70609296941537
Iteration: 4, Func. Count: 42, Neg. LLF: 87.3462201391264
Iteration: 5, Func. Count: 52, Neg. LLF: 86.22464604373081
Iteration: 6, Func. Count: 62, Neg. LLF: 85.90045310374013
Iteration: 7, Func. Count: 71, Neg. LLF: 85.89578305314664
Iteration: 8, Func. Count: 80, Neg. LLF: 85.86724280491978
Iteration: 9, Func. Count: 89, Neg. LLF: 85.84587534155928
Iteration: 10, Func. Count: 98, Neg. LLF: 85.84360341957228
Iteration: 11, Func. Count: 107, Neg. LLF: 85.84329028487313
Iteration: 12, Func. Count: 116, Neg. LLF: 85.84328946355754
Optimization terminated successfully (Exit mode 0)
Current function value: 85.84328946355754
Iterations: 12
Function evaluations: 116
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 22357442.245596115
Iteration: 2, Func. Count: 22, Neg. LLF: 90.32437529026694
Iteration: 3, Func. Count: 34, Neg. LLF: 93.79288812235563
Iteration: 4, Func. Count: 45, Neg. LLF: 90.54693407202987
Iteration: 5, Func. Count: 56, Neg. LLF: 86.31811827785113
Iteration: 6, Func. Count: 67, Neg. LLF: 85.83431671511605
Iteration: 7, Func. Count: 77, Neg. LLF: 85.78718160017551
Iteration: 8, Func. Count: 87, Neg. LLF: 85.77485317300584
Iteration: 9, Func. Count: 97, Neg. LLF: 85.66816213587929
Iteration: 10, Func. Count: 107, Neg. LLF: 85.42671570060406
Iteration: 11, Func. Count: 117, Neg. LLF: 85.244862262721
Iteration: 12, Func. Count: 127, Neg. LLF: 85.16685080219254
Iteration: 13, Func. Count: 137, Neg. LLF: 85.14757708788649
Iteration: 14, Func. Count: 147, Neg. LLF: 85.14615057535525
Iteration: 15, Func. Count: 157, Neg. LLF: 85.14612680741023
Iteration: 16, Func. Count: 167, Neg. LLF: 85.14611556966396
Iteration: 17, Func. Count: 177, Neg. LLF: 85.14623185411585
Optimization terminated successfully (Exit mode 0)
Current function value: 85.14611555859462
Iterations: 18
Function evaluations: 179
Gradient evaluations: 17
Iteration: 1, Func. Count: 8, Neg. LLF: 123.97723029999234
Iteration: 2, Func. Count: 19, Neg. LLF: 29501084.228855904
Iteration: 3, Func. Count: 27, Neg. LLF: 1547836.9804693223
Iteration: 4, Func. Count: 35, Neg. LLF: 101.79191505901616
Iteration: 5, Func. Count: 43, Neg. LLF: 86.10352854991113
Iteration: 6, Func. Count: 50, Neg. LLF: 85.94051481068644
Iteration: 7, Func. Count: 57, Neg. LLF: 85.93277472634759
Iteration: 8, Func. Count: 64, Neg. LLF: 85.92778163654748
Iteration: 9, Func. Count: 71, Neg. LLF: 85.92299959079459
Iteration: 10, Func. Count: 78, Neg. LLF: 85.9228495629708
Iteration: 11, Func. Count: 85, Neg. LLF: 85.92284481567668
Iteration: 12, Func. Count: 92, Neg. LLF: 85.92284436777673
Optimization terminated successfully (Exit mode 0)
Current function value: 85.92284436777673
Iterations: 12
Function evaluations: 92
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 30488960.640627064
Iteration: 2, Func. Count: 19, Neg. LLF: 148.05369367998586
Iteration: 3, Func. Count: 29, Neg. LLF: 86.68081802710746
Iteration: 4, Func. Count: 38, Neg. LLF: 86.15833079764252
Iteration: 5, Func. Count: 46, Neg. LLF: 88.238459184583
Iteration: 6, Func. Count: 55, Neg. LLF: 86.1453022714479
Iteration: 7, Func. Count: 63, Neg. LLF: 86.14344561573648
Iteration: 8, Func. Count: 71, Neg. LLF: 86.14341904764262
Iteration: 9, Func. Count: 78, Neg. LLF: 86.14341904752354
Optimization terminated successfully (Exit mode 0)
Current function value: 86.14341904764262
Iterations: 9
Function evaluations: 78
Gradient evaluations: 9
Iteration: 1, Func. Count: 10, Neg. LLF: 49515472.18016905
Iteration: 2, Func. Count: 21, Neg. LLF: 439.75976296691186
Iteration: 3, Func. Count: 32, Neg. LLF: 95.14328299324052
Iteration: 4, Func. Count: 43, Neg. LLF: 86.596675129434
Iteration: 5, Func. Count: 54, Neg. LLF: 86.09749230537666
Iteration: 6, Func. Count: 63, Neg. LLF: 86.20690455043544
Iteration: 7, Func. Count: 73, Neg. LLF: 86.08723877428064
Iteration: 8, Func. Count: 82, Neg. LLF: 86.08651942635424
Iteration: 9, Func. Count: 91, Neg. LLF: 86.08634569782211
Iteration: 10, Func. Count: 100, Neg. LLF: 86.08630272157374
Iteration: 11, Func. Count: 108, Neg. LLF: 86.08630272180041
Optimization terminated successfully (Exit mode 0)
Current function value: 86.08630272157374
Iterations: 11
Function evaluations: 108
Gradient evaluations: 11
Iteration: 1, Func. Count: 11, Neg. LLF: 11827356.222266281
Iteration: 2, Func. Count: 22, Neg. LLF: 88.39065153774888
Iteration: 3, Func. Count: 34, Neg. LLF: 94.2785359846777
Iteration: 4, Func. Count: 46, Neg. LLF: 86.70686733800974
Iteration: 5, Func. Count: 57, Neg. LLF: 86.41473542012702
Iteration: 6, Func. Count: 68, Neg. LLF: 85.89890594138157
Iteration: 7, Func. Count: 78, Neg. LLF: 85.91351933508106
Iteration: 8, Func. Count: 89, Neg. LLF: 85.86658176766606
Iteration: 9, Func. Count: 99, Neg. LLF: 85.8469603862465
Iteration: 10, Func. Count: 109, Neg. LLF: 85.84386889531174
Iteration: 11, Func. Count: 119, Neg. LLF: 85.84333347101895
Iteration: 12, Func. Count: 129, Neg. LLF: 85.84329009218506
Iteration: 13, Func. Count: 139, Neg. LLF: 85.84328940675623
Optimization terminated successfully (Exit mode 0)
Current function value: 85.84328940675623
Iterations: 13
Function evaluations: 139
Gradient evaluations: 13
Iteration: 1, Func. Count: 12, Neg. LLF: 23039123.0767802
Iteration: 2, Func. Count: 24, Neg. LLF: 94.97292987015214
Iteration: 3, Func. Count: 37, Neg. LLF: 90.79376703363563
Iteration: 4, Func. Count: 50, Neg. LLF: 88.70441875051031
Iteration: 5, Func. Count: 62, Neg. LLF: 86.37776516926866
Iteration: 6, Func. Count: 74, Neg. LLF: 85.79883389664232
Iteration: 7, Func. Count: 85, Neg. LLF: 85.78679502947597
Iteration: 8, Func. Count: 96, Neg. LLF: 85.77722308426603
Iteration: 9, Func. Count: 107, Neg. LLF: 85.56030950915236
Iteration: 10, Func. Count: 118, Neg. LLF: 85.27943466849808
Iteration: 11, Func. Count: 129, Neg. LLF: 85.17272778731582
Iteration: 12, Func. Count: 140, Neg. LLF: 85.14814069031726
Iteration: 13, Func. Count: 151, Neg. LLF: 85.14652557102308
Iteration: 14, Func. Count: 162, Neg. LLF: 85.14625944211618
Iteration: 15, Func. Count: 173, Neg. LLF: 85.1460885567042
Iteration: 16, Func. Count: 184, Neg. LLF: 85.14610353120835
Iteration: 17, Func. Count: 195, Neg. LLF: 85.1461063283926
Iteration: 18, Func. Count: 216, Neg. LLF: 85.14911637411474
Iteration: 19, Func. Count: 229, Neg. LLF: 85.14626870464258
Iteration: 20, Func. Count: 242, Neg. LLF: 85.14612875232206
Iteration: 21, Func. Count: 254, Neg. LLF: 85.14611618408003
Iteration: 22, Func. Count: 266, Neg. LLF: 85.1461152907752
Iteration: 23, Func. Count: 276, Neg. LLF: 85.14611526709206
Optimization terminated successfully (Exit mode 0)
Current function value: 85.1461152907752
Iterations: 24
Function evaluations: 276
Gradient evaluations: 23
Iteration: 1, Func. Count: 5, Neg. LLF: 140.9445589368247
Iteration: 2, Func. Count: 12, Neg. LLF: 141.06640143326354
Iteration: 3, Func. Count: 18, Neg. LLF: 86.56545456841597
Iteration: 4, Func. Count: 22, Neg. LLF: 86.56715241661719
Iteration: 5, Func. Count: 27, Neg. LLF: 86.48119140154701
Iteration: 6, Func. Count: 32, Neg. LLF: 86.46421519892107
Iteration: 7, Func. Count: 36, Neg. LLF: 86.46419762398446
Iteration: 8, Func. Count: 39, Neg. LLF: 86.46419762399003
Optimization terminated successfully (Exit mode 0)
Current function value: 86.46419762398446
Iterations: 8
Function evaluations: 39
Gradient evaluations: 8
Iteration: 1, Func. Count: 6, Neg. LLF: 45820060.161800265
Iteration: 2, Func. Count: 13, Neg. LLF: 119.01027807489805
Iteration: 3, Func. Count: 20, Neg. LLF: 124.81520774653521
Iteration: 4, Func. Count: 27, Neg. LLF: 85.96964272734319
Iteration: 5, Func. Count: 32, Neg. LLF: 85.96489014657053
Iteration: 6, Func. Count: 37, Neg. LLF: 85.96391646348133
Iteration: 7, Func. Count: 42, Neg. LLF: 85.96385940890121
Iteration: 8, Func. Count: 47, Neg. LLF: 85.96385769410527
Iteration: 9, Func. Count: 51, Neg. LLF: 85.96385769411846
Optimization terminated successfully (Exit mode 0)
Current function value: 85.96385769410527
Iterations: 9
Function evaluations: 51
Gradient evaluations: 9
Iteration: 1, Func. Count: 7, Neg. LLF: 41731266.81809388
Iteration: 2, Func. Count: 15, Neg. LLF: 96.26760754641296
Iteration: 3, Func. Count: 23, Neg. LLF: 96.30452007979483
Iteration: 4, Func. Count: 30, Neg. LLF: 118.37130707422509
Iteration: 5, Func. Count: 37, Neg. LLF: 86.02006180641254
Iteration: 6, Func. Count: 43, Neg. LLF: 85.98126319562344
Iteration: 7, Func. Count: 49, Neg. LLF: 85.96760587739297
Iteration: 8, Func. Count: 55, Neg. LLF: 85.96439125180596
Iteration: 9, Func. Count: 61, Neg. LLF: 85.96386857528334
Iteration: 10, Func. Count: 67, Neg. LLF: 85.96385843538253
Iteration: 11, Func. Count: 73, Neg. LLF: 85.96385773080388
Optimization terminated successfully (Exit mode 0)
Current function value: 85.96385773080388
Iterations: 11
Function evaluations: 73
Gradient evaluations: 11
Iteration: 1, Func. Count: 8, Neg. LLF: 96525008.22902925
Iteration: 2, Func. Count: 17, Neg. LLF: 113.85438140972897
Iteration: 3, Func. Count: 26, Neg. LLF: 87.39950108371326
Iteration: 4, Func. Count: 34, Neg. LLF: 86.66307482945689
Iteration: 5, Func. Count: 42, Neg. LLF: 85.60434362785767
Iteration: 6, Func. Count: 49, Neg. LLF: 85.58191647216334
Iteration: 7, Func. Count: 56, Neg. LLF: 85.53102346439712
Iteration: 8, Func. Count: 63, Neg. LLF: 85.5267809490361
Iteration: 9, Func. Count: 70, Neg. LLF: 85.5262776298866
Iteration: 10, Func. Count: 77, Neg. LLF: 85.52609976883289
Iteration: 11, Func. Count: 84, Neg. LLF: 85.52608903913118
Iteration: 12, Func. Count: 91, Neg. LLF: 85.52608850594737
Optimization terminated successfully (Exit mode 0)
Current function value: 85.52608850594737
Iterations: 12
Function evaluations: 91
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 83482881.42917486
Iteration: 2, Func. Count: 19, Neg. LLF: 108.89054016801654
Iteration: 3, Func. Count: 29, Neg. LLF: 91.69067167441148
Iteration: 4, Func. Count: 38, Neg. LLF: 88.0439621815745
Iteration: 5, Func. Count: 47, Neg. LLF: 86.44116455040006
Iteration: 6, Func. Count: 56, Neg. LLF: 85.55607462732512
Iteration: 7, Func. Count: 64, Neg. LLF: 85.54201045423534
Iteration: 8, Func. Count: 72, Neg. LLF: 85.54122305599823
Iteration: 9, Func. Count: 81, Neg. LLF: 85.52095999452253
Iteration: 10, Func. Count: 89, Neg. LLF: 85.48574236035554
Iteration: 11, Func. Count: 97, Neg. LLF: 85.46227461861909
Iteration: 12, Func. Count: 105, Neg. LLF: 85.4571744500397
Iteration: 13, Func. Count: 114, Neg. LLF: 85.38175627599698
Iteration: 14, Func. Count: 122, Neg. LLF: 85.37508332394256
Iteration: 15, Func. Count: 130, Neg. LLF: 85.375071077464
Iteration: 16, Func. Count: 139, Neg. LLF: 85.37502581322366
Iteration: 17, Func. Count: 146, Neg. LLF: 85.37502580538455
Optimization terminated successfully (Exit mode 0)
Current function value: 85.37502581322366
Iterations: 17
Function evaluations: 146
Gradient evaluations: 17
Iteration: 1, Func. Count: 6, Neg. LLF: 156.34476423645972
Iteration: 2, Func. Count: 14, Neg. LLF: 131.6422302380812
Iteration: 3, Func. Count: 21, Neg. LLF: 86.93489428361161
Iteration: 4, Func. Count: 27, Neg. LLF: 86.77863421245928
Iteration: 5, Func. Count: 33, Neg. LLF: 86.55644859886117
Iteration: 6, Func. Count: 39, Neg. LLF: 86.35806888709622
Iteration: 7, Func. Count: 45, Neg. LLF: 86.348297427413
Iteration: 8, Func. Count: 50, Neg. LLF: 86.34777090069775
Iteration: 9, Func. Count: 55, Neg. LLF: 86.34774520898792
Iteration: 10, Func. Count: 59, Neg. LLF: 86.34774520898048
Optimization terminated successfully (Exit mode 0)
Current function value: 86.34774520898792
Iterations: 10
Function evaluations: 59
Gradient evaluations: 10
Iteration: 1, Func. Count: 7, Neg. LLF: 9199371.920017768
Iteration: 2, Func. Count: 15, Neg. LLF: 94.68616498785032
Iteration: 3, Func. Count: 22, Neg. LLF: 114.45790384230354
Iteration: 4, Func. Count: 29, Neg. LLF: 85.92930852325983
Iteration: 5, Func. Count: 36, Neg. LLF: 85.52801105083273
Iteration: 6, Func. Count: 42, Neg. LLF: 85.96380201512696
Iteration: 7, Func. Count: 49, Neg. LLF: 85.52805055803563
Iteration: 8, Func. Count: 56, Neg. LLF: 85.45545052793805
Iteration: 9, Func. Count: 63, Neg. LLF: 85.44011810443533
Iteration: 10, Func. Count: 69, Neg. LLF: 85.44008797139286
Iteration: 11, Func. Count: 75, Neg. LLF: 85.44008717528057
Optimization terminated successfully (Exit mode 0)
Current function value: 85.44008717528057
Iterations: 11
Function evaluations: 75
Gradient evaluations: 11
Iteration: 1, Func. Count: 8, Neg. LLF: 9323048.158379205
Iteration: 2, Func. Count: 17, Neg. LLF: 101.56269220236712
Iteration: 3, Func. Count: 25, Neg. LLF: 169.62696453168485
Iteration: 4, Func. Count: 33, Neg. LLF: 171.40051098168007
Iteration: 5, Func. Count: 41, Neg. LLF: 87.4937062926498
Iteration: 6, Func. Count: 49, Neg. LLF: 94.24538038315184
Iteration: 7, Func. Count: 57, Neg. LLF: 85.60063610404112
Iteration: 8, Func. Count: 65, Neg. LLF: 85.36743838344118
Iteration: 9, Func. Count: 72, Neg. LLF: 85.31413832637209
Iteration: 10, Func. Count: 79, Neg. LLF: 85.32102735148166
Iteration: 11, Func. Count: 87, Neg. LLF: 85.27695868452163
Iteration: 12, Func. Count: 94, Neg. LLF: 85.27443735798799
Iteration: 13, Func. Count: 101, Neg. LLF: 85.2725615473495
Iteration: 14, Func. Count: 108, Neg. LLF: 85.27250870133129
Iteration: 15, Func. Count: 115, Neg. LLF: 85.27250539906909
Iteration: 16, Func. Count: 121, Neg. LLF: 85.27250539901847
Optimization terminated successfully (Exit mode 0)
Current function value: 85.27250539906909
Iterations: 16
Function evaluations: 121
Gradient evaluations: 16
Iteration: 1, Func. Count: 9, Neg. LLF: 9792879.056244
Iteration: 2, Func. Count: 19, Neg. LLF: 86.15417216190602
Iteration: 3, Func. Count: 28, Neg. LLF: 102.86784216336667
Iteration: 4, Func. Count: 37, Neg. LLF: 1059893.4706619242
Iteration: 5, Func. Count: 46, Neg. LLF: 85.6482759327433
Iteration: 6, Func. Count: 55, Neg. LLF: 85.22033505466837
Iteration: 7, Func. Count: 64, Neg. LLF: 84.74578740840522
Iteration: 8, Func. Count: 72, Neg. LLF: 84.93695691856038
Iteration: 9, Func. Count: 81, Neg. LLF: 87.02375594832795
Iteration: 10, Func. Count: 90, Neg. LLF: 84.87394340634559
Iteration: 11, Func. Count: 99, Neg. LLF: 84.59745830791597
Iteration: 12, Func. Count: 107, Neg. LLF: 84.590266888061
Iteration: 13, Func. Count: 115, Neg. LLF: 84.58934666091507
Iteration: 14, Func. Count: 123, Neg. LLF: 84.58886769898476
Iteration: 15, Func. Count: 131, Neg. LLF: 84.58883662750101
Iteration: 16, Func. Count: 139, Neg. LLF: 84.58882943662286
Iteration: 17, Func. Count: 146, Neg. LLF: 84.58882943667291
Optimization terminated successfully (Exit mode 0)
Current function value: 84.58882943662286
Iterations: 17
Function evaluations: 146
Gradient evaluations: 17
Iteration: 1, Func. Count: 10, Neg. LLF: 11836091.137166128
Iteration: 2, Func. Count: 21, Neg. LLF: 86.0642379183128
Iteration: 3, Func. Count: 31, Neg. LLF: 106.281730829027
Iteration: 4, Func. Count: 41, Neg. LLF: 107.6035352566852
Iteration: 5, Func. Count: 51, Neg. LLF: 93.14867762246352
Iteration: 6, Func. Count: 61, Neg. LLF: 88.27530264422812
Iteration: 7, Func. Count: 71, Neg. LLF: 85.723951675622
Iteration: 8, Func. Count: 81, Neg. LLF: 86.00995301112141
Iteration: 9, Func. Count: 91, Neg. LLF: 84.62748227222323
Iteration: 10, Func. Count: 100, Neg. LLF: 84.39617324590922
Iteration: 11, Func. Count: 109, Neg. LLF: 84.38618221091232
Iteration: 12, Func. Count: 118, Neg. LLF: 84.37791158658051
Iteration: 13, Func. Count: 127, Neg. LLF: 84.37557100892923
Iteration: 14, Func. Count: 136, Neg. LLF: 84.37507078832752
Iteration: 15, Func. Count: 145, Neg. LLF: 84.37490918866155
Iteration: 16, Func. Count: 154, Neg. LLF: 84.37489719280202
Iteration: 17, Func. Count: 163, Neg. LLF: 84.37489361865701
Iteration: 18, Func. Count: 171, Neg. LLF: 84.37489361860138
Optimization terminated successfully (Exit mode 0)
Current function value: 84.37489361865701
Iterations: 18
Function evaluations: 171
Gradient evaluations: 18
Iteration: 1, Func. Count: 7, Neg. LLF: 129.5199400313981
Iteration: 2, Func. Count: 16, Neg. LLF: 120.3486888468501
Iteration: 3, Func. Count: 24, Neg. LLF: 86.32086780250243
Iteration: 4, Func. Count: 31, Neg. LLF: 86.19062840575036
Iteration: 5, Func. Count: 38, Neg. LLF: 86.03962564217089
Iteration: 6, Func. Count: 44, Neg. LLF: 86.0273278302864
Iteration: 7, Func. Count: 50, Neg. LLF: 86.02392373814585
Iteration: 8, Func. Count: 56, Neg. LLF: 86.02337023260769
Iteration: 9, Func. Count: 62, Neg. LLF: 86.02326264115275
Iteration: 10, Func. Count: 68, Neg. LLF: 86.02325913619711
Iteration: 11, Func. Count: 73, Neg. LLF: 86.02325913617953
Optimization terminated successfully (Exit mode 0)
Current function value: 86.02325913619711
Iterations: 11
Function evaluations: 73
Gradient evaluations: 11
Iteration: 1, Func. Count: 8, Neg. LLF: 8996649.839003557
Iteration: 2, Func. Count: 17, Neg. LLF: 94.42077238430375
Iteration: 3, Func. Count: 25, Neg. LLF: 113.71084586506691
Iteration: 4, Func. Count: 33, Neg. LLF: 85.83705885032609
Iteration: 5, Func. Count: 41, Neg. LLF: 85.52319261920705
Iteration: 6, Func. Count: 48, Neg. LLF: 85.89684197845625
Iteration: 7, Func. Count: 56, Neg. LLF: 85.50695770232639
Iteration: 8, Func. Count: 64, Neg. LLF: 85.44341653750348
Iteration: 9, Func. Count: 71, Neg. LLF: 85.44014624649311
Iteration: 10, Func. Count: 78, Neg. LLF: 85.44008995990386
Iteration: 11, Func. Count: 85, Neg. LLF: 85.44008716774204
Iteration: 12, Func. Count: 91, Neg. LLF: 85.44008716774326
Optimization terminated successfully (Exit mode 0)
Current function value: 85.44008716774204
Iterations: 12
Function evaluations: 91
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 6543046.668468434
Iteration: 2, Func. Count: 19, Neg. LLF: 104.6892322414332
Iteration: 3, Func. Count: 29, Neg. LLF: 193.86124754209024
Iteration: 4, Func. Count: 39, Neg. LLF: 86.12588095576315
Iteration: 5, Func. Count: 48, Neg. LLF: 86.0991518944925
Iteration: 6, Func. Count: 57, Neg. LLF: 86.14448887376096
Iteration: 7, Func. Count: 66, Neg. LLF: 86.02069992623026
Iteration: 8, Func. Count: 75, Neg. LLF: 85.2817243893765
Iteration: 9, Func. Count: 83, Neg. LLF: 85.27495973309317
Iteration: 10, Func. Count: 91, Neg. LLF: 85.27270956132725
Iteration: 11, Func. Count: 99, Neg. LLF: 85.27255557027438
Iteration: 12, Func. Count: 107, Neg. LLF: 85.27251119926724
Iteration: 13, Func. Count: 115, Neg. LLF: 85.27250624782825
Iteration: 14, Func. Count: 123, Neg. LLF: 85.27250531925482
Optimization terminated successfully (Exit mode 0)
Current function value: 85.27250531925482
Iterations: 14
Function evaluations: 123
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 9530735.766256383
Iteration: 2, Func. Count: 21, Neg. LLF: 6538131.795492126
Iteration: 3, Func. Count: 32, Neg. LLF: 98.43964188476322
Iteration: 4, Func. Count: 42, Neg. LLF: 89.30544973040615
Iteration: 5, Func. Count: 52, Neg. LLF: 85.02719458793143
Iteration: 6, Func. Count: 61, Neg. LLF: 85.0914962023789
Iteration: 7, Func. Count: 71, Neg. LLF: 86.26903366025603
Iteration: 8, Func. Count: 82, Neg. LLF: 85.16722168350378
Iteration: 9, Func. Count: 92, Neg. LLF: 84.66936619424708
Iteration: 10, Func. Count: 102, Neg. LLF: 84.59521722776533
Iteration: 11, Func. Count: 111, Neg. LLF: 84.59197196506533
Iteration: 12, Func. Count: 120, Neg. LLF: 84.58885996989457
Iteration: 13, Func. Count: 129, Neg. LLF: 84.5888314834022
Iteration: 14, Func. Count: 138, Neg. LLF: 84.58882963954865
Iteration: 15, Func. Count: 147, Neg. LLF: 84.58882905147404
Optimization terminated successfully (Exit mode 0)
Current function value: 84.58882905147404
Iterations: 15
Function evaluations: 147
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 9694592.54598013
Iteration: 2, Func. Count: 23, Neg. LLF: 237.40897621584216
Iteration: 3, Func. Count: 34, Neg. LLF: 90.20474849069758
Iteration: 4, Func. Count: 45, Neg. LLF: 87.79096587537951
Iteration: 5, Func. Count: 56, Neg. LLF: 85.17838265231866
Iteration: 6, Func. Count: 66, Neg. LLF: 84.69419930477322
Iteration: 7, Func. Count: 76, Neg. LLF: 86.41736354089717
Iteration: 8, Func. Count: 88, Neg. LLF: 85.53817966214312
Iteration: 9, Func. Count: 99, Neg. LLF: 85.15125039682201
Iteration: 10, Func. Count: 110, Neg. LLF: 84.41778957953228
Iteration: 11, Func. Count: 120, Neg. LLF: 84.41454193824447
Iteration: 12, Func. Count: 130, Neg. LLF: 84.38348914373465
Iteration: 13, Func. Count: 140, Neg. LLF: 84.37879185011847
Iteration: 14, Func. Count: 150, Neg. LLF: 84.374955101236
Iteration: 15, Func. Count: 160, Neg. LLF: 84.374917183258
Iteration: 16, Func. Count: 170, Neg. LLF: 84.374894994676
Iteration: 17, Func. Count: 180, Neg. LLF: 84.37489361098557
Iteration: 18, Func. Count: 189, Neg. LLF: 84.37489361092994
Optimization terminated successfully (Exit mode 0)
Current function value: 84.37489361098557
Iterations: 18
Function evaluations: 189
Gradient evaluations: 18
Iteration: 1, Func. Count: 8, Neg. LLF: 124.16514044014166
Iteration: 2, Func. Count: 18, Neg. LLF: 117.77623342111406
Iteration: 3, Func. Count: 27, Neg. LLF: 86.47596909820207
Iteration: 4, Func. Count: 35, Neg. LLF: 86.02992627758013
Iteration: 5, Func. Count: 42, Neg. LLF: 86.15028569606457
Iteration: 6, Func. Count: 50, Neg. LLF: 86.02403227741664
Iteration: 7, Func. Count: 57, Neg. LLF: 86.02417636026794
Iteration: 8, Func. Count: 65, Neg. LLF: 86.0233361107839
Iteration: 9, Func. Count: 72, Neg. LLF: 86.02326291590147
Iteration: 10, Func. Count: 79, Neg. LLF: 86.02325915006794
Iteration: 11, Func. Count: 85, Neg. LLF: 86.02325923437627
Optimization terminated successfully (Exit mode 0)
Current function value: 86.02325915006794
Iterations: 11
Function evaluations: 85
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 8904131.832280582
Iteration: 2, Func. Count: 19, Neg. LLF: 94.20004986805134
Iteration: 3, Func. Count: 28, Neg. LLF: 111.19339923975961
Iteration: 4, Func. Count: 37, Neg. LLF: 85.75978407456834
Iteration: 5, Func. Count: 46, Neg. LLF: 85.52388995472249
Iteration: 6, Func. Count: 54, Neg. LLF: 86.51408281648051
Iteration: 7, Func. Count: 63, Neg. LLF: 85.45914576341964
Iteration: 8, Func. Count: 71, Neg. LLF: 85.44262305434968
Iteration: 9, Func. Count: 79, Neg. LLF: 85.44021126663661
Iteration: 10, Func. Count: 87, Neg. LLF: 85.44010005693237
Iteration: 11, Func. Count: 95, Neg. LLF: 85.44008763982316
Iteration: 12, Func. Count: 103, Neg. LLF: 85.44008717919426
Optimization terminated successfully (Exit mode 0)
Current function value: 85.44008717919426
Iterations: 12
Function evaluations: 103
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 7195372.551046925
Iteration: 2, Func. Count: 21, Neg. LLF: 91.40988310403874
Iteration: 3, Func. Count: 32, Neg. LLF: 140.33016191080608
Iteration: 4, Func. Count: 43, Neg. LLF: 86.48907255452237
Iteration: 5, Func. Count: 53, Neg. LLF: 86.39746285943274
Iteration: 6, Func. Count: 63, Neg. LLF: 90.84069853363539
Iteration: 7, Func. Count: 73, Neg. LLF: 85.72781945318327
Iteration: 8, Func. Count: 83, Neg. LLF: 85.31559150539123
Iteration: 9, Func. Count: 92, Neg. LLF: 85.29120872108737
Iteration: 10, Func. Count: 101, Neg. LLF: 85.27627214918797
Iteration: 11, Func. Count: 110, Neg. LLF: 85.27296420560027
Iteration: 12, Func. Count: 119, Neg. LLF: 85.27259856906016
Iteration: 13, Func. Count: 128, Neg. LLF: 85.27252612229631
Iteration: 14, Func. Count: 137, Neg. LLF: 85.27250553607955
Iteration: 15, Func. Count: 145, Neg. LLF: 85.27250553601533
Optimization terminated successfully (Exit mode 0)
Current function value: 85.27250553607955
Iterations: 15
Function evaluations: 145
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 9471751.34693855
Iteration: 2, Func. Count: 23, Neg. LLF: 6568553.044295695
Iteration: 3, Func. Count: 35, Neg. LLF: 96.46068908441754
Iteration: 4, Func. Count: 46, Neg. LLF: 89.40261585167322
Iteration: 5, Func. Count: 57, Neg. LLF: 85.07457909217699
Iteration: 6, Func. Count: 67, Neg. LLF: 85.08609408503139
Iteration: 7, Func. Count: 78, Neg. LLF: 85.8496036723995
Iteration: 8, Func. Count: 89, Neg. LLF: 84.65944508759449
Iteration: 9, Func. Count: 99, Neg. LLF: 84.76513674679236
Iteration: 10, Func. Count: 110, Neg. LLF: 85.9919159504383
Iteration: 11, Func. Count: 121, Neg. LLF: 84.59065482353334
Iteration: 12, Func. Count: 131, Neg. LLF: 84.58937618675608
Iteration: 13, Func. Count: 141, Neg. LLF: 84.58884684682417
Iteration: 14, Func. Count: 151, Neg. LLF: 84.5888294289722
Iteration: 15, Func. Count: 160, Neg. LLF: 84.58882942884296
Optimization terminated successfully (Exit mode 0)
Current function value: 84.5888294289722
Iterations: 15
Function evaluations: 160
Gradient evaluations: 15
Iteration: 1, Func. Count: 12, Neg. LLF: 11488127.065258184
Iteration: 2, Func. Count: 25, Neg. LLF: 5208025.375822993
Iteration: 3, Func. Count: 38, Neg. LLF: 90.33353294800857
Iteration: 4, Func. Count: 50, Neg. LLF: 100.64161340278642
Iteration: 5, Func. Count: 62, Neg. LLF: 87.42275647470252
Iteration: 6, Func. Count: 74, Neg. LLF: 86.14740887232279
Iteration: 7, Func. Count: 86, Neg. LLF: 91.47927626921214
Iteration: 8, Func. Count: 98, Neg. LLF: 85.62719189749248
Iteration: 9, Func. Count: 110, Neg. LLF: 85.83242900478196
Iteration: 10, Func. Count: 122, Neg. LLF: 85.20479821760539
Iteration: 11, Func. Count: 134, Neg. LLF: 84.73736031095325
Iteration: 12, Func. Count: 145, Neg. LLF: 85.37737867562825
Iteration: 13, Func. Count: 157, Neg. LLF: 84.72785978218832
Iteration: 14, Func. Count: 169, Neg. LLF: 84.41864248149919
Iteration: 15, Func. Count: 180, Neg. LLF: 84.37646988973583
Iteration: 16, Func. Count: 191, Neg. LLF: 84.37512417752156
Iteration: 17, Func. Count: 202, Neg. LLF: 84.37494337726629
Iteration: 18, Func. Count: 213, Neg. LLF: 84.37489462200071
Iteration: 19, Func. Count: 224, Neg. LLF: 84.37489357339183
Iteration: 20, Func. Count: 234, Neg. LLF: 84.37489357342686
Optimization terminated successfully (Exit mode 0)
Current function value: 84.37489357339183
Iterations: 20
Function evaluations: 234
Gradient evaluations: 20
Iteration: 1, Func. Count: 9, Neg. LLF: 139.2544169699828
Iteration: 2, Func. Count: 20, Neg. LLF: 126.50410125529935
Iteration: 3, Func. Count: 30, Neg. LLF: 90.24151749376425
Iteration: 4, Func. Count: 39, Neg. LLF: 87.16784144527756
Iteration: 5, Func. Count: 48, Neg. LLF: 85.94967699135671
Iteration: 6, Func. Count: 56, Neg. LLF: 85.93777577188234
Iteration: 7, Func. Count: 65, Neg. LLF: 86.04262376625361
Iteration: 8, Func. Count: 74, Neg. LLF: 85.91742240128437
Iteration: 9, Func. Count: 82, Neg. LLF: 85.9166093138456
Iteration: 10, Func. Count: 90, Neg. LLF: 85.91633141032848
Iteration: 11, Func. Count: 98, Neg. LLF: 85.9163133856825
Iteration: 12, Func. Count: 105, Neg. LLF: 85.91631338563934
Optimization terminated successfully (Exit mode 0)
Current function value: 85.9163133856825
Iterations: 12
Function evaluations: 105
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 8894792.312430706
Iteration: 2, Func. Count: 21, Neg. LLF: 93.7461715853187
Iteration: 3, Func. Count: 31, Neg. LLF: 111.15239534024093
Iteration: 4, Func. Count: 41, Neg. LLF: 85.66076984817751
Iteration: 5, Func. Count: 50, Neg. LLF: 85.64793449402329
Iteration: 6, Func. Count: 60, Neg. LLF: 87.46477572494233
Iteration: 7, Func. Count: 70, Neg. LLF: 85.47412373898734
Iteration: 8, Func. Count: 79, Neg. LLF: 85.44258957543425
Iteration: 9, Func. Count: 88, Neg. LLF: 85.44016018951021
Iteration: 10, Func. Count: 97, Neg. LLF: 85.44009010314474
Iteration: 11, Func. Count: 106, Neg. LLF: 85.44008727204678
Iteration: 12, Func. Count: 114, Neg. LLF: 85.44008727210283
Optimization terminated successfully (Exit mode 0)
Current function value: 85.44008727204678
Iterations: 12
Function evaluations: 114
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 7259960.377380298
Iteration: 2, Func. Count: 23, Neg. LLF: 90.87444347674297
Iteration: 3, Func. Count: 35, Neg. LLF: 130.2592557880723
Iteration: 4, Func. Count: 47, Neg. LLF: 86.79124659303598
Iteration: 5, Func. Count: 58, Neg. LLF: 86.6268380667566
Iteration: 6, Func. Count: 69, Neg. LLF: 91.66507002779434
Iteration: 7, Func. Count: 80, Neg. LLF: 85.62759493383206
Iteration: 8, Func. Count: 90, Neg. LLF: 85.55874922205031
Iteration: 9, Func. Count: 101, Neg. LLF: 85.98463801678484
Iteration: 10, Func. Count: 112, Neg. LLF: 85.28661677733412
Iteration: 11, Func. Count: 122, Neg. LLF: 85.27598488068622
Iteration: 12, Func. Count: 132, Neg. LLF: 85.27300312329655
Iteration: 13, Func. Count: 142, Neg. LLF: 85.27255834083292
Iteration: 14, Func. Count: 152, Neg. LLF: 85.27251002170037
Iteration: 15, Func. Count: 162, Neg. LLF: 85.27250608829353
Iteration: 16, Func. Count: 172, Neg. LLF: 85.27250532093716
Optimization terminated successfully (Exit mode 0)
Current function value: 85.27250532093716
Iterations: 16
Function evaluations: 172
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 9536761.52476643
Iteration: 2, Func. Count: 25, Neg. LLF: 6577456.942582044
Iteration: 3, Func. Count: 38, Neg. LLF: 95.94054352609744
Iteration: 4, Func. Count: 50, Neg. LLF: 89.44451357379462
Iteration: 5, Func. Count: 62, Neg. LLF: 85.05565077076481
Iteration: 6, Func. Count: 73, Neg. LLF: 85.10437870156753
Iteration: 7, Func. Count: 85, Neg. LLF: 85.92159775315244
Iteration: 8, Func. Count: 97, Neg. LLF: 84.76068955256842
Iteration: 9, Func. Count: 109, Neg. LLF: 84.7632746182102
Iteration: 10, Func. Count: 121, Neg. LLF: 84.63188732098642
Iteration: 11, Func. Count: 133, Neg. LLF: 84.59044071627697
Iteration: 12, Func. Count: 144, Neg. LLF: 84.58890223193843
Iteration: 13, Func. Count: 155, Neg. LLF: 84.58884312910577
Iteration: 14, Func. Count: 166, Neg. LLF: 84.58883157696107
Iteration: 15, Func. Count: 177, Neg. LLF: 84.5888291292105
Iteration: 16, Func. Count: 187, Neg. LLF: 84.58882912923478
Optimization terminated successfully (Exit mode 0)
Current function value: 84.5888291292105
Iterations: 16
Function evaluations: 187
Gradient evaluations: 16
Iteration: 1, Func. Count: 13, Neg. LLF: 11577167.621719295
Iteration: 2, Func. Count: 27, Neg. LLF: 5223653.601128144
Iteration: 3, Func. Count: 41, Neg. LLF: 90.1606047890925
Iteration: 4, Func. Count: 54, Neg. LLF: 99.65633715274137
Iteration: 5, Func. Count: 67, Neg. LLF: 87.54890619401935
Iteration: 6, Func. Count: 80, Neg. LLF: 85.97622914509083
Iteration: 7, Func. Count: 93, Neg. LLF: 91.8795739685137
Iteration: 8, Func. Count: 106, Neg. LLF: 85.73022519165322
Iteration: 9, Func. Count: 119, Neg. LLF: 85.96350999960072
Iteration: 10, Func. Count: 132, Neg. LLF: 85.2461206675217
Iteration: 11, Func. Count: 145, Neg. LLF: 84.73718874973626
Iteration: 12, Func. Count: 157, Neg. LLF: 85.09178703062243
Iteration: 13, Func. Count: 170, Neg. LLF: 84.79409613045571
Iteration: 14, Func. Count: 183, Neg. LLF: 84.38868127608679
Iteration: 15, Func. Count: 195, Neg. LLF: 84.37642576494693
Iteration: 16, Func. Count: 207, Neg. LLF: 84.37494388042245
Iteration: 17, Func. Count: 219, Neg. LLF: 84.37490190289971
Iteration: 18, Func. Count: 231, Neg. LLF: 84.37489512261547
Iteration: 19, Func. Count: 243, Neg. LLF: 84.37489359809243
Iteration: 20, Func. Count: 254, Neg. LLF: 84.3748935980372
Optimization terminated successfully (Exit mode 0)
Current function value: 84.37489359809243
Iterations: 20
Function evaluations: 254
Gradient evaluations: 20
Iteration: 1, Func. Count: 6, Neg. LLF: 134.68976108147444
Iteration: 2, Func. Count: 14, Neg. LLF: 134.44746409771506
Iteration: 3, Func. Count: 21, Neg. LLF: 91.8045530936511
Iteration: 4, Func. Count: 27, Neg. LLF: 85.77265164482675
Iteration: 5, Func. Count: 32, Neg. LLF: 87.6616407420079
Iteration: 6, Func. Count: 38, Neg. LLF: 85.74064490889933
Iteration: 7, Func. Count: 43, Neg. LLF: 85.74037379204323
Iteration: 8, Func. Count: 48, Neg. LLF: 85.74037254229202
Iteration: 9, Func. Count: 52, Neg. LLF: 85.74037254230916
Optimization terminated successfully (Exit mode 0)
Current function value: 85.74037254229202
Iterations: 9
Function evaluations: 52
Gradient evaluations: 9
Iteration: 1, Func. Count: 7, Neg. LLF: 242.68299276363737
Iteration: 2, Func. Count: 15, Neg. LLF: 88.99667146522913
Iteration: 3, Func. Count: 23, Neg. LLF: 86.48765491537424
Iteration: 4, Func. Count: 30, Neg. LLF: 85.8141595450266
Iteration: 5, Func. Count: 36, Neg. LLF: 85.7730212208334
Iteration: 6, Func. Count: 42, Neg. LLF: 85.74337156974644
Iteration: 7, Func. Count: 48, Neg. LLF: 85.74069752926604
Iteration: 8, Func. Count: 54, Neg. LLF: 85.74037812980143
Iteration: 9, Func. Count: 60, Neg. LLF: 85.74037258698502
Iteration: 10, Func. Count: 65, Neg. LLF: 85.74037261362638
Optimization terminated successfully (Exit mode 0)
Current function value: 85.74037258698502
Iterations: 10
Function evaluations: 65
Gradient evaluations: 10
Iteration: 1, Func. Count: 8, Neg. LLF: 172.45900804234955
Iteration: 2, Func. Count: 17, Neg. LLF: 108.14433939374709
Iteration: 3, Func. Count: 26, Neg. LLF: 89.71703230405281
Iteration: 4, Func. Count: 35, Neg. LLF: 85.73039222796781
Iteration: 5, Func. Count: 42, Neg. LLF: 85.57607900493547
Iteration: 6, Func. Count: 49, Neg. LLF: 85.86608300714279
Iteration: 7, Func. Count: 57, Neg. LLF: 85.54018970582916
Iteration: 8, Func. Count: 64, Neg. LLF: 85.5363417225895
Iteration: 9, Func. Count: 71, Neg. LLF: 85.53626497224951
Iteration: 10, Func. Count: 78, Neg. LLF: 85.53625927480327
Iteration: 11, Func. Count: 84, Neg. LLF: 85.53625927477364
Optimization terminated successfully (Exit mode 0)
Current function value: 85.53625927480327
Iterations: 11
Function evaluations: 84
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 255374.36317388085
Iteration: 2, Func. Count: 19, Neg. LLF: 14090.931355670602
Iteration: 3, Func. Count: 29, Neg. LLF: 90.13947469093942
Iteration: 4, Func. Count: 38, Neg. LLF: 94.04300774920958
Iteration: 5, Func. Count: 47, Neg. LLF: 87.94593079306455
Iteration: 6, Func. Count: 56, Neg. LLF: 85.42558496038676
Iteration: 7, Func. Count: 64, Neg. LLF: 85.3774425008944
Iteration: 8, Func. Count: 72, Neg. LLF: 85.36834953226742
Iteration: 9, Func. Count: 80, Neg. LLF: 85.36503585762232
Iteration: 10, Func. Count: 88, Neg. LLF: 85.36454972646195
Iteration: 11, Func. Count: 96, Neg. LLF: 85.36452317695375
Iteration: 12, Func. Count: 104, Neg. LLF: 85.36452223784556
Optimization terminated successfully (Exit mode 0)
Current function value: 85.36452223784556
Iterations: 12
Function evaluations: 104
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 61044123.295512505
Iteration: 2, Func. Count: 21, Neg. LLF: 98.2013170488917
Iteration: 3, Func. Count: 32, Neg. LLF: 103.6195410436203
Iteration: 4, Func. Count: 43, Neg. LLF: 85.65546631465794
Iteration: 5, Func. Count: 53, Neg. LLF: 85.3895663052894
Iteration: 6, Func. Count: 62, Neg. LLF: 85.53620074200462
Iteration: 7, Func. Count: 72, Neg. LLF: 85.36335988111283
Iteration: 8, Func. Count: 81, Neg. LLF: 85.36283535860383
Iteration: 9, Func. Count: 90, Neg. LLF: 85.36276632326958
Iteration: 10, Func. Count: 99, Neg. LLF: 85.36275276879549
Iteration: 11, Func. Count: 108, Neg. LLF: 85.36275014673419
Iteration: 12, Func. Count: 117, Neg. LLF: 85.36274916604799
Optimization terminated successfully (Exit mode 0)
Current function value: 85.36274916604799
Iterations: 12
Function evaluations: 117
Gradient evaluations: 12
Iteration: 1, Func. Count: 7, Neg. LLF: 147.69186518255697
Iteration: 2, Func. Count: 16, Neg. LLF: 127.51081024269561
Iteration: 3, Func. Count: 24, Neg. LLF: 89.41190494250725
Iteration: 4, Func. Count: 31, Neg. LLF: 85.76321337324073
Iteration: 5, Func. Count: 37, Neg. LLF: 85.79834290111144
Iteration: 6, Func. Count: 44, Neg. LLF: 85.78901606360351
Iteration: 7, Func. Count: 51, Neg. LLF: 85.71995506832818
Iteration: 8, Func. Count: 57, Neg. LLF: 85.71980715534609
Iteration: 9, Func. Count: 63, Neg. LLF: 85.71980546675304
Iteration: 10, Func. Count: 68, Neg. LLF: 85.71980546675091
Optimization terminated successfully (Exit mode 0)
Current function value: 85.71980546675304
Iterations: 10
Function evaluations: 68
Gradient evaluations: 10
Iteration: 1, Func. Count: 8, Neg. LLF: 174.79336902273016
Iteration: 2, Func. Count: 17, Neg. LLF: 89.64976388596753
Iteration: 3, Func. Count: 25, Neg. LLF: 87.30706196834605
Iteration: 4, Func. Count: 33, Neg. LLF: 86.29011812922205
Iteration: 5, Func. Count: 41, Neg. LLF: 85.94238388115114
Iteration: 6, Func. Count: 49, Neg. LLF: 86.05333966944666
Iteration: 7, Func. Count: 57, Neg. LLF: 85.81375291686129
Iteration: 8, Func. Count: 64, Neg. LLF: 85.74984966464599
Iteration: 9, Func. Count: 71, Neg. LLF: 85.72664115505313
Iteration: 10, Func. Count: 78, Neg. LLF: 85.72079170435309
Iteration: 11, Func. Count: 85, Neg. LLF: 85.71986162085514
Iteration: 12, Func. Count: 92, Neg. LLF: 85.71981238057114
Iteration: 13, Func. Count: 99, Neg. LLF: 85.71980649228647
Iteration: 14, Func. Count: 106, Neg. LLF: 85.71980556796012
Optimization terminated successfully (Exit mode 0)
Current function value: 85.71980556796012
Iterations: 14
Function evaluations: 106
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 137.29053092576714
Iteration: 2, Func. Count: 19, Neg. LLF: 120.5969418990515
Iteration: 3, Func. Count: 29, Neg. LLF: 92.32127779579841
Iteration: 4, Func. Count: 39, Neg. LLF: 85.76032642716775
Iteration: 5, Func. Count: 47, Neg. LLF: 85.6072367457222
Iteration: 6, Func. Count: 55, Neg. LLF: 85.93883205501466
Iteration: 7, Func. Count: 64, Neg. LLF: 85.56104138999498
Iteration: 8, Func. Count: 72, Neg. LLF: 85.55764140891033
Iteration: 9, Func. Count: 81, Neg. LLF: 85.54725195942845
Iteration: 10, Func. Count: 89, Neg. LLF: 85.53793401409392
Iteration: 11, Func. Count: 97, Neg. LLF: 85.5365024832271
Iteration: 12, Func. Count: 105, Neg. LLF: 85.53626163237662
Iteration: 13, Func. Count: 113, Neg. LLF: 85.53625921860389
Iteration: 14, Func. Count: 120, Neg. LLF: 85.53625921858992
Optimization terminated successfully (Exit mode 0)
Current function value: 85.53625921860389
Iterations: 14
Function evaluations: 120
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 156.61722128832545
Iteration: 2, Func. Count: 21, Neg. LLF: 735.3572616164389
Iteration: 3, Func. Count: 31, Neg. LLF: 96.93666235002802
Iteration: 4, Func. Count: 41, Neg. LLF: 97.20399729259894
Iteration: 5, Func. Count: 51, Neg. LLF: 87.04681014473576
Iteration: 6, Func. Count: 61, Neg. LLF: 87.5165824754978
Iteration: 7, Func. Count: 72, Neg. LLF: 88.38651228083262
Iteration: 8, Func. Count: 82, Neg. LLF: 85.29181086986004
Iteration: 9, Func. Count: 92, Neg. LLF: 85.19448538808702
Iteration: 10, Func. Count: 102, Neg. LLF: 84.77283705696985
Iteration: 11, Func. Count: 111, Neg. LLF: 84.68881998855132
Iteration: 12, Func. Count: 120, Neg. LLF: 84.6731937664569
Iteration: 13, Func. Count: 130, Neg. LLF: 84.59754170806625
Iteration: 14, Func. Count: 139, Neg. LLF: 84.59523742581392
Iteration: 15, Func. Count: 148, Neg. LLF: 84.5940028895231
Iteration: 16, Func. Count: 157, Neg. LLF: 84.59123862156693
Iteration: 17, Func. Count: 166, Neg. LLF: 84.58919883456755
Iteration: 18, Func. Count: 175, Neg. LLF: 84.58886633726802
Iteration: 19, Func. Count: 184, Neg. LLF: 84.5888312265728
Iteration: 20, Func. Count: 193, Neg. LLF: 84.58882908254952
Iteration: 21, Func. Count: 201, Neg. LLF: 84.58882908254698
Optimization terminated successfully (Exit mode 0)
Current function value: 84.58882908254952
Iterations: 21
Function evaluations: 201
Gradient evaluations: 21
Iteration: 1, Func. Count: 11, Neg. LLF: 9936364.299877703
Iteration: 2, Func. Count: 23, Neg. LLF: 98.47796256312735
Iteration: 3, Func. Count: 34, Neg. LLF: 176.50290244388506
Iteration: 4, Func. Count: 45, Neg. LLF: 131.27638215670154
Iteration: 5, Func. Count: 56, Neg. LLF: 90.79645894654936
Iteration: 6, Func. Count: 67, Neg. LLF: 89.44632884241304
Iteration: 7, Func. Count: 78, Neg. LLF: 88.64120125898307
Iteration: 8, Func. Count: 89, Neg. LLF: 86.59502755218666
Iteration: 9, Func. Count: 100, Neg. LLF: 85.13132783675744
Iteration: 10, Func. Count: 111, Neg. LLF: 84.63341508225898
Iteration: 11, Func. Count: 121, Neg. LLF: 84.52142411706541
Iteration: 12, Func. Count: 131, Neg. LLF: 84.4576962248746
Iteration: 13, Func. Count: 141, Neg. LLF: 84.46989958566532
Iteration: 14, Func. Count: 152, Neg. LLF: 84.41561733244477
Iteration: 15, Func. Count: 163, Neg. LLF: 84.37643715743171
Iteration: 16, Func. Count: 173, Neg. LLF: 84.37517230464672
Iteration: 17, Func. Count: 183, Neg. LLF: 84.37491628399847
Iteration: 18, Func. Count: 193, Neg. LLF: 84.37489442777593
Iteration: 19, Func. Count: 203, Neg. LLF: 84.3748935478783
Optimization terminated successfully (Exit mode 0)
Current function value: 84.3748935478783
Iterations: 19
Function evaluations: 203
Gradient evaluations: 19
Iteration: 1, Func. Count: 8, Neg. LLF: 149.5557099791468
Iteration: 2, Func. Count: 18, Neg. LLF: 117.20506076996885
Iteration: 3, Func. Count: 27, Neg. LLF: 86.29054377842593
Iteration: 4, Func. Count: 35, Neg. LLF: 85.85244906698048
Iteration: 5, Func. Count: 43, Neg. LLF: 85.80029889865637
Iteration: 6, Func. Count: 51, Neg. LLF: 85.70008485442214
Iteration: 7, Func. Count: 59, Neg. LLF: 85.67954019828227
Iteration: 8, Func. Count: 66, Neg. LLF: 85.67946895403395
Iteration: 9, Func. Count: 73, Neg. LLF: 85.67946264009292
Iteration: 10, Func. Count: 79, Neg. LLF: 85.67946264009412
Optimization terminated successfully (Exit mode 0)
Current function value: 85.67946264009292
Iterations: 10
Function evaluations: 79
Gradient evaluations: 10
Iteration: 1, Func. Count: 9, Neg. LLF: 174.13467281421038
Iteration: 2, Func. Count: 19, Neg. LLF: 88.50127981144003
Iteration: 3, Func. Count: 28, Neg. LLF: 87.89307007116304
Iteration: 4, Func. Count: 37, Neg. LLF: 86.17178052918838
Iteration: 5, Func. Count: 46, Neg. LLF: 85.84851306872261
Iteration: 6, Func. Count: 54, Neg. LLF: 85.90697537742193
Iteration: 7, Func. Count: 63, Neg. LLF: 85.80288479912157
Iteration: 8, Func. Count: 71, Neg. LLF: 85.76391722351792
Iteration: 9, Func. Count: 79, Neg. LLF: 85.70359231560553
Iteration: 10, Func. Count: 87, Neg. LLF: 85.68536314383013
Iteration: 11, Func. Count: 95, Neg. LLF: 85.69069379212057
Iteration: 12, Func. Count: 104, Neg. LLF: 85.67955774221383
Iteration: 13, Func. Count: 112, Neg. LLF: 85.67947061755551
Iteration: 14, Func. Count: 120, Neg. LLF: 85.67946324244893
Iteration: 15, Func. Count: 128, Neg. LLF: 85.67946213716198
Iteration: 16, Func. Count: 135, Neg. LLF: 85.6794621672395
Optimization terminated successfully (Exit mode 0)
Current function value: 85.67946213716198
Iterations: 16
Function evaluations: 135
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 137.28823055443166
Iteration: 2, Func. Count: 21, Neg. LLF: 150.57471108746202
Iteration: 3, Func. Count: 32, Neg. LLF: 92.75776737892637
Iteration: 4, Func. Count: 43, Neg. LLF: 85.77593558007554
Iteration: 5, Func. Count: 52, Neg. LLF: 85.5670868058967
Iteration: 6, Func. Count: 61, Neg. LLF: 85.54055445527666
Iteration: 7, Func. Count: 70, Neg. LLF: 85.53001106264314
Iteration: 8, Func. Count: 79, Neg. LLF: 85.58891769492912
Iteration: 9, Func. Count: 89, Neg. LLF: 85.52379817334474
Iteration: 10, Func. Count: 98, Neg. LLF: 85.50833862814017
Iteration: 11, Func. Count: 107, Neg. LLF: 85.47530112852124
Iteration: 12, Func. Count: 116, Neg. LLF: 85.44918638223217
Iteration: 13, Func. Count: 125, Neg. LLF: 85.42217336294713
Iteration: 14, Func. Count: 134, Neg. LLF: 85.39560915350674
Iteration: 15, Func. Count: 143, Neg. LLF: 85.3481453875233
Iteration: 16, Func. Count: 152, Neg. LLF: 85.31034706854317
Iteration: 17, Func. Count: 161, Neg. LLF: 85.2817174671111
Iteration: 18, Func. Count: 170, Neg. LLF: 85.27457550207937
Iteration: 19, Func. Count: 179, Neg. LLF: 85.27329387911053
Iteration: 20, Func. Count: 188, Neg. LLF: 85.27251291750173
Iteration: 21, Func. Count: 197, Neg. LLF: 85.27250581013716
Iteration: 22, Func. Count: 206, Neg. LLF: 85.27250532202875
Optimization terminated successfully (Exit mode 0)
Current function value: 85.27250532202875
Iterations: 22
Function evaluations: 206
Gradient evaluations: 22
Iteration: 1, Func. Count: 11, Neg. LLF: 144.768479142589
Iteration: 2, Func. Count: 23, Neg. LLF: 7567.081043456066
Iteration: 3, Func. Count: 35, Neg. LLF: 96.89641166668974
Iteration: 4, Func. Count: 46, Neg. LLF: 185.42364375379904
Iteration: 5, Func. Count: 57, Neg. LLF: 89.29899075081418
Iteration: 6, Func. Count: 68, Neg. LLF: 86.30752713380238
Iteration: 7, Func. Count: 79, Neg. LLF: 84.86229596481425
Iteration: 8, Func. Count: 89, Neg. LLF: 84.78334235416267
Iteration: 9, Func. Count: 100, Neg. LLF: 84.88791565235016
Iteration: 10, Func. Count: 111, Neg. LLF: 85.69477560832013
Iteration: 11, Func. Count: 122, Neg. LLF: 84.52338729853354
Iteration: 12, Func. Count: 133, Neg. LLF: 84.46981124981842
Iteration: 13, Func. Count: 143, Neg. LLF: 84.4264861135825
Iteration: 14, Func. Count: 153, Neg. LLF: 84.41607260887054
Iteration: 15, Func. Count: 163, Neg. LLF: 84.41228740872144
Iteration: 16, Func. Count: 173, Neg. LLF: 84.41206706591547
Iteration: 17, Func. Count: 183, Neg. LLF: 84.41205576020918
Iteration: 18, Func. Count: 193, Neg. LLF: 84.41205501151369
Optimization terminated successfully (Exit mode 0)
Current function value: 84.41205501151369
Iterations: 18
Function evaluations: 193
Gradient evaluations: 18
Iteration: 1, Func. Count: 12, Neg. LLF: 9786597.187189292
Iteration: 2, Func. Count: 25, Neg. LLF: 99.47126810182075
Iteration: 3, Func. Count: 37, Neg. LLF: 124.65917954993071
Iteration: 4, Func. Count: 49, Neg. LLF: 155.03225464681577
Iteration: 5, Func. Count: 61, Neg. LLF: 89.45733631260862
Iteration: 6, Func. Count: 73, Neg. LLF: 86.99810012196183
Iteration: 7, Func. Count: 85, Neg. LLF: 85.5576726825878
Iteration: 8, Func. Count: 97, Neg. LLF: 86.10719958086324
Iteration: 9, Func. Count: 109, Neg. LLF: 85.66576410851046
Iteration: 10, Func. Count: 121, Neg. LLF: 85.08524108930649
Iteration: 11, Func. Count: 133, Neg. LLF: 84.0240284571811
Iteration: 12, Func. Count: 144, Neg. LLF: 84.5608395047148
Iteration: 13, Func. Count: 156, Neg. LLF: 83.94236220596171
Iteration: 14, Func. Count: 167, Neg. LLF: 83.94157492528873
Iteration: 15, Func. Count: 179, Neg. LLF: 83.9370740160977
Iteration: 16, Func. Count: 190, Neg. LLF: 83.93700076869708
Iteration: 17, Func. Count: 201, Neg. LLF: 83.93699766216059
Iteration: 18, Func. Count: 211, Neg. LLF: 83.93699766212973
Optimization terminated successfully (Exit mode 0)
Current function value: 83.93699766216059
Iterations: 18
Function evaluations: 211
Gradient evaluations: 18
Iteration: 1, Func. Count: 9, Neg. LLF: 143.27908337597623
Iteration: 2, Func. Count: 20, Neg. LLF: 119.07832840081839
Iteration: 3, Func. Count: 30, Neg. LLF: 86.05592023793145
Iteration: 4, Func. Count: 39, Neg. LLF: 86.0926458566173
Iteration: 5, Func. Count: 48, Neg. LLF: 86.24891271110519
Iteration: 6, Func. Count: 57, Neg. LLF: 85.98067901137041
Iteration: 7, Func. Count: 66, Neg. LLF: 85.67984094037396
Iteration: 8, Func. Count: 74, Neg. LLF: 85.67968929175939
Iteration: 9, Func. Count: 82, Neg. LLF: 85.67950798871505
Iteration: 10, Func. Count: 90, Neg. LLF: 85.67946844257065
Iteration: 11, Func. Count: 98, Neg. LLF: 85.67946232132932
Iteration: 12, Func. Count: 105, Neg. LLF: 85.67946240891385
Optimization terminated successfully (Exit mode 0)
Current function value: 85.67946232132932
Iterations: 12
Function evaluations: 105
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 169.44647356185416
Iteration: 2, Func. Count: 21, Neg. LLF: 88.23952435092316
Iteration: 3, Func. Count: 31, Neg. LLF: 88.57139845165888
Iteration: 4, Func. Count: 41, Neg. LLF: 86.59297935018714
Iteration: 5, Func. Count: 51, Neg. LLF: 85.96071709668767
Iteration: 6, Func. Count: 61, Neg. LLF: 86.03392304150786
Iteration: 7, Func. Count: 71, Neg. LLF: 85.77012494414429
Iteration: 8, Func. Count: 80, Neg. LLF: 85.70654841679045
Iteration: 9, Func. Count: 89, Neg. LLF: 85.69958936482952
Iteration: 10, Func. Count: 98, Neg. LLF: 85.68850174820875
Iteration: 11, Func. Count: 107, Neg. LLF: 85.68585305303232
Iteration: 12, Func. Count: 116, Neg. LLF: 85.68171452808251
Iteration: 13, Func. Count: 125, Neg. LLF: 85.68040395510698
Iteration: 14, Func. Count: 134, Neg. LLF: 85.67946544569438
Iteration: 15, Func. Count: 143, Neg. LLF: 85.67946219222347
Iteration: 16, Func. Count: 151, Neg. LLF: 85.6794622222828
Optimization terminated successfully (Exit mode 0)
Current function value: 85.67946219222347
Iterations: 16
Function evaluations: 151
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 131.91011439583832
Iteration: 2, Func. Count: 23, Neg. LLF: 228.61048796712615
Iteration: 3, Func. Count: 35, Neg. LLF: 89.93162781157288
Iteration: 4, Func. Count: 46, Neg. LLF: 85.84022769747378
Iteration: 5, Func. Count: 57, Neg. LLF: 85.55033228070681
Iteration: 6, Func. Count: 67, Neg. LLF: 85.53153048336772
Iteration: 7, Func. Count: 77, Neg. LLF: 85.51192244439936
Iteration: 8, Func. Count: 87, Neg. LLF: 85.50647605356964
Iteration: 9, Func. Count: 97, Neg. LLF: 85.47227854609694
Iteration: 10, Func. Count: 107, Neg. LLF: 85.44763129686388
Iteration: 11, Func. Count: 117, Neg. LLF: 85.42182994482297
Iteration: 12, Func. Count: 127, Neg. LLF: 85.39885485345768
Iteration: 13, Func. Count: 137, Neg. LLF: 85.31084370128151
Iteration: 14, Func. Count: 147, Neg. LLF: 85.30012706290393
Iteration: 15, Func. Count: 157, Neg. LLF: 85.28328130916208
Iteration: 16, Func. Count: 167, Neg. LLF: 85.28595069654142
Iteration: 17, Func. Count: 178, Neg. LLF: 85.2728483247677
Iteration: 18, Func. Count: 188, Neg. LLF: 85.27253834096919
Iteration: 19, Func. Count: 198, Neg. LLF: 85.2725059291295
Iteration: 20, Func. Count: 208, Neg. LLF: 85.27250532052622
Optimization terminated successfully (Exit mode 0)
Current function value: 85.27250532052622
Iterations: 20
Function evaluations: 208
Gradient evaluations: 20
Iteration: 1, Func. Count: 12, Neg. LLF: 142.42441600772045
Iteration: 2, Func. Count: 25, Neg. LLF: 19417.829762785324
Iteration: 3, Func. Count: 38, Neg. LLF: 96.40670814384706
Iteration: 4, Func. Count: 50, Neg. LLF: 180.71999168890363
Iteration: 5, Func. Count: 62, Neg. LLF: 87.57747563794125
Iteration: 6, Func. Count: 74, Neg. LLF: 86.2820118016864
Iteration: 7, Func. Count: 86, Neg. LLF: 84.7807570945876
Iteration: 8, Func. Count: 97, Neg. LLF: 84.72810269344238
Iteration: 9, Func. Count: 109, Neg. LLF: 84.9061432938525
Iteration: 10, Func. Count: 121, Neg. LLF: 86.74438123981403
Iteration: 11, Func. Count: 133, Neg. LLF: 84.44028610781764
Iteration: 12, Func. Count: 144, Neg. LLF: 84.47551559839059
Iteration: 13, Func. Count: 156, Neg. LLF: 84.41931894035423
Iteration: 14, Func. Count: 167, Neg. LLF: 84.41373164279803
Iteration: 15, Func. Count: 178, Neg. LLF: 84.41208181228733
Iteration: 16, Func. Count: 189, Neg. LLF: 84.41205533697992
Iteration: 17, Func. Count: 199, Neg. LLF: 84.41205533705076
Optimization terminated successfully (Exit mode 0)
Current function value: 84.41205533697992
Iterations: 17
Function evaluations: 199
Gradient evaluations: 17
Iteration: 1, Func. Count: 13, Neg. LLF: 9659898.5443435
Iteration: 2, Func. Count: 27, Neg. LLF: 99.03212069039976
Iteration: 3, Func. Count: 40, Neg. LLF: 132.40057509697974
Iteration: 4, Func. Count: 53, Neg. LLF: 133.69766530644623
Iteration: 5, Func. Count: 66, Neg. LLF: 88.34567739993143
Iteration: 6, Func. Count: 79, Neg. LLF: 88.18224109725315
Iteration: 7, Func. Count: 92, Neg. LLF: 85.43599861204564
Iteration: 8, Func. Count: 105, Neg. LLF: 85.56440037879261
Iteration: 9, Func. Count: 118, Neg. LLF: 85.58996174896743
Iteration: 10, Func. Count: 131, Neg. LLF: 85.07160027313003
Iteration: 11, Func. Count: 144, Neg. LLF: 84.03672764862706
Iteration: 12, Func. Count: 156, Neg. LLF: 84.25861634226185
Iteration: 13, Func. Count: 169, Neg. LLF: 83.94025492936103
Iteration: 14, Func. Count: 181, Neg. LLF: 83.93716703015778
Iteration: 15, Func. Count: 193, Neg. LLF: 83.93708550856103
Iteration: 16, Func. Count: 205, Neg. LLF: 83.93699853189014
Iteration: 17, Func. Count: 217, Neg. LLF: 83.9369976845464
Optimization terminated successfully (Exit mode 0)
Current function value: 83.9369976845464
Iterations: 17
Function evaluations: 217
Gradient evaluations: 17
Iteration: 1, Func. Count: 10, Neg. LLF: 144.71574584117937
Iteration: 2, Func. Count: 22, Neg. LLF: 119.76826983143329
Iteration: 3, Func. Count: 33, Neg. LLF: 86.07092068814623
Iteration: 4, Func. Count: 43, Neg. LLF: 85.93573979111414
Iteration: 5, Func. Count: 53, Neg. LLF: 86.62669394512271
Iteration: 6, Func. Count: 63, Neg. LLF: 86.04008373075865
Iteration: 7, Func. Count: 73, Neg. LLF: 85.68043372470798
Iteration: 8, Func. Count: 82, Neg. LLF: 85.67974070762249
Iteration: 9, Func. Count: 91, Neg. LLF: 85.67957453334189
Iteration: 10, Func. Count: 100, Neg. LLF: 85.67947531687435
Iteration: 11, Func. Count: 109, Neg. LLF: 85.67946295395845
Iteration: 12, Func. Count: 118, Neg. LLF: 85.67946216045513
Optimization terminated successfully (Exit mode 0)
Current function value: 85.67946216045513
Iterations: 12
Function evaluations: 118
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 171.0926720409762
Iteration: 2, Func. Count: 23, Neg. LLF: 88.1812198563547
Iteration: 3, Func. Count: 34, Neg. LLF: 89.56322831598231
Iteration: 4, Func. Count: 45, Neg. LLF: 86.70114960415272
Iteration: 5, Func. Count: 56, Neg. LLF: 85.99043149003907
Iteration: 6, Func. Count: 67, Neg. LLF: 86.081613397747
Iteration: 7, Func. Count: 78, Neg. LLF: 85.76888207017173
Iteration: 8, Func. Count: 88, Neg. LLF: 85.7176974489431
Iteration: 9, Func. Count: 98, Neg. LLF: 85.70531878137164
Iteration: 10, Func. Count: 108, Neg. LLF: 85.69171410672986
Iteration: 11, Func. Count: 118, Neg. LLF: 85.6963632010736
Iteration: 12, Func. Count: 129, Neg. LLF: 85.6817625098641
Iteration: 13, Func. Count: 139, Neg. LLF: 85.67971870340195
Iteration: 14, Func. Count: 149, Neg. LLF: 85.679474016405
Iteration: 15, Func. Count: 159, Neg. LLF: 85.67946296017455
Iteration: 16, Func. Count: 169, Neg. LLF: 85.6794621816501
Optimization terminated successfully (Exit mode 0)
Current function value: 85.6794621816501
Iterations: 16
Function evaluations: 169
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 132.06593634472378
Iteration: 2, Func. Count: 25, Neg. LLF: 260.78322227043196
Iteration: 3, Func. Count: 38, Neg. LLF: 89.65806532567521
Iteration: 4, Func. Count: 50, Neg. LLF: 85.87144985163084
Iteration: 5, Func. Count: 62, Neg. LLF: 85.54374864663632
Iteration: 6, Func. Count: 73, Neg. LLF: 85.53156567762377
Iteration: 7, Func. Count: 84, Neg. LLF: 85.54174326268003
Iteration: 8, Func. Count: 96, Neg. LLF: 85.50478890712084
Iteration: 9, Func. Count: 107, Neg. LLF: 85.46982516950494
Iteration: 10, Func. Count: 118, Neg. LLF: 85.45039745190702
Iteration: 11, Func. Count: 129, Neg. LLF: 85.45214462263763
Iteration: 12, Func. Count: 141, Neg. LLF: 85.41886247081084
Iteration: 13, Func. Count: 152, Neg. LLF: 85.36757035503807
Iteration: 14, Func. Count: 163, Neg. LLF: 85.3044618755284
Iteration: 15, Func. Count: 174, Neg. LLF: 85.30226518079095
Iteration: 16, Func. Count: 186, Neg. LLF: 85.2748219389546
Iteration: 17, Func. Count: 197, Neg. LLF: 85.27295884970587
Iteration: 18, Func. Count: 208, Neg. LLF: 85.27264674483537
Iteration: 19, Func. Count: 219, Neg. LLF: 85.27254884185736
Iteration: 20, Func. Count: 230, Neg. LLF: 85.27250898282357
Iteration: 21, Func. Count: 241, Neg. LLF: 85.27250540948684
Iteration: 22, Func. Count: 251, Neg. LLF: 85.2725054094627
Optimization terminated successfully (Exit mode 0)
Current function value: 85.27250540948684
Iterations: 22
Function evaluations: 251
Gradient evaluations: 22
Iteration: 1, Func. Count: 13, Neg. LLF: 142.9348094375766
Iteration: 2, Func. Count: 27, Neg. LLF: 35869.66348431712
Iteration: 3, Func. Count: 41, Neg. LLF: 95.3708936057688
Iteration: 4, Func. Count: 54, Neg. LLF: 182.60769211099495
Iteration: 5, Func. Count: 67, Neg. LLF: 88.02072093532675
Iteration: 6, Func. Count: 80, Neg. LLF: 85.8852577066236
Iteration: 7, Func. Count: 93, Neg. LLF: 84.77201111877724
Iteration: 8, Func. Count: 105, Neg. LLF: 84.69765300077812
Iteration: 9, Func. Count: 118, Neg. LLF: 84.72279258156726
Iteration: 10, Func. Count: 131, Neg. LLF: 86.35850823952597
Iteration: 11, Func. Count: 144, Neg. LLF: 84.4462423185097
Iteration: 12, Func. Count: 156, Neg. LLF: 84.48513113920157
Iteration: 13, Func. Count: 169, Neg. LLF: 84.42051034393283
Iteration: 14, Func. Count: 181, Neg. LLF: 84.41415582492233
Iteration: 15, Func. Count: 193, Neg. LLF: 84.41250449467543
Iteration: 16, Func. Count: 205, Neg. LLF: 84.41207334274182
Iteration: 17, Func. Count: 217, Neg. LLF: 84.41205548036558
Iteration: 18, Func. Count: 228, Neg. LLF: 84.41205548041653
Optimization terminated successfully (Exit mode 0)
Current function value: 84.41205548036558
Iterations: 18
Function evaluations: 228
Gradient evaluations: 18
Iteration: 1, Func. Count: 14, Neg. LLF: 9690323.437601252
Iteration: 2, Func. Count: 29, Neg. LLF: 99.3301685024244
Iteration: 3, Func. Count: 43, Neg. LLF: 126.2266286668354
Iteration: 4, Func. Count: 57, Neg. LLF: 146.87265881526406
Iteration: 5, Func. Count: 71, Neg. LLF: 88.78138630569295
Iteration: 6, Func. Count: 85, Neg. LLF: 87.63162425967353
Iteration: 7, Func. Count: 99, Neg. LLF: 85.44156581311039
Iteration: 8, Func. Count: 113, Neg. LLF: 85.84497688041876
Iteration: 9, Func. Count: 127, Neg. LLF: 85.62540003547623
Iteration: 10, Func. Count: 141, Neg. LLF: 85.17558083480102
Iteration: 11, Func. Count: 155, Neg. LLF: 84.04353909081219
Iteration: 12, Func. Count: 168, Neg. LLF: 84.27880977626644
Iteration: 13, Func. Count: 182, Neg. LLF: 83.9401967010835
Iteration: 14, Func. Count: 195, Neg. LLF: 83.93711519367669
Iteration: 15, Func. Count: 208, Neg. LLF: 83.93701429188711
Iteration: 16, Func. Count: 221, Neg. LLF: 83.93700889174177
Iteration: 17, Func. Count: 235, Neg. LLF: 83.93699766871055
Optimization terminated successfully (Exit mode 0)
Current function value: 83.93699766871055
Iterations: 17
Function evaluations: 235
Gradient evaluations: 17
Iteration: 1, Func. Count: 7, Neg. LLF: 122.86692421360766
Iteration: 2, Func. Count: 16, Neg. LLF: 129.0711291747701
Iteration: 3, Func. Count: 23, Neg. LLF: 133.1431206538995
Iteration: 4, Func. Count: 30, Neg. LLF: 85.84863859475718
Iteration: 5, Func. Count: 36, Neg. LLF: 89.42371775295092
Iteration: 6, Func. Count: 43, Neg. LLF: 85.74598918529799
Iteration: 7, Func. Count: 49, Neg. LLF: 85.7412284536976
Iteration: 8, Func. Count: 55, Neg. LLF: 85.74074248057235
Iteration: 9, Func. Count: 61, Neg. LLF: 85.74038324093249
Iteration: 10, Func. Count: 67, Neg. LLF: 85.7403727050903
Iteration: 11, Func. Count: 72, Neg. LLF: 85.74037286931556
Optimization terminated successfully (Exit mode 0)
Current function value: 85.7403727050903
Iterations: 11
Function evaluations: 72
Gradient evaluations: 11
Iteration: 1, Func. Count: 8, Neg. LLF: 1822.0363799924562
Iteration: 2, Func. Count: 16, Neg. LLF: 88.86213630505145
Iteration: 3, Func. Count: 25, Neg. LLF: 90.43329916358465
Iteration: 4, Func. Count: 34, Neg. LLF: 86.21321446254058
Iteration: 5, Func. Count: 42, Neg. LLF: 85.9774530020087
Iteration: 6, Func. Count: 49, Neg. LLF: 85.97676660344878
Iteration: 7, Func. Count: 57, Neg. LLF: 85.9641146595934
Iteration: 8, Func. Count: 64, Neg. LLF: 85.96389581761751
Iteration: 9, Func. Count: 71, Neg. LLF: 85.96385864967885
Iteration: 10, Func. Count: 78, Neg. LLF: 85.96385793863762
Optimization terminated successfully (Exit mode 0)
Current function value: 85.96385793863762
Iterations: 10
Function evaluations: 78
Gradient evaluations: 10
Iteration: 1, Func. Count: 9, Neg. LLF: 1867.673618558487
Iteration: 2, Func. Count: 18, Neg. LLF: 32152969.41979075
Iteration: 3, Func. Count: 28, Neg. LLF: 97.48341563626136
Iteration: 4, Func. Count: 38, Neg. LLF: 85.70416038589606
Iteration: 5, Func. Count: 46, Neg. LLF: 85.61603960723765
Iteration: 6, Func. Count: 54, Neg. LLF: 85.54081909409739
Iteration: 7, Func. Count: 62, Neg. LLF: 85.53682860643134
Iteration: 8, Func. Count: 70, Neg. LLF: 85.53639002500833
Iteration: 9, Func. Count: 78, Neg. LLF: 85.53627297363224
Iteration: 10, Func. Count: 86, Neg. LLF: 85.53625925666671
Iteration: 11, Func. Count: 93, Neg. LLF: 85.53625925663383
Optimization terminated successfully (Exit mode 0)
Current function value: 85.53625925666671
Iterations: 11
Function evaluations: 93
Gradient evaluations: 11
Iteration: 1, Func. Count: 10, Neg. LLF: 516.5251726373937
Iteration: 2, Func. Count: 20, Neg. LLF: 28459327.23733284
Iteration: 3, Func. Count: 31, Neg. LLF: 108.31796358098576
Iteration: 4, Func. Count: 42, Neg. LLF: 85.99012981986367
Iteration: 5, Func. Count: 52, Neg. LLF: 85.61474433693459
Iteration: 6, Func. Count: 61, Neg. LLF: 85.72165182201663
Iteration: 7, Func. Count: 71, Neg. LLF: 85.37221508649606
Iteration: 8, Func. Count: 80, Neg. LLF: 85.36716256711486
Iteration: 9, Func. Count: 89, Neg. LLF: 85.36583621536474
Iteration: 10, Func. Count: 98, Neg. LLF: 85.36481175531983
Iteration: 11, Func. Count: 107, Neg. LLF: 85.36455692109281
Iteration: 12, Func. Count: 116, Neg. LLF: 85.36452718541987
Iteration: 13, Func. Count: 125, Neg. LLF: 85.36452251624628
Iteration: 14, Func. Count: 133, Neg. LLF: 85.36452251623552
Optimization terminated successfully (Exit mode 0)
Current function value: 85.36452251624628
Iterations: 14
Function evaluations: 133
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 637.8846535004803
Iteration: 2, Func. Count: 22, Neg. LLF: 28629210.939284224
Iteration: 3, Func. Count: 34, Neg. LLF: 106.01654044600878
Iteration: 4, Func. Count: 46, Neg. LLF: 86.33234063441608
Iteration: 5, Func. Count: 57, Neg. LLF: 85.50600446502051
Iteration: 6, Func. Count: 67, Neg. LLF: 85.45048763676948
Iteration: 7, Func. Count: 77, Neg. LLF: 85.39085041234925
Iteration: 8, Func. Count: 87, Neg. LLF: 85.36899717636577
Iteration: 9, Func. Count: 97, Neg. LLF: 85.36441759431423
Iteration: 10, Func. Count: 107, Neg. LLF: 85.36298315767655
Iteration: 11, Func. Count: 117, Neg. LLF: 85.36284387273602
Iteration: 12, Func. Count: 127, Neg. LLF: 85.36275321112386
Iteration: 13, Func. Count: 137, Neg. LLF: 85.36274959033774
Iteration: 14, Func. Count: 147, Neg. LLF: 85.36274911839152
Optimization terminated successfully (Exit mode 0)
Current function value: 85.36274911839152
Iterations: 14
Function evaluations: 147
Gradient evaluations: 14
Iteration: 1, Func. Count: 8, Neg. LLF: 140.6595823270248
Iteration: 2, Func. Count: 18, Neg. LLF: 126.05049801619074
Iteration: 3, Func. Count: 27, Neg. LLF: 114.66101096259898
Iteration: 4, Func. Count: 35, Neg. LLF: 85.93837780765088
Iteration: 5, Func. Count: 42, Neg. LLF: 86.10034024031127
Iteration: 6, Func. Count: 50, Neg. LLF: 85.89511822524236
Iteration: 7, Func. Count: 58, Neg. LLF: 85.72997359123399
Iteration: 8, Func. Count: 65, Neg. LLF: 85.72034772735994
Iteration: 9, Func. Count: 72, Neg. LLF: 85.71982329649317
Iteration: 10, Func. Count: 79, Neg. LLF: 85.71980600835857
Iteration: 11, Func. Count: 86, Neg. LLF: 85.71980537740619
Optimization terminated successfully (Exit mode 0)
Current function value: 85.71980537740619
Iterations: 11
Function evaluations: 86
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 8531360.254369916
Iteration: 2, Func. Count: 19, Neg. LLF: 93.7453718522678
Iteration: 3, Func. Count: 29, Neg. LLF: 26793.93475461791
Iteration: 4, Func. Count: 39, Neg. LLF: 86.03026014127516
Iteration: 5, Func. Count: 48, Neg. LLF: 85.51812586839274
Iteration: 6, Func. Count: 56, Neg. LLF: 85.49686065662492
Iteration: 7, Func. Count: 64, Neg. LLF: 85.44535480310867
Iteration: 8, Func. Count: 72, Neg. LLF: 85.44261212045635
Iteration: 9, Func. Count: 80, Neg. LLF: 85.4401790327601
Iteration: 10, Func. Count: 88, Neg. LLF: 85.44008970580579
Iteration: 11, Func. Count: 96, Neg. LLF: 85.44008718829082
Iteration: 12, Func. Count: 103, Neg. LLF: 85.44008718825734
Optimization terminated successfully (Exit mode 0)
Current function value: 85.44008718829082
Iterations: 12
Function evaluations: 103
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 4023.0634653227676
Iteration: 2, Func. Count: 20, Neg. LLF: 30149041.899928465
Iteration: 3, Func. Count: 31, Neg. LLF: 109.93684944629898
Iteration: 4, Func. Count: 42, Neg. LLF: 92.01361832098411
Iteration: 5, Func. Count: 52, Neg. LLF: 85.66526902370265
Iteration: 6, Func. Count: 61, Neg. LLF: 85.61927146382139
Iteration: 7, Func. Count: 70, Neg. LLF: 85.5732643488346
Iteration: 8, Func. Count: 79, Neg. LLF: 85.56176654176222
Iteration: 9, Func. Count: 88, Neg. LLF: 85.55305063788892
Iteration: 10, Func. Count: 97, Neg. LLF: 85.5462478329513
Iteration: 11, Func. Count: 106, Neg. LLF: 85.5391491665664
Iteration: 12, Func. Count: 115, Neg. LLF: 85.53731733367552
Iteration: 13, Func. Count: 124, Neg. LLF: 85.53651349132492
Iteration: 14, Func. Count: 133, Neg. LLF: 85.53627873436056
Iteration: 15, Func. Count: 142, Neg. LLF: 85.53626374324728
Iteration: 16, Func. Count: 151, Neg. LLF: 85.53625922224323
Iteration: 17, Func. Count: 159, Neg. LLF: 85.53625922224776
Optimization terminated successfully (Exit mode 0)
Current function value: 85.53625922224323
Iterations: 17
Function evaluations: 159
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 163.00692530315675
Iteration: 2, Func. Count: 22, Neg. LLF: 143934.76971615676
Iteration: 3, Func. Count: 34, Neg. LLF: 119.01480764060196
Iteration: 4, Func. Count: 45, Neg. LLF: 88.93019257011161
Iteration: 5, Func. Count: 56, Neg. LLF: 96.96132948348753
Iteration: 6, Func. Count: 67, Neg. LLF: 86.8494818706809
Iteration: 7, Func. Count: 78, Neg. LLF: 85.28227766559158
Iteration: 8, Func. Count: 88, Neg. LLF: 85.03518731930163
Iteration: 9, Func. Count: 98, Neg. LLF: 85.05142310260501
Iteration: 10, Func. Count: 109, Neg. LLF: 84.88843704144094
Iteration: 11, Func. Count: 119, Neg. LLF: 84.74199387255808
Iteration: 12, Func. Count: 129, Neg. LLF: 84.67397973170075
Iteration: 13, Func. Count: 139, Neg. LLF: 84.6111347639814
Iteration: 14, Func. Count: 149, Neg. LLF: 84.59284810544882
Iteration: 15, Func. Count: 159, Neg. LLF: 84.58953870443025
Iteration: 16, Func. Count: 169, Neg. LLF: 84.58885400973958
Iteration: 17, Func. Count: 179, Neg. LLF: 84.58883518754499
Iteration: 18, Func. Count: 189, Neg. LLF: 84.58882939117602
Iteration: 19, Func. Count: 198, Neg. LLF: 84.58882939120836
Optimization terminated successfully (Exit mode 0)
Current function value: 84.58882939117602
Iterations: 19
Function evaluations: 198
Gradient evaluations: 19
Iteration: 1, Func. Count: 12, Neg. LLF: 19006.486607562223
Iteration: 2, Func. Count: 24, Neg. LLF: 13967695.429219302
Iteration: 3, Func. Count: 37, Neg. LLF: 132.7475310717609
Iteration: 4, Func. Count: 49, Neg. LLF: 93.82050702914377
Iteration: 5, Func. Count: 61, Neg. LLF: 135.9426865544
Iteration: 6, Func. Count: 73, Neg. LLF: 88.00531151270432
Iteration: 7, Func. Count: 85, Neg. LLF: 85.71685769464075
Iteration: 8, Func. Count: 97, Neg. LLF: 86.04298523148461
Iteration: 9, Func. Count: 109, Neg. LLF: 85.07366900204971
Iteration: 10, Func. Count: 121, Neg. LLF: 84.95312067675607
Iteration: 11, Func. Count: 133, Neg. LLF: 85.02796597314074
Iteration: 12, Func. Count: 145, Neg. LLF: 84.51689454911771
Iteration: 13, Func. Count: 156, Neg. LLF: 84.47276915263268
Iteration: 14, Func. Count: 167, Neg. LLF: 84.5874692255046
Iteration: 15, Func. Count: 179, Neg. LLF: 84.44155318481685
Iteration: 16, Func. Count: 190, Neg. LLF: 84.424197303726
Iteration: 17, Func. Count: 201, Neg. LLF: 84.39118303431002
Iteration: 18, Func. Count: 212, Neg. LLF: 84.3849412642423
Iteration: 19, Func. Count: 223, Neg. LLF: 84.38156568333643
Iteration: 20, Func. Count: 234, Neg. LLF: 84.37763693881996
Iteration: 21, Func. Count: 245, Neg. LLF: 84.37534145263324
Iteration: 22, Func. Count: 256, Neg. LLF: 84.37494226317045
Iteration: 23, Func. Count: 267, Neg. LLF: 84.37489573210868
Iteration: 24, Func. Count: 278, Neg. LLF: 84.37489364652883
Iteration: 25, Func. Count: 288, Neg. LLF: 84.37489364646383
Optimization terminated successfully (Exit mode 0)
Current function value: 84.37489364652883
Iterations: 25
Function evaluations: 288
Gradient evaluations: 25
Iteration: 1, Func. Count: 9, Neg. LLF: 137.10660426439742
Iteration: 2, Func. Count: 20, Neg. LLF: 120.15070096772959
Iteration: 3, Func. Count: 30, Neg. LLF: 86.18361783596802
Iteration: 4, Func. Count: 38, Neg. LLF: 86.29732750252433
Iteration: 5, Func. Count: 47, Neg. LLF: 92.03476409213926
Iteration: 6, Func. Count: 57, Neg. LLF: 86.73206967026324
Iteration: 7, Func. Count: 66, Neg. LLF: 85.68424520453397
Iteration: 8, Func. Count: 74, Neg. LLF: 85.68516030017406
Iteration: 9, Func. Count: 83, Neg. LLF: 85.68001548144319
Iteration: 10, Func. Count: 91, Neg. LLF: 85.67947840896075
Iteration: 11, Func. Count: 99, Neg. LLF: 85.67946354243036
Iteration: 12, Func. Count: 107, Neg. LLF: 85.67946215236539
Iteration: 13, Func. Count: 114, Neg. LLF: 85.67946215236246
Optimization terminated successfully (Exit mode 0)
Current function value: 85.67946215236539
Iterations: 13
Function evaluations: 114
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 136.27630878861328
Iteration: 2, Func. Count: 21, Neg. LLF: 4209478.518663679
Iteration: 3, Func. Count: 31, Neg. LLF: 102.92899950247492
Iteration: 4, Func. Count: 42, Neg. LLF: 86.88505114259897
Iteration: 5, Func. Count: 52, Neg. LLF: 87.57095729025649
Iteration: 6, Func. Count: 62, Neg. LLF: 85.77132496500268
Iteration: 7, Func. Count: 71, Neg. LLF: 85.73636636706998
Iteration: 8, Func. Count: 80, Neg. LLF: 85.78481276725812
Iteration: 9, Func. Count: 90, Neg. LLF: 85.70290676222955
Iteration: 10, Func. Count: 99, Neg. LLF: 85.6953222848084
Iteration: 11, Func. Count: 108, Neg. LLF: 85.68193513773515
Iteration: 12, Func. Count: 117, Neg. LLF: 85.68042450826253
Iteration: 13, Func. Count: 126, Neg. LLF: 85.67957835231931
Iteration: 14, Func. Count: 135, Neg. LLF: 85.67947939192977
Iteration: 15, Func. Count: 144, Neg. LLF: 85.67946542781186
Iteration: 16, Func. Count: 153, Neg. LLF: 85.67946304891036
Iteration: 17, Func. Count: 162, Neg. LLF: 85.67946206729896
Optimization terminated successfully (Exit mode 0)
Current function value: 85.67946206729896
Iterations: 17
Function evaluations: 162
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 159.37801323717494
Iteration: 2, Func. Count: 22, Neg. LLF: 116.59141377202907
Iteration: 3, Func. Count: 33, Neg. LLF: 88.55167193103526
Iteration: 4, Func. Count: 44, Neg. LLF: 89.18745419542387
Iteration: 5, Func. Count: 56, Neg. LLF: 85.78348832025175
Iteration: 6, Func. Count: 67, Neg. LLF: 85.70940565712452
Iteration: 7, Func. Count: 78, Neg. LLF: 85.5329746872026
Iteration: 8, Func. Count: 88, Neg. LLF: 85.53123442977767
Iteration: 9, Func. Count: 98, Neg. LLF: 85.52893630136188
Iteration: 10, Func. Count: 108, Neg. LLF: 85.52848042364118
Iteration: 11, Func. Count: 118, Neg. LLF: 85.52838137649438
Iteration: 12, Func. Count: 128, Neg. LLF: 85.52829037153336
Iteration: 13, Func. Count: 138, Neg. LLF: 85.52828621239317
Iteration: 14, Func. Count: 148, Neg. LLF: 85.52828186008236
Iteration: 15, Func. Count: 157, Neg. LLF: 85.52828186010011
Optimization terminated successfully (Exit mode 0)
Current function value: 85.52828186008236
Iterations: 15
Function evaluations: 157
Gradient evaluations: 15
Iteration: 1, Func. Count: 12, Neg. LLF: 161.30571995279428
Iteration: 2, Func. Count: 25, Neg. LLF: 1087.9079714524798
Iteration: 3, Func. Count: 37, Neg. LLF: 118.62266913258819
Iteration: 4, Func. Count: 49, Neg. LLF: 85.77122033814562
Iteration: 5, Func. Count: 61, Neg. LLF: 87.01938111041585
Iteration: 6, Func. Count: 73, Neg. LLF: 86.40809848760387
Iteration: 7, Func. Count: 85, Neg. LLF: 84.61989700288628
Iteration: 8, Func. Count: 96, Neg. LLF: 85.35105991329789
Iteration: 9, Func. Count: 108, Neg. LLF: 84.93436172397818
Iteration: 10, Func. Count: 120, Neg. LLF: 84.5772646830204
Iteration: 11, Func. Count: 132, Neg. LLF: 84.42813884180747
Iteration: 12, Func. Count: 143, Neg. LLF: 84.42704669719959
Iteration: 13, Func. Count: 155, Neg. LLF: 84.41283012752781
Iteration: 14, Func. Count: 166, Neg. LLF: 84.41208491437162
Iteration: 15, Func. Count: 177, Neg. LLF: 84.41206109765815
Iteration: 16, Func. Count: 188, Neg. LLF: 84.41205553111497
Iteration: 17, Func. Count: 198, Neg. LLF: 84.41205553109643
Optimization terminated successfully (Exit mode 0)
Current function value: 84.41205553111497
Iterations: 17
Function evaluations: 198
Gradient evaluations: 17
Iteration: 1, Func. Count: 13, Neg. LLF: 3918.407084567562
Iteration: 2, Func. Count: 27, Neg. LLF: 627.0214653003513
Iteration: 3, Func. Count: 40, Neg. LLF: 87.45607417155605
Iteration: 4, Func. Count: 54, Neg. LLF: 105.53597069918499
Iteration: 5, Func. Count: 67, Neg. LLF: 136.6171967483277
Iteration: 6, Func. Count: 80, Neg. LLF: 89.32378258256946
Iteration: 7, Func. Count: 93, Neg. LLF: 85.59829610822018
Iteration: 8, Func. Count: 106, Neg. LLF: 84.92823879563606
Iteration: 9, Func. Count: 118, Neg. LLF: 84.87646521211947
Iteration: 10, Func. Count: 131, Neg. LLF: 86.25054582090571
Iteration: 11, Func. Count: 144, Neg. LLF: 93.43430307408961
Iteration: 12, Func. Count: 157, Neg. LLF: 85.30997450150117
Iteration: 13, Func. Count: 170, Neg. LLF: 84.65391118237986
Iteration: 14, Func. Count: 183, Neg. LLF: 84.01161169231979
Iteration: 15, Func. Count: 195, Neg. LLF: 83.95818170364453
Iteration: 16, Func. Count: 207, Neg. LLF: 83.94455814184128
Iteration: 17, Func. Count: 219, Neg. LLF: 83.93828721034451
Iteration: 18, Func. Count: 231, Neg. LLF: 83.93721105669268
Iteration: 19, Func. Count: 243, Neg. LLF: 83.93700391975867
Iteration: 20, Func. Count: 255, Neg. LLF: 83.93699804364546
Iteration: 21, Func. Count: 266, Neg. LLF: 83.936998043571
Optimization terminated successfully (Exit mode 0)
Current function value: 83.93699804364546
Iterations: 21
Function evaluations: 266
Gradient evaluations: 21
Iteration: 1, Func. Count: 10, Neg. LLF: 129.7295344923701
Iteration: 2, Func. Count: 22, Neg. LLF: 117.59426863591753
Iteration: 3, Func. Count: 33, Neg. LLF: 88.89969363448776
Iteration: 4, Func. Count: 43, Neg. LLF: 86.2575602279237
Iteration: 5, Func. Count: 52, Neg. LLF: 85.77018405884273
Iteration: 6, Func. Count: 61, Neg. LLF: 89.36169972994482
Iteration: 7, Func. Count: 72, Neg. LLF: 85.93551315227118
Iteration: 8, Func. Count: 82, Neg. LLF: 85.68669065411154
Iteration: 9, Func. Count: 91, Neg. LLF: 85.68105008006751
Iteration: 10, Func. Count: 100, Neg. LLF: 85.6795252849811
Iteration: 11, Func. Count: 109, Neg. LLF: 85.6794657160611
Iteration: 12, Func. Count: 118, Neg. LLF: 85.67946205765554
Iteration: 13, Func. Count: 126, Neg. LLF: 85.6794621452446
Optimization terminated successfully (Exit mode 0)
Current function value: 85.67946205765554
Iterations: 13
Function evaluations: 126
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 352.40900937912386
Iteration: 2, Func. Count: 22, Neg. LLF: 89.60064004444082
Iteration: 3, Func. Count: 34, Neg. LLF: 95.45388690696231
Iteration: 4, Func. Count: 45, Neg. LLF: 86.91684606245458
Iteration: 5, Func. Count: 56, Neg. LLF: 85.56571548588525
Iteration: 6, Func. Count: 66, Neg. LLF: 90.77233876144776
Iteration: 7, Func. Count: 77, Neg. LLF: 85.467022037865
Iteration: 8, Func. Count: 87, Neg. LLF: 85.44184125812427
Iteration: 9, Func. Count: 97, Neg. LLF: 85.44049148980847
Iteration: 10, Func. Count: 107, Neg. LLF: 85.44010918986181
Iteration: 11, Func. Count: 117, Neg. LLF: 85.44008781599106
Iteration: 12, Func. Count: 127, Neg. LLF: 85.4400872121054
Optimization terminated successfully (Exit mode 0)
Current function value: 85.4400872121054
Iterations: 12
Function evaluations: 127
Gradient evaluations: 12
Iteration: 1, Func. Count: 12, Neg. LLF: 288.52555187663165
Iteration: 2, Func. Count: 24, Neg. LLF: 10932484.537241114
Iteration: 3, Func. Count: 37, Neg. LLF: 119.30211008513443
Iteration: 4, Func. Count: 50, Neg. LLF: 88.7580186080161
Iteration: 5, Func. Count: 62, Neg. LLF: 85.59883429704693
Iteration: 6, Func. Count: 73, Neg. LLF: 85.56547926442941
Iteration: 7, Func. Count: 84, Neg. LLF: 85.86371351788601
Iteration: 8, Func. Count: 96, Neg. LLF: 85.5112384480235
Iteration: 9, Func. Count: 107, Neg. LLF: 85.5001158467635
Iteration: 10, Func. Count: 118, Neg. LLF: 85.4694705436608
Iteration: 11, Func. Count: 129, Neg. LLF: 85.45533862051231
Iteration: 12, Func. Count: 140, Neg. LLF: 85.44166615702868
Iteration: 13, Func. Count: 151, Neg. LLF: 85.39610724141241
Iteration: 14, Func. Count: 162, Neg. LLF: 85.33111870414098
Iteration: 15, Func. Count: 173, Neg. LLF: 85.28849816487055
Iteration: 16, Func. Count: 184, Neg. LLF: 85.27392363439617
Iteration: 17, Func. Count: 195, Neg. LLF: 85.27483869835334
Iteration: 18, Func. Count: 207, Neg. LLF: 85.27256004500563
Iteration: 19, Func. Count: 218, Neg. LLF: 85.27253316047913
Iteration: 20, Func. Count: 229, Neg. LLF: 85.27250534186851
Iteration: 21, Func. Count: 239, Neg. LLF: 85.27250534189959
Optimization terminated successfully (Exit mode 0)
Current function value: 85.27250534186851
Iterations: 21
Function evaluations: 239
Gradient evaluations: 21
Iteration: 1, Func. Count: 13, Neg. LLF: 216.09267577651644
Iteration: 2, Func. Count: 26, Neg. LLF: 14907294.6638107
Iteration: 3, Func. Count: 40, Neg. LLF: 127.29862217235473
Iteration: 4, Func. Count: 53, Neg. LLF: 89.33819010394416
Iteration: 5, Func. Count: 66, Neg. LLF: 89.09561161275906
Iteration: 6, Func. Count: 79, Neg. LLF: 85.17616768072266
Iteration: 7, Func. Count: 91, Neg. LLF: 91.31577058429865
Iteration: 8, Func. Count: 104, Neg. LLF: 86.54611083247298
Iteration: 9, Func. Count: 117, Neg. LLF: 85.71661850450415
Iteration: 10, Func. Count: 130, Neg. LLF: 84.51234353834496
Iteration: 11, Func. Count: 142, Neg. LLF: 84.45890061664609
Iteration: 12, Func. Count: 154, Neg. LLF: 84.41751488215084
Iteration: 13, Func. Count: 166, Neg. LLF: 84.41268602789678
Iteration: 14, Func. Count: 178, Neg. LLF: 84.41206556242648
Iteration: 15, Func. Count: 190, Neg. LLF: 84.41205618200122
Iteration: 16, Func. Count: 202, Neg. LLF: 84.41205544941076
Optimization terminated successfully (Exit mode 0)
Current function value: 84.41205544941076
Iterations: 16
Function evaluations: 202
Gradient evaluations: 16
Iteration: 1, Func. Count: 14, Neg. LLF: 526.9574287669968
Iteration: 2, Func. Count: 28, Neg. LLF: 17331977.79788484
Iteration: 3, Func. Count: 43, Neg. LLF: 126.00893209756447
Iteration: 4, Func. Count: 58, Neg. LLF: 91.66121079862823
Iteration: 5, Func. Count: 72, Neg. LLF: 90.96380984907816
Iteration: 6, Func. Count: 86, Neg. LLF: 93.83376692933221
Iteration: 7, Func. Count: 100, Neg. LLF: 85.79009922276073
Iteration: 8, Func. Count: 114, Neg. LLF: 88.71993703774822
Iteration: 9, Func. Count: 128, Neg. LLF: 87.96399163101042
Iteration: 10, Func. Count: 142, Neg. LLF: 84.56276921148091
Iteration: 11, Func. Count: 155, Neg. LLF: 84.50638995483878
Iteration: 12, Func. Count: 169, Neg. LLF: 84.0636236246721
Iteration: 13, Func. Count: 182, Neg. LLF: 83.95811402166493
Iteration: 14, Func. Count: 195, Neg. LLF: 83.94152252968287
Iteration: 15, Func. Count: 208, Neg. LLF: 83.93725553238654
Iteration: 16, Func. Count: 221, Neg. LLF: 83.93705755913743
Iteration: 17, Func. Count: 234, Neg. LLF: 83.93700396846273
Iteration: 18, Func. Count: 247, Neg. LLF: 83.936997738409
Iteration: 19, Func. Count: 259, Neg. LLF: 83.93699773844122
Optimization terminated successfully (Exit mode 0)
Current function value: 83.936997738409
Iterations: 19
Function evaluations: 259
Gradient evaluations: 19
Iteration: 1, Func. Count: 11, Neg. LLF: 129.72992793661723
Iteration: 2, Func. Count: 24, Neg. LLF: 119.87085138157893
Iteration: 3, Func. Count: 36, Neg. LLF: 92.960070638204
Iteration: 4, Func. Count: 47, Neg. LLF: 86.4437585338089
Iteration: 5, Func. Count: 57, Neg. LLF: 85.71424881501737
Iteration: 6, Func. Count: 67, Neg. LLF: 89.98566736741361
Iteration: 7, Func. Count: 79, Neg. LLF: 85.68325715062146
Iteration: 8, Func. Count: 89, Neg. LLF: 85.68045123664572
Iteration: 9, Func. Count: 99, Neg. LLF: 85.67956018585441
Iteration: 10, Func. Count: 109, Neg. LLF: 85.67946957631024
Iteration: 11, Func. Count: 119, Neg. LLF: 85.67946213009257
Iteration: 12, Func. Count: 128, Neg. LLF: 85.67946215108479
Optimization terminated successfully (Exit mode 0)
Current function value: 85.67946213009257
Iterations: 12
Function evaluations: 128
Gradient evaluations: 12
Iteration: 1, Func. Count: 12, Neg. LLF: 237.15385460212684
Iteration: 2, Func. Count: 24, Neg. LLF: 90.70984944503851
Iteration: 3, Func. Count: 37, Neg. LLF: 95.90636416349761
Iteration: 4, Func. Count: 50, Neg. LLF: 87.08790535286522
Iteration: 5, Func. Count: 62, Neg. LLF: 85.5021366886605
Iteration: 6, Func. Count: 73, Neg. LLF: 85.84797455638606
Iteration: 7, Func. Count: 85, Neg. LLF: 85.45447089872245
Iteration: 8, Func. Count: 96, Neg. LLF: 85.44398750971465
Iteration: 9, Func. Count: 107, Neg. LLF: 85.44085357784672
Iteration: 10, Func. Count: 118, Neg. LLF: 85.44013359294087
Iteration: 11, Func. Count: 129, Neg. LLF: 85.44008787213248
Iteration: 12, Func. Count: 140, Neg. LLF: 85.4400871729133
Optimization terminated successfully (Exit mode 0)
Current function value: 85.4400871729133
Iterations: 12
Function evaluations: 140
Gradient evaluations: 12
Iteration: 1, Func. Count: 13, Neg. LLF: 278.33888267732016
Iteration: 2, Func. Count: 26, Neg. LLF: 10910920.287211113
Iteration: 3, Func. Count: 40, Neg. LLF: 119.09345119976099
Iteration: 4, Func. Count: 54, Neg. LLF: 88.74781369269756
Iteration: 5, Func. Count: 67, Neg. LLF: 85.5997461963775
Iteration: 6, Func. Count: 79, Neg. LLF: 85.5728601014588
Iteration: 7, Func. Count: 91, Neg. LLF: 85.82806478107689
Iteration: 8, Func. Count: 104, Neg. LLF: 85.51173377763436
Iteration: 9, Func. Count: 116, Neg. LLF: 85.50095060849873
Iteration: 10, Func. Count: 128, Neg. LLF: 85.46778168790676
Iteration: 11, Func. Count: 140, Neg. LLF: 85.45487952805081
Iteration: 12, Func. Count: 152, Neg. LLF: 85.44463004658968
Iteration: 13, Func. Count: 164, Neg. LLF: 85.40695195933633
Iteration: 14, Func. Count: 176, Neg. LLF: 85.4172552534201
Iteration: 15, Func. Count: 189, Neg. LLF: 85.30194774951543
Iteration: 16, Func. Count: 201, Neg. LLF: 85.28174755914769
Iteration: 17, Func. Count: 213, Neg. LLF: 85.27366103015524
Iteration: 18, Func. Count: 225, Neg. LLF: 85.27306242643688
Iteration: 19, Func. Count: 237, Neg. LLF: 85.27259104709239
Iteration: 20, Func. Count: 249, Neg. LLF: 85.27254393327065
Iteration: 21, Func. Count: 261, Neg. LLF: 85.27250847185339
Iteration: 22, Func. Count: 273, Neg. LLF: 85.27250539854388
Iteration: 23, Func. Count: 284, Neg. LLF: 85.27250539855397
Optimization terminated successfully (Exit mode 0)
Current function value: 85.27250539854388
Iterations: 23
Function evaluations: 284
Gradient evaluations: 23
Iteration: 1, Func. Count: 14, Neg. LLF: 214.6865864420895
Iteration: 2, Func. Count: 28, Neg. LLF: 15003026.918313488
Iteration: 3, Func. Count: 43, Neg. LLF: 127.71487511001484
Iteration: 4, Func. Count: 57, Neg. LLF: 89.2940992578257
Iteration: 5, Func. Count: 71, Neg. LLF: 88.80331162455249
Iteration: 6, Func. Count: 85, Neg. LLF: 85.21916781874603
Iteration: 7, Func. Count: 98, Neg. LLF: 91.6828965485288
Iteration: 8, Func. Count: 112, Neg. LLF: 86.89416769135985
Iteration: 9, Func. Count: 126, Neg. LLF: 85.49909470589716
Iteration: 10, Func. Count: 140, Neg. LLF: 84.51009573905868
Iteration: 11, Func. Count: 153, Neg. LLF: 84.45924726062577
Iteration: 12, Func. Count: 166, Neg. LLF: 84.41545711231984
Iteration: 13, Func. Count: 179, Neg. LLF: 84.41335531802774
Iteration: 14, Func. Count: 192, Neg. LLF: 84.41206104559173
Iteration: 15, Func. Count: 205, Neg. LLF: 84.41205521289699
Iteration: 16, Func. Count: 217, Neg. LLF: 84.41205521283506
Optimization terminated successfully (Exit mode 0)
Current function value: 84.41205521289699
Iterations: 16
Function evaluations: 217
Gradient evaluations: 16
Iteration: 1, Func. Count: 15, Neg. LLF: 602.8031806368582
Iteration: 2, Func. Count: 30, Neg. LLF: 17451324.651741996
Iteration: 3, Func. Count: 46, Neg. LLF: 126.61651131677367
Iteration: 4, Func. Count: 62, Neg. LLF: 91.64777481128176
Iteration: 5, Func. Count: 77, Neg. LLF: 90.315616322872
Iteration: 6, Func. Count: 92, Neg. LLF: 92.13152433071959
Iteration: 7, Func. Count: 107, Neg. LLF: 85.68092900427261
Iteration: 8, Func. Count: 122, Neg. LLF: 88.23854379346751
Iteration: 9, Func. Count: 137, Neg. LLF: 87.98312448829654
Iteration: 10, Func. Count: 152, Neg. LLF: 84.49758624043311
Iteration: 11, Func. Count: 166, Neg. LLF: 85.24996322167692
Iteration: 12, Func. Count: 181, Neg. LLF: 84.10536039292472
Iteration: 13, Func. Count: 195, Neg. LLF: 84.01456359016984
Iteration: 14, Func. Count: 209, Neg. LLF: 83.97648508542662
Iteration: 15, Func. Count: 223, Neg. LLF: 83.94048184693524
Iteration: 16, Func. Count: 237, Neg. LLF: 83.9376647782103
Iteration: 17, Func. Count: 251, Neg. LLF: 83.93701976071686
Iteration: 18, Func. Count: 265, Neg. LLF: 83.93699906849511
Iteration: 19, Func. Count: 279, Neg. LLF: 83.93699763586446
Iteration: 20, Func. Count: 292, Neg. LLF: 83.93699763586132
Optimization terminated successfully (Exit mode 0)
Current function value: 83.93699763586446
Iterations: 20
Function evaluations: 292
Gradient evaluations: 20
Iteration: 1, Func. Count: 8, Neg. LLF: 118.8062470874315
Iteration: 2, Func. Count: 18, Neg. LLF: 145.0445612188746
Iteration: 3, Func. Count: 26, Neg. LLF: 230.97388898186594
Iteration: 4, Func. Count: 34, Neg. LLF: 515.8231946978277
Iteration: 5, Func. Count: 42, Neg. LLF: 86.77384190569643
Iteration: 6, Func. Count: 50, Neg. LLF: 85.7510286991081
Iteration: 7, Func. Count: 58, Neg. LLF: 85.36878453117663
Iteration: 8, Func. Count: 65, Neg. LLF: 85.37010501214218
Iteration: 9, Func. Count: 73, Neg. LLF: 85.36528061724991
Iteration: 10, Func. Count: 80, Neg. LLF: 85.36513040499494
Iteration: 11, Func. Count: 87, Neg. LLF: 85.36507038439991
Iteration: 12, Func. Count: 94, Neg. LLF: 85.3650652664037
Iteration: 13, Func. Count: 100, Neg. LLF: 85.36506526645123
Optimization terminated successfully (Exit mode 0)
Current function value: 85.3650652664037
Iterations: 13
Function evaluations: 100
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 92.30538387253863
Iteration: 2, Func. Count: 18, Neg. LLF: 125.56348401814066
Iteration: 3, Func. Count: 27, Neg. LLF: 96.5532509369604
Iteration: 4, Func. Count: 36, Neg. LLF: 85.51477460072533
Iteration: 5, Func. Count: 44, Neg. LLF: 86.90602623227998
Iteration: 6, Func. Count: 53, Neg. LLF: 87.39373978507831
Iteration: 7, Func. Count: 62, Neg. LLF: 85.37739731855973
Iteration: 8, Func. Count: 70, Neg. LLF: 85.36628168777196
Iteration: 9, Func. Count: 78, Neg. LLF: 85.36510927421426
Iteration: 10, Func. Count: 86, Neg. LLF: 85.3650659684424
Iteration: 11, Func. Count: 94, Neg. LLF: 85.36506512193846
Optimization terminated successfully (Exit mode 0)
Current function value: 85.36506512193846
Iterations: 11
Function evaluations: 94
Gradient evaluations: 11
Iteration: 1, Func. Count: 10, Neg. LLF: 107.32233373977827
Iteration: 2, Func. Count: 20, Neg. LLF: 106.81439987004448
Iteration: 3, Func. Count: 31, Neg. LLF: 147.67682630060773
Iteration: 4, Func. Count: 42, Neg. LLF: 87.9122925842275
Iteration: 5, Func. Count: 52, Neg. LLF: 85.66046683389904
Iteration: 6, Func. Count: 61, Neg. LLF: 85.44327751822169
Iteration: 7, Func. Count: 70, Neg. LLF: 85.37861532388459
Iteration: 8, Func. Count: 79, Neg. LLF: 85.36565221750504
Iteration: 9, Func. Count: 88, Neg. LLF: 85.36515574578594
Iteration: 10, Func. Count: 97, Neg. LLF: 85.36506991804904
Iteration: 11, Func. Count: 106, Neg. LLF: 85.36506530540512
Iteration: 12, Func. Count: 114, Neg. LLF: 85.36506534381589
Optimization terminated successfully (Exit mode 0)
Current function value: 85.36506530540512
Iterations: 12
Function evaluations: 114
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 113.54649011045741
Iteration: 2, Func. Count: 22, Neg. LLF: 114.08752349690482
Iteration: 3, Func. Count: 34, Neg. LLF: 222.2517035535176
Iteration: 4, Func. Count: 46, Neg. LLF: 95.43325207483667
Iteration: 5, Func. Count: 57, Neg. LLF: 86.24679370481898
Iteration: 6, Func. Count: 68, Neg. LLF: 85.34709851383325
Iteration: 7, Func. Count: 78, Neg. LLF: 85.33031917594204
Iteration: 8, Func. Count: 88, Neg. LLF: 85.32387901780545
Iteration: 9, Func. Count: 98, Neg. LLF: 85.3219930506507
Iteration: 10, Func. Count: 108, Neg. LLF: 85.32181922204825
Iteration: 11, Func. Count: 118, Neg. LLF: 85.32180359569841
Iteration: 12, Func. Count: 128, Neg. LLF: 85.32180207870324
Iteration: 13, Func. Count: 137, Neg. LLF: 85.32180207870582
Optimization terminated successfully (Exit mode 0)
Current function value: 85.32180207870324
Iterations: 13
Function evaluations: 137
Gradient evaluations: 13
Iteration: 1, Func. Count: 12, Neg. LLF: 117.92725298990652
Iteration: 2, Func. Count: 24, Neg. LLF: 114.52857794705422
Iteration: 3, Func. Count: 37, Neg. LLF: 164.37414354548363
Iteration: 4, Func. Count: 50, Neg. LLF: 99.65832973552219
Iteration: 5, Func. Count: 62, Neg. LLF: 86.48549484860132
Iteration: 6, Func. Count: 74, Neg. LLF: 85.36819447924886
Iteration: 7, Func. Count: 85, Neg. LLF: 85.33169563976362
Iteration: 8, Func. Count: 96, Neg. LLF: 85.32117095057455
Iteration: 9, Func. Count: 107, Neg. LLF: 85.31916037298002
Iteration: 10, Func. Count: 118, Neg. LLF: 85.31906370584778
Iteration: 11, Func. Count: 129, Neg. LLF: 85.31904943384934
Iteration: 12, Func. Count: 140, Neg. LLF: 85.31904767404528
Iteration: 13, Func. Count: 150, Neg. LLF: 85.31904767403445
Optimization terminated successfully (Exit mode 0)
Current function value: 85.31904767404528
Iterations: 13
Function evaluations: 150
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 143.74734334348136
Iteration: 2, Func. Count: 20, Neg. LLF: 123.80341181049734
Iteration: 3, Func. Count: 30, Neg. LLF: 116.54326434118947
Iteration: 4, Func. Count: 39, Neg. LLF: 303.0079907384769
Iteration: 5, Func. Count: 48, Neg. LLF: 94.26068894623363
Iteration: 6, Func. Count: 57, Neg. LLF: 94.56920137647036
Iteration: 7, Func. Count: 66, Neg. LLF: 86.74329264619504
Iteration: 8, Func. Count: 75, Neg. LLF: 85.09987428541893
Iteration: 9, Func. Count: 83, Neg. LLF: 85.08339510020804
Iteration: 10, Func. Count: 91, Neg. LLF: 85.06654002384646
Iteration: 11, Func. Count: 99, Neg. LLF: 85.06508303261118
Iteration: 12, Func. Count: 107, Neg. LLF: 85.06480180063929
Iteration: 13, Func. Count: 115, Neg. LLF: 85.06478653204559
Iteration: 14, Func. Count: 123, Neg. LLF: 85.064785987381
Optimization terminated successfully (Exit mode 0)
Current function value: 85.064785987381
Iterations: 14
Function evaluations: 123
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 116.31018625457048
Iteration: 2, Func. Count: 21, Neg. LLF: 163.03205799473707
Iteration: 3, Func. Count: 31, Neg. LLF: 703.4032093210247
Iteration: 4, Func. Count: 41, Neg. LLF: 97.11033068871815
Iteration: 5, Func. Count: 51, Neg. LLF: 86.27751883788731
Iteration: 6, Func. Count: 61, Neg. LLF: 86.15447625520316
Iteration: 7, Func. Count: 71, Neg. LLF: 85.23724334978834
Iteration: 8, Func. Count: 81, Neg. LLF: 85.09128233502565
Iteration: 9, Func. Count: 90, Neg. LLF: 85.02514106934422
Iteration: 10, Func. Count: 99, Neg. LLF: 85.02427825399954
Iteration: 11, Func. Count: 108, Neg. LLF: 85.02399433192365
Iteration: 12, Func. Count: 117, Neg. LLF: 85.02398229840698
Iteration: 13, Func. Count: 125, Neg. LLF: 85.0239822984204
Optimization terminated successfully (Exit mode 0)
Current function value: 85.02398229840698
Iterations: 13
Function evaluations: 125
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 103.08591849049878
Iteration: 2, Func. Count: 22, Neg. LLF: 117.3998708255539
Iteration: 3, Func. Count: 33, Neg. LLF: 108.9763668254896
Iteration: 4, Func. Count: 44, Neg. LLF: 92.61969047604832
Iteration: 5, Func. Count: 55, Neg. LLF: 85.6941830047952
Iteration: 6, Func. Count: 65, Neg. LLF: 86.0272501720102
Iteration: 7, Func. Count: 76, Neg. LLF: 112.4367150209922
Iteration: 8, Func. Count: 87, Neg. LLF: 85.3119348544544
Iteration: 9, Func. Count: 98, Neg. LLF: 85.07326045846759
Iteration: 10, Func. Count: 109, Neg. LLF: 85.02508453961993
Iteration: 11, Func. Count: 119, Neg. LLF: 85.02406441965333
Iteration: 12, Func. Count: 129, Neg. LLF: 85.02400654295619
Iteration: 13, Func. Count: 139, Neg. LLF: 85.02398488689657
Iteration: 14, Func. Count: 149, Neg. LLF: 85.0239824914208
Iteration: 15, Func. Count: 158, Neg. LLF: 85.02398255570687
Optimization terminated successfully (Exit mode 0)
Current function value: 85.0239824914208
Iterations: 15
Function evaluations: 158
Gradient evaluations: 15
Iteration: 1, Func. Count: 12, Neg. LLF: 105.36006948746962
Iteration: 2, Func. Count: 24, Neg. LLF: 137.86998597621684
Iteration: 3, Func. Count: 36, Neg. LLF: 114.89102175793973
Iteration: 4, Func. Count: 48, Neg. LLF: 86.96666702967286
Iteration: 5, Func. Count: 60, Neg. LLF: 89.2683479118382
Iteration: 6, Func. Count: 72, Neg. LLF: 85.05119504168769
Iteration: 7, Func. Count: 83, Neg. LLF: 85.17591958883958
Iteration: 8, Func. Count: 95, Neg. LLF: 91.07528291506524
Iteration: 9, Func. Count: 108, Neg. LLF: 85.67524091008107
Iteration: 10, Func. Count: 120, Neg. LLF: 84.62744453542766
Iteration: 11, Func. Count: 131, Neg. LLF: 84.60280259704697
Iteration: 12, Func. Count: 142, Neg. LLF: 84.64901918907461
Iteration: 13, Func. Count: 154, Neg. LLF: 84.58924446845604
Iteration: 14, Func. Count: 165, Neg. LLF: 84.58888458079818
Iteration: 15, Func. Count: 176, Neg. LLF: 84.5888336206736
Iteration: 16, Func. Count: 187, Neg. LLF: 84.58882922550394
Iteration: 17, Func. Count: 197, Neg. LLF: 84.58882922549357
Optimization terminated successfully (Exit mode 0)
Current function value: 84.58882922550394
Iterations: 17
Function evaluations: 197
Gradient evaluations: 17
Iteration: 1, Func. Count: 13, Neg. LLF: 108.99048087546853
Iteration: 2, Func. Count: 26, Neg. LLF: 132.2144541305215
Iteration: 3, Func. Count: 39, Neg. LLF: 263.531072515874
Iteration: 4, Func. Count: 52, Neg. LLF: 89.78244869348269
Iteration: 5, Func. Count: 65, Neg. LLF: 89.13292464275685
Iteration: 6, Func. Count: 78, Neg. LLF: 88.16040774920394
Iteration: 7, Func. Count: 91, Neg. LLF: 86.58937285369906
Iteration: 8, Func. Count: 104, Neg. LLF: 85.0152146886291
Iteration: 9, Func. Count: 116, Neg. LLF: 84.77790215798754
Iteration: 10, Func. Count: 128, Neg. LLF: 85.24979834817773
Iteration: 11, Func. Count: 141, Neg. LLF: 87.5697035521346
Iteration: 12, Func. Count: 154, Neg. LLF: 84.93165686896157
Iteration: 13, Func. Count: 167, Neg. LLF: 84.53463002087643
Iteration: 14, Func. Count: 179, Neg. LLF: 84.49419475321237
Iteration: 15, Func. Count: 191, Neg. LLF: 84.50235074500819
Iteration: 16, Func. Count: 204, Neg. LLF: 84.39876743394296
Iteration: 17, Func. Count: 216, Neg. LLF: 84.38552050392728
Iteration: 18, Func. Count: 228, Neg. LLF: 84.38019241641557
Iteration: 19, Func. Count: 240, Neg. LLF: 84.37638110721969
Iteration: 20, Func. Count: 252, Neg. LLF: 84.3749465893533
Iteration: 21, Func. Count: 264, Neg. LLF: 84.37490140120615
Iteration: 22, Func. Count: 276, Neg. LLF: 84.37489456471178
Iteration: 23, Func. Count: 288, Neg. LLF: 84.3748936510222
Optimization terminated successfully (Exit mode 0)
Current function value: 84.3748936510222
Iterations: 23
Function evaluations: 288
Gradient evaluations: 23
Iteration: 1, Func. Count: 10, Neg. LLF: 139.96335567829354
Iteration: 2, Func. Count: 22, Neg. LLF: 117.22457569808824
Iteration: 3, Func. Count: 33, Neg. LLF: 113.18580533395695
Iteration: 4, Func. Count: 43, Neg. LLF: 287.613983777978
Iteration: 5, Func. Count: 53, Neg. LLF: 87.79096477340438
Iteration: 6, Func. Count: 63, Neg. LLF: 86.07394386951565
Iteration: 7, Func. Count: 73, Neg. LLF: 85.68040785621807
Iteration: 8, Func. Count: 83, Neg. LLF: 85.08406474455566
Iteration: 9, Func. Count: 92, Neg. LLF: 85.00810415363638
Iteration: 10, Func. Count: 101, Neg. LLF: 84.99658578689673
Iteration: 11, Func. Count: 110, Neg. LLF: 84.99313642284943
Iteration: 12, Func. Count: 119, Neg. LLF: 84.9917991314578
Iteration: 13, Func. Count: 128, Neg. LLF: 84.99174323258235
Iteration: 14, Func. Count: 137, Neg. LLF: 84.99174122130107
Iteration: 15, Func. Count: 145, Neg. LLF: 84.99174121331265
Optimization terminated successfully (Exit mode 0)
Current function value: 84.99174122130107
Iterations: 15
Function evaluations: 145
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 114.13420534735077
Iteration: 2, Func. Count: 23, Neg. LLF: 205.81835276252843
Iteration: 3, Func. Count: 34, Neg. LLF: 226.92007817166615
Iteration: 4, Func. Count: 45, Neg. LLF: 92.22123988908477
Iteration: 5, Func. Count: 56, Neg. LLF: 86.50432311237778
Iteration: 6, Func. Count: 67, Neg. LLF: 85.60689606527531
Iteration: 7, Func. Count: 78, Neg. LLF: 85.03271357706613
Iteration: 8, Func. Count: 88, Neg. LLF: 85.23721376679431
Iteration: 9, Func. Count: 99, Neg. LLF: 84.9921317262949
Iteration: 10, Func. Count: 109, Neg. LLF: 84.99294214847544
Iteration: 11, Func. Count: 120, Neg. LLF: 84.99175689311463
Iteration: 12, Func. Count: 130, Neg. LLF: 84.99174996110389
Iteration: 13, Func. Count: 140, Neg. LLF: 84.9917412293481
Iteration: 14, Func. Count: 149, Neg. LLF: 84.99174122976092
Optimization terminated successfully (Exit mode 0)
Current function value: 84.9917412293481
Iterations: 14
Function evaluations: 149
Gradient evaluations: 14
Iteration: 1, Func. Count: 12, Neg. LLF: 130.65113529839007
Iteration: 2, Func. Count: 25, Neg. LLF: 100.65169769220434
Iteration: 3, Func. Count: 37, Neg. LLF: 265.17851639661507
Iteration: 4, Func. Count: 49, Neg. LLF: 96.30173533161266
Iteration: 5, Func. Count: 61, Neg. LLF: 87.7274682063728
Iteration: 6, Func. Count: 73, Neg. LLF: 85.63074960100865
Iteration: 7, Func. Count: 85, Neg. LLF: 85.14285703213733
Iteration: 8, Func. Count: 96, Neg. LLF: 85.63941222374231
Iteration: 9, Func. Count: 108, Neg. LLF: 85.04575717700031
Iteration: 10, Func. Count: 119, Neg. LLF: 84.9988043020364
Iteration: 11, Func. Count: 130, Neg. LLF: 84.9952857623795
Iteration: 12, Func. Count: 141, Neg. LLF: 84.9928174809045
Iteration: 13, Func. Count: 152, Neg. LLF: 84.99196043793125
Iteration: 14, Func. Count: 163, Neg. LLF: 84.99176361540118
Iteration: 15, Func. Count: 174, Neg. LLF: 84.9917412995355
Iteration: 16, Func. Count: 184, Neg. LLF: 84.99174136732275
Optimization terminated successfully (Exit mode 0)
Current function value: 84.9917412995355
Iterations: 16
Function evaluations: 184
Gradient evaluations: 16
Iteration: 1, Func. Count: 13, Neg. LLF: 127.196812068211
Iteration: 2, Func. Count: 27, Neg. LLF: 119.90847682599174
Iteration: 3, Func. Count: 40, Neg. LLF: 316.63872377517697
Iteration: 4, Func. Count: 53, Neg. LLF: 136.49017330062455
Iteration: 5, Func. Count: 66, Neg. LLF: 85.36221664464671
Iteration: 6, Func. Count: 78, Neg. LLF: 86.52474142740436
Iteration: 7, Func. Count: 91, Neg. LLF: 86.14303042367092
Iteration: 8, Func. Count: 104, Neg. LLF: 156.7040103009142
Iteration: 9, Func. Count: 117, Neg. LLF: 84.49208953344207
Iteration: 10, Func. Count: 129, Neg. LLF: 84.73716786004348
Iteration: 11, Func. Count: 142, Neg. LLF: 84.45173419414309
Iteration: 12, Func. Count: 155, Neg. LLF: 84.43643645673352
Iteration: 13, Func. Count: 168, Neg. LLF: 84.41216579988213
Iteration: 14, Func. Count: 180, Neg. LLF: 84.41207043612705
Iteration: 15, Func. Count: 192, Neg. LLF: 84.41205683240652
Iteration: 16, Func. Count: 204, Neg. LLF: 84.41205529047394
Iteration: 17, Func. Count: 215, Neg. LLF: 84.41205529049498
Optimization terminated successfully (Exit mode 0)
Current function value: 84.41205529047394
Iterations: 17
Function evaluations: 215
Gradient evaluations: 17
Iteration: 1, Func. Count: 14, Neg. LLF: 128.2566294613939
Iteration: 2, Func. Count: 29, Neg. LLF: 127.87660145526235
Iteration: 3, Func. Count: 43, Neg. LLF: 110.92421012177441
Iteration: 4, Func. Count: 57, Neg. LLF: 6378.720534599532
Iteration: 5, Func. Count: 71, Neg. LLF: 85.06837420940086
Iteration: 6, Func. Count: 84, Neg. LLF: 85.59779488690472
Iteration: 7, Func. Count: 98, Neg. LLF: 92.91075515937052
Iteration: 8, Func. Count: 112, Neg. LLF: 88.98808566165873
Iteration: 9, Func. Count: 126, Neg. LLF: 89.05041269199035
Iteration: 10, Func. Count: 140, Neg. LLF: 86.16039313041986
Iteration: 11, Func. Count: 154, Neg. LLF: 84.35001981563462
Iteration: 12, Func. Count: 168, Neg. LLF: 83.9480267370939
Iteration: 13, Func. Count: 181, Neg. LLF: 83.93903708255391
Iteration: 14, Func. Count: 194, Neg. LLF: 83.93819281829016
Iteration: 15, Func. Count: 207, Neg. LLF: 83.93701278916899
Iteration: 16, Func. Count: 220, Neg. LLF: 83.93700144986752
Iteration: 17, Func. Count: 233, Neg. LLF: 83.93699768061927
Iteration: 18, Func. Count: 245, Neg. LLF: 83.93699768060804
Optimization terminated successfully (Exit mode 0)
Current function value: 83.93699768061927
Iterations: 18
Function evaluations: 245
Gradient evaluations: 18
Iteration: 1, Func. Count: 11, Neg. LLF: 129.3117039832696
Iteration: 2, Func. Count: 24, Neg. LLF: 117.44462976029025
Iteration: 3, Func. Count: 36, Neg. LLF: 114.18696491071097
Iteration: 4, Func. Count: 47, Neg. LLF: 99.15377254799405
Iteration: 5, Func. Count: 58, Neg. LLF: 94.54687109444176
Iteration: 6, Func. Count: 69, Neg. LLF: 86.47599610581564
Iteration: 7, Func. Count: 80, Neg. LLF: 85.6879402533008
Iteration: 8, Func. Count: 91, Neg. LLF: 85.36705947178837
Iteration: 9, Func. Count: 102, Neg. LLF: 85.10793582172083
Iteration: 10, Func. Count: 112, Neg. LLF: 85.01921604961224
Iteration: 11, Func. Count: 122, Neg. LLF: 84.99967935323617
Iteration: 12, Func. Count: 132, Neg. LLF: 84.99321048848323
Iteration: 13, Func. Count: 142, Neg. LLF: 84.99188791491284
Iteration: 14, Func. Count: 152, Neg. LLF: 84.99174411846327
Iteration: 15, Func. Count: 162, Neg. LLF: 84.99174124128834
Iteration: 16, Func. Count: 171, Neg. LLF: 84.99174132240859
Optimization terminated successfully (Exit mode 0)
Current function value: 84.99174124128834
Iterations: 16
Function evaluations: 171
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 98.91089285796072
Iteration: 2, Func. Count: 24, Neg. LLF: 95.34230048307346
Iteration: 3, Func. Count: 36, Neg. LLF: 4231.99968692595
Iteration: 4, Func. Count: 48, Neg. LLF: 129.4246467240792
Iteration: 5, Func. Count: 60, Neg. LLF: 86.11654885965086
Iteration: 6, Func. Count: 72, Neg. LLF: 86.31891416710263
Iteration: 7, Func. Count: 84, Neg. LLF: 85.89632773222428
Iteration: 8, Func. Count: 96, Neg. LLF: 85.13882063910724
Iteration: 9, Func. Count: 107, Neg. LLF: 85.00381936599261
Iteration: 10, Func. Count: 118, Neg. LLF: 84.99475513284625
Iteration: 11, Func. Count: 129, Neg. LLF: 84.99291585742316
Iteration: 12, Func. Count: 140, Neg. LLF: 84.99245706809579
Iteration: 13, Func. Count: 151, Neg. LLF: 84.99179750661116
Iteration: 14, Func. Count: 162, Neg. LLF: 84.99174298878279
Iteration: 15, Func. Count: 173, Neg. LLF: 84.99174119070014
Iteration: 16, Func. Count: 183, Neg. LLF: 84.99174119110774
Optimization terminated successfully (Exit mode 0)
Current function value: 84.99174119070014
Iterations: 16
Function evaluations: 183
Gradient evaluations: 16
Iteration: 1, Func. Count: 13, Neg. LLF: 102.7256253968554
Iteration: 2, Func. Count: 26, Neg. LLF: 103.25163296243996
Iteration: 3, Func. Count: 40, Neg. LLF: 115.9007020550599
Iteration: 4, Func. Count: 53, Neg. LLF: 89.07381465479887
Iteration: 5, Func. Count: 66, Neg. LLF: 86.1529470003741
Iteration: 6, Func. Count: 79, Neg. LLF: 85.58838082190049
Iteration: 7, Func. Count: 92, Neg. LLF: 86.32415266197332
Iteration: 8, Func. Count: 105, Neg. LLF: 85.02604790165195
Iteration: 9, Func. Count: 117, Neg. LLF: 84.99414667998016
Iteration: 10, Func. Count: 129, Neg. LLF: 84.99222963951578
Iteration: 11, Func. Count: 141, Neg. LLF: 84.99189520959985
Iteration: 12, Func. Count: 153, Neg. LLF: 84.99176033788486
Iteration: 13, Func. Count: 165, Neg. LLF: 84.99174196367872
Iteration: 14, Func. Count: 177, Neg. LLF: 84.99174116805419
Optimization terminated successfully (Exit mode 0)
Current function value: 84.99174116805419
Iterations: 14
Function evaluations: 177
Gradient evaluations: 14
Iteration: 1, Func. Count: 14, Neg. LLF: 106.47772017721125
Iteration: 2, Func. Count: 28, Neg. LLF: 107.86228289461499
Iteration: 3, Func. Count: 43, Neg. LLF: 524.5475101107083
Iteration: 4, Func. Count: 57, Neg. LLF: 91.99551753111457
Iteration: 5, Func. Count: 71, Neg. LLF: 85.52176225563073
Iteration: 6, Func. Count: 84, Neg. LLF: 86.54410142762164
Iteration: 7, Func. Count: 98, Neg. LLF: 92.24681507565283
Iteration: 8, Func. Count: 112, Neg. LLF: 84.99079624861146
Iteration: 9, Func. Count: 126, Neg. LLF: 84.62129120539856
Iteration: 10, Func. Count: 140, Neg. LLF: 84.46152366093125
Iteration: 11, Func. Count: 153, Neg. LLF: 84.56794636991457
Iteration: 12, Func. Count: 167, Neg. LLF: 84.41753749218681
Iteration: 13, Func. Count: 180, Neg. LLF: 84.41355547684337
Iteration: 14, Func. Count: 193, Neg. LLF: 84.41226348442896
Iteration: 15, Func. Count: 206, Neg. LLF: 84.41207325606884
Iteration: 16, Func. Count: 219, Neg. LLF: 84.4120551869089
Iteration: 17, Func. Count: 231, Neg. LLF: 84.41205518693232
Optimization terminated successfully (Exit mode 0)
Current function value: 84.4120551869089
Iterations: 17
Function evaluations: 231
Gradient evaluations: 17
Iteration: 1, Func. Count: 15, Neg. LLF: 114.93771130034796
Iteration: 2, Func. Count: 30, Neg. LLF: 105.77634222339854
Iteration: 3, Func. Count: 45, Neg. LLF: 368.4620496993037
Iteration: 4, Func. Count: 60, Neg. LLF: 90.0388281369095
Iteration: 5, Func. Count: 75, Neg. LLF: 87.97637613083096
Iteration: 6, Func. Count: 90, Neg. LLF: 85.15390323418768
Iteration: 7, Func. Count: 104, Neg. LLF: 86.70162147377575
Iteration: 8, Func. Count: 120, Neg. LLF: 87.0677729947865
Iteration: 9, Func. Count: 135, Neg. LLF: 87.67880801220053
Iteration: 10, Func. Count: 150, Neg. LLF: 86.20150136955827
Iteration: 11, Func. Count: 165, Neg. LLF: 84.08340289388391
Iteration: 12, Func. Count: 179, Neg. LLF: 83.98113881532844
Iteration: 13, Func. Count: 193, Neg. LLF: 84.08927941684213
Iteration: 14, Func. Count: 208, Neg. LLF: 83.94503450201749
Iteration: 15, Func. Count: 222, Neg. LLF: 83.93929074212961
Iteration: 16, Func. Count: 236, Neg. LLF: 83.93800568820109
Iteration: 17, Func. Count: 250, Neg. LLF: 83.93702316551884
Iteration: 18, Func. Count: 264, Neg. LLF: 83.93699787122452
Iteration: 19, Func. Count: 277, Neg. LLF: 83.93699787123651
Optimization terminated successfully (Exit mode 0)
Current function value: 83.93699787122452
Iterations: 19
Function evaluations: 277
Gradient evaluations: 19
Iteration: 1, Func. Count: 12, Neg. LLF: 133.7197650797181
Iteration: 2, Func. Count: 26, Neg. LLF: 123.34480848112942
Iteration: 3, Func. Count: 39, Neg. LLF: 227.9881668134143
Iteration: 4, Func. Count: 51, Neg. LLF: 120.71924678841927
Iteration: 5, Func. Count: 63, Neg. LLF: 111.5306319156038
Iteration: 6, Func. Count: 75, Neg. LLF: 90.59816698017191
Iteration: 7, Func. Count: 87, Neg. LLF: 87.80382949068556
Iteration: 8, Func. Count: 99, Neg. LLF: 84.9334724231323
Iteration: 9, Func. Count: 110, Neg. LLF: 84.7975799897234
Iteration: 10, Func. Count: 121, Neg. LLF: 84.75328103392867
Iteration: 11, Func. Count: 132, Neg. LLF: 84.72677985907127
Iteration: 12, Func. Count: 143, Neg. LLF: 84.72095546860731
Iteration: 13, Func. Count: 154, Neg. LLF: 84.72046442846786
Iteration: 14, Func. Count: 165, Neg. LLF: 84.72042884594927
Iteration: 15, Func. Count: 176, Neg. LLF: 84.72042768616126
Iteration: 16, Func. Count: 186, Neg. LLF: 84.72042767032642
Optimization terminated successfully (Exit mode 0)
Current function value: 84.72042768616126
Iterations: 16
Function evaluations: 186
Gradient evaluations: 16
Iteration: 1, Func. Count: 13, Neg. LLF: 105.51264032920645
Iteration: 2, Func. Count: 26, Neg. LLF: 160.502044854906
Iteration: 3, Func. Count: 39, Neg. LLF: 1296634.8235724026
Iteration: 4, Func. Count: 52, Neg. LLF: 87.39910465226033
Iteration: 5, Func. Count: 66, Neg. LLF: 85.80755617996593
Iteration: 6, Func. Count: 79, Neg. LLF: 85.69102618242206
Iteration: 7, Func. Count: 92, Neg. LLF: 85.94752674433168
Iteration: 8, Func. Count: 105, Neg. LLF: 84.68956994179929
Iteration: 9, Func. Count: 117, Neg. LLF: 84.74268052040165
Iteration: 10, Func. Count: 130, Neg. LLF: 84.65294750365001
Iteration: 11, Func. Count: 142, Neg. LLF: 84.63814249409546
Iteration: 12, Func. Count: 154, Neg. LLF: 84.6345234682469
Iteration: 13, Func. Count: 166, Neg. LLF: 84.63383508129787
Iteration: 14, Func. Count: 178, Neg. LLF: 84.63362249219479
Iteration: 15, Func. Count: 190, Neg. LLF: 84.6336204972587
Iteration: 16, Func. Count: 201, Neg. LLF: 84.63362049728822
Optimization terminated successfully (Exit mode 0)
Current function value: 84.6336204972587
Iterations: 16
Function evaluations: 201
Gradient evaluations: 16
Iteration: 1, Func. Count: 14, Neg. LLF: 101.43070347454541
Iteration: 2, Func. Count: 28, Neg. LLF: 106.45271548229208
Iteration: 3, Func. Count: 42, Neg. LLF: 122.18537373375784
Iteration: 4, Func. Count: 56, Neg. LLF: 86.72608690174553
Iteration: 5, Func. Count: 70, Neg. LLF: 85.68348788942102
Iteration: 6, Func. Count: 84, Neg. LLF: 85.23984959289326
Iteration: 7, Func. Count: 98, Neg. LLF: 87.17698231042961
Iteration: 8, Func. Count: 112, Neg. LLF: 84.78810952363001
Iteration: 9, Func. Count: 125, Neg. LLF: 84.71701602951262
Iteration: 10, Func. Count: 138, Neg. LLF: 84.68336156263553
Iteration: 11, Func. Count: 151, Neg. LLF: 84.64345622107079
Iteration: 12, Func. Count: 164, Neg. LLF: 84.63701631228425
Iteration: 13, Func. Count: 177, Neg. LLF: 84.63400320330014
Iteration: 14, Func. Count: 190, Neg. LLF: 84.63369370795995
Iteration: 15, Func. Count: 203, Neg. LLF: 84.63362329518962
Iteration: 16, Func. Count: 216, Neg. LLF: 84.63362063572755
Iteration: 17, Func. Count: 228, Neg. LLF: 84.63362068551928
Optimization terminated successfully (Exit mode 0)
Current function value: 84.63362063572755
Iterations: 17
Function evaluations: 228
Gradient evaluations: 17
Iteration: 1, Func. Count: 15, Neg. LLF: 102.5720845449747
Iteration: 2, Func. Count: 30, Neg. LLF: 114.05205560236332
Iteration: 3, Func. Count: 45, Neg. LLF: 108.72429445327109
Iteration: 4, Func. Count: 60, Neg. LLF: 84.96026916552401
Iteration: 5, Func. Count: 74, Neg. LLF: 85.27843525880368
Iteration: 6, Func. Count: 89, Neg. LLF: 86.15790594554305
Iteration: 7, Func. Count: 104, Neg. LLF: 84.82431094472531
Iteration: 8, Func. Count: 119, Neg. LLF: 84.61664253028339
Iteration: 9, Func. Count: 134, Neg. LLF: 85.28044373711244
Iteration: 10, Func. Count: 149, Neg. LLF: 84.41330228145134
Iteration: 11, Func. Count: 163, Neg. LLF: 84.41284731001377
Iteration: 12, Func. Count: 177, Neg. LLF: 84.41209166856966
Iteration: 13, Func. Count: 191, Neg. LLF: 84.41205774586258
Iteration: 14, Func. Count: 205, Neg. LLF: 84.41205509365929
Iteration: 15, Func. Count: 218, Neg. LLF: 84.41205509362672
Optimization terminated successfully (Exit mode 0)
Current function value: 84.41205509365929
Iterations: 15
Function evaluations: 218
Gradient evaluations: 15
Iteration: 1, Func. Count: 16, Neg. LLF: 107.38455484144029
Iteration: 2, Func. Count: 32, Neg. LLF: 114.53386318191994
Iteration: 3, Func. Count: 48, Neg. LLF: 106.59690452794715
Iteration: 4, Func. Count: 64, Neg. LLF: 85.37356749248613
Iteration: 5, Func. Count: 79, Neg. LLF: 86.5564054932497
Iteration: 6, Func. Count: 95, Neg. LLF: 107.3944541362004
Iteration: 7, Func. Count: 111, Neg. LLF: 150.66811544187811
Iteration: 8, Func. Count: 127, Neg. LLF: 201.57685702794046
Iteration: 9, Func. Count: 143, Neg. LLF: 95.99111303731313
Iteration: 10, Func. Count: 159, Neg. LLF: 86.54492564181344
Iteration: 11, Func. Count: 175, Neg. LLF: 86.04912688045059
Iteration: 12, Func. Count: 191, Neg. LLF: 84.1871085743883
Iteration: 13, Func. Count: 207, Neg. LLF: 84.54012924798184
Iteration: 14, Func. Count: 223, Neg. LLF: 83.85511900200211
Iteration: 15, Func. Count: 238, Neg. LLF: 83.8377878398065
Iteration: 16, Func. Count: 253, Neg. LLF: 83.8355558510022
Iteration: 17, Func. Count: 268, Neg. LLF: 83.83550870819653
Iteration: 18, Func. Count: 283, Neg. LLF: 83.8354617037952
Iteration: 19, Func. Count: 298, Neg. LLF: 83.83545777185657
Iteration: 20, Func. Count: 312, Neg. LLF: 83.83545777187643
Optimization terminated successfully (Exit mode 0)
Current function value: 83.83545777185657
Iterations: 20
Function evaluations: 312
Gradient evaluations: 20
Iteration: 1, Func. Count: 5, Neg. LLF: 140.9445589368247
Iteration: 2, Func. Count: 12, Neg. LLF: 141.06640143326354
Iteration: 3, Func. Count: 18, Neg. LLF: 86.56545456841597
Iteration: 4, Func. Count: 22, Neg. LLF: 86.56715241661719
Iteration: 5, Func. Count: 27, Neg. LLF: 86.48119140154701
Iteration: 6, Func. Count: 32, Neg. LLF: 86.46421519892107
Iteration: 7, Func. Count: 36, Neg. LLF: 86.46419762398446
Iteration: 8, Func. Count: 39, Neg. LLF: 86.46419762399003
Optimization terminated successfully (Exit mode 0)
Current function value: 86.46419762398446
Iterations: 8
Function evaluations: 39
Gradient evaluations: 8
Iteration: 1, Func. Count: 5, Neg. LLF: 123.43429112749499
Iteration: 2, Func. Count: 13, Neg. LLF: 85.90808751500518
Iteration: 3, Func. Count: 18, Neg. LLF: 84.53647062206593
Iteration: 4, Func. Count: 22, Neg. LLF: 84.5322897566653
Iteration: 5, Func. Count: 26, Neg. LLF: 84.5305018856303
Iteration: 6, Func. Count: 30, Neg. LLF: 84.53026972652277
Iteration: 7, Func. Count: 34, Neg. LLF: 84.53023765711984
Iteration: 8, Func. Count: 37, Neg. LLF: 84.53023766863531
Optimization terminated successfully (Exit mode 0)
Current function value: 84.53023765711984
Iterations: 8
Function evaluations: 37
Gradient evaluations: 8
Iteration: 1, Func. Count: 6, Neg. LLF: 29131011.44363759
Iteration: 2, Func. Count: 13, Neg. LLF: 90.5925524903159
Iteration: 3, Func. Count: 20, Neg. LLF: 84.6765934347375
Iteration: 4, Func. Count: 26, Neg. LLF: 84.37241207576676
Iteration: 5, Func. Count: 31, Neg. LLF: 84.37221910090351
Iteration: 6, Func. Count: 36, Neg. LLF: 84.37220246266794
Iteration: 7, Func. Count: 41, Neg. LLF: 84.37220054367504
Iteration: 8, Func. Count: 45, Neg. LLF: 84.37220054399107
Optimization terminated successfully (Exit mode 0)
Current function value: 84.37220054367504
Iterations: 8
Function evaluations: 45
Gradient evaluations: 8
Iteration: 1, Func. Count: 7, Neg. LLF: 27900483.26334467
Iteration: 2, Func. Count: 15, Neg. LLF: 85.38021468645707
Iteration: 3, Func. Count: 23, Neg. LLF: 84.4009861325897
Iteration: 4, Func. Count: 29, Neg. LLF: 84.38316665494263
Iteration: 5, Func. Count: 35, Neg. LLF: 84.38150061918667
Iteration: 6, Func. Count: 41, Neg. LLF: 84.38087497600824
Iteration: 7, Func. Count: 47, Neg. LLF: 84.38075378334625
Iteration: 8, Func. Count: 53, Neg. LLF: 84.3803940783983
Iteration: 9, Func. Count: 59, Neg. LLF: 84.3707778834973
Iteration: 10, Func. Count: 65, Neg. LLF: 84.36834688418993
Iteration: 11, Func. Count: 71, Neg. LLF: 84.36711732170262
Iteration: 12, Func. Count: 77, Neg. LLF: 84.36661934520376
Iteration: 13, Func. Count: 83, Neg. LLF: 84.36658906849475
Iteration: 14, Func. Count: 89, Neg. LLF: 84.36658802581756
Iteration: 15, Func. Count: 94, Neg. LLF: 84.36658802573378
Optimization terminated successfully (Exit mode 0)
Current function value: 84.36658802581756
Iterations: 15
Function evaluations: 94
Gradient evaluations: 15
Iteration: 1, Func. Count: 8, Neg. LLF: 28059479.19689521
Iteration: 2, Func. Count: 17, Neg. LLF: 85.7188077171705
Iteration: 3, Func. Count: 26, Neg. LLF: 84.39846905344196
Iteration: 4, Func. Count: 33, Neg. LLF: 84.39575378259136
Iteration: 5, Func. Count: 40, Neg. LLF: 84.38942799567492
Iteration: 6, Func. Count: 47, Neg. LLF: 84.38206868762354
Iteration: 7, Func. Count: 54, Neg. LLF: 84.38141059382913
Iteration: 8, Func. Count: 61, Neg. LLF: 84.38128373055348
Iteration: 9, Func. Count: 68, Neg. LLF: 84.38127429135116
Iteration: 10, Func. Count: 75, Neg. LLF: 84.38123574458817
Iteration: 11, Func. Count: 82, Neg. LLF: 84.38015800313747
Iteration: 12, Func. Count: 89, Neg. LLF: 84.37167541362147
Iteration: 13, Func. Count: 96, Neg. LLF: 84.37106202144838
Iteration: 14, Func. Count: 103, Neg. LLF: 84.36972681496627
Iteration: 15, Func. Count: 110, Neg. LLF: 84.36876782034037
Iteration: 16, Func. Count: 117, Neg. LLF: 84.36728216499992
Iteration: 17, Func. Count: 124, Neg. LLF: 84.36675310645913
Iteration: 18, Func. Count: 131, Neg. LLF: 84.36659315683485
Iteration: 19, Func. Count: 138, Neg. LLF: 84.36658782623371
Iteration: 20, Func. Count: 144, Neg. LLF: 84.36658782794656
Optimization terminated successfully (Exit mode 0)
Current function value: 84.36658782623371
Iterations: 20
Function evaluations: 144
Gradient evaluations: 20
Iteration: 1, Func. Count: 9, Neg. LLF: 28053893.577806126
Iteration: 2, Func. Count: 19, Neg. LLF: 85.76373877127031
Iteration: 3, Func. Count: 29, Neg. LLF: 84.40649447556378
Iteration: 4, Func. Count: 37, Neg. LLF: 84.4192436222588
Iteration: 5, Func. Count: 46, Neg. LLF: 84.4038099480607
Iteration: 6, Func. Count: 54, Neg. LLF: 84.39665681461209
Iteration: 7, Func. Count: 62, Neg. LLF: 84.39096910533351
Iteration: 8, Func. Count: 70, Neg. LLF: 84.38168642651269
Iteration: 9, Func. Count: 78, Neg. LLF: 84.3803796014479
Iteration: 10, Func. Count: 86, Neg. LLF: 84.37888978858221
Iteration: 11, Func. Count: 94, Neg. LLF: 84.37485944036315
Iteration: 12, Func. Count: 102, Neg. LLF: 84.36935590893792
Iteration: 13, Func. Count: 110, Neg. LLF: 84.36899169023614
Iteration: 14, Func. Count: 118, Neg. LLF: 84.36755920601382
Iteration: 15, Func. Count: 126, Neg. LLF: 84.36665203901335
Iteration: 16, Func. Count: 134, Neg. LLF: 84.36658970196373
Iteration: 17, Func. Count: 142, Neg. LLF: 84.36658814352664
Iteration: 18, Func. Count: 149, Neg. LLF: 84.36658814532893
Optimization terminated successfully (Exit mode 0)
Current function value: 84.36658814352664
Iterations: 18
Function evaluations: 149
Gradient evaluations: 18
Iteration: 1, Func. Count: 6, Neg. LLF: 125.78614032460294
Iteration: 2, Func. Count: 15, Neg. LLF: 148.11221696441976
Iteration: 3, Func. Count: 22, Neg. LLF: 84.55154621853839
Iteration: 4, Func. Count: 27, Neg. LLF: 84.53162436248635
Iteration: 5, Func. Count: 32, Neg. LLF: 84.49826679078453
Iteration: 6, Func. Count: 37, Neg. LLF: 84.49489825054083
Iteration: 7, Func. Count: 42, Neg. LLF: 84.49436586441401
Iteration: 8, Func. Count: 47, Neg. LLF: 84.49436113924916
Iteration: 9, Func. Count: 51, Neg. LLF: 84.49436113925869
Optimization terminated successfully (Exit mode 0)
Current function value: 84.49436113924916
Iterations: 9
Function evaluations: 51
Gradient evaluations: 9
Iteration: 1, Func. Count: 7, Neg. LLF: 28810867.84092043
Iteration: 2, Func. Count: 15, Neg. LLF: 89.65733224251689
Iteration: 3, Func. Count: 23, Neg. LLF: 84.71073462089062
Iteration: 4, Func. Count: 30, Neg. LLF: 84.372317866676
Iteration: 5, Func. Count: 36, Neg. LLF: 84.37221388929522
Iteration: 6, Func. Count: 42, Neg. LLF: 84.3722009950332
Iteration: 7, Func. Count: 47, Neg. LLF: 84.37220099536133
Optimization terminated successfully (Exit mode 0)
Current function value: 84.3722009950332
Iterations: 7
Function evaluations: 47
Gradient evaluations: 7
Iteration: 1, Func. Count: 8, Neg. LLF: 27686323.964423764
Iteration: 2, Func. Count: 17, Neg. LLF: 85.19232133669202
Iteration: 3, Func. Count: 26, Neg. LLF: 84.41122005193637
Iteration: 4, Func. Count: 34, Neg. LLF: 84.38098775934225
Iteration: 5, Func. Count: 41, Neg. LLF: 84.78245516707459
Iteration: 6, Func. Count: 50, Neg. LLF: 84.38070424472036
Iteration: 7, Func. Count: 57, Neg. LLF: 84.380436743395
Iteration: 8, Func. Count: 64, Neg. LLF: 84.38356877840177
Iteration: 9, Func. Count: 72, Neg. LLF: 84.3869883121743
Iteration: 10, Func. Count: 80, Neg. LLF: 84.37759935989207
Iteration: 11, Func. Count: 87, Neg. LLF: 84.37544430368015
Iteration: 12, Func. Count: 94, Neg. LLF: 84.37402388305938
Iteration: 13, Func. Count: 101, Neg. LLF: 84.36812535600816
Iteration: 14, Func. Count: 108, Neg. LLF: 84.36753620280797
Iteration: 15, Func. Count: 115, Neg. LLF: 84.3666252558463
Iteration: 16, Func. Count: 122, Neg. LLF: 84.36659091635416
Iteration: 17, Func. Count: 129, Neg. LLF: 84.36658781769334
Iteration: 18, Func. Count: 135, Neg. LLF: 84.36658781771082
Optimization terminated successfully (Exit mode 0)
Current function value: 84.36658781769334
Iterations: 18
Function evaluations: 135
Gradient evaluations: 18
Iteration: 1, Func. Count: 9, Neg. LLF: 27712788.734877434
Iteration: 2, Func. Count: 19, Neg. LLF: 149.01460255807268
Iteration: 3, Func. Count: 29, Neg. LLF: 84.33417440794962
Iteration: 4, Func. Count: 37, Neg. LLF: 84.9265513038954
Iteration: 5, Func. Count: 46, Neg. LLF: 84.27267211404263
Iteration: 6, Func. Count: 54, Neg. LLF: 84.27894608908954
Iteration: 7, Func. Count: 63, Neg. LLF: 84.26173078012332
Iteration: 8, Func. Count: 71, Neg. LLF: 84.25932030918794
Iteration: 9, Func. Count: 79, Neg. LLF: 84.25919305409819
Iteration: 10, Func. Count: 87, Neg. LLF: 84.25916767949826
Iteration: 11, Func. Count: 94, Neg. LLF: 84.25916767946308
Optimization terminated successfully (Exit mode 0)
Current function value: 84.25916767949826
Iterations: 11
Function evaluations: 94
Gradient evaluations: 11
Iteration: 1, Func. Count: 10, Neg. LLF: 27740805.50190132
Iteration: 2, Func. Count: 21, Neg. LLF: 111.13168016742738
Iteration: 3, Func. Count: 32, Neg. LLF: 84.35165510918351
Iteration: 4, Func. Count: 41, Neg. LLF: 85.11547765728939
Iteration: 5, Func. Count: 51, Neg. LLF: 84.37456721190482
Iteration: 6, Func. Count: 61, Neg. LLF: 84.29899448652544
Iteration: 7, Func. Count: 70, Neg. LLF: 84.26901619214347
Iteration: 8, Func. Count: 79, Neg. LLF: 84.26107434904897
Iteration: 9, Func. Count: 88, Neg. LLF: 84.25961454864586
Iteration: 10, Func. Count: 97, Neg. LLF: 84.25919624914549
Iteration: 11, Func. Count: 106, Neg. LLF: 84.25917074169375
Iteration: 12, Func. Count: 115, Neg. LLF: 84.2591677885446
Iteration: 13, Func. Count: 123, Neg. LLF: 84.25916779257632
Optimization terminated successfully (Exit mode 0)
Current function value: 84.2591677885446
Iterations: 13
Function evaluations: 123
Gradient evaluations: 13
Iteration: 1, Func. Count: 7, Neg. LLF: 132.77298042589305
Iteration: 2, Func. Count: 17, Neg. LLF: 192.09462503776436
Iteration: 3, Func. Count: 25, Neg. LLF: 84.55426819532472
Iteration: 4, Func. Count: 31, Neg. LLF: 84.5055377226506
Iteration: 5, Func. Count: 37, Neg. LLF: 84.4951931849998
Iteration: 6, Func. Count: 43, Neg. LLF: 84.49437808811095
Iteration: 7, Func. Count: 49, Neg. LLF: 84.4943611600127
Iteration: 8, Func. Count: 54, Neg. LLF: 84.49436124072082
Optimization terminated successfully (Exit mode 0)
Current function value: 84.4943611600127
Iterations: 8
Function evaluations: 54
Gradient evaluations: 8
Iteration: 1, Func. Count: 8, Neg. LLF: 28803059.586352814
Iteration: 2, Func. Count: 17, Neg. LLF: 89.62593112129149
Iteration: 3, Func. Count: 26, Neg. LLF: 84.69431354501306
Iteration: 4, Func. Count: 34, Neg. LLF: 84.37232925788865
Iteration: 5, Func. Count: 41, Neg. LLF: 84.37220811891666
Iteration: 6, Func. Count: 48, Neg. LLF: 84.37220088024651
Iteration: 7, Func. Count: 54, Neg. LLF: 84.37220088057751
Optimization terminated successfully (Exit mode 0)
Current function value: 84.37220088024651
Iterations: 7
Function evaluations: 54
Gradient evaluations: 7
Iteration: 1, Func. Count: 9, Neg. LLF: 27633436.82102666
Iteration: 2, Func. Count: 19, Neg. LLF: 85.1656669900761
Iteration: 3, Func. Count: 29, Neg. LLF: 84.42657551408404
Iteration: 4, Func. Count: 38, Neg. LLF: 84.3809164130407
Iteration: 5, Func. Count: 46, Neg. LLF: 84.9433426514958
Iteration: 6, Func. Count: 56, Neg. LLF: 84.38054506129974
Iteration: 7, Func. Count: 64, Neg. LLF: 84.38023881833105
Iteration: 8, Func. Count: 72, Neg. LLF: 84.38163354320574
Iteration: 9, Func. Count: 81, Neg. LLF: 84.37850797543551
Iteration: 10, Func. Count: 89, Neg. LLF: 84.37335839819067
Iteration: 11, Func. Count: 97, Neg. LLF: 84.3676910260258
Iteration: 12, Func. Count: 105, Neg. LLF: 84.36699294609728
Iteration: 13, Func. Count: 113, Neg. LLF: 84.38512663754487
Iteration: 14, Func. Count: 122, Neg. LLF: 84.36474406180969
Iteration: 15, Func. Count: 131, Neg. LLF: 85.4521326474126
Iteration: 16, Func. Count: 140, Neg. LLF: 84.37035166488484
Iteration: 17, Func. Count: 149, Neg. LLF: 84.3163577917391
Iteration: 18, Func. Count: 157, Neg. LLF: 84.28167488835332
Iteration: 19, Func. Count: 165, Neg. LLF: 84.26190662449933
Iteration: 20, Func. Count: 173, Neg. LLF: 84.23390421927486
Iteration: 21, Func. Count: 181, Neg. LLF: 84.2307371365798
Iteration: 22, Func. Count: 189, Neg. LLF: 84.23033746156601
Iteration: 23, Func. Count: 207, Neg. LLF: 84.23059470058115
Iteration: 24, Func. Count: 215, Neg. LLF: 84.230803268583
Iteration: 25, Func. Count: 233, Neg. LLF: 84.35120680038614
Iteration: 26, Func. Count: 251, Neg. LLF: 84.24322926618275
Iteration: 27, Func. Count: 261, Neg. LLF: 84.24627665997502
Iteration: 28, Func. Count: 271, Neg. LLF: 84.23231505730291
Iteration: 29, Func. Count: 281, Neg. LLF: 84.23092103356424
Iteration: 30, Func. Count: 289, Neg. LLF: 84.23091950457255
Iteration: 31, Func. Count: 296, Neg. LLF: 84.2309194956176
Optimization terminated successfully (Exit mode 0)
Current function value: 84.23091950457255
Iterations: 32
Function evaluations: 296
Gradient evaluations: 31
Iteration: 1, Func. Count: 10, Neg. LLF: 27665862.994220894
Iteration: 2, Func. Count: 21, Neg. LLF: 157.17154636839217
Iteration: 3, Func. Count: 32, Neg. LLF: 84.33926146257524
Iteration: 4, Func. Count: 41, Neg. LLF: 84.95672097086879
Iteration: 5, Func. Count: 51, Neg. LLF: 84.27961182755409
Iteration: 6, Func. Count: 60, Neg. LLF: 84.3322491996002
Iteration: 7, Func. Count: 70, Neg. LLF: 84.26697109379285
Iteration: 8, Func. Count: 79, Neg. LLF: 84.26239443644137
Iteration: 9, Func. Count: 88, Neg. LLF: 84.25966013509183
Iteration: 10, Func. Count: 97, Neg. LLF: 84.25924699681565
Iteration: 11, Func. Count: 106, Neg. LLF: 84.25916814274525
Iteration: 12, Func. Count: 115, Neg. LLF: 84.25916745494303
Optimization terminated successfully (Exit mode 0)
Current function value: 84.25916745494303
Iterations: 12
Function evaluations: 115
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 27659840.85812789
Iteration: 2, Func. Count: 23, Neg. LLF: 112.13917941187424
Iteration: 3, Func. Count: 35, Neg. LLF: 84.35647229228965
Iteration: 4, Func. Count: 45, Neg. LLF: 84.3338625176911
Iteration: 5, Func. Count: 55, Neg. LLF: 84.84730807083332
Iteration: 6, Func. Count: 66, Neg. LLF: 85.24383180666926
Iteration: 7, Func. Count: 77, Neg. LLF: 84.28153787497637
Iteration: 8, Func. Count: 87, Neg. LLF: 84.26543468589071
Iteration: 9, Func. Count: 97, Neg. LLF: 84.26368615820472
Iteration: 10, Func. Count: 107, Neg. LLF: 84.25947269881462
Iteration: 11, Func. Count: 117, Neg. LLF: 84.2592078940366
Iteration: 12, Func. Count: 127, Neg. LLF: 84.25916793536894
Iteration: 13, Func. Count: 136, Neg. LLF: 84.25916793943317
Optimization terminated successfully (Exit mode 0)
Current function value: 84.25916793536894
Iterations: 13
Function evaluations: 136
Gradient evaluations: 13
Iteration: 1, Func. Count: 8, Neg. LLF: 125.84050798904849
Iteration: 2, Func. Count: 19, Neg. LLF: 152.8609219734306
Iteration: 3, Func. Count: 28, Neg. LLF: 84.56891515857113
Iteration: 4, Func. Count: 35, Neg. LLF: 84.50085496097105
Iteration: 5, Func. Count: 42, Neg. LLF: 84.4945239926412
Iteration: 6, Func. Count: 49, Neg. LLF: 84.49436768431555
Iteration: 7, Func. Count: 56, Neg. LLF: 84.49436114614765
Iteration: 8, Func. Count: 62, Neg. LLF: 84.49436117047979
Optimization terminated successfully (Exit mode 0)
Current function value: 84.49436114614765
Iterations: 8
Function evaluations: 62
Gradient evaluations: 8
Iteration: 1, Func. Count: 9, Neg. LLF: 28853804.637180958
Iteration: 2, Func. Count: 19, Neg. LLF: 137.33729445121944
Iteration: 3, Func. Count: 29, Neg. LLF: 86.02048588099551
Iteration: 4, Func. Count: 39, Neg. LLF: 84.4226348041677
Iteration: 5, Func. Count: 48, Neg. LLF: 84.36863885246214
Iteration: 6, Func. Count: 56, Neg. LLF: 84.36775348345878
Iteration: 7, Func. Count: 64, Neg. LLF: 84.36751279534933
Iteration: 8, Func. Count: 72, Neg. LLF: 84.3675042941305
Iteration: 9, Func. Count: 80, Neg. LLF: 84.3675036435904
Optimization terminated successfully (Exit mode 0)
Current function value: 84.3675036435904
Iterations: 9
Function evaluations: 80
Gradient evaluations: 9
Iteration: 1, Func. Count: 10, Neg. LLF: 27741055.48582023
Iteration: 2, Func. Count: 21, Neg. LLF: 85.26767162168744
Iteration: 3, Func. Count: 32, Neg. LLF: 84.42366180525099
Iteration: 4, Func. Count: 42, Neg. LLF: 84.3810668289519
Iteration: 5, Func. Count: 51, Neg. LLF: 84.86947848233937
Iteration: 6, Func. Count: 62, Neg. LLF: 84.380816692459
Iteration: 7, Func. Count: 71, Neg. LLF: 84.38060754037767
Iteration: 8, Func. Count: 80, Neg. LLF: 84.38040999199065
Iteration: 9, Func. Count: 90, Neg. LLF: 84.37931709012275
Iteration: 10, Func. Count: 99, Neg. LLF: 84.37143578700619
Iteration: 11, Func. Count: 108, Neg. LLF: 84.3675043211961
Iteration: 12, Func. Count: 117, Neg. LLF: 84.36680599433214
Iteration: 13, Func. Count: 126, Neg. LLF: 84.36597036809822
Iteration: 14, Func. Count: 135, Neg. LLF: 84.36425795958087
Iteration: 15, Func. Count: 144, Neg. LLF: 84.36085523711775
Iteration: 16, Func. Count: 153, Neg. LLF: 84.35289385293143
Iteration: 17, Func. Count: 162, Neg. LLF: 84.37716521908793
Iteration: 18, Func. Count: 172, Neg. LLF: 84.30355736674574
Iteration: 19, Func. Count: 181, Neg. LLF: 84.33789722533808
Iteration: 20, Func. Count: 191, Neg. LLF: 84.26101409707975
Iteration: 21, Func. Count: 200, Neg. LLF: 84.24849154561397
Iteration: 22, Func. Count: 209, Neg. LLF: 84.23609954109202
Iteration: 23, Func. Count: 218, Neg. LLF: 84.22994425064182
Iteration: 24, Func. Count: 227, Neg. LLF: 84.23663321698322
Iteration: 25, Func. Count: 238, Neg. LLF: 84.23063098310494
Iteration: 26, Func. Count: 247, Neg. LLF: 84.23727153599226
Iteration: 27, Func. Count: 266, Neg. LLF: 84.5957811238258
Iteration: 28, Func. Count: 285, Neg. LLF: 84.3822865437136
Iteration: 29, Func. Count: 304, Neg. LLF: 84.56853487206446
Iteration: 30, Func. Count: 323, Neg. LLF: 84.46346221389769
Iteration: 31, Func. Count: 334, Neg. LLF: 85.61114442752388
Iteration: 32, Func. Count: 346, Neg. LLF: 84.23871102016624
Iteration: 33, Func. Count: 356, Neg. LLF: 84.2324276369935
Iteration: 34, Func. Count: 367, Neg. LLF: 84.23092102410737
Iteration: 35, Func. Count: 376, Neg. LLF: 84.23091940170656
Iteration: 36, Func. Count: 384, Neg. LLF: 84.23091939288595
Optimization terminated successfully (Exit mode 0)
Current function value: 84.23091940170656
Iterations: 37
Function evaluations: 384
Gradient evaluations: 36
Iteration: 1, Func. Count: 11, Neg. LLF: 27751820.814415123
Iteration: 2, Func. Count: 23, Neg. LLF: 191.77401469191014
Iteration: 3, Func. Count: 35, Neg. LLF: 84.33658304689607
Iteration: 4, Func. Count: 45, Neg. LLF: 84.78476496747565
Iteration: 5, Func. Count: 56, Neg. LLF: 84.27416966914035
Iteration: 6, Func. Count: 66, Neg. LLF: 84.2846869756874
Iteration: 7, Func. Count: 77, Neg. LLF: 84.26274872732536
Iteration: 8, Func. Count: 87, Neg. LLF: 84.25941981702104
Iteration: 9, Func. Count: 97, Neg. LLF: 84.2592086308918
Iteration: 10, Func. Count: 107, Neg. LLF: 84.25916779916538
Iteration: 11, Func. Count: 116, Neg. LLF: 84.2591677990935
Optimization terminated successfully (Exit mode 0)
Current function value: 84.25916779916538
Iterations: 11
Function evaluations: 116
Gradient evaluations: 11
Iteration: 1, Func. Count: 12, Neg. LLF: 27766244.30676449
Iteration: 2, Func. Count: 25, Neg. LLF: 120.69113447797484
Iteration: 3, Func. Count: 38, Neg. LLF: 84.35716040677511
Iteration: 4, Func. Count: 49, Neg. LLF: 84.68227941973795
Iteration: 5, Func. Count: 61, Neg. LLF: 84.32989268050531
Iteration: 6, Func. Count: 73, Neg. LLF: 84.27645020717901
Iteration: 7, Func. Count: 84, Neg. LLF: 84.26672154713556
Iteration: 8, Func. Count: 95, Neg. LLF: 84.26067090480797
Iteration: 9, Func. Count: 106, Neg. LLF: 84.2593509520015
Iteration: 10, Func. Count: 117, Neg. LLF: 84.25917545607297
Iteration: 11, Func. Count: 128, Neg. LLF: 84.25916800060908
Iteration: 12, Func. Count: 138, Neg. LLF: 84.25916800473108
Optimization terminated successfully (Exit mode 0)
Current function value: 84.25916800060908
Iterations: 12
Function evaluations: 138
Gradient evaluations: 12
Iteration: 1, Func. Count: 5, Neg. LLF: 140.89837935424845
Iteration: 2, Func. Count: 12, Neg. LLF: 141.9364826467471
Iteration: 3, Func. Count: 18, Neg. LLF: 84.1677467485569
Iteration: 4, Func. Count: 22, Neg. LLF: 84.10641598584401
Iteration: 5, Func. Count: 26, Neg. LLF: 84.6818647920263
Iteration: 6, Func. Count: 31, Neg. LLF: 84.16042397450624
Iteration: 7, Func. Count: 36, Neg. LLF: 84.00066140696954
Iteration: 8, Func. Count: 40, Neg. LLF: 84.00048856366509
Iteration: 9, Func. Count: 44, Neg. LLF: 84.00048713273365
Iteration: 10, Func. Count: 47, Neg. LLF: 84.00048713272047
Optimization terminated successfully (Exit mode 0)
Current function value: 84.00048713273365
Iterations: 10
Function evaluations: 47
Gradient evaluations: 10
Iteration: 1, Func. Count: 6, Neg. LLF: 182.57062566005027
Iteration: 2, Func. Count: 13, Neg. LLF: 86.55584540226026
Iteration: 3, Func. Count: 20, Neg. LLF: 87.26321435099275
Iteration: 4, Func. Count: 26, Neg. LLF: 83.76146701812704
Iteration: 5, Func. Count: 32, Neg. LLF: 83.75513529140778
Iteration: 6, Func. Count: 37, Neg. LLF: 83.75486703403843
Iteration: 7, Func. Count: 41, Neg. LLF: 83.75486703405137
Optimization terminated successfully (Exit mode 0)
Current function value: 83.75486703403843
Iterations: 7
Function evaluations: 41
Gradient evaluations: 7
Iteration: 1, Func. Count: 7, Neg. LLF: 141.17081499279465
Iteration: 2, Func. Count: 15, Neg. LLF: 84.81557767330018
Iteration: 3, Func. Count: 22, Neg. LLF: 85.68905386975563
Iteration: 4, Func. Count: 29, Neg. LLF: 83.97880180669215
Iteration: 5, Func. Count: 36, Neg. LLF: 83.76212615108284
Iteration: 6, Func. Count: 42, Neg. LLF: 83.75555423635144
Iteration: 7, Func. Count: 48, Neg. LLF: 83.75491990602839
Iteration: 8, Func. Count: 54, Neg. LLF: 83.75487430625908
Iteration: 9, Func. Count: 60, Neg. LLF: 83.75486663344839
Iteration: 10, Func. Count: 65, Neg. LLF: 83.75486665435064
Optimization terminated successfully (Exit mode 0)
Current function value: 83.75486663344839
Iterations: 10
Function evaluations: 65
Gradient evaluations: 10
Iteration: 1, Func. Count: 8, Neg. LLF: 144.24671918489463
Iteration: 2, Func. Count: 17, Neg. LLF: 85.82370564692405
Iteration: 3, Func. Count: 25, Neg. LLF: 85.75293300961367
Iteration: 4, Func. Count: 33, Neg. LLF: 84.804490316673
Iteration: 5, Func. Count: 41, Neg. LLF: 83.7658480951717
Iteration: 6, Func. Count: 48, Neg. LLF: 83.72387351794555
Iteration: 7, Func. Count: 55, Neg. LLF: 83.72040695958266
Iteration: 8, Func. Count: 62, Neg. LLF: 83.7204129779791
Iteration: 9, Func. Count: 70, Neg. LLF: 83.72006420931825
Iteration: 10, Func. Count: 77, Neg. LLF: 83.72005648025198
Iteration: 11, Func. Count: 83, Neg. LLF: 83.7200564802506
Optimization terminated successfully (Exit mode 0)
Current function value: 83.72005648025198
Iterations: 11
Function evaluations: 83
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 159.5831498556782
Iteration: 2, Func. Count: 19, Neg. LLF: 85.87105751152917
Iteration: 3, Func. Count: 28, Neg. LLF: 117.00445378024436
Iteration: 4, Func. Count: 37, Neg. LLF: 89.62250305983804
Iteration: 5, Func. Count: 46, Neg. LLF: 84.13586442204613
Iteration: 6, Func. Count: 55, Neg. LLF: 83.76867239911984
Iteration: 7, Func. Count: 64, Neg. LLF: 83.14344903841399
Iteration: 8, Func. Count: 72, Neg. LLF: 83.12768293404973
Iteration: 9, Func. Count: 81, Neg. LLF: 82.80104372652607
Iteration: 10, Func. Count: 89, Neg. LLF: 82.79048709374597
Iteration: 11, Func. Count: 97, Neg. LLF: 82.78995043054087
Iteration: 12, Func. Count: 105, Neg. LLF: 82.78993799362893
Iteration: 13, Func. Count: 113, Neg. LLF: 82.78993697645075
Iteration: 14, Func. Count: 120, Neg. LLF: 82.7899369628219
Optimization terminated successfully (Exit mode 0)
Current function value: 82.78993697645075
Iterations: 14
Function evaluations: 120
Gradient evaluations: 14
Iteration: 1, Func. Count: 6, Neg. LLF: 145.30307050221873
Iteration: 2, Func. Count: 14, Neg. LLF: 168.09470529462266
Iteration: 3, Func. Count: 21, Neg. LLF: 85.29785399900183
Iteration: 4, Func. Count: 27, Neg. LLF: 83.83873479492237
Iteration: 5, Func. Count: 33, Neg. LLF: 83.54352880177765
Iteration: 6, Func. Count: 39, Neg. LLF: 83.66610524349878
Iteration: 7, Func. Count: 45, Neg. LLF: 83.5039819761992
Iteration: 8, Func. Count: 50, Neg. LLF: 83.50248760023263
Iteration: 9, Func. Count: 55, Neg. LLF: 83.50240507143768
Iteration: 10, Func. Count: 60, Neg. LLF: 83.5024032141046
Iteration: 11, Func. Count: 64, Neg. LLF: 83.50240321410752
Optimization terminated successfully (Exit mode 0)
Current function value: 83.5024032141046
Iterations: 11
Function evaluations: 64
Gradient evaluations: 11
Iteration: 1, Func. Count: 7, Neg. LLF: 136.3233118256292
Iteration: 2, Func. Count: 15, Neg. LLF: 99.34839815576309
Iteration: 3, Func. Count: 22, Neg. LLF: 85.04844685651074
Iteration: 4, Func. Count: 29, Neg. LLF: 82.40894838045317
Iteration: 5, Func. Count: 35, Neg. LLF: 83.79133133783996
Iteration: 6, Func. Count: 42, Neg. LLF: 82.28176824388544
Iteration: 7, Func. Count: 49, Neg. LLF: 82.20576605197893
Iteration: 8, Func. Count: 55, Neg. LLF: 82.20430071061827
Iteration: 9, Func. Count: 61, Neg. LLF: 82.20427331442801
Iteration: 10, Func. Count: 66, Neg. LLF: 82.204273314414
Optimization terminated successfully (Exit mode 0)
Current function value: 82.20427331442801
Iterations: 10
Function evaluations: 66
Gradient evaluations: 10
Iteration: 1, Func. Count: 8, Neg. LLF: 122.78104297131176
Iteration: 2, Func. Count: 17, Neg. LLF: 9776193.606937047
Iteration: 3, Func. Count: 25, Neg. LLF: 94.9968218381205
Iteration: 4, Func. Count: 33, Neg. LLF: 82.3503008894007
Iteration: 5, Func. Count: 40, Neg. LLF: 84.00990242215788
Iteration: 6, Func. Count: 48, Neg. LLF: 82.29596617555104
Iteration: 7, Func. Count: 56, Neg. LLF: 82.20441670669757
Iteration: 8, Func. Count: 63, Neg. LLF: 82.20428132340574
Iteration: 9, Func. Count: 70, Neg. LLF: 82.20427393910535
Iteration: 10, Func. Count: 77, Neg. LLF: 82.20427310425863
Optimization terminated successfully (Exit mode 0)
Current function value: 82.20427310425863
Iterations: 10
Function evaluations: 77
Gradient evaluations: 10
Iteration: 1, Func. Count: 9, Neg. LLF: 123.9665399816713
Iteration: 2, Func. Count: 19, Neg. LLF: 9622662.078985333
Iteration: 3, Func. Count: 28, Neg. LLF: 96.07374106009328
Iteration: 4, Func. Count: 37, Neg. LLF: 87.4072426573188
Iteration: 5, Func. Count: 46, Neg. LLF: 82.39290826293907
Iteration: 6, Func. Count: 54, Neg. LLF: 82.28615889575626
Iteration: 7, Func. Count: 62, Neg. LLF: 82.21326868107066
Iteration: 8, Func. Count: 70, Neg. LLF: 82.20496617925822
Iteration: 9, Func. Count: 78, Neg. LLF: 82.20432744509394
Iteration: 10, Func. Count: 86, Neg. LLF: 82.20427775439646
Iteration: 11, Func. Count: 94, Neg. LLF: 82.20427315449267
Iteration: 12, Func. Count: 101, Neg. LLF: 82.20427317166022
Optimization terminated successfully (Exit mode 0)
Current function value: 82.20427315449267
Iterations: 12
Function evaluations: 101
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 118.58266330849082
Iteration: 2, Func. Count: 21, Neg. LLF: 10643204.620110838
Iteration: 3, Func. Count: 31, Neg. LLF: 101.21495026666663
Iteration: 4, Func. Count: 41, Neg. LLF: 113.10760919082038
Iteration: 5, Func. Count: 51, Neg. LLF: 82.29416839108936
Iteration: 6, Func. Count: 60, Neg. LLF: 83.00443873242317
Iteration: 7, Func. Count: 70, Neg. LLF: 82.61451820347214
Iteration: 8, Func. Count: 80, Neg. LLF: 83.03297881260868
Iteration: 9, Func. Count: 90, Neg. LLF: 82.13767703105572
Iteration: 10, Func. Count: 100, Neg. LLF: 82.06332853857124
Iteration: 11, Func. Count: 110, Neg. LLF: 82.05399374847003
Iteration: 12, Func. Count: 119, Neg. LLF: 82.05382527828468
Iteration: 13, Func. Count: 128, Neg. LLF: 82.05382227707629
Iteration: 14, Func. Count: 137, Neg. LLF: 82.05382106069518
Iteration: 15, Func. Count: 145, Neg. LLF: 82.05382106070219
Optimization terminated successfully (Exit mode 0)
Current function value: 82.05382106069518
Iterations: 15
Function evaluations: 145
Gradient evaluations: 15
Iteration: 1, Func. Count: 7, Neg. LLF: 129.1444387301162
Iteration: 2, Func. Count: 16, Neg. LLF: 136.56350921523236
Iteration: 3, Func. Count: 24, Neg. LLF: 86.52512001897301
Iteration: 4, Func. Count: 31, Neg. LLF: 83.71366434540434
Iteration: 5, Func. Count: 37, Neg. LLF: 83.6567232602098
Iteration: 6, Func. Count: 44, Neg. LLF: 83.7014437843611
Iteration: 7, Func. Count: 51, Neg. LLF: 83.5051815058782
Iteration: 8, Func. Count: 57, Neg. LLF: 83.50266553130646
Iteration: 9, Func. Count: 63, Neg. LLF: 83.50241454636017
Iteration: 10, Func. Count: 69, Neg. LLF: 83.50240396123631
Iteration: 11, Func. Count: 75, Neg. LLF: 83.50240331100153
Optimization terminated successfully (Exit mode 0)
Current function value: 83.50240331100153
Iterations: 11
Function evaluations: 75
Gradient evaluations: 11
Iteration: 1, Func. Count: 8, Neg. LLF: 145.41441497658428
Iteration: 2, Func. Count: 17, Neg. LLF: 95.273762601555
Iteration: 3, Func. Count: 25, Neg. LLF: 86.16929478824113
Iteration: 4, Func. Count: 33, Neg. LLF: 82.64086705593479
Iteration: 5, Func. Count: 40, Neg. LLF: 83.82979102634584
Iteration: 6, Func. Count: 48, Neg. LLF: 82.3111539538153
Iteration: 7, Func. Count: 56, Neg. LLF: 82.20769189163387
Iteration: 8, Func. Count: 63, Neg. LLF: 82.20436726621202
Iteration: 9, Func. Count: 70, Neg. LLF: 82.2042735329354
Iteration: 10, Func. Count: 76, Neg. LLF: 82.20427353284704
Optimization terminated successfully (Exit mode 0)
Current function value: 82.2042735329354
Iterations: 10
Function evaluations: 76
Gradient evaluations: 10
Iteration: 1, Func. Count: 9, Neg. LLF: 121.89068272719518
Iteration: 2, Func. Count: 19, Neg. LLF: 9750871.666749688
Iteration: 3, Func. Count: 28, Neg. LLF: 94.50332870532706
Iteration: 4, Func. Count: 37, Neg. LLF: 82.34039674590198
Iteration: 5, Func. Count: 45, Neg. LLF: 84.00838966850384
Iteration: 6, Func. Count: 54, Neg. LLF: 82.2918956752948
Iteration: 7, Func. Count: 63, Neg. LLF: 82.2043716553264
Iteration: 8, Func. Count: 71, Neg. LLF: 82.20427871220187
Iteration: 9, Func. Count: 79, Neg. LLF: 82.2042735056432
Iteration: 10, Func. Count: 87, Neg. LLF: 82.20427310459999
Optimization terminated successfully (Exit mode 0)
Current function value: 82.20427310459999
Iterations: 10
Function evaluations: 87
Gradient evaluations: 10
Iteration: 1, Func. Count: 10, Neg. LLF: 122.73596417224152
Iteration: 2, Func. Count: 21, Neg. LLF: 9609870.324771302
Iteration: 3, Func. Count: 31, Neg. LLF: 96.04349128289735
Iteration: 4, Func. Count: 41, Neg. LLF: 87.76235412995307
Iteration: 5, Func. Count: 51, Neg. LLF: 82.39396570443942
Iteration: 6, Func. Count: 60, Neg. LLF: 82.28906003664454
Iteration: 7, Func. Count: 69, Neg. LLF: 82.21375181280824
Iteration: 8, Func. Count: 78, Neg. LLF: 82.20487020097029
Iteration: 9, Func. Count: 87, Neg. LLF: 82.20432327293962
Iteration: 10, Func. Count: 96, Neg. LLF: 82.20427750856764
Iteration: 11, Func. Count: 105, Neg. LLF: 82.20427316282368
Iteration: 12, Func. Count: 113, Neg. LLF: 82.20427317999246
Optimization terminated successfully (Exit mode 0)
Current function value: 82.20427316282368
Iterations: 12
Function evaluations: 113
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 119.83249740142519
Iteration: 2, Func. Count: 23, Neg. LLF: 871.244778794445
Iteration: 3, Func. Count: 34, Neg. LLF: 84.85601985885125
Iteration: 4, Func. Count: 45, Neg. LLF: 82.85618217923046
Iteration: 5, Func. Count: 56, Neg. LLF: 82.68009777453156
Iteration: 6, Func. Count: 67, Neg. LLF: 82.25997426468263
Iteration: 7, Func. Count: 78, Neg. LLF: 82.13241284542451
Iteration: 8, Func. Count: 88, Neg. LLF: 82.09737889328832
Iteration: 9, Func. Count: 98, Neg. LLF: 82.09230330139094
Iteration: 10, Func. Count: 109, Neg. LLF: 82.064040619905
Iteration: 11, Func. Count: 119, Neg. LLF: 82.06024843336164
Iteration: 12, Func. Count: 129, Neg. LLF: 82.05634284551711
Iteration: 13, Func. Count: 139, Neg. LLF: 82.05484047564957
Iteration: 14, Func. Count: 149, Neg. LLF: 82.05387540914846
Iteration: 15, Func. Count: 159, Neg. LLF: 82.0538229423521
Iteration: 16, Func. Count: 169, Neg. LLF: 82.05382105319586
Iteration: 17, Func. Count: 178, Neg. LLF: 82.05382105320707
Optimization terminated successfully (Exit mode 0)
Current function value: 82.05382105319586
Iterations: 17
Function evaluations: 178
Gradient evaluations: 17
Iteration: 1, Func. Count: 8, Neg. LLF: 123.69239936560471
Iteration: 2, Func. Count: 18, Neg. LLF: 119.68176751693329
Iteration: 3, Func. Count: 26, Neg. LLF: 85.7431154507052
Iteration: 4, Func. Count: 34, Neg. LLF: 83.649044544416
Iteration: 5, Func. Count: 41, Neg. LLF: 86.3606155865076
Iteration: 6, Func. Count: 49, Neg. LLF: 83.6129920700528
Iteration: 7, Func. Count: 57, Neg. LLF: 83.5034988144052
Iteration: 8, Func. Count: 64, Neg. LLF: 83.50249125451445
Iteration: 9, Func. Count: 71, Neg. LLF: 83.50240937247034
Iteration: 10, Func. Count: 78, Neg. LLF: 83.50240379768698
Iteration: 11, Func. Count: 84, Neg. LLF: 83.50240391083032
Optimization terminated successfully (Exit mode 0)
Current function value: 83.50240379768698
Iterations: 11
Function evaluations: 84
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 138.68187624206274
Iteration: 2, Func. Count: 19, Neg. LLF: 97.84793829857324
Iteration: 3, Func. Count: 28, Neg. LLF: 85.4094207344941
Iteration: 4, Func. Count: 37, Neg. LLF: 82.5054350444297
Iteration: 5, Func. Count: 45, Neg. LLF: 83.81331449483297
Iteration: 6, Func. Count: 54, Neg. LLF: 82.30418934876397
Iteration: 7, Func. Count: 63, Neg. LLF: 82.20654263687547
Iteration: 8, Func. Count: 71, Neg. LLF: 82.20430403903227
Iteration: 9, Func. Count: 79, Neg. LLF: 82.20427361095287
Iteration: 10, Func. Count: 86, Neg. LLF: 82.20427361092922
Optimization terminated successfully (Exit mode 0)
Current function value: 82.20427361095287
Iterations: 10
Function evaluations: 86
Gradient evaluations: 10
Iteration: 1, Func. Count: 10, Neg. LLF: 121.68463157651065
Iteration: 2, Func. Count: 21, Neg. LLF: 9762509.657838464
Iteration: 3, Func. Count: 31, Neg. LLF: 95.15191591248995
Iteration: 4, Func. Count: 41, Neg. LLF: 82.36911664219501
Iteration: 5, Func. Count: 50, Neg. LLF: 84.01864336571387
Iteration: 6, Func. Count: 60, Neg. LLF: 82.27897240505793
Iteration: 7, Func. Count: 70, Neg. LLF: 82.20456167016614
Iteration: 8, Func. Count: 79, Neg. LLF: 82.20428733428935
Iteration: 9, Func. Count: 88, Neg. LLF: 82.20427508275186
Iteration: 10, Func. Count: 97, Neg. LLF: 82.20427310505531
Iteration: 11, Func. Count: 105, Neg. LLF: 82.2042731137933
Optimization terminated successfully (Exit mode 0)
Current function value: 82.20427310505531
Iterations: 11
Function evaluations: 105
Gradient evaluations: 11
Iteration: 1, Func. Count: 11, Neg. LLF: 122.59034828045814
Iteration: 2, Func. Count: 23, Neg. LLF: 9619577.760321511
Iteration: 3, Func. Count: 34, Neg. LLF: 96.89413928676719
Iteration: 4, Func. Count: 45, Neg. LLF: 88.5727633148101
Iteration: 5, Func. Count: 56, Neg. LLF: 82.42029551827642
Iteration: 6, Func. Count: 66, Neg. LLF: 82.30463799788436
Iteration: 7, Func. Count: 76, Neg. LLF: 82.21705115174822
Iteration: 8, Func. Count: 86, Neg. LLF: 82.20499959175712
Iteration: 9, Func. Count: 96, Neg. LLF: 82.20434197053342
Iteration: 10, Func. Count: 106, Neg. LLF: 82.2042784500019
Iteration: 11, Func. Count: 116, Neg. LLF: 82.20427323071966
Iteration: 12, Func. Count: 125, Neg. LLF: 82.20427324788153
Optimization terminated successfully (Exit mode 0)
Current function value: 82.20427323071966
Iterations: 12
Function evaluations: 125
Gradient evaluations: 12
Iteration: 1, Func. Count: 12, Neg. LLF: 118.08065403155057
Iteration: 2, Func. Count: 25, Neg. LLF: 3217.748349098992
Iteration: 3, Func. Count: 37, Neg. LLF: 88.6799031815285
Iteration: 4, Func. Count: 49, Neg. LLF: 89.8380502205171
Iteration: 5, Func. Count: 61, Neg. LLF: 82.43903106749619
Iteration: 6, Func. Count: 72, Neg. LLF: 82.62018313089862
Iteration: 7, Func. Count: 84, Neg. LLF: 82.2386108465508
Iteration: 8, Func. Count: 96, Neg. LLF: 82.18366831710223
Iteration: 9, Func. Count: 108, Neg. LLF: 82.07125793572595
Iteration: 10, Func. Count: 119, Neg. LLF: 82.05817994824388
Iteration: 11, Func. Count: 130, Neg. LLF: 82.0547183827305
Iteration: 12, Func. Count: 141, Neg. LLF: 82.05511869100226
Iteration: 13, Func. Count: 153, Neg. LLF: 82.0538344291549
Iteration: 14, Func. Count: 164, Neg. LLF: 82.0538210199883
Iteration: 15, Func. Count: 174, Neg. LLF: 82.05382101996774
Optimization terminated successfully (Exit mode 0)
Current function value: 82.0538210199883
Iterations: 15
Function evaluations: 174
Gradient evaluations: 15
Iteration: 1, Func. Count: 9, Neg. LLF: 135.09985631307808
Iteration: 2, Func. Count: 20, Neg. LLF: 118.13044129537576
Iteration: 3, Func. Count: 30, Neg. LLF: 86.8988193131345
Iteration: 4, Func. Count: 39, Neg. LLF: 83.72548961840046
Iteration: 5, Func. Count: 47, Neg. LLF: 84.72045271522656
Iteration: 6, Func. Count: 56, Neg. LLF: 89.18090207981135
Iteration: 7, Func. Count: 65, Neg. LLF: 84.07792958288715
Iteration: 8, Func. Count: 74, Neg. LLF: 83.47043488330252
Iteration: 9, Func. Count: 82, Neg. LLF: 83.46186787511462
Iteration: 10, Func. Count: 90, Neg. LLF: 83.4610389541226
Iteration: 11, Func. Count: 98, Neg. LLF: 83.46097254373748
Iteration: 12, Func. Count: 106, Neg. LLF: 83.46094966839233
Iteration: 13, Func. Count: 113, Neg. LLF: 83.46094966833758
Optimization terminated successfully (Exit mode 0)
Current function value: 83.46094966839233
Iterations: 13
Function evaluations: 113
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 144.66320896528583
Iteration: 2, Func. Count: 21, Neg. LLF: 3502990.025093569
Iteration: 3, Func. Count: 31, Neg. LLF: 86.06424719670395
Iteration: 4, Func. Count: 41, Neg. LLF: 2343.1934115593685
Iteration: 5, Func. Count: 51, Neg. LLF: 87.79549570930025
Iteration: 6, Func. Count: 61, Neg. LLF: 84.50680643755095
Iteration: 7, Func. Count: 71, Neg. LLF: 82.15434637911666
Iteration: 8, Func. Count: 80, Neg. LLF: 82.14071267586802
Iteration: 9, Func. Count: 89, Neg. LLF: 82.13140194043831
Iteration: 10, Func. Count: 98, Neg. LLF: 82.12917061114123
Iteration: 11, Func. Count: 107, Neg. LLF: 82.12912162074176
Iteration: 12, Func. Count: 116, Neg. LLF: 82.12911400249546
Iteration: 13, Func. Count: 125, Neg. LLF: 82.12911042462545
Iteration: 14, Func. Count: 133, Neg. LLF: 82.12911042458391
Optimization terminated successfully (Exit mode 0)
Current function value: 82.12911042462545
Iterations: 14
Function evaluations: 133
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 120.78323570206771
Iteration: 2, Func. Count: 23, Neg. LLF: 4320595.510920603
Iteration: 3, Func. Count: 34, Neg. LLF: 88.28075368319692
Iteration: 4, Func. Count: 45, Neg. LLF: 166.985988047867
Iteration: 5, Func. Count: 56, Neg. LLF: 87.69195152527641
Iteration: 6, Func. Count: 67, Neg. LLF: 82.87064609028495
Iteration: 7, Func. Count: 78, Neg. LLF: 82.16261623052289
Iteration: 8, Func. Count: 88, Neg. LLF: 82.13374549339781
Iteration: 9, Func. Count: 98, Neg. LLF: 82.1325579160102
Iteration: 10, Func. Count: 109, Neg. LLF: 82.12941312754269
Iteration: 11, Func. Count: 119, Neg. LLF: 82.12916182166416
Iteration: 12, Func. Count: 129, Neg. LLF: 82.12911280121851
Iteration: 13, Func. Count: 139, Neg. LLF: 82.12911038719366
Iteration: 14, Func. Count: 148, Neg. LLF: 82.12911039530091
Optimization terminated successfully (Exit mode 0)
Current function value: 82.12911038719366
Iterations: 14
Function evaluations: 148
Gradient evaluations: 14
Iteration: 1, Func. Count: 12, Neg. LLF: 123.02275950048885
Iteration: 2, Func. Count: 25, Neg. LLF: 4265341.194397326
Iteration: 3, Func. Count: 37, Neg. LLF: 92.12551704768426
Iteration: 4, Func. Count: 49, Neg. LLF: 152.2535169662997
Iteration: 5, Func. Count: 61, Neg. LLF: 86.06479282209568
Iteration: 6, Func. Count: 73, Neg. LLF: 82.51190403470108
Iteration: 7, Func. Count: 84, Neg. LLF: 82.22834295842839
Iteration: 8, Func. Count: 95, Neg. LLF: 85.23130701492806
Iteration: 9, Func. Count: 108, Neg. LLF: 82.17475480471876
Iteration: 10, Func. Count: 119, Neg. LLF: 82.13235479225078
Iteration: 11, Func. Count: 130, Neg. LLF: 82.12925725580072
Iteration: 12, Func. Count: 141, Neg. LLF: 82.12911319676978
Iteration: 13, Func. Count: 152, Neg. LLF: 82.12911039009073
Iteration: 14, Func. Count: 162, Neg. LLF: 82.12911040322518
Optimization terminated successfully (Exit mode 0)
Current function value: 82.12911039009073
Iterations: 14
Function evaluations: 162
Gradient evaluations: 14
Iteration: 1, Func. Count: 13, Neg. LLF: 119.30122720587515
Iteration: 2, Func. Count: 27, Neg. LLF: 122.52795122074419
Iteration: 3, Func. Count: 40, Neg. LLF: 124.18272401779403
Iteration: 4, Func. Count: 53, Neg. LLF: 97.14378524987244
Iteration: 5, Func. Count: 66, Neg. LLF: 1251.814938309617
Iteration: 6, Func. Count: 79, Neg. LLF: 82.96684495977931
Iteration: 7, Func. Count: 92, Neg. LLF: 83.0483365262617
Iteration: 8, Func. Count: 105, Neg. LLF: 83.46945231040401
Iteration: 9, Func. Count: 118, Neg. LLF: 82.06121315607727
Iteration: 10, Func. Count: 130, Neg. LLF: 82.04144155258183
Iteration: 11, Func. Count: 143, Neg. LLF: 148.0726636809549
Iteration: 12, Func. Count: 156, Neg. LLF: 81.8852754029261
Iteration: 13, Func. Count: 168, Neg. LLF: 81.86632831723496
Iteration: 14, Func. Count: 180, Neg. LLF: 81.86019535503408
Iteration: 15, Func. Count: 192, Neg. LLF: 81.85934526780022
Iteration: 16, Func. Count: 204, Neg. LLF: 81.85910469674643
Iteration: 17, Func. Count: 216, Neg. LLF: 81.85906519112987
Iteration: 18, Func. Count: 228, Neg. LLF: 81.8590607293327
Iteration: 19, Func. Count: 239, Neg. LLF: 81.85906072932771
Optimization terminated successfully (Exit mode 0)
Current function value: 81.8590607293327
Iterations: 19
Function evaluations: 239
Gradient evaluations: 19
Iteration: 1, Func. Count: 6, Neg. LLF: 131.73061056579434
Iteration: 2, Func. Count: 14, Neg. LLF: 125.89025747225702
Iteration: 3, Func. Count: 21, Neg. LLF: 88.28512075660153
Iteration: 4, Func. Count: 27, Neg. LLF: 84.44706867841099
Iteration: 5, Func. Count: 33, Neg. LLF: 83.7295013255579
Iteration: 6, Func. Count: 39, Neg. LLF: 83.55162764206729
Iteration: 7, Func. Count: 44, Neg. LLF: 83.55065654203268
Iteration: 8, Func. Count: 49, Neg. LLF: 83.55064478180658
Iteration: 9, Func. Count: 54, Neg. LLF: 83.5506435943947
Iteration: 10, Func. Count: 58, Neg. LLF: 83.55064359438883
Optimization terminated successfully (Exit mode 0)
Current function value: 83.5506435943947
Iterations: 10
Function evaluations: 58
Gradient evaluations: 10
Iteration: 1, Func. Count: 7, Neg. LLF: 121.8287211825038
Iteration: 2, Func. Count: 15, Neg. LLF: 87.25185939650143
Iteration: 3, Func. Count: 23, Neg. LLF: 85.34695921384726
Iteration: 4, Func. Count: 30, Neg. LLF: 84.02778203946313
Iteration: 5, Func. Count: 37, Neg. LLF: 83.56125985667403
Iteration: 6, Func. Count: 43, Neg. LLF: 83.55116344135449
Iteration: 7, Func. Count: 49, Neg. LLF: 83.55072075785479
Iteration: 8, Func. Count: 55, Neg. LLF: 83.55064691689543
Iteration: 9, Func. Count: 61, Neg. LLF: 83.55064499171814
Iteration: 10, Func. Count: 67, Neg. LLF: 83.55064376309372
Iteration: 11, Func. Count: 72, Neg. LLF: 83.5506437785617
Optimization terminated successfully (Exit mode 0)
Current function value: 83.55064376309372
Iterations: 11
Function evaluations: 72
Gradient evaluations: 11
Iteration: 1, Func. Count: 8, Neg. LLF: 216.10704497868426
Iteration: 2, Func. Count: 17, Neg. LLF: 86.14850125765231
Iteration: 3, Func. Count: 25, Neg. LLF: 84.74196320507305
Iteration: 4, Func. Count: 33, Neg. LLF: 83.55482458244472
Iteration: 5, Func. Count: 40, Neg. LLF: 83.56165277243849
Iteration: 6, Func. Count: 48, Neg. LLF: 83.55112082138679
Iteration: 7, Func. Count: 55, Neg. LLF: 83.55065868973426
Iteration: 8, Func. Count: 62, Neg. LLF: 83.55064532888673
Iteration: 9, Func. Count: 69, Neg. LLF: 83.55064354488553
Iteration: 10, Func. Count: 75, Neg. LLF: 83.55064356586932
Optimization terminated successfully (Exit mode 0)
Current function value: 83.55064354488553
Iterations: 10
Function evaluations: 75
Gradient evaluations: 10
Iteration: 1, Func. Count: 9, Neg. LLF: 576.485526557508
Iteration: 2, Func. Count: 19, Neg. LLF: 88.3128418072161
Iteration: 3, Func. Count: 29, Neg. LLF: 85.33603718464873
Iteration: 4, Func. Count: 38, Neg. LLF: 84.1255250714495
Iteration: 5, Func. Count: 47, Neg. LLF: 83.47808034035856
Iteration: 6, Func. Count: 55, Neg. LLF: 83.47026053169328
Iteration: 7, Func. Count: 63, Neg. LLF: 83.46961652565935
Iteration: 8, Func. Count: 71, Neg. LLF: 83.46943941866091
Iteration: 9, Func. Count: 79, Neg. LLF: 83.46937644958547
Iteration: 10, Func. Count: 87, Neg. LLF: 83.46935482572931
Iteration: 11, Func. Count: 95, Neg. LLF: 83.46935295455012
Iteration: 12, Func. Count: 102, Neg. LLF: 83.46935295455611
Optimization terminated successfully (Exit mode 0)
Current function value: 83.46935295455012
Iterations: 12
Function evaluations: 102
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 11469.629352041366
Iteration: 2, Func. Count: 21, Neg. LLF: 88.43476363114073
Iteration: 3, Func. Count: 31, Neg. LLF: 95.69386075636764
Iteration: 4, Func. Count: 41, Neg. LLF: 83.92643092293437
Iteration: 5, Func. Count: 51, Neg. LLF: 83.51539303990234
Iteration: 6, Func. Count: 60, Neg. LLF: 83.47633040798313
Iteration: 7, Func. Count: 69, Neg. LLF: 83.47348862360431
Iteration: 8, Func. Count: 78, Neg. LLF: 83.46946610859223
Iteration: 9, Func. Count: 87, Neg. LLF: 83.46935920040634
Iteration: 10, Func. Count: 96, Neg. LLF: 83.4693531711704
Iteration: 11, Func. Count: 104, Neg. LLF: 83.46935317386884
Optimization terminated successfully (Exit mode 0)
Current function value: 83.4693531711704
Iterations: 11
Function evaluations: 104
Gradient evaluations: 11
Iteration: 1, Func. Count: 7, Neg. LLF: 135.53064854083956
Iteration: 2, Func. Count: 16, Neg. LLF: 142.97402023698405
Iteration: 3, Func. Count: 24, Neg. LLF: 220.30420820370577
Iteration: 4, Func. Count: 31, Neg. LLF: 94.43556653561477
Iteration: 5, Func. Count: 38, Neg. LLF: 207.34437147033884
Iteration: 6, Func. Count: 45, Neg. LLF: 82.91516747935827
Iteration: 7, Func. Count: 52, Neg. LLF: 82.47472623789012
Iteration: 8, Func. Count: 58, Neg. LLF: 82.46524395396176
Iteration: 9, Func. Count: 64, Neg. LLF: 82.46476115478485
Iteration: 10, Func. Count: 71, Neg. LLF: 82.46180260554507
Iteration: 11, Func. Count: 77, Neg. LLF: 82.46172935728889
Iteration: 12, Func. Count: 83, Neg. LLF: 82.46172889620976
Optimization terminated successfully (Exit mode 0)
Current function value: 82.46172889620976
Iterations: 12
Function evaluations: 83
Gradient evaluations: 12
Iteration: 1, Func. Count: 8, Neg. LLF: 121.45992008575229
Iteration: 2, Func. Count: 16, Neg. LLF: 91.12612806047693
Iteration: 3, Func. Count: 24, Neg. LLF: 90.85076344442558
Iteration: 4, Func. Count: 32, Neg. LLF: 83.00381170335915
Iteration: 5, Func. Count: 40, Neg. LLF: 94.03049975509909
Iteration: 6, Func. Count: 48, Neg. LLF: 82.23078129522887
Iteration: 7, Func. Count: 55, Neg. LLF: 82.20821017169037
Iteration: 8, Func. Count: 62, Neg. LLF: 82.20579672187762
Iteration: 9, Func. Count: 69, Neg. LLF: 82.20434349434653
Iteration: 10, Func. Count: 76, Neg. LLF: 82.2042802042851
Iteration: 11, Func. Count: 83, Neg. LLF: 82.20427311885
Iteration: 12, Func. Count: 89, Neg. LLF: 82.20427311885172
Optimization terminated successfully (Exit mode 0)
Current function value: 82.20427311885
Iterations: 12
Function evaluations: 89
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 135.49028674978413
Iteration: 2, Func. Count: 18, Neg. LLF: 100.90996392377251
Iteration: 3, Func. Count: 27, Neg. LLF: 85.55834367216676
Iteration: 4, Func. Count: 37, Neg. LLF: 82.55576707537307
Iteration: 5, Func. Count: 45, Neg. LLF: 83.6296769406037
Iteration: 6, Func. Count: 54, Neg. LLF: 82.8330315387933
Iteration: 7, Func. Count: 63, Neg. LLF: 82.46443074882785
Iteration: 8, Func. Count: 71, Neg. LLF: 82.46181224419719
Iteration: 9, Func. Count: 79, Neg. LLF: 82.46173056396998
Iteration: 10, Func. Count: 87, Neg. LLF: 82.46172887083517
Iteration: 11, Func. Count: 94, Neg. LLF: 82.4617288717428
Optimization terminated successfully (Exit mode 0)
Current function value: 82.46172887083517
Iterations: 11
Function evaluations: 94
Gradient evaluations: 11
Iteration: 1, Func. Count: 10, Neg. LLF: 178.05676477493435
Iteration: 2, Func. Count: 20, Neg. LLF: 96.19610169783965
Iteration: 3, Func. Count: 30, Neg. LLF: 92.17124788235157
Iteration: 4, Func. Count: 41, Neg. LLF: 84.5905812962041
Iteration: 5, Func. Count: 51, Neg. LLF: 92.06997279059593
Iteration: 6, Func. Count: 61, Neg. LLF: 82.4760424410719
Iteration: 7, Func. Count: 70, Neg. LLF: 82.46517290746301
Iteration: 8, Func. Count: 79, Neg. LLF: 82.46185226401175
Iteration: 9, Func. Count: 88, Neg. LLF: 82.46173385444959
Iteration: 10, Func. Count: 97, Neg. LLF: 82.46172888806959
Iteration: 11, Func. Count: 105, Neg. LLF: 82.46172891028527
Optimization terminated successfully (Exit mode 0)
Current function value: 82.46172888806959
Iterations: 11
Function evaluations: 105
Gradient evaluations: 11
Iteration: 1, Func. Count: 11, Neg. LLF: 275.4918543557162
Iteration: 2, Func. Count: 22, Neg. LLF: 114.67108342540838
Iteration: 3, Func. Count: 33, Neg. LLF: 88.84088905196084
Iteration: 4, Func. Count: 44, Neg. LLF: 86.1593552118823
Iteration: 5, Func. Count: 55, Neg. LLF: 119.44789343363679
Iteration: 6, Func. Count: 66, Neg. LLF: 82.76726991844764
Iteration: 7, Func. Count: 77, Neg. LLF: 82.7755196536461
Iteration: 8, Func. Count: 88, Neg. LLF: 82.35109010910331
Iteration: 9, Func. Count: 98, Neg. LLF: 82.26412165732914
Iteration: 10, Func. Count: 108, Neg. LLF: 82.51985824764421
Iteration: 11, Func. Count: 119, Neg. LLF: 82.26940549329993
Iteration: 12, Func. Count: 130, Neg. LLF: 82.06809952939453
Iteration: 13, Func. Count: 140, Neg. LLF: 82.05871084416616
Iteration: 14, Func. Count: 150, Neg. LLF: 82.05641622392062
Iteration: 15, Func. Count: 160, Neg. LLF: 82.05506974199265
Iteration: 16, Func. Count: 170, Neg. LLF: 82.05392507046466
Iteration: 17, Func. Count: 180, Neg. LLF: 82.05383813838863
Iteration: 18, Func. Count: 190, Neg. LLF: 82.0538220662209
Iteration: 19, Func. Count: 200, Neg. LLF: 82.05382099805975
Iteration: 20, Func. Count: 209, Neg. LLF: 82.05382099806076
Optimization terminated successfully (Exit mode 0)
Current function value: 82.05382099805975
Iterations: 20
Function evaluations: 209
Gradient evaluations: 20
Iteration: 1, Func. Count: 8, Neg. LLF: 140.24963486916653
Iteration: 2, Func. Count: 18, Neg. LLF: 181.64277443896387
Iteration: 3, Func. Count: 27, Neg. LLF: 117.9709114221179
Iteration: 4, Func. Count: 35, Neg. LLF: 88.45054748759281
Iteration: 5, Func. Count: 43, Neg. LLF: 116.7654496100482
Iteration: 6, Func. Count: 51, Neg. LLF: 82.39778264595934
Iteration: 7, Func. Count: 58, Neg. LLF: 89.7666933648339
Iteration: 8, Func. Count: 67, Neg. LLF: 82.86109293099751
Iteration: 9, Func. Count: 75, Neg. LLF: 82.23784229712152
Iteration: 10, Func. Count: 82, Neg. LLF: 82.21358376709254
Iteration: 11, Func. Count: 89, Neg. LLF: 82.20783762756409
Iteration: 12, Func. Count: 96, Neg. LLF: 82.20687871858374
Iteration: 13, Func. Count: 103, Neg. LLF: 82.20685398289147
Iteration: 14, Func. Count: 110, Neg. LLF: 82.20685136776143
Iteration: 15, Func. Count: 116, Neg. LLF: 82.20685136771274
Optimization terminated successfully (Exit mode 0)
Current function value: 82.20685136776143
Iterations: 15
Function evaluations: 116
Gradient evaluations: 15
Iteration: 1, Func. Count: 9, Neg. LLF: 112.30138198266809
Iteration: 2, Func. Count: 18, Neg. LLF: 89.8926086097939
Iteration: 3, Func. Count: 27, Neg. LLF: 86.35201408121846
Iteration: 4, Func. Count: 37, Neg. LLF: 84.5203980914437
Iteration: 5, Func. Count: 46, Neg. LLF: 89.13591871831007
Iteration: 6, Func. Count: 55, Neg. LLF: 82.24292695040585
Iteration: 7, Func. Count: 63, Neg. LLF: 82.36802718790068
Iteration: 8, Func. Count: 72, Neg. LLF: 82.22283798711834
Iteration: 9, Func. Count: 81, Neg. LLF: 82.2029263420821
Iteration: 10, Func. Count: 89, Neg. LLF: 82.19426272842078
Iteration: 11, Func. Count: 97, Neg. LLF: 82.19254352987721
Iteration: 12, Func. Count: 105, Neg. LLF: 82.19144211419164
Iteration: 13, Func. Count: 113, Neg. LLF: 82.19007887814097
Iteration: 14, Func. Count: 121, Neg. LLF: 82.18999899859462
Iteration: 15, Func. Count: 129, Neg. LLF: 82.18999450189301
Iteration: 16, Func. Count: 136, Neg. LLF: 82.1899945018995
Optimization terminated successfully (Exit mode 0)
Current function value: 82.18999450189301
Iterations: 16
Function evaluations: 136
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 116.17132081378921
Iteration: 2, Func. Count: 20, Neg. LLF: 135.12464215124635
Iteration: 3, Func. Count: 30, Neg. LLF: 85.29970023290653
Iteration: 4, Func. Count: 40, Neg. LLF: 84.7785805792151
Iteration: 5, Func. Count: 50, Neg. LLF: 2996.9318294916343
Iteration: 6, Func. Count: 60, Neg. LLF: 82.3094131814837
Iteration: 7, Func. Count: 69, Neg. LLF: 82.23920356197605
Iteration: 8, Func. Count: 78, Neg. LLF: 82.48713108849442
Iteration: 9, Func. Count: 88, Neg. LLF: 82.19715361978977
Iteration: 10, Func. Count: 97, Neg. LLF: 82.19471075281095
Iteration: 11, Func. Count: 106, Neg. LLF: 82.19200173680146
Iteration: 12, Func. Count: 115, Neg. LLF: 82.19047737176733
Iteration: 13, Func. Count: 124, Neg. LLF: 82.19012324535696
Iteration: 14, Func. Count: 133, Neg. LLF: 82.18999735311665
Iteration: 15, Func. Count: 142, Neg. LLF: 82.18999445281302
Iteration: 16, Func. Count: 150, Neg. LLF: 82.18999445503674
Optimization terminated successfully (Exit mode 0)
Current function value: 82.18999445281302
Iterations: 16
Function evaluations: 150
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 123.40176635404647
Iteration: 2, Func. Count: 22, Neg. LLF: 5257051.484119896
Iteration: 3, Func. Count: 33, Neg. LLF: 86.12486735272843
Iteration: 4, Func. Count: 44, Neg. LLF: 85.19384585284959
Iteration: 5, Func. Count: 55, Neg. LLF: 87.2739823330361
Iteration: 6, Func. Count: 66, Neg. LLF: 82.21130766597388
Iteration: 7, Func. Count: 76, Neg. LLF: 82.21408324986679
Iteration: 8, Func. Count: 87, Neg. LLF: 82.20147362914338
Iteration: 9, Func. Count: 98, Neg. LLF: 82.19124093870717
Iteration: 10, Func. Count: 108, Neg. LLF: 82.19005632885434
Iteration: 11, Func. Count: 118, Neg. LLF: 82.19000412564634
Iteration: 12, Func. Count: 128, Neg. LLF: 82.1899955158904
Iteration: 13, Func. Count: 138, Neg. LLF: 82.18999442464403
Iteration: 14, Func. Count: 147, Neg. LLF: 82.18999443524496
Optimization terminated successfully (Exit mode 0)
Current function value: 82.18999442464403
Iterations: 14
Function evaluations: 147
Gradient evaluations: 14
Iteration: 1, Func. Count: 12, Neg. LLF: 147.84962429844447
Iteration: 2, Func. Count: 24, Neg. LLF: 7770686.114172222
Iteration: 3, Func. Count: 36, Neg. LLF: 85.28056046042508
Iteration: 4, Func. Count: 48, Neg. LLF: 86.45711304849289
Iteration: 5, Func. Count: 60, Neg. LLF: 171.18273329069362
Iteration: 6, Func. Count: 72, Neg. LLF: 121.82426456804819
Iteration: 7, Func. Count: 84, Neg. LLF: 86.0645838400628
Iteration: 8, Func. Count: 96, Neg. LLF: 84.86373527100436
Iteration: 9, Func. Count: 108, Neg. LLF: 83.56545735569348
Iteration: 10, Func. Count: 120, Neg. LLF: 82.71977941411915
Iteration: 11, Func. Count: 132, Neg. LLF: 83.44402496525758
Iteration: 12, Func. Count: 144, Neg. LLF: 81.73707791978137
Iteration: 13, Func. Count: 155, Neg. LLF: 81.68975601528183
Iteration: 14, Func. Count: 166, Neg. LLF: 81.61201834137287
Iteration: 15, Func. Count: 177, Neg. LLF: 81.48766375643638
Iteration: 16, Func. Count: 188, Neg. LLF: 81.51611149468975
Iteration: 17, Func. Count: 200, Neg. LLF: 81.47698107453893
Iteration: 18, Func. Count: 211, Neg. LLF: 81.47679994647446
Iteration: 19, Func. Count: 222, Neg. LLF: 81.47675865621673
Iteration: 20, Func. Count: 233, Neg. LLF: 81.47675309409382
Iteration: 21, Func. Count: 243, Neg. LLF: 81.47675309410249
Optimization terminated successfully (Exit mode 0)
Current function value: 81.47675309409382
Iterations: 21
Function evaluations: 243
Gradient evaluations: 21
Iteration: 1, Func. Count: 9, Neg. LLF: 136.78531199123677
Iteration: 2, Func. Count: 20, Neg. LLF: 159.5813678601492
Iteration: 3, Func. Count: 30, Neg. LLF: 146.9524603190928
Iteration: 4, Func. Count: 39, Neg. LLF: 91.68353946604248
Iteration: 5, Func. Count: 48, Neg. LLF: 86.35464999366444
Iteration: 6, Func. Count: 57, Neg. LLF: 82.4056032923216
Iteration: 7, Func. Count: 65, Neg. LLF: 99.21651950196255
Iteration: 8, Func. Count: 75, Neg. LLF: 82.7858851125535
Iteration: 9, Func. Count: 84, Neg. LLF: 82.22464674122449
Iteration: 10, Func. Count: 92, Neg. LLF: 82.21269473546518
Iteration: 11, Func. Count: 100, Neg. LLF: 82.20850567955095
Iteration: 12, Func. Count: 108, Neg. LLF: 82.20691754311159
Iteration: 13, Func. Count: 116, Neg. LLF: 82.20686464361003
Iteration: 14, Func. Count: 124, Neg. LLF: 82.20685160050058
Iteration: 15, Func. Count: 131, Neg. LLF: 82.20685173729564
Optimization terminated successfully (Exit mode 0)
Current function value: 82.20685160050058
Iterations: 15
Function evaluations: 131
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 112.11833856136292
Iteration: 2, Func. Count: 20, Neg. LLF: 90.01940150803546
Iteration: 3, Func. Count: 30, Neg. LLF: 86.0002889916281
Iteration: 4, Func. Count: 41, Neg. LLF: 84.58882697761923
Iteration: 5, Func. Count: 51, Neg. LLF: 89.57692152831955
Iteration: 6, Func. Count: 61, Neg. LLF: 82.24226351256513
Iteration: 7, Func. Count: 70, Neg. LLF: 82.39009388734875
Iteration: 8, Func. Count: 80, Neg. LLF: 82.222462152157
Iteration: 9, Func. Count: 90, Neg. LLF: 82.20095186891243
Iteration: 10, Func. Count: 99, Neg. LLF: 82.19297169467633
Iteration: 11, Func. Count: 108, Neg. LLF: 82.19104323574972
Iteration: 12, Func. Count: 117, Neg. LLF: 82.19059843922197
Iteration: 13, Func. Count: 126, Neg. LLF: 82.19013554407992
Iteration: 14, Func. Count: 135, Neg. LLF: 82.1900004281973
Iteration: 15, Func. Count: 144, Neg. LLF: 82.18999461784043
Iteration: 16, Func. Count: 152, Neg. LLF: 82.18999461785072
Optimization terminated successfully (Exit mode 0)
Current function value: 82.18999461784043
Iterations: 16
Function evaluations: 152
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 115.71632877791446
Iteration: 2, Func. Count: 22, Neg. LLF: 137.0500345546681
Iteration: 3, Func. Count: 33, Neg. LLF: 85.14796927443228
Iteration: 4, Func. Count: 44, Neg. LLF: 84.85659473350111
Iteration: 5, Func. Count: 55, Neg. LLF: 3645.5505816770856
Iteration: 6, Func. Count: 66, Neg. LLF: 82.2835188721027
Iteration: 7, Func. Count: 76, Neg. LLF: 82.24107482485819
Iteration: 8, Func. Count: 86, Neg. LLF: 82.44188744471658
Iteration: 9, Func. Count: 97, Neg. LLF: 82.19833513861774
Iteration: 10, Func. Count: 107, Neg. LLF: 82.19483083764342
Iteration: 11, Func. Count: 117, Neg. LLF: 82.19204112424778
Iteration: 12, Func. Count: 127, Neg. LLF: 82.19052506182643
Iteration: 13, Func. Count: 137, Neg. LLF: 82.19003396722327
Iteration: 14, Func. Count: 147, Neg. LLF: 82.19000533579535
Iteration: 15, Func. Count: 157, Neg. LLF: 82.18999551493556
Iteration: 16, Func. Count: 167, Neg. LLF: 82.18999440691962
Iteration: 17, Func. Count: 176, Neg. LLF: 82.18999440915816
Optimization terminated successfully (Exit mode 0)
Current function value: 82.18999440691962
Iterations: 17
Function evaluations: 176
Gradient evaluations: 17
Iteration: 1, Func. Count: 12, Neg. LLF: 122.26268103698843
Iteration: 2, Func. Count: 24, Neg. LLF: 7772683.293326243
Iteration: 3, Func. Count: 36, Neg. LLF: 86.1400718260668
Iteration: 4, Func. Count: 48, Neg. LLF: 85.26869855894066
Iteration: 5, Func. Count: 60, Neg. LLF: 87.23544263669754
Iteration: 6, Func. Count: 72, Neg. LLF: 82.2120520236043
Iteration: 7, Func. Count: 83, Neg. LLF: 82.21739443416338
Iteration: 8, Func. Count: 95, Neg. LLF: 82.20013860852778
Iteration: 9, Func. Count: 107, Neg. LLF: 82.19123957577483
Iteration: 10, Func. Count: 118, Neg. LLF: 82.19005392930572
Iteration: 11, Func. Count: 129, Neg. LLF: 82.19000362371804
Iteration: 12, Func. Count: 140, Neg. LLF: 82.18999556555283
Iteration: 13, Func. Count: 151, Neg. LLF: 82.18999442303648
Iteration: 14, Func. Count: 161, Neg. LLF: 82.18999443363681
Optimization terminated successfully (Exit mode 0)
Current function value: 82.18999442303648
Iterations: 14
Function evaluations: 161
Gradient evaluations: 14
Iteration: 1, Func. Count: 13, Neg. LLF: 142.53678340030973
Iteration: 2, Func. Count: 26, Neg. LLF: 7808071.423502204
Iteration: 3, Func. Count: 39, Neg. LLF: 85.27540935415121
Iteration: 4, Func. Count: 52, Neg. LLF: 86.5923188958004
Iteration: 5, Func. Count: 65, Neg. LLF: 169.58014166618173
Iteration: 6, Func. Count: 78, Neg. LLF: 121.9200829027227
Iteration: 7, Func. Count: 91, Neg. LLF: 85.90079530154615
Iteration: 8, Func. Count: 104, Neg. LLF: 84.7530074444647
Iteration: 9, Func. Count: 117, Neg. LLF: 83.5592710050909
Iteration: 10, Func. Count: 130, Neg. LLF: 82.73086598819297
Iteration: 11, Func. Count: 143, Neg. LLF: 83.40017907789736
Iteration: 12, Func. Count: 156, Neg. LLF: 81.73315061915778
Iteration: 13, Func. Count: 168, Neg. LLF: 81.68765192055773
Iteration: 14, Func. Count: 180, Neg. LLF: 81.63244963413973
Iteration: 15, Func. Count: 192, Neg. LLF: 81.54678503776555
Iteration: 16, Func. Count: 204, Neg. LLF: 81.62823354512184
Iteration: 17, Func. Count: 217, Neg. LLF: 81.478073487665
Iteration: 18, Func. Count: 229, Neg. LLF: 81.47690792437608
Iteration: 19, Func. Count: 241, Neg. LLF: 81.47676332109897
Iteration: 20, Func. Count: 253, Neg. LLF: 81.47675339252764
Iteration: 21, Func. Count: 264, Neg. LLF: 81.47675339250517
Optimization terminated successfully (Exit mode 0)
Current function value: 81.47675339252764
Iterations: 21
Function evaluations: 264
Gradient evaluations: 21
Iteration: 1, Func. Count: 10, Neg. LLF: 140.88649808198699
Iteration: 2, Func. Count: 22, Neg. LLF: 135.9672444692274
Iteration: 3, Func. Count: 33, Neg. LLF: 2080.255760426424
Iteration: 4, Func. Count: 43, Neg. LLF: 792685.8714026972
Iteration: 5, Func. Count: 53, Neg. LLF: 84.30932595225218
Iteration: 6, Func. Count: 63, Neg. LLF: 738190.5607965229
Iteration: 7, Func. Count: 73, Neg. LLF: 82.22854574572015
Iteration: 8, Func. Count: 82, Neg. LLF: 83.88924622463456
Iteration: 9, Func. Count: 92, Neg. LLF: 82.41927063120015
Iteration: 10, Func. Count: 102, Neg. LLF: 82.1178922301356
Iteration: 11, Func. Count: 111, Neg. LLF: 82.20273478596214
Iteration: 12, Func. Count: 121, Neg. LLF: 82.0823833747634
Iteration: 13, Func. Count: 130, Neg. LLF: 82.08069186457445
Iteration: 14, Func. Count: 139, Neg. LLF: 82.08049428803696
Iteration: 15, Func. Count: 148, Neg. LLF: 82.08037670999737
Iteration: 16, Func. Count: 157, Neg. LLF: 82.08037534257532
Iteration: 17, Func. Count: 165, Neg. LLF: 82.08037534257397
Optimization terminated successfully (Exit mode 0)
Current function value: 82.08037534257532
Iterations: 17
Function evaluations: 165
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 111.90986768682757
Iteration: 2, Func. Count: 22, Neg. LLF: 603982.0119597972
Iteration: 3, Func. Count: 33, Neg. LLF: 2248421.306985475
Iteration: 4, Func. Count: 44, Neg. LLF: 89.9788535199425
Iteration: 5, Func. Count: 55, Neg. LLF: 84.27672707992393
Iteration: 6, Func. Count: 66, Neg. LLF: 82.2856944312971
Iteration: 7, Func. Count: 77, Neg. LLF: 82.80509268060818
Iteration: 8, Func. Count: 88, Neg. LLF: 82.12730053386774
Iteration: 9, Func. Count: 99, Neg. LLF: 82.14024400305944
Iteration: 10, Func. Count: 110, Neg. LLF: 82.09152115399193
Iteration: 11, Func. Count: 121, Neg. LLF: 82.07360465371123
Iteration: 12, Func. Count: 131, Neg. LLF: 82.07335642564718
Iteration: 13, Func. Count: 141, Neg. LLF: 82.0733331715888
Iteration: 14, Func. Count: 151, Neg. LLF: 82.07332490003697
Iteration: 15, Func. Count: 160, Neg. LLF: 82.07332490004278
Optimization terminated successfully (Exit mode 0)
Current function value: 82.07332490003697
Iterations: 15
Function evaluations: 160
Gradient evaluations: 15
Iteration: 1, Func. Count: 12, Neg. LLF: 116.48800147783943
Iteration: 2, Func. Count: 24, Neg. LLF: 115.76073263919382
Iteration: 3, Func. Count: 36, Neg. LLF: 85.70905208702635
Iteration: 4, Func. Count: 48, Neg. LLF: 86.68615267158177
Iteration: 5, Func. Count: 60, Neg. LLF: 117.03634991171879
Iteration: 6, Func. Count: 72, Neg. LLF: 82.4049773711169
Iteration: 7, Func. Count: 83, Neg. LLF: 82.3587271761273
Iteration: 8, Func. Count: 95, Neg. LLF: 89.29248864818975
Iteration: 9, Func. Count: 108, Neg. LLF: 82.09696088656527
Iteration: 10, Func. Count: 119, Neg. LLF: 82.08525293141558
Iteration: 11, Func. Count: 130, Neg. LLF: 82.09846081682613
Iteration: 12, Func. Count: 142, Neg. LLF: 82.07424518089006
Iteration: 13, Func. Count: 153, Neg. LLF: 82.07356538718899
Iteration: 14, Func. Count: 164, Neg. LLF: 82.07332813189122
Iteration: 15, Func. Count: 175, Neg. LLF: 82.07332535127657
Iteration: 16, Func. Count: 185, Neg. LLF: 82.073325353466
Optimization terminated successfully (Exit mode 0)
Current function value: 82.07332535127657
Iterations: 16
Function evaluations: 185
Gradient evaluations: 16
Iteration: 1, Func. Count: 13, Neg. LLF: 124.55542846541377
Iteration: 2, Func. Count: 26, Neg. LLF: 751941.3471953125
Iteration: 3, Func. Count: 39, Neg. LLF: 114.01515660582652
Iteration: 4, Func. Count: 52, Neg. LLF: 85.92609418326492
Iteration: 5, Func. Count: 65, Neg. LLF: 84.10950675234899
Iteration: 6, Func. Count: 78, Neg. LLF: 82.67842431684791
Iteration: 7, Func. Count: 91, Neg. LLF: 82.91905648134329
Iteration: 8, Func. Count: 104, Neg. LLF: 82.12702322798862
Iteration: 9, Func. Count: 116, Neg. LLF: 82.1247865682375
Iteration: 10, Func. Count: 129, Neg. LLF: 84.29817585522454
Iteration: 11, Func. Count: 142, Neg. LLF: 82.0749222090771
Iteration: 12, Func. Count: 154, Neg. LLF: 82.07357313946477
Iteration: 13, Func. Count: 166, Neg. LLF: 82.07336149244082
Iteration: 14, Func. Count: 178, Neg. LLF: 82.07332803261238
Iteration: 15, Func. Count: 190, Neg. LLF: 82.0733251495824
Iteration: 16, Func. Count: 201, Neg. LLF: 82.07332515561913
Optimization terminated successfully (Exit mode 0)
Current function value: 82.0733251495824
Iterations: 16
Function evaluations: 201
Gradient evaluations: 16
Iteration: 1, Func. Count: 14, Neg. LLF: 154.55228117552082
Iteration: 2, Func. Count: 28, Neg. LLF: 747359.9120934547
Iteration: 3, Func. Count: 42, Neg. LLF: 95.76453596485896
Iteration: 4, Func. Count: 56, Neg. LLF: 89.07531685404783
Iteration: 5, Func. Count: 70, Neg. LLF: 82.57272201667034
Iteration: 6, Func. Count: 84, Neg. LLF: 94.24971549953688
Iteration: 7, Func. Count: 98, Neg. LLF: 100.25708699012257
Iteration: 8, Func. Count: 112, Neg. LLF: 91.08145846752221
Iteration: 9, Func. Count: 126, Neg. LLF: 82.9630936819288
Iteration: 10, Func. Count: 140, Neg. LLF: 82.46757274606199
Iteration: 11, Func. Count: 154, Neg. LLF: 81.5569188273562
Iteration: 12, Func. Count: 167, Neg. LLF: 81.82379340437055
Iteration: 13, Func. Count: 181, Neg. LLF: 83.27921851861089
Iteration: 14, Func. Count: 195, Neg. LLF: 81.34550767215751
Iteration: 15, Func. Count: 208, Neg. LLF: 81.33413795292013
Iteration: 16, Func. Count: 221, Neg. LLF: 81.33001862569256
Iteration: 17, Func. Count: 234, Neg. LLF: 81.32983068101584
Iteration: 18, Func. Count: 247, Neg. LLF: 81.32982324156156
Iteration: 19, Func. Count: 260, Neg. LLF: 81.32982221233658
Iteration: 20, Func. Count: 272, Neg. LLF: 81.32982221233028
Optimization terminated successfully (Exit mode 0)
Current function value: 81.32982221233658
Iterations: 20
Function evaluations: 272
Gradient evaluations: 20
Iteration: 1, Func. Count: 7, Neg. LLF: 123.4117965917504
Iteration: 2, Func. Count: 16, Neg. LLF: 115.26992549170112
Iteration: 3, Func. Count: 23, Neg. LLF: 90.65200913168844
Iteration: 4, Func. Count: 30, Neg. LLF: 88.09673134480856
Iteration: 5, Func. Count: 37, Neg. LLF: 84.39182423212148
Iteration: 6, Func. Count: 44, Neg. LLF: 83.56512612247204
Iteration: 7, Func. Count: 50, Neg. LLF: 83.55322831742238
Iteration: 8, Func. Count: 56, Neg. LLF: 83.55664358221622
Iteration: 9, Func. Count: 63, Neg. LLF: 83.55132298089698
Iteration: 10, Func. Count: 70, Neg. LLF: 83.55064873064825
Iteration: 11, Func. Count: 76, Neg. LLF: 83.55064355631697
Iteration: 12, Func. Count: 81, Neg. LLF: 83.55064367449187
Optimization terminated successfully (Exit mode 0)
Current function value: 83.55064355631697
Iterations: 12
Function evaluations: 81
Gradient evaluations: 12
Iteration: 1, Func. Count: 8, Neg. LLF: 97.27007179264747
Iteration: 2, Func. Count: 16, Neg. LLF: 1412.9567753196995
Iteration: 3, Func. Count: 24, Neg. LLF: 89.10796306517777
Iteration: 4, Func. Count: 32, Neg. LLF: 84.01550702867813
Iteration: 5, Func. Count: 40, Neg. LLF: 83.75901861648703
Iteration: 6, Func. Count: 47, Neg. LLF: 83.58678485245636
Iteration: 7, Func. Count: 54, Neg. LLF: 83.55611608172832
Iteration: 8, Func. Count: 61, Neg. LLF: 83.55098271083595
Iteration: 9, Func. Count: 68, Neg. LLF: 83.55066573010365
Iteration: 10, Func. Count: 75, Neg. LLF: 83.550645176859
Iteration: 11, Func. Count: 82, Neg. LLF: 83.55064408185052
Iteration: 12, Func. Count: 89, Neg. LLF: 83.5506435426326
Optimization terminated successfully (Exit mode 0)
Current function value: 83.5506435426326
Iterations: 12
Function evaluations: 89
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 104.43042185256854
Iteration: 2, Func. Count: 18, Neg. LLF: 106.92698874847594
Iteration: 3, Func. Count: 27, Neg. LLF: 109.6974252788944
Iteration: 4, Func. Count: 37, Neg. LLF: 85.20007372694643
Iteration: 5, Func. Count: 46, Neg. LLF: 83.58130441798546
Iteration: 6, Func. Count: 54, Neg. LLF: 83.55982565198958
Iteration: 7, Func. Count: 62, Neg. LLF: 83.55220783849721
Iteration: 8, Func. Count: 70, Neg. LLF: 83.55074429130812
Iteration: 9, Func. Count: 78, Neg. LLF: 83.55066236562942
Iteration: 10, Func. Count: 86, Neg. LLF: 83.55064390288739
Iteration: 11, Func. Count: 93, Neg. LLF: 83.55064392390582
Optimization terminated successfully (Exit mode 0)
Current function value: 83.55064390288739
Iterations: 11
Function evaluations: 93
Gradient evaluations: 11
Iteration: 1, Func. Count: 10, Neg. LLF: 176.4295162639942
Iteration: 2, Func. Count: 20, Neg. LLF: 107.69444141361247
Iteration: 3, Func. Count: 30, Neg. LLF: 94.75127926105796
Iteration: 4, Func. Count: 40, Neg. LLF: 86.66321742082874
Iteration: 5, Func. Count: 50, Neg. LLF: 83.58839596929754
Iteration: 6, Func. Count: 59, Neg. LLF: 83.49775748141631
Iteration: 7, Func. Count: 68, Neg. LLF: 83.47470727739754
Iteration: 8, Func. Count: 77, Neg. LLF: 83.47018660523892
Iteration: 9, Func. Count: 86, Neg. LLF: 83.46937984833095
Iteration: 10, Func. Count: 95, Neg. LLF: 83.46935312176012
Iteration: 11, Func. Count: 103, Neg. LLF: 83.46935312178624
Optimization terminated successfully (Exit mode 0)
Current function value: 83.46935312176012
Iterations: 11
Function evaluations: 103
Gradient evaluations: 11
Iteration: 1, Func. Count: 11, Neg. LLF: 93.37008358060142
Iteration: 2, Func. Count: 22, Neg. LLF: 95.58146720735289
Iteration: 3, Func. Count: 33, Neg. LLF: 3315.6043509647106
Iteration: 4, Func. Count: 44, Neg. LLF: 83.72038223036736
Iteration: 5, Func. Count: 54, Neg. LLF: 84.43850388924676
Iteration: 6, Func. Count: 65, Neg. LLF: 83.26269563881212
Iteration: 7, Func. Count: 75, Neg. LLF: 87.4907708090401
Iteration: 8, Func. Count: 87, Neg. LLF: 83.30600352554437
Iteration: 9, Func. Count: 98, Neg. LLF: 82.74464338219758
Iteration: 10, Func. Count: 108, Neg. LLF: 82.74268862348845
Iteration: 11, Func. Count: 118, Neg. LLF: 82.74233124184097
Iteration: 12, Func. Count: 128, Neg. LLF: 82.74227809468951
Iteration: 13, Func. Count: 137, Neg. LLF: 82.74227808132389
Optimization terminated successfully (Exit mode 0)
Current function value: 82.74227809468951
Iterations: 13
Function evaluations: 137
Gradient evaluations: 13
Iteration: 1, Func. Count: 8, Neg. LLF: 125.80439143722576
Iteration: 2, Func. Count: 18, Neg. LLF: 153.03520343880507
Iteration: 3, Func. Count: 26, Neg. LLF: 225.17273659236776
Iteration: 4, Func. Count: 34, Neg. LLF: 96.24144623640888
Iteration: 5, Func. Count: 42, Neg. LLF: 627.8016806124142
Iteration: 6, Func. Count: 50, Neg. LLF: 84.23263309716866
Iteration: 7, Func. Count: 58, Neg. LLF: 82.47988559958496
Iteration: 8, Func. Count: 65, Neg. LLF: 82.46419706574832
Iteration: 9, Func. Count: 72, Neg. LLF: 82.46387306381358
Iteration: 10, Func. Count: 80, Neg. LLF: 82.46238319290529
Iteration: 11, Func. Count: 87, Neg. LLF: 82.4617510151094
Iteration: 12, Func. Count: 94, Neg. LLF: 82.46173045008936
Iteration: 13, Func. Count: 101, Neg. LLF: 82.46172886218064
Iteration: 14, Func. Count: 107, Neg. LLF: 82.46172883748662
Optimization terminated successfully (Exit mode 0)
Current function value: 82.46172886218064
Iterations: 14
Function evaluations: 107
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 93.79732031943604
Iteration: 2, Func. Count: 18, Neg. LLF: 12740172.584098374
Iteration: 3, Func. Count: 27, Neg. LLF: 107.38233468757318
Iteration: 4, Func. Count: 37, Neg. LLF: 84.10907130965137
Iteration: 5, Func. Count: 46, Neg. LLF: 83.46864730850518
Iteration: 6, Func. Count: 55, Neg. LLF: 82.24699135289764
Iteration: 7, Func. Count: 63, Neg. LLF: 82.2414715895408
Iteration: 8, Func. Count: 72, Neg. LLF: 82.20599291988533
Iteration: 9, Func. Count: 80, Neg. LLF: 82.20451135701164
Iteration: 10, Func. Count: 88, Neg. LLF: 82.20428698876475
Iteration: 11, Func. Count: 96, Neg. LLF: 82.20427313277133
Iteration: 12, Func. Count: 103, Neg. LLF: 82.20427313279995
Optimization terminated successfully (Exit mode 0)
Current function value: 82.20427313277133
Iterations: 12
Function evaluations: 103
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 97.40560702072405
Iteration: 2, Func. Count: 20, Neg. LLF: 25462.19859409074
Iteration: 3, Func. Count: 30, Neg. LLF: 83.98507818577481
Iteration: 4, Func. Count: 40, Neg. LLF: 95.22527233386745
Iteration: 5, Func. Count: 50, Neg. LLF: 96.56946447209523
Iteration: 6, Func. Count: 60, Neg. LLF: 82.28084923328626
Iteration: 7, Func. Count: 69, Neg. LLF: 82.21062916906382
Iteration: 8, Func. Count: 78, Neg. LLF: 82.2063050852698
Iteration: 9, Func. Count: 87, Neg. LLF: 82.20459092169037
Iteration: 10, Func. Count: 96, Neg. LLF: 82.20433901701925
Iteration: 11, Func. Count: 105, Neg. LLF: 82.20427379326507
Iteration: 12, Func. Count: 114, Neg. LLF: 82.20427308201903
Optimization terminated successfully (Exit mode 0)
Current function value: 82.20427308201903
Iterations: 12
Function evaluations: 114
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 102.41758951581956
Iteration: 2, Func. Count: 22, Neg. LLF: 254.2893944449722
Iteration: 3, Func. Count: 33, Neg. LLF: 8678435.428938294
Iteration: 4, Func. Count: 44, Neg. LLF: 84.25409188145996
Iteration: 5, Func. Count: 55, Neg. LLF: 82.90583539893947
Iteration: 6, Func. Count: 66, Neg. LLF: 82.22933624613442
Iteration: 7, Func. Count: 76, Neg. LLF: 82.64951454980113
Iteration: 8, Func. Count: 87, Neg. LLF: 82.20489115349785
Iteration: 9, Func. Count: 97, Neg. LLF: 82.20439445764055
Iteration: 10, Func. Count: 107, Neg. LLF: 82.20432389304759
Iteration: 11, Func. Count: 117, Neg. LLF: 82.20427630154185
Iteration: 12, Func. Count: 127, Neg. LLF: 82.204273167592
Iteration: 13, Func. Count: 136, Neg. LLF: 82.20427318479877
Optimization terminated successfully (Exit mode 0)
Current function value: 82.204273167592
Iterations: 13
Function evaluations: 136
Gradient evaluations: 13
Iteration: 1, Func. Count: 12, Neg. LLF: 117.88721607163018
Iteration: 2, Func. Count: 24, Neg. LLF: 341.5267642745574
Iteration: 3, Func. Count: 36, Neg. LLF: 8794814.196766492
Iteration: 4, Func. Count: 48, Neg. LLF: 83.14761900287614
Iteration: 5, Func. Count: 60, Neg. LLF: 84.5728216138012
Iteration: 6, Func. Count: 72, Neg. LLF: 83.36565752078972
Iteration: 7, Func. Count: 84, Neg. LLF: 82.17539376490463
Iteration: 8, Func. Count: 95, Neg. LLF: 82.44317259803059
Iteration: 9, Func. Count: 107, Neg. LLF: 82.4537509765958
Iteration: 10, Func. Count: 119, Neg. LLF: 82.11464161402729
Iteration: 11, Func. Count: 130, Neg. LLF: 82.05908978305318
Iteration: 12, Func. Count: 141, Neg. LLF: 82.05452065204238
Iteration: 13, Func. Count: 152, Neg. LLF: 82.05391174565803
Iteration: 14, Func. Count: 163, Neg. LLF: 82.05383429307614
Iteration: 15, Func. Count: 174, Neg. LLF: 82.05382154238943
Iteration: 16, Func. Count: 185, Neg. LLF: 82.05382099966816
Optimization terminated successfully (Exit mode 0)
Current function value: 82.05382099966816
Iterations: 16
Function evaluations: 185
Gradient evaluations: 16
Iteration: 1, Func. Count: 9, Neg. LLF: 131.9689294121033
Iteration: 2, Func. Count: 20, Neg. LLF: 209.55343562950955
Iteration: 3, Func. Count: 29, Neg. LLF: 3283528.8445573114
Iteration: 4, Func. Count: 38, Neg. LLF: 90.74705078414026
Iteration: 5, Func. Count: 47, Neg. LLF: 92.79743463103864
Iteration: 6, Func. Count: 56, Neg. LLF: 82.45363133129402
Iteration: 7, Func. Count: 64, Neg. LLF: 84.7750152667874
Iteration: 8, Func. Count: 74, Neg. LLF: 84.51641439507037
Iteration: 9, Func. Count: 83, Neg. LLF: 82.24240630463011
Iteration: 10, Func. Count: 91, Neg. LLF: 82.22229305589025
Iteration: 11, Func. Count: 99, Neg. LLF: 82.2132980915347
Iteration: 12, Func. Count: 107, Neg. LLF: 82.20715049825677
Iteration: 13, Func. Count: 115, Neg. LLF: 82.20691703057074
Iteration: 14, Func. Count: 123, Neg. LLF: 82.20685137030263
Iteration: 15, Func. Count: 130, Neg. LLF: 82.20685137027353
Optimization terminated successfully (Exit mode 0)
Current function value: 82.20685137030263
Iterations: 15
Function evaluations: 130
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 95.82336540127555
Iteration: 2, Func. Count: 20, Neg. LLF: 32975163.02459374
Iteration: 3, Func. Count: 30, Neg. LLF: 84.34284369610738
Iteration: 4, Func. Count: 40, Neg. LLF: 88.31491850517837
Iteration: 5, Func. Count: 50, Neg. LLF: 105.22536355915193
Iteration: 6, Func. Count: 60, Neg. LLF: 83.55456323999863
Iteration: 7, Func. Count: 70, Neg. LLF: 82.19863682980036
Iteration: 8, Func. Count: 79, Neg. LLF: 82.1922644405546
Iteration: 9, Func. Count: 88, Neg. LLF: 82.19032042838535
Iteration: 10, Func. Count: 97, Neg. LLF: 82.19011938072015
Iteration: 11, Func. Count: 106, Neg. LLF: 82.19003828379745
Iteration: 12, Func. Count: 115, Neg. LLF: 82.19000013722813
Iteration: 13, Func. Count: 124, Neg. LLF: 82.18999585339873
Iteration: 14, Func. Count: 133, Neg. LLF: 82.18999453075271
Iteration: 15, Func. Count: 141, Neg. LLF: 82.18999453076214
Optimization terminated successfully (Exit mode 0)
Current function value: 82.18999453075271
Iterations: 15
Function evaluations: 141
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 102.8983044320836
Iteration: 2, Func. Count: 22, Neg. LLF: 52325711.36331591
Iteration: 3, Func. Count: 33, Neg. LLF: 84.00958883413708
Iteration: 4, Func. Count: 44, Neg. LLF: 102.89602974299314
Iteration: 5, Func. Count: 55, Neg. LLF: 82.24357674106213
Iteration: 6, Func. Count: 65, Neg. LLF: 82.25235510274368
Iteration: 7, Func. Count: 76, Neg. LLF: 82.20853251585032
Iteration: 8, Func. Count: 87, Neg. LLF: 82.1935507538262
Iteration: 9, Func. Count: 97, Neg. LLF: 82.19110051214021
Iteration: 10, Func. Count: 107, Neg. LLF: 82.19068189226901
Iteration: 11, Func. Count: 117, Neg. LLF: 82.19003245489463
Iteration: 12, Func. Count: 127, Neg. LLF: 82.1899960833658
Iteration: 13, Func. Count: 137, Neg. LLF: 82.18999440559729
Iteration: 14, Func. Count: 146, Neg. LLF: 82.18999440784427
Optimization terminated successfully (Exit mode 0)
Current function value: 82.18999440559729
Iterations: 14
Function evaluations: 146
Gradient evaluations: 14
Iteration: 1, Func. Count: 12, Neg. LLF: 113.12060806168175
Iteration: 2, Func. Count: 24, Neg. LLF: 48823741.817049146
Iteration: 3, Func. Count: 36, Neg. LLF: 92.46423548609354
Iteration: 4, Func. Count: 48, Neg. LLF: 84.58342398333747
Iteration: 5, Func. Count: 61, Neg. LLF: 82.4699340174761
Iteration: 6, Func. Count: 72, Neg. LLF: 82.29262850659713
Iteration: 7, Func. Count: 83, Neg. LLF: 82.59391738469489
Iteration: 8, Func. Count: 95, Neg. LLF: 82.19939365543173
Iteration: 9, Func. Count: 106, Neg. LLF: 82.19412769219157
Iteration: 10, Func. Count: 117, Neg. LLF: 82.19282062462547
Iteration: 11, Func. Count: 128, Neg. LLF: 82.19141110998329
Iteration: 12, Func. Count: 139, Neg. LLF: 82.19092950357467
Iteration: 13, Func. Count: 150, Neg. LLF: 82.19038274804608
Iteration: 14, Func. Count: 161, Neg. LLF: 82.19003108397438
Iteration: 15, Func. Count: 172, Neg. LLF: 82.18999558034139
Iteration: 16, Func. Count: 183, Neg. LLF: 82.18999442113059
Iteration: 17, Func. Count: 193, Neg. LLF: 82.18999443173249
Optimization terminated successfully (Exit mode 0)
Current function value: 82.18999442113059
Iterations: 17
Function evaluations: 193
Gradient evaluations: 17
Iteration: 1, Func. Count: 13, Neg. LLF: 156.41972798646702
Iteration: 2, Func. Count: 26, Neg. LLF: 32698744.123839207
Iteration: 3, Func. Count: 39, Neg. LLF: 136.67103763871603
Iteration: 4, Func. Count: 52, Neg. LLF: 84.05938714913056
Iteration: 5, Func. Count: 66, Neg. LLF: 82.52887014870898
Iteration: 6, Func. Count: 78, Neg. LLF: 82.02752176279536
Iteration: 7, Func. Count: 90, Neg. LLF: 145.83799107722083
Iteration: 8, Func. Count: 104, Neg. LLF: 81.84828567245627
Iteration: 9, Func. Count: 116, Neg. LLF: 81.94674868893513
Iteration: 10, Func. Count: 129, Neg. LLF: 82.78895900774845
Iteration: 11, Func. Count: 142, Neg. LLF: 81.57136007024576
Iteration: 12, Func. Count: 155, Neg. LLF: 81.47742072535627
Iteration: 13, Func. Count: 167, Neg. LLF: 81.47681241714089
Iteration: 14, Func. Count: 179, Neg. LLF: 81.47675365908788
Iteration: 15, Func. Count: 191, Neg. LLF: 81.47675284460388
Optimization terminated successfully (Exit mode 0)
Current function value: 81.47675284460388
Iterations: 15
Function evaluations: 191
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 125.07723366771609
Iteration: 2, Func. Count: 22, Neg. LLF: 324.8328647755468
Iteration: 3, Func. Count: 32, Neg. LLF: 3267072.0398065387
Iteration: 4, Func. Count: 42, Neg. LLF: 91.07863519756978
Iteration: 5, Func. Count: 52, Neg. LLF: 84.76528553995816
Iteration: 6, Func. Count: 62, Neg. LLF: 82.33899697008664
Iteration: 7, Func. Count: 71, Neg. LLF: 88.0060440081992
Iteration: 8, Func. Count: 82, Neg. LLF: 82.56801754129711
Iteration: 9, Func. Count: 92, Neg. LLF: 82.29362263332345
Iteration: 10, Func. Count: 102, Neg. LLF: 82.19115707893017
Iteration: 11, Func. Count: 111, Neg. LLF: 82.16839758372377
Iteration: 12, Func. Count: 120, Neg. LLF: 82.16379692143407
Iteration: 13, Func. Count: 129, Neg. LLF: 82.15973254744206
Iteration: 14, Func. Count: 138, Neg. LLF: 82.15959611704095
Iteration: 15, Func. Count: 147, Neg. LLF: 82.15958545586395
Iteration: 16, Func. Count: 156, Neg. LLF: 82.15958421742249
Iteration: 17, Func. Count: 164, Neg. LLF: 82.15958407891938
Optimization terminated successfully (Exit mode 0)
Current function value: 82.15958421742249
Iterations: 17
Function evaluations: 164
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 95.65910217966491
Iteration: 2, Func. Count: 22, Neg. LLF: 32924895.584139887
Iteration: 3, Func. Count: 33, Neg. LLF: 84.31127078837733
Iteration: 4, Func. Count: 44, Neg. LLF: 88.44682325794336
Iteration: 5, Func. Count: 55, Neg. LLF: 108.03259206041027
Iteration: 6, Func. Count: 66, Neg. LLF: 83.6237316637833
Iteration: 7, Func. Count: 77, Neg. LLF: 82.19779383683226
Iteration: 8, Func. Count: 87, Neg. LLF: 82.26051416771305
Iteration: 9, Func. Count: 98, Neg. LLF: 82.18803402952726
Iteration: 10, Func. Count: 109, Neg. LLF: 82.17878312388272
Iteration: 11, Func. Count: 119, Neg. LLF: 82.16140473883584
Iteration: 12, Func. Count: 129, Neg. LLF: 82.1600015770983
Iteration: 13, Func. Count: 139, Neg. LLF: 82.15961222977542
Iteration: 14, Func. Count: 149, Neg. LLF: 82.15958771623202
Iteration: 15, Func. Count: 159, Neg. LLF: 82.15958496275088
Iteration: 16, Func. Count: 169, Neg. LLF: 82.15958417922026
Optimization terminated successfully (Exit mode 0)
Current function value: 82.15958417922026
Iterations: 16
Function evaluations: 169
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 102.02079160265008
Iteration: 2, Func. Count: 24, Neg. LLF: 52175898.62866947
Iteration: 3, Func. Count: 36, Neg. LLF: 83.98580306587998
Iteration: 4, Func. Count: 48, Neg. LLF: 100.25923040667365
Iteration: 5, Func. Count: 60, Neg. LLF: 82.31414066517124
Iteration: 6, Func. Count: 71, Neg. LLF: 82.23216770099101
Iteration: 7, Func. Count: 82, Neg. LLF: 82.44928582803352
Iteration: 8, Func. Count: 94, Neg. LLF: 82.22743202689371
Iteration: 9, Func. Count: 106, Neg. LLF: 82.17432473239957
Iteration: 10, Func. Count: 117, Neg. LLF: 82.16658676539902
Iteration: 11, Func. Count: 128, Neg. LLF: 82.16176672715655
Iteration: 12, Func. Count: 139, Neg. LLF: 82.15976199020734
Iteration: 13, Func. Count: 150, Neg. LLF: 82.15963236769612
Iteration: 14, Func. Count: 161, Neg. LLF: 82.15959350215672
Iteration: 15, Func. Count: 172, Neg. LLF: 82.15958543505754
Iteration: 16, Func. Count: 183, Neg. LLF: 82.15958408325001
Iteration: 17, Func. Count: 193, Neg. LLF: 82.15958408699304
Optimization terminated successfully (Exit mode 0)
Current function value: 82.15958408325001
Iterations: 17
Function evaluations: 193
Gradient evaluations: 17
Iteration: 1, Func. Count: 13, Neg. LLF: 109.8319444974134
Iteration: 2, Func. Count: 26, Neg. LLF: 51174886.4278192
Iteration: 3, Func. Count: 39, Neg. LLF: 90.75854755202491
Iteration: 4, Func. Count: 52, Neg. LLF: 85.01493944435005
Iteration: 5, Func. Count: 66, Neg. LLF: 82.46573240260484
Iteration: 6, Func. Count: 78, Neg. LLF: 82.34773734877024
Iteration: 7, Func. Count: 90, Neg. LLF: 83.67100024556079
Iteration: 8, Func. Count: 103, Neg. LLF: 82.18823633921734
Iteration: 9, Func. Count: 115, Neg. LLF: 82.21963867766642
Iteration: 10, Func. Count: 128, Neg. LLF: 82.16283338104056
Iteration: 11, Func. Count: 140, Neg. LLF: 82.16007721087193
Iteration: 12, Func. Count: 152, Neg. LLF: 82.15969747158613
Iteration: 13, Func. Count: 164, Neg. LLF: 82.15958935486846
Iteration: 14, Func. Count: 176, Neg. LLF: 82.15958460376729
Iteration: 15, Func. Count: 188, Neg. LLF: 82.15958394371629
Optimization terminated successfully (Exit mode 0)
Current function value: 82.15958394371629
Iterations: 15
Function evaluations: 188
Gradient evaluations: 15
Iteration: 1, Func. Count: 14, Neg. LLF: 138.323285623239
Iteration: 2, Func. Count: 28, Neg. LLF: 32612879.18236671
Iteration: 3, Func. Count: 42, Neg. LLF: 177.48273596213778
Iteration: 4, Func. Count: 56, Neg. LLF: 84.35633602244299
Iteration: 5, Func. Count: 71, Neg. LLF: 82.57712908718172
Iteration: 6, Func. Count: 84, Neg. LLF: 82.04535829298646
Iteration: 7, Func. Count: 97, Neg. LLF: 85.06114974437384
Iteration: 8, Func. Count: 111, Neg. LLF: 82.3375772238751
Iteration: 9, Func. Count: 125, Neg. LLF: 101.75204220031571
Iteration: 10, Func. Count: 139, Neg. LLF: 81.99406427404796
Iteration: 11, Func. Count: 153, Neg. LLF: 82.00771616900376
Iteration: 12, Func. Count: 167, Neg. LLF: 81.63456538990232
Iteration: 13, Func. Count: 180, Neg. LLF: 81.53450272866233
Iteration: 14, Func. Count: 193, Neg. LLF: 81.49469752217891
Iteration: 15, Func. Count: 206, Neg. LLF: 81.47700892875467
Iteration: 16, Func. Count: 219, Neg. LLF: 81.47678044600902
Iteration: 17, Func. Count: 232, Neg. LLF: 81.47675427584595
Iteration: 18, Func. Count: 245, Neg. LLF: 81.47675286847794
Iteration: 19, Func. Count: 257, Neg. LLF: 81.47675286846678
Optimization terminated successfully (Exit mode 0)
Current function value: 81.47675286847794
Iterations: 19
Function evaluations: 257
Gradient evaluations: 19
Iteration: 1, Func. Count: 11, Neg. LLF: 132.58791124181687
Iteration: 2, Func. Count: 24, Neg. LLF: 291.5820111583466
Iteration: 3, Func. Count: 35, Neg. LLF: 3357282.6251353403
Iteration: 4, Func. Count: 46, Neg. LLF: 808546.91571058
Iteration: 5, Func. Count: 57, Neg. LLF: 85.10388111589005
Iteration: 6, Func. Count: 68, Neg. LLF: 769721.8166553358
Iteration: 7, Func. Count: 79, Neg. LLF: 82.18773911943259
Iteration: 8, Func. Count: 89, Neg. LLF: 83.219927696544
Iteration: 9, Func. Count: 100, Neg. LLF: 82.4593524304805
Iteration: 10, Func. Count: 111, Neg. LLF: 82.08539398793135
Iteration: 11, Func. Count: 122, Neg. LLF: 81.99335675736964
Iteration: 12, Func. Count: 132, Neg. LLF: 81.9979889418673
Iteration: 13, Func. Count: 143, Neg. LLF: 81.98834273759277
Iteration: 14, Func. Count: 153, Neg. LLF: 81.98832442051919
Iteration: 15, Func. Count: 162, Neg. LLF: 81.98832442048106
Optimization terminated successfully (Exit mode 0)
Current function value: 81.98832442051919
Iterations: 15
Function evaluations: 162
Gradient evaluations: 15
Iteration: 1, Func. Count: 12, Neg. LLF: 96.16054455731411
Iteration: 2, Func. Count: 24, Neg. LLF: 33331492.699788217
Iteration: 3, Func. Count: 36, Neg. LLF: 86.73013196182805
Iteration: 4, Func. Count: 49, Neg. LLF: 177.45233148219748
Iteration: 5, Func. Count: 61, Neg. LLF: 84.49167485992723
Iteration: 6, Func. Count: 73, Neg. LLF: 84.11763250465546
Iteration: 7, Func. Count: 85, Neg. LLF: 82.32122421691868
Iteration: 8, Func. Count: 97, Neg. LLF: 82.02176920188498
Iteration: 9, Func. Count: 108, Neg. LLF: 81.99240770450113
Iteration: 10, Func. Count: 119, Neg. LLF: 81.98924737503322
Iteration: 11, Func. Count: 130, Neg. LLF: 81.98851527698248
Iteration: 12, Func. Count: 141, Neg. LLF: 81.98837078734802
Iteration: 13, Func. Count: 152, Neg. LLF: 81.98832831176549
Iteration: 14, Func. Count: 163, Neg. LLF: 81.98832482588737
Iteration: 15, Func. Count: 174, Neg. LLF: 81.98832410265615
Optimization terminated successfully (Exit mode 0)
Current function value: 81.98832410265615
Iterations: 15
Function evaluations: 174
Gradient evaluations: 15
Iteration: 1, Func. Count: 13, Neg. LLF: 103.18756844999173
Iteration: 2, Func. Count: 26, Neg. LLF: 52433570.45069849
Iteration: 3, Func. Count: 39, Neg. LLF: 84.50470393498671
Iteration: 4, Func. Count: 53, Neg. LLF: 111.74429770045077
Iteration: 5, Func. Count: 66, Neg. LLF: 84.82806635976141
Iteration: 6, Func. Count: 79, Neg. LLF: 82.13768301619872
Iteration: 7, Func. Count: 91, Neg. LLF: 82.14460044335925
Iteration: 8, Func. Count: 104, Neg. LLF: 82.065253796882
Iteration: 9, Func. Count: 117, Neg. LLF: 81.98964082168831
Iteration: 10, Func. Count: 129, Neg. LLF: 81.98906869244865
Iteration: 11, Func. Count: 141, Neg. LLF: 81.9883691952514
Iteration: 12, Func. Count: 153, Neg. LLF: 81.98833155433498
Iteration: 13, Func. Count: 165, Neg. LLF: 81.98832559676956
Iteration: 14, Func. Count: 177, Neg. LLF: 81.98832410200562
Iteration: 15, Func. Count: 188, Neg. LLF: 81.98832411225767
Optimization terminated successfully (Exit mode 0)
Current function value: 81.98832410200562
Iterations: 15
Function evaluations: 188
Gradient evaluations: 15
Iteration: 1, Func. Count: 14, Neg. LLF: 112.05286397891332
Iteration: 2, Func. Count: 28, Neg. LLF: 49936146.751731135
Iteration: 3, Func. Count: 42, Neg. LLF: 104.62362260440972
Iteration: 4, Func. Count: 56, Neg. LLF: 3293338.422920617
Iteration: 5, Func. Count: 70, Neg. LLF: 84.96750385902871
Iteration: 6, Func. Count: 84, Neg. LLF: 82.31738479538926
Iteration: 7, Func. Count: 97, Neg. LLF: 82.15201887520429
Iteration: 8, Func. Count: 110, Neg. LLF: 82.94147895866078
Iteration: 9, Func. Count: 124, Neg. LLF: 82.00807248816376
Iteration: 10, Func. Count: 137, Neg. LLF: 81.99625565910985
Iteration: 11, Func. Count: 150, Neg. LLF: 81.98897240317753
Iteration: 12, Func. Count: 163, Neg. LLF: 81.98846896628802
Iteration: 13, Func. Count: 176, Neg. LLF: 81.98833197664582
Iteration: 14, Func. Count: 189, Neg. LLF: 81.98832436576242
Iteration: 15, Func. Count: 201, Neg. LLF: 81.98832438520249
Optimization terminated successfully (Exit mode 0)
Current function value: 81.98832436576242
Iterations: 15
Function evaluations: 201
Gradient evaluations: 15
Iteration: 1, Func. Count: 15, Neg. LLF: 99.4515556883593
Iteration: 2, Func. Count: 30, Neg. LLF: 387.0380803735882
Iteration: 3, Func. Count: 45, Neg. LLF: 694619.540589418
Iteration: 4, Func. Count: 60, Neg. LLF: 4237296.368242447
Iteration: 5, Func. Count: 75, Neg. LLF: 85.81921207282866
Iteration: 6, Func. Count: 90, Neg. LLF: 82.12446939963873
Iteration: 7, Func. Count: 104, Neg. LLF: 81.87571322408803
Iteration: 8, Func. Count: 118, Neg. LLF: 86.65326976541103
Iteration: 9, Func. Count: 134, Neg. LLF: 82.42249808077513
Iteration: 10, Func. Count: 149, Neg. LLF: 81.3776952888096
Iteration: 11, Func. Count: 163, Neg. LLF: 82.73892743918431
Iteration: 12, Func. Count: 179, Neg. LLF: 81.33986047868585
Iteration: 13, Func. Count: 193, Neg. LLF: 81.33134061036436
Iteration: 14, Func. Count: 207, Neg. LLF: 81.3302650824274
Iteration: 15, Func. Count: 221, Neg. LLF: 81.32984859916324
Iteration: 16, Func. Count: 235, Neg. LLF: 81.32982375262219
Iteration: 17, Func. Count: 249, Neg. LLF: 81.32982220644861
Iteration: 18, Func. Count: 262, Neg. LLF: 81.32982220645718
Optimization terminated successfully (Exit mode 0)
Current function value: 81.32982220644861
Iterations: 18
Function evaluations: 262
Gradient evaluations: 18
Iteration: 1, Func. Count: 8, Neg. LLF: 128.21895211366325
Iteration: 2, Func. Count: 18, Neg. LLF: 125.23077225340283
Iteration: 3, Func. Count: 27, Neg. LLF: 93.48123271217513
Iteration: 4, Func. Count: 35, Neg. LLF: 2658.4666564556187
Iteration: 5, Func. Count: 43, Neg. LLF: 83.985242292467
Iteration: 6, Func. Count: 50, Neg. LLF: 83.60086729299664
Iteration: 7, Func. Count: 57, Neg. LLF: 83.56912920846005
Iteration: 8, Func. Count: 64, Neg. LLF: 83.55630173536154
Iteration: 9, Func. Count: 71, Neg. LLF: 83.55082181974007
Iteration: 10, Func. Count: 78, Neg. LLF: 83.55067054968742
Iteration: 11, Func. Count: 85, Neg. LLF: 83.55064368661559
Iteration: 12, Func. Count: 91, Neg. LLF: 83.55064369894178
Optimization terminated successfully (Exit mode 0)
Current function value: 83.55064368661559
Iterations: 12
Function evaluations: 91
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 96.06853547927216
Iteration: 2, Func. Count: 18, Neg. LLF: 1108.786387577432
Iteration: 3, Func. Count: 27, Neg. LLF: 175.86625104541247
Iteration: 4, Func. Count: 37, Neg. LLF: 84.0188412219499
Iteration: 5, Func. Count: 46, Neg. LLF: 83.65983627440043
Iteration: 6, Func. Count: 54, Neg. LLF: 83.56079509498514
Iteration: 7, Func. Count: 62, Neg. LLF: 83.55171045698883
Iteration: 8, Func. Count: 70, Neg. LLF: 83.55080856529577
Iteration: 9, Func. Count: 78, Neg. LLF: 83.55065218529911
Iteration: 10, Func. Count: 86, Neg. LLF: 83.55064556529899
Iteration: 11, Func. Count: 94, Neg. LLF: 83.55064396802945
Iteration: 12, Func. Count: 101, Neg. LLF: 83.55064398349852
Optimization terminated successfully (Exit mode 0)
Current function value: 83.55064396802945
Iterations: 12
Function evaluations: 101
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 592.1730702348631
Iteration: 2, Func. Count: 20, Neg. LLF: 109.12242001005929
Iteration: 3, Func. Count: 30, Neg. LLF: 110.19854081870284
Iteration: 4, Func. Count: 40, Neg. LLF: 98.44986601638794
Iteration: 5, Func. Count: 50, Neg. LLF: 83.56504568713706
Iteration: 6, Func. Count: 59, Neg. LLF: 83.55845640898939
Iteration: 7, Func. Count: 68, Neg. LLF: 83.55152649916056
Iteration: 8, Func. Count: 77, Neg. LLF: 83.55080728325638
Iteration: 9, Func. Count: 86, Neg. LLF: 83.55067065726614
Iteration: 10, Func. Count: 95, Neg. LLF: 83.55064460320185
Iteration: 11, Func. Count: 104, Neg. LLF: 83.5506435556554
Iteration: 12, Func. Count: 112, Neg. LLF: 83.55064357664193
Optimization terminated successfully (Exit mode 0)
Current function value: 83.5506435556554
Iterations: 12
Function evaluations: 112
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 675.7973911586063
Iteration: 2, Func. Count: 22, Neg. LLF: 194.9439656388033
Iteration: 3, Func. Count: 33, Neg. LLF: 1054.0629861866378
Iteration: 4, Func. Count: 45, Neg. LLF: 91.75169524632996
Iteration: 5, Func. Count: 56, Neg. LLF: 83.57114629277517
Iteration: 6, Func. Count: 66, Neg. LLF: 83.5021387656999
Iteration: 7, Func. Count: 76, Neg. LLF: 83.48329917142098
Iteration: 8, Func. Count: 86, Neg. LLF: 83.47137589138421
Iteration: 9, Func. Count: 96, Neg. LLF: 83.46959688297193
Iteration: 10, Func. Count: 106, Neg. LLF: 83.46935654217717
Iteration: 11, Func. Count: 116, Neg. LLF: 83.46935310500893
Iteration: 12, Func. Count: 125, Neg. LLF: 83.46935310496896
Optimization terminated successfully (Exit mode 0)
Current function value: 83.46935310500893
Iterations: 12
Function evaluations: 125
Gradient evaluations: 12
Iteration: 1, Func. Count: 12, Neg. LLF: 689.9171926960146
Iteration: 2, Func. Count: 24, Neg. LLF: 552.0989602409898
Iteration: 3, Func. Count: 36, Neg. LLF: 1253.1658528242572
Iteration: 4, Func. Count: 49, Neg. LLF: 101.1450985937543
Iteration: 5, Func. Count: 62, Neg. LLF: 83.55495272758353
Iteration: 6, Func. Count: 73, Neg. LLF: 83.50610940258183
Iteration: 7, Func. Count: 84, Neg. LLF: 83.5104336615037
Iteration: 8, Func. Count: 96, Neg. LLF: 83.46980112397895
Iteration: 9, Func. Count: 107, Neg. LLF: 83.4693787402277
Iteration: 10, Func. Count: 118, Neg. LLF: 83.46935459266562
Iteration: 11, Func. Count: 129, Neg. LLF: 83.4693529894432
Iteration: 12, Func. Count: 139, Neg. LLF: 83.4693529921665
Optimization terminated successfully (Exit mode 0)
Current function value: 83.4693529894432
Iterations: 12
Function evaluations: 139
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 133.64698773626026
Iteration: 2, Func. Count: 20, Neg. LLF: 156.2272497449966
Iteration: 3, Func. Count: 29, Neg. LLF: 295.5735379727838
Iteration: 4, Func. Count: 38, Neg. LLF: 100.16478742423506
Iteration: 5, Func. Count: 47, Neg. LLF: 2393.421445689864
Iteration: 6, Func. Count: 56, Neg. LLF: 83.91610772533211
Iteration: 7, Func. Count: 65, Neg. LLF: 82.52079605239621
Iteration: 8, Func. Count: 73, Neg. LLF: 82.4733190686099
Iteration: 9, Func. Count: 81, Neg. LLF: 82.4687065670374
Iteration: 10, Func. Count: 89, Neg. LLF: 82.46401976878812
Iteration: 11, Func. Count: 97, Neg. LLF: 82.46179391971502
Iteration: 12, Func. Count: 105, Neg. LLF: 82.46173248246347
Iteration: 13, Func. Count: 113, Neg. LLF: 82.46172887045563
Iteration: 14, Func. Count: 120, Neg. LLF: 82.4617288457608
Optimization terminated successfully (Exit mode 0)
Current function value: 82.46172887045563
Iterations: 14
Function evaluations: 120
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 93.74909617879878
Iteration: 2, Func. Count: 20, Neg. LLF: 3806.4595702301945
Iteration: 3, Func. Count: 30, Neg. LLF: 84.56554673123648
Iteration: 4, Func. Count: 40, Neg. LLF: 92.75525289298363
Iteration: 5, Func. Count: 51, Neg. LLF: 82.69047452811249
Iteration: 6, Func. Count: 61, Neg. LLF: 82.22669699444377
Iteration: 7, Func. Count: 70, Neg. LLF: 82.55189321912268
Iteration: 8, Func. Count: 80, Neg. LLF: 83.13256219076017
Iteration: 9, Func. Count: 90, Neg. LLF: 82.1923053675541
Iteration: 10, Func. Count: 99, Neg. LLF: 82.19159580692923
Iteration: 11, Func. Count: 108, Neg. LLF: 82.19159092693981
Iteration: 12, Func. Count: 117, Neg. LLF: 82.19159021168011
Optimization terminated successfully (Exit mode 0)
Current function value: 82.19159021168011
Iterations: 12
Function evaluations: 117
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 249.30781855764576
Iteration: 2, Func. Count: 22, Neg. LLF: 18561241.11875885
Iteration: 3, Func. Count: 33, Neg. LLF: 86.78345471384281
Iteration: 4, Func. Count: 44, Neg. LLF: 83.23250028590267
Iteration: 5, Func. Count: 55, Neg. LLF: 85.9395822601186
Iteration: 6, Func. Count: 66, Neg. LLF: 82.43562297656202
Iteration: 7, Func. Count: 76, Neg. LLF: 83.17939597587083
Iteration: 8, Func. Count: 87, Neg. LLF: 85.52459568661146
Iteration: 9, Func. Count: 99, Neg. LLF: 82.20101303361525
Iteration: 10, Func. Count: 109, Neg. LLF: 82.19253275679861
Iteration: 11, Func. Count: 119, Neg. LLF: 82.19213915080306
Iteration: 12, Func. Count: 129, Neg. LLF: 82.19166370961744
Iteration: 13, Func. Count: 139, Neg. LLF: 82.19161379055745
Iteration: 14, Func. Count: 149, Neg. LLF: 82.19159117206033
Iteration: 15, Func. Count: 159, Neg. LLF: 82.1915901335783
Iteration: 16, Func. Count: 168, Neg. LLF: 82.19159014504841
Optimization terminated successfully (Exit mode 0)
Current function value: 82.1915901335783
Iterations: 16
Function evaluations: 168
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 252.3594874678763
Iteration: 2, Func. Count: 24, Neg. LLF: 561.7602654449598
Iteration: 3, Func. Count: 36, Neg. LLF: 9921161.662543131
Iteration: 4, Func. Count: 48, Neg. LLF: 83.5358363374332
Iteration: 5, Func. Count: 60, Neg. LLF: 82.81228793815579
Iteration: 6, Func. Count: 72, Neg. LLF: 82.57213841103207
Iteration: 7, Func. Count: 84, Neg. LLF: 83.65468209076938
Iteration: 8, Func. Count: 96, Neg. LLF: 82.19999462612208
Iteration: 9, Func. Count: 107, Neg. LLF: 82.19191677279517
Iteration: 10, Func. Count: 118, Neg. LLF: 82.19168665305882
Iteration: 11, Func. Count: 129, Neg. LLF: 82.19162346178273
Iteration: 12, Func. Count: 140, Neg. LLF: 82.19159240802453
Iteration: 13, Func. Count: 151, Neg. LLF: 82.19159021715984
Iteration: 14, Func. Count: 161, Neg. LLF: 82.1915902349662
Optimization terminated successfully (Exit mode 0)
Current function value: 82.19159021715984
Iterations: 14
Function evaluations: 161
Gradient evaluations: 14
Iteration: 1, Func. Count: 13, Neg. LLF: 257.8564216634021
Iteration: 2, Func. Count: 26, Neg. LLF: 628.0846370727421
Iteration: 3, Func. Count: 39, Neg. LLF: 9402946.564630756
Iteration: 4, Func. Count: 52, Neg. LLF: 83.60259970520116
Iteration: 5, Func. Count: 65, Neg. LLF: 82.48194341583051
Iteration: 6, Func. Count: 77, Neg. LLF: 82.70105841211648
Iteration: 7, Func. Count: 90, Neg. LLF: 83.56045379052706
Iteration: 8, Func. Count: 103, Neg. LLF: 84.75803968187917
Iteration: 9, Func. Count: 116, Neg. LLF: 82.23553765137336
Iteration: 10, Func. Count: 129, Neg. LLF: 82.16966420885505
Iteration: 11, Func. Count: 142, Neg. LLF: 82.0931068094883
Iteration: 12, Func. Count: 154, Neg. LLF: 82.10300357284963
Iteration: 13, Func. Count: 167, Neg. LLF: 82.04130553666803
Iteration: 14, Func. Count: 179, Neg. LLF: 82.039567129551
Iteration: 15, Func. Count: 191, Neg. LLF: 82.03685585840773
Iteration: 16, Func. Count: 203, Neg. LLF: 82.03677388055134
Iteration: 17, Func. Count: 215, Neg. LLF: 82.0367673149436
Iteration: 18, Func. Count: 226, Neg. LLF: 82.0367673150011
Optimization terminated successfully (Exit mode 0)
Current function value: 82.0367673149436
Iterations: 18
Function evaluations: 226
Gradient evaluations: 18
Iteration: 1, Func. Count: 10, Neg. LLF: 138.5112279196089
Iteration: 2, Func. Count: 22, Neg. LLF: 318.7557820211702
Iteration: 3, Func. Count: 32, Neg. LLF: 3287477.0917838924
Iteration: 4, Func. Count: 42, Neg. LLF: 87.5561880195468
Iteration: 5, Func. Count: 52, Neg. LLF: 2268726.6223226683
Iteration: 6, Func. Count: 62, Neg. LLF: 83.20480253014836
Iteration: 7, Func. Count: 72, Neg. LLF: 82.5612182186052
Iteration: 8, Func. Count: 82, Neg. LLF: 82.35025093945595
Iteration: 9, Func. Count: 91, Neg. LLF: 82.5071219059619
Iteration: 10, Func. Count: 101, Neg. LLF: 82.53357111885958
Iteration: 11, Func. Count: 111, Neg. LLF: 82.34786227355414
Iteration: 12, Func. Count: 121, Neg. LLF: 82.20804161628486
Iteration: 13, Func. Count: 130, Neg. LLF: 82.20054450466071
Iteration: 14, Func. Count: 139, Neg. LLF: 82.19938240223296
Iteration: 15, Func. Count: 148, Neg. LLF: 82.19933717544814
Iteration: 16, Func. Count: 157, Neg. LLF: 82.1993345556117
Iteration: 17, Func. Count: 165, Neg. LLF: 82.19933455560736
Optimization terminated successfully (Exit mode 0)
Current function value: 82.1993345556117
Iterations: 17
Function evaluations: 165
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 95.57309079354576
Iteration: 2, Func. Count: 22, Neg. LLF: 37935467.53725648
Iteration: 3, Func. Count: 33, Neg. LLF: 86.08531783195632
Iteration: 4, Func. Count: 44, Neg. LLF: 90.11050230733304
Iteration: 5, Func. Count: 55, Neg. LLF: 83.56549901141734
Iteration: 6, Func. Count: 66, Neg. LLF: 84.10413273427223
Iteration: 7, Func. Count: 77, Neg. LLF: 82.20442383263563
Iteration: 8, Func. Count: 87, Neg. LLF: 82.35339701532018
Iteration: 9, Func. Count: 98, Neg. LLF: 82.1979827987507
Iteration: 10, Func. Count: 109, Neg. LLF: 82.16821015363941
Iteration: 11, Func. Count: 119, Neg. LLF: 82.16811090038797
Iteration: 12, Func. Count: 129, Neg. LLF: 82.16810342000352
Iteration: 13, Func. Count: 139, Neg. LLF: 82.16810234765624
Iteration: 14, Func. Count: 148, Neg. LLF: 82.1681023476892
Optimization terminated successfully (Exit mode 0)
Current function value: 82.16810234765624
Iterations: 14
Function evaluations: 148
Gradient evaluations: 14
Iteration: 1, Func. Count: 12, Neg. LLF: 1542874.9372602906
Iteration: 2, Func. Count: 24, Neg. LLF: 38033445.014499165
Iteration: 3, Func. Count: 36, Neg. LLF: 314.7964126233719
Iteration: 4, Func. Count: 48, Neg. LLF: 86.26300058769318
Iteration: 5, Func. Count: 60, Neg. LLF: 82.76526463094338
Iteration: 6, Func. Count: 72, Neg. LLF: 82.30697481050233
Iteration: 7, Func. Count: 83, Neg. LLF: 82.78757092661321
Iteration: 8, Func. Count: 95, Neg. LLF: 82.61147606856025
Iteration: 9, Func. Count: 107, Neg. LLF: 82.176318025975
Iteration: 10, Func. Count: 118, Neg. LLF: 82.16988458118708
Iteration: 11, Func. Count: 129, Neg. LLF: 82.16906861059333
Iteration: 12, Func. Count: 140, Neg. LLF: 82.16833241653968
Iteration: 13, Func. Count: 151, Neg. LLF: 82.16815717508823
Iteration: 14, Func. Count: 162, Neg. LLF: 82.16811652478104
Iteration: 15, Func. Count: 173, Neg. LLF: 82.1681031144475
Iteration: 16, Func. Count: 184, Neg. LLF: 82.16810210966112
Iteration: 17, Func. Count: 194, Neg. LLF: 82.1681021148575
Optimization terminated successfully (Exit mode 0)
Current function value: 82.16810210966112
Iterations: 17
Function evaluations: 194
Gradient evaluations: 17
Iteration: 1, Func. Count: 13, Neg. LLF: 1534642.6367395674
Iteration: 2, Func. Count: 26, Neg. LLF: 38725969.17703419
Iteration: 3, Func. Count: 39, Neg. LLF: 7564799.393079762
Iteration: 4, Func. Count: 52, Neg. LLF: 85.89272261638801
Iteration: 5, Func. Count: 66, Neg. LLF: 82.7875850655449
Iteration: 6, Func. Count: 78, Neg. LLF: 82.44522130177066
Iteration: 7, Func. Count: 90, Neg. LLF: 128.9403190458132
Iteration: 8, Func. Count: 103, Neg. LLF: 83.14243494744623
Iteration: 9, Func. Count: 116, Neg. LLF: 82.18537772824624
Iteration: 10, Func. Count: 128, Neg. LLF: 82.17116806260334
Iteration: 11, Func. Count: 140, Neg. LLF: 82.16925687328454
Iteration: 12, Func. Count: 152, Neg. LLF: 82.16850539571858
Iteration: 13, Func. Count: 164, Neg. LLF: 82.16831951418415
Iteration: 14, Func. Count: 176, Neg. LLF: 82.16818620799498
Iteration: 15, Func. Count: 188, Neg. LLF: 82.16811979061173
Iteration: 16, Func. Count: 200, Neg. LLF: 82.16810334563793
Iteration: 17, Func. Count: 212, Neg. LLF: 82.16810210891111
Iteration: 18, Func. Count: 223, Neg. LLF: 82.16810211987901
Optimization terminated successfully (Exit mode 0)
Current function value: 82.16810210891111
Iterations: 18
Function evaluations: 223
Gradient evaluations: 18
Iteration: 1, Func. Count: 14, Neg. LLF: 1532789.2010658456
Iteration: 2, Func. Count: 28, Neg. LLF: 32279737.475566402
Iteration: 3, Func. Count: 42, Neg. LLF: 7686874.410093043
Iteration: 4, Func. Count: 56, Neg. LLF: 85.45778645671899
Iteration: 5, Func. Count: 71, Neg. LLF: 82.85072480133826
Iteration: 6, Func. Count: 85, Neg. LLF: 82.39691675441838
Iteration: 7, Func. Count: 98, Neg. LLF: 82.82526066383197
Iteration: 8, Func. Count: 112, Neg. LLF: 83.78413967365232
Iteration: 9, Func. Count: 126, Neg. LLF: 83.4462883022697
Iteration: 10, Func. Count: 140, Neg. LLF: 81.94158814195556
Iteration: 11, Func. Count: 153, Neg. LLF: 81.61724973160932
Iteration: 12, Func. Count: 166, Neg. LLF: 82.03366603075098
Iteration: 13, Func. Count: 181, Neg. LLF: 81.49022102763759
Iteration: 14, Func. Count: 194, Neg. LLF: 81.50400561185677
Iteration: 15, Func. Count: 208, Neg. LLF: 81.47707615216653
Iteration: 16, Func. Count: 221, Neg. LLF: 81.47676532562457
Iteration: 17, Func. Count: 234, Neg. LLF: 81.47675307959862
Iteration: 18, Func. Count: 246, Neg. LLF: 81.47675307962037
Optimization terminated successfully (Exit mode 0)
Current function value: 81.47675307959862
Iterations: 18
Function evaluations: 246
Gradient evaluations: 18
Iteration: 1, Func. Count: 11, Neg. LLF: 130.70750802706644
Iteration: 2, Func. Count: 24, Neg. LLF: 658.0486878896804
Iteration: 3, Func. Count: 35, Neg. LLF: 3258467.6859594025
Iteration: 4, Func. Count: 46, Neg. LLF: 92.57983785271053
Iteration: 5, Func. Count: 57, Neg. LLF: 231.9633186468994
Iteration: 6, Func. Count: 68, Neg. LLF: 82.63852670105788
Iteration: 7, Func. Count: 78, Neg. LLF: 96.41413247297007
Iteration: 8, Func. Count: 89, Neg. LLF: 85.07167337059883
Iteration: 9, Func. Count: 100, Neg. LLF: 82.23945537163165
Iteration: 10, Func. Count: 110, Neg. LLF: 82.87864778860573
Iteration: 11, Func. Count: 121, Neg. LLF: 82.15475913940193
Iteration: 12, Func. Count: 131, Neg. LLF: 82.14714517419982
Iteration: 13, Func. Count: 141, Neg. LLF: 82.1375096552663
Iteration: 14, Func. Count: 151, Neg. LLF: 82.13693738443926
Iteration: 15, Func. Count: 161, Neg. LLF: 82.13691519278662
Iteration: 16, Func. Count: 172, Neg. LLF: 82.1367626112348
Iteration: 17, Func. Count: 182, Neg. LLF: 82.1367586111086
Iteration: 18, Func. Count: 192, Neg. LLF: 82.13675755449765
Iteration: 19, Func. Count: 201, Neg. LLF: 82.13675741519334
Optimization terminated successfully (Exit mode 0)
Current function value: 82.13675755449765
Iterations: 19
Function evaluations: 201
Gradient evaluations: 19
Iteration: 1, Func. Count: 12, Neg. LLF: 95.40118755191615
Iteration: 2, Func. Count: 24, Neg. LLF: 33992315.503400825
Iteration: 3, Func. Count: 36, Neg. LLF: 85.95993758193555
Iteration: 4, Func. Count: 48, Neg. LLF: 91.1750292526546
Iteration: 5, Func. Count: 60, Neg. LLF: 83.96137819525427
Iteration: 6, Func. Count: 72, Neg. LLF: 83.90371894752776
Iteration: 7, Func. Count: 84, Neg. LLF: 82.24517167971463
Iteration: 8, Func. Count: 95, Neg. LLF: 82.17262606823422
Iteration: 9, Func. Count: 106, Neg. LLF: 82.30210300165662
Iteration: 10, Func. Count: 118, Neg. LLF: 82.2036203783217
Iteration: 11, Func. Count: 130, Neg. LLF: 82.13756942215551
Iteration: 12, Func. Count: 141, Neg. LLF: 82.13701818966268
Iteration: 13, Func. Count: 152, Neg. LLF: 82.13678534807447
Iteration: 14, Func. Count: 163, Neg. LLF: 82.13675945366363
Iteration: 15, Func. Count: 174, Neg. LLF: 82.13675757590454
Iteration: 16, Func. Count: 184, Neg. LLF: 82.13675757936694
Optimization terminated successfully (Exit mode 0)
Current function value: 82.13675757590454
Iterations: 16
Function evaluations: 184
Gradient evaluations: 16
Iteration: 1, Func. Count: 13, Neg. LLF: 4737.377229343449
Iteration: 2, Func. Count: 26, Neg. LLF: 37930481.79524055
Iteration: 3, Func. Count: 39, Neg. LLF: 292.7164409654482
Iteration: 4, Func. Count: 52, Neg. LLF: 86.19152993739446
Iteration: 5, Func. Count: 65, Neg. LLF: 82.92184555889038
Iteration: 6, Func. Count: 78, Neg. LLF: 82.26064339527588
Iteration: 7, Func. Count: 90, Neg. LLF: 82.7084152657182
Iteration: 8, Func. Count: 103, Neg. LLF: 82.694004275835
Iteration: 9, Func. Count: 116, Neg. LLF: 82.16184250031581
Iteration: 10, Func. Count: 128, Neg. LLF: 82.16116939644846
Iteration: 11, Func. Count: 141, Neg. LLF: 82.1606783372619
Iteration: 12, Func. Count: 154, Neg. LLF: 82.15001952705157
Iteration: 13, Func. Count: 166, Neg. LLF: 82.13730527143382
Iteration: 14, Func. Count: 178, Neg. LLF: 82.1367835161361
Iteration: 15, Func. Count: 190, Neg. LLF: 82.13676420660993
Iteration: 16, Func. Count: 202, Neg. LLF: 82.13675907456027
Iteration: 17, Func. Count: 214, Neg. LLF: 82.13675778233353
Iteration: 18, Func. Count: 225, Neg. LLF: 82.13675778980286
Optimization terminated successfully (Exit mode 0)
Current function value: 82.13675778233353
Iterations: 18
Function evaluations: 225
Gradient evaluations: 18
Iteration: 1, Func. Count: 14, Neg. LLF: 1531186.3891348348
Iteration: 2, Func. Count: 28, Neg. LLF: 38603630.43379059
Iteration: 3, Func. Count: 42, Neg. LLF: 7500323.882821269
Iteration: 4, Func. Count: 56, Neg. LLF: 86.30084641135204
Iteration: 5, Func. Count: 71, Neg. LLF: 82.79213924557703
Iteration: 6, Func. Count: 84, Neg. LLF: 82.57487966394237
Iteration: 7, Func. Count: 97, Neg. LLF: 174.9787398290733
Iteration: 8, Func. Count: 111, Neg. LLF: 83.62605340081771
Iteration: 9, Func. Count: 125, Neg. LLF: 82.24340432480207
Iteration: 10, Func. Count: 138, Neg. LLF: 82.18307694179381
Iteration: 11, Func. Count: 151, Neg. LLF: 82.17165886605069
Iteration: 12, Func. Count: 164, Neg. LLF: 82.15129804284774
Iteration: 13, Func. Count: 177, Neg. LLF: 82.14593122960416
Iteration: 14, Func. Count: 190, Neg. LLF: 82.14051553884777
Iteration: 15, Func. Count: 203, Neg. LLF: 82.13691707812266
Iteration: 16, Func. Count: 216, Neg. LLF: 82.1367992159559
Iteration: 17, Func. Count: 229, Neg. LLF: 82.13676692955652
Iteration: 18, Func. Count: 242, Neg. LLF: 82.13675868405522
Iteration: 19, Func. Count: 255, Neg. LLF: 82.13675765000428
Iteration: 20, Func. Count: 267, Neg. LLF: 82.13675767176754
Optimization terminated successfully (Exit mode 0)
Current function value: 82.13675765000428
Iterations: 20
Function evaluations: 267
Gradient evaluations: 20
Iteration: 1, Func. Count: 15, Neg. LLF: 1527974.7801726663
Iteration: 2, Func. Count: 30, Neg. LLF: 32046455.43151378
Iteration: 3, Func. Count: 45, Neg. LLF: 7691526.905895627
Iteration: 4, Func. Count: 60, Neg. LLF: 85.3416889941883
Iteration: 5, Func. Count: 76, Neg. LLF: 82.86402430591674
Iteration: 6, Func. Count: 91, Neg. LLF: 82.43217659732484
Iteration: 7, Func. Count: 106, Neg. LLF: 82.98358919907957
Iteration: 8, Func. Count: 121, Neg. LLF: 83.7501224778153
Iteration: 9, Func. Count: 136, Neg. LLF: 82.0618610719164
Iteration: 10, Func. Count: 151, Neg. LLF: 81.7817242775112
Iteration: 11, Func. Count: 165, Neg. LLF: 81.93069322168424
Iteration: 12, Func. Count: 180, Neg. LLF: 81.50382522760648
Iteration: 13, Func. Count: 194, Neg. LLF: 81.49825279685739
Iteration: 14, Func. Count: 209, Neg. LLF: 81.47762509860063
Iteration: 15, Func. Count: 223, Neg. LLF: 81.47675791332838
Iteration: 16, Func. Count: 237, Neg. LLF: 81.47675305982108
Iteration: 17, Func. Count: 250, Neg. LLF: 81.47675305979253
Optimization terminated successfully (Exit mode 0)
Current function value: 81.47675305982108
Iterations: 17
Function evaluations: 250
Gradient evaluations: 17
Iteration: 1, Func. Count: 12, Neg. LLF: 136.99783532084427
Iteration: 2, Func. Count: 26, Neg. LLF: 408.9909341764981
Iteration: 3, Func. Count: 38, Neg. LLF: 3315647.87417046
Iteration: 4, Func. Count: 50, Neg. LLF: 145.02844088328771
Iteration: 5, Func. Count: 62, Neg. LLF: 119.34206631476336
Iteration: 6, Func. Count: 74, Neg. LLF: 88.2636892108578
Iteration: 7, Func. Count: 86, Neg. LLF: 82.68712270036167
Iteration: 8, Func. Count: 97, Neg. LLF: 82.59854797288145
Iteration: 9, Func. Count: 109, Neg. LLF: 82.54812761514515
Iteration: 10, Func. Count: 121, Neg. LLF: 82.72905892700685
Iteration: 11, Func. Count: 133, Neg. LLF: 82.08616698690503
Iteration: 12, Func. Count: 144, Neg. LLF: 82.30647695864424
Iteration: 13, Func. Count: 156, Neg. LLF: 82.07138070712067
Iteration: 14, Func. Count: 168, Neg. LLF: 81.9980827411082
Iteration: 15, Func. Count: 179, Neg. LLF: 81.98963353128086
Iteration: 16, Func. Count: 190, Neg. LLF: 81.98838869853012
Iteration: 17, Func. Count: 201, Neg. LLF: 81.98832478624662
Iteration: 18, Func. Count: 212, Neg. LLF: 81.9883241298597
Optimization terminated successfully (Exit mode 0)
Current function value: 81.9883241298597
Iterations: 18
Function evaluations: 212
Gradient evaluations: 18
Iteration: 1, Func. Count: 13, Neg. LLF: 95.80432484491249
Iteration: 2, Func. Count: 26, Neg. LLF: 37946973.44164387
Iteration: 3, Func. Count: 39, Neg. LLF: 86.00814528596501
Iteration: 4, Func. Count: 53, Neg. LLF: 166.62055550002077
Iteration: 5, Func. Count: 66, Neg. LLF: 84.56593469357888
Iteration: 6, Func. Count: 79, Neg. LLF: 84.37391182127818
Iteration: 7, Func. Count: 92, Neg. LLF: 82.27720573268994
Iteration: 8, Func. Count: 105, Neg. LLF: 82.03044853473732
Iteration: 9, Func. Count: 117, Neg. LLF: 81.99512590117754
Iteration: 10, Func. Count: 129, Neg. LLF: 81.98962408883565
Iteration: 11, Func. Count: 141, Neg. LLF: 81.98858638375525
Iteration: 12, Func. Count: 153, Neg. LLF: 81.9883541246345
Iteration: 13, Func. Count: 165, Neg. LLF: 81.98832500058532
Iteration: 14, Func. Count: 177, Neg. LLF: 81.98832412047878
Optimization terminated successfully (Exit mode 0)
Current function value: 81.98832412047878
Iterations: 14
Function evaluations: 177
Gradient evaluations: 14
Iteration: 1, Func. Count: 14, Neg. LLF: 1547137.6486940286
Iteration: 2, Func. Count: 28, Neg. LLF: 38684186.87440585
Iteration: 3, Func. Count: 42, Neg. LLF: 3419845.8238842385
Iteration: 4, Func. Count: 56, Neg. LLF: 83.44513847225569
Iteration: 5, Func. Count: 70, Neg. LLF: 82.82091103121779
Iteration: 6, Func. Count: 84, Neg. LLF: 93.86826475700235
Iteration: 7, Func. Count: 98, Neg. LLF: 82.0671960666894
Iteration: 8, Func. Count: 111, Neg. LLF: 83.96634981692834
Iteration: 9, Func. Count: 125, Neg. LLF: 82.13273775695042
Iteration: 10, Func. Count: 139, Neg. LLF: 82.00785768522547
Iteration: 11, Func. Count: 152, Neg. LLF: 81.99090158303069
Iteration: 12, Func. Count: 165, Neg. LLF: 81.98886756374492
Iteration: 13, Func. Count: 178, Neg. LLF: 81.98837870216124
Iteration: 14, Func. Count: 191, Neg. LLF: 81.98832486546682
Iteration: 15, Func. Count: 204, Neg. LLF: 81.98832411401912
Optimization terminated successfully (Exit mode 0)
Current function value: 81.98832411401912
Iterations: 15
Function evaluations: 204
Gradient evaluations: 15
Iteration: 1, Func. Count: 15, Neg. LLF: 1537572.59325993
Iteration: 2, Func. Count: 30, Neg. LLF: 39237107.07263936
Iteration: 3, Func. Count: 45, Neg. LLF: 3396655.942040847
Iteration: 4, Func. Count: 60, Neg. LLF: 85.33855471331958
Iteration: 5, Func. Count: 76, Neg. LLF: 83.2644087254692
Iteration: 6, Func. Count: 91, Neg. LLF: 83.23520414469532
Iteration: 7, Func. Count: 106, Neg. LLF: 84.1449410912056
Iteration: 8, Func. Count: 121, Neg. LLF: 82.7630712700527
Iteration: 9, Func. Count: 136, Neg. LLF: 82.03275505266413
Iteration: 10, Func. Count: 150, Neg. LLF: 82.01382720170368
Iteration: 11, Func. Count: 164, Neg. LLF: 81.99254091951973
Iteration: 12, Func. Count: 178, Neg. LLF: 81.9887877216662
Iteration: 13, Func. Count: 192, Neg. LLF: 81.98841739724656
Iteration: 14, Func. Count: 206, Neg. LLF: 81.98833443677896
Iteration: 15, Func. Count: 220, Neg. LLF: 81.98832439050676
Iteration: 16, Func. Count: 233, Neg. LLF: 81.98832440992092
Optimization terminated successfully (Exit mode 0)
Current function value: 81.98832439050676
Iterations: 16
Function evaluations: 233
Gradient evaluations: 16
Iteration: 1, Func. Count: 16, Neg. LLF: 1534975.553074877
Iteration: 2, Func. Count: 32, Neg. LLF: 32629663.40260553
Iteration: 3, Func. Count: 48, Neg. LLF: 7628511.880692831
Iteration: 4, Func. Count: 64, Neg. LLF: 86.92567378795256
Iteration: 5, Func. Count: 80, Neg. LLF: 83.372818051652
Iteration: 6, Func. Count: 96, Neg. LLF: 82.80457790243723
Iteration: 7, Func. Count: 112, Neg. LLF: 113.68368831018601
Iteration: 8, Func. Count: 128, Neg. LLF: 88.45155331368566
Iteration: 9, Func. Count: 144, Neg. LLF: 81.77681315887341
Iteration: 10, Func. Count: 159, Neg. LLF: 81.67661846894428
Iteration: 11, Func. Count: 175, Neg. LLF: 82.04811666095489
Iteration: 12, Func. Count: 191, Neg. LLF: 81.33956284764444
Iteration: 13, Func. Count: 206, Neg. LLF: 81.33228552665936
Iteration: 14, Func. Count: 221, Neg. LLF: 81.3299315837117
Iteration: 15, Func. Count: 236, Neg. LLF: 81.32984109185395
Iteration: 16, Func. Count: 251, Neg. LLF: 81.3298235199885
Iteration: 17, Func. Count: 266, Neg. LLF: 81.32982227867365
Iteration: 18, Func. Count: 280, Neg. LLF: 81.3298222786866
Optimization terminated successfully (Exit mode 0)
Current function value: 81.32982227867365
Iterations: 18
Function evaluations: 280
Gradient evaluations: 18
Iteration: 1, Func. Count: 5, Neg. LLF: 140.89837935424845
Iteration: 2, Func. Count: 12, Neg. LLF: 141.9364826467471
Iteration: 3, Func. Count: 18, Neg. LLF: 84.1677467485569
Iteration: 4, Func. Count: 22, Neg. LLF: 84.10641598584401
Iteration: 5, Func. Count: 26, Neg. LLF: 84.6818647920263
Iteration: 6, Func. Count: 31, Neg. LLF: 84.16042397450624
Iteration: 7, Func. Count: 36, Neg. LLF: 84.00066140696954
Iteration: 8, Func. Count: 40, Neg. LLF: 84.00048856366509
Iteration: 9, Func. Count: 44, Neg. LLF: 84.00048713273365
Iteration: 10, Func. Count: 47, Neg. LLF: 84.00048713272047
Optimization terminated successfully (Exit mode 0)
Current function value: 84.00048713273365
Iterations: 10
Function evaluations: 47
Gradient evaluations: 10
Iteration: 1, Func. Count: 5, Neg. LLF: 120.46075181600919
Iteration: 2, Func. Count: 13, Neg. LLF: 97.55588184503452
Iteration: 3, Func. Count: 19, Neg. LLF: 83.3418296742202
Iteration: 4, Func. Count: 23, Neg. LLF: 83.26894471433228
Iteration: 5, Func. Count: 27, Neg. LLF: 83.23581772310513
Iteration: 6, Func. Count: 31, Neg. LLF: 83.22698742224581
Iteration: 7, Func. Count: 35, Neg. LLF: 83.22625342004946
Iteration: 8, Func. Count: 39, Neg. LLF: 83.22624223656385
Iteration: 9, Func. Count: 42, Neg. LLF: 83.22624223657226
Optimization terminated successfully (Exit mode 0)
Current function value: 83.22624223656385
Iterations: 9
Function evaluations: 42
Gradient evaluations: 9
Iteration: 1, Func. Count: 6, Neg. LLF: 173.72414639069473
Iteration: 2, Func. Count: 15, Neg. LLF: 83.55499216392671
Iteration: 3, Func. Count: 21, Neg. LLF: 82.34171367301792
Iteration: 4, Func. Count: 26, Neg. LLF: 85.76279259470572
Iteration: 5, Func. Count: 32, Neg. LLF: 82.28781997391793
Iteration: 6, Func. Count: 37, Neg. LLF: 82.26719194578756
Iteration: 7, Func. Count: 42, Neg. LLF: 82.26718933895528
Iteration: 8, Func. Count: 46, Neg. LLF: 82.26718945155082
Optimization terminated successfully (Exit mode 0)
Current function value: 82.26718933895528
Iterations: 8
Function evaluations: 46
Gradient evaluations: 8
Iteration: 1, Func. Count: 7, Neg. LLF: 148.07862886685254
Iteration: 2, Func. Count: 18, Neg. LLF: 83.47937458815825
Iteration: 3, Func. Count: 25, Neg. LLF: 82.31930471902204
Iteration: 4, Func. Count: 31, Neg. LLF: 84.05921393854237
Iteration: 5, Func. Count: 38, Neg. LLF: 82.2785560760092
Iteration: 6, Func. Count: 44, Neg. LLF: 82.27827016978529
Iteration: 7, Func. Count: 50, Neg. LLF: 82.27820730785365
Iteration: 8, Func. Count: 56, Neg. LLF: 82.27782070136496
Iteration: 9, Func. Count: 62, Neg. LLF: 82.27555119412226
Iteration: 10, Func. Count: 68, Neg. LLF: 82.26719604745227
Iteration: 11, Func. Count: 74, Neg. LLF: 82.26719531307046
Iteration: 12, Func. Count: 81, Neg. LLF: 82.26718940216053
Iteration: 13, Func. Count: 86, Neg. LLF: 82.26718928968359
Optimization terminated successfully (Exit mode 0)
Current function value: 82.26718940216053
Iterations: 13
Function evaluations: 86
Gradient evaluations: 13
Iteration: 1, Func. Count: 8, Neg. LLF: 174.72432394457238
Iteration: 2, Func. Count: 20, Neg. LLF: 82.57608231373266
Iteration: 3, Func. Count: 27, Neg. LLF: 82.37928415291891
Iteration: 4, Func. Count: 34, Neg. LLF: 82.31969649826475
Iteration: 5, Func. Count: 41, Neg. LLF: 82.40505625773288
Iteration: 6, Func. Count: 49, Neg. LLF: 82.28586283958724
Iteration: 7, Func. Count: 56, Neg. LLF: 82.28534844743581
Iteration: 8, Func. Count: 63, Neg. LLF: 82.28534164547818
Iteration: 9, Func. Count: 70, Neg. LLF: 82.28530218773474
Iteration: 10, Func. Count: 77, Neg. LLF: 82.28515812604746
Iteration: 11, Func. Count: 84, Neg. LLF: 82.28510149240817
Iteration: 12, Func. Count: 91, Neg. LLF: 82.2849671230497
Iteration: 13, Func. Count: 98, Neg. LLF: 82.28294091764087
Iteration: 14, Func. Count: 105, Neg. LLF: 82.28173834191034
Iteration: 15, Func. Count: 112, Neg. LLF: 82.28214487777184
Iteration: 16, Func. Count: 120, Neg. LLF: 82.27250655088055
Iteration: 17, Func. Count: 127, Neg. LLF: 82.26917635920528
Iteration: 18, Func. Count: 134, Neg. LLF: 82.2672260000813
Iteration: 19, Func. Count: 141, Neg. LLF: 82.27097809710595
Iteration: 20, Func. Count: 149, Neg. LLF: 82.26610392956155
Iteration: 21, Func. Count: 156, Neg. LLF: 82.26607632068169
Iteration: 22, Func. Count: 163, Neg. LLF: 82.2660742044372
Optimization terminated successfully (Exit mode 0)
Current function value: 82.26607564040174
Iterations: 22
Function evaluations: 165
Gradient evaluations: 22
Iteration: 1, Func. Count: 9, Neg. LLF: 161.60117517778622
Iteration: 2, Func. Count: 21, Neg. LLF: 85.44963185647238
Iteration: 3, Func. Count: 30, Neg. LLF: 82.39838714512719
Iteration: 4, Func. Count: 38, Neg. LLF: 83.54826323024551
Iteration: 5, Func. Count: 47, Neg. LLF: 85.4453095731432
Iteration: 6, Func. Count: 56, Neg. LLF: 82.13410204764958
Iteration: 7, Func. Count: 65, Neg. LLF: 82.01178792340048
Iteration: 8, Func. Count: 73, Neg. LLF: 82.00648151796165
Iteration: 9, Func. Count: 81, Neg. LLF: 82.00366551134239
Iteration: 10, Func. Count: 89, Neg. LLF: 82.00295279754762
Iteration: 11, Func. Count: 97, Neg. LLF: 82.00258293685431
Iteration: 12, Func. Count: 105, Neg. LLF: 82.00256649381318
Iteration: 13, Func. Count: 113, Neg. LLF: 82.00256029739967
Iteration: 14, Func. Count: 121, Neg. LLF: 82.00255894179516
Iteration: 15, Func. Count: 128, Neg. LLF: 82.00255891594232
Optimization terminated successfully (Exit mode 0)
Current function value: 82.00255894179516
Iterations: 15
Function evaluations: 128
Gradient evaluations: 15
Iteration: 1, Func. Count: 6, Neg. LLF: 135.92360879851722
Iteration: 2, Func. Count: 15, Neg. LLF: 198.96898607114593
Iteration: 3, Func. Count: 22, Neg. LLF: 83.34358445390453
Iteration: 4, Func. Count: 28, Neg. LLF: 83.21471516983502
Iteration: 5, Func. Count: 34, Neg. LLF: 83.42784956141539
Iteration: 6, Func. Count: 40, Neg. LLF: 83.100421575161
Iteration: 7, Func. Count: 45, Neg. LLF: 83.10026564980551
Iteration: 8, Func. Count: 50, Neg. LLF: 83.10026345264062
Iteration: 9, Func. Count: 54, Neg. LLF: 83.10026345266824
Optimization terminated successfully (Exit mode 0)
Current function value: 83.10026345264062
Iterations: 9
Function evaluations: 54
Gradient evaluations: 9
Iteration: 1, Func. Count: 7, Neg. LLF: 178.24769609263063
Iteration: 2, Func. Count: 17, Neg. LLF: 83.76713949303281
Iteration: 3, Func. Count: 24, Neg. LLF: 82.3385486622814
Iteration: 4, Func. Count: 30, Neg. LLF: 87.11637972030705
Iteration: 5, Func. Count: 37, Neg. LLF: 82.28521875385914
Iteration: 6, Func. Count: 43, Neg. LLF: 82.26719379581382
Iteration: 7, Func. Count: 49, Neg. LLF: 82.26718937304736
Iteration: 8, Func. Count: 54, Neg. LLF: 82.26718948615046
Optimization terminated successfully (Exit mode 0)
Current function value: 82.26718937304736
Iterations: 8
Function evaluations: 54
Gradient evaluations: 8
Iteration: 1, Func. Count: 8, Neg. LLF: 130.96615301885097
Iteration: 2, Func. Count: 20, Neg. LLF: 83.63640544529828
Iteration: 3, Func. Count: 28, Neg. LLF: 82.29876642724913
Iteration: 4, Func. Count: 35, Neg. LLF: 82.29133996088031
Iteration: 5, Func. Count: 42, Neg. LLF: 82.2797306656498
Iteration: 6, Func. Count: 49, Neg. LLF: 82.27923388401635
Iteration: 7, Func. Count: 56, Neg. LLF: 82.27903045963704
Iteration: 8, Func. Count: 63, Neg. LLF: 82.27901125008502
Iteration: 9, Func. Count: 70, Neg. LLF: 82.27887703049467
Iteration: 10, Func. Count: 77, Neg. LLF: 82.27780785248835
Iteration: 11, Func. Count: 84, Neg. LLF: 82.26722654178687
Iteration: 12, Func. Count: 91, Neg. LLF: 82.26732522161441
Iteration: 13, Func. Count: 99, Neg. LLF: 82.26718952501884
Optimization terminated successfully (Exit mode 0)
Current function value: 82.26718952501884
Iterations: 13
Function evaluations: 99
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 139.98958315739296
Iteration: 2, Func. Count: 22, Neg. LLF: 82.42099576004189
Iteration: 3, Func. Count: 30, Neg. LLF: 82.19883724017545
Iteration: 4, Func. Count: 38, Neg. LLF: 91.97925051388832
Iteration: 5, Func. Count: 48, Neg. LLF: 82.14380608491535
Iteration: 6, Func. Count: 56, Neg. LLF: 82.09990711116446
Iteration: 7, Func. Count: 64, Neg. LLF: 82.09433027434541
Iteration: 8, Func. Count: 72, Neg. LLF: 82.09426204299085
Iteration: 9, Func. Count: 79, Neg. LLF: 82.09426200452953
Optimization terminated successfully (Exit mode 0)
Current function value: 82.09426204299085
Iterations: 9
Function evaluations: 79
Gradient evaluations: 9
Iteration: 1, Func. Count: 10, Neg. LLF: 151.45789890919556
Iteration: 2, Func. Count: 23, Neg. LLF: 83.01456526855249
Iteration: 3, Func. Count: 33, Neg. LLF: 82.44667593812262
Iteration: 4, Func. Count: 42, Neg. LLF: 89.60055072332271
Iteration: 5, Func. Count: 52, Neg. LLF: 491.00361774937653
Iteration: 6, Func. Count: 63, Neg. LLF: 82.33122160856789
Iteration: 7, Func. Count: 73, Neg. LLF: 82.04997963114188
Iteration: 8, Func. Count: 82, Neg. LLF: 82.95069592708585
Iteration: 9, Func. Count: 92, Neg. LLF: 82.07222667035042
Iteration: 10, Func. Count: 102, Neg. LLF: 82.02389081719105
Iteration: 11, Func. Count: 111, Neg. LLF: 82.01447449462947
Iteration: 12, Func. Count: 120, Neg. LLF: 82.00893848111023
Iteration: 13, Func. Count: 129, Neg. LLF: 82.00808860903894
Iteration: 14, Func. Count: 138, Neg. LLF: 82.00754965139787
Iteration: 15, Func. Count: 147, Neg. LLF: 82.00751503445517
Iteration: 16, Func. Count: 156, Neg. LLF: 82.00751437945962
Optimization terminated successfully (Exit mode 0)
Current function value: 82.00751437945962
Iterations: 16
Function evaluations: 156
Gradient evaluations: 16
Iteration: 1, Func. Count: 7, Neg. LLF: 141.2634888548111
Iteration: 2, Func. Count: 17, Neg. LLF: 244.0920747894695
Iteration: 3, Func. Count: 25, Neg. LLF: 83.32636980455875
Iteration: 4, Func. Count: 31, Neg. LLF: 83.88146497226701
Iteration: 5, Func. Count: 38, Neg. LLF: 83.21059275700645
Iteration: 6, Func. Count: 44, Neg. LLF: 83.13023713372502
Iteration: 7, Func. Count: 50, Neg. LLF: 83.10589921902822
Iteration: 8, Func. Count: 56, Neg. LLF: 83.1010041728956
Iteration: 9, Func. Count: 62, Neg. LLF: 83.10028041389924
Iteration: 10, Func. Count: 68, Neg. LLF: 83.10026482196692
Iteration: 11, Func. Count: 74, Neg. LLF: 83.10026351024354
Iteration: 12, Func. Count: 79, Neg. LLF: 83.10026361716686
Optimization terminated successfully (Exit mode 0)
Current function value: 83.10026351024354
Iterations: 12
Function evaluations: 79
Gradient evaluations: 12
Iteration: 1, Func. Count: 8, Neg. LLF: 172.19403456879695
Iteration: 2, Func. Count: 19, Neg. LLF: 83.73989237424661
Iteration: 3, Func. Count: 27, Neg. LLF: 82.32229145969171
Iteration: 4, Func. Count: 34, Neg. LLF: 82.99953994456703
Iteration: 5, Func. Count: 42, Neg. LLF: 82.28082467426678
Iteration: 6, Func. Count: 49, Neg. LLF: 82.26719419122813
Iteration: 7, Func. Count: 56, Neg. LLF: 82.26718936410757
Iteration: 8, Func. Count: 62, Neg. LLF: 82.26718947631605
Optimization terminated successfully (Exit mode 0)
Current function value: 82.26718936410757
Iterations: 8
Function evaluations: 62
Gradient evaluations: 8
Iteration: 1, Func. Count: 9, Neg. LLF: 130.26938807608337
Iteration: 2, Func. Count: 22, Neg. LLF: 83.77767884397115
Iteration: 3, Func. Count: 31, Neg. LLF: 82.31328231114834
Iteration: 4, Func. Count: 39, Neg. LLF: 82.29999756152456
Iteration: 5, Func. Count: 47, Neg. LLF: 82.2796839606909
Iteration: 6, Func. Count: 55, Neg. LLF: 82.27930159292974
Iteration: 7, Func. Count: 63, Neg. LLF: 82.27917407781581
Iteration: 8, Func. Count: 70, Neg. LLF: 82.2791740156405
Optimization terminated successfully (Exit mode 0)
Current function value: 82.27917407781581
Iterations: 8
Function evaluations: 70
Gradient evaluations: 8
Iteration: 1, Func. Count: 10, Neg. LLF: 122.20304389123596
Iteration: 2, Func. Count: 25, Neg. LLF: 93.58862676705469
Iteration: 3, Func. Count: 36, Neg. LLF: 82.18908180647703
Iteration: 4, Func. Count: 45, Neg. LLF: 83.09032634867842
Iteration: 5, Func. Count: 55, Neg. LLF: 82.18265866394084
Iteration: 6, Func. Count: 64, Neg. LLF: 82.18306363742803
Iteration: 7, Func. Count: 74, Neg. LLF: 82.1795928297123
Iteration: 8, Func. Count: 83, Neg. LLF: 82.17958735495091
Iteration: 9, Func. Count: 91, Neg. LLF: 82.17958732685233
Optimization terminated successfully (Exit mode 0)
Current function value: 82.17958735495091
Iterations: 9
Function evaluations: 91
Gradient evaluations: 9
Iteration: 1, Func. Count: 11, Neg. LLF: 122.25802578107232
Iteration: 2, Func. Count: 27, Neg. LLF: 92.37815746753952
Iteration: 3, Func. Count: 39, Neg. LLF: 83.50218998072626
Iteration: 4, Func. Count: 50, Neg. LLF: 82.08233234670229
Iteration: 5, Func. Count: 60, Neg. LLF: 82.50370919482849
Iteration: 6, Func. Count: 71, Neg. LLF: 82.02213933928705
Iteration: 7, Func. Count: 81, Neg. LLF: 82.00629161534232
Iteration: 8, Func. Count: 91, Neg. LLF: 82.00323144691073
Iteration: 9, Func. Count: 101, Neg. LLF: 82.00256797484698
Iteration: 10, Func. Count: 111, Neg. LLF: 82.00249832143045
Iteration: 11, Func. Count: 121, Neg. LLF: 82.00242726232571
Iteration: 12, Func. Count: 130, Neg. LLF: 82.00242723721581
Optimization terminated successfully (Exit mode 0)
Current function value: 82.00242726232571
Iterations: 12
Function evaluations: 130
Gradient evaluations: 12
Iteration: 1, Func. Count: 8, Neg. LLF: 131.26304525411948
Iteration: 2, Func. Count: 19, Neg. LLF: 252.22697053202964
Iteration: 3, Func. Count: 28, Neg. LLF: 83.88914512947204
Iteration: 4, Func. Count: 36, Neg. LLF: 83.29744897747655
Iteration: 5, Func. Count: 43, Neg. LLF: 83.21149311849072
Iteration: 6, Func. Count: 50, Neg. LLF: 83.33119316475823
Iteration: 7, Func. Count: 58, Neg. LLF: 83.10623070160382
Iteration: 8, Func. Count: 65, Neg. LLF: 83.10082297104557
Iteration: 9, Func. Count: 72, Neg. LLF: 83.10027564258664
Iteration: 10, Func. Count: 79, Neg. LLF: 83.1002644816029
Iteration: 11, Func. Count: 86, Neg. LLF: 83.10026334613285
Iteration: 12, Func. Count: 92, Neg. LLF: 83.10026337845841
Optimization terminated successfully (Exit mode 0)
Current function value: 83.10026334613285
Iterations: 12
Function evaluations: 92
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 118.24176808900908
Iteration: 2, Func. Count: 22, Neg. LLF: 100.4769977542945
Iteration: 3, Func. Count: 32, Neg. LLF: 82.74753443765285
Iteration: 4, Func. Count: 40, Neg. LLF: 82.3240567511015
Iteration: 5, Func. Count: 48, Neg. LLF: 82.59330107753662
Iteration: 6, Func. Count: 57, Neg. LLF: 82.26727854104998
Iteration: 7, Func. Count: 65, Neg. LLF: 82.26720287593939
Iteration: 8, Func. Count: 73, Neg. LLF: 82.26718962635188
Iteration: 9, Func. Count: 80, Neg. LLF: 82.26718973960169
Optimization terminated successfully (Exit mode 0)
Current function value: 82.26718962635188
Iterations: 9
Function evaluations: 80
Gradient evaluations: 9
Iteration: 1, Func. Count: 10, Neg. LLF: 125.0560723500555
Iteration: 2, Func. Count: 24, Neg. LLF: 84.31346898025086
Iteration: 3, Func. Count: 34, Neg. LLF: 82.4010135984887
Iteration: 4, Func. Count: 43, Neg. LLF: 82.35712659386687
Iteration: 5, Func. Count: 53, Neg. LLF: 82.28165779772938
Iteration: 6, Func. Count: 62, Neg. LLF: 82.27916676903445
Iteration: 7, Func. Count: 71, Neg. LLF: 82.27916399617133
Iteration: 8, Func. Count: 80, Neg. LLF: 82.27914745422963
Iteration: 9, Func. Count: 89, Neg. LLF: 82.27953079294424
Iteration: 10, Func. Count: 99, Neg. LLF: 82.27935454724272
Iteration: 11, Func. Count: 109, Neg. LLF: 82.2790081766074
Iteration: 12, Func. Count: 118, Neg. LLF: 82.27882721854881
Iteration: 13, Func. Count: 127, Neg. LLF: 82.27815652181663
Iteration: 14, Func. Count: 136, Neg. LLF: 82.27260011265062
Iteration: 15, Func. Count: 145, Neg. LLF: 82.2680980484334
Iteration: 16, Func. Count: 154, Neg. LLF: 82.26720109735722
Iteration: 17, Func. Count: 163, Neg. LLF: 82.26718935865279
Iteration: 18, Func. Count: 171, Neg. LLF: 82.26718924662569
Optimization terminated successfully (Exit mode 0)
Current function value: 82.26718935865279
Iterations: 18
Function evaluations: 171
Gradient evaluations: 18
Iteration: 1, Func. Count: 11, Neg. LLF: 122.15108460786368
Iteration: 2, Func. Count: 27, Neg. LLF: 94.34035238664585
Iteration: 3, Func. Count: 39, Neg. LLF: 82.18995728423201
Iteration: 4, Func. Count: 49, Neg. LLF: 82.98302041358033
Iteration: 5, Func. Count: 60, Neg. LLF: 82.18125757082693
Iteration: 6, Func. Count: 70, Neg. LLF: 82.18300228239767
Iteration: 7, Func. Count: 81, Neg. LLF: 82.1795874791104
Iteration: 8, Func. Count: 90, Neg. LLF: 82.1795874508907
Optimization terminated successfully (Exit mode 0)
Current function value: 82.1795874791104
Iterations: 8
Function evaluations: 90
Gradient evaluations: 8
Iteration: 1, Func. Count: 12, Neg. LLF: 122.1825377134116
Iteration: 2, Func. Count: 29, Neg. LLF: 92.74394042152444
Iteration: 3, Func. Count: 42, Neg. LLF: 83.43268763028443
Iteration: 4, Func. Count: 54, Neg. LLF: 82.08051379771133
Iteration: 5, Func. Count: 65, Neg. LLF: 82.53131913268943
Iteration: 6, Func. Count: 77, Neg. LLF: 82.02355697580487
Iteration: 7, Func. Count: 88, Neg. LLF: 82.006104690882
Iteration: 8, Func. Count: 99, Neg. LLF: 82.0033662581371
Iteration: 9, Func. Count: 110, Neg. LLF: 82.0025410400351
Iteration: 10, Func. Count: 121, Neg. LLF: 82.0024849548402
Iteration: 11, Func. Count: 132, Neg. LLF: 82.00242744380913
Iteration: 12, Func. Count: 142, Neg. LLF: 82.00242741850089
Optimization terminated successfully (Exit mode 0)
Current function value: 82.00242744380913
Iterations: 12
Function evaluations: 142
Gradient evaluations: 12
Iteration: 1, Func. Count: 5, Neg. LLF: 123.23065659559535
Iteration: 2, Func. Count: 12, Neg. LLF: 118.09618934079614
Iteration: 3, Func. Count: 18, Neg. LLF: 83.15422297475722
Iteration: 4, Func. Count: 22, Neg. LLF: 83.54409185907451
Iteration: 5, Func. Count: 27, Neg. LLF: 82.87282245320371
Iteration: 6, Func. Count: 31, Neg. LLF: 82.87813103009825
Iteration: 7, Func. Count: 36, Neg. LLF: 82.86506117740483
Iteration: 8, Func. Count: 41, Neg. LLF: 82.86005761720418
Iteration: 9, Func. Count: 44, Neg. LLF: 82.86005761721131
Optimization terminated successfully (Exit mode 0)
Current function value: 82.86005761720418
Iterations: 9
Function evaluations: 44
Gradient evaluations: 9
Iteration: 1, Func. Count: 6, Neg. LLF: 183.65624455354103
Iteration: 2, Func. Count: 15, Neg. LLF: 84.30019163064502
Iteration: 3, Func. Count: 21, Neg. LLF: 82.42899067176666
Iteration: 4, Func. Count: 26, Neg. LLF: 109.46261406952361
Iteration: 5, Func. Count: 32, Neg. LLF: 82.2689582430258
Iteration: 6, Func. Count: 37, Neg. LLF: 82.2675827454385
Iteration: 7, Func. Count: 42, Neg. LLF: 82.26718948152889
Iteration: 8, Func. Count: 46, Neg. LLF: 82.26718959514676
Optimization terminated successfully (Exit mode 0)
Current function value: 82.26718948152889
Iterations: 8
Function evaluations: 46
Gradient evaluations: 8
Iteration: 1, Func. Count: 7, Neg. LLF: 181.8660829687847
Iteration: 2, Func. Count: 18, Neg. LLF: 84.04693848692715
Iteration: 3, Func. Count: 25, Neg. LLF: 82.42206788637877
Iteration: 4, Func. Count: 31, Neg. LLF: 82.50389406561841
Iteration: 5, Func. Count: 38, Neg. LLF: 82.28216767472858
Iteration: 6, Func. Count: 44, Neg. LLF: 82.27862422340218
Iteration: 7, Func. Count: 50, Neg. LLF: 82.27837929836501
Iteration: 8, Func. Count: 56, Neg. LLF: 82.27824861314191
Iteration: 9, Func. Count: 62, Neg. LLF: 82.27769072503551
Iteration: 10, Func. Count: 68, Neg. LLF: 82.2765819032249
Iteration: 11, Func. Count: 74, Neg. LLF: 82.271288720568
Iteration: 12, Func. Count: 80, Neg. LLF: 82.26876563535612
Iteration: 13, Func. Count: 86, Neg. LLF: 82.26721667528943
Iteration: 14, Func. Count: 92, Neg. LLF: 82.2671894481707
Iteration: 15, Func. Count: 97, Neg. LLF: 82.26718933622898
Optimization terminated successfully (Exit mode 0)
Current function value: 82.2671894481707
Iterations: 15
Function evaluations: 97
Gradient evaluations: 15
Iteration: 1, Func. Count: 8, Neg. LLF: 102.32972258602408
Iteration: 2, Func. Count: 17, Neg. LLF: 83.39684023503621
Iteration: 3, Func. Count: 25, Neg. LLF: 84.84146448297213
Iteration: 4, Func. Count: 33, Neg. LLF: 84.78365057777317
Iteration: 5, Func. Count: 41, Neg. LLF: 83.12014469714704
Iteration: 6, Func. Count: 49, Neg. LLF: 82.43114537235415
Iteration: 7, Func. Count: 56, Neg. LLF: 82.54498348316294
Iteration: 8, Func. Count: 64, Neg. LLF: 82.38086976722275
Iteration: 9, Func. Count: 71, Neg. LLF: 82.3803025732646
Iteration: 10, Func. Count: 78, Neg. LLF: 82.38017812466092
Iteration: 11, Func. Count: 85, Neg. LLF: 82.38017658832051
Iteration: 12, Func. Count: 91, Neg. LLF: 82.38017658833844
Optimization terminated successfully (Exit mode 0)
Current function value: 82.38017658832051
Iterations: 12
Function evaluations: 91
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 121.75233760645193
Iteration: 2, Func. Count: 19, Neg. LLF: 82.56904247461352
Iteration: 3, Func. Count: 27, Neg. LLF: 82.78250141768082
Iteration: 4, Func. Count: 36, Neg. LLF: 104.72932018577782
Iteration: 5, Func. Count: 45, Neg. LLF: 86.77589166493904
Iteration: 6, Func. Count: 54, Neg. LLF: 81.48602101720955
Iteration: 7, Func. Count: 62, Neg. LLF: 81.31644558925086
Iteration: 8, Func. Count: 70, Neg. LLF: 81.16230151188927
Iteration: 9, Func. Count: 78, Neg. LLF: 81.14887185712092
Iteration: 10, Func. Count: 86, Neg. LLF: 81.1380821000618
Iteration: 11, Func. Count: 94, Neg. LLF: 81.13725969067706
Iteration: 12, Func. Count: 102, Neg. LLF: 81.13713300025903
Iteration: 13, Func. Count: 109, Neg. LLF: 81.13713293344574
Optimization terminated successfully (Exit mode 0)
Current function value: 81.13713300025903
Iterations: 13
Function evaluations: 109
Gradient evaluations: 13
Iteration: 1, Func. Count: 6, Neg. LLF: 136.7643485289262
Iteration: 2, Func. Count: 14, Neg. LLF: 131.93495017308672
Iteration: 3, Func. Count: 21, Neg. LLF: 83.59593812953158
Iteration: 4, Func. Count: 27, Neg. LLF: 82.92529314853964
Iteration: 5, Func. Count: 32, Neg. LLF: 82.97405530798473
Iteration: 6, Func. Count: 38, Neg. LLF: 83.03591883550047
Iteration: 7, Func. Count: 44, Neg. LLF: 82.84590202398934
Iteration: 8, Func. Count: 49, Neg. LLF: 82.84482640424366
Iteration: 9, Func. Count: 54, Neg. LLF: 82.84480331631728
Iteration: 10, Func. Count: 59, Neg. LLF: 82.84480114652294
Iteration: 11, Func. Count: 63, Neg. LLF: 82.84480114652371
Optimization terminated successfully (Exit mode 0)
Current function value: 82.84480114652294
Iterations: 11
Function evaluations: 63
Gradient evaluations: 11
Iteration: 1, Func. Count: 7, Neg. LLF: 181.54275214114756
Iteration: 2, Func. Count: 17, Neg. LLF: 83.49614240111477
Iteration: 3, Func. Count: 24, Neg. LLF: 82.45883644836194
Iteration: 4, Func. Count: 30, Neg. LLF: 84.06897911763564
Iteration: 5, Func. Count: 37, Neg. LLF: 207.28380609783216
Iteration: 6, Func. Count: 45, Neg. LLF: 82.32202178652796
Iteration: 7, Func. Count: 51, Neg. LLF: 82.26798093400315
Iteration: 8, Func. Count: 57, Neg. LLF: 82.26721042817826
Iteration: 9, Func. Count: 63, Neg. LLF: 82.2671893457144
Iteration: 10, Func. Count: 68, Neg. LLF: 82.2671894581285
Optimization terminated successfully (Exit mode 0)
Current function value: 82.2671893457144
Iterations: 10
Function evaluations: 68
Gradient evaluations: 10
Iteration: 1, Func. Count: 8, Neg. LLF: 173.70667116882493
Iteration: 2, Func. Count: 20, Neg. LLF: 83.36337547024443
Iteration: 3, Func. Count: 28, Neg. LLF: 82.43535334992988
Iteration: 4, Func. Count: 35, Neg. LLF: 82.94509808198836
Iteration: 5, Func. Count: 43, Neg. LLF: 82.38653076444125
Iteration: 6, Func. Count: 51, Neg. LLF: 82.27747823348444
Iteration: 7, Func. Count: 58, Neg. LLF: 82.27679986678744
Iteration: 8, Func. Count: 65, Neg. LLF: 82.27661757391843
Iteration: 9, Func. Count: 72, Neg. LLF: 82.2760828972522
Iteration: 10, Func. Count: 79, Neg. LLF: 82.27369216304857
Iteration: 11, Func. Count: 86, Neg. LLF: 82.27151283649633
Iteration: 12, Func. Count: 93, Neg. LLF: 82.26995032116052
Iteration: 13, Func. Count: 100, Neg. LLF: 82.26748003727295
Iteration: 14, Func. Count: 107, Neg. LLF: 82.26719552148398
Iteration: 15, Func. Count: 114, Neg. LLF: 82.26718942224225
Iteration: 16, Func. Count: 120, Neg. LLF: 82.26718931077647
Optimization terminated successfully (Exit mode 0)
Current function value: 82.26718942224225
Iterations: 16
Function evaluations: 120
Gradient evaluations: 16
Iteration: 1, Func. Count: 9, Neg. LLF: 172.51643785809682
Iteration: 2, Func. Count: 21, Neg. LLF: 82.62464337601382
Iteration: 3, Func. Count: 29, Neg. LLF: 84.15581251372787
Iteration: 4, Func. Count: 38, Neg. LLF: 83.49968901244034
Iteration: 5, Func. Count: 47, Neg. LLF: 82.28550983682007
Iteration: 6, Func. Count: 55, Neg. LLF: 82.28540380659244
Iteration: 7, Func. Count: 63, Neg. LLF: 82.285390585337
Iteration: 8, Func. Count: 71, Neg. LLF: 82.28529317886469
Iteration: 9, Func. Count: 79, Neg. LLF: 82.28434715128242
Iteration: 10, Func. Count: 87, Neg. LLF: 82.28402659647868
Iteration: 11, Func. Count: 95, Neg. LLF: 82.2830057090418
Iteration: 12, Func. Count: 103, Neg. LLF: 82.28307190950471
Iteration: 13, Func. Count: 112, Neg. LLF: 82.28091479708642
Iteration: 14, Func. Count: 121, Neg. LLF: 82.27944016290188
Iteration: 15, Func. Count: 130, Neg. LLF: 82.2662083505597
Iteration: 16, Func. Count: 138, Neg. LLF: 82.26612810970322
Iteration: 17, Func. Count: 146, Neg. LLF: 82.26614663997762
Iteration: 18, Func. Count: 155, Neg. LLF: 82.26607989515311
Iteration: 19, Func. Count: 163, Neg. LLF: 82.2660585819666
Iteration: 20, Func. Count: 173, Neg. LLF: 82.2660514672734
Iteration: 21, Func. Count: 191, Neg. LLF: 82.2905661950977
Iteration: 22, Func. Count: 202, Neg. LLF: 82.2661305225646
Iteration: 23, Func. Count: 212, Neg. LLF: 82.26607737688548
Iteration: 24, Func. Count: 219, Neg. LLF: 82.26607733755897
Optimization terminated successfully (Exit mode 0)
Current function value: 82.26607737688548
Iterations: 25
Function evaluations: 219
Gradient evaluations: 24
Iteration: 1, Func. Count: 10, Neg. LLF: 159.42728556342323
Iteration: 2, Func. Count: 23, Neg. LLF: 85.81138679485959
Iteration: 3, Func. Count: 33, Neg. LLF: 82.35537599202887
Iteration: 4, Func. Count: 42, Neg. LLF: 83.24951801020293
Iteration: 5, Func. Count: 52, Neg. LLF: 98.18740727342406
Iteration: 6, Func. Count: 62, Neg. LLF: 91.55016613410871
Iteration: 7, Func. Count: 72, Neg. LLF: 82.34240761715341
Iteration: 8, Func. Count: 82, Neg. LLF: 81.20131028226197
Iteration: 9, Func. Count: 91, Neg. LLF: 81.13822457617708
Iteration: 10, Func. Count: 100, Neg. LLF: 81.12429569238262
Iteration: 11, Func. Count: 109, Neg. LLF: 81.11545303151148
Iteration: 12, Func. Count: 118, Neg. LLF: 81.1070003493652
Iteration: 13, Func. Count: 127, Neg. LLF: 81.10455738152527
Iteration: 14, Func. Count: 136, Neg. LLF: 81.10430738175353
Iteration: 15, Func. Count: 145, Neg. LLF: 81.10425121009003
Iteration: 16, Func. Count: 154, Neg. LLF: 81.10423822409187
Iteration: 17, Func. Count: 163, Neg. LLF: 81.10423579348142
Iteration: 18, Func. Count: 171, Neg. LLF: 81.1042357230473
Optimization terminated successfully (Exit mode 0)
Current function value: 81.10423579348142
Iterations: 18
Function evaluations: 171
Gradient evaluations: 18
Iteration: 1, Func. Count: 7, Neg. LLF: 111.32297647060189
Iteration: 2, Func. Count: 16, Neg. LLF: 85.07590629251503
Iteration: 3, Func. Count: 23, Neg. LLF: 84.73178666596519
Iteration: 4, Func. Count: 30, Neg. LLF: 86.65435472630988
Iteration: 5, Func. Count: 37, Neg. LLF: 82.80860633018442
Iteration: 6, Func. Count: 43, Neg. LLF: 82.7748385463542
Iteration: 7, Func. Count: 49, Neg. LLF: 82.82425274087029
Iteration: 8, Func. Count: 56, Neg. LLF: 82.77287924680753
Iteration: 9, Func. Count: 62, Neg. LLF: 82.7728483027722
Iteration: 10, Func. Count: 68, Neg. LLF: 82.7728463884858
Iteration: 11, Func. Count: 73, Neg. LLF: 82.77284638849196
Optimization terminated successfully (Exit mode 0)
Current function value: 82.7728463884858
Iterations: 11
Function evaluations: 73
Gradient evaluations: 11
Iteration: 1, Func. Count: 8, Neg. LLF: 181.8140012519825
Iteration: 2, Func. Count: 19, Neg. LLF: 83.66973068249222
Iteration: 3, Func. Count: 27, Neg. LLF: 82.45060563657412
Iteration: 4, Func. Count: 34, Neg. LLF: 83.36298039023964
Iteration: 5, Func. Count: 42, Neg. LLF: 99.03555796890457
Iteration: 6, Func. Count: 51, Neg. LLF: 82.32223113985879
Iteration: 7, Func. Count: 58, Neg. LLF: 82.27118260070755
Iteration: 8, Func. Count: 65, Neg. LLF: 82.2672941407261
Iteration: 9, Func. Count: 72, Neg. LLF: 82.26718951024353
Iteration: 10, Func. Count: 78, Neg. LLF: 82.2671896217721
Optimization terminated successfully (Exit mode 0)
Current function value: 82.26718951024353
Iterations: 10
Function evaluations: 78
Gradient evaluations: 10
Iteration: 1, Func. Count: 9, Neg. LLF: 152.0654805421237
Iteration: 2, Func. Count: 22, Neg. LLF: 83.53042788810491
Iteration: 3, Func. Count: 31, Neg. LLF: 82.40612996895537
Iteration: 4, Func. Count: 39, Neg. LLF: 82.64056069301022
Iteration: 5, Func. Count: 48, Neg. LLF: 82.28642176903358
Iteration: 6, Func. Count: 56, Neg. LLF: 82.27893706294878
Iteration: 7, Func. Count: 64, Neg. LLF: 82.27791162250934
Iteration: 8, Func. Count: 72, Neg. LLF: 82.27768666103385
Iteration: 9, Func. Count: 80, Neg. LLF: 82.27725443687146
Iteration: 10, Func. Count: 88, Neg. LLF: 82.27538519440569
Iteration: 11, Func. Count: 96, Neg. LLF: 82.27182083768996
Iteration: 12, Func. Count: 104, Neg. LLF: 82.26959143453837
Iteration: 13, Func. Count: 112, Neg. LLF: 82.2672037138906
Iteration: 14, Func. Count: 120, Neg. LLF: 82.26718936644691
Iteration: 15, Func. Count: 127, Neg. LLF: 82.26718925416982
Optimization terminated successfully (Exit mode 0)
Current function value: 82.26718936644691
Iterations: 15
Function evaluations: 127
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 147.0039455301531
Iteration: 2, Func. Count: 24, Neg. LLF: 82.3753020150676
Iteration: 3, Func. Count: 33, Neg. LLF: 82.14052085144898
Iteration: 4, Func. Count: 42, Neg. LLF: 93.31990443815796
Iteration: 5, Func. Count: 54, Neg. LLF: 82.12621287266298
Iteration: 6, Func. Count: 63, Neg. LLF: 82.11397864721576
Iteration: 7, Func. Count: 72, Neg. LLF: 82.10395346151023
Iteration: 8, Func. Count: 81, Neg. LLF: 82.09438102255062
Iteration: 9, Func. Count: 90, Neg. LLF: 82.09426243140759
Iteration: 10, Func. Count: 99, Neg. LLF: 82.09426155330696
Optimization terminated successfully (Exit mode 0)
Current function value: 82.09426155330696
Iterations: 10
Function evaluations: 99
Gradient evaluations: 10
Iteration: 1, Func. Count: 11, Neg. LLF: 156.76567771123393
Iteration: 2, Func. Count: 25, Neg. LLF: 83.16398199619951
Iteration: 3, Func. Count: 36, Neg. LLF: 82.41741692322884
Iteration: 4, Func. Count: 46, Neg. LLF: 84.28482030169204
Iteration: 5, Func. Count: 57, Neg. LLF: 1180.9388197270505
Iteration: 6, Func. Count: 69, Neg. LLF: 82.12725614995682
Iteration: 7, Func. Count: 80, Neg. LLF: 82.05435429948719
Iteration: 8, Func. Count: 90, Neg. LLF: 82.03715366233564
Iteration: 9, Func. Count: 100, Neg. LLF: 82.9021973291236
Iteration: 10, Func. Count: 111, Neg. LLF: 81.9954837467101
Iteration: 11, Func. Count: 121, Neg. LLF: 81.96361886112248
Iteration: 12, Func. Count: 132, Neg. LLF: 81.55802934656761
Iteration: 13, Func. Count: 142, Neg. LLF: 81.50812788255017
Iteration: 14, Func. Count: 152, Neg. LLF: 81.45903391545852
Iteration: 15, Func. Count: 162, Neg. LLF: 81.35693888734241
Iteration: 16, Func. Count: 172, Neg. LLF: 81.2205453731583
Iteration: 17, Func. Count: 182, Neg. LLF: 81.15644915665801
Iteration: 18, Func. Count: 192, Neg. LLF: 81.12186355727883
Iteration: 19, Func. Count: 202, Neg. LLF: 81.11012935254494
Iteration: 20, Func. Count: 212, Neg. LLF: 81.1068739224223
Iteration: 21, Func. Count: 222, Neg. LLF: 81.1046639918014
Iteration: 22, Func. Count: 232, Neg. LLF: 81.10427828548416
Iteration: 23, Func. Count: 242, Neg. LLF: 81.10423709083564
Iteration: 24, Func. Count: 252, Neg. LLF: 81.10423591943002
Iteration: 25, Func. Count: 262, Neg. LLF: 81.10423604224329
Iteration: 26, Func. Count: 282, Neg. LLF: 81.10498058292833
Iteration: 27, Func. Count: 302, Neg. LLF: 81.10423599892107
Iteration: 28, Func. Count: 322, Neg. LLF: 81.10423579917405
Optimization terminated successfully (Exit mode 0)
Current function value: 81.10423579917405
Iterations: 28
Function evaluations: 322
Gradient evaluations: 28
Iteration: 1, Func. Count: 8, Neg. LLF: 112.17562652773512
Iteration: 2, Func. Count: 18, Neg. LLF: 84.68573217405526
Iteration: 3, Func. Count: 26, Neg. LLF: 84.35884879155566
Iteration: 4, Func. Count: 34, Neg. LLF: 498.73171905783676
Iteration: 5, Func. Count: 42, Neg. LLF: 82.90716220478747
Iteration: 6, Func. Count: 49, Neg. LLF: 82.80670067089677
Iteration: 7, Func. Count: 56, Neg. LLF: 82.8228428509428
Iteration: 8, Func. Count: 64, Neg. LLF: 82.77318918776785
Iteration: 9, Func. Count: 71, Neg. LLF: 82.7728825868107
Iteration: 10, Func. Count: 78, Neg. LLF: 82.77284707999578
Iteration: 11, Func. Count: 85, Neg. LLF: 82.7728463877463
Optimization terminated successfully (Exit mode 0)
Current function value: 82.7728463877463
Iterations: 11
Function evaluations: 85
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 182.1491459271049
Iteration: 2, Func. Count: 21, Neg. LLF: 83.65593872009129
Iteration: 3, Func. Count: 30, Neg. LLF: 82.4413879072079
Iteration: 4, Func. Count: 38, Neg. LLF: 83.43681983019815
Iteration: 5, Func. Count: 47, Neg. LLF: 95.9999807264206
Iteration: 6, Func. Count: 57, Neg. LLF: 82.3696324635207
Iteration: 7, Func. Count: 65, Neg. LLF: 82.30430807901674
Iteration: 8, Func. Count: 73, Neg. LLF: 82.26960578138747
Iteration: 9, Func. Count: 81, Neg. LLF: 82.2672315110194
Iteration: 10, Func. Count: 89, Neg. LLF: 82.2671893808157
Iteration: 11, Func. Count: 96, Neg. LLF: 82.26718949289668
Optimization terminated successfully (Exit mode 0)
Current function value: 82.2671893808157
Iterations: 11
Function evaluations: 96
Gradient evaluations: 11
Iteration: 1, Func. Count: 10, Neg. LLF: 149.60809130363717
Iteration: 2, Func. Count: 24, Neg. LLF: 83.58429399057215
Iteration: 3, Func. Count: 34, Neg. LLF: 82.39560235924225
Iteration: 4, Func. Count: 43, Neg. LLF: 82.64346395897948
Iteration: 5, Func. Count: 53, Neg. LLF: 82.27941918966283
Iteration: 6, Func. Count: 62, Neg. LLF: 82.27825056533567
Iteration: 7, Func. Count: 71, Neg. LLF: 82.27799990735049
Iteration: 8, Func. Count: 80, Neg. LLF: 82.27754566358892
Iteration: 9, Func. Count: 89, Neg. LLF: 82.2764173623578
Iteration: 10, Func. Count: 98, Neg. LLF: 82.271829452931
Iteration: 11, Func. Count: 107, Neg. LLF: 82.26739338651713
Iteration: 12, Func. Count: 116, Neg. LLF: 82.26718993547219
Iteration: 13, Func. Count: 125, Neg. LLF: 82.26718934070541
Optimization terminated successfully (Exit mode 0)
Current function value: 82.26718934070541
Iterations: 13
Function evaluations: 125
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 121.98773973321487
Iteration: 2, Func. Count: 26, Neg. LLF: 222.9020117036569
Iteration: 3, Func. Count: 38, Neg. LLF: 84.06490434463127
Iteration: 4, Func. Count: 49, Neg. LLF: 82.36785637826237
Iteration: 5, Func. Count: 59, Neg. LLF: 82.77299751139921
Iteration: 6, Func. Count: 70, Neg. LLF: 82.87131046464775
Iteration: 7, Func. Count: 82, Neg. LLF: 82.19765951905146
Iteration: 8, Func. Count: 92, Neg. LLF: 82.15376567164418
Iteration: 9, Func. Count: 102, Neg. LLF: 82.1183283576858
Iteration: 10, Func. Count: 112, Neg. LLF: 82.09589224655669
Iteration: 11, Func. Count: 122, Neg. LLF: 82.09431956472157
Iteration: 12, Func. Count: 132, Neg. LLF: 82.09427216116333
Iteration: 13, Func. Count: 142, Neg. LLF: 82.09426193413317
Iteration: 14, Func. Count: 152, Neg. LLF: 82.09426106167892
Optimization terminated successfully (Exit mode 0)
Current function value: 82.09426106167892
Iterations: 14
Function evaluations: 152
Gradient evaluations: 14
Iteration: 1, Func. Count: 12, Neg. LLF: 112.86317692692624
Iteration: 2, Func. Count: 25, Neg. LLF: 84.77902884564462
Iteration: 3, Func. Count: 37, Neg. LLF: 88.01341857415478
Iteration: 4, Func. Count: 49, Neg. LLF: 93.52580402301008
Iteration: 5, Func. Count: 61, Neg. LLF: 83.57268288189312
Iteration: 6, Func. Count: 73, Neg. LLF: 83.76642818401503
Iteration: 7, Func. Count: 85, Neg. LLF: 81.99741959132574
Iteration: 8, Func. Count: 96, Neg. LLF: 81.9169088819556
Iteration: 9, Func. Count: 107, Neg. LLF: 81.78145365715103
Iteration: 10, Func. Count: 118, Neg. LLF: 81.72079213959124
Iteration: 11, Func. Count: 129, Neg. LLF: 81.62916943981311
Iteration: 12, Func. Count: 140, Neg. LLF: 81.44347992876355
Iteration: 13, Func. Count: 151, Neg. LLF: 81.32707494811152
Iteration: 14, Func. Count: 162, Neg. LLF: 81.17066406471065
Iteration: 15, Func. Count: 173, Neg. LLF: 81.11326796118016
Iteration: 16, Func. Count: 184, Neg. LLF: 81.1048780472702
Iteration: 17, Func. Count: 195, Neg. LLF: 81.10425208481331
Iteration: 18, Func. Count: 206, Neg. LLF: 81.10423689770957
Iteration: 19, Func. Count: 217, Neg. LLF: 81.10423488040142
Iteration: 20, Func. Count: 228, Neg. LLF: 81.10423553549562
Optimization terminated successfully (Exit mode 0)
Current function value: 81.10423553549562
Iterations: 20
Function evaluations: 228
Gradient evaluations: 20
Iteration: 1, Func. Count: 9, Neg. LLF: 114.58812150398234
Iteration: 2, Func. Count: 20, Neg. LLF: 110.06110016560768
Iteration: 3, Func. Count: 30, Neg. LLF: 84.29839024174696
Iteration: 4, Func. Count: 39, Neg. LLF: 82.93205276528336
Iteration: 5, Func. Count: 47, Neg. LLF: 84.51570416400814
Iteration: 6, Func. Count: 56, Neg. LLF: 83.28296800273786
Iteration: 7, Func. Count: 65, Neg. LLF: 82.77577728337066
Iteration: 8, Func. Count: 73, Neg. LLF: 82.79941754262684
Iteration: 9, Func. Count: 82, Neg. LLF: 82.7785289332517
Iteration: 10, Func. Count: 91, Neg. LLF: 82.7714835518501
Iteration: 11, Func. Count: 99, Neg. LLF: 82.77147868589677
Iteration: 12, Func. Count: 106, Neg. LLF: 82.77147868590413
Optimization terminated successfully (Exit mode 0)
Current function value: 82.77147868589677
Iterations: 12
Function evaluations: 106
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 124.6498881645693
Iteration: 2, Func. Count: 24, Neg. LLF: 88.93457298189894
Iteration: 3, Func. Count: 35, Neg. LLF: 82.71344865674305
Iteration: 4, Func. Count: 44, Neg. LLF: 82.56178868783587
Iteration: 5, Func. Count: 53, Neg. LLF: 83.10957068154808
Iteration: 6, Func. Count: 63, Neg. LLF: 82.35253289887707
Iteration: 7, Func. Count: 72, Neg. LLF: 82.27190454958414
Iteration: 8, Func. Count: 81, Neg. LLF: 82.26735405835397
Iteration: 9, Func. Count: 90, Neg. LLF: 82.26718960260507
Iteration: 10, Func. Count: 98, Neg. LLF: 82.26718971418428
Optimization terminated successfully (Exit mode 0)
Current function value: 82.26718960260507
Iterations: 10
Function evaluations: 98
Gradient evaluations: 10
Iteration: 1, Func. Count: 11, Neg. LLF: 143.65037710335463
Iteration: 2, Func. Count: 26, Neg. LLF: 83.50575637325447
Iteration: 3, Func. Count: 37, Neg. LLF: 82.38690778536402
Iteration: 4, Func. Count: 47, Neg. LLF: 82.70309383391601
Iteration: 5, Func. Count: 58, Neg. LLF: 82.27916809225489
Iteration: 6, Func. Count: 68, Neg. LLF: 82.27852922991383
Iteration: 7, Func. Count: 78, Neg. LLF: 82.27837957590961
Iteration: 8, Func. Count: 88, Neg. LLF: 82.27746020522447
Iteration: 9, Func. Count: 98, Neg. LLF: 82.26918095182236
Iteration: 10, Func. Count: 108, Neg. LLF: 82.26722249396774
Iteration: 11, Func. Count: 118, Neg. LLF: 82.26720606144382
Iteration: 12, Func. Count: 128, Neg. LLF: 82.26719366613978
Iteration: 13, Func. Count: 138, Neg. LLF: 84.5641962798765
Iteration: 14, Func. Count: 151, Neg. LLF: 82.27416241419148
Iteration: 15, Func. Count: 162, Neg. LLF: 82.26718920154804
Optimization terminated successfully (Exit mode 0)
Current function value: 82.26718931369123
Iterations: 16
Function evaluations: 162
Gradient evaluations: 15
Iteration: 1, Func. Count: 12, Neg. LLF: 121.9373903449566
Iteration: 2, Func. Count: 28, Neg. LLF: 234.78425312643148
Iteration: 3, Func. Count: 41, Neg. LLF: 84.10697785399714
Iteration: 4, Func. Count: 53, Neg. LLF: 82.3701789400149
Iteration: 5, Func. Count: 64, Neg. LLF: 82.78191523404304
Iteration: 6, Func. Count: 76, Neg. LLF: 82.88619537560132
Iteration: 7, Func. Count: 89, Neg. LLF: 82.19813782864281
Iteration: 8, Func. Count: 100, Neg. LLF: 82.15419167559479
Iteration: 9, Func. Count: 111, Neg. LLF: 82.1199968178668
Iteration: 10, Func. Count: 122, Neg. LLF: 82.09613036114834
Iteration: 11, Func. Count: 133, Neg. LLF: 82.09434555854708
Iteration: 12, Func. Count: 144, Neg. LLF: 82.09427143697755
Iteration: 13, Func. Count: 155, Neg. LLF: 82.09426128528548
Iteration: 14, Func. Count: 166, Neg. LLF: 82.0942608605675
Optimization terminated successfully (Exit mode 0)
Current function value: 82.0942608605675
Iterations: 14
Function evaluations: 166
Gradient evaluations: 14
Iteration: 1, Func. Count: 13, Neg. LLF: 112.51603349997416
Iteration: 2, Func. Count: 27, Neg. LLF: 84.83360881907117
Iteration: 3, Func. Count: 40, Neg. LLF: 88.30902438425393
Iteration: 4, Func. Count: 53, Neg. LLF: 93.11477048861636
Iteration: 5, Func. Count: 66, Neg. LLF: 83.57153277990409
Iteration: 6, Func. Count: 79, Neg. LLF: 83.69064156415774
Iteration: 7, Func. Count: 92, Neg. LLF: 81.993366670188
Iteration: 8, Func. Count: 104, Neg. LLF: 81.92442179624716
Iteration: 9, Func. Count: 116, Neg. LLF: 81.78195966265496
Iteration: 10, Func. Count: 128, Neg. LLF: 81.72111958939551
Iteration: 11, Func. Count: 140, Neg. LLF: 81.62819440585663
Iteration: 12, Func. Count: 152, Neg. LLF: 81.43929721840522
Iteration: 13, Func. Count: 164, Neg. LLF: 81.2474667602179
Iteration: 14, Func. Count: 176, Neg. LLF: 81.13660985281541
Iteration: 15, Func. Count: 188, Neg. LLF: 81.11155169144162
Iteration: 16, Func. Count: 200, Neg. LLF: 81.10457959785133
Iteration: 17, Func. Count: 212, Neg. LLF: 81.10424855195573
Iteration: 18, Func. Count: 224, Neg. LLF: 81.1042356375548
Iteration: 19, Func. Count: 235, Neg. LLF: 81.10423556703132
Optimization terminated successfully (Exit mode 0)
Current function value: 81.1042356375548
Iterations: 19
Function evaluations: 235
Gradient evaluations: 19
Iteration: 1, Func. Count: 6, Neg. LLF: 127.26387660313257
Iteration: 2, Func. Count: 15, Neg. LLF: 116.729803511645
Iteration: 3, Func. Count: 22, Neg. LLF: 82.86512347808326
Iteration: 4, Func. Count: 27, Neg. LLF: 82.86360110642633
Iteration: 5, Func. Count: 33, Neg. LLF: 82.86009750246315
Iteration: 6, Func. Count: 38, Neg. LLF: 82.8600576145862
Iteration: 7, Func. Count: 42, Neg. LLF: 82.86005766688727
Optimization terminated successfully (Exit mode 0)
Current function value: 82.8600576145862
Iterations: 7
Function evaluations: 42
Gradient evaluations: 7
Iteration: 1, Func. Count: 7, Neg. LLF: 184.36861930723188
Iteration: 2, Func. Count: 17, Neg. LLF: 84.44264391612549
Iteration: 3, Func. Count: 24, Neg. LLF: 82.40182971489781
Iteration: 4, Func. Count: 30, Neg. LLF: 2960.612303437607
Iteration: 5, Func. Count: 38, Neg. LLF: 82.27383333832792
Iteration: 6, Func. Count: 44, Neg. LLF: 82.26759870353122
Iteration: 7, Func. Count: 50, Neg. LLF: 82.26718979399189
Iteration: 8, Func. Count: 55, Neg. LLF: 82.26718990837236
Optimization terminated successfully (Exit mode 0)
Current function value: 82.26718979399189
Iterations: 8
Function evaluations: 55
Gradient evaluations: 8
Iteration: 1, Func. Count: 8, Neg. LLF: 181.89907302725123
Iteration: 2, Func. Count: 20, Neg. LLF: 84.42323399078587
Iteration: 3, Func. Count: 28, Neg. LLF: 82.41259259535117
Iteration: 4, Func. Count: 35, Neg. LLF: 82.42691419078662
Iteration: 5, Func. Count: 43, Neg. LLF: 82.28070218500747
Iteration: 6, Func. Count: 50, Neg. LLF: 82.27874269400208
Iteration: 7, Func. Count: 57, Neg. LLF: 82.2785967695721
Iteration: 8, Func. Count: 64, Neg. LLF: 82.27838774844496
Iteration: 9, Func. Count: 71, Neg. LLF: 82.27779780674244
Iteration: 10, Func. Count: 78, Neg. LLF: 82.27663172386892
Iteration: 11, Func. Count: 85, Neg. LLF: 82.26950483707532
Iteration: 12, Func. Count: 92, Neg. LLF: 82.26786445435908
Iteration: 13, Func. Count: 99, Neg. LLF: 82.26718982013905
Iteration: 14, Func. Count: 105, Neg. LLF: 82.26718970617227
Optimization terminated successfully (Exit mode 0)
Current function value: 82.26718982013905
Iterations: 14
Function evaluations: 105
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 177.0380632171658
Iteration: 2, Func. Count: 22, Neg. LLF: 84.32832649011229
Iteration: 3, Func. Count: 31, Neg. LLF: 82.30152107223768
Iteration: 4, Func. Count: 39, Neg. LLF: 82.36037509002811
Iteration: 5, Func. Count: 48, Neg. LLF: 82.28240412283995
Iteration: 6, Func. Count: 56, Neg. LLF: 82.27961723879908
Iteration: 7, Func. Count: 64, Neg. LLF: 82.28132657249087
Iteration: 8, Func. Count: 73, Neg. LLF: 82.2850132710061
Iteration: 9, Func. Count: 82, Neg. LLF: 82.28135327389747
Iteration: 10, Func. Count: 91, Neg. LLF: 82.26968437122285
Iteration: 11, Func. Count: 99, Neg. LLF: 82.2690741817158
Iteration: 12, Func. Count: 108, Neg. LLF: 82.26494555924914
Iteration: 13, Func. Count: 116, Neg. LLF: 82.2446042414549
Iteration: 14, Func. Count: 124, Neg. LLF: 82.23237731183802
Iteration: 15, Func. Count: 132, Neg. LLF: 82.20997642704975
Iteration: 16, Func. Count: 140, Neg. LLF: 82.20734252352953
Iteration: 17, Func. Count: 148, Neg. LLF: 82.20584072355736
Iteration: 18, Func. Count: 156, Neg. LLF: 82.20565160659304
Iteration: 19, Func. Count: 164, Neg. LLF: 82.2056293953581
Iteration: 20, Func. Count: 172, Neg. LLF: 82.20562866408042
Optimization terminated successfully (Exit mode 0)
Current function value: 82.20562866408042
Iterations: 20
Function evaluations: 172
Gradient evaluations: 20
Iteration: 1, Func. Count: 10, Neg. LLF: 138.33773275101316
Iteration: 2, Func. Count: 24, Neg. LLF: 86.10741667087362
Iteration: 3, Func. Count: 34, Neg. LLF: 82.05620773122634
Iteration: 4, Func. Count: 43, Neg. LLF: 82.58163286283411
Iteration: 5, Func. Count: 53, Neg. LLF: 81.22932226698437
Iteration: 6, Func. Count: 62, Neg. LLF: 81.23812483528624
Iteration: 7, Func. Count: 72, Neg. LLF: 81.17648968583921
Iteration: 8, Func. Count: 81, Neg. LLF: 81.14582906573179
Iteration: 9, Func. Count: 90, Neg. LLF: 81.14316269022382
Iteration: 10, Func. Count: 99, Neg. LLF: 81.13729374259026
Iteration: 11, Func. Count: 108, Neg. LLF: 81.13714140330922
Iteration: 12, Func. Count: 117, Neg. LLF: 81.13713614940299
Iteration: 13, Func. Count: 126, Neg. LLF: 81.13721664887076
Optimization terminated successfully (Exit mode 0)
Current function value: 81.13713604995746
Iterations: 14
Function evaluations: 128
Gradient evaluations: 13
Iteration: 1, Func. Count: 7, Neg. LLF: 114.60885515464216
Iteration: 2, Func. Count: 16, Neg. LLF: 86.73053873997053
Iteration: 3, Func. Count: 23, Neg. LLF: 98.27787158788415
Iteration: 4, Func. Count: 30, Neg. LLF: 83.74595143900189
Iteration: 5, Func. Count: 37, Neg. LLF: 91.77668998276016
Iteration: 6, Func. Count: 44, Neg. LLF: 82.86292721421405
Iteration: 7, Func. Count: 50, Neg. LLF: 82.84581340732178
Iteration: 8, Func. Count: 56, Neg. LLF: 82.845083467355
Iteration: 9, Func. Count: 62, Neg. LLF: 82.84480463166695
Iteration: 10, Func. Count: 68, Neg. LLF: 82.84480120541609
Iteration: 11, Func. Count: 73, Neg. LLF: 82.84480120541416
Optimization terminated successfully (Exit mode 0)
Current function value: 82.84480120541609
Iterations: 11
Function evaluations: 73
Gradient evaluations: 11
Iteration: 1, Func. Count: 8, Neg. LLF: 182.30855709757734
Iteration: 2, Func. Count: 19, Neg. LLF: 83.59272000701658
Iteration: 3, Func. Count: 27, Neg. LLF: 82.43697338235654
Iteration: 4, Func. Count: 34, Neg. LLF: 91.84494302417312
Iteration: 5, Func. Count: 42, Neg. LLF: 82.30610305551666
Iteration: 6, Func. Count: 49, Neg. LLF: 82.27032688812274
Iteration: 7, Func. Count: 56, Neg. LLF: 82.26737936917287
Iteration: 8, Func. Count: 63, Neg. LLF: 82.26718934876395
Iteration: 9, Func. Count: 69, Neg. LLF: 82.26718946113864
Optimization terminated successfully (Exit mode 0)
Current function value: 82.26718934876395
Iterations: 9
Function evaluations: 69
Gradient evaluations: 9
Iteration: 1, Func. Count: 9, Neg. LLF: 178.35821167967083
Iteration: 2, Func. Count: 22, Neg. LLF: 83.6424849040557
Iteration: 3, Func. Count: 31, Neg. LLF: 82.4302313951934
Iteration: 4, Func. Count: 39, Neg. LLF: 82.64301519919105
Iteration: 5, Func. Count: 48, Neg. LLF: 82.39798094758899
Iteration: 6, Func. Count: 57, Neg. LLF: 82.27757049021321
Iteration: 7, Func. Count: 65, Neg. LLF: 82.27716637363893
Iteration: 8, Func. Count: 73, Neg. LLF: 82.27700240896708
Iteration: 9, Func. Count: 81, Neg. LLF: 82.27579641157601
Iteration: 10, Func. Count: 89, Neg. LLF: 82.27072043253
Iteration: 11, Func. Count: 97, Neg. LLF: 82.26850341423892
Iteration: 12, Func. Count: 105, Neg. LLF: 82.26732121917823
Iteration: 13, Func. Count: 113, Neg. LLF: 82.26718935454515
Iteration: 14, Func. Count: 120, Neg. LLF: 82.26718924206594
Optimization terminated successfully (Exit mode 0)
Current function value: 82.26718935454515
Iterations: 14
Function evaluations: 120
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 172.55762742350106
Iteration: 2, Func. Count: 23, Neg. LLF: 82.43353865995446
Iteration: 3, Func. Count: 32, Neg. LLF: 84.76284558819967
Iteration: 4, Func. Count: 42, Neg. LLF: 82.28123735980613
Iteration: 5, Func. Count: 51, Neg. LLF: 82.26659397470515
Iteration: 6, Func. Count: 60, Neg. LLF: 82.31154600401959
Iteration: 7, Func. Count: 70, Neg. LLF: 82.23485654544758
Iteration: 8, Func. Count: 79, Neg. LLF: 82.22145333264274
Iteration: 9, Func. Count: 88, Neg. LLF: 82.2132172067012
Iteration: 10, Func. Count: 97, Neg. LLF: 82.20659970119101
Iteration: 11, Func. Count: 106, Neg. LLF: 82.20574619798866
Iteration: 12, Func. Count: 115, Neg. LLF: 82.2056385631129
Iteration: 13, Func. Count: 124, Neg. LLF: 82.20562499867786
Iteration: 14, Func. Count: 133, Neg. LLF: 82.21918185767557
Iteration: 15, Func. Count: 145, Neg. LLF: 82.20568423890091
Iteration: 16, Func. Count: 156, Neg. LLF: 82.20563820018191
Iteration: 17, Func. Count: 167, Neg. LLF: 82.20562865197104
Iteration: 18, Func. Count: 175, Neg. LLF: 82.20562860611777
Optimization terminated successfully (Exit mode 0)
Current function value: 82.20562865197104
Iterations: 20
Function evaluations: 175
Gradient evaluations: 18
Iteration: 1, Func. Count: 11, Neg. LLF: 135.61517087110644
Iteration: 2, Func. Count: 26, Neg. LLF: 82.25227482026806
Iteration: 3, Func. Count: 36, Neg. LLF: 82.07991231333955
Iteration: 4, Func. Count: 46, Neg. LLF: 89.23326205842943
Iteration: 5, Func. Count: 58, Neg. LLF: 82.01360886697535
Iteration: 6, Func. Count: 68, Neg. LLF: 82.13723304281558
Iteration: 7, Func. Count: 79, Neg. LLF: 81.68004196729683
Iteration: 8, Func. Count: 90, Neg. LLF: 87.67213351736622
Iteration: 9, Func. Count: 101, Neg. LLF: 81.13591416393622
Iteration: 10, Func. Count: 111, Neg. LLF: 81.11743818995564
Iteration: 11, Func. Count: 121, Neg. LLF: 81.10815777275467
Iteration: 12, Func. Count: 131, Neg. LLF: 81.10678686778587
Iteration: 13, Func. Count: 141, Neg. LLF: 81.10466947635902
Iteration: 14, Func. Count: 151, Neg. LLF: 81.10449270409123
Iteration: 15, Func. Count: 161, Neg. LLF: 81.1043023764566
Iteration: 16, Func. Count: 171, Neg. LLF: 81.10424439380903
Iteration: 17, Func. Count: 181, Neg. LLF: 81.10423480884683
Iteration: 18, Func. Count: 191, Neg. LLF: 81.10423493248186
Optimization terminated successfully (Exit mode 0)
Current function value: 81.10423493248186
Iterations: 18
Function evaluations: 191
Gradient evaluations: 18
Iteration: 1, Func. Count: 8, Neg. LLF: 116.44310578526951
Iteration: 2, Func. Count: 18, Neg. LLF: 117.35891916029664
Iteration: 3, Func. Count: 27, Neg. LLF: 85.69352991278603
Iteration: 4, Func. Count: 35, Neg. LLF: 83.18386288035917
Iteration: 5, Func. Count: 43, Neg. LLF: 91.07956885058347
Iteration: 6, Func. Count: 51, Neg. LLF: 82.93988091386802
Iteration: 7, Func. Count: 59, Neg. LLF: 82.7882600126674
Iteration: 8, Func. Count: 66, Neg. LLF: 82.77407862612768
Iteration: 9, Func. Count: 73, Neg. LLF: 82.77295641555524
Iteration: 10, Func. Count: 80, Neg. LLF: 82.77284727487924
Iteration: 11, Func. Count: 87, Neg. LLF: 82.77284649588371
Optimization terminated successfully (Exit mode 0)
Current function value: 82.77284649588371
Iterations: 11
Function evaluations: 87
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 182.59960970923427
Iteration: 2, Func. Count: 21, Neg. LLF: 83.77172291461028
Iteration: 3, Func. Count: 30, Neg. LLF: 82.42765913883065
Iteration: 4, Func. Count: 38, Neg. LLF: 117.97490720983728
Iteration: 5, Func. Count: 47, Neg. LLF: 82.27988903446709
Iteration: 6, Func. Count: 55, Neg. LLF: 82.26778634748827
Iteration: 7, Func. Count: 63, Neg. LLF: 82.26719652359154
Iteration: 8, Func. Count: 71, Neg. LLF: 82.26718936517506
Iteration: 9, Func. Count: 78, Neg. LLF: 82.2671894778371
Optimization terminated successfully (Exit mode 0)
Current function value: 82.26718936517506
Iterations: 9
Function evaluations: 78
Gradient evaluations: 9
Iteration: 1, Func. Count: 10, Neg. LLF: 159.59712549494333
Iteration: 2, Func. Count: 24, Neg. LLF: 83.8373270325091
Iteration: 3, Func. Count: 34, Neg. LLF: 82.407463524777
Iteration: 4, Func. Count: 43, Neg. LLF: 82.50843069778728
Iteration: 5, Func. Count: 53, Neg. LLF: 82.29940083331354
Iteration: 6, Func. Count: 63, Neg. LLF: 82.27781950436426
Iteration: 7, Func. Count: 72, Neg. LLF: 82.27765125634397
Iteration: 8, Func. Count: 81, Neg. LLF: 82.27644810151561
Iteration: 9, Func. Count: 90, Neg. LLF: 82.26722872700337
Iteration: 10, Func. Count: 99, Neg. LLF: 82.2672609858976
Iteration: 11, Func. Count: 109, Neg. LLF: 82.26718935052745
Iteration: 12, Func. Count: 117, Neg. LLF: 82.2671892382926
Optimization terminated successfully (Exit mode 0)
Current function value: 82.26718935052745
Iterations: 12
Function evaluations: 117
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 150.42778628357746
Iteration: 2, Func. Count: 26, Neg. LLF: 82.45042899506541
Iteration: 3, Func. Count: 36, Neg. LLF: 82.54775337953632
Iteration: 4, Func. Count: 47, Neg. LLF: 90.87195572683574
Iteration: 5, Func. Count: 58, Neg. LLF: 83.35114837787393
Iteration: 6, Func. Count: 70, Neg. LLF: 82.20512069691684
Iteration: 7, Func. Count: 80, Neg. LLF: 82.18223336535019
Iteration: 8, Func. Count: 90, Neg. LLF: 82.18127580405313
Iteration: 9, Func. Count: 100, Neg. LLF: 82.17965187968704
Iteration: 10, Func. Count: 110, Neg. LLF: 82.17959360259803
Iteration: 11, Func. Count: 120, Neg. LLF: 82.17958838712227
Iteration: 12, Func. Count: 130, Neg. LLF: 82.1795876063223
Optimization terminated successfully (Exit mode 0)
Current function value: 82.1795876063223
Iterations: 12
Function evaluations: 130
Gradient evaluations: 12
Iteration: 1, Func. Count: 12, Neg. LLF: 157.48897703723907
Iteration: 2, Func. Count: 27, Neg. LLF: 82.92932287438529
Iteration: 3, Func. Count: 39, Neg. LLF: 82.46692149567954
Iteration: 4, Func. Count: 50, Neg. LLF: 87.05863743154102
Iteration: 5, Func. Count: 62, Neg. LLF: 4533.180910927953
Iteration: 6, Func. Count: 75, Neg. LLF: 82.1636869717061
Iteration: 7, Func. Count: 87, Neg. LLF: 82.03644988030527
Iteration: 8, Func. Count: 98, Neg. LLF: 82.14118700855241
Iteration: 9, Func. Count: 110, Neg. LLF: 82.01730171294118
Iteration: 10, Func. Count: 121, Neg. LLF: 82.01010335953194
Iteration: 11, Func. Count: 132, Neg. LLF: 82.00813903006636
Iteration: 12, Func. Count: 143, Neg. LLF: 82.00769206934322
Iteration: 13, Func. Count: 154, Neg. LLF: 82.00752558469908
Iteration: 14, Func. Count: 165, Neg. LLF: 82.00751465278792
Iteration: 15, Func. Count: 175, Neg. LLF: 82.00751462784793
Optimization terminated successfully (Exit mode 0)
Current function value: 82.00751465278792
Iterations: 15
Function evaluations: 175
Gradient evaluations: 15
Iteration: 1, Func. Count: 9, Neg. LLF: 122.0725389505488
Iteration: 2, Func. Count: 20, Neg. LLF: 129.77497131824938
Iteration: 3, Func. Count: 30, Neg. LLF: 83.58890401550809
Iteration: 4, Func. Count: 38, Neg. LLF: 88.48698514068965
Iteration: 5, Func. Count: 47, Neg. LLF: 85.19655026365403
Iteration: 6, Func. Count: 57, Neg. LLF: 83.34493322004182
Iteration: 7, Func. Count: 66, Neg. LLF: 82.79871183013528
Iteration: 8, Func. Count: 74, Neg. LLF: 82.77496589995816
Iteration: 9, Func. Count: 82, Neg. LLF: 82.7733012684079
Iteration: 10, Func. Count: 90, Neg. LLF: 82.77302098745588
Iteration: 11, Func. Count: 98, Neg. LLF: 82.77284929967027
Iteration: 12, Func. Count: 106, Neg. LLF: 82.77284653731351
Iteration: 13, Func. Count: 113, Neg. LLF: 82.77284665905071
Optimization terminated successfully (Exit mode 0)
Current function value: 82.77284653731351
Iterations: 13
Function evaluations: 113
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 182.93388850164948
Iteration: 2, Func. Count: 23, Neg. LLF: 83.75916520720976
Iteration: 3, Func. Count: 33, Neg. LLF: 82.4170442817154
Iteration: 4, Func. Count: 42, Neg. LLF: 1325.3909476181582
Iteration: 5, Func. Count: 53, Neg. LLF: 82.26787579776229
Iteration: 6, Func. Count: 62, Neg. LLF: 82.26722497051563
Iteration: 7, Func. Count: 71, Neg. LLF: 82.2672027922728
Iteration: 8, Func. Count: 80, Neg. LLF: 82.26718965659249
Iteration: 9, Func. Count: 88, Neg. LLF: 82.26718976972629
Optimization terminated successfully (Exit mode 0)
Current function value: 82.26718965659249
Iterations: 9
Function evaluations: 88
Gradient evaluations: 9
Iteration: 1, Func. Count: 11, Neg. LLF: 157.56018960057537
Iteration: 2, Func. Count: 26, Neg. LLF: 83.90602649418062
Iteration: 3, Func. Count: 37, Neg. LLF: 82.39953650582923
Iteration: 4, Func. Count: 47, Neg. LLF: 82.51197172911702
Iteration: 5, Func. Count: 58, Neg. LLF: 82.28576331701004
Iteration: 6, Func. Count: 68, Neg. LLF: 82.27890433629375
Iteration: 7, Func. Count: 78, Neg. LLF: 82.27811994337496
Iteration: 8, Func. Count: 88, Neg. LLF: 82.27787290716161
Iteration: 9, Func. Count: 98, Neg. LLF: 82.27731969687945
Iteration: 10, Func. Count: 108, Neg. LLF: 82.27510163728175
Iteration: 11, Func. Count: 118, Neg. LLF: 82.2707919302193
Iteration: 12, Func. Count: 128, Neg. LLF: 82.26922714830762
Iteration: 13, Func. Count: 138, Neg. LLF: 82.26719342531494
Iteration: 14, Func. Count: 148, Neg. LLF: 82.26718934161404
Iteration: 15, Func. Count: 157, Neg. LLF: 82.2671892293383
Optimization terminated successfully (Exit mode 0)
Current function value: 82.26718934161404
Iterations: 15
Function evaluations: 157
Gradient evaluations: 15
Iteration: 1, Func. Count: 12, Neg. LLF: 122.3665210567669
Iteration: 2, Func. Count: 28, Neg. LLF: 190.66318703649486
Iteration: 3, Func. Count: 41, Neg. LLF: 83.81857409004894
Iteration: 4, Func. Count: 53, Neg. LLF: 82.39025665889784
Iteration: 5, Func. Count: 64, Neg. LLF: 82.80318105861058
Iteration: 6, Func. Count: 76, Neg. LLF: 83.36064247014681
Iteration: 7, Func. Count: 89, Neg. LLF: 82.21865728599417
Iteration: 8, Func. Count: 100, Neg. LLF: 82.15988649469261
Iteration: 9, Func. Count: 111, Neg. LLF: 82.13442389167018
Iteration: 10, Func. Count: 122, Neg. LLF: 82.09661190509392
Iteration: 11, Func. Count: 133, Neg. LLF: 82.09461505742023
Iteration: 12, Func. Count: 144, Neg. LLF: 82.09426749498864
Iteration: 13, Func. Count: 155, Neg. LLF: 82.09426125664437
Iteration: 14, Func. Count: 166, Neg. LLF: 82.0942623829817
Optimization terminated successfully (Exit mode 0)
Current function value: 82.09426164480766
Iterations: 14
Function evaluations: 167
Gradient evaluations: 14
Iteration: 1, Func. Count: 13, Neg. LLF: 122.4849217419978
Iteration: 2, Func. Count: 31, Neg. LLF: 87.2307056303269
Iteration: 3, Func. Count: 44, Neg. LLF: 83.2896994868086
Iteration: 4, Func. Count: 57, Neg. LLF: 82.05840319297444
Iteration: 5, Func. Count: 69, Neg. LLF: 82.87415430369325
Iteration: 6, Func. Count: 82, Neg. LLF: 82.00774124112421
Iteration: 7, Func. Count: 94, Neg. LLF: 81.87360082982569
Iteration: 8, Func. Count: 106, Neg. LLF: 81.67631269125079
Iteration: 9, Func. Count: 118, Neg. LLF: 84.36658707440701
Iteration: 10, Func. Count: 131, Neg. LLF: 81.35566457677017
Iteration: 11, Func. Count: 143, Neg. LLF: 81.16271283452748
Iteration: 12, Func. Count: 155, Neg. LLF: 81.13314847556934
Iteration: 13, Func. Count: 167, Neg. LLF: 81.1215301630934
Iteration: 14, Func. Count: 179, Neg. LLF: 81.10532228567008
Iteration: 15, Func. Count: 191, Neg. LLF: 81.10432324316264
Iteration: 16, Func. Count: 203, Neg. LLF: 81.10425094859696
Iteration: 17, Func. Count: 215, Neg. LLF: 81.10423843036925
Iteration: 18, Func. Count: 227, Neg. LLF: 81.10424524944081
Iteration: 19, Func. Count: 240, Neg. LLF: 81.10424016662863
Optimization terminated successfully (Exit mode 0)
Current function value: 81.10424016662863
Iterations: 19
Function evaluations: 240
Gradient evaluations: 19
Iteration: 1, Func. Count: 10, Neg. LLF: 114.7626465566688
Iteration: 2, Func. Count: 22, Neg. LLF: 115.13178746866889
Iteration: 3, Func. Count: 33, Neg. LLF: 84.55924894034413
Iteration: 4, Func. Count: 43, Neg. LLF: 89.01843703275168
Iteration: 5, Func. Count: 53, Neg. LLF: 82.86208125189324
Iteration: 6, Func. Count: 62, Neg. LLF: 89.81921418856486
Iteration: 7, Func. Count: 72, Neg. LLF: 82.77827211086097
Iteration: 8, Func. Count: 81, Neg. LLF: 83.0091464948321
Iteration: 9, Func. Count: 91, Neg. LLF: 82.77386463674235
Iteration: 10, Func. Count: 100, Neg. LLF: 82.77150451577067
Iteration: 11, Func. Count: 109, Neg. LLF: 82.77147957268855
Iteration: 12, Func. Count: 118, Neg. LLF: 82.77147871824589
Optimization terminated successfully (Exit mode 0)
Current function value: 82.77147871824589
Iterations: 12
Function evaluations: 118
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 128.1499088472796
Iteration: 2, Func. Count: 26, Neg. LLF: 88.36756163824114
Iteration: 3, Func. Count: 38, Neg. LLF: 82.67978875741224
Iteration: 4, Func. Count: 48, Neg. LLF: 82.50367748214963
Iteration: 5, Func. Count: 58, Neg. LLF: 82.86688012341652
Iteration: 6, Func. Count: 69, Neg. LLF: 82.3169712393133
Iteration: 7, Func. Count: 79, Neg. LLF: 82.27053642849347
Iteration: 8, Func. Count: 89, Neg. LLF: 82.26726500668661
Iteration: 9, Func. Count: 99, Neg. LLF: 82.26718943230654
Iteration: 10, Func. Count: 108, Neg. LLF: 82.2671895441547
Optimization terminated successfully (Exit mode 0)
Current function value: 82.26718943230654
Iterations: 10
Function evaluations: 108
Gradient evaluations: 10
Iteration: 1, Func. Count: 12, Neg. LLF: 150.81190220711267
Iteration: 2, Func. Count: 28, Neg. LLF: 83.8261596208572
Iteration: 3, Func. Count: 40, Neg. LLF: 82.39399855913645
Iteration: 4, Func. Count: 51, Neg. LLF: 82.54697262720546
Iteration: 5, Func. Count: 63, Neg. LLF: 82.2794675071229
Iteration: 6, Func. Count: 74, Neg. LLF: 82.27839067690742
Iteration: 7, Func. Count: 85, Neg. LLF: 82.27818084150965
Iteration: 8, Func. Count: 96, Neg. LLF: 82.27766750794017
Iteration: 9, Func. Count: 107, Neg. LLF: 82.27657615732176
Iteration: 10, Func. Count: 118, Neg. LLF: 82.27172964270535
Iteration: 11, Func. Count: 129, Neg. LLF: 82.26743854611549
Iteration: 12, Func. Count: 140, Neg. LLF: 82.26718986390948
Iteration: 13, Func. Count: 151, Neg. LLF: 82.2671893398895
Optimization terminated successfully (Exit mode 0)
Current function value: 82.2671893398895
Iterations: 13
Function evaluations: 151
Gradient evaluations: 13
Iteration: 1, Func. Count: 13, Neg. LLF: 122.3140915884284
Iteration: 2, Func. Count: 30, Neg. LLF: 198.69333069714915
Iteration: 3, Func. Count: 44, Neg. LLF: 83.86654297681267
Iteration: 4, Func. Count: 57, Neg. LLF: 82.39327243779539
Iteration: 5, Func. Count: 69, Neg. LLF: 82.81539137379708
Iteration: 6, Func. Count: 82, Neg. LLF: 83.3545555984158
Iteration: 7, Func. Count: 96, Neg. LLF: 82.21861578504291
Iteration: 8, Func. Count: 108, Neg. LLF: 82.16022091905793
Iteration: 9, Func. Count: 120, Neg. LLF: 82.13494535562238
Iteration: 10, Func. Count: 132, Neg. LLF: 82.09688763599844
Iteration: 11, Func. Count: 144, Neg. LLF: 82.09463096649591
Iteration: 12, Func. Count: 156, Neg. LLF: 82.09426753105036
Iteration: 13, Func. Count: 168, Neg. LLF: 82.09425690683268
Iteration: 14, Func. Count: 180, Neg. LLF: 82.09425688552119
Iteration: 15, Func. Count: 196, Neg. LLF: 82.09425908211017
Iteration: 16, Func. Count: 209, Neg. LLF: 82.11350268846003
Iteration: 17, Func. Count: 224, Neg. LLF: 82.0943051609561
Iteration: 18, Func. Count: 238, Neg. LLF: 82.09426240243148
Iteration: 19, Func. Count: 252, Neg. LLF: 82.09426159837952
Iteration: 20, Func. Count: 263, Neg. LLF: 82.09426156035359
Optimization terminated successfully (Exit mode 0)
Current function value: 82.09426159837952
Iterations: 21
Function evaluations: 263
Gradient evaluations: 20
Iteration: 1, Func. Count: 14, Neg. LLF: 122.40556731922412
Iteration: 2, Func. Count: 33, Neg. LLF: 87.24569055555239
Iteration: 3, Func. Count: 47, Neg. LLF: 83.21862900309904
Iteration: 4, Func. Count: 61, Neg. LLF: 82.05653582024607
Iteration: 5, Func. Count: 74, Neg. LLF: 82.85390360004315
Iteration: 6, Func. Count: 88, Neg. LLF: 82.00828158742594
Iteration: 7, Func. Count: 101, Neg. LLF: 81.87358484729087
Iteration: 8, Func. Count: 114, Neg. LLF: 81.67153435910068
Iteration: 9, Func. Count: 127, Neg. LLF: 84.37931493112332
Iteration: 10, Func. Count: 141, Neg. LLF: 81.29490699801904
Iteration: 11, Func. Count: 154, Neg. LLF: 81.15760767136123
Iteration: 12, Func. Count: 167, Neg. LLF: 81.12927770442369
Iteration: 13, Func. Count: 180, Neg. LLF: 81.11811561168406
Iteration: 14, Func. Count: 193, Neg. LLF: 81.10671381481814
Iteration: 15, Func. Count: 206, Neg. LLF: 81.10466771801792
Iteration: 16, Func. Count: 219, Neg. LLF: 81.1043123039939
Iteration: 17, Func. Count: 232, Neg. LLF: 81.10428027654638
Iteration: 18, Func. Count: 245, Neg. LLF: 81.10425559805634
Iteration: 19, Func. Count: 258, Neg. LLF: 81.10423293433473
Iteration: 20, Func. Count: 271, Neg. LLF: 81.10427844917271
Optimization terminated successfully (Exit mode 0)
Current function value: 81.10423296103805
Iterations: 21
Function evaluations: 273
Gradient evaluations: 20
Iteration: 1, Func. Count: 7, Neg. LLF: 118.695997223513
Iteration: 2, Func. Count: 17, Neg. LLF: 86.21992320145239
Iteration: 3, Func. Count: 24, Neg. LLF: 89.50062114818556
Iteration: 4, Func. Count: 31, Neg. LLF: 82.86144441448263
Iteration: 5, Func. Count: 37, Neg. LLF: 82.86056069313679
Iteration: 6, Func. Count: 43, Neg. LLF: 82.86011643323508
Iteration: 7, Func. Count: 49, Neg. LLF: 82.86005982852397
Iteration: 8, Func. Count: 55, Neg. LLF: 82.86005768030576
Iteration: 9, Func. Count: 60, Neg. LLF: 82.86005773045918
Optimization terminated successfully (Exit mode 0)
Current function value: 82.86005768030576
Iterations: 9
Function evaluations: 60
Gradient evaluations: 9
Iteration: 1, Func. Count: 8, Neg. LLF: 185.00695131944244
Iteration: 2, Func. Count: 19, Neg. LLF: 84.07804889445697
Iteration: 3, Func. Count: 27, Neg. LLF: 82.37153720487302
Iteration: 4, Func. Count: 34, Neg. LLF: 127.68065181061687
Iteration: 5, Func. Count: 42, Neg. LLF: 82.28269482330381
Iteration: 6, Func. Count: 49, Neg. LLF: 82.26986126496188
Iteration: 7, Func. Count: 56, Neg. LLF: 82.26720460830843
Iteration: 8, Func. Count: 63, Neg. LLF: 82.2671895529627
Iteration: 9, Func. Count: 69, Neg. LLF: 82.26718966447731
Optimization terminated successfully (Exit mode 0)
Current function value: 82.2671895529627
Iterations: 9
Function evaluations: 69
Gradient evaluations: 9
Iteration: 1, Func. Count: 9, Neg. LLF: 182.42995609607993
Iteration: 2, Func. Count: 22, Neg. LLF: 84.21832687643179
Iteration: 3, Func. Count: 31, Neg. LLF: 82.40279052469958
Iteration: 4, Func. Count: 39, Neg. LLF: 82.45556510801826
Iteration: 5, Func. Count: 48, Neg. LLF: 82.27898783689461
Iteration: 6, Func. Count: 56, Neg. LLF: 82.27877739985865
Iteration: 7, Func. Count: 64, Neg. LLF: 82.27867901812373
Iteration: 8, Func. Count: 72, Neg. LLF: 82.2780930909824
Iteration: 9, Func. Count: 80, Neg. LLF: 82.2739689948346
Iteration: 10, Func. Count: 88, Neg. LLF: 82.26720129963333
Iteration: 11, Func. Count: 96, Neg. LLF: 82.26720457515022
Iteration: 12, Func. Count: 104, Neg. LLF: 82.26718938469398
Optimization terminated successfully (Exit mode 0)
Current function value: 82.2671894966419
Iterations: 12
Function evaluations: 104
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 177.34392390973284
Iteration: 2, Func. Count: 24, Neg. LLF: 84.08222833889573
Iteration: 3, Func. Count: 34, Neg. LLF: 82.29832559946664
Iteration: 4, Func. Count: 43, Neg. LLF: 82.35403870833721
Iteration: 5, Func. Count: 53, Neg. LLF: 82.28283901212777
Iteration: 6, Func. Count: 62, Neg. LLF: 82.28160746700893
Iteration: 7, Func. Count: 71, Neg. LLF: 82.27837454542424
Iteration: 8, Func. Count: 80, Neg. LLF: 82.27856905196123
Iteration: 9, Func. Count: 90, Neg. LLF: 82.26835057500115
Iteration: 10, Func. Count: 99, Neg. LLF: 82.27040592447501
Iteration: 11, Func. Count: 109, Neg. LLF: 82.26486053256244
Iteration: 12, Func. Count: 118, Neg. LLF: 82.26114218990409
Iteration: 13, Func. Count: 127, Neg. LLF: 82.24520122599918
Iteration: 14, Func. Count: 136, Neg. LLF: 82.20974669305853
Iteration: 15, Func. Count: 145, Neg. LLF: 82.20633462573383
Iteration: 16, Func. Count: 154, Neg. LLF: 82.2056957027684
Iteration: 17, Func. Count: 163, Neg. LLF: 82.20564024139838
Iteration: 18, Func. Count: 172, Neg. LLF: 82.20562950416638
Iteration: 19, Func. Count: 181, Neg. LLF: 82.20562869333408
Optimization terminated successfully (Exit mode 0)
Current function value: 82.20562869333408
Iterations: 19
Function evaluations: 181
Gradient evaluations: 19
Iteration: 1, Func. Count: 11, Neg. LLF: 139.81504948615418
Iteration: 2, Func. Count: 26, Neg. LLF: 85.50382785619644
Iteration: 3, Func. Count: 37, Neg. LLF: 82.02679543206784
Iteration: 4, Func. Count: 47, Neg. LLF: 82.54354349288171
Iteration: 5, Func. Count: 58, Neg. LLF: 81.19751798789252
Iteration: 6, Func. Count: 68, Neg. LLF: 81.21739633633959
Iteration: 7, Func. Count: 79, Neg. LLF: 81.15958251594563
Iteration: 8, Func. Count: 89, Neg. LLF: 81.1411655592617
Iteration: 9, Func. Count: 99, Neg. LLF: 81.13924765860443
Iteration: 10, Func. Count: 109, Neg. LLF: 81.13786163165037
Iteration: 11, Func. Count: 119, Neg. LLF: 81.13718815978245
Iteration: 12, Func. Count: 129, Neg. LLF: 81.13714691254688
Iteration: 13, Func. Count: 139, Neg. LLF: 81.13713091387434
Iteration: 14, Func. Count: 149, Neg. LLF: 81.1377172418401
Optimization terminated successfully (Exit mode 0)
Current function value: 81.13713086742186
Iterations: 15
Function evaluations: 151
Gradient evaluations: 14
Iteration: 1, Func. Count: 8, Neg. LLF: 117.82709065326783
Iteration: 2, Func. Count: 18, Neg. LLF: 90.8315847113082
Iteration: 3, Func. Count: 26, Neg. LLF: 101.38148818398103
Iteration: 4, Func. Count: 34, Neg. LLF: 83.71545296719131
Iteration: 5, Func. Count: 42, Neg. LLF: 103.02174275788515
Iteration: 6, Func. Count: 50, Neg. LLF: 82.8520087544985
Iteration: 7, Func. Count: 57, Neg. LLF: 82.84515904144374
Iteration: 8, Func. Count: 64, Neg. LLF: 82.84482570489106
Iteration: 9, Func. Count: 71, Neg. LLF: 82.84480238575996
Iteration: 10, Func. Count: 78, Neg. LLF: 82.84480116959372
Iteration: 11, Func. Count: 84, Neg. LLF: 82.84480116959324
Optimization terminated successfully (Exit mode 0)
Current function value: 82.84480116959372
Iterations: 11
Function evaluations: 84
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 182.95805191758762
Iteration: 2, Func. Count: 21, Neg. LLF: 83.32967795767478
Iteration: 3, Func. Count: 30, Neg. LLF: 82.41843977637689
Iteration: 4, Func. Count: 38, Neg. LLF: 111.15504413952905
Iteration: 5, Func. Count: 48, Neg. LLF: 82.27405136999778
Iteration: 6, Func. Count: 56, Neg. LLF: 82.27098093526769
Iteration: 7, Func. Count: 64, Neg. LLF: 82.26882909489277
Iteration: 8, Func. Count: 72, Neg. LLF: 82.26729784602178
Iteration: 9, Func. Count: 80, Neg. LLF: 82.26719476755396
Iteration: 10, Func. Count: 88, Neg. LLF: 82.26718935549813
Iteration: 11, Func. Count: 95, Neg. LLF: 82.2671894683991
Optimization terminated successfully (Exit mode 0)
Current function value: 82.26718935549813
Iterations: 11
Function evaluations: 95
Gradient evaluations: 11
Iteration: 1, Func. Count: 10, Neg. LLF: 177.11514798609332
Iteration: 2, Func. Count: 24, Neg. LLF: 83.48955067137001
Iteration: 3, Func. Count: 34, Neg. LLF: 82.41958109962286
Iteration: 4, Func. Count: 43, Neg. LLF: 82.78007503496093
Iteration: 5, Func. Count: 53, Neg. LLF: 82.32912082303535
Iteration: 6, Func. Count: 63, Neg. LLF: 82.27719690354765
Iteration: 7, Func. Count: 72, Neg. LLF: 82.27698955915524
Iteration: 8, Func. Count: 81, Neg. LLF: 82.27661134944626
Iteration: 9, Func. Count: 90, Neg. LLF: 82.27290193464944
Iteration: 10, Func. Count: 99, Neg. LLF: 82.26883374454783
Iteration: 11, Func. Count: 108, Neg. LLF: 82.2682074428159
Iteration: 12, Func. Count: 117, Neg. LLF: 82.26719108562797
Iteration: 13, Func. Count: 126, Neg. LLF: 82.26718934435081
Iteration: 14, Func. Count: 134, Neg. LLF: 82.26718923230956
Optimization terminated successfully (Exit mode 0)
Current function value: 82.26718934435081
Iterations: 14
Function evaluations: 134
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 173.32467277558547
Iteration: 2, Func. Count: 26, Neg. LLF: 82.62528094781038
Iteration: 3, Func. Count: 36, Neg. LLF: 82.4369394088765
Iteration: 4, Func. Count: 46, Neg. LLF: 92.42554559734518
Iteration: 5, Func. Count: 58, Neg. LLF: 82.66524156229809
Iteration: 6, Func. Count: 69, Neg. LLF: 82.20615247253221
Iteration: 7, Func. Count: 79, Neg. LLF: 82.20567042321417
Iteration: 8, Func. Count: 89, Neg. LLF: 82.20563038514425
Iteration: 9, Func. Count: 99, Neg. LLF: 82.20562871695782
Iteration: 10, Func. Count: 108, Neg. LLF: 82.20562867091886
Optimization terminated successfully (Exit mode 0)
Current function value: 82.20562871695782
Iterations: 10
Function evaluations: 108
Gradient evaluations: 10
Iteration: 1, Func. Count: 12, Neg. LLF: 160.37961508452966
Iteration: 2, Func. Count: 27, Neg. LLF: 85.41477834259491
Iteration: 3, Func. Count: 39, Neg. LLF: 82.39236433669531
Iteration: 4, Func. Count: 50, Neg. LLF: 83.34796837712844
Iteration: 5, Func. Count: 62, Neg. LLF: 100.08427832573096
Iteration: 6, Func. Count: 74, Neg. LLF: 121.75076482547243
Iteration: 7, Func. Count: 86, Neg. LLF: 81.65989154750294
Iteration: 8, Func. Count: 97, Neg. LLF: 81.17887397720918
Iteration: 9, Func. Count: 108, Neg. LLF: 81.12638102188514
Iteration: 10, Func. Count: 119, Neg. LLF: 81.11453309425846
Iteration: 11, Func. Count: 130, Neg. LLF: 81.10837500041889
Iteration: 12, Func. Count: 141, Neg. LLF: 81.10432596188757
Iteration: 13, Func. Count: 152, Neg. LLF: 81.1042556125604
Iteration: 14, Func. Count: 163, Neg. LLF: 81.10424558242245
Iteration: 15, Func. Count: 174, Neg. LLF: 81.10423925357077
Iteration: 16, Func. Count: 185, Neg. LLF: 81.104236083181
Iteration: 17, Func. Count: 195, Neg. LLF: 81.10423601286959
Optimization terminated successfully (Exit mode 0)
Current function value: 81.104236083181
Iterations: 17
Function evaluations: 195
Gradient evaluations: 17
Iteration: 1, Func. Count: 9, Neg. LLF: 113.21981907026144
Iteration: 2, Func. Count: 20, Neg. LLF: 95.38019233169373
Iteration: 3, Func. Count: 29, Neg. LLF: 102.23159761084989
Iteration: 4, Func. Count: 38, Neg. LLF: 83.02799580683002
Iteration: 5, Func. Count: 46, Neg. LLF: 83.28608289951887
Iteration: 6, Func. Count: 55, Neg. LLF: 83.77362445366845
Iteration: 7, Func. Count: 64, Neg. LLF: 82.81219187824871
Iteration: 8, Func. Count: 72, Neg. LLF: 84.00326534543696
Iteration: 9, Func. Count: 81, Neg. LLF: 82.77330910426983
Iteration: 10, Func. Count: 89, Neg. LLF: 82.7728805893699
Iteration: 11, Func. Count: 97, Neg. LLF: 82.77284740066482
Iteration: 12, Func. Count: 105, Neg. LLF: 82.77284643571122
Optimization terminated successfully (Exit mode 0)
Current function value: 82.77284643571122
Iterations: 12
Function evaluations: 105
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 183.27064899809707
Iteration: 2, Func. Count: 23, Neg. LLF: 83.48211160199995
Iteration: 3, Func. Count: 33, Neg. LLF: 82.4059553342792
Iteration: 4, Func. Count: 42, Neg. LLF: 2785.5557583022883
Iteration: 5, Func. Count: 53, Neg. LLF: 82.27623329829005
Iteration: 6, Func. Count: 62, Neg. LLF: 82.2680881146689
Iteration: 7, Func. Count: 71, Neg. LLF: 82.26719588550587
Iteration: 8, Func. Count: 80, Neg. LLF: 82.26718934380419
Iteration: 9, Func. Count: 88, Neg. LLF: 82.26718945658617
Optimization terminated successfully (Exit mode 0)
Current function value: 82.26718934380419
Iterations: 9
Function evaluations: 88
Gradient evaluations: 9
Iteration: 1, Func. Count: 11, Neg. LLF: 162.82204190578966
Iteration: 2, Func. Count: 26, Neg. LLF: 83.67211290691976
Iteration: 3, Func. Count: 37, Neg. LLF: 82.39954322050218
Iteration: 4, Func. Count: 47, Neg. LLF: 82.58217335268091
Iteration: 5, Func. Count: 58, Neg. LLF: 82.28773968908502
Iteration: 6, Func. Count: 68, Neg. LLF: 82.27915287784518
Iteration: 7, Func. Count: 78, Neg. LLF: 82.27798225574705
Iteration: 8, Func. Count: 88, Neg. LLF: 82.27769388474569
Iteration: 9, Func. Count: 98, Neg. LLF: 82.27725060131688
Iteration: 10, Func. Count: 108, Neg. LLF: 82.27449154038747
Iteration: 11, Func. Count: 118, Neg. LLF: 82.27112762304789
Iteration: 12, Func. Count: 128, Neg. LLF: 82.2694347472304
Iteration: 13, Func. Count: 138, Neg. LLF: 82.26719250397889
Iteration: 14, Func. Count: 148, Neg. LLF: 82.2671893436838
Iteration: 15, Func. Count: 157, Neg. LLF: 82.26718923139056
Optimization terminated successfully (Exit mode 0)
Current function value: 82.2671893436838
Iterations: 15
Function evaluations: 157
Gradient evaluations: 15
Iteration: 1, Func. Count: 12, Neg. LLF: 152.12182742818104
Iteration: 2, Func. Count: 28, Neg. LLF: 82.4108566340252
Iteration: 3, Func. Count: 39, Neg. LLF: 82.58077066043295
Iteration: 4, Func. Count: 51, Neg. LLF: 86.43113339612644
Iteration: 5, Func. Count: 63, Neg. LLF: 82.89498406786947
Iteration: 6, Func. Count: 75, Neg. LLF: 82.18613387746001
Iteration: 7, Func. Count: 86, Neg. LLF: 82.18255556875052
Iteration: 8, Func. Count: 97, Neg. LLF: 82.18332725479995
Iteration: 9, Func. Count: 109, Neg. LLF: 82.17964611382722
Iteration: 10, Func. Count: 120, Neg. LLF: 82.1795873659033
Iteration: 11, Func. Count: 130, Neg. LLF: 82.17958733780075
Optimization terminated successfully (Exit mode 0)
Current function value: 82.1795873659033
Iterations: 11
Function evaluations: 130
Gradient evaluations: 11
Iteration: 1, Func. Count: 13, Neg. LLF: 157.96092684580435
Iteration: 2, Func. Count: 29, Neg. LLF: 83.04805697534283
Iteration: 3, Func. Count: 42, Neg. LLF: 82.45852198496868
Iteration: 4, Func. Count: 54, Neg. LLF: 86.85713822261657
Iteration: 5, Func. Count: 67, Neg. LLF: 1509.752149539873
Iteration: 6, Func. Count: 81, Neg. LLF: 82.18348565563332
Iteration: 7, Func. Count: 94, Neg. LLF: 82.03983136928912
Iteration: 8, Func. Count: 106, Neg. LLF: 82.16196119101335
Iteration: 9, Func. Count: 119, Neg. LLF: 82.0211684168418
Iteration: 10, Func. Count: 131, Neg. LLF: 82.01196111802612
Iteration: 11, Func. Count: 143, Neg. LLF: 82.00854568774619
Iteration: 12, Func. Count: 155, Neg. LLF: 82.00787961973256
Iteration: 13, Func. Count: 167, Neg. LLF: 82.0075282312459
Iteration: 14, Func. Count: 179, Neg. LLF: 82.00751480723439
Iteration: 15, Func. Count: 190, Neg. LLF: 82.00751478224032
Optimization terminated successfully (Exit mode 0)
Current function value: 82.00751480723439
Iterations: 15
Function evaluations: 190
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 113.60207365214727
Iteration: 2, Func. Count: 22, Neg. LLF: 96.44360886052085
Iteration: 3, Func. Count: 32, Neg. LLF: 5399619.619065747
Iteration: 4, Func. Count: 42, Neg. LLF: 5813447.2436439665
Iteration: 5, Func. Count: 52, Neg. LLF: 182.1457619108094
Iteration: 6, Func. Count: 62, Neg. LLF: 82.93269439200111
Iteration: 7, Func. Count: 72, Neg. LLF: 81.7582663812771
Iteration: 8, Func. Count: 81, Neg. LLF: 81.79689148150928
Iteration: 9, Func. Count: 91, Neg. LLF: 81.78904739202261
Iteration: 10, Func. Count: 101, Neg. LLF: 81.83543739992287
Iteration: 11, Func. Count: 111, Neg. LLF: 81.7429415296367
Iteration: 12, Func. Count: 121, Neg. LLF: 81.73602417952296
Iteration: 13, Func. Count: 130, Neg. LLF: 81.73527815539273
Iteration: 14, Func. Count: 139, Neg. LLF: 81.73485196512199
Iteration: 15, Func. Count: 148, Neg. LLF: 81.7347397705494
Iteration: 16, Func. Count: 156, Neg. LLF: 81.73473960447728
Optimization terminated successfully (Exit mode 0)
Current function value: 81.7347397705494
Iterations: 16
Function evaluations: 156
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 183.62388515749754
Iteration: 2, Func. Count: 25, Neg. LLF: 83.46621134949527
Iteration: 3, Func. Count: 36, Neg. LLF: 82.39248128491104
Iteration: 4, Func. Count: 46, Neg. LLF: 453.75463972847547
Iteration: 5, Func. Count: 58, Neg. LLF: 82.2827090873318
Iteration: 6, Func. Count: 68, Neg. LLF: 82.26753130349009
Iteration: 7, Func. Count: 78, Neg. LLF: 82.26719278869075
Iteration: 8, Func. Count: 88, Neg. LLF: 82.2671893504719
Iteration: 9, Func. Count: 97, Neg. LLF: 82.26718946333814
Optimization terminated successfully (Exit mode 0)
Current function value: 82.2671893504719
Iterations: 9
Function evaluations: 97
Gradient evaluations: 9
Iteration: 1, Func. Count: 12, Neg. LLF: 159.19522195154394
Iteration: 2, Func. Count: 28, Neg. LLF: 83.73007502892327
Iteration: 3, Func. Count: 40, Neg. LLF: 82.38827199365699
Iteration: 4, Func. Count: 51, Neg. LLF: 82.58734860049576
Iteration: 5, Func. Count: 63, Neg. LLF: 82.27957765584482
Iteration: 6, Func. Count: 74, Neg. LLF: 82.27833990651048
Iteration: 7, Func. Count: 85, Neg. LLF: 82.27803492102585
Iteration: 8, Func. Count: 96, Neg. LLF: 82.27741776664399
Iteration: 9, Func. Count: 107, Neg. LLF: 82.27594683696546
Iteration: 10, Func. Count: 118, Neg. LLF: 82.27113805329157
Iteration: 11, Func. Count: 129, Neg. LLF: 82.26891880745545
Iteration: 12, Func. Count: 140, Neg. LLF: 82.26719239232082
Iteration: 13, Func. Count: 151, Neg. LLF: 82.2671893451234
Iteration: 14, Func. Count: 161, Neg. LLF: 82.26718923290416
Optimization terminated successfully (Exit mode 0)
Current function value: 82.2671893451234
Iterations: 14
Function evaluations: 161
Gradient evaluations: 14
Iteration: 1, Func. Count: 13, Neg. LLF: 122.22417145978996
Iteration: 2, Func. Count: 31, Neg. LLF: 88.39528044117559
Iteration: 3, Func. Count: 44, Neg. LLF: 82.22632780302973
Iteration: 4, Func. Count: 56, Neg. LLF: 82.69578246644112
Iteration: 5, Func. Count: 69, Neg. LLF: 82.203022052247
Iteration: 6, Func. Count: 82, Neg. LLF: 82.1796439178172
Iteration: 7, Func. Count: 94, Neg. LLF: 82.17958766933343
Iteration: 8, Func. Count: 105, Neg. LLF: 82.17958764153151
Optimization terminated successfully (Exit mode 0)
Current function value: 82.17958766933343
Iterations: 8
Function evaluations: 105
Gradient evaluations: 8
Iteration: 1, Func. Count: 14, Neg. LLF: 122.31868568741872
Iteration: 2, Func. Count: 33, Neg. LLF: 86.78457685341748
Iteration: 3, Func. Count: 47, Neg. LLF: 83.42457067974313
Iteration: 4, Func. Count: 61, Neg. LLF: 82.03627069752501
Iteration: 5, Func. Count: 74, Neg. LLF: 83.91292406631872
Iteration: 6, Func. Count: 88, Neg. LLF: 82.02840116366983
Iteration: 7, Func. Count: 102, Neg. LLF: 81.69261504772491
Iteration: 8, Func. Count: 115, Neg. LLF: 81.25283861031143
Iteration: 9, Func. Count: 128, Neg. LLF: 81.13403958931913
Iteration: 10, Func. Count: 141, Neg. LLF: 81.12143595929732
Iteration: 11, Func. Count: 154, Neg. LLF: 81.11253087230999
Iteration: 12, Func. Count: 167, Neg. LLF: 81.10705529185904
Iteration: 13, Func. Count: 180, Neg. LLF: 81.10485174205024
Iteration: 14, Func. Count: 193, Neg. LLF: 81.10453842917529
Iteration: 15, Func. Count: 206, Neg. LLF: 81.10444185498098
Iteration: 16, Func. Count: 219, Neg. LLF: 81.10428896337176
Iteration: 17, Func. Count: 232, Neg. LLF: 81.10425423893108
Iteration: 18, Func. Count: 245, Neg. LLF: 81.10423909872863
Iteration: 19, Func. Count: 258, Neg. LLF: 81.10423338093916
Iteration: 20, Func. Count: 271, Neg. LLF: 81.10423065881125
Optimization terminated successfully (Exit mode 0)
Current function value: 81.10423337825146
Iterations: 20
Function evaluations: 281
Gradient evaluations: 20
Iteration: 1, Func. Count: 11, Neg. LLF: 114.62301593663375
Iteration: 2, Func. Count: 24, Neg. LLF: 87.2852866046892
Iteration: 3, Func. Count: 35, Neg. LLF: 850512.4437872188
Iteration: 4, Func. Count: 46, Neg. LLF: 4451744.109679598
Iteration: 5, Func. Count: 57, Neg. LLF: 104.51686529583719
Iteration: 6, Func. Count: 68, Neg. LLF: 82.12709928656493
Iteration: 7, Func. Count: 78, Neg. LLF: 81.73582317699027
Iteration: 8, Func. Count: 88, Neg. LLF: 81.97177951723793
Iteration: 9, Func. Count: 99, Neg. LLF: 81.74427498822912
Iteration: 10, Func. Count: 110, Neg. LLF: 81.75077506948593
Iteration: 11, Func. Count: 121, Neg. LLF: 81.7026288252451
Iteration: 12, Func. Count: 131, Neg. LLF: 81.70113783919795
Iteration: 13, Func. Count: 141, Neg. LLF: 81.70020247070384
Iteration: 14, Func. Count: 151, Neg. LLF: 81.70010029979291
Iteration: 15, Func. Count: 161, Neg. LLF: 81.7000757115112
Iteration: 16, Func. Count: 171, Neg. LLF: 81.7000748296798
Optimization terminated successfully (Exit mode 0)
Current function value: 81.7000748296798
Iterations: 16
Function evaluations: 171
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 134.55421216553452
Iteration: 2, Func. Count: 27, Neg. LLF: 91.56945089990539
Iteration: 3, Func. Count: 40, Neg. LLF: 82.49811561287405
Iteration: 4, Func. Count: 51, Neg. LLF: 85.1817323518794
Iteration: 5, Func. Count: 63, Neg. LLF: 82.26934393168388
Iteration: 6, Func. Count: 74, Neg. LLF: 82.26723094928961
Iteration: 7, Func. Count: 85, Neg. LLF: 82.26718940459334
Iteration: 8, Func. Count: 95, Neg. LLF: 82.26718951675709
Optimization terminated successfully (Exit mode 0)
Current function value: 82.26718940459334
Iterations: 8
Function evaluations: 95
Gradient evaluations: 8
Iteration: 1, Func. Count: 13, Neg. LLF: 158.49314515331335
Iteration: 2, Func. Count: 30, Neg. LLF: 83.67296493561274
Iteration: 3, Func. Count: 43, Neg. LLF: 82.39212932246144
Iteration: 4, Func. Count: 55, Neg. LLF: 82.63892132192677
Iteration: 5, Func. Count: 68, Neg. LLF: 82.27949894442015
Iteration: 6, Func. Count: 80, Neg. LLF: 82.27825891496956
Iteration: 7, Func. Count: 92, Neg. LLF: 82.2779766359651
Iteration: 8, Func. Count: 104, Neg. LLF: 82.27748718365491
Iteration: 9, Func. Count: 116, Neg. LLF: 82.27624826928782
Iteration: 10, Func. Count: 128, Neg. LLF: 82.27175737870364
Iteration: 11, Func. Count: 140, Neg. LLF: 82.26773619668906
Iteration: 12, Func. Count: 152, Neg. LLF: 82.2671906605894
Iteration: 13, Func. Count: 164, Neg. LLF: 82.26718934329888
Iteration: 14, Func. Count: 175, Neg. LLF: 82.2671892311709
Optimization terminated successfully (Exit mode 0)
Current function value: 82.26718934329888
Iterations: 14
Function evaluations: 175
Gradient evaluations: 14
Iteration: 1, Func. Count: 14, Neg. LLF: 122.17275222907939
Iteration: 2, Func. Count: 33, Neg. LLF: 88.31748298724004
Iteration: 3, Func. Count: 47, Neg. LLF: 82.21670059201047
Iteration: 4, Func. Count: 60, Neg. LLF: 82.91771812257974
Iteration: 5, Func. Count: 74, Neg. LLF: 82.19818468930484
Iteration: 6, Func. Count: 88, Neg. LLF: 82.17964773932424
Iteration: 7, Func. Count: 101, Neg. LLF: 82.17958799169877
Iteration: 8, Func. Count: 114, Neg. LLF: 82.17958734430243
Optimization terminated successfully (Exit mode 0)
Current function value: 82.17958734430243
Iterations: 8
Function evaluations: 114
Gradient evaluations: 8
Iteration: 1, Func. Count: 15, Neg. LLF: 122.24235320764282
Iteration: 2, Func. Count: 35, Neg. LLF: 86.80042610243576
Iteration: 3, Func. Count: 50, Neg. LLF: 83.35094307851278
Iteration: 4, Func. Count: 65, Neg. LLF: 82.03461534031261
Iteration: 5, Func. Count: 79, Neg. LLF: 83.87123365208457
Iteration: 6, Func. Count: 94, Neg. LLF: 82.02962802767827
Iteration: 7, Func. Count: 109, Neg. LLF: 81.6692870949184
Iteration: 8, Func. Count: 123, Neg. LLF: 81.25188876575172
Iteration: 9, Func. Count: 137, Neg. LLF: 81.1339589476334
Iteration: 10, Func. Count: 151, Neg. LLF: 81.12173707835045
Iteration: 11, Func. Count: 165, Neg. LLF: 81.11241090098048
Iteration: 12, Func. Count: 179, Neg. LLF: 81.10690359067769
Iteration: 13, Func. Count: 193, Neg. LLF: 81.10487532642598
Iteration: 14, Func. Count: 207, Neg. LLF: 81.10456117740972
Iteration: 15, Func. Count: 221, Neg. LLF: 81.10450580307186
Iteration: 16, Func. Count: 235, Neg. LLF: 81.10428677090876
Iteration: 17, Func. Count: 249, Neg. LLF: 81.10426088174256
Iteration: 18, Func. Count: 263, Neg. LLF: 81.10424327791934
Iteration: 19, Func. Count: 277, Neg. LLF: 81.1042415423644
Iteration: 20, Func. Count: 291, Neg. LLF: 81.10420958503823
Iteration: 21, Func. Count: 305, Neg. LLF: 81.10425356623125
Iteration: 22, Func. Count: 321, Neg. LLF: 81.10423572394679
Iteration: 23, Func. Count: 336, Neg. LLF: 81.1042357246834
Iteration: 24, Func. Count: 351, Neg. LLF: 81.1042357243363
Iteration: 25, Func. Count: 366, Neg. LLF: 81.1042357230398
Iteration: 26, Func. Count: 379, Neg. LLF: 81.10423565258337
Optimization terminated successfully (Exit mode 0)
Current function value: 81.1042357230398
Iterations: 27
Function evaluations: 379
Gradient evaluations: 26
Iteration: 1, Func. Count: 8, Neg. LLF: 123.488062619654
Iteration: 2, Func. Count: 18, Neg. LLF: 120.72726359609374
Iteration: 3, Func. Count: 27, Neg. LLF: 105.25789638414031
Iteration: 4, Func. Count: 35, Neg. LLF: 106.47943858937367
Iteration: 5, Func. Count: 43, Neg. LLF: 101.8366337850856
Iteration: 6, Func. Count: 51, Neg. LLF: 100.4748539295928
Iteration: 7, Func. Count: 59, Neg. LLF: 84.75450687812597
Iteration: 8, Func. Count: 67, Neg. LLF: 90.40265610082952
Iteration: 9, Func. Count: 75, Neg. LLF: 82.22141670292174
Iteration: 10, Func. Count: 82, Neg. LLF: 82.1966544730373
Iteration: 11, Func. Count: 89, Neg. LLF: 82.19054783322262
Iteration: 12, Func. Count: 96, Neg. LLF: 82.19040578220628
Iteration: 13, Func. Count: 103, Neg. LLF: 82.19035161172897
Iteration: 14, Func. Count: 110, Neg. LLF: 82.19035007028597
Iteration: 15, Func. Count: 117, Neg. LLF: 82.1903494350687
Optimization terminated successfully (Exit mode 0)
Current function value: 82.1903494350687
Iterations: 15
Function evaluations: 117
Gradient evaluations: 15
Iteration: 1, Func. Count: 9, Neg. LLF: 185.3224047526116
Iteration: 2, Func. Count: 21, Neg. LLF: 84.02954778116181
Iteration: 3, Func. Count: 30, Neg. LLF: 82.35710020140762
Iteration: 4, Func. Count: 38, Neg. LLF: 95.02043622453454
Iteration: 5, Func. Count: 47, Neg. LLF: 82.28364686198056
Iteration: 6, Func. Count: 55, Neg. LLF: 82.26719721679976
Iteration: 7, Func. Count: 63, Neg. LLF: 82.26718934066595
Iteration: 8, Func. Count: 70, Neg. LLF: 82.26718945339891
Optimization terminated successfully (Exit mode 0)
Current function value: 82.26718934066595
Iterations: 8
Function evaluations: 70
Gradient evaluations: 8
Iteration: 1, Func. Count: 10, Neg. LLF: 182.58060950198708
Iteration: 2, Func. Count: 24, Neg. LLF: 84.04964511307564
Iteration: 3, Func. Count: 34, Neg. LLF: 82.39593912668117
Iteration: 4, Func. Count: 43, Neg. LLF: 82.46700417536525
Iteration: 5, Func. Count: 53, Neg. LLF: 82.27896715512607
Iteration: 6, Func. Count: 62, Neg. LLF: 82.27884705824798
Iteration: 7, Func. Count: 71, Neg. LLF: 82.27869710432147
Iteration: 8, Func. Count: 80, Neg. LLF: 82.27798219156243
Iteration: 9, Func. Count: 89, Neg. LLF: 82.2770881133494
Iteration: 10, Func. Count: 98, Neg. LLF: 82.26960385071929
Iteration: 11, Func. Count: 107, Neg. LLF: 82.26880321058728
Iteration: 12, Func. Count: 116, Neg. LLF: 82.26718947664392
Iteration: 13, Func. Count: 124, Neg. LLF: 82.26718936467567
Optimization terminated successfully (Exit mode 0)
Current function value: 82.26718947664392
Iterations: 13
Function evaluations: 124
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 177.33839543779658
Iteration: 2, Func. Count: 26, Neg. LLF: 83.8961639904243
Iteration: 3, Func. Count: 37, Neg. LLF: 82.2948953418545
Iteration: 4, Func. Count: 47, Neg. LLF: 82.33496421800992
Iteration: 5, Func. Count: 58, Neg. LLF: 82.28248461957912
Iteration: 6, Func. Count: 68, Neg. LLF: 82.28101416777685
Iteration: 7, Func. Count: 78, Neg. LLF: 82.27959959915472
Iteration: 8, Func. Count: 88, Neg. LLF: 82.27858233617309
Iteration: 9, Func. Count: 99, Neg. LLF: 82.26775144812011
Iteration: 10, Func. Count: 109, Neg. LLF: 82.2646912520556
Iteration: 11, Func. Count: 119, Neg. LLF: 82.25832828081705
Iteration: 12, Func. Count: 129, Neg. LLF: 82.23391502210973
Iteration: 13, Func. Count: 139, Neg. LLF: 82.20937728174789
Iteration: 14, Func. Count: 149, Neg. LLF: 82.20633348284701
Iteration: 15, Func. Count: 159, Neg. LLF: 82.2056894997503
Iteration: 16, Func. Count: 169, Neg. LLF: 82.20563758188328
Iteration: 17, Func. Count: 179, Neg. LLF: 82.20562912001428
Iteration: 18, Func. Count: 188, Neg. LLF: 82.20562907454683
Optimization terminated successfully (Exit mode 0)
Current function value: 82.20562912001428
Iterations: 18
Function evaluations: 188
Gradient evaluations: 18
Iteration: 1, Func. Count: 12, Neg. LLF: 139.9473939185944
Iteration: 2, Func. Count: 28, Neg. LLF: 101.44705241011975
Iteration: 3, Func. Count: 41, Neg. LLF: 82.08767453885461
Iteration: 4, Func. Count: 52, Neg. LLF: 81.20765493733155
Iteration: 5, Func. Count: 63, Neg. LLF: 93.44364150404998
Iteration: 6, Func. Count: 76, Neg. LLF: 81.13938270098963
Iteration: 7, Func. Count: 87, Neg. LLF: 81.16357184978254
Iteration: 8, Func. Count: 99, Neg. LLF: 81.13488604981386
Iteration: 9, Func. Count: 110, Neg. LLF: 81.13481852018295
Iteration: 10, Func. Count: 121, Neg. LLF: 81.13474799123568
Iteration: 11, Func. Count: 132, Neg. LLF: 81.13466730497396
Iteration: 12, Func. Count: 143, Neg. LLF: 81.13463823499985
Iteration: 13, Func. Count: 154, Neg. LLF: 81.1346331455579
Iteration: 14, Func. Count: 165, Neg. LLF: 81.13463349921035
Optimization terminated successfully (Exit mode 0)
Current function value: 81.13463349921035
Iterations: 14
Function evaluations: 165
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 130.4031838743148
Iteration: 2, Func. Count: 20, Neg. LLF: 139.06917308210592
Iteration: 3, Func. Count: 29, Neg. LLF: 127.35640533681661
Iteration: 4, Func. Count: 38, Neg. LLF: 99.05538396097046
Iteration: 5, Func. Count: 47, Neg. LLF: 223.3319232333084
Iteration: 6, Func. Count: 56, Neg. LLF: 82.75294112336533
Iteration: 7, Func. Count: 65, Neg. LLF: 83.49111280014088
Iteration: 8, Func. Count: 74, Neg. LLF: 82.13741132377862
Iteration: 9, Func. Count: 82, Neg. LLF: 82.13558396435438
Iteration: 10, Func. Count: 90, Neg. LLF: 82.13549836105288
Iteration: 11, Func. Count: 98, Neg. LLF: 82.13537421725354
Iteration: 12, Func. Count: 106, Neg. LLF: 82.13537084721884
Iteration: 13, Func. Count: 114, Neg. LLF: 82.13536840005497
Iteration: 14, Func. Count: 121, Neg. LLF: 82.13536840005013
Optimization terminated successfully (Exit mode 0)
Current function value: 82.13536840005497
Iterations: 14
Function evaluations: 121
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 183.2620381565251
Iteration: 2, Func. Count: 23, Neg. LLF: 83.2970484100475
Iteration: 3, Func. Count: 33, Neg. LLF: 82.40852299523925
Iteration: 4, Func. Count: 42, Neg. LLF: 106.39392586153826
Iteration: 5, Func. Count: 53, Neg. LLF: 82.28197648576217
Iteration: 6, Func. Count: 62, Neg. LLF: 82.26771082910103
Iteration: 7, Func. Count: 71, Neg. LLF: 82.26720159284
Iteration: 8, Func. Count: 80, Neg. LLF: 82.26718934211209
Iteration: 9, Func. Count: 88, Neg. LLF: 82.26718945488054
Optimization terminated successfully (Exit mode 0)
Current function value: 82.26718934211209
Iterations: 9
Function evaluations: 88
Gradient evaluations: 9
Iteration: 1, Func. Count: 11, Neg. LLF: 177.42019308490802
Iteration: 2, Func. Count: 26, Neg. LLF: 83.36081580840506
Iteration: 3, Func. Count: 37, Neg. LLF: 82.4121342390543
Iteration: 4, Func. Count: 47, Neg. LLF: 82.85144658478424
Iteration: 5, Func. Count: 58, Neg. LLF: 82.31431154437412
Iteration: 6, Func. Count: 69, Neg. LLF: 82.27705430533393
Iteration: 7, Func. Count: 79, Neg. LLF: 82.27683898378277
Iteration: 8, Func. Count: 89, Neg. LLF: 82.2758346377244
Iteration: 9, Func. Count: 99, Neg. LLF: 82.27026986525642
Iteration: 10, Func. Count: 109, Neg. LLF: 82.26813663317834
Iteration: 11, Func. Count: 119, Neg. LLF: 82.26720195366161
Iteration: 12, Func. Count: 129, Neg. LLF: 82.26718933888182
Iteration: 13, Func. Count: 138, Neg. LLF: 82.26718922672751
Optimization terminated successfully (Exit mode 0)
Current function value: 82.26718933888182
Iterations: 13
Function evaluations: 138
Gradient evaluations: 13
Iteration: 1, Func. Count: 12, Neg. LLF: 173.4270358080975
Iteration: 2, Func. Count: 28, Neg. LLF: 82.69747918640294
Iteration: 3, Func. Count: 40, Neg. LLF: 82.335487028486
Iteration: 4, Func. Count: 51, Neg. LLF: 82.49865569733294
Iteration: 5, Func. Count: 63, Neg. LLF: 82.33779420279055
Iteration: 6, Func. Count: 75, Neg. LLF: 82.20621291098557
Iteration: 7, Func. Count: 86, Neg. LLF: 82.2056436525252
Iteration: 8, Func. Count: 97, Neg. LLF: 82.20562891074994
Iteration: 9, Func. Count: 107, Neg. LLF: 82.2056288647796
Optimization terminated successfully (Exit mode 0)
Current function value: 82.20562891074994
Iterations: 9
Function evaluations: 107
Gradient evaluations: 9
Iteration: 1, Func. Count: 13, Neg. LLF: 160.27803760638128
Iteration: 2, Func. Count: 29, Neg. LLF: 85.73109031599837
Iteration: 3, Func. Count: 42, Neg. LLF: 82.38909832127614
Iteration: 4, Func. Count: 54, Neg. LLF: 83.31273932718045
Iteration: 5, Func. Count: 67, Neg. LLF: 98.04495745674521
Iteration: 6, Func. Count: 80, Neg. LLF: 99.92589578522605
Iteration: 7, Func. Count: 93, Neg. LLF: 81.66340359722372
Iteration: 8, Func. Count: 105, Neg. LLF: 83.96835263155378
Iteration: 9, Func. Count: 118, Neg. LLF: 82.25300168827772
Iteration: 10, Func. Count: 131, Neg. LLF: 81.14109104586336
Iteration: 11, Func. Count: 143, Neg. LLF: 81.12377258585445
Iteration: 12, Func. Count: 155, Neg. LLF: 81.11547316232705
Iteration: 13, Func. Count: 167, Neg. LLF: 81.10446502563833
Iteration: 14, Func. Count: 179, Neg. LLF: 81.10424853859077
Iteration: 15, Func. Count: 191, Neg. LLF: 81.10423573400006
Iteration: 16, Func. Count: 202, Neg. LLF: 81.10423566352607
Optimization terminated successfully (Exit mode 0)
Current function value: 81.10423573400006
Iterations: 16
Function evaluations: 202
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 120.8190864745275
Iteration: 2, Func. Count: 22, Neg. LLF: 116.06352414858597
Iteration: 3, Func. Count: 32, Neg. LLF: 120.65544152066825
Iteration: 4, Func. Count: 42, Neg. LLF: 254.87180212960183
Iteration: 5, Func. Count: 52, Neg. LLF: 100.12522425567113
Iteration: 6, Func. Count: 62, Neg. LLF: 82.2645146032875
Iteration: 7, Func. Count: 71, Neg. LLF: 82.17168519513136
Iteration: 8, Func. Count: 80, Neg. LLF: 82.20166684558667
Iteration: 9, Func. Count: 90, Neg. LLF: 82.13612981858998
Iteration: 10, Func. Count: 99, Neg. LLF: 82.13547237061253
Iteration: 11, Func. Count: 108, Neg. LLF: 82.13538982583462
Iteration: 12, Func. Count: 117, Neg. LLF: 82.13537347735902
Iteration: 13, Func. Count: 126, Neg. LLF: 82.13536880369453
Iteration: 14, Func. Count: 134, Neg. LLF: 82.13536882552782
Optimization terminated successfully (Exit mode 0)
Current function value: 82.13536880369453
Iterations: 14
Function evaluations: 134
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 183.59377846034673
Iteration: 2, Func. Count: 25, Neg. LLF: 83.44751694750842
Iteration: 3, Func. Count: 36, Neg. LLF: 82.39444625872567
Iteration: 4, Func. Count: 46, Neg. LLF: 500.26622018543634
Iteration: 5, Func. Count: 58, Neg. LLF: 82.28298441902211
Iteration: 6, Func. Count: 68, Neg. LLF: 82.26754585904204
Iteration: 7, Func. Count: 78, Neg. LLF: 82.26719289894582
Iteration: 8, Func. Count: 88, Neg. LLF: 82.2671893510689
Iteration: 9, Func. Count: 97, Neg. LLF: 82.26718946394337
Optimization terminated successfully (Exit mode 0)
Current function value: 82.2671893510689
Iterations: 9
Function evaluations: 97
Gradient evaluations: 9
Iteration: 1, Func. Count: 12, Neg. LLF: 166.0056807546328
Iteration: 2, Func. Count: 28, Neg. LLF: 83.53508993688983
Iteration: 3, Func. Count: 40, Neg. LLF: 82.39506296074101
Iteration: 4, Func. Count: 51, Neg. LLF: 82.6213535329069
Iteration: 5, Func. Count: 63, Neg. LLF: 82.28704422450406
Iteration: 6, Func. Count: 74, Neg. LLF: 82.27917722556757
Iteration: 7, Func. Count: 85, Neg. LLF: 82.27787937513851
Iteration: 8, Func. Count: 96, Neg. LLF: 82.27753969808386
Iteration: 9, Func. Count: 107, Neg. LLF: 82.27705475740756
Iteration: 10, Func. Count: 118, Neg. LLF: 82.27277978099787
Iteration: 11, Func. Count: 129, Neg. LLF: 82.27146817391568
Iteration: 12, Func. Count: 140, Neg. LLF: 82.26781010498613
Iteration: 13, Func. Count: 151, Neg. LLF: 82.2671903939033
Iteration: 14, Func. Count: 162, Neg. LLF: 82.2671893406804
Iteration: 15, Func. Count: 172, Neg. LLF: 82.26718922848625
Optimization terminated successfully (Exit mode 0)
Current function value: 82.2671893406804
Iterations: 15
Function evaluations: 172
Gradient evaluations: 15
Iteration: 1, Func. Count: 13, Neg. LLF: 153.87932639183038
Iteration: 2, Func. Count: 30, Neg. LLF: 82.38520447381464
Iteration: 3, Func. Count: 42, Neg. LLF: 82.21102204357742
Iteration: 4, Func. Count: 54, Neg. LLF: 88.28913611388084
Iteration: 5, Func. Count: 67, Neg. LLF: 89.54644493471963
Iteration: 6, Func. Count: 81, Neg. LLF: 82.14087412229544
Iteration: 7, Func. Count: 93, Neg. LLF: 82.1139744263386
Iteration: 8, Func. Count: 105, Neg. LLF: 82.09895227022841
Iteration: 9, Func. Count: 117, Neg. LLF: 82.09449914898046
Iteration: 10, Func. Count: 129, Neg. LLF: 82.09426775671088
Iteration: 11, Func. Count: 141, Neg. LLF: 82.09426205208386
Iteration: 12, Func. Count: 152, Neg. LLF: 82.09426201416377
Optimization terminated successfully (Exit mode 0)
Current function value: 82.09426205208386
Iterations: 12
Function evaluations: 152
Gradient evaluations: 12
Iteration: 1, Func. Count: 14, Neg. LLF: 157.81253253616939
Iteration: 2, Func. Count: 31, Neg. LLF: 83.19931103055958
Iteration: 3, Func. Count: 45, Neg. LLF: 82.44867106666912
Iteration: 4, Func. Count: 58, Neg. LLF: 85.51605022650786
Iteration: 5, Func. Count: 72, Neg. LLF: 953.0084956512819
Iteration: 6, Func. Count: 87, Neg. LLF: 82.19422648141392
Iteration: 7, Func. Count: 101, Neg. LLF: 82.05479486803922
Iteration: 8, Func. Count: 114, Neg. LLF: 82.05590274544261
Iteration: 9, Func. Count: 128, Neg. LLF: 82.0464191844491
Iteration: 10, Func. Count: 142, Neg. LLF: 82.02778425547842
Iteration: 11, Func. Count: 155, Neg. LLF: 82.01576238043602
Iteration: 12, Func. Count: 168, Neg. LLF: 82.00945117479094
Iteration: 13, Func. Count: 181, Neg. LLF: 82.00823644420763
Iteration: 14, Func. Count: 194, Neg. LLF: 82.00753341187728
Iteration: 15, Func. Count: 207, Neg. LLF: 82.00751457547628
Iteration: 16, Func. Count: 219, Neg. LLF: 82.00751455077219
Optimization terminated successfully (Exit mode 0)
Current function value: 82.00751457547628
Iterations: 16
Function evaluations: 219
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 119.63477784746469
Iteration: 2, Func. Count: 24, Neg. LLF: 123.8255773007772
Iteration: 3, Func. Count: 35, Neg. LLF: 5450400.58001696
Iteration: 4, Func. Count: 46, Neg. LLF: 2199.557711959039
Iteration: 5, Func. Count: 57, Neg. LLF: 89.00670385465816
Iteration: 6, Func. Count: 68, Neg. LLF: 95.94528186594829
Iteration: 7, Func. Count: 79, Neg. LLF: 82.51824182840751
Iteration: 8, Func. Count: 90, Neg. LLF: 81.76785807894521
Iteration: 9, Func. Count: 100, Neg. LLF: 82.68129812588334
Iteration: 10, Func. Count: 112, Neg. LLF: 81.70116045068349
Iteration: 11, Func. Count: 122, Neg. LLF: 81.6943080712173
Iteration: 12, Func. Count: 132, Neg. LLF: 81.69129741876979
Iteration: 13, Func. Count: 142, Neg. LLF: 81.68908243358646
Iteration: 14, Func. Count: 152, Neg. LLF: 81.68840496379462
Iteration: 15, Func. Count: 162, Neg. LLF: 81.68832834764153
Iteration: 16, Func. Count: 172, Neg. LLF: 81.68831725296533
Iteration: 17, Func. Count: 181, Neg. LLF: 81.68831709605074
Optimization terminated successfully (Exit mode 0)
Current function value: 81.68831725296533
Iterations: 17
Function evaluations: 181
Gradient evaluations: 17
Iteration: 1, Func. Count: 12, Neg. LLF: 183.96700331409437
Iteration: 2, Func. Count: 27, Neg. LLF: 83.42826617703435
Iteration: 3, Func. Count: 39, Neg. LLF: 82.37949404751413
Iteration: 4, Func. Count: 50, Neg. LLF: 167.77608838816334
Iteration: 5, Func. Count: 63, Neg. LLF: 82.2889234087269
Iteration: 6, Func. Count: 74, Neg. LLF: 82.26750084734705
Iteration: 7, Func. Count: 85, Neg. LLF: 82.2671894299123
Iteration: 8, Func. Count: 95, Neg. LLF: 82.26718954176211
Optimization terminated successfully (Exit mode 0)
Current function value: 82.2671894299123
Iterations: 8
Function evaluations: 95
Gradient evaluations: 8
Iteration: 1, Func. Count: 13, Neg. LLF: 161.86954688037318
Iteration: 2, Func. Count: 30, Neg. LLF: 83.5881892666674
Iteration: 3, Func. Count: 43, Neg. LLF: 82.38265646653905
Iteration: 4, Func. Count: 55, Neg. LLF: 82.63095955363562
Iteration: 5, Func. Count: 68, Neg. LLF: 82.2791233161601
Iteration: 6, Func. Count: 80, Neg. LLF: 82.27823753850777
Iteration: 7, Func. Count: 92, Neg. LLF: 82.27791912627139
Iteration: 8, Func. Count: 104, Neg. LLF: 82.27651349844827
Iteration: 9, Func. Count: 116, Neg. LLF: 82.2723100499365
Iteration: 10, Func. Count: 128, Neg. LLF: 82.26863316985819
Iteration: 11, Func. Count: 140, Neg. LLF: 82.26719271590957
Iteration: 12, Func. Count: 152, Neg. LLF: 82.26718934593147
Iteration: 13, Func. Count: 163, Neg. LLF: 82.26718923374891
Optimization terminated successfully (Exit mode 0)
Current function value: 82.26718934593147
Iterations: 13
Function evaluations: 163
Gradient evaluations: 13
Iteration: 1, Func. Count: 14, Neg. LLF: 122.11871348304385
Iteration: 2, Func. Count: 33, Neg. LLF: 88.23708143171031
Iteration: 3, Func. Count: 47, Neg. LLF: 82.2415601737967
Iteration: 4, Func. Count: 60, Neg. LLF: 82.52485626280266
Iteration: 5, Func. Count: 74, Neg. LLF: 82.21538682747025
Iteration: 6, Func. Count: 88, Neg. LLF: 82.17972220632826
Iteration: 7, Func. Count: 101, Neg. LLF: 82.17958799291848
Iteration: 8, Func. Count: 114, Neg. LLF: 82.17958734520764
Optimization terminated successfully (Exit mode 0)
Current function value: 82.17958734520764
Iterations: 8
Function evaluations: 114
Gradient evaluations: 8
Iteration: 1, Func. Count: 15, Neg. LLF: 122.16888644414593
Iteration: 2, Func. Count: 35, Neg. LLF: 86.33509770033815
Iteration: 3, Func. Count: 50, Neg. LLF: 83.5630671264942
Iteration: 4, Func. Count: 65, Neg. LLF: 82.02547298536494
Iteration: 5, Func. Count: 79, Neg. LLF: 84.3229680658705
Iteration: 6, Func. Count: 95, Neg. LLF: 82.04016302241266
Iteration: 7, Func. Count: 110, Neg. LLF: 81.58804279950718
Iteration: 8, Func. Count: 124, Neg. LLF: 81.20675242396736
Iteration: 9, Func. Count: 138, Neg. LLF: 81.11383830151628
Iteration: 10, Func. Count: 152, Neg. LLF: 81.10721528284286
Iteration: 11, Func. Count: 166, Neg. LLF: 81.10653667501052
Iteration: 12, Func. Count: 180, Neg. LLF: 81.10457241085845
Iteration: 13, Func. Count: 194, Neg. LLF: 81.10428939036592
Iteration: 14, Func. Count: 208, Neg. LLF: 81.10425176756198
Iteration: 15, Func. Count: 222, Neg. LLF: 81.10424381474598
Iteration: 16, Func. Count: 236, Neg. LLF: 81.1042374807331
Iteration: 17, Func. Count: 250, Neg. LLF: 81.10423578263801
Iteration: 18, Func. Count: 263, Neg. LLF: 81.10423571222842
Optimization terminated successfully (Exit mode 0)
Current function value: 81.10423578263801
Iterations: 18
Function evaluations: 263
Gradient evaluations: 18
Iteration: 1, Func. Count: 12, Neg. LLF: 126.7560580452583
Iteration: 2, Func. Count: 26, Neg. LLF: 159.63124073624948
Iteration: 3, Func. Count: 38, Neg. LLF: 1088826.865113366
Iteration: 4, Func. Count: 50, Neg. LLF: 37820.08880772568
Iteration: 5, Func. Count: 62, Neg. LLF: 616.4378366464437
Iteration: 6, Func. Count: 74, Neg. LLF: 82.61514163574999
Iteration: 7, Func. Count: 86, Neg. LLF: 83.9158637627236
Iteration: 8, Func. Count: 98, Neg. LLF: 82.01265742318851
Iteration: 9, Func. Count: 109, Neg. LLF: 81.77166027513425
Iteration: 10, Func. Count: 120, Neg. LLF: 81.76979888758379
Iteration: 11, Func. Count: 131, Neg. LLF: 81.7684965039756
Iteration: 12, Func. Count: 142, Neg. LLF: 81.76841797331035
Iteration: 13, Func. Count: 153, Neg. LLF: 81.76839836051376
Iteration: 14, Func. Count: 164, Neg. LLF: 81.76838960800076
Iteration: 15, Func. Count: 175, Neg. LLF: 81.7683862138241
Iteration: 16, Func. Count: 186, Neg. LLF: 81.76838563968404
Optimization terminated successfully (Exit mode 0)
Current function value: 81.76838563968404
Iterations: 16
Function evaluations: 186
Gradient evaluations: 16
Iteration: 1, Func. Count: 13, Neg. LLF: 140.43233017342135
Iteration: 2, Func. Count: 29, Neg. LLF: 87.51802636754043
Iteration: 3, Func. Count: 43, Neg. LLF: 82.46113615467361
Iteration: 4, Func. Count: 55, Neg. LLF: 84.14261899517335
Iteration: 5, Func. Count: 68, Neg. LLF: 82.50894731204114
Iteration: 6, Func. Count: 81, Neg. LLF: 82.26866758791539
Iteration: 7, Func. Count: 93, Neg. LLF: 82.26728276716405
Iteration: 8, Func. Count: 105, Neg. LLF: 82.26718939331865
Iteration: 9, Func. Count: 116, Neg. LLF: 82.26718950652331
Optimization terminated successfully (Exit mode 0)
Current function value: 82.26718939331865
Iterations: 9
Function evaluations: 116
Gradient evaluations: 9
Iteration: 1, Func. Count: 14, Neg. LLF: 161.3612722777739
Iteration: 2, Func. Count: 32, Neg. LLF: 83.53471325122614
Iteration: 3, Func. Count: 46, Neg. LLF: 82.38638105248576
Iteration: 4, Func. Count: 59, Neg. LLF: 82.69320982991805
Iteration: 5, Func. Count: 73, Neg. LLF: 82.2790700995514
Iteration: 6, Func. Count: 86, Neg. LLF: 82.27814323562251
Iteration: 7, Func. Count: 99, Neg. LLF: 82.27784980005809
Iteration: 8, Func. Count: 112, Neg. LLF: 82.27689219389913
Iteration: 9, Func. Count: 125, Neg. LLF: 82.27427539239368
Iteration: 10, Func. Count: 138, Neg. LLF: 82.26966031364796
Iteration: 11, Func. Count: 151, Neg. LLF: 82.26830440849804
Iteration: 12, Func. Count: 164, Neg. LLF: 82.26719046746805
Iteration: 13, Func. Count: 177, Neg. LLF: 82.26718934079506
Iteration: 14, Func. Count: 189, Neg. LLF: 82.2671892285772
Optimization terminated successfully (Exit mode 0)
Current function value: 82.26718934079506
Iterations: 14
Function evaluations: 189
Gradient evaluations: 14
Iteration: 1, Func. Count: 15, Neg. LLF: 122.06865328442824
Iteration: 2, Func. Count: 35, Neg. LLF: 88.1660691731104
Iteration: 3, Func. Count: 50, Neg. LLF: 82.22985061594488
Iteration: 4, Func. Count: 64, Neg. LLF: 82.65119621070885
Iteration: 5, Func. Count: 79, Neg. LLF: 82.21155396746794
Iteration: 6, Func. Count: 94, Neg. LLF: 82.17964590473098
Iteration: 7, Func. Count: 108, Neg. LLF: 82.1795877359791
Iteration: 8, Func. Count: 121, Neg. LLF: 82.17958770808336
Optimization terminated successfully (Exit mode 0)
Current function value: 82.1795877359791
Iterations: 8
Function evaluations: 121
Gradient evaluations: 8
Iteration: 1, Func. Count: 16, Neg. LLF: 122.09597233426689
Iteration: 2, Func. Count: 37, Neg. LLF: 87.63786174422165
Iteration: 3, Func. Count: 53, Neg. LLF: 83.36419328122913
Iteration: 4, Func. Count: 69, Neg. LLF: 82.01746302297674
Iteration: 5, Func. Count: 84, Neg. LLF: 83.71939084651257
Iteration: 6, Func. Count: 101, Neg. LLF: 82.05657894140646
Iteration: 7, Func. Count: 117, Neg. LLF: 81.55510941568042
Iteration: 8, Func. Count: 132, Neg. LLF: 81.15960280181761
Iteration: 9, Func. Count: 147, Neg. LLF: 81.03472935033415
Iteration: 10, Func. Count: 162, Neg. LLF: 81.02796985548794
Iteration: 11, Func. Count: 177, Neg. LLF: 81.02662115756839
Iteration: 12, Func. Count: 192, Neg. LLF: 81.0245513179917
Iteration: 13, Func. Count: 207, Neg. LLF: 81.0232197703479
Iteration: 14, Func. Count: 222, Neg. LLF: 81.02281011784498
Iteration: 15, Func. Count: 237, Neg. LLF: 81.02252869668781
Iteration: 16, Func. Count: 252, Neg. LLF: 81.02225051126084
Iteration: 17, Func. Count: 267, Neg. LLF: 81.02213006196263
Iteration: 18, Func. Count: 282, Neg. LLF: 81.02210922259488
Iteration: 19, Func. Count: 297, Neg. LLF: 81.02210841813564
Optimization terminated successfully (Exit mode 0)
Current function value: 81.02210841813564
Iterations: 19
Function evaluations: 297
Gradient evaluations: 19
Iteration: 1, Func. Count: 5, Neg. LLF: 123.23065659559535
Iteration: 2, Func. Count: 12, Neg. LLF: 118.09618934079614
Iteration: 3, Func. Count: 18, Neg. LLF: 83.15422297475722
Iteration: 4, Func. Count: 22, Neg. LLF: 83.54409185907451
Iteration: 5, Func. Count: 27, Neg. LLF: 82.87282245320371
Iteration: 6, Func. Count: 31, Neg. LLF: 82.87813103009825
Iteration: 7, Func. Count: 36, Neg. LLF: 82.86506117740483
Iteration: 8, Func. Count: 41, Neg. LLF: 82.86005761720418
Iteration: 9, Func. Count: 44, Neg. LLF: 82.86005761721131
Optimization terminated successfully (Exit mode 0)
Current function value: 82.86005761720418
Iterations: 9
Function evaluations: 44
Gradient evaluations: 9
Iteration: 1, Func. Count: 5, Neg. LLF: 122.8726821584959
Iteration: 2, Func. Count: 13, Neg. LLF: 128.366597756231
Iteration: 3, Func. Count: 19, Neg. LLF: 84.20847194903689
Iteration: 4, Func. Count: 23, Neg. LLF: 84.15829807522003
Iteration: 5, Func. Count: 27, Neg. LLF: 84.12665187031496
Iteration: 6, Func. Count: 31, Neg. LLF: 84.11790869799994
Iteration: 7, Func. Count: 35, Neg. LLF: 84.11725459407229
Iteration: 8, Func. Count: 39, Neg. LLF: 84.11724645668815
Iteration: 9, Func. Count: 42, Neg. LLF: 84.11724645669162
Optimization terminated successfully (Exit mode 0)
Current function value: 84.11724645668815
Iterations: 9
Function evaluations: 42
Gradient evaluations: 9
Iteration: 1, Func. Count: 6, Neg. LLF: 185.89361878286647
Iteration: 2, Func. Count: 15, Neg. LLF: 83.82603888949798
Iteration: 3, Func. Count: 21, Neg. LLF: 83.61645302363053
Iteration: 4, Func. Count: 26, Neg. LLF: 83.72968079105722
Iteration: 5, Func. Count: 32, Neg. LLF: 83.35966664407519
Iteration: 6, Func. Count: 38, Neg. LLF: 83.34232533453573
Iteration: 7, Func. Count: 43, Neg. LLF: 83.34228476173679
Iteration: 8, Func. Count: 47, Neg. LLF: 83.3422848042959
Optimization terminated successfully (Exit mode 0)
Current function value: 83.34228476173679
Iterations: 8
Function evaluations: 47
Gradient evaluations: 8
Iteration: 1, Func. Count: 7, Neg. LLF: 182.30739773476148
Iteration: 2, Func. Count: 18, Neg. LLF: 83.69139712778637
Iteration: 3, Func. Count: 25, Neg. LLF: 83.39728570320177
Iteration: 4, Func. Count: 31, Neg. LLF: 85.26968404494292
Iteration: 5, Func. Count: 38, Neg. LLF: 83.35429110086851
Iteration: 6, Func. Count: 44, Neg. LLF: 83.35305962674006
Iteration: 7, Func. Count: 50, Neg. LLF: 83.35289843920093
Iteration: 8, Func. Count: 56, Neg. LLF: 83.35179974093846
Iteration: 9, Func. Count: 62, Neg. LLF: 83.34274172649489
Iteration: 10, Func. Count: 68, Neg. LLF: 83.34248373307899
Iteration: 11, Func. Count: 74, Neg. LLF: 83.34228478095004
Iteration: 12, Func. Count: 79, Neg. LLF: 83.34228473957734
Optimization terminated successfully (Exit mode 0)
Current function value: 83.34228478095004
Iterations: 12
Function evaluations: 79
Gradient evaluations: 12
Iteration: 1, Func. Count: 8, Neg. LLF: 179.80050746105425
Iteration: 2, Func. Count: 20, Neg. LLF: 83.52284092931797
Iteration: 3, Func. Count: 27, Neg. LLF: 83.73408071173246
Iteration: 4, Func. Count: 35, Neg. LLF: 88.3793142054925
Iteration: 5, Func. Count: 43, Neg. LLF: 83.3692447299415
Iteration: 6, Func. Count: 50, Neg. LLF: 83.36787211656812
Iteration: 7, Func. Count: 57, Neg. LLF: 83.36261376002626
Iteration: 8, Func. Count: 64, Neg. LLF: 83.35377481800188
Iteration: 9, Func. Count: 71, Neg. LLF: 83.35042379279676
Iteration: 10, Func. Count: 78, Neg. LLF: 83.34890100027452
Iteration: 11, Func. Count: 85, Neg. LLF: 83.34871500755396
Iteration: 12, Func. Count: 92, Neg. LLF: 83.34755003961384
Iteration: 13, Func. Count: 99, Neg. LLF: 83.34229052651139
Iteration: 14, Func. Count: 106, Neg. LLF: 83.3422876491324
Iteration: 15, Func. Count: 113, Neg. LLF: 83.34228475517031
Iteration: 16, Func. Count: 119, Neg. LLF: 83.34228471398472
Optimization terminated successfully (Exit mode 0)
Current function value: 83.34228475517031
Iterations: 16
Function evaluations: 119
Gradient evaluations: 16
Iteration: 1, Func. Count: 9, Neg. LLF: 164.74970807403963
Iteration: 2, Func. Count: 22, Neg. LLF: 84.29623645631874
Iteration: 3, Func. Count: 31, Neg. LLF: 83.4054798275715
Iteration: 4, Func. Count: 39, Neg. LLF: 83.4448320998099
Iteration: 5, Func. Count: 48, Neg. LLF: 83.51651188831345
Iteration: 6, Func. Count: 57, Neg. LLF: 83.22353548524868
Iteration: 7, Func. Count: 65, Neg. LLF: 83.22273516669175
Iteration: 8, Func. Count: 73, Neg. LLF: 83.22265846794257
Iteration: 9, Func. Count: 81, Neg. LLF: 83.22265513775085
Iteration: 10, Func. Count: 88, Neg. LLF: 83.2226551247921
Optimization terminated successfully (Exit mode 0)
Current function value: 83.22265513775085
Iterations: 10
Function evaluations: 88
Gradient evaluations: 10
Iteration: 1, Func. Count: 6, Neg. LLF: 139.16439460107568
Iteration: 2, Func. Count: 15, Neg. LLF: 203.79470291555987
Iteration: 3, Func. Count: 22, Neg. LLF: 84.20606681152125
Iteration: 4, Func. Count: 28, Neg. LLF: 84.1223361210461
Iteration: 5, Func. Count: 34, Neg. LLF: 84.14664204378357
Iteration: 6, Func. Count: 40, Neg. LLF: 84.02640797623962
Iteration: 7, Func. Count: 45, Neg. LLF: 84.02634558032926
Iteration: 8, Func. Count: 50, Neg. LLF: 84.02634495022207
Optimization terminated successfully (Exit mode 0)
Current function value: 84.02634495022207
Iterations: 8
Function evaluations: 50
Gradient evaluations: 8
Iteration: 1, Func. Count: 7, Neg. LLF: 186.0905912173075
Iteration: 2, Func. Count: 17, Neg. LLF: 83.89895712389986
Iteration: 3, Func. Count: 24, Neg. LLF: 83.59308460852286
Iteration: 4, Func. Count: 30, Neg. LLF: 83.77143318853564
Iteration: 5, Func. Count: 37, Neg. LLF: 83.36514574171841
Iteration: 6, Func. Count: 44, Neg. LLF: 83.34234429270731
Iteration: 7, Func. Count: 50, Neg. LLF: 83.34228478205415
Iteration: 8, Func. Count: 55, Neg. LLF: 83.34228482476286
Optimization terminated successfully (Exit mode 0)
Current function value: 83.34228478205415
Iterations: 8
Function evaluations: 55
Gradient evaluations: 8
Iteration: 1, Func. Count: 8, Neg. LLF: 182.08641204617865
Iteration: 2, Func. Count: 20, Neg. LLF: 83.74896713819912
Iteration: 3, Func. Count: 28, Neg. LLF: 83.398747399388
Iteration: 4, Func. Count: 35, Neg. LLF: 84.72297934780832
Iteration: 5, Func. Count: 43, Neg. LLF: 83.3560163536305
Iteration: 6, Func. Count: 50, Neg. LLF: 83.35303874233685
Iteration: 7, Func. Count: 57, Neg. LLF: 83.35281284625786
Iteration: 8, Func. Count: 64, Neg. LLF: 83.35209152262244
Iteration: 9, Func. Count: 71, Neg. LLF: 83.34999938435516
Iteration: 10, Func. Count: 78, Neg. LLF: 83.3466106337655
Iteration: 11, Func. Count: 85, Neg. LLF: 83.34484141427113
Iteration: 12, Func. Count: 92, Neg. LLF: 83.34228939986956
Iteration: 13, Func. Count: 99, Neg. LLF: 83.34228474814668
Iteration: 14, Func. Count: 105, Neg. LLF: 83.34228470608495
Optimization terminated successfully (Exit mode 0)
Current function value: 83.34228474814668
Iterations: 14
Function evaluations: 105
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 128.2328375675733
Iteration: 2, Func. Count: 22, Neg. LLF: 91.82460848560147
Iteration: 3, Func. Count: 32, Neg. LLF: 84.2356894125835
Iteration: 4, Func. Count: 41, Neg. LLF: 83.56719478200151
Iteration: 5, Func. Count: 50, Neg. LLF: 83.33433377082994
Iteration: 6, Func. Count: 58, Neg. LLF: 83.40475801187921
Iteration: 7, Func. Count: 67, Neg. LLF: 83.1350192987173
Iteration: 8, Func. Count: 75, Neg. LLF: 83.08067346344598
Iteration: 9, Func. Count: 83, Neg. LLF: 83.08039139170671
Iteration: 10, Func. Count: 91, Neg. LLF: 83.08027139711687
Iteration: 11, Func. Count: 99, Neg. LLF: 83.08024923606771
Iteration: 12, Func. Count: 107, Neg. LLF: 83.08024740116387
Iteration: 13, Func. Count: 115, Neg. LLF: 83.08267225904231
Optimization terminated successfully (Exit mode 0)
Current function value: 83.0802473927565
Iterations: 14
Function evaluations: 118
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 146.98726912714616
Iteration: 2, Func. Count: 24, Neg. LLF: 83.7259200174343
Iteration: 3, Func. Count: 34, Neg. LLF: 83.4352162789865
Iteration: 4, Func. Count: 43, Neg. LLF: 83.50068150443967
Iteration: 5, Func. Count: 53, Neg. LLF: 257.97342097638
Iteration: 6, Func. Count: 64, Neg. LLF: 83.23703347272104
Iteration: 7, Func. Count: 73, Neg. LLF: 83.2186151499304
Iteration: 8, Func. Count: 82, Neg. LLF: 83.19739706812001
Iteration: 9, Func. Count: 91, Neg. LLF: 83.16021152806151
Iteration: 10, Func. Count: 100, Neg. LLF: 83.10385224475688
Iteration: 11, Func. Count: 109, Neg. LLF: 83.0995704021822
Iteration: 12, Func. Count: 118, Neg. LLF: 83.09866263157974
Iteration: 13, Func. Count: 127, Neg. LLF: 83.09839987584597
Iteration: 14, Func. Count: 136, Neg. LLF: 83.09839118461296
Iteration: 15, Func. Count: 144, Neg. LLF: 83.09839117306258
Optimization terminated successfully (Exit mode 0)
Current function value: 83.09839118461296
Iterations: 15
Function evaluations: 144
Gradient evaluations: 15
Iteration: 1, Func. Count: 7, Neg. LLF: 145.93868111167436
Iteration: 2, Func. Count: 17, Neg. LLF: 237.80262173706498
Iteration: 3, Func. Count: 25, Neg. LLF: 84.14529868966466
Iteration: 4, Func. Count: 31, Neg. LLF: 84.053528411598
Iteration: 5, Func. Count: 37, Neg. LLF: 84.30794112296464
Iteration: 6, Func. Count: 44, Neg. LLF: 84.03983329938262
Iteration: 7, Func. Count: 51, Neg. LLF: 84.02635644191277
Iteration: 8, Func. Count: 57, Neg. LLF: 84.02634500213667
Iteration: 9, Func. Count: 62, Neg. LLF: 84.02634509367495
Optimization terminated successfully (Exit mode 0)
Current function value: 84.02634500213667
Iterations: 9
Function evaluations: 62
Gradient evaluations: 9
Iteration: 1, Func. Count: 8, Neg. LLF: 186.34275434797757
Iteration: 2, Func. Count: 19, Neg. LLF: 83.86964088123185
Iteration: 3, Func. Count: 27, Neg. LLF: 83.78706126179647
Iteration: 4, Func. Count: 35, Neg. LLF: 83.76694842950407
Iteration: 5, Func. Count: 43, Neg. LLF: 83.36256618339479
Iteration: 6, Func. Count: 50, Neg. LLF: 130.85354411790738
Iteration: 7, Func. Count: 59, Neg. LLF: 83.34230475163325
Iteration: 8, Func. Count: 66, Neg. LLF: 83.34228484149547
Iteration: 9, Func. Count: 72, Neg. LLF: 83.3422848845745
Optimization terminated successfully (Exit mode 0)
Current function value: 83.34228484149547
Iterations: 9
Function evaluations: 72
Gradient evaluations: 9
Iteration: 1, Func. Count: 9, Neg. LLF: 182.2710573724595
Iteration: 2, Func. Count: 22, Neg. LLF: 83.77345493554658
Iteration: 3, Func. Count: 31, Neg. LLF: 83.39396698494791
Iteration: 4, Func. Count: 39, Neg. LLF: 84.6850376231546
Iteration: 5, Func. Count: 48, Neg. LLF: 83.35478529209175
Iteration: 6, Func. Count: 56, Neg. LLF: 83.35319317393089
Iteration: 7, Func. Count: 64, Neg. LLF: 83.35299649692091
Iteration: 8, Func. Count: 72, Neg. LLF: 83.35163142032633
Iteration: 9, Func. Count: 80, Neg. LLF: 83.34281994291881
Iteration: 10, Func. Count: 88, Neg. LLF: 83.34251351276082
Iteration: 11, Func. Count: 96, Neg. LLF: 83.34228479116766
Iteration: 12, Func. Count: 103, Neg. LLF: 83.34228474986476
Optimization terminated successfully (Exit mode 0)
Current function value: 83.34228479116766
Iterations: 12
Function evaluations: 103
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 127.78123839737744
Iteration: 2, Func. Count: 24, Neg. LLF: 93.43461835590468
Iteration: 3, Func. Count: 35, Neg. LLF: 84.38527881276217
Iteration: 4, Func. Count: 45, Neg. LLF: 83.57640679359777
Iteration: 5, Func. Count: 55, Neg. LLF: 83.33426271152128
Iteration: 6, Func. Count: 64, Neg. LLF: 83.47101370888197
Iteration: 7, Func. Count: 74, Neg. LLF: 83.15595882214346
Iteration: 8, Func. Count: 83, Neg. LLF: 83.1150112508397
Iteration: 9, Func. Count: 92, Neg. LLF: 83.09052843593054
Iteration: 10, Func. Count: 101, Neg. LLF: 83.08103484601212
Iteration: 11, Func. Count: 110, Neg. LLF: 83.08025020236255
Iteration: 12, Func. Count: 119, Neg. LLF: 83.08024805537985
Iteration: 13, Func. Count: 127, Neg. LLF: 83.08024802442502
Optimization terminated successfully (Exit mode 0)
Current function value: 83.08024805537985
Iterations: 13
Function evaluations: 127
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 122.32953038071544
Iteration: 2, Func. Count: 27, Neg. LLF: 83.48655318914122
Iteration: 3, Func. Count: 37, Neg. LLF: 83.41677858521963
Iteration: 4, Func. Count: 47, Neg. LLF: 119.9070120487937
Iteration: 5, Func. Count: 59, Neg. LLF: 83.47356750656841
Iteration: 6, Func. Count: 70, Neg. LLF: 83.39026861103507
Iteration: 7, Func. Count: 81, Neg. LLF: 83.23313457046594
Iteration: 8, Func. Count: 91, Neg. LLF: 83.22332659913968
Iteration: 9, Func. Count: 101, Neg. LLF: 83.18662860287341
Iteration: 10, Func. Count: 111, Neg. LLF: 83.42721095905328
Iteration: 11, Func. Count: 122, Neg. LLF: 83.19016412170964
Iteration: 12, Func. Count: 133, Neg. LLF: 83.13895225485774
Iteration: 13, Func. Count: 143, Neg. LLF: 83.09951729935734
Iteration: 14, Func. Count: 153, Neg. LLF: 83.09861731045794
Iteration: 15, Func. Count: 163, Neg. LLF: 83.09840326254812
Iteration: 16, Func. Count: 173, Neg. LLF: 83.098391242019
Iteration: 17, Func. Count: 183, Neg. LLF: 83.09839066559073
Optimization terminated successfully (Exit mode 0)
Current function value: 83.09839066559073
Iterations: 17
Function evaluations: 183
Gradient evaluations: 17
Iteration: 1, Func. Count: 8, Neg. LLF: 133.89032175342203
Iteration: 2, Func. Count: 19, Neg. LLF: 226.47953960359567
Iteration: 3, Func. Count: 28, Neg. LLF: 84.25840557006993
Iteration: 4, Func. Count: 35, Neg. LLF: 84.06990378756804
Iteration: 5, Func. Count: 42, Neg. LLF: 84.18814795091367
Iteration: 6, Func. Count: 50, Neg. LLF: 84.12381289785884
Iteration: 7, Func. Count: 58, Neg. LLF: 84.02664994189057
Iteration: 8, Func. Count: 65, Neg. LLF: 84.02636563573829
Iteration: 9, Func. Count: 72, Neg. LLF: 84.02634493764039
Iteration: 10, Func. Count: 78, Neg. LLF: 84.02634498371971
Optimization terminated successfully (Exit mode 0)
Current function value: 84.02634493764039
Iterations: 10
Function evaluations: 78
Gradient evaluations: 10
Iteration: 1, Func. Count: 9, Neg. LLF: 186.1064391420032
Iteration: 2, Func. Count: 21, Neg. LLF: 83.84907897925888
Iteration: 3, Func. Count: 30, Neg. LLF: 83.67432060502405
Iteration: 4, Func. Count: 39, Neg. LLF: 83.52451820519302
Iteration: 5, Func. Count: 48, Neg. LLF: 83.35013681273647
Iteration: 6, Func. Count: 56, Neg. LLF: 83.3433305705521
Iteration: 7, Func. Count: 64, Neg. LLF: 83.34228686772948
Iteration: 8, Func. Count: 72, Neg. LLF: 83.34228474302975
Iteration: 9, Func. Count: 79, Neg. LLF: 83.34228478524265
Optimization terminated successfully (Exit mode 0)
Current function value: 83.34228474302975
Iterations: 9
Function evaluations: 79
Gradient evaluations: 9
Iteration: 1, Func. Count: 10, Neg. LLF: 182.34009232535746
Iteration: 2, Func. Count: 24, Neg. LLF: 83.73137684569535
Iteration: 3, Func. Count: 34, Neg. LLF: 83.39425436392824
Iteration: 4, Func. Count: 43, Neg. LLF: 84.92797391430933
Iteration: 5, Func. Count: 53, Neg. LLF: 83.35442000356218
Iteration: 6, Func. Count: 62, Neg. LLF: 83.35318237926525
Iteration: 7, Func. Count: 71, Neg. LLF: 83.35301070462712
Iteration: 8, Func. Count: 80, Neg. LLF: 83.35189762765894
Iteration: 9, Func. Count: 89, Neg. LLF: 83.34239938195608
Iteration: 10, Func. Count: 98, Neg. LLF: 83.34240497104794
Iteration: 11, Func. Count: 108, Neg. LLF: 83.34228474261117
Iteration: 12, Func. Count: 116, Neg. LLF: 83.34228470073798
Optimization terminated successfully (Exit mode 0)
Current function value: 83.34228474261117
Iterations: 12
Function evaluations: 116
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 127.39184134034086
Iteration: 2, Func. Count: 26, Neg. LLF: 94.53438871504997
Iteration: 3, Func. Count: 38, Neg. LLF: 84.49908271440408
Iteration: 4, Func. Count: 49, Neg. LLF: 83.53583134119087
Iteration: 5, Func. Count: 59, Neg. LLF: 83.43229757593306
Iteration: 6, Func. Count: 69, Neg. LLF: 83.25900547802998
Iteration: 7, Func. Count: 79, Neg. LLF: 83.09576317527049
Iteration: 8, Func. Count: 89, Neg. LLF: 83.08159378280503
Iteration: 9, Func. Count: 99, Neg. LLF: 83.08057449537064
Iteration: 10, Func. Count: 109, Neg. LLF: 83.08025215014095
Iteration: 11, Func. Count: 119, Neg. LLF: 83.08024815250869
Iteration: 12, Func. Count: 128, Neg. LLF: 83.08024812146377
Optimization terminated successfully (Exit mode 0)
Current function value: 83.08024815250869
Iterations: 12
Function evaluations: 128
Gradient evaluations: 12
Iteration: 1, Func. Count: 12, Neg. LLF: 122.26047514844514
Iteration: 2, Func. Count: 29, Neg. LLF: 83.47007883191263
Iteration: 3, Func. Count: 40, Neg. LLF: 83.45296008192437
Iteration: 4, Func. Count: 52, Neg. LLF: 101.12081034445626
Iteration: 5, Func. Count: 64, Neg. LLF: 83.25440914831324
Iteration: 6, Func. Count: 75, Neg. LLF: 83.78923667715165
Iteration: 7, Func. Count: 87, Neg. LLF: 83.30031336474728
Iteration: 8, Func. Count: 99, Neg. LLF: 83.22268393572095
Iteration: 9, Func. Count: 110, Neg. LLF: 83.22266075567637
Iteration: 10, Func. Count: 121, Neg. LLF: 83.22265529470363
Iteration: 11, Func. Count: 131, Neg. LLF: 83.22265528147803
Optimization terminated successfully (Exit mode 0)
Current function value: 83.22265529470363
Iterations: 11
Function evaluations: 131
Gradient evaluations: 11
Iteration: 1, Func. Count: 5, Neg. LLF: 119.88333496617007
Iteration: 2, Func. Count: 13, Neg. LLF: 84.78808835631726
Iteration: 3, Func. Count: 18, Neg. LLF: 84.25315615874464
Iteration: 4, Func. Count: 23, Neg. LLF: 84.06805809322542
Iteration: 5, Func. Count: 27, Neg. LLF: 84.0667405273144
Iteration: 6, Func. Count: 31, Neg. LLF: 84.06663102967039
Iteration: 7, Func. Count: 35, Neg. LLF: 84.06662786710767
Iteration: 8, Func. Count: 38, Neg. LLF: 84.0666278671107
Optimization terminated successfully (Exit mode 0)
Current function value: 84.06662786710767
Iterations: 8
Function evaluations: 38
Gradient evaluations: 8
Iteration: 1, Func. Count: 6, Neg. LLF: 185.12737139935513
Iteration: 2, Func. Count: 15, Neg. LLF: 84.30128541056847
Iteration: 3, Func. Count: 21, Neg. LLF: 83.40155288313072
Iteration: 4, Func. Count: 26, Neg. LLF: 264.1715713189288
Iteration: 5, Func. Count: 33, Neg. LLF: 83.3450947011105
Iteration: 6, Func. Count: 38, Neg. LLF: 83.34228799824729
Iteration: 7, Func. Count: 43, Neg. LLF: 83.34228477223776
Iteration: 8, Func. Count: 47, Neg. LLF: 83.34228481493795
Optimization terminated successfully (Exit mode 0)
Current function value: 83.34228477223776
Iterations: 8
Function evaluations: 47
Gradient evaluations: 8
Iteration: 1, Func. Count: 7, Neg. LLF: 182.121686194332
Iteration: 2, Func. Count: 18, Neg. LLF: 83.97885854632933
Iteration: 3, Func. Count: 25, Neg. LLF: 83.47548533363833
Iteration: 4, Func. Count: 31, Neg. LLF: 84.61332792876034
Iteration: 5, Func. Count: 38, Neg. LLF: 83.37172423934084
Iteration: 6, Func. Count: 44, Neg. LLF: 83.35397592225121
Iteration: 7, Func. Count: 50, Neg. LLF: 83.3530230479013
Iteration: 8, Func. Count: 56, Neg. LLF: 83.35289588357755
Iteration: 9, Func. Count: 62, Neg. LLF: 83.3526095152537
Iteration: 10, Func. Count: 68, Neg. LLF: 83.35162554863963
Iteration: 11, Func. Count: 74, Neg. LLF: 83.34920651822176
Iteration: 12, Func. Count: 80, Neg. LLF: 83.345715522568
Iteration: 13, Func. Count: 86, Neg. LLF: 83.34229221519985
Iteration: 14, Func. Count: 92, Neg. LLF: 83.3422847519925
Iteration: 15, Func. Count: 97, Neg. LLF: 83.34228470987034
Optimization terminated successfully (Exit mode 0)
Current function value: 83.3422847519925
Iterations: 15
Function evaluations: 97
Gradient evaluations: 15
Iteration: 1, Func. Count: 8, Neg. LLF: 179.36163000804498
Iteration: 2, Func. Count: 20, Neg. LLF: 83.6644950339329
Iteration: 3, Func. Count: 28, Neg. LLF: 83.40343092449176
Iteration: 4, Func. Count: 35, Neg. LLF: 83.4532238140783
Iteration: 5, Func. Count: 43, Neg. LLF: 83.37381302578885
Iteration: 6, Func. Count: 50, Neg. LLF: 83.37180691806316
Iteration: 7, Func. Count: 57, Neg. LLF: 83.36941654715756
Iteration: 8, Func. Count: 64, Neg. LLF: 83.36351291498748
Iteration: 9, Func. Count: 71, Neg. LLF: 83.35295625986602
Iteration: 10, Func. Count: 78, Neg. LLF: 83.35116210574117
Iteration: 11, Func. Count: 85, Neg. LLF: 83.35051294686666
Iteration: 12, Func. Count: 92, Neg. LLF: 83.35026134224884
Iteration: 13, Func. Count: 99, Neg. LLF: 83.35003716707853
Iteration: 14, Func. Count: 106, Neg. LLF: 83.34867515149308
Iteration: 15, Func. Count: 113, Neg. LLF: 83.34552816608036
Iteration: 16, Func. Count: 120, Neg. LLF: 83.3443612909985
Iteration: 17, Func. Count: 127, Neg. LLF: 83.34229288666718
Iteration: 18, Func. Count: 134, Neg. LLF: 83.34228491075349
Iteration: 19, Func. Count: 140, Neg. LLF: 83.34228486923072
Optimization terminated successfully (Exit mode 0)
Current function value: 83.34228491075349
Iterations: 19
Function evaluations: 140
Gradient evaluations: 19
Iteration: 1, Func. Count: 9, Neg. LLF: 177.38735691114664
Iteration: 2, Func. Count: 22, Neg. LLF: 83.61311260697859
Iteration: 3, Func. Count: 31, Neg. LLF: 83.43847891907285
Iteration: 4, Func. Count: 39, Neg. LLF: 83.43020866064876
Iteration: 5, Func. Count: 48, Neg. LLF: 83.38787139137479
Iteration: 6, Func. Count: 56, Neg. LLF: 83.3829296642862
Iteration: 7, Func. Count: 64, Neg. LLF: 83.3826134044229
Iteration: 8, Func. Count: 72, Neg. LLF: 83.38004519524114
Iteration: 9, Func. Count: 80, Neg. LLF: 83.36543524470075
Iteration: 10, Func. Count: 88, Neg. LLF: 83.36493349064529
Iteration: 11, Func. Count: 96, Neg. LLF: 83.3633998501704
Iteration: 12, Func. Count: 104, Neg. LLF: 83.35684949838081
Iteration: 13, Func. Count: 112, Neg. LLF: 83.35144300138424
Iteration: 14, Func. Count: 120, Neg. LLF: 83.3492172207321
Iteration: 15, Func. Count: 128, Neg. LLF: 83.34887031367606
Iteration: 16, Func. Count: 136, Neg. LLF: 83.34859030289462
Iteration: 17, Func. Count: 144, Neg. LLF: 83.34651944760405
Iteration: 18, Func. Count: 152, Neg. LLF: 83.34410325884028
Iteration: 19, Func. Count: 160, Neg. LLF: 83.3427403144321
Iteration: 20, Func. Count: 168, Neg. LLF: 83.34228645511492
Iteration: 21, Func. Count: 176, Neg. LLF: 89.98250533301818
Optimization terminated successfully (Exit mode 0)
Current function value: 83.34228592768264
Iterations: 22
Function evaluations: 180
Gradient evaluations: 21
Iteration: 1, Func. Count: 6, Neg. LLF: 120.84193690508569
Iteration: 2, Func. Count: 14, Neg. LLF: 103.6049216870196
Iteration: 3, Func. Count: 21, Neg. LLF: 84.19961832637831
Iteration: 4, Func. Count: 26, Neg. LLF: 84.35968575879855
Iteration: 5, Func. Count: 32, Neg. LLF: 84.18173938494606
Iteration: 6, Func. Count: 38, Neg. LLF: 84.06504415160538
Iteration: 7, Func. Count: 43, Neg. LLF: 84.06420470334889
Iteration: 8, Func. Count: 48, Neg. LLF: 84.0641888305186
Iteration: 9, Func. Count: 53, Neg. LLF: 84.06418794938473
Optimization terminated successfully (Exit mode 0)
Current function value: 84.06418794938473
Iterations: 9
Function evaluations: 53
Gradient evaluations: 9
Iteration: 1, Func. Count: 7, Neg. LLF: 183.9756672348717
Iteration: 2, Func. Count: 17, Neg. LLF: 83.80453963992112
Iteration: 3, Func. Count: 24, Neg. LLF: 83.40525129894337
Iteration: 4, Func. Count: 30, Neg. LLF: 83.50569661454291
Iteration: 5, Func. Count: 37, Neg. LLF: 83.6257971409357
Iteration: 6, Func. Count: 44, Neg. LLF: 83.34229217400417
Iteration: 7, Func. Count: 50, Neg. LLF: 83.34228474501141
Iteration: 8, Func. Count: 55, Neg. LLF: 83.34228478716729
Optimization terminated successfully (Exit mode 0)
Current function value: 83.34228474501141
Iterations: 8
Function evaluations: 55
Gradient evaluations: 8
Iteration: 1, Func. Count: 8, Neg. LLF: 180.62393706021612
Iteration: 2, Func. Count: 20, Neg. LLF: 83.67890533867951
Iteration: 3, Func. Count: 28, Neg. LLF: 83.47914707833189
Iteration: 4, Func. Count: 35, Neg. LLF: 86.13479657578334
Iteration: 5, Func. Count: 43, Neg. LLF: 83.39695043392433
Iteration: 6, Func. Count: 50, Neg. LLF: 83.35630065899072
Iteration: 7, Func. Count: 57, Neg. LLF: 83.35267077218423
Iteration: 8, Func. Count: 64, Neg. LLF: 83.35227751455642
Iteration: 9, Func. Count: 71, Neg. LLF: 83.35212823351684
Iteration: 10, Func. Count: 78, Neg. LLF: 83.35126907063366
Iteration: 11, Func. Count: 85, Neg. LLF: 83.34390632990741
Iteration: 12, Func. Count: 92, Neg. LLF: 83.34241619184621
Iteration: 13, Func. Count: 99, Neg. LLF: 83.34228665922963
Iteration: 14, Func. Count: 106, Neg. LLF: 83.34228475892641
Iteration: 15, Func. Count: 112, Neg. LLF: 83.34228471699288
Optimization terminated successfully (Exit mode 0)
Current function value: 83.34228475892641
Iterations: 15
Function evaluations: 112
Gradient evaluations: 15
Iteration: 1, Func. Count: 9, Neg. LLF: 178.58490775169946
Iteration: 2, Func. Count: 22, Neg. LLF: 83.50050433709093
Iteration: 3, Func. Count: 30, Neg. LLF: 83.62211723798882
Iteration: 4, Func. Count: 39, Neg. LLF: 93.32308047890264
Iteration: 5, Func. Count: 48, Neg. LLF: 83.37177728540243
Iteration: 6, Func. Count: 56, Neg. LLF: 83.37046671597632
Iteration: 7, Func. Count: 64, Neg. LLF: 83.36244809808153
Iteration: 8, Func. Count: 72, Neg. LLF: 83.34974300703786
Iteration: 9, Func. Count: 80, Neg. LLF: 83.34950912853454
Iteration: 10, Func. Count: 88, Neg. LLF: 83.34905361677737
Iteration: 11, Func. Count: 96, Neg. LLF: 83.34854915192788
Iteration: 12, Func. Count: 104, Neg. LLF: 83.34533557957367
Iteration: 13, Func. Count: 112, Neg. LLF: 83.34445292503788
Iteration: 14, Func. Count: 120, Neg. LLF: 83.34237877692581
Iteration: 15, Func. Count: 128, Neg. LLF: 83.34228570457697
Iteration: 16, Func. Count: 136, Neg. LLF: 83.34228546744345
Optimization terminated successfully (Exit mode 0)
Current function value: 83.34228546744345
Iterations: 16
Function evaluations: 136
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 167.96605834532235
Iteration: 2, Func. Count: 24, Neg. LLF: 84.39126813161258
Iteration: 3, Func. Count: 34, Neg. LLF: 83.41188989185302
Iteration: 4, Func. Count: 43, Neg. LLF: 83.39723720176966
Iteration: 5, Func. Count: 53, Neg. LLF: 83.49179896114492
Iteration: 6, Func. Count: 63, Neg. LLF: 83.22431406155123
Iteration: 7, Func. Count: 72, Neg. LLF: 83.22268343960243
Iteration: 8, Func. Count: 81, Neg. LLF: 83.22265754206246
Iteration: 9, Func. Count: 90, Neg. LLF: 83.22265510271643
Iteration: 10, Func. Count: 98, Neg. LLF: 83.22265508973338
Optimization terminated successfully (Exit mode 0)
Current function value: 83.22265510271643
Iterations: 10
Function evaluations: 98
Gradient evaluations: 10
Iteration: 1, Func. Count: 7, Neg. LLF: 115.9143861313927
Iteration: 2, Func. Count: 16, Neg. LLF: 110.06733351816739
Iteration: 3, Func. Count: 24, Neg. LLF: 84.21337076805162
Iteration: 4, Func. Count: 30, Neg. LLF: 84.57700100359402
Iteration: 5, Func. Count: 37, Neg. LLF: 88.08483563864561
Iteration: 6, Func. Count: 44, Neg. LLF: 83.99119593132377
Iteration: 7, Func. Count: 50, Neg. LLF: 84.01526113761727
Iteration: 8, Func. Count: 57, Neg. LLF: 83.98560679169998
Iteration: 9, Func. Count: 63, Neg. LLF: 83.9854844517055
Iteration: 10, Func. Count: 69, Neg. LLF: 83.98547353554684
Iteration: 11, Func. Count: 75, Neg. LLF: 83.98547282533815
Optimization terminated successfully (Exit mode 0)
Current function value: 83.98547282533815
Iterations: 11
Function evaluations: 75
Gradient evaluations: 11
Iteration: 1, Func. Count: 8, Neg. LLF: 184.16045617720107
Iteration: 2, Func. Count: 19, Neg. LLF: 83.85665304356358
Iteration: 3, Func. Count: 27, Neg. LLF: 83.40418569693317
Iteration: 4, Func. Count: 34, Neg. LLF: 83.34618447188288
Iteration: 5, Func. Count: 41, Neg. LLF: 83.88228827103332
Iteration: 6, Func. Count: 49, Neg. LLF: 83.34228555536681
Iteration: 7, Func. Count: 56, Neg. LLF: 83.34228474541261
Optimization terminated successfully (Exit mode 0)
Current function value: 83.34228474541261
Iterations: 7
Function evaluations: 56
Gradient evaluations: 7
Iteration: 1, Func. Count: 9, Neg. LLF: 180.39426990938543
Iteration: 2, Func. Count: 22, Neg. LLF: 83.71729823497702
Iteration: 3, Func. Count: 31, Neg. LLF: 83.46934465586735
Iteration: 4, Func. Count: 39, Neg. LLF: 85.21983083902639
Iteration: 5, Func. Count: 48, Neg. LLF: 83.45492032506607
Iteration: 6, Func. Count: 57, Neg. LLF: 83.35185287509809
Iteration: 7, Func. Count: 65, Neg. LLF: 83.35166407062468
Iteration: 8, Func. Count: 73, Neg. LLF: 83.35008235169873
Iteration: 9, Func. Count: 81, Neg. LLF: 83.3450702206934
Iteration: 10, Func. Count: 89, Neg. LLF: 83.34387976145578
Iteration: 11, Func. Count: 97, Neg. LLF: 83.34231217138795
Iteration: 12, Func. Count: 105, Neg. LLF: 83.34228568712325
Iteration: 13, Func. Count: 113, Neg. LLF: 83.34228474506536
Optimization terminated successfully (Exit mode 0)
Current function value: 83.34228474506536
Iterations: 13
Function evaluations: 113
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 131.21331297276095
Iteration: 2, Func. Count: 24, Neg. LLF: 84.79608107420964
Iteration: 3, Func. Count: 34, Neg. LLF: 83.60116570616019
Iteration: 4, Func. Count: 43, Neg. LLF: 84.97124809343909
Iteration: 5, Func. Count: 53, Neg. LLF: 84.71387166767626
Iteration: 6, Func. Count: 64, Neg. LLF: 83.30694407403804
Iteration: 7, Func. Count: 74, Neg. LLF: 83.22808443425579
Iteration: 8, Func. Count: 83, Neg. LLF: 83.09400432702115
Iteration: 9, Func. Count: 92, Neg. LLF: 83.08738573047818
Iteration: 10, Func. Count: 101, Neg. LLF: 83.08062695722062
Iteration: 11, Func. Count: 110, Neg. LLF: 83.08028355608461
Iteration: 12, Func. Count: 119, Neg. LLF: 83.08024779716952
Iteration: 13, Func. Count: 127, Neg. LLF: 83.0802477662728
Optimization terminated successfully (Exit mode 0)
Current function value: 83.08024779716952
Iterations: 13
Function evaluations: 127
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 153.35182662845685
Iteration: 2, Func. Count: 26, Neg. LLF: 83.78341083035396
Iteration: 3, Func. Count: 37, Neg. LLF: 83.45156687439889
Iteration: 4, Func. Count: 47, Neg. LLF: 83.45673259693562
Iteration: 5, Func. Count: 58, Neg. LLF: 256.8282646975306
Iteration: 6, Func. Count: 70, Neg. LLF: 83.28345179116027
Iteration: 7, Func. Count: 81, Neg. LLF: 83.22223637813781
Iteration: 8, Func. Count: 91, Neg. LLF: 83.18745580440401
Iteration: 9, Func. Count: 101, Neg. LLF: 83.55649710496581
Iteration: 10, Func. Count: 112, Neg. LLF: 83.16012882313294
Iteration: 11, Func. Count: 122, Neg. LLF: 83.12357719757384
Iteration: 12, Func. Count: 132, Neg. LLF: 83.1055063018198
Iteration: 13, Func. Count: 142, Neg. LLF: 83.09980692739624
Iteration: 14, Func. Count: 152, Neg. LLF: 83.09856698046988
Iteration: 15, Func. Count: 162, Neg. LLF: 83.09839327262709
Iteration: 16, Func. Count: 172, Neg. LLF: 83.09839092156389
Iteration: 17, Func. Count: 181, Neg. LLF: 83.09839090964331
Optimization terminated successfully (Exit mode 0)
Current function value: 83.09839092156389
Iterations: 17
Function evaluations: 181
Gradient evaluations: 17
Iteration: 1, Func. Count: 8, Neg. LLF: 121.88334208946004
Iteration: 2, Func. Count: 18, Neg. LLF: 131.1129342446279
Iteration: 3, Func. Count: 27, Neg. LLF: 84.20788878492114
Iteration: 4, Func. Count: 34, Neg. LLF: 84.70864139306234
Iteration: 5, Func. Count: 42, Neg. LLF: 85.83872634670668
Iteration: 6, Func. Count: 50, Neg. LLF: 84.07598042787365
Iteration: 7, Func. Count: 58, Neg. LLF: 83.98578773683744
Iteration: 8, Func. Count: 65, Neg. LLF: 83.9854994187245
Iteration: 9, Func. Count: 72, Neg. LLF: 83.98547355340308
Iteration: 10, Func. Count: 79, Neg. LLF: 83.98547287976636
Optimization terminated successfully (Exit mode 0)
Current function value: 83.98547287976636
Iterations: 10
Function evaluations: 79
Gradient evaluations: 10
Iteration: 1, Func. Count: 9, Neg. LLF: 184.38160301771646
Iteration: 2, Func. Count: 21, Neg. LLF: 83.8339768930083
Iteration: 3, Func. Count: 30, Neg. LLF: 83.4032205304559
Iteration: 4, Func. Count: 38, Neg. LLF: 83.78211748699302
Iteration: 5, Func. Count: 47, Neg. LLF: 83.34563495585444
Iteration: 6, Func. Count: 56, Neg. LLF: 83.34228474503966
Iteration: 7, Func. Count: 63, Neg. LLF: 83.34228478734968
Optimization terminated successfully (Exit mode 0)
Current function value: 83.34228474503966
Iterations: 7
Function evaluations: 63
Gradient evaluations: 7
Iteration: 1, Func. Count: 10, Neg. LLF: 180.57603411491567
Iteration: 2, Func. Count: 24, Neg. LLF: 83.73581941299751
Iteration: 3, Func. Count: 34, Neg. LLF: 83.46391834433446
Iteration: 4, Func. Count: 43, Neg. LLF: 85.22433360248544
Iteration: 5, Func. Count: 53, Neg. LLF: 83.43424356012389
Iteration: 6, Func. Count: 63, Neg. LLF: 83.35190421417194
Iteration: 7, Func. Count: 72, Neg. LLF: 83.35171312397947
Iteration: 8, Func. Count: 81, Neg. LLF: 83.35024157358693
Iteration: 9, Func. Count: 90, Neg. LLF: 83.3423852774572
Iteration: 10, Func. Count: 99, Neg. LLF: 83.3423094995873
Iteration: 11, Func. Count: 108, Neg. LLF: 83.3423054387336
Iteration: 12, Func. Count: 117, Neg. LLF: 83.34228471356661
Optimization terminated successfully (Exit mode 0)
Current function value: 83.3422847552259
Iterations: 12
Function evaluations: 117
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 130.94253584556284
Iteration: 2, Func. Count: 26, Neg. LLF: 85.35889490518458
Iteration: 3, Func. Count: 37, Neg. LLF: 83.6004493799575
Iteration: 4, Func. Count: 47, Neg. LLF: 84.78969162830124
Iteration: 5, Func. Count: 58, Neg. LLF: 84.53112862471149
Iteration: 6, Func. Count: 70, Neg. LLF: 83.30977281833576
Iteration: 7, Func. Count: 81, Neg. LLF: 83.24997049278849
Iteration: 8, Func. Count: 91, Neg. LLF: 83.2491700760243
Iteration: 9, Func. Count: 102, Neg. LLF: 83.24556863126146
Iteration: 10, Func. Count: 112, Neg. LLF: 83.245396827642
Iteration: 11, Func. Count: 122, Neg. LLF: 83.24526584463153
Iteration: 12, Func. Count: 132, Neg. LLF: 83.24525361942572
Iteration: 13, Func. Count: 142, Neg. LLF: 83.24525286480714
Optimization terminated successfully (Exit mode 0)
Current function value: 83.24525286480714
Iterations: 13
Function evaluations: 142
Gradient evaluations: 13
Iteration: 1, Func. Count: 12, Neg. LLF: 122.26481946880679
Iteration: 2, Func. Count: 28, Neg. LLF: 108.89932349615272
Iteration: 3, Func. Count: 41, Neg. LLF: 92.70031335342597
Iteration: 4, Func. Count: 53, Neg. LLF: 83.27747403851197
Iteration: 5, Func. Count: 64, Neg. LLF: 83.61374620771895
Iteration: 6, Func. Count: 76, Neg. LLF: 83.22828326996232
Iteration: 7, Func. Count: 87, Neg. LLF: 83.22597231821474
Iteration: 8, Func. Count: 98, Neg. LLF: 83.22411326422699
Iteration: 9, Func. Count: 109, Neg. LLF: 83.2232330450569
Iteration: 10, Func. Count: 120, Neg. LLF: 83.22311921396445
Iteration: 11, Func. Count: 131, Neg. LLF: 83.22277026872968
Iteration: 12, Func. Count: 142, Neg. LLF: 83.22267447327725
Iteration: 13, Func. Count: 153, Neg. LLF: 83.2226551812139
Iteration: 14, Func. Count: 163, Neg. LLF: 83.22265516815597
Optimization terminated successfully (Exit mode 0)
Current function value: 83.2226551812139
Iterations: 14
Function evaluations: 163
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 113.51307546639198
Iteration: 2, Func. Count: 20, Neg. LLF: 96.16702826898295
Iteration: 3, Func. Count: 29, Neg. LLF: 84.19861295288513
Iteration: 4, Func. Count: 37, Neg. LLF: 88.67715787256596
Iteration: 5, Func. Count: 46, Neg. LLF: 84.42125796099415
Iteration: 6, Func. Count: 55, Neg. LLF: 84.75098267944749
Iteration: 7, Func. Count: 64, Neg. LLF: 83.99877934442624
Iteration: 8, Func. Count: 72, Neg. LLF: 83.98579697696681
Iteration: 9, Func. Count: 80, Neg. LLF: 83.98551052129181
Iteration: 10, Func. Count: 88, Neg. LLF: 83.98547619372235
Iteration: 11, Func. Count: 96, Neg. LLF: 83.98547294518245
Iteration: 12, Func. Count: 103, Neg. LLF: 83.98547298329746
Optimization terminated successfully (Exit mode 0)
Current function value: 83.98547294518245
Iterations: 12
Function evaluations: 103
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 184.12769320174442
Iteration: 2, Func. Count: 23, Neg. LLF: 83.82041323552005
Iteration: 3, Func. Count: 33, Neg. LLF: 83.39990568923457
Iteration: 4, Func. Count: 42, Neg. LLF: 83.58238958952816
Iteration: 5, Func. Count: 52, Neg. LLF: 83.46347358624193
Iteration: 6, Func. Count: 62, Neg. LLF: 83.34228723651911
Iteration: 7, Func. Count: 71, Neg. LLF: 83.34228474278731
Iteration: 8, Func. Count: 79, Neg. LLF: 83.34228478501393
Optimization terminated successfully (Exit mode 0)
Current function value: 83.34228474278731
Iterations: 8
Function evaluations: 79
Gradient evaluations: 8
Iteration: 1, Func. Count: 11, Neg. LLF: 180.64187107487376
Iteration: 2, Func. Count: 26, Neg. LLF: 83.70402229038203
Iteration: 3, Func. Count: 37, Neg. LLF: 83.47017212130075
Iteration: 4, Func. Count: 47, Neg. LLF: 85.6465877717265
Iteration: 5, Func. Count: 58, Neg. LLF: 83.40681015529653
Iteration: 6, Func. Count: 69, Neg. LLF: 83.35203272859985
Iteration: 7, Func. Count: 79, Neg. LLF: 83.35185467358932
Iteration: 8, Func. Count: 89, Neg. LLF: 83.35105019671981
Iteration: 9, Func. Count: 99, Neg. LLF: 83.34902604076642
Iteration: 10, Func. Count: 109, Neg. LLF: 83.34507666735618
Iteration: 11, Func. Count: 119, Neg. LLF: 83.34228580473365
Iteration: 12, Func. Count: 129, Neg. LLF: 83.34228474456805
Iteration: 13, Func. Count: 138, Neg. LLF: 83.34228470270621
Optimization terminated successfully (Exit mode 0)
Current function value: 83.34228474456805
Iterations: 13
Function evaluations: 138
Gradient evaluations: 13
Iteration: 1, Func. Count: 12, Neg. LLF: 130.50981594345535
Iteration: 2, Func. Count: 28, Neg. LLF: 85.66796812221659
Iteration: 3, Func. Count: 40, Neg. LLF: 83.64332350151932
Iteration: 4, Func. Count: 52, Neg. LLF: 83.84735418819119
Iteration: 5, Func. Count: 64, Neg. LLF: 83.30056343299096
Iteration: 6, Func. Count: 75, Neg. LLF: 86.39067192867894
Iteration: 7, Func. Count: 87, Neg. LLF: 83.26206603438206
Iteration: 8, Func. Count: 98, Neg. LLF: 83.23505598917384
Iteration: 9, Func. Count: 109, Neg. LLF: 83.21350644277082
Iteration: 10, Func. Count: 120, Neg. LLF: 83.08057048890326
Iteration: 11, Func. Count: 131, Neg. LLF: 83.08030456100443
Iteration: 12, Func. Count: 142, Neg. LLF: 83.08025481276759
Iteration: 13, Func. Count: 153, Neg. LLF: 83.08024808864292
Iteration: 14, Func. Count: 163, Neg. LLF: 83.0802480575336
Optimization terminated successfully (Exit mode 0)
Current function value: 83.08024808864292
Iterations: 14
Function evaluations: 163
Gradient evaluations: 14
Iteration: 1, Func. Count: 13, Neg. LLF: 122.19575917260886
Iteration: 2, Func. Count: 30, Neg. LLF: 109.95450269432096
Iteration: 3, Func. Count: 44, Neg. LLF: 92.68506000443061
Iteration: 4, Func. Count: 57, Neg. LLF: 83.2789146513882
Iteration: 5, Func. Count: 69, Neg. LLF: 83.60523445650283
Iteration: 6, Func. Count: 82, Neg. LLF: 83.22874500066241
Iteration: 7, Func. Count: 94, Neg. LLF: 83.22645772679974
Iteration: 8, Func. Count: 106, Neg. LLF: 83.22398074677716
Iteration: 9, Func. Count: 118, Neg. LLF: 83.22325764386343
Iteration: 10, Func. Count: 130, Neg. LLF: 83.22313842213073
Iteration: 11, Func. Count: 142, Neg. LLF: 83.22276636929548
Iteration: 12, Func. Count: 154, Neg. LLF: 83.22267279423782
Iteration: 13, Func. Count: 166, Neg. LLF: 83.22265519551769
Iteration: 14, Func. Count: 177, Neg. LLF: 83.22265518244994
Optimization terminated successfully (Exit mode 0)
Current function value: 83.22265519551769
Iterations: 14
Function evaluations: 177
Gradient evaluations: 14
Iteration: 1, Func. Count: 6, Neg. LLF: 130.82194534356935
Iteration: 2, Func. Count: 14, Neg. LLF: 138.8870890983547
Iteration: 3, Func. Count: 21, Neg. LLF: 84.35889182868618
Iteration: 4, Func. Count: 26, Neg. LLF: 1298.0449088062308
Iteration: 5, Func. Count: 32, Neg. LLF: 84.4191266297164
Iteration: 6, Func. Count: 38, Neg. LLF: 84.06896691516187
Iteration: 7, Func. Count: 44, Neg. LLF: 84.05574378216272
Iteration: 8, Func. Count: 49, Neg. LLF: 84.0555306815529
Iteration: 9, Func. Count: 54, Neg. LLF: 84.0555270124522
Iteration: 10, Func. Count: 59, Neg. LLF: 84.05552634758942
Optimization terminated successfully (Exit mode 0)
Current function value: 84.05552634758942
Iterations: 10
Function evaluations: 59
Gradient evaluations: 10
Iteration: 1, Func. Count: 7, Neg. LLF: 185.50844018247628
Iteration: 2, Func. Count: 17, Neg. LLF: 84.3191933073437
Iteration: 3, Func. Count: 24, Neg. LLF: 83.39015434866361
Iteration: 4, Func. Count: 30, Neg. LLF: 84.39021510053878
Iteration: 5, Func. Count: 37, Neg. LLF: 83.3486655847254
Iteration: 6, Func. Count: 43, Neg. LLF: 83.34228897595887
Iteration: 7, Func. Count: 49, Neg. LLF: 83.34228475746706
Iteration: 8, Func. Count: 54, Neg. LLF: 83.34228480002503
Optimization terminated successfully (Exit mode 0)
Current function value: 83.34228475746706
Iterations: 8
Function evaluations: 54
Gradient evaluations: 8
Iteration: 1, Func. Count: 8, Neg. LLF: 181.73452809019435
Iteration: 2, Func. Count: 20, Neg. LLF: 84.09001730879537
Iteration: 3, Func. Count: 28, Neg. LLF: 83.46541330058426
Iteration: 4, Func. Count: 35, Neg. LLF: 83.92921546359906
Iteration: 5, Func. Count: 43, Neg. LLF: 83.37640485404538
Iteration: 6, Func. Count: 50, Neg. LLF: 83.35427046209908
Iteration: 7, Func. Count: 57, Neg. LLF: 83.35328978988109
Iteration: 8, Func. Count: 64, Neg. LLF: 83.3531184824967
Iteration: 9, Func. Count: 71, Neg. LLF: 83.35280131357186
Iteration: 10, Func. Count: 78, Neg. LLF: 83.35150806922064
Iteration: 11, Func. Count: 85, Neg. LLF: 83.34827966764607
Iteration: 12, Func. Count: 92, Neg. LLF: 83.3456735012197
Iteration: 13, Func. Count: 99, Neg. LLF: 83.34229202461752
Iteration: 14, Func. Count: 106, Neg. LLF: 83.34228475045218
Iteration: 15, Func. Count: 112, Neg. LLF: 83.34228470840482
Optimization terminated successfully (Exit mode 0)
Current function value: 83.34228475045218
Iterations: 15
Function evaluations: 112
Gradient evaluations: 15
Iteration: 1, Func. Count: 9, Neg. LLF: 179.15354477812716
Iteration: 2, Func. Count: 22, Neg. LLF: 83.90352339032422
Iteration: 3, Func. Count: 31, Neg. LLF: 83.37507839608853
Iteration: 4, Func. Count: 39, Neg. LLF: 83.37818537973651
Iteration: 5, Func. Count: 48, Neg. LLF: 83.3723100305988
Iteration: 6, Func. Count: 56, Neg. LLF: 83.36543879477784
Iteration: 7, Func. Count: 64, Neg. LLF: 83.35236860518395
Iteration: 8, Func. Count: 72, Neg. LLF: 83.35231500436505
Iteration: 9, Func. Count: 80, Neg. LLF: 83.35220627524066
Iteration: 10, Func. Count: 88, Neg. LLF: 83.35143320885601
Iteration: 11, Func. Count: 96, Neg. LLF: 83.34402915577196
Iteration: 12, Func. Count: 104, Neg. LLF: 83.34234788235356
Iteration: 13, Func. Count: 112, Neg. LLF: 83.3422884371737
Iteration: 14, Func. Count: 120, Neg. LLF: 83.34228527380742
Iteration: 15, Func. Count: 127, Neg. LLF: 83.3422852326722
Optimization terminated successfully (Exit mode 0)
Current function value: 83.34228527380742
Iterations: 15
Function evaluations: 127
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 177.03799927703648
Iteration: 2, Func. Count: 24, Neg. LLF: 83.74889256083749
Iteration: 3, Func. Count: 34, Neg. LLF: 83.39982605288493
Iteration: 4, Func. Count: 43, Neg. LLF: 83.39931546384908
Iteration: 5, Func. Count: 53, Neg. LLF: 83.38291356841614
Iteration: 6, Func. Count: 62, Neg. LLF: 83.38234854840726
Iteration: 7, Func. Count: 71, Neg. LLF: 83.38072924872861
Iteration: 8, Func. Count: 80, Neg. LLF: 83.37358017479984
Iteration: 9, Func. Count: 89, Neg. LLF: 83.37078276430388
Iteration: 10, Func. Count: 98, Neg. LLF: 83.36399512778567
Iteration: 11, Func. Count: 107, Neg. LLF: 83.36327175300627
Iteration: 12, Func. Count: 116, Neg. LLF: 83.36159756454063
Iteration: 13, Func. Count: 125, Neg. LLF: 83.35720244254394
Iteration: 14, Func. Count: 134, Neg. LLF: 83.35248198765953
Iteration: 15, Func. Count: 143, Neg. LLF: 83.35045787007648
Iteration: 16, Func. Count: 152, Neg. LLF: 83.35018776050273
Iteration: 17, Func. Count: 161, Neg. LLF: 83.3499503919872
Iteration: 18, Func. Count: 170, Neg. LLF: 83.3489609414915
Iteration: 19, Func. Count: 179, Neg. LLF: 83.34664432722538
Iteration: 20, Func. Count: 188, Neg. LLF: 83.34479968555489
Iteration: 21, Func. Count: 197, Neg. LLF: 83.34231399676382
Iteration: 22, Func. Count: 206, Neg. LLF: 83.34228579190528
Iteration: 23, Func. Count: 215, Neg. LLF: 83.34228476580874
Iteration: 24, Func. Count: 223, Neg. LLF: 83.34228472549971
Optimization terminated successfully (Exit mode 0)
Current function value: 83.34228476580874
Iterations: 24
Function evaluations: 223
Gradient evaluations: 24
Iteration: 1, Func. Count: 7, Neg. LLF: 115.84129595095071
Iteration: 2, Func. Count: 16, Neg. LLF: 103.1158373061906
Iteration: 3, Func. Count: 24, Neg. LLF: 84.34788012803561
Iteration: 4, Func. Count: 30, Neg. LLF: 85.87623264106674
Iteration: 5, Func. Count: 37, Neg. LLF: 84.22650495409854
Iteration: 6, Func. Count: 44, Neg. LLF: 84.1545809775753
Iteration: 7, Func. Count: 51, Neg. LLF: 84.08743923591291
Iteration: 8, Func. Count: 58, Neg. LLF: 84.05555719544893
Iteration: 9, Func. Count: 64, Neg. LLF: 84.0555233638053
Iteration: 10, Func. Count: 70, Neg. LLF: 84.05551262280007
Iteration: 11, Func. Count: 76, Neg. LLF: 84.05551155273592
Iteration: 12, Func. Count: 81, Neg. LLF: 84.05551155273497
Optimization terminated successfully (Exit mode 0)
Current function value: 84.05551155273592
Iterations: 12
Function evaluations: 81
Gradient evaluations: 12
Iteration: 1, Func. Count: 8, Neg. LLF: 184.37027722231687
Iteration: 2, Func. Count: 19, Neg. LLF: 83.80617210482468
Iteration: 3, Func. Count: 27, Neg. LLF: 83.41004149781746
Iteration: 4, Func. Count: 34, Neg. LLF: 83.86283091955585
Iteration: 5, Func. Count: 42, Neg. LLF: 83.34242335273224
Iteration: 6, Func. Count: 50, Neg. LLF: 83.34228474326244
Iteration: 7, Func. Count: 56, Neg. LLF: 83.3422847855441
Optimization terminated successfully (Exit mode 0)
Current function value: 83.34228474326244
Iterations: 7
Function evaluations: 56
Gradient evaluations: 7
Iteration: 1, Func. Count: 9, Neg. LLF: 180.2363595700276
Iteration: 2, Func. Count: 22, Neg. LLF: 83.73021768227873
Iteration: 3, Func. Count: 31, Neg. LLF: 83.45488868541376
Iteration: 4, Func. Count: 39, Neg. LLF: 84.52920988156082
Iteration: 5, Func. Count: 48, Neg. LLF: 83.47345511558498
Iteration: 6, Func. Count: 57, Neg. LLF: 83.35203821674764
Iteration: 7, Func. Count: 65, Neg. LLF: 83.35182430679517
Iteration: 8, Func. Count: 73, Neg. LLF: 83.34990159636831
Iteration: 9, Func. Count: 81, Neg. LLF: 83.34252442183012
Iteration: 10, Func. Count: 89, Neg. LLF: 83.34239250008211
Iteration: 11, Func. Count: 97, Neg. LLF: 83.34228633101964
Iteration: 12, Func. Count: 105, Neg. LLF: 83.34228476221294
Iteration: 13, Func. Count: 112, Neg. LLF: 83.34228472038164
Optimization terminated successfully (Exit mode 0)
Current function value: 83.34228476221294
Iterations: 13
Function evaluations: 112
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 178.41590934462843
Iteration: 2, Func. Count: 24, Neg. LLF: 83.58996299365829
Iteration: 3, Func. Count: 33, Neg. LLF: 83.41365548294628
Iteration: 4, Func. Count: 42, Neg. LLF: 86.984663442833
Iteration: 5, Func. Count: 52, Neg. LLF: 83.37423499369186
Iteration: 6, Func. Count: 61, Neg. LLF: 83.37266478784814
Iteration: 7, Func. Count: 70, Neg. LLF: 83.36496407376411
Iteration: 8, Func. Count: 79, Neg. LLF: 83.34860523344237
Iteration: 9, Func. Count: 88, Neg. LLF: 83.34836537223491
Iteration: 10, Func. Count: 97, Neg. LLF: 83.34786119048734
Iteration: 11, Func. Count: 106, Neg. LLF: 83.34738014989291
Iteration: 12, Func. Count: 115, Neg. LLF: 83.3446823790399
Iteration: 13, Func. Count: 124, Neg. LLF: 83.34357669601596
Iteration: 14, Func. Count: 133, Neg. LLF: 83.34228582138684
Iteration: 15, Func. Count: 142, Neg. LLF: 83.34228485591431
Optimization terminated successfully (Exit mode 0)
Current function value: 83.34228485591431
Iterations: 15
Function evaluations: 142
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 167.5068987958088
Iteration: 2, Func. Count: 26, Neg. LLF: 84.16161774243139
Iteration: 3, Func. Count: 37, Neg. LLF: 83.42221974062572
Iteration: 4, Func. Count: 47, Neg. LLF: 83.50284631265674
Iteration: 5, Func. Count: 58, Neg. LLF: 83.61466230726272
Iteration: 6, Func. Count: 69, Neg. LLF: 83.22470737724925
Iteration: 7, Func. Count: 79, Neg. LLF: 83.22269700593593
Iteration: 8, Func. Count: 89, Neg. LLF: 83.22266007736826
Iteration: 9, Func. Count: 99, Neg. LLF: 83.22265515800486
Iteration: 10, Func. Count: 108, Neg. LLF: 83.22265514484597
Optimization terminated successfully (Exit mode 0)
Current function value: 83.22265515800486
Iterations: 10
Function evaluations: 108
Gradient evaluations: 10
Iteration: 1, Func. Count: 8, Neg. LLF: 123.16877757987982
Iteration: 2, Func. Count: 18, Neg. LLF: 127.66083311012748
Iteration: 3, Func. Count: 27, Neg. LLF: 84.3068735701216
Iteration: 4, Func. Count: 34, Neg. LLF: 84.18453056416794
Iteration: 5, Func. Count: 42, Neg. LLF: 84.17596025280749
Iteration: 6, Func. Count: 50, Neg. LLF: 84.08856062998116
Iteration: 7, Func. Count: 58, Neg. LLF: 83.98757827527207
Iteration: 8, Func. Count: 66, Neg. LLF: 83.98550287100312
Iteration: 9, Func. Count: 73, Neg. LLF: 83.98547580193592
Iteration: 10, Func. Count: 80, Neg. LLF: 83.98547283078224
Iteration: 11, Func. Count: 86, Neg. LLF: 83.98547283078021
Optimization terminated successfully (Exit mode 0)
Current function value: 83.98547283078224
Iterations: 11
Function evaluations: 86
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 184.57413084143894
Iteration: 2, Func. Count: 21, Neg. LLF: 83.85675921889526
Iteration: 3, Func. Count: 30, Neg. LLF: 83.40672673272422
Iteration: 4, Func. Count: 38, Neg. LLF: 83.73543700899997
Iteration: 5, Func. Count: 47, Neg. LLF: 83.34385018652
Iteration: 6, Func. Count: 56, Neg. LLF: 83.34228474244554
Optimization terminated successfully (Exit mode 0)
Current function value: 83.34228474244554
Iterations: 6
Function evaluations: 56
Gradient evaluations: 6
Iteration: 1, Func. Count: 10, Neg. LLF: 180.02851973957738
Iteration: 2, Func. Count: 24, Neg. LLF: 83.77612044537688
Iteration: 3, Func. Count: 34, Neg. LLF: 83.45136464493739
Iteration: 4, Func. Count: 43, Neg. LLF: 84.15557505882882
Iteration: 5, Func. Count: 53, Neg. LLF: 83.6041760491472
Iteration: 6, Func. Count: 63, Neg. LLF: 83.35223799849487
Iteration: 7, Func. Count: 72, Neg. LLF: 83.35194411630196
Iteration: 8, Func. Count: 81, Neg. LLF: 83.35151667936728
Iteration: 9, Func. Count: 90, Neg. LLF: 83.34747808174158
Iteration: 10, Func. Count: 99, Neg. LLF: 83.34245175800311
Iteration: 11, Func. Count: 108, Neg. LLF: 83.34231857151671
Iteration: 12, Func. Count: 117, Neg. LLF: 83.3422866050517
Iteration: 13, Func. Count: 126, Neg. LLF: 83.34228488319967
Iteration: 14, Func. Count: 134, Neg. LLF: 83.34228484167937
Optimization terminated successfully (Exit mode 0)
Current function value: 83.34228488319967
Iterations: 14
Function evaluations: 134
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 132.33247434103353
Iteration: 2, Func. Count: 26, Neg. LLF: 84.5825451316104
Iteration: 3, Func. Count: 37, Neg. LLF: 83.39616570850347
Iteration: 4, Func. Count: 47, Neg. LLF: 84.0198570024903
Iteration: 5, Func. Count: 58, Neg. LLF: 85.16130881412184
Iteration: 6, Func. Count: 69, Neg. LLF: 83.25140027323867
Iteration: 7, Func. Count: 79, Neg. LLF: 83.24661137291521
Iteration: 8, Func. Count: 89, Neg. LLF: 83.24526033646531
Iteration: 9, Func. Count: 99, Neg. LLF: 83.2452529500549
Iteration: 10, Func. Count: 108, Neg. LLF: 83.24525294255054
Optimization terminated successfully (Exit mode 0)
Current function value: 83.2452529500549
Iterations: 10
Function evaluations: 108
Gradient evaluations: 10
Iteration: 1, Func. Count: 12, Neg. LLF: 152.85900450665372
Iteration: 2, Func. Count: 28, Neg. LLF: 83.66291885363701
Iteration: 3, Func. Count: 40, Neg. LLF: 83.48694298519159
Iteration: 4, Func. Count: 51, Neg. LLF: 83.64032319277506
Iteration: 5, Func. Count: 63, Neg. LLF: 687.6605008616937
Iteration: 6, Func. Count: 76, Neg. LLF: 83.34027404438672
Iteration: 7, Func. Count: 88, Neg. LLF: 83.21308251360207
Iteration: 8, Func. Count: 99, Neg. LLF: 83.32891217622058
Iteration: 9, Func. Count: 111, Neg. LLF: 83.52459936861402
Iteration: 10, Func. Count: 123, Neg. LLF: 83.19422962982745
Iteration: 11, Func. Count: 135, Neg. LLF: 83.2548270939131
Iteration: 12, Func. Count: 147, Neg. LLF: 83.15368249006778
Iteration: 13, Func. Count: 158, Neg. LLF: 83.12022508517933
Iteration: 14, Func. Count: 169, Neg. LLF: 83.10933431442393
Iteration: 15, Func. Count: 180, Neg. LLF: 83.0991643946405
Iteration: 16, Func. Count: 191, Neg. LLF: 83.09846438859753
Iteration: 17, Func. Count: 202, Neg. LLF: 83.0983922453307
Iteration: 18, Func. Count: 213, Neg. LLF: 83.09839066299999
Iteration: 19, Func. Count: 223, Neg. LLF: 83.09839065137346
Optimization terminated successfully (Exit mode 0)
Current function value: 83.09839066299999
Iterations: 19
Function evaluations: 223
Gradient evaluations: 19
Iteration: 1, Func. Count: 9, Neg. LLF: 130.4208732115942
Iteration: 2, Func. Count: 20, Neg. LLF: 135.00185340815264
Iteration: 3, Func. Count: 30, Neg. LLF: 84.22927409764141
Iteration: 4, Func. Count: 38, Neg. LLF: 85.18679218356527
Iteration: 5, Func. Count: 47, Neg. LLF: 109.88442260144112
Iteration: 6, Func. Count: 56, Neg. LLF: 84.00658286126986
Iteration: 7, Func. Count: 65, Neg. LLF: 83.9902782147206
Iteration: 8, Func. Count: 74, Neg. LLF: 83.98550717669832
Iteration: 9, Func. Count: 82, Neg. LLF: 83.9854742248356
Iteration: 10, Func. Count: 90, Neg. LLF: 83.98547287632123
Iteration: 11, Func. Count: 97, Neg. LLF: 83.9854729719161
Optimization terminated successfully (Exit mode 0)
Current function value: 83.98547287632123
Iterations: 11
Function evaluations: 97
Gradient evaluations: 11
Iteration: 1, Func. Count: 10, Neg. LLF: 184.80004525741458
Iteration: 2, Func. Count: 23, Neg. LLF: 83.83433221249585
Iteration: 3, Func. Count: 33, Neg. LLF: 83.42208065084387
Iteration: 4, Func. Count: 42, Neg. LLF: 83.80797408979976
Iteration: 5, Func. Count: 52, Neg. LLF: 83.3447577199915
Iteration: 6, Func. Count: 62, Neg. LLF: 83.34228474593388
Iteration: 7, Func. Count: 70, Neg. LLF: 83.34228478809416
Optimization terminated successfully (Exit mode 0)
Current function value: 83.34228474593388
Iterations: 7
Function evaluations: 70
Gradient evaluations: 7
Iteration: 1, Func. Count: 11, Neg. LLF: 180.20562853653274
Iteration: 2, Func. Count: 26, Neg. LLF: 83.79958889767796
Iteration: 3, Func. Count: 37, Neg. LLF: 83.44724103321606
Iteration: 4, Func. Count: 47, Neg. LLF: 84.1645624525505
Iteration: 5, Func. Count: 58, Neg. LLF: 83.53163018779534
Iteration: 6, Func. Count: 69, Neg. LLF: 83.35225749049717
Iteration: 7, Func. Count: 79, Neg. LLF: 83.35200298887312
Iteration: 8, Func. Count: 89, Neg. LLF: 83.35107948761811
Iteration: 9, Func. Count: 99, Neg. LLF: 83.34719321736219
Iteration: 10, Func. Count: 109, Neg. LLF: 83.34445377759032
Iteration: 11, Func. Count: 119, Neg. LLF: 83.34229731932723
Iteration: 12, Func. Count: 129, Neg. LLF: 83.342284782123
Iteration: 13, Func. Count: 138, Neg. LLF: 83.34228474004553
Optimization terminated successfully (Exit mode 0)
Current function value: 83.342284782123
Iterations: 13
Function evaluations: 138
Gradient evaluations: 13
Iteration: 1, Func. Count: 12, Neg. LLF: 132.05895786750978
Iteration: 2, Func. Count: 28, Neg. LLF: 85.03367830615589
Iteration: 3, Func. Count: 40, Neg. LLF: 83.41398979072488
Iteration: 4, Func. Count: 51, Neg. LLF: 84.30732822859959
Iteration: 5, Func. Count: 63, Neg. LLF: 84.73499870857144
Iteration: 6, Func. Count: 75, Neg. LLF: 83.27924122032458
Iteration: 7, Func. Count: 86, Neg. LLF: 83.24686888261152
Iteration: 8, Func. Count: 97, Neg. LLF: 83.24547377187596
Iteration: 9, Func. Count: 108, Neg. LLF: 83.24525590624174
Iteration: 10, Func. Count: 119, Neg. LLF: 83.24525291689535
Iteration: 11, Func. Count: 129, Neg. LLF: 83.24525290923482
Optimization terminated successfully (Exit mode 0)
Current function value: 83.24525291689535
Iterations: 11
Function evaluations: 129
Gradient evaluations: 11
Iteration: 1, Func. Count: 13, Neg. LLF: 122.44105724477838
Iteration: 2, Func. Count: 30, Neg. LLF: 101.27072868594801
Iteration: 3, Func. Count: 44, Neg. LLF: 92.247159391552
Iteration: 4, Func. Count: 57, Neg. LLF: 83.2715365523825
Iteration: 5, Func. Count: 69, Neg. LLF: 83.585044236757
Iteration: 6, Func. Count: 82, Neg. LLF: 83.24886801770386
Iteration: 7, Func. Count: 95, Neg. LLF: 83.23073863621282
Iteration: 8, Func. Count: 108, Neg. LLF: 83.22329217103935
Iteration: 9, Func. Count: 120, Neg. LLF: 83.22317485498115
Iteration: 10, Func. Count: 132, Neg. LLF: 83.22272418991668
Iteration: 11, Func. Count: 144, Neg. LLF: 83.22266711100065
Iteration: 12, Func. Count: 156, Neg. LLF: 83.22265537844112
Iteration: 13, Func. Count: 167, Neg. LLF: 83.22265536552261
Optimization terminated successfully (Exit mode 0)
Current function value: 83.22265537844112
Iterations: 13
Function evaluations: 167
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 119.99366615324284
Iteration: 2, Func. Count: 22, Neg. LLF: 124.33250943198794
Iteration: 3, Func. Count: 33, Neg. LLF: 84.24225617183495
Iteration: 4, Func. Count: 42, Neg. LLF: 85.46073386733094
Iteration: 5, Func. Count: 52, Neg. LLF: 84.41439027655979
Iteration: 6, Func. Count: 62, Neg. LLF: 84.0722164323749
Iteration: 7, Func. Count: 72, Neg. LLF: 84.00526077559208
Iteration: 8, Func. Count: 82, Neg. LLF: 83.98559017179562
Iteration: 9, Func. Count: 91, Neg. LLF: 83.98547454609613
Iteration: 10, Func. Count: 100, Neg. LLF: 83.98547282844493
Iteration: 11, Func. Count: 108, Neg. LLF: 83.98547286656783
Optimization terminated successfully (Exit mode 0)
Current function value: 83.98547282844493
Iterations: 11
Function evaluations: 108
Gradient evaluations: 11
Iteration: 1, Func. Count: 11, Neg. LLF: 184.55455417703752
Iteration: 2, Func. Count: 25, Neg. LLF: 83.82138494711147
Iteration: 3, Func. Count: 36, Neg. LLF: 83.40856662478005
Iteration: 4, Func. Count: 46, Neg. LLF: 83.85532092941807
Iteration: 5, Func. Count: 57, Neg. LLF: 83.34228491095053
Iteration: 6, Func. Count: 67, Neg. LLF: 83.34228542978767
Optimization terminated successfully (Exit mode 0)
Current function value: 83.34228474602168
Iterations: 6
Function evaluations: 68
Gradient evaluations: 6
Iteration: 1, Func. Count: 12, Neg. LLF: 180.26803985993752
Iteration: 2, Func. Count: 28, Neg. LLF: 83.7625359644873
Iteration: 3, Func. Count: 40, Neg. LLF: 83.4499012583562
Iteration: 4, Func. Count: 51, Neg. LLF: 84.34423361939007
Iteration: 5, Func. Count: 63, Neg. LLF: 83.48555515133836
Iteration: 6, Func. Count: 75, Neg. LLF: 83.3521623698293
Iteration: 7, Func. Count: 86, Neg. LLF: 83.3519407902426
Iteration: 8, Func. Count: 97, Neg. LLF: 83.34976904096287
Iteration: 9, Func. Count: 108, Neg. LLF: 83.34277487671055
Iteration: 10, Func. Count: 119, Neg. LLF: 83.34250290946117
Iteration: 11, Func. Count: 130, Neg. LLF: 83.34228487864041
Iteration: 12, Func. Count: 140, Neg. LLF: 83.34228483711854
Optimization terminated successfully (Exit mode 0)
Current function value: 83.34228487864041
Iterations: 12
Function evaluations: 140
Gradient evaluations: 12
Iteration: 1, Func. Count: 13, Neg. LLF: 131.6246579517406
Iteration: 2, Func. Count: 30, Neg. LLF: 85.22761802286077
Iteration: 3, Func. Count: 43, Neg. LLF: 83.45893783439708
Iteration: 4, Func. Count: 55, Neg. LLF: 84.47444061159504
Iteration: 5, Func. Count: 68, Neg. LLF: 84.66836489137944
Iteration: 6, Func. Count: 81, Neg. LLF: 83.26366963680948
Iteration: 7, Func. Count: 93, Neg. LLF: 83.24775064860454
Iteration: 8, Func. Count: 105, Neg. LLF: 83.24533327652546
Iteration: 9, Func. Count: 117, Neg. LLF: 83.24525514790476
Iteration: 10, Func. Count: 129, Neg. LLF: 83.24525289507655
Iteration: 11, Func. Count: 140, Neg. LLF: 83.24525288741089
Optimization terminated successfully (Exit mode 0)
Current function value: 83.24525289507655
Iterations: 11
Function evaluations: 140
Gradient evaluations: 11
Iteration: 1, Func. Count: 14, Neg. LLF: 122.3689169644758
Iteration: 2, Func. Count: 32, Neg. LLF: 102.08716135678286
Iteration: 3, Func. Count: 47, Neg. LLF: 92.32659910106467
Iteration: 4, Func. Count: 61, Neg. LLF: 83.27271880701436
Iteration: 5, Func. Count: 74, Neg. LLF: 83.57549722020416
Iteration: 6, Func. Count: 88, Neg. LLF: 83.25065015598477
Iteration: 7, Func. Count: 102, Neg. LLF: 83.23062121424793
Iteration: 8, Func. Count: 116, Neg. LLF: 83.22330564304339
Iteration: 9, Func. Count: 129, Neg. LLF: 83.22318675985963
Iteration: 10, Func. Count: 142, Neg. LLF: 83.22270666941812
Iteration: 11, Func. Count: 155, Neg. LLF: 83.2226637842718
Iteration: 12, Func. Count: 168, Neg. LLF: 83.22265534844249
Iteration: 13, Func. Count: 180, Neg. LLF: 83.22265533552438
Optimization terminated successfully (Exit mode 0)
Current function value: 83.22265534844249
Iterations: 13
Function evaluations: 180
Gradient evaluations: 13
Iteration: 1, Func. Count: 7, Neg. LLF: 120.78503740804778
Iteration: 2, Func. Count: 16, Neg. LLF: 94.38813046556422
Iteration: 3, Func. Count: 23, Neg. LLF: 84.2570469531415
Iteration: 4, Func. Count: 29, Neg. LLF: 1881.856277989797
Iteration: 5, Func. Count: 36, Neg. LLF: 84.32886309140135
Iteration: 6, Func. Count: 43, Neg. LLF: 84.05983390116772
Iteration: 7, Func. Count: 50, Neg. LLF: 84.05554763877608
Iteration: 8, Func. Count: 56, Neg. LLF: 84.05552645005051
Iteration: 9, Func. Count: 61, Neg. LLF: 84.0555265035468
Optimization terminated successfully (Exit mode 0)
Current function value: 84.05552645005051
Iterations: 9
Function evaluations: 61
Gradient evaluations: 9
Iteration: 1, Func. Count: 8, Neg. LLF: 186.025612186112
Iteration: 2, Func. Count: 19, Neg. LLF: 84.06970549844371
Iteration: 3, Func. Count: 27, Neg. LLF: 83.45102826042977
Iteration: 4, Func. Count: 34, Neg. LLF: 83.50299854122926
Iteration: 5, Func. Count: 42, Neg. LLF: 83.39387633117151
Iteration: 6, Func. Count: 50, Neg. LLF: 83.34228751019252
Iteration: 7, Func. Count: 57, Neg. LLF: 83.34228474321293
Iteration: 8, Func. Count: 63, Neg. LLF: 83.34228478550338
Optimization terminated successfully (Exit mode 0)
Current function value: 83.34228474321293
Iterations: 8
Function evaluations: 63
Gradient evaluations: 8
Iteration: 1, Func. Count: 9, Neg. LLF: 182.2813985859932
Iteration: 2, Func. Count: 22, Neg. LLF: 84.00021759518366
Iteration: 3, Func. Count: 31, Neg. LLF: 83.45117821123472
Iteration: 4, Func. Count: 39, Neg. LLF: 84.25619154140854
Iteration: 5, Func. Count: 48, Neg. LLF: 83.3631064019964
Iteration: 6, Func. Count: 56, Neg. LLF: 83.35362487089037
Iteration: 7, Func. Count: 64, Neg. LLF: 83.35304743977115
Iteration: 8, Func. Count: 72, Neg. LLF: 83.35287049564303
Iteration: 9, Func. Count: 80, Neg. LLF: 83.3522658787302
Iteration: 10, Func. Count: 88, Neg. LLF: 83.35014329999213
Iteration: 11, Func. Count: 96, Neg. LLF: 83.34689463486465
Iteration: 12, Func. Count: 104, Neg. LLF: 83.34435960373806
Iteration: 13, Func. Count: 112, Neg. LLF: 83.34228887878135
Iteration: 14, Func. Count: 120, Neg. LLF: 83.34228475466412
Iteration: 15, Func. Count: 127, Neg. LLF: 83.34228471260262
Optimization terminated successfully (Exit mode 0)
Current function value: 83.34228475466412
Iterations: 15
Function evaluations: 127
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 179.15284121264534
Iteration: 2, Func. Count: 24, Neg. LLF: 83.78209455056361
Iteration: 3, Func. Count: 34, Neg. LLF: 83.3828234397213
Iteration: 4, Func. Count: 43, Neg. LLF: 83.4061040896841
Iteration: 5, Func. Count: 53, Neg. LLF: 83.37254734853705
Iteration: 6, Func. Count: 62, Neg. LLF: 83.37029175389372
Iteration: 7, Func. Count: 71, Neg. LLF: 83.35755366669706
Iteration: 8, Func. Count: 80, Neg. LLF: 83.35211575230433
Iteration: 9, Func. Count: 89, Neg. LLF: 83.3516427061002
Iteration: 10, Func. Count: 98, Neg. LLF: 83.3514895640895
Iteration: 11, Func. Count: 107, Neg. LLF: 83.35132026793114
Iteration: 12, Func. Count: 116, Neg. LLF: 83.35057690770765
Iteration: 13, Func. Count: 125, Neg. LLF: 83.34856944433827
Iteration: 14, Func. Count: 134, Neg. LLF: 83.3457860924938
Iteration: 15, Func. Count: 143, Neg. LLF: 83.34337290821558
Iteration: 16, Func. Count: 152, Neg. LLF: 83.34228839214178
Iteration: 17, Func. Count: 161, Neg. LLF: 83.34228482486768
Iteration: 18, Func. Count: 169, Neg. LLF: 83.34228478396467
Optimization terminated successfully (Exit mode 0)
Current function value: 83.34228482486768
Iterations: 18
Function evaluations: 169
Gradient evaluations: 18
Iteration: 1, Func. Count: 11, Neg. LLF: 177.54929990378417
Iteration: 2, Func. Count: 26, Neg. LLF: 83.67055568698159
Iteration: 3, Func. Count: 37, Neg. LLF: 83.41987806594682
Iteration: 4, Func. Count: 47, Neg. LLF: 83.41581214201469
Iteration: 5, Func. Count: 58, Neg. LLF: 83.38397308846346
Iteration: 6, Func. Count: 68, Neg. LLF: 83.38232979513354
Iteration: 7, Func. Count: 78, Neg. LLF: 83.38176191831793
Iteration: 8, Func. Count: 88, Neg. LLF: 83.37671948353336
Iteration: 9, Func. Count: 98, Neg. LLF: 83.36540386705862
Iteration: 10, Func. Count: 108, Neg. LLF: 83.36413561174936
Iteration: 11, Func. Count: 118, Neg. LLF: 83.36169064128475
Iteration: 12, Func. Count: 128, Neg. LLF: 83.35937677841765
Iteration: 13, Func. Count: 138, Neg. LLF: 83.35141422529377
Iteration: 14, Func. Count: 148, Neg. LLF: 83.34988457398457
Iteration: 15, Func. Count: 158, Neg. LLF: 83.3492203338914
Iteration: 16, Func. Count: 168, Neg. LLF: 83.34933430445767
Iteration: 17, Func. Count: 178, Neg. LLF: 83.34877304362745
Iteration: 18, Func. Count: 188, Neg. LLF: 83.34652391942066
Iteration: 19, Func. Count: 198, Neg. LLF: 83.34441780578145
Iteration: 20, Func. Count: 208, Neg. LLF: 83.3427922166757
Iteration: 21, Func. Count: 218, Neg. LLF: 83.34228738823005
Iteration: 22, Func. Count: 228, Neg. LLF: 83.3422873256206
Optimization terminated successfully (Exit mode 0)
Current function value: 83.34228670183592
Iterations: 22
Function evaluations: 229
Gradient evaluations: 22
Iteration: 1, Func. Count: 8, Neg. LLF: 115.23578568555676
Iteration: 2, Func. Count: 18, Neg. LLF: 91.12753926154798
Iteration: 3, Func. Count: 26, Neg. LLF: 86.584204186955
Iteration: 4, Func. Count: 34, Neg. LLF: 84.31202089802217
Iteration: 5, Func. Count: 41, Neg. LLF: 159.39676089406146
Iteration: 6, Func. Count: 49, Neg. LLF: 84.2347908126325
Iteration: 7, Func. Count: 57, Neg. LLF: 84.12565448174661
Iteration: 8, Func. Count: 65, Neg. LLF: 84.06884301041102
Iteration: 9, Func. Count: 73, Neg. LLF: 84.05562686067715
Iteration: 10, Func. Count: 80, Neg. LLF: 84.05551648245816
Iteration: 11, Func. Count: 87, Neg. LLF: 84.05551267419862
Iteration: 12, Func. Count: 94, Neg. LLF: 84.05551156200458
Iteration: 13, Func. Count: 100, Neg. LLF: 84.05551156199904
Optimization terminated successfully (Exit mode 0)
Current function value: 84.05551156200458
Iterations: 13
Function evaluations: 100
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 184.88383552218423
Iteration: 2, Func. Count: 21, Neg. LLF: 83.66633982467948
Iteration: 3, Func. Count: 29, Neg. LLF: 84.63712323765928
Iteration: 4, Func. Count: 38, Neg. LLF: 106.44485524159371
Iteration: 5, Func. Count: 47, Neg. LLF: 83.34283998993783
Iteration: 6, Func. Count: 55, Neg. LLF: 83.34229177931661
Iteration: 7, Func. Count: 63, Neg. LLF: 83.34228480088709
Iteration: 8, Func. Count: 70, Neg. LLF: 83.34228484310144
Optimization terminated successfully (Exit mode 0)
Current function value: 83.34228480088709
Iterations: 8
Function evaluations: 70
Gradient evaluations: 8
Iteration: 1, Func. Count: 10, Neg. LLF: 180.78850358874934
Iteration: 2, Func. Count: 24, Neg. LLF: 83.68386934866248
Iteration: 3, Func. Count: 34, Neg. LLF: 83.44419387587809
Iteration: 4, Func. Count: 43, Neg. LLF: 84.87537793942042
Iteration: 5, Func. Count: 53, Neg. LLF: 83.37366509840314
Iteration: 6, Func. Count: 62, Neg. LLF: 83.35393628236083
Iteration: 7, Func. Count: 71, Neg. LLF: 83.3526253357973
Iteration: 8, Func. Count: 80, Neg. LLF: 83.3523854799915
Iteration: 9, Func. Count: 89, Neg. LLF: 83.35191981747312
Iteration: 10, Func. Count: 98, Neg. LLF: 83.34940358525259
Iteration: 11, Func. Count: 107, Neg. LLF: 83.34619141600727
Iteration: 12, Func. Count: 116, Neg. LLF: 83.34325621460921
Iteration: 13, Func. Count: 125, Neg. LLF: 83.34228547788544
Iteration: 14, Func. Count: 134, Neg. LLF: 83.34228474407156
Optimization terminated successfully (Exit mode 0)
Current function value: 83.34228474407156
Iterations: 14
Function evaluations: 134
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 178.7421606077364
Iteration: 2, Func. Count: 26, Neg. LLF: 83.53592325718344
Iteration: 3, Func. Count: 36, Neg. LLF: 83.51100303634128
Iteration: 4, Func. Count: 47, Neg. LLF: 98.55407857614313
Iteration: 5, Func. Count: 58, Neg. LLF: 83.3716744433483
Iteration: 6, Func. Count: 68, Neg. LLF: 83.3705543823712
Iteration: 7, Func. Count: 78, Neg. LLF: 83.36455727801349
Iteration: 8, Func. Count: 88, Neg. LLF: 83.348833481462
Iteration: 9, Func. Count: 98, Neg. LLF: 83.34872029173982
Iteration: 10, Func. Count: 108, Neg. LLF: 83.3482902160269
Iteration: 11, Func. Count: 118, Neg. LLF: 83.3448513558207
Iteration: 12, Func. Count: 128, Neg. LLF: 83.34247067026169
Iteration: 13, Func. Count: 138, Neg. LLF: 83.34235922170593
Iteration: 14, Func. Count: 148, Neg. LLF: 83.34231828694305
Iteration: 15, Func. Count: 158, Neg. LLF: 83.34228711690784
Iteration: 16, Func. Count: 168, Neg. LLF: 83.34228493779315
Iteration: 17, Func. Count: 177, Neg. LLF: 83.34228489545217
Optimization terminated successfully (Exit mode 0)
Current function value: 83.34228493779315
Iterations: 17
Function evaluations: 177
Gradient evaluations: 17
Iteration: 1, Func. Count: 12, Neg. LLF: 168.2982657985712
Iteration: 2, Func. Count: 28, Neg. LLF: 84.28002073733857
Iteration: 3, Func. Count: 40, Neg. LLF: 83.4141495238231
Iteration: 4, Func. Count: 51, Neg. LLF: 83.43956917175906
Iteration: 5, Func. Count: 63, Neg. LLF: 83.50267039285698
Iteration: 6, Func. Count: 75, Neg. LLF: 83.22465965432254
Iteration: 7, Func. Count: 86, Neg. LLF: 83.22270311670411
Iteration: 8, Func. Count: 97, Neg. LLF: 83.22265964840562
Iteration: 9, Func. Count: 108, Neg. LLF: 83.22265511340316
Iteration: 10, Func. Count: 118, Neg. LLF: 83.22265510041038
Optimization terminated successfully (Exit mode 0)
Current function value: 83.22265511340316
Iterations: 10
Function evaluations: 118
Gradient evaluations: 10
Iteration: 1, Func. Count: 9, Neg. LLF: 116.8245241806072
Iteration: 2, Func. Count: 20, Neg. LLF: 111.71521957789807
Iteration: 3, Func. Count: 30, Neg. LLF: 84.50137635076388
Iteration: 4, Func. Count: 38, Neg. LLF: 87.76376687947823
Iteration: 5, Func. Count: 47, Neg. LLF: 85.47122570371208
Iteration: 6, Func. Count: 57, Neg. LLF: 84.2793610071072
Iteration: 7, Func. Count: 66, Neg. LLF: 83.99441401386889
Iteration: 8, Func. Count: 74, Neg. LLF: 83.98578283942759
Iteration: 9, Func. Count: 82, Neg. LLF: 83.98550670015611
Iteration: 10, Func. Count: 90, Neg. LLF: 83.98548157114165
Iteration: 11, Func. Count: 98, Neg. LLF: 83.98547354013249
Iteration: 12, Func. Count: 106, Neg. LLF: 83.98547284654974
Optimization terminated successfully (Exit mode 0)
Current function value: 83.98547284654974
Iterations: 12
Function evaluations: 106
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 185.1066692212699
Iteration: 2, Func. Count: 23, Neg. LLF: 83.70048805261413
Iteration: 3, Func. Count: 32, Neg. LLF: 84.5089525681602
Iteration: 4, Func. Count: 42, Neg. LLF: 107.99770039457911
Iteration: 5, Func. Count: 52, Neg. LLF: 83.342573613162
Iteration: 6, Func. Count: 61, Neg. LLF: 83.34228719574891
Iteration: 7, Func. Count: 70, Neg. LLF: 83.34228475192492
Iteration: 8, Func. Count: 78, Neg. LLF: 83.3422847941785
Optimization terminated successfully (Exit mode 0)
Current function value: 83.34228475192492
Iterations: 8
Function evaluations: 78
Gradient evaluations: 8
Iteration: 1, Func. Count: 11, Neg. LLF: 180.58439713457642
Iteration: 2, Func. Count: 26, Neg. LLF: 83.72187711342012
Iteration: 3, Func. Count: 37, Neg. LLF: 83.43783965146959
Iteration: 4, Func. Count: 47, Neg. LLF: 84.42102545016921
Iteration: 5, Func. Count: 58, Neg. LLF: 83.38875884198454
Iteration: 6, Func. Count: 69, Neg. LLF: 83.35255933050296
Iteration: 7, Func. Count: 79, Neg. LLF: 83.35233351689511
Iteration: 8, Func. Count: 89, Neg. LLF: 83.35073468652838
Iteration: 9, Func. Count: 99, Neg. LLF: 83.34783157694137
Iteration: 10, Func. Count: 109, Neg. LLF: 83.34482408615926
Iteration: 11, Func. Count: 119, Neg. LLF: 83.34228981948533
Iteration: 12, Func. Count: 129, Neg. LLF: 83.34228474780107
Iteration: 13, Func. Count: 138, Neg. LLF: 83.34228470574317
Optimization terminated successfully (Exit mode 0)
Current function value: 83.34228474780107
Iterations: 13
Function evaluations: 138
Gradient evaluations: 13
Iteration: 1, Func. Count: 12, Neg. LLF: 132.96401916953815
Iteration: 2, Func. Count: 28, Neg. LLF: 84.50040158634704
Iteration: 3, Func. Count: 40, Neg. LLF: 83.5209518930917
Iteration: 4, Func. Count: 51, Neg. LLF: 84.37344566161417
Iteration: 5, Func. Count: 63, Neg. LLF: 86.32974000686897
Iteration: 6, Func. Count: 75, Neg. LLF: 83.26530659662951
Iteration: 7, Func. Count: 86, Neg. LLF: 83.24961296850127
Iteration: 8, Func. Count: 97, Neg. LLF: 83.245335093354
Iteration: 9, Func. Count: 108, Neg. LLF: 83.24525695288607
Iteration: 10, Func. Count: 119, Neg. LLF: 83.2452529067411
Iteration: 11, Func. Count: 129, Neg. LLF: 83.24525289913876
Optimization terminated successfully (Exit mode 0)
Current function value: 83.2452529067411
Iterations: 11
Function evaluations: 129
Gradient evaluations: 11
Iteration: 1, Func. Count: 13, Neg. LLF: 153.1387325920196
Iteration: 2, Func. Count: 30, Neg. LLF: 83.74242307543138
Iteration: 3, Func. Count: 43, Neg. LLF: 83.45383795051772
Iteration: 4, Func. Count: 55, Neg. LLF: 83.54828906228191
Iteration: 5, Func. Count: 68, Neg. LLF: 281.5036900661101
Iteration: 6, Func. Count: 82, Neg. LLF: 83.28013688869197
Iteration: 7, Func. Count: 95, Neg. LLF: 83.21210501477555
Iteration: 8, Func. Count: 107, Neg. LLF: 83.52395526252732
Iteration: 9, Func. Count: 120, Neg. LLF: 83.54736475982874
Iteration: 10, Func. Count: 133, Neg. LLF: 83.23688224276452
Iteration: 11, Func. Count: 146, Neg. LLF: 83.17108664448378
Iteration: 12, Func. Count: 158, Neg. LLF: 83.18100442964744
Iteration: 13, Func. Count: 171, Neg. LLF: 83.14843442870624
Iteration: 14, Func. Count: 183, Neg. LLF: 83.1282525786229
Iteration: 15, Func. Count: 195, Neg. LLF: 83.10862470171448
Iteration: 16, Func. Count: 207, Neg. LLF: 83.10104365574797
Iteration: 17, Func. Count: 219, Neg. LLF: 83.09845872433749
Iteration: 18, Func. Count: 231, Neg. LLF: 83.0983909262997
Iteration: 19, Func. Count: 242, Neg. LLF: 83.09839091447819
Optimization terminated successfully (Exit mode 0)
Current function value: 83.0983909262997
Iterations: 19
Function evaluations: 242
Gradient evaluations: 19
Iteration: 1, Func. Count: 10, Neg. LLF: 117.43841219701275
Iteration: 2, Func. Count: 22, Neg. LLF: 116.93178163688768
Iteration: 3, Func. Count: 33, Neg. LLF: 83.74976191726051
Iteration: 4, Func. Count: 42, Neg. LLF: 353.4355279520004
Iteration: 5, Func. Count: 52, Neg. LLF: 83.80963186114639
Iteration: 6, Func. Count: 62, Neg. LLF: 83.94244043888001
Iteration: 7, Func. Count: 72, Neg. LLF: 83.60796376325754
Iteration: 8, Func. Count: 82, Neg. LLF: 83.60350400874674
Iteration: 9, Func. Count: 92, Neg. LLF: 83.60264338348614
Iteration: 10, Func. Count: 101, Neg. LLF: 83.60260545069092
Iteration: 11, Func. Count: 109, Neg. LLF: 83.60260533453202
Optimization terminated successfully (Exit mode 0)
Current function value: 83.60260545069092
Iterations: 11
Function evaluations: 109
Gradient evaluations: 11
Iteration: 1, Func. Count: 11, Neg. LLF: 185.3502223800191
Iteration: 2, Func. Count: 25, Neg. LLF: 83.67928066925172
Iteration: 3, Func. Count: 35, Neg. LLF: 85.37375035287494
Iteration: 4, Func. Count: 46, Neg. LLF: 94.25134918001703
Iteration: 5, Func. Count: 57, Neg. LLF: 83.34318214467062
Iteration: 6, Func. Count: 67, Neg. LLF: 83.34231651288223
Iteration: 7, Func. Count: 77, Neg. LLF: 83.34228487403479
Iteration: 8, Func. Count: 86, Neg. LLF: 83.34228491620392
Optimization terminated successfully (Exit mode 0)
Current function value: 83.34228487403479
Iterations: 8
Function evaluations: 86
Gradient evaluations: 8
Iteration: 1, Func. Count: 12, Neg. LLF: 180.76447554844037
Iteration: 2, Func. Count: 28, Neg. LLF: 83.74089025024902
Iteration: 3, Func. Count: 40, Neg. LLF: 83.43195018489415
Iteration: 4, Func. Count: 51, Neg. LLF: 84.4140683285539
Iteration: 5, Func. Count: 63, Neg. LLF: 83.37611934521976
Iteration: 6, Func. Count: 75, Neg. LLF: 83.35271546762705
Iteration: 7, Func. Count: 86, Neg. LLF: 83.35248526117408
Iteration: 8, Func. Count: 97, Neg. LLF: 83.35047212400458
Iteration: 9, Func. Count: 108, Neg. LLF: 83.34444620586895
Iteration: 10, Func. Count: 119, Neg. LLF: 83.34238858204907
Iteration: 11, Func. Count: 130, Neg. LLF: 83.34228540135435
Iteration: 12, Func. Count: 141, Neg. LLF: 83.34228475345043
Optimization terminated successfully (Exit mode 0)
Current function value: 83.34228475345043
Iterations: 12
Function evaluations: 141
Gradient evaluations: 12
Iteration: 1, Func. Count: 13, Neg. LLF: 132.6734533234819
Iteration: 2, Func. Count: 30, Neg. LLF: 84.98076785887848
Iteration: 3, Func. Count: 43, Neg. LLF: 83.52861374857132
Iteration: 4, Func. Count: 55, Neg. LLF: 84.60303092375138
Iteration: 5, Func. Count: 68, Neg. LLF: 84.23607648510817
Iteration: 6, Func. Count: 82, Neg. LLF: 83.31229820352053
Iteration: 7, Func. Count: 95, Neg. LLF: 83.24876957411179
Iteration: 8, Func. Count: 107, Neg. LLF: 83.2476806960594
Iteration: 9, Func. Count: 120, Neg. LLF: 83.24529973729852
Iteration: 10, Func. Count: 132, Neg. LLF: 83.24527210792928
Iteration: 11, Func. Count: 144, Neg. LLF: 83.2452589005734
Iteration: 12, Func. Count: 156, Neg. LLF: 83.24525332136241
Iteration: 13, Func. Count: 167, Neg. LLF: 83.24525331398011
Optimization terminated successfully (Exit mode 0)
Current function value: 83.24525332136241
Iterations: 13
Function evaluations: 167
Gradient evaluations: 13
Iteration: 1, Func. Count: 14, Neg. LLF: 122.33200933518916
Iteration: 2, Func. Count: 33, Neg. LLF: 83.5117154773591
Iteration: 3, Func. Count: 46, Neg. LLF: 83.49434906073351
Iteration: 4, Func. Count: 60, Neg. LLF: 113.47498045901833
Iteration: 5, Func. Count: 74, Neg. LLF: 83.58404002821537
Iteration: 6, Func. Count: 88, Neg. LLF: 83.35586360015806
Iteration: 7, Func. Count: 102, Neg. LLF: 83.24148024854676
Iteration: 8, Func. Count: 115, Neg. LLF: 83.24103096277085
Iteration: 9, Func. Count: 129, Neg. LLF: 83.22444354031953
Iteration: 10, Func. Count: 142, Neg. LLF: 83.22280002411588
Iteration: 11, Func. Count: 155, Neg. LLF: 83.22266078873739
Iteration: 12, Func. Count: 168, Neg. LLF: 83.22265527765148
Iteration: 13, Func. Count: 180, Neg. LLF: 83.22265526458732
Optimization terminated successfully (Exit mode 0)
Current function value: 83.22265527765148
Iterations: 13
Function evaluations: 180
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 113.32224126988983
Iteration: 2, Func. Count: 24, Neg. LLF: 95.92281130742745
Iteration: 3, Func. Count: 35, Neg. LLF: 84.07265767267712
Iteration: 4, Func. Count: 45, Neg. LLF: 83.8680968828295
Iteration: 5, Func. Count: 55, Neg. LLF: 89.5013095977606
Iteration: 6, Func. Count: 67, Neg. LLF: 83.77627511982487
Iteration: 7, Func. Count: 77, Neg. LLF: 84.45537649146348
Iteration: 8, Func. Count: 88, Neg. LLF: 83.64176612936748
Iteration: 9, Func. Count: 99, Neg. LLF: 83.6066626712387
Iteration: 10, Func. Count: 110, Neg. LLF: 83.6026276002634
Iteration: 11, Func. Count: 120, Neg. LLF: 83.60260657457508
Iteration: 12, Func. Count: 130, Neg. LLF: 83.60260529453889
Iteration: 13, Func. Count: 139, Neg. LLF: 83.60260531677098
Optimization terminated successfully (Exit mode 0)
Current function value: 83.60260529453889
Iterations: 13
Function evaluations: 139
Gradient evaluations: 13
Iteration: 1, Func. Count: 12, Neg. LLF: 185.12655072463252
Iteration: 2, Func. Count: 27, Neg. LLF: 83.66983867738097
Iteration: 3, Func. Count: 38, Neg. LLF: 85.00283479894057
Iteration: 4, Func. Count: 50, Neg. LLF: 99.5999362748196
Iteration: 5, Func. Count: 62, Neg. LLF: 83.34329890884906
Iteration: 6, Func. Count: 73, Neg. LLF: 83.3423175667128
Iteration: 7, Func. Count: 84, Neg. LLF: 83.3422848913068
Iteration: 8, Func. Count: 94, Neg. LLF: 83.34228493342611
Optimization terminated successfully (Exit mode 0)
Current function value: 83.3422848913068
Iterations: 8
Function evaluations: 94
Gradient evaluations: 8
Iteration: 1, Func. Count: 13, Neg. LLF: 180.83334132127732
Iteration: 2, Func. Count: 30, Neg. LLF: 83.70852978699463
Iteration: 3, Func. Count: 43, Neg. LLF: 83.43514507209863
Iteration: 4, Func. Count: 55, Neg. LLF: 84.59749422844453
Iteration: 5, Func. Count: 68, Neg. LLF: 83.37083426625112
Iteration: 6, Func. Count: 80, Neg. LLF: 83.35381220382432
Iteration: 7, Func. Count: 92, Neg. LLF: 83.35275603571648
Iteration: 8, Func. Count: 104, Neg. LLF: 83.35251111892133
Iteration: 9, Func. Count: 116, Neg. LLF: 83.35190660203008
Iteration: 10, Func. Count: 128, Neg. LLF: 83.34937828623292
Iteration: 11, Func. Count: 140, Neg. LLF: 83.34582379063484
Iteration: 12, Func. Count: 152, Neg. LLF: 83.34230801573909
Iteration: 13, Func. Count: 164, Neg. LLF: 83.34228561005231
Iteration: 14, Func. Count: 176, Neg. LLF: 83.34228474558192
Optimization terminated successfully (Exit mode 0)
Current function value: 83.34228474558192
Iterations: 14
Function evaluations: 176
Gradient evaluations: 14
Iteration: 1, Func. Count: 14, Neg. LLF: 132.2185739572093
Iteration: 2, Func. Count: 32, Neg. LLF: 85.21224826542083
Iteration: 3, Func. Count: 46, Neg. LLF: 83.58681155174038
Iteration: 4, Func. Count: 59, Neg. LLF: 84.75902763043057
Iteration: 5, Func. Count: 73, Neg. LLF: 84.131621830717
Iteration: 6, Func. Count: 88, Neg. LLF: 83.33963908739582
Iteration: 7, Func. Count: 102, Neg. LLF: 83.24933040694728
Iteration: 8, Func. Count: 115, Neg. LLF: 83.24755234361905
Iteration: 9, Func. Count: 128, Neg. LLF: 83.2453389154445
Iteration: 10, Func. Count: 141, Neg. LLF: 83.2452895106888
Iteration: 11, Func. Count: 154, Neg. LLF: 83.2452548225829
Iteration: 12, Func. Count: 167, Neg. LLF: 83.24525295342997
Iteration: 13, Func. Count: 179, Neg. LLF: 83.24525294566803
Optimization terminated successfully (Exit mode 0)
Current function value: 83.24525295342997
Iterations: 13
Function evaluations: 179
Gradient evaluations: 13
Iteration: 1, Func. Count: 15, Neg. LLF: 122.26308330990776
Iteration: 2, Func. Count: 35, Neg. LLF: 83.49478086268078
Iteration: 3, Func. Count: 49, Neg. LLF: 83.49509114737843
Iteration: 4, Func. Count: 64, Neg. LLF: 99.80170272001504
Iteration: 5, Func. Count: 79, Neg. LLF: 84.26040235970758
Iteration: 6, Func. Count: 94, Neg. LLF: 83.26797138872796
Iteration: 7, Func. Count: 108, Neg. LLF: 83.24296630054278
Iteration: 8, Func. Count: 122, Neg. LLF: 83.22291889208918
Iteration: 9, Func. Count: 136, Neg. LLF: 83.2226855302713
Iteration: 10, Func. Count: 150, Neg. LLF: 83.22265869030822
Iteration: 11, Func. Count: 164, Neg. LLF: 83.22265534629061
Iteration: 12, Func. Count: 177, Neg. LLF: 83.22265533301285
Optimization terminated successfully (Exit mode 0)
Current function value: 83.22265534629061
Iterations: 12
Function evaluations: 177
Gradient evaluations: 12
Iteration: 1, Func. Count: 8, Neg. LLF: 124.41202676622096
Iteration: 2, Func. Count: 18, Neg. LLF: 123.42021426088922
Iteration: 3, Func. Count: 27, Neg. LLF: 84.48560523237596
Iteration: 4, Func. Count: 34, Neg. LLF: 104.64296841012961
Iteration: 5, Func. Count: 42, Neg. LLF: 84.21195545565587
Iteration: 6, Func. Count: 50, Neg. LLF: 83.98697577412469
Iteration: 7, Func. Count: 58, Neg. LLF: 83.92502957984125
Iteration: 8, Func. Count: 65, Neg. LLF: 83.92489478687733
Iteration: 9, Func. Count: 72, Neg. LLF: 83.9248771886814
Iteration: 10, Func. Count: 79, Neg. LLF: 83.92487585917577
Iteration: 11, Func. Count: 85, Neg. LLF: 83.92487585917713
Optimization terminated successfully (Exit mode 0)
Current function value: 83.92487585917577
Iterations: 11
Function evaluations: 85
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 186.2005802358558
Iteration: 2, Func. Count: 21, Neg. LLF: 83.995153879733
Iteration: 3, Func. Count: 30, Neg. LLF: 83.55320218598627
Iteration: 4, Func. Count: 38, Neg. LLF: 83.7354461137756
Iteration: 5, Func. Count: 47, Neg. LLF: 83.364610823788
Iteration: 6, Func. Count: 55, Neg. LLF: 83.342404991313
Iteration: 7, Func. Count: 63, Neg. LLF: 83.34228661753407
Iteration: 8, Func. Count: 71, Neg. LLF: 83.3422847426788
Iteration: 9, Func. Count: 78, Neg. LLF: 83.34228478497214
Optimization terminated successfully (Exit mode 0)
Current function value: 83.3422847426788
Iterations: 9
Function evaluations: 78
Gradient evaluations: 9
Iteration: 1, Func. Count: 10, Neg. LLF: 182.22210431870408
Iteration: 2, Func. Count: 24, Neg. LLF: 83.86855662724052
Iteration: 3, Func. Count: 34, Neg. LLF: 83.42360763434098
Iteration: 4, Func. Count: 43, Neg. LLF: 84.32944824724576
Iteration: 5, Func. Count: 53, Neg. LLF: 83.36206876806395
Iteration: 6, Func. Count: 62, Neg. LLF: 83.353423376328
Iteration: 7, Func. Count: 71, Neg. LLF: 83.35260732750659
Iteration: 8, Func. Count: 80, Neg. LLF: 83.35222066783537
Iteration: 9, Func. Count: 89, Neg. LLF: 83.3511589858232
Iteration: 10, Func. Count: 98, Neg. LLF: 83.34860557033406
Iteration: 11, Func. Count: 107, Neg. LLF: 83.34525111065251
Iteration: 12, Func. Count: 116, Neg. LLF: 83.3422923459822
Iteration: 13, Func. Count: 125, Neg. LLF: 83.3422847582214
Iteration: 14, Func. Count: 133, Neg. LLF: 83.34228471617199
Optimization terminated successfully (Exit mode 0)
Current function value: 83.3422847582214
Iterations: 14
Function evaluations: 133
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 179.256595587531
Iteration: 2, Func. Count: 26, Neg. LLF: 83.6849595819456
Iteration: 3, Func. Count: 37, Neg. LLF: 83.3962635066648
Iteration: 4, Func. Count: 47, Neg. LLF: 83.44744422341154
Iteration: 5, Func. Count: 58, Neg. LLF: 83.37267141544211
Iteration: 6, Func. Count: 68, Neg. LLF: 83.37100457247004
Iteration: 7, Func. Count: 78, Neg. LLF: 83.36751753198682
Iteration: 8, Func. Count: 88, Neg. LLF: 83.36079337671342
Iteration: 9, Func. Count: 98, Neg. LLF: 83.35317112596513
Iteration: 10, Func. Count: 108, Neg. LLF: 83.35208320876971
Iteration: 11, Func. Count: 118, Neg. LLF: 83.35118854350702
Iteration: 12, Func. Count: 128, Neg. LLF: 83.3510364705026
Iteration: 13, Func. Count: 138, Neg. LLF: 83.35079796364077
Iteration: 14, Func. Count: 148, Neg. LLF: 83.34941677125343
Iteration: 15, Func. Count: 158, Neg. LLF: 83.34718996806397
Iteration: 16, Func. Count: 168, Neg. LLF: 83.34457738666899
Iteration: 17, Func. Count: 178, Neg. LLF: 83.34228682076102
Iteration: 18, Func. Count: 188, Neg. LLF: 83.34228388353739
Iteration: 19, Func. Count: 198, Neg. LLF: 83.34228448874289
Optimization terminated successfully (Exit mode 0)
Current function value: 83.34228448874289
Iterations: 19
Function evaluations: 198
Gradient evaluations: 19
Iteration: 1, Func. Count: 12, Neg. LLF: 177.30514688959627
Iteration: 2, Func. Count: 28, Neg. LLF: 83.58480972726386
Iteration: 3, Func. Count: 39, Neg. LLF: 83.45638040279555
Iteration: 4, Func. Count: 50, Neg. LLF: 85.07162432126339
Iteration: 5, Func. Count: 62, Neg. LLF: 83.38669574934202
Iteration: 6, Func. Count: 73, Neg. LLF: 83.38289139431939
Iteration: 7, Func. Count: 84, Neg. LLF: 83.38231908405022
Iteration: 8, Func. Count: 95, Neg. LLF: 83.37884368604848
Iteration: 9, Func. Count: 106, Neg. LLF: 83.3740802141667
Iteration: 10, Func. Count: 117, Neg. LLF: 83.37028435625984
Iteration: 11, Func. Count: 128, Neg. LLF: 83.36477137103616
Iteration: 12, Func. Count: 139, Neg. LLF: 83.36392042889767
Iteration: 13, Func. Count: 150, Neg. LLF: 83.35827154137812
Iteration: 14, Func. Count: 161, Neg. LLF: 83.34978766216126
Iteration: 15, Func. Count: 172, Neg. LLF: 83.34963251061689
Iteration: 16, Func. Count: 183, Neg. LLF: 83.34805944656802
Iteration: 17, Func. Count: 194, Neg. LLF: 83.34259414766164
Iteration: 18, Func. Count: 205, Neg. LLF: 137.6142950861719
Iteration: 19, Func. Count: 220, Neg. LLF: 83.46027401655584
Iteration: 20, Func. Count: 233, Neg. LLF: 83.34228474276651
Iteration: 21, Func. Count: 243, Neg. LLF: 83.3422847024719
Optimization terminated successfully (Exit mode 0)
Current function value: 83.34228474276651
Iterations: 22
Function evaluations: 243
Gradient evaluations: 21
Iteration: 1, Func. Count: 9, Neg. LLF: 125.01250589042522
Iteration: 2, Func. Count: 20, Neg. LLF: 106.6598873186924
Iteration: 3, Func. Count: 29, Neg. LLF: 89.81744583065127
Iteration: 4, Func. Count: 38, Neg. LLF: 87.24484924241183
Iteration: 5, Func. Count: 47, Neg. LLF: 85.63663732740791
Iteration: 6, Func. Count: 56, Neg. LLF: 84.19099500194388
Iteration: 7, Func. Count: 65, Neg. LLF: 84.05409961754675
Iteration: 8, Func. Count: 74, Neg. LLF: 83.9262068693006
Iteration: 9, Func. Count: 82, Neg. LLF: 83.92555112298625
Iteration: 10, Func. Count: 90, Neg. LLF: 83.92482677956278
Iteration: 11, Func. Count: 98, Neg. LLF: 83.92482390264968
Iteration: 12, Func. Count: 106, Neg. LLF: 83.92482289382362
Iteration: 13, Func. Count: 113, Neg. LLF: 83.92482289382475
Optimization terminated successfully (Exit mode 0)
Current function value: 83.92482289382362
Iterations: 13
Function evaluations: 113
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 185.03793620224207
Iteration: 2, Func. Count: 23, Neg. LLF: 83.62846289394486
Iteration: 3, Func. Count: 32, Neg. LLF: 85.61786038205499
Iteration: 4, Func. Count: 42, Neg. LLF: 92.70757337317893
Iteration: 5, Func. Count: 52, Neg. LLF: 83.34392104893399
Iteration: 6, Func. Count: 61, Neg. LLF: 83.34233829063731
Iteration: 7, Func. Count: 70, Neg. LLF: 83.34228507888847
Iteration: 8, Func. Count: 78, Neg. LLF: 83.34228512092156
Optimization terminated successfully (Exit mode 0)
Current function value: 83.34228507888847
Iterations: 8
Function evaluations: 78
Gradient evaluations: 8
Iteration: 1, Func. Count: 11, Neg. LLF: 180.72773833255803
Iteration: 2, Func. Count: 26, Neg. LLF: 83.61770954412098
Iteration: 3, Func. Count: 36, Neg. LLF: 83.40859982440756
Iteration: 4, Func. Count: 46, Neg. LLF: 85.84185653813351
Iteration: 5, Func. Count: 57, Neg. LLF: 83.35540632678759
Iteration: 6, Func. Count: 67, Neg. LLF: 83.35421598652157
Iteration: 7, Func. Count: 77, Neg. LLF: 83.35389110081131
Iteration: 8, Func. Count: 87, Neg. LLF: 83.35254672988228
Iteration: 9, Func. Count: 97, Neg. LLF: 83.34281705280445
Iteration: 10, Func. Count: 107, Neg. LLF: 83.34228498469432
Iteration: 11, Func. Count: 117, Neg. LLF: 85.31218772620336
Optimization terminated successfully (Exit mode 0)
Current function value: 83.34228474262484
Iterations: 12
Function evaluations: 121
Gradient evaluations: 11
Iteration: 1, Func. Count: 12, Neg. LLF: 178.91784357000694
Iteration: 2, Func. Count: 28, Neg. LLF: 83.50289795902881
Iteration: 3, Func. Count: 39, Neg. LLF: 83.60008311121446
Iteration: 4, Func. Count: 51, Neg. LLF: 98.6684603839696
Iteration: 5, Func. Count: 63, Neg. LLF: 83.37141817130917
Iteration: 6, Func. Count: 74, Neg. LLF: 83.37027283817257
Iteration: 7, Func. Count: 85, Neg. LLF: 83.36449949529953
Iteration: 8, Func. Count: 96, Neg. LLF: 83.34947553925
Iteration: 9, Func. Count: 107, Neg. LLF: 83.34935970519322
Iteration: 10, Func. Count: 118, Neg. LLF: 83.34888988514746
Iteration: 11, Func. Count: 129, Neg. LLF: 83.3456647727898
Iteration: 12, Func. Count: 140, Neg. LLF: 83.34229179670578
Iteration: 13, Func. Count: 151, Neg. LLF: 83.3423029540984
Iteration: 14, Func. Count: 162, Neg. LLF: 83.34228630440603
Optimization terminated successfully (Exit mode 0)
Current function value: 83.34228634662898
Iterations: 14
Function evaluations: 162
Gradient evaluations: 14
Iteration: 1, Func. Count: 13, Neg. LLF: 168.10035831328574
Iteration: 2, Func. Count: 30, Neg. LLF: 84.48115208412928
Iteration: 3, Func. Count: 43, Neg. LLF: 83.41086301738207
Iteration: 4, Func. Count: 55, Neg. LLF: 83.47338636545858
Iteration: 5, Func. Count: 68, Neg. LLF: 83.5104527464637
Iteration: 6, Func. Count: 81, Neg. LLF: 83.22387734176874
Iteration: 7, Func. Count: 93, Neg. LLF: 83.22269052236986
Iteration: 8, Func. Count: 105, Neg. LLF: 83.22265915169588
Iteration: 9, Func. Count: 117, Neg. LLF: 83.22265512247233
Iteration: 10, Func. Count: 128, Neg. LLF: 83.22265510938968
Optimization terminated successfully (Exit mode 0)
Current function value: 83.22265512247233
Iterations: 10
Function evaluations: 128
Gradient evaluations: 10
Iteration: 1, Func. Count: 10, Neg. LLF: 120.33698308959042
Iteration: 2, Func. Count: 22, Neg. LLF: 100.27689177747985
Iteration: 3, Func. Count: 32, Neg. LLF: 88.41785421302414
Iteration: 4, Func. Count: 42, Neg. LLF: 84.13063716408885
Iteration: 5, Func. Count: 51, Neg. LLF: 129.19943391006962
Iteration: 6, Func. Count: 61, Neg. LLF: 89.23979797202486
Iteration: 7, Func. Count: 71, Neg. LLF: 84.74753520489698
Iteration: 8, Func. Count: 81, Neg. LLF: 83.92597862492636
Iteration: 9, Func. Count: 90, Neg. LLF: 83.92489294451194
Iteration: 10, Func. Count: 99, Neg. LLF: 83.92483320572937
Iteration: 11, Func. Count: 108, Neg. LLF: 83.92482362014803
Iteration: 12, Func. Count: 117, Neg. LLF: 83.9248229177042
Optimization terminated successfully (Exit mode 0)
Current function value: 83.9248229177042
Iterations: 12
Function evaluations: 117
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 185.2784661816655
Iteration: 2, Func. Count: 25, Neg. LLF: 83.6572963301327
Iteration: 3, Func. Count: 35, Neg. LLF: 85.72140559483627
Iteration: 4, Func. Count: 46, Neg. LLF: 92.29161023601603
Iteration: 5, Func. Count: 57, Neg. LLF: 83.34341369125394
Iteration: 6, Func. Count: 67, Neg. LLF: 83.34232319531404
Iteration: 7, Func. Count: 77, Neg. LLF: 83.34228494705704
Iteration: 8, Func. Count: 86, Neg. LLF: 83.34228498920422
Optimization terminated successfully (Exit mode 0)
Current function value: 83.34228494705704
Iterations: 8
Function evaluations: 86
Gradient evaluations: 8
Iteration: 1, Func. Count: 12, Neg. LLF: 180.5301138159256
Iteration: 2, Func. Count: 28, Neg. LLF: 83.64455991954465
Iteration: 3, Func. Count: 39, Neg. LLF: 83.42452175475673
Iteration: 4, Func. Count: 50, Neg. LLF: 85.34065615133868
Iteration: 5, Func. Count: 62, Neg. LLF: 83.35487650181945
Iteration: 6, Func. Count: 73, Neg. LLF: 83.35402874322997
Iteration: 7, Func. Count: 84, Neg. LLF: 83.35370498345412
Iteration: 8, Func. Count: 95, Neg. LLF: 83.3520343795501
Iteration: 9, Func. Count: 106, Neg. LLF: 83.34231389615739
Iteration: 10, Func. Count: 117, Neg. LLF: 83.34231008673025
Iteration: 11, Func. Count: 129, Neg. LLF: 83.3422849955742
Iteration: 12, Func. Count: 139, Neg. LLF: 83.34228495403056
Optimization terminated successfully (Exit mode 0)
Current function value: 83.3422849955742
Iterations: 12
Function evaluations: 139
Gradient evaluations: 12
Iteration: 1, Func. Count: 13, Neg. LLF: 133.6811031260878
Iteration: 2, Func. Count: 30, Neg. LLF: 84.210130107084
Iteration: 3, Func. Count: 43, Neg. LLF: 83.60958720871842
Iteration: 4, Func. Count: 56, Neg. LLF: 84.84626080885629
Iteration: 5, Func. Count: 69, Neg. LLF: 83.3406871178749
Iteration: 6, Func. Count: 81, Neg. LLF: 83.37975170522373
Iteration: 7, Func. Count: 94, Neg. LLF: 83.11703261962903
Iteration: 8, Func. Count: 106, Neg. LLF: 83.08385530572654
Iteration: 9, Func. Count: 118, Neg. LLF: 83.0813291107686
Iteration: 10, Func. Count: 130, Neg. LLF: 83.08046932128202
Iteration: 11, Func. Count: 142, Neg. LLF: 83.08026619456149
Iteration: 12, Func. Count: 154, Neg. LLF: 83.08024831340174
Iteration: 13, Func. Count: 165, Neg. LLF: 83.08024828246742
Optimization terminated successfully (Exit mode 0)
Current function value: 83.08024831340174
Iterations: 13
Function evaluations: 165
Gradient evaluations: 13
Iteration: 1, Func. Count: 14, Neg. LLF: 152.92675186622643
Iteration: 2, Func. Count: 32, Neg. LLF: 83.86473345745681
Iteration: 3, Func. Count: 46, Neg. LLF: 83.43726930643582
Iteration: 4, Func. Count: 59, Neg. LLF: 83.40413707201432
Iteration: 5, Func. Count: 73, Neg. LLF: 158.0033491274435
Iteration: 6, Func. Count: 88, Neg. LLF: 83.27052771804043
Iteration: 7, Func. Count: 102, Neg. LLF: 83.22601188007742
Iteration: 8, Func. Count: 115, Neg. LLF: 83.22405286931232
Iteration: 9, Func. Count: 128, Neg. LLF: 84.50766177084346
Iteration: 10, Func. Count: 142, Neg. LLF: 83.51009282714568
Iteration: 11, Func. Count: 156, Neg. LLF: 83.21727526865102
Iteration: 12, Func. Count: 169, Neg. LLF: 83.21026379902534
Iteration: 13, Func. Count: 182, Neg. LLF: 83.13080113449561
Iteration: 14, Func. Count: 195, Neg. LLF: 83.11452620009482
Iteration: 15, Func. Count: 208, Neg. LLF: 83.10082466705292
Iteration: 16, Func. Count: 221, Neg. LLF: 83.0985714484985
Iteration: 17, Func. Count: 234, Neg. LLF: 83.09839118302898
Iteration: 18, Func. Count: 247, Neg. LLF: 83.09839066984546
Optimization terminated successfully (Exit mode 0)
Current function value: 83.09839066984546
Iterations: 18
Function evaluations: 247
Gradient evaluations: 18
Iteration: 1, Func. Count: 11, Neg. LLF: 117.24290818684605
Iteration: 2, Func. Count: 24, Neg. LLF: 88.06949615028657
Iteration: 3, Func. Count: 35, Neg. LLF: 97.29873107890306
Iteration: 4, Func. Count: 46, Neg. LLF: 1158520.4460867913
Iteration: 5, Func. Count: 57, Neg. LLF: 83.7463458315276
Iteration: 6, Func. Count: 67, Neg. LLF: 84.14637564025415
Iteration: 7, Func. Count: 78, Neg. LLF: 84.87779069054632
Iteration: 8, Func. Count: 90, Neg. LLF: 83.86567607236555
Iteration: 9, Func. Count: 101, Neg. LLF: 84.51004139855348
Iteration: 10, Func. Count: 113, Neg. LLF: 83.60510591820069
Iteration: 11, Func. Count: 123, Neg. LLF: 83.60266257395084
Iteration: 12, Func. Count: 133, Neg. LLF: 83.60261312492503
Iteration: 13, Func. Count: 143, Neg. LLF: 83.60260555792128
Iteration: 14, Func. Count: 152, Neg. LLF: 83.6026054417422
Optimization terminated successfully (Exit mode 0)
Current function value: 83.60260555792128
Iterations: 14
Function evaluations: 152
Gradient evaluations: 14
Iteration: 1, Func. Count: 12, Neg. LLF: 185.5409604828522
Iteration: 2, Func. Count: 27, Neg. LLF: 83.63547930337442
Iteration: 3, Func. Count: 38, Neg. LLF: 86.35173980217274
Iteration: 4, Func. Count: 50, Neg. LLF: 87.76563340061665
Iteration: 5, Func. Count: 62, Neg. LLF: 83.34253514479897
Iteration: 6, Func. Count: 73, Neg. LLF: 83.34229513523191
Iteration: 7, Func. Count: 84, Neg. LLF: 83.34228482950259
Iteration: 8, Func. Count: 94, Neg. LLF: 83.34228487200733
Optimization terminated successfully (Exit mode 0)
Current function value: 83.34228482950259
Iterations: 8
Function evaluations: 94
Gradient evaluations: 8
Iteration: 1, Func. Count: 13, Neg. LLF: 180.71352564499477
Iteration: 2, Func. Count: 30, Neg. LLF: 83.65790193039388
Iteration: 3, Func. Count: 42, Neg. LLF: 83.41435683114653
Iteration: 4, Func. Count: 54, Neg. LLF: 84.93042196460922
Iteration: 5, Func. Count: 67, Neg. LLF: 83.35522145394316
Iteration: 6, Func. Count: 79, Neg. LLF: 83.3542217208606
Iteration: 7, Func. Count: 91, Neg. LLF: 83.35389215421698
Iteration: 8, Func. Count: 103, Neg. LLF: 83.35225026925826
Iteration: 9, Func. Count: 115, Neg. LLF: 83.34231460774882
Iteration: 10, Func. Count: 127, Neg. LLF: 83.34228742945928
Iteration: 11, Func. Count: 139, Neg. LLF: 83.34229061719607
Iteration: 12, Func. Count: 151, Neg. LLF: 83.34228492922584
Optimization terminated successfully (Exit mode 0)
Current function value: 83.34228497053759
Iterations: 12
Function evaluations: 151
Gradient evaluations: 12
Iteration: 1, Func. Count: 14, Neg. LLF: 133.37280420003125
Iteration: 2, Func. Count: 32, Neg. LLF: 84.6498152448254
Iteration: 3, Func. Count: 46, Neg. LLF: 83.59879219472407
Iteration: 4, Func. Count: 59, Neg. LLF: 84.85430390391151
Iteration: 5, Func. Count: 73, Neg. LLF: 84.16429103864856
Iteration: 6, Func. Count: 88, Neg. LLF: 83.34743040121803
Iteration: 7, Func. Count: 102, Neg. LLF: 83.27021165363021
Iteration: 8, Func. Count: 115, Neg. LLF: 83.26246851632988
Iteration: 9, Func. Count: 128, Neg. LLF: 83.24732044428748
Iteration: 10, Func. Count: 141, Neg. LLF: 83.24538948038243
Iteration: 11, Func. Count: 154, Neg. LLF: 83.24525550290662
Iteration: 12, Func. Count: 167, Neg. LLF: 83.24525293744536
Iteration: 13, Func. Count: 179, Neg. LLF: 83.24525292967314
Optimization terminated successfully (Exit mode 0)
Current function value: 83.24525293744536
Iterations: 13
Function evaluations: 179
Gradient evaluations: 13
Iteration: 1, Func. Count: 15, Neg. LLF: 122.20124578362359
Iteration: 2, Func. Count: 35, Neg. LLF: 83.47798777715808
Iteration: 3, Func. Count: 49, Neg. LLF: 83.39446198791236
Iteration: 4, Func. Count: 63, Neg. LLF: 96.56028248592207
Iteration: 5, Func. Count: 78, Neg. LLF: 87.5131583292001
Iteration: 6, Func. Count: 93, Neg. LLF: 83.2947113905756
Iteration: 7, Func. Count: 107, Neg. LLF: 83.2284012406511
Iteration: 8, Func. Count: 121, Neg. LLF: 83.22448111646723
Iteration: 9, Func. Count: 135, Neg. LLF: 83.22345050037987
Iteration: 10, Func. Count: 149, Neg. LLF: 83.22319921593737
Iteration: 11, Func. Count: 163, Neg. LLF: 83.22291255190478
Iteration: 12, Func. Count: 177, Neg. LLF: 83.22269182919034
Iteration: 13, Func. Count: 191, Neg. LLF: 83.22265543559622
Iteration: 14, Func. Count: 204, Neg. LLF: 83.22265542253534
Optimization terminated successfully (Exit mode 0)
Current function value: 83.22265543559622
Iterations: 14
Function evaluations: 204
Gradient evaluations: 14
Iteration: 1, Func. Count: 12, Neg. LLF: 124.79611131616588
Iteration: 2, Func. Count: 26, Neg. LLF: 110.21343766620178
Iteration: 3, Func. Count: 38, Neg. LLF: 88.87294032786153
Iteration: 4, Func. Count: 50, Neg. LLF: 2191.434235484905
Iteration: 5, Func. Count: 62, Neg. LLF: 84.04305493387956
Iteration: 6, Func. Count: 73, Neg. LLF: 83.55772729547353
Iteration: 7, Func. Count: 84, Neg. LLF: 83.64313237221894
Iteration: 8, Func. Count: 96, Neg. LLF: 83.5494119397602
Iteration: 9, Func. Count: 108, Neg. LLF: 83.52889319231255
Iteration: 10, Func. Count: 120, Neg. LLF: 83.48380024269925
Iteration: 11, Func. Count: 132, Neg. LLF: 83.44490521482895
Iteration: 12, Func. Count: 143, Neg. LLF: 83.44567671278452
Iteration: 13, Func. Count: 155, Neg. LLF: 83.44450367758883
Iteration: 14, Func. Count: 166, Neg. LLF: 83.44450200147908
Iteration: 15, Func. Count: 177, Neg. LLF: 83.44449927491047
Iteration: 16, Func. Count: 188, Neg. LLF: 83.44449872682625
Optimization terminated successfully (Exit mode 0)
Current function value: 83.44449872682625
Iterations: 16
Function evaluations: 188
Gradient evaluations: 16
Iteration: 1, Func. Count: 13, Neg. LLF: 185.33216516139674
Iteration: 2, Func. Count: 29, Neg. LLF: 83.62655778351714
Iteration: 3, Func. Count: 41, Neg. LLF: 86.43947568798049
Iteration: 4, Func. Count: 54, Neg. LLF: 88.72477620420757
Iteration: 5, Func. Count: 67, Neg. LLF: 83.34269142653807
Iteration: 6, Func. Count: 79, Neg. LLF: 83.34230169217189
Iteration: 7, Func. Count: 91, Neg. LLF: 83.34228488206871
Iteration: 8, Func. Count: 102, Neg. LLF: 83.34228492457578
Optimization terminated successfully (Exit mode 0)
Current function value: 83.34228488206871
Iterations: 8
Function evaluations: 102
Gradient evaluations: 8
Iteration: 1, Func. Count: 14, Neg. LLF: 180.78759905190503
Iteration: 2, Func. Count: 32, Neg. LLF: 83.63412065606938
Iteration: 3, Func. Count: 45, Neg. LLF: 83.40444793798206
Iteration: 4, Func. Count: 58, Neg. LLF: 85.08743267457392
Iteration: 5, Func. Count: 72, Neg. LLF: 83.35604556339221
Iteration: 6, Func. Count: 85, Neg. LLF: 83.3543132024252
Iteration: 7, Func. Count: 98, Neg. LLF: 83.3539848139966
Iteration: 8, Func. Count: 111, Neg. LLF: 83.35245551143123
Iteration: 9, Func. Count: 124, Neg. LLF: 83.34229270042113
Iteration: 10, Func. Count: 137, Neg. LLF: 83.34228503251595
Iteration: 11, Func. Count: 150, Neg. LLF: 83.34228518468142
Optimization terminated successfully (Exit mode 0)
Current function value: 83.34228481085424
Iterations: 11
Function evaluations: 151
Gradient evaluations: 11
Iteration: 1, Func. Count: 15, Neg. LLF: 132.89775138879855
Iteration: 2, Func. Count: 34, Neg. LLF: 84.87994507742746
Iteration: 3, Func. Count: 49, Neg. LLF: 83.66048074923422
Iteration: 4, Func. Count: 64, Neg. LLF: 85.41832004000513
Iteration: 5, Func. Count: 79, Neg. LLF: 83.33587864372454
Iteration: 6, Func. Count: 93, Neg. LLF: 83.72156826996587
Iteration: 7, Func. Count: 108, Neg. LLF: 83.21475475253261
Iteration: 8, Func. Count: 122, Neg. LLF: 83.18228758756221
Iteration: 9, Func. Count: 136, Neg. LLF: 83.11735622573656
Iteration: 10, Func. Count: 150, Neg. LLF: 83.0869378611958
Iteration: 11, Func. Count: 164, Neg. LLF: 83.08110720938024
Iteration: 12, Func. Count: 178, Neg. LLF: 83.08056119277718
Iteration: 13, Func. Count: 192, Neg. LLF: 83.080270192393
Iteration: 14, Func. Count: 206, Neg. LLF: 83.08024910327832
Iteration: 15, Func. Count: 220, Neg. LLF: 83.08024809175821
Iteration: 16, Func. Count: 233, Neg. LLF: 83.08024806077869
Optimization terminated successfully (Exit mode 0)
Current function value: 83.08024809175821
Iterations: 16
Function evaluations: 233
Gradient evaluations: 16
Iteration: 1, Func. Count: 16, Neg. LLF: 122.1372225287267
Iteration: 2, Func. Count: 37, Neg. LLF: 83.47054754425452
Iteration: 3, Func. Count: 52, Neg. LLF: 83.298003856258
Iteration: 4, Func. Count: 67, Neg. LLF: 93.84636768485936
Iteration: 5, Func. Count: 83, Neg. LLF: 83.29459685324821
Iteration: 6, Func. Count: 99, Neg. LLF: 85.01946521433501
Iteration: 7, Func. Count: 116, Neg. LLF: 83.23751573362654
Iteration: 8, Func. Count: 131, Neg. LLF: 83.23083869121406
Iteration: 9, Func. Count: 146, Neg. LLF: 83.22452481737305
Iteration: 10, Func. Count: 161, Neg. LLF: 83.22387563166913
Iteration: 11, Func. Count: 176, Neg. LLF: 83.22334991725255
Iteration: 12, Func. Count: 191, Neg. LLF: 83.22306642800788
Iteration: 13, Func. Count: 206, Neg. LLF: 83.22266343130546
Iteration: 14, Func. Count: 221, Neg. LLF: 83.22265563382264
Iteration: 15, Func. Count: 236, Neg. LLF: 83.22265508872036
Optimization terminated successfully (Exit mode 0)
Current function value: 83.22265508872036
Iterations: 15
Function evaluations: 236
Gradient evaluations: 15
Iteration: 1, Func. Count: 5, Neg. LLF: 119.88333496617007
Iteration: 2, Func. Count: 13, Neg. LLF: 84.78808835631726
Iteration: 3, Func. Count: 18, Neg. LLF: 84.25315615874464
Iteration: 4, Func. Count: 23, Neg. LLF: 84.06805809322542
Iteration: 5, Func. Count: 27, Neg. LLF: 84.0667405273144
Iteration: 6, Func. Count: 31, Neg. LLF: 84.06663102967039
Iteration: 7, Func. Count: 35, Neg. LLF: 84.06662786710767
Iteration: 8, Func. Count: 38, Neg. LLF: 84.0666278671107
Optimization terminated successfully (Exit mode 0)
Current function value: 84.06662786710767
Iterations: 8
Function evaluations: 38
Gradient evaluations: 8
Iteration: 1, Func. Count: 5, Neg. LLF: 125.43593055462279
Iteration: 2, Func. Count: 12, Neg. LLF: 100.33835257658288
Iteration: 3, Func. Count: 16, Neg. LLF: 106.313665112409
Iteration: 4, Func. Count: 21, Neg. LLF: 100.37604272917146
Iteration: 5, Func. Count: 26, Neg. LLF: 100.08323571184224
Iteration: 6, Func. Count: 30, Neg. LLF: 100.08311536836285
Iteration: 7, Func. Count: 34, Neg. LLF: 100.08311491361137
Optimization terminated successfully (Exit mode 0)
Current function value: 100.08311491361137
Iterations: 7
Function evaluations: 34
Gradient evaluations: 7
Iteration: 1, Func. Count: 6, Neg. LLF: 112.30595963631762
Iteration: 2, Func. Count: 15, Neg. LLF: 209.13666673252467
Iteration: 3, Func. Count: 21, Neg. LLF: 255.06611320237573
Iteration: 4, Func. Count: 28, Neg. LLF: 96.91523927766309
Iteration: 5, Func. Count: 34, Neg. LLF: 109.97085464523204
Iteration: 6, Func. Count: 40, Neg. LLF: 96.70505025674913
Iteration: 7, Func. Count: 45, Neg. LLF: 96.63969337850153
Iteration: 8, Func. Count: 50, Neg. LLF: 96.61364483467356
Iteration: 9, Func. Count: 55, Neg. LLF: 96.60493970071884
Iteration: 10, Func. Count: 60, Neg. LLF: 96.60465500671324
Iteration: 11, Func. Count: 65, Neg. LLF: 96.60465114195597
Iteration: 12, Func. Count: 69, Neg. LLF: 96.60465113609985
Optimization terminated successfully (Exit mode 0)
Current function value: 96.60465114195597
Iterations: 12
Function evaluations: 69
Gradient evaluations: 12
Iteration: 1, Func. Count: 7, Neg. LLF: 177.14613062046266
Iteration: 2, Func. Count: 17, Neg. LLF: 98.54153613550291
Iteration: 3, Func. Count: 24, Neg. LLF: 96.57230724928719
Iteration: 4, Func. Count: 30, Neg. LLF: 97.23129989695622
Iteration: 5, Func. Count: 37, Neg. LLF: 96.2744863297926
Iteration: 6, Func. Count: 43, Neg. LLF: 96.27386439352534
Iteration: 7, Func. Count: 49, Neg. LLF: 96.27385966164164
Iteration: 8, Func. Count: 54, Neg. LLF: 96.27385997945002
Optimization terminated successfully (Exit mode 0)
Current function value: 96.27385966164164
Iterations: 8
Function evaluations: 54
Gradient evaluations: 8
Iteration: 1, Func. Count: 8, Neg. LLF: 177.3604787767728
Iteration: 2, Func. Count: 20, Neg. LLF: 99.95382592620882
Iteration: 3, Func. Count: 28, Neg. LLF: 96.46566544007419
Iteration: 4, Func. Count: 35, Neg. LLF: 96.41247828338898
Iteration: 5, Func. Count: 42, Neg. LLF: 96.37723552215365
Iteration: 6, Func. Count: 49, Neg. LLF: 96.3724109746849
Iteration: 7, Func. Count: 56, Neg. LLF: 96.3467703632048
Iteration: 8, Func. Count: 63, Neg. LLF: 96.31626674918083
Iteration: 9, Func. Count: 70, Neg. LLF: 96.3069867749545
Iteration: 10, Func. Count: 77, Neg. LLF: 96.3058007111312
Iteration: 11, Func. Count: 84, Neg. LLF: 96.30537086057933
Iteration: 12, Func. Count: 91, Neg. LLF: 96.30216898741072
Iteration: 13, Func. Count: 98, Neg. LLF: 96.2697704451848
Iteration: 14, Func. Count: 105, Neg. LLF: 96.26845674788404
Iteration: 15, Func. Count: 112, Neg. LLF: 105.69794514505553
Iteration: 16, Func. Count: 121, Neg. LLF: 96.2702906954299
Iteration: 17, Func. Count: 129, Neg. LLF: 96.26826991288726
Iteration: 18, Func. Count: 136, Neg. LLF: 96.2682693345283
Optimization terminated successfully (Exit mode 0)
Current function value: 96.2682693345283
Iterations: 19
Function evaluations: 136
Gradient evaluations: 18
Iteration: 1, Func. Count: 9, Neg. LLF: 180.82635297929656
Iteration: 2, Func. Count: 22, Neg. LLF: 100.77092146160452
Iteration: 3, Func. Count: 31, Neg. LLF: 96.48305036809207
Iteration: 4, Func. Count: 39, Neg. LLF: 96.43780375490648
Iteration: 5, Func. Count: 47, Neg. LLF: 96.42293972579382
Iteration: 6, Func. Count: 55, Neg. LLF: 96.40981515167798
Iteration: 7, Func. Count: 63, Neg. LLF: 96.35275079194943
Iteration: 8, Func. Count: 71, Neg. LLF: 96.34730211079827
Iteration: 9, Func. Count: 79, Neg. LLF: 96.3059660771495
Iteration: 10, Func. Count: 87, Neg. LLF: 96.28449100447662
Iteration: 11, Func. Count: 95, Neg. LLF: 96.27495823237805
Iteration: 12, Func. Count: 103, Neg. LLF: 96.27388659746626
Iteration: 13, Func. Count: 111, Neg. LLF: 96.27385985683227
Iteration: 14, Func. Count: 119, Neg. LLF: 96.27540022599457
Optimization terminated successfully (Exit mode 0)
Current function value: 96.27385982785324
Iterations: 15
Function evaluations: 122
Gradient evaluations: 14
Iteration: 1, Func. Count: 6, Neg. LLF: 122.00566785349575
Iteration: 2, Func. Count: 13, Neg. LLF: 520153912.78566396
Iteration: 3, Func. Count: 19, Neg. LLF: 12206382.199833717
Iteration: 4, Func. Count: 25, Neg. LLF: 11342185.89228895
Iteration: 5, Func. Count: 31, Neg. LLF: 191.28515880123516
Iteration: 6, Func. Count: 37, Neg. LLF: 93.74376201833773
Iteration: 7, Func. Count: 43, Neg. LLF: 92.18352591157402
Iteration: 8, Func. Count: 48, Neg. LLF: 92.14269831055154
Iteration: 9, Func. Count: 53, Neg. LLF: 92.08989702219792
Iteration: 10, Func. Count: 58, Neg. LLF: 92.00838551178587
Iteration: 11, Func. Count: 63, Neg. LLF: 91.96948062135735
Iteration: 12, Func. Count: 68, Neg. LLF: 91.96418720541422
Iteration: 13, Func. Count: 73, Neg. LLF: 91.96400562922993
Iteration: 14, Func. Count: 78, Neg. LLF: 91.9640003626269
Iteration: 15, Func. Count: 82, Neg. LLF: 91.96400036262365
Optimization terminated successfully (Exit mode 0)
Current function value: 91.9640003626269
Iterations: 15
Function evaluations: 82
Gradient evaluations: 15
Iteration: 1, Func. Count: 7, Neg. LLF: 13457215.375934659
Iteration: 2, Func. Count: 14, Neg. LLF: 209.56472717804084
Iteration: 3, Func. Count: 22, Neg. LLF: 94.64362079713794
Iteration: 4, Func. Count: 28, Neg. LLF: 109.1895696303325
Iteration: 5, Func. Count: 35, Neg. LLF: 92.03140299080164
Iteration: 6, Func. Count: 41, Neg. LLF: 92.00477444089844
Iteration: 7, Func. Count: 47, Neg. LLF: 91.99095108699775
Iteration: 8, Func. Count: 53, Neg. LLF: 91.96984021001165
Iteration: 9, Func. Count: 59, Neg. LLF: 91.9650778088435
Iteration: 10, Func. Count: 65, Neg. LLF: 91.96405767042737
Iteration: 11, Func. Count: 71, Neg. LLF: 91.96400226767337
Iteration: 12, Func. Count: 77, Neg. LLF: 91.96400021088688
Iteration: 13, Func. Count: 82, Neg. LLF: 91.9640003182568
Optimization terminated successfully (Exit mode 0)
Current function value: 91.96400021088688
Iterations: 13
Function evaluations: 82
Gradient evaluations: 13
Iteration: 1, Func. Count: 8, Neg. LLF: 123.3268073793711
Iteration: 2, Func. Count: 16, Neg. LLF: 95.47923235012148
Iteration: 3, Func. Count: 24, Neg. LLF: 104.78491401941757
Iteration: 4, Func. Count: 33, Neg. LLF: 92.26549764461228
Iteration: 5, Func. Count: 40, Neg. LLF: 92.1475466339547
Iteration: 6, Func. Count: 47, Neg. LLF: 92.04983979268845
Iteration: 7, Func. Count: 54, Neg. LLF: 91.98953878801632
Iteration: 8, Func. Count: 61, Neg. LLF: 91.96589871808914
Iteration: 9, Func. Count: 68, Neg. LLF: 91.96407511317005
Iteration: 10, Func. Count: 75, Neg. LLF: 91.96400188696244
Iteration: 11, Func. Count: 82, Neg. LLF: 91.96400023098343
Iteration: 12, Func. Count: 88, Neg. LLF: 91.96400029694117
Optimization terminated successfully (Exit mode 0)
Current function value: 91.96400023098343
Iterations: 12
Function evaluations: 88
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 103.70147383194983
Iteration: 2, Func. Count: 18, Neg. LLF: 105.77115512668608
Iteration: 3, Func. Count: 28, Neg. LLF: 97.20243241151728
Iteration: 4, Func. Count: 37, Neg. LLF: 92.09490554013618
Iteration: 5, Func. Count: 45, Neg. LLF: 92.1877616688918
Iteration: 6, Func. Count: 54, Neg. LLF: 91.75434533375288
Iteration: 7, Func. Count: 62, Neg. LLF: 91.71159858766525
Iteration: 8, Func. Count: 70, Neg. LLF: 91.69815233576222
Iteration: 9, Func. Count: 78, Neg. LLF: 91.68436467108826
Iteration: 10, Func. Count: 86, Neg. LLF: 91.67027237741885
Iteration: 11, Func. Count: 94, Neg. LLF: 91.66764578320881
Iteration: 12, Func. Count: 102, Neg. LLF: 91.66756078610074
Iteration: 13, Func. Count: 110, Neg. LLF: 91.66754772397232
Iteration: 14, Func. Count: 117, Neg. LLF: 91.66754772403422
Optimization terminated successfully (Exit mode 0)
Current function value: 91.66754772397232
Iterations: 14
Function evaluations: 117
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 97.0725296443567
Iteration: 2, Func. Count: 20, Neg. LLF: 105.26506504196735
Iteration: 3, Func. Count: 31, Neg. LLF: 97.14843081861429
Iteration: 4, Func. Count: 41, Neg. LLF: 91.7087214052339
Iteration: 5, Func. Count: 50, Neg. LLF: 91.82333030801117
Iteration: 6, Func. Count: 60, Neg. LLF: 91.6880799940717
Iteration: 7, Func. Count: 69, Neg. LLF: 91.67680712106156
Iteration: 8, Func. Count: 78, Neg. LLF: 91.67324510010634
Iteration: 9, Func. Count: 87, Neg. LLF: 91.67045231807757
Iteration: 10, Func. Count: 96, Neg. LLF: 91.66870832425116
Iteration: 11, Func. Count: 105, Neg. LLF: 91.66769157738952
Iteration: 12, Func. Count: 114, Neg. LLF: 91.66755413072445
Iteration: 13, Func. Count: 123, Neg. LLF: 91.66754740520516
Iteration: 14, Func. Count: 131, Neg. LLF: 91.66754747366372
Optimization terminated successfully (Exit mode 0)
Current function value: 91.66754740520516
Iterations: 14
Function evaluations: 131
Gradient evaluations: 14
Iteration: 1, Func. Count: 7, Neg. LLF: 131.11547864645763
Iteration: 2, Func. Count: 16, Neg. LLF: 577582667.5765169
Iteration: 3, Func. Count: 24, Neg. LLF: 11115220.739300009
Iteration: 4, Func. Count: 31, Neg. LLF: 98.71907338997747
Iteration: 5, Func. Count: 38, Neg. LLF: 93.07301387302512
Iteration: 6, Func. Count: 44, Neg. LLF: 92.72042505771991
Iteration: 7, Func. Count: 50, Neg. LLF: 92.46520392549218
Iteration: 8, Func. Count: 56, Neg. LLF: 92.13102819222703
Iteration: 9, Func. Count: 62, Neg. LLF: 92.00921425414478
Iteration: 10, Func. Count: 68, Neg. LLF: 91.96848761420567
Iteration: 11, Func. Count: 74, Neg. LLF: 91.96438297912894
Iteration: 12, Func. Count: 80, Neg. LLF: 91.96402813102294
Iteration: 13, Func. Count: 86, Neg. LLF: 91.96400142713037
Iteration: 14, Func. Count: 92, Neg. LLF: 91.96400019249494
Iteration: 15, Func. Count: 97, Neg. LLF: 91.96400027696171
Optimization terminated successfully (Exit mode 0)
Current function value: 91.96400019249494
Iterations: 15
Function evaluations: 97
Gradient evaluations: 15
Iteration: 1, Func. Count: 8, Neg. LLF: 93.66043400905866
Iteration: 2, Func. Count: 15, Neg. LLF: 112.23301235471928
Iteration: 3, Func. Count: 24, Neg. LLF: 129.51437238354146
Iteration: 4, Func. Count: 33, Neg. LLF: 92.11615300684193
Iteration: 5, Func. Count: 40, Neg. LLF: 92.02112384992574
Iteration: 6, Func. Count: 47, Neg. LLF: 91.978064985147
Iteration: 7, Func. Count: 54, Neg. LLF: 91.96654322342982
Iteration: 8, Func. Count: 61, Neg. LLF: 91.96407229768903
Iteration: 9, Func. Count: 68, Neg. LLF: 91.96400191769776
Iteration: 10, Func. Count: 75, Neg. LLF: 91.96400022522856
Iteration: 11, Func. Count: 81, Neg. LLF: 91.96400033258764
Optimization terminated successfully (Exit mode 0)
Current function value: 91.96400022522856
Iterations: 11
Function evaluations: 81
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 93.53764777817779
Iteration: 2, Func. Count: 17, Neg. LLF: 195.0405018541761
Iteration: 3, Func. Count: 26, Neg. LLF: 178.99994364598402
Iteration: 4, Func. Count: 35, Neg. LLF: 92.13707364471384
Iteration: 5, Func. Count: 43, Neg. LLF: 92.03190445440175
Iteration: 6, Func. Count: 51, Neg. LLF: 92.00001390391242
Iteration: 7, Func. Count: 59, Neg. LLF: 91.967273946381
Iteration: 8, Func. Count: 67, Neg. LLF: 91.96416240133885
Iteration: 9, Func. Count: 75, Neg. LLF: 91.9640012739003
Iteration: 10, Func. Count: 83, Neg. LLF: 91.96400016247696
Iteration: 11, Func. Count: 90, Neg. LLF: 91.9640002284156
Optimization terminated successfully (Exit mode 0)
Current function value: 91.96400016247696
Iterations: 11
Function evaluations: 90
Gradient evaluations: 11
Iteration: 1, Func. Count: 10, Neg. LLF: 122.21834376028819
Iteration: 2, Func. Count: 24, Neg. LLF: 21104738.793567725
Iteration: 3, Func. Count: 34, Neg. LLF: 11243017.576021682
Iteration: 4, Func. Count: 44, Neg. LLF: 134.3793204825725
Iteration: 5, Func. Count: 54, Neg. LLF: 93.22159300233508
Iteration: 6, Func. Count: 63, Neg. LLF: 93.31670925399402
Iteration: 7, Func. Count: 73, Neg. LLF: 92.57994025356433
Iteration: 8, Func. Count: 82, Neg. LLF: 92.17046783647129
Iteration: 9, Func. Count: 91, Neg. LLF: 91.97929415993949
Iteration: 10, Func. Count: 100, Neg. LLF: 91.95581330360972
Iteration: 11, Func. Count: 109, Neg. LLF: 91.9340060455943
Iteration: 12, Func. Count: 118, Neg. LLF: 91.81284638099953
Iteration: 13, Func. Count: 127, Neg. LLF: 91.70197763238481
Iteration: 14, Func. Count: 136, Neg. LLF: 91.67120193757157
Iteration: 15, Func. Count: 145, Neg. LLF: 91.66890327992022
Iteration: 16, Func. Count: 154, Neg. LLF: 91.66807149623229
Iteration: 17, Func. Count: 163, Neg. LLF: 91.66771862689166
Iteration: 18, Func. Count: 172, Neg. LLF: 91.66755559014366
Iteration: 19, Func. Count: 181, Neg. LLF: 91.66754767992217
Iteration: 20, Func. Count: 189, Neg. LLF: 91.66754767986245
Optimization terminated successfully (Exit mode 0)
Current function value: 91.66754767992217
Iterations: 20
Function evaluations: 189
Gradient evaluations: 20
Iteration: 1, Func. Count: 11, Neg. LLF: 125.09725502965823
Iteration: 2, Func. Count: 26, Neg. LLF: 23596768.770987026
Iteration: 3, Func. Count: 37, Neg. LLF: 11066088.98259071
Iteration: 4, Func. Count: 48, Neg. LLF: 105.58614371098565
Iteration: 5, Func. Count: 59, Neg. LLF: 95.5788855276764
Iteration: 6, Func. Count: 70, Neg. LLF: 92.05769262692544
Iteration: 7, Func. Count: 80, Neg. LLF: 92.01756687648546
Iteration: 8, Func. Count: 90, Neg. LLF: 91.99637184646853
Iteration: 9, Func. Count: 100, Neg. LLF: 91.97677372790872
Iteration: 10, Func. Count: 110, Neg. LLF: 91.89050500578222
Iteration: 11, Func. Count: 120, Neg. LLF: 91.70152706903639
Iteration: 12, Func. Count: 130, Neg. LLF: 91.67452322693121
Iteration: 13, Func. Count: 140, Neg. LLF: 91.66795212784753
Iteration: 14, Func. Count: 150, Neg. LLF: 91.6676552081886
Iteration: 15, Func. Count: 160, Neg. LLF: 91.66754989021676
Iteration: 16, Func. Count: 170, Neg. LLF: 91.66754898082853
Optimization terminated successfully (Exit mode 0)
Current function value: 91.66754898082853
Iterations: 16
Function evaluations: 170
Gradient evaluations: 16
Iteration: 1, Func. Count: 8, Neg. LLF: 131.53431167622057
Iteration: 2, Func. Count: 18, Neg. LLF: 533887332.52808857
Iteration: 3, Func. Count: 26, Neg. LLF: 12036695.642907925
Iteration: 4, Func. Count: 34, Neg. LLF: 104.09185776719626
Iteration: 5, Func. Count: 42, Neg. LLF: 102.20976025307876
Iteration: 6, Func. Count: 50, Neg. LLF: 92.86685178744005
Iteration: 7, Func. Count: 57, Neg. LLF: 92.66752919151965
Iteration: 8, Func. Count: 64, Neg. LLF: 92.1766184391047
Iteration: 9, Func. Count: 71, Neg. LLF: 92.02925729646135
Iteration: 10, Func. Count: 78, Neg. LLF: 91.97408313352442
Iteration: 11, Func. Count: 85, Neg. LLF: 91.96456719239116
Iteration: 12, Func. Count: 92, Neg. LLF: 91.96400595163969
Iteration: 13, Func. Count: 99, Neg. LLF: 91.9640001667313
Iteration: 14, Func. Count: 105, Neg. LLF: 91.9640002213996
Optimization terminated successfully (Exit mode 0)
Current function value: 91.9640001667313
Iterations: 14
Function evaluations: 105
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 94.10534079466088
Iteration: 2, Func. Count: 17, Neg. LLF: 160.62930451426325
Iteration: 3, Func. Count: 26, Neg. LLF: 299.09739229678405
Iteration: 4, Func. Count: 35, Neg. LLF: 92.11654914288387
Iteration: 5, Func. Count: 43, Neg. LLF: 92.01108486387747
Iteration: 6, Func. Count: 51, Neg. LLF: 91.98400923464212
Iteration: 7, Func. Count: 59, Neg. LLF: 91.96579466766165
Iteration: 8, Func. Count: 67, Neg. LLF: 91.96405289969196
Iteration: 9, Func. Count: 75, Neg. LLF: 91.96400075272436
Iteration: 10, Func. Count: 83, Neg. LLF: 91.9640001624584
Optimization terminated successfully (Exit mode 0)
Current function value: 91.9640001624584
Iterations: 10
Function evaluations: 83
Gradient evaluations: 10
Iteration: 1, Func. Count: 10, Neg. LLF: 118.46980059572273
Iteration: 2, Func. Count: 24, Neg. LLF: 18537281.737837423
Iteration: 3, Func. Count: 34, Neg. LLF: 10157138.651306575
Iteration: 4, Func. Count: 44, Neg. LLF: 327.9393597237952
Iteration: 5, Func. Count: 55, Neg. LLF: 98.01992360082437
Iteration: 6, Func. Count: 65, Neg. LLF: 95.05803753690952
Iteration: 7, Func. Count: 74, Neg. LLF: 94.58791857982236
Iteration: 8, Func. Count: 83, Neg. LLF: 94.16123844354138
Iteration: 9, Func. Count: 92, Neg. LLF: 93.33512255310958
Iteration: 10, Func. Count: 101, Neg. LLF: 92.12827424877462
Iteration: 11, Func. Count: 110, Neg. LLF: 92.02181359813792
Iteration: 12, Func. Count: 119, Neg. LLF: 92.01765352030047
Iteration: 13, Func. Count: 128, Neg. LLF: 92.01580171657925
Iteration: 14, Func. Count: 137, Neg. LLF: 92.0087276621215
Iteration: 15, Func. Count: 146, Neg. LLF: 92.00249837281449
Iteration: 16, Func. Count: 155, Neg. LLF: 91.99614609041441
Iteration: 17, Func. Count: 164, Neg. LLF: 91.9909735681828
Iteration: 18, Func. Count: 173, Neg. LLF: 91.98387048371868
Iteration: 19, Func. Count: 182, Neg. LLF: 91.97448617133934
Iteration: 20, Func. Count: 191, Neg. LLF: 91.9665586367395
Iteration: 21, Func. Count: 200, Neg. LLF: 91.9642565864184
Iteration: 22, Func. Count: 209, Neg. LLF: 91.96401880037729
Iteration: 23, Func. Count: 218, Neg. LLF: 91.96400057209813
Iteration: 24, Func. Count: 226, Neg. LLF: 91.96400063806576
Optimization terminated successfully (Exit mode 0)
Current function value: 91.96400057209813
Iterations: 24
Function evaluations: 226
Gradient evaluations: 24
Iteration: 1, Func. Count: 11, Neg. LLF: 122.45654103042106
Iteration: 2, Func. Count: 26, Neg. LLF: 21127058.8471267
Iteration: 3, Func. Count: 37, Neg. LLF: 11323868.232588574
Iteration: 4, Func. Count: 48, Neg. LLF: 133.51512149765603
Iteration: 5, Func. Count: 59, Neg. LLF: 93.13176222427664
Iteration: 6, Func. Count: 69, Neg. LLF: 92.95035315633527
Iteration: 7, Func. Count: 80, Neg. LLF: 92.28586730649538
Iteration: 8, Func. Count: 90, Neg. LLF: 92.03264770156721
Iteration: 9, Func. Count: 100, Neg. LLF: 91.98152307584027
Iteration: 10, Func. Count: 110, Neg. LLF: 91.96465212108842
Iteration: 11, Func. Count: 120, Neg. LLF: 91.88500365541192
Iteration: 12, Func. Count: 130, Neg. LLF: 91.78527224019484
Iteration: 13, Func. Count: 140, Neg. LLF: 91.7212909921108
Iteration: 14, Func. Count: 150, Neg. LLF: 91.6883148473042
Iteration: 15, Func. Count: 160, Neg. LLF: 91.67273302832349
Iteration: 16, Func. Count: 170, Neg. LLF: 91.66879058300874
Iteration: 17, Func. Count: 180, Neg. LLF: 91.66780094966687
Iteration: 18, Func. Count: 190, Neg. LLF: 91.66756547515706
Iteration: 19, Func. Count: 200, Neg. LLF: 91.66754803781342
Iteration: 20, Func. Count: 210, Neg. LLF: 91.66754727826483
Optimization terminated successfully (Exit mode 0)
Current function value: 91.66754727826483
Iterations: 20
Function evaluations: 210
Gradient evaluations: 20
Iteration: 1, Func. Count: 12, Neg. LLF: 125.29037878243065
Iteration: 2, Func. Count: 28, Neg. LLF: 23612571.526062325
Iteration: 3, Func. Count: 40, Neg. LLF: 11188032.078151686
Iteration: 4, Func. Count: 52, Neg. LLF: 105.20410944972488
Iteration: 5, Func. Count: 64, Neg. LLF: 95.64447360802906
Iteration: 6, Func. Count: 76, Neg. LLF: 92.0356823163461
Iteration: 7, Func. Count: 87, Neg. LLF: 92.00882911090015
Iteration: 8, Func. Count: 98, Neg. LLF: 91.98312685588857
Iteration: 9, Func. Count: 109, Neg. LLF: 91.96079196454517
Iteration: 10, Func. Count: 120, Neg. LLF: 91.84634889506502
Iteration: 11, Func. Count: 131, Neg. LLF: 91.72159810358306
Iteration: 12, Func. Count: 142, Neg. LLF: 91.68467516137763
Iteration: 13, Func. Count: 153, Neg. LLF: 91.67450392954896
Iteration: 14, Func. Count: 164, Neg. LLF: 91.67028861888838
Iteration: 15, Func. Count: 175, Neg. LLF: 91.66828530082799
Iteration: 16, Func. Count: 186, Neg. LLF: 91.66767541430474
Iteration: 17, Func. Count: 197, Neg. LLF: 91.66756949973527
Iteration: 18, Func. Count: 208, Neg. LLF: 91.66754966838774
Iteration: 19, Func. Count: 219, Neg. LLF: 91.66754735420572
Iteration: 20, Func. Count: 229, Neg. LLF: 91.6675474226517
Optimization terminated successfully (Exit mode 0)
Current function value: 91.66754735420572
Iterations: 20
Function evaluations: 229
Gradient evaluations: 20
Iteration: 1, Func. Count: 5, Neg. LLF: 132.46631052391967
Iteration: 2, Func. Count: 12, Neg. LLF: 133.36673008116767
Iteration: 3, Func. Count: 17, Neg. LLF: 100.10474001692195
Iteration: 4, Func. Count: 21, Neg. LLF: 100.09399460968872
Iteration: 5, Func. Count: 25, Neg. LLF: 100.08362801670903
Iteration: 6, Func. Count: 29, Neg. LLF: 100.08333204029857
Iteration: 7, Func. Count: 33, Neg. LLF: 100.08312351319557
Iteration: 8, Func. Count: 37, Neg. LLF: 100.08311510769184
Iteration: 9, Func. Count: 40, Neg. LLF: 100.08311519331416
Optimization terminated successfully (Exit mode 0)
Current function value: 100.08311510769184
Iterations: 9
Function evaluations: 40
Gradient evaluations: 9
Iteration: 1, Func. Count: 6, Neg. LLF: 138.24475217503914
Iteration: 2, Func. Count: 15, Neg. LLF: 122.97358240022268
Iteration: 3, Func. Count: 21, Neg. LLF: 109.55769324083516
Iteration: 4, Func. Count: 27, Neg. LLF: 97.25805595952919
Iteration: 5, Func. Count: 32, Neg. LLF: 97.25788194101177
Iteration: 6, Func. Count: 37, Neg. LLF: 97.25787618821275
Iteration: 7, Func. Count: 42, Neg. LLF: 97.25787303651124
Iteration: 8, Func. Count: 46, Neg. LLF: 97.25787297895792
Optimization terminated successfully (Exit mode 0)
Current function value: 97.25787303651124
Iterations: 8
Function evaluations: 46
Gradient evaluations: 8
Iteration: 1, Func. Count: 7, Neg. LLF: 177.77507750821377
Iteration: 2, Func. Count: 17, Neg. LLF: 98.77870757242798
Iteration: 3, Func. Count: 24, Neg. LLF: 96.66566412527132
Iteration: 4, Func. Count: 30, Neg. LLF: 105.69450674503206
Iteration: 5, Func. Count: 37, Neg. LLF: 96.35705225048903
Iteration: 6, Func. Count: 43, Neg. LLF: 96.28677941659734
Iteration: 7, Func. Count: 49, Neg. LLF: 96.28088441928192
Iteration: 8, Func. Count: 55, Neg. LLF: 96.27449174893835
Iteration: 9, Func. Count: 61, Neg. LLF: 96.27391236420021
Iteration: 10, Func. Count: 67, Neg. LLF: 96.27385964084726
Iteration: 11, Func. Count: 72, Neg. LLF: 96.27385995871734
Optimization terminated successfully (Exit mode 0)
Current function value: 96.27385964084726
Iterations: 11
Function evaluations: 72
Gradient evaluations: 11
Iteration: 1, Func. Count: 8, Neg. LLF: 178.256214927859
Iteration: 2, Func. Count: 20, Neg. LLF: 100.11352532068466
Iteration: 3, Func. Count: 28, Neg. LLF: 96.46052930313706
Iteration: 4, Func. Count: 35, Neg. LLF: 96.41546227226377
Iteration: 5, Func. Count: 42, Neg. LLF: 96.39144021716396
Iteration: 6, Func. Count: 49, Neg. LLF: 96.38446818065825
Iteration: 7, Func. Count: 56, Neg. LLF: 96.35105971297453
Iteration: 8, Func. Count: 63, Neg. LLF: 96.31529968646495
Iteration: 9, Func. Count: 70, Neg. LLF: 96.31166930742266
Iteration: 10, Func. Count: 77, Neg. LLF: 96.30994891946048
Iteration: 11, Func. Count: 84, Neg. LLF: 96.30998974873319
Iteration: 12, Func. Count: 91, Neg. LLF: 96.30998237750022
Iteration: 13, Func. Count: 98, Neg. LLF: 96.30930561330102
Iteration: 14, Func. Count: 105, Neg. LLF: 96.30584316037059
Iteration: 15, Func. Count: 112, Neg. LLF: 96.29702841991647
Iteration: 16, Func. Count: 119, Neg. LLF: 96.28433123228805
Iteration: 17, Func. Count: 126, Neg. LLF: 96.2702470638755
Iteration: 18, Func. Count: 133, Neg. LLF: 96.26800686552124
Iteration: 19, Func. Count: 140, Neg. LLF: 96.26777518033482
Iteration: 20, Func. Count: 147, Neg. LLF: 96.26801503180909
Iteration: 21, Func. Count: 164, Neg. LLF: 96.26788273052478
Iteration: 22, Func. Count: 181, Neg. LLF: 96.26769331954483
Iteration: 23, Func. Count: 198, Neg. LLF: 96.29780873259242
Iteration: 24, Func. Count: 215, Neg. LLF: 540.5049282561289
Iteration: 25, Func. Count: 232, Neg. LLF: 257.7423886513112
Iteration: 26, Func. Count: 249, Neg. LLF: 422.45797843361794
Iteration: 27, Func. Count: 266, Neg. LLF: 350.99018898142265
Iteration: 28, Func. Count: 283, Neg. LLF: 355.3526999064073
Iteration: 29, Func. Count: 300, Neg. LLF: 105.61925206044518
Iteration: 30, Func. Count: 310, Neg. LLF: 96.26926967613177
Iteration: 31, Func. Count: 319, Neg. LLF: 96.26826933048594
Iteration: 32, Func. Count: 326, Neg. LLF: 96.26826786979846
Optimization terminated successfully (Exit mode 0)
Current function value: 96.26826932909358
Iterations: 33
Function evaluations: 336
Gradient evaluations: 32
Iteration: 1, Func. Count: 9, Neg. LLF: 182.56736338678962
Iteration: 2, Func. Count: 22, Neg. LLF: 100.73856840137401
Iteration: 3, Func. Count: 31, Neg. LLF: 96.49121987013149
Iteration: 4, Func. Count: 39, Neg. LLF: 96.42985876409433
Iteration: 5, Func. Count: 47, Neg. LLF: 96.38647662091077
Iteration: 6, Func. Count: 55, Neg. LLF: 96.37801243138372
Iteration: 7, Func. Count: 63, Neg. LLF: 96.35211285087371
Iteration: 8, Func. Count: 71, Neg. LLF: 96.29221029386248
Iteration: 9, Func. Count: 79, Neg. LLF: 96.27807256591271
Iteration: 10, Func. Count: 87, Neg. LLF: 96.27492285804854
Iteration: 11, Func. Count: 95, Neg. LLF: 96.27449114658864
Iteration: 12, Func. Count: 103, Neg. LLF: 96.27386156033621
Iteration: 13, Func. Count: 111, Neg. LLF: 96.54287313057182
Iteration: 14, Func. Count: 122, Neg. LLF: 96.27427358004125
Iteration: 15, Func. Count: 132, Neg. LLF: 96.27385961986792
Optimization terminated successfully (Exit mode 0)
Current function value: 96.27385961986792
Iterations: 16
Function evaluations: 132
Gradient evaluations: 15
Iteration: 1, Func. Count: 6, Neg. LLF: 132.83565701677878
Iteration: 2, Func. Count: 14, Neg. LLF: 144.7864824766176
Iteration: 3, Func. Count: 20, Neg. LLF: 100.11073263376693
Iteration: 4, Func. Count: 25, Neg. LLF: 100.09616361220718
Iteration: 5, Func. Count: 30, Neg. LLF: 100.08327688686084
Iteration: 6, Func. Count: 35, Neg. LLF: 100.08312801473451
Iteration: 7, Func. Count: 40, Neg. LLF: 100.08312002970135
Iteration: 8, Func. Count: 45, Neg. LLF: 100.08311489939685
Iteration: 9, Func. Count: 49, Neg. LLF: 100.08311483217803
Optimization terminated successfully (Exit mode 0)
Current function value: 100.08311489939685
Iterations: 9
Function evaluations: 49
Gradient evaluations: 9
Iteration: 1, Func. Count: 7, Neg. LLF: 118.2606442841436
Iteration: 2, Func. Count: 17, Neg. LLF: 196.00329618077689
Iteration: 3, Func. Count: 24, Neg. LLF: 170.32608922570853
Iteration: 4, Func. Count: 31, Neg. LLF: 96.74369193338696
Iteration: 5, Func. Count: 37, Neg. LLF: 97.07069261756554
Iteration: 6, Func. Count: 44, Neg. LLF: 96.64714984657437
Iteration: 7, Func. Count: 50, Neg. LLF: 96.6224725968182
Iteration: 8, Func. Count: 56, Neg. LLF: 96.60627117838303
Iteration: 9, Func. Count: 62, Neg. LLF: 96.60468872363522
Iteration: 10, Func. Count: 68, Neg. LLF: 96.60465345718154
Iteration: 11, Func. Count: 74, Neg. LLF: 96.60465113909822
Iteration: 12, Func. Count: 79, Neg. LLF: 96.60465113325009
Optimization terminated successfully (Exit mode 0)
Current function value: 96.60465113909822
Iterations: 12
Function evaluations: 79
Gradient evaluations: 12
Iteration: 1, Func. Count: 8, Neg. LLF: 180.09102477234308
Iteration: 2, Func. Count: 19, Neg. LLF: 101.19213588886714
Iteration: 3, Func. Count: 27, Neg. LLF: 104.09011073263785
Iteration: 4, Func. Count: 35, Neg. LLF: 94.76206884023023
Iteration: 5, Func. Count: 42, Neg. LLF: 94.4651152188795
Iteration: 6, Func. Count: 49, Neg. LLF: 94.33796897543205
Iteration: 7, Func. Count: 56, Neg. LLF: 94.34744725970002
Iteration: 8, Func. Count: 64, Neg. LLF: 94.26712750358638
Iteration: 9, Func. Count: 71, Neg. LLF: 94.26688079747473
Iteration: 10, Func. Count: 78, Neg. LLF: 94.26686322917435
Iteration: 11, Func. Count: 85, Neg. LLF: 94.26686157228491
Iteration: 12, Func. Count: 91, Neg. LLF: 94.26686133383203
Optimization terminated successfully (Exit mode 0)
Current function value: 94.26686157228491
Iterations: 12
Function evaluations: 91
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 181.80815526109257
Iteration: 2, Func. Count: 22, Neg. LLF: 100.54890069660962
Iteration: 3, Func. Count: 31, Neg. LLF: 95.65109076164248
Iteration: 4, Func. Count: 39, Neg. LLF: 106.81133285649189
Iteration: 5, Func. Count: 48, Neg. LLF: 94.14171671944761
Iteration: 6, Func. Count: 56, Neg. LLF: 93.67170030607078
Iteration: 7, Func. Count: 64, Neg. LLF: 93.59848265467623
Iteration: 8, Func. Count: 72, Neg. LLF: 93.59221768110503
Iteration: 9, Func. Count: 80, Neg. LLF: 93.59054416404153
Iteration: 10, Func. Count: 88, Neg. LLF: 93.59053862478285
Iteration: 11, Func. Count: 95, Neg. LLF: 93.5905383784974
Optimization terminated successfully (Exit mode 0)
Current function value: 93.59053862478285
Iterations: 11
Function evaluations: 95
Gradient evaluations: 11
Iteration: 1, Func. Count: 10, Neg. LLF: 184.8043238512089
Iteration: 2, Func. Count: 24, Neg. LLF: 101.28162938511636
Iteration: 3, Func. Count: 34, Neg. LLF: 96.50658871380546
Iteration: 4, Func. Count: 43, Neg. LLF: 95.96202973237034
Iteration: 5, Func. Count: 52, Neg. LLF: 94.56364539354956
Iteration: 6, Func. Count: 61, Neg. LLF: 94.17571557151093
Iteration: 7, Func. Count: 70, Neg. LLF: 94.08525543258138
Iteration: 8, Func. Count: 79, Neg. LLF: 94.06780508903907
Iteration: 9, Func. Count: 88, Neg. LLF: 94.05795664586799
Iteration: 10, Func. Count: 97, Neg. LLF: 94.05751888739648
Iteration: 11, Func. Count: 106, Neg. LLF: 94.05751161179354
Iteration: 12, Func. Count: 114, Neg. LLF: 94.05751139989354
Optimization terminated successfully (Exit mode 0)
Current function value: 94.05751161179354
Iterations: 12
Function evaluations: 114
Gradient evaluations: 12
Iteration: 1, Func. Count: 7, Neg. LLF: 111.71448760152086
Iteration: 2, Func. Count: 15, Neg. LLF: 352773966.36816216
Iteration: 3, Func. Count: 22, Neg. LLF: 11173493.38590493
Iteration: 4, Func. Count: 29, Neg. LLF: 7031719.2960247565
Iteration: 5, Func. Count: 36, Neg. LLF: 7741906.791765244
Iteration: 6, Func. Count: 43, Neg. LLF: 7816532.435132377
Iteration: 7, Func. Count: 50, Neg. LLF: 95.72867060272013
Iteration: 8, Func. Count: 57, Neg. LLF: 91.9467203241224
Iteration: 9, Func. Count: 63, Neg. LLF: 91.7947773634939
Iteration: 10, Func. Count: 69, Neg. LLF: 91.759243028565
Iteration: 11, Func. Count: 75, Neg. LLF: 91.67895734444753
Iteration: 12, Func. Count: 81, Neg. LLF: 91.60663210261072
Iteration: 13, Func. Count: 87, Neg. LLF: 91.56587267894989
Iteration: 14, Func. Count: 93, Neg. LLF: 91.5623709197649
Iteration: 15, Func. Count: 99, Neg. LLF: 91.56220766881641
Iteration: 16, Func. Count: 105, Neg. LLF: 91.5622040900933
Iteration: 17, Func. Count: 110, Neg. LLF: 91.56220409008816
Optimization terminated successfully (Exit mode 0)
Current function value: 91.5622040900933
Iterations: 17
Function evaluations: 110
Gradient evaluations: 17
Iteration: 1, Func. Count: 8, Neg. LLF: 102.74669211997816
Iteration: 2, Func. Count: 16, Neg. LLF: 141.53450016925495
Iteration: 3, Func. Count: 25, Neg. LLF: 94.05946793962309
Iteration: 4, Func. Count: 33, Neg. LLF: 93.90117585327447
Iteration: 5, Func. Count: 41, Neg. LLF: 91.74717082652717
Iteration: 6, Func. Count: 48, Neg. LLF: 92.01774008788804
Iteration: 7, Func. Count: 56, Neg. LLF: 91.60826430324875
Iteration: 8, Func. Count: 63, Neg. LLF: 91.58262400719242
Iteration: 9, Func. Count: 70, Neg. LLF: 91.57534565781677
Iteration: 10, Func. Count: 77, Neg. LLF: 91.56445476730009
Iteration: 11, Func. Count: 84, Neg. LLF: 91.56256554497831
Iteration: 12, Func. Count: 91, Neg. LLF: 91.56222877085071
Iteration: 13, Func. Count: 98, Neg. LLF: 91.56220543314686
Iteration: 14, Func. Count: 105, Neg. LLF: 91.56220387606348
Iteration: 15, Func. Count: 111, Neg. LLF: 91.56220399830947
Optimization terminated successfully (Exit mode 0)
Current function value: 91.56220387606348
Iterations: 15
Function evaluations: 111
Gradient evaluations: 15
Iteration: 1, Func. Count: 9, Neg. LLF: 95.75196920451657
Iteration: 2, Func. Count: 18, Neg. LLF: 129.36594643224828
Iteration: 3, Func. Count: 28, Neg. LLF: 93.90388464700007
Iteration: 4, Func. Count: 37, Neg. LLF: 103.73418096012375
Iteration: 5, Func. Count: 46, Neg. LLF: 91.62831562832274
Iteration: 6, Func. Count: 54, Neg. LLF: 91.59957166746231
Iteration: 7, Func. Count: 62, Neg. LLF: 91.57681490352213
Iteration: 8, Func. Count: 70, Neg. LLF: 91.57078019347787
Iteration: 9, Func. Count: 78, Neg. LLF: 91.56586896754504
Iteration: 10, Func. Count: 86, Neg. LLF: 91.56401338613158
Iteration: 11, Func. Count: 94, Neg. LLF: 91.56241437130285
Iteration: 12, Func. Count: 102, Neg. LLF: 91.56221391636274
Iteration: 13, Func. Count: 110, Neg. LLF: 91.56220413243689
Iteration: 14, Func. Count: 117, Neg. LLF: 91.56220419372602
Optimization terminated successfully (Exit mode 0)
Current function value: 91.56220413243689
Iterations: 14
Function evaluations: 117
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 98.76380311917326
Iteration: 2, Func. Count: 20, Neg. LLF: 106.50145307906833
Iteration: 3, Func. Count: 31, Neg. LLF: 104.37690486777022
Iteration: 4, Func. Count: 41, Neg. LLF: 99.45934109445132
Iteration: 5, Func. Count: 51, Neg. LLF: 91.59982672912784
Iteration: 6, Func. Count: 60, Neg. LLF: 91.6525507181993
Iteration: 7, Func. Count: 70, Neg. LLF: 91.56315129398142
Iteration: 8, Func. Count: 79, Neg. LLF: 91.54115298320217
Iteration: 9, Func. Count: 88, Neg. LLF: 91.53368615034326
Iteration: 10, Func. Count: 97, Neg. LLF: 91.52755525027229
Iteration: 11, Func. Count: 106, Neg. LLF: 91.52578859207156
Iteration: 12, Func. Count: 115, Neg. LLF: 91.52543551575314
Iteration: 13, Func. Count: 124, Neg. LLF: 91.52535739405496
Iteration: 14, Func. Count: 133, Neg. LLF: 91.52532647472897
Iteration: 15, Func. Count: 142, Neg. LLF: 91.5253193962122
Iteration: 16, Func. Count: 150, Neg. LLF: 91.52531939620246
Optimization terminated successfully (Exit mode 0)
Current function value: 91.5253193962122
Iterations: 16
Function evaluations: 150
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 94.93161725208483
Iteration: 2, Func. Count: 22, Neg. LLF: 99.31380088721254
Iteration: 3, Func. Count: 33, Neg. LLF: 96.6801984061292
Iteration: 4, Func. Count: 44, Neg. LLF: 105.7508953351552
Iteration: 5, Func. Count: 55, Neg. LLF: 91.76124676801237
Iteration: 6, Func. Count: 65, Neg. LLF: 91.56361717279538
Iteration: 7, Func. Count: 75, Neg. LLF: 91.55086426658058
Iteration: 8, Func. Count: 85, Neg. LLF: 91.53788742738709
Iteration: 9, Func. Count: 95, Neg. LLF: 91.53375267094279
Iteration: 10, Func. Count: 105, Neg. LLF: 91.52863236044561
Iteration: 11, Func. Count: 115, Neg. LLF: 91.52564745597273
Iteration: 12, Func. Count: 125, Neg. LLF: 91.52532692806994
Iteration: 13, Func. Count: 135, Neg. LLF: 91.5253194737731
Iteration: 14, Func. Count: 144, Neg. LLF: 91.5253195570195
Optimization terminated successfully (Exit mode 0)
Current function value: 91.5253194737731
Iterations: 14
Function evaluations: 144
Gradient evaluations: 14
Iteration: 1, Func. Count: 8, Neg. LLF: 119.17846904474905
Iteration: 2, Func. Count: 17, Neg. LLF: 550874217.3177888
Iteration: 3, Func. Count: 25, Neg. LLF: 12392951.570075495
Iteration: 4, Func. Count: 33, Neg. LLF: 7521838.2468628315
Iteration: 5, Func. Count: 41, Neg. LLF: 7720894.063051892
Iteration: 6, Func. Count: 49, Neg. LLF: 7967088.919769931
Iteration: 7, Func. Count: 57, Neg. LLF: 7593272.849247786
Iteration: 8, Func. Count: 65, Neg. LLF: 95.22065073855644
Iteration: 9, Func. Count: 73, Neg. LLF: 91.93393984501765
Iteration: 10, Func. Count: 80, Neg. LLF: 91.81153219711878
Iteration: 11, Func. Count: 87, Neg. LLF: 91.78731131147231
Iteration: 12, Func. Count: 94, Neg. LLF: 91.7360887216421
Iteration: 13, Func. Count: 101, Neg. LLF: 91.67995915016343
Iteration: 14, Func. Count: 108, Neg. LLF: 91.61597103060556
Iteration: 15, Func. Count: 115, Neg. LLF: 91.5696096925176
Iteration: 16, Func. Count: 122, Neg. LLF: 91.56246769734591
Iteration: 17, Func. Count: 129, Neg. LLF: 91.56220553802771
Iteration: 18, Func. Count: 136, Neg. LLF: 91.56220388022902
Iteration: 19, Func. Count: 142, Neg. LLF: 91.5622039870649
Optimization terminated successfully (Exit mode 0)
Current function value: 91.56220388022902
Iterations: 19
Function evaluations: 142
Gradient evaluations: 19
Iteration: 1, Func. Count: 9, Neg. LLF: 92.86324767467735
Iteration: 2, Func. Count: 17, Neg. LLF: 293.48404165992076
Iteration: 3, Func. Count: 26, Neg. LLF: 7469721.813290774
Iteration: 4, Func. Count: 35, Neg. LLF: 110.26316718689822
Iteration: 5, Func. Count: 44, Neg. LLF: 92.12784721910403
Iteration: 6, Func. Count: 53, Neg. LLF: 91.6337812446329
Iteration: 7, Func. Count: 61, Neg. LLF: 91.57810862650975
Iteration: 8, Func. Count: 69, Neg. LLF: 91.56385474314129
Iteration: 9, Func. Count: 77, Neg. LLF: 91.56250254978741
Iteration: 10, Func. Count: 85, Neg. LLF: 91.5622799602775
Iteration: 11, Func. Count: 93, Neg. LLF: 91.562204179145
Iteration: 12, Func. Count: 100, Neg. LLF: 91.56220430137586
Optimization terminated successfully (Exit mode 0)
Current function value: 91.562204179145
Iterations: 12
Function evaluations: 100
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 93.63998322359909
Iteration: 2, Func. Count: 19, Neg. LLF: 207.90567660842052
Iteration: 3, Func. Count: 29, Neg. LLF: 6666535.175122792
Iteration: 4, Func. Count: 39, Neg. LLF: 7445211.532751631
Iteration: 5, Func. Count: 49, Neg. LLF: 92.244231783094
Iteration: 6, Func. Count: 59, Neg. LLF: 91.58305642292903
Iteration: 7, Func. Count: 68, Neg. LLF: 91.5623516307821
Iteration: 8, Func. Count: 77, Neg. LLF: 91.56221997009443
Iteration: 9, Func. Count: 86, Neg. LLF: 91.56220584336982
Iteration: 10, Func. Count: 95, Neg. LLF: 91.56220399940636
Iteration: 11, Func. Count: 103, Neg. LLF: 91.56220406069997
Optimization terminated successfully (Exit mode 0)
Current function value: 91.56220399940636
Iterations: 11
Function evaluations: 103
Gradient evaluations: 11
Iteration: 1, Func. Count: 11, Neg. LLF: 94.49708575805981
Iteration: 2, Func. Count: 22, Neg. LLF: 1298.239260857308
Iteration: 3, Func. Count: 33, Neg. LLF: 11977851.540438604
Iteration: 4, Func. Count: 44, Neg. LLF: 125.15789503858106
Iteration: 5, Func. Count: 55, Neg. LLF: 95.9076860065834
Iteration: 6, Func. Count: 66, Neg. LLF: 91.98587100956865
Iteration: 7, Func. Count: 76, Neg. LLF: 91.56270285516166
Iteration: 8, Func. Count: 86, Neg. LLF: 91.71106455740397
Iteration: 9, Func. Count: 97, Neg. LLF: 91.52763080936944
Iteration: 10, Func. Count: 107, Neg. LLF: 91.5261179572792
Iteration: 11, Func. Count: 117, Neg. LLF: 91.52593367996352
Iteration: 12, Func. Count: 127, Neg. LLF: 91.52546308068246
Iteration: 13, Func. Count: 137, Neg. LLF: 91.52533102946379
Iteration: 14, Func. Count: 147, Neg. LLF: 91.52531937682532
Iteration: 15, Func. Count: 156, Neg. LLF: 91.52531937686128
Optimization terminated successfully (Exit mode 0)
Current function value: 91.52531937682532
Iterations: 15
Function evaluations: 156
Gradient evaluations: 15
Iteration: 1, Func. Count: 12, Neg. LLF: 125.5968612922948
Iteration: 2, Func. Count: 28, Neg. LLF: 24162882.470898375
Iteration: 3, Func. Count: 40, Neg. LLF: 9868934.860387474
Iteration: 4, Func. Count: 52, Neg. LLF: 99.9839125227632
Iteration: 5, Func. Count: 64, Neg. LLF: 100.77919322807796
Iteration: 6, Func. Count: 76, Neg. LLF: 92.1703360198733
Iteration: 7, Func. Count: 87, Neg. LLF: 91.96628060161099
Iteration: 8, Func. Count: 98, Neg. LLF: 91.90023354552409
Iteration: 9, Func. Count: 109, Neg. LLF: 91.76391794408192
Iteration: 10, Func. Count: 120, Neg. LLF: 91.74754800071135
Iteration: 11, Func. Count: 131, Neg. LLF: 91.72378149122986
Iteration: 12, Func. Count: 142, Neg. LLF: 91.71202717216516
Iteration: 13, Func. Count: 153, Neg. LLF: 91.66884718156427
Iteration: 14, Func. Count: 164, Neg. LLF: 91.62102206624753
Iteration: 15, Func. Count: 175, Neg. LLF: 91.56028912166504
Iteration: 16, Func. Count: 186, Neg. LLF: 91.52751993662996
Iteration: 17, Func. Count: 197, Neg. LLF: 91.52540886764955
Iteration: 18, Func. Count: 208, Neg. LLF: 91.52533045666564
Iteration: 19, Func. Count: 219, Neg. LLF: 91.52531955472963
Iteration: 20, Func. Count: 229, Neg. LLF: 91.52531963798313
Optimization terminated successfully (Exit mode 0)
Current function value: 91.52531955472963
Iterations: 20
Function evaluations: 229
Gradient evaluations: 20
Iteration: 1, Func. Count: 9, Neg. LLF: 112.15160605008812
Iteration: 2, Func. Count: 19, Neg. LLF: 173847818.0890418
Iteration: 3, Func. Count: 28, Neg. LLF: 12256230.939485697
Iteration: 4, Func. Count: 37, Neg. LLF: 7611934.848090525
Iteration: 5, Func. Count: 46, Neg. LLF: 7478290.25801934
Iteration: 6, Func. Count: 55, Neg. LLF: 7671357.268108276
Iteration: 7, Func. Count: 64, Neg. LLF: 7528823.792911962
Iteration: 8, Func. Count: 73, Neg. LLF: 101.83447710462677
Iteration: 9, Func. Count: 82, Neg. LLF: 92.47377167584153
Iteration: 10, Func. Count: 91, Neg. LLF: 91.82742702905732
Iteration: 11, Func. Count: 99, Neg. LLF: 91.77993497022995
Iteration: 12, Func. Count: 107, Neg. LLF: 91.71763511539423
Iteration: 13, Func. Count: 115, Neg. LLF: 91.59966534635235
Iteration: 14, Func. Count: 123, Neg. LLF: 91.56724179336669
Iteration: 15, Func. Count: 131, Neg. LLF: 91.56240833226232
Iteration: 16, Func. Count: 139, Neg. LLF: 91.56220784596536
Iteration: 17, Func. Count: 147, Neg. LLF: 91.56220393572187
Iteration: 18, Func. Count: 154, Neg. LLF: 91.56220398879125
Optimization terminated successfully (Exit mode 0)
Current function value: 91.56220393572187
Iterations: 18
Function evaluations: 154
Gradient evaluations: 18
Iteration: 1, Func. Count: 10, Neg. LLF: 94.84510470591664
Iteration: 2, Func. Count: 20, Neg. LLF: 475.4983822115675
Iteration: 3, Func. Count: 30, Neg. LLF: 11482667.496580409
Iteration: 4, Func. Count: 40, Neg. LLF: 109.34996875080212
Iteration: 5, Func. Count: 50, Neg. LLF: 95.29972868072106
Iteration: 6, Func. Count: 60, Neg. LLF: 91.70798684088645
Iteration: 7, Func. Count: 69, Neg. LLF: 91.58495107371071
Iteration: 8, Func. Count: 78, Neg. LLF: 91.5711565547825
Iteration: 9, Func. Count: 87, Neg. LLF: 91.5623810761965
Iteration: 10, Func. Count: 96, Neg. LLF: 91.56230804356309
Iteration: 11, Func. Count: 105, Neg. LLF: 91.56227472311457
Iteration: 12, Func. Count: 114, Neg. LLF: 91.56222010440901
Iteration: 13, Func. Count: 123, Neg. LLF: 91.5622062386248
Iteration: 14, Func. Count: 132, Neg. LLF: 91.56220395626215
Iteration: 15, Func. Count: 140, Neg. LLF: 91.56220407846394
Optimization terminated successfully (Exit mode 0)
Current function value: 91.56220395626215
Iterations: 15
Function evaluations: 140
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 119.4931980716824
Iteration: 2, Func. Count: 26, Neg. LLF: 19992880.300908178
Iteration: 3, Func. Count: 37, Neg. LLF: 12032197.377496036
Iteration: 4, Func. Count: 48, Neg. LLF: 158.36697174349888
Iteration: 5, Func. Count: 59, Neg. LLF: 98.48356206290745
Iteration: 6, Func. Count: 70, Neg. LLF: 93.50552718858371
Iteration: 7, Func. Count: 80, Neg. LLF: 93.13823586729674
Iteration: 8, Func. Count: 90, Neg. LLF: 94.03892461253932
Iteration: 9, Func. Count: 101, Neg. LLF: 92.11441148628789
Iteration: 10, Func. Count: 111, Neg. LLF: 91.90304909417351
Iteration: 11, Func. Count: 121, Neg. LLF: 91.83597125972304
Iteration: 12, Func. Count: 131, Neg. LLF: 91.79928781111619
Iteration: 13, Func. Count: 141, Neg. LLF: 91.78883391889984
Iteration: 14, Func. Count: 151, Neg. LLF: 91.76442820014705
Iteration: 15, Func. Count: 161, Neg. LLF: 91.72551638379603
Iteration: 16, Func. Count: 171, Neg. LLF: 91.66871641147952
Iteration: 17, Func. Count: 181, Neg. LLF: 91.61376994652532
Iteration: 18, Func. Count: 191, Neg. LLF: 91.57547385062026
Iteration: 19, Func. Count: 201, Neg. LLF: 91.5635292582458
Iteration: 20, Func. Count: 211, Neg. LLF: 91.56231947483869
Iteration: 21, Func. Count: 221, Neg. LLF: 91.56221379744848
Iteration: 22, Func. Count: 231, Neg. LLF: 91.56220390746945
Iteration: 23, Func. Count: 240, Neg. LLF: 91.56220396876243
Optimization terminated successfully (Exit mode 0)
Current function value: 91.56220390746945
Iterations: 23
Function evaluations: 240
Gradient evaluations: 23
Iteration: 1, Func. Count: 12, Neg. LLF: 123.27053601130125
Iteration: 2, Func. Count: 28, Neg. LLF: 21931627.535001803
Iteration: 3, Func. Count: 40, Neg. LLF: 10188486.075767312
Iteration: 4, Func. Count: 52, Neg. LLF: 112.01076714415277
Iteration: 5, Func. Count: 64, Neg. LLF: 95.57252827860543
Iteration: 6, Func. Count: 76, Neg. LLF: 93.03155125103008
Iteration: 7, Func. Count: 88, Neg. LLF: 92.06116436543776
Iteration: 8, Func. Count: 99, Neg. LLF: 91.87991178756916
Iteration: 9, Func. Count: 110, Neg. LLF: 91.83912608462326
Iteration: 10, Func. Count: 121, Neg. LLF: 91.81676135611939
Iteration: 11, Func. Count: 132, Neg. LLF: 91.74234110562581
Iteration: 12, Func. Count: 143, Neg. LLF: 91.72541573975842
Iteration: 13, Func. Count: 154, Neg. LLF: 91.6574212092518
Iteration: 14, Func. Count: 165, Neg. LLF: 91.57281882431582
Iteration: 15, Func. Count: 176, Neg. LLF: 91.53457608618851
Iteration: 16, Func. Count: 187, Neg. LLF: 91.52697742801973
Iteration: 17, Func. Count: 198, Neg. LLF: 91.52568409046106
Iteration: 18, Func. Count: 209, Neg. LLF: 91.52537087859682
Iteration: 19, Func. Count: 220, Neg. LLF: 91.52532363246833
Iteration: 20, Func. Count: 231, Neg. LLF: 91.52531947876774
Iteration: 21, Func. Count: 241, Neg. LLF: 91.52531947870429
Optimization terminated successfully (Exit mode 0)
Current function value: 91.52531947876774
Iterations: 21
Function evaluations: 241
Gradient evaluations: 21
Iteration: 1, Func. Count: 13, Neg. LLF: 125.78588833597698
Iteration: 2, Func. Count: 30, Neg. LLF: 24176748.557953414
Iteration: 3, Func. Count: 43, Neg. LLF: 9968977.592332449
Iteration: 4, Func. Count: 56, Neg. LLF: 99.75930603502853
Iteration: 5, Func. Count: 69, Neg. LLF: 100.39277545299744
Iteration: 6, Func. Count: 82, Neg. LLF: 92.1231736593624
Iteration: 7, Func. Count: 94, Neg. LLF: 91.95116421207518
Iteration: 8, Func. Count: 106, Neg. LLF: 91.87943675829972
Iteration: 9, Func. Count: 118, Neg. LLF: 91.82458506669657
Iteration: 10, Func. Count: 130, Neg. LLF: 91.76320747536492
Iteration: 11, Func. Count: 142, Neg. LLF: 91.73270006844739
Iteration: 12, Func. Count: 154, Neg. LLF: 91.71248576605444
Iteration: 13, Func. Count: 166, Neg. LLF: 91.69951596244356
Iteration: 14, Func. Count: 178, Neg. LLF: 91.6766776648355
Iteration: 15, Func. Count: 190, Neg. LLF: 91.5742300717063
Iteration: 16, Func. Count: 202, Neg. LLF: 91.53214648904215
Iteration: 17, Func. Count: 214, Neg. LLF: 91.52563722081311
Iteration: 18, Func. Count: 226, Neg. LLF: 91.52533478920336
Iteration: 19, Func. Count: 238, Neg. LLF: 91.52532027976156
Iteration: 20, Func. Count: 250, Neg. LLF: 91.5253192358036
Iteration: 21, Func. Count: 261, Neg. LLF: 91.52531931905725
Optimization terminated successfully (Exit mode 0)
Current function value: 91.5253192358036
Iterations: 21
Function evaluations: 261
Gradient evaluations: 21
Iteration: 1, Func. Count: 6, Neg. LLF: 121.89999061794002
Iteration: 2, Func. Count: 13, Neg. LLF: 183.6722384215808
Iteration: 3, Func. Count: 19, Neg. LLF: 555.345340025772
Iteration: 4, Func. Count: 25, Neg. LLF: 2511.7195335067713
Iteration: 5, Func. Count: 31, Neg. LLF: 97.51452004861576
Iteration: 6, Func. Count: 37, Neg. LLF: 94.24524006251897
Iteration: 7, Func. Count: 42, Neg. LLF: 94.14722105510549
Iteration: 8, Func. Count: 47, Neg. LLF: 94.12642367199595
Iteration: 9, Func. Count: 52, Neg. LLF: 94.09905254571902
Iteration: 10, Func. Count: 57, Neg. LLF: 94.09620202624909
Iteration: 11, Func. Count: 62, Neg. LLF: 94.09618659970444
Iteration: 12, Func. Count: 66, Neg. LLF: 94.09618659972779
Optimization terminated successfully (Exit mode 0)
Current function value: 94.09618659970444
Iterations: 12
Function evaluations: 66
Gradient evaluations: 12
Iteration: 1, Func. Count: 7, Neg. LLF: 94.95993574300337
Iteration: 2, Func. Count: 13, Neg. LLF: 128.749329050434
Iteration: 3, Func. Count: 20, Neg. LLF: 94.19566318959296
Iteration: 4, Func. Count: 26, Neg. LLF: 99.05598649814671
Iteration: 5, Func. Count: 33, Neg. LLF: 94.09635571280057
Iteration: 6, Func. Count: 39, Neg. LLF: 94.09620647311381
Iteration: 7, Func. Count: 45, Neg. LLF: 94.09618813804245
Iteration: 8, Func. Count: 51, Neg. LLF: 94.09618646696107
Iteration: 9, Func. Count: 56, Neg. LLF: 94.09618649502937
Optimization terminated successfully (Exit mode 0)
Current function value: 94.09618646696107
Iterations: 9
Function evaluations: 56
Gradient evaluations: 9
Iteration: 1, Func. Count: 8, Neg. LLF: 95.79869441811852
Iteration: 2, Func. Count: 15, Neg. LLF: 132.96724674955487
Iteration: 3, Func. Count: 23, Neg. LLF: 408.20683862828173
Iteration: 4, Func. Count: 31, Neg. LLF: 94.76919851065233
Iteration: 5, Func. Count: 39, Neg. LLF: 94.11097277815904
Iteration: 6, Func. Count: 46, Neg. LLF: 94.09784563173321
Iteration: 7, Func. Count: 53, Neg. LLF: 94.09619482354965
Iteration: 8, Func. Count: 60, Neg. LLF: 94.09618658610057
Iteration: 9, Func. Count: 66, Neg. LLF: 94.09618662751981
Optimization terminated successfully (Exit mode 0)
Current function value: 94.09618658610057
Iterations: 9
Function evaluations: 66
Gradient evaluations: 9
Iteration: 1, Func. Count: 9, Neg. LLF: 97.56086454738153
Iteration: 2, Func. Count: 18, Neg. LLF: 180.07876496621864
Iteration: 3, Func. Count: 27, Neg. LLF: 58110.29903724267
Iteration: 4, Func. Count: 36, Neg. LLF: 103.80282059533651
Iteration: 5, Func. Count: 45, Neg. LLF: 101.9249194229812
Iteration: 6, Func. Count: 54, Neg. LLF: 96.34644082216161
Iteration: 7, Func. Count: 63, Neg. LLF: 94.04793313001177
Iteration: 8, Func. Count: 71, Neg. LLF: 93.78582732222912
Iteration: 9, Func. Count: 79, Neg. LLF: 93.76614885184145
Iteration: 10, Func. Count: 87, Neg. LLF: 93.75478216971464
Iteration: 11, Func. Count: 95, Neg. LLF: 93.75403166374912
Iteration: 12, Func. Count: 103, Neg. LLF: 93.7540169831282
Iteration: 13, Func. Count: 111, Neg. LLF: 93.75401487297324
Iteration: 14, Func. Count: 118, Neg. LLF: 93.75401487295771
Optimization terminated successfully (Exit mode 0)
Current function value: 93.75401487297324
Iterations: 14
Function evaluations: 118
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 98.88997583894206
Iteration: 2, Func. Count: 20, Neg. LLF: 150.52519102152942
Iteration: 3, Func. Count: 30, Neg. LLF: 748.8448213854871
Iteration: 4, Func. Count: 40, Neg. LLF: 105.49416201023163
Iteration: 5, Func. Count: 50, Neg. LLF: 102.76174292224226
Iteration: 6, Func. Count: 60, Neg. LLF: 101.80078753276443
Iteration: 7, Func. Count: 70, Neg. LLF: 95.32495903451382
Iteration: 8, Func. Count: 80, Neg. LLF: 93.85514451795648
Iteration: 9, Func. Count: 89, Neg. LLF: 93.76717357807395
Iteration: 10, Func. Count: 98, Neg. LLF: 93.75828562571338
Iteration: 11, Func. Count: 107, Neg. LLF: 93.75403742961873
Iteration: 12, Func. Count: 116, Neg. LLF: 93.75401703006145
Iteration: 13, Func. Count: 125, Neg. LLF: 93.75401474961552
Iteration: 14, Func. Count: 133, Neg. LLF: 93.75401475270941
Optimization terminated successfully (Exit mode 0)
Current function value: 93.75401474961552
Iterations: 14
Function evaluations: 133
Gradient evaluations: 14
Iteration: 1, Func. Count: 7, Neg. LLF: 121.04224770259594
Iteration: 2, Func. Count: 15, Neg. LLF: 187.15901978043306
Iteration: 3, Func. Count: 22, Neg. LLF: 534.679300495061
Iteration: 4, Func. Count: 29, Neg. LLF: 1699.6556047465285
Iteration: 5, Func. Count: 36, Neg. LLF: 2198.668504507062
Iteration: 6, Func. Count: 43, Neg. LLF: 106.6815633372837
Iteration: 7, Func. Count: 50, Neg. LLF: 97.03714076037443
Iteration: 8, Func. Count: 57, Neg. LLF: 93.8130449989367
Iteration: 9, Func. Count: 63, Neg. LLF: 93.45464365056237
Iteration: 10, Func. Count: 69, Neg. LLF: 93.39113995325098
Iteration: 11, Func. Count: 75, Neg. LLF: 93.34225497003953
Iteration: 12, Func. Count: 81, Neg. LLF: 93.333542465333
Iteration: 13, Func. Count: 87, Neg. LLF: 93.32958120915492
Iteration: 14, Func. Count: 93, Neg. LLF: 93.32877302126647
Iteration: 15, Func. Count: 99, Neg. LLF: 93.32840083489027
Iteration: 16, Func. Count: 105, Neg. LLF: 93.3283721328564
Iteration: 17, Func. Count: 111, Neg. LLF: 93.32837073787802
Iteration: 18, Func. Count: 116, Neg. LLF: 93.3283706708386
Optimization terminated successfully (Exit mode 0)
Current function value: 93.32837073787802
Iterations: 18
Function evaluations: 116
Gradient evaluations: 18
Iteration: 1, Func. Count: 8, Neg. LLF: 97.04296058133542
Iteration: 2, Func. Count: 16, Neg. LLF: 122.1663597567122
Iteration: 3, Func. Count: 24, Neg. LLF: 204.39414930231695
Iteration: 4, Func. Count: 32, Neg. LLF: 95.13119143703338
Iteration: 5, Func. Count: 40, Neg. LLF: 93.36381330412121
Iteration: 6, Func. Count: 47, Neg. LLF: 93.33963963785871
Iteration: 7, Func. Count: 54, Neg. LLF: 93.33284852990579
Iteration: 8, Func. Count: 61, Neg. LLF: 93.32989013682992
Iteration: 9, Func. Count: 68, Neg. LLF: 93.32839692254198
Iteration: 10, Func. Count: 75, Neg. LLF: 93.32837343257907
Iteration: 11, Func. Count: 82, Neg. LLF: 93.32837073515873
Iteration: 12, Func. Count: 88, Neg. LLF: 93.3283707918894
Optimization terminated successfully (Exit mode 0)
Current function value: 93.32837073515873
Iterations: 12
Function evaluations: 88
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 95.78135594093207
Iteration: 2, Func. Count: 17, Neg. LLF: 136.4725939050136
Iteration: 3, Func. Count: 26, Neg. LLF: 221.4183836582931
Iteration: 4, Func. Count: 35, Neg. LLF: 379.82263008550444
Iteration: 5, Func. Count: 44, Neg. LLF: 162.6923099628714
Iteration: 6, Func. Count: 53, Neg. LLF: 126.65413281046229
Iteration: 7, Func. Count: 62, Neg. LLF: 115.87631575193876
Iteration: 8, Func. Count: 71, Neg. LLF: 110.77806940946888
Iteration: 9, Func. Count: 80, Neg. LLF: 93.58276695784336
Iteration: 10, Func. Count: 89, Neg. LLF: 94.70051977277546
Iteration: 11, Func. Count: 98, Neg. LLF: 93.27790665617087
Iteration: 12, Func. Count: 106, Neg. LLF: 93.27731363003276
Iteration: 13, Func. Count: 114, Neg. LLF: 93.27717082825671
Iteration: 14, Func. Count: 122, Neg. LLF: 93.27714606718888
Iteration: 15, Func. Count: 130, Neg. LLF: 93.27714538529031
Optimization terminated successfully (Exit mode 0)
Current function value: 93.27714538529031
Iterations: 15
Function evaluations: 130
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 97.40758329978783
Iteration: 2, Func. Count: 20, Neg. LLF: 211.56159844330097
Iteration: 3, Func. Count: 30, Neg. LLF: 14987.047021652965
Iteration: 4, Func. Count: 40, Neg. LLF: 106.91859814729789
Iteration: 5, Func. Count: 50, Neg. LLF: 97.33053984719356
Iteration: 6, Func. Count: 60, Neg. LLF: 93.59808349127205
Iteration: 7, Func. Count: 69, Neg. LLF: 93.36681493261872
Iteration: 8, Func. Count: 78, Neg. LLF: 93.59036782181684
Iteration: 9, Func. Count: 88, Neg. LLF: 93.28569329724328
Iteration: 10, Func. Count: 97, Neg. LLF: 93.27932669308498
Iteration: 11, Func. Count: 106, Neg. LLF: 93.27822127406466
Iteration: 12, Func. Count: 115, Neg. LLF: 93.27733533007647
Iteration: 13, Func. Count: 124, Neg. LLF: 93.27714774635344
Iteration: 14, Func. Count: 133, Neg. LLF: 93.27714540061945
Iteration: 15, Func. Count: 141, Neg. LLF: 93.27714540218366
Optimization terminated successfully (Exit mode 0)
Current function value: 93.27714540061945
Iterations: 15
Function evaluations: 141
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 98.7255487974122
Iteration: 2, Func. Count: 22, Neg. LLF: 154.6306935371612
Iteration: 3, Func. Count: 33, Neg. LLF: 895.0257128363564
Iteration: 4, Func. Count: 44, Neg. LLF: 106.81689638707672
Iteration: 5, Func. Count: 55, Neg. LLF: 111.91981122055796
Iteration: 6, Func. Count: 66, Neg. LLF: 95.25745445096511
Iteration: 7, Func. Count: 77, Neg. LLF: 93.45578394799341
Iteration: 8, Func. Count: 87, Neg. LLF: 93.29333968000742
Iteration: 9, Func. Count: 97, Neg. LLF: 93.2876874333451
Iteration: 10, Func. Count: 107, Neg. LLF: 93.27858601344147
Iteration: 11, Func. Count: 117, Neg. LLF: 93.2773536922989
Iteration: 12, Func. Count: 127, Neg. LLF: 93.2771530778242
Iteration: 13, Func. Count: 137, Neg. LLF: 93.27714540136058
Iteration: 14, Func. Count: 146, Neg. LLF: 93.27714542439875
Optimization terminated successfully (Exit mode 0)
Current function value: 93.27714540136058
Iterations: 14
Function evaluations: 146
Gradient evaluations: 14
Iteration: 1, Func. Count: 8, Neg. LLF: 104.30980442704332
Iteration: 2, Func. Count: 17, Neg. LLF: 3557.755809794166
Iteration: 3, Func. Count: 25, Neg. LLF: 11388634.016576378
Iteration: 4, Func. Count: 33, Neg. LLF: 8056611.128811731
Iteration: 5, Func. Count: 41, Neg. LLF: 111.54672758900617
Iteration: 6, Func. Count: 49, Neg. LLF: 94.92222822107799
Iteration: 7, Func. Count: 57, Neg. LLF: 92.64212142875431
Iteration: 8, Func. Count: 65, Neg. LLF: 91.80158498494126
Iteration: 9, Func. Count: 72, Neg. LLF: 91.52475920676116
Iteration: 10, Func. Count: 79, Neg. LLF: 91.46984617828672
Iteration: 11, Func. Count: 86, Neg. LLF: 91.41458657663385
Iteration: 12, Func. Count: 93, Neg. LLF: 91.39248464884673
Iteration: 13, Func. Count: 100, Neg. LLF: 91.38361678725481
Iteration: 14, Func. Count: 107, Neg. LLF: 91.37773773292867
Iteration: 15, Func. Count: 114, Neg. LLF: 91.37760639762936
Iteration: 16, Func. Count: 121, Neg. LLF: 91.37760284115146
Iteration: 17, Func. Count: 127, Neg. LLF: 91.37760284114668
Optimization terminated successfully (Exit mode 0)
Current function value: 91.37760284115146
Iterations: 17
Function evaluations: 127
Gradient evaluations: 17
Iteration: 1, Func. Count: 9, Neg. LLF: 99.51130939649353
Iteration: 2, Func. Count: 18, Neg. LLF: 128.70177365014723
Iteration: 3, Func. Count: 27, Neg. LLF: 93.58656043149736
Iteration: 4, Func. Count: 36, Neg. LLF: 92.95712759972196
Iteration: 5, Func. Count: 45, Neg. LLF: 92.1664040223051
Iteration: 6, Func. Count: 54, Neg. LLF: 92.53261357442047
Iteration: 7, Func. Count: 63, Neg. LLF: 91.4259969401933
Iteration: 8, Func. Count: 71, Neg. LLF: 91.39279296974736
Iteration: 9, Func. Count: 79, Neg. LLF: 91.38355456400917
Iteration: 10, Func. Count: 87, Neg. LLF: 91.37865002449855
Iteration: 11, Func. Count: 95, Neg. LLF: 91.37765994835776
Iteration: 12, Func. Count: 103, Neg. LLF: 91.37760550157627
Iteration: 13, Func. Count: 111, Neg. LLF: 91.37760273264804
Iteration: 14, Func. Count: 118, Neg. LLF: 91.37760287624988
Optimization terminated successfully (Exit mode 0)
Current function value: 91.37760273264804
Iterations: 14
Function evaluations: 118
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 95.65917451067163
Iteration: 2, Func. Count: 20, Neg. LLF: 152.97333699288293
Iteration: 3, Func. Count: 30, Neg. LLF: 141.27318957117512
Iteration: 4, Func. Count: 40, Neg. LLF: 92.57972871128595
Iteration: 5, Func. Count: 49, Neg. LLF: 93.09193876059057
Iteration: 6, Func. Count: 59, Neg. LLF: 93.08820709218273
Iteration: 7, Func. Count: 69, Neg. LLF: 91.82487626945533
Iteration: 8, Func. Count: 79, Neg. LLF: 91.65854204895875
Iteration: 9, Func. Count: 89, Neg. LLF: 91.39586010465537
Iteration: 10, Func. Count: 98, Neg. LLF: 91.38272032980564
Iteration: 11, Func. Count: 107, Neg. LLF: 91.37906183889014
Iteration: 12, Func. Count: 116, Neg. LLF: 91.37806714305466
Iteration: 13, Func. Count: 125, Neg. LLF: 91.37765892226994
Iteration: 14, Func. Count: 134, Neg. LLF: 91.37760553850956
Iteration: 15, Func. Count: 143, Neg. LLF: 91.37760275788996
Iteration: 16, Func. Count: 151, Neg. LLF: 91.37760281031467
Optimization terminated successfully (Exit mode 0)
Current function value: 91.37760275788996
Iterations: 16
Function evaluations: 151
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 92.9788624893229
Iteration: 2, Func. Count: 21, Neg. LLF: 133.79620750438977
Iteration: 3, Func. Count: 33, Neg. LLF: 92.49398930416957
Iteration: 4, Func. Count: 44, Neg. LLF: 14661412.010278823
Iteration: 5, Func. Count: 55, Neg. LLF: 7528115.974669458
Iteration: 6, Func. Count: 66, Neg. LLF: 91.6442608152573
Iteration: 7, Func. Count: 77, Neg. LLF: 91.38832163053057
Iteration: 8, Func. Count: 88, Neg. LLF: 91.3709756113693
Iteration: 9, Func. Count: 98, Neg. LLF: 91.36939719216379
Iteration: 10, Func. Count: 108, Neg. LLF: 91.36926130502451
Iteration: 11, Func. Count: 118, Neg. LLF: 91.36920496460627
Iteration: 12, Func. Count: 128, Neg. LLF: 91.36919972190915
Iteration: 13, Func. Count: 138, Neg. LLF: 91.3691982717888
Iteration: 14, Func. Count: 147, Neg. LLF: 91.36919827178417
Optimization terminated successfully (Exit mode 0)
Current function value: 91.3691982717888
Iterations: 14
Function evaluations: 147
Gradient evaluations: 14
Iteration: 1, Func. Count: 12, Neg. LLF: 92.29040063611191
Iteration: 2, Func. Count: 23, Neg. LLF: 122.47727060884218
Iteration: 3, Func. Count: 36, Neg. LLF: 92.00659659905763
Iteration: 4, Func. Count: 47, Neg. LLF: 6817166.850940089
Iteration: 5, Func. Count: 59, Neg. LLF: 14680892.455783796
Iteration: 6, Func. Count: 71, Neg. LLF: 96.4668033361133
Iteration: 7, Func. Count: 83, Neg. LLF: 91.38301078631875
Iteration: 8, Func. Count: 94, Neg. LLF: 91.37234565898598
Iteration: 9, Func. Count: 105, Neg. LLF: 91.36962463834045
Iteration: 10, Func. Count: 116, Neg. LLF: 91.36929480248833
Iteration: 11, Func. Count: 127, Neg. LLF: 91.36922118376836
Iteration: 12, Func. Count: 138, Neg. LLF: 91.3691987894966
Iteration: 13, Func. Count: 149, Neg. LLF: 91.36919828425275
Optimization terminated successfully (Exit mode 0)
Current function value: 91.36919828425275
Iterations: 13
Function evaluations: 149
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 115.79799829534376
Iteration: 2, Func. Count: 19, Neg. LLF: 648.3962981577437
Iteration: 3, Func. Count: 28, Neg. LLF: 12337376.932145081
Iteration: 4, Func. Count: 37, Neg. LLF: 7692730.868720565
Iteration: 5, Func. Count: 46, Neg. LLF: 177.8736278298444
Iteration: 6, Func. Count: 55, Neg. LLF: 93.97218427783172
Iteration: 7, Func. Count: 64, Neg. LLF: 94.85711685508882
Iteration: 8, Func. Count: 73, Neg. LLF: 91.770139613942
Iteration: 9, Func. Count: 81, Neg. LLF: 91.5596553507954
Iteration: 10, Func. Count: 89, Neg. LLF: 91.46169011769277
Iteration: 11, Func. Count: 97, Neg. LLF: 91.40956808780138
Iteration: 12, Func. Count: 105, Neg. LLF: 91.38716009958358
Iteration: 13, Func. Count: 113, Neg. LLF: 91.3783553452889
Iteration: 14, Func. Count: 121, Neg. LLF: 91.37767808291125
Iteration: 15, Func. Count: 129, Neg. LLF: 91.3776036361418
Iteration: 16, Func. Count: 137, Neg. LLF: 91.37760273281212
Optimization terminated successfully (Exit mode 0)
Current function value: 91.37760273281212
Iterations: 16
Function evaluations: 137
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 92.54964841853722
Iteration: 2, Func. Count: 19, Neg. LLF: 129.01685187143775
Iteration: 3, Func. Count: 29, Neg. LLF: 6086998.402420976
Iteration: 4, Func. Count: 39, Neg. LLF: 96.75507522851251
Iteration: 5, Func. Count: 49, Neg. LLF: 213.54117271706474
Iteration: 6, Func. Count: 59, Neg. LLF: 92.33561972358835
Iteration: 7, Func. Count: 69, Neg. LLF: 91.43212062910617
Iteration: 8, Func. Count: 78, Neg. LLF: 91.38485644308409
Iteration: 9, Func. Count: 87, Neg. LLF: 91.37943825815725
Iteration: 10, Func. Count: 96, Neg. LLF: 91.3779918832524
Iteration: 11, Func. Count: 105, Neg. LLF: 91.37765656481986
Iteration: 12, Func. Count: 114, Neg. LLF: 91.37760499252013
Iteration: 13, Func. Count: 123, Neg. LLF: 91.37760291833325
Iteration: 14, Func. Count: 131, Neg. LLF: 91.37760306196932
Optimization terminated successfully (Exit mode 0)
Current function value: 91.37760291833325
Iterations: 14
Function evaluations: 131
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 93.62434748653551
Iteration: 2, Func. Count: 21, Neg. LLF: 208.64820351582924
Iteration: 3, Func. Count: 32, Neg. LLF: 12279538.515271936
Iteration: 4, Func. Count: 43, Neg. LLF: 7522701.160392862
Iteration: 5, Func. Count: 54, Neg. LLF: 682.184218809982
Iteration: 6, Func. Count: 65, Neg. LLF: 95.30277258194997
Iteration: 7, Func. Count: 76, Neg. LLF: 92.34723592259918
Iteration: 8, Func. Count: 87, Neg. LLF: 91.48296005396713
Iteration: 9, Func. Count: 98, Neg. LLF: 91.38397406233133
Iteration: 10, Func. Count: 108, Neg. LLF: 91.3781086325446
Iteration: 11, Func. Count: 118, Neg. LLF: 91.37764673598363
Iteration: 12, Func. Count: 128, Neg. LLF: 91.37760439085534
Iteration: 13, Func. Count: 138, Neg. LLF: 91.37760274194042
Iteration: 14, Func. Count: 147, Neg. LLF: 91.37760279433597
Optimization terminated successfully (Exit mode 0)
Current function value: 91.37760274194042
Iterations: 14
Function evaluations: 147
Gradient evaluations: 14
Iteration: 1, Func. Count: 12, Neg. LLF: 95.75344576581944
Iteration: 2, Func. Count: 24, Neg. LLF: 287.0317551591875
Iteration: 3, Func. Count: 36, Neg. LLF: 12345742.039326467
Iteration: 4, Func. Count: 48, Neg. LLF: 122.23023650573535
Iteration: 5, Func. Count: 60, Neg. LLF: 162.46801902324353
Iteration: 6, Func. Count: 72, Neg. LLF: 101.31689674820974
Iteration: 7, Func. Count: 84, Neg. LLF: 91.84807587902847
Iteration: 8, Func. Count: 95, Neg. LLF: 91.56538734963226
Iteration: 9, Func. Count: 106, Neg. LLF: 92.6462626805862
Iteration: 10, Func. Count: 118, Neg. LLF: 91.38791088976453
Iteration: 11, Func. Count: 129, Neg. LLF: 91.37913301625915
Iteration: 12, Func. Count: 140, Neg. LLF: 91.376156660769
Iteration: 13, Func. Count: 151, Neg. LLF: 91.37123590052002
Iteration: 14, Func. Count: 162, Neg. LLF: 91.37021090952892
Iteration: 15, Func. Count: 173, Neg. LLF: 91.36956489775412
Iteration: 16, Func. Count: 184, Neg. LLF: 91.3692332451016
Iteration: 17, Func. Count: 195, Neg. LLF: 91.3692016138497
Iteration: 18, Func. Count: 206, Neg. LLF: 91.36919849359886
Iteration: 19, Func. Count: 216, Neg. LLF: 91.3691984936323
Optimization terminated successfully (Exit mode 0)
Current function value: 91.36919849359886
Iterations: 19
Function evaluations: 216
Gradient evaluations: 19
Iteration: 1, Func. Count: 13, Neg. LLF: 98.28525844405974
Iteration: 2, Func. Count: 26, Neg. LLF: 228.1508136578853
Iteration: 3, Func. Count: 39, Neg. LLF: 12519853.473682925
Iteration: 4, Func. Count: 52, Neg. LLF: 156.08112704510427
Iteration: 5, Func. Count: 65, Neg. LLF: 127.20688431437355
Iteration: 6, Func. Count: 78, Neg. LLF: 102.12797134440763
Iteration: 7, Func. Count: 91, Neg. LLF: 92.41606094018029
Iteration: 8, Func. Count: 104, Neg. LLF: 91.70548050586169
Iteration: 9, Func. Count: 116, Neg. LLF: 91.39331292717954
Iteration: 10, Func. Count: 128, Neg. LLF: 91.41572280336445
Iteration: 11, Func. Count: 141, Neg. LLF: 91.37701160932107
Iteration: 12, Func. Count: 153, Neg. LLF: 91.37283135127001
Iteration: 13, Func. Count: 165, Neg. LLF: 91.37002568237303
Iteration: 14, Func. Count: 177, Neg. LLF: 91.36948568406908
Iteration: 15, Func. Count: 189, Neg. LLF: 91.36920037187173
Iteration: 16, Func. Count: 201, Neg. LLF: 91.36919839694889
Iteration: 17, Func. Count: 212, Neg. LLF: 91.36919847051261
Optimization terminated successfully (Exit mode 0)
Current function value: 91.36919839694889
Iterations: 17
Function evaluations: 212
Gradient evaluations: 17
Iteration: 1, Func. Count: 10, Neg. LLF: 115.05874774853588
Iteration: 2, Func. Count: 21, Neg. LLF: 1154.3582673851104
Iteration: 3, Func. Count: 31, Neg. LLF: 12400649.229408432
Iteration: 4, Func. Count: 41, Neg. LLF: 7833575.385627169
Iteration: 5, Func. Count: 51, Neg. LLF: 296115.04404553416
Iteration: 6, Func. Count: 61, Neg. LLF: 96.22247838945805
Iteration: 7, Func. Count: 71, Neg. LLF: 95.93050193253518
Iteration: 8, Func. Count: 81, Neg. LLF: 92.10974192111978
Iteration: 9, Func. Count: 90, Neg. LLF: 91.68491651689706
Iteration: 10, Func. Count: 99, Neg. LLF: 91.6481535206429
Iteration: 11, Func. Count: 108, Neg. LLF: 91.51960357996998
Iteration: 12, Func. Count: 117, Neg. LLF: 91.44528008538704
Iteration: 13, Func. Count: 126, Neg. LLF: 91.41037610730318
Iteration: 14, Func. Count: 135, Neg. LLF: 91.38744065230037
Iteration: 15, Func. Count: 144, Neg. LLF: 91.37795773206724
Iteration: 16, Func. Count: 153, Neg. LLF: 91.37762477459007
Iteration: 17, Func. Count: 162, Neg. LLF: 91.37760321441152
Iteration: 18, Func. Count: 170, Neg. LLF: 91.37760326039499
Optimization terminated successfully (Exit mode 0)
Current function value: 91.37760321441152
Iterations: 18
Function evaluations: 170
Gradient evaluations: 18
Iteration: 1, Func. Count: 11, Neg. LLF: 92.85948879565198
Iteration: 2, Func. Count: 21, Neg. LLF: 235.1076452243
Iteration: 3, Func. Count: 32, Neg. LLF: 7573239.844316061
Iteration: 4, Func. Count: 43, Neg. LLF: 133.7724078799611
Iteration: 5, Func. Count: 54, Neg. LLF: 1217.495165445081
Iteration: 6, Func. Count: 65, Neg. LLF: 91.60844352608589
Iteration: 7, Func. Count: 75, Neg. LLF: 91.41657668458858
Iteration: 8, Func. Count: 85, Neg. LLF: 91.47310942073291
Iteration: 9, Func. Count: 96, Neg. LLF: 91.37958039998601
Iteration: 10, Func. Count: 106, Neg. LLF: 91.37820510736626
Iteration: 11, Func. Count: 116, Neg. LLF: 91.37764228125229
Iteration: 12, Func. Count: 126, Neg. LLF: 91.37760477544678
Iteration: 13, Func. Count: 136, Neg. LLF: 91.37760274142401
Iteration: 14, Func. Count: 145, Neg. LLF: 91.37760288502749
Optimization terminated successfully (Exit mode 0)
Current function value: 91.37760274142401
Iterations: 14
Function evaluations: 145
Gradient evaluations: 14
Iteration: 1, Func. Count: 12, Neg. LLF: 94.61340248636104
Iteration: 2, Func. Count: 24, Neg. LLF: 471.82465118195813
Iteration: 3, Func. Count: 36, Neg. LLF: 11369310.799544858
Iteration: 4, Func. Count: 48, Neg. LLF: 150.54244796023178
Iteration: 5, Func. Count: 60, Neg. LLF: 115.71285898391211
Iteration: 6, Func. Count: 72, Neg. LLF: 93.93609874921829
Iteration: 7, Func. Count: 84, Neg. LLF: 91.82303248605261
Iteration: 8, Func. Count: 95, Neg. LLF: 91.40642002123644
Iteration: 9, Func. Count: 106, Neg. LLF: 91.40247508632928
Iteration: 10, Func. Count: 118, Neg. LLF: 91.37947899526725
Iteration: 11, Func. Count: 129, Neg. LLF: 91.37817534518746
Iteration: 12, Func. Count: 140, Neg. LLF: 91.37795277115822
Iteration: 13, Func. Count: 151, Neg. LLF: 91.37765180171974
Iteration: 14, Func. Count: 162, Neg. LLF: 91.37761603953045
Iteration: 15, Func. Count: 173, Neg. LLF: 91.37760365641682
Iteration: 16, Func. Count: 184, Neg. LLF: 91.37760275122835
Optimization terminated successfully (Exit mode 0)
Current function value: 91.37760275122835
Iterations: 16
Function evaluations: 184
Gradient evaluations: 16
Iteration: 1, Func. Count: 13, Neg. LLF: 97.24213802917514
Iteration: 2, Func. Count: 26, Neg. LLF: 292.75196932948904
Iteration: 3, Func. Count: 39, Neg. LLF: 12099939.34670422
Iteration: 4, Func. Count: 52, Neg. LLF: 250.10099395021655
Iteration: 5, Func. Count: 65, Neg. LLF: 148.36693294679623
Iteration: 6, Func. Count: 78, Neg. LLF: 107.61311096358426
Iteration: 7, Func. Count: 91, Neg. LLF: 95.72484591372756
Iteration: 8, Func. Count: 104, Neg. LLF: 92.11948330649734
Iteration: 9, Func. Count: 117, Neg. LLF: 91.86957932465118
Iteration: 10, Func. Count: 130, Neg. LLF: 91.4035719574114
Iteration: 11, Func. Count: 142, Neg. LLF: 91.39014956221345
Iteration: 12, Func. Count: 154, Neg. LLF: 91.37547116630904
Iteration: 13, Func. Count: 166, Neg. LLF: 91.37296661692828
Iteration: 14, Func. Count: 178, Neg. LLF: 91.37087480364572
Iteration: 15, Func. Count: 190, Neg. LLF: 91.36934047033434
Iteration: 16, Func. Count: 202, Neg. LLF: 91.36920809162366
Iteration: 17, Func. Count: 214, Neg. LLF: 91.3691994019584
Iteration: 18, Func. Count: 226, Neg. LLF: 91.36919835151478
Iteration: 19, Func. Count: 237, Neg. LLF: 91.3691983515247
Optimization terminated successfully (Exit mode 0)
Current function value: 91.36919835151478
Iterations: 19
Function evaluations: 237
Gradient evaluations: 19
Iteration: 1, Func. Count: 14, Neg. LLF: 97.23602585252436
Iteration: 2, Func. Count: 28, Neg. LLF: 304.5820791413549
Iteration: 3, Func. Count: 42, Neg. LLF: 12124628.1073404
Iteration: 4, Func. Count: 56, Neg. LLF: 124.45534884372822
Iteration: 5, Func. Count: 70, Neg. LLF: 99.45362762175597
Iteration: 6, Func. Count: 84, Neg. LLF: 93.90143979770299
Iteration: 7, Func. Count: 98, Neg. LLF: 91.82584936814018
Iteration: 8, Func. Count: 112, Neg. LLF: 91.49598736723726
Iteration: 9, Func. Count: 125, Neg. LLF: 91.44578654531993
Iteration: 10, Func. Count: 138, Neg. LLF: 91.38121170263977
Iteration: 11, Func. Count: 151, Neg. LLF: 91.37252638808928
Iteration: 12, Func. Count: 164, Neg. LLF: 91.37097185711879
Iteration: 13, Func. Count: 177, Neg. LLF: 91.36955613496558
Iteration: 14, Func. Count: 190, Neg. LLF: 91.36922367450745
Iteration: 15, Func. Count: 203, Neg. LLF: 91.36919949807297
Iteration: 16, Func. Count: 216, Neg. LLF: 91.36919851577059
Optimization terminated successfully (Exit mode 0)
Current function value: 91.36919851577059
Iterations: 16
Function evaluations: 216
Gradient evaluations: 16
Iteration: 1, Func. Count: 7, Neg. LLF: 110.19878468723022
Iteration: 2, Func. Count: 15, Neg. LLF: 885.8937984800239
Iteration: 3, Func. Count: 22, Neg. LLF: 765.2235638825359
Iteration: 4, Func. Count: 29, Neg. LLF: 421.8118623933229
Iteration: 5, Func. Count: 36, Neg. LLF: 110.3929806923311
Iteration: 6, Func. Count: 43, Neg. LLF: 95.48709049814292
Iteration: 7, Func. Count: 50, Neg. LLF: 94.15375212779462
Iteration: 8, Func. Count: 56, Neg. LLF: 94.12831848050187
Iteration: 9, Func. Count: 62, Neg. LLF: 94.11049597289485
Iteration: 10, Func. Count: 68, Neg. LLF: 94.09799859666471
Iteration: 11, Func. Count: 74, Neg. LLF: 94.09657316251649
Iteration: 12, Func. Count: 80, Neg. LLF: 94.09622369040503
Iteration: 13, Func. Count: 86, Neg. LLF: 94.0961868585945
Iteration: 14, Func. Count: 91, Neg. LLF: 94.09618690485425
Optimization terminated successfully (Exit mode 0)
Current function value: 94.0961868585945
Iterations: 14
Function evaluations: 91
Gradient evaluations: 14
Iteration: 1, Func. Count: 8, Neg. LLF: 99.76173890576122
Iteration: 2, Func. Count: 16, Neg. LLF: 137.9050045848373
Iteration: 3, Func. Count: 24, Neg. LLF: 504.1668707424342
Iteration: 4, Func. Count: 32, Neg. LLF: 94.09766599403403
Iteration: 5, Func. Count: 39, Neg. LLF: 94.09662416274111
Iteration: 6, Func. Count: 46, Neg. LLF: 94.09628018832264
Iteration: 7, Func. Count: 53, Neg. LLF: 94.09619281105496
Iteration: 8, Func. Count: 60, Neg. LLF: 94.09618659383862
Iteration: 9, Func. Count: 66, Neg. LLF: 94.09618662193039
Optimization terminated successfully (Exit mode 0)
Current function value: 94.09618659383862
Iterations: 9
Function evaluations: 66
Gradient evaluations: 9
Iteration: 1, Func. Count: 9, Neg. LLF: 100.41865664717913
Iteration: 2, Func. Count: 18, Neg. LLF: 137.67495374128984
Iteration: 3, Func. Count: 27, Neg. LLF: 675.6664877625451
Iteration: 4, Func. Count: 36, Neg. LLF: 120.83303340556567
Iteration: 5, Func. Count: 45, Neg. LLF: 97.59441324230583
Iteration: 6, Func. Count: 54, Neg. LLF: 94.14869497178849
Iteration: 7, Func. Count: 62, Neg. LLF: 94.12222023721309
Iteration: 8, Func. Count: 70, Neg. LLF: 94.09665814457694
Iteration: 9, Func. Count: 78, Neg. LLF: 94.09631741704881
Iteration: 10, Func. Count: 86, Neg. LLF: 94.09623391841798
Iteration: 11, Func. Count: 94, Neg. LLF: 94.0961900073903
Iteration: 12, Func. Count: 102, Neg. LLF: 94.09618659013783
Iteration: 13, Func. Count: 109, Neg. LLF: 94.09618663153938
Optimization terminated successfully (Exit mode 0)
Current function value: 94.09618659013783
Iterations: 13
Function evaluations: 109
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 101.12983549374388
Iteration: 2, Func. Count: 21, Neg. LLF: 410.6205288967406
Iteration: 3, Func. Count: 31, Neg. LLF: 1167.017442989075
Iteration: 4, Func. Count: 41, Neg. LLF: 100.69379915252438
Iteration: 5, Func. Count: 51, Neg. LLF: 95.88910534199593
Iteration: 6, Func. Count: 61, Neg. LLF: 93.86711281668534
Iteration: 7, Func. Count: 70, Neg. LLF: 93.8770499212142
Iteration: 8, Func. Count: 80, Neg. LLF: 93.7699843903007
Iteration: 9, Func. Count: 89, Neg. LLF: 93.75683949636368
Iteration: 10, Func. Count: 98, Neg. LLF: 93.75423809579398
Iteration: 11, Func. Count: 107, Neg. LLF: 93.75401719337732
Iteration: 12, Func. Count: 116, Neg. LLF: 93.75401441845477
Iteration: 13, Func. Count: 124, Neg. LLF: 93.75401441845894
Optimization terminated successfully (Exit mode 0)
Current function value: 93.75401441845477
Iterations: 13
Function evaluations: 124
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 102.16722001227089
Iteration: 2, Func. Count: 23, Neg. LLF: 350.70416086908403
Iteration: 3, Func. Count: 34, Neg. LLF: 1609.3315529520235
Iteration: 4, Func. Count: 45, Neg. LLF: 100.6441862628498
Iteration: 5, Func. Count: 56, Neg. LLF: 95.85475198718594
Iteration: 6, Func. Count: 67, Neg. LLF: 93.95398309400645
Iteration: 7, Func. Count: 77, Neg. LLF: 93.87145756911951
Iteration: 8, Func. Count: 87, Neg. LLF: 93.79389523981567
Iteration: 9, Func. Count: 97, Neg. LLF: 93.76192081989888
Iteration: 10, Func. Count: 107, Neg. LLF: 93.75562247028822
Iteration: 11, Func. Count: 117, Neg. LLF: 93.75445716168335
Iteration: 12, Func. Count: 127, Neg. LLF: 93.75402723895613
Iteration: 13, Func. Count: 137, Neg. LLF: 93.75401474687555
Iteration: 14, Func. Count: 146, Neg. LLF: 93.7540147499314
Optimization terminated successfully (Exit mode 0)
Current function value: 93.75401474687555
Iterations: 14
Function evaluations: 146
Gradient evaluations: 14
Iteration: 1, Func. Count: 8, Neg. LLF: 110.21986892334537
Iteration: 2, Func. Count: 17, Neg. LLF: 425.0039561600223
Iteration: 3, Func. Count: 25, Neg. LLF: 591.7471210214381
Iteration: 4, Func. Count: 33, Neg. LLF: 220.9607277609142
Iteration: 5, Func. Count: 41, Neg. LLF: 206.8458064064396
Iteration: 6, Func. Count: 49, Neg. LLF: 116.6135221686527
Iteration: 7, Func. Count: 57, Neg. LLF: 99.42584660115361
Iteration: 8, Func. Count: 65, Neg. LLF: 94.88531014367157
Iteration: 9, Func. Count: 73, Neg. LLF: 93.46372885980279
Iteration: 10, Func. Count: 80, Neg. LLF: 93.39101957957715
Iteration: 11, Func. Count: 87, Neg. LLF: 93.37712535357336
Iteration: 12, Func. Count: 94, Neg. LLF: 93.33969482147293
Iteration: 13, Func. Count: 101, Neg. LLF: 93.33406115088391
Iteration: 14, Func. Count: 108, Neg. LLF: 93.32930825284106
Iteration: 15, Func. Count: 115, Neg. LLF: 93.32842277031862
Iteration: 16, Func. Count: 122, Neg. LLF: 93.328371293144
Iteration: 17, Func. Count: 129, Neg. LLF: 93.32837072994435
Optimization terminated successfully (Exit mode 0)
Current function value: 93.32837072994435
Iterations: 17
Function evaluations: 129
Gradient evaluations: 17
Iteration: 1, Func. Count: 9, Neg. LLF: 114.79441965226636
Iteration: 2, Func. Count: 19, Neg. LLF: 115.81296231243125
Iteration: 3, Func. Count: 28, Neg. LLF: 753987.2794267657
Iteration: 4, Func. Count: 37, Neg. LLF: 94.54812193123323
Iteration: 5, Func. Count: 45, Neg. LLF: 93.54350658646099
Iteration: 6, Func. Count: 53, Neg. LLF: 93.42254315005773
Iteration: 7, Func. Count: 61, Neg. LLF: 93.34730674742238
Iteration: 8, Func. Count: 69, Neg. LLF: 93.33528317910577
Iteration: 9, Func. Count: 77, Neg. LLF: 93.33018241692747
Iteration: 10, Func. Count: 85, Neg. LLF: 93.32850922104265
Iteration: 11, Func. Count: 93, Neg. LLF: 93.32842572386733
Iteration: 12, Func. Count: 101, Neg. LLF: 93.32838036004603
Iteration: 13, Func. Count: 109, Neg. LLF: 93.32837145708308
Iteration: 14, Func. Count: 117, Neg. LLF: 93.32837074329365
Optimization terminated successfully (Exit mode 0)
Current function value: 93.32837074329365
Iterations: 14
Function evaluations: 117
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 100.89448282701986
Iteration: 2, Func. Count: 20, Neg. LLF: 135.63546527276148
Iteration: 3, Func. Count: 30, Neg. LLF: 587.4839671793471
Iteration: 4, Func. Count: 40, Neg. LLF: 107.09393164451751
Iteration: 5, Func. Count: 50, Neg. LLF: 99.0931099435257
Iteration: 6, Func. Count: 60, Neg. LLF: 93.71737979318011
Iteration: 7, Func. Count: 69, Neg. LLF: 93.39763488371958
Iteration: 8, Func. Count: 78, Neg. LLF: 93.69245365747558
Iteration: 9, Func. Count: 88, Neg. LLF: 93.2810199862736
Iteration: 10, Func. Count: 97, Neg. LLF: 93.27861108855512
Iteration: 11, Func. Count: 106, Neg. LLF: 93.27720624488273
Iteration: 12, Func. Count: 115, Neg. LLF: 93.27715558006959
Iteration: 13, Func. Count: 124, Neg. LLF: 93.2771465225179
Iteration: 14, Func. Count: 133, Neg. LLF: 93.27714537089233
Iteration: 15, Func. Count: 141, Neg. LLF: 93.27714535549254
Optimization terminated successfully (Exit mode 0)
Current function value: 93.27714537089233
Iterations: 15
Function evaluations: 141
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 101.68124050583519
Iteration: 2, Func. Count: 23, Neg. LLF: 389.4267695403895
Iteration: 3, Func. Count: 34, Neg. LLF: 1239.4457672877459
Iteration: 4, Func. Count: 45, Neg. LLF: 96.72550171104997
Iteration: 5, Func. Count: 56, Neg. LLF: 93.9936636724495
Iteration: 6, Func. Count: 66, Neg. LLF: 93.48589683333039
Iteration: 7, Func. Count: 76, Neg. LLF: 94.02859683464366
Iteration: 8, Func. Count: 87, Neg. LLF: 93.33406269580394
Iteration: 9, Func. Count: 97, Neg. LLF: 93.27785899276954
Iteration: 10, Func. Count: 107, Neg. LLF: 93.27724824759048
Iteration: 11, Func. Count: 117, Neg. LLF: 93.27716319107724
Iteration: 12, Func. Count: 127, Neg. LLF: 93.27714838523036
Iteration: 13, Func. Count: 137, Neg. LLF: 93.27714699997344
Iteration: 14, Func. Count: 147, Neg. LLF: 93.27714606142737
Optimization terminated successfully (Exit mode 0)
Current function value: 93.27714606142737
Iterations: 14
Function evaluations: 147
Gradient evaluations: 14
Iteration: 1, Func. Count: 12, Neg. LLF: 102.65510766169609
Iteration: 2, Func. Count: 25, Neg. LLF: 350.51080800581815
Iteration: 3, Func. Count: 37, Neg. LLF: 2000.2618807133495
Iteration: 4, Func. Count: 49, Neg. LLF: 98.2713304285406
Iteration: 5, Func. Count: 61, Neg. LLF: 94.35821365066695
Iteration: 6, Func. Count: 73, Neg. LLF: 93.42397002226318
Iteration: 7, Func. Count: 84, Neg. LLF: 93.34602518259223
Iteration: 8, Func. Count: 95, Neg. LLF: 93.28909998995735
Iteration: 9, Func. Count: 106, Neg. LLF: 93.28163252515407
Iteration: 10, Func. Count: 117, Neg. LLF: 93.2792079889811
Iteration: 11, Func. Count: 128, Neg. LLF: 93.27839461744603
Iteration: 12, Func. Count: 139, Neg. LLF: 93.2774927844792
Iteration: 13, Func. Count: 150, Neg. LLF: 93.27718528864459
Iteration: 14, Func. Count: 161, Neg. LLF: 93.27714657304782
Iteration: 15, Func. Count: 172, Neg. LLF: 93.27714537983711
Iteration: 16, Func. Count: 182, Neg. LLF: 93.27714540288184
Optimization terminated successfully (Exit mode 0)
Current function value: 93.27714537983711
Iterations: 16
Function evaluations: 182
Gradient evaluations: 16
Iteration: 1, Func. Count: 9, Neg. LLF: 99.4476460313912
Iteration: 2, Func. Count: 19, Neg. LLF: 35584494.675622895
Iteration: 3, Func. Count: 28, Neg. LLF: 12799259.897423616
Iteration: 4, Func. Count: 37, Neg. LLF: 7494613.600615643
Iteration: 5, Func. Count: 46, Neg. LLF: 115.6636742772584
Iteration: 6, Func. Count: 55, Neg. LLF: 93.45499938766106
Iteration: 7, Func. Count: 64, Neg. LLF: 94.35314503154528
Iteration: 8, Func. Count: 73, Neg. LLF: 91.57112204259762
Iteration: 9, Func. Count: 81, Neg. LLF: 91.47460706900407
Iteration: 10, Func. Count: 89, Neg. LLF: 91.40808007334756
Iteration: 11, Func. Count: 97, Neg. LLF: 91.39205306911451
Iteration: 12, Func. Count: 105, Neg. LLF: 91.38110927916884
Iteration: 13, Func. Count: 113, Neg. LLF: 91.37783024822645
Iteration: 14, Func. Count: 121, Neg. LLF: 91.37760936072621
Iteration: 15, Func. Count: 129, Neg. LLF: 91.37760283232137
Iteration: 16, Func. Count: 136, Neg. LLF: 91.37760283233101
Optimization terminated successfully (Exit mode 0)
Current function value: 91.37760283232137
Iterations: 16
Function evaluations: 136
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 107.43449277378257
Iteration: 2, Func. Count: 20, Neg. LLF: 129.07581265756906
Iteration: 3, Func. Count: 30, Neg. LLF: 264.4168978968986
Iteration: 4, Func. Count: 40, Neg. LLF: 100.9699878445614
Iteration: 5, Func. Count: 50, Neg. LLF: 91.7359165568912
Iteration: 6, Func. Count: 59, Neg. LLF: 92.07339608552485
Iteration: 7, Func. Count: 69, Neg. LLF: 91.43266757658185
Iteration: 8, Func. Count: 78, Neg. LLF: 91.41048502814084
Iteration: 9, Func. Count: 87, Neg. LLF: 91.38684182125239
Iteration: 10, Func. Count: 96, Neg. LLF: 91.37780304754554
Iteration: 11, Func. Count: 105, Neg. LLF: 91.37760611797019
Iteration: 12, Func. Count: 114, Neg. LLF: 91.3776027809157
Iteration: 13, Func. Count: 122, Neg. LLF: 91.37760292452414
Optimization terminated successfully (Exit mode 0)
Current function value: 91.3776027809157
Iterations: 13
Function evaluations: 122
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 100.43080354703132
Iteration: 2, Func. Count: 22, Neg. LLF: 145.7393752169403
Iteration: 3, Func. Count: 33, Neg. LLF: 7341581.480324266
Iteration: 4, Func. Count: 44, Neg. LLF: 105.9515810389602
Iteration: 5, Func. Count: 55, Neg. LLF: 95.2171859824538
Iteration: 6, Func. Count: 66, Neg. LLF: 92.200405190481
Iteration: 7, Func. Count: 76, Neg. LLF: 91.43935858121087
Iteration: 8, Func. Count: 86, Neg. LLF: 91.40802811799118
Iteration: 9, Func. Count: 96, Neg. LLF: 91.38662792852949
Iteration: 10, Func. Count: 106, Neg. LLF: 91.37845686153038
Iteration: 11, Func. Count: 116, Neg. LLF: 91.37791979721179
Iteration: 12, Func. Count: 126, Neg. LLF: 91.3776132668358
Iteration: 13, Func. Count: 136, Neg. LLF: 91.37760577474745
Iteration: 14, Func. Count: 146, Neg. LLF: 91.37760271238446
Iteration: 15, Func. Count: 155, Neg. LLF: 91.37760276478343
Optimization terminated successfully (Exit mode 0)
Current function value: 91.37760271238446
Iterations: 15
Function evaluations: 155
Gradient evaluations: 15
Iteration: 1, Func. Count: 12, Neg. LLF: 98.63377094317673
Iteration: 2, Func. Count: 24, Neg. LLF: 156.32183513560307
Iteration: 3, Func. Count: 36, Neg. LLF: 11078520.165508723
Iteration: 4, Func. Count: 48, Neg. LLF: 110.10456988500647
Iteration: 5, Func. Count: 60, Neg. LLF: 100.43431195300522
Iteration: 6, Func. Count: 72, Neg. LLF: 91.68167225033945
Iteration: 7, Func. Count: 83, Neg. LLF: 91.52485863741668
Iteration: 8, Func. Count: 94, Neg. LLF: 92.48233046248055
Iteration: 9, Func. Count: 106, Neg. LLF: 91.41480836575872
Iteration: 10, Func. Count: 117, Neg. LLF: 91.38622709969582
Iteration: 11, Func. Count: 128, Neg. LLF: 91.37286126449642
Iteration: 12, Func. Count: 139, Neg. LLF: 91.36968262378653
Iteration: 13, Func. Count: 150, Neg. LLF: 91.36941460519375
Iteration: 14, Func. Count: 161, Neg. LLF: 91.36920545451008
Iteration: 15, Func. Count: 172, Neg. LLF: 91.3691984089115
Iteration: 16, Func. Count: 182, Neg. LLF: 91.36919840888196
Optimization terminated successfully (Exit mode 0)
Current function value: 91.3691984089115
Iterations: 16
Function evaluations: 182
Gradient evaluations: 16
Iteration: 1, Func. Count: 13, Neg. LLF: 97.72596416908985
Iteration: 2, Func. Count: 26, Neg. LLF: 159.50635486800874
Iteration: 3, Func. Count: 39, Neg. LLF: 11514826.18809336
Iteration: 4, Func. Count: 52, Neg. LLF: 112.00311898110729
Iteration: 5, Func. Count: 65, Neg. LLF: 107.27127104894302
Iteration: 6, Func. Count: 78, Neg. LLF: 91.5778836814611
Iteration: 7, Func. Count: 90, Neg. LLF: 91.84618908124183
Iteration: 8, Func. Count: 103, Neg. LLF: 91.5743967167881
Iteration: 9, Func. Count: 116, Neg. LLF: 91.40452275054759
Iteration: 10, Func. Count: 129, Neg. LLF: 91.37943296672138
Iteration: 11, Func. Count: 141, Neg. LLF: 91.37117477316649
Iteration: 12, Func. Count: 153, Neg. LLF: 91.36932697801709
Iteration: 13, Func. Count: 165, Neg. LLF: 91.36920837220431
Iteration: 14, Func. Count: 177, Neg. LLF: 91.36919889068838
Iteration: 15, Func. Count: 188, Neg. LLF: 91.36919896422212
Optimization terminated successfully (Exit mode 0)
Current function value: 91.36919889068838
Iterations: 15
Function evaluations: 188
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 103.24298347236976
Iteration: 2, Func. Count: 21, Neg. LLF: 206730214.9545613
Iteration: 3, Func. Count: 31, Neg. LLF: 11555566.482312806
Iteration: 4, Func. Count: 41, Neg. LLF: 8051909.137295286
Iteration: 5, Func. Count: 51, Neg. LLF: 658.9965648366345
Iteration: 6, Func. Count: 61, Neg. LLF: 113.37323584878015
Iteration: 7, Func. Count: 71, Neg. LLF: 96.61019354097368
Iteration: 8, Func. Count: 81, Neg. LLF: 92.72018135565725
Iteration: 9, Func. Count: 91, Neg. LLF: 91.58097763408747
Iteration: 10, Func. Count: 100, Neg. LLF: 91.21559233042349
Iteration: 11, Func. Count: 109, Neg. LLF: 91.24129706992393
Iteration: 12, Func. Count: 119, Neg. LLF: 90.99318478096286
Iteration: 13, Func. Count: 128, Neg. LLF: 90.9927074468025
Iteration: 14, Func. Count: 137, Neg. LLF: 90.99250962975998
Iteration: 15, Func. Count: 146, Neg. LLF: 90.99229903902015
Iteration: 16, Func. Count: 155, Neg. LLF: 90.99219154478199
Iteration: 17, Func. Count: 164, Neg. LLF: 90.99208998364182
Iteration: 18, Func. Count: 173, Neg. LLF: 90.99207083114834
Iteration: 19, Func. Count: 182, Neg. LLF: 90.99206894357562
Iteration: 20, Func. Count: 190, Neg. LLF: 90.99206879624863
Optimization terminated successfully (Exit mode 0)
Current function value: 90.99206894357562
Iterations: 20
Function evaluations: 190
Gradient evaluations: 20
Iteration: 1, Func. Count: 11, Neg. LLF: 96.89754401810836
Iteration: 2, Func. Count: 22, Neg. LLF: 164.31297708843192
Iteration: 3, Func. Count: 33, Neg. LLF: 12225678.666173851
Iteration: 4, Func. Count: 44, Neg. LLF: 104.78535085869558
Iteration: 5, Func. Count: 55, Neg. LLF: 94.1571482183799
Iteration: 6, Func. Count: 66, Neg. LLF: 91.99877847575064
Iteration: 7, Func. Count: 76, Neg. LLF: 91.301892503914
Iteration: 8, Func. Count: 86, Neg. LLF: 91.13754669287273
Iteration: 9, Func. Count: 96, Neg. LLF: 91.04970353935639
Iteration: 10, Func. Count: 106, Neg. LLF: 91.01199506687769
Iteration: 11, Func. Count: 116, Neg. LLF: 90.99462467366965
Iteration: 12, Func. Count: 126, Neg. LLF: 90.9926973689368
Iteration: 13, Func. Count: 136, Neg. LLF: 90.99215623692984
Iteration: 14, Func. Count: 146, Neg. LLF: 90.9920834442939
Iteration: 15, Func. Count: 156, Neg. LLF: 90.99206937704348
Iteration: 16, Func. Count: 165, Neg. LLF: 90.99206948900022
Optimization terminated successfully (Exit mode 0)
Current function value: 90.99206937704348
Iterations: 16
Function evaluations: 165
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 94.68872790675134
Iteration: 2, Func. Count: 24, Neg. LLF: 11537937.302233111
Iteration: 3, Func. Count: 36, Neg. LLF: 18626538.590823576
Iteration: 4, Func. Count: 48, Neg. LLF: 101.03922323280182
Iteration: 5, Func. Count: 60, Neg. LLF: 94.64780869285246
Iteration: 6, Func. Count: 72, Neg. LLF: 91.80921821058301
Iteration: 7, Func. Count: 83, Neg. LLF: 91.5027974220427
Iteration: 8, Func. Count: 94, Neg. LLF: 91.70359004619215
Iteration: 9, Func. Count: 106, Neg. LLF: 91.17360689302295
Iteration: 10, Func. Count: 117, Neg. LLF: 91.1476587377989
Iteration: 11, Func. Count: 128, Neg. LLF: 91.0649423136397
Iteration: 12, Func. Count: 139, Neg. LLF: 91.02310595373439
Iteration: 13, Func. Count: 150, Neg. LLF: 90.99630864239224
Iteration: 14, Func. Count: 161, Neg. LLF: 90.99284973635977
Iteration: 15, Func. Count: 172, Neg. LLF: 90.99220502495999
Iteration: 16, Func. Count: 183, Neg. LLF: 90.99207827390772
Iteration: 17, Func. Count: 194, Neg. LLF: 90.9920719531753
Iteration: 18, Func. Count: 205, Neg. LLF: 90.9920690094762
Iteration: 19, Func. Count: 215, Neg. LLF: 90.99206909370103
Optimization terminated successfully (Exit mode 0)
Current function value: 90.9920690094762
Iterations: 19
Function evaluations: 215
Gradient evaluations: 19
Iteration: 1, Func. Count: 13, Neg. LLF: 93.2459230459421
Iteration: 2, Func. Count: 25, Neg. LLF: 144.12102639064713
Iteration: 3, Func. Count: 39, Neg. LLF: 107.87043603159786
Iteration: 4, Func. Count: 52, Neg. LLF: 101.56110840098152
Iteration: 5, Func. Count: 65, Neg. LLF: 6807288.581317322
Iteration: 6, Func. Count: 78, Neg. LLF: 92.48410877201255
Iteration: 7, Func. Count: 91, Neg. LLF: 273.2716226631722
Iteration: 8, Func. Count: 104, Neg. LLF: 187.41810437818148
Iteration: 9, Func. Count: 117, Neg. LLF: 110.80672890816702
Iteration: 10, Func. Count: 130, Neg. LLF: 108.27449570919265
Iteration: 11, Func. Count: 143, Neg. LLF: 91.49478104166744
Iteration: 12, Func. Count: 156, Neg. LLF: 90.84534952363857
Iteration: 13, Func. Count: 168, Neg. LLF: 90.7909685094774
Iteration: 14, Func. Count: 180, Neg. LLF: 90.72220493598567
Iteration: 15, Func. Count: 192, Neg. LLF: 90.61478708362486
Iteration: 16, Func. Count: 204, Neg. LLF: 90.5749615304141
Iteration: 17, Func. Count: 216, Neg. LLF: 90.56156702597798
Iteration: 18, Func. Count: 228, Neg. LLF: 90.56015181815806
Iteration: 19, Func. Count: 240, Neg. LLF: 90.56008794382886
Iteration: 20, Func. Count: 252, Neg. LLF: 90.56008081430328
Iteration: 21, Func. Count: 263, Neg. LLF: 90.56008078950475
Optimization terminated successfully (Exit mode 0)
Current function value: 90.56008081430328
Iterations: 21
Function evaluations: 263
Gradient evaluations: 21
Iteration: 1, Func. Count: 14, Neg. LLF: 92.99426452056423
Iteration: 2, Func. Count: 27, Neg. LLF: 146.70085004993234
Iteration: 3, Func. Count: 42, Neg. LLF: 112.07090128747242
Iteration: 4, Func. Count: 56, Neg. LLF: 107.07736858865034
Iteration: 5, Func. Count: 70, Neg. LLF: 6807928.786954255
Iteration: 6, Func. Count: 84, Neg. LLF: 91.89929418699725
Iteration: 7, Func. Count: 98, Neg. LLF: 227.74490251483752
Iteration: 8, Func. Count: 112, Neg. LLF: 131.52495494738366
Iteration: 9, Func. Count: 126, Neg. LLF: 139.14083934416612
Iteration: 10, Func. Count: 140, Neg. LLF: 105.4211321922208
Iteration: 11, Func. Count: 154, Neg. LLF: 91.1918900564699
Iteration: 12, Func. Count: 168, Neg. LLF: 90.82185894649967
Iteration: 13, Func. Count: 181, Neg. LLF: 90.87996821713843
Iteration: 14, Func. Count: 195, Neg. LLF: 90.69090873096103
Iteration: 15, Func. Count: 208, Neg. LLF: 90.62777719597922
Iteration: 16, Func. Count: 221, Neg. LLF: 90.57430196758266
Iteration: 17, Func. Count: 234, Neg. LLF: 90.56197212160215
Iteration: 18, Func. Count: 247, Neg. LLF: 90.56025338707181
Iteration: 19, Func. Count: 260, Neg. LLF: 90.56009915383882
Iteration: 20, Func. Count: 273, Neg. LLF: 90.56008102226593
Iteration: 21, Func. Count: 285, Neg. LLF: 90.56008109511365
Optimization terminated successfully (Exit mode 0)
Current function value: 90.56008102226593
Iterations: 21
Function evaluations: 285
Gradient evaluations: 21
Iteration: 1, Func. Count: 11, Neg. LLF: 103.10121164934148
Iteration: 2, Func. Count: 23, Neg. LLF: 111152672.9838976
Iteration: 3, Func. Count: 34, Neg. LLF: 11515028.685490454
Iteration: 4, Func. Count: 45, Neg. LLF: 7853260.54841015
Iteration: 5, Func. Count: 56, Neg. LLF: 436.0641572850432
Iteration: 6, Func. Count: 67, Neg. LLF: 135.82872709698225
Iteration: 7, Func. Count: 78, Neg. LLF: 100.920525359512
Iteration: 8, Func. Count: 89, Neg. LLF: 93.8997144349951
Iteration: 9, Func. Count: 100, Neg. LLF: 92.05341065373128
Iteration: 10, Func. Count: 111, Neg. LLF: 91.49180660785719
Iteration: 11, Func. Count: 121, Neg. LLF: 91.09406600633875
Iteration: 12, Func. Count: 131, Neg. LLF: 91.03529572426828
Iteration: 13, Func. Count: 141, Neg. LLF: 90.99556457002542
Iteration: 14, Func. Count: 151, Neg. LLF: 90.99419080650262
Iteration: 15, Func. Count: 161, Neg. LLF: 90.99361336621803
Iteration: 16, Func. Count: 171, Neg. LLF: 90.99304689372204
Iteration: 17, Func. Count: 181, Neg. LLF: 90.9924146120373
Iteration: 18, Func. Count: 191, Neg. LLF: 90.99213142050579
Iteration: 19, Func. Count: 201, Neg. LLF: 90.99207247603776
Iteration: 20, Func. Count: 211, Neg. LLF: 90.99206905793397
Iteration: 21, Func. Count: 220, Neg. LLF: 90.99206910459222
Optimization terminated successfully (Exit mode 0)
Current function value: 90.99206905793397
Iterations: 21
Function evaluations: 220
Gradient evaluations: 21
Iteration: 1, Func. Count: 12, Neg. LLF: 96.33073577081142
Iteration: 2, Func. Count: 24, Neg. LLF: 8014256.25362108
Iteration: 3, Func. Count: 36, Neg. LLF: 12498638.659910813
Iteration: 4, Func. Count: 48, Neg. LLF: 102.88718939148822
Iteration: 5, Func. Count: 60, Neg. LLF: 95.06202955515919
Iteration: 6, Func. Count: 72, Neg. LLF: 92.0178580020644
Iteration: 7, Func. Count: 83, Neg. LLF: 91.3435493545539
Iteration: 8, Func. Count: 94, Neg. LLF: 91.36425686478387
Iteration: 9, Func. Count: 106, Neg. LLF: 91.07724979962846
Iteration: 10, Func. Count: 117, Neg. LLF: 91.03315768510426
Iteration: 11, Func. Count: 128, Neg. LLF: 91.00709377467358
Iteration: 12, Func. Count: 139, Neg. LLF: 90.99525080369068
Iteration: 13, Func. Count: 150, Neg. LLF: 90.99285635493416
Iteration: 14, Func. Count: 161, Neg. LLF: 90.9921507525138
Iteration: 15, Func. Count: 172, Neg. LLF: 90.99207639661223
Iteration: 16, Func. Count: 183, Neg. LLF: 90.99206979262316
Iteration: 17, Func. Count: 194, Neg. LLF: 90.9920690724294
Optimization terminated successfully (Exit mode 0)
Current function value: 90.9920690724294
Iterations: 17
Function evaluations: 194
Gradient evaluations: 17
Iteration: 1, Func. Count: 13, Neg. LLF: 95.71799439968856
Iteration: 2, Func. Count: 26, Neg. LLF: 10417519.235430688
Iteration: 3, Func. Count: 39, Neg. LLF: 19797841.554772522
Iteration: 4, Func. Count: 52, Neg. LLF: 112.04253626566268
Iteration: 5, Func. Count: 65, Neg. LLF: 100.00354341168135
Iteration: 6, Func. Count: 78, Neg. LLF: 96.17038323372881
Iteration: 7, Func. Count: 91, Neg. LLF: 91.91252472709688
Iteration: 8, Func. Count: 103, Neg. LLF: 91.35116767945648
Iteration: 9, Func. Count: 115, Neg. LLF: 91.3160270363793
Iteration: 10, Func. Count: 127, Neg. LLF: 91.17324827774004
Iteration: 11, Func. Count: 139, Neg. LLF: 91.12029542225643
Iteration: 12, Func. Count: 151, Neg. LLF: 91.04525758326278
Iteration: 13, Func. Count: 163, Neg. LLF: 91.00314464080762
Iteration: 14, Func. Count: 175, Neg. LLF: 90.99517992126998
Iteration: 15, Func. Count: 187, Neg. LLF: 90.9927761219969
Iteration: 16, Func. Count: 199, Neg. LLF: 90.99222880734956
Iteration: 17, Func. Count: 211, Neg. LLF: 90.99210512453305
Iteration: 18, Func. Count: 223, Neg. LLF: 90.99207041553052
Iteration: 19, Func. Count: 235, Neg. LLF: 90.9920689648285
Iteration: 20, Func. Count: 246, Neg. LLF: 90.99206904907858
Optimization terminated successfully (Exit mode 0)
Current function value: 90.9920689648285
Iterations: 20
Function evaluations: 246
Gradient evaluations: 20
Iteration: 1, Func. Count: 14, Neg. LLF: 93.84822292832257
Iteration: 2, Func. Count: 27, Neg. LLF: 145.54472794867877
Iteration: 3, Func. Count: 41, Neg. LLF: 334.3258371815086
Iteration: 4, Func. Count: 55, Neg. LLF: 197.63250788323987
Iteration: 5, Func. Count: 69, Neg. LLF: 5085.471936474294
Iteration: 6, Func. Count: 83, Neg. LLF: 133.133372253092
Iteration: 7, Func. Count: 97, Neg. LLF: 91.85636577522433
Iteration: 8, Func. Count: 111, Neg. LLF: 102.43325813567034
Iteration: 9, Func. Count: 125, Neg. LLF: 91.44098957385718
Iteration: 10, Func. Count: 139, Neg. LLF: 137.7178739787842
Iteration: 11, Func. Count: 153, Neg. LLF: 91.25102458447527
Iteration: 12, Func. Count: 167, Neg. LLF: 90.86916920870064
Iteration: 13, Func. Count: 180, Neg. LLF: 90.74898471632078
Iteration: 14, Func. Count: 193, Neg. LLF: 90.64176569593394
Iteration: 15, Func. Count: 206, Neg. LLF: 90.58675480202655
Iteration: 16, Func. Count: 219, Neg. LLF: 90.60792945145424
Iteration: 17, Func. Count: 233, Neg. LLF: 90.56124870490844
Iteration: 18, Func. Count: 246, Neg. LLF: 90.56018045452926
Iteration: 19, Func. Count: 259, Neg. LLF: 90.56008457689124
Iteration: 20, Func. Count: 272, Neg. LLF: 90.56008079698036
Iteration: 21, Func. Count: 284, Neg. LLF: 90.560080772239
Optimization terminated successfully (Exit mode 0)
Current function value: 90.56008079698036
Iterations: 21
Function evaluations: 284
Gradient evaluations: 21
Iteration: 1, Func. Count: 15, Neg. LLF: 93.68847252885958
Iteration: 2, Func. Count: 29, Neg. LLF: 147.18789923483845
Iteration: 3, Func. Count: 44, Neg. LLF: 7317943.76175059
Iteration: 4, Func. Count: 59, Neg. LLF: 196.84080759262977
Iteration: 5, Func. Count: 74, Neg. LLF: 3471.18069250732
Iteration: 6, Func. Count: 89, Neg. LLF: 180.07208468983484
Iteration: 7, Func. Count: 104, Neg. LLF: 91.81721183907202
Iteration: 8, Func. Count: 119, Neg. LLF: 92.27238597927222
Iteration: 9, Func. Count: 134, Neg. LLF: 106.44929860611636
Iteration: 10, Func. Count: 149, Neg. LLF: 302.60305302143496
Iteration: 11, Func. Count: 164, Neg. LLF: 93.0793768482415
Iteration: 12, Func. Count: 179, Neg. LLF: 91.11508879123312
Iteration: 13, Func. Count: 193, Neg. LLF: 91.03803065650514
Iteration: 14, Func. Count: 207, Neg. LLF: 90.92750223235937
Iteration: 15, Func. Count: 221, Neg. LLF: 90.84944798543764
Iteration: 16, Func. Count: 235, Neg. LLF: 90.78753508445246
Iteration: 17, Func. Count: 249, Neg. LLF: 90.71499991279629
Iteration: 18, Func. Count: 263, Neg. LLF: 90.58632984059216
Iteration: 19, Func. Count: 277, Neg. LLF: 90.57016871992505
Iteration: 20, Func. Count: 291, Neg. LLF: 90.56149104534897
Iteration: 21, Func. Count: 305, Neg. LLF: 90.56026808356398
Iteration: 22, Func. Count: 319, Neg. LLF: 90.56008861526388
Iteration: 23, Func. Count: 333, Neg. LLF: 90.56008097310638
Iteration: 24, Func. Count: 346, Neg. LLF: 90.56008104595091
Optimization terminated successfully (Exit mode 0)
Current function value: 90.56008097310638
Iterations: 24
Function evaluations: 346
Gradient evaluations: 24
Iteration: 1, Func. Count: 8, Neg. LLF: 112.67597165898003
Iteration: 2, Func. Count: 17, Neg. LLF: 107158.23619476832
Iteration: 3, Func. Count: 25, Neg. LLF: 418.1070491061265
Iteration: 4, Func. Count: 33, Neg. LLF: 1459.0075958704294
Iteration: 5, Func. Count: 41, Neg. LLF: 432.5353898863454
Iteration: 6, Func. Count: 49, Neg. LLF: 100.15768711570756
Iteration: 7, Func. Count: 57, Neg. LLF: 94.42837640078105
Iteration: 8, Func. Count: 64, Neg. LLF: 94.16475994984805
Iteration: 9, Func. Count: 71, Neg. LLF: 94.13721757045532
Iteration: 10, Func. Count: 78, Neg. LLF: 94.11685612555789
Iteration: 11, Func. Count: 85, Neg. LLF: 94.10997532585624
Iteration: 12, Func. Count: 92, Neg. LLF: 94.09669442129689
Iteration: 13, Func. Count: 99, Neg. LLF: 94.09619933671952
Iteration: 14, Func. Count: 106, Neg. LLF: 94.09618651044484
Iteration: 15, Func. Count: 112, Neg. LLF: 94.09618658059762
Optimization terminated successfully (Exit mode 0)
Current function value: 94.09618651044484
Iterations: 15
Function evaluations: 112
Gradient evaluations: 15
Iteration: 1, Func. Count: 9, Neg. LLF: 99.53167799912939
Iteration: 2, Func. Count: 19, Neg. LLF: 420.68043354915466
Iteration: 3, Func. Count: 28, Neg. LLF: 639.6118621162393
Iteration: 4, Func. Count: 37, Neg. LLF: 101.1345040921559
Iteration: 5, Func. Count: 46, Neg. LLF: 94.17064386220834
Iteration: 6, Func. Count: 54, Neg. LLF: 94.1513603900767
Iteration: 7, Func. Count: 62, Neg. LLF: 94.11189598592236
Iteration: 8, Func. Count: 70, Neg. LLF: 94.10745269082244
Iteration: 9, Func. Count: 78, Neg. LLF: 94.09678874804816
Iteration: 10, Func. Count: 86, Neg. LLF: 94.09619157039799
Iteration: 11, Func. Count: 94, Neg. LLF: 94.0961864700765
Iteration: 12, Func. Count: 101, Neg. LLF: 94.09618649813969
Optimization terminated successfully (Exit mode 0)
Current function value: 94.0961864700765
Iterations: 12
Function evaluations: 101
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 121.11151361326786
Iteration: 2, Func. Count: 24, Neg. LLF: 124.28474308361534
Iteration: 3, Func. Count: 34, Neg. LLF: 110.82401573583343
Iteration: 4, Func. Count: 44, Neg. LLF: 99.67591479677347
Iteration: 5, Func. Count: 54, Neg. LLF: 96.31482035721535
Iteration: 6, Func. Count: 64, Neg. LLF: 94.96565852243987
Iteration: 7, Func. Count: 73, Neg. LLF: 94.17719980888225
Iteration: 8, Func. Count: 82, Neg. LLF: 94.14621461653044
Iteration: 9, Func. Count: 91, Neg. LLF: 94.13631456101962
Iteration: 10, Func. Count: 100, Neg. LLF: 94.12382500147842
Iteration: 11, Func. Count: 109, Neg. LLF: 94.12123460332346
Iteration: 12, Func. Count: 118, Neg. LLF: 94.1132392233094
Iteration: 13, Func. Count: 127, Neg. LLF: 94.1050957022753
Iteration: 14, Func. Count: 136, Neg. LLF: 94.09852385848902
Iteration: 15, Func. Count: 145, Neg. LLF: 94.09640460740493
Iteration: 16, Func. Count: 154, Neg. LLF: 94.09619394344912
Iteration: 17, Func. Count: 163, Neg. LLF: 94.09618668735123
Iteration: 18, Func. Count: 171, Neg. LLF: 94.0961867288093
Optimization terminated successfully (Exit mode 0)
Current function value: 94.09618668735123
Iterations: 18
Function evaluations: 171
Gradient evaluations: 18
Iteration: 1, Func. Count: 11, Neg. LLF: 124.84786638252663
Iteration: 2, Func. Count: 26, Neg. LLF: 137.45396235091778
Iteration: 3, Func. Count: 37, Neg. LLF: 118.721513245199
Iteration: 4, Func. Count: 48, Neg. LLF: 95.68110733637052
Iteration: 5, Func. Count: 59, Neg. LLF: 95.54070114927774
Iteration: 6, Func. Count: 70, Neg. LLF: 93.86606623963132
Iteration: 7, Func. Count: 80, Neg. LLF: 93.85463030877538
Iteration: 8, Func. Count: 90, Neg. LLF: 93.84046652961318
Iteration: 9, Func. Count: 100, Neg. LLF: 93.7977560845197
Iteration: 10, Func. Count: 110, Neg. LLF: 93.76937149732048
Iteration: 11, Func. Count: 120, Neg. LLF: 93.75554813691511
Iteration: 12, Func. Count: 130, Neg. LLF: 93.75411803661582
Iteration: 13, Func. Count: 140, Neg. LLF: 93.75402199354987
Iteration: 14, Func. Count: 150, Neg. LLF: 93.7540147440275
Iteration: 15, Func. Count: 159, Neg. LLF: 93.75401474405133
Optimization terminated successfully (Exit mode 0)
Current function value: 93.7540147440275
Iterations: 15
Function evaluations: 159
Gradient evaluations: 15
Iteration: 1, Func. Count: 12, Neg. LLF: 127.43050975093637
Iteration: 2, Func. Count: 28, Neg. LLF: 141.37527022753756
Iteration: 3, Func. Count: 40, Neg. LLF: 120.75315533166085
Iteration: 4, Func. Count: 52, Neg. LLF: 95.53469421434171
Iteration: 5, Func. Count: 64, Neg. LLF: 94.18794075245748
Iteration: 6, Func. Count: 75, Neg. LLF: 93.90420793000514
Iteration: 7, Func. Count: 86, Neg. LLF: 93.88008773725646
Iteration: 8, Func. Count: 97, Neg. LLF: 93.83327663643372
Iteration: 9, Func. Count: 108, Neg. LLF: 93.81786291000886
Iteration: 10, Func. Count: 119, Neg. LLF: 93.80909235569491
Iteration: 11, Func. Count: 130, Neg. LLF: 93.78310293397087
Iteration: 12, Func. Count: 141, Neg. LLF: 93.76398329644948
Iteration: 13, Func. Count: 152, Neg. LLF: 93.75507120657394
Iteration: 14, Func. Count: 163, Neg. LLF: 93.75407594373868
Iteration: 15, Func. Count: 174, Neg. LLF: 93.75401804249793
Iteration: 16, Func. Count: 185, Neg. LLF: 93.75401456889955
Iteration: 17, Func. Count: 195, Neg. LLF: 93.7540145720184
Optimization terminated successfully (Exit mode 0)
Current function value: 93.75401456889955
Iterations: 17
Function evaluations: 195
Gradient evaluations: 17
Iteration: 1, Func. Count: 9, Neg. LLF: 112.78195462770734
Iteration: 2, Func. Count: 19, Neg. LLF: 842.2023132529552
Iteration: 3, Func. Count: 28, Neg. LLF: 417.9731609784131
Iteration: 4, Func. Count: 37, Neg. LLF: 219.68355027942602
Iteration: 5, Func. Count: 46, Neg. LLF: 197.78582504294323
Iteration: 6, Func. Count: 55, Neg. LLF: 201.34262198336052
Iteration: 7, Func. Count: 64, Neg. LLF: 110.97519433441863
Iteration: 8, Func. Count: 73, Neg. LLF: 98.01472337425949
Iteration: 9, Func. Count: 82, Neg. LLF: 94.34519790497606
Iteration: 10, Func. Count: 91, Neg. LLF: 93.49494112895525
Iteration: 11, Func. Count: 99, Neg. LLF: 93.40519966459077
Iteration: 12, Func. Count: 107, Neg. LLF: 93.37228886169557
Iteration: 13, Func. Count: 115, Neg. LLF: 93.34725881622045
Iteration: 14, Func. Count: 123, Neg. LLF: 93.33470073118227
Iteration: 15, Func. Count: 131, Neg. LLF: 93.33017036752177
Iteration: 16, Func. Count: 139, Neg. LLF: 93.32837284469228
Iteration: 17, Func. Count: 147, Neg. LLF: 93.32837079571497
Iteration: 18, Func. Count: 154, Neg. LLF: 93.32837072869216
Optimization terminated successfully (Exit mode 0)
Current function value: 93.32837079571497
Iterations: 18
Function evaluations: 154
Gradient evaluations: 18
Iteration: 1, Func. Count: 10, Neg. LLF: 110.84335199334869
Iteration: 2, Func. Count: 23, Neg. LLF: 140.42826814465366
Iteration: 3, Func. Count: 33, Neg. LLF: 134.341899644898
Iteration: 4, Func. Count: 43, Neg. LLF: 96.78289499422114
Iteration: 5, Func. Count: 53, Neg. LLF: 94.29713096118539
Iteration: 6, Func. Count: 62, Neg. LLF: 93.86403405009565
Iteration: 7, Func. Count: 71, Neg. LLF: 93.50075611589266
Iteration: 8, Func. Count: 80, Neg. LLF: 93.45458271836347
Iteration: 9, Func. Count: 89, Neg. LLF: 93.44012773675142
Iteration: 10, Func. Count: 98, Neg. LLF: 93.38787477793699
Iteration: 11, Func. Count: 107, Neg. LLF: 93.34869123697229
Iteration: 12, Func. Count: 116, Neg. LLF: 93.33474762189668
Iteration: 13, Func. Count: 125, Neg. LLF: 93.33001964308275
Iteration: 14, Func. Count: 134, Neg. LLF: 93.328636427932
Iteration: 15, Func. Count: 143, Neg. LLF: 93.32839535341462
Iteration: 16, Func. Count: 152, Neg. LLF: 93.32837140656369
Iteration: 17, Func. Count: 161, Neg. LLF: 93.32837073371726
Optimization terminated successfully (Exit mode 0)
Current function value: 93.32837073371726
Iterations: 17
Function evaluations: 161
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 121.14704154424528
Iteration: 2, Func. Count: 26, Neg. LLF: 127.76056613622048
Iteration: 3, Func. Count: 37, Neg. LLF: 115.09489706851254
Iteration: 4, Func. Count: 48, Neg. LLF: 100.95157140956314
Iteration: 5, Func. Count: 59, Neg. LLF: 94.7119258001633
Iteration: 6, Func. Count: 69, Neg. LLF: 94.28915462474187
Iteration: 7, Func. Count: 79, Neg. LLF: 97.38027332289087
Iteration: 8, Func. Count: 90, Neg. LLF: 93.56975984020217
Iteration: 9, Func. Count: 100, Neg. LLF: 93.53910375804088
Iteration: 10, Func. Count: 110, Neg. LLF: 93.39448299494549
Iteration: 11, Func. Count: 120, Neg. LLF: 93.37481651154816
Iteration: 12, Func. Count: 130, Neg. LLF: 93.33715392977048
Iteration: 13, Func. Count: 140, Neg. LLF: 93.32300484526709
Iteration: 14, Func. Count: 150, Neg. LLF: 93.30915135037903
Iteration: 15, Func. Count: 160, Neg. LLF: 93.29764163679569
Iteration: 16, Func. Count: 170, Neg. LLF: 93.28541214195768
Iteration: 17, Func. Count: 180, Neg. LLF: 93.27892856837718
Iteration: 18, Func. Count: 190, Neg. LLF: 93.27733293034242
Iteration: 19, Func. Count: 200, Neg. LLF: 93.27716176283508
Iteration: 20, Func. Count: 210, Neg. LLF: 93.27714620060998
Iteration: 21, Func. Count: 220, Neg. LLF: 93.27714538885255
Optimization terminated successfully (Exit mode 0)
Current function value: 93.27714538885255
Iterations: 21
Function evaluations: 220
Gradient evaluations: 21
Iteration: 1, Func. Count: 12, Neg. LLF: 124.77291612094153
Iteration: 2, Func. Count: 28, Neg. LLF: 142.44020895356306
Iteration: 3, Func. Count: 40, Neg. LLF: 122.36943880537038
Iteration: 4, Func. Count: 52, Neg. LLF: 94.27850402695776
Iteration: 5, Func. Count: 63, Neg. LLF: 93.83054024293634
Iteration: 6, Func. Count: 74, Neg. LLF: 98.09674187414113
Iteration: 7, Func. Count: 86, Neg. LLF: 93.66870125912862
Iteration: 8, Func. Count: 97, Neg. LLF: 94.08603052233576
Iteration: 9, Func. Count: 109, Neg. LLF: 93.49786559007062
Iteration: 10, Func. Count: 120, Neg. LLF: 93.41057631426662
Iteration: 11, Func. Count: 131, Neg. LLF: 93.35433994857377
Iteration: 12, Func. Count: 142, Neg. LLF: 93.34654384379623
Iteration: 13, Func. Count: 153, Neg. LLF: 93.32102683648733
Iteration: 14, Func. Count: 164, Neg. LLF: 93.30495563845314
Iteration: 15, Func. Count: 175, Neg. LLF: 93.28242245866396
Iteration: 16, Func. Count: 186, Neg. LLF: 93.27753542392719
Iteration: 17, Func. Count: 197, Neg. LLF: 93.27715734457551
Iteration: 18, Func. Count: 208, Neg. LLF: 93.27714612047312
Iteration: 19, Func. Count: 219, Neg. LLF: 93.27714540775519
Optimization terminated successfully (Exit mode 0)
Current function value: 93.27714540775519
Iterations: 19
Function evaluations: 219
Gradient evaluations: 19
Iteration: 1, Func. Count: 13, Neg. LLF: 127.09384363133557
Iteration: 2, Func. Count: 30, Neg. LLF: 146.66464439677645
Iteration: 3, Func. Count: 43, Neg. LLF: 123.57479636338886
Iteration: 4, Func. Count: 56, Neg. LLF: 95.61460409602398
Iteration: 5, Func. Count: 69, Neg. LLF: 99.21637425542978
Iteration: 6, Func. Count: 82, Neg. LLF: 93.78467707719163
Iteration: 7, Func. Count: 94, Neg. LLF: 96.28294198560985
Iteration: 8, Func. Count: 108, Neg. LLF: 93.61838363851935
Iteration: 9, Func. Count: 120, Neg. LLF: 93.58713664259236
Iteration: 10, Func. Count: 132, Neg. LLF: 93.38562132876271
Iteration: 11, Func. Count: 144, Neg. LLF: 93.33736575062997
Iteration: 12, Func. Count: 156, Neg. LLF: 93.29860303620141
Iteration: 13, Func. Count: 168, Neg. LLF: 93.29482102405616
Iteration: 14, Func. Count: 180, Neg. LLF: 93.29142414158011
Iteration: 15, Func. Count: 192, Neg. LLF: 93.28923569711577
Iteration: 16, Func. Count: 204, Neg. LLF: 93.28634582788419
Iteration: 17, Func. Count: 216, Neg. LLF: 93.28252851281468
Iteration: 18, Func. Count: 228, Neg. LLF: 93.27886379197356
Iteration: 19, Func. Count: 240, Neg. LLF: 93.27743174409065
Iteration: 20, Func. Count: 252, Neg. LLF: 93.27716855722737
Iteration: 21, Func. Count: 264, Neg. LLF: 93.27714586891413
Iteration: 22, Func. Count: 275, Neg. LLF: 93.2771458919821
Optimization terminated successfully (Exit mode 0)
Current function value: 93.27714586891413
Iterations: 22
Function evaluations: 275
Gradient evaluations: 22
Iteration: 1, Func. Count: 10, Neg. LLF: 100.82106948687846
Iteration: 2, Func. Count: 21, Neg. LLF: 11015167.679875568
Iteration: 3, Func. Count: 31, Neg. LLF: 13354878.739899283
Iteration: 4, Func. Count: 41, Neg. LLF: 7409470.561955788
Iteration: 5, Func. Count: 51, Neg. LLF: 248.70674033472918
Iteration: 6, Func. Count: 61, Neg. LLF: 94.34390910604237
Iteration: 7, Func. Count: 71, Neg. LLF: 95.17618286583615
Iteration: 8, Func. Count: 81, Neg. LLF: 91.66500261001538
Iteration: 9, Func. Count: 90, Neg. LLF: 91.52700069291761
Iteration: 10, Func. Count: 99, Neg. LLF: 91.46656464523063
Iteration: 11, Func. Count: 108, Neg. LLF: 91.40601128914457
Iteration: 12, Func. Count: 117, Neg. LLF: 91.38705861630991
Iteration: 13, Func. Count: 126, Neg. LLF: 91.37907692973728
Iteration: 14, Func. Count: 135, Neg. LLF: 91.37769744381427
Iteration: 15, Func. Count: 144, Neg. LLF: 91.37760674742235
Iteration: 16, Func. Count: 153, Neg. LLF: 91.37760272137088
Iteration: 17, Func. Count: 161, Neg. LLF: 91.37760272137345
Optimization terminated successfully (Exit mode 0)
Current function value: 91.37760272137088
Iterations: 17
Function evaluations: 161
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 103.1132233786684
Iteration: 2, Func. Count: 22, Neg. LLF: 137.12242992218503
Iteration: 3, Func. Count: 33, Neg. LLF: 7339739.5673873685
Iteration: 4, Func. Count: 44, Neg. LLF: 117.73147077085363
Iteration: 5, Func. Count: 55, Neg. LLF: 94.71910290456049
Iteration: 6, Func. Count: 66, Neg. LLF: 92.82705249067462
Iteration: 7, Func. Count: 77, Neg. LLF: 91.45226825182282
Iteration: 8, Func. Count: 87, Neg. LLF: 91.43155298282768
Iteration: 9, Func. Count: 97, Neg. LLF: 91.39879597637349
Iteration: 10, Func. Count: 107, Neg. LLF: 91.38222078687892
Iteration: 11, Func. Count: 117, Neg. LLF: 91.37852990890781
Iteration: 12, Func. Count: 127, Neg. LLF: 91.37769891935991
Iteration: 13, Func. Count: 137, Neg. LLF: 91.37763876029574
Iteration: 14, Func. Count: 147, Neg. LLF: 91.37760477467667
Iteration: 15, Func. Count: 157, Neg. LLF: 91.37760281745526
Iteration: 16, Func. Count: 166, Neg. LLF: 91.3776029610874
Optimization terminated successfully (Exit mode 0)
Current function value: 91.37760281745526
Iterations: 16
Function evaluations: 166
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 100.21907577557207
Iteration: 2, Func. Count: 24, Neg. LLF: 157.2596020084136
Iteration: 3, Func. Count: 36, Neg. LLF: 12156312.713185398
Iteration: 4, Func. Count: 48, Neg. LLF: 132.05058446849222
Iteration: 5, Func. Count: 60, Neg. LLF: 97.12058741040697
Iteration: 6, Func. Count: 72, Neg. LLF: 92.4675773408021
Iteration: 7, Func. Count: 84, Neg. LLF: 91.49940032877701
Iteration: 8, Func. Count: 95, Neg. LLF: 91.44402842163646
Iteration: 9, Func. Count: 106, Neg. LLF: 91.40028167821134
Iteration: 10, Func. Count: 117, Neg. LLF: 91.38876266352524
Iteration: 11, Func. Count: 128, Neg. LLF: 91.38051265796916
Iteration: 12, Func. Count: 139, Neg. LLF: 91.37775885560417
Iteration: 13, Func. Count: 150, Neg. LLF: 91.3776048166116
Iteration: 14, Func. Count: 161, Neg. LLF: 91.3776032763459
Iteration: 15, Func. Count: 171, Neg. LLF: 91.37760332875274
Optimization terminated successfully (Exit mode 0)
Current function value: 91.3776032763459
Iterations: 15
Function evaluations: 171
Gradient evaluations: 15
Iteration: 1, Func. Count: 13, Neg. LLF: 99.66151985022533
Iteration: 2, Func. Count: 26, Neg. LLF: 168.3204088299646
Iteration: 3, Func. Count: 39, Neg. LLF: 12243026.051697204
Iteration: 4, Func. Count: 52, Neg. LLF: 135.30229170918898
Iteration: 5, Func. Count: 65, Neg. LLF: 120.6012549409599
Iteration: 6, Func. Count: 78, Neg. LLF: 99.67065899645979
Iteration: 7, Func. Count: 91, Neg. LLF: 92.36769839601845
Iteration: 8, Func. Count: 104, Neg. LLF: 91.54635802837996
Iteration: 9, Func. Count: 116, Neg. LLF: 91.78703418675201
Iteration: 10, Func. Count: 129, Neg. LLF: 91.39608044001191
Iteration: 11, Func. Count: 141, Neg. LLF: 91.38334243475957
Iteration: 12, Func. Count: 153, Neg. LLF: 91.37559928252773
Iteration: 13, Func. Count: 165, Neg. LLF: 91.37015674976428
Iteration: 14, Func. Count: 177, Neg. LLF: 91.3693981693728
Iteration: 15, Func. Count: 189, Neg. LLF: 91.36924295620096
Iteration: 16, Func. Count: 201, Neg. LLF: 91.36920536422606
Iteration: 17, Func. Count: 213, Neg. LLF: 91.36919870187614
Iteration: 18, Func. Count: 224, Neg. LLF: 91.36919870182717
Optimization terminated successfully (Exit mode 0)
Current function value: 91.36919870187614
Iterations: 18
Function evaluations: 224
Gradient evaluations: 18
Iteration: 1, Func. Count: 14, Neg. LLF: 99.16313274697907
Iteration: 2, Func. Count: 28, Neg. LLF: 156.60762620674186
Iteration: 3, Func. Count: 43, Neg. LLF: 7462827.926824639
Iteration: 4, Func. Count: 57, Neg. LLF: 93.38460752373521
Iteration: 5, Func. Count: 71, Neg. LLF: 107.55596940947858
Iteration: 6, Func. Count: 85, Neg. LLF: 91.55148773294306
Iteration: 7, Func. Count: 98, Neg. LLF: 91.41400227490689
Iteration: 8, Func. Count: 111, Neg. LLF: 91.39556059502485
Iteration: 9, Func. Count: 124, Neg. LLF: 91.38183800306732
Iteration: 10, Func. Count: 137, Neg. LLF: 91.3733406057631
Iteration: 11, Func. Count: 150, Neg. LLF: 91.36975443444454
Iteration: 12, Func. Count: 163, Neg. LLF: 91.36920498145594
Iteration: 13, Func. Count: 176, Neg. LLF: 91.36919839149189
Iteration: 14, Func. Count: 188, Neg. LLF: 91.3691984650564
Optimization terminated successfully (Exit mode 0)
Current function value: 91.36919839149189
Iterations: 14
Function evaluations: 188
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 103.09020370352422
Iteration: 2, Func. Count: 23, Neg. LLF: 81141477.82132493
Iteration: 3, Func. Count: 34, Neg. LLF: 11514110.705882223
Iteration: 4, Func. Count: 45, Neg. LLF: 7676029.119560299
Iteration: 5, Func. Count: 56, Neg. LLF: 335.8251882154687
Iteration: 6, Func. Count: 67, Neg. LLF: 158.40384399143454
Iteration: 7, Func. Count: 78, Neg. LLF: 107.36762593260735
Iteration: 8, Func. Count: 89, Neg. LLF: 96.38610151071488
Iteration: 9, Func. Count: 100, Neg. LLF: 92.4897169668568
Iteration: 10, Func. Count: 111, Neg. LLF: 91.81245699870446
Iteration: 11, Func. Count: 122, Neg. LLF: 91.16192491989814
Iteration: 12, Func. Count: 132, Neg. LLF: 91.02598158286547
Iteration: 13, Func. Count: 142, Neg. LLF: 91.0029944150507
Iteration: 14, Func. Count: 152, Neg. LLF: 91.00069196697174
Iteration: 15, Func. Count: 162, Neg. LLF: 90.99851953139957
Iteration: 16, Func. Count: 172, Neg. LLF: 90.99539427070506
Iteration: 17, Func. Count: 182, Neg. LLF: 90.99350535887898
Iteration: 18, Func. Count: 192, Neg. LLF: 90.99226840868792
Iteration: 19, Func. Count: 202, Neg. LLF: 90.9920847637604
Iteration: 20, Func. Count: 212, Neg. LLF: 90.99206918079638
Iteration: 21, Func. Count: 221, Neg. LLF: 90.9920690334762
Optimization terminated successfully (Exit mode 0)
Current function value: 90.99206918079638
Iterations: 21
Function evaluations: 221
Gradient evaluations: 21
Iteration: 1, Func. Count: 12, Neg. LLF: 95.93450167355293
Iteration: 2, Func. Count: 24, Neg. LLF: 14465444.942898525
Iteration: 3, Func. Count: 36, Neg. LLF: 12469111.821619349
Iteration: 4, Func. Count: 48, Neg. LLF: 99.58916851498272
Iteration: 5, Func. Count: 60, Neg. LLF: 94.90841434698356
Iteration: 6, Func. Count: 72, Neg. LLF: 92.1286071663507
Iteration: 7, Func. Count: 83, Neg. LLF: 91.50215486523172
Iteration: 8, Func. Count: 94, Neg. LLF: 92.18595850713567
Iteration: 9, Func. Count: 106, Neg. LLF: 91.15952636532899
Iteration: 10, Func. Count: 117, Neg. LLF: 91.09461169402022
Iteration: 11, Func. Count: 128, Neg. LLF: 91.03248116923041
Iteration: 12, Func. Count: 139, Neg. LLF: 91.0068289084346
Iteration: 13, Func. Count: 150, Neg. LLF: 90.99518090399347
Iteration: 14, Func. Count: 161, Neg. LLF: 90.99218742196939
Iteration: 15, Func. Count: 172, Neg. LLF: 90.99209668593629
Iteration: 16, Func. Count: 183, Neg. LLF: 90.99207573193212
Iteration: 17, Func. Count: 194, Neg. LLF: 90.99206893937392
Iteration: 18, Func. Count: 204, Neg. LLF: 90.99206905127659
Optimization terminated successfully (Exit mode 0)
Current function value: 90.99206893937392
Iterations: 18
Function evaluations: 204
Gradient evaluations: 18
Iteration: 1, Func. Count: 13, Neg. LLF: 96.10092213948735
Iteration: 2, Func. Count: 26, Neg. LLF: 12350861.875094907
Iteration: 3, Func. Count: 39, Neg. LLF: 6827050.798974247
Iteration: 4, Func. Count: 52, Neg. LLF: 8105447.741643009
Iteration: 5, Func. Count: 65, Neg. LLF: 103.66536125719661
Iteration: 6, Func. Count: 78, Neg. LLF: 109.58107271479558
Iteration: 7, Func. Count: 91, Neg. LLF: 92.90653871090616
Iteration: 8, Func. Count: 104, Neg. LLF: 91.32606094378775
Iteration: 9, Func. Count: 116, Neg. LLF: 91.25180754321656
Iteration: 10, Func. Count: 128, Neg. LLF: 91.2378011025306
Iteration: 11, Func. Count: 141, Neg. LLF: 91.13707600591746
Iteration: 12, Func. Count: 153, Neg. LLF: 91.06391496849065
Iteration: 13, Func. Count: 165, Neg. LLF: 91.01190680774098
Iteration: 14, Func. Count: 177, Neg. LLF: 90.99416970830768
Iteration: 15, Func. Count: 189, Neg. LLF: 90.9924224618144
Iteration: 16, Func. Count: 201, Neg. LLF: 90.99208462286218
Iteration: 17, Func. Count: 213, Neg. LLF: 90.99206947150974
Iteration: 18, Func. Count: 225, Neg. LLF: 90.99206890531656
Optimization terminated successfully (Exit mode 0)
Current function value: 90.99206890531656
Iterations: 18
Function evaluations: 225
Gradient evaluations: 18
Iteration: 1, Func. Count: 14, Neg. LLF: 94.29184423631916
Iteration: 2, Func. Count: 28, Neg. LLF: 8964724.496423805
Iteration: 3, Func. Count: 42, Neg. LLF: 12516380.845056795
Iteration: 4, Func. Count: 56, Neg. LLF: 118.74282798525353
Iteration: 5, Func. Count: 70, Neg. LLF: 115.88262496927513
Iteration: 6, Func. Count: 84, Neg. LLF: 95.3483110836804
Iteration: 7, Func. Count: 98, Neg. LLF: 91.18124793402204
Iteration: 8, Func. Count: 111, Neg. LLF: 91.83700710047303
Iteration: 9, Func. Count: 125, Neg. LLF: 90.9175072396888
Iteration: 10, Func. Count: 138, Neg. LLF: 90.63358851820358
Iteration: 11, Func. Count: 151, Neg. LLF: 90.74973014252667
Iteration: 12, Func. Count: 165, Neg. LLF: 90.56505180671903
Iteration: 13, Func. Count: 178, Neg. LLF: 90.56106689619082
Iteration: 14, Func. Count: 191, Neg. LLF: 90.5602810056826
Iteration: 15, Func. Count: 204, Neg. LLF: 90.56008582986
Iteration: 16, Func. Count: 217, Neg. LLF: 90.5600808313759
Iteration: 17, Func. Count: 229, Neg. LLF: 90.56008080656213
Optimization terminated successfully (Exit mode 0)
Current function value: 90.5600808313759
Iterations: 17
Function evaluations: 229
Gradient evaluations: 17
Iteration: 1, Func. Count: 15, Neg. LLF: 93.93114598049237
Iteration: 2, Func. Count: 29, Neg. LLF: 147.88221994740755
Iteration: 3, Func. Count: 44, Neg. LLF: 11362127.002908332
Iteration: 4, Func. Count: 59, Neg. LLF: 235.01606125838154
Iteration: 5, Func. Count: 74, Neg. LLF: 276.1302767480282
Iteration: 6, Func. Count: 89, Neg. LLF: 8264.267160167878
Iteration: 7, Func. Count: 104, Neg. LLF: 99.00682168812305
Iteration: 8, Func. Count: 119, Neg. LLF: 92.90957737949972
Iteration: 9, Func. Count: 134, Neg. LLF: 91.976461543052
Iteration: 10, Func. Count: 149, Neg. LLF: 96.67272665715126
Iteration: 11, Func. Count: 164, Neg. LLF: 125.07262967998062
Iteration: 12, Func. Count: 179, Neg. LLF: 185.63882010824406
Iteration: 13, Func. Count: 194, Neg. LLF: 91.89635220768353
Iteration: 14, Func. Count: 209, Neg. LLF: 91.32942846951158
Iteration: 15, Func. Count: 224, Neg. LLF: 91.19085410860535
Iteration: 16, Func. Count: 239, Neg. LLF: 90.91342934039598
Iteration: 17, Func. Count: 253, Neg. LLF: 90.88792647935293
Iteration: 18, Func. Count: 268, Neg. LLF: 90.69048318718305
Iteration: 19, Func. Count: 282, Neg. LLF: 90.5999530137684
Iteration: 20, Func. Count: 296, Neg. LLF: 90.5687540444366
Iteration: 21, Func. Count: 310, Neg. LLF: 90.5611684925554
Iteration: 22, Func. Count: 324, Neg. LLF: 90.56019603639476
Iteration: 23, Func. Count: 338, Neg. LLF: 90.5600877846615
Iteration: 24, Func. Count: 352, Neg. LLF: 90.5600811370814
Iteration: 25, Func. Count: 365, Neg. LLF: 90.56008121003916
Optimization terminated successfully (Exit mode 0)
Current function value: 90.5600811370814
Iterations: 25
Function evaluations: 365
Gradient evaluations: 25
Iteration: 1, Func. Count: 12, Neg. LLF: 104.0305885466135
Iteration: 2, Func. Count: 25, Neg. LLF: 59697799.42236891
Iteration: 3, Func. Count: 37, Neg. LLF: 11487578.57999904
Iteration: 4, Func. Count: 49, Neg. LLF: 7539684.505306044
Iteration: 5, Func. Count: 61, Neg. LLF: 567673.505350474
Iteration: 6, Func. Count: 73, Neg. LLF: 193.7737970920587
Iteration: 7, Func. Count: 85, Neg. LLF: 110.2533963271356
Iteration: 8, Func. Count: 97, Neg. LLF: 103.24088937648978
Iteration: 9, Func. Count: 109, Neg. LLF: 94.96740538847541
Iteration: 10, Func. Count: 121, Neg. LLF: 92.4891507502225
Iteration: 11, Func. Count: 133, Neg. LLF: 92.07158398010438
Iteration: 12, Func. Count: 145, Neg. LLF: 91.17260234505306
Iteration: 13, Func. Count: 156, Neg. LLF: 91.02362133779161
Iteration: 14, Func. Count: 167, Neg. LLF: 91.00074863637096
Iteration: 15, Func. Count: 178, Neg. LLF: 90.9990310589976
Iteration: 16, Func. Count: 189, Neg. LLF: 90.997141604566
Iteration: 17, Func. Count: 200, Neg. LLF: 90.99420775596725
Iteration: 18, Func. Count: 211, Neg. LLF: 90.99272775111417
Iteration: 19, Func. Count: 222, Neg. LLF: 90.99218872057202
Iteration: 20, Func. Count: 233, Neg. LLF: 90.99208163948245
Iteration: 21, Func. Count: 244, Neg. LLF: 90.99207028755283
Iteration: 22, Func. Count: 255, Neg. LLF: 90.99206899814814
Iteration: 23, Func. Count: 265, Neg. LLF: 90.99206895148207
Optimization terminated successfully (Exit mode 0)
Current function value: 90.99206899814814
Iterations: 23
Function evaluations: 265
Gradient evaluations: 23
Iteration: 1, Func. Count: 13, Neg. LLF: 96.14425905215093
Iteration: 2, Func. Count: 26, Neg. LLF: 12890929.866431262
Iteration: 3, Func. Count: 39, Neg. LLF: 39423595.342479184
Iteration: 4, Func. Count: 52, Neg. LLF: 142.80997977627183
Iteration: 5, Func. Count: 65, Neg. LLF: 102.22816468024426
Iteration: 6, Func. Count: 78, Neg. LLF: 98.18811352980322
Iteration: 7, Func. Count: 91, Neg. LLF: 94.81894692522975
Iteration: 8, Func. Count: 104, Neg. LLF: 91.70692807144012
Iteration: 9, Func. Count: 116, Neg. LLF: 91.39941970199132
Iteration: 10, Func. Count: 128, Neg. LLF: 91.39582148800142
Iteration: 11, Func. Count: 141, Neg. LLF: 91.26427284802807
Iteration: 12, Func. Count: 153, Neg. LLF: 91.15584555152275
Iteration: 13, Func. Count: 165, Neg. LLF: 91.07208373774043
Iteration: 14, Func. Count: 177, Neg. LLF: 91.02236870308276
Iteration: 15, Func. Count: 189, Neg. LLF: 90.99628240174398
Iteration: 16, Func. Count: 201, Neg. LLF: 90.99223405549579
Iteration: 17, Func. Count: 213, Neg. LLF: 90.99207036451222
Iteration: 18, Func. Count: 225, Neg. LLF: 90.99206904516463
Iteration: 19, Func. Count: 236, Neg. LLF: 90.99206915701599
Optimization terminated successfully (Exit mode 0)
Current function value: 90.99206904516463
Iterations: 19
Function evaluations: 236
Gradient evaluations: 19
Iteration: 1, Func. Count: 14, Neg. LLF: 94.69175527505408
Iteration: 2, Func. Count: 28, Neg. LLF: 15459324.50923489
Iteration: 3, Func. Count: 42, Neg. LLF: 12510728.091630807
Iteration: 4, Func. Count: 56, Neg. LLF: 120.3846100786999
Iteration: 5, Func. Count: 70, Neg. LLF: 101.50000274364506
Iteration: 6, Func. Count: 84, Neg. LLF: 95.52394856642084
Iteration: 7, Func. Count: 98, Neg. LLF: 92.05151502931385
Iteration: 8, Func. Count: 112, Neg. LLF: 91.41407523568928
Iteration: 9, Func. Count: 125, Neg. LLF: 91.37701887509228
Iteration: 10, Func. Count: 138, Neg. LLF: 91.35972261567296
Iteration: 11, Func. Count: 151, Neg. LLF: 91.35238568779828
Iteration: 12, Func. Count: 164, Neg. LLF: 91.35169051250955
Iteration: 13, Func. Count: 177, Neg. LLF: 91.3514400250647
Iteration: 14, Func. Count: 190, Neg. LLF: 91.35092310470733
Iteration: 15, Func. Count: 203, Neg. LLF: 91.35079694813359
Iteration: 16, Func. Count: 216, Neg. LLF: 91.35071084031753
Iteration: 17, Func. Count: 229, Neg. LLF: 91.35070417625298
Iteration: 18, Func. Count: 241, Neg. LLF: 91.35070420603466
Optimization terminated successfully (Exit mode 0)
Current function value: 91.35070417625298
Iterations: 18
Function evaluations: 241
Gradient evaluations: 18
Iteration: 1, Func. Count: 15, Neg. LLF: 94.85409367445823
Iteration: 2, Func. Count: 30, Neg. LLF: 10867903.391785419
Iteration: 3, Func. Count: 45, Neg. LLF: 12487615.005685145
Iteration: 4, Func. Count: 60, Neg. LLF: 217.18743188076928
Iteration: 5, Func. Count: 75, Neg. LLF: 1075.138715727929
Iteration: 6, Func. Count: 90, Neg. LLF: 117.43743143921212
Iteration: 7, Func. Count: 105, Neg. LLF: 91.33791803761669
Iteration: 8, Func. Count: 119, Neg. LLF: 90.9666998492124
Iteration: 9, Func. Count: 133, Neg. LLF: 92.2180566717067
Iteration: 10, Func. Count: 149, Neg. LLF: 91.12257340651901
Iteration: 11, Func. Count: 164, Neg. LLF: 91.74474585577309
Iteration: 12, Func. Count: 179, Neg. LLF: 90.6136961719542
Iteration: 13, Func. Count: 193, Neg. LLF: 90.56534987700141
Iteration: 14, Func. Count: 207, Neg. LLF: 90.56094271938792
Iteration: 15, Func. Count: 221, Neg. LLF: 90.56029806948759
Iteration: 16, Func. Count: 235, Neg. LLF: 90.56009816961867
Iteration: 17, Func. Count: 249, Neg. LLF: 90.56008099401929
Iteration: 18, Func. Count: 262, Neg. LLF: 90.56008096933292
Optimization terminated successfully (Exit mode 0)
Current function value: 90.56008099401929
Iterations: 18
Function evaluations: 262
Gradient evaluations: 18
Iteration: 1, Func. Count: 16, Neg. LLF: 94.61446439724794
Iteration: 2, Func. Count: 32, Neg. LLF: 11690439.999450678
Iteration: 3, Func. Count: 48, Neg. LLF: 12480386.730587672
Iteration: 4, Func. Count: 64, Neg. LLF: 275.32198413996366
Iteration: 5, Func. Count: 80, Neg. LLF: 227.45685753306415
Iteration: 6, Func. Count: 96, Neg. LLF: 115.68921018643209
Iteration: 7, Func. Count: 112, Neg. LLF: 92.52238227553943
Iteration: 8, Func. Count: 128, Neg. LLF: 91.18222589056515
Iteration: 9, Func. Count: 143, Neg. LLF: 90.93508527264353
Iteration: 10, Func. Count: 158, Neg. LLF: 90.68972765122129
Iteration: 11, Func. Count: 173, Neg. LLF: 91.02536648997662
Iteration: 12, Func. Count: 189, Neg. LLF: 90.63870996551606
Iteration: 13, Func. Count: 205, Neg. LLF: 90.56960209975522
Iteration: 14, Func. Count: 220, Neg. LLF: 90.57430428016383
Iteration: 15, Func. Count: 236, Neg. LLF: 90.56016643845325
Iteration: 16, Func. Count: 251, Neg. LLF: 90.5601042167943
Iteration: 17, Func. Count: 266, Neg. LLF: 90.56008122265479
Iteration: 18, Func. Count: 280, Neg. LLF: 90.56008129557335
Optimization terminated successfully (Exit mode 0)
Current function value: 90.56008122265479
Iterations: 18
Function evaluations: 280
Gradient evaluations: 18
Iteration: 1, Func. Count: 6, Neg. LLF: 122.00566785349575
Iteration: 2, Func. Count: 13, Neg. LLF: 520153912.78566396
Iteration: 3, Func. Count: 19, Neg. LLF: 12206382.199833717
Iteration: 4, Func. Count: 25, Neg. LLF: 11342185.89228895
Iteration: 5, Func. Count: 31, Neg. LLF: 191.28515880123516
Iteration: 6, Func. Count: 37, Neg. LLF: 93.74376201833773
Iteration: 7, Func. Count: 43, Neg. LLF: 92.18352591157402
Iteration: 8, Func. Count: 48, Neg. LLF: 92.14269831055154
Iteration: 9, Func. Count: 53, Neg. LLF: 92.08989702219792
Iteration: 10, Func. Count: 58, Neg. LLF: 92.00838551178587
Iteration: 11, Func. Count: 63, Neg. LLF: 91.96948062135735
Iteration: 12, Func. Count: 68, Neg. LLF: 91.96418720541422
Iteration: 13, Func. Count: 73, Neg. LLF: 91.96400562922993
Iteration: 14, Func. Count: 78, Neg. LLF: 91.9640003626269
Iteration: 15, Func. Count: 82, Neg. LLF: 91.96400036262365
Optimization terminated successfully (Exit mode 0)
Current function value: 91.9640003626269
Iterations: 15
Function evaluations: 82
Gradient evaluations: 15
Iteration: 1, Func. Count: 5, Neg. LLF: 123.914172123092
Iteration: 2, Func. Count: 11, Neg. LLF: 116.14369648492114
Iteration: 3, Func. Count: 16, Neg. LLF: 103.17797034830018
Iteration: 4, Func. Count: 20, Neg. LLF: 102.2090395834272
Iteration: 5, Func. Count: 24, Neg. LLF: 102.18589203773249
Iteration: 6, Func. Count: 28, Neg. LLF: 102.1680738066296
Iteration: 7, Func. Count: 32, Neg. LLF: 102.16787799282406
Iteration: 8, Func. Count: 36, Neg. LLF: 102.1678704247549
Iteration: 9, Func. Count: 39, Neg. LLF: 102.1678704546998
Optimization terminated successfully (Exit mode 0)
Current function value: 102.1678704247549
Iterations: 9
Function evaluations: 39
Gradient evaluations: 9
Iteration: 1, Func. Count: 6, Neg. LLF: 109.38524507237739
Iteration: 2, Func. Count: 15, Neg. LLF: 260.20345301998
Iteration: 3, Func. Count: 21, Neg. LLF: 363.1804945241495
Iteration: 4, Func. Count: 27, Neg. LLF: 98.46192064891731
Iteration: 5, Func. Count: 32, Neg. LLF: 126.04428821307117
Iteration: 6, Func. Count: 39, Neg. LLF: 98.28276885584785
Iteration: 7, Func. Count: 44, Neg. LLF: 98.21644278413417
Iteration: 8, Func. Count: 49, Neg. LLF: 98.16993290102519
Iteration: 9, Func. Count: 54, Neg. LLF: 98.16636027094663
Iteration: 10, Func. Count: 59, Neg. LLF: 98.16592795775539
Iteration: 11, Func. Count: 64, Neg. LLF: 98.16592342161715
Iteration: 12, Func. Count: 68, Neg. LLF: 98.16592340168856
Optimization terminated successfully (Exit mode 0)
Current function value: 98.16592342161715
Iterations: 12
Function evaluations: 68
Gradient evaluations: 12
Iteration: 1, Func. Count: 7, Neg. LLF: 177.1079579110156
Iteration: 2, Func. Count: 17, Neg. LLF: 104.5097569153426
Iteration: 3, Func. Count: 24, Neg. LLF: 98.31983422581763
Iteration: 4, Func. Count: 30, Neg. LLF: 98.34675368366457
Iteration: 5, Func. Count: 37, Neg. LLF: 98.29816713962016
Iteration: 6, Func. Count: 44, Neg. LLF: 98.20516792716877
Iteration: 7, Func. Count: 50, Neg. LLF: 98.20490870075409
Iteration: 8, Func. Count: 56, Neg. LLF: 98.20445255287126
Iteration: 9, Func. Count: 62, Neg. LLF: 98.20354110519477
Iteration: 10, Func. Count: 68, Neg. LLF: 98.2012413950141
Iteration: 11, Func. Count: 74, Neg. LLF: 98.18040304516404
Iteration: 12, Func. Count: 80, Neg. LLF: 98.14445659276437
Iteration: 13, Func. Count: 86, Neg. LLF: 98.14406145896896
Iteration: 14, Func. Count: 92, Neg. LLF: 98.14367519067885
Iteration: 15, Func. Count: 98, Neg. LLF: 98.14329944221795
Iteration: 16, Func. Count: 104, Neg. LLF: 110.65438668492152
Iteration: 17, Func. Count: 113, Neg. LLF: 98.14338927375809
Iteration: 18, Func. Count: 120, Neg. LLF: 98.14330393209664
Iteration: 19, Func. Count: 126, Neg. LLF: 98.14327483530836
Optimization terminated successfully (Exit mode 0)
Current function value: 98.14327534249689
Iterations: 20
Function evaluations: 126
Gradient evaluations: 19
Iteration: 1, Func. Count: 8, Neg. LLF: 178.65430543488674
Iteration: 2, Func. Count: 20, Neg. LLF: 106.81479983991925
Iteration: 3, Func. Count: 28, Neg. LLF: 98.31053125191252
Iteration: 4, Func. Count: 35, Neg. LLF: 98.23093097132316
Iteration: 5, Func. Count: 42, Neg. LLF: 98.21606560418553
Iteration: 6, Func. Count: 49, Neg. LLF: 98.20848281273305
Iteration: 7, Func. Count: 56, Neg. LLF: 98.2084524860607
Iteration: 8, Func. Count: 62, Neg. LLF: 98.20845267292849
Optimization terminated successfully (Exit mode 0)
Current function value: 98.2084524860607
Iterations: 8
Function evaluations: 62
Gradient evaluations: 8
Iteration: 1, Func. Count: 9, Neg. LLF: 185.9917981136653
Iteration: 2, Func. Count: 22, Neg. LLF: 108.32080044946612
Iteration: 3, Func. Count: 31, Neg. LLF: 98.36705535386186
Iteration: 4, Func. Count: 39, Neg. LLF: 98.35049183334243
Iteration: 5, Func. Count: 47, Neg. LLF: 98.33900992653214
Iteration: 6, Func. Count: 55, Neg. LLF: 98.29796546651185
Iteration: 7, Func. Count: 63, Neg. LLF: 98.22360533880159
Iteration: 8, Func. Count: 71, Neg. LLF: 98.2150000597571
Iteration: 9, Func. Count: 79, Neg. LLF: 98.20139686672148
Iteration: 10, Func. Count: 87, Neg. LLF: 98.20108085406177
Iteration: 11, Func. Count: 95, Neg. LLF: 98.19145078151644
Iteration: 12, Func. Count: 103, Neg. LLF: 98.1909170331187
Iteration: 13, Func. Count: 111, Neg. LLF: 98.15269891079382
Iteration: 14, Func. Count: 119, Neg. LLF: 318.5319166950712
Iteration: 15, Func. Count: 131, Neg. LLF: 131.99107168613244
Iteration: 16, Func. Count: 141, Neg. LLF: 783.1084525327012
Iteration: 17, Func. Count: 159, Neg. LLF: 108.69246900511754
Iteration: 18, Func. Count: 169, Neg. LLF: 99.3831601287793
Iteration: 19, Func. Count: 179, Neg. LLF: 98.14327537184994
Iteration: 20, Func. Count: 186, Neg. LLF: 98.14327487393129
Optimization terminated successfully (Exit mode 0)
Current function value: 98.14327537184994
Iterations: 21
Function evaluations: 186
Gradient evaluations: 20
Iteration: 1, Func. Count: 6, Neg. LLF: 119.03075133935188
Iteration: 2, Func. Count: 13, Neg. LLF: 418578948.9264861
Iteration: 3, Func. Count: 19, Neg. LLF: 11039432.398867315
Iteration: 4, Func. Count: 25, Neg. LLF: 4848295.1339171035
Iteration: 5, Func. Count: 31, Neg. LLF: 103.18565322800319
Iteration: 6, Func. Count: 37, Neg. LLF: 101.38877222747769
Iteration: 7, Func. Count: 43, Neg. LLF: 95.81887846169984
Iteration: 8, Func. Count: 48, Neg. LLF: 95.75054265033614
Iteration: 9, Func. Count: 53, Neg. LLF: 95.73489275928762
Iteration: 10, Func. Count: 58, Neg. LLF: 95.69511832747658
Iteration: 11, Func. Count: 63, Neg. LLF: 95.64770116246514
Iteration: 12, Func. Count: 68, Neg. LLF: 95.64310624848741
Iteration: 13, Func. Count: 73, Neg. LLF: 95.64280758073431
Iteration: 14, Func. Count: 78, Neg. LLF: 95.64278979745998
Iteration: 15, Func. Count: 82, Neg. LLF: 95.64278979747377
Optimization terminated successfully (Exit mode 0)
Current function value: 95.64278979745998
Iterations: 15
Function evaluations: 82
Gradient evaluations: 15
Iteration: 1, Func. Count: 7, Neg. LLF: 103.33709112747434
Iteration: 2, Func. Count: 17, Neg. LLF: 254.53861352383066
Iteration: 3, Func. Count: 24, Neg. LLF: 1870873.5148461922
Iteration: 4, Func. Count: 31, Neg. LLF: 97.67731457093933
Iteration: 5, Func. Count: 38, Neg. LLF: 96.48885033213035
Iteration: 6, Func. Count: 44, Neg. LLF: 96.20582388631931
Iteration: 7, Func. Count: 50, Neg. LLF: 104.91368483807001
Iteration: 8, Func. Count: 57, Neg. LLF: 95.78314038087547
Iteration: 9, Func. Count: 63, Neg. LLF: 95.7471432215054
Iteration: 10, Func. Count: 69, Neg. LLF: 95.73299535046351
Iteration: 11, Func. Count: 75, Neg. LLF: 95.71677977251441
Iteration: 12, Func. Count: 81, Neg. LLF: 95.705441427713
Iteration: 13, Func. Count: 87, Neg. LLF: 95.66969824221538
Iteration: 14, Func. Count: 93, Neg. LLF: 95.6489318970162
Iteration: 15, Func. Count: 99, Neg. LLF: 95.6434700518708
Iteration: 16, Func. Count: 105, Neg. LLF: 95.64287182758206
Iteration: 17, Func. Count: 111, Neg. LLF: 95.64279416558492
Iteration: 18, Func. Count: 117, Neg. LLF: 95.64278951872409
Iteration: 19, Func. Count: 122, Neg. LLF: 95.64278958863754
Optimization terminated successfully (Exit mode 0)
Current function value: 95.64278951872409
Iterations: 19
Function evaluations: 122
Gradient evaluations: 19
Iteration: 1, Func. Count: 8, Neg. LLF: 143.34073928832802
Iteration: 2, Func. Count: 16, Neg. LLF: 150.051190803517
Iteration: 3, Func. Count: 24, Neg. LLF: 102.15955225502472
Iteration: 4, Func. Count: 33, Neg. LLF: 102.26478502803327
Iteration: 5, Func. Count: 41, Neg. LLF: 96.14015985940773
Iteration: 6, Func. Count: 48, Neg. LLF: 95.67837737870776
Iteration: 7, Func. Count: 55, Neg. LLF: 95.72422115300489
Iteration: 8, Func. Count: 63, Neg. LLF: 95.85713613726047
Iteration: 9, Func. Count: 71, Neg. LLF: 95.57206219454348
Iteration: 10, Func. Count: 78, Neg. LLF: 95.56292754583927
Iteration: 11, Func. Count: 85, Neg. LLF: 95.56170749826924
Iteration: 12, Func. Count: 92, Neg. LLF: 95.56120902406815
Iteration: 13, Func. Count: 99, Neg. LLF: 95.56114088098339
Iteration: 14, Func. Count: 106, Neg. LLF: 95.56112978497403
Iteration: 15, Func. Count: 113, Neg. LLF: 95.56112904907765
Optimization terminated successfully (Exit mode 0)
Current function value: 95.56112904907765
Iterations: 15
Function evaluations: 113
Gradient evaluations: 15
Iteration: 1, Func. Count: 9, Neg. LLF: 114.72990915181278
Iteration: 2, Func. Count: 21, Neg. LLF: 50769644.62786133
Iteration: 3, Func. Count: 30, Neg. LLF: 13865319.545287615
Iteration: 4, Func. Count: 39, Neg. LLF: 96.32413423734465
Iteration: 5, Func. Count: 47, Neg. LLF: 121.14557584927958
Iteration: 6, Func. Count: 56, Neg. LLF: 95.06716222052484
Iteration: 7, Func. Count: 64, Neg. LLF: 96.1232680660373
Iteration: 8, Func. Count: 74, Neg. LLF: 95.15421108780282
Iteration: 9, Func. Count: 83, Neg. LLF: 95.8424104889857
Iteration: 10, Func. Count: 92, Neg. LLF: 94.68178366631672
Iteration: 11, Func. Count: 100, Neg. LLF: 94.58557367201526
Iteration: 12, Func. Count: 108, Neg. LLF: 94.50547008321482
Iteration: 13, Func. Count: 116, Neg. LLF: 94.46434105905132
Iteration: 14, Func. Count: 124, Neg. LLF: 94.42885284323587
Iteration: 15, Func. Count: 132, Neg. LLF: 94.40510570799367
Iteration: 16, Func. Count: 140, Neg. LLF: 94.3998407839308
Iteration: 17, Func. Count: 148, Neg. LLF: 94.39853872378019
Iteration: 18, Func. Count: 156, Neg. LLF: 94.39843184590057
Iteration: 19, Func. Count: 164, Neg. LLF: 94.39842281284449
Iteration: 20, Func. Count: 172, Neg. LLF: 94.39842115334733
Iteration: 21, Func. Count: 179, Neg. LLF: 94.39842115336165
Optimization terminated successfully (Exit mode 0)
Current function value: 94.39842115334733
Iterations: 21
Function evaluations: 179
Gradient evaluations: 21
Iteration: 1, Func. Count: 10, Neg. LLF: 116.85098049433874
Iteration: 2, Func. Count: 23, Neg. LLF: 58029690.58008186
Iteration: 3, Func. Count: 33, Neg. LLF: 12122121.995636191
Iteration: 4, Func. Count: 43, Neg. LLF: 95.99756668145076
Iteration: 5, Func. Count: 52, Neg. LLF: 96.3723082613692
Iteration: 6, Func. Count: 62, Neg. LLF: 98.36974243050702
Iteration: 7, Func. Count: 73, Neg. LLF: 96.76386074315008
Iteration: 8, Func. Count: 83, Neg. LLF: 94.73523111022945
Iteration: 9, Func. Count: 92, Neg. LLF: 94.61080861623358
Iteration: 10, Func. Count: 101, Neg. LLF: 94.49883599485256
Iteration: 11, Func. Count: 110, Neg. LLF: 94.42389083146948
Iteration: 12, Func. Count: 119, Neg. LLF: 94.40489748945853
Iteration: 13, Func. Count: 128, Neg. LLF: 94.39993367865092
Iteration: 14, Func. Count: 137, Neg. LLF: 94.39876976601161
Iteration: 15, Func. Count: 146, Neg. LLF: 94.39850811080727
Iteration: 16, Func. Count: 155, Neg. LLF: 94.39842938099662
Iteration: 17, Func. Count: 164, Neg. LLF: 94.39842138661973
Iteration: 18, Func. Count: 172, Neg. LLF: 94.39842143220184
Optimization terminated successfully (Exit mode 0)
Current function value: 94.39842138661973
Iterations: 18
Function evaluations: 172
Gradient evaluations: 18
Iteration: 1, Func. Count: 7, Neg. LLF: 124.72802102328484
Iteration: 2, Func. Count: 15, Neg. LLF: 538757947.7771076
Iteration: 3, Func. Count: 22, Neg. LLF: 12220565.528476026
Iteration: 4, Func. Count: 29, Neg. LLF: 5186823.592977884
Iteration: 5, Func. Count: 36, Neg. LLF: 4823212.776869174
Iteration: 6, Func. Count: 43, Neg. LLF: 97.88826905109724
Iteration: 7, Func. Count: 50, Neg. LLF: 156.1266015554257
Iteration: 8, Func. Count: 57, Neg. LLF: 95.75466129030055
Iteration: 9, Func. Count: 63, Neg. LLF: 95.73827312263077
Iteration: 10, Func. Count: 69, Neg. LLF: 95.67621752210607
Iteration: 11, Func. Count: 75, Neg. LLF: 95.64645383664333
Iteration: 12, Func. Count: 81, Neg. LLF: 95.64468108232037
Iteration: 13, Func. Count: 87, Neg. LLF: 95.64279229754193
Iteration: 14, Func. Count: 93, Neg. LLF: 95.6427893469351
Iteration: 15, Func. Count: 98, Neg. LLF: 95.64278940800072
Optimization terminated successfully (Exit mode 0)
Current function value: 95.6427893469351
Iterations: 15
Function evaluations: 98
Gradient evaluations: 15
Iteration: 1, Func. Count: 8, Neg. LLF: 102.4661201573023
Iteration: 2, Func. Count: 16, Neg. LLF: 98.88556813016199
Iteration: 3, Func. Count: 25, Neg. LLF: 117.0682730615172
Iteration: 4, Func. Count: 33, Neg. LLF: 103.09449494865038
Iteration: 5, Func. Count: 41, Neg. LLF: 95.91718360089824
Iteration: 6, Func. Count: 48, Neg. LLF: 95.70080985453981
Iteration: 7, Func. Count: 55, Neg. LLF: 95.67409373140146
Iteration: 8, Func. Count: 62, Neg. LLF: 95.659359904882
Iteration: 9, Func. Count: 69, Neg. LLF: 95.64543166851759
Iteration: 10, Func. Count: 76, Neg. LLF: 95.64371883619916
Iteration: 11, Func. Count: 83, Neg. LLF: 95.64315440538839
Iteration: 12, Func. Count: 90, Neg. LLF: 95.64284748041517
Iteration: 13, Func. Count: 97, Neg. LLF: 95.64279607107036
Iteration: 14, Func. Count: 104, Neg. LLF: 95.64278955008282
Iteration: 15, Func. Count: 110, Neg. LLF: 95.6427896199824
Optimization terminated successfully (Exit mode 0)
Current function value: 95.64278955008282
Iterations: 15
Function evaluations: 110
Gradient evaluations: 15
Iteration: 1, Func. Count: 9, Neg. LLF: 119.18734739474016
Iteration: 2, Func. Count: 22, Neg. LLF: 639.4608795781603
Iteration: 3, Func. Count: 31, Neg. LLF: 415.31967631510565
Iteration: 4, Func. Count: 40, Neg. LLF: 121.86912477570698
Iteration: 5, Func. Count: 50, Neg. LLF: 102.21992644130023
Iteration: 6, Func. Count: 59, Neg. LLF: 97.85770248921105
Iteration: 7, Func. Count: 68, Neg. LLF: 96.8894523098331
Iteration: 8, Func. Count: 76, Neg. LLF: 96.7796587525667
Iteration: 9, Func. Count: 85, Neg. LLF: 96.11957800429744
Iteration: 10, Func. Count: 93, Neg. LLF: 96.04564375826699
Iteration: 11, Func. Count: 102, Neg. LLF: 95.6914574486532
Iteration: 12, Func. Count: 110, Neg. LLF: 95.60966735255428
Iteration: 13, Func. Count: 118, Neg. LLF: 95.57848827601305
Iteration: 14, Func. Count: 126, Neg. LLF: 95.5733473924184
Iteration: 15, Func. Count: 134, Neg. LLF: 95.57235379082277
Iteration: 16, Func. Count: 142, Neg. LLF: 95.5719411384583
Iteration: 17, Func. Count: 150, Neg. LLF: 95.57104630902093
Iteration: 18, Func. Count: 158, Neg. LLF: 95.56932015258572
Iteration: 19, Func. Count: 166, Neg. LLF: 95.56641721373535
Iteration: 20, Func. Count: 174, Neg. LLF: 95.56332624708575
Iteration: 21, Func. Count: 182, Neg. LLF: 95.56149071144002
Iteration: 22, Func. Count: 190, Neg. LLF: 95.56114907668702
Iteration: 23, Func. Count: 198, Neg. LLF: 95.56113029205112
Iteration: 24, Func. Count: 206, Neg. LLF: 95.56112912228662
Iteration: 25, Func. Count: 213, Neg. LLF: 95.56112912222683
Optimization terminated successfully (Exit mode 0)
Current function value: 95.56112912228662
Iterations: 25
Function evaluations: 213
Gradient evaluations: 25
Iteration: 1, Func. Count: 10, Neg. LLF: 123.17787912532552
Iteration: 2, Func. Count: 24, Neg. LLF: 36208843.7242922
Iteration: 3, Func. Count: 34, Neg. LLF: 11114248.633882433
Iteration: 4, Func. Count: 44, Neg. LLF: 102.47363316537405
Iteration: 5, Func. Count: 54, Neg. LLF: 99.12099795768765
Iteration: 6, Func. Count: 64, Neg. LLF: 95.15941220897017
Iteration: 7, Func. Count: 73, Neg. LLF: 97.20827256101632
Iteration: 8, Func. Count: 83, Neg. LLF: 94.82884757591509
Iteration: 9, Func. Count: 92, Neg. LLF: 94.73228045149983
Iteration: 10, Func. Count: 101, Neg. LLF: 94.6977002272639
Iteration: 11, Func. Count: 110, Neg. LLF: 94.63947014320814
Iteration: 12, Func. Count: 119, Neg. LLF: 94.5444374497714
Iteration: 13, Func. Count: 128, Neg. LLF: 94.47736368771318
Iteration: 14, Func. Count: 137, Neg. LLF: 94.42360423602697
Iteration: 15, Func. Count: 146, Neg. LLF: 94.40444922575746
Iteration: 16, Func. Count: 155, Neg. LLF: 94.39877814115201
Iteration: 17, Func. Count: 164, Neg. LLF: 94.39845398328123
Iteration: 18, Func. Count: 173, Neg. LLF: 94.39842803676925
Iteration: 19, Func. Count: 182, Neg. LLF: 94.39842154762256
Iteration: 20, Func. Count: 190, Neg. LLF: 94.39842154764324
Optimization terminated successfully (Exit mode 0)
Current function value: 94.39842154762256
Iterations: 20
Function evaluations: 190
Gradient evaluations: 20
Iteration: 1, Func. Count: 11, Neg. LLF: 125.9177437189182
Iteration: 2, Func. Count: 26, Neg. LLF: 39055819.901729785
Iteration: 3, Func. Count: 37, Neg. LLF: 12334436.90889491
Iteration: 4, Func. Count: 48, Neg. LLF: 138.78091186984943
Iteration: 5, Func. Count: 59, Neg. LLF: 96.98896817196474
Iteration: 6, Func. Count: 70, Neg. LLF: 95.04462123773872
Iteration: 7, Func. Count: 80, Neg. LLF: 95.86355806628146
Iteration: 8, Func. Count: 91, Neg. LLF: 95.49984013238502
Iteration: 9, Func. Count: 102, Neg. LLF: 94.76525903888164
Iteration: 10, Func. Count: 112, Neg. LLF: 94.70834669217456
Iteration: 11, Func. Count: 122, Neg. LLF: 94.66977474641601
Iteration: 12, Func. Count: 132, Neg. LLF: 94.51998236652837
Iteration: 13, Func. Count: 142, Neg. LLF: 94.43742744023072
Iteration: 14, Func. Count: 152, Neg. LLF: 94.40896119969051
Iteration: 15, Func. Count: 162, Neg. LLF: 94.39967610387411
Iteration: 16, Func. Count: 172, Neg. LLF: 94.39854027163845
Iteration: 17, Func. Count: 182, Neg. LLF: 94.39843804830195
Iteration: 18, Func. Count: 192, Neg. LLF: 94.3984229237079
Iteration: 19, Func. Count: 202, Neg. LLF: 94.39842106818536
Iteration: 20, Func. Count: 211, Neg. LLF: 94.39842111380356
Optimization terminated successfully (Exit mode 0)
Current function value: 94.39842106818536
Iterations: 20
Function evaluations: 211
Gradient evaluations: 20
Iteration: 1, Func. Count: 8, Neg. LLF: 133.59944026800514
Iteration: 2, Func. Count: 18, Neg. LLF: 522693790.7722841
Iteration: 3, Func. Count: 26, Neg. LLF: 12164924.83189937
Iteration: 4, Func. Count: 34, Neg. LLF: 4171297.507496005
Iteration: 5, Func. Count: 42, Neg. LLF: 108.97915820329824
Iteration: 6, Func. Count: 50, Neg. LLF: 96.56608500604914
Iteration: 7, Func. Count: 57, Neg. LLF: 98.48307059665571
Iteration: 8, Func. Count: 65, Neg. LLF: 97.49743942089248
Iteration: 9, Func. Count: 73, Neg. LLF: 96.10551872001102
Iteration: 10, Func. Count: 80, Neg. LLF: 95.87290097120913
Iteration: 11, Func. Count: 87, Neg. LLF: 95.69925087590791
Iteration: 12, Func. Count: 94, Neg. LLF: 95.55905466874624
Iteration: 13, Func. Count: 101, Neg. LLF: 95.53379927850412
Iteration: 14, Func. Count: 108, Neg. LLF: 95.5295112152675
Iteration: 15, Func. Count: 115, Neg. LLF: 95.52929895300555
Iteration: 16, Func. Count: 122, Neg. LLF: 95.52929435972894
Iteration: 17, Func. Count: 129, Neg. LLF: 95.5292933084954
Iteration: 18, Func. Count: 135, Neg. LLF: 95.52929330853365
Optimization terminated successfully (Exit mode 0)
Current function value: 95.5292933084954
Iterations: 18
Function evaluations: 135
Gradient evaluations: 18
Iteration: 1, Func. Count: 9, Neg. LLF: 97.74047686564158
Iteration: 2, Func. Count: 18, Neg. LLF: 290.8743078226953
Iteration: 3, Func. Count: 27, Neg. LLF: 99.45440087249109
Iteration: 4, Func. Count: 36, Neg. LLF: 98.09402650263883
Iteration: 5, Func. Count: 45, Neg. LLF: 99.31684883020722
Iteration: 6, Func. Count: 54, Neg. LLF: 96.47276044478149
Iteration: 7, Func. Count: 63, Neg. LLF: 95.71206000782415
Iteration: 8, Func. Count: 71, Neg. LLF: 95.5915831251581
Iteration: 9, Func. Count: 79, Neg. LLF: 95.57906557428583
Iteration: 10, Func. Count: 88, Neg. LLF: 95.53785772691289
Iteration: 11, Func. Count: 96, Neg. LLF: 95.53176157421875
Iteration: 12, Func. Count: 104, Neg. LLF: 95.53033141155993
Iteration: 13, Func. Count: 112, Neg. LLF: 95.52929956526869
Iteration: 14, Func. Count: 120, Neg. LLF: 95.52929315575473
Iteration: 15, Func. Count: 127, Neg. LLF: 95.52929321048919
Optimization terminated successfully (Exit mode 0)
Current function value: 95.52929315575473
Iterations: 15
Function evaluations: 127
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 119.38443630024747
Iteration: 2, Func. Count: 24, Neg. LLF: 625.4285011322454
Iteration: 3, Func. Count: 34, Neg. LLF: 409.8328065290928
Iteration: 4, Func. Count: 44, Neg. LLF: 121.81398778953118
Iteration: 5, Func. Count: 55, Neg. LLF: 102.54504177304713
Iteration: 6, Func. Count: 65, Neg. LLF: 97.85695077747027
Iteration: 7, Func. Count: 75, Neg. LLF: 96.85293142128982
Iteration: 8, Func. Count: 84, Neg. LLF: 97.33135254734583
Iteration: 9, Func. Count: 94, Neg. LLF: 96.71362142642147
Iteration: 10, Func. Count: 104, Neg. LLF: 95.83834113522762
Iteration: 11, Func. Count: 113, Neg. LLF: 95.64864494924825
Iteration: 12, Func. Count: 122, Neg. LLF: 95.54491714351352
Iteration: 13, Func. Count: 131, Neg. LLF: 95.53663066546643
Iteration: 14, Func. Count: 140, Neg. LLF: 95.53567529067203
Iteration: 15, Func. Count: 149, Neg. LLF: 95.535444439093
Iteration: 16, Func. Count: 158, Neg. LLF: 95.53481120903108
Iteration: 17, Func. Count: 167, Neg. LLF: 95.53442155684718
Iteration: 18, Func. Count: 176, Neg. LLF: 95.53336977346596
Iteration: 19, Func. Count: 185, Neg. LLF: 95.53196249952303
Iteration: 20, Func. Count: 194, Neg. LLF: 95.53035363640618
Iteration: 21, Func. Count: 203, Neg. LLF: 95.52948198462319
Iteration: 22, Func. Count: 212, Neg. LLF: 95.52930553922332
Iteration: 23, Func. Count: 221, Neg. LLF: 95.52929362270483
Iteration: 24, Func. Count: 229, Neg. LLF: 95.52929363286792
Optimization terminated successfully (Exit mode 0)
Current function value: 95.52929362270483
Iterations: 24
Function evaluations: 229
Gradient evaluations: 24
Iteration: 1, Func. Count: 11, Neg. LLF: 123.32428437475362
Iteration: 2, Func. Count: 26, Neg. LLF: 36128285.89612698
Iteration: 3, Func. Count: 37, Neg. LLF: 11174397.043039156
Iteration: 4, Func. Count: 48, Neg. LLF: 102.35837180594066
Iteration: 5, Func. Count: 59, Neg. LLF: 98.92722771777063
Iteration: 6, Func. Count: 70, Neg. LLF: 95.13612753715464
Iteration: 7, Func. Count: 80, Neg. LLF: 97.6176257320606
Iteration: 8, Func. Count: 91, Neg. LLF: 94.8405357311122
Iteration: 9, Func. Count: 102, Neg. LLF: 94.67525077931757
Iteration: 10, Func. Count: 112, Neg. LLF: 94.63982368999392
Iteration: 11, Func. Count: 122, Neg. LLF: 94.57566287140054
Iteration: 12, Func. Count: 132, Neg. LLF: 94.52989513648562
Iteration: 13, Func. Count: 142, Neg. LLF: 94.45668443947132
Iteration: 14, Func. Count: 152, Neg. LLF: 94.39892327064763
Iteration: 15, Func. Count: 162, Neg. LLF: 94.3661937148479
Iteration: 16, Func. Count: 172, Neg. LLF: 94.35499465148582
Iteration: 17, Func. Count: 182, Neg. LLF: 94.353731727503
Iteration: 18, Func. Count: 192, Neg. LLF: 94.353543574197
Iteration: 19, Func. Count: 202, Neg. LLF: 94.35350141909737
Iteration: 20, Func. Count: 212, Neg. LLF: 94.35349980945885
Iteration: 21, Func. Count: 221, Neg. LLF: 94.35349980950072
Optimization terminated successfully (Exit mode 0)
Current function value: 94.35349980945885
Iterations: 21
Function evaluations: 221
Gradient evaluations: 21
Iteration: 1, Func. Count: 12, Neg. LLF: 126.02764548823409
Iteration: 2, Func. Count: 28, Neg. LLF: 38959594.29892702
Iteration: 3, Func. Count: 40, Neg. LLF: 12415385.995473173
Iteration: 4, Func. Count: 52, Neg. LLF: 138.3853074465511
Iteration: 5, Func. Count: 64, Neg. LLF: 96.96541885963411
Iteration: 6, Func. Count: 76, Neg. LLF: 95.03009350286756
Iteration: 7, Func. Count: 87, Neg. LLF: 96.2472725839827
Iteration: 8, Func. Count: 99, Neg. LLF: 96.41333826335018
Iteration: 9, Func. Count: 111, Neg. LLF: 94.6999338232011
Iteration: 10, Func. Count: 122, Neg. LLF: 94.64778898739988
Iteration: 11, Func. Count: 133, Neg. LLF: 94.60315908226492
Iteration: 12, Func. Count: 144, Neg. LLF: 94.48671307251954
Iteration: 13, Func. Count: 155, Neg. LLF: 94.41135948450429
Iteration: 14, Func. Count: 166, Neg. LLF: 94.36244159549864
Iteration: 15, Func. Count: 177, Neg. LLF: 94.35441454633452
Iteration: 16, Func. Count: 188, Neg. LLF: 94.35355726097298
Iteration: 17, Func. Count: 199, Neg. LLF: 94.3535040399882
Iteration: 18, Func. Count: 210, Neg. LLF: 94.35350041049128
Iteration: 19, Func. Count: 221, Neg. LLF: 94.3534996296692
Optimization terminated successfully (Exit mode 0)
Current function value: 94.3534996296692
Iterations: 19
Function evaluations: 221
Gradient evaluations: 19
Iteration: 1, Func. Count: 5, Neg. LLF: 138.82395008723944
Iteration: 2, Func. Count: 11, Neg. LLF: 156.60239781314453
Iteration: 3, Func. Count: 16, Neg. LLF: 102.5603313645604
Iteration: 4, Func. Count: 20, Neg. LLF: 102.30576247589121
Iteration: 5, Func. Count: 24, Neg. LLF: 102.2052410743706
Iteration: 6, Func. Count: 28, Neg. LLF: 102.17198529235827
Iteration: 7, Func. Count: 32, Neg. LLF: 102.16930817331487
Iteration: 8, Func. Count: 36, Neg. LLF: 102.16810746079598
Iteration: 9, Func. Count: 40, Neg. LLF: 102.16789208182469
Iteration: 10, Func. Count: 44, Neg. LLF: 102.16787052641614
Iteration: 11, Func. Count: 47, Neg. LLF: 102.16787062458384
Optimization terminated successfully (Exit mode 0)
Current function value: 102.16787052641614
Iterations: 11
Function evaluations: 47
Gradient evaluations: 11
Iteration: 1, Func. Count: 6, Neg. LLF: 118.03801077554908
Iteration: 2, Func. Count: 16, Neg. LLF: 4089.4113270041826
Iteration: 3, Func. Count: 23, Neg. LLF: 99.18155337205017
Iteration: 4, Func. Count: 28, Neg. LLF: 99.17499888334059
Iteration: 5, Func. Count: 34, Neg. LLF: 98.78338594851407
Iteration: 6, Func. Count: 40, Neg. LLF: 102.93339637140095
Iteration: 7, Func. Count: 46, Neg. LLF: 98.16882466590565
Iteration: 8, Func. Count: 51, Neg. LLF: 98.20974472083837
Iteration: 9, Func. Count: 57, Neg. LLF: 98.14333980171999
Iteration: 10, Func. Count: 62, Neg. LLF: 98.14327589615782
Iteration: 11, Func. Count: 66, Neg. LLF: 98.14327640714467
Optimization terminated successfully (Exit mode 0)
Current function value: 98.14327589615782
Iterations: 11
Function evaluations: 66
Gradient evaluations: 11
Iteration: 1, Func. Count: 7, Neg. LLF: 176.39128005451553
Iteration: 2, Func. Count: 17, Neg. LLF: 106.45438649323894
Iteration: 3, Func. Count: 24, Neg. LLF: 98.33106691724272
Iteration: 4, Func. Count: 30, Neg. LLF: 98.29288905624058
Iteration: 5, Func. Count: 37, Neg. LLF: 98.25484553130285
Iteration: 6, Func. Count: 44, Neg. LLF: 98.20666405593225
Iteration: 7, Func. Count: 50, Neg. LLF: 98.20564277024937
Iteration: 8, Func. Count: 56, Neg. LLF: 98.20533867346052
Iteration: 9, Func. Count: 62, Neg. LLF: 98.20389729645503
Iteration: 10, Func. Count: 68, Neg. LLF: 98.20174444682388
Iteration: 11, Func. Count: 74, Neg. LLF: 98.18847622713866
Iteration: 12, Func. Count: 80, Neg. LLF: 98.14328850590776
Iteration: 13, Func. Count: 86, Neg. LLF: 107.02651789397586
Iteration: 14, Func. Count: 95, Neg. LLF: 98.14354686926566
Iteration: 15, Func. Count: 102, Neg. LLF: 98.14327619098898
Iteration: 16, Func. Count: 108, Neg. LLF: 98.14327535932445
Optimization terminated successfully (Exit mode 0)
Current function value: 98.14327535932445
Iterations: 17
Function evaluations: 108
Gradient evaluations: 16
Iteration: 1, Func. Count: 8, Neg. LLF: 180.41783623581324
Iteration: 2, Func. Count: 20, Neg. LLF: 108.31133514566115
Iteration: 3, Func. Count: 28, Neg. LLF: 98.35363123697798
Iteration: 4, Func. Count: 35, Neg. LLF: 98.26746363884307
Iteration: 5, Func. Count: 42, Neg. LLF: 98.2220725730127
Iteration: 6, Func. Count: 49, Neg. LLF: 98.20856509963325
Iteration: 7, Func. Count: 56, Neg. LLF: 98.20845284500174
Iteration: 8, Func. Count: 62, Neg. LLF: 98.2084530321854
Optimization terminated successfully (Exit mode 0)
Current function value: 98.20845284500174
Iterations: 8
Function evaluations: 62
Gradient evaluations: 8
Iteration: 1, Func. Count: 9, Neg. LLF: 189.5008253078928
Iteration: 2, Func. Count: 22, Neg. LLF: 109.28065091488527
Iteration: 3, Func. Count: 31, Neg. LLF: 98.38292241360713
Iteration: 4, Func. Count: 39, Neg. LLF: 98.35646707667195
Iteration: 5, Func. Count: 47, Neg. LLF: 98.33897853006873
Iteration: 6, Func. Count: 55, Neg. LLF: 98.3212295089141
Iteration: 7, Func. Count: 63, Neg. LLF: 98.27541269550613
Iteration: 8, Func. Count: 71, Neg. LLF: 98.23853943240118
Iteration: 9, Func. Count: 79, Neg. LLF: 98.2118636980457
Iteration: 10, Func. Count: 87, Neg. LLF: 98.2013773668298
Iteration: 11, Func. Count: 95, Neg. LLF: 98.20091732774867
Iteration: 12, Func. Count: 103, Neg. LLF: 98.19856363921336
Iteration: 13, Func. Count: 111, Neg. LLF: 98.18682606449003
Iteration: 14, Func. Count: 119, Neg. LLF: 98.16825220242441
Iteration: 15, Func. Count: 127, Neg. LLF: 98.14655234084498
Iteration: 16, Func. Count: 135, Neg. LLF: 98.14348175819624
Iteration: 17, Func. Count: 143, Neg. LLF: 98.14327536813157
Iteration: 18, Func. Count: 150, Neg. LLF: 98.1432748701672
Optimization terminated successfully (Exit mode 0)
Current function value: 98.14327536813157
Iterations: 18
Function evaluations: 150
Gradient evaluations: 18
Iteration: 1, Func. Count: 6, Neg. LLF: 139.48399938008922
Iteration: 2, Func. Count: 13, Neg. LLF: 158.98513356058368
Iteration: 3, Func. Count: 19, Neg. LLF: 102.55053505725563
Iteration: 4, Func. Count: 24, Neg. LLF: 102.29993171787511
Iteration: 5, Func. Count: 29, Neg. LLF: 102.2035546220815
Iteration: 6, Func. Count: 34, Neg. LLF: 102.17347578353055
Iteration: 7, Func. Count: 39, Neg. LLF: 102.17014053059465
Iteration: 8, Func. Count: 44, Neg. LLF: 102.16795962981867
Iteration: 9, Func. Count: 49, Neg. LLF: 102.16787495922425
Iteration: 10, Func. Count: 54, Neg. LLF: 102.16787027338988
Iteration: 11, Func. Count: 58, Neg. LLF: 102.16787030334868
Optimization terminated successfully (Exit mode 0)
Current function value: 102.16787027338988
Iterations: 11
Function evaluations: 58
Gradient evaluations: 11
Iteration: 1, Func. Count: 7, Neg. LLF: 110.54731617869186
Iteration: 2, Func. Count: 17, Neg. LLF: 314.7612713414677
Iteration: 3, Func. Count: 24, Neg. LLF: 236.46159500692443
Iteration: 4, Func. Count: 31, Neg. LLF: 98.38947382117833
Iteration: 5, Func. Count: 37, Neg. LLF: 102.37251064868623
Iteration: 6, Func. Count: 44, Neg. LLF: 98.25912813317882
Iteration: 7, Func. Count: 50, Neg. LLF: 99.36373947144727
Iteration: 8, Func. Count: 57, Neg. LLF: 98.16165263577659
Iteration: 9, Func. Count: 63, Neg. LLF: 98.1573830943848
Iteration: 10, Func. Count: 70, Neg. LLF: 98.14578965419275
Iteration: 11, Func. Count: 76, Neg. LLF: 98.14578089873923
Iteration: 12, Func. Count: 82, Neg. LLF: 98.14577992588575
Optimization terminated successfully (Exit mode 0)
Current function value: 98.14577992588575
Iterations: 12
Function evaluations: 82
Gradient evaluations: 12
Iteration: 1, Func. Count: 8, Neg. LLF: 169.69290428713555
Iteration: 2, Func. Count: 19, Neg. LLF: 107.98979071835471
Iteration: 3, Func. Count: 27, Neg. LLF: 98.88461247186821
Iteration: 4, Func. Count: 34, Neg. LLF: 97.92653893151342
Iteration: 5, Func. Count: 41, Neg. LLF: 97.34069723610835
Iteration: 6, Func. Count: 48, Neg. LLF: 97.14053692399669
Iteration: 7, Func. Count: 55, Neg. LLF: 97.08145096682367
Iteration: 8, Func. Count: 62, Neg. LLF: 97.07752134610497
Iteration: 9, Func. Count: 69, Neg. LLF: 97.0774521922169
Iteration: 10, Func. Count: 76, Neg. LLF: 97.07744057731983
Iteration: 11, Func. Count: 82, Neg. LLF: 97.07744036510609
Optimization terminated successfully (Exit mode 0)
Current function value: 97.07744057731983
Iterations: 11
Function evaluations: 82
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 183.41000537830502
Iteration: 2, Func. Count: 22, Neg. LLF: 108.58437893813979
Iteration: 3, Func. Count: 31, Neg. LLF: 98.38863531202827
Iteration: 4, Func. Count: 39, Neg. LLF: 98.27156071602114
Iteration: 5, Func. Count: 47, Neg. LLF: 98.1469158916394
Iteration: 6, Func. Count: 55, Neg. LLF: 97.0843552501374
Iteration: 7, Func. Count: 63, Neg. LLF: 96.98277096363158
Iteration: 8, Func. Count: 71, Neg. LLF: 96.92797216145894
Iteration: 9, Func. Count: 79, Neg. LLF: 96.90913320135535
Iteration: 10, Func. Count: 87, Neg. LLF: 96.90905020073117
Iteration: 11, Func. Count: 95, Neg. LLF: 96.90903928395096
Iteration: 12, Func. Count: 103, Neg. LLF: 96.90901981889738
Iteration: 13, Func. Count: 110, Neg. LLF: 96.90901958350983
Optimization terminated successfully (Exit mode 0)
Current function value: 96.90901981889738
Iterations: 13
Function evaluations: 110
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 191.93065398510075
Iteration: 2, Func. Count: 24, Neg. LLF: 109.72549164706906
Iteration: 3, Func. Count: 34, Neg. LLF: 98.3935016874011
Iteration: 4, Func. Count: 43, Neg. LLF: 98.35773324174501
Iteration: 5, Func. Count: 52, Neg. LLF: 98.3705757810655
Iteration: 6, Func. Count: 62, Neg. LLF: 98.33515535252589
Iteration: 7, Func. Count: 71, Neg. LLF: 98.31373392630306
Iteration: 8, Func. Count: 80, Neg. LLF: 98.30006774950652
Iteration: 9, Func. Count: 89, Neg. LLF: 98.29497341275754
Iteration: 10, Func. Count: 98, Neg. LLF: 98.29311756671991
Iteration: 11, Func. Count: 107, Neg. LLF: 98.29307038936248
Iteration: 12, Func. Count: 116, Neg. LLF: 98.29306859816963
Iteration: 13, Func. Count: 124, Neg. LLF: 98.29306845638577
Optimization terminated successfully (Exit mode 0)
Current function value: 98.29306859816963
Iterations: 13
Function evaluations: 124
Gradient evaluations: 13
Iteration: 1, Func. Count: 7, Neg. LLF: 107.64899349504843
Iteration: 2, Func. Count: 15, Neg. LLF: 12135242.849774482
Iteration: 3, Func. Count: 22, Neg. LLF: 12798101.243212858
Iteration: 4, Func. Count: 29, Neg. LLF: 5731710.333777445
Iteration: 5, Func. Count: 36, Neg. LLF: 92262.90070570305
Iteration: 6, Func. Count: 43, Neg. LLF: 460.5235777919693
Iteration: 7, Func. Count: 50, Neg. LLF: 4409.259779994107
Iteration: 8, Func. Count: 57, Neg. LLF: 98.50201117138984
Iteration: 9, Func. Count: 64, Neg. LLF: 96.20517178443986
Iteration: 10, Func. Count: 71, Neg. LLF: 95.5680771251572
Iteration: 11, Func. Count: 78, Neg. LLF: 95.4091132627293
Iteration: 12, Func. Count: 84, Neg. LLF: 95.2669255613354
Iteration: 13, Func. Count: 90, Neg. LLF: 95.22304789842626
Iteration: 14, Func. Count: 96, Neg. LLF: 95.2087850204494
Iteration: 15, Func. Count: 102, Neg. LLF: 95.20677849150658
Iteration: 16, Func. Count: 108, Neg. LLF: 95.20481729565138
Iteration: 17, Func. Count: 114, Neg. LLF: 95.2037635832488
Iteration: 18, Func. Count: 120, Neg. LLF: 95.20335270166377
Iteration: 19, Func. Count: 126, Neg. LLF: 95.20332098597342
Iteration: 20, Func. Count: 132, Neg. LLF: 95.2033198908408
Iteration: 21, Func. Count: 137, Neg. LLF: 95.20331989016611
Optimization terminated successfully (Exit mode 0)
Current function value: 95.2033198908408
Iterations: 21
Function evaluations: 137
Gradient evaluations: 21
Iteration: 1, Func. Count: 8, Neg. LLF: 106.47269003307763
Iteration: 2, Func. Count: 18, Neg. LLF: 43037268.88178218
Iteration: 3, Func. Count: 26, Neg. LLF: 15166442.915470136
Iteration: 4, Func. Count: 34, Neg. LLF: 97.00048796036944
Iteration: 5, Func. Count: 42, Neg. LLF: 99.55938309525972
Iteration: 6, Func. Count: 50, Neg. LLF: 98.3535942872881
Iteration: 7, Func. Count: 58, Neg. LLF: 95.63272595490413
Iteration: 8, Func. Count: 65, Neg. LLF: 96.18117559034943
Iteration: 9, Func. Count: 74, Neg. LLF: 96.26168774511096
Iteration: 10, Func. Count: 82, Neg. LLF: 95.59973847145169
Iteration: 11, Func. Count: 90, Neg. LLF: 95.30833459089534
Iteration: 12, Func. Count: 97, Neg. LLF: 95.27382310115563
Iteration: 13, Func. Count: 104, Neg. LLF: 95.25973718914514
Iteration: 14, Func. Count: 111, Neg. LLF: 95.2316855219561
Iteration: 15, Func. Count: 118, Neg. LLF: 95.20642087458408
Iteration: 16, Func. Count: 125, Neg. LLF: 95.20105817433581
Iteration: 17, Func. Count: 132, Neg. LLF: 95.20061224534608
Iteration: 18, Func. Count: 139, Neg. LLF: 95.20054748115548
Iteration: 19, Func. Count: 146, Neg. LLF: 95.20053958231058
Iteration: 20, Func. Count: 152, Neg. LLF: 95.20053958115028
Optimization terminated successfully (Exit mode 0)
Current function value: 95.20053958231058
Iterations: 20
Function evaluations: 152
Gradient evaluations: 20
Iteration: 1, Func. Count: 9, Neg. LLF: 179.16167880453148
Iteration: 2, Func. Count: 18, Neg. LLF: 10003822.885417521
Iteration: 3, Func. Count: 27, Neg. LLF: 6212086.933275361
Iteration: 4, Func. Count: 36, Neg. LLF: 98.73601048878136
Iteration: 5, Func. Count: 45, Neg. LLF: 98.4019038339654
Iteration: 6, Func. Count: 54, Neg. LLF: 128.13634362641847
Iteration: 7, Func. Count: 63, Neg. LLF: 94.87330898552817
Iteration: 8, Func. Count: 71, Neg. LLF: 94.79368463687537
Iteration: 9, Func. Count: 79, Neg. LLF: 94.70615731091263
Iteration: 10, Func. Count: 87, Neg. LLF: 94.62618634365384
Iteration: 11, Func. Count: 95, Neg. LLF: 94.59952358460102
Iteration: 12, Func. Count: 103, Neg. LLF: 94.59132351735883
Iteration: 13, Func. Count: 111, Neg. LLF: 94.59072050318105
Iteration: 14, Func. Count: 119, Neg. LLF: 94.59071380265857
Iteration: 15, Func. Count: 126, Neg. LLF: 94.59071380270834
Optimization terminated successfully (Exit mode 0)
Current function value: 94.59071380265857
Iterations: 15
Function evaluations: 126
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 112.25151278231337
Iteration: 2, Func. Count: 23, Neg. LLF: 70737077.97384684
Iteration: 3, Func. Count: 33, Neg. LLF: 12824235.541000746
Iteration: 4, Func. Count: 43, Neg. LLF: 164.3949510307359
Iteration: 5, Func. Count: 53, Neg. LLF: 96.55365698336219
Iteration: 6, Func. Count: 63, Neg. LLF: 96.85057581103501
Iteration: 7, Func. Count: 73, Neg. LLF: 94.85428643198706
Iteration: 8, Func. Count: 82, Neg. LLF: 94.90982402451093
Iteration: 9, Func. Count: 92, Neg. LLF: 94.68445606005668
Iteration: 10, Func. Count: 101, Neg. LLF: 94.5534164052964
Iteration: 11, Func. Count: 110, Neg. LLF: 94.71201072189005
Iteration: 12, Func. Count: 120, Neg. LLF: 94.50660224945501
Iteration: 13, Func. Count: 130, Neg. LLF: 94.30809763433753
Iteration: 14, Func. Count: 140, Neg. LLF: 94.23029965919419
Iteration: 15, Func. Count: 150, Neg. LLF: 94.2341821544864
Iteration: 16, Func. Count: 160, Neg. LLF: 94.21158189727191
Iteration: 17, Func. Count: 169, Neg. LLF: 94.2079431759763
Iteration: 18, Func. Count: 178, Neg. LLF: 94.20751253911811
Iteration: 19, Func. Count: 187, Neg. LLF: 94.20748354891828
Iteration: 20, Func. Count: 196, Neg. LLF: 94.20748119185671
Iteration: 21, Func. Count: 204, Neg. LLF: 94.20748119191613
Optimization terminated successfully (Exit mode 0)
Current function value: 94.20748119185671
Iterations: 21
Function evaluations: 204
Gradient evaluations: 21
Iteration: 1, Func. Count: 11, Neg. LLF: 114.64999643194541
Iteration: 2, Func. Count: 25, Neg. LLF: 75192182.42724699
Iteration: 3, Func. Count: 36, Neg. LLF: 14187673.774373278
Iteration: 4, Func. Count: 47, Neg. LLF: 179.21612565485214
Iteration: 5, Func. Count: 58, Neg. LLF: 96.5760609461064
Iteration: 6, Func. Count: 69, Neg. LLF: 96.10837125383924
Iteration: 7, Func. Count: 80, Neg. LLF: 95.42995357632545
Iteration: 8, Func. Count: 91, Neg. LLF: 94.6143407772968
Iteration: 9, Func. Count: 101, Neg. LLF: 94.79373859647175
Iteration: 10, Func. Count: 112, Neg. LLF: 94.70827148460762
Iteration: 11, Func. Count: 123, Neg. LLF: 94.38505505868244
Iteration: 12, Func. Count: 133, Neg. LLF: 94.48210819931668
Iteration: 13, Func. Count: 144, Neg. LLF: 94.27686710232366
Iteration: 14, Func. Count: 154, Neg. LLF: 94.23429851189206
Iteration: 15, Func. Count: 164, Neg. LLF: 94.21646753780234
Iteration: 16, Func. Count: 174, Neg. LLF: 94.2081432529412
Iteration: 17, Func. Count: 184, Neg. LLF: 94.20750297591856
Iteration: 18, Func. Count: 194, Neg. LLF: 94.20748299128616
Iteration: 19, Func. Count: 204, Neg. LLF: 94.20748119610734
Iteration: 20, Func. Count: 213, Neg. LLF: 94.20748126080245
Optimization terminated successfully (Exit mode 0)
Current function value: 94.20748119610734
Iterations: 20
Function evaluations: 213
Gradient evaluations: 20
Iteration: 1, Func. Count: 8, Neg. LLF: 109.95458539755846
Iteration: 2, Func. Count: 17, Neg. LLF: 3962156.805026659
Iteration: 3, Func. Count: 25, Neg. LLF: 12118048.378308073
Iteration: 4, Func. Count: 33, Neg. LLF: 5464157.863188085
Iteration: 5, Func. Count: 41, Neg. LLF: 6855.103298436426
Iteration: 6, Func. Count: 49, Neg. LLF: 114.06774329609065
Iteration: 7, Func. Count: 57, Neg. LLF: 389.4829698885827
Iteration: 8, Func. Count: 65, Neg. LLF: 110.15186874274995
Iteration: 9, Func. Count: 73, Neg. LLF: 97.36788202226121
Iteration: 10, Func. Count: 81, Neg. LLF: 98.7237690075699
Iteration: 11, Func. Count: 89, Neg. LLF: 95.64389397664952
Iteration: 12, Func. Count: 97, Neg. LLF: 95.43547246631996
Iteration: 13, Func. Count: 104, Neg. LLF: 95.35103000084118
Iteration: 14, Func. Count: 111, Neg. LLF: 95.25800085972477
Iteration: 15, Func. Count: 118, Neg. LLF: 95.23140643059999
Iteration: 16, Func. Count: 125, Neg. LLF: 95.21758737470348
Iteration: 17, Func. Count: 132, Neg. LLF: 95.20906804926302
Iteration: 18, Func. Count: 139, Neg. LLF: 95.20462253616411
Iteration: 19, Func. Count: 146, Neg. LLF: 95.20334305631647
Iteration: 20, Func. Count: 153, Neg. LLF: 95.20332105724846
Iteration: 21, Func. Count: 160, Neg. LLF: 95.20331992757454
Iteration: 22, Func. Count: 166, Neg. LLF: 95.20332003550412
Optimization terminated successfully (Exit mode 0)
Current function value: 95.20331992757454
Iterations: 22
Function evaluations: 166
Gradient evaluations: 22
Iteration: 1, Func. Count: 9, Neg. LLF: 111.77638871751005
Iteration: 2, Func. Count: 18, Neg. LLF: 142.48347341425963
Iteration: 3, Func. Count: 28, Neg. LLF: 96.07447537046755
Iteration: 4, Func. Count: 36, Neg. LLF: 98.7735100368327
Iteration: 5, Func. Count: 45, Neg. LLF: 100.22885375074786
Iteration: 6, Func. Count: 55, Neg. LLF: 95.95914490775986
Iteration: 7, Func. Count: 64, Neg. LLF: 96.64016408604917
Iteration: 8, Func. Count: 73, Neg. LLF: 95.37966683522569
Iteration: 9, Func. Count: 81, Neg. LLF: 95.26880323341051
Iteration: 10, Func. Count: 89, Neg. LLF: 95.23395353097834
Iteration: 11, Func. Count: 97, Neg. LLF: 95.21065239415661
Iteration: 12, Func. Count: 105, Neg. LLF: 95.20163015641467
Iteration: 13, Func. Count: 113, Neg. LLF: 95.20057490498466
Iteration: 14, Func. Count: 121, Neg. LLF: 95.20054566836173
Iteration: 15, Func. Count: 129, Neg. LLF: 95.20053986972346
Iteration: 16, Func. Count: 137, Neg. LLF: 95.20053923343791
Optimization terminated successfully (Exit mode 0)
Current function value: 95.20053923343791
Iterations: 16
Function evaluations: 137
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 102.75774043668669
Iteration: 2, Func. Count: 20, Neg. LLF: 206.45048241968166
Iteration: 3, Func. Count: 31, Neg. LLF: 331.0864123796171
Iteration: 4, Func. Count: 41, Neg. LLF: 196.5930484335264
Iteration: 5, Func. Count: 51, Neg. LLF: 95.37840608171885
Iteration: 6, Func. Count: 60, Neg. LLF: 97.97742622267454
Iteration: 7, Func. Count: 70, Neg. LLF: 97.42102264388186
Iteration: 8, Func. Count: 81, Neg. LLF: 97.16395498149888
Iteration: 9, Func. Count: 91, Neg. LLF: 94.83761330918105
Iteration: 10, Func. Count: 101, Neg. LLF: 94.59802744662349
Iteration: 11, Func. Count: 110, Neg. LLF: 94.59365389656939
Iteration: 12, Func. Count: 119, Neg. LLF: 94.59233747347596
Iteration: 13, Func. Count: 128, Neg. LLF: 94.59107387454908
Iteration: 14, Func. Count: 137, Neg. LLF: 94.59077774570359
Iteration: 15, Func. Count: 146, Neg. LLF: 94.59072868798778
Iteration: 16, Func. Count: 155, Neg. LLF: 94.59071690211583
Iteration: 17, Func. Count: 164, Neg. LLF: 94.59071384491412
Iteration: 18, Func. Count: 172, Neg. LLF: 94.5907138448714
Optimization terminated successfully (Exit mode 0)
Current function value: 94.59071384491412
Iterations: 18
Function evaluations: 172
Gradient evaluations: 18
Iteration: 1, Func. Count: 11, Neg. LLF: 123.47355534895915
Iteration: 2, Func. Count: 26, Neg. LLF: 37995989.04729779
Iteration: 3, Func. Count: 37, Neg. LLF: 11583431.241289783
Iteration: 4, Func. Count: 48, Neg. LLF: 250.07067866266817
Iteration: 5, Func. Count: 59, Neg. LLF: 98.09475328801715
Iteration: 6, Func. Count: 70, Neg. LLF: 135.9153446399707
Iteration: 7, Func. Count: 81, Neg. LLF: 94.9967875741489
Iteration: 8, Func. Count: 91, Neg. LLF: 94.97077457241747
Iteration: 9, Func. Count: 102, Neg. LLF: 94.7747766997773
Iteration: 10, Func. Count: 112, Neg. LLF: 94.70796545822674
Iteration: 11, Func. Count: 122, Neg. LLF: 94.74273019762312
Iteration: 12, Func. Count: 133, Neg. LLF: 94.66787129558743
Iteration: 13, Func. Count: 144, Neg. LLF: 94.42510394592232
Iteration: 14, Func. Count: 154, Neg. LLF: 94.31870148157543
Iteration: 15, Func. Count: 164, Neg. LLF: 94.23187462280352
Iteration: 16, Func. Count: 174, Neg. LLF: 94.21519737882481
Iteration: 17, Func. Count: 184, Neg. LLF: 94.20829238093079
Iteration: 18, Func. Count: 194, Neg. LLF: 94.20750452219896
Iteration: 19, Func. Count: 204, Neg. LLF: 94.20748384722324
Iteration: 20, Func. Count: 214, Neg. LLF: 94.20748161749566
Iteration: 21, Func. Count: 223, Neg. LLF: 94.20748161759151
Optimization terminated successfully (Exit mode 0)
Current function value: 94.20748161749566
Iterations: 21
Function evaluations: 223
Gradient evaluations: 21
Iteration: 1, Func. Count: 12, Neg. LLF: 125.99759266622722
Iteration: 2, Func. Count: 28, Neg. LLF: 41214483.861454956
Iteration: 3, Func. Count: 40, Neg. LLF: 12066006.954086173
Iteration: 4, Func. Count: 52, Neg. LLF: 165.76766853942053
Iteration: 5, Func. Count: 64, Neg. LLF: 96.64660337144043
Iteration: 6, Func. Count: 76, Neg. LLF: 98.39034921603445
Iteration: 7, Func. Count: 88, Neg. LLF: 95.24458850547646
Iteration: 8, Func. Count: 99, Neg. LLF: 95.07444218618637
Iteration: 9, Func. Count: 111, Neg. LLF: 96.1631226220894
Iteration: 10, Func. Count: 123, Neg. LLF: 94.7630404704061
Iteration: 11, Func. Count: 134, Neg. LLF: 94.69992705053308
Iteration: 12, Func. Count: 145, Neg. LLF: 94.75271014475999
Iteration: 13, Func. Count: 157, Neg. LLF: 94.66548464244192
Iteration: 14, Func. Count: 169, Neg. LLF: 94.35720106938234
Iteration: 15, Func. Count: 180, Neg. LLF: 94.28333958619857
Iteration: 16, Func. Count: 191, Neg. LLF: 94.2452250664189
Iteration: 17, Func. Count: 202, Neg. LLF: 94.22154732844461
Iteration: 18, Func. Count: 213, Neg. LLF: 94.2086361095922
Iteration: 19, Func. Count: 224, Neg. LLF: 94.20771766641352
Iteration: 20, Func. Count: 235, Neg. LLF: 94.20750398100073
Iteration: 21, Func. Count: 246, Neg. LLF: 94.2074823338917
Iteration: 22, Func. Count: 257, Neg. LLF: 94.20748123849084
Iteration: 23, Func. Count: 267, Neg. LLF: 94.20748130319069
Optimization terminated successfully (Exit mode 0)
Current function value: 94.20748123849084
Iterations: 23
Function evaluations: 267
Gradient evaluations: 23
Iteration: 1, Func. Count: 9, Neg. LLF: 109.09553551230502
Iteration: 2, Func. Count: 19, Neg. LLF: 12841805.075572941
Iteration: 3, Func. Count: 28, Neg. LLF: 10491080.023166964
Iteration: 4, Func. Count: 37, Neg. LLF: 5723722.164378651
Iteration: 5, Func. Count: 46, Neg. LLF: 6672668.854067598
Iteration: 6, Func. Count: 55, Neg. LLF: 6125844.069569602
Iteration: 7, Func. Count: 64, Neg. LLF: 96.86600505035828
Iteration: 8, Func. Count: 73, Neg. LLF: 97.59657873492343
Iteration: 9, Func. Count: 82, Neg. LLF: 97.75166242681976
Iteration: 10, Func. Count: 91, Neg. LLF: 95.58782467208214
Iteration: 11, Func. Count: 100, Neg. LLF: 95.46546954480418
Iteration: 12, Func. Count: 108, Neg. LLF: 95.30332105939789
Iteration: 13, Func. Count: 116, Neg. LLF: 95.2339541843873
Iteration: 14, Func. Count: 124, Neg. LLF: 95.17566964643422
Iteration: 15, Func. Count: 132, Neg. LLF: 95.16058117492419
Iteration: 16, Func. Count: 140, Neg. LLF: 95.15576734673188
Iteration: 17, Func. Count: 148, Neg. LLF: 95.15471313910464
Iteration: 18, Func. Count: 156, Neg. LLF: 95.15451925893834
Iteration: 19, Func. Count: 164, Neg. LLF: 95.15449386363059
Iteration: 20, Func. Count: 172, Neg. LLF: 95.15448349601347
Iteration: 21, Func. Count: 179, Neg. LLF: 95.15448349544504
Optimization terminated successfully (Exit mode 0)
Current function value: 95.15448349601347
Iterations: 21
Function evaluations: 179
Gradient evaluations: 21
Iteration: 1, Func. Count: 10, Neg. LLF: 100.16059411735311
Iteration: 2, Func. Count: 20, Neg. LLF: 126.24977193593035
Iteration: 3, Func. Count: 30, Neg. LLF: 96.91424681501438
Iteration: 4, Func. Count: 40, Neg. LLF: 101.25599425302897
Iteration: 5, Func. Count: 50, Neg. LLF: 102.6812624787386
Iteration: 6, Func. Count: 60, Neg. LLF: 95.33454707079886
Iteration: 7, Func. Count: 69, Neg. LLF: 95.8013390973536
Iteration: 8, Func. Count: 79, Neg. LLF: 98.05531313838756
Iteration: 9, Func. Count: 89, Neg. LLF: 95.19132407298197
Iteration: 10, Func. Count: 98, Neg. LLF: 95.17264763039931
Iteration: 11, Func. Count: 107, Neg. LLF: 95.16352907322124
Iteration: 12, Func. Count: 116, Neg. LLF: 95.1548744697844
Iteration: 13, Func. Count: 125, Neg. LLF: 95.15452310003738
Iteration: 14, Func. Count: 134, Neg. LLF: 95.1544848198624
Iteration: 15, Func. Count: 143, Neg. LLF: 95.15448331942663
Iteration: 16, Func. Count: 151, Neg. LLF: 95.1544833691985
Optimization terminated successfully (Exit mode 0)
Current function value: 95.15448331942663
Iterations: 16
Function evaluations: 151
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 119.56517071680855
Iteration: 2, Func. Count: 26, Neg. LLF: 34433121.18532127
Iteration: 3, Func. Count: 37, Neg. LLF: 3775.678699927213
Iteration: 4, Func. Count: 48, Neg. LLF: 195.79536434455227
Iteration: 5, Func. Count: 60, Neg. LLF: 98.80560111112604
Iteration: 6, Func. Count: 71, Neg. LLF: 119.09940155389634
Iteration: 7, Func. Count: 82, Neg. LLF: 95.84569293814616
Iteration: 8, Func. Count: 92, Neg. LLF: 97.05805606761945
Iteration: 9, Func. Count: 103, Neg. LLF: 96.10797860052607
Iteration: 10, Func. Count: 114, Neg. LLF: 94.83097445364191
Iteration: 11, Func. Count: 124, Neg. LLF: 95.01038321104822
Iteration: 12, Func. Count: 135, Neg. LLF: 94.75664413970505
Iteration: 13, Func. Count: 145, Neg. LLF: 94.70817105054566
Iteration: 14, Func. Count: 155, Neg. LLF: 94.67214826268057
Iteration: 15, Func. Count: 165, Neg. LLF: 94.66301690995792
Iteration: 16, Func. Count: 175, Neg. LLF: 94.65900050360848
Iteration: 17, Func. Count: 185, Neg. LLF: 94.6448731943592
Iteration: 18, Func. Count: 195, Neg. LLF: 94.6272267071702
Iteration: 19, Func. Count: 205, Neg. LLF: 94.6061017345524
Iteration: 20, Func. Count: 215, Neg. LLF: 94.59472953754315
Iteration: 21, Func. Count: 225, Neg. LLF: 94.59123762155829
Iteration: 22, Func. Count: 235, Neg. LLF: 94.5907676223256
Iteration: 23, Func. Count: 245, Neg. LLF: 94.59071683819774
Iteration: 24, Func. Count: 255, Neg. LLF: 94.59071370550323
Iteration: 25, Func. Count: 264, Neg. LLF: 94.59071370549896
Optimization terminated successfully (Exit mode 0)
Current function value: 94.59071370550323
Iterations: 25
Function evaluations: 264
Gradient evaluations: 25
Iteration: 1, Func. Count: 12, Neg. LLF: 123.61067006663288
Iteration: 2, Func. Count: 28, Neg. LLF: 37915887.61869757
Iteration: 3, Func. Count: 40, Neg. LLF: 11626199.674599446
Iteration: 4, Func. Count: 52, Neg. LLF: 246.3958547713246
Iteration: 5, Func. Count: 64, Neg. LLF: 98.0374343618911
Iteration: 6, Func. Count: 76, Neg. LLF: 137.0573842934985
Iteration: 7, Func. Count: 88, Neg. LLF: 94.99255423542971
Iteration: 8, Func. Count: 99, Neg. LLF: 94.97291969244881
Iteration: 9, Func. Count: 111, Neg. LLF: 94.77218339483346
Iteration: 10, Func. Count: 122, Neg. LLF: 94.70343691596872
Iteration: 11, Func. Count: 133, Neg. LLF: 94.68683799818568
Iteration: 12, Func. Count: 145, Neg. LLF: 94.67509443255021
Iteration: 13, Func. Count: 157, Neg. LLF: 94.93133331365479
Iteration: 14, Func. Count: 170, Neg. LLF: 94.30674363622973
Iteration: 15, Func. Count: 181, Neg. LLF: 94.20509358405174
Iteration: 16, Func. Count: 192, Neg. LLF: 94.1909121674277
Iteration: 17, Func. Count: 203, Neg. LLF: 94.1843482504827
Iteration: 18, Func. Count: 214, Neg. LLF: 94.18303944959193
Iteration: 19, Func. Count: 225, Neg. LLF: 94.1817964931234
Iteration: 20, Func. Count: 236, Neg. LLF: 94.18120465281366
Iteration: 21, Func. Count: 247, Neg. LLF: 94.18108031842554
Iteration: 22, Func. Count: 258, Neg. LLF: 94.18106800606407
Iteration: 23, Func. Count: 268, Neg. LLF: 94.18106800605626
Optimization terminated successfully (Exit mode 0)
Current function value: 94.18106800606407
Iterations: 23
Function evaluations: 268
Gradient evaluations: 23
Iteration: 1, Func. Count: 13, Neg. LLF: 126.1021045423962
Iteration: 2, Func. Count: 30, Neg. LLF: 41117581.22128039
Iteration: 3, Func. Count: 43, Neg. LLF: 12125317.101403529
Iteration: 4, Func. Count: 56, Neg. LLF: 163.51744118893345
Iteration: 5, Func. Count: 69, Neg. LLF: 96.6291162096369
Iteration: 6, Func. Count: 82, Neg. LLF: 98.12629969518099
Iteration: 7, Func. Count: 95, Neg. LLF: 95.4179461266745
Iteration: 8, Func. Count: 107, Neg. LLF: 95.14431578786976
Iteration: 9, Func. Count: 120, Neg. LLF: 96.58163146804968
Iteration: 10, Func. Count: 133, Neg. LLF: 94.75807612166476
Iteration: 11, Func. Count: 145, Neg. LLF: 94.67175357441577
Iteration: 12, Func. Count: 157, Neg. LLF: 94.71342114432609
Iteration: 13, Func. Count: 170, Neg. LLF: 94.61761641923874
Iteration: 14, Func. Count: 183, Neg. LLF: 94.51817697374304
Iteration: 15, Func. Count: 196, Neg. LLF: 94.32286073550223
Iteration: 16, Func. Count: 208, Neg. LLF: 94.30128665368578
Iteration: 17, Func. Count: 220, Neg. LLF: 94.42542007260279
Iteration: 18, Func. Count: 233, Neg. LLF: 94.21493366770979
Iteration: 19, Func. Count: 245, Neg. LLF: 94.20007430313485
Iteration: 20, Func. Count: 257, Neg. LLF: 94.18767043468857
Iteration: 21, Func. Count: 269, Neg. LLF: 94.18386835351437
Iteration: 22, Func. Count: 281, Neg. LLF: 94.18150754804189
Iteration: 23, Func. Count: 293, Neg. LLF: 94.18120110272922
Iteration: 24, Func. Count: 305, Neg. LLF: 94.18109152187269
Iteration: 25, Func. Count: 317, Neg. LLF: 94.18107069292112
Iteration: 26, Func. Count: 329, Neg. LLF: 94.1810679134553
Iteration: 27, Func. Count: 340, Neg. LLF: 94.18106797635352
Optimization terminated successfully (Exit mode 0)
Current function value: 94.1810679134553
Iterations: 27
Function evaluations: 340
Gradient evaluations: 27
Iteration: 1, Func. Count: 6, Neg. LLF: 123.55891795055837
Iteration: 2, Func. Count: 13, Neg. LLF: 186.94434914977984
Iteration: 3, Func. Count: 19, Neg. LLF: 700.0385584930555
Iteration: 4, Func. Count: 25, Neg. LLF: 109.9356018883292
Iteration: 5, Func. Count: 31, Neg. LLF: 97.81841097466518
Iteration: 6, Func. Count: 37, Neg. LLF: 96.76434912964959
Iteration: 7, Func. Count: 42, Neg. LLF: 100.95971242315483
Iteration: 8, Func. Count: 48, Neg. LLF: 96.90715759161723
Iteration: 9, Func. Count: 54, Neg. LLF: 96.62249564033074
Iteration: 10, Func. Count: 59, Neg. LLF: 96.60172913774778
Iteration: 11, Func. Count: 64, Neg. LLF: 96.60033716042284
Iteration: 12, Func. Count: 69, Neg. LLF: 96.60029166130424
Iteration: 13, Func. Count: 74, Neg. LLF: 96.60029068507747
Optimization terminated successfully (Exit mode 0)
Current function value: 96.60029068507747
Iterations: 13
Function evaluations: 74
Gradient evaluations: 13
Iteration: 1, Func. Count: 7, Neg. LLF: 115.4618230903229
Iteration: 2, Func. Count: 14, Neg. LLF: 169.69381086636685
Iteration: 3, Func. Count: 22, Neg. LLF: 107.72411475581522
Iteration: 4, Func. Count: 29, Neg. LLF: 97.36420498612678
Iteration: 5, Func. Count: 36, Neg. LLF: 96.75709614868089
Iteration: 6, Func. Count: 43, Neg. LLF: 96.27096663214533
Iteration: 7, Func. Count: 49, Neg. LLF: 96.27221015877207
Iteration: 8, Func. Count: 56, Neg. LLF: 96.24640263855113
Iteration: 9, Func. Count: 62, Neg. LLF: 96.24285691514223
Iteration: 10, Func. Count: 68, Neg. LLF: 96.24270239227663
Iteration: 11, Func. Count: 74, Neg. LLF: 96.24267512940848
Iteration: 12, Func. Count: 80, Neg. LLF: 96.24267381092722
Iteration: 13, Func. Count: 85, Neg. LLF: 96.24267381093767
Optimization terminated successfully (Exit mode 0)
Current function value: 96.24267381092722
Iterations: 13
Function evaluations: 85
Gradient evaluations: 13
Iteration: 1, Func. Count: 8, Neg. LLF: 100.05559949091915
Iteration: 2, Func. Count: 16, Neg. LLF: 149.21607068558274
Iteration: 3, Func. Count: 24, Neg. LLF: 114.89015983826111
Iteration: 4, Func. Count: 32, Neg. LLF: 96.65191433319828
Iteration: 5, Func. Count: 39, Neg. LLF: 96.33826593949475
Iteration: 6, Func. Count: 46, Neg. LLF: 96.30430103425812
Iteration: 7, Func. Count: 53, Neg. LLF: 96.25980452573017
Iteration: 8, Func. Count: 60, Neg. LLF: 96.24908886952903
Iteration: 9, Func. Count: 67, Neg. LLF: 96.24325364991677
Iteration: 10, Func. Count: 74, Neg. LLF: 96.24271972880187
Iteration: 11, Func. Count: 81, Neg. LLF: 96.24268026250469
Iteration: 12, Func. Count: 88, Neg. LLF: 96.24267385472226
Iteration: 13, Func. Count: 94, Neg. LLF: 96.24267393147473
Optimization terminated successfully (Exit mode 0)
Current function value: 96.24267385472226
Iterations: 13
Function evaluations: 94
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 97.21771207889569
Iteration: 2, Func. Count: 17, Neg. LLF: 128.85575774698182
Iteration: 3, Func. Count: 26, Neg. LLF: 100.44287957888497
Iteration: 4, Func. Count: 36, Neg. LLF: 1223.0111673778515
Iteration: 5, Func. Count: 45, Neg. LLF: 63821.17149565196
Iteration: 6, Func. Count: 54, Neg. LLF: 98.7128850554412
Iteration: 7, Func. Count: 63, Neg. LLF: 96.29081379458921
Iteration: 8, Func. Count: 72, Neg. LLF: 96.0510366343187
Iteration: 9, Func. Count: 80, Neg. LLF: 96.21459496794121
Iteration: 10, Func. Count: 89, Neg. LLF: 96.54792284966462
Iteration: 11, Func. Count: 99, Neg. LLF: 96.04428528266143
Iteration: 12, Func. Count: 107, Neg. LLF: 96.04358147821496
Iteration: 13, Func. Count: 115, Neg. LLF: 96.0434317306341
Iteration: 14, Func. Count: 123, Neg. LLF: 96.04342413444937
Iteration: 15, Func. Count: 130, Neg. LLF: 96.04342413442185
Optimization terminated successfully (Exit mode 0)
Current function value: 96.04342413444937
Iterations: 15
Function evaluations: 130
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 97.26959099978379
Iteration: 2, Func. Count: 19, Neg. LLF: 98.4522843905569
Iteration: 3, Func. Count: 29, Neg. LLF: 230.75436139103311
Iteration: 4, Func. Count: 39, Neg. LLF: 180.06079639522423
Iteration: 5, Func. Count: 49, Neg. LLF: 236946.79936082536
Iteration: 6, Func. Count: 59, Neg. LLF: 96.61932049977372
Iteration: 7, Func. Count: 69, Neg. LLF: 96.05675471969677
Iteration: 8, Func. Count: 78, Neg. LLF: 96.05760478269615
Iteration: 9, Func. Count: 88, Neg. LLF: 96.43173333270904
Iteration: 10, Func. Count: 99, Neg. LLF: 96.04363364922332
Iteration: 11, Func. Count: 108, Neg. LLF: 96.04347702630116
Iteration: 12, Func. Count: 117, Neg. LLF: 96.04343350543438
Iteration: 13, Func. Count: 126, Neg. LLF: 96.04342511281367
Iteration: 14, Func. Count: 135, Neg. LLF: 96.04342389952656
Iteration: 15, Func. Count: 143, Neg. LLF: 96.04342390073445
Optimization terminated successfully (Exit mode 0)
Current function value: 96.04342389952656
Iterations: 15
Function evaluations: 143
Gradient evaluations: 15
Iteration: 1, Func. Count: 7, Neg. LLF: 122.68412695527971
Iteration: 2, Func. Count: 15, Neg. LLF: 190.5231678154853
Iteration: 3, Func. Count: 22, Neg. LLF: 709.1815601031373
Iteration: 4, Func. Count: 29, Neg. LLF: 108.69808212386023
Iteration: 5, Func. Count: 36, Neg. LLF: 97.70570187224517
Iteration: 6, Func. Count: 43, Neg. LLF: 96.76225337722211
Iteration: 7, Func. Count: 49, Neg. LLF: 101.33632009870571
Iteration: 8, Func. Count: 56, Neg. LLF: 96.84941465095005
Iteration: 9, Func. Count: 63, Neg. LLF: 96.57203116912078
Iteration: 10, Func. Count: 69, Neg. LLF: 96.55647577620984
Iteration: 11, Func. Count: 75, Neg. LLF: 96.55509599921342
Iteration: 12, Func. Count: 81, Neg. LLF: 96.55488505597502
Iteration: 13, Func. Count: 87, Neg. LLF: 96.55455803325158
Iteration: 14, Func. Count: 93, Neg. LLF: 96.55453025579573
Iteration: 15, Func. Count: 99, Neg. LLF: 96.5545293233489
Optimization terminated successfully (Exit mode 0)
Current function value: 96.5545293233489
Iterations: 15
Function evaluations: 99
Gradient evaluations: 15
Iteration: 1, Func. Count: 8, Neg. LLF: 123.00101931191048
Iteration: 2, Func. Count: 16, Neg. LLF: 104.1592149403485
Iteration: 3, Func. Count: 24, Neg. LLF: 104.25292961620796
Iteration: 4, Func. Count: 32, Neg. LLF: 96.76694209667386
Iteration: 5, Func. Count: 39, Neg. LLF: 101.40263071199321
Iteration: 6, Func. Count: 48, Neg. LLF: 99.06081900185973
Iteration: 7, Func. Count: 58, Neg. LLF: 135.2229822747971
Iteration: 8, Func. Count: 67, Neg. LLF: 96.22917585005665
Iteration: 9, Func. Count: 74, Neg. LLF: 96.22092639282283
Iteration: 10, Func. Count: 81, Neg. LLF: 96.21535532186692
Iteration: 11, Func. Count: 88, Neg. LLF: 96.21262988753489
Iteration: 12, Func. Count: 95, Neg. LLF: 96.2103593959451
Iteration: 13, Func. Count: 102, Neg. LLF: 96.20938923081799
Iteration: 14, Func. Count: 109, Neg. LLF: 96.20893261006576
Iteration: 15, Func. Count: 116, Neg. LLF: 96.20883943329684
Iteration: 16, Func. Count: 123, Neg. LLF: 96.20883506800304
Iteration: 17, Func. Count: 130, Neg. LLF: 96.20883411127856
Optimization terminated successfully (Exit mode 0)
Current function value: 96.20883411127856
Iterations: 17
Function evaluations: 130
Gradient evaluations: 17
Iteration: 1, Func. Count: 9, Neg. LLF: 100.33375950581154
Iteration: 2, Func. Count: 18, Neg. LLF: 143.68067074424485
Iteration: 3, Func. Count: 27, Neg. LLF: 133.4268574992096
Iteration: 4, Func. Count: 36, Neg. LLF: 96.64846203312013
Iteration: 5, Func. Count: 44, Neg. LLF: 96.67654258803209
Iteration: 6, Func. Count: 54, Neg. LLF: 99.40548521013706
Iteration: 7, Func. Count: 65, Neg. LLF: 96.23741599494105
Iteration: 8, Func. Count: 73, Neg. LLF: 96.22345859213901
Iteration: 9, Func. Count: 81, Neg. LLF: 96.21265387987796
Iteration: 10, Func. Count: 89, Neg. LLF: 96.21151430924441
Iteration: 11, Func. Count: 97, Neg. LLF: 96.20919093610298
Iteration: 12, Func. Count: 105, Neg. LLF: 96.20891849201446
Iteration: 13, Func. Count: 113, Neg. LLF: 96.20883699891587
Iteration: 14, Func. Count: 121, Neg. LLF: 96.20883411007924
Iteration: 15, Func. Count: 128, Neg. LLF: 96.20883418679378
Optimization terminated successfully (Exit mode 0)
Current function value: 96.20883411007924
Iterations: 15
Function evaluations: 128
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 97.36990443202919
Iteration: 2, Func. Count: 19, Neg. LLF: 132.45652348299703
Iteration: 3, Func. Count: 29, Neg. LLF: 107.43954380641338
Iteration: 4, Func. Count: 41, Neg. LLF: 7468465.43062731
Iteration: 5, Func. Count: 51, Neg. LLF: 40376895.21322301
Iteration: 6, Func. Count: 61, Neg. LLF: 494.74890325823407
Iteration: 7, Func. Count: 71, Neg. LLF: 96.30631819567827
Iteration: 8, Func. Count: 81, Neg. LLF: 96.09264235186276
Iteration: 9, Func. Count: 91, Neg. LLF: 96.03765258970655
Iteration: 10, Func. Count: 100, Neg. LLF: 96.01109292024103
Iteration: 11, Func. Count: 109, Neg. LLF: 96.00306186807276
Iteration: 12, Func. Count: 118, Neg. LLF: 96.00336807900135
Iteration: 13, Func. Count: 128, Neg. LLF: 96.00199656501809
Iteration: 14, Func. Count: 137, Neg. LLF: 96.00198922267029
Iteration: 15, Func. Count: 146, Neg. LLF: 96.0019885586379
Optimization terminated successfully (Exit mode 0)
Current function value: 96.0019885586379
Iterations: 15
Function evaluations: 146
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 97.36197064337267
Iteration: 2, Func. Count: 21, Neg. LLF: 102.73559620033873
Iteration: 3, Func. Count: 32, Neg. LLF: 8769.402399077153
Iteration: 4, Func. Count: 43, Neg. LLF: 3294.329059191676
Iteration: 5, Func. Count: 54, Neg. LLF: 3489569.3011754933
Iteration: 6, Func. Count: 65, Neg. LLF: 99.28734095564143
Iteration: 7, Func. Count: 76, Neg. LLF: 101.57040808937495
Iteration: 8, Func. Count: 87, Neg. LLF: 96.12689752787738
Iteration: 9, Func. Count: 98, Neg. LLF: 96.62377686424114
Iteration: 10, Func. Count: 109, Neg. LLF: 96.05115036429446
Iteration: 11, Func. Count: 120, Neg. LLF: 96.19902090672569
Iteration: 12, Func. Count: 131, Neg. LLF: 96.00436748345244
Iteration: 13, Func. Count: 141, Neg. LLF: 96.00103919644182
Iteration: 14, Func. Count: 151, Neg. LLF: 96.0006565006098
Iteration: 15, Func. Count: 161, Neg. LLF: 96.00049206811347
Iteration: 16, Func. Count: 171, Neg. LLF: 96.00047931134183
Iteration: 17, Func. Count: 181, Neg. LLF: 96.00047434994912
Iteration: 18, Func. Count: 190, Neg. LLF: 96.00047434993294
Optimization terminated successfully (Exit mode 0)
Current function value: 96.00047434994912
Iterations: 18
Function evaluations: 190
Gradient evaluations: 18
Iteration: 1, Func. Count: 8, Neg. LLF: 107.60508845750643
Iteration: 2, Func. Count: 17, Neg. LLF: 541.0564117743103
Iteration: 3, Func. Count: 25, Neg. LLF: 11308144.316816617
Iteration: 4, Func. Count: 33, Neg. LLF: 4359.650858605286
Iteration: 5, Func. Count: 41, Neg. LLF: 104.25615955817312
Iteration: 6, Func. Count: 49, Neg. LLF: 95.97452674528145
Iteration: 7, Func. Count: 57, Neg. LLF: 95.46418196353898
Iteration: 8, Func. Count: 65, Neg. LLF: 95.64993559661794
Iteration: 9, Func. Count: 73, Neg. LLF: 94.96109925325568
Iteration: 10, Func. Count: 81, Neg. LLF: 94.91172013957302
Iteration: 11, Func. Count: 89, Neg. LLF: 94.71639414029384
Iteration: 12, Func. Count: 96, Neg. LLF: 94.71725172164923
Iteration: 13, Func. Count: 104, Neg. LLF: 94.69947500068643
Iteration: 14, Func. Count: 111, Neg. LLF: 94.69825918895917
Iteration: 15, Func. Count: 118, Neg. LLF: 94.69819539093697
Iteration: 16, Func. Count: 125, Neg. LLF: 94.69818216505897
Iteration: 17, Func. Count: 132, Neg. LLF: 94.69818039858812
Iteration: 18, Func. Count: 138, Neg. LLF: 94.69818039859557
Optimization terminated successfully (Exit mode 0)
Current function value: 94.69818039858812
Iterations: 18
Function evaluations: 138
Gradient evaluations: 18
Iteration: 1, Func. Count: 9, Neg. LLF: 469.1435170504052
Iteration: 2, Func. Count: 18, Neg. LLF: 189.61779622724023
Iteration: 3, Func. Count: 28, Neg. LLF: 131.70696568762617
Iteration: 4, Func. Count: 37, Neg. LLF: 107.51089719180756
Iteration: 5, Func. Count: 46, Neg. LLF: 97.94253286532208
Iteration: 6, Func. Count: 55, Neg. LLF: 95.5737993247813
Iteration: 7, Func. Count: 64, Neg. LLF: 95.84271587852655
Iteration: 8, Func. Count: 73, Neg. LLF: 94.96497031819193
Iteration: 9, Func. Count: 81, Neg. LLF: 95.41088124341518
Iteration: 10, Func. Count: 90, Neg. LLF: 94.91702070877106
Iteration: 11, Func. Count: 98, Neg. LLF: 94.9027098323902
Iteration: 12, Func. Count: 106, Neg. LLF: 94.89231722800238
Iteration: 13, Func. Count: 114, Neg. LLF: 94.87955275938107
Iteration: 14, Func. Count: 122, Neg. LLF: 94.87523382443514
Iteration: 15, Func. Count: 130, Neg. LLF: 94.87392801499298
Iteration: 16, Func. Count: 138, Neg. LLF: 94.87323406448434
Iteration: 17, Func. Count: 146, Neg. LLF: 94.87266535447355
Iteration: 18, Func. Count: 154, Neg. LLF: 94.8726244758826
Iteration: 19, Func. Count: 162, Neg. LLF: 94.87262198218583
Iteration: 20, Func. Count: 169, Neg. LLF: 94.8726219818513
Optimization terminated successfully (Exit mode 0)
Current function value: 94.87262198218583
Iterations: 20
Function evaluations: 169
Gradient evaluations: 20
Iteration: 1, Func. Count: 10, Neg. LLF: 161.91423902851
Iteration: 2, Func. Count: 20, Neg. LLF: 10861579.94475897
Iteration: 3, Func. Count: 31, Neg. LLF: 624.6691509032456
Iteration: 4, Func. Count: 41, Neg. LLF: 121.72901346134944
Iteration: 5, Func. Count: 51, Neg. LLF: 98.14937879936467
Iteration: 6, Func. Count: 61, Neg. LLF: 96.21667408861651
Iteration: 7, Func. Count: 71, Neg. LLF: 95.0660091008772
Iteration: 8, Func. Count: 81, Neg. LLF: 95.95498311759486
Iteration: 9, Func. Count: 91, Neg. LLF: 94.88866308850204
Iteration: 10, Func. Count: 101, Neg. LLF: 94.09781741929626
Iteration: 11, Func. Count: 110, Neg. LLF: 94.00052001181753
Iteration: 12, Func. Count: 119, Neg. LLF: 93.999632148074
Iteration: 13, Func. Count: 128, Neg. LLF: 93.99860180910038
Iteration: 14, Func. Count: 137, Neg. LLF: 93.9981531533913
Iteration: 15, Func. Count: 146, Neg. LLF: 93.99787277422777
Iteration: 16, Func. Count: 155, Neg. LLF: 93.99784177962273
Iteration: 17, Func. Count: 164, Neg. LLF: 93.9978402264896
Iteration: 18, Func. Count: 172, Neg. LLF: 93.99784021647854
Optimization terminated successfully (Exit mode 0)
Current function value: 93.9978402264896
Iterations: 18
Function evaluations: 172
Gradient evaluations: 18
Iteration: 1, Func. Count: 11, Neg. LLF: 127.07037942339227
Iteration: 2, Func. Count: 22, Neg. LLF: 367.59180525448704
Iteration: 3, Func. Count: 34, Neg. LLF: 246.7096448604824
Iteration: 4, Func. Count: 45, Neg. LLF: 97.25225324251116
Iteration: 5, Func. Count: 56, Neg. LLF: 94.06732615708859
Iteration: 6, Func. Count: 66, Neg. LLF: 98.20119971263044
Iteration: 7, Func. Count: 79, Neg. LLF: 97.22843279265805
Iteration: 8, Func. Count: 90, Neg. LLF: 94.46398608814295
Iteration: 9, Func. Count: 101, Neg. LLF: 105.98972913912029
Iteration: 10, Func. Count: 112, Neg. LLF: 94.54870064802456
Iteration: 11, Func. Count: 123, Neg. LLF: 93.56700608091506
Iteration: 12, Func. Count: 133, Neg. LLF: 93.54131970050652
Iteration: 13, Func. Count: 143, Neg. LLF: 93.53462444252682
Iteration: 14, Func. Count: 153, Neg. LLF: 93.53362618708829
Iteration: 15, Func. Count: 163, Neg. LLF: 93.53354206641148
Iteration: 16, Func. Count: 173, Neg. LLF: 93.53354135599481
Optimization terminated successfully (Exit mode 0)
Current function value: 93.53354135599481
Iterations: 16
Function evaluations: 173
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 115.39971421089642
Iteration: 2, Func. Count: 24, Neg. LLF: 127.51725201988786
Iteration: 3, Func. Count: 37, Neg. LLF: 191.15250821682667
Iteration: 4, Func. Count: 49, Neg. LLF: 98.41909257045313
Iteration: 5, Func. Count: 61, Neg. LLF: 94.85214939953045
Iteration: 6, Func. Count: 73, Neg. LLF: 95.52689577720852
Iteration: 7, Func. Count: 85, Neg. LLF: 93.94718118741437
Iteration: 8, Func. Count: 96, Neg. LLF: 95.55274892461568
Iteration: 9, Func. Count: 108, Neg. LLF: 93.72859545985868
Iteration: 10, Func. Count: 119, Neg. LLF: 93.7661095446556
Iteration: 11, Func. Count: 131, Neg. LLF: 94.16708990010488
Iteration: 12, Func. Count: 143, Neg. LLF: 93.56747197651345
Iteration: 13, Func. Count: 154, Neg. LLF: 93.5804938678678
Iteration: 14, Func. Count: 166, Neg. LLF: 93.55008015451
Iteration: 15, Func. Count: 177, Neg. LLF: 93.54077418175744
Iteration: 16, Func. Count: 188, Neg. LLF: 93.53422662362468
Iteration: 17, Func. Count: 199, Neg. LLF: 93.53362289139653
Iteration: 18, Func. Count: 210, Neg. LLF: 93.53354051915412
Iteration: 19, Func. Count: 221, Neg. LLF: 93.533539779821
Optimization terminated successfully (Exit mode 0)
Current function value: 93.533539779821
Iterations: 19
Function evaluations: 221
Gradient evaluations: 19
Iteration: 1, Func. Count: 9, Neg. LLF: 118.36594159882182
Iteration: 2, Func. Count: 19, Neg. LLF: 554.3596313539227
Iteration: 3, Func. Count: 28, Neg. LLF: 11104088.420012837
Iteration: 4, Func. Count: 37, Neg. LLF: 529.1745266410702
Iteration: 5, Func. Count: 46, Neg. LLF: 98.56942098465497
Iteration: 6, Func. Count: 55, Neg. LLF: 95.94164507742926
Iteration: 7, Func. Count: 64, Neg. LLF: 143.0312674285688
Iteration: 8, Func. Count: 73, Neg. LLF: 95.16232318233533
Iteration: 9, Func. Count: 81, Neg. LLF: 95.82364370378413
Iteration: 10, Func. Count: 90, Neg. LLF: 96.33426336721989
Iteration: 11, Func. Count: 101, Neg. LLF: 94.76088900649471
Iteration: 12, Func. Count: 109, Neg. LLF: 94.73488728503388
Iteration: 13, Func. Count: 117, Neg. LLF: 94.72746837437299
Iteration: 14, Func. Count: 125, Neg. LLF: 94.72536649518737
Iteration: 15, Func. Count: 133, Neg. LLF: 94.72440285152224
Iteration: 16, Func. Count: 141, Neg. LLF: 94.72040023268525
Iteration: 17, Func. Count: 149, Neg. LLF: 94.71519076793423
Iteration: 18, Func. Count: 157, Neg. LLF: 94.7068737556665
Iteration: 19, Func. Count: 165, Neg. LLF: 94.7006685601713
Iteration: 20, Func. Count: 173, Neg. LLF: 94.69862591071805
Iteration: 21, Func. Count: 181, Neg. LLF: 94.69828767245738
Iteration: 22, Func. Count: 189, Neg. LLF: 94.6981890083691
Iteration: 23, Func. Count: 197, Neg. LLF: 94.69818073368063
Iteration: 24, Func. Count: 204, Neg. LLF: 94.6981808387374
Optimization terminated successfully (Exit mode 0)
Current function value: 94.69818073368063
Iterations: 24
Function evaluations: 204
Gradient evaluations: 24
Iteration: 1, Func. Count: 10, Neg. LLF: 127.62470982388034
Iteration: 2, Func. Count: 20, Neg. LLF: 153.04796645157012
Iteration: 3, Func. Count: 31, Neg. LLF: 125.6125171302564
Iteration: 4, Func. Count: 41, Neg. LLF: 101.89456806698816
Iteration: 5, Func. Count: 51, Neg. LLF: 95.43834436878134
Iteration: 6, Func. Count: 60, Neg. LLF: 96.89839628666002
Iteration: 7, Func. Count: 70, Neg. LLF: 95.41603564414334
Iteration: 8, Func. Count: 80, Neg. LLF: 95.05571022422144
Iteration: 9, Func. Count: 90, Neg. LLF: 94.92811750533762
Iteration: 10, Func. Count: 99, Neg. LLF: 94.89853497319994
Iteration: 11, Func. Count: 108, Neg. LLF: 94.88584008751455
Iteration: 12, Func. Count: 117, Neg. LLF: 94.8798455840456
Iteration: 13, Func. Count: 126, Neg. LLF: 94.87664360840702
Iteration: 14, Func. Count: 135, Neg. LLF: 94.87364676237941
Iteration: 15, Func. Count: 144, Neg. LLF: 94.87271956028411
Iteration: 16, Func. Count: 153, Neg. LLF: 94.87264812570177
Iteration: 17, Func. Count: 162, Neg. LLF: 94.87262490742607
Iteration: 18, Func. Count: 171, Neg. LLF: 94.87262213216883
Iteration: 19, Func. Count: 179, Neg. LLF: 94.87262213191852
Optimization terminated successfully (Exit mode 0)
Current function value: 94.87262213216883
Iterations: 19
Function evaluations: 179
Gradient evaluations: 19
Iteration: 1, Func. Count: 11, Neg. LLF: 104.73061467183952
Iteration: 2, Func. Count: 22, Neg. LLF: 146.03642467025716
Iteration: 3, Func. Count: 34, Neg. LLF: 95.71530512335775
Iteration: 4, Func. Count: 45, Neg. LLF: 192.52892357929366
Iteration: 5, Func. Count: 56, Neg. LLF: 96.76970654426987
Iteration: 6, Func. Count: 67, Neg. LLF: 95.00984349840137
Iteration: 7, Func. Count: 78, Neg. LLF: 94.43289622107753
Iteration: 8, Func. Count: 88, Neg. LLF: 94.18019696878432
Iteration: 9, Func. Count: 98, Neg. LLF: 95.09376643446949
Iteration: 10, Func. Count: 109, Neg. LLF: 94.0001623452928
Iteration: 11, Func. Count: 119, Neg. LLF: 93.99819615231587
Iteration: 12, Func. Count: 129, Neg. LLF: 93.99790161067656
Iteration: 13, Func. Count: 139, Neg. LLF: 93.9978770967173
Iteration: 14, Func. Count: 149, Neg. LLF: 93.99784197554257
Iteration: 15, Func. Count: 159, Neg. LLF: 93.9978402936779
Iteration: 16, Func. Count: 168, Neg. LLF: 93.99784028365306
Optimization terminated successfully (Exit mode 0)
Current function value: 93.9978402936779
Iterations: 16
Function evaluations: 168
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 98.4159559211849
Iteration: 2, Func. Count: 24, Neg. LLF: 206.91795288095344
Iteration: 3, Func. Count: 36, Neg. LLF: 233.63548422267408
Iteration: 4, Func. Count: 48, Neg. LLF: 98.41568018695023
Iteration: 5, Func. Count: 60, Neg. LLF: 94.98978928468412
Iteration: 6, Func. Count: 72, Neg. LLF: 93.93034262060046
Iteration: 7, Func. Count: 83, Neg. LLF: 101.98539643847076
Iteration: 8, Func. Count: 95, Neg. LLF: 96.88617974599082
Iteration: 9, Func. Count: 108, Neg. LLF: 98.20534429298411
Iteration: 10, Func. Count: 120, Neg. LLF: 93.75625049170017
Iteration: 11, Func. Count: 132, Neg. LLF: 93.57682305613096
Iteration: 12, Func. Count: 143, Neg. LLF: 93.5611659176477
Iteration: 13, Func. Count: 154, Neg. LLF: 93.55239421150054
Iteration: 14, Func. Count: 165, Neg. LLF: 93.54429307993128
Iteration: 15, Func. Count: 176, Neg. LLF: 93.53419027865552
Iteration: 16, Func. Count: 187, Neg. LLF: 93.53358675882029
Iteration: 17, Func. Count: 198, Neg. LLF: 93.53355573727657
Iteration: 18, Func. Count: 209, Neg. LLF: 93.53355232765801
Iteration: 19, Func. Count: 220, Neg. LLF: 93.533547229241
Iteration: 20, Func. Count: 231, Neg. LLF: 93.53354227296465
Iteration: 21, Func. Count: 242, Neg. LLF: 93.53354010182711
Iteration: 22, Func. Count: 252, Neg. LLF: 93.5335401018519
Optimization terminated successfully (Exit mode 0)
Current function value: 93.53354010182711
Iterations: 22
Function evaluations: 252
Gradient evaluations: 22
Iteration: 1, Func. Count: 13, Neg. LLF: 97.77148355063395
Iteration: 2, Func. Count: 26, Neg. LLF: 2023.0059549503383
Iteration: 3, Func. Count: 40, Neg. LLF: 96.47688698598746
Iteration: 4, Func. Count: 53, Neg. LLF: 111.80163378574991
Iteration: 5, Func. Count: 66, Neg. LLF: 94.53895725448756
Iteration: 6, Func. Count: 79, Neg. LLF: 93.86546205380253
Iteration: 7, Func. Count: 91, Neg. LLF: 96.04870166721867
Iteration: 8, Func. Count: 104, Neg. LLF: 93.93632180629926
Iteration: 9, Func. Count: 117, Neg. LLF: 93.77819951063854
Iteration: 10, Func. Count: 130, Neg. LLF: 93.81008426348333
Iteration: 11, Func. Count: 143, Neg. LLF: 93.60953051376089
Iteration: 12, Func. Count: 156, Neg. LLF: 93.53986005825143
Iteration: 13, Func. Count: 168, Neg. LLF: 93.53746708788178
Iteration: 14, Func. Count: 180, Neg. LLF: 93.53573219669403
Iteration: 15, Func. Count: 192, Neg. LLF: 93.53427078130439
Iteration: 16, Func. Count: 204, Neg. LLF: 93.53355020719998
Iteration: 17, Func. Count: 216, Neg. LLF: 93.53353991728957
Iteration: 18, Func. Count: 227, Neg. LLF: 93.53353996848851
Optimization terminated successfully (Exit mode 0)
Current function value: 93.53353991728957
Iterations: 18
Function evaluations: 227
Gradient evaluations: 18
Iteration: 1, Func. Count: 10, Neg. LLF: 120.16092043470023
Iteration: 2, Func. Count: 21, Neg. LLF: 670.1787340990484
Iteration: 3, Func. Count: 31, Neg. LLF: 11086142.873228133
Iteration: 4, Func. Count: 41, Neg. LLF: 7100.125548259569
Iteration: 5, Func. Count: 51, Neg. LLF: 97.88060342028923
Iteration: 6, Func. Count: 61, Neg. LLF: 363.56122647963304
Iteration: 7, Func. Count: 71, Neg. LLF: 97.6432678552284
Iteration: 8, Func. Count: 81, Neg. LLF: 95.71058361145674
Iteration: 9, Func. Count: 91, Neg. LLF: 95.05904563539033
Iteration: 10, Func. Count: 100, Neg. LLF: 95.45838438591727
Iteration: 11, Func. Count: 111, Neg. LLF: 94.8994053772397
Iteration: 12, Func. Count: 121, Neg. LLF: 94.74887344264569
Iteration: 13, Func. Count: 130, Neg. LLF: 94.74309594025705
Iteration: 14, Func. Count: 139, Neg. LLF: 94.74104683475916
Iteration: 15, Func. Count: 148, Neg. LLF: 94.73824794386516
Iteration: 16, Func. Count: 157, Neg. LLF: 94.72923919504866
Iteration: 17, Func. Count: 166, Neg. LLF: 94.71373034708262
Iteration: 18, Func. Count: 175, Neg. LLF: 94.7018581480614
Iteration: 19, Func. Count: 184, Neg. LLF: 94.6984079469235
Iteration: 20, Func. Count: 193, Neg. LLF: 94.69820111608459
Iteration: 21, Func. Count: 202, Neg. LLF: 94.69818308277304
Iteration: 22, Func. Count: 211, Neg. LLF: 94.69818042187815
Iteration: 23, Func. Count: 219, Neg. LLF: 94.69818045743241
Optimization terminated successfully (Exit mode 0)
Current function value: 94.69818042187815
Iterations: 23
Function evaluations: 219
Gradient evaluations: 23
Iteration: 1, Func. Count: 11, Neg. LLF: 112.90124749100404
Iteration: 2, Func. Count: 22, Neg. LLF: 138.1088810484913
Iteration: 3, Func. Count: 34, Neg. LLF: 101.25850591293563
Iteration: 4, Func. Count: 45, Neg. LLF: 99.28853591730281
Iteration: 5, Func. Count: 56, Neg. LLF: 97.71101830669639
Iteration: 6, Func. Count: 67, Neg. LLF: 95.38480367616073
Iteration: 7, Func. Count: 78, Neg. LLF: 94.97564333997559
Iteration: 8, Func. Count: 88, Neg. LLF: 94.95749028214003
Iteration: 9, Func. Count: 98, Neg. LLF: 94.93669069985508
Iteration: 10, Func. Count: 108, Neg. LLF: 95.02925665472573
Iteration: 11, Func. Count: 119, Neg. LLF: 94.92198912305457
Iteration: 12, Func. Count: 130, Neg. LLF: 94.8934276088206
Iteration: 13, Func. Count: 140, Neg. LLF: 94.88254748860507
Iteration: 14, Func. Count: 150, Neg. LLF: 94.87880038258606
Iteration: 15, Func. Count: 160, Neg. LLF: 94.8747683316361
Iteration: 16, Func. Count: 170, Neg. LLF: 94.87292503004753
Iteration: 17, Func. Count: 180, Neg. LLF: 94.87263031388312
Iteration: 18, Func. Count: 190, Neg. LLF: 94.87262198610289
Iteration: 19, Func. Count: 199, Neg. LLF: 94.87262198577912
Optimization terminated successfully (Exit mode 0)
Current function value: 94.87262198610289
Iterations: 19
Function evaluations: 199
Gradient evaluations: 19
Iteration: 1, Func. Count: 12, Neg. LLF: 99.45428773947897
Iteration: 2, Func. Count: 24, Neg. LLF: 130.85174049030442
Iteration: 3, Func. Count: 36, Neg. LLF: 97.25889702748206
Iteration: 4, Func. Count: 48, Neg. LLF: 107.13428666380891
Iteration: 5, Func. Count: 60, Neg. LLF: 98.86309458484989
Iteration: 6, Func. Count: 72, Neg. LLF: 95.99094215985397
Iteration: 7, Func. Count: 84, Neg. LLF: 95.18839968246726
Iteration: 8, Func. Count: 96, Neg. LLF: 94.14589914336482
Iteration: 9, Func. Count: 107, Neg. LLF: 94.05249654059467
Iteration: 10, Func. Count: 118, Neg. LLF: 94.00400170770385
Iteration: 11, Func. Count: 129, Neg. LLF: 93.99827294394456
Iteration: 12, Func. Count: 140, Neg. LLF: 93.99791176618706
Iteration: 13, Func. Count: 151, Neg. LLF: 93.99784691358838
Iteration: 14, Func. Count: 162, Neg. LLF: 93.99784088123187
Iteration: 15, Func. Count: 173, Neg. LLF: 93.99784021676201
Optimization terminated successfully (Exit mode 0)
Current function value: 93.99784021676201
Iterations: 15
Function evaluations: 173
Gradient evaluations: 15
Iteration: 1, Func. Count: 13, Neg. LLF: 96.9421155102875
Iteration: 2, Func. Count: 26, Neg. LLF: 16886.70463752127
Iteration: 3, Func. Count: 40, Neg. LLF: 476.3891273615428
Iteration: 4, Func. Count: 53, Neg. LLF: 113.99426099109341
Iteration: 5, Func. Count: 66, Neg. LLF: 94.3038481757643
Iteration: 6, Func. Count: 78, Neg. LLF: 107.38875340137976
Iteration: 7, Func. Count: 91, Neg. LLF: 99.30388399290489
Iteration: 8, Func. Count: 105, Neg. LLF: 96.42367259413659
Iteration: 9, Func. Count: 118, Neg. LLF: 95.06902373429642
Iteration: 10, Func. Count: 131, Neg. LLF: 95.04036647530997
Iteration: 11, Func. Count: 144, Neg. LLF: 93.70737559621038
Iteration: 12, Func. Count: 157, Neg. LLF: 93.56992943014596
Iteration: 13, Func. Count: 169, Neg. LLF: 93.54514032622772
Iteration: 14, Func. Count: 181, Neg. LLF: 93.53991436461983
Iteration: 15, Func. Count: 193, Neg. LLF: 93.53442105991863
Iteration: 16, Func. Count: 205, Neg. LLF: 93.53396481002973
Iteration: 17, Func. Count: 217, Neg. LLF: 93.5338223159386
Iteration: 18, Func. Count: 229, Neg. LLF: 93.53375136154443
Iteration: 19, Func. Count: 241, Neg. LLF: 93.53358172528489
Iteration: 20, Func. Count: 253, Neg. LLF: 93.53354474188137
Iteration: 21, Func. Count: 265, Neg. LLF: 93.53353986042819
Iteration: 22, Func. Count: 276, Neg. LLF: 93.53353986045433
Optimization terminated successfully (Exit mode 0)
Current function value: 93.53353986042819
Iterations: 22
Function evaluations: 276
Gradient evaluations: 22
Iteration: 1, Func. Count: 14, Neg. LLF: 97.79576316517654
Iteration: 2, Func. Count: 28, Neg. LLF: 643.17596455648
Iteration: 3, Func. Count: 42, Neg. LLF: 342.32798786295575
Iteration: 4, Func. Count: 56, Neg. LLF: 117.43094572123552
Iteration: 5, Func. Count: 70, Neg. LLF: 97.7620225923799
Iteration: 6, Func. Count: 84, Neg. LLF: 94.84959228363931
Iteration: 7, Func. Count: 98, Neg. LLF: 93.90928787181392
Iteration: 8, Func. Count: 111, Neg. LLF: 94.04088307226361
Iteration: 9, Func. Count: 125, Neg. LLF: 106.08937138202919
Iteration: 10, Func. Count: 139, Neg. LLF: 93.56177180267282
Iteration: 11, Func. Count: 152, Neg. LLF: 93.69806408292193
Iteration: 12, Func. Count: 166, Neg. LLF: 93.55202147439917
Iteration: 13, Func. Count: 179, Neg. LLF: 93.53651825250437
Iteration: 14, Func. Count: 192, Neg. LLF: 93.53442148820297
Iteration: 15, Func. Count: 205, Neg. LLF: 93.53365906988383
Iteration: 16, Func. Count: 218, Neg. LLF: 93.53362185795378
Iteration: 17, Func. Count: 231, Neg. LLF: 93.53355561272933
Iteration: 18, Func. Count: 244, Neg. LLF: 93.53354133959432
Iteration: 19, Func. Count: 257, Neg. LLF: 93.53353977914016
Iteration: 20, Func. Count: 269, Neg. LLF: 93.53353983038144
Optimization terminated successfully (Exit mode 0)
Current function value: 93.53353977914016
Iterations: 20
Function evaluations: 269
Gradient evaluations: 20
Iteration: 1, Func. Count: 7, Neg. LLF: 113.02874550781813
Iteration: 2, Func. Count: 15, Neg. LLF: 58867.63600079274
Iteration: 3, Func. Count: 22, Neg. LLF: 1835.1987910311466
Iteration: 4, Func. Count: 29, Neg. LLF: 178.60796495278515
Iteration: 5, Func. Count: 36, Neg. LLF: 151.5414148280551
Iteration: 6, Func. Count: 43, Neg. LLF: 98.86122042699193
Iteration: 7, Func. Count: 50, Neg. LLF: 96.60925349104596
Iteration: 8, Func. Count: 57, Neg. LLF: 96.27018736001803
Iteration: 9, Func. Count: 63, Neg. LLF: 96.23152619313169
Iteration: 10, Func. Count: 69, Neg. LLF: 96.21437131573848
Iteration: 11, Func. Count: 75, Neg. LLF: 96.21332473541752
Iteration: 12, Func. Count: 81, Neg. LLF: 96.21312966298139
Iteration: 13, Func. Count: 87, Neg. LLF: 96.2131263587035
Iteration: 14, Func. Count: 93, Neg. LLF: 96.21312530492489
Iteration: 15, Func. Count: 98, Neg. LLF: 96.21312530492484
Optimization terminated successfully (Exit mode 0)
Current function value: 96.21312530492489
Iterations: 15
Function evaluations: 98
Gradient evaluations: 15
Iteration: 1, Func. Count: 8, Neg. LLF: 123.00557952663647
Iteration: 2, Func. Count: 16, Neg. LLF: 131.05731768935865
Iteration: 3, Func. Count: 24, Neg. LLF: 530.5407328445993
Iteration: 4, Func. Count: 32, Neg. LLF: 96.79931549486389
Iteration: 5, Func. Count: 39, Neg. LLF: 96.62105817413362
Iteration: 6, Func. Count: 47, Neg. LLF: 96.2678719638667
Iteration: 7, Func. Count: 54, Neg. LLF: 96.23622208042171
Iteration: 8, Func. Count: 61, Neg. LLF: 96.21759857160644
Iteration: 9, Func. Count: 68, Neg. LLF: 96.21386846159045
Iteration: 10, Func. Count: 75, Neg. LLF: 96.213195232166
Iteration: 11, Func. Count: 82, Neg. LLF: 96.21314921468269
Iteration: 12, Func. Count: 89, Neg. LLF: 96.21312561976467
Iteration: 13, Func. Count: 95, Neg. LLF: 96.21312562595632
Optimization terminated successfully (Exit mode 0)
Current function value: 96.21312561976467
Iterations: 13
Function evaluations: 95
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 118.95468248847983
Iteration: 2, Func. Count: 18, Neg. LLF: 123.70511093623372
Iteration: 3, Func. Count: 27, Neg. LLF: 562.4350600835388
Iteration: 4, Func. Count: 36, Neg. LLF: 96.69251725424665
Iteration: 5, Func. Count: 44, Neg. LLF: 98.6983381251115
Iteration: 6, Func. Count: 53, Neg. LLF: 96.65672375536423
Iteration: 7, Func. Count: 62, Neg. LLF: 96.21625406556169
Iteration: 8, Func. Count: 70, Neg. LLF: 96.21406952605635
Iteration: 9, Func. Count: 78, Neg. LLF: 96.21335273963854
Iteration: 10, Func. Count: 86, Neg. LLF: 96.21315095841294
Iteration: 11, Func. Count: 94, Neg. LLF: 96.21313280877258
Iteration: 12, Func. Count: 102, Neg. LLF: 96.21312658838221
Iteration: 13, Func. Count: 110, Neg. LLF: 96.21312537529025
Iteration: 14, Func. Count: 117, Neg. LLF: 96.21312545256039
Optimization terminated successfully (Exit mode 0)
Current function value: 96.21312537529025
Iterations: 14
Function evaluations: 117
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 127.53383975385344
Iteration: 2, Func. Count: 24, Neg. LLF: 10380.40571192446
Iteration: 3, Func. Count: 34, Neg. LLF: 182594.30030935822
Iteration: 4, Func. Count: 44, Neg. LLF: 101.73245278424899
Iteration: 5, Func. Count: 54, Neg. LLF: 103.0090532351132
Iteration: 6, Func. Count: 64, Neg. LLF: 98.10321196327013
Iteration: 7, Func. Count: 74, Neg. LLF: 96.69120302394013
Iteration: 8, Func. Count: 83, Neg. LLF: 96.94049782494034
Iteration: 9, Func. Count: 93, Neg. LLF: 98.3102442536551
Iteration: 10, Func. Count: 103, Neg. LLF: 96.18266718315377
Iteration: 11, Func. Count: 112, Neg. LLF: 96.1500760686394
Iteration: 12, Func. Count: 121, Neg. LLF: 96.13781307347902
Iteration: 13, Func. Count: 130, Neg. LLF: 96.1146565934773
Iteration: 14, Func. Count: 139, Neg. LLF: 96.09871455307123
Iteration: 15, Func. Count: 148, Neg. LLF: 96.08214782505658
Iteration: 16, Func. Count: 157, Neg. LLF: 96.06421311474371
Iteration: 17, Func. Count: 166, Neg. LLF: 96.04458892903878
Iteration: 18, Func. Count: 175, Neg. LLF: 96.03531371853258
Iteration: 19, Func. Count: 184, Neg. LLF: 96.0332453579006
Iteration: 20, Func. Count: 193, Neg. LLF: 96.15442292909555
Iteration: 21, Func. Count: 204, Neg. LLF: 96.03343399780302
Iteration: 22, Func. Count: 214, Neg. LLF: 96.03258265399164
Iteration: 23, Func. Count: 223, Neg. LLF: 96.0325818763778
Optimization terminated successfully (Exit mode 0)
Current function value: 96.0325818763778
Iterations: 23
Function evaluations: 223
Gradient evaluations: 23
Iteration: 1, Func. Count: 11, Neg. LLF: 119.1674877101053
Iteration: 2, Func. Count: 22, Neg. LLF: 122.78486988066653
Iteration: 3, Func. Count: 33, Neg. LLF: 470084.3670024617
Iteration: 4, Func. Count: 44, Neg. LLF: 103.1809973251809
Iteration: 5, Func. Count: 55, Neg. LLF: 98.62588072408948
Iteration: 6, Func. Count: 66, Neg. LLF: 96.43387726996743
Iteration: 7, Func. Count: 76, Neg. LLF: 97.7441965120938
Iteration: 8, Func. Count: 87, Neg. LLF: 96.94150956883448
Iteration: 9, Func. Count: 98, Neg. LLF: 96.37785110256056
Iteration: 10, Func. Count: 109, Neg. LLF: 96.03685498895645
Iteration: 11, Func. Count: 119, Neg. LLF: 96.03373119039829
Iteration: 12, Func. Count: 129, Neg. LLF: 96.0327894891908
Iteration: 13, Func. Count: 139, Neg. LLF: 96.05753862776416
Iteration: 14, Func. Count: 151, Neg. LLF: 96.05248201132505
Iteration: 15, Func. Count: 163, Neg. LLF: 96.03264099589794
Iteration: 16, Func. Count: 173, Neg. LLF: 96.03253902472017
Iteration: 17, Func. Count: 183, Neg. LLF: 96.0325290361001
Iteration: 18, Func. Count: 193, Neg. LLF: 96.03252700694516
Iteration: 19, Func. Count: 202, Neg. LLF: 96.03252700695286
Optimization terminated successfully (Exit mode 0)
Current function value: 96.03252700694516
Iterations: 19
Function evaluations: 202
Gradient evaluations: 19
Iteration: 1, Func. Count: 8, Neg. LLF: 113.32880810639539
Iteration: 2, Func. Count: 17, Neg. LLF: 9065.974208157642
Iteration: 3, Func. Count: 25, Neg. LLF: 2226.7160048099367
Iteration: 4, Func. Count: 33, Neg. LLF: 178.14246716034478
Iteration: 5, Func. Count: 41, Neg. LLF: 191.08985976765473
Iteration: 6, Func. Count: 49, Neg. LLF: 97.8273348253243
Iteration: 7, Func. Count: 57, Neg. LLF: 96.54212094860159
Iteration: 8, Func. Count: 65, Neg. LLF: 97.28597534403295
Iteration: 9, Func. Count: 74, Neg. LLF: 96.2418640813321
Iteration: 10, Func. Count: 81, Neg. LLF: 96.19712183378196
Iteration: 11, Func. Count: 88, Neg. LLF: 96.18321525495062
Iteration: 12, Func. Count: 95, Neg. LLF: 96.18210441336609
Iteration: 13, Func. Count: 102, Neg. LLF: 96.18206621729053
Iteration: 14, Func. Count: 109, Neg. LLF: 96.18206128719787
Iteration: 15, Func. Count: 115, Neg. LLF: 96.18206120701635
Optimization terminated successfully (Exit mode 0)
Current function value: 96.18206128719787
Iterations: 15
Function evaluations: 115
Gradient evaluations: 15
Iteration: 1, Func. Count: 9, Neg. LLF: 139.71629983246441
Iteration: 2, Func. Count: 18, Neg. LLF: 106.22040247172129
Iteration: 3, Func. Count: 27, Neg. LLF: 437.97692797126115
Iteration: 4, Func. Count: 36, Neg. LLF: 96.75792507738855
Iteration: 5, Func. Count: 44, Neg. LLF: 98.41493387864654
Iteration: 6, Func. Count: 53, Neg. LLF: 101.71289284998758
Iteration: 7, Func. Count: 62, Neg. LLF: 96.68305163455804
Iteration: 8, Func. Count: 71, Neg. LLF: 96.1838190785554
Iteration: 9, Func. Count: 79, Neg. LLF: 96.18169331874303
Iteration: 10, Func. Count: 88, Neg. LLF: 96.12918984220937
Iteration: 11, Func. Count: 96, Neg. LLF: 96.09125635097577
Iteration: 12, Func. Count: 104, Neg. LLF: 96.05864447331903
Iteration: 13, Func. Count: 112, Neg. LLF: 96.03158702562085
Iteration: 14, Func. Count: 120, Neg. LLF: 96.02150969565783
Iteration: 15, Func. Count: 128, Neg. LLF: 96.01963865431125
Iteration: 16, Func. Count: 136, Neg. LLF: 96.01948809674347
Iteration: 17, Func. Count: 144, Neg. LLF: 96.01947468431479
Iteration: 18, Func. Count: 152, Neg. LLF: 96.0194738712452
Optimization terminated successfully (Exit mode 0)
Current function value: 96.0194738712452
Iterations: 18
Function evaluations: 152
Gradient evaluations: 18
Iteration: 1, Func. Count: 10, Neg. LLF: 119.4274858038451
Iteration: 2, Func. Count: 20, Neg. LLF: 123.0444616061027
Iteration: 3, Func. Count: 30, Neg. LLF: 592.8312577662068
Iteration: 4, Func. Count: 40, Neg. LLF: 96.69188960773833
Iteration: 5, Func. Count: 49, Neg. LLF: 99.66151593616807
Iteration: 6, Func. Count: 59, Neg. LLF: 96.69934479384796
Iteration: 7, Func. Count: 69, Neg. LLF: 96.25322025644911
Iteration: 8, Func. Count: 79, Neg. LLF: 96.19334243751969
Iteration: 9, Func. Count: 89, Neg. LLF: 96.18241671489957
Iteration: 10, Func. Count: 98, Neg. LLF: 96.18210035310649
Iteration: 11, Func. Count: 107, Neg. LLF: 96.18207556927162
Iteration: 12, Func. Count: 116, Neg. LLF: 96.18206245936656
Iteration: 13, Func. Count: 124, Neg. LLF: 96.18206253630628
Optimization terminated successfully (Exit mode 0)
Current function value: 96.18206245936656
Iterations: 13
Function evaluations: 124
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 126.8751135820929
Iteration: 2, Func. Count: 26, Neg. LLF: 8443.062519694566
Iteration: 3, Func. Count: 37, Neg. LLF: 1118.2736409713773
Iteration: 4, Func. Count: 48, Neg. LLF: 101.94154511214887
Iteration: 5, Func. Count: 59, Neg. LLF: 98.35718527725481
Iteration: 6, Func. Count: 70, Neg. LLF: 96.60118012247518
Iteration: 7, Func. Count: 80, Neg. LLF: 96.83049485015884
Iteration: 8, Func. Count: 92, Neg. LLF: 103.26835553649121
Iteration: 9, Func. Count: 105, Neg. LLF: 97.8659275615854
Iteration: 10, Func. Count: 116, Neg. LLF: 96.19128414535257
Iteration: 11, Func. Count: 126, Neg. LLF: 96.47350067141151
Iteration: 12, Func. Count: 137, Neg. LLF: 96.12598451665035
Iteration: 13, Func. Count: 147, Neg. LLF: 96.11339011135745
Iteration: 14, Func. Count: 157, Neg. LLF: 96.08680191500522
Iteration: 15, Func. Count: 167, Neg. LLF: 96.06702360225451
Iteration: 16, Func. Count: 177, Neg. LLF: 96.04078769818857
Iteration: 17, Func. Count: 187, Neg. LLF: 96.01858767848165
Iteration: 18, Func. Count: 197, Neg. LLF: 96.00224827656722
Iteration: 19, Func. Count: 207, Neg. LLF: 95.9973310949971
Iteration: 20, Func. Count: 217, Neg. LLF: 95.99693090050015
Iteration: 21, Func. Count: 227, Neg. LLF: 95.99690026038496
Iteration: 22, Func. Count: 237, Neg. LLF: 95.99689921153322
Iteration: 23, Func. Count: 246, Neg. LLF: 95.99689921153646
Optimization terminated successfully (Exit mode 0)
Current function value: 95.99689921153322
Iterations: 23
Function evaluations: 246
Gradient evaluations: 23
Iteration: 1, Func. Count: 12, Neg. LLF: 119.52931028098712
Iteration: 2, Func. Count: 24, Neg. LLF: 122.69964170204445
Iteration: 3, Func. Count: 36, Neg. LLF: 2189591.4951096796
Iteration: 4, Func. Count: 48, Neg. LLF: 103.33518409388174
Iteration: 5, Func. Count: 60, Neg. LLF: 99.00023763162264
Iteration: 6, Func. Count: 72, Neg. LLF: 96.71499280795244
Iteration: 7, Func. Count: 84, Neg. LLF: 96.62099361348544
Iteration: 8, Func. Count: 96, Neg. LLF: 97.2908245453732
Iteration: 9, Func. Count: 108, Neg. LLF: 96.05470764889914
Iteration: 10, Func. Count: 119, Neg. LLF: 96.19220997591715
Iteration: 11, Func. Count: 131, Neg. LLF: 96.82235635401899
Iteration: 12, Func. Count: 143, Neg. LLF: 96.09527762888945
Iteration: 13, Func. Count: 155, Neg. LLF: 95.99697898543178
Iteration: 14, Func. Count: 166, Neg. LLF: 95.99370320302378
Iteration: 15, Func. Count: 177, Neg. LLF: 95.99352279009943
Iteration: 16, Func. Count: 188, Neg. LLF: 95.99361619464572
Iteration: 17, Func. Count: 200, Neg. LLF: 95.99329928956142
Iteration: 18, Func. Count: 211, Neg. LLF: 95.99329684430711
Iteration: 19, Func. Count: 221, Neg. LLF: 95.9932968442982
Optimization terminated successfully (Exit mode 0)
Current function value: 95.99329684430711
Iterations: 19
Function evaluations: 221
Gradient evaluations: 19
Iteration: 1, Func. Count: 9, Neg. LLF: 102.59916872818842
Iteration: 2, Func. Count: 18, Neg. LLF: 188.47852851883798
Iteration: 3, Func. Count: 27, Neg. LLF: 659.7876582485414
Iteration: 4, Func. Count: 36, Neg. LLF: 94768.4527539566
Iteration: 5, Func. Count: 45, Neg. LLF: 11675.867661204014
Iteration: 6, Func. Count: 54, Neg. LLF: 205.9402340919294
Iteration: 7, Func. Count: 63, Neg. LLF: 94.58789665816104
Iteration: 8, Func. Count: 72, Neg. LLF: 6455697.252563746
Iteration: 9, Func. Count: 81, Neg. LLF: 93.79066759705177
Iteration: 10, Func. Count: 89, Neg. LLF: 93.77830333905563
Iteration: 11, Func. Count: 97, Neg. LLF: 93.77264720149581
Iteration: 12, Func. Count: 105, Neg. LLF: 93.76743297404917
Iteration: 13, Func. Count: 113, Neg. LLF: 93.76446851307222
Iteration: 14, Func. Count: 121, Neg. LLF: 93.76347267424464
Iteration: 15, Func. Count: 129, Neg. LLF: 93.76324009953078
Iteration: 16, Func. Count: 137, Neg. LLF: 93.76322718078362
Iteration: 17, Func. Count: 145, Neg. LLF: 93.76322629418424
Optimization terminated successfully (Exit mode 0)
Current function value: 93.76322629418424
Iterations: 17
Function evaluations: 145
Gradient evaluations: 17
Iteration: 1, Func. Count: 10, Neg. LLF: 256.3834446836317
Iteration: 2, Func. Count: 20, Neg. LLF: 204.53434776162106
Iteration: 3, Func. Count: 30, Neg. LLF: 147.18059071246097
Iteration: 4, Func. Count: 40, Neg. LLF: 111.7409381794016
Iteration: 5, Func. Count: 50, Neg. LLF: 101.2540064848875
Iteration: 6, Func. Count: 60, Neg. LLF: 94.55252764709391
Iteration: 7, Func. Count: 69, Neg. LLF: 97.32155312916483
Iteration: 8, Func. Count: 79, Neg. LLF: 97.86986449906223
Iteration: 9, Func. Count: 90, Neg. LLF: 94.16735949195693
Iteration: 10, Func. Count: 100, Neg. LLF: 94.69067592638314
Iteration: 11, Func. Count: 110, Neg. LLF: 94.3645360513328
Iteration: 12, Func. Count: 120, Neg. LLF: 93.86127380608619
Iteration: 13, Func. Count: 129, Neg. LLF: 93.83563689243218
Iteration: 14, Func. Count: 138, Neg. LLF: 93.81709769721378
Iteration: 15, Func. Count: 147, Neg. LLF: 93.8071864966761
Iteration: 16, Func. Count: 156, Neg. LLF: 93.80165747298861
Iteration: 17, Func. Count: 165, Neg. LLF: 93.79843024513127
Iteration: 18, Func. Count: 174, Neg. LLF: 93.79407193932249
Iteration: 19, Func. Count: 183, Neg. LLF: 93.7862316091901
Iteration: 20, Func. Count: 192, Neg. LLF: 93.77491476080004
Iteration: 21, Func. Count: 201, Neg. LLF: 93.7658166934463
Iteration: 22, Func. Count: 210, Neg. LLF: 93.7633801170254
Iteration: 23, Func. Count: 219, Neg. LLF: 93.76323290973403
Iteration: 24, Func. Count: 228, Neg. LLF: 93.76322670480637
Iteration: 25, Func. Count: 236, Neg. LLF: 93.76322684211704
Optimization terminated successfully (Exit mode 0)
Current function value: 93.76322670480637
Iterations: 25
Function evaluations: 236
Gradient evaluations: 25
Iteration: 1, Func. Count: 11, Neg. LLF: 174.7961286135193
Iteration: 2, Func. Count: 22, Neg. LLF: 288.390806941419
Iteration: 3, Func. Count: 33, Neg. LLF: 11094123.227820354
Iteration: 4, Func. Count: 44, Neg. LLF: 103.6256292561556
Iteration: 5, Func. Count: 55, Neg. LLF: 119.66493604879128
Iteration: 6, Func. Count: 66, Neg. LLF: 95.99356283594942
Iteration: 7, Func. Count: 77, Neg. LLF: 95.18131846733095
Iteration: 8, Func. Count: 88, Neg. LLF: 93.99694759588147
Iteration: 9, Func. Count: 98, Neg. LLF: 94.17730249946054
Iteration: 10, Func. Count: 109, Neg. LLF: 93.84242921673618
Iteration: 11, Func. Count: 119, Neg. LLF: 93.95496380810607
Iteration: 12, Func. Count: 130, Neg. LLF: 93.76998639921015
Iteration: 13, Func. Count: 140, Neg. LLF: 93.76366671094563
Iteration: 14, Func. Count: 150, Neg. LLF: 93.76331933084033
Iteration: 15, Func. Count: 160, Neg. LLF: 93.76322695979691
Iteration: 16, Func. Count: 170, Neg. LLF: 93.76322631062791
Optimization terminated successfully (Exit mode 0)
Current function value: 93.76322631062791
Iterations: 16
Function evaluations: 170
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 160.48268039742698
Iteration: 2, Func. Count: 24, Neg. LLF: 329.02832275302274
Iteration: 3, Func. Count: 36, Neg. LLF: 11026122.884368747
Iteration: 4, Func. Count: 48, Neg. LLF: 104.00237386099035
Iteration: 5, Func. Count: 60, Neg. LLF: 140.16990821985704
Iteration: 6, Func. Count: 73, Neg. LLF: 96.69634386551677
Iteration: 7, Func. Count: 85, Neg. LLF: 99.07066388782481
Iteration: 8, Func. Count: 98, Neg. LLF: 93.977900846071
Iteration: 9, Func. Count: 109, Neg. LLF: 94.22186848623134
Iteration: 10, Func. Count: 121, Neg. LLF: 94.76835093128237
Iteration: 11, Func. Count: 133, Neg. LLF: 93.57859195420853
Iteration: 12, Func. Count: 144, Neg. LLF: 93.51657762954349
Iteration: 13, Func. Count: 155, Neg. LLF: 93.46228817123324
Iteration: 14, Func. Count: 166, Neg. LLF: 93.40726822462574
Iteration: 15, Func. Count: 177, Neg. LLF: 93.40560782677036
Iteration: 16, Func. Count: 188, Neg. LLF: 93.4019143585717
Iteration: 17, Func. Count: 199, Neg. LLF: 93.40178548278568
Iteration: 18, Func. Count: 210, Neg. LLF: 93.40176006811284
Iteration: 19, Func. Count: 221, Neg. LLF: 93.40175570335556
Iteration: 20, Func. Count: 231, Neg. LLF: 93.401755703369
Optimization terminated successfully (Exit mode 0)
Current function value: 93.40175570335556
Iterations: 20
Function evaluations: 231
Gradient evaluations: 20
Iteration: 1, Func. Count: 13, Neg. LLF: 155.44969291303696
Iteration: 2, Func. Count: 26, Neg. LLF: 286.77071347110046
Iteration: 3, Func. Count: 39, Neg. LLF: 11038991.195432968
Iteration: 4, Func. Count: 52, Neg. LLF: 109.66225570587132
Iteration: 5, Func. Count: 65, Neg. LLF: 101.09973092855358
Iteration: 6, Func. Count: 78, Neg. LLF: 95.18584370078898
Iteration: 7, Func. Count: 92, Neg. LLF: 94.27590098162506
Iteration: 8, Func. Count: 104, Neg. LLF: 94.21390832150635
Iteration: 9, Func. Count: 119, Neg. LLF: 96.58448479472388
Iteration: 10, Func. Count: 132, Neg. LLF: 99.20354265510525
Iteration: 11, Func. Count: 145, Neg. LLF: 93.9025719261115
Iteration: 12, Func. Count: 158, Neg. LLF: 93.74940735646703
Iteration: 13, Func. Count: 171, Neg. LLF: 93.44555224442963
Iteration: 14, Func. Count: 183, Neg. LLF: 93.40536557565706
Iteration: 15, Func. Count: 195, Neg. LLF: 93.40291622775993
Iteration: 16, Func. Count: 207, Neg. LLF: 93.4018324456849
Iteration: 17, Func. Count: 219, Neg. LLF: 93.40176548344303
Iteration: 18, Func. Count: 231, Neg. LLF: 93.40175613108555
Iteration: 19, Func. Count: 243, Neg. LLF: 93.40175550064316
Optimization terminated successfully (Exit mode 0)
Current function value: 93.40175550064316
Iterations: 19
Function evaluations: 243
Gradient evaluations: 19
Iteration: 1, Func. Count: 10, Neg. LLF: 100.86145083420416
Iteration: 2, Func. Count: 20, Neg. LLF: 14050484.360235153
Iteration: 3, Func. Count: 30, Neg. LLF: 4453365.543037653
Iteration: 4, Func. Count: 40, Neg. LLF: 7724689.642604793
Iteration: 5, Func. Count: 50, Neg. LLF: 766.8872421023754
Iteration: 6, Func. Count: 60, Neg. LLF: 373.1209418098886
Iteration: 7, Func. Count: 70, Neg. LLF: 94.89559097532778
Iteration: 8, Func. Count: 80, Neg. LLF: 93.18350903185238
Iteration: 9, Func. Count: 89, Neg. LLF: 93.1219392155941
Iteration: 10, Func. Count: 98, Neg. LLF: 93.07378141401495
Iteration: 11, Func. Count: 107, Neg. LLF: 93.06456506302314
Iteration: 12, Func. Count: 116, Neg. LLF: 93.06243586038303
Iteration: 13, Func. Count: 125, Neg. LLF: 93.06175367547735
Iteration: 14, Func. Count: 134, Neg. LLF: 93.06158096702421
Iteration: 15, Func. Count: 143, Neg. LLF: 93.06131449489119
Iteration: 16, Func. Count: 152, Neg. LLF: 93.06115952465257
Iteration: 17, Func. Count: 161, Neg. LLF: 93.06111968857374
Iteration: 18, Func. Count: 170, Neg. LLF: 93.06109390063206
Iteration: 19, Func. Count: 179, Neg. LLF: 93.06108663778689
Iteration: 20, Func. Count: 188, Neg. LLF: 93.06108478157554
Iteration: 21, Func. Count: 196, Neg. LLF: 93.06108463517161
Optimization terminated successfully (Exit mode 0)
Current function value: 93.06108478157554
Iterations: 21
Function evaluations: 196
Gradient evaluations: 21
Iteration: 1, Func. Count: 11, Neg. LLF: 142.4784650008025
Iteration: 2, Func. Count: 22, Neg. LLF: 189.60398866662214
Iteration: 3, Func. Count: 33, Neg. LLF: 176.797151221087
Iteration: 4, Func. Count: 44, Neg. LLF: 99.90157860625577
Iteration: 5, Func. Count: 55, Neg. LLF: 105.19970991729073
Iteration: 6, Func. Count: 66, Neg. LLF: 96.67693857660593
Iteration: 7, Func. Count: 77, Neg. LLF: 100.7150508288022
Iteration: 8, Func. Count: 88, Neg. LLF: 93.36188542224762
Iteration: 9, Func. Count: 98, Neg. LLF: 93.19448498842421
Iteration: 10, Func. Count: 108, Neg. LLF: 93.12806223427727
Iteration: 11, Func. Count: 118, Neg. LLF: 93.10241418773495
Iteration: 12, Func. Count: 128, Neg. LLF: 93.09152157794529
Iteration: 13, Func. Count: 138, Neg. LLF: 93.07684891563194
Iteration: 14, Func. Count: 148, Neg. LLF: 93.06624354043817
Iteration: 15, Func. Count: 158, Neg. LLF: 93.06368056767595
Iteration: 16, Func. Count: 168, Neg. LLF: 93.06267160522012
Iteration: 17, Func. Count: 178, Neg. LLF: 93.0617742109253
Iteration: 18, Func. Count: 188, Neg. LLF: 93.06135541725098
Iteration: 19, Func. Count: 198, Neg. LLF: 93.06117613431827
Iteration: 20, Func. Count: 208, Neg. LLF: 93.06113341028971
Iteration: 21, Func. Count: 218, Neg. LLF: 93.06111768393602
Iteration: 22, Func. Count: 228, Neg. LLF: 93.06110496463799
Iteration: 23, Func. Count: 238, Neg. LLF: 93.06109322022476
Iteration: 24, Func. Count: 248, Neg. LLF: 93.06108647124192
Iteration: 25, Func. Count: 258, Neg. LLF: 93.06108473564653
Iteration: 26, Func. Count: 267, Neg. LLF: 93.06108492459445
Optimization terminated successfully (Exit mode 0)
Current function value: 93.06108473564653
Iterations: 26
Function evaluations: 267
Gradient evaluations: 26
Iteration: 1, Func. Count: 12, Neg. LLF: 122.17190446547153
Iteration: 2, Func. Count: 24, Neg. LLF: 180.66416776299164
Iteration: 3, Func. Count: 36, Neg. LLF: 6565166.182799201
Iteration: 4, Func. Count: 48, Neg. LLF: 104.68603114555061
Iteration: 5, Func. Count: 60, Neg. LLF: 178.92746164206315
Iteration: 6, Func. Count: 72, Neg. LLF: 95.96278209014966
Iteration: 7, Func. Count: 84, Neg. LLF: 93.32307625773171
Iteration: 8, Func. Count: 95, Neg. LLF: 93.49792224881983
Iteration: 9, Func. Count: 107, Neg. LLF: 93.11878953849397
Iteration: 10, Func. Count: 118, Neg. LLF: 93.0892195272227
Iteration: 11, Func. Count: 129, Neg. LLF: 93.0770400837373
Iteration: 12, Func. Count: 140, Neg. LLF: 93.0715113900017
Iteration: 13, Func. Count: 151, Neg. LLF: 93.06422851615093
Iteration: 14, Func. Count: 162, Neg. LLF: 93.06229728120769
Iteration: 15, Func. Count: 173, Neg. LLF: 93.06180035711371
Iteration: 16, Func. Count: 184, Neg. LLF: 93.06118776249637
Iteration: 17, Func. Count: 195, Neg. LLF: 93.06112964345026
Iteration: 18, Func. Count: 206, Neg. LLF: 93.06109729502094
Iteration: 19, Func. Count: 217, Neg. LLF: 93.06109074241309
Iteration: 20, Func. Count: 228, Neg. LLF: 93.06108498782352
Iteration: 21, Func. Count: 238, Neg. LLF: 93.06108508863147
Optimization terminated successfully (Exit mode 0)
Current function value: 93.06108498782352
Iterations: 21
Function evaluations: 238
Gradient evaluations: 21
Iteration: 1, Func. Count: 13, Neg. LLF: 120.03084931607624
Iteration: 2, Func. Count: 26, Neg. LLF: 218.56118834990542
Iteration: 3, Func. Count: 39, Neg. LLF: 6624299.319292521
Iteration: 4, Func. Count: 52, Neg. LLF: 1029.1374100482315
Iteration: 5, Func. Count: 65, Neg. LLF: 184.47719065379272
Iteration: 6, Func. Count: 78, Neg. LLF: 93.77657995719622
Iteration: 7, Func. Count: 90, Neg. LLF: 131.21805220868188
Iteration: 8, Func. Count: 103, Neg. LLF: 102.65786311962862
Iteration: 9, Func. Count: 116, Neg. LLF: 94.39773892316997
Iteration: 10, Func. Count: 129, Neg. LLF: 92.94123879685117
Iteration: 11, Func. Count: 141, Neg. LLF: 92.88217755192133
Iteration: 12, Func. Count: 153, Neg. LLF: 92.83934347466709
Iteration: 13, Func. Count: 165, Neg. LLF: 92.80845739212221
Iteration: 14, Func. Count: 177, Neg. LLF: 92.80414162574957
Iteration: 15, Func. Count: 189, Neg. LLF: 92.80363143190924
Iteration: 16, Func. Count: 201, Neg. LLF: 92.80334943662719
Iteration: 17, Func. Count: 213, Neg. LLF: 92.80232193254844
Iteration: 18, Func. Count: 225, Neg. LLF: 92.80129735838626
Iteration: 19, Func. Count: 237, Neg. LLF: 92.8004959378289
Iteration: 20, Func. Count: 249, Neg. LLF: 92.80032024334514
Iteration: 21, Func. Count: 261, Neg. LLF: 92.80031027305775
Iteration: 22, Func. Count: 272, Neg. LLF: 92.8003102670912
Optimization terminated successfully (Exit mode 0)
Current function value: 92.80031027305775
Iterations: 22
Function evaluations: 272
Gradient evaluations: 22
Iteration: 1, Func. Count: 14, Neg. LLF: 118.37362003331224
Iteration: 2, Func. Count: 28, Neg. LLF: 210.95766610752048
Iteration: 3, Func. Count: 42, Neg. LLF: 6683052.562575078
Iteration: 4, Func. Count: 56, Neg. LLF: 1205.353486016207
Iteration: 5, Func. Count: 70, Neg. LLF: 160.3011905041276
Iteration: 6, Func. Count: 84, Neg. LLF: 93.92559929813436
Iteration: 7, Func. Count: 97, Neg. LLF: 94.17384747145199
Iteration: 8, Func. Count: 111, Neg. LLF: 848.7298081996579
Iteration: 9, Func. Count: 125, Neg. LLF: 93.69960564857541
Iteration: 10, Func. Count: 139, Neg. LLF: 92.94733143302659
Iteration: 11, Func. Count: 152, Neg. LLF: 92.83388440489266
Iteration: 12, Func. Count: 165, Neg. LLF: 92.87961380138846
Iteration: 13, Func. Count: 179, Neg. LLF: 92.80663632156003
Iteration: 14, Func. Count: 192, Neg. LLF: 92.80535802242778
Iteration: 15, Func. Count: 205, Neg. LLF: 92.80488765608216
Iteration: 16, Func. Count: 218, Neg. LLF: 92.80271415627459
Iteration: 17, Func. Count: 231, Neg. LLF: 92.80133424781695
Iteration: 18, Func. Count: 244, Neg. LLF: 92.80064363860583
Iteration: 19, Func. Count: 257, Neg. LLF: 92.80040274496746
Iteration: 20, Func. Count: 270, Neg. LLF: 92.80033454603075
Iteration: 21, Func. Count: 283, Neg. LLF: 92.80031165889682
Iteration: 22, Func. Count: 296, Neg. LLF: 92.80031002911095
Iteration: 23, Func. Count: 308, Neg. LLF: 92.80031009751151
Optimization terminated successfully (Exit mode 0)
Current function value: 92.80031002911095
Iterations: 23
Function evaluations: 308
Gradient evaluations: 23
Iteration: 1, Func. Count: 11, Neg. LLF: 101.3221587437751
Iteration: 2, Func. Count: 22, Neg. LLF: 12416292.15369186
Iteration: 3, Func. Count: 33, Neg. LLF: 6159339.624456759
Iteration: 4, Func. Count: 44, Neg. LLF: 7170132.17380031
Iteration: 5, Func. Count: 55, Neg. LLF: 562.1587713258848
Iteration: 6, Func. Count: 66, Neg. LLF: 310.38943605407064
Iteration: 7, Func. Count: 77, Neg. LLF: 96.20088039091198
Iteration: 8, Func. Count: 88, Neg. LLF: 93.26021269102098
Iteration: 9, Func. Count: 98, Neg. LLF: 93.15040901694691
Iteration: 10, Func. Count: 108, Neg. LLF: 93.10660254413132
Iteration: 11, Func. Count: 118, Neg. LLF: 93.09327193542515
Iteration: 12, Func. Count: 128, Neg. LLF: 93.06475619717861
Iteration: 13, Func. Count: 138, Neg. LLF: 93.06277051771596
Iteration: 14, Func. Count: 148, Neg. LLF: 93.06176221685023
Iteration: 15, Func. Count: 158, Neg. LLF: 93.06152142558662
Iteration: 16, Func. Count: 168, Neg. LLF: 93.06131900637449
Iteration: 17, Func. Count: 178, Neg. LLF: 93.06122566267757
Iteration: 18, Func. Count: 188, Neg. LLF: 93.06114308743933
Iteration: 19, Func. Count: 198, Neg. LLF: 93.0611003205136
Iteration: 20, Func. Count: 208, Neg. LLF: 93.06108613440591
Iteration: 21, Func. Count: 218, Neg. LLF: 93.06108465795914
Iteration: 22, Func. Count: 227, Neg. LLF: 93.06108470779617
Optimization terminated successfully (Exit mode 0)
Current function value: 93.06108465795914
Iterations: 22
Function evaluations: 227
Gradient evaluations: 22
Iteration: 1, Func. Count: 12, Neg. LLF: 127.46936120044509
Iteration: 2, Func. Count: 24, Neg. LLF: 178.7925824672774
Iteration: 3, Func. Count: 36, Neg. LLF: 744.3855765932011
Iteration: 4, Func. Count: 48, Neg. LLF: 103.34049389553918
Iteration: 5, Func. Count: 60, Neg. LLF: 97.96611709977894
Iteration: 6, Func. Count: 72, Neg. LLF: 94.67708745541432
Iteration: 7, Func. Count: 83, Neg. LLF: 93.9480954151491
Iteration: 8, Func. Count: 94, Neg. LLF: 408.0374174843288
Iteration: 9, Func. Count: 106, Neg. LLF: 93.45994567353885
Iteration: 10, Func. Count: 117, Neg. LLF: 93.33767848086833
Iteration: 11, Func. Count: 128, Neg. LLF: 93.28354495717515
Iteration: 12, Func. Count: 139, Neg. LLF: 93.25012850417427
Iteration: 13, Func. Count: 150, Neg. LLF: 93.22632799160363
Iteration: 14, Func. Count: 161, Neg. LLF: 93.18682877102773
Iteration: 15, Func. Count: 172, Neg. LLF: 93.15859251595383
Iteration: 16, Func. Count: 183, Neg. LLF: 93.15005893709491
Iteration: 17, Func. Count: 194, Neg. LLF: 93.13410248211422
Iteration: 18, Func. Count: 205, Neg. LLF: 93.11094096811
Iteration: 19, Func. Count: 216, Neg. LLF: 93.08184895973277
Iteration: 20, Func. Count: 227, Neg. LLF: 93.06708926329715
Iteration: 21, Func. Count: 238, Neg. LLF: 93.0639578957138
Iteration: 22, Func. Count: 249, Neg. LLF: 93.0614957754004
Iteration: 23, Func. Count: 260, Neg. LLF: 93.0611458749713
Iteration: 24, Func. Count: 271, Neg. LLF: 93.06109273067557
Iteration: 25, Func. Count: 282, Neg. LLF: 93.06108523496965
Iteration: 26, Func. Count: 293, Neg. LLF: 93.06108461047195
Optimization terminated successfully (Exit mode 0)
Current function value: 93.06108461047195
Iterations: 26
Function evaluations: 293
Gradient evaluations: 26
Iteration: 1, Func. Count: 13, Neg. LLF: 115.846887576948
Iteration: 2, Func. Count: 26, Neg. LLF: 195.67410041050303
Iteration: 3, Func. Count: 39, Neg. LLF: 6623957.035512204
Iteration: 4, Func. Count: 52, Neg. LLF: 12251295.100513767
Iteration: 5, Func. Count: 65, Neg. LLF: 354.50222029772794
Iteration: 6, Func. Count: 79, Neg. LLF: 101.57070743123381
Iteration: 7, Func. Count: 92, Neg. LLF: 93.39473281346356
Iteration: 8, Func. Count: 104, Neg. LLF: 93.21428734024916
Iteration: 9, Func. Count: 116, Neg. LLF: 93.11737255482223
Iteration: 10, Func. Count: 128, Neg. LLF: 93.08964132359125
Iteration: 11, Func. Count: 140, Neg. LLF: 93.07419266185035
Iteration: 12, Func. Count: 152, Neg. LLF: 93.06782495091068
Iteration: 13, Func. Count: 164, Neg. LLF: 93.0654341387016
Iteration: 14, Func. Count: 176, Neg. LLF: 93.06303517486145
Iteration: 15, Func. Count: 188, Neg. LLF: 93.06162771536333
Iteration: 16, Func. Count: 200, Neg. LLF: 93.06119643220099
Iteration: 17, Func. Count: 212, Neg. LLF: 93.06112031947113
Iteration: 18, Func. Count: 224, Neg. LLF: 93.06110323205183
Iteration: 19, Func. Count: 236, Neg. LLF: 93.0610938304804
Iteration: 20, Func. Count: 248, Neg. LLF: 93.06108604927549
Iteration: 21, Func. Count: 260, Neg. LLF: 93.06108474138355
Iteration: 22, Func. Count: 271, Neg. LLF: 93.0610848420979
Optimization terminated successfully (Exit mode 0)
Current function value: 93.06108474138355
Iterations: 22
Function evaluations: 271
Gradient evaluations: 22
Iteration: 1, Func. Count: 14, Neg. LLF: 112.84765696155397
Iteration: 2, Func. Count: 28, Neg. LLF: 196.2045390329503
Iteration: 3, Func. Count: 42, Neg. LLF: 6625973.728289782
Iteration: 4, Func. Count: 56, Neg. LLF: 6710954.723203465
Iteration: 5, Func. Count: 70, Neg. LLF: 422.7230095785924
Iteration: 6, Func. Count: 84, Neg. LLF: 106.33784513604063
Iteration: 7, Func. Count: 98, Neg. LLF: 102.97697697448828
Iteration: 8, Func. Count: 112, Neg. LLF: 94.22540173705688
Iteration: 9, Func. Count: 126, Neg. LLF: 93.17982660139707
Iteration: 10, Func. Count: 139, Neg. LLF: 92.95488026929002
Iteration: 11, Func. Count: 152, Neg. LLF: 92.90160871918457
Iteration: 12, Func. Count: 165, Neg. LLF: 92.8653633876594
Iteration: 13, Func. Count: 178, Neg. LLF: 92.82168719520234
Iteration: 14, Func. Count: 191, Neg. LLF: 92.81387089995329
Iteration: 15, Func. Count: 204, Neg. LLF: 92.81242776394426
Iteration: 16, Func. Count: 217, Neg. LLF: 92.81109422461357
Iteration: 17, Func. Count: 230, Neg. LLF: 92.80853944552607
Iteration: 18, Func. Count: 243, Neg. LLF: 92.80480987189192
Iteration: 19, Func. Count: 256, Neg. LLF: 92.80167631180781
Iteration: 20, Func. Count: 269, Neg. LLF: 92.80040125779429
Iteration: 21, Func. Count: 282, Neg. LLF: 92.80033088736566
Iteration: 22, Func. Count: 295, Neg. LLF: 92.80031995657278
Iteration: 23, Func. Count: 308, Neg. LLF: 92.80031327869939
Iteration: 24, Func. Count: 321, Neg. LLF: 92.80031046358496
Iteration: 25, Func. Count: 333, Neg. LLF: 92.80031045766142
Optimization terminated successfully (Exit mode 0)
Current function value: 92.80031046358496
Iterations: 25
Function evaluations: 333
Gradient evaluations: 25
Iteration: 1, Func. Count: 15, Neg. LLF: 111.87863339391276
Iteration: 2, Func. Count: 30, Neg. LLF: 192.68130067220326
Iteration: 3, Func. Count: 45, Neg. LLF: 5450078.911543357
Iteration: 4, Func. Count: 60, Neg. LLF: 2324.920593780147
Iteration: 5, Func. Count: 75, Neg. LLF: 202.64308677367532
Iteration: 6, Func. Count: 90, Neg. LLF: 96.0209086680531
Iteration: 7, Func. Count: 105, Neg. LLF: 94.19100435723108
Iteration: 8, Func. Count: 120, Neg. LLF: 93.06794650985155
Iteration: 9, Func. Count: 134, Neg. LLF: 93.54944285028385
Iteration: 10, Func. Count: 149, Neg. LLF: 93.3974458935689
Iteration: 11, Func. Count: 164, Neg. LLF: 92.94038095706935
Iteration: 12, Func. Count: 179, Neg. LLF: 92.87032681792384
Iteration: 13, Func. Count: 193, Neg. LLF: 92.81977924452877
Iteration: 14, Func. Count: 207, Neg. LLF: 92.8118760365958
Iteration: 15, Func. Count: 221, Neg. LLF: 92.81024273607859
Iteration: 16, Func. Count: 235, Neg. LLF: 92.80924218615894
Iteration: 17, Func. Count: 249, Neg. LLF: 92.80688230611716
Iteration: 18, Func. Count: 263, Neg. LLF: 92.80323709899865
Iteration: 19, Func. Count: 277, Neg. LLF: 92.80127931567009
Iteration: 20, Func. Count: 291, Neg. LLF: 92.80088435242251
Iteration: 21, Func. Count: 305, Neg. LLF: 92.8005897263849
Iteration: 22, Func. Count: 319, Neg. LLF: 92.8004346679531
Iteration: 23, Func. Count: 333, Neg. LLF: 92.80033325251867
Iteration: 24, Func. Count: 347, Neg. LLF: 92.80031156905775
Iteration: 25, Func. Count: 361, Neg. LLF: 92.80031001513409
Iteration: 26, Func. Count: 374, Neg. LLF: 92.80031008349059
Optimization terminated successfully (Exit mode 0)
Current function value: 92.80031001513409
Iterations: 26
Function evaluations: 374
Gradient evaluations: 26
Iteration: 1, Func. Count: 8, Neg. LLF: 116.9475613259132
Iteration: 2, Func. Count: 17, Neg. LLF: 327.1518596980339
Iteration: 3, Func. Count: 25, Neg. LLF: 10979.790372740454
Iteration: 4, Func. Count: 33, Neg. LLF: 218.87205068364167
Iteration: 5, Func. Count: 41, Neg. LLF: 244.8197199022382
Iteration: 6, Func. Count: 49, Neg. LLF: 98.21437112658923
Iteration: 7, Func. Count: 57, Neg. LLF: 97.15362403096684
Iteration: 8, Func. Count: 65, Neg. LLF: 96.2841639586797
Iteration: 9, Func. Count: 72, Neg. LLF: 96.24537441891526
Iteration: 10, Func. Count: 79, Neg. LLF: 96.21829840286199
Iteration: 11, Func. Count: 86, Neg. LLF: 96.2133112282622
Iteration: 12, Func. Count: 93, Neg. LLF: 96.2131272442756
Iteration: 13, Func. Count: 100, Neg. LLF: 96.21312550239561
Iteration: 14, Func. Count: 106, Neg. LLF: 96.21312563873657
Optimization terminated successfully (Exit mode 0)
Current function value: 96.21312550239561
Iterations: 14
Function evaluations: 106
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 118.68628496119074
Iteration: 2, Func. Count: 22, Neg. LLF: 5964.401733746563
Iteration: 3, Func. Count: 31, Neg. LLF: 189.21881567439024
Iteration: 4, Func. Count: 40, Neg. LLF: 98.76206478173502
Iteration: 5, Func. Count: 48, Neg. LLF: 143.3659984983462
Iteration: 6, Func. Count: 58, Neg. LLF: 120.49061173099747
Iteration: 7, Func. Count: 69, Neg. LLF: 116.075326323999
Iteration: 8, Func. Count: 79, Neg. LLF: 96.51237675929875
Iteration: 9, Func. Count: 87, Neg. LLF: 96.29302728744881
Iteration: 10, Func. Count: 95, Neg. LLF: 96.252359531137
Iteration: 11, Func. Count: 103, Neg. LLF: 96.25041349498792
Iteration: 12, Func. Count: 111, Neg. LLF: 96.2480684459449
Iteration: 13, Func. Count: 119, Neg. LLF: 96.24422858756347
Iteration: 14, Func. Count: 127, Neg. LLF: 96.23625328264313
Iteration: 15, Func. Count: 135, Neg. LLF: 96.22550953752813
Iteration: 16, Func. Count: 143, Neg. LLF: 96.21647585941274
Iteration: 17, Func. Count: 151, Neg. LLF: 96.2134673552882
Iteration: 18, Func. Count: 159, Neg. LLF: 96.21317929881077
Iteration: 19, Func. Count: 167, Neg. LLF: 96.21314695101366
Iteration: 20, Func. Count: 175, Neg. LLF: 96.21313392179763
Iteration: 21, Func. Count: 183, Neg. LLF: 96.21312707748011
Iteration: 22, Func. Count: 191, Neg. LLF: 96.2131254266727
Iteration: 23, Func. Count: 198, Neg. LLF: 96.21312543282374
Optimization terminated successfully (Exit mode 0)
Current function value: 96.2131254266727
Iterations: 23
Function evaluations: 198
Gradient evaluations: 23
Iteration: 1, Func. Count: 10, Neg. LLF: 124.33678081818735
Iteration: 2, Func. Count: 24, Neg. LLF: 2040.1752804919265
Iteration: 3, Func. Count: 34, Neg. LLF: 758.6151711416392
Iteration: 4, Func. Count: 44, Neg. LLF: 99.89302309078667
Iteration: 5, Func. Count: 54, Neg. LLF: 122.19114723178166
Iteration: 6, Func. Count: 64, Neg. LLF: 96.72151552661958
Iteration: 7, Func. Count: 73, Neg. LLF: 96.89758301652873
Iteration: 8, Func. Count: 83, Neg. LLF: 97.24227286282034
Iteration: 9, Func. Count: 93, Neg. LLF: 96.26747787534937
Iteration: 10, Func. Count: 102, Neg. LLF: 96.25114218768647
Iteration: 11, Func. Count: 111, Neg. LLF: 96.24912304344598
Iteration: 12, Func. Count: 120, Neg. LLF: 96.24575469537642
Iteration: 13, Func. Count: 129, Neg. LLF: 96.24059734983365
Iteration: 14, Func. Count: 138, Neg. LLF: 96.23078035279237
Iteration: 15, Func. Count: 147, Neg. LLF: 96.22057506792503
Iteration: 16, Func. Count: 156, Neg. LLF: 96.21443817060097
Iteration: 17, Func. Count: 165, Neg. LLF: 96.21319690165573
Iteration: 18, Func. Count: 174, Neg. LLF: 96.21312878210867
Iteration: 19, Func. Count: 183, Neg. LLF: 96.21312534984048
Iteration: 20, Func. Count: 191, Neg. LLF: 96.21312542710571
Optimization terminated successfully (Exit mode 0)
Current function value: 96.21312534984048
Iterations: 20
Function evaluations: 191
Gradient evaluations: 20
Iteration: 1, Func. Count: 11, Neg. LLF: 127.83260728740802
Iteration: 2, Func. Count: 26, Neg. LLF: 7207.322311114306
Iteration: 3, Func. Count: 37, Neg. LLF: 496.60768444889504
Iteration: 4, Func. Count: 48, Neg. LLF: 101.40031847769848
Iteration: 5, Func. Count: 59, Neg. LLF: 106.78154125985726
Iteration: 6, Func. Count: 70, Neg. LLF: 98.0238051244623
Iteration: 7, Func. Count: 81, Neg. LLF: 96.7678485711647
Iteration: 8, Func. Count: 91, Neg. LLF: 96.87888237140682
Iteration: 9, Func. Count: 102, Neg. LLF: 99.75415047834093
Iteration: 10, Func. Count: 113, Neg. LLF: 96.17879909080096
Iteration: 11, Func. Count: 123, Neg. LLF: 96.15221009830258
Iteration: 12, Func. Count: 133, Neg. LLF: 96.14111682260516
Iteration: 13, Func. Count: 143, Neg. LLF: 96.11856304955467
Iteration: 14, Func. Count: 153, Neg. LLF: 96.10014310458463
Iteration: 15, Func. Count: 163, Neg. LLF: 96.08403896432837
Iteration: 16, Func. Count: 173, Neg. LLF: 96.0677991693079
Iteration: 17, Func. Count: 183, Neg. LLF: 96.04811170108252
Iteration: 18, Func. Count: 193, Neg. LLF: 96.03626347179889
Iteration: 19, Func. Count: 203, Neg. LLF: 96.03354685805303
Iteration: 20, Func. Count: 213, Neg. LLF: 96.03329961309943
Iteration: 21, Func. Count: 223, Neg. LLF: 96.03325209010005
Iteration: 22, Func. Count: 234, Neg. LLF: 96.0325979069371
Iteration: 23, Func. Count: 244, Neg. LLF: 96.03274857166328
Iteration: 24, Func. Count: 255, Neg. LLF: 96.03258185234249
Iteration: 25, Func. Count: 264, Neg. LLF: 96.03258185234093
Optimization terminated successfully (Exit mode 0)
Current function value: 96.03258185234249
Iterations: 25
Function evaluations: 264
Gradient evaluations: 25
Iteration: 1, Func. Count: 12, Neg. LLF: 130.11539991731004
Iteration: 2, Func. Count: 28, Neg. LLF: 1553475.216783311
Iteration: 3, Func. Count: 40, Neg. LLF: 525.0439723644539
Iteration: 4, Func. Count: 52, Neg. LLF: 101.7537262916721
Iteration: 5, Func. Count: 64, Neg. LLF: 108.00114895446501
Iteration: 6, Func. Count: 76, Neg. LLF: 98.5478658358492
Iteration: 7, Func. Count: 88, Neg. LLF: 97.3146467143338
Iteration: 8, Func. Count: 100, Neg. LLF: 96.23496144244297
Iteration: 9, Func. Count: 111, Neg. LLF: 97.05322576966013
Iteration: 10, Func. Count: 124, Neg. LLF: 96.3780314563348
Iteration: 11, Func. Count: 136, Neg. LLF: 96.14631690906116
Iteration: 12, Func. Count: 147, Neg. LLF: 96.13316750807626
Iteration: 13, Func. Count: 158, Neg. LLF: 96.12146352498465
Iteration: 14, Func. Count: 169, Neg. LLF: 96.09955031797777
Iteration: 15, Func. Count: 180, Neg. LLF: 96.0677919090773
Iteration: 16, Func. Count: 191, Neg. LLF: 96.04204434967359
Iteration: 17, Func. Count: 202, Neg. LLF: 96.03353396855925
Iteration: 18, Func. Count: 213, Neg. LLF: 96.03283769309475
Iteration: 19, Func. Count: 224, Neg. LLF: 96.08653504182055
Iteration: 20, Func. Count: 237, Neg. LLF: 96.03263042036386
Iteration: 21, Func. Count: 248, Neg. LLF: 96.03252965611071
Iteration: 22, Func. Count: 259, Neg. LLF: 96.03252707669704
Iteration: 23, Func. Count: 269, Neg. LLF: 96.0325270766881
Optimization terminated successfully (Exit mode 0)
Current function value: 96.03252707669704
Iterations: 23
Function evaluations: 269
Gradient evaluations: 23
Iteration: 1, Func. Count: 9, Neg. LLF: 117.20946877573776
Iteration: 2, Func. Count: 19, Neg. LLF: 345.8917412463001
Iteration: 3, Func. Count: 28, Neg. LLF: 16383.734437018658
Iteration: 4, Func. Count: 37, Neg. LLF: 227.61734548013249
Iteration: 5, Func. Count: 46, Neg. LLF: 193.987112111951
Iteration: 6, Func. Count: 55, Neg. LLF: 98.30749307234724
Iteration: 7, Func. Count: 64, Neg. LLF: 96.99939378283177
Iteration: 8, Func. Count: 73, Neg. LLF: 97.8988219026162
Iteration: 9, Func. Count: 82, Neg. LLF: 96.25625564737207
Iteration: 10, Func. Count: 90, Neg. LLF: 96.21475868679978
Iteration: 11, Func. Count: 98, Neg. LLF: 96.19431829287863
Iteration: 12, Func. Count: 106, Neg. LLF: 96.18481258748223
Iteration: 13, Func. Count: 114, Neg. LLF: 96.18214861501359
Iteration: 14, Func. Count: 122, Neg. LLF: 96.18206921688525
Iteration: 15, Func. Count: 130, Neg. LLF: 96.1820612442361
Iteration: 16, Func. Count: 137, Neg. LLF: 96.18206116405581
Optimization terminated successfully (Exit mode 0)
Current function value: 96.1820612442361
Iterations: 16
Function evaluations: 137
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 110.64422880501758
Iteration: 2, Func. Count: 23, Neg. LLF: 457.2757551977574
Iteration: 3, Func. Count: 33, Neg. LLF: 462.27238444626556
Iteration: 4, Func. Count: 43, Neg. LLF: 109.23263814747378
Iteration: 5, Func. Count: 53, Neg. LLF: 98.28807721645461
Iteration: 6, Func. Count: 62, Neg. LLF: 98.48870019840896
Iteration: 7, Func. Count: 72, Neg. LLF: 98.22566703711168
Iteration: 8, Func. Count: 82, Neg. LLF: 98.11001766043648
Iteration: 9, Func. Count: 91, Neg. LLF: 98.0747523878348
Iteration: 10, Func. Count: 100, Neg. LLF: 98.06997183641708
Iteration: 11, Func. Count: 109, Neg. LLF: 98.0690341123515
Iteration: 12, Func. Count: 118, Neg. LLF: 98.06873661272778
Iteration: 13, Func. Count: 127, Neg. LLF: 98.06873324676064
Iteration: 14, Func. Count: 135, Neg. LLF: 98.06873324082524
Optimization terminated successfully (Exit mode 0)
Current function value: 98.06873324676064
Iterations: 14
Function evaluations: 135
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 123.82585340528087
Iteration: 2, Func. Count: 26, Neg. LLF: 49041.91616794769
Iteration: 3, Func. Count: 37, Neg. LLF: 587.2358476307675
Iteration: 4, Func. Count: 48, Neg. LLF: 99.94927482389393
Iteration: 5, Func. Count: 59, Neg. LLF: 115.89422122624458
Iteration: 6, Func. Count: 70, Neg. LLF: 97.3494639742519
Iteration: 7, Func. Count: 80, Neg. LLF: 98.85241615595803
Iteration: 8, Func. Count: 92, Neg. LLF: 99.48820474749408
Iteration: 9, Func. Count: 103, Neg. LLF: 96.30884681251287
Iteration: 10, Func. Count: 113, Neg. LLF: 96.26835328497978
Iteration: 11, Func. Count: 123, Neg. LLF: 96.25042032132859
Iteration: 12, Func. Count: 133, Neg. LLF: 96.2397151566889
Iteration: 13, Func. Count: 143, Neg. LLF: 96.22547780945797
Iteration: 14, Func. Count: 153, Neg. LLF: 96.20217025020985
Iteration: 15, Func. Count: 163, Neg. LLF: 96.17096465112576
Iteration: 16, Func. Count: 173, Neg. LLF: 96.12472180822328
Iteration: 17, Func. Count: 183, Neg. LLF: 96.07790903297395
Iteration: 18, Func. Count: 193, Neg. LLF: 96.05801760679978
Iteration: 19, Func. Count: 203, Neg. LLF: 96.03181963776461
Iteration: 20, Func. Count: 213, Neg. LLF: 96.02594863487658
Iteration: 21, Func. Count: 223, Neg. LLF: 96.02288118567391
Iteration: 22, Func. Count: 233, Neg. LLF: 96.02064202670113
Iteration: 23, Func. Count: 243, Neg. LLF: 96.01961389660418
Iteration: 24, Func. Count: 253, Neg. LLF: 96.0194839776176
Iteration: 25, Func. Count: 263, Neg. LLF: 96.01947281705327
Iteration: 26, Func. Count: 273, Neg. LLF: 96.01945860716006
Iteration: 27, Func. Count: 283, Neg. LLF: 96.01833975895708
Iteration: 28, Func. Count: 293, Neg. LLF: 95.93752722622267
Iteration: 29, Func. Count: 303, Neg. LLF: 95.91599598273925
Iteration: 30, Func. Count: 313, Neg. LLF: 95.90546349259112
Iteration: 31, Func. Count: 323, Neg. LLF: 95.90421056178482
Iteration: 32, Func. Count: 333, Neg. LLF: 95.90406167437803
Iteration: 33, Func. Count: 343, Neg. LLF: 95.90398570227937
Iteration: 34, Func. Count: 353, Neg. LLF: 95.90439494954028
Iteration: 35, Func. Count: 365, Neg. LLF: 95.90404061261505
Iteration: 36, Func. Count: 376, Neg. LLF: 95.9040419627943
Iteration: 37, Func. Count: 387, Neg. LLF: 95.90403637999412
Iteration: 38, Func. Count: 396, Neg. LLF: 95.90403635089406
Optimization terminated successfully (Exit mode 0)
Current function value: 95.90403637999412
Iterations: 39
Function evaluations: 396
Gradient evaluations: 38
Iteration: 1, Func. Count: 12, Neg. LLF: 127.16226832978263
Iteration: 2, Func. Count: 28, Neg. LLF: 9859.96447189599
Iteration: 3, Func. Count: 40, Neg. LLF: 1364.6625704309872
Iteration: 4, Func. Count: 52, Neg. LLF: 101.6554566200665
Iteration: 5, Func. Count: 64, Neg. LLF: 106.59232143565976
Iteration: 6, Func. Count: 76, Neg. LLF: 97.95095916927448
Iteration: 7, Func. Count: 88, Neg. LLF: 96.80582835998688
Iteration: 8, Func. Count: 99, Neg. LLF: 98.59529694476208
Iteration: 9, Func. Count: 113, Neg. LLF: 99.38158030332607
Iteration: 10, Func. Count: 125, Neg. LLF: 96.49803480994211
Iteration: 11, Func. Count: 137, Neg. LLF: 96.81631988129425
Iteration: 12, Func. Count: 149, Neg. LLF: 96.3246254220033
Iteration: 13, Func. Count: 161, Neg. LLF: 96.13643496990213
Iteration: 14, Func. Count: 172, Neg. LLF: 96.1245592013924
Iteration: 15, Func. Count: 183, Neg. LLF: 96.1134309624192
Iteration: 16, Func. Count: 194, Neg. LLF: 96.05919278730639
Iteration: 17, Func. Count: 205, Neg. LLF: 96.01865271860058
Iteration: 18, Func. Count: 216, Neg. LLF: 96.00548306881365
Iteration: 19, Func. Count: 227, Neg. LLF: 95.99973260175835
Iteration: 20, Func. Count: 238, Neg. LLF: 95.99772929643228
Iteration: 21, Func. Count: 249, Neg. LLF: 95.99705185388635
Iteration: 22, Func. Count: 260, Neg. LLF: 95.99692872663785
Iteration: 23, Func. Count: 271, Neg. LLF: 95.99691500734885
Iteration: 24, Func. Count: 282, Neg. LLF: 95.99690904538147
Iteration: 25, Func. Count: 293, Neg. LLF: 95.99690103654852
Iteration: 26, Func. Count: 304, Neg. LLF: 95.99689932065623
Iteration: 27, Func. Count: 314, Neg. LLF: 95.99689932068213
Optimization terminated successfully (Exit mode 0)
Current function value: 95.99689932065623
Iterations: 27
Function evaluations: 314
Gradient evaluations: 27
Iteration: 1, Func. Count: 13, Neg. LLF: 129.2467457945063
Iteration: 2, Func. Count: 30, Neg. LLF: 1987.3424738343167
Iteration: 3, Func. Count: 43, Neg. LLF: 500.9916882282713
Iteration: 4, Func. Count: 56, Neg. LLF: 102.2726363050037
Iteration: 5, Func. Count: 69, Neg. LLF: 108.35976551479614
Iteration: 6, Func. Count: 82, Neg. LLF: 98.73187419977354
Iteration: 7, Func. Count: 95, Neg. LLF: 101.03252594129687
Iteration: 8, Func. Count: 108, Neg. LLF: 97.9365368325848
Iteration: 9, Func. Count: 121, Neg. LLF: 96.20991285287364
Iteration: 10, Func. Count: 133, Neg. LLF: 96.3521451596079
Iteration: 11, Func. Count: 146, Neg. LLF: 96.16811184323205
Iteration: 12, Func. Count: 159, Neg. LLF: 96.12475120085705
Iteration: 13, Func. Count: 171, Neg. LLF: 96.11246295352228
Iteration: 14, Func. Count: 183, Neg. LLF: 96.09020426780069
Iteration: 15, Func. Count: 195, Neg. LLF: 96.03916327547691
Iteration: 16, Func. Count: 207, Neg. LLF: 96.01546425418718
Iteration: 17, Func. Count: 219, Neg. LLF: 96.00225929745521
Iteration: 18, Func. Count: 231, Neg. LLF: 96.00224059740681
Iteration: 19, Func. Count: 244, Neg. LLF: 95.99942198869161
Iteration: 20, Func. Count: 257, Neg. LLF: 95.99341150991036
Iteration: 21, Func. Count: 269, Neg. LLF: 95.99330184091552
Iteration: 22, Func. Count: 281, Neg. LLF: 95.99329674943783
Iteration: 23, Func. Count: 292, Neg. LLF: 95.99329674939506
Optimization terminated successfully (Exit mode 0)
Current function value: 95.99329674943783
Iterations: 23
Function evaluations: 292
Gradient evaluations: 23
Iteration: 1, Func. Count: 10, Neg. LLF: 106.0761426190728
Iteration: 2, Func. Count: 20, Neg. LLF: 172.93669730987395
Iteration: 3, Func. Count: 30, Neg. LLF: 857.9131132008918
Iteration: 4, Func. Count: 40, Neg. LLF: 226.79789467050307
Iteration: 5, Func. Count: 50, Neg. LLF: 35630443.2638861
Iteration: 6, Func. Count: 60, Neg. LLF: 2451.3166019486234
Iteration: 7, Func. Count: 70, Neg. LLF: 114.44518323404328
Iteration: 8, Func. Count: 80, Neg. LLF: 93.96021072693549
Iteration: 9, Func. Count: 89, Neg. LLF: 93.81517760677386
Iteration: 10, Func. Count: 98, Neg. LLF: 93.80685512062658
Iteration: 11, Func. Count: 107, Neg. LLF: 93.78616948350214
Iteration: 12, Func. Count: 116, Neg. LLF: 93.77406912603712
Iteration: 13, Func. Count: 125, Neg. LLF: 93.7665985203218
Iteration: 14, Func. Count: 134, Neg. LLF: 93.76354649608695
Iteration: 15, Func. Count: 143, Neg. LLF: 93.76339565778764
Iteration: 16, Func. Count: 152, Neg. LLF: 93.76328989168069
Iteration: 17, Func. Count: 161, Neg. LLF: 93.76324082709877
Iteration: 18, Func. Count: 170, Neg. LLF: 93.76322849616781
Iteration: 19, Func. Count: 179, Neg. LLF: 93.76322650513269
Iteration: 20, Func. Count: 187, Neg. LLF: 93.76322650513092
Optimization terminated successfully (Exit mode 0)
Current function value: 93.76322650513269
Iterations: 20
Function evaluations: 187
Gradient evaluations: 20
Iteration: 1, Func. Count: 11, Neg. LLF: 168.09907933066916
Iteration: 2, Func. Count: 22, Neg. LLF: 228.55801071060344
Iteration: 3, Func. Count: 33, Neg. LLF: 161.5419424069888
Iteration: 4, Func. Count: 44, Neg. LLF: 128.4248510935018
Iteration: 5, Func. Count: 55, Neg. LLF: 104.77578582322477
Iteration: 6, Func. Count: 66, Neg. LLF: 95.89952589717184
Iteration: 7, Func. Count: 77, Neg. LLF: 94.4361740026867
Iteration: 8, Func. Count: 87, Neg. LLF: 96.54369773453736
Iteration: 9, Func. Count: 100, Neg. LLF: 94.52474707798517
Iteration: 10, Func. Count: 111, Neg. LLF: 93.97542213956096
Iteration: 11, Func. Count: 121, Neg. LLF: 93.85532809638502
Iteration: 12, Func. Count: 131, Neg. LLF: 93.82621286884459
Iteration: 13, Func. Count: 141, Neg. LLF: 93.79492519424149
Iteration: 14, Func. Count: 151, Neg. LLF: 93.78061033820578
Iteration: 15, Func. Count: 161, Neg. LLF: 93.77410426942154
Iteration: 16, Func. Count: 171, Neg. LLF: 93.77173928445225
Iteration: 17, Func. Count: 181, Neg. LLF: 93.76962656183379
Iteration: 18, Func. Count: 191, Neg. LLF: 93.76624917348119
Iteration: 19, Func. Count: 201, Neg. LLF: 93.7638796388096
Iteration: 20, Func. Count: 211, Neg. LLF: 93.76330713841358
Iteration: 21, Func. Count: 221, Neg. LLF: 93.76323402457237
Iteration: 22, Func. Count: 231, Neg. LLF: 93.76322632765503
Iteration: 23, Func. Count: 240, Neg. LLF: 93.76322646494906
Optimization terminated successfully (Exit mode 0)
Current function value: 93.76322632765503
Iterations: 23
Function evaluations: 240
Gradient evaluations: 23
Iteration: 1, Func. Count: 12, Neg. LLF: 139.15489149373954
Iteration: 2, Func. Count: 24, Neg. LLF: 200.04070916886806
Iteration: 3, Func. Count: 36, Neg. LLF: 10933883.484311927
Iteration: 4, Func. Count: 48, Neg. LLF: 108.41782739690234
Iteration: 5, Func. Count: 60, Neg. LLF: 104.08779116015447
Iteration: 6, Func. Count: 72, Neg. LLF: 95.71721504145802
Iteration: 7, Func. Count: 84, Neg. LLF: 95.269604471095
Iteration: 8, Func. Count: 96, Neg. LLF: 94.12304011736357
Iteration: 9, Func. Count: 107, Neg. LLF: 94.06815699920752
Iteration: 10, Func. Count: 119, Neg. LLF: 93.8699348387164
Iteration: 11, Func. Count: 130, Neg. LLF: 93.80985429828725
Iteration: 12, Func. Count: 141, Neg. LLF: 93.77762727809952
Iteration: 13, Func. Count: 152, Neg. LLF: 93.76928699335649
Iteration: 14, Func. Count: 163, Neg. LLF: 93.76520576172908
Iteration: 15, Func. Count: 174, Neg. LLF: 93.76418959071655
Iteration: 16, Func. Count: 185, Neg. LLF: 93.76348454057297
Iteration: 17, Func. Count: 196, Neg. LLF: 93.76324447914556
Iteration: 18, Func. Count: 207, Neg. LLF: 93.76322647613439
Iteration: 19, Func. Count: 217, Neg. LLF: 93.76322652745968
Optimization terminated successfully (Exit mode 0)
Current function value: 93.76322647613439
Iterations: 19
Function evaluations: 217
Gradient evaluations: 19
Iteration: 1, Func. Count: 13, Neg. LLF: 133.7241432337113
Iteration: 2, Func. Count: 26, Neg. LLF: 200.4029648950745
Iteration: 3, Func. Count: 39, Neg. LLF: 11138952.42372722
Iteration: 4, Func. Count: 52, Neg. LLF: 176.81469724859448
Iteration: 5, Func. Count: 65, Neg. LLF: 96.86821262603371
Iteration: 6, Func. Count: 78, Neg. LLF: 94.83515804340568
Iteration: 7, Func. Count: 91, Neg. LLF: 94.69476637096433
Iteration: 8, Func. Count: 104, Neg. LLF: 96.95155217094717
Iteration: 9, Func. Count: 117, Neg. LLF: 93.6326886036755
Iteration: 10, Func. Count: 129, Neg. LLF: 94.16475943369527
Iteration: 11, Func. Count: 142, Neg. LLF: 94.03961659548375
Iteration: 12, Func. Count: 155, Neg. LLF: 93.42955499226568
Iteration: 13, Func. Count: 167, Neg. LLF: 93.40598436283535
Iteration: 14, Func. Count: 179, Neg. LLF: 93.4020197682987
Iteration: 15, Func. Count: 191, Neg. LLF: 93.40185069964264
Iteration: 16, Func. Count: 203, Neg. LLF: 93.40178494751883
Iteration: 17, Func. Count: 215, Neg. LLF: 93.40177573233213
Iteration: 18, Func. Count: 227, Neg. LLF: 93.40175742209247
Iteration: 19, Func. Count: 239, Neg. LLF: 93.40175562380702
Iteration: 20, Func. Count: 250, Neg. LLF: 93.40175562378504
Optimization terminated successfully (Exit mode 0)
Current function value: 93.40175562380702
Iterations: 20
Function evaluations: 250
Gradient evaluations: 20
Iteration: 1, Func. Count: 14, Neg. LLF: 130.56876767428744
Iteration: 2, Func. Count: 28, Neg. LLF: 194.47645718711152
Iteration: 3, Func. Count: 42, Neg. LLF: 22411.13833931409
Iteration: 4, Func. Count: 56, Neg. LLF: 200.03879427300134
Iteration: 5, Func. Count: 70, Neg. LLF: 97.81453179034912
Iteration: 6, Func. Count: 84, Neg. LLF: 95.35291366936956
Iteration: 7, Func. Count: 98, Neg. LLF: 94.76034694516696
Iteration: 8, Func. Count: 112, Neg. LLF: 93.93879864128397
Iteration: 9, Func. Count: 125, Neg. LLF: 95.99837339962468
Iteration: 10, Func. Count: 140, Neg. LLF: 99.03305504268221
Iteration: 11, Func. Count: 155, Neg. LLF: 95.24223558833839
Iteration: 12, Func. Count: 169, Neg. LLF: 93.48972029484118
Iteration: 13, Func. Count: 182, Neg. LLF: 93.4425268937065
Iteration: 14, Func. Count: 195, Neg. LLF: 93.4226582291881
Iteration: 15, Func. Count: 208, Neg. LLF: 93.40990360064055
Iteration: 16, Func. Count: 221, Neg. LLF: 93.40291460012006
Iteration: 17, Func. Count: 234, Neg. LLF: 93.40196592381805
Iteration: 18, Func. Count: 247, Neg. LLF: 93.4018536222185
Iteration: 19, Func. Count: 260, Neg. LLF: 93.40181636047585
Iteration: 20, Func. Count: 273, Neg. LLF: 93.40176846996799
Iteration: 21, Func. Count: 286, Neg. LLF: 93.40175718930318
Iteration: 22, Func. Count: 299, Neg. LLF: 93.40175554713561
Iteration: 23, Func. Count: 311, Neg. LLF: 93.4017556023626
Optimization terminated successfully (Exit mode 0)
Current function value: 93.40175554713561
Iterations: 23
Function evaluations: 311
Gradient evaluations: 23
Iteration: 1, Func. Count: 11, Neg. LLF: 103.38122593464061
Iteration: 2, Func. Count: 23, Neg. LLF: 11040066.713696001
Iteration: 3, Func. Count: 34, Neg. LLF: 518.9157074161747
Iteration: 4, Func. Count: 45, Neg. LLF: 6845160.4567578025
Iteration: 5, Func. Count: 56, Neg. LLF: 37756.76013929308
Iteration: 6, Func. Count: 67, Neg. LLF: 307.70907228051965
Iteration: 7, Func. Count: 78, Neg. LLF: 93.71042896362778
Iteration: 8, Func. Count: 88, Neg. LLF: 93.35609161467144
Iteration: 9, Func. Count: 98, Neg. LLF: 93.24190384698362
Iteration: 10, Func. Count: 108, Neg. LLF: 93.24339707339148
Iteration: 11, Func. Count: 119, Neg. LLF: 93.13000324909844
Iteration: 12, Func. Count: 129, Neg. LLF: 93.08768237881071
Iteration: 13, Func. Count: 139, Neg. LLF: 93.07331108701595
Iteration: 14, Func. Count: 149, Neg. LLF: 93.06656750065214
Iteration: 15, Func. Count: 159, Neg. LLF: 93.06379126755479
Iteration: 16, Func. Count: 169, Neg. LLF: 93.06242639809729
Iteration: 17, Func. Count: 179, Neg. LLF: 93.06138133835354
Iteration: 18, Func. Count: 189, Neg. LLF: 93.06111946978946
Iteration: 19, Func. Count: 199, Neg. LLF: 93.06108702927189
Iteration: 20, Func. Count: 209, Neg. LLF: 93.06108466057131
Iteration: 21, Func. Count: 218, Neg. LLF: 93.0610845141623
Optimization terminated successfully (Exit mode 0)
Current function value: 93.06108466057131
Iterations: 21
Function evaluations: 218
Gradient evaluations: 21
Iteration: 1, Func. Count: 12, Neg. LLF: 117.59627125928306
Iteration: 2, Func. Count: 24, Neg. LLF: 173.05635575569576
Iteration: 3, Func. Count: 36, Neg. LLF: 118.71053241513913
Iteration: 4, Func. Count: 48, Neg. LLF: 115.21351393055072
Iteration: 5, Func. Count: 60, Neg. LLF: 96.70859290731683
Iteration: 6, Func. Count: 72, Neg. LLF: 95.798945800032
Iteration: 7, Func. Count: 84, Neg. LLF: 93.8765814095743
Iteration: 8, Func. Count: 95, Neg. LLF: 93.25407196004925
Iteration: 9, Func. Count: 106, Neg. LLF: 93.33171384951032
Iteration: 10, Func. Count: 118, Neg. LLF: 93.09408120011179
Iteration: 11, Func. Count: 129, Neg. LLF: 93.08011284657698
Iteration: 12, Func. Count: 140, Neg. LLF: 93.06917191402817
Iteration: 13, Func. Count: 151, Neg. LLF: 93.06515472510989
Iteration: 14, Func. Count: 162, Neg. LLF: 93.06171970263726
Iteration: 15, Func. Count: 173, Neg. LLF: 93.06118006198126
Iteration: 16, Func. Count: 184, Neg. LLF: 93.06109220138428
Iteration: 17, Func. Count: 195, Neg. LLF: 93.06108664796497
Iteration: 18, Func. Count: 206, Neg. LLF: 93.06108505411616
Iteration: 19, Func. Count: 216, Neg. LLF: 93.06108524295439
Optimization terminated successfully (Exit mode 0)
Current function value: 93.06108505411616
Iterations: 19
Function evaluations: 216
Gradient evaluations: 19
Iteration: 1, Func. Count: 13, Neg. LLF: 114.74273882654936
Iteration: 2, Func. Count: 26, Neg. LLF: 178.4356729568977
Iteration: 3, Func. Count: 39, Neg. LLF: 4876404.695201148
Iteration: 4, Func. Count: 52, Neg. LLF: 796.7706279512362
Iteration: 5, Func. Count: 65, Neg. LLF: 2720159.923386226
Iteration: 6, Func. Count: 78, Neg. LLF: 94.60275656887536
Iteration: 7, Func. Count: 91, Neg. LLF: 93.14325162241207
Iteration: 8, Func. Count: 103, Neg. LLF: 93.10688325458565
Iteration: 9, Func. Count: 115, Neg. LLF: 93.08916212205763
Iteration: 10, Func. Count: 127, Neg. LLF: 93.07134817740034
Iteration: 11, Func. Count: 139, Neg. LLF: 93.06562349982613
Iteration: 12, Func. Count: 151, Neg. LLF: 93.06278731007231
Iteration: 13, Func. Count: 163, Neg. LLF: 93.06184705038696
Iteration: 14, Func. Count: 175, Neg. LLF: 93.06128795429774
Iteration: 15, Func. Count: 187, Neg. LLF: 93.0611580646533
Iteration: 16, Func. Count: 199, Neg. LLF: 93.06111230675704
Iteration: 17, Func. Count: 211, Neg. LLF: 93.06109734350672
Iteration: 18, Func. Count: 223, Neg. LLF: 93.06108627136845
Iteration: 19, Func. Count: 235, Neg. LLF: 93.06108474629886
Iteration: 20, Func. Count: 246, Neg. LLF: 93.06108484706606
Optimization terminated successfully (Exit mode 0)
Current function value: 93.06108474629886
Iterations: 20
Function evaluations: 246
Gradient evaluations: 20
Iteration: 1, Func. Count: 14, Neg. LLF: 113.70871586214626
Iteration: 2, Func. Count: 28, Neg. LLF: 179.66943404002893
Iteration: 3, Func. Count: 42, Neg. LLF: 4370516.536777766
Iteration: 4, Func. Count: 56, Neg. LLF: 814.3374666443084
Iteration: 5, Func. Count: 70, Neg. LLF: 18600.408374001654
Iteration: 6, Func. Count: 84, Neg. LLF: 105.36913232594058
Iteration: 7, Func. Count: 98, Neg. LLF: 93.16740098045507
Iteration: 8, Func. Count: 111, Neg. LLF: 92.96628706282105
Iteration: 9, Func. Count: 124, Neg. LLF: 92.95606765646606
Iteration: 10, Func. Count: 138, Neg. LLF: 92.90768714822578
Iteration: 11, Func. Count: 151, Neg. LLF: 92.85200732895525
Iteration: 12, Func. Count: 164, Neg. LLF: 92.82530710231768
Iteration: 13, Func. Count: 177, Neg. LLF: 92.80956427737472
Iteration: 14, Func. Count: 190, Neg. LLF: 92.80703869087188
Iteration: 15, Func. Count: 203, Neg. LLF: 92.8063869248706
Iteration: 16, Func. Count: 216, Neg. LLF: 92.80524339215316
Iteration: 17, Func. Count: 229, Neg. LLF: 92.80296995846723
Iteration: 18, Func. Count: 242, Neg. LLF: 92.80121619280824
Iteration: 19, Func. Count: 255, Neg. LLF: 92.80043360050153
Iteration: 20, Func. Count: 268, Neg. LLF: 92.8003212508154
Iteration: 21, Func. Count: 281, Neg. LLF: 92.800311345159
Iteration: 22, Func. Count: 294, Neg. LLF: 92.80031001688228
Iteration: 23, Func. Count: 306, Neg. LLF: 92.80031001093406
Optimization terminated successfully (Exit mode 0)
Current function value: 92.80031001688228
Iterations: 23
Function evaluations: 306
Gradient evaluations: 23
Iteration: 1, Func. Count: 15, Neg. LLF: 112.31820856488848
Iteration: 2, Func. Count: 30, Neg. LLF: 175.22836792536395
Iteration: 3, Func. Count: 45, Neg. LLF: 55633.28112248992
Iteration: 4, Func. Count: 60, Neg. LLF: 11470.531414043575
Iteration: 5, Func. Count: 75, Neg. LLF: 5239.920994708142
Iteration: 6, Func. Count: 90, Neg. LLF: 106.7471362757872
Iteration: 7, Func. Count: 105, Neg. LLF: 108.97088883634746
Iteration: 8, Func. Count: 120, Neg. LLF: 93.34160116946941
Iteration: 9, Func. Count: 134, Neg. LLF: 93.20147016358784
Iteration: 10, Func. Count: 149, Neg. LLF: 93.24044960481704
Iteration: 11, Func. Count: 164, Neg. LLF: 92.89718488330664
Iteration: 12, Func. Count: 178, Neg. LLF: 92.8365356732699
Iteration: 13, Func. Count: 192, Neg. LLF: 92.81485769948922
Iteration: 14, Func. Count: 206, Neg. LLF: 92.81131618089128
Iteration: 15, Func. Count: 220, Neg. LLF: 92.81005112802548
Iteration: 16, Func. Count: 234, Neg. LLF: 92.80702097037218
Iteration: 17, Func. Count: 248, Neg. LLF: 92.8043910806195
Iteration: 18, Func. Count: 262, Neg. LLF: 92.80277091797926
Iteration: 19, Func. Count: 276, Neg. LLF: 92.80180499491418
Iteration: 20, Func. Count: 290, Neg. LLF: 92.80085257255865
Iteration: 21, Func. Count: 304, Neg. LLF: 92.80057874089567
Iteration: 22, Func. Count: 318, Neg. LLF: 92.80046500731483
Iteration: 23, Func. Count: 332, Neg. LLF: 92.8003693918485
Iteration: 24, Func. Count: 346, Neg. LLF: 92.80032135756842
Iteration: 25, Func. Count: 360, Neg. LLF: 92.8003111917309
Iteration: 26, Func. Count: 374, Neg. LLF: 92.80031004419067
Iteration: 27, Func. Count: 387, Neg. LLF: 92.80031011259763
Optimization terminated successfully (Exit mode 0)
Current function value: 92.80031004419067
Iterations: 27
Function evaluations: 387
Gradient evaluations: 27
Iteration: 1, Func. Count: 12, Neg. LLF: 103.4210843464109
Iteration: 2, Func. Count: 25, Neg. LLF: 13169574.808832407
Iteration: 3, Func. Count: 37, Neg. LLF: 2874605.340198308
Iteration: 4, Func. Count: 49, Neg. LLF: 7015782.500657341
Iteration: 5, Func. Count: 61, Neg. LLF: 3038.474089427213
Iteration: 6, Func. Count: 73, Neg. LLF: 278.12870201113265
Iteration: 7, Func. Count: 85, Neg. LLF: 93.67822323748142
Iteration: 8, Func. Count: 96, Neg. LLF: 93.35361184658697
Iteration: 9, Func. Count: 107, Neg. LLF: 93.25154795297716
Iteration: 10, Func. Count: 118, Neg. LLF: 93.22095363972998
Iteration: 11, Func. Count: 130, Neg. LLF: 93.10656639897553
Iteration: 12, Func. Count: 141, Neg. LLF: 93.07821513635409
Iteration: 13, Func. Count: 152, Neg. LLF: 93.07035569357745
Iteration: 14, Func. Count: 163, Neg. LLF: 93.06785108788813
Iteration: 15, Func. Count: 174, Neg. LLF: 93.06289438030915
Iteration: 16, Func. Count: 185, Neg. LLF: 93.06213479679991
Iteration: 17, Func. Count: 196, Neg. LLF: 93.0611444847533
Iteration: 18, Func. Count: 207, Neg. LLF: 93.0610900579991
Iteration: 19, Func. Count: 218, Neg. LLF: 93.06108464927432
Iteration: 20, Func. Count: 228, Neg. LLF: 93.06108469911437
Optimization terminated successfully (Exit mode 0)
Current function value: 93.06108464927432
Iterations: 20
Function evaluations: 228
Gradient evaluations: 20
Iteration: 1, Func. Count: 13, Neg. LLF: 109.2074256007815
Iteration: 2, Func. Count: 26, Neg. LLF: 178.0576362399942
Iteration: 3, Func. Count: 39, Neg. LLF: 134.05718736221704
Iteration: 4, Func. Count: 52, Neg. LLF: 5556.651149146063
Iteration: 5, Func. Count: 65, Neg. LLF: 6711161.592579438
Iteration: 6, Func. Count: 78, Neg. LLF: 105.55339311637061
Iteration: 7, Func. Count: 91, Neg. LLF: 93.3239645023448
Iteration: 8, Func. Count: 103, Neg. LLF: 93.23400660578278
Iteration: 9, Func. Count: 115, Neg. LLF: 93.15448527990392
Iteration: 10, Func. Count: 127, Neg. LLF: 93.0708205050279
Iteration: 11, Func. Count: 139, Neg. LLF: 93.0633767350765
Iteration: 12, Func. Count: 151, Neg. LLF: 93.06227990315088
Iteration: 13, Func. Count: 163, Neg. LLF: 93.0616082216313
Iteration: 14, Func. Count: 175, Neg. LLF: 93.06137072735628
Iteration: 15, Func. Count: 187, Neg. LLF: 93.06117804776385
Iteration: 16, Func. Count: 199, Neg. LLF: 93.06111571104262
Iteration: 17, Func. Count: 211, Neg. LLF: 93.06109097876164
Iteration: 18, Func. Count: 223, Neg. LLF: 93.06108575243262
Iteration: 19, Func. Count: 235, Neg. LLF: 93.06108471672074
Iteration: 20, Func. Count: 246, Neg. LLF: 93.06108490559296
Optimization terminated successfully (Exit mode 0)
Current function value: 93.06108471672074
Iterations: 20
Function evaluations: 246
Gradient evaluations: 20
Iteration: 1, Func. Count: 14, Neg. LLF: 108.74550513278241
Iteration: 2, Func. Count: 28, Neg. LLF: 172.53800631636415
Iteration: 3, Func. Count: 42, Neg. LLF: 5890119.702447955
Iteration: 4, Func. Count: 56, Neg. LLF: 1800.7612542396778
Iteration: 5, Func. Count: 70, Neg. LLF: 2708862.7401122022
Iteration: 6, Func. Count: 84, Neg. LLF: 94.43707207808082
Iteration: 7, Func. Count: 98, Neg. LLF: 93.13335983871855
Iteration: 8, Func. Count: 111, Neg. LLF: 93.10682533910062
Iteration: 9, Func. Count: 124, Neg. LLF: 93.07895337574084
Iteration: 10, Func. Count: 137, Neg. LLF: 93.07057346298052
Iteration: 11, Func. Count: 150, Neg. LLF: 93.06620402981342
Iteration: 12, Func. Count: 163, Neg. LLF: 93.06347000118286
Iteration: 13, Func. Count: 176, Neg. LLF: 93.0618434560398
Iteration: 14, Func. Count: 189, Neg. LLF: 93.06123889189547
Iteration: 15, Func. Count: 202, Neg. LLF: 93.06111937014165
Iteration: 16, Func. Count: 215, Neg. LLF: 93.0610879214526
Iteration: 17, Func. Count: 228, Neg. LLF: 93.06108514639814
Iteration: 18, Func. Count: 241, Neg. LLF: 93.0610846039245
Optimization terminated successfully (Exit mode 0)
Current function value: 93.0610846039245
Iterations: 18
Function evaluations: 241
Gradient evaluations: 18
Iteration: 1, Func. Count: 15, Neg. LLF: 107.8203249916237
Iteration: 2, Func. Count: 30, Neg. LLF: 176.04760204803688
Iteration: 3, Func. Count: 45, Neg. LLF: 5533775.742575038
Iteration: 4, Func. Count: 60, Neg. LLF: 2621.764159552014
Iteration: 5, Func. Count: 75, Neg. LLF: 6439505.13412294
Iteration: 6, Func. Count: 90, Neg. LLF: 102.59032384514232
Iteration: 7, Func. Count: 105, Neg. LLF: 93.93912369185864
Iteration: 8, Func. Count: 120, Neg. LLF: 96.11675767824595
Iteration: 9, Func. Count: 135, Neg. LLF: 92.96658256029758
Iteration: 10, Func. Count: 149, Neg. LLF: 92.91357586967996
Iteration: 11, Func. Count: 163, Neg. LLF: 92.86305604373683
Iteration: 12, Func. Count: 177, Neg. LLF: 92.83938954857638
Iteration: 13, Func. Count: 191, Neg. LLF: 92.8212842758111
Iteration: 14, Func. Count: 205, Neg. LLF: 92.81678799943354
Iteration: 15, Func. Count: 219, Neg. LLF: 92.81558103700377
Iteration: 16, Func. Count: 233, Neg. LLF: 92.8089060916632
Iteration: 17, Func. Count: 247, Neg. LLF: 92.80389639101438
Iteration: 18, Func. Count: 261, Neg. LLF: 92.80193201058218
Iteration: 19, Func. Count: 275, Neg. LLF: 92.80132774566688
Iteration: 20, Func. Count: 289, Neg. LLF: 92.80103257265627
Iteration: 21, Func. Count: 303, Neg. LLF: 92.80052980983449
Iteration: 22, Func. Count: 317, Neg. LLF: 92.8003419181798
Iteration: 23, Func. Count: 331, Neg. LLF: 92.80031161060842
Iteration: 24, Func. Count: 345, Neg. LLF: 92.80031003273942
Iteration: 25, Func. Count: 358, Neg. LLF: 92.80031002681396
Optimization terminated successfully (Exit mode 0)
Current function value: 92.80031003273942
Iterations: 25
Function evaluations: 358
Gradient evaluations: 25
Iteration: 1, Func. Count: 16, Neg. LLF: 106.87087192133147
Iteration: 2, Func. Count: 32, Neg. LLF: 171.4318090943394
Iteration: 3, Func. Count: 48, Neg. LLF: 3290654.5391515237
Iteration: 4, Func. Count: 64, Neg. LLF: 2555.1835406629884
Iteration: 5, Func. Count: 80, Neg. LLF: 6474023.953674
Iteration: 6, Func. Count: 96, Neg. LLF: 102.61081348466335
Iteration: 7, Func. Count: 112, Neg. LLF: 93.87559753326217
Iteration: 8, Func. Count: 128, Neg. LLF: 96.82212696935582
Iteration: 9, Func. Count: 144, Neg. LLF: 93.00068878844533
Iteration: 10, Func. Count: 159, Neg. LLF: 92.9048854130619
Iteration: 11, Func. Count: 174, Neg. LLF: 92.94144239935581
Iteration: 12, Func. Count: 190, Neg. LLF: 92.85772584077463
Iteration: 13, Func. Count: 205, Neg. LLF: 92.83661420295346
Iteration: 14, Func. Count: 220, Neg. LLF: 92.82410589622583
Iteration: 15, Func. Count: 235, Neg. LLF: 92.82245604410801
Iteration: 16, Func. Count: 250, Neg. LLF: 92.8145406692764
Iteration: 17, Func. Count: 265, Neg. LLF: 92.80749296738102
Iteration: 18, Func. Count: 280, Neg. LLF: 92.80555544339747
Iteration: 19, Func. Count: 295, Neg. LLF: 92.8042746513101
Iteration: 20, Func. Count: 310, Neg. LLF: 92.80230296104932
Iteration: 21, Func. Count: 325, Neg. LLF: 92.80090695758184
Iteration: 22, Func. Count: 340, Neg. LLF: 92.80039120283107
Iteration: 23, Func. Count: 355, Neg. LLF: 92.80032079363383
Iteration: 24, Func. Count: 370, Neg. LLF: 92.80031069003526
Iteration: 25, Func. Count: 385, Neg. LLF: 92.80030998218011
Optimization terminated successfully (Exit mode 0)
Current function value: 92.80030998218011
Iterations: 25
Function evaluations: 385
Gradient evaluations: 25
Iteration: 1, Func. Count: 6, Neg. LLF: 119.03075133935188
Iteration: 2, Func. Count: 13, Neg. LLF: 418578948.9264861
Iteration: 3, Func. Count: 19, Neg. LLF: 11039432.398867315
Iteration: 4, Func. Count: 25, Neg. LLF: 4848295.1339171035
Iteration: 5, Func. Count: 31, Neg. LLF: 103.18565322800319
Iteration: 6, Func. Count: 37, Neg. LLF: 101.38877222747769
Iteration: 7, Func. Count: 43, Neg. LLF: 95.81887846169984
Iteration: 8, Func. Count: 48, Neg. LLF: 95.75054265033614
Iteration: 9, Func. Count: 53, Neg. LLF: 95.73489275928762
Iteration: 10, Func. Count: 58, Neg. LLF: 95.69511832747658
Iteration: 11, Func. Count: 63, Neg. LLF: 95.64770116246514
Iteration: 12, Func. Count: 68, Neg. LLF: 95.64310624848741
Iteration: 13, Func. Count: 73, Neg. LLF: 95.64280758073431
Iteration: 14, Func. Count: 78, Neg. LLF: 95.64278979745998
Iteration: 15, Func. Count: 82, Neg. LLF: 95.64278979747377
Optimization terminated successfully (Exit mode 0)
Current function value: 95.64278979745998
Iterations: 15
Function evaluations: 82
Gradient evaluations: 15
Iteration: 1, Func. Count: 5, Neg. LLF: 122.56598960775811
Iteration: 2, Func. Count: 11, Neg. LLF: 110.221973634347
Iteration: 3, Func. Count: 16, Neg. LLF: 103.97760341371279
Iteration: 4, Func. Count: 20, Neg. LLF: 103.32548911968581
Iteration: 5, Func. Count: 24, Neg. LLF: 103.29356442237035
Iteration: 6, Func. Count: 28, Neg. LLF: 103.28092531962733
Iteration: 7, Func. Count: 32, Neg. LLF: 103.28077363045378
Iteration: 8, Func. Count: 36, Neg. LLF: 103.28077203731415
Iteration: 9, Func. Count: 39, Neg. LLF: 103.28077207497208
Optimization terminated successfully (Exit mode 0)
Current function value: 103.28077203731415
Iterations: 9
Function evaluations: 39
Gradient evaluations: 9
Iteration: 1, Func. Count: 6, Neg. LLF: 110.96977941878939
Iteration: 2, Func. Count: 15, Neg. LLF: 232.3003298874285
Iteration: 3, Func. Count: 21, Neg. LLF: 605.5479235637922
Iteration: 4, Func. Count: 28, Neg. LLF: 100.45769131688836
Iteration: 5, Func. Count: 34, Neg. LLF: 110.9966403347821
Iteration: 6, Func. Count: 41, Neg. LLF: 100.24804915589742
Iteration: 7, Func. Count: 46, Neg. LLF: 100.17880939741778
Iteration: 8, Func. Count: 51, Neg. LLF: 100.17005228104368
Iteration: 9, Func. Count: 56, Neg. LLF: 100.16940701742634
Iteration: 10, Func. Count: 61, Neg. LLF: 100.16939745256343
Iteration: 11, Func. Count: 65, Neg. LLF: 100.16939744721432
Optimization terminated successfully (Exit mode 0)
Current function value: 100.16939745256343
Iterations: 11
Function evaluations: 65
Gradient evaluations: 11
Iteration: 1, Func. Count: 7, Neg. LLF: 176.6359177280258
Iteration: 2, Func. Count: 17, Neg. LLF: 103.18217486628154
Iteration: 3, Func. Count: 24, Neg. LLF: 100.74509118315459
Iteration: 4, Func. Count: 30, Neg. LLF: 102.34973888358279
Iteration: 5, Func. Count: 37, Neg. LLF: 100.68730240018292
Iteration: 6, Func. Count: 43, Neg. LLF: 100.68690472843552
Iteration: 7, Func. Count: 49, Neg. LLF: 100.68681992796128
Iteration: 8, Func. Count: 55, Neg. LLF: 100.68609619662006
Iteration: 9, Func. Count: 61, Neg. LLF: 100.67564392063979
Iteration: 10, Func. Count: 67, Neg. LLF: 100.64277818929968
Iteration: 11, Func. Count: 73, Neg. LLF: 100.64270295018255
Iteration: 12, Func. Count: 79, Neg. LLF: 100.6426960976681
Iteration: 13, Func. Count: 85, Neg. LLF: 100.64268420903713
Iteration: 14, Func. Count: 90, Neg. LLF: 100.64268397125751
Optimization terminated successfully (Exit mode 0)
Current function value: 100.64268420903713
Iterations: 14
Function evaluations: 90
Gradient evaluations: 14
Iteration: 1, Func. Count: 8, Neg. LLF: 178.51863168193643
Iteration: 2, Func. Count: 19, Neg. LLF: 103.80723019911113
Iteration: 3, Func. Count: 27, Neg. LLF: 100.7539936903814
Iteration: 4, Func. Count: 34, Neg. LLF: 100.73438697695816
Iteration: 5, Func. Count: 41, Neg. LLF: 100.72932404024394
Iteration: 6, Func. Count: 48, Neg. LLF: 100.72725597011978
Iteration: 7, Func. Count: 55, Neg. LLF: 100.72520698695334
Iteration: 8, Func. Count: 62, Neg. LLF: 100.70839203502555
Iteration: 9, Func. Count: 69, Neg. LLF: 100.65527418775866
Iteration: 10, Func. Count: 76, Neg. LLF: 100.6589470325576
Iteration: 11, Func. Count: 84, Neg. LLF: 100.64274258993748
Iteration: 12, Func. Count: 91, Neg. LLF: 100.64268421096388
Iteration: 13, Func. Count: 97, Neg. LLF: 100.64268397584023
Optimization terminated successfully (Exit mode 0)
Current function value: 100.64268421096388
Iterations: 13
Function evaluations: 97
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 183.9889036006914
Iteration: 2, Func. Count: 21, Neg. LLF: 104.20158281280453
Iteration: 3, Func. Count: 30, Neg. LLF: 100.77253738479276
Iteration: 4, Func. Count: 38, Neg. LLF: 100.75473180170091
Iteration: 5, Func. Count: 46, Neg. LLF: 100.73926917394324
Iteration: 6, Func. Count: 54, Neg. LLF: 100.73562734800926
Iteration: 7, Func. Count: 62, Neg. LLF: 100.73552438277729
Iteration: 8, Func. Count: 70, Neg. LLF: 100.73552327806527
Iteration: 9, Func. Count: 77, Neg. LLF: 100.73552334885613
Optimization terminated successfully (Exit mode 0)
Current function value: 100.73552327806527
Iterations: 9
Function evaluations: 77
Gradient evaluations: 9
Iteration: 1, Func. Count: 6, Neg. LLF: 117.77075828507003
Iteration: 2, Func. Count: 13, Neg. LLF: 277558308.0904078
Iteration: 3, Func. Count: 19, Neg. LLF: 11092367.672585934
Iteration: 4, Func. Count: 25, Neg. LLF: 124.23573132182415
Iteration: 5, Func. Count: 31, Neg. LLF: 101.14286903175474
Iteration: 6, Func. Count: 37, Neg. LLF: 98.24019587422289
Iteration: 7, Func. Count: 43, Neg. LLF: 98.02302389149695
Iteration: 8, Func. Count: 49, Neg. LLF: 97.99571692034993
Iteration: 9, Func. Count: 54, Neg. LLF: 97.98459512602356
Iteration: 10, Func. Count: 59, Neg. LLF: 97.9606631081523
Iteration: 11, Func. Count: 64, Neg. LLF: 97.95987114914882
Iteration: 12, Func. Count: 69, Neg. LLF: 97.95984349751477
Iteration: 13, Func. Count: 73, Neg. LLF: 97.95984349751103
Optimization terminated successfully (Exit mode 0)
Current function value: 97.95984349751477
Iterations: 13
Function evaluations: 73
Gradient evaluations: 13
Iteration: 1, Func. Count: 7, Neg. LLF: 337.212872363989
Iteration: 2, Func. Count: 14, Neg. LLF: 116.11679519424605
Iteration: 3, Func. Count: 22, Neg. LLF: 125.06744826867809
Iteration: 4, Func. Count: 30, Neg. LLF: 108.1276473565534
Iteration: 5, Func. Count: 37, Neg. LLF: 99.28031859313855
Iteration: 6, Func. Count: 44, Neg. LLF: 98.71590421644503
Iteration: 7, Func. Count: 50, Neg. LLF: 98.09785772997995
Iteration: 8, Func. Count: 56, Neg. LLF: 98.01361569642066
Iteration: 9, Func. Count: 62, Neg. LLF: 97.97915868269456
Iteration: 10, Func. Count: 68, Neg. LLF: 97.97221916690636
Iteration: 11, Func. Count: 74, Neg. LLF: 97.96487082475646
Iteration: 12, Func. Count: 80, Neg. LLF: 97.96242645516259
Iteration: 13, Func. Count: 86, Neg. LLF: 97.96131203517766
Iteration: 14, Func. Count: 92, Neg. LLF: 97.96035470814552
Iteration: 15, Func. Count: 98, Neg. LLF: 97.95991856626469
Iteration: 16, Func. Count: 104, Neg. LLF: 97.95984742632895
Iteration: 17, Func. Count: 110, Neg. LLF: 97.95984350546613
Iteration: 18, Func. Count: 115, Neg. LLF: 97.95984358156278
Optimization terminated successfully (Exit mode 0)
Current function value: 97.95984350546613
Iterations: 18
Function evaluations: 115
Gradient evaluations: 18
Iteration: 1, Func. Count: 8, Neg. LLF: 117.81312439822176
Iteration: 2, Func. Count: 16, Neg. LLF: 100.36312690908275
Iteration: 3, Func. Count: 24, Neg. LLF: 100.3347342426722
Iteration: 4, Func. Count: 32, Neg. LLF: 99.85428462742544
Iteration: 5, Func. Count: 40, Neg. LLF: 97.98371637075198
Iteration: 6, Func. Count: 47, Neg. LLF: 98.00760519274982
Iteration: 7, Func. Count: 55, Neg. LLF: 98.28053162751101
Iteration: 8, Func. Count: 63, Neg. LLF: 97.69632393706004
Iteration: 9, Func. Count: 70, Neg. LLF: 97.67512025890282
Iteration: 10, Func. Count: 77, Neg. LLF: 97.66624517256406
Iteration: 11, Func. Count: 84, Neg. LLF: 97.66179701614959
Iteration: 12, Func. Count: 91, Neg. LLF: 97.66161898568242
Iteration: 13, Func. Count: 98, Neg. LLF: 97.66155144448348
Iteration: 14, Func. Count: 105, Neg. LLF: 97.6615477343617
Iteration: 15, Func. Count: 111, Neg. LLF: 97.6615477343774
Optimization terminated successfully (Exit mode 0)
Current function value: 97.6615477343617
Iterations: 15
Function evaluations: 111
Gradient evaluations: 15
Iteration: 1, Func. Count: 9, Neg. LLF: 107.22856453160708
Iteration: 2, Func. Count: 18, Neg. LLF: 98.34854769494488
Iteration: 3, Func. Count: 27, Neg. LLF: 97.78408355718271
Iteration: 4, Func. Count: 36, Neg. LLF: 136.03758546418157
Iteration: 5, Func. Count: 45, Neg. LLF: 96.75710546950914
Iteration: 6, Func. Count: 53, Neg. LLF: 109.39316846553979
Iteration: 7, Func. Count: 62, Neg. LLF: 96.8203227666391
Iteration: 8, Func. Count: 71, Neg. LLF: 96.72170371426466
Iteration: 9, Func. Count: 80, Neg. LLF: 96.67017301940434
Iteration: 10, Func. Count: 88, Neg. LLF: 96.66084868898788
Iteration: 11, Func. Count: 96, Neg. LLF: 96.65818499804507
Iteration: 12, Func. Count: 104, Neg. LLF: 96.65752641498796
Iteration: 13, Func. Count: 112, Neg. LLF: 96.65750956680067
Iteration: 14, Func. Count: 119, Neg. LLF: 96.65750956677549
Optimization terminated successfully (Exit mode 0)
Current function value: 96.65750956680067
Iterations: 14
Function evaluations: 119
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 102.48610322505968
Iteration: 2, Func. Count: 20, Neg. LLF: 104.18484471799842
Iteration: 3, Func. Count: 30, Neg. LLF: 96.88750816243831
Iteration: 4, Func. Count: 39, Neg. LLF: 98.15757637554593
Iteration: 5, Func. Count: 50, Neg. LLF: 99.71828089078831
Iteration: 6, Func. Count: 60, Neg. LLF: 97.34850771166946
Iteration: 7, Func. Count: 70, Neg. LLF: 96.66381189800317
Iteration: 8, Func. Count: 79, Neg. LLF: 96.66904918137678
Iteration: 9, Func. Count: 89, Neg. LLF: 96.65969224250178
Iteration: 10, Func. Count: 98, Neg. LLF: 96.6579219437002
Iteration: 11, Func. Count: 107, Neg. LLF: 96.65754029608338
Iteration: 12, Func. Count: 116, Neg. LLF: 96.65750982649946
Iteration: 13, Func. Count: 124, Neg. LLF: 96.65750988251257
Optimization terminated successfully (Exit mode 0)
Current function value: 96.65750982649946
Iterations: 13
Function evaluations: 124
Gradient evaluations: 13
Iteration: 1, Func. Count: 7, Neg. LLF: 124.78547770136244
Iteration: 2, Func. Count: 15, Neg. LLF: 400846928.9236545
Iteration: 3, Func. Count: 22, Neg. LLF: 12182032.162758019
Iteration: 4, Func. Count: 29, Neg. LLF: 4270099.296941939
Iteration: 5, Func. Count: 36, Neg. LLF: 103.28645494472212
Iteration: 6, Func. Count: 43, Neg. LLF: 101.19906209549822
Iteration: 7, Func. Count: 50, Neg. LLF: 98.08842977717096
Iteration: 8, Func. Count: 56, Neg. LLF: 98.00880148045712
Iteration: 9, Func. Count: 62, Neg. LLF: 98.00095735842751
Iteration: 10, Func. Count: 68, Neg. LLF: 97.99162850756787
Iteration: 11, Func. Count: 74, Neg. LLF: 97.98430521828499
Iteration: 12, Func. Count: 80, Neg. LLF: 97.97132311248312
Iteration: 13, Func. Count: 86, Neg. LLF: 97.96230865648555
Iteration: 14, Func. Count: 92, Neg. LLF: 97.9599587063829
Iteration: 15, Func. Count: 98, Neg. LLF: 97.95985119586372
Iteration: 16, Func. Count: 104, Neg. LLF: 97.95984391327883
Iteration: 17, Func. Count: 110, Neg. LLF: 97.95984339095722
Optimization terminated successfully (Exit mode 0)
Current function value: 97.95984339095722
Iterations: 17
Function evaluations: 110
Gradient evaluations: 17
Iteration: 1, Func. Count: 8, Neg. LLF: 103.51877463043144
Iteration: 2, Func. Count: 16, Neg. LLF: 159.55544532881245
Iteration: 3, Func. Count: 24, Neg. LLF: 106.99811141239316
Iteration: 4, Func. Count: 33, Neg. LLF: 99.23587884470571
Iteration: 5, Func. Count: 41, Neg. LLF: 98.11452902269264
Iteration: 6, Func. Count: 48, Neg. LLF: 97.98571385423293
Iteration: 7, Func. Count: 55, Neg. LLF: 97.967020552771
Iteration: 8, Func. Count: 62, Neg. LLF: 97.96174002939613
Iteration: 9, Func. Count: 69, Neg. LLF: 97.96107552075345
Iteration: 10, Func. Count: 76, Neg. LLF: 97.96015875445511
Iteration: 11, Func. Count: 83, Neg. LLF: 97.95990187883065
Iteration: 12, Func. Count: 90, Neg. LLF: 97.95984638390735
Iteration: 13, Func. Count: 97, Neg. LLF: 97.95984344709036
Iteration: 14, Func. Count: 103, Neg. LLF: 97.95984352316167
Optimization terminated successfully (Exit mode 0)
Current function value: 97.95984344709036
Iterations: 14
Function evaluations: 103
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 99.52359187714077
Iteration: 2, Func. Count: 18, Neg. LLF: 563.3452462402498
Iteration: 3, Func. Count: 28, Neg. LLF: 105.65764943446008
Iteration: 4, Func. Count: 37, Neg. LLF: 98.15855080137555
Iteration: 5, Func. Count: 46, Neg. LLF: 102.73703776203817
Iteration: 6, Func. Count: 55, Neg. LLF: 97.71143527923758
Iteration: 7, Func. Count: 63, Neg. LLF: 97.66822111133361
Iteration: 8, Func. Count: 71, Neg. LLF: 97.6623741718222
Iteration: 9, Func. Count: 79, Neg. LLF: 97.66190643755624
Iteration: 10, Func. Count: 87, Neg. LLF: 97.6617510493677
Iteration: 11, Func. Count: 95, Neg. LLF: 97.66154855395534
Iteration: 12, Func. Count: 103, Neg. LLF: 97.6615476353524
Optimization terminated successfully (Exit mode 0)
Current function value: 97.6615476353524
Iterations: 12
Function evaluations: 103
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 120.52662130803323
Iteration: 2, Func. Count: 24, Neg. LLF: 18137861.509836473
Iteration: 3, Func. Count: 34, Neg. LLF: 14273561.073892096
Iteration: 4, Func. Count: 44, Neg. LLF: 103.17250585335889
Iteration: 5, Func. Count: 54, Neg. LLF: 98.26700889135756
Iteration: 6, Func. Count: 64, Neg. LLF: 97.10668469864953
Iteration: 7, Func. Count: 73, Neg. LLF: 98.84073141786816
Iteration: 8, Func. Count: 84, Neg. LLF: 96.98885085864704
Iteration: 9, Func. Count: 93, Neg. LLF: 96.86408953335975
Iteration: 10, Func. Count: 102, Neg. LLF: 96.72803340301203
Iteration: 11, Func. Count: 111, Neg. LLF: 96.67084032363314
Iteration: 12, Func. Count: 120, Neg. LLF: 96.65869550150506
Iteration: 13, Func. Count: 129, Neg. LLF: 96.65760652283726
Iteration: 14, Func. Count: 138, Neg. LLF: 96.65752255653865
Iteration: 15, Func. Count: 147, Neg. LLF: 96.65751028592508
Iteration: 16, Func. Count: 155, Neg. LLF: 96.65751028602
Optimization terminated successfully (Exit mode 0)
Current function value: 96.65751028592508
Iterations: 16
Function evaluations: 155
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 122.66679415584126
Iteration: 2, Func. Count: 26, Neg. LLF: 18896718.475752477
Iteration: 3, Func. Count: 37, Neg. LLF: 16089020.131659944
Iteration: 4, Func. Count: 48, Neg. LLF: 110.08869302907226
Iteration: 5, Func. Count: 59, Neg. LLF: 98.99392674431108
Iteration: 6, Func. Count: 70, Neg. LLF: 100.00320272571156
Iteration: 7, Func. Count: 81, Neg. LLF: 97.07285521737566
Iteration: 8, Func. Count: 91, Neg. LLF: 100.44890425613926
Iteration: 9, Func. Count: 103, Neg. LLF: 96.97396172144968
Iteration: 10, Func. Count: 113, Neg. LLF: 96.93205018371843
Iteration: 11, Func. Count: 123, Neg. LLF: 96.83732689411991
Iteration: 12, Func. Count: 133, Neg. LLF: 96.72878150515346
Iteration: 13, Func. Count: 143, Neg. LLF: 96.66467979067502
Iteration: 14, Func. Count: 153, Neg. LLF: 96.65771236647731
Iteration: 15, Func. Count: 163, Neg. LLF: 96.65754323197858
Iteration: 16, Func. Count: 173, Neg. LLF: 96.6575162089383
Iteration: 17, Func. Count: 183, Neg. LLF: 96.65750974722096
Iteration: 18, Func. Count: 192, Neg. LLF: 96.65750980326932
Optimization terminated successfully (Exit mode 0)
Current function value: 96.65750974722096
Iterations: 18
Function evaluations: 192
Gradient evaluations: 18
Iteration: 1, Func. Count: 8, Neg. LLF: 135.83713617962786
Iteration: 2, Func. Count: 17, Neg. LLF: 2361.316532691732
Iteration: 3, Func. Count: 25, Neg. LLF: 12008371.56779652
Iteration: 4, Func. Count: 33, Neg. LLF: 4269323.594890697
Iteration: 5, Func. Count: 41, Neg. LLF: 1348233.945052288
Iteration: 6, Func. Count: 49, Neg. LLF: 102.99406031307761
Iteration: 7, Func. Count: 57, Neg. LLF: 124.97423288272769
Iteration: 8, Func. Count: 65, Neg. LLF: 97.6860227160856
Iteration: 9, Func. Count: 72, Neg. LLF: 97.65418914952423
Iteration: 10, Func. Count: 79, Neg. LLF: 97.63962630700918
Iteration: 11, Func. Count: 86, Neg. LLF: 97.56940961855408
Iteration: 12, Func. Count: 93, Neg. LLF: 97.55669908700918
Iteration: 13, Func. Count: 100, Neg. LLF: 97.55538066352719
Iteration: 14, Func. Count: 107, Neg. LLF: 97.55526129462255
Iteration: 15, Func. Count: 114, Neg. LLF: 97.55525971380632
Iteration: 16, Func. Count: 120, Neg. LLF: 97.55525971380403
Optimization terminated successfully (Exit mode 0)
Current function value: 97.55525971380632
Iterations: 16
Function evaluations: 120
Gradient evaluations: 16
Iteration: 1, Func. Count: 9, Neg. LLF: 103.52325121076787
Iteration: 2, Func. Count: 18, Neg. LLF: 308.8588307698618
Iteration: 3, Func. Count: 27, Neg. LLF: 101.86181017294454
Iteration: 4, Func. Count: 37, Neg. LLF: 99.9551151231811
Iteration: 5, Func. Count: 46, Neg. LLF: 99.88008743398875
Iteration: 6, Func. Count: 55, Neg. LLF: 97.75294490562199
Iteration: 7, Func. Count: 63, Neg. LLF: 97.64765764085429
Iteration: 8, Func. Count: 71, Neg. LLF: 97.70960273530137
Iteration: 9, Func. Count: 80, Neg. LLF: 97.56323286566291
Iteration: 10, Func. Count: 88, Neg. LLF: 97.55868826532945
Iteration: 11, Func. Count: 96, Neg. LLF: 97.5556298104908
Iteration: 12, Func. Count: 104, Neg. LLF: 97.55526581490041
Iteration: 13, Func. Count: 112, Neg. LLF: 97.55525971989405
Iteration: 14, Func. Count: 119, Neg. LLF: 97.55525977402401
Optimization terminated successfully (Exit mode 0)
Current function value: 97.55525971989405
Iterations: 14
Function evaluations: 119
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 117.52078195394434
Iteration: 2, Func. Count: 24, Neg. LLF: 840.0515797778229
Iteration: 3, Func. Count: 34, Neg. LLF: 827.2600811313297
Iteration: 4, Func. Count: 44, Neg. LLF: 162.69006531718642
Iteration: 5, Func. Count: 54, Neg. LLF: 100.1902384148055
Iteration: 6, Func. Count: 64, Neg. LLF: 99.16402040018761
Iteration: 7, Func. Count: 74, Neg. LLF: 100.01068699056694
Iteration: 8, Func. Count: 84, Neg. LLF: 100.47277363598562
Iteration: 9, Func. Count: 94, Neg. LLF: 98.3113546690137
Iteration: 10, Func. Count: 103, Neg. LLF: 97.96965373816793
Iteration: 11, Func. Count: 112, Neg. LLF: 97.70499964934835
Iteration: 12, Func. Count: 121, Neg. LLF: 97.67588103239085
Iteration: 13, Func. Count: 130, Neg. LLF: 97.67167556213774
Iteration: 14, Func. Count: 139, Neg. LLF: 97.65428079944412
Iteration: 15, Func. Count: 148, Neg. LLF: 97.63733029453502
Iteration: 16, Func. Count: 157, Neg. LLF: 97.60740629322342
Iteration: 17, Func. Count: 166, Neg. LLF: 97.58012051378712
Iteration: 18, Func. Count: 175, Neg. LLF: 97.56331294122688
Iteration: 19, Func. Count: 184, Neg. LLF: 97.55656742489106
Iteration: 20, Func. Count: 193, Neg. LLF: 97.555508422383
Iteration: 21, Func. Count: 202, Neg. LLF: 97.55532667890373
Iteration: 22, Func. Count: 211, Neg. LLF: 97.55527326435643
Iteration: 23, Func. Count: 220, Neg. LLF: 97.55526255231536
Iteration: 24, Func. Count: 229, Neg. LLF: 97.55525984581094
Iteration: 25, Func. Count: 237, Neg. LLF: 97.55525986362116
Optimization terminated successfully (Exit mode 0)
Current function value: 97.55525984581094
Iterations: 25
Function evaluations: 237
Gradient evaluations: 25
Iteration: 1, Func. Count: 11, Neg. LLF: 120.65997855078456
Iteration: 2, Func. Count: 26, Neg. LLF: 18097670.78031113
Iteration: 3, Func. Count: 37, Neg. LLF: 14394618.719872806
Iteration: 4, Func. Count: 48, Neg. LLF: 103.14679273638262
Iteration: 5, Func. Count: 59, Neg. LLF: 98.25597289426587
Iteration: 6, Func. Count: 70, Neg. LLF: 97.10305824551546
Iteration: 7, Func. Count: 80, Neg. LLF: 99.1954613132124
Iteration: 8, Func. Count: 91, Neg. LLF: 96.85050022927494
Iteration: 9, Func. Count: 101, Neg. LLF: 96.82694290506377
Iteration: 10, Func. Count: 111, Neg. LLF: 96.75839380247916
Iteration: 11, Func. Count: 121, Neg. LLF: 96.67280267225507
Iteration: 12, Func. Count: 131, Neg. LLF: 96.58300577667474
Iteration: 13, Func. Count: 141, Neg. LLF: 96.55520527992407
Iteration: 14, Func. Count: 151, Neg. LLF: 96.55237199853411
Iteration: 15, Func. Count: 161, Neg. LLF: 96.55210782229112
Iteration: 16, Func. Count: 171, Neg. LLF: 96.55203014788975
Iteration: 17, Func. Count: 181, Neg. LLF: 96.55201975199984
Iteration: 18, Func. Count: 191, Neg. LLF: 96.5520188542796
Optimization terminated successfully (Exit mode 0)
Current function value: 96.5520188542796
Iterations: 18
Function evaluations: 191
Gradient evaluations: 18
Iteration: 1, Func. Count: 12, Neg. LLF: 122.75509467471286
Iteration: 2, Func. Count: 28, Neg. LLF: 18846739.09771896
Iteration: 3, Func. Count: 40, Neg. LLF: 13801948.170796866
Iteration: 4, Func. Count: 52, Neg. LLF: 128.17693901404834
Iteration: 5, Func. Count: 64, Neg. LLF: 100.09333562087369
Iteration: 6, Func. Count: 76, Neg. LLF: 97.25540752619588
Iteration: 7, Func. Count: 87, Neg. LLF: 98.16374421676056
Iteration: 8, Func. Count: 99, Neg. LLF: 97.25578489601065
Iteration: 9, Func. Count: 111, Neg. LLF: 96.85597626533331
Iteration: 10, Func. Count: 122, Neg. LLF: 96.82848686544466
Iteration: 11, Func. Count: 133, Neg. LLF: 96.72196711739686
Iteration: 12, Func. Count: 144, Neg. LLF: 96.64695995655337
Iteration: 13, Func. Count: 155, Neg. LLF: 96.56777336297672
Iteration: 14, Func. Count: 166, Neg. LLF: 96.5538787671648
Iteration: 15, Func. Count: 177, Neg. LLF: 96.55207924916282
Iteration: 16, Func. Count: 188, Neg. LLF: 96.55202133173925
Iteration: 17, Func. Count: 199, Neg. LLF: 96.55201940118748
Iteration: 18, Func. Count: 210, Neg. LLF: 96.55201879159583
Optimization terminated successfully (Exit mode 0)
Current function value: 96.55201879159583
Iterations: 18
Function evaluations: 210
Gradient evaluations: 18
Iteration: 1, Func. Count: 5, Neg. LLF: 130.30648947308458
Iteration: 2, Func. Count: 11, Neg. LLF: 147.77369860120632
Iteration: 3, Func. Count: 16, Neg. LLF: 103.64278777334552
Iteration: 4, Func. Count: 20, Neg. LLF: 103.44534117357045
Iteration: 5, Func. Count: 24, Neg. LLF: 103.3149962381428
Iteration: 6, Func. Count: 28, Neg. LLF: 103.29027924264298
Iteration: 7, Func. Count: 32, Neg. LLF: 103.28379738501344
Iteration: 8, Func. Count: 36, Neg. LLF: 103.28077398583022
Iteration: 9, Func. Count: 40, Neg. LLF: 103.2807720135278
Iteration: 10, Func. Count: 43, Neg. LLF: 103.28077212954982
Optimization terminated successfully (Exit mode 0)
Current function value: 103.2807720135278
Iterations: 10
Function evaluations: 43
Gradient evaluations: 10
Iteration: 1, Func. Count: 6, Neg. LLF: 176.15250284690208
Iteration: 2, Func. Count: 14, Neg. LLF: 102.0761778191613
Iteration: 3, Func. Count: 20, Neg. LLF: 101.16203336054299
Iteration: 4, Func. Count: 25, Neg. LLF: 101.52413817144597
Iteration: 5, Func. Count: 31, Neg. LLF: 100.73167694917613
Iteration: 6, Func. Count: 37, Neg. LLF: 100.64268531867963
Iteration: 7, Func. Count: 42, Neg. LLF: 100.64268420894612
Iteration: 8, Func. Count: 46, Neg. LLF: 100.64268444812403
Optimization terminated successfully (Exit mode 0)
Current function value: 100.64268420894612
Iterations: 8
Function evaluations: 46
Gradient evaluations: 8
Iteration: 1, Func. Count: 7, Neg. LLF: 175.88798139089945
Iteration: 2, Func. Count: 17, Neg. LLF: 103.38670601611197
Iteration: 3, Func. Count: 24, Neg. LLF: 100.78885692825546
Iteration: 4, Func. Count: 30, Neg. LLF: 101.68035467407094
Iteration: 5, Func. Count: 37, Neg. LLF: 100.68221477795284
Iteration: 6, Func. Count: 43, Neg. LLF: 100.6491956406615
Iteration: 7, Func. Count: 49, Neg. LLF: 100.64852427831737
Iteration: 8, Func. Count: 55, Neg. LLF: 100.64677467817283
Iteration: 9, Func. Count: 61, Neg. LLF: 100.64649907505873
Iteration: 10, Func. Count: 67, Neg. LLF: 100.64633599829087
Iteration: 11, Func. Count: 73, Neg. LLF: 100.64627692303844
Iteration: 12, Func. Count: 79, Neg. LLF: 100.6462697058117
Iteration: 13, Func. Count: 84, Neg. LLF: 100.64626983536695
Optimization terminated successfully (Exit mode 0)
Current function value: 100.6462697058117
Iterations: 13
Function evaluations: 84
Gradient evaluations: 13
Iteration: 1, Func. Count: 8, Neg. LLF: 179.9207705619528
Iteration: 2, Func. Count: 19, Neg. LLF: 103.89329193717698
Iteration: 3, Func. Count: 27, Neg. LLF: 100.75496978757778
Iteration: 4, Func. Count: 34, Neg. LLF: 100.74554416623425
Iteration: 5, Func. Count: 41, Neg. LLF: 100.73458894774345
Iteration: 6, Func. Count: 48, Neg. LLF: 100.73108745150401
Iteration: 7, Func. Count: 55, Neg. LLF: 100.72874571916185
Iteration: 8, Func. Count: 62, Neg. LLF: 100.71696776894534
Iteration: 9, Func. Count: 69, Neg. LLF: 100.65751520634356
Iteration: 10, Func. Count: 76, Neg. LLF: 100.6766394451881
Iteration: 11, Func. Count: 84, Neg. LLF: 100.64338456360385
Iteration: 12, Func. Count: 91, Neg. LLF: 100.64270787922784
Iteration: 13, Func. Count: 98, Neg. LLF: 100.64268551145571
Iteration: 14, Func. Count: 105, Neg. LLF: 100.64268420879898
Iteration: 15, Func. Count: 111, Neg. LLF: 100.64268397358026
Optimization terminated successfully (Exit mode 0)
Current function value: 100.64268420879898
Iterations: 15
Function evaluations: 111
Gradient evaluations: 15
Iteration: 1, Func. Count: 9, Neg. LLF: 186.49364973665072
Iteration: 2, Func. Count: 21, Neg. LLF: 104.1212583078374
Iteration: 3, Func. Count: 30, Neg. LLF: 100.76266676082119
Iteration: 4, Func. Count: 38, Neg. LLF: 100.73980789993098
Iteration: 5, Func. Count: 46, Neg. LLF: 100.73569013886467
Iteration: 6, Func. Count: 54, Neg. LLF: 100.73552364810097
Iteration: 7, Func. Count: 61, Neg. LLF: 100.73552371917876
Optimization terminated successfully (Exit mode 0)
Current function value: 100.73552364810097
Iterations: 7
Function evaluations: 61
Gradient evaluations: 7
Iteration: 1, Func. Count: 6, Neg. LLF: 129.96841526914463
Iteration: 2, Func. Count: 13, Neg. LLF: 152.70531817259842
Iteration: 3, Func. Count: 19, Neg. LLF: 103.64539410098767
Iteration: 4, Func. Count: 24, Neg. LLF: 103.43173943829788
Iteration: 5, Func. Count: 29, Neg. LLF: 103.31169932891768
Iteration: 6, Func. Count: 34, Neg. LLF: 103.28547431581353
Iteration: 7, Func. Count: 39, Neg. LLF: 103.28237688398879
Iteration: 8, Func. Count: 44, Neg. LLF: 103.28080155993788
Iteration: 9, Func. Count: 49, Neg. LLF: 103.28077295745994
Iteration: 10, Func. Count: 54, Neg. LLF: 103.28077201293311
Optimization terminated successfully (Exit mode 0)
Current function value: 103.28077201293311
Iterations: 10
Function evaluations: 54
Gradient evaluations: 10
Iteration: 1, Func. Count: 7, Neg. LLF: 109.85395153982563
Iteration: 2, Func. Count: 17, Neg. LLF: 235.23012406489516
Iteration: 3, Func. Count: 24, Neg. LLF: 715.5042119509606
Iteration: 4, Func. Count: 32, Neg. LLF: 100.68898644197031
Iteration: 5, Func. Count: 39, Neg. LLF: 123.45081568065206
Iteration: 6, Func. Count: 46, Neg. LLF: 100.2916285242159
Iteration: 7, Func. Count: 52, Neg. LLF: 102.25661920039741
Iteration: 8, Func. Count: 59, Neg. LLF: 100.20118595875606
Iteration: 9, Func. Count: 65, Neg. LLF: 100.17650304698934
Iteration: 10, Func. Count: 71, Neg. LLF: 100.16810737917035
Iteration: 11, Func. Count: 77, Neg. LLF: 100.16684937756563
Iteration: 12, Func. Count: 83, Neg. LLF: 100.16676219519167
Iteration: 13, Func. Count: 88, Neg. LLF: 100.16676219050622
Optimization terminated successfully (Exit mode 0)
Current function value: 100.16676219519167
Iterations: 13
Function evaluations: 88
Gradient evaluations: 13
Iteration: 1, Func. Count: 8, Neg. LLF: 177.81952647389883
Iteration: 2, Func. Count: 19, Neg. LLF: 103.72850691398162
Iteration: 3, Func. Count: 27, Neg. LLF: 100.88910424663796
Iteration: 4, Func. Count: 34, Neg. LLF: 101.79807571154517
Iteration: 5, Func. Count: 42, Neg. LLF: 100.65653775900594
Iteration: 6, Func. Count: 49, Neg. LLF: 100.6545417573365
Iteration: 7, Func. Count: 56, Neg. LLF: 100.65125347154734
Iteration: 8, Func. Count: 63, Neg. LLF: 100.64772305701153
Iteration: 9, Func. Count: 70, Neg. LLF: 100.64644645907815
Iteration: 10, Func. Count: 77, Neg. LLF: 100.64627340184117
Iteration: 11, Func. Count: 84, Neg. LLF: 100.64626946781686
Iteration: 12, Func. Count: 90, Neg. LLF: 100.64626959813428
Optimization terminated successfully (Exit mode 0)
Current function value: 100.64626946781686
Iterations: 12
Function evaluations: 90
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 182.97661922643942
Iteration: 2, Func. Count: 21, Neg. LLF: 104.22902668643414
Iteration: 3, Func. Count: 30, Neg. LLF: 100.77055151962219
Iteration: 4, Func. Count: 38, Neg. LLF: 100.77431331430546
Iteration: 5, Func. Count: 47, Neg. LLF: 100.73467454174227
Iteration: 6, Func. Count: 55, Neg. LLF: 100.73057503340915
Iteration: 7, Func. Count: 63, Neg. LLF: 100.72753601717805
Iteration: 8, Func. Count: 71, Neg. LLF: 100.7210893020312
Iteration: 9, Func. Count: 79, Neg. LLF: 100.6940212763356
Iteration: 10, Func. Count: 87, Neg. LLF: 100.64568939275969
Iteration: 11, Func. Count: 95, Neg. LLF: 100.66368989924499
Iteration: 12, Func. Count: 104, Neg. LLF: 100.64309043984592
Iteration: 13, Func. Count: 112, Neg. LLF: 100.64268806752816
Iteration: 14, Func. Count: 120, Neg. LLF: 104.24938573464077
Iteration: 15, Func. Count: 131, Neg. LLF: 100.64268996623761
Optimization terminated successfully (Exit mode 0)
Current function value: 100.64268496120323
Iterations: 16
Function evaluations: 132
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 188.93504130159323
Iteration: 2, Func. Count: 23, Neg. LLF: 104.51426353022377
Iteration: 3, Func. Count: 33, Neg. LLF: 100.7577977346808
Iteration: 4, Func. Count: 42, Neg. LLF: 100.73839275104675
Iteration: 5, Func. Count: 51, Neg. LLF: 100.73574590967908
Iteration: 6, Func. Count: 60, Neg. LLF: 100.73553876024414
Iteration: 7, Func. Count: 69, Neg. LLF: 100.73552327719617
Iteration: 8, Func. Count: 77, Neg. LLF: 100.73552334799504
Optimization terminated successfully (Exit mode 0)
Current function value: 100.73552327719617
Iterations: 8
Function evaluations: 77
Gradient evaluations: 8
Iteration: 1, Func. Count: 7, Neg. LLF: 109.25495477702202
Iteration: 2, Func. Count: 15, Neg. LLF: 10918304.07051946
Iteration: 3, Func. Count: 22, Neg. LLF: 5717629.378115838
Iteration: 4, Func. Count: 29, Neg. LLF: 150.60396868924073
Iteration: 5, Func. Count: 36, Neg. LLF: 12008888.897081979
Iteration: 6, Func. Count: 43, Neg. LLF: 98.17843015509362
Iteration: 7, Func. Count: 50, Neg. LLF: 98.21703888970778
Iteration: 8, Func. Count: 57, Neg. LLF: 98.70812904592083
Iteration: 9, Func. Count: 65, Neg. LLF: 97.97733849265487
Iteration: 10, Func. Count: 71, Neg. LLF: 97.95476595716987
Iteration: 11, Func. Count: 77, Neg. LLF: 97.9112240822219
Iteration: 12, Func. Count: 83, Neg. LLF: 97.90933092807569
Iteration: 13, Func. Count: 89, Neg. LLF: 97.9092124979614
Iteration: 14, Func. Count: 95, Neg. LLF: 97.90920943310621
Iteration: 15, Func. Count: 100, Neg. LLF: 97.9092094331088
Optimization terminated successfully (Exit mode 0)
Current function value: 97.90920943310621
Iterations: 15
Function evaluations: 100
Gradient evaluations: 15
Iteration: 1, Func. Count: 8, Neg. LLF: 150.3042491146888
Iteration: 2, Func. Count: 16, Neg. LLF: 141.31864119925518
Iteration: 3, Func. Count: 24, Neg. LLF: 109.7833198821677
Iteration: 4, Func. Count: 32, Neg. LLF: 121.38994860816139
Iteration: 5, Func. Count: 40, Neg. LLF: 98.85341032376274
Iteration: 6, Func. Count: 48, Neg. LLF: 98.79406749435181
Iteration: 7, Func. Count: 56, Neg. LLF: 98.44460751073473
Iteration: 8, Func. Count: 63, Neg. LLF: 98.45173454868217
Iteration: 9, Func. Count: 71, Neg. LLF: 98.422566363131
Iteration: 10, Func. Count: 78, Neg. LLF: 98.4214254546813
Iteration: 11, Func. Count: 85, Neg. LLF: 98.42074166514828
Iteration: 12, Func. Count: 92, Neg. LLF: 98.4203821470917
Iteration: 13, Func. Count: 99, Neg. LLF: 98.42035154488897
Iteration: 14, Func. Count: 106, Neg. LLF: 98.42035084548105
Optimization terminated successfully (Exit mode 0)
Current function value: 98.42035084548105
Iterations: 14
Function evaluations: 106
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 122.06921498901106
Iteration: 2, Func. Count: 18, Neg. LLF: 106.39671738293426
Iteration: 3, Func. Count: 27, Neg. LLF: 334.26534151781857
Iteration: 4, Func. Count: 36, Neg. LLF: 113.4415298220697
Iteration: 5, Func. Count: 45, Neg. LLF: 98.75245398587558
Iteration: 6, Func. Count: 54, Neg. LLF: 97.93716770833728
Iteration: 7, Func. Count: 63, Neg. LLF: 97.07690265322265
Iteration: 8, Func. Count: 71, Neg. LLF: 97.03436569620047
Iteration: 9, Func. Count: 79, Neg. LLF: 97.00217656795984
Iteration: 10, Func. Count: 87, Neg. LLF: 96.97806382900241
Iteration: 11, Func. Count: 95, Neg. LLF: 96.97650798098407
Iteration: 12, Func. Count: 103, Neg. LLF: 96.97646506420998
Iteration: 13, Func. Count: 111, Neg. LLF: 96.97645934420085
Iteration: 14, Func. Count: 119, Neg. LLF: 96.97645668542106
Iteration: 15, Func. Count: 127, Neg. LLF: 96.97645566663238
Iteration: 16, Func. Count: 134, Neg. LLF: 96.97645566659669
Optimization terminated successfully (Exit mode 0)
Current function value: 96.97645566663238
Iterations: 16
Function evaluations: 134
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 107.88731777016316
Iteration: 2, Func. Count: 20, Neg. LLF: 111.76805406106003
Iteration: 3, Func. Count: 30, Neg. LLF: 106.68381835892423
Iteration: 4, Func. Count: 40, Neg. LLF: 97.54629820066745
Iteration: 5, Func. Count: 50, Neg. LLF: 2199.5107254312607
Iteration: 6, Func. Count: 61, Neg. LLF: 96.76503204041686
Iteration: 7, Func. Count: 70, Neg. LLF: 98.83198279093975
Iteration: 8, Func. Count: 81, Neg. LLF: 96.62922036280582
Iteration: 9, Func. Count: 90, Neg. LLF: 96.61334022929306
Iteration: 10, Func. Count: 99, Neg. LLF: 96.67093009836366
Iteration: 11, Func. Count: 109, Neg. LLF: 96.6011231017172
Iteration: 12, Func. Count: 118, Neg. LLF: 96.59289690794415
Iteration: 13, Func. Count: 127, Neg. LLF: 96.59045665189052
Iteration: 14, Func. Count: 136, Neg. LLF: 96.59014113296836
Iteration: 15, Func. Count: 145, Neg. LLF: 96.5901300080711
Iteration: 16, Func. Count: 154, Neg. LLF: 96.59012804849782
Iteration: 17, Func. Count: 162, Neg. LLF: 96.59012804851756
Optimization terminated successfully (Exit mode 0)
Current function value: 96.59012804849782
Iterations: 17
Function evaluations: 162
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 102.8476438280971
Iteration: 2, Func. Count: 22, Neg. LLF: 115.8405477251256
Iteration: 3, Func. Count: 34, Neg. LLF: 97.01061561989981
Iteration: 4, Func. Count: 44, Neg. LLF: 124.82008068931327
Iteration: 5, Func. Count: 56, Neg. LLF: 109.53568762859916
Iteration: 6, Func. Count: 68, Neg. LLF: 99.80810270703697
Iteration: 7, Func. Count: 79, Neg. LLF: 97.09650022011637
Iteration: 8, Func. Count: 90, Neg. LLF: 97.71923514245944
Iteration: 9, Func. Count: 101, Neg. LLF: 96.61669711235461
Iteration: 10, Func. Count: 111, Neg. LLF: 96.60042124422237
Iteration: 11, Func. Count: 121, Neg. LLF: 96.5961926933513
Iteration: 12, Func. Count: 131, Neg. LLF: 96.59031056964304
Iteration: 13, Func. Count: 141, Neg. LLF: 96.59013160849311
Iteration: 14, Func. Count: 151, Neg. LLF: 96.5901278113891
Iteration: 15, Func. Count: 160, Neg. LLF: 96.59012787699642
Optimization terminated successfully (Exit mode 0)
Current function value: 96.5901278113891
Iterations: 15
Function evaluations: 160
Gradient evaluations: 15
Iteration: 1, Func. Count: 8, Neg. LLF: 113.24173725507967
Iteration: 2, Func. Count: 17, Neg. LLF: 116135868.35677992
Iteration: 3, Func. Count: 25, Neg. LLF: 11181019.392872438
Iteration: 4, Func. Count: 33, Neg. LLF: 5726228.228350161
Iteration: 5, Func. Count: 41, Neg. LLF: 102.76890875309842
Iteration: 6, Func. Count: 49, Neg. LLF: 98.71989256249034
Iteration: 7, Func. Count: 57, Neg. LLF: 98.16204795604186
Iteration: 8, Func. Count: 65, Neg. LLF: 97.99568628917991
Iteration: 9, Func. Count: 72, Neg. LLF: 100.20984868831265
Iteration: 10, Func. Count: 81, Neg. LLF: 97.97165049705242
Iteration: 11, Func. Count: 88, Neg. LLF: 97.93888761963532
Iteration: 12, Func. Count: 95, Neg. LLF: 97.9174418748502
Iteration: 13, Func. Count: 102, Neg. LLF: 97.90977024515317
Iteration: 14, Func. Count: 109, Neg. LLF: 97.90922328766672
Iteration: 15, Func. Count: 116, Neg. LLF: 97.90921026381103
Iteration: 16, Func. Count: 123, Neg. LLF: 97.90920922320805
Iteration: 17, Func. Count: 129, Neg. LLF: 97.90920931297748
Optimization terminated successfully (Exit mode 0)
Current function value: 97.90920922320805
Iterations: 17
Function evaluations: 129
Gradient evaluations: 17
Iteration: 1, Func. Count: 9, Neg. LLF: 101.58086754007432
Iteration: 2, Func. Count: 18, Neg. LLF: 156.44977946511926
Iteration: 3, Func. Count: 28, Neg. LLF: 100.20540182145463
Iteration: 4, Func. Count: 38, Neg. LLF: 99.20303415334068
Iteration: 5, Func. Count: 47, Neg. LLF: 98.13647593412801
Iteration: 6, Func. Count: 55, Neg. LLF: 98.20125693625747
Iteration: 7, Func. Count: 64, Neg. LLF: 98.0775863692794
Iteration: 8, Func. Count: 73, Neg. LLF: 98.13243835441772
Iteration: 9, Func. Count: 82, Neg. LLF: 97.9929666503739
Iteration: 10, Func. Count: 91, Neg. LLF: 98.01405492743768
Iteration: 11, Func. Count: 100, Neg. LLF: 97.92085755668168
Iteration: 12, Func. Count: 108, Neg. LLF: 97.91001561967494
Iteration: 13, Func. Count: 116, Neg. LLF: 97.9093795229355
Iteration: 14, Func. Count: 124, Neg. LLF: 97.90920944039901
Iteration: 15, Func. Count: 131, Neg. LLF: 97.90920952421301
Optimization terminated successfully (Exit mode 0)
Current function value: 97.90920944039901
Iterations: 15
Function evaluations: 131
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 99.25669479429897
Iteration: 2, Func. Count: 20, Neg. LLF: 250.56032083092305
Iteration: 3, Func. Count: 31, Neg. LLF: 104.07379488117414
Iteration: 4, Func. Count: 41, Neg. LLF: 234.5724097269021
Iteration: 5, Func. Count: 51, Neg. LLF: 97.81728613433202
Iteration: 6, Func. Count: 61, Neg. LLF: 99.00581147951526
Iteration: 7, Func. Count: 71, Neg. LLF: 96.98976672227342
Iteration: 8, Func. Count: 80, Neg. LLF: 96.97840613369317
Iteration: 9, Func. Count: 89, Neg. LLF: 96.97710560883576
Iteration: 10, Func. Count: 98, Neg. LLF: 96.97669678251044
Iteration: 11, Func. Count: 107, Neg. LLF: 96.97649137928907
Iteration: 12, Func. Count: 116, Neg. LLF: 96.97646178133772
Iteration: 13, Func. Count: 125, Neg. LLF: 96.97645767326131
Iteration: 14, Func. Count: 134, Neg. LLF: 96.97645576766278
Iteration: 15, Func. Count: 142, Neg. LLF: 96.97645576767485
Optimization terminated successfully (Exit mode 0)
Current function value: 96.97645576766278
Iterations: 15
Function evaluations: 142
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 98.93895663057309
Iteration: 2, Func. Count: 22, Neg. LLF: 3326.2417451686997
Iteration: 3, Func. Count: 33, Neg. LLF: 10695132.431224225
Iteration: 4, Func. Count: 44, Neg. LLF: 160.97087591078218
Iteration: 5, Func. Count: 55, Neg. LLF: 103.92261543560635
Iteration: 6, Func. Count: 66, Neg. LLF: 97.09527184376005
Iteration: 7, Func. Count: 76, Neg. LLF: 97.30129583958171
Iteration: 8, Func. Count: 87, Neg. LLF: 97.78090334330973
Iteration: 9, Func. Count: 98, Neg. LLF: 101.94614135607709
Iteration: 10, Func. Count: 109, Neg. LLF: 96.62244564140049
Iteration: 11, Func. Count: 119, Neg. LLF: 96.60436766622372
Iteration: 12, Func. Count: 129, Neg. LLF: 96.59349419539451
Iteration: 13, Func. Count: 139, Neg. LLF: 96.59029074263695
Iteration: 14, Func. Count: 149, Neg. LLF: 96.59021754888477
Iteration: 15, Func. Count: 159, Neg. LLF: 96.59018421110599
Iteration: 16, Func. Count: 169, Neg. LLF: 96.59014331112726
Iteration: 17, Func. Count: 179, Neg. LLF: 96.59012841368164
Iteration: 18, Func. Count: 189, Neg. LLF: 96.59012780836578
Optimization terminated successfully (Exit mode 0)
Current function value: 96.59012780836578
Iterations: 18
Function evaluations: 189
Gradient evaluations: 18
Iteration: 1, Func. Count: 12, Neg. LLF: 99.34196336383597
Iteration: 2, Func. Count: 24, Neg. LLF: 884.7945306204914
Iteration: 3, Func. Count: 36, Neg. LLF: 10147593.224147629
Iteration: 4, Func. Count: 48, Neg. LLF: 121.71134473183409
Iteration: 5, Func. Count: 60, Neg. LLF: 125.41332628239074
Iteration: 6, Func. Count: 72, Neg. LLF: 333.0939581084891
Iteration: 7, Func. Count: 84, Neg. LLF: 97.32333650853985
Iteration: 8, Func. Count: 95, Neg. LLF: 97.07905507150103
Iteration: 9, Func. Count: 107, Neg. LLF: 99.12685970381793
Iteration: 10, Func. Count: 120, Neg. LLF: 96.64365321675979
Iteration: 11, Func. Count: 131, Neg. LLF: 96.61113824846825
Iteration: 12, Func. Count: 142, Neg. LLF: 96.59244613837875
Iteration: 13, Func. Count: 153, Neg. LLF: 96.5906745598141
Iteration: 14, Func. Count: 164, Neg. LLF: 96.59017122373297
Iteration: 15, Func. Count: 175, Neg. LLF: 96.59013449921625
Iteration: 16, Func. Count: 186, Neg. LLF: 96.59013160532842
Iteration: 17, Func. Count: 197, Neg. LLF: 96.59012863181327
Iteration: 18, Func. Count: 208, Neg. LLF: 96.59012784471406
Optimization terminated successfully (Exit mode 0)
Current function value: 96.59012784471406
Iterations: 18
Function evaluations: 208
Gradient evaluations: 18
Iteration: 1, Func. Count: 9, Neg. LLF: 119.44797857486867
Iteration: 2, Func. Count: 19, Neg. LLF: 406205354.7835243
Iteration: 3, Func. Count: 28, Neg. LLF: 11164659.403254569
Iteration: 4, Func. Count: 37, Neg. LLF: 2809153.159337797
Iteration: 5, Func. Count: 46, Neg. LLF: 134303.68336858618
Iteration: 6, Func. Count: 55, Neg. LLF: 2926192.7882238943
Iteration: 7, Func. Count: 64, Neg. LLF: 100.4950877425861
Iteration: 8, Func. Count: 73, Neg. LLF: 97.91329524664766
Iteration: 9, Func. Count: 82, Neg. LLF: 100.12434574800024
Iteration: 10, Func. Count: 92, Neg. LLF: 97.5922008988733
Iteration: 11, Func. Count: 100, Neg. LLF: 97.5592580760244
Iteration: 12, Func. Count: 108, Neg. LLF: 97.45672202795743
Iteration: 13, Func. Count: 116, Neg. LLF: 97.43548230058241
Iteration: 14, Func. Count: 124, Neg. LLF: 97.43168047625402
Iteration: 15, Func. Count: 132, Neg. LLF: 97.43146421084342
Iteration: 16, Func. Count: 140, Neg. LLF: 97.43145746977129
Iteration: 17, Func. Count: 148, Neg. LLF: 97.43145678410293
Optimization terminated successfully (Exit mode 0)
Current function value: 97.43145678410293
Iterations: 17
Function evaluations: 148
Gradient evaluations: 17
Iteration: 1, Func. Count: 10, Neg. LLF: 101.49340721789731
Iteration: 2, Func. Count: 20, Neg. LLF: 347.9026846433944
Iteration: 3, Func. Count: 30, Neg. LLF: 98.70068328716113
Iteration: 4, Func. Count: 39, Neg. LLF: 99.86071967075065
Iteration: 5, Func. Count: 49, Neg. LLF: 137.47880821324432
Iteration: 6, Func. Count: 59, Neg. LLF: 108.63012671381173
Iteration: 7, Func. Count: 69, Neg. LLF: 99.02002729775927
Iteration: 8, Func. Count: 79, Neg. LLF: 99.02952986073048
Iteration: 9, Func. Count: 89, Neg. LLF: 98.63498803429451
Iteration: 10, Func. Count: 99, Neg. LLF: 97.63546297895753
Iteration: 11, Func. Count: 109, Neg. LLF: 97.62943182906132
Iteration: 12, Func. Count: 119, Neg. LLF: 97.58403885542151
Iteration: 13, Func. Count: 129, Neg. LLF: 97.57670224900689
Iteration: 14, Func. Count: 139, Neg. LLF: 97.44930923623323
Iteration: 15, Func. Count: 149, Neg. LLF: 97.43493653575202
Iteration: 16, Func. Count: 158, Neg. LLF: 97.43195333596826
Iteration: 17, Func. Count: 167, Neg. LLF: 97.43152065749126
Iteration: 18, Func. Count: 176, Neg. LLF: 97.43146912312864
Iteration: 19, Func. Count: 185, Neg. LLF: 97.43145731329389
Iteration: 20, Func. Count: 194, Neg. LLF: 97.43145683350889
Optimization terminated successfully (Exit mode 0)
Current function value: 97.43145683350889
Iterations: 20
Function evaluations: 194
Gradient evaluations: 20
Iteration: 1, Func. Count: 11, Neg. LLF: 117.1842429896792
Iteration: 2, Func. Count: 26, Neg. LLF: 17540314.41193529
Iteration: 3, Func. Count: 37, Neg. LLF: 8253596.42042665
Iteration: 4, Func. Count: 48, Neg. LLF: 398.07842757536423
Iteration: 5, Func. Count: 59, Neg. LLF: 99.62864143621928
Iteration: 6, Func. Count: 70, Neg. LLF: 104.49613899969476
Iteration: 7, Func. Count: 81, Neg. LLF: 97.62686265651818
Iteration: 8, Func. Count: 91, Neg. LLF: 97.2473262863519
Iteration: 9, Func. Count: 101, Neg. LLF: 97.28131442847207
Iteration: 10, Func. Count: 112, Neg. LLF: 97.18209099291188
Iteration: 11, Func. Count: 122, Neg. LLF: 97.13350182586694
Iteration: 12, Func. Count: 132, Neg. LLF: 97.09633385457415
Iteration: 13, Func. Count: 142, Neg. LLF: 97.07968072892692
Iteration: 14, Func. Count: 152, Neg. LLF: 97.067919861901
Iteration: 15, Func. Count: 162, Neg. LLF: 97.04209371285644
Iteration: 16, Func. Count: 172, Neg. LLF: 97.0103052192548
Iteration: 17, Func. Count: 182, Neg. LLF: 96.98445073941356
Iteration: 18, Func. Count: 192, Neg. LLF: 96.9771128004091
Iteration: 19, Func. Count: 202, Neg. LLF: 96.97657229041847
Iteration: 20, Func. Count: 212, Neg. LLF: 96.97645664167374
Iteration: 21, Func. Count: 222, Neg. LLF: 96.97645563755022
Iteration: 22, Func. Count: 231, Neg. LLF: 96.97645563755201
Optimization terminated successfully (Exit mode 0)
Current function value: 96.97645563755022
Iterations: 22
Function evaluations: 231
Gradient evaluations: 22
Iteration: 1, Func. Count: 12, Neg. LLF: 120.6067621932733
Iteration: 2, Func. Count: 28, Neg. LLF: 18553260.54089719
Iteration: 3, Func. Count: 40, Neg. LLF: 14624693.872115014
Iteration: 4, Func. Count: 52, Neg. LLF: 441.47956708120597
Iteration: 5, Func. Count: 64, Neg. LLF: 99.40801148948341
Iteration: 6, Func. Count: 76, Neg. LLF: 97.25753698203427
Iteration: 7, Func. Count: 87, Neg. LLF: 97.23970131462404
Iteration: 8, Func. Count: 99, Neg. LLF: 97.08386956869167
Iteration: 9, Func. Count: 111, Neg. LLF: 96.85682242700705
Iteration: 10, Func. Count: 122, Neg. LLF: 98.54031361267528
Iteration: 11, Func. Count: 134, Neg. LLF: 96.78077112882497
Iteration: 12, Func. Count: 145, Neg. LLF: 96.74316803255573
Iteration: 13, Func. Count: 156, Neg. LLF: 96.64858574534796
Iteration: 14, Func. Count: 167, Neg. LLF: 96.5740429480773
Iteration: 15, Func. Count: 178, Neg. LLF: 96.50188829215969
Iteration: 16, Func. Count: 189, Neg. LLF: 96.48566559576028
Iteration: 17, Func. Count: 200, Neg. LLF: 96.4843549591686
Iteration: 18, Func. Count: 211, Neg. LLF: 96.48430274808443
Iteration: 19, Func. Count: 222, Neg. LLF: 96.48428121900541
Iteration: 20, Func. Count: 233, Neg. LLF: 96.48427669298172
Iteration: 21, Func. Count: 243, Neg. LLF: 96.4842766930171
Optimization terminated successfully (Exit mode 0)
Current function value: 96.48427669298172
Iterations: 21
Function evaluations: 243
Gradient evaluations: 21
Iteration: 1, Func. Count: 13, Neg. LLF: 122.6931214701738
Iteration: 2, Func. Count: 30, Neg. LLF: 19142504.814764217
Iteration: 3, Func. Count: 43, Neg. LLF: 15659301.899083568
Iteration: 4, Func. Count: 56, Neg. LLF: 269.09406749419026
Iteration: 5, Func. Count: 69, Neg. LLF: 99.13374722212635
Iteration: 6, Func. Count: 82, Neg. LLF: 102.45206433533002
Iteration: 7, Func. Count: 95, Neg. LLF: 102.54095399523236
Iteration: 8, Func. Count: 108, Neg. LLF: 97.52692938149006
Iteration: 9, Func. Count: 120, Neg. LLF: 98.76478344029213
Iteration: 10, Func. Count: 134, Neg. LLF: 97.30801604454864
Iteration: 11, Func. Count: 146, Neg. LLF: 97.25510321355632
Iteration: 12, Func. Count: 158, Neg. LLF: 97.2162076489878
Iteration: 13, Func. Count: 170, Neg. LLF: 97.16404852131245
Iteration: 14, Func. Count: 182, Neg. LLF: 97.07828701541338
Iteration: 15, Func. Count: 194, Neg. LLF: 97.05611328534387
Iteration: 16, Func. Count: 206, Neg. LLF: 97.03767195453491
Iteration: 17, Func. Count: 218, Neg. LLF: 97.01401494489737
Iteration: 18, Func. Count: 230, Neg. LLF: 96.9966631759653
Iteration: 19, Func. Count: 242, Neg. LLF: 96.98312386640316
Iteration: 20, Func. Count: 254, Neg. LLF: 96.97776921382746
Iteration: 21, Func. Count: 266, Neg. LLF: 96.97666288476293
Iteration: 22, Func. Count: 278, Neg. LLF: 96.97646643169828
Iteration: 23, Func. Count: 290, Neg. LLF: 96.97645993280635
Iteration: 24, Func. Count: 302, Neg. LLF: 96.9764558829528
Iteration: 25, Func. Count: 313, Neg. LLF: 96.97645600973259
Optimization terminated successfully (Exit mode 0)
Current function value: 96.9764558829528
Iterations: 25
Function evaluations: 313
Gradient evaluations: 25
Iteration: 1, Func. Count: 6, Neg. LLF: 122.4723056386696
Iteration: 2, Func. Count: 13, Neg. LLF: 183.35208287973543
Iteration: 3, Func. Count: 19, Neg. LLF: 696.241388073905
Iteration: 4, Func. Count: 25, Neg. LLF: 105.59108009670172
Iteration: 5, Func. Count: 31, Neg. LLF: 98.95210948534495
Iteration: 6, Func. Count: 37, Neg. LLF: 98.48046262162602
Iteration: 7, Func. Count: 42, Neg. LLF: 100.94910209869185
Iteration: 8, Func. Count: 48, Neg. LLF: 98.38770349304248
Iteration: 9, Func. Count: 53, Neg. LLF: 98.38004202308588
Iteration: 10, Func. Count: 58, Neg. LLF: 98.37960762127888
Iteration: 11, Func. Count: 63, Neg. LLF: 98.37953882974185
Iteration: 12, Func. Count: 68, Neg. LLF: 98.37953718781894
Iteration: 13, Func. Count: 72, Neg. LLF: 98.379537187835
Optimization terminated successfully (Exit mode 0)
Current function value: 98.37953718781894
Iterations: 13
Function evaluations: 72
Gradient evaluations: 13
Iteration: 1, Func. Count: 7, Neg. LLF: 103.0807764957671
Iteration: 2, Func. Count: 14, Neg. LLF: 147.1254151588725
Iteration: 3, Func. Count: 21, Neg. LLF: 99.3013605805874
Iteration: 4, Func. Count: 28, Neg. LLF: 99.09674696892228
Iteration: 5, Func. Count: 35, Neg. LLF: 98.47983891065608
Iteration: 6, Func. Count: 42, Neg. LLF: 98.18511135225891
Iteration: 7, Func. Count: 49, Neg. LLF: 98.04108913253248
Iteration: 8, Func. Count: 55, Neg. LLF: 98.03996371405405
Iteration: 9, Func. Count: 61, Neg. LLF: 98.03978531599942
Iteration: 10, Func. Count: 67, Neg. LLF: 98.03978317187506
Iteration: 11, Func. Count: 73, Neg. LLF: 98.03978242594889
Optimization terminated successfully (Exit mode 0)
Current function value: 98.03978242594889
Iterations: 11
Function evaluations: 73
Gradient evaluations: 11
Iteration: 1, Func. Count: 8, Neg. LLF: 101.83205276419032
Iteration: 2, Func. Count: 16, Neg. LLF: 144.9560071176842
Iteration: 3, Func. Count: 24, Neg. LLF: 31858.431926322795
Iteration: 4, Func. Count: 32, Neg. LLF: 116.24276388883138
Iteration: 5, Func. Count: 40, Neg. LLF: 98.09825868725116
Iteration: 6, Func. Count: 47, Neg. LLF: 98.05335578722386
Iteration: 7, Func. Count: 54, Neg. LLF: 98.04004930265927
Iteration: 8, Func. Count: 61, Neg. LLF: 98.03978757122692
Iteration: 9, Func. Count: 68, Neg. LLF: 98.03978247382916
Iteration: 10, Func. Count: 74, Neg. LLF: 98.03978255253892
Optimization terminated successfully (Exit mode 0)
Current function value: 98.03978247382916
Iterations: 10
Function evaluations: 74
Gradient evaluations: 10
Iteration: 1, Func. Count: 9, Neg. LLF: 104.81520230170206
Iteration: 2, Func. Count: 18, Neg. LLF: 132.48597437721074
Iteration: 3, Func. Count: 27, Neg. LLF: 1307.9635312096766
Iteration: 4, Func. Count: 36, Neg. LLF: 120.41047629422305
Iteration: 5, Func. Count: 45, Neg. LLF: 98.20470257184861
Iteration: 6, Func. Count: 53, Neg. LLF: 98.07001893416711
Iteration: 7, Func. Count: 61, Neg. LLF: 98.04093578979187
Iteration: 8, Func. Count: 69, Neg. LLF: 98.03983914697999
Iteration: 9, Func. Count: 77, Neg. LLF: 98.0397850699679
Iteration: 10, Func. Count: 85, Neg. LLF: 98.03978256137873
Iteration: 11, Func. Count: 92, Neg. LLF: 98.03978256740034
Optimization terminated successfully (Exit mode 0)
Current function value: 98.03978256137873
Iterations: 11
Function evaluations: 92
Gradient evaluations: 11
Iteration: 1, Func. Count: 10, Neg. LLF: 107.49054602070917
Iteration: 2, Func. Count: 20, Neg. LLF: 129.9163374881552
Iteration: 3, Func. Count: 30, Neg. LLF: 910.5840071229453
Iteration: 4, Func. Count: 40, Neg. LLF: 123.19106662344669
Iteration: 5, Func. Count: 50, Neg. LLF: 98.62586216202159
Iteration: 6, Func. Count: 60, Neg. LLF: 98.04060937909259
Iteration: 7, Func. Count: 69, Neg. LLF: 100.63753748583017
Iteration: 8, Func. Count: 80, Neg. LLF: 98.03095981527092
Iteration: 9, Func. Count: 90, Neg. LLF: 98.02472602066311
Iteration: 10, Func. Count: 99, Neg. LLF: 98.0247159111023
Iteration: 11, Func. Count: 108, Neg. LLF: 98.02471471473831
Iteration: 12, Func. Count: 116, Neg. LLF: 98.02471471474293
Optimization terminated successfully (Exit mode 0)
Current function value: 98.02471471473831
Iterations: 12
Function evaluations: 116
Gradient evaluations: 12
Iteration: 1, Func. Count: 7, Neg. LLF: 121.8155840729179
Iteration: 2, Func. Count: 15, Neg. LLF: 185.56639972086657
Iteration: 3, Func. Count: 22, Neg. LLF: 705.4652333520812
Iteration: 4, Func. Count: 29, Neg. LLF: 104.87219822936902
Iteration: 5, Func. Count: 36, Neg. LLF: 98.89112492358001
Iteration: 6, Func. Count: 42, Neg. LLF: 160.79973710700165
Iteration: 7, Func. Count: 50, Neg. LLF: 104.10419445026577
Iteration: 8, Func. Count: 58, Neg. LLF: 98.43896280455162
Iteration: 9, Func. Count: 64, Neg. LLF: 98.36829279903166
Iteration: 10, Func. Count: 70, Neg. LLF: 98.35663645968783
Iteration: 11, Func. Count: 76, Neg. LLF: 98.3540114068704
Iteration: 12, Func. Count: 82, Neg. LLF: 98.35396318270053
Iteration: 13, Func. Count: 88, Neg. LLF: 98.35394650207434
Iteration: 14, Func. Count: 94, Neg. LLF: 98.35393420005066
Iteration: 15, Func. Count: 100, Neg. LLF: 98.35393132093839
Iteration: 16, Func. Count: 105, Neg. LLF: 98.35393128130637
Optimization terminated successfully (Exit mode 0)
Current function value: 98.35393132093839
Iterations: 16
Function evaluations: 105
Gradient evaluations: 16
Iteration: 1, Func. Count: 8, Neg. LLF: 104.15497429850136
Iteration: 2, Func. Count: 16, Neg. LLF: 107.90713520991466
Iteration: 3, Func. Count: 24, Neg. LLF: 113.08914264673999
Iteration: 4, Func. Count: 32, Neg. LLF: 98.41711281012095
Iteration: 5, Func. Count: 39, Neg. LLF: 102.4430523681095
Iteration: 6, Func. Count: 47, Neg. LLF: 99.621803792286
Iteration: 7, Func. Count: 58, Neg. LLF: 99.5512991012975
Iteration: 8, Func. Count: 66, Neg. LLF: 98.03552390168718
Iteration: 9, Func. Count: 73, Neg. LLF: 98.03356164785504
Iteration: 10, Func. Count: 80, Neg. LLF: 98.03322739541733
Iteration: 11, Func. Count: 87, Neg. LLF: 98.03312960773525
Iteration: 12, Func. Count: 94, Neg. LLF: 98.03311729117536
Iteration: 13, Func. Count: 101, Neg. LLF: 98.03311468955697
Iteration: 14, Func. Count: 107, Neg. LLF: 98.03311468955734
Optimization terminated successfully (Exit mode 0)
Current function value: 98.03311468955697
Iterations: 14
Function evaluations: 107
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 101.27851123024732
Iteration: 2, Func. Count: 18, Neg. LLF: 145.40292517159008
Iteration: 3, Func. Count: 27, Neg. LLF: 31825.85766856632
Iteration: 4, Func. Count: 36, Neg. LLF: 116.23430561973758
Iteration: 5, Func. Count: 45, Neg. LLF: 98.0716861129692
Iteration: 6, Func. Count: 53, Neg. LLF: 98.72321337295661
Iteration: 7, Func. Count: 63, Neg. LLF: 98.52126383379684
Iteration: 8, Func. Count: 72, Neg. LLF: 98.03359563374632
Iteration: 9, Func. Count: 80, Neg. LLF: 98.03311700707988
Iteration: 10, Func. Count: 88, Neg. LLF: 98.0331151290125
Iteration: 11, Func. Count: 95, Neg. LLF: 98.03311520808101
Optimization terminated successfully (Exit mode 0)
Current function value: 98.0331151290125
Iterations: 11
Function evaluations: 95
Gradient evaluations: 11
Iteration: 1, Func. Count: 10, Neg. LLF: 104.0906414350803
Iteration: 2, Func. Count: 20, Neg. LLF: 132.73924253885372
Iteration: 3, Func. Count: 30, Neg. LLF: 1259.8389447987079
Iteration: 4, Func. Count: 40, Neg. LLF: 120.87243950974545
Iteration: 5, Func. Count: 50, Neg. LLF: 98.18173472545368
Iteration: 6, Func. Count: 59, Neg. LLF: 100.75312956165924
Iteration: 7, Func. Count: 70, Neg. LLF: 99.66385161394429
Iteration: 8, Func. Count: 80, Neg. LLF: 98.03432418255797
Iteration: 9, Func. Count: 89, Neg. LLF: 98.0331960762551
Iteration: 10, Func. Count: 98, Neg. LLF: 98.03312622745591
Iteration: 11, Func. Count: 107, Neg. LLF: 98.03311820829248
Iteration: 12, Func. Count: 116, Neg. LLF: 98.03311476203206
Iteration: 13, Func. Count: 124, Neg. LLF: 98.03311476852906
Optimization terminated successfully (Exit mode 0)
Current function value: 98.03311476203206
Iterations: 13
Function evaluations: 124
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 106.67623182221851
Iteration: 2, Func. Count: 22, Neg. LLF: 130.17431484663578
Iteration: 3, Func. Count: 33, Neg. LLF: 888.7686073102253
Iteration: 4, Func. Count: 44, Neg. LLF: 123.62877095939139
Iteration: 5, Func. Count: 55, Neg. LLF: 98.56919551394732
Iteration: 6, Func. Count: 66, Neg. LLF: 98.04092899740516
Iteration: 7, Func. Count: 76, Neg. LLF: 101.61046398806302
Iteration: 8, Func. Count: 88, Neg. LLF: 98.13656420616144
Iteration: 9, Func. Count: 100, Neg. LLF: 98.85216508472537
Iteration: 10, Func. Count: 111, Neg. LLF: 98.01707957766871
Iteration: 11, Func. Count: 121, Neg. LLF: 98.01704782456636
Iteration: 12, Func. Count: 131, Neg. LLF: 98.01704511426426
Iteration: 13, Func. Count: 140, Neg. LLF: 98.01704511427465
Optimization terminated successfully (Exit mode 0)
Current function value: 98.01704511426426
Iterations: 13
Function evaluations: 140
Gradient evaluations: 13
Iteration: 1, Func. Count: 8, Neg. LLF: 106.60766321576591
Iteration: 2, Func. Count: 17, Neg. LLF: 479.425056713299
Iteration: 3, Func. Count: 25, Neg. LLF: 314.17094463793933
Iteration: 4, Func. Count: 33, Neg. LLF: 1098.1983770619358
Iteration: 5, Func. Count: 41, Neg. LLF: 99.02436574024608
Iteration: 6, Func. Count: 49, Neg. LLF: 98.52941910540837
Iteration: 7, Func. Count: 57, Neg. LLF: 97.51716829549369
Iteration: 8, Func. Count: 65, Neg. LLF: 97.45314164385904
Iteration: 9, Func. Count: 73, Neg. LLF: 101.4207986508249
Iteration: 10, Func. Count: 82, Neg. LLF: 97.4505425728681
Iteration: 11, Func. Count: 90, Neg. LLF: 97.35642502193676
Iteration: 12, Func. Count: 97, Neg. LLF: 97.34779623475373
Iteration: 13, Func. Count: 104, Neg. LLF: 97.34759148077012
Iteration: 14, Func. Count: 111, Neg. LLF: 97.34758576590689
Iteration: 15, Func. Count: 117, Neg. LLF: 97.34758576590181
Optimization terminated successfully (Exit mode 0)
Current function value: 97.34758576590689
Iterations: 15
Function evaluations: 117
Gradient evaluations: 15
Iteration: 1, Func. Count: 9, Neg. LLF: 123.01445669283895
Iteration: 2, Func. Count: 18, Neg. LLF: 117.34183294973762
Iteration: 3, Func. Count: 28, Neg. LLF: 103.16441338049921
Iteration: 4, Func. Count: 37, Neg. LLF: 97.93112024848432
Iteration: 5, Func. Count: 45, Neg. LLF: 99.55531003508241
Iteration: 6, Func. Count: 55, Neg. LLF: 100.02815843301708
Iteration: 7, Func. Count: 65, Neg. LLF: 98.63718738367146
Iteration: 8, Func. Count: 74, Neg. LLF: 97.78722783866809
Iteration: 9, Func. Count: 83, Neg. LLF: 97.34780319206818
Iteration: 10, Func. Count: 91, Neg. LLF: 97.32076448087669
Iteration: 11, Func. Count: 99, Neg. LLF: 97.31881861163491
Iteration: 12, Func. Count: 107, Neg. LLF: 97.31852642667285
Iteration: 13, Func. Count: 115, Neg. LLF: 97.3185110105539
Iteration: 14, Func. Count: 123, Neg. LLF: 97.3185037926376
Iteration: 15, Func. Count: 131, Neg. LLF: 97.31850010041829
Iteration: 16, Func. Count: 139, Neg. LLF: 97.31849862142167
Iteration: 17, Func. Count: 146, Neg. LLF: 97.31849862135081
Optimization terminated successfully (Exit mode 0)
Current function value: 97.31849862142167
Iterations: 17
Function evaluations: 146
Gradient evaluations: 17
Iteration: 1, Func. Count: 10, Neg. LLF: 107.16973310435255
Iteration: 2, Func. Count: 20, Neg. LLF: 110.09912194526905
Iteration: 3, Func. Count: 31, Neg. LLF: 99.3974144594837
Iteration: 4, Func. Count: 41, Neg. LLF: 98.93029282891116
Iteration: 5, Func. Count: 51, Neg. LLF: 97.19636954501539
Iteration: 6, Func. Count: 60, Neg. LLF: 97.3616624789778
Iteration: 7, Func. Count: 70, Neg. LLF: 108.81693012656335
Iteration: 8, Func. Count: 80, Neg. LLF: 97.85537982044305
Iteration: 9, Func. Count: 90, Neg. LLF: 96.79706674753004
Iteration: 10, Func. Count: 99, Neg. LLF: 96.74332903459317
Iteration: 11, Func. Count: 108, Neg. LLF: 96.73292708888485
Iteration: 12, Func. Count: 117, Neg. LLF: 96.72955563975344
Iteration: 13, Func. Count: 126, Neg. LLF: 96.72887120859536
Iteration: 14, Func. Count: 135, Neg. LLF: 96.72878347807345
Iteration: 15, Func. Count: 144, Neg. LLF: 96.72873626447789
Iteration: 16, Func. Count: 153, Neg. LLF: 96.72868604504968
Iteration: 17, Func. Count: 162, Neg. LLF: 96.72867977339642
Iteration: 18, Func. Count: 171, Neg. LLF: 96.72867860938157
Iteration: 19, Func. Count: 179, Neg. LLF: 96.72867860937498
Optimization terminated successfully (Exit mode 0)
Current function value: 96.72867860938157
Iterations: 19
Function evaluations: 179
Gradient evaluations: 19
Iteration: 1, Func. Count: 11, Neg. LLF: 104.2061575096167
Iteration: 2, Func. Count: 22, Neg. LLF: 1084.4301269758034
Iteration: 3, Func. Count: 34, Neg. LLF: 96.99898252884431
Iteration: 4, Func. Count: 44, Neg. LLF: 99.91229192040058
Iteration: 5, Func. Count: 55, Neg. LLF: 700.1380302138385
Iteration: 6, Func. Count: 68, Neg. LLF: 6933135.644377642
Iteration: 7, Func. Count: 80, Neg. LLF: 96.58982062018818
Iteration: 8, Func. Count: 91, Neg. LLF: 96.20189918346365
Iteration: 9, Func. Count: 102, Neg. LLF: 96.01361615858312
Iteration: 10, Func. Count: 112, Neg. LLF: 96.00838414813397
Iteration: 11, Func. Count: 122, Neg. LLF: 96.00711734134515
Iteration: 12, Func. Count: 132, Neg. LLF: 96.00598049264312
Iteration: 13, Func. Count: 142, Neg. LLF: 96.00592201461473
Iteration: 14, Func. Count: 152, Neg. LLF: 96.00591582622921
Iteration: 15, Func. Count: 161, Neg. LLF: 96.00591582621898
Optimization terminated successfully (Exit mode 0)
Current function value: 96.00591582622921
Iterations: 15
Function evaluations: 161
Gradient evaluations: 15
Iteration: 1, Func. Count: 12, Neg. LLF: 104.94446920805088
Iteration: 2, Func. Count: 24, Neg. LLF: 1209.6163450466368
Iteration: 3, Func. Count: 37, Neg. LLF: 97.37908505826401
Iteration: 4, Func. Count: 49, Neg. LLF: 103.31456032217659
Iteration: 5, Func. Count: 61, Neg. LLF: 109.63081058800533
Iteration: 6, Func. Count: 73, Neg. LLF: 98.07430348645376
Iteration: 7, Func. Count: 85, Neg. LLF: 96.36990724148929
Iteration: 8, Func. Count: 97, Neg. LLF: 96.1738581714937
Iteration: 9, Func. Count: 108, Neg. LLF: 96.07276690310228
Iteration: 10, Func. Count: 119, Neg. LLF: 96.36170765436704
Iteration: 11, Func. Count: 131, Neg. LLF: 96.53710425321667
Iteration: 12, Func. Count: 143, Neg. LLF: 96.01414509138284
Iteration: 13, Func. Count: 154, Neg. LLF: 96.00655440881049
Iteration: 14, Func. Count: 165, Neg. LLF: 96.00600972278896
Iteration: 15, Func. Count: 176, Neg. LLF: 96.00595086947226
Iteration: 16, Func. Count: 187, Neg. LLF: 96.00591943948861
Iteration: 17, Func. Count: 198, Neg. LLF: 96.0059158511154
Iteration: 18, Func. Count: 208, Neg. LLF: 96.00591590872028
Optimization terminated successfully (Exit mode 0)
Current function value: 96.0059158511154
Iterations: 18
Function evaluations: 208
Gradient evaluations: 18
Iteration: 1, Func. Count: 9, Neg. LLF: 118.26759228560948
Iteration: 2, Func. Count: 19, Neg. LLF: 380.4493985033822
Iteration: 3, Func. Count: 28, Neg. LLF: 11070202.024990046
Iteration: 4, Func. Count: 37, Neg. LLF: 919.9791216844351
Iteration: 5, Func. Count: 46, Neg. LLF: 97.89210290935257
Iteration: 6, Func. Count: 54, Neg. LLF: 99.83026255771595
Iteration: 7, Func. Count: 63, Neg. LLF: 105.67754007012569
Iteration: 8, Func. Count: 73, Neg. LLF: 97.67228420030476
Iteration: 9, Func. Count: 82, Neg. LLF: 98.1227174184468
Iteration: 10, Func. Count: 91, Neg. LLF: 98.11558892349348
Iteration: 11, Func. Count: 100, Neg. LLF: 97.40381253670051
Iteration: 12, Func. Count: 108, Neg. LLF: 97.36414912608068
Iteration: 13, Func. Count: 116, Neg. LLF: 97.35235299881636
Iteration: 14, Func. Count: 124, Neg. LLF: 97.34823440092073
Iteration: 15, Func. Count: 132, Neg. LLF: 97.34764603429609
Iteration: 16, Func. Count: 140, Neg. LLF: 97.34758940588064
Iteration: 17, Func. Count: 148, Neg. LLF: 97.34758579985782
Iteration: 18, Func. Count: 155, Neg. LLF: 97.34758588615574
Optimization terminated successfully (Exit mode 0)
Current function value: 97.34758579985782
Iterations: 18
Function evaluations: 155
Gradient evaluations: 18
Iteration: 1, Func. Count: 10, Neg. LLF: 104.04897227639276
Iteration: 2, Func. Count: 20, Neg. LLF: 170.68319050124148
Iteration: 3, Func. Count: 31, Neg. LLF: 99.31869720870856
Iteration: 4, Func. Count: 42, Neg. LLF: 98.39433463446755
Iteration: 5, Func. Count: 52, Neg. LLF: 97.64480713324461
Iteration: 6, Func. Count: 62, Neg. LLF: 97.53998845333246
Iteration: 7, Func. Count: 72, Neg. LLF: 97.32673397217724
Iteration: 8, Func. Count: 81, Neg. LLF: 98.38151495450967
Iteration: 9, Func. Count: 92, Neg. LLF: 97.32001813961973
Iteration: 10, Func. Count: 101, Neg. LLF: 97.31886016731578
Iteration: 11, Func. Count: 110, Neg. LLF: 97.31858731587384
Iteration: 12, Func. Count: 119, Neg. LLF: 97.31850099038306
Iteration: 13, Func. Count: 128, Neg. LLF: 97.31849845603443
Iteration: 14, Func. Count: 136, Neg. LLF: 97.31849845605178
Optimization terminated successfully (Exit mode 0)
Current function value: 97.31849845603443
Iterations: 14
Function evaluations: 136
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 104.38816042535282
Iteration: 2, Func. Count: 22, Neg. LLF: 292.88224549889713
Iteration: 3, Func. Count: 33, Neg. LLF: 98.74799274793693
Iteration: 4, Func. Count: 45, Neg. LLF: 100.39427045705926
Iteration: 5, Func. Count: 56, Neg. LLF: 97.40608228300225
Iteration: 6, Func. Count: 66, Neg. LLF: 97.97769627925778
Iteration: 7, Func. Count: 77, Neg. LLF: 99.22289003614956
Iteration: 8, Func. Count: 88, Neg. LLF: 97.51503555890115
Iteration: 9, Func. Count: 99, Neg. LLF: 96.7687663178399
Iteration: 10, Func. Count: 109, Neg. LLF: 96.74495112196021
Iteration: 11, Func. Count: 119, Neg. LLF: 96.73608319104902
Iteration: 12, Func. Count: 129, Neg. LLF: 96.7323707361581
Iteration: 13, Func. Count: 139, Neg. LLF: 96.73048917404412
Iteration: 14, Func. Count: 149, Neg. LLF: 96.72981007772522
Iteration: 15, Func. Count: 159, Neg. LLF: 96.72903700044672
Iteration: 16, Func. Count: 169, Neg. LLF: 96.7287250445541
Iteration: 17, Func. Count: 179, Neg. LLF: 96.72868032284599
Iteration: 18, Func. Count: 189, Neg. LLF: 96.72867863921809
Iteration: 19, Func. Count: 198, Neg. LLF: 96.72867863922534
Optimization terminated successfully (Exit mode 0)
Current function value: 96.72867863921809
Iterations: 19
Function evaluations: 198
Gradient evaluations: 19
Iteration: 1, Func. Count: 12, Neg. LLF: 105.00525846925186
Iteration: 2, Func. Count: 24, Neg. LLF: 358.28019301881625
Iteration: 3, Func. Count: 36, Neg. LLF: 96.80668362597899
Iteration: 4, Func. Count: 47, Neg. LLF: 107.02661979189668
Iteration: 5, Func. Count: 59, Neg. LLF: 118.39226301633923
Iteration: 6, Func. Count: 73, Neg. LLF: 104.57514006308865
Iteration: 7, Func. Count: 86, Neg. LLF: 97.73742505541425
Iteration: 8, Func. Count: 99, Neg. LLF: 96.2159639580891
Iteration: 9, Func. Count: 111, Neg. LLF: 96.0208350755006
Iteration: 10, Func. Count: 122, Neg. LLF: 96.01138527513126
Iteration: 11, Func. Count: 133, Neg. LLF: 96.009012016768
Iteration: 12, Func. Count: 144, Neg. LLF: 96.0060440740387
Iteration: 13, Func. Count: 155, Neg. LLF: 96.00593948439187
Iteration: 14, Func. Count: 166, Neg. LLF: 96.00593003878147
Iteration: 15, Func. Count: 177, Neg. LLF: 96.00591678298913
Iteration: 16, Func. Count: 188, Neg. LLF: 96.0059158410476
Optimization terminated successfully (Exit mode 0)
Current function value: 96.0059158410476
Iterations: 16
Function evaluations: 188
Gradient evaluations: 16
Iteration: 1, Func. Count: 13, Neg. LLF: 107.66164858182431
Iteration: 2, Func. Count: 26, Neg. LLF: 293.12410446863294
Iteration: 3, Func. Count: 39, Neg. LLF: 97.1359834596374
Iteration: 4, Func. Count: 51, Neg. LLF: 109.40222302754343
Iteration: 5, Func. Count: 64, Neg. LLF: 113.36163972017957
Iteration: 6, Func. Count: 78, Neg. LLF: 100.92371026904455
Iteration: 7, Func. Count: 91, Neg. LLF: 100.21027711313732
Iteration: 8, Func. Count: 104, Neg. LLF: 97.73485336994926
Iteration: 9, Func. Count: 117, Neg. LLF: 97.71693139091475
Iteration: 10, Func. Count: 130, Neg. LLF: 97.43919920974918
Iteration: 11, Func. Count: 143, Neg. LLF: 97.40091125783898
Iteration: 12, Func. Count: 156, Neg. LLF: 97.20059775013269
Iteration: 13, Func. Count: 169, Neg. LLF: 97.22831031464871
Iteration: 14, Func. Count: 182, Neg. LLF: 97.07372010235242
Iteration: 15, Func. Count: 195, Neg. LLF: 96.34737159040723
Iteration: 16, Func. Count: 208, Neg. LLF: 96.0205987239927
Iteration: 17, Func. Count: 220, Neg. LLF: 96.01731363403212
Iteration: 18, Func. Count: 232, Neg. LLF: 96.01183291593802
Iteration: 19, Func. Count: 244, Neg. LLF: 96.0075041123194
Iteration: 20, Func. Count: 256, Neg. LLF: 96.00647602676388
Iteration: 21, Func. Count: 268, Neg. LLF: 96.00601661865826
Iteration: 22, Func. Count: 280, Neg. LLF: 96.00595541696708
Iteration: 23, Func. Count: 292, Neg. LLF: 96.00592521981096
Iteration: 24, Func. Count: 304, Neg. LLF: 96.00591747806585
Iteration: 25, Func. Count: 316, Neg. LLF: 96.00591618764103
Iteration: 26, Func. Count: 327, Neg. LLF: 96.00591624522647
Optimization terminated successfully (Exit mode 0)
Current function value: 96.00591618764103
Iterations: 26
Function evaluations: 327
Gradient evaluations: 26
Iteration: 1, Func. Count: 10, Neg. LLF: 123.36699182655693
Iteration: 2, Func. Count: 21, Neg. LLF: 415.12595382485966
Iteration: 3, Func. Count: 31, Neg. LLF: 11072449.100994993
Iteration: 4, Func. Count: 41, Neg. LLF: 142.6945683213609
Iteration: 5, Func. Count: 51, Neg. LLF: 99.33260562942809
Iteration: 6, Func. Count: 61, Neg. LLF: 98.46867416966106
Iteration: 7, Func. Count: 71, Neg. LLF: 98.04841024569784
Iteration: 8, Func. Count: 81, Neg. LLF: 97.93186209735201
Iteration: 9, Func. Count: 91, Neg. LLF: 97.4171977105402
Iteration: 10, Func. Count: 100, Neg. LLF: 98.03331784474919
Iteration: 11, Func. Count: 110, Neg. LLF: 97.6048998409523
Iteration: 12, Func. Count: 121, Neg. LLF: 97.2990555463072
Iteration: 13, Func. Count: 130, Neg. LLF: 97.27828610424524
Iteration: 14, Func. Count: 139, Neg. LLF: 97.27724596791492
Iteration: 15, Func. Count: 148, Neg. LLF: 97.27701226669484
Iteration: 16, Func. Count: 157, Neg. LLF: 97.27699397962681
Iteration: 17, Func. Count: 166, Neg. LLF: 97.2769901185127
Iteration: 18, Func. Count: 174, Neg. LLF: 97.27699011852401
Optimization terminated successfully (Exit mode 0)
Current function value: 97.2769901185127
Iterations: 18
Function evaluations: 174
Gradient evaluations: 18
Iteration: 1, Func. Count: 11, Neg. LLF: 105.01267094352515
Iteration: 2, Func. Count: 22, Neg. LLF: 339.82482693265763
Iteration: 3, Func. Count: 34, Neg. LLF: 99.03280709960981
Iteration: 4, Func. Count: 46, Neg. LLF: 99.6113661265892
Iteration: 5, Func. Count: 57, Neg. LLF: 97.66323008198081
Iteration: 6, Func. Count: 68, Neg. LLF: 98.97187758348778
Iteration: 7, Func. Count: 79, Neg. LLF: 97.36114197120726
Iteration: 8, Func. Count: 89, Neg. LLF: 97.31249301880592
Iteration: 9, Func. Count: 99, Neg. LLF: 98.34386210967226
Iteration: 10, Func. Count: 111, Neg. LLF: 97.30500561600464
Iteration: 11, Func. Count: 122, Neg. LLF: 97.2967867591548
Iteration: 12, Func. Count: 132, Neg. LLF: 97.29646021162384
Iteration: 13, Func. Count: 142, Neg. LLF: 97.2964375149001
Iteration: 14, Func. Count: 152, Neg. LLF: 97.29643671726986
Optimization terminated successfully (Exit mode 0)
Current function value: 97.29643671726986
Iterations: 14
Function evaluations: 152
Gradient evaluations: 14
Iteration: 1, Func. Count: 12, Neg. LLF: 104.36092259432445
Iteration: 2, Func. Count: 24, Neg. LLF: 394.9436558436147
Iteration: 3, Func. Count: 36, Neg. LLF: 98.66052331619385
Iteration: 4, Func. Count: 49, Neg. LLF: 113.410259989125
Iteration: 5, Func. Count: 61, Neg. LLF: 98.450354451173
Iteration: 6, Func. Count: 73, Neg. LLF: 97.25170540456028
Iteration: 7, Func. Count: 84, Neg. LLF: 97.39572741741243
Iteration: 8, Func. Count: 96, Neg. LLF: 96.9965266650537
Iteration: 9, Func. Count: 107, Neg. LLF: 96.84717980606922
Iteration: 10, Func. Count: 118, Neg. LLF: 96.79255597546643
Iteration: 11, Func. Count: 129, Neg. LLF: 96.7568583359976
Iteration: 12, Func. Count: 140, Neg. LLF: 96.73750246009682
Iteration: 13, Func. Count: 151, Neg. LLF: 96.73107305597767
Iteration: 14, Func. Count: 162, Neg. LLF: 96.72949967902657
Iteration: 15, Func. Count: 173, Neg. LLF: 96.72937783305996
Iteration: 16, Func. Count: 185, Neg. LLF: 96.72873802970493
Iteration: 17, Func. Count: 196, Neg. LLF: 96.72869223511135
Iteration: 18, Func. Count: 207, Neg. LLF: 96.72868566861665
Iteration: 19, Func. Count: 218, Neg. LLF: 96.72867867776269
Iteration: 20, Func. Count: 228, Neg. LLF: 96.72867867773921
Optimization terminated successfully (Exit mode 0)
Current function value: 96.72867867776269
Iterations: 20
Function evaluations: 228
Gradient evaluations: 20
Iteration: 1, Func. Count: 13, Neg. LLF: 107.43275779049898
Iteration: 2, Func. Count: 26, Neg. LLF: 315.48254096023135
Iteration: 3, Func. Count: 39, Neg. LLF: 100.02084109020544
Iteration: 4, Func. Count: 52, Neg. LLF: 116.8952900860729
Iteration: 5, Func. Count: 65, Neg. LLF: 104.79516237135068
Iteration: 6, Func. Count: 78, Neg. LLF: 96.34969497827984
Iteration: 7, Func. Count: 90, Neg. LLF: 98.47942666358463
Iteration: 8, Func. Count: 104, Neg. LLF: 99.41824566468668
Iteration: 9, Func. Count: 119, Neg. LLF: 97.93200235076755
Iteration: 10, Func. Count: 132, Neg. LLF: 96.01593493295354
Iteration: 11, Func. Count: 144, Neg. LLF: 96.00967924503274
Iteration: 12, Func. Count: 156, Neg. LLF: 96.00702885726152
Iteration: 13, Func. Count: 168, Neg. LLF: 96.00633427503077
Iteration: 14, Func. Count: 180, Neg. LLF: 96.00596408534818
Iteration: 15, Func. Count: 192, Neg. LLF: 96.00593567753646
Iteration: 16, Func. Count: 204, Neg. LLF: 96.00592494176144
Iteration: 17, Func. Count: 216, Neg. LLF: 96.00591696365066
Iteration: 18, Func. Count: 228, Neg. LLF: 96.00591579320705
Iteration: 19, Func. Count: 239, Neg. LLF: 96.00591579321475
Optimization terminated successfully (Exit mode 0)
Current function value: 96.00591579320705
Iterations: 19
Function evaluations: 239
Gradient evaluations: 19
Iteration: 1, Func. Count: 14, Neg. LLF: 110.22521232018804
Iteration: 2, Func. Count: 28, Neg. LLF: 277.84763308991825
Iteration: 3, Func. Count: 42, Neg. LLF: 99.98690621288623
Iteration: 4, Func. Count: 56, Neg. LLF: 127.4474885892345
Iteration: 5, Func. Count: 70, Neg. LLF: 97.60636129016157
Iteration: 6, Func. Count: 84, Neg. LLF: 96.9477222540684
Iteration: 7, Func. Count: 98, Neg. LLF: 96.20226975049972
Iteration: 8, Func. Count: 111, Neg. LLF: 97.04373599056296
Iteration: 9, Func. Count: 125, Neg. LLF: 100.37280448407104
Iteration: 10, Func. Count: 140, Neg. LLF: 96.07294791868541
Iteration: 11, Func. Count: 154, Neg. LLF: 96.30140662737975
Iteration: 12, Func. Count: 168, Neg. LLF: 96.01006255387416
Iteration: 13, Func. Count: 181, Neg. LLF: 96.00624475530573
Iteration: 14, Func. Count: 194, Neg. LLF: 96.00602917292252
Iteration: 15, Func. Count: 207, Neg. LLF: 96.00593802566208
Iteration: 16, Func. Count: 220, Neg. LLF: 96.00591888461776
Iteration: 17, Func. Count: 233, Neg. LLF: 96.0059161973183
Iteration: 18, Func. Count: 245, Neg. LLF: 96.00591625491175
Optimization terminated successfully (Exit mode 0)
Current function value: 96.0059161973183
Iterations: 18
Function evaluations: 245
Gradient evaluations: 18
Iteration: 1, Func. Count: 7, Neg. LLF: 109.95395222671742
Iteration: 2, Func. Count: 15, Neg. LLF: 89060.99307587929
Iteration: 3, Func. Count: 22, Neg. LLF: 449.6088204801157
Iteration: 4, Func. Count: 29, Neg. LLF: 176.68894386529624
Iteration: 5, Func. Count: 36, Neg. LLF: 20963.00356041647
Iteration: 6, Func. Count: 43, Neg. LLF: 98.69079902410795
Iteration: 7, Func. Count: 50, Neg. LLF: 98.10726371513448
Iteration: 8, Func. Count: 56, Neg. LLF: 98.05594385657692
Iteration: 9, Func. Count: 62, Neg. LLF: 98.03866418407782
Iteration: 10, Func. Count: 68, Neg. LLF: 98.01746569351937
Iteration: 11, Func. Count: 74, Neg. LLF: 98.0138300997767
Iteration: 12, Func. Count: 80, Neg. LLF: 98.01359263069328
Iteration: 13, Func. Count: 86, Neg. LLF: 98.0135900529296
Iteration: 14, Func. Count: 91, Neg. LLF: 98.01359005289575
Optimization terminated successfully (Exit mode 0)
Current function value: 98.0135900529296
Iterations: 14
Function evaluations: 91
Gradient evaluations: 14
Iteration: 1, Func. Count: 8, Neg. LLF: 100.19562201505016
Iteration: 2, Func. Count: 15, Neg. LLF: 127.28816672005723
Iteration: 3, Func. Count: 23, Neg. LLF: 110.8125020804445
Iteration: 4, Func. Count: 33, Neg. LLF: 127.65087630387654
Iteration: 5, Func. Count: 41, Neg. LLF: 106.60567482624405
Iteration: 6, Func. Count: 49, Neg. LLF: 98.17835104605092
Iteration: 7, Func. Count: 57, Neg. LLF: 98.01928563135064
Iteration: 8, Func. Count: 64, Neg. LLF: 98.01644313532329
Iteration: 9, Func. Count: 71, Neg. LLF: 98.01362887252098
Iteration: 10, Func. Count: 78, Neg. LLF: 98.01359604066113
Iteration: 11, Func. Count: 85, Neg. LLF: 98.01358976458985
Iteration: 12, Func. Count: 91, Neg. LLF: 98.01358977003378
Optimization terminated successfully (Exit mode 0)
Current function value: 98.01358976458985
Iterations: 12
Function evaluations: 91
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 99.84361586918878
Iteration: 2, Func. Count: 17, Neg. LLF: 126.74837054523566
Iteration: 3, Func. Count: 26, Neg. LLF: 109.43865720692062
Iteration: 4, Func. Count: 37, Neg. LLF: 26614.830102807875
Iteration: 5, Func. Count: 46, Neg. LLF: 108.87641196571003
Iteration: 6, Func. Count: 55, Neg. LLF: 98.2316255660814
Iteration: 7, Func. Count: 64, Neg. LLF: 98.03084479774711
Iteration: 8, Func. Count: 72, Neg. LLF: 98.02462341472075
Iteration: 9, Func. Count: 80, Neg. LLF: 98.01926519967792
Iteration: 10, Func. Count: 88, Neg. LLF: 98.01529916728627
Iteration: 11, Func. Count: 96, Neg. LLF: 98.01361044579396
Iteration: 12, Func. Count: 104, Neg. LLF: 98.0135902218227
Iteration: 13, Func. Count: 112, Neg. LLF: 98.01358966255779
Optimization terminated successfully (Exit mode 0)
Current function value: 98.01358966255779
Iterations: 13
Function evaluations: 112
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 99.46322700434365
Iteration: 2, Func. Count: 19, Neg. LLF: 135.44909900180699
Iteration: 3, Func. Count: 29, Neg. LLF: 107.53692781013707
Iteration: 4, Func. Count: 41, Neg. LLF: 381886.13517964305
Iteration: 5, Func. Count: 51, Neg. LLF: 716141.9350589958
Iteration: 6, Func. Count: 61, Neg. LLF: 98.17391371830382
Iteration: 7, Func. Count: 71, Neg. LLF: 98.04660535055578
Iteration: 8, Func. Count: 80, Neg. LLF: 98.02424918612192
Iteration: 9, Func. Count: 89, Neg. LLF: 98.01926199232095
Iteration: 10, Func. Count: 98, Neg. LLF: 98.01688848127732
Iteration: 11, Func. Count: 107, Neg. LLF: 98.01402029774943
Iteration: 12, Func. Count: 116, Neg. LLF: 98.0135931621395
Iteration: 13, Func. Count: 125, Neg. LLF: 98.01358967588305
Iteration: 14, Func. Count: 133, Neg. LLF: 98.01358968491667
Optimization terminated successfully (Exit mode 0)
Current function value: 98.01358967588305
Iterations: 14
Function evaluations: 133
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 99.60217073837813
Iteration: 2, Func. Count: 21, Neg. LLF: 132.79902878100296
Iteration: 3, Func. Count: 32, Neg. LLF: 112.12236375694371
Iteration: 4, Func. Count: 44, Neg. LLF: 329118.1814464209
Iteration: 5, Func. Count: 55, Neg. LLF: 287405.50516523427
Iteration: 6, Func. Count: 66, Neg. LLF: 98.85019634677728
Iteration: 7, Func. Count: 77, Neg. LLF: 98.07338857649903
Iteration: 8, Func. Count: 87, Neg. LLF: 98.05060132881313
Iteration: 9, Func. Count: 97, Neg. LLF: 98.13751664956645
Iteration: 10, Func. Count: 108, Neg. LLF: 98.00123374295947
Iteration: 11, Func. Count: 118, Neg. LLF: 97.99722535961584
Iteration: 12, Func. Count: 128, Neg. LLF: 97.99672367467781
Iteration: 13, Func. Count: 138, Neg. LLF: 97.99670889568985
Iteration: 14, Func. Count: 147, Neg. LLF: 97.99670889573957
Optimization terminated successfully (Exit mode 0)
Current function value: 97.99670889568985
Iterations: 14
Function evaluations: 147
Gradient evaluations: 14
Iteration: 1, Func. Count: 8, Neg. LLF: 109.96030172170987
Iteration: 2, Func. Count: 17, Neg. LLF: 77389.73349461767
Iteration: 3, Func. Count: 25, Neg. LLF: 461.8258286169821
Iteration: 4, Func. Count: 33, Neg. LLF: 180.66791994261064
Iteration: 5, Func. Count: 41, Neg. LLF: 4006.3923509447854
Iteration: 6, Func. Count: 49, Neg. LLF: 98.72466370771122
Iteration: 7, Func. Count: 57, Neg. LLF: 98.12366030132748
Iteration: 8, Func. Count: 64, Neg. LLF: 98.37044729890131
Iteration: 9, Func. Count: 73, Neg. LLF: 99.8374802743073
Iteration: 10, Func. Count: 82, Neg. LLF: 98.03871585270882
Iteration: 11, Func. Count: 89, Neg. LLF: 98.0190022517605
Iteration: 12, Func. Count: 96, Neg. LLF: 98.01045595604528
Iteration: 13, Func. Count: 103, Neg. LLF: 98.00889881151656
Iteration: 14, Func. Count: 110, Neg. LLF: 98.00885114415435
Iteration: 15, Func. Count: 117, Neg. LLF: 98.00885051091466
Optimization terminated successfully (Exit mode 0)
Current function value: 98.00885051091466
Iterations: 15
Function evaluations: 117
Gradient evaluations: 15
Iteration: 1, Func. Count: 9, Neg. LLF: 113.66683049837583
Iteration: 2, Func. Count: 18, Neg. LLF: 120.91121269486922
Iteration: 3, Func. Count: 27, Neg. LLF: 125.72630968985077
Iteration: 4, Func. Count: 36, Neg. LLF: 98.4906697180805
Iteration: 5, Func. Count: 44, Neg. LLF: 98.56993845548322
Iteration: 6, Func. Count: 53, Neg. LLF: 98.03512204612898
Iteration: 7, Func. Count: 61, Neg. LLF: 98.28519524763036
Iteration: 8, Func. Count: 71, Neg. LLF: 98.01652740820418
Iteration: 9, Func. Count: 79, Neg. LLF: 98.00963950377631
Iteration: 10, Func. Count: 87, Neg. LLF: 98.00902674918049
Iteration: 11, Func. Count: 95, Neg. LLF: 98.00891898314478
Iteration: 12, Func. Count: 103, Neg. LLF: 98.00887648757273
Iteration: 13, Func. Count: 111, Neg. LLF: 98.00885434109377
Iteration: 14, Func. Count: 119, Neg. LLF: 98.00885073500295
Iteration: 15, Func. Count: 126, Neg. LLF: 98.00885074032404
Optimization terminated successfully (Exit mode 0)
Current function value: 98.00885073500295
Iterations: 15
Function evaluations: 126
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 100.19580360825243
Iteration: 2, Func. Count: 19, Neg. LLF: 122.48973587573315
Iteration: 3, Func. Count: 29, Neg. LLF: 111.59419249363592
Iteration: 4, Func. Count: 41, Neg. LLF: 12648924.731614476
Iteration: 5, Func. Count: 51, Neg. LLF: 112.62497036575458
Iteration: 6, Func. Count: 61, Neg. LLF: 98.21259603429544
Iteration: 7, Func. Count: 71, Neg. LLF: 98.0371992783333
Iteration: 8, Func. Count: 81, Neg. LLF: 98.02674023779667
Iteration: 9, Func. Count: 91, Neg. LLF: 98.31973292048757
Iteration: 10, Func. Count: 101, Neg. LLF: 98.0141466746136
Iteration: 11, Func. Count: 110, Neg. LLF: 98.01274223835607
Iteration: 12, Func. Count: 119, Neg. LLF: 98.0090575000618
Iteration: 13, Func. Count: 128, Neg. LLF: 98.00885259602052
Iteration: 14, Func. Count: 137, Neg. LLF: 98.00885044855362
Iteration: 15, Func. Count: 145, Neg. LLF: 98.00885052689594
Optimization terminated successfully (Exit mode 0)
Current function value: 98.00885044855362
Iterations: 15
Function evaluations: 145
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 99.75033941493649
Iteration: 2, Func. Count: 21, Neg. LLF: 130.03008720967486
Iteration: 3, Func. Count: 32, Neg. LLF: 117.13436353455216
Iteration: 4, Func. Count: 44, Neg. LLF: 12699787.113917392
Iteration: 5, Func. Count: 55, Neg. LLF: 151.93510445884613
Iteration: 6, Func. Count: 66, Neg. LLF: 101.72687427585652
Iteration: 7, Func. Count: 77, Neg. LLF: 98.06960736110285
Iteration: 8, Func. Count: 87, Neg. LLF: 98.90299934298739
Iteration: 9, Func. Count: 99, Neg. LLF: 98.0854331195593
Iteration: 10, Func. Count: 110, Neg. LLF: 98.0205335348078
Iteration: 11, Func. Count: 120, Neg. LLF: 98.01982156032422
Iteration: 12, Func. Count: 131, Neg. LLF: 98.0088745472175
Iteration: 13, Func. Count: 141, Neg. LLF: 98.00885521156933
Iteration: 14, Func. Count: 151, Neg. LLF: 98.00885059019951
Iteration: 15, Func. Count: 160, Neg. LLF: 98.00885059973133
Optimization terminated successfully (Exit mode 0)
Current function value: 98.00885059019951
Iterations: 15
Function evaluations: 160
Gradient evaluations: 15
Iteration: 1, Func. Count: 12, Neg. LLF: 99.88270261054119
Iteration: 2, Func. Count: 23, Neg. LLF: 128.1521584443923
Iteration: 3, Func. Count: 35, Neg. LLF: 139.82170895973397
Iteration: 4, Func. Count: 47, Neg. LLF: 4861.7692986634
Iteration: 5, Func. Count: 59, Neg. LLF: 270.6684711173302
Iteration: 6, Func. Count: 71, Neg. LLF: 101.96986868204556
Iteration: 7, Func. Count: 83, Neg. LLF: 98.6586436303513
Iteration: 8, Func. Count: 95, Neg. LLF: 98.53413123637168
Iteration: 9, Func. Count: 107, Neg. LLF: 98.14967523725181
Iteration: 10, Func. Count: 119, Neg. LLF: 98.00261993932381
Iteration: 11, Func. Count: 130, Neg. LLF: 98.00556050485969
Iteration: 12, Func. Count: 142, Neg. LLF: 97.99791326778252
Iteration: 13, Func. Count: 154, Neg. LLF: 97.99102581683155
Iteration: 14, Func. Count: 165, Neg. LLF: 97.99099338823022
Iteration: 15, Func. Count: 175, Neg. LLF: 97.99099338819705
Optimization terminated successfully (Exit mode 0)
Current function value: 97.99099338823022
Iterations: 15
Function evaluations: 175
Gradient evaluations: 15
Iteration: 1, Func. Count: 9, Neg. LLF: 101.18523499029155
Iteration: 2, Func. Count: 18, Neg. LLF: 3774.570260689261
Iteration: 3, Func. Count: 27, Neg. LLF: 28423.986074223354
Iteration: 4, Func. Count: 36, Neg. LLF: 527.277630142591
Iteration: 5, Func. Count: 45, Neg. LLF: 116.82139603953831
Iteration: 6, Func. Count: 54, Neg. LLF: 117.02716529931696
Iteration: 7, Func. Count: 63, Neg. LLF: 96.56897474220708
Iteration: 8, Func. Count: 71, Neg. LLF: 103.53078480186274
Iteration: 9, Func. Count: 81, Neg. LLF: 98.65093956975828
Iteration: 10, Func. Count: 91, Neg. LLF: 96.50905542969807
Iteration: 11, Func. Count: 100, Neg. LLF: 96.49096604755806
Iteration: 12, Func. Count: 108, Neg. LLF: 96.48762020208365
Iteration: 13, Func. Count: 116, Neg. LLF: 96.48644963139944
Iteration: 14, Func. Count: 124, Neg. LLF: 96.48602032592231
Iteration: 15, Func. Count: 132, Neg. LLF: 96.4858985652181
Iteration: 16, Func. Count: 140, Neg. LLF: 96.48581753120871
Iteration: 17, Func. Count: 148, Neg. LLF: 96.485802559739
Iteration: 18, Func. Count: 156, Neg. LLF: 96.48580075601333
Iteration: 19, Func. Count: 163, Neg. LLF: 96.48580075601299
Optimization terminated successfully (Exit mode 0)
Current function value: 96.48580075601333
Iterations: 19
Function evaluations: 163
Gradient evaluations: 19
Iteration: 1, Func. Count: 10, Neg. LLF: 117.4571239797257
Iteration: 2, Func. Count: 20, Neg. LLF: 151.8499935426069
Iteration: 3, Func. Count: 31, Neg. LLF: 105.27111916325588
Iteration: 4, Func. Count: 41, Neg. LLF: 98.41511231570801
Iteration: 5, Func. Count: 51, Neg. LLF: 97.72221038087886
Iteration: 6, Func. Count: 61, Neg. LLF: 97.11707917809973
Iteration: 7, Func. Count: 70, Neg. LLF: 97.72083000977386
Iteration: 8, Func. Count: 81, Neg. LLF: 103.11618240791302
Iteration: 9, Func. Count: 91, Neg. LLF: 96.53690478499475
Iteration: 10, Func. Count: 100, Neg. LLF: 96.50924011004939
Iteration: 11, Func. Count: 109, Neg. LLF: 96.49793516625796
Iteration: 12, Func. Count: 118, Neg. LLF: 96.49207834367571
Iteration: 13, Func. Count: 127, Neg. LLF: 96.48810252656122
Iteration: 14, Func. Count: 136, Neg. LLF: 96.48602742326732
Iteration: 15, Func. Count: 145, Neg. LLF: 96.48580580120725
Iteration: 16, Func. Count: 154, Neg. LLF: 96.48580104327961
Iteration: 17, Func. Count: 162, Neg. LLF: 96.48580113289214
Optimization terminated successfully (Exit mode 0)
Current function value: 96.48580104327961
Iterations: 17
Function evaluations: 162
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 113.92823277462401
Iteration: 2, Func. Count: 22, Neg. LLF: 200.99839447301989
Iteration: 3, Func. Count: 34, Neg. LLF: 181.8418258698859
Iteration: 4, Func. Count: 45, Neg. LLF: 1047.438028632183
Iteration: 5, Func. Count: 57, Neg. LLF: 111.1409745508854
Iteration: 6, Func. Count: 69, Neg. LLF: 96.5577226455212
Iteration: 7, Func. Count: 79, Neg. LLF: 97.47226310081325
Iteration: 8, Func. Count: 90, Neg. LLF: 96.50684456183042
Iteration: 9, Func. Count: 100, Neg. LLF: 99.24035382690155
Iteration: 10, Func. Count: 112, Neg. LLF: 96.48807614402676
Iteration: 11, Func. Count: 122, Neg. LLF: 96.48352922580622
Iteration: 12, Func. Count: 132, Neg. LLF: 96.48237970923869
Iteration: 13, Func. Count: 142, Neg. LLF: 96.4823644741111
Iteration: 14, Func. Count: 152, Neg. LLF: 96.48236256266915
Iteration: 15, Func. Count: 161, Neg. LLF: 96.48236256267828
Optimization terminated successfully (Exit mode 0)
Current function value: 96.48236256266915
Iterations: 15
Function evaluations: 161
Gradient evaluations: 15
Iteration: 1, Func. Count: 12, Neg. LLF: 110.67738728469303
Iteration: 2, Func. Count: 24, Neg. LLF: 206.89390101744152
Iteration: 3, Func. Count: 37, Neg. LLF: 194.02168534591482
Iteration: 4, Func. Count: 49, Neg. LLF: 4218.511625840804
Iteration: 5, Func. Count: 62, Neg. LLF: 101.46367417573515
Iteration: 6, Func. Count: 74, Neg. LLF: 97.0598017966142
Iteration: 7, Func. Count: 86, Neg. LLF: 96.40520290780047
Iteration: 8, Func. Count: 97, Neg. LLF: 96.71954912611407
Iteration: 9, Func. Count: 111, Neg. LLF: 165.36415484654395
Iteration: 10, Func. Count: 123, Neg. LLF: 96.2164917843872
Iteration: 11, Func. Count: 135, Neg. LLF: 96.02173653495204
Iteration: 12, Func. Count: 146, Neg. LLF: 96.01487724990041
Iteration: 13, Func. Count: 157, Neg. LLF: 96.01286021092423
Iteration: 14, Func. Count: 168, Neg. LLF: 96.00707047840896
Iteration: 15, Func. Count: 179, Neg. LLF: 96.00546839086061
Iteration: 16, Func. Count: 190, Neg. LLF: 96.00525230172309
Iteration: 17, Func. Count: 201, Neg. LLF: 96.00524101906646
Iteration: 18, Func. Count: 211, Neg. LLF: 96.00524101896488
Optimization terminated successfully (Exit mode 0)
Current function value: 96.00524101906646
Iterations: 18
Function evaluations: 211
Gradient evaluations: 18
Iteration: 1, Func. Count: 13, Neg. LLF: 109.68786205086731
Iteration: 2, Func. Count: 26, Neg. LLF: 199.3411152754297
Iteration: 3, Func. Count: 40, Neg. LLF: 109.3088247548988
Iteration: 4, Func. Count: 53, Neg. LLF: 10915727.060810043
Iteration: 5, Func. Count: 66, Neg. LLF: 106.04880671285434
Iteration: 6, Func. Count: 80, Neg. LLF: 100.36876487617036
Iteration: 7, Func. Count: 93, Neg. LLF: 96.33095073980017
Iteration: 8, Func. Count: 105, Neg. LLF: 96.30511559689205
Iteration: 9, Func. Count: 118, Neg. LLF: 98.42416349789552
Iteration: 10, Func. Count: 133, Neg. LLF: 96.36377543727211
Iteration: 11, Func. Count: 146, Neg. LLF: 96.83682882793697
Iteration: 12, Func. Count: 159, Neg. LLF: 96.01904486196926
Iteration: 13, Func. Count: 171, Neg. LLF: 96.0094611752835
Iteration: 14, Func. Count: 183, Neg. LLF: 96.0072265306446
Iteration: 15, Func. Count: 195, Neg. LLF: 96.00634064999616
Iteration: 16, Func. Count: 207, Neg. LLF: 96.00590305113496
Iteration: 17, Func. Count: 219, Neg. LLF: 96.00544032733193
Iteration: 18, Func. Count: 231, Neg. LLF: 96.00526372900676
Iteration: 19, Func. Count: 243, Neg. LLF: 96.0052419073478
Iteration: 20, Func. Count: 255, Neg. LLF: 96.00524061656519
Iteration: 21, Func. Count: 266, Neg. LLF: 96.00524067413643
Optimization terminated successfully (Exit mode 0)
Current function value: 96.00524061656519
Iterations: 21
Function evaluations: 266
Gradient evaluations: 21
Iteration: 1, Func. Count: 10, Neg. LLF: 102.6456360291078
Iteration: 2, Func. Count: 20, Neg. LLF: 179.28227260173998
Iteration: 3, Func. Count: 30, Neg. LLF: 7147343.167415589
Iteration: 4, Func. Count: 40, Neg. LLF: 698.016983147534
Iteration: 5, Func. Count: 50, Neg. LLF: 6851683.430387525
Iteration: 6, Func. Count: 60, Neg. LLF: 14537.361957089202
Iteration: 7, Func. Count: 70, Neg. LLF: 96.86486074952407
Iteration: 8, Func. Count: 80, Neg. LLF: 96.38479470183525
Iteration: 9, Func. Count: 90, Neg. LLF: 96.02000862047579
Iteration: 10, Func. Count: 99, Neg. LLF: 96.12833303652927
Iteration: 11, Func. Count: 109, Neg. LLF: 95.99626319504671
Iteration: 12, Func. Count: 118, Neg. LLF: 95.9934108732019
Iteration: 13, Func. Count: 127, Neg. LLF: 95.99009372126936
Iteration: 14, Func. Count: 136, Neg. LLF: 95.98461675237941
Iteration: 15, Func. Count: 145, Neg. LLF: 95.98451379579289
Iteration: 16, Func. Count: 154, Neg. LLF: 95.9845066438613
Iteration: 17, Func. Count: 162, Neg. LLF: 95.98450654180363
Optimization terminated successfully (Exit mode 0)
Current function value: 95.9845066438613
Iterations: 17
Function evaluations: 162
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 100.86047851681407
Iteration: 2, Func. Count: 22, Neg. LLF: 98.72976462247658
Iteration: 3, Func. Count: 34, Neg. LLF: 98.08758272695691
Iteration: 4, Func. Count: 47, Neg. LLF: 102.06712833713763
Iteration: 5, Func. Count: 58, Neg. LLF: 133.60216995002133
Iteration: 6, Func. Count: 69, Neg. LLF: 108.43336657896302
Iteration: 7, Func. Count: 80, Neg. LLF: 96.16481196946278
Iteration: 8, Func. Count: 90, Neg. LLF: 96.67578688623932
Iteration: 9, Func. Count: 101, Neg. LLF: 96.01014487570491
Iteration: 10, Func. Count: 111, Neg. LLF: 95.98888451197955
Iteration: 11, Func. Count: 121, Neg. LLF: 95.98531919846165
Iteration: 12, Func. Count: 131, Neg. LLF: 95.98475529340327
Iteration: 13, Func. Count: 141, Neg. LLF: 95.98457271132193
Iteration: 14, Func. Count: 151, Neg. LLF: 95.98453972062819
Iteration: 15, Func. Count: 161, Neg. LLF: 95.98450864736836
Iteration: 16, Func. Count: 171, Neg. LLF: 95.98450669050158
Iteration: 17, Func. Count: 180, Neg. LLF: 95.98450681000713
Optimization terminated successfully (Exit mode 0)
Current function value: 95.98450669050158
Iterations: 17
Function evaluations: 180
Gradient evaluations: 17
Iteration: 1, Func. Count: 12, Neg. LLF: 101.91171098456223
Iteration: 2, Func. Count: 24, Neg. LLF: 117.6969777599777
Iteration: 3, Func. Count: 36, Neg. LLF: 116.37676801002226
Iteration: 4, Func. Count: 48, Neg. LLF: 298.5178795560022
Iteration: 5, Func. Count: 60, Neg. LLF: 98.91929759065276
Iteration: 6, Func. Count: 72, Neg. LLF: 97.25957385460963
Iteration: 7, Func. Count: 84, Neg. LLF: 101.97460633232578
Iteration: 8, Func. Count: 97, Neg. LLF: 95.99559888874099
Iteration: 9, Func. Count: 108, Neg. LLF: 95.98713694514215
Iteration: 10, Func. Count: 119, Neg. LLF: 95.98527919469586
Iteration: 11, Func. Count: 130, Neg. LLF: 95.98469024553118
Iteration: 12, Func. Count: 141, Neg. LLF: 95.98456541301314
Iteration: 13, Func. Count: 152, Neg. LLF: 95.98452739912845
Iteration: 14, Func. Count: 163, Neg. LLF: 95.98450945255105
Iteration: 15, Func. Count: 174, Neg. LLF: 95.98450678843284
Iteration: 16, Func. Count: 184, Neg. LLF: 95.98450680726077
Optimization terminated successfully (Exit mode 0)
Current function value: 95.98450678843284
Iterations: 16
Function evaluations: 184
Gradient evaluations: 16
Iteration: 1, Func. Count: 13, Neg. LLF: 100.79604413061436
Iteration: 2, Func. Count: 26, Neg. LLF: 108.07093468013016
Iteration: 3, Func. Count: 39, Neg. LLF: 162.10992355196035
Iteration: 4, Func. Count: 52, Neg. LLF: 105.94324699777495
Iteration: 5, Func. Count: 65, Neg. LLF: 142.7612932405361
Iteration: 6, Func. Count: 78, Neg. LLF: 97.69134456794015
Iteration: 7, Func. Count: 91, Neg. LLF: 98.54990029672058
Iteration: 8, Func. Count: 104, Neg. LLF: 96.33290442493046
Iteration: 9, Func. Count: 117, Neg. LLF: 95.89089002867972
Iteration: 10, Func. Count: 129, Neg. LLF: 96.90023079736736
Iteration: 11, Func. Count: 142, Neg. LLF: 96.3920157727824
Iteration: 12, Func. Count: 155, Neg. LLF: 95.76733731397312
Iteration: 13, Func. Count: 167, Neg. LLF: 95.76137703072308
Iteration: 14, Func. Count: 179, Neg. LLF: 95.76054062039397
Iteration: 15, Func. Count: 191, Neg. LLF: 95.76029981499899
Iteration: 16, Func. Count: 203, Neg. LLF: 95.7601500093276
Iteration: 17, Func. Count: 215, Neg. LLF: 95.76014417253506
Iteration: 18, Func. Count: 226, Neg. LLF: 95.76014417252975
Optimization terminated successfully (Exit mode 0)
Current function value: 95.76014417253506
Iterations: 18
Function evaluations: 226
Gradient evaluations: 18
Iteration: 1, Func. Count: 14, Neg. LLF: 100.4015885112253
Iteration: 2, Func. Count: 28, Neg. LLF: 104.48226617855076
Iteration: 3, Func. Count: 43, Neg. LLF: 161.903737208385
Iteration: 4, Func. Count: 57, Neg. LLF: 6179268.400713184
Iteration: 5, Func. Count: 71, Neg. LLF: 101.75214092827873
Iteration: 6, Func. Count: 85, Neg. LLF: 1113.4863867695205
Iteration: 7, Func. Count: 99, Neg. LLF: 96.10015305594925
Iteration: 8, Func. Count: 112, Neg. LLF: 103.50299614273484
Iteration: 9, Func. Count: 128, Neg. LLF: 97.26216376345397
Iteration: 10, Func. Count: 142, Neg. LLF: 95.83678299126913
Iteration: 11, Func. Count: 155, Neg. LLF: 95.78541238995405
Iteration: 12, Func. Count: 168, Neg. LLF: 95.77067976594473
Iteration: 13, Func. Count: 181, Neg. LLF: 95.76143361648047
Iteration: 14, Func. Count: 194, Neg. LLF: 95.7604024232557
Iteration: 15, Func. Count: 207, Neg. LLF: 95.76019396643859
Iteration: 16, Func. Count: 220, Neg. LLF: 95.76016990835012
Iteration: 17, Func. Count: 233, Neg. LLF: 95.76014494372652
Iteration: 18, Func. Count: 246, Neg. LLF: 95.76014374930263
Iteration: 19, Func. Count: 258, Neg. LLF: 95.76014379878673
Optimization terminated successfully (Exit mode 0)
Current function value: 95.76014374930263
Iterations: 19
Function evaluations: 258
Gradient evaluations: 19
Iteration: 1, Func. Count: 11, Neg. LLF: 103.62881338117445
Iteration: 2, Func. Count: 23, Neg. LLF: 2334.060690208529
Iteration: 3, Func. Count: 34, Neg. LLF: 7242218.049429371
Iteration: 4, Func. Count: 45, Neg. LLF: 1280.7248936916612
Iteration: 5, Func. Count: 56, Neg. LLF: 104.83628293184675
Iteration: 6, Func. Count: 67, Neg. LLF: 98.8404405346804
Iteration: 7, Func. Count: 78, Neg. LLF: 97.2595119271705
Iteration: 8, Func. Count: 89, Neg. LLF: 96.66262705681557
Iteration: 9, Func. Count: 100, Neg. LLF: 96.11145973943964
Iteration: 10, Func. Count: 110, Neg. LLF: 96.06080825579085
Iteration: 11, Func. Count: 120, Neg. LLF: 96.73742096635036
Iteration: 12, Func. Count: 131, Neg. LLF: 96.01595506303461
Iteration: 13, Func. Count: 141, Neg. LLF: 95.98769463737885
Iteration: 14, Func. Count: 151, Neg. LLF: 95.97615592837042
Iteration: 15, Func. Count: 161, Neg. LLF: 95.97095243939589
Iteration: 16, Func. Count: 171, Neg. LLF: 95.96147423736039
Iteration: 17, Func. Count: 181, Neg. LLF: 95.96096357566516
Iteration: 18, Func. Count: 191, Neg. LLF: 95.96092134571145
Iteration: 19, Func. Count: 201, Neg. LLF: 95.96092019396754
Iteration: 20, Func. Count: 210, Neg. LLF: 95.96092019396026
Optimization terminated successfully (Exit mode 0)
Current function value: 95.96092019396754
Iterations: 20
Function evaluations: 210
Gradient evaluations: 20
Iteration: 1, Func. Count: 12, Neg. LLF: 101.95969831144075
Iteration: 2, Func. Count: 24, Neg. LLF: 109.29150665332689
Iteration: 3, Func. Count: 37, Neg. LLF: 104.04817225142492
Iteration: 4, Func. Count: 50, Neg. LLF: 4219280.080043098
Iteration: 5, Func. Count: 62, Neg. LLF: 108.01321945174367
Iteration: 6, Func. Count: 74, Neg. LLF: 96.46245842832582
Iteration: 7, Func. Count: 85, Neg. LLF: 96.91198539098886
Iteration: 8, Func. Count: 97, Neg. LLF: 98.78235825845961
Iteration: 9, Func. Count: 109, Neg. LLF: 96.01280973469659
Iteration: 10, Func. Count: 120, Neg. LLF: 127.74580323494939
Iteration: 11, Func. Count: 132, Neg. LLF: 95.96526823767476
Iteration: 12, Func. Count: 143, Neg. LLF: 95.96318656462643
Iteration: 13, Func. Count: 154, Neg. LLF: 95.96176279077594
Iteration: 14, Func. Count: 165, Neg. LLF: 95.96143504261214
Iteration: 15, Func. Count: 176, Neg. LLF: 95.961036911013
Iteration: 16, Func. Count: 187, Neg. LLF: 95.96099089185978
Iteration: 17, Func. Count: 198, Neg. LLF: 95.96094577501735
Iteration: 18, Func. Count: 209, Neg. LLF: 95.96092771089872
Iteration: 19, Func. Count: 220, Neg. LLF: 95.96092086169256
Iteration: 20, Func. Count: 231, Neg. LLF: 95.96092016217807
Optimization terminated successfully (Exit mode 0)
Current function value: 95.96092016217807
Iterations: 20
Function evaluations: 231
Gradient evaluations: 20
Iteration: 1, Func. Count: 13, Neg. LLF: 100.32743442402666
Iteration: 2, Func. Count: 26, Neg. LLF: 105.1207155244983
Iteration: 3, Func. Count: 40, Neg. LLF: 229.50640041158914
Iteration: 4, Func. Count: 53, Neg. LLF: 6446935.289405777
Iteration: 5, Func. Count: 66, Neg. LLF: 106.44001667076364
Iteration: 6, Func. Count: 79, Neg. LLF: 96.32303294624576
Iteration: 7, Func. Count: 91, Neg. LLF: 96.62965445502462
Iteration: 8, Func. Count: 104, Neg. LLF: 96.09376471303509
Iteration: 9, Func. Count: 116, Neg. LLF: 96.63313889742814
Iteration: 10, Func. Count: 129, Neg. LLF: 95.96668989595334
Iteration: 11, Func. Count: 141, Neg. LLF: 96.01859597579248
Iteration: 12, Func. Count: 155, Neg. LLF: 95.96222245704948
Iteration: 13, Func. Count: 168, Neg. LLF: 95.96094897940533
Iteration: 14, Func. Count: 180, Neg. LLF: 95.96093311779312
Iteration: 15, Func. Count: 192, Neg. LLF: 95.96092132751653
Iteration: 16, Func. Count: 204, Neg. LLF: 95.96092020896145
Iteration: 17, Func. Count: 215, Neg. LLF: 95.96092024657374
Optimization terminated successfully (Exit mode 0)
Current function value: 95.96092020896145
Iterations: 17
Function evaluations: 215
Gradient evaluations: 17
Iteration: 1, Func. Count: 14, Neg. LLF: 99.57501064167339
Iteration: 2, Func. Count: 28, Neg. LLF: 121.06466470589693
Iteration: 3, Func. Count: 42, Neg. LLF: 203.63025322519556
Iteration: 4, Func. Count: 56, Neg. LLF: 6678143.350231344
Iteration: 5, Func. Count: 70, Neg. LLF: 125.751890038418
Iteration: 6, Func. Count: 84, Neg. LLF: 102.1120625954972
Iteration: 7, Func. Count: 98, Neg. LLF: 95.94445958760605
Iteration: 8, Func. Count: 111, Neg. LLF: 95.913582631808
Iteration: 9, Func. Count: 124, Neg. LLF: 108.33565081379297
Iteration: 10, Func. Count: 138, Neg. LLF: 96.22839666758235
Iteration: 11, Func. Count: 152, Neg. LLF: 96.15176250904705
Iteration: 12, Func. Count: 166, Neg. LLF: 95.77976820454542
Iteration: 13, Func. Count: 179, Neg. LLF: 95.76633808526809
Iteration: 14, Func. Count: 192, Neg. LLF: 95.76166585607218
Iteration: 15, Func. Count: 205, Neg. LLF: 95.76046095557706
Iteration: 16, Func. Count: 218, Neg. LLF: 95.76026860418811
Iteration: 17, Func. Count: 231, Neg. LLF: 95.76018488839368
Iteration: 18, Func. Count: 244, Neg. LLF: 95.7601439826941
Iteration: 19, Func. Count: 256, Neg. LLF: 95.76014398265548
Optimization terminated successfully (Exit mode 0)
Current function value: 95.7601439826941
Iterations: 19
Function evaluations: 256
Gradient evaluations: 19
Iteration: 1, Func. Count: 15, Neg. LLF: 99.41134250799483
Iteration: 2, Func. Count: 30, Neg. LLF: 125.8732661384838
Iteration: 3, Func. Count: 45, Neg. LLF: 144.16703673214317
Iteration: 4, Func. Count: 60, Neg. LLF: 6685258.887083038
Iteration: 5, Func. Count: 75, Neg. LLF: 108.51458298254516
Iteration: 6, Func. Count: 90, Neg. LLF: 102.79362276433889
Iteration: 7, Func. Count: 105, Neg. LLF: 96.51367322516427
Iteration: 8, Func. Count: 120, Neg. LLF: 95.99242581631137
Iteration: 9, Func. Count: 134, Neg. LLF: 96.67965512404541
Iteration: 10, Func. Count: 149, Neg. LLF: 97.94560669462443
Iteration: 11, Func. Count: 164, Neg. LLF: 96.11846774906637
Iteration: 12, Func. Count: 179, Neg. LLF: 95.76739378674064
Iteration: 13, Func. Count: 193, Neg. LLF: 95.76508466025494
Iteration: 14, Func. Count: 207, Neg. LLF: 95.7617566237594
Iteration: 15, Func. Count: 221, Neg. LLF: 95.76147823955193
Iteration: 16, Func. Count: 236, Neg. LLF: 95.76027669313746
Iteration: 17, Func. Count: 250, Neg. LLF: 95.76016986119994
Iteration: 18, Func. Count: 264, Neg. LLF: 95.76015804403052
Iteration: 19, Func. Count: 278, Neg. LLF: 95.76014413977343
Iteration: 20, Func. Count: 292, Neg. LLF: 95.76014358334467
Optimization terminated successfully (Exit mode 0)
Current function value: 95.76014358334467
Iterations: 20
Function evaluations: 292
Gradient evaluations: 20
Iteration: 1, Func. Count: 8, Neg. LLF: 111.3802472123782
Iteration: 2, Func. Count: 17, Neg. LLF: 59171.84498521687
Iteration: 3, Func. Count: 25, Neg. LLF: 520.6970947097492
Iteration: 4, Func. Count: 33, Neg. LLF: 183.12904301132377
Iteration: 5, Func. Count: 41, Neg. LLF: 216.4837199987253
Iteration: 6, Func. Count: 49, Neg. LLF: 99.6364959108371
Iteration: 7, Func. Count: 57, Neg. LLF: 98.30885747881233
Iteration: 8, Func. Count: 65, Neg. LLF: 98.0567658343986
Iteration: 9, Func. Count: 72, Neg. LLF: 98.0412968938826
Iteration: 10, Func. Count: 79, Neg. LLF: 98.02219714625822
Iteration: 11, Func. Count: 86, Neg. LLF: 98.01379554949449
Iteration: 12, Func. Count: 93, Neg. LLF: 98.01359580032404
Iteration: 13, Func. Count: 100, Neg. LLF: 98.01359017598465
Iteration: 14, Func. Count: 107, Neg. LLF: 98.0135896586271
Optimization terminated successfully (Exit mode 0)
Current function value: 98.0135896586271
Iterations: 14
Function evaluations: 107
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 115.34872319729308
Iteration: 2, Func. Count: 22, Neg. LLF: 465.18910395639386
Iteration: 3, Func. Count: 31, Neg. LLF: 23838.64348722908
Iteration: 4, Func. Count: 40, Neg. LLF: 2642.0282526325523
Iteration: 5, Func. Count: 49, Neg. LLF: 168.30283495570987
Iteration: 6, Func. Count: 59, Neg. LLF: 101.50248255295297
Iteration: 7, Func. Count: 68, Neg. LLF: 100.9997642844266
Iteration: 8, Func. Count: 76, Neg. LLF: 100.72770163507568
Iteration: 9, Func. Count: 84, Neg. LLF: 100.67707410622134
Iteration: 10, Func. Count: 92, Neg. LLF: 100.55199182613761
Iteration: 11, Func. Count: 100, Neg. LLF: 100.35169543641445
Iteration: 12, Func. Count: 108, Neg. LLF: 99.84926162404439
Iteration: 13, Func. Count: 116, Neg. LLF: 99.20053887836205
Iteration: 14, Func. Count: 124, Neg. LLF: 101.26315449978942
Iteration: 15, Func. Count: 134, Neg. LLF: 99.71299183233296
Iteration: 16, Func. Count: 144, Neg. LLF: 98.65209295455706
Iteration: 17, Func. Count: 152, Neg. LLF: 98.28732201746804
Iteration: 18, Func. Count: 160, Neg. LLF: 98.29355028730805
Iteration: 19, Func. Count: 169, Neg. LLF: 98.14230063310907
Iteration: 20, Func. Count: 177, Neg. LLF: 98.10810265567586
Iteration: 21, Func. Count: 185, Neg. LLF: 98.07982632245437
Iteration: 22, Func. Count: 193, Neg. LLF: 98.05747186851957
Iteration: 23, Func. Count: 201, Neg. LLF: 98.03841646046627
Iteration: 24, Func. Count: 209, Neg. LLF: 98.04099048094606
Iteration: 25, Func. Count: 218, Neg. LLF: 98.01551804624079
Iteration: 26, Func. Count: 226, Neg. LLF: 98.01373847245844
Iteration: 27, Func. Count: 234, Neg. LLF: 98.01362584603567
Iteration: 28, Func. Count: 242, Neg. LLF: 98.01358985572462
Iteration: 29, Func. Count: 249, Neg. LLF: 98.01358986116193
Optimization terminated successfully (Exit mode 0)
Current function value: 98.01358985572462
Iterations: 29
Function evaluations: 249
Gradient evaluations: 29
Iteration: 1, Func. Count: 10, Neg. LLF: 120.16328998547097
Iteration: 2, Func. Count: 24, Neg. LLF: 519.8074845356613
Iteration: 3, Func. Count: 34, Neg. LLF: 483.1048359007094
Iteration: 4, Func. Count: 44, Neg. LLF: 706.9640888338043
Iteration: 5, Func. Count: 54, Neg. LLF: 109.07076100137876
Iteration: 6, Func. Count: 64, Neg. LLF: 104.1217192801233
Iteration: 7, Func. Count: 74, Neg. LLF: 99.09089211015169
Iteration: 8, Func. Count: 83, Neg. LLF: 98.56501296961288
Iteration: 9, Func. Count: 92, Neg. LLF: 100.20136904604203
Iteration: 10, Func. Count: 103, Neg. LLF: 98.06654355888764
Iteration: 11, Func. Count: 112, Neg. LLF: 98.06008930175206
Iteration: 12, Func. Count: 121, Neg. LLF: 98.05652257037876
Iteration: 13, Func. Count: 130, Neg. LLF: 98.05315704851178
Iteration: 14, Func. Count: 139, Neg. LLF: 98.04837245682397
Iteration: 15, Func. Count: 148, Neg. LLF: 98.04406729304706
Iteration: 16, Func. Count: 157, Neg. LLF: 98.0388007673177
Iteration: 17, Func. Count: 166, Neg. LLF: 98.03111455461266
Iteration: 18, Func. Count: 175, Neg. LLF: 98.02145225816663
Iteration: 19, Func. Count: 184, Neg. LLF: 98.01489040882907
Iteration: 20, Func. Count: 193, Neg. LLF: 98.01370717381032
Iteration: 21, Func. Count: 202, Neg. LLF: 98.01359497113656
Iteration: 22, Func. Count: 211, Neg. LLF: 98.0135896618078
Iteration: 23, Func. Count: 219, Neg. LLF: 98.01358973989625
Optimization terminated successfully (Exit mode 0)
Current function value: 98.0135896618078
Iterations: 23
Function evaluations: 219
Gradient evaluations: 23
Iteration: 1, Func. Count: 11, Neg. LLF: 123.10540804643966
Iteration: 2, Func. Count: 26, Neg. LLF: 2710.822636635827
Iteration: 3, Func. Count: 37, Neg. LLF: 9515.920730522206
Iteration: 4, Func. Count: 48, Neg. LLF: 684535.566332284
Iteration: 5, Func. Count: 59, Neg. LLF: 103.40677731353104
Iteration: 6, Func. Count: 70, Neg. LLF: 135.097610758
Iteration: 7, Func. Count: 81, Neg. LLF: 99.31550918634866
Iteration: 8, Func. Count: 91, Neg. LLF: 98.98445168739208
Iteration: 9, Func. Count: 102, Neg. LLF: 101.7748518871787
Iteration: 10, Func. Count: 113, Neg. LLF: 98.3576006765636
Iteration: 11, Func. Count: 123, Neg. LLF: 98.24331917106318
Iteration: 12, Func. Count: 133, Neg. LLF: 98.16556730398177
Iteration: 13, Func. Count: 143, Neg. LLF: 98.10026297981656
Iteration: 14, Func. Count: 153, Neg. LLF: 98.04118075697251
Iteration: 15, Func. Count: 163, Neg. LLF: 98.03955667787558
Iteration: 16, Func. Count: 173, Neg. LLF: 98.03351491186461
Iteration: 17, Func. Count: 183, Neg. LLF: 98.0280914373747
Iteration: 18, Func. Count: 193, Neg. LLF: 98.0193475921682
Iteration: 19, Func. Count: 203, Neg. LLF: 98.01529531925232
Iteration: 20, Func. Count: 213, Neg. LLF: 98.01407776431154
Iteration: 21, Func. Count: 223, Neg. LLF: 98.01373453640818
Iteration: 22, Func. Count: 233, Neg. LLF: 98.01362016720446
Iteration: 23, Func. Count: 243, Neg. LLF: 98.01359286776622
Iteration: 24, Func. Count: 253, Neg. LLF: 98.01358977270459
Iteration: 25, Func. Count: 262, Neg. LLF: 98.01358978173005
Optimization terminated successfully (Exit mode 0)
Current function value: 98.01358977270459
Iterations: 25
Function evaluations: 262
Gradient evaluations: 25
Iteration: 1, Func. Count: 12, Neg. LLF: 124.98056349440124
Iteration: 2, Func. Count: 28, Neg. LLF: 1374.7351233902407
Iteration: 3, Func. Count: 40, Neg. LLF: 851.1172152380774
Iteration: 4, Func. Count: 52, Neg. LLF: 179.76904193169156
Iteration: 5, Func. Count: 64, Neg. LLF: 102.61231278416147
Iteration: 6, Func. Count: 76, Neg. LLF: 160.42177608676792
Iteration: 7, Func. Count: 88, Neg. LLF: 99.39979022508135
Iteration: 8, Func. Count: 99, Neg. LLF: 99.354774646903
Iteration: 9, Func. Count: 111, Neg. LLF: 98.88041812411996
Iteration: 10, Func. Count: 122, Neg. LLF: 98.35799829041693
Iteration: 11, Func. Count: 133, Neg. LLF: 98.24609148939628
Iteration: 12, Func. Count: 144, Neg. LLF: 98.17355539861995
Iteration: 13, Func. Count: 155, Neg. LLF: 98.1813485317809
Iteration: 14, Func. Count: 167, Neg. LLF: 98.08197230940722
Iteration: 15, Func. Count: 178, Neg. LLF: 98.06803747741608
Iteration: 16, Func. Count: 189, Neg. LLF: 98.06026937082964
Iteration: 17, Func. Count: 200, Neg. LLF: 98.04829883223483
Iteration: 18, Func. Count: 211, Neg. LLF: 98.01955522934013
Iteration: 19, Func. Count: 222, Neg. LLF: 98.00612020623049
Iteration: 20, Func. Count: 233, Neg. LLF: 97.9978048577639
Iteration: 21, Func. Count: 244, Neg. LLF: 97.99685661095597
Iteration: 22, Func. Count: 255, Neg. LLF: 97.99672104355065
Iteration: 23, Func. Count: 266, Neg. LLF: 97.99670861441179
Iteration: 24, Func. Count: 276, Neg. LLF: 97.99670861438943
Optimization terminated successfully (Exit mode 0)
Current function value: 97.99670861441179
Iterations: 24
Function evaluations: 276
Gradient evaluations: 24
Iteration: 1, Func. Count: 9, Neg. LLF: 111.37556283513591
Iteration: 2, Func. Count: 19, Neg. LLF: 12284.236074894048
Iteration: 3, Func. Count: 28, Neg. LLF: 543.0113665452466
Iteration: 4, Func. Count: 37, Neg. LLF: 187.726851483541
Iteration: 5, Func. Count: 46, Neg. LLF: 191.78009870045298
Iteration: 6, Func. Count: 55, Neg. LLF: 100.13437795060902
Iteration: 7, Func. Count: 64, Neg. LLF: 98.40794155501375
Iteration: 8, Func. Count: 73, Neg. LLF: 98.05738979985937
Iteration: 9, Func. Count: 81, Neg. LLF: 101.94399752906442
Iteration: 10, Func. Count: 92, Neg. LLF: 98.03816771551661
Iteration: 11, Func. Count: 100, Neg. LLF: 98.0160103960044
Iteration: 12, Func. Count: 108, Neg. LLF: 98.00907503019016
Iteration: 13, Func. Count: 116, Neg. LLF: 98.00886078438342
Iteration: 14, Func. Count: 124, Neg. LLF: 98.00885099264715
Iteration: 15, Func. Count: 132, Neg. LLF: 98.00885043844552
Optimization terminated successfully (Exit mode 0)
Current function value: 98.00885043844552
Iterations: 15
Function evaluations: 132
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 108.4412662932582
Iteration: 2, Func. Count: 23, Neg. LLF: 2861.4791997865354
Iteration: 3, Func. Count: 33, Neg. LLF: 194.5028287759373
Iteration: 4, Func. Count: 43, Neg. LLF: 108.25911285456183
Iteration: 5, Func. Count: 53, Neg. LLF: 100.36762599140437
Iteration: 6, Func. Count: 63, Neg. LLF: 100.15618677411761
Iteration: 7, Func. Count: 72, Neg. LLF: 100.55439323225524
Iteration: 8, Func. Count: 82, Neg. LLF: 100.11372366124152
Iteration: 9, Func. Count: 91, Neg. LLF: 100.09949603328447
Iteration: 10, Func. Count: 100, Neg. LLF: 100.09703036511121
Iteration: 11, Func. Count: 109, Neg. LLF: 100.09676931136194
Iteration: 12, Func. Count: 118, Neg. LLF: 100.09676708278401
Iteration: 13, Func. Count: 126, Neg. LLF: 100.09676708282747
Optimization terminated successfully (Exit mode 0)
Current function value: 100.09676708278401
Iterations: 13
Function evaluations: 126
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 119.96693027053614
Iteration: 2, Func. Count: 26, Neg. LLF: 1392.5545301472093
Iteration: 3, Func. Count: 37, Neg. LLF: 2430.551473017188
Iteration: 4, Func. Count: 48, Neg. LLF: 724.4047605496635
Iteration: 5, Func. Count: 59, Neg. LLF: 111.39488501728319
Iteration: 6, Func. Count: 70, Neg. LLF: 107.00588072226287
Iteration: 7, Func. Count: 81, Neg. LLF: 100.22908768047242
Iteration: 8, Func. Count: 92, Neg. LLF: 98.68368601907295
Iteration: 9, Func. Count: 102, Neg. LLF: 98.24104562093059
Iteration: 10, Func. Count: 112, Neg. LLF: 98.84059084159156
Iteration: 11, Func. Count: 123, Neg. LLF: 98.13137338792131
Iteration: 12, Func. Count: 133, Neg. LLF: 98.03632698132269
Iteration: 13, Func. Count: 143, Neg. LLF: 98.03400569154515
Iteration: 14, Func. Count: 153, Neg. LLF: 98.03280842497536
Iteration: 15, Func. Count: 163, Neg. LLF: 98.03096479789953
Iteration: 16, Func. Count: 173, Neg. LLF: 98.02456929383995
Iteration: 17, Func. Count: 183, Neg. LLF: 98.0167929022221
Iteration: 18, Func. Count: 193, Neg. LLF: 98.01026096375138
Iteration: 19, Func. Count: 203, Neg. LLF: 98.00888546917471
Iteration: 20, Func. Count: 213, Neg. LLF: 98.00885137149999
Iteration: 21, Func. Count: 223, Neg. LLF: 98.00885044205229
Optimization terminated successfully (Exit mode 0)
Current function value: 98.00885044205229
Iterations: 21
Function evaluations: 223
Gradient evaluations: 21
Iteration: 1, Func. Count: 12, Neg. LLF: 122.80850754033492
Iteration: 2, Func. Count: 28, Neg. LLF: 3455.1775965385095
Iteration: 3, Func. Count: 40, Neg. LLF: 1083.0709242141897
Iteration: 4, Func. Count: 52, Neg. LLF: 842.2504157066567
Iteration: 5, Func. Count: 64, Neg. LLF: 102.94536597040982
Iteration: 6, Func. Count: 76, Neg. LLF: 126.64203776121649
Iteration: 7, Func. Count: 88, Neg. LLF: 99.09105003003222
Iteration: 8, Func. Count: 99, Neg. LLF: 98.77185209934075
Iteration: 9, Func. Count: 110, Neg. LLF: 101.96587604378864
Iteration: 10, Func. Count: 123, Neg. LLF: 98.54312521560954
Iteration: 11, Func. Count: 135, Neg. LLF: 98.9993932156386
Iteration: 12, Func. Count: 147, Neg. LLF: 98.16643263908053
Iteration: 13, Func. Count: 158, Neg. LLF: 98.26919954295222
Iteration: 14, Func. Count: 170, Neg. LLF: 98.0629529673197
Iteration: 15, Func. Count: 181, Neg. LLF: 98.04548166160764
Iteration: 16, Func. Count: 192, Neg. LLF: 98.03574880781365
Iteration: 17, Func. Count: 203, Neg. LLF: 98.0335368116624
Iteration: 18, Func. Count: 214, Neg. LLF: 98.02803646680537
Iteration: 19, Func. Count: 225, Neg. LLF: 98.02132238406169
Iteration: 20, Func. Count: 236, Neg. LLF: 98.01515201635338
Iteration: 21, Func. Count: 247, Neg. LLF: 98.01109433452156
Iteration: 22, Func. Count: 258, Neg. LLF: 98.00900908305361
Iteration: 23, Func. Count: 269, Neg. LLF: 98.00886428713271
Iteration: 24, Func. Count: 280, Neg. LLF: 98.00885049924229
Iteration: 25, Func. Count: 290, Neg. LLF: 98.00885050873664
Optimization terminated successfully (Exit mode 0)
Current function value: 98.00885049924229
Iterations: 25
Function evaluations: 290
Gradient evaluations: 25
Iteration: 1, Func. Count: 13, Neg. LLF: 124.53556574407666
Iteration: 2, Func. Count: 30, Neg. LLF: 310832.04894607
Iteration: 3, Func. Count: 43, Neg. LLF: 1140.8502411235595
Iteration: 4, Func. Count: 56, Neg. LLF: 183.43557717144282
Iteration: 5, Func. Count: 69, Neg. LLF: 106.73291541117653
Iteration: 6, Func. Count: 82, Neg. LLF: 120.6134452504599
Iteration: 7, Func. Count: 95, Neg. LLF: 99.4488454154462
Iteration: 8, Func. Count: 107, Neg. LLF: 99.98218439104966
Iteration: 9, Func. Count: 120, Neg. LLF: 99.22650353022865
Iteration: 10, Func. Count: 132, Neg. LLF: 98.64267129467022
Iteration: 11, Func. Count: 144, Neg. LLF: 98.38025533906513
Iteration: 12, Func. Count: 156, Neg. LLF: 98.22408925764461
Iteration: 13, Func. Count: 168, Neg. LLF: 98.30472973572326
Iteration: 14, Func. Count: 181, Neg. LLF: 98.18830412152657
Iteration: 15, Func. Count: 194, Neg. LLF: 98.07197258450728
Iteration: 16, Func. Count: 206, Neg. LLF: 98.04478251507399
Iteration: 17, Func. Count: 218, Neg. LLF: 98.03328467758344
Iteration: 18, Func. Count: 230, Neg. LLF: 98.02739895726856
Iteration: 19, Func. Count: 242, Neg. LLF: 98.01772190147366
Iteration: 20, Func. Count: 254, Neg. LLF: 98.00746119654436
Iteration: 21, Func. Count: 266, Neg. LLF: 97.99634258871902
Iteration: 22, Func. Count: 278, Neg. LLF: 97.99179293799835
Iteration: 23, Func. Count: 290, Neg. LLF: 97.99104437474377
Iteration: 24, Func. Count: 302, Neg. LLF: 97.99099515140219
Iteration: 25, Func. Count: 314, Neg. LLF: 97.99099307665992
Iteration: 26, Func. Count: 325, Neg. LLF: 97.99099307667399
Optimization terminated successfully (Exit mode 0)
Current function value: 97.99099307665992
Iterations: 26
Function evaluations: 325
Gradient evaluations: 26
Iteration: 1, Func. Count: 10, Neg. LLF: 101.85083493442576
Iteration: 2, Func. Count: 20, Neg. LLF: 2059.064212275025
Iteration: 3, Func. Count: 30, Neg. LLF: 1192.5352844215734
Iteration: 4, Func. Count: 40, Neg. LLF: 24912.988549709477
Iteration: 5, Func. Count: 50, Neg. LLF: 6854166.2477047
Iteration: 6, Func. Count: 60, Neg. LLF: 143.01717575508198
Iteration: 7, Func. Count: 70, Neg. LLF: 98.37525312708458
Iteration: 8, Func. Count: 80, Neg. LLF: 96.50862614780132
Iteration: 9, Func. Count: 89, Neg. LLF: 96.53307998628763
Iteration: 10, Func. Count: 99, Neg. LLF: 96.73721858194985
Iteration: 11, Func. Count: 109, Neg. LLF: 96.49306844807091
Iteration: 12, Func. Count: 118, Neg. LLF: 96.49029465284444
Iteration: 13, Func. Count: 127, Neg. LLF: 96.48660334938036
Iteration: 14, Func. Count: 136, Neg. LLF: 96.48584458253927
Iteration: 15, Func. Count: 145, Neg. LLF: 96.48580288526327
Iteration: 16, Func. Count: 154, Neg. LLF: 96.4858008645836
Iteration: 17, Func. Count: 162, Neg. LLF: 96.4858008645802
Optimization terminated successfully (Exit mode 0)
Current function value: 96.4858008645836
Iterations: 17
Function evaluations: 162
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 144.66615110995116
Iteration: 2, Func. Count: 22, Neg. LLF: 100.73259235970929
Iteration: 3, Func. Count: 33, Neg. LLF: 105.04129665861674
Iteration: 4, Func. Count: 44, Neg. LLF: 98.48561156955293
Iteration: 5, Func. Count: 55, Neg. LLF: 98.86047018375719
Iteration: 6, Func. Count: 66, Neg. LLF: 100.12275369432014
Iteration: 7, Func. Count: 77, Neg. LLF: 125.37227113799965
Iteration: 8, Func. Count: 89, Neg. LLF: 97.89424128936908
Iteration: 9, Func. Count: 100, Neg. LLF: 97.67057598751494
Iteration: 10, Func. Count: 111, Neg. LLF: 97.54167497617776
Iteration: 11, Func. Count: 122, Neg. LLF: 96.66998292174196
Iteration: 12, Func. Count: 132, Neg. LLF: 96.60688987619623
Iteration: 13, Func. Count: 142, Neg. LLF: 96.60329835812993
Iteration: 14, Func. Count: 153, Neg. LLF: 96.51267188392728
Iteration: 15, Func. Count: 163, Neg. LLF: 96.49398562692537
Iteration: 16, Func. Count: 173, Neg. LLF: 96.48642687788121
Iteration: 17, Func. Count: 183, Neg. LLF: 96.48585239616932
Iteration: 18, Func. Count: 193, Neg. LLF: 96.48581246170161
Iteration: 19, Func. Count: 203, Neg. LLF: 96.4858051875153
Iteration: 20, Func. Count: 213, Neg. LLF: 96.48580108713514
Iteration: 21, Func. Count: 222, Neg. LLF: 96.48580117667164
Optimization terminated successfully (Exit mode 0)
Current function value: 96.48580108713514
Iterations: 21
Function evaluations: 222
Gradient evaluations: 21
Iteration: 1, Func. Count: 12, Neg. LLF: 106.11803078631436
Iteration: 2, Func. Count: 24, Neg. LLF: 153.23840472001453
Iteration: 3, Func. Count: 37, Neg. LLF: 105.787041748744
Iteration: 4, Func. Count: 50, Neg. LLF: 396.4360645357234
Iteration: 5, Func. Count: 62, Neg. LLF: 103.77856588386558
Iteration: 6, Func. Count: 74, Neg. LLF: 96.5208417554812
Iteration: 7, Func. Count: 85, Neg. LLF: 98.7113066604367
Iteration: 8, Func. Count: 97, Neg. LLF: 96.664023972654
Iteration: 9, Func. Count: 109, Neg. LLF: 96.52993012002992
Iteration: 10, Func. Count: 121, Neg. LLF: 96.48670361896731
Iteration: 11, Func. Count: 132, Neg. LLF: 96.4847633489822
Iteration: 12, Func. Count: 143, Neg. LLF: 96.48497761294861
Iteration: 13, Func. Count: 155, Neg. LLF: 96.48248865705726
Iteration: 14, Func. Count: 166, Neg. LLF: 96.48237543354944
Iteration: 15, Func. Count: 177, Neg. LLF: 96.48236572187719
Iteration: 16, Func. Count: 188, Neg. LLF: 96.48236232355876
Iteration: 17, Func. Count: 198, Neg. LLF: 96.48236232361708
Optimization terminated successfully (Exit mode 0)
Current function value: 96.48236232355876
Iterations: 17
Function evaluations: 198
Gradient evaluations: 17
Iteration: 1, Func. Count: 13, Neg. LLF: 105.02195214035285
Iteration: 2, Func. Count: 26, Neg. LLF: 154.64774470090842
Iteration: 3, Func. Count: 40, Neg. LLF: 113.02703240226904
Iteration: 4, Func. Count: 53, Neg. LLF: 375.3727192646272
Iteration: 5, Func. Count: 66, Neg. LLF: 119.76846865802557
Iteration: 6, Func. Count: 79, Neg. LLF: 96.56550219004347
Iteration: 7, Func. Count: 91, Neg. LLF: 97.55121282406603
Iteration: 8, Func. Count: 104, Neg. LLF: 634.7190260307805
Iteration: 9, Func. Count: 118, Neg. LLF: 109.39882839679998
Iteration: 10, Func. Count: 131, Neg. LLF: 96.07107479512412
Iteration: 11, Func. Count: 143, Neg. LLF: 96.02399002439385
Iteration: 12, Func. Count: 155, Neg. LLF: 96.10287909618212
Iteration: 13, Func. Count: 168, Neg. LLF: 96.00859248389361
Iteration: 14, Func. Count: 180, Neg. LLF: 96.00727385482013
Iteration: 15, Func. Count: 192, Neg. LLF: 96.00585982628554
Iteration: 16, Func. Count: 204, Neg. LLF: 96.00531679692656
Iteration: 17, Func. Count: 216, Neg. LLF: 96.00524783011845
Iteration: 18, Func. Count: 228, Neg. LLF: 96.00524084525848
Iteration: 19, Func. Count: 239, Neg. LLF: 96.00524084525053
Optimization terminated successfully (Exit mode 0)
Current function value: 96.00524084525848
Iterations: 19
Function evaluations: 239
Gradient evaluations: 19
Iteration: 1, Func. Count: 14, Neg. LLF: 104.51684598667333
Iteration: 2, Func. Count: 28, Neg. LLF: 150.35491297612856
Iteration: 3, Func. Count: 43, Neg. LLF: 111.63205917885224
Iteration: 4, Func. Count: 57, Neg. LLF: 264.78243053619997
Iteration: 5, Func. Count: 71, Neg. LLF: 119.07225070308004
Iteration: 6, Func. Count: 85, Neg. LLF: 96.54962758980837
Iteration: 7, Func. Count: 98, Neg. LLF: 97.65902894571843
Iteration: 8, Func. Count: 112, Neg. LLF: 261.92721720638593
Iteration: 9, Func. Count: 126, Neg. LLF: 96.26029785924324
Iteration: 10, Func. Count: 140, Neg. LLF: 96.20893259263511
Iteration: 11, Func. Count: 154, Neg. LLF: 96.02099610617957
Iteration: 12, Func. Count: 167, Neg. LLF: 96.08543620308343
Iteration: 13, Func. Count: 181, Neg. LLF: 96.04779865745813
Iteration: 14, Func. Count: 195, Neg. LLF: 96.00769875246144
Iteration: 15, Func. Count: 208, Neg. LLF: 96.00534593717167
Iteration: 16, Func. Count: 221, Neg. LLF: 96.00525873562694
Iteration: 17, Func. Count: 234, Neg. LLF: 96.00524260130149
Iteration: 18, Func. Count: 247, Neg. LLF: 96.00524068157766
Iteration: 19, Func. Count: 259, Neg. LLF: 96.00524073913925
Optimization terminated successfully (Exit mode 0)
Current function value: 96.00524068157766
Iterations: 19
Function evaluations: 259
Gradient evaluations: 19
Iteration: 1, Func. Count: 11, Neg. LLF: 103.55671265603105
Iteration: 2, Func. Count: 23, Neg. LLF: 165.70055524004587
Iteration: 3, Func. Count: 34, Neg. LLF: 6488839.308881779
Iteration: 4, Func. Count: 45, Neg. LLF: 679.3628859141552
Iteration: 5, Func. Count: 56, Neg. LLF: 233.22158208159638
Iteration: 6, Func. Count: 67, Neg. LLF: 98.6039510663516
Iteration: 7, Func. Count: 78, Neg. LLF: 96.48724551119706
Iteration: 8, Func. Count: 88, Neg. LLF: 96.16606268455718
Iteration: 9, Func. Count: 98, Neg. LLF: 96.15034824095264
Iteration: 10, Func. Count: 109, Neg. LLF: 96.08327339668037
Iteration: 11, Func. Count: 119, Neg. LLF: 96.1132746281155
Iteration: 12, Func. Count: 130, Neg. LLF: 96.01473363244426
Iteration: 13, Func. Count: 141, Neg. LLF: 95.99619391992648
Iteration: 14, Func. Count: 152, Neg. LLF: 95.99281065607725
Iteration: 15, Func. Count: 163, Neg. LLF: 95.98726321999806
Iteration: 16, Func. Count: 173, Neg. LLF: 95.98453932628718
Iteration: 17, Func. Count: 183, Neg. LLF: 95.98450710523825
Iteration: 18, Func. Count: 192, Neg. LLF: 95.98450700320811
Optimization terminated successfully (Exit mode 0)
Current function value: 95.98450710523825
Iterations: 18
Function evaluations: 192
Gradient evaluations: 18
Iteration: 1, Func. Count: 12, Neg. LLF: 101.45627354200516
Iteration: 2, Func. Count: 24, Neg. LLF: 115.71037957903378
Iteration: 3, Func. Count: 37, Neg. LLF: 107.50695329389951
Iteration: 4, Func. Count: 50, Neg. LLF: 112.09714245057329
Iteration: 5, Func. Count: 62, Neg. LLF: 140.87503521014565
Iteration: 6, Func. Count: 74, Neg. LLF: 97.87550372520042
Iteration: 7, Func. Count: 86, Neg. LLF: 96.23908007080763
Iteration: 8, Func. Count: 97, Neg. LLF: 105.11487736982154
Iteration: 9, Func. Count: 109, Neg. LLF: 96.01698688529844
Iteration: 10, Func. Count: 120, Neg. LLF: 96.00274359232807
Iteration: 11, Func. Count: 131, Neg. LLF: 95.99105614898774
Iteration: 12, Func. Count: 142, Neg. LLF: 95.98730276794885
Iteration: 13, Func. Count: 153, Neg. LLF: 95.9859270711163
Iteration: 14, Func. Count: 164, Neg. LLF: 95.98458956501813
Iteration: 15, Func. Count: 175, Neg. LLF: 95.98452723052733
Iteration: 16, Func. Count: 186, Neg. LLF: 95.98451779002207
Iteration: 17, Func. Count: 197, Neg. LLF: 95.98451084432357
Iteration: 18, Func. Count: 208, Neg. LLF: 95.98450717329158
Iteration: 19, Func. Count: 218, Neg. LLF: 95.98450729281389
Optimization terminated successfully (Exit mode 0)
Current function value: 95.98450717329158
Iterations: 19
Function evaluations: 218
Gradient evaluations: 19
Iteration: 1, Func. Count: 13, Neg. LLF: 99.41302626286634
Iteration: 2, Func. Count: 26, Neg. LLF: 103.45179521320945
Iteration: 3, Func. Count: 40, Neg. LLF: 648.3398649803007
Iteration: 4, Func. Count: 53, Neg. LLF: 5406659.006100426
Iteration: 5, Func. Count: 66, Neg. LLF: 101.69187016106208
Iteration: 6, Func. Count: 79, Neg. LLF: 96.20823559526394
Iteration: 7, Func. Count: 91, Neg. LLF: 96.60001788348242
Iteration: 8, Func. Count: 104, Neg. LLF: 96.05078240705971
Iteration: 9, Func. Count: 117, Neg. LLF: 96.10237534873625
Iteration: 10, Func. Count: 130, Neg. LLF: 95.98538291305873
Iteration: 11, Func. Count: 142, Neg. LLF: 95.98485479177538
Iteration: 12, Func. Count: 154, Neg. LLF: 95.98456253336829
Iteration: 13, Func. Count: 166, Neg. LLF: 95.98452230391554
Iteration: 14, Func. Count: 178, Neg. LLF: 95.98450864755176
Iteration: 15, Func. Count: 190, Neg. LLF: 95.98450658945646
Iteration: 16, Func. Count: 201, Neg. LLF: 95.98450660826273
Optimization terminated successfully (Exit mode 0)
Current function value: 95.98450658945646
Iterations: 16
Function evaluations: 201
Gradient evaluations: 16
Iteration: 1, Func. Count: 14, Neg. LLF: 99.20941066418546
Iteration: 2, Func. Count: 28, Neg. LLF: 106.30828952240856
Iteration: 3, Func. Count: 43, Neg. LLF: 574.6438170484523
Iteration: 4, Func. Count: 57, Neg. LLF: 6601655.151572736
Iteration: 5, Func. Count: 71, Neg. LLF: 108.61238643657629
Iteration: 6, Func. Count: 85, Neg. LLF: 170.49335337404332
Iteration: 7, Func. Count: 100, Neg. LLF: 96.02389056509746
Iteration: 8, Func. Count: 113, Neg. LLF: 96.13594928262113
Iteration: 9, Func. Count: 127, Neg. LLF: 95.95898820010673
Iteration: 10, Func. Count: 141, Neg. LLF: 95.91588043104163
Iteration: 11, Func. Count: 155, Neg. LLF: 95.7738906191962
Iteration: 12, Func. Count: 169, Neg. LLF: 95.76120768825734
Iteration: 13, Func. Count: 182, Neg. LLF: 95.76037240901891
Iteration: 14, Func. Count: 195, Neg. LLF: 95.7601729706678
Iteration: 15, Func. Count: 208, Neg. LLF: 95.76014776769898
Iteration: 16, Func. Count: 221, Neg. LLF: 95.76014376753136
Iteration: 17, Func. Count: 233, Neg. LLF: 95.76014376754199
Optimization terminated successfully (Exit mode 0)
Current function value: 95.76014376753136
Iterations: 17
Function evaluations: 233
Gradient evaluations: 17
Iteration: 1, Func. Count: 15, Neg. LLF: 99.05617124908869
Iteration: 2, Func. Count: 30, Neg. LLF: 109.01134645248455
Iteration: 3, Func. Count: 46, Neg. LLF: 357.265504503834
Iteration: 4, Func. Count: 61, Neg. LLF: 6524955.919234204
Iteration: 5, Func. Count: 76, Neg. LLF: 124.39709939572207
Iteration: 6, Func. Count: 91, Neg. LLF: 101.70910128866265
Iteration: 7, Func. Count: 106, Neg. LLF: 96.03102493507926
Iteration: 8, Func. Count: 120, Neg. LLF: 104.34859323369224
Iteration: 9, Func. Count: 136, Neg. LLF: 97.47611320544894
Iteration: 10, Func. Count: 152, Neg. LLF: 95.81335786331299
Iteration: 11, Func. Count: 166, Neg. LLF: 95.77122342472434
Iteration: 12, Func. Count: 180, Neg. LLF: 95.76331449478813
Iteration: 13, Func. Count: 194, Neg. LLF: 95.7617636387974
Iteration: 14, Func. Count: 208, Neg. LLF: 95.76071338999455
Iteration: 15, Func. Count: 222, Neg. LLF: 95.76034280844965
Iteration: 16, Func. Count: 236, Neg. LLF: 95.76019986611576
Iteration: 17, Func. Count: 250, Neg. LLF: 95.76016127410605
Iteration: 18, Func. Count: 264, Neg. LLF: 95.7601456195188
Iteration: 19, Func. Count: 278, Neg. LLF: 95.76014386928173
Iteration: 20, Func. Count: 291, Neg. LLF: 95.76014391878934
Optimization terminated successfully (Exit mode 0)
Current function value: 95.76014386928173
Iterations: 20
Function evaluations: 291
Gradient evaluations: 20
Iteration: 1, Func. Count: 12, Neg. LLF: 104.95104163417908
Iteration: 2, Func. Count: 25, Neg. LLF: 1752006.4366895275
Iteration: 3, Func. Count: 37, Neg. LLF: 5202832.04160983
Iteration: 4, Func. Count: 49, Neg. LLF: 1373.058130802542
Iteration: 5, Func. Count: 61, Neg. LLF: 161531.7840001865
Iteration: 6, Func. Count: 73, Neg. LLF: 98.06815119023965
Iteration: 7, Func. Count: 85, Neg. LLF: 96.6752734010429
Iteration: 8, Func. Count: 97, Neg. LLF: 98.62392943301353
Iteration: 9, Func. Count: 110, Neg. LLF: 96.16967119212336
Iteration: 10, Func. Count: 121, Neg. LLF: 96.19041718949225
Iteration: 11, Func. Count: 133, Neg. LLF: 96.03128235894982
Iteration: 12, Func. Count: 144, Neg. LLF: 96.01357232356698
Iteration: 13, Func. Count: 155, Neg. LLF: 95.99180569353696
Iteration: 14, Func. Count: 166, Neg. LLF: 95.97228978921676
Iteration: 15, Func. Count: 177, Neg. LLF: 95.96195083781123
Iteration: 16, Func. Count: 188, Neg. LLF: 95.96095743234943
Iteration: 17, Func. Count: 199, Neg. LLF: 95.96093494873608
Iteration: 18, Func. Count: 210, Neg. LLF: 95.96092340046876
Iteration: 19, Func. Count: 221, Neg. LLF: 95.96092071668568
Iteration: 20, Func. Count: 232, Neg. LLF: 95.9609201274305
Optimization terminated successfully (Exit mode 0)
Current function value: 95.9609201274305
Iterations: 20
Function evaluations: 232
Gradient evaluations: 20
Iteration: 1, Func. Count: 13, Neg. LLF: 99.03794107582667
Iteration: 2, Func. Count: 26, Neg. LLF: 114.53693499836017
Iteration: 3, Func. Count: 40, Neg. LLF: 114.1198359127085
Iteration: 4, Func. Count: 53, Neg. LLF: 7447301.103778237
Iteration: 5, Func. Count: 66, Neg. LLF: 1274.052627473545
Iteration: 6, Func. Count: 79, Neg. LLF: 99.85274747378746
Iteration: 7, Func. Count: 92, Neg. LLF: 96.01049146300109
Iteration: 8, Func. Count: 104, Neg. LLF: 96.05173860945767
Iteration: 9, Func. Count: 117, Neg. LLF: 96.29847227169941
Iteration: 10, Func. Count: 130, Neg. LLF: 95.9657387713038
Iteration: 11, Func. Count: 142, Neg. LLF: 95.96122377928015
Iteration: 12, Func. Count: 154, Neg. LLF: 95.96117036448148
Iteration: 13, Func. Count: 167, Neg. LLF: 95.9609253175204
Iteration: 14, Func. Count: 179, Neg. LLF: 95.96092214044597
Iteration: 15, Func. Count: 191, Neg. LLF: 95.96092045475564
Iteration: 16, Func. Count: 202, Neg. LLF: 95.96092057485102
Optimization terminated successfully (Exit mode 0)
Current function value: 95.96092045475564
Iterations: 16
Function evaluations: 202
Gradient evaluations: 16
Iteration: 1, Func. Count: 14, Neg. LLF: 98.79472070476983
Iteration: 2, Func. Count: 28, Neg. LLF: 122.95248043537335
Iteration: 3, Func. Count: 42, Neg. LLF: 195.8295010547047
Iteration: 4, Func. Count: 56, Neg. LLF: 522.0486300145665
Iteration: 5, Func. Count: 70, Neg. LLF: 52529.19465529057
Iteration: 6, Func. Count: 84, Neg. LLF: 98.3399798193768
Iteration: 7, Func. Count: 98, Neg. LLF: 102.85832191661359
Iteration: 8, Func. Count: 112, Neg. LLF: 96.35734040169922
Iteration: 9, Func. Count: 125, Neg. LLF: 96.09874245418133
Iteration: 10, Func. Count: 139, Neg. LLF: 96.06424129485347
Iteration: 11, Func. Count: 153, Neg. LLF: 95.99650976375413
Iteration: 12, Func. Count: 166, Neg. LLF: 95.98562593715542
Iteration: 13, Func. Count: 179, Neg. LLF: 95.97098985741087
Iteration: 14, Func. Count: 192, Neg. LLF: 95.96697364421665
Iteration: 15, Func. Count: 205, Neg. LLF: 95.96275202474084
Iteration: 16, Func. Count: 218, Neg. LLF: 95.96170128084002
Iteration: 17, Func. Count: 231, Neg. LLF: 95.9610573298651
Iteration: 18, Func. Count: 244, Neg. LLF: 95.96094106909403
Iteration: 19, Func. Count: 257, Neg. LLF: 95.96092020802271
Iteration: 20, Func. Count: 269, Neg. LLF: 95.96092024563976
Optimization terminated successfully (Exit mode 0)
Current function value: 95.96092020802271
Iterations: 20
Function evaluations: 269
Gradient evaluations: 20
Iteration: 1, Func. Count: 15, Neg. LLF: 98.74579578346605
Iteration: 2, Func. Count: 30, Neg. LLF: 133.30029192814106
Iteration: 3, Func. Count: 45, Neg. LLF: 303.9706517036439
Iteration: 4, Func. Count: 60, Neg. LLF: 2091.5821076249936
Iteration: 5, Func. Count: 75, Neg. LLF: 18485.260729573358
Iteration: 6, Func. Count: 90, Neg. LLF: 109.56019613270594
Iteration: 7, Func. Count: 105, Neg. LLF: 124.63483188861063
Iteration: 8, Func. Count: 121, Neg. LLF: 96.29205470559991
Iteration: 9, Func. Count: 135, Neg. LLF: 95.83021505201309
Iteration: 10, Func. Count: 149, Neg. LLF: 96.76355590600373
Iteration: 11, Func. Count: 164, Neg. LLF: 95.82958244768537
Iteration: 12, Func. Count: 179, Neg. LLF: 95.78114719307703
Iteration: 13, Func. Count: 193, Neg. LLF: 95.76356628720272
Iteration: 14, Func. Count: 207, Neg. LLF: 95.7607654371916
Iteration: 15, Func. Count: 221, Neg. LLF: 95.76061453587712
Iteration: 16, Func. Count: 236, Neg. LLF: 95.76018434428421
Iteration: 17, Func. Count: 250, Neg. LLF: 95.76015269170999
Iteration: 18, Func. Count: 264, Neg. LLF: 95.76014833481186
Iteration: 19, Func. Count: 278, Neg. LLF: 95.76014427707462
Iteration: 20, Func. Count: 292, Neg. LLF: 95.76014359524738
Optimization terminated successfully (Exit mode 0)
Current function value: 95.76014359524738
Iterations: 20
Function evaluations: 292
Gradient evaluations: 20
Iteration: 1, Func. Count: 16, Neg. LLF: 98.75687249769234
Iteration: 2, Func. Count: 32, Neg. LLF: 135.29667842870236
Iteration: 3, Func. Count: 48, Neg. LLF: 235.7506214990713
Iteration: 4, Func. Count: 64, Neg. LLF: 859.3928321521818
Iteration: 5, Func. Count: 80, Neg. LLF: 8518.19623448692
Iteration: 6, Func. Count: 96, Neg. LLF: 113.3659955034666
Iteration: 7, Func. Count: 112, Neg. LLF: 276.3283215384969
Iteration: 8, Func. Count: 129, Neg. LLF: 96.93082161636036
Iteration: 9, Func. Count: 145, Neg. LLF: 95.80239095163566
Iteration: 10, Func. Count: 160, Neg. LLF: 97.88497912631281
Iteration: 11, Func. Count: 176, Neg. LLF: 95.77980228533684
Iteration: 12, Func. Count: 191, Neg. LLF: 95.76443473562172
Iteration: 13, Func. Count: 206, Neg. LLF: 95.76059007087295
Iteration: 14, Func. Count: 221, Neg. LLF: 95.76026742041844
Iteration: 15, Func. Count: 236, Neg. LLF: 95.76016271599686
Iteration: 16, Func. Count: 251, Neg. LLF: 95.76014936716537
Iteration: 17, Func. Count: 266, Neg. LLF: 95.76014628271201
Iteration: 18, Func. Count: 281, Neg. LLF: 95.76014428337434
Iteration: 19, Func. Count: 296, Neg. LLF: 95.76014360486997
Optimization terminated successfully (Exit mode 0)
Current function value: 95.76014360486997
Iterations: 19
Function evaluations: 296
Gradient evaluations: 19
Iteration: 1, Func. Count: 6, Neg. LLF: 117.77075828507003
Iteration: 2, Func. Count: 13, Neg. LLF: 277558308.0904078
Iteration: 3, Func. Count: 19, Neg. LLF: 11092367.672585934
Iteration: 4, Func. Count: 25, Neg. LLF: 124.23573132182415
Iteration: 5, Func. Count: 31, Neg. LLF: 101.14286903175474
Iteration: 6, Func. Count: 37, Neg. LLF: 98.24019587422289
Iteration: 7, Func. Count: 43, Neg. LLF: 98.02302389149695
Iteration: 8, Func. Count: 49, Neg. LLF: 97.99571692034993
Iteration: 9, Func. Count: 54, Neg. LLF: 97.98459512602356
Iteration: 10, Func. Count: 59, Neg. LLF: 97.9606631081523
Iteration: 11, Func. Count: 64, Neg. LLF: 97.95987114914882
Iteration: 12, Func. Count: 69, Neg. LLF: 97.95984349751477
Iteration: 13, Func. Count: 73, Neg. LLF: 97.95984349751103
Optimization terminated successfully (Exit mode 0)
Current function value: 97.95984349751477
Iterations: 13
Function evaluations: 73
Gradient evaluations: 13
Iteration: 1, Func. Count: 5, Neg. LLF: 123.06880978070146
Iteration: 2, Func. Count: 11, Neg. LLF: 120.23197798521889
Iteration: 3, Func. Count: 16, Neg. LLF: 105.13576953456135
Iteration: 4, Func. Count: 20, Neg. LLF: 104.80919207571064
Iteration: 5, Func. Count: 24, Neg. LLF: 104.65214756722877
Iteration: 6, Func. Count: 28, Neg. LLF: 104.59584044084407
Iteration: 7, Func. Count: 32, Neg. LLF: 104.5918199443415
Iteration: 8, Func. Count: 36, Neg. LLF: 104.59175913467439
Iteration: 9, Func. Count: 39, Neg. LLF: 104.59175915740204
Optimization terminated successfully (Exit mode 0)
Current function value: 104.59175913467439
Iterations: 9
Function evaluations: 39
Gradient evaluations: 9
Iteration: 1, Func. Count: 6, Neg. LLF: 115.09268588369922
Iteration: 2, Func. Count: 12, Neg. LLF: 145.51840536678296
Iteration: 3, Func. Count: 18, Neg. LLF: 101.65165570328638
Iteration: 4, Func. Count: 23, Neg. LLF: 103.20098312657473
Iteration: 5, Func. Count: 29, Neg. LLF: 108.6873271980917
Iteration: 6, Func. Count: 36, Neg. LLF: 101.54586817877855
Iteration: 7, Func. Count: 41, Neg. LLF: 101.53340907595614
Iteration: 8, Func. Count: 46, Neg. LLF: 101.53261343252328
Iteration: 9, Func. Count: 51, Neg. LLF: 101.53243814206814
Iteration: 10, Func. Count: 56, Neg. LLF: 101.53243232839716
Iteration: 11, Func. Count: 60, Neg. LLF: 101.53243231624818
Optimization terminated successfully (Exit mode 0)
Current function value: 101.53243232839716
Iterations: 11
Function evaluations: 60
Gradient evaluations: 11
Iteration: 1, Func. Count: 7, Neg. LLF: 173.46836553598231
Iteration: 2, Func. Count: 17, Neg. LLF: 103.71230096871814
Iteration: 3, Func. Count: 24, Neg. LLF: 103.38128960488257
Iteration: 4, Func. Count: 30, Neg. LLF: 115.13680949890419
Iteration: 5, Func. Count: 37, Neg. LLF: 103.27056691230337
Iteration: 6, Func. Count: 43, Neg. LLF: 103.26842982371195
Iteration: 7, Func. Count: 49, Neg. LLF: 103.26762158738023
Iteration: 8, Func. Count: 55, Neg. LLF: 103.26509812717532
Iteration: 9, Func. Count: 61, Neg. LLF: 103.25915324553834
Iteration: 10, Func. Count: 67, Neg. LLF: 103.2545759742688
Iteration: 11, Func. Count: 73, Neg. LLF: 103.25090297875418
Iteration: 12, Func. Count: 79, Neg. LLF: 103.25089317188556
Iteration: 13, Func. Count: 84, Neg. LLF: 103.25089311926187
Optimization terminated successfully (Exit mode 0)
Current function value: 103.25089317188556
Iterations: 13
Function evaluations: 84
Gradient evaluations: 13
Iteration: 1, Func. Count: 8, Neg. LLF: 173.60141092260923
Iteration: 2, Func. Count: 19, Neg. LLF: 103.65552534669271
Iteration: 3, Func. Count: 27, Neg. LLF: 103.30304819160308
Iteration: 4, Func. Count: 34, Neg. LLF: 103.33385314788985
Iteration: 5, Func. Count: 42, Neg. LLF: 103.29577926925992
Iteration: 6, Func. Count: 49, Neg. LLF: 103.29492531824498
Iteration: 7, Func. Count: 56, Neg. LLF: 103.29034800407517
Iteration: 8, Func. Count: 63, Neg. LLF: 103.2680898173808
Iteration: 9, Func. Count: 70, Neg. LLF: 103.26776870987064
Iteration: 10, Func. Count: 77, Neg. LLF: 103.2671951273516
Iteration: 11, Func. Count: 84, Neg. LLF: 103.2652753014882
Iteration: 12, Func. Count: 91, Neg. LLF: 103.25452389441361
Iteration: 13, Func. Count: 98, Neg. LLF: 103.25213100900439
Iteration: 14, Func. Count: 105, Neg. LLF: 103.25095658776647
Iteration: 15, Func. Count: 112, Neg. LLF: 103.25089319704037
Iteration: 16, Func. Count: 118, Neg. LLF: 103.25089314548612
Optimization terminated successfully (Exit mode 0)
Current function value: 103.25089319704037
Iterations: 16
Function evaluations: 118
Gradient evaluations: 16
Iteration: 1, Func. Count: 9, Neg. LLF: 175.71938577920628
Iteration: 2, Func. Count: 21, Neg. LLF: 103.63051468005867
Iteration: 3, Func. Count: 30, Neg. LLF: 103.34618398529916
Iteration: 4, Func. Count: 38, Neg. LLF: 103.33353481752998
Iteration: 5, Func. Count: 46, Neg. LLF: 103.32155883184024
Iteration: 6, Func. Count: 54, Neg. LLF: 103.31718168201937
Iteration: 7, Func. Count: 62, Neg. LLF: 103.31276210914348
Iteration: 8, Func. Count: 70, Neg. LLF: 103.28901083890314
Iteration: 9, Func. Count: 78, Neg. LLF: 103.28565533894748
Iteration: 10, Func. Count: 86, Neg. LLF: 103.28290330472969
Iteration: 11, Func. Count: 94, Neg. LLF: 103.28086309327746
Iteration: 12, Func. Count: 102, Neg. LLF: 103.2672973836117
Iteration: 13, Func. Count: 110, Neg. LLF: 103.2666723377034
Iteration: 14, Func. Count: 118, Neg. LLF: 103.26624257896235
Iteration: 15, Func. Count: 126, Neg. LLF: 103.26342730781974
Iteration: 16, Func. Count: 134, Neg. LLF: 103.25611445745228
Iteration: 17, Func. Count: 142, Neg. LLF: 103.25444038830844
Iteration: 18, Func. Count: 150, Neg. LLF: 103.25093773102996
Iteration: 19, Func. Count: 158, Neg. LLF: 103.2508934196153
Iteration: 20, Func. Count: 165, Neg. LLF: 103.2508933694384
Optimization terminated successfully (Exit mode 0)
Current function value: 103.2508934196153
Iterations: 20
Function evaluations: 165
Gradient evaluations: 20
Iteration: 1, Func. Count: 6, Neg. LLF: 123.40070146782033
Iteration: 2, Func. Count: 13, Neg. LLF: 1089.5718674820228
Iteration: 3, Func. Count: 19, Neg. LLF: 11696463.193744907
Iteration: 4, Func. Count: 25, Neg. LLF: 114.01483959770964
Iteration: 5, Func. Count: 31, Neg. LLF: 101.59861132650859
Iteration: 6, Func. Count: 37, Neg. LLF: 99.71475389070588
Iteration: 7, Func. Count: 43, Neg. LLF: 99.64912708152308
Iteration: 8, Func. Count: 48, Neg. LLF: 99.62213608700982
Iteration: 9, Func. Count: 53, Neg. LLF: 99.58858900252376
Iteration: 10, Func. Count: 58, Neg. LLF: 99.58322429908574
Iteration: 11, Func. Count: 63, Neg. LLF: 99.58299284405226
Iteration: 12, Func. Count: 68, Neg. LLF: 99.58299107953965
Iteration: 13, Func. Count: 72, Neg. LLF: 99.58299107953687
Optimization terminated successfully (Exit mode 0)
Current function value: 99.58299107953965
Iterations: 13
Function evaluations: 72
Gradient evaluations: 13
Iteration: 1, Func. Count: 7, Neg. LLF: 108.39816798049837
Iteration: 2, Func. Count: 14, Neg. LLF: 115.3666956877886
Iteration: 3, Func. Count: 21, Neg. LLF: 115.20460158846562
Iteration: 4, Func. Count: 29, Neg. LLF: 101.36956361383433
Iteration: 5, Func. Count: 36, Neg. LLF: 99.78407622607041
Iteration: 6, Func. Count: 42, Neg. LLF: 99.6371929746581
Iteration: 7, Func. Count: 48, Neg. LLF: 99.60230802373594
Iteration: 8, Func. Count: 54, Neg. LLF: 99.59030929400221
Iteration: 9, Func. Count: 60, Neg. LLF: 99.58345244871265
Iteration: 10, Func. Count: 66, Neg. LLF: 99.58303244250034
Iteration: 11, Func. Count: 72, Neg. LLF: 99.5830004494565
Iteration: 12, Func. Count: 78, Neg. LLF: 99.58299304760912
Iteration: 13, Func. Count: 84, Neg. LLF: 99.58299119958923
Iteration: 14, Func. Count: 89, Neg. LLF: 99.58299127103615
Optimization terminated successfully (Exit mode 0)
Current function value: 99.58299119958923
Iterations: 14
Function evaluations: 89
Gradient evaluations: 14
Iteration: 1, Func. Count: 8, Neg. LLF: 103.4692071103159
Iteration: 2, Func. Count: 16, Neg. LLF: 279.16662523771083
Iteration: 3, Func. Count: 24, Neg. LLF: 100.38057158112127
Iteration: 4, Func. Count: 32, Neg. LLF: 100.95227232648516
Iteration: 5, Func. Count: 40, Neg. LLF: 105.44288026373785
Iteration: 6, Func. Count: 48, Neg. LLF: 99.41989444372287
Iteration: 7, Func. Count: 55, Neg. LLF: 99.40850623030204
Iteration: 8, Func. Count: 62, Neg. LLF: 99.39083958304343
Iteration: 9, Func. Count: 69, Neg. LLF: 99.3887388132317
Iteration: 10, Func. Count: 76, Neg. LLF: 99.38630539481319
Iteration: 11, Func. Count: 83, Neg. LLF: 99.38563561617651
Iteration: 12, Func. Count: 90, Neg. LLF: 99.38552075720301
Iteration: 13, Func. Count: 97, Neg. LLF: 99.38551729674735
Iteration: 14, Func. Count: 104, Neg. LLF: 99.38551677472188
Optimization terminated successfully (Exit mode 0)
Current function value: 99.38551677472188
Iterations: 14
Function evaluations: 104
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 103.22413918456617
Iteration: 2, Func. Count: 18, Neg. LLF: 292.90793860747806
Iteration: 3, Func. Count: 27, Neg. LLF: 99.46403361067873
Iteration: 4, Func. Count: 35, Neg. LLF: 103.29678018524997
Iteration: 5, Func. Count: 44, Neg. LLF: 99.14265792168025
Iteration: 6, Func. Count: 52, Neg. LLF: 99.01296770075422
Iteration: 7, Func. Count: 60, Neg. LLF: 98.984468155848
Iteration: 8, Func. Count: 68, Neg. LLF: 98.98921721103706
Iteration: 9, Func. Count: 77, Neg. LLF: 98.97899323526134
Iteration: 10, Func. Count: 85, Neg. LLF: 98.97869153157261
Iteration: 11, Func. Count: 93, Neg. LLF: 98.97865732618361
Iteration: 12, Func. Count: 101, Neg. LLF: 98.97861178742978
Iteration: 13, Func. Count: 108, Neg. LLF: 98.97861178747927
Optimization terminated successfully (Exit mode 0)
Current function value: 98.97861178742978
Iterations: 13
Function evaluations: 108
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 102.25862473493761
Iteration: 2, Func. Count: 20, Neg. LLF: 340.99911827977576
Iteration: 3, Func. Count: 31, Neg. LLF: 100.08584067680106
Iteration: 4, Func. Count: 41, Neg. LLF: 99.97781947123214
Iteration: 5, Func. Count: 51, Neg. LLF: 99.9132648760076
Iteration: 6, Func. Count: 61, Neg. LLF: 98.98393214399522
Iteration: 7, Func. Count: 70, Neg. LLF: 98.979273136784
Iteration: 8, Func. Count: 79, Neg. LLF: 98.97864320569323
Iteration: 9, Func. Count: 88, Neg. LLF: 98.97861916147637
Iteration: 10, Func. Count: 97, Neg. LLF: 98.978612577641
Iteration: 11, Func. Count: 106, Neg. LLF: 98.97861167735206
Optimization terminated successfully (Exit mode 0)
Current function value: 98.97861167735206
Iterations: 11
Function evaluations: 106
Gradient evaluations: 11
Iteration: 1, Func. Count: 7, Neg. LLF: 127.3306477878101
Iteration: 2, Func. Count: 15, Neg. LLF: 4028.835124432526
Iteration: 3, Func. Count: 22, Neg. LLF: 11591282.495110743
Iteration: 4, Func. Count: 29, Neg. LLF: 164.0509555752554
Iteration: 5, Func. Count: 36, Neg. LLF: 104.76947086093344
Iteration: 6, Func. Count: 43, Neg. LLF: 100.49928511561171
Iteration: 7, Func. Count: 50, Neg. LLF: 99.65030371241127
Iteration: 8, Func. Count: 56, Neg. LLF: 99.63893986645178
Iteration: 9, Func. Count: 62, Neg. LLF: 99.6120688675457
Iteration: 10, Func. Count: 68, Neg. LLF: 99.593140431652
Iteration: 11, Func. Count: 74, Neg. LLF: 99.58409383176546
Iteration: 12, Func. Count: 80, Neg. LLF: 99.58301719434566
Iteration: 13, Func. Count: 86, Neg. LLF: 99.58299367945294
Iteration: 14, Func. Count: 92, Neg. LLF: 99.58299111757336
Iteration: 15, Func. Count: 97, Neg. LLF: 99.582991184597
Optimization terminated successfully (Exit mode 0)
Current function value: 99.58299111757336
Iterations: 15
Function evaluations: 97
Gradient evaluations: 15
Iteration: 1, Func. Count: 8, Neg. LLF: 103.21192361637983
Iteration: 2, Func. Count: 16, Neg. LLF: 199.9067952749566
Iteration: 3, Func. Count: 24, Neg. LLF: 102.72970265323245
Iteration: 4, Func. Count: 32, Neg. LLF: 100.24930788720239
Iteration: 5, Func. Count: 39, Neg. LLF: 100.43042486036465
Iteration: 6, Func. Count: 47, Neg. LLF: 99.74579948458693
Iteration: 7, Func. Count: 54, Neg. LLF: 99.60063664373844
Iteration: 8, Func. Count: 61, Neg. LLF: 99.58837943733674
Iteration: 9, Func. Count: 68, Neg. LLF: 99.58395112551847
Iteration: 10, Func. Count: 75, Neg. LLF: 99.58350957922113
Iteration: 11, Func. Count: 82, Neg. LLF: 99.58301389545227
Iteration: 12, Func. Count: 89, Neg. LLF: 99.58299287197781
Iteration: 13, Func. Count: 96, Neg. LLF: 99.58299109021208
Iteration: 14, Func. Count: 102, Neg. LLF: 99.58299116168861
Optimization terminated successfully (Exit mode 0)
Current function value: 99.58299109021208
Iterations: 14
Function evaluations: 102
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 101.4591088462837
Iteration: 2, Func. Count: 18, Neg. LLF: 345.9503116340707
Iteration: 3, Func. Count: 27, Neg. LLF: 100.85100603936486
Iteration: 4, Func. Count: 36, Neg. LLF: 100.37448644410422
Iteration: 5, Func. Count: 45, Neg. LLF: 105.45665568653168
Iteration: 6, Func. Count: 54, Neg. LLF: 99.39279849486316
Iteration: 7, Func. Count: 62, Neg. LLF: 99.39097895306772
Iteration: 8, Func. Count: 71, Neg. LLF: 99.3865766706655
Iteration: 9, Func. Count: 79, Neg. LLF: 99.38609678547377
Iteration: 10, Func. Count: 87, Neg. LLF: 99.3857380072975
Iteration: 11, Func. Count: 95, Neg. LLF: 99.38554104861126
Iteration: 12, Func. Count: 103, Neg. LLF: 99.38551770855699
Iteration: 13, Func. Count: 111, Neg. LLF: 99.38551678493972
Optimization terminated successfully (Exit mode 0)
Current function value: 99.38551678493972
Iterations: 13
Function evaluations: 111
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 101.31757106018522
Iteration: 2, Func. Count: 20, Neg. LLF: 387.86530587489426
Iteration: 3, Func. Count: 30, Neg. LLF: 103.45763303616874
Iteration: 4, Func. Count: 40, Neg. LLF: 99.53046232099192
Iteration: 5, Func. Count: 49, Neg. LLF: 99.02830640837685
Iteration: 6, Func. Count: 58, Neg. LLF: 100.4570460134007
Iteration: 7, Func. Count: 68, Neg. LLF: 99.12019986051433
Iteration: 8, Func. Count: 78, Neg. LLF: 99.22514282349061
Iteration: 9, Func. Count: 88, Neg. LLF: 98.98300830657998
Iteration: 10, Func. Count: 97, Neg. LLF: 98.9798464759811
Iteration: 11, Func. Count: 106, Neg. LLF: 98.9792928467592
Iteration: 12, Func. Count: 115, Neg. LLF: 98.97891751937831
Iteration: 13, Func. Count: 124, Neg. LLF: 98.97861756782996
Iteration: 14, Func. Count: 133, Neg. LLF: 98.9786118455413
Iteration: 15, Func. Count: 141, Neg. LLF: 98.97861184561474
Optimization terminated successfully (Exit mode 0)
Current function value: 98.9786118455413
Iterations: 15
Function evaluations: 141
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 101.13966313037484
Iteration: 2, Func. Count: 22, Neg. LLF: 361.7093301937904
Iteration: 3, Func. Count: 33, Neg. LLF: 103.47268940204532
Iteration: 4, Func. Count: 44, Neg. LLF: 102.3219585932366
Iteration: 5, Func. Count: 55, Neg. LLF: 100.12855680749196
Iteration: 6, Func. Count: 66, Neg. LLF: 99.39224945201849
Iteration: 7, Func. Count: 77, Neg. LLF: 99.40809333216689
Iteration: 8, Func. Count: 88, Neg. LLF: 99.0855742370441
Iteration: 9, Func. Count: 99, Neg. LLF: 98.98879539755372
Iteration: 10, Func. Count: 109, Neg. LLF: 98.98573013832379
Iteration: 11, Func. Count: 119, Neg. LLF: 98.98111384830378
Iteration: 12, Func. Count: 129, Neg. LLF: 98.97930747432588
Iteration: 13, Func. Count: 139, Neg. LLF: 98.97882726389349
Iteration: 14, Func. Count: 149, Neg. LLF: 98.9787029192
Iteration: 15, Func. Count: 159, Neg. LLF: 98.97862009912116
Iteration: 16, Func. Count: 169, Neg. LLF: 98.97861215551984
Iteration: 17, Func. Count: 178, Neg. LLF: 98.97861219612491
Optimization terminated successfully (Exit mode 0)
Current function value: 98.97861215551984
Iterations: 17
Function evaluations: 178
Gradient evaluations: 17
Iteration: 1, Func. Count: 8, Neg. LLF: 136.31818686178136
Iteration: 2, Func. Count: 17, Neg. LLF: 992.0428290326613
Iteration: 3, Func. Count: 25, Neg. LLF: 11575934.190582227
Iteration: 4, Func. Count: 33, Neg. LLF: 576.932623608065
Iteration: 5, Func. Count: 41, Neg. LLF: 5036506.686041914
Iteration: 6, Func. Count: 49, Neg. LLF: 1265929.9312561238
Iteration: 7, Func. Count: 57, Neg. LLF: 99.74912504931756
Iteration: 8, Func. Count: 65, Neg. LLF: 99.65641078750075
Iteration: 9, Func. Count: 73, Neg. LLF: 99.37002703352732
Iteration: 10, Func. Count: 80, Neg. LLF: 99.31806235662553
Iteration: 11, Func. Count: 87, Neg. LLF: 99.27043507769481
Iteration: 12, Func. Count: 94, Neg. LLF: 99.25798737065928
Iteration: 13, Func. Count: 101, Neg. LLF: 99.25652575361009
Iteration: 14, Func. Count: 108, Neg. LLF: 99.25649652709076
Iteration: 15, Func. Count: 115, Neg. LLF: 99.25649418026437
Iteration: 16, Func. Count: 121, Neg. LLF: 99.25649418027555
Optimization terminated successfully (Exit mode 0)
Current function value: 99.25649418026437
Iterations: 16
Function evaluations: 121
Gradient evaluations: 16
Iteration: 1, Func. Count: 9, Neg. LLF: 105.81928999619272
Iteration: 2, Func. Count: 19, Neg. LLF: 764.9213523116118
Iteration: 3, Func. Count: 28, Neg. LLF: 141.69423474835804
Iteration: 4, Func. Count: 37, Neg. LLF: 103.02053661330538
Iteration: 5, Func. Count: 46, Neg. LLF: 100.57303014472289
Iteration: 6, Func. Count: 55, Neg. LLF: 101.21974843203203
Iteration: 7, Func. Count: 64, Neg. LLF: 99.52765103363184
Iteration: 8, Func. Count: 72, Neg. LLF: 100.04511493228614
Iteration: 9, Func. Count: 81, Neg. LLF: 99.34494090005899
Iteration: 10, Func. Count: 89, Neg. LLF: 99.31737045784159
Iteration: 11, Func. Count: 97, Neg. LLF: 99.27282023328588
Iteration: 12, Func. Count: 105, Neg. LLF: 99.25834253977963
Iteration: 13, Func. Count: 113, Neg. LLF: 99.25651874870427
Iteration: 14, Func. Count: 121, Neg. LLF: 99.25649441912286
Iteration: 15, Func. Count: 128, Neg. LLF: 99.25649447731669
Optimization terminated successfully (Exit mode 0)
Current function value: 99.25649441912286
Iterations: 15
Function evaluations: 128
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 103.3202382388294
Iteration: 2, Func. Count: 20, Neg. LLF: 284.1077020881835
Iteration: 3, Func. Count: 30, Neg. LLF: 103.74761205801379
Iteration: 4, Func. Count: 40, Neg. LLF: 104.1670916531766
Iteration: 5, Func. Count: 50, Neg. LLF: 99.50178212127135
Iteration: 6, Func. Count: 59, Neg. LLF: 99.29725980411824
Iteration: 7, Func. Count: 68, Neg. LLF: 99.26947751040042
Iteration: 8, Func. Count: 77, Neg. LLF: 99.25719612042201
Iteration: 9, Func. Count: 86, Neg. LLF: 99.25669978867799
Iteration: 10, Func. Count: 95, Neg. LLF: 99.25652605454577
Iteration: 11, Func. Count: 104, Neg. LLF: 99.25651671842061
Iteration: 12, Func. Count: 113, Neg. LLF: 99.25649601904169
Iteration: 13, Func. Count: 122, Neg. LLF: 99.25649416854651
Iteration: 14, Func. Count: 130, Neg. LLF: 99.25649419042344
Optimization terminated successfully (Exit mode 0)
Current function value: 99.25649416854651
Iterations: 14
Function evaluations: 130
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 103.40951850401862
Iteration: 2, Func. Count: 22, Neg. LLF: 298.176683561954
Iteration: 3, Func. Count: 33, Neg. LLF: 114.54181482697562
Iteration: 4, Func. Count: 44, Neg. LLF: 101.12312636167546
Iteration: 5, Func. Count: 55, Neg. LLF: 107.61656035311299
Iteration: 6, Func. Count: 66, Neg. LLF: 99.06208999651024
Iteration: 7, Func. Count: 76, Neg. LLF: 98.92889128506903
Iteration: 8, Func. Count: 86, Neg. LLF: 98.9104573688733
Iteration: 9, Func. Count: 96, Neg. LLF: 98.90757707091875
Iteration: 10, Func. Count: 106, Neg. LLF: 98.9075094054914
Iteration: 11, Func. Count: 116, Neg. LLF: 98.90737947888404
Iteration: 12, Func. Count: 126, Neg. LLF: 98.90733122365808
Iteration: 13, Func. Count: 136, Neg. LLF: 98.90730715985823
Iteration: 14, Func. Count: 146, Neg. LLF: 98.9073049899197
Iteration: 15, Func. Count: 155, Neg. LLF: 98.90730498991464
Optimization terminated successfully (Exit mode 0)
Current function value: 98.9073049899197
Iterations: 15
Function evaluations: 155
Gradient evaluations: 15
Iteration: 1, Func. Count: 12, Neg. LLF: 103.3834145751869
Iteration: 2, Func. Count: 24, Neg. LLF: 279.32096910392323
Iteration: 3, Func. Count: 36, Neg. LLF: 112.27076690061631
Iteration: 4, Func. Count: 48, Neg. LLF: 103.46193927414409
Iteration: 5, Func. Count: 60, Neg. LLF: 104.76299563491335
Iteration: 6, Func. Count: 72, Neg. LLF: 99.10528188181897
Iteration: 7, Func. Count: 83, Neg. LLF: 101.28893858341569
Iteration: 8, Func. Count: 95, Neg. LLF: 99.21035074933516
Iteration: 9, Func. Count: 107, Neg. LLF: 98.93348574502153
Iteration: 10, Func. Count: 119, Neg. LLF: 98.9088485223268
Iteration: 11, Func. Count: 130, Neg. LLF: 98.90766104787605
Iteration: 12, Func. Count: 141, Neg. LLF: 98.90749322707137
Iteration: 13, Func. Count: 152, Neg. LLF: 98.90733055525267
Iteration: 14, Func. Count: 163, Neg. LLF: 98.90730572065983
Iteration: 15, Func. Count: 174, Neg. LLF: 98.90730485634205
Optimization terminated successfully (Exit mode 0)
Current function value: 98.90730485634205
Iterations: 15
Function evaluations: 174
Gradient evaluations: 15
Iteration: 1, Func. Count: 5, Neg. LLF: 124.21635807934065
Iteration: 2, Func. Count: 11, Neg. LLF: 120.40795778244232
Iteration: 3, Func. Count: 16, Neg. LLF: 104.79969475225138
Iteration: 4, Func. Count: 20, Neg. LLF: 104.71836349158936
Iteration: 5, Func. Count: 24, Neg. LLF: 104.621073514196
Iteration: 6, Func. Count: 28, Neg. LLF: 104.60153146972779
Iteration: 7, Func. Count: 32, Neg. LLF: 104.59179457331616
Iteration: 8, Func. Count: 36, Neg. LLF: 104.59176003738551
Iteration: 9, Func. Count: 40, Neg. LLF: 104.59175905323603
Optimization terminated successfully (Exit mode 0)
Current function value: 104.59175905323603
Iterations: 9
Function evaluations: 40
Gradient evaluations: 9
Iteration: 1, Func. Count: 6, Neg. LLF: 174.0964948835482
Iteration: 2, Func. Count: 14, Neg. LLF: 103.55712939332844
Iteration: 3, Func. Count: 19, Neg. LLF: 103.69297962347227
Iteration: 4, Func. Count: 25, Neg. LLF: 107.30321155121658
Iteration: 5, Func. Count: 31, Neg. LLF: 103.25369390591943
Iteration: 6, Func. Count: 36, Neg. LLF: 103.25098315201771
Iteration: 7, Func. Count: 41, Neg. LLF: 103.25089452413059
Iteration: 8, Func. Count: 46, Neg. LLF: 103.25089319155177
Iteration: 9, Func. Count: 50, Neg. LLF: 103.25089324473359
Optimization terminated successfully (Exit mode 0)
Current function value: 103.25089319155177
Iterations: 9
Function evaluations: 50
Gradient evaluations: 9
Iteration: 1, Func. Count: 7, Neg. LLF: 172.1017335362473
Iteration: 2, Func. Count: 17, Neg. LLF: 103.64350589772846
Iteration: 3, Func. Count: 23, Neg. LLF: 103.2773227658068
Iteration: 4, Func. Count: 29, Neg. LLF: 103.75961078139412
Iteration: 5, Func. Count: 37, Neg. LLF: 103.27484513304474
Iteration: 6, Func. Count: 43, Neg. LLF: 103.27044259964636
Iteration: 7, Func. Count: 49, Neg. LLF: 103.26213607184368
Iteration: 8, Func. Count: 55, Neg. LLF: 103.2508932836424
Iteration: 9, Func. Count: 60, Neg. LLF: 103.25089323142588
Optimization terminated successfully (Exit mode 0)
Current function value: 103.2508932836424
Iterations: 9
Function evaluations: 60
Gradient evaluations: 9
Iteration: 1, Func. Count: 8, Neg. LLF: 173.70035485007753
Iteration: 2, Func. Count: 19, Neg. LLF: 103.57230146993662
Iteration: 3, Func. Count: 26, Neg. LLF: 103.36127552234919
Iteration: 4, Func. Count: 33, Neg. LLF: 111.69930553714015
Iteration: 5, Func. Count: 41, Neg. LLF: 103.29456855526062
Iteration: 6, Func. Count: 48, Neg. LLF: 103.29385414194647
Iteration: 7, Func. Count: 55, Neg. LLF: 103.28957983470183
Iteration: 8, Func. Count: 62, Neg. LLF: 103.26778526658049
Iteration: 9, Func. Count: 69, Neg. LLF: 103.26747247940784
Iteration: 10, Func. Count: 76, Neg. LLF: 103.26443584045771
Iteration: 11, Func. Count: 83, Neg. LLF: 103.25617847344711
Iteration: 12, Func. Count: 90, Neg. LLF: 103.25269113373417
Iteration: 13, Func. Count: 97, Neg. LLF: 103.250893658283
Iteration: 14, Func. Count: 103, Neg. LLF: 103.2508936055902
Optimization terminated successfully (Exit mode 0)
Current function value: 103.250893658283
Iterations: 14
Function evaluations: 103
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 132.56035660364356
Iteration: 2, Func. Count: 19, Neg. LLF: 103.51306104610214
Iteration: 3, Func. Count: 27, Neg. LLF: 103.44456376268025
Iteration: 4, Func. Count: 35, Neg. LLF: 107.85925446275213
Iteration: 5, Func. Count: 44, Neg. LLF: 103.32596509348724
Iteration: 6, Func. Count: 52, Neg. LLF: 103.32000094931799
Iteration: 7, Func. Count: 60, Neg. LLF: 103.29016373596515
Iteration: 8, Func. Count: 68, Neg. LLF: 103.28017120961897
Iteration: 9, Func. Count: 76, Neg. LLF: 103.2788330949999
Iteration: 10, Func. Count: 84, Neg. LLF: 103.27507905754422
Iteration: 11, Func. Count: 92, Neg. LLF: 103.26570352316769
Iteration: 12, Func. Count: 100, Neg. LLF: 103.26450518824905
Iteration: 13, Func. Count: 108, Neg. LLF: 103.34959989847664
Iteration: 14, Func. Count: 123, Neg. LLF: 103.26382995246006
Iteration: 15, Func. Count: 131, Neg. LLF: 103.26340294394352
Iteration: 16, Func. Count: 140, Neg. LLF: 103.26191980810032
Iteration: 17, Func. Count: 148, Neg. LLF: 103.25621869069892
Iteration: 18, Func. Count: 156, Neg. LLF: 143.29040330292293
Iteration: 19, Func. Count: 167, Neg. LLF: 103.97300604564401
Iteration: 20, Func. Count: 176, Neg. LLF: 103.25089334817059
Iteration: 21, Func. Count: 183, Neg. LLF: 103.25089329965591
Optimization terminated successfully (Exit mode 0)
Current function value: 103.25089334817059
Iterations: 22
Function evaluations: 183
Gradient evaluations: 21
Iteration: 1, Func. Count: 6, Neg. LLF: 123.00625367135201
Iteration: 2, Func. Count: 13, Neg. LLF: 120.45893272666609
Iteration: 3, Func. Count: 19, Neg. LLF: 104.81657442519628
Iteration: 4, Func. Count: 24, Neg. LLF: 104.65757052114937
Iteration: 5, Func. Count: 29, Neg. LLF: 104.60066731019995
Iteration: 6, Func. Count: 34, Neg. LLF: 104.59330484879347
Iteration: 7, Func. Count: 39, Neg. LLF: 104.59203874220505
Iteration: 8, Func. Count: 44, Neg. LLF: 104.59175914041175
Iteration: 9, Func. Count: 48, Neg. LLF: 104.59175916314886
Optimization terminated successfully (Exit mode 0)
Current function value: 104.59175914041175
Iterations: 9
Function evaluations: 48
Gradient evaluations: 9
Iteration: 1, Func. Count: 7, Neg. LLF: 115.74092900831427
Iteration: 2, Func. Count: 14, Neg. LLF: 131.63836647514205
Iteration: 3, Func. Count: 21, Neg. LLF: 101.65370974922625
Iteration: 4, Func. Count: 27, Neg. LLF: 103.19328550688789
Iteration: 5, Func. Count: 34, Neg. LLF: 108.10663303390908
Iteration: 6, Func. Count: 42, Neg. LLF: 101.54558985485505
Iteration: 7, Func. Count: 48, Neg. LLF: 101.53352735695508
Iteration: 8, Func. Count: 54, Neg. LLF: 101.53261702139764
Iteration: 9, Func. Count: 60, Neg. LLF: 101.53243625716831
Iteration: 10, Func. Count: 66, Neg. LLF: 101.53243229542242
Iteration: 11, Func. Count: 71, Neg. LLF: 101.5324322832952
Optimization terminated successfully (Exit mode 0)
Current function value: 101.53243229542242
Iterations: 11
Function evaluations: 71
Gradient evaluations: 11
Iteration: 1, Func. Count: 8, Neg. LLF: 174.67350657845077
Iteration: 2, Func. Count: 19, Neg. LLF: 103.84872060106066
Iteration: 3, Func. Count: 27, Neg. LLF: 103.47471120940858
Iteration: 4, Func. Count: 34, Neg. LLF: 206.37488917087725
Iteration: 5, Func. Count: 43, Neg. LLF: 103.27334877041207
Iteration: 6, Func. Count: 50, Neg. LLF: 103.26871661087023
Iteration: 7, Func. Count: 57, Neg. LLF: 103.26812424750992
Iteration: 8, Func. Count: 64, Neg. LLF: 103.26727699246551
Iteration: 9, Func. Count: 71, Neg. LLF: 103.26335229524092
Iteration: 10, Func. Count: 78, Neg. LLF: 103.25595769765226
Iteration: 11, Func. Count: 85, Neg. LLF: 103.25353288815896
Iteration: 12, Func. Count: 92, Neg. LLF: 103.2512146919899
Iteration: 13, Func. Count: 99, Neg. LLF: 103.2509019015919
Iteration: 14, Func. Count: 106, Neg. LLF: 103.25089344309708
Iteration: 15, Func. Count: 112, Neg. LLF: 103.25089339048684
Optimization terminated successfully (Exit mode 0)
Current function value: 103.25089344309708
Iterations: 15
Function evaluations: 112
Gradient evaluations: 15
Iteration: 1, Func. Count: 9, Neg. LLF: 177.06072990637432
Iteration: 2, Func. Count: 21, Neg. LLF: 103.73444111659973
Iteration: 3, Func. Count: 29, Neg. LLF: 103.41476700479386
Iteration: 4, Func. Count: 37, Neg. LLF: 113.22931458899203
Iteration: 5, Func. Count: 46, Neg. LLF: 103.29651187768737
Iteration: 6, Func. Count: 54, Neg. LLF: 103.29573984950595
Iteration: 7, Func. Count: 62, Neg. LLF: 103.2918671445273
Iteration: 8, Func. Count: 70, Neg. LLF: 103.26719339965607
Iteration: 9, Func. Count: 78, Neg. LLF: 103.2669252858727
Iteration: 10, Func. Count: 86, Neg. LLF: 103.26547060405797
Iteration: 11, Func. Count: 94, Neg. LLF: 103.255701819893
Iteration: 12, Func. Count: 102, Neg. LLF: 103.25319715211928
Iteration: 13, Func. Count: 110, Neg. LLF: 103.25091038672
Iteration: 14, Func. Count: 118, Neg. LLF: 103.25089316246148
Iteration: 15, Func. Count: 125, Neg. LLF: 103.25089311137548
Optimization terminated successfully (Exit mode 0)
Current function value: 103.25089316246148
Iterations: 15
Function evaluations: 125
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 134.64107321454696
Iteration: 2, Func. Count: 21, Neg. LLF: 103.55505271263394
Iteration: 3, Func. Count: 30, Neg. LLF: 103.55929532570863
Iteration: 4, Func. Count: 40, Neg. LLF: 108.31974414641103
Iteration: 5, Func. Count: 50, Neg. LLF: 103.31802312502882
Iteration: 6, Func. Count: 59, Neg. LLF: 103.31327158397355
Iteration: 7, Func. Count: 68, Neg. LLF: 103.28840998071146
Iteration: 8, Func. Count: 77, Neg. LLF: 103.2791714854371
Iteration: 9, Func. Count: 86, Neg. LLF: 103.27781234491073
Iteration: 10, Func. Count: 95, Neg. LLF: 103.27392236687989
Iteration: 11, Func. Count: 104, Neg. LLF: 103.26889642050739
Iteration: 12, Func. Count: 113, Neg. LLF: 103.26650770346897
Iteration: 13, Func. Count: 122, Neg. LLF: 103.3059026843185
Optimization terminated successfully (Exit mode 0)
Current function value: 103.26650760086257
Iterations: 13
Function evaluations: 129
Gradient evaluations: 13
Iteration: 1, Func. Count: 7, Neg. LLF: 113.89797295416919
Iteration: 2, Func. Count: 15, Neg. LLF: 198255784.99093533
Iteration: 3, Func. Count: 22, Neg. LLF: 9505804.496382652
Iteration: 4, Func. Count: 29, Neg. LLF: 110.59694296028309
Iteration: 5, Func. Count: 36, Neg. LLF: 100.81807270509823
Iteration: 6, Func. Count: 43, Neg. LLF: 99.76669559923207
Iteration: 7, Func. Count: 50, Neg. LLF: 99.67470646365686
Iteration: 8, Func. Count: 56, Neg. LLF: 101.18455131409894
Iteration: 9, Func. Count: 63, Neg. LLF: 99.59594901324097
Iteration: 10, Func. Count: 69, Neg. LLF: 99.5667494420563
Iteration: 11, Func. Count: 75, Neg. LLF: 99.55519079523516
Iteration: 12, Func. Count: 81, Neg. LLF: 99.55383463937346
Iteration: 13, Func. Count: 87, Neg. LLF: 99.5538092229262
Iteration: 14, Func. Count: 93, Neg. LLF: 99.5538087257606
Optimization terminated successfully (Exit mode 0)
Current function value: 99.5538087257606
Iterations: 14
Function evaluations: 93
Gradient evaluations: 14
Iteration: 1, Func. Count: 8, Neg. LLF: 107.644113424556
Iteration: 2, Func. Count: 16, Neg. LLF: 152.80626267578307
Iteration: 3, Func. Count: 24, Neg. LLF: 104.04975733586532
Iteration: 4, Func. Count: 33, Neg. LLF: 100.93570991170212
Iteration: 5, Func. Count: 41, Neg. LLF: 100.24046082136923
Iteration: 6, Func. Count: 49, Neg. LLF: 100.25865976294553
Iteration: 7, Func. Count: 57, Neg. LLF: 99.67108884971992
Iteration: 8, Func. Count: 64, Neg. LLF: 99.60937450839039
Iteration: 9, Func. Count: 71, Neg. LLF: 99.86942950195467
Iteration: 10, Func. Count: 79, Neg. LLF: 99.56136357116586
Iteration: 11, Func. Count: 86, Neg. LLF: 99.55478017180364
Iteration: 12, Func. Count: 93, Neg. LLF: 99.55402734161125
Iteration: 13, Func. Count: 100, Neg. LLF: 99.553823194027
Iteration: 14, Func. Count: 107, Neg. LLF: 99.55380969074041
Iteration: 15, Func. Count: 114, Neg. LLF: 99.55380873997669
Optimization terminated successfully (Exit mode 0)
Current function value: 99.55380873997669
Iterations: 15
Function evaluations: 114
Gradient evaluations: 15
Iteration: 1, Func. Count: 9, Neg. LLF: 103.11367183421802
Iteration: 2, Func. Count: 18, Neg. LLF: 267.2454851672563
Iteration: 3, Func. Count: 28, Neg. LLF: 101.45387956813519
Iteration: 4, Func. Count: 38, Neg. LLF: 101.82611952084713
Iteration: 5, Func. Count: 47, Neg. LLF: 99.75874431085154
Iteration: 6, Func. Count: 56, Neg. LLF: 99.48226531199562
Iteration: 7, Func. Count: 64, Neg. LLF: 100.39967152372627
Iteration: 8, Func. Count: 73, Neg. LLF: 99.39974685478802
Iteration: 9, Func. Count: 81, Neg. LLF: 99.33949297284866
Iteration: 10, Func. Count: 89, Neg. LLF: 99.3335440285552
Iteration: 11, Func. Count: 97, Neg. LLF: 99.33130329550912
Iteration: 12, Func. Count: 105, Neg. LLF: 99.33060667916351
Iteration: 13, Func. Count: 113, Neg. LLF: 99.33045592498114
Iteration: 14, Func. Count: 121, Neg. LLF: 99.3304522866119
Iteration: 15, Func. Count: 129, Neg. LLF: 99.330451533275
Optimization terminated successfully (Exit mode 0)
Current function value: 99.330451533275
Iterations: 15
Function evaluations: 129
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 102.54223913894602
Iteration: 2, Func. Count: 20, Neg. LLF: 366.30325285607677
Iteration: 3, Func. Count: 31, Neg. LLF: 99.92444107555232
Iteration: 4, Func. Count: 41, Neg. LLF: 99.59597172117186
Iteration: 5, Func. Count: 51, Neg. LLF: 109.34743845798809
Iteration: 6, Func. Count: 62, Neg. LLF: 99.22720783417653
Iteration: 7, Func. Count: 72, Neg. LLF: 98.9608237728499
Iteration: 8, Func. Count: 81, Neg. LLF: 98.95693500764779
Iteration: 9, Func. Count: 91, Neg. LLF: 98.94749900238233
Iteration: 10, Func. Count: 100, Neg. LLF: 98.94714038446035
Iteration: 11, Func. Count: 109, Neg. LLF: 98.94712829527197
Iteration: 12, Func. Count: 118, Neg. LLF: 98.94712163012635
Iteration: 13, Func. Count: 126, Neg. LLF: 98.9471216301276
Optimization terminated successfully (Exit mode 0)
Current function value: 98.94712163012635
Iterations: 13
Function evaluations: 126
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 101.90442966780321
Iteration: 2, Func. Count: 22, Neg. LLF: 315.0840147025545
Iteration: 3, Func. Count: 34, Neg. LLF: 99.81555358488497
Iteration: 4, Func. Count: 45, Neg. LLF: 100.53321240211032
Iteration: 5, Func. Count: 56, Neg. LLF: 115.25948824894286
Iteration: 6, Func. Count: 68, Neg. LLF: 100.32072825749746
Iteration: 7, Func. Count: 79, Neg. LLF: 98.97107778780997
Iteration: 8, Func. Count: 89, Neg. LLF: 98.97220242608127
Iteration: 9, Func. Count: 100, Neg. LLF: 98.95593929012065
Iteration: 10, Func. Count: 111, Neg. LLF: 98.94724495069457
Iteration: 11, Func. Count: 121, Neg. LLF: 98.94713550005063
Iteration: 12, Func. Count: 131, Neg. LLF: 98.94712160431138
Iteration: 13, Func. Count: 140, Neg. LLF: 98.94712165167424
Optimization terminated successfully (Exit mode 0)
Current function value: 98.94712160431138
Iterations: 13
Function evaluations: 140
Gradient evaluations: 13
Iteration: 1, Func. Count: 8, Neg. LLF: 115.43955096342265
Iteration: 2, Func. Count: 17, Neg. LLF: 240323827.32216197
Iteration: 3, Func. Count: 25, Neg. LLF: 9478346.992803881
Iteration: 4, Func. Count: 33, Neg. LLF: 130.32229924786864
Iteration: 5, Func. Count: 41, Neg. LLF: 101.50911785793144
Iteration: 6, Func. Count: 49, Neg. LLF: 100.36244652451231
Iteration: 7, Func. Count: 57, Neg. LLF: 99.70991971678296
Iteration: 8, Func. Count: 64, Neg. LLF: 101.96932205524298
Iteration: 9, Func. Count: 73, Neg. LLF: 99.6583522849751
Iteration: 10, Func. Count: 80, Neg. LLF: 99.61738046112274
Iteration: 11, Func. Count: 87, Neg. LLF: 99.56416588300324
Iteration: 12, Func. Count: 94, Neg. LLF: 99.55463649939739
Iteration: 13, Func. Count: 101, Neg. LLF: 99.553818498439
Iteration: 14, Func. Count: 108, Neg. LLF: 99.55380905026928
Iteration: 15, Func. Count: 114, Neg. LLF: 99.55380912807976
Optimization terminated successfully (Exit mode 0)
Current function value: 99.55380905026928
Iterations: 15
Function evaluations: 114
Gradient evaluations: 15
Iteration: 1, Func. Count: 9, Neg. LLF: 104.77838051561997
Iteration: 2, Func. Count: 18, Neg. LLF: 197.06054418019474
Iteration: 3, Func. Count: 27, Neg. LLF: 102.78135700025787
Iteration: 4, Func. Count: 36, Neg. LLF: 100.62079162866888
Iteration: 5, Func. Count: 46, Neg. LLF: 99.83317500275314
Iteration: 6, Func. Count: 54, Neg. LLF: 100.04556862065097
Iteration: 7, Func. Count: 63, Neg. LLF: 99.61193804945225
Iteration: 8, Func. Count: 71, Neg. LLF: 99.89350634048344
Iteration: 9, Func. Count: 80, Neg. LLF: 99.56840068521169
Iteration: 10, Func. Count: 88, Neg. LLF: 99.55934223181829
Iteration: 11, Func. Count: 96, Neg. LLF: 99.55527386252649
Iteration: 12, Func. Count: 104, Neg. LLF: 99.55410440858402
Iteration: 13, Func. Count: 112, Neg. LLF: 99.55381401971643
Iteration: 14, Func. Count: 120, Neg. LLF: 99.55380914895544
Iteration: 15, Func. Count: 127, Neg. LLF: 99.55380922931708
Optimization terminated successfully (Exit mode 0)
Current function value: 99.55380914895544
Iterations: 15
Function evaluations: 127
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 101.15067621619576
Iteration: 2, Func. Count: 20, Neg. LLF: 379.10334752720746
Iteration: 3, Func. Count: 30, Neg. LLF: 100.53743645368857
Iteration: 4, Func. Count: 40, Neg. LLF: 100.73469930791961
Iteration: 5, Func. Count: 50, Neg. LLF: 103.21255135066897
Iteration: 6, Func. Count: 60, Neg. LLF: 107.1220068226497
Iteration: 7, Func. Count: 71, Neg. LLF: 99.33775797956956
Iteration: 8, Func. Count: 80, Neg. LLF: 99.33314622111135
Iteration: 9, Func. Count: 89, Neg. LLF: 99.33371272279562
Iteration: 10, Func. Count: 99, Neg. LLF: 99.33178663066798
Iteration: 11, Func. Count: 108, Neg. LLF: 99.33070300213053
Iteration: 12, Func. Count: 117, Neg. LLF: 99.33047414430288
Iteration: 13, Func. Count: 126, Neg. LLF: 99.33045317551175
Iteration: 14, Func. Count: 135, Neg. LLF: 99.33045146461448
Iteration: 15, Func. Count: 143, Neg. LLF: 99.3304514646136
Optimization terminated successfully (Exit mode 0)
Current function value: 99.33045146461448
Iterations: 15
Function evaluations: 143
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 101.10596823620428
Iteration: 2, Func. Count: 22, Neg. LLF: 420.5571593351588
Iteration: 3, Func. Count: 33, Neg. LLF: 103.99689670463523
Iteration: 4, Func. Count: 44, Neg. LLF: 99.87490003903297
Iteration: 5, Func. Count: 55, Neg. LLF: 101.09916837045783
Iteration: 6, Func. Count: 67, Neg. LLF: 99.0040532864939
Iteration: 7, Func. Count: 77, Neg. LLF: 99.03431405836129
Iteration: 8, Func. Count: 88, Neg. LLF: 99.9461422522179
Iteration: 9, Func. Count: 99, Neg. LLF: 98.95599745187432
Iteration: 10, Func. Count: 109, Neg. LLF: 98.95290329305942
Iteration: 11, Func. Count: 119, Neg. LLF: 98.94824945204685
Iteration: 12, Func. Count: 129, Neg. LLF: 98.94764958391336
Iteration: 13, Func. Count: 139, Neg. LLF: 98.9473987930256
Iteration: 14, Func. Count: 149, Neg. LLF: 98.94713897883548
Iteration: 15, Func. Count: 159, Neg. LLF: 98.94712255946652
Iteration: 16, Func. Count: 169, Neg. LLF: 98.94712208039559
Optimization terminated successfully (Exit mode 0)
Current function value: 98.94712208039559
Iterations: 16
Function evaluations: 169
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 101.04944179613781
Iteration: 2, Func. Count: 24, Neg. LLF: 379.59628198844854
Iteration: 3, Func. Count: 36, Neg. LLF: 104.16358823239271
Iteration: 4, Func. Count: 48, Neg. LLF: 104.33111040529766
Iteration: 5, Func. Count: 60, Neg. LLF: 132.84193795408532
Iteration: 6, Func. Count: 72, Neg. LLF: 99.3940444968873
Iteration: 7, Func. Count: 83, Neg. LLF: 99.10688595908529
Iteration: 8, Func. Count: 94, Neg. LLF: 100.39898837560341
Iteration: 9, Func. Count: 107, Neg. LLF: 99.24328989933693
Iteration: 10, Func. Count: 119, Neg. LLF: 99.19115750028809
Iteration: 11, Func. Count: 131, Neg. LLF: 98.96849845329585
Iteration: 12, Func. Count: 142, Neg. LLF: 98.95794044347473
Iteration: 13, Func. Count: 153, Neg. LLF: 98.94953725723417
Iteration: 14, Func. Count: 164, Neg. LLF: 98.9474748473947
Iteration: 15, Func. Count: 175, Neg. LLF: 98.9472011698426
Iteration: 16, Func. Count: 186, Neg. LLF: 98.94713847189959
Iteration: 17, Func. Count: 197, Neg. LLF: 98.94712899389333
Iteration: 18, Func. Count: 208, Neg. LLF: 98.94712229636522
Iteration: 19, Func. Count: 219, Neg. LLF: 98.94712146598802
Optimization terminated successfully (Exit mode 0)
Current function value: 98.94712146598802
Iterations: 19
Function evaluations: 219
Gradient evaluations: 19
Iteration: 1, Func. Count: 9, Neg. LLF: 126.19169013800523
Iteration: 2, Func. Count: 19, Neg. LLF: 373563087.37290776
Iteration: 3, Func. Count: 28, Neg. LLF: 10676383.629209395
Iteration: 4, Func. Count: 37, Neg. LLF: 1246714.1873546094
Iteration: 5, Func. Count: 46, Neg. LLF: 3989770.894307307
Iteration: 6, Func. Count: 55, Neg. LLF: 103.23682303155779
Iteration: 7, Func. Count: 64, Neg. LLF: 100.45345059002722
Iteration: 8, Func. Count: 73, Neg. LLF: 99.4556501307248
Iteration: 9, Func. Count: 81, Neg. LLF: 100.41971374620215
Iteration: 10, Func. Count: 90, Neg. LLF: 100.25563521319177
Iteration: 11, Func. Count: 99, Neg. LLF: 99.3295322883797
Iteration: 12, Func. Count: 107, Neg. LLF: 99.2602181049492
Iteration: 13, Func. Count: 115, Neg. LLF: 99.21805337225045
Iteration: 14, Func. Count: 123, Neg. LLF: 99.18905346352892
Iteration: 15, Func. Count: 131, Neg. LLF: 99.18545316686439
Iteration: 16, Func. Count: 139, Neg. LLF: 99.1853797964515
Iteration: 17, Func. Count: 147, Neg. LLF: 99.18536129528722
Iteration: 18, Func. Count: 155, Neg. LLF: 99.18535481541576
Iteration: 19, Func. Count: 162, Neg. LLF: 99.1853548153856
Optimization terminated successfully (Exit mode 0)
Current function value: 99.18535481541576
Iterations: 19
Function evaluations: 162
Gradient evaluations: 19
Iteration: 1, Func. Count: 10, Neg. LLF: 107.01173219218646
Iteration: 2, Func. Count: 21, Neg. LLF: 827.3743162707025
Iteration: 3, Func. Count: 31, Neg. LLF: 119.21478253983598
Iteration: 4, Func. Count: 41, Neg. LLF: 103.68822073445291
Iteration: 5, Func. Count: 51, Neg. LLF: 99.96367496069325
Iteration: 6, Func. Count: 60, Neg. LLF: 101.73801657642215
Iteration: 7, Func. Count: 71, Neg. LLF: 100.00773485197172
Iteration: 8, Func. Count: 81, Neg. LLF: 101.99897498431265
Iteration: 9, Func. Count: 91, Neg. LLF: 99.35451287271313
Iteration: 10, Func. Count: 100, Neg. LLF: 99.27938588607998
Iteration: 11, Func. Count: 109, Neg. LLF: 99.23679197286616
Iteration: 12, Func. Count: 118, Neg. LLF: 99.1999094569179
Iteration: 13, Func. Count: 127, Neg. LLF: 99.18850847438215
Iteration: 14, Func. Count: 136, Neg. LLF: 99.18586340592361
Iteration: 15, Func. Count: 145, Neg. LLF: 99.18539898010162
Iteration: 16, Func. Count: 154, Neg. LLF: 99.18535682026892
Iteration: 17, Func. Count: 163, Neg. LLF: 99.18535441497127
Iteration: 18, Func. Count: 171, Neg. LLF: 99.18535449781218
Optimization terminated successfully (Exit mode 0)
Current function value: 99.18535441497127
Iterations: 18
Function evaluations: 171
Gradient evaluations: 18
Iteration: 1, Func. Count: 11, Neg. LLF: 102.72046667721133
Iteration: 2, Func. Count: 22, Neg. LLF: 304.1132626712675
Iteration: 3, Func. Count: 33, Neg. LLF: 103.54843078791946
Iteration: 4, Func. Count: 44, Neg. LLF: 104.3436655654211
Iteration: 5, Func. Count: 55, Neg. LLF: 100.96008488595182
Iteration: 6, Func. Count: 67, Neg. LLF: 99.43932812558828
Iteration: 7, Func. Count: 77, Neg. LLF: 99.73259763655805
Iteration: 8, Func. Count: 88, Neg. LLF: 99.74020005428589
Iteration: 9, Func. Count: 99, Neg. LLF: 99.19372284456797
Iteration: 10, Func. Count: 109, Neg. LLF: 99.18734006648985
Iteration: 11, Func. Count: 119, Neg. LLF: 99.18588095172056
Iteration: 12, Func. Count: 129, Neg. LLF: 99.1856441691081
Iteration: 13, Func. Count: 139, Neg. LLF: 99.18551639163469
Iteration: 14, Func. Count: 149, Neg. LLF: 99.18537332406544
Iteration: 15, Func. Count: 159, Neg. LLF: 99.1853557014865
Iteration: 16, Func. Count: 169, Neg. LLF: 99.18535440561355
Iteration: 17, Func. Count: 178, Neg. LLF: 99.18535443352427
Optimization terminated successfully (Exit mode 0)
Current function value: 99.18535440561355
Iterations: 17
Function evaluations: 178
Gradient evaluations: 17
Iteration: 1, Func. Count: 12, Neg. LLF: 102.97024754931331
Iteration: 2, Func. Count: 24, Neg. LLF: 314.85004562274804
Iteration: 3, Func. Count: 36, Neg. LLF: 116.16731889200544
Iteration: 4, Func. Count: 48, Neg. LLF: 103.15947256402498
Iteration: 5, Func. Count: 60, Neg. LLF: 107.39517457610033
Iteration: 6, Func. Count: 72, Neg. LLF: 99.11219298358928
Iteration: 7, Func. Count: 83, Neg. LLF: 99.47802174139886
Iteration: 8, Func. Count: 95, Neg. LLF: 99.57719560380009
Iteration: 9, Func. Count: 107, Neg. LLF: 99.15577002585182
Iteration: 10, Func. Count: 119, Neg. LLF: 99.39083506825966
Iteration: 11, Func. Count: 131, Neg. LLF: 98.87306100623303
Iteration: 12, Func. Count: 142, Neg. LLF: 98.87028057040001
Iteration: 13, Func. Count: 153, Neg. LLF: 98.86965462135936
Iteration: 14, Func. Count: 164, Neg. LLF: 98.8695442635419
Iteration: 15, Func. Count: 175, Neg. LLF: 98.86945739125835
Iteration: 16, Func. Count: 186, Neg. LLF: 98.86944146186526
Iteration: 17, Func. Count: 197, Neg. LLF: 98.86943914030553
Iteration: 18, Func. Count: 207, Neg. LLF: 98.86943914034029
Optimization terminated successfully (Exit mode 0)
Current function value: 98.86943914030553
Iterations: 18
Function evaluations: 207
Gradient evaluations: 18
Iteration: 1, Func. Count: 13, Neg. LLF: 103.13539544283148
Iteration: 2, Func. Count: 26, Neg. LLF: 289.42822695444426
Iteration: 3, Func. Count: 39, Neg. LLF: 113.8838149202038
Iteration: 4, Func. Count: 52, Neg. LLF: 101.34182191352828
Iteration: 5, Func. Count: 65, Neg. LLF: 100.14146079103145
Iteration: 6, Func. Count: 78, Neg. LLF: 113.44160916229899
Iteration: 7, Func. Count: 92, Neg. LLF: 98.98512557541706
Iteration: 8, Func. Count: 104, Neg. LLF: 99.26643714510946
Iteration: 9, Func. Count: 117, Neg. LLF: 99.10074916694506
Iteration: 10, Func. Count: 130, Neg. LLF: 98.87846943679831
Iteration: 11, Func. Count: 142, Neg. LLF: 98.87160900273483
Iteration: 12, Func. Count: 154, Neg. LLF: 98.87048474661734
Iteration: 13, Func. Count: 166, Neg. LLF: 98.86976806011094
Iteration: 14, Func. Count: 178, Neg. LLF: 98.86947037329722
Iteration: 15, Func. Count: 190, Neg. LLF: 98.86944129438932
Iteration: 16, Func. Count: 202, Neg. LLF: 98.86943906845323
Iteration: 17, Func. Count: 213, Neg. LLF: 98.8694391181105
Optimization terminated successfully (Exit mode 0)
Current function value: 98.86943906845323
Iterations: 17
Function evaluations: 213
Gradient evaluations: 17
Iteration: 1, Func. Count: 6, Neg. LLF: 131.13273645344856
Iteration: 2, Func. Count: 13, Neg. LLF: 160.07948094003254
Iteration: 3, Func. Count: 19, Neg. LLF: 769.4410612169281
Iteration: 4, Func. Count: 25, Neg. LLF: 102.05044292149567
Iteration: 5, Func. Count: 30, Neg. LLF: 101.60007248229023
Iteration: 6, Func. Count: 35, Neg. LLF: 101.52370205819933
Iteration: 7, Func. Count: 40, Neg. LLF: 101.51184467517032
Iteration: 8, Func. Count: 45, Neg. LLF: 101.50940929312051
Iteration: 9, Func. Count: 50, Neg. LLF: 101.50890623344418
Iteration: 10, Func. Count: 55, Neg. LLF: 101.5084208165821
Iteration: 11, Func. Count: 60, Neg. LLF: 101.50841476469779
Iteration: 12, Func. Count: 64, Neg. LLF: 101.50841476469695
Optimization terminated successfully (Exit mode 0)
Current function value: 101.50841476469779
Iterations: 12
Function evaluations: 64
Gradient evaluations: 12
Iteration: 1, Func. Count: 7, Neg. LLF: 109.99860997644828
Iteration: 2, Func. Count: 14, Neg. LLF: 122.73186062421115
Iteration: 3, Func. Count: 21, Neg. LLF: 110.36493526807797
Iteration: 4, Func. Count: 28, Neg. LLF: 101.51775942297373
Iteration: 5, Func. Count: 34, Neg. LLF: 101.48183996852195
Iteration: 6, Func. Count: 41, Neg. LLF: 101.32462886897045
Iteration: 7, Func. Count: 48, Neg. LLF: 101.3109920520679
Iteration: 8, Func. Count: 54, Neg. LLF: 101.31058365979763
Iteration: 9, Func. Count: 60, Neg. LLF: 101.31051524039852
Iteration: 10, Func. Count: 66, Neg. LLF: 101.31051126455199
Iteration: 11, Func. Count: 71, Neg. LLF: 101.31051126453221
Optimization terminated successfully (Exit mode 0)
Current function value: 101.31051126455199
Iterations: 11
Function evaluations: 71
Gradient evaluations: 11
Iteration: 1, Func. Count: 8, Neg. LLF: 110.58318089630671
Iteration: 2, Func. Count: 16, Neg. LLF: 122.28435687368932
Iteration: 3, Func. Count: 24, Neg. LLF: 111.85793659429915
Iteration: 4, Func. Count: 32, Neg. LLF: 101.51522055411705
Iteration: 5, Func. Count: 39, Neg. LLF: 104.87912930697989
Iteration: 6, Func. Count: 47, Neg. LLF: 101.3863233601021
Iteration: 7, Func. Count: 55, Neg. LLF: 101.31677589447519
Iteration: 8, Func. Count: 62, Neg. LLF: 101.3111573101398
Iteration: 9, Func. Count: 69, Neg. LLF: 101.31055414829372
Iteration: 10, Func. Count: 76, Neg. LLF: 101.31051127259082
Iteration: 11, Func. Count: 82, Neg. LLF: 101.31051132598067
Optimization terminated successfully (Exit mode 0)
Current function value: 101.31051127259082
Iterations: 11
Function evaluations: 82
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 114.14093049323682
Iteration: 2, Func. Count: 18, Neg. LLF: 120.88176829127003
Iteration: 3, Func. Count: 27, Neg. LLF: 115.99749396613602
Iteration: 4, Func. Count: 36, Neg. LLF: 101.48147125008697
Iteration: 5, Func. Count: 44, Neg. LLF: 101.52195050927186
Iteration: 6, Func. Count: 53, Neg. LLF: 101.40513474123289
Iteration: 7, Func. Count: 62, Neg. LLF: 101.31308434438102
Iteration: 8, Func. Count: 70, Neg. LLF: 101.31056663751201
Iteration: 9, Func. Count: 78, Neg. LLF: 101.3105119759891
Iteration: 10, Func. Count: 86, Neg. LLF: 101.3105112060896
Optimization terminated successfully (Exit mode 0)
Current function value: 101.3105112060896
Iterations: 10
Function evaluations: 86
Gradient evaluations: 10
Iteration: 1, Func. Count: 10, Neg. LLF: 116.8689749662132
Iteration: 2, Func. Count: 20, Neg. LLF: 119.91246543641732
Iteration: 3, Func. Count: 30, Neg. LLF: 117.5548430958296
Iteration: 4, Func. Count: 40, Neg. LLF: 103.86394722842826
Iteration: 5, Func. Count: 50, Neg. LLF: 101.72661071922299
Iteration: 6, Func. Count: 59, Neg. LLF: 101.35589774032061
Iteration: 7, Func. Count: 68, Neg. LLF: 101.3299884892604
Iteration: 8, Func. Count: 77, Neg. LLF: 101.31254127919287
Iteration: 9, Func. Count: 86, Neg. LLF: 101.31077623006067
Iteration: 10, Func. Count: 95, Neg. LLF: 101.31053759765835
Iteration: 11, Func. Count: 104, Neg. LLF: 101.3105122681256
Iteration: 12, Func. Count: 113, Neg. LLF: 101.31051123387505
Iteration: 13, Func. Count: 121, Neg. LLF: 101.31051123913417
Optimization terminated successfully (Exit mode 0)
Current function value: 101.31051123387505
Iterations: 13
Function evaluations: 121
Gradient evaluations: 13
Iteration: 1, Func. Count: 7, Neg. LLF: 124.54638128604887
Iteration: 2, Func. Count: 15, Neg. LLF: 164.20001261454175
Iteration: 3, Func. Count: 22, Neg. LLF: 2170.0409978827784
Iteration: 4, Func. Count: 29, Neg. LLF: 101.82908131318685
Iteration: 5, Func. Count: 35, Neg. LLF: 101.63693808066452
Iteration: 6, Func. Count: 41, Neg. LLF: 101.5729415275049
Iteration: 7, Func. Count: 47, Neg. LLF: 101.52406964693998
Iteration: 8, Func. Count: 53, Neg. LLF: 101.5102017064873
Iteration: 9, Func. Count: 59, Neg. LLF: 101.50717236269163
Iteration: 10, Func. Count: 65, Neg. LLF: 101.50582761282772
Iteration: 11, Func. Count: 71, Neg. LLF: 101.50517614125927
Iteration: 12, Func. Count: 77, Neg. LLF: 101.50513616818243
Iteration: 13, Func. Count: 83, Neg. LLF: 101.50513561386386
Optimization terminated successfully (Exit mode 0)
Current function value: 101.50513561386386
Iterations: 13
Function evaluations: 83
Gradient evaluations: 13
Iteration: 1, Func. Count: 8, Neg. LLF: 104.41409640742212
Iteration: 2, Func. Count: 16, Neg. LLF: 125.26352763634273
Iteration: 3, Func. Count: 24, Neg. LLF: 105.67770419266833
Iteration: 4, Func. Count: 32, Neg. LLF: 103.33695840239697
Iteration: 5, Func. Count: 40, Neg. LLF: 101.60029165981685
Iteration: 6, Func. Count: 47, Neg. LLF: 101.38013840787829
Iteration: 7, Func. Count: 54, Neg. LLF: 101.510199172268
Iteration: 8, Func. Count: 62, Neg. LLF: 101.31875204324182
Iteration: 9, Func. Count: 69, Neg. LLF: 101.31061194290086
Iteration: 10, Func. Count: 76, Neg. LLF: 101.31051529308344
Iteration: 11, Func. Count: 83, Neg. LLF: 101.3105113250897
Iteration: 12, Func. Count: 89, Neg. LLF: 101.3105113250511
Optimization terminated successfully (Exit mode 0)
Current function value: 101.3105113250897
Iterations: 12
Function evaluations: 89
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 110.33632785114712
Iteration: 2, Func. Count: 18, Neg. LLF: 122.42238019822429
Iteration: 3, Func. Count: 27, Neg. LLF: 111.4597475030186
Iteration: 4, Func. Count: 36, Neg. LLF: 101.51614102144244
Iteration: 5, Func. Count: 44, Neg. LLF: 106.51854793057872
Iteration: 6, Func. Count: 53, Neg. LLF: 101.38588172930116
Iteration: 7, Func. Count: 61, Neg. LLF: 101.31415932756681
Iteration: 8, Func. Count: 69, Neg. LLF: 101.31115208087802
Iteration: 9, Func. Count: 77, Neg. LLF: 101.31064977774797
Iteration: 10, Func. Count: 85, Neg. LLF: 101.3105115665974
Iteration: 11, Func. Count: 92, Neg. LLF: 101.31051161997412
Optimization terminated successfully (Exit mode 0)
Current function value: 101.3105115665974
Iterations: 11
Function evaluations: 92
Gradient evaluations: 11
Iteration: 1, Func. Count: 10, Neg. LLF: 113.82895974452437
Iteration: 2, Func. Count: 20, Neg. LLF: 121.12214870309333
Iteration: 3, Func. Count: 30, Neg. LLF: 115.37665118232681
Iteration: 4, Func. Count: 40, Neg. LLF: 101.77396260312345
Iteration: 5, Func. Count: 49, Neg. LLF: 101.52069503607309
Iteration: 6, Func. Count: 58, Neg. LLF: 102.69743441703314
Iteration: 7, Func. Count: 68, Neg. LLF: 101.31486201067685
Iteration: 8, Func. Count: 77, Neg. LLF: 101.31185479499098
Iteration: 9, Func. Count: 86, Neg. LLF: 101.3105537770012
Iteration: 10, Func. Count: 95, Neg. LLF: 101.31051241622424
Iteration: 11, Func. Count: 104, Neg. LLF: 101.31051121645277
Iteration: 12, Func. Count: 112, Neg. LLF: 101.3105112285722
Optimization terminated successfully (Exit mode 0)
Current function value: 101.31051121645277
Iterations: 12
Function evaluations: 112
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 116.5457646896949
Iteration: 2, Func. Count: 22, Neg. LLF: 120.17086117178037
Iteration: 3, Func. Count: 33, Neg. LLF: 116.87762139372288
Iteration: 4, Func. Count: 44, Neg. LLF: 105.44066356918034
Iteration: 5, Func. Count: 55, Neg. LLF: 101.74581875268
Iteration: 6, Func. Count: 65, Neg. LLF: 101.35036408328756
Iteration: 7, Func. Count: 75, Neg. LLF: 101.32673369628894
Iteration: 8, Func. Count: 85, Neg. LLF: 101.31216553963228
Iteration: 9, Func. Count: 95, Neg. LLF: 101.3106860815852
Iteration: 10, Func. Count: 105, Neg. LLF: 101.31052479868218
Iteration: 11, Func. Count: 115, Neg. LLF: 101.31051135329997
Iteration: 12, Func. Count: 124, Neg. LLF: 101.31051135849896
Optimization terminated successfully (Exit mode 0)
Current function value: 101.31051135329997
Iterations: 12
Function evaluations: 124
Gradient evaluations: 12
Iteration: 1, Func. Count: 8, Neg. LLF: 125.8368473536389
Iteration: 2, Func. Count: 17, Neg. LLF: 225.135201408655
Iteration: 3, Func. Count: 25, Neg. LLF: 119.96966529327888
Iteration: 4, Func. Count: 33, Neg. LLF: 111.56087256385246
Iteration: 5, Func. Count: 41, Neg. LLF: 99.93665758283714
Iteration: 6, Func. Count: 49, Neg. LLF: 110.59281425350451
Iteration: 7, Func. Count: 57, Neg. LLF: 99.38924118081663
Iteration: 8, Func. Count: 64, Neg. LLF: 99.77103441217444
Iteration: 9, Func. Count: 72, Neg. LLF: 101.77168739008106
Iteration: 10, Func. Count: 82, Neg. LLF: 99.27006037831403
Iteration: 11, Func. Count: 89, Neg. LLF: 99.25602512818719
Iteration: 12, Func. Count: 96, Neg. LLF: 99.25510449607381
Iteration: 13, Func. Count: 103, Neg. LLF: 99.2550426707933
Iteration: 14, Func. Count: 110, Neg. LLF: 99.25504157883904
Iteration: 15, Func. Count: 116, Neg. LLF: 99.25504157884775
Optimization terminated successfully (Exit mode 0)
Current function value: 99.25504157883904
Iterations: 15
Function evaluations: 116
Gradient evaluations: 15
Iteration: 1, Func. Count: 9, Neg. LLF: 110.01911632424117
Iteration: 2, Func. Count: 18, Neg. LLF: 177.99547131500879
Iteration: 3, Func. Count: 27, Neg. LLF: 101.065812782014
Iteration: 4, Func. Count: 36, Neg. LLF: 100.59429498340661
Iteration: 5, Func. Count: 45, Neg. LLF: 102.10014585790685
Iteration: 6, Func. Count: 54, Neg. LLF: 99.32549683553515
Iteration: 7, Func. Count: 62, Neg. LLF: 100.23405092380001
Iteration: 8, Func. Count: 72, Neg. LLF: 99.96593047665809
Iteration: 9, Func. Count: 81, Neg. LLF: 99.2649774099911
Iteration: 10, Func. Count: 89, Neg. LLF: 99.2589951955394
Iteration: 11, Func. Count: 97, Neg. LLF: 99.25621469469269
Iteration: 12, Func. Count: 105, Neg. LLF: 99.25512139040143
Iteration: 13, Func. Count: 113, Neg. LLF: 99.25504875972464
Iteration: 14, Func. Count: 121, Neg. LLF: 99.2550428864149
Iteration: 15, Func. Count: 129, Neg. LLF: 99.2550415746744
Iteration: 16, Func. Count: 136, Neg. LLF: 99.25504164780794
Optimization terminated successfully (Exit mode 0)
Current function value: 99.2550415746744
Iterations: 16
Function evaluations: 136
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 110.9870652252923
Iteration: 2, Func. Count: 20, Neg. LLF: 182.49575210033163
Iteration: 3, Func. Count: 30, Neg. LLF: 103.18591779730198
Iteration: 4, Func. Count: 40, Neg. LLF: 100.96342474401814
Iteration: 5, Func. Count: 50, Neg. LLF: 103.76141075751663
Iteration: 6, Func. Count: 60, Neg. LLF: 99.45101147322805
Iteration: 7, Func. Count: 70, Neg. LLF: 99.34550979140484
Iteration: 8, Func. Count: 80, Neg. LLF: 99.56244555797025
Iteration: 9, Func. Count: 91, Neg. LLF: 99.71699553694414
Iteration: 10, Func. Count: 101, Neg. LLF: 99.25437237412636
Iteration: 11, Func. Count: 110, Neg. LLF: 99.24220687241565
Iteration: 12, Func. Count: 119, Neg. LLF: 99.24062860034866
Iteration: 13, Func. Count: 128, Neg. LLF: 99.23904204495736
Iteration: 14, Func. Count: 137, Neg. LLF: 99.23896995499393
Iteration: 15, Func. Count: 146, Neg. LLF: 99.23896865344412
Iteration: 16, Func. Count: 154, Neg. LLF: 99.23896865345007
Optimization terminated successfully (Exit mode 0)
Current function value: 99.23896865344412
Iterations: 16
Function evaluations: 154
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 114.42645283763756
Iteration: 2, Func. Count: 22, Neg. LLF: 178.92427829033136
Iteration: 3, Func. Count: 33, Neg. LLF: 107.02379157999637
Iteration: 4, Func. Count: 44, Neg. LLF: 99.53264762398273
Iteration: 5, Func. Count: 55, Neg. LLF: 99.80778927946209
Iteration: 6, Func. Count: 66, Neg. LLF: 101.35528991019947
Iteration: 7, Func. Count: 77, Neg. LLF: 100.98962205120989
Iteration: 8, Func. Count: 88, Neg. LLF: 98.80748108606554
Iteration: 9, Func. Count: 98, Neg. LLF: 98.98661207227047
Iteration: 10, Func. Count: 109, Neg. LLF: 99.72687726452278
Iteration: 11, Func. Count: 120, Neg. LLF: 98.78658245850903
Iteration: 12, Func. Count: 130, Neg. LLF: 98.77050342758115
Iteration: 13, Func. Count: 140, Neg. LLF: 98.76937931532458
Iteration: 14, Func. Count: 150, Neg. LLF: 98.7692834401202
Iteration: 15, Func. Count: 160, Neg. LLF: 98.7692041915614
Iteration: 16, Func. Count: 170, Neg. LLF: 98.76918687273235
Iteration: 17, Func. Count: 180, Neg. LLF: 98.76918300161809
Iteration: 18, Func. Count: 189, Neg. LLF: 98.76918300160101
Optimization terminated successfully (Exit mode 0)
Current function value: 98.76918300161809
Iterations: 18
Function evaluations: 189
Gradient evaluations: 18
Iteration: 1, Func. Count: 12, Neg. LLF: 116.74692737042311
Iteration: 2, Func. Count: 24, Neg. LLF: 174.0645010826994
Iteration: 3, Func. Count: 36, Neg. LLF: 108.94588985798235
Iteration: 4, Func. Count: 48, Neg. LLF: 99.34400764503768
Iteration: 5, Func. Count: 59, Neg. LLF: 102.62808980466697
Iteration: 6, Func. Count: 73, Neg. LLF: 110.41929391779588
Iteration: 7, Func. Count: 88, Neg. LLF: 104.98774807472385
Iteration: 8, Func. Count: 100, Neg. LLF: 99.61609918664196
Iteration: 9, Func. Count: 112, Neg. LLF: 98.94295443071994
Iteration: 10, Func. Count: 124, Neg. LLF: 98.79124283827281
Iteration: 11, Func. Count: 135, Neg. LLF: 98.76961814924991
Iteration: 12, Func. Count: 146, Neg. LLF: 98.76927526811245
Iteration: 13, Func. Count: 157, Neg. LLF: 98.76921120325247
Iteration: 14, Func. Count: 168, Neg. LLF: 98.76918866997919
Iteration: 15, Func. Count: 179, Neg. LLF: 98.769183519735
Iteration: 16, Func. Count: 189, Neg. LLF: 98.76918354403719
Optimization terminated successfully (Exit mode 0)
Current function value: 98.769183519735
Iterations: 16
Function evaluations: 189
Gradient evaluations: 16
Iteration: 1, Func. Count: 9, Neg. LLF: 134.08074725409085
Iteration: 2, Func. Count: 19, Neg. LLF: 248.28940090212825
Iteration: 3, Func. Count: 28, Neg. LLF: 128.3663839153047
Iteration: 4, Func. Count: 37, Neg. LLF: 111.98784310801769
Iteration: 5, Func. Count: 46, Neg. LLF: 100.03028182233726
Iteration: 6, Func. Count: 55, Neg. LLF: 119.88323769919599
Iteration: 7, Func. Count: 64, Neg. LLF: 99.426718639861
Iteration: 8, Func. Count: 72, Neg. LLF: 101.73717989212264
Iteration: 9, Func. Count: 82, Neg. LLF: 99.5409126025301
Iteration: 10, Func. Count: 91, Neg. LLF: 99.26279873606389
Iteration: 11, Func. Count: 99, Neg. LLF: 99.25549615932339
Iteration: 12, Func. Count: 107, Neg. LLF: 99.25509897833349
Iteration: 13, Func. Count: 115, Neg. LLF: 99.25504260824071
Iteration: 14, Func. Count: 123, Neg. LLF: 99.25504150687317
Iteration: 15, Func. Count: 130, Neg. LLF: 99.25504158199851
Optimization terminated successfully (Exit mode 0)
Current function value: 99.25504150687317
Iterations: 15
Function evaluations: 130
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 113.32040213467357
Iteration: 2, Func. Count: 20, Neg. LLF: 165.41489910017845
Iteration: 3, Func. Count: 30, Neg. LLF: 104.3945158102539
Iteration: 4, Func. Count: 40, Neg. LLF: 102.3523710712541
Iteration: 5, Func. Count: 50, Neg. LLF: 103.36757245970793
Iteration: 6, Func. Count: 60, Neg. LLF: 100.13144933687005
Iteration: 7, Func. Count: 70, Neg. LLF: 99.31491891707664
Iteration: 8, Func. Count: 79, Neg. LLF: 100.87539685352277
Iteration: 9, Func. Count: 90, Neg. LLF: 99.727790717443
Iteration: 10, Func. Count: 101, Neg. LLF: 99.26347316227448
Iteration: 11, Func. Count: 110, Neg. LLF: 99.25914269546142
Iteration: 12, Func. Count: 119, Neg. LLF: 99.25625181684804
Iteration: 13, Func. Count: 128, Neg. LLF: 99.25530802921992
Iteration: 14, Func. Count: 137, Neg. LLF: 99.25507349202486
Iteration: 15, Func. Count: 146, Neg. LLF: 99.25504721479497
Iteration: 16, Func. Count: 155, Neg. LLF: 99.25504191437935
Iteration: 17, Func. Count: 163, Neg. LLF: 99.25504198755482
Optimization terminated successfully (Exit mode 0)
Current function value: 99.25504191437935
Iterations: 17
Function evaluations: 163
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 114.55968892898376
Iteration: 2, Func. Count: 22, Neg. LLF: 173.2974374786193
Iteration: 3, Func. Count: 33, Neg. LLF: 111.26153939422976
Iteration: 4, Func. Count: 44, Neg. LLF: 100.21368288321723
Iteration: 5, Func. Count: 55, Neg. LLF: 100.71806987961929
Iteration: 6, Func. Count: 66, Neg. LLF: 100.6366881420824
Iteration: 7, Func. Count: 77, Neg. LLF: 99.44143046621448
Iteration: 8, Func. Count: 88, Neg. LLF: 99.3094432230213
Iteration: 9, Func. Count: 98, Neg. LLF: 100.07216566671603
Iteration: 10, Func. Count: 110, Neg. LLF: 100.09280746608702
Iteration: 11, Func. Count: 121, Neg. LLF: 99.60065764731448
Iteration: 12, Func. Count: 132, Neg. LLF: 99.24451169063893
Iteration: 13, Func. Count: 142, Neg. LLF: 99.24182414772936
Iteration: 14, Func. Count: 152, Neg. LLF: 99.23972706323475
Iteration: 15, Func. Count: 162, Neg. LLF: 99.23906181425991
Iteration: 16, Func. Count: 172, Neg. LLF: 99.23900747347929
Iteration: 17, Func. Count: 182, Neg. LLF: 99.2389732675885
Iteration: 18, Func. Count: 192, Neg. LLF: 99.23896883575198
Iteration: 19, Func. Count: 201, Neg. LLF: 99.2389688357839
Optimization terminated successfully (Exit mode 0)
Current function value: 99.23896883575198
Iterations: 19
Function evaluations: 201
Gradient evaluations: 19
Iteration: 1, Func. Count: 12, Neg. LLF: 117.82953989039301
Iteration: 2, Func. Count: 25, Neg. LLF: 312.81899535321816
Iteration: 3, Func. Count: 37, Neg. LLF: 124.47869331370524
Iteration: 4, Func. Count: 49, Neg. LLF: 102.81378222409062
Iteration: 5, Func. Count: 61, Neg. LLF: 102.14236666873713
Iteration: 6, Func. Count: 73, Neg. LLF: 101.21907362606512
Iteration: 7, Func. Count: 85, Neg. LLF: 101.9666376462917
Iteration: 8, Func. Count: 97, Neg. LLF: 99.47007087844827
Iteration: 9, Func. Count: 109, Neg. LLF: 99.23043265811859
Iteration: 10, Func. Count: 121, Neg. LLF: 101.44348024493718
Iteration: 11, Func. Count: 134, Neg. LLF: 99.21761341475461
Iteration: 12, Func. Count: 146, Neg. LLF: 99.09709830026182
Iteration: 13, Func. Count: 158, Neg. LLF: 98.8515444875616
Iteration: 14, Func. Count: 169, Neg. LLF: 98.83253909208328
Iteration: 15, Func. Count: 180, Neg. LLF: 98.80891098335685
Iteration: 16, Func. Count: 191, Neg. LLF: 98.77571283842197
Iteration: 17, Func. Count: 202, Neg. LLF: 98.77007971324572
Iteration: 18, Func. Count: 213, Neg. LLF: 98.7692611388108
Iteration: 19, Func. Count: 224, Neg. LLF: 98.76920067324195
Iteration: 20, Func. Count: 235, Neg. LLF: 98.76918389419525
Iteration: 21, Func. Count: 246, Neg. LLF: 98.76918302770277
Optimization terminated successfully (Exit mode 0)
Current function value: 98.76918302770277
Iterations: 21
Function evaluations: 246
Gradient evaluations: 21
Iteration: 1, Func. Count: 13, Neg. LLF: 120.5516542246528
Iteration: 2, Func. Count: 27, Neg. LLF: 304.5282739353347
Iteration: 3, Func. Count: 40, Neg. LLF: 124.29473806324496
Iteration: 4, Func. Count: 53, Neg. LLF: 105.2448603174224
Iteration: 5, Func. Count: 66, Neg. LLF: 100.28293085075225
Iteration: 6, Func. Count: 79, Neg. LLF: 100.35244581126435
Iteration: 7, Func. Count: 92, Neg. LLF: 101.50669172073431
Iteration: 8, Func. Count: 105, Neg. LLF: 99.07184422726945
Iteration: 9, Func. Count: 117, Neg. LLF: 111.46225008262115
Iteration: 10, Func. Count: 131, Neg. LLF: 99.93310751439303
Iteration: 11, Func. Count: 144, Neg. LLF: 102.76402182012303
Iteration: 12, Func. Count: 158, Neg. LLF: 98.98013288168833
Iteration: 13, Func. Count: 171, Neg. LLF: 98.80225209807543
Iteration: 14, Func. Count: 184, Neg. LLF: 98.77447188980193
Iteration: 15, Func. Count: 196, Neg. LLF: 98.7723165932487
Iteration: 16, Func. Count: 208, Neg. LLF: 98.77165386739215
Iteration: 17, Func. Count: 220, Neg. LLF: 98.770603532342
Iteration: 18, Func. Count: 232, Neg. LLF: 98.770108767472
Iteration: 19, Func. Count: 244, Neg. LLF: 98.76936723820089
Iteration: 20, Func. Count: 256, Neg. LLF: 98.76920166702577
Iteration: 21, Func. Count: 268, Neg. LLF: 98.76918307859582
Iteration: 22, Func. Count: 279, Neg. LLF: 98.76918310286094
Optimization terminated successfully (Exit mode 0)
Current function value: 98.76918307859582
Iterations: 22
Function evaluations: 279
Gradient evaluations: 22
Iteration: 1, Func. Count: 10, Neg. LLF: 137.71333554415273
Iteration: 2, Func. Count: 21, Neg. LLF: 269.0891538240763
Iteration: 3, Func. Count: 31, Neg. LLF: 129.88579663084656
Iteration: 4, Func. Count: 41, Neg. LLF: 106.74271616823769
Iteration: 5, Func. Count: 51, Neg. LLF: 110.12898114810498
Iteration: 6, Func. Count: 61, Neg. LLF: 99.96748752546776
Iteration: 7, Func. Count: 71, Neg. LLF: 99.85563321774184
Iteration: 8, Func. Count: 81, Neg. LLF: 99.375333754935
Iteration: 9, Func. Count: 90, Neg. LLF: 99.53115424271903
Iteration: 10, Func. Count: 101, Neg. LLF: 100.83192458608957
Iteration: 11, Func. Count: 111, Neg. LLF: 99.22030206033502
Iteration: 12, Func. Count: 121, Neg. LLF: 99.17486744511375
Iteration: 13, Func. Count: 131, Neg. LLF: 99.16409705216391
Iteration: 14, Func. Count: 141, Neg. LLF: 99.15770988392653
Iteration: 15, Func. Count: 150, Neg. LLF: 99.15751968747863
Iteration: 16, Func. Count: 159, Neg. LLF: 99.15749750077829
Iteration: 17, Func. Count: 167, Neg. LLF: 99.15749750074917
Optimization terminated successfully (Exit mode 0)
Current function value: 99.15749750077829
Iterations: 17
Function evaluations: 167
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 115.87547418511912
Iteration: 2, Func. Count: 22, Neg. LLF: 171.96527236515203
Iteration: 3, Func. Count: 33, Neg. LLF: 107.60473380953658
Iteration: 4, Func. Count: 44, Neg. LLF: 106.67331956237685
Iteration: 5, Func. Count: 55, Neg. LLF: 99.60706742151582
Iteration: 6, Func. Count: 65, Neg. LLF: 103.20763902570035
Iteration: 7, Func. Count: 77, Neg. LLF: 111.81548914909557
Iteration: 8, Func. Count: 91, Neg. LLF: 104.85460332721648
Iteration: 9, Func. Count: 103, Neg. LLF: 99.31540613226257
Iteration: 10, Func. Count: 114, Neg. LLF: 99.20031167880786
Iteration: 11, Func. Count: 125, Neg. LLF: 99.16133094375718
Iteration: 12, Func. Count: 135, Neg. LLF: 99.15902406083978
Iteration: 13, Func. Count: 145, Neg. LLF: 99.15809026130896
Iteration: 14, Func. Count: 155, Neg. LLF: 99.15758867970658
Iteration: 15, Func. Count: 165, Neg. LLF: 99.15750414237591
Iteration: 16, Func. Count: 175, Neg. LLF: 99.15749723800057
Iteration: 17, Func. Count: 184, Neg. LLF: 99.15749731668366
Optimization terminated successfully (Exit mode 0)
Current function value: 99.15749723800057
Iterations: 17
Function evaluations: 184
Gradient evaluations: 17
Iteration: 1, Func. Count: 12, Neg. LLF: 116.2681443794274
Iteration: 2, Func. Count: 25, Neg. LLF: 334.91845646293524
Iteration: 3, Func. Count: 37, Neg. LLF: 123.08726113176425
Iteration: 4, Func. Count: 49, Neg. LLF: 104.2234242207848
Iteration: 5, Func. Count: 61, Neg. LLF: 99.96329520571848
Iteration: 6, Func. Count: 73, Neg. LLF: 99.85696926847046
Iteration: 7, Func. Count: 85, Neg. LLF: 99.62183532233962
Iteration: 8, Func. Count: 97, Neg. LLF: 100.03306202118145
Iteration: 9, Func. Count: 110, Neg. LLF: 100.33312880995983
Iteration: 10, Func. Count: 122, Neg. LLF: 99.18336408991546
Iteration: 11, Func. Count: 133, Neg. LLF: 99.18627684757253
Iteration: 12, Func. Count: 145, Neg. LLF: 99.16047821608056
Iteration: 13, Func. Count: 156, Neg. LLF: 99.15785068462289
Iteration: 14, Func. Count: 167, Neg. LLF: 99.15750843158115
Iteration: 15, Func. Count: 178, Neg. LLF: 99.15749728983884
Iteration: 16, Func. Count: 188, Neg. LLF: 99.15749731442666
Optimization terminated successfully (Exit mode 0)
Current function value: 99.15749728983884
Iterations: 16
Function evaluations: 188
Gradient evaluations: 16
Iteration: 1, Func. Count: 13, Neg. LLF: 119.97322027878528
Iteration: 2, Func. Count: 27, Neg. LLF: 343.5581010042587
Iteration: 3, Func. Count: 40, Neg. LLF: 132.36217011691312
Iteration: 4, Func. Count: 53, Neg. LLF: 103.31452046489147
Iteration: 5, Func. Count: 66, Neg. LLF: 102.78192832112319
Iteration: 6, Func. Count: 79, Neg. LLF: 100.46183687756132
Iteration: 7, Func. Count: 92, Neg. LLF: 99.31754502749736
Iteration: 8, Func. Count: 104, Neg. LLF: 104.15275009598338
Iteration: 9, Func. Count: 118, Neg. LLF: 111.24060166997194
Iteration: 10, Func. Count: 131, Neg. LLF: 3808.606138247646
Iteration: 11, Func. Count: 144, Neg. LLF: 98.95985752536876
Iteration: 12, Func. Count: 156, Neg. LLF: 99.08497743407086
Iteration: 13, Func. Count: 169, Neg. LLF: 98.81453391875684
Iteration: 14, Func. Count: 181, Neg. LLF: 98.81263682512392
Iteration: 15, Func. Count: 194, Neg. LLF: 98.79978717893717
Iteration: 16, Func. Count: 206, Neg. LLF: 98.78291990873981
Iteration: 17, Func. Count: 218, Neg. LLF: 98.77069184008216
Iteration: 18, Func. Count: 230, Neg. LLF: 98.76952461784883
Iteration: 19, Func. Count: 242, Neg. LLF: 98.76920442770316
Iteration: 20, Func. Count: 254, Neg. LLF: 98.76919363268856
Iteration: 21, Func. Count: 266, Neg. LLF: 98.76918327426061
Iteration: 22, Func. Count: 277, Neg. LLF: 98.76918327425234
Optimization terminated successfully (Exit mode 0)
Current function value: 98.76918327426061
Iterations: 22
Function evaluations: 277
Gradient evaluations: 22
Iteration: 1, Func. Count: 14, Neg. LLF: 122.7247009917188
Iteration: 2, Func. Count: 29, Neg. LLF: 334.99351463886444
Iteration: 3, Func. Count: 43, Neg. LLF: 132.07744133421733
Iteration: 4, Func. Count: 57, Neg. LLF: 104.96100849185338
Iteration: 5, Func. Count: 71, Neg. LLF: 102.96638538637941
Iteration: 6, Func. Count: 85, Neg. LLF: 101.20467072405647
Iteration: 7, Func. Count: 99, Neg. LLF: 105.46270043196446
Iteration: 8, Func. Count: 113, Neg. LLF: 99.50101132975362
Iteration: 9, Func. Count: 127, Neg. LLF: 101.5356130864872
Iteration: 10, Func. Count: 141, Neg. LLF: 99.96784645404112
Iteration: 11, Func. Count: 155, Neg. LLF: 98.85113231079022
Iteration: 12, Func. Count: 168, Neg. LLF: 98.95731404997271
Iteration: 13, Func. Count: 182, Neg. LLF: 99.68137248853074
Iteration: 14, Func. Count: 196, Neg. LLF: 98.79350678161882
Iteration: 15, Func. Count: 209, Neg. LLF: 98.79126301482171
Iteration: 16, Func. Count: 222, Neg. LLF: 98.78686349042364
Iteration: 17, Func. Count: 235, Neg. LLF: 98.78023482613507
Iteration: 18, Func. Count: 248, Neg. LLF: 98.77792576060563
Iteration: 19, Func. Count: 261, Neg. LLF: 98.77166277596841
Iteration: 20, Func. Count: 274, Neg. LLF: 98.77021044522849
Iteration: 21, Func. Count: 287, Neg. LLF: 98.76928916013435
Iteration: 22, Func. Count: 300, Neg. LLF: 98.76918718999444
Iteration: 23, Func. Count: 313, Neg. LLF: 98.76918289794543
Iteration: 24, Func. Count: 325, Neg. LLF: 98.76918292221366
Optimization terminated successfully (Exit mode 0)
Current function value: 98.76918289794543
Iterations: 24
Function evaluations: 325
Gradient evaluations: 24
Iteration: 1, Func. Count: 7, Neg. LLF: 112.00594103410491
Iteration: 2, Func. Count: 15, Neg. LLF: 332.3859342870405
Iteration: 3, Func. Count: 22, Neg. LLF: 1086.9663085561413
Iteration: 4, Func. Count: 29, Neg. LLF: 102.905642653813
Iteration: 5, Func. Count: 36, Neg. LLF: 113.33400824434182
Iteration: 6, Func. Count: 44, Neg. LLF: 101.30844214466882
Iteration: 7, Func. Count: 50, Neg. LLF: 101.30079777691473
Iteration: 8, Func. Count: 56, Neg. LLF: 101.29876528470898
Iteration: 9, Func. Count: 62, Neg. LLF: 101.29871798972157
Iteration: 10, Func. Count: 68, Neg. LLF: 101.29870450725588
Iteration: 11, Func. Count: 74, Neg. LLF: 101.29869410378154
Iteration: 12, Func. Count: 80, Neg. LLF: 101.29869074504198
Iteration: 13, Func. Count: 85, Neg. LLF: 101.29869074508233
Optimization terminated successfully (Exit mode 0)
Current function value: 101.29869074504198
Iterations: 13
Function evaluations: 85
Gradient evaluations: 13
Iteration: 1, Func. Count: 8, Neg. LLF: 102.50895288689401
Iteration: 2, Func. Count: 15, Neg. LLF: 108.02991048832159
Iteration: 3, Func. Count: 23, Neg. LLF: 1818.6266266638
Iteration: 4, Func. Count: 31, Neg. LLF: 2232.38109841858
Iteration: 5, Func. Count: 39, Neg. LLF: 108.23347313118983
Iteration: 6, Func. Count: 47, Neg. LLF: 103.2313874362917
Iteration: 7, Func. Count: 55, Neg. LLF: 101.36147726382745
Iteration: 8, Func. Count: 62, Neg. LLF: 101.35770356173879
Iteration: 9, Func. Count: 70, Neg. LLF: 101.35348977524976
Iteration: 10, Func. Count: 78, Neg. LLF: 101.30627646185889
Iteration: 11, Func. Count: 85, Neg. LLF: 101.30441011857033
Iteration: 12, Func. Count: 92, Neg. LLF: 101.30121477275041
Iteration: 13, Func. Count: 99, Neg. LLF: 101.29903171019546
Iteration: 14, Func. Count: 106, Neg. LLF: 101.2987344361128
Iteration: 15, Func. Count: 113, Neg. LLF: 101.29869893978916
Iteration: 16, Func. Count: 120, Neg. LLF: 101.2986909169028
Iteration: 17, Func. Count: 126, Neg. LLF: 101.29869091963145
Optimization terminated successfully (Exit mode 0)
Current function value: 101.2986909169028
Iterations: 17
Function evaluations: 126
Gradient evaluations: 17
Iteration: 1, Func. Count: 9, Neg. LLF: 102.66434571157389
Iteration: 2, Func. Count: 17, Neg. LLF: 116.00830886487336
Iteration: 3, Func. Count: 26, Neg. LLF: 115.75637619856414
Iteration: 4, Func. Count: 35, Neg. LLF: 123.18693168648983
Iteration: 5, Func. Count: 44, Neg. LLF: 108.56070206719981
Iteration: 6, Func. Count: 53, Neg. LLF: 109.98319274290391
Iteration: 7, Func. Count: 62, Neg. LLF: 103.59510408189152
Iteration: 8, Func. Count: 71, Neg. LLF: 101.44454600822705
Iteration: 9, Func. Count: 80, Neg. LLF: 101.3111223383103
Iteration: 10, Func. Count: 88, Neg. LLF: 101.35704566775301
Iteration: 11, Func. Count: 97, Neg. LLF: 101.30789859350341
Iteration: 12, Func. Count: 105, Neg. LLF: 101.30675847176471
Iteration: 13, Func. Count: 113, Neg. LLF: 101.29923259778587
Iteration: 14, Func. Count: 121, Neg. LLF: 101.29871546082137
Iteration: 15, Func. Count: 129, Neg. LLF: 101.29869206660173
Iteration: 16, Func. Count: 137, Neg. LLF: 101.29869043513679
Iteration: 17, Func. Count: 144, Neg. LLF: 101.29869048762005
Optimization terminated successfully (Exit mode 0)
Current function value: 101.29869043513679
Iterations: 17
Function evaluations: 144
Gradient evaluations: 17
Iteration: 1, Func. Count: 10, Neg. LLF: 102.88171277991694
Iteration: 2, Func. Count: 20, Neg. LLF: 113.81623268385884
Iteration: 3, Func. Count: 30, Neg. LLF: 1798.3130384895637
Iteration: 4, Func. Count: 40, Neg. LLF: 101.59584005451214
Iteration: 5, Func. Count: 49, Neg. LLF: 855.4689049971747
Iteration: 6, Func. Count: 60, Neg. LLF: 101.42751441282346
Iteration: 7, Func. Count: 69, Neg. LLF: 101.31967742948876
Iteration: 8, Func. Count: 78, Neg. LLF: 101.31543510066031
Iteration: 9, Func. Count: 88, Neg. LLF: 101.29964151288517
Iteration: 10, Func. Count: 97, Neg. LLF: 101.29913358660868
Iteration: 11, Func. Count: 106, Neg. LLF: 101.29870394076121
Iteration: 12, Func. Count: 115, Neg. LLF: 101.29869078535206
Iteration: 13, Func. Count: 123, Neg. LLF: 101.29869079765938
Optimization terminated successfully (Exit mode 0)
Current function value: 101.29869078535206
Iterations: 13
Function evaluations: 123
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 102.85594139874175
Iteration: 2, Func. Count: 22, Neg. LLF: 111.67678690944236
Iteration: 3, Func. Count: 33, Neg. LLF: 1102.7552419365088
Iteration: 4, Func. Count: 44, Neg. LLF: 102.47961371203095
Iteration: 5, Func. Count: 55, Neg. LLF: 101.56847061839728
Iteration: 6, Func. Count: 65, Neg. LLF: 105.65419137723805
Iteration: 7, Func. Count: 76, Neg. LLF: 101.93325774483756
Iteration: 8, Func. Count: 87, Neg. LLF: 101.38819462158392
Iteration: 9, Func. Count: 97, Neg. LLF: 101.30955898990013
Iteration: 10, Func. Count: 107, Neg. LLF: 101.29939657690915
Iteration: 11, Func. Count: 117, Neg. LLF: 101.29876788704102
Iteration: 12, Func. Count: 127, Neg. LLF: 101.29870303394034
Iteration: 13, Func. Count: 137, Neg. LLF: 101.29869077881975
Iteration: 14, Func. Count: 146, Neg. LLF: 101.29869078071411
Optimization terminated successfully (Exit mode 0)
Current function value: 101.29869077881975
Iterations: 14
Function evaluations: 146
Gradient evaluations: 14
Iteration: 1, Func. Count: 8, Neg. LLF: 111.91798165501665
Iteration: 2, Func. Count: 17, Neg. LLF: 1839.9492245151844
Iteration: 3, Func. Count: 25, Neg. LLF: 43202.068454395994
Iteration: 4, Func. Count: 33, Neg. LLF: 104.39683875256341
Iteration: 5, Func. Count: 41, Neg. LLF: 110.43301201015312
Iteration: 6, Func. Count: 50, Neg. LLF: 101.41207263358056
Iteration: 7, Func. Count: 57, Neg. LLF: 101.30416908783917
Iteration: 8, Func. Count: 64, Neg. LLF: 101.29894099351353
Iteration: 9, Func. Count: 71, Neg. LLF: 101.29870361887963
Iteration: 10, Func. Count: 78, Neg. LLF: 101.29869655726048
Iteration: 11, Func. Count: 85, Neg. LLF: 101.29869369201536
Iteration: 12, Func. Count: 92, Neg. LLF: 101.2986904557972
Iteration: 13, Func. Count: 98, Neg. LLF: 101.2986904762024
Optimization terminated successfully (Exit mode 0)
Current function value: 101.2986904557972
Iterations: 13
Function evaluations: 98
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 102.94209624709988
Iteration: 2, Func. Count: 18, Neg. LLF: 125.11990568691319
Iteration: 3, Func. Count: 27, Neg. LLF: 103.98557493785724
Iteration: 4, Func. Count: 36, Neg. LLF: 101.57819371648117
Iteration: 5, Func. Count: 44, Neg. LLF: 104.4688368619875
Iteration: 6, Func. Count: 53, Neg. LLF: 102.84905665695418
Iteration: 7, Func. Count: 62, Neg. LLF: 101.31537194956758
Iteration: 8, Func. Count: 70, Neg. LLF: 101.30242267628921
Iteration: 9, Func. Count: 78, Neg. LLF: 101.29887950775017
Iteration: 10, Func. Count: 86, Neg. LLF: 101.29870600054099
Iteration: 11, Func. Count: 94, Neg. LLF: 101.29869116084609
Iteration: 12, Func. Count: 102, Neg. LLF: 101.29869041527724
Optimization terminated successfully (Exit mode 0)
Current function value: 101.29869041527724
Iterations: 12
Function evaluations: 102
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 102.67742316897184
Iteration: 2, Func. Count: 19, Neg. LLF: 112.32561998800239
Iteration: 3, Func. Count: 29, Neg. LLF: 233.0998182959236
Iteration: 4, Func. Count: 39, Neg. LLF: 119.81116828056855
Iteration: 5, Func. Count: 50, Neg. LLF: 109.47318764249513
Iteration: 6, Func. Count: 60, Neg. LLF: 109.18686523377671
Iteration: 7, Func. Count: 70, Neg. LLF: 104.3931037242188
Iteration: 8, Func. Count: 80, Neg. LLF: 101.52540305097646
Iteration: 9, Func. Count: 90, Neg. LLF: 101.35060674361077
Iteration: 10, Func. Count: 100, Neg. LLF: 101.343082442215
Iteration: 11, Func. Count: 110, Neg. LLF: 101.30579309858268
Iteration: 12, Func. Count: 119, Neg. LLF: 101.30497620194636
Iteration: 13, Func. Count: 128, Neg. LLF: 101.30130811963922
Iteration: 14, Func. Count: 137, Neg. LLF: 101.29946470625877
Iteration: 15, Func. Count: 146, Neg. LLF: 101.29869299127049
Iteration: 16, Func. Count: 155, Neg. LLF: 101.29869053822786
Iteration: 17, Func. Count: 163, Neg. LLF: 101.29869059074362
Optimization terminated successfully (Exit mode 0)
Current function value: 101.29869053822786
Iterations: 17
Function evaluations: 163
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 102.8834079843424
Iteration: 2, Func. Count: 22, Neg. LLF: 112.74025789218585
Iteration: 3, Func. Count: 33, Neg. LLF: 2932.674719565697
Iteration: 4, Func. Count: 44, Neg. LLF: 101.74774954988835
Iteration: 5, Func. Count: 54, Neg. LLF: 133.14185738796243
Iteration: 6, Func. Count: 66, Neg. LLF: 101.71634473997744
Iteration: 7, Func. Count: 77, Neg. LLF: 101.32403209678019
Iteration: 8, Func. Count: 87, Neg. LLF: 101.41866013817557
Iteration: 9, Func. Count: 98, Neg. LLF: 101.29951560961017
Iteration: 10, Func. Count: 108, Neg. LLF: 101.29908599116878
Iteration: 11, Func. Count: 118, Neg. LLF: 101.29869124722558
Iteration: 12, Func. Count: 128, Neg. LLF: 101.29869042400675
Optimization terminated successfully (Exit mode 0)
Current function value: 101.29869042400675
Iterations: 12
Function evaluations: 128
Gradient evaluations: 12
Iteration: 1, Func. Count: 12, Neg. LLF: 102.86948586060929
Iteration: 2, Func. Count: 24, Neg. LLF: 111.55888242506643
Iteration: 3, Func. Count: 36, Neg. LLF: 165.72621680441682
Iteration: 4, Func. Count: 48, Neg. LLF: 110.8474300139325
Iteration: 5, Func. Count: 60, Neg. LLF: 101.56830055288454
Iteration: 6, Func. Count: 71, Neg. LLF: 110.75718592647675
Iteration: 7, Func. Count: 84, Neg. LLF: 101.33608481798436
Iteration: 8, Func. Count: 95, Neg. LLF: 101.30763767848471
Iteration: 9, Func. Count: 106, Neg. LLF: 101.29995674283519
Iteration: 10, Func. Count: 117, Neg. LLF: 101.29914044288495
Iteration: 11, Func. Count: 128, Neg. LLF: 101.29875419561019
Iteration: 12, Func. Count: 139, Neg. LLF: 101.29869737073221
Iteration: 13, Func. Count: 150, Neg. LLF: 101.29869048535903
Iteration: 14, Func. Count: 160, Neg. LLF: 101.29869048729316
Optimization terminated successfully (Exit mode 0)
Current function value: 101.29869048535903
Iterations: 14
Function evaluations: 160
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 107.37717268002163
Iteration: 2, Func. Count: 19, Neg. LLF: 414.66920058360574
Iteration: 3, Func. Count: 28, Neg. LLF: 9512237.684231812
Iteration: 4, Func. Count: 37, Neg. LLF: 122.11513306709266
Iteration: 5, Func. Count: 47, Neg. LLF: 107.35000990245545
Iteration: 6, Func. Count: 56, Neg. LLF: 99.30366906503878
Iteration: 7, Func. Count: 65, Neg. LLF: 100.08699914954387
Iteration: 8, Func. Count: 74, Neg. LLF: 98.93739228748122
Iteration: 9, Func. Count: 82, Neg. LLF: 100.18842108528466
Iteration: 10, Func. Count: 92, Neg. LLF: 98.90015223814551
Iteration: 11, Func. Count: 100, Neg. LLF: 98.88973162603374
Iteration: 12, Func. Count: 108, Neg. LLF: 98.88879786510277
Iteration: 13, Func. Count: 116, Neg. LLF: 98.888784185321
Iteration: 14, Func. Count: 123, Neg. LLF: 98.88878418531357
Optimization terminated successfully (Exit mode 0)
Current function value: 98.888784185321
Iterations: 14
Function evaluations: 123
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 104.69180793548813
Iteration: 2, Func. Count: 20, Neg. LLF: 114.19363157709415
Iteration: 3, Func. Count: 31, Neg. LLF: 103.61449947734472
Iteration: 4, Func. Count: 42, Neg. LLF: 100.06260493314691
Iteration: 5, Func. Count: 52, Neg. LLF: 105.27069301014102
Iteration: 6, Func. Count: 62, Neg. LLF: 99.11248054375469
Iteration: 7, Func. Count: 71, Neg. LLF: 99.34776821537851
Iteration: 8, Func. Count: 81, Neg. LLF: 98.94028860143796
Iteration: 9, Func. Count: 90, Neg. LLF: 99.65930163397273
Iteration: 10, Func. Count: 101, Neg. LLF: 98.91359861112548
Iteration: 11, Func. Count: 110, Neg. LLF: 98.89105802255274
Iteration: 12, Func. Count: 119, Neg. LLF: 98.88905634350787
Iteration: 13, Func. Count: 128, Neg. LLF: 98.88879410501977
Iteration: 14, Func. Count: 137, Neg. LLF: 98.88878510931622
Iteration: 15, Func. Count: 146, Neg. LLF: 98.88878401969065
Iteration: 16, Func. Count: 154, Neg. LLF: 98.88878410327784
Optimization terminated successfully (Exit mode 0)
Current function value: 98.88878401969065
Iterations: 16
Function evaluations: 154
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 101.75927452856251
Iteration: 2, Func. Count: 22, Neg. LLF: 329.0188059811368
Iteration: 3, Func. Count: 33, Neg. LLF: 102.84290129586441
Iteration: 4, Func. Count: 45, Neg. LLF: 28085.45625473452
Iteration: 5, Func. Count: 56, Neg. LLF: 112.01398685722872
Iteration: 6, Func. Count: 68, Neg. LLF: 99.59264196510705
Iteration: 7, Func. Count: 79, Neg. LLF: 98.89574075698812
Iteration: 8, Func. Count: 89, Neg. LLF: 103.10713844787894
Iteration: 9, Func. Count: 101, Neg. LLF: 99.22273956410838
Iteration: 10, Func. Count: 112, Neg. LLF: 98.88028914085822
Iteration: 11, Func. Count: 122, Neg. LLF: 98.87957821236002
Iteration: 12, Func. Count: 132, Neg. LLF: 98.87947384569782
Iteration: 13, Func. Count: 142, Neg. LLF: 98.87937413793424
Iteration: 14, Func. Count: 152, Neg. LLF: 98.87931041872238
Iteration: 15, Func. Count: 161, Neg. LLF: 98.8793104187286
Optimization terminated successfully (Exit mode 0)
Current function value: 98.87931041872238
Iterations: 15
Function evaluations: 161
Gradient evaluations: 15
Iteration: 1, Func. Count: 12, Neg. LLF: 102.38532948606124
Iteration: 2, Func. Count: 24, Neg. LLF: 313.9875879318423
Iteration: 3, Func. Count: 36, Neg. LLF: 103.61240039864853
Iteration: 4, Func. Count: 49, Neg. LLF: 799978.2711459665
Iteration: 5, Func. Count: 61, Neg. LLF: 101.48954671674406
Iteration: 6, Func. Count: 73, Neg. LLF: 99.25710448714098
Iteration: 7, Func. Count: 85, Neg. LLF: 98.88656051073177
Iteration: 8, Func. Count: 96, Neg. LLF: 98.8042525030651
Iteration: 9, Func. Count: 107, Neg. LLF: 101.18581990552805
Iteration: 10, Func. Count: 120, Neg. LLF: 98.77866893029127
Iteration: 11, Func. Count: 131, Neg. LLF: 98.82102803131471
Iteration: 12, Func. Count: 143, Neg. LLF: 98.78141295443845
Iteration: 13, Func. Count: 155, Neg. LLF: 98.7668007147972
Iteration: 14, Func. Count: 166, Neg. LLF: 98.76627700977222
Iteration: 15, Func. Count: 177, Neg. LLF: 98.76608759888502
Iteration: 16, Func. Count: 188, Neg. LLF: 98.76607206385603
Iteration: 17, Func. Count: 199, Neg. LLF: 98.76606894049257
Iteration: 18, Func. Count: 209, Neg. LLF: 98.76606894050175
Optimization terminated successfully (Exit mode 0)
Current function value: 98.76606894049257
Iterations: 18
Function evaluations: 209
Gradient evaluations: 18
Iteration: 1, Func. Count: 13, Neg. LLF: 102.35036391984077
Iteration: 2, Func. Count: 26, Neg. LLF: 302.73478749385583
Iteration: 3, Func. Count: 39, Neg. LLF: 103.53409114466568
Iteration: 4, Func. Count: 53, Neg. LLF: 304.08786037408277
Iteration: 5, Func. Count: 66, Neg. LLF: 116.61722023629686
Iteration: 6, Func. Count: 80, Neg. LLF: 100.58050566279336
Iteration: 7, Func. Count: 93, Neg. LLF: 98.8163932355484
Iteration: 8, Func. Count: 105, Neg. LLF: 99.66426319361769
Iteration: 9, Func. Count: 118, Neg. LLF: 98.90908821129166
Iteration: 10, Func. Count: 131, Neg. LLF: 98.77648830385172
Iteration: 11, Func. Count: 143, Neg. LLF: 98.76806564664517
Iteration: 12, Func. Count: 155, Neg. LLF: 98.76708551667068
Iteration: 13, Func. Count: 167, Neg. LLF: 98.76646067497306
Iteration: 14, Func. Count: 179, Neg. LLF: 98.76620323580786
Iteration: 15, Func. Count: 191, Neg. LLF: 98.76608769643869
Iteration: 16, Func. Count: 203, Neg. LLF: 98.76607114447204
Iteration: 17, Func. Count: 215, Neg. LLF: 98.76606892826669
Iteration: 18, Func. Count: 226, Neg. LLF: 98.76606895396421
Optimization terminated successfully (Exit mode 0)
Current function value: 98.76606892826669
Iterations: 18
Function evaluations: 226
Gradient evaluations: 18
Iteration: 1, Func. Count: 10, Neg. LLF: 110.7924111768875
Iteration: 2, Func. Count: 21, Neg. LLF: 288.851528571008
Iteration: 3, Func. Count: 31, Neg. LLF: 5606219.439155516
Iteration: 4, Func. Count: 41, Neg. LLF: 142.7322652081659
Iteration: 5, Func. Count: 51, Neg. LLF: 99.11581180486714
Iteration: 6, Func. Count: 60, Neg. LLF: 479.547524891079
Iteration: 7, Func. Count: 71, Neg. LLF: 99.29458393581523
Iteration: 8, Func. Count: 81, Neg. LLF: 100.11014513634754
Iteration: 9, Func. Count: 93, Neg. LLF: 98.92861476271344
Iteration: 10, Func. Count: 103, Neg. LLF: 98.62465751743454
Iteration: 11, Func. Count: 112, Neg. LLF: 98.59756105003581
Iteration: 12, Func. Count: 121, Neg. LLF: 98.57001770449592
Iteration: 13, Func. Count: 130, Neg. LLF: 98.56411180342215
Iteration: 14, Func. Count: 139, Neg. LLF: 98.55319152289465
Iteration: 15, Func. Count: 148, Neg. LLF: 98.55017697088704
Iteration: 16, Func. Count: 157, Neg. LLF: 98.5496188808237
Iteration: 17, Func. Count: 166, Neg. LLF: 98.54960005149208
Iteration: 18, Func. Count: 175, Neg. LLF: 98.54959930624118
Optimization terminated successfully (Exit mode 0)
Current function value: 98.54959930624118
Iterations: 18
Function evaluations: 175
Gradient evaluations: 18
Iteration: 1, Func. Count: 11, Neg. LLF: 101.71976062866811
Iteration: 2, Func. Count: 22, Neg. LLF: 264.4672131531333
Iteration: 3, Func. Count: 33, Neg. LLF: 103.90627102877642
Iteration: 4, Func. Count: 46, Neg. LLF: 107.61321012402638
Iteration: 5, Func. Count: 57, Neg. LLF: 806.0276465754954
Iteration: 6, Func. Count: 69, Neg. LLF: 98.82167777304464
Iteration: 7, Func. Count: 79, Neg. LLF: 98.58062244777177
Iteration: 8, Func. Count: 89, Neg. LLF: 109.76055854163859
Iteration: 9, Func. Count: 101, Neg. LLF: 98.5523242731888
Iteration: 10, Func. Count: 111, Neg. LLF: 98.54976807875398
Iteration: 11, Func. Count: 121, Neg. LLF: 98.54966600989397
Iteration: 12, Func. Count: 131, Neg. LLF: 98.54960421774622
Iteration: 13, Func. Count: 141, Neg. LLF: 98.54960014605449
Iteration: 14, Func. Count: 151, Neg. LLF: 98.54959928519732
Optimization terminated successfully (Exit mode 0)
Current function value: 98.54959928519732
Iterations: 14
Function evaluations: 151
Gradient evaluations: 14
Iteration: 1, Func. Count: 12, Neg. LLF: 102.2918935899381
Iteration: 2, Func. Count: 24, Neg. LLF: 267.1026370503154
Iteration: 3, Func. Count: 36, Neg. LLF: 106.04832449589671
Iteration: 4, Func. Count: 49, Neg. LLF: 134.19810514780184
Iteration: 5, Func. Count: 61, Neg. LLF: 375.1946030067741
Iteration: 6, Func. Count: 74, Neg. LLF: 98.65135306890707
Iteration: 7, Func. Count: 85, Neg. LLF: 103.99812775162641
Iteration: 8, Func. Count: 98, Neg. LLF: 98.912778565546
Iteration: 9, Func. Count: 110, Neg. LLF: 98.55176133014453
Iteration: 10, Func. Count: 121, Neg. LLF: 98.55365702007052
Iteration: 11, Func. Count: 133, Neg. LLF: 98.55484232643435
Iteration: 12, Func. Count: 145, Neg. LLF: 98.54983659106604
Iteration: 13, Func. Count: 156, Neg. LLF: 98.54969865988485
Iteration: 14, Func. Count: 167, Neg. LLF: 98.54960480880511
Iteration: 15, Func. Count: 178, Neg. LLF: 98.54960089297512
Iteration: 16, Func. Count: 189, Neg. LLF: 98.5495992787934
Iteration: 17, Func. Count: 199, Neg. LLF: 98.54959927913049
Optimization terminated successfully (Exit mode 0)
Current function value: 98.5495992787934
Iterations: 17
Function evaluations: 199
Gradient evaluations: 17
Iteration: 1, Func. Count: 13, Neg. LLF: 102.83928578059846
Iteration: 2, Func. Count: 26, Neg. LLF: 266.3522109147531
Iteration: 3, Func. Count: 39, Neg. LLF: 107.7345394590391
Iteration: 4, Func. Count: 53, Neg. LLF: 201.2672401267992
Iteration: 5, Func. Count: 66, Neg. LLF: 1062.3162549075437
Iteration: 6, Func. Count: 80, Neg. LLF: 98.60548246798047
Iteration: 7, Func. Count: 92, Neg. LLF: 102.07976395913518
Iteration: 8, Func. Count: 106, Neg. LLF: 98.83090486755381
Iteration: 9, Func. Count: 119, Neg. LLF: 98.55237945278853
Iteration: 10, Func. Count: 131, Neg. LLF: 98.63684647191968
Iteration: 11, Func. Count: 145, Neg. LLF: 98.55072017288418
Iteration: 12, Func. Count: 157, Neg. LLF: 98.55004855029644
Iteration: 13, Func. Count: 169, Neg. LLF: 98.5497396158415
Iteration: 14, Func. Count: 181, Neg. LLF: 98.54965300923082
Iteration: 15, Func. Count: 193, Neg. LLF: 98.54960145861537
Iteration: 16, Func. Count: 205, Neg. LLF: 98.54959934582561
Iteration: 17, Func. Count: 216, Neg. LLF: 98.54959934780237
Optimization terminated successfully (Exit mode 0)
Current function value: 98.54959934582561
Iterations: 17
Function evaluations: 216
Gradient evaluations: 17
Iteration: 1, Func. Count: 14, Neg. LLF: 102.86566801438569
Iteration: 2, Func. Count: 28, Neg. LLF: 259.9276707542238
Iteration: 3, Func. Count: 42, Neg. LLF: 107.53561628888326
Iteration: 4, Func. Count: 57, Neg. LLF: 175.47578131458607
Iteration: 5, Func. Count: 71, Neg. LLF: 1723.159066952956
Iteration: 6, Func. Count: 86, Neg. LLF: 99.37980941013265
Iteration: 7, Func. Count: 100, Neg. LLF: 98.72246706324786
Iteration: 8, Func. Count: 113, Neg. LLF: 98.59622891318988
Iteration: 9, Func. Count: 126, Neg. LLF: 102.29230802572503
Iteration: 10, Func. Count: 142, Neg. LLF: 98.55607190213324
Iteration: 11, Func. Count: 155, Neg. LLF: 98.5731536940193
Iteration: 12, Func. Count: 169, Neg. LLF: 98.55526475522157
Iteration: 13, Func. Count: 183, Neg. LLF: 98.54986676789355
Iteration: 14, Func. Count: 196, Neg. LLF: 98.54975048356127
Iteration: 15, Func. Count: 209, Neg. LLF: 98.54960240109587
Iteration: 16, Func. Count: 222, Neg. LLF: 98.54959948906138
Iteration: 17, Func. Count: 234, Neg. LLF: 98.54959955637594
Optimization terminated successfully (Exit mode 0)
Current function value: 98.54959948906138
Iterations: 17
Function evaluations: 234
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 112.01266533831068
Iteration: 2, Func. Count: 23, Neg. LLF: 547.1241881521704
Iteration: 3, Func. Count: 34, Neg. LLF: 6094900.04303613
Iteration: 4, Func. Count: 45, Neg. LLF: 9806679.044576917
Iteration: 5, Func. Count: 56, Neg. LLF: 99.81173466564124
Iteration: 6, Func. Count: 67, Neg. LLF: 99.35236817934486
Iteration: 7, Func. Count: 78, Neg. LLF: 99.18861274163879
Iteration: 8, Func. Count: 89, Neg. LLF: 100.94344246568497
Iteration: 9, Func. Count: 100, Neg. LLF: 99.19021586130548
Iteration: 10, Func. Count: 112, Neg. LLF: 99.09087978341546
Iteration: 11, Func. Count: 123, Neg. LLF: 98.5808051505724
Iteration: 12, Func. Count: 133, Neg. LLF: 98.54824459955611
Iteration: 13, Func. Count: 143, Neg. LLF: 98.52870875681877
Iteration: 14, Func. Count: 153, Neg. LLF: 98.51334572026386
Iteration: 15, Func. Count: 163, Neg. LLF: 98.51247753826829
Iteration: 16, Func. Count: 173, Neg. LLF: 98.51245921466011
Iteration: 17, Func. Count: 182, Neg. LLF: 98.51245921464873
Optimization terminated successfully (Exit mode 0)
Current function value: 98.51245921466011
Iterations: 17
Function evaluations: 182
Gradient evaluations: 17
Iteration: 1, Func. Count: 12, Neg. LLF: 102.41366081509732
Iteration: 2, Func. Count: 24, Neg. LLF: 256.8573357914824
Iteration: 3, Func. Count: 36, Neg. LLF: 104.97760171623739
Iteration: 4, Func. Count: 50, Neg. LLF: 119.59735979757409
Iteration: 5, Func. Count: 62, Neg. LLF: 815.3053170587644
Iteration: 6, Func. Count: 75, Neg. LLF: 98.77665021024798
Iteration: 7, Func. Count: 86, Neg. LLF: 100.27763642372621
Iteration: 8, Func. Count: 99, Neg. LLF: 98.82728241924102
Iteration: 9, Func. Count: 111, Neg. LLF: 98.58528128980302
Iteration: 10, Func. Count: 123, Neg. LLF: 98.63164619459677
Iteration: 11, Func. Count: 135, Neg. LLF: 98.51283449611117
Iteration: 12, Func. Count: 146, Neg. LLF: 98.51252934394446
Iteration: 13, Func. Count: 157, Neg. LLF: 98.51248457824349
Iteration: 14, Func. Count: 168, Neg. LLF: 98.51246503388217
Iteration: 15, Func. Count: 179, Neg. LLF: 98.51245952019595
Iteration: 16, Func. Count: 189, Neg. LLF: 98.51245962316429
Optimization terminated successfully (Exit mode 0)
Current function value: 98.51245952019595
Iterations: 16
Function evaluations: 189
Gradient evaluations: 16
Iteration: 1, Func. Count: 13, Neg. LLF: 102.73548815004929
Iteration: 2, Func. Count: 26, Neg. LLF: 270.1856811921234
Iteration: 3, Func. Count: 39, Neg. LLF: 107.99610228478741
Iteration: 4, Func. Count: 53, Neg. LLF: 2237.406670547649
Iteration: 5, Func. Count: 66, Neg. LLF: 98.83478043957845
Iteration: 6, Func. Count: 78, Neg. LLF: 113.397044404731
Iteration: 7, Func. Count: 92, Neg. LLF: 98.85628128223566
Iteration: 8, Func. Count: 105, Neg. LLF: 99.02815775017507
Iteration: 9, Func. Count: 119, Neg. LLF: 98.57014336868737
Iteration: 10, Func. Count: 132, Neg. LLF: 100.49573950413033
Iteration: 11, Func. Count: 145, Neg. LLF: 98.51440421750564
Iteration: 12, Func. Count: 157, Neg. LLF: 98.5128860800442
Iteration: 13, Func. Count: 169, Neg. LLF: 98.51265280672699
Iteration: 14, Func. Count: 181, Neg. LLF: 98.51247466979807
Iteration: 15, Func. Count: 193, Neg. LLF: 98.51246541437996
Iteration: 16, Func. Count: 205, Neg. LLF: 98.51246198223649
Iteration: 17, Func. Count: 217, Neg. LLF: 98.51245953170036
Iteration: 18, Func. Count: 228, Neg. LLF: 98.5124595522089
Optimization terminated successfully (Exit mode 0)
Current function value: 98.51245953170036
Iterations: 18
Function evaluations: 228
Gradient evaluations: 18
Iteration: 1, Func. Count: 14, Neg. LLF: 103.39755231639076
Iteration: 2, Func. Count: 28, Neg. LLF: 270.1923039258204
Iteration: 3, Func. Count: 42, Neg. LLF: 111.37664518120782
Iteration: 4, Func. Count: 57, Neg. LLF: 5618780.181771061
Iteration: 5, Func. Count: 71, Neg. LLF: 102.43853082180055
Iteration: 6, Func. Count: 85, Neg. LLF: 98.6527890804241
Iteration: 7, Func. Count: 98, Neg. LLF: 101.74655418404487
Iteration: 8, Func. Count: 112, Neg. LLF: 99.85089087229287
Iteration: 9, Func. Count: 126, Neg. LLF: 98.58425619562104
Iteration: 10, Func. Count: 140, Neg. LLF: 100.1623186571199
Iteration: 11, Func. Count: 154, Neg. LLF: 98.51489690921274
Iteration: 12, Func. Count: 167, Neg. LLF: 98.51284892135872
Iteration: 13, Func. Count: 180, Neg. LLF: 98.51263300165816
Iteration: 14, Func. Count: 193, Neg. LLF: 98.5125553439445
Iteration: 15, Func. Count: 206, Neg. LLF: 98.51249720549936
Iteration: 16, Func. Count: 219, Neg. LLF: 98.51246016991267
Iteration: 17, Func. Count: 232, Neg. LLF: 98.51245942057191
Optimization terminated successfully (Exit mode 0)
Current function value: 98.51245942057191
Iterations: 17
Function evaluations: 232
Gradient evaluations: 17
Iteration: 1, Func. Count: 15, Neg. LLF: 103.49913794310226
Iteration: 2, Func. Count: 30, Neg. LLF: 263.42297933767134
Iteration: 3, Func. Count: 45, Neg. LLF: 110.85036482908086
Iteration: 4, Func. Count: 61, Neg. LLF: 5610915.443053801
Iteration: 5, Func. Count: 76, Neg. LLF: 108.81543306426438
Iteration: 6, Func. Count: 92, Neg. LLF: 98.77418250800689
Iteration: 7, Func. Count: 106, Neg. LLF: 101.61684139608809
Iteration: 8, Func. Count: 122, Neg. LLF: 100.08708470456041
Iteration: 9, Func. Count: 137, Neg. LLF: 98.57821613938839
Iteration: 10, Func. Count: 151, Neg. LLF: 98.70752367274558
Iteration: 11, Func. Count: 166, Neg. LLF: 98.60092844767718
Iteration: 12, Func. Count: 181, Neg. LLF: 98.5130723180272
Iteration: 13, Func. Count: 195, Neg. LLF: 98.51288181208578
Iteration: 14, Func. Count: 209, Neg. LLF: 98.51284051359839
Iteration: 15, Func. Count: 224, Neg. LLF: 98.5125076756117
Iteration: 16, Func. Count: 238, Neg. LLF: 98.51247158516964
Iteration: 17, Func. Count: 252, Neg. LLF: 98.51246338407417
Iteration: 18, Func. Count: 266, Neg. LLF: 98.51246134361385
Iteration: 19, Func. Count: 280, Neg. LLF: 98.51245939336611
Iteration: 20, Func. Count: 293, Neg. LLF: 98.51245945977068
Optimization terminated successfully (Exit mode 0)
Current function value: 98.51245939336611
Iterations: 20
Function evaluations: 293
Gradient evaluations: 20
Iteration: 1, Func. Count: 8, Neg. LLF: 112.9644329311539
Iteration: 2, Func. Count: 17, Neg. LLF: 1755.1521252569391
Iteration: 3, Func. Count: 25, Neg. LLF: 1359.143965557834
Iteration: 4, Func. Count: 33, Neg. LLF: 124.63110835212348
Iteration: 5, Func. Count: 41, Neg. LLF: 154.17219923175296
Iteration: 6, Func. Count: 49, Neg. LLF: 101.5563980615624
Iteration: 7, Func. Count: 56, Neg. LLF: 101.34646437839477
Iteration: 8, Func. Count: 63, Neg. LLF: 101.32449992350195
Iteration: 9, Func. Count: 70, Neg. LLF: 101.30350820234685
Iteration: 10, Func. Count: 77, Neg. LLF: 101.29907659606587
Iteration: 11, Func. Count: 84, Neg. LLF: 101.2986996129932
Iteration: 12, Func. Count: 91, Neg. LLF: 101.29869193888064
Iteration: 13, Func. Count: 97, Neg. LLF: 101.2986920577458
Optimization terminated successfully (Exit mode 0)
Current function value: 101.29869193888064
Iterations: 13
Function evaluations: 97
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 175.75576126094015
Iteration: 2, Func. Count: 20, Neg. LLF: 103.51536642391022
Iteration: 3, Func. Count: 28, Neg. LLF: 105.23708472768496
Iteration: 4, Func. Count: 37, Neg. LLF: 103.31461695267657
Iteration: 5, Func. Count: 45, Neg. LLF: 103.2586714937238
Iteration: 6, Func. Count: 53, Neg. LLF: 103.25114364379341
Iteration: 7, Func. Count: 61, Neg. LLF: 103.25089419036361
Iteration: 8, Func. Count: 69, Neg. LLF: 104.3064784507056
Optimization terminated successfully (Exit mode 0)
Current function value: 103.2508938145132
Iterations: 9
Function evaluations: 72
Gradient evaluations: 8
Iteration: 1, Func. Count: 10, Neg. LLF: 171.1222525337431
Iteration: 2, Func. Count: 23, Neg. LLF: 103.56575663051986
Iteration: 3, Func. Count: 32, Neg. LLF: 103.3830968496595
Iteration: 4, Func. Count: 41, Neg. LLF: 171.5723972583654
Iteration: 5, Func. Count: 52, Neg. LLF: 103.29109272387338
Iteration: 6, Func. Count: 61, Neg. LLF: 103.28208946863215
Iteration: 7, Func. Count: 70, Neg. LLF: 103.2853687823902
Iteration: 8, Func. Count: 80, Neg. LLF: 103.28021018940763
Iteration: 9, Func. Count: 89, Neg. LLF: 103.27848419659277
Iteration: 10, Func. Count: 98, Neg. LLF: 103.27588686029098
Iteration: 11, Func. Count: 107, Neg. LLF: 103.27027422507417
Iteration: 12, Func. Count: 116, Neg. LLF: 103.26246992520551
Iteration: 13, Func. Count: 125, Neg. LLF: 103.25089564592452
Iteration: 14, Func. Count: 134, Neg. LLF: 103.3790905571775
Optimization terminated successfully (Exit mode 0)
Current function value: 103.25089552666915
Iterations: 15
Function evaluations: 137
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 169.60765103040762
Iteration: 2, Func. Count: 25, Neg. LLF: 103.48491291262468
Iteration: 3, Func. Count: 35, Neg. LLF: 103.30608699793571
Iteration: 4, Func. Count: 45, Neg. LLF: 103.29892796927938
Iteration: 5, Func. Count: 55, Neg. LLF: 103.49011589652198
Iteration: 6, Func. Count: 66, Neg. LLF: 103.29716837814996
Iteration: 7, Func. Count: 76, Neg. LLF: 103.29319499698735
Iteration: 8, Func. Count: 86, Neg. LLF: 103.28671810000017
Iteration: 9, Func. Count: 96, Neg. LLF: 103.27338294006236
Iteration: 10, Func. Count: 106, Neg. LLF: 103.26547923641574
Iteration: 11, Func. Count: 116, Neg. LLF: 103.26360292541581
Iteration: 12, Func. Count: 126, Neg. LLF: 103.26300898049016
Iteration: 13, Func. Count: 136, Neg. LLF: 103.25829397278017
Iteration: 14, Func. Count: 146, Neg. LLF: 103.25246070243729
Iteration: 15, Func. Count: 156, Neg. LLF: 103.25119344668965
Iteration: 16, Func. Count: 166, Neg. LLF: 103.25119738760677
Iteration: 17, Func. Count: 177, Neg. LLF: 103.25950713070263
Optimization terminated successfully (Exit mode 0)
Current function value: 103.25089564612153
Iterations: 18
Function evaluations: 180
Gradient evaluations: 17
Iteration: 1, Func. Count: 12, Neg. LLF: 103.30311151394719
Iteration: 2, Func. Count: 26, Neg. LLF: 521.9344217749833
Iteration: 3, Func. Count: 38, Neg. LLF: 2484.7855678873607
Iteration: 4, Func. Count: 50, Neg. LLF: 101.89411166735641
Iteration: 5, Func. Count: 61, Neg. LLF: 117.76580924096292
Iteration: 6, Func. Count: 74, Neg. LLF: 105.20077771914492
Iteration: 7, Func. Count: 87, Neg. LLF: 101.55469471920496
Iteration: 8, Func. Count: 99, Neg. LLF: 101.31848702427232
Iteration: 9, Func. Count: 110, Neg. LLF: 101.3079438137777
Iteration: 10, Func. Count: 121, Neg. LLF: 101.3042080793505
Iteration: 11, Func. Count: 132, Neg. LLF: 101.30150984570507
Iteration: 12, Func. Count: 143, Neg. LLF: 101.30085984419617
Iteration: 13, Func. Count: 154, Neg. LLF: 101.29937789952106
Iteration: 14, Func. Count: 165, Neg. LLF: 101.29880729023103
Iteration: 15, Func. Count: 176, Neg. LLF: 101.29869394549898
Iteration: 16, Func. Count: 187, Neg. LLF: 101.29869043889227
Iteration: 17, Func. Count: 197, Neg. LLF: 101.29869044083438
Optimization terminated successfully (Exit mode 0)
Current function value: 101.29869043889227
Iterations: 17
Function evaluations: 197
Gradient evaluations: 17
Iteration: 1, Func. Count: 9, Neg. LLF: 112.8668406924356
Iteration: 2, Func. Count: 19, Neg. LLF: 283.9365063753267
Iteration: 3, Func. Count: 28, Neg. LLF: 2624.8387173617343
Iteration: 4, Func. Count: 37, Neg. LLF: 127.70716507284294
Iteration: 5, Func. Count: 46, Neg. LLF: 140.64990295077902
Iteration: 6, Func. Count: 55, Neg. LLF: 101.55270308177374
Iteration: 7, Func. Count: 63, Neg. LLF: 101.35025328231403
Iteration: 8, Func. Count: 71, Neg. LLF: 101.33075070925561
Iteration: 9, Func. Count: 79, Neg. LLF: 101.30559752079097
Iteration: 10, Func. Count: 87, Neg. LLF: 101.2990438948074
Iteration: 11, Func. Count: 95, Neg. LLF: 101.29870219075035
Iteration: 12, Func. Count: 103, Neg. LLF: 101.29869402385292
Iteration: 13, Func. Count: 111, Neg. LLF: 101.2986926111098
Iteration: 14, Func. Count: 119, Neg. LLF: 101.2986906070678
Iteration: 15, Func. Count: 126, Neg. LLF: 101.29869062745189
Optimization terminated successfully (Exit mode 0)
Current function value: 101.2986906070678
Iterations: 15
Function evaluations: 126
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 103.09194263145918
Iteration: 2, Func. Count: 21, Neg. LLF: 160.9112827828955
Iteration: 3, Func. Count: 31, Neg. LLF: 111.82292229857609
Iteration: 4, Func. Count: 41, Neg. LLF: 101.53858440977821
Iteration: 5, Func. Count: 50, Neg. LLF: 101.90934966788912
Iteration: 6, Func. Count: 61, Neg. LLF: 101.32725530729161
Iteration: 7, Func. Count: 70, Neg. LLF: 101.29913505585287
Iteration: 8, Func. Count: 79, Neg. LLF: 101.29887602025981
Iteration: 9, Func. Count: 88, Neg. LLF: 101.29877893559305
Iteration: 10, Func. Count: 97, Neg. LLF: 101.29872559586013
Iteration: 11, Func. Count: 106, Neg. LLF: 101.29870994851736
Iteration: 12, Func. Count: 115, Neg. LLF: 101.2986949511234
Iteration: 13, Func. Count: 124, Neg. LLF: 101.2986910421918
Iteration: 14, Func. Count: 133, Neg. LLF: 101.29869042948233
Optimization terminated successfully (Exit mode 0)
Current function value: 101.29869042948233
Iterations: 14
Function evaluations: 133
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 173.5336754047693
Iteration: 2, Func. Count: 25, Neg. LLF: 103.74801900898723
Iteration: 3, Func. Count: 35, Neg. LLF: 103.45253142573424
Iteration: 4, Func. Count: 45, Neg. LLF: 180.98897823348153
Iteration: 5, Func. Count: 57, Neg. LLF: 103.38968226417524
Iteration: 6, Func. Count: 68, Neg. LLF: 103.27995426836104
Iteration: 7, Func. Count: 78, Neg. LLF: 103.2776298949584
Iteration: 8, Func. Count: 88, Neg. LLF: 103.27536786008233
Iteration: 9, Func. Count: 98, Neg. LLF: 103.27120109618865
Iteration: 10, Func. Count: 108, Neg. LLF: 103.2635704126766
Iteration: 11, Func. Count: 118, Neg. LLF: 103.25100667141562
Iteration: 12, Func. Count: 128, Neg. LLF: 103.25096611291428
Iteration: 13, Func. Count: 138, Neg. LLF: 103.2509407902918
Iteration: 14, Func. Count: 148, Neg. LLF: 103.25089316113764
Iteration: 15, Func. Count: 158, Neg. LLF: 103.25190660571683
Optimization terminated successfully (Exit mode 0)
Current function value: 103.25089316059285
Iterations: 16
Function evaluations: 161
Gradient evaluations: 15
Iteration: 1, Func. Count: 12, Neg. LLF: 172.51025747152562
Iteration: 2, Func. Count: 27, Neg. LLF: 103.62194255943365
Iteration: 3, Func. Count: 38, Neg. LLF: 103.49619334141921
Iteration: 4, Func. Count: 49, Neg. LLF: 114.33594382415066
Iteration: 5, Func. Count: 61, Neg. LLF: 103.3190893132446
Iteration: 6, Func. Count: 72, Neg. LLF: 103.30462391766362
Iteration: 7, Func. Count: 83, Neg. LLF: 103.30139243885247
Iteration: 8, Func. Count: 94, Neg. LLF: 103.2968987455632
Iteration: 9, Func. Count: 105, Neg. LLF: 103.29648004818341
Iteration: 10, Func. Count: 116, Neg. LLF: 103.29618543813534
Iteration: 11, Func. Count: 127, Neg. LLF: 103.29578276306583
Iteration: 12, Func. Count: 138, Neg. LLF: 103.29232749965254
Iteration: 13, Func. Count: 149, Neg. LLF: 103.28421837460482
Iteration: 14, Func. Count: 160, Neg. LLF: 103.27152964144037
Iteration: 15, Func. Count: 171, Neg. LLF: 103.25329219303099
Iteration: 16, Func. Count: 182, Neg. LLF: 103.25080075876133
Iteration: 17, Func. Count: 193, Neg. LLF: 103.25091121426408
Iteration: 18, Func. Count: 204, Neg. LLF: 103.2507605045184
Optimization terminated successfully (Exit mode 0)
Current function value: 103.25091121350296
Iterations: 18
Function evaluations: 214
Gradient evaluations: 18
Iteration: 1, Func. Count: 13, Neg. LLF: 103.47129310529728
Iteration: 2, Func. Count: 28, Neg. LLF: 604.859005969236
Iteration: 3, Func. Count: 41, Neg. LLF: 4834.894654759276
Iteration: 4, Func. Count: 54, Neg. LLF: 101.95967282435338
Iteration: 5, Func. Count: 66, Neg. LLF: 117.33368712248831
Iteration: 6, Func. Count: 80, Neg. LLF: 105.74256942155954
Iteration: 7, Func. Count: 94, Neg. LLF: 101.4371884446775
Iteration: 8, Func. Count: 106, Neg. LLF: 101.31617457042948
Iteration: 9, Func. Count: 118, Neg. LLF: 101.31037259992335
Iteration: 10, Func. Count: 130, Neg. LLF: 101.30311532358638
Iteration: 11, Func. Count: 142, Neg. LLF: 101.30109002012557
Iteration: 12, Func. Count: 154, Neg. LLF: 101.3001333443709
Iteration: 13, Func. Count: 166, Neg. LLF: 101.29969817274589
Iteration: 14, Func. Count: 178, Neg. LLF: 101.29934322266485
Iteration: 15, Func. Count: 190, Neg. LLF: 101.29890639134562
Iteration: 16, Func. Count: 202, Neg. LLF: 101.29872246224758
Iteration: 17, Func. Count: 214, Neg. LLF: 101.29869149404966
Iteration: 18, Func. Count: 226, Neg. LLF: 101.2986904131314
Iteration: 19, Func. Count: 237, Neg. LLF: 101.29869041506608
Optimization terminated successfully (Exit mode 0)
Current function value: 101.2986904131314
Iterations: 19
Function evaluations: 237
Gradient evaluations: 19
Iteration: 1, Func. Count: 10, Neg. LLF: 107.19074474713268
Iteration: 2, Func. Count: 21, Neg. LLF: 418.1672506825689
Iteration: 3, Func. Count: 31, Neg. LLF: 9530458.183720717
Iteration: 4, Func. Count: 41, Neg. LLF: 568.0633667195159
Iteration: 5, Func. Count: 51, Neg. LLF: 104.70567110337889
Iteration: 6, Func. Count: 61, Neg. LLF: 99.31957536119322
Iteration: 7, Func. Count: 71, Neg. LLF: 99.68644055203045
Iteration: 8, Func. Count: 81, Neg. LLF: 99.10540932995895
Iteration: 9, Func. Count: 91, Neg. LLF: 98.94117036830077
Iteration: 10, Func. Count: 100, Neg. LLF: 100.35470054235218
Iteration: 11, Func. Count: 110, Neg. LLF: 98.90375828284088
Iteration: 12, Func. Count: 119, Neg. LLF: 98.89412911622661
Iteration: 13, Func. Count: 128, Neg. LLF: 98.88896232884163
Iteration: 14, Func. Count: 137, Neg. LLF: 98.88879103781282
Iteration: 15, Func. Count: 146, Neg. LLF: 98.88878413811413
Iteration: 16, Func. Count: 154, Neg. LLF: 98.8887841381112
Optimization terminated successfully (Exit mode 0)
Current function value: 98.88878413811413
Iterations: 16
Function evaluations: 154
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 104.4290115835162
Iteration: 2, Func. Count: 22, Neg. LLF: 117.70743746663449
Iteration: 3, Func. Count: 33, Neg. LLF: 100.5949074458945
Iteration: 4, Func. Count: 43, Neg. LLF: 113.80757214367516
Iteration: 5, Func. Count: 55, Neg. LLF: 345.51593617638486
Iteration: 6, Func. Count: 66, Neg. LLF: 3078.4270279578295
Iteration: 7, Func. Count: 77, Neg. LLF: 2597.8478005905163
Iteration: 8, Func. Count: 88, Neg. LLF: 99.09449777187932
Iteration: 9, Func. Count: 98, Neg. LLF: 102.05695894213788
Iteration: 10, Func. Count: 110, Neg. LLF: 98.94802475073357
Iteration: 11, Func. Count: 120, Neg. LLF: 98.91028319652574
Iteration: 12, Func. Count: 130, Neg. LLF: 98.91288323381426
Iteration: 13, Func. Count: 141, Neg. LLF: 98.89285259400567
Iteration: 14, Func. Count: 151, Neg. LLF: 98.88923547719027
Iteration: 15, Func. Count: 161, Neg. LLF: 98.88895225674723
Iteration: 16, Func. Count: 171, Neg. LLF: 98.88879710157067
Iteration: 17, Func. Count: 181, Neg. LLF: 98.88878513493424
Iteration: 18, Func. Count: 191, Neg. LLF: 98.88878422221327
Optimization terminated successfully (Exit mode 0)
Current function value: 98.88878422221327
Iterations: 18
Function evaluations: 191
Gradient evaluations: 18
Iteration: 1, Func. Count: 12, Neg. LLF: 103.04567697043194
Iteration: 2, Func. Count: 24, Neg. LLF: 127.36946702076479
Iteration: 3, Func. Count: 36, Neg. LLF: 103.18934476863193
Iteration: 4, Func. Count: 50, Neg. LLF: 133.06437235369418
Iteration: 5, Func. Count: 63, Neg. LLF: 104.75084664012275
Iteration: 6, Func. Count: 75, Neg. LLF: 100.0659319253494
Iteration: 7, Func. Count: 87, Neg. LLF: 98.8959905085788
Iteration: 8, Func. Count: 98, Neg. LLF: 99.09926988589248
Iteration: 9, Func. Count: 111, Neg. LLF: 99.72580887375133
Iteration: 10, Func. Count: 123, Neg. LLF: 98.87996643170767
Iteration: 11, Func. Count: 134, Neg. LLF: 98.87941705174222
Iteration: 12, Func. Count: 145, Neg. LLF: 98.87931222685701
Iteration: 13, Func. Count: 156, Neg. LLF: 98.87931042542351
Iteration: 14, Func. Count: 166, Neg. LLF: 98.87931042542363
Optimization terminated successfully (Exit mode 0)
Current function value: 98.87931042542351
Iterations: 14
Function evaluations: 166
Gradient evaluations: 14
Iteration: 1, Func. Count: 13, Neg. LLF: 102.86378552892718
Iteration: 2, Func. Count: 26, Neg. LLF: 162.83323755873988
Iteration: 3, Func. Count: 39, Neg. LLF: 106.78520275037216
Iteration: 4, Func. Count: 53, Neg. LLF: 118.66169136705666
Iteration: 5, Func. Count: 66, Neg. LLF: 103.06697297994708
Iteration: 6, Func. Count: 79, Neg. LLF: 99.45956861647069
Iteration: 7, Func. Count: 92, Neg. LLF: 99.0070969923319
Iteration: 8, Func. Count: 104, Neg. LLF: 99.0982539443426
Iteration: 9, Func. Count: 117, Neg. LLF: 104.68850334338431
Iteration: 10, Func. Count: 132, Neg. LLF: 99.45965023095842
Iteration: 11, Func. Count: 145, Neg. LLF: 98.77162106858627
Iteration: 12, Func. Count: 157, Neg. LLF: 98.76734450708557
Iteration: 13, Func. Count: 169, Neg. LLF: 98.76623814847501
Iteration: 14, Func. Count: 181, Neg. LLF: 98.76610242847408
Iteration: 15, Func. Count: 193, Neg. LLF: 98.76607195514343
Iteration: 16, Func. Count: 205, Neg. LLF: 98.76606917352345
Iteration: 17, Func. Count: 216, Neg. LLF: 98.76606917348103
Optimization terminated successfully (Exit mode 0)
Current function value: 98.76606917352345
Iterations: 17
Function evaluations: 216
Gradient evaluations: 17
Iteration: 1, Func. Count: 14, Neg. LLF: 102.38506360245552
Iteration: 2, Func. Count: 28, Neg. LLF: 149.729356833949
Iteration: 3, Func. Count: 42, Neg. LLF: 107.88765263445738
Iteration: 4, Func. Count: 57, Neg. LLF: 126.20326273346346
Iteration: 5, Func. Count: 72, Neg. LLF: 160.17732666982738
Iteration: 6, Func. Count: 86, Neg. LLF: 99.89992048674135
Iteration: 7, Func. Count: 100, Neg. LLF: 98.84140869908916
Iteration: 8, Func. Count: 113, Neg. LLF: 98.94296563034756
Iteration: 9, Func. Count: 127, Neg. LLF: 100.14703380443505
Iteration: 10, Func. Count: 142, Neg. LLF: 99.80996744973457
Iteration: 11, Func. Count: 156, Neg. LLF: 98.76854320959256
Iteration: 12, Func. Count: 169, Neg. LLF: 98.76621496632276
Iteration: 13, Func. Count: 182, Neg. LLF: 98.76607588447658
Iteration: 14, Func. Count: 195, Neg. LLF: 98.76606903516614
Iteration: 15, Func. Count: 207, Neg. LLF: 98.76606906081719
Optimization terminated successfully (Exit mode 0)
Current function value: 98.76606903516614
Iterations: 15
Function evaluations: 207
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 110.7060531453696
Iteration: 2, Func. Count: 23, Neg. LLF: 210.4540099620749
Iteration: 3, Func. Count: 34, Neg. LLF: 5627221.644009311
Iteration: 4, Func. Count: 45, Neg. LLF: 151.491525458114
Iteration: 5, Func. Count: 56, Neg. LLF: 103.57201640598075
Iteration: 6, Func. Count: 67, Neg. LLF: 105.41990175040671
Iteration: 7, Func. Count: 78, Neg. LLF: 99.03909859498043
Iteration: 8, Func. Count: 88, Neg. LLF: 98.90180036871529
Iteration: 9, Func. Count: 99, Neg. LLF: 112.93010365948278
Iteration: 10, Func. Count: 112, Neg. LLF: 99.50422750632282
Iteration: 11, Func. Count: 124, Neg. LLF: 98.6274056783551
Iteration: 12, Func. Count: 134, Neg. LLF: 98.57048271364127
Iteration: 13, Func. Count: 144, Neg. LLF: 98.5545789447522
Iteration: 14, Func. Count: 154, Neg. LLF: 98.54981363050034
Iteration: 15, Func. Count: 164, Neg. LLF: 98.54963277378387
Iteration: 16, Func. Count: 174, Neg. LLF: 98.54961098970826
Iteration: 17, Func. Count: 184, Neg. LLF: 98.54960129390452
Iteration: 18, Func. Count: 194, Neg. LLF: 98.54959940437482
Iteration: 19, Func. Count: 203, Neg. LLF: 98.5495993183199
Optimization terminated successfully (Exit mode 0)
Current function value: 98.54959940437482
Iterations: 19
Function evaluations: 203
Gradient evaluations: 19
Iteration: 1, Func. Count: 12, Neg. LLF: 101.58370397090282
Iteration: 2, Func. Count: 24, Neg. LLF: 125.07214129757692
Iteration: 3, Func. Count: 36, Neg. LLF: 105.13305596822758
Iteration: 4, Func. Count: 49, Neg. LLF: 405.70944696865456
Iteration: 5, Func. Count: 61, Neg. LLF: 101.34851006505009
Iteration: 6, Func. Count: 73, Neg. LLF: 99.95715126355313
Iteration: 7, Func. Count: 85, Neg. LLF: 98.72103595196182
Iteration: 8, Func. Count: 96, Neg. LLF: 99.20414522298405
Iteration: 9, Func. Count: 109, Neg. LLF: 101.42562481162997
Iteration: 10, Func. Count: 122, Neg. LLF: 98.5708032987729
Iteration: 11, Func. Count: 133, Neg. LLF: 98.56289106392026
Iteration: 12, Func. Count: 144, Neg. LLF: 98.55047731884642
Iteration: 13, Func. Count: 155, Neg. LLF: 98.549642119357
Iteration: 14, Func. Count: 166, Neg. LLF: 98.54960144852657
Iteration: 15, Func. Count: 177, Neg. LLF: 98.54959964923503
Iteration: 16, Func. Count: 187, Neg. LLF: 98.54959975010141
Optimization terminated successfully (Exit mode 0)
Current function value: 98.54959964923503
Iterations: 16
Function evaluations: 187
Gradient evaluations: 16
Iteration: 1, Func. Count: 13, Neg. LLF: 101.28054411578178
Iteration: 2, Func. Count: 26, Neg. LLF: 115.04694303783837
Iteration: 3, Func. Count: 40, Neg. LLF: 109.65792416271333
Iteration: 4, Func. Count: 55, Neg. LLF: 327014.738973475
Iteration: 5, Func. Count: 68, Neg. LLF: 65244.49861546218
Iteration: 6, Func. Count: 81, Neg. LLF: 98.59636107591257
Iteration: 7, Func. Count: 93, Neg. LLF: 101.31889907243148
Iteration: 8, Func. Count: 107, Neg. LLF: 98.55501760420113
Iteration: 9, Func. Count: 119, Neg. LLF: 98.5540903444453
Iteration: 10, Func. Count: 132, Neg. LLF: 98.54963595432504
Iteration: 11, Func. Count: 144, Neg. LLF: 98.54960604023489
Iteration: 12, Func. Count: 156, Neg. LLF: 98.54959968209666
Iteration: 13, Func. Count: 167, Neg. LLF: 98.5495996824563
Optimization terminated successfully (Exit mode 0)
Current function value: 98.54959968209666
Iterations: 13
Function evaluations: 167
Gradient evaluations: 13
Iteration: 1, Func. Count: 14, Neg. LLF: 101.21120718243533
Iteration: 2, Func. Count: 28, Neg. LLF: 124.02409350970669
Iteration: 3, Func. Count: 43, Neg. LLF: 114.76454253743685
Iteration: 4, Func. Count: 58, Neg. LLF: 12270618.990924703
Iteration: 5, Func. Count: 72, Neg. LLF: 1553.6084438142655
Iteration: 6, Func. Count: 87, Neg. LLF: 98.59073196768081
Iteration: 7, Func. Count: 100, Neg. LLF: 99.10383506246275
Iteration: 8, Func. Count: 114, Neg. LLF: 99.34955669927955
Iteration: 9, Func. Count: 129, Neg. LLF: 98.56540131793506
Iteration: 10, Func. Count: 143, Neg. LLF: 98.5521263207452
Iteration: 11, Func. Count: 156, Neg. LLF: 98.55022382363475
Iteration: 12, Func. Count: 169, Neg. LLF: 98.54986713234311
Iteration: 13, Func. Count: 182, Neg. LLF: 98.54964747016567
Iteration: 14, Func. Count: 195, Neg. LLF: 98.54960288854086
Iteration: 15, Func. Count: 208, Neg. LLF: 98.54959979978833
Iteration: 16, Func. Count: 221, Neg. LLF: 98.54959927954476
Optimization terminated successfully (Exit mode 0)
Current function value: 98.54959927954476
Iterations: 16
Function evaluations: 221
Gradient evaluations: 16
Iteration: 1, Func. Count: 15, Neg. LLF: 101.1374497269577
Iteration: 2, Func. Count: 30, Neg. LLF: 119.67663829222717
Iteration: 3, Func. Count: 46, Neg. LLF: 117.80046324813853
Iteration: 4, Func. Count: 62, Neg. LLF: 12572421.85869436
Iteration: 5, Func. Count: 77, Neg. LLF: 1246.8834963205154
Iteration: 6, Func. Count: 92, Neg. LLF: 98.99195239895934
Iteration: 7, Func. Count: 106, Neg. LLF: 100.2682247807261
Iteration: 8, Func. Count: 122, Neg. LLF: 99.36231654814841
Iteration: 9, Func. Count: 137, Neg. LLF: 98.60405013410818
Iteration: 10, Func. Count: 151, Neg. LLF: 100.76196946523064
Iteration: 11, Func. Count: 166, Neg. LLF: 98.5603933634784
Iteration: 12, Func. Count: 181, Neg. LLF: 98.55629230035957
Iteration: 13, Func. Count: 196, Neg. LLF: 98.55062357488066
Iteration: 14, Func. Count: 210, Neg. LLF: 98.54991433880754
Iteration: 15, Func. Count: 224, Neg. LLF: 98.54965394090144
Iteration: 16, Func. Count: 238, Neg. LLF: 98.54960091026089
Iteration: 17, Func. Count: 252, Neg. LLF: 98.54959939405886
Iteration: 18, Func. Count: 265, Neg. LLF: 98.54959946137781
Optimization terminated successfully (Exit mode 0)
Current function value: 98.54959939405886
Iterations: 18
Function evaluations: 265
Gradient evaluations: 18
Iteration: 1, Func. Count: 12, Neg. LLF: 112.27608004890301
Iteration: 2, Func. Count: 25, Neg. LLF: 268.7416321140518
Iteration: 3, Func. Count: 37, Neg. LLF: 5657446.229636698
Iteration: 4, Func. Count: 49, Neg. LLF: 119.65700735591045
Iteration: 5, Func. Count: 61, Neg. LLF: 107.04667753672854
Iteration: 6, Func. Count: 73, Neg. LLF: 100.89381595719925
Iteration: 7, Func. Count: 85, Neg. LLF: 98.9679092488972
Iteration: 8, Func. Count: 96, Neg. LLF: 98.83421837612151
Iteration: 9, Func. Count: 107, Neg. LLF: 104.96789397618247
Iteration: 10, Func. Count: 122, Neg. LLF: 100.64783327364597
Iteration: 11, Func. Count: 136, Neg. LLF: 98.65820692209441
Iteration: 12, Func. Count: 147, Neg. LLF: 100.41732463937184
Iteration: 13, Func. Count: 159, Neg. LLF: 98.56987274600947
Iteration: 14, Func. Count: 170, Neg. LLF: 98.54325804840333
Iteration: 15, Func. Count: 181, Neg. LLF: 98.5322265063458
Iteration: 16, Func. Count: 192, Neg. LLF: 98.51366337036836
Iteration: 17, Func. Count: 203, Neg. LLF: 98.51256209365168
Iteration: 18, Func. Count: 214, Neg. LLF: 98.512465431006
Iteration: 19, Func. Count: 225, Neg. LLF: 98.51245976176533
Iteration: 20, Func. Count: 236, Neg. LLF: 98.51245915731468
Optimization terminated successfully (Exit mode 0)
Current function value: 98.51245915731468
Iterations: 20
Function evaluations: 236
Gradient evaluations: 20
Iteration: 1, Func. Count: 13, Neg. LLF: 102.62321673879876
Iteration: 2, Func. Count: 26, Neg. LLF: 117.6702457801228
Iteration: 3, Func. Count: 39, Neg. LLF: 106.03830931474982
Iteration: 4, Func. Count: 54, Neg. LLF: 642.3043978488494
Iteration: 5, Func. Count: 67, Neg. LLF: 128.72193526852763
Iteration: 6, Func. Count: 80, Neg. LLF: 101.09870737575223
Iteration: 7, Func. Count: 93, Neg. LLF: 101.84704431369269
Iteration: 8, Func. Count: 106, Neg. LLF: 100.79179904323378
Iteration: 9, Func. Count: 119, Neg. LLF: 98.61066609279678
Iteration: 10, Func. Count: 131, Neg. LLF: 98.61304244651474
Iteration: 11, Func. Count: 144, Neg. LLF: 98.55719576800213
Iteration: 12, Func. Count: 157, Neg. LLF: 98.51463341323384
Iteration: 13, Func. Count: 169, Neg. LLF: 98.51257119653206
Iteration: 14, Func. Count: 181, Neg. LLF: 98.51248211787396
Iteration: 15, Func. Count: 193, Neg. LLF: 98.51246007739263
Iteration: 16, Func. Count: 205, Neg. LLF: 98.51245918409353
Optimization terminated successfully (Exit mode 0)
Current function value: 98.51245918409353
Iterations: 16
Function evaluations: 205
Gradient evaluations: 16
Iteration: 1, Func. Count: 14, Neg. LLF: 102.3379836104391
Iteration: 2, Func. Count: 28, Neg. LLF: 126.66988000175478
Iteration: 3, Func. Count: 42, Neg. LLF: 128.6696646887419
Iteration: 4, Func. Count: 56, Neg. LLF: 244.72215313920765
Iteration: 5, Func. Count: 71, Neg. LLF: 11610516.412273115
Iteration: 6, Func. Count: 85, Neg. LLF: 112.45708726213805
Iteration: 7, Func. Count: 100, Neg. LLF: 99.91376762152726
Iteration: 8, Func. Count: 114, Neg. LLF: 98.71863131318167
Iteration: 9, Func. Count: 127, Neg. LLF: 98.59530881429266
Iteration: 10, Func. Count: 140, Neg. LLF: 98.706310111572
Iteration: 11, Func. Count: 154, Neg. LLF: 98.51803637965529
Iteration: 12, Func. Count: 167, Neg. LLF: 98.51555124323964
Iteration: 13, Func. Count: 180, Neg. LLF: 98.51297574079146
Iteration: 14, Func. Count: 193, Neg. LLF: 98.51270077855088
Iteration: 15, Func. Count: 206, Neg. LLF: 98.51253194346684
Iteration: 16, Func. Count: 219, Neg. LLF: 98.51245951061374
Iteration: 17, Func. Count: 231, Neg. LLF: 98.51245953115868
Optimization terminated successfully (Exit mode 0)
Current function value: 98.51245951061374
Iterations: 17
Function evaluations: 231
Gradient evaluations: 17
Iteration: 1, Func. Count: 15, Neg. LLF: 102.50516115335509
Iteration: 2, Func. Count: 30, Neg. LLF: 141.30035005171672
Iteration: 3, Func. Count: 45, Neg. LLF: 114.72505452516606
Iteration: 4, Func. Count: 60, Neg. LLF: 9399969.66107279
Iteration: 5, Func. Count: 75, Neg. LLF: 221.31115167372616
Iteration: 6, Func. Count: 91, Neg. LLF: 99.44369870624482
Iteration: 7, Func. Count: 106, Neg. LLF: 99.78238302725183
Iteration: 8, Func. Count: 121, Neg. LLF: 98.69106146373137
Iteration: 9, Func. Count: 135, Neg. LLF: 98.69003070647649
Iteration: 10, Func. Count: 150, Neg. LLF: 98.89636604802152
Iteration: 11, Func. Count: 165, Neg. LLF: 98.52006033410521
Iteration: 12, Func. Count: 180, Neg. LLF: 98.51344907041687
Iteration: 13, Func. Count: 194, Neg. LLF: 98.51260675791703
Iteration: 14, Func. Count: 208, Neg. LLF: 98.51256765413564
Iteration: 15, Func. Count: 222, Neg. LLF: 98.5125093381235
Iteration: 16, Func. Count: 236, Neg. LLF: 98.51248108676542
Iteration: 17, Func. Count: 250, Neg. LLF: 98.51245980820072
Iteration: 18, Func. Count: 264, Neg. LLF: 98.5124591657135
Optimization terminated successfully (Exit mode 0)
Current function value: 98.5124591657135
Iterations: 18
Function evaluations: 264
Gradient evaluations: 18
Iteration: 1, Func. Count: 16, Neg. LLF: 102.62089855441582
Iteration: 2, Func. Count: 32, Neg. LLF: 133.81630325952642
Iteration: 3, Func. Count: 48, Neg. LLF: 113.24801405624629
Iteration: 4, Func. Count: 64, Neg. LLF: 9457880.24069702
Iteration: 5, Func. Count: 80, Neg. LLF: 198.28732229834355
Iteration: 6, Func. Count: 97, Neg. LLF: 99.8625732894449
Iteration: 7, Func. Count: 113, Neg. LLF: 99.78522619386975
Iteration: 8, Func. Count: 129, Neg. LLF: 98.90854520084935
Iteration: 9, Func. Count: 145, Neg. LLF: 99.15713615771207
Iteration: 10, Func. Count: 161, Neg. LLF: 98.51921119351631
Iteration: 11, Func. Count: 176, Neg. LLF: 98.52880755555945
Iteration: 12, Func. Count: 192, Neg. LLF: 98.5156922695661
Iteration: 13, Func. Count: 208, Neg. LLF: 98.51266682957336
Iteration: 14, Func. Count: 223, Neg. LLF: 98.51248559244722
Iteration: 15, Func. Count: 238, Neg. LLF: 98.51247292071136
Iteration: 16, Func. Count: 253, Neg. LLF: 98.51246402587701
Iteration: 17, Func. Count: 268, Neg. LLF: 98.51246171203424
Iteration: 18, Func. Count: 283, Neg. LLF: 98.51245928955082
Iteration: 19, Func. Count: 297, Neg. LLF: 98.5124593559396
Optimization terminated successfully (Exit mode 0)
Current function value: 98.51245928955082
Iterations: 19
Function evaluations: 297
Gradient evaluations: 19
Iteration: 1, Func. Count: 6, Neg. LLF: 123.40070146782033
Iteration: 2, Func. Count: 13, Neg. LLF: 1089.5718674820228
Iteration: 3, Func. Count: 19, Neg. LLF: 11696463.193744907
Iteration: 4, Func. Count: 25, Neg. LLF: 114.01483959770964
Iteration: 5, Func. Count: 31, Neg. LLF: 101.59861132650859
Iteration: 6, Func. Count: 37, Neg. LLF: 99.71475389070588
Iteration: 7, Func. Count: 43, Neg. LLF: 99.64912708152308
Iteration: 8, Func. Count: 48, Neg. LLF: 99.62213608700982
Iteration: 9, Func. Count: 53, Neg. LLF: 99.58858900252376
Iteration: 10, Func. Count: 58, Neg. LLF: 99.58322429908574
Iteration: 11, Func. Count: 63, Neg. LLF: 99.58299284405226
Iteration: 12, Func. Count: 68, Neg. LLF: 99.58299107953965
Iteration: 13, Func. Count: 72, Neg. LLF: 99.58299107953687
Optimization terminated successfully (Exit mode 0)
Current function value: 99.58299107953965
Iterations: 13
Function evaluations: 72
Gradient evaluations: 13
Iteration: 1, Func. Count: 5, Neg. LLF: 122.17149582077015
Iteration: 2, Func. Count: 11, Neg. LLF: 106.34355384444815
Iteration: 3, Func. Count: 15, Neg. LLF: 105.16230386915501
Iteration: 4, Func. Count: 19, Neg. LLF: 105.03622679154765
Iteration: 5, Func. Count: 23, Neg. LLF: 105.01955225094109
Iteration: 6, Func. Count: 27, Neg. LLF: 105.01864830226452
Iteration: 7, Func. Count: 31, Neg. LLF: 105.01864498673453
Iteration: 8, Func. Count: 34, Neg. LLF: 105.01864502129507
Optimization terminated successfully (Exit mode 0)
Current function value: 105.01864498673453
Iterations: 8
Function evaluations: 34
Gradient evaluations: 8
Iteration: 1, Func. Count: 6, Neg. LLF: 141.815491286474
Iteration: 2, Func. Count: 12, Neg. LLF: 105.65572492455037
Iteration: 3, Func. Count: 18, Neg. LLF: 170.6722593776179
Iteration: 4, Func. Count: 24, Neg. LLF: 104.64645860789909
Iteration: 5, Func. Count: 30, Neg. LLF: 102.94735974329558
Iteration: 6, Func. Count: 35, Neg. LLF: 102.89998484815243
Iteration: 7, Func. Count: 40, Neg. LLF: 102.89014267438837
Iteration: 8, Func. Count: 45, Neg. LLF: 102.88804369799992
Iteration: 9, Func. Count: 50, Neg. LLF: 102.88803026305466
Iteration: 10, Func. Count: 54, Neg. LLF: 102.88803025024436
Optimization terminated successfully (Exit mode 0)
Current function value: 102.88803026305466
Iterations: 10
Function evaluations: 54
Gradient evaluations: 10
Iteration: 1, Func. Count: 7, Neg. LLF: 130.95828444608063
Iteration: 2, Func. Count: 15, Neg. LLF: 105.07618975106885
Iteration: 3, Func. Count: 22, Neg. LLF: 105.02853922066791
Iteration: 4, Func. Count: 29, Neg. LLF: 104.86058010183767
Iteration: 5, Func. Count: 35, Neg. LLF: 104.59385588522319
Iteration: 6, Func. Count: 41, Neg. LLF: 104.0030840364277
Iteration: 7, Func. Count: 47, Neg. LLF: 103.64699560305931
Iteration: 8, Func. Count: 53, Neg. LLF: 103.59627528390413
Iteration: 9, Func. Count: 60, Neg. LLF: 103.10571924602485
Iteration: 10, Func. Count: 66, Neg. LLF: 102.9191061535032
Iteration: 11, Func. Count: 72, Neg. LLF: 102.90498480015275
Iteration: 12, Func. Count: 78, Neg. LLF: 102.88913682949322
Iteration: 13, Func. Count: 84, Neg. LLF: 102.88824645476274
Iteration: 14, Func. Count: 90, Neg. LLF: 102.88803136302997
Iteration: 15, Func. Count: 96, Neg. LLF: 102.8880301046491
Iteration: 16, Func. Count: 101, Neg. LLF: 102.88803015301227
Optimization terminated successfully (Exit mode 0)
Current function value: 102.8880301046491
Iterations: 16
Function evaluations: 101
Gradient evaluations: 16
Iteration: 1, Func. Count: 8, Neg. LLF: 128.80396058624368
Iteration: 2, Func. Count: 17, Neg. LLF: 105.05962113724543
Iteration: 3, Func. Count: 25, Neg. LLF: 104.99996865991353
Iteration: 4, Func. Count: 32, Neg. LLF: 104.9479227926023
Iteration: 5, Func. Count: 39, Neg. LLF: 104.97629049345987
Iteration: 6, Func. Count: 47, Neg. LLF: 105.07115322729405
Iteration: 7, Func. Count: 55, Neg. LLF: 104.9279385539944
Iteration: 8, Func. Count: 62, Neg. LLF: 104.92783020510122
Iteration: 9, Func. Count: 69, Neg. LLF: 104.92776842252856
Iteration: 10, Func. Count: 76, Neg. LLF: 104.92775444818895
Iteration: 11, Func. Count: 83, Neg. LLF: 104.92767201686746
Iteration: 12, Func. Count: 90, Neg. LLF: 104.9272364022233
Iteration: 13, Func. Count: 97, Neg. LLF: 104.92492963556191
Iteration: 14, Func. Count: 104, Neg. LLF: 104.92491765015276
Iteration: 15, Func. Count: 111, Neg. LLF: 104.92488724447377
Iteration: 16, Func. Count: 118, Neg. LLF: 104.92460386343883
Iteration: 17, Func. Count: 125, Neg. LLF: 104.92433504367031
Iteration: 18, Func. Count: 132, Neg. LLF: 104.92426368553888
Iteration: 19, Func. Count: 139, Neg. LLF: 104.92425133551667
Iteration: 20, Func. Count: 147, Neg. LLF: 104.92418214854399
Iteration: 21, Func. Count: 154, Neg. LLF: 104.92417500642718
Iteration: 22, Func. Count: 160, Neg. LLF: 104.92417500677213
Optimization terminated successfully (Exit mode 0)
Current function value: 104.92417500642718
Iterations: 22
Function evaluations: 160
Gradient evaluations: 22
Iteration: 1, Func. Count: 9, Neg. LLF: 126.19378406150513
Iteration: 2, Func. Count: 19, Neg. LLF: 105.00366428035943
Iteration: 3, Func. Count: 27, Neg. LLF: 105.09855429982257
Iteration: 4, Func. Count: 36, Neg. LLF: 105.00600066585743
Iteration: 5, Func. Count: 45, Neg. LLF: 104.93001955260476
Iteration: 6, Func. Count: 54, Neg. LLF: 104.93136128763624
Iteration: 7, Func. Count: 63, Neg. LLF: 104.92736737582244
Iteration: 8, Func. Count: 71, Neg. LLF: 104.92692977866078
Iteration: 9, Func. Count: 79, Neg. LLF: 104.92669451429131
Iteration: 10, Func. Count: 87, Neg. LLF: 104.9239587204557
Iteration: 11, Func. Count: 95, Neg. LLF: 104.9196512776579
Iteration: 12, Func. Count: 103, Neg. LLF: 104.9183596929409
Iteration: 13, Func. Count: 111, Neg. LLF: 104.91808286888791
Iteration: 14, Func. Count: 120, Neg. LLF: 104.91689554571539
Iteration: 15, Func. Count: 128, Neg. LLF: 104.91682106321258
Iteration: 16, Func. Count: 136, Neg. LLF: 104.9168197723284
Iteration: 17, Func. Count: 143, Neg. LLF: 104.91681977237572
Optimization terminated successfully (Exit mode 0)
Current function value: 104.9168197723284
Iterations: 17
Function evaluations: 143
Gradient evaluations: 17
Iteration: 1, Func. Count: 6, Neg. LLF: 119.25734822108646
Iteration: 2, Func. Count: 13, Neg. LLF: 174436146.2284568
Iteration: 3, Func. Count: 19, Neg. LLF: 9046527.638667006
Iteration: 4, Func. Count: 25, Neg. LLF: 116.03833224846517
Iteration: 5, Func. Count: 31, Neg. LLF: 102.59818235310927
Iteration: 6, Func. Count: 37, Neg. LLF: 100.74542023303067
Iteration: 7, Func. Count: 43, Neg. LLF: 100.63690889714208
Iteration: 8, Func. Count: 48, Neg. LLF: 100.6209044134194
Iteration: 9, Func. Count: 53, Neg. LLF: 100.59373421723684
Iteration: 10, Func. Count: 58, Neg. LLF: 100.58762212062769
Iteration: 11, Func. Count: 63, Neg. LLF: 100.58728143114578
Iteration: 12, Func. Count: 68, Neg. LLF: 100.58726962945832
Iteration: 13, Func. Count: 72, Neg. LLF: 100.58726962947308
Optimization terminated successfully (Exit mode 0)
Current function value: 100.58726962945832
Iterations: 13
Function evaluations: 72
Gradient evaluations: 13
Iteration: 1, Func. Count: 7, Neg. LLF: 173.9548893189461
Iteration: 2, Func. Count: 14, Neg. LLF: 129.68327267601046
Iteration: 3, Func. Count: 22, Neg. LLF: 110.4196833067532
Iteration: 4, Func. Count: 29, Neg. LLF: 123.88196026177617
Iteration: 5, Func. Count: 36, Neg. LLF: 101.79106697969573
Iteration: 6, Func. Count: 42, Neg. LLF: 100.63191434660945
Iteration: 7, Func. Count: 48, Neg. LLF: 100.61074736636678
Iteration: 8, Func. Count: 54, Neg. LLF: 100.59505778131447
Iteration: 9, Func. Count: 60, Neg. LLF: 100.59021797347367
Iteration: 10, Func. Count: 66, Neg. LLF: 100.5886352647899
Iteration: 11, Func. Count: 72, Neg. LLF: 100.5877405480294
Iteration: 12, Func. Count: 78, Neg. LLF: 100.58734294024052
Iteration: 13, Func. Count: 84, Neg. LLF: 100.58727371534461
Iteration: 14, Func. Count: 90, Neg. LLF: 100.58726941882456
Iteration: 15, Func. Count: 95, Neg. LLF: 100.58726949191258
Optimization terminated successfully (Exit mode 0)
Current function value: 100.58726941882456
Iterations: 15
Function evaluations: 95
Gradient evaluations: 15
Iteration: 1, Func. Count: 8, Neg. LLF: 106.27228451057762
Iteration: 2, Func. Count: 16, Neg. LLF: 101.93231268755285
Iteration: 3, Func. Count: 24, Neg. LLF: 101.60062198684412
Iteration: 4, Func. Count: 32, Neg. LLF: 100.61313275111476
Iteration: 5, Func. Count: 39, Neg. LLF: 107.74012598602665
Iteration: 6, Func. Count: 48, Neg. LLF: 100.58139232991002
Iteration: 7, Func. Count: 56, Neg. LLF: 100.46328375240296
Iteration: 8, Func. Count: 63, Neg. LLF: 100.4534983548226
Iteration: 9, Func. Count: 70, Neg. LLF: 100.44748732961182
Iteration: 10, Func. Count: 77, Neg. LLF: 100.4443766846932
Iteration: 11, Func. Count: 84, Neg. LLF: 100.4439338976749
Iteration: 12, Func. Count: 91, Neg. LLF: 100.44392298036249
Iteration: 13, Func. Count: 97, Neg. LLF: 100.44392298029214
Optimization terminated successfully (Exit mode 0)
Current function value: 100.44392298036249
Iterations: 13
Function evaluations: 97
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 105.96256455529269
Iteration: 2, Func. Count: 18, Neg. LLF: 102.10060618496621
Iteration: 3, Func. Count: 27, Neg. LLF: 101.22165061548861
Iteration: 4, Func. Count: 36, Neg. LLF: 100.9016383652339
Iteration: 5, Func. Count: 45, Neg. LLF: 100.13085461258902
Iteration: 6, Func. Count: 54, Neg. LLF: 100.38747221206744
Iteration: 7, Func. Count: 63, Neg. LLF: 100.13476311813271
Iteration: 8, Func. Count: 72, Neg. LLF: 99.93623259970998
Iteration: 9, Func. Count: 80, Neg. LLF: 99.93152423890722
Iteration: 10, Func. Count: 88, Neg. LLF: 99.92885905045995
Iteration: 11, Func. Count: 96, Neg. LLF: 99.92618101787133
Iteration: 12, Func. Count: 104, Neg. LLF: 99.92589331611735
Iteration: 13, Func. Count: 112, Neg. LLF: 99.92587545526949
Iteration: 14, Func. Count: 119, Neg. LLF: 99.92587545522665
Optimization terminated successfully (Exit mode 0)
Current function value: 99.92587545526949
Iterations: 14
Function evaluations: 119
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 105.4762625539307
Iteration: 2, Func. Count: 20, Neg. LLF: 100.33686028520259
Iteration: 3, Func. Count: 29, Neg. LLF: 109.98482748156978
Iteration: 4, Func. Count: 39, Neg. LLF: 226.94466228318106
Iteration: 5, Func. Count: 49, Neg. LLF: 100.09143607375387
Iteration: 6, Func. Count: 59, Neg. LLF: 99.98448884715239
Iteration: 7, Func. Count: 69, Neg. LLF: 99.94583205579478
Iteration: 8, Func. Count: 78, Neg. LLF: 99.9391657850006
Iteration: 9, Func. Count: 87, Neg. LLF: 99.95486218884993
Iteration: 10, Func. Count: 97, Neg. LLF: 99.92698799188238
Iteration: 11, Func. Count: 106, Neg. LLF: 99.92597967307671
Iteration: 12, Func. Count: 115, Neg. LLF: 99.92590573505446
Iteration: 13, Func. Count: 124, Neg. LLF: 99.92589399333528
Iteration: 14, Func. Count: 133, Neg. LLF: 99.92587628415434
Iteration: 15, Func. Count: 142, Neg. LLF: 99.9258754109329
Optimization terminated successfully (Exit mode 0)
Current function value: 99.9258754109329
Iterations: 15
Function evaluations: 142
Gradient evaluations: 15
Iteration: 1, Func. Count: 7, Neg. LLF: 124.64284585494927
Iteration: 2, Func. Count: 15, Neg. LLF: 222945077.3572656
Iteration: 3, Func. Count: 22, Neg. LLF: 8968365.013826305
Iteration: 4, Func. Count: 29, Neg. LLF: 189.66379105264707
Iteration: 5, Func. Count: 36, Neg. LLF: 105.01926108478577
Iteration: 6, Func. Count: 43, Neg. LLF: 101.66353194752058
Iteration: 7, Func. Count: 50, Neg. LLF: 100.64578315362647
Iteration: 8, Func. Count: 56, Neg. LLF: 100.63676797325442
Iteration: 9, Func. Count: 62, Neg. LLF: 100.61162793691294
Iteration: 10, Func. Count: 68, Neg. LLF: 100.59544758236956
Iteration: 11, Func. Count: 74, Neg. LLF: 100.58807603936292
Iteration: 12, Func. Count: 80, Neg. LLF: 100.58728825110404
Iteration: 13, Func. Count: 86, Neg. LLF: 100.58727297972203
Iteration: 14, Func. Count: 92, Neg. LLF: 100.58726937119978
Iteration: 15, Func. Count: 97, Neg. LLF: 100.58726943696053
Optimization terminated successfully (Exit mode 0)
Current function value: 100.58726937119978
Iterations: 15
Function evaluations: 97
Gradient evaluations: 15
Iteration: 1, Func. Count: 8, Neg. LLF: 102.3049614033134
Iteration: 2, Func. Count: 16, Neg. LLF: 152.00395714475476
Iteration: 3, Func. Count: 24, Neg. LLF: 102.3988068195957
Iteration: 4, Func. Count: 32, Neg. LLF: 101.11966339793202
Iteration: 5, Func. Count: 39, Neg. LLF: 100.64145147403367
Iteration: 6, Func. Count: 46, Neg. LLF: 100.64658508207359
Iteration: 7, Func. Count: 54, Neg. LLF: 100.58895480806954
Iteration: 8, Func. Count: 61, Neg. LLF: 100.58791395984139
Iteration: 9, Func. Count: 68, Neg. LLF: 100.58739161306373
Iteration: 10, Func. Count: 75, Neg. LLF: 100.58728997913822
Iteration: 11, Func. Count: 82, Neg. LLF: 100.58727019835932
Iteration: 12, Func. Count: 89, Neg. LLF: 100.5872693278653
Optimization terminated successfully (Exit mode 0)
Current function value: 100.5872693278653
Iterations: 12
Function evaluations: 89
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 101.91448658653053
Iteration: 2, Func. Count: 17, Neg. LLF: 104.76514554071557
Iteration: 3, Func. Count: 26, Neg. LLF: 111.45618597880151
Iteration: 4, Func. Count: 35, Neg. LLF: 113.29326328396495
Iteration: 5, Func. Count: 44, Neg. LLF: 184.33814042916904
Iteration: 6, Func. Count: 53, Neg. LLF: 109.49585819964062
Iteration: 7, Func. Count: 62, Neg. LLF: 101.12144765634899
Iteration: 8, Func. Count: 71, Neg. LLF: 100.48503803379984
Iteration: 9, Func. Count: 80, Neg. LLF: 100.44434574001856
Iteration: 10, Func. Count: 88, Neg. LLF: 100.44394412562207
Iteration: 11, Func. Count: 96, Neg. LLF: 100.44393037555571
Iteration: 12, Func. Count: 104, Neg. LLF: 100.44392257002282
Iteration: 13, Func. Count: 111, Neg. LLF: 100.44392257001923
Optimization terminated successfully (Exit mode 0)
Current function value: 100.44392257002282
Iterations: 13
Function evaluations: 111
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 101.76799359228805
Iteration: 2, Func. Count: 19, Neg. LLF: 104.51116055077236
Iteration: 3, Func. Count: 29, Neg. LLF: 130.04807787774715
Iteration: 4, Func. Count: 39, Neg. LLF: 102.49367296908957
Iteration: 5, Func. Count: 49, Neg. LLF: 12693515.998180637
Iteration: 6, Func. Count: 59, Neg. LLF: 101.15456974682267
Iteration: 7, Func. Count: 69, Neg. LLF: 103.16727462880716
Iteration: 8, Func. Count: 79, Neg. LLF: 100.5348382884716
Iteration: 9, Func. Count: 89, Neg. LLF: 99.98521581045786
Iteration: 10, Func. Count: 98, Neg. LLF: 99.93452922622215
Iteration: 11, Func. Count: 107, Neg. LLF: 99.92703107854642
Iteration: 12, Func. Count: 116, Neg. LLF: 99.92729526212526
Iteration: 13, Func. Count: 126, Neg. LLF: 99.9258891552466
Iteration: 14, Func. Count: 135, Neg. LLF: 99.92587543760105
Iteration: 15, Func. Count: 143, Neg. LLF: 99.9258754375749
Optimization terminated successfully (Exit mode 0)
Current function value: 99.92587543760105
Iterations: 15
Function evaluations: 143
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 101.61799430303519
Iteration: 2, Func. Count: 21, Neg. LLF: 104.37458387248378
Iteration: 3, Func. Count: 32, Neg. LLF: 135.56142515713935
Iteration: 4, Func. Count: 43, Neg. LLF: 101.29067961949377
Iteration: 5, Func. Count: 54, Neg. LLF: 9493950.268368475
Iteration: 6, Func. Count: 65, Neg. LLF: 100.18803297866772
Iteration: 7, Func. Count: 76, Neg. LLF: 109.6802125469223
Iteration: 8, Func. Count: 87, Neg. LLF: 100.04834087133703
Iteration: 9, Func. Count: 98, Neg. LLF: 99.9592733155322
Iteration: 10, Func. Count: 108, Neg. LLF: 99.92779286944017
Iteration: 11, Func. Count: 118, Neg. LLF: 99.92601517710247
Iteration: 12, Func. Count: 128, Neg. LLF: 99.92587894352444
Iteration: 13, Func. Count: 138, Neg. LLF: 99.92587546271405
Iteration: 14, Func. Count: 147, Neg. LLF: 99.92587550691218
Optimization terminated successfully (Exit mode 0)
Current function value: 99.92587546271405
Iterations: 14
Function evaluations: 147
Gradient evaluations: 14
Iteration: 1, Func. Count: 8, Neg. LLF: 132.50345802405423
Iteration: 2, Func. Count: 17, Neg. LLF: 1894.70612368762
Iteration: 3, Func. Count: 25, Neg. LLF: 8982262.89782662
Iteration: 4, Func. Count: 33, Neg. LLF: 1841120.242488885
Iteration: 5, Func. Count: 41, Neg. LLF: 3417443.540121464
Iteration: 6, Func. Count: 49, Neg. LLF: 206562.34010429418
Iteration: 7, Func. Count: 57, Neg. LLF: 101.215189896591
Iteration: 8, Func. Count: 65, Neg. LLF: 100.77976282442826
Iteration: 9, Func. Count: 73, Neg. LLF: 100.39306658890597
Iteration: 10, Func. Count: 80, Neg. LLF: 100.35356032018002
Iteration: 11, Func. Count: 87, Neg. LLF: 100.29361776791526
Iteration: 12, Func. Count: 94, Neg. LLF: 100.27770684102515
Iteration: 13, Func. Count: 101, Neg. LLF: 100.27529404113524
Iteration: 14, Func. Count: 108, Neg. LLF: 100.27523853974782
Iteration: 15, Func. Count: 115, Neg. LLF: 100.27523756159863
Optimization terminated successfully (Exit mode 0)
Current function value: 100.27523756159863
Iterations: 15
Function evaluations: 115
Gradient evaluations: 15
Iteration: 1, Func. Count: 9, Neg. LLF: 102.67666650704832
Iteration: 2, Func. Count: 18, Neg. LLF: 312.52049122879885
Iteration: 3, Func. Count: 27, Neg. LLF: 101.04406983254256
Iteration: 4, Func. Count: 35, Neg. LLF: 101.16666698799771
Iteration: 5, Func. Count: 44, Neg. LLF: 104.4334256907895
Iteration: 6, Func. Count: 53, Neg. LLF: 101.17040781456826
Iteration: 7, Func. Count: 62, Neg. LLF: 100.34583166326593
Iteration: 8, Func. Count: 71, Neg. LLF: 100.28149793974028
Iteration: 9, Func. Count: 79, Neg. LLF: 100.27637636685252
Iteration: 10, Func. Count: 87, Neg. LLF: 100.27638171454848
Iteration: 11, Func. Count: 96, Neg. LLF: 100.27560626998708
Iteration: 12, Func. Count: 104, Neg. LLF: 100.2752849817778
Iteration: 13, Func. Count: 112, Neg. LLF: 100.27523839894296
Iteration: 14, Func. Count: 120, Neg. LLF: 100.27523749358807
Optimization terminated successfully (Exit mode 0)
Current function value: 100.27523749358807
Iterations: 14
Function evaluations: 120
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 102.33038667311817
Iteration: 2, Func. Count: 20, Neg. LLF: 398.8016554321914
Iteration: 3, Func. Count: 30, Neg. LLF: 101.96073845780496
Iteration: 4, Func. Count: 40, Neg. LLF: 103.42170092334155
Iteration: 5, Func. Count: 50, Neg. LLF: 100.31695666324677
Iteration: 6, Func. Count: 59, Neg. LLF: 100.54519333793513
Iteration: 7, Func. Count: 69, Neg. LLF: 100.28210339702466
Iteration: 8, Func. Count: 78, Neg. LLF: 100.27530163388117
Iteration: 9, Func. Count: 87, Neg. LLF: 100.27523842595568
Iteration: 10, Func. Count: 96, Neg. LLF: 100.27523794332797
Optimization terminated successfully (Exit mode 0)
Current function value: 100.27523794332797
Iterations: 10
Function evaluations: 96
Gradient evaluations: 10
Iteration: 1, Func. Count: 11, Neg. LLF: 102.32428094003889
Iteration: 2, Func. Count: 22, Neg. LLF: 442.2612496768773
Iteration: 3, Func. Count: 33, Neg. LLF: 105.66196769739037
Iteration: 4, Func. Count: 44, Neg. LLF: 103.52491847780134
Iteration: 5, Func. Count: 55, Neg. LLF: 106.28768166439718
Iteration: 6, Func. Count: 66, Neg. LLF: 99.98272776395929
Iteration: 7, Func. Count: 76, Neg. LLF: 99.81684821646424
Iteration: 8, Func. Count: 86, Neg. LLF: 99.79724832089512
Iteration: 9, Func. Count: 96, Neg. LLF: 99.79210607177758
Iteration: 10, Func. Count: 106, Neg. LLF: 99.79183788008366
Iteration: 11, Func. Count: 116, Neg. LLF: 99.79171594770253
Iteration: 12, Func. Count: 126, Neg. LLF: 99.79160377969221
Iteration: 13, Func. Count: 136, Neg. LLF: 99.79159514567
Iteration: 14, Func. Count: 145, Neg. LLF: 99.7915951456889
Optimization terminated successfully (Exit mode 0)
Current function value: 99.79159514567
Iterations: 14
Function evaluations: 145
Gradient evaluations: 14
Iteration: 1, Func. Count: 12, Neg. LLF: 102.3379581674929
Iteration: 2, Func. Count: 24, Neg. LLF: 386.50938745877124
Iteration: 3, Func. Count: 36, Neg. LLF: 101.7931100574141
Iteration: 4, Func. Count: 48, Neg. LLF: 100.31176988456923
Iteration: 5, Func. Count: 59, Neg. LLF: 100.26269700388642
Iteration: 6, Func. Count: 71, Neg. LLF: 102.61427856884492
Iteration: 7, Func. Count: 83, Neg. LLF: 100.50281231043144
Iteration: 8, Func. Count: 95, Neg. LLF: 99.8060021936217
Iteration: 9, Func. Count: 106, Neg. LLF: 99.84948891750996
Iteration: 10, Func. Count: 118, Neg. LLF: 99.79272267556861
Iteration: 11, Func. Count: 129, Neg. LLF: 99.79233631830873
Iteration: 12, Func. Count: 140, Neg. LLF: 99.79161236794009
Iteration: 13, Func. Count: 151, Neg. LLF: 99.79159512235195
Iteration: 14, Func. Count: 161, Neg. LLF: 99.79159516658946
Optimization terminated successfully (Exit mode 0)
Current function value: 99.79159512235195
Iterations: 14
Function evaluations: 161
Gradient evaluations: 14
Iteration: 1, Func. Count: 5, Neg. LLF: 125.44303136689062
Iteration: 2, Func. Count: 11, Neg. LLF: 130.44178313105604
Iteration: 3, Func. Count: 16, Neg. LLF: 105.19147946632388
Iteration: 4, Func. Count: 20, Neg. LLF: 105.1115057938022
Iteration: 5, Func. Count: 24, Neg. LLF: 105.04254227531983
Iteration: 6, Func. Count: 28, Neg. LLF: 105.02936756421721
Iteration: 7, Func. Count: 32, Neg. LLF: 105.01867712289027
Iteration: 8, Func. Count: 36, Neg. LLF: 105.01864551650539
Iteration: 9, Func. Count: 40, Neg. LLF: 105.01864498632686
Optimization terminated successfully (Exit mode 0)
Current function value: 105.01864498632686
Iterations: 9
Function evaluations: 40
Gradient evaluations: 9
Iteration: 1, Func. Count: 6, Neg. LLF: 129.9975483567227
Iteration: 2, Func. Count: 13, Neg. LLF: 105.04158528729623
Iteration: 3, Func. Count: 19, Neg. LLF: 105.36445726854657
Iteration: 4, Func. Count: 25, Neg. LLF: 104.97248553402592
Iteration: 5, Func. Count: 31, Neg. LLF: 104.95568193252504
Iteration: 6, Func. Count: 36, Neg. LLF: 104.95524274580744
Iteration: 7, Func. Count: 41, Neg. LLF: 104.95523677471955
Iteration: 8, Func. Count: 45, Neg. LLF: 104.95523677476723
Optimization terminated successfully (Exit mode 0)
Current function value: 104.95523677471955
Iterations: 8
Function evaluations: 45
Gradient evaluations: 8
Iteration: 1, Func. Count: 7, Neg. LLF: 105.81369261265185
Iteration: 2, Func. Count: 15, Neg. LLF: 105.5222709327764
Iteration: 3, Func. Count: 22, Neg. LLF: 105.03585077781706
Iteration: 4, Func. Count: 28, Neg. LLF: 105.00630214565835
Iteration: 5, Func. Count: 34, Neg. LLF: 104.9914171553787
Iteration: 6, Func. Count: 40, Neg. LLF: 104.96366929089446
Iteration: 7, Func. Count: 46, Neg. LLF: 104.95890495666141
Iteration: 8, Func. Count: 52, Neg. LLF: 104.95542491010455
Iteration: 9, Func. Count: 58, Neg. LLF: 104.95524464865599
Iteration: 10, Func. Count: 64, Neg. LLF: 104.95523694512309
Iteration: 11, Func. Count: 69, Neg. LLF: 104.95523695873072
Optimization terminated successfully (Exit mode 0)
Current function value: 104.95523694512309
Iterations: 11
Function evaluations: 69
Gradient evaluations: 11
Iteration: 1, Func. Count: 8, Neg. LLF: 118.67531071514689
Iteration: 2, Func. Count: 17, Neg. LLF: 105.16439172157803
Iteration: 3, Func. Count: 25, Neg. LLF: 105.04664330813405
Iteration: 4, Func. Count: 32, Neg. LLF: 105.03507189133137
Iteration: 5, Func. Count: 39, Neg. LLF: 105.0344001073575
Iteration: 6, Func. Count: 46, Neg. LLF: 105.0339819553463
Iteration: 7, Func. Count: 53, Neg. LLF: 105.02975435102431
Iteration: 8, Func. Count: 60, Neg. LLF: 105.0272711385361
Iteration: 9, Func. Count: 67, Neg. LLF: 105.02591395103926
Iteration: 10, Func. Count: 74, Neg. LLF: 105.0202638256231
Iteration: 11, Func. Count: 81, Neg. LLF: 105.01057449963939
Iteration: 12, Func. Count: 88, Neg. LLF: 104.98497323262325
Iteration: 13, Func. Count: 95, Neg. LLF: 104.99407033681538
Iteration: 14, Func. Count: 103, Neg. LLF: 105.24866489659304
Iteration: 15, Func. Count: 111, Neg. LLF: 104.98114624034034
Iteration: 16, Func. Count: 119, Neg. LLF: 104.91760201180212
Iteration: 17, Func. Count: 126, Neg. LLF: 104.91500424359681
Iteration: 18, Func. Count: 133, Neg. LLF: 107.84407396866459
Iteration: 19, Func. Count: 143, Neg. LLF: 104.91550358344271
Iteration: 20, Func. Count: 151, Neg. LLF: 104.914976007495
Iteration: 21, Func. Count: 158, Neg. LLF: 104.91497030527643
Iteration: 22, Func. Count: 164, Neg. LLF: 104.9149703052748
Optimization terminated successfully (Exit mode 0)
Current function value: 104.91497030527643
Iterations: 23
Function evaluations: 164
Gradient evaluations: 22
Iteration: 1, Func. Count: 9, Neg. LLF: 132.38763451721732
Iteration: 2, Func. Count: 19, Neg. LLF: 105.1222773749751
Iteration: 3, Func. Count: 28, Neg. LLF: 105.06090566867388
Iteration: 4, Func. Count: 37, Neg. LLF: 105.03299099935921
Iteration: 5, Func. Count: 45, Neg. LLF: 105.03007146797452
Iteration: 6, Func. Count: 53, Neg. LLF: 104.99801704155215
Iteration: 7, Func. Count: 61, Neg. LLF: 104.99051127792572
Iteration: 8, Func. Count: 69, Neg. LLF: 104.97809237829422
Iteration: 9, Func. Count: 77, Neg. LLF: 105.06996045206029
Iteration: 10, Func. Count: 86, Neg. LLF: 105.07635446119558
Iteration: 11, Func. Count: 95, Neg. LLF: 104.95992274407405
Iteration: 12, Func. Count: 104, Neg. LLF: 104.92400428795617
Iteration: 13, Func. Count: 112, Neg. LLF: 104.98806469591268
Iteration: 14, Func. Count: 121, Neg. LLF: 104.93722525550785
Iteration: 15, Func. Count: 130, Neg. LLF: 104.9168523973501
Iteration: 16, Func. Count: 138, Neg. LLF: 104.91682102284126
Iteration: 17, Func. Count: 146, Neg. LLF: 104.916819726304
Iteration: 18, Func. Count: 153, Neg. LLF: 104.91681972627961
Optimization terminated successfully (Exit mode 0)
Current function value: 104.916819726304
Iterations: 18
Function evaluations: 153
Gradient evaluations: 18
Iteration: 1, Func. Count: 6, Neg. LLF: 124.96062526162602
Iteration: 2, Func. Count: 13, Neg. LLF: 144.92857373398883
Iteration: 3, Func. Count: 19, Neg. LLF: 105.22845211501068
Iteration: 4, Func. Count: 24, Neg. LLF: 105.05982932299077
Iteration: 5, Func. Count: 29, Neg. LLF: 105.0236045055373
Iteration: 6, Func. Count: 34, Neg. LLF: 105.01902786596763
Iteration: 7, Func. Count: 39, Neg. LLF: 105.01864542608324
Iteration: 8, Func. Count: 43, Neg. LLF: 105.01864546063115
Optimization terminated successfully (Exit mode 0)
Current function value: 105.01864542608324
Iterations: 8
Function evaluations: 43
Gradient evaluations: 8
Iteration: 1, Func. Count: 7, Neg. LLF: 143.76084921741727
Iteration: 2, Func. Count: 14, Neg. LLF: 106.37700874473772
Iteration: 3, Func. Count: 21, Neg. LLF: 142.6826501120072
Iteration: 4, Func. Count: 28, Neg. LLF: 103.82872286088322
Iteration: 5, Func. Count: 35, Neg. LLF: 102.94556031634791
Iteration: 6, Func. Count: 41, Neg. LLF: 102.89886452084055
Iteration: 7, Func. Count: 47, Neg. LLF: 102.89681505886637
Iteration: 8, Func. Count: 54, Neg. LLF: 102.88804705672193
Iteration: 9, Func. Count: 60, Neg. LLF: 102.88803025934436
Iteration: 10, Func. Count: 65, Neg. LLF: 102.88803024650112
Optimization terminated successfully (Exit mode 0)
Current function value: 102.88803025934436
Iterations: 10
Function evaluations: 65
Gradient evaluations: 10
Iteration: 1, Func. Count: 8, Neg. LLF: 106.7718831327562
Iteration: 2, Func. Count: 17, Neg. LLF: 105.63823711889384
Iteration: 3, Func. Count: 25, Neg. LLF: 104.92628203351869
Iteration: 4, Func. Count: 32, Neg. LLF: 104.8356515183386
Iteration: 5, Func. Count: 39, Neg. LLF: 105.73246866580756
Iteration: 6, Func. Count: 47, Neg. LLF: 106.00600663454448
Iteration: 7, Func. Count: 55, Neg. LLF: 105.9847324802163
Iteration: 8, Func. Count: 63, Neg. LLF: 104.15848250001832
Iteration: 9, Func. Count: 70, Neg. LLF: 103.3665084661996
Iteration: 10, Func. Count: 77, Neg. LLF: 105.42655742907353
Iteration: 11, Func. Count: 86, Neg. LLF: 103.09597882852476
Iteration: 12, Func. Count: 93, Neg. LLF: 102.94563027565584
Iteration: 13, Func. Count: 100, Neg. LLF: 102.89091577139278
Iteration: 14, Func. Count: 107, Neg. LLF: 102.88936488621474
Iteration: 15, Func. Count: 114, Neg. LLF: 102.8884817497669
Iteration: 16, Func. Count: 121, Neg. LLF: 102.88817095809175
Iteration: 17, Func. Count: 128, Neg. LLF: 102.88803926247189
Iteration: 18, Func. Count: 135, Neg. LLF: 102.88803203442185
Iteration: 19, Func. Count: 142, Neg. LLF: 102.8880300982963
Iteration: 20, Func. Count: 148, Neg. LLF: 102.88803014665253
Optimization terminated successfully (Exit mode 0)
Current function value: 102.8880300982963
Iterations: 21
Function evaluations: 148
Gradient evaluations: 20
Iteration: 1, Func. Count: 9, Neg. LLF: 137.59693270692998
Iteration: 2, Func. Count: 19, Neg. LLF: 105.34993359761222
Iteration: 3, Func. Count: 28, Neg. LLF: 105.0667381068387
Iteration: 4, Func. Count: 37, Neg. LLF: 104.8542425250169
Iteration: 5, Func. Count: 45, Neg. LLF: 104.6388612341743
Iteration: 6, Func. Count: 53, Neg. LLF: 106.74150660558864
Iteration: 7, Func. Count: 62, Neg. LLF: 107.07010483014946
Iteration: 8, Func. Count: 71, Neg. LLF: 152.66230270558546
Iteration: 9, Func. Count: 80, Neg. LLF: 103.69686445776019
Iteration: 10, Func. Count: 89, Neg. LLF: 103.1919428777763
Iteration: 11, Func. Count: 97, Neg. LLF: 103.0125432015858
Iteration: 12, Func. Count: 105, Neg. LLF: 102.88978358594586
Iteration: 13, Func. Count: 113, Neg. LLF: 102.8928978576709
Iteration: 14, Func. Count: 122, Neg. LLF: 102.88804041422488
Iteration: 15, Func. Count: 130, Neg. LLF: 102.88803025613869
Iteration: 16, Func. Count: 137, Neg. LLF: 102.88803027482531
Optimization terminated successfully (Exit mode 0)
Current function value: 102.88803025613869
Iterations: 16
Function evaluations: 137
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 134.39474781170003
Iteration: 2, Func. Count: 21, Neg. LLF: 105.30847047195415
Iteration: 3, Func. Count: 31, Neg. LLF: 105.07063327041949
Iteration: 4, Func. Count: 41, Neg. LLF: 104.84554100363135
Iteration: 5, Func. Count: 50, Neg. LLF: 104.61461387513411
Iteration: 6, Func. Count: 59, Neg. LLF: 106.98164502963553
Iteration: 7, Func. Count: 69, Neg. LLF: 107.56892086544508
Iteration: 8, Func. Count: 79, Neg. LLF: 110.09064582423136
Iteration: 9, Func. Count: 89, Neg. LLF: 104.13186790674794
Iteration: 10, Func. Count: 99, Neg. LLF: 109.56187465033264
Iteration: 11, Func. Count: 109, Neg. LLF: 103.00325619180532
Iteration: 12, Func. Count: 118, Neg. LLF: 103.21910066947258
Iteration: 13, Func. Count: 128, Neg. LLF: 102.89359447051012
Iteration: 14, Func. Count: 137, Neg. LLF: 102.88863495063104
Iteration: 15, Func. Count: 146, Neg. LLF: 102.8881440736875
Iteration: 16, Func. Count: 155, Neg. LLF: 102.88803056699048
Iteration: 17, Func. Count: 163, Neg. LLF: 102.88803061628013
Optimization terminated successfully (Exit mode 0)
Current function value: 102.88803056699048
Iterations: 17
Function evaluations: 163
Gradient evaluations: 17
Iteration: 1, Func. Count: 7, Neg. LLF: 111.23972421684513
Iteration: 2, Func. Count: 15, Neg. LLF: 47108380.28337825
Iteration: 3, Func. Count: 22, Neg. LLF: 7093579.235860985
Iteration: 4, Func. Count: 29, Neg. LLF: 120.66120054015353
Iteration: 5, Func. Count: 36, Neg. LLF: 101.13010085797683
Iteration: 6, Func. Count: 43, Neg. LLF: 100.6909507298674
Iteration: 7, Func. Count: 49, Neg. LLF: 101.76755057570442
Iteration: 8, Func. Count: 56, Neg. LLF: 100.968765286894
Iteration: 9, Func. Count: 63, Neg. LLF: 100.62018568952723
Iteration: 10, Func. Count: 69, Neg. LLF: 100.56569993347983
Iteration: 11, Func. Count: 75, Neg. LLF: 100.5597141793886
Iteration: 12, Func. Count: 81, Neg. LLF: 100.5592633905325
Iteration: 13, Func. Count: 87, Neg. LLF: 100.559254916855
Iteration: 14, Func. Count: 93, Neg. LLF: 100.55925229702278
Iteration: 15, Func. Count: 98, Neg. LLF: 100.55925229702389
Optimization terminated successfully (Exit mode 0)
Current function value: 100.55925229702278
Iterations: 15
Function evaluations: 98
Gradient evaluations: 15
Iteration: 1, Func. Count: 8, Neg. LLF: 140.65747037485866
Iteration: 2, Func. Count: 16, Neg. LLF: 119.63444305308263
Iteration: 3, Func. Count: 25, Neg. LLF: 102.50969858221981
Iteration: 4, Func. Count: 33, Neg. LLF: 104.70543485576353
Iteration: 5, Func. Count: 41, Neg. LLF: 100.98681599447521
Iteration: 6, Func. Count: 48, Neg. LLF: 100.63193485071575
Iteration: 7, Func. Count: 55, Neg. LLF: 106.03868268791483
Iteration: 8, Func. Count: 65, Neg. LLF: 100.5723085312223
Iteration: 9, Func. Count: 72, Neg. LLF: 100.56411899571239
Iteration: 10, Func. Count: 79, Neg. LLF: 100.56087922587841
Iteration: 11, Func. Count: 86, Neg. LLF: 100.5595969889342
Iteration: 12, Func. Count: 93, Neg. LLF: 100.55929400482215
Iteration: 13, Func. Count: 100, Neg. LLF: 100.5592600702618
Iteration: 14, Func. Count: 107, Neg. LLF: 100.5592532031132
Iteration: 15, Func. Count: 114, Neg. LLF: 100.55925236095658
Optimization terminated successfully (Exit mode 0)
Current function value: 100.55925236095658
Iterations: 15
Function evaluations: 114
Gradient evaluations: 15
Iteration: 1, Func. Count: 9, Neg. LLF: 106.78669374552278
Iteration: 2, Func. Count: 18, Neg. LLF: 105.94225704314101
Iteration: 3, Func. Count: 28, Neg. LLF: 104.41833406200753
Iteration: 4, Func. Count: 37, Neg. LLF: 100.94246428578225
Iteration: 5, Func. Count: 46, Neg. LLF: 101.2321617797194
Iteration: 6, Func. Count: 55, Neg. LLF: 100.77328805358125
Iteration: 7, Func. Count: 64, Neg. LLF: 100.57104072715417
Iteration: 8, Func. Count: 73, Neg. LLF: 100.41415749985558
Iteration: 9, Func. Count: 81, Neg. LLF: 100.42298994141815
Iteration: 10, Func. Count: 90, Neg. LLF: 100.39305837543316
Iteration: 11, Func. Count: 98, Neg. LLF: 100.38637819022155
Iteration: 12, Func. Count: 106, Neg. LLF: 100.38499202946166
Iteration: 13, Func. Count: 114, Neg. LLF: 100.38490775101657
Iteration: 14, Func. Count: 122, Neg. LLF: 100.38490528796162
Iteration: 15, Func. Count: 129, Neg. LLF: 100.38490528795538
Optimization terminated successfully (Exit mode 0)
Current function value: 100.38490528796162
Iterations: 15
Function evaluations: 129
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 105.9938012262867
Iteration: 2, Func. Count: 20, Neg. LLF: 100.9635474795361
Iteration: 3, Func. Count: 30, Neg. LLF: 116.82837836185257
Iteration: 4, Func. Count: 40, Neg. LLF: 102.73765112571746
Iteration: 5, Func. Count: 50, Neg. LLF: 321.8476395554153
Iteration: 6, Func. Count: 62, Neg. LLF: 100.45794386221922
Iteration: 7, Func. Count: 72, Neg. LLF: 99.90065578177008
Iteration: 8, Func. Count: 81, Neg. LLF: 99.91974062798354
Iteration: 9, Func. Count: 91, Neg. LLF: 99.89016606796575
Iteration: 10, Func. Count: 100, Neg. LLF: 99.88540974686678
Iteration: 11, Func. Count: 109, Neg. LLF: 99.88416473790186
Iteration: 12, Func. Count: 118, Neg. LLF: 99.88379918643695
Iteration: 13, Func. Count: 127, Neg. LLF: 99.88362945032947
Iteration: 14, Func. Count: 136, Neg. LLF: 99.8835970045448
Iteration: 15, Func. Count: 144, Neg. LLF: 99.88359700460552
Optimization terminated successfully (Exit mode 0)
Current function value: 99.8835970045448
Iterations: 15
Function evaluations: 144
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 105.3905368035926
Iteration: 2, Func. Count: 22, Neg. LLF: 102.38981859570991
Iteration: 3, Func. Count: 33, Neg. LLF: 101.99498158893027
Iteration: 4, Func. Count: 44, Neg. LLF: 100.68709224142674
Iteration: 5, Func. Count: 55, Neg. LLF: 126.7722697355424
Iteration: 6, Func. Count: 67, Neg. LLF: 100.96858115958027
Iteration: 7, Func. Count: 78, Neg. LLF: 99.8997329664017
Iteration: 8, Func. Count: 88, Neg. LLF: 99.9908289175853
Iteration: 9, Func. Count: 99, Neg. LLF: 99.90030364804726
Iteration: 10, Func. Count: 110, Neg. LLF: 99.88547543051409
Iteration: 11, Func. Count: 120, Neg. LLF: 99.88441666105217
Iteration: 12, Func. Count: 130, Neg. LLF: 99.88363019880401
Iteration: 13, Func. Count: 140, Neg. LLF: 99.88359777681478
Iteration: 14, Func. Count: 150, Neg. LLF: 99.88359683974753
Optimization terminated successfully (Exit mode 0)
Current function value: 99.88359683974753
Iterations: 14
Function evaluations: 150
Gradient evaluations: 14
Iteration: 1, Func. Count: 8, Neg. LLF: 116.09555630701705
Iteration: 2, Func. Count: 17, Neg. LLF: 143915502.1960202
Iteration: 3, Func. Count: 25, Neg. LLF: 9103942.27396458
Iteration: 4, Func. Count: 33, Neg. LLF: 180.60789580352073
Iteration: 5, Func. Count: 41, Neg. LLF: 102.33370510730789
Iteration: 6, Func. Count: 49, Neg. LLF: 101.12505235141586
Iteration: 7, Func. Count: 57, Neg. LLF: 100.67281511652371
Iteration: 8, Func. Count: 64, Neg. LLF: 103.27964324228736
Iteration: 9, Func. Count: 73, Neg. LLF: 100.62914446132046
Iteration: 10, Func. Count: 80, Neg. LLF: 100.59885917142934
Iteration: 11, Func. Count: 87, Neg. LLF: 100.56641416473279
Iteration: 12, Func. Count: 94, Neg. LLF: 100.56029496836862
Iteration: 13, Func. Count: 101, Neg. LLF: 100.5592924440919
Iteration: 14, Func. Count: 108, Neg. LLF: 100.55925692951557
Iteration: 15, Func. Count: 115, Neg. LLF: 100.55925236114739
Iteration: 16, Func. Count: 121, Neg. LLF: 100.55925243799445
Optimization terminated successfully (Exit mode 0)
Current function value: 100.55925236114739
Iterations: 16
Function evaluations: 121
Gradient evaluations: 16
Iteration: 1, Func. Count: 9, Neg. LLF: 104.51698320416237
Iteration: 2, Func. Count: 18, Neg. LLF: 167.05017139342894
Iteration: 3, Func. Count: 27, Neg. LLF: 103.6722182718095
Iteration: 4, Func. Count: 36, Neg. LLF: 101.56952831031012
Iteration: 5, Func. Count: 45, Neg. LLF: 13606.975344227762
Iteration: 6, Func. Count: 55, Neg. LLF: 101.2353871164524
Iteration: 7, Func. Count: 64, Neg. LLF: 100.60788193956363
Iteration: 8, Func. Count: 72, Neg. LLF: 100.58018798096164
Iteration: 9, Func. Count: 80, Neg. LLF: 100.56845837474712
Iteration: 10, Func. Count: 88, Neg. LLF: 100.56256324286454
Iteration: 11, Func. Count: 96, Neg. LLF: 100.55976313941615
Iteration: 12, Func. Count: 104, Neg. LLF: 100.5592678319176
Iteration: 13, Func. Count: 112, Neg. LLF: 100.55925368928955
Iteration: 14, Func. Count: 120, Neg. LLF: 100.55925229175142
Iteration: 15, Func. Count: 127, Neg. LLF: 100.55925237535226
Optimization terminated successfully (Exit mode 0)
Current function value: 100.55925229175142
Iterations: 15
Function evaluations: 127
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 101.91007600963171
Iteration: 2, Func. Count: 19, Neg. LLF: 109.86800253755194
Iteration: 3, Func. Count: 30, Neg. LLF: 153.58933565639535
Iteration: 4, Func. Count: 41, Neg. LLF: 101.60083083260649
Iteration: 5, Func. Count: 51, Neg. LLF: 5282.034157871548
Iteration: 6, Func. Count: 62, Neg. LLF: 1892.0075625249024
Iteration: 7, Func. Count: 72, Neg. LLF: 107.90752198206533
Iteration: 8, Func. Count: 82, Neg. LLF: 100.40213395794095
Iteration: 9, Func. Count: 91, Neg. LLF: 100.38909772361093
Iteration: 10, Func. Count: 100, Neg. LLF: 100.38525842077817
Iteration: 11, Func. Count: 109, Neg. LLF: 100.38493262032836
Iteration: 12, Func. Count: 118, Neg. LLF: 100.38491301233906
Iteration: 13, Func. Count: 127, Neg. LLF: 100.38490702090184
Iteration: 14, Func. Count: 136, Neg. LLF: 100.38490526853506
Iteration: 15, Func. Count: 144, Neg. LLF: 100.38490526852894
Optimization terminated successfully (Exit mode 0)
Current function value: 100.38490526853506
Iterations: 15
Function evaluations: 144
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 101.71054376223562
Iteration: 2, Func. Count: 21, Neg. LLF: 109.81006220204048
Iteration: 3, Func. Count: 32, Neg. LLF: 129.15206224899202
Iteration: 4, Func. Count: 44, Neg. LLF: 106.38052313407694
Iteration: 5, Func. Count: 56, Neg. LLF: 12142833.118497891
Iteration: 6, Func. Count: 67, Neg. LLF: 5904.835620483985
Iteration: 7, Func. Count: 78, Neg. LLF: 157.24474307030044
Iteration: 8, Func. Count: 89, Neg. LLF: 100.63814165483997
Iteration: 9, Func. Count: 100, Neg. LLF: 99.99977119365306
Iteration: 10, Func. Count: 110, Neg. LLF: 99.97119710162282
Iteration: 11, Func. Count: 120, Neg. LLF: 107.5091206122189
Iteration: 12, Func. Count: 131, Neg. LLF: 99.92351177007093
Iteration: 13, Func. Count: 141, Neg. LLF: 99.89144286307264
Iteration: 14, Func. Count: 151, Neg. LLF: 99.88458095133419
Iteration: 15, Func. Count: 161, Neg. LLF: 99.88329637960653
Iteration: 16, Func. Count: 171, Neg. LLF: 99.88321386890964
Iteration: 17, Func. Count: 181, Neg. LLF: 99.88321232949308
Iteration: 18, Func. Count: 190, Neg. LLF: 99.88321232950463
Optimization terminated successfully (Exit mode 0)
Current function value: 99.88321232949308
Iterations: 18
Function evaluations: 190
Gradient evaluations: 18
Iteration: 1, Func. Count: 12, Neg. LLF: 101.55740176805924
Iteration: 2, Func. Count: 23, Neg. LLF: 107.70228097849312
Iteration: 3, Func. Count: 35, Neg. LLF: 126.87821695878976
Iteration: 4, Func. Count: 47, Neg. LLF: 104.6190596308878
Iteration: 5, Func. Count: 60, Neg. LLF: 20241983.78962116
Iteration: 6, Func. Count: 72, Neg. LLF: 142.01630593462107
Iteration: 7, Func. Count: 84, Neg. LLF: 204.1971870959395
Iteration: 8, Func. Count: 96, Neg. LLF: 100.72437727292912
Iteration: 9, Func. Count: 108, Neg. LLF: 100.01206135444397
Iteration: 10, Func. Count: 119, Neg. LLF: 100.041731544646
Iteration: 11, Func. Count: 131, Neg. LLF: 103.31997425863133
Iteration: 12, Func. Count: 143, Neg. LLF: 99.98468132429609
Iteration: 13, Func. Count: 155, Neg. LLF: 99.90326956588032
Iteration: 14, Func. Count: 166, Neg. LLF: 99.88376606577144
Iteration: 15, Func. Count: 177, Neg. LLF: 99.88323649250395
Iteration: 16, Func. Count: 188, Neg. LLF: 99.88321552790524
Iteration: 17, Func. Count: 199, Neg. LLF: 99.88321231936055
Iteration: 18, Func. Count: 209, Neg. LLF: 99.88321236782491
Optimization terminated successfully (Exit mode 0)
Current function value: 99.88321231936055
Iterations: 18
Function evaluations: 209
Gradient evaluations: 18
Iteration: 1, Func. Count: 9, Neg. LLF: 121.282945584082
Iteration: 2, Func. Count: 19, Neg. LLF: 258488217.90716887
Iteration: 3, Func. Count: 28, Neg. LLF: 9101105.69199753
Iteration: 4, Func. Count: 37, Neg. LLF: 221418.83348929224
Iteration: 5, Func. Count: 46, Neg. LLF: 2151953.394877574
Iteration: 6, Func. Count: 55, Neg. LLF: 111.69721418452238
Iteration: 7, Func. Count: 64, Neg. LLF: 101.12417141290094
Iteration: 8, Func. Count: 73, Neg. LLF: 100.74282855040637
Iteration: 9, Func. Count: 82, Neg. LLF: 100.41823789949447
Iteration: 10, Func. Count: 90, Neg. LLF: 102.27820224936417
Iteration: 11, Func. Count: 99, Neg. LLF: 100.30125659305074
Iteration: 12, Func. Count: 107, Neg. LLF: 100.25603189573866
Iteration: 13, Func. Count: 115, Neg. LLF: 100.20790044314387
Iteration: 14, Func. Count: 123, Neg. LLF: 100.19692867061627
Iteration: 15, Func. Count: 131, Neg. LLF: 100.19245448868254
Iteration: 16, Func. Count: 139, Neg. LLF: 100.19158574173024
Iteration: 17, Func. Count: 147, Neg. LLF: 100.1914850440386
Iteration: 18, Func. Count: 155, Neg. LLF: 100.19147830859598
Iteration: 19, Func. Count: 162, Neg. LLF: 100.19147830859669
Optimization terminated successfully (Exit mode 0)
Current function value: 100.19147830859598
Iterations: 19
Function evaluations: 162
Gradient evaluations: 19
Iteration: 1, Func. Count: 10, Neg. LLF: 102.47015303307047
Iteration: 2, Func. Count: 20, Neg. LLF: 324.85820949229094
Iteration: 3, Func. Count: 31, Neg. LLF: 101.03304097234167
Iteration: 4, Func. Count: 40, Neg. LLF: 102.80213364206158
Iteration: 5, Func. Count: 52, Neg. LLF: 104.45733292458324
Iteration: 6, Func. Count: 62, Neg. LLF: 106.2061079608629
Iteration: 7, Func. Count: 72, Neg. LLF: 101.13958696839254
Iteration: 8, Func. Count: 82, Neg. LLF: 100.32262015315878
Iteration: 9, Func. Count: 92, Neg. LLF: 100.85604951923818
Iteration: 10, Func. Count: 102, Neg. LLF: 100.1968728192626
Iteration: 11, Func. Count: 111, Neg. LLF: 100.19283805679417
Iteration: 12, Func. Count: 120, Neg. LLF: 100.19150791903931
Iteration: 13, Func. Count: 129, Neg. LLF: 100.19148839935777
Iteration: 14, Func. Count: 138, Neg. LLF: 100.1914792120453
Iteration: 15, Func. Count: 146, Neg. LLF: 100.19147929718451
Optimization terminated successfully (Exit mode 0)
Current function value: 100.1914792120453
Iterations: 15
Function evaluations: 146
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 101.91820180053507
Iteration: 2, Func. Count: 21, Neg. LLF: 180.97124840664608
Iteration: 3, Func. Count: 32, Neg. LLF: 109.24352539125768
Iteration: 4, Func. Count: 45, Neg. LLF: 147.72839559891884
Iteration: 5, Func. Count: 57, Neg. LLF: 102.52659000326135
Iteration: 6, Func. Count: 68, Neg. LLF: 315.5087257404995
Iteration: 7, Func. Count: 79, Neg. LLF: 101.85887319610994
Iteration: 8, Func. Count: 90, Neg. LLF: 100.58469581830398
Iteration: 9, Func. Count: 101, Neg. LLF: 100.20009725237234
Iteration: 10, Func. Count: 111, Neg. LLF: 100.19466875311659
Iteration: 11, Func. Count: 121, Neg. LLF: 100.19171140167873
Iteration: 12, Func. Count: 131, Neg. LLF: 100.19149015229254
Iteration: 13, Func. Count: 141, Neg. LLF: 100.19147990235909
Iteration: 14, Func. Count: 151, Neg. LLF: 100.19147858448704
Iteration: 15, Func. Count: 160, Neg. LLF: 100.19147861845991
Optimization terminated successfully (Exit mode 0)
Current function value: 100.19147858448704
Iterations: 15
Function evaluations: 160
Gradient evaluations: 15
Iteration: 1, Func. Count: 12, Neg. LLF: 101.95563944195816
Iteration: 2, Func. Count: 24, Neg. LLF: 508.45631642403794
Iteration: 3, Func. Count: 36, Neg. LLF: 107.05603528910291
Iteration: 4, Func. Count: 48, Neg. LLF: 105.6510133891622
Iteration: 5, Func. Count: 60, Neg. LLF: 105.87324267710507
Iteration: 6, Func. Count: 72, Neg. LLF: 100.13176864825967
Iteration: 7, Func. Count: 83, Neg. LLF: 102.24744094381137
Iteration: 8, Func. Count: 96, Neg. LLF: 101.52197307407889
Iteration: 9, Func. Count: 109, Neg. LLF: 99.82342435520462
Iteration: 10, Func. Count: 121, Neg. LLF: 99.74630998020682
Iteration: 11, Func. Count: 132, Neg. LLF: 99.74378730480335
Iteration: 12, Func. Count: 143, Neg. LLF: 99.74178636351324
Iteration: 13, Func. Count: 154, Neg. LLF: 99.74079397290416
Iteration: 14, Func. Count: 165, Neg. LLF: 99.74074464681325
Iteration: 15, Func. Count: 176, Neg. LLF: 99.74071738708057
Iteration: 16, Func. Count: 187, Neg. LLF: 99.74070068101281
Iteration: 17, Func. Count: 198, Neg. LLF: 99.74068403866323
Iteration: 18, Func. Count: 209, Neg. LLF: 99.74068158482342
Iteration: 19, Func. Count: 219, Neg. LLF: 99.74068158482764
Optimization terminated successfully (Exit mode 0)
Current function value: 99.74068158482342
Iterations: 19
Function evaluations: 219
Gradient evaluations: 19
Iteration: 1, Func. Count: 13, Neg. LLF: 102.05904913838731
Iteration: 2, Func. Count: 26, Neg. LLF: 418.3846763295019
Iteration: 3, Func. Count: 39, Neg. LLF: 102.17246286209155
Iteration: 4, Func. Count: 52, Neg. LLF: 101.58116485703148
Iteration: 5, Func. Count: 65, Neg. LLF: 100.04375530851617
Iteration: 6, Func. Count: 77, Neg. LLF: 100.50829833768658
Iteration: 7, Func. Count: 90, Neg. LLF: 128.17449583799333
Iteration: 8, Func. Count: 104, Neg. LLF: 100.40126355683664
Iteration: 9, Func. Count: 117, Neg. LLF: 100.3066183917246
Iteration: 10, Func. Count: 130, Neg. LLF: 99.88275009159933
Iteration: 11, Func. Count: 143, Neg. LLF: 99.7490400010061
Iteration: 12, Func. Count: 155, Neg. LLF: 99.74431132506214
Iteration: 13, Func. Count: 167, Neg. LLF: 99.74178855900206
Iteration: 14, Func. Count: 179, Neg. LLF: 99.74086563497274
Iteration: 15, Func. Count: 191, Neg. LLF: 99.74072855949775
Iteration: 16, Func. Count: 203, Neg. LLF: 99.74070899999943
Iteration: 17, Func. Count: 215, Neg. LLF: 99.74068791249228
Iteration: 18, Func. Count: 227, Neg. LLF: 99.74068298646769
Iteration: 19, Func. Count: 239, Neg. LLF: 99.74068136917131
Iteration: 20, Func. Count: 250, Neg. LLF: 99.74068142033029
Optimization terminated successfully (Exit mode 0)
Current function value: 99.74068136917131
Iterations: 20
Function evaluations: 250
Gradient evaluations: 20
Iteration: 1, Func. Count: 6, Neg. LLF: 126.29640149013603
Iteration: 2, Func. Count: 13, Neg. LLF: 168.6407596038358
Iteration: 3, Func. Count: 19, Neg. LLF: 616.4200376590969
Iteration: 4, Func. Count: 25, Neg. LLF: 102.53363294873122
Iteration: 5, Func. Count: 30, Neg. LLF: 102.37345934654368
Iteration: 6, Func. Count: 35, Neg. LLF: 102.33241810959329
Iteration: 7, Func. Count: 40, Neg. LLF: 102.32888246737281
Iteration: 8, Func. Count: 45, Neg. LLF: 102.32866510580197
Iteration: 9, Func. Count: 50, Neg. LLF: 102.32859142502058
Iteration: 10, Func. Count: 55, Neg. LLF: 102.32854611224825
Iteration: 11, Func. Count: 60, Neg. LLF: 102.32854480452684
Iteration: 12, Func. Count: 64, Neg. LLF: 102.32854480452872
Optimization terminated successfully (Exit mode 0)
Current function value: 102.32854480452684
Iterations: 12
Function evaluations: 64
Gradient evaluations: 12
Iteration: 1, Func. Count: 7, Neg. LLF: 107.01665747361439
Iteration: 2, Func. Count: 14, Neg. LLF: 130.5182967209541
Iteration: 3, Func. Count: 21, Neg. LLF: 110.55065095347433
Iteration: 4, Func. Count: 28, Neg. LLF: 102.36483539758456
Iteration: 5, Func. Count: 34, Neg. LLF: 112.99473548961068
Iteration: 6, Func. Count: 41, Neg. LLF: 102.19481569833226
Iteration: 7, Func. Count: 47, Neg. LLF: 102.11546956836418
Iteration: 8, Func. Count: 53, Neg. LLF: 102.11047787888378
Iteration: 9, Func. Count: 59, Neg. LLF: 102.10897764826282
Iteration: 10, Func. Count: 65, Neg. LLF: 102.10878999086627
Iteration: 11, Func. Count: 71, Neg. LLF: 102.10878773059697
Iteration: 12, Func. Count: 76, Neg. LLF: 102.1087877305762
Optimization terminated successfully (Exit mode 0)
Current function value: 102.10878773059697
Iterations: 12
Function evaluations: 76
Gradient evaluations: 12
Iteration: 1, Func. Count: 8, Neg. LLF: 107.42799696847557
Iteration: 2, Func. Count: 16, Neg. LLF: 128.12068999090346
Iteration: 3, Func. Count: 24, Neg. LLF: 111.77314929302264
Iteration: 4, Func. Count: 32, Neg. LLF: 102.18934333054987
Iteration: 5, Func. Count: 39, Neg. LLF: 237.6922435866212
Iteration: 6, Func. Count: 47, Neg. LLF: 102.10934303583511
Iteration: 7, Func. Count: 54, Neg. LLF: 102.10888050468958
Iteration: 8, Func. Count: 61, Neg. LLF: 102.10879218345549
Iteration: 9, Func. Count: 68, Neg. LLF: 102.10878773536766
Iteration: 10, Func. Count: 74, Neg. LLF: 102.10878778921494
Optimization terminated successfully (Exit mode 0)
Current function value: 102.10878773536766
Iterations: 10
Function evaluations: 74
Gradient evaluations: 10
Iteration: 1, Func. Count: 9, Neg. LLF: 109.80051747162476
Iteration: 2, Func. Count: 18, Neg. LLF: 125.21445631968697
Iteration: 3, Func. Count: 27, Neg. LLF: 116.5173629302362
Iteration: 4, Func. Count: 36, Neg. LLF: 126.30722926300724
Iteration: 5, Func. Count: 45, Neg. LLF: 102.18712341088893
Iteration: 6, Func. Count: 53, Neg. LLF: 102.11688243634326
Iteration: 7, Func. Count: 61, Neg. LLF: 102.10911571899179
Iteration: 8, Func. Count: 69, Neg. LLF: 102.1088145383925
Iteration: 9, Func. Count: 77, Neg. LLF: 102.10878855445885
Iteration: 10, Func. Count: 85, Neg. LLF: 102.10878767817653
Optimization terminated successfully (Exit mode 0)
Current function value: 102.10878767817653
Iterations: 10
Function evaluations: 85
Gradient evaluations: 10
Iteration: 1, Func. Count: 10, Neg. LLF: 112.08782938184748
Iteration: 2, Func. Count: 20, Neg. LLF: 123.65111919507157
Iteration: 3, Func. Count: 30, Neg. LLF: 118.17814283414064
Iteration: 4, Func. Count: 40, Neg. LLF: 124.88162453831411
Iteration: 5, Func. Count: 50, Neg. LLF: 102.1798125365101
Iteration: 6, Func. Count: 59, Neg. LLF: 102.12074074221714
Iteration: 7, Func. Count: 68, Neg. LLF: 102.10927779447249
Iteration: 8, Func. Count: 77, Neg. LLF: 102.10880815057958
Iteration: 9, Func. Count: 86, Neg. LLF: 102.10878785841093
Iteration: 10, Func. Count: 94, Neg. LLF: 102.10878787327594
Optimization terminated successfully (Exit mode 0)
Current function value: 102.10878785841093
Iterations: 10
Function evaluations: 94
Gradient evaluations: 10
Iteration: 1, Func. Count: 7, Neg. LLF: 121.50652858553968
Iteration: 2, Func. Count: 15, Neg. LLF: 177.72879728051905
Iteration: 3, Func. Count: 22, Neg. LLF: 735.4180007877559
Iteration: 4, Func. Count: 29, Neg. LLF: 102.49738669011755
Iteration: 5, Func. Count: 35, Neg. LLF: 102.37884127134149
Iteration: 6, Func. Count: 41, Neg. LLF: 102.33418523594825
Iteration: 7, Func. Count: 47, Neg. LLF: 102.32979075112176
Iteration: 8, Func. Count: 53, Neg. LLF: 102.32913793551347
Iteration: 9, Func. Count: 59, Neg. LLF: 102.3285480818451
Iteration: 10, Func. Count: 65, Neg. LLF: 102.32854480328874
Iteration: 11, Func. Count: 70, Neg. LLF: 102.3285447951105
Optimization terminated successfully (Exit mode 0)
Current function value: 102.32854480328874
Iterations: 11
Function evaluations: 70
Gradient evaluations: 11
Iteration: 1, Func. Count: 8, Neg. LLF: 106.02510460143635
Iteration: 2, Func. Count: 16, Neg. LLF: 115.64942940830171
Iteration: 3, Func. Count: 24, Neg. LLF: 104.20080878757341
Iteration: 4, Func. Count: 32, Neg. LLF: 106.78647398901387
Iteration: 5, Func. Count: 40, Neg. LLF: 102.41138693722166
Iteration: 6, Func. Count: 47, Neg. LLF: 102.23088113108982
Iteration: 7, Func. Count: 54, Neg. LLF: 102.17976876326757
Iteration: 8, Func. Count: 61, Neg. LLF: 102.12725380974753
Iteration: 9, Func. Count: 68, Neg. LLF: 102.10972717730283
Iteration: 10, Func. Count: 75, Neg. LLF: 102.10886229944813
Iteration: 11, Func. Count: 82, Neg. LLF: 102.10878994650088
Iteration: 12, Func. Count: 89, Neg. LLF: 102.1087876996649
Iteration: 13, Func. Count: 95, Neg. LLF: 102.10878769968221
Optimization terminated successfully (Exit mode 0)
Current function value: 102.1087876996649
Iterations: 13
Function evaluations: 95
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 107.03983467138062
Iteration: 2, Func. Count: 18, Neg. LLF: 128.9415154138825
Iteration: 3, Func. Count: 27, Neg. LLF: 111.10993830735285
Iteration: 4, Func. Count: 36, Neg. LLF: 102.19580357691207
Iteration: 5, Func. Count: 44, Neg. LLF: 102.38585650444502
Iteration: 6, Func. Count: 53, Neg. LLF: 102.11412806408018
Iteration: 7, Func. Count: 61, Neg. LLF: 102.11484098253996
Iteration: 8, Func. Count: 70, Neg. LLF: 102.10899073446298
Iteration: 9, Func. Count: 78, Neg. LLF: 102.1087881040819
Iteration: 10, Func. Count: 86, Neg. LLF: 102.1087876961465
Optimization terminated successfully (Exit mode 0)
Current function value: 102.1087876961465
Iterations: 10
Function evaluations: 86
Gradient evaluations: 10
Iteration: 1, Func. Count: 10, Neg. LLF: 109.29311284035106
Iteration: 2, Func. Count: 20, Neg. LLF: 125.92018235869777
Iteration: 3, Func. Count: 30, Neg. LLF: 115.4067813708034
Iteration: 4, Func. Count: 40, Neg. LLF: 128.40362784910994
Iteration: 5, Func. Count: 50, Neg. LLF: 102.1958402067678
Iteration: 6, Func. Count: 59, Neg. LLF: 102.1161722845384
Iteration: 7, Func. Count: 68, Neg. LLF: 102.1090646838879
Iteration: 8, Func. Count: 77, Neg. LLF: 102.10881667320838
Iteration: 9, Func. Count: 86, Neg. LLF: 102.10878856784603
Iteration: 10, Func. Count: 95, Neg. LLF: 102.10878767818505
Optimization terminated successfully (Exit mode 0)
Current function value: 102.10878767818505
Iterations: 10
Function evaluations: 95
Gradient evaluations: 10
Iteration: 1, Func. Count: 11, Neg. LLF: 111.49156867902839
Iteration: 2, Func. Count: 22, Neg. LLF: 124.29942473070801
Iteration: 3, Func. Count: 33, Neg. LLF: 116.95405261470593
Iteration: 4, Func. Count: 44, Neg. LLF: 126.57418169826353
Iteration: 5, Func. Count: 55, Neg. LLF: 102.18902747878596
Iteration: 6, Func. Count: 65, Neg. LLF: 102.11966185236818
Iteration: 7, Func. Count: 75, Neg. LLF: 102.10928193847374
Iteration: 8, Func. Count: 85, Neg. LLF: 102.10881427509234
Iteration: 9, Func. Count: 95, Neg. LLF: 102.10878788741236
Iteration: 10, Func. Count: 104, Neg. LLF: 102.10878790227486
Optimization terminated successfully (Exit mode 0)
Current function value: 102.10878788741236
Iterations: 10
Function evaluations: 104
Gradient evaluations: 10
Iteration: 1, Func. Count: 8, Neg. LLF: 115.1488406995629
Iteration: 2, Func. Count: 17, Neg. LLF: 273.31780331748314
Iteration: 3, Func. Count: 25, Neg. LLF: 118.09321624524081
Iteration: 4, Func. Count: 33, Neg. LLF: 109.93810180842799
Iteration: 5, Func. Count: 41, Neg. LLF: 100.98992222464398
Iteration: 6, Func. Count: 49, Neg. LLF: 138.45748615221888
Iteration: 7, Func. Count: 58, Neg. LLF: 100.43853497686858
Iteration: 8, Func. Count: 65, Neg. LLF: 101.45029200190727
Iteration: 9, Func. Count: 73, Neg. LLF: 100.99316188194119
Iteration: 10, Func. Count: 82, Neg. LLF: 100.32717482789919
Iteration: 11, Func. Count: 89, Neg. LLF: 100.30182339114263
Iteration: 12, Func. Count: 96, Neg. LLF: 100.29827791763121
Iteration: 13, Func. Count: 103, Neg. LLF: 100.29819131298053
Iteration: 14, Func. Count: 110, Neg. LLF: 100.29818997034864
Iteration: 15, Func. Count: 116, Neg. LLF: 100.29818997035318
Optimization terminated successfully (Exit mode 0)
Current function value: 100.29818997034864
Iterations: 15
Function evaluations: 116
Gradient evaluations: 15
Iteration: 1, Func. Count: 9, Neg. LLF: 103.78731403156429
Iteration: 2, Func. Count: 18, Neg. LLF: 267.11485154959075
Iteration: 3, Func. Count: 27, Neg. LLF: 101.1727883301473
Iteration: 4, Func. Count: 36, Neg. LLF: 101.40874846577712
Iteration: 5, Func. Count: 45, Neg. LLF: 100.64810115242666
Iteration: 6, Func. Count: 54, Neg. LLF: 100.81090967457025
Iteration: 7, Func. Count: 63, Neg. LLF: 101.87147152467318
Iteration: 8, Func. Count: 73, Neg. LLF: 100.32111068913275
Iteration: 9, Func. Count: 81, Neg. LLF: 100.3021858882755
Iteration: 10, Func. Count: 89, Neg. LLF: 100.30634292119275
Iteration: 11, Func. Count: 98, Neg. LLF: 100.29899749899093
Iteration: 12, Func. Count: 106, Neg. LLF: 100.29843778447362
Iteration: 13, Func. Count: 114, Neg. LLF: 100.29825358610566
Iteration: 14, Func. Count: 122, Neg. LLF: 100.29819108998527
Iteration: 15, Func. Count: 130, Neg. LLF: 100.29818990873957
Iteration: 16, Func. Count: 137, Neg. LLF: 100.29818998293742
Optimization terminated successfully (Exit mode 0)
Current function value: 100.29818990873957
Iterations: 16
Function evaluations: 137
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 104.10404659817392
Iteration: 2, Func. Count: 20, Neg. LLF: 273.72896745964465
Iteration: 3, Func. Count: 30, Neg. LLF: 100.72670972019303
Iteration: 4, Func. Count: 40, Neg. LLF: 102.75459990886013
Iteration: 5, Func. Count: 50, Neg. LLF: 389.3646144791142
Iteration: 6, Func. Count: 61, Neg. LLF: 100.94391964061089
Iteration: 7, Func. Count: 71, Neg. LLF: 100.34852155281881
Iteration: 8, Func. Count: 80, Neg. LLF: 100.58973033460867
Iteration: 9, Func. Count: 90, Neg. LLF: 101.66893335357399
Iteration: 10, Func. Count: 100, Neg. LLF: 100.31619124011438
Iteration: 11, Func. Count: 110, Neg. LLF: 100.29368097382624
Iteration: 12, Func. Count: 119, Neg. LLF: 100.2935217030435
Iteration: 13, Func. Count: 128, Neg. LLF: 100.29348205279537
Iteration: 14, Func. Count: 137, Neg. LLF: 100.29346314377095
Iteration: 15, Func. Count: 146, Neg. LLF: 100.29345792899804
Iteration: 16, Func. Count: 155, Neg. LLF: 100.29345642500577
Iteration: 17, Func. Count: 163, Neg. LLF: 100.29345642500809
Optimization terminated successfully (Exit mode 0)
Current function value: 100.29345642500577
Iterations: 17
Function evaluations: 163
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 105.73284534487597
Iteration: 2, Func. Count: 22, Neg. LLF: 242.2875285424278
Iteration: 3, Func. Count: 33, Neg. LLF: 100.19614570987852
Iteration: 4, Func. Count: 43, Neg. LLF: 177.28343510708814
Iteration: 5, Func. Count: 54, Neg. LLF: 7763.690663861332
Iteration: 6, Func. Count: 66, Neg. LLF: 3204.6349574591713
Iteration: 7, Func. Count: 78, Neg. LLF: 99.89256108658948
Iteration: 8, Func. Count: 89, Neg. LLF: 100.53278868888387
Iteration: 9, Func. Count: 100, Neg. LLF: 99.6571689503185
Iteration: 10, Func. Count: 110, Neg. LLF: 99.65044956573342
Iteration: 11, Func. Count: 120, Neg. LLF: 99.64942853413851
Iteration: 12, Func. Count: 130, Neg. LLF: 99.64834771154305
Iteration: 13, Func. Count: 140, Neg. LLF: 99.64834219852801
Iteration: 14, Func. Count: 150, Neg. LLF: 99.64834001104924
Iteration: 15, Func. Count: 160, Neg. LLF: 99.64833934620876
Optimization terminated successfully (Exit mode 0)
Current function value: 99.64833934620876
Iterations: 15
Function evaluations: 160
Gradient evaluations: 15
Iteration: 1, Func. Count: 12, Neg. LLF: 107.17043979335777
Iteration: 2, Func. Count: 24, Neg. LLF: 218.64501795309755
Iteration: 3, Func. Count: 36, Neg. LLF: 100.37401752344347
Iteration: 4, Func. Count: 47, Neg. LLF: 101.37761769190762
Iteration: 5, Func. Count: 60, Neg. LLF: 103.00426621018624
Iteration: 6, Func. Count: 72, Neg. LLF: 116.93930904847193
Iteration: 7, Func. Count: 84, Neg. LLF: 106.2534273649498
Iteration: 8, Func. Count: 96, Neg. LLF: 102.1986901274363
Iteration: 9, Func. Count: 108, Neg. LLF: 100.27070733425825
Iteration: 10, Func. Count: 120, Neg. LLF: 99.71252169571221
Iteration: 11, Func. Count: 131, Neg. LLF: 99.65514222053397
Iteration: 12, Func. Count: 142, Neg. LLF: 99.65221665870696
Iteration: 13, Func. Count: 153, Neg. LLF: 99.64900784111188
Iteration: 14, Func. Count: 164, Neg. LLF: 99.64854135193679
Iteration: 15, Func. Count: 175, Neg. LLF: 99.64841475461625
Iteration: 16, Func. Count: 186, Neg. LLF: 99.64835846044127
Iteration: 17, Func. Count: 197, Neg. LLF: 99.64834160025494
Iteration: 18, Func. Count: 208, Neg. LLF: 99.64833960953143
Iteration: 19, Func. Count: 218, Neg. LLF: 99.6483396359796
Optimization terminated successfully (Exit mode 0)
Current function value: 99.64833960953143
Iterations: 19
Function evaluations: 218
Gradient evaluations: 19
Iteration: 1, Func. Count: 9, Neg. LLF: 124.87889855570363
Iteration: 2, Func. Count: 19, Neg. LLF: 285.44798384484557
Iteration: 3, Func. Count: 28, Neg. LLF: 125.25802559301425
Iteration: 4, Func. Count: 37, Neg. LLF: 122.64971743819602
Iteration: 5, Func. Count: 46, Neg. LLF: 101.01560825400456
Iteration: 6, Func. Count: 55, Neg. LLF: 12991.783224984934
Iteration: 7, Func. Count: 65, Neg. LLF: 100.46048971530587
Iteration: 8, Func. Count: 73, Neg. LLF: 102.59495919205118
Iteration: 9, Func. Count: 83, Neg. LLF: 100.32397950450984
Iteration: 10, Func. Count: 91, Neg. LLF: 100.30254958951109
Iteration: 11, Func. Count: 99, Neg. LLF: 100.29885517465038
Iteration: 12, Func. Count: 107, Neg. LLF: 100.29822307740304
Iteration: 13, Func. Count: 115, Neg. LLF: 100.2981911598535
Iteration: 14, Func. Count: 123, Neg. LLF: 100.29818996653479
Iteration: 15, Func. Count: 130, Neg. LLF: 100.29819004084536
Optimization terminated successfully (Exit mode 0)
Current function value: 100.29818996653479
Iterations: 15
Function evaluations: 130
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 106.17179341455856
Iteration: 2, Func. Count: 20, Neg. LLF: 188.1165157610708
Iteration: 3, Func. Count: 30, Neg. LLF: 102.5126090927092
Iteration: 4, Func. Count: 40, Neg. LLF: 102.01451576562701
Iteration: 5, Func. Count: 50, Neg. LLF: 103.78228748037708
Iteration: 6, Func. Count: 60, Neg. LLF: 100.37385840286026
Iteration: 7, Func. Count: 69, Neg. LLF: 103.66678980992144
Iteration: 8, Func. Count: 80, Neg. LLF: 100.3109444066593
Iteration: 9, Func. Count: 89, Neg. LLF: 100.30013575387747
Iteration: 10, Func. Count: 98, Neg. LLF: 100.29872133572114
Iteration: 11, Func. Count: 107, Neg. LLF: 100.29827841265742
Iteration: 12, Func. Count: 116, Neg. LLF: 100.29821817842678
Iteration: 13, Func. Count: 125, Neg. LLF: 100.29819459687774
Iteration: 14, Func. Count: 134, Neg. LLF: 100.29819116891768
Iteration: 15, Func. Count: 143, Neg. LLF: 100.29819010567185
Iteration: 16, Func. Count: 151, Neg. LLF: 100.29819017987322
Optimization terminated successfully (Exit mode 0)
Current function value: 100.29819010567185
Iterations: 16
Function evaluations: 151
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 106.91772971804924
Iteration: 2, Func. Count: 22, Neg. LLF: 197.0431991879637
Iteration: 3, Func. Count: 33, Neg. LLF: 105.14223535095495
Iteration: 4, Func. Count: 44, Neg. LLF: 101.30973819550218
Iteration: 5, Func. Count: 55, Neg. LLF: 100.74252591154138
Iteration: 6, Func. Count: 66, Neg. LLF: 100.825442760713
Iteration: 7, Func. Count: 77, Neg. LLF: 100.34423417076539
Iteration: 8, Func. Count: 87, Neg. LLF: 103.75015821239641
Iteration: 9, Func. Count: 99, Neg. LLF: 100.59762573714133
Iteration: 10, Func. Count: 110, Neg. LLF: 106.46073503846482
Iteration: 11, Func. Count: 121, Neg. LLF: 100.29423601681954
Iteration: 12, Func. Count: 131, Neg. LLF: 100.29374751139277
Iteration: 13, Func. Count: 141, Neg. LLF: 100.29350795551417
Iteration: 14, Func. Count: 151, Neg. LLF: 100.29346252094615
Iteration: 15, Func. Count: 161, Neg. LLF: 100.29345773905325
Iteration: 16, Func. Count: 171, Neg. LLF: 100.2934562899706
Iteration: 17, Func. Count: 180, Neg. LLF: 100.29345628996613
Optimization terminated successfully (Exit mode 0)
Current function value: 100.2934562899706
Iterations: 17
Function evaluations: 180
Gradient evaluations: 17
Iteration: 1, Func. Count: 12, Neg. LLF: 108.99072843103805
Iteration: 2, Func. Count: 24, Neg. LLF: 192.22266327959358
Iteration: 3, Func. Count: 36, Neg. LLF: 112.5950262807568
Iteration: 4, Func. Count: 48, Neg. LLF: 109.91895628313331
Iteration: 5, Func. Count: 60, Neg. LLF: 104.70743146778699
Iteration: 6, Func. Count: 72, Neg. LLF: 103.43557201841769
Iteration: 7, Func. Count: 84, Neg. LLF: 101.47190453061955
Iteration: 8, Func. Count: 96, Neg. LLF: 100.68725906107726
Iteration: 9, Func. Count: 108, Neg. LLF: 100.55120883693617
Iteration: 10, Func. Count: 120, Neg. LLF: 99.76279395370948
Iteration: 11, Func. Count: 131, Neg. LLF: 100.04620954211454
Iteration: 12, Func. Count: 143, Neg. LLF: 102.97089945432114
Iteration: 13, Func. Count: 157, Neg. LLF: 99.65903214804057
Iteration: 14, Func. Count: 168, Neg. LLF: 99.6502306118334
Iteration: 15, Func. Count: 179, Neg. LLF: 99.64877445355057
Iteration: 16, Func. Count: 190, Neg. LLF: 99.64840639003711
Iteration: 17, Func. Count: 201, Neg. LLF: 99.64834289952817
Iteration: 18, Func. Count: 212, Neg. LLF: 99.64833956209293
Iteration: 19, Func. Count: 222, Neg. LLF: 99.64833956213383
Optimization terminated successfully (Exit mode 0)
Current function value: 99.64833956209293
Iterations: 19
Function evaluations: 222
Gradient evaluations: 19
Iteration: 1, Func. Count: 13, Neg. LLF: 111.10778679862877
Iteration: 2, Func. Count: 26, Neg. LLF: 184.58708982390667
Iteration: 3, Func. Count: 39, Neg. LLF: 113.25763650953758
Iteration: 4, Func. Count: 52, Neg. LLF: 101.67536136938512
Iteration: 5, Func. Count: 65, Neg. LLF: 103.71758270826491
Iteration: 6, Func. Count: 78, Neg. LLF: 101.56413724890248
Iteration: 7, Func. Count: 91, Neg. LLF: 101.1835610017235
Iteration: 8, Func. Count: 104, Neg. LLF: 104.94163496949012
Iteration: 9, Func. Count: 117, Neg. LLF: 99.87512307630544
Iteration: 10, Func. Count: 130, Neg. LLF: 99.70038507980107
Iteration: 11, Func. Count: 142, Neg. LLF: 102.94879692190804
Iteration: 12, Func. Count: 156, Neg. LLF: 99.65034543246837
Iteration: 13, Func. Count: 168, Neg. LLF: 99.64971995959863
Iteration: 14, Func. Count: 180, Neg. LLF: 99.64850856698263
Iteration: 15, Func. Count: 192, Neg. LLF: 99.64840980340459
Iteration: 16, Func. Count: 204, Neg. LLF: 99.64834648040599
Iteration: 17, Func. Count: 216, Neg. LLF: 99.64833976037863
Iteration: 18, Func. Count: 227, Neg. LLF: 99.6483397868252
Optimization terminated successfully (Exit mode 0)
Current function value: 99.64833976037863
Iterations: 18
Function evaluations: 227
Gradient evaluations: 18
Iteration: 1, Func. Count: 10, Neg. LLF: 128.3834523341743
Iteration: 2, Func. Count: 21, Neg. LLF: 312.859731894112
Iteration: 3, Func. Count: 31, Neg. LLF: 129.17997703179427
Iteration: 4, Func. Count: 41, Neg. LLF: 131.85688790104157
Iteration: 5, Func. Count: 51, Neg. LLF: 106.54882419558889
Iteration: 6, Func. Count: 61, Neg. LLF: 101.06697316367125
Iteration: 7, Func. Count: 71, Neg. LLF: 100.5294464483771
Iteration: 8, Func. Count: 80, Neg. LLF: 101.18382877514128
Iteration: 9, Func. Count: 90, Neg. LLF: 103.10686482246247
Iteration: 10, Func. Count: 102, Neg. LLF: 100.25385625452506
Iteration: 11, Func. Count: 111, Neg. LLF: 100.91160167052747
Iteration: 12, Func. Count: 121, Neg. LLF: 100.19114238082655
Iteration: 13, Func. Count: 130, Neg. LLF: 100.18915815415406
Iteration: 14, Func. Count: 139, Neg. LLF: 100.1851659987871
Iteration: 15, Func. Count: 148, Neg. LLF: 100.18478558514579
Iteration: 16, Func. Count: 157, Neg. LLF: 100.18474864271872
Iteration: 17, Func. Count: 166, Neg. LLF: 100.18474746852269
Iteration: 18, Func. Count: 174, Neg. LLF: 100.1847474685223
Optimization terminated successfully (Exit mode 0)
Current function value: 100.18474746852269
Iterations: 18
Function evaluations: 174
Gradient evaluations: 18
Iteration: 1, Func. Count: 11, Neg. LLF: 107.64078744127463
Iteration: 2, Func. Count: 22, Neg. LLF: 190.2388457336222
Iteration: 3, Func. Count: 33, Neg. LLF: 104.0596123891661
Iteration: 4, Func. Count: 44, Neg. LLF: 103.96570297608561
Iteration: 5, Func. Count: 55, Neg. LLF: 100.37043897188609
Iteration: 6, Func. Count: 65, Neg. LLF: 100.52772880737093
Iteration: 7, Func. Count: 76, Neg. LLF: 104.60644472687609
Iteration: 8, Func. Count: 87, Neg. LLF: 107.28033638899122
Iteration: 9, Func. Count: 99, Neg. LLF: 100.7040222882773
Iteration: 10, Func. Count: 110, Neg. LLF: 100.19949187138417
Iteration: 11, Func. Count: 120, Neg. LLF: 100.1877969778671
Iteration: 12, Func. Count: 130, Neg. LLF: 100.18565146080992
Iteration: 13, Func. Count: 140, Neg. LLF: 100.18491157117654
Iteration: 14, Func. Count: 150, Neg. LLF: 100.18480667258854
Iteration: 15, Func. Count: 160, Neg. LLF: 100.18475326751474
Iteration: 16, Func. Count: 170, Neg. LLF: 100.18474734572882
Iteration: 17, Func. Count: 179, Neg. LLF: 100.18474742842058
Optimization terminated successfully (Exit mode 0)
Current function value: 100.18474734572882
Iterations: 17
Function evaluations: 179
Gradient evaluations: 17
Iteration: 1, Func. Count: 12, Neg. LLF: 108.06051000742868
Iteration: 2, Func. Count: 24, Neg. LLF: 199.99370618537884
Iteration: 3, Func. Count: 36, Neg. LLF: 108.53700679424283
Iteration: 4, Func. Count: 48, Neg. LLF: 102.23333327006378
Iteration: 5, Func. Count: 60, Neg. LLF: 102.18494717990947
Iteration: 6, Func. Count: 72, Neg. LLF: 100.42786365782649
Iteration: 7, Func. Count: 83, Neg. LLF: 100.46776166747186
Iteration: 8, Func. Count: 95, Neg. LLF: 113.27088246571736
Iteration: 9, Func. Count: 109, Neg. LLF: 100.67666117037017
Iteration: 10, Func. Count: 121, Neg. LLF: 100.20939454556297
Iteration: 11, Func. Count: 132, Neg. LLF: 100.19130248415944
Iteration: 12, Func. Count: 143, Neg. LLF: 100.18712225730327
Iteration: 13, Func. Count: 154, Neg. LLF: 100.18557773838708
Iteration: 14, Func. Count: 165, Neg. LLF: 100.18503413786804
Iteration: 15, Func. Count: 176, Neg. LLF: 100.18477687852571
Iteration: 16, Func. Count: 187, Neg. LLF: 100.18475007456205
Iteration: 17, Func. Count: 198, Neg. LLF: 100.18474729355397
Iteration: 18, Func. Count: 208, Neg. LLF: 100.18474732500299
Optimization terminated successfully (Exit mode 0)
Current function value: 100.18474729355397
Iterations: 18
Function evaluations: 208
Gradient evaluations: 18
Iteration: 1, Func. Count: 13, Neg. LLF: 110.62258605169738
Iteration: 2, Func. Count: 26, Neg. LLF: 196.35126342478247
Iteration: 3, Func. Count: 39, Neg. LLF: 123.79330788575687
Iteration: 4, Func. Count: 52, Neg. LLF: 115.39006625562683
Iteration: 5, Func. Count: 65, Neg. LLF: 103.53599217554391
Iteration: 6, Func. Count: 78, Neg. LLF: 104.26205703595464
Iteration: 7, Func. Count: 91, Neg. LLF: 100.84660659919345
Iteration: 8, Func. Count: 104, Neg. LLF: 100.05779350420285
Iteration: 9, Func. Count: 117, Neg. LLF: 100.11138220747812
Iteration: 10, Func. Count: 130, Neg. LLF: 99.7415380313716
Iteration: 11, Func. Count: 142, Neg. LLF: 100.12165676864521
Iteration: 12, Func. Count: 155, Neg. LLF: 102.39759049574678
Iteration: 13, Func. Count: 169, Neg. LLF: 99.72401013499626
Iteration: 14, Func. Count: 182, Neg. LLF: 99.64915712944695
Iteration: 15, Func. Count: 194, Neg. LLF: 99.64862047450085
Iteration: 16, Func. Count: 206, Neg. LLF: 99.648363114532
Iteration: 17, Func. Count: 218, Neg. LLF: 99.64835055755654
Iteration: 18, Func. Count: 230, Neg. LLF: 99.64834030767145
Iteration: 19, Func. Count: 242, Neg. LLF: 99.64833957349559
Optimization terminated successfully (Exit mode 0)
Current function value: 99.64833957349559
Iterations: 19
Function evaluations: 242
Gradient evaluations: 19
Iteration: 1, Func. Count: 14, Neg. LLF: 112.86316205094222
Iteration: 2, Func. Count: 29, Neg. LLF: 364.31059033258066
Iteration: 3, Func. Count: 43, Neg. LLF: 128.05966567531556
Iteration: 4, Func. Count: 57, Neg. LLF: 110.76759737350913
Iteration: 5, Func. Count: 71, Neg. LLF: 116.56242916477395
Iteration: 6, Func. Count: 85, Neg. LLF: 115.55171369282196
Iteration: 7, Func. Count: 99, Neg. LLF: 104.58098463359158
Iteration: 8, Func. Count: 113, Neg. LLF: 105.64413088059598
Iteration: 9, Func. Count: 127, Neg. LLF: 100.99250214189243
Iteration: 10, Func. Count: 141, Neg. LLF: 100.55244488986088
Iteration: 11, Func. Count: 155, Neg. LLF: 100.6061291703167
Iteration: 12, Func. Count: 169, Neg. LLF: 100.76057491831185
Iteration: 13, Func. Count: 183, Neg. LLF: 99.9692559193244
Iteration: 14, Func. Count: 196, Neg. LLF: 101.15212961993439
Iteration: 15, Func. Count: 210, Neg. LLF: 99.8954403500765
Iteration: 16, Func. Count: 223, Neg. LLF: 99.80410083570918
Iteration: 17, Func. Count: 236, Neg. LLF: 99.75215051438364
Iteration: 18, Func. Count: 249, Neg. LLF: 99.71609816733572
Iteration: 19, Func. Count: 262, Neg. LLF: 99.67111928266475
Iteration: 20, Func. Count: 275, Neg. LLF: 99.65167265142686
Iteration: 21, Func. Count: 288, Neg. LLF: 99.64854387110093
Iteration: 22, Func. Count: 301, Neg. LLF: 99.64838535220608
Iteration: 23, Func. Count: 314, Neg. LLF: 99.64834575074059
Iteration: 24, Func. Count: 327, Neg. LLF: 99.64834001191942
Iteration: 25, Func. Count: 340, Neg. LLF: 99.64833928435351
Optimization terminated successfully (Exit mode 0)
Current function value: 99.64833928435351
Iterations: 25
Function evaluations: 340
Gradient evaluations: 25
Iteration: 1, Func. Count: 7, Neg. LLF: 112.29217783111078
Iteration: 2, Func. Count: 15, Neg. LLF: 234.5062959580163
Iteration: 3, Func. Count: 22, Neg. LLF: 1679.6598539621045
Iteration: 4, Func. Count: 29, Neg. LLF: 114.0632589170948
Iteration: 5, Func. Count: 36, Neg. LLF: 108.20034382821834
Iteration: 6, Func. Count: 43, Neg. LLF: 102.36014161353256
Iteration: 7, Func. Count: 50, Neg. LLF: 102.08400168583279
Iteration: 8, Func. Count: 56, Neg. LLF: 102.0815796882062
Iteration: 9, Func. Count: 62, Neg. LLF: 102.08029494643708
Iteration: 10, Func. Count: 68, Neg. LLF: 102.07929537152344
Iteration: 11, Func. Count: 74, Neg. LLF: 102.07914859406606
Iteration: 12, Func. Count: 80, Neg. LLF: 102.07914758250628
Iteration: 13, Func. Count: 85, Neg. LLF: 102.0791475824786
Optimization terminated successfully (Exit mode 0)
Current function value: 102.07914758250628
Iterations: 13
Function evaluations: 85
Gradient evaluations: 13
Iteration: 1, Func. Count: 8, Neg. LLF: 103.50571520991896
Iteration: 2, Func. Count: 16, Neg. LLF: 112.05057899842421
Iteration: 3, Func. Count: 24, Neg. LLF: 115.72697983964024
Iteration: 4, Func. Count: 32, Neg. LLF: 102.3743092374987
Iteration: 5, Func. Count: 39, Neg. LLF: 107.96978533883863
Iteration: 6, Func. Count: 47, Neg. LLF: 102.24936640763768
Iteration: 7, Func. Count: 55, Neg. LLF: 102.11238608848012
Iteration: 8, Func. Count: 62, Neg. LLF: 102.08043284819786
Iteration: 9, Func. Count: 69, Neg. LLF: 102.07939405121407
Iteration: 10, Func. Count: 76, Neg. LLF: 102.07915633202707
Iteration: 11, Func. Count: 83, Neg. LLF: 102.07914793522579
Iteration: 12, Func. Count: 89, Neg. LLF: 102.07914794048303
Optimization terminated successfully (Exit mode 0)
Current function value: 102.07914793522579
Iterations: 12
Function evaluations: 89
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 103.52087171218193
Iteration: 2, Func. Count: 17, Neg. LLF: 104.89994224969153
Iteration: 3, Func. Count: 27, Neg. LLF: 35639512.18148834
Iteration: 4, Func. Count: 36, Neg. LLF: 995.3331999350282
Iteration: 5, Func. Count: 45, Neg. LLF: 109.2615204693727
Iteration: 6, Func. Count: 54, Neg. LLF: 102.75819743324914
Iteration: 7, Func. Count: 63, Neg. LLF: 102.10907038533375
Iteration: 8, Func. Count: 71, Neg. LLF: 102.14526725849097
Iteration: 9, Func. Count: 80, Neg. LLF: 102.08619441385991
Iteration: 10, Func. Count: 88, Neg. LLF: 102.08243095658015
Iteration: 11, Func. Count: 96, Neg. LLF: 102.07956790961788
Iteration: 12, Func. Count: 104, Neg. LLF: 102.07923117915765
Iteration: 13, Func. Count: 112, Neg. LLF: 102.07914998465196
Iteration: 14, Func. Count: 120, Neg. LLF: 102.07914793428681
Iteration: 15, Func. Count: 127, Neg. LLF: 102.07914798634025
Optimization terminated successfully (Exit mode 0)
Current function value: 102.07914793428681
Iterations: 15
Function evaluations: 127
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 103.54618275373886
Iteration: 2, Func. Count: 19, Neg. LLF: 105.6141086234668
Iteration: 3, Func. Count: 29, Neg. LLF: 31210572.03142972
Iteration: 4, Func. Count: 39, Neg. LLF: 319.24468140515455
Iteration: 5, Func. Count: 49, Neg. LLF: 179.87787762422542
Iteration: 6, Func. Count: 59, Neg. LLF: 102.19884518653711
Iteration: 7, Func. Count: 68, Neg. LLF: 103.52596695910017
Iteration: 8, Func. Count: 78, Neg. LLF: 102.106809722952
Iteration: 9, Func. Count: 87, Neg. LLF: 102.20867950967767
Iteration: 10, Func. Count: 97, Neg. LLF: 102.08758839646191
Iteration: 11, Func. Count: 106, Neg. LLF: 102.07945179459183
Iteration: 12, Func. Count: 115, Neg. LLF: 102.07918191921138
Iteration: 13, Func. Count: 124, Neg. LLF: 102.07914845150493
Iteration: 14, Func. Count: 133, Neg. LLF: 102.07914763422383
Optimization terminated successfully (Exit mode 0)
Current function value: 102.07914763422383
Iterations: 14
Function evaluations: 133
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 103.55280694886079
Iteration: 2, Func. Count: 21, Neg. LLF: 105.66580924363913
Iteration: 3, Func. Count: 32, Neg. LLF: 1730.5861587638065
Iteration: 4, Func. Count: 43, Neg. LLF: 342.5733121297065
Iteration: 5, Func. Count: 54, Neg. LLF: 206.69412676324816
Iteration: 6, Func. Count: 65, Neg. LLF: 102.21286947611696
Iteration: 7, Func. Count: 75, Neg. LLF: 105.2802972550622
Iteration: 8, Func. Count: 86, Neg. LLF: 102.108363911121
Iteration: 9, Func. Count: 96, Neg. LLF: 102.08043348848231
Iteration: 10, Func. Count: 106, Neg. LLF: 102.07923863113088
Iteration: 11, Func. Count: 116, Neg. LLF: 102.07915013083293
Iteration: 12, Func. Count: 126, Neg. LLF: 102.0791475664863
Iteration: 13, Func. Count: 135, Neg. LLF: 102.07914757795116
Optimization terminated successfully (Exit mode 0)
Current function value: 102.0791475664863
Iterations: 13
Function evaluations: 135
Gradient evaluations: 13
Iteration: 1, Func. Count: 8, Neg. LLF: 112.19120295215238
Iteration: 2, Func. Count: 17, Neg. LLF: 256.10655467817344
Iteration: 3, Func. Count: 25, Neg. LLF: 921.762713770079
Iteration: 4, Func. Count: 33, Neg. LLF: 107.78445302813766
Iteration: 5, Func. Count: 41, Neg. LLF: 109.0043669130873
Iteration: 6, Func. Count: 49, Neg. LLF: 102.35146998854493
Iteration: 7, Func. Count: 57, Neg. LLF: 102.08790738915303
Iteration: 8, Func. Count: 64, Neg. LLF: 102.08131303491285
Iteration: 9, Func. Count: 71, Neg. LLF: 102.08030147964392
Iteration: 10, Func. Count: 78, Neg. LLF: 102.07922690109332
Iteration: 11, Func. Count: 85, Neg. LLF: 102.07915102329524
Iteration: 12, Func. Count: 92, Neg. LLF: 102.0791477447353
Iteration: 13, Func. Count: 98, Neg. LLF: 102.07914777914282
Optimization terminated successfully (Exit mode 0)
Current function value: 102.0791477447353
Iterations: 13
Function evaluations: 98
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 115.40483761570835
Iteration: 2, Func. Count: 18, Neg. LLF: 127.55530358931908
Iteration: 3, Func. Count: 27, Neg. LLF: 110.30712413952699
Iteration: 4, Func. Count: 36, Neg. LLF: 102.47966551468696
Iteration: 5, Func. Count: 44, Neg. LLF: 102.53994410136897
Iteration: 6, Func. Count: 53, Neg. LLF: 102.10660332484716
Iteration: 7, Func. Count: 61, Neg. LLF: 102.0854078415556
Iteration: 8, Func. Count: 69, Neg. LLF: 102.08003031359948
Iteration: 9, Func. Count: 77, Neg. LLF: 102.07916838425027
Iteration: 10, Func. Count: 85, Neg. LLF: 102.07914798018807
Iteration: 11, Func. Count: 92, Neg. LLF: 102.07914798551263
Optimization terminated successfully (Exit mode 0)
Current function value: 102.07914798018807
Iterations: 11
Function evaluations: 92
Gradient evaluations: 11
Iteration: 1, Func. Count: 10, Neg. LLF: 103.57745377052716
Iteration: 2, Func. Count: 20, Neg. LLF: 114.42813868600369
Iteration: 3, Func. Count: 30, Neg. LLF: 125.08809306921862
Iteration: 4, Func. Count: 40, Neg. LLF: 102.38911976318494
Iteration: 5, Func. Count: 49, Neg. LLF: 112.23791649173778
Iteration: 6, Func. Count: 59, Neg. LLF: 102.13902478219566
Iteration: 7, Func. Count: 68, Neg. LLF: 103.32200158427617
Iteration: 8, Func. Count: 78, Neg. LLF: 102.08042210851087
Iteration: 9, Func. Count: 87, Neg. LLF: 102.07927143458649
Iteration: 10, Func. Count: 96, Neg. LLF: 102.07917145647782
Iteration: 11, Func. Count: 105, Neg. LLF: 102.07914797917856
Iteration: 12, Func. Count: 113, Neg. LLF: 102.07914803124936
Optimization terminated successfully (Exit mode 0)
Current function value: 102.07914797917856
Iterations: 12
Function evaluations: 113
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 103.56105227984051
Iteration: 2, Func. Count: 21, Neg. LLF: 103.82006051083879
Iteration: 3, Func. Count: 32, Neg. LLF: 30332061.722961064
Iteration: 4, Func. Count: 43, Neg. LLF: 369.47362014811404
Iteration: 5, Func. Count: 54, Neg. LLF: 146.49530889372667
Iteration: 6, Func. Count: 65, Neg. LLF: 106.76312648972002
Iteration: 7, Func. Count: 76, Neg. LLF: 102.24654248347626
Iteration: 8, Func. Count: 86, Neg. LLF: 102.16783881995076
Iteration: 9, Func. Count: 96, Neg. LLF: 102.46672629006368
Iteration: 10, Func. Count: 107, Neg. LLF: 102.08632660139672
Iteration: 11, Func. Count: 117, Neg. LLF: 102.08013038516708
Iteration: 12, Func. Count: 127, Neg. LLF: 102.0792977873958
Iteration: 13, Func. Count: 137, Neg. LLF: 102.07915034128713
Iteration: 14, Func. Count: 147, Neg. LLF: 102.0791476055635
Iteration: 15, Func. Count: 156, Neg. LLF: 102.07914762094394
Optimization terminated successfully (Exit mode 0)
Current function value: 102.0791476055635
Iterations: 15
Function evaluations: 156
Gradient evaluations: 15
Iteration: 1, Func. Count: 12, Neg. LLF: 103.56819515450513
Iteration: 2, Func. Count: 23, Neg. LLF: 103.82185671680547
Iteration: 3, Func. Count: 35, Neg. LLF: 30341722.011137903
Iteration: 4, Func. Count: 47, Neg. LLF: 312.02735599039664
Iteration: 5, Func. Count: 59, Neg. LLF: 111.5564570519947
Iteration: 6, Func. Count: 71, Neg. LLF: 109.87061809780248
Iteration: 7, Func. Count: 83, Neg. LLF: 102.4213865518617
Iteration: 8, Func. Count: 95, Neg. LLF: 102.13307576845654
Iteration: 9, Func. Count: 107, Neg. LLF: 102.09187679546089
Iteration: 10, Func. Count: 118, Neg. LLF: 102.07951365833225
Iteration: 11, Func. Count: 129, Neg. LLF: 102.0791509222505
Iteration: 12, Func. Count: 140, Neg. LLF: 102.07914760544969
Iteration: 13, Func. Count: 150, Neg. LLF: 102.07914761693051
Optimization terminated successfully (Exit mode 0)
Current function value: 102.07914760544969
Iterations: 13
Function evaluations: 150
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 104.48541419869315
Iteration: 2, Func. Count: 18, Neg. LLF: 423.5732501075625
Iteration: 3, Func. Count: 27, Neg. LLF: 4841.110955196703
Iteration: 4, Func. Count: 36, Neg. LLF: 7107865.174737103
Iteration: 5, Func. Count: 45, Neg. LLF: 116.34299666142478
Iteration: 6, Func. Count: 54, Neg. LLF: 101.65159386344605
Iteration: 7, Func. Count: 63, Neg. LLF: 100.05893706245985
Iteration: 8, Func. Count: 72, Neg. LLF: 101.46649990640587
Iteration: 9, Func. Count: 81, Neg. LLF: 99.78371866724318
Iteration: 10, Func. Count: 89, Neg. LLF: 100.93408075408541
Iteration: 11, Func. Count: 99, Neg. LLF: 99.77731302876593
Iteration: 12, Func. Count: 107, Neg. LLF: 99.77378542390939
Iteration: 13, Func. Count: 115, Neg. LLF: 99.77041731886361
Iteration: 14, Func. Count: 123, Neg. LLF: 99.76932678983142
Iteration: 15, Func. Count: 131, Neg. LLF: 99.76921803737906
Iteration: 16, Func. Count: 139, Neg. LLF: 99.76921249199319
Iteration: 17, Func. Count: 146, Neg. LLF: 99.76921249199448
Optimization terminated successfully (Exit mode 0)
Current function value: 99.76921249199319
Iterations: 17
Function evaluations: 146
Gradient evaluations: 17
Iteration: 1, Func. Count: 10, Neg. LLF: 104.8316569299953
Iteration: 2, Func. Count: 20, Neg. LLF: 115.74958711772528
Iteration: 3, Func. Count: 31, Neg. LLF: 106.66123546169065
Iteration: 4, Func. Count: 41, Neg. LLF: 110.26379284023206
Iteration: 5, Func. Count: 52, Neg. LLF: 100.01974739168051
Iteration: 6, Func. Count: 61, Neg. LLF: 100.02250836650167
Iteration: 7, Func. Count: 71, Neg. LLF: 100.06060846598248
Iteration: 8, Func. Count: 82, Neg. LLF: 100.4226444458023
Iteration: 9, Func. Count: 92, Neg. LLF: 99.7742746641619
Iteration: 10, Func. Count: 101, Neg. LLF: 99.770709672208
Iteration: 11, Func. Count: 110, Neg. LLF: 99.7694935153773
Iteration: 12, Func. Count: 119, Neg. LLF: 99.76925257712136
Iteration: 13, Func. Count: 128, Neg. LLF: 99.76922131245162
Iteration: 14, Func. Count: 137, Neg. LLF: 99.76921709515484
Iteration: 15, Func. Count: 146, Neg. LLF: 99.76921347549377
Iteration: 16, Func. Count: 155, Neg. LLF: 99.76921254795492
Optimization terminated successfully (Exit mode 0)
Current function value: 99.76921254795492
Iterations: 16
Function evaluations: 155
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 103.66073768791145
Iteration: 2, Func. Count: 22, Neg. LLF: 109.17267823226842
Iteration: 3, Func. Count: 33, Neg. LLF: 130.55489904229208
Iteration: 4, Func. Count: 44, Neg. LLF: 101.41022554012504
Iteration: 5, Func. Count: 55, Neg. LLF: 100.89369249904549
Iteration: 6, Func. Count: 66, Neg. LLF: 101.0939846874347
Iteration: 7, Func. Count: 77, Neg. LLF: 99.86756967156735
Iteration: 8, Func. Count: 87, Neg. LLF: 99.83163166923802
Iteration: 9, Func. Count: 97, Neg. LLF: 100.02982010149874
Iteration: 10, Func. Count: 108, Neg. LLF: 100.29245680907371
Iteration: 11, Func. Count: 119, Neg. LLF: 100.3953793946565
Iteration: 12, Func. Count: 130, Neg. LLF: 99.76254822759489
Iteration: 13, Func. Count: 140, Neg. LLF: 99.76160963025887
Iteration: 14, Func. Count: 150, Neg. LLF: 99.761462062765
Iteration: 15, Func. Count: 160, Neg. LLF: 99.76138680778044
Iteration: 16, Func. Count: 170, Neg. LLF: 99.76130755138674
Iteration: 17, Func. Count: 180, Neg. LLF: 99.76129256745728
Iteration: 18, Func. Count: 190, Neg. LLF: 99.76129119867039
Iteration: 19, Func. Count: 199, Neg. LLF: 99.76129119868419
Optimization terminated successfully (Exit mode 0)
Current function value: 99.76129119867039
Iterations: 19
Function evaluations: 199
Gradient evaluations: 19
Iteration: 1, Func. Count: 12, Neg. LLF: 103.14653661715732
Iteration: 2, Func. Count: 24, Neg. LLF: 106.80324961315561
Iteration: 3, Func. Count: 36, Neg. LLF: 372.6264651961952
Iteration: 4, Func. Count: 48, Neg. LLF: 100.29582114562348
Iteration: 5, Func. Count: 60, Neg. LLF: 100.89338015933495
Iteration: 6, Func. Count: 72, Neg. LLF: 100.88881746607741
Iteration: 7, Func. Count: 85, Neg. LLF: 100.76908602058049
Iteration: 8, Func. Count: 97, Neg. LLF: 100.1721021402697
Iteration: 9, Func. Count: 109, Neg. LLF: 100.0881108969675
Iteration: 10, Func. Count: 121, Neg. LLF: 99.93318984008958
Iteration: 11, Func. Count: 133, Neg. LLF: 99.75307634606604
Iteration: 12, Func. Count: 145, Neg. LLF: 99.64865684710595
Iteration: 13, Func. Count: 156, Neg. LLF: 99.6634745357037
Iteration: 14, Func. Count: 168, Neg. LLF: 99.62508979073623
Iteration: 15, Func. Count: 179, Neg. LLF: 99.62540654583232
Iteration: 16, Func. Count: 191, Neg. LLF: 99.62398567317503
Iteration: 17, Func. Count: 202, Neg. LLF: 99.62387978219655
Iteration: 18, Func. Count: 213, Neg. LLF: 99.62376951340516
Iteration: 19, Func. Count: 224, Neg. LLF: 99.62375030708716
Iteration: 20, Func. Count: 235, Neg. LLF: 99.62374872897499
Iteration: 21, Func. Count: 245, Neg. LLF: 99.62374872898444
Optimization terminated successfully (Exit mode 0)
Current function value: 99.62374872897499
Iterations: 21
Function evaluations: 245
Gradient evaluations: 21
Iteration: 1, Func. Count: 13, Neg. LLF: 103.05613905539583
Iteration: 2, Func. Count: 26, Neg. LLF: 108.19567178278012
Iteration: 3, Func. Count: 39, Neg. LLF: 153.39341407459938
Iteration: 4, Func. Count: 52, Neg. LLF: 101.01120058138609
Iteration: 5, Func. Count: 65, Neg. LLF: 100.06281149393529
Iteration: 6, Func. Count: 78, Neg. LLF: 100.34475579469095
Iteration: 7, Func. Count: 92, Neg. LLF: 100.01913622501313
Iteration: 8, Func. Count: 105, Neg. LLF: 99.96487138361076
Iteration: 9, Func. Count: 118, Neg. LLF: 100.2493872680707
Iteration: 10, Func. Count: 131, Neg. LLF: 99.70075122863715
Iteration: 11, Func. Count: 143, Neg. LLF: 100.07178724069863
Iteration: 12, Func. Count: 156, Neg. LLF: 101.01998420923638
Iteration: 13, Func. Count: 170, Neg. LLF: 99.76908700201277
Iteration: 14, Func. Count: 183, Neg. LLF: 99.63179649002156
Iteration: 15, Func. Count: 195, Neg. LLF: 99.62452935553411
Iteration: 16, Func. Count: 207, Neg. LLF: 99.62384631696021
Iteration: 17, Func. Count: 219, Neg. LLF: 99.62379986917637
Iteration: 18, Func. Count: 231, Neg. LLF: 99.62377101791448
Iteration: 19, Func. Count: 243, Neg. LLF: 99.62375618997395
Iteration: 20, Func. Count: 255, Neg. LLF: 99.62374965754599
Iteration: 21, Func. Count: 267, Neg. LLF: 99.62374874285243
Optimization terminated successfully (Exit mode 0)
Current function value: 99.62374874285243
Iterations: 21
Function evaluations: 267
Gradient evaluations: 21
Iteration: 1, Func. Count: 10, Neg. LLF: 107.76871715025842
Iteration: 2, Func. Count: 21, Neg. LLF: 171.97926994712194
Iteration: 3, Func. Count: 31, Neg. LLF: 4633104.428342103
Iteration: 4, Func. Count: 41, Neg. LLF: 102.00113977160218
Iteration: 5, Func. Count: 51, Neg. LLF: 193.01291453057146
Iteration: 6, Func. Count: 62, Neg. LLF: 101.8852108622431
Iteration: 7, Func. Count: 72, Neg. LLF: 100.87951554313554
Iteration: 8, Func. Count: 82, Neg. LLF: 99.53540781182113
Iteration: 9, Func. Count: 91, Neg. LLF: 101.4453948878585
Iteration: 10, Func. Count: 101, Neg. LLF: 102.5633442499906
Iteration: 11, Func. Count: 112, Neg. LLF: 99.46907263393044
Iteration: 12, Func. Count: 121, Neg. LLF: 99.45818923771238
Iteration: 13, Func. Count: 130, Neg. LLF: 99.44198146144653
Iteration: 14, Func. Count: 139, Neg. LLF: 99.43175059745067
Iteration: 15, Func. Count: 148, Neg. LLF: 99.42568205592863
Iteration: 16, Func. Count: 157, Neg. LLF: 99.42362951465486
Iteration: 17, Func. Count: 166, Neg. LLF: 99.42358220867476
Iteration: 18, Func. Count: 175, Neg. LLF: 99.42357827586507
Iteration: 19, Func. Count: 183, Neg. LLF: 99.42357819545178
Optimization terminated successfully (Exit mode 0)
Current function value: 99.42357827586507
Iterations: 19
Function evaluations: 183
Gradient evaluations: 19
Iteration: 1, Func. Count: 11, Neg. LLF: 101.73484828929196
Iteration: 2, Func. Count: 22, Neg. LLF: 114.01479097378547
Iteration: 3, Func. Count: 34, Neg. LLF: 106.9639501845687
Iteration: 4, Func. Count: 45, Neg. LLF: 119.9666589859864
Iteration: 5, Func. Count: 56, Neg. LLF: 99.90422042530129
Iteration: 6, Func. Count: 66, Neg. LLF: 107.52321629449378
Iteration: 7, Func. Count: 77, Neg. LLF: 99.78497957069243
Iteration: 8, Func. Count: 88, Neg. LLF: 118.35722185915766
Iteration: 9, Func. Count: 100, Neg. LLF: 99.44145792060695
Iteration: 10, Func. Count: 110, Neg. LLF: 99.43007415730459
Iteration: 11, Func. Count: 120, Neg. LLF: 99.42390667619108
Iteration: 12, Func. Count: 130, Neg. LLF: 99.42360092656058
Iteration: 13, Func. Count: 140, Neg. LLF: 99.42358526207236
Iteration: 14, Func. Count: 150, Neg. LLF: 99.42357810819898
Iteration: 15, Func. Count: 159, Neg. LLF: 99.42357820173052
Optimization terminated successfully (Exit mode 0)
Current function value: 99.42357810819898
Iterations: 15
Function evaluations: 159
Gradient evaluations: 15
Iteration: 1, Func. Count: 12, Neg. LLF: 101.54877183003295
Iteration: 2, Func. Count: 23, Neg. LLF: 101.73378821163294
Iteration: 3, Func. Count: 36, Neg. LLF: 137.14661723947867
Iteration: 4, Func. Count: 51, Neg. LLF: 227.918674542602
Iteration: 5, Func. Count: 64, Neg. LLF: 131.11989671694084
Iteration: 6, Func. Count: 76, Neg. LLF: 109.50110137804995
Iteration: 7, Func. Count: 88, Neg. LLF: 111.90897744750096
Iteration: 8, Func. Count: 100, Neg. LLF: 100.8235698956609
Iteration: 9, Func. Count: 112, Neg. LLF: 99.46506927681224
Iteration: 10, Func. Count: 124, Neg. LLF: 99.60751407620246
Iteration: 11, Func. Count: 136, Neg. LLF: 99.42873962398376
Iteration: 12, Func. Count: 147, Neg. LLF: 99.42461854057449
Iteration: 13, Func. Count: 158, Neg. LLF: 99.42419215884472
Iteration: 14, Func. Count: 169, Neg. LLF: 99.42398895505707
Iteration: 15, Func. Count: 180, Neg. LLF: 99.42387254388993
Iteration: 16, Func. Count: 191, Neg. LLF: 99.42364468894986
Iteration: 17, Func. Count: 202, Neg. LLF: 99.42358574541083
Iteration: 18, Func. Count: 213, Neg. LLF: 99.42357807542818
Iteration: 19, Func. Count: 223, Neg. LLF: 99.4235780783978
Optimization terminated successfully (Exit mode 0)
Current function value: 99.42357807542818
Iterations: 19
Function evaluations: 223
Gradient evaluations: 19
Iteration: 1, Func. Count: 13, Neg. LLF: 101.57052232575039
Iteration: 2, Func. Count: 26, Neg. LLF: 140.51071365262612
Iteration: 3, Func. Count: 39, Neg. LLF: 113.0070359027992
Iteration: 4, Func. Count: 52, Neg. LLF: 156.80469823101762
Iteration: 5, Func. Count: 65, Neg. LLF: 120.22419749437245
Iteration: 6, Func. Count: 79, Neg. LLF: 100.52517150644378
Iteration: 7, Func. Count: 92, Neg. LLF: 99.62852879835424
Iteration: 8, Func. Count: 104, Neg. LLF: 99.47553971632603
Iteration: 9, Func. Count: 116, Neg. LLF: 104.90105960548966
Iteration: 10, Func. Count: 132, Neg. LLF: 99.46532543040446
Iteration: 11, Func. Count: 145, Neg. LLF: 99.42532901635822
Iteration: 12, Func. Count: 157, Neg. LLF: 99.42094544807573
Iteration: 13, Func. Count: 169, Neg. LLF: 99.41976210792082
Iteration: 14, Func. Count: 181, Neg. LLF: 99.41932949790969
Iteration: 15, Func. Count: 193, Neg. LLF: 99.41911951911091
Iteration: 16, Func. Count: 205, Neg. LLF: 99.41909201520394
Iteration: 17, Func. Count: 217, Neg. LLF: 99.41907643042678
Iteration: 18, Func. Count: 229, Neg. LLF: 99.41907395414015
Iteration: 19, Func. Count: 240, Neg. LLF: 99.41907395413914
Optimization terminated successfully (Exit mode 0)
Current function value: 99.41907395414015
Iterations: 19
Function evaluations: 240
Gradient evaluations: 19
Iteration: 1, Func. Count: 14, Neg. LLF: 101.60260625733311
Iteration: 2, Func. Count: 28, Neg. LLF: 143.10443127188105
Iteration: 3, Func. Count: 42, Neg. LLF: 112.8025395523192
Iteration: 4, Func. Count: 56, Neg. LLF: 177.09757048483013
Iteration: 5, Func. Count: 70, Neg. LLF: 146.3412653161925
Iteration: 6, Func. Count: 85, Neg. LLF: 103.42375277654878
Iteration: 7, Func. Count: 99, Neg. LLF: 100.11523086360987
Iteration: 8, Func. Count: 113, Neg. LLF: 99.46614497700097
Iteration: 9, Func. Count: 126, Neg. LLF: 100.04233357812639
Iteration: 10, Func. Count: 140, Neg. LLF: 99.45787639997077
Iteration: 11, Func. Count: 154, Neg. LLF: 99.42405066475037
Iteration: 12, Func. Count: 167, Neg. LLF: 99.5140146930126
Iteration: 13, Func. Count: 181, Neg. LLF: 99.42099307520607
Iteration: 14, Func. Count: 194, Neg. LLF: 99.4193825475655
Iteration: 15, Func. Count: 207, Neg. LLF: 99.41915028696359
Iteration: 16, Func. Count: 220, Neg. LLF: 99.41907550391878
Iteration: 17, Func. Count: 233, Neg. LLF: 99.41907422922837
Iteration: 18, Func. Count: 245, Neg. LLF: 99.41907428400991
Optimization terminated successfully (Exit mode 0)
Current function value: 99.41907422922837
Iterations: 18
Function evaluations: 245
Gradient evaluations: 18
Iteration: 1, Func. Count: 11, Neg. LLF: 108.65541129867667
Iteration: 2, Func. Count: 23, Neg. LLF: 182.4590004673764
Iteration: 3, Func. Count: 34, Neg. LLF: 4634322.238262827
Iteration: 4, Func. Count: 45, Neg. LLF: 108.73566591814162
Iteration: 5, Func. Count: 56, Neg. LLF: 102.68039496339057
Iteration: 6, Func. Count: 67, Neg. LLF: 99.73435297016539
Iteration: 7, Func. Count: 77, Neg. LLF: 101.93041208983045
Iteration: 8, Func. Count: 88, Neg. LLF: 104.2246643829657
Iteration: 9, Func. Count: 101, Neg. LLF: 100.26919844409831
Iteration: 10, Func. Count: 112, Neg. LLF: 100.0575405218297
Iteration: 11, Func. Count: 123, Neg. LLF: 99.51468892706592
Iteration: 12, Func. Count: 134, Neg. LLF: 99.41503165140114
Iteration: 13, Func. Count: 144, Neg. LLF: 99.37616023595614
Iteration: 14, Func. Count: 154, Neg. LLF: 99.35663218104621
Iteration: 15, Func. Count: 164, Neg. LLF: 99.34147234329883
Iteration: 16, Func. Count: 174, Neg. LLF: 99.34008594490878
Iteration: 17, Func. Count: 184, Neg. LLF: 99.33999121818694
Iteration: 18, Func. Count: 194, Neg. LLF: 99.33998927188904
Iteration: 19, Func. Count: 203, Neg. LLF: 99.33998927187592
Optimization terminated successfully (Exit mode 0)
Current function value: 99.33998927188904
Iterations: 19
Function evaluations: 203
Gradient evaluations: 19
Iteration: 1, Func. Count: 12, Neg. LLF: 101.53537830143618
Iteration: 2, Func. Count: 23, Neg. LLF: 101.7991119219449
Iteration: 3, Func. Count: 36, Neg. LLF: 135.28795638312016
Iteration: 4, Func. Count: 51, Neg. LLF: 157.83240110563372
Iteration: 5, Func. Count: 64, Neg. LLF: 145.13880246373458
Iteration: 6, Func. Count: 76, Neg. LLF: 113.38449889319743
Iteration: 7, Func. Count: 88, Neg. LLF: 106.92558929519365
Iteration: 8, Func. Count: 100, Neg. LLF: 100.23527057947437
Iteration: 9, Func. Count: 112, Neg. LLF: 99.41038493753508
Iteration: 10, Func. Count: 124, Neg. LLF: 99.46439400026559
Iteration: 11, Func. Count: 136, Neg. LLF: 99.36558675659792
Iteration: 12, Func. Count: 148, Neg. LLF: 99.34041412810313
Iteration: 13, Func. Count: 159, Neg. LLF: 99.34011351809588
Iteration: 14, Func. Count: 170, Neg. LLF: 99.34008307346602
Iteration: 15, Func. Count: 181, Neg. LLF: 99.34004702961786
Iteration: 16, Func. Count: 192, Neg. LLF: 99.34000880271158
Iteration: 17, Func. Count: 203, Neg. LLF: 99.33999152959935
Iteration: 18, Func. Count: 214, Neg. LLF: 99.33998913742427
Iteration: 19, Func. Count: 224, Neg. LLF: 99.33998923606227
Optimization terminated successfully (Exit mode 0)
Current function value: 99.33998913742427
Iterations: 19
Function evaluations: 224
Gradient evaluations: 19
Iteration: 1, Func. Count: 13, Neg. LLF: 101.47582243061139
Iteration: 2, Func. Count: 25, Neg. LLF: 102.86242324055286
Iteration: 3, Func. Count: 39, Neg. LLF: 122.25358626154481
Iteration: 4, Func. Count: 55, Neg. LLF: 151.76071610898074
Iteration: 5, Func. Count: 68, Neg. LLF: 1157.9107901961345
Iteration: 6, Func. Count: 81, Neg. LLF: 109.19879112770548
Iteration: 7, Func. Count: 94, Neg. LLF: 103.39039153218062
Iteration: 8, Func. Count: 107, Neg. LLF: 100.14758164756796
Iteration: 9, Func. Count: 120, Neg. LLF: 99.38150981866262
Iteration: 10, Func. Count: 133, Neg. LLF: 99.50946671619542
Iteration: 11, Func. Count: 146, Neg. LLF: 99.3668728214287
Iteration: 12, Func. Count: 159, Neg. LLF: 99.34059825898625
Iteration: 13, Func. Count: 171, Neg. LLF: 99.3403213273187
Iteration: 14, Func. Count: 183, Neg. LLF: 99.34023563304049
Iteration: 15, Func. Count: 195, Neg. LLF: 99.34008125205902
Iteration: 16, Func. Count: 207, Neg. LLF: 99.34000723112425
Iteration: 17, Func. Count: 219, Neg. LLF: 99.33999019167408
Iteration: 18, Func. Count: 231, Neg. LLF: 99.33998904835516
Iteration: 19, Func. Count: 242, Neg. LLF: 99.33998907915091
Optimization terminated successfully (Exit mode 0)
Current function value: 99.33998904835516
Iterations: 19
Function evaluations: 242
Gradient evaluations: 19
Iteration: 1, Func. Count: 14, Neg. LLF: 101.62173026695648
Iteration: 2, Func. Count: 28, Neg. LLF: 156.6808146252802
Iteration: 3, Func. Count: 42, Neg. LLF: 115.5243583728137
Iteration: 4, Func. Count: 56, Neg. LLF: 9043515.738478541
Iteration: 5, Func. Count: 70, Neg. LLF: 101.68848402778659
Iteration: 6, Func. Count: 84, Neg. LLF: 102.04908622183906
Iteration: 7, Func. Count: 98, Neg. LLF: 100.84068061916162
Iteration: 8, Func. Count: 112, Neg. LLF: 99.40021631307636
Iteration: 9, Func. Count: 125, Neg. LLF: 100.16494705259437
Iteration: 10, Func. Count: 139, Neg. LLF: 99.39373423594417
Iteration: 11, Func. Count: 153, Neg. LLF: 99.57536620366584
Iteration: 12, Func. Count: 168, Neg. LLF: 99.3108356224817
Iteration: 13, Func. Count: 181, Neg. LLF: 99.31047691693831
Iteration: 14, Func. Count: 194, Neg. LLF: 99.31042916993606
Iteration: 15, Func. Count: 207, Neg. LLF: 99.31041998305216
Iteration: 16, Func. Count: 220, Neg. LLF: 99.31041390043102
Iteration: 17, Func. Count: 233, Neg. LLF: 99.31040712995537
Iteration: 18, Func. Count: 246, Neg. LLF: 99.31040643573903
Optimization terminated successfully (Exit mode 0)
Current function value: 99.31040643573903
Iterations: 18
Function evaluations: 246
Gradient evaluations: 18
Iteration: 1, Func. Count: 15, Neg. LLF: 101.72247500047209
Iteration: 2, Func. Count: 30, Neg. LLF: 161.262839512852
Iteration: 3, Func. Count: 45, Neg. LLF: 113.0332757935981
Iteration: 4, Func. Count: 60, Neg. LLF: 965.6132059912829
Iteration: 5, Func. Count: 75, Neg. LLF: 102.30253676874345
Iteration: 6, Func. Count: 90, Neg. LLF: 103.88807120871742
Iteration: 7, Func. Count: 105, Neg. LLF: 100.83592330545571
Iteration: 8, Func. Count: 120, Neg. LLF: 99.33001301272668
Iteration: 9, Func. Count: 134, Neg. LLF: 99.38907172285774
Iteration: 10, Func. Count: 149, Neg. LLF: 99.3179825335374
Iteration: 11, Func. Count: 164, Neg. LLF: 99.31174856522863
Iteration: 12, Func. Count: 179, Neg. LLF: 99.31061079655555
Iteration: 13, Func. Count: 193, Neg. LLF: 99.31052135225171
Iteration: 14, Func. Count: 207, Neg. LLF: 99.31042961971467
Iteration: 15, Func. Count: 221, Neg. LLF: 99.31040805760925
Iteration: 16, Func. Count: 235, Neg. LLF: 99.31040641894462
Iteration: 17, Func. Count: 248, Neg. LLF: 99.31040648534555
Optimization terminated successfully (Exit mode 0)
Current function value: 99.31040641894462
Iterations: 17
Function evaluations: 248
Gradient evaluations: 17
Iteration: 1, Func. Count: 8, Neg. LLF: 113.10428015843168
Iteration: 2, Func. Count: 17, Neg. LLF: 4531.258092837557
Iteration: 3, Func. Count: 25, Neg. LLF: 776.1205688914349
Iteration: 4, Func. Count: 33, Neg. LLF: 141.44599219730543
Iteration: 5, Func. Count: 41, Neg. LLF: 108.75805574541016
Iteration: 6, Func. Count: 49, Neg. LLF: 102.13207193704262
Iteration: 7, Func. Count: 56, Neg. LLF: 102.09201936285982
Iteration: 8, Func. Count: 63, Neg. LLF: 102.08102699715539
Iteration: 9, Func. Count: 70, Neg. LLF: 102.07954858623822
Iteration: 10, Func. Count: 77, Neg. LLF: 102.07930513739521
Iteration: 11, Func. Count: 84, Neg. LLF: 102.07921544071587
Iteration: 12, Func. Count: 91, Neg. LLF: 102.07914971356975
Iteration: 13, Func. Count: 98, Neg. LLF: 102.0791476330712
Iteration: 14, Func. Count: 104, Neg. LLF: 102.07914775265529
Optimization terminated successfully (Exit mode 0)
Current function value: 102.0791476330712
Iterations: 14
Function evaluations: 104
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 103.47769454990883
Iteration: 2, Func. Count: 18, Neg. LLF: 110.70064135163803
Iteration: 3, Func. Count: 27, Neg. LLF: 114.72667600902307
Iteration: 4, Func. Count: 36, Neg. LLF: 102.36581202164824
Iteration: 5, Func. Count: 44, Neg. LLF: 115.12390712281156
Iteration: 6, Func. Count: 53, Neg. LLF: 102.19781776820881
Iteration: 7, Func. Count: 62, Neg. LLF: 102.09581020149848
Iteration: 8, Func. Count: 70, Neg. LLF: 102.08101347964535
Iteration: 9, Func. Count: 78, Neg. LLF: 102.07964056198465
Iteration: 10, Func. Count: 86, Neg. LLF: 102.07915232987581
Iteration: 11, Func. Count: 94, Neg. LLF: 102.0791476100975
Iteration: 12, Func. Count: 101, Neg. LLF: 102.07914761540246
Optimization terminated successfully (Exit mode 0)
Current function value: 102.0791476100975
Iterations: 12
Function evaluations: 101
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 103.4711410076728
Iteration: 2, Func. Count: 19, Neg. LLF: 104.30668352524238
Iteration: 3, Func. Count: 30, Neg. LLF: 116.67984702950551
Iteration: 4, Func. Count: 40, Neg. LLF: 111.56936379058789
Iteration: 5, Func. Count: 50, Neg. LLF: 107.67921858263745
Iteration: 6, Func. Count: 60, Neg. LLF: 105.46232982059298
Iteration: 7, Func. Count: 70, Neg. LLF: 102.31960230581963
Iteration: 8, Func. Count: 80, Neg. LLF: 102.16315934447262
Iteration: 9, Func. Count: 90, Neg. LLF: 102.1107644974321
Iteration: 10, Func. Count: 100, Neg. LLF: 102.08868906939925
Iteration: 11, Func. Count: 109, Neg. LLF: 102.08092624797268
Iteration: 12, Func. Count: 118, Neg. LLF: 102.07935299665797
Iteration: 13, Func. Count: 127, Neg. LLF: 102.07916798920243
Iteration: 14, Func. Count: 136, Neg. LLF: 102.07914778176249
Iteration: 15, Func. Count: 144, Neg. LLF: 102.07914783383733
Optimization terminated successfully (Exit mode 0)
Current function value: 102.07914778176249
Iterations: 15
Function evaluations: 144
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 103.46790888100587
Iteration: 2, Func. Count: 22, Neg. LLF: 131.2554948720054
Iteration: 3, Func. Count: 33, Neg. LLF: 372.30737542106175
Iteration: 4, Func. Count: 44, Neg. LLF: 102.79318559588111
Iteration: 5, Func. Count: 55, Neg. LLF: 105.54298576696091
Iteration: 6, Func. Count: 66, Neg. LLF: 102.09343148015736
Iteration: 7, Func. Count: 76, Neg. LLF: 102.20548486774129
Iteration: 8, Func. Count: 87, Neg. LLF: 102.07948565878922
Iteration: 9, Func. Count: 97, Neg. LLF: 102.07917334725416
Iteration: 10, Func. Count: 107, Neg. LLF: 102.07914831953715
Iteration: 11, Func. Count: 117, Neg. LLF: 102.07914757023107
Optimization terminated successfully (Exit mode 0)
Current function value: 102.07914757023107
Iterations: 11
Function evaluations: 117
Gradient evaluations: 11
Iteration: 1, Func. Count: 12, Neg. LLF: 103.47351956193634
Iteration: 2, Func. Count: 24, Neg. LLF: 131.77833476518109
Iteration: 3, Func. Count: 36, Neg. LLF: 938.9682909489821
Iteration: 4, Func. Count: 48, Neg. LLF: 149.21800036488582
Iteration: 5, Func. Count: 61, Neg. LLF: 102.18486012203087
Iteration: 6, Func. Count: 72, Neg. LLF: 106.18615316633765
Iteration: 7, Func. Count: 84, Neg. LLF: 102.13439419551608
Iteration: 8, Func. Count: 95, Neg. LLF: 102.08081226721838
Iteration: 9, Func. Count: 106, Neg. LLF: 102.07920855013874
Iteration: 10, Func. Count: 117, Neg. LLF: 102.07914784739039
Iteration: 11, Func. Count: 127, Neg. LLF: 102.07914785886993
Optimization terminated successfully (Exit mode 0)
Current function value: 102.07914784739039
Iterations: 11
Function evaluations: 127
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 113.02170860987292
Iteration: 2, Func. Count: 19, Neg. LLF: 629.4179884119303
Iteration: 3, Func. Count: 28, Neg. LLF: 927.2713812713959
Iteration: 4, Func. Count: 37, Neg. LLF: 140.42341505988293
Iteration: 5, Func. Count: 46, Neg. LLF: 108.77224603505768
Iteration: 6, Func. Count: 55, Neg. LLF: 102.1359819770167
Iteration: 7, Func. Count: 63, Neg. LLF: 102.09303369119144
Iteration: 8, Func. Count: 71, Neg. LLF: 102.08126431337529
Iteration: 9, Func. Count: 79, Neg. LLF: 102.07957424140648
Iteration: 10, Func. Count: 87, Neg. LLF: 102.07929806289775
Iteration: 11, Func. Count: 95, Neg. LLF: 102.0792209150368
Iteration: 12, Func. Count: 103, Neg. LLF: 102.0791488597889
Iteration: 13, Func. Count: 111, Neg. LLF: 102.07914760421102
Iteration: 14, Func. Count: 118, Neg. LLF: 102.0791476386115
Optimization terminated successfully (Exit mode 0)
Current function value: 102.07914760421102
Iterations: 14
Function evaluations: 118
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 115.2815693301185
Iteration: 2, Func. Count: 21, Neg. LLF: 140.279734886964
Iteration: 3, Func. Count: 31, Neg. LLF: 156.30893443777285
Iteration: 4, Func. Count: 41, Neg. LLF: 103.07864156425921
Iteration: 5, Func. Count: 50, Neg. LLF: 102.22478904701853
Iteration: 6, Func. Count: 59, Neg. LLF: 102.16082210974449
Iteration: 7, Func. Count: 68, Neg. LLF: 102.59968623229769
Iteration: 8, Func. Count: 78, Neg. LLF: 102.10146897220777
Iteration: 9, Func. Count: 87, Neg. LLF: 102.08728550582408
Iteration: 10, Func. Count: 96, Neg. LLF: 102.08381801303122
Iteration: 11, Func. Count: 105, Neg. LLF: 102.08057994989079
Iteration: 12, Func. Count: 114, Neg. LLF: 102.07963542898116
Iteration: 13, Func. Count: 123, Neg. LLF: 102.07919454992218
Iteration: 14, Func. Count: 132, Neg. LLF: 102.0791549423406
Iteration: 15, Func. Count: 141, Neg. LLF: 102.07914783106331
Iteration: 16, Func. Count: 149, Neg. LLF: 102.07914783645337
Optimization terminated successfully (Exit mode 0)
Current function value: 102.07914783106331
Iterations: 16
Function evaluations: 149
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 103.50890882303207
Iteration: 2, Func. Count: 21, Neg. LLF: 108.92500778946595
Iteration: 3, Func. Count: 32, Neg. LLF: 105.81633702729937
Iteration: 4, Func. Count: 43, Neg. LLF: 118.54147843558484
Iteration: 5, Func. Count: 54, Neg. LLF: 108.39827476936111
Iteration: 6, Func. Count: 65, Neg. LLF: 102.4662341944181
Iteration: 7, Func. Count: 76, Neg. LLF: 102.23186152658138
Iteration: 8, Func. Count: 87, Neg. LLF: 102.09121811452117
Iteration: 9, Func. Count: 97, Neg. LLF: 102.10699117680284
Iteration: 10, Func. Count: 108, Neg. LLF: 102.0804043644611
Iteration: 11, Func. Count: 118, Neg. LLF: 102.07915695538225
Iteration: 12, Func. Count: 128, Neg. LLF: 102.07914759445642
Iteration: 13, Func. Count: 137, Neg. LLF: 102.07914764656284
Optimization terminated successfully (Exit mode 0)
Current function value: 102.07914759445642
Iterations: 13
Function evaluations: 137
Gradient evaluations: 13
Iteration: 1, Func. Count: 12, Neg. LLF: 103.48787417747776
Iteration: 2, Func. Count: 24, Neg. LLF: 142.54946710424255
Iteration: 3, Func. Count: 36, Neg. LLF: 1446.2300938607284
Iteration: 4, Func. Count: 48, Neg. LLF: 102.2930125460671
Iteration: 5, Func. Count: 59, Neg. LLF: 102.61520194801432
Iteration: 6, Func. Count: 71, Neg. LLF: 107.2076220691976
Iteration: 7, Func. Count: 83, Neg. LLF: 102.08294133752513
Iteration: 8, Func. Count: 94, Neg. LLF: 102.07953848058446
Iteration: 9, Func. Count: 105, Neg. LLF: 102.0791613017381
Iteration: 10, Func. Count: 116, Neg. LLF: 102.0791478459427
Iteration: 11, Func. Count: 126, Neg. LLF: 102.07914786136914
Optimization terminated successfully (Exit mode 0)
Current function value: 102.0791478459427
Iterations: 11
Function evaluations: 126
Gradient evaluations: 11
Iteration: 1, Func. Count: 13, Neg. LLF: 103.5039556814215
Iteration: 2, Func. Count: 26, Neg. LLF: 145.11287128956158
Iteration: 3, Func. Count: 39, Neg. LLF: 711.6428682402873
Iteration: 4, Func. Count: 52, Neg. LLF: 139.87220716995884
Iteration: 5, Func. Count: 66, Neg. LLF: 102.17447955139721
Iteration: 6, Func. Count: 78, Neg. LLF: 102.09084245566842
Iteration: 7, Func. Count: 90, Neg. LLF: 102.0793860630944
Iteration: 8, Func. Count: 102, Neg. LLF: 102.07915830241727
Iteration: 9, Func. Count: 114, Neg. LLF: 102.07914823891574
Iteration: 10, Func. Count: 126, Neg. LLF: 102.07914754664958
Optimization terminated successfully (Exit mode 0)
Current function value: 102.07914754664958
Iterations: 10
Function evaluations: 126
Gradient evaluations: 10
Iteration: 1, Func. Count: 10, Neg. LLF: 104.39274354328845
Iteration: 2, Func. Count: 20, Neg. LLF: 445.40190331378125
Iteration: 3, Func. Count: 30, Neg. LLF: 387132.27877148625
Iteration: 4, Func. Count: 40, Neg. LLF: 7190168.554440037
Iteration: 5, Func. Count: 50, Neg. LLF: 187.31442361696998
Iteration: 6, Func. Count: 60, Neg. LLF: 100.64979667745497
Iteration: 7, Func. Count: 70, Neg. LLF: 101.24047683283985
Iteration: 8, Func. Count: 80, Neg. LLF: 99.81835624233854
Iteration: 9, Func. Count: 89, Neg. LLF: 99.7887501596982
Iteration: 10, Func. Count: 98, Neg. LLF: 154.4324357813796
Iteration: 11, Func. Count: 110, Neg. LLF: 99.78008022058026
Iteration: 12, Func. Count: 119, Neg. LLF: 99.77462698696398
Iteration: 13, Func. Count: 128, Neg. LLF: 99.77287087587978
Iteration: 14, Func. Count: 137, Neg. LLF: 99.77016915661879
Iteration: 15, Func. Count: 146, Neg. LLF: 99.76929822206162
Iteration: 16, Func. Count: 155, Neg. LLF: 99.76921498311259
Iteration: 17, Func. Count: 164, Neg. LLF: 99.76921245182157
Iteration: 18, Func. Count: 172, Neg. LLF: 99.76921245181958
Optimization terminated successfully (Exit mode 0)
Current function value: 99.76921245182157
Iterations: 18
Function evaluations: 172
Gradient evaluations: 18
Iteration: 1, Func. Count: 11, Neg. LLF: 108.12461262097995
Iteration: 2, Func. Count: 22, Neg. LLF: 104.76563217457799
Iteration: 3, Func. Count: 34, Neg. LLF: 104.8803431523347
Iteration: 4, Func. Count: 47, Neg. LLF: 112.20482941833764
Iteration: 5, Func. Count: 58, Neg. LLF: 101.19004104526724
Iteration: 6, Func. Count: 69, Neg. LLF: 100.29946498017325
Iteration: 7, Func. Count: 79, Neg. LLF: 99.824088352529
Iteration: 8, Func. Count: 89, Neg. LLF: 101.42865201368375
Iteration: 9, Func. Count: 101, Neg. LLF: 99.78367404500125
Iteration: 10, Func. Count: 111, Neg. LLF: 99.77160400512649
Iteration: 11, Func. Count: 121, Neg. LLF: 99.7692904448309
Iteration: 12, Func. Count: 131, Neg. LLF: 99.76921570616457
Iteration: 13, Func. Count: 141, Neg. LLF: 99.76921262701845
Iteration: 14, Func. Count: 150, Neg. LLF: 99.76921270477521
Optimization terminated successfully (Exit mode 0)
Current function value: 99.76921262701845
Iterations: 14
Function evaluations: 150
Gradient evaluations: 14
Iteration: 1, Func. Count: 12, Neg. LLF: 105.67344226552095
Iteration: 2, Func. Count: 24, Neg. LLF: 105.05884214802856
Iteration: 3, Func. Count: 37, Neg. LLF: 108.31944613597341
Iteration: 4, Func. Count: 51, Neg. LLF: 496.10730714776224
Iteration: 5, Func. Count: 63, Neg. LLF: 100.75793952020156
Iteration: 6, Func. Count: 75, Neg. LLF: 100.32558236076727
Iteration: 7, Func. Count: 87, Neg. LLF: 99.77817756082456
Iteration: 8, Func. Count: 98, Neg. LLF: 107.85801177326208
Iteration: 9, Func. Count: 111, Neg. LLF: 102.58236522824204
Iteration: 10, Func. Count: 123, Neg. LLF: 99.76148506308859
Iteration: 11, Func. Count: 134, Neg. LLF: 99.7613234774087
Iteration: 12, Func. Count: 145, Neg. LLF: 99.76130009807561
Iteration: 13, Func. Count: 156, Neg. LLF: 99.76129116570311
Iteration: 14, Func. Count: 166, Neg. LLF: 99.76129116566868
Optimization terminated successfully (Exit mode 0)
Current function value: 99.76129116570311
Iterations: 14
Function evaluations: 166
Gradient evaluations: 14
Iteration: 1, Func. Count: 13, Neg. LLF: 105.10216872531556
Iteration: 2, Func. Count: 26, Neg. LLF: 106.40834493141311
Iteration: 3, Func. Count: 40, Neg. LLF: 345.0606911114211
Iteration: 4, Func. Count: 55, Neg. LLF: 860.056189704854
Iteration: 5, Func. Count: 68, Neg. LLF: 100.87838782016094
Iteration: 6, Func. Count: 81, Neg. LLF: 99.72061912632046
Iteration: 7, Func. Count: 93, Neg. LLF: 101.09785976710276
Iteration: 8, Func. Count: 107, Neg. LLF: 99.87504241708875
Iteration: 9, Func. Count: 120, Neg. LLF: 108.70400192143501
Iteration: 10, Func. Count: 133, Neg. LLF: 99.62878561440905
Iteration: 11, Func. Count: 145, Neg. LLF: 99.62477797629376
Iteration: 12, Func. Count: 157, Neg. LLF: 99.62389057518729
Iteration: 13, Func. Count: 169, Neg. LLF: 99.62375504206669
Iteration: 14, Func. Count: 181, Neg. LLF: 99.62374969804632
Iteration: 15, Func. Count: 193, Neg. LLF: 99.62374872078442
Optimization terminated successfully (Exit mode 0)
Current function value: 99.62374872078442
Iterations: 15
Function evaluations: 193
Gradient evaluations: 15
Iteration: 1, Func. Count: 14, Neg. LLF: 104.71218448001446
Iteration: 2, Func. Count: 28, Neg. LLF: 106.1726402459061
Iteration: 3, Func. Count: 43, Neg. LLF: 132.8119950624929
Iteration: 4, Func. Count: 59, Neg. LLF: 600.365806930208
Iteration: 5, Func. Count: 73, Neg. LLF: 107.04787783384661
Iteration: 6, Func. Count: 88, Neg. LLF: 99.96533750020485
Iteration: 7, Func. Count: 101, Neg. LLF: 99.89509409191004
Iteration: 8, Func. Count: 115, Neg. LLF: 101.65811830159971
Iteration: 9, Func. Count: 130, Neg. LLF: 102.53344643045304
Iteration: 10, Func. Count: 144, Neg. LLF: 99.6288988751126
Iteration: 11, Func. Count: 157, Neg. LLF: 99.62919183479346
Iteration: 12, Func. Count: 171, Neg. LLF: 99.6237926879249
Iteration: 13, Func. Count: 184, Neg. LLF: 99.62375551014975
Iteration: 14, Func. Count: 197, Neg. LLF: 99.62374995628923
Iteration: 15, Func. Count: 210, Neg. LLF: 99.62374869931456
Iteration: 16, Func. Count: 222, Neg. LLF: 99.62374872672004
Optimization terminated successfully (Exit mode 0)
Current function value: 99.62374869931456
Iterations: 16
Function evaluations: 222
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 107.40577497387126
Iteration: 2, Func. Count: 23, Neg. LLF: 170.33249104223268
Iteration: 3, Func. Count: 34, Neg. LLF: 4622558.377590778
Iteration: 4, Func. Count: 45, Neg. LLF: 115.03893358124662
Iteration: 5, Func. Count: 56, Neg. LLF: 112.06592433864152
Iteration: 6, Func. Count: 67, Neg. LLF: 101.72777928592618
Iteration: 7, Func. Count: 78, Neg. LLF: 100.68472528896837
Iteration: 8, Func. Count: 89, Neg. LLF: 99.81087701846256
Iteration: 9, Func. Count: 100, Neg. LLF: 99.55960929914089
Iteration: 10, Func. Count: 110, Neg. LLF: 101.42908576474845
Iteration: 11, Func. Count: 122, Neg. LLF: 103.02564361418928
Iteration: 12, Func. Count: 135, Neg. LLF: 99.46390659885593
Iteration: 13, Func. Count: 145, Neg. LLF: 99.44510533448734
Iteration: 14, Func. Count: 155, Neg. LLF: 99.43152017841224
Iteration: 15, Func. Count: 165, Neg. LLF: 99.4237807272697
Iteration: 16, Func. Count: 175, Neg. LLF: 99.42358398470574
Iteration: 17, Func. Count: 185, Neg. LLF: 99.42357827885087
Iteration: 18, Func. Count: 194, Neg. LLF: 99.42357819844261
Optimization terminated successfully (Exit mode 0)
Current function value: 99.42357827885087
Iterations: 18
Function evaluations: 194
Gradient evaluations: 18
Iteration: 1, Func. Count: 12, Neg. LLF: 102.2977996773528
Iteration: 2, Func. Count: 24, Neg. LLF: 108.34697120064664
Iteration: 3, Func. Count: 37, Neg. LLF: 107.94312433923618
Iteration: 4, Func. Count: 51, Neg. LLF: 882.5380900890093
Iteration: 5, Func. Count: 64, Neg. LLF: 166.97353527211592
Iteration: 6, Func. Count: 76, Neg. LLF: 99.51942168500193
Iteration: 7, Func. Count: 87, Neg. LLF: 106.68251736765086
Iteration: 8, Func. Count: 100, Neg. LLF: 99.4612239592458
Iteration: 9, Func. Count: 111, Neg. LLF: 99.42894311782807
Iteration: 10, Func. Count: 122, Neg. LLF: 99.42496274657994
Iteration: 11, Func. Count: 133, Neg. LLF: 99.42407850781947
Iteration: 12, Func. Count: 144, Neg. LLF: 99.42359421555969
Iteration: 13, Func. Count: 155, Neg. LLF: 99.42357935291103
Iteration: 14, Func. Count: 166, Neg. LLF: 99.42357796962361
Iteration: 15, Func. Count: 176, Neg. LLF: 99.42357806320464
Optimization terminated successfully (Exit mode 0)
Current function value: 99.42357796962361
Iterations: 15
Function evaluations: 176
Gradient evaluations: 15
Iteration: 1, Func. Count: 13, Neg. LLF: 101.86057745078242
Iteration: 2, Func. Count: 26, Neg. LLF: 110.57886987085419
Iteration: 3, Func. Count: 40, Neg. LLF: 117.75380361426686
Iteration: 4, Func. Count: 53, Neg. LLF: 13866.17479374299
Iteration: 5, Func. Count: 68, Neg. LLF: 2432.7959038832205
Iteration: 6, Func. Count: 81, Neg. LLF: 99.47066303050082
Iteration: 7, Func. Count: 93, Neg. LLF: 106.39881216792799
Iteration: 8, Func. Count: 106, Neg. LLF: 99.4287457029779
Iteration: 9, Func. Count: 118, Neg. LLF: 99.42467179592049
Iteration: 10, Func. Count: 130, Neg. LLF: 99.42390337544681
Iteration: 11, Func. Count: 142, Neg. LLF: 99.42359017578153
Iteration: 12, Func. Count: 154, Neg. LLF: 99.42358073454558
Iteration: 13, Func. Count: 166, Neg. LLF: 99.42357788838045
Iteration: 14, Func. Count: 177, Neg. LLF: 99.42357789138342
Optimization terminated successfully (Exit mode 0)
Current function value: 99.42357788838045
Iterations: 14
Function evaluations: 177
Gradient evaluations: 14
Iteration: 1, Func. Count: 14, Neg. LLF: 101.72884842670132
Iteration: 2, Func. Count: 28, Neg. LLF: 113.55897335214117
Iteration: 3, Func. Count: 43, Neg. LLF: 114.56589983450118
Iteration: 4, Func. Count: 57, Neg. LLF: 2348.263305558056
Iteration: 5, Func. Count: 71, Neg. LLF: 107.64480198648185
Iteration: 6, Func. Count: 85, Neg. LLF: 102.39624516591618
Iteration: 7, Func. Count: 99, Neg. LLF: 100.17345061745553
Iteration: 8, Func. Count: 113, Neg. LLF: 99.45293084852007
Iteration: 9, Func. Count: 126, Neg. LLF: 102.87891353484326
Iteration: 10, Func. Count: 140, Neg. LLF: 99.42639776470361
Iteration: 11, Func. Count: 153, Neg. LLF: 99.67866397017022
Iteration: 12, Func. Count: 167, Neg. LLF: 99.41932447028044
Iteration: 13, Func. Count: 180, Neg. LLF: 99.41912136150215
Iteration: 14, Func. Count: 193, Neg. LLF: 99.4190800961305
Iteration: 15, Func. Count: 206, Neg. LLF: 99.4190750534467
Iteration: 16, Func. Count: 219, Neg. LLF: 99.41907363081873
Iteration: 17, Func. Count: 231, Neg. LLF: 99.41907363081874
Optimization terminated successfully (Exit mode 0)
Current function value: 99.41907363081873
Iterations: 17
Function evaluations: 231
Gradient evaluations: 17
Iteration: 1, Func. Count: 15, Neg. LLF: 101.63403553923703
Iteration: 2, Func. Count: 29, Neg. LLF: 101.74004682494419
Iteration: 3, Func. Count: 45, Neg. LLF: 135.33479410318088
Iteration: 4, Func. Count: 63, Neg. LLF: 185.2446601738071
Iteration: 5, Func. Count: 79, Neg. LLF: 119.53298424118498
Iteration: 6, Func. Count: 94, Neg. LLF: 117.20577869052299
Iteration: 7, Func. Count: 109, Neg. LLF: 181.15811086113675
Iteration: 8, Func. Count: 124, Neg. LLF: 101.13859033984205
Iteration: 9, Func. Count: 139, Neg. LLF: 99.52428209772026
Iteration: 10, Func. Count: 154, Neg. LLF: 101.43716037039326
Iteration: 11, Func. Count: 169, Neg. LLF: 99.42560878003495
Iteration: 12, Func. Count: 183, Neg. LLF: 99.42256194025427
Iteration: 13, Func. Count: 197, Neg. LLF: 99.42157419205283
Iteration: 14, Func. Count: 211, Neg. LLF: 99.42089719027585
Iteration: 15, Func. Count: 225, Neg. LLF: 99.42041301037786
Iteration: 16, Func. Count: 239, Neg. LLF: 99.4197556363405
Iteration: 17, Func. Count: 253, Neg. LLF: 99.41916585491073
Iteration: 18, Func. Count: 267, Neg. LLF: 99.41907948660436
Iteration: 19, Func. Count: 281, Neg. LLF: 99.41907374082612
Iteration: 20, Func. Count: 294, Neg. LLF: 99.41907379547274
Optimization terminated successfully (Exit mode 0)
Current function value: 99.41907374082612
Iterations: 20
Function evaluations: 294
Gradient evaluations: 20
Iteration: 1, Func. Count: 12, Neg. LLF: 108.61915426142926
Iteration: 2, Func. Count: 25, Neg. LLF: 184.83385162440635
Iteration: 3, Func. Count: 37, Neg. LLF: 4683495.5838990025
Iteration: 4, Func. Count: 49, Neg. LLF: 121.13042746775274
Iteration: 5, Func. Count: 61, Neg. LLF: 104.37862126724909
Iteration: 6, Func. Count: 73, Neg. LLF: 100.21944662373555
Iteration: 7, Func. Count: 85, Neg. LLF: 102.29638730076664
Iteration: 8, Func. Count: 97, Neg. LLF: 106.45788289052454
Iteration: 9, Func. Count: 109, Neg. LLF: 99.57889316746699
Iteration: 10, Func. Count: 120, Neg. LLF: 99.94641062867473
Iteration: 11, Func. Count: 132, Neg. LLF: 99.56291964548952
Iteration: 12, Func. Count: 144, Neg. LLF: 99.44085366218164
Iteration: 13, Func. Count: 156, Neg. LLF: 99.96534586714782
Iteration: 14, Func. Count: 168, Neg. LLF: 99.36622594688329
Iteration: 15, Func. Count: 179, Neg. LLF: 99.34566230479399
Iteration: 16, Func. Count: 190, Neg. LLF: 99.34053998460885
Iteration: 17, Func. Count: 201, Neg. LLF: 99.34007528676698
Iteration: 18, Func. Count: 212, Neg. LLF: 99.33999853041277
Iteration: 19, Func. Count: 223, Neg. LLF: 99.33998994327209
Iteration: 20, Func. Count: 234, Neg. LLF: 99.33998905585032
Optimization terminated successfully (Exit mode 0)
Current function value: 99.33998905585032
Iterations: 20
Function evaluations: 234
Gradient evaluations: 20
Iteration: 1, Func. Count: 13, Neg. LLF: 101.86783154181691
Iteration: 2, Func. Count: 26, Neg. LLF: 115.09594160686133
Iteration: 3, Func. Count: 40, Neg. LLF: 107.2022166167248
Iteration: 4, Func. Count: 55, Neg. LLF: 18888.521031704244
Iteration: 5, Func. Count: 68, Neg. LLF: 120.6617570896302
Iteration: 6, Func. Count: 81, Neg. LLF: 100.55939657376118
Iteration: 7, Func. Count: 94, Neg. LLF: 99.42663998865548
Iteration: 8, Func. Count: 106, Neg. LLF: 99.83801767462496
Iteration: 9, Func. Count: 119, Neg. LLF: 99.4627134265725
Iteration: 10, Func. Count: 132, Neg. LLF: 99.36298351841809
Iteration: 11, Func. Count: 145, Neg. LLF: 99.34070014279519
Iteration: 12, Func. Count: 157, Neg. LLF: 99.34023774654479
Iteration: 13, Func. Count: 169, Neg. LLF: 99.33999969106571
Iteration: 14, Func. Count: 181, Neg. LLF: 99.33999096505795
Iteration: 15, Func. Count: 193, Neg. LLF: 99.33998916613058
Iteration: 16, Func. Count: 204, Neg. LLF: 99.33998926479626
Optimization terminated successfully (Exit mode 0)
Current function value: 99.33998916613058
Iterations: 16
Function evaluations: 204
Gradient evaluations: 16
Iteration: 1, Func. Count: 14, Neg. LLF: 101.63326254649893
Iteration: 2, Func. Count: 27, Neg. LLF: 102.90803348827465
Iteration: 3, Func. Count: 42, Neg. LLF: 118.69535872292039
Iteration: 4, Func. Count: 59, Neg. LLF: 119.66905374137964
Iteration: 5, Func. Count: 73, Neg. LLF: 6181769.14973391
Iteration: 6, Func. Count: 87, Neg. LLF: 108.70408730625657
Iteration: 7, Func. Count: 101, Neg. LLF: 100.51872942739766
Iteration: 8, Func. Count: 115, Neg. LLF: 100.05150272395765
Iteration: 9, Func. Count: 129, Neg. LLF: 99.37341438598662
Iteration: 10, Func. Count: 143, Neg. LLF: 99.45014872170519
Iteration: 11, Func. Count: 157, Neg. LLF: 99.34080133204749
Iteration: 12, Func. Count: 170, Neg. LLF: 99.34031174262454
Iteration: 13, Func. Count: 183, Neg. LLF: 99.3399936305356
Iteration: 14, Func. Count: 196, Neg. LLF: 99.33998993398022
Iteration: 15, Func. Count: 208, Neg. LLF: 99.33998996481812
Optimization terminated successfully (Exit mode 0)
Current function value: 99.33998993398022
Iterations: 15
Function evaluations: 208
Gradient evaluations: 15
Iteration: 1, Func. Count: 15, Neg. LLF: 101.79216883944
Iteration: 2, Func. Count: 30, Neg. LLF: 116.98175511122855
Iteration: 3, Func. Count: 46, Neg. LLF: 136.20249561595347
Iteration: 4, Func. Count: 62, Neg. LLF: 5181877.7370954845
Iteration: 5, Func. Count: 77, Neg. LLF: 117.71496938125611
Iteration: 6, Func. Count: 93, Neg. LLF: 100.65754360017962
Iteration: 7, Func. Count: 108, Neg. LLF: 99.41149191648012
Iteration: 8, Func. Count: 122, Neg. LLF: 100.67789753366313
Iteration: 9, Func. Count: 137, Neg. LLF: 100.00932367552126
Iteration: 10, Func. Count: 153, Neg. LLF: 99.33465545240344
Iteration: 11, Func. Count: 167, Neg. LLF: 99.56398430022132
Iteration: 12, Func. Count: 182, Neg. LLF: 99.3138075455796
Iteration: 13, Func. Count: 196, Neg. LLF: 99.3112356835392
Iteration: 14, Func. Count: 210, Neg. LLF: 99.31051264093567
Iteration: 15, Func. Count: 224, Neg. LLF: 99.31041045628193
Iteration: 16, Func. Count: 238, Neg. LLF: 99.31040684972282
Iteration: 17, Func. Count: 251, Neg. LLF: 99.31040684976718
Optimization terminated successfully (Exit mode 0)
Current function value: 99.31040684972282
Iterations: 17
Function evaluations: 251
Gradient evaluations: 17
Iteration: 1, Func. Count: 16, Neg. LLF: 101.85405771805353
Iteration: 2, Func. Count: 32, Neg. LLF: 114.82137283555815
Iteration: 3, Func. Count: 49, Neg. LLF: 130.32178651169633
Iteration: 4, Func. Count: 66, Neg. LLF: 5006169.160985689
Iteration: 5, Func. Count: 82, Neg. LLF: 169.18095439352595
Iteration: 6, Func. Count: 98, Neg. LLF: 119.01868303533081
Iteration: 7, Func. Count: 114, Neg. LLF: 99.9240472857484
Iteration: 8, Func. Count: 130, Neg. LLF: 99.72106858145939
Iteration: 9, Func. Count: 146, Neg. LLF: 99.46628317689056
Iteration: 10, Func. Count: 161, Neg. LLF: 99.45926603591478
Iteration: 11, Func. Count: 177, Neg. LLF: 99.32751427717791
Iteration: 12, Func. Count: 192, Neg. LLF: 99.31222504534372
Iteration: 13, Func. Count: 207, Neg. LLF: 99.31091161535348
Iteration: 14, Func. Count: 222, Neg. LLF: 99.31045614515284
Iteration: 15, Func. Count: 237, Neg. LLF: 99.3104104880102
Iteration: 16, Func. Count: 252, Neg. LLF: 99.31040650225763
Iteration: 17, Func. Count: 266, Neg. LLF: 99.31040656864533
Optimization terminated successfully (Exit mode 0)
Current function value: 99.31040650225763
Iterations: 17
Function evaluations: 266
Gradient evaluations: 17
Iteration: 1, Func. Count: 6, Neg. LLF: 119.25734822108646
Iteration: 2, Func. Count: 13, Neg. LLF: 174436146.2284568
Iteration: 3, Func. Count: 19, Neg. LLF: 9046527.638667006
Iteration: 4, Func. Count: 25, Neg. LLF: 116.03833224846517
Iteration: 5, Func. Count: 31, Neg. LLF: 102.59818235310927
Iteration: 6, Func. Count: 37, Neg. LLF: 100.74542023303067
Iteration: 7, Func. Count: 43, Neg. LLF: 100.63690889714208
Iteration: 8, Func. Count: 48, Neg. LLF: 100.6209044134194
Iteration: 9, Func. Count: 53, Neg. LLF: 100.59373421723684
Iteration: 10, Func. Count: 58, Neg. LLF: 100.58762212062769
Iteration: 11, Func. Count: 63, Neg. LLF: 100.58728143114578
Iteration: 12, Func. Count: 68, Neg. LLF: 100.58726962945832
Iteration: 13, Func. Count: 72, Neg. LLF: 100.58726962947308
Optimization terminated successfully (Exit mode 0)
Current function value: 100.58726962945832
Iterations: 13
Function evaluations: 72
Gradient evaluations: 13
Iteration: 1, Func. Count: 5, Neg. LLF: 122.86593301432364
Iteration: 2, Func. Count: 11, Neg. LLF: 103.31544921717733
Iteration: 3, Func. Count: 15, Neg. LLF: 109.92233371363437
Iteration: 4, Func. Count: 20, Neg. LLF: 102.3297674463432
Iteration: 5, Func. Count: 24, Neg. LLF: 102.18453465601995
Iteration: 6, Func. Count: 28, Neg. LLF: 102.12554619550437
Iteration: 7, Func. Count: 32, Neg. LLF: 102.12197767360786
Iteration: 8, Func. Count: 36, Neg. LLF: 102.1219146384846
Iteration: 9, Func. Count: 39, Neg. LLF: 102.12191466624654
Optimization terminated successfully (Exit mode 0)
Current function value: 102.1219146384846
Iterations: 9
Function evaluations: 39
Gradient evaluations: 9
Iteration: 1, Func. Count: 6, Neg. LLF: 156.28665600348944
Iteration: 2, Func. Count: 12, Neg. LLF: 105.88639247127034
Iteration: 3, Func. Count: 18, Neg. LLF: 124.25074270540063
Iteration: 4, Func. Count: 24, Neg. LLF: 99.05895097868392
Iteration: 5, Func. Count: 29, Neg. LLF: 98.50803709559983
Iteration: 6, Func. Count: 34, Neg. LLF: 98.3950699616744
Iteration: 7, Func. Count: 39, Neg. LLF: 98.39315509716504
Iteration: 8, Func. Count: 45, Neg. LLF: 98.38256329698065
Iteration: 9, Func. Count: 50, Neg. LLF: 98.38247707176333
Iteration: 10, Func. Count: 54, Neg. LLF: 98.38247704596098
Optimization terminated successfully (Exit mode 0)
Current function value: 98.38247707176333
Iterations: 10
Function evaluations: 54
Gradient evaluations: 10
Iteration: 1, Func. Count: 7, Neg. LLF: 136.28416104716501
Iteration: 2, Func. Count: 15, Neg. LLF: 100.68276914808422
Iteration: 3, Func. Count: 21, Neg. LLF: 106.02333281562278
Iteration: 4, Func. Count: 28, Neg. LLF: 102.95926612078924
Iteration: 5, Func. Count: 35, Neg. LLF: 99.05905248023193
Iteration: 6, Func. Count: 42, Neg. LLF: 98.39308033645594
Iteration: 7, Func. Count: 48, Neg. LLF: 98.38429105293883
Iteration: 8, Func. Count: 54, Neg. LLF: 98.3825464289422
Iteration: 9, Func. Count: 60, Neg. LLF: 98.38248167213534
Iteration: 10, Func. Count: 66, Neg. LLF: 98.38247694091588
Iteration: 11, Func. Count: 71, Neg. LLF: 98.38247698477214
Optimization terminated successfully (Exit mode 0)
Current function value: 98.38247694091588
Iterations: 11
Function evaluations: 71
Gradient evaluations: 11
Iteration: 1, Func. Count: 8, Neg. LLF: 136.4059588844045
Iteration: 2, Func. Count: 17, Neg. LLF: 102.806687012287
Iteration: 3, Func. Count: 25, Neg. LLF: 102.39569935560027
Iteration: 4, Func. Count: 33, Neg. LLF: 102.29502618847954
Iteration: 5, Func. Count: 41, Neg. LLF: 101.85627990667581
Iteration: 6, Func. Count: 48, Neg. LLF: 101.84825092421627
Iteration: 7, Func. Count: 55, Neg. LLF: 101.0262448694389
Iteration: 8, Func. Count: 62, Neg. LLF: 100.16984980985283
Iteration: 9, Func. Count: 69, Neg. LLF: 99.98906036903034
Iteration: 10, Func. Count: 77, Neg. LLF: 99.329217489152
Iteration: 11, Func. Count: 84, Neg. LLF: 99.4281902979001
Iteration: 12, Func. Count: 92, Neg. LLF: 98.70880360031866
Iteration: 13, Func. Count: 99, Neg. LLF: 98.58135840083263
Iteration: 14, Func. Count: 106, Neg. LLF: 98.42489752963965
Iteration: 15, Func. Count: 113, Neg. LLF: 98.38852349147199
Iteration: 16, Func. Count: 120, Neg. LLF: 98.38277937589845
Iteration: 17, Func. Count: 127, Neg. LLF: 98.3824900295955
Iteration: 18, Func. Count: 134, Neg. LLF: 98.38247691943485
Iteration: 19, Func. Count: 140, Neg. LLF: 98.38247694548349
Optimization terminated successfully (Exit mode 0)
Current function value: 98.38247691943485
Iterations: 19
Function evaluations: 140
Gradient evaluations: 19
Iteration: 1, Func. Count: 9, Neg. LLF: 133.0528219697526
Iteration: 2, Func. Count: 19, Neg. LLF: 102.56517340512136
Iteration: 3, Func. Count: 28, Neg. LLF: 101.88084840887865
Iteration: 4, Func. Count: 37, Neg. LLF: 102.22247436240666
Iteration: 5, Func. Count: 46, Neg. LLF: 101.7856707835936
Iteration: 6, Func. Count: 54, Neg. LLF: 101.28342811202384
Iteration: 7, Func. Count: 62, Neg. LLF: 100.62586602572475
Iteration: 8, Func. Count: 70, Neg. LLF: 99.39619026378061
Iteration: 9, Func. Count: 78, Neg. LLF: 99.10548872898447
Iteration: 10, Func. Count: 86, Neg. LLF: 98.99433010998183
Iteration: 11, Func. Count: 95, Neg. LLF: 98.71562325561537
Iteration: 12, Func. Count: 103, Neg. LLF: 98.63693812362771
Iteration: 13, Func. Count: 111, Neg. LLF: 98.55025686860597
Iteration: 14, Func. Count: 119, Neg. LLF: 98.44744256271719
Iteration: 15, Func. Count: 127, Neg. LLF: 98.40129219118514
Iteration: 16, Func. Count: 135, Neg. LLF: 98.38457379012668
Iteration: 17, Func. Count: 143, Neg. LLF: 98.38255764331741
Iteration: 18, Func. Count: 151, Neg. LLF: 98.38247743776104
Iteration: 19, Func. Count: 159, Neg. LLF: 98.38247168308953
Iteration: 20, Func. Count: 167, Neg. LLF: 98.3826553579149
Iteration: 21, Func. Count: 177, Neg. LLF: 98.38248816687178
Iteration: 22, Func. Count: 186, Neg. LLF: 98.38253078867935
Iteration: 23, Func. Count: 196, Neg. LLF: 98.38247692895338
Iteration: 24, Func. Count: 206, Neg. LLF: 98.38247692895835
Iteration: 25, Func. Count: 216, Neg. LLF: 98.38247692896294
Iteration: 26, Func. Count: 223, Neg. LLF: 98.38247701908595
Optimization terminated successfully (Exit mode 0)
Current function value: 98.38247692896294
Iterations: 27
Function evaluations: 223
Gradient evaluations: 26
Iteration: 1, Func. Count: 6, Neg. LLF: 115.7449444720961
Iteration: 2, Func. Count: 13, Neg. LLF: 175965823.1227855
Iteration: 3, Func. Count: 19, Neg. LLF: 9453949.153721778
Iteration: 4, Func. Count: 25, Neg. LLF: 466.27107263839844
Iteration: 5, Func. Count: 31, Neg. LLF: 101.43985321028255
Iteration: 6, Func. Count: 37, Neg. LLF: 99.69794634155647
Iteration: 7, Func. Count: 43, Neg. LLF: 96.56741157047051
Iteration: 8, Func. Count: 48, Neg. LLF: 96.54898253743276
Iteration: 9, Func. Count: 53, Neg. LLF: 96.53731101403932
Iteration: 10, Func. Count: 58, Neg. LLF: 96.50528737355359
Iteration: 11, Func. Count: 63, Neg. LLF: 96.49476742169823
Iteration: 12, Func. Count: 68, Neg. LLF: 96.49192229767134
Iteration: 13, Func. Count: 73, Neg. LLF: 96.49164237000177
Iteration: 14, Func. Count: 78, Neg. LLF: 96.49163806249194
Iteration: 15, Func. Count: 82, Neg. LLF: 96.49163806249716
Optimization terminated successfully (Exit mode 0)
Current function value: 96.49163806249194
Iterations: 15
Function evaluations: 82
Gradient evaluations: 15
Iteration: 1, Func. Count: 7, Neg. LLF: 10878477.987786653
Iteration: 2, Func. Count: 14, Neg. LLF: 116.93395320702051
Iteration: 3, Func. Count: 21, Neg. LLF: 111.52733647962059
Iteration: 4, Func. Count: 28, Neg. LLF: 99.81044346987167
Iteration: 5, Func. Count: 35, Neg. LLF: 209.21616376271487
Iteration: 6, Func. Count: 42, Neg. LLF: 97.17877528087632
Iteration: 7, Func. Count: 48, Neg. LLF: 96.64665151491974
Iteration: 8, Func. Count: 54, Neg. LLF: 96.6179468179066
Iteration: 9, Func. Count: 61, Neg. LLF: 96.49924680304039
Iteration: 10, Func. Count: 67, Neg. LLF: 96.4953674096623
Iteration: 11, Func. Count: 73, Neg. LLF: 96.4943166217195
Iteration: 12, Func. Count: 79, Neg. LLF: 96.4920343837761
Iteration: 13, Func. Count: 85, Neg. LLF: 96.49169306531486
Iteration: 14, Func. Count: 91, Neg. LLF: 96.49164239311088
Iteration: 15, Func. Count: 97, Neg. LLF: 96.49163816695402
Iteration: 16, Func. Count: 102, Neg. LLF: 96.49163822774462
Optimization terminated successfully (Exit mode 0)
Current function value: 96.49163816695402
Iterations: 16
Function evaluations: 102
Gradient evaluations: 16
Iteration: 1, Func. Count: 8, Neg. LLF: 130.5616255802135
Iteration: 2, Func. Count: 16, Neg. LLF: 231.08759770412226
Iteration: 3, Func. Count: 25, Neg. LLF: 100.93050995165007
Iteration: 4, Func. Count: 33, Neg. LLF: 96.67326777145647
Iteration: 5, Func. Count: 40, Neg. LLF: 97.94476968646151
Iteration: 6, Func. Count: 48, Neg. LLF: 96.3656186796633
Iteration: 7, Func. Count: 56, Neg. LLF: 96.1371755758791
Iteration: 8, Func. Count: 63, Neg. LLF: 96.08583618149282
Iteration: 9, Func. Count: 70, Neg. LLF: 96.07405869627738
Iteration: 10, Func. Count: 77, Neg. LLF: 96.0700631204364
Iteration: 11, Func. Count: 84, Neg. LLF: 96.06820527632736
Iteration: 12, Func. Count: 91, Neg. LLF: 96.06814457989158
Iteration: 13, Func. Count: 98, Neg. LLF: 96.06814184024108
Iteration: 14, Func. Count: 104, Neg. LLF: 96.06814184027665
Optimization terminated successfully (Exit mode 0)
Current function value: 96.06814184024108
Iterations: 14
Function evaluations: 104
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 107.68288159690812
Iteration: 2, Func. Count: 18, Neg. LLF: 116.00210812241507
Iteration: 3, Func. Count: 27, Neg. LLF: 97.11950850352969
Iteration: 4, Func. Count: 36, Neg. LLF: 95.53067994432824
Iteration: 5, Func. Count: 44, Neg. LLF: 96.33281917750561
Iteration: 6, Func. Count: 54, Neg. LLF: 97.30062129382016
Iteration: 7, Func. Count: 63, Neg. LLF: 96.22721057541116
Iteration: 8, Func. Count: 72, Neg. LLF: 95.2873609689003
Iteration: 9, Func. Count: 80, Neg. LLF: 95.27283475589509
Iteration: 10, Func. Count: 88, Neg. LLF: 95.25343703281247
Iteration: 11, Func. Count: 96, Neg. LLF: 95.25048138632086
Iteration: 12, Func. Count: 104, Neg. LLF: 95.25019383717866
Iteration: 13, Func. Count: 112, Neg. LLF: 95.25006192548521
Iteration: 14, Func. Count: 120, Neg. LLF: 95.25004186364303
Iteration: 15, Func. Count: 128, Neg. LLF: 95.25003962441218
Iteration: 16, Func. Count: 135, Neg. LLF: 95.25003961341224
Optimization terminated successfully (Exit mode 0)
Current function value: 95.25003962441218
Iterations: 16
Function evaluations: 135
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 105.14547815979701
Iteration: 2, Func. Count: 20, Neg. LLF: 96.12425177350781
Iteration: 3, Func. Count: 29, Neg. LLF: 100.60230437301223
Iteration: 4, Func. Count: 39, Neg. LLF: 97.49414130056658
Iteration: 5, Func. Count: 49, Neg. LLF: 95.65659642157523
Iteration: 6, Func. Count: 58, Neg. LLF: 95.53434116999225
Iteration: 7, Func. Count: 68, Neg. LLF: 95.30533526802384
Iteration: 8, Func. Count: 77, Neg. LLF: 95.26201746245165
Iteration: 9, Func. Count: 86, Neg. LLF: 95.25311318571445
Iteration: 10, Func. Count: 95, Neg. LLF: 95.25058699766932
Iteration: 11, Func. Count: 104, Neg. LLF: 95.25005035450191
Iteration: 12, Func. Count: 113, Neg. LLF: 95.25003974943436
Iteration: 13, Func. Count: 121, Neg. LLF: 95.25003983288342
Optimization terminated successfully (Exit mode 0)
Current function value: 95.25003974943436
Iterations: 13
Function evaluations: 121
Gradient evaluations: 13
Iteration: 1, Func. Count: 7, Neg. LLF: 122.84236469402019
Iteration: 2, Func. Count: 15, Neg. LLF: 299686234.84511966
Iteration: 3, Func. Count: 22, Neg. LLF: 9376728.096949898
Iteration: 4, Func. Count: 29, Neg. LLF: 3757774.6434522695
Iteration: 5, Func. Count: 36, Neg. LLF: 112.9278599421354
Iteration: 6, Func. Count: 43, Neg. LLF: 146.46029879549255
Iteration: 7, Func. Count: 50, Neg. LLF: 97.62142020412539
Iteration: 8, Func. Count: 57, Neg. LLF: 96.55775652574061
Iteration: 9, Func. Count: 63, Neg. LLF: 96.54616793546198
Iteration: 10, Func. Count: 69, Neg. LLF: 96.53416700658248
Iteration: 11, Func. Count: 75, Neg. LLF: 96.50735257713131
Iteration: 12, Func. Count: 81, Neg. LLF: 96.49491503291024
Iteration: 13, Func. Count: 87, Neg. LLF: 96.49173041911928
Iteration: 14, Func. Count: 93, Neg. LLF: 96.49164277402615
Iteration: 15, Func. Count: 99, Neg. LLF: 96.49163812276836
Iteration: 16, Func. Count: 104, Neg. LLF: 96.49163817876975
Optimization terminated successfully (Exit mode 0)
Current function value: 96.49163812276836
Iterations: 16
Function evaluations: 104
Gradient evaluations: 16
Iteration: 1, Func. Count: 8, Neg. LLF: 104.03728538670342
Iteration: 2, Func. Count: 16, Neg. LLF: 171.58288138568375
Iteration: 3, Func. Count: 24, Neg. LLF: 105.68255828776061
Iteration: 4, Func. Count: 33, Neg. LLF: 101.23984426097267
Iteration: 5, Func. Count: 41, Neg. LLF: 96.6701240696993
Iteration: 6, Func. Count: 48, Neg. LLF: 96.55691854793365
Iteration: 7, Func. Count: 55, Neg. LLF: 96.50894241492553
Iteration: 8, Func. Count: 62, Neg. LLF: 96.4999351705711
Iteration: 9, Func. Count: 69, Neg. LLF: 96.49299953324754
Iteration: 10, Func. Count: 76, Neg. LLF: 96.49186264448007
Iteration: 11, Func. Count: 83, Neg. LLF: 96.49164421132629
Iteration: 12, Func. Count: 90, Neg. LLF: 96.49163798830874
Iteration: 13, Func. Count: 96, Neg. LLF: 96.49163804911703
Optimization terminated successfully (Exit mode 0)
Current function value: 96.49163798830874
Iterations: 13
Function evaluations: 96
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 98.3829135531913
Iteration: 2, Func. Count: 18, Neg. LLF: 415.3393791497921
Iteration: 3, Func. Count: 28, Neg. LLF: 100.29278152950958
Iteration: 4, Func. Count: 37, Neg. LLF: 96.42089188026864
Iteration: 5, Func. Count: 46, Neg. LLF: 125.62902665938623
Iteration: 6, Func. Count: 55, Neg. LLF: 96.07924952499197
Iteration: 7, Func. Count: 63, Neg. LLF: 96.07368931402087
Iteration: 8, Func. Count: 71, Neg. LLF: 96.06975134235266
Iteration: 9, Func. Count: 79, Neg. LLF: 96.06896136873144
Iteration: 10, Func. Count: 87, Neg. LLF: 96.06815549664081
Iteration: 11, Func. Count: 95, Neg. LLF: 96.06814196859874
Iteration: 12, Func. Count: 102, Neg. LLF: 96.06814196850983
Optimization terminated successfully (Exit mode 0)
Current function value: 96.06814196859874
Iterations: 12
Function evaluations: 102
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 97.93289082280343
Iteration: 2, Func. Count: 20, Neg. LLF: 2519.306142795392
Iteration: 3, Func. Count: 31, Neg. LLF: 101.26822298155672
Iteration: 4, Func. Count: 41, Neg. LLF: 97.71289851904905
Iteration: 5, Func. Count: 51, Neg. LLF: 95.41073748782955
Iteration: 6, Func. Count: 60, Neg. LLF: 95.901799182755
Iteration: 7, Func. Count: 71, Neg. LLF: 98.1309055421908
Iteration: 8, Func. Count: 81, Neg. LLF: 95.28167329720601
Iteration: 9, Func. Count: 90, Neg. LLF: 95.25183848510775
Iteration: 10, Func. Count: 99, Neg. LLF: 95.25016044129265
Iteration: 11, Func. Count: 108, Neg. LLF: 95.25004942958496
Iteration: 12, Func. Count: 117, Neg. LLF: 95.2500411298401
Iteration: 13, Func. Count: 126, Neg. LLF: 95.2500395944593
Iteration: 14, Func. Count: 134, Neg. LLF: 95.2500395834667
Optimization terminated successfully (Exit mode 0)
Current function value: 95.2500395944593
Iterations: 14
Function evaluations: 134
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 97.62216890089726
Iteration: 2, Func. Count: 21, Neg. LLF: 104.67982243976671
Iteration: 3, Func. Count: 32, Neg. LLF: 130.32881911294686
Iteration: 4, Func. Count: 44, Neg. LLF: 100.17216336289596
Iteration: 5, Func. Count: 55, Neg. LLF: 7463737.475720593
Iteration: 6, Func. Count: 66, Neg. LLF: 108.45105235773225
Iteration: 7, Func. Count: 77, Neg. LLF: 95.78838541061104
Iteration: 8, Func. Count: 88, Neg. LLF: 95.49224869471455
Iteration: 9, Func. Count: 98, Neg. LLF: 95.41257418062236
Iteration: 10, Func. Count: 108, Neg. LLF: 95.3908438677839
Iteration: 11, Func. Count: 119, Neg. LLF: 95.25855312851436
Iteration: 12, Func. Count: 129, Neg. LLF: 95.25135328519289
Iteration: 13, Func. Count: 139, Neg. LLF: 95.25018969443346
Iteration: 14, Func. Count: 149, Neg. LLF: 95.25005075069399
Iteration: 15, Func. Count: 159, Neg. LLF: 95.25004015237947
Iteration: 16, Func. Count: 169, Neg. LLF: 95.25003962023065
Optimization terminated successfully (Exit mode 0)
Current function value: 95.25003962023065
Iterations: 16
Function evaluations: 169
Gradient evaluations: 16
Iteration: 1, Func. Count: 8, Neg. LLF: 135.58722618100327
Iteration: 2, Func. Count: 18, Neg. LLF: 337698555.94652796
Iteration: 3, Func. Count: 26, Neg. LLF: 2724282.5326003344
Iteration: 4, Func. Count: 34, Neg. LLF: 108514.22428075493
Iteration: 5, Func. Count: 42, Neg. LLF: 119.22054488007005
Iteration: 6, Func. Count: 50, Neg. LLF: 109.57200255395338
Iteration: 7, Func. Count: 58, Neg. LLF: 97.57940215979544
Iteration: 8, Func. Count: 66, Neg. LLF: 96.49382459933256
Iteration: 9, Func. Count: 73, Neg. LLF: 96.293631775868
Iteration: 10, Func. Count: 80, Neg. LLF: 96.05053213572961
Iteration: 11, Func. Count: 87, Neg. LLF: 95.9504727011152
Iteration: 12, Func. Count: 94, Neg. LLF: 95.91679817193138
Iteration: 13, Func. Count: 101, Neg. LLF: 95.91071938648109
Iteration: 14, Func. Count: 108, Neg. LLF: 95.91031773421597
Iteration: 15, Func. Count: 115, Neg. LLF: 95.91030081990809
Iteration: 16, Func. Count: 122, Neg. LLF: 95.91029775037158
Iteration: 17, Func. Count: 128, Neg. LLF: 95.91029775038251
Optimization terminated successfully (Exit mode 0)
Current function value: 95.91029775037158
Iterations: 17
Function evaluations: 128
Gradient evaluations: 17
Iteration: 1, Func. Count: 9, Neg. LLF: 103.81263041012026
Iteration: 2, Func. Count: 18, Neg. LLF: 341.28730629865873
Iteration: 3, Func. Count: 27, Neg. LLF: 103.27127481151383
Iteration: 4, Func. Count: 37, Neg. LLF: 98.41845225270677
Iteration: 5, Func. Count: 46, Neg. LLF: 100.70594869288638
Iteration: 6, Func. Count: 55, Neg. LLF: 96.124977116907
Iteration: 7, Func. Count: 63, Neg. LLF: 97.02219401569504
Iteration: 8, Func. Count: 72, Neg. LLF: 96.0588615406981
Iteration: 9, Func. Count: 81, Neg. LLF: 95.91716962354289
Iteration: 10, Func. Count: 89, Neg. LLF: 95.91261143868167
Iteration: 11, Func. Count: 97, Neg. LLF: 95.91125969031665
Iteration: 12, Func. Count: 105, Neg. LLF: 95.91049834504705
Iteration: 13, Func. Count: 113, Neg. LLF: 95.91030753492132
Iteration: 14, Func. Count: 121, Neg. LLF: 95.91029778262681
Iteration: 15, Func. Count: 128, Neg. LLF: 95.91029780962722
Optimization terminated successfully (Exit mode 0)
Current function value: 95.91029778262681
Iterations: 15
Function evaluations: 128
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 100.46563571752185
Iteration: 2, Func. Count: 20, Neg. LLF: 535.7021856802847
Iteration: 3, Func. Count: 30, Neg. LLF: 101.54986338955459
Iteration: 4, Func. Count: 40, Neg. LLF: 107.89052154762139
Iteration: 5, Func. Count: 50, Neg. LLF: 96.60835337259016
Iteration: 6, Func. Count: 60, Neg. LLF: 96.28094911765669
Iteration: 7, Func. Count: 70, Neg. LLF: 95.93324099021076
Iteration: 8, Func. Count: 79, Neg. LLF: 95.91260584947209
Iteration: 9, Func. Count: 88, Neg. LLF: 95.91179597064188
Iteration: 10, Func. Count: 97, Neg. LLF: 95.91082580564093
Iteration: 11, Func. Count: 106, Neg. LLF: 95.91037217292669
Iteration: 12, Func. Count: 115, Neg. LLF: 95.91030182516074
Iteration: 13, Func. Count: 124, Neg. LLF: 95.91029790983382
Iteration: 14, Func. Count: 132, Neg. LLF: 95.91029792911881
Optimization terminated successfully (Exit mode 0)
Current function value: 95.91029790983382
Iterations: 14
Function evaluations: 132
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 100.37560956520205
Iteration: 2, Func. Count: 22, Neg. LLF: 504.94380200136754
Iteration: 3, Func. Count: 33, Neg. LLF: 127.61872928735619
Iteration: 4, Func. Count: 44, Neg. LLF: 100.79928942401774
Iteration: 5, Func. Count: 55, Neg. LLF: 98.31826349453416
Iteration: 6, Func. Count: 66, Neg. LLF: 95.25416290827344
Iteration: 7, Func. Count: 76, Neg. LLF: 95.27367016464491
Iteration: 8, Func. Count: 87, Neg. LLF: 96.48171369222024
Iteration: 9, Func. Count: 99, Neg. LLF: 95.13045714501104
Iteration: 10, Func. Count: 109, Neg. LLF: 95.12884811142428
Iteration: 11, Func. Count: 119, Neg. LLF: 95.12770962082992
Iteration: 12, Func. Count: 129, Neg. LLF: 95.12768007751717
Iteration: 13, Func. Count: 139, Neg. LLF: 95.12767562529748
Iteration: 14, Func. Count: 148, Neg. LLF: 95.12767561941996
Optimization terminated successfully (Exit mode 0)
Current function value: 95.12767562529748
Iterations: 14
Function evaluations: 148
Gradient evaluations: 14
Iteration: 1, Func. Count: 12, Neg. LLF: 100.37397464149856
Iteration: 2, Func. Count: 24, Neg. LLF: 435.76994891236916
Iteration: 3, Func. Count: 36, Neg. LLF: 118.71659579327796
Iteration: 4, Func. Count: 48, Neg. LLF: 102.95417332284676
Iteration: 5, Func. Count: 60, Neg. LLF: 106.88256340882737
Iteration: 6, Func. Count: 72, Neg. LLF: 95.3587471898766
Iteration: 7, Func. Count: 83, Neg. LLF: 95.39514156114431
Iteration: 8, Func. Count: 95, Neg. LLF: 97.83449102172342
Iteration: 9, Func. Count: 107, Neg. LLF: 95.13329022372133
Iteration: 10, Func. Count: 118, Neg. LLF: 95.12977259236149
Iteration: 11, Func. Count: 129, Neg. LLF: 95.12831153090453
Iteration: 12, Func. Count: 140, Neg. LLF: 95.12782982161228
Iteration: 13, Func. Count: 151, Neg. LLF: 95.12769329722866
Iteration: 14, Func. Count: 162, Neg. LLF: 95.12767566091928
Iteration: 15, Func. Count: 172, Neg. LLF: 95.12767572417383
Optimization terminated successfully (Exit mode 0)
Current function value: 95.12767566091928
Iterations: 15
Function evaluations: 172
Gradient evaluations: 15
Iteration: 1, Func. Count: 5, Neg. LLF: 124.44490165976873
Iteration: 2, Func. Count: 11, Neg. LLF: 144.25853499710973
Iteration: 3, Func. Count: 16, Neg. LLF: 102.7426101596629
Iteration: 4, Func. Count: 20, Neg. LLF: 102.30977277143893
Iteration: 5, Func. Count: 24, Neg. LLF: 102.1840050751963
Iteration: 6, Func. Count: 28, Neg. LLF: 102.12650938980755
Iteration: 7, Func. Count: 32, Neg. LLF: 102.12223053477535
Iteration: 8, Func. Count: 36, Neg. LLF: 102.12191619947144
Iteration: 9, Func. Count: 40, Neg. LLF: 102.12191437857052
Iteration: 10, Func. Count: 43, Neg. LLF: 102.12191449552738
Optimization terminated successfully (Exit mode 0)
Current function value: 102.12191437857052
Iterations: 10
Function evaluations: 43
Gradient evaluations: 10
Iteration: 1, Func. Count: 6, Neg. LLF: 115.09710263155938
Iteration: 2, Func. Count: 13, Neg. LLF: 101.81004248185417
Iteration: 3, Func. Count: 19, Neg. LLF: 101.63004967480768
Iteration: 4, Func. Count: 25, Neg. LLF: 101.62869602072776
Iteration: 5, Func. Count: 31, Neg. LLF: 101.62808242147375
Iteration: 6, Func. Count: 36, Neg. LLF: 101.62758184427788
Optimization terminated successfully (Exit mode 0)
Current function value: 101.62758184411045
Iterations: 6
Function evaluations: 36
Gradient evaluations: 6
Iteration: 1, Func. Count: 7, Neg. LLF: 137.95514675678737
Iteration: 2, Func. Count: 15, Neg. LLF: 101.86616625793242
Iteration: 3, Func. Count: 21, Neg. LLF: 102.47138164017161
Iteration: 4, Func. Count: 28, Neg. LLF: 102.67340511659386
Iteration: 5, Func. Count: 35, Neg. LLF: 101.86954111866811
Iteration: 6, Func. Count: 42, Neg. LLF: 101.83066349706203
Iteration: 7, Func. Count: 48, Neg. LLF: 101.83033955767404
Iteration: 8, Func. Count: 54, Neg. LLF: 101.82665626436305
Iteration: 9, Func. Count: 60, Neg. LLF: 101.82255475071102
Iteration: 10, Func. Count: 66, Neg. LLF: 101.82116186513805
Iteration: 11, Func. Count: 72, Neg. LLF: 101.8209291667639
Iteration: 12, Func. Count: 78, Neg. LLF: 101.82091874512733
Iteration: 13, Func. Count: 84, Neg. LLF: 101.82091442168789
Iteration: 14, Func. Count: 89, Neg. LLF: 101.82091442267398
Optimization terminated successfully (Exit mode 0)
Current function value: 101.82091442168789
Iterations: 14
Function evaluations: 89
Gradient evaluations: 14
Iteration: 1, Func. Count: 8, Neg. LLF: 137.9990073450061
Iteration: 2, Func. Count: 17, Neg. LLF: 101.86819701185047
Iteration: 3, Func. Count: 24, Neg. LLF: 102.3853856460309
Iteration: 4, Func. Count: 32, Neg. LLF: 101.95579723600608
Iteration: 5, Func. Count: 40, Neg. LLF: 101.83887178263804
Iteration: 6, Func. Count: 47, Neg. LLF: 101.8443320788929
Iteration: 7, Func. Count: 55, Neg. LLF: 101.83289390047852
Iteration: 8, Func. Count: 62, Neg. LLF: 101.83245963942345
Iteration: 9, Func. Count: 69, Neg. LLF: 101.83175037707294
Iteration: 10, Func. Count: 76, Neg. LLF: 101.82761379375728
Iteration: 11, Func. Count: 83, Neg. LLF: 101.82415769926344
Iteration: 12, Func. Count: 90, Neg. LLF: 101.82224093064005
Iteration: 13, Func. Count: 97, Neg. LLF: 101.82097399096052
Iteration: 14, Func. Count: 104, Neg. LLF: 101.82091726581845
Iteration: 15, Func. Count: 111, Neg. LLF: 101.82091417407474
Iteration: 16, Func. Count: 117, Neg. LLF: 101.82091417603449
Optimization terminated successfully (Exit mode 0)
Current function value: 101.82091417407474
Iterations: 16
Function evaluations: 117
Gradient evaluations: 16
Iteration: 1, Func. Count: 9, Neg. LLF: 137.08271108043883
Iteration: 2, Func. Count: 19, Neg. LLF: 101.95698281117971
Iteration: 3, Func. Count: 27, Neg. LLF: 101.9855404743697
Iteration: 4, Func. Count: 36, Neg. LLF: 102.48009538311304
Iteration: 5, Func. Count: 45, Neg. LLF: 102.00050424478911
Iteration: 6, Func. Count: 54, Neg. LLF: 101.85953900422537
Iteration: 7, Func. Count: 63, Neg. LLF: 101.83606391684279
Iteration: 8, Func. Count: 71, Neg. LLF: 101.83331353476378
Iteration: 9, Func. Count: 79, Neg. LLF: 101.83371994722887
Iteration: 10, Func. Count: 88, Neg. LLF: 101.83160029066195
Iteration: 11, Func. Count: 96, Neg. LLF: 101.83086391281691
Iteration: 12, Func. Count: 104, Neg. LLF: 101.8250938209325
Iteration: 13, Func. Count: 112, Neg. LLF: 101.82122953746723
Iteration: 14, Func. Count: 120, Neg. LLF: 101.82096426451372
Iteration: 15, Func. Count: 128, Neg. LLF: 101.8209144909939
Iteration: 16, Func. Count: 135, Neg. LLF: 101.82091449462176
Optimization terminated successfully (Exit mode 0)
Current function value: 101.8209144909939
Iterations: 16
Function evaluations: 135
Gradient evaluations: 16
Iteration: 1, Func. Count: 6, Neg. LLF: 124.91393903517694
Iteration: 2, Func. Count: 13, Neg. LLF: 130.28785268402387
Iteration: 3, Func. Count: 19, Neg. LLF: 102.85595105322065
Iteration: 4, Func. Count: 24, Neg. LLF: 102.14416259991908
Iteration: 5, Func. Count: 29, Neg. LLF: 102.12915615274991
Iteration: 6, Func. Count: 34, Neg. LLF: 102.12195821840182
Iteration: 7, Func. Count: 39, Neg. LLF: 102.12191450945117
Iteration: 8, Func. Count: 43, Neg. LLF: 102.12191453724597
Optimization terminated successfully (Exit mode 0)
Current function value: 102.12191450945117
Iterations: 8
Function evaluations: 43
Gradient evaluations: 8
Iteration: 1, Func. Count: 7, Neg. LLF: 153.90483067351803
Iteration: 2, Func. Count: 14, Neg. LLF: 110.3336602015853
Iteration: 3, Func. Count: 21, Neg. LLF: 99.37918507819698
Iteration: 4, Func. Count: 27, Neg. LLF: 99.74623718503906
Iteration: 5, Func. Count: 34, Neg. LLF: 108.34824476470624
Iteration: 6, Func. Count: 42, Neg. LLF: 182.98301147312122
Iteration: 7, Func. Count: 50, Neg. LLF: 98.91606407983943
Iteration: 8, Func. Count: 57, Neg. LLF: 98.38252226695673
Iteration: 9, Func. Count: 63, Neg. LLF: 98.3822732765001
Iteration: 10, Func. Count: 69, Neg. LLF: 98.3822261263
Iteration: 11, Func. Count: 75, Neg. LLF: 98.38219821958394
Iteration: 12, Func. Count: 80, Neg. LLF: 98.38219819411073
Optimization terminated successfully (Exit mode 0)
Current function value: 98.38219821958394
Iterations: 12
Function evaluations: 80
Gradient evaluations: 12
Iteration: 1, Func. Count: 8, Neg. LLF: 151.83881971448457
Iteration: 2, Func. Count: 17, Neg. LLF: 99.91387700317541
Iteration: 3, Func. Count: 24, Neg. LLF: 105.33841701307516
Iteration: 4, Func. Count: 32, Neg. LLF: 113.19473972145255
Iteration: 5, Func. Count: 42, Neg. LLF: 108.04922505397545
Iteration: 6, Func. Count: 50, Neg. LLF: 98.83944597985432
Iteration: 7, Func. Count: 58, Neg. LLF: 98.5055693907764
Iteration: 8, Func. Count: 65, Neg. LLF: 98.38759532257949
Iteration: 9, Func. Count: 72, Neg. LLF: 98.38256843150474
Iteration: 10, Func. Count: 79, Neg. LLF: 98.38220467393893
Iteration: 11, Func. Count: 86, Neg. LLF: 98.3821978609916
Iteration: 12, Func. Count: 92, Neg. LLF: 98.38219790583588
Optimization terminated successfully (Exit mode 0)
Current function value: 98.3821978609916
Iterations: 12
Function evaluations: 92
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 141.72459527963073
Iteration: 2, Func. Count: 19, Neg. LLF: 102.16150754606674
Iteration: 3, Func. Count: 28, Neg. LLF: 101.3545939272641
Iteration: 4, Func. Count: 36, Neg. LLF: 101.29078158110526
Iteration: 5, Func. Count: 45, Neg. LLF: 107.89006575174002
Iteration: 6, Func. Count: 54, Neg. LLF: 111.16501773680844
Iteration: 7, Func. Count: 63, Neg. LLF: 106.00491460615208
Iteration: 8, Func. Count: 72, Neg. LLF: 100.40623168909019
Iteration: 9, Func. Count: 81, Neg. LLF: 98.67814851764282
Iteration: 10, Func. Count: 89, Neg. LLF: 98.40909818733816
Iteration: 11, Func. Count: 97, Neg. LLF: 98.40093511311453
Iteration: 12, Func. Count: 106, Neg. LLF: 98.38254558839097
Iteration: 13, Func. Count: 114, Neg. LLF: 98.38223573742559
Iteration: 14, Func. Count: 122, Neg. LLF: 98.38219861388384
Iteration: 15, Func. Count: 130, Neg. LLF: 98.38219804895381
Optimization terminated successfully (Exit mode 0)
Current function value: 98.38219804895381
Iterations: 15
Function evaluations: 130
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 140.15053970936188
Iteration: 2, Func. Count: 21, Neg. LLF: 102.15658191607787
Iteration: 3, Func. Count: 31, Neg. LLF: 101.44349312054976
Iteration: 4, Func. Count: 40, Neg. LLF: 129.46098904842654
Iteration: 5, Func. Count: 50, Neg. LLF: 100.54164707072786
Iteration: 6, Func. Count: 59, Neg. LLF: 106.22563100555242
Iteration: 7, Func. Count: 69, Neg. LLF: 114.14033407466536
Iteration: 8, Func. Count: 79, Neg. LLF: 100.96223811045668
Iteration: 9, Func. Count: 89, Neg. LLF: 117.06966589780036
Iteration: 10, Func. Count: 99, Neg. LLF: 98.82187315209268
Iteration: 11, Func. Count: 108, Neg. LLF: 98.49248949085143
Iteration: 12, Func. Count: 117, Neg. LLF: 98.40111681607445
Iteration: 13, Func. Count: 126, Neg. LLF: 98.38552782002346
Iteration: 14, Func. Count: 135, Neg. LLF: 98.38309117501171
Iteration: 15, Func. Count: 144, Neg. LLF: 98.38224828327795
Iteration: 16, Func. Count: 153, Neg. LLF: 98.38219922244586
Iteration: 17, Func. Count: 162, Neg. LLF: 98.38219769598147
Iteration: 18, Func. Count: 170, Neg. LLF: 98.38219778563352
Optimization terminated successfully (Exit mode 0)
Current function value: 98.38219769598147
Iterations: 18
Function evaluations: 170
Gradient evaluations: 18
Iteration: 1, Func. Count: 7, Neg. LLF: 110.3365532183097
Iteration: 2, Func. Count: 15, Neg. LLF: 28144306.217345417
Iteration: 3, Func. Count: 22, Neg. LLF: 7309678.612313293
Iteration: 4, Func. Count: 29, Neg. LLF: 4019955.9154230733
Iteration: 5, Func. Count: 36, Neg. LLF: 99.19885729982377
Iteration: 6, Func. Count: 43, Neg. LLF: 96.74972172017297
Iteration: 7, Func. Count: 50, Neg. LLF: 104.87596195962104
Iteration: 8, Func. Count: 58, Neg. LLF: 96.58653985078804
Iteration: 9, Func. Count: 65, Neg. LLF: 96.5011204867931
Iteration: 10, Func. Count: 71, Neg. LLF: 96.4582000184551
Iteration: 11, Func. Count: 77, Neg. LLF: 96.42046581316359
Iteration: 12, Func. Count: 83, Neg. LLF: 96.41501460195784
Iteration: 13, Func. Count: 89, Neg. LLF: 96.41471907595498
Iteration: 14, Func. Count: 95, Neg. LLF: 96.41470794421991
Iteration: 15, Func. Count: 101, Neg. LLF: 96.41470487815864
Iteration: 16, Func. Count: 106, Neg. LLF: 96.41470487815964
Optimization terminated successfully (Exit mode 0)
Current function value: 96.41470487815864
Iterations: 16
Function evaluations: 106
Gradient evaluations: 16
Iteration: 1, Func. Count: 8, Neg. LLF: 11732375.756946951
Iteration: 2, Func. Count: 16, Neg. LLF: 114.0994042220253
Iteration: 3, Func. Count: 24, Neg. LLF: 101.81669077134568
Iteration: 4, Func. Count: 33, Neg. LLF: 102.43395385555779
Iteration: 5, Func. Count: 41, Neg. LLF: 97.91675132919835
Iteration: 6, Func. Count: 49, Neg. LLF: 96.66397115714896
Iteration: 7, Func. Count: 56, Neg. LLF: 96.61861856403438
Iteration: 8, Func. Count: 64, Neg. LLF: 96.4402240215599
Iteration: 9, Func. Count: 71, Neg. LLF: 96.41874851424686
Iteration: 10, Func. Count: 78, Neg. LLF: 96.41588136778456
Iteration: 11, Func. Count: 85, Neg. LLF: 96.41509484842298
Iteration: 12, Func. Count: 92, Neg. LLF: 96.41494482741965
Iteration: 13, Func. Count: 99, Neg. LLF: 96.41482058879498
Iteration: 14, Func. Count: 106, Neg. LLF: 96.41473975385534
Iteration: 15, Func. Count: 113, Neg. LLF: 96.41470881625382
Iteration: 16, Func. Count: 120, Neg. LLF: 96.41470507975434
Iteration: 17, Func. Count: 126, Neg. LLF: 96.4147051587138
Optimization terminated successfully (Exit mode 0)
Current function value: 96.41470507975434
Iterations: 17
Function evaluations: 126
Gradient evaluations: 17
Iteration: 1, Func. Count: 9, Neg. LLF: 141.0023325737906
Iteration: 2, Func. Count: 18, Neg. LLF: 2330.4092084052904
Iteration: 3, Func. Count: 27, Neg. LLF: 147.8436581623092
Iteration: 4, Func. Count: 37, Neg. LLF: 108.17630067074182
Iteration: 5, Func. Count: 47, Neg. LLF: 96.42240260079228
Iteration: 6, Func. Count: 55, Neg. LLF: 96.5040157904715
Iteration: 7, Func. Count: 64, Neg. LLF: 96.90238475255852
Iteration: 8, Func. Count: 73, Neg. LLF: 95.86050672381981
Iteration: 9, Func. Count: 81, Neg. LLF: 95.82846821215875
Iteration: 10, Func. Count: 89, Neg. LLF: 95.8162123914443
Iteration: 11, Func. Count: 97, Neg. LLF: 95.81426838427029
Iteration: 12, Func. Count: 105, Neg. LLF: 95.81394839969248
Iteration: 13, Func. Count: 113, Neg. LLF: 95.81388630900108
Iteration: 14, Func. Count: 121, Neg. LLF: 95.813838275489
Iteration: 15, Func. Count: 129, Neg. LLF: 95.81383279660832
Iteration: 16, Func. Count: 136, Neg. LLF: 95.81383279671073
Optimization terminated successfully (Exit mode 0)
Current function value: 95.81383279660832
Iterations: 16
Function evaluations: 136
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 108.4895590882709
Iteration: 2, Func. Count: 20, Neg. LLF: 104.15625568376227
Iteration: 3, Func. Count: 30, Neg. LLF: 133.4527323589844
Iteration: 4, Func. Count: 40, Neg. LLF: 95.95099364609626
Iteration: 5, Func. Count: 49, Neg. LLF: 96.19068354104301
Iteration: 6, Func. Count: 59, Neg. LLF: 98.79257079909397
Iteration: 7, Func. Count: 69, Neg. LLF: 95.37978482556099
Iteration: 8, Func. Count: 78, Neg. LLF: 95.41428811553843
Iteration: 9, Func. Count: 88, Neg. LLF: 95.91174703001333
Iteration: 10, Func. Count: 98, Neg. LLF: 95.12407974340196
Iteration: 11, Func. Count: 107, Neg. LLF: 95.10833033605081
Iteration: 12, Func. Count: 116, Neg. LLF: 95.10704308679999
Iteration: 13, Func. Count: 125, Neg. LLF: 95.10683933922971
Iteration: 14, Func. Count: 134, Neg. LLF: 95.10682197915939
Iteration: 15, Func. Count: 143, Neg. LLF: 95.10682088475131
Iteration: 16, Func. Count: 151, Neg. LLF: 95.10682086475165
Optimization terminated successfully (Exit mode 0)
Current function value: 95.10682088475131
Iterations: 16
Function evaluations: 151
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 105.66271827693504
Iteration: 2, Func. Count: 22, Neg. LLF: 102.78691686754705
Iteration: 3, Func. Count: 33, Neg. LLF: 101.91133135823041
Iteration: 4, Func. Count: 44, Neg. LLF: 107.35622579827833
Iteration: 5, Func. Count: 55, Neg. LLF: 95.95832883287761
Iteration: 6, Func. Count: 65, Neg. LLF: 96.17995758789641
Iteration: 7, Func. Count: 76, Neg. LLF: 106.94758276712516
Iteration: 8, Func. Count: 87, Neg. LLF: 97.00757797431693
Iteration: 9, Func. Count: 98, Neg. LLF: 95.18734795393081
Iteration: 10, Func. Count: 108, Neg. LLF: 95.11553110067045
Iteration: 11, Func. Count: 118, Neg. LLF: 95.1087806278672
Iteration: 12, Func. Count: 128, Neg. LLF: 95.10701179273913
Iteration: 13, Func. Count: 138, Neg. LLF: 95.10688112734837
Iteration: 14, Func. Count: 148, Neg. LLF: 95.10682254736294
Iteration: 15, Func. Count: 158, Neg. LLF: 95.10682066813696
Iteration: 16, Func. Count: 167, Neg. LLF: 95.10682076247927
Optimization terminated successfully (Exit mode 0)
Current function value: 95.10682066813696
Iterations: 16
Function evaluations: 167
Gradient evaluations: 16
Iteration: 1, Func. Count: 8, Neg. LLF: 116.24290756413046
Iteration: 2, Func. Count: 17, Neg. LLF: 173729724.82070056
Iteration: 3, Func. Count: 25, Neg. LLF: 9424956.166496512
Iteration: 4, Func. Count: 33, Neg. LLF: 4301425.5136330845
Iteration: 5, Func. Count: 41, Neg. LLF: 120.23350319365308
Iteration: 6, Func. Count: 49, Neg. LLF: 109.21725981897117
Iteration: 7, Func. Count: 57, Neg. LLF: 97.36391323171166
Iteration: 8, Func. Count: 65, Neg. LLF: 96.60228808163063
Iteration: 9, Func. Count: 72, Neg. LLF: 106.5332415979563
Iteration: 10, Func. Count: 81, Neg. LLF: 97.15470666894794
Iteration: 11, Func. Count: 89, Neg. LLF: 96.5000445585243
Iteration: 12, Func. Count: 96, Neg. LLF: 96.47992484087426
Iteration: 13, Func. Count: 103, Neg. LLF: 96.45957444539225
Iteration: 14, Func. Count: 110, Neg. LLF: 96.42632885212264
Iteration: 15, Func. Count: 117, Neg. LLF: 96.42027988397791
Iteration: 16, Func. Count: 124, Neg. LLF: 96.41711536411813
Iteration: 17, Func. Count: 131, Neg. LLF: 96.41517079667628
Iteration: 18, Func. Count: 138, Neg. LLF: 96.4147655232996
Iteration: 19, Func. Count: 145, Neg. LLF: 96.41470831201521
Iteration: 20, Func. Count: 152, Neg. LLF: 96.41470488536818
Iteration: 21, Func. Count: 158, Neg. LLF: 96.41470496293766
Optimization terminated successfully (Exit mode 0)
Current function value: 96.41470488536818
Iterations: 21
Function evaluations: 158
Gradient evaluations: 21
Iteration: 1, Func. Count: 9, Neg. LLF: 106.04435446237157
Iteration: 2, Func. Count: 18, Neg. LLF: 117.2133486608719
Iteration: 3, Func. Count: 27, Neg. LLF: 110.43796310372589
Iteration: 4, Func. Count: 37, Neg. LLF: 99.97215108820585
Iteration: 5, Func. Count: 46, Neg. LLF: 100.14742286652778
Iteration: 6, Func. Count: 56, Neg. LLF: 96.68932298399758
Iteration: 7, Func. Count: 64, Neg. LLF: 96.49931625749504
Iteration: 8, Func. Count: 72, Neg. LLF: 96.46109985367336
Iteration: 9, Func. Count: 80, Neg. LLF: 96.46425443898086
Iteration: 10, Func. Count: 89, Neg. LLF: 96.42644699390166
Iteration: 11, Func. Count: 97, Neg. LLF: 96.41738240445584
Iteration: 12, Func. Count: 105, Neg. LLF: 96.4148902631737
Iteration: 13, Func. Count: 113, Neg. LLF: 96.41472303520628
Iteration: 14, Func. Count: 121, Neg. LLF: 96.41470542118756
Iteration: 15, Func. Count: 128, Neg. LLF: 96.4147055001011
Optimization terminated successfully (Exit mode 0)
Current function value: 96.41470542118756
Iterations: 15
Function evaluations: 128
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 98.42289362268669
Iteration: 2, Func. Count: 20, Neg. LLF: 160.32577550514299
Iteration: 3, Func. Count: 30, Neg. LLF: 103.26297867080315
Iteration: 4, Func. Count: 40, Neg. LLF: 96.57237254897115
Iteration: 5, Func. Count: 50, Neg. LLF: 97.43956576062075
Iteration: 6, Func. Count: 61, Neg. LLF: 96.65259325359987
Iteration: 7, Func. Count: 71, Neg. LLF: 96.12340192709922
Iteration: 8, Func. Count: 81, Neg. LLF: 95.93993060416851
Iteration: 9, Func. Count: 90, Neg. LLF: 95.90335078335728
Iteration: 10, Func. Count: 99, Neg. LLF: 95.84911040159032
Iteration: 11, Func. Count: 108, Neg. LLF: 95.83175249585376
Iteration: 12, Func. Count: 117, Neg. LLF: 95.82072292398162
Iteration: 13, Func. Count: 126, Neg. LLF: 95.81585973236271
Iteration: 14, Func. Count: 135, Neg. LLF: 95.81515322246267
Iteration: 15, Func. Count: 144, Neg. LLF: 95.81424164038937
Iteration: 16, Func. Count: 153, Neg. LLF: 95.81392884153846
Iteration: 17, Func. Count: 162, Neg. LLF: 95.81383728927945
Iteration: 18, Func. Count: 171, Neg. LLF: 95.81383254756751
Iteration: 19, Func. Count: 179, Neg. LLF: 95.81383254759541
Optimization terminated successfully (Exit mode 0)
Current function value: 95.81383254756751
Iterations: 19
Function evaluations: 179
Gradient evaluations: 19
Iteration: 1, Func. Count: 11, Neg. LLF: 97.82832593463378
Iteration: 2, Func. Count: 21, Neg. LLF: 103.22221982271549
Iteration: 3, Func. Count: 32, Neg. LLF: 144.5158364882971
Iteration: 4, Func. Count: 44, Neg. LLF: 100.65057864509723
Iteration: 5, Func. Count: 55, Neg. LLF: 7049493.827041514
Iteration: 6, Func. Count: 66, Neg. LLF: 2975553.7119231587
Iteration: 7, Func. Count: 77, Neg. LLF: 105.28966631121818
Iteration: 8, Func. Count: 88, Neg. LLF: 95.75115043896584
Iteration: 9, Func. Count: 99, Neg. LLF: 95.45667722060108
Iteration: 10, Func. Count: 109, Neg. LLF: 95.39498473514931
Iteration: 11, Func. Count: 119, Neg. LLF: 95.2790596662287
Iteration: 12, Func. Count: 129, Neg. LLF: 95.15296858006433
Iteration: 13, Func. Count: 139, Neg. LLF: 95.15172958849968
Iteration: 14, Func. Count: 150, Neg. LLF: 95.10720260335121
Iteration: 15, Func. Count: 160, Neg. LLF: 95.10691044382132
Iteration: 16, Func. Count: 170, Neg. LLF: 95.10683386484972
Iteration: 17, Func. Count: 180, Neg. LLF: 95.10682074312126
Iteration: 18, Func. Count: 189, Neg. LLF: 95.10682072316337
Optimization terminated successfully (Exit mode 0)
Current function value: 95.10682074312126
Iterations: 18
Function evaluations: 189
Gradient evaluations: 18
Iteration: 1, Func. Count: 12, Neg. LLF: 97.55209739900194
Iteration: 2, Func. Count: 23, Neg. LLF: 101.1106469916765
Iteration: 3, Func. Count: 35, Neg. LLF: 138.0214376533156
Iteration: 4, Func. Count: 48, Neg. LLF: 159.42687508876864
Iteration: 5, Func. Count: 60, Neg. LLF: 5045755.594012337
Iteration: 6, Func. Count: 72, Neg. LLF: 36698.3078778975
Iteration: 7, Func. Count: 84, Neg. LLF: 138.27399126115512
Iteration: 8, Func. Count: 96, Neg. LLF: 96.04465373034527
Iteration: 9, Func. Count: 108, Neg. LLF: 95.54354188170728
Iteration: 10, Func. Count: 120, Neg. LLF: 95.64594567283844
Iteration: 11, Func. Count: 132, Neg. LLF: 95.30142657354695
Iteration: 12, Func. Count: 143, Neg. LLF: 95.23078721012232
Iteration: 13, Func. Count: 154, Neg. LLF: 95.1675194774091
Iteration: 14, Func. Count: 165, Neg. LLF: 95.12118445423968
Iteration: 15, Func. Count: 176, Neg. LLF: 95.1087228586174
Iteration: 16, Func. Count: 187, Neg. LLF: 95.10729598084063
Iteration: 17, Func. Count: 198, Neg. LLF: 95.10686785943919
Iteration: 18, Func. Count: 209, Neg. LLF: 95.10682116466171
Iteration: 19, Func. Count: 220, Neg. LLF: 95.10682067074355
Optimization terminated successfully (Exit mode 0)
Current function value: 95.10682067074355
Iterations: 19
Function evaluations: 220
Gradient evaluations: 19
Iteration: 1, Func. Count: 9, Neg. LLF: 126.04494194768147
Iteration: 2, Func. Count: 19, Neg. LLF: 395044109.31917405
Iteration: 3, Func. Count: 28, Neg. LLF: 9422285.552878601
Iteration: 4, Func. Count: 37, Neg. LLF: 2663783.1971160034
Iteration: 5, Func. Count: 46, Neg. LLF: 201884.78564090404
Iteration: 6, Func. Count: 55, Neg. LLF: 2019354.3181654857
Iteration: 7, Func. Count: 64, Neg. LLF: 143.13701840347963
Iteration: 8, Func. Count: 73, Neg. LLF: 98.12896406861952
Iteration: 9, Func. Count: 82, Neg. LLF: 96.08779766511115
Iteration: 10, Func. Count: 90, Neg. LLF: 110.40064955903473
Iteration: 11, Func. Count: 99, Neg. LLF: 96.63286236107105
Iteration: 12, Func. Count: 108, Neg. LLF: 95.98740211179025
Iteration: 13, Func. Count: 117, Neg. LLF: 95.90768623857996
Iteration: 14, Func. Count: 125, Neg. LLF: 95.84756765704134
Iteration: 15, Func. Count: 133, Neg. LLF: 95.79757294898847
Iteration: 16, Func. Count: 141, Neg. LLF: 95.76151749407381
Iteration: 17, Func. Count: 149, Neg. LLF: 95.75527758174253
Iteration: 18, Func. Count: 157, Neg. LLF: 95.75099183336116
Iteration: 19, Func. Count: 165, Neg. LLF: 95.74922381746867
Iteration: 20, Func. Count: 173, Neg. LLF: 95.74736387748645
Iteration: 21, Func. Count: 181, Neg. LLF: 95.74716898869063
Iteration: 22, Func. Count: 189, Neg. LLF: 95.74713464894337
Iteration: 23, Func. Count: 196, Neg. LLF: 95.74713464894653
Optimization terminated successfully (Exit mode 0)
Current function value: 95.74713464894337
Iterations: 23
Function evaluations: 196
Gradient evaluations: 23
Iteration: 1, Func. Count: 10, Neg. LLF: 101.9876913009434
Iteration: 2, Func. Count: 20, Neg. LLF: 331.64881799756864
Iteration: 3, Func. Count: 31, Neg. LLF: 98.95837653151456
Iteration: 4, Func. Count: 41, Neg. LLF: 97.16656678722744
Iteration: 5, Func. Count: 51, Neg. LLF: 100.81618654998633
Iteration: 6, Func. Count: 61, Neg. LLF: 109.72388966140434
Iteration: 7, Func. Count: 71, Neg. LLF: 95.96342746358913
Iteration: 8, Func. Count: 80, Neg. LLF: 95.99166067403455
Iteration: 9, Func. Count: 90, Neg. LLF: 95.92282706128745
Iteration: 10, Func. Count: 100, Neg. LLF: 95.76177752309897
Iteration: 11, Func. Count: 109, Neg. LLF: 95.75014656685337
Iteration: 12, Func. Count: 118, Neg. LLF: 95.74743972467343
Iteration: 13, Func. Count: 127, Neg. LLF: 95.74715865170815
Iteration: 14, Func. Count: 136, Neg. LLF: 95.7471383750747
Iteration: 15, Func. Count: 145, Neg. LLF: 95.74713438197496
Iteration: 16, Func. Count: 153, Neg. LLF: 95.74713445809621
Optimization terminated successfully (Exit mode 0)
Current function value: 95.74713438197496
Iterations: 16
Function evaluations: 153
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 99.37068866151436
Iteration: 2, Func. Count: 22, Neg. LLF: 688.7533582959655
Iteration: 3, Func. Count: 33, Neg. LLF: 99.22772129043244
Iteration: 4, Func. Count: 44, Neg. LLF: 109.26527709452213
Iteration: 5, Func. Count: 55, Neg. LLF: 97.01496363403471
Iteration: 6, Func. Count: 66, Neg. LLF: 95.96251787037211
Iteration: 7, Func. Count: 76, Neg. LLF: 129.01148947868055
Iteration: 8, Func. Count: 87, Neg. LLF: 97.00783993604257
Iteration: 9, Func. Count: 98, Neg. LLF: 95.91064808354902
Iteration: 10, Func. Count: 109, Neg. LLF: 95.77082457436718
Iteration: 11, Func. Count: 119, Neg. LLF: 95.75645689088502
Iteration: 12, Func. Count: 129, Neg. LLF: 95.75334090669288
Iteration: 13, Func. Count: 139, Neg. LLF: 95.74726185240678
Iteration: 14, Func. Count: 149, Neg. LLF: 95.74714880230059
Iteration: 15, Func. Count: 159, Neg. LLF: 95.74714126779581
Iteration: 16, Func. Count: 169, Neg. LLF: 95.7471360245719
Iteration: 17, Func. Count: 179, Neg. LLF: 95.74713440095681
Iteration: 18, Func. Count: 188, Neg. LLF: 95.74713443289252
Optimization terminated successfully (Exit mode 0)
Current function value: 95.74713440095681
Iterations: 18
Function evaluations: 188
Gradient evaluations: 18
Iteration: 1, Func. Count: 12, Neg. LLF: 99.41272908362835
Iteration: 2, Func. Count: 24, Neg. LLF: 612.9528273098006
Iteration: 3, Func. Count: 36, Neg. LLF: 120.2322864031531
Iteration: 4, Func. Count: 48, Neg. LLF: 111.76490634753382
Iteration: 5, Func. Count: 60, Neg. LLF: 100.19447518129012
Iteration: 6, Func. Count: 72, Neg. LLF: 95.86143855149078
Iteration: 7, Func. Count: 84, Neg. LLF: 95.15874478149001
Iteration: 8, Func. Count: 95, Neg. LLF: 96.40018410215956
Iteration: 9, Func. Count: 108, Neg. LLF: 95.0533873324852
Iteration: 10, Func. Count: 119, Neg. LLF: 95.17641611962037
Iteration: 11, Func. Count: 131, Neg. LLF: 95.03586367817749
Iteration: 12, Func. Count: 143, Neg. LLF: 95.00920987090034
Iteration: 13, Func. Count: 154, Neg. LLF: 95.00760732180582
Iteration: 14, Func. Count: 165, Neg. LLF: 95.00726935678378
Iteration: 15, Func. Count: 176, Neg. LLF: 95.0072461076559
Iteration: 16, Func. Count: 187, Neg. LLF: 95.0072413317991
Iteration: 17, Func. Count: 198, Neg. LLF: 95.00724046967989
Optimization terminated successfully (Exit mode 0)
Current function value: 95.00724046967989
Iterations: 17
Function evaluations: 198
Gradient evaluations: 17
Iteration: 1, Func. Count: 13, Neg. LLF: 99.60697758368616
Iteration: 2, Func. Count: 26, Neg. LLF: 492.14265575128843
Iteration: 3, Func. Count: 39, Neg. LLF: 118.31130288955492
Iteration: 4, Func. Count: 52, Neg. LLF: 109.56092176131529
Iteration: 5, Func. Count: 65, Neg. LLF: 110.46981674648845
Iteration: 6, Func. Count: 78, Neg. LLF: 96.10670553760963
Iteration: 7, Func. Count: 91, Neg. LLF: 98.48551502904971
Iteration: 8, Func. Count: 104, Neg. LLF: 95.47958908352341
Iteration: 9, Func. Count: 117, Neg. LLF: 95.16417097515888
Iteration: 10, Func. Count: 129, Neg. LLF: 95.0267405280026
Iteration: 11, Func. Count: 141, Neg. LLF: 95.09666044982612
Iteration: 12, Func. Count: 154, Neg. LLF: 95.00763226860519
Iteration: 13, Func. Count: 166, Neg. LLF: 95.00730994642498
Iteration: 14, Func. Count: 178, Neg. LLF: 95.00725066251383
Iteration: 15, Func. Count: 190, Neg. LLF: 95.0072423365298
Iteration: 16, Func. Count: 202, Neg. LLF: 95.00724121273277
Iteration: 17, Func. Count: 214, Neg. LLF: 95.00724052375509
Optimization terminated successfully (Exit mode 0)
Current function value: 95.00724052375509
Iterations: 17
Function evaluations: 214
Gradient evaluations: 17
Iteration: 1, Func. Count: 6, Neg. LLF: 121.9319647758419
Iteration: 2, Func. Count: 13, Neg. LLF: 179.5516397230885
Iteration: 3, Func. Count: 19, Neg. LLF: 824.7411801186471
Iteration: 4, Func. Count: 25, Neg. LLF: 99.39908895332665
Iteration: 5, Func. Count: 31, Neg. LLF: 98.70396137857131
Iteration: 6, Func. Count: 36, Neg. LLF: 98.72402552910864
Iteration: 7, Func. Count: 42, Neg. LLF: 98.80912118044157
Iteration: 8, Func. Count: 48, Neg. LLF: 98.69355678065912
Iteration: 9, Func. Count: 53, Neg. LLF: 98.69201899798014
Iteration: 10, Func. Count: 58, Neg. LLF: 98.69172061231079
Iteration: 11, Func. Count: 63, Neg. LLF: 98.69171591794489
Iteration: 12, Func. Count: 67, Neg. LLF: 98.69171591794094
Optimization terminated successfully (Exit mode 0)
Current function value: 98.69171591794489
Iterations: 12
Function evaluations: 67
Gradient evaluations: 12
Iteration: 1, Func. Count: 7, Neg. LLF: 102.70996492061776
Iteration: 2, Func. Count: 14, Neg. LLF: 145.39482347338762
Iteration: 3, Func. Count: 21, Neg. LLF: 100.11403201903656
Iteration: 4, Func. Count: 28, Neg. LLF: 103.96319573482643
Iteration: 5, Func. Count: 35, Neg. LLF: 98.75108660737816
Iteration: 6, Func. Count: 42, Neg. LLF: 98.35053688902215
Iteration: 7, Func. Count: 48, Neg. LLF: 98.34938294928088
Iteration: 8, Func. Count: 54, Neg. LLF: 98.3471187047567
Iteration: 9, Func. Count: 60, Neg. LLF: 98.34709634267742
Iteration: 10, Func. Count: 66, Neg. LLF: 98.34709537927563
Optimization terminated successfully (Exit mode 0)
Current function value: 98.34709537927563
Iterations: 10
Function evaluations: 66
Gradient evaluations: 10
Iteration: 1, Func. Count: 8, Neg. LLF: 103.02603795969559
Iteration: 2, Func. Count: 16, Neg. LLF: 148.24126987066865
Iteration: 3, Func. Count: 24, Neg. LLF: 134.76423163181292
Iteration: 4, Func. Count: 32, Neg. LLF: 98.71431187594804
Iteration: 5, Func. Count: 39, Neg. LLF: 99.57919374822491
Iteration: 6, Func. Count: 47, Neg. LLF: 98.46063178672266
Iteration: 7, Func. Count: 55, Neg. LLF: 98.3622050442259
Iteration: 8, Func. Count: 62, Neg. LLF: 98.34886726644432
Iteration: 9, Func. Count: 69, Neg. LLF: 98.34719701173523
Iteration: 10, Func. Count: 76, Neg. LLF: 98.34709588193019
Iteration: 11, Func. Count: 83, Neg. LLF: 98.34709536562951
Optimization terminated successfully (Exit mode 0)
Current function value: 98.34709536562951
Iterations: 11
Function evaluations: 83
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 105.42077199763958
Iteration: 2, Func. Count: 18, Neg. LLF: 136.20946610863092
Iteration: 3, Func. Count: 27, Neg. LLF: 4637.422096091182
Iteration: 4, Func. Count: 36, Neg. LLF: 109.14245930709288
Iteration: 5, Func. Count: 45, Neg. LLF: 98.39055349633813
Iteration: 6, Func. Count: 53, Neg. LLF: 98.3547343077041
Iteration: 7, Func. Count: 61, Neg. LLF: 98.48182461369178
Iteration: 8, Func. Count: 70, Neg. LLF: 98.34796215515063
Iteration: 9, Func. Count: 78, Neg. LLF: 98.34715808887002
Iteration: 10, Func. Count: 86, Neg. LLF: 98.34709682561113
Iteration: 11, Func. Count: 94, Neg. LLF: 98.34709539199318
Iteration: 12, Func. Count: 101, Neg. LLF: 98.34709539284106
Optimization terminated successfully (Exit mode 0)
Current function value: 98.34709539199318
Iterations: 12
Function evaluations: 101
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 108.12929956725742
Iteration: 2, Func. Count: 20, Neg. LLF: 132.447105421622
Iteration: 3, Func. Count: 30, Neg. LLF: 4478.771960321266
Iteration: 4, Func. Count: 40, Neg. LLF: 110.77269860896082
Iteration: 5, Func. Count: 50, Neg. LLF: 98.38302691001863
Iteration: 6, Func. Count: 59, Neg. LLF: 98.36095909325518
Iteration: 7, Func. Count: 68, Neg. LLF: 98.49921854641096
Iteration: 8, Func. Count: 78, Neg. LLF: 98.34873608885918
Iteration: 9, Func. Count: 87, Neg. LLF: 98.34763761318968
Iteration: 10, Func. Count: 96, Neg. LLF: 98.34710068077523
Iteration: 11, Func. Count: 105, Neg. LLF: 98.34709539406713
Iteration: 12, Func. Count: 113, Neg. LLF: 98.34709540259652
Optimization terminated successfully (Exit mode 0)
Current function value: 98.34709539406713
Iterations: 12
Function evaluations: 113
Gradient evaluations: 12
Iteration: 1, Func. Count: 7, Neg. LLF: 117.23882729102719
Iteration: 2, Func. Count: 15, Neg. LLF: 204.45043679773056
Iteration: 3, Func. Count: 22, Neg. LLF: 702.7740973429547
Iteration: 4, Func. Count: 29, Neg. LLF: 99.35510080825686
Iteration: 5, Func. Count: 36, Neg. LLF: 98.7189665631792
Iteration: 6, Func. Count: 42, Neg. LLF: 98.71751245201479
Iteration: 7, Func. Count: 49, Neg. LLF: 100.78760261966283
Iteration: 8, Func. Count: 58, Neg. LLF: 98.66057444108834
Iteration: 9, Func. Count: 65, Neg. LLF: 98.65363984415174
Iteration: 10, Func. Count: 71, Neg. LLF: 98.65116378554337
Iteration: 11, Func. Count: 77, Neg. LLF: 98.65112428273218
Iteration: 12, Func. Count: 83, Neg. LLF: 98.65112188152465
Iteration: 13, Func. Count: 88, Neg. LLF: 98.65112188151788
Optimization terminated successfully (Exit mode 0)
Current function value: 98.65112188152465
Iterations: 13
Function evaluations: 88
Gradient evaluations: 13
Iteration: 1, Func. Count: 8, Neg. LLF: 104.13641523850141
Iteration: 2, Func. Count: 16, Neg. LLF: 109.81934088017849
Iteration: 3, Func. Count: 24, Neg. LLF: 103.16599045290025
Iteration: 4, Func. Count: 32, Neg. LLF: 98.75760933563866
Iteration: 5, Func. Count: 39, Neg. LLF: 104.88418852386796
Iteration: 6, Func. Count: 47, Neg. LLF: 98.81889148656073
Iteration: 7, Func. Count: 55, Neg. LLF: 98.37050977365796
Iteration: 8, Func. Count: 62, Neg. LLF: 98.35078915270012
Iteration: 9, Func. Count: 69, Neg. LLF: 98.34745928864653
Iteration: 10, Func. Count: 76, Neg. LLF: 98.34709943277592
Iteration: 11, Func. Count: 83, Neg. LLF: 98.34709537473842
Iteration: 12, Func. Count: 89, Neg. LLF: 98.34709537474681
Optimization terminated successfully (Exit mode 0)
Current function value: 98.34709537473842
Iterations: 12
Function evaluations: 89
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 102.57450000287498
Iteration: 2, Func. Count: 18, Neg. LLF: 149.77095212963943
Iteration: 3, Func. Count: 27, Neg. LLF: 130.6567156085035
Iteration: 4, Func. Count: 36, Neg. LLF: 98.41495437362309
Iteration: 5, Func. Count: 44, Neg. LLF: 117.84201839702772
Iteration: 6, Func. Count: 53, Neg. LLF: 98.35066302094621
Iteration: 7, Func. Count: 61, Neg. LLF: 98.34948236664899
Iteration: 8, Func. Count: 69, Neg. LLF: 98.34710137667993
Iteration: 9, Func. Count: 77, Neg. LLF: 98.34709547213382
Iteration: 10, Func. Count: 84, Neg. LLF: 98.34709551367946
Optimization terminated successfully (Exit mode 0)
Current function value: 98.34709547213382
Iterations: 10
Function evaluations: 84
Gradient evaluations: 10
Iteration: 1, Func. Count: 10, Neg. LLF: 104.87164830528067
Iteration: 2, Func. Count: 20, Neg. LLF: 136.99584855818617
Iteration: 3, Func. Count: 30, Neg. LLF: 4602.899107850455
Iteration: 4, Func. Count: 40, Neg. LLF: 109.65098582833208
Iteration: 5, Func. Count: 50, Neg. LLF: 98.39017693245718
Iteration: 6, Func. Count: 59, Neg. LLF: 98.35258639056694
Iteration: 7, Func. Count: 68, Neg. LLF: 98.45143957596946
Iteration: 8, Func. Count: 78, Neg. LLF: 98.34759936008317
Iteration: 9, Func. Count: 87, Neg. LLF: 98.34712339155605
Iteration: 10, Func. Count: 96, Neg. LLF: 98.34709581174918
Iteration: 11, Func. Count: 104, Neg. LLF: 98.34709581259366
Optimization terminated successfully (Exit mode 0)
Current function value: 98.34709581174918
Iterations: 11
Function evaluations: 104
Gradient evaluations: 11
Iteration: 1, Func. Count: 11, Neg. LLF: 107.45221313814764
Iteration: 2, Func. Count: 22, Neg. LLF: 133.08757285555512
Iteration: 3, Func. Count: 33, Neg. LLF: 4702.610575054443
Iteration: 4, Func. Count: 44, Neg. LLF: 111.25449884551843
Iteration: 5, Func. Count: 55, Neg. LLF: 98.38383422719711
Iteration: 6, Func. Count: 65, Neg. LLF: 98.35903043566132
Iteration: 7, Func. Count: 75, Neg. LLF: 98.50863035073536
Iteration: 8, Func. Count: 86, Neg. LLF: 98.34852407210771
Iteration: 9, Func. Count: 96, Neg. LLF: 98.34739992084732
Iteration: 10, Func. Count: 106, Neg. LLF: 98.3471052409276
Iteration: 11, Func. Count: 116, Neg. LLF: 98.34709550079903
Iteration: 12, Func. Count: 125, Neg. LLF: 98.34709550929988
Optimization terminated successfully (Exit mode 0)
Current function value: 98.34709550079903
Iterations: 12
Function evaluations: 125
Gradient evaluations: 12
Iteration: 1, Func. Count: 8, Neg. LLF: 105.0353378947001
Iteration: 2, Func. Count: 17, Neg. LLF: 523.9003236294246
Iteration: 3, Func. Count: 25, Neg. LLF: 7175766.593779594
Iteration: 4, Func. Count: 33, Neg. LLF: 114.80287278268362
Iteration: 5, Func. Count: 41, Neg. LLF: 97.61404434596226
Iteration: 6, Func. Count: 49, Neg. LLF: 96.79507918955656
Iteration: 7, Func. Count: 57, Neg. LLF: 102.17864778899427
Iteration: 8, Func. Count: 65, Neg. LLF: 96.1903176567678
Iteration: 9, Func. Count: 73, Neg. LLF: 96.7403592724013
Iteration: 10, Func. Count: 81, Neg. LLF: 96.06170211511689
Iteration: 11, Func. Count: 88, Neg. LLF: 96.03746987121983
Iteration: 12, Func. Count: 95, Neg. LLF: 96.0322866816358
Iteration: 13, Func. Count: 102, Neg. LLF: 96.0321647907626
Iteration: 14, Func. Count: 109, Neg. LLF: 96.0321410867266
Iteration: 15, Func. Count: 115, Neg. LLF: 96.0321410867208
Optimization terminated successfully (Exit mode 0)
Current function value: 96.0321410867266
Iterations: 15
Function evaluations: 115
Gradient evaluations: 15
Iteration: 1, Func. Count: 9, Neg. LLF: 116.44613791343289
Iteration: 2, Func. Count: 18, Neg. LLF: 130.9451401068862
Iteration: 3, Func. Count: 28, Neg. LLF: 98.8680628185287
Iteration: 4, Func. Count: 37, Neg. LLF: 97.24942494736935
Iteration: 5, Func. Count: 46, Neg. LLF: 96.46053289416554
Iteration: 6, Func. Count: 54, Neg. LLF: 98.69419684388714
Iteration: 7, Func. Count: 64, Neg. LLF: 97.5277876351438
Iteration: 8, Func. Count: 73, Neg. LLF: 96.81544259532096
Iteration: 9, Func. Count: 82, Neg. LLF: 97.24278040458977
Iteration: 10, Func. Count: 91, Neg. LLF: 96.0550428025062
Iteration: 11, Func. Count: 99, Neg. LLF: 96.03895291429006
Iteration: 12, Func. Count: 107, Neg. LLF: 96.03254609569156
Iteration: 13, Func. Count: 115, Neg. LLF: 96.03219215954024
Iteration: 14, Func. Count: 123, Neg. LLF: 96.03214148606752
Iteration: 15, Func. Count: 131, Neg. LLF: 96.03214089013892
Optimization terminated successfully (Exit mode 0)
Current function value: 96.03214089013892
Iterations: 15
Function evaluations: 131
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 103.66430574642524
Iteration: 2, Func. Count: 20, Neg. LLF: 115.44556736010976
Iteration: 3, Func. Count: 30, Neg. LLF: 96.74354698912767
Iteration: 4, Func. Count: 40, Neg. LLF: 536.4324073475206
Iteration: 5, Func. Count: 50, Neg. LLF: 96.24312801955546
Iteration: 6, Func. Count: 60, Neg. LLF: 97.70633220600546
Iteration: 7, Func. Count: 70, Neg. LLF: 96.05410310555106
Iteration: 8, Func. Count: 80, Neg. LLF: 96.17937536294679
Iteration: 9, Func. Count: 90, Neg. LLF: 96.00974778574
Iteration: 10, Func. Count: 100, Neg. LLF: 95.92254387187761
Iteration: 11, Func. Count: 109, Neg. LLF: 95.91653273902199
Iteration: 12, Func. Count: 118, Neg. LLF: 95.91152834286149
Iteration: 13, Func. Count: 127, Neg. LLF: 95.91069274695413
Iteration: 14, Func. Count: 136, Neg. LLF: 95.91061472419152
Iteration: 15, Func. Count: 145, Neg. LLF: 95.91061384055715
Optimization terminated successfully (Exit mode 0)
Current function value: 95.91061384055715
Iterations: 15
Function evaluations: 145
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 102.6573188493733
Iteration: 2, Func. Count: 22, Neg. LLF: 433.2985591115028
Iteration: 3, Func. Count: 34, Neg. LLF: 96.27050381363127
Iteration: 4, Func. Count: 45, Neg. LLF: 95.57053818783703
Iteration: 5, Func. Count: 55, Neg. LLF: 103.74552775255252
Iteration: 6, Func. Count: 66, Neg. LLF: 372.83334336694026
Iteration: 7, Func. Count: 79, Neg. LLF: 101.36170205498954
Iteration: 8, Func. Count: 92, Neg. LLF: 94.77067341426934
Iteration: 9, Func. Count: 102, Neg. LLF: 94.76615750242
Iteration: 10, Func. Count: 112, Neg. LLF: 94.76533368256229
Iteration: 11, Func. Count: 122, Neg. LLF: 94.76528377593075
Iteration: 12, Func. Count: 132, Neg. LLF: 94.76518992976753
Iteration: 13, Func. Count: 142, Neg. LLF: 94.76516768560754
Iteration: 14, Func. Count: 152, Neg. LLF: 94.76516109556862
Iteration: 15, Func. Count: 161, Neg. LLF: 94.765161078904
Optimization terminated successfully (Exit mode 0)
Current function value: 94.76516109556862
Iterations: 15
Function evaluations: 161
Gradient evaluations: 15
Iteration: 1, Func. Count: 12, Neg. LLF: 103.21372739276265
Iteration: 2, Func. Count: 24, Neg. LLF: 720.6906884121084
Iteration: 3, Func. Count: 37, Neg. LLF: 97.8649332273362
Iteration: 4, Func. Count: 49, Neg. LLF: 96.07699870529285
Iteration: 5, Func. Count: 60, Neg. LLF: 98.26951313178138
Iteration: 6, Func. Count: 73, Neg. LLF: 19655.87305706858
Iteration: 7, Func. Count: 87, Neg. LLF: 107.45199195713516
Iteration: 8, Func. Count: 100, Neg. LLF: 94.88424009560798
Iteration: 9, Func. Count: 111, Neg. LLF: 94.87137062362369
Iteration: 10, Func. Count: 123, Neg. LLF: 94.77698807877306
Iteration: 11, Func. Count: 134, Neg. LLF: 94.7721859918568
Iteration: 12, Func. Count: 145, Neg. LLF: 94.76540370668745
Iteration: 13, Func. Count: 156, Neg. LLF: 94.76521681119696
Iteration: 14, Func. Count: 167, Neg. LLF: 94.76517151871585
Iteration: 15, Func. Count: 178, Neg. LLF: 94.76516409694068
Iteration: 16, Func. Count: 189, Neg. LLF: 94.7651611352733
Iteration: 17, Func. Count: 199, Neg. LLF: 94.76516120009794
Optimization terminated successfully (Exit mode 0)
Current function value: 94.7651611352733
Iterations: 17
Function evaluations: 199
Gradient evaluations: 17
Iteration: 1, Func. Count: 9, Neg. LLF: 116.70141167452155
Iteration: 2, Func. Count: 19, Neg. LLF: 375.41735387350855
Iteration: 3, Func. Count: 28, Neg. LLF: 9422339.908043668
Iteration: 4, Func. Count: 37, Neg. LLF: 148.69594355988474
Iteration: 5, Func. Count: 46, Neg. LLF: 97.3812027319288
Iteration: 6, Func. Count: 55, Neg. LLF: 136.65501387053638
Iteration: 7, Func. Count: 65, Neg. LLF: 96.2985628581741
Iteration: 8, Func. Count: 73, Neg. LLF: 97.90150610900821
Iteration: 9, Func. Count: 82, Neg. LLF: 97.65519875740438
Iteration: 10, Func. Count: 92, Neg. LLF: 96.11328513791646
Iteration: 11, Func. Count: 100, Neg. LLF: 96.06149313704772
Iteration: 12, Func. Count: 108, Neg. LLF: 96.03505430623561
Iteration: 13, Func. Count: 116, Neg. LLF: 96.03231103032807
Iteration: 14, Func. Count: 124, Neg. LLF: 96.03216712999058
Iteration: 15, Func. Count: 132, Neg. LLF: 96.03214738488937
Iteration: 16, Func. Count: 140, Neg. LLF: 96.03214113190185
Iteration: 17, Func. Count: 147, Neg. LLF: 96.03214120328421
Optimization terminated successfully (Exit mode 0)
Current function value: 96.03214113190185
Iterations: 17
Function evaluations: 147
Gradient evaluations: 17
Iteration: 1, Func. Count: 10, Neg. LLF: 99.23564755172579
Iteration: 2, Func. Count: 20, Neg. LLF: 167.04682124506775
Iteration: 3, Func. Count: 31, Neg. LLF: 97.6962516074857
Iteration: 4, Func. Count: 41, Neg. LLF: 97.43777702817572
Iteration: 5, Func. Count: 51, Neg. LLF: 96.61915713368522
Iteration: 6, Func. Count: 61, Neg. LLF: 99.94329021735133
Iteration: 7, Func. Count: 71, Neg. LLF: 97.29208933216323
Iteration: 8, Func. Count: 81, Neg. LLF: 96.13924096967793
Iteration: 9, Func. Count: 90, Neg. LLF: 96.76388157831691
Iteration: 10, Func. Count: 100, Neg. LLF: 96.11252613151385
Iteration: 11, Func. Count: 110, Neg. LLF: 96.04090749609362
Iteration: 12, Func. Count: 119, Neg. LLF: 96.03340104143734
Iteration: 13, Func. Count: 128, Neg. LLF: 96.03242046350462
Iteration: 14, Func. Count: 137, Neg. LLF: 96.03221447864442
Iteration: 15, Func. Count: 146, Neg. LLF: 96.0321661951214
Iteration: 16, Func. Count: 155, Neg. LLF: 96.03214263429783
Iteration: 17, Func. Count: 164, Neg. LLF: 96.03214088791323
Iteration: 18, Func. Count: 172, Neg. LLF: 96.03214095849296
Optimization terminated successfully (Exit mode 0)
Current function value: 96.03214088791323
Iterations: 18
Function evaluations: 172
Gradient evaluations: 18
Iteration: 1, Func. Count: 11, Neg. LLF: 100.76521052003731
Iteration: 2, Func. Count: 22, Neg. LLF: 413.9540030519296
Iteration: 3, Func. Count: 33, Neg. LLF: 96.56460963299016
Iteration: 4, Func. Count: 44, Neg. LLF: 1339659.928552763
Iteration: 5, Func. Count: 55, Neg. LLF: 96.23725766074354
Iteration: 6, Func. Count: 66, Neg. LLF: 96.47039736478807
Iteration: 7, Func. Count: 77, Neg. LLF: 96.25837819345843
Iteration: 8, Func. Count: 88, Neg. LLF: 96.57162666882833
Iteration: 9, Func. Count: 99, Neg. LLF: 96.25502598848934
Iteration: 10, Func. Count: 110, Neg. LLF: 95.91649649985294
Iteration: 11, Func. Count: 120, Neg. LLF: 95.91368979568732
Iteration: 12, Func. Count: 130, Neg. LLF: 95.91182116237201
Iteration: 13, Func. Count: 140, Neg. LLF: 95.91070919189126
Iteration: 14, Func. Count: 150, Neg. LLF: 95.91061830726255
Iteration: 15, Func. Count: 160, Neg. LLF: 95.9106138872561
Iteration: 16, Func. Count: 169, Neg. LLF: 95.91061388728583
Optimization terminated successfully (Exit mode 0)
Current function value: 95.9106138872561
Iterations: 16
Function evaluations: 169
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 102.45297810786494
Iteration: 2, Func. Count: 24, Neg. LLF: 322.71987349047185
Iteration: 3, Func. Count: 36, Neg. LLF: 95.79535487417652
Iteration: 4, Func. Count: 47, Neg. LLF: 133.32031148454024
Iteration: 5, Func. Count: 59, Neg. LLF: 118.29211467014049
Iteration: 6, Func. Count: 74, Neg. LLF: 101.14644260608779
Iteration: 7, Func. Count: 87, Neg. LLF: 95.28632534152771
Iteration: 8, Func. Count: 99, Neg. LLF: 94.90113841376858
Iteration: 9, Func. Count: 110, Neg. LLF: 94.88053859186626
Iteration: 10, Func. Count: 122, Neg. LLF: 94.93506843972145
Iteration: 11, Func. Count: 134, Neg. LLF: 94.77473891918763
Iteration: 12, Func. Count: 145, Neg. LLF: 94.76621212643013
Iteration: 13, Func. Count: 156, Neg. LLF: 94.76529026363623
Iteration: 14, Func. Count: 167, Neg. LLF: 94.76519487368202
Iteration: 15, Func. Count: 178, Neg. LLF: 94.76516240853104
Iteration: 16, Func. Count: 189, Neg. LLF: 94.76516106142334
Iteration: 17, Func. Count: 199, Neg. LLF: 94.76516104477595
Optimization terminated successfully (Exit mode 0)
Current function value: 94.76516106142334
Iterations: 17
Function evaluations: 199
Gradient evaluations: 17
Iteration: 1, Func. Count: 13, Neg. LLF: 104.54691593923653
Iteration: 2, Func. Count: 26, Neg. LLF: 272.75406575404793
Iteration: 3, Func. Count: 39, Neg. LLF: 102.93471239509108
Iteration: 4, Func. Count: 52, Neg. LLF: 95.66441298477983
Iteration: 5, Func. Count: 64, Neg. LLF: 103.6989687586805
Iteration: 6, Func. Count: 77, Neg. LLF: 6589.538113743035
Iteration: 7, Func. Count: 91, Neg. LLF: 446.73458553995187
Iteration: 8, Func. Count: 104, Neg. LLF: 102.16127522278055
Iteration: 9, Func. Count: 117, Neg. LLF: 94.77989076286923
Iteration: 10, Func. Count: 129, Neg. LLF: 94.7677345225663
Iteration: 11, Func. Count: 141, Neg. LLF: 94.76568629970102
Iteration: 12, Func. Count: 153, Neg. LLF: 94.7652037965672
Iteration: 13, Func. Count: 165, Neg. LLF: 94.76516750388151
Iteration: 14, Func. Count: 177, Neg. LLF: 94.76516215029855
Iteration: 15, Func. Count: 189, Neg. LLF: 94.76516095426238
Iteration: 16, Func. Count: 200, Neg. LLF: 94.76516101909475
Optimization terminated successfully (Exit mode 0)
Current function value: 94.76516095426238
Iterations: 16
Function evaluations: 200
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 123.65095112648484
Iteration: 2, Func. Count: 21, Neg. LLF: 386.82714354188886
Iteration: 3, Func. Count: 31, Neg. LLF: 4331490.429604761
Iteration: 4, Func. Count: 41, Neg. LLF: 124.49566580457115
Iteration: 5, Func. Count: 51, Neg. LLF: 99.2743174194735
Iteration: 6, Func. Count: 61, Neg. LLF: 102.6435846512616
Iteration: 7, Func. Count: 71, Neg. LLF: 96.24766866993464
Iteration: 8, Func. Count: 80, Neg. LLF: 97.47472230943096
Iteration: 9, Func. Count: 90, Neg. LLF: 98.76748929762387
Iteration: 10, Func. Count: 102, Neg. LLF: 96.97182655041252
Iteration: 11, Func. Count: 112, Neg. LLF: 96.31003630786874
Iteration: 12, Func. Count: 122, Neg. LLF: 95.83599782841205
Iteration: 13, Func. Count: 131, Neg. LLF: 95.7731523660608
Iteration: 14, Func. Count: 140, Neg. LLF: 95.75976445470796
Iteration: 15, Func. Count: 149, Neg. LLF: 95.74928740755821
Iteration: 16, Func. Count: 158, Neg. LLF: 95.74694802486779
Iteration: 17, Func. Count: 167, Neg. LLF: 95.74666966625298
Iteration: 18, Func. Count: 176, Neg. LLF: 95.74664787511686
Iteration: 19, Func. Count: 185, Neg. LLF: 95.74664674527375
Iteration: 20, Func. Count: 193, Neg. LLF: 95.74664674528131
Optimization terminated successfully (Exit mode 0)
Current function value: 95.74664674527375
Iterations: 20
Function evaluations: 193
Gradient evaluations: 20
Iteration: 1, Func. Count: 11, Neg. LLF: 99.6806465263248
Iteration: 2, Func. Count: 22, Neg. LLF: 285.54959141520675
Iteration: 3, Func. Count: 34, Neg. LLF: 96.85578247458916
Iteration: 4, Func. Count: 45, Neg. LLF: 97.7046220188753
Iteration: 5, Func. Count: 56, Neg. LLF: 96.03358660796917
Iteration: 6, Func. Count: 66, Neg. LLF: 97.6590425368289
Iteration: 7, Func. Count: 77, Neg. LLF: 99.47699071011887
Iteration: 8, Func. Count: 88, Neg. LLF: 95.80576625542956
Iteration: 9, Func. Count: 98, Neg. LLF: 96.94960329376967
Iteration: 10, Func. Count: 109, Neg. LLF: 96.11716054527918
Iteration: 11, Func. Count: 120, Neg. LLF: 96.76094322546778
Iteration: 12, Func. Count: 131, Neg. LLF: 95.7513476990913
Iteration: 13, Func. Count: 141, Neg. LLF: 95.74995253294423
Iteration: 14, Func. Count: 151, Neg. LLF: 95.74693489844363
Iteration: 15, Func. Count: 161, Neg. LLF: 95.74665761963021
Iteration: 16, Func. Count: 171, Neg. LLF: 95.74664828607061
Iteration: 17, Func. Count: 181, Neg. LLF: 95.74664739409269
Optimization terminated successfully (Exit mode 0)
Current function value: 95.74664739409269
Iterations: 17
Function evaluations: 181
Gradient evaluations: 17
Iteration: 1, Func. Count: 12, Neg. LLF: 103.18399165231159
Iteration: 2, Func. Count: 24, Neg. LLF: 336.28406146934253
Iteration: 3, Func. Count: 36, Neg. LLF: 100.92595623206651
Iteration: 4, Func. Count: 48, Neg. LLF: 98.56899542638786
Iteration: 5, Func. Count: 60, Neg. LLF: 96.01267122048665
Iteration: 6, Func. Count: 71, Neg. LLF: 96.13006292381775
Iteration: 7, Func. Count: 83, Neg. LLF: 124.7748394236071
Iteration: 8, Func. Count: 95, Neg. LLF: 130.0425353765253
Iteration: 9, Func. Count: 108, Neg. LLF: 96.19248636307411
Iteration: 10, Func. Count: 120, Neg. LLF: 95.83816457965959
Iteration: 11, Func. Count: 132, Neg. LLF: 95.75428446040031
Iteration: 12, Func. Count: 143, Neg. LLF: 95.74884828939668
Iteration: 13, Func. Count: 154, Neg. LLF: 95.74713267303437
Iteration: 14, Func. Count: 165, Neg. LLF: 95.74685222393607
Iteration: 15, Func. Count: 176, Neg. LLF: 95.74671584189987
Iteration: 16, Func. Count: 187, Neg. LLF: 95.7466556111033
Iteration: 17, Func. Count: 198, Neg. LLF: 95.74664842221968
Iteration: 18, Func. Count: 209, Neg. LLF: 95.74664673674626
Iteration: 19, Func. Count: 219, Neg. LLF: 95.74664676804004
Optimization terminated successfully (Exit mode 0)
Current function value: 95.74664673674626
Iterations: 19
Function evaluations: 219
Gradient evaluations: 19
Iteration: 1, Func. Count: 13, Neg. LLF: 105.64042732964897
Iteration: 2, Func. Count: 26, Neg. LLF: 279.249934355397
Iteration: 3, Func. Count: 39, Neg. LLF: 120.68364579829438
Iteration: 4, Func. Count: 52, Neg. LLF: 98.7402049626999
Iteration: 5, Func. Count: 65, Neg. LLF: 97.65421333432985
Iteration: 6, Func. Count: 78, Neg. LLF: 97.18497238139571
Iteration: 7, Func. Count: 91, Neg. LLF: 95.75118639999472
Iteration: 8, Func. Count: 104, Neg. LLF: 94.99517214807535
Iteration: 9, Func. Count: 116, Neg. LLF: 107.0336570261879
Iteration: 10, Func. Count: 130, Neg. LLF: 96.65364025956069
Iteration: 11, Func. Count: 143, Neg. LLF: 94.82960913852199
Iteration: 12, Func. Count: 156, Neg. LLF: 94.77072958660965
Iteration: 13, Func. Count: 168, Neg. LLF: 94.76608728128991
Iteration: 14, Func. Count: 180, Neg. LLF: 94.76524044915794
Iteration: 15, Func. Count: 192, Neg. LLF: 94.76518265830236
Iteration: 16, Func. Count: 204, Neg. LLF: 94.76516581677087
Iteration: 17, Func. Count: 216, Neg. LLF: 94.76516187776981
Iteration: 18, Func. Count: 228, Neg. LLF: 94.76516094838435
Optimization terminated successfully (Exit mode 0)
Current function value: 94.76516094838435
Iterations: 18
Function evaluations: 228
Gradient evaluations: 18
Iteration: 1, Func. Count: 14, Neg. LLF: 108.15716116012523
Iteration: 2, Func. Count: 28, Neg. LLF: 255.33405278620063
Iteration: 3, Func. Count: 42, Neg. LLF: 136.19637884624055
Iteration: 4, Func. Count: 56, Neg. LLF: 115.33980502861445
Iteration: 5, Func. Count: 70, Neg. LLF: 97.05739092359663
Iteration: 6, Func. Count: 84, Neg. LLF: 97.18618890827632
Iteration: 7, Func. Count: 98, Neg. LLF: 96.04603774835195
Iteration: 8, Func. Count: 112, Neg. LLF: 94.98755359215825
Iteration: 9, Func. Count: 125, Neg. LLF: 120.48425319182694
Iteration: 10, Func. Count: 140, Neg. LLF: 95.27032076776266
Iteration: 11, Func. Count: 154, Neg. LLF: 95.02003031412167
Iteration: 12, Func. Count: 168, Neg. LLF: 94.76831301524004
Iteration: 13, Func. Count: 181, Neg. LLF: 94.76624081788626
Iteration: 14, Func. Count: 194, Neg. LLF: 94.76529764583462
Iteration: 15, Func. Count: 207, Neg. LLF: 94.76520892872104
Iteration: 16, Func. Count: 220, Neg. LLF: 94.7651611331979
Iteration: 17, Func. Count: 232, Neg. LLF: 94.76516119803685
Optimization terminated successfully (Exit mode 0)
Current function value: 94.7651611331979
Iterations: 17
Function evaluations: 232
Gradient evaluations: 17
Iteration: 1, Func. Count: 7, Neg. LLF: 110.77295995080642
Iteration: 2, Func. Count: 15, Neg. LLF: 66529.0720883334
Iteration: 3, Func. Count: 22, Neg. LLF: 342198.38043993915
Iteration: 4, Func. Count: 29, Neg. LLF: 134.15044385935408
Iteration: 5, Func. Count: 36, Neg. LLF: 109.09554595985952
Iteration: 6, Func. Count: 43, Neg. LLF: 98.46452641799193
Iteration: 7, Func. Count: 49, Neg. LLF: 98.36352218142838
Iteration: 8, Func. Count: 55, Neg. LLF: 98.33378601220127
Iteration: 9, Func. Count: 61, Neg. LLF: 98.3225206984059
Iteration: 10, Func. Count: 67, Neg. LLF: 98.31802023370334
Iteration: 11, Func. Count: 73, Neg. LLF: 98.31778221769692
Iteration: 12, Func. Count: 79, Neg. LLF: 98.31777868791457
Iteration: 13, Func. Count: 85, Neg. LLF: 98.31777817380592
Optimization terminated successfully (Exit mode 0)
Current function value: 98.31777817380592
Iterations: 13
Function evaluations: 85
Gradient evaluations: 13
Iteration: 1, Func. Count: 8, Neg. LLF: 100.65694229727333
Iteration: 2, Func. Count: 16, Neg. LLF: 147.07684268219836
Iteration: 3, Func. Count: 24, Neg. LLF: 107.68444609018724
Iteration: 4, Func. Count: 32, Neg. LLF: 98.71721930733764
Iteration: 5, Func. Count: 39, Neg. LLF: 103.08796827818036
Iteration: 6, Func. Count: 47, Neg. LLF: 100.40331657675715
Iteration: 7, Func. Count: 55, Neg. LLF: 98.32475916002419
Iteration: 8, Func. Count: 62, Neg. LLF: 98.31877293672953
Iteration: 9, Func. Count: 69, Neg. LLF: 98.31808833030291
Iteration: 10, Func. Count: 76, Neg. LLF: 98.31785337753776
Iteration: 11, Func. Count: 83, Neg. LLF: 98.31778210888703
Iteration: 12, Func. Count: 90, Neg. LLF: 98.31777826141294
Iteration: 13, Func. Count: 96, Neg. LLF: 98.31777826593576
Optimization terminated successfully (Exit mode 0)
Current function value: 98.31777826141294
Iterations: 13
Function evaluations: 96
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 100.37437915583075
Iteration: 2, Func. Count: 18, Neg. LLF: 152.52736563748482
Iteration: 3, Func. Count: 27, Neg. LLF: 118.89100441914381
Iteration: 4, Func. Count: 36, Neg. LLF: 98.72492822885972
Iteration: 5, Func. Count: 44, Neg. LLF: 105.18445045754329
Iteration: 6, Func. Count: 53, Neg. LLF: 99.11934014713663
Iteration: 7, Func. Count: 62, Neg. LLF: 98.33018062281279
Iteration: 8, Func. Count: 70, Neg. LLF: 98.32070534363687
Iteration: 9, Func. Count: 78, Neg. LLF: 98.31865193688803
Iteration: 10, Func. Count: 86, Neg. LLF: 98.31784821163602
Iteration: 11, Func. Count: 94, Neg. LLF: 98.31778056918807
Iteration: 12, Func. Count: 102, Neg. LLF: 98.31777818597342
Iteration: 13, Func. Count: 109, Neg. LLF: 98.31777822711793
Optimization terminated successfully (Exit mode 0)
Current function value: 98.31777818597342
Iterations: 13
Function evaluations: 109
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 99.91606043847202
Iteration: 2, Func. Count: 20, Neg. LLF: 192.54706413849965
Iteration: 3, Func. Count: 30, Neg. LLF: 172.33756143491564
Iteration: 4, Func. Count: 40, Neg. LLF: 101.28927074726077
Iteration: 5, Func. Count: 50, Neg. LLF: 99.92866609639928
Iteration: 6, Func. Count: 60, Neg. LLF: 99.56941458185914
Iteration: 7, Func. Count: 70, Neg. LLF: 99.43239517554704
Iteration: 8, Func. Count: 80, Neg. LLF: 99.2992446332844
Iteration: 9, Func. Count: 90, Neg. LLF: 102.0085374281198
Iteration: 10, Func. Count: 101, Neg. LLF: 98.79770544585006
Iteration: 11, Func. Count: 111, Neg. LLF: 98.22940506623952
Iteration: 12, Func. Count: 120, Neg. LLF: 98.23353257914576
Iteration: 13, Func. Count: 130, Neg. LLF: 98.20369796678378
Iteration: 14, Func. Count: 139, Neg. LLF: 98.17606719157308
Iteration: 15, Func. Count: 148, Neg. LLF: 98.1299556370247
Iteration: 16, Func. Count: 157, Neg. LLF: 98.12187744981622
Iteration: 17, Func. Count: 166, Neg. LLF: 98.1341441624026
Iteration: 18, Func. Count: 176, Neg. LLF: 98.11969928064481
Iteration: 19, Func. Count: 185, Neg. LLF: 98.11966210550324
Iteration: 20, Func. Count: 194, Neg. LLF: 98.11965778841598
Iteration: 21, Func. Count: 202, Neg. LLF: 98.11965778445725
Optimization terminated successfully (Exit mode 0)
Current function value: 98.11965778841598
Iterations: 21
Function evaluations: 202
Gradient evaluations: 21
Iteration: 1, Func. Count: 11, Neg. LLF: 99.96633305887889
Iteration: 2, Func. Count: 22, Neg. LLF: 172.0631134618258
Iteration: 3, Func. Count: 33, Neg. LLF: 209.14284434180163
Iteration: 4, Func. Count: 44, Neg. LLF: 102.08562932782972
Iteration: 5, Func. Count: 55, Neg. LLF: 99.79389728326521
Iteration: 6, Func. Count: 66, Neg. LLF: 101.0494272000805
Iteration: 7, Func. Count: 77, Neg. LLF: 100.04118235060095
Iteration: 8, Func. Count: 88, Neg. LLF: 99.81959553899821
Iteration: 9, Func. Count: 99, Neg. LLF: 99.68727877693284
Iteration: 10, Func. Count: 110, Neg. LLF: 98.31578794629952
Iteration: 11, Func. Count: 120, Neg. LLF: 98.96174968072329
Iteration: 12, Func. Count: 131, Neg. LLF: 98.44093828155579
Iteration: 13, Func. Count: 142, Neg. LLF: 98.22147515566768
Iteration: 14, Func. Count: 152, Neg. LLF: 98.22039579111946
Iteration: 15, Func. Count: 163, Neg. LLF: 98.18840259160929
Iteration: 16, Func. Count: 173, Neg. LLF: 98.15074322865284
Iteration: 17, Func. Count: 183, Neg. LLF: 98.12874319078577
Iteration: 18, Func. Count: 193, Neg. LLF: 98.12985380746873
Iteration: 19, Func. Count: 204, Neg. LLF: 98.1229823842879
Iteration: 20, Func. Count: 215, Neg. LLF: 98.1178901341319
Iteration: 21, Func. Count: 225, Neg. LLF: 98.11786694256357
Iteration: 22, Func. Count: 235, Neg. LLF: 98.11786560732507
Iteration: 23, Func. Count: 244, Neg. LLF: 98.11786560301007
Optimization terminated successfully (Exit mode 0)
Current function value: 98.11786560732507
Iterations: 23
Function evaluations: 244
Gradient evaluations: 23
Iteration: 1, Func. Count: 8, Neg. LLF: 110.71954260437651
Iteration: 2, Func. Count: 17, Neg. LLF: 7169.245008639442
Iteration: 3, Func. Count: 25, Neg. LLF: 372519.6537171522
Iteration: 4, Func. Count: 33, Neg. LLF: 134.92853776630517
Iteration: 5, Func. Count: 41, Neg. LLF: 108.71467282384097
Iteration: 6, Func. Count: 49, Neg. LLF: 98.48457110943899
Iteration: 7, Func. Count: 56, Neg. LLF: 98.36847421162147
Iteration: 8, Func. Count: 63, Neg. LLF: 98.33819345807748
Iteration: 9, Func. Count: 70, Neg. LLF: 98.31998493975075
Iteration: 10, Func. Count: 77, Neg. LLF: 98.31790048921847
Iteration: 11, Func. Count: 84, Neg. LLF: 98.31778262907277
Iteration: 12, Func. Count: 91, Neg. LLF: 98.3177798725779
Iteration: 13, Func. Count: 98, Neg. LLF: 98.31777881557147
Iteration: 14, Func. Count: 104, Neg. LLF: 98.31777883506274
Optimization terminated successfully (Exit mode 0)
Current function value: 98.31777881557147
Iterations: 14
Function evaluations: 104
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 121.09969394747999
Iteration: 2, Func. Count: 18, Neg. LLF: 115.25952755006057
Iteration: 3, Func. Count: 27, Neg. LLF: 107.90456428687595
Iteration: 4, Func. Count: 36, Neg. LLF: 98.741790540935
Iteration: 5, Func. Count: 44, Neg. LLF: 98.76165117894388
Iteration: 6, Func. Count: 53, Neg. LLF: 98.43283417804
Iteration: 7, Func. Count: 61, Neg. LLF: 98.34873490380147
Iteration: 8, Func. Count: 69, Neg. LLF: 98.33316021740922
Iteration: 9, Func. Count: 77, Neg. LLF: 98.32237813303169
Iteration: 10, Func. Count: 85, Neg. LLF: 98.31897256015104
Iteration: 11, Func. Count: 93, Neg. LLF: 98.317858804474
Iteration: 12, Func. Count: 101, Neg. LLF: 98.31779228566309
Iteration: 13, Func. Count: 109, Neg. LLF: 98.3177786109301
Iteration: 14, Func. Count: 116, Neg. LLF: 98.31777861549004
Optimization terminated successfully (Exit mode 0)
Current function value: 98.3177786109301
Iterations: 14
Function evaluations: 116
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 100.65374206795603
Iteration: 2, Func. Count: 20, Neg. LLF: 146.08818630145365
Iteration: 3, Func. Count: 30, Neg. LLF: 123.60593660924022
Iteration: 4, Func. Count: 40, Neg. LLF: 98.72396284162649
Iteration: 5, Func. Count: 49, Neg. LLF: 106.50955051326353
Iteration: 6, Func. Count: 59, Neg. LLF: 98.7947572842417
Iteration: 7, Func. Count: 69, Neg. LLF: 98.33013554078846
Iteration: 8, Func. Count: 78, Neg. LLF: 98.32196337824473
Iteration: 9, Func. Count: 87, Neg. LLF: 98.31809384438249
Iteration: 10, Func. Count: 96, Neg. LLF: 98.3177869909388
Iteration: 11, Func. Count: 105, Neg. LLF: 98.31777830448593
Iteration: 12, Func. Count: 113, Neg. LLF: 98.31777834563458
Optimization terminated successfully (Exit mode 0)
Current function value: 98.31777830448593
Iterations: 12
Function evaluations: 113
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 100.10673479193603
Iteration: 2, Func. Count: 22, Neg. LLF: 166.58934622657324
Iteration: 3, Func. Count: 33, Neg. LLF: 188.00826106219628
Iteration: 4, Func. Count: 44, Neg. LLF: 101.85901570003064
Iteration: 5, Func. Count: 55, Neg. LLF: 100.36410132400451
Iteration: 6, Func. Count: 66, Neg. LLF: 99.8801499088972
Iteration: 7, Func. Count: 77, Neg. LLF: 99.71617258906016
Iteration: 8, Func. Count: 88, Neg. LLF: 99.63265419536572
Iteration: 9, Func. Count: 99, Neg. LLF: 100.76518821707204
Iteration: 10, Func. Count: 110, Neg. LLF: 100.44622330617416
Iteration: 11, Func. Count: 122, Neg. LLF: 98.36174355860986
Iteration: 12, Func. Count: 133, Neg. LLF: 98.25041731617762
Iteration: 13, Func. Count: 143, Neg. LLF: 98.23928340402355
Iteration: 14, Func. Count: 153, Neg. LLF: 98.22596536128165
Iteration: 15, Func. Count: 163, Neg. LLF: 98.34713231368521
Iteration: 16, Func. Count: 175, Neg. LLF: 98.26255607971383
Iteration: 17, Func. Count: 186, Neg. LLF: 98.15072579576994
Iteration: 18, Func. Count: 196, Neg. LLF: 98.13062923734655
Iteration: 19, Func. Count: 206, Neg. LLF: 98.16094496523637
Iteration: 20, Func. Count: 217, Neg. LLF: 98.12025266800929
Iteration: 21, Func. Count: 227, Neg. LLF: 98.11969181227093
Iteration: 22, Func. Count: 237, Neg. LLF: 98.11965856944055
Iteration: 23, Func. Count: 247, Neg. LLF: 98.11965775641796
Optimization terminated successfully (Exit mode 0)
Current function value: 98.11965775641796
Iterations: 23
Function evaluations: 247
Gradient evaluations: 23
Iteration: 1, Func. Count: 12, Neg. LLF: 100.17058024812647
Iteration: 2, Func. Count: 24, Neg. LLF: 157.39862546486606
Iteration: 3, Func. Count: 36, Neg. LLF: 249.8721324336265
Iteration: 4, Func. Count: 48, Neg. LLF: 102.72853685713447
Iteration: 5, Func. Count: 60, Neg. LLF: 100.20894119768072
Iteration: 6, Func. Count: 72, Neg. LLF: 101.95340643174255
Iteration: 7, Func. Count: 84, Neg. LLF: 100.35264771705972
Iteration: 8, Func. Count: 96, Neg. LLF: 100.17234855401065
Iteration: 9, Func. Count: 108, Neg. LLF: 99.96520042654872
Iteration: 10, Func. Count: 120, Neg. LLF: 98.44708525817138
Iteration: 11, Func. Count: 132, Neg. LLF: 98.40922112662699
Iteration: 12, Func. Count: 144, Neg. LLF: 98.3526624597861
Iteration: 13, Func. Count: 156, Neg. LLF: 98.262606465932
Iteration: 14, Func. Count: 167, Neg. LLF: 98.244496990584
Iteration: 15, Func. Count: 178, Neg. LLF: 98.23064886983867
Iteration: 16, Func. Count: 189, Neg. LLF: 98.20335606454866
Iteration: 17, Func. Count: 200, Neg. LLF: 98.15446189222344
Iteration: 18, Func. Count: 211, Neg. LLF: 99.45467284257921
Iteration: 19, Func. Count: 224, Neg. LLF: 98.11977086557624
Iteration: 20, Func. Count: 235, Neg. LLF: 98.11792848436278
Iteration: 21, Func. Count: 246, Neg. LLF: 98.11786588016601
Iteration: 22, Func. Count: 256, Neg. LLF: 98.1178658755952
Optimization terminated successfully (Exit mode 0)
Current function value: 98.11786588016601
Iterations: 22
Function evaluations: 256
Gradient evaluations: 22
Iteration: 1, Func. Count: 9, Neg. LLF: 101.00366893645948
Iteration: 2, Func. Count: 18, Neg. LLF: 21171.018679717494
Iteration: 3, Func. Count: 27, Neg. LLF: 9378839.732869117
Iteration: 4, Func. Count: 36, Neg. LLF: 1239.3891403130701
Iteration: 5, Func. Count: 45, Neg. LLF: 1289.283995127711
Iteration: 6, Func. Count: 54, Neg. LLF: 101.69763680068822
Iteration: 7, Func. Count: 63, Neg. LLF: 95.8990569645108
Iteration: 8, Func. Count: 72, Neg. LLF: 95.5230463958385
Iteration: 9, Func. Count: 81, Neg. LLF: 96.07532492295195
Iteration: 10, Func. Count: 91, Neg. LLF: 95.46613958074346
Iteration: 11, Func. Count: 99, Neg. LLF: 95.45926514367856
Iteration: 12, Func. Count: 107, Neg. LLF: 95.45912519749088
Iteration: 13, Func. Count: 115, Neg. LLF: 95.45882500426589
Iteration: 14, Func. Count: 123, Neg. LLF: 95.45856417596855
Iteration: 15, Func. Count: 131, Neg. LLF: 95.45848992119394
Iteration: 16, Func. Count: 139, Neg. LLF: 95.45848758262179
Iteration: 17, Func. Count: 146, Neg. LLF: 95.45848758262085
Optimization terminated successfully (Exit mode 0)
Current function value: 95.45848758262179
Iterations: 17
Function evaluations: 146
Gradient evaluations: 17
Iteration: 1, Func. Count: 10, Neg. LLF: 11320.283518544395
Iteration: 2, Func. Count: 20, Neg. LLF: 133.7856469628859
Iteration: 3, Func. Count: 30, Neg. LLF: 98.07760474794367
Iteration: 4, Func. Count: 40, Neg. LLF: 106.0544371471223
Iteration: 5, Func. Count: 50, Neg. LLF: 102.50564937788086
Iteration: 6, Func. Count: 60, Neg. LLF: 96.82698882667337
Iteration: 7, Func. Count: 70, Neg. LLF: 98.02782896976791
Iteration: 8, Func. Count: 80, Neg. LLF: 96.45729813924115
Iteration: 9, Func. Count: 90, Neg. LLF: 95.62735611907723
Iteration: 10, Func. Count: 99, Neg. LLF: 95.53848168621845
Iteration: 11, Func. Count: 108, Neg. LLF: 98.07137223864761
Iteration: 12, Func. Count: 119, Neg. LLF: 97.78989284173159
Iteration: 13, Func. Count: 130, Neg. LLF: 95.47809183145083
Iteration: 14, Func. Count: 139, Neg. LLF: 95.46406760293725
Iteration: 15, Func. Count: 148, Neg. LLF: 95.46066690087575
Iteration: 16, Func. Count: 157, Neg. LLF: 95.45927420828315
Iteration: 17, Func. Count: 166, Neg. LLF: 95.45854249093792
Iteration: 18, Func. Count: 175, Neg. LLF: 95.45849343759424
Iteration: 19, Func. Count: 184, Neg. LLF: 95.45848773143085
Iteration: 20, Func. Count: 192, Neg. LLF: 95.45848780535432
Optimization terminated successfully (Exit mode 0)
Current function value: 95.45848773143085
Iterations: 20
Function evaluations: 192
Gradient evaluations: 20
Iteration: 1, Func. Count: 11, Neg. LLF: 118.62390628719128
Iteration: 2, Func. Count: 22, Neg. LLF: 208.35666273218743
Iteration: 3, Func. Count: 34, Neg. LLF: 305.83238928118624
Iteration: 4, Func. Count: 45, Neg. LLF: 96.89237886182208
Iteration: 5, Func. Count: 56, Neg. LLF: 96.52414737588396
Iteration: 6, Func. Count: 67, Neg. LLF: 95.91789081394633
Iteration: 7, Func. Count: 78, Neg. LLF: 96.03168486808045
Iteration: 8, Func. Count: 90, Neg. LLF: 99.13370597441877
Iteration: 9, Func. Count: 101, Neg. LLF: 95.51633619311805
Iteration: 10, Func. Count: 112, Neg. LLF: 96.55409265907255
Iteration: 11, Func. Count: 123, Neg. LLF: 95.34419130498556
Iteration: 12, Func. Count: 133, Neg. LLF: 95.33362748307
Iteration: 13, Func. Count: 143, Neg. LLF: 95.3281500671984
Iteration: 14, Func. Count: 153, Neg. LLF: 95.3273692036156
Iteration: 15, Func. Count: 163, Neg. LLF: 95.32722396384
Iteration: 16, Func. Count: 173, Neg. LLF: 95.32722176049245
Iteration: 17, Func. Count: 182, Neg. LLF: 95.3272217604765
Optimization terminated successfully (Exit mode 0)
Current function value: 95.32722176049245
Iterations: 17
Function evaluations: 182
Gradient evaluations: 17
Iteration: 1, Func. Count: 12, Neg. LLF: 115.17125294774917
Iteration: 2, Func. Count: 24, Neg. LLF: 207.61793516084356
Iteration: 3, Func. Count: 37, Neg. LLF: 244.84141543634382
Iteration: 4, Func. Count: 49, Neg. LLF: 96.53298268623368
Iteration: 5, Func. Count: 61, Neg. LLF: 95.83978011034664
Iteration: 6, Func. Count: 73, Neg. LLF: 95.15531585236401
Iteration: 7, Func. Count: 84, Neg. LLF: 99.32777373321139
Iteration: 8, Func. Count: 97, Neg. LLF: 120.77739751502794
Iteration: 9, Func. Count: 109, Neg. LLF: 97.9357876328751
Iteration: 10, Func. Count: 121, Neg. LLF: 94.90809975530898
Iteration: 11, Func. Count: 133, Neg. LLF: 94.77543104560702
Iteration: 12, Func. Count: 144, Neg. LLF: 94.77015224647243
Iteration: 13, Func. Count: 155, Neg. LLF: 94.765565327216
Iteration: 14, Func. Count: 166, Neg. LLF: 94.76522530776262
Iteration: 15, Func. Count: 177, Neg. LLF: 94.7650816149188
Iteration: 16, Func. Count: 188, Neg. LLF: 94.76505419654593
Iteration: 17, Func. Count: 199, Neg. LLF: 94.76505353637707
Optimization terminated successfully (Exit mode 0)
Current function value: 94.76505353637707
Iterations: 17
Function evaluations: 199
Gradient evaluations: 17
Iteration: 1, Func. Count: 13, Neg. LLF: 114.31006233192765
Iteration: 2, Func. Count: 26, Neg. LLF: 199.4421020557404
Iteration: 3, Func. Count: 40, Neg. LLF: 196.26503292234727
Iteration: 4, Func. Count: 53, Neg. LLF: 99.45537464169864
Iteration: 5, Func. Count: 66, Neg. LLF: 100.03733392727044
Iteration: 6, Func. Count: 80, Neg. LLF: 95.5701217132763
Iteration: 7, Func. Count: 92, Neg. LLF: 95.97558161816087
Iteration: 8, Func. Count: 105, Neg. LLF: 96.79270779092586
Iteration: 9, Func. Count: 120, Neg. LLF: 105.29314648641764
Iteration: 10, Func. Count: 133, Neg. LLF: 94.87447900206651
Iteration: 11, Func. Count: 145, Neg. LLF: 94.80568178412274
Iteration: 12, Func. Count: 157, Neg. LLF: 94.76997479452223
Iteration: 13, Func. Count: 169, Neg. LLF: 94.76590896174433
Iteration: 14, Func. Count: 181, Neg. LLF: 94.76527075198813
Iteration: 15, Func. Count: 193, Neg. LLF: 94.76508956574575
Iteration: 16, Func. Count: 205, Neg. LLF: 94.76505596422817
Iteration: 17, Func. Count: 217, Neg. LLF: 94.76505398740427
Iteration: 18, Func. Count: 228, Neg. LLF: 94.76505405204172
Optimization terminated successfully (Exit mode 0)
Current function value: 94.76505398740427
Iterations: 18
Function evaluations: 228
Gradient evaluations: 18
Iteration: 1, Func. Count: 10, Neg. LLF: 101.73212814623692
Iteration: 2, Func. Count: 21, Neg. LLF: 2481620.6316119656
Iteration: 3, Func. Count: 31, Neg. LLF: 5785104.712016528
Iteration: 4, Func. Count: 41, Neg. LLF: 97.38667361727046
Iteration: 5, Func. Count: 51, Neg. LLF: 544.2961383697993
Iteration: 6, Func. Count: 62, Neg. LLF: 98.56684316741035
Iteration: 7, Func. Count: 72, Neg. LLF: 95.3582545205694
Iteration: 8, Func. Count: 81, Neg. LLF: 98.35764767819889
Iteration: 9, Func. Count: 91, Neg. LLF: 101.68258146136556
Iteration: 10, Func. Count: 103, Neg. LLF: 95.2030513131076
Iteration: 11, Func. Count: 112, Neg. LLF: 95.175733633089
Iteration: 12, Func. Count: 121, Neg. LLF: 95.15257324997076
Iteration: 13, Func. Count: 130, Neg. LLF: 95.14164296251165
Iteration: 14, Func. Count: 139, Neg. LLF: 95.13314733495302
Iteration: 15, Func. Count: 148, Neg. LLF: 95.13270532440131
Iteration: 16, Func. Count: 157, Neg. LLF: 95.1326029226943
Iteration: 17, Func. Count: 166, Neg. LLF: 95.13257033999307
Iteration: 18, Func. Count: 174, Neg. LLF: 95.13257026358964
Optimization terminated successfully (Exit mode 0)
Current function value: 95.13257033999307
Iterations: 18
Function evaluations: 174
Gradient evaluations: 18
Iteration: 1, Func. Count: 11, Neg. LLF: 104.48469856009197
Iteration: 2, Func. Count: 22, Neg. LLF: 138.4569166772748
Iteration: 3, Func. Count: 33, Neg. LLF: 113.9061732406055
Iteration: 4, Func. Count: 44, Neg. LLF: 105.76325042882867
Iteration: 5, Func. Count: 55, Neg. LLF: 97.6781416099186
Iteration: 6, Func. Count: 66, Neg. LLF: 97.08044044935701
Iteration: 7, Func. Count: 77, Neg. LLF: 95.77798494895804
Iteration: 8, Func. Count: 88, Neg. LLF: 95.21514442796278
Iteration: 9, Func. Count: 98, Neg. LLF: 97.43153780394044
Iteration: 10, Func. Count: 109, Neg. LLF: 95.55379668728321
Iteration: 11, Func. Count: 120, Neg. LLF: 95.14273966679585
Iteration: 12, Func. Count: 130, Neg. LLF: 95.13754571776039
Iteration: 13, Func. Count: 140, Neg. LLF: 95.1350351863708
Iteration: 14, Func. Count: 150, Neg. LLF: 95.1330311159029
Iteration: 15, Func. Count: 160, Neg. LLF: 95.1327918807532
Iteration: 16, Func. Count: 170, Neg. LLF: 95.13260170962553
Iteration: 17, Func. Count: 180, Neg. LLF: 95.13257213364301
Iteration: 18, Func. Count: 190, Neg. LLF: 95.1325700127656
Iteration: 19, Func. Count: 199, Neg. LLF: 95.13257010049395
Optimization terminated successfully (Exit mode 0)
Current function value: 95.1325700127656
Iterations: 19
Function evaluations: 199
Gradient evaluations: 19
Iteration: 1, Func. Count: 12, Neg. LLF: 102.23348022743977
Iteration: 2, Func. Count: 24, Neg. LLF: 140.65399803879515
Iteration: 3, Func. Count: 36, Neg. LLF: 134.547787791444
Iteration: 4, Func. Count: 48, Neg. LLF: 103.95236521528896
Iteration: 5, Func. Count: 60, Neg. LLF: 101.70824296634704
Iteration: 6, Func. Count: 72, Neg. LLF: 95.31281656012766
Iteration: 7, Func. Count: 83, Neg. LLF: 96.57739855973246
Iteration: 8, Func. Count: 95, Neg. LLF: 100.20071388061434
Iteration: 9, Func. Count: 109, Neg. LLF: 95.64936873902968
Iteration: 10, Func. Count: 121, Neg. LLF: 95.32259764930889
Iteration: 11, Func. Count: 133, Neg. LLF: 95.06145300493137
Iteration: 12, Func. Count: 144, Neg. LLF: 95.05336633179235
Iteration: 13, Func. Count: 155, Neg. LLF: 95.05014381925943
Iteration: 14, Func. Count: 166, Neg. LLF: 95.04933084991713
Iteration: 15, Func. Count: 177, Neg. LLF: 95.04886108346616
Iteration: 16, Func. Count: 188, Neg. LLF: 95.04884964100636
Iteration: 17, Func. Count: 199, Neg. LLF: 95.04884334706604
Iteration: 18, Func. Count: 209, Neg. LLF: 95.04884334705923
Optimization terminated successfully (Exit mode 0)
Current function value: 95.04884334706604
Iterations: 18
Function evaluations: 209
Gradient evaluations: 18
Iteration: 1, Func. Count: 13, Neg. LLF: 100.67482614368316
Iteration: 2, Func. Count: 26, Neg. LLF: 121.82324129616607
Iteration: 3, Func. Count: 40, Neg. LLF: 1036.264565452401
Iteration: 4, Func. Count: 53, Neg. LLF: 106.70832879564081
Iteration: 5, Func. Count: 66, Neg. LLF: 97.37726109793384
Iteration: 6, Func. Count: 79, Neg. LLF: 95.30852719925409
Iteration: 7, Func. Count: 91, Neg. LLF: 95.42420966732517
Iteration: 8, Func. Count: 104, Neg. LLF: 96.32272871847455
Iteration: 9, Func. Count: 119, Neg. LLF: 123.68350233382434
Iteration: 10, Func. Count: 132, Neg. LLF: 94.88924700365806
Iteration: 11, Func. Count: 144, Neg. LLF: 94.6916570446499
Iteration: 12, Func. Count: 156, Neg. LLF: 94.67743414215171
Iteration: 13, Func. Count: 168, Neg. LLF: 94.67966215018573
Iteration: 14, Func. Count: 181, Neg. LLF: 94.67297624801868
Iteration: 15, Func. Count: 193, Neg. LLF: 94.67262563534479
Iteration: 16, Func. Count: 205, Neg. LLF: 94.67249579450191
Iteration: 17, Func. Count: 217, Neg. LLF: 94.67239008293188
Iteration: 18, Func. Count: 229, Neg. LLF: 94.67237264026977
Iteration: 19, Func. Count: 241, Neg. LLF: 94.67237025931894
Iteration: 20, Func. Count: 252, Neg. LLF: 94.67237024740365
Optimization terminated successfully (Exit mode 0)
Current function value: 94.67237025931894
Iterations: 20
Function evaluations: 252
Gradient evaluations: 20
Iteration: 1, Func. Count: 14, Neg. LLF: 100.34245692381654
Iteration: 2, Func. Count: 28, Neg. LLF: 117.09358782306745
Iteration: 3, Func. Count: 43, Neg. LLF: 396.5421723228037
Iteration: 4, Func. Count: 57, Neg. LLF: 106.78746734941366
Iteration: 5, Func. Count: 71, Neg. LLF: 96.945391836667
Iteration: 6, Func. Count: 85, Neg. LLF: 95.70101564964286
Iteration: 7, Func. Count: 99, Neg. LLF: 95.59231015494468
Iteration: 8, Func. Count: 113, Neg. LLF: 95.45694768232312
Iteration: 9, Func. Count: 127, Neg. LLF: 95.72515995277503
Iteration: 10, Func. Count: 141, Neg. LLF: 94.71229735125762
Iteration: 11, Func. Count: 154, Neg. LLF: 94.68324409087445
Iteration: 12, Func. Count: 167, Neg. LLF: 94.67435431990839
Iteration: 13, Func. Count: 180, Neg. LLF: 94.67331353484026
Iteration: 14, Func. Count: 193, Neg. LLF: 94.67279648754585
Iteration: 15, Func. Count: 206, Neg. LLF: 94.6724038958993
Iteration: 16, Func. Count: 219, Neg. LLF: 94.67237239836582
Iteration: 17, Func. Count: 232, Neg. LLF: 94.67237016327749
Iteration: 18, Func. Count: 244, Neg. LLF: 94.67237022671861
Optimization terminated successfully (Exit mode 0)
Current function value: 94.67237016327749
Iterations: 18
Function evaluations: 244
Gradient evaluations: 18
Iteration: 1, Func. Count: 11, Neg. LLF: 103.0639488275876
Iteration: 2, Func. Count: 23, Neg. LLF: 271.57001257455863
Iteration: 3, Func. Count: 34, Neg. LLF: 6209564.837817308
Iteration: 4, Func. Count: 45, Neg. LLF: 1916026.2955919805
Iteration: 5, Func. Count: 56, Neg. LLF: 99.35319435482793
Iteration: 6, Func. Count: 67, Neg. LLF: 97.75059025178712
Iteration: 7, Func. Count: 78, Neg. LLF: 127.3208151922339
Iteration: 8, Func. Count: 89, Neg. LLF: 95.12260102325686
Iteration: 9, Func. Count: 99, Neg. LLF: 96.7467499578068
Iteration: 10, Func. Count: 110, Neg. LLF: 100.56633386288449
Iteration: 11, Func. Count: 123, Neg. LLF: 96.18092198473613
Iteration: 12, Func. Count: 134, Neg. LLF: 94.94221468246766
Iteration: 13, Func. Count: 144, Neg. LLF: 94.92893922238724
Iteration: 14, Func. Count: 154, Neg. LLF: 94.87534488071421
Iteration: 15, Func. Count: 164, Neg. LLF: 94.86064481192167
Iteration: 16, Func. Count: 174, Neg. LLF: 94.85616919902215
Iteration: 17, Func. Count: 184, Neg. LLF: 94.85343038323968
Iteration: 18, Func. Count: 194, Neg. LLF: 94.85233088637746
Iteration: 19, Func. Count: 204, Neg. LLF: 94.8519195882292
Iteration: 20, Func. Count: 214, Neg. LLF: 94.85187103450427
Iteration: 21, Func. Count: 224, Neg. LLF: 94.85186718583972
Iteration: 22, Func. Count: 233, Neg. LLF: 94.85186718584504
Optimization terminated successfully (Exit mode 0)
Current function value: 94.85186718583972
Iterations: 22
Function evaluations: 233
Gradient evaluations: 22
Iteration: 1, Func. Count: 12, Neg. LLF: 100.8063911573594
Iteration: 2, Func. Count: 24, Neg. LLF: 108.05843778738978
Iteration: 3, Func. Count: 37, Neg. LLF: 102.97803964617881
Iteration: 4, Func. Count: 49, Neg. LLF: 100.579068956514
Iteration: 5, Func. Count: 61, Neg. LLF: 95.90621107498868
Iteration: 6, Func. Count: 73, Neg. LLF: 97.29481877883184
Iteration: 7, Func. Count: 85, Neg. LLF: 94.87086486246638
Iteration: 8, Func. Count: 96, Neg. LLF: 98.3402695012001
Iteration: 9, Func. Count: 109, Neg. LLF: 94.85840541545187
Iteration: 10, Func. Count: 120, Neg. LLF: 94.85497297838373
Iteration: 11, Func. Count: 131, Neg. LLF: 94.85266201136685
Iteration: 12, Func. Count: 142, Neg. LLF: 94.8519250724194
Iteration: 13, Func. Count: 153, Neg. LLF: 94.85187085253418
Iteration: 14, Func. Count: 164, Neg. LLF: 94.85186719589258
Iteration: 15, Func. Count: 174, Neg. LLF: 94.85186728903717
Optimization terminated successfully (Exit mode 0)
Current function value: 94.85186719589258
Iterations: 15
Function evaluations: 174
Gradient evaluations: 15
Iteration: 1, Func. Count: 13, Neg. LLF: 99.33455487951589
Iteration: 2, Func. Count: 26, Neg. LLF: 110.40890016006091
Iteration: 3, Func. Count: 40, Neg. LLF: 1956778.1965749904
Iteration: 4, Func. Count: 53, Neg. LLF: 101.11180704304262
Iteration: 5, Func. Count: 66, Neg. LLF: 97.90177481536351
Iteration: 6, Func. Count: 79, Neg. LLF: 94.9978654953145
Iteration: 7, Func. Count: 91, Neg. LLF: 99.01012297968497
Iteration: 8, Func. Count: 104, Neg. LLF: 96.33799285286858
Iteration: 9, Func. Count: 117, Neg. LLF: 94.85689801099218
Iteration: 10, Func. Count: 129, Neg. LLF: 94.85446050910797
Iteration: 11, Func. Count: 141, Neg. LLF: 94.85309805477107
Iteration: 12, Func. Count: 153, Neg. LLF: 94.85196000296962
Iteration: 13, Func. Count: 165, Neg. LLF: 94.8519035545181
Iteration: 14, Func. Count: 177, Neg. LLF: 94.85188155535434
Iteration: 15, Func. Count: 189, Neg. LLF: 94.85186899155579
Iteration: 16, Func. Count: 201, Neg. LLF: 94.85186727364001
Iteration: 17, Func. Count: 212, Neg. LLF: 94.85186730387916
Optimization terminated successfully (Exit mode 0)
Current function value: 94.85186727364001
Iterations: 17
Function evaluations: 212
Gradient evaluations: 17
Iteration: 1, Func. Count: 14, Neg. LLF: 98.4839561123582
Iteration: 2, Func. Count: 28, Neg. LLF: 124.77711037145367
Iteration: 3, Func. Count: 42, Neg. LLF: 697.8766819470088
Iteration: 4, Func. Count: 56, Neg. LLF: 329.932817201022
Iteration: 5, Func. Count: 70, Neg. LLF: 95.43373048087554
Iteration: 6, Func. Count: 84, Neg. LLF: 96.5925079338492
Iteration: 7, Func. Count: 98, Neg. LLF: 96.9595448891853
Iteration: 8, Func. Count: 112, Neg. LLF: 94.9261788291715
Iteration: 9, Func. Count: 125, Neg. LLF: 96.9117419502314
Iteration: 10, Func. Count: 139, Neg. LLF: 95.9362259928258
Iteration: 11, Func. Count: 153, Neg. LLF: 94.85706926821065
Iteration: 12, Func. Count: 167, Neg. LLF: 94.81094985416043
Iteration: 13, Func. Count: 180, Neg. LLF: 94.80893842637737
Iteration: 14, Func. Count: 193, Neg. LLF: 94.80591539859422
Iteration: 15, Func. Count: 206, Neg. LLF: 94.80444841398176
Iteration: 16, Func. Count: 219, Neg. LLF: 94.80422134562748
Iteration: 17, Func. Count: 232, Neg. LLF: 94.80419568603033
Iteration: 18, Func. Count: 245, Neg. LLF: 94.80419308283146
Iteration: 19, Func. Count: 257, Neg. LLF: 94.80419308283221
Optimization terminated successfully (Exit mode 0)
Current function value: 94.80419308283146
Iterations: 19
Function evaluations: 257
Gradient evaluations: 19
Iteration: 1, Func. Count: 15, Neg. LLF: 98.32810250331964
Iteration: 2, Func. Count: 30, Neg. LLF: 125.11969004397706
Iteration: 3, Func. Count: 45, Neg. LLF: 125.9455810801577
Iteration: 4, Func. Count: 60, Neg. LLF: 6497887.098220621
Iteration: 5, Func. Count: 75, Neg. LLF: 95.50282776399386
Iteration: 6, Func. Count: 90, Neg. LLF: 96.94679656188704
Iteration: 7, Func. Count: 105, Neg. LLF: 95.81432964136725
Iteration: 8, Func. Count: 120, Neg. LLF: 97.21444775556162
Iteration: 9, Func. Count: 136, Neg. LLF: 94.83737886298024
Iteration: 10, Func. Count: 150, Neg. LLF: 94.81562887558144
Iteration: 11, Func. Count: 164, Neg. LLF: 94.8095497309549
Iteration: 12, Func. Count: 178, Neg. LLF: 94.8069758626724
Iteration: 13, Func. Count: 192, Neg. LLF: 94.80582211201703
Iteration: 14, Func. Count: 206, Neg. LLF: 94.80472387926885
Iteration: 15, Func. Count: 220, Neg. LLF: 94.8042396250779
Iteration: 16, Func. Count: 234, Neg. LLF: 94.80419385631461
Iteration: 17, Func. Count: 248, Neg. LLF: 94.80419303366445
Optimization terminated successfully (Exit mode 0)
Current function value: 94.80419303366445
Iterations: 17
Function evaluations: 248
Gradient evaluations: 17
Iteration: 1, Func. Count: 8, Neg. LLF: 111.52091346953182
Iteration: 2, Func. Count: 17, Neg. LLF: 1206.7624292546589
Iteration: 3, Func. Count: 25, Neg. LLF: 385037.4342592957
Iteration: 4, Func. Count: 33, Neg. LLF: 1808.2888564981313
Iteration: 5, Func. Count: 41, Neg. LLF: 102.06215958194541
Iteration: 6, Func. Count: 49, Neg. LLF: 98.3648644701918
Iteration: 7, Func. Count: 56, Neg. LLF: 98.32315910929728
Iteration: 8, Func. Count: 63, Neg. LLF: 98.31813436192505
Iteration: 9, Func. Count: 70, Neg. LLF: 98.3179900788276
Iteration: 10, Func. Count: 77, Neg. LLF: 98.31778124688712
Iteration: 11, Func. Count: 84, Neg. LLF: 98.3177798468669
Iteration: 12, Func. Count: 90, Neg. LLF: 98.31777994619063
Optimization terminated successfully (Exit mode 0)
Current function value: 98.3177798468669
Iterations: 12
Function evaluations: 90
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 99.64381881461311
Iteration: 2, Func. Count: 17, Neg. LLF: 102.15106473910333
Iteration: 3, Func. Count: 26, Neg. LLF: 241.22347948723365
Iteration: 4, Func. Count: 35, Neg. LLF: 1960.355664528017
Iteration: 5, Func. Count: 44, Neg. LLF: 108.01468708185969
Iteration: 6, Func. Count: 53, Neg. LLF: 100.55437410751476
Iteration: 7, Func. Count: 62, Neg. LLF: 98.40669822867561
Iteration: 8, Func. Count: 70, Neg. LLF: 98.38794507879511
Iteration: 9, Func. Count: 79, Neg. LLF: 98.3909054134282
Iteration: 10, Func. Count: 88, Neg. LLF: 98.35590824702932
Iteration: 11, Func. Count: 97, Neg. LLF: 98.32440928508288
Iteration: 12, Func. Count: 105, Neg. LLF: 98.31833766723862
Iteration: 13, Func. Count: 113, Neg. LLF: 98.31790794646439
Iteration: 14, Func. Count: 121, Neg. LLF: 98.31779023038784
Iteration: 15, Func. Count: 129, Neg. LLF: 98.31777838862186
Iteration: 16, Func. Count: 136, Neg. LLF: 98.31777839304942
Optimization terminated successfully (Exit mode 0)
Current function value: 98.31777838862186
Iterations: 16
Function evaluations: 136
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 99.8239064036655
Iteration: 2, Func. Count: 19, Neg. LLF: 113.79491519919647
Iteration: 3, Func. Count: 29, Neg. LLF: 109.9879848243432
Iteration: 4, Func. Count: 39, Neg. LLF: 30326828.390060786
Iteration: 5, Func. Count: 49, Neg. LLF: 141.72010154781225
Iteration: 6, Func. Count: 59, Neg. LLF: 107.24385943957755
Iteration: 7, Func. Count: 69, Neg. LLF: 102.74997406008819
Iteration: 8, Func. Count: 79, Neg. LLF: 98.8185643214219
Iteration: 9, Func. Count: 89, Neg. LLF: 98.47121287984801
Iteration: 10, Func. Count: 99, Neg. LLF: 98.36153258070841
Iteration: 11, Func. Count: 108, Neg. LLF: 98.3371221308035
Iteration: 12, Func. Count: 117, Neg. LLF: 98.33160838229244
Iteration: 13, Func. Count: 126, Neg. LLF: 98.31927428516785
Iteration: 14, Func. Count: 135, Neg. LLF: 98.31806094424036
Iteration: 15, Func. Count: 144, Neg. LLF: 98.31779669533337
Iteration: 16, Func. Count: 153, Neg. LLF: 98.31777855736192
Iteration: 17, Func. Count: 161, Neg. LLF: 98.31777859850561
Optimization terminated successfully (Exit mode 0)
Current function value: 98.31777855736192
Iterations: 17
Function evaluations: 161
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 99.96692323302861
Iteration: 2, Func. Count: 21, Neg. LLF: 131.43710565179651
Iteration: 3, Func. Count: 32, Neg. LLF: 114.32663058622767
Iteration: 4, Func. Count: 43, Neg. LLF: 31125456.293429412
Iteration: 5, Func. Count: 54, Neg. LLF: 282.465151455498
Iteration: 6, Func. Count: 65, Neg. LLF: 101.70396568207806
Iteration: 7, Func. Count: 76, Neg. LLF: 99.65488298294655
Iteration: 8, Func. Count: 87, Neg. LLF: 98.55826906027514
Iteration: 9, Func. Count: 98, Neg. LLF: 98.40743407709192
Iteration: 10, Func. Count: 109, Neg. LLF: 98.38626636398493
Iteration: 11, Func. Count: 120, Neg. LLF: 98.32786647173404
Iteration: 12, Func. Count: 130, Neg. LLF: 98.32471368874255
Iteration: 13, Func. Count: 140, Neg. LLF: 98.31996342467903
Iteration: 14, Func. Count: 150, Neg. LLF: 98.31815724251055
Iteration: 15, Func. Count: 160, Neg. LLF: 98.31798129281042
Iteration: 16, Func. Count: 170, Neg. LLF: 98.31779452743243
Iteration: 17, Func. Count: 180, Neg. LLF: 98.31778017792116
Iteration: 18, Func. Count: 190, Neg. LLF: 98.31777825500629
Iteration: 19, Func. Count: 199, Neg. LLF: 98.31777825565175
Optimization terminated successfully (Exit mode 0)
Current function value: 98.31777825500629
Iterations: 19
Function evaluations: 199
Gradient evaluations: 19
Iteration: 1, Func. Count: 12, Neg. LLF: 99.96630188207286
Iteration: 2, Func. Count: 23, Neg. LLF: 115.70811940543649
Iteration: 3, Func. Count: 35, Neg. LLF: 1160.1715678190076
Iteration: 4, Func. Count: 47, Neg. LLF: 210.3909145302071
Iteration: 5, Func. Count: 59, Neg. LLF: 185.86540363767278
Iteration: 6, Func. Count: 71, Neg. LLF: 342.1159543558662
Iteration: 7, Func. Count: 83, Neg. LLF: 108.38487416074548
Iteration: 8, Func. Count: 95, Neg. LLF: 99.18784131078655
Iteration: 9, Func. Count: 107, Neg. LLF: 98.36566007223998
Iteration: 10, Func. Count: 118, Neg. LLF: 98.41996085177557
Iteration: 11, Func. Count: 130, Neg. LLF: 98.400914596106
Iteration: 12, Func. Count: 142, Neg. LLF: 98.3221704407105
Iteration: 13, Func. Count: 153, Neg. LLF: 98.32067962259336
Iteration: 14, Func. Count: 164, Neg. LLF: 98.31986186003654
Iteration: 15, Func. Count: 175, Neg. LLF: 98.31892755845512
Iteration: 16, Func. Count: 186, Neg. LLF: 98.31788048313717
Iteration: 17, Func. Count: 197, Neg. LLF: 98.31779454322077
Iteration: 18, Func. Count: 208, Neg. LLF: 98.31777818985181
Iteration: 19, Func. Count: 218, Neg. LLF: 98.3177781911933
Optimization terminated successfully (Exit mode 0)
Current function value: 98.31777818985181
Iterations: 19
Function evaluations: 218
Gradient evaluations: 19
Iteration: 1, Func. Count: 9, Neg. LLF: 111.47378293882909
Iteration: 2, Func. Count: 19, Neg. LLF: 2641.932751232178
Iteration: 3, Func. Count: 28, Neg. LLF: 1319786.70805058
Iteration: 4, Func. Count: 37, Neg. LLF: 1484.221983954296
Iteration: 5, Func. Count: 46, Neg. LLF: 102.62739870400722
Iteration: 6, Func. Count: 55, Neg. LLF: 98.37493862227201
Iteration: 7, Func. Count: 63, Neg. LLF: 98.32401189547481
Iteration: 8, Func. Count: 71, Neg. LLF: 98.31821722871035
Iteration: 9, Func. Count: 79, Neg. LLF: 98.31804219210184
Iteration: 10, Func. Count: 87, Neg. LLF: 98.31777933977332
Iteration: 11, Func. Count: 95, Neg. LLF: 98.31777828910346
Iteration: 12, Func. Count: 102, Neg. LLF: 98.31777830859639
Optimization terminated successfully (Exit mode 0)
Current function value: 98.31777828910346
Iterations: 12
Function evaluations: 102
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 119.0492853090775
Iteration: 2, Func. Count: 20, Neg. LLF: 139.05825520902187
Iteration: 3, Func. Count: 30, Neg. LLF: 111.23615312431544
Iteration: 4, Func. Count: 40, Neg. LLF: 99.32894386166996
Iteration: 5, Func. Count: 50, Neg. LLF: 98.81486787732057
Iteration: 6, Func. Count: 60, Neg. LLF: 98.52004607964379
Iteration: 7, Func. Count: 70, Neg. LLF: 98.41067297208389
Iteration: 8, Func. Count: 79, Neg. LLF: 98.35032975478548
Iteration: 9, Func. Count: 88, Neg. LLF: 98.33605049456592
Iteration: 10, Func. Count: 97, Neg. LLF: 98.33125738136715
Iteration: 11, Func. Count: 106, Neg. LLF: 98.3209502200983
Iteration: 12, Func. Count: 115, Neg. LLF: 98.31878168773386
Iteration: 13, Func. Count: 124, Neg. LLF: 98.31787291897929
Iteration: 14, Func. Count: 133, Neg. LLF: 98.31778518155183
Iteration: 15, Func. Count: 142, Neg. LLF: 98.31777842334864
Iteration: 16, Func. Count: 150, Neg. LLF: 98.31777842787137
Optimization terminated successfully (Exit mode 0)
Current function value: 98.31777842334864
Iterations: 16
Function evaluations: 150
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 99.94436137680377
Iteration: 2, Func. Count: 22, Neg. LLF: 198.94806953210477
Iteration: 3, Func. Count: 33, Neg. LLF: 704.4432423193508
Iteration: 4, Func. Count: 44, Neg. LLF: 98.75201055219426
Iteration: 5, Func. Count: 54, Neg. LLF: 133.11175489310205
Iteration: 6, Func. Count: 65, Neg. LLF: 98.92271893591477
Iteration: 7, Func. Count: 77, Neg. LLF: 100.17566431665004
Iteration: 8, Func. Count: 88, Neg. LLF: 98.32462880103044
Iteration: 9, Func. Count: 98, Neg. LLF: 98.32004535394212
Iteration: 10, Func. Count: 108, Neg. LLF: 98.31792491436104
Iteration: 11, Func. Count: 118, Neg. LLF: 98.31783116401152
Iteration: 12, Func. Count: 128, Neg. LLF: 98.3177801623964
Iteration: 13, Func. Count: 138, Neg. LLF: 98.31777826518187
Iteration: 14, Func. Count: 147, Neg. LLF: 98.31777830631819
Optimization terminated successfully (Exit mode 0)
Current function value: 98.31777826518187
Iterations: 14
Function evaluations: 147
Gradient evaluations: 14
Iteration: 1, Func. Count: 12, Neg. LLF: 100.11950059375752
Iteration: 2, Func. Count: 24, Neg. LLF: 734.7683791831518
Iteration: 3, Func. Count: 36, Neg. LLF: 853.020388714818
Iteration: 4, Func. Count: 48, Neg. LLF: 101.85995162972432
Iteration: 5, Func. Count: 60, Neg. LLF: 100.65668435271101
Iteration: 6, Func. Count: 72, Neg. LLF: 103.45178141767938
Iteration: 7, Func. Count: 84, Neg. LLF: 100.40519394730163
Iteration: 8, Func. Count: 96, Neg. LLF: 100.06903438696129
Iteration: 9, Func. Count: 108, Neg. LLF: 99.70153664058779
Iteration: 10, Func. Count: 120, Neg. LLF: 99.5107074362232
Iteration: 11, Func. Count: 132, Neg. LLF: 98.30009979506595
Iteration: 12, Func. Count: 143, Neg. LLF: 98.2682947181978
Iteration: 13, Func. Count: 154, Neg. LLF: 98.28709223475039
Iteration: 14, Func. Count: 166, Neg. LLF: 98.22135126220785
Iteration: 15, Func. Count: 177, Neg. LLF: 98.37777411972874
Iteration: 16, Func. Count: 189, Neg. LLF: 98.17421382779638
Iteration: 17, Func. Count: 200, Neg. LLF: 98.14037759504184
Iteration: 18, Func. Count: 211, Neg. LLF: 98.1280925992434
Iteration: 19, Func. Count: 222, Neg. LLF: 98.1260071173823
Iteration: 20, Func. Count: 234, Neg. LLF: 98.11996880215783
Iteration: 21, Func. Count: 245, Neg. LLF: 98.11965999145046
Iteration: 22, Func. Count: 256, Neg. LLF: 98.11965774198991
Iteration: 23, Func. Count: 266, Neg. LLF: 98.11965773806341
Optimization terminated successfully (Exit mode 0)
Current function value: 98.11965774198991
Iterations: 23
Function evaluations: 266
Gradient evaluations: 23
Iteration: 1, Func. Count: 13, Neg. LLF: 100.0977571735417
Iteration: 2, Func. Count: 26, Neg. LLF: 36513.6891532485
Iteration: 3, Func. Count: 39, Neg. LLF: 857.6118124040268
Iteration: 4, Func. Count: 52, Neg. LLF: 102.36149796405515
Iteration: 5, Func. Count: 65, Neg. LLF: 103.31106592271831
Iteration: 6, Func. Count: 78, Neg. LLF: 102.73678420056966
Iteration: 7, Func. Count: 91, Neg. LLF: 100.763070913902
Iteration: 8, Func. Count: 104, Neg. LLF: 100.56819026467659
Iteration: 9, Func. Count: 117, Neg. LLF: 100.11009045638689
Iteration: 10, Func. Count: 130, Neg. LLF: 100.02637111283242
Iteration: 11, Func. Count: 143, Neg. LLF: 98.94159711863392
Iteration: 12, Func. Count: 156, Neg. LLF: 98.36555297509317
Iteration: 13, Func. Count: 168, Neg. LLF: 98.25492304871756
Iteration: 14, Func. Count: 180, Neg. LLF: 98.24784468056427
Iteration: 15, Func. Count: 192, Neg. LLF: 98.22412929766841
Iteration: 16, Func. Count: 204, Neg. LLF: 98.31962587495721
Iteration: 17, Func. Count: 217, Neg. LLF: 98.19287987730974
Iteration: 18, Func. Count: 230, Neg. LLF: 98.16192247853078
Iteration: 19, Func. Count: 242, Neg. LLF: 98.33300758796827
Iteration: 20, Func. Count: 255, Neg. LLF: 98.12170645470617
Iteration: 21, Func. Count: 267, Neg. LLF: 98.11815688423768
Iteration: 22, Func. Count: 279, Neg. LLF: 98.11787600854133
Iteration: 23, Func. Count: 291, Neg. LLF: 98.11786578096721
Iteration: 24, Func. Count: 302, Neg. LLF: 98.11786577642954
Optimization terminated successfully (Exit mode 0)
Current function value: 98.11786578096721
Iterations: 24
Function evaluations: 302
Gradient evaluations: 24
Iteration: 1, Func. Count: 10, Neg. LLF: 101.14313256965089
Iteration: 2, Func. Count: 20, Neg. LLF: 580.436893212116
Iteration: 3, Func. Count: 30, Neg. LLF: 9342268.992803166
Iteration: 4, Func. Count: 40, Neg. LLF: 2371.505331648551
Iteration: 5, Func. Count: 50, Neg. LLF: 19373.857281363707
Iteration: 6, Func. Count: 60, Neg. LLF: 100.37470657531681
Iteration: 7, Func. Count: 70, Neg. LLF: 96.18915227495854
Iteration: 8, Func. Count: 80, Neg. LLF: 95.91888408980984
Iteration: 9, Func. Count: 90, Neg. LLF: 96.51219756787508
Iteration: 10, Func. Count: 101, Neg. LLF: 95.46036264335115
Iteration: 11, Func. Count: 110, Neg. LLF: 95.45913297527136
Iteration: 12, Func. Count: 119, Neg. LLF: 95.45894273650839
Iteration: 13, Func. Count: 128, Neg. LLF: 95.4587252349763
Iteration: 14, Func. Count: 137, Neg. LLF: 95.45855083195272
Iteration: 15, Func. Count: 146, Neg. LLF: 95.45849395278651
Iteration: 16, Func. Count: 155, Neg. LLF: 95.4584877728036
Iteration: 17, Func. Count: 163, Neg. LLF: 95.45848777280196
Optimization terminated successfully (Exit mode 0)
Current function value: 95.4584877728036
Iterations: 17
Function evaluations: 163
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 519.7916749651381
Iteration: 2, Func. Count: 22, Neg. LLF: 132.6656714045577
Iteration: 3, Func. Count: 33, Neg. LLF: 131.47842229598453
Iteration: 4, Func. Count: 44, Neg. LLF: 118.91356134613014
Iteration: 5, Func. Count: 55, Neg. LLF: 99.99536735546005
Iteration: 6, Func. Count: 66, Neg. LLF: 96.20694469591899
Iteration: 7, Func. Count: 76, Neg. LLF: 95.86116965468668
Iteration: 8, Func. Count: 86, Neg. LLF: 96.7653925648856
Iteration: 9, Func. Count: 97, Neg. LLF: 97.24877244348714
Iteration: 10, Func. Count: 108, Neg. LLF: 123.18424090670443
Iteration: 11, Func. Count: 119, Neg. LLF: 95.59613223224243
Iteration: 12, Func. Count: 130, Neg. LLF: 95.4820676940052
Iteration: 13, Func. Count: 140, Neg. LLF: 95.46524745248253
Iteration: 14, Func. Count: 150, Neg. LLF: 95.45969570936406
Iteration: 15, Func. Count: 160, Neg. LLF: 95.45869894275448
Iteration: 16, Func. Count: 170, Neg. LLF: 95.45858959077819
Iteration: 17, Func. Count: 180, Neg. LLF: 95.45851024991175
Iteration: 18, Func. Count: 190, Neg. LLF: 95.45849027723412
Iteration: 19, Func. Count: 200, Neg. LLF: 95.45848766648483
Iteration: 20, Func. Count: 209, Neg. LLF: 95.45848774040466
Optimization terminated successfully (Exit mode 0)
Current function value: 95.45848766648483
Iterations: 20
Function evaluations: 209
Gradient evaluations: 20
Iteration: 1, Func. Count: 12, Neg. LLF: 110.9110264427051
Iteration: 2, Func. Count: 24, Neg. LLF: 150.4690882322141
Iteration: 3, Func. Count: 37, Neg. LLF: 229.9708654438113
Iteration: 4, Func. Count: 49, Neg. LLF: 134.7025477421892
Iteration: 5, Func. Count: 62, Neg. LLF: 96.05706590188049
Iteration: 6, Func. Count: 74, Neg. LLF: 95.50697559714337
Iteration: 7, Func. Count: 85, Neg. LLF: 98.53780203879141
Iteration: 8, Func. Count: 98, Neg. LLF: 96.39469407719119
Iteration: 9, Func. Count: 111, Neg. LLF: 96.61980418682771
Iteration: 10, Func. Count: 123, Neg. LLF: 95.75459358950744
Iteration: 11, Func. Count: 135, Neg. LLF: 95.35756458660069
Iteration: 12, Func. Count: 146, Neg. LLF: 95.33858235686547
Iteration: 13, Func. Count: 157, Neg. LLF: 95.32983674783276
Iteration: 14, Func. Count: 168, Neg. LLF: 95.32739482002658
Iteration: 15, Func. Count: 179, Neg. LLF: 95.32722351208508
Iteration: 16, Func. Count: 190, Neg. LLF: 95.32722157603718
Iteration: 17, Func. Count: 200, Neg. LLF: 95.32722157603882
Optimization terminated successfully (Exit mode 0)
Current function value: 95.32722157603718
Iterations: 17
Function evaluations: 200
Gradient evaluations: 17
Iteration: 1, Func. Count: 13, Neg. LLF: 109.78066061749331
Iteration: 2, Func. Count: 26, Neg. LLF: 151.3829553180624
Iteration: 3, Func. Count: 40, Neg. LLF: 353.7294560625816
Iteration: 4, Func. Count: 53, Neg. LLF: 127.8780322181331
Iteration: 5, Func. Count: 67, Neg. LLF: 96.84684820155634
Iteration: 6, Func. Count: 80, Neg. LLF: 95.79715039413865
Iteration: 7, Func. Count: 93, Neg. LLF: 95.06837939028787
Iteration: 8, Func. Count: 105, Neg. LLF: 97.34870269214176
Iteration: 9, Func. Count: 119, Neg. LLF: 97.25668291093719
Iteration: 10, Func. Count: 132, Neg. LLF: 94.81584258505168
Iteration: 11, Func. Count: 144, Neg. LLF: 94.79669738457753
Iteration: 12, Func. Count: 156, Neg. LLF: 94.78938581104444
Iteration: 13, Func. Count: 168, Neg. LLF: 94.77087683076962
Iteration: 14, Func. Count: 180, Neg. LLF: 94.76632310992468
Iteration: 15, Func. Count: 192, Neg. LLF: 94.76541543497582
Iteration: 16, Func. Count: 204, Neg. LLF: 94.76506656641924
Iteration: 17, Func. Count: 216, Neg. LLF: 94.76505515386461
Iteration: 18, Func. Count: 228, Neg. LLF: 94.76505325479933
Iteration: 19, Func. Count: 239, Neg. LLF: 94.76505323835755
Optimization terminated successfully (Exit mode 0)
Current function value: 94.76505325479933
Iterations: 19
Function evaluations: 239
Gradient evaluations: 19
Iteration: 1, Func. Count: 14, Neg. LLF: 108.43448865582867
Iteration: 2, Func. Count: 28, Neg. LLF: 148.16553114405872
Iteration: 3, Func. Count: 43, Neg. LLF: 213.95913291831084
Iteration: 4, Func. Count: 57, Neg. LLF: 137.7074355325511
Iteration: 5, Func. Count: 72, Neg. LLF: 100.18980774723263
Iteration: 6, Func. Count: 86, Neg. LLF: 95.5559858340512
Iteration: 7, Func. Count: 99, Neg. LLF: 95.12402486725813
Iteration: 8, Func. Count: 112, Neg. LLF: 96.56888700522909
Iteration: 9, Func. Count: 128, Neg. LLF: 98.33068521019636
Iteration: 10, Func. Count: 142, Neg. LLF: 94.8248111233605
Iteration: 11, Func. Count: 155, Neg. LLF: 94.77774827443612
Iteration: 12, Func. Count: 168, Neg. LLF: 94.76631296418049
Iteration: 13, Func. Count: 181, Neg. LLF: 94.76521236201293
Iteration: 14, Func. Count: 194, Neg. LLF: 94.76506702439829
Iteration: 15, Func. Count: 207, Neg. LLF: 94.76506081833702
Iteration: 16, Func. Count: 220, Neg. LLF: 94.76505713716686
Iteration: 17, Func. Count: 233, Neg. LLF: 94.76505375619185
Iteration: 18, Func. Count: 245, Neg. LLF: 94.76505382085314
Optimization terminated successfully (Exit mode 0)
Current function value: 94.76505375619185
Iterations: 18
Function evaluations: 245
Gradient evaluations: 18
Iteration: 1, Func. Count: 11, Neg. LLF: 102.15785937342787
Iteration: 2, Func. Count: 23, Neg. LLF: 2705116.9067598796
Iteration: 3, Func. Count: 34, Neg. LLF: 4968741.387492394
Iteration: 4, Func. Count: 45, Neg. LLF: 1162.973799172349
Iteration: 5, Func. Count: 56, Neg. LLF: 109.45566170239147
Iteration: 6, Func. Count: 67, Neg. LLF: 96.29715277112184
Iteration: 7, Func. Count: 78, Neg. LLF: 97.86117656226463
Iteration: 8, Func. Count: 89, Neg. LLF: 98.00462133220339
Iteration: 9, Func. Count: 100, Neg. LLF: 96.81649687101928
Iteration: 10, Func. Count: 111, Neg. LLF: 95.56368171084269
Iteration: 11, Func. Count: 122, Neg. LLF: 95.20298747432491
Iteration: 12, Func. Count: 132, Neg. LLF: 95.16312313259174
Iteration: 13, Func. Count: 142, Neg. LLF: 95.14428226231604
Iteration: 14, Func. Count: 152, Neg. LLF: 95.13471499350567
Iteration: 15, Func. Count: 162, Neg. LLF: 95.13266696148051
Iteration: 16, Func. Count: 172, Neg. LLF: 95.13257416856405
Iteration: 17, Func. Count: 182, Neg. LLF: 95.13257042881165
Iteration: 18, Func. Count: 191, Neg. LLF: 95.13257035238499
Optimization terminated successfully (Exit mode 0)
Current function value: 95.13257042881165
Iterations: 18
Function evaluations: 191
Gradient evaluations: 18
Iteration: 1, Func. Count: 12, Neg. LLF: 105.90569403061546
Iteration: 2, Func. Count: 24, Neg. LLF: 106.1132523953914
Iteration: 3, Func. Count: 37, Neg. LLF: 111.03538404719738
Iteration: 4, Func. Count: 50, Neg. LLF: 97.42781533577906
Iteration: 5, Func. Count: 62, Neg. LLF: 103.85601831798812
Iteration: 6, Func. Count: 74, Neg. LLF: 95.70609691779933
Iteration: 7, Func. Count: 85, Neg. LLF: 318990.72961907357
Iteration: 8, Func. Count: 98, Neg. LLF: 95.97755878619391
Iteration: 9, Func. Count: 110, Neg. LLF: 95.16745451856298
Iteration: 10, Func. Count: 121, Neg. LLF: 95.14159832020195
Iteration: 11, Func. Count: 132, Neg. LLF: 95.13470309579967
Iteration: 12, Func. Count: 143, Neg. LLF: 95.13325003032745
Iteration: 13, Func. Count: 154, Neg. LLF: 95.13261549729275
Iteration: 14, Func. Count: 165, Neg. LLF: 95.13257064774773
Iteration: 15, Func. Count: 176, Neg. LLF: 95.13257011812955
Optimization terminated successfully (Exit mode 0)
Current function value: 95.13257011812955
Iterations: 15
Function evaluations: 176
Gradient evaluations: 15
Iteration: 1, Func. Count: 13, Neg. LLF: 99.29668829876695
Iteration: 2, Func. Count: 26, Neg. LLF: 104.6091613981992
Iteration: 3, Func. Count: 40, Neg. LLF: 1130.0792039408386
Iteration: 4, Func. Count: 53, Neg. LLF: 145.5107068447028
Iteration: 5, Func. Count: 67, Neg. LLF: 96.26678914296815
Iteration: 6, Func. Count: 80, Neg. LLF: 97.77884877618118
Iteration: 7, Func. Count: 93, Neg. LLF: 96.72590802124009
Iteration: 8, Func. Count: 106, Neg. LLF: 95.17112388133587
Iteration: 9, Func. Count: 118, Neg. LLF: 95.83666709135825
Iteration: 10, Func. Count: 131, Neg. LLF: 97.49670012840662
Iteration: 11, Func. Count: 144, Neg. LLF: 95.05890898938156
Iteration: 12, Func. Count: 156, Neg. LLF: 95.06195930421102
Iteration: 13, Func. Count: 169, Neg. LLF: 95.05043944389497
Iteration: 14, Func. Count: 181, Neg. LLF: 95.04932590341886
Iteration: 15, Func. Count: 193, Neg. LLF: 95.04884997506376
Iteration: 16, Func. Count: 205, Neg. LLF: 95.04884435189173
Iteration: 17, Func. Count: 217, Neg. LLF: 95.0488434040336
Optimization terminated successfully (Exit mode 0)
Current function value: 95.0488434040336
Iterations: 17
Function evaluations: 217
Gradient evaluations: 17
Iteration: 1, Func. Count: 14, Neg. LLF: 98.96282127425157
Iteration: 2, Func. Count: 28, Neg. LLF: 106.51543775973697
Iteration: 3, Func. Count: 43, Neg. LLF: 4917027.474738328
Iteration: 4, Func. Count: 57, Neg. LLF: 3468.6016304507634
Iteration: 5, Func. Count: 72, Neg. LLF: 108.61244093294366
Iteration: 6, Func. Count: 86, Neg. LLF: 96.67439570437152
Iteration: 7, Func. Count: 100, Neg. LLF: 95.3062454043269
Iteration: 8, Func. Count: 113, Neg. LLF: 96.21784392290918
Iteration: 9, Func. Count: 128, Neg. LLF: 98.86477233474977
Iteration: 10, Func. Count: 144, Neg. LLF: 94.73659641780878
Iteration: 11, Func. Count: 157, Neg. LLF: 94.68826466399747
Iteration: 12, Func. Count: 170, Neg. LLF: 94.67724351035076
Iteration: 13, Func. Count: 183, Neg. LLF: 94.67451281171004
Iteration: 14, Func. Count: 196, Neg. LLF: 94.67266465972975
Iteration: 15, Func. Count: 209, Neg. LLF: 94.67238453652871
Iteration: 16, Func. Count: 222, Neg. LLF: 94.67237213049343
Iteration: 17, Func. Count: 235, Neg. LLF: 94.67237052997751
Iteration: 18, Func. Count: 247, Neg. LLF: 94.6723705181261
Optimization terminated successfully (Exit mode 0)
Current function value: 94.67237052997751
Iterations: 18
Function evaluations: 247
Gradient evaluations: 18
Iteration: 1, Func. Count: 15, Neg. LLF: 98.58130138786008
Iteration: 2, Func. Count: 30, Neg. LLF: 104.51110675471804
Iteration: 3, Func. Count: 46, Neg. LLF: 3693088.7197457105
Iteration: 4, Func. Count: 61, Neg. LLF: 1333.5948994503167
Iteration: 5, Func. Count: 77, Neg. LLF: 236.03266220797212
Iteration: 6, Func. Count: 92, Neg. LLF: 100.22917119881895
Iteration: 7, Func. Count: 107, Neg. LLF: 95.31018857963691
Iteration: 8, Func. Count: 121, Neg. LLF: 96.00935178213096
Iteration: 9, Func. Count: 137, Neg. LLF: 110.57777693712538
Iteration: 10, Func. Count: 152, Neg. LLF: 94.77709088067452
Iteration: 11, Func. Count: 166, Neg. LLF: 94.72426131352105
Iteration: 12, Func. Count: 180, Neg. LLF: 94.6918766047906
Iteration: 13, Func. Count: 194, Neg. LLF: 94.67512210520775
Iteration: 14, Func. Count: 208, Neg. LLF: 94.67262478776598
Iteration: 15, Func. Count: 222, Neg. LLF: 94.67243245586847
Iteration: 16, Func. Count: 236, Neg. LLF: 94.67239653978729
Iteration: 17, Func. Count: 250, Neg. LLF: 94.67237044770846
Iteration: 18, Func. Count: 263, Neg. LLF: 94.67237051102668
Optimization terminated successfully (Exit mode 0)
Current function value: 94.67237044770846
Iterations: 18
Function evaluations: 263
Gradient evaluations: 18
Iteration: 1, Func. Count: 12, Neg. LLF: 103.98488479571482
Iteration: 2, Func. Count: 25, Neg. LLF: 333.3632967029776
Iteration: 3, Func. Count: 37, Neg. LLF: 4482176.218885973
Iteration: 4, Func. Count: 49, Neg. LLF: 4559031.274795979
Iteration: 5, Func. Count: 61, Neg. LLF: 101.09848366334084
Iteration: 6, Func. Count: 73, Neg. LLF: 97.52088493805796
Iteration: 7, Func. Count: 85, Neg. LLF: 98.18261164949251
Iteration: 8, Func. Count: 97, Neg. LLF: 100.25356256436713
Iteration: 9, Func. Count: 109, Neg. LLF: 97.42126480410231
Iteration: 10, Func. Count: 121, Neg. LLF: 95.0311737938396
Iteration: 11, Func. Count: 132, Neg. LLF: 94.95742312755766
Iteration: 12, Func. Count: 143, Neg. LLF: 94.92762116779448
Iteration: 13, Func. Count: 154, Neg. LLF: 94.8771640966031
Iteration: 14, Func. Count: 165, Neg. LLF: 94.85943471315643
Iteration: 15, Func. Count: 176, Neg. LLF: 94.85291540424949
Iteration: 16, Func. Count: 187, Neg. LLF: 94.85224583545836
Iteration: 17, Func. Count: 198, Neg. LLF: 94.85186842057145
Iteration: 18, Func. Count: 209, Neg. LLF: 94.85186722530364
Iteration: 19, Func. Count: 219, Neg. LLF: 94.85186722530295
Optimization terminated successfully (Exit mode 0)
Current function value: 94.85186722530364
Iterations: 19
Function evaluations: 219
Gradient evaluations: 19
Iteration: 1, Func. Count: 13, Neg. LLF: 98.22484835579063
Iteration: 2, Func. Count: 26, Neg. LLF: 116.67601992016444
Iteration: 3, Func. Count: 40, Neg. LLF: 106.13669370734212
Iteration: 4, Func. Count: 53, Neg. LLF: 7068803.711103294
Iteration: 5, Func. Count: 66, Neg. LLF: 95.43166147380737
Iteration: 6, Func. Count: 78, Neg. LLF: 96.39644185004437
Iteration: 7, Func. Count: 91, Neg. LLF: 96.25907082813004
Iteration: 8, Func. Count: 105, Neg. LLF: 100.33450336754274
Iteration: 9, Func. Count: 118, Neg. LLF: 94.85809881479526
Iteration: 10, Func. Count: 130, Neg. LLF: 94.85286748618292
Iteration: 11, Func. Count: 142, Neg. LLF: 94.85204363992047
Iteration: 12, Func. Count: 154, Neg. LLF: 94.85188872963035
Iteration: 13, Func. Count: 166, Neg. LLF: 94.85186927528788
Iteration: 14, Func. Count: 178, Neg. LLF: 94.851867286812
Iteration: 15, Func. Count: 189, Neg. LLF: 94.85186737993001
Optimization terminated successfully (Exit mode 0)
Current function value: 94.851867286812
Iterations: 15
Function evaluations: 189
Gradient evaluations: 15
Iteration: 1, Func. Count: 14, Neg. LLF: 97.72586730465267
Iteration: 2, Func. Count: 28, Neg. LLF: 126.76734712685251
Iteration: 3, Func. Count: 43, Neg. LLF: 4773768.10600667
Iteration: 4, Func. Count: 57, Neg. LLF: 111.39658191346281
Iteration: 5, Func. Count: 71, Neg. LLF: 100.4626005630473
Iteration: 6, Func. Count: 85, Neg. LLF: 95.00087425919764
Iteration: 7, Func. Count: 98, Neg. LLF: 99.89675550023259
Iteration: 8, Func. Count: 112, Neg. LLF: 95.72986333707766
Iteration: 9, Func. Count: 126, Neg. LLF: 94.86516487024487
Iteration: 10, Func. Count: 139, Neg. LLF: 94.85694801665034
Iteration: 11, Func. Count: 152, Neg. LLF: 94.85401843268691
Iteration: 12, Func. Count: 165, Neg. LLF: 94.85198502440504
Iteration: 13, Func. Count: 178, Neg. LLF: 94.8518957784783
Iteration: 14, Func. Count: 191, Neg. LLF: 94.85188040851203
Iteration: 15, Func. Count: 204, Neg. LLF: 94.85187041772316
Iteration: 16, Func. Count: 217, Neg. LLF: 94.85186740552892
Iteration: 17, Func. Count: 229, Neg. LLF: 94.85186743570569
Optimization terminated successfully (Exit mode 0)
Current function value: 94.85186740552892
Iterations: 17
Function evaluations: 229
Gradient evaluations: 17
Iteration: 1, Func. Count: 15, Neg. LLF: 97.58473930544658
Iteration: 2, Func. Count: 30, Neg. LLF: 135.78480711138496
Iteration: 3, Func. Count: 45, Neg. LLF: 183.2936787108055
Iteration: 4, Func. Count: 60, Neg. LLF: 5959921.083184961
Iteration: 5, Func. Count: 75, Neg. LLF: 97.5341541757617
Iteration: 6, Func. Count: 90, Neg. LLF: 98.30943691695211
Iteration: 7, Func. Count: 105, Neg. LLF: 97.1477538181958
Iteration: 8, Func. Count: 120, Neg. LLF: 95.11210679288895
Iteration: 9, Func. Count: 134, Neg. LLF: 94.8229825387244
Iteration: 10, Func. Count: 148, Neg. LLF: 94.83230735553887
Iteration: 11, Func. Count: 163, Neg. LLF: 94.81198308106167
Iteration: 12, Func. Count: 177, Neg. LLF: 94.80923039096386
Iteration: 13, Func. Count: 191, Neg. LLF: 94.80620781782963
Iteration: 14, Func. Count: 205, Neg. LLF: 94.80430483869574
Iteration: 15, Func. Count: 219, Neg. LLF: 94.8041972405178
Iteration: 16, Func. Count: 233, Neg. LLF: 94.80419307821177
Iteration: 17, Func. Count: 246, Neg. LLF: 94.80419307821282
Optimization terminated successfully (Exit mode 0)
Current function value: 94.80419307821177
Iterations: 17
Function evaluations: 246
Gradient evaluations: 17
Iteration: 1, Func. Count: 16, Neg. LLF: 97.5513303603718
Iteration: 2, Func. Count: 32, Neg. LLF: 138.21640083336757
Iteration: 3, Func. Count: 48, Neg. LLF: 201.13691374831714
Iteration: 4, Func. Count: 64, Neg. LLF: 4320590.312112614
Iteration: 5, Func. Count: 80, Neg. LLF: 99.7270559538625
Iteration: 6, Func. Count: 96, Neg. LLF: 101.79260654460893
Iteration: 7, Func. Count: 112, Neg. LLF: 96.6911758576239
Iteration: 8, Func. Count: 128, Neg. LLF: 97.97325072200081
Iteration: 9, Func. Count: 144, Neg. LLF: 94.98297682470381
Iteration: 10, Func. Count: 159, Neg. LLF: 94.86621894935735
Iteration: 11, Func. Count: 174, Neg. LLF: 94.92062277587328
Iteration: 12, Func. Count: 190, Neg. LLF: 94.82215152046204
Iteration: 13, Func. Count: 205, Neg. LLF: 94.81197483512629
Iteration: 14, Func. Count: 220, Neg. LLF: 94.80692944343208
Iteration: 15, Func. Count: 235, Neg. LLF: 94.80577813620603
Iteration: 16, Func. Count: 250, Neg. LLF: 94.80474125340312
Iteration: 17, Func. Count: 265, Neg. LLF: 94.80437013899471
Iteration: 18, Func. Count: 280, Neg. LLF: 94.80420821676664
Iteration: 19, Func. Count: 295, Neg. LLF: 94.80419522490688
Iteration: 20, Func. Count: 310, Neg. LLF: 94.80419310180642
Iteration: 21, Func. Count: 324, Neg. LLF: 94.80419316835614
Optimization terminated successfully (Exit mode 0)
Current function value: 94.80419310180642
Iterations: 21
Function evaluations: 324
Gradient evaluations: 21
Iteration: 1, Func. Count: 6, Neg. LLF: 115.7449444720961
Iteration: 2, Func. Count: 13, Neg. LLF: 175965823.1227855
Iteration: 3, Func. Count: 19, Neg. LLF: 9453949.153721778
Iteration: 4, Func. Count: 25, Neg. LLF: 466.27107263839844
Iteration: 5, Func. Count: 31, Neg. LLF: 101.43985321028255
Iteration: 6, Func. Count: 37, Neg. LLF: 99.69794634155647
Iteration: 7, Func. Count: 43, Neg. LLF: 96.56741157047051
Iteration: 8, Func. Count: 48, Neg. LLF: 96.54898253743276
Iteration: 9, Func. Count: 53, Neg. LLF: 96.53731101403932
Iteration: 10, Func. Count: 58, Neg. LLF: 96.50528737355359
Iteration: 11, Func. Count: 63, Neg. LLF: 96.49476742169823
Iteration: 12, Func. Count: 68, Neg. LLF: 96.49192229767134
Iteration: 13, Func. Count: 73, Neg. LLF: 96.49164237000177
Iteration: 14, Func. Count: 78, Neg. LLF: 96.49163806249194
Iteration: 15, Func. Count: 82, Neg. LLF: 96.49163806249716
Optimization terminated successfully (Exit mode 0)
Current function value: 96.49163806249194
Iterations: 15
Function evaluations: 82
Gradient evaluations: 15
Iteration: 1, Func. Count: 5, Neg. LLF: 123.39135689210862
Iteration: 2, Func. Count: 12, Neg. LLF: 112.42836587530357
Iteration: 3, Func. Count: 17, Neg. LLF: 100.86847181805561
Iteration: 4, Func. Count: 21, Neg. LLF: 100.84561625832332
Iteration: 5, Func. Count: 25, Neg. LLF: 100.83532663630173
Iteration: 6, Func. Count: 29, Neg. LLF: 100.83359883252045
Iteration: 7, Func. Count: 33, Neg. LLF: 100.83357962231587
Iteration: 8, Func. Count: 36, Neg. LLF: 100.83357963330606
Optimization terminated successfully (Exit mode 0)
Current function value: 100.83357962231587
Iterations: 8
Function evaluations: 36
Gradient evaluations: 8
Iteration: 1, Func. Count: 6, Neg. LLF: 19017455.642649136
Iteration: 2, Func. Count: 12, Neg. LLF: 108.40768337881065
Iteration: 3, Func. Count: 18, Neg. LLF: 5410.343327828996
Iteration: 4, Func. Count: 24, Neg. LLF: 146.9816355485275
Iteration: 5, Func. Count: 30, Neg. LLF: 94.1007960181987
Iteration: 6, Func. Count: 35, Neg. LLF: 93.95227717885201
Iteration: 7, Func. Count: 40, Neg. LLF: 93.92446139841643
Iteration: 8, Func. Count: 45, Neg. LLF: 93.92342822857937
Iteration: 9, Func. Count: 50, Neg. LLF: 93.92338445272672
Iteration: 10, Func. Count: 55, Neg. LLF: 93.92338198385211
Iteration: 11, Func. Count: 59, Neg. LLF: 93.92338187831037
Optimization terminated successfully (Exit mode 0)
Current function value: 93.92338198385211
Iterations: 11
Function evaluations: 59
Gradient evaluations: 11
Iteration: 1, Func. Count: 7, Neg. LLF: 109.95504207679176
Iteration: 2, Func. Count: 14, Neg. LLF: 113.91817957484274
Iteration: 3, Func. Count: 21, Neg. LLF: 146.58024589627968
Iteration: 4, Func. Count: 28, Neg. LLF: 119.02549285634834
Iteration: 5, Func. Count: 35, Neg. LLF: 105.30707733174533
Iteration: 6, Func. Count: 42, Neg. LLF: 98.2706131772045
Iteration: 7, Func. Count: 49, Neg. LLF: 94.33504139241329
Iteration: 8, Func. Count: 55, Neg. LLF: 109.60863111084737
Iteration: 9, Func. Count: 62, Neg. LLF: 94.85430488223565
Iteration: 10, Func. Count: 69, Neg. LLF: 93.93824913097623
Iteration: 11, Func. Count: 75, Neg. LLF: 93.92624270609727
Iteration: 12, Func. Count: 81, Neg. LLF: 93.92349790854904
Iteration: 13, Func. Count: 87, Neg. LLF: 93.92340313340073
Iteration: 14, Func. Count: 93, Neg. LLF: 93.92338239513013
Iteration: 15, Func. Count: 98, Neg. LLF: 93.92338237407661
Optimization terminated successfully (Exit mode 0)
Current function value: 93.92338239513013
Iterations: 15
Function evaluations: 98
Gradient evaluations: 15
Iteration: 1, Func. Count: 8, Neg. LLF: 119.07936327779147
Iteration: 2, Func. Count: 17, Neg. LLF: 96.18859523817073
Iteration: 3, Func. Count: 24, Neg. LLF: 102.61496190681108
Iteration: 4, Func. Count: 32, Neg. LLF: 101.64056445637833
Iteration: 5, Func. Count: 41, Neg. LLF: 99.812072772599
Iteration: 6, Func. Count: 49, Neg. LLF: 94.08105781684574
Iteration: 7, Func. Count: 56, Neg. LLF: 93.96851018200253
Iteration: 8, Func. Count: 63, Neg. LLF: 93.92994216459861
Iteration: 9, Func. Count: 70, Neg. LLF: 93.92405414654175
Iteration: 10, Func. Count: 77, Neg. LLF: 93.92338921691449
Iteration: 11, Func. Count: 84, Neg. LLF: 93.92338197149635
Iteration: 12, Func. Count: 90, Neg. LLF: 93.92338196936916
Optimization terminated successfully (Exit mode 0)
Current function value: 93.92338197149635
Iterations: 12
Function evaluations: 90
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 149.2475832877455
Iteration: 2, Func. Count: 18, Neg. LLF: 96.1229392673907
Iteration: 3, Func. Count: 26, Neg. LLF: 97.20620555157147
Iteration: 4, Func. Count: 35, Neg. LLF: 99.80467283697895
Iteration: 5, Func. Count: 44, Neg. LLF: 96.56699638945855
Iteration: 6, Func. Count: 53, Neg. LLF: 94.61226832058178
Iteration: 7, Func. Count: 62, Neg. LLF: 94.14043900293424
Iteration: 8, Func. Count: 71, Neg. LLF: 93.92442793500591
Iteration: 9, Func. Count: 79, Neg. LLF: 93.92338715033024
Iteration: 10, Func. Count: 87, Neg. LLF: 93.92338210109155
Iteration: 11, Func. Count: 94, Neg. LLF: 93.92338218308961
Optimization terminated successfully (Exit mode 0)
Current function value: 93.92338210109155
Iterations: 11
Function evaluations: 94
Gradient evaluations: 11
Iteration: 1, Func. Count: 6, Neg. LLF: 115.27443259723067
Iteration: 2, Func. Count: 13, Neg. LLF: 221327720.9181249
Iteration: 3, Func. Count: 19, Neg. LLF: 5446326.278225817
Iteration: 4, Func. Count: 25, Neg. LLF: 1098440.8716790567
Iteration: 5, Func. Count: 31, Neg. LLF: 1092756.5805919415
Iteration: 6, Func. Count: 37, Neg. LLF: 96.75907623282656
Iteration: 7, Func. Count: 43, Neg. LLF: 106.11696382035483
Iteration: 8, Func. Count: 49, Neg. LLF: 93.42252422143007
Iteration: 9, Func. Count: 54, Neg. LLF: 93.38273404545271
Iteration: 10, Func. Count: 59, Neg. LLF: 93.29776798114636
Iteration: 11, Func. Count: 64, Neg. LLF: 93.24924609983105
Iteration: 12, Func. Count: 69, Neg. LLF: 93.22006759979433
Iteration: 13, Func. Count: 74, Neg. LLF: 93.20677370602691
Iteration: 14, Func. Count: 79, Neg. LLF: 93.20423141559709
Iteration: 15, Func. Count: 84, Neg. LLF: 93.20407223253433
Iteration: 16, Func. Count: 89, Neg. LLF: 93.20403958625427
Iteration: 17, Func. Count: 94, Neg. LLF: 93.20403907516585
Optimization terminated successfully (Exit mode 0)
Current function value: 93.20403907516585
Iterations: 17
Function evaluations: 94
Gradient evaluations: 17
Iteration: 1, Func. Count: 7, Neg. LLF: 8067351.902867764
Iteration: 2, Func. Count: 14, Neg. LLF: 19724112.95399677
Iteration: 3, Func. Count: 21, Neg. LLF: 192.49897699019306
Iteration: 4, Func. Count: 29, Neg. LLF: 105.72517328057639
Iteration: 5, Func. Count: 36, Neg. LLF: 94.6850309384714
Iteration: 6, Func. Count: 43, Neg. LLF: 93.50733649203585
Iteration: 7, Func. Count: 49, Neg. LLF: 92.90350166945925
Iteration: 8, Func. Count: 55, Neg. LLF: 92.79588679416096
Iteration: 9, Func. Count: 61, Neg. LLF: 92.78002823999837
Iteration: 10, Func. Count: 67, Neg. LLF: 92.77861995557934
Iteration: 11, Func. Count: 73, Neg. LLF: 92.7781602293081
Iteration: 12, Func. Count: 79, Neg. LLF: 92.77809970901858
Iteration: 13, Func. Count: 84, Neg. LLF: 92.77809966413089
Optimization terminated successfully (Exit mode 0)
Current function value: 92.77809970901858
Iterations: 13
Function evaluations: 84
Gradient evaluations: 13
Iteration: 1, Func. Count: 8, Neg. LLF: 7617076.019200795
Iteration: 2, Func. Count: 16, Neg. LLF: 20897093.938448634
Iteration: 3, Func. Count: 24, Neg. LLF: 1196811.7295642286
Iteration: 4, Func. Count: 32, Neg. LLF: 97.93312597237663
Iteration: 5, Func. Count: 40, Neg. LLF: 94.42060073381404
Iteration: 6, Func. Count: 48, Neg. LLF: 92.64432308838444
Iteration: 7, Func. Count: 55, Neg. LLF: 92.42055068807976
Iteration: 8, Func. Count: 62, Neg. LLF: 92.20206793526118
Iteration: 9, Func. Count: 69, Neg. LLF: 92.41823835728776
Iteration: 10, Func. Count: 77, Neg. LLF: 92.07141702419032
Iteration: 11, Func. Count: 84, Neg. LLF: 92.0562313858126
Iteration: 12, Func. Count: 91, Neg. LLF: 92.05515407790539
Iteration: 13, Func. Count: 98, Neg. LLF: 92.05497342304459
Iteration: 14, Func. Count: 105, Neg. LLF: 92.05496602499798
Iteration: 15, Func. Count: 112, Neg. LLF: 92.05496548194265
Optimization terminated successfully (Exit mode 0)
Current function value: 92.05496548194265
Iterations: 15
Function evaluations: 112
Gradient evaluations: 15
Iteration: 1, Func. Count: 9, Neg. LLF: 258.0457381314184
Iteration: 2, Func. Count: 18, Neg. LLF: 28886626.226504143
Iteration: 3, Func. Count: 27, Neg. LLF: 1124810.5934024926
Iteration: 4, Func. Count: 36, Neg. LLF: 106.38490378213008
Iteration: 5, Func. Count: 45, Neg. LLF: 93.29932957595884
Iteration: 6, Func. Count: 53, Neg. LLF: 92.86681107717118
Iteration: 7, Func. Count: 61, Neg. LLF: 92.59266720881898
Iteration: 8, Func. Count: 69, Neg. LLF: 94.75419079178131
Iteration: 9, Func. Count: 78, Neg. LLF: 92.19274984245168
Iteration: 10, Func. Count: 86, Neg. LLF: 92.12504810597474
Iteration: 11, Func. Count: 94, Neg. LLF: 92.07560500839466
Iteration: 12, Func. Count: 102, Neg. LLF: 92.0578178499933
Iteration: 13, Func. Count: 110, Neg. LLF: 92.05507514915955
Iteration: 14, Func. Count: 118, Neg. LLF: 92.05496695617299
Iteration: 15, Func. Count: 126, Neg. LLF: 92.05496557541342
Iteration: 16, Func. Count: 133, Neg. LLF: 92.05496557254058
Optimization terminated successfully (Exit mode 0)
Current function value: 92.05496557541342
Iterations: 16
Function evaluations: 133
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 166.79163136546387
Iteration: 2, Func. Count: 20, Neg. LLF: 31035050.625680655
Iteration: 3, Func. Count: 30, Neg. LLF: 1099541.6944802029
Iteration: 4, Func. Count: 40, Neg. LLF: 98.29394174730935
Iteration: 5, Func. Count: 50, Neg. LLF: 92.40513029642415
Iteration: 6, Func. Count: 59, Neg. LLF: 92.60542083040058
Iteration: 7, Func. Count: 69, Neg. LLF: 92.20583214079186
Iteration: 8, Func. Count: 78, Neg. LLF: 94.29066525780611
Iteration: 9, Func. Count: 88, Neg. LLF: 92.2891657460049
Iteration: 10, Func. Count: 98, Neg. LLF: 92.05800149617475
Iteration: 11, Func. Count: 107, Neg. LLF: 92.0550067395514
Iteration: 12, Func. Count: 116, Neg. LLF: 92.05496577912112
Iteration: 13, Func. Count: 124, Neg. LLF: 92.05496580895604
Optimization terminated successfully (Exit mode 0)
Current function value: 92.05496577912112
Iterations: 13
Function evaluations: 124
Gradient evaluations: 13
Iteration: 1, Func. Count: 7, Neg. LLF: 124.0838759922468
Iteration: 2, Func. Count: 16, Neg. LLF: 244921294.75340146
Iteration: 3, Func. Count: 23, Neg. LLF: 1101235.7507684638
Iteration: 4, Func. Count: 30, Neg. LLF: 145.95624467479928
Iteration: 5, Func. Count: 37, Neg. LLF: 97.65052199922097
Iteration: 6, Func. Count: 44, Neg. LLF: 94.24609960681794
Iteration: 7, Func. Count: 50, Neg. LLF: 100.24107124834002
Iteration: 8, Func. Count: 57, Neg. LLF: 93.88149967880037
Iteration: 9, Func. Count: 63, Neg. LLF: 93.62445925924682
Iteration: 10, Func. Count: 69, Neg. LLF: 93.3966788978124
Iteration: 11, Func. Count: 75, Neg. LLF: 93.2773832902588
Iteration: 12, Func. Count: 81, Neg. LLF: 93.22385130030285
Iteration: 13, Func. Count: 87, Neg. LLF: 93.20677554815947
Iteration: 14, Func. Count: 93, Neg. LLF: 93.20437933270922
Iteration: 15, Func. Count: 99, Neg. LLF: 93.2041382760932
Iteration: 16, Func. Count: 105, Neg. LLF: 93.20404483440842
Iteration: 17, Func. Count: 111, Neg. LLF: 93.20403916735593
Iteration: 18, Func. Count: 116, Neg. LLF: 93.20403917647056
Optimization terminated successfully (Exit mode 0)
Current function value: 93.20403916735593
Iterations: 18
Function evaluations: 116
Gradient evaluations: 18
Iteration: 1, Func. Count: 8, Neg. LLF: 5488789.0292894505
Iteration: 2, Func. Count: 16, Neg. LLF: 44757977.242377825
Iteration: 3, Func. Count: 24, Neg. LLF: 6693496.161981912
Iteration: 4, Func. Count: 32, Neg. LLF: 93.61678694021381
Iteration: 5, Func. Count: 39, Neg. LLF: 100.91005241617957
Iteration: 6, Func. Count: 48, Neg. LLF: 92.86327618028055
Iteration: 7, Func. Count: 55, Neg. LLF: 92.79857591382589
Iteration: 8, Func. Count: 62, Neg. LLF: 92.78601081144991
Iteration: 9, Func. Count: 69, Neg. LLF: 92.78037101188254
Iteration: 10, Func. Count: 76, Neg. LLF: 92.77868471120698
Iteration: 11, Func. Count: 83, Neg. LLF: 92.77815971891977
Iteration: 12, Func. Count: 90, Neg. LLF: 92.77810160206703
Iteration: 13, Func. Count: 97, Neg. LLF: 92.77809929932775
Iteration: 14, Func. Count: 103, Neg. LLF: 92.77809925441339
Optimization terminated successfully (Exit mode 0)
Current function value: 92.77809929932775
Iterations: 14
Function evaluations: 103
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 131.84518586518973
Iteration: 2, Func. Count: 18, Neg. LLF: 129903868.40040794
Iteration: 3, Func. Count: 28, Neg. LLF: 1114842.257020895
Iteration: 4, Func. Count: 37, Neg. LLF: 92.99425823540713
Iteration: 5, Func. Count: 45, Neg. LLF: 93.97547057112088
Iteration: 6, Func. Count: 54, Neg. LLF: 102.9075964615076
Iteration: 7, Func. Count: 63, Neg. LLF: 92.23388754926285
Iteration: 8, Func. Count: 71, Neg. LLF: 92.0891841132409
Iteration: 9, Func. Count: 79, Neg. LLF: 92.05960670478358
Iteration: 10, Func. Count: 87, Neg. LLF: 92.05583429348667
Iteration: 11, Func. Count: 95, Neg. LLF: 92.05496922238423
Iteration: 12, Func. Count: 103, Neg. LLF: 92.05496552871551
Iteration: 13, Func. Count: 110, Neg. LLF: 92.05496551325082
Optimization terminated successfully (Exit mode 0)
Current function value: 92.05496552871551
Iterations: 13
Function evaluations: 110
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 99.66940532689989
Iteration: 2, Func. Count: 20, Neg. LLF: 173238063.91979003
Iteration: 3, Func. Count: 31, Neg. LLF: 110.24476641771543
Iteration: 4, Func. Count: 41, Neg. LLF: 105.52768929634111
Iteration: 5, Func. Count: 51, Neg. LLF: 93.21616596378989
Iteration: 6, Func. Count: 61, Neg. LLF: 104.8062613059284
Iteration: 7, Func. Count: 71, Neg. LLF: 92.38954659732742
Iteration: 8, Func. Count: 80, Neg. LLF: 92.12726939153015
Iteration: 9, Func. Count: 89, Neg. LLF: 92.0676706482356
Iteration: 10, Func. Count: 98, Neg. LLF: 92.0566119826937
Iteration: 11, Func. Count: 107, Neg. LLF: 92.05545540578191
Iteration: 12, Func. Count: 116, Neg. LLF: 92.05498687416103
Iteration: 13, Func. Count: 125, Neg. LLF: 92.05496711101854
Iteration: 14, Func. Count: 134, Neg. LLF: 92.0549655429339
Iteration: 15, Func. Count: 142, Neg. LLF: 92.05496554005275
Optimization terminated successfully (Exit mode 0)
Current function value: 92.0549655429339
Iterations: 15
Function evaluations: 142
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 97.66643445962652
Iteration: 2, Func. Count: 22, Neg. LLF: 146570567.9335756
Iteration: 3, Func. Count: 34, Neg. LLF: 101.43759159913894
Iteration: 4, Func. Count: 45, Neg. LLF: 103.18381377047201
Iteration: 5, Func. Count: 56, Neg. LLF: 92.87474505657772
Iteration: 6, Func. Count: 67, Neg. LLF: 99.23003427266893
Iteration: 7, Func. Count: 78, Neg. LLF: 92.33961366886123
Iteration: 8, Func. Count: 89, Neg. LLF: 92.05666339572784
Iteration: 9, Func. Count: 99, Neg. LLF: 92.05550954869298
Iteration: 10, Func. Count: 109, Neg. LLF: 92.05497260033435
Iteration: 11, Func. Count: 119, Neg. LLF: 92.05496645083569
Iteration: 12, Func. Count: 129, Neg. LLF: 92.05496568415796
Optimization terminated successfully (Exit mode 0)
Current function value: 92.05496568415796
Iterations: 12
Function evaluations: 129
Gradient evaluations: 12
Iteration: 1, Func. Count: 8, Neg. LLF: 141.06913887862356
Iteration: 2, Func. Count: 18, Neg. LLF: 408634226.4489285
Iteration: 3, Func. Count: 27, Neg. LLF: 678419.6034712552
Iteration: 4, Func. Count: 35, Neg. LLF: 267298.08923720074
Iteration: 5, Func. Count: 43, Neg. LLF: 76245.28442910462
Iteration: 6, Func. Count: 51, Neg. LLF: 211220.87664890048
Iteration: 7, Func. Count: 59, Neg. LLF: 26901.27273253208
Iteration: 8, Func. Count: 67, Neg. LLF: 94.69732929300636
Iteration: 9, Func. Count: 75, Neg. LLF: 92.57785043405852
Iteration: 10, Func. Count: 82, Neg. LLF: 92.48255121060907
Iteration: 11, Func. Count: 90, Neg. LLF: 92.05368408771328
Iteration: 12, Func. Count: 97, Neg. LLF: 91.97513213868908
Iteration: 13, Func. Count: 104, Neg. LLF: 91.95507081018913
Iteration: 14, Func. Count: 111, Neg. LLF: 91.94694998496371
Iteration: 15, Func. Count: 118, Neg. LLF: 91.94517094183561
Iteration: 16, Func. Count: 125, Neg. LLF: 91.94411810203164
Iteration: 17, Func. Count: 132, Neg. LLF: 91.94402636672709
Iteration: 18, Func. Count: 139, Neg. LLF: 91.94402549033023
Optimization terminated successfully (Exit mode 0)
Current function value: 91.94402549033023
Iterations: 18
Function evaluations: 139
Gradient evaluations: 18
Iteration: 1, Func. Count: 9, Neg. LLF: 347.81001249595573
Iteration: 2, Func. Count: 18, Neg. LLF: 79326413.91343518
Iteration: 3, Func. Count: 27, Neg. LLF: 6269592.404056186
Iteration: 4, Func. Count: 36, Neg. LLF: 77528.78911888166
Iteration: 5, Func. Count: 45, Neg. LLF: 94.46661493318605
Iteration: 6, Func. Count: 54, Neg. LLF: 97.08737377874766
Iteration: 7, Func. Count: 63, Neg. LLF: 96.64642020147434
Iteration: 8, Func. Count: 72, Neg. LLF: 92.46728472001547
Iteration: 9, Func. Count: 80, Neg. LLF: 92.69071754057158
Iteration: 10, Func. Count: 89, Neg. LLF: 91.97356981852444
Iteration: 11, Func. Count: 97, Neg. LLF: 91.94278781777687
Iteration: 12, Func. Count: 105, Neg. LLF: 91.95932802572648
Iteration: 13, Func. Count: 114, Neg. LLF: 91.93295276326593
Iteration: 14, Func. Count: 122, Neg. LLF: 91.9328219452988
Iteration: 15, Func. Count: 130, Neg. LLF: 91.93281801910848
Iteration: 16, Func. Count: 138, Neg. LLF: 91.93281678230676
Iteration: 17, Func. Count: 145, Neg. LLF: 91.93281677180423
Optimization terminated successfully (Exit mode 0)
Current function value: 91.93281678230676
Iterations: 17
Function evaluations: 145
Gradient evaluations: 17
Iteration: 1, Func. Count: 10, Neg. LLF: 104.13129020081945
Iteration: 2, Func. Count: 20, Neg. LLF: 119835084.16725554
Iteration: 3, Func. Count: 30, Neg. LLF: 104.16356059498405
Iteration: 4, Func. Count: 40, Neg. LLF: 201376.68649508554
Iteration: 5, Func. Count: 50, Neg. LLF: 98.03746180597982
Iteration: 6, Func. Count: 60, Neg. LLF: 92.71698409147353
Iteration: 7, Func. Count: 70, Neg. LLF: 92.12992296437213
Iteration: 8, Func. Count: 80, Neg. LLF: 91.96278748055762
Iteration: 9, Func. Count: 89, Neg. LLF: 91.93783313625374
Iteration: 10, Func. Count: 98, Neg. LLF: 91.9346642187314
Iteration: 11, Func. Count: 107, Neg. LLF: 91.93285192295639
Iteration: 12, Func. Count: 116, Neg. LLF: 91.93281910723897
Iteration: 13, Func. Count: 125, Neg. LLF: 91.93281695892662
Iteration: 14, Func. Count: 133, Neg. LLF: 91.93281696326306
Optimization terminated successfully (Exit mode 0)
Current function value: 91.93281695892662
Iterations: 14
Function evaluations: 133
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 102.4366807580489
Iteration: 2, Func. Count: 22, Neg. LLF: 11922.608852914647
Iteration: 3, Func. Count: 33, Neg. LLF: 3018494.565357084
Iteration: 4, Func. Count: 44, Neg. LLF: 248626.64828703966
Iteration: 5, Func. Count: 55, Neg. LLF: 92.61255170629839
Iteration: 6, Func. Count: 66, Neg. LLF: 202855.63090649366
Iteration: 7, Func. Count: 77, Neg. LLF: 92.19595125136716
Iteration: 8, Func. Count: 88, Neg. LLF: 91.94255033525336
Iteration: 9, Func. Count: 98, Neg. LLF: 91.93930569114112
Iteration: 10, Func. Count: 108, Neg. LLF: 91.93806221630392
Iteration: 11, Func. Count: 119, Neg. LLF: 91.93577355152881
Iteration: 12, Func. Count: 130, Neg. LLF: 91.93314393791916
Iteration: 13, Func. Count: 140, Neg. LLF: 91.9329165540054
Iteration: 14, Func. Count: 150, Neg. LLF: 91.93281821860906
Iteration: 15, Func. Count: 160, Neg. LLF: 91.9328168140517
Iteration: 16, Func. Count: 169, Neg. LLF: 91.9328168046247
Optimization terminated successfully (Exit mode 0)
Current function value: 91.9328168140517
Iterations: 16
Function evaluations: 169
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 101.56813503031312
Iteration: 2, Func. Count: 24, Neg. LLF: 1613.3789774359811
Iteration: 3, Func. Count: 36, Neg. LLF: 228.87663956255636
Iteration: 4, Func. Count: 48, Neg. LLF: 250857.93262257273
Iteration: 5, Func. Count: 60, Neg. LLF: 93.83395751612433
Iteration: 6, Func. Count: 72, Neg. LLF: 92.62369668959971
Iteration: 7, Func. Count: 84, Neg. LLF: 92.02416069645504
Iteration: 8, Func. Count: 95, Neg. LLF: 92.06387793626585
Iteration: 9, Func. Count: 107, Neg. LLF: 91.96565627652252
Iteration: 10, Func. Count: 119, Neg. LLF: 91.93783266342554
Iteration: 11, Func. Count: 131, Neg. LLF: 91.93300589422103
Iteration: 12, Func. Count: 142, Neg. LLF: 91.93286223271674
Iteration: 13, Func. Count: 153, Neg. LLF: 91.9328311473169
Iteration: 14, Func. Count: 164, Neg. LLF: 91.9328209194437
Iteration: 15, Func. Count: 175, Neg. LLF: 91.93281686013573
Iteration: 16, Func. Count: 185, Neg. LLF: 91.93281690304707
Optimization terminated successfully (Exit mode 0)
Current function value: 91.93281686013573
Iterations: 16
Function evaluations: 185
Gradient evaluations: 16
Iteration: 1, Func. Count: 5, Neg. LLF: 124.4364977663476
Iteration: 2, Func. Count: 11, Neg. LLF: 119.44762685208272
Iteration: 3, Func. Count: 16, Neg. LLF: 101.497128444845
Iteration: 4, Func. Count: 20, Neg. LLF: 101.2421334061745
Iteration: 5, Func. Count: 24, Neg. LLF: 100.93237239271339
Iteration: 6, Func. Count: 28, Neg. LLF: 100.84601241855952
Iteration: 7, Func. Count: 32, Neg. LLF: 100.83363078557474
Iteration: 8, Func. Count: 36, Neg. LLF: 100.83357965215653
Iteration: 9, Func. Count: 39, Neg. LLF: 100.83357975603039
Optimization terminated successfully (Exit mode 0)
Current function value: 100.83357965215653
Iterations: 9
Function evaluations: 39
Gradient evaluations: 9
Iteration: 1, Func. Count: 6, Neg. LLF: 143.7771241921153
Iteration: 2, Func. Count: 12, Neg. LLF: 22259.302180143466
Iteration: 3, Func. Count: 18, Neg. LLF: 99.62673486391726
Iteration: 4, Func. Count: 24, Neg. LLF: 97.7114003939973
Iteration: 5, Func. Count: 29, Neg. LLF: 97.21298558856171
Iteration: 6, Func. Count: 34, Neg. LLF: 97.22472665297346
Iteration: 7, Func. Count: 40, Neg. LLF: 97.03398697935982
Iteration: 8, Func. Count: 45, Neg. LLF: 96.99747762532328
Iteration: 9, Func. Count: 50, Neg. LLF: 142.83464014397262
Iteration: 10, Func. Count: 58, Neg. LLF: 96.95444275817658
Iteration: 11, Func. Count: 63, Neg. LLF: 96.95242254175413
Iteration: 12, Func. Count: 68, Neg. LLF: 96.95168315872918
Iteration: 13, Func. Count: 73, Neg. LLF: 96.95164626610018
Iteration: 14, Func. Count: 78, Neg. LLF: 96.95164544576298
Optimization terminated successfully (Exit mode 0)
Current function value: 96.95164544576298
Iterations: 14
Function evaluations: 78
Gradient evaluations: 14
Iteration: 1, Func. Count: 7, Neg. LLF: 142.74529006666728
Iteration: 2, Func. Count: 15, Neg. LLF: 101.435775816468
Iteration: 3, Func. Count: 22, Neg. LLF: 99.45816733834825
Iteration: 4, Func. Count: 28, Neg. LLF: 109.72023102913212
Iteration: 5, Func. Count: 35, Neg. LLF: 97.49107815158372
Iteration: 6, Func. Count: 41, Neg. LLF: 97.39512115556707
Iteration: 7, Func. Count: 48, Neg. LLF: 97.0249761818525
Iteration: 8, Func. Count: 55, Neg. LLF: 96.9545780538656
Iteration: 9, Func. Count: 61, Neg. LLF: 96.95192777985702
Iteration: 10, Func. Count: 67, Neg. LLF: 96.95166590555611
Iteration: 11, Func. Count: 73, Neg. LLF: 96.95164359978057
Iteration: 12, Func. Count: 79, Neg. LLF: 96.95164319362326
Optimization terminated successfully (Exit mode 0)
Current function value: 96.95164319362326
Iterations: 12
Function evaluations: 79
Gradient evaluations: 12
Iteration: 1, Func. Count: 8, Neg. LLF: 136.4399486871368
Iteration: 2, Func. Count: 17, Neg. LLF: 100.89733383819731
Iteration: 3, Func. Count: 25, Neg. LLF: 100.67655484593377
Iteration: 4, Func. Count: 32, Neg. LLF: 100.15228152614195
Iteration: 5, Func. Count: 39, Neg. LLF: 99.86842247039836
Iteration: 6, Func. Count: 46, Neg. LLF: 99.37898635404301
Iteration: 7, Func. Count: 53, Neg. LLF: 98.16602003127701
Iteration: 8, Func. Count: 60, Neg. LLF: 98.66894967289453
Iteration: 9, Func. Count: 70, Neg. LLF: 97.46106869683956
Iteration: 10, Func. Count: 77, Neg. LLF: 97.04728750396049
Iteration: 11, Func. Count: 84, Neg. LLF: 96.99115814720238
Iteration: 12, Func. Count: 91, Neg. LLF: 96.9615294585848
Iteration: 13, Func. Count: 98, Neg. LLF: 96.96360415373124
Iteration: 14, Func. Count: 106, Neg. LLF: 96.95174817632663
Iteration: 15, Func. Count: 113, Neg. LLF: 96.95167483493945
Iteration: 16, Func. Count: 120, Neg. LLF: 96.95164538998799
Iteration: 17, Func. Count: 126, Neg. LLF: 96.95164518373439
Optimization terminated successfully (Exit mode 0)
Current function value: 96.95164538998799
Iterations: 17
Function evaluations: 126
Gradient evaluations: 17
Iteration: 1, Func. Count: 9, Neg. LLF: 135.20115947472067
Iteration: 2, Func. Count: 19, Neg. LLF: 100.8774332259868
Iteration: 3, Func. Count: 28, Neg. LLF: 101.0059735466653
Iteration: 4, Func. Count: 37, Neg. LLF: 100.64496782359258
Iteration: 5, Func. Count: 45, Neg. LLF: 100.45389504876863
Iteration: 6, Func. Count: 53, Neg. LLF: 103.0015564656195
Iteration: 7, Func. Count: 62, Neg. LLF: 102.39370722323169
Iteration: 8, Func. Count: 71, Neg. LLF: 100.17583855226353
Iteration: 9, Func. Count: 79, Neg. LLF: 103.17479336084102
Iteration: 10, Func. Count: 88, Neg. LLF: 98.67509447688737
Iteration: 11, Func. Count: 96, Neg. LLF: 124.63407241442356
Iteration: 12, Func. Count: 105, Neg. LLF: 97.34729366909876
Iteration: 13, Func. Count: 113, Neg. LLF: 97.15848255222834
Iteration: 14, Func. Count: 121, Neg. LLF: 97.12904704008167
Iteration: 15, Func. Count: 129, Neg. LLF: 97.06518957569281
Iteration: 16, Func. Count: 137, Neg. LLF: 97.09104695413977
Iteration: 17, Func. Count: 146, Neg. LLF: 97.03028550797185
Iteration: 18, Func. Count: 155, Neg. LLF: 96.98370795887904
Iteration: 19, Func. Count: 164, Neg. LLF: 96.9517144159635
Iteration: 20, Func. Count: 172, Neg. LLF: 96.95164971002785
Iteration: 21, Func. Count: 180, Neg. LLF: 96.95164556330265
Iteration: 22, Func. Count: 187, Neg. LLF: 96.95164534439911
Optimization terminated successfully (Exit mode 0)
Current function value: 96.95164556330265
Iterations: 22
Function evaluations: 187
Gradient evaluations: 22
Iteration: 1, Func. Count: 6, Neg. LLF: 122.47290973532151
Iteration: 2, Func. Count: 13, Neg. LLF: 104.66667490574041
Iteration: 3, Func. Count: 19, Neg. LLF: 101.36228755469136
Iteration: 4, Func. Count: 24, Neg. LLF: 101.00767880207763
Iteration: 5, Func. Count: 29, Neg. LLF: 100.86194681979072
Iteration: 6, Func. Count: 34, Neg. LLF: 100.83466432886743
Iteration: 7, Func. Count: 39, Neg. LLF: 100.83359021935506
Iteration: 8, Func. Count: 44, Neg. LLF: 100.83357957433559
Iteration: 9, Func. Count: 48, Neg. LLF: 100.83357958532895
Optimization terminated successfully (Exit mode 0)
Current function value: 100.83357957433559
Iterations: 9
Function evaluations: 48
Gradient evaluations: 9
Iteration: 1, Func. Count: 7, Neg. LLF: 18855018.70669989
Iteration: 2, Func. Count: 14, Neg. LLF: 138.6592141980864
Iteration: 3, Func. Count: 22, Neg. LLF: 97.13639204309868
Iteration: 4, Func. Count: 30, Neg. LLF: 94.18561640341508
Iteration: 5, Func. Count: 36, Neg. LLF: 118.12443710551791
Iteration: 6, Func. Count: 43, Neg. LLF: 98.68904544518202
Iteration: 7, Func. Count: 51, Neg. LLF: 94.01106331544739
Iteration: 8, Func. Count: 58, Neg. LLF: 93.78334303334312
Iteration: 9, Func. Count: 64, Neg. LLF: 93.77662589142835
Iteration: 10, Func. Count: 70, Neg. LLF: 93.77617550654504
Iteration: 11, Func. Count: 76, Neg. LLF: 93.7761433595952
Iteration: 12, Func. Count: 81, Neg. LLF: 93.77614325397711
Optimization terminated successfully (Exit mode 0)
Current function value: 93.7761433595952
Iterations: 12
Function evaluations: 81
Gradient evaluations: 12
Iteration: 1, Func. Count: 8, Neg. LLF: 99.40773500584383
Iteration: 2, Func. Count: 16, Neg. LLF: 97.73912105830189
Iteration: 3, Func. Count: 24, Neg. LLF: 233.4190326314244
Iteration: 4, Func. Count: 32, Neg. LLF: 114.06471135510772
Iteration: 5, Func. Count: 40, Neg. LLF: 101.59557583529507
Iteration: 6, Func. Count: 48, Neg. LLF: 105.96695585705126
Iteration: 7, Func. Count: 56, Neg. LLF: 96.924270618977
Iteration: 8, Func. Count: 64, Neg. LLF: 99.40424783263977
Iteration: 9, Func. Count: 72, Neg. LLF: 94.05687395506013
Iteration: 10, Func. Count: 79, Neg. LLF: 93.82701886571874
Iteration: 11, Func. Count: 86, Neg. LLF: 93.78673438880456
Iteration: 12, Func. Count: 93, Neg. LLF: 93.7779262406002
Iteration: 13, Func. Count: 100, Neg. LLF: 93.77641273829336
Iteration: 14, Func. Count: 107, Neg. LLF: 93.77620825272534
Iteration: 15, Func. Count: 114, Neg. LLF: 93.7761438976043
Iteration: 16, Func. Count: 121, Neg. LLF: 93.77614332087148
Optimization terminated successfully (Exit mode 0)
Current function value: 93.77614332087148
Iterations: 16
Function evaluations: 121
Gradient evaluations: 16
Iteration: 1, Func. Count: 9, Neg. LLF: 131.18708612015305
Iteration: 2, Func. Count: 18, Neg. LLF: 95.69399507296347
Iteration: 3, Func. Count: 26, Neg. LLF: 103.57240205681792
Iteration: 4, Func. Count: 35, Neg. LLF: 121.0246749037066
Iteration: 5, Func. Count: 45, Neg. LLF: 161.29286621396315
Iteration: 6, Func. Count: 54, Neg. LLF: 95.41873750713624
Iteration: 7, Func. Count: 63, Neg. LLF: 94.04454689346558
Iteration: 8, Func. Count: 71, Neg. LLF: 93.85963036213096
Iteration: 9, Func. Count: 79, Neg. LLF: 93.79555773012467
Iteration: 10, Func. Count: 87, Neg. LLF: 93.7780575350114
Iteration: 11, Func. Count: 95, Neg. LLF: 93.77621978534762
Iteration: 12, Func. Count: 103, Neg. LLF: 93.77614595834623
Iteration: 13, Func. Count: 111, Neg. LLF: 93.77614331154241
Iteration: 14, Func. Count: 118, Neg. LLF: 93.77614331880085
Optimization terminated successfully (Exit mode 0)
Current function value: 93.77614331154241
Iterations: 14
Function evaluations: 118
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 149.81645687604808
Iteration: 2, Func. Count: 20, Neg. LLF: 96.38638011831242
Iteration: 3, Func. Count: 29, Neg. LLF: 95.33124535267117
Iteration: 4, Func. Count: 38, Neg. LLF: 95.10850303010602
Iteration: 5, Func. Count: 48, Neg. LLF: 245.59416208348253
Iteration: 6, Func. Count: 59, Neg. LLF: 97.50511901749609
Iteration: 7, Func. Count: 69, Neg. LLF: 94.0505324481467
Iteration: 8, Func. Count: 79, Neg. LLF: 93.78526323250229
Iteration: 9, Func. Count: 88, Neg. LLF: 93.77648689746108
Iteration: 10, Func. Count: 97, Neg. LLF: 93.77620116887498
Iteration: 11, Func. Count: 106, Neg. LLF: 93.77614552128291
Iteration: 12, Func. Count: 115, Neg. LLF: 93.77614376438197
Iteration: 13, Func. Count: 123, Neg. LLF: 93.77614381529204
Optimization terminated successfully (Exit mode 0)
Current function value: 93.77614376438197
Iterations: 13
Function evaluations: 123
Gradient evaluations: 13
Iteration: 1, Func. Count: 7, Neg. LLF: 108.5881669589541
Iteration: 2, Func. Count: 15, Neg. LLF: 71328752.40179627
Iteration: 3, Func. Count: 22, Neg. LLF: 5439718.831149554
Iteration: 4, Func. Count: 29, Neg. LLF: 3019819.6351303635
Iteration: 5, Func. Count: 36, Neg. LLF: 671.1093628390673
Iteration: 6, Func. Count: 43, Neg. LLF: 109.89906183962947
Iteration: 7, Func. Count: 50, Neg. LLF: 94.20660627764084
Iteration: 8, Func. Count: 57, Neg. LLF: 98.4284465721581
Iteration: 9, Func. Count: 64, Neg. LLF: 93.42639234140566
Iteration: 10, Func. Count: 71, Neg. LLF: 93.21695237575175
Iteration: 11, Func. Count: 77, Neg. LLF: 93.1419805310837
Iteration: 12, Func. Count: 83, Neg. LLF: 93.07685381269793
Iteration: 13, Func. Count: 89, Neg. LLF: 93.02264847603574
Iteration: 14, Func. Count: 95, Neg. LLF: 92.98231106273961
Iteration: 15, Func. Count: 101, Neg. LLF: 92.96317784274072
Iteration: 16, Func. Count: 107, Neg. LLF: 92.96286864393251
Iteration: 17, Func. Count: 113, Neg. LLF: 92.96285950111482
Iteration: 18, Func. Count: 119, Neg. LLF: 92.96285777339611
Iteration: 19, Func. Count: 124, Neg. LLF: 92.9628577728017
Optimization terminated successfully (Exit mode 0)
Current function value: 92.96285777339611
Iterations: 19
Function evaluations: 124
Gradient evaluations: 19
Iteration: 1, Func. Count: 8, Neg. LLF: 8124076.960560347
Iteration: 2, Func. Count: 16, Neg. LLF: 140.2042145049575
Iteration: 3, Func. Count: 25, Neg. LLF: 115.17005843140329
Iteration: 4, Func. Count: 33, Neg. LLF: 114.24806501103743
Iteration: 5, Func. Count: 41, Neg. LLF: 92.89899184726706
Iteration: 6, Func. Count: 48, Neg. LLF: 110.45090153113915
Iteration: 7, Func. Count: 56, Neg. LLF: 92.65450137643205
Iteration: 8, Func. Count: 63, Neg. LLF: 92.60183755925634
Iteration: 9, Func. Count: 70, Neg. LLF: 92.59909296319753
Iteration: 10, Func. Count: 77, Neg. LLF: 92.59828287355354
Iteration: 11, Func. Count: 84, Neg. LLF: 92.59819682949113
Iteration: 12, Func. Count: 91, Neg. LLF: 92.59818535706978
Iteration: 13, Func. Count: 98, Neg. LLF: 92.59818460134622
Optimization terminated successfully (Exit mode 0)
Current function value: 92.59818460134622
Iterations: 13
Function evaluations: 98
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 5572746.795503061
Iteration: 2, Func. Count: 18, Neg. LLF: 67125824.63512012
Iteration: 3, Func. Count: 28, Neg. LLF: 1426750.2499433171
Iteration: 4, Func. Count: 37, Neg. LLF: 98.17142348345034
Iteration: 5, Func. Count: 46, Neg. LLF: 93.23854564101593
Iteration: 6, Func. Count: 54, Neg. LLF: 96.86953364098872
Iteration: 7, Func. Count: 64, Neg. LLF: 114.13363338867265
Iteration: 8, Func. Count: 73, Neg. LLF: 93.40060367755008
Iteration: 9, Func. Count: 82, Neg. LLF: 92.4548494081587
Iteration: 10, Func. Count: 90, Neg. LLF: 92.30376792501653
Iteration: 11, Func. Count: 98, Neg. LLF: 92.1147035440775
Iteration: 12, Func. Count: 106, Neg. LLF: 91.9948651945177
Iteration: 13, Func. Count: 114, Neg. LLF: 91.96860640266976
Iteration: 14, Func. Count: 122, Neg. LLF: 91.95545065577694
Iteration: 15, Func. Count: 130, Neg. LLF: 91.95498998563976
Iteration: 16, Func. Count: 138, Neg. LLF: 91.95497184309387
Iteration: 17, Func. Count: 146, Neg. LLF: 91.95496469835527
Iteration: 18, Func. Count: 153, Neg. LLF: 91.95496468316051
Optimization terminated successfully (Exit mode 0)
Current function value: 91.95496469835527
Iterations: 18
Function evaluations: 153
Gradient evaluations: 18
Iteration: 1, Func. Count: 10, Neg. LLF: 7756219.448642709
Iteration: 2, Func. Count: 20, Neg. LLF: 24771229.03999649
Iteration: 3, Func. Count: 30, Neg. LLF: 1712369.8303817736
Iteration: 4, Func. Count: 40, Neg. LLF: 99.5333142961203
Iteration: 5, Func. Count: 50, Neg. LLF: 93.23213749292847
Iteration: 6, Func. Count: 59, Neg. LLF: 108.12176828405745
Iteration: 7, Func. Count: 69, Neg. LLF: 93.74446315874124
Iteration: 8, Func. Count: 79, Neg. LLF: 92.50869839209518
Iteration: 9, Func. Count: 89, Neg. LLF: 92.13785477600794
Iteration: 10, Func. Count: 98, Neg. LLF: 92.0003914308909
Iteration: 11, Func. Count: 107, Neg. LLF: 91.98161967450855
Iteration: 12, Func. Count: 116, Neg. LLF: 91.95778997930528
Iteration: 13, Func. Count: 125, Neg. LLF: 91.95624865645867
Iteration: 14, Func. Count: 134, Neg. LLF: 91.95502388697494
Iteration: 15, Func. Count: 143, Neg. LLF: 91.95497408810263
Iteration: 16, Func. Count: 152, Neg. LLF: 91.95496457144134
Iteration: 17, Func. Count: 160, Neg. LLF: 91.95496456100659
Optimization terminated successfully (Exit mode 0)
Current function value: 91.95496457144134
Iterations: 17
Function evaluations: 160
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 163.33537392181765
Iteration: 2, Func. Count: 22, Neg. LLF: 24122856.470191143
Iteration: 3, Func. Count: 33, Neg. LLF: 1112075.9120899115
Iteration: 4, Func. Count: 44, Neg. LLF: 1614.1211032328351
Iteration: 5, Func. Count: 55, Neg. LLF: 101.49919886237997
Iteration: 6, Func. Count: 66, Neg. LLF: 92.5981866037296
Iteration: 7, Func. Count: 76, Neg. LLF: 92.31741189733536
Iteration: 8, Func. Count: 86, Neg. LLF: 92.34533748616134
Iteration: 9, Func. Count: 97, Neg. LLF: 94.26552377319265
Iteration: 10, Func. Count: 109, Neg. LLF: 92.02937872396292
Iteration: 11, Func. Count: 119, Neg. LLF: 92.00440559836763
Iteration: 12, Func. Count: 129, Neg. LLF: 91.96253661021203
Iteration: 13, Func. Count: 139, Neg. LLF: 91.95585341253884
Iteration: 14, Func. Count: 149, Neg. LLF: 91.95500830117828
Iteration: 15, Func. Count: 159, Neg. LLF: 91.95496918123571
Iteration: 16, Func. Count: 169, Neg. LLF: 91.95496486213719
Iteration: 17, Func. Count: 178, Neg. LLF: 91.95496491090144
Optimization terminated successfully (Exit mode 0)
Current function value: 91.95496486213719
Iterations: 17
Function evaluations: 178
Gradient evaluations: 17
Iteration: 1, Func. Count: 8, Neg. LLF: 114.68628740296798
Iteration: 2, Func. Count: 17, Neg. LLF: 251623948.80568314
Iteration: 3, Func. Count: 25, Neg. LLF: 5441659.114116761
Iteration: 4, Func. Count: 33, Neg. LLF: 1227277.4705419915
Iteration: 5, Func. Count: 41, Neg. LLF: 3012766.4600578034
Iteration: 6, Func. Count: 49, Neg. LLF: 132.02233942307495
Iteration: 7, Func. Count: 57, Neg. LLF: 288.82411875210704
Iteration: 8, Func. Count: 65, Neg. LLF: 94.16020893184172
Iteration: 9, Func. Count: 73, Neg. LLF: 96.0886421718191
Iteration: 10, Func. Count: 82, Neg. LLF: 93.31354326034706
Iteration: 11, Func. Count: 89, Neg. LLF: 93.22972979165965
Iteration: 12, Func. Count: 96, Neg. LLF: 93.15170081762162
Iteration: 13, Func. Count: 103, Neg. LLF: 93.04501568296284
Iteration: 14, Func. Count: 110, Neg. LLF: 92.98813974741877
Iteration: 15, Func. Count: 117, Neg. LLF: 92.96580519656548
Iteration: 16, Func. Count: 124, Neg. LLF: 92.9628717854858
Iteration: 17, Func. Count: 131, Neg. LLF: 92.96285858932845
Iteration: 18, Func. Count: 138, Neg. LLF: 92.9628578088354
Optimization terminated successfully (Exit mode 0)
Current function value: 92.9628578088354
Iterations: 18
Function evaluations: 138
Gradient evaluations: 18
Iteration: 1, Func. Count: 9, Neg. LLF: 6727339.83190199
Iteration: 2, Func. Count: 18, Neg. LLF: 528.0493193818135
Iteration: 3, Func. Count: 28, Neg. LLF: 101.11751768035894
Iteration: 4, Func. Count: 39, Neg. LLF: 141.03048450490851
Iteration: 5, Func. Count: 48, Neg. LLF: 93.37855110802036
Iteration: 6, Func. Count: 56, Neg. LLF: 110.69080285163955
Iteration: 7, Func. Count: 65, Neg. LLF: 95.20870687719227
Iteration: 8, Func. Count: 75, Neg. LLF: 93.43605619078112
Iteration: 9, Func. Count: 84, Neg. LLF: 92.65421858786932
Iteration: 10, Func. Count: 92, Neg. LLF: 92.60646254558061
Iteration: 11, Func. Count: 100, Neg. LLF: 92.6000802777345
Iteration: 12, Func. Count: 108, Neg. LLF: 92.5983402715582
Iteration: 13, Func. Count: 116, Neg. LLF: 92.59820498476348
Iteration: 14, Func. Count: 124, Neg. LLF: 92.59818929377828
Iteration: 15, Func. Count: 132, Neg. LLF: 92.59818541955012
Iteration: 16, Func. Count: 140, Neg. LLF: 92.59818468296524
Optimization terminated successfully (Exit mode 0)
Current function value: 92.59818468296524
Iterations: 16
Function evaluations: 140
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 110.99176561238768
Iteration: 2, Func. Count: 21, Neg. LLF: 133420766.1377943
Iteration: 3, Func. Count: 31, Neg. LLF: 5901281.041943503
Iteration: 4, Func. Count: 41, Neg. LLF: 107.16383894663943
Iteration: 5, Func. Count: 51, Neg. LLF: 94.2061951219115
Iteration: 6, Func. Count: 61, Neg. LLF: 93.34811776688184
Iteration: 7, Func. Count: 71, Neg. LLF: 92.64795414497242
Iteration: 8, Func. Count: 80, Neg. LLF: 93.06294173987203
Iteration: 9, Func. Count: 90, Neg. LLF: 93.1940955275171
Iteration: 10, Func. Count: 100, Neg. LLF: 92.1468577449346
Iteration: 11, Func. Count: 109, Neg. LLF: 93.09721241349423
Iteration: 12, Func. Count: 119, Neg. LLF: 91.98040639922182
Iteration: 13, Func. Count: 128, Neg. LLF: 91.9601247609175
Iteration: 14, Func. Count: 137, Neg. LLF: 91.95588215912566
Iteration: 15, Func. Count: 146, Neg. LLF: 91.95509046925557
Iteration: 16, Func. Count: 155, Neg. LLF: 91.95496781266021
Iteration: 17, Func. Count: 164, Neg. LLF: 91.95496519204005
Iteration: 18, Func. Count: 173, Neg. LLF: 91.95496447918651
Optimization terminated successfully (Exit mode 0)
Current function value: 91.95496447918651
Iterations: 18
Function evaluations: 173
Gradient evaluations: 18
Iteration: 1, Func. Count: 11, Neg. LLF: 99.23268185346612
Iteration: 2, Func. Count: 22, Neg. LLF: 145878150.99072585
Iteration: 3, Func. Count: 34, Neg. LLF: 118.46045070430563
Iteration: 4, Func. Count: 45, Neg. LLF: 106.12719818095697
Iteration: 5, Func. Count: 56, Neg. LLF: 155.6669003049382
Iteration: 6, Func. Count: 67, Neg. LLF: 93.6423542499975
Iteration: 7, Func. Count: 78, Neg. LLF: 92.66339564730706
Iteration: 8, Func. Count: 89, Neg. LLF: 92.05311626674772
Iteration: 9, Func. Count: 99, Neg. LLF: 91.96958293783673
Iteration: 10, Func. Count: 109, Neg. LLF: 91.95806829969224
Iteration: 11, Func. Count: 119, Neg. LLF: 91.95683335271634
Iteration: 12, Func. Count: 129, Neg. LLF: 91.95503661137458
Iteration: 13, Func. Count: 139, Neg. LLF: 91.95497083970427
Iteration: 14, Func. Count: 149, Neg. LLF: 91.9549650963723
Iteration: 15, Func. Count: 159, Neg. LLF: 91.95496446975223
Optimization terminated successfully (Exit mode 0)
Current function value: 91.95496446975223
Iterations: 15
Function evaluations: 159
Gradient evaluations: 15
Iteration: 1, Func. Count: 12, Neg. LLF: 97.2880743127968
Iteration: 2, Func. Count: 24, Neg. LLF: 128987494.53211579
Iteration: 3, Func. Count: 37, Neg. LLF: 105.63075739133373
Iteration: 4, Func. Count: 49, Neg. LLF: 104.28927715739182
Iteration: 5, Func. Count: 61, Neg. LLF: 125.70612568003011
Iteration: 6, Func. Count: 73, Neg. LLF: 92.06046608799771
Iteration: 7, Func. Count: 84, Neg. LLF: 106.52604931104511
Iteration: 8, Func. Count: 96, Neg. LLF: 91.95984463644167
Iteration: 9, Func. Count: 107, Neg. LLF: 91.95643431125166
Iteration: 10, Func. Count: 118, Neg. LLF: 91.95540851868608
Iteration: 11, Func. Count: 129, Neg. LLF: 91.95497230799286
Iteration: 12, Func. Count: 140, Neg. LLF: 91.95496579100873
Iteration: 13, Func. Count: 151, Neg. LLF: 91.954964474789
Iteration: 14, Func. Count: 161, Neg. LLF: 91.95496452360342
Optimization terminated successfully (Exit mode 0)
Current function value: 91.954964474789
Iterations: 14
Function evaluations: 161
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 129.26856677337457
Iteration: 2, Func. Count: 19, Neg. LLF: 419630155.61747944
Iteration: 3, Func. Count: 28, Neg. LLF: 2757075.608110633
Iteration: 4, Func. Count: 37, Neg. LLF: 83157.32917462774
Iteration: 5, Func. Count: 46, Neg. LLF: 1222798.1815638943
Iteration: 6, Func. Count: 55, Neg. LLF: 252560.4731496593
Iteration: 7, Func. Count: 64, Neg. LLF: 249747.74101029965
Iteration: 8, Func. Count: 73, Neg. LLF: 262097.42331273766
Iteration: 9, Func. Count: 82, Neg. LLF: 95.50265812317028
Iteration: 10, Func. Count: 91, Neg. LLF: 113.62772302140435
Iteration: 11, Func. Count: 100, Neg. LLF: 93.0137848205008
Iteration: 12, Func. Count: 109, Neg. LLF: 92.58881917965307
Iteration: 13, Func. Count: 118, Neg. LLF: 92.43393190740613
Iteration: 14, Func. Count: 127, Neg. LLF: 91.97716140302397
Iteration: 15, Func. Count: 135, Neg. LLF: 91.79673190201189
Iteration: 16, Func. Count: 143, Neg. LLF: 91.7365748416568
Iteration: 17, Func. Count: 151, Neg. LLF: 91.69847423495337
Iteration: 18, Func. Count: 159, Neg. LLF: 91.67113125236911
Iteration: 19, Func. Count: 167, Neg. LLF: 91.66870881416607
Iteration: 20, Func. Count: 175, Neg. LLF: 91.66838714589169
Iteration: 21, Func. Count: 183, Neg. LLF: 91.6683803567899
Iteration: 22, Func. Count: 191, Neg. LLF: 91.66837815759253
Iteration: 23, Func. Count: 198, Neg. LLF: 91.66837815151915
Optimization terminated successfully (Exit mode 0)
Current function value: 91.66837815759253
Iterations: 23
Function evaluations: 198
Gradient evaluations: 23
Iteration: 1, Func. Count: 10, Neg. LLF: 116.31587560789129
Iteration: 2, Func. Count: 21, Neg. LLF: 58704905.73389178
Iteration: 3, Func. Count: 31, Neg. LLF: 16270328.28248239
Iteration: 4, Func. Count: 41, Neg. LLF: 99.90920456454157
Iteration: 5, Func. Count: 52, Neg. LLF: 92.71531509514404
Iteration: 6, Func. Count: 61, Neg. LLF: 93.13004639665859
Iteration: 7, Func. Count: 72, Neg. LLF: 93.56498040311313
Iteration: 8, Func. Count: 82, Neg. LLF: 93.06917311878755
Iteration: 9, Func. Count: 92, Neg. LLF: 91.94920760539274
Iteration: 10, Func. Count: 101, Neg. LLF: 92.84628338884971
Iteration: 11, Func. Count: 111, Neg. LLF: 91.74709166864982
Iteration: 12, Func. Count: 120, Neg. LLF: 91.6928199644706
Iteration: 13, Func. Count: 129, Neg. LLF: 91.67597923563653
Iteration: 14, Func. Count: 138, Neg. LLF: 91.66930029382033
Iteration: 15, Func. Count: 147, Neg. LLF: 91.66865486513245
Iteration: 16, Func. Count: 156, Neg. LLF: 91.66840649162005
Iteration: 17, Func. Count: 165, Neg. LLF: 91.66837955330112
Iteration: 18, Func. Count: 174, Neg. LLF: 91.66837800812556
Iteration: 19, Func. Count: 182, Neg. LLF: 91.66837803845225
Optimization terminated successfully (Exit mode 0)
Current function value: 91.66837800812556
Iterations: 19
Function evaluations: 182
Gradient evaluations: 19
Iteration: 1, Func. Count: 11, Neg. LLF: 104.43485574080829
Iteration: 2, Func. Count: 22, Neg. LLF: 149582520.01779702
Iteration: 3, Func. Count: 33, Neg. LLF: 97.89362689980493
Iteration: 4, Func. Count: 44, Neg. LLF: 96.74889260609373
Iteration: 5, Func. Count: 55, Neg. LLF: 92.97729281622571
Iteration: 6, Func. Count: 66, Neg. LLF: 92.40495471481476
Iteration: 7, Func. Count: 77, Neg. LLF: 92.45107685426603
Iteration: 8, Func. Count: 88, Neg. LLF: 91.73475514894136
Iteration: 9, Func. Count: 98, Neg. LLF: 92.28685171094473
Iteration: 10, Func. Count: 109, Neg. LLF: 91.67371941896488
Iteration: 11, Func. Count: 119, Neg. LLF: 91.66877803983758
Iteration: 12, Func. Count: 129, Neg. LLF: 91.66844862312742
Iteration: 13, Func. Count: 139, Neg. LLF: 91.66837971755666
Iteration: 14, Func. Count: 149, Neg. LLF: 91.66837801871351
Iteration: 15, Func. Count: 158, Neg. LLF: 91.66837803844152
Optimization terminated successfully (Exit mode 0)
Current function value: 91.66837801871351
Iterations: 15
Function evaluations: 158
Gradient evaluations: 15
Iteration: 1, Func. Count: 12, Neg. LLF: 101.22758430685057
Iteration: 2, Func. Count: 24, Neg. LLF: 124234122.78789471
Iteration: 3, Func. Count: 36, Neg. LLF: 326.76328038688916
Iteration: 4, Func. Count: 48, Neg. LLF: 211420.774369985
Iteration: 5, Func. Count: 60, Neg. LLF: 406.2527117349375
Iteration: 6, Func. Count: 72, Neg. LLF: 92.48734385507986
Iteration: 7, Func. Count: 84, Neg. LLF: 96.18471594328157
Iteration: 8, Func. Count: 96, Neg. LLF: 92.27655799144851
Iteration: 9, Func. Count: 108, Neg. LLF: 91.68214410659381
Iteration: 10, Func. Count: 119, Neg. LLF: 91.67767613109362
Iteration: 11, Func. Count: 131, Neg. LLF: 91.66087650017515
Iteration: 12, Func. Count: 142, Neg. LLF: 91.66025910549881
Iteration: 13, Func. Count: 153, Neg. LLF: 91.65921841231514
Iteration: 14, Func. Count: 164, Neg. LLF: 91.65891745823363
Iteration: 15, Func. Count: 175, Neg. LLF: 91.65879487156354
Iteration: 16, Func. Count: 186, Neg. LLF: 91.6587925941842
Iteration: 17, Func. Count: 196, Neg. LLF: 91.65879257810437
Optimization terminated successfully (Exit mode 0)
Current function value: 91.6587925941842
Iterations: 17
Function evaluations: 196
Gradient evaluations: 17
Iteration: 1, Func. Count: 13, Neg. LLF: 100.6277413606826
Iteration: 2, Func. Count: 26, Neg. LLF: 1818.2852473844225
Iteration: 3, Func. Count: 39, Neg. LLF: 228.40017920865498
Iteration: 4, Func. Count: 52, Neg. LLF: 220242.12931228153
Iteration: 5, Func. Count: 65, Neg. LLF: 1442.4752097133974
Iteration: 6, Func. Count: 78, Neg. LLF: 91.74200512278532
Iteration: 7, Func. Count: 90, Neg. LLF: 93.61735045129637
Iteration: 8, Func. Count: 103, Neg. LLF: 91.70428605606803
Iteration: 9, Func. Count: 116, Neg. LLF: 91.66838156594777
Iteration: 10, Func. Count: 128, Neg. LLF: 91.66117446357919
Iteration: 11, Func. Count: 140, Neg. LLF: 91.66006149048341
Iteration: 12, Func. Count: 152, Neg. LLF: 91.65898684398582
Iteration: 13, Func. Count: 164, Neg. LLF: 91.65881159362304
Iteration: 14, Func. Count: 176, Neg. LLF: 91.6587926963744
Iteration: 15, Func. Count: 187, Neg. LLF: 91.65879276355751
Optimization terminated successfully (Exit mode 0)
Current function value: 91.6587926963744
Iterations: 15
Function evaluations: 187
Gradient evaluations: 15
Iteration: 1, Func. Count: 6, Neg. LLF: 125.77094065320982
Iteration: 2, Func. Count: 13, Neg. LLF: 177.56575019866517
Iteration: 3, Func. Count: 19, Neg. LLF: 26015.74210051139
Iteration: 4, Func. Count: 25, Neg. LLF: 130.9945172435404
Iteration: 5, Func. Count: 31, Neg. LLF: 127.48517378066917
Iteration: 6, Func. Count: 37, Neg. LLF: 100.18322511334115
Iteration: 7, Func. Count: 43, Neg. LLF: 97.36929679935741
Iteration: 8, Func. Count: 49, Neg. LLF: 96.12409130320941
Iteration: 9, Func. Count: 55, Neg. LLF: 95.36568895142962
Iteration: 10, Func. Count: 60, Neg. LLF: 95.28247854707787
Iteration: 11, Func. Count: 65, Neg. LLF: 95.4195951694978
Iteration: 12, Func. Count: 71, Neg. LLF: 95.18222999171708
Iteration: 13, Func. Count: 76, Neg. LLF: 95.17040386047366
Iteration: 14, Func. Count: 81, Neg. LLF: 95.1700050089076
Iteration: 15, Func. Count: 85, Neg. LLF: 95.17000499961503
Optimization terminated successfully (Exit mode 0)
Current function value: 95.1700050089076
Iterations: 15
Function evaluations: 85
Gradient evaluations: 15
Iteration: 1, Func. Count: 7, Neg. LLF: 281.99753592998167
Iteration: 2, Func. Count: 14, Neg. LLF: 7720.644953902189
Iteration: 3, Func. Count: 21, Neg. LLF: 7307.578392451689
Iteration: 4, Func. Count: 28, Neg. LLF: 101.1126776625681
Iteration: 5, Func. Count: 35, Neg. LLF: 95.05361909129672
Iteration: 6, Func. Count: 41, Neg. LLF: 95.57190396737982
Iteration: 7, Func. Count: 50, Neg. LLF: 95.26805863409834
Iteration: 8, Func. Count: 58, Neg. LLF: 94.97382193604412
Iteration: 9, Func. Count: 64, Neg. LLF: 94.96762470434125
Iteration: 10, Func. Count: 70, Neg. LLF: 94.9673771080311
Iteration: 11, Func. Count: 76, Neg. LLF: 94.96732064286137
Iteration: 12, Func. Count: 82, Neg. LLF: 94.9673163344259
Iteration: 13, Func. Count: 87, Neg. LLF: 94.96731633437939
Optimization terminated successfully (Exit mode 0)
Current function value: 94.9673163344259
Iterations: 13
Function evaluations: 87
Gradient evaluations: 13
Iteration: 1, Func. Count: 8, Neg. LLF: 494.3074244621434
Iteration: 2, Func. Count: 16, Neg. LLF: 1513.2471527134064
Iteration: 3, Func. Count: 24, Neg. LLF: 1453.2082080906698
Iteration: 4, Func. Count: 32, Neg. LLF: 99.73696818129552
Iteration: 5, Func. Count: 40, Neg. LLF: 94.93693922357207
Iteration: 6, Func. Count: 47, Neg. LLF: 99.97244145007632
Iteration: 7, Func. Count: 55, Neg. LLF: 94.35220013051585
Iteration: 8, Func. Count: 62, Neg. LLF: 94.05231599586686
Iteration: 9, Func. Count: 69, Neg. LLF: 93.80003466107983
Iteration: 10, Func. Count: 76, Neg. LLF: 94.88952199386954
Iteration: 11, Func. Count: 84, Neg. LLF: 93.64798714117174
Iteration: 12, Func. Count: 91, Neg. LLF: 93.62477795590821
Iteration: 13, Func. Count: 98, Neg. LLF: 93.62445055436298
Iteration: 14, Func. Count: 105, Neg. LLF: 93.62441666740143
Iteration: 15, Func. Count: 112, Neg. LLF: 93.62441307935548
Iteration: 16, Func. Count: 118, Neg. LLF: 93.62441290107462
Optimization terminated successfully (Exit mode 0)
Current function value: 93.62441307935548
Iterations: 16
Function evaluations: 118
Gradient evaluations: 16
Iteration: 1, Func. Count: 9, Neg. LLF: 116.10948848741141
Iteration: 2, Func. Count: 18, Neg. LLF: 1940.37212749307
Iteration: 3, Func. Count: 27, Neg. LLF: 366.5226363844624
Iteration: 4, Func. Count: 36, Neg. LLF: 105.44873898067594
Iteration: 5, Func. Count: 45, Neg. LLF: 95.70761234143934
Iteration: 6, Func. Count: 54, Neg. LLF: 93.82815047434966
Iteration: 7, Func. Count: 62, Neg. LLF: 115.53238351818209
Iteration: 8, Func. Count: 71, Neg. LLF: 106.50946685799869
Iteration: 9, Func. Count: 81, Neg. LLF: 93.15681617221416
Iteration: 10, Func. Count: 90, Neg. LLF: 92.84069914974799
Iteration: 11, Func. Count: 98, Neg. LLF: 92.83876747533299
Iteration: 12, Func. Count: 106, Neg. LLF: 92.83754077759546
Iteration: 13, Func. Count: 114, Neg. LLF: 92.8374763528074
Iteration: 14, Func. Count: 122, Neg. LLF: 92.83746310796431
Iteration: 15, Func. Count: 130, Neg. LLF: 92.83746003272708
Optimization terminated successfully (Exit mode 0)
Current function value: 92.83746211766653
Iterations: 15
Function evaluations: 132
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 121.08851281502074
Iteration: 2, Func. Count: 20, Neg. LLF: 16711.673103122826
Iteration: 3, Func. Count: 30, Neg. LLF: 369.91980027929395
Iteration: 4, Func. Count: 40, Neg. LLF: 107.48336354072204
Iteration: 5, Func. Count: 50, Neg. LLF: 96.00129977396567
Iteration: 6, Func. Count: 60, Neg. LLF: 93.96778500240232
Iteration: 7, Func. Count: 69, Neg. LLF: 112.00221092547041
Iteration: 8, Func. Count: 80, Neg. LLF: 101.1104944506305
Iteration: 9, Func. Count: 91, Neg. LLF: 95.18472382723455
Iteration: 10, Func. Count: 102, Neg. LLF: 93.17801972184353
Iteration: 11, Func. Count: 112, Neg. LLF: 92.82649167397724
Iteration: 12, Func. Count: 121, Neg. LLF: 92.82447542629986
Iteration: 13, Func. Count: 130, Neg. LLF: 92.8241032156775
Iteration: 14, Func. Count: 139, Neg. LLF: 92.82399912954234
Iteration: 15, Func. Count: 148, Neg. LLF: 92.8239668860059
Iteration: 16, Func. Count: 157, Neg. LLF: 92.82394166148053
Iteration: 17, Func. Count: 166, Neg. LLF: 92.82395206779378
Iteration: 18, Func. Count: 185, Neg. LLF: 92.82395809822889
Iteration: 19, Func. Count: 196, Neg. LLF: 92.82395670664232
Iteration: 20, Func. Count: 215, Neg. LLF: 92.82389454672064
Iteration: 21, Func. Count: 234, Neg. LLF: 92.82397541407532
Iteration: 22, Func. Count: 245, Neg. LLF: 92.82396515389773
Iteration: 23, Func. Count: 257, Neg. LLF: 92.82396094792534
Iteration: 24, Func. Count: 268, Neg. LLF: 92.82395804134829
Iteration: 25, Func. Count: 279, Neg. LLF: 92.82395801495328
Iteration: 26, Func. Count: 290, Neg. LLF: 92.82395800141964
Iteration: 27, Func. Count: 300, Neg. LLF: 92.8239580014001
Optimization terminated successfully (Exit mode 0)
Current function value: 92.82395348140193
Iterations: 28
Function evaluations: 301
Gradient evaluations: 27
Iteration: 1, Func. Count: 7, Neg. LLF: 117.78544975427774
Iteration: 2, Func. Count: 15, Neg. LLF: 232.65703724944117
Iteration: 3, Func. Count: 22, Neg. LLF: 410.77467606272904
Iteration: 4, Func. Count: 29, Neg. LLF: 730.9756477181414
Iteration: 5, Func. Count: 36, Neg. LLF: 177.39573604666114
Iteration: 6, Func. Count: 43, Neg. LLF: 108.79114199747964
Iteration: 7, Func. Count: 50, Neg. LLF: 99.18601895807798
Iteration: 8, Func. Count: 57, Neg. LLF: 95.3796881657389
Iteration: 9, Func. Count: 64, Neg. LLF: 94.8502641351806
Iteration: 10, Func. Count: 71, Neg. LLF: 94.7552940632007
Iteration: 11, Func. Count: 78, Neg. LLF: 94.38011891022548
Iteration: 12, Func. Count: 84, Neg. LLF: 94.33106988488325
Iteration: 13, Func. Count: 90, Neg. LLF: 94.32698283481211
Iteration: 14, Func. Count: 96, Neg. LLF: 94.32658953895415
Iteration: 15, Func. Count: 102, Neg. LLF: 94.32645297987652
Iteration: 16, Func. Count: 108, Neg. LLF: 94.32645230878367
Optimization terminated successfully (Exit mode 0)
Current function value: 94.32645230878367
Iterations: 16
Function evaluations: 108
Gradient evaluations: 16
Iteration: 1, Func. Count: 8, Neg. LLF: 31919175.92533062
Iteration: 2, Func. Count: 16, Neg. LLF: 7917809.502625721
Iteration: 3, Func. Count: 24, Neg. LLF: 101.42780293474154
Iteration: 4, Func. Count: 32, Neg. LLF: 93.42057344591926
Iteration: 5, Func. Count: 40, Neg. LLF: 93.16913824409065
Iteration: 6, Func. Count: 48, Neg. LLF: 92.92758211206106
Iteration: 7, Func. Count: 56, Neg. LLF: 92.83588709202171
Iteration: 8, Func. Count: 64, Neg. LLF: 92.75697463857469
Iteration: 9, Func. Count: 71, Neg. LLF: 92.73892200962631
Iteration: 10, Func. Count: 78, Neg. LLF: 92.73793234671436
Iteration: 11, Func. Count: 85, Neg. LLF: 92.73786554785181
Iteration: 12, Func. Count: 92, Neg. LLF: 92.7378647972582
Optimization terminated successfully (Exit mode 0)
Current function value: 92.7378647972582
Iterations: 12
Function evaluations: 92
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 550.346403915414
Iteration: 2, Func. Count: 18, Neg. LLF: 927.2917416496382
Iteration: 3, Func. Count: 27, Neg. LLF: 2113.644656469991
Iteration: 4, Func. Count: 36, Neg. LLF: 101.17133695555142
Iteration: 5, Func. Count: 45, Neg. LLF: 106.79921414678215
Iteration: 6, Func. Count: 54, Neg. LLF: 93.61185410839005
Iteration: 7, Func. Count: 62, Neg. LLF: 93.7259015795572
Iteration: 8, Func. Count: 71, Neg. LLF: 94.4333630085627
Iteration: 9, Func. Count: 80, Neg. LLF: 92.76670247790331
Iteration: 10, Func. Count: 88, Neg. LLF: 92.8953489699027
Iteration: 11, Func. Count: 97, Neg. LLF: 92.74604537493013
Iteration: 12, Func. Count: 106, Neg. LLF: 92.73792733273126
Iteration: 13, Func. Count: 114, Neg. LLF: 92.73786631015318
Iteration: 14, Func. Count: 122, Neg. LLF: 92.7378649053948
Iteration: 15, Func. Count: 129, Neg. LLF: 92.73786475714991
Optimization terminated successfully (Exit mode 0)
Current function value: 92.7378649053948
Iterations: 15
Function evaluations: 129
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 112.82989229080448
Iteration: 2, Func. Count: 20, Neg. LLF: 623.8408226124689
Iteration: 3, Func. Count: 30, Neg. LLF: 607.1560335949099
Iteration: 4, Func. Count: 40, Neg. LLF: 98.73589132887285
Iteration: 5, Func. Count: 50, Neg. LLF: 94.28408589731988
Iteration: 6, Func. Count: 59, Neg. LLF: 93.64332759435321
Iteration: 7, Func. Count: 68, Neg. LLF: 93.55222025397408
Iteration: 8, Func. Count: 78, Neg. LLF: 93.29905653597054
Iteration: 9, Func. Count: 87, Neg. LLF: 93.04175135499602
Iteration: 10, Func. Count: 97, Neg. LLF: 92.79432630426373
Iteration: 11, Func. Count: 106, Neg. LLF: 92.77275397149575
Iteration: 12, Func. Count: 115, Neg. LLF: 92.76016953103417
Iteration: 13, Func. Count: 124, Neg. LLF: 92.74371213745948
Iteration: 14, Func. Count: 133, Neg. LLF: 92.74019003539185
Iteration: 15, Func. Count: 142, Neg. LLF: 92.73804754312899
Iteration: 16, Func. Count: 151, Neg. LLF: 92.73787762792026
Iteration: 17, Func. Count: 160, Neg. LLF: 92.73786507690203
Iteration: 18, Func. Count: 168, Neg. LLF: 92.73786493492861
Optimization terminated successfully (Exit mode 0)
Current function value: 92.73786507690203
Iterations: 18
Function evaluations: 168
Gradient evaluations: 18
Iteration: 1, Func. Count: 11, Neg. LLF: 114.92447594556968
Iteration: 2, Func. Count: 22, Neg. LLF: 2481.335109153814
Iteration: 3, Func. Count: 33, Neg. LLF: 8565.504829627733
Iteration: 4, Func. Count: 44, Neg. LLF: 102.2491275958779
Iteration: 5, Func. Count: 55, Neg. LLF: 98.3537730240845
Iteration: 6, Func. Count: 66, Neg. LLF: 94.81156754717024
Iteration: 7, Func. Count: 77, Neg. LLF: 93.35910013601357
Iteration: 8, Func. Count: 87, Neg. LLF: 93.20035763175383
Iteration: 9, Func. Count: 97, Neg. LLF: 94.33835852798842
Iteration: 10, Func. Count: 108, Neg. LLF: 93.16194554408754
Iteration: 11, Func. Count: 119, Neg. LLF: 93.0703505899193
Iteration: 12, Func. Count: 130, Neg. LLF: 92.92537473535641
Iteration: 13, Func. Count: 141, Neg. LLF: 93.19581545085624
Iteration: 14, Func. Count: 152, Neg. LLF: 92.75482721211908
Iteration: 15, Func. Count: 163, Neg. LLF: 92.73891618711869
Iteration: 16, Func. Count: 173, Neg. LLF: 92.73790489915966
Iteration: 17, Func. Count: 183, Neg. LLF: 92.73788091749134
Iteration: 18, Func. Count: 193, Neg. LLF: 92.73786481847024
Iteration: 19, Func. Count: 202, Neg. LLF: 92.73786464057025
Optimization terminated successfully (Exit mode 0)
Current function value: 92.73786481847024
Iterations: 19
Function evaluations: 202
Gradient evaluations: 19
Iteration: 1, Func. Count: 8, Neg. LLF: 107.78632421960042
Iteration: 2, Func. Count: 17, Neg. LLF: 414.9183229586968
Iteration: 3, Func. Count: 25, Neg. LLF: 2982317.5610331646
Iteration: 4, Func. Count: 33, Neg. LLF: 1111523.13409411
Iteration: 5, Func. Count: 41, Neg. LLF: 98.53293810723606
Iteration: 6, Func. Count: 49, Neg. LLF: 94.29989287439548
Iteration: 7, Func. Count: 57, Neg. LLF: 94.77276798226008
Iteration: 8, Func. Count: 65, Neg. LLF: 94.07915214501553
Iteration: 9, Func. Count: 73, Neg. LLF: 92.48030929394312
Iteration: 10, Func. Count: 81, Neg. LLF: 92.17488233518345
Iteration: 11, Func. Count: 88, Neg. LLF: 92.09282131651698
Iteration: 12, Func. Count: 95, Neg. LLF: 92.05512212341009
Iteration: 13, Func. Count: 102, Neg. LLF: 92.01754451082732
Iteration: 14, Func. Count: 109, Neg. LLF: 92.01142521563222
Iteration: 15, Func. Count: 116, Neg. LLF: 92.0092146632834
Iteration: 16, Func. Count: 123, Neg. LLF: 92.00863318999363
Iteration: 17, Func. Count: 130, Neg. LLF: 92.00856956658946
Iteration: 18, Func. Count: 137, Neg. LLF: 92.00854779335069
Iteration: 19, Func. Count: 143, Neg. LLF: 92.0085477911484
Optimization terminated successfully (Exit mode 0)
Current function value: 92.00854779335069
Iterations: 19
Function evaluations: 143
Gradient evaluations: 19
Iteration: 1, Func. Count: 9, Neg. LLF: 20942804.155741476
Iteration: 2, Func. Count: 18, Neg. LLF: 2438299.0526505318
Iteration: 3, Func. Count: 27, Neg. LLF: 100.01050264694737
Iteration: 4, Func. Count: 36, Neg. LLF: 99.06396932019952
Iteration: 5, Func. Count: 45, Neg. LLF: 91.99353162019148
Iteration: 6, Func. Count: 53, Neg. LLF: 92.37157980364935
Iteration: 7, Func. Count: 62, Neg. LLF: 92.01152958478139
Iteration: 8, Func. Count: 71, Neg. LLF: 91.9572824295275
Iteration: 9, Func. Count: 79, Neg. LLF: 91.95695915450769
Iteration: 10, Func. Count: 87, Neg. LLF: 91.9567625814186
Iteration: 11, Func. Count: 95, Neg. LLF: 91.9567556819568
Iteration: 12, Func. Count: 102, Neg. LLF: 91.95675565339924
Optimization terminated successfully (Exit mode 0)
Current function value: 91.9567556819568
Iterations: 12
Function evaluations: 102
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 7739385.704483081
Iteration: 2, Func. Count: 20, Neg. LLF: 3156775.1925235167
Iteration: 3, Func. Count: 30, Neg. LLF: 1732561.5649088786
Iteration: 4, Func. Count: 40, Neg. LLF: 99.12909793986336
Iteration: 5, Func. Count: 50, Neg. LLF: 123.29333198307135
Iteration: 6, Func. Count: 60, Neg. LLF: 92.74421684292128
Iteration: 7, Func. Count: 70, Neg. LLF: 92.22952217410594
Iteration: 8, Func. Count: 80, Neg. LLF: 92.89660998600023
Iteration: 9, Func. Count: 90, Neg. LLF: 91.88327913895601
Iteration: 10, Func. Count: 99, Neg. LLF: 91.99629328228995
Iteration: 11, Func. Count: 109, Neg. LLF: 91.75007748838844
Iteration: 12, Func. Count: 118, Neg. LLF: 91.76904117014986
Iteration: 13, Func. Count: 128, Neg. LLF: 91.73579435052501
Iteration: 14, Func. Count: 137, Neg. LLF: 91.73039630650148
Iteration: 15, Func. Count: 146, Neg. LLF: 91.7298575661857
Iteration: 16, Func. Count: 155, Neg. LLF: 91.72983364765868
Iteration: 17, Func. Count: 164, Neg. LLF: 91.72982844269507
Iteration: 18, Func. Count: 172, Neg. LLF: 91.7298284313162
Optimization terminated successfully (Exit mode 0)
Current function value: 91.72982844269507
Iterations: 18
Function evaluations: 172
Gradient evaluations: 18
Iteration: 1, Func. Count: 11, Neg. LLF: 5485441.7555902
Iteration: 2, Func. Count: 22, Neg. LLF: 68158410.45846312
Iteration: 3, Func. Count: 34, Neg. LLF: 1212742.5415298585
Iteration: 4, Func. Count: 45, Neg. LLF: 103.15306836127121
Iteration: 5, Func. Count: 56, Neg. LLF: 95.55651498044844
Iteration: 6, Func. Count: 67, Neg. LLF: 102.88964003972092
Iteration: 7, Func. Count: 78, Neg. LLF: 92.04737990371761
Iteration: 8, Func. Count: 88, Neg. LLF: 93.38965860147661
Iteration: 9, Func. Count: 99, Neg. LLF: 92.2316656465964
Iteration: 10, Func. Count: 110, Neg. LLF: 91.96239580078853
Iteration: 11, Func. Count: 121, Neg. LLF: 91.77637121367293
Iteration: 12, Func. Count: 131, Neg. LLF: 91.77920119381625
Iteration: 13, Func. Count: 142, Neg. LLF: 91.73107937686397
Iteration: 14, Func. Count: 152, Neg. LLF: 91.73026241284919
Iteration: 15, Func. Count: 162, Neg. LLF: 91.72990925950374
Iteration: 16, Func. Count: 172, Neg. LLF: 91.72984157009884
Iteration: 17, Func. Count: 182, Neg. LLF: 91.72982803360819
Iteration: 18, Func. Count: 191, Neg. LLF: 91.72982803007103
Optimization terminated successfully (Exit mode 0)
Current function value: 91.72982803360819
Iterations: 18
Function evaluations: 191
Gradient evaluations: 18
Iteration: 1, Func. Count: 12, Neg. LLF: 5624530.513352244
Iteration: 2, Func. Count: 24, Neg. LLF: 107405414.34975682
Iteration: 3, Func. Count: 37, Neg. LLF: 1199783.2256944913
Iteration: 4, Func. Count: 49, Neg. LLF: 106.6191525602511
Iteration: 5, Func. Count: 61, Neg. LLF: 110.64094843235922
Iteration: 6, Func. Count: 73, Neg. LLF: 95.89005008275575
Iteration: 7, Func. Count: 85, Neg. LLF: 92.35374219170907
Iteration: 8, Func. Count: 96, Neg. LLF: 92.77082972365933
Iteration: 9, Func. Count: 108, Neg. LLF: 93.21171844511163
Iteration: 10, Func. Count: 121, Neg. LLF: 91.85281512143399
Iteration: 11, Func. Count: 132, Neg. LLF: 91.85373206831626
Iteration: 12, Func. Count: 144, Neg. LLF: 91.74373646330811
Iteration: 13, Func. Count: 155, Neg. LLF: 91.74845416041124
Iteration: 14, Func. Count: 167, Neg. LLF: 91.73136071673018
Iteration: 15, Func. Count: 178, Neg. LLF: 91.72995911512238
Iteration: 16, Func. Count: 189, Neg. LLF: 91.72983908279653
Iteration: 17, Func. Count: 200, Neg. LLF: 91.72982809457469
Iteration: 18, Func. Count: 210, Neg. LLF: 91.72982812720508
Optimization terminated successfully (Exit mode 0)
Current function value: 91.72982809457469
Iterations: 18
Function evaluations: 210
Gradient evaluations: 18
Iteration: 1, Func. Count: 9, Neg. LLF: 124.39879384275022
Iteration: 2, Func. Count: 19, Neg. LLF: 434.7689831989309
Iteration: 3, Func. Count: 28, Neg. LLF: 2967562.112142389
Iteration: 4, Func. Count: 37, Neg. LLF: 1075136.1308097055
Iteration: 5, Func. Count: 46, Neg. LLF: 138.42684699679788
Iteration: 6, Func. Count: 55, Neg. LLF: 100.94643917154224
Iteration: 7, Func. Count: 64, Neg. LLF: 93.26756767438421
Iteration: 8, Func. Count: 73, Neg. LLF: 94.44348611046665
Iteration: 9, Func. Count: 82, Neg. LLF: 93.89044717755947
Iteration: 10, Func. Count: 91, Neg. LLF: 92.15736141999868
Iteration: 11, Func. Count: 99, Neg. LLF: 92.66367571776341
Iteration: 12, Func. Count: 108, Neg. LLF: 93.23458813388048
Iteration: 13, Func. Count: 117, Neg. LLF: 92.10533855377396
Iteration: 14, Func. Count: 126, Neg. LLF: 92.0404526838299
Iteration: 15, Func. Count: 134, Neg. LLF: 92.0117663624201
Iteration: 16, Func. Count: 142, Neg. LLF: 92.00872788914779
Iteration: 17, Func. Count: 150, Neg. LLF: 92.00855392281936
Iteration: 18, Func. Count: 158, Neg. LLF: 92.00854803602701
Iteration: 19, Func. Count: 165, Neg. LLF: 92.0085480641119
Optimization terminated successfully (Exit mode 0)
Current function value: 92.00854803602701
Iterations: 19
Function evaluations: 165
Gradient evaluations: 19
Iteration: 1, Func. Count: 10, Neg. LLF: 3500601.60352402
Iteration: 2, Func. Count: 20, Neg. LLF: 339.1594676161681
Iteration: 3, Func. Count: 30, Neg. LLF: 119.24062262405486
Iteration: 4, Func. Count: 40, Neg. LLF: 106.13999221444773
Iteration: 5, Func. Count: 50, Neg. LLF: 92.12163236880353
Iteration: 6, Func. Count: 59, Neg. LLF: 92.94414657820381
Iteration: 7, Func. Count: 69, Neg. LLF: 92.3809144832344
Iteration: 8, Func. Count: 79, Neg. LLF: 91.97789557363144
Iteration: 9, Func. Count: 88, Neg. LLF: 91.96830335068414
Iteration: 10, Func. Count: 97, Neg. LLF: 91.95857504312082
Iteration: 11, Func. Count: 106, Neg. LLF: 91.95688482296
Iteration: 12, Func. Count: 115, Neg. LLF: 91.95676513988653
Iteration: 13, Func. Count: 124, Neg. LLF: 91.95675539247769
Iteration: 14, Func. Count: 132, Neg. LLF: 91.95675536392056
Optimization terminated successfully (Exit mode 0)
Current function value: 91.95675539247769
Iterations: 14
Function evaluations: 132
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 5896137.418810794
Iteration: 2, Func. Count: 22, Neg. LLF: 117054445.41718858
Iteration: 3, Func. Count: 34, Neg. LLF: 1200436.345891472
Iteration: 4, Func. Count: 45, Neg. LLF: 104.73586669980338
Iteration: 5, Func. Count: 56, Neg. LLF: 94.42611317577521
Iteration: 6, Func. Count: 67, Neg. LLF: 93.05910546464634
Iteration: 7, Func. Count: 78, Neg. LLF: 92.52686999258626
Iteration: 8, Func. Count: 89, Neg. LLF: 92.31731310623958
Iteration: 9, Func. Count: 100, Neg. LLF: 92.01984785979674
Iteration: 10, Func. Count: 111, Neg. LLF: 92.34050184909407
Iteration: 11, Func. Count: 122, Neg. LLF: 91.81214588197466
Iteration: 12, Func. Count: 132, Neg. LLF: 91.74156756034216
Iteration: 13, Func. Count: 142, Neg. LLF: 91.75640057053909
Iteration: 14, Func. Count: 153, Neg. LLF: 91.73030744596079
Iteration: 15, Func. Count: 163, Neg. LLF: 91.72984905130721
Iteration: 16, Func. Count: 173, Neg. LLF: 91.72982972102444
Iteration: 17, Func. Count: 183, Neg. LLF: 91.7298278925222
Iteration: 18, Func. Count: 192, Neg. LLF: 91.7298278810841
Optimization terminated successfully (Exit mode 0)
Current function value: 91.7298278925222
Iterations: 18
Function evaluations: 192
Gradient evaluations: 18
Iteration: 1, Func. Count: 12, Neg. LLF: 6452671.469842133
Iteration: 2, Func. Count: 24, Neg. LLF: 142142848.38595977
Iteration: 3, Func. Count: 37, Neg. LLF: 1167061.2684909403
Iteration: 4, Func. Count: 49, Neg. LLF: 108.14874761725547
Iteration: 5, Func. Count: 61, Neg. LLF: 110.67126388081745
Iteration: 6, Func. Count: 73, Neg. LLF: 105.95727031162897
Iteration: 7, Func. Count: 85, Neg. LLF: 92.59161997696098
Iteration: 8, Func. Count: 96, Neg. LLF: 92.55091179739031
Iteration: 9, Func. Count: 108, Neg. LLF: 92.43167854328212
Iteration: 10, Func. Count: 121, Neg. LLF: 91.8926421551265
Iteration: 11, Func. Count: 132, Neg. LLF: 92.75027506143441
Iteration: 12, Func. Count: 145, Neg. LLF: 91.82008476436442
Iteration: 13, Func. Count: 156, Neg. LLF: 91.76792581480413
Iteration: 14, Func. Count: 167, Neg. LLF: 91.7488651994484
Iteration: 15, Func. Count: 178, Neg. LLF: 91.73326953069764
Iteration: 16, Func. Count: 189, Neg. LLF: 91.730342932948
Iteration: 17, Func. Count: 200, Neg. LLF: 91.72990030413942
Iteration: 18, Func. Count: 211, Neg. LLF: 91.72983194839219
Iteration: 19, Func. Count: 222, Neg. LLF: 91.72982868366475
Iteration: 20, Func. Count: 233, Neg. LLF: 91.7298278444931
Optimization terminated successfully (Exit mode 0)
Current function value: 91.7298278444931
Iterations: 20
Function evaluations: 233
Gradient evaluations: 20
Iteration: 1, Func. Count: 13, Neg. LLF: 6908119.242687936
Iteration: 2, Func. Count: 26, Neg. LLF: 160284656.5262161
Iteration: 3, Func. Count: 40, Neg. LLF: 1153754.7503619369
Iteration: 4, Func. Count: 53, Neg. LLF: 113.6643124755614
Iteration: 5, Func. Count: 66, Neg. LLF: 269.12032256859897
Iteration: 6, Func. Count: 79, Neg. LLF: 100.50874581254259
Iteration: 7, Func. Count: 92, Neg. LLF: 92.46192516359675
Iteration: 8, Func. Count: 104, Neg. LLF: 92.31130011443209
Iteration: 9, Func. Count: 117, Neg. LLF: 92.6852113507791
Iteration: 10, Func. Count: 131, Neg. LLF: 91.94150120349408
Iteration: 11, Func. Count: 144, Neg. LLF: 91.83279936685453
Iteration: 12, Func. Count: 156, Neg. LLF: 91.90329751833384
Iteration: 13, Func. Count: 169, Neg. LLF: 91.77261900074318
Iteration: 14, Func. Count: 182, Neg. LLF: 91.73274546634659
Iteration: 15, Func. Count: 194, Neg. LLF: 91.7300901161588
Iteration: 16, Func. Count: 206, Neg. LLF: 91.72986316807257
Iteration: 17, Func. Count: 218, Neg. LLF: 91.72983570297022
Iteration: 18, Func. Count: 230, Neg. LLF: 91.72982797706089
Iteration: 19, Func. Count: 241, Neg. LLF: 91.72982800964891
Optimization terminated successfully (Exit mode 0)
Current function value: 91.72982797706089
Iterations: 19
Function evaluations: 241
Gradient evaluations: 19
Iteration: 1, Func. Count: 10, Neg. LLF: 134.8716915982875
Iteration: 2, Func. Count: 21, Neg. LLF: 461.3075149363786
Iteration: 3, Func. Count: 31, Neg. LLF: 2966894.7432625606
Iteration: 4, Func. Count: 41, Neg. LLF: 262688.0579108638
Iteration: 5, Func. Count: 51, Neg. LLF: 263570.7637346709
Iteration: 6, Func. Count: 61, Neg. LLF: 98.32894969480459
Iteration: 7, Func. Count: 71, Neg. LLF: 93.00597631035862
Iteration: 8, Func. Count: 81, Neg. LLF: 95.13883327875912
Iteration: 9, Func. Count: 91, Neg. LLF: 91.96240102818855
Iteration: 10, Func. Count: 100, Neg. LLF: 92.03779699452642
Iteration: 11, Func. Count: 110, Neg. LLF: 92.15989633296856
Iteration: 12, Func. Count: 120, Neg. LLF: 91.77538784583385
Iteration: 13, Func. Count: 130, Neg. LLF: 91.6216464847016
Iteration: 14, Func. Count: 139, Neg. LLF: 91.61093755934989
Iteration: 15, Func. Count: 148, Neg. LLF: 91.60709514368938
Iteration: 16, Func. Count: 157, Neg. LLF: 91.60618320658668
Iteration: 17, Func. Count: 166, Neg. LLF: 91.60617464103838
Iteration: 18, Func. Count: 174, Neg. LLF: 91.60617463593762
Optimization terminated successfully (Exit mode 0)
Current function value: 91.60617464103838
Iterations: 18
Function evaluations: 174
Gradient evaluations: 18
Iteration: 1, Func. Count: 11, Neg. LLF: 5825152.937253874
Iteration: 2, Func. Count: 22, Neg. LLF: 37720893.27128161
Iteration: 3, Func. Count: 33, Neg. LLF: 113.79833984980131
Iteration: 4, Func. Count: 44, Neg. LLF: 1713074.7553076774
Iteration: 5, Func. Count: 55, Neg. LLF: 94.50315345050076
Iteration: 6, Func. Count: 66, Neg. LLF: 127.12040544375944
Iteration: 7, Func. Count: 77, Neg. LLF: 92.09026208798392
Iteration: 8, Func. Count: 87, Neg. LLF: 91.9765845034227
Iteration: 9, Func. Count: 97, Neg. LLF: 92.24928295708325
Iteration: 10, Func. Count: 108, Neg. LLF: 91.93943930758638
Iteration: 11, Func. Count: 118, Neg. LLF: 92.55713494610772
Iteration: 12, Func. Count: 129, Neg. LLF: 92.37732420736259
Iteration: 13, Func. Count: 140, Neg. LLF: 91.92359709731105
Iteration: 14, Func. Count: 151, Neg. LLF: 92.1311694757583
Iteration: 15, Func. Count: 162, Neg. LLF: 91.72825551095036
Iteration: 16, Func. Count: 172, Neg. LLF: 92.21330023944795
Iteration: 17, Func. Count: 183, Neg. LLF: 91.64698735138118
Iteration: 18, Func. Count: 193, Neg. LLF: 91.62408962793555
Iteration: 19, Func. Count: 203, Neg. LLF: 91.60959435394028
Iteration: 20, Func. Count: 213, Neg. LLF: 91.60666051069795
Iteration: 21, Func. Count: 223, Neg. LLF: 91.60628868626316
Iteration: 22, Func. Count: 233, Neg. LLF: 91.60619346967074
Iteration: 23, Func. Count: 243, Neg. LLF: 91.60617578818895
Iteration: 24, Func. Count: 253, Neg. LLF: 91.60617454558366
Iteration: 25, Func. Count: 262, Neg. LLF: 91.6061745686362
Optimization terminated successfully (Exit mode 0)
Current function value: 91.60617454558366
Iterations: 25
Function evaluations: 262
Gradient evaluations: 25
Iteration: 1, Func. Count: 12, Neg. LLF: 6520026.571999418
Iteration: 2, Func. Count: 24, Neg. LLF: 138012751.8876827
Iteration: 3, Func. Count: 37, Neg. LLF: 1240230.4173046213
Iteration: 4, Func. Count: 49, Neg. LLF: 112.36100768748054
Iteration: 5, Func. Count: 61, Neg. LLF: 98.30013529472309
Iteration: 6, Func. Count: 73, Neg. LLF: 102.29701387338922
Iteration: 7, Func. Count: 85, Neg. LLF: 92.8298656129527
Iteration: 8, Func. Count: 97, Neg. LLF: 93.79258694820405
Iteration: 9, Func. Count: 109, Neg. LLF: 91.92496068336328
Iteration: 10, Func. Count: 120, Neg. LLF: 91.69954656134367
Iteration: 11, Func. Count: 131, Neg. LLF: 91.96205918623647
Iteration: 12, Func. Count: 143, Neg. LLF: 91.70594642728116
Iteration: 13, Func. Count: 155, Neg. LLF: 91.6099406228704
Iteration: 14, Func. Count: 166, Neg. LLF: 91.60739932385916
Iteration: 15, Func. Count: 177, Neg. LLF: 91.60643248951449
Iteration: 16, Func. Count: 188, Neg. LLF: 91.60619709422879
Iteration: 17, Func. Count: 199, Neg. LLF: 91.60617602856009
Iteration: 18, Func. Count: 210, Neg. LLF: 91.60617460074376
Iteration: 19, Func. Count: 220, Neg. LLF: 91.60617461362625
Optimization terminated successfully (Exit mode 0)
Current function value: 91.60617460074376
Iterations: 19
Function evaluations: 220
Gradient evaluations: 19
Iteration: 1, Func. Count: 13, Neg. LLF: 7313752.6469334075
Iteration: 2, Func. Count: 26, Neg. LLF: 168068426.26457602
Iteration: 3, Func. Count: 40, Neg. LLF: 1174784.3712900921
Iteration: 4, Func. Count: 53, Neg. LLF: 120.24056142673798
Iteration: 5, Func. Count: 66, Neg. LLF: 111.08544417100917
Iteration: 6, Func. Count: 79, Neg. LLF: 102.16409363901757
Iteration: 7, Func. Count: 92, Neg. LLF: 95.8862206952481
Iteration: 8, Func. Count: 105, Neg. LLF: 93.03603776450373
Iteration: 9, Func. Count: 118, Neg. LLF: 93.87344429711027
Iteration: 10, Func. Count: 131, Neg. LLF: 92.11295964029938
Iteration: 11, Func. Count: 144, Neg. LLF: 91.74066132371759
Iteration: 12, Func. Count: 156, Neg. LLF: 91.72955827925527
Iteration: 13, Func. Count: 169, Neg. LLF: 92.86934546353456
Iteration: 14, Func. Count: 182, Neg. LLF: 91.61207799738234
Iteration: 15, Func. Count: 194, Neg. LLF: 91.63984952801808
Iteration: 16, Func. Count: 207, Neg. LLF: 91.60221031352205
Iteration: 17, Func. Count: 219, Neg. LLF: 91.59953418476084
Iteration: 18, Func. Count: 231, Neg. LLF: 91.59862343172264
Iteration: 19, Func. Count: 243, Neg. LLF: 91.59807251190409
Iteration: 20, Func. Count: 255, Neg. LLF: 91.59753032867532
Iteration: 21, Func. Count: 267, Neg. LLF: 91.59738546164094
Iteration: 22, Func. Count: 279, Neg. LLF: 91.59730693891835
Iteration: 23, Func. Count: 291, Neg. LLF: 91.59730273607582
Iteration: 24, Func. Count: 302, Neg. LLF: 91.59730271531288
Optimization terminated successfully (Exit mode 0)
Current function value: 91.59730273607582
Iterations: 24
Function evaluations: 302
Gradient evaluations: 24
Iteration: 1, Func. Count: 14, Neg. LLF: 149.4595280735664
Iteration: 2, Func. Count: 28, Neg. LLF: 74932959.16215888
Iteration: 3, Func. Count: 42, Neg. LLF: 2972456.4965060777
Iteration: 4, Func. Count: 56, Neg. LLF: 265775.11069589923
Iteration: 5, Func. Count: 70, Neg. LLF: 93.87721199052862
Iteration: 6, Func. Count: 84, Neg. LLF: 93.40427161989349
Iteration: 7, Func. Count: 98, Neg. LLF: 109.25227784776526
Iteration: 8, Func. Count: 112, Neg. LLF: 92.1670181964515
Iteration: 9, Func. Count: 126, Neg. LLF: 92.25955547438798
Iteration: 10, Func. Count: 140, Neg. LLF: 91.69148238838137
Iteration: 11, Func. Count: 153, Neg. LLF: 91.97479908098953
Iteration: 12, Func. Count: 167, Neg. LLF: 91.65479819728544
Iteration: 13, Func. Count: 181, Neg. LLF: 91.60111482868467
Iteration: 14, Func. Count: 194, Neg. LLF: 91.59826756742132
Iteration: 15, Func. Count: 207, Neg. LLF: 91.59787875273629
Iteration: 16, Func. Count: 220, Neg. LLF: 91.59775323570925
Iteration: 17, Func. Count: 233, Neg. LLF: 91.597461041177
Iteration: 18, Func. Count: 246, Neg. LLF: 91.5973336877578
Iteration: 19, Func. Count: 259, Neg. LLF: 91.59730377691308
Iteration: 20, Func. Count: 272, Neg. LLF: 91.59730272869518
Iteration: 21, Func. Count: 284, Neg. LLF: 91.59730279801661
Optimization terminated successfully (Exit mode 0)
Current function value: 91.59730272869518
Iterations: 21
Function evaluations: 284
Gradient evaluations: 21
Iteration: 1, Func. Count: 7, Neg. LLF: 106.89570088686366
Iteration: 2, Func. Count: 15, Neg. LLF: 1819.8543777768637
Iteration: 3, Func. Count: 22, Neg. LLF: 410.6813884208677
Iteration: 4, Func. Count: 29, Neg. LLF: 223.2831881337504
Iteration: 5, Func. Count: 36, Neg. LLF: 181.18582299324646
Iteration: 6, Func. Count: 43, Neg. LLF: 95.71686949487139
Iteration: 7, Func. Count: 50, Neg. LLF: 95.01148030555646
Iteration: 8, Func. Count: 56, Neg. LLF: 97.83744804996755
Iteration: 9, Func. Count: 64, Neg. LLF: 94.9752033266591
Iteration: 10, Func. Count: 70, Neg. LLF: 94.95455743515588
Iteration: 11, Func. Count: 76, Neg. LLF: 94.94765545010551
Iteration: 12, Func. Count: 82, Neg. LLF: 94.94729570102007
Iteration: 13, Func. Count: 88, Neg. LLF: 94.94723400396474
Iteration: 14, Func. Count: 93, Neg. LLF: 94.94723400401017
Optimization terminated successfully (Exit mode 0)
Current function value: 94.94723400396474
Iterations: 14
Function evaluations: 93
Gradient evaluations: 14
Iteration: 1, Func. Count: 8, Neg. LLF: 355.710428232663
Iteration: 2, Func. Count: 16, Neg. LLF: 923.714978221739
Iteration: 3, Func. Count: 24, Neg. LLF: 282.1156041746543
Iteration: 4, Func. Count: 32, Neg. LLF: 102.30780044488615
Iteration: 5, Func. Count: 40, Neg. LLF: 95.92249731559316
Iteration: 6, Func. Count: 48, Neg. LLF: 94.93483819577973
Iteration: 7, Func. Count: 55, Neg. LLF: 94.8952229080935
Iteration: 8, Func. Count: 62, Neg. LLF: 94.84692316302113
Iteration: 9, Func. Count: 69, Neg. LLF: 94.84326823239972
Iteration: 10, Func. Count: 76, Neg. LLF: 94.8414881784277
Iteration: 11, Func. Count: 83, Neg. LLF: 94.8371273684621
Iteration: 12, Func. Count: 90, Neg. LLF: 94.83203442592387
Iteration: 13, Func. Count: 97, Neg. LLF: 94.82571186971857
Iteration: 14, Func. Count: 104, Neg. LLF: 94.82052676522947
Iteration: 15, Func. Count: 111, Neg. LLF: 95.41540866810918
Iteration: 16, Func. Count: 119, Neg. LLF: 95.37956799584258
Iteration: 17, Func. Count: 127, Neg. LLF: 94.85674198699122
Iteration: 18, Func. Count: 135, Neg. LLF: 112.0443187056454
Iteration: 19, Func. Count: 149, Neg. LLF: 99.02436587838399
Iteration: 20, Func. Count: 158, Neg. LLF: 95.30295234851403
Iteration: 21, Func. Count: 166, Neg. LLF: 95.21481572091511
Iteration: 22, Func. Count: 174, Neg. LLF: 94.78734656378857
Iteration: 23, Func. Count: 182, Neg. LLF: 94.74785032790335
Iteration: 24, Func. Count: 190, Neg. LLF: 262.3480749798253
Iteration: 25, Func. Count: 199, Neg. LLF: 94.71194374711196
Iteration: 26, Func. Count: 207, Neg. LLF: 94.7567455693011
Iteration: 27, Func. Count: 215, Neg. LLF: 94.6825668056754
Iteration: 28, Func. Count: 223, Neg. LLF: 94.68146082459904
Iteration: 29, Func. Count: 230, Neg. LLF: 94.68056856089179
Iteration: 30, Func. Count: 237, Neg. LLF: 94.68051696422937
Iteration: 31, Func. Count: 243, Neg. LLF: 94.68051674995712
Optimization terminated successfully (Exit mode 0)
Current function value: 94.68051696422937
Iterations: 32
Function evaluations: 243
Gradient evaluations: 31
Iteration: 1, Func. Count: 9, Neg. LLF: 98.43070684759782
Iteration: 2, Func. Count: 18, Neg. LLF: 279642.8663835096
Iteration: 3, Func. Count: 27, Neg. LLF: 827.5217730032839
Iteration: 4, Func. Count: 36, Neg. LLF: 99.08095817420235
Iteration: 5, Func. Count: 46, Neg. LLF: 96.30083661968924
Iteration: 6, Func. Count: 55, Neg. LLF: 94.6698508024674
Iteration: 7, Func. Count: 63, Neg. LLF: 94.83356255132061
Iteration: 8, Func. Count: 72, Neg. LLF: 94.82368662346458
Iteration: 9, Func. Count: 81, Neg. LLF: 94.40788525267318
Iteration: 10, Func. Count: 89, Neg. LLF: 94.07529366892616
Iteration: 11, Func. Count: 97, Neg. LLF: 93.67082494425175
Iteration: 12, Func. Count: 105, Neg. LLF: 93.79076543621389
Iteration: 13, Func. Count: 114, Neg. LLF: 93.62572275280013
Iteration: 14, Func. Count: 122, Neg. LLF: 93.62447879823601
Iteration: 15, Func. Count: 130, Neg. LLF: 93.62448839574058
Iteration: 16, Func. Count: 139, Neg. LLF: 93.62441355895017
Iteration: 17, Func. Count: 146, Neg. LLF: 93.62441338060839
Optimization terminated successfully (Exit mode 0)
Current function value: 93.62441355895017
Iterations: 17
Function evaluations: 146
Gradient evaluations: 17
Iteration: 1, Func. Count: 10, Neg. LLF: 97.41615429521639
Iteration: 2, Func. Count: 20, Neg. LLF: 708.5845734533705
Iteration: 3, Func. Count: 30, Neg. LLF: 185.87082682636986
Iteration: 4, Func. Count: 40, Neg. LLF: 94.18218457725712
Iteration: 5, Func. Count: 49, Neg. LLF: 93.78296317903433
Iteration: 6, Func. Count: 59, Neg. LLF: 103.54394201710933
Iteration: 7, Func. Count: 70, Neg. LLF: 101.38443033390995
Iteration: 8, Func. Count: 80, Neg. LLF: 93.07417802996699
Iteration: 9, Func. Count: 89, Neg. LLF: 92.85340763423152
Iteration: 10, Func. Count: 98, Neg. LLF: 92.85150016417639
Iteration: 11, Func. Count: 108, Neg. LLF: 92.83597743628164
Iteration: 12, Func. Count: 117, Neg. LLF: 92.83542078580884
Iteration: 13, Func. Count: 126, Neg. LLF: 92.8353584629334
Iteration: 14, Func. Count: 134, Neg. LLF: 92.83535836359816
Optimization terminated successfully (Exit mode 0)
Current function value: 92.8353584629334
Iterations: 14
Function evaluations: 134
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 97.31385968183498
Iteration: 2, Func. Count: 21, Neg. LLF: 100.899365277978
Iteration: 3, Func. Count: 33, Neg. LLF: 155.48784477470707
Iteration: 4, Func. Count: 45, Neg. LLF: 306.59880532528047
Iteration: 5, Func. Count: 56, Neg. LLF: 160.6962228957968
Iteration: 6, Func. Count: 67, Neg. LLF: 227.66279842550966
Iteration: 7, Func. Count: 78, Neg. LLF: 93.82894371560518
Iteration: 8, Func. Count: 88, Neg. LLF: 93.2113910966371
Iteration: 9, Func. Count: 98, Neg. LLF: 110.65616341773233
Iteration: 10, Func. Count: 110, Neg. LLF: 94.42053931414846
Iteration: 11, Func. Count: 121, Neg. LLF: 93.87499658118217
Iteration: 12, Func. Count: 132, Neg. LLF: 92.77636252492046
Iteration: 13, Func. Count: 142, Neg. LLF: 92.76955757520483
Iteration: 14, Func. Count: 152, Neg. LLF: 92.76599384226894
Iteration: 15, Func. Count: 162, Neg. LLF: 92.76525246003054
Iteration: 16, Func. Count: 172, Neg. LLF: 92.76508682653767
Iteration: 17, Func. Count: 182, Neg. LLF: 92.76507580609314
Iteration: 18, Func. Count: 192, Neg. LLF: 92.76507215228516
Iteration: 19, Func. Count: 202, Neg. LLF: 92.76507118490134
Optimization terminated successfully (Exit mode 0)
Current function value: 92.76507118490134
Iterations: 19
Function evaluations: 202
Gradient evaluations: 19
Iteration: 1, Func. Count: 8, Neg. LLF: 106.09370982392836
Iteration: 2, Func. Count: 17, Neg. LLF: 341.77174469854174
Iteration: 3, Func. Count: 25, Neg. LLF: 176.74556626422049
Iteration: 4, Func. Count: 33, Neg. LLF: 114.95445258777788
Iteration: 5, Func. Count: 41, Neg. LLF: 207.69141182190876
Iteration: 6, Func. Count: 49, Neg. LLF: 159.93368846244692
Iteration: 7, Func. Count: 57, Neg. LLF: 124.49029660098164
Iteration: 8, Func. Count: 65, Neg. LLF: 101.10609725067756
Iteration: 9, Func. Count: 73, Neg. LLF: 96.09914785865016
Iteration: 10, Func. Count: 81, Neg. LLF: 94.31019792974838
Iteration: 11, Func. Count: 89, Neg. LLF: 93.93832201699543
Iteration: 12, Func. Count: 96, Neg. LLF: 93.8497140828795
Iteration: 13, Func. Count: 103, Neg. LLF: 93.8465748000179
Iteration: 14, Func. Count: 110, Neg. LLF: 93.84580772045612
Iteration: 15, Func. Count: 117, Neg. LLF: 93.84577847835268
Iteration: 16, Func. Count: 124, Neg. LLF: 93.84577191085367
Iteration: 17, Func. Count: 131, Neg. LLF: 93.84576601340642
Iteration: 18, Func. Count: 137, Neg. LLF: 93.84576599821048
Optimization terminated successfully (Exit mode 0)
Current function value: 93.84576601340642
Iterations: 18
Function evaluations: 137
Gradient evaluations: 18
Iteration: 1, Func. Count: 9, Neg. LLF: 43561696.24977974
Iteration: 2, Func. Count: 18, Neg. LLF: 8239748.089995141
Iteration: 3, Func. Count: 27, Neg. LLF: 98.61452700192184
Iteration: 4, Func. Count: 36, Neg. LLF: 94.06040775823085
Iteration: 5, Func. Count: 45, Neg. LLF: 93.37102873987948
Iteration: 6, Func. Count: 54, Neg. LLF: 93.48245270940691
Iteration: 7, Func. Count: 63, Neg. LLF: 93.12575938962814
Iteration: 8, Func. Count: 72, Neg. LLF: 92.77320926556342
Iteration: 9, Func. Count: 80, Neg. LLF: 94.5162518529268
Iteration: 10, Func. Count: 89, Neg. LLF: 92.74245099057683
Iteration: 11, Func. Count: 97, Neg. LLF: 92.73799047614555
Iteration: 12, Func. Count: 105, Neg. LLF: 92.73786668406359
Iteration: 13, Func. Count: 113, Neg. LLF: 92.73786499358118
Iteration: 14, Func. Count: 120, Neg. LLF: 92.73786481218414
Optimization terminated successfully (Exit mode 0)
Current function value: 92.73786499358118
Iterations: 14
Function evaluations: 120
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 130.41229255937841
Iteration: 2, Func. Count: 20, Neg. LLF: 126.58391915171079
Iteration: 3, Func. Count: 30, Neg. LLF: 1995.717096840137
Iteration: 4, Func. Count: 40, Neg. LLF: 97.06796089996622
Iteration: 5, Func. Count: 50, Neg. LLF: 95.19175081828914
Iteration: 6, Func. Count: 60, Neg. LLF: 93.71198699778415
Iteration: 7, Func. Count: 70, Neg. LLF: 92.87349264224368
Iteration: 8, Func. Count: 79, Neg. LLF: 93.88673225006468
Iteration: 9, Func. Count: 89, Neg. LLF: 92.87710723178179
Iteration: 10, Func. Count: 99, Neg. LLF: 92.82862036933128
Iteration: 11, Func. Count: 109, Neg. LLF: 92.74895563283582
Iteration: 12, Func. Count: 118, Neg. LLF: 92.73879193605121
Iteration: 13, Func. Count: 127, Neg. LLF: 92.73805232095341
Iteration: 14, Func. Count: 136, Neg. LLF: 92.73786575910542
Iteration: 15, Func. Count: 145, Neg. LLF: 92.73786484099296
Optimization terminated successfully (Exit mode 0)
Current function value: 92.73786484099296
Iterations: 15
Function evaluations: 145
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 96.87496149968786
Iteration: 2, Func. Count: 21, Neg. LLF: 103.57198561896067
Iteration: 3, Func. Count: 33, Neg. LLF: 125.65747600464769
Iteration: 4, Func. Count: 46, Neg. LLF: 23956.46554469875
Iteration: 5, Func. Count: 57, Neg. LLF: 19862.914166724768
Iteration: 6, Func. Count: 68, Neg. LLF: 338.93978912743216
Iteration: 7, Func. Count: 79, Neg. LLF: 110.65798577207175
Iteration: 8, Func. Count: 90, Neg. LLF: 94.05190620998988
Iteration: 9, Func. Count: 100, Neg. LLF: 94.05339498947544
Iteration: 10, Func. Count: 111, Neg. LLF: 93.51845014184066
Iteration: 11, Func. Count: 121, Neg. LLF: 95.51307111217093
Iteration: 12, Func. Count: 134, Neg. LLF: 108.51220293165375
Iteration: 13, Func. Count: 145, Neg. LLF: 93.55512635509923
Iteration: 14, Func. Count: 156, Neg. LLF: 93.29321745811941
Iteration: 15, Func. Count: 166, Neg. LLF: 93.43701245116863
Iteration: 16, Func. Count: 177, Neg. LLF: 93.27741684155492
Iteration: 17, Func. Count: 187, Neg. LLF: 93.26341815008664
Iteration: 18, Func. Count: 197, Neg. LLF: 93.25468982356084
Iteration: 19, Func. Count: 207, Neg. LLF: 93.2490322474271
Iteration: 20, Func. Count: 217, Neg. LLF: 93.23557510765268
Iteration: 21, Func. Count: 227, Neg. LLF: 92.97348453363698
Iteration: 22, Func. Count: 237, Neg. LLF: 92.83284286638488
Iteration: 23, Func. Count: 247, Neg. LLF: 92.78294504278607
Iteration: 24, Func. Count: 257, Neg. LLF: 92.77195557701135
Iteration: 25, Func. Count: 267, Neg. LLF: 92.74970058517704
Iteration: 26, Func. Count: 277, Neg. LLF: 92.74327095660877
Iteration: 27, Func. Count: 287, Neg. LLF: 92.73952951794841
Iteration: 28, Func. Count: 297, Neg. LLF: 92.7379868143834
Iteration: 29, Func. Count: 307, Neg. LLF: 92.73787377432183
Iteration: 30, Func. Count: 317, Neg. LLF: 92.73786698125524
Iteration: 31, Func. Count: 327, Neg. LLF: 92.7378643840726
Iteration: 32, Func. Count: 337, Neg. LLF: 92.73786151092872
Iteration: 33, Func. Count: 347, Neg. LLF: 92.73817938576627
Optimization terminated successfully (Exit mode 0)
Current function value: 92.73786151166598
Iterations: 34
Function evaluations: 349
Gradient evaluations: 33
Iteration: 1, Func. Count: 12, Neg. LLF: 96.86276529840501
Iteration: 2, Func. Count: 23, Neg. LLF: 132.42555627999587
Iteration: 3, Func. Count: 36, Neg. LLF: 122.0435800301034
Iteration: 4, Func. Count: 49, Neg. LLF: 6587190.374281678
Iteration: 5, Func. Count: 61, Neg. LLF: 14464.975019884081
Iteration: 6, Func. Count: 73, Neg. LLF: 340.7247128104374
Iteration: 7, Func. Count: 85, Neg. LLF: 107.97113529093939
Iteration: 8, Func. Count: 97, Neg. LLF: 98.2294821750267
Iteration: 9, Func. Count: 109, Neg. LLF: 98.53361236024563
Iteration: 10, Func. Count: 121, Neg. LLF: 94.64026361343768
Iteration: 11, Func. Count: 133, Neg. LLF: 94.0865293464411
Iteration: 12, Func. Count: 145, Neg. LLF: 93.93305584480102
Iteration: 13, Func. Count: 157, Neg. LLF: 93.81309450814531
Iteration: 14, Func. Count: 169, Neg. LLF: 93.80319406067774
Iteration: 15, Func. Count: 181, Neg. LLF: 93.32596251466306
Iteration: 16, Func. Count: 193, Neg. LLF: 93.7053257337496
Iteration: 17, Func. Count: 214, Neg. LLF: 94.49142453768403
Iteration: 18, Func. Count: 235, Neg. LLF: 95.52430452030302
Iteration: 19, Func. Count: 256, Neg. LLF: 93.54126586614268
Iteration: 20, Func. Count: 268, Neg. LLF: 93.82007100875057
Iteration: 21, Func. Count: 280, Neg. LLF: 93.37258912421939
Iteration: 22, Func. Count: 292, Neg. LLF: 93.25061135195496
Iteration: 23, Func. Count: 303, Neg. LLF: 93.19868422885514
Iteration: 24, Func. Count: 314, Neg. LLF: 93.13063536592786
Iteration: 25, Func. Count: 325, Neg. LLF: 93.07081696669754
Iteration: 26, Func. Count: 336, Neg. LLF: 93.04661447577847
Iteration: 27, Func. Count: 347, Neg. LLF: 93.01510984759547
Iteration: 28, Func. Count: 358, Neg. LLF: 92.95941717449764
Iteration: 29, Func. Count: 369, Neg. LLF: 92.87838991875729
Iteration: 30, Func. Count: 380, Neg. LLF: 92.75043548221491
Iteration: 31, Func. Count: 391, Neg. LLF: 92.7366281060194
Iteration: 32, Func. Count: 402, Neg. LLF: 92.73838912789768
Iteration: 33, Func. Count: 413, Neg. LLF: 92.7366642109673
Iteration: 34, Func. Count: 424, Neg. LLF: 93.11363399799241
Iteration: 35, Func. Count: 437, Neg. LLF: 92.74036644875552
Iteration: 36, Func. Count: 450, Neg. LLF: 92.74071214172727
Iteration: 37, Func. Count: 463, Neg. LLF: 92.73787286939871
Iteration: 38, Func. Count: 475, Neg. LLF: 92.73786480069717
Iteration: 39, Func. Count: 485, Neg. LLF: 92.73786462272999
Optimization terminated successfully (Exit mode 0)
Current function value: 92.73786480069717
Iterations: 40
Function evaluations: 485
Gradient evaluations: 39
Iteration: 1, Func. Count: 9, Neg. LLF: 95.15300712125283
Iteration: 2, Func. Count: 18, Neg. LLF: 17820.66336485538
Iteration: 3, Func. Count: 27, Neg. LLF: 5822.378033362995
Iteration: 4, Func. Count: 36, Neg. LLF: 130.9741199506114
Iteration: 5, Func. Count: 45, Neg. LLF: 1117747.7838203043
Iteration: 6, Func. Count: 54, Neg. LLF: 101.80091152535094
Iteration: 7, Func. Count: 63, Neg. LLF: 92.71714798717763
Iteration: 8, Func. Count: 72, Neg. LLF: 95.10193169893572
Iteration: 9, Func. Count: 81, Neg. LLF: 91.9388322897521
Iteration: 10, Func. Count: 90, Neg. LLF: 92.16775963244315
Iteration: 11, Func. Count: 99, Neg. LLF: 91.83749308097413
Iteration: 12, Func. Count: 107, Neg. LLF: 91.8360288305731
Iteration: 13, Func. Count: 115, Neg. LLF: 91.83246440052147
Iteration: 14, Func. Count: 123, Neg. LLF: 91.83131219087949
Iteration: 15, Func. Count: 131, Neg. LLF: 91.82895527823318
Iteration: 16, Func. Count: 139, Neg. LLF: 91.82845194300698
Iteration: 17, Func. Count: 147, Neg. LLF: 91.82840591266047
Iteration: 18, Func. Count: 155, Neg. LLF: 91.82840471847202
Iteration: 19, Func. Count: 162, Neg. LLF: 91.82840471847454
Optimization terminated successfully (Exit mode 0)
Current function value: 91.82840471847202
Iterations: 19
Function evaluations: 162
Gradient evaluations: 19
Iteration: 1, Func. Count: 10, Neg. LLF: 38424978.2249497
Iteration: 2, Func. Count: 20, Neg. LLF: 1301822.7161522985
Iteration: 3, Func. Count: 30, Neg. LLF: 119.30139141688014
Iteration: 4, Func. Count: 40, Neg. LLF: 105.6121764832867
Iteration: 5, Func. Count: 50, Neg. LLF: 94.69641595628026
Iteration: 6, Func. Count: 60, Neg. LLF: 92.3872517938933
Iteration: 7, Func. Count: 70, Neg. LLF: 91.97509187724602
Iteration: 8, Func. Count: 79, Neg. LLF: 99.2445081057697
Iteration: 9, Func. Count: 89, Neg. LLF: 91.93333564749075
Iteration: 10, Func. Count: 98, Neg. LLF: 91.92239573137924
Iteration: 11, Func. Count: 107, Neg. LLF: 91.91848319746542
Iteration: 12, Func. Count: 116, Neg. LLF: 91.91708476506389
Iteration: 13, Func. Count: 125, Neg. LLF: 91.9169394574813
Iteration: 14, Func. Count: 134, Neg. LLF: 91.91692730881279
Iteration: 15, Func. Count: 143, Neg. LLF: 91.91692652304039
Optimization terminated successfully (Exit mode 0)
Current function value: 91.91692652304039
Iterations: 15
Function evaluations: 143
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 8197533.369755826
Iteration: 2, Func. Count: 22, Neg. LLF: 7617083.138415721
Iteration: 3, Func. Count: 33, Neg. LLF: 1970801.112778843
Iteration: 4, Func. Count: 44, Neg. LLF: 105.14956268026319
Iteration: 5, Func. Count: 55, Neg. LLF: 119.03649228618043
Iteration: 6, Func. Count: 66, Neg. LLF: 100.84356633292128
Iteration: 7, Func. Count: 77, Neg. LLF: 93.92145911985769
Iteration: 8, Func. Count: 88, Neg. LLF: 93.49833563602797
Iteration: 9, Func. Count: 99, Neg. LLF: 93.28605950388135
Iteration: 10, Func. Count: 110, Neg. LLF: 91.83649443829991
Iteration: 11, Func. Count: 120, Neg. LLF: 91.69831172968877
Iteration: 12, Func. Count: 130, Neg. LLF: 92.46728308892354
Iteration: 13, Func. Count: 141, Neg. LLF: 91.73529343015176
Iteration: 14, Func. Count: 152, Neg. LLF: 91.66443973394271
Iteration: 15, Func. Count: 162, Neg. LLF: 91.65855727099793
Iteration: 16, Func. Count: 172, Neg. LLF: 91.65831769109273
Iteration: 17, Func. Count: 182, Neg. LLF: 91.65829742033881
Iteration: 18, Func. Count: 192, Neg. LLF: 91.65829480996656
Iteration: 19, Func. Count: 201, Neg. LLF: 91.65829480639185
Optimization terminated successfully (Exit mode 0)
Current function value: 91.65829480996656
Iterations: 19
Function evaluations: 201
Gradient evaluations: 19
Iteration: 1, Func. Count: 12, Neg. LLF: 8033525.042023398
Iteration: 2, Func. Count: 24, Neg. LLF: 9506983.705399923
Iteration: 3, Func. Count: 36, Neg. LLF: 2021897.5490111837
Iteration: 4, Func. Count: 48, Neg. LLF: 103.05667607675376
Iteration: 5, Func. Count: 60, Neg. LLF: 108.18231477510717
Iteration: 6, Func. Count: 72, Neg. LLF: 94.77439611134461
Iteration: 7, Func. Count: 84, Neg. LLF: 92.6062947202239
Iteration: 8, Func. Count: 96, Neg. LLF: 93.43001582806731
Iteration: 9, Func. Count: 108, Neg. LLF: 91.86308861555625
Iteration: 10, Func. Count: 120, Neg. LLF: 92.40862075025764
Iteration: 11, Func. Count: 132, Neg. LLF: 92.0626125831711
Iteration: 12, Func. Count: 144, Neg. LLF: 91.65584808622793
Iteration: 13, Func. Count: 156, Neg. LLF: 91.48406610308095
Iteration: 14, Func. Count: 167, Neg. LLF: 91.48705554892359
Iteration: 15, Func. Count: 179, Neg. LLF: 91.48048646131443
Iteration: 16, Func. Count: 190, Neg. LLF: 91.48040897000011
Iteration: 17, Func. Count: 201, Neg. LLF: 91.48039294843898
Iteration: 18, Func. Count: 212, Neg. LLF: 91.48039201494618
Optimization terminated successfully (Exit mode 0)
Current function value: 91.48039201494618
Iterations: 18
Function evaluations: 212
Gradient evaluations: 18
Iteration: 1, Func. Count: 13, Neg. LLF: 8151883.501983233
Iteration: 2, Func. Count: 26, Neg. LLF: 8514937.742043318
Iteration: 3, Func. Count: 39, Neg. LLF: 7219534.378027035
Iteration: 4, Func. Count: 52, Neg. LLF: 996.5130716438883
Iteration: 5, Func. Count: 65, Neg. LLF: 114.11620358886456
Iteration: 6, Func. Count: 78, Neg. LLF: 99.48965695891825
Iteration: 7, Func. Count: 91, Neg. LLF: 95.87304601216604
Iteration: 8, Func. Count: 104, Neg. LLF: 94.39071873879966
Iteration: 9, Func. Count: 117, Neg. LLF: 91.87282327549653
Iteration: 10, Func. Count: 129, Neg. LLF: 92.07529173245649
Iteration: 11, Func. Count: 142, Neg. LLF: 92.4984255733008
Iteration: 12, Func. Count: 155, Neg. LLF: 91.79037177684931
Iteration: 13, Func. Count: 168, Neg. LLF: 91.72246864238768
Iteration: 14, Func. Count: 181, Neg. LLF: 91.67813106029017
Iteration: 15, Func. Count: 194, Neg. LLF: 91.66126622859538
Iteration: 16, Func. Count: 206, Neg. LLF: 91.65921882661078
Iteration: 17, Func. Count: 218, Neg. LLF: 91.65870618312019
Iteration: 18, Func. Count: 230, Neg. LLF: 91.65837427382732
Iteration: 19, Func. Count: 242, Neg. LLF: 91.65829997496985
Iteration: 20, Func. Count: 254, Neg. LLF: 91.65829480446963
Iteration: 21, Func. Count: 265, Neg. LLF: 91.65829485713283
Optimization terminated successfully (Exit mode 0)
Current function value: 91.65829480446963
Iterations: 21
Function evaluations: 265
Gradient evaluations: 21
Iteration: 1, Func. Count: 10, Neg. LLF: 99.32664728844516
Iteration: 2, Func. Count: 20, Neg. LLF: 581.133731197224
Iteration: 3, Func. Count: 30, Neg. LLF: 3448116.043461349
Iteration: 4, Func. Count: 40, Neg. LLF: 2832750.209462533
Iteration: 5, Func. Count: 50, Neg. LLF: 939.7202101756073
Iteration: 6, Func. Count: 60, Neg. LLF: 94.20475027897513
Iteration: 7, Func. Count: 70, Neg. LLF: 223.85971751777362
Iteration: 8, Func. Count: 80, Neg. LLF: 99.98373510996052
Iteration: 9, Func. Count: 90, Neg. LLF: 92.12306554336297
Iteration: 10, Func. Count: 100, Neg. LLF: 93.16252282099563
Iteration: 11, Func. Count: 110, Neg. LLF: 91.77367072032291
Iteration: 12, Func. Count: 119, Neg. LLF: 91.74464204763966
Iteration: 13, Func. Count: 128, Neg. LLF: 91.73771539831061
Iteration: 14, Func. Count: 137, Neg. LLF: 91.72800515251974
Iteration: 15, Func. Count: 146, Neg. LLF: 91.72361682875163
Iteration: 16, Func. Count: 155, Neg. LLF: 91.72203339488424
Iteration: 17, Func. Count: 164, Neg. LLF: 91.72193749392567
Iteration: 18, Func. Count: 173, Neg. LLF: 91.72193323626283
Iteration: 19, Func. Count: 181, Neg. LLF: 91.72193320682175
Optimization terminated successfully (Exit mode 0)
Current function value: 91.72193323626283
Iterations: 19
Function evaluations: 181
Gradient evaluations: 19
Iteration: 1, Func. Count: 11, Neg. LLF: 12703813.07781634
Iteration: 2, Func. Count: 22, Neg. LLF: 143.49186733481747
Iteration: 3, Func. Count: 34, Neg. LLF: 130.58535470838507
Iteration: 4, Func. Count: 45, Neg. LLF: 95.16231658519872
Iteration: 5, Func. Count: 56, Neg. LLF: 103.57380046007498
Iteration: 6, Func. Count: 67, Neg. LLF: 92.97482684768958
Iteration: 7, Func. Count: 78, Neg. LLF: 92.83853799814086
Iteration: 8, Func. Count: 89, Neg. LLF: 92.03555648061085
Iteration: 9, Func. Count: 99, Neg. LLF: 91.92768951924826
Iteration: 10, Func. Count: 109, Neg. LLF: 91.90612427585489
Iteration: 11, Func. Count: 119, Neg. LLF: 92.336304408168
Iteration: 12, Func. Count: 130, Neg. LLF: 91.89673630011295
Iteration: 13, Func. Count: 140, Neg. LLF: 91.89342636176337
Iteration: 14, Func. Count: 150, Neg. LLF: 91.89290803574153
Iteration: 15, Func. Count: 160, Neg. LLF: 91.89255088990441
Iteration: 16, Func. Count: 170, Neg. LLF: 91.89251153077512
Iteration: 17, Func. Count: 180, Neg. LLF: 91.89250706563247
Iteration: 18, Func. Count: 189, Neg. LLF: 91.89250705790685
Optimization terminated successfully (Exit mode 0)
Current function value: 91.89250706563247
Iterations: 18
Function evaluations: 189
Gradient evaluations: 18
Iteration: 1, Func. Count: 12, Neg. LLF: 7600083.824999377
Iteration: 2, Func. Count: 24, Neg. LLF: 24663972.053337313
Iteration: 3, Func. Count: 36, Neg. LLF: 4314662.476522253
Iteration: 4, Func. Count: 48, Neg. LLF: 98.92122653213
Iteration: 5, Func. Count: 60, Neg. LLF: 96.99030684221465
Iteration: 6, Func. Count: 72, Neg. LLF: 93.13392882741479
Iteration: 7, Func. Count: 84, Neg. LLF: 96.71635822271602
Iteration: 8, Func. Count: 96, Neg. LLF: 94.10768935977428
Iteration: 9, Func. Count: 108, Neg. LLF: 92.39161397836132
Iteration: 10, Func. Count: 120, Neg. LLF: 92.78656903798223
Iteration: 11, Func. Count: 132, Neg. LLF: 92.0084957500527
Iteration: 12, Func. Count: 144, Neg. LLF: 91.81594109996266
Iteration: 13, Func. Count: 155, Neg. LLF: 91.78581513332745
Iteration: 14, Func. Count: 166, Neg. LLF: 91.72679445273131
Iteration: 15, Func. Count: 177, Neg. LLF: 91.67083026545535
Iteration: 16, Func. Count: 188, Neg. LLF: 91.61178388729383
Iteration: 17, Func. Count: 199, Neg. LLF: 91.60233459482637
Iteration: 18, Func. Count: 210, Neg. LLF: 91.58959491961477
Iteration: 19, Func. Count: 221, Neg. LLF: 91.58872063628036
Iteration: 20, Func. Count: 232, Neg. LLF: 91.58833642609748
Iteration: 21, Func. Count: 243, Neg. LLF: 91.58831029226226
Iteration: 22, Func. Count: 254, Neg. LLF: 91.58829154948808
Iteration: 23, Func. Count: 265, Neg. LLF: 91.58829095169656
Optimization terminated successfully (Exit mode 0)
Current function value: 91.58829095169656
Iterations: 23
Function evaluations: 265
Gradient evaluations: 23
Iteration: 1, Func. Count: 13, Neg. LLF: 155.90471860666187
Iteration: 2, Func. Count: 26, Neg. LLF: 1196670.0256189937
Iteration: 3, Func. Count: 39, Neg. LLF: 3335461.5618589283
Iteration: 4, Func. Count: 52, Neg. LLF: 103.4001730095775
Iteration: 5, Func. Count: 65, Neg. LLF: 113.7867690320784
Iteration: 6, Func. Count: 78, Neg. LLF: 94.34367048642872
Iteration: 7, Func. Count: 91, Neg. LLF: 93.22545677483868
Iteration: 8, Func. Count: 104, Neg. LLF: 94.00176933914739
Iteration: 9, Func. Count: 117, Neg. LLF: 92.65086040111062
Iteration: 10, Func. Count: 130, Neg. LLF: 92.24202391370632
Iteration: 11, Func. Count: 143, Neg. LLF: 92.38770599460729
Iteration: 12, Func. Count: 156, Neg. LLF: 91.45965008471757
Iteration: 13, Func. Count: 168, Neg. LLF: 91.36111548266425
Iteration: 14, Func. Count: 180, Neg. LLF: 91.35857588176941
Iteration: 15, Func. Count: 192, Neg. LLF: 91.35817600062823
Iteration: 16, Func. Count: 204, Neg. LLF: 91.35815903137063
Iteration: 17, Func. Count: 216, Neg. LLF: 91.35815741809071
Iteration: 18, Func. Count: 227, Neg. LLF: 91.35815739555623
Optimization terminated successfully (Exit mode 0)
Current function value: 91.35815741809071
Iterations: 18
Function evaluations: 227
Gradient evaluations: 18
Iteration: 1, Func. Count: 14, Neg. LLF: 148.40487771799354
Iteration: 2, Func. Count: 28, Neg. LLF: 1152130.8515859225
Iteration: 3, Func. Count: 42, Neg. LLF: 3366569.6915476937
Iteration: 4, Func. Count: 56, Neg. LLF: 443.6952603332675
Iteration: 5, Func. Count: 70, Neg. LLF: 101.98047933416369
Iteration: 6, Func. Count: 84, Neg. LLF: 100.9136415969129
Iteration: 7, Func. Count: 98, Neg. LLF: 93.1991768853737
Iteration: 8, Func. Count: 112, Neg. LLF: 91.82239020196755
Iteration: 9, Func. Count: 125, Neg. LLF: 92.60359640596607
Iteration: 10, Func. Count: 139, Neg. LLF: 95.12765214005856
Iteration: 11, Func. Count: 154, Neg. LLF: 92.11314499375436
Iteration: 12, Func. Count: 168, Neg. LLF: 91.59058406637834
Iteration: 13, Func. Count: 182, Neg. LLF: 91.49327719786116
Iteration: 14, Func. Count: 196, Neg. LLF: 91.3596755880619
Iteration: 15, Func. Count: 209, Neg. LLF: 91.35860834029268
Iteration: 16, Func. Count: 222, Neg. LLF: 91.35821790878276
Iteration: 17, Func. Count: 235, Neg. LLF: 91.35816370682677
Iteration: 18, Func. Count: 248, Neg. LLF: 91.35815745838151
Iteration: 19, Func. Count: 260, Neg. LLF: 91.35815752881605
Optimization terminated successfully (Exit mode 0)
Current function value: 91.35815745838151
Iterations: 19
Function evaluations: 260
Gradient evaluations: 19
Iteration: 1, Func. Count: 11, Neg. LLF: 104.6338456478581
Iteration: 2, Func. Count: 23, Neg. LLF: 1801.2536539527296
Iteration: 3, Func. Count: 34, Neg. LLF: 3727423.139709247
Iteration: 4, Func. Count: 45, Neg. LLF: 1676760.9492888602
Iteration: 5, Func. Count: 56, Neg. LLF: 99.36375208833738
Iteration: 6, Func. Count: 67, Neg. LLF: 93.54421408363523
Iteration: 7, Func. Count: 78, Neg. LLF: 136.63799300533458
Iteration: 8, Func. Count: 89, Neg. LLF: 94.44491715367924
Iteration: 9, Func. Count: 100, Neg. LLF: 93.60220957691361
Iteration: 10, Func. Count: 111, Neg. LLF: 93.31148985596069
Iteration: 11, Func. Count: 122, Neg. LLF: 92.13280025516362
Iteration: 12, Func. Count: 133, Neg. LLF: 92.22055631088143
Iteration: 13, Func. Count: 144, Neg. LLF: 91.42943114929079
Iteration: 14, Func. Count: 154, Neg. LLF: 91.42239366022854
Iteration: 15, Func. Count: 165, Neg. LLF: 91.39355839692291
Iteration: 16, Func. Count: 175, Neg. LLF: 91.39183223869655
Iteration: 17, Func. Count: 185, Neg. LLF: 91.39165479699638
Iteration: 18, Func. Count: 195, Neg. LLF: 91.39160724535091
Iteration: 19, Func. Count: 205, Neg. LLF: 91.39160664847381
Optimization terminated successfully (Exit mode 0)
Current function value: 91.39160664847381
Iterations: 19
Function evaluations: 205
Gradient evaluations: 19
Iteration: 1, Func. Count: 12, Neg. LLF: 5445432.326143983
Iteration: 2, Func. Count: 24, Neg. LLF: 32815855.29666644
Iteration: 3, Func. Count: 36, Neg. LLF: 550131.6604912765
Iteration: 4, Func. Count: 48, Neg. LLF: 96.36869434271948
Iteration: 5, Func. Count: 60, Neg. LLF: 95.03869036891008
Iteration: 6, Func. Count: 72, Neg. LLF: 94.78045355741524
Iteration: 7, Func. Count: 84, Neg. LLF: 95.80021057084726
Iteration: 8, Func. Count: 96, Neg. LLF: 94.17188087967375
Iteration: 9, Func. Count: 108, Neg. LLF: 93.48288188815386
Iteration: 10, Func. Count: 120, Neg. LLF: 92.65304690632576
Iteration: 11, Func. Count: 132, Neg. LLF: 92.06645242620087
Iteration: 12, Func. Count: 144, Neg. LLF: 91.87230226057945
Iteration: 13, Func. Count: 156, Neg. LLF: 91.47529011464354
Iteration: 14, Func. Count: 167, Neg. LLF: 91.58198068505762
Iteration: 15, Func. Count: 179, Neg. LLF: 91.74864043839864
Iteration: 16, Func. Count: 191, Neg. LLF: 91.39941665280337
Iteration: 17, Func. Count: 202, Neg. LLF: 91.39362419645921
Iteration: 18, Func. Count: 213, Neg. LLF: 91.39218836850928
Iteration: 19, Func. Count: 224, Neg. LLF: 91.39181234947861
Iteration: 20, Func. Count: 235, Neg. LLF: 91.39163336757866
Iteration: 21, Func. Count: 246, Neg. LLF: 91.391611293197
Iteration: 22, Func. Count: 257, Neg. LLF: 91.3916071099407
Iteration: 23, Func. Count: 267, Neg. LLF: 91.3916071628547
Optimization terminated successfully (Exit mode 0)
Current function value: 91.3916071099407
Iterations: 23
Function evaluations: 267
Gradient evaluations: 23
Iteration: 1, Func. Count: 13, Neg. LLF: 5449171.039136785
Iteration: 2, Func. Count: 26, Neg. LLF: 41720880.67990731
Iteration: 3, Func. Count: 39, Neg. LLF: 4308765.885033029
Iteration: 4, Func. Count: 52, Neg. LLF: 101.26952709945506
Iteration: 5, Func. Count: 65, Neg. LLF: 103.73400955472181
Iteration: 6, Func. Count: 78, Neg. LLF: 96.18691833145192
Iteration: 7, Func. Count: 91, Neg. LLF: 95.83345635918734
Iteration: 8, Func. Count: 104, Neg. LLF: 102.34382467381874
Iteration: 9, Func. Count: 117, Neg. LLF: 92.50150507933235
Iteration: 10, Func. Count: 130, Neg. LLF: 92.51364226909985
Iteration: 11, Func. Count: 143, Neg. LLF: 91.8628393515727
Iteration: 12, Func. Count: 155, Neg. LLF: 91.94378403134581
Iteration: 13, Func. Count: 168, Neg. LLF: 93.04217714425407
Iteration: 14, Func. Count: 181, Neg. LLF: 91.59170257768422
Iteration: 15, Func. Count: 193, Neg. LLF: 92.05878561646726
Iteration: 16, Func. Count: 206, Neg. LLF: 91.4783326963575
Iteration: 17, Func. Count: 218, Neg. LLF: 91.40645828335451
Iteration: 18, Func. Count: 230, Neg. LLF: 91.39699214595491
Iteration: 19, Func. Count: 242, Neg. LLF: 91.39328613400501
Iteration: 20, Func. Count: 254, Neg. LLF: 91.39212643980224
Iteration: 21, Func. Count: 266, Neg. LLF: 91.39176414375069
Iteration: 22, Func. Count: 278, Neg. LLF: 91.39164565142117
Iteration: 23, Func. Count: 290, Neg. LLF: 91.39161607999739
Iteration: 24, Func. Count: 302, Neg. LLF: 91.39160749518872
Iteration: 25, Func. Count: 314, Neg. LLF: 91.3916066765713
Optimization terminated successfully (Exit mode 0)
Current function value: 91.3916066765713
Iterations: 25
Function evaluations: 314
Gradient evaluations: 25
Iteration: 1, Func. Count: 14, Neg. LLF: 122.78238045646191
Iteration: 2, Func. Count: 28, Neg. LLF: 311.74287068801385
Iteration: 3, Func. Count: 43, Neg. LLF: 3200396.368540485
Iteration: 4, Func. Count: 57, Neg. LLF: 258.81672597900973
Iteration: 5, Func. Count: 71, Neg. LLF: 105.5449557187873
Iteration: 6, Func. Count: 85, Neg. LLF: 95.61570169064515
Iteration: 7, Func. Count: 99, Neg. LLF: 95.18838956949789
Iteration: 8, Func. Count: 113, Neg. LLF: 92.47185823868605
Iteration: 9, Func. Count: 127, Neg. LLF: 91.97777792960348
Iteration: 10, Func. Count: 141, Neg. LLF: 91.97720547520908
Iteration: 11, Func. Count: 155, Neg. LLF: 91.72904622136484
Iteration: 12, Func. Count: 169, Neg. LLF: 91.42921866353741
Iteration: 13, Func. Count: 182, Neg. LLF: 91.4131701839698
Iteration: 14, Func. Count: 195, Neg. LLF: 91.46989713516777
Iteration: 15, Func. Count: 209, Neg. LLF: 91.40066686946389
Iteration: 16, Func. Count: 222, Neg. LLF: 91.39384644296359
Iteration: 17, Func. Count: 235, Neg. LLF: 91.39230176633197
Iteration: 18, Func. Count: 248, Neg. LLF: 91.391997122696
Iteration: 19, Func. Count: 261, Neg. LLF: 91.39166295914917
Iteration: 20, Func. Count: 274, Neg. LLF: 91.39161870764671
Iteration: 21, Func. Count: 287, Neg. LLF: 91.39160863980372
Iteration: 22, Func. Count: 300, Neg. LLF: 91.39160676803284
Iteration: 23, Func. Count: 312, Neg. LLF: 91.39160677612796
Optimization terminated successfully (Exit mode 0)
Current function value: 91.39160676803284
Iterations: 23
Function evaluations: 312
Gradient evaluations: 23
Iteration: 1, Func. Count: 15, Neg. LLF: 120.60499551205079
Iteration: 2, Func. Count: 30, Neg. LLF: 319.2891651027629
Iteration: 3, Func. Count: 46, Neg. LLF: 1678260.2503387607
Iteration: 4, Func. Count: 61, Neg. LLF: 276872.6189091166
Iteration: 5, Func. Count: 76, Neg. LLF: 102.74920686041128
Iteration: 6, Func. Count: 91, Neg. LLF: 94.64121829830529
Iteration: 7, Func. Count: 106, Neg. LLF: 93.29388083983471
Iteration: 8, Func. Count: 121, Neg. LLF: 92.28498323975809
Iteration: 9, Func. Count: 136, Neg. LLF: 91.99134991953764
Iteration: 10, Func. Count: 151, Neg. LLF: 92.33173262727517
Iteration: 11, Func. Count: 166, Neg. LLF: 91.55980004675484
Iteration: 12, Func. Count: 180, Neg. LLF: 91.42085176214734
Iteration: 13, Func. Count: 194, Neg. LLF: 91.41451397805069
Iteration: 14, Func. Count: 208, Neg. LLF: 91.41314831224592
Iteration: 15, Func. Count: 223, Neg. LLF: 91.40948832938585
Iteration: 16, Func. Count: 237, Neg. LLF: 91.40916685387664
Iteration: 17, Func. Count: 251, Neg. LLF: 91.40659404611505
Iteration: 18, Func. Count: 265, Neg. LLF: 91.3992914505531
Iteration: 19, Func. Count: 279, Neg. LLF: 91.3963488355055
Iteration: 20, Func. Count: 293, Neg. LLF: 91.39454398413979
Iteration: 21, Func. Count: 307, Neg. LLF: 91.39308078357146
Iteration: 22, Func. Count: 321, Neg. LLF: 91.39192563936324
Iteration: 23, Func. Count: 335, Neg. LLF: 91.39174901803156
Iteration: 24, Func. Count: 349, Neg. LLF: 91.39172034853038
Iteration: 25, Func. Count: 363, Neg. LLF: 91.3916922268421
Iteration: 26, Func. Count: 377, Neg. LLF: 91.39164955612516
Iteration: 27, Func. Count: 391, Neg. LLF: 91.39161784779762
Iteration: 28, Func. Count: 405, Neg. LLF: 91.39160762981287
Iteration: 29, Func. Count: 419, Neg. LLF: 91.3916066230175
Iteration: 30, Func. Count: 432, Neg. LLF: 91.39160670789208
Optimization terminated successfully (Exit mode 0)
Current function value: 91.3916066230175
Iterations: 30
Function evaluations: 432
Gradient evaluations: 30
Iteration: 1, Func. Count: 8, Neg. LLF: 108.38607517342524
Iteration: 2, Func. Count: 17, Neg. LLF: 1058.413735737692
Iteration: 3, Func. Count: 25, Neg. LLF: 229.77912669665687
Iteration: 4, Func. Count: 33, Neg. LLF: 522.6030729795273
Iteration: 5, Func. Count: 41, Neg. LLF: 1774.2918361259663
Iteration: 6, Func. Count: 49, Neg. LLF: 98.28180308820963
Iteration: 7, Func. Count: 57, Neg. LLF: 95.12731416407561
Iteration: 8, Func. Count: 64, Neg. LLF: 98.5485795873193
Iteration: 9, Func. Count: 73, Neg. LLF: 96.32110958205449
Iteration: 10, Func. Count: 81, Neg. LLF: 94.98566867133044
Iteration: 11, Func. Count: 88, Neg. LLF: 94.96819497887935
Iteration: 12, Func. Count: 95, Neg. LLF: 94.95811085392208
Iteration: 13, Func. Count: 102, Neg. LLF: 94.94764139540081
Iteration: 14, Func. Count: 109, Neg. LLF: 94.9472862794368
Iteration: 15, Func. Count: 116, Neg. LLF: 94.94724546822056
Iteration: 16, Func. Count: 123, Neg. LLF: 94.94723524055016
Iteration: 17, Func. Count: 130, Neg. LLF: 94.94723377587
Iteration: 18, Func. Count: 136, Neg. LLF: 94.94723382411773
Optimization terminated successfully (Exit mode 0)
Current function value: 94.94723377587
Iterations: 18
Function evaluations: 136
Gradient evaluations: 18
Iteration: 1, Func. Count: 9, Neg. LLF: 96.86296076539347
Iteration: 2, Func. Count: 17, Neg. LLF: 118.1424461221104
Iteration: 3, Func. Count: 27, Neg. LLF: 133.5911945499215
Iteration: 4, Func. Count: 37, Neg. LLF: 110.60400485289883
Iteration: 5, Func. Count: 46, Neg. LLF: 103.29019952131199
Iteration: 6, Func. Count: 55, Neg. LLF: 95.23135765210881
Iteration: 7, Func. Count: 64, Neg. LLF: 98.77222882423418
Iteration: 8, Func. Count: 74, Neg. LLF: 94.95094352964385
Iteration: 9, Func. Count: 82, Neg. LLF: 94.94832570248371
Iteration: 10, Func. Count: 90, Neg. LLF: 94.94749980840217
Iteration: 11, Func. Count: 98, Neg. LLF: 94.94726219552184
Iteration: 12, Func. Count: 106, Neg. LLF: 94.94723603441462
Iteration: 13, Func. Count: 114, Neg. LLF: 94.94723389032276
Iteration: 14, Func. Count: 121, Neg. LLF: 94.94723389370836
Optimization terminated successfully (Exit mode 0)
Current function value: 94.94723389032276
Iterations: 14
Function evaluations: 121
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 96.15344604841388
Iteration: 2, Func. Count: 19, Neg. LLF: 115.29723605250736
Iteration: 3, Func. Count: 30, Neg. LLF: 116.55484506236506
Iteration: 4, Func. Count: 41, Neg. LLF: 156.90879501051526
Iteration: 5, Func. Count: 51, Neg. LLF: 1394.2035374533666
Iteration: 6, Func. Count: 61, Neg. LLF: 110.77751258603544
Iteration: 7, Func. Count: 71, Neg. LLF: 96.9202006036044
Iteration: 8, Func. Count: 81, Neg. LLF: 94.99358707560637
Iteration: 9, Func. Count: 90, Neg. LLF: 94.98471119566517
Iteration: 10, Func. Count: 99, Neg. LLF: 94.97229531895407
Iteration: 11, Func. Count: 108, Neg. LLF: 94.98022498398643
Iteration: 12, Func. Count: 118, Neg. LLF: 94.97274582518567
Iteration: 13, Func. Count: 128, Neg. LLF: 94.95741660972787
Iteration: 14, Func. Count: 137, Neg. LLF: 94.95191222373934
Iteration: 15, Func. Count: 146, Neg. LLF: 94.95094790023043
Iteration: 16, Func. Count: 156, Neg. LLF: 94.94782180565713
Iteration: 17, Func. Count: 165, Neg. LLF: 94.94737191460409
Iteration: 18, Func. Count: 174, Neg. LLF: 94.94726385939539
Iteration: 19, Func. Count: 183, Neg. LLF: 94.947235619448
Iteration: 20, Func. Count: 192, Neg. LLF: 94.94723377549056
Iteration: 21, Func. Count: 200, Neg. LLF: 94.94723379926985
Optimization terminated successfully (Exit mode 0)
Current function value: 94.94723377549056
Iterations: 21
Function evaluations: 200
Gradient evaluations: 21
Iteration: 1, Func. Count: 11, Neg. LLF: 95.97061592974086
Iteration: 2, Func. Count: 21, Neg. LLF: 108.37598647532901
Iteration: 3, Func. Count: 33, Neg. LLF: 116.98306202851276
Iteration: 4, Func. Count: 45, Neg. LLF: 98738.30339367762
Iteration: 5, Func. Count: 56, Neg. LLF: 496.88058893995617
Iteration: 6, Func. Count: 67, Neg. LLF: 93.49276975291137
Iteration: 7, Func. Count: 77, Neg. LLF: 104.43468923996389
Iteration: 8, Func. Count: 89, Neg. LLF: 101.29130590162342
Iteration: 9, Func. Count: 100, Neg. LLF: 92.98826502664885
Iteration: 10, Func. Count: 110, Neg. LLF: 105.10480918733036
Iteration: 11, Func. Count: 121, Neg. LLF: 93.09794223139322
Iteration: 12, Func. Count: 132, Neg. LLF: 92.83695811971188
Iteration: 13, Func. Count: 142, Neg. LLF: 92.8355288030244
Iteration: 14, Func. Count: 152, Neg. LLF: 92.83537709202024
Iteration: 15, Func. Count: 162, Neg. LLF: 92.83535800343215
Iteration: 16, Func. Count: 172, Neg. LLF: 92.8353582021708
Optimization terminated successfully (Exit mode 0)
Current function value: 92.8353582021708
Iterations: 16
Function evaluations: 172
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 95.97807185874802
Iteration: 2, Func. Count: 23, Neg. LLF: 110.87650635899664
Iteration: 3, Func. Count: 36, Neg. LLF: 111.24193408622894
Iteration: 4, Func. Count: 49, Neg. LLF: 175964.14290164647
Iteration: 5, Func. Count: 61, Neg. LLF: 526.270538632592
Iteration: 6, Func. Count: 73, Neg. LLF: 163.78337856087686
Iteration: 7, Func. Count: 86, Neg. LLF: 93.19310230404912
Iteration: 8, Func. Count: 97, Neg. LLF: 104.53073433090057
Iteration: 9, Func. Count: 110, Neg. LLF: 93.27429532725141
Iteration: 10, Func. Count: 122, Neg. LLF: 92.96970699141217
Iteration: 11, Func. Count: 134, Neg. LLF: 92.98629797203087
Iteration: 12, Func. Count: 146, Neg. LLF: 92.78872402740674
Iteration: 13, Func. Count: 157, Neg. LLF: 92.76761086461369
Iteration: 14, Func. Count: 168, Neg. LLF: 92.76534867034414
Iteration: 15, Func. Count: 179, Neg. LLF: 92.7650762679239
Iteration: 16, Func. Count: 190, Neg. LLF: 92.76507153409871
Iteration: 17, Func. Count: 200, Neg. LLF: 92.76507144795214
Optimization terminated successfully (Exit mode 0)
Current function value: 92.76507153409871
Iterations: 17
Function evaluations: 200
Gradient evaluations: 17
Iteration: 1, Func. Count: 9, Neg. LLF: 107.67705440341257
Iteration: 2, Func. Count: 19, Neg. LLF: 1255.9858632847997
Iteration: 3, Func. Count: 28, Neg. LLF: 163.68462632316152
Iteration: 4, Func. Count: 37, Neg. LLF: 188.71778694595432
Iteration: 5, Func. Count: 46, Neg. LLF: 127.3307398197344
Iteration: 6, Func. Count: 55, Neg. LLF: 218.0310494351782
Iteration: 7, Func. Count: 64, Neg. LLF: 128.12075783903342
Iteration: 8, Func. Count: 73, Neg. LLF: 107.99799399118756
Iteration: 9, Func. Count: 82, Neg. LLF: 97.65583946124647
Iteration: 10, Func. Count: 91, Neg. LLF: 94.58674232115095
Iteration: 11, Func. Count: 100, Neg. LLF: 95.16367696259722
Iteration: 12, Func. Count: 109, Neg. LLF: 93.88763501104846
Iteration: 13, Func. Count: 117, Neg. LLF: 94.13361150165198
Iteration: 14, Func. Count: 126, Neg. LLF: 93.86033855160491
Iteration: 15, Func. Count: 135, Neg. LLF: 93.82507474413934
Iteration: 16, Func. Count: 143, Neg. LLF: 93.80826684545356
Iteration: 17, Func. Count: 151, Neg. LLF: 93.80656880504375
Iteration: 18, Func. Count: 159, Neg. LLF: 93.80507177693254
Iteration: 19, Func. Count: 167, Neg. LLF: 93.80384706675757
Iteration: 20, Func. Count: 175, Neg. LLF: 93.8036856754085
Iteration: 21, Func. Count: 183, Neg. LLF: 93.80367143389483
Iteration: 22, Func. Count: 190, Neg. LLF: 93.80367141045643
Optimization terminated successfully (Exit mode 0)
Current function value: 93.80367143389483
Iterations: 22
Function evaluations: 190
Gradient evaluations: 22
Iteration: 1, Func. Count: 10, Neg. LLF: 42320359.437445685
Iteration: 2, Func. Count: 20, Neg. LLF: 7885018.017885825
Iteration: 3, Func. Count: 30, Neg. LLF: 97.35412808353327
Iteration: 4, Func. Count: 41, Neg. LLF: 93.90268525613727
Iteration: 5, Func. Count: 51, Neg. LLF: 93.3811980743494
Iteration: 6, Func. Count: 61, Neg. LLF: 93.224638951279
Iteration: 7, Func. Count: 71, Neg. LLF: 93.17444509170133
Iteration: 8, Func. Count: 81, Neg. LLF: 92.75995865084344
Iteration: 9, Func. Count: 90, Neg. LLF: 92.74000257279718
Iteration: 10, Func. Count: 99, Neg. LLF: 92.73818564759286
Iteration: 11, Func. Count: 108, Neg. LLF: 92.73797515524757
Iteration: 12, Func. Count: 117, Neg. LLF: 92.73786496712363
Iteration: 13, Func. Count: 125, Neg. LLF: 92.73786478577499
Optimization terminated successfully (Exit mode 0)
Current function value: 92.73786496712363
Iterations: 13
Function evaluations: 125
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 96.44902927855308
Iteration: 2, Func. Count: 21, Neg. LLF: 98.98979641999823
Iteration: 3, Func. Count: 33, Neg. LLF: 125.98420061666714
Iteration: 4, Func. Count: 45, Neg. LLF: 6765305.349615876
Iteration: 5, Func. Count: 56, Neg. LLF: 265.18508235967136
Iteration: 6, Func. Count: 67, Neg. LLF: 3778.140737819548
Iteration: 7, Func. Count: 78, Neg. LLF: 142.09641517964488
Iteration: 8, Func. Count: 89, Neg. LLF: 94.27721847721583
Iteration: 9, Func. Count: 99, Neg. LLF: 94.11530111715986
Iteration: 10, Func. Count: 109, Neg. LLF: 101.54429928916058
Iteration: 11, Func. Count: 121, Neg. LLF: 94.898581661418
Iteration: 12, Func. Count: 132, Neg. LLF: 93.39146493019894
Iteration: 13, Func. Count: 142, Neg. LLF: 93.32182587165632
Iteration: 14, Func. Count: 152, Neg. LLF: 93.29811188600421
Iteration: 15, Func. Count: 162, Neg. LLF: 93.24729905019939
Iteration: 16, Func. Count: 172, Neg. LLF: 93.23731070150738
Iteration: 17, Func. Count: 183, Neg. LLF: 93.15236312789527
Iteration: 18, Func. Count: 193, Neg. LLF: 93.06712018619248
Iteration: 19, Func. Count: 203, Neg. LLF: 92.99783755134455
Iteration: 20, Func. Count: 213, Neg. LLF: 92.88494165914558
Iteration: 21, Func. Count: 223, Neg. LLF: 92.8045332281314
Iteration: 22, Func. Count: 233, Neg. LLF: 92.75069820963074
Iteration: 23, Func. Count: 243, Neg. LLF: 92.74424333653873
Iteration: 24, Func. Count: 253, Neg. LLF: 92.74042392914798
Iteration: 25, Func. Count: 263, Neg. LLF: 92.7381835288441
Iteration: 26, Func. Count: 273, Neg. LLF: 92.73788194118525
Iteration: 27, Func. Count: 283, Neg. LLF: 92.73786537479714
Iteration: 28, Func. Count: 292, Neg. LLF: 92.7378652265003
Optimization terminated successfully (Exit mode 0)
Current function value: 92.73786537479714
Iterations: 28
Function evaluations: 292
Gradient evaluations: 28
Iteration: 1, Func. Count: 12, Neg. LLF: 96.14561226778315
Iteration: 2, Func. Count: 23, Neg. LLF: 145.9149337092322
Iteration: 3, Func. Count: 35, Neg. LLF: 112.31028966153984
Iteration: 4, Func. Count: 48, Neg. LLF: 1403.2253928716964
Iteration: 5, Func. Count: 60, Neg. LLF: 5946.064972693258
Iteration: 6, Func. Count: 72, Neg. LLF: 99.4539817191705
Iteration: 7, Func. Count: 84, Neg. LLF: 240.10206008326404
Iteration: 8, Func. Count: 96, Neg. LLF: 93.94791257210841
Iteration: 9, Func. Count: 107, Neg. LLF: 94.1002835189716
Iteration: 10, Func. Count: 121, Neg. LLF: 93.38526335454549
Iteration: 11, Func. Count: 132, Neg. LLF: 93.36352426774263
Iteration: 12, Func. Count: 143, Neg. LLF: 93.53038110692935
Iteration: 13, Func. Count: 155, Neg. LLF: 93.349689291335
Iteration: 14, Func. Count: 167, Neg. LLF: 93.29293771585017
Iteration: 15, Func. Count: 178, Neg. LLF: 93.33494964429143
Iteration: 16, Func. Count: 190, Neg. LLF: 93.2635137771953
Iteration: 17, Func. Count: 202, Neg. LLF: 93.23386010041764
Iteration: 18, Func. Count: 213, Neg. LLF: 93.21394202215923
Iteration: 19, Func. Count: 224, Neg. LLF: 93.1944355079584
Iteration: 20, Func. Count: 235, Neg. LLF: 93.0897931237747
Iteration: 21, Func. Count: 246, Neg. LLF: 92.95469227211316
Iteration: 22, Func. Count: 257, Neg. LLF: 92.76081821468425
Iteration: 23, Func. Count: 268, Neg. LLF: 92.73818570316952
Iteration: 24, Func. Count: 279, Neg. LLF: 92.73788289526647
Iteration: 25, Func. Count: 290, Neg. LLF: 92.73786657630745
Iteration: 26, Func. Count: 301, Neg. LLF: 92.73786487909977
Iteration: 27, Func. Count: 311, Neg. LLF: 92.73786473731352
Optimization terminated successfully (Exit mode 0)
Current function value: 92.73786487909977
Iterations: 27
Function evaluations: 311
Gradient evaluations: 27
Iteration: 1, Func. Count: 13, Neg. LLF: 96.20040535238994
Iteration: 2, Func. Count: 25, Neg. LLF: 140.02345216256896
Iteration: 3, Func. Count: 38, Neg. LLF: 209.21823790025874
Iteration: 4, Func. Count: 51, Neg. LLF: 9680.211353789577
Iteration: 5, Func. Count: 64, Neg. LLF: 1989.9676433844973
Iteration: 6, Func. Count: 77, Neg. LLF: 428.98193209388404
Iteration: 7, Func. Count: 90, Neg. LLF: 96.4031612487575
Iteration: 8, Func. Count: 103, Neg. LLF: 95.97489650155914
Iteration: 9, Func. Count: 116, Neg. LLF: 93.7254359176438
Iteration: 10, Func. Count: 128, Neg. LLF: 93.81299668806537
Iteration: 11, Func. Count: 143, Neg. LLF: 98.9477262435404
Iteration: 12, Func. Count: 157, Neg. LLF: 93.76183393316623
Iteration: 13, Func. Count: 170, Neg. LLF: 93.88786478050098
Iteration: 14, Func. Count: 183, Neg. LLF: 93.23885452049444
Iteration: 15, Func. Count: 195, Neg. LLF: 93.18917753832837
Iteration: 16, Func. Count: 207, Neg. LLF: 93.16428155250212
Iteration: 17, Func. Count: 219, Neg. LLF: 93.14604321031305
Iteration: 18, Func. Count: 231, Neg. LLF: 93.14637247163508
Iteration: 19, Func. Count: 244, Neg. LLF: 93.14099744762646
Iteration: 20, Func. Count: 256, Neg. LLF: 93.14077213612771
Iteration: 21, Func. Count: 268, Neg. LLF: 93.14072293231688
Iteration: 22, Func. Count: 280, Neg. LLF: 93.14069160205449
Iteration: 23, Func. Count: 292, Neg. LLF: 93.14059935718332
Iteration: 24, Func. Count: 304, Neg. LLF: 93.14050815262284
Iteration: 25, Func. Count: 316, Neg. LLF: 93.14044717900829
Iteration: 26, Func. Count: 328, Neg. LLF: 93.14041939717538
Iteration: 27, Func. Count: 340, Neg. LLF: 93.14041879910833
Optimization terminated successfully (Exit mode 0)
Current function value: 93.14041879910833
Iterations: 27
Function evaluations: 340
Gradient evaluations: 27
Iteration: 1, Func. Count: 10, Neg. LLF: 95.53373447280279
Iteration: 2, Func. Count: 20, Neg. LLF: 3465.866410011262
Iteration: 3, Func. Count: 30, Neg. LLF: 1643.9011499907792
Iteration: 4, Func. Count: 40, Neg. LLF: 123.39030170553464
Iteration: 5, Func. Count: 50, Neg. LLF: 5532492.26783168
Iteration: 6, Func. Count: 60, Neg. LLF: 97.8445018036729
Iteration: 7, Func. Count: 70, Neg. LLF: 95.19771605902042
Iteration: 8, Func. Count: 80, Neg. LLF: 100.2233600851211
Iteration: 9, Func. Count: 90, Neg. LLF: 94.1629745270932
Iteration: 10, Func. Count: 100, Neg. LLF: 91.70218422989095
Iteration: 11, Func. Count: 109, Neg. LLF: 91.63521576919388
Iteration: 12, Func. Count: 118, Neg. LLF: 91.63841535076622
Iteration: 13, Func. Count: 128, Neg. LLF: 91.62455650124714
Iteration: 14, Func. Count: 137, Neg. LLF: 91.62307547661162
Iteration: 15, Func. Count: 146, Neg. LLF: 91.62220556667921
Iteration: 16, Func. Count: 155, Neg. LLF: 91.62209627594858
Iteration: 17, Func. Count: 164, Neg. LLF: 91.62208179076805
Iteration: 18, Func. Count: 173, Neg. LLF: 91.62208053592899
Iteration: 19, Func. Count: 181, Neg. LLF: 91.62208053034296
Optimization terminated successfully (Exit mode 0)
Current function value: 91.62208053592899
Iterations: 19
Function evaluations: 181
Gradient evaluations: 19
Iteration: 1, Func. Count: 11, Neg. LLF: 40373626.13898891
Iteration: 2, Func. Count: 22, Neg. LLF: 942.1700028510844
Iteration: 3, Func. Count: 33, Neg. LLF: 117.08946718749829
Iteration: 4, Func. Count: 44, Neg. LLF: 126.59022462869953
Iteration: 5, Func. Count: 55, Neg. LLF: 132.22879644061777
Iteration: 6, Func. Count: 66, Neg. LLF: 92.59253101846463
Iteration: 7, Func. Count: 77, Neg. LLF: 94.81582157167335
Iteration: 8, Func. Count: 88, Neg. LLF: 95.04733700823984
Iteration: 9, Func. Count: 99, Neg. LLF: 91.93374976385677
Iteration: 10, Func. Count: 109, Neg. LLF: 91.91511067589825
Iteration: 11, Func. Count: 119, Neg. LLF: 91.90619002549195
Iteration: 12, Func. Count: 129, Neg. LLF: 92.11201304499764
Iteration: 13, Func. Count: 140, Neg. LLF: 93.16721931340497
Iteration: 14, Func. Count: 151, Neg. LLF: 91.87474588433041
Iteration: 15, Func. Count: 161, Neg. LLF: 91.8592565285576
Iteration: 16, Func. Count: 171, Neg. LLF: 91.67244552379505
Iteration: 17, Func. Count: 181, Neg. LLF: 91.70169260361965
Iteration: 18, Func. Count: 192, Neg. LLF: 92.91311132573098
Iteration: 19, Func. Count: 203, Neg. LLF: 91.65186433959344
Iteration: 20, Func. Count: 214, Neg. LLF: 91.62755800990362
Iteration: 21, Func. Count: 224, Neg. LLF: 91.62547077936165
Iteration: 22, Func. Count: 234, Neg. LLF: 91.62450705823832
Iteration: 23, Func. Count: 244, Neg. LLF: 91.62290927062386
Iteration: 24, Func. Count: 254, Neg. LLF: 91.62244336987389
Iteration: 25, Func. Count: 264, Neg. LLF: 91.6221511893372
Iteration: 26, Func. Count: 274, Neg. LLF: 91.62208942999385
Iteration: 27, Func. Count: 284, Neg. LLF: 91.62208206603145
Iteration: 28, Func. Count: 294, Neg. LLF: 91.62208053559685
Iteration: 29, Func. Count: 303, Neg. LLF: 91.62208057154548
Optimization terminated successfully (Exit mode 0)
Current function value: 91.62208053559685
Iterations: 29
Function evaluations: 303
Gradient evaluations: 29
Iteration: 1, Func. Count: 12, Neg. LLF: 7905516.574776417
Iteration: 2, Func. Count: 24, Neg. LLF: 12537787.416655608
Iteration: 3, Func. Count: 36, Neg. LLF: 1955040.9789301914
Iteration: 4, Func. Count: 48, Neg. LLF: 116.39891290548685
Iteration: 5, Func. Count: 60, Neg. LLF: 103.27922188052358
Iteration: 6, Func. Count: 72, Neg. LLF: 94.68549694966129
Iteration: 7, Func. Count: 84, Neg. LLF: 93.35818626352548
Iteration: 8, Func. Count: 96, Neg. LLF: 92.16376435571142
Iteration: 9, Func. Count: 108, Neg. LLF: 91.92563847665791
Iteration: 10, Func. Count: 120, Neg. LLF: 92.61272579867924
Iteration: 11, Func. Count: 132, Neg. LLF: 91.64726751439963
Iteration: 12, Func. Count: 144, Neg. LLF: 91.54130646140236
Iteration: 13, Func. Count: 155, Neg. LLF: 91.49844853838954
Iteration: 14, Func. Count: 166, Neg. LLF: 91.49709695021787
Iteration: 15, Func. Count: 177, Neg. LLF: 91.49657532688208
Iteration: 16, Func. Count: 188, Neg. LLF: 91.49651545784906
Iteration: 17, Func. Count: 199, Neg. LLF: 91.4965105156675
Iteration: 18, Func. Count: 210, Neg. LLF: 91.49650884339381
Iteration: 19, Func. Count: 221, Neg. LLF: 91.49650814810246
Optimization terminated successfully (Exit mode 0)
Current function value: 91.49650814810246
Iterations: 19
Function evaluations: 221
Gradient evaluations: 19
Iteration: 1, Func. Count: 13, Neg. LLF: 7827632.72122712
Iteration: 2, Func. Count: 26, Neg. LLF: 13963931.914614212
Iteration: 3, Func. Count: 39, Neg. LLF: 1227.3563320821231
Iteration: 4, Func. Count: 52, Neg. LLF: 232.48092979247997
Iteration: 5, Func. Count: 65, Neg. LLF: 101.69191445212378
Iteration: 6, Func. Count: 78, Neg. LLF: 94.8370324573082
Iteration: 7, Func. Count: 91, Neg. LLF: 109.98290140741766
Iteration: 8, Func. Count: 104, Neg. LLF: 92.42302427619246
Iteration: 9, Func. Count: 117, Neg. LLF: 92.70643461540996
Iteration: 10, Func. Count: 130, Neg. LLF: 92.94590072543954
Iteration: 11, Func. Count: 143, Neg. LLF: 91.69505729716734
Iteration: 12, Func. Count: 156, Neg. LLF: 91.65114492972492
Iteration: 13, Func. Count: 169, Neg. LLF: 91.54032447370798
Iteration: 14, Func. Count: 181, Neg. LLF: 91.5029271068986
Iteration: 15, Func. Count: 193, Neg. LLF: 91.49907915540244
Iteration: 16, Func. Count: 205, Neg. LLF: 91.49662261640432
Iteration: 17, Func. Count: 217, Neg. LLF: 91.4965401349845
Iteration: 18, Func. Count: 229, Neg. LLF: 91.49650862157317
Iteration: 19, Func. Count: 240, Neg. LLF: 91.49650862020518
Optimization terminated successfully (Exit mode 0)
Current function value: 91.49650862157317
Iterations: 19
Function evaluations: 240
Gradient evaluations: 19
Iteration: 1, Func. Count: 14, Neg. LLF: 7875400.453907877
Iteration: 2, Func. Count: 28, Neg. LLF: 17546941.951259643
Iteration: 3, Func. Count: 42, Neg. LLF: 14328.67177339546
Iteration: 4, Func. Count: 56, Neg. LLF: 246.63972034962626
Iteration: 5, Func. Count: 70, Neg. LLF: 104.02361972361577
Iteration: 6, Func. Count: 84, Neg. LLF: 97.04339814947953
Iteration: 7, Func. Count: 98, Neg. LLF: 93.63788747892572
Iteration: 8, Func. Count: 112, Neg. LLF: 94.14871973663838
Iteration: 9, Func. Count: 126, Neg. LLF: 91.9328259587089
Iteration: 10, Func. Count: 140, Neg. LLF: 91.88414629725251
Iteration: 11, Func. Count: 154, Neg. LLF: 93.0723972725255
Iteration: 12, Func. Count: 168, Neg. LLF: 91.90543591031694
Iteration: 13, Func. Count: 182, Neg. LLF: 91.54876073367643
Iteration: 14, Func. Count: 195, Neg. LLF: 91.50467650709224
Iteration: 15, Func. Count: 208, Neg. LLF: 91.5166222107127
Iteration: 16, Func. Count: 222, Neg. LLF: 91.49660089159796
Iteration: 17, Func. Count: 235, Neg. LLF: 91.49652190141049
Iteration: 18, Func. Count: 248, Neg. LLF: 91.49650984599995
Iteration: 19, Func. Count: 261, Neg. LLF: 91.49650820645229
Iteration: 20, Func. Count: 273, Neg. LLF: 91.49650824748198
Optimization terminated successfully (Exit mode 0)
Current function value: 91.49650820645229
Iterations: 20
Function evaluations: 273
Gradient evaluations: 20
Iteration: 1, Func. Count: 11, Neg. LLF: 100.66622516905787
Iteration: 2, Func. Count: 23, Neg. LLF: 193.49594595397213
Iteration: 3, Func. Count: 34, Neg. LLF: 4258995.770029399
Iteration: 4, Func. Count: 45, Neg. LLF: 1556.79535072729
Iteration: 5, Func. Count: 56, Neg. LLF: 1180022.364071635
Iteration: 6, Func. Count: 67, Neg. LLF: 95.21589251366422
Iteration: 7, Func. Count: 78, Neg. LLF: 227.89814887389429
Iteration: 8, Func. Count: 89, Neg. LLF: 12358.059873925735
Iteration: 9, Func. Count: 100, Neg. LLF: 92.53505375804131
Iteration: 10, Func. Count: 111, Neg. LLF: 92.25831738943474
Iteration: 11, Func. Count: 122, Neg. LLF: 92.70538790723852
Iteration: 12, Func. Count: 133, Neg. LLF: 92.19266844326363
Iteration: 13, Func. Count: 144, Neg. LLF: 91.61139178866098
Iteration: 14, Func. Count: 154, Neg. LLF: 91.58978864997775
Iteration: 15, Func. Count: 164, Neg. LLF: 91.55164894818353
Iteration: 16, Func. Count: 174, Neg. LLF: 91.54788150443926
Iteration: 17, Func. Count: 184, Neg. LLF: 91.5470269526634
Iteration: 18, Func. Count: 194, Neg. LLF: 91.54695553220962
Iteration: 19, Func. Count: 204, Neg. LLF: 91.54695266356013
Iteration: 20, Func. Count: 213, Neg. LLF: 91.54695264063808
Optimization terminated successfully (Exit mode 0)
Current function value: 91.54695266356013
Iterations: 20
Function evaluations: 213
Gradient evaluations: 20
Iteration: 1, Func. Count: 12, Neg. LLF: 7689519.600447344
Iteration: 2, Func. Count: 24, Neg. LLF: 3730249.606432168
Iteration: 3, Func. Count: 36, Neg. LLF: 7438518.800529713
Iteration: 4, Func. Count: 48, Neg. LLF: 117.77870558678093
Iteration: 5, Func. Count: 60, Neg. LLF: 95.05468840295158
Iteration: 6, Func. Count: 72, Neg. LLF: 93.58840264100085
Iteration: 7, Func. Count: 84, Neg. LLF: 92.25781952318906
Iteration: 8, Func. Count: 95, Neg. LLF: 97.07191033587262
Iteration: 9, Func. Count: 107, Neg. LLF: 92.28451560828124
Iteration: 10, Func. Count: 119, Neg. LLF: 91.90319727137093
Iteration: 11, Func. Count: 130, Neg. LLF: 92.0172700919601
Iteration: 12, Func. Count: 142, Neg. LLF: 91.98785947793743
Iteration: 13, Func. Count: 154, Neg. LLF: 91.85512148303806
Iteration: 14, Func. Count: 165, Neg. LLF: 91.85191232113216
Iteration: 15, Func. Count: 177, Neg. LLF: 91.82297465090741
Iteration: 16, Func. Count: 188, Neg. LLF: 91.60716111863626
Iteration: 17, Func. Count: 199, Neg. LLF: 91.57480121358759
Iteration: 18, Func. Count: 210, Neg. LLF: 91.56799278437445
Iteration: 19, Func. Count: 221, Neg. LLF: 91.55448863938322
Iteration: 20, Func. Count: 232, Neg. LLF: 91.54931497114433
Iteration: 21, Func. Count: 243, Neg. LLF: 91.54735264813097
Iteration: 22, Func. Count: 254, Neg. LLF: 91.54703748617773
Iteration: 23, Func. Count: 265, Neg. LLF: 91.54698272382917
Iteration: 24, Func. Count: 276, Neg. LLF: 91.54695965558066
Iteration: 25, Func. Count: 287, Neg. LLF: 91.54695430108205
Iteration: 26, Func. Count: 298, Neg. LLF: 91.54695316685769
Iteration: 27, Func. Count: 308, Neg. LLF: 91.54695321317779
Optimization terminated successfully (Exit mode 0)
Current function value: 91.54695316685769
Iterations: 27
Function evaluations: 308
Gradient evaluations: 27
Iteration: 1, Func. Count: 13, Neg. LLF: 5438775.113308743
Iteration: 2, Func. Count: 26, Neg. LLF: 47395656.2847359
Iteration: 3, Func. Count: 39, Neg. LLF: 3758323.309661009
Iteration: 4, Func. Count: 52, Neg. LLF: 6889709.901531107
Iteration: 5, Func. Count: 65, Neg. LLF: 103.85880871920538
Iteration: 6, Func. Count: 78, Neg. LLF: 103.74483501665037
Iteration: 7, Func. Count: 91, Neg. LLF: 95.13143725838671
Iteration: 8, Func. Count: 104, Neg. LLF: 99.74775017888693
Iteration: 9, Func. Count: 117, Neg. LLF: 92.66225799758352
Iteration: 10, Func. Count: 130, Neg. LLF: 93.08408968413131
Iteration: 11, Func. Count: 143, Neg. LLF: 92.75846413573277
Iteration: 12, Func. Count: 156, Neg. LLF: 91.63917042701183
Iteration: 13, Func. Count: 168, Neg. LLF: 91.7519168531191
Iteration: 14, Func. Count: 181, Neg. LLF: 91.59835868831863
Iteration: 15, Func. Count: 194, Neg. LLF: 91.50868857360895
Iteration: 16, Func. Count: 207, Neg. LLF: 91.44752323943979
Iteration: 17, Func. Count: 220, Neg. LLF: 91.44081596063643
Iteration: 18, Func. Count: 232, Neg. LLF: 91.44044932476781
Iteration: 19, Func. Count: 244, Neg. LLF: 91.44037491902411
Iteration: 20, Func. Count: 256, Neg. LLF: 91.44033940592563
Iteration: 21, Func. Count: 268, Neg. LLF: 91.44032624855605
Iteration: 22, Func. Count: 280, Neg. LLF: 91.44032434479479
Iteration: 23, Func. Count: 291, Neg. LLF: 91.44032433234177
Optimization terminated successfully (Exit mode 0)
Current function value: 91.44032434479479
Iterations: 23
Function evaluations: 291
Gradient evaluations: 23
Iteration: 1, Func. Count: 14, Neg. LLF: 117.02022577807146
Iteration: 2, Func. Count: 28, Neg. LLF: 1767365.6549965716
Iteration: 3, Func. Count: 42, Neg. LLF: 2426363.067269307
Iteration: 4, Func. Count: 56, Neg. LLF: 650.6055238896356
Iteration: 5, Func. Count: 70, Neg. LLF: 931.3456080412449
Iteration: 6, Func. Count: 84, Neg. LLF: 92.7712573042959
Iteration: 7, Func. Count: 98, Neg. LLF: 92.29253789066752
Iteration: 8, Func. Count: 112, Neg. LLF: 93.965893272621
Iteration: 9, Func. Count: 126, Neg. LLF: 93.16654711465613
Iteration: 10, Func. Count: 140, Neg. LLF: 92.49284546219278
Iteration: 11, Func. Count: 154, Neg. LLF: 92.01475537826276
Iteration: 12, Func. Count: 168, Neg. LLF: 92.30023933322423
Iteration: 13, Func. Count: 182, Neg. LLF: 91.38302707833186
Iteration: 14, Func. Count: 195, Neg. LLF: 91.36350962334308
Iteration: 15, Func. Count: 208, Neg. LLF: 91.3563627341039
Iteration: 16, Func. Count: 221, Neg. LLF: 91.35396962392888
Iteration: 17, Func. Count: 234, Neg. LLF: 91.35379349371831
Iteration: 18, Func. Count: 247, Neg. LLF: 91.35376836716624
Iteration: 19, Func. Count: 260, Neg. LLF: 91.3537678438919
Optimization terminated successfully (Exit mode 0)
Current function value: 91.3537678438919
Iterations: 19
Function evaluations: 260
Gradient evaluations: 19
Iteration: 1, Func. Count: 15, Neg. LLF: 114.10953982057174
Iteration: 2, Func. Count: 30, Neg. LLF: 1726403.5334541337
Iteration: 3, Func. Count: 45, Neg. LLF: 2733714.4987011724
Iteration: 4, Func. Count: 60, Neg. LLF: 167.08789734271988
Iteration: 5, Func. Count: 76, Neg. LLF: 734.6475099690074
Iteration: 6, Func. Count: 91, Neg. LLF: 93.30959094651676
Iteration: 7, Func. Count: 106, Neg. LLF: 92.03455403228679
Iteration: 8, Func. Count: 121, Neg. LLF: 92.26498637621468
Iteration: 9, Func. Count: 136, Neg. LLF: 92.19300531102049
Iteration: 10, Func. Count: 151, Neg. LLF: 93.23314912540208
Iteration: 11, Func. Count: 166, Neg. LLF: 91.43267244629504
Iteration: 12, Func. Count: 180, Neg. LLF: 91.37235622563365
Iteration: 13, Func. Count: 194, Neg. LLF: 91.3748780471394
Iteration: 14, Func. Count: 209, Neg. LLF: 91.35441618267791
Iteration: 15, Func. Count: 223, Neg. LLF: 91.35405430251035
Iteration: 16, Func. Count: 237, Neg. LLF: 91.35377332469125
Iteration: 17, Func. Count: 251, Neg. LLF: 91.35376824251
Iteration: 18, Func. Count: 265, Neg. LLF: 91.3537678453328
Optimization terminated successfully (Exit mode 0)
Current function value: 91.3537678453328
Iterations: 18
Function evaluations: 265
Gradient evaluations: 18
Iteration: 1, Func. Count: 12, Neg. LLF: 106.27041175812496
Iteration: 2, Func. Count: 25, Neg. LLF: 268.7548824242993
Iteration: 3, Func. Count: 37, Neg. LLF: 3176929.951480012
Iteration: 4, Func. Count: 49, Neg. LLF: 5482525.104327922
Iteration: 5, Func. Count: 61, Neg. LLF: 148.85434126674434
Iteration: 6, Func. Count: 73, Neg. LLF: 96.53433751945931
Iteration: 7, Func. Count: 85, Neg. LLF: 127.90607506516386
Iteration: 8, Func. Count: 97, Neg. LLF: 187.3117662254225
Iteration: 9, Func. Count: 109, Neg. LLF: 92.86714124535858
Iteration: 10, Func. Count: 121, Neg. LLF: 92.06439052813685
Iteration: 11, Func. Count: 133, Neg. LLF: 92.59483320021249
Iteration: 12, Func. Count: 145, Neg. LLF: 92.69551662330446
Iteration: 13, Func. Count: 157, Neg. LLF: 91.50326515269937
Iteration: 14, Func. Count: 168, Neg. LLF: 91.41219521598852
Iteration: 15, Func. Count: 179, Neg. LLF: 91.37805771489539
Iteration: 16, Func. Count: 190, Neg. LLF: 91.37220300587424
Iteration: 17, Func. Count: 201, Neg. LLF: 91.37147245380903
Iteration: 18, Func. Count: 212, Neg. LLF: 91.37134839563586
Iteration: 19, Func. Count: 223, Neg. LLF: 91.37131563029403
Iteration: 20, Func. Count: 234, Neg. LLF: 91.37131407762276
Iteration: 21, Func. Count: 244, Neg. LLF: 91.37131407600735
Optimization terminated successfully (Exit mode 0)
Current function value: 91.37131407762276
Iterations: 21
Function evaluations: 244
Gradient evaluations: 21
Iteration: 1, Func. Count: 13, Neg. LLF: 5501119.12497548
Iteration: 2, Func. Count: 26, Neg. LLF: 61494487.66613435
Iteration: 3, Func. Count: 39, Neg. LLF: 1896081.8499732951
Iteration: 4, Func. Count: 52, Neg. LLF: 6842601.798760972
Iteration: 5, Func. Count: 65, Neg. LLF: 110.63896107845787
Iteration: 6, Func. Count: 78, Neg. LLF: 100.59099430665525
Iteration: 7, Func. Count: 91, Neg. LLF: 95.59761054613179
Iteration: 8, Func. Count: 104, Neg. LLF: 105.7282371613385
Iteration: 9, Func. Count: 117, Neg. LLF: 92.4948229831251
Iteration: 10, Func. Count: 130, Neg. LLF: 93.45161164380053
Iteration: 11, Func. Count: 143, Neg. LLF: 93.2047166605292
Iteration: 12, Func. Count: 156, Neg. LLF: 94.36176217523062
Iteration: 13, Func. Count: 169, Neg. LLF: 91.50034719938327
Iteration: 14, Func. Count: 181, Neg. LLF: 91.47604255270706
Iteration: 15, Func. Count: 193, Neg. LLF: 91.49888163030126
Iteration: 16, Func. Count: 206, Neg. LLF: 91.39306548375554
Iteration: 17, Func. Count: 218, Neg. LLF: 91.38624613273055
Iteration: 18, Func. Count: 230, Neg. LLF: 91.37343221075425
Iteration: 19, Func. Count: 242, Neg. LLF: 91.37165175252356
Iteration: 20, Func. Count: 254, Neg. LLF: 91.3714281594915
Iteration: 21, Func. Count: 266, Neg. LLF: 91.37132080573276
Iteration: 22, Func. Count: 278, Neg. LLF: 91.37131619734096
Iteration: 23, Func. Count: 290, Neg. LLF: 91.37131425035162
Iteration: 24, Func. Count: 301, Neg. LLF: 91.37131430415795
Optimization terminated successfully (Exit mode 0)
Current function value: 91.37131425035162
Iterations: 24
Function evaluations: 301
Gradient evaluations: 24
Iteration: 1, Func. Count: 14, Neg. LLF: 109.46375527759925
Iteration: 2, Func. Count: 28, Neg. LLF: 382.8884334481261
Iteration: 3, Func. Count: 42, Neg. LLF: 1548184.6741821512
Iteration: 4, Func. Count: 56, Neg. LLF: 225553.57923022014
Iteration: 5, Func. Count: 70, Neg. LLF: 93.46093634484707
Iteration: 6, Func. Count: 84, Neg. LLF: 96.77336805802705
Iteration: 7, Func. Count: 99, Neg. LLF: 95.18431596687529
Iteration: 8, Func. Count: 114, Neg. LLF: 98.33259107491229
Iteration: 9, Func. Count: 128, Neg. LLF: 91.84743650478394
Iteration: 10, Func. Count: 142, Neg. LLF: 94.65557005029967
Iteration: 11, Func. Count: 156, Neg. LLF: 91.65228832757609
Iteration: 12, Func. Count: 170, Neg. LLF: 91.45580152710524
Iteration: 13, Func. Count: 183, Neg. LLF: 91.39851970206175
Iteration: 14, Func. Count: 196, Neg. LLF: 91.38064555170955
Iteration: 15, Func. Count: 209, Neg. LLF: 91.3742561035379
Iteration: 16, Func. Count: 222, Neg. LLF: 91.37137462072597
Iteration: 17, Func. Count: 235, Neg. LLF: 91.37131532432312
Iteration: 18, Func. Count: 248, Neg. LLF: 91.371314027132
Iteration: 19, Func. Count: 260, Neg. LLF: 91.37131405466378
Optimization terminated successfully (Exit mode 0)
Current function value: 91.371314027132
Iterations: 19
Function evaluations: 260
Gradient evaluations: 19
Iteration: 1, Func. Count: 15, Neg. LLF: 105.99426539333648
Iteration: 2, Func. Count: 30, Neg. LLF: 350.3832237553422
Iteration: 3, Func. Count: 45, Neg. LLF: 4322760.747175278
Iteration: 4, Func. Count: 60, Neg. LLF: 266.031024196761
Iteration: 5, Func. Count: 75, Neg. LLF: 96.00071611857958
Iteration: 6, Func. Count: 90, Neg. LLF: 94.81189114066183
Iteration: 7, Func. Count: 106, Neg. LLF: 93.27401566407467
Iteration: 8, Func. Count: 122, Neg. LLF: 93.2845283873494
Iteration: 9, Func. Count: 137, Neg. LLF: 92.06325172215803
Iteration: 10, Func. Count: 152, Neg. LLF: 91.67712267434608
Iteration: 11, Func. Count: 167, Neg. LLF: 91.56177420464283
Iteration: 12, Func. Count: 182, Neg. LLF: 91.42664149691478
Iteration: 13, Func. Count: 196, Neg. LLF: 91.46618480260443
Iteration: 14, Func. Count: 211, Neg. LLF: 91.41026379598131
Iteration: 15, Func. Count: 226, Neg. LLF: 91.37599182668094
Iteration: 16, Func. Count: 240, Neg. LLF: 91.37169547579937
Iteration: 17, Func. Count: 254, Neg. LLF: 91.37134855141656
Iteration: 18, Func. Count: 268, Neg. LLF: 91.37131696160742
Iteration: 19, Func. Count: 282, Neg. LLF: 91.37131422008704
Iteration: 20, Func. Count: 295, Neg. LLF: 91.37131422382457
Optimization terminated successfully (Exit mode 0)
Current function value: 91.37131422008704
Iterations: 20
Function evaluations: 295
Gradient evaluations: 20
Iteration: 1, Func. Count: 16, Neg. LLF: 105.18492480484556
Iteration: 2, Func. Count: 32, Neg. LLF: 377.9227900784948
Iteration: 3, Func. Count: 48, Neg. LLF: 4311554.94105276
Iteration: 4, Func. Count: 64, Neg. LLF: 129.788090559434
Iteration: 5, Func. Count: 80, Neg. LLF: 101.46161030244141
Iteration: 6, Func. Count: 96, Neg. LLF: 94.30816171901522
Iteration: 7, Func. Count: 112, Neg. LLF: 92.99458142850065
Iteration: 8, Func. Count: 128, Neg. LLF: 94.50567978252178
Iteration: 9, Func. Count: 144, Neg. LLF: 92.89341906510039
Iteration: 10, Func. Count: 160, Neg. LLF: 91.64415351378382
Iteration: 11, Func. Count: 176, Neg. LLF: 92.07776119349627
Iteration: 12, Func. Count: 192, Neg. LLF: 91.44284370177549
Iteration: 13, Func. Count: 207, Neg. LLF: 91.4642207602095
Iteration: 14, Func. Count: 223, Neg. LLF: 91.39263623779559
Iteration: 15, Func. Count: 238, Neg. LLF: 91.37877984368038
Iteration: 16, Func. Count: 253, Neg. LLF: 91.37177423929741
Iteration: 17, Func. Count: 268, Neg. LLF: 91.37134737290323
Iteration: 18, Func. Count: 283, Neg. LLF: 91.37131539773767
Iteration: 19, Func. Count: 298, Neg. LLF: 91.37131413317898
Iteration: 20, Func. Count: 312, Neg. LLF: 91.37131421620352
Optimization terminated successfully (Exit mode 0)
Current function value: 91.37131413317898
Iterations: 20
Function evaluations: 312
Gradient evaluations: 20
Iteration: 1, Func. Count: 6, Neg. LLF: 115.27443259723067
Iteration: 2, Func. Count: 13, Neg. LLF: 221327720.9181249
Iteration: 3, Func. Count: 19, Neg. LLF: 5446326.278225817
Iteration: 4, Func. Count: 25, Neg. LLF: 1098440.8716790567
Iteration: 5, Func. Count: 31, Neg. LLF: 1092756.5805919415
Iteration: 6, Func. Count: 37, Neg. LLF: 96.75907623282656
Iteration: 7, Func. Count: 43, Neg. LLF: 106.11696382035483
Iteration: 8, Func. Count: 49, Neg. LLF: 93.42252422143007
Iteration: 9, Func. Count: 54, Neg. LLF: 93.38273404545271
Iteration: 10, Func. Count: 59, Neg. LLF: 93.29776798114636
Iteration: 11, Func. Count: 64, Neg. LLF: 93.24924609983105
Iteration: 12, Func. Count: 69, Neg. LLF: 93.22006759979433
Iteration: 13, Func. Count: 74, Neg. LLF: 93.20677370602691
Iteration: 14, Func. Count: 79, Neg. LLF: 93.20423141559709
Iteration: 15, Func. Count: 84, Neg. LLF: 93.20407223253433
Iteration: 16, Func. Count: 89, Neg. LLF: 93.20403958625427
Iteration: 17, Func. Count: 94, Neg. LLF: 93.20403907516585
Optimization terminated successfully (Exit mode 0)
Current function value: 93.20403907516585
Iterations: 17
Function evaluations: 94
Gradient evaluations: 17
Iteration: 1, Func. Count: 5, Neg. LLF: 123.8454284474338
Iteration: 2, Func. Count: 12, Neg. LLF: 116.86141850759867
Iteration: 3, Func. Count: 17, Neg. LLF: 99.92636377608713
Iteration: 4, Func. Count: 21, Neg. LLF: 99.89190251116355
Iteration: 5, Func. Count: 25, Neg. LLF: 99.87498813172996
Iteration: 6, Func. Count: 29, Neg. LLF: 99.87366663773228
Iteration: 7, Func. Count: 33, Neg. LLF: 99.87365808773878
Iteration: 8, Func. Count: 36, Neg. LLF: 99.87365808885413
Optimization terminated successfully (Exit mode 0)
Current function value: 99.87365808773878
Iterations: 8
Function evaluations: 36
Gradient evaluations: 8
Iteration: 1, Func. Count: 6, Neg. LLF: 41538551.76261842
Iteration: 2, Func. Count: 12, Neg. LLF: 5314223.906148285
Iteration: 3, Func. Count: 18, Neg. LLF: 130.17330589319516
Iteration: 4, Func. Count: 24, Neg. LLF: 90.24425570951361
Iteration: 5, Func. Count: 29, Neg. LLF: 90.2163129036437
Iteration: 6, Func. Count: 34, Neg. LLF: 90.21012541409995
Iteration: 7, Func. Count: 39, Neg. LLF: 90.20921630154272
Iteration: 8, Func. Count: 44, Neg. LLF: 90.20918901061843
Iteration: 9, Func. Count: 49, Neg. LLF: 90.20917066971883
Iteration: 10, Func. Count: 53, Neg. LLF: 90.20917054601279
Optimization terminated successfully (Exit mode 0)
Current function value: 90.20917066971883
Iterations: 10
Function evaluations: 53
Gradient evaluations: 10
Iteration: 1, Func. Count: 7, Neg. LLF: 46426948.57834399
Iteration: 2, Func. Count: 15, Neg. LLF: 1474339.6164886318
Iteration: 3, Func. Count: 22, Neg. LLF: 924.9250329648513
Iteration: 4, Func. Count: 29, Neg. LLF: 109.5937065138748
Iteration: 5, Func. Count: 36, Neg. LLF: 199.17928499446145
Iteration: 6, Func. Count: 43, Neg. LLF: 95.64626153246908
Iteration: 7, Func. Count: 49, Neg. LLF: 94.27332434423992
Iteration: 8, Func. Count: 55, Neg. LLF: 92.19145949656014
Iteration: 9, Func. Count: 61, Neg. LLF: 92.94721982250044
Iteration: 10, Func. Count: 68, Neg. LLF: 111.374616831035
Iteration: 11, Func. Count: 75, Neg. LLF: 90.43167721194321
Iteration: 12, Func. Count: 81, Neg. LLF: 90.25504026558791
Iteration: 13, Func. Count: 87, Neg. LLF: 90.23648874338758
Iteration: 14, Func. Count: 93, Neg. LLF: 90.22520256727191
Iteration: 15, Func. Count: 99, Neg. LLF: 90.21146169319083
Iteration: 16, Func. Count: 105, Neg. LLF: 90.20925528488627
Iteration: 17, Func. Count: 111, Neg. LLF: 90.20917099927821
Iteration: 18, Func. Count: 116, Neg. LLF: 90.20917096804621
Optimization terminated successfully (Exit mode 0)
Current function value: 90.20917099927821
Iterations: 18
Function evaluations: 116
Gradient evaluations: 18
Iteration: 1, Func. Count: 8, Neg. LLF: 66704683.587621525
Iteration: 2, Func. Count: 17, Neg. LLF: 104.56820702412179
Iteration: 3, Func. Count: 25, Neg. LLF: 576.0118463519583
Iteration: 4, Func. Count: 33, Neg. LLF: 93.50632605664083
Iteration: 5, Func. Count: 40, Neg. LLF: 135.18694832820074
Iteration: 6, Func. Count: 48, Neg. LLF: 91.77656533150271
Iteration: 7, Func. Count: 55, Neg. LLF: 156.61133259411972
Iteration: 8, Func. Count: 64, Neg. LLF: 90.79106690555842
Iteration: 9, Func. Count: 71, Neg. LLF: 90.5284964402205
Iteration: 10, Func. Count: 78, Neg. LLF: 90.25466937549933
Iteration: 11, Func. Count: 85, Neg. LLF: 90.23116822149397
Iteration: 12, Func. Count: 92, Neg. LLF: 90.21420036658775
Iteration: 13, Func. Count: 99, Neg. LLF: 90.20966728737444
Iteration: 14, Func. Count: 106, Neg. LLF: 90.20917627363262
Iteration: 15, Func. Count: 113, Neg. LLF: 90.20917058024804
Iteration: 16, Func. Count: 119, Neg. LLF: 90.20917060663672
Optimization terminated successfully (Exit mode 0)
Current function value: 90.20917058024804
Iterations: 16
Function evaluations: 119
Gradient evaluations: 16
Iteration: 1, Func. Count: 9, Neg. LLF: 93795334.09674993
Iteration: 2, Func. Count: 19, Neg. LLF: 104.62829102524252
Iteration: 3, Func. Count: 28, Neg. LLF: 833.5769214701672
Iteration: 4, Func. Count: 37, Neg. LLF: 94.95939995828185
Iteration: 5, Func. Count: 45, Neg. LLF: 140.2544032115739
Iteration: 6, Func. Count: 54, Neg. LLF: 91.64636512785238
Iteration: 7, Func. Count: 62, Neg. LLF: 96.48884027996725
Iteration: 8, Func. Count: 72, Neg. LLF: 90.818295789132
Iteration: 9, Func. Count: 80, Neg. LLF: 90.2652801725985
Iteration: 10, Func. Count: 88, Neg. LLF: 90.22223347612986
Iteration: 11, Func. Count: 96, Neg. LLF: 90.21041642628036
Iteration: 12, Func. Count: 104, Neg. LLF: 90.20920466256922
Iteration: 13, Func. Count: 112, Neg. LLF: 90.20917084430398
Iteration: 14, Func. Count: 119, Neg. LLF: 90.20917096912952
Optimization terminated successfully (Exit mode 0)
Current function value: 90.20917084430398
Iterations: 14
Function evaluations: 119
Gradient evaluations: 14
Iteration: 1, Func. Count: 6, Neg. LLF: 117.2010541934287
Iteration: 2, Func. Count: 13, Neg. LLF: 290517799.39345235
Iteration: 3, Func. Count: 19, Neg. LLF: 852181.3006900206
Iteration: 4, Func. Count: 25, Neg. LLF: 813578.6692851015
Iteration: 5, Func. Count: 31, Neg. LLF: 2714126.642319514
Iteration: 6, Func. Count: 37, Neg. LLF: 142.32500797696738
Iteration: 7, Func. Count: 43, Neg. LLF: 2718088.066749449
Iteration: 8, Func. Count: 49, Neg. LLF: 91.44424441521318
Iteration: 9, Func. Count: 54, Neg. LLF: 91.15425177061046
Iteration: 10, Func. Count: 59, Neg. LLF: 91.08746468930414
Iteration: 11, Func. Count: 64, Neg. LLF: 91.0230368284938
Iteration: 12, Func. Count: 69, Neg. LLF: 90.9652770436393
Iteration: 13, Func. Count: 74, Neg. LLF: 90.88327000863012
Iteration: 14, Func. Count: 79, Neg. LLF: 90.86622045905148
Iteration: 15, Func. Count: 84, Neg. LLF: 90.86031889299524
Iteration: 16, Func. Count: 89, Neg. LLF: 90.85715248476549
Iteration: 17, Func. Count: 94, Neg. LLF: 90.85705904953456
Iteration: 18, Func. Count: 99, Neg. LLF: 90.85704943752937
Iteration: 19, Func. Count: 103, Neg. LLF: 90.85704943752124
Optimization terminated successfully (Exit mode 0)
Current function value: 90.85704943752937
Iterations: 19
Function evaluations: 103
Gradient evaluations: 19
Iteration: 1, Func. Count: 7, Neg. LLF: 28715531.176299583
Iteration: 2, Func. Count: 14, Neg. LLF: 13092.41038508066
Iteration: 3, Func. Count: 21, Neg. LLF: 124.42367559282951
Iteration: 4, Func. Count: 28, Neg. LLF: 151.79967630792865
Iteration: 5, Func. Count: 36, Neg. LLF: 88.92899079822931
Iteration: 6, Func. Count: 42, Neg. LLF: 88.9336779293879
Iteration: 7, Func. Count: 49, Neg. LLF: 88.92948084883417
Iteration: 8, Func. Count: 56, Neg. LLF: 88.92649282565868
Iteration: 9, Func. Count: 62, Neg. LLF: 88.92641968782017
Iteration: 10, Func. Count: 67, Neg. LLF: 88.9264196156823
Optimization terminated successfully (Exit mode 0)
Current function value: 88.92641968782017
Iterations: 10
Function evaluations: 67
Gradient evaluations: 10
Iteration: 1, Func. Count: 8, Neg. LLF: 64027516.53027051
Iteration: 2, Func. Count: 16, Neg. LLF: 5481380.294273793
Iteration: 3, Func. Count: 24, Neg. LLF: 531.5675344315854
Iteration: 4, Func. Count: 33, Neg. LLF: 113.95038094744271
Iteration: 5, Func. Count: 42, Neg. LLF: 1282551.8084744688
Iteration: 6, Func. Count: 50, Neg. LLF: 91.96809242812145
Iteration: 7, Func. Count: 58, Neg. LLF: 89.28899123237288
Iteration: 8, Func. Count: 65, Neg. LLF: 89.17844283103582
Iteration: 9, Func. Count: 72, Neg. LLF: 88.89471431526074
Iteration: 10, Func. Count: 79, Neg. LLF: 88.85193077248982
Iteration: 11, Func. Count: 86, Neg. LLF: 88.81194521412031
Iteration: 12, Func. Count: 93, Neg. LLF: 88.77782368532826
Iteration: 13, Func. Count: 100, Neg. LLF: 88.75957078259444
Iteration: 14, Func. Count: 107, Neg. LLF: 88.74827943448696
Iteration: 15, Func. Count: 114, Neg. LLF: 88.74546300919472
Iteration: 16, Func. Count: 121, Neg. LLF: 88.74401587863505
Iteration: 17, Func. Count: 128, Neg. LLF: 88.74353955393138
Iteration: 18, Func. Count: 135, Neg. LLF: 88.74353808252636
Iteration: 19, Func. Count: 141, Neg. LLF: 88.74353805664514
Optimization terminated successfully (Exit mode 0)
Current function value: 88.74353808252636
Iterations: 19
Function evaluations: 141
Gradient evaluations: 19
Iteration: 1, Func. Count: 9, Neg. LLF: 118328003.8322121
Iteration: 2, Func. Count: 19, Neg. LLF: 4463169.580443415
Iteration: 3, Func. Count: 28, Neg. LLF: 1232896.4667673514
Iteration: 4, Func. Count: 37, Neg. LLF: 105.93815414902257
Iteration: 5, Func. Count: 46, Neg. LLF: 91.08547410037087
Iteration: 6, Func. Count: 55, Neg. LLF: 89.92619349694645
Iteration: 7, Func. Count: 64, Neg. LLF: 88.8690588176148
Iteration: 8, Func. Count: 72, Neg. LLF: 88.83408269525545
Iteration: 9, Func. Count: 80, Neg. LLF: 88.81487024842575
Iteration: 10, Func. Count: 88, Neg. LLF: 88.79430426223503
Iteration: 11, Func. Count: 96, Neg. LLF: 88.76869433388939
Iteration: 12, Func. Count: 104, Neg. LLF: 88.74404495184562
Iteration: 13, Func. Count: 112, Neg. LLF: 88.7435850963087
Iteration: 14, Func. Count: 120, Neg. LLF: 88.74353890659997
Iteration: 15, Func. Count: 128, Neg. LLF: 88.74353804563833
Optimization terminated successfully (Exit mode 0)
Current function value: 88.74353804563833
Iterations: 15
Function evaluations: 128
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 137554039.9978733
Iteration: 2, Func. Count: 21, Neg. LLF: 4519481.108104494
Iteration: 3, Func. Count: 31, Neg. LLF: 1268225.6417886552
Iteration: 4, Func. Count: 41, Neg. LLF: 101.1864948759715
Iteration: 5, Func. Count: 51, Neg. LLF: 89.31085697145812
Iteration: 6, Func. Count: 60, Neg. LLF: 88.91372802913547
Iteration: 7, Func. Count: 69, Neg. LLF: 88.7695228444273
Iteration: 8, Func. Count: 78, Neg. LLF: 88.75086716567
Iteration: 9, Func. Count: 87, Neg. LLF: 88.74608058639448
Iteration: 10, Func. Count: 96, Neg. LLF: 88.74519959491833
Iteration: 11, Func. Count: 105, Neg. LLF: 88.74462029026587
Iteration: 12, Func. Count: 114, Neg. LLF: 88.74381369197619
Iteration: 13, Func. Count: 123, Neg. LLF: 88.74355597568747
Iteration: 14, Func. Count: 132, Neg. LLF: 88.74353839384288
Iteration: 15, Func. Count: 140, Neg. LLF: 88.74353846543185
Optimization terminated successfully (Exit mode 0)
Current function value: 88.74353839384288
Iterations: 15
Function evaluations: 140
Gradient evaluations: 15
Iteration: 1, Func. Count: 7, Neg. LLF: 124.72291653298913
Iteration: 2, Func. Count: 16, Neg. LLF: 272843355.25037974
Iteration: 3, Func. Count: 24, Neg. LLF: 2744612.866327115
Iteration: 4, Func. Count: 31, Neg. LLF: 840712.7888822476
Iteration: 5, Func. Count: 38, Neg. LLF: 618827.2324533075
Iteration: 6, Func. Count: 45, Neg. LLF: 170.5052073494113
Iteration: 7, Func. Count: 52, Neg. LLF: 94.41525079676651
Iteration: 8, Func. Count: 59, Neg. LLF: 91.57280774026249
Iteration: 9, Func. Count: 65, Neg. LLF: 91.1581040240905
Iteration: 10, Func. Count: 71, Neg. LLF: 91.34972718736766
Iteration: 11, Func. Count: 78, Neg. LLF: 90.96779166451094
Iteration: 12, Func. Count: 84, Neg. LLF: 90.90959808608318
Iteration: 13, Func. Count: 90, Neg. LLF: 90.87418487543835
Iteration: 14, Func. Count: 96, Neg. LLF: 90.83227158044419
Iteration: 15, Func. Count: 102, Neg. LLF: 90.81746561373824
Iteration: 16, Func. Count: 108, Neg. LLF: 90.81604796563222
Iteration: 17, Func. Count: 114, Neg. LLF: 90.8159847601227
Iteration: 18, Func. Count: 120, Neg. LLF: 90.8159832548646
Iteration: 19, Func. Count: 125, Neg. LLF: 90.81598325393901
Optimization terminated successfully (Exit mode 0)
Current function value: 90.8159832548646
Iterations: 19
Function evaluations: 125
Gradient evaluations: 19
Iteration: 1, Func. Count: 8, Neg. LLF: 4623237.172926449
Iteration: 2, Func. Count: 16, Neg. LLF: 118145588.84137757
Iteration: 3, Func. Count: 25, Neg. LLF: 6024602.837305981
Iteration: 4, Func. Count: 33, Neg. LLF: 147.38943443963853
Iteration: 5, Func. Count: 41, Neg. LLF: 190.13202807747223
Iteration: 6, Func. Count: 49, Neg. LLF: 95.86934226062971
Iteration: 7, Func. Count: 57, Neg. LLF: 90.90028508447551
Iteration: 8, Func. Count: 65, Neg. LLF: 88.94983382421465
Iteration: 9, Func. Count: 72, Neg. LLF: 102.277851378941
Iteration: 10, Func. Count: 81, Neg. LLF: 88.91081410050828
Iteration: 11, Func. Count: 89, Neg. LLF: 88.73061770609871
Iteration: 12, Func. Count: 96, Neg. LLF: 88.7230528709484
Iteration: 13, Func. Count: 103, Neg. LLF: 88.72161107140204
Iteration: 14, Func. Count: 110, Neg. LLF: 88.7208539479693
Iteration: 15, Func. Count: 117, Neg. LLF: 88.72071150332003
Iteration: 16, Func. Count: 124, Neg. LLF: 88.7207018475312
Iteration: 17, Func. Count: 130, Neg. LLF: 88.72070174359395
Optimization terminated successfully (Exit mode 0)
Current function value: 88.7207018475312
Iterations: 17
Function evaluations: 130
Gradient evaluations: 17
Iteration: 1, Func. Count: 9, Neg. LLF: 4514234.959926745
Iteration: 2, Func. Count: 18, Neg. LLF: 49571124.35807977
Iteration: 3, Func. Count: 27, Neg. LLF: 837573.3424457795
Iteration: 4, Func. Count: 36, Neg. LLF: 5607235.89073652
Iteration: 5, Func. Count: 45, Neg. LLF: 92.55724588391935
Iteration: 6, Func. Count: 54, Neg. LLF: 133.93340923842376
Iteration: 7, Func. Count: 63, Neg. LLF: 118.96343602959583
Iteration: 8, Func. Count: 72, Neg. LLF: 104.3486829146579
Iteration: 9, Func. Count: 81, Neg. LLF: 89.80859777811068
Iteration: 10, Func. Count: 90, Neg. LLF: 89.83635750961126
Iteration: 11, Func. Count: 99, Neg. LLF: 88.93122227213513
Iteration: 12, Func. Count: 107, Neg. LLF: 88.90537137061631
Iteration: 13, Func. Count: 115, Neg. LLF: 88.86703319951701
Iteration: 14, Func. Count: 123, Neg. LLF: 88.80622952775354
Iteration: 15, Func. Count: 131, Neg. LLF: 88.76022657187006
Iteration: 16, Func. Count: 139, Neg. LLF: 88.73983085965969
Iteration: 17, Func. Count: 147, Neg. LLF: 88.73956226053734
Iteration: 18, Func. Count: 156, Neg. LLF: 88.73774792166581
Iteration: 19, Func. Count: 164, Neg. LLF: 88.73749475979221
Iteration: 20, Func. Count: 172, Neg. LLF: 88.73745985807956
Iteration: 21, Func. Count: 180, Neg. LLF: 88.73745756409953
Iteration: 22, Func. Count: 188, Neg. LLF: 88.73745628190689
Iteration: 23, Func. Count: 195, Neg. LLF: 88.73745625541467
Optimization terminated successfully (Exit mode 0)
Current function value: 88.73745628190689
Iterations: 23
Function evaluations: 195
Gradient evaluations: 23
Iteration: 1, Func. Count: 10, Neg. LLF: 65204613.337476015
Iteration: 2, Func. Count: 20, Neg. LLF: 5431346.198738913
Iteration: 3, Func. Count: 30, Neg. LLF: 913952.3987751136
Iteration: 4, Func. Count: 40, Neg. LLF: 92.0143100085613
Iteration: 5, Func. Count: 50, Neg. LLF: 115.65704952221131
Iteration: 6, Func. Count: 60, Neg. LLF: 92.0891098764627
Iteration: 7, Func. Count: 70, Neg. LLF: 88.92265338278709
Iteration: 8, Func. Count: 79, Neg. LLF: 88.79290586171903
Iteration: 9, Func. Count: 88, Neg. LLF: 88.76669202468753
Iteration: 10, Func. Count: 97, Neg. LLF: 88.754757455648
Iteration: 11, Func. Count: 106, Neg. LLF: 88.74136184327403
Iteration: 12, Func. Count: 115, Neg. LLF: 88.73833173989847
Iteration: 13, Func. Count: 124, Neg. LLF: 88.73752071818666
Iteration: 14, Func. Count: 133, Neg. LLF: 88.7374575022644
Iteration: 15, Func. Count: 142, Neg. LLF: 88.737456153673
Iteration: 16, Func. Count: 150, Neg. LLF: 88.73745615869184
Optimization terminated successfully (Exit mode 0)
Current function value: 88.737456153673
Iterations: 16
Function evaluations: 150
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 105779013.62983972
Iteration: 2, Func. Count: 22, Neg. LLF: 5272111.295969457
Iteration: 3, Func. Count: 33, Neg. LLF: 838922.5681706006
Iteration: 4, Func. Count: 44, Neg. LLF: 91.42920869793511
Iteration: 5, Func. Count: 55, Neg. LLF: 112.13393067617699
Iteration: 6, Func. Count: 66, Neg. LLF: 92.29848387250296
Iteration: 7, Func. Count: 77, Neg. LLF: 88.83941530419703
Iteration: 8, Func. Count: 87, Neg. LLF: 88.75239732898302
Iteration: 9, Func. Count: 97, Neg. LLF: 88.73974943266494
Iteration: 10, Func. Count: 107, Neg. LLF: 88.73863272387987
Iteration: 11, Func. Count: 117, Neg. LLF: 88.73812262044947
Iteration: 12, Func. Count: 127, Neg. LLF: 88.73751402449187
Iteration: 13, Func. Count: 137, Neg. LLF: 88.73746271238029
Iteration: 14, Func. Count: 147, Neg. LLF: 88.7374561762737
Iteration: 15, Func. Count: 156, Neg. LLF: 88.73745624842904
Optimization terminated successfully (Exit mode 0)
Current function value: 88.7374561762737
Iterations: 15
Function evaluations: 156
Gradient evaluations: 15
Iteration: 1, Func. Count: 8, Neg. LLF: 142.17244948677072
Iteration: 2, Func. Count: 18, Neg. LLF: 432887084.8125749
Iteration: 3, Func. Count: 27, Neg. LLF: 199560.9918471967
Iteration: 4, Func. Count: 35, Neg. LLF: 1859171.731920535
Iteration: 5, Func. Count: 43, Neg. LLF: 237709.64966925618
Iteration: 6, Func. Count: 51, Neg. LLF: 152.36795857826652
Iteration: 7, Func. Count: 59, Neg. LLF: 26236.585964629718
Iteration: 8, Func. Count: 67, Neg. LLF: 26463.453234663935
Iteration: 9, Func. Count: 75, Neg. LLF: 26396.127452400156
Iteration: 10, Func. Count: 83, Neg. LLF: 89.03005395234042
Iteration: 11, Func. Count: 90, Neg. LLF: 99.08627742507674
Iteration: 12, Func. Count: 99, Neg. LLF: 89.83069516469064
Iteration: 13, Func. Count: 107, Neg. LLF: 88.20246922946501
Iteration: 14, Func. Count: 114, Neg. LLF: 88.19505160178076
Iteration: 15, Func. Count: 121, Neg. LLF: 88.18788547555867
Iteration: 16, Func. Count: 128, Neg. LLF: 88.17841549191876
Iteration: 17, Func. Count: 135, Neg. LLF: 88.15232958796523
Iteration: 18, Func. Count: 142, Neg. LLF: 88.1108338456603
Iteration: 19, Func. Count: 149, Neg. LLF: 88.31807431155242
Iteration: 20, Func. Count: 157, Neg. LLF: 88.28256209492962
Iteration: 21, Func. Count: 165, Neg. LLF: 94.55207338545581
Iteration: 22, Func. Count: 173, Neg. LLF: 88.00266577077775
Iteration: 23, Func. Count: 180, Neg. LLF: 88.00193742654311
Iteration: 24, Func. Count: 187, Neg. LLF: 88.00192900548099
Iteration: 25, Func. Count: 194, Neg. LLF: 88.00192142107316
Iteration: 26, Func. Count: 200, Neg. LLF: 88.00192138623655
Optimization terminated successfully (Exit mode 0)
Current function value: 88.00192142107316
Iterations: 26
Function evaluations: 200
Gradient evaluations: 26
Iteration: 1, Func. Count: 9, Neg. LLF: 4721431.849600953
Iteration: 2, Func. Count: 18, Neg. LLF: 120010043.21727447
Iteration: 3, Func. Count: 27, Neg. LLF: 293801.9730905328
Iteration: 4, Func. Count: 36, Neg. LLF: 115.29921435342874
Iteration: 5, Func. Count: 45, Neg. LLF: 389.42966524796464
Iteration: 6, Func. Count: 54, Neg. LLF: 109.30945424139941
Iteration: 7, Func. Count: 63, Neg. LLF: 90.56680550270363
Iteration: 8, Func. Count: 72, Neg. LLF: 246.21094605090485
Iteration: 9, Func. Count: 81, Neg. LLF: 89.31915821055581
Iteration: 10, Func. Count: 90, Neg. LLF: 88.08384140490618
Iteration: 11, Func. Count: 98, Neg. LLF: 88.04773129038597
Iteration: 12, Func. Count: 106, Neg. LLF: 88.02791889640608
Iteration: 13, Func. Count: 114, Neg. LLF: 88.01304756743994
Iteration: 14, Func. Count: 122, Neg. LLF: 88.00710583235671
Iteration: 15, Func. Count: 130, Neg. LLF: 88.00301620689467
Iteration: 16, Func. Count: 138, Neg. LLF: 88.00225657664494
Iteration: 17, Func. Count: 146, Neg. LLF: 88.00195940735595
Iteration: 18, Func. Count: 154, Neg. LLF: 88.00192304577983
Iteration: 19, Func. Count: 162, Neg. LLF: 88.00192142075484
Iteration: 20, Func. Count: 169, Neg. LLF: 88.00192135438762
Optimization terminated successfully (Exit mode 0)
Current function value: 88.00192142075484
Iterations: 20
Function evaluations: 169
Gradient evaluations: 20
Iteration: 1, Func. Count: 10, Neg. LLF: 4808397.123304931
Iteration: 2, Func. Count: 20, Neg. LLF: 107896519.40915886
Iteration: 3, Func. Count: 30, Neg. LLF: 843946.4548106684
Iteration: 4, Func. Count: 40, Neg. LLF: 280702.5153081835
Iteration: 5, Func. Count: 50, Neg. LLF: 98.55283818017968
Iteration: 6, Func. Count: 60, Neg. LLF: 26202.209748009125
Iteration: 7, Func. Count: 70, Neg. LLF: 129.8760345823046
Iteration: 8, Func. Count: 80, Neg. LLF: 192.80332584405642
Iteration: 9, Func. Count: 90, Neg. LLF: 89.67956460662295
Iteration: 10, Func. Count: 100, Neg. LLF: 88.0881609120396
Iteration: 11, Func. Count: 109, Neg. LLF: 88.04129416063326
Iteration: 12, Func. Count: 118, Neg. LLF: 88.03065408705442
Iteration: 13, Func. Count: 127, Neg. LLF: 88.01847721784141
Iteration: 14, Func. Count: 136, Neg. LLF: 88.00778692313749
Iteration: 15, Func. Count: 145, Neg. LLF: 88.00384734515326
Iteration: 16, Func. Count: 154, Neg. LLF: 88.00198043319268
Iteration: 17, Func. Count: 163, Neg. LLF: 88.00193011080252
Iteration: 18, Func. Count: 172, Neg. LLF: 88.00192139418783
Iteration: 19, Func. Count: 180, Neg. LLF: 88.00192141708006
Optimization terminated successfully (Exit mode 0)
Current function value: 88.00192139418783
Iterations: 19
Function evaluations: 180
Gradient evaluations: 19
Iteration: 1, Func. Count: 11, Neg. LLF: 126.26123383479535
Iteration: 2, Func. Count: 22, Neg. LLF: 157089063.40595368
Iteration: 3, Func. Count: 33, Neg. LLF: 238913.88185537135
Iteration: 4, Func. Count: 44, Neg. LLF: 72983.22318980734
Iteration: 5, Func. Count: 55, Neg. LLF: 93.7667901558384
Iteration: 6, Func. Count: 66, Neg. LLF: 26300.631222666954
Iteration: 7, Func. Count: 77, Neg. LLF: 89.84458609210436
Iteration: 8, Func. Count: 88, Neg. LLF: 88.22877249030142
Iteration: 9, Func. Count: 98, Neg. LLF: 88.23960653624295
Iteration: 10, Func. Count: 109, Neg. LLF: 88.17118435792823
Iteration: 11, Func. Count: 119, Neg. LLF: 88.13780134687097
Iteration: 12, Func. Count: 129, Neg. LLF: 88.08209229058929
Iteration: 13, Func. Count: 139, Neg. LLF: 96.53384357655781
Iteration: 14, Func. Count: 150, Neg. LLF: 95.72428346879097
Iteration: 15, Func. Count: 161, Neg. LLF: 88.10953440175382
Iteration: 16, Func. Count: 172, Neg. LLF: 88.00529125104288
Iteration: 17, Func. Count: 182, Neg. LLF: 88.00286255427717
Iteration: 18, Func. Count: 192, Neg. LLF: 88.00199017069939
Iteration: 19, Func. Count: 202, Neg. LLF: 88.00192283535812
Iteration: 20, Func. Count: 212, Neg. LLF: 88.00192142887926
Iteration: 21, Func. Count: 221, Neg. LLF: 88.00192148686715
Optimization terminated successfully (Exit mode 0)
Current function value: 88.00192142887926
Iterations: 21
Function evaluations: 221
Gradient evaluations: 21
Iteration: 1, Func. Count: 12, Neg. LLF: 68070050.6537965
Iteration: 2, Func. Count: 24, Neg. LLF: 5513120.185278894
Iteration: 3, Func. Count: 36, Neg. LLF: 906666.5660050174
Iteration: 4, Func. Count: 48, Neg. LLF: 182.27399408127414
Iteration: 5, Func. Count: 60, Neg. LLF: 89.30971860368807
Iteration: 6, Func. Count: 71, Neg. LLF: 99.01678024911837
Iteration: 7, Func. Count: 83, Neg. LLF: 89.62502591611297
Iteration: 8, Func. Count: 95, Neg. LLF: 88.44449242278556
Iteration: 9, Func. Count: 106, Neg. LLF: 88.32106793025957
Iteration: 10, Func. Count: 117, Neg. LLF: 88.28942098381359
Iteration: 11, Func. Count: 128, Neg. LLF: 88.2704380120854
Iteration: 12, Func. Count: 139, Neg. LLF: 88.24293890371622
Iteration: 13, Func. Count: 150, Neg. LLF: 88.23066796801905
Iteration: 14, Func. Count: 161, Neg. LLF: 88.22077720851597
Iteration: 15, Func. Count: 172, Neg. LLF: 88.17176494129588
Iteration: 16, Func. Count: 183, Neg. LLF: 93.11952525278673
Iteration: 17, Func. Count: 195, Neg. LLF: 93.09795187224792
Iteration: 18, Func. Count: 207, Neg. LLF: 93.19452877390117
Iteration: 19, Func. Count: 219, Neg. LLF: 93.31395093961889
Iteration: 20, Func. Count: 231, Neg. LLF: 78407.92908565103
Iteration: 21, Func. Count: 244, Neg. LLF: 1209051.8752621016
Iteration: 22, Func. Count: 257, Neg. LLF: 95.74186898166857
Iteration: 23, Func. Count: 269, Neg. LLF: 95.16150698854287
Iteration: 24, Func. Count: 281, Neg. LLF: 94.6622115739839
Iteration: 25, Func. Count: 293, Neg. LLF: 88.02278951558628
Iteration: 26, Func. Count: 305, Neg. LLF: 88.0019562945647
Iteration: 27, Func. Count: 316, Neg. LLF: 88.00192576312693
Iteration: 28, Func. Count: 327, Neg. LLF: 88.00192315332117
Iteration: 29, Func. Count: 338, Neg. LLF: 88.00192139672882
Iteration: 30, Func. Count: 348, Neg. LLF: 88.00192136984107
Optimization terminated successfully (Exit mode 0)
Current function value: 88.00192139672882
Iterations: 31
Function evaluations: 348
Gradient evaluations: 30
Iteration: 1, Func. Count: 5, Neg. LLF: 123.29021359054097
Iteration: 2, Func. Count: 12, Neg. LLF: 103.63213158518182
Iteration: 3, Func. Count: 17, Neg. LLF: 99.88022971638347
Iteration: 4, Func. Count: 21, Neg. LLF: 99.87720237609062
Iteration: 5, Func. Count: 25, Neg. LLF: 99.87368861651451
Iteration: 6, Func. Count: 29, Neg. LLF: 99.87366908680379
Iteration: 7, Func. Count: 33, Neg. LLF: 99.87365853858584
Iteration: 8, Func. Count: 36, Neg. LLF: 99.8736586261218
Optimization terminated successfully (Exit mode 0)
Current function value: 99.87365853858584
Iterations: 8
Function evaluations: 36
Gradient evaluations: 8
Iteration: 1, Func. Count: 6, Neg. LLF: 231.32066287773094
Iteration: 2, Func. Count: 12, Neg. LLF: 689.7099117507679
Iteration: 3, Func. Count: 18, Neg. LLF: 127.49982726258095
Iteration: 4, Func. Count: 24, Neg. LLF: 101.48212964582103
Iteration: 5, Func. Count: 30, Neg. LLF: 94.13341665119341
Iteration: 6, Func. Count: 35, Neg. LLF: 94.0301334192961
Iteration: 7, Func. Count: 40, Neg. LLF: 94.02688978277472
Iteration: 8, Func. Count: 45, Neg. LLF: 94.02507679475502
Iteration: 9, Func. Count: 50, Neg. LLF: 94.02503138631059
Iteration: 10, Func. Count: 55, Neg. LLF: 94.02503006313631
Iteration: 11, Func. Count: 59, Neg. LLF: 94.02502994758532
Optimization terminated successfully (Exit mode 0)
Current function value: 94.02503006313631
Iterations: 11
Function evaluations: 59
Gradient evaluations: 11
Iteration: 1, Func. Count: 7, Neg. LLF: 590.7532845567979
Iteration: 2, Func. Count: 14, Neg. LLF: 118.18099456264738
Iteration: 3, Func. Count: 22, Neg. LLF: 134.83468642536357
Iteration: 4, Func. Count: 29, Neg. LLF: 94.05363502782987
Iteration: 5, Func. Count: 35, Neg. LLF: 94.06773694990945
Iteration: 6, Func. Count: 42, Neg. LLF: 94.03094129544017
Iteration: 7, Func. Count: 49, Neg. LLF: 94.02506903890122
Iteration: 8, Func. Count: 55, Neg. LLF: 94.02503007561484
Iteration: 9, Func. Count: 60, Neg. LLF: 94.02503007082699
Optimization terminated successfully (Exit mode 0)
Current function value: 94.02503007561484
Iterations: 9
Function evaluations: 60
Gradient evaluations: 9
Iteration: 1, Func. Count: 8, Neg. LLF: 21991457.984572023
Iteration: 2, Func. Count: 17, Neg. LLF: 96.91929369197952
Iteration: 3, Func. Count: 24, Neg. LLF: 96.93163372916418
Iteration: 4, Func. Count: 32, Neg. LLF: 96.2710553606469
Iteration: 5, Func. Count: 39, Neg. LLF: 96.25067828429607
Iteration: 6, Func. Count: 46, Neg. LLF: 96.23798381366869
Iteration: 7, Func. Count: 53, Neg. LLF: 96.22765427817154
Iteration: 8, Func. Count: 60, Neg. LLF: 96.20793969032178
Iteration: 9, Func. Count: 67, Neg. LLF: 96.16250184067873
Iteration: 10, Func. Count: 74, Neg. LLF: 25027250.616933987
Iteration: 11, Func. Count: 84, Neg. LLF: 111.73220740676933
Iteration: 12, Func. Count: 93, Neg. LLF: 96.13175443908858
Iteration: 13, Func. Count: 100, Neg. LLF: 96.10047606687938
Iteration: 14, Func. Count: 107, Neg. LLF: 96.100380325253
Iteration: 15, Func. Count: 114, Neg. LLF: 96.10036475145665
Iteration: 16, Func. Count: 120, Neg. LLF: 96.10036476136936
Optimization terminated successfully (Exit mode 0)
Current function value: 96.10036475145665
Iterations: 17
Function evaluations: 120
Gradient evaluations: 16
Iteration: 1, Func. Count: 9, Neg. LLF: 21952254.50680097
Iteration: 2, Func. Count: 19, Neg. LLF: 97.1437316138313
Iteration: 3, Func. Count: 27, Neg. LLF: 96.73438110618217
Iteration: 4, Func. Count: 35, Neg. LLF: 98.08938281086321
Iteration: 5, Func. Count: 44, Neg. LLF: 96.6866874742165
Iteration: 6, Func. Count: 53, Neg. LLF: 96.49430267287798
Iteration: 7, Func. Count: 61, Neg. LLF: 96.20667886105339
Iteration: 8, Func. Count: 69, Neg. LLF: 96.00201491804437
Iteration: 9, Func. Count: 77, Neg. LLF: 95.99821873334218
Iteration: 10, Func. Count: 85, Neg. LLF: 95.99822374005096
Iteration: 11, Func. Count: 94, Neg. LLF: 95.99818936205956
Iteration: 12, Func. Count: 102, Neg. LLF: 95.9981800385352
Iteration: 13, Func. Count: 110, Neg. LLF: 96.07687679974819
Optimization terminated successfully (Exit mode 0)
Current function value: 95.99817996605704
Iterations: 14
Function evaluations: 113
Gradient evaluations: 13
Iteration: 1, Func. Count: 6, Neg. LLF: 121.73910587369306
Iteration: 2, Func. Count: 14, Neg. LLF: 100.03824879658006
Iteration: 3, Func. Count: 19, Neg. LLF: 100.23387403252194
Iteration: 4, Func. Count: 25, Neg. LLF: 99.87749940780449
Iteration: 5, Func. Count: 30, Neg. LLF: 99.87367212890759
Iteration: 6, Func. Count: 35, Neg. LLF: 99.87365810317726
Iteration: 7, Func. Count: 39, Neg. LLF: 99.87365810429613
Optimization terminated successfully (Exit mode 0)
Current function value: 99.87365810317726
Iterations: 7
Function evaluations: 39
Gradient evaluations: 7
Iteration: 1, Func. Count: 7, Neg. LLF: 159.99507482845098
Iteration: 2, Func. Count: 18, Neg. LLF: 5367156.68268566
Iteration: 3, Func. Count: 25, Neg. LLF: 205.28028371786857
Iteration: 4, Func. Count: 32, Neg. LLF: 90.31001700013334
Iteration: 5, Func. Count: 38, Neg. LLF: 90.84164224631196
Iteration: 6, Func. Count: 45, Neg. LLF: 91.05242566474122
Iteration: 7, Func. Count: 52, Neg. LLF: 90.07877795925623
Iteration: 8, Func. Count: 58, Neg. LLF: 90.06360742530201
Iteration: 9, Func. Count: 64, Neg. LLF: 90.05863377103815
Iteration: 10, Func. Count: 70, Neg. LLF: 90.05819897903523
Iteration: 11, Func. Count: 76, Neg. LLF: 90.05803597125681
Iteration: 12, Func. Count: 82, Neg. LLF: 90.0580135479507
Iteration: 13, Func. Count: 88, Neg. LLF: 90.05801171055072
Iteration: 14, Func. Count: 93, Neg. LLF: 90.05801160261925
Optimization terminated successfully (Exit mode 0)
Current function value: 90.05801171055072
Iterations: 14
Function evaluations: 93
Gradient evaluations: 14
Iteration: 1, Func. Count: 8, Neg. LLF: 150.9655311495447
Iteration: 2, Func. Count: 19, Neg. LLF: 6276284.618953907
Iteration: 3, Func. Count: 27, Neg. LLF: 167.96060532356992
Iteration: 4, Func. Count: 35, Neg. LLF: 91.2606355963095
Iteration: 5, Func. Count: 42, Neg. LLF: 91.94695436072608
Iteration: 6, Func. Count: 50, Neg. LLF: 90.47470676678893
Iteration: 7, Func. Count: 57, Neg. LLF: 90.2357083312525
Iteration: 8, Func. Count: 64, Neg. LLF: 90.09352467990414
Iteration: 9, Func. Count: 71, Neg. LLF: 90.0629355686816
Iteration: 10, Func. Count: 78, Neg. LLF: 90.0582536471691
Iteration: 11, Func. Count: 85, Neg. LLF: 90.05801838444182
Iteration: 12, Func. Count: 92, Neg. LLF: 90.05801169742938
Iteration: 13, Func. Count: 98, Neg. LLF: 90.05801169619892
Optimization terminated successfully (Exit mode 0)
Current function value: 90.05801169742938
Iterations: 13
Function evaluations: 98
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 55339903.911048256
Iteration: 2, Func. Count: 19, Neg. LLF: 105.30067968007718
Iteration: 3, Func. Count: 28, Neg. LLF: 714.3738219484829
Iteration: 4, Func. Count: 37, Neg. LLF: 92.51684075874043
Iteration: 5, Func. Count: 45, Neg. LLF: 91.79390913987307
Iteration: 6, Func. Count: 53, Neg. LLF: 138.15956687102357
Iteration: 7, Func. Count: 63, Neg. LLF: 146.18405635823868
Iteration: 8, Func. Count: 73, Neg. LLF: 106.3905623958392
Iteration: 9, Func. Count: 82, Neg. LLF: 90.07795750293123
Iteration: 10, Func. Count: 90, Neg. LLF: 90.06093214415257
Iteration: 11, Func. Count: 98, Neg. LLF: 90.05835656823336
Iteration: 12, Func. Count: 106, Neg. LLF: 90.05802172579249
Iteration: 13, Func. Count: 114, Neg. LLF: 90.05801203417454
Iteration: 14, Func. Count: 121, Neg. LLF: 90.05801208096241
Optimization terminated successfully (Exit mode 0)
Current function value: 90.05801203417454
Iterations: 14
Function evaluations: 121
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 78621845.75620596
Iteration: 2, Func. Count: 21, Neg. LLF: 105.3088370244037
Iteration: 3, Func. Count: 31, Neg. LLF: 1052.3814335322425
Iteration: 4, Func. Count: 41, Neg. LLF: 95.13888855359126
Iteration: 5, Func. Count: 50, Neg. LLF: 112.23967370758523
Iteration: 6, Func. Count: 61, Neg. LLF: 93.86361999563739
Iteration: 7, Func. Count: 70, Neg. LLF: 92.55175833395073
Iteration: 8, Func. Count: 79, Neg. LLF: 116.89135532201749
Iteration: 9, Func. Count: 89, Neg. LLF: 91.94834770516515
Iteration: 10, Func. Count: 99, Neg. LLF: 91.7409380286581
Iteration: 11, Func. Count: 109, Neg. LLF: 90.1313036024739
Iteration: 12, Func. Count: 118, Neg. LLF: 90.07492612390062
Iteration: 13, Func. Count: 127, Neg. LLF: 90.06238320660141
Iteration: 14, Func. Count: 136, Neg. LLF: 90.05810252290765
Iteration: 15, Func. Count: 145, Neg. LLF: 90.05802176143965
Iteration: 16, Func. Count: 154, Neg. LLF: 90.05801377715366
Iteration: 17, Func. Count: 163, Neg. LLF: 90.05801197358878
Iteration: 18, Func. Count: 171, Neg. LLF: 90.05801207810606
Optimization terminated successfully (Exit mode 0)
Current function value: 90.05801197358878
Iterations: 18
Function evaluations: 171
Gradient evaluations: 18
Iteration: 1, Func. Count: 7, Neg. LLF: 107.65674254610435
Iteration: 2, Func. Count: 15, Neg. LLF: 206217426.5800403
Iteration: 3, Func. Count: 22, Neg. LLF: 838605.2617085372
Iteration: 4, Func. Count: 29, Neg. LLF: 959955.7534036236
Iteration: 5, Func. Count: 36, Neg. LLF: 2714917.8966790135
Iteration: 6, Func. Count: 43, Neg. LLF: 108.59168895072999
Iteration: 7, Func. Count: 50, Neg. LLF: 106.73085652669782
Iteration: 8, Func. Count: 57, Neg. LLF: 91.39591807273028
Iteration: 9, Func. Count: 64, Neg. LLF: 93.52219416228245
Iteration: 10, Func. Count: 71, Neg. LLF: 90.86569000697219
Iteration: 11, Func. Count: 77, Neg. LLF: 90.77121799607198
Iteration: 12, Func. Count: 83, Neg. LLF: 90.66539473031719
Iteration: 13, Func. Count: 89, Neg. LLF: 90.62786138173969
Iteration: 14, Func. Count: 95, Neg. LLF: 90.56180727939923
Iteration: 15, Func. Count: 101, Neg. LLF: 90.56029652446765
Iteration: 16, Func. Count: 107, Neg. LLF: 90.5601878642658
Iteration: 17, Func. Count: 113, Neg. LLF: 90.5601780409867
Iteration: 18, Func. Count: 118, Neg. LLF: 90.56017803829741
Optimization terminated successfully (Exit mode 0)
Current function value: 90.5601780409867
Iterations: 18
Function evaluations: 118
Gradient evaluations: 18
Iteration: 1, Func. Count: 8, Neg. LLF: 159.249749808859
Iteration: 2, Func. Count: 20, Neg. LLF: 5912434.512682121
Iteration: 3, Func. Count: 28, Neg. LLF: 245.34638049494583
Iteration: 4, Func. Count: 36, Neg. LLF: 95.42787930785369
Iteration: 5, Func. Count: 44, Neg. LLF: 89.02617195569741
Iteration: 6, Func. Count: 51, Neg. LLF: 183.91753992053947
Iteration: 7, Func. Count: 60, Neg. LLF: 88.91800727045216
Iteration: 8, Func. Count: 67, Neg. LLF: 88.85189243122105
Iteration: 9, Func. Count: 74, Neg. LLF: 88.84305639635886
Iteration: 10, Func. Count: 81, Neg. LLF: 88.8356208345324
Iteration: 11, Func. Count: 88, Neg. LLF: 88.83262444750846
Iteration: 12, Func. Count: 95, Neg. LLF: 88.83241972141512
Iteration: 13, Func. Count: 102, Neg. LLF: 88.83241648418402
Iteration: 14, Func. Count: 108, Neg. LLF: 88.8324164238539
Optimization terminated successfully (Exit mode 0)
Current function value: 88.83241648418402
Iterations: 14
Function evaluations: 108
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 148.99423192148038
Iteration: 2, Func. Count: 19, Neg. LLF: 26968662.596987385
Iteration: 3, Func. Count: 28, Neg. LLF: 1168234.1890387703
Iteration: 4, Func. Count: 37, Neg. LLF: 101.45115711473645
Iteration: 5, Func. Count: 46, Neg. LLF: 101.5055492738513
Iteration: 6, Func. Count: 55, Neg. LLF: 93.93469171550215
Iteration: 7, Func. Count: 64, Neg. LLF: 89.592049221545
Iteration: 8, Func. Count: 73, Neg. LLF: 88.99423335472123
Iteration: 9, Func. Count: 81, Neg. LLF: 88.92918357187145
Iteration: 10, Func. Count: 89, Neg. LLF: 89.06427903181746
Iteration: 11, Func. Count: 98, Neg. LLF: 88.90687880634225
Iteration: 12, Func. Count: 106, Neg. LLF: 88.87225594577271
Iteration: 13, Func. Count: 114, Neg. LLF: 88.85038104518455
Iteration: 14, Func. Count: 122, Neg. LLF: 88.83356438013969
Iteration: 15, Func. Count: 130, Neg. LLF: 88.83265909397755
Iteration: 16, Func. Count: 138, Neg. LLF: 88.83244902034942
Iteration: 17, Func. Count: 146, Neg. LLF: 88.83241643589366
Iteration: 18, Func. Count: 153, Neg. LLF: 88.83241639687402
Optimization terminated successfully (Exit mode 0)
Current function value: 88.83241643589366
Iterations: 18
Function evaluations: 153
Gradient evaluations: 18
Iteration: 1, Func. Count: 10, Neg. LLF: 5709146.784422994
Iteration: 2, Func. Count: 20, Neg. LLF: 167927496.76957336
Iteration: 3, Func. Count: 31, Neg. LLF: 199.45960575542668
Iteration: 4, Func. Count: 43, Neg. LLF: 109.30841415756724
Iteration: 5, Func. Count: 53, Neg. LLF: 94.27115316733415
Iteration: 6, Func. Count: 63, Neg. LLF: 90.7781807241063
Iteration: 7, Func. Count: 73, Neg. LLF: 89.60906375588696
Iteration: 8, Func. Count: 82, Neg. LLF: 101.43828187095741
Iteration: 9, Func. Count: 93, Neg. LLF: 89.41546243990565
Iteration: 10, Func. Count: 103, Neg. LLF: 89.02502491457231
Iteration: 11, Func. Count: 113, Neg. LLF: 88.87136813069532
Iteration: 12, Func. Count: 122, Neg. LLF: 88.85280634065333
Iteration: 13, Func. Count: 131, Neg. LLF: 88.83919284033792
Iteration: 14, Func. Count: 140, Neg. LLF: 88.83472148422491
Iteration: 15, Func. Count: 149, Neg. LLF: 88.83300045247638
Iteration: 16, Func. Count: 158, Neg. LLF: 88.83263492941224
Iteration: 17, Func. Count: 167, Neg. LLF: 88.83244610467644
Iteration: 18, Func. Count: 176, Neg. LLF: 88.83241914629173
Iteration: 19, Func. Count: 185, Neg. LLF: 88.83241641580548
Iteration: 20, Func. Count: 193, Neg. LLF: 88.83241643130228
Optimization terminated successfully (Exit mode 0)
Current function value: 88.83241641580548
Iterations: 20
Function evaluations: 193
Gradient evaluations: 20
Iteration: 1, Func. Count: 11, Neg. LLF: 5389507.301702414
Iteration: 2, Func. Count: 22, Neg. LLF: 255383893.90251446
Iteration: 3, Func. Count: 34, Neg. LLF: 5629571.73029608
Iteration: 4, Func. Count: 46, Neg. LLF: 94.23443414762133
Iteration: 5, Func. Count: 57, Neg. LLF: 90.13449455755364
Iteration: 6, Func. Count: 67, Neg. LLF: 90.37457432277776
Iteration: 7, Func. Count: 78, Neg. LLF: 89.44617551471138
Iteration: 8, Func. Count: 89, Neg. LLF: 88.91595572073163
Iteration: 9, Func. Count: 100, Neg. LLF: 89.48199765841396
Iteration: 10, Func. Count: 112, Neg. LLF: 88.75764762230845
Iteration: 11, Func. Count: 122, Neg. LLF: 88.74631859353808
Iteration: 12, Func. Count: 132, Neg. LLF: 88.7328683704826
Iteration: 13, Func. Count: 142, Neg. LLF: 88.72939699124554
Iteration: 14, Func. Count: 152, Neg. LLF: 88.72870380782574
Iteration: 15, Func. Count: 162, Neg. LLF: 88.72865493006957
Iteration: 16, Func. Count: 172, Neg. LLF: 88.7286530411846
Iteration: 17, Func. Count: 181, Neg. LLF: 88.72865311932271
Optimization terminated successfully (Exit mode 0)
Current function value: 88.7286530411846
Iterations: 17
Function evaluations: 181
Gradient evaluations: 17
Iteration: 1, Func. Count: 8, Neg. LLF: 116.80825461793428
Iteration: 2, Func. Count: 17, Neg. LLF: 368829748.7705736
Iteration: 3, Func. Count: 25, Neg. LLF: 4474271.106689915
Iteration: 4, Func. Count: 33, Neg. LLF: 1063072.7841110001
Iteration: 5, Func. Count: 41, Neg. LLF: 836763.1757953182
Iteration: 6, Func. Count: 49, Neg. LLF: 850451.8428033163
Iteration: 7, Func. Count: 57, Neg. LLF: 139.55652815641676
Iteration: 8, Func. Count: 65, Neg. LLF: 92.92369658540854
Iteration: 9, Func. Count: 73, Neg. LLF: 92.6355591663035
Iteration: 10, Func. Count: 81, Neg. LLF: 94.88740954293384
Iteration: 11, Func. Count: 90, Neg. LLF: 90.91497220250643
Iteration: 12, Func. Count: 97, Neg. LLF: 90.79516602841113
Iteration: 13, Func. Count: 104, Neg. LLF: 90.69960388335222
Iteration: 14, Func. Count: 111, Neg. LLF: 90.64155209563545
Iteration: 15, Func. Count: 118, Neg. LLF: 90.5989465109449
Iteration: 16, Func. Count: 125, Neg. LLF: 90.5606594705716
Iteration: 17, Func. Count: 132, Neg. LLF: 90.56021339961956
Iteration: 18, Func. Count: 139, Neg. LLF: 90.56017817679817
Iteration: 19, Func. Count: 145, Neg. LLF: 90.56017821395912
Optimization terminated successfully (Exit mode 0)
Current function value: 90.56017817679817
Iterations: 19
Function evaluations: 145
Gradient evaluations: 19
Iteration: 1, Func. Count: 9, Neg. LLF: 167.737398884739
Iteration: 2, Func. Count: 22, Neg. LLF: 4766749.92355335
Iteration: 3, Func. Count: 31, Neg. LLF: 304.8800341640935
Iteration: 4, Func. Count: 41, Neg. LLF: 148.6239857743865
Iteration: 5, Func. Count: 50, Neg. LLF: 89.69556464766923
Iteration: 6, Func. Count: 58, Neg. LLF: 184.46969525001717
Iteration: 7, Func. Count: 68, Neg. LLF: 90.4707825050876
Iteration: 8, Func. Count: 77, Neg. LLF: 88.83279188025226
Iteration: 9, Func. Count: 86, Neg. LLF: 88.79817279075979
Iteration: 10, Func. Count: 95, Neg. LLF: 88.7512661600205
Iteration: 11, Func. Count: 103, Neg. LLF: 88.74706100253877
Iteration: 12, Func. Count: 111, Neg. LLF: 88.73733587898954
Iteration: 13, Func. Count: 119, Neg. LLF: 88.72596176330838
Iteration: 14, Func. Count: 127, Neg. LLF: 88.72155237795951
Iteration: 15, Func. Count: 135, Neg. LLF: 88.72073116125499
Iteration: 16, Func. Count: 143, Neg. LLF: 88.72070343929329
Iteration: 17, Func. Count: 151, Neg. LLF: 88.72070167668167
Iteration: 18, Func. Count: 158, Neg. LLF: 88.72070157270254
Optimization terminated successfully (Exit mode 0)
Current function value: 88.72070167668167
Iterations: 18
Function evaluations: 158
Gradient evaluations: 18
Iteration: 1, Func. Count: 10, Neg. LLF: 153.3536844786603
Iteration: 2, Func. Count: 22, Neg. LLF: 48631501.92351148
Iteration: 3, Func. Count: 32, Neg. LLF: 4867268.816727249
Iteration: 4, Func. Count: 42, Neg. LLF: 103.4063473806626
Iteration: 5, Func. Count: 52, Neg. LLF: 90.20531334505952
Iteration: 6, Func. Count: 61, Neg. LLF: 96.20783309461908
Iteration: 7, Func. Count: 71, Neg. LLF: 93.00052967491621
Iteration: 8, Func. Count: 81, Neg. LLF: 92.12453892955529
Iteration: 9, Func. Count: 92, Neg. LLF: 89.03898633206623
Iteration: 10, Func. Count: 101, Neg. LLF: 88.96192119223525
Iteration: 11, Func. Count: 110, Neg. LLF: 88.93859981791071
Iteration: 12, Func. Count: 119, Neg. LLF: 88.93083486584862
Iteration: 13, Func. Count: 128, Neg. LLF: 88.90660565981987
Iteration: 14, Func. Count: 137, Neg. LLF: 88.89217666127172
Iteration: 15, Func. Count: 146, Neg. LLF: 88.84858016894019
Iteration: 16, Func. Count: 155, Neg. LLF: 89.08588014533589
Iteration: 17, Func. Count: 165, Neg. LLF: 89.06548843322862
Iteration: 18, Func. Count: 175, Neg. LLF: 88.82073011869015
Iteration: 19, Func. Count: 185, Neg. LLF: 88.78658718599901
Iteration: 20, Func. Count: 194, Neg. LLF: 88.75541715125658
Iteration: 21, Func. Count: 203, Neg. LLF: 88.72902945081083
Iteration: 22, Func. Count: 212, Neg. LLF: 88.72342696177745
Iteration: 23, Func. Count: 221, Neg. LLF: 88.72094410414573
Iteration: 24, Func. Count: 230, Neg. LLF: 88.72070545755712
Iteration: 25, Func. Count: 239, Neg. LLF: 88.72070162344086
Iteration: 26, Func. Count: 247, Neg. LLF: 88.72070156576756
Optimization terminated successfully (Exit mode 0)
Current function value: 88.72070162344086
Iterations: 26
Function evaluations: 247
Gradient evaluations: 26
Iteration: 1, Func. Count: 11, Neg. LLF: 222.69847489536087
Iteration: 2, Func. Count: 22, Neg. LLF: 101255069.10395913
Iteration: 3, Func. Count: 33, Neg. LLF: 100.2949762169848
Iteration: 4, Func. Count: 45, Neg. LLF: 103.08008261285394
Iteration: 5, Func. Count: 56, Neg. LLF: 89.81134648813271
Iteration: 6, Func. Count: 67, Neg. LLF: 89.29534386365486
Iteration: 7, Func. Count: 78, Neg. LLF: 88.97927492019815
Iteration: 8, Func. Count: 88, Neg. LLF: 89.83190344603216
Iteration: 9, Func. Count: 99, Neg. LLF: 88.84476071102934
Iteration: 10, Func. Count: 109, Neg. LLF: 88.85910929155568
Iteration: 11, Func. Count: 120, Neg. LLF: 88.82371548602514
Iteration: 12, Func. Count: 130, Neg. LLF: 88.78780687840695
Iteration: 13, Func. Count: 140, Neg. LLF: 88.76448938002697
Iteration: 14, Func. Count: 150, Neg. LLF: 88.78130574055673
Iteration: 15, Func. Count: 161, Neg. LLF: 88.73279380995632
Iteration: 16, Func. Count: 171, Neg. LLF: 88.72111506084966
Iteration: 17, Func. Count: 181, Neg. LLF: 88.72089958706427
Iteration: 18, Func. Count: 191, Neg. LLF: 88.72070419191905
Iteration: 19, Func. Count: 201, Neg. LLF: 88.72070198752054
Iteration: 20, Func. Count: 210, Neg. LLF: 88.72070197801582
Optimization terminated successfully (Exit mode 0)
Current function value: 88.72070198752054
Iterations: 20
Function evaluations: 210
Gradient evaluations: 20
Iteration: 1, Func. Count: 12, Neg. LLF: 5442341.883813112
Iteration: 2, Func. Count: 24, Neg. LLF: 275474251.21969557
Iteration: 3, Func. Count: 37, Neg. LLF: 4579382.636004125
Iteration: 4, Func. Count: 49, Neg. LLF: 93.48191894063542
Iteration: 5, Func. Count: 61, Neg. LLF: 96.13169743836391
Iteration: 6, Func. Count: 73, Neg. LLF: 93.52645125372851
Iteration: 7, Func. Count: 85, Neg. LLF: 89.06942257542208
Iteration: 8, Func. Count: 96, Neg. LLF: 88.8254718066345
Iteration: 9, Func. Count: 107, Neg. LLF: 88.7765404976577
Iteration: 10, Func. Count: 118, Neg. LLF: 88.7550171201524
Iteration: 11, Func. Count: 129, Neg. LLF: 88.7419860582983
Iteration: 12, Func. Count: 140, Neg. LLF: 88.73921760003144
Iteration: 13, Func. Count: 151, Neg. LLF: 88.73252366011782
Iteration: 14, Func. Count: 162, Neg. LLF: 88.72954189534018
Iteration: 15, Func. Count: 173, Neg. LLF: 88.72873534492149
Iteration: 16, Func. Count: 184, Neg. LLF: 88.7286914970597
Iteration: 17, Func. Count: 195, Neg. LLF: 88.72866723604108
Iteration: 18, Func. Count: 206, Neg. LLF: 88.72865429347101
Iteration: 19, Func. Count: 217, Neg. LLF: 88.72865263313923
Iteration: 20, Func. Count: 227, Neg. LLF: 88.72865271119058
Optimization terminated successfully (Exit mode 0)
Current function value: 88.72865263313923
Iterations: 20
Function evaluations: 227
Gradient evaluations: 20
Iteration: 1, Func. Count: 9, Neg. LLF: 132.59761113160312
Iteration: 2, Func. Count: 20, Neg. LLF: 391906460.0162757
Iteration: 3, Func. Count: 30, Neg. LLF: 180511.73200736725
Iteration: 4, Func. Count: 39, Neg. LLF: 1771211.3539176052
Iteration: 5, Func. Count: 48, Neg. LLF: 246282.046346088
Iteration: 6, Func. Count: 57, Neg. LLF: 26423.854288461058
Iteration: 7, Func. Count: 66, Neg. LLF: 27674.336554544298
Iteration: 8, Func. Count: 75, Neg. LLF: 26143.33356414711
Iteration: 9, Func. Count: 84, Neg. LLF: 26118.7821688698
Iteration: 10, Func. Count: 93, Neg. LLF: 88.98367981748528
Iteration: 11, Func. Count: 101, Neg. LLF: 88.50517755215164
Iteration: 12, Func. Count: 109, Neg. LLF: 90.54779188246006
Iteration: 13, Func. Count: 119, Neg. LLF: 88.33934409849941
Iteration: 14, Func. Count: 127, Neg. LLF: 88.22430795438669
Iteration: 15, Func. Count: 135, Neg. LLF: 88.20841202283779
Iteration: 16, Func. Count: 143, Neg. LLF: 88.19697028626692
Iteration: 17, Func. Count: 151, Neg. LLF: 88.17134588941128
Iteration: 18, Func. Count: 159, Neg. LLF: 95.87597268310533
Iteration: 19, Func. Count: 168, Neg. LLF: 95.5563437107013
Iteration: 20, Func. Count: 177, Neg. LLF: 95.47488012438534
Iteration: 21, Func. Count: 186, Neg. LLF: 95.51777250114276
Iteration: 22, Func. Count: 195, Neg. LLF: 95.01857509532043
Iteration: 23, Func. Count: 204, Neg. LLF: 92.91131393923222
Iteration: 24, Func. Count: 213, Neg. LLF: 95.03304170576527
Iteration: 25, Func. Count: 222, Neg. LLF: 104.89192304396337
Iteration: 26, Func. Count: 232, Neg. LLF: 88.065127739842
Iteration: 27, Func. Count: 241, Neg. LLF: 88.00671229300782
Iteration: 28, Func. Count: 250, Neg. LLF: 88.0021323206527
Iteration: 29, Func. Count: 259, Neg. LLF: 88.00193066382207
Iteration: 30, Func. Count: 267, Neg. LLF: 88.00192853539511
Iteration: 31, Func. Count: 275, Neg. LLF: 88.00192281333959
Iteration: 32, Func. Count: 283, Neg. LLF: 88.00192157387097
Iteration: 33, Func. Count: 290, Neg. LLF: 88.00192153908255
Optimization terminated successfully (Exit mode 0)
Current function value: 88.00192157387097
Iterations: 33
Function evaluations: 290
Gradient evaluations: 33
Iteration: 1, Func. Count: 10, Neg. LLF: 167.59545452345623
Iteration: 2, Func. Count: 24, Neg. LLF: 4640594.305403055
Iteration: 3, Func. Count: 34, Neg. LLF: 190.93296764286737
Iteration: 4, Func. Count: 44, Neg. LLF: 152.98837266803733
Iteration: 5, Func. Count: 54, Neg. LLF: 91.29163359813013
Iteration: 6, Func. Count: 64, Neg. LLF: 88.64489309549599
Iteration: 7, Func. Count: 73, Neg. LLF: 88.49582419880575
Iteration: 8, Func. Count: 82, Neg. LLF: 99.61497267415383
Iteration: 9, Func. Count: 92, Neg. LLF: 88.1270481384369
Iteration: 10, Func. Count: 101, Neg. LLF: 88.12219422648248
Iteration: 11, Func. Count: 110, Neg. LLF: 88.10771613300864
Iteration: 12, Func. Count: 119, Neg. LLF: 88.09656786653053
Iteration: 13, Func. Count: 128, Neg. LLF: 88.09301209162247
Iteration: 14, Func. Count: 137, Neg. LLF: 88.07609105144087
Iteration: 15, Func. Count: 146, Neg. LLF: 88.04837864927605
Iteration: 16, Func. Count: 155, Neg. LLF: 88.02741105403803
Iteration: 17, Func. Count: 164, Neg. LLF: 88.01070714536962
Iteration: 18, Func. Count: 173, Neg. LLF: 88.00372810243911
Iteration: 19, Func. Count: 182, Neg. LLF: 88.00194268446346
Iteration: 20, Func. Count: 191, Neg. LLF: 88.00192411674617
Iteration: 21, Func. Count: 200, Neg. LLF: 88.00192146510511
Iteration: 22, Func. Count: 208, Neg. LLF: 88.00192139874066
Optimization terminated successfully (Exit mode 0)
Current function value: 88.00192146510511
Iterations: 22
Function evaluations: 208
Gradient evaluations: 22
Iteration: 1, Func. Count: 11, Neg. LLF: 153.56440498192353
Iteration: 2, Func. Count: 24, Neg. LLF: 69286319.33762503
Iteration: 3, Func. Count: 35, Neg. LLF: 5680340.155910391
Iteration: 4, Func. Count: 46, Neg. LLF: 94.61968298665754
Iteration: 5, Func. Count: 57, Neg. LLF: 89.74582914772127
Iteration: 6, Func. Count: 67, Neg. LLF: 93.72634700119607
Iteration: 7, Func. Count: 78, Neg. LLF: 154.76735119225808
Iteration: 8, Func. Count: 89, Neg. LLF: 89.31877649095105
Iteration: 9, Func. Count: 100, Neg. LLF: 88.27528572770414
Iteration: 10, Func. Count: 110, Neg. LLF: 88.22386258008244
Iteration: 11, Func. Count: 120, Neg. LLF: 88.13292391299332
Iteration: 12, Func. Count: 130, Neg. LLF: 88.12416464384972
Iteration: 13, Func. Count: 140, Neg. LLF: 88.11670737155242
Iteration: 14, Func. Count: 150, Neg. LLF: 88.09148253595521
Iteration: 15, Func. Count: 160, Neg. LLF: 98.27965916555868
Iteration: 16, Func. Count: 171, Neg. LLF: 97.31926151323847
Iteration: 17, Func. Count: 182, Neg. LLF: 96.71389075845903
Iteration: 18, Func. Count: 193, Neg. LLF: 89.90974383960477
Iteration: 19, Func. Count: 204, Neg. LLF: 88.04999921833486
Iteration: 20, Func. Count: 215, Neg. LLF: 88.00621583866644
Iteration: 21, Func. Count: 225, Neg. LLF: 88.00246001519943
Iteration: 22, Func. Count: 235, Neg. LLF: 88.00225894994419
Iteration: 23, Func. Count: 245, Neg. LLF: 88.00193789537005
Iteration: 24, Func. Count: 255, Neg. LLF: 88.0019275071283
Iteration: 25, Func. Count: 265, Neg. LLF: 88.00192222057511
Iteration: 26, Func. Count: 275, Neg. LLF: 88.00192139347381
Optimization terminated successfully (Exit mode 0)
Current function value: 88.00192139347381
Iterations: 26
Function evaluations: 275
Gradient evaluations: 26
Iteration: 1, Func. Count: 12, Neg. LLF: 194.8807100082713
Iteration: 2, Func. Count: 24, Neg. LLF: 136730993.87952998
Iteration: 3, Func. Count: 36, Neg. LLF: 837831.8892782488
Iteration: 4, Func. Count: 48, Neg. LLF: 93.79014647081338
Iteration: 5, Func. Count: 60, Neg. LLF: 90.3715616095913
Iteration: 6, Func. Count: 72, Neg. LLF: 88.593719504008
Iteration: 7, Func. Count: 83, Neg. LLF: 105.14628637490644
Iteration: 8, Func. Count: 96, Neg. LLF: 88.20348676301295
Iteration: 9, Func. Count: 107, Neg. LLF: 88.19170213736888
Iteration: 10, Func. Count: 118, Neg. LLF: 88.18587517912572
Iteration: 11, Func. Count: 129, Neg. LLF: 88.17141058865232
Iteration: 12, Func. Count: 140, Neg. LLF: 94.18302189421573
Iteration: 13, Func. Count: 152, Neg. LLF: 94.14728964452641
Iteration: 14, Func. Count: 164, Neg. LLF: 94.00126473152785
Iteration: 15, Func. Count: 176, Neg. LLF: 93.46902006998111
Iteration: 16, Func. Count: 188, Neg. LLF: 94.34750219991392
Iteration: 17, Func. Count: 200, Neg. LLF: 92.06887605941988
Iteration: 18, Func. Count: 213, Neg. LLF: 88.48881901859437
Iteration: 19, Func. Count: 225, Neg. LLF: 88.08494364789604
Iteration: 20, Func. Count: 237, Neg. LLF: 88.06115476532638
Iteration: 21, Func. Count: 248, Neg. LLF: 88.03139595011028
Iteration: 22, Func. Count: 259, Neg. LLF: 88.0128124557551
Iteration: 23, Func. Count: 270, Neg. LLF: 88.0077467422158
Iteration: 24, Func. Count: 281, Neg. LLF: 88.00232535899936
Iteration: 25, Func. Count: 292, Neg. LLF: 88.00193592888758
Iteration: 26, Func. Count: 303, Neg. LLF: 88.00192143396009
Iteration: 27, Func. Count: 313, Neg. LLF: 88.00192149195915
Optimization terminated successfully (Exit mode 0)
Current function value: 88.00192143396009
Iterations: 27
Function evaluations: 313
Gradient evaluations: 27
Iteration: 1, Func. Count: 13, Neg. LLF: 116.56122126581002
Iteration: 2, Func. Count: 26, Neg. LLF: 155802254.7824296
Iteration: 3, Func. Count: 39, Neg. LLF: 234038.55757767565
Iteration: 4, Func. Count: 52, Neg. LLF: 233.018720363367
Iteration: 5, Func. Count: 65, Neg. LLF: 9913.836157782413
Iteration: 6, Func. Count: 78, Neg. LLF: 150.12216820493805
Iteration: 7, Func. Count: 91, Neg. LLF: 90.44076402431783
Iteration: 8, Func. Count: 104, Neg. LLF: 100.8909669238598
Iteration: 9, Func. Count: 117, Neg. LLF: 90.84655501995172
Iteration: 10, Func. Count: 130, Neg. LLF: 88.28960090742856
Iteration: 11, Func. Count: 142, Neg. LLF: 88.21018244829133
Iteration: 12, Func. Count: 154, Neg. LLF: 88.19358839231367
Iteration: 13, Func. Count: 166, Neg. LLF: 88.170155100408
Iteration: 14, Func. Count: 178, Neg. LLF: 93.66337387716402
Iteration: 15, Func. Count: 191, Neg. LLF: 93.78713543308297
Iteration: 16, Func. Count: 204, Neg. LLF: 94.28261459355716
Iteration: 17, Func. Count: 217, Neg. LLF: 94.05617219613615
Iteration: 18, Func. Count: 230, Neg. LLF: 88.48838273773788
Iteration: 19, Func. Count: 243, Neg. LLF: 94.47224322473397
Iteration: 20, Func. Count: 256, Neg. LLF: 88.08258770907383
Iteration: 21, Func. Count: 268, Neg. LLF: 88.0649689403942
Iteration: 22, Func. Count: 280, Neg. LLF: 88.01129175931055
Iteration: 23, Func. Count: 292, Neg. LLF: 88.00712445390123
Iteration: 24, Func. Count: 304, Neg. LLF: 88.00290111029675
Iteration: 25, Func. Count: 316, Neg. LLF: 88.00212760320318
Iteration: 26, Func. Count: 328, Neg. LLF: 88.00192309941244
Iteration: 27, Func. Count: 340, Neg. LLF: 88.00192164248762
Iteration: 28, Func. Count: 351, Neg. LLF: 88.00192161567477
Optimization terminated successfully (Exit mode 0)
Current function value: 88.00192164248762
Iterations: 28
Function evaluations: 351
Gradient evaluations: 28
Iteration: 1, Func. Count: 6, Neg. LLF: 130.54596480816826
Iteration: 2, Func. Count: 13, Neg. LLF: 170.10457215318476
Iteration: 3, Func. Count: 19, Neg. LLF: 996.0759599872971
Iteration: 4, Func. Count: 25, Neg. LLF: 137.38815622765907
Iteration: 5, Func. Count: 31, Neg. LLF: 133.7759194742355
Iteration: 6, Func. Count: 37, Neg. LLF: 125.91392692327948
Iteration: 7, Func. Count: 43, Neg. LLF: 101.10362337042045
Iteration: 8, Func. Count: 49, Neg. LLF: 96.21015472473884
Iteration: 9, Func. Count: 55, Neg. LLF: 93.8893701542712
Iteration: 10, Func. Count: 61, Neg. LLF: 92.8901684580102
Iteration: 11, Func. Count: 66, Neg. LLF: 92.74338156490622
Iteration: 12, Func. Count: 71, Neg. LLF: 93.09668001848699
Iteration: 13, Func. Count: 77, Neg. LLF: 92.65615728805747
Iteration: 14, Func. Count: 82, Neg. LLF: 92.6556871487458
Iteration: 15, Func. Count: 87, Neg. LLF: 92.65563480494573
Iteration: 16, Func. Count: 92, Neg. LLF: 92.65563325374266
Iteration: 17, Func. Count: 96, Neg. LLF: 92.65563324234574
Optimization terminated successfully (Exit mode 0)
Current function value: 92.65563325374266
Iterations: 17
Function evaluations: 96
Gradient evaluations: 17
Iteration: 1, Func. Count: 7, Neg. LLF: 691361.4448075924
Iteration: 2, Func. Count: 14, Neg. LLF: 28562.50472844802
Iteration: 3, Func. Count: 21, Neg. LLF: 111.71523850944442
Iteration: 4, Func. Count: 29, Neg. LLF: 94.02571485419513
Iteration: 5, Func. Count: 36, Neg. LLF: 91.52684102687287
Iteration: 6, Func. Count: 42, Neg. LLF: 91.51926651356361
Iteration: 7, Func. Count: 48, Neg. LLF: 91.51888860792131
Iteration: 8, Func. Count: 54, Neg. LLF: 91.51860015758746
Iteration: 9, Func. Count: 60, Neg. LLF: 91.51859458788182
Iteration: 10, Func. Count: 65, Neg. LLF: 91.51859454922369
Optimization terminated successfully (Exit mode 0)
Current function value: 91.51859458788182
Iterations: 10
Function evaluations: 65
Gradient evaluations: 10
Iteration: 1, Func. Count: 8, Neg. LLF: 7703.577475978464
Iteration: 2, Func. Count: 16, Neg. LLF: 442.93574003104663
Iteration: 3, Func. Count: 24, Neg. LLF: 114.69204195832006
Iteration: 4, Func. Count: 33, Neg. LLF: 91.55465742899878
Iteration: 5, Func. Count: 40, Neg. LLF: 91.79338851697231
Iteration: 6, Func. Count: 48, Neg. LLF: 91.42495982307989
Iteration: 7, Func. Count: 56, Neg. LLF: 91.40251187504333
Iteration: 8, Func. Count: 65, Neg. LLF: 91.38330102280364
Iteration: 9, Func. Count: 72, Neg. LLF: 91.38296313325165
Iteration: 10, Func. Count: 79, Neg. LLF: 91.38283020240782
Iteration: 11, Func. Count: 86, Neg. LLF: 91.38280113590666
Iteration: 12, Func. Count: 93, Neg. LLF: 91.38279389660198
Iteration: 13, Func. Count: 99, Neg. LLF: 91.38279387156349
Optimization terminated successfully (Exit mode 0)
Current function value: 91.38279389660198
Iterations: 13
Function evaluations: 99
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 19486.252835890744
Iteration: 2, Func. Count: 18, Neg. LLF: 4901.248695081203
Iteration: 3, Func. Count: 27, Neg. LLF: 23811926.651494056
Iteration: 4, Func. Count: 36, Neg. LLF: 372.071211192872
Iteration: 5, Func. Count: 45, Neg. LLF: 91.95601902435877
Iteration: 6, Func. Count: 54, Neg. LLF: 91.8610646275328
Iteration: 7, Func. Count: 63, Neg. LLF: 91.6579284828481
Iteration: 8, Func. Count: 72, Neg. LLF: 91.24161832877898
Iteration: 9, Func. Count: 81, Neg. LLF: 89.73458230457291
Iteration: 10, Func. Count: 89, Neg. LLF: 89.71181585343702
Iteration: 11, Func. Count: 97, Neg. LLF: 89.92372420070366
Iteration: 12, Func. Count: 107, Neg. LLF: 91.77200728756488
Iteration: 13, Func. Count: 117, Neg. LLF: 89.69672855519339
Iteration: 14, Func. Count: 125, Neg. LLF: 89.69586720622328
Iteration: 15, Func. Count: 133, Neg. LLF: 89.69574747801387
Iteration: 16, Func. Count: 141, Neg. LLF: 89.69574499618899
Iteration: 17, Func. Count: 148, Neg. LLF: 89.69574498199324
Optimization terminated successfully (Exit mode 0)
Current function value: 89.69574499618899
Iterations: 17
Function evaluations: 148
Gradient evaluations: 17
Iteration: 1, Func. Count: 10, Neg. LLF: 544.383389519612
Iteration: 2, Func. Count: 20, Neg. LLF: 874473.6777428751
Iteration: 3, Func. Count: 30, Neg. LLF: 433.87529793486624
Iteration: 4, Func. Count: 40, Neg. LLF: 117.42423965295403
Iteration: 5, Func. Count: 50, Neg. LLF: 95.57720564493802
Iteration: 6, Func. Count: 60, Neg. LLF: 94.4644762048714
Iteration: 7, Func. Count: 70, Neg. LLF: 93.5654184209618
Iteration: 8, Func. Count: 80, Neg. LLF: 96.6598042347441
Iteration: 9, Func. Count: 90, Neg. LLF: 92.73258664871781
Iteration: 10, Func. Count: 100, Neg. LLF: 89.97995099964876
Iteration: 11, Func. Count: 109, Neg. LLF: 90.09198252343894
Iteration: 12, Func. Count: 119, Neg. LLF: 92.17860216624653
Iteration: 13, Func. Count: 130, Neg. LLF: 90.08786743402779
Iteration: 14, Func. Count: 140, Neg. LLF: 89.81504576100231
Iteration: 15, Func. Count: 150, Neg. LLF: 89.75141186213436
Iteration: 16, Func. Count: 159, Neg. LLF: 89.71157274910163
Iteration: 17, Func. Count: 168, Neg. LLF: 89.69623411553418
Iteration: 18, Func. Count: 177, Neg. LLF: 89.69576713799992
Iteration: 19, Func. Count: 186, Neg. LLF: 89.69574546299518
Iteration: 20, Func. Count: 194, Neg. LLF: 89.69574546177553
Optimization terminated successfully (Exit mode 0)
Current function value: 89.69574546299518
Iterations: 20
Function evaluations: 194
Gradient evaluations: 20
Iteration: 1, Func. Count: 7, Neg. LLF: 124.43497647179748
Iteration: 2, Func. Count: 15, Neg. LLF: 192.98626370805306
Iteration: 3, Func. Count: 22, Neg. LLF: 469.98792805083747
Iteration: 4, Func. Count: 29, Neg. LLF: 410.109187888162
Iteration: 5, Func. Count: 36, Neg. LLF: 167.6076383692166
Iteration: 6, Func. Count: 43, Neg. LLF: 510.10138906677867
Iteration: 7, Func. Count: 50, Neg. LLF: 177.07869134744132
Iteration: 8, Func. Count: 57, Neg. LLF: 100.10939364623263
Iteration: 9, Func. Count: 64, Neg. LLF: 92.99203637841283
Iteration: 10, Func. Count: 71, Neg. LLF: 91.1643472206088
Iteration: 11, Func. Count: 77, Neg. LLF: 91.46537281003413
Iteration: 12, Func. Count: 84, Neg. LLF: 91.83541036425488
Iteration: 13, Func. Count: 92, Neg. LLF: 91.03526547570084
Iteration: 14, Func. Count: 98, Neg. LLF: 91.01494103533848
Iteration: 15, Func. Count: 104, Neg. LLF: 91.01453045991764
Iteration: 16, Func. Count: 110, Neg. LLF: 91.01447247279951
Iteration: 17, Func. Count: 116, Neg. LLF: 91.01446934923628
Iteration: 18, Func. Count: 121, Neg. LLF: 91.01446933834862
Optimization terminated successfully (Exit mode 0)
Current function value: 91.01446934923628
Iterations: 18
Function evaluations: 121
Gradient evaluations: 18
Iteration: 1, Func. Count: 8, Neg. LLF: 157.07022311836315
Iteration: 2, Func. Count: 20, Neg. LLF: 6881483.524485871
Iteration: 3, Func. Count: 28, Neg. LLF: 203.7098605439692
Iteration: 4, Func. Count: 36, Neg. LLF: 96.63417203452806
Iteration: 5, Func. Count: 44, Neg. LLF: 89.14095110544284
Iteration: 6, Func. Count: 51, Neg. LLF: 89.1268849002265
Iteration: 7, Func. Count: 58, Neg. LLF: 89.12678382279098
Iteration: 8, Func. Count: 65, Neg. LLF: 89.12676037665001
Iteration: 9, Func. Count: 72, Neg. LLF: 89.12675613953341
Iteration: 10, Func. Count: 79, Neg. LLF: 89.12675295904337
Iteration: 11, Func. Count: 86, Neg. LLF: 89.12675196610653
Optimization terminated successfully (Exit mode 0)
Current function value: 89.12675196610653
Iterations: 11
Function evaluations: 86
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 149.18588118106365
Iteration: 2, Func. Count: 19, Neg. LLF: 259.3171673705878
Iteration: 3, Func. Count: 28, Neg. LLF: 144.14041687038429
Iteration: 4, Func. Count: 38, Neg. LLF: 97.66575196001286
Iteration: 5, Func. Count: 47, Neg. LLF: 91.71372653189081
Iteration: 6, Func. Count: 56, Neg. LLF: 89.30546083066301
Iteration: 7, Func. Count: 64, Neg. LLF: 89.19687257209266
Iteration: 8, Func. Count: 72, Neg. LLF: 89.18987478718938
Iteration: 9, Func. Count: 81, Neg. LLF: 89.14730943049494
Iteration: 10, Func. Count: 89, Neg. LLF: 89.13436148732991
Iteration: 11, Func. Count: 97, Neg. LLF: 89.12698779924284
Iteration: 12, Func. Count: 105, Neg. LLF: 89.12675571981593
Iteration: 13, Func. Count: 113, Neg. LLF: 89.12675191191714
Iteration: 14, Func. Count: 120, Neg. LLF: 89.12675192856017
Optimization terminated successfully (Exit mode 0)
Current function value: 89.12675191191714
Iterations: 14
Function evaluations: 120
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 311.01632742612185
Iteration: 2, Func. Count: 20, Neg. LLF: 376.3454218865204
Iteration: 3, Func. Count: 30, Neg. LLF: 120.47665769404239
Iteration: 4, Func. Count: 41, Neg. LLF: 102.059198388032
Iteration: 5, Func. Count: 51, Neg. LLF: 99.50272101972556
Iteration: 6, Func. Count: 61, Neg. LLF: 94.87251259903127
Iteration: 7, Func. Count: 71, Neg. LLF: 89.37404934560213
Iteration: 8, Func. Count: 80, Neg. LLF: 89.30071410320133
Iteration: 9, Func. Count: 89, Neg. LLF: 89.25351391146394
Iteration: 10, Func. Count: 98, Neg. LLF: 89.19582967554676
Iteration: 11, Func. Count: 107, Neg. LLF: 89.15851419614862
Iteration: 12, Func. Count: 116, Neg. LLF: 89.13741245864409
Iteration: 13, Func. Count: 125, Neg. LLF: 89.12821270365144
Iteration: 14, Func. Count: 134, Neg. LLF: 89.1268842769507
Iteration: 15, Func. Count: 143, Neg. LLF: 89.12676528917383
Iteration: 16, Func. Count: 152, Neg. LLF: 89.126752341853
Iteration: 17, Func. Count: 160, Neg. LLF: 89.12675241667746
Optimization terminated successfully (Exit mode 0)
Current function value: 89.126752341853
Iterations: 17
Function evaluations: 160
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 1460.8916214006792
Iteration: 2, Func. Count: 22, Neg. LLF: 1184.6509225597274
Iteration: 3, Func. Count: 33, Neg. LLF: 507.01200705463197
Iteration: 4, Func. Count: 44, Neg. LLF: 97.02529330605529
Iteration: 5, Func. Count: 55, Neg. LLF: 94.3974381706452
Iteration: 6, Func. Count: 66, Neg. LLF: 92.06859337516508
Iteration: 7, Func. Count: 77, Neg. LLF: 89.3571959815067
Iteration: 8, Func. Count: 87, Neg. LLF: 89.28728101591169
Iteration: 9, Func. Count: 97, Neg. LLF: 89.25927450312955
Iteration: 10, Func. Count: 107, Neg. LLF: 89.16315076741718
Iteration: 11, Func. Count: 117, Neg. LLF: 89.15147809502281
Iteration: 12, Func. Count: 127, Neg. LLF: 89.13935351644133
Iteration: 13, Func. Count: 137, Neg. LLF: 89.12896889417159
Iteration: 14, Func. Count: 147, Neg. LLF: 89.12693462028028
Iteration: 15, Func. Count: 157, Neg. LLF: 89.12675840807977
Iteration: 16, Func. Count: 167, Neg. LLF: 89.12675190479122
Iteration: 17, Func. Count: 176, Neg. LLF: 89.12675198818835
Optimization terminated successfully (Exit mode 0)
Current function value: 89.12675190479122
Iterations: 17
Function evaluations: 176
Gradient evaluations: 17
Iteration: 1, Func. Count: 8, Neg. LLF: 118.65131380562586
Iteration: 2, Func. Count: 17, Neg. LLF: 445.60805790787657
Iteration: 3, Func. Count: 25, Neg. LLF: 2731943.166293519
Iteration: 4, Func. Count: 33, Neg. LLF: 837218.390020599
Iteration: 5, Func. Count: 41, Neg. LLF: 113.19912387990836
Iteration: 6, Func. Count: 49, Neg. LLF: 98.3431104475494
Iteration: 7, Func. Count: 57, Neg. LLF: 95.090170721123
Iteration: 8, Func. Count: 65, Neg. LLF: 89.99176432468953
Iteration: 9, Func. Count: 73, Neg. LLF: 89.22941629297345
Iteration: 10, Func. Count: 80, Neg. LLF: 89.54133232903989
Iteration: 11, Func. Count: 88, Neg. LLF: 89.51838354963627
Iteration: 12, Func. Count: 96, Neg. LLF: 89.16640914871192
Iteration: 13, Func. Count: 104, Neg. LLF: 89.05192731752894
Iteration: 14, Func. Count: 111, Neg. LLF: 89.04430740371959
Iteration: 15, Func. Count: 118, Neg. LLF: 89.03910741760271
Iteration: 16, Func. Count: 125, Neg. LLF: 89.03436032170015
Iteration: 17, Func. Count: 132, Neg. LLF: 89.03306775154076
Iteration: 18, Func. Count: 139, Neg. LLF: 89.0330371454735
Iteration: 19, Func. Count: 146, Neg. LLF: 89.033027124359
Iteration: 20, Func. Count: 152, Neg. LLF: 89.03302711729602
Optimization terminated successfully (Exit mode 0)
Current function value: 89.033027124359
Iterations: 20
Function evaluations: 152
Gradient evaluations: 20
Iteration: 1, Func. Count: 9, Neg. LLF: 156.1404895532188
Iteration: 2, Func. Count: 22, Neg. LLF: 5915522.590742318
Iteration: 3, Func. Count: 31, Neg. LLF: 164.21974123947732
Iteration: 4, Func. Count: 40, Neg. LLF: 105.23283664408963
Iteration: 5, Func. Count: 49, Neg. LLF: 88.06234407828786
Iteration: 6, Func. Count: 57, Neg. LLF: 93.39490476571432
Iteration: 7, Func. Count: 67, Neg. LLF: 88.03876882816888
Iteration: 8, Func. Count: 75, Neg. LLF: 88.03591826534618
Iteration: 9, Func. Count: 83, Neg. LLF: 88.03427985592033
Iteration: 10, Func. Count: 91, Neg. LLF: 88.03232955349489
Iteration: 11, Func. Count: 99, Neg. LLF: 88.03206689686836
Iteration: 12, Func. Count: 107, Neg. LLF: 88.03205356232824
Iteration: 13, Func. Count: 114, Neg. LLF: 88.03205351791122
Optimization terminated successfully (Exit mode 0)
Current function value: 88.03205356232824
Iterations: 13
Function evaluations: 114
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 3102148.6379016647
Iteration: 2, Func. Count: 20, Neg. LLF: 22856147.80173931
Iteration: 3, Func. Count: 30, Neg. LLF: 173.50534689485343
Iteration: 4, Func. Count: 41, Neg. LLF: 111.6719957925287
Iteration: 5, Func. Count: 51, Neg. LLF: 96.2961510089911
Iteration: 6, Func. Count: 61, Neg. LLF: 90.24131254332572
Iteration: 7, Func. Count: 71, Neg. LLF: 88.28820982987764
Iteration: 8, Func. Count: 80, Neg. LLF: 88.13144022829488
Iteration: 9, Func. Count: 89, Neg. LLF: 88.07108031397215
Iteration: 10, Func. Count: 98, Neg. LLF: 88.03503620927803
Iteration: 11, Func. Count: 107, Neg. LLF: 88.03330528512257
Iteration: 12, Func. Count: 116, Neg. LLF: 88.03214061200725
Iteration: 13, Func. Count: 125, Neg. LLF: 88.03211260511975
Iteration: 14, Func. Count: 134, Neg. LLF: 88.03206185092552
Iteration: 15, Func. Count: 143, Neg. LLF: 88.0320541176892
Iteration: 16, Func. Count: 152, Neg. LLF: 88.03205302917567
Iteration: 17, Func. Count: 160, Neg. LLF: 88.03205299910478
Optimization terminated successfully (Exit mode 0)
Current function value: 88.03205302917567
Iterations: 17
Function evaluations: 160
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 5507352.897066456
Iteration: 2, Func. Count: 22, Neg. LLF: 137006581.75210726
Iteration: 3, Func. Count: 34, Neg. LLF: 178.54226227514707
Iteration: 4, Func. Count: 46, Neg. LLF: 112.53999260764293
Iteration: 5, Func. Count: 57, Neg. LLF: 92.67426173057576
Iteration: 6, Func. Count: 68, Neg. LLF: 90.09769808744532
Iteration: 7, Func. Count: 79, Neg. LLF: 93.56777356630228
Iteration: 8, Func. Count: 90, Neg. LLF: 89.30333289009128
Iteration: 9, Func. Count: 101, Neg. LLF: 88.3291591778969
Iteration: 10, Func. Count: 111, Neg. LLF: 88.12093381126162
Iteration: 11, Func. Count: 121, Neg. LLF: 88.07720496565436
Iteration: 12, Func. Count: 131, Neg. LLF: 88.04889559296349
Iteration: 13, Func. Count: 141, Neg. LLF: 88.03592558626558
Iteration: 14, Func. Count: 151, Neg. LLF: 88.03373230265696
Iteration: 15, Func. Count: 161, Neg. LLF: 88.0322490994795
Iteration: 16, Func. Count: 171, Neg. LLF: 88.03207181582746
Iteration: 17, Func. Count: 181, Neg. LLF: 88.03205371170105
Iteration: 18, Func. Count: 191, Neg. LLF: 88.03205305866724
Optimization terminated successfully (Exit mode 0)
Current function value: 88.03205305866724
Iterations: 18
Function evaluations: 191
Gradient evaluations: 18
Iteration: 1, Func. Count: 12, Neg. LLF: 4577297.526828544
Iteration: 2, Func. Count: 24, Neg. LLF: 63568171.998995796
Iteration: 3, Func. Count: 37, Neg. LLF: 139.3282470694899
Iteration: 4, Func. Count: 50, Neg. LLF: 105.47021181681379
Iteration: 5, Func. Count: 62, Neg. LLF: 138.36161982117707
Iteration: 6, Func. Count: 74, Neg. LLF: 95.60918646717647
Iteration: 7, Func. Count: 86, Neg. LLF: 89.2083481188274
Iteration: 8, Func. Count: 97, Neg. LLF: 93.13504254726631
Iteration: 9, Func. Count: 109, Neg. LLF: 93.53870228805755
Iteration: 10, Func. Count: 122, Neg. LLF: 94.70439011885982
Iteration: 11, Func. Count: 134, Neg. LLF: 88.24550360416924
Iteration: 12, Func. Count: 145, Neg. LLF: 88.14612440639422
Iteration: 13, Func. Count: 156, Neg. LLF: 88.08376248760048
Iteration: 14, Func. Count: 167, Neg. LLF: 88.03785449171497
Iteration: 15, Func. Count: 178, Neg. LLF: 88.03453129006051
Iteration: 16, Func. Count: 189, Neg. LLF: 88.03362149681882
Iteration: 17, Func. Count: 200, Neg. LLF: 88.0327487023009
Iteration: 18, Func. Count: 211, Neg. LLF: 88.03216837544257
Iteration: 19, Func. Count: 222, Neg. LLF: 88.03205838230208
Iteration: 20, Func. Count: 233, Neg. LLF: 88.03205312826567
Iteration: 21, Func. Count: 243, Neg. LLF: 88.03205311208035
Optimization terminated successfully (Exit mode 0)
Current function value: 88.03205312826567
Iterations: 21
Function evaluations: 243
Gradient evaluations: 21
Iteration: 1, Func. Count: 9, Neg. LLF: 131.2842411250271
Iteration: 2, Func. Count: 19, Neg. LLF: 503.7031489763702
Iteration: 3, Func. Count: 28, Neg. LLF: 2746925.4132374744
Iteration: 4, Func. Count: 37, Neg. LLF: 837889.4169217747
Iteration: 5, Func. Count: 46, Neg. LLF: 201.5979206865404
Iteration: 6, Func. Count: 55, Neg. LLF: 114.93682122023414
Iteration: 7, Func. Count: 64, Neg. LLF: 416.7316240028041
Iteration: 8, Func. Count: 73, Neg. LLF: 89.30616567662831
Iteration: 9, Func. Count: 81, Neg. LLF: 89.8141134063149
Iteration: 10, Func. Count: 90, Neg. LLF: 89.00724899684606
Iteration: 11, Func. Count: 99, Neg. LLF: 88.88185734370585
Iteration: 12, Func. Count: 107, Neg. LLF: 88.87885003207654
Iteration: 13, Func. Count: 115, Neg. LLF: 88.87715534384823
Iteration: 14, Func. Count: 123, Neg. LLF: 88.87660103574012
Iteration: 15, Func. Count: 131, Neg. LLF: 88.87633278347363
Iteration: 16, Func. Count: 139, Neg. LLF: 88.8761705448391
Iteration: 17, Func. Count: 147, Neg. LLF: 88.87613470604938
Iteration: 18, Func. Count: 155, Neg. LLF: 88.87613078328303
Iteration: 19, Func. Count: 162, Neg. LLF: 88.87613077060067
Optimization terminated successfully (Exit mode 0)
Current function value: 88.87613078328303
Iterations: 19
Function evaluations: 162
Gradient evaluations: 19
Iteration: 1, Func. Count: 10, Neg. LLF: 163.0068715424876
Iteration: 2, Func. Count: 24, Neg. LLF: 5268144.860614607
Iteration: 3, Func. Count: 34, Neg. LLF: 191.44142456461765
Iteration: 4, Func. Count: 44, Neg. LLF: 218.558027119096
Iteration: 5, Func. Count: 54, Neg. LLF: 106.0898922155882
Iteration: 6, Func. Count: 64, Neg. LLF: 91.72939936439133
Iteration: 7, Func. Count: 74, Neg. LLF: 89.43470569855472
Iteration: 8, Func. Count: 84, Neg. LLF: 88.00911027188897
Iteration: 9, Func. Count: 93, Neg. LLF: 88.35490687253157
Iteration: 10, Func. Count: 103, Neg. LLF: 87.97868198908029
Iteration: 11, Func. Count: 112, Neg. LLF: 87.97661499206087
Iteration: 12, Func. Count: 121, Neg. LLF: 87.97653238742394
Iteration: 13, Func. Count: 130, Neg. LLF: 87.97652135505987
Iteration: 14, Func. Count: 139, Neg. LLF: 87.97651405980346
Iteration: 15, Func. Count: 148, Neg. LLF: 87.976494303563
Iteration: 16, Func. Count: 157, Neg. LLF: 87.97648117399953
Iteration: 17, Func. Count: 166, Neg. LLF: 87.97647611511842
Iteration: 18, Func. Count: 174, Neg. LLF: 87.97647605719263
Optimization terminated successfully (Exit mode 0)
Current function value: 87.97647611511842
Iterations: 18
Function evaluations: 174
Gradient evaluations: 18
Iteration: 1, Func. Count: 11, Neg. LLF: 3786590.2342474246
Iteration: 2, Func. Count: 22, Neg. LLF: 24415662.83370422
Iteration: 3, Func. Count: 33, Neg. LLF: 182.84715422609423
Iteration: 4, Func. Count: 45, Neg. LLF: 109.8243094322915
Iteration: 5, Func. Count: 56, Neg. LLF: 94.14948173079497
Iteration: 6, Func. Count: 67, Neg. LLF: 107.34730319108274
Iteration: 7, Func. Count: 78, Neg. LLF: 88.2532013869144
Iteration: 8, Func. Count: 88, Neg. LLF: 88.07144392562354
Iteration: 9, Func. Count: 98, Neg. LLF: 88.00820817277582
Iteration: 10, Func. Count: 108, Neg. LLF: 87.99436110436739
Iteration: 11, Func. Count: 118, Neg. LLF: 87.98889405995973
Iteration: 12, Func. Count: 128, Neg. LLF: 87.98491520987618
Iteration: 13, Func. Count: 138, Neg. LLF: 87.9801047773096
Iteration: 14, Func. Count: 148, Neg. LLF: 87.97681148866187
Iteration: 15, Func. Count: 158, Neg. LLF: 87.97649652212965
Iteration: 16, Func. Count: 168, Neg. LLF: 87.97647636641874
Iteration: 17, Func. Count: 178, Neg. LLF: 87.97647565008052
Optimization terminated successfully (Exit mode 0)
Current function value: 87.97647565008052
Iterations: 17
Function evaluations: 178
Gradient evaluations: 17
Iteration: 1, Func. Count: 12, Neg. LLF: 4461240.388339839
Iteration: 2, Func. Count: 24, Neg. LLF: 96588747.73372895
Iteration: 3, Func. Count: 36, Neg. LLF: 239.242838443437
Iteration: 4, Func. Count: 49, Neg. LLF: 183.15655055477023
Iteration: 5, Func. Count: 61, Neg. LLF: 152.99556863789095
Iteration: 6, Func. Count: 73, Neg. LLF: 94.64933447479538
Iteration: 7, Func. Count: 85, Neg. LLF: 91.98820839664425
Iteration: 8, Func. Count: 97, Neg. LLF: 90.06285329570511
Iteration: 9, Func. Count: 109, Neg. LLF: 89.22123305350445
Iteration: 10, Func. Count: 121, Neg. LLF: 88.3258978723435
Iteration: 11, Func. Count: 132, Neg. LLF: 88.07424945955105
Iteration: 12, Func. Count: 143, Neg. LLF: 88.0525682426009
Iteration: 13, Func. Count: 154, Neg. LLF: 88.03809640195388
Iteration: 14, Func. Count: 165, Neg. LLF: 88.02112596611708
Iteration: 15, Func. Count: 176, Neg. LLF: 88.0144822222645
Iteration: 16, Func. Count: 187, Neg. LLF: 88.00063849150763
Iteration: 17, Func. Count: 198, Neg. LLF: 87.98733141075188
Iteration: 18, Func. Count: 209, Neg. LLF: 87.97848096578761
Iteration: 19, Func. Count: 220, Neg. LLF: 87.97680067143254
Iteration: 20, Func. Count: 231, Neg. LLF: 87.97657311899425
Iteration: 21, Func. Count: 242, Neg. LLF: 87.97647881547273
Iteration: 22, Func. Count: 253, Neg. LLF: 87.97647567081994
Iteration: 23, Func. Count: 263, Neg. LLF: 87.97647566646097
Optimization terminated successfully (Exit mode 0)
Current function value: 87.97647567081994
Iterations: 23
Function evaluations: 263
Gradient evaluations: 23
Iteration: 1, Func. Count: 13, Neg. LLF: 5753777.690926389
Iteration: 2, Func. Count: 26, Neg. LLF: 151559749.91675913
Iteration: 3, Func. Count: 40, Neg. LLF: 29601897.293293495
Iteration: 4, Func. Count: 54, Neg. LLF: 99.81776825873668
Iteration: 5, Func. Count: 67, Neg. LLF: 92.74698783744525
Iteration: 6, Func. Count: 80, Neg. LLF: 95.30572660363322
Iteration: 7, Func. Count: 93, Neg. LLF: 88.64205078109764
Iteration: 8, Func. Count: 105, Neg. LLF: 88.35398592011988
Iteration: 9, Func. Count: 117, Neg. LLF: 88.30395580350772
Iteration: 10, Func. Count: 130, Neg. LLF: 88.05914184940595
Iteration: 11, Func. Count: 142, Neg. LLF: 88.01257680812195
Iteration: 12, Func. Count: 154, Neg. LLF: 88.00654290160081
Iteration: 13, Func. Count: 166, Neg. LLF: 88.00073501552006
Iteration: 14, Func. Count: 178, Neg. LLF: 88.10113165956672
Iteration: 15, Func. Count: 191, Neg. LLF: 88.18198504316962
Iteration: 16, Func. Count: 204, Neg. LLF: 87.98500639740033
Iteration: 17, Func. Count: 217, Neg. LLF: 87.96455544102562
Iteration: 18, Func. Count: 229, Neg. LLF: 87.9630863477474
Iteration: 19, Func. Count: 241, Neg. LLF: 87.96283371376434
Iteration: 20, Func. Count: 253, Neg. LLF: 87.96273312397614
Iteration: 21, Func. Count: 265, Neg. LLF: 87.96272864035954
Iteration: 22, Func. Count: 277, Neg. LLF: 87.96272777993997
Optimization terminated successfully (Exit mode 0)
Current function value: 87.96272777993997
Iterations: 22
Function evaluations: 277
Gradient evaluations: 22
Iteration: 1, Func. Count: 10, Neg. LLF: 140.49939515640168
Iteration: 2, Func. Count: 21, Neg. LLF: 541.2743778322655
Iteration: 3, Func. Count: 31, Neg. LLF: 1888726.0840714625
Iteration: 4, Func. Count: 41, Neg. LLF: 244289.11536739845
Iteration: 5, Func. Count: 51, Neg. LLF: 244641.30096292778
Iteration: 6, Func. Count: 61, Neg. LLF: 104.61578341134927
Iteration: 7, Func. Count: 71, Neg. LLF: 26218.463702721157
Iteration: 8, Func. Count: 81, Neg. LLF: 185.8745788717459
Iteration: 9, Func. Count: 91, Neg. LLF: 89.2034749793461
Iteration: 10, Func. Count: 101, Neg. LLF: 88.03162582770356
Iteration: 11, Func. Count: 110, Neg. LLF: 89.87094741738987
Iteration: 12, Func. Count: 121, Neg. LLF: 87.88850502450074
Iteration: 13, Func. Count: 130, Neg. LLF: 87.78888866004763
Iteration: 14, Func. Count: 139, Neg. LLF: 87.76720141058574
Iteration: 15, Func. Count: 148, Neg. LLF: 87.75742059269943
Iteration: 16, Func. Count: 157, Neg. LLF: 87.74862967450315
Iteration: 17, Func. Count: 166, Neg. LLF: 87.74638570966003
Iteration: 18, Func. Count: 175, Neg. LLF: 87.74609762866261
Iteration: 19, Func. Count: 184, Neg. LLF: 87.74608319786678
Iteration: 20, Func. Count: 193, Neg. LLF: 87.74608212757148
Iteration: 21, Func. Count: 201, Neg. LLF: 87.74608209914553
Optimization terminated successfully (Exit mode 0)
Current function value: 87.74608212757148
Iterations: 21
Function evaluations: 201
Gradient evaluations: 21
Iteration: 1, Func. Count: 11, Neg. LLF: 162.74647476011128
Iteration: 2, Func. Count: 26, Neg. LLF: 5014000.780467906
Iteration: 3, Func. Count: 37, Neg. LLF: 235.83525740389393
Iteration: 4, Func. Count: 48, Neg. LLF: 154.54448264130986
Iteration: 5, Func. Count: 59, Neg. LLF: 92.82429340814838
Iteration: 6, Func. Count: 70, Neg. LLF: 97.26040687518486
Iteration: 7, Func. Count: 81, Neg. LLF: 89.9438233456566
Iteration: 8, Func. Count: 92, Neg. LLF: 90.11573339265976
Iteration: 9, Func. Count: 103, Neg. LLF: 87.90886928278128
Iteration: 10, Func. Count: 113, Neg. LLF: 88.60928050918011
Iteration: 11, Func. Count: 124, Neg. LLF: 87.82093180047457
Iteration: 12, Func. Count: 134, Neg. LLF: 87.80455295691506
Iteration: 13, Func. Count: 144, Neg. LLF: 87.79866042800349
Iteration: 14, Func. Count: 154, Neg. LLF: 87.79305607768212
Iteration: 15, Func. Count: 164, Neg. LLF: 87.77629189968702
Iteration: 16, Func. Count: 174, Neg. LLF: 87.75751249514245
Iteration: 17, Func. Count: 184, Neg. LLF: 87.74471327510287
Iteration: 18, Func. Count: 194, Neg. LLF: 87.73532931967296
Iteration: 19, Func. Count: 204, Neg. LLF: 87.7347742875028
Iteration: 20, Func. Count: 214, Neg. LLF: 87.7346408315134
Iteration: 21, Func. Count: 224, Neg. LLF: 87.7346379100323
Iteration: 22, Func. Count: 233, Neg. LLF: 87.73463785351629
Optimization terminated successfully (Exit mode 0)
Current function value: 87.7346379100323
Iterations: 22
Function evaluations: 233
Gradient evaluations: 22
Iteration: 1, Func. Count: 12, Neg. LLF: 4139098.169428132
Iteration: 2, Func. Count: 24, Neg. LLF: 30420168.966243293
Iteration: 3, Func. Count: 36, Neg. LLF: 201.31856185520772
Iteration: 4, Func. Count: 49, Neg. LLF: 104.66161808365815
Iteration: 5, Func. Count: 61, Neg. LLF: 94.40685167926132
Iteration: 6, Func. Count: 73, Neg. LLF: 93.44518839117514
Iteration: 7, Func. Count: 85, Neg. LLF: 87.9972920689261
Iteration: 8, Func. Count: 96, Neg. LLF: 88.35910529290682
Iteration: 9, Func. Count: 108, Neg. LLF: 88.31840080273705
Iteration: 10, Func. Count: 120, Neg. LLF: 87.81764200182423
Iteration: 11, Func. Count: 131, Neg. LLF: 87.83144458613886
Iteration: 12, Func. Count: 143, Neg. LLF: 87.81095960924166
Iteration: 13, Func. Count: 155, Neg. LLF: 87.78103778876591
Iteration: 14, Func. Count: 166, Neg. LLF: 87.76284193215277
Iteration: 15, Func. Count: 177, Neg. LLF: 87.74916073158141
Iteration: 16, Func. Count: 188, Neg. LLF: 87.73715537553669
Iteration: 17, Func. Count: 199, Neg. LLF: 87.73493159366528
Iteration: 18, Func. Count: 210, Neg. LLF: 87.73466075699598
Iteration: 19, Func. Count: 221, Neg. LLF: 87.73463928251876
Iteration: 20, Func. Count: 232, Neg. LLF: 87.73463775489053
Iteration: 21, Func. Count: 242, Neg. LLF: 87.734637777076
Optimization terminated successfully (Exit mode 0)
Current function value: 87.73463775489053
Iterations: 21
Function evaluations: 242
Gradient evaluations: 21
Iteration: 1, Func. Count: 13, Neg. LLF: 5000481.255747249
Iteration: 2, Func. Count: 26, Neg. LLF: 97018270.87362961
Iteration: 3, Func. Count: 39, Neg. LLF: 243.72094795603323
Iteration: 4, Func. Count: 53, Neg. LLF: 139.241240149205
Iteration: 5, Func. Count: 66, Neg. LLF: 256.7354823249933
Iteration: 6, Func. Count: 79, Neg. LLF: 102.9697994202608
Iteration: 7, Func. Count: 92, Neg. LLF: 99.16150215457886
Iteration: 8, Func. Count: 105, Neg. LLF: 93.68143013160028
Iteration: 9, Func. Count: 118, Neg. LLF: 89.66769212916931
Iteration: 10, Func. Count: 131, Neg. LLF: 89.2717506913775
Iteration: 11, Func. Count: 144, Neg. LLF: 87.96550234701382
Iteration: 12, Func. Count: 156, Neg. LLF: 88.00636588687807
Iteration: 13, Func. Count: 169, Neg. LLF: 87.87520068274249
Iteration: 14, Func. Count: 181, Neg. LLF: 87.85711097845393
Iteration: 15, Func. Count: 193, Neg. LLF: 87.85302571509939
Iteration: 16, Func. Count: 205, Neg. LLF: 87.83013518210176
Iteration: 17, Func. Count: 217, Neg. LLF: 87.80395858703397
Iteration: 18, Func. Count: 229, Neg. LLF: 87.78324311166959
Iteration: 19, Func. Count: 241, Neg. LLF: 87.7552697323957
Iteration: 20, Func. Count: 253, Neg. LLF: 87.74388368738158
Iteration: 21, Func. Count: 265, Neg. LLF: 87.73874733299144
Iteration: 22, Func. Count: 277, Neg. LLF: 87.73547281833014
Iteration: 23, Func. Count: 289, Neg. LLF: 87.73471460829144
Iteration: 24, Func. Count: 301, Neg. LLF: 87.7346434360171
Iteration: 25, Func. Count: 313, Neg. LLF: 87.73463807776162
Iteration: 26, Func. Count: 325, Neg. LLF: 87.73463764241211
Optimization terminated successfully (Exit mode 0)
Current function value: 87.73463764241211
Iterations: 26
Function evaluations: 325
Gradient evaluations: 26
Iteration: 1, Func. Count: 14, Neg. LLF: 5915294.692303463
Iteration: 2, Func. Count: 28, Neg. LLF: 143352781.05377582
Iteration: 3, Func. Count: 42, Neg. LLF: 5305728.269313855
Iteration: 4, Func. Count: 56, Neg. LLF: 146.7934558185217
Iteration: 5, Func. Count: 71, Neg. LLF: 138.0705013893375
Iteration: 6, Func. Count: 85, Neg. LLF: 99.76652472957059
Iteration: 7, Func. Count: 99, Neg. LLF: 89.53262218867718
Iteration: 8, Func. Count: 112, Neg. LLF: 96.76158570113907
Iteration: 9, Func. Count: 126, Neg. LLF: 103.65861187778292
Iteration: 10, Func. Count: 140, Neg. LLF: 88.06025644232027
Iteration: 11, Func. Count: 153, Neg. LLF: 91.08387941574149
Iteration: 12, Func. Count: 167, Neg. LLF: 87.95735548383317
Iteration: 13, Func. Count: 180, Neg. LLF: 87.85724020276457
Iteration: 14, Func. Count: 193, Neg. LLF: 87.83347802505807
Iteration: 15, Func. Count: 206, Neg. LLF: 87.80889707087056
Iteration: 16, Func. Count: 219, Neg. LLF: 87.77717953170493
Iteration: 17, Func. Count: 232, Neg. LLF: 87.76094000120328
Iteration: 18, Func. Count: 245, Neg. LLF: 87.7419417823681
Iteration: 19, Func. Count: 258, Neg. LLF: 87.73617842489203
Iteration: 20, Func. Count: 271, Neg. LLF: 87.73494597762539
Iteration: 21, Func. Count: 284, Neg. LLF: 87.73466144182436
Iteration: 22, Func. Count: 297, Neg. LLF: 87.73464618450436
Iteration: 23, Func. Count: 310, Neg. LLF: 87.7346379815563
Iteration: 24, Func. Count: 322, Neg. LLF: 87.73463795087748
Optimization terminated successfully (Exit mode 0)
Current function value: 87.7346379815563
Iterations: 24
Function evaluations: 322
Gradient evaluations: 24
Iteration: 1, Func. Count: 7, Neg. LLF: 105.5748475608591
Iteration: 2, Func. Count: 15, Neg. LLF: 264.28232163604076
Iteration: 3, Func. Count: 22, Neg. LLF: 261.1109441916859
Iteration: 4, Func. Count: 29, Neg. LLF: 609.0461643351865
Iteration: 5, Func. Count: 36, Neg. LLF: 330.76616137242604
Iteration: 6, Func. Count: 43, Neg. LLF: 112.4972117297543
Iteration: 7, Func. Count: 50, Neg. LLF: 272.79721010929933
Iteration: 8, Func. Count: 57, Neg. LLF: 93.79192259169145
Iteration: 9, Func. Count: 64, Neg. LLF: 93.12845569861157
Iteration: 10, Func. Count: 71, Neg. LLF: 92.34523813068377
Iteration: 11, Func. Count: 77, Neg. LLF: 92.77761790241453
Iteration: 12, Func. Count: 84, Neg. LLF: 92.16712136507785
Iteration: 13, Func. Count: 90, Neg. LLF: 92.11350580818885
Iteration: 14, Func. Count: 96, Neg. LLF: 92.10309300288085
Iteration: 15, Func. Count: 102, Neg. LLF: 92.10082332951632
Iteration: 16, Func. Count: 108, Neg. LLF: 92.10001256523016
Iteration: 17, Func. Count: 114, Neg. LLF: 92.09937119221671
Iteration: 18, Func. Count: 120, Neg. LLF: 92.09909961730786
Iteration: 19, Func. Count: 126, Neg. LLF: 92.0990510321989
Iteration: 20, Func. Count: 132, Neg. LLF: 92.09904754744792
Iteration: 21, Func. Count: 137, Neg. LLF: 92.09904752937733
Optimization terminated successfully (Exit mode 0)
Current function value: 92.09904754744792
Iterations: 21
Function evaluations: 137
Gradient evaluations: 21
Iteration: 1, Func. Count: 8, Neg. LLF: 1542.8039363253356
Iteration: 2, Func. Count: 16, Neg. LLF: 512.3978694879089
Iteration: 3, Func. Count: 24, Neg. LLF: 144.42033136580037
Iteration: 4, Func. Count: 33, Neg. LLF: 92.90912792243424
Iteration: 5, Func. Count: 41, Neg. LLF: 282.1165232186181
Iteration: 6, Func. Count: 50, Neg. LLF: 93.39261000673993
Iteration: 7, Func. Count: 58, Neg. LLF: 91.5370745923977
Iteration: 8, Func. Count: 65, Neg. LLF: 91.52948797676837
Iteration: 9, Func. Count: 72, Neg. LLF: 91.51945069237415
Iteration: 10, Func. Count: 79, Neg. LLF: 91.51862812048874
Iteration: 11, Func. Count: 86, Neg. LLF: 91.51859460096139
Iteration: 12, Func. Count: 92, Neg. LLF: 91.5185945622623
Optimization terminated successfully (Exit mode 0)
Current function value: 91.51859460096139
Iterations: 12
Function evaluations: 92
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 274.08533825421756
Iteration: 2, Func. Count: 18, Neg. LLF: 2372.9328594857407
Iteration: 3, Func. Count: 27, Neg. LLF: 109.61929021785562
Iteration: 4, Func. Count: 36, Neg. LLF: 119.86509403022819
Iteration: 5, Func. Count: 45, Neg. LLF: 106.57092709799332
Iteration: 6, Func. Count: 54, Neg. LLF: 92.44509290068025
Iteration: 7, Func. Count: 63, Neg. LLF: 91.54527569311098
Iteration: 8, Func. Count: 71, Neg. LLF: 91.80780211357892
Iteration: 9, Func. Count: 80, Neg. LLF: 91.4900814663322
Iteration: 10, Func. Count: 89, Neg. LLF: 91.3964173867562
Iteration: 11, Func. Count: 97, Neg. LLF: 91.39415583834959
Iteration: 12, Func. Count: 105, Neg. LLF: 91.3936482358392
Iteration: 13, Func. Count: 113, Neg. LLF: 91.38959468288033
Iteration: 14, Func. Count: 121, Neg. LLF: 91.38705529055092
Iteration: 15, Func. Count: 129, Neg. LLF: 91.38645823624869
Iteration: 16, Func. Count: 137, Neg. LLF: 91.38665469934013
Iteration: 17, Func. Count: 146, Neg. LLF: 91.38614596872851
Iteration: 18, Func. Count: 154, Neg. LLF: 91.38614398994446
Iteration: 19, Func. Count: 162, Neg. LLF: 91.38614346851598
Optimization terminated successfully (Exit mode 0)
Current function value: 91.38614346851598
Iterations: 19
Function evaluations: 162
Gradient evaluations: 19
Iteration: 1, Func. Count: 10, Neg. LLF: 2426.0242255136654
Iteration: 2, Func. Count: 20, Neg. LLF: 1881.440020347893
Iteration: 3, Func. Count: 30, Neg. LLF: 2408.5512689561365
Iteration: 4, Func. Count: 40, Neg. LLF: 445.3762086520978
Iteration: 5, Func. Count: 50, Neg. LLF: 96.65464000269915
Iteration: 6, Func. Count: 60, Neg. LLF: 93.6154229957096
Iteration: 7, Func. Count: 70, Neg. LLF: 93.66722447348992
Iteration: 8, Func. Count: 80, Neg. LLF: 93.26753853918333
Iteration: 9, Func. Count: 90, Neg. LLF: 90.2809065771914
Iteration: 10, Func. Count: 99, Neg. LLF: 90.30541683946129
Iteration: 11, Func. Count: 109, Neg. LLF: 155.45127936188598
Iteration: 12, Func. Count: 121, Neg. LLF: 98.25450480400825
Iteration: 13, Func. Count: 131, Neg. LLF: 89.84688919984599
Iteration: 14, Func. Count: 141, Neg. LLF: 89.7355886183085
Iteration: 15, Func. Count: 150, Neg. LLF: 89.72402200050526
Iteration: 16, Func. Count: 159, Neg. LLF: 89.69589182230696
Iteration: 17, Func. Count: 168, Neg. LLF: 89.68736900027014
Iteration: 18, Func. Count: 177, Neg. LLF: 89.67868802631432
Iteration: 19, Func. Count: 186, Neg. LLF: 89.6710774676953
Iteration: 20, Func. Count: 195, Neg. LLF: 89.66979864456175
Iteration: 21, Func. Count: 204, Neg. LLF: 89.66970591050725
Iteration: 22, Func. Count: 213, Neg. LLF: 89.6697041755807
Iteration: 23, Func. Count: 221, Neg. LLF: 89.66970416144748
Optimization terminated successfully (Exit mode 0)
Current function value: 89.6697041755807
Iterations: 23
Function evaluations: 221
Gradient evaluations: 23
Iteration: 1, Func. Count: 11, Neg. LLF: 241.05164181828678
Iteration: 2, Func. Count: 22, Neg. LLF: 1961.7758443747666
Iteration: 3, Func. Count: 33, Neg. LLF: 7587.684180687138
Iteration: 4, Func. Count: 44, Neg. LLF: 1011.1926397470517
Iteration: 5, Func. Count: 55, Neg. LLF: 98.26931059110912
Iteration: 6, Func. Count: 66, Neg. LLF: 93.52776053628645
Iteration: 7, Func. Count: 77, Neg. LLF: 93.40869328793083
Iteration: 8, Func. Count: 88, Neg. LLF: 92.6836059223231
Iteration: 9, Func. Count: 99, Neg. LLF: 100.33762548628235
Iteration: 10, Func. Count: 110, Neg. LLF: 91.7824181811721
Iteration: 11, Func. Count: 121, Neg. LLF: 90.25760645111791
Iteration: 12, Func. Count: 132, Neg. LLF: 89.86651369620942
Iteration: 13, Func. Count: 142, Neg. LLF: 93.4540122797636
Iteration: 14, Func. Count: 154, Neg. LLF: 90.90229065395316
Iteration: 15, Func. Count: 165, Neg. LLF: 89.70653197338203
Iteration: 16, Func. Count: 176, Neg. LLF: 89.67659244250335
Iteration: 17, Func. Count: 186, Neg. LLF: 89.67229661019154
Iteration: 18, Func. Count: 196, Neg. LLF: 89.65715026548695
Iteration: 19, Func. Count: 206, Neg. LLF: 89.64860995027566
Iteration: 20, Func. Count: 216, Neg. LLF: 89.64716066279932
Iteration: 21, Func. Count: 226, Neg. LLF: 89.64713037653773
Iteration: 22, Func. Count: 236, Neg. LLF: 89.64712955080294
Optimization terminated successfully (Exit mode 0)
Current function value: 89.64712955080294
Iterations: 22
Function evaluations: 236
Gradient evaluations: 22
Iteration: 1, Func. Count: 8, Neg. LLF: 103.99251638213879
Iteration: 2, Func. Count: 17, Neg. LLF: 1614.2045726794458
Iteration: 3, Func. Count: 25, Neg. LLF: 232.1461394220229
Iteration: 4, Func. Count: 33, Neg. LLF: 343.9755428122229
Iteration: 5, Func. Count: 41, Neg. LLF: 103.96961910604664
Iteration: 6, Func. Count: 49, Neg. LLF: 104.63575747652057
Iteration: 7, Func. Count: 57, Neg. LLF: 107.41548197030927
Iteration: 8, Func. Count: 65, Neg. LLF: 107.03916696134044
Iteration: 9, Func. Count: 73, Neg. LLF: 102.9783042211682
Iteration: 10, Func. Count: 81, Neg. LLF: 100.02114773105022
Iteration: 11, Func. Count: 89, Neg. LLF: 91.57660970198428
Iteration: 12, Func. Count: 97, Neg. LLF: 90.13636896468607
Iteration: 13, Func. Count: 104, Neg. LLF: 90.00186746248735
Iteration: 14, Func. Count: 111, Neg. LLF: 90.24717463002763
Iteration: 15, Func. Count: 119, Neg. LLF: 89.90081080912812
Iteration: 16, Func. Count: 126, Neg. LLF: 89.89596255616222
Iteration: 17, Func. Count: 133, Neg. LLF: 89.89494326977787
Iteration: 18, Func. Count: 140, Neg. LLF: 89.89483321862363
Iteration: 19, Func. Count: 147, Neg. LLF: 89.89482250663929
Iteration: 20, Func. Count: 153, Neg. LLF: 89.89482248045923
Optimization terminated successfully (Exit mode 0)
Current function value: 89.89482250663929
Iterations: 20
Function evaluations: 153
Gradient evaluations: 20
Iteration: 1, Func. Count: 9, Neg. LLF: 152.3745596554353
Iteration: 2, Func. Count: 22, Neg. LLF: 6142887.282652949
Iteration: 3, Func. Count: 31, Neg. LLF: 227.46022424546928
Iteration: 4, Func. Count: 40, Neg. LLF: 95.36154404721081
Iteration: 5, Func. Count: 49, Neg. LLF: 89.13862253959205
Iteration: 6, Func. Count: 57, Neg. LLF: 89.12819336859978
Iteration: 7, Func. Count: 65, Neg. LLF: 89.12746420432563
Iteration: 8, Func. Count: 73, Neg. LLF: 89.12693271448556
Iteration: 9, Func. Count: 81, Neg. LLF: 89.12683533326998
Iteration: 10, Func. Count: 89, Neg. LLF: 89.12675739177
Iteration: 11, Func. Count: 97, Neg. LLF: 89.12675226097814
Iteration: 12, Func. Count: 104, Neg. LLF: 89.12675219710854
Optimization terminated successfully (Exit mode 0)
Current function value: 89.12675226097814
Iterations: 12
Function evaluations: 104
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 145.27774744343634
Iteration: 2, Func. Count: 21, Neg. LLF: 606.75290761018
Iteration: 3, Func. Count: 31, Neg. LLF: 107.69639300438565
Iteration: 4, Func. Count: 41, Neg. LLF: 124.95822767452846
Iteration: 5, Func. Count: 51, Neg. LLF: 94.08599582205713
Iteration: 6, Func. Count: 61, Neg. LLF: 89.39667825715797
Iteration: 7, Func. Count: 70, Neg. LLF: 96.31481355241603
Iteration: 8, Func. Count: 80, Neg. LLF: 89.29232108581483
Iteration: 9, Func. Count: 89, Neg. LLF: 89.1845679993461
Iteration: 10, Func. Count: 98, Neg. LLF: 89.16441800980371
Iteration: 11, Func. Count: 107, Neg. LLF: 89.14488644233742
Iteration: 12, Func. Count: 116, Neg. LLF: 89.13174329734116
Iteration: 13, Func. Count: 125, Neg. LLF: 89.12707881607865
Iteration: 14, Func. Count: 134, Neg. LLF: 89.12678356537972
Iteration: 15, Func. Count: 143, Neg. LLF: 89.12675344107173
Iteration: 16, Func. Count: 152, Neg. LLF: 89.12675201875953
Iteration: 17, Func. Count: 160, Neg. LLF: 89.12675203530269
Optimization terminated successfully (Exit mode 0)
Current function value: 89.12675201875953
Iterations: 17
Function evaluations: 160
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 1157820.8225810407
Iteration: 2, Func. Count: 22, Neg. LLF: 8222.689456658265
Iteration: 3, Func. Count: 33, Neg. LLF: 159.8045622610692
Iteration: 4, Func. Count: 45, Neg. LLF: 113.36894856036147
Iteration: 5, Func. Count: 56, Neg. LLF: 107.83418320238934
Iteration: 6, Func. Count: 67, Neg. LLF: 90.9267075400118
Iteration: 7, Func. Count: 77, Neg. LLF: 95.91737215038883
Iteration: 8, Func. Count: 88, Neg. LLF: 95.31756195381446
Iteration: 9, Func. Count: 101, Neg. LLF: 93.05040023382499
Iteration: 10, Func. Count: 112, Neg. LLF: 90.39918200669943
Iteration: 11, Func. Count: 123, Neg. LLF: 90.01823522170197
Iteration: 12, Func. Count: 134, Neg. LLF: 90.20076354431907
Iteration: 13, Func. Count: 145, Neg. LLF: 89.71014699800484
Iteration: 14, Func. Count: 155, Neg. LLF: 89.70354497956198
Iteration: 15, Func. Count: 166, Neg. LLF: 89.67752823867811
Iteration: 16, Func. Count: 176, Neg. LLF: 89.67083124137943
Iteration: 17, Func. Count: 186, Neg. LLF: 89.67001285345695
Iteration: 18, Func. Count: 196, Neg. LLF: 89.6697121376076
Iteration: 19, Func. Count: 206, Neg. LLF: 89.66970433141057
Iteration: 20, Func. Count: 215, Neg. LLF: 89.66970431721614
Optimization terminated successfully (Exit mode 0)
Current function value: 89.66970433141057
Iterations: 20
Function evaluations: 215
Gradient evaluations: 20
Iteration: 1, Func. Count: 12, Neg. LLF: 377.73551767916234
Iteration: 2, Func. Count: 24, Neg. LLF: 1552.6899143568191
Iteration: 3, Func. Count: 36, Neg. LLF: 4648.34169307774
Iteration: 4, Func. Count: 48, Neg. LLF: 97.82578710154561
Iteration: 5, Func. Count: 60, Neg. LLF: 93.02208490858715
Iteration: 6, Func. Count: 72, Neg. LLF: 90.53474791172036
Iteration: 7, Func. Count: 84, Neg. LLF: 89.59816794360164
Iteration: 8, Func. Count: 95, Neg. LLF: 89.40382498495177
Iteration: 9, Func. Count: 106, Neg. LLF: 89.24085452131247
Iteration: 10, Func. Count: 117, Neg. LLF: 89.32754277836325
Iteration: 11, Func. Count: 129, Neg. LLF: 89.18480834110316
Iteration: 12, Func. Count: 140, Neg. LLF: 89.15800702644349
Iteration: 13, Func. Count: 151, Neg. LLF: 89.13947350865152
Iteration: 14, Func. Count: 162, Neg. LLF: 89.12816684702689
Iteration: 15, Func. Count: 173, Neg. LLF: 89.12692166663975
Iteration: 16, Func. Count: 184, Neg. LLF: 89.12676471377542
Iteration: 17, Func. Count: 195, Neg. LLF: 89.1267521049931
Iteration: 18, Func. Count: 205, Neg. LLF: 89.12675218839011
Optimization terminated successfully (Exit mode 0)
Current function value: 89.1267521049931
Iterations: 18
Function evaluations: 205
Gradient evaluations: 18
Iteration: 1, Func. Count: 9, Neg. LLF: 98.07397261037958
Iteration: 2, Func. Count: 18, Neg. LLF: 1020.3058522068675
Iteration: 3, Func. Count: 27, Neg. LLF: 2404.041965274473
Iteration: 4, Func. Count: 36, Neg. LLF: 119.45106879940558
Iteration: 5, Func. Count: 46, Neg. LLF: 12200.038099803365
Iteration: 6, Func. Count: 55, Neg. LLF: 153.1577081534754
Iteration: 7, Func. Count: 64, Neg. LLF: 89.10487156175816
Iteration: 8, Func. Count: 72, Neg. LLF: 105.77243085617434
Iteration: 9, Func. Count: 82, Neg. LLF: 93.9037325124148
Iteration: 10, Func. Count: 91, Neg. LLF: 88.78609250522037
Iteration: 11, Func. Count: 99, Neg. LLF: 88.6663810024646
Iteration: 12, Func. Count: 107, Neg. LLF: 88.64947606116405
Iteration: 13, Func. Count: 115, Neg. LLF: 88.64618917823839
Iteration: 14, Func. Count: 123, Neg. LLF: 88.64414999616399
Iteration: 15, Func. Count: 131, Neg. LLF: 88.64225264257931
Iteration: 16, Func. Count: 139, Neg. LLF: 88.64170988129435
Iteration: 17, Func. Count: 147, Neg. LLF: 88.6415186960048
Iteration: 18, Func. Count: 155, Neg. LLF: 88.64147081590916
Iteration: 19, Func. Count: 163, Neg. LLF: 88.64146157529966
Iteration: 20, Func. Count: 171, Neg. LLF: 88.6414607598694
Optimization terminated successfully (Exit mode 0)
Current function value: 88.6414607598694
Iterations: 20
Function evaluations: 171
Gradient evaluations: 20
Iteration: 1, Func. Count: 10, Neg. LLF: 150.69538233050147
Iteration: 2, Func. Count: 23, Neg. LLF: 5047154.391868058
Iteration: 3, Func. Count: 33, Neg. LLF: 237.80084175984211
Iteration: 4, Func. Count: 43, Neg. LLF: 95.74943730051451
Iteration: 5, Func. Count: 53, Neg. LLF: 100.96109911198798
Iteration: 6, Func. Count: 63, Neg. LLF: 90.12452684255888
Iteration: 7, Func. Count: 73, Neg. LLF: 88.05709021754662
Iteration: 8, Func. Count: 82, Neg. LLF: 100.20445953527052
Iteration: 9, Func. Count: 92, Neg. LLF: 88.02483663391544
Iteration: 10, Func. Count: 101, Neg. LLF: 88.01817527176881
Iteration: 11, Func. Count: 110, Neg. LLF: 88.01578332721513
Iteration: 12, Func. Count: 119, Neg. LLF: 88.01338289842963
Iteration: 13, Func. Count: 128, Neg. LLF: 88.01307031679005
Iteration: 14, Func. Count: 137, Neg. LLF: 88.01305354422493
Iteration: 15, Func. Count: 145, Neg. LLF: 88.01305350314722
Optimization terminated successfully (Exit mode 0)
Current function value: 88.01305354422493
Iterations: 15
Function evaluations: 145
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 4413435.5708364295
Iteration: 2, Func. Count: 22, Neg. LLF: 47340092.156697825
Iteration: 3, Func. Count: 34, Neg. LLF: 195.75654823521364
Iteration: 4, Func. Count: 46, Neg. LLF: 117.2474837277921
Iteration: 5, Func. Count: 57, Neg. LLF: 110.01491355430962
Iteration: 6, Func. Count: 68, Neg. LLF: 97.35110248106749
Iteration: 7, Func. Count: 79, Neg. LLF: 90.11772024220427
Iteration: 8, Func. Count: 90, Neg. LLF: 93.06746607393596
Iteration: 9, Func. Count: 101, Neg. LLF: 89.17663295461064
Iteration: 10, Func. Count: 112, Neg. LLF: 88.07259761961353
Iteration: 11, Func. Count: 122, Neg. LLF: 88.05723455583338
Iteration: 12, Func. Count: 132, Neg. LLF: 88.01933236031317
Iteration: 13, Func. Count: 142, Neg. LLF: 88.01464449892603
Iteration: 14, Func. Count: 152, Neg. LLF: 88.01352824147466
Iteration: 15, Func. Count: 162, Neg. LLF: 88.01333402720414
Iteration: 16, Func. Count: 172, Neg. LLF: 88.01313932958374
Iteration: 17, Func. Count: 182, Neg. LLF: 88.01306743488986
Iteration: 18, Func. Count: 192, Neg. LLF: 88.01305408403609
Iteration: 19, Func. Count: 202, Neg. LLF: 88.01305334923556
Optimization terminated successfully (Exit mode 0)
Current function value: 88.01305334923556
Iterations: 19
Function evaluations: 202
Gradient evaluations: 19
Iteration: 1, Func. Count: 12, Neg. LLF: 4516573.515442753
Iteration: 2, Func. Count: 24, Neg. LLF: 53052978.41716554
Iteration: 3, Func. Count: 37, Neg. LLF: 99.27441109257968
Iteration: 4, Func. Count: 50, Neg. LLF: 372.13911278377253
Iteration: 5, Func. Count: 63, Neg. LLF: 96.51434989900503
Iteration: 6, Func. Count: 75, Neg. LLF: 101.74016207242244
Iteration: 7, Func. Count: 87, Neg. LLF: 89.75003994333171
Iteration: 8, Func. Count: 99, Neg. LLF: 91.32890259683805
Iteration: 9, Func. Count: 111, Neg. LLF: 88.91005726954828
Iteration: 10, Func. Count: 123, Neg. LLF: 88.25211249189077
Iteration: 11, Func. Count: 134, Neg. LLF: 88.15835263096692
Iteration: 12, Func. Count: 145, Neg. LLF: 88.57963965183659
Iteration: 13, Func. Count: 157, Neg. LLF: 88.06291094078875
Iteration: 14, Func. Count: 168, Neg. LLF: 88.04365171717077
Iteration: 15, Func. Count: 179, Neg. LLF: 88.02574394557065
Iteration: 16, Func. Count: 190, Neg. LLF: 88.01742711458779
Iteration: 17, Func. Count: 201, Neg. LLF: 88.01321802738758
Iteration: 18, Func. Count: 212, Neg. LLF: 88.01309795835459
Iteration: 19, Func. Count: 223, Neg. LLF: 88.0130676660323
Iteration: 20, Func. Count: 234, Neg. LLF: 88.0130578683057
Iteration: 21, Func. Count: 245, Neg. LLF: 88.01305362584513
Iteration: 22, Func. Count: 255, Neg. LLF: 88.01305363069012
Optimization terminated successfully (Exit mode 0)
Current function value: 88.01305362584513
Iterations: 22
Function evaluations: 255
Gradient evaluations: 22
Iteration: 1, Func. Count: 13, Neg. LLF: 7423008.3474919805
Iteration: 2, Func. Count: 26, Neg. LLF: 37257360.715474464
Iteration: 3, Func. Count: 39, Neg. LLF: 116.99216676748813
Iteration: 4, Func. Count: 53, Neg. LLF: 113.54642802308109
Iteration: 5, Func. Count: 66, Neg. LLF: 120.87889802558831
Iteration: 6, Func. Count: 79, Neg. LLF: 91.98933334438921
Iteration: 7, Func. Count: 92, Neg. LLF: 88.26191492619306
Iteration: 8, Func. Count: 104, Neg. LLF: 92.39193739745106
Iteration: 9, Func. Count: 117, Neg. LLF: 90.01958904232023
Iteration: 10, Func. Count: 130, Neg. LLF: 88.04747822937463
Iteration: 11, Func. Count: 142, Neg. LLF: 88.02782845563726
Iteration: 12, Func. Count: 154, Neg. LLF: 88.02137554102387
Iteration: 13, Func. Count: 166, Neg. LLF: 88.01546952713011
Iteration: 14, Func. Count: 178, Neg. LLF: 88.01340556127026
Iteration: 15, Func. Count: 190, Neg. LLF: 88.01321361363685
Iteration: 16, Func. Count: 202, Neg. LLF: 88.01308499432177
Iteration: 17, Func. Count: 214, Neg. LLF: 88.01305615330872
Iteration: 18, Func. Count: 226, Neg. LLF: 88.01305338374141
Iteration: 19, Func. Count: 237, Neg. LLF: 88.01305336624226
Optimization terminated successfully (Exit mode 0)
Current function value: 88.01305338374141
Iterations: 19
Function evaluations: 237
Gradient evaluations: 19
Iteration: 1, Func. Count: 10, Neg. LLF: 102.07002519279284
Iteration: 2, Func. Count: 21, Neg. LLF: 197594344.27236095
Iteration: 3, Func. Count: 31, Neg. LLF: 235599.4861183249
Iteration: 4, Func. Count: 41, Neg. LLF: 228333.5969578374
Iteration: 5, Func. Count: 51, Neg. LLF: 128.795061680202
Iteration: 6, Func. Count: 61, Neg. LLF: 92.37909691134662
Iteration: 7, Func. Count: 71, Neg. LLF: 392.1260558581368
Iteration: 8, Func. Count: 81, Neg. LLF: 93.29281825960005
Iteration: 9, Func. Count: 91, Neg. LLF: 41918.121251311626
Iteration: 10, Func. Count: 101, Neg. LLF: 88.61809559748133
Iteration: 11, Func. Count: 110, Neg. LLF: 88.42551960723061
Iteration: 12, Func. Count: 119, Neg. LLF: 88.42129499027465
Iteration: 13, Func. Count: 128, Neg. LLF: 88.42037746218277
Iteration: 14, Func. Count: 137, Neg. LLF: 88.42006748406389
Iteration: 15, Func. Count: 146, Neg. LLF: 88.4199563819551
Iteration: 16, Func. Count: 155, Neg. LLF: 88.41981146838013
Iteration: 17, Func. Count: 164, Neg. LLF: 88.4196971931425
Iteration: 18, Func. Count: 173, Neg. LLF: 88.41966498599521
Iteration: 19, Func. Count: 182, Neg. LLF: 88.41966018881007
Iteration: 20, Func. Count: 190, Neg. LLF: 88.41966017613032
Optimization terminated successfully (Exit mode 0)
Current function value: 88.41966018881007
Iterations: 20
Function evaluations: 190
Gradient evaluations: 20
Iteration: 1, Func. Count: 11, Neg. LLF: 158.60638294810983
Iteration: 2, Func. Count: 25, Neg. LLF: 4520758.807196396
Iteration: 3, Func. Count: 36, Neg. LLF: 212.72600508550863
Iteration: 4, Func. Count: 47, Neg. LLF: 107.95809043001898
Iteration: 5, Func. Count: 58, Neg. LLF: 88.80985731185268
Iteration: 6, Func. Count: 68, Neg. LLF: 89.38597830189313
Iteration: 7, Func. Count: 79, Neg. LLF: 100.62489591309281
Iteration: 8, Func. Count: 90, Neg. LLF: 88.3261559931224
Iteration: 9, Func. Count: 101, Neg. LLF: 89.31506891386205
Iteration: 10, Func. Count: 112, Neg. LLF: 88.04208653383706
Iteration: 11, Func. Count: 123, Neg. LLF: 89.47540119864082
Iteration: 12, Func. Count: 134, Neg. LLF: 87.95939481532052
Iteration: 13, Func. Count: 144, Neg. LLF: 87.95923235799157
Iteration: 14, Func. Count: 154, Neg. LLF: 87.9591544122301
Iteration: 15, Func. Count: 164, Neg. LLF: 87.95890207639887
Iteration: 16, Func. Count: 174, Neg. LLF: 87.95878579973264
Iteration: 17, Func. Count: 184, Neg. LLF: 87.95874682391245
Iteration: 18, Func. Count: 194, Neg. LLF: 87.9587440592252
Iteration: 19, Func. Count: 203, Neg. LLF: 87.95874400377282
Optimization terminated successfully (Exit mode 0)
Current function value: 87.9587440592252
Iterations: 19
Function evaluations: 203
Gradient evaluations: 19
Iteration: 1, Func. Count: 12, Neg. LLF: 3419293.2590576857
Iteration: 2, Func. Count: 24, Neg. LLF: 46109286.99610992
Iteration: 3, Func. Count: 36, Neg. LLF: 235.59005861931269
Iteration: 4, Func. Count: 49, Neg. LLF: 129.38694679300878
Iteration: 5, Func. Count: 61, Neg. LLF: 433.6644126981239
Iteration: 6, Func. Count: 73, Neg. LLF: 95.9181865368891
Iteration: 7, Func. Count: 85, Neg. LLF: 91.4561796393017
Iteration: 8, Func. Count: 97, Neg. LLF: 90.78231583990794
Iteration: 9, Func. Count: 109, Neg. LLF: 88.13976956897149
Iteration: 10, Func. Count: 120, Neg. LLF: 88.48921083910878
Iteration: 11, Func. Count: 132, Neg. LLF: 88.00564420405547
Iteration: 12, Func. Count: 143, Neg. LLF: 87.97389896269705
Iteration: 13, Func. Count: 154, Neg. LLF: 87.96587879384359
Iteration: 14, Func. Count: 165, Neg. LLF: 87.96447818059812
Iteration: 15, Func. Count: 176, Neg. LLF: 87.96298589958049
Iteration: 16, Func. Count: 187, Neg. LLF: 87.96166906925441
Iteration: 17, Func. Count: 198, Neg. LLF: 87.9601155520693
Iteration: 18, Func. Count: 209, Neg. LLF: 87.95907199003022
Iteration: 19, Func. Count: 220, Neg. LLF: 87.95879165704203
Iteration: 20, Func. Count: 231, Neg. LLF: 87.95874592003983
Iteration: 21, Func. Count: 242, Neg. LLF: 87.9587441193557
Iteration: 22, Func. Count: 252, Neg. LLF: 87.95874408498722
Optimization terminated successfully (Exit mode 0)
Current function value: 87.9587441193557
Iterations: 22
Function evaluations: 252
Gradient evaluations: 22
Iteration: 1, Func. Count: 13, Neg. LLF: 5639700.336001887
Iteration: 2, Func. Count: 26, Neg. LLF: 207498857.97006345
Iteration: 3, Func. Count: 40, Neg. LLF: 5544239.55009223
Iteration: 4, Func. Count: 54, Neg. LLF: 92.92441713725185
Iteration: 5, Func. Count: 67, Neg. LLF: 106.75429845232786
Iteration: 6, Func. Count: 80, Neg. LLF: 106.12318370056451
Iteration: 7, Func. Count: 94, Neg. LLF: 91.91579709164463
Iteration: 8, Func. Count: 107, Neg. LLF: 89.94387007574063
Iteration: 9, Func. Count: 120, Neg. LLF: 92.29754967379448
Iteration: 10, Func. Count: 133, Neg. LLF: 88.25531798509161
Iteration: 11, Func. Count: 145, Neg. LLF: 88.18324492817871
Iteration: 12, Func. Count: 157, Neg. LLF: 88.43893521702232
Iteration: 13, Func. Count: 170, Neg. LLF: 88.08789316224738
Iteration: 14, Func. Count: 182, Neg. LLF: 88.05762026664497
Iteration: 15, Func. Count: 194, Neg. LLF: 88.04000021415148
Iteration: 16, Func. Count: 206, Neg. LLF: 88.02063585255938
Iteration: 17, Func. Count: 218, Neg. LLF: 88.01166179750949
Iteration: 18, Func. Count: 230, Neg. LLF: 87.97709149567048
Iteration: 19, Func. Count: 242, Neg. LLF: 87.96483248892237
Iteration: 20, Func. Count: 254, Neg. LLF: 87.95962370979376
Iteration: 21, Func. Count: 266, Neg. LLF: 87.95899528872182
Iteration: 22, Func. Count: 278, Neg. LLF: 87.95881465218345
Iteration: 23, Func. Count: 290, Neg. LLF: 87.95877039074233
Iteration: 24, Func. Count: 302, Neg. LLF: 87.95874535236698
Iteration: 25, Func. Count: 314, Neg. LLF: 87.95874417466884
Iteration: 26, Func. Count: 325, Neg. LLF: 87.95874416447371
Optimization terminated successfully (Exit mode 0)
Current function value: 87.95874417466884
Iterations: 26
Function evaluations: 325
Gradient evaluations: 26
Iteration: 1, Func. Count: 14, Neg. LLF: 4556006.483643222
Iteration: 2, Func. Count: 28, Neg. LLF: 34930114.978953354
Iteration: 3, Func. Count: 42, Neg. LLF: 5617572.031812421
Iteration: 4, Func. Count: 56, Neg. LLF: 193.09525895091755
Iteration: 5, Func. Count: 70, Neg. LLF: 92.27586361068356
Iteration: 6, Func. Count: 84, Neg. LLF: 90.19175680857009
Iteration: 7, Func. Count: 98, Neg. LLF: 102.83260977868309
Iteration: 8, Func. Count: 112, Neg. LLF: 94.87922406345021
Iteration: 9, Func. Count: 126, Neg. LLF: 108.53525305781858
Iteration: 10, Func. Count: 140, Neg. LLF: 89.72723219551087
Iteration: 11, Func. Count: 154, Neg. LLF: 89.0211598915038
Iteration: 12, Func. Count: 168, Neg. LLF: 88.30397558385935
Iteration: 13, Func. Count: 181, Neg. LLF: 88.21040292749582
Iteration: 14, Func. Count: 194, Neg. LLF: 88.24906007389622
Iteration: 15, Func. Count: 208, Neg. LLF: 88.1817484894175
Iteration: 16, Func. Count: 221, Neg. LLF: 88.17957689468047
Iteration: 17, Func. Count: 234, Neg. LLF: 88.17899052978906
Iteration: 18, Func. Count: 247, Neg. LLF: 88.17884813685328
Iteration: 19, Func. Count: 260, Neg. LLF: 88.17884546454331
Iteration: 20, Func. Count: 272, Neg. LLF: 88.17884556819276
Optimization terminated successfully (Exit mode 0)
Current function value: 88.17884546454331
Iterations: 20
Function evaluations: 272
Gradient evaluations: 20
Iteration: 1, Func. Count: 11, Neg. LLF: 108.90723591226097
Iteration: 2, Func. Count: 23, Neg. LLF: 195790084.21566752
Iteration: 3, Func. Count: 34, Neg. LLF: 1484813.5386379426
Iteration: 4, Func. Count: 45, Neg. LLF: 1379848.9064426906
Iteration: 5, Func. Count: 56, Neg. LLF: 183111.80781231547
Iteration: 6, Func. Count: 67, Neg. LLF: 94.06416306056117
Iteration: 7, Func. Count: 78, Neg. LLF: 92.0595799624032
Iteration: 8, Func. Count: 89, Neg. LLF: 97.39334317682659
Iteration: 9, Func. Count: 100, Neg. LLF: 106.74534442248739
Iteration: 10, Func. Count: 111, Neg. LLF: 88.28141685490827
Iteration: 11, Func. Count: 121, Neg. LLF: 87.7471741638109
Iteration: 12, Func. Count: 131, Neg. LLF: 87.84383434723574
Iteration: 13, Func. Count: 142, Neg. LLF: 87.60269432931904
Iteration: 14, Func. Count: 152, Neg. LLF: 87.54736560284233
Iteration: 15, Func. Count: 162, Neg. LLF: 87.55469066815992
Iteration: 16, Func. Count: 173, Neg. LLF: 87.48584071050553
Iteration: 17, Func. Count: 183, Neg. LLF: 87.47557215688694
Iteration: 18, Func. Count: 193, Neg. LLF: 87.47222471949524
Iteration: 19, Func. Count: 203, Neg. LLF: 87.47135764360534
Iteration: 20, Func. Count: 213, Neg. LLF: 87.47118160198649
Iteration: 21, Func. Count: 223, Neg. LLF: 87.47115418153109
Iteration: 22, Func. Count: 233, Neg. LLF: 87.47114500057342
Iteration: 23, Func. Count: 243, Neg. LLF: 87.47114435645383
Optimization terminated successfully (Exit mode 0)
Current function value: 87.47114435645383
Iterations: 23
Function evaluations: 243
Gradient evaluations: 23
Iteration: 1, Func. Count: 12, Neg. LLF: 159.23792842195695
Iteration: 2, Func. Count: 28, Neg. LLF: 4488134.033814238
Iteration: 3, Func. Count: 40, Neg. LLF: 142.65691113127332
Iteration: 4, Func. Count: 52, Neg. LLF: 125.18335252521632
Iteration: 5, Func. Count: 64, Neg. LLF: 94.52505423049845
Iteration: 6, Func. Count: 76, Neg. LLF: 95.13807396628927
Iteration: 7, Func. Count: 88, Neg. LLF: 92.60277278269382
Iteration: 8, Func. Count: 100, Neg. LLF: 88.0126246202656
Iteration: 9, Func. Count: 111, Neg. LLF: 88.23491578419228
Iteration: 10, Func. Count: 123, Neg. LLF: 88.45999987570586
Iteration: 11, Func. Count: 135, Neg. LLF: 87.65649906166968
Iteration: 12, Func. Count: 146, Neg. LLF: 87.61077281846627
Iteration: 13, Func. Count: 157, Neg. LLF: 87.603309075737
Iteration: 14, Func. Count: 168, Neg. LLF: 87.58659673464722
Iteration: 15, Func. Count: 179, Neg. LLF: 87.54411036871937
Iteration: 16, Func. Count: 190, Neg. LLF: 87.51649713286734
Iteration: 17, Func. Count: 201, Neg. LLF: 87.48159229472597
Iteration: 18, Func. Count: 212, Neg. LLF: 87.47447977328284
Iteration: 19, Func. Count: 223, Neg. LLF: 87.47226196551625
Iteration: 20, Func. Count: 234, Neg. LLF: 87.47135913570776
Iteration: 21, Func. Count: 245, Neg. LLF: 87.47116022421687
Iteration: 22, Func. Count: 256, Neg. LLF: 87.47114895720568
Iteration: 23, Func. Count: 267, Neg. LLF: 87.47114539338136
Iteration: 24, Func. Count: 278, Neg. LLF: 87.47114433455796
Iteration: 25, Func. Count: 288, Neg. LLF: 87.47114429763225
Optimization terminated successfully (Exit mode 0)
Current function value: 87.47114433455796
Iterations: 25
Function evaluations: 288
Gradient evaluations: 25
Iteration: 1, Func. Count: 13, Neg. LLF: 3870802.0078414613
Iteration: 2, Func. Count: 26, Neg. LLF: 52846150.43607629
Iteration: 3, Func. Count: 39, Neg. LLF: 262.41353104538416
Iteration: 4, Func. Count: 53, Neg. LLF: 141.3788350155231
Iteration: 5, Func. Count: 66, Neg. LLF: 558.8651553431278
Iteration: 6, Func. Count: 79, Neg. LLF: 110.17701602916068
Iteration: 7, Func. Count: 92, Neg. LLF: 92.03840911174474
Iteration: 8, Func. Count: 105, Neg. LLF: 96.2303205076401
Iteration: 9, Func. Count: 118, Neg. LLF: 88.08014804859044
Iteration: 10, Func. Count: 130, Neg. LLF: 91.61294428793273
Iteration: 11, Func. Count: 143, Neg. LLF: 89.94208123293342
Iteration: 12, Func. Count: 156, Neg. LLF: 87.82057584792936
Iteration: 13, Func. Count: 168, Neg. LLF: 88.48005636459351
Iteration: 14, Func. Count: 181, Neg. LLF: 87.68964340583234
Iteration: 15, Func. Count: 193, Neg. LLF: 87.64563248772592
Iteration: 16, Func. Count: 205, Neg. LLF: 87.63162371917798
Iteration: 17, Func. Count: 217, Neg. LLF: 87.62059287188542
Iteration: 18, Func. Count: 229, Neg. LLF: 87.5985230947331
Iteration: 19, Func. Count: 241, Neg. LLF: 87.56311758570475
Iteration: 20, Func. Count: 253, Neg. LLF: 87.53189964876367
Iteration: 21, Func. Count: 265, Neg. LLF: 87.48919290122653
Iteration: 22, Func. Count: 277, Neg. LLF: 87.47568387336437
Iteration: 23, Func. Count: 289, Neg. LLF: 87.4712660040255
Iteration: 24, Func. Count: 301, Neg. LLF: 87.47119480606945
Iteration: 25, Func. Count: 313, Neg. LLF: 87.47114781086083
Iteration: 26, Func. Count: 325, Neg. LLF: 87.47114591808263
Iteration: 27, Func. Count: 337, Neg. LLF: 87.47114435913309
Iteration: 28, Func. Count: 348, Neg. LLF: 87.47114441207326
Optimization terminated successfully (Exit mode 0)
Current function value: 87.47114435913309
Iterations: 28
Function evaluations: 348
Gradient evaluations: 28
Iteration: 1, Func. Count: 14, Neg. LLF: 4950332.54650657
Iteration: 2, Func. Count: 28, Neg. LLF: 206763032.35436523
Iteration: 3, Func. Count: 43, Neg. LLF: 6164133.149500104
Iteration: 4, Func. Count: 57, Neg. LLF: 95.44388170517799
Iteration: 5, Func. Count: 71, Neg. LLF: 104.6537852678983
Iteration: 6, Func. Count: 85, Neg. LLF: 92.96282413573057
Iteration: 7, Func. Count: 99, Neg. LLF: 89.79435718320268
Iteration: 8, Func. Count: 113, Neg. LLF: 89.00749018181234
Iteration: 9, Func. Count: 127, Neg. LLF: 88.18167581452981
Iteration: 10, Func. Count: 140, Neg. LLF: 89.28375549048023
Iteration: 11, Func. Count: 154, Neg. LLF: 88.02430867051044
Iteration: 12, Func. Count: 168, Neg. LLF: 88.21511419721655
Iteration: 13, Func. Count: 182, Neg. LLF: 87.80282571007764
Iteration: 14, Func. Count: 195, Neg. LLF: 87.73005187901136
Iteration: 15, Func. Count: 208, Neg. LLF: 87.65848916676975
Iteration: 16, Func. Count: 221, Neg. LLF: 93.57880500962898
Iteration: 17, Func. Count: 235, Neg. LLF: 94.01053956701813
Iteration: 18, Func. Count: 249, Neg. LLF: 93.66320465930657
Iteration: 19, Func. Count: 263, Neg. LLF: 88.15336989651358
Iteration: 20, Func. Count: 277, Neg. LLF: 87.52138447296491
Iteration: 21, Func. Count: 291, Neg. LLF: 87.48862941426852
Iteration: 22, Func. Count: 305, Neg. LLF: 87.47600292125277
Iteration: 23, Func. Count: 318, Neg. LLF: 87.4717187632561
Iteration: 24, Func. Count: 331, Neg. LLF: 87.47125191333113
Iteration: 25, Func. Count: 344, Neg. LLF: 87.47117562004799
Iteration: 26, Func. Count: 357, Neg. LLF: 87.47115014634423
Iteration: 27, Func. Count: 370, Neg. LLF: 87.47114571206795
Iteration: 28, Func. Count: 383, Neg. LLF: 87.47114446893391
Iteration: 29, Func. Count: 395, Neg. LLF: 87.47114454885194
Optimization terminated successfully (Exit mode 0)
Current function value: 87.47114446893391
Iterations: 29
Function evaluations: 395
Gradient evaluations: 29
Iteration: 1, Func. Count: 15, Neg. LLF: 4496374.558029051
Iteration: 2, Func. Count: 30, Neg. LLF: 67098776.96565011
Iteration: 3, Func. Count: 46, Neg. LLF: 5643730.722744073
Iteration: 4, Func. Count: 61, Neg. LLF: 266.24164428322774
Iteration: 5, Func. Count: 76, Neg. LLF: 90.68790298209595
Iteration: 6, Func. Count: 91, Neg. LLF: 92.1766806201457
Iteration: 7, Func. Count: 106, Neg. LLF: 144.9803617861033
Iteration: 8, Func. Count: 121, Neg. LLF: 91.33816277007723
Iteration: 9, Func. Count: 137, Neg. LLF: 91.3417413509677
Iteration: 10, Func. Count: 152, Neg. LLF: 89.53492516253382
Iteration: 11, Func. Count: 167, Neg. LLF: 88.10694336921061
Iteration: 12, Func. Count: 181, Neg. LLF: 87.97358686643364
Iteration: 13, Func. Count: 195, Neg. LLF: 87.82216420701761
Iteration: 14, Func. Count: 209, Neg. LLF: 87.76698911712514
Iteration: 15, Func. Count: 223, Neg. LLF: 87.61574161709842
Iteration: 16, Func. Count: 237, Neg. LLF: 87.52438600330953
Iteration: 17, Func. Count: 251, Neg. LLF: 87.64766695238957
Iteration: 18, Func. Count: 266, Neg. LLF: 87.49317935655229
Iteration: 19, Func. Count: 281, Neg. LLF: 87.49780824225232
Iteration: 20, Func. Count: 296, Neg. LLF: 87.47142697996023
Iteration: 21, Func. Count: 310, Neg. LLF: 87.4711940811735
Iteration: 22, Func. Count: 324, Neg. LLF: 87.47115185380991
Iteration: 23, Func. Count: 338, Neg. LLF: 87.47114553522174
Iteration: 24, Func. Count: 352, Neg. LLF: 87.47114448250638
Iteration: 25, Func. Count: 365, Neg. LLF: 87.47114446081369
Optimization terminated successfully (Exit mode 0)
Current function value: 87.47114448250638
Iterations: 25
Function evaluations: 365
Gradient evaluations: 25
Iteration: 1, Func. Count: 8, Neg. LLF: 108.54628844653936
Iteration: 2, Func. Count: 17, Neg. LLF: 144.30749866526628
Iteration: 3, Func. Count: 25, Neg. LLF: 452.5808356285715
Iteration: 4, Func. Count: 33, Neg. LLF: 111.96848487182194
Iteration: 5, Func. Count: 41, Neg. LLF: 367.38624401320294
Iteration: 6, Func. Count: 49, Neg. LLF: 115.7981390473139
Iteration: 7, Func. Count: 57, Neg. LLF: 120.59305736043413
Iteration: 8, Func. Count: 65, Neg. LLF: 106.38776411100245
Iteration: 9, Func. Count: 73, Neg. LLF: 121.96449777136748
Iteration: 10, Func. Count: 81, Neg. LLF: 101.72477722771652
Iteration: 11, Func. Count: 89, Neg. LLF: 101.65003166291557
Iteration: 12, Func. Count: 97, Neg. LLF: 98.9756101462538
Iteration: 13, Func. Count: 105, Neg. LLF: 94.7628266981874
Iteration: 14, Func. Count: 113, Neg. LLF: 92.68895229749313
Iteration: 15, Func. Count: 121, Neg. LLF: 92.2350698829365
Iteration: 16, Func. Count: 129, Neg. LLF: 91.88736071957769
Iteration: 17, Func. Count: 136, Neg. LLF: 91.80306240702716
Iteration: 18, Func. Count: 143, Neg. LLF: 91.77398127894708
Iteration: 19, Func. Count: 150, Neg. LLF: 91.73315556425321
Iteration: 20, Func. Count: 157, Neg. LLF: 91.69651662533384
Iteration: 21, Func. Count: 164, Neg. LLF: 91.62940562909
Iteration: 22, Func. Count: 171, Neg. LLF: 91.58351191319021
Iteration: 23, Func. Count: 178, Neg. LLF: 91.5777255876847
Iteration: 24, Func. Count: 185, Neg. LLF: 91.57651743837042
Iteration: 25, Func. Count: 192, Neg. LLF: 91.57645090151247
Iteration: 26, Func. Count: 199, Neg. LLF: 91.57644875025574
Iteration: 27, Func. Count: 205, Neg. LLF: 91.57644870964579
Optimization terminated successfully (Exit mode 0)
Current function value: 91.57644875025574
Iterations: 27
Function evaluations: 205
Gradient evaluations: 27
Iteration: 1, Func. Count: 9, Neg. LLF: 95641.28298539453
Iteration: 2, Func. Count: 18, Neg. LLF: 538.4163184467153
Iteration: 3, Func. Count: 27, Neg. LLF: 176.19877530028677
Iteration: 4, Func. Count: 37, Neg. LLF: 172.9010395885458
Iteration: 5, Func. Count: 47, Neg. LLF: 127.89361945813693
Iteration: 6, Func. Count: 57, Neg. LLF: 91.96183159801467
Iteration: 7, Func. Count: 65, Neg. LLF: 96.57345430654289
Iteration: 8, Func. Count: 74, Neg. LLF: 92.2941977648321
Iteration: 9, Func. Count: 83, Neg. LLF: 91.73179377198424
Iteration: 10, Func. Count: 92, Neg. LLF: 91.57715973414922
Iteration: 11, Func. Count: 101, Neg. LLF: 91.48408459919878
Iteration: 12, Func. Count: 109, Neg. LLF: 91.41018560637634
Iteration: 13, Func. Count: 117, Neg. LLF: 91.40370422171391
Iteration: 14, Func. Count: 125, Neg. LLF: 91.4033501217811
Iteration: 15, Func. Count: 133, Neg. LLF: 91.403313412213
Iteration: 16, Func. Count: 141, Neg. LLF: 91.40327428315612
Iteration: 17, Func. Count: 149, Neg. LLF: 91.40325023528246
Iteration: 18, Func. Count: 157, Neg. LLF: 91.40324409203686
Iteration: 19, Func. Count: 164, Neg. LLF: 91.40324405633869
Optimization terminated successfully (Exit mode 0)
Current function value: 91.40324409203686
Iterations: 19
Function evaluations: 164
Gradient evaluations: 19
Iteration: 1, Func. Count: 10, Neg. LLF: 241.5686215869609
Iteration: 2, Func. Count: 20, Neg. LLF: 2326.1638603743104
Iteration: 3, Func. Count: 30, Neg. LLF: 123.14880424487801
Iteration: 4, Func. Count: 40, Neg. LLF: 110.69499540824116
Iteration: 5, Func. Count: 50, Neg. LLF: 163.3700764152224
Iteration: 6, Func. Count: 60, Neg. LLF: 119.35981446196311
Iteration: 7, Func. Count: 70, Neg. LLF: 97.92762007904224
Iteration: 8, Func. Count: 80, Neg. LLF: 92.05699041173946
Iteration: 9, Func. Count: 89, Neg. LLF: 91.52513779995958
Iteration: 10, Func. Count: 98, Neg. LLF: 91.4964718757159
Iteration: 11, Func. Count: 107, Neg. LLF: 91.78773857330759
Iteration: 12, Func. Count: 117, Neg. LLF: 91.40375973817372
Iteration: 13, Func. Count: 126, Neg. LLF: 91.38751613215906
Iteration: 14, Func. Count: 135, Neg. LLF: 91.38618320167973
Iteration: 15, Func. Count: 144, Neg. LLF: 91.38614877295673
Iteration: 16, Func. Count: 153, Neg. LLF: 91.38614425128202
Iteration: 17, Func. Count: 161, Neg. LLF: 91.386144212574
Optimization terminated successfully (Exit mode 0)
Current function value: 91.38614425128202
Iterations: 17
Function evaluations: 161
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 102.82821493190701
Iteration: 2, Func. Count: 22, Neg. LLF: 197.3164533402567
Iteration: 3, Func. Count: 34, Neg. LLF: 151.95249555536188
Iteration: 4, Func. Count: 45, Neg. LLF: 136.24782886242153
Iteration: 5, Func. Count: 56, Neg. LLF: 94.36741962834495
Iteration: 6, Func. Count: 67, Neg. LLF: 93.71884191334794
Iteration: 7, Func. Count: 78, Neg. LLF: 93.06113862360957
Iteration: 8, Func. Count: 89, Neg. LLF: 90.73366390658236
Iteration: 9, Func. Count: 100, Neg. LLF: 108.93210402954207
Iteration: 10, Func. Count: 112, Neg. LLF: 90.01206974276978
Iteration: 11, Func. Count: 123, Neg. LLF: 89.72860282723168
Iteration: 12, Func. Count: 133, Neg. LLF: 89.74257144646278
Iteration: 13, Func. Count: 144, Neg. LLF: 90.00385639017786
Iteration: 14, Func. Count: 155, Neg. LLF: 89.69637733114176
Iteration: 15, Func. Count: 166, Neg. LLF: 89.75514167450311
Iteration: 16, Func. Count: 177, Neg. LLF: 89.67150765840145
Iteration: 17, Func. Count: 187, Neg. LLF: 89.66977748999624
Iteration: 18, Func. Count: 197, Neg. LLF: 89.66970763321008
Iteration: 19, Func. Count: 207, Neg. LLF: 89.66970420970843
Iteration: 20, Func. Count: 216, Neg. LLF: 89.66970419555166
Optimization terminated successfully (Exit mode 0)
Current function value: 89.66970420970843
Iterations: 20
Function evaluations: 216
Gradient evaluations: 20
Iteration: 1, Func. Count: 12, Neg. LLF: 101.72560031458677
Iteration: 2, Func. Count: 24, Neg. LLF: 177.17065716104304
Iteration: 3, Func. Count: 37, Neg. LLF: 145.50509608373804
Iteration: 4, Func. Count: 49, Neg. LLF: 131.74493888590567
Iteration: 5, Func. Count: 61, Neg. LLF: 94.80238956626071
Iteration: 6, Func. Count: 73, Neg. LLF: 94.32148141728062
Iteration: 7, Func. Count: 85, Neg. LLF: 93.80782411362304
Iteration: 8, Func. Count: 97, Neg. LLF: 91.90407019527599
Iteration: 9, Func. Count: 109, Neg. LLF: 96.58257481598413
Iteration: 10, Func. Count: 121, Neg. LLF: 90.3688716478465
Iteration: 11, Func. Count: 133, Neg. LLF: 89.89997201384124
Iteration: 12, Func. Count: 145, Neg. LLF: 90.78766203002944
Iteration: 13, Func. Count: 157, Neg. LLF: 89.93778815610831
Iteration: 14, Func. Count: 169, Neg. LLF: 89.66771110646137
Iteration: 15, Func. Count: 180, Neg. LLF: 89.65133776511364
Iteration: 16, Func. Count: 191, Neg. LLF: 89.64764286597118
Iteration: 17, Func. Count: 202, Neg. LLF: 89.64718929485997
Iteration: 18, Func. Count: 213, Neg. LLF: 89.64713070276682
Iteration: 19, Func. Count: 224, Neg. LLF: 89.64712953290093
Iteration: 20, Func. Count: 234, Neg. LLF: 89.64712952053796
Optimization terminated successfully (Exit mode 0)
Current function value: 89.64712953290093
Iterations: 20
Function evaluations: 234
Gradient evaluations: 20
Iteration: 1, Func. Count: 9, Neg. LLF: 106.92919977803443
Iteration: 2, Func. Count: 19, Neg. LLF: 494.371805201545
Iteration: 3, Func. Count: 28, Neg. LLF: 3127.935195701553
Iteration: 4, Func. Count: 37, Neg. LLF: 163.5097364443159
Iteration: 5, Func. Count: 46, Neg. LLF: 136.42494824697738
Iteration: 6, Func. Count: 55, Neg. LLF: 127.92343388759339
Iteration: 7, Func. Count: 64, Neg. LLF: 113.54679457573748
Iteration: 8, Func. Count: 73, Neg. LLF: 105.91900904542278
Iteration: 9, Func. Count: 82, Neg. LLF: 102.24396525915645
Iteration: 10, Func. Count: 91, Neg. LLF: 99.06029512911147
Iteration: 11, Func. Count: 100, Neg. LLF: 98.14426723243571
Iteration: 12, Func. Count: 109, Neg. LLF: 97.74511842326784
Iteration: 13, Func. Count: 118, Neg. LLF: 97.48889381903564
Iteration: 14, Func. Count: 127, Neg. LLF: 97.6433617749693
Iteration: 15, Func. Count: 136, Neg. LLF: 91.68456118068912
Iteration: 16, Func. Count: 145, Neg. LLF: 99.24064582620944
Iteration: 17, Func. Count: 154, Neg. LLF: 89.89964887288959
Iteration: 18, Func. Count: 162, Neg. LLF: 91.31586463292145
Iteration: 19, Func. Count: 171, Neg. LLF: 89.91000147198984
Iteration: 20, Func. Count: 180, Neg. LLF: 89.79853325425924
Iteration: 21, Func. Count: 188, Neg. LLF: 89.77306566789727
Iteration: 22, Func. Count: 196, Neg. LLF: 89.76992085608273
Iteration: 23, Func. Count: 204, Neg. LLF: 89.76921558226603
Iteration: 24, Func. Count: 212, Neg. LLF: 89.76915573450022
Iteration: 25, Func. Count: 220, Neg. LLF: 89.769144093564
Iteration: 26, Func. Count: 227, Neg. LLF: 89.76914406628873
Optimization terminated successfully (Exit mode 0)
Current function value: 89.769144093564
Iterations: 26
Function evaluations: 227
Gradient evaluations: 26
Iteration: 1, Func. Count: 10, Neg. LLF: 146.4209229216695
Iteration: 2, Func. Count: 24, Neg. LLF: 5970488.545735796
Iteration: 3, Func. Count: 34, Neg. LLF: 259.6914839552225
Iteration: 4, Func. Count: 44, Neg. LLF: 94.32683146962782
Iteration: 5, Func. Count: 54, Neg. LLF: 89.21829776104802
Iteration: 6, Func. Count: 63, Neg. LLF: 89.13158796178595
Iteration: 7, Func. Count: 72, Neg. LLF: 89.12909494104174
Iteration: 8, Func. Count: 81, Neg. LLF: 89.12777464100677
Iteration: 9, Func. Count: 90, Neg. LLF: 89.12714237417359
Iteration: 10, Func. Count: 99, Neg. LLF: 89.12684200744324
Iteration: 11, Func. Count: 108, Neg. LLF: 89.12676293049364
Iteration: 12, Func. Count: 117, Neg. LLF: 89.12675230327159
Iteration: 13, Func. Count: 125, Neg. LLF: 89.12675223944582
Optimization terminated successfully (Exit mode 0)
Current function value: 89.12675230327159
Iterations: 13
Function evaluations: 125
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 138.10384837637477
Iteration: 2, Func. Count: 23, Neg. LLF: 226.58005644224775
Iteration: 3, Func. Count: 34, Neg. LLF: 189.29727810785042
Iteration: 4, Func. Count: 45, Neg. LLF: 135.00011843707912
Iteration: 5, Func. Count: 56, Neg. LLF: 96.28604498284942
Iteration: 6, Func. Count: 67, Neg. LLF: 93.10245410404153
Iteration: 7, Func. Count: 78, Neg. LLF: 89.31022247408708
Iteration: 8, Func. Count: 88, Neg. LLF: 89.35555894547906
Iteration: 9, Func. Count: 99, Neg. LLF: 89.16858486042472
Iteration: 10, Func. Count: 109, Neg. LLF: 89.14723368498548
Iteration: 11, Func. Count: 119, Neg. LLF: 89.13093137198547
Iteration: 12, Func. Count: 129, Neg. LLF: 89.12815853990413
Iteration: 13, Func. Count: 139, Neg. LLF: 89.12685119086466
Iteration: 14, Func. Count: 149, Neg. LLF: 89.12675560866496
Iteration: 15, Func. Count: 159, Neg. LLF: 89.12675189523132
Iteration: 16, Func. Count: 168, Neg. LLF: 89.1267519118387
Optimization terminated successfully (Exit mode 0)
Current function value: 89.12675189523132
Iterations: 16
Function evaluations: 168
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 772.3248395750979
Iteration: 2, Func. Count: 24, Neg. LLF: 565.4830109847035
Iteration: 3, Func. Count: 37, Neg. LLF: 438.03012383951864
Iteration: 4, Func. Count: 49, Neg. LLF: 115.44782339870315
Iteration: 5, Func. Count: 61, Neg. LLF: 116.45247257039698
Iteration: 6, Func. Count: 73, Neg. LLF: 913.2412325915946
Iteration: 7, Func. Count: 85, Neg. LLF: 107.00388845698441
Iteration: 8, Func. Count: 97, Neg. LLF: 91.02344548667753
Iteration: 9, Func. Count: 109, Neg. LLF: 90.19989514282959
Iteration: 10, Func. Count: 121, Neg. LLF: 89.26466439165462
Iteration: 11, Func. Count: 132, Neg. LLF: 89.2290357079934
Iteration: 12, Func. Count: 143, Neg. LLF: 89.1929347924226
Iteration: 13, Func. Count: 154, Neg. LLF: 89.18474784122701
Iteration: 14, Func. Count: 165, Neg. LLF: 89.17420242004283
Iteration: 15, Func. Count: 176, Neg. LLF: 89.14243904569132
Iteration: 16, Func. Count: 187, Neg. LLF: 89.13083320822841
Iteration: 17, Func. Count: 198, Neg. LLF: 89.12691231560345
Iteration: 18, Func. Count: 209, Neg. LLF: 89.12676271614806
Iteration: 19, Func. Count: 220, Neg. LLF: 89.1267520120982
Iteration: 20, Func. Count: 230, Neg. LLF: 89.12675208698661
Optimization terminated successfully (Exit mode 0)
Current function value: 89.1267520120982
Iterations: 20
Function evaluations: 230
Gradient evaluations: 20
Iteration: 1, Func. Count: 13, Neg. LLF: 164.40605465066383
Iteration: 2, Func. Count: 26, Neg. LLF: 1203931.1261002212
Iteration: 3, Func. Count: 40, Neg. LLF: 442.587644756282
Iteration: 4, Func. Count: 53, Neg. LLF: 101.01509960839512
Iteration: 5, Func. Count: 66, Neg. LLF: 92.00902263447598
Iteration: 6, Func. Count: 79, Neg. LLF: 156.14463010859825
Iteration: 7, Func. Count: 92, Neg. LLF: 89.86206259643104
Iteration: 8, Func. Count: 104, Neg. LLF: 93.87822790693366
Iteration: 9, Func. Count: 117, Neg. LLF: 89.26329173390977
Iteration: 10, Func. Count: 129, Neg. LLF: 89.19595855000824
Iteration: 11, Func. Count: 141, Neg. LLF: 89.1707056480146
Iteration: 12, Func. Count: 153, Neg. LLF: 89.14632780909892
Iteration: 13, Func. Count: 165, Neg. LLF: 89.13089060731802
Iteration: 14, Func. Count: 177, Neg. LLF: 89.12720351223444
Iteration: 15, Func. Count: 189, Neg. LLF: 89.12688630842933
Iteration: 16, Func. Count: 201, Neg. LLF: 89.12676505865876
Iteration: 17, Func. Count: 213, Neg. LLF: 89.12675199882628
Iteration: 18, Func. Count: 224, Neg. LLF: 89.1267520823085
Optimization terminated successfully (Exit mode 0)
Current function value: 89.12675199882628
Iterations: 18
Function evaluations: 224
Gradient evaluations: 18
Iteration: 1, Func. Count: 10, Neg. LLF: 99.62814512159841
Iteration: 2, Func. Count: 20, Neg. LLF: 796.7768537776936
Iteration: 3, Func. Count: 30, Neg. LLF: 9294.38836636655
Iteration: 4, Func. Count: 40, Neg. LLF: 125.36005518469902
Iteration: 5, Func. Count: 51, Neg. LLF: 309.6783317008714
Iteration: 6, Func. Count: 61, Neg. LLF: 112.95727647690653
Iteration: 7, Func. Count: 71, Neg. LLF: 129.16631503767258
Iteration: 8, Func. Count: 81, Neg. LLF: 124.18084101932902
Iteration: 9, Func. Count: 91, Neg. LLF: 89.36708062245431
Iteration: 10, Func. Count: 101, Neg. LLF: 119.07859353103876
Iteration: 11, Func. Count: 112, Neg. LLF: 88.27044449087616
Iteration: 12, Func. Count: 121, Neg. LLF: 88.09595588511033
Iteration: 13, Func. Count: 130, Neg. LLF: 88.07170065712884
Iteration: 14, Func. Count: 139, Neg. LLF: 88.06680501695571
Iteration: 15, Func. Count: 148, Neg. LLF: 88.06540503026704
Iteration: 16, Func. Count: 157, Neg. LLF: 88.06495712609481
Iteration: 17, Func. Count: 166, Neg. LLF: 88.06486439491466
Iteration: 18, Func. Count: 175, Neg. LLF: 88.06484940012463
Iteration: 19, Func. Count: 184, Neg. LLF: 88.06484778092268
Iteration: 20, Func. Count: 192, Neg. LLF: 88.06484776858889
Optimization terminated successfully (Exit mode 0)
Current function value: 88.06484778092268
Iterations: 20
Function evaluations: 192
Gradient evaluations: 20
Iteration: 1, Func. Count: 11, Neg. LLF: 142.22996297792818
Iteration: 2, Func. Count: 25, Neg. LLF: 4683982.166208907
Iteration: 3, Func. Count: 36, Neg. LLF: 316.0995792463419
Iteration: 4, Func. Count: 48, Neg. LLF: 140.59548614957592
Iteration: 5, Func. Count: 59, Neg. LLF: 97.11629024839688
Iteration: 6, Func. Count: 70, Neg. LLF: 97.35169095735198
Iteration: 7, Func. Count: 81, Neg. LLF: 90.74303831086006
Iteration: 8, Func. Count: 92, Neg. LLF: 91.35762461697968
Iteration: 9, Func. Count: 103, Neg. LLF: 91.13205653396032
Iteration: 10, Func. Count: 114, Neg. LLF: 87.9980762846812
Iteration: 11, Func. Count: 124, Neg. LLF: 88.08141938252307
Iteration: 12, Func. Count: 135, Neg. LLF: 87.99395227383985
Iteration: 13, Func. Count: 146, Neg. LLF: 87.93987941716128
Iteration: 14, Func. Count: 156, Neg. LLF: 87.93437774674877
Iteration: 15, Func. Count: 166, Neg. LLF: 87.9330184776391
Iteration: 16, Func. Count: 176, Neg. LLF: 87.93261834621576
Iteration: 17, Func. Count: 186, Neg. LLF: 87.93261277106406
Iteration: 18, Func. Count: 195, Neg. LLF: 87.93261273329989
Optimization terminated successfully (Exit mode 0)
Current function value: 87.93261277106406
Iterations: 18
Function evaluations: 195
Gradient evaluations: 18
Iteration: 1, Func. Count: 12, Neg. LLF: 4366754.5997098535
Iteration: 2, Func. Count: 24, Neg. LLF: 64763119.035189115
Iteration: 3, Func. Count: 37, Neg. LLF: 223.12725775722544
Iteration: 4, Func. Count: 50, Neg. LLF: 116.45013471424963
Iteration: 5, Func. Count: 62, Neg. LLF: 104.55897496404607
Iteration: 6, Func. Count: 74, Neg. LLF: 101.83242328248924
Iteration: 7, Func. Count: 86, Neg. LLF: 89.58429558404382
Iteration: 8, Func. Count: 98, Neg. LLF: 90.47946924043114
Iteration: 9, Func. Count: 110, Neg. LLF: 90.44544594279387
Iteration: 10, Func. Count: 122, Neg. LLF: 88.05267413323614
Iteration: 11, Func. Count: 133, Neg. LLF: 88.11914030526523
Iteration: 12, Func. Count: 145, Neg. LLF: 89.18619807299271
Iteration: 13, Func. Count: 157, Neg. LLF: 87.90859279091366
Iteration: 14, Func. Count: 168, Neg. LLF: 87.89593283415599
Iteration: 15, Func. Count: 179, Neg. LLF: 87.87277776602279
Iteration: 16, Func. Count: 190, Neg. LLF: 87.86117373147655
Iteration: 17, Func. Count: 201, Neg. LLF: 87.84731112552603
Iteration: 18, Func. Count: 212, Neg. LLF: 87.8438708135145
Iteration: 19, Func. Count: 223, Neg. LLF: 87.84349266594454
Iteration: 20, Func. Count: 234, Neg. LLF: 87.84345229654882
Iteration: 21, Func. Count: 245, Neg. LLF: 87.84344877585583
Iteration: 22, Func. Count: 256, Neg. LLF: 87.84344777157453
Iteration: 23, Func. Count: 266, Neg. LLF: 87.843447742257
Optimization terminated successfully (Exit mode 0)
Current function value: 87.84344777157453
Iterations: 23
Function evaluations: 266
Gradient evaluations: 23
Iteration: 1, Func. Count: 13, Neg. LLF: 4610205.079989421
Iteration: 2, Func. Count: 26, Neg. LLF: 99177558.88866827
Iteration: 3, Func. Count: 40, Neg. LLF: 97.51250652794894
Iteration: 4, Func. Count: 53, Neg. LLF: 108.00885268958491
Iteration: 5, Func. Count: 67, Neg. LLF: 107.06694479909811
Iteration: 6, Func. Count: 80, Neg. LLF: 100.45814004614815
Iteration: 7, Func. Count: 93, Neg. LLF: 88.58074953552406
Iteration: 8, Func. Count: 105, Neg. LLF: 88.75945538029846
Iteration: 9, Func. Count: 118, Neg. LLF: 89.23006774339322
Iteration: 10, Func. Count: 131, Neg. LLF: 103.66763780939466
Iteration: 11, Func. Count: 145, Neg. LLF: 88.09571986381737
Iteration: 12, Func. Count: 157, Neg. LLF: 87.90661252366311
Iteration: 13, Func. Count: 169, Neg. LLF: 88.26196135087892
Iteration: 14, Func. Count: 183, Neg. LLF: 88.50767593367583
Iteration: 15, Func. Count: 196, Neg. LLF: 87.85263840163354
Iteration: 16, Func. Count: 208, Neg. LLF: 87.84647483271345
Iteration: 17, Func. Count: 220, Neg. LLF: 87.84450882702161
Iteration: 18, Func. Count: 232, Neg. LLF: 87.84357923838142
Iteration: 19, Func. Count: 244, Neg. LLF: 87.84345610923742
Iteration: 20, Func. Count: 256, Neg. LLF: 87.84345046334163
Iteration: 21, Func. Count: 268, Neg. LLF: 87.84344845753766
Iteration: 22, Func. Count: 280, Neg. LLF: 87.84344777522064
Optimization terminated successfully (Exit mode 0)
Current function value: 87.84344777522064
Iterations: 22
Function evaluations: 280
Gradient evaluations: 22
Iteration: 1, Func. Count: 14, Neg. LLF: 6759310.731422704
Iteration: 2, Func. Count: 28, Neg. LLF: 29973911.07495119
Iteration: 3, Func. Count: 42, Neg. LLF: 5490606.548133958
Iteration: 4, Func. Count: 56, Neg. LLF: 173.78703840196954
Iteration: 5, Func. Count: 70, Neg. LLF: 99.76718180984875
Iteration: 6, Func. Count: 84, Neg. LLF: 112.77116152621672
Iteration: 7, Func. Count: 98, Neg. LLF: 89.80978293665311
Iteration: 8, Func. Count: 112, Neg. LLF: 91.63806154059444
Iteration: 9, Func. Count: 126, Neg. LLF: 90.56916608669815
Iteration: 10, Func. Count: 140, Neg. LLF: 89.12628492574954
Iteration: 11, Func. Count: 154, Neg. LLF: 88.15504793716919
Iteration: 12, Func. Count: 167, Neg. LLF: 87.97634938018597
Iteration: 13, Func. Count: 180, Neg. LLF: 89.29857934842916
Iteration: 14, Func. Count: 195, Neg. LLF: 87.90157529135298
Iteration: 15, Func. Count: 208, Neg. LLF: 87.86204510104002
Iteration: 16, Func. Count: 221, Neg. LLF: 87.84648429889178
Iteration: 17, Func. Count: 234, Neg. LLF: 87.84434964869509
Iteration: 18, Func. Count: 247, Neg. LLF: 87.84364135822
Iteration: 19, Func. Count: 260, Neg. LLF: 87.84347968291812
Iteration: 20, Func. Count: 273, Neg. LLF: 87.84345136402709
Iteration: 21, Func. Count: 286, Neg. LLF: 87.84344782440242
Iteration: 22, Func. Count: 298, Neg. LLF: 87.84344791468277
Optimization terminated successfully (Exit mode 0)
Current function value: 87.84344782440242
Iterations: 22
Function evaluations: 298
Gradient evaluations: 22
Iteration: 1, Func. Count: 11, Neg. LLF: 105.71035996640869
Iteration: 2, Func. Count: 23, Neg. LLF: 979.9728974296743
Iteration: 3, Func. Count: 34, Neg. LLF: 463559.0794070274
Iteration: 4, Func. Count: 45, Neg. LLF: 132.94875138909794
Iteration: 5, Func. Count: 56, Neg. LLF: 1018716.3228652856
Iteration: 6, Func. Count: 67, Neg. LLF: 123.18731323056136
Iteration: 7, Func. Count: 78, Neg. LLF: 671457.0227170531
Iteration: 8, Func. Count: 89, Neg. LLF: 182.51358927385434
Iteration: 9, Func. Count: 100, Neg. LLF: 125.1488422159835
Iteration: 10, Func. Count: 111, Neg. LLF: 127.09122044342402
Iteration: 11, Func. Count: 122, Neg. LLF: 88.18587777355161
Iteration: 12, Func. Count: 132, Neg. LLF: 89.00022903540295
Iteration: 13, Func. Count: 143, Neg. LLF: 88.97753135151198
Iteration: 14, Func. Count: 154, Neg. LLF: 87.95211470228148
Iteration: 15, Func. Count: 164, Neg. LLF: 87.94119961676617
Iteration: 16, Func. Count: 174, Neg. LLF: 87.93749393755584
Iteration: 17, Func. Count: 184, Neg. LLF: 87.93464164686179
Iteration: 18, Func. Count: 194, Neg. LLF: 87.93372995068691
Iteration: 19, Func. Count: 204, Neg. LLF: 87.9333417403618
Iteration: 20, Func. Count: 214, Neg. LLF: 87.93329323568686
Iteration: 21, Func. Count: 224, Neg. LLF: 87.93328799739523
Iteration: 22, Func. Count: 233, Neg. LLF: 87.9332879824463
Optimization terminated successfully (Exit mode 0)
Current function value: 87.93328799739523
Iterations: 22
Function evaluations: 233
Gradient evaluations: 22
Iteration: 1, Func. Count: 12, Neg. LLF: 153.6570572182516
Iteration: 2, Func. Count: 27, Neg. LLF: 7133460.683096801
Iteration: 3, Func. Count: 39, Neg. LLF: 288.7467037073793
Iteration: 4, Func. Count: 51, Neg. LLF: 112.43453144638673
Iteration: 5, Func. Count: 63, Neg. LLF: 100.02429287689318
Iteration: 6, Func. Count: 75, Neg. LLF: 111.02936908470264
Iteration: 7, Func. Count: 87, Neg. LLF: 88.3828391179589
Iteration: 8, Func. Count: 98, Neg. LLF: 93.25913129765114
Iteration: 9, Func. Count: 110, Neg. LLF: 97.2697231688579
Iteration: 10, Func. Count: 122, Neg. LLF: 88.28901607653731
Iteration: 11, Func. Count: 134, Neg. LLF: 88.00182882615344
Iteration: 12, Func. Count: 145, Neg. LLF: 89.71528791384434
Iteration: 13, Func. Count: 157, Neg. LLF: 87.97953814514634
Iteration: 14, Func. Count: 168, Neg. LLF: 87.95723071968354
Iteration: 15, Func. Count: 179, Neg. LLF: 87.95434938068465
Iteration: 16, Func. Count: 190, Neg. LLF: 87.95067485055424
Iteration: 17, Func. Count: 201, Neg. LLF: 87.94301312598243
Iteration: 18, Func. Count: 212, Neg. LLF: 87.93388097729897
Iteration: 19, Func. Count: 223, Neg. LLF: 87.93167748622716
Iteration: 20, Func. Count: 234, Neg. LLF: 87.930610665979
Iteration: 21, Func. Count: 245, Neg. LLF: 87.9292257059735
Iteration: 22, Func. Count: 256, Neg. LLF: 87.92891335694682
Iteration: 23, Func. Count: 267, Neg. LLF: 87.92885220321945
Iteration: 24, Func. Count: 278, Neg. LLF: 87.92884865287887
Iteration: 25, Func. Count: 288, Neg. LLF: 87.92884861398412
Optimization terminated successfully (Exit mode 0)
Current function value: 87.92884865287887
Iterations: 25
Function evaluations: 288
Gradient evaluations: 25
Iteration: 1, Func. Count: 13, Neg. LLF: 3773179.863477412
Iteration: 2, Func. Count: 26, Neg. LLF: 58151287.904137194
Iteration: 3, Func. Count: 39, Neg. LLF: 271.0814529882108
Iteration: 4, Func. Count: 53, Neg. LLF: 144.9426113199298
Iteration: 5, Func. Count: 66, Neg. LLF: 574.0966554332125
Iteration: 6, Func. Count: 79, Neg. LLF: 113.42515872604726
Iteration: 7, Func. Count: 92, Neg. LLF: 90.69125718180877
Iteration: 8, Func. Count: 105, Neg. LLF: 89.8740599025504
Iteration: 9, Func. Count: 118, Neg. LLF: 89.63087423527871
Iteration: 10, Func. Count: 131, Neg. LLF: 88.51780639484504
Iteration: 11, Func. Count: 144, Neg. LLF: 89.48924059615142
Iteration: 12, Func. Count: 157, Neg. LLF: 87.87815311542646
Iteration: 13, Func. Count: 169, Neg. LLF: 87.85146337772574
Iteration: 14, Func. Count: 182, Neg. LLF: 87.81323720242884
Iteration: 15, Func. Count: 195, Neg. LLF: 87.78591444705845
Iteration: 16, Func. Count: 207, Neg. LLF: 87.77834748479798
Iteration: 17, Func. Count: 219, Neg. LLF: 87.77191550007561
Iteration: 18, Func. Count: 231, Neg. LLF: 87.76350283476832
Iteration: 19, Func. Count: 243, Neg. LLF: 87.76043032184388
Iteration: 20, Func. Count: 255, Neg. LLF: 87.75981716947058
Iteration: 21, Func. Count: 267, Neg. LLF: 87.75967671505961
Iteration: 22, Func. Count: 279, Neg. LLF: 87.75965774839963
Iteration: 23, Func. Count: 291, Neg. LLF: 87.75965668075007
Iteration: 24, Func. Count: 302, Neg. LLF: 87.75965664938174
Optimization terminated successfully (Exit mode 0)
Current function value: 87.75965668075007
Iterations: 24
Function evaluations: 302
Gradient evaluations: 24
Iteration: 1, Func. Count: 14, Neg. LLF: 5835331.086323398
Iteration: 2, Func. Count: 28, Neg. LLF: 219305415.08413717
Iteration: 3, Func. Count: 43, Neg. LLF: 6086312.951788638
Iteration: 4, Func. Count: 57, Neg. LLF: 93.62798024050522
Iteration: 5, Func. Count: 71, Neg. LLF: 110.90784992461302
Iteration: 6, Func. Count: 86, Neg. LLF: 91.60499653121224
Iteration: 7, Func. Count: 100, Neg. LLF: 89.52169673149307
Iteration: 8, Func. Count: 114, Neg. LLF: 89.15524408628737
Iteration: 9, Func. Count: 128, Neg. LLF: 88.30842464287626
Iteration: 10, Func. Count: 141, Neg. LLF: 88.50093601836912
Iteration: 11, Func. Count: 155, Neg. LLF: 88.1797392449233
Iteration: 12, Func. Count: 169, Neg. LLF: 87.87955408511881
Iteration: 13, Func. Count: 183, Neg. LLF: 88.06045817536756
Iteration: 14, Func. Count: 197, Neg. LLF: 87.76486533839126
Iteration: 15, Func. Count: 210, Neg. LLF: 87.76195975603014
Iteration: 16, Func. Count: 223, Neg. LLF: 87.76032508901913
Iteration: 17, Func. Count: 236, Neg. LLF: 87.75986256005997
Iteration: 18, Func. Count: 249, Neg. LLF: 87.7597310055805
Iteration: 19, Func. Count: 262, Neg. LLF: 87.75966281609934
Iteration: 20, Func. Count: 275, Neg. LLF: 87.75965696379934
Iteration: 21, Func. Count: 287, Neg. LLF: 87.7596569999001
Optimization terminated successfully (Exit mode 0)
Current function value: 87.75965696379934
Iterations: 21
Function evaluations: 287
Gradient evaluations: 21
Iteration: 1, Func. Count: 15, Neg. LLF: 4593596.222334909
Iteration: 2, Func. Count: 30, Neg. LLF: 112552698.05925825
Iteration: 3, Func. Count: 46, Neg. LLF: 4006809.081135111
Iteration: 4, Func. Count: 61, Neg. LLF: 224.6745467233976
Iteration: 5, Func. Count: 76, Neg. LLF: 92.19578598583308
Iteration: 6, Func. Count: 91, Neg. LLF: 98.49013870083866
Iteration: 7, Func. Count: 106, Neg. LLF: 91.26887078376515
Iteration: 8, Func. Count: 121, Neg. LLF: 95.56032903725155
Iteration: 9, Func. Count: 136, Neg. LLF: 88.09944461222926
Iteration: 10, Func. Count: 150, Neg. LLF: 89.06534840247816
Iteration: 11, Func. Count: 165, Neg. LLF: 88.03936396575142
Iteration: 12, Func. Count: 180, Neg. LLF: 88.04748491146343
Iteration: 13, Func. Count: 195, Neg. LLF: 87.90726104965852
Iteration: 14, Func. Count: 210, Neg. LLF: 87.7652631261381
Iteration: 15, Func. Count: 224, Neg. LLF: 87.76110817147516
Iteration: 16, Func. Count: 238, Neg. LLF: 87.7602177786977
Iteration: 17, Func. Count: 252, Neg. LLF: 87.75985581339816
Iteration: 18, Func. Count: 266, Neg. LLF: 87.7597036186985
Iteration: 19, Func. Count: 280, Neg. LLF: 87.75966102208278
Iteration: 20, Func. Count: 294, Neg. LLF: 87.75965738670565
Iteration: 21, Func. Count: 308, Neg. LLF: 87.75965668249249
Optimization terminated successfully (Exit mode 0)
Current function value: 87.75965668249249
Iterations: 21
Function evaluations: 308
Gradient evaluations: 21
Iteration: 1, Func. Count: 12, Neg. LLF: 112.87969067723422
Iteration: 2, Func. Count: 25, Neg. LLF: 224815842.67329487
Iteration: 3, Func. Count: 37, Neg. LLF: 1694294.8057561647
Iteration: 4, Func. Count: 49, Neg. LLF: 1381059.7790113448
Iteration: 5, Func. Count: 61, Neg. LLF: 232480.85265539188
Iteration: 6, Func. Count: 73, Neg. LLF: 95.23098368390153
Iteration: 7, Func. Count: 85, Neg. LLF: 107.93094624565701
Iteration: 8, Func. Count: 97, Neg. LLF: 108.2373621310752
Iteration: 9, Func. Count: 109, Neg. LLF: 113.20025808094091
Iteration: 10, Func. Count: 121, Neg. LLF: 100.72810282024238
Iteration: 11, Func. Count: 133, Neg. LLF: 116.34040724239689
Iteration: 12, Func. Count: 145, Neg. LLF: 87.8150480327974
Iteration: 13, Func. Count: 156, Neg. LLF: 87.81078067083186
Iteration: 14, Func. Count: 168, Neg. LLF: 88.24343974717723
Iteration: 15, Func. Count: 180, Neg. LLF: 87.63605024227023
Iteration: 16, Func. Count: 191, Neg. LLF: 87.57363599384492
Iteration: 17, Func. Count: 202, Neg. LLF: 87.52710858450473
Iteration: 18, Func. Count: 213, Neg. LLF: 87.88324818924065
Iteration: 19, Func. Count: 225, Neg. LLF: 87.49379779789886
Iteration: 20, Func. Count: 236, Neg. LLF: 87.47942038871184
Iteration: 21, Func. Count: 247, Neg. LLF: 87.47391475640026
Iteration: 22, Func. Count: 258, Neg. LLF: 87.47121746875706
Iteration: 23, Func. Count: 269, Neg. LLF: 87.47115012610327
Iteration: 24, Func. Count: 280, Neg. LLF: 87.47114505664275
Iteration: 25, Func. Count: 291, Neg. LLF: 87.47114434380923
Optimization terminated successfully (Exit mode 0)
Current function value: 87.47114434380923
Iterations: 25
Function evaluations: 291
Gradient evaluations: 25
Iteration: 1, Func. Count: 13, Neg. LLF: 155.86496264004364
Iteration: 2, Func. Count: 30, Neg. LLF: 7551673.730582585
Iteration: 3, Func. Count: 43, Neg. LLF: 1815949.20303982
Iteration: 4, Func. Count: 57, Neg. LLF: 174.33799643677565
Iteration: 5, Func. Count: 70, Neg. LLF: 97.23725111784933
Iteration: 6, Func. Count: 83, Neg. LLF: 94.52578388154838
Iteration: 7, Func. Count: 96, Neg. LLF: 88.69069204658841
Iteration: 8, Func. Count: 108, Neg. LLF: 90.1052527736805
Iteration: 9, Func. Count: 121, Neg. LLF: 91.3850878762929
Iteration: 10, Func. Count: 134, Neg. LLF: 88.9958129270666
Iteration: 11, Func. Count: 147, Neg. LLF: 88.49575708278165
Iteration: 12, Func. Count: 160, Neg. LLF: 87.97698390848036
Iteration: 13, Func. Count: 173, Neg. LLF: 87.60975921233165
Iteration: 14, Func. Count: 185, Neg. LLF: 87.66211398740295
Iteration: 15, Func. Count: 198, Neg. LLF: 87.59384336782828
Iteration: 16, Func. Count: 211, Neg. LLF: 87.57647378491619
Iteration: 17, Func. Count: 223, Neg. LLF: 87.5631203183053
Iteration: 18, Func. Count: 235, Neg. LLF: 87.52436941003342
Iteration: 19, Func. Count: 247, Neg. LLF: 87.52856623413535
Iteration: 20, Func. Count: 260, Neg. LLF: 87.47923749599155
Iteration: 21, Func. Count: 272, Neg. LLF: 87.47287225314038
Iteration: 22, Func. Count: 284, Neg. LLF: 87.47153857130553
Iteration: 23, Func. Count: 296, Neg. LLF: 87.47123196302736
Iteration: 24, Func. Count: 308, Neg. LLF: 87.47115174248734
Iteration: 25, Func. Count: 320, Neg. LLF: 87.47114435177298
Iteration: 26, Func. Count: 331, Neg. LLF: 87.47114431484388
Optimization terminated successfully (Exit mode 0)
Current function value: 87.47114435177298
Iterations: 26
Function evaluations: 331
Gradient evaluations: 26
Iteration: 1, Func. Count: 14, Neg. LLF: 5595792.969672991
Iteration: 2, Func. Count: 28, Neg. LLF: 230554654.59702474
Iteration: 3, Func. Count: 43, Neg. LLF: 4727564.314624751
Iteration: 4, Func. Count: 57, Neg. LLF: 224605.86108522865
Iteration: 5, Func. Count: 71, Neg. LLF: 102.89009800302325
Iteration: 6, Func. Count: 85, Neg. LLF: 97.41432318589646
Iteration: 7, Func. Count: 99, Neg. LLF: 92.96235233680542
Iteration: 8, Func. Count: 113, Neg. LLF: 89.71676486843978
Iteration: 9, Func. Count: 127, Neg. LLF: 97.58081675872015
Iteration: 10, Func. Count: 141, Neg. LLF: 89.15699366048003
Iteration: 11, Func. Count: 155, Neg. LLF: 88.91146188131796
Iteration: 12, Func. Count: 169, Neg. LLF: 87.69965790480694
Iteration: 13, Func. Count: 182, Neg. LLF: 88.39200436691092
Iteration: 14, Func. Count: 196, Neg. LLF: 87.66599870344565
Iteration: 15, Func. Count: 209, Neg. LLF: 87.66341647613156
Iteration: 16, Func. Count: 222, Neg. LLF: 87.65622228795975
Iteration: 17, Func. Count: 235, Neg. LLF: 87.65530680911415
Iteration: 18, Func. Count: 248, Neg. LLF: 87.65514825801947
Iteration: 19, Func. Count: 261, Neg. LLF: 87.65514054360597
Iteration: 20, Func. Count: 273, Neg. LLF: 87.65514050579891
Optimization terminated successfully (Exit mode 0)
Current function value: 87.65514054360597
Iterations: 20
Function evaluations: 273
Gradient evaluations: 20
Iteration: 1, Func. Count: 15, Neg. LLF: 5282939.63881903
Iteration: 2, Func. Count: 30, Neg. LLF: 202389128.9241587
Iteration: 3, Func. Count: 46, Neg. LLF: 4861554.846317629
Iteration: 4, Func. Count: 61, Neg. LLF: 610921.4686088784
Iteration: 5, Func. Count: 76, Neg. LLF: 103.88465365889232
Iteration: 6, Func. Count: 91, Neg. LLF: 97.09847305076717
Iteration: 7, Func. Count: 106, Neg. LLF: 96.02012320987745
Iteration: 8, Func. Count: 121, Neg. LLF: 110.1470038055047
Iteration: 9, Func. Count: 136, Neg. LLF: 91.15702425925299
Iteration: 10, Func. Count: 151, Neg. LLF: 89.27535862737471
Iteration: 11, Func. Count: 166, Neg. LLF: 89.49866233651223
Iteration: 12, Func. Count: 181, Neg. LLF: 87.92617421585777
Iteration: 13, Func. Count: 195, Neg. LLF: 87.77278736402704
Iteration: 14, Func. Count: 209, Neg. LLF: 87.73367839972171
Iteration: 15, Func. Count: 223, Neg. LLF: 87.69679044630972
Iteration: 16, Func. Count: 237, Neg. LLF: 87.6555702533275
Iteration: 17, Func. Count: 251, Neg. LLF: 87.57067401956566
Iteration: 18, Func. Count: 265, Neg. LLF: 87.55574484445471
Iteration: 19, Func. Count: 279, Neg. LLF: 87.62011374313073
Iteration: 20, Func. Count: 294, Neg. LLF: 87.52156998861395
Iteration: 21, Func. Count: 308, Neg. LLF: 87.48596120105066
Iteration: 22, Func. Count: 322, Neg. LLF: 87.47593481106391
Iteration: 23, Func. Count: 336, Neg. LLF: 87.47147659617538
Iteration: 24, Func. Count: 350, Neg. LLF: 87.47120573717302
Iteration: 25, Func. Count: 364, Neg. LLF: 87.4711539090644
Iteration: 26, Func. Count: 378, Neg. LLF: 87.47114481480344
Iteration: 27, Func. Count: 391, Neg. LLF: 87.47114489473951
Optimization terminated successfully (Exit mode 0)
Current function value: 87.47114481480344
Iterations: 27
Function evaluations: 391
Gradient evaluations: 27
Iteration: 1, Func. Count: 16, Neg. LLF: 4584138.8524252195
Iteration: 2, Func. Count: 32, Neg. LLF: 113871009.051061
Iteration: 3, Func. Count: 48, Neg. LLF: 2584722.1407381627
Iteration: 4, Func. Count: 64, Neg. LLF: 141561.62172128065
Iteration: 5, Func. Count: 80, Neg. LLF: 123.55816724919771
Iteration: 6, Func. Count: 96, Neg. LLF: 119.29760798376884
Iteration: 7, Func. Count: 112, Neg. LLF: 170.8869479628176
Iteration: 8, Func. Count: 128, Neg. LLF: 438.58563431605893
Iteration: 9, Func. Count: 144, Neg. LLF: 5352.207137432599
Iteration: 10, Func. Count: 160, Neg. LLF: 89.18840476552688
Iteration: 11, Func. Count: 176, Neg. LLF: 87.93166441289392
Iteration: 12, Func. Count: 191, Neg. LLF: 89.07672504923457
Iteration: 13, Func. Count: 207, Neg. LLF: 87.68431263762793
Iteration: 14, Func. Count: 222, Neg. LLF: 87.95298229520517
Iteration: 15, Func. Count: 238, Neg. LLF: 88.61023285469989
Iteration: 16, Func. Count: 254, Neg. LLF: 87.52160878507507
Iteration: 17, Func. Count: 269, Neg. LLF: 87.51639522445603
Iteration: 18, Func. Count: 285, Neg. LLF: 87.48749243268627
Iteration: 19, Func. Count: 300, Neg. LLF: 87.47642323221984
Iteration: 20, Func. Count: 315, Neg. LLF: 87.47254713971022
Iteration: 21, Func. Count: 330, Neg. LLF: 87.47143314092986
Iteration: 22, Func. Count: 345, Neg. LLF: 87.47125690048716
Iteration: 23, Func. Count: 360, Neg. LLF: 87.47114568464475
Iteration: 24, Func. Count: 375, Neg. LLF: 87.47114440052113
Iteration: 25, Func. Count: 389, Neg. LLF: 87.47114437886613
Optimization terminated successfully (Exit mode 0)
Current function value: 87.47114440052113
Iterations: 25
Function evaluations: 389
Gradient evaluations: 25
Iteration: 1, Func. Count: 7, Neg. LLF: 28715531.176299583
Iteration: 2, Func. Count: 14, Neg. LLF: 13092.41038508066
Iteration: 3, Func. Count: 21, Neg. LLF: 124.42367559282951
Iteration: 4, Func. Count: 28, Neg. LLF: 151.79967630792865
Iteration: 5, Func. Count: 36, Neg. LLF: 88.92899079822931
Iteration: 6, Func. Count: 42, Neg. LLF: 88.9336779293879
Iteration: 7, Func. Count: 49, Neg. LLF: 88.92948084883417
Iteration: 8, Func. Count: 56, Neg. LLF: 88.92649282565868
Iteration: 9, Func. Count: 62, Neg. LLF: 88.92641968782017
Iteration: 10, Func. Count: 67, Neg. LLF: 88.9264196156823
Optimization terminated successfully (Exit mode 0)
Current function value: 88.92641968782017
Iterations: 10
Function evaluations: 67
Gradient evaluations: 10
Iteration: 1, Func. Count: 5, Neg. LLF: 124.33665081440897
Iteration: 2, Func. Count: 12, Neg. LLF: 104.0177814635488
Iteration: 3, Func. Count: 17, Neg. LLF: 98.53828783663462
Iteration: 4, Func. Count: 21, Neg. LLF: 98.43768475120282
Iteration: 5, Func. Count: 25, Neg. LLF: 98.41991351527359
Iteration: 6, Func. Count: 29, Neg. LLF: 98.41931662814791
Iteration: 7, Func. Count: 33, Neg. LLF: 98.41931586693289
Optimization terminated successfully (Exit mode 0)
Current function value: 98.41931586693289
Iterations: 7
Function evaluations: 33
Gradient evaluations: 7
Iteration: 1, Func. Count: 6, Neg. LLF: 171694145.9170459
Iteration: 2, Func. Count: 13, Neg. LLF: 901422.3090883739
Iteration: 3, Func. Count: 19, Neg. LLF: 130.99326431261062
Iteration: 4, Func. Count: 25, Neg. LLF: 99.24796276821615
Iteration: 5, Func. Count: 31, Neg. LLF: 88.41391717186204
Iteration: 6, Func. Count: 36, Neg. LLF: 88.3829556377561
Iteration: 7, Func. Count: 41, Neg. LLF: 88.37856908985597
Iteration: 8, Func. Count: 46, Neg. LLF: 88.37844523938354
Iteration: 9, Func. Count: 51, Neg. LLF: 88.37844422801702
Iteration: 10, Func. Count: 55, Neg. LLF: 88.37844409071181
Optimization terminated successfully (Exit mode 0)
Current function value: 88.37844422801702
Iterations: 10
Function evaluations: 55
Gradient evaluations: 10
Iteration: 1, Func. Count: 7, Neg. LLF: 219169106.85387936
Iteration: 2, Func. Count: 15, Neg. LLF: 97.65690640033786
Iteration: 3, Func. Count: 22, Neg. LLF: 94.49632496038255
Iteration: 4, Func. Count: 29, Neg. LLF: 14384313.875552785
Iteration: 5, Func. Count: 36, Neg. LLF: 148.68660844870308
Iteration: 6, Func. Count: 43, Neg. LLF: 103.9392507842507
Iteration: 7, Func. Count: 50, Neg. LLF: 90.37713125709485
Iteration: 8, Func. Count: 56, Neg. LLF: 90.36276295158478
Iteration: 9, Func. Count: 63, Neg. LLF: 88.68863180790349
Iteration: 10, Func. Count: 69, Neg. LLF: 88.65806840054712
Iteration: 11, Func. Count: 76, Neg. LLF: 88.424354879485
Iteration: 12, Func. Count: 82, Neg. LLF: 88.38672095047966
Iteration: 13, Func. Count: 88, Neg. LLF: 88.37935414491534
Iteration: 14, Func. Count: 94, Neg. LLF: 88.37845708623688
Iteration: 15, Func. Count: 100, Neg. LLF: 88.37844425117314
Iteration: 16, Func. Count: 105, Neg. LLF: 88.37844420271367
Optimization terminated successfully (Exit mode 0)
Current function value: 88.37844425117314
Iterations: 16
Function evaluations: 105
Gradient evaluations: 16
Iteration: 1, Func. Count: 8, Neg. LLF: 250291807.4123101
Iteration: 2, Func. Count: 17, Neg. LLF: 459191842.8427706
Iteration: 3, Func. Count: 26, Neg. LLF: 161.07103100518142
Iteration: 4, Func. Count: 34, Neg. LLF: 91.76227370021893
Iteration: 5, Func. Count: 41, Neg. LLF: 91.38045060189263
Iteration: 6, Func. Count: 48, Neg. LLF: 89.34648179230255
Iteration: 7, Func. Count: 55, Neg. LLF: 88.40145721334227
Iteration: 8, Func. Count: 62, Neg. LLF: 88.39212609652361
Iteration: 9, Func. Count: 69, Neg. LLF: 88.38758288189204
Iteration: 10, Func. Count: 76, Neg. LLF: 88.37916614089005
Iteration: 11, Func. Count: 83, Neg. LLF: 88.37851411922712
Iteration: 12, Func. Count: 90, Neg. LLF: 88.3784442336686
Iteration: 13, Func. Count: 96, Neg. LLF: 88.3784442042676
Optimization terminated successfully (Exit mode 0)
Current function value: 88.3784442336686
Iterations: 13
Function evaluations: 96
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 262490338.48186427
Iteration: 2, Func. Count: 19, Neg. LLF: 328526399.4010173
Iteration: 3, Func. Count: 29, Neg. LLF: 249.02724110489976
Iteration: 4, Func. Count: 38, Neg. LLF: 92.29842137723432
Iteration: 5, Func. Count: 46, Neg. LLF: 92.4283026161461
Iteration: 6, Func. Count: 56, Neg. LLF: 90.15505721204761
Iteration: 7, Func. Count: 64, Neg. LLF: 88.8083974507961
Iteration: 8, Func. Count: 72, Neg. LLF: 88.54888816694944
Iteration: 9, Func. Count: 80, Neg. LLF: 88.50208499011609
Iteration: 10, Func. Count: 88, Neg. LLF: 88.42936646487564
Iteration: 11, Func. Count: 96, Neg. LLF: 88.3952515980963
Iteration: 12, Func. Count: 104, Neg. LLF: 88.38020839973609
Iteration: 13, Func. Count: 112, Neg. LLF: 88.37849065545363
Iteration: 14, Func. Count: 120, Neg. LLF: 88.37844459148754
Iteration: 15, Func. Count: 127, Neg. LLF: 88.37844462854271
Optimization terminated successfully (Exit mode 0)
Current function value: 88.37844459148754
Iterations: 15
Function evaluations: 127
Gradient evaluations: 15
Iteration: 1, Func. Count: 6, Neg. LLF: 112.31712237210144
Iteration: 2, Func. Count: 13, Neg. LLF: 219706417.39103115
Iteration: 3, Func. Count: 19, Neg. LLF: 6307329.764262832
Iteration: 4, Func. Count: 25, Neg. LLF: 819729.0544027559
Iteration: 5, Func. Count: 31, Neg. LLF: 2841187.109889229
Iteration: 6, Func. Count: 37, Neg. LLF: 871584.534273187
Iteration: 7, Func. Count: 43, Neg. LLF: 2897075.1213480504
Iteration: 8, Func. Count: 49, Neg. LLF: 89.67710370808997
Iteration: 9, Func. Count: 55, Neg. LLF: 89.21147754662873
Iteration: 10, Func. Count: 60, Neg. LLF: 89.11919774786656
Iteration: 11, Func. Count: 65, Neg. LLF: 89.05020971374375
Iteration: 12, Func. Count: 70, Neg. LLF: 89.00495701209873
Iteration: 13, Func. Count: 75, Neg. LLF: 88.97813789755402
Iteration: 14, Func. Count: 80, Neg. LLF: 88.95299359811497
Iteration: 15, Func. Count: 85, Neg. LLF: 88.94773542612512
Iteration: 16, Func. Count: 90, Neg. LLF: 88.94753130569794
Iteration: 17, Func. Count: 95, Neg. LLF: 88.94749414312562
Iteration: 18, Func. Count: 99, Neg. LLF: 88.94749414313134
Optimization terminated successfully (Exit mode 0)
Current function value: 88.94749414312562
Iterations: 18
Function evaluations: 99
Gradient evaluations: 18
Iteration: 1, Func. Count: 7, Neg. LLF: 176218410.26377034
Iteration: 2, Func. Count: 15, Neg. LLF: 380.39244942387603
Iteration: 3, Func. Count: 22, Neg. LLF: 92.17103198022596
Iteration: 4, Func. Count: 29, Neg. LLF: 89.4466477132075
Iteration: 5, Func. Count: 36, Neg. LLF: 87.06552733437715
Iteration: 6, Func. Count: 43, Neg. LLF: 87.1780264195855
Iteration: 7, Func. Count: 50, Neg. LLF: 86.82995292612925
Iteration: 8, Func. Count: 56, Neg. LLF: 86.82538216449335
Iteration: 9, Func. Count: 62, Neg. LLF: 86.82457130730324
Iteration: 10, Func. Count: 68, Neg. LLF: 86.82455593376392
Iteration: 11, Func. Count: 73, Neg. LLF: 86.82455585381634
Optimization terminated successfully (Exit mode 0)
Current function value: 86.82455593376392
Iterations: 11
Function evaluations: 73
Gradient evaluations: 11
Iteration: 1, Func. Count: 8, Neg. LLF: 263714407.3973731
Iteration: 2, Func. Count: 17, Neg. LLF: 3752223.717566275
Iteration: 3, Func. Count: 25, Neg. LLF: 95.00813492328498
Iteration: 4, Func. Count: 33, Neg. LLF: 95.20376242323391
Iteration: 5, Func. Count: 41, Neg. LLF: 187.16015354784142
Iteration: 6, Func. Count: 49, Neg. LLF: 86.02790261044223
Iteration: 7, Func. Count: 56, Neg. LLF: 85.95874975580422
Iteration: 8, Func. Count: 63, Neg. LLF: 85.95025619536173
Iteration: 9, Func. Count: 70, Neg. LLF: 85.94885214221098
Iteration: 10, Func. Count: 77, Neg. LLF: 85.94824581900585
Iteration: 11, Func. Count: 84, Neg. LLF: 85.94812717569229
Iteration: 12, Func. Count: 91, Neg. LLF: 85.94811447315219
Iteration: 13, Func. Count: 97, Neg. LLF: 85.94811442343808
Optimization terminated successfully (Exit mode 0)
Current function value: 85.94811447315219
Iterations: 13
Function evaluations: 97
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 295824759.92781836
Iteration: 2, Func. Count: 19, Neg. LLF: 4504856.59925039
Iteration: 3, Func. Count: 28, Neg. LLF: 93.34833434399503
Iteration: 4, Func. Count: 37, Neg. LLF: 92.81673432652417
Iteration: 5, Func. Count: 46, Neg. LLF: 3377.1671280298942
Iteration: 6, Func. Count: 55, Neg. LLF: 86.32943870600491
Iteration: 7, Func. Count: 63, Neg. LLF: 86.03390715216341
Iteration: 8, Func. Count: 71, Neg. LLF: 85.96967010764526
Iteration: 9, Func. Count: 79, Neg. LLF: 85.95032371139224
Iteration: 10, Func. Count: 87, Neg. LLF: 85.94834516732729
Iteration: 11, Func. Count: 95, Neg. LLF: 85.9481891754191
Iteration: 12, Func. Count: 103, Neg. LLF: 85.94812259033289
Iteration: 13, Func. Count: 111, Neg. LLF: 85.94811459718656
Iteration: 14, Func. Count: 118, Neg. LLF: 85.94811456717274
Optimization terminated successfully (Exit mode 0)
Current function value: 85.94811459718656
Iterations: 14
Function evaluations: 118
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 292729382.04210365
Iteration: 2, Func. Count: 21, Neg. LLF: 3209700.3111191294
Iteration: 3, Func. Count: 31, Neg. LLF: 95.604055917991
Iteration: 4, Func. Count: 41, Neg. LLF: 530.716187923337
Iteration: 5, Func. Count: 51, Neg. LLF: 97.5094666515847
Iteration: 6, Func. Count: 61, Neg. LLF: 86.42337171017901
Iteration: 7, Func. Count: 70, Neg. LLF: 86.06733055378277
Iteration: 8, Func. Count: 79, Neg. LLF: 85.96258786355307
Iteration: 9, Func. Count: 88, Neg. LLF: 85.95148850013747
Iteration: 10, Func. Count: 97, Neg. LLF: 85.94857298600061
Iteration: 11, Func. Count: 106, Neg. LLF: 85.94813753246619
Iteration: 12, Func. Count: 115, Neg. LLF: 85.94811528206782
Iteration: 13, Func. Count: 124, Neg. LLF: 85.94811445673434
Optimization terminated successfully (Exit mode 0)
Current function value: 85.94811445673434
Iterations: 13
Function evaluations: 124
Gradient evaluations: 13
Iteration: 1, Func. Count: 7, Neg. LLF: 124.73880608184076
Iteration: 2, Func. Count: 16, Neg. LLF: 305608700.9452004
Iteration: 3, Func. Count: 24, Neg. LLF: 2755299.1118221525
Iteration: 4, Func. Count: 31, Neg. LLF: 2482982.8656005273
Iteration: 5, Func. Count: 38, Neg. LLF: 4399547.210651857
Iteration: 6, Func. Count: 45, Neg. LLF: 2477558.3341570166
Iteration: 7, Func. Count: 52, Neg. LLF: 90.3164434196301
Iteration: 8, Func. Count: 58, Neg. LLF: 96.15955597553638
Iteration: 9, Func. Count: 66, Neg. LLF: 93.91181279914187
Iteration: 10, Func. Count: 74, Neg. LLF: 89.53668290325425
Iteration: 11, Func. Count: 80, Neg. LLF: 89.18575643251206
Iteration: 12, Func. Count: 86, Neg. LLF: 89.0549410517568
Iteration: 13, Func. Count: 92, Neg. LLF: 88.97620214311566
Iteration: 14, Func. Count: 98, Neg. LLF: 88.94866447405943
Iteration: 15, Func. Count: 104, Neg. LLF: 88.93718393626793
Iteration: 16, Func. Count: 110, Neg. LLF: 88.93350113646454
Iteration: 17, Func. Count: 116, Neg. LLF: 88.93326747627789
Iteration: 18, Func. Count: 122, Neg. LLF: 88.93317716519414
Iteration: 19, Func. Count: 128, Neg. LLF: 88.93317616989789
Optimization terminated successfully (Exit mode 0)
Current function value: 88.93317616989789
Iterations: 19
Function evaluations: 128
Gradient evaluations: 19
Iteration: 1, Func. Count: 8, Neg. LLF: 111291916.2259578
Iteration: 2, Func. Count: 17, Neg. LLF: 1602835.3834215316
Iteration: 3, Func. Count: 25, Neg. LLF: 93.48469498102386
Iteration: 4, Func. Count: 33, Neg. LLF: 164.81902470291288
Iteration: 5, Func. Count: 41, Neg. LLF: 87.19833000623474
Iteration: 6, Func. Count: 48, Neg. LLF: 86.96370735969123
Iteration: 7, Func. Count: 55, Neg. LLF: 86.87547006761466
Iteration: 8, Func. Count: 62, Neg. LLF: 86.83326075971642
Iteration: 9, Func. Count: 69, Neg. LLF: 86.8266423295116
Iteration: 10, Func. Count: 76, Neg. LLF: 86.82476167997876
Iteration: 11, Func. Count: 83, Neg. LLF: 86.82458853201037
Iteration: 12, Func. Count: 90, Neg. LLF: 86.82455582438156
Iteration: 13, Func. Count: 96, Neg. LLF: 86.82455574449808
Optimization terminated successfully (Exit mode 0)
Current function value: 86.82455582438156
Iterations: 13
Function evaluations: 96
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 219571496.67603666
Iteration: 2, Func. Count: 19, Neg. LLF: 5308827.167480044
Iteration: 3, Func. Count: 28, Neg. LLF: 105.40819698560513
Iteration: 4, Func. Count: 37, Neg. LLF: 95.50152997189917
Iteration: 5, Func. Count: 46, Neg. LLF: 86.26022711703655
Iteration: 6, Func. Count: 54, Neg. LLF: 86.58733782153502
Iteration: 7, Func. Count: 63, Neg. LLF: 85.99797403310832
Iteration: 8, Func. Count: 71, Neg. LLF: 85.95378441754578
Iteration: 9, Func. Count: 79, Neg. LLF: 85.94842483014143
Iteration: 10, Func. Count: 87, Neg. LLF: 85.94811687238669
Iteration: 11, Func. Count: 95, Neg. LLF: 85.94811446481033
Iteration: 12, Func. Count: 102, Neg. LLF: 85.94811441507812
Optimization terminated successfully (Exit mode 0)
Current function value: 85.94811446481033
Iterations: 12
Function evaluations: 102
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 260449158.47949925
Iteration: 2, Func. Count: 21, Neg. LLF: 5834086.425616906
Iteration: 3, Func. Count: 31, Neg. LLF: 105.99297572163553
Iteration: 4, Func. Count: 41, Neg. LLF: 91.70365211115711
Iteration: 5, Func. Count: 51, Neg. LLF: 107.66220903943193
Iteration: 6, Func. Count: 61, Neg. LLF: 189.93761054977548
Iteration: 7, Func. Count: 71, Neg. LLF: 87.53886545656084
Iteration: 8, Func. Count: 81, Neg. LLF: 86.01625895394896
Iteration: 9, Func. Count: 90, Neg. LLF: 85.98089289300377
Iteration: 10, Func. Count: 99, Neg. LLF: 85.952403440107
Iteration: 11, Func. Count: 108, Neg. LLF: 85.94906486013818
Iteration: 12, Func. Count: 117, Neg. LLF: 85.94815467777529
Iteration: 13, Func. Count: 126, Neg. LLF: 85.94811999234487
Iteration: 14, Func. Count: 135, Neg. LLF: 85.94811444862762
Iteration: 15, Func. Count: 143, Neg. LLF: 85.94811441858911
Optimization terminated successfully (Exit mode 0)
Current function value: 85.94811444862762
Iterations: 15
Function evaluations: 143
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 261253613.35346353
Iteration: 2, Func. Count: 23, Neg. LLF: 5200949.764963759
Iteration: 3, Func. Count: 34, Neg. LLF: 100.97090274731885
Iteration: 4, Func. Count: 45, Neg. LLF: 90.50264800166765
Iteration: 5, Func. Count: 56, Neg. LLF: 139.33997314714819
Iteration: 6, Func. Count: 67, Neg. LLF: 148.0788662982805
Iteration: 7, Func. Count: 78, Neg. LLF: 88.29955921317068
Iteration: 8, Func. Count: 89, Neg. LLF: 85.98249689341057
Iteration: 9, Func. Count: 99, Neg. LLF: 85.99997478135082
Iteration: 10, Func. Count: 110, Neg. LLF: 85.95181898740746
Iteration: 11, Func. Count: 120, Neg. LLF: 85.94836218845072
Iteration: 12, Func. Count: 130, Neg. LLF: 85.94813349159973
Iteration: 13, Func. Count: 140, Neg. LLF: 85.94811634307902
Iteration: 14, Func. Count: 150, Neg. LLF: 85.94811542269147
Optimization terminated successfully (Exit mode 0)
Current function value: 85.94811542269147
Iterations: 14
Function evaluations: 150
Gradient evaluations: 14
Iteration: 1, Func. Count: 8, Neg. LLF: 143.07773629903244
Iteration: 2, Func. Count: 18, Neg. LLF: 526182886.4319182
Iteration: 3, Func. Count: 27, Neg. LLF: 224013.83241932566
Iteration: 4, Func. Count: 35, Neg. LLF: 2132283.080457059
Iteration: 5, Func. Count: 43, Neg. LLF: 623656.1791265534
Iteration: 6, Func. Count: 51, Neg. LLF: 25921.980379992456
Iteration: 7, Func. Count: 59, Neg. LLF: 106392.28958519411
Iteration: 8, Func. Count: 67, Neg. LLF: 95239.69538758477
Iteration: 9, Func. Count: 75, Neg. LLF: 93519.9293888856
Iteration: 10, Func. Count: 83, Neg. LLF: 90.41619005178153
Iteration: 11, Func. Count: 91, Neg. LLF: 91.61188453206107
Iteration: 12, Func. Count: 99, Neg. LLF: 88.61500505596945
Iteration: 13, Func. Count: 107, Neg. LLF: 85.87332748031272
Iteration: 14, Func. Count: 114, Neg. LLF: 85.83461360889706
Iteration: 15, Func. Count: 121, Neg. LLF: 85.78970193843972
Iteration: 16, Func. Count: 128, Neg. LLF: 85.7853271879815
Iteration: 17, Func. Count: 135, Neg. LLF: 85.78386849629095
Iteration: 18, Func. Count: 142, Neg. LLF: 85.78379259275451
Iteration: 19, Func. Count: 149, Neg. LLF: 85.78378375184471
Iteration: 20, Func. Count: 155, Neg. LLF: 85.78378373720659
Optimization terminated successfully (Exit mode 0)
Current function value: 85.78378375184471
Iterations: 20
Function evaluations: 155
Gradient evaluations: 20
Iteration: 1, Func. Count: 9, Neg. LLF: 101198488.98634483
Iteration: 2, Func. Count: 19, Neg. LLF: 1350753.0110497898
Iteration: 3, Func. Count: 28, Neg. LLF: 96.68265970357707
Iteration: 4, Func. Count: 37, Neg. LLF: 145.9368979505957
Iteration: 5, Func. Count: 46, Neg. LLF: 91.13602386977234
Iteration: 6, Func. Count: 55, Neg. LLF: 85.87110470922147
Iteration: 7, Func. Count: 63, Neg. LLF: 85.85547210565198
Iteration: 8, Func. Count: 72, Neg. LLF: 86.85317541005098
Iteration: 9, Func. Count: 81, Neg. LLF: 85.75702090599137
Iteration: 10, Func. Count: 90, Neg. LLF: 85.74248486898782
Iteration: 11, Func. Count: 98, Neg. LLF: 85.74108140331157
Iteration: 12, Func. Count: 106, Neg. LLF: 85.74040597663664
Iteration: 13, Func. Count: 114, Neg. LLF: 85.73963521311072
Iteration: 14, Func. Count: 122, Neg. LLF: 85.73948992935748
Iteration: 15, Func. Count: 130, Neg. LLF: 85.73946258699594
Iteration: 16, Func. Count: 138, Neg. LLF: 85.73945579060434
Iteration: 17, Func. Count: 146, Neg. LLF: 85.73945462657454
Iteration: 18, Func. Count: 153, Neg. LLF: 85.73945459254155
Optimization terminated successfully (Exit mode 0)
Current function value: 85.73945462657454
Iterations: 18
Function evaluations: 153
Gradient evaluations: 18
Iteration: 1, Func. Count: 10, Neg. LLF: 205821199.90741643
Iteration: 2, Func. Count: 21, Neg. LLF: 5131392.58779141
Iteration: 3, Func. Count: 31, Neg. LLF: 117.3203470061394
Iteration: 4, Func. Count: 41, Neg. LLF: 95.43702317412148
Iteration: 5, Func. Count: 51, Neg. LLF: 86.57549485237338
Iteration: 6, Func. Count: 60, Neg. LLF: 94.33568062782271
Iteration: 7, Func. Count: 70, Neg. LLF: 92.37428598529449
Iteration: 8, Func. Count: 80, Neg. LLF: 86.60024112601702
Iteration: 9, Func. Count: 90, Neg. LLF: 85.88848841759558
Iteration: 10, Func. Count: 99, Neg. LLF: 85.82296627507232
Iteration: 11, Func. Count: 108, Neg. LLF: 85.75009666276424
Iteration: 12, Func. Count: 117, Neg. LLF: 85.74381283157032
Iteration: 13, Func. Count: 126, Neg. LLF: 85.74084387030807
Iteration: 14, Func. Count: 135, Neg. LLF: 85.73986359497815
Iteration: 15, Func. Count: 144, Neg. LLF: 85.7395045868
Iteration: 16, Func. Count: 153, Neg. LLF: 85.73946328633619
Iteration: 17, Func. Count: 162, Neg. LLF: 85.73945683741908
Iteration: 18, Func. Count: 171, Neg. LLF: 85.73945486794358
Iteration: 19, Func. Count: 179, Neg. LLF: 85.73945485662412
Optimization terminated successfully (Exit mode 0)
Current function value: 85.73945486794358
Iterations: 19
Function evaluations: 179
Gradient evaluations: 19
Iteration: 1, Func. Count: 11, Neg. LLF: 242222949.41873768
Iteration: 2, Func. Count: 23, Neg. LLF: 5589620.029593342
Iteration: 3, Func. Count: 34, Neg. LLF: 118.96589648204667
Iteration: 4, Func. Count: 45, Neg. LLF: 91.24305701456525
Iteration: 5, Func. Count: 56, Neg. LLF: 90.96392168587262
Iteration: 6, Func. Count: 67, Neg. LLF: 289.3413725583827
Iteration: 7, Func. Count: 78, Neg. LLF: 227.75626115810707
Iteration: 8, Func. Count: 89, Neg. LLF: 86.50891204481728
Iteration: 9, Func. Count: 100, Neg. LLF: 86.39562682864218
Iteration: 10, Func. Count: 111, Neg. LLF: 86.63720184254841
Iteration: 11, Func. Count: 122, Neg. LLF: 86.03804552827516
Iteration: 12, Func. Count: 133, Neg. LLF: 85.77225462938674
Iteration: 13, Func. Count: 143, Neg. LLF: 85.76009288035031
Iteration: 14, Func. Count: 153, Neg. LLF: 85.74584173124629
Iteration: 15, Func. Count: 163, Neg. LLF: 85.74071105874971
Iteration: 16, Func. Count: 173, Neg. LLF: 85.73957858473638
Iteration: 17, Func. Count: 183, Neg. LLF: 85.738960127439
Iteration: 18, Func. Count: 193, Neg. LLF: 85.73887228391592
Iteration: 19, Func. Count: 203, Neg. LLF: 85.73886814558952
Iteration: 20, Func. Count: 212, Neg. LLF: 85.73886811110131
Optimization terminated successfully (Exit mode 0)
Current function value: 85.73886814558952
Iterations: 20
Function evaluations: 212
Gradient evaluations: 20
Iteration: 1, Func. Count: 12, Neg. LLF: 240011897.14988288
Iteration: 2, Func. Count: 25, Neg. LLF: 5050664.259005981
Iteration: 3, Func. Count: 37, Neg. LLF: 109.08857917017394
Iteration: 4, Func. Count: 49, Neg. LLF: 90.1200655251552
Iteration: 5, Func. Count: 61, Neg. LLF: 1042.634385174732
Iteration: 6, Func. Count: 73, Neg. LLF: 238.7183747546957
Iteration: 7, Func. Count: 85, Neg. LLF: 86.64769440422162
Iteration: 8, Func. Count: 97, Neg. LLF: 169.8525317101138
Iteration: 9, Func. Count: 109, Neg. LLF: 94.15373818216963
Iteration: 10, Func. Count: 121, Neg. LLF: 85.80807322271257
Iteration: 11, Func. Count: 132, Neg. LLF: 85.77753188558451
Iteration: 12, Func. Count: 143, Neg. LLF: 85.75674687399837
Iteration: 13, Func. Count: 154, Neg. LLF: 85.74531790236493
Iteration: 14, Func. Count: 165, Neg. LLF: 85.73973539499451
Iteration: 15, Func. Count: 176, Neg. LLF: 85.7390560294958
Iteration: 16, Func. Count: 187, Neg. LLF: 85.73887424623643
Iteration: 17, Func. Count: 198, Neg. LLF: 85.73886793642932
Iteration: 18, Func. Count: 208, Neg. LLF: 85.7388679159342
Optimization terminated successfully (Exit mode 0)
Current function value: 85.73886793642932
Iterations: 18
Function evaluations: 208
Gradient evaluations: 18
Iteration: 1, Func. Count: 5, Neg. LLF: 129.55071675855083
Iteration: 2, Func. Count: 12, Neg. LLF: 124.59123975909894
Iteration: 3, Func. Count: 17, Neg. LLF: 98.43312287110915
Iteration: 4, Func. Count: 21, Neg. LLF: 98.42448787644969
Iteration: 5, Func. Count: 25, Neg. LLF: 98.41932750193305
Iteration: 6, Func. Count: 29, Neg. LLF: 98.41931587801919
Iteration: 7, Func. Count: 32, Neg. LLF: 98.41931593348596
Optimization terminated successfully (Exit mode 0)
Current function value: 98.41931587801919
Iterations: 7
Function evaluations: 32
Gradient evaluations: 7
Iteration: 1, Func. Count: 6, Neg. LLF: 124.98586847712644
Iteration: 2, Func. Count: 16, Neg. LLF: 208.23388851434026
Iteration: 3, Func. Count: 22, Neg. LLF: 129.71288474453587
Iteration: 4, Func. Count: 28, Neg. LLF: 91.50932865374143
Iteration: 5, Func. Count: 33, Neg. LLF: 91.50865079374655
Iteration: 6, Func. Count: 38, Neg. LLF: 91.50859276601129
Iteration: 7, Func. Count: 43, Neg. LLF: 91.50859137080934
Iteration: 8, Func. Count: 47, Neg. LLF: 91.50859125492735
Optimization terminated successfully (Exit mode 0)
Current function value: 91.50859137080934
Iterations: 8
Function evaluations: 47
Gradient evaluations: 8
Iteration: 1, Func. Count: 7, Neg. LLF: 158.61724734198037
Iteration: 2, Func. Count: 15, Neg. LLF: 135.86280599283018
Iteration: 3, Func. Count: 24, Neg. LLF: 107.4620828607522
Iteration: 4, Func. Count: 31, Neg. LLF: 92.0623189555905
Iteration: 5, Func. Count: 37, Neg. LLF: 91.81992817258646
Iteration: 6, Func. Count: 43, Neg. LLF: 91.5527065371224
Iteration: 7, Func. Count: 49, Neg. LLF: 91.51911201573317
Iteration: 8, Func. Count: 55, Neg. LLF: 91.50913093544396
Iteration: 9, Func. Count: 61, Neg. LLF: 91.50861366282031
Iteration: 10, Func. Count: 67, Neg. LLF: 91.50859072112884
Iteration: 11, Func. Count: 72, Neg. LLF: 91.5085907142083
Optimization terminated successfully (Exit mode 0)
Current function value: 91.50859072112884
Iterations: 11
Function evaluations: 72
Gradient evaluations: 11
Iteration: 1, Func. Count: 8, Neg. LLF: 20519257.512556333
Iteration: 2, Func. Count: 17, Neg. LLF: 101.34471296650956
Iteration: 3, Func. Count: 25, Neg. LLF: 515.108378182012
Iteration: 4, Func. Count: 33, Neg. LLF: 94.72480949529583
Iteration: 5, Func. Count: 40, Neg. LLF: 92.16647927751589
Iteration: 6, Func. Count: 47, Neg. LLF: 91.88344987560899
Iteration: 7, Func. Count: 54, Neg. LLF: 91.74326871618523
Iteration: 8, Func. Count: 61, Neg. LLF: 91.7006786420988
Iteration: 9, Func. Count: 68, Neg. LLF: 91.61015326523004
Iteration: 10, Func. Count: 75, Neg. LLF: 91.57151722978043
Iteration: 11, Func. Count: 82, Neg. LLF: 91.51876405188764
Iteration: 12, Func. Count: 89, Neg. LLF: 91.5097563421336
Iteration: 13, Func. Count: 96, Neg. LLF: 91.50861249547931
Iteration: 14, Func. Count: 103, Neg. LLF: 91.50859083000817
Iteration: 15, Func. Count: 109, Neg. LLF: 91.50859083239395
Optimization terminated successfully (Exit mode 0)
Current function value: 91.50859083000817
Iterations: 15
Function evaluations: 109
Gradient evaluations: 15
Iteration: 1, Func. Count: 9, Neg. LLF: 20030135.91676671
Iteration: 2, Func. Count: 19, Neg. LLF: 1641.2765264523014
Iteration: 3, Func. Count: 28, Neg. LLF: 95.75145054348349
Iteration: 4, Func. Count: 36, Neg. LLF: 100.76828756937991
Iteration: 5, Func. Count: 46, Neg. LLF: 178.6961184705113
Iteration: 6, Func. Count: 56, Neg. LLF: 92.41646510277599
Iteration: 7, Func. Count: 64, Neg. LLF: 91.58588877295597
Iteration: 8, Func. Count: 72, Neg. LLF: 91.56717134799229
Iteration: 9, Func. Count: 80, Neg. LLF: 91.55027716425231
Iteration: 10, Func. Count: 88, Neg. LLF: 91.52772518561449
Iteration: 11, Func. Count: 96, Neg. LLF: 91.51209158806839
Iteration: 12, Func. Count: 104, Neg. LLF: 91.5087053813209
Iteration: 13, Func. Count: 112, Neg. LLF: 91.50859423293393
Iteration: 14, Func. Count: 120, Neg. LLF: 91.50859104867527
Iteration: 15, Func. Count: 127, Neg. LLF: 91.50859107386987
Optimization terminated successfully (Exit mode 0)
Current function value: 91.50859104867527
Iterations: 15
Function evaluations: 127
Gradient evaluations: 15
Iteration: 1, Func. Count: 6, Neg. LLF: 130.14092632646575
Iteration: 2, Func. Count: 14, Neg. LLF: 123.99301775403279
Iteration: 3, Func. Count: 20, Neg. LLF: 98.43615709481327
Iteration: 4, Func. Count: 25, Neg. LLF: 98.42553395701503
Iteration: 5, Func. Count: 30, Neg. LLF: 98.4194635668472
Iteration: 6, Func. Count: 35, Neg. LLF: 98.41931609688781
Iteration: 7, Func. Count: 39, Neg. LLF: 98.41931610256938
Optimization terminated successfully (Exit mode 0)
Current function value: 98.41931609688781
Iterations: 7
Function evaluations: 39
Gradient evaluations: 7
Iteration: 1, Func. Count: 7, Neg. LLF: 154.19353534703325
Iteration: 2, Func. Count: 20, Neg. LLF: 226.7090779658504
Iteration: 3, Func. Count: 27, Neg. LLF: 399.44996991423824
Iteration: 4, Func. Count: 35, Neg. LLF: 88.41735672868398
Iteration: 5, Func. Count: 41, Neg. LLF: 89.64342990835807
Iteration: 6, Func. Count: 49, Neg. LLF: 88.37811551897371
Iteration: 7, Func. Count: 56, Neg. LLF: 88.2270716122638
Iteration: 8, Func. Count: 62, Neg. LLF: 88.22258451254295
Iteration: 9, Func. Count: 68, Neg. LLF: 88.22242381748346
Iteration: 10, Func. Count: 74, Neg. LLF: 88.2224223008144
Iteration: 11, Func. Count: 79, Neg. LLF: 88.22242218668545
Optimization terminated successfully (Exit mode 0)
Current function value: 88.2224223008144
Iterations: 11
Function evaluations: 79
Gradient evaluations: 11
Iteration: 1, Func. Count: 8, Neg. LLF: 16799815.933836855
Iteration: 2, Func. Count: 16, Neg. LLF: 134.1768560307258
Iteration: 3, Func. Count: 24, Neg. LLF: 213.8154183382962
Iteration: 4, Func. Count: 32, Neg. LLF: 89.50042804961832
Iteration: 5, Func. Count: 39, Neg. LLF: 88.91291023602875
Iteration: 6, Func. Count: 46, Neg. LLF: 161.53976275760937
Iteration: 7, Func. Count: 55, Neg. LLF: 93.74154254828824
Iteration: 8, Func. Count: 63, Neg. LLF: 88.22727453195905
Iteration: 9, Func. Count: 70, Neg. LLF: 88.22394840312052
Iteration: 10, Func. Count: 77, Neg. LLF: 88.22244192507081
Iteration: 11, Func. Count: 84, Neg. LLF: 88.22242236624626
Iteration: 12, Func. Count: 90, Neg. LLF: 88.22242235155863
Optimization terminated successfully (Exit mode 0)
Current function value: 88.22242236624626
Iterations: 12
Function evaluations: 90
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 215066604.31701437
Iteration: 2, Func. Count: 19, Neg. LLF: 443051178.4201555
Iteration: 3, Func. Count: 29, Neg. LLF: 175.9046392754492
Iteration: 4, Func. Count: 38, Neg. LLF: 91.88631426732098
Iteration: 5, Func. Count: 46, Neg. LLF: 91.62809319351148
Iteration: 6, Func. Count: 55, Neg. LLF: 128.3408523181286
Iteration: 7, Func. Count: 65, Neg. LLF: 88.6382437682984
Iteration: 8, Func. Count: 73, Neg. LLF: 88.31123283941538
Iteration: 9, Func. Count: 81, Neg. LLF: 88.23527528031265
Iteration: 10, Func. Count: 89, Neg. LLF: 88.22678734358807
Iteration: 11, Func. Count: 97, Neg. LLF: 88.22536166587949
Iteration: 12, Func. Count: 105, Neg. LLF: 88.22461863418908
Iteration: 13, Func. Count: 113, Neg. LLF: 88.22298599995982
Iteration: 14, Func. Count: 121, Neg. LLF: 88.2225046978037
Iteration: 15, Func. Count: 129, Neg. LLF: 88.22242511605205
Iteration: 16, Func. Count: 137, Neg. LLF: 88.22242251657799
Iteration: 17, Func. Count: 144, Neg. LLF: 88.22242251109353
Optimization terminated successfully (Exit mode 0)
Current function value: 88.22242251657799
Iterations: 17
Function evaluations: 144
Gradient evaluations: 17
Iteration: 1, Func. Count: 10, Neg. LLF: 230712734.80648735
Iteration: 2, Func. Count: 21, Neg. LLF: 319407875.6405256
Iteration: 3, Func. Count: 32, Neg. LLF: 278.4513129932987
Iteration: 4, Func. Count: 42, Neg. LLF: 92.18454561030691
Iteration: 5, Func. Count: 51, Neg. LLF: 95.77975753218784
Iteration: 6, Func. Count: 61, Neg. LLF: 3749260.955841875
Iteration: 7, Func. Count: 72, Neg. LLF: 88.35954339022422
Iteration: 8, Func. Count: 81, Neg. LLF: 88.3074520679507
Iteration: 9, Func. Count: 90, Neg. LLF: 88.27169079863302
Iteration: 10, Func. Count: 99, Neg. LLF: 88.23264216477124
Iteration: 11, Func. Count: 108, Neg. LLF: 88.2244974750863
Iteration: 12, Func. Count: 117, Neg. LLF: 88.22293569077702
Iteration: 13, Func. Count: 126, Neg. LLF: 88.22277798621454
Iteration: 14, Func. Count: 135, Neg. LLF: 88.22267260392634
Iteration: 15, Func. Count: 144, Neg. LLF: 88.22247287367084
Iteration: 16, Func. Count: 153, Neg. LLF: 88.22242802292367
Iteration: 17, Func. Count: 162, Neg. LLF: 88.22242238977145
Iteration: 18, Func. Count: 170, Neg. LLF: 88.22242242214067
Optimization terminated successfully (Exit mode 0)
Current function value: 88.22242238977145
Iterations: 18
Function evaluations: 170
Gradient evaluations: 18
Iteration: 1, Func. Count: 7, Neg. LLF: 102.69072702517113
Iteration: 2, Func. Count: 15, Neg. LLF: 19996486.732584402
Iteration: 3, Func. Count: 22, Neg. LLF: 904727.280262189
Iteration: 4, Func. Count: 29, Neg. LLF: 2883824.999047864
Iteration: 5, Func. Count: 36, Neg. LLF: 2490185.089382425
Iteration: 6, Func. Count: 43, Neg. LLF: 2084.0648023051126
Iteration: 7, Func. Count: 50, Neg. LLF: 92.3636933996788
Iteration: 8, Func. Count: 57, Neg. LLF: 89.17271048296104
Iteration: 9, Func. Count: 64, Neg. LLF: 89.32750204600964
Iteration: 10, Func. Count: 71, Neg. LLF: 88.75050679960327
Iteration: 11, Func. Count: 77, Neg. LLF: 89.33175002487971
Iteration: 12, Func. Count: 84, Neg. LLF: 88.87647431770687
Iteration: 13, Func. Count: 91, Neg. LLF: 88.59902182023309
Iteration: 14, Func. Count: 97, Neg. LLF: 88.5663126090619
Iteration: 15, Func. Count: 103, Neg. LLF: 88.5136694727036
Iteration: 16, Func. Count: 109, Neg. LLF: 88.50817876934289
Iteration: 17, Func. Count: 115, Neg. LLF: 88.50256662081743
Iteration: 18, Func. Count: 121, Neg. LLF: 88.5021987562735
Iteration: 19, Func. Count: 127, Neg. LLF: 88.50218784359367
Iteration: 20, Func. Count: 132, Neg. LLF: 88.50218784210266
Optimization terminated successfully (Exit mode 0)
Current function value: 88.50218784359367
Iterations: 20
Function evaluations: 132
Gradient evaluations: 20
Iteration: 1, Func. Count: 8, Neg. LLF: 150.84283903889985
Iteration: 2, Func. Count: 22, Neg. LLF: 155.20500260772255
Iteration: 3, Func. Count: 30, Neg. LLF: 581.7028066302253
Iteration: 4, Func. Count: 39, Neg. LLF: 158.45944887478848
Iteration: 5, Func. Count: 47, Neg. LLF: 87.12442459470708
Iteration: 6, Func. Count: 54, Neg. LLF: 103.94424470932702
Iteration: 7, Func. Count: 62, Neg. LLF: 86.79264199436759
Iteration: 8, Func. Count: 69, Neg. LLF: 86.734120006156
Iteration: 9, Func. Count: 76, Neg. LLF: 86.72727761032753
Iteration: 10, Func. Count: 83, Neg. LLF: 86.7134980537498
Iteration: 11, Func. Count: 90, Neg. LLF: 86.70991590021998
Iteration: 12, Func. Count: 97, Neg. LLF: 86.70934748373168
Iteration: 13, Func. Count: 104, Neg. LLF: 86.70921946554407
Iteration: 14, Func. Count: 111, Neg. LLF: 86.70919208459449
Iteration: 15, Func. Count: 118, Neg. LLF: 86.70918959241206
Iteration: 16, Func. Count: 124, Neg. LLF: 86.70918953050833
Optimization terminated successfully (Exit mode 0)
Current function value: 86.70918959241206
Iterations: 16
Function evaluations: 124
Gradient evaluations: 16
Iteration: 1, Func. Count: 9, Neg. LLF: 127.4161748416779
Iteration: 2, Func. Count: 22, Neg. LLF: 270.1950943984524
Iteration: 3, Func. Count: 31, Neg. LLF: 174.824334902787
Iteration: 4, Func. Count: 41, Neg. LLF: 115.11356551091787
Iteration: 5, Func. Count: 50, Neg. LLF: 244.527878661024
Iteration: 6, Func. Count: 59, Neg. LLF: 88.13141739068344
Iteration: 7, Func. Count: 68, Neg. LLF: 87.23314704232955
Iteration: 8, Func. Count: 77, Neg. LLF: 87.51760961297414
Iteration: 9, Func. Count: 86, Neg. LLF: 88.5773334757675
Iteration: 10, Func. Count: 95, Neg. LLF: 86.55535283600551
Iteration: 11, Func. Count: 104, Neg. LLF: 85.82909926768251
Iteration: 12, Func. Count: 112, Neg. LLF: 85.85062757276316
Iteration: 13, Func. Count: 121, Neg. LLF: 85.75554930464813
Iteration: 14, Func. Count: 129, Neg. LLF: 85.75307048108358
Iteration: 15, Func. Count: 137, Neg. LLF: 85.7522006276915
Iteration: 16, Func. Count: 145, Neg. LLF: 85.75210451092768
Iteration: 17, Func. Count: 153, Neg. LLF: 85.75209582946349
Iteration: 18, Func. Count: 161, Neg. LLF: 85.75209431844752
Iteration: 19, Func. Count: 168, Neg. LLF: 85.75209427824349
Optimization terminated successfully (Exit mode 0)
Current function value: 85.75209431844752
Iterations: 19
Function evaluations: 168
Gradient evaluations: 19
Iteration: 1, Func. Count: 10, Neg. LLF: 95.00925884829482
Iteration: 2, Func. Count: 21, Neg. LLF: 126830002.22228833
Iteration: 3, Func. Count: 31, Neg. LLF: 4287366.037641911
Iteration: 4, Func. Count: 41, Neg. LLF: 104.6394050702803
Iteration: 5, Func. Count: 51, Neg. LLF: 88.32870957538215
Iteration: 6, Func. Count: 61, Neg. LLF: 94.85285399299832
Iteration: 7, Func. Count: 71, Neg. LLF: 95.9237988039563
Iteration: 8, Func. Count: 81, Neg. LLF: 86.1003415033676
Iteration: 9, Func. Count: 90, Neg. LLF: 85.97010441220515
Iteration: 10, Func. Count: 100, Neg. LLF: 85.8137689609466
Iteration: 11, Func. Count: 109, Neg. LLF: 85.75511846842721
Iteration: 12, Func. Count: 118, Neg. LLF: 85.75244140332478
Iteration: 13, Func. Count: 127, Neg. LLF: 85.75218364620818
Iteration: 14, Func. Count: 136, Neg. LLF: 85.75214117002054
Iteration: 15, Func. Count: 145, Neg. LLF: 85.75210275657989
Iteration: 16, Func. Count: 154, Neg. LLF: 85.75209421693819
Iteration: 17, Func. Count: 162, Neg. LLF: 85.75209418180512
Optimization terminated successfully (Exit mode 0)
Current function value: 85.75209421693819
Iterations: 17
Function evaluations: 162
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 7549120.075201203
Iteration: 2, Func. Count: 22, Neg. LLF: 99.37821541658035
Iteration: 3, Func. Count: 36, Neg. LLF: 101.20627810832072
Iteration: 4, Func. Count: 47, Neg. LLF: 173.9283187177766
Iteration: 5, Func. Count: 59, Neg. LLF: 227.93617458493824
Iteration: 6, Func. Count: 70, Neg. LLF: 94.47768127839907
Iteration: 7, Func. Count: 81, Neg. LLF: 107.08061905999254
Iteration: 8, Func. Count: 92, Neg. LLF: 90.38213647147015
Iteration: 9, Func. Count: 103, Neg. LLF: 86.95803499678318
Iteration: 10, Func. Count: 113, Neg. LLF: 86.72572103594688
Iteration: 11, Func. Count: 124, Neg. LLF: 86.2761615518016
Iteration: 12, Func. Count: 134, Neg. LLF: 85.92035814066405
Iteration: 13, Func. Count: 144, Neg. LLF: 85.80419138557112
Iteration: 14, Func. Count: 154, Neg. LLF: 85.7631847799902
Iteration: 15, Func. Count: 164, Neg. LLF: 85.75837675156737
Iteration: 16, Func. Count: 174, Neg. LLF: 85.75320645677054
Iteration: 17, Func. Count: 184, Neg. LLF: 85.75262925816457
Iteration: 18, Func. Count: 194, Neg. LLF: 85.75224856318972
Iteration: 19, Func. Count: 204, Neg. LLF: 85.75209697814618
Iteration: 20, Func. Count: 214, Neg. LLF: 85.75209393989472
Iteration: 21, Func. Count: 223, Neg. LLF: 85.75209392423764
Optimization terminated successfully (Exit mode 0)
Current function value: 85.75209393989472
Iterations: 21
Function evaluations: 223
Gradient evaluations: 21
Iteration: 1, Func. Count: 8, Neg. LLF: 112.01006932008968
Iteration: 2, Func. Count: 17, Neg. LLF: 264372162.26250684
Iteration: 3, Func. Count: 25, Neg. LLF: 6309389.790707549
Iteration: 4, Func. Count: 33, Neg. LLF: 909043.1753783262
Iteration: 5, Func. Count: 41, Neg. LLF: 2478461.4542543762
Iteration: 6, Func. Count: 49, Neg. LLF: 793488.093739212
Iteration: 7, Func. Count: 57, Neg. LLF: 3444.86251598358
Iteration: 8, Func. Count: 65, Neg. LLF: 94.24806277543006
Iteration: 9, Func. Count: 73, Neg. LLF: 90.92267756484434
Iteration: 10, Func. Count: 81, Neg. LLF: 89.4648137602047
Iteration: 11, Func. Count: 89, Neg. LLF: 90.07091518673481
Iteration: 12, Func. Count: 97, Neg. LLF: 88.81620796865224
Iteration: 13, Func. Count: 104, Neg. LLF: 88.7116180138461
Iteration: 14, Func. Count: 111, Neg. LLF: 88.60392547455037
Iteration: 15, Func. Count: 118, Neg. LLF: 88.56013666501724
Iteration: 16, Func. Count: 125, Neg. LLF: 88.51013799861629
Iteration: 17, Func. Count: 132, Neg. LLF: 88.5023416986894
Iteration: 18, Func. Count: 139, Neg. LLF: 88.50219315977307
Iteration: 19, Func. Count: 146, Neg. LLF: 88.5021879206183
Iteration: 20, Func. Count: 152, Neg. LLF: 88.50218798468026
Optimization terminated successfully (Exit mode 0)
Current function value: 88.5021879206183
Iterations: 20
Function evaluations: 152
Gradient evaluations: 20
Iteration: 1, Func. Count: 9, Neg. LLF: 5373091.8943410525
Iteration: 2, Func. Count: 18, Neg. LLF: 97240603.51993619
Iteration: 3, Func. Count: 27, Neg. LLF: 89.87286281372923
Iteration: 4, Func. Count: 36, Neg. LLF: 289.5407880791604
Iteration: 5, Func. Count: 45, Neg. LLF: 90.27372985067471
Iteration: 6, Func. Count: 54, Neg. LLF: 86.96267984384403
Iteration: 7, Func. Count: 62, Neg. LLF: 123.90491456317709
Iteration: 8, Func. Count: 71, Neg. LLF: 92.19008555764773
Iteration: 9, Func. Count: 80, Neg. LLF: 86.78467101947842
Iteration: 10, Func. Count: 88, Neg. LLF: 86.7190618239972
Iteration: 11, Func. Count: 96, Neg. LLF: 86.71287948907361
Iteration: 12, Func. Count: 104, Neg. LLF: 86.70954318882723
Iteration: 13, Func. Count: 112, Neg. LLF: 86.70920639678535
Iteration: 14, Func. Count: 120, Neg. LLF: 86.70918960534819
Iteration: 15, Func. Count: 127, Neg. LLF: 86.7091895433774
Optimization terminated successfully (Exit mode 0)
Current function value: 86.70918960534819
Iterations: 15
Function evaluations: 127
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 140.3057852001662
Iteration: 2, Func. Count: 24, Neg. LLF: 8024355.537795449
Iteration: 3, Func. Count: 34, Neg. LLF: 206.183155547594
Iteration: 4, Func. Count: 45, Neg. LLF: 98.18489446049799
Iteration: 5, Func. Count: 55, Neg. LLF: 173985.50348279966
Iteration: 6, Func. Count: 65, Neg. LLF: 89.49464583680002
Iteration: 7, Func. Count: 75, Neg. LLF: 94.94625981201848
Iteration: 8, Func. Count: 85, Neg. LLF: 90.38187704832265
Iteration: 9, Func. Count: 95, Neg. LLF: 93.17395354326476
Iteration: 10, Func. Count: 105, Neg. LLF: 88.65613490140481
Iteration: 11, Func. Count: 115, Neg. LLF: 86.88281153409858
Iteration: 12, Func. Count: 125, Neg. LLF: 85.77917120952154
Iteration: 13, Func. Count: 134, Neg. LLF: 85.75814517830518
Iteration: 14, Func. Count: 143, Neg. LLF: 85.75578011063953
Iteration: 15, Func. Count: 152, Neg. LLF: 85.75237220457574
Iteration: 16, Func. Count: 161, Neg. LLF: 85.75212693864846
Iteration: 17, Func. Count: 170, Neg. LLF: 85.75209467439626
Iteration: 18, Func. Count: 179, Neg. LLF: 85.75209393448287
Optimization terminated successfully (Exit mode 0)
Current function value: 85.75209393448287
Iterations: 18
Function evaluations: 179
Gradient evaluations: 18
Iteration: 1, Func. Count: 11, Neg. LLF: 115.1286938742354
Iteration: 2, Func. Count: 25, Neg. LLF: 167772559.69893244
Iteration: 3, Func. Count: 36, Neg. LLF: 5073831.1591182975
Iteration: 4, Func. Count: 47, Neg. LLF: 105.83364987476746
Iteration: 5, Func. Count: 58, Neg. LLF: 89.13486226905728
Iteration: 6, Func. Count: 69, Neg. LLF: 94.7318712783862
Iteration: 7, Func. Count: 80, Neg. LLF: 88.96031833788705
Iteration: 8, Func. Count: 91, Neg. LLF: 87.81126242881075
Iteration: 9, Func. Count: 102, Neg. LLF: 86.01294489339885
Iteration: 10, Func. Count: 112, Neg. LLF: 85.81307233704814
Iteration: 11, Func. Count: 122, Neg. LLF: 85.74108521987922
Iteration: 12, Func. Count: 132, Neg. LLF: 85.74111136324392
Iteration: 13, Func. Count: 143, Neg. LLF: 85.73859042837799
Iteration: 14, Func. Count: 153, Neg. LLF: 85.73846615535756
Iteration: 15, Func. Count: 163, Neg. LLF: 85.73846540789775
Optimization terminated successfully (Exit mode 0)
Current function value: 85.73846540789775
Iterations: 15
Function evaluations: 163
Gradient evaluations: 15
Iteration: 1, Func. Count: 12, Neg. LLF: 4223572.955491704
Iteration: 2, Func. Count: 24, Neg. LLF: 427.1719436216743
Iteration: 3, Func. Count: 37, Neg. LLF: 4414553.408492613
Iteration: 4, Func. Count: 49, Neg. LLF: 109.60751512862537
Iteration: 5, Func. Count: 61, Neg. LLF: 91.26112994592873
Iteration: 6, Func. Count: 73, Neg. LLF: 88.54721591920519
Iteration: 7, Func. Count: 85, Neg. LLF: 90.00873787785422
Iteration: 8, Func. Count: 97, Neg. LLF: 86.16618160838696
Iteration: 9, Func. Count: 108, Neg. LLF: 86.71472763256897
Iteration: 10, Func. Count: 120, Neg. LLF: 85.88940233996398
Iteration: 11, Func. Count: 131, Neg. LLF: 86.14751043314664
Iteration: 12, Func. Count: 143, Neg. LLF: 85.90218447408792
Iteration: 13, Func. Count: 155, Neg. LLF: 85.77075995464352
Iteration: 14, Func. Count: 166, Neg. LLF: 85.7547996618112
Iteration: 15, Func. Count: 177, Neg. LLF: 85.75249327538978
Iteration: 16, Func. Count: 188, Neg. LLF: 85.75210944331401
Iteration: 17, Func. Count: 199, Neg. LLF: 85.75209419430716
Iteration: 18, Func. Count: 209, Neg. LLF: 85.75209417850031
Optimization terminated successfully (Exit mode 0)
Current function value: 85.75209419430716
Iterations: 18
Function evaluations: 209
Gradient evaluations: 18
Iteration: 1, Func. Count: 9, Neg. LLF: 127.08981227343438
Iteration: 2, Func. Count: 20, Neg. LLF: 387606119.4551002
Iteration: 3, Func. Count: 30, Neg. LLF: 188262.07089395495
Iteration: 4, Func. Count: 39, Neg. LLF: 1678004.4508720546
Iteration: 5, Func. Count: 48, Neg. LLF: 248829.44370841575
Iteration: 6, Func. Count: 57, Neg. LLF: 1730841.8824169114
Iteration: 7, Func. Count: 66, Neg. LLF: 1734085.395783274
Iteration: 8, Func. Count: 75, Neg. LLF: 1733514.7704700262
Iteration: 9, Func. Count: 84, Neg. LLF: 297631.0274290749
Iteration: 10, Func. Count: 93, Neg. LLF: 89.28130943569137
Iteration: 11, Func. Count: 102, Neg. LLF: 243548.64346117547
Iteration: 12, Func. Count: 111, Neg. LLF: 121.97397594635085
Iteration: 13, Func. Count: 120, Neg. LLF: 133.75790722299635
Iteration: 14, Func. Count: 129, Neg. LLF: 85.52743740633785
Iteration: 15, Func. Count: 137, Neg. LLF: 85.46308764869971
Iteration: 16, Func. Count: 145, Neg. LLF: 85.48159111937021
Iteration: 17, Func. Count: 154, Neg. LLF: 85.45495879921211
Iteration: 18, Func. Count: 162, Neg. LLF: 85.45488036519413
Iteration: 19, Func. Count: 170, Neg. LLF: 85.45487771371864
Iteration: 20, Func. Count: 178, Neg. LLF: 85.45487687821448
Optimization terminated successfully (Exit mode 0)
Current function value: 85.45487687821448
Iterations: 20
Function evaluations: 178
Gradient evaluations: 20
Iteration: 1, Func. Count: 10, Neg. LLF: 5799441.864103608
Iteration: 2, Func. Count: 20, Neg. LLF: 98490999.11677983
Iteration: 3, Func. Count: 30, Neg. LLF: 105.33119246337263
Iteration: 4, Func. Count: 40, Neg. LLF: 74118.69011454315
Iteration: 5, Func. Count: 50, Neg. LLF: 119.67044627219647
Iteration: 6, Func. Count: 61, Neg. LLF: 98.55301009175011
Iteration: 7, Func. Count: 71, Neg. LLF: 88.44248252164232
Iteration: 8, Func. Count: 81, Neg. LLF: 86.34791057557939
Iteration: 9, Func. Count: 90, Neg. LLF: 87.06319343712201
Iteration: 10, Func. Count: 101, Neg. LLF: 140.7947174709886
Iteration: 11, Func. Count: 111, Neg. LLF: 85.82914061645387
Iteration: 12, Func. Count: 120, Neg. LLF: 85.69467377434543
Iteration: 13, Func. Count: 129, Neg. LLF: 85.61504059523813
Iteration: 14, Func. Count: 138, Neg. LLF: 85.48434683550416
Iteration: 15, Func. Count: 147, Neg. LLF: 85.46398333802199
Iteration: 16, Func. Count: 156, Neg. LLF: 85.45774546171585
Iteration: 17, Func. Count: 165, Neg. LLF: 85.45497333069036
Iteration: 18, Func. Count: 174, Neg. LLF: 85.45489555074796
Iteration: 19, Func. Count: 183, Neg. LLF: 85.45487856611223
Iteration: 20, Func. Count: 192, Neg. LLF: 85.45487689361447
Iteration: 21, Func. Count: 200, Neg. LLF: 85.45487689951038
Optimization terminated successfully (Exit mode 0)
Current function value: 85.45487689361447
Iterations: 21
Function evaluations: 200
Gradient evaluations: 21
Iteration: 1, Func. Count: 11, Neg. LLF: 5081464.657727544
Iteration: 2, Func. Count: 22, Neg. LLF: 267946897.46416995
Iteration: 3, Func. Count: 34, Neg. LLF: 4244266.6669848235
Iteration: 4, Func. Count: 45, Neg. LLF: 89.1385651562944
Iteration: 5, Func. Count: 56, Neg. LLF: 90.9218405344067
Iteration: 6, Func. Count: 67, Neg. LLF: 90.76898426493453
Iteration: 7, Func. Count: 78, Neg. LLF: 88.24291699466058
Iteration: 8, Func. Count: 89, Neg. LLF: 86.92924649447072
Iteration: 9, Func. Count: 100, Neg. LLF: 86.1260604049463
Iteration: 10, Func. Count: 111, Neg. LLF: 85.49652276411103
Iteration: 11, Func. Count: 121, Neg. LLF: 85.62879521842258
Iteration: 12, Func. Count: 132, Neg. LLF: 85.45542045731268
Iteration: 13, Func. Count: 142, Neg. LLF: 85.45489199652698
Iteration: 14, Func. Count: 152, Neg. LLF: 85.45487917386828
Iteration: 15, Func. Count: 162, Neg. LLF: 85.45487748182877
Iteration: 16, Func. Count: 172, Neg. LLF: 85.45487683822151
Optimization terminated successfully (Exit mode 0)
Current function value: 85.45487683822151
Iterations: 16
Function evaluations: 172
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 28291855.38978705
Iteration: 2, Func. Count: 24, Neg. LLF: 206.45584576144947
Iteration: 3, Func. Count: 37, Neg. LLF: 135.21450901228997
Iteration: 4, Func. Count: 51, Neg. LLF: 100.112358221953
Iteration: 5, Func. Count: 63, Neg. LLF: 124.19097627368208
Iteration: 6, Func. Count: 75, Neg. LLF: 91.69814578502775
Iteration: 7, Func. Count: 87, Neg. LLF: 92.91715773524412
Iteration: 8, Func. Count: 99, Neg. LLF: 86.91122923789075
Iteration: 9, Func. Count: 111, Neg. LLF: 90.21458117293497
Iteration: 10, Func. Count: 123, Neg. LLF: 87.1928226637776
Iteration: 11, Func. Count: 135, Neg. LLF: 86.71593296118316
Iteration: 12, Func. Count: 147, Neg. LLF: 86.56381813048037
Iteration: 13, Func. Count: 159, Neg. LLF: 85.41010699005838
Iteration: 14, Func. Count: 170, Neg. LLF: 85.52589601449215
Iteration: 15, Func. Count: 182, Neg. LLF: 85.38629342812747
Iteration: 16, Func. Count: 193, Neg. LLF: 85.38438808697363
Iteration: 17, Func. Count: 204, Neg. LLF: 85.38373702066724
Iteration: 18, Func. Count: 215, Neg. LLF: 85.38367660721444
Iteration: 19, Func. Count: 226, Neg. LLF: 85.38367425326916
Iteration: 20, Func. Count: 236, Neg. LLF: 85.38367421579895
Optimization terminated successfully (Exit mode 0)
Current function value: 85.38367425326916
Iterations: 20
Function evaluations: 236
Gradient evaluations: 20
Iteration: 1, Func. Count: 13, Neg. LLF: 103.91734164437152
Iteration: 2, Func. Count: 26, Neg. LLF: 121334972.73425004
Iteration: 3, Func. Count: 39, Neg. LLF: 1727911.9873243542
Iteration: 4, Func. Count: 52, Neg. LLF: 2172546.8364809304
Iteration: 5, Func. Count: 65, Neg. LLF: 88.96391516954908
Iteration: 6, Func. Count: 78, Neg. LLF: 89.5265419504095
Iteration: 7, Func. Count: 91, Neg. LLF: 86.91328389322216
Iteration: 8, Func. Count: 104, Neg. LLF: 85.98087790856913
Iteration: 9, Func. Count: 117, Neg. LLF: 85.45279682650023
Iteration: 10, Func. Count: 129, Neg. LLF: 85.46527091473642
Iteration: 11, Func. Count: 142, Neg. LLF: 85.3942369944054
Iteration: 12, Func. Count: 154, Neg. LLF: 85.38705211987313
Iteration: 13, Func. Count: 166, Neg. LLF: 85.3840777769051
Iteration: 14, Func. Count: 178, Neg. LLF: 85.38371089555095
Iteration: 15, Func. Count: 190, Neg. LLF: 85.38367580556482
Iteration: 16, Func. Count: 202, Neg. LLF: 85.38367449077788
Iteration: 17, Func. Count: 213, Neg. LLF: 85.38367449696825
Optimization terminated successfully (Exit mode 0)
Current function value: 85.38367449077788
Iterations: 17
Function evaluations: 213
Gradient evaluations: 17
Iteration: 1, Func. Count: 6, Neg. LLF: 117.20567978951046
Iteration: 2, Func. Count: 13, Neg. LLF: 289.2118424031759
Iteration: 3, Func. Count: 19, Neg. LLF: 3877.3800650745816
Iteration: 4, Func. Count: 25, Neg. LLF: 61036.67948934731
Iteration: 5, Func. Count: 31, Neg. LLF: 308965.9484362565
Iteration: 6, Func. Count: 37, Neg. LLF: 6160.625565631109
Iteration: 7, Func. Count: 43, Neg. LLF: 8587.352254748877
Iteration: 8, Func. Count: 49, Neg. LLF: 99.73631839021517
Iteration: 9, Func. Count: 55, Neg. LLF: 92.27362752653374
Iteration: 10, Func. Count: 61, Neg. LLF: 91.08577852613529
Iteration: 11, Func. Count: 67, Neg. LLF: 89.6316954236633
Iteration: 12, Func. Count: 73, Neg. LLF: 89.15946535444714
Iteration: 13, Func. Count: 78, Neg. LLF: 89.1253724528835
Iteration: 14, Func. Count: 83, Neg. LLF: 89.12520378448843
Iteration: 15, Func. Count: 88, Neg. LLF: 89.12520314180325
Optimization terminated successfully (Exit mode 0)
Current function value: 89.12520314180325
Iterations: 15
Function evaluations: 88
Gradient evaluations: 15
Iteration: 1, Func. Count: 7, Neg. LLF: 114.51120799319906
Iteration: 2, Func. Count: 17, Neg. LLF: 169.60195635472064
Iteration: 3, Func. Count: 24, Neg. LLF: 109.59081971281509
Iteration: 4, Func. Count: 31, Neg. LLF: 89.24674823139719
Iteration: 5, Func. Count: 37, Neg. LLF: 112.07180927606241
Iteration: 6, Func. Count: 44, Neg. LLF: 89.10214107342188
Iteration: 7, Func. Count: 50, Neg. LLF: 89.08708449459296
Iteration: 8, Func. Count: 56, Neg. LLF: 89.07933563517248
Iteration: 9, Func. Count: 62, Neg. LLF: 89.07697051374265
Iteration: 10, Func. Count: 68, Neg. LLF: 89.07689235692261
Iteration: 11, Func. Count: 74, Neg. LLF: 89.07680007331035
Iteration: 12, Func. Count: 80, Neg. LLF: 89.07670769279356
Iteration: 13, Func. Count: 86, Neg. LLF: 89.07668521502953
Iteration: 14, Func. Count: 92, Neg. LLF: 89.0766831635745
Iteration: 15, Func. Count: 97, Neg. LLF: 89.07668313420453
Optimization terminated successfully (Exit mode 0)
Current function value: 89.0766831635745
Iterations: 15
Function evaluations: 97
Gradient evaluations: 15
Iteration: 1, Func. Count: 8, Neg. LLF: 1543.9413400616718
Iteration: 2, Func. Count: 16, Neg. LLF: 126.18184000502406
Iteration: 3, Func. Count: 24, Neg. LLF: 124.81815590791322
Iteration: 4, Func. Count: 32, Neg. LLF: 97.98789792100061
Iteration: 5, Func. Count: 40, Neg. LLF: 90.7703603488811
Iteration: 6, Func. Count: 48, Neg. LLF: 88.4938996401083
Iteration: 7, Func. Count: 55, Neg. LLF: 88.31975256662301
Iteration: 8, Func. Count: 62, Neg. LLF: 88.30742183953596
Iteration: 9, Func. Count: 69, Neg. LLF: 88.30785439942383
Iteration: 10, Func. Count: 77, Neg. LLF: 88.30543451329446
Iteration: 11, Func. Count: 84, Neg. LLF: 88.3047969897583
Iteration: 12, Func. Count: 91, Neg. LLF: 88.30479555514387
Iteration: 13, Func. Count: 97, Neg. LLF: 88.30479551405335
Optimization terminated successfully (Exit mode 0)
Current function value: 88.30479555514387
Iterations: 13
Function evaluations: 97
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 219.61716245634412
Iteration: 2, Func. Count: 18, Neg. LLF: 9360.15005061524
Iteration: 3, Func. Count: 27, Neg. LLF: 5787406.10078001
Iteration: 4, Func. Count: 36, Neg. LLF: 154.03846223667148
Iteration: 5, Func. Count: 45, Neg. LLF: 91.23128308075545
Iteration: 6, Func. Count: 54, Neg. LLF: 88.15118407307253
Iteration: 7, Func. Count: 62, Neg. LLF: 87.83637708932815
Iteration: 8, Func. Count: 71, Neg. LLF: 91.05416548575074
Iteration: 9, Func. Count: 81, Neg. LLF: 87.73853894454432
Iteration: 10, Func. Count: 90, Neg. LLF: 87.36854755187076
Iteration: 11, Func. Count: 99, Neg. LLF: 88.96185441709339
Iteration: 12, Func. Count: 109, Neg. LLF: 87.15655181065506
Iteration: 13, Func. Count: 117, Neg. LLF: 87.1103978907879
Iteration: 14, Func. Count: 125, Neg. LLF: 87.09667582236989
Iteration: 15, Func. Count: 133, Neg. LLF: 87.08173878522031
Iteration: 16, Func. Count: 141, Neg. LLF: 87.0782217946066
Iteration: 17, Func. Count: 149, Neg. LLF: 87.07713589407746
Iteration: 18, Func. Count: 157, Neg. LLF: 87.07712344896896
Iteration: 19, Func. Count: 165, Neg. LLF: 87.07712284632518
Optimization terminated successfully (Exit mode 0)
Current function value: 87.07712284632518
Iterations: 19
Function evaluations: 165
Gradient evaluations: 19
Iteration: 1, Func. Count: 10, Neg. LLF: 28474.109131854504
Iteration: 2, Func. Count: 20, Neg. LLF: 486.9752310482666
Iteration: 3, Func. Count: 30, Neg. LLF: 124.94899479313551
Iteration: 4, Func. Count: 40, Neg. LLF: 91.28146373097212
Iteration: 5, Func. Count: 50, Neg. LLF: 87.59739079306904
Iteration: 6, Func. Count: 59, Neg. LLF: 96.84068408478261
Iteration: 7, Func. Count: 70, Neg. LLF: 92.79080598524654
Iteration: 8, Func. Count: 82, Neg. LLF: 94.53505529704967
Iteration: 9, Func. Count: 93, Neg. LLF: 87.99485582270697
Iteration: 10, Func. Count: 104, Neg. LLF: 87.128015699591
Iteration: 11, Func. Count: 113, Neg. LLF: 87.0815966384839
Iteration: 12, Func. Count: 122, Neg. LLF: 87.07977655096795
Iteration: 13, Func. Count: 131, Neg. LLF: 87.0772192757782
Iteration: 14, Func. Count: 140, Neg. LLF: 87.07715895279532
Iteration: 15, Func. Count: 149, Neg. LLF: 87.0771261890382
Iteration: 16, Func. Count: 158, Neg. LLF: 87.07712368357578
Iteration: 17, Func. Count: 166, Neg. LLF: 87.07712373175688
Optimization terminated successfully (Exit mode 0)
Current function value: 87.07712368357578
Iterations: 17
Function evaluations: 166
Gradient evaluations: 17
Iteration: 1, Func. Count: 7, Neg. LLF: 109.68493854480766
Iteration: 2, Func. Count: 15, Neg. LLF: 3574.327259345012
Iteration: 3, Func. Count: 22, Neg. LLF: 24409.17256056169
Iteration: 4, Func. Count: 29, Neg. LLF: 3761.6986199872817
Iteration: 5, Func. Count: 36, Neg. LLF: 377.87427938668554
Iteration: 6, Func. Count: 43, Neg. LLF: 417645.8680697766
Iteration: 7, Func. Count: 50, Neg. LLF: 236.9129162801556
Iteration: 8, Func. Count: 57, Neg. LLF: 111.33853922332558
Iteration: 9, Func. Count: 64, Neg. LLF: 89.86838955343751
Iteration: 10, Func. Count: 71, Neg. LLF: 89.06553286986176
Iteration: 11, Func. Count: 78, Neg. LLF: 88.32653656211724
Iteration: 12, Func. Count: 84, Neg. LLF: 89.13100689269535
Iteration: 13, Func. Count: 91, Neg. LLF: 88.56084919352901
Iteration: 14, Func. Count: 98, Neg. LLF: 88.2676217167614
Iteration: 15, Func. Count: 104, Neg. LLF: 88.26198865702345
Iteration: 16, Func. Count: 110, Neg. LLF: 88.2602872694917
Iteration: 17, Func. Count: 116, Neg. LLF: 88.26003045366527
Iteration: 18, Func. Count: 122, Neg. LLF: 88.26002562798226
Iteration: 19, Func. Count: 127, Neg. LLF: 88.26002561961243
Optimization terminated successfully (Exit mode 0)
Current function value: 88.26002562798226
Iterations: 19
Function evaluations: 127
Gradient evaluations: 19
Iteration: 1, Func. Count: 8, Neg. LLF: 154.6730264644907
Iteration: 2, Func. Count: 22, Neg. LLF: 231.89358017840178
Iteration: 3, Func. Count: 30, Neg. LLF: 380.5334586350106
Iteration: 4, Func. Count: 39, Neg. LLF: 87.61364553251525
Iteration: 5, Func. Count: 46, Neg. LLF: 88.33989651782937
Iteration: 6, Func. Count: 54, Neg. LLF: 87.43009371503967
Iteration: 7, Func. Count: 61, Neg. LLF: 87.42841202958262
Iteration: 8, Func. Count: 68, Neg. LLF: 87.42783843874399
Iteration: 9, Func. Count: 75, Neg. LLF: 87.4269782583424
Iteration: 10, Func. Count: 82, Neg. LLF: 87.42695324929709
Iteration: 11, Func. Count: 89, Neg. LLF: 87.42694189045923
Iteration: 12, Func. Count: 95, Neg. LLF: 87.42694184571626
Optimization terminated successfully (Exit mode 0)
Current function value: 87.42694189045923
Iterations: 12
Function evaluations: 95
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 130.44900563008449
Iteration: 2, Func. Count: 22, Neg. LLF: 107.70361221243101
Iteration: 3, Func. Count: 31, Neg. LLF: 133.4351881230764
Iteration: 4, Func. Count: 40, Neg. LLF: 95.55497205560879
Iteration: 5, Func. Count: 49, Neg. LLF: 88.6396079378007
Iteration: 6, Func. Count: 58, Neg. LLF: 87.84644828417085
Iteration: 7, Func. Count: 67, Neg. LLF: 87.60327566746773
Iteration: 8, Func. Count: 76, Neg. LLF: 87.49875743191151
Iteration: 9, Func. Count: 85, Neg. LLF: 87.61649245677691
Iteration: 10, Func. Count: 94, Neg. LLF: 87.45709471217614
Iteration: 11, Func. Count: 102, Neg. LLF: 87.45510946476516
Iteration: 12, Func. Count: 110, Neg. LLF: 87.45489128323179
Iteration: 13, Func. Count: 118, Neg. LLF: 87.4546481120816
Iteration: 14, Func. Count: 126, Neg. LLF: 87.45459095254816
Iteration: 15, Func. Count: 134, Neg. LLF: 87.45458326473718
Iteration: 16, Func. Count: 141, Neg. LLF: 87.45458321986484
Optimization terminated successfully (Exit mode 0)
Current function value: 87.45458326473718
Iterations: 16
Function evaluations: 141
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 104.1039637218439
Iteration: 2, Func. Count: 22, Neg. LLF: 114.13354121331952
Iteration: 3, Func. Count: 32, Neg. LLF: 210.74023446757855
Iteration: 4, Func. Count: 43, Neg. LLF: 89.51671709259847
Iteration: 5, Func. Count: 53, Neg. LLF: 93.16340118876667
Iteration: 6, Func. Count: 63, Neg. LLF: 87.56241067615721
Iteration: 7, Func. Count: 72, Neg. LLF: 87.17230551825216
Iteration: 8, Func. Count: 81, Neg. LLF: 89.29690729083755
Iteration: 9, Func. Count: 92, Neg. LLF: 87.83956087323725
Iteration: 10, Func. Count: 102, Neg. LLF: 87.1378399088547
Iteration: 11, Func. Count: 112, Neg. LLF: 87.08418260706125
Iteration: 12, Func. Count: 121, Neg. LLF: 87.10994592131358
Iteration: 13, Func. Count: 131, Neg. LLF: 87.05488628081284
Iteration: 14, Func. Count: 140, Neg. LLF: 87.05137674081493
Iteration: 15, Func. Count: 149, Neg. LLF: 87.05116605802446
Iteration: 16, Func. Count: 158, Neg. LLF: 87.05116125363021
Iteration: 17, Func. Count: 167, Neg. LLF: 87.05115744111579
Iteration: 18, Func. Count: 175, Neg. LLF: 87.05115740617633
Optimization terminated successfully (Exit mode 0)
Current function value: 87.05115744111579
Iterations: 18
Function evaluations: 175
Gradient evaluations: 18
Iteration: 1, Func. Count: 11, Neg. LLF: 2302.2166642599955
Iteration: 2, Func. Count: 22, Neg. LLF: 94.07620314763422
Iteration: 3, Func. Count: 33, Neg. LLF: 143.2056500319983
Iteration: 4, Func. Count: 44, Neg. LLF: 99.98198739615582
Iteration: 5, Func. Count: 55, Neg. LLF: 96.84049736430758
Iteration: 6, Func. Count: 66, Neg. LLF: 105.73906159396837
Iteration: 7, Func. Count: 77, Neg. LLF: 102.82809075005102
Iteration: 8, Func. Count: 88, Neg. LLF: 98.14461750075445
Iteration: 9, Func. Count: 99, Neg. LLF: 88.67948786823835
Iteration: 10, Func. Count: 110, Neg. LLF: 87.67999321400595
Iteration: 11, Func. Count: 121, Neg. LLF: 87.21876535965978
Iteration: 12, Func. Count: 131, Neg. LLF: 87.17735043140111
Iteration: 13, Func. Count: 141, Neg. LLF: 87.69927806146951
Iteration: 14, Func. Count: 152, Neg. LLF: 88.0532117213394
Iteration: 15, Func. Count: 164, Neg. LLF: 91.91007819531873
Iteration: 16, Func. Count: 176, Neg. LLF: 87.0568370786583
Iteration: 17, Func. Count: 186, Neg. LLF: 87.05955721937232
Iteration: 18, Func. Count: 197, Neg. LLF: 87.05131970208663
Iteration: 19, Func. Count: 207, Neg. LLF: 87.05116109614714
Iteration: 20, Func. Count: 217, Neg. LLF: 87.05115752407632
Iteration: 21, Func. Count: 226, Neg. LLF: 87.05115757099027
Optimization terminated successfully (Exit mode 0)
Current function value: 87.05115752407632
Iterations: 21
Function evaluations: 226
Gradient evaluations: 21
Iteration: 1, Func. Count: 8, Neg. LLF: 96.56071200823196
Iteration: 2, Func. Count: 16, Neg. LLF: 590.7826624450385
Iteration: 3, Func. Count: 24, Neg. LLF: 103.4631989719136
Iteration: 4, Func. Count: 32, Neg. LLF: 186.10053318240176
Iteration: 5, Func. Count: 40, Neg. LLF: 713.0069926067636
Iteration: 6, Func. Count: 48, Neg. LLF: 87.76441602903076
Iteration: 7, Func. Count: 56, Neg. LLF: 88.99602314843838
Iteration: 8, Func. Count: 64, Neg. LLF: 86.99835983087848
Iteration: 9, Func. Count: 71, Neg. LLF: 87.62081812412195
Iteration: 10, Func. Count: 79, Neg. LLF: 86.91449998984855
Iteration: 11, Func. Count: 86, Neg. LLF: 86.91294989421155
Iteration: 12, Func. Count: 93, Neg. LLF: 86.91227982966764
Iteration: 13, Func. Count: 100, Neg. LLF: 86.91189506524562
Iteration: 14, Func. Count: 107, Neg. LLF: 86.91182716310914
Iteration: 15, Func. Count: 114, Neg. LLF: 86.91180180081524
Iteration: 16, Func. Count: 121, Neg. LLF: 86.91177958617018
Iteration: 17, Func. Count: 128, Neg. LLF: 86.91177610525344
Iteration: 18, Func. Count: 134, Neg. LLF: 86.91177609941542
Optimization terminated successfully (Exit mode 0)
Current function value: 86.91177610525344
Iterations: 18
Function evaluations: 134
Gradient evaluations: 18
Iteration: 1, Func. Count: 9, Neg. LLF: 7332457.86504176
Iteration: 2, Func. Count: 18, Neg. LLF: 151.86708757149242
Iteration: 3, Func. Count: 28, Neg. LLF: 17126.842912909608
Iteration: 4, Func. Count: 37, Neg. LLF: 90.42855783798748
Iteration: 5, Func. Count: 46, Neg. LLF: 102.30002301644072
Iteration: 6, Func. Count: 55, Neg. LLF: 119.38730738070551
Iteration: 7, Func. Count: 64, Neg. LLF: 112.00703679020721
Iteration: 8, Func. Count: 73, Neg. LLF: 86.5459274270577
Iteration: 9, Func. Count: 81, Neg. LLF: 86.14873449208989
Iteration: 10, Func. Count: 89, Neg. LLF: 86.11044506205343
Iteration: 11, Func. Count: 97, Neg. LLF: 86.09786485908639
Iteration: 12, Func. Count: 105, Neg. LLF: 86.09430633232584
Iteration: 13, Func. Count: 113, Neg. LLF: 86.09355796941207
Iteration: 14, Func. Count: 121, Neg. LLF: 86.0935510409418
Iteration: 15, Func. Count: 128, Neg. LLF: 86.09355100619977
Optimization terminated successfully (Exit mode 0)
Current function value: 86.0935510409418
Iterations: 15
Function evaluations: 128
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 116.70937163505177
Iteration: 2, Func. Count: 24, Neg. LLF: 149.33019895454214
Iteration: 3, Func. Count: 34, Neg. LLF: 137.87555108009593
Iteration: 4, Func. Count: 45, Neg. LLF: 109.97037969229349
Iteration: 5, Func. Count: 55, Neg. LLF: 93.36003275620185
Iteration: 6, Func. Count: 65, Neg. LLF: 90.13390758270103
Iteration: 7, Func. Count: 75, Neg. LLF: 96.47101063647526
Iteration: 8, Func. Count: 85, Neg. LLF: 86.07099840206344
Iteration: 9, Func. Count: 94, Neg. LLF: 86.53576358855095
Iteration: 10, Func. Count: 104, Neg. LLF: 85.76874706191192
Iteration: 11, Func. Count: 113, Neg. LLF: 85.87066713732023
Iteration: 12, Func. Count: 123, Neg. LLF: 85.68678291289825
Iteration: 13, Func. Count: 132, Neg. LLF: 85.64529529647879
Iteration: 14, Func. Count: 141, Neg. LLF: 85.64085432372745
Iteration: 15, Func. Count: 150, Neg. LLF: 85.64044640379396
Iteration: 16, Func. Count: 159, Neg. LLF: 85.64037350342056
Iteration: 17, Func. Count: 168, Neg. LLF: 85.6403587951259
Iteration: 18, Func. Count: 177, Neg. LLF: 85.64035763274346
Iteration: 19, Func. Count: 185, Neg. LLF: 85.64035759801756
Optimization terminated successfully (Exit mode 0)
Current function value: 85.64035763274346
Iterations: 19
Function evaluations: 185
Gradient evaluations: 19
Iteration: 1, Func. Count: 11, Neg. LLF: 7543387.594615154
Iteration: 2, Func. Count: 22, Neg. LLF: 98.43573202532167
Iteration: 3, Func. Count: 34, Neg. LLF: 170.8872561053876
Iteration: 4, Func. Count: 46, Neg. LLF: 101.58625505684289
Iteration: 5, Func. Count: 57, Neg. LLF: 94.73314338373294
Iteration: 6, Func. Count: 68, Neg. LLF: 88.7111754702075
Iteration: 7, Func. Count: 79, Neg. LLF: 89.10685486271225
Iteration: 8, Func. Count: 90, Neg. LLF: 88.69271559001389
Iteration: 9, Func. Count: 101, Neg. LLF: 87.36198359906487
Iteration: 10, Func. Count: 112, Neg. LLF: 86.83401330173704
Iteration: 11, Func. Count: 123, Neg. LLF: 86.10476572038507
Iteration: 12, Func. Count: 134, Neg. LLF: 86.29233346652826
Iteration: 13, Func. Count: 145, Neg. LLF: 85.5539674994781
Iteration: 14, Func. Count: 155, Neg. LLF: 85.422108864632
Iteration: 15, Func. Count: 165, Neg. LLF: 85.40129537977009
Iteration: 16, Func. Count: 175, Neg. LLF: 85.38688615509795
Iteration: 17, Func. Count: 185, Neg. LLF: 85.38530720951644
Iteration: 18, Func. Count: 195, Neg. LLF: 85.38480602103151
Iteration: 19, Func. Count: 205, Neg. LLF: 85.38474730942733
Iteration: 20, Func. Count: 215, Neg. LLF: 85.38474581965104
Iteration: 21, Func. Count: 224, Neg. LLF: 85.38474577448116
Optimization terminated successfully (Exit mode 0)
Current function value: 85.38474581965104
Iterations: 21
Function evaluations: 224
Gradient evaluations: 21
Iteration: 1, Func. Count: 12, Neg. LLF: 18333526.11643037
Iteration: 2, Func. Count: 24, Neg. LLF: 116.47741097311848
Iteration: 3, Func. Count: 37, Neg. LLF: 159.2516002226424
Iteration: 4, Func. Count: 50, Neg. LLF: 143.81571525570004
Iteration: 5, Func. Count: 62, Neg. LLF: 97.129920275102
Iteration: 6, Func. Count: 74, Neg. LLF: 92.47536182266226
Iteration: 7, Func. Count: 86, Neg. LLF: 87.00668527298438
Iteration: 8, Func. Count: 98, Neg. LLF: 86.64391878820567
Iteration: 9, Func. Count: 110, Neg. LLF: 87.21115602572293
Iteration: 10, Func. Count: 122, Neg. LLF: 85.90744621361179
Iteration: 11, Func. Count: 133, Neg. LLF: 85.81883783898097
Iteration: 12, Func. Count: 145, Neg. LLF: 86.08642798487583
Iteration: 13, Func. Count: 158, Neg. LLF: 85.64395072337416
Iteration: 14, Func. Count: 169, Neg. LLF: 85.64187789461992
Iteration: 15, Func. Count: 180, Neg. LLF: 85.64062499102413
Iteration: 16, Func. Count: 191, Neg. LLF: 85.6404606454778
Iteration: 17, Func. Count: 202, Neg. LLF: 85.64035795063324
Iteration: 18, Func. Count: 212, Neg. LLF: 85.64035793757193
Optimization terminated successfully (Exit mode 0)
Current function value: 85.64035795063324
Iterations: 18
Function evaluations: 212
Gradient evaluations: 18
Iteration: 1, Func. Count: 9, Neg. LLF: 115.90253837808345
Iteration: 2, Func. Count: 19, Neg. LLF: 803.5607557703229
Iteration: 3, Func. Count: 28, Neg. LLF: 2852332.4444781304
Iteration: 4, Func. Count: 37, Neg. LLF: 635.8879640633235
Iteration: 5, Func. Count: 46, Neg. LLF: 798619.9434725986
Iteration: 6, Func. Count: 55, Neg. LLF: 90.3527651830605
Iteration: 7, Func. Count: 64, Neg. LLF: 92.61365292370262
Iteration: 8, Func. Count: 73, Neg. LLF: 87.32812895420534
Iteration: 9, Func. Count: 81, Neg. LLF: 87.05523367643555
Iteration: 10, Func. Count: 89, Neg. LLF: 87.02670041851708
Iteration: 11, Func. Count: 97, Neg. LLF: 88.56095401523311
Iteration: 12, Func. Count: 106, Neg. LLF: 86.98472737950965
Iteration: 13, Func. Count: 114, Neg. LLF: 86.9787386623607
Iteration: 14, Func. Count: 122, Neg. LLF: 86.97435848047073
Iteration: 15, Func. Count: 130, Neg. LLF: 86.97035775808783
Iteration: 16, Func. Count: 138, Neg. LLF: 86.9508651682815
Iteration: 17, Func. Count: 146, Neg. LLF: 86.93949216715201
Iteration: 18, Func. Count: 154, Neg. LLF: 86.91999014775648
Iteration: 19, Func. Count: 162, Neg. LLF: 86.91405035026162
Iteration: 20, Func. Count: 170, Neg. LLF: 86.9120668803765
Iteration: 21, Func. Count: 178, Neg. LLF: 86.91178113219817
Iteration: 22, Func. Count: 186, Neg. LLF: 86.91177648835452
Iteration: 23, Func. Count: 194, Neg. LLF: 86.91177581196195
Optimization terminated successfully (Exit mode 0)
Current function value: 86.91177581196195
Iterations: 23
Function evaluations: 194
Gradient evaluations: 23
Iteration: 1, Func. Count: 10, Neg. LLF: 4150267.3081396427
Iteration: 2, Func. Count: 20, Neg. LLF: 94890952.0947085
Iteration: 3, Func. Count: 31, Neg. LLF: 108.28717229932174
Iteration: 4, Func. Count: 41, Neg. LLF: 88.34260512353282
Iteration: 5, Func. Count: 51, Neg. LLF: 269.01850668123546
Iteration: 6, Func. Count: 61, Neg. LLF: 89.90249196547575
Iteration: 7, Func. Count: 71, Neg. LLF: 87.7116500331655
Iteration: 8, Func. Count: 81, Neg. LLF: 86.42906625328075
Iteration: 9, Func. Count: 91, Neg. LLF: 86.09589322992383
Iteration: 10, Func. Count: 100, Neg. LLF: 86.09405185113948
Iteration: 11, Func. Count: 109, Neg. LLF: 86.09381126166146
Iteration: 12, Func. Count: 118, Neg. LLF: 86.09355176025343
Iteration: 13, Func. Count: 127, Neg. LLF: 86.09355079093162
Optimization terminated successfully (Exit mode 0)
Current function value: 86.09355079093162
Iterations: 13
Function evaluations: 127
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 4060110.3449254218
Iteration: 2, Func. Count: 22, Neg. LLF: 124539984.51800013
Iteration: 3, Func. Count: 34, Neg. LLF: 804519.9585199797
Iteration: 4, Func. Count: 45, Neg. LLF: 97.10654672287153
Iteration: 5, Func. Count: 56, Neg. LLF: 103.63192266334647
Iteration: 6, Func. Count: 67, Neg. LLF: 93.93753624044858
Iteration: 7, Func. Count: 78, Neg. LLF: 91.50617297608025
Iteration: 8, Func. Count: 89, Neg. LLF: 86.3647770050212
Iteration: 9, Func. Count: 100, Neg. LLF: 85.86655188541172
Iteration: 10, Func. Count: 110, Neg. LLF: 85.80291235242167
Iteration: 11, Func. Count: 121, Neg. LLF: 89.71837033421812
Iteration: 12, Func. Count: 133, Neg. LLF: 85.64539143857246
Iteration: 13, Func. Count: 143, Neg. LLF: 85.64117190171282
Iteration: 14, Func. Count: 153, Neg. LLF: 85.64043602650536
Iteration: 15, Func. Count: 163, Neg. LLF: 85.64039802206167
Iteration: 16, Func. Count: 173, Neg. LLF: 85.64036054569588
Iteration: 17, Func. Count: 183, Neg. LLF: 85.64035787690676
Iteration: 18, Func. Count: 192, Neg. LLF: 85.6403578422004
Optimization terminated successfully (Exit mode 0)
Current function value: 85.64035787690676
Iterations: 18
Function evaluations: 192
Gradient evaluations: 18
Iteration: 1, Func. Count: 12, Neg. LLF: 105.46892980270616
Iteration: 2, Func. Count: 24, Neg. LLF: 93034403.58070725
Iteration: 3, Func. Count: 36, Neg. LLF: 91.49434899463985
Iteration: 4, Func. Count: 48, Neg. LLF: 841945.1242842337
Iteration: 5, Func. Count: 60, Neg. LLF: 97.10797517125991
Iteration: 6, Func. Count: 72, Neg. LLF: 91.27858675299116
Iteration: 7, Func. Count: 84, Neg. LLF: 85.91411324093043
Iteration: 8, Func. Count: 95, Neg. LLF: 86.61771094542691
Iteration: 9, Func. Count: 107, Neg. LLF: 85.74166909804431
Iteration: 10, Func. Count: 119, Neg. LLF: 85.68987522885578
Iteration: 11, Func. Count: 131, Neg. LLF: 85.64135743035885
Iteration: 12, Func. Count: 142, Neg. LLF: 85.64044164478717
Iteration: 13, Func. Count: 153, Neg. LLF: 85.64039597598762
Iteration: 14, Func. Count: 164, Neg. LLF: 85.64036871420122
Iteration: 15, Func. Count: 175, Neg. LLF: 85.64035961485207
Iteration: 16, Func. Count: 186, Neg. LLF: 85.64035770981937
Iteration: 17, Func. Count: 196, Neg. LLF: 85.64035768986024
Optimization terminated successfully (Exit mode 0)
Current function value: 85.64035770981937
Iterations: 17
Function evaluations: 196
Gradient evaluations: 17
Iteration: 1, Func. Count: 13, Neg. LLF: 7331216.289824208
Iteration: 2, Func. Count: 26, Neg. LLF: 94.28164718903568
Iteration: 3, Func. Count: 42, Neg. LLF: 104.93937326704233
Iteration: 4, Func. Count: 55, Neg. LLF: 140.91014420220444
Iteration: 5, Func. Count: 69, Neg. LLF: 115.17617663492166
Iteration: 6, Func. Count: 82, Neg. LLF: 98.94744133963358
Iteration: 7, Func. Count: 95, Neg. LLF: 90.52868274726801
Iteration: 8, Func. Count: 108, Neg. LLF: 86.86844971541501
Iteration: 9, Func. Count: 121, Neg. LLF: 86.34657722786457
Iteration: 10, Func. Count: 133, Neg. LLF: 87.88884597994799
Iteration: 11, Func. Count: 147, Neg. LLF: 86.70022430409644
Iteration: 12, Func. Count: 160, Neg. LLF: 85.74413970082458
Iteration: 13, Func. Count: 172, Neg. LLF: 85.91213023740106
Iteration: 14, Func. Count: 185, Neg. LLF: 85.6592562842378
Iteration: 15, Func. Count: 197, Neg. LLF: 85.6471072572134
Iteration: 16, Func. Count: 209, Neg. LLF: 85.64137647678648
Iteration: 17, Func. Count: 221, Neg. LLF: 85.64061196172968
Iteration: 18, Func. Count: 233, Neg. LLF: 85.64053233722383
Iteration: 19, Func. Count: 245, Neg. LLF: 85.6404173355338
Iteration: 20, Func. Count: 257, Neg. LLF: 85.64037492453235
Iteration: 21, Func. Count: 269, Neg. LLF: 85.64035871541418
Iteration: 22, Func. Count: 281, Neg. LLF: 85.64035768537936
Iteration: 23, Func. Count: 292, Neg. LLF: 85.64035767223743
Optimization terminated successfully (Exit mode 0)
Current function value: 85.64035768537936
Iterations: 23
Function evaluations: 292
Gradient evaluations: 23
Iteration: 1, Func. Count: 10, Neg. LLF: 128.55879072959834
Iteration: 2, Func. Count: 21, Neg. LLF: 838.2952414484627
Iteration: 3, Func. Count: 31, Neg. LLF: 1773484.103840506
Iteration: 4, Func. Count: 41, Neg. LLF: 230828.2791036581
Iteration: 5, Func. Count: 51, Neg. LLF: 260969.7095780936
Iteration: 6, Func. Count: 61, Neg. LLF: 1676074.87048178
Iteration: 7, Func. Count: 71, Neg. LLF: 115538.19894092635
Iteration: 8, Func. Count: 81, Neg. LLF: 87.46168728476815
Iteration: 9, Func. Count: 91, Neg. LLF: 95.89729092617065
Iteration: 10, Func. Count: 101, Neg. LLF: 115.64527620025093
Iteration: 11, Func. Count: 111, Neg. LLF: 86.5406575594503
Iteration: 12, Func. Count: 121, Neg. LLF: 86.67128419989848
Iteration: 13, Func. Count: 131, Neg. LLF: 85.57939616746827
Iteration: 14, Func. Count: 140, Neg. LLF: 85.53803150959638
Iteration: 15, Func. Count: 149, Neg. LLF: 85.45656206239522
Iteration: 16, Func. Count: 158, Neg. LLF: 85.44886665575102
Iteration: 17, Func. Count: 167, Neg. LLF: 85.44850753939046
Iteration: 18, Func. Count: 176, Neg. LLF: 85.44812256357439
Iteration: 19, Func. Count: 185, Neg. LLF: 85.44811229720297
Iteration: 20, Func. Count: 194, Neg. LLF: 85.44811108781475
Iteration: 21, Func. Count: 202, Neg. LLF: 85.44811107380642
Optimization terminated successfully (Exit mode 0)
Current function value: 85.44811108781475
Iterations: 21
Function evaluations: 202
Gradient evaluations: 21
Iteration: 1, Func. Count: 11, Neg. LLF: 4356619.453963577
Iteration: 2, Func. Count: 22, Neg. LLF: 116732951.4093843
Iteration: 3, Func. Count: 34, Neg. LLF: 284086.07125318906
Iteration: 4, Func. Count: 45, Neg. LLF: 95.48825677616614
Iteration: 5, Func. Count: 56, Neg. LLF: 89.20539608633067
Iteration: 6, Func. Count: 67, Neg. LLF: 96.22491469538744
Iteration: 7, Func. Count: 78, Neg. LLF: 100.2077154008114
Iteration: 8, Func. Count: 89, Neg. LLF: 89.8635906208682
Iteration: 9, Func. Count: 100, Neg. LLF: 85.80174732030764
Iteration: 10, Func. Count: 110, Neg. LLF: 87.68897373968423
Iteration: 11, Func. Count: 121, Neg. LLF: 93.57365063080425
Iteration: 12, Func. Count: 133, Neg. LLF: 85.70579793569617
Iteration: 13, Func. Count: 144, Neg. LLF: 85.5955998247973
Iteration: 14, Func. Count: 154, Neg. LLF: 85.53398952590692
Iteration: 15, Func. Count: 164, Neg. LLF: 85.49228461633
Iteration: 16, Func. Count: 174, Neg. LLF: 85.45464221741219
Iteration: 17, Func. Count: 184, Neg. LLF: 85.44997726437823
Iteration: 18, Func. Count: 194, Neg. LLF: 85.44839339679353
Iteration: 19, Func. Count: 204, Neg. LLF: 85.44812488650511
Iteration: 20, Func. Count: 214, Neg. LLF: 85.44811336558008
Iteration: 21, Func. Count: 224, Neg. LLF: 85.44811122540048
Iteration: 22, Func. Count: 233, Neg. LLF: 85.44811122461164
Optimization terminated successfully (Exit mode 0)
Current function value: 85.44811122540048
Iterations: 22
Function evaluations: 233
Gradient evaluations: 22
Iteration: 1, Func. Count: 12, Neg. LLF: 4279829.162953045
Iteration: 2, Func. Count: 24, Neg. LLF: 176753964.77329764
Iteration: 3, Func. Count: 37, Neg. LLF: 770194.3650227576
Iteration: 4, Func. Count: 49, Neg. LLF: 102.01287223977023
Iteration: 5, Func. Count: 61, Neg. LLF: 94.66234005560247
Iteration: 6, Func. Count: 73, Neg. LLF: 92.6890631352452
Iteration: 7, Func. Count: 85, Neg. LLF: 88.28284110883813
Iteration: 8, Func. Count: 97, Neg. LLF: 86.11970487601218
Iteration: 9, Func. Count: 109, Neg. LLF: 87.39659844923045
Iteration: 10, Func. Count: 121, Neg. LLF: 86.69701262656031
Iteration: 11, Func. Count: 133, Neg. LLF: 85.55376709618001
Iteration: 12, Func. Count: 144, Neg. LLF: 85.51085643473802
Iteration: 13, Func. Count: 155, Neg. LLF: 85.48147300775835
Iteration: 14, Func. Count: 166, Neg. LLF: 85.4530086332189
Iteration: 15, Func. Count: 177, Neg. LLF: 85.44851312789251
Iteration: 16, Func. Count: 188, Neg. LLF: 85.44815312991062
Iteration: 17, Func. Count: 199, Neg. LLF: 85.44812243711364
Iteration: 18, Func. Count: 210, Neg. LLF: 85.44811299921747
Iteration: 19, Func. Count: 221, Neg. LLF: 85.44811121197168
Iteration: 20, Func. Count: 231, Neg. LLF: 85.44811121145744
Optimization terminated successfully (Exit mode 0)
Current function value: 85.44811121197168
Iterations: 20
Function evaluations: 231
Gradient evaluations: 20
Iteration: 1, Func. Count: 13, Neg. LLF: 98.24753163095315
Iteration: 2, Func. Count: 27, Neg. LLF: 62778878.66017263
Iteration: 3, Func. Count: 40, Neg. LLF: 4363344.241789231
Iteration: 4, Func. Count: 53, Neg. LLF: 101.29986346672828
Iteration: 5, Func. Count: 66, Neg. LLF: 141.36369019892382
Iteration: 6, Func. Count: 79, Neg. LLF: 87.74678370941855
Iteration: 7, Func. Count: 92, Neg. LLF: 87.8310535417901
Iteration: 8, Func. Count: 105, Neg. LLF: 93.69887136067783
Iteration: 9, Func. Count: 118, Neg. LLF: 87.082088181888
Iteration: 10, Func. Count: 131, Neg. LLF: 85.78916721826296
Iteration: 11, Func. Count: 144, Neg. LLF: 86.82098687496882
Iteration: 12, Func. Count: 157, Neg. LLF: 85.48448243213039
Iteration: 13, Func. Count: 169, Neg. LLF: 85.40707833771317
Iteration: 14, Func. Count: 181, Neg. LLF: 85.47488426676246
Iteration: 15, Func. Count: 194, Neg. LLF: 85.38934494477543
Iteration: 16, Func. Count: 206, Neg. LLF: 85.3831539894229
Iteration: 17, Func. Count: 218, Neg. LLF: 85.38078456462767
Iteration: 18, Func. Count: 230, Neg. LLF: 85.38023912973321
Iteration: 19, Func. Count: 242, Neg. LLF: 85.3801165266241
Iteration: 20, Func. Count: 254, Neg. LLF: 85.38008672351837
Iteration: 21, Func. Count: 266, Neg. LLF: 85.38008326964835
Iteration: 22, Func. Count: 277, Neg. LLF: 85.38008323271703
Optimization terminated successfully (Exit mode 0)
Current function value: 85.38008326964835
Iterations: 22
Function evaluations: 277
Gradient evaluations: 22
Iteration: 1, Func. Count: 14, Neg. LLF: 6671530.502624536
Iteration: 2, Func. Count: 28, Neg. LLF: 103.39266246301544
Iteration: 3, Func. Count: 45, Neg. LLF: 165.6326575255536
Iteration: 4, Func. Count: 59, Neg. LLF: 118.0973659563921
Iteration: 5, Func. Count: 73, Neg. LLF: 104.27753058434602
Iteration: 6, Func. Count: 87, Neg. LLF: 88.94202500185419
Iteration: 7, Func. Count: 101, Neg. LLF: 89.19246460310255
Iteration: 8, Func. Count: 115, Neg. LLF: 87.91451678401549
Iteration: 9, Func. Count: 129, Neg. LLF: 86.59393482130103
Iteration: 10, Func. Count: 143, Neg. LLF: 85.94763497785183
Iteration: 11, Func. Count: 157, Neg. LLF: 86.64591879266561
Iteration: 12, Func. Count: 171, Neg. LLF: 85.42385687710531
Iteration: 13, Func. Count: 184, Neg. LLF: 86.93778077702332
Iteration: 14, Func. Count: 198, Neg. LLF: 85.4067798369106
Iteration: 15, Func. Count: 212, Neg. LLF: 85.4131662935582
Iteration: 16, Func. Count: 226, Neg. LLF: 85.3810262202461
Iteration: 17, Func. Count: 239, Neg. LLF: 85.38045913036504
Iteration: 18, Func. Count: 252, Neg. LLF: 85.3801110988814
Iteration: 19, Func. Count: 265, Neg. LLF: 85.38008550298579
Iteration: 20, Func. Count: 278, Neg. LLF: 85.38008317275352
Iteration: 21, Func. Count: 290, Neg. LLF: 85.38008318394826
Optimization terminated successfully (Exit mode 0)
Current function value: 85.38008317275352
Iterations: 21
Function evaluations: 290
Gradient evaluations: 21
Iteration: 1, Func. Count: 7, Neg. LLF: 102.59658028832375
Iteration: 2, Func. Count: 15, Neg. LLF: 2128.4257158073065
Iteration: 3, Func. Count: 22, Neg. LLF: 136675.0308080732
Iteration: 4, Func. Count: 29, Neg. LLF: 395.407571275972
Iteration: 5, Func. Count: 36, Neg. LLF: 1580.0289322548267
Iteration: 6, Func. Count: 43, Neg. LLF: 221.77469357747106
Iteration: 7, Func. Count: 50, Neg. LLF: 180.65973024841364
Iteration: 8, Func. Count: 57, Neg. LLF: 200.89914522483997
Iteration: 9, Func. Count: 64, Neg. LLF: 105.31029657013521
Iteration: 10, Func. Count: 71, Neg. LLF: 93.83374969685386
Iteration: 11, Func. Count: 78, Neg. LLF: 89.4340096659016
Iteration: 12, Func. Count: 84, Neg. LLF: 89.9575311022596
Iteration: 13, Func. Count: 91, Neg. LLF: 90.66301472841506
Iteration: 14, Func. Count: 98, Neg. LLF: 89.16535730418977
Iteration: 15, Func. Count: 104, Neg. LLF: 89.1012012215413
Iteration: 16, Func. Count: 110, Neg. LLF: 89.07095785943078
Iteration: 17, Func. Count: 116, Neg. LLF: 89.05565850927718
Iteration: 18, Func. Count: 122, Neg. LLF: 89.05480728411597
Iteration: 19, Func. Count: 128, Neg. LLF: 89.0547291351105
Iteration: 20, Func. Count: 134, Neg. LLF: 89.0547202044837
Iteration: 21, Func. Count: 140, Neg. LLF: 89.05471825395804
Iteration: 22, Func. Count: 145, Neg. LLF: 89.0547182519575
Optimization terminated successfully (Exit mode 0)
Current function value: 89.05471825395804
Iterations: 22
Function evaluations: 145
Gradient evaluations: 22
Iteration: 1, Func. Count: 8, Neg. LLF: 112.29349085033043
Iteration: 2, Func. Count: 20, Neg. LLF: 117.90228672357941
Iteration: 3, Func. Count: 28, Neg. LLF: 182.80501457648555
Iteration: 4, Func. Count: 36, Neg. LLF: 89.30983152072866
Iteration: 5, Func. Count: 43, Neg. LLF: 99.2555004052061
Iteration: 6, Func. Count: 51, Neg. LLF: 89.11050708550835
Iteration: 7, Func. Count: 58, Neg. LLF: 89.09165427090366
Iteration: 8, Func. Count: 65, Neg. LLF: 89.08282546400622
Iteration: 9, Func. Count: 72, Neg. LLF: 89.07930154260464
Iteration: 10, Func. Count: 79, Neg. LLF: 89.077835924265
Iteration: 11, Func. Count: 86, Neg. LLF: 89.07694428038795
Iteration: 12, Func. Count: 93, Neg. LLF: 89.0767219383033
Iteration: 13, Func. Count: 100, Neg. LLF: 89.07668713387287
Iteration: 14, Func. Count: 107, Neg. LLF: 89.0766832315029
Iteration: 15, Func. Count: 113, Neg. LLF: 89.07668320219963
Optimization terminated successfully (Exit mode 0)
Current function value: 89.0766832315029
Iterations: 15
Function evaluations: 113
Gradient evaluations: 15
Iteration: 1, Func. Count: 9, Neg. LLF: 355.58891135677464
Iteration: 2, Func. Count: 18, Neg. LLF: 100.08762711908675
Iteration: 3, Func. Count: 27, Neg. LLF: 141.68879846834014
Iteration: 4, Func. Count: 36, Neg. LLF: 98.92529245575393
Iteration: 5, Func. Count: 45, Neg. LLF: 92.83240427098173
Iteration: 6, Func. Count: 54, Neg. LLF: 89.51683379636918
Iteration: 7, Func. Count: 63, Neg. LLF: 88.50926515815395
Iteration: 8, Func. Count: 71, Neg. LLF: 108.86878291805132
Iteration: 9, Func. Count: 80, Neg. LLF: 88.47975772320177
Iteration: 10, Func. Count: 89, Neg. LLF: 88.30924250655961
Iteration: 11, Func. Count: 97, Neg. LLF: 88.30547725877635
Iteration: 12, Func. Count: 105, Neg. LLF: 88.30490316108518
Iteration: 13, Func. Count: 113, Neg. LLF: 88.30479939057689
Iteration: 14, Func. Count: 121, Neg. LLF: 88.30479572315451
Iteration: 15, Func. Count: 128, Neg. LLF: 88.30479568212739
Optimization terminated successfully (Exit mode 0)
Current function value: 88.30479572315451
Iterations: 15
Function evaluations: 128
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 8982.848572755844
Iteration: 2, Func. Count: 20, Neg. LLF: 1602.1929618055385
Iteration: 3, Func. Count: 30, Neg. LLF: 11685.72780331767
Iteration: 4, Func. Count: 40, Neg. LLF: 193.66153790428635
Iteration: 5, Func. Count: 50, Neg. LLF: 92.91973769267678
Iteration: 6, Func. Count: 61, Neg. LLF: 88.54308017436078
Iteration: 7, Func. Count: 70, Neg. LLF: 88.57664910601935
Iteration: 8, Func. Count: 80, Neg. LLF: 94.6653166265071
Iteration: 9, Func. Count: 91, Neg. LLF: 91.82455066089939
Iteration: 10, Func. Count: 101, Neg. LLF: 87.57741420623313
Iteration: 11, Func. Count: 110, Neg. LLF: 91.06087940960943
Iteration: 12, Func. Count: 120, Neg. LLF: 87.21544069313285
Iteration: 13, Func. Count: 129, Neg. LLF: 87.47062563283295
Iteration: 14, Func. Count: 139, Neg. LLF: 87.40008335529723
Iteration: 15, Func. Count: 149, Neg. LLF: 87.07877750996464
Iteration: 16, Func. Count: 158, Neg. LLF: 87.07089379644668
Iteration: 17, Func. Count: 167, Neg. LLF: 87.07249596122296
Iteration: 18, Func. Count: 177, Neg. LLF: 87.06882157938834
Iteration: 19, Func. Count: 186, Neg. LLF: 87.06872542511653
Iteration: 20, Func. Count: 195, Neg. LLF: 87.06864776182134
Iteration: 21, Func. Count: 204, Neg. LLF: 87.06864066781662
Iteration: 22, Func. Count: 212, Neg. LLF: 87.06864063519134
Optimization terminated successfully (Exit mode 0)
Current function value: 87.06864066781662
Iterations: 22
Function evaluations: 212
Gradient evaluations: 22
Iteration: 1, Func. Count: 11, Neg. LLF: 939.0614198062249
Iteration: 2, Func. Count: 22, Neg. LLF: 492.4199324930364
Iteration: 3, Func. Count: 33, Neg. LLF: 625.6153922084555
Iteration: 4, Func. Count: 44, Neg. LLF: 130.3994806567961
Iteration: 5, Func. Count: 55, Neg. LLF: 88.02425564915416
Iteration: 6, Func. Count: 65, Neg. LLF: 89.60508083105127
Iteration: 7, Func. Count: 77, Neg. LLF: 89.87794701271933
Iteration: 8, Func. Count: 89, Neg. LLF: 109.33077521162012
Iteration: 9, Func. Count: 101, Neg. LLF: 93.57682578465415
Iteration: 10, Func. Count: 112, Neg. LLF: 88.11851619413791
Iteration: 11, Func. Count: 123, Neg. LLF: 87.15398708290354
Iteration: 12, Func. Count: 133, Neg. LLF: 87.10455211655136
Iteration: 13, Func. Count: 143, Neg. LLF: 87.13648536808233
Iteration: 14, Func. Count: 154, Neg. LLF: 87.0693078845087
Iteration: 15, Func. Count: 164, Neg. LLF: 87.0686690143263
Iteration: 16, Func. Count: 174, Neg. LLF: 87.06864438526215
Iteration: 17, Func. Count: 184, Neg. LLF: 87.06864046891091
Iteration: 18, Func. Count: 193, Neg. LLF: 87.06864052389946
Optimization terminated successfully (Exit mode 0)
Current function value: 87.06864046891091
Iterations: 18
Function evaluations: 193
Gradient evaluations: 18
Iteration: 1, Func. Count: 8, Neg. LLF: 102.38749347604777
Iteration: 2, Func. Count: 17, Neg. LLF: 2381.8861777706366
Iteration: 3, Func. Count: 25, Neg. LLF: 515982.75750525354
Iteration: 4, Func. Count: 33, Neg. LLF: 432.74051035445115
Iteration: 5, Func. Count: 41, Neg. LLF: 242.23758473400477
Iteration: 6, Func. Count: 49, Neg. LLF: 1428.807626687399
Iteration: 7, Func. Count: 57, Neg. LLF: 1442.7495312762005
Iteration: 8, Func. Count: 65, Neg. LLF: 315.09358476942145
Iteration: 9, Func. Count: 73, Neg. LLF: 368.9516822657853
Iteration: 10, Func. Count: 81, Neg. LLF: 178.4875804283432
Iteration: 11, Func. Count: 89, Neg. LLF: 110.3053732325518
Iteration: 12, Func. Count: 97, Neg. LLF: 88.91670781947148
Iteration: 13, Func. Count: 105, Neg. LLF: 88.83058328333284
Iteration: 14, Func. Count: 113, Neg. LLF: 88.29224480077406
Iteration: 15, Func. Count: 120, Neg. LLF: 88.20855132381415
Iteration: 16, Func. Count: 127, Neg. LLF: 88.19085114913216
Iteration: 17, Func. Count: 134, Neg. LLF: 88.18758222923158
Iteration: 18, Func. Count: 141, Neg. LLF: 88.18729590044676
Iteration: 19, Func. Count: 148, Neg. LLF: 88.187262115854
Iteration: 20, Func. Count: 155, Neg. LLF: 88.18725659028533
Iteration: 21, Func. Count: 161, Neg. LLF: 88.18725658360438
Optimization terminated successfully (Exit mode 0)
Current function value: 88.18725659028533
Iterations: 21
Function evaluations: 161
Gradient evaluations: 21
Iteration: 1, Func. Count: 9, Neg. LLF: 154.85776980010533
Iteration: 2, Func. Count: 24, Neg. LLF: 262.75009660820626
Iteration: 3, Func. Count: 33, Neg. LLF: 389.05435136260195
Iteration: 4, Func. Count: 43, Neg. LLF: 90.60034003593627
Iteration: 5, Func. Count: 52, Neg. LLF: 103.5575305106775
Iteration: 6, Func. Count: 61, Neg. LLF: 92.86248070422114
Iteration: 7, Func. Count: 70, Neg. LLF: 87.44060765150847
Iteration: 8, Func. Count: 78, Neg. LLF: 87.43510272341145
Iteration: 9, Func. Count: 86, Neg. LLF: 87.43120131020521
Iteration: 10, Func. Count: 94, Neg. LLF: 87.4282283844879
Iteration: 11, Func. Count: 102, Neg. LLF: 87.42711371729271
Iteration: 12, Func. Count: 110, Neg. LLF: 87.42694940065988
Iteration: 13, Func. Count: 118, Neg. LLF: 87.42694192827074
Iteration: 14, Func. Count: 125, Neg. LLF: 87.42694188353097
Optimization terminated successfully (Exit mode 0)
Current function value: 87.42694192827074
Iterations: 14
Function evaluations: 125
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 128.9476944199929
Iteration: 2, Func. Count: 24, Neg. LLF: 103.04348356175234
Iteration: 3, Func. Count: 34, Neg. LLF: 100.55044462901945
Iteration: 4, Func. Count: 44, Neg. LLF: 98.63042429974358
Iteration: 5, Func. Count: 54, Neg. LLF: 92.09908828968148
Iteration: 6, Func. Count: 64, Neg. LLF: 87.8512161727129
Iteration: 7, Func. Count: 74, Neg. LLF: 88.09983664080836
Iteration: 8, Func. Count: 84, Neg. LLF: 87.5452922484906
Iteration: 9, Func. Count: 94, Neg. LLF: 87.96071833390292
Iteration: 10, Func. Count: 104, Neg. LLF: 87.50596325318739
Iteration: 11, Func. Count: 114, Neg. LLF: 87.45973703161133
Iteration: 12, Func. Count: 123, Neg. LLF: 87.45635776128908
Iteration: 13, Func. Count: 132, Neg. LLF: 87.45489119722662
Iteration: 14, Func. Count: 141, Neg. LLF: 87.45459465585719
Iteration: 15, Func. Count: 150, Neg. LLF: 87.45458322818483
Iteration: 16, Func. Count: 158, Neg. LLF: 87.45458318329165
Optimization terminated successfully (Exit mode 0)
Current function value: 87.45458322818483
Iterations: 16
Function evaluations: 158
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 103.22949563398217
Iteration: 2, Func. Count: 25, Neg. LLF: 110.81335823956351
Iteration: 3, Func. Count: 36, Neg. LLF: 493.8166768055132
Iteration: 4, Func. Count: 48, Neg. LLF: 92.29952143559626
Iteration: 5, Func. Count: 60, Neg. LLF: 98.59189101462232
Iteration: 6, Func. Count: 71, Neg. LLF: 90.47379495540547
Iteration: 7, Func. Count: 82, Neg. LLF: 87.8630425203295
Iteration: 8, Func. Count: 92, Neg. LLF: 88.74400155463702
Iteration: 9, Func. Count: 103, Neg. LLF: 88.0600349746726
Iteration: 10, Func. Count: 115, Neg. LLF: 87.54631677239023
Iteration: 11, Func. Count: 126, Neg. LLF: 87.54709677490561
Iteration: 12, Func. Count: 137, Neg. LLF: 87.46727676389067
Iteration: 13, Func. Count: 147, Neg. LLF: 87.45832893831499
Iteration: 14, Func. Count: 157, Neg. LLF: 87.45571922488271
Iteration: 15, Func. Count: 167, Neg. LLF: 87.45481598001476
Iteration: 16, Func. Count: 177, Neg. LLF: 87.4546173441525
Iteration: 17, Func. Count: 187, Neg. LLF: 87.45458605069446
Iteration: 18, Func. Count: 197, Neg. LLF: 87.45458365215987
Iteration: 19, Func. Count: 206, Neg. LLF: 87.45458364689307
Optimization terminated successfully (Exit mode 0)
Current function value: 87.45458365215987
Iterations: 19
Function evaluations: 206
Gradient evaluations: 19
Iteration: 1, Func. Count: 12, Neg. LLF: 57770.12770426871
Iteration: 2, Func. Count: 24, Neg. LLF: 90.09554297678653
Iteration: 3, Func. Count: 35, Neg. LLF: 116.14308683788413
Iteration: 4, Func. Count: 48, Neg. LLF: 97.62782939000103
Iteration: 5, Func. Count: 60, Neg. LLF: 305.2107870637859
Iteration: 6, Func. Count: 72, Neg. LLF: 122.52783943481505
Iteration: 7, Func. Count: 84, Neg. LLF: 96.02169989441377
Iteration: 8, Func. Count: 96, Neg. LLF: 97.43447555664648
Iteration: 9, Func. Count: 108, Neg. LLF: 95.48989151416116
Iteration: 10, Func. Count: 120, Neg. LLF: 97.17886429815034
Iteration: 11, Func. Count: 132, Neg. LLF: 94.24247972183856
Iteration: 12, Func. Count: 144, Neg. LLF: 88.16764482741884
Iteration: 13, Func. Count: 156, Neg. LLF: 87.07601209351289
Iteration: 14, Func. Count: 167, Neg. LLF: 92.21887103450709
Iteration: 15, Func. Count: 180, Neg. LLF: 87.09048151693005
Iteration: 16, Func. Count: 192, Neg. LLF: 87.05566771032595
Iteration: 17, Func. Count: 204, Neg. LLF: 87.0432165621939
Iteration: 18, Func. Count: 215, Neg. LLF: 87.04184451986627
Iteration: 19, Func. Count: 226, Neg. LLF: 87.04164893488756
Iteration: 20, Func. Count: 237, Neg. LLF: 87.04149847190587
Iteration: 21, Func. Count: 248, Neg. LLF: 87.04149226240719
Iteration: 22, Func. Count: 258, Neg. LLF: 87.04149231472486
Optimization terminated successfully (Exit mode 0)
Current function value: 87.04149226240719
Iterations: 22
Function evaluations: 258
Gradient evaluations: 22
Iteration: 1, Func. Count: 9, Neg. LLF: 97.84283923828735
Iteration: 2, Func. Count: 18, Neg. LLF: 133.0070496483443
Iteration: 3, Func. Count: 28, Neg. LLF: 208.13864611767534
Iteration: 4, Func. Count: 38, Neg. LLF: 225.02012535790877
Iteration: 5, Func. Count: 48, Neg. LLF: 2869.3207046794287
Iteration: 6, Func. Count: 57, Neg. LLF: 87.197484361639
Iteration: 7, Func. Count: 66, Neg. LLF: 88.51084708554964
Iteration: 8, Func. Count: 75, Neg. LLF: 87.74482545401214
Iteration: 9, Func. Count: 84, Neg. LLF: 86.87260742036293
Iteration: 10, Func. Count: 93, Neg. LLF: 86.78609279157291
Iteration: 11, Func. Count: 102, Neg. LLF: 86.71930447734685
Iteration: 12, Func. Count: 110, Neg. LLF: 86.70471018729373
Iteration: 13, Func. Count: 118, Neg. LLF: 86.69417796770165
Iteration: 14, Func. Count: 126, Neg. LLF: 86.69344286609098
Iteration: 15, Func. Count: 134, Neg. LLF: 86.69339000363428
Iteration: 16, Func. Count: 142, Neg. LLF: 86.69338031690337
Iteration: 17, Func. Count: 150, Neg. LLF: 86.69337057036478
Iteration: 18, Func. Count: 158, Neg. LLF: 86.6933678320294
Iteration: 19, Func. Count: 165, Neg. LLF: 86.69336783012551
Optimization terminated successfully (Exit mode 0)
Current function value: 86.6933678320294
Iterations: 19
Function evaluations: 165
Gradient evaluations: 19
Iteration: 1, Func. Count: 10, Neg. LLF: 7070332.2274453705
Iteration: 2, Func. Count: 20, Neg. LLF: 914722.8124178954
Iteration: 3, Func. Count: 31, Neg. LLF: 826951.1090293088
Iteration: 4, Func. Count: 41, Neg. LLF: 87.5057478370249
Iteration: 5, Func. Count: 51, Neg. LLF: 118.77224069113298
Iteration: 6, Func. Count: 61, Neg. LLF: 120.12153405424345
Iteration: 7, Func. Count: 71, Neg. LLF: 86.10365303328939
Iteration: 8, Func. Count: 80, Neg. LLF: 93.98447901990684
Iteration: 9, Func. Count: 91, Neg. LLF: 86.08071402306022
Iteration: 10, Func. Count: 100, Neg. LLF: 86.07891680603424
Iteration: 11, Func. Count: 109, Neg. LLF: 86.0785118163154
Iteration: 12, Func. Count: 118, Neg. LLF: 86.0784197364502
Iteration: 13, Func. Count: 127, Neg. LLF: 86.07841835467767
Iteration: 14, Func. Count: 135, Neg. LLF: 86.07841832176291
Optimization terminated successfully (Exit mode 0)
Current function value: 86.07841835467767
Iterations: 14
Function evaluations: 135
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 116.1629037844119
Iteration: 2, Func. Count: 26, Neg. LLF: 174.2369777889592
Iteration: 3, Func. Count: 37, Neg. LLF: 101.11568310478796
Iteration: 4, Func. Count: 48, Neg. LLF: 99.90751603845953
Iteration: 5, Func. Count: 59, Neg. LLF: 103.92754516272277
Iteration: 6, Func. Count: 70, Neg. LLF: 113.08883454059905
Iteration: 7, Func. Count: 81, Neg. LLF: 92.29842040501896
Iteration: 8, Func. Count: 92, Neg. LLF: 86.41292076112825
Iteration: 9, Func. Count: 103, Neg. LLF: 86.02913454341746
Iteration: 10, Func. Count: 114, Neg. LLF: 85.945390408256
Iteration: 11, Func. Count: 125, Neg. LLF: 86.72503268133114
Iteration: 12, Func. Count: 136, Neg. LLF: 86.25669359739003
Iteration: 13, Func. Count: 147, Neg. LLF: 85.45026706718546
Iteration: 14, Func. Count: 157, Neg. LLF: 85.42956236140661
Iteration: 15, Func. Count: 167, Neg. LLF: 85.42548493494999
Iteration: 16, Func. Count: 177, Neg. LLF: 85.42609462361388
Iteration: 17, Func. Count: 188, Neg. LLF: 85.42195316538741
Iteration: 18, Func. Count: 198, Neg. LLF: 85.42193073705977
Iteration: 19, Func. Count: 208, Neg. LLF: 85.4219301089952
Optimization terminated successfully (Exit mode 0)
Current function value: 85.4219301089952
Iterations: 19
Function evaluations: 208
Gradient evaluations: 19
Iteration: 1, Func. Count: 12, Neg. LLF: 807.5427327434326
Iteration: 2, Func. Count: 24, Neg. LLF: 100.27851633491944
Iteration: 3, Func. Count: 38, Neg. LLF: 181.04355866190966
Iteration: 4, Func. Count: 51, Neg. LLF: 102.79396643979396
Iteration: 5, Func. Count: 63, Neg. LLF: 90.51354749445366
Iteration: 6, Func. Count: 75, Neg. LLF: 88.49545621004249
Iteration: 7, Func. Count: 87, Neg. LLF: 95.03246472460077
Iteration: 8, Func. Count: 99, Neg. LLF: 87.78963349714795
Iteration: 9, Func. Count: 111, Neg. LLF: 86.30479130320616
Iteration: 10, Func. Count: 123, Neg. LLF: 86.4007821820158
Iteration: 11, Func. Count: 135, Neg. LLF: 85.824230934075
Iteration: 12, Func. Count: 147, Neg. LLF: 85.87472879281596
Iteration: 13, Func. Count: 159, Neg. LLF: 86.2299977945393
Iteration: 14, Func. Count: 171, Neg. LLF: 85.43369243067517
Iteration: 15, Func. Count: 182, Neg. LLF: 85.4253077971123
Iteration: 16, Func. Count: 193, Neg. LLF: 85.42277176098465
Iteration: 17, Func. Count: 204, Neg. LLF: 85.42314670383873
Iteration: 18, Func. Count: 216, Neg. LLF: 85.42195224488022
Iteration: 19, Func. Count: 227, Neg. LLF: 85.42193095158704
Iteration: 20, Func. Count: 238, Neg. LLF: 85.42193013427443
Optimization terminated successfully (Exit mode 0)
Current function value: 85.42193013427443
Iterations: 20
Function evaluations: 238
Gradient evaluations: 20
Iteration: 1, Func. Count: 13, Neg. LLF: 21641623.49390286
Iteration: 2, Func. Count: 26, Neg. LLF: 3242638.487100862
Iteration: 3, Func. Count: 40, Neg. LLF: 4034253.5650248807
Iteration: 4, Func. Count: 53, Neg. LLF: 122.95163255496135
Iteration: 5, Func. Count: 66, Neg. LLF: 89.30210206817037
Iteration: 6, Func. Count: 79, Neg. LLF: 93.04230119639529
Iteration: 7, Func. Count: 92, Neg. LLF: 86.44190237578665
Iteration: 8, Func. Count: 104, Neg. LLF: 86.14314480226078
Iteration: 9, Func. Count: 117, Neg. LLF: 148.89095447469396
Iteration: 10, Func. Count: 131, Neg. LLF: 89.4455478756285
Iteration: 11, Func. Count: 144, Neg. LLF: 85.5964117859325
Iteration: 12, Func. Count: 156, Neg. LLF: 86.61476712573891
Iteration: 13, Func. Count: 169, Neg. LLF: 85.4793388105623
Iteration: 14, Func. Count: 181, Neg. LLF: 85.44535244609173
Iteration: 15, Func. Count: 193, Neg. LLF: 85.42605962031851
Iteration: 16, Func. Count: 205, Neg. LLF: 85.4229895618082
Iteration: 17, Func. Count: 217, Neg. LLF: 85.42201384063026
Iteration: 18, Func. Count: 229, Neg. LLF: 85.42195533490217
Iteration: 19, Func. Count: 241, Neg. LLF: 85.42193057024363
Iteration: 20, Func. Count: 252, Neg. LLF: 85.42193058051673
Optimization terminated successfully (Exit mode 0)
Current function value: 85.42193057024363
Iterations: 20
Function evaluations: 252
Gradient evaluations: 20
Iteration: 1, Func. Count: 10, Neg. LLF: 92.65143088313174
Iteration: 2, Func. Count: 20, Neg. LLF: 434.1712492121526
Iteration: 3, Func. Count: 30, Neg. LLF: 2278733.982607218
Iteration: 4, Func. Count: 40, Neg. LLF: 175.64438531931125
Iteration: 5, Func. Count: 50, Neg. LLF: 828880.2560927741
Iteration: 6, Func. Count: 60, Neg. LLF: 89.81135717738378
Iteration: 7, Func. Count: 70, Neg. LLF: 162.50203352701058
Iteration: 8, Func. Count: 80, Neg. LLF: 89.848246627754
Iteration: 9, Func. Count: 90, Neg. LLF: 86.74631461019196
Iteration: 10, Func. Count: 99, Neg. LLF: 90.26838250993728
Iteration: 11, Func. Count: 109, Neg. LLF: 86.7329176973725
Iteration: 12, Func. Count: 119, Neg. LLF: 86.67696373965643
Iteration: 13, Func. Count: 128, Neg. LLF: 86.65530600110678
Iteration: 14, Func. Count: 137, Neg. LLF: 86.6508717452435
Iteration: 15, Func. Count: 146, Neg. LLF: 86.64911811905654
Iteration: 16, Func. Count: 155, Neg. LLF: 86.64882160482715
Iteration: 17, Func. Count: 164, Neg. LLF: 86.64875863234961
Iteration: 18, Func. Count: 173, Neg. LLF: 86.64875645925879
Iteration: 19, Func. Count: 181, Neg. LLF: 86.64875644611254
Optimization terminated successfully (Exit mode 0)
Current function value: 86.64875645925879
Iterations: 19
Function evaluations: 181
Gradient evaluations: 19
Iteration: 1, Func. Count: 11, Neg. LLF: 4159205.970384987
Iteration: 2, Func. Count: 22, Neg. LLF: 107744186.97504675
Iteration: 3, Func. Count: 34, Neg. LLF: 4502997.940451346
Iteration: 4, Func. Count: 45, Neg. LLF: 103.36142009813075
Iteration: 5, Func. Count: 56, Neg. LLF: 88.24861466650664
Iteration: 6, Func. Count: 67, Neg. LLF: 107.86498785190416
Iteration: 7, Func. Count: 78, Neg. LLF: 88.14325668347965
Iteration: 8, Func. Count: 89, Neg. LLF: 86.10596008959335
Iteration: 9, Func. Count: 99, Neg. LLF: 86.08619295774982
Iteration: 10, Func. Count: 109, Neg. LLF: 86.05877599408561
Iteration: 11, Func. Count: 119, Neg. LLF: 86.05735024026713
Iteration: 12, Func. Count: 129, Neg. LLF: 86.0572258075743
Iteration: 13, Func. Count: 139, Neg. LLF: 86.05720563103777
Iteration: 14, Func. Count: 148, Neg. LLF: 86.05720559934014
Optimization terminated successfully (Exit mode 0)
Current function value: 86.05720563103777
Iterations: 14
Function evaluations: 148
Gradient evaluations: 14
Iteration: 1, Func. Count: 12, Neg. LLF: 6307328.569741852
Iteration: 2, Func. Count: 24, Neg. LLF: 23982537.42131217
Iteration: 3, Func. Count: 37, Neg. LLF: 1313178.6464575506
Iteration: 4, Func. Count: 49, Neg. LLF: 100.63183568552084
Iteration: 5, Func. Count: 61, Neg. LLF: 98.56518838196149
Iteration: 6, Func. Count: 73, Neg. LLF: 90.60178782406817
Iteration: 7, Func. Count: 85, Neg. LLF: 93.86675942257182
Iteration: 8, Func. Count: 97, Neg. LLF: 92.20973273290255
Iteration: 9, Func. Count: 109, Neg. LLF: 86.16072953045875
Iteration: 10, Func. Count: 120, Neg. LLF: 86.03175986556198
Iteration: 11, Func. Count: 132, Neg. LLF: 87.38897929652073
Iteration: 12, Func. Count: 145, Neg. LLF: 85.45266170672882
Iteration: 13, Func. Count: 156, Neg. LLF: 85.4385390664595
Iteration: 14, Func. Count: 168, Neg. LLF: 85.31892404494499
Iteration: 15, Func. Count: 179, Neg. LLF: 85.31047067438566
Iteration: 16, Func. Count: 190, Neg. LLF: 85.3087352879443
Iteration: 17, Func. Count: 201, Neg. LLF: 85.3082208028621
Iteration: 18, Func. Count: 212, Neg. LLF: 85.3081700392962
Iteration: 19, Func. Count: 223, Neg. LLF: 85.30816352327653
Iteration: 20, Func. Count: 233, Neg. LLF: 85.30816350267192
Optimization terminated successfully (Exit mode 0)
Current function value: 85.30816352327653
Iterations: 20
Function evaluations: 233
Gradient evaluations: 20
Iteration: 1, Func. Count: 13, Neg. LLF: 7348238.940927253
Iteration: 2, Func. Count: 26, Neg. LLF: 4023334.671854309
Iteration: 3, Func. Count: 39, Neg. LLF: 300.84590012160476
Iteration: 4, Func. Count: 53, Neg. LLF: 115.51597217129832
Iteration: 5, Func. Count: 66, Neg. LLF: 95.11358243983439
Iteration: 6, Func. Count: 79, Neg. LLF: 91.64002547325383
Iteration: 7, Func. Count: 92, Neg. LLF: 87.04269808487
Iteration: 8, Func. Count: 105, Neg. LLF: 88.78170893939092
Iteration: 9, Func. Count: 118, Neg. LLF: 88.08360236430357
Iteration: 10, Func. Count: 131, Neg. LLF: 86.14400634507585
Iteration: 11, Func. Count: 144, Neg. LLF: 85.42806538328234
Iteration: 12, Func. Count: 156, Neg. LLF: 85.91778215048623
Iteration: 13, Func. Count: 169, Neg. LLF: 85.33691577338215
Iteration: 14, Func. Count: 181, Neg. LLF: 85.33314786219631
Iteration: 15, Func. Count: 194, Neg. LLF: 85.32755400023089
Iteration: 16, Func. Count: 207, Neg. LLF: 85.30865413220437
Iteration: 17, Func. Count: 219, Neg. LLF: 85.30835173938699
Iteration: 18, Func. Count: 231, Neg. LLF: 85.30816522900746
Iteration: 19, Func. Count: 243, Neg. LLF: 85.30816344961272
Iteration: 20, Func. Count: 254, Neg. LLF: 85.30816347061594
Optimization terminated successfully (Exit mode 0)
Current function value: 85.30816344961272
Iterations: 20
Function evaluations: 254
Gradient evaluations: 20
Iteration: 1, Func. Count: 14, Neg. LLF: 12737997.065358007
Iteration: 2, Func. Count: 28, Neg. LLF: 3203639.9897178826
Iteration: 3, Func. Count: 43, Neg. LLF: 6540624.560459072
Iteration: 4, Func. Count: 57, Neg. LLF: 139.31415632968415
Iteration: 5, Func. Count: 71, Neg. LLF: 91.68109183661377
Iteration: 6, Func. Count: 85, Neg. LLF: 90.07559386540223
Iteration: 7, Func. Count: 99, Neg. LLF: 86.38605538615452
Iteration: 8, Func. Count: 112, Neg. LLF: 94.50350932950936
Iteration: 9, Func. Count: 127, Neg. LLF: 90.5450333064762
Iteration: 10, Func. Count: 141, Neg. LLF: 88.89795630853742
Iteration: 11, Func. Count: 156, Neg. LLF: 85.93329912235302
Iteration: 12, Func. Count: 170, Neg. LLF: 85.45662142239203
Iteration: 13, Func. Count: 183, Neg. LLF: 85.37724402218677
Iteration: 14, Func. Count: 196, Neg. LLF: 85.32963097597107
Iteration: 15, Func. Count: 209, Neg. LLF: 85.3161397360386
Iteration: 16, Func. Count: 222, Neg. LLF: 85.31037097148688
Iteration: 17, Func. Count: 235, Neg. LLF: 85.30922937884654
Iteration: 18, Func. Count: 248, Neg. LLF: 85.3084065774835
Iteration: 19, Func. Count: 261, Neg. LLF: 85.30818205538189
Iteration: 20, Func. Count: 274, Neg. LLF: 85.30816401462968
Iteration: 21, Func. Count: 287, Neg. LLF: 85.30816330844195
Optimization terminated successfully (Exit mode 0)
Current function value: 85.30816330844195
Iterations: 21
Function evaluations: 287
Gradient evaluations: 21
Iteration: 1, Func. Count: 11, Neg. LLF: 96.92420368768107
Iteration: 2, Func. Count: 22, Neg. LLF: 1095.489452816448
Iteration: 3, Func. Count: 33, Neg. LLF: 1843199.4900425503
Iteration: 4, Func. Count: 44, Neg. LLF: 944564.4250197613
Iteration: 5, Func. Count: 55, Neg. LLF: 206601.08690886985
Iteration: 6, Func. Count: 66, Neg. LLF: 233.89507301330343
Iteration: 7, Func. Count: 77, Neg. LLF: 346022.46048766765
Iteration: 8, Func. Count: 88, Neg. LLF: 89.57476528277775
Iteration: 9, Func. Count: 99, Neg. LLF: 86.45697914750535
Iteration: 10, Func. Count: 110, Neg. LLF: 87.16921468031181
Iteration: 11, Func. Count: 121, Neg. LLF: 86.41632148033582
Iteration: 12, Func. Count: 132, Neg. LLF: 84.86157129799653
Iteration: 13, Func. Count: 142, Neg. LLF: 84.84957648195333
Iteration: 14, Func. Count: 153, Neg. LLF: 84.8141956340581
Iteration: 15, Func. Count: 163, Neg. LLF: 84.81040682612168
Iteration: 16, Func. Count: 173, Neg. LLF: 84.80754509786172
Iteration: 17, Func. Count: 183, Neg. LLF: 84.80702294042567
Iteration: 18, Func. Count: 193, Neg. LLF: 84.80700973250337
Iteration: 19, Func. Count: 202, Neg. LLF: 84.80700972472326
Optimization terminated successfully (Exit mode 0)
Current function value: 84.80700973250337
Iterations: 19
Function evaluations: 202
Gradient evaluations: 19
Iteration: 1, Func. Count: 12, Neg. LLF: 4184875.41020235
Iteration: 2, Func. Count: 24, Neg. LLF: 141094395.40355387
Iteration: 3, Func. Count: 37, Neg. LLF: 12871757.962936612
Iteration: 4, Func. Count: 49, Neg. LLF: 114.41780491148016
Iteration: 5, Func. Count: 61, Neg. LLF: 86.75279587044433
Iteration: 6, Func. Count: 72, Neg. LLF: 108.38563163564558
Iteration: 7, Func. Count: 84, Neg. LLF: 91.07675278192725
Iteration: 8, Func. Count: 97, Neg. LLF: 114.09426005089739
Iteration: 9, Func. Count: 109, Neg. LLF: 90.30643406375378
Iteration: 10, Func. Count: 122, Neg. LLF: 90.07425620644847
Iteration: 11, Func. Count: 134, Neg. LLF: 87.91347514782808
Iteration: 12, Func. Count: 146, Neg. LLF: 85.15958954204976
Iteration: 13, Func. Count: 157, Neg. LLF: 84.90994937016885
Iteration: 14, Func. Count: 168, Neg. LLF: 84.8313616683142
Iteration: 15, Func. Count: 179, Neg. LLF: 84.81311561536205
Iteration: 16, Func. Count: 190, Neg. LLF: 84.80841809813872
Iteration: 17, Func. Count: 201, Neg. LLF: 84.80732984270843
Iteration: 18, Func. Count: 212, Neg. LLF: 84.80705519940085
Iteration: 19, Func. Count: 223, Neg. LLF: 84.80701573318558
Iteration: 20, Func. Count: 234, Neg. LLF: 84.80700973353387
Iteration: 21, Func. Count: 244, Neg. LLF: 84.8070097865464
Optimization terminated successfully (Exit mode 0)
Current function value: 84.80700973353387
Iterations: 21
Function evaluations: 244
Gradient evaluations: 21
Iteration: 1, Func. Count: 13, Neg. LLF: 4380752.622334542
Iteration: 2, Func. Count: 26, Neg. LLF: 56792243.34663628
Iteration: 3, Func. Count: 40, Neg. LLF: 5054306.551762584
Iteration: 4, Func. Count: 53, Neg. LLF: 101.96480433205456
Iteration: 5, Func. Count: 66, Neg. LLF: 98.90155955117997
Iteration: 6, Func. Count: 79, Neg. LLF: 88.61080292217088
Iteration: 7, Func. Count: 92, Neg. LLF: 92.05643930455373
Iteration: 8, Func. Count: 105, Neg. LLF: 87.7060280628215
Iteration: 9, Func. Count: 118, Neg. LLF: 85.46064898590771
Iteration: 10, Func. Count: 130, Neg. LLF: 86.31910852005575
Iteration: 11, Func. Count: 143, Neg. LLF: 87.14059568183495
Iteration: 12, Func. Count: 156, Neg. LLF: 85.27222943809912
Iteration: 13, Func. Count: 169, Neg. LLF: 84.81821714813822
Iteration: 14, Func. Count: 181, Neg. LLF: 84.81576422519626
Iteration: 15, Func. Count: 194, Neg. LLF: 84.80734810470383
Iteration: 16, Func. Count: 206, Neg. LLF: 84.80702719965154
Iteration: 17, Func. Count: 218, Neg. LLF: 84.80701551658615
Iteration: 18, Func. Count: 230, Neg. LLF: 84.8070094345615
Iteration: 19, Func. Count: 241, Neg. LLF: 84.80700946654008
Optimization terminated successfully (Exit mode 0)
Current function value: 84.8070094345615
Iterations: 19
Function evaluations: 241
Gradient evaluations: 19
Iteration: 1, Func. Count: 14, Neg. LLF: 6718009.470887752
Iteration: 2, Func. Count: 28, Neg. LLF: 11434736.063391775
Iteration: 3, Func. Count: 42, Neg. LLF: 3961234.9457615316
Iteration: 4, Func. Count: 57, Neg. LLF: 96.17128441217736
Iteration: 5, Func. Count: 71, Neg. LLF: 98.11621670006474
Iteration: 6, Func. Count: 85, Neg. LLF: 87.73086247227491
Iteration: 7, Func. Count: 99, Neg. LLF: 86.90492371085126
Iteration: 8, Func. Count: 113, Neg. LLF: 87.7203059909105
Iteration: 9, Func. Count: 127, Neg. LLF: 86.84221967653922
Iteration: 10, Func. Count: 141, Neg. LLF: 85.59886016130557
Iteration: 11, Func. Count: 154, Neg. LLF: 86.39291706132536
Iteration: 12, Func. Count: 168, Neg. LLF: 86.73676422254171
Iteration: 13, Func. Count: 182, Neg. LLF: 89.23713200424932
Iteration: 14, Func. Count: 196, Neg. LLF: 84.94047081015447
Iteration: 15, Func. Count: 210, Neg. LLF: 84.8182987530908
Iteration: 16, Func. Count: 223, Neg. LLF: 84.80838581065221
Iteration: 17, Func. Count: 236, Neg. LLF: 84.80721801280309
Iteration: 18, Func. Count: 249, Neg. LLF: 84.80706568909216
Iteration: 19, Func. Count: 262, Neg. LLF: 84.80702231795902
Iteration: 20, Func. Count: 275, Neg. LLF: 84.807011552009
Iteration: 21, Func. Count: 288, Neg. LLF: 84.8070097808609
Iteration: 22, Func. Count: 300, Neg. LLF: 84.80700982905361
Optimization terminated successfully (Exit mode 0)
Current function value: 84.8070097808609
Iterations: 22
Function evaluations: 300
Gradient evaluations: 22
Iteration: 1, Func. Count: 15, Neg. LLF: 9457935.778066454
Iteration: 2, Func. Count: 30, Neg. LLF: 3923991.363229812
Iteration: 3, Func. Count: 45, Neg. LLF: 10935273.940108914
Iteration: 4, Func. Count: 60, Neg. LLF: 114.69867502338705
Iteration: 5, Func. Count: 75, Neg. LLF: 88.06887285162144
Iteration: 6, Func. Count: 90, Neg. LLF: 97.16247708317559
Iteration: 7, Func. Count: 105, Neg. LLF: 91.18340060671505
Iteration: 8, Func. Count: 120, Neg. LLF: 94.56562456125452
Iteration: 9, Func. Count: 136, Neg. LLF: 86.33916960269785
Iteration: 10, Func. Count: 150, Neg. LLF: 1059.8044839712882
Iteration: 11, Func. Count: 165, Neg. LLF: 92.25423337987523
Iteration: 12, Func. Count: 180, Neg. LLF: 86.88906653517718
Iteration: 13, Func. Count: 195, Neg. LLF: 85.89377846765781
Iteration: 14, Func. Count: 210, Neg. LLF: 85.78191648835015
Iteration: 15, Func. Count: 225, Neg. LLF: 85.36183163075425
Iteration: 16, Func. Count: 239, Neg. LLF: 85.36863993399375
Iteration: 17, Func. Count: 254, Neg. LLF: 85.34575431420889
Iteration: 18, Func. Count: 268, Neg. LLF: 85.3427588659908
Iteration: 19, Func. Count: 282, Neg. LLF: 85.34213118966098
Iteration: 20, Func. Count: 296, Neg. LLF: 85.34188392598864
Iteration: 21, Func. Count: 310, Neg. LLF: 85.34186117447379
Iteration: 22, Func. Count: 324, Neg. LLF: 85.3418605763713
Optimization terminated successfully (Exit mode 0)
Current function value: 85.3418605763713
Iterations: 22
Function evaluations: 324
Gradient evaluations: 22
Iteration: 1, Func. Count: 8, Neg. LLF: 104.19377622190859
Iteration: 2, Func. Count: 17, Neg. LLF: 152.58614780407487
Iteration: 3, Func. Count: 25, Neg. LLF: 3549.9811855302364
Iteration: 4, Func. Count: 33, Neg. LLF: 234.03071495688886
Iteration: 5, Func. Count: 41, Neg. LLF: 1424.2428905533045
Iteration: 6, Func. Count: 49, Neg. LLF: 233.1064643911555
Iteration: 7, Func. Count: 57, Neg. LLF: 183.69111961662315
Iteration: 8, Func. Count: 65, Neg. LLF: 470.09858829349156
Iteration: 9, Func. Count: 73, Neg. LLF: 127.56481626587535
Iteration: 10, Func. Count: 81, Neg. LLF: 114.30415443375153
Iteration: 11, Func. Count: 89, Neg. LLF: 111.5143056607966
Iteration: 12, Func. Count: 97, Neg. LLF: 100.30061529473018
Iteration: 13, Func. Count: 105, Neg. LLF: 110.20492828675184
Iteration: 14, Func. Count: 113, Neg. LLF: 92.20275257003298
Iteration: 15, Func. Count: 121, Neg. LLF: 94.00484748206426
Iteration: 16, Func. Count: 129, Neg. LLF: 89.45142682461336
Iteration: 17, Func. Count: 137, Neg. LLF: 88.57354299426216
Iteration: 18, Func. Count: 144, Neg. LLF: 88.42220032498922
Iteration: 19, Func. Count: 151, Neg. LLF: 88.38110308532598
Iteration: 20, Func. Count: 158, Neg. LLF: 88.33551681129023
Iteration: 21, Func. Count: 165, Neg. LLF: 88.24570988901536
Iteration: 22, Func. Count: 172, Neg. LLF: 88.20552108974748
Iteration: 23, Func. Count: 179, Neg. LLF: 88.19478211748093
Iteration: 24, Func. Count: 186, Neg. LLF: 88.19268233799072
Iteration: 25, Func. Count: 193, Neg. LLF: 88.19254150847425
Iteration: 26, Func. Count: 200, Neg. LLF: 88.1925333439978
Iteration: 27, Func. Count: 206, Neg. LLF: 88.19253330010574
Optimization terminated successfully (Exit mode 0)
Current function value: 88.1925333439978
Iterations: 27
Function evaluations: 206
Gradient evaluations: 27
Iteration: 1, Func. Count: 9, Neg. LLF: 113.74572488559217
Iteration: 2, Func. Count: 22, Neg. LLF: 118.20713265203135
Iteration: 3, Func. Count: 31, Neg. LLF: 268.85164750992
Iteration: 4, Func. Count: 40, Neg. LLF: 92.61052945421682
Iteration: 5, Func. Count: 49, Neg. LLF: 89.83706794329935
Iteration: 6, Func. Count: 58, Neg. LLF: 89.06760879044771
Iteration: 7, Func. Count: 67, Neg. LLF: 92.11489336335339
Iteration: 8, Func. Count: 76, Neg. LLF: 88.40063480598107
Iteration: 9, Func. Count: 84, Neg. LLF: 88.19669525722713
Iteration: 10, Func. Count: 92, Neg. LLF: 88.23405863318445
Iteration: 11, Func. Count: 101, Neg. LLF: 88.14312395100936
Iteration: 12, Func. Count: 109, Neg. LLF: 88.14170956787454
Iteration: 13, Func. Count: 117, Neg. LLF: 88.14122186963624
Iteration: 14, Func. Count: 125, Neg. LLF: 88.14022473336938
Iteration: 15, Func. Count: 133, Neg. LLF: 88.13896943227701
Iteration: 16, Func. Count: 141, Neg. LLF: 88.1389322498034
Iteration: 17, Func. Count: 149, Neg. LLF: 88.13893051286018
Iteration: 18, Func. Count: 156, Neg. LLF: 88.13893046975276
Optimization terminated successfully (Exit mode 0)
Current function value: 88.13893051286018
Iterations: 18
Function evaluations: 156
Gradient evaluations: 18
Iteration: 1, Func. Count: 10, Neg. LLF: 275.51537540243703
Iteration: 2, Func. Count: 20, Neg. LLF: 3490.8526935940104
Iteration: 3, Func. Count: 30, Neg. LLF: 116.06963853558791
Iteration: 4, Func. Count: 40, Neg. LLF: 148.60760577721192
Iteration: 5, Func. Count: 51, Neg. LLF: 92.15965500133788
Iteration: 6, Func. Count: 61, Neg. LLF: 88.70739745070459
Iteration: 7, Func. Count: 70, Neg. LLF: 91.31182505666776
Iteration: 8, Func. Count: 80, Neg. LLF: 88.31089107620197
Iteration: 9, Func. Count: 90, Neg. LLF: 88.21686615561768
Iteration: 10, Func. Count: 100, Neg. LLF: 88.14316770861558
Iteration: 11, Func. Count: 109, Neg. LLF: 88.1390175126974
Iteration: 12, Func. Count: 118, Neg. LLF: 88.13893642936475
Iteration: 13, Func. Count: 127, Neg. LLF: 88.138931977687
Iteration: 14, Func. Count: 136, Neg. LLF: 88.13893053417907
Iteration: 15, Func. Count: 144, Neg. LLF: 88.1389305037875
Optimization terminated successfully (Exit mode 0)
Current function value: 88.13893053417907
Iterations: 15
Function evaluations: 144
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 522.2009090130164
Iteration: 2, Func. Count: 22, Neg. LLF: 2369.7861335266957
Iteration: 3, Func. Count: 33, Neg. LLF: 194.2937659742429
Iteration: 4, Func. Count: 44, Neg. LLF: 120.11725167228299
Iteration: 5, Func. Count: 56, Neg. LLF: 91.81231027894485
Iteration: 6, Func. Count: 67, Neg. LLF: 98.22346849712872
Iteration: 7, Func. Count: 78, Neg. LLF: 106.02018379266293
Iteration: 8, Func. Count: 89, Neg. LLF: 99.15511539975344
Iteration: 9, Func. Count: 100, Neg. LLF: 100.2003064869358
Iteration: 10, Func. Count: 111, Neg. LLF: 87.56353458409929
Iteration: 11, Func. Count: 121, Neg. LLF: 95.33035493933049
Iteration: 12, Func. Count: 132, Neg. LLF: 104.48854512350066
Iteration: 13, Func. Count: 144, Neg. LLF: 99.75701100911287
Iteration: 14, Func. Count: 155, Neg. LLF: 87.41019349534578
Iteration: 15, Func. Count: 166, Neg. LLF: 87.20935168372714
Iteration: 16, Func. Count: 177, Neg. LLF: 87.31449969694596
Iteration: 17, Func. Count: 188, Neg. LLF: 87.069711436278
Iteration: 18, Func. Count: 198, Neg. LLF: 87.06884145619209
Iteration: 19, Func. Count: 208, Neg. LLF: 87.06870243218484
Iteration: 20, Func. Count: 218, Neg. LLF: 87.06864167651555
Iteration: 21, Func. Count: 228, Neg. LLF: 87.06864071171047
Optimization terminated successfully (Exit mode 0)
Current function value: 87.06864071171047
Iterations: 21
Function evaluations: 228
Gradient evaluations: 21
Iteration: 1, Func. Count: 12, Neg. LLF: 671.3527479000248
Iteration: 2, Func. Count: 24, Neg. LLF: 23002.760975016816
Iteration: 3, Func. Count: 36, Neg. LLF: 120.31584436040606
Iteration: 4, Func. Count: 48, Neg. LLF: 596.7125096283698
Iteration: 5, Func. Count: 60, Neg. LLF: 94.24358055316124
Iteration: 6, Func. Count: 73, Neg. LLF: 89.20992386351648
Iteration: 7, Func. Count: 84, Neg. LLF: 91.92206221622244
Iteration: 8, Func. Count: 96, Neg. LLF: 96.03768291614357
Iteration: 9, Func. Count: 109, Neg. LLF: 92.45384339949906
Iteration: 10, Func. Count: 121, Neg. LLF: 87.75733095244209
Iteration: 11, Func. Count: 132, Neg. LLF: 87.91664114154915
Iteration: 12, Func. Count: 145, Neg. LLF: 87.36790752433416
Iteration: 13, Func. Count: 156, Neg. LLF: 87.26350244989672
Iteration: 14, Func. Count: 167, Neg. LLF: 87.15337786016023
Iteration: 15, Func. Count: 178, Neg. LLF: 87.13089574801508
Iteration: 16, Func. Count: 189, Neg. LLF: 87.08062886850358
Iteration: 17, Func. Count: 200, Neg. LLF: 87.07505141499442
Iteration: 18, Func. Count: 211, Neg. LLF: 87.06887372822428
Iteration: 19, Func. Count: 222, Neg. LLF: 87.06864683302483
Iteration: 20, Func. Count: 233, Neg. LLF: 87.06864101062345
Iteration: 21, Func. Count: 244, Neg. LLF: 87.06864042191224
Optimization terminated successfully (Exit mode 0)
Current function value: 87.06864042191224
Iterations: 21
Function evaluations: 244
Gradient evaluations: 21
Iteration: 1, Func. Count: 9, Neg. LLF: 104.0115335577795
Iteration: 2, Func. Count: 19, Neg. LLF: 153.89515769135463
Iteration: 3, Func. Count: 28, Neg. LLF: 1084.5181155936702
Iteration: 4, Func. Count: 37, Neg. LLF: 215.8284653628605
Iteration: 5, Func. Count: 46, Neg. LLF: 1711.3060184781114
Iteration: 6, Func. Count: 55, Neg. LLF: 606.7904986572169
Iteration: 7, Func. Count: 64, Neg. LLF: 517.7033388917444
Iteration: 8, Func. Count: 73, Neg. LLF: 383.04300004928973
Iteration: 9, Func. Count: 82, Neg. LLF: 193.66107109296976
Iteration: 10, Func. Count: 91, Neg. LLF: 197.5646979755035
Iteration: 11, Func. Count: 100, Neg. LLF: 160.97465632778813
Iteration: 12, Func. Count: 109, Neg. LLF: 131.22155646111509
Iteration: 13, Func. Count: 118, Neg. LLF: 92.20572928136625
Iteration: 14, Func. Count: 127, Neg. LLF: 115.20700543369043
Iteration: 15, Func. Count: 136, Neg. LLF: 88.12995286667625
Iteration: 16, Func. Count: 144, Neg. LLF: 108.50604612618875
Iteration: 17, Func. Count: 153, Neg. LLF: 88.53971154164358
Iteration: 18, Func. Count: 162, Neg. LLF: 89.29028366383703
Iteration: 19, Func. Count: 171, Neg. LLF: 87.63529468519371
Iteration: 20, Func. Count: 179, Neg. LLF: 87.57538961889279
Iteration: 21, Func. Count: 187, Neg. LLF: 87.55566154456235
Iteration: 22, Func. Count: 195, Neg. LLF: 87.5465618134937
Iteration: 23, Func. Count: 203, Neg. LLF: 87.54595830973203
Iteration: 24, Func. Count: 211, Neg. LLF: 87.54589550486139
Iteration: 25, Func. Count: 219, Neg. LLF: 87.5458062569899
Iteration: 26, Func. Count: 227, Neg. LLF: 87.54575403978869
Iteration: 27, Func. Count: 235, Neg. LLF: 87.54573898202314
Iteration: 28, Func. Count: 243, Neg. LLF: 87.54573778927345
Iteration: 29, Func. Count: 250, Neg. LLF: 87.54573776885209
Optimization terminated successfully (Exit mode 0)
Current function value: 87.54573778927345
Iterations: 29
Function evaluations: 250
Gradient evaluations: 29
Iteration: 1, Func. Count: 10, Neg. LLF: 148.61363611941405
Iteration: 2, Func. Count: 25, Neg. LLF: 246.51194187315346
Iteration: 3, Func. Count: 35, Neg. LLF: 266.18204482384033
Iteration: 4, Func. Count: 46, Neg. LLF: 87.7006111474314
Iteration: 5, Func. Count: 55, Neg. LLF: 152.018689271045
Iteration: 6, Func. Count: 65, Neg. LLF: 87.45174798713663
Iteration: 7, Func. Count: 74, Neg. LLF: 90.42271486286295
Iteration: 8, Func. Count: 84, Neg. LLF: 87.36088365383262
Iteration: 9, Func. Count: 93, Neg. LLF: 87.34637519618593
Iteration: 10, Func. Count: 102, Neg. LLF: 88.40208826216367
Iteration: 11, Func. Count: 112, Neg. LLF: 87.60523353898692
Iteration: 12, Func. Count: 122, Neg. LLF: 87.33771126781092
Iteration: 13, Func. Count: 131, Neg. LLF: 87.33722297624064
Iteration: 14, Func. Count: 140, Neg. LLF: 87.33699218602318
Iteration: 15, Func. Count: 149, Neg. LLF: 87.33696418652771
Iteration: 16, Func. Count: 158, Neg. LLF: 87.33696064089266
Iteration: 17, Func. Count: 167, Neg. LLF: 87.33695876408726
Iteration: 18, Func. Count: 176, Neg. LLF: 87.33695666324434
Iteration: 19, Func. Count: 185, Neg. LLF: 87.33695601722548
Optimization terminated successfully (Exit mode 0)
Current function value: 87.33695601722548
Iterations: 19
Function evaluations: 185
Gradient evaluations: 19
Iteration: 1, Func. Count: 11, Neg. LLF: 128.72392042064453
Iteration: 2, Func. Count: 26, Neg. LLF: 111.004378537399
Iteration: 3, Func. Count: 37, Neg. LLF: 224.4368171342808
Iteration: 4, Func. Count: 49, Neg. LLF: 93.0564119007012
Iteration: 5, Func. Count: 60, Neg. LLF: 88.6698519393348
Iteration: 6, Func. Count: 71, Neg. LLF: 92.19150258452929
Iteration: 7, Func. Count: 82, Neg. LLF: 93.37638619241703
Iteration: 8, Func. Count: 93, Neg. LLF: 87.58449144889778
Iteration: 9, Func. Count: 103, Neg. LLF: 88.1197060076828
Iteration: 10, Func. Count: 114, Neg. LLF: 88.69693667451666
Iteration: 11, Func. Count: 126, Neg. LLF: 87.35481289819452
Iteration: 12, Func. Count: 136, Neg. LLF: 87.34646439828386
Iteration: 13, Func. Count: 146, Neg. LLF: 87.34265491055088
Iteration: 14, Func. Count: 156, Neg. LLF: 87.33833186088562
Iteration: 15, Func. Count: 166, Neg. LLF: 87.33752902545314
Iteration: 16, Func. Count: 176, Neg. LLF: 87.33700568784323
Iteration: 17, Func. Count: 186, Neg. LLF: 87.33696414209567
Iteration: 18, Func. Count: 196, Neg. LLF: 87.33695834241604
Iteration: 19, Func. Count: 206, Neg. LLF: 87.33695714811832
Iteration: 20, Func. Count: 216, Neg. LLF: 87.33695600645142
Iteration: 21, Func. Count: 225, Neg. LLF: 87.33695598066984
Optimization terminated successfully (Exit mode 0)
Current function value: 87.33695600645142
Iterations: 21
Function evaluations: 225
Gradient evaluations: 21
Iteration: 1, Func. Count: 12, Neg. LLF: 104.09774671904457
Iteration: 2, Func. Count: 27, Neg. LLF: 6603.638797969629
Iteration: 3, Func. Count: 39, Neg. LLF: 2613.2104287022216
Iteration: 4, Func. Count: 51, Neg. LLF: 91.97922258233928
Iteration: 5, Func. Count: 63, Neg. LLF: 105.3206014877856
Iteration: 6, Func. Count: 75, Neg. LLF: 95.78566077080444
Iteration: 7, Func. Count: 87, Neg. LLF: 95.20218768313781
Iteration: 8, Func. Count: 99, Neg. LLF: 94.17999536914583
Iteration: 9, Func. Count: 111, Neg. LLF: 91.62775622512034
Iteration: 10, Func. Count: 123, Neg. LLF: 91.53327566376076
Iteration: 11, Func. Count: 135, Neg. LLF: 88.44067811997472
Iteration: 12, Func. Count: 147, Neg. LLF: 87.7118856651812
Iteration: 13, Func. Count: 159, Neg. LLF: 87.23668261423562
Iteration: 14, Func. Count: 170, Neg. LLF: 87.74270226380074
Iteration: 15, Func. Count: 182, Neg. LLF: 87.17508597203143
Iteration: 16, Func. Count: 194, Neg. LLF: 87.23850222478536
Iteration: 17, Func. Count: 206, Neg. LLF: 87.0424646170314
Iteration: 18, Func. Count: 217, Neg. LLF: 87.04153951970173
Iteration: 19, Func. Count: 228, Neg. LLF: 87.0414938658118
Iteration: 20, Func. Count: 239, Neg. LLF: 87.04149225227587
Iteration: 21, Func. Count: 249, Neg. LLF: 87.04149222006144
Optimization terminated successfully (Exit mode 0)
Current function value: 87.04149225227587
Iterations: 21
Function evaluations: 249
Gradient evaluations: 21
Iteration: 1, Func. Count: 13, Neg. LLF: 330.11781138114833
Iteration: 2, Func. Count: 26, Neg. LLF: 96.10777223902844
Iteration: 3, Func. Count: 39, Neg. LLF: 125.58812821743308
Iteration: 4, Func. Count: 52, Neg. LLF: 95.12925562931204
Iteration: 5, Func. Count: 65, Neg. LLF: 119.47498501571005
Iteration: 6, Func. Count: 78, Neg. LLF: 142.0030583968327
Iteration: 7, Func. Count: 91, Neg. LLF: 114.38469344310371
Iteration: 8, Func. Count: 104, Neg. LLF: 135.96267062346726
Iteration: 9, Func. Count: 117, Neg. LLF: 102.66674247866497
Iteration: 10, Func. Count: 130, Neg. LLF: 88.31598115765561
Iteration: 11, Func. Count: 143, Neg. LLF: 87.40095091354046
Iteration: 12, Func. Count: 155, Neg. LLF: 87.78187304690596
Iteration: 13, Func. Count: 168, Neg. LLF: 87.42266499093668
Iteration: 14, Func. Count: 181, Neg. LLF: 87.51395010339316
Iteration: 15, Func. Count: 194, Neg. LLF: 87.12399596001522
Iteration: 16, Func. Count: 206, Neg. LLF: 87.59695647101037
Iteration: 17, Func. Count: 219, Neg. LLF: 87.16564341744478
Iteration: 18, Func. Count: 232, Neg. LLF: 87.04294157968837
Iteration: 19, Func. Count: 244, Neg. LLF: 87.04186322559455
Iteration: 20, Func. Count: 256, Neg. LLF: 87.04150602927437
Iteration: 21, Func. Count: 268, Neg. LLF: 87.04149539214852
Iteration: 22, Func. Count: 280, Neg. LLF: 87.0414922676775
Iteration: 23, Func. Count: 291, Neg. LLF: 87.0414923199562
Optimization terminated successfully (Exit mode 0)
Current function value: 87.0414922676775
Iterations: 23
Function evaluations: 291
Gradient evaluations: 23
Iteration: 1, Func. Count: 10, Neg. LLF: 94.48627678794479
Iteration: 2, Func. Count: 20, Neg. LLF: 7826.063189457228
Iteration: 3, Func. Count: 31, Neg. LLF: 2590.7083041366513
Iteration: 4, Func. Count: 41, Neg. LLF: 112.70674455331059
Iteration: 5, Func. Count: 52, Neg. LLF: 112.95208069412213
Iteration: 6, Func. Count: 62, Neg. LLF: 116.43953058180891
Iteration: 7, Func. Count: 72, Neg. LLF: 128.7457133014939
Iteration: 8, Func. Count: 82, Neg. LLF: 117.78167535871663
Iteration: 9, Func. Count: 92, Neg. LLF: 180.3538322929457
Iteration: 10, Func. Count: 102, Neg. LLF: 88.62591705397517
Iteration: 11, Func. Count: 112, Neg. LLF: 85.40361603459368
Iteration: 12, Func. Count: 121, Neg. LLF: 85.67875295467074
Iteration: 13, Func. Count: 132, Neg. LLF: 87.11947494282398
Iteration: 14, Func. Count: 142, Neg. LLF: 85.19440735810427
Iteration: 15, Func. Count: 151, Neg. LLF: 85.18468703218566
Iteration: 16, Func. Count: 160, Neg. LLF: 85.1818402655775
Iteration: 17, Func. Count: 169, Neg. LLF: 85.1809217538957
Iteration: 18, Func. Count: 178, Neg. LLF: 85.18081422728598
Iteration: 19, Func. Count: 187, Neg. LLF: 85.18078551387084
Iteration: 20, Func. Count: 196, Neg. LLF: 85.1807833061349
Iteration: 21, Func. Count: 204, Neg. LLF: 85.18078328981957
Optimization terminated successfully (Exit mode 0)
Current function value: 85.1807833061349
Iterations: 21
Function evaluations: 204
Gradient evaluations: 21
Iteration: 1, Func. Count: 11, Neg. LLF: 143.27777321028358
Iteration: 2, Func. Count: 27, Neg. LLF: 179.52470045383504
Iteration: 3, Func. Count: 38, Neg. LLF: 506.0718460156168
Iteration: 4, Func. Count: 50, Neg. LLF: 145.81503109639073
Iteration: 5, Func. Count: 61, Neg. LLF: 88.67265010284437
Iteration: 6, Func. Count: 72, Neg. LLF: 92.51705668807703
Iteration: 7, Func. Count: 83, Neg. LLF: 86.39763338341602
Iteration: 8, Func. Count: 94, Neg. LLF: 88.07194438900662
Iteration: 9, Func. Count: 105, Neg. LLF: 86.62456766920639
Iteration: 10, Func. Count: 116, Neg. LLF: 86.10151876616763
Iteration: 11, Func. Count: 127, Neg. LLF: 85.95915024539295
Iteration: 12, Func. Count: 138, Neg. LLF: 85.3027178178926
Iteration: 13, Func. Count: 148, Neg. LLF: 85.30475172116415
Iteration: 14, Func. Count: 159, Neg. LLF: 86.65971444599795
Iteration: 15, Func. Count: 170, Neg. LLF: 85.23014067961749
Iteration: 16, Func. Count: 180, Neg. LLF: 85.20128845866671
Iteration: 17, Func. Count: 190, Neg. LLF: 85.18657704710675
Iteration: 18, Func. Count: 200, Neg. LLF: 85.18190620734038
Iteration: 19, Func. Count: 210, Neg. LLF: 85.18086848760784
Iteration: 20, Func. Count: 220, Neg. LLF: 85.18079033919005
Iteration: 21, Func. Count: 230, Neg. LLF: 85.18078478206614
Iteration: 22, Func. Count: 240, Neg. LLF: 85.18078373546767
Iteration: 23, Func. Count: 249, Neg. LLF: 85.18078372264586
Optimization terminated successfully (Exit mode 0)
Current function value: 85.18078373546767
Iterations: 23
Function evaluations: 249
Gradient evaluations: 23
Iteration: 1, Func. Count: 12, Neg. LLF: 112.13592096480916
Iteration: 2, Func. Count: 28, Neg. LLF: 1926.4235373945319
Iteration: 3, Func. Count: 40, Neg. LLF: 147.84262541273264
Iteration: 4, Func. Count: 52, Neg. LLF: 120.94231040038098
Iteration: 5, Func. Count: 64, Neg. LLF: 92.84170343389034
Iteration: 6, Func. Count: 76, Neg. LLF: 105.08565605822355
Iteration: 7, Func. Count: 88, Neg. LLF: 87.0129021351815
Iteration: 8, Func. Count: 100, Neg. LLF: 87.53218031007557
Iteration: 9, Func. Count: 112, Neg. LLF: 87.2590949790962
Iteration: 10, Func. Count: 124, Neg. LLF: 85.56936763736245
Iteration: 11, Func. Count: 136, Neg. LLF: 85.7870872557488
Iteration: 12, Func. Count: 148, Neg. LLF: 87.30485368560916
Iteration: 13, Func. Count: 160, Neg. LLF: 85.16478507527587
Iteration: 14, Func. Count: 171, Neg. LLF: 85.81711680570646
Iteration: 15, Func. Count: 183, Neg. LLF: 85.09912338676418
Iteration: 16, Func. Count: 194, Neg. LLF: 85.06214271352245
Iteration: 17, Func. Count: 205, Neg. LLF: 85.04660212408426
Iteration: 18, Func. Count: 216, Neg. LLF: 85.04174364049118
Iteration: 19, Func. Count: 227, Neg. LLF: 85.04159900428425
Iteration: 20, Func. Count: 238, Neg. LLF: 85.04158815292853
Iteration: 21, Func. Count: 248, Neg. LLF: 85.04158811845662
Optimization terminated successfully (Exit mode 0)
Current function value: 85.04158815292853
Iterations: 21
Function evaluations: 248
Gradient evaluations: 21
Iteration: 1, Func. Count: 13, Neg. LLF: 7589164.482087162
Iteration: 2, Func. Count: 26, Neg. LLF: 93.17905764117808
Iteration: 3, Func. Count: 41, Neg. LLF: 103.03278368067754
Iteration: 4, Func. Count: 54, Neg. LLF: 109.54757879665496
Iteration: 5, Func. Count: 67, Neg. LLF: 136.90953867294647
Iteration: 6, Func. Count: 80, Neg. LLF: 217.74363993606903
Iteration: 7, Func. Count: 93, Neg. LLF: 164.73580008648506
Iteration: 8, Func. Count: 106, Neg. LLF: 88.24192862348187
Iteration: 9, Func. Count: 119, Neg. LLF: 87.41368398068481
Iteration: 10, Func. Count: 132, Neg. LLF: 86.21909410130301
Iteration: 11, Func. Count: 145, Neg. LLF: 85.36858726469154
Iteration: 12, Func. Count: 157, Neg. LLF: 91.20485692587636
Iteration: 13, Func. Count: 170, Neg. LLF: 85.8855299406885
Iteration: 14, Func. Count: 184, Neg. LLF: 85.4906921170542
Iteration: 15, Func. Count: 197, Neg. LLF: 85.43984373463225
Iteration: 16, Func. Count: 210, Neg. LLF: 85.05900137492627
Iteration: 17, Func. Count: 222, Neg. LLF: 85.04323573906551
Iteration: 18, Func. Count: 234, Neg. LLF: 85.04177585708504
Iteration: 19, Func. Count: 246, Neg. LLF: 85.04159419049807
Iteration: 20, Func. Count: 258, Neg. LLF: 85.04158807953257
Iteration: 21, Func. Count: 269, Neg. LLF: 85.04158806816478
Optimization terminated successfully (Exit mode 0)
Current function value: 85.04158807953257
Iterations: 21
Function evaluations: 269
Gradient evaluations: 21
Iteration: 1, Func. Count: 14, Neg. LLF: 15871620.508114662
Iteration: 2, Func. Count: 28, Neg. LLF: 3741740.180156449
Iteration: 3, Func. Count: 43, Neg. LLF: 6319556.578897011
Iteration: 4, Func. Count: 57, Neg. LLF: 104.93777498677358
Iteration: 5, Func. Count: 71, Neg. LLF: 92.65457650012532
Iteration: 6, Func. Count: 85, Neg. LLF: 86.57592055986159
Iteration: 7, Func. Count: 98, Neg. LLF: 117.46568956264561
Iteration: 8, Func. Count: 113, Neg. LLF: 95.90081626830188
Iteration: 9, Func. Count: 128, Neg. LLF: 116.44869021298771
Iteration: 10, Func. Count: 143, Neg. LLF: 87.57427029223102
Iteration: 11, Func. Count: 157, Neg. LLF: 89.61969205195916
Iteration: 12, Func. Count: 171, Neg. LLF: 87.73987835130488
Iteration: 13, Func. Count: 185, Neg. LLF: 85.70517152452338
Iteration: 14, Func. Count: 199, Neg. LLF: 85.08396423347786
Iteration: 15, Func. Count: 212, Neg. LLF: 85.04878378979194
Iteration: 16, Func. Count: 225, Neg. LLF: 85.04390254792575
Iteration: 17, Func. Count: 238, Neg. LLF: 85.04169879395033
Iteration: 18, Func. Count: 251, Neg. LLF: 85.04162553108743
Iteration: 19, Func. Count: 264, Neg. LLF: 85.0415964195271
Iteration: 20, Func. Count: 277, Neg. LLF: 85.041589043991
Iteration: 21, Func. Count: 290, Neg. LLF: 85.04158783189732
Iteration: 22, Func. Count: 302, Neg. LLF: 85.0415878842092
Optimization terminated successfully (Exit mode 0)
Current function value: 85.04158783189732
Iterations: 22
Function evaluations: 302
Gradient evaluations: 22
Iteration: 1, Func. Count: 11, Neg. LLF: 97.64746245525731
Iteration: 2, Func. Count: 22, Neg. LLF: 931.3583596545939
Iteration: 3, Func. Count: 33, Neg. LLF: 1031524.8776133417
Iteration: 4, Func. Count: 44, Neg. LLF: 920.0155283491546
Iteration: 5, Func. Count: 55, Neg. LLF: 530.1706010958999
Iteration: 6, Func. Count: 66, Neg. LLF: 109.2955906422458
Iteration: 7, Func. Count: 77, Neg. LLF: 127.96428194598185
Iteration: 8, Func. Count: 88, Neg. LLF: 139.4519201247178
Iteration: 9, Func. Count: 99, Neg. LLF: 598.7513384986077
Iteration: 10, Func. Count: 110, Neg. LLF: 120.67917747667398
Iteration: 11, Func. Count: 121, Neg. LLF: 87.54648321486718
Iteration: 12, Func. Count: 132, Neg. LLF: 88.969989972729
Iteration: 13, Func. Count: 143, Neg. LLF: 87.69230719244452
Iteration: 14, Func. Count: 154, Neg. LLF: 85.22560404762119
Iteration: 15, Func. Count: 164, Neg. LLF: 85.20868092853497
Iteration: 16, Func. Count: 174, Neg. LLF: 85.18411769376316
Iteration: 17, Func. Count: 184, Neg. LLF: 85.17810671148587
Iteration: 18, Func. Count: 194, Neg. LLF: 85.17754693709593
Iteration: 19, Func. Count: 204, Neg. LLF: 85.17740164717698
Iteration: 20, Func. Count: 214, Neg. LLF: 85.17739672174028
Iteration: 21, Func. Count: 223, Neg. LLF: 85.17739673777324
Optimization terminated successfully (Exit mode 0)
Current function value: 85.17739672174028
Iterations: 21
Function evaluations: 223
Gradient evaluations: 21
Iteration: 1, Func. Count: 12, Neg. LLF: 4199898.996897492
Iteration: 2, Func. Count: 24, Neg. LLF: 177873680.2534867
Iteration: 3, Func. Count: 37, Neg. LLF: 880362.5843858812
Iteration: 4, Func. Count: 49, Neg. LLF: 93.08250968081379
Iteration: 5, Func. Count: 61, Neg. LLF: 98.60777744971172
Iteration: 6, Func. Count: 73, Neg. LLF: 105.141569000557
Iteration: 7, Func. Count: 85, Neg. LLF: 92.59008525994933
Iteration: 8, Func. Count: 97, Neg. LLF: 88.87314782404331
Iteration: 9, Func. Count: 109, Neg. LLF: 86.57122855220142
Iteration: 10, Func. Count: 121, Neg. LLF: 85.34746188434015
Iteration: 11, Func. Count: 132, Neg. LLF: 85.5281349395037
Iteration: 12, Func. Count: 144, Neg. LLF: 85.66562218885852
Iteration: 13, Func. Count: 156, Neg. LLF: 85.24356265197811
Iteration: 14, Func. Count: 167, Neg. LLF: 85.21575769085752
Iteration: 15, Func. Count: 178, Neg. LLF: 85.25579867435503
Iteration: 16, Func. Count: 190, Neg. LLF: 85.18420309992283
Iteration: 17, Func. Count: 201, Neg. LLF: 85.17934159105866
Iteration: 18, Func. Count: 212, Neg. LLF: 85.17746774158783
Iteration: 19, Func. Count: 223, Neg. LLF: 85.17740781555001
Iteration: 20, Func. Count: 234, Neg. LLF: 85.17739710376706
Iteration: 21, Func. Count: 245, Neg. LLF: 85.1773962847291
Optimization terminated successfully (Exit mode 0)
Current function value: 85.1773962847291
Iterations: 21
Function evaluations: 245
Gradient evaluations: 21
Iteration: 1, Func. Count: 13, Neg. LLF: 4145742.055681197
Iteration: 2, Func. Count: 26, Neg. LLF: 144768942.62290326
Iteration: 3, Func. Count: 40, Neg. LLF: 4335993.178020847
Iteration: 4, Func. Count: 53, Neg. LLF: 129.25400301615235
Iteration: 5, Func. Count: 66, Neg. LLF: 104.66387460538763
Iteration: 6, Func. Count: 79, Neg. LLF: 93.25461618704558
Iteration: 7, Func. Count: 92, Neg. LLF: 89.4049255762456
Iteration: 8, Func. Count: 105, Neg. LLF: 96.19019217370825
Iteration: 9, Func. Count: 118, Neg. LLF: 86.44320756545673
Iteration: 10, Func. Count: 131, Neg. LLF: 99.96791797213488
Iteration: 11, Func. Count: 144, Neg. LLF: 85.68754912506684
Iteration: 12, Func. Count: 157, Neg. LLF: 86.38962801113392
Iteration: 13, Func. Count: 170, Neg. LLF: 86.47055798729903
Iteration: 14, Func. Count: 183, Neg. LLF: 85.03050484340396
Iteration: 15, Func. Count: 195, Neg. LLF: 85.05005772774203
Iteration: 16, Func. Count: 208, Neg. LLF: 85.0317733668201
Iteration: 17, Func. Count: 221, Neg. LLF: 84.99189245074228
Iteration: 18, Func. Count: 233, Neg. LLF: 84.99147181909987
Iteration: 19, Func. Count: 245, Neg. LLF: 84.99145071726615
Iteration: 20, Func. Count: 257, Neg. LLF: 84.99142748881742
Iteration: 21, Func. Count: 268, Neg. LLF: 84.99142745545514
Optimization terminated successfully (Exit mode 0)
Current function value: 84.99142748881742
Iterations: 21
Function evaluations: 268
Gradient evaluations: 21
Iteration: 1, Func. Count: 14, Neg. LLF: 6341975.644817647
Iteration: 2, Func. Count: 28, Neg. LLF: 35438031.58456809
Iteration: 3, Func. Count: 42, Neg. LLF: 5531329.146567236
Iteration: 4, Func. Count: 56, Neg. LLF: 108.38012503168642
Iteration: 5, Func. Count: 71, Neg. LLF: 113.14520416991701
Iteration: 6, Func. Count: 86, Neg. LLF: 91.71820410443068
Iteration: 7, Func. Count: 100, Neg. LLF: 87.97820460816321
Iteration: 8, Func. Count: 114, Neg. LLF: 112.73094761774432
Iteration: 9, Func. Count: 128, Neg. LLF: 86.19061164761762
Iteration: 10, Func. Count: 142, Neg. LLF: 87.98102091797365
Iteration: 11, Func. Count: 156, Neg. LLF: 85.48827520834308
Iteration: 12, Func. Count: 170, Neg. LLF: 85.74947645739687
Iteration: 13, Func. Count: 184, Neg. LLF: 85.27441269538572
Iteration: 14, Func. Count: 198, Neg. LLF: 85.04191523815025
Iteration: 15, Func. Count: 211, Neg. LLF: 85.07306912422514
Iteration: 16, Func. Count: 225, Neg. LLF: 84.99616462627715
Iteration: 17, Func. Count: 238, Neg. LLF: 84.99223939928343
Iteration: 18, Func. Count: 251, Neg. LLF: 84.99149854606094
Iteration: 19, Func. Count: 264, Neg. LLF: 84.99143341798596
Iteration: 20, Func. Count: 277, Neg. LLF: 84.99142740586291
Iteration: 21, Func. Count: 290, Neg. LLF: 84.99142685303231
Optimization terminated successfully (Exit mode 0)
Current function value: 84.99142685303231
Iterations: 21
Function evaluations: 290
Gradient evaluations: 21
Iteration: 1, Func. Count: 15, Neg. LLF: 7761303.214359188
Iteration: 2, Func. Count: 30, Neg. LLF: 4361198.353227512
Iteration: 3, Func. Count: 45, Neg. LLF: 3484268.356188337
Iteration: 4, Func. Count: 60, Neg. LLF: 126.4530399296149
Iteration: 5, Func. Count: 75, Neg. LLF: 92.97937936258315
Iteration: 6, Func. Count: 91, Neg. LLF: 86.79795331550581
Iteration: 7, Func. Count: 105, Neg. LLF: 88.27982393751986
Iteration: 8, Func. Count: 121, Neg. LLF: 801.8313912039353
Iteration: 9, Func. Count: 136, Neg. LLF: 87.68702707951962
Iteration: 10, Func. Count: 151, Neg. LLF: 98.68173544795366
Iteration: 11, Func. Count: 166, Neg. LLF: 93.57101080067861
Iteration: 12, Func. Count: 181, Neg. LLF: 85.70151389581223
Iteration: 13, Func. Count: 196, Neg. LLF: 85.03939766964879
Iteration: 14, Func. Count: 210, Neg. LLF: 85.01399267653389
Iteration: 15, Func. Count: 224, Neg. LLF: 85.01602246853163
Iteration: 16, Func. Count: 239, Neg. LLF: 84.99288337502796
Iteration: 17, Func. Count: 253, Neg. LLF: 84.99337998377153
Iteration: 18, Func. Count: 268, Neg. LLF: 84.99205629534396
Iteration: 19, Func. Count: 282, Neg. LLF: 84.99175632161791
Iteration: 20, Func. Count: 296, Neg. LLF: 84.99150716612701
Iteration: 21, Func. Count: 310, Neg. LLF: 84.9914345727992
Iteration: 22, Func. Count: 324, Neg. LLF: 84.99142716976614
Iteration: 23, Func. Count: 337, Neg. LLF: 84.99142721823901
Optimization terminated successfully (Exit mode 0)
Current function value: 84.99142716976614
Iterations: 23
Function evaluations: 337
Gradient evaluations: 23
Iteration: 1, Func. Count: 12, Neg. LLF: 104.34302792502872
Iteration: 2, Func. Count: 25, Neg. LLF: 266846669.0924707
Iteration: 3, Func. Count: 37, Neg. LLF: 743719.564464328
Iteration: 4, Func. Count: 49, Neg. LLF: 737468.0108733455
Iteration: 5, Func. Count: 61, Neg. LLF: 2474536.653822584
Iteration: 6, Func. Count: 73, Neg. LLF: 255.68115228126356
Iteration: 7, Func. Count: 85, Neg. LLF: 153.8662350120451
Iteration: 8, Func. Count: 97, Neg. LLF: 3135.4180123698775
Iteration: 9, Func. Count: 109, Neg. LLF: 159.90145218851137
Iteration: 10, Func. Count: 121, Neg. LLF: 110.237320764919
Iteration: 11, Func. Count: 133, Neg. LLF: 88.2018600941369
Iteration: 12, Func. Count: 145, Neg. LLF: 87.90453898840725
Iteration: 13, Func. Count: 157, Neg. LLF: 85.82160906463733
Iteration: 14, Func. Count: 169, Neg. LLF: 86.19350754464172
Iteration: 15, Func. Count: 181, Neg. LLF: 84.9607623676954
Iteration: 16, Func. Count: 192, Neg. LLF: 85.68463569047304
Iteration: 17, Func. Count: 204, Neg. LLF: 84.69325208138602
Iteration: 18, Func. Count: 215, Neg. LLF: 84.66229121592819
Iteration: 19, Func. Count: 226, Neg. LLF: 84.66147903715229
Iteration: 20, Func. Count: 237, Neg. LLF: 84.66136882820715
Iteration: 21, Func. Count: 248, Neg. LLF: 84.66135455820569
Iteration: 22, Func. Count: 259, Neg. LLF: 84.66135278416665
Iteration: 23, Func. Count: 269, Neg. LLF: 84.66135277167807
Optimization terminated successfully (Exit mode 0)
Current function value: 84.66135278416665
Iterations: 23
Function evaluations: 269
Gradient evaluations: 23
Iteration: 1, Func. Count: 13, Neg. LLF: 4753013.800234635
Iteration: 2, Func. Count: 26, Neg. LLF: 173414806.30292922
Iteration: 3, Func. Count: 40, Neg. LLF: 614017.6675974735
Iteration: 4, Func. Count: 53, Neg. LLF: 113.65926607555363
Iteration: 5, Func. Count: 66, Neg. LLF: 99.49046651755778
Iteration: 6, Func. Count: 79, Neg. LLF: 448.03617443469113
Iteration: 7, Func. Count: 92, Neg. LLF: 93.47322745129266
Iteration: 8, Func. Count: 106, Neg. LLF: 93.42586301139995
Iteration: 9, Func. Count: 119, Neg. LLF: 86.59707493361448
Iteration: 10, Func. Count: 132, Neg. LLF: 87.8068308587428
Iteration: 11, Func. Count: 145, Neg. LLF: 86.34951191947795
Iteration: 12, Func. Count: 158, Neg. LLF: 90.55461309209565
Iteration: 13, Func. Count: 171, Neg. LLF: 86.92330799149127
Iteration: 14, Func. Count: 184, Neg. LLF: 85.0349466358175
Iteration: 15, Func. Count: 196, Neg. LLF: 84.72050486260376
Iteration: 16, Func. Count: 208, Neg. LLF: 84.69722418015007
Iteration: 17, Func. Count: 220, Neg. LLF: 84.67179453845341
Iteration: 18, Func. Count: 232, Neg. LLF: 84.66847496918007
Iteration: 19, Func. Count: 244, Neg. LLF: 84.66454311756144
Iteration: 20, Func. Count: 256, Neg. LLF: 84.66308250496874
Iteration: 21, Func. Count: 268, Neg. LLF: 84.66170062929498
Iteration: 22, Func. Count: 280, Neg. LLF: 84.66139687477164
Iteration: 23, Func. Count: 292, Neg. LLF: 84.66135381538761
Iteration: 24, Func. Count: 304, Neg. LLF: 84.66135274134064
Iteration: 25, Func. Count: 315, Neg. LLF: 84.66135279088193
Optimization terminated successfully (Exit mode 0)
Current function value: 84.66135274134064
Iterations: 25
Function evaluations: 315
Gradient evaluations: 25
Iteration: 1, Func. Count: 14, Neg. LLF: 4293638.557201994
Iteration: 2, Func. Count: 28, Neg. LLF: 217872474.5781625
Iteration: 3, Func. Count: 43, Neg. LLF: 4347093.188909599
Iteration: 4, Func. Count: 57, Neg. LLF: 136.08709758410416
Iteration: 5, Func. Count: 71, Neg. LLF: 96.45665577288673
Iteration: 6, Func. Count: 85, Neg. LLF: 88.87240799971386
Iteration: 7, Func. Count: 99, Neg. LLF: 87.86473368334343
Iteration: 8, Func. Count: 113, Neg. LLF: 107.56143713116136
Iteration: 9, Func. Count: 127, Neg. LLF: 85.51142633301976
Iteration: 10, Func. Count: 141, Neg. LLF: 87.27951263615667
Iteration: 11, Func. Count: 155, Neg. LLF: 89.54967234486337
Iteration: 12, Func. Count: 169, Neg. LLF: 86.4642025315009
Iteration: 13, Func. Count: 184, Neg. LLF: 84.78528571445491
Iteration: 14, Func. Count: 197, Neg. LLF: 84.71652342156011
Iteration: 15, Func. Count: 210, Neg. LLF: 84.71345310517663
Iteration: 16, Func. Count: 224, Neg. LLF: 84.66723238626876
Iteration: 17, Func. Count: 237, Neg. LLF: 84.66215328370694
Iteration: 18, Func. Count: 250, Neg. LLF: 84.66143918442884
Iteration: 19, Func. Count: 263, Neg. LLF: 84.66136052241497
Iteration: 20, Func. Count: 276, Neg. LLF: 84.66135327719512
Iteration: 21, Func. Count: 289, Neg. LLF: 84.6613526448698
Optimization terminated successfully (Exit mode 0)
Current function value: 84.6613526448698
Iterations: 21
Function evaluations: 289
Gradient evaluations: 21
Iteration: 1, Func. Count: 15, Neg. LLF: 4357580.9201700315
Iteration: 2, Func. Count: 30, Neg. LLF: 92997090.94856563
Iteration: 3, Func. Count: 46, Neg. LLF: 4758399.750283497
Iteration: 4, Func. Count: 61, Neg. LLF: 152.31103444160408
Iteration: 5, Func. Count: 76, Neg. LLF: 92.10739051498473
Iteration: 6, Func. Count: 91, Neg. LLF: 95.1756325426665
Iteration: 7, Func. Count: 107, Neg. LLF: 86.66672231032034
Iteration: 8, Func. Count: 122, Neg. LLF: 114.16939886586027
Iteration: 9, Func. Count: 137, Neg. LLF: 86.98853162726644
Iteration: 10, Func. Count: 152, Neg. LLF: 86.74677545371834
Iteration: 11, Func. Count: 167, Neg. LLF: 93.30712575145456
Iteration: 12, Func. Count: 182, Neg. LLF: 85.1413232198203
Iteration: 13, Func. Count: 197, Neg. LLF: 84.7008090868391
Iteration: 14, Func. Count: 211, Neg. LLF: 85.61197504160663
Iteration: 15, Func. Count: 226, Neg. LLF: 84.66661189130411
Iteration: 16, Func. Count: 240, Neg. LLF: 84.66181739520391
Iteration: 17, Func. Count: 254, Neg. LLF: 84.66139439849296
Iteration: 18, Func. Count: 268, Neg. LLF: 84.6613825121369
Iteration: 19, Func. Count: 283, Neg. LLF: 84.66135330590318
Iteration: 20, Func. Count: 296, Neg. LLF: 84.6613533293382
Optimization terminated successfully (Exit mode 0)
Current function value: 84.66135330590318
Iterations: 20
Function evaluations: 296
Gradient evaluations: 20
Iteration: 1, Func. Count: 16, Neg. LLF: 6826008.492760641
Iteration: 2, Func. Count: 32, Neg. LLF: 19339754.158213805
Iteration: 3, Func. Count: 48, Neg. LLF: 4785668.834395257
Iteration: 4, Func. Count: 64, Neg. LLF: 106.13215556820414
Iteration: 5, Func. Count: 80, Neg. LLF: 90.0572176693424
Iteration: 6, Func. Count: 96, Neg. LLF: 91.10022440642481
Iteration: 7, Func. Count: 113, Neg. LLF: 106.6969780784491
Iteration: 8, Func. Count: 129, Neg. LLF: 118.11413545705315
Iteration: 9, Func. Count: 145, Neg. LLF: 91.7380935148994
Iteration: 10, Func. Count: 161, Neg. LLF: 92.03381156627682
Iteration: 11, Func. Count: 177, Neg. LLF: 86.50882695349397
Iteration: 12, Func. Count: 193, Neg. LLF: 86.60352924108743
Iteration: 13, Func. Count: 209, Neg. LLF: 85.8459183667712
Iteration: 14, Func. Count: 225, Neg. LLF: 85.66733311536973
Iteration: 15, Func. Count: 241, Neg. LLF: 84.86681774992847
Iteration: 16, Func. Count: 256, Neg. LLF: 84.72228612562958
Iteration: 17, Func. Count: 271, Neg. LLF: 84.69569122119462
Iteration: 18, Func. Count: 286, Neg. LLF: 84.68226993573779
Iteration: 19, Func. Count: 301, Neg. LLF: 84.68331902238228
Iteration: 20, Func. Count: 317, Neg. LLF: 84.6627913025124
Iteration: 21, Func. Count: 332, Neg. LLF: 84.66169307689447
Iteration: 22, Func. Count: 347, Neg. LLF: 84.66139581590362
Iteration: 23, Func. Count: 362, Neg. LLF: 84.66135428397028
Iteration: 24, Func. Count: 377, Neg. LLF: 84.66135274440234
Iteration: 25, Func. Count: 391, Neg. LLF: 84.66135278052072
Optimization terminated successfully (Exit mode 0)
Current function value: 84.66135274440234
Iterations: 25
Function evaluations: 391
Gradient evaluations: 25
Iteration: 1, Func. Count: 8, Neg. LLF: 143.07773629903244
Iteration: 2, Func. Count: 18, Neg. LLF: 526182886.4319182
Iteration: 3, Func. Count: 27, Neg. LLF: 224013.83241932566
Iteration: 4, Func. Count: 35, Neg. LLF: 2132283.080457059
Iteration: 5, Func. Count: 43, Neg. LLF: 623656.1791265534
Iteration: 6, Func. Count: 51, Neg. LLF: 25921.980379992456
Iteration: 7, Func. Count: 59, Neg. LLF: 106392.28958519411
Iteration: 8, Func. Count: 67, Neg. LLF: 95239.69538758477
Iteration: 9, Func. Count: 75, Neg. LLF: 93519.9293888856
Iteration: 10, Func. Count: 83, Neg. LLF: 90.41619005178153
Iteration: 11, Func. Count: 91, Neg. LLF: 91.61188453206107
Iteration: 12, Func. Count: 99, Neg. LLF: 88.61500505596945
Iteration: 13, Func. Count: 107, Neg. LLF: 85.87332748031272
Iteration: 14, Func. Count: 114, Neg. LLF: 85.83461360889706
Iteration: 15, Func. Count: 121, Neg. LLF: 85.78970193843972
Iteration: 16, Func. Count: 128, Neg. LLF: 85.7853271879815
Iteration: 17, Func. Count: 135, Neg. LLF: 85.78386849629095
Iteration: 18, Func. Count: 142, Neg. LLF: 85.78379259275451
Iteration: 19, Func. Count: 149, Neg. LLF: 85.78378375184471
Iteration: 20, Func. Count: 155, Neg. LLF: 85.78378373720659
Optimization terminated successfully (Exit mode 0)
Current function value: 85.78378375184471
Iterations: 20
Function evaluations: 155
Gradient evaluations: 20
Iteration: 1, Func. Count: 5, Neg. LLF: 124.51095226681043
Iteration: 2, Func. Count: 12, Neg. LLF: 102.84737882727569
Iteration: 3, Func. Count: 17, Neg. LLF: 97.86717432298711
Iteration: 4, Func. Count: 21, Neg. LLF: 97.75340063396216
Iteration: 5, Func. Count: 25, Neg. LLF: 97.73230391457405
Iteration: 6, Func. Count: 29, Neg. LLF: 97.73193121758034
Iteration: 7, Func. Count: 33, Neg. LLF: 97.73192518208532
Iteration: 8, Func. Count: 36, Neg. LLF: 97.73192518383507
Optimization terminated successfully (Exit mode 0)
Current function value: 97.73192518208532
Iterations: 8
Function evaluations: 36
Gradient evaluations: 8
Iteration: 1, Func. Count: 6, Neg. LLF: 712321506.8692704
Iteration: 2, Func. Count: 13, Neg. LLF: 319200918.60909396
Iteration: 3, Func. Count: 20, Neg. LLF: 88.50145840301171
Iteration: 4, Func. Count: 26, Neg. LLF: 216.35832546551052
Iteration: 5, Func. Count: 33, Neg. LLF: 85.157439330483
Iteration: 6, Func. Count: 38, Neg. LLF: 89.74201712977819
Iteration: 7, Func. Count: 44, Neg. LLF: 84.94193609042118
Iteration: 8, Func. Count: 49, Neg. LLF: 84.73313816653997
Iteration: 9, Func. Count: 54, Neg. LLF: 84.65889505072532
Iteration: 10, Func. Count: 59, Neg. LLF: 84.65625934275171
Iteration: 11, Func. Count: 64, Neg. LLF: 84.656031199832
Iteration: 12, Func. Count: 69, Neg. LLF: 84.65602709326284
Iteration: 13, Func. Count: 73, Neg. LLF: 84.65602703679832
Optimization terminated successfully (Exit mode 0)
Current function value: 84.65602709326284
Iterations: 13
Function evaluations: 73
Gradient evaluations: 13
Iteration: 1, Func. Count: 7, Neg. LLF: 719995215.6653987
Iteration: 2, Func. Count: 15, Neg. LLF: 273560366.6068856
Iteration: 3, Func. Count: 23, Neg. LLF: 359.1741325024785
Iteration: 4, Func. Count: 30, Neg. LLF: 121.99708476003399
Iteration: 5, Func. Count: 37, Neg. LLF: 95.95035856750553
Iteration: 6, Func. Count: 44, Neg. LLF: 91.59801221528971
Iteration: 7, Func. Count: 51, Neg. LLF: 87.49402226422512
Iteration: 8, Func. Count: 58, Neg. LLF: 85.87160414724033
Iteration: 9, Func. Count: 65, Neg. LLF: 87.0498374100418
Iteration: 10, Func. Count: 72, Neg. LLF: 84.83370690905178
Iteration: 11, Func. Count: 78, Neg. LLF: 84.56015548484476
Iteration: 12, Func. Count: 84, Neg. LLF: 84.76246273328715
Iteration: 13, Func. Count: 91, Neg. LLF: 84.44112111311736
Iteration: 14, Func. Count: 97, Neg. LLF: 84.4319958079946
Iteration: 15, Func. Count: 103, Neg. LLF: 84.43045693475332
Iteration: 16, Func. Count: 109, Neg. LLF: 84.43038258851983
Iteration: 17, Func. Count: 115, Neg. LLF: 84.43038162886197
Optimization terminated successfully (Exit mode 0)
Current function value: 84.43038162886197
Iterations: 17
Function evaluations: 115
Gradient evaluations: 17
Iteration: 1, Func. Count: 8, Neg. LLF: 622140425.1194596
Iteration: 2, Func. Count: 17, Neg. LLF: 211332130.890157
Iteration: 3, Func. Count: 26, Neg. LLF: 964.0678294978859
Iteration: 4, Func. Count: 34, Neg. LLF: 93.19553177955957
Iteration: 5, Func. Count: 42, Neg. LLF: 86.99886692569335
Iteration: 6, Func. Count: 50, Neg. LLF: 85.40538634893412
Iteration: 7, Func. Count: 58, Neg. LLF: 85.30956386815018
Iteration: 8, Func. Count: 66, Neg. LLF: 84.98838794001949
Iteration: 9, Func. Count: 74, Neg. LLF: 85.49420543622102
Iteration: 10, Func. Count: 82, Neg. LLF: 84.53370417984553
Iteration: 11, Func. Count: 89, Neg. LLF: 84.24661591098828
Iteration: 12, Func. Count: 96, Neg. LLF: 84.22187623463186
Iteration: 13, Func. Count: 103, Neg. LLF: 112.4748901594094
Iteration: 14, Func. Count: 113, Neg. LLF: 84.20509600084326
Iteration: 15, Func. Count: 120, Neg. LLF: 84.20183293328532
Iteration: 16, Func. Count: 127, Neg. LLF: 84.20096038093033
Iteration: 17, Func. Count: 134, Neg. LLF: 84.20092303145225
Iteration: 18, Func. Count: 141, Neg. LLF: 84.20091730767207
Iteration: 19, Func. Count: 147, Neg. LLF: 84.20091730787159
Optimization terminated successfully (Exit mode 0)
Current function value: 84.20091730767207
Iterations: 19
Function evaluations: 147
Gradient evaluations: 19
Iteration: 1, Func. Count: 9, Neg. LLF: 231133931.09808758
Iteration: 2, Func. Count: 19, Neg. LLF: 104582977.61838858
Iteration: 3, Func. Count: 28, Neg. LLF: 313.29043676402114
Iteration: 4, Func. Count: 37, Neg. LLF: 289.72463320977573
Iteration: 5, Func. Count: 46, Neg. LLF: 110.43271558504482
Iteration: 6, Func. Count: 55, Neg. LLF: 104.25074924907783
Iteration: 7, Func. Count: 64, Neg. LLF: 102.11881055240602
Iteration: 8, Func. Count: 73, Neg. LLF: 99.01576356509861
Iteration: 9, Func. Count: 82, Neg. LLF: 90.8188341226576
Iteration: 10, Func. Count: 91, Neg. LLF: 87.26863319447251
Iteration: 11, Func. Count: 100, Neg. LLF: 85.12304420122197
Iteration: 12, Func. Count: 108, Neg. LLF: 85.11721439949179
Iteration: 13, Func. Count: 117, Neg. LLF: 85.04499323912299
Iteration: 14, Func. Count: 126, Neg. LLF: 85.0207830987134
Iteration: 15, Func. Count: 134, Neg. LLF: 85.04060713842492
Iteration: 16, Func. Count: 143, Neg. LLF: 85.00284157826783
Iteration: 17, Func. Count: 151, Neg. LLF: 84.93102521830659
Iteration: 18, Func. Count: 159, Neg. LLF: 84.7800841383034
Iteration: 19, Func. Count: 167, Neg. LLF: 84.70362489393929
Iteration: 20, Func. Count: 175, Neg. LLF: 84.67763183338363
Iteration: 21, Func. Count: 183, Neg. LLF: 84.66058385056574
Iteration: 22, Func. Count: 191, Neg. LLF: 84.65687721006812
Iteration: 23, Func. Count: 199, Neg. LLF: 84.65624395036406
Iteration: 24, Func. Count: 207, Neg. LLF: 84.65604573712447
Iteration: 25, Func. Count: 215, Neg. LLF: 84.65602761092227
Iteration: 26, Func. Count: 223, Neg. LLF: 84.65602701671281
Optimization terminated successfully (Exit mode 0)
Current function value: 84.65602701671281
Iterations: 26
Function evaluations: 223
Gradient evaluations: 26
Iteration: 1, Func. Count: 6, Neg. LLF: 113.37050994231711
Iteration: 2, Func. Count: 13, Neg. LLF: 313280937.32885057
Iteration: 3, Func. Count: 19, Neg. LLF: 4881950.487246224
Iteration: 4, Func. Count: 25, Neg. LLF: 757736.1318138262
Iteration: 5, Func. Count: 31, Neg. LLF: 1875545.7829397111
Iteration: 6, Func. Count: 37, Neg. LLF: 668969.8649858441
Iteration: 7, Func. Count: 43, Neg. LLF: 2036223.6441202608
Iteration: 8, Func. Count: 49, Neg. LLF: 91.68171560100977
Iteration: 9, Func. Count: 55, Neg. LLF: 87.95955581282394
Iteration: 10, Func. Count: 61, Neg. LLF: 87.24672098359166
Iteration: 11, Func. Count: 66, Neg. LLF: 87.1189481001675
Iteration: 12, Func. Count: 71, Neg. LLF: 87.00503923939094
Iteration: 13, Func. Count: 76, Neg. LLF: 86.9421999572393
Iteration: 14, Func. Count: 81, Neg. LLF: 86.90650159850856
Iteration: 15, Func. Count: 86, Neg. LLF: 86.89077679524624
Iteration: 16, Func. Count: 91, Neg. LLF: 86.88842907464795
Iteration: 17, Func. Count: 96, Neg. LLF: 86.88838160148418
Iteration: 18, Func. Count: 101, Neg. LLF: 86.888368431151
Iteration: 19, Func. Count: 105, Neg. LLF: 86.88836843114977
Optimization terminated successfully (Exit mode 0)
Current function value: 86.888368431151
Iterations: 19
Function evaluations: 105
Gradient evaluations: 19
Iteration: 1, Func. Count: 7, Neg. LLF: 710551163.402325
Iteration: 2, Func. Count: 15, Neg. LLF: 330788388.38131166
Iteration: 3, Func. Count: 23, Neg. LLF: 88.33499135184948
Iteration: 4, Func. Count: 30, Neg. LLF: 161.14317455899862
Iteration: 5, Func. Count: 37, Neg. LLF: 85.13260159385938
Iteration: 6, Func. Count: 44, Neg. LLF: 84.50887808719551
Iteration: 7, Func. Count: 50, Neg. LLF: 83.79095849102588
Iteration: 8, Func. Count: 56, Neg. LLF: 83.64752673499619
Iteration: 9, Func. Count: 62, Neg. LLF: 83.64449138395402
Iteration: 10, Func. Count: 68, Neg. LLF: 83.64411533184244
Iteration: 11, Func. Count: 74, Neg. LLF: 83.64390663233785
Iteration: 12, Func. Count: 80, Neg. LLF: 83.64375529433754
Iteration: 13, Func. Count: 86, Neg. LLF: 83.64374926340969
Iteration: 14, Func. Count: 91, Neg. LLF: 83.64374921193036
Optimization terminated successfully (Exit mode 0)
Current function value: 83.64374926340969
Iterations: 14
Function evaluations: 91
Gradient evaluations: 14
Iteration: 1, Func. Count: 8, Neg. LLF: 716854096.4957849
Iteration: 2, Func. Count: 17, Neg. LLF: 269831551.9022016
Iteration: 3, Func. Count: 26, Neg. LLF: 100.35540280105627
Iteration: 4, Func. Count: 34, Neg. LLF: 88.98388661051783
Iteration: 5, Func. Count: 42, Neg. LLF: 172.3163888143605
Iteration: 6, Func. Count: 50, Neg. LLF: 85.38035854290594
Iteration: 7, Func. Count: 58, Neg. LLF: 88.4938957923492
Iteration: 8, Func. Count: 66, Neg. LLF: 84.81937602566475
Iteration: 9, Func. Count: 74, Neg. LLF: 84.01319855171697
Iteration: 10, Func. Count: 82, Neg. LLF: 83.15558089752733
Iteration: 11, Func. Count: 89, Neg. LLF: 84.15450809974243
Iteration: 12, Func. Count: 97, Neg. LLF: 82.31765139671316
Iteration: 13, Func. Count: 104, Neg. LLF: 82.26436381474322
Iteration: 14, Func. Count: 111, Neg. LLF: 82.25217897616504
Iteration: 15, Func. Count: 118, Neg. LLF: 82.24820611901502
Iteration: 16, Func. Count: 125, Neg. LLF: 82.24321646021097
Iteration: 17, Func. Count: 132, Neg. LLF: 82.24264781825241
Iteration: 18, Func. Count: 139, Neg. LLF: 82.24258389047617
Iteration: 19, Func. Count: 146, Neg. LLF: 82.24258268044957
Iteration: 20, Func. Count: 152, Neg. LLF: 82.24258265224401
Optimization terminated successfully (Exit mode 0)
Current function value: 82.24258268044957
Iterations: 20
Function evaluations: 152
Gradient evaluations: 20
Iteration: 1, Func. Count: 9, Neg. LLF: 225102391.26267433
Iteration: 2, Func. Count: 19, Neg. LLF: 2826622.8779309983
Iteration: 3, Func. Count: 28, Neg. LLF: 5664325.549851356
Iteration: 4, Func. Count: 37, Neg. LLF: 3705530.566554111
Iteration: 5, Func. Count: 46, Neg. LLF: 84.46572385296409
Iteration: 6, Func. Count: 55, Neg. LLF: 368.95590333040644
Iteration: 7, Func. Count: 64, Neg. LLF: 89.73072322268885
Iteration: 8, Func. Count: 73, Neg. LLF: 82.51891321852456
Iteration: 9, Func. Count: 81, Neg. LLF: 82.04828107951391
Iteration: 10, Func. Count: 89, Neg. LLF: 81.89952073082627
Iteration: 11, Func. Count: 97, Neg. LLF: 81.77327467213935
Iteration: 12, Func. Count: 105, Neg. LLF: 81.77000599822996
Iteration: 13, Func. Count: 113, Neg. LLF: 81.76937691834272
Iteration: 14, Func. Count: 121, Neg. LLF: 81.76937313610428
Iteration: 15, Func. Count: 128, Neg. LLF: 81.76937311028418
Optimization terminated successfully (Exit mode 0)
Current function value: 81.76937313610428
Iterations: 15
Function evaluations: 128
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 234136226.61163622
Iteration: 2, Func. Count: 20, Neg. LLF: 93857618.08030462
Iteration: 3, Func. Count: 30, Neg. LLF: 166.29405999326275
Iteration: 4, Func. Count: 40, Neg. LLF: 664305.5284490255
Iteration: 5, Func. Count: 50, Neg. LLF: 4874.550667339101
Iteration: 6, Func. Count: 60, Neg. LLF: 90.1156658646796
Iteration: 7, Func. Count: 70, Neg. LLF: 93.29646292224423
Iteration: 8, Func. Count: 80, Neg. LLF: 91.0935658978339
Iteration: 9, Func. Count: 90, Neg. LLF: 85.01715489149898
Iteration: 10, Func. Count: 100, Neg. LLF: 82.99813970895585
Iteration: 11, Func. Count: 109, Neg. LLF: 83.45205291769405
Iteration: 12, Func. Count: 119, Neg. LLF: 82.97391051518734
Iteration: 13, Func. Count: 129, Neg. LLF: 82.38010415695193
Iteration: 14, Func. Count: 138, Neg. LLF: 81.85826305735706
Iteration: 15, Func. Count: 147, Neg. LLF: 81.79079751609034
Iteration: 16, Func. Count: 156, Neg. LLF: 81.77110208256242
Iteration: 17, Func. Count: 165, Neg. LLF: 81.76949528070027
Iteration: 18, Func. Count: 174, Neg. LLF: 81.76940470719424
Iteration: 19, Func. Count: 183, Neg. LLF: 81.7693788038779
Iteration: 20, Func. Count: 192, Neg. LLF: 81.76937547508669
Iteration: 21, Func. Count: 201, Neg. LLF: 81.7693725448824
Iteration: 22, Func. Count: 209, Neg. LLF: 81.76937255766079
Optimization terminated successfully (Exit mode 0)
Current function value: 81.7693725448824
Iterations: 22
Function evaluations: 209
Gradient evaluations: 22
Iteration: 1, Func. Count: 7, Neg. LLF: 123.62901192983082
Iteration: 2, Func. Count: 16, Neg. LLF: 312296338.9066177
Iteration: 3, Func. Count: 24, Neg. LLF: 2867730.4982143245
Iteration: 4, Func. Count: 31, Neg. LLF: 3174345.3520492273
Iteration: 5, Func. Count: 38, Neg. LLF: 668918.2100721796
Iteration: 6, Func. Count: 45, Neg. LLF: 1113993.072522125
Iteration: 7, Func. Count: 52, Neg. LLF: 107.85029913162597
Iteration: 8, Func. Count: 59, Neg. LLF: 90.41376597492372
Iteration: 9, Func. Count: 66, Neg. LLF: 87.64817882911285
Iteration: 10, Func. Count: 72, Neg. LLF: 87.85866792176355
Iteration: 11, Func. Count: 79, Neg. LLF: 87.44641805110024
Iteration: 12, Func. Count: 86, Neg. LLF: 87.04255424862966
Iteration: 13, Func. Count: 92, Neg. LLF: 86.90304543597135
Iteration: 14, Func. Count: 98, Neg. LLF: 86.86274699568924
Iteration: 15, Func. Count: 104, Neg. LLF: 86.82742910065528
Iteration: 16, Func. Count: 110, Neg. LLF: 86.80884300150562
Iteration: 17, Func. Count: 116, Neg. LLF: 86.80611433507272
Iteration: 18, Func. Count: 122, Neg. LLF: 86.80575478510927
Iteration: 19, Func. Count: 128, Neg. LLF: 86.8057486783075
Iteration: 20, Func. Count: 133, Neg. LLF: 86.80574867733367
Optimization terminated successfully (Exit mode 0)
Current function value: 86.8057486783075
Iterations: 20
Function evaluations: 133
Gradient evaluations: 20
Iteration: 1, Func. Count: 8, Neg. LLF: 684074526.3750145
Iteration: 2, Func. Count: 17, Neg. LLF: 362361077.91398966
Iteration: 3, Func. Count: 26, Neg. LLF: 89.24459860876665
Iteration: 4, Func. Count: 34, Neg. LLF: 117.66950647251639
Iteration: 5, Func. Count: 42, Neg. LLF: 100.29854956062621
Iteration: 6, Func. Count: 50, Neg. LLF: 84.15411551434852
Iteration: 7, Func. Count: 57, Neg. LLF: 88.94360846020916
Iteration: 8, Func. Count: 65, Neg. LLF: 83.7167461652107
Iteration: 9, Func. Count: 72, Neg. LLF: 83.67148944336955
Iteration: 10, Func. Count: 79, Neg. LLF: 83.65183303738472
Iteration: 11, Func. Count: 86, Neg. LLF: 83.64582571013594
Iteration: 12, Func. Count: 93, Neg. LLF: 83.64402402662198
Iteration: 13, Func. Count: 100, Neg. LLF: 83.64374937535572
Iteration: 14, Func. Count: 106, Neg. LLF: 83.64374932386293
Optimization terminated successfully (Exit mode 0)
Current function value: 83.64374937535572
Iterations: 14
Function evaluations: 106
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 704278151.047056
Iteration: 2, Func. Count: 19, Neg. LLF: 289758900.69221294
Iteration: 3, Func. Count: 29, Neg. LLF: 95.61379742849256
Iteration: 4, Func. Count: 38, Neg. LLF: 84.8052073028946
Iteration: 5, Func. Count: 46, Neg. LLF: 93.66485099844604
Iteration: 6, Func. Count: 56, Neg. LLF: 97.17804133421185
Iteration: 7, Func. Count: 65, Neg. LLF: 84.94058136592503
Iteration: 8, Func. Count: 74, Neg. LLF: 93.69244268777656
Iteration: 9, Func. Count: 83, Neg. LLF: 82.53198808427786
Iteration: 10, Func. Count: 91, Neg. LLF: 82.36131175737621
Iteration: 11, Func. Count: 99, Neg. LLF: 82.28726092292754
Iteration: 12, Func. Count: 107, Neg. LLF: 82.27006845128906
Iteration: 13, Func. Count: 115, Neg. LLF: 82.25763599561215
Iteration: 14, Func. Count: 123, Neg. LLF: 82.24891032823243
Iteration: 15, Func. Count: 131, Neg. LLF: 82.24465043586505
Iteration: 16, Func. Count: 139, Neg. LLF: 82.24282617347484
Iteration: 17, Func. Count: 147, Neg. LLF: 82.242592177187
Iteration: 18, Func. Count: 155, Neg. LLF: 82.2425827952813
Iteration: 19, Func. Count: 162, Neg. LLF: 82.24258276703178
Optimization terminated successfully (Exit mode 0)
Current function value: 82.2425827952813
Iterations: 19
Function evaluations: 162
Gradient evaluations: 19
Iteration: 1, Func. Count: 10, Neg. LLF: 224703134.7384994
Iteration: 2, Func. Count: 21, Neg. LLF: 2877099.534890312
Iteration: 3, Func. Count: 31, Neg. LLF: 179.26770932559685
Iteration: 4, Func. Count: 41, Neg. LLF: 138.96820479176554
Iteration: 5, Func. Count: 51, Neg. LLF: 110.38591358932322
Iteration: 6, Func. Count: 61, Neg. LLF: 84.3273766719693
Iteration: 7, Func. Count: 71, Neg. LLF: 84.04964769232642
Iteration: 8, Func. Count: 81, Neg. LLF: 82.87179074732909
Iteration: 9, Func. Count: 91, Neg. LLF: 81.90408118334982
Iteration: 10, Func. Count: 100, Neg. LLF: 81.79223633232279
Iteration: 11, Func. Count: 109, Neg. LLF: 81.76956166099193
Iteration: 12, Func. Count: 118, Neg. LLF: 81.76939505448235
Iteration: 13, Func. Count: 127, Neg. LLF: 81.76937263196928
Iteration: 14, Func. Count: 135, Neg. LLF: 81.7693726062496
Optimization terminated successfully (Exit mode 0)
Current function value: 81.76937263196928
Iterations: 14
Function evaluations: 135
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 230096943.46042788
Iteration: 2, Func. Count: 22, Neg. LLF: 100600573.5661631
Iteration: 3, Func. Count: 33, Neg. LLF: 173.75899892570393
Iteration: 4, Func. Count: 44, Neg. LLF: 219.1661818522567
Iteration: 5, Func. Count: 55, Neg. LLF: 5205938.802816121
Iteration: 6, Func. Count: 66, Neg. LLF: 103.83170500852137
Iteration: 7, Func. Count: 77, Neg. LLF: 106.97723667397007
Iteration: 8, Func. Count: 88, Neg. LLF: 88.96814031726669
Iteration: 9, Func. Count: 99, Neg. LLF: 86.47091177956504
Iteration: 10, Func. Count: 110, Neg. LLF: 83.34964805819232
Iteration: 11, Func. Count: 121, Neg. LLF: 83.04810487573144
Iteration: 12, Func. Count: 132, Neg. LLF: 82.5266775191635
Iteration: 13, Func. Count: 142, Neg. LLF: 81.94072039379216
Iteration: 14, Func. Count: 152, Neg. LLF: 81.82434519695275
Iteration: 15, Func. Count: 162, Neg. LLF: 81.77412104753091
Iteration: 16, Func. Count: 172, Neg. LLF: 81.77209984289445
Iteration: 17, Func. Count: 182, Neg. LLF: 81.77076516445634
Iteration: 18, Func. Count: 192, Neg. LLF: 81.76971724394707
Iteration: 19, Func. Count: 202, Neg. LLF: 81.76947738182076
Iteration: 20, Func. Count: 212, Neg. LLF: 81.76939105087479
Iteration: 21, Func. Count: 222, Neg. LLF: 81.76937488065695
Iteration: 22, Func. Count: 232, Neg. LLF: 81.76937253777844
Iteration: 23, Func. Count: 241, Neg. LLF: 81.76937255057894
Optimization terminated successfully (Exit mode 0)
Current function value: 81.76937253777844
Iterations: 23
Function evaluations: 241
Gradient evaluations: 23
Iteration: 1, Func. Count: 8, Neg. LLF: 145.0880249027326
Iteration: 2, Func. Count: 18, Neg. LLF: 594698753.4498236
Iteration: 3, Func. Count: 27, Neg. LLF: 88318.78459916927
Iteration: 4, Func. Count: 35, Neg. LLF: 1172508.8049536727
Iteration: 5, Func. Count: 43, Neg. LLF: 1165780.587753578
Iteration: 6, Func. Count: 51, Neg. LLF: 997556.9984518365
Iteration: 7, Func. Count: 59, Neg. LLF: 574442.4443830443
Iteration: 8, Func. Count: 67, Neg. LLF: 759503.8191054382
Iteration: 9, Func. Count: 75, Neg. LLF: 88529.04772611447
Iteration: 10, Func. Count: 83, Neg. LLF: 101823.27448996225
Iteration: 11, Func. Count: 91, Neg. LLF: 82671.50466207156
Iteration: 12, Func. Count: 99, Neg. LLF: 82747.65360783425
Iteration: 13, Func. Count: 107, Neg. LLF: 83679.38254666585
Iteration: 14, Func. Count: 115, Neg. LLF: 82.38531069210208
Iteration: 15, Func. Count: 122, Neg. LLF: 82.83398240382006
Iteration: 16, Func. Count: 130, Neg. LLF: 82.14922468679777
Iteration: 17, Func. Count: 137, Neg. LLF: 82.13026781934272
Iteration: 18, Func. Count: 144, Neg. LLF: 82.10298034754992
Iteration: 19, Func. Count: 151, Neg. LLF: 82.08196774657063
Iteration: 20, Func. Count: 158, Neg. LLF: 82.03095488283303
Iteration: 21, Func. Count: 165, Neg. LLF: 82.01338187345817
Iteration: 22, Func. Count: 172, Neg. LLF: 82.00676555442173
Iteration: 23, Func. Count: 179, Neg. LLF: 82.0055386669319
Iteration: 24, Func. Count: 186, Neg. LLF: 82.00549822367088
Iteration: 25, Func. Count: 193, Neg. LLF: 82.00549447478248
Iteration: 26, Func. Count: 199, Neg. LLF: 82.00549446528395
Optimization terminated successfully (Exit mode 0)
Current function value: 82.00549447478248
Iterations: 26
Function evaluations: 199
Gradient evaluations: 26
Iteration: 1, Func. Count: 9, Neg. LLF: 698486804.7877727
Iteration: 2, Func. Count: 19, Neg. LLF: 370678265.9108211
Iteration: 3, Func. Count: 29, Neg. LLF: 89.38434467506802
Iteration: 4, Func. Count: 38, Neg. LLF: 112.75597473665776
Iteration: 5, Func. Count: 47, Neg. LLF: 99.74105789052192
Iteration: 6, Func. Count: 56, Neg. LLF: 84.11246436787852
Iteration: 7, Func. Count: 64, Neg. LLF: 83.69835251969667
Iteration: 8, Func. Count: 72, Neg. LLF: 97.3715202285393
Iteration: 9, Func. Count: 81, Neg. LLF: 99.4627138310922
Iteration: 10, Func. Count: 91, Neg. LLF: 82.06834412745705
Iteration: 11, Func. Count: 99, Neg. LLF: 82.01189326375211
Iteration: 12, Func. Count: 107, Neg. LLF: 81.97820511162644
Iteration: 13, Func. Count: 115, Neg. LLF: 81.9461700930143
Iteration: 14, Func. Count: 123, Neg. LLF: 81.90844885958583
Iteration: 15, Func. Count: 131, Neg. LLF: 81.89288779370715
Iteration: 16, Func. Count: 139, Neg. LLF: 81.87864279597528
Iteration: 17, Func. Count: 147, Neg. LLF: 81.87400433755104
Iteration: 18, Func. Count: 155, Neg. LLF: 81.8730810420411
Iteration: 19, Func. Count: 163, Neg. LLF: 81.8730341854706
Iteration: 20, Func. Count: 170, Neg. LLF: 81.87303416573894
Optimization terminated successfully (Exit mode 0)
Current function value: 81.8730341854706
Iterations: 20
Function evaluations: 170
Gradient evaluations: 20
Iteration: 1, Func. Count: 10, Neg. LLF: 696860620.9388803
Iteration: 2, Func. Count: 21, Neg. LLF: 298642081.40704095
Iteration: 3, Func. Count: 32, Neg. LLF: 93.86344501419175
Iteration: 4, Func. Count: 42, Neg. LLF: 89.25695039054831
Iteration: 5, Func. Count: 52, Neg. LLF: 89.76042370413282
Iteration: 6, Func. Count: 62, Neg. LLF: 89.60159321566915
Iteration: 7, Func. Count: 72, Neg. LLF: 84.2046816058644
Iteration: 8, Func. Count: 82, Neg. LLF: 83.85765007635
Iteration: 9, Func. Count: 92, Neg. LLF: 82.37521309800576
Iteration: 10, Func. Count: 101, Neg. LLF: 82.3053629493834
Iteration: 11, Func. Count: 110, Neg. LLF: 82.2911559488137
Iteration: 12, Func. Count: 120, Neg. LLF: 83.23786431976269
Iteration: 13, Func. Count: 130, Neg. LLF: 82.19655187783437
Iteration: 14, Func. Count: 139, Neg. LLF: 82.16544990658039
Iteration: 15, Func. Count: 148, Neg. LLF: 82.16191581556512
Iteration: 16, Func. Count: 157, Neg. LLF: 82.16097630293413
Iteration: 17, Func. Count: 166, Neg. LLF: 82.16088622071558
Iteration: 18, Func. Count: 175, Neg. LLF: 82.16087156237968
Iteration: 19, Func. Count: 184, Neg. LLF: 82.16086951744838
Iteration: 20, Func. Count: 192, Neg. LLF: 82.16086949232835
Optimization terminated successfully (Exit mode 0)
Current function value: 82.16086951744838
Iterations: 20
Function evaluations: 192
Gradient evaluations: 20
Iteration: 1, Func. Count: 11, Neg. LLF: 216479405.77871042
Iteration: 2, Func. Count: 23, Neg. LLF: 2920432.2585226404
Iteration: 3, Func. Count: 34, Neg. LLF: 178.52434594330043
Iteration: 4, Func. Count: 45, Neg. LLF: 144.53610863677653
Iteration: 5, Func. Count: 56, Neg. LLF: 109.23188623949171
Iteration: 6, Func. Count: 67, Neg. LLF: 172.02031462152152
Iteration: 7, Func. Count: 78, Neg. LLF: 87.23094250705249
Iteration: 8, Func. Count: 89, Neg. LLF: 83.31996852576887
Iteration: 9, Func. Count: 100, Neg. LLF: 99.32726533969985
Iteration: 10, Func. Count: 111, Neg. LLF: 81.98866405595551
Iteration: 11, Func. Count: 121, Neg. LLF: 82.44252947998238
Iteration: 12, Func. Count: 132, Neg. LLF: 81.9883054739008
Iteration: 13, Func. Count: 143, Neg. LLF: 81.83698661897562
Iteration: 14, Func. Count: 153, Neg. LLF: 81.81089336586497
Iteration: 15, Func. Count: 163, Neg. LLF: 81.78251809008319
Iteration: 16, Func. Count: 173, Neg. LLF: 81.74768172502812
Iteration: 17, Func. Count: 183, Neg. LLF: 81.72497033879395
Iteration: 18, Func. Count: 193, Neg. LLF: 81.71146497860379
Iteration: 19, Func. Count: 203, Neg. LLF: 81.70864419322334
Iteration: 20, Func. Count: 213, Neg. LLF: 81.70844910353142
Iteration: 21, Func. Count: 223, Neg. LLF: 81.70843238548916
Iteration: 22, Func. Count: 232, Neg. LLF: 81.70843236450263
Optimization terminated successfully (Exit mode 0)
Current function value: 81.70843238548916
Iterations: 22
Function evaluations: 232
Gradient evaluations: 22
Iteration: 1, Func. Count: 12, Neg. LLF: 217368168.04966983
Iteration: 2, Func. Count: 24, Neg. LLF: 104539128.31852718
Iteration: 3, Func. Count: 36, Neg. LLF: 1827557.1804137952
Iteration: 4, Func. Count: 48, Neg. LLF: 65274.59981678266
Iteration: 5, Func. Count: 60, Neg. LLF: 1898268.8556754657
Iteration: 6, Func. Count: 72, Neg. LLF: 118.65635523609473
Iteration: 7, Func. Count: 84, Neg. LLF: 94.44335276554493
Iteration: 8, Func. Count: 96, Neg. LLF: 84.38215951998109
Iteration: 9, Func. Count: 108, Neg. LLF: 93.02756046346026
Iteration: 10, Func. Count: 120, Neg. LLF: 82.50830850240132
Iteration: 11, Func. Count: 131, Neg. LLF: 84.16443042913016
Iteration: 12, Func. Count: 143, Neg. LLF: 82.10089852984082
Iteration: 13, Func. Count: 154, Neg. LLF: 81.96755538461147
Iteration: 14, Func. Count: 165, Neg. LLF: 81.915374652438
Iteration: 15, Func. Count: 176, Neg. LLF: 81.90593013452214
Iteration: 16, Func. Count: 188, Neg. LLF: 81.84671559214482
Iteration: 17, Func. Count: 199, Neg. LLF: 81.83969326468997
Iteration: 18, Func. Count: 210, Neg. LLF: 81.83521509461372
Iteration: 19, Func. Count: 221, Neg. LLF: 81.82694276457346
Iteration: 20, Func. Count: 232, Neg. LLF: 81.82352822381078
Iteration: 21, Func. Count: 243, Neg. LLF: 81.80784869553125
Iteration: 22, Func. Count: 254, Neg. LLF: 81.74156768130301
Iteration: 23, Func. Count: 265, Neg. LLF: 81.7180400267233
Iteration: 24, Func. Count: 276, Neg. LLF: 81.71199884195993
Iteration: 25, Func. Count: 287, Neg. LLF: 81.71035074262849
Iteration: 26, Func. Count: 298, Neg. LLF: 81.7089808708458
Iteration: 27, Func. Count: 309, Neg. LLF: 81.70850431594297
Iteration: 28, Func. Count: 320, Neg. LLF: 81.70843920580938
Iteration: 29, Func. Count: 331, Neg. LLF: 81.70843315104081
Iteration: 30, Func. Count: 342, Neg. LLF: 81.70843232332676
Optimization terminated successfully (Exit mode 0)
Current function value: 81.70843232332676
Iterations: 30
Function evaluations: 342
Gradient evaluations: 30
Iteration: 1, Func. Count: 5, Neg. LLF: 133.09942147438358
Iteration: 2, Func. Count: 12, Neg. LLF: 134.22515599086833
Iteration: 3, Func. Count: 17, Neg. LLF: 97.74078202634487
Iteration: 4, Func. Count: 21, Neg. LLF: 97.73549848229922
Iteration: 5, Func. Count: 25, Neg. LLF: 97.73271798933945
Iteration: 6, Func. Count: 29, Neg. LLF: 97.73192674190645
Iteration: 7, Func. Count: 33, Neg. LLF: 97.73192517790429
Iteration: 8, Func. Count: 36, Neg. LLF: 97.73192520425611
Optimization terminated successfully (Exit mode 0)
Current function value: 97.73192517790429
Iterations: 8
Function evaluations: 36
Gradient evaluations: 8
Iteration: 1, Func. Count: 6, Neg. LLF: 20927262.12600592
Iteration: 2, Func. Count: 13, Neg. LLF: 132.32529381848477
Iteration: 3, Func. Count: 21, Neg. LLF: 134.17608906650918
Iteration: 4, Func. Count: 27, Neg. LLF: 123.23786339439629
Iteration: 5, Func. Count: 33, Neg. LLF: 117.31301119066393
Iteration: 6, Func. Count: 39, Neg. LLF: 109.38248660986557
Iteration: 7, Func. Count: 45, Neg. LLF: 103.4816182543906
Iteration: 8, Func. Count: 51, Neg. LLF: 97.24008786279218
Iteration: 9, Func. Count: 57, Neg. LLF: 95.20404466466948
Iteration: 10, Func. Count: 63, Neg. LLF: 95.05974344123675
Iteration: 11, Func. Count: 69, Neg. LLF: 93.67535207421706
Iteration: 12, Func. Count: 75, Neg. LLF: 92.39749477429665
Iteration: 13, Func. Count: 81, Neg. LLF: 90.05293545326633
Iteration: 14, Func. Count: 87, Neg. LLF: 87.34248903770309
Iteration: 15, Func. Count: 93, Neg. LLF: 86.16305802365648
Iteration: 16, Func. Count: 99, Neg. LLF: 90.4731098657968
Iteration: 17, Func. Count: 105, Neg. LLF: 84.65478582209242
Iteration: 18, Func. Count: 110, Neg. LLF: 84.44774462606003
Iteration: 19, Func. Count: 115, Neg. LLF: 84.43225870712766
Iteration: 20, Func. Count: 120, Neg. LLF: 84.43062143757483
Iteration: 21, Func. Count: 125, Neg. LLF: 84.43038168798006
Iteration: 22, Func. Count: 129, Neg. LLF: 84.43038168783715
Optimization terminated successfully (Exit mode 0)
Current function value: 84.43038168798006
Iterations: 22
Function evaluations: 129
Gradient evaluations: 22
Iteration: 1, Func. Count: 7, Neg. LLF: 18444889.929963507
Iteration: 2, Func. Count: 15, Neg. LLF: 246.05130066336733
Iteration: 3, Func. Count: 23, Neg. LLF: 508.56205345443954
Iteration: 4, Func. Count: 30, Neg. LLF: 94.63622468477054
Iteration: 5, Func. Count: 37, Neg. LLF: 91.1409464260324
Iteration: 6, Func. Count: 44, Neg. LLF: 89.17158531894992
Iteration: 7, Func. Count: 51, Neg. LLF: 87.46467678722404
Iteration: 8, Func. Count: 58, Neg. LLF: 85.05649890642354
Iteration: 9, Func. Count: 64, Neg. LLF: 87.33825897652189
Iteration: 10, Func. Count: 71, Neg. LLF: 84.62750154804878
Iteration: 11, Func. Count: 77, Neg. LLF: 84.53307004883337
Iteration: 12, Func. Count: 83, Neg. LLF: 84.50561724398165
Iteration: 13, Func. Count: 89, Neg. LLF: 84.50329833605996
Iteration: 14, Func. Count: 95, Neg. LLF: 84.50229077012038
Iteration: 15, Func. Count: 101, Neg. LLF: 84.4991589075523
Iteration: 16, Func. Count: 107, Neg. LLF: 84.49100680240014
Iteration: 17, Func. Count: 113, Neg. LLF: 84.47007130657741
Iteration: 18, Func. Count: 119, Neg. LLF: 84.45151818839716
Iteration: 19, Func. Count: 125, Neg. LLF: 84.43546930906527
Iteration: 20, Func. Count: 131, Neg. LLF: 84.44850933551047
Iteration: 21, Func. Count: 138, Neg. LLF: 84.43160973827499
Iteration: 22, Func. Count: 144, Neg. LLF: 84.4305553765757
Iteration: 23, Func. Count: 150, Neg. LLF: 84.52319832641777
Optimization terminated successfully (Exit mode 0)
Current function value: 84.43055526745049
Iterations: 24
Function evaluations: 153
Gradient evaluations: 23
Iteration: 1, Func. Count: 8, Neg. LLF: 21249313.593794264
Iteration: 2, Func. Count: 16, Neg. LLF: 5107.489063718532
Iteration: 3, Func. Count: 25, Neg. LLF: 103.02815038860412
Iteration: 4, Func. Count: 35, Neg. LLF: 96.69750512765687
Iteration: 5, Func. Count: 43, Neg. LLF: 85.06186742607815
Iteration: 6, Func. Count: 50, Neg. LLF: 84.64101213796417
Iteration: 7, Func. Count: 57, Neg. LLF: 84.64268369827421
Iteration: 8, Func. Count: 65, Neg. LLF: 84.5253293913207
Iteration: 9, Func. Count: 72, Neg. LLF: 84.51473832018627
Iteration: 10, Func. Count: 79, Neg. LLF: 84.5040136237734
Iteration: 11, Func. Count: 86, Neg. LLF: 84.48652146538433
Iteration: 12, Func. Count: 93, Neg. LLF: 84.47508766616198
Iteration: 13, Func. Count: 100, Neg. LLF: 84.44629095491496
Iteration: 14, Func. Count: 107, Neg. LLF: 84.4378585353904
Iteration: 15, Func. Count: 114, Neg. LLF: 84.43332635687179
Iteration: 16, Func. Count: 121, Neg. LLF: 84.43039176236388
Iteration: 17, Func. Count: 128, Neg. LLF: 84.43038513385734
Iteration: 18, Func. Count: 135, Neg. LLF: 99.19985948506884
Optimization terminated successfully (Exit mode 0)
Current function value: 84.43038512218209
Iterations: 19
Function evaluations: 140
Gradient evaluations: 18
Iteration: 1, Func. Count: 9, Neg. LLF: 20430981.403844804
Iteration: 2, Func. Count: 18, Neg. LLF: 1276360248.525642
Iteration: 3, Func. Count: 29, Neg. LLF: 2670.7565660981463
Iteration: 4, Func. Count: 38, Neg. LLF: 97.46060039439155
Iteration: 5, Func. Count: 47, Neg. LLF: 87.7111352420563
Iteration: 6, Func. Count: 56, Neg. LLF: 85.91336715568308
Iteration: 7, Func. Count: 64, Neg. LLF: 102.13072762644707
Iteration: 8, Func. Count: 73, Neg. LLF: 84.99769810909868
Iteration: 9, Func. Count: 82, Neg. LLF: 85.07055168574891
Iteration: 10, Func. Count: 91, Neg. LLF: 84.50935709885418
Iteration: 11, Func. Count: 99, Neg. LLF: 84.50175961169386
Iteration: 12, Func. Count: 107, Neg. LLF: 84.48301658899126
Iteration: 13, Func. Count: 115, Neg. LLF: 84.43978928533704
Iteration: 14, Func. Count: 123, Neg. LLF: 84.43146132201299
Iteration: 15, Func. Count: 131, Neg. LLF: 84.43073979115485
Iteration: 16, Func. Count: 139, Neg. LLF: 84.43061519286418
Iteration: 17, Func. Count: 147, Neg. LLF: 84.43038521102483
Iteration: 18, Func. Count: 155, Neg. LLF: 84.43038172670278
Iteration: 19, Func. Count: 162, Neg. LLF: 84.43038176446052
Optimization terminated successfully (Exit mode 0)
Current function value: 84.43038172670278
Iterations: 19
Function evaluations: 162
Gradient evaluations: 19
Iteration: 1, Func. Count: 6, Neg. LLF: 137.14311353497973
Iteration: 2, Func. Count: 14, Neg. LLF: 140.5511628093402
Iteration: 3, Func. Count: 20, Neg. LLF: 97.73988754844846
Iteration: 4, Func. Count: 25, Neg. LLF: 97.73745445583567
Iteration: 5, Func. Count: 31, Neg. LLF: 97.73201913335367
Iteration: 6, Func. Count: 36, Neg. LLF: 97.73192517704132
Iteration: 7, Func. Count: 40, Neg. LLF: 97.73192517878661
Optimization terminated successfully (Exit mode 0)
Current function value: 97.73192517704132
Iterations: 7
Function evaluations: 40
Gradient evaluations: 7
Iteration: 1, Func. Count: 7, Neg. LLF: 91790564.71676047
Iteration: 2, Func. Count: 15, Neg. LLF: 124.56800945472716
Iteration: 3, Func. Count: 23, Neg. LLF: 193.23997367052553
Iteration: 4, Func. Count: 30, Neg. LLF: 85.09943319526782
Iteration: 5, Func. Count: 36, Neg. LLF: 85.04550103122499
Iteration: 6, Func. Count: 43, Neg. LLF: 85.54833471585617
Iteration: 7, Func. Count: 51, Neg. LLF: 84.64380877556653
Iteration: 8, Func. Count: 57, Neg. LLF: 84.64342764419615
Iteration: 9, Func. Count: 63, Neg. LLF: 84.64342365650838
Iteration: 10, Func. Count: 68, Neg. LLF: 84.64342360563607
Optimization terminated successfully (Exit mode 0)
Current function value: 84.64342365650838
Iterations: 10
Function evaluations: 68
Gradient evaluations: 10
Iteration: 1, Func. Count: 8, Neg. LLF: 198576273.1567633
Iteration: 2, Func. Count: 17, Neg. LLF: 113372728.92986487
Iteration: 3, Func. Count: 26, Neg. LLF: 328.1000091146298
Iteration: 4, Func. Count: 34, Neg. LLF: 98.07778037287746
Iteration: 5, Func. Count: 42, Neg. LLF: 84.86201734453066
Iteration: 6, Func. Count: 49, Neg. LLF: 84.71064494177973
Iteration: 7, Func. Count: 56, Neg. LLF: 84.66234627402099
Iteration: 8, Func. Count: 63, Neg. LLF: 84.88735634117319
Iteration: 9, Func. Count: 71, Neg. LLF: 84.64420086671377
Iteration: 10, Func. Count: 78, Neg. LLF: 84.6435392743912
Iteration: 11, Func. Count: 85, Neg. LLF: 84.6434300159313
Iteration: 12, Func. Count: 92, Neg. LLF: 84.64342362266791
Iteration: 13, Func. Count: 98, Neg. LLF: 84.643423621556
Optimization terminated successfully (Exit mode 0)
Current function value: 84.64342362266791
Iterations: 13
Function evaluations: 98
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 53817195.768306345
Iteration: 2, Func. Count: 19, Neg. LLF: 103.67292220412847
Iteration: 3, Func. Count: 28, Neg. LLF: 36499.347089846946
Iteration: 4, Func. Count: 37, Neg. LLF: 109.71420089585982
Iteration: 5, Func. Count: 47, Neg. LLF: 84.72707259469995
Iteration: 6, Func. Count: 55, Neg. LLF: 84.78552246552762
Iteration: 7, Func. Count: 64, Neg. LLF: 84.70147508551747
Iteration: 8, Func. Count: 73, Neg. LLF: 84.64545077444734
Iteration: 9, Func. Count: 82, Neg. LLF: 84.64344704095774
Iteration: 10, Func. Count: 90, Neg. LLF: 84.64342453622845
Iteration: 11, Func. Count: 98, Neg. LLF: 84.64342367413643
Optimization terminated successfully (Exit mode 0)
Current function value: 84.64342367413643
Iterations: 11
Function evaluations: 98
Gradient evaluations: 11
Iteration: 1, Func. Count: 10, Neg. LLF: 94399375.8342074
Iteration: 2, Func. Count: 21, Neg. LLF: 64360593.18923706
Iteration: 3, Func. Count: 32, Neg. LLF: 2373.0751288210104
Iteration: 4, Func. Count: 42, Neg. LLF: 102.50506858270249
Iteration: 5, Func. Count: 52, Neg. LLF: 84.73038040579402
Iteration: 6, Func. Count: 61, Neg. LLF: 85.12577462504821
Iteration: 7, Func. Count: 71, Neg. LLF: 84.75173660953789
Iteration: 8, Func. Count: 81, Neg. LLF: 84.64400660238437
Iteration: 9, Func. Count: 90, Neg. LLF: 84.64345268170916
Iteration: 10, Func. Count: 99, Neg. LLF: 84.64342677052394
Iteration: 11, Func. Count: 108, Neg. LLF: 84.64342361163591
Iteration: 12, Func. Count: 116, Neg. LLF: 84.64342360764554
Optimization terminated successfully (Exit mode 0)
Current function value: 84.64342361163591
Iterations: 12
Function evaluations: 116
Gradient evaluations: 12
Iteration: 1, Func. Count: 7, Neg. LLF: 96.44000023661081
Iteration: 2, Func. Count: 15, Neg. LLF: 2992392.857013314
Iteration: 3, Func. Count: 22, Neg. LLF: 3342649.17303931
Iteration: 4, Func. Count: 29, Neg. LLF: 2861471.1400638158
Iteration: 5, Func. Count: 36, Neg. LLF: 5117.778307053828
Iteration: 6, Func. Count: 43, Neg. LLF: 1126.2233845199203
Iteration: 7, Func. Count: 50, Neg. LLF: 100.50159242692955
Iteration: 8, Func. Count: 57, Neg. LLF: 89.27571615064001
Iteration: 9, Func. Count: 64, Neg. LLF: 88.96330848408257
Iteration: 10, Func. Count: 71, Neg. LLF: 88.19216904863242
Iteration: 11, Func. Count: 78, Neg. LLF: 86.32347882532106
Iteration: 12, Func. Count: 84, Neg. LLF: 86.24990724343122
Iteration: 13, Func. Count: 90, Neg. LLF: 86.17398385990424
Iteration: 14, Func. Count: 96, Neg. LLF: 86.13965915254782
Iteration: 15, Func. Count: 102, Neg. LLF: 86.05898227373868
Iteration: 16, Func. Count: 108, Neg. LLF: 86.05512359783847
Iteration: 17, Func. Count: 114, Neg. LLF: 86.0549632392893
Iteration: 18, Func. Count: 119, Neg. LLF: 86.05496323560604
Optimization terminated successfully (Exit mode 0)
Current function value: 86.0549632392893
Iterations: 18
Function evaluations: 119
Gradient evaluations: 18
Iteration: 1, Func. Count: 8, Neg. LLF: 107205324.56350239
Iteration: 2, Func. Count: 17, Neg. LLF: 122.43371481830718
Iteration: 3, Func. Count: 25, Neg. LLF: 142.99051270360326
Iteration: 4, Func. Count: 33, Neg. LLF: 101.93487815340137
Iteration: 5, Func. Count: 41, Neg. LLF: 84.06852788235305
Iteration: 6, Func. Count: 49, Neg. LLF: 83.69215434395745
Iteration: 7, Func. Count: 57, Neg. LLF: 84.8281143007074
Iteration: 8, Func. Count: 65, Neg. LLF: 83.58229532498417
Iteration: 9, Func. Count: 72, Neg. LLF: 83.58065037543129
Iteration: 10, Func. Count: 79, Neg. LLF: 83.58004739402703
Iteration: 11, Func. Count: 86, Neg. LLF: 83.57997437720036
Iteration: 12, Func. Count: 93, Neg. LLF: 83.5799738646441
Optimization terminated successfully (Exit mode 0)
Current function value: 83.5799738646441
Iterations: 12
Function evaluations: 93
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 106.85445568623778
Iteration: 2, Func. Count: 21, Neg. LLF: 399.73560768638515
Iteration: 3, Func. Count: 30, Neg. LLF: 160.73984921488608
Iteration: 4, Func. Count: 39, Neg. LLF: 102.1743244515902
Iteration: 5, Func. Count: 48, Neg. LLF: 83.16056973676721
Iteration: 6, Func. Count: 56, Neg. LLF: 91.9022114936556
Iteration: 7, Func. Count: 65, Neg. LLF: 89.22382019457227
Iteration: 8, Func. Count: 74, Neg. LLF: 82.22328318475991
Iteration: 9, Func. Count: 82, Neg. LLF: 82.16440543561785
Iteration: 10, Func. Count: 90, Neg. LLF: 82.11835452250374
Iteration: 11, Func. Count: 98, Neg. LLF: 82.11473282377878
Iteration: 12, Func. Count: 106, Neg. LLF: 82.11398628770478
Iteration: 13, Func. Count: 114, Neg. LLF: 82.11323214900871
Iteration: 14, Func. Count: 122, Neg. LLF: 82.11318248830027
Iteration: 15, Func. Count: 130, Neg. LLF: 82.11317821267482
Iteration: 16, Func. Count: 138, Neg. LLF: 82.11317709807437
Iteration: 17, Func. Count: 145, Neg. LLF: 82.11317707776908
Optimization terminated successfully (Exit mode 0)
Current function value: 82.11317709807437
Iterations: 17
Function evaluations: 145
Gradient evaluations: 17
Iteration: 1, Func. Count: 10, Neg. LLF: 64293592.608163066
Iteration: 2, Func. Count: 20, Neg. LLF: 4337578.728305035
Iteration: 3, Func. Count: 30, Neg. LLF: 92.70665712995984
Iteration: 4, Func. Count: 41, Neg. LLF: 93.9474055754441
Iteration: 5, Func. Count: 51, Neg. LLF: 82.48879070401475
Iteration: 6, Func. Count: 60, Neg. LLF: 83.32503636029453
Iteration: 7, Func. Count: 71, Neg. LLF: 85.41489970631318
Iteration: 8, Func. Count: 81, Neg. LLF: 82.39801182590284
Iteration: 9, Func. Count: 91, Neg. LLF: 82.35364310024956
Iteration: 10, Func. Count: 101, Neg. LLF: 82.10891885170076
Iteration: 11, Func. Count: 110, Neg. LLF: 82.10726336462643
Iteration: 12, Func. Count: 119, Neg. LLF: 82.10628388487412
Iteration: 13, Func. Count: 128, Neg. LLF: 82.10586790115657
Iteration: 14, Func. Count: 137, Neg. LLF: 82.10586261125513
Iteration: 15, Func. Count: 146, Neg. LLF: 82.10586047631402
Iteration: 16, Func. Count: 155, Neg. LLF: 82.10585923727744
Iteration: 17, Func. Count: 163, Neg. LLF: 82.10585921697889
Optimization terminated successfully (Exit mode 0)
Current function value: 82.10585923727744
Iterations: 17
Function evaluations: 163
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 119325067.2804268
Iteration: 2, Func. Count: 23, Neg. LLF: 3626832.334227712
Iteration: 3, Func. Count: 34, Neg. LLF: 89.667391206105
Iteration: 4, Func. Count: 47, Neg. LLF: 132.6102687746635
Iteration: 5, Func. Count: 58, Neg. LLF: 95.52722487734736
Iteration: 6, Func. Count: 69, Neg. LLF: 86.34687336461374
Iteration: 7, Func. Count: 80, Neg. LLF: 83.64724835912442
Iteration: 8, Func. Count: 91, Neg. LLF: 82.43059030064562
Iteration: 9, Func. Count: 101, Neg. LLF: 82.54590350552603
Iteration: 10, Func. Count: 112, Neg. LLF: 82.98517634123942
Iteration: 11, Func. Count: 123, Neg. LLF: 82.13895532303302
Iteration: 12, Func. Count: 133, Neg. LLF: 82.83473526596937
Iteration: 13, Func. Count: 144, Neg. LLF: 82.10649484833873
Iteration: 14, Func. Count: 154, Neg. LLF: 82.10598826211422
Iteration: 15, Func. Count: 164, Neg. LLF: 82.10589950292247
Iteration: 16, Func. Count: 174, Neg. LLF: 82.10586068815765
Iteration: 17, Func. Count: 184, Neg. LLF: 82.10585927775458
Iteration: 18, Func. Count: 193, Neg. LLF: 82.10585927385077
Optimization terminated successfully (Exit mode 0)
Current function value: 82.10585927775458
Iterations: 18
Function evaluations: 193
Gradient evaluations: 18
Iteration: 1, Func. Count: 8, Neg. LLF: 102.1726776587613
Iteration: 2, Func. Count: 17, Neg. LLF: 45924066.14064984
Iteration: 3, Func. Count: 25, Neg. LLF: 4898832.89575408
Iteration: 4, Func. Count: 33, Neg. LLF: 1863264.485772566
Iteration: 5, Func. Count: 41, Neg. LLF: 1913934.9464784302
Iteration: 6, Func. Count: 49, Neg. LLF: 1862150.8929847784
Iteration: 7, Func. Count: 57, Neg. LLF: 221741.42853411642
Iteration: 8, Func. Count: 65, Neg. LLF: 192.7694538951792
Iteration: 9, Func. Count: 73, Neg. LLF: 919.9993317973217
Iteration: 10, Func. Count: 81, Neg. LLF: 89.87562096436046
Iteration: 11, Func. Count: 89, Neg. LLF: 88.42794242768704
Iteration: 12, Func. Count: 97, Neg. LLF: 86.49166703392083
Iteration: 13, Func. Count: 104, Neg. LLF: 86.36425409170816
Iteration: 14, Func. Count: 111, Neg. LLF: 86.29629970931083
Iteration: 15, Func. Count: 118, Neg. LLF: 86.20714870967416
Iteration: 16, Func. Count: 125, Neg. LLF: 86.12591129918478
Iteration: 17, Func. Count: 132, Neg. LLF: 86.07774456327432
Iteration: 18, Func. Count: 139, Neg. LLF: 86.05517427111965
Iteration: 19, Func. Count: 146, Neg. LLF: 86.05496670316681
Iteration: 20, Func. Count: 153, Neg. LLF: 86.05496295582675
Iteration: 21, Func. Count: 159, Neg. LLF: 86.05496301938423
Optimization terminated successfully (Exit mode 0)
Current function value: 86.05496295582675
Iterations: 21
Function evaluations: 159
Gradient evaluations: 21
Iteration: 1, Func. Count: 9, Neg. LLF: 90249236.47297396
Iteration: 2, Func. Count: 19, Neg. LLF: 319.38943101156406
Iteration: 3, Func. Count: 29, Neg. LLF: 115.36304817280772
Iteration: 4, Func. Count: 38, Neg. LLF: 111.16493837251176
Iteration: 5, Func. Count: 47, Neg. LLF: 83.77716140209907
Iteration: 6, Func. Count: 55, Neg. LLF: 89.16771012168151
Iteration: 7, Func. Count: 64, Neg. LLF: 83.7235928135957
Iteration: 8, Func. Count: 73, Neg. LLF: 83.58306054156846
Iteration: 9, Func. Count: 81, Neg. LLF: 83.58038019635379
Iteration: 10, Func. Count: 89, Neg. LLF: 83.58007810922214
Iteration: 11, Func. Count: 97, Neg. LLF: 83.58001556990722
Iteration: 12, Func. Count: 105, Neg. LLF: 83.57997633341279
Iteration: 13, Func. Count: 113, Neg. LLF: 83.5799741285018
Iteration: 14, Func. Count: 120, Neg. LLF: 83.5799740898124
Optimization terminated successfully (Exit mode 0)
Current function value: 83.5799741285018
Iterations: 14
Function evaluations: 120
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 104.16469415034803
Iteration: 2, Func. Count: 24, Neg. LLF: 315.9166111973763
Iteration: 3, Func. Count: 34, Neg. LLF: 271.80444728943485
Iteration: 4, Func. Count: 44, Neg. LLF: 101.85677890228773
Iteration: 5, Func. Count: 54, Neg. LLF: 83.19961678054783
Iteration: 6, Func. Count: 63, Neg. LLF: 83.78476054045903
Iteration: 7, Func. Count: 74, Neg. LLF: 83.78425970913094
Iteration: 8, Func. Count: 84, Neg. LLF: 82.6706321718744
Iteration: 9, Func. Count: 94, Neg. LLF: 82.61373596582007
Iteration: 10, Func. Count: 104, Neg. LLF: 82.12526742741885
Iteration: 11, Func. Count: 113, Neg. LLF: 82.11747911627562
Iteration: 12, Func. Count: 122, Neg. LLF: 82.1133970563102
Iteration: 13, Func. Count: 131, Neg. LLF: 82.11318702439429
Iteration: 14, Func. Count: 140, Neg. LLF: 82.11317816144816
Iteration: 15, Func. Count: 149, Neg. LLF: 82.11317721108121
Optimization terminated successfully (Exit mode 0)
Current function value: 82.11317721108121
Iterations: 15
Function evaluations: 149
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 56208125.53202252
Iteration: 2, Func. Count: 22, Neg. LLF: 3606207.992412851
Iteration: 3, Func. Count: 33, Neg. LLF: 90.69214002633788
Iteration: 4, Func. Count: 45, Neg. LLF: 92.48599300280398
Iteration: 5, Func. Count: 56, Neg. LLF: 84.24081514599047
Iteration: 6, Func. Count: 67, Neg. LLF: 82.3798102865858
Iteration: 7, Func. Count: 77, Neg. LLF: 85.5817243777324
Iteration: 8, Func. Count: 89, Neg. LLF: 83.02267518094716
Iteration: 9, Func. Count: 100, Neg. LLF: 82.1164848597633
Iteration: 10, Func. Count: 110, Neg. LLF: 82.11281894126697
Iteration: 11, Func. Count: 120, Neg. LLF: 82.11154487849672
Iteration: 12, Func. Count: 130, Neg. LLF: 82.10906778553547
Iteration: 13, Func. Count: 140, Neg. LLF: 82.10746373868278
Iteration: 14, Func. Count: 150, Neg. LLF: 82.1064869699018
Iteration: 15, Func. Count: 160, Neg. LLF: 82.10610733359036
Iteration: 16, Func. Count: 170, Neg. LLF: 82.10594966225374
Iteration: 17, Func. Count: 180, Neg. LLF: 82.10586321701786
Iteration: 18, Func. Count: 190, Neg. LLF: 82.1058592796278
Iteration: 19, Func. Count: 199, Neg. LLF: 82.10585925933424
Optimization terminated successfully (Exit mode 0)
Current function value: 82.1058592796278
Iterations: 19
Function evaluations: 199
Gradient evaluations: 19
Iteration: 1, Func. Count: 12, Neg. LLF: 109087476.59036705
Iteration: 2, Func. Count: 24, Neg. LLF: 4046206.670698874
Iteration: 3, Func. Count: 36, Neg. LLF: 89.68591660679401
Iteration: 4, Func. Count: 50, Neg. LLF: 149.2082807332261
Iteration: 5, Func. Count: 62, Neg. LLF: 92.6800396936514
Iteration: 6, Func. Count: 74, Neg. LLF: 83.1580632341583
Iteration: 7, Func. Count: 85, Neg. LLF: 82.31220157627149
Iteration: 8, Func. Count: 96, Neg. LLF: 122.82081862688554
Iteration: 9, Func. Count: 109, Neg. LLF: 82.154223591634
Iteration: 10, Func. Count: 120, Neg. LLF: 82.14211920538143
Iteration: 11, Func. Count: 131, Neg. LLF: 82.10744910302138
Iteration: 12, Func. Count: 142, Neg. LLF: 81.69921860909164
Iteration: 13, Func. Count: 153, Neg. LLF: 82.01893566285436
Iteration: 14, Func. Count: 165, Neg. LLF: 81.58990763455121
Iteration: 15, Func. Count: 176, Neg. LLF: 81.5129488610695
Iteration: 16, Func. Count: 187, Neg. LLF: 81.5035435681289
Iteration: 17, Func. Count: 198, Neg. LLF: 81.50159554519854
Iteration: 18, Func. Count: 209, Neg. LLF: 81.50128654022443
Iteration: 19, Func. Count: 220, Neg. LLF: 81.5012321226147
Iteration: 20, Func. Count: 231, Neg. LLF: 81.5272773350038
Iteration: 21, Func. Count: 244, Neg. LLF: 81.50246278940595
Iteration: 22, Func. Count: 257, Neg. LLF: 81.50538079322769
Iteration: 23, Func. Count: 270, Neg. LLF: 81.50151310808033
Iteration: 24, Func. Count: 283, Neg. LLF: 81.50124395940874
Iteration: 25, Func. Count: 295, Neg. LLF: 81.50124086616367
Iteration: 26, Func. Count: 305, Neg. LLF: 81.50124092937439
Optimization terminated successfully (Exit mode 0)
Current function value: 81.50124086616367
Iterations: 27
Function evaluations: 305
Gradient evaluations: 26
Iteration: 1, Func. Count: 9, Neg. LLF: 113.8488239337548
Iteration: 2, Func. Count: 19, Neg. LLF: 518395916.335104
Iteration: 3, Func. Count: 29, Neg. LLF: 1423866.714825795
Iteration: 4, Func. Count: 38, Neg. LLF: 203817.20450284524
Iteration: 5, Func. Count: 47, Neg. LLF: 201437.81404807867
Iteration: 6, Func. Count: 56, Neg. LLF: 10683.129579479746
Iteration: 7, Func. Count: 65, Neg. LLF: 215097.60831132918
Iteration: 8, Func. Count: 74, Neg. LLF: 768531.7286829154
Iteration: 9, Func. Count: 83, Neg. LLF: 5232048.6916227015
Iteration: 10, Func. Count: 92, Neg. LLF: 1957333.9448779807
Iteration: 11, Func. Count: 101, Neg. LLF: 1254416.1470806927
Iteration: 12, Func. Count: 110, Neg. LLF: 1198094.3858680837
Iteration: 13, Func. Count: 119, Neg. LLF: 1206609.7994525863
Iteration: 14, Func. Count: 128, Neg. LLF: 116.85097386805748
Iteration: 15, Func. Count: 137, Neg. LLF: 85.16355692157616
Iteration: 16, Func. Count: 146, Neg. LLF: 82.83052163784988
Iteration: 17, Func. Count: 155, Neg. LLF: 83.46935873261819
Iteration: 18, Func. Count: 164, Neg. LLF: 82.53853449586852
Iteration: 19, Func. Count: 173, Neg. LLF: 81.57050366880632
Iteration: 20, Func. Count: 181, Neg. LLF: 81.55745759431527
Iteration: 21, Func. Count: 189, Neg. LLF: 81.55173839832987
Iteration: 22, Func. Count: 197, Neg. LLF: 81.55145241066084
Iteration: 23, Func. Count: 205, Neg. LLF: 81.55113800015626
Iteration: 24, Func. Count: 213, Neg. LLF: 81.55113728209358
Optimization terminated successfully (Exit mode 0)
Current function value: 81.55113728209358
Iterations: 25
Function evaluations: 213
Gradient evaluations: 24
Iteration: 1, Func. Count: 10, Neg. LLF: 98276402.61563064
Iteration: 2, Func. Count: 21, Neg. LLF: 283.342099297889
Iteration: 3, Func. Count: 33, Neg. LLF: 119.08792146409499
Iteration: 4, Func. Count: 43, Neg. LLF: 148.45879961952863
Iteration: 5, Func. Count: 53, Neg. LLF: 83.80039895115242
Iteration: 6, Func. Count: 62, Neg. LLF: 82.68048057480934
Iteration: 7, Func. Count: 73, Neg. LLF: 83.58761820861923
Iteration: 8, Func. Count: 83, Neg. LLF: 82.33028645141219
Iteration: 9, Func. Count: 93, Neg. LLF: 81.68136029357588
Iteration: 10, Func. Count: 102, Neg. LLF: 81.65787302983492
Iteration: 11, Func. Count: 111, Neg. LLF: 81.62658060986065
Iteration: 12, Func. Count: 120, Neg. LLF: 81.61510005555144
Iteration: 13, Func. Count: 129, Neg. LLF: 81.58829639641309
Iteration: 14, Func. Count: 138, Neg. LLF: 81.5620070128675
Iteration: 15, Func. Count: 147, Neg. LLF: 81.5536914168026
Iteration: 16, Func. Count: 156, Neg. LLF: 81.55207956362646
Iteration: 17, Func. Count: 165, Neg. LLF: 81.55190371954467
Iteration: 18, Func. Count: 174, Neg. LLF: 81.55165380373101
Iteration: 19, Func. Count: 183, Neg. LLF: 81.55133062513349
Iteration: 20, Func. Count: 192, Neg. LLF: 81.55116918378447
Iteration: 21, Func. Count: 201, Neg. LLF: 81.55113778674963
Iteration: 22, Func. Count: 210, Neg. LLF: 81.551136067715
Iteration: 23, Func. Count: 218, Neg. LLF: 81.55113607937871
Optimization terminated successfully (Exit mode 0)
Current function value: 81.551136067715
Iterations: 23
Function evaluations: 218
Gradient evaluations: 23
Iteration: 1, Func. Count: 11, Neg. LLF: 104.83105001646817
Iteration: 2, Func. Count: 26, Neg. LLF: 333.98804490605846
Iteration: 3, Func. Count: 37, Neg. LLF: 315.2762672628383
Iteration: 4, Func. Count: 48, Neg. LLF: 101.50368455127614
Iteration: 5, Func. Count: 59, Neg. LLF: 84.160067355021
Iteration: 6, Func. Count: 70, Neg. LLF: 93.16838115050126
Iteration: 7, Func. Count: 81, Neg. LLF: 83.55742979229352
Iteration: 8, Func. Count: 92, Neg. LLF: 83.49583798448157
Iteration: 9, Func. Count: 103, Neg. LLF: 82.60620536326607
Iteration: 10, Func. Count: 114, Neg. LLF: 81.74800701984282
Iteration: 11, Func. Count: 124, Neg. LLF: 83.31677539073566
Iteration: 12, Func. Count: 135, Neg. LLF: 83.61428526703837
Iteration: 13, Func. Count: 146, Neg. LLF: 81.93487536698848
Iteration: 14, Func. Count: 157, Neg. LLF: 81.58004138954246
Iteration: 15, Func. Count: 167, Neg. LLF: 81.56874016701416
Iteration: 16, Func. Count: 177, Neg. LLF: 81.55666691457739
Iteration: 17, Func. Count: 187, Neg. LLF: 81.55161163915142
Iteration: 18, Func. Count: 197, Neg. LLF: 81.5511567563284
Iteration: 19, Func. Count: 207, Neg. LLF: 81.5511362272759
Iteration: 20, Func. Count: 216, Neg. LLF: 81.55113627065954
Optimization terminated successfully (Exit mode 0)
Current function value: 81.5511362272759
Iterations: 20
Function evaluations: 216
Gradient evaluations: 20
Iteration: 1, Func. Count: 12, Neg. LLF: 50747558.416751735
Iteration: 2, Func. Count: 24, Neg. LLF: 3494374.5260569896
Iteration: 3, Func. Count: 36, Neg. LLF: 89.88627981900254
Iteration: 4, Func. Count: 49, Neg. LLF: 95.27964982955592
Iteration: 5, Func. Count: 61, Neg. LLF: 84.93598519574354
Iteration: 6, Func. Count: 73, Neg. LLF: 84.65088972348977
Iteration: 7, Func. Count: 85, Neg. LLF: 82.79671008808006
Iteration: 8, Func. Count: 97, Neg. LLF: 82.27074963361393
Iteration: 9, Func. Count: 109, Neg. LLF: 81.41833062279956
Iteration: 10, Func. Count: 120, Neg. LLF: 82.27830509336125
Iteration: 11, Func. Count: 132, Neg. LLF: 81.32232658933223
Iteration: 12, Func. Count: 143, Neg. LLF: 81.28143191551887
Iteration: 13, Func. Count: 154, Neg. LLF: 81.27820515376514
Iteration: 14, Func. Count: 165, Neg. LLF: 81.27734300303904
Iteration: 15, Func. Count: 176, Neg. LLF: 81.27727503552774
Iteration: 16, Func. Count: 187, Neg. LLF: 81.27726645685586
Iteration: 17, Func. Count: 197, Neg. LLF: 81.27726643828339
Optimization terminated successfully (Exit mode 0)
Current function value: 81.27726645685586
Iterations: 17
Function evaluations: 197
Gradient evaluations: 17
Iteration: 1, Func. Count: 13, Neg. LLF: 96230621.90326977
Iteration: 2, Func. Count: 26, Neg. LLF: 4438575.764447358
Iteration: 3, Func. Count: 39, Neg. LLF: 90.23159125651729
Iteration: 4, Func. Count: 54, Neg. LLF: 149.03039734038364
Iteration: 5, Func. Count: 67, Neg. LLF: 98.0892220178217
Iteration: 6, Func. Count: 80, Neg. LLF: 84.36794289370893
Iteration: 7, Func. Count: 93, Neg. LLF: 84.11718091517932
Iteration: 8, Func. Count: 106, Neg. LLF: 82.85314284535873
Iteration: 9, Func. Count: 119, Neg. LLF: 82.70247919278478
Iteration: 10, Func. Count: 132, Neg. LLF: 82.182633564893
Iteration: 11, Func. Count: 145, Neg. LLF: 81.47535787541189
Iteration: 12, Func. Count: 157, Neg. LLF: 81.33484984871285
Iteration: 13, Func. Count: 169, Neg. LLF: 81.28393125499107
Iteration: 14, Func. Count: 181, Neg. LLF: 81.28116039519271
Iteration: 15, Func. Count: 193, Neg. LLF: 81.27737643621464
Iteration: 16, Func. Count: 205, Neg. LLF: 81.27727933650196
Iteration: 17, Func. Count: 217, Neg. LLF: 81.27726617050276
Iteration: 18, Func. Count: 228, Neg. LLF: 81.27726622303571
Optimization terminated successfully (Exit mode 0)
Current function value: 81.27726617050276
Iterations: 18
Function evaluations: 228
Gradient evaluations: 18
Iteration: 1, Func. Count: 6, Neg. LLF: 121.1092698424624
Iteration: 2, Func. Count: 13, Neg. LLF: 251.1466702440866
Iteration: 3, Func. Count: 19, Neg. LLF: 9871.169250750398
Iteration: 4, Func. Count: 25, Neg. LLF: 5461.039883427935
Iteration: 5, Func. Count: 31, Neg. LLF: 773.3620458138213
Iteration: 6, Func. Count: 37, Neg. LLF: 1954.428986422414
Iteration: 7, Func. Count: 43, Neg. LLF: 447.35930366693384
Iteration: 8, Func. Count: 49, Neg. LLF: 10531.053989719188
Iteration: 9, Func. Count: 55, Neg. LLF: 90.20861097187387
Iteration: 10, Func. Count: 61, Neg. LLF: 94.38802897146016
Iteration: 11, Func. Count: 67, Neg. LLF: 87.49356026117673
Iteration: 12, Func. Count: 72, Neg. LLF: 87.45940674333451
Iteration: 13, Func. Count: 77, Neg. LLF: 87.44374302277492
Iteration: 14, Func. Count: 82, Neg. LLF: 87.44178585261575
Iteration: 15, Func. Count: 87, Neg. LLF: 87.44066118572925
Iteration: 16, Func. Count: 92, Neg. LLF: 87.44033203125615
Iteration: 17, Func. Count: 97, Neg. LLF: 87.44031911708564
Iteration: 18, Func. Count: 101, Neg. LLF: 87.44031911134982
Optimization terminated successfully (Exit mode 0)
Current function value: 87.44031911708564
Iterations: 18
Function evaluations: 101
Gradient evaluations: 18
Iteration: 1, Func. Count: 7, Neg. LLF: 19688940.973138347
Iteration: 2, Func. Count: 15, Neg. LLF: 129.0424496134452
Iteration: 3, Func. Count: 24, Neg. LLF: 99.49861753271136
Iteration: 4, Func. Count: 32, Neg. LLF: 86.69562925352126
Iteration: 5, Func. Count: 39, Neg. LLF: 86.11809789953756
Iteration: 6, Func. Count: 45, Neg. LLF: 86.0840698806818
Iteration: 7, Func. Count: 51, Neg. LLF: 92.60957187552435
Iteration: 8, Func. Count: 58, Neg. LLF: 90.9471062597022
Iteration: 9, Func. Count: 65, Neg. LLF: 90.56336229793946
Iteration: 10, Func. Count: 72, Neg. LLF: 87.53392556884063
Iteration: 11, Func. Count: 79, Neg. LLF: 192.04524918050274
Iteration: 12, Func. Count: 89, Neg. LLF: 617.2803772322604
Iteration: 13, Func. Count: 98, Neg. LLF: 241.75986326173467
Iteration: 14, Func. Count: 109, Neg. LLF: 284.980191953112
Iteration: 15, Func. Count: 121, Neg. LLF: 4506223.678255597
Iteration: 16, Func. Count: 130, Neg. LLF: 93.618456323977
Iteration: 17, Func. Count: 138, Neg. LLF: 96.35415630283532
Iteration: 18, Func. Count: 145, Neg. LLF: 95.74965154606262
Iteration: 19, Func. Count: 152, Neg. LLF: 95.02365995653795
Iteration: 20, Func. Count: 159, Neg. LLF: 102.27015235757868
Iteration: 21, Func. Count: 167, Neg. LLF: 147.3845763599531
Iteration: 22, Func. Count: 176, Neg. LLF: 528.5018188515913
Iteration: 23, Func. Count: 184, Neg. LLF: 85.32362352535593
Iteration: 24, Func. Count: 190, Neg. LLF: 90.32566369726933
Iteration: 25, Func. Count: 198, Neg. LLF: 802.981026267034
Iteration: 26, Func. Count: 206, Neg. LLF: 84.52057939751512
Iteration: 27, Func. Count: 212, Neg. LLF: 84.4347257933136
Iteration: 28, Func. Count: 218, Neg. LLF: 84.43094414407551
Iteration: 29, Func. Count: 224, Neg. LLF: 84.43038817981126
Iteration: 30, Func. Count: 230, Neg. LLF: 84.43038169202731
Iteration: 31, Func. Count: 235, Neg. LLF: 84.43038169173921
Optimization terminated successfully (Exit mode 0)
Current function value: 84.43038169202731
Iterations: 33
Function evaluations: 235
Gradient evaluations: 31
Iteration: 1, Func. Count: 8, Neg. LLF: 15748365.951138638
Iteration: 2, Func. Count: 16, Neg. LLF: 122.66126803530175
Iteration: 3, Func. Count: 26, Neg. LLF: 98.80966060755263
Iteration: 4, Func. Count: 34, Neg. LLF: 105.61616863166857
Iteration: 5, Func. Count: 42, Neg. LLF: 87.75717974911473
Iteration: 6, Func. Count: 50, Neg. LLF: 85.52474055266528
Iteration: 7, Func. Count: 57, Neg. LLF: 85.77398304497534
Iteration: 8, Func. Count: 65, Neg. LLF: 85.48427364779194
Iteration: 9, Func. Count: 72, Neg. LLF: 85.4821851489095
Iteration: 10, Func. Count: 79, Neg. LLF: 85.48212730995795
Iteration: 11, Func. Count: 86, Neg. LLF: 85.48212205700416
Iteration: 12, Func. Count: 92, Neg. LLF: 85.48212205699753
Optimization terminated successfully (Exit mode 0)
Current function value: 85.48212205700416
Iterations: 12
Function evaluations: 92
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 15995830.72976504
Iteration: 2, Func. Count: 18, Neg. LLF: 144.92879440294422
Iteration: 3, Func. Count: 28, Neg. LLF: 107.64312455015668
Iteration: 4, Func. Count: 37, Neg. LLF: 86.97267272075621
Iteration: 5, Func. Count: 46, Neg. LLF: 85.11928282251206
Iteration: 6, Func. Count: 55, Neg. LLF: 85.93842927791655
Iteration: 7, Func. Count: 64, Neg. LLF: 85.2720644763144
Iteration: 8, Func. Count: 73, Neg. LLF: 85.02701881393297
Iteration: 9, Func. Count: 82, Neg. LLF: 84.7947393448406
Iteration: 10, Func. Count: 91, Neg. LLF: 85.420180148521
Iteration: 11, Func. Count: 100, Neg. LLF: 84.64581955167607
Iteration: 12, Func. Count: 108, Neg. LLF: 84.6446475099729
Iteration: 13, Func. Count: 116, Neg. LLF: 84.64440841553952
Iteration: 14, Func. Count: 124, Neg. LLF: 84.64434399290742
Iteration: 15, Func. Count: 132, Neg. LLF: 84.6443267639009
Iteration: 16, Func. Count: 140, Neg. LLF: 84.64432434116917
Iteration: 17, Func. Count: 147, Neg. LLF: 84.64432434115076
Optimization terminated successfully (Exit mode 0)
Current function value: 84.64432434116917
Iterations: 17
Function evaluations: 147
Gradient evaluations: 17
Iteration: 1, Func. Count: 10, Neg. LLF: 15465759.990140906
Iteration: 2, Func. Count: 20, Neg. LLF: 121.82355946729963
Iteration: 3, Func. Count: 30, Neg. LLF: 29865.495260363405
Iteration: 4, Func. Count: 40, Neg. LLF: 105.46686873757702
Iteration: 5, Func. Count: 50, Neg. LLF: 87.00556409544133
Iteration: 6, Func. Count: 60, Neg. LLF: 86.6646366420228
Iteration: 7, Func. Count: 70, Neg. LLF: 86.81870598062795
Iteration: 8, Func. Count: 80, Neg. LLF: 86.36713488380332
Iteration: 9, Func. Count: 90, Neg. LLF: 84.51677084986524
Iteration: 10, Func. Count: 99, Neg. LLF: 84.50091368293216
Iteration: 11, Func. Count: 109, Neg. LLF: 88.2067551132471
Iteration: 12, Func. Count: 119, Neg. LLF: 84.17633830502552
Iteration: 13, Func. Count: 128, Neg. LLF: 84.15752672168303
Iteration: 14, Func. Count: 137, Neg. LLF: 84.15678667333138
Iteration: 15, Func. Count: 146, Neg. LLF: 84.15661660182441
Iteration: 16, Func. Count: 155, Neg. LLF: 84.15659455118966
Iteration: 17, Func. Count: 164, Neg. LLF: 84.1565936058064
Optimization terminated successfully (Exit mode 0)
Current function value: 84.1565936058064
Iterations: 17
Function evaluations: 164
Gradient evaluations: 17
Iteration: 1, Func. Count: 7, Neg. LLF: 110.10502316485227
Iteration: 2, Func. Count: 15, Neg. LLF: 140331.58836004493
Iteration: 3, Func. Count: 22, Neg. LLF: 13063.371920110512
Iteration: 4, Func. Count: 29, Neg. LLF: 24862.35940176505
Iteration: 5, Func. Count: 36, Neg. LLF: 178.7830528092469
Iteration: 6, Func. Count: 43, Neg. LLF: 135457.32943807423
Iteration: 7, Func. Count: 50, Neg. LLF: 398.2119403131781
Iteration: 8, Func. Count: 57, Neg. LLF: 90.0337187840258
Iteration: 9, Func. Count: 64, Neg. LLF: 89.91663718949118
Iteration: 10, Func. Count: 71, Neg. LLF: 87.91208029289693
Iteration: 11, Func. Count: 78, Neg. LLF: 87.03284009317292
Iteration: 12, Func. Count: 84, Neg. LLF: 86.9960287102749
Iteration: 13, Func. Count: 90, Neg. LLF: 86.98543376158906
Iteration: 14, Func. Count: 96, Neg. LLF: 86.98415815478229
Iteration: 15, Func. Count: 102, Neg. LLF: 86.98401633677142
Iteration: 16, Func. Count: 108, Neg. LLF: 86.98399436080427
Iteration: 17, Func. Count: 114, Neg. LLF: 86.98399244418239
Iteration: 18, Func. Count: 119, Neg. LLF: 86.98399244140211
Optimization terminated successfully (Exit mode 0)
Current function value: 86.98399244418239
Iterations: 18
Function evaluations: 119
Gradient evaluations: 18
Iteration: 1, Func. Count: 8, Neg. LLF: 96670841.81041749
Iteration: 2, Func. Count: 17, Neg. LLF: 156.43437803508942
Iteration: 3, Func. Count: 26, Neg. LLF: 228.7404146407967
Iteration: 4, Func. Count: 35, Neg. LLF: 89.42586461821183
Iteration: 5, Func. Count: 43, Neg. LLF: 84.68610264832974
Iteration: 6, Func. Count: 50, Neg. LLF: 84.56855998302154
Iteration: 7, Func. Count: 58, Neg. LLF: 84.45417190313606
Iteration: 8, Func. Count: 65, Neg. LLF: 84.44612728245812
Iteration: 9, Func. Count: 72, Neg. LLF: 84.44597087839631
Iteration: 10, Func. Count: 79, Neg. LLF: 84.44586255884417
Iteration: 11, Func. Count: 86, Neg. LLF: 84.44586044657974
Iteration: 12, Func. Count: 92, Neg. LLF: 84.4458604183004
Optimization terminated successfully (Exit mode 0)
Current function value: 84.44586044657974
Iterations: 12
Function evaluations: 92
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 101.41359532297574
Iteration: 2, Func. Count: 21, Neg. LLF: 187.61744956499913
Iteration: 3, Func. Count: 31, Neg. LLF: 114.00121305718243
Iteration: 4, Func. Count: 40, Neg. LLF: 97.31264775142762
Iteration: 5, Func. Count: 49, Neg. LLF: 85.10913982012293
Iteration: 6, Func. Count: 57, Neg. LLF: 86.26507044127871
Iteration: 7, Func. Count: 67, Neg. LLF: 87.44338543905488
Iteration: 8, Func. Count: 77, Neg. LLF: 87.77775672376228
Iteration: 9, Func. Count: 86, Neg. LLF: 84.96741226052077
Iteration: 10, Func. Count: 94, Neg. LLF: 85.06637755192587
Iteration: 11, Func. Count: 103, Neg. LLF: 84.95265518671819
Iteration: 12, Func. Count: 111, Neg. LLF: 84.95176464663143
Iteration: 13, Func. Count: 119, Neg. LLF: 84.95090608477967
Iteration: 14, Func. Count: 127, Neg. LLF: 84.95060357155006
Iteration: 15, Func. Count: 135, Neg. LLF: 84.95041086947518
Iteration: 16, Func. Count: 143, Neg. LLF: 84.95039559665868
Iteration: 17, Func. Count: 151, Neg. LLF: 84.95039495158474
Optimization terminated successfully (Exit mode 0)
Current function value: 84.95039495158474
Iterations: 17
Function evaluations: 151
Gradient evaluations: 17
Iteration: 1, Func. Count: 10, Neg. LLF: 47317171.16893407
Iteration: 2, Func. Count: 21, Neg. LLF: 96620092.57296549
Iteration: 3, Func. Count: 32, Neg. LLF: 106.6070312756308
Iteration: 4, Func. Count: 43, Neg. LLF: 97.40275338507396
Iteration: 5, Func. Count: 53, Neg. LLF: 85.44935006814524
Iteration: 6, Func. Count: 62, Neg. LLF: 87.85090712632984
Iteration: 7, Func. Count: 73, Neg. LLF: 86.29769829251957
Iteration: 8, Func. Count: 84, Neg. LLF: 85.5090588657228
Iteration: 9, Func. Count: 95, Neg. LLF: 85.83038319174273
Iteration: 10, Func. Count: 105, Neg. LLF: 85.08177879868484
Iteration: 11, Func. Count: 115, Neg. LLF: 84.6465883309924
Iteration: 12, Func. Count: 124, Neg. LLF: 84.6556147199509
Iteration: 13, Func. Count: 134, Neg. LLF: 84.62841500403873
Iteration: 14, Func. Count: 143, Neg. LLF: 84.62667074240441
Iteration: 15, Func. Count: 152, Neg. LLF: 84.62554929980178
Iteration: 16, Func. Count: 161, Neg. LLF: 84.62511184187136
Iteration: 17, Func. Count: 170, Neg. LLF: 84.62502029666169
Iteration: 18, Func. Count: 179, Neg. LLF: 84.62501782472835
Iteration: 19, Func. Count: 187, Neg. LLF: 84.6250178247496
Optimization terminated successfully (Exit mode 0)
Current function value: 84.62501782472835
Iterations: 19
Function evaluations: 187
Gradient evaluations: 19
Iteration: 1, Func. Count: 11, Neg. LLF: 92293609.71644822
Iteration: 2, Func. Count: 23, Neg. LLF: 61720803.19945619
Iteration: 3, Func. Count: 35, Neg. LLF: 92.85815590513334
Iteration: 4, Func. Count: 47, Neg. LLF: 97.94457258153842
Iteration: 5, Func. Count: 58, Neg. LLF: 86.3784064430453
Iteration: 6, Func. Count: 69, Neg. LLF: 86.63986549563354
Iteration: 7, Func. Count: 80, Neg. LLF: 86.44221477945216
Iteration: 8, Func. Count: 91, Neg. LLF: 86.3292974501628
Iteration: 9, Func. Count: 102, Neg. LLF: 85.44401712750208
Iteration: 10, Func. Count: 113, Neg. LLF: 84.50397769029729
Iteration: 11, Func. Count: 123, Neg. LLF: 84.36741389947555
Iteration: 12, Func. Count: 133, Neg. LLF: 85.96047692632621
Iteration: 13, Func. Count: 145, Neg. LLF: 84.25185969169027
Iteration: 14, Func. Count: 155, Neg. LLF: 84.21573346195139
Iteration: 15, Func. Count: 165, Neg. LLF: 84.17891220024563
Iteration: 16, Func. Count: 175, Neg. LLF: 84.16158995753962
Iteration: 17, Func. Count: 185, Neg. LLF: 84.15728459126557
Iteration: 18, Func. Count: 195, Neg. LLF: 84.15665654647066
Iteration: 19, Func. Count: 205, Neg. LLF: 84.15659409923221
Iteration: 20, Func. Count: 214, Neg. LLF: 84.15659409930117
Optimization terminated successfully (Exit mode 0)
Current function value: 84.15659409923221
Iterations: 20
Function evaluations: 214
Gradient evaluations: 20
Iteration: 1, Func. Count: 8, Neg. LLF: 126.12860913905847
Iteration: 2, Func. Count: 16, Neg. LLF: 114473956.91452257
Iteration: 3, Func. Count: 24, Neg. LLF: 1935159.512547636
Iteration: 4, Func. Count: 32, Neg. LLF: 131.3859011909571
Iteration: 5, Func. Count: 40, Neg. LLF: 357.5676080117195
Iteration: 6, Func. Count: 48, Neg. LLF: 91.96678131901521
Iteration: 7, Func. Count: 56, Neg. LLF: 85.71917612574937
Iteration: 8, Func. Count: 64, Neg. LLF: 85.69435320764137
Iteration: 9, Func. Count: 72, Neg. LLF: 84.74947557885437
Iteration: 10, Func. Count: 79, Neg. LLF: 85.73500742172048
Iteration: 11, Func. Count: 87, Neg. LLF: 87.28768739974375
Iteration: 12, Func. Count: 95, Neg. LLF: 86.7690445223874
Iteration: 13, Func. Count: 103, Neg. LLF: 85.10512364865156
Iteration: 14, Func. Count: 111, Neg. LLF: 84.61685162851913
Iteration: 15, Func. Count: 119, Neg. LLF: 84.56742164453888
Iteration: 16, Func. Count: 126, Neg. LLF: 84.56037230109355
Iteration: 17, Func. Count: 133, Neg. LLF: 84.55567609343727
Iteration: 18, Func. Count: 140, Neg. LLF: 84.55522533370359
Iteration: 19, Func. Count: 147, Neg. LLF: 84.5550381829253
Iteration: 20, Func. Count: 154, Neg. LLF: 84.55503649247505
Iteration: 21, Func. Count: 160, Neg. LLF: 84.55503648786735
Optimization terminated successfully (Exit mode 0)
Current function value: 84.55503649247505
Iterations: 21
Function evaluations: 160
Gradient evaluations: 21
Iteration: 1, Func. Count: 9, Neg. LLF: 113707444.31418331
Iteration: 2, Func. Count: 19, Neg. LLF: 109.70140724995589
Iteration: 3, Func. Count: 28, Neg. LLF: 180.97492967182006
Iteration: 4, Func. Count: 37, Neg. LLF: 92.51934146387173
Iteration: 5, Func. Count: 46, Neg. LLF: 93.06314550736276
Iteration: 6, Func. Count: 55, Neg. LLF: 89.75777972794451
Iteration: 7, Func. Count: 64, Neg. LLF: 83.38862597274283
Iteration: 8, Func. Count: 72, Neg. LLF: 83.30692634096559
Iteration: 9, Func. Count: 80, Neg. LLF: 83.29446946254988
Iteration: 10, Func. Count: 88, Neg. LLF: 83.27055453934358
Iteration: 11, Func. Count: 96, Neg. LLF: 83.26834447582394
Iteration: 12, Func. Count: 104, Neg. LLF: 83.26815594448244
Iteration: 13, Func. Count: 112, Neg. LLF: 83.26808854770206
Iteration: 14, Func. Count: 120, Neg. LLF: 83.26808769161569
Optimization terminated successfully (Exit mode 0)
Current function value: 83.26808769161569
Iterations: 14
Function evaluations: 120
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 102.49610437136528
Iteration: 2, Func. Count: 23, Neg. LLF: 429.2763993595093
Iteration: 3, Func. Count: 33, Neg. LLF: 138.291917314525
Iteration: 4, Func. Count: 43, Neg. LLF: 131.87130666687582
Iteration: 5, Func. Count: 53, Neg. LLF: 94.25749128425812
Iteration: 6, Func. Count: 63, Neg. LLF: 83.48256950331033
Iteration: 7, Func. Count: 73, Neg. LLF: 82.36742566671245
Iteration: 8, Func. Count: 82, Neg. LLF: 82.41982289131764
Iteration: 9, Func. Count: 92, Neg. LLF: 96.28393954528394
Iteration: 10, Func. Count: 104, Neg. LLF: 82.68576805415812
Iteration: 11, Func. Count: 114, Neg. LLF: 82.12752910169496
Iteration: 12, Func. Count: 123, Neg. LLF: 82.1166068524863
Iteration: 13, Func. Count: 132, Neg. LLF: 82.11125463788584
Iteration: 14, Func. Count: 141, Neg. LLF: 82.11097447958097
Iteration: 15, Func. Count: 150, Neg. LLF: 82.11092700434187
Iteration: 16, Func. Count: 159, Neg. LLF: 82.11092012969056
Iteration: 17, Func. Count: 168, Neg. LLF: 82.11091525463485
Iteration: 18, Func. Count: 176, Neg. LLF: 82.11091523508557
Optimization terminated successfully (Exit mode 0)
Current function value: 82.11091525463485
Iterations: 18
Function evaluations: 176
Gradient evaluations: 18
Iteration: 1, Func. Count: 11, Neg. LLF: 59046947.344612174
Iteration: 2, Func. Count: 23, Neg. LLF: 3510621.83478266
Iteration: 3, Func. Count: 34, Neg. LLF: 97.14977445148256
Iteration: 4, Func. Count: 45, Neg. LLF: 140.69695764779627
Iteration: 5, Func. Count: 56, Neg. LLF: 83.5197412489442
Iteration: 6, Func. Count: 67, Neg. LLF: 82.13993777294729
Iteration: 7, Func. Count: 77, Neg. LLF: 91.7159418053823
Iteration: 8, Func. Count: 88, Neg. LLF: 112.52184978260165
Iteration: 9, Func. Count: 101, Neg. LLF: 87.18917325288565
Iteration: 10, Func. Count: 112, Neg. LLF: 81.61407720478017
Iteration: 11, Func. Count: 122, Neg. LLF: 81.50488117517177
Iteration: 12, Func. Count: 132, Neg. LLF: 81.48931362239833
Iteration: 13, Func. Count: 142, Neg. LLF: 81.48167013322298
Iteration: 14, Func. Count: 152, Neg. LLF: 81.47630327331899
Iteration: 15, Func. Count: 162, Neg. LLF: 81.47541783914669
Iteration: 16, Func. Count: 172, Neg. LLF: 81.47535260208731
Iteration: 17, Func. Count: 181, Neg. LLF: 81.47535257812645
Optimization terminated successfully (Exit mode 0)
Current function value: 81.47535260208731
Iterations: 17
Function evaluations: 181
Gradient evaluations: 17
Iteration: 1, Func. Count: 12, Neg. LLF: 117837158.56858042
Iteration: 2, Func. Count: 25, Neg. LLF: 2811017.347078156
Iteration: 3, Func. Count: 37, Neg. LLF: 99.48229516660466
Iteration: 4, Func. Count: 49, Neg. LLF: 127.517020795296
Iteration: 5, Func. Count: 61, Neg. LLF: 82.32110485095059
Iteration: 6, Func. Count: 72, Neg. LLF: 84.53377065606146
Iteration: 7, Func. Count: 84, Neg. LLF: 84.02242264881585
Iteration: 8, Func. Count: 97, Neg. LLF: 81.92145332095141
Iteration: 9, Func. Count: 108, Neg. LLF: 85.77174706203577
Iteration: 10, Func. Count: 121, Neg. LLF: 81.75826779067704
Iteration: 11, Func. Count: 132, Neg. LLF: 81.54963111654617
Iteration: 12, Func. Count: 143, Neg. LLF: 81.49979497339065
Iteration: 13, Func. Count: 154, Neg. LLF: 81.47971833907577
Iteration: 14, Func. Count: 165, Neg. LLF: 81.47618738870892
Iteration: 15, Func. Count: 176, Neg. LLF: 81.475415208968
Iteration: 16, Func. Count: 187, Neg. LLF: 81.47537018421349
Iteration: 17, Func. Count: 198, Neg. LLF: 81.47535663099038
Iteration: 18, Func. Count: 209, Neg. LLF: 81.85379023404921
Iteration: 19, Func. Count: 223, Neg. LLF: 81.47890555117881
Optimization terminated successfully (Exit mode 0)
Current function value: 81.47535505453124
Iterations: 20
Function evaluations: 225
Gradient evaluations: 19
Iteration: 1, Func. Count: 9, Neg. LLF: 123.47570369955754
Iteration: 2, Func. Count: 19, Neg. LLF: 3019.7571596482167
Iteration: 3, Func. Count: 28, Neg. LLF: 2902680.550397718
Iteration: 4, Func. Count: 37, Neg. LLF: 689001.4399038209
Iteration: 5, Func. Count: 46, Neg. LLF: 176.52152865840526
Iteration: 6, Func. Count: 55, Neg. LLF: 95.83904077565882
Iteration: 7, Func. Count: 64, Neg. LLF: 1592.1333898173614
Iteration: 8, Func. Count: 73, Neg. LLF: 85.8360690525627
Iteration: 9, Func. Count: 82, Neg. LLF: 85.79734312783636
Iteration: 10, Func. Count: 91, Neg. LLF: 84.9050981334419
Iteration: 11, Func. Count: 99, Neg. LLF: 84.936533631984
Iteration: 12, Func. Count: 108, Neg. LLF: 84.95898171810477
Iteration: 13, Func. Count: 117, Neg. LLF: 84.61926707348671
Iteration: 14, Func. Count: 125, Neg. LLF: 84.58971309965551
Iteration: 15, Func. Count: 133, Neg. LLF: 84.5660788834101
Iteration: 16, Func. Count: 141, Neg. LLF: 84.55538718809271
Iteration: 17, Func. Count: 149, Neg. LLF: 84.55505776699636
Iteration: 18, Func. Count: 157, Neg. LLF: 84.5550373147463
Iteration: 19, Func. Count: 165, Neg. LLF: 84.55503646641347
Optimization terminated successfully (Exit mode 0)
Current function value: 84.55503646641347
Iterations: 19
Function evaluations: 165
Gradient evaluations: 19
Iteration: 1, Func. Count: 10, Neg. LLF: 99675786.4291533
Iteration: 2, Func. Count: 21, Neg. LLF: 258.6673683682306
Iteration: 3, Func. Count: 32, Neg. LLF: 119.28670554324458
Iteration: 4, Func. Count: 42, Neg. LLF: 104.97304611351906
Iteration: 5, Func. Count: 52, Neg. LLF: 83.91889431714094
Iteration: 6, Func. Count: 62, Neg. LLF: 87.26760005505412
Iteration: 7, Func. Count: 72, Neg. LLF: 83.8701347620851
Iteration: 8, Func. Count: 82, Neg. LLF: 83.31570098264464
Iteration: 9, Func. Count: 91, Neg. LLF: 83.27268773284608
Iteration: 10, Func. Count: 100, Neg. LLF: 83.26980135035106
Iteration: 11, Func. Count: 109, Neg. LLF: 83.26846357724109
Iteration: 12, Func. Count: 118, Neg. LLF: 83.26816770104317
Iteration: 13, Func. Count: 127, Neg. LLF: 83.26808845158241
Iteration: 14, Func. Count: 136, Neg. LLF: 83.26808765793614
Optimization terminated successfully (Exit mode 0)
Current function value: 83.26808765793614
Iterations: 14
Function evaluations: 136
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 98.06657589585136
Iteration: 2, Func. Count: 25, Neg. LLF: 293.53247899775715
Iteration: 3, Func. Count: 36, Neg. LLF: 178.71815766834183
Iteration: 4, Func. Count: 47, Neg. LLF: 130.24353722717004
Iteration: 5, Func. Count: 58, Neg. LLF: 94.56630085554625
Iteration: 6, Func. Count: 69, Neg. LLF: 82.80692030804974
Iteration: 7, Func. Count: 79, Neg. LLF: 84.00019513721254
Iteration: 8, Func. Count: 90, Neg. LLF: 148.08718052500265
Iteration: 9, Func. Count: 102, Neg. LLF: 92.81150274651648
Iteration: 10, Func. Count: 113, Neg. LLF: 82.2208545332578
Iteration: 11, Func. Count: 123, Neg. LLF: 82.14536970918749
Iteration: 12, Func. Count: 133, Neg. LLF: 82.12189297506835
Iteration: 13, Func. Count: 143, Neg. LLF: 82.11139121322283
Iteration: 14, Func. Count: 153, Neg. LLF: 82.11093803600063
Iteration: 15, Func. Count: 163, Neg. LLF: 82.11091595990597
Iteration: 16, Func. Count: 172, Neg. LLF: 82.11091594034362
Optimization terminated successfully (Exit mode 0)
Current function value: 82.11091595990597
Iterations: 16
Function evaluations: 172
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 52186395.806871615
Iteration: 2, Func. Count: 24, Neg. LLF: 3149794.625161397
Iteration: 3, Func. Count: 36, Neg. LLF: 94.42847713031988
Iteration: 4, Func. Count: 48, Neg. LLF: 103.20434144115441
Iteration: 5, Func. Count: 60, Neg. LLF: 82.99030215709926
Iteration: 6, Func. Count: 71, Neg. LLF: 122.89699248309934
Iteration: 7, Func. Count: 84, Neg. LLF: 115.18097968938007
Iteration: 8, Func. Count: 98, Neg. LLF: 94.1156902444293
Iteration: 9, Func. Count: 110, Neg. LLF: 81.85671300459447
Iteration: 10, Func. Count: 121, Neg. LLF: 81.88294403658408
Iteration: 11, Func. Count: 133, Neg. LLF: 81.60320668959794
Iteration: 12, Func. Count: 144, Neg. LLF: 81.51056890817316
Iteration: 13, Func. Count: 155, Neg. LLF: 81.48911797080166
Iteration: 14, Func. Count: 166, Neg. LLF: 81.47745793102445
Iteration: 15, Func. Count: 177, Neg. LLF: 81.47547565495523
Iteration: 16, Func. Count: 188, Neg. LLF: 81.47540679998684
Iteration: 17, Func. Count: 199, Neg. LLF: 81.47539092625864
Iteration: 18, Func. Count: 210, Neg. LLF: 81.47537398718431
Iteration: 19, Func. Count: 221, Neg. LLF: 81.47535809444346
Iteration: 20, Func. Count: 232, Neg. LLF: 81.47535279560017
Iteration: 21, Func. Count: 243, Neg. LLF: 81.47535215563288
Optimization terminated successfully (Exit mode 0)
Current function value: 81.47535215563288
Iterations: 21
Function evaluations: 243
Gradient evaluations: 21
Iteration: 1, Func. Count: 13, Neg. LLF: 106950363.92325006
Iteration: 2, Func. Count: 27, Neg. LLF: 2982432.8981192657
Iteration: 3, Func. Count: 40, Neg. LLF: 96.41042347530416
Iteration: 4, Func. Count: 54, Neg. LLF: 133.10978155876887
Iteration: 5, Func. Count: 67, Neg. LLF: 89.16585267605348
Iteration: 6, Func. Count: 80, Neg. LLF: 83.13493673168789
Iteration: 7, Func. Count: 92, Neg. LLF: 83.31012196302562
Iteration: 8, Func. Count: 106, Neg. LLF: 122.37995699206168
Iteration: 9, Func. Count: 121, Neg. LLF: 82.73291350792061
Iteration: 10, Func. Count: 134, Neg. LLF: 82.17178462626308
Iteration: 11, Func. Count: 146, Neg. LLF: 82.49775664934849
Iteration: 12, Func. Count: 159, Neg. LLF: 82.1078200040471
Iteration: 13, Func. Count: 171, Neg. LLF: 82.10460051657653
Iteration: 14, Func. Count: 183, Neg. LLF: 82.10422594691512
Iteration: 15, Func. Count: 195, Neg. LLF: 82.10419163217253
Iteration: 16, Func. Count: 206, Neg. LLF: 82.10419162796892
Optimization terminated successfully (Exit mode 0)
Current function value: 82.10419163217253
Iterations: 16
Function evaluations: 206
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 143.0590371338291
Iteration: 2, Func. Count: 21, Neg. LLF: 2039.0597916472182
Iteration: 3, Func. Count: 31, Neg. LLF: 1384270.9322513572
Iteration: 4, Func. Count: 41, Neg. LLF: 1215681.5032429541
Iteration: 5, Func. Count: 51, Neg. LLF: 564167.1774404423
Iteration: 6, Func. Count: 61, Neg. LLF: 1182631.7970803548
Iteration: 7, Func. Count: 71, Neg. LLF: 1209103.1446564356
Iteration: 8, Func. Count: 81, Neg. LLF: 1170034.3475239063
Iteration: 9, Func. Count: 91, Neg. LLF: 84.03203533915362
Iteration: 10, Func. Count: 101, Neg. LLF: 4774.866269529872
Iteration: 11, Func. Count: 111, Neg. LLF: 81.77282410232574
Iteration: 12, Func. Count: 120, Neg. LLF: 83.65786448804634
Iteration: 13, Func. Count: 130, Neg. LLF: 82.28974680896722
Iteration: 14, Func. Count: 140, Neg. LLF: 81.60877975456205
Iteration: 15, Func. Count: 149, Neg. LLF: 81.58617039320428
Iteration: 16, Func. Count: 158, Neg. LLF: 81.57315897525066
Iteration: 17, Func. Count: 167, Neg. LLF: 81.55978757862889
Iteration: 18, Func. Count: 176, Neg. LLF: 81.55285856430542
Iteration: 19, Func. Count: 185, Neg. LLF: 81.55159515912666
Iteration: 20, Func. Count: 194, Neg. LLF: 81.55121833219948
Iteration: 21, Func. Count: 203, Neg. LLF: 81.55115130990897
Iteration: 22, Func. Count: 212, Neg. LLF: 81.55113705143135
Iteration: 23, Func. Count: 221, Neg. LLF: 81.5511360646903
Optimization terminated successfully (Exit mode 0)
Current function value: 81.5511360646903
Iterations: 23
Function evaluations: 221
Gradient evaluations: 23
Iteration: 1, Func. Count: 11, Neg. LLF: 107651011.93593231
Iteration: 2, Func. Count: 23, Neg. LLF: 444.2060902664072
Iteration: 3, Func. Count: 36, Neg. LLF: 118.34743458438392
Iteration: 4, Func. Count: 47, Neg. LLF: 113.9965033189847
Iteration: 5, Func. Count: 58, Neg. LLF: 83.5793919298202
Iteration: 6, Func. Count: 68, Neg. LLF: 82.35557231895072
Iteration: 7, Func. Count: 80, Neg. LLF: 83.69690857714252
Iteration: 8, Func. Count: 91, Neg. LLF: 81.85095756432455
Iteration: 9, Func. Count: 102, Neg. LLF: 81.61994775443779
Iteration: 10, Func. Count: 112, Neg. LLF: 83.59742978040552
Iteration: 11, Func. Count: 123, Neg. LLF: 81.58116771318478
Iteration: 12, Func. Count: 133, Neg. LLF: 81.57515357549636
Iteration: 13, Func. Count: 143, Neg. LLF: 81.56764175502856
Iteration: 14, Func. Count: 153, Neg. LLF: 81.5567149353449
Iteration: 15, Func. Count: 163, Neg. LLF: 81.55198138270573
Iteration: 16, Func. Count: 173, Neg. LLF: 81.55118662446291
Iteration: 17, Func. Count: 183, Neg. LLF: 81.551147733956
Iteration: 18, Func. Count: 193, Neg. LLF: 81.55114561997775
Iteration: 19, Func. Count: 203, Neg. LLF: 81.55114195848837
Iteration: 20, Func. Count: 213, Neg. LLF: 81.55113825368772
Iteration: 21, Func. Count: 223, Neg. LLF: 81.55113637190018
Iteration: 22, Func. Count: 232, Neg. LLF: 81.55113638356349
Optimization terminated successfully (Exit mode 0)
Current function value: 81.55113637190018
Iterations: 22
Function evaluations: 232
Gradient evaluations: 22
Iteration: 1, Func. Count: 12, Neg. LLF: 99.39376717931329
Iteration: 2, Func. Count: 27, Neg. LLF: 318.12263492361046
Iteration: 3, Func. Count: 39, Neg. LLF: 185.2191583254703
Iteration: 4, Func. Count: 51, Neg. LLF: 122.81078043507574
Iteration: 5, Func. Count: 63, Neg. LLF: 95.1659865442454
Iteration: 6, Func. Count: 75, Neg. LLF: 83.33353554492933
Iteration: 7, Func. Count: 86, Neg. LLF: 82.41201653051024
Iteration: 8, Func. Count: 99, Neg. LLF: 81.60487842774069
Iteration: 9, Func. Count: 110, Neg. LLF: 81.57618364225063
Iteration: 10, Func. Count: 121, Neg. LLF: 81.56399041499483
Iteration: 11, Func. Count: 132, Neg. LLF: 81.55372316102759
Iteration: 12, Func. Count: 143, Neg. LLF: 81.55216168976719
Iteration: 13, Func. Count: 154, Neg. LLF: 81.55195388521015
Iteration: 14, Func. Count: 165, Neg. LLF: 81.55180110327343
Iteration: 15, Func. Count: 176, Neg. LLF: 81.55150683995535
Iteration: 16, Func. Count: 187, Neg. LLF: 81.5512593097784
Iteration: 17, Func. Count: 198, Neg. LLF: 81.55115222281597
Iteration: 18, Func. Count: 209, Neg. LLF: 81.55113653475021
Iteration: 19, Func. Count: 219, Neg. LLF: 81.55113657806115
Optimization terminated successfully (Exit mode 0)
Current function value: 81.55113653475021
Iterations: 19
Function evaluations: 219
Gradient evaluations: 19
Iteration: 1, Func. Count: 13, Neg. LLF: 48147530.02107049
Iteration: 2, Func. Count: 26, Neg. LLF: 3355854.493504276
Iteration: 3, Func. Count: 39, Neg. LLF: 93.28855417818139
Iteration: 4, Func. Count: 52, Neg. LLF: 97.27483338610583
Iteration: 5, Func. Count: 65, Neg. LLF: 83.00370429334866
Iteration: 6, Func. Count: 77, Neg. LLF: 97.78907998331404
Iteration: 7, Func. Count: 90, Neg. LLF: 92.09959044272894
Iteration: 8, Func. Count: 103, Neg. LLF: 89.99019553842632
Iteration: 9, Func. Count: 116, Neg. LLF: 83.39896370980297
Iteration: 10, Func. Count: 129, Neg. LLF: 92.60393829140797
Iteration: 11, Func. Count: 142, Neg. LLF: 81.71512115184277
Iteration: 12, Func. Count: 155, Neg. LLF: 81.30957812442706
Iteration: 13, Func. Count: 167, Neg. LLF: 81.29328708736078
Iteration: 14, Func. Count: 179, Neg. LLF: 81.28028367560205
Iteration: 15, Func. Count: 191, Neg. LLF: 81.27828403649285
Iteration: 16, Func. Count: 203, Neg. LLF: 81.27734073435485
Iteration: 17, Func. Count: 215, Neg. LLF: 81.27732173541122
Iteration: 18, Func. Count: 227, Neg. LLF: 81.27731278669789
Iteration: 19, Func. Count: 239, Neg. LLF: 81.27729379246354
Iteration: 20, Func. Count: 251, Neg. LLF: 81.27727595705052
Iteration: 21, Func. Count: 263, Neg. LLF: 81.27726748836568
Iteration: 22, Func. Count: 275, Neg. LLF: 81.27726615269377
Iteration: 23, Func. Count: 286, Neg. LLF: 81.27726613407735
Optimization terminated successfully (Exit mode 0)
Current function value: 81.27726615269377
Iterations: 23
Function evaluations: 286
Gradient evaluations: 23
Iteration: 1, Func. Count: 14, Neg. LLF: 97523239.77240273
Iteration: 2, Func. Count: 29, Neg. LLF: 3421944.8105895426
Iteration: 3, Func. Count: 43, Neg. LLF: 91.76521773238326
Iteration: 4, Func. Count: 58, Neg. LLF: 121.76634324355554
Iteration: 5, Func. Count: 72, Neg. LLF: 86.25153338545023
Iteration: 6, Func. Count: 86, Neg. LLF: 102.35749130856453
Iteration: 7, Func. Count: 100, Neg. LLF: 83.89782295490866
Iteration: 8, Func. Count: 114, Neg. LLF: 82.73619724996652
Iteration: 9, Func. Count: 128, Neg. LLF: 83.08049078309797
Iteration: 10, Func. Count: 142, Neg. LLF: 81.38892405337866
Iteration: 11, Func. Count: 155, Neg. LLF: 81.33460847687918
Iteration: 12, Func. Count: 168, Neg. LLF: 81.35891625720095
Iteration: 13, Func. Count: 182, Neg. LLF: 81.3024043262915
Iteration: 14, Func. Count: 195, Neg. LLF: 81.2819592430717
Iteration: 15, Func. Count: 208, Neg. LLF: 81.27797711472074
Iteration: 16, Func. Count: 221, Neg. LLF: 81.27729253403369
Iteration: 17, Func. Count: 234, Neg. LLF: 81.27726849928926
Iteration: 18, Func. Count: 247, Neg. LLF: 81.27726641244901
Iteration: 19, Func. Count: 259, Neg. LLF: 81.2772664649767
Optimization terminated successfully (Exit mode 0)
Current function value: 81.27726641244901
Iterations: 19
Function evaluations: 259
Gradient evaluations: 19
Iteration: 1, Func. Count: 7, Neg. LLF: 101.4719117656574
Iteration: 2, Func. Count: 15, Neg. LLF: 157.9160231814773
Iteration: 3, Func. Count: 23, Neg. LLF: 25434.67277961126
Iteration: 4, Func. Count: 30, Neg. LLF: 6213.012106818074
Iteration: 5, Func. Count: 37, Neg. LLF: 264.46171853319055
Iteration: 6, Func. Count: 44, Neg. LLF: 3454.9897293453423
Iteration: 7, Func. Count: 51, Neg. LLF: 270527.31585256977
Iteration: 8, Func. Count: 58, Neg. LLF: 3238.3051248949705
Iteration: 9, Func. Count: 65, Neg. LLF: 178.5412701731023
Iteration: 10, Func. Count: 72, Neg. LLF: 100.40094466552111
Iteration: 11, Func. Count: 79, Neg. LLF: 91.27946332114132
Iteration: 12, Func. Count: 86, Neg. LLF: 87.72864558549527
Iteration: 13, Func. Count: 93, Neg. LLF: 87.91484015876279
Iteration: 14, Func. Count: 100, Neg. LLF: 87.36106246778499
Iteration: 15, Func. Count: 106, Neg. LLF: 87.34515628347111
Iteration: 16, Func. Count: 112, Neg. LLF: 87.32852362114866
Iteration: 17, Func. Count: 118, Neg. LLF: 87.31646783352885
Iteration: 18, Func. Count: 124, Neg. LLF: 87.31420292055871
Iteration: 19, Func. Count: 130, Neg. LLF: 87.31398996408221
Iteration: 20, Func. Count: 136, Neg. LLF: 87.31398914743484
Optimization terminated successfully (Exit mode 0)
Current function value: 87.31398914743484
Iterations: 20
Function evaluations: 136
Gradient evaluations: 20
Iteration: 1, Func. Count: 8, Neg. LLF: 15712498.008261574
Iteration: 2, Func. Count: 17, Neg. LLF: 109.88306252354772
Iteration: 3, Func. Count: 27, Neg. LLF: 88.89553092665379
Iteration: 4, Func. Count: 35, Neg. LLF: 90.71228756968368
Iteration: 5, Func. Count: 43, Neg. LLF: 86.16975334566213
Iteration: 6, Func. Count: 50, Neg. LLF: 86.20540830868919
Iteration: 7, Func. Count: 58, Neg. LLF: 86.13432321425881
Iteration: 8, Func. Count: 65, Neg. LLF: 85.94041823964828
Iteration: 9, Func. Count: 72, Neg. LLF: 90.81319754421827
Iteration: 10, Func. Count: 81, Neg. LLF: 85.2536133737192
Iteration: 11, Func. Count: 88, Neg. LLF: 88.19883836652392
Iteration: 12, Func. Count: 97, Neg. LLF: 85.00333893990596
Iteration: 13, Func. Count: 104, Neg. LLF: 84.51377094174042
Iteration: 14, Func. Count: 111, Neg. LLF: 84.45618583817793
Iteration: 15, Func. Count: 118, Neg. LLF: 84.43353465434848
Iteration: 16, Func. Count: 125, Neg. LLF: 84.43047655889262
Iteration: 17, Func. Count: 132, Neg. LLF: 84.43038451489583
Iteration: 18, Func. Count: 139, Neg. LLF: 84.4303856581257
Optimization terminated successfully (Exit mode 0)
Current function value: 84.43038439035152
Iterations: 18
Function evaluations: 140
Gradient evaluations: 18
Iteration: 1, Func. Count: 9, Neg. LLF: 20028127.471618418
Iteration: 2, Func. Count: 18, Neg. LLF: 402.02887168454674
Iteration: 3, Func. Count: 28, Neg. LLF: 91.50848680826616
Iteration: 4, Func. Count: 37, Neg. LLF: 98.53582183982543
Iteration: 5, Func. Count: 46, Neg. LLF: 87.47724254656632
Iteration: 6, Func. Count: 55, Neg. LLF: 85.98076129556436
Iteration: 7, Func. Count: 64, Neg. LLF: 85.52354881367715
Iteration: 8, Func. Count: 72, Neg. LLF: 85.4987218483331
Iteration: 9, Func. Count: 80, Neg. LLF: 85.48512494398301
Iteration: 10, Func. Count: 88, Neg. LLF: 85.48277765313661
Iteration: 11, Func. Count: 96, Neg. LLF: 85.4821734692546
Iteration: 12, Func. Count: 104, Neg. LLF: 85.48212392688058
Iteration: 13, Func. Count: 112, Neg. LLF: 85.4821220960812
Iteration: 14, Func. Count: 119, Neg. LLF: 85.48212209604272
Optimization terminated successfully (Exit mode 0)
Current function value: 85.4821220960812
Iterations: 14
Function evaluations: 119
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 22657632.701623514
Iteration: 2, Func. Count: 20, Neg. LLF: 1193215707.264956
Iteration: 3, Func. Count: 31, Neg. LLF: 101.01842452682885
Iteration: 4, Func. Count: 43, Neg. LLF: 90.11592169634214
Iteration: 5, Func. Count: 53, Neg. LLF: 85.77807863787532
Iteration: 6, Func. Count: 62, Neg. LLF: 92.74891203102885
Iteration: 7, Func. Count: 73, Neg. LLF: 86.72248331073034
Iteration: 8, Func. Count: 83, Neg. LLF: 86.9219433782388
Iteration: 9, Func. Count: 93, Neg. LLF: 85.03986902326406
Iteration: 10, Func. Count: 103, Neg. LLF: 85.70332229746327
Iteration: 11, Func. Count: 114, Neg. LLF: 84.89333247024662
Iteration: 12, Func. Count: 124, Neg. LLF: 84.70358565899947
Iteration: 13, Func. Count: 133, Neg. LLF: 84.8121957566075
Iteration: 14, Func. Count: 143, Neg. LLF: 84.66950433744044
Iteration: 15, Func. Count: 152, Neg. LLF: 84.65376176992235
Iteration: 16, Func. Count: 161, Neg. LLF: 84.6557067489275
Iteration: 17, Func. Count: 171, Neg. LLF: 84.64189581547551
Iteration: 18, Func. Count: 180, Neg. LLF: 84.6399200189708
Iteration: 19, Func. Count: 189, Neg. LLF: 84.63910583079489
Iteration: 20, Func. Count: 198, Neg. LLF: 84.63863342090212
Iteration: 21, Func. Count: 207, Neg. LLF: 84.63836326364999
Iteration: 22, Func. Count: 216, Neg. LLF: 84.6383111289746
Iteration: 23, Func. Count: 225, Neg. LLF: 84.63829837756445
Iteration: 24, Func. Count: 234, Neg. LLF: 84.63829457922809
Iteration: 25, Func. Count: 243, Neg. LLF: 84.63829330767463
Iteration: 26, Func. Count: 251, Neg. LLF: 84.63829330766711
Optimization terminated successfully (Exit mode 0)
Current function value: 84.63829330767463
Iterations: 26
Function evaluations: 251
Gradient evaluations: 26
Iteration: 1, Func. Count: 11, Neg. LLF: 20355107.692153566
Iteration: 2, Func. Count: 22, Neg. LLF: 224.450176807336
Iteration: 3, Func. Count: 34, Neg. LLF: 123.82713061051011
Iteration: 4, Func. Count: 45, Neg. LLF: 113.81940334965698
Iteration: 5, Func. Count: 56, Neg. LLF: 90.23253230303017
Iteration: 6, Func. Count: 67, Neg. LLF: 86.30513546767843
Iteration: 7, Func. Count: 78, Neg. LLF: 96.11757087717294
Iteration: 8, Func. Count: 89, Neg. LLF: 89.06907492414915
Iteration: 9, Func. Count: 100, Neg. LLF: 84.37018876013576
Iteration: 10, Func. Count: 110, Neg. LLF: 84.72369376906879
Iteration: 11, Func. Count: 121, Neg. LLF: 85.5493097563714
Iteration: 12, Func. Count: 132, Neg. LLF: 84.15352278057601
Iteration: 13, Func. Count: 142, Neg. LLF: 84.13461559240002
Iteration: 14, Func. Count: 152, Neg. LLF: 84.13179969303637
Iteration: 15, Func. Count: 162, Neg. LLF: 84.05968862732676
Iteration: 16, Func. Count: 172, Neg. LLF: 84.04966890145465
Iteration: 17, Func. Count: 182, Neg. LLF: 84.04880486975729
Iteration: 18, Func. Count: 192, Neg. LLF: 84.04846012519823
Iteration: 19, Func. Count: 202, Neg. LLF: 84.04844095028999
Iteration: 20, Func. Count: 212, Neg. LLF: 84.04843647931688
Iteration: 21, Func. Count: 221, Neg. LLF: 84.04843647947826
Optimization terminated successfully (Exit mode 0)
Current function value: 84.04843647931688
Iterations: 21
Function evaluations: 221
Gradient evaluations: 21
Iteration: 1, Func. Count: 8, Neg. LLF: 101.3707110799317
Iteration: 2, Func. Count: 17, Neg. LLF: 160.35515422400056
Iteration: 3, Func. Count: 26, Neg. LLF: 6225.552334329566
Iteration: 4, Func. Count: 34, Neg. LLF: 4822.556091197011
Iteration: 5, Func. Count: 42, Neg. LLF: 1059.1350230132207
Iteration: 6, Func. Count: 50, Neg. LLF: 33918.12981117787
Iteration: 7, Func. Count: 58, Neg. LLF: 1164.8444880598634
Iteration: 8, Func. Count: 66, Neg. LLF: 25868.17086734209
Iteration: 9, Func. Count: 74, Neg. LLF: 357.3728085105522
Iteration: 10, Func. Count: 82, Neg. LLF: 148.74795161153412
Iteration: 11, Func. Count: 90, Neg. LLF: 91.70055566602242
Iteration: 12, Func. Count: 98, Neg. LLF: 87.37231429870508
Iteration: 13, Func. Count: 106, Neg. LLF: 87.25773340087481
Iteration: 14, Func. Count: 114, Neg. LLF: 87.02345139573491
Iteration: 15, Func. Count: 122, Neg. LLF: 86.83836793369008
Iteration: 16, Func. Count: 129, Neg. LLF: 86.82519278635216
Iteration: 17, Func. Count: 136, Neg. LLF: 86.82085794823996
Iteration: 18, Func. Count: 143, Neg. LLF: 86.81998795924214
Iteration: 19, Func. Count: 150, Neg. LLF: 86.8198597207169
Iteration: 20, Func. Count: 157, Neg. LLF: 86.81984183233602
Iteration: 21, Func. Count: 163, Neg. LLF: 86.81984183172739
Optimization terminated successfully (Exit mode 0)
Current function value: 86.81984183233602
Iterations: 21
Function evaluations: 163
Gradient evaluations: 21
Iteration: 1, Func. Count: 9, Neg. LLF: 112004996.7569753
Iteration: 2, Func. Count: 19, Neg. LLF: 196524.23565864496
Iteration: 3, Func. Count: 29, Neg. LLF: 127.28222088396376
Iteration: 4, Func. Count: 38, Neg. LLF: 85.63938466307903
Iteration: 5, Func. Count: 47, Neg. LLF: 92.85018568393761
Iteration: 6, Func. Count: 57, Neg. LLF: 84.47797185773378
Iteration: 7, Func. Count: 65, Neg. LLF: 84.44746317548024
Iteration: 8, Func. Count: 73, Neg. LLF: 84.44603860885698
Iteration: 9, Func. Count: 81, Neg. LLF: 84.44589062862043
Iteration: 10, Func. Count: 89, Neg. LLF: 84.44586118557626
Iteration: 11, Func. Count: 97, Neg. LLF: 84.44585999239762
Iteration: 12, Func. Count: 104, Neg. LLF: 84.44585996399155
Optimization terminated successfully (Exit mode 0)
Current function value: 84.44585999239762
Iterations: 12
Function evaluations: 104
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 104.70374804076424
Iteration: 2, Func. Count: 23, Neg. LLF: 236.2593835490057
Iteration: 3, Func. Count: 34, Neg. LLF: 98.32585561024362
Iteration: 4, Func. Count: 44, Neg. LLF: 245.22286035418244
Iteration: 5, Func. Count: 55, Neg. LLF: 93.38242502678277
Iteration: 6, Func. Count: 65, Neg. LLF: 85.20590596339649
Iteration: 7, Func. Count: 74, Neg. LLF: 86.58634335201197
Iteration: 8, Func. Count: 84, Neg. LLF: 91.678038590451
Iteration: 9, Func. Count: 95, Neg. LLF: 85.01353993458575
Iteration: 10, Func. Count: 104, Neg. LLF: 85.08687796074646
Iteration: 11, Func. Count: 114, Neg. LLF: 84.9619441859542
Iteration: 12, Func. Count: 123, Neg. LLF: 84.95233753541062
Iteration: 13, Func. Count: 132, Neg. LLF: 84.95126698648738
Iteration: 14, Func. Count: 141, Neg. LLF: 84.9507464116889
Iteration: 15, Func. Count: 150, Neg. LLF: 84.95050670853198
Iteration: 16, Func. Count: 159, Neg. LLF: 84.95039635924688
Iteration: 17, Func. Count: 168, Neg. LLF: 84.95039497568216
Iteration: 18, Func. Count: 176, Neg. LLF: 84.95039495741042
Optimization terminated successfully (Exit mode 0)
Current function value: 84.95039497568216
Iterations: 18
Function evaluations: 176
Gradient evaluations: 18
Iteration: 1, Func. Count: 11, Neg. LLF: 68687373.71995398
Iteration: 2, Func. Count: 23, Neg. LLF: 80427800.21024019
Iteration: 3, Func. Count: 35, Neg. LLF: 106.51960828055937
Iteration: 4, Func. Count: 47, Neg. LLF: 99.95741134874775
Iteration: 5, Func. Count: 58, Neg. LLF: 85.46785580436615
Iteration: 6, Func. Count: 68, Neg. LLF: 87.88717898966652
Iteration: 7, Func. Count: 79, Neg. LLF: 85.77406464838724
Iteration: 8, Func. Count: 90, Neg. LLF: 85.45030635350565
Iteration: 9, Func. Count: 101, Neg. LLF: 84.74847329219408
Iteration: 10, Func. Count: 111, Neg. LLF: 84.96243433459182
Iteration: 11, Func. Count: 122, Neg. LLF: 85.05146406570947
Iteration: 12, Func. Count: 133, Neg. LLF: 84.69900429124496
Iteration: 13, Func. Count: 144, Neg. LLF: 84.77846578154274
Iteration: 14, Func. Count: 155, Neg. LLF: 84.62418036169657
Iteration: 15, Func. Count: 165, Neg. LLF: 84.62150973056497
Iteration: 16, Func. Count: 175, Neg. LLF: 84.62103953670577
Iteration: 17, Func. Count: 185, Neg. LLF: 84.62074476820914
Iteration: 18, Func. Count: 195, Neg. LLF: 84.62045983670237
Iteration: 19, Func. Count: 205, Neg. LLF: 84.62041066217444
Iteration: 20, Func. Count: 215, Neg. LLF: 84.62039899235108
Iteration: 21, Func. Count: 225, Neg. LLF: 84.62039725184127
Iteration: 22, Func. Count: 234, Neg. LLF: 84.62039725189459
Optimization terminated successfully (Exit mode 0)
Current function value: 84.62039725184127
Iterations: 22
Function evaluations: 234
Gradient evaluations: 22
Iteration: 1, Func. Count: 12, Neg. LLF: 117961688.33822878
Iteration: 2, Func. Count: 25, Neg. LLF: 57107119.20600592
Iteration: 3, Func. Count: 38, Neg. LLF: 93.22601870989766
Iteration: 4, Func. Count: 51, Neg. LLF: 101.11724795628301
Iteration: 5, Func. Count: 63, Neg. LLF: 84.80217036598495
Iteration: 6, Func. Count: 74, Neg. LLF: 86.26621775785361
Iteration: 7, Func. Count: 86, Neg. LLF: 86.0509885850335
Iteration: 8, Func. Count: 98, Neg. LLF: 84.36397660940307
Iteration: 9, Func. Count: 110, Neg. LLF: 87.93990147314334
Iteration: 10, Func. Count: 122, Neg. LLF: 84.14853855752044
Iteration: 11, Func. Count: 133, Neg. LLF: 84.13873574647266
Iteration: 12, Func. Count: 144, Neg. LLF: 84.18666253531073
Iteration: 13, Func. Count: 156, Neg. LLF: 84.12964078907993
Iteration: 14, Func. Count: 167, Neg. LLF: 84.07238874602697
Iteration: 15, Func. Count: 178, Neg. LLF: 84.05990657181866
Iteration: 16, Func. Count: 189, Neg. LLF: 84.05060515231722
Iteration: 17, Func. Count: 200, Neg. LLF: 84.04890500549975
Iteration: 18, Func. Count: 211, Neg. LLF: 84.04843765105925
Iteration: 19, Func. Count: 222, Neg. LLF: 84.0484363656565
Iteration: 20, Func. Count: 232, Neg. LLF: 84.04843636546696
Optimization terminated successfully (Exit mode 0)
Current function value: 84.0484363656565
Iterations: 20
Function evaluations: 232
Gradient evaluations: 20
Iteration: 1, Func. Count: 9, Neg. LLF: 7590538.385631998
Iteration: 2, Func. Count: 18, Neg. LLF: 158.11762782697264
Iteration: 3, Func. Count: 27, Neg. LLF: 4891159.427113031
Iteration: 4, Func. Count: 36, Neg. LLF: 7027.915079818458
Iteration: 5, Func. Count: 45, Neg. LLF: 2936874.222697598
Iteration: 6, Func. Count: 54, Neg. LLF: 540.2023136083442
Iteration: 7, Func. Count: 63, Neg. LLF: 102.12443784663472
Iteration: 8, Func. Count: 72, Neg. LLF: 87.31471752154448
Iteration: 9, Func. Count: 81, Neg. LLF: 87.4375348292582
Iteration: 10, Func. Count: 90, Neg. LLF: 87.38432252636476
Iteration: 11, Func. Count: 99, Neg. LLF: 84.63278222248216
Iteration: 12, Func. Count: 108, Neg. LLF: 84.31787628201714
Iteration: 13, Func. Count: 117, Neg. LLF: 84.08369408016955
Iteration: 14, Func. Count: 125, Neg. LLF: 84.07904298096307
Iteration: 15, Func. Count: 134, Neg. LLF: 84.05646901529595
Iteration: 16, Func. Count: 143, Neg. LLF: 84.02064722307777
Iteration: 17, Func. Count: 151, Neg. LLF: 84.02049771427633
Iteration: 18, Func. Count: 159, Neg. LLF: 84.02044248856323
Iteration: 19, Func. Count: 167, Neg. LLF: 84.02044117244638
Iteration: 20, Func. Count: 174, Neg. LLF: 84.02044117164395
Optimization terminated successfully (Exit mode 0)
Current function value: 84.02044117244638
Iterations: 20
Function evaluations: 174
Gradient evaluations: 20
Iteration: 1, Func. Count: 10, Neg. LLF: 129998223.98200302
Iteration: 2, Func. Count: 21, Neg. LLF: 2893548.4761255807
Iteration: 3, Func. Count: 32, Neg. LLF: 101.12781712166803
Iteration: 4, Func. Count: 42, Neg. LLF: 99.27256138440102
Iteration: 5, Func. Count: 52, Neg. LLF: 83.96028930927208
Iteration: 6, Func. Count: 62, Neg. LLF: 91.68545729116659
Iteration: 7, Func. Count: 73, Neg. LLF: 86.61078211375774
Iteration: 8, Func. Count: 83, Neg. LLF: 83.19343380822767
Iteration: 9, Func. Count: 92, Neg. LLF: 83.19289534148709
Iteration: 10, Func. Count: 102, Neg. LLF: 83.16599943122688
Iteration: 11, Func. Count: 112, Neg. LLF: 83.16121653266022
Iteration: 12, Func. Count: 121, Neg. LLF: 83.16118591162511
Iteration: 13, Func. Count: 129, Neg. LLF: 83.16118589590877
Optimization terminated successfully (Exit mode 0)
Current function value: 83.16118591162511
Iterations: 13
Function evaluations: 129
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 118.68952011691957
Iteration: 2, Func. Count: 23, Neg. LLF: 7965761.367191467
Iteration: 3, Func. Count: 34, Neg. LLF: 169.2416180204124
Iteration: 4, Func. Count: 45, Neg. LLF: 122.2067138321725
Iteration: 5, Func. Count: 56, Neg. LLF: 83.75542984693031
Iteration: 6, Func. Count: 67, Neg. LLF: 89.68910695029285
Iteration: 7, Func. Count: 78, Neg. LLF: 83.04687666384487
Iteration: 8, Func. Count: 89, Neg. LLF: 82.02603319957397
Iteration: 9, Func. Count: 99, Neg. LLF: 82.6755053004126
Iteration: 10, Func. Count: 111, Neg. LLF: 92.82902882439541
Iteration: 11, Func. Count: 123, Neg. LLF: 81.89843676026024
Iteration: 12, Func. Count: 133, Neg. LLF: 81.90381768605727
Iteration: 13, Func. Count: 144, Neg. LLF: 81.89412690720908
Iteration: 14, Func. Count: 154, Neg. LLF: 81.89409594676602
Iteration: 15, Func. Count: 163, Neg. LLF: 81.8940959370611
Optimization terminated successfully (Exit mode 0)
Current function value: 81.89409594676602
Iterations: 15
Function evaluations: 163
Gradient evaluations: 15
Iteration: 1, Func. Count: 12, Neg. LLF: 90932022.80237237
Iteration: 2, Func. Count: 25, Neg. LLF: 3757317.9175343807
Iteration: 3, Func. Count: 37, Neg. LLF: 93.05530264116048
Iteration: 4, Func. Count: 49, Neg. LLF: 92.779529695842
Iteration: 5, Func. Count: 61, Neg. LLF: 82.67513911762813
Iteration: 6, Func. Count: 72, Neg. LLF: 84.74750241982964
Iteration: 7, Func. Count: 84, Neg. LLF: 694.7292113930791
Iteration: 8, Func. Count: 97, Neg. LLF: 82.85381217936718
Iteration: 9, Func. Count: 109, Neg. LLF: 83.44647026721623
Iteration: 10, Func. Count: 121, Neg. LLF: 81.96216176617563
Iteration: 11, Func. Count: 132, Neg. LLF: 81.89959252805319
Iteration: 12, Func. Count: 143, Neg. LLF: 82.15612000664102
Iteration: 13, Func. Count: 156, Neg. LLF: 81.89740248682455
Iteration: 14, Func. Count: 167, Neg. LLF: 81.89421897493136
Iteration: 15, Func. Count: 178, Neg. LLF: 81.89411799024892
Iteration: 16, Func. Count: 189, Neg. LLF: 81.8940978222653
Iteration: 17, Func. Count: 200, Neg. LLF: 81.89409619410995
Iteration: 18, Func. Count: 210, Neg. LLF: 81.8940961986268
Optimization terminated successfully (Exit mode 0)
Current function value: 81.89409619410995
Iterations: 18
Function evaluations: 210
Gradient evaluations: 18
Iteration: 1, Func. Count: 13, Neg. LLF: 137577777.9507816
Iteration: 2, Func. Count: 27, Neg. LLF: 2935303.3712919396
Iteration: 3, Func. Count: 40, Neg. LLF: 101.64385335389211
Iteration: 4, Func. Count: 53, Neg. LLF: 139.8999931315255
Iteration: 5, Func. Count: 66, Neg. LLF: 84.3201327353498
Iteration: 6, Func. Count: 79, Neg. LLF: 83.02971867722685
Iteration: 7, Func. Count: 92, Neg. LLF: 84.77192776187044
Iteration: 8, Func. Count: 105, Neg. LLF: 82.20151419126064
Iteration: 9, Func. Count: 117, Neg. LLF: 82.30733371008166
Iteration: 10, Func. Count: 130, Neg. LLF: 90.69091868482391
Iteration: 11, Func. Count: 144, Neg. LLF: 82.72962164851681
Iteration: 12, Func. Count: 158, Neg. LLF: 82.96707388181618
Iteration: 13, Func. Count: 171, Neg. LLF: 82.63601997325328
Iteration: 14, Func. Count: 184, Neg. LLF: 81.90031429275093
Iteration: 15, Func. Count: 196, Neg. LLF: 81.89457929271029
Iteration: 16, Func. Count: 208, Neg. LLF: 81.89411711760852
Iteration: 17, Func. Count: 220, Neg. LLF: 81.89409918514608
Iteration: 18, Func. Count: 232, Neg. LLF: 81.89409634366555
Iteration: 19, Func. Count: 243, Neg. LLF: 81.89409636017399
Optimization terminated successfully (Exit mode 0)
Current function value: 81.89409634366555
Iterations: 19
Function evaluations: 243
Gradient evaluations: 19
Iteration: 1, Func. Count: 10, Neg. LLF: 100.00624676226451
Iteration: 2, Func. Count: 20, Neg. LLF: 1840347.1488383627
Iteration: 3, Func. Count: 30, Neg. LLF: 180.43486565291974
Iteration: 4, Func. Count: 41, Neg. LLF: 514.2155248508514
Iteration: 5, Func. Count: 52, Neg. LLF: 977.7866725847165
Iteration: 6, Func. Count: 62, Neg. LLF: 92.35524256906761
Iteration: 7, Func. Count: 72, Neg. LLF: 85.80464938830715
Iteration: 8, Func. Count: 82, Neg. LLF: 93.4736314700136
Iteration: 9, Func. Count: 92, Neg. LLF: 84.21475232729695
Iteration: 10, Func. Count: 102, Neg. LLF: 84.07612490263055
Iteration: 11, Func. Count: 111, Neg. LLF: 84.01254461800993
Iteration: 12, Func. Count: 120, Neg. LLF: 83.97043921008049
Iteration: 13, Func. Count: 129, Neg. LLF: 83.93030784846319
Iteration: 14, Func. Count: 138, Neg. LLF: 83.92368380377813
Iteration: 15, Func. Count: 147, Neg. LLF: 83.9213755376711
Iteration: 16, Func. Count: 156, Neg. LLF: 83.92115120879478
Iteration: 17, Func. Count: 165, Neg. LLF: 83.92113903664253
Iteration: 18, Func. Count: 173, Neg. LLF: 83.92113901850428
Optimization terminated successfully (Exit mode 0)
Current function value: 83.92113903664253
Iterations: 18
Function evaluations: 173
Gradient evaluations: 18
Iteration: 1, Func. Count: 11, Neg. LLF: 116058764.11449176
Iteration: 2, Func. Count: 23, Neg. LLF: 127.34606297331447
Iteration: 3, Func. Count: 34, Neg. LLF: 206.04897664418965
Iteration: 4, Func. Count: 45, Neg. LLF: 121.43040595879073
Iteration: 5, Func. Count: 56, Neg. LLF: 86.32042960299066
Iteration: 6, Func. Count: 67, Neg. LLF: 88.79116022386565
Iteration: 7, Func. Count: 78, Neg. LLF: 83.42963340373159
Iteration: 8, Func. Count: 89, Neg. LLF: 83.63670732617967
Iteration: 9, Func. Count: 100, Neg. LLF: 83.10573598915393
Iteration: 10, Func. Count: 110, Neg. LLF: 83.45174933893573
Iteration: 11, Func. Count: 122, Neg. LLF: 83.09416309360539
Iteration: 12, Func. Count: 132, Neg. LLF: 83.08798670394563
Iteration: 13, Func. Count: 142, Neg. LLF: 83.08710330082138
Iteration: 14, Func. Count: 152, Neg. LLF: 83.08694132506486
Iteration: 15, Func. Count: 162, Neg. LLF: 83.08691980028222
Iteration: 16, Func. Count: 171, Neg. LLF: 83.08691978891288
Optimization terminated successfully (Exit mode 0)
Current function value: 83.08691980028222
Iterations: 16
Function evaluations: 171
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 104.85901754333753
Iteration: 2, Func. Count: 27, Neg. LLF: 631.5463936248177
Iteration: 3, Func. Count: 39, Neg. LLF: 183.48615428701828
Iteration: 4, Func. Count: 51, Neg. LLF: 107.43857147742006
Iteration: 5, Func. Count: 63, Neg. LLF: 96.33724502496243
Iteration: 6, Func. Count: 75, Neg. LLF: 82.6683257465403
Iteration: 7, Func. Count: 86, Neg. LLF: 95.40097109478972
Iteration: 8, Func. Count: 98, Neg. LLF: 98.66414888204598
Iteration: 9, Func. Count: 113, Neg. LLF: 118.49413658908564
Iteration: 10, Func. Count: 127, Neg. LLF: 84.01296489196004
Iteration: 11, Func. Count: 139, Neg. LLF: 81.88507194578958
Iteration: 12, Func. Count: 150, Neg. LLF: 81.78175427244481
Iteration: 13, Func. Count: 161, Neg. LLF: 81.76621188563242
Iteration: 14, Func. Count: 172, Neg. LLF: 81.74503430514066
Iteration: 15, Func. Count: 183, Neg. LLF: 81.74447319490199
Iteration: 16, Func. Count: 194, Neg. LLF: 81.74441009168551
Iteration: 17, Func. Count: 205, Neg. LLF: 81.74438909065834
Iteration: 18, Func. Count: 216, Neg. LLF: 81.74438735210404
Iteration: 19, Func. Count: 227, Neg. LLF: 81.74438677001709
Optimization terminated successfully (Exit mode 0)
Current function value: 81.74438677001709
Iterations: 19
Function evaluations: 227
Gradient evaluations: 19
Iteration: 1, Func. Count: 13, Neg. LLF: 74082107.75769319
Iteration: 2, Func. Count: 26, Neg. LLF: 143.5505744628542
Iteration: 3, Func. Count: 39, Neg. LLF: 127.86518466195832
Iteration: 4, Func. Count: 53, Neg. LLF: 148.36080306466462
Iteration: 5, Func. Count: 66, Neg. LLF: 100.80694575421016
Iteration: 6, Func. Count: 79, Neg. LLF: 83.92306326845767
Iteration: 7, Func. Count: 92, Neg. LLF: 82.31844095063614
Iteration: 8, Func. Count: 104, Neg. LLF: 82.28504265128444
Iteration: 9, Func. Count: 117, Neg. LLF: 95.03767385767432
Iteration: 10, Func. Count: 131, Neg. LLF: 88.46979610221032
Iteration: 11, Func. Count: 144, Neg. LLF: 81.88748646548292
Iteration: 12, Func. Count: 156, Neg. LLF: 82.16110482255557
Iteration: 13, Func. Count: 169, Neg. LLF: 81.87573532120163
Iteration: 14, Func. Count: 182, Neg. LLF: 82.2088182614139
Iteration: 15, Func. Count: 195, Neg. LLF: 81.75527210170434
Iteration: 16, Func. Count: 207, Neg. LLF: 81.74695338724332
Iteration: 17, Func. Count: 219, Neg. LLF: 81.74507141817162
Iteration: 18, Func. Count: 231, Neg. LLF: 81.74444896965841
Iteration: 19, Func. Count: 243, Neg. LLF: 81.74439215573994
Iteration: 20, Func. Count: 255, Neg. LLF: 81.74438711975768
Iteration: 21, Func. Count: 266, Neg. LLF: 81.74438712876159
Optimization terminated successfully (Exit mode 0)
Current function value: 81.74438711975768
Iterations: 21
Function evaluations: 266
Gradient evaluations: 21
Iteration: 1, Func. Count: 14, Neg. LLF: 129453717.60537218
Iteration: 2, Func. Count: 29, Neg. LLF: 3340532.9736450464
Iteration: 3, Func. Count: 43, Neg. LLF: 91.73689721645755
Iteration: 4, Func. Count: 58, Neg. LLF: 117.95602075106837
Iteration: 5, Func. Count: 72, Neg. LLF: 105.49416173041426
Iteration: 6, Func. Count: 86, Neg. LLF: 94.02356901197395
Iteration: 7, Func. Count: 100, Neg. LLF: 82.64535738975971
Iteration: 8, Func. Count: 113, Neg. LLF: 82.73784745469024
Iteration: 9, Func. Count: 128, Neg. LLF: 93.77807809382121
Iteration: 10, Func. Count: 143, Neg. LLF: 82.89254614129743
Iteration: 11, Func. Count: 158, Neg. LLF: 81.86173442590798
Iteration: 12, Func. Count: 171, Neg. LLF: 81.84110375450946
Iteration: 13, Func. Count: 185, Neg. LLF: 81.75673853677439
Iteration: 14, Func. Count: 198, Neg. LLF: 81.74960542457005
Iteration: 15, Func. Count: 211, Neg. LLF: 81.74558108936634
Iteration: 16, Func. Count: 224, Neg. LLF: 81.74470633690684
Iteration: 17, Func. Count: 237, Neg. LLF: 81.74444496556625
Iteration: 18, Func. Count: 250, Neg. LLF: 81.74438787282213
Iteration: 19, Func. Count: 263, Neg. LLF: 81.74438673299193
Iteration: 20, Func. Count: 275, Neg. LLF: 81.74438675410472
Optimization terminated successfully (Exit mode 0)
Current function value: 81.74438673299193
Iterations: 20
Function evaluations: 275
Gradient evaluations: 20
Iteration: 1, Func. Count: 11, Neg. LLF: 102.01211574244282
Iteration: 2, Func. Count: 22, Neg. LLF: 238.94752841510268
Iteration: 3, Func. Count: 34, Neg. LLF: 156925.8924175813
Iteration: 4, Func. Count: 45, Neg. LLF: 1254674.6718245056
Iteration: 5, Func. Count: 56, Neg. LLF: 182613.95916943141
Iteration: 6, Func. Count: 67, Neg. LLF: 3127.61235875593
Iteration: 7, Func. Count: 78, Neg. LLF: 145.02704964235602
Iteration: 8, Func. Count: 89, Neg. LLF: 83.09877740933098
Iteration: 9, Func. Count: 100, Neg. LLF: 246939.05945609577
Iteration: 10, Func. Count: 111, Neg. LLF: 81.59984922790157
Iteration: 11, Func. Count: 122, Neg. LLF: 81.83756704400516
Iteration: 12, Func. Count: 133, Neg. LLF: 82.4253762785004
Iteration: 13, Func. Count: 144, Neg. LLF: 80.90590447163048
Iteration: 14, Func. Count: 154, Neg. LLF: 80.86547707614987
Iteration: 15, Func. Count: 164, Neg. LLF: 80.83587712829737
Iteration: 16, Func. Count: 174, Neg. LLF: 80.82139139123738
Iteration: 17, Func. Count: 184, Neg. LLF: 80.81893562832785
Iteration: 18, Func. Count: 194, Neg. LLF: 80.81834417175415
Iteration: 19, Func. Count: 204, Neg. LLF: 80.81798666968328
Iteration: 20, Func. Count: 214, Neg. LLF: 80.81774364818884
Iteration: 21, Func. Count: 224, Neg. LLF: 80.81774011624805
Iteration: 22, Func. Count: 233, Neg. LLF: 80.8177401157136
Optimization terminated successfully (Exit mode 0)
Current function value: 80.81774011624805
Iterations: 22
Function evaluations: 233
Gradient evaluations: 22
Iteration: 1, Func. Count: 12, Neg. LLF: 124748421.58489224
Iteration: 2, Func. Count: 25, Neg. LLF: 333.9867819179335
Iteration: 3, Func. Count: 39, Neg. LLF: 122.99899716936918
Iteration: 4, Func. Count: 51, Neg. LLF: 120.95688533880924
Iteration: 5, Func. Count: 63, Neg. LLF: 85.98412880901768
Iteration: 6, Func. Count: 75, Neg. LLF: 84.02628452538674
Iteration: 7, Func. Count: 87, Neg. LLF: 83.33215418923534
Iteration: 8, Func. Count: 99, Neg. LLF: 82.5564826315914
Iteration: 9, Func. Count: 111, Neg. LLF: 84.89244371254047
Iteration: 10, Func. Count: 123, Neg. LLF: 80.9788957806868
Iteration: 11, Func. Count: 134, Neg. LLF: 82.62660686309853
Iteration: 12, Func. Count: 146, Neg. LLF: 84.21609752863148
Iteration: 13, Func. Count: 158, Neg. LLF: 80.86108347512854
Iteration: 14, Func. Count: 169, Neg. LLF: 80.84909601635783
Iteration: 15, Func. Count: 180, Neg. LLF: 80.84005889133583
Iteration: 16, Func. Count: 191, Neg. LLF: 80.83628137099514
Iteration: 17, Func. Count: 202, Neg. LLF: 80.82916979362474
Iteration: 18, Func. Count: 213, Neg. LLF: 80.8254257974158
Iteration: 19, Func. Count: 224, Neg. LLF: 80.82282671299673
Iteration: 20, Func. Count: 235, Neg. LLF: 80.82137540189427
Iteration: 21, Func. Count: 246, Neg. LLF: 80.81936990792526
Iteration: 22, Func. Count: 257, Neg. LLF: 80.81807730446339
Iteration: 23, Func. Count: 268, Neg. LLF: 80.81780751033077
Iteration: 24, Func. Count: 279, Neg. LLF: 80.81774082996546
Iteration: 25, Func. Count: 290, Neg. LLF: 80.81774012557817
Optimization terminated successfully (Exit mode 0)
Current function value: 80.81774012557817
Iterations: 25
Function evaluations: 290
Gradient evaluations: 25
Iteration: 1, Func. Count: 13, Neg. LLF: 106.2148487938061
Iteration: 2, Func. Count: 29, Neg. LLF: 571.2555034601601
Iteration: 3, Func. Count: 42, Neg. LLF: 189.66453180650564
Iteration: 4, Func. Count: 55, Neg. LLF: 104.47809406182725
Iteration: 5, Func. Count: 68, Neg. LLF: 95.98126892308389
Iteration: 6, Func. Count: 81, Neg. LLF: 83.56967092396185
Iteration: 7, Func. Count: 94, Neg. LLF: 83.98123050848383
Iteration: 8, Func. Count: 107, Neg. LLF: 85.105281730164
Iteration: 9, Func. Count: 120, Neg. LLF: 85.78799845117187
Iteration: 10, Func. Count: 133, Neg. LLF: 81.2730494603653
Iteration: 11, Func. Count: 145, Neg. LLF: 80.88077701998931
Iteration: 12, Func. Count: 157, Neg. LLF: 80.93219462622957
Iteration: 13, Func. Count: 170, Neg. LLF: 80.83718838059833
Iteration: 14, Func. Count: 182, Neg. LLF: 80.8252478115529
Iteration: 15, Func. Count: 194, Neg. LLF: 80.82186095957421
Iteration: 16, Func. Count: 206, Neg. LLF: 80.81984689648887
Iteration: 17, Func. Count: 218, Neg. LLF: 80.81890462145523
Iteration: 18, Func. Count: 230, Neg. LLF: 80.81778979602146
Iteration: 19, Func. Count: 242, Neg. LLF: 80.81774808734573
Iteration: 20, Func. Count: 254, Neg. LLF: 80.81774039208663
Iteration: 21, Func. Count: 265, Neg. LLF: 80.81774049404602
Optimization terminated successfully (Exit mode 0)
Current function value: 80.81774039208663
Iterations: 21
Function evaluations: 265
Gradient evaluations: 21
Iteration: 1, Func. Count: 14, Neg. LLF: 70670543.8029737
Iteration: 2, Func. Count: 28, Neg. LLF: 117.68866860688782
Iteration: 3, Func. Count: 42, Neg. LLF: 232.82127446828613
Iteration: 4, Func. Count: 57, Neg. LLF: 148.96635196047217
Iteration: 5, Func. Count: 71, Neg. LLF: 92.82348661380203
Iteration: 6, Func. Count: 85, Neg. LLF: 83.95458625331372
Iteration: 7, Func. Count: 99, Neg. LLF: 83.42865843840298
Iteration: 8, Func. Count: 113, Neg. LLF: 82.7748173471211
Iteration: 9, Func. Count: 127, Neg. LLF: 81.76423935384953
Iteration: 10, Func. Count: 141, Neg. LLF: 80.93744925329624
Iteration: 11, Func. Count: 154, Neg. LLF: 80.88179838298328
Iteration: 12, Func. Count: 167, Neg. LLF: 80.83192838438701
Iteration: 13, Func. Count: 180, Neg. LLF: 80.82335730657121
Iteration: 14, Func. Count: 193, Neg. LLF: 80.82362664569558
Iteration: 15, Func. Count: 207, Neg. LLF: 80.81855793516651
Iteration: 16, Func. Count: 220, Neg. LLF: 80.81783345386822
Iteration: 17, Func. Count: 233, Neg. LLF: 80.81774426284292
Iteration: 18, Func. Count: 246, Neg. LLF: 80.81774020595209
Iteration: 19, Func. Count: 258, Neg. LLF: 80.81774026591931
Optimization terminated successfully (Exit mode 0)
Current function value: 80.81774020595209
Iterations: 19
Function evaluations: 258
Gradient evaluations: 19
Iteration: 1, Func. Count: 15, Neg. LLF: 120580633.54722905
Iteration: 2, Func. Count: 30, Neg. LLF: 3878667.145690308
Iteration: 3, Func. Count: 45, Neg. LLF: 92.73395379467563
Iteration: 4, Func. Count: 61, Neg. LLF: 152.82373381161702
Iteration: 5, Func. Count: 76, Neg. LLF: 98.278717620034
Iteration: 6, Func. Count: 91, Neg. LLF: 83.04131424377799
Iteration: 7, Func. Count: 106, Neg. LLF: 83.46401927931062
Iteration: 8, Func. Count: 121, Neg. LLF: 111.42564062019369
Iteration: 9, Func. Count: 137, Neg. LLF: 81.09440814943765
Iteration: 10, Func. Count: 151, Neg. LLF: 85.73990284828815
Iteration: 11, Func. Count: 166, Neg. LLF: 82.42489216214852
Iteration: 12, Func. Count: 181, Neg. LLF: 81.49065780358339
Iteration: 13, Func. Count: 196, Neg. LLF: 80.95268895529742
Iteration: 14, Func. Count: 211, Neg. LLF: 80.85475138920799
Iteration: 15, Func. Count: 225, Neg. LLF: 80.83300138751459
Iteration: 16, Func. Count: 239, Neg. LLF: 80.81866265386034
Iteration: 17, Func. Count: 253, Neg. LLF: 80.81785960327215
Iteration: 18, Func. Count: 267, Neg. LLF: 80.81774840741748
Iteration: 19, Func. Count: 281, Neg. LLF: 80.81774196016421
Iteration: 20, Func. Count: 295, Neg. LLF: 80.81774048774888
Iteration: 21, Func. Count: 308, Neg. LLF: 80.81774051809533
Optimization terminated successfully (Exit mode 0)
Current function value: 80.81774048774888
Iterations: 21
Function evaluations: 308
Gradient evaluations: 21
Iteration: 1, Func. Count: 8, Neg. LLF: 101.99442617466738
Iteration: 2, Func. Count: 17, Neg. LLF: 129.57995435404143
Iteration: 3, Func. Count: 25, Neg. LLF: 237.97116771448037
Iteration: 4, Func. Count: 33, Neg. LLF: 456.431713754619
Iteration: 5, Func. Count: 41, Neg. LLF: 101.09118635118406
Iteration: 6, Func. Count: 49, Neg. LLF: 145.989470578654
Iteration: 7, Func. Count: 57, Neg. LLF: 108.69917065763933
Iteration: 8, Func. Count: 65, Neg. LLF: 110.71113411461295
Iteration: 9, Func. Count: 73, Neg. LLF: 102.48137298551254
Iteration: 10, Func. Count: 81, Neg. LLF: 104.32240644467856
Iteration: 11, Func. Count: 89, Neg. LLF: 102.76354863814954
Iteration: 12, Func. Count: 97, Neg. LLF: 101.71873833497236
Iteration: 13, Func. Count: 105, Neg. LLF: 100.85030656222091
Iteration: 14, Func. Count: 113, Neg. LLF: 98.69328678538972
Iteration: 15, Func. Count: 121, Neg. LLF: 94.25442416515607
Iteration: 16, Func. Count: 129, Neg. LLF: 94.04375097125687
Iteration: 17, Func. Count: 137, Neg. LLF: 86.00381123533928
Iteration: 18, Func. Count: 145, Neg. LLF: 85.66610741520311
Iteration: 19, Func. Count: 152, Neg. LLF: 85.63547281205953
Iteration: 20, Func. Count: 160, Neg. LLF: 85.54922814281514
Iteration: 21, Func. Count: 167, Neg. LLF: 85.50991765367664
Iteration: 22, Func. Count: 174, Neg. LLF: 85.45117275270361
Iteration: 23, Func. Count: 181, Neg. LLF: 85.4145036723079
Iteration: 24, Func. Count: 188, Neg. LLF: 85.41343725931857
Iteration: 25, Func. Count: 195, Neg. LLF: 85.4133241623255
Iteration: 26, Func. Count: 202, Neg. LLF: 85.41332091068583
Iteration: 27, Func. Count: 208, Neg. LLF: 85.41332088258659
Optimization terminated successfully (Exit mode 0)
Current function value: 85.41332091068583
Iterations: 27
Function evaluations: 208
Gradient evaluations: 27
Iteration: 1, Func. Count: 9, Neg. LLF: 15903529.337643418
Iteration: 2, Func. Count: 19, Neg. LLF: 93.55558671205696
Iteration: 3, Func. Count: 28, Neg. LLF: 113.19282424260287
Iteration: 4, Func. Count: 37, Neg. LLF: 87.61183839736866
Iteration: 5, Func. Count: 46, Neg. LLF: 87.38214490841277
Iteration: 6, Func. Count: 55, Neg. LLF: 87.20405396951575
Iteration: 7, Func. Count: 64, Neg. LLF: 101.36990852529233
Iteration: 8, Func. Count: 73, Neg. LLF: 107.37722109263406
Iteration: 9, Func. Count: 82, Neg. LLF: 100.47142918546932
Iteration: 10, Func. Count: 91, Neg. LLF: 87.78006830629661
Iteration: 11, Func. Count: 100, Neg. LLF: 100.63692592175575
Iteration: 12, Func. Count: 109, Neg. LLF: 85.5661103104356
Iteration: 13, Func. Count: 118, Neg. LLF: 85.29490342383527
Iteration: 14, Func. Count: 126, Neg. LLF: 85.28156397815948
Iteration: 15, Func. Count: 134, Neg. LLF: 85.27977654759927
Iteration: 16, Func. Count: 142, Neg. LLF: 85.27786782247087
Iteration: 17, Func. Count: 150, Neg. LLF: 85.27670897736692
Iteration: 18, Func. Count: 158, Neg. LLF: 85.27462084534884
Iteration: 19, Func. Count: 166, Neg. LLF: 85.2737844303519
Iteration: 20, Func. Count: 174, Neg. LLF: 85.27371674149349
Iteration: 21, Func. Count: 182, Neg. LLF: 85.2737114275578
Iteration: 22, Func. Count: 190, Neg. LLF: 85.2737108117204
Optimization terminated successfully (Exit mode 0)
Current function value: 85.2737108117204
Iterations: 22
Function evaluations: 190
Gradient evaluations: 22
Iteration: 1, Func. Count: 10, Neg. LLF: 22387834.207386367
Iteration: 2, Func. Count: 20, Neg. LLF: 1207.2738613795357
Iteration: 3, Func. Count: 31, Neg. LLF: 96.17267701288543
Iteration: 4, Func. Count: 41, Neg. LLF: 145.11566310793722
Iteration: 5, Func. Count: 52, Neg. LLF: 87.51395953631926
Iteration: 6, Func. Count: 62, Neg. LLF: 86.07961841073353
Iteration: 7, Func. Count: 72, Neg. LLF: 85.51203712143135
Iteration: 8, Func. Count: 81, Neg. LLF: 85.58445044031187
Iteration: 9, Func. Count: 91, Neg. LLF: 85.48990555283184
Iteration: 10, Func. Count: 100, Neg. LLF: 85.48652162486857
Iteration: 11, Func. Count: 109, Neg. LLF: 85.4835742746103
Iteration: 12, Func. Count: 118, Neg. LLF: 85.48217969990863
Iteration: 13, Func. Count: 127, Neg. LLF: 85.48212320685981
Iteration: 14, Func. Count: 136, Neg. LLF: 85.48212204845764
Iteration: 15, Func. Count: 144, Neg. LLF: 85.48212204845325
Optimization terminated successfully (Exit mode 0)
Current function value: 85.48212204845764
Iterations: 15
Function evaluations: 144
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 21491659.70664037
Iteration: 2, Func. Count: 22, Neg. LLF: 8770.071206894636
Iteration: 3, Func. Count: 34, Neg. LLF: 95.31284997405317
Iteration: 4, Func. Count: 46, Neg. LLF: 92.4216534061861
Iteration: 5, Func. Count: 57, Neg. LLF: 86.92251737262227
Iteration: 6, Func. Count: 68, Neg. LLF: 85.35205637985167
Iteration: 7, Func. Count: 79, Neg. LLF: 85.34124948877978
Iteration: 8, Func. Count: 90, Neg. LLF: 85.01067335990501
Iteration: 9, Func. Count: 101, Neg. LLF: 85.21633595112914
Iteration: 10, Func. Count: 112, Neg. LLF: 84.79474914318479
Iteration: 11, Func. Count: 123, Neg. LLF: 84.76742240533432
Iteration: 12, Func. Count: 134, Neg. LLF: 84.79160755021736
Iteration: 13, Func. Count: 145, Neg. LLF: 84.63233492797735
Iteration: 14, Func. Count: 155, Neg. LLF: 84.73760710603305
Iteration: 15, Func. Count: 166, Neg. LLF: 84.64873288228866
Iteration: 16, Func. Count: 177, Neg. LLF: 84.62218274937102
Iteration: 17, Func. Count: 187, Neg. LLF: 84.62207862050417
Iteration: 18, Func. Count: 197, Neg. LLF: 84.6220258279549
Iteration: 19, Func. Count: 207, Neg. LLF: 84.62200587663696
Iteration: 20, Func. Count: 217, Neg. LLF: 84.62200104921921
Iteration: 21, Func. Count: 226, Neg. LLF: 84.62200104927811
Optimization terminated successfully (Exit mode 0)
Current function value: 84.62200104921921
Iterations: 21
Function evaluations: 226
Gradient evaluations: 21
Iteration: 1, Func. Count: 12, Neg. LLF: 17987602.474643268
Iteration: 2, Func. Count: 24, Neg. LLF: 340.2821672601216
Iteration: 3, Func. Count: 36, Neg. LLF: 118.9928773685767
Iteration: 4, Func. Count: 48, Neg. LLF: 146.37211045185686
Iteration: 5, Func. Count: 60, Neg. LLF: 91.40014681326537
Iteration: 6, Func. Count: 72, Neg. LLF: 94.68047487344101
Iteration: 7, Func. Count: 84, Neg. LLF: 85.18543462673638
Iteration: 8, Func. Count: 96, Neg. LLF: 93.19701960136142
Iteration: 9, Func. Count: 108, Neg. LLF: 85.12078029041497
Iteration: 10, Func. Count: 120, Neg. LLF: 85.63332095101889
Iteration: 11, Func. Count: 132, Neg. LLF: 85.26057087930701
Iteration: 12, Func. Count: 144, Neg. LLF: 84.74278084088749
Iteration: 13, Func. Count: 156, Neg. LLF: 84.76998515258511
Iteration: 14, Func. Count: 168, Neg. LLF: 84.66728625489642
Iteration: 15, Func. Count: 180, Neg. LLF: 87.45299027381448
Iteration: 16, Func. Count: 193, Neg. LLF: 84.62698314119952
Iteration: 17, Func. Count: 204, Neg. LLF: 84.62265687929745
Iteration: 18, Func. Count: 215, Neg. LLF: 84.62214024074783
Iteration: 19, Func. Count: 226, Neg. LLF: 84.62205427455046
Iteration: 20, Func. Count: 237, Neg. LLF: 84.62201596057317
Iteration: 21, Func. Count: 248, Neg. LLF: 84.6220011351386
Iteration: 22, Func. Count: 258, Neg. LLF: 84.62200113972777
Optimization terminated successfully (Exit mode 0)
Current function value: 84.6220011351386
Iterations: 22
Function evaluations: 258
Gradient evaluations: 22
Iteration: 1, Func. Count: 9, Neg. LLF: 101.70098895307609
Iteration: 2, Func. Count: 19, Neg. LLF: 128.77296887002348
Iteration: 3, Func. Count: 28, Neg. LLF: 311.6512303388102
Iteration: 4, Func. Count: 37, Neg. LLF: 234.4615940354331
Iteration: 5, Func. Count: 46, Neg. LLF: 103.59338308180321
Iteration: 6, Func. Count: 55, Neg. LLF: 2683.2145319184133
Iteration: 7, Func. Count: 64, Neg. LLF: 123.67320916595234
Iteration: 8, Func. Count: 73, Neg. LLF: 97.59197152576758
Iteration: 9, Func. Count: 82, Neg. LLF: 95.3380727824468
Iteration: 10, Func. Count: 91, Neg. LLF: 97.79995700590774
Iteration: 11, Func. Count: 100, Neg. LLF: 99.74868962369595
Iteration: 12, Func. Count: 109, Neg. LLF: 113.71734022958485
Iteration: 13, Func. Count: 118, Neg. LLF: 94.76661980463112
Iteration: 14, Func. Count: 127, Neg. LLF: 106.93911382172391
Iteration: 15, Func. Count: 136, Neg. LLF: 97.41634892599332
Iteration: 16, Func. Count: 145, Neg. LLF: 85.45991446468788
Iteration: 17, Func. Count: 154, Neg. LLF: 85.08196600366587
Iteration: 18, Func. Count: 163, Neg. LLF: 84.7593713649149
Iteration: 19, Func. Count: 171, Neg. LLF: 86.43991774694834
Iteration: 20, Func. Count: 181, Neg. LLF: 84.6481115087266
Iteration: 21, Func. Count: 189, Neg. LLF: 84.6166767816814
Iteration: 22, Func. Count: 197, Neg. LLF: 84.59305958255183
Iteration: 23, Func. Count: 205, Neg. LLF: 84.59091188945092
Iteration: 24, Func. Count: 213, Neg. LLF: 84.58901087204504
Iteration: 25, Func. Count: 221, Neg. LLF: 84.5889279984587
Iteration: 26, Func. Count: 229, Neg. LLF: 84.58883573930788
Iteration: 27, Func. Count: 237, Neg. LLF: 84.58883418467164
Iteration: 28, Func. Count: 244, Neg. LLF: 84.58883417124198
Optimization terminated successfully (Exit mode 0)
Current function value: 84.58883418467164
Iterations: 28
Function evaluations: 244
Gradient evaluations: 28
Iteration: 1, Func. Count: 10, Neg. LLF: 129587995.37799652
Iteration: 2, Func. Count: 21, Neg. LLF: 138122.03038563288
Iteration: 3, Func. Count: 32, Neg. LLF: 144.3676533169431
Iteration: 4, Func. Count: 42, Neg. LLF: 85.22728433405662
Iteration: 5, Func. Count: 52, Neg. LLF: 93.8498338519387
Iteration: 6, Func. Count: 62, Neg. LLF: 96.94386368569918
Iteration: 7, Func. Count: 72, Neg. LLF: 84.40508663257768
Iteration: 8, Func. Count: 81, Neg. LLF: 84.40531478049212
Iteration: 9, Func. Count: 91, Neg. LLF: 84.38986206789954
Iteration: 10, Func. Count: 100, Neg. LLF: 84.38761542345259
Iteration: 11, Func. Count: 109, Neg. LLF: 84.3874116944365
Iteration: 12, Func. Count: 118, Neg. LLF: 84.38741084812972
Optimization terminated successfully (Exit mode 0)
Current function value: 84.38741084812972
Iterations: 12
Function evaluations: 118
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 29096989.438602116
Iteration: 2, Func. Count: 23, Neg. LLF: 191.40309289229438
Iteration: 3, Func. Count: 35, Neg. LLF: 112.73944500779957
Iteration: 4, Func. Count: 46, Neg. LLF: 100.89851193008192
Iteration: 5, Func. Count: 57, Neg. LLF: 85.50171799001777
Iteration: 6, Func. Count: 67, Neg. LLF: 88.13321866808677
Iteration: 7, Func. Count: 78, Neg. LLF: 88.91868000668258
Iteration: 8, Func. Count: 89, Neg. LLF: 88.11514734524629
Iteration: 9, Func. Count: 100, Neg. LLF: 84.82084234843153
Iteration: 10, Func. Count: 111, Neg. LLF: 84.5866155515534
Iteration: 11, Func. Count: 121, Neg. LLF: 84.5316297912011
Iteration: 12, Func. Count: 131, Neg. LLF: 84.51598763809602
Iteration: 13, Func. Count: 141, Neg. LLF: 84.50668060949235
Iteration: 14, Func. Count: 151, Neg. LLF: 84.50250190921597
Iteration: 15, Func. Count: 161, Neg. LLF: 84.49733374784724
Iteration: 16, Func. Count: 171, Neg. LLF: 84.49701872832453
Iteration: 17, Func. Count: 181, Neg. LLF: 84.49698964239744
Iteration: 18, Func. Count: 191, Neg. LLF: 84.49698906076902
Optimization terminated successfully (Exit mode 0)
Current function value: 84.49698906076902
Iterations: 18
Function evaluations: 191
Gradient evaluations: 18
Iteration: 1, Func. Count: 12, Neg. LLF: 69831965.31639372
Iteration: 2, Func. Count: 25, Neg. LLF: 77434831.00198543
Iteration: 3, Func. Count: 38, Neg. LLF: 104.98649216512796
Iteration: 4, Func. Count: 50, Neg. LLF: 96.03284026042397
Iteration: 5, Func. Count: 63, Neg. LLF: 85.6492276850861
Iteration: 6, Func. Count: 74, Neg. LLF: 88.32200155256297
Iteration: 7, Func. Count: 87, Neg. LLF: 89.96500609770263
Iteration: 8, Func. Count: 100, Neg. LLF: 85.18850802631319
Iteration: 9, Func. Count: 113, Neg. LLF: 99.24827680849052
Iteration: 10, Func. Count: 125, Neg. LLF: 85.13074914804479
Iteration: 11, Func. Count: 137, Neg. LLF: 84.98354490310092
Iteration: 12, Func. Count: 149, Neg. LLF: 84.66553988070065
Iteration: 13, Func. Count: 160, Neg. LLF: 84.92592554095084
Iteration: 14, Func. Count: 172, Neg. LLF: 84.62836005876818
Iteration: 15, Func. Count: 183, Neg. LLF: 84.63714929883606
Iteration: 16, Func. Count: 195, Neg. LLF: 84.61808436035103
Iteration: 17, Func. Count: 206, Neg. LLF: 84.61595098886842
Iteration: 18, Func. Count: 217, Neg. LLF: 84.61558712697624
Iteration: 19, Func. Count: 228, Neg. LLF: 84.61517975074126
Iteration: 20, Func. Count: 239, Neg. LLF: 84.6150205175157
Iteration: 21, Func. Count: 250, Neg. LLF: 84.61500465132757
Iteration: 22, Func. Count: 261, Neg. LLF: 84.61500364898212
Iteration: 23, Func. Count: 271, Neg. LLF: 84.61500364900985
Optimization terminated successfully (Exit mode 0)
Current function value: 84.61500364898212
Iterations: 23
Function evaluations: 271
Gradient evaluations: 23
Iteration: 1, Func. Count: 13, Neg. LLF: 110623792.25306512
Iteration: 2, Func. Count: 27, Neg. LLF: 58102202.14165455
Iteration: 3, Func. Count: 41, Neg. LLF: 105.34484686497244
Iteration: 4, Func. Count: 54, Neg. LLF: 97.29096939085102
Iteration: 5, Func. Count: 68, Neg. LLF: 87.2536052467687
Iteration: 6, Func. Count: 81, Neg. LLF: 85.10525812830308
Iteration: 7, Func. Count: 93, Neg. LLF: 85.5930610278914
Iteration: 8, Func. Count: 107, Neg. LLF: 85.74639445761306
Iteration: 9, Func. Count: 120, Neg. LLF: 84.57547055234893
Iteration: 10, Func. Count: 133, Neg. LLF: 84.19605477058649
Iteration: 11, Func. Count: 145, Neg. LLF: 84.45504320745863
Iteration: 12, Func. Count: 158, Neg. LLF: 84.1398811785083
Iteration: 13, Func. Count: 170, Neg. LLF: 84.13595753846066
Iteration: 14, Func. Count: 182, Neg. LLF: 84.13279326716696
Iteration: 15, Func. Count: 194, Neg. LLF: 84.12408571021153
Iteration: 16, Func. Count: 206, Neg. LLF: 84.06255083765583
Iteration: 17, Func. Count: 218, Neg. LLF: 84.05756439004388
Iteration: 18, Func. Count: 230, Neg. LLF: 84.05097805559814
Iteration: 19, Func. Count: 242, Neg. LLF: 84.04912836372998
Iteration: 20, Func. Count: 254, Neg. LLF: 84.04849686314206
Iteration: 21, Func. Count: 266, Neg. LLF: 84.04843667599874
Iteration: 22, Func. Count: 278, Neg. LLF: 84.04843595499553
Optimization terminated successfully (Exit mode 0)
Current function value: 84.04843595499553
Iterations: 22
Function evaluations: 278
Gradient evaluations: 22
Iteration: 1, Func. Count: 10, Neg. LLF: 3156117.6649524486
Iteration: 2, Func. Count: 20, Neg. LLF: 2050.6848174340553
Iteration: 3, Func. Count: 31, Neg. LLF: 10643.134254093278
Iteration: 4, Func. Count: 41, Neg. LLF: 94.1442901720473
Iteration: 5, Func. Count: 51, Neg. LLF: 202.95380545359149
Iteration: 6, Func. Count: 61, Neg. LLF: 143.93936723276028
Iteration: 7, Func. Count: 71, Neg. LLF: 150.88848901301373
Iteration: 8, Func. Count: 81, Neg. LLF: 147.93323775647065
Iteration: 9, Func. Count: 91, Neg. LLF: 156.81903426326815
Iteration: 10, Func. Count: 101, Neg. LLF: 167.83563571819315
Iteration: 11, Func. Count: 111, Neg. LLF: 147.412180361407
Iteration: 12, Func. Count: 121, Neg. LLF: 89.2332106522675
Iteration: 13, Func. Count: 131, Neg. LLF: 117.003100719829
Iteration: 14, Func. Count: 141, Neg. LLF: 95.67853561160118
Iteration: 15, Func. Count: 151, Neg. LLF: 136.90066899079525
Iteration: 16, Func. Count: 161, Neg. LLF: 81.13133984068399
Iteration: 17, Func. Count: 170, Neg. LLF: 82.22177409598527
Iteration: 18, Func. Count: 181, Neg. LLF: 88.52982509449852
Iteration: 19, Func. Count: 191, Neg. LLF: 84.83662908269447
Iteration: 20, Func. Count: 202, Neg. LLF: 80.99331019971221
Iteration: 21, Func. Count: 211, Neg. LLF: 80.93093407862077
Iteration: 22, Func. Count: 220, Neg. LLF: 80.90527855236662
Iteration: 23, Func. Count: 229, Neg. LLF: 80.89092294976497
Iteration: 24, Func. Count: 238, Neg. LLF: 80.88975806097079
Iteration: 25, Func. Count: 247, Neg. LLF: 80.88968281460268
Iteration: 26, Func. Count: 256, Neg. LLF: 80.88968102475154
Iteration: 27, Func. Count: 264, Neg. LLF: 80.88968101587948
Optimization terminated successfully (Exit mode 0)
Current function value: 80.88968102475154
Iterations: 27
Function evaluations: 264
Gradient evaluations: 27
Iteration: 1, Func. Count: 11, Neg. LLF: 148479097.44600502
Iteration: 2, Func. Count: 23, Neg. LLF: 3299736.3502576426
Iteration: 3, Func. Count: 34, Neg. LLF: 101.54373177288825
Iteration: 4, Func. Count: 45, Neg. LLF: 138.85857927623846
Iteration: 5, Func. Count: 56, Neg. LLF: 96.37406297382326
Iteration: 6, Func. Count: 67, Neg. LLF: 109.77087804865633
Iteration: 7, Func. Count: 78, Neg. LLF: 86.32406202273471
Iteration: 8, Func. Count: 89, Neg. LLF: 82.0422545274843
Iteration: 9, Func. Count: 99, Neg. LLF: 81.34683141738927
Iteration: 10, Func. Count: 109, Neg. LLF: 109.14711217870571
Iteration: 11, Func. Count: 122, Neg. LLF: 82.31449339367923
Iteration: 12, Func. Count: 134, Neg. LLF: 81.08607387267391
Iteration: 13, Func. Count: 144, Neg. LLF: 80.97625344905443
Iteration: 14, Func. Count: 154, Neg. LLF: 80.91375581253013
Iteration: 15, Func. Count: 164, Neg. LLF: 80.89696672435993
Iteration: 16, Func. Count: 174, Neg. LLF: 80.89354910551654
Iteration: 17, Func. Count: 184, Neg. LLF: 80.89059304683711
Iteration: 18, Func. Count: 194, Neg. LLF: 80.88978907156934
Iteration: 19, Func. Count: 204, Neg. LLF: 80.88969697963978
Iteration: 20, Func. Count: 214, Neg. LLF: 80.8896828100003
Iteration: 21, Func. Count: 224, Neg. LLF: 80.88968097432867
Iteration: 22, Func. Count: 233, Neg. LLF: 80.88968107854299
Optimization terminated successfully (Exit mode 0)
Current function value: 80.88968097432867
Iterations: 22
Function evaluations: 233
Gradient evaluations: 22
Iteration: 1, Func. Count: 12, Neg. LLF: 31300039.818277977
Iteration: 2, Func. Count: 24, Neg. LLF: 252.52626319407818
Iteration: 3, Func. Count: 37, Neg. LLF: 132.66890742808488
Iteration: 4, Func. Count: 49, Neg. LLF: 166.5833432823096
Iteration: 5, Func. Count: 61, Neg. LLF: 83.93927981653378
Iteration: 6, Func. Count: 73, Neg. LLF: 95.38785673640777
Iteration: 7, Func. Count: 85, Neg. LLF: 87.39669143245247
Iteration: 8, Func. Count: 97, Neg. LLF: 83.57076240539187
Iteration: 9, Func. Count: 109, Neg. LLF: 86.88683604617665
Iteration: 10, Func. Count: 121, Neg. LLF: 81.27859374523813
Iteration: 11, Func. Count: 132, Neg. LLF: 82.53778634083596
Iteration: 12, Func. Count: 144, Neg. LLF: 82.37181594261608
Iteration: 13, Func. Count: 156, Neg. LLF: 81.53715900122026
Iteration: 14, Func. Count: 169, Neg. LLF: 80.9938868480942
Iteration: 15, Func. Count: 181, Neg. LLF: 80.91460976751499
Iteration: 16, Func. Count: 192, Neg. LLF: 80.89749660883524
Iteration: 17, Func. Count: 203, Neg. LLF: 80.90199073448409
Iteration: 18, Func. Count: 215, Neg. LLF: 80.88201751741525
Iteration: 19, Func. Count: 226, Neg. LLF: 80.8780234158338
Iteration: 20, Func. Count: 237, Neg. LLF: 80.87687144370769
Iteration: 21, Func. Count: 248, Neg. LLF: 80.87546039122296
Iteration: 22, Func. Count: 259, Neg. LLF: 80.87497454208612
Iteration: 23, Func. Count: 270, Neg. LLF: 80.87478566442753
Iteration: 24, Func. Count: 281, Neg. LLF: 80.87477415035795
Iteration: 25, Func. Count: 291, Neg. LLF: 80.8747741331391
Optimization terminated successfully (Exit mode 0)
Current function value: 80.87477415035795
Iterations: 25
Function evaluations: 291
Gradient evaluations: 25
Iteration: 1, Func. Count: 13, Neg. LLF: 91383967.28058523
Iteration: 2, Func. Count: 26, Neg. LLF: 4017698.8812373555
Iteration: 3, Func. Count: 39, Neg. LLF: 96.19457045957569
Iteration: 4, Func. Count: 52, Neg. LLF: 93.66028297642579
Iteration: 5, Func. Count: 65, Neg. LLF: 84.15543576356556
Iteration: 6, Func. Count: 78, Neg. LLF: 86.70114862465914
Iteration: 7, Func. Count: 91, Neg. LLF: 104.65222445080714
Iteration: 8, Func. Count: 105, Neg. LLF: 81.13489260466714
Iteration: 9, Func. Count: 117, Neg. LLF: 81.63021135839884
Iteration: 10, Func. Count: 130, Neg. LLF: 211.329816838753
Iteration: 11, Func. Count: 143, Neg. LLF: 81.61834416505697
Iteration: 12, Func. Count: 156, Neg. LLF: 80.90434433439363
Iteration: 13, Func. Count: 168, Neg. LLF: 80.96069065292382
Iteration: 14, Func. Count: 181, Neg. LLF: 80.92446168753617
Iteration: 15, Func. Count: 194, Neg. LLF: 80.87959077481909
Iteration: 16, Func. Count: 206, Neg. LLF: 80.88271415660111
Iteration: 17, Func. Count: 219, Neg. LLF: 80.87544936702332
Iteration: 18, Func. Count: 231, Neg. LLF: 80.87479174783837
Iteration: 19, Func. Count: 243, Neg. LLF: 80.87477624313043
Iteration: 20, Func. Count: 255, Neg. LLF: 80.87477396887874
Iteration: 21, Func. Count: 266, Neg. LLF: 80.87477396000104
Optimization terminated successfully (Exit mode 0)
Current function value: 80.87477396887874
Iterations: 21
Function evaluations: 266
Gradient evaluations: 21
Iteration: 1, Func. Count: 14, Neg. LLF: 127821161.71448112
Iteration: 2, Func. Count: 29, Neg. LLF: 2851176.3073683903
Iteration: 3, Func. Count: 43, Neg. LLF: 105.65247059272392
Iteration: 4, Func. Count: 58, Neg. LLF: 136.95200243733734
Iteration: 5, Func. Count: 72, Neg. LLF: 98.16593228052999
Iteration: 6, Func. Count: 86, Neg. LLF: 81.8828167552716
Iteration: 7, Func. Count: 99, Neg. LLF: 83.76373530093697
Iteration: 8, Func. Count: 114, Neg. LLF: 97.57713892157857
Iteration: 9, Func. Count: 128, Neg. LLF: 82.35962578073118
Iteration: 10, Func. Count: 142, Neg. LLF: 82.12254397328432
Iteration: 11, Func. Count: 156, Neg. LLF: 81.36614144716158
Iteration: 12, Func. Count: 170, Neg. LLF: 81.01654985000782
Iteration: 13, Func. Count: 184, Neg. LLF: 80.95634527502477
Iteration: 14, Func. Count: 198, Neg. LLF: 80.99190442721807
Iteration: 15, Func. Count: 212, Neg. LLF: 80.96811362881343
Iteration: 16, Func. Count: 226, Neg. LLF: 80.9137739751266
Iteration: 17, Func. Count: 240, Neg. LLF: 80.87798339327945
Iteration: 18, Func. Count: 253, Neg. LLF: 80.87658365280957
Iteration: 19, Func. Count: 266, Neg. LLF: 80.87504631004022
Iteration: 20, Func. Count: 279, Neg. LLF: 80.87484316473859
Iteration: 21, Func. Count: 292, Neg. LLF: 80.87477936553364
Iteration: 22, Func. Count: 305, Neg. LLF: 80.87477441714157
Iteration: 23, Func. Count: 318, Neg. LLF: 80.87477378463728
Optimization terminated successfully (Exit mode 0)
Current function value: 80.87477378463728
Iterations: 23
Function evaluations: 318
Gradient evaluations: 23
Iteration: 1, Func. Count: 11, Neg. LLF: 105.06197617070256
Iteration: 2, Func. Count: 22, Neg. LLF: 174683707.01652464
Iteration: 3, Func. Count: 33, Neg. LLF: 1581878.5953913627
Iteration: 4, Func. Count: 45, Neg. LLF: 128.22624600384603
Iteration: 5, Func. Count: 57, Neg. LLF: 94.73982953680843
Iteration: 6, Func. Count: 68, Neg. LLF: 111.52964797649601
Iteration: 7, Func. Count: 79, Neg. LLF: 130.17504590720435
Iteration: 8, Func. Count: 90, Neg. LLF: 102.92272594665533
Iteration: 9, Func. Count: 101, Neg. LLF: 130.1752434041473
Iteration: 10, Func. Count: 112, Neg. LLF: 135.56809122661718
Iteration: 11, Func. Count: 123, Neg. LLF: 82.37755399019355
Iteration: 12, Func. Count: 134, Neg. LLF: 117.95967442570202
Iteration: 13, Func. Count: 145, Neg. LLF: 80.9039233206889
Iteration: 14, Func. Count: 155, Neg. LLF: 80.77660527003482
Iteration: 15, Func. Count: 165, Neg. LLF: 80.74198800132902
Iteration: 16, Func. Count: 175, Neg. LLF: 80.73625518415376
Iteration: 17, Func. Count: 185, Neg. LLF: 80.7264396810799
Iteration: 18, Func. Count: 195, Neg. LLF: 80.72584860603594
Iteration: 19, Func. Count: 205, Neg. LLF: 80.7257116450781
Iteration: 20, Func. Count: 215, Neg. LLF: 80.72570295984627
Iteration: 21, Func. Count: 225, Neg. LLF: 80.72569954213704
Iteration: 22, Func. Count: 235, Neg. LLF: 80.72569836315819
Iteration: 23, Func. Count: 244, Neg. LLF: 80.72569833674162
Optimization terminated successfully (Exit mode 0)
Current function value: 80.72569836315819
Iterations: 23
Function evaluations: 244
Gradient evaluations: 23
Iteration: 1, Func. Count: 12, Neg. LLF: 132528508.5441251
Iteration: 2, Func. Count: 25, Neg. LLF: 4045017.6793733905
Iteration: 3, Func. Count: 37, Neg. LLF: 101.95688353342031
Iteration: 4, Func. Count: 49, Neg. LLF: 97.14319815165412
Iteration: 5, Func. Count: 61, Neg. LLF: 92.17997427643343
Iteration: 6, Func. Count: 75, Neg. LLF: 95.52231896871395
Iteration: 7, Func. Count: 87, Neg. LLF: 81.76939001123495
Iteration: 8, Func. Count: 98, Neg. LLF: 81.63241833326704
Iteration: 9, Func. Count: 109, Neg. LLF: 127.9238595258189
Iteration: 10, Func. Count: 121, Neg. LLF: 81.92280644110515
Iteration: 11, Func. Count: 134, Neg. LLF: 98.66969576863337
Iteration: 12, Func. Count: 146, Neg. LLF: 81.09571319360637
Iteration: 13, Func. Count: 157, Neg. LLF: 80.87543354832121
Iteration: 14, Func. Count: 168, Neg. LLF: 80.80652315287479
Iteration: 15, Func. Count: 179, Neg. LLF: 80.75554272553128
Iteration: 16, Func. Count: 190, Neg. LLF: 80.7389308978178
Iteration: 17, Func. Count: 201, Neg. LLF: 80.72669878168146
Iteration: 18, Func. Count: 212, Neg. LLF: 80.7257345203904
Iteration: 19, Func. Count: 223, Neg. LLF: 80.7256998951702
Iteration: 20, Func. Count: 233, Neg. LLF: 80.72569998536562
Optimization terminated successfully (Exit mode 0)
Current function value: 80.7256998951702
Iterations: 20
Function evaluations: 233
Gradient evaluations: 20
Iteration: 1, Func. Count: 13, Neg. LLF: 25220455.303572573
Iteration: 2, Func. Count: 26, Neg. LLF: 250.20486365262758
Iteration: 3, Func. Count: 40, Neg. LLF: 139.4769953336096
Iteration: 4, Func. Count: 53, Neg. LLF: 108.96372824147215
Iteration: 5, Func. Count: 66, Neg. LLF: 98.53639443783172
Iteration: 6, Func. Count: 79, Neg. LLF: 81.58343285473073
Iteration: 7, Func. Count: 91, Neg. LLF: 83.67890644073657
Iteration: 8, Func. Count: 104, Neg. LLF: 101.0117378137187
Iteration: 9, Func. Count: 120, Neg. LLF: 83.96093689112122
Iteration: 10, Func. Count: 134, Neg. LLF: 80.78790739736738
Iteration: 11, Func. Count: 147, Neg. LLF: 80.70314371606106
Iteration: 12, Func. Count: 159, Neg. LLF: 80.73877415135671
Iteration: 13, Func. Count: 172, Neg. LLF: 80.69127496080807
Iteration: 14, Func. Count: 184, Neg. LLF: 80.68642672502503
Iteration: 15, Func. Count: 196, Neg. LLF: 80.68116650442018
Iteration: 16, Func. Count: 208, Neg. LLF: 80.6801703429524
Iteration: 17, Func. Count: 220, Neg. LLF: 80.67975810748985
Iteration: 18, Func. Count: 232, Neg. LLF: 80.67974690680317
Iteration: 19, Func. Count: 244, Neg. LLF: 80.67974514455211
Iteration: 20, Func. Count: 255, Neg. LLF: 80.67974513083922
Optimization terminated successfully (Exit mode 0)
Current function value: 80.67974514455211
Iterations: 20
Function evaluations: 255
Gradient evaluations: 20
Iteration: 1, Func. Count: 14, Neg. LLF: 73910876.0271233
Iteration: 2, Func. Count: 28, Neg. LLF: 4515728.719272747
Iteration: 3, Func. Count: 42, Neg. LLF: 93.52766198845279
Iteration: 4, Func. Count: 57, Neg. LLF: 93.0731079123446
Iteration: 5, Func. Count: 71, Neg. LLF: 87.30182440901821
Iteration: 6, Func. Count: 85, Neg. LLF: 81.5508080264632
Iteration: 7, Func. Count: 98, Neg. LLF: 106.82579415735292
Iteration: 8, Func. Count: 112, Neg. LLF: 88.2603049384565
Iteration: 9, Func. Count: 127, Neg. LLF: 103.56567862953611
Iteration: 10, Func. Count: 141, Neg. LLF: 84.57225742332746
Iteration: 11, Func. Count: 155, Neg. LLF: 96.55246176848408
Iteration: 12, Func. Count: 169, Neg. LLF: 80.76719639816612
Iteration: 13, Func. Count: 182, Neg. LLF: 82.22992080298546
Iteration: 14, Func. Count: 196, Neg. LLF: 80.822077557748
Iteration: 15, Func. Count: 210, Neg. LLF: 80.69128476129418
Iteration: 16, Func. Count: 223, Neg. LLF: 80.68319651387614
Iteration: 17, Func. Count: 236, Neg. LLF: 80.68080428321915
Iteration: 18, Func. Count: 249, Neg. LLF: 80.67988318803751
Iteration: 19, Func. Count: 262, Neg. LLF: 80.67976119666743
Iteration: 20, Func. Count: 275, Neg. LLF: 80.67975016572012
Iteration: 21, Func. Count: 288, Neg. LLF: 80.67974638079232
Iteration: 22, Func. Count: 301, Neg. LLF: 80.67974507881868
Iteration: 23, Func. Count: 313, Neg. LLF: 80.6797450766343
Optimization terminated successfully (Exit mode 0)
Current function value: 80.67974507881868
Iterations: 23
Function evaluations: 313
Gradient evaluations: 23
Iteration: 1, Func. Count: 15, Neg. LLF: 120527332.20815635
Iteration: 2, Func. Count: 30, Neg. LLF: 4027401.3153480487
Iteration: 3, Func. Count: 45, Neg. LLF: 91.07790136947725
Iteration: 4, Func. Count: 61, Neg. LLF: 114.47423919762976
Iteration: 5, Func. Count: 76, Neg. LLF: 92.23791226277757
Iteration: 6, Func. Count: 91, Neg. LLF: 98.94932804039266
Iteration: 7, Func. Count: 106, Neg. LLF: 81.72384330117545
Iteration: 8, Func. Count: 120, Neg. LLF: 97.32543555744972
Iteration: 9, Func. Count: 135, Neg. LLF: 88.08022927060912
Iteration: 10, Func. Count: 151, Neg. LLF: 83.03717725787199
Iteration: 11, Func. Count: 166, Neg. LLF: 80.97961653172672
Iteration: 12, Func. Count: 180, Neg. LLF: 80.84997575074536
Iteration: 13, Func. Count: 194, Neg. LLF: 83.72329824419197
Iteration: 14, Func. Count: 210, Neg. LLF: 81.09783983926692
Iteration: 15, Func. Count: 225, Neg. LLF: 80.87163807677175
Iteration: 16, Func. Count: 240, Neg. LLF: 80.74460231084586
Iteration: 17, Func. Count: 255, Neg. LLF: 80.68338065979263
Iteration: 18, Func. Count: 269, Neg. LLF: 80.68147677342311
Iteration: 19, Func. Count: 283, Neg. LLF: 80.68012452822713
Iteration: 20, Func. Count: 297, Neg. LLF: 80.67982984710267
Iteration: 21, Func. Count: 311, Neg. LLF: 80.67975496140188
Iteration: 22, Func. Count: 325, Neg. LLF: 80.67974608251723
Iteration: 23, Func. Count: 339, Neg. LLF: 80.67974510020947
Optimization terminated successfully (Exit mode 0)
Current function value: 80.67974510020947
Iterations: 23
Function evaluations: 339
Gradient evaluations: 23
Iteration: 1, Func. Count: 12, Neg. LLF: 116.19788989856845
Iteration: 2, Func. Count: 24, Neg. LLF: 136303442.00315326
Iteration: 3, Func. Count: 36, Neg. LLF: 1788802.0282889863
Iteration: 4, Func. Count: 48, Neg. LLF: 1064962.8115093
Iteration: 5, Func. Count: 60, Neg. LLF: 1148843.9583168318
Iteration: 6, Func. Count: 72, Neg. LLF: 198.51554797409125
Iteration: 7, Func. Count: 84, Neg. LLF: 290.5828196821167
Iteration: 8, Func. Count: 96, Neg. LLF: 204.91786601443167
Iteration: 9, Func. Count: 108, Neg. LLF: 179.17475526156895
Iteration: 10, Func. Count: 120, Neg. LLF: 260.19939563388306
Iteration: 11, Func. Count: 132, Neg. LLF: 133.30367316457438
Iteration: 12, Func. Count: 144, Neg. LLF: 985.8547223372659
Iteration: 13, Func. Count: 156, Neg. LLF: 79.94149435727779
Iteration: 14, Func. Count: 167, Neg. LLF: 79.90493714979019
Iteration: 15, Func. Count: 179, Neg. LLF: 79.87427950773044
Iteration: 16, Func. Count: 191, Neg. LLF: 79.746028552086
Iteration: 17, Func. Count: 202, Neg. LLF: 79.73809276202442
Iteration: 18, Func. Count: 213, Neg. LLF: 79.73754997631552
Iteration: 19, Func. Count: 224, Neg. LLF: 79.73730841386163
Iteration: 20, Func. Count: 235, Neg. LLF: 79.73710455450411
Iteration: 21, Func. Count: 246, Neg. LLF: 79.73696553923587
Iteration: 22, Func. Count: 257, Neg. LLF: 79.7369152836466
Iteration: 23, Func. Count: 268, Neg. LLF: 79.73690792164079
Iteration: 24, Func. Count: 278, Neg. LLF: 79.73690791710588
Optimization terminated successfully (Exit mode 0)
Current function value: 79.73690792164079
Iterations: 24
Function evaluations: 278
Gradient evaluations: 24
Iteration: 1, Func. Count: 13, Neg. LLF: 143283588.02932298
Iteration: 2, Func. Count: 27, Neg. LLF: 104.08811173486001
Iteration: 3, Func. Count: 40, Neg. LLF: 3129058.7047535665
Iteration: 4, Func. Count: 53, Neg. LLF: 131.74239651041634
Iteration: 5, Func. Count: 66, Neg. LLF: 82.43718868882523
Iteration: 6, Func. Count: 78, Neg. LLF: 81.20198362340273
Iteration: 7, Func. Count: 90, Neg. LLF: 105.52727098396056
Iteration: 8, Func. Count: 104, Neg. LLF: 80.95196415497635
Iteration: 9, Func. Count: 117, Neg. LLF: 86.66639857185861
Iteration: 10, Func. Count: 130, Neg. LLF: 80.87635702504699
Iteration: 11, Func. Count: 143, Neg. LLF: 82.5166432692471
Iteration: 12, Func. Count: 156, Neg. LLF: 79.87385719537944
Iteration: 13, Func. Count: 168, Neg. LLF: 79.77842575605364
Iteration: 14, Func. Count: 180, Neg. LLF: 79.7877359255677
Iteration: 15, Func. Count: 193, Neg. LLF: 79.73825986105106
Iteration: 16, Func. Count: 205, Neg. LLF: 79.73746855533983
Iteration: 17, Func. Count: 217, Neg. LLF: 79.73710267684399
Iteration: 18, Func. Count: 229, Neg. LLF: 79.73695234883546
Iteration: 19, Func. Count: 241, Neg. LLF: 79.73690814413342
Iteration: 20, Func. Count: 253, Neg. LLF: 79.73690752025199
Optimization terminated successfully (Exit mode 0)
Current function value: 79.73690752025199
Iterations: 20
Function evaluations: 253
Gradient evaluations: 20
Iteration: 1, Func. Count: 14, Neg. LLF: 29876916.910337143
Iteration: 2, Func. Count: 28, Neg. LLF: 272.99368441991464
Iteration: 3, Func. Count: 43, Neg. LLF: 138.42262342364143
Iteration: 4, Func. Count: 57, Neg. LLF: 104.52211103857594
Iteration: 5, Func. Count: 71, Neg. LLF: 96.06978155540234
Iteration: 6, Func. Count: 85, Neg. LLF: 122.08007415080996
Iteration: 7, Func. Count: 99, Neg. LLF: 81.0027776834392
Iteration: 8, Func. Count: 112, Neg. LLF: 94.01497128881944
Iteration: 9, Func. Count: 126, Neg. LLF: 98.50969938208986
Iteration: 10, Func. Count: 140, Neg. LLF: 80.14064127383199
Iteration: 11, Func. Count: 154, Neg. LLF: 80.02211053731536
Iteration: 12, Func. Count: 168, Neg. LLF: 79.7947577499042
Iteration: 13, Func. Count: 181, Neg. LLF: 79.77626278168283
Iteration: 14, Func. Count: 194, Neg. LLF: 79.75736092984154
Iteration: 15, Func. Count: 207, Neg. LLF: 79.74699584112878
Iteration: 16, Func. Count: 220, Neg. LLF: 79.7418373109051
Iteration: 17, Func. Count: 233, Neg. LLF: 79.73826657063537
Iteration: 18, Func. Count: 246, Neg. LLF: 79.73708152267493
Iteration: 19, Func. Count: 259, Neg. LLF: 79.73693127087195
Iteration: 20, Func. Count: 272, Neg. LLF: 79.73691446054531
Iteration: 21, Func. Count: 285, Neg. LLF: 79.7369107071847
Iteration: 22, Func. Count: 298, Neg. LLF: 79.73690786229092
Iteration: 23, Func. Count: 310, Neg. LLF: 79.73690796780456
Optimization terminated successfully (Exit mode 0)
Current function value: 79.73690786229092
Iterations: 23
Function evaluations: 310
Gradient evaluations: 23
Iteration: 1, Func. Count: 15, Neg. LLF: 71743275.71557178
Iteration: 2, Func. Count: 30, Neg. LLF: 3154389.557432857
Iteration: 3, Func. Count: 45, Neg. LLF: 92.53263550223666
Iteration: 4, Func. Count: 61, Neg. LLF: 93.77228741605096
Iteration: 5, Func. Count: 76, Neg. LLF: 93.47556822361389
Iteration: 6, Func. Count: 91, Neg. LLF: 81.2175084979871
Iteration: 7, Func. Count: 105, Neg. LLF: 93.86329384323464
Iteration: 8, Func. Count: 120, Neg. LLF: 109.98747117422988
Iteration: 9, Func. Count: 135, Neg. LLF: 98.96138542082299
Iteration: 10, Func. Count: 150, Neg. LLF: 82.8565544303932
Iteration: 11, Func. Count: 165, Neg. LLF: 79.83537856705875
Iteration: 12, Func. Count: 179, Neg. LLF: 79.8002633145289
Iteration: 13, Func. Count: 193, Neg. LLF: 94.75745659024338
Iteration: 14, Func. Count: 208, Neg. LLF: 79.7403287294877
Iteration: 15, Func. Count: 222, Neg. LLF: 79.73813624003871
Iteration: 16, Func. Count: 236, Neg. LLF: 79.7373404876357
Iteration: 17, Func. Count: 250, Neg. LLF: 79.73708081876046
Iteration: 18, Func. Count: 264, Neg. LLF: 79.7369797166993
Iteration: 19, Func. Count: 278, Neg. LLF: 79.73693591790447
Iteration: 20, Func. Count: 292, Neg. LLF: 79.73691578753571
Iteration: 21, Func. Count: 306, Neg. LLF: 79.73691058854877
Iteration: 22, Func. Count: 320, Neg. LLF: 79.73690837947325
Iteration: 23, Func. Count: 334, Neg. LLF: 79.73690763033238
Optimization terminated successfully (Exit mode 0)
Current function value: 79.73690763033238
Iterations: 23
Function evaluations: 334
Gradient evaluations: 23
Iteration: 1, Func. Count: 16, Neg. LLF: 113033543.4785603
Iteration: 2, Func. Count: 32, Neg. LLF: 3999281.3695739224
Iteration: 3, Func. Count: 48, Neg. LLF: 90.09903561103886
Iteration: 4, Func. Count: 65, Neg. LLF: 115.03328824840321
Iteration: 5, Func. Count: 81, Neg. LLF: 87.41731107198952
Iteration: 6, Func. Count: 97, Neg. LLF: 85.55285787393811
Iteration: 7, Func. Count: 113, Neg. LLF: 113.81561068167586
Iteration: 8, Func. Count: 129, Neg. LLF: 93.7508378180324
Iteration: 9, Func. Count: 145, Neg. LLF: 80.98470269940015
Iteration: 10, Func. Count: 160, Neg. LLF: 255.91788340127843
Iteration: 11, Func. Count: 176, Neg. LLF: 87.53473455501519
Iteration: 12, Func. Count: 193, Neg. LLF: 81.74005114385743
Iteration: 13, Func. Count: 209, Neg. LLF: 80.1657223541755
Iteration: 14, Func. Count: 225, Neg. LLF: 83.07914503231618
Iteration: 15, Func. Count: 241, Neg. LLF: 79.77437838526349
Iteration: 16, Func. Count: 256, Neg. LLF: 79.76358507986853
Iteration: 17, Func. Count: 271, Neg. LLF: 79.75523809917836
Iteration: 18, Func. Count: 286, Neg. LLF: 79.74135179716015
Iteration: 19, Func. Count: 301, Neg. LLF: 79.73759949450441
Iteration: 20, Func. Count: 316, Neg. LLF: 79.73695764491757
Iteration: 21, Func. Count: 331, Neg. LLF: 79.73691293838294
Iteration: 22, Func. Count: 346, Neg. LLF: 79.73690764289634
Iteration: 23, Func. Count: 360, Neg. LLF: 79.73690785931029
Optimization terminated successfully (Exit mode 0)
Current function value: 79.73690764289634
Iterations: 23
Function evaluations: 360
Gradient evaluations: 23
Iteration: 1, Func. Count: 8, Neg. LLF: 145.0880249027326
Iteration: 2, Func. Count: 18, Neg. LLF: 594698753.4498236
Iteration: 3, Func. Count: 27, Neg. LLF: 88318.78459916927
Iteration: 4, Func. Count: 35, Neg. LLF: 1172508.8049536727
Iteration: 5, Func. Count: 43, Neg. LLF: 1165780.587753578
Iteration: 6, Func. Count: 51, Neg. LLF: 997556.9984518365
Iteration: 7, Func. Count: 59, Neg. LLF: 574442.4443830443
Iteration: 8, Func. Count: 67, Neg. LLF: 759503.8191054382
Iteration: 9, Func. Count: 75, Neg. LLF: 88529.04772611447
Iteration: 10, Func. Count: 83, Neg. LLF: 101823.27448996225
Iteration: 11, Func. Count: 91, Neg. LLF: 82671.50466207156
Iteration: 12, Func. Count: 99, Neg. LLF: 82747.65360783425
Iteration: 13, Func. Count: 107, Neg. LLF: 83679.38254666585
Iteration: 14, Func. Count: 115, Neg. LLF: 82.38531069210208
Iteration: 15, Func. Count: 122, Neg. LLF: 82.83398240382006
Iteration: 16, Func. Count: 130, Neg. LLF: 82.14922468679777
Iteration: 17, Func. Count: 137, Neg. LLF: 82.13026781934272
Iteration: 18, Func. Count: 144, Neg. LLF: 82.10298034754992
Iteration: 19, Func. Count: 151, Neg. LLF: 82.08196774657063
Iteration: 20, Func. Count: 158, Neg. LLF: 82.03095488283303
Iteration: 21, Func. Count: 165, Neg. LLF: 82.01338187345817
Iteration: 22, Func. Count: 172, Neg. LLF: 82.00676555442173
Iteration: 23, Func. Count: 179, Neg. LLF: 82.0055386669319
Iteration: 24, Func. Count: 186, Neg. LLF: 82.00549822367088
Iteration: 25, Func. Count: 193, Neg. LLF: 82.00549447478248
Iteration: 26, Func. Count: 199, Neg. LLF: 82.00549446528395
Optimization terminated successfully (Exit mode 0)
Current function value: 82.00549447478248
Iterations: 26
Function evaluations: 199
Gradient evaluations: 26
Iteration: 1, Func. Count: 5, Neg. LLF: 126.44970061838494
Iteration: 2, Func. Count: 12, Neg. LLF: 99.19470949445298
Iteration: 3, Func. Count: 16, Neg. LLF: 99.37388456351813
Iteration: 4, Func. Count: 21, Neg. LLF: 98.56554769057175
Iteration: 5, Func. Count: 25, Neg. LLF: 98.56045392651158
Iteration: 6, Func. Count: 29, Neg. LLF: 98.56038911906765
Iteration: 7, Func. Count: 33, Neg. LLF: 98.56037747397102
Iteration: 8, Func. Count: 36, Neg. LLF: 98.56037765703772
Optimization terminated successfully (Exit mode 0)
Current function value: 98.56037747397102
Iterations: 8
Function evaluations: 36
Gradient evaluations: 8
Iteration: 1, Func. Count: 6, Neg. LLF: 22132670.207388014
Iteration: 2, Func. Count: 13, Neg. LLF: 99.3526781221039
Iteration: 3, Func. Count: 19, Neg. LLF: 97.87057213783955
Iteration: 4, Func. Count: 25, Neg. LLF: 97.08348178910293
Iteration: 5, Func. Count: 31, Neg. LLF: 96.21358305292344
Iteration: 6, Func. Count: 36, Neg. LLF: 95.77896478187795
Iteration: 7, Func. Count: 41, Neg. LLF: 95.75420187937404
Iteration: 8, Func. Count: 47, Neg. LLF: 95.58583083502698
Iteration: 9, Func. Count: 52, Neg. LLF: 95.58581630060047
Iteration: 10, Func. Count: 57, Neg. LLF: 95.58581436421899
Iteration: 11, Func. Count: 62, Neg. LLF: 95.5858080429143
Optimization terminated successfully (Exit mode 0)
Current function value: 95.5858080429143
Iterations: 11
Function evaluations: 62
Gradient evaluations: 11
Iteration: 1, Func. Count: 7, Neg. LLF: 21968985.68426631
Iteration: 2, Func. Count: 15, Neg. LLF: 97.46933182422474
Iteration: 3, Func. Count: 22, Neg. LLF: 96.37033473652228
Iteration: 4, Func. Count: 28, Neg. LLF: 108.82196080094593
Iteration: 5, Func. Count: 36, Neg. LLF: 95.74510109572924
Iteration: 6, Func. Count: 42, Neg. LLF: 95.54610826337927
Iteration: 7, Func. Count: 48, Neg. LLF: 95.5417330202066
Iteration: 8, Func. Count: 54, Neg. LLF: 95.54169469574741
Iteration: 9, Func. Count: 59, Neg. LLF: 95.54169469609948
Optimization terminated successfully (Exit mode 0)
Current function value: 95.54169469574741
Iterations: 9
Function evaluations: 59
Gradient evaluations: 9
Iteration: 1, Func. Count: 8, Neg. LLF: 21969115.78479511
Iteration: 2, Func. Count: 17, Neg. LLF: 98.2289672777076
Iteration: 3, Func. Count: 25, Neg. LLF: 96.23020463827876
Iteration: 4, Func. Count: 32, Neg. LLF: 96.50194729889687
Iteration: 5, Func. Count: 40, Neg. LLF: 97.86703893812884
Iteration: 6, Func. Count: 48, Neg. LLF: 95.71884165298187
Iteration: 7, Func. Count: 55, Neg. LLF: 95.66608376618132
Iteration: 8, Func. Count: 62, Neg. LLF: 95.65437632493655
Iteration: 9, Func. Count: 69, Neg. LLF: 95.65132410279456
Iteration: 10, Func. Count: 76, Neg. LLF: 95.6099182733384
Iteration: 11, Func. Count: 83, Neg. LLF: 95.59595037003248
Iteration: 12, Func. Count: 90, Neg. LLF: 95.58595367901788
Iteration: 13, Func. Count: 97, Neg. LLF: 95.58580668139686
Iteration: 14, Func. Count: 104, Neg. LLF: 95.58580479625753
Iteration: 15, Func. Count: 110, Neg. LLF: 95.58580480022837
Optimization terminated successfully (Exit mode 0)
Current function value: 95.58580479625753
Iterations: 15
Function evaluations: 110
Gradient evaluations: 15
Iteration: 1, Func. Count: 9, Neg. LLF: 21943215.78140096
Iteration: 2, Func. Count: 19, Neg. LLF: 99.12993363982126
Iteration: 3, Func. Count: 28, Neg. LLF: 95.87900281044791
Iteration: 4, Func. Count: 36, Neg. LLF: 95.78753564174927
Iteration: 5, Func. Count: 44, Neg. LLF: 95.8217716769194
Iteration: 6, Func. Count: 53, Neg. LLF: 95.66822214509178
Iteration: 7, Func. Count: 61, Neg. LLF: 95.65558441322666
Iteration: 8, Func. Count: 69, Neg. LLF: 95.65359092479665
Iteration: 9, Func. Count: 77, Neg. LLF: 95.65357850955428
Iteration: 10, Func. Count: 84, Neg. LLF: 95.65357850959185
Optimization terminated successfully (Exit mode 0)
Current function value: 95.65357850955428
Iterations: 10
Function evaluations: 84
Gradient evaluations: 10
Iteration: 1, Func. Count: 6, Neg. LLF: 126.44898530654673
Iteration: 2, Func. Count: 14, Neg. LLF: 99.27679662185209
Iteration: 3, Func. Count: 19, Neg. LLF: 98.69849163081614
Iteration: 4, Func. Count: 24, Neg. LLF: 98.59324481697028
Iteration: 5, Func. Count: 29, Neg. LLF: 98.56164075938953
Iteration: 6, Func. Count: 34, Neg. LLF: 98.5604169154864
Iteration: 7, Func. Count: 39, Neg. LLF: 98.56037794979282
Iteration: 8, Func. Count: 44, Neg. LLF: 98.56037747901199
Optimization terminated successfully (Exit mode 0)
Current function value: 98.56037747901199
Iterations: 8
Function evaluations: 44
Gradient evaluations: 8
Iteration: 1, Func. Count: 7, Neg. LLF: 22049615.282321293
Iteration: 2, Func. Count: 15, Neg. LLF: 99.41142566690888
Iteration: 3, Func. Count: 22, Neg. LLF: 97.53876156938033
Iteration: 4, Func. Count: 29, Neg. LLF: 102.59462887265066
Iteration: 5, Func. Count: 36, Neg. LLF: 96.13960029006712
Iteration: 6, Func. Count: 42, Neg. LLF: 95.63055107417978
Iteration: 7, Func. Count: 48, Neg. LLF: 95.6136892803413
Iteration: 8, Func. Count: 54, Neg. LLF: 95.58891509272195
Iteration: 9, Func. Count: 60, Neg. LLF: 95.58599332211969
Iteration: 10, Func. Count: 66, Neg. LLF: 95.58580539796387
Iteration: 11, Func. Count: 72, Neg. LLF: 97.72047795269661
Optimization terminated successfully (Exit mode 0)
Current function value: 95.58580539270683
Iterations: 12
Function evaluations: 77
Gradient evaluations: 11
Iteration: 1, Func. Count: 8, Neg. LLF: 21971721.91533664
Iteration: 2, Func. Count: 17, Neg. LLF: 97.63562741099052
Iteration: 3, Func. Count: 25, Neg. LLF: 96.25659644174276
Iteration: 4, Func. Count: 32, Neg. LLF: 99.8494823652935
Iteration: 5, Func. Count: 40, Neg. LLF: 96.00698490941149
Iteration: 6, Func. Count: 48, Neg. LLF: 95.54185774579582
Iteration: 7, Func. Count: 55, Neg. LLF: 95.54169478910016
Iteration: 8, Func. Count: 61, Neg. LLF: 95.54169478888726
Optimization terminated successfully (Exit mode 0)
Current function value: 95.54169478910016
Iterations: 8
Function evaluations: 61
Gradient evaluations: 8
Iteration: 1, Func. Count: 9, Neg. LLF: 21957387.726656336
Iteration: 2, Func. Count: 19, Neg. LLF: 98.24807627570124
Iteration: 3, Func. Count: 28, Neg. LLF: 96.34955115930119
Iteration: 4, Func. Count: 36, Neg. LLF: 95.77421706416261
Iteration: 5, Func. Count: 44, Neg. LLF: 96.67181153907897
Iteration: 6, Func. Count: 53, Neg. LLF: 95.86426896262078
Iteration: 7, Func. Count: 62, Neg. LLF: 95.66184945459385
Iteration: 8, Func. Count: 70, Neg. LLF: 95.65882268449921
Iteration: 9, Func. Count: 78, Neg. LLF: 95.65541962320242
Iteration: 10, Func. Count: 86, Neg. LLF: 95.64511727053366
Iteration: 11, Func. Count: 94, Neg. LLF: 95.59441003419118
Iteration: 12, Func. Count: 102, Neg. LLF: 95.59815443839774
Iteration: 13, Func. Count: 111, Neg. LLF: 95.58590679667599
Iteration: 14, Func. Count: 119, Neg. LLF: 95.58582577765108
Iteration: 15, Func. Count: 127, Neg. LLF: 95.58582069778976
Iteration: 16, Func. Count: 135, Neg. LLF: 95.58581127658167
Iteration: 17, Func. Count: 143, Neg. LLF: 10225110.231811106
Iteration: 18, Func. Count: 155, Neg. LLF: 95.58580479116816
Optimization terminated successfully (Exit mode 0)
Current function value: 95.5858047872543
Iterations: 19
Function evaluations: 155
Gradient evaluations: 18
Iteration: 1, Func. Count: 10, Neg. LLF: 21937299.550043043
Iteration: 2, Func. Count: 21, Neg. LLF: 99.16685729932811
Iteration: 3, Func. Count: 31, Neg. LLF: 95.86719952116174
Iteration: 4, Func. Count: 40, Neg. LLF: 96.00966538668072
Iteration: 5, Func. Count: 50, Neg. LLF: 95.7586848623303
Iteration: 6, Func. Count: 60, Neg. LLF: 95.67421037009176
Iteration: 7, Func. Count: 69, Neg. LLF: 95.65943343459953
Iteration: 8, Func. Count: 78, Neg. LLF: 95.65484160444535
Iteration: 9, Func. Count: 87, Neg. LLF: 95.65363436402185
Iteration: 10, Func. Count: 96, Neg. LLF: 95.6535785503527
Iteration: 11, Func. Count: 104, Neg. LLF: 95.6535785502975
Optimization terminated successfully (Exit mode 0)
Current function value: 95.6535785503527
Iterations: 11
Function evaluations: 104
Gradient evaluations: 11
Iteration: 1, Func. Count: 7, Neg. LLF: 127.74721609019488
Iteration: 2, Func. Count: 16, Neg. LLF: 47629387.77071406
Iteration: 3, Func. Count: 23, Neg. LLF: 4494130.618580089
Iteration: 4, Func. Count: 30, Neg. LLF: 3928174.5758488737
Iteration: 5, Func. Count: 37, Neg. LLF: 3945108.1147645093
Iteration: 6, Func. Count: 44, Neg. LLF: 3568720.1187205985
Iteration: 7, Func. Count: 51, Neg. LLF: 4478119.625608771
Iteration: 8, Func. Count: 58, Neg. LLF: 138.8216042625166
Iteration: 9, Func. Count: 65, Neg. LLF: 94.39859779457717
Iteration: 10, Func. Count: 72, Neg. LLF: 91.33437830045693
Iteration: 11, Func. Count: 78, Neg. LLF: 91.11458498954121
Iteration: 12, Func. Count: 84, Neg. LLF: 90.82839070941712
Iteration: 13, Func. Count: 90, Neg. LLF: 90.79648918517078
Iteration: 14, Func. Count: 96, Neg. LLF: 90.78467536901104
Iteration: 15, Func. Count: 102, Neg. LLF: 90.78115284212849
Iteration: 16, Func. Count: 108, Neg. LLF: 90.78045505425035
Iteration: 17, Func. Count: 114, Neg. LLF: 90.78040997419285
Iteration: 18, Func. Count: 120, Neg. LLF: 90.78040857789499
Iteration: 19, Func. Count: 125, Neg. LLF: 90.78040858113975
Optimization terminated successfully (Exit mode 0)
Current function value: 90.78040857789499
Iterations: 19
Function evaluations: 125
Gradient evaluations: 19
Iteration: 1, Func. Count: 8, Neg. LLF: 21972107.706691742
Iteration: 2, Func. Count: 17, Neg. LLF: 99.51429251568534
Iteration: 3, Func. Count: 25, Neg. LLF: 97.61240014604442
Iteration: 4, Func. Count: 33, Neg. LLF: 100.27283340216012
Iteration: 5, Func. Count: 41, Neg. LLF: 95.87977977478273
Iteration: 6, Func. Count: 48, Neg. LLF: 95.7835092655449
Iteration: 7, Func. Count: 55, Neg. LLF: 95.59543811408265
Iteration: 8, Func. Count: 62, Neg. LLF: 95.62029147301753
Iteration: 9, Func. Count: 70, Neg. LLF: 95.62475529369225
Optimization terminated successfully (Exit mode 0)
Current function value: 95.59277265283242
Iterations: 9
Function evaluations: 73
Gradient evaluations: 9
Iteration: 1, Func. Count: 9, Neg. LLF: 21907509.896298025
Iteration: 2, Func. Count: 19, Neg. LLF: 97.9150466862684
Iteration: 3, Func. Count: 28, Neg. LLF: 96.32893013201162
Iteration: 4, Func. Count: 36, Neg. LLF: 97.38241754529443
Iteration: 5, Func. Count: 45, Neg. LLF: 96.14449298168802
Iteration: 6, Func. Count: 54, Neg. LLF: 95.54179993653865
Iteration: 7, Func. Count: 62, Neg. LLF: 95.54169464771118
Iteration: 8, Func. Count: 69, Neg. LLF: 95.54169464748628
Optimization terminated successfully (Exit mode 0)
Current function value: 95.54169464771118
Iterations: 8
Function evaluations: 69
Gradient evaluations: 8
Iteration: 1, Func. Count: 10, Neg. LLF: 21896822.64602874
Iteration: 2, Func. Count: 21, Neg. LLF: 98.63256591779803
Iteration: 3, Func. Count: 31, Neg. LLF: 96.28253620400595
Iteration: 4, Func. Count: 40, Neg. LLF: 96.25958370793062
Iteration: 5, Func. Count: 50, Neg. LLF: 104.79131227236394
Iteration: 6, Func. Count: 61, Neg. LLF: 96.15327005457797
Iteration: 7, Func. Count: 71, Neg. LLF: 95.73849850019924
Iteration: 8, Func. Count: 80, Neg. LLF: 95.78665998185947
Iteration: 9, Func. Count: 90, Neg. LLF: 95.70507011670016
Iteration: 10, Func. Count: 99, Neg. LLF: 95.69990403037517
Iteration: 11, Func. Count: 108, Neg. LLF: 95.69395103884575
Iteration: 12, Func. Count: 117, Neg. LLF: 95.69112158466503
Iteration: 13, Func. Count: 126, Neg. LLF: 95.69100988218375
Iteration: 14, Func. Count: 135, Neg. LLF: 95.69100753307296
Iteration: 15, Func. Count: 143, Neg. LLF: 95.6910075331464
Optimization terminated successfully (Exit mode 0)
Current function value: 95.69100753307296
Iterations: 15
Function evaluations: 143
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 21886757.10247776
Iteration: 2, Func. Count: 23, Neg. LLF: 99.49799932052228
Iteration: 3, Func. Count: 34, Neg. LLF: 95.87105312724745
Iteration: 4, Func. Count: 44, Neg. LLF: 96.00177348296044
Iteration: 5, Func. Count: 55, Neg. LLF: 95.72684079725248
Iteration: 6, Func. Count: 65, Neg. LLF: 95.6621171863704
Iteration: 7, Func. Count: 75, Neg. LLF: 96.7445442549525
Iteration: 8, Func. Count: 87, Neg. LLF: 95.66156943387814
Iteration: 9, Func. Count: 98, Neg. LLF: 95.65489375684686
Iteration: 10, Func. Count: 108, Neg. LLF: 95.65368424041831
Iteration: 11, Func. Count: 118, Neg. LLF: 95.65357955297253
Iteration: 12, Func. Count: 128, Neg. LLF: 95.6535784906317
Iteration: 13, Func. Count: 137, Neg. LLF: 95.65357849057376
Optimization terminated successfully (Exit mode 0)
Current function value: 95.6535784906317
Iterations: 13
Function evaluations: 137
Gradient evaluations: 13
Iteration: 1, Func. Count: 8, Neg. LLF: 125.90262844591433
Iteration: 2, Func. Count: 18, Neg. LLF: 22430479.70447772
Iteration: 3, Func. Count: 26, Neg. LLF: 4475223.987891609
Iteration: 4, Func. Count: 34, Neg. LLF: 4491607.231537856
Iteration: 5, Func. Count: 42, Neg. LLF: 4457594.821899826
Iteration: 6, Func. Count: 50, Neg. LLF: 1049990.4930327462
Iteration: 7, Func. Count: 58, Neg. LLF: 4516118.440206117
Iteration: 8, Func. Count: 66, Neg. LLF: 282.02535559162067
Iteration: 9, Func. Count: 74, Neg. LLF: 94.28301557266653
Iteration: 10, Func. Count: 82, Neg. LLF: 91.37238608247947
Iteration: 11, Func. Count: 89, Neg. LLF: 91.20205603593021
Iteration: 12, Func. Count: 96, Neg. LLF: 91.15557946816295
Iteration: 13, Func. Count: 103, Neg. LLF: 91.08587005374483
Iteration: 14, Func. Count: 110, Neg. LLF: 90.99451224125133
Iteration: 15, Func. Count: 117, Neg. LLF: 90.83984932367896
Iteration: 16, Func. Count: 124, Neg. LLF: 90.78641703953328
Iteration: 17, Func. Count: 131, Neg. LLF: 90.78041218854044
Iteration: 18, Func. Count: 138, Neg. LLF: 90.78040863581126
Iteration: 19, Func. Count: 144, Neg. LLF: 90.78040896276907
Optimization terminated successfully (Exit mode 0)
Current function value: 90.78040863581126
Iterations: 19
Function evaluations: 144
Gradient evaluations: 19
Iteration: 1, Func. Count: 9, Neg. LLF: 21978104.336880777
Iteration: 2, Func. Count: 19, Neg. LLF: 99.56994959186873
Iteration: 3, Func. Count: 28, Neg. LLF: 97.66637754108083
Iteration: 4, Func. Count: 37, Neg. LLF: 99.87822783746222
Iteration: 5, Func. Count: 46, Neg. LLF: 95.81139588984226
Iteration: 6, Func. Count: 54, Neg. LLF: 97.97989556913305
Iteration: 7, Func. Count: 63, Neg. LLF: 95.5860446263558
Iteration: 8, Func. Count: 71, Neg. LLF: 95.58580963619298
Iteration: 9, Func. Count: 79, Neg. LLF: 136.4401853622593
Optimization terminated successfully (Exit mode 0)
Current function value: 95.58580958183663
Iterations: 10
Function evaluations: 84
Gradient evaluations: 9
Iteration: 1, Func. Count: 10, Neg. LLF: 21917548.253603533
Iteration: 2, Func. Count: 21, Neg. LLF: 97.89368884376213
Iteration: 3, Func. Count: 31, Neg. LLF: 96.32617515920315
Iteration: 4, Func. Count: 40, Neg. LLF: 97.21299718119052
Iteration: 5, Func. Count: 50, Neg. LLF: 96.14390868728775
Iteration: 6, Func. Count: 60, Neg. LLF: 95.54179138247179
Iteration: 7, Func. Count: 69, Neg. LLF: 95.54169464456716
Iteration: 8, Func. Count: 77, Neg. LLF: 95.54169464436069
Optimization terminated successfully (Exit mode 0)
Current function value: 95.54169464456716
Iterations: 8
Function evaluations: 77
Gradient evaluations: 8
Iteration: 1, Func. Count: 11, Neg. LLF: 21905171.575134963
Iteration: 2, Func. Count: 23, Neg. LLF: 98.56743303283159
Iteration: 3, Func. Count: 34, Neg. LLF: 96.2834605401996
Iteration: 4, Func. Count: 44, Neg. LLF: 96.30340931845069
Iteration: 5, Func. Count: 55, Neg. LLF: 105.49002877684386
Iteration: 6, Func. Count: 67, Neg. LLF: 96.16974993866212
Iteration: 7, Func. Count: 78, Neg. LLF: 95.73623072498224
Iteration: 8, Func. Count: 88, Neg. LLF: 95.7579561165884
Iteration: 9, Func. Count: 99, Neg. LLF: 95.70072931768108
Iteration: 10, Func. Count: 109, Neg. LLF: 95.69649504490266
Iteration: 11, Func. Count: 119, Neg. LLF: 95.69333946167572
Iteration: 12, Func. Count: 129, Neg. LLF: 95.69110603556696
Iteration: 13, Func. Count: 139, Neg. LLF: 95.69100969969458
Iteration: 14, Func. Count: 149, Neg. LLF: 95.69100753108923
Iteration: 15, Func. Count: 158, Neg. LLF: 95.69100753119162
Optimization terminated successfully (Exit mode 0)
Current function value: 95.69100753108923
Iterations: 15
Function evaluations: 158
Gradient evaluations: 15
Iteration: 1, Func. Count: 12, Neg. LLF: 21898401.084235065
Iteration: 2, Func. Count: 25, Neg. LLF: 99.39616172876445
Iteration: 3, Func. Count: 37, Neg. LLF: 95.87758985465196
Iteration: 4, Func. Count: 48, Neg. LLF: 95.90492932360105
Iteration: 5, Func. Count: 60, Neg. LLF: 96.61284069889467
Iteration: 6, Func. Count: 72, Neg. LLF: 95.70135845240702
Iteration: 7, Func. Count: 83, Neg. LLF: 95.68972066427457
Iteration: 8, Func. Count: 94, Neg. LLF: 95.67941389740879
Iteration: 9, Func. Count: 105, Neg. LLF: 96.09439530911105
Iteration: 10, Func. Count: 117, Neg. LLF: 95.72428597003024
Iteration: 11, Func. Count: 129, Neg. LLF: 95.65999938340255
Iteration: 12, Func. Count: 140, Neg. LLF: 95.65427589937357
Iteration: 13, Func. Count: 151, Neg. LLF: 95.6537447651237
Iteration: 14, Func. Count: 162, Neg. LLF: 95.6536112561481
Iteration: 15, Func. Count: 173, Neg. LLF: 95.65358238234846
Iteration: 16, Func. Count: 184, Neg. LLF: 95.65357863670008
Iteration: 17, Func. Count: 194, Neg. LLF: 95.65357863678562
Optimization terminated successfully (Exit mode 0)
Current function value: 95.65357863670008
Iterations: 17
Function evaluations: 194
Gradient evaluations: 17
Iteration: 1, Func. Count: 5, Neg. LLF: 156.11324705571252
Iteration: 2, Func. Count: 12, Neg. LLF: 143.31957315611024
Iteration: 3, Func. Count: 18, Neg. LLF: 98.63912137887573
Iteration: 4, Func. Count: 22, Neg. LLF: 98.56720686783743
Iteration: 5, Func. Count: 26, Neg. LLF: 98.5607228307723
Iteration: 6, Func. Count: 30, Neg. LLF: 98.56049619089316
Iteration: 7, Func. Count: 34, Neg. LLF: 98.56039179051477
Iteration: 8, Func. Count: 38, Neg. LLF: 98.56037818611583
Iteration: 9, Func. Count: 42, Neg. LLF: 98.56037747587295
Optimization terminated successfully (Exit mode 0)
Current function value: 98.56037747587295
Iterations: 9
Function evaluations: 42
Gradient evaluations: 9
Iteration: 1, Func. Count: 6, Neg. LLF: 21861988.448084157
Iteration: 2, Func. Count: 13, Neg. LLF: 99.01811606272905
Iteration: 3, Func. Count: 19, Neg. LLF: 97.18560401729387
Iteration: 4, Func. Count: 24, Neg. LLF: 154.32038813764333
Iteration: 5, Func. Count: 31, Neg. LLF: 132.15799456558324
Iteration: 6, Func. Count: 38, Neg. LLF: 95.59032310126085
Iteration: 7, Func. Count: 43, Neg. LLF: 95.58586383579657
Iteration: 8, Func. Count: 48, Neg. LLF: 95.58580653141415
Iteration: 9, Func. Count: 53, Neg. LLF: 95.58580478771685
Iteration: 10, Func. Count: 57, Neg. LLF: 95.58580478768022
Optimization terminated successfully (Exit mode 0)
Current function value: 95.58580478771685
Iterations: 10
Function evaluations: 57
Gradient evaluations: 10
Iteration: 1, Func. Count: 7, Neg. LLF: 21896376.667086177
Iteration: 2, Func. Count: 15, Neg. LLF: 97.03650105014555
Iteration: 3, Func. Count: 21, Neg. LLF: 96.75741995979743
Iteration: 4, Func. Count: 28, Neg. LLF: 108.02440113566927
Iteration: 5, Func. Count: 35, Neg. LLF: 95.60855585949082
Iteration: 6, Func. Count: 41, Neg. LLF: 95.55538616698504
Iteration: 7, Func. Count: 47, Neg. LLF: 95.5418947398847
Iteration: 8, Func. Count: 53, Neg. LLF: 95.54169470143918
Iteration: 9, Func. Count: 58, Neg. LLF: 95.54169470109528
Optimization terminated successfully (Exit mode 0)
Current function value: 95.54169470143918
Iterations: 9
Function evaluations: 58
Gradient evaluations: 9
Iteration: 1, Func. Count: 8, Neg. LLF: 21894090.053555496
Iteration: 2, Func. Count: 17, Neg. LLF: 97.13114267802206
Iteration: 3, Func. Count: 25, Neg. LLF: 96.33559317550126
Iteration: 4, Func. Count: 32, Neg. LLF: 96.78521167696024
Iteration: 5, Func. Count: 40, Neg. LLF: 96.14891347649802
Iteration: 6, Func. Count: 48, Neg. LLF: 95.73853326710903
Iteration: 7, Func. Count: 55, Neg. LLF: 95.66070182319396
Iteration: 8, Func. Count: 62, Neg. LLF: 95.65439326726296
Iteration: 9, Func. Count: 69, Neg. LLF: 95.64249429947904
Iteration: 10, Func. Count: 76, Neg. LLF: 95.60571445154501
Iteration: 11, Func. Count: 83, Neg. LLF: 95.60189027394242
Iteration: 12, Func. Count: 90, Neg. LLF: 95.59001329318933
Iteration: 13, Func. Count: 97, Neg. LLF: 95.58814517796935
Iteration: 14, Func. Count: 104, Neg. LLF: 95.58583120008386
Iteration: 15, Func. Count: 111, Neg. LLF: 95.58580543445457
Iteration: 16, Func. Count: 118, Neg. LLF: 99.0581851145178
Optimization terminated successfully (Exit mode 0)
Current function value: 95.5858054235846
Iterations: 17
Function evaluations: 123
Gradient evaluations: 16
Iteration: 1, Func. Count: 9, Neg. LLF: 21897287.95982828
Iteration: 2, Func. Count: 19, Neg. LLF: 97.35381602140373
Iteration: 3, Func. Count: 28, Neg. LLF: 96.11188165151427
Iteration: 4, Func. Count: 36, Neg. LLF: 95.86525000629383
Iteration: 5, Func. Count: 44, Neg. LLF: 96.39783402664779
Iteration: 6, Func. Count: 53, Neg. LLF: 95.99659387978812
Iteration: 7, Func. Count: 62, Neg. LLF: 95.6876215773955
Iteration: 8, Func. Count: 70, Neg. LLF: 95.68307970890537
Iteration: 9, Func. Count: 78, Neg. LLF: 95.6650977448781
Iteration: 10, Func. Count: 86, Neg. LLF: 95.65739610611577
Iteration: 11, Func. Count: 94, Neg. LLF: 95.65469363139384
Iteration: 12, Func. Count: 102, Neg. LLF: 95.65358947710672
Iteration: 13, Func. Count: 110, Neg. LLF: 95.65358202663622
Iteration: 14, Func. Count: 118, Neg. LLF: 95.65357937847087
Iteration: 15, Func. Count: 126, Neg. LLF: 95.65357867857011
Optimization terminated successfully (Exit mode 0)
Current function value: 95.65357867857011
Iterations: 15
Function evaluations: 126
Gradient evaluations: 15
Iteration: 1, Func. Count: 6, Neg. LLF: 157.02201829956047
Iteration: 2, Func. Count: 14, Neg. LLF: 155.96857911360902
Iteration: 3, Func. Count: 21, Neg. LLF: 96.58148123284674
Iteration: 4, Func. Count: 26, Neg. LLF: 96.0290170185773
Iteration: 5, Func. Count: 31, Neg. LLF: 95.96342958530595
Iteration: 6, Func. Count: 36, Neg. LLF: 95.94339377493893
Iteration: 7, Func. Count: 41, Neg. LLF: 95.94328832364558
Iteration: 8, Func. Count: 46, Neg. LLF: 95.94328742822816
Optimization terminated successfully (Exit mode 0)
Current function value: 95.94328742822816
Iterations: 8
Function evaluations: 46
Gradient evaluations: 8
Iteration: 1, Func. Count: 7, Neg. LLF: 22367186.267782483
Iteration: 2, Func. Count: 15, Neg. LLF: 99.18811361353288
Iteration: 3, Func. Count: 22, Neg. LLF: 97.91915662376091
Iteration: 4, Func. Count: 29, Neg. LLF: 98.27925514824905
Iteration: 5, Func. Count: 36, Neg. LLF: 96.87315248388553
Iteration: 6, Func. Count: 42, Neg. LLF: 152.3836254006159
Iteration: 7, Func. Count: 50, Neg. LLF: 97.63196001278455
Iteration: 8, Func. Count: 58, Neg. LLF: 95.9164157883696
Iteration: 9, Func. Count: 64, Neg. LLF: 95.6239390521926
Iteration: 10, Func. Count: 70, Neg. LLF: 95.58615885369866
Iteration: 11, Func. Count: 76, Neg. LLF: 95.58580560281713
Iteration: 12, Func. Count: 82, Neg. LLF: 95.58580479135351
Optimization terminated successfully (Exit mode 0)
Current function value: 95.58580479135351
Iterations: 12
Function evaluations: 82
Gradient evaluations: 12
Iteration: 1, Func. Count: 8, Neg. LLF: 22055897.72087974
Iteration: 2, Func. Count: 17, Neg. LLF: 97.38916595998516
Iteration: 3, Func. Count: 24, Neg. LLF: 96.9042939887773
Iteration: 4, Func. Count: 32, Neg. LLF: 224.15595292273923
Iteration: 5, Func. Count: 41, Neg. LLF: 96.77438331635634
Iteration: 6, Func. Count: 49, Neg. LLF: 95.32220571823285
Iteration: 7, Func. Count: 56, Neg. LLF: 95.30966651377163
Iteration: 8, Func. Count: 63, Neg. LLF: 95.29468551593312
Iteration: 9, Func. Count: 70, Neg. LLF: 95.29119212418945
Iteration: 10, Func. Count: 77, Neg. LLF: 95.29061238803442
Iteration: 11, Func. Count: 84, Neg. LLF: 95.29058749223003
Iteration: 12, Func. Count: 90, Neg. LLF: 95.2905874923031
Optimization terminated successfully (Exit mode 0)
Current function value: 95.29058749223003
Iterations: 12
Function evaluations: 90
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 22127369.50430533
Iteration: 2, Func. Count: 19, Neg. LLF: 97.51671328118755
Iteration: 3, Func. Count: 28, Neg. LLF: 96.37791794951143
Iteration: 4, Func. Count: 36, Neg. LLF: 106.28832072237032
Iteration: 5, Func. Count: 46, Neg. LLF: 95.91452634927543
Iteration: 6, Func. Count: 54, Neg. LLF: 95.57727526095864
Iteration: 7, Func. Count: 62, Neg. LLF: 95.56824872840154
Iteration: 8, Func. Count: 71, Neg. LLF: 95.29151257465597
Iteration: 9, Func. Count: 79, Neg. LLF: 95.29076113427594
Iteration: 10, Func. Count: 87, Neg. LLF: 95.2905998313686
Iteration: 11, Func. Count: 95, Neg. LLF: 95.29058778842987
Iteration: 12, Func. Count: 102, Neg. LLF: 95.29058789651943
Optimization terminated successfully (Exit mode 0)
Current function value: 95.29058778842987
Iterations: 12
Function evaluations: 102
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 22106488.858502924
Iteration: 2, Func. Count: 21, Neg. LLF: 98.54821241301654
Iteration: 3, Func. Count: 31, Neg. LLF: 96.09633203289376
Iteration: 4, Func. Count: 40, Neg. LLF: 99.18257881898434
Iteration: 5, Func. Count: 51, Neg. LLF: 99.943912831262
Iteration: 6, Func. Count: 61, Neg. LLF: 95.91698812188734
Iteration: 7, Func. Count: 71, Neg. LLF: 94.75813244831855
Iteration: 8, Func. Count: 80, Neg. LLF: 94.75597992905479
Iteration: 9, Func. Count: 89, Neg. LLF: 94.75431595502343
Iteration: 10, Func. Count: 98, Neg. LLF: 94.74892466273468
Iteration: 11, Func. Count: 107, Neg. LLF: 94.74821961730876
Iteration: 12, Func. Count: 116, Neg. LLF: 94.74816827915477
Iteration: 13, Func. Count: 125, Neg. LLF: 94.7481665646366
Iteration: 14, Func. Count: 133, Neg. LLF: 94.74816656461347
Optimization terminated successfully (Exit mode 0)
Current function value: 94.7481665646366
Iterations: 14
Function evaluations: 133
Gradient evaluations: 14
Iteration: 1, Func. Count: 7, Neg. LLF: 157.66707511669802
Iteration: 2, Func. Count: 16, Neg. LLF: 155.5549012649328
Iteration: 3, Func. Count: 24, Neg. LLF: 96.5734711321251
Iteration: 4, Func. Count: 30, Neg. LLF: 96.02555660335031
Iteration: 5, Func. Count: 36, Neg. LLF: 95.96357343191072
Iteration: 6, Func. Count: 42, Neg. LLF: 95.94339044851299
Iteration: 7, Func. Count: 48, Neg. LLF: 95.94328763682455
Iteration: 8, Func. Count: 53, Neg. LLF: 95.94328786641037
Optimization terminated successfully (Exit mode 0)
Current function value: 95.94328763682455
Iterations: 8
Function evaluations: 53
Gradient evaluations: 8
Iteration: 1, Func. Count: 8, Neg. LLF: 22256852.57094045
Iteration: 2, Func. Count: 17, Neg. LLF: 99.11493147414026
Iteration: 3, Func. Count: 25, Neg. LLF: 98.09077724568344
Iteration: 4, Func. Count: 33, Neg. LLF: 96.26644673475924
Iteration: 5, Func. Count: 40, Neg. LLF: 96.01320476188364
Iteration: 6, Func. Count: 47, Neg. LLF: 95.62955168543297
Iteration: 7, Func. Count: 54, Neg. LLF: 95.58762052596013
Iteration: 8, Func. Count: 61, Neg. LLF: 95.58580722677866
Iteration: 9, Func. Count: 68, Neg. LLF: 99.84648027002606
Optimization terminated successfully (Exit mode 0)
Current function value: 95.58580625358243
Iterations: 10
Function evaluations: 72
Gradient evaluations: 9
Iteration: 1, Func. Count: 9, Neg. LLF: 22063568.66464308
Iteration: 2, Func. Count: 19, Neg. LLF: 97.33786029628257
Iteration: 3, Func. Count: 27, Neg. LLF: 96.80697462605714
Iteration: 4, Func. Count: 36, Neg. LLF: 2134.9181845109915
Iteration: 5, Func. Count: 46, Neg. LLF: 98.36320624403076
Iteration: 6, Func. Count: 55, Neg. LLF: 95.34572633321282
Iteration: 7, Func. Count: 63, Neg. LLF: 95.31289275175726
Iteration: 8, Func. Count: 71, Neg. LLF: 95.30008873025623
Iteration: 9, Func. Count: 79, Neg. LLF: 95.29384445626715
Iteration: 10, Func. Count: 87, Neg. LLF: 95.2911165752013
Iteration: 11, Func. Count: 95, Neg. LLF: 95.29062039561552
Iteration: 12, Func. Count: 103, Neg. LLF: 95.29058746454196
Iteration: 13, Func. Count: 110, Neg. LLF: 95.29058746457359
Optimization terminated successfully (Exit mode 0)
Current function value: 95.29058746454196
Iterations: 13
Function evaluations: 110
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 22118177.02181203
Iteration: 2, Func. Count: 21, Neg. LLF: 97.47872701088228
Iteration: 3, Func. Count: 31, Neg. LLF: 96.49244954597212
Iteration: 4, Func. Count: 40, Neg. LLF: 101.43548591842315
Iteration: 5, Func. Count: 51, Neg. LLF: 97.21833380862219
Iteration: 6, Func. Count: 61, Neg. LLF: 96.35568712001869
Iteration: 7, Func. Count: 71, Neg. LLF: 95.68332059439749
Iteration: 8, Func. Count: 80, Neg. LLF: 95.67273140129618
Iteration: 9, Func. Count: 89, Neg. LLF: 95.66570822994336
Iteration: 10, Func. Count: 98, Neg. LLF: 95.66401681179832
Iteration: 11, Func. Count: 107, Neg. LLF: 95.64403601846669
Iteration: 12, Func. Count: 116, Neg. LLF: 95.61026652557389
Iteration: 13, Func. Count: 125, Neg. LLF: 95.58788648101148
Iteration: 14, Func. Count: 134, Neg. LLF: 7052745.870429183
Iteration: 15, Func. Count: 146, Neg. LLF: 101.36631716008652
Iteration: 16, Func. Count: 156, Neg. LLF: 95.29576525998912
Iteration: 17, Func. Count: 165, Neg. LLF: 96.99972411365954
Iteration: 18, Func. Count: 176, Neg. LLF: 95.2915141985359
Iteration: 19, Func. Count: 185, Neg. LLF: 95.29071318498647
Iteration: 20, Func. Count: 194, Neg. LLF: 95.29065023842371
Iteration: 21, Func. Count: 203, Neg. LLF: 95.29058791209047
Iteration: 22, Func. Count: 211, Neg. LLF: 95.29058802071049
Optimization terminated successfully (Exit mode 0)
Current function value: 95.29058791209047
Iterations: 23
Function evaluations: 211
Gradient evaluations: 22
Iteration: 1, Func. Count: 11, Neg. LLF: 22102493.77357593
Iteration: 2, Func. Count: 23, Neg. LLF: 98.53152079529632
Iteration: 3, Func. Count: 34, Neg. LLF: 95.94516988048285
Iteration: 4, Func. Count: 44, Neg. LLF: 99.16769576182932
Iteration: 5, Func. Count: 56, Neg. LLF: 99.68105561263656
Iteration: 6, Func. Count: 67, Neg. LLF: 95.90703731677543
Iteration: 7, Func. Count: 78, Neg. LLF: 94.75653890726028
Iteration: 8, Func. Count: 88, Neg. LLF: 94.75510529994334
Iteration: 9, Func. Count: 98, Neg. LLF: 94.75094108336556
Iteration: 10, Func. Count: 108, Neg. LLF: 94.74874286105039
Iteration: 11, Func. Count: 118, Neg. LLF: 94.74821267673566
Iteration: 12, Func. Count: 128, Neg. LLF: 94.74816666106048
Iteration: 13, Func. Count: 137, Neg. LLF: 94.74816666113911
Optimization terminated successfully (Exit mode 0)
Current function value: 94.74816666106048
Iterations: 13
Function evaluations: 137
Gradient evaluations: 13
Iteration: 1, Func. Count: 8, Neg. LLF: 153.47252668537973
Iteration: 2, Func. Count: 17, Neg. LLF: 149.36221469552214
Iteration: 3, Func. Count: 26, Neg. LLF: 2305426.7425868143
Iteration: 4, Func. Count: 34, Neg. LLF: 4016582.731719717
Iteration: 5, Func. Count: 42, Neg. LLF: 3953421.5586464545
Iteration: 6, Func. Count: 50, Neg. LLF: 3917652.2680934737
Iteration: 7, Func. Count: 58, Neg. LLF: 4506483.394700786
Iteration: 8, Func. Count: 66, Neg. LLF: 116.99919971342403
Iteration: 9, Func. Count: 74, Neg. LLF: 94.81255961404199
Iteration: 10, Func. Count: 82, Neg. LLF: 91.97091178282886
Iteration: 11, Func. Count: 89, Neg. LLF: 91.0105020595727
Iteration: 12, Func. Count: 96, Neg. LLF: 90.8445948883229
Iteration: 13, Func. Count: 103, Neg. LLF: 91.00256705526658
Iteration: 14, Func. Count: 111, Neg. LLF: 90.74113916530716
Iteration: 15, Func. Count: 118, Neg. LLF: 90.73964090233424
Iteration: 16, Func. Count: 125, Neg. LLF: 90.7395155772949
Iteration: 17, Func. Count: 132, Neg. LLF: 90.7395144650346
Iteration: 18, Func. Count: 138, Neg. LLF: 90.73951446086255
Optimization terminated successfully (Exit mode 0)
Current function value: 90.7395144650346
Iterations: 18
Function evaluations: 138
Gradient evaluations: 18
Iteration: 1, Func. Count: 9, Neg. LLF: 22146371.713132106
Iteration: 2, Func. Count: 19, Neg. LLF: 99.0995479850156
Iteration: 3, Func. Count: 28, Neg. LLF: 98.31055534632888
Iteration: 4, Func. Count: 37, Neg. LLF: 95.71160520846603
Iteration: 5, Func. Count: 45, Neg. LLF: 95.60228223022455
Iteration: 6, Func. Count: 53, Neg. LLF: 95.5916039976145
Iteration: 7, Func. Count: 61, Neg. LLF: 95.58677982144215
Iteration: 8, Func. Count: 69, Neg. LLF: 95.58725161886454
Iteration: 9, Func. Count: 78, Neg. LLF: 22007142.23522338
Iteration: 10, Func. Count: 90, Neg. LLF: 95.72305039018472
Iteration: 11, Func. Count: 100, Neg. LLF: 95.58580479080302
Iteration: 12, Func. Count: 107, Neg. LLF: 95.58580479079461
Optimization terminated successfully (Exit mode 0)
Current function value: 95.58580479080302
Iterations: 13
Function evaluations: 107
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 21976396.2969532
Iteration: 2, Func. Count: 21, Neg. LLF: 97.52603259227462
Iteration: 3, Func. Count: 30, Neg. LLF: 97.27150174808287
Iteration: 4, Func. Count: 40, Neg. LLF: 2158.456617488738
Iteration: 5, Func. Count: 51, Neg. LLF: 103.32914611370046
Iteration: 6, Func. Count: 62, Neg. LLF: 95.38727367331873
Iteration: 7, Func. Count: 71, Neg. LLF: 95.32567508776398
Iteration: 8, Func. Count: 80, Neg. LLF: 95.30880924498472
Iteration: 9, Func. Count: 89, Neg. LLF: 95.29305486094005
Iteration: 10, Func. Count: 98, Neg. LLF: 95.29112467061067
Iteration: 11, Func. Count: 107, Neg. LLF: 95.29058754315999
Iteration: 12, Func. Count: 115, Neg. LLF: 95.29058754324113
Optimization terminated successfully (Exit mode 0)
Current function value: 95.29058754315999
Iterations: 12
Function evaluations: 115
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 22015043.75879448
Iteration: 2, Func. Count: 23, Neg. LLF: 97.79787132233055
Iteration: 3, Func. Count: 34, Neg. LLF: 96.39976658642182
Iteration: 4, Func. Count: 44, Neg. LLF: 99.8644645250339
Iteration: 5, Func. Count: 55, Neg. LLF: 97.45206275023456
Iteration: 6, Func. Count: 66, Neg. LLF: 95.90299079649608
Iteration: 7, Func. Count: 77, Neg. LLF: 95.7221730588486
Iteration: 8, Func. Count: 87, Neg. LLF: 95.68120045374705
Iteration: 9, Func. Count: 97, Neg. LLF: 95.66851572875555
Iteration: 10, Func. Count: 107, Neg. LLF: 95.66556667607813
Iteration: 11, Func. Count: 117, Neg. LLF: 95.66196847287208
Iteration: 12, Func. Count: 127, Neg. LLF: 95.61791055620128
Iteration: 13, Func. Count: 137, Neg. LLF: 95.78727977641066
Iteration: 14, Func. Count: 148, Neg. LLF: 21857829.15688667
Iteration: 15, Func. Count: 162, Neg. LLF: 95.58135998827564
Iteration: 16, Func. Count: 172, Neg. LLF: 95.56405122977564
Iteration: 17, Func. Count: 182, Neg. LLF: 97.17604215505476
Iteration: 18, Func. Count: 193, Neg. LLF: 95.29567068030924
Iteration: 19, Func. Count: 203, Neg. LLF: 95.29171197536967
Iteration: 20, Func. Count: 213, Neg. LLF: 349.83017337594936
Iteration: 21, Func. Count: 227, Neg. LLF: 95.30605004586145
Iteration: 22, Func. Count: 239, Neg. LLF: 95.29073126783001
Iteration: 23, Func. Count: 249, Neg. LLF: 95.29067694529859
Iteration: 24, Func. Count: 259, Neg. LLF: 95.29062647481886
Iteration: 25, Func. Count: 269, Neg. LLF: 95.2905880501385
Iteration: 26, Func. Count: 279, Neg. LLF: 95.29058741297544
Optimization terminated successfully (Exit mode 0)
Current function value: 95.29058741297544
Iterations: 28
Function evaluations: 279
Gradient evaluations: 26
Iteration: 1, Func. Count: 12, Neg. LLF: 22008265.387399968
Iteration: 2, Func. Count: 25, Neg. LLF: 98.88237970219052
Iteration: 3, Func. Count: 37, Neg. LLF: 95.79906711057696
Iteration: 4, Func. Count: 48, Neg. LLF: 98.30873523813334
Iteration: 5, Func. Count: 61, Neg. LLF: 98.39177170821726
Iteration: 6, Func. Count: 73, Neg. LLF: 95.92885312933998
Iteration: 7, Func. Count: 85, Neg. LLF: 94.7584350773354
Iteration: 8, Func. Count: 96, Neg. LLF: 94.75657326345745
Iteration: 9, Func. Count: 107, Neg. LLF: 94.74903738972459
Iteration: 10, Func. Count: 118, Neg. LLF: 94.74823767015752
Iteration: 11, Func. Count: 129, Neg. LLF: 94.74816819928283
Iteration: 12, Func. Count: 140, Neg. LLF: 94.74816659239819
Iteration: 13, Func. Count: 150, Neg. LLF: 94.74816659251836
Optimization terminated successfully (Exit mode 0)
Current function value: 94.74816659239819
Iterations: 13
Function evaluations: 150
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 162.0465804391438
Iteration: 2, Func. Count: 20, Neg. LLF: 152.7662788323185
Iteration: 3, Func. Count: 30, Neg. LLF: 2296182.0025024647
Iteration: 4, Func. Count: 39, Neg. LLF: 4070727.6127660256
Iteration: 5, Func. Count: 48, Neg. LLF: 3925243.457428288
Iteration: 6, Func. Count: 57, Neg. LLF: 4503875.023479039
Iteration: 7, Func. Count: 66, Neg. LLF: 114.21610915250643
Iteration: 8, Func. Count: 75, Neg. LLF: 93.26854527601368
Iteration: 9, Func. Count: 83, Neg. LLF: 92.74753362573135
Iteration: 10, Func. Count: 92, Neg. LLF: 99.28283974823246
Iteration: 11, Func. Count: 101, Neg. LLF: 91.04005562658817
Iteration: 12, Func. Count: 109, Neg. LLF: 90.93110386631821
Iteration: 13, Func. Count: 117, Neg. LLF: 90.87224231038522
Iteration: 14, Func. Count: 125, Neg. LLF: 90.78496349326299
Iteration: 15, Func. Count: 133, Neg. LLF: 90.7521187126145
Iteration: 16, Func. Count: 141, Neg. LLF: 90.74201115202399
Iteration: 17, Func. Count: 149, Neg. LLF: 90.73975993878794
Iteration: 18, Func. Count: 157, Neg. LLF: 90.73953267862721
Iteration: 19, Func. Count: 165, Neg. LLF: 90.73951449080711
Iteration: 20, Func. Count: 172, Neg. LLF: 90.73951485370793
Optimization terminated successfully (Exit mode 0)
Current function value: 90.73951449080711
Iterations: 20
Function evaluations: 172
Gradient evaluations: 20
Iteration: 1, Func. Count: 10, Neg. LLF: 22160546.150001723
Iteration: 2, Func. Count: 21, Neg. LLF: 99.10142779612653
Iteration: 3, Func. Count: 31, Neg. LLF: 98.41637692715751
Iteration: 4, Func. Count: 41, Neg. LLF: 95.68480722984572
Iteration: 5, Func. Count: 50, Neg. LLF: 95.64267402091573
Iteration: 6, Func. Count: 59, Neg. LLF: 95.61533792978628
Iteration: 7, Func. Count: 68, Neg. LLF: 95.5863563243634
Iteration: 8, Func. Count: 77, Neg. LLF: 95.58595049965162
Iteration: 9, Func. Count: 86, Neg. LLF: 167.3619003294555
Optimization terminated successfully (Exit mode 0)
Current function value: 95.58595042888624
Iterations: 10
Function evaluations: 91
Gradient evaluations: 9
Iteration: 1, Func. Count: 11, Neg. LLF: 21991644.288681008
Iteration: 2, Func. Count: 23, Neg. LLF: 97.50586706329366
Iteration: 3, Func. Count: 33, Neg. LLF: 97.16545214796791
Iteration: 4, Func. Count: 44, Neg. LLF: 17050.08780923045
Iteration: 5, Func. Count: 56, Neg. LLF: 107.82320027404941
Iteration: 6, Func. Count: 68, Neg. LLF: 95.36822710705746
Iteration: 7, Func. Count: 78, Neg. LLF: 95.31142952186487
Iteration: 8, Func. Count: 88, Neg. LLF: 95.29337070610707
Iteration: 9, Func. Count: 98, Neg. LLF: 95.2911878183713
Iteration: 10, Func. Count: 108, Neg. LLF: 95.29059182513328
Iteration: 11, Func. Count: 118, Neg. LLF: 95.29058741419836
Iteration: 12, Func. Count: 127, Neg. LLF: 95.29058741431314
Optimization terminated successfully (Exit mode 0)
Current function value: 95.29058741419836
Iterations: 12
Function evaluations: 127
Gradient evaluations: 12
Iteration: 1, Func. Count: 12, Neg. LLF: 22031055.065437675
Iteration: 2, Func. Count: 25, Neg. LLF: 97.81359603421339
Iteration: 3, Func. Count: 37, Neg. LLF: 96.39511216853232
Iteration: 4, Func. Count: 48, Neg. LLF: 99.71930831856699
Iteration: 5, Func. Count: 60, Neg. LLF: 97.41369186447716
Iteration: 6, Func. Count: 72, Neg. LLF: 95.90460265248572
Iteration: 7, Func. Count: 84, Neg. LLF: 95.72817866918913
Iteration: 8, Func. Count: 95, Neg. LLF: 95.68733816273463
Iteration: 9, Func. Count: 106, Neg. LLF: 95.67041846756845
Iteration: 10, Func. Count: 117, Neg. LLF: 95.66535154136534
Iteration: 11, Func. Count: 128, Neg. LLF: 95.66393376113547
Iteration: 12, Func. Count: 139, Neg. LLF: 95.65110098518186
Iteration: 13, Func. Count: 150, Neg. LLF: 95.62054118333755
Iteration: 14, Func. Count: 161, Neg. LLF: 100.02507338388885
Iteration: 15, Func. Count: 174, Neg. LLF: 101.59589959599364
Iteration: 16, Func. Count: 187, Neg. LLF: 95.54237016654291
Iteration: 17, Func. Count: 198, Neg. LLF: 96.35865398163519
Iteration: 18, Func. Count: 211, Neg. LLF: 95.3700509855571
Iteration: 19, Func. Count: 222, Neg. LLF: 95.32983793014202
Iteration: 20, Func. Count: 233, Neg. LLF: 95.31701106509041
Iteration: 21, Func. Count: 244, Neg. LLF: 95.30392209055141
Iteration: 22, Func. Count: 255, Neg. LLF: 95.29110612582532
Iteration: 23, Func. Count: 266, Neg. LLF: 95.29062225618912
Iteration: 24, Func. Count: 277, Neg. LLF: 97.49409685964741
Iteration: 25, Func. Count: 291, Neg. LLF: 95.29797651633332
Iteration: 26, Func. Count: 304, Neg. LLF: 95.29214901090182
Iteration: 27, Func. Count: 317, Neg. LLF: 95.29058740076307
Iteration: 28, Func. Count: 327, Neg. LLF: 95.29058750850633
Optimization terminated successfully (Exit mode 0)
Current function value: 95.29058740076307
Iterations: 30
Function evaluations: 327
Gradient evaluations: 28
Iteration: 1, Func. Count: 13, Neg. LLF: 22032785.032950103
Iteration: 2, Func. Count: 27, Neg. LLF: 98.72938005017018
Iteration: 3, Func. Count: 40, Neg. LLF: 95.86314223163139
Iteration: 4, Func. Count: 52, Neg. LLF: 98.46402616702592
Iteration: 5, Func. Count: 66, Neg. LLF: 122.64306831035633
Iteration: 6, Func. Count: 80, Neg. LLF: 96.14983400357511
Iteration: 7, Func. Count: 93, Neg. LLF: 94.81226501822947
Iteration: 8, Func. Count: 105, Neg. LLF: 94.77311047950614
Iteration: 9, Func. Count: 117, Neg. LLF: 94.7549769645445
Iteration: 10, Func. Count: 129, Neg. LLF: 94.75234514278317
Iteration: 11, Func. Count: 141, Neg. LLF: 94.75129342658303
Iteration: 12, Func. Count: 153, Neg. LLF: 94.74833520079596
Iteration: 13, Func. Count: 165, Neg. LLF: 94.74828061209901
Iteration: 14, Func. Count: 178, Neg. LLF: 94.74816504726411
Iteration: 15, Func. Count: 189, Neg. LLF: 94.74816504725025
Optimization terminated successfully (Exit mode 0)
Current function value: 94.74816504726411
Iterations: 15
Function evaluations: 189
Gradient evaluations: 15
Iteration: 1, Func. Count: 6, Neg. LLF: 166.27951821299877
Iteration: 2, Func. Count: 14, Neg. LLF: 135.5946717919122
Iteration: 3, Func. Count: 21, Neg. LLF: 98.66848041492099
Iteration: 4, Func. Count: 26, Neg. LLF: 98.56793803076434
Iteration: 5, Func. Count: 31, Neg. LLF: 98.56106284723934
Iteration: 6, Func. Count: 36, Neg. LLF: 98.56042232766022
Iteration: 7, Func. Count: 41, Neg. LLF: 98.56039835580985
Iteration: 8, Func. Count: 46, Neg. LLF: 98.56037806280558
Iteration: 9, Func. Count: 51, Neg. LLF: 98.5603774862032
Optimization terminated successfully (Exit mode 0)
Current function value: 98.5603774862032
Iterations: 9
Function evaluations: 51
Gradient evaluations: 9
Iteration: 1, Func. Count: 7, Neg. LLF: 21858508.347248677
Iteration: 2, Func. Count: 15, Neg. LLF: 98.95031256274294
Iteration: 3, Func. Count: 22, Neg. LLF: 96.89763567620567
Iteration: 4, Func. Count: 28, Neg. LLF: 101.1268324014013
Iteration: 5, Func. Count: 35, Neg. LLF: 145.01180177515732
Iteration: 6, Func. Count: 43, Neg. LLF: 95.58929415320594
Iteration: 7, Func. Count: 49, Neg. LLF: 95.5858180568286
Iteration: 8, Func. Count: 55, Neg. LLF: 95.58580479331825
Iteration: 9, Func. Count: 60, Neg. LLF: 95.58580479345002
Optimization terminated successfully (Exit mode 0)
Current function value: 95.58580479331825
Iterations: 9
Function evaluations: 60
Gradient evaluations: 9
Iteration: 1, Func. Count: 8, Neg. LLF: 21902871.339258924
Iteration: 2, Func. Count: 17, Neg. LLF: 97.17459075279794
Iteration: 3, Func. Count: 24, Neg. LLF: 96.6563671187167
Iteration: 4, Func. Count: 32, Neg. LLF: 104.48486423339459
Iteration: 5, Func. Count: 40, Neg. LLF: 95.60927451743149
Iteration: 6, Func. Count: 47, Neg. LLF: 95.55555501519619
Iteration: 7, Func. Count: 54, Neg. LLF: 95.5417313714118
Iteration: 8, Func. Count: 61, Neg. LLF: 95.54169462873291
Iteration: 9, Func. Count: 67, Neg. LLF: 95.54169462874655
Optimization terminated successfully (Exit mode 0)
Current function value: 95.54169462873291
Iterations: 9
Function evaluations: 67
Gradient evaluations: 9
Iteration: 1, Func. Count: 9, Neg. LLF: 21901333.494136855
Iteration: 2, Func. Count: 19, Neg. LLF: 97.17244619129595
Iteration: 3, Func. Count: 28, Neg. LLF: 96.50353928669081
Iteration: 4, Func. Count: 36, Neg. LLF: 96.05222372535466
Iteration: 5, Func. Count: 44, Neg. LLF: 96.60232795070881
Iteration: 6, Func. Count: 53, Neg. LLF: 95.98408260057022
Iteration: 7, Func. Count: 62, Neg. LLF: 95.65568069911419
Iteration: 8, Func. Count: 70, Neg. LLF: 95.65085217073832
Iteration: 9, Func. Count: 78, Neg. LLF: 95.62362104228848
Iteration: 10, Func. Count: 86, Neg. LLF: 95.60205277307753
Iteration: 11, Func. Count: 94, Neg. LLF: 95.58994581009144
Iteration: 12, Func. Count: 102, Neg. LLF: 95.58714202189003
Iteration: 13, Func. Count: 110, Neg. LLF: 95.58581650081796
Iteration: 14, Func. Count: 118, Neg. LLF: 95.58580721792397
Iteration: 15, Func. Count: 126, Neg. LLF: 5831031.876702723
Iteration: 16, Func. Count: 138, Neg. LLF: 95.58580487973163
Optimization terminated successfully (Exit mode 0)
Current function value: 95.58580487581894
Iterations: 17
Function evaluations: 138
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 21901104.75244442
Iteration: 2, Func. Count: 21, Neg. LLF: 97.39228338233617
Iteration: 3, Func. Count: 31, Neg. LLF: 95.92891744863579
Iteration: 4, Func. Count: 40, Neg. LLF: 95.76156237351017
Iteration: 5, Func. Count: 49, Neg. LLF: 95.68276529609433
Iteration: 6, Func. Count: 58, Neg. LLF: 95.65425191806463
Iteration: 7, Func. Count: 67, Neg. LLF: 95.65359223505335
Iteration: 8, Func. Count: 76, Neg. LLF: 95.65359653677976
Iteration: 9, Func. Count: 86, Neg. LLF: 95.65357848580646
Optimization terminated successfully (Exit mode 0)
Current function value: 95.65357848580646
Iterations: 9
Function evaluations: 86
Gradient evaluations: 9
Iteration: 1, Func. Count: 7, Neg. LLF: 169.1446790020336
Iteration: 2, Func. Count: 16, Neg. LLF: 140.09416662410345
Iteration: 3, Func. Count: 24, Neg. LLF: 97.39265666172096
Iteration: 4, Func. Count: 30, Neg. LLF: 96.11263929510062
Iteration: 5, Func. Count: 36, Neg. LLF: 96.01220129006757
Iteration: 6, Func. Count: 42, Neg. LLF: 95.95477314260428
Iteration: 7, Func. Count: 48, Neg. LLF: 95.94355958042253
Iteration: 8, Func. Count: 54, Neg. LLF: 95.94329912679903
Iteration: 9, Func. Count: 60, Neg. LLF: 95.94328899497047
Iteration: 10, Func. Count: 66, Neg. LLF: 95.94328739796775
Iteration: 11, Func. Count: 71, Neg. LLF: 95.9432876644677
Optimization terminated successfully (Exit mode 0)
Current function value: 95.94328739796775
Iterations: 11
Function evaluations: 71
Gradient evaluations: 11
Iteration: 1, Func. Count: 8, Neg. LLF: 22154612.109144486
Iteration: 2, Func. Count: 17, Neg. LLF: 99.12371106463362
Iteration: 3, Func. Count: 25, Neg. LLF: 98.30490912677936
Iteration: 4, Func. Count: 33, Neg. LLF: 95.84585378853534
Iteration: 5, Func. Count: 40, Neg. LLF: 95.73011184330954
Iteration: 6, Func. Count: 47, Neg. LLF: 95.59725040891415
Iteration: 7, Func. Count: 54, Neg. LLF: 95.59204785322702
Iteration: 8, Func. Count: 61, Neg. LLF: 95.58799579741515
Iteration: 9, Func. Count: 68, Neg. LLF: 206.7954111150584
Optimization terminated successfully (Exit mode 0)
Current function value: 95.5879956072633
Iterations: 10
Function evaluations: 72
Gradient evaluations: 9
Iteration: 1, Func. Count: 9, Neg. LLF: 22047225.55700281
Iteration: 2, Func. Count: 19, Neg. LLF: 97.3854342977319
Iteration: 3, Func. Count: 27, Neg. LLF: 96.90178753890827
Iteration: 4, Func. Count: 36, Neg. LLF: 166.13679770876175
Iteration: 5, Func. Count: 46, Neg. LLF: 96.72855986730042
Iteration: 6, Func. Count: 55, Neg. LLF: 95.31946439486002
Iteration: 7, Func. Count: 63, Neg. LLF: 95.30824620512156
Iteration: 8, Func. Count: 71, Neg. LLF: 95.29413843027723
Iteration: 9, Func. Count: 79, Neg. LLF: 95.29131416971468
Iteration: 10, Func. Count: 87, Neg. LLF: 95.29059598333366
Iteration: 11, Func. Count: 95, Neg. LLF: 95.29058740459423
Iteration: 12, Func. Count: 102, Neg. LLF: 95.29058740462332
Optimization terminated successfully (Exit mode 0)
Current function value: 95.29058740459423
Iterations: 12
Function evaluations: 102
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 22120455.62801394
Iteration: 2, Func. Count: 21, Neg. LLF: 97.44858508708268
Iteration: 3, Func. Count: 31, Neg. LLF: 96.47481553373738
Iteration: 4, Func. Count: 40, Neg. LLF: 102.33998661287164
Iteration: 5, Func. Count: 51, Neg. LLF: 96.44048747551514
Iteration: 6, Func. Count: 61, Neg. LLF: 95.81942704383897
Iteration: 7, Func. Count: 70, Neg. LLF: 95.69504301475968
Iteration: 8, Func. Count: 79, Neg. LLF: 95.66641559651218
Iteration: 9, Func. Count: 88, Neg. LLF: 95.66135051413075
Iteration: 10, Func. Count: 97, Neg. LLF: 95.65704768819681
Iteration: 11, Func. Count: 106, Neg. LLF: 95.63092970164008
Iteration: 12, Func. Count: 115, Neg. LLF: 95.62648217923746
Iteration: 13, Func. Count: 124, Neg. LLF: 95.62451065467269
Iteration: 14, Func. Count: 133, Neg. LLF: 95.61636170897181
Iteration: 15, Func. Count: 142, Neg. LLF: 95.55552557922888
Iteration: 16, Func. Count: 151, Neg. LLF: 95.58582510107291
Iteration: 17, Func. Count: 162, Neg. LLF: 101.55828077736568
Iteration: 18, Func. Count: 173, Neg. LLF: 3113200.2662165235
Iteration: 19, Func. Count: 184, Neg. LLF: 118.12845907728133
Iteration: 20, Func. Count: 195, Neg. LLF: 306.9289369258874
Iteration: 21, Func. Count: 206, Neg. LLF: 95.29515158547377
Iteration: 22, Func. Count: 215, Neg. LLF: 95.29082971758635
Iteration: 23, Func. Count: 224, Neg. LLF: 95.29059292609274
Iteration: 24, Func. Count: 233, Neg. LLF: 95.29058740630026
Iteration: 25, Func. Count: 241, Neg. LLF: 95.29058751405194
Optimization terminated successfully (Exit mode 0)
Current function value: 95.29058740630026
Iterations: 26
Function evaluations: 241
Gradient evaluations: 25
Iteration: 1, Func. Count: 11, Neg. LLF: 22103987.88372623
Iteration: 2, Func. Count: 23, Neg. LLF: 98.65731798005619
Iteration: 3, Func. Count: 34, Neg. LLF: 95.92127154835607
Iteration: 4, Func. Count: 44, Neg. LLF: 99.16719832835626
Iteration: 5, Func. Count: 56, Neg. LLF: 100.19663963977068
Iteration: 6, Func. Count: 67, Neg. LLF: 95.88665085344675
Iteration: 7, Func. Count: 78, Neg. LLF: 94.75881369175544
Iteration: 8, Func. Count: 88, Neg. LLF: 94.75691851336158
Iteration: 9, Func. Count: 98, Neg. LLF: 94.75124570052179
Iteration: 10, Func. Count: 108, Neg. LLF: 94.74884021872172
Iteration: 11, Func. Count: 118, Neg. LLF: 94.74820596615085
Iteration: 12, Func. Count: 128, Neg. LLF: 94.74816666103014
Iteration: 13, Func. Count: 137, Neg. LLF: 94.74816666109614
Optimization terminated successfully (Exit mode 0)
Current function value: 94.74816666103014
Iterations: 13
Function evaluations: 137
Gradient evaluations: 13
Iteration: 1, Func. Count: 8, Neg. LLF: 171.90702456105163
Iteration: 2, Func. Count: 18, Neg. LLF: 163.1290664827398
Iteration: 3, Func. Count: 26, Neg. LLF: 118.02238043036975
Iteration: 4, Func. Count: 34, Neg. LLF: 97.97650339395712
Iteration: 5, Func. Count: 42, Neg. LLF: 95.83677655488266
Iteration: 6, Func. Count: 49, Neg. LLF: 95.65493138554224
Iteration: 7, Func. Count: 56, Neg. LLF: 95.64104910700453
Iteration: 8, Func. Count: 63, Neg. LLF: 95.63752392375847
Iteration: 9, Func. Count: 70, Neg. LLF: 95.63722384059167
Iteration: 10, Func. Count: 77, Neg. LLF: 95.63720760442347
Iteration: 11, Func. Count: 84, Neg. LLF: 95.63720593613198
Iteration: 12, Func. Count: 90, Neg. LLF: 95.63720616686045
Optimization terminated successfully (Exit mode 0)
Current function value: 95.63720593613198
Iterations: 12
Function evaluations: 90
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 22067551.925097495
Iteration: 2, Func. Count: 19, Neg. LLF: 99.14861625620223
Iteration: 3, Func. Count: 28, Neg. LLF: 98.57764385933505
Iteration: 4, Func. Count: 37, Neg. LLF: 95.68234262480891
Iteration: 5, Func. Count: 45, Neg. LLF: 97.70305824697463
Iteration: 6, Func. Count: 54, Neg. LLF: 95.58842690385674
Iteration: 7, Func. Count: 62, Neg. LLF: 95.58589722436312
Iteration: 8, Func. Count: 70, Neg. LLF: 7438324.2647934435
Iteration: 9, Func. Count: 83, Neg. LLF: 95.58597276134971
Iteration: 10, Func. Count: 92, Neg. LLF: 95.58580479235786
Iteration: 11, Func. Count: 99, Neg. LLF: 95.58580479235842
Optimization terminated successfully (Exit mode 0)
Current function value: 95.58580479235786
Iterations: 12
Function evaluations: 99
Gradient evaluations: 11
Iteration: 1, Func. Count: 10, Neg. LLF: 22048684.741703063
Iteration: 2, Func. Count: 21, Neg. LLF: 97.41290588751448
Iteration: 3, Func. Count: 30, Neg. LLF: 96.91743572794348
Iteration: 4, Func. Count: 40, Neg. LLF: 818.6617558507911
Iteration: 5, Func. Count: 51, Neg. LLF: 101.10939791680352
Iteration: 6, Func. Count: 61, Neg. LLF: 95.38274096590239
Iteration: 7, Func. Count: 70, Neg. LLF: 95.32613204727348
Iteration: 8, Func. Count: 79, Neg. LLF: 95.31056777043048
Iteration: 9, Func. Count: 88, Neg. LLF: 95.2925347717607
Iteration: 10, Func. Count: 97, Neg. LLF: 95.29071760329134
Iteration: 11, Func. Count: 106, Neg. LLF: 95.2905962067791
Iteration: 12, Func. Count: 115, Neg. LLF: 95.29058749328074
Iteration: 13, Func. Count: 123, Neg. LLF: 95.29058749303942
Optimization terminated successfully (Exit mode 0)
Current function value: 95.29058749328074
Iterations: 13
Function evaluations: 123
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 22103226.836295202
Iteration: 2, Func. Count: 23, Neg. LLF: 97.46059713435461
Iteration: 3, Func. Count: 34, Neg. LLF: 96.61048466081533
Iteration: 4, Func. Count: 44, Neg. LLF: 103.94552061142886
Iteration: 5, Func. Count: 56, Neg. LLF: 98.3489458823097
Iteration: 6, Func. Count: 67, Neg. LLF: 106.95197736303882
Iteration: 7, Func. Count: 79, Neg. LLF: 95.90101296254186
Iteration: 8, Func. Count: 89, Neg. LLF: 95.73812453323461
Iteration: 9, Func. Count: 99, Neg. LLF: 95.70092127191603
Iteration: 10, Func. Count: 109, Neg. LLF: 95.68894428351636
Iteration: 11, Func. Count: 119, Neg. LLF: 95.6712824412545
Iteration: 12, Func. Count: 129, Neg. LLF: 95.65732620414191
Iteration: 13, Func. Count: 139, Neg. LLF: 95.64708900655005
Iteration: 14, Func. Count: 149, Neg. LLF: 95.59745651734957
Iteration: 15, Func. Count: 159, Neg. LLF: 95.59674147714477
Iteration: 16, Func. Count: 169, Neg. LLF: 95.59507201559603
Iteration: 17, Func. Count: 179, Neg. LLF: 95.59403910211546
Iteration: 18, Func. Count: 189, Neg. LLF: 95.58609260183007
Iteration: 19, Func. Count: 199, Neg. LLF: 95.58592613522434
Iteration: 20, Func. Count: 209, Neg. LLF: 21895427.760419
Iteration: 21, Func. Count: 223, Neg. LLF: 95.59940791952758
Iteration: 22, Func. Count: 235, Neg. LLF: 95.58580477751865
Optimization terminated successfully (Exit mode 0)
Current function value: 95.58580477751865
Iterations: 23
Function evaluations: 235
Gradient evaluations: 22
Iteration: 1, Func. Count: 12, Neg. LLF: 22091534.74238868
Iteration: 2, Func. Count: 25, Neg. LLF: 98.74453831521011
Iteration: 3, Func. Count: 37, Neg. LLF: 95.7599367313795
Iteration: 4, Func. Count: 48, Neg. LLF: 98.79450584322834
Iteration: 5, Func. Count: 61, Neg. LLF: 99.29644803984368
Iteration: 6, Func. Count: 73, Neg. LLF: 95.91136457995101
Iteration: 7, Func. Count: 85, Neg. LLF: 94.75717095812209
Iteration: 8, Func. Count: 96, Neg. LLF: 94.75538662055796
Iteration: 9, Func. Count: 107, Neg. LLF: 94.74916408045684
Iteration: 10, Func. Count: 118, Neg. LLF: 94.74832462012225
Iteration: 11, Func. Count: 129, Neg. LLF: 94.74816871888747
Iteration: 12, Func. Count: 140, Neg. LLF: 94.74816664827325
Iteration: 13, Func. Count: 150, Neg. LLF: 94.74816664820834
Optimization terminated successfully (Exit mode 0)
Current function value: 94.74816664827325
Iterations: 13
Function evaluations: 150
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 171.89818383522461
Iteration: 2, Func. Count: 19, Neg. LLF: 142.159816731576
Iteration: 3, Func. Count: 28, Neg. LLF: 553352.4995002456
Iteration: 4, Func. Count: 37, Neg. LLF: 1378750.6168062557
Iteration: 5, Func. Count: 46, Neg. LLF: 4477501.74820554
Iteration: 6, Func. Count: 55, Neg. LLF: 2117027.494061917
Iteration: 7, Func. Count: 64, Neg. LLF: 10985777.041209618
Iteration: 8, Func. Count: 73, Neg. LLF: 4472434.349163372
Iteration: 9, Func. Count: 82, Neg. LLF: 109.02046264078055
Iteration: 10, Func. Count: 91, Neg. LLF: 99.50136949047017
Iteration: 11, Func. Count: 100, Neg. LLF: 91.85074488453294
Iteration: 12, Func. Count: 108, Neg. LLF: 91.30388982395203
Iteration: 13, Func. Count: 116, Neg. LLF: 100.33159938651886
Iteration: 14, Func. Count: 126, Neg. LLF: 90.92445281089476
Iteration: 15, Func. Count: 134, Neg. LLF: 90.78714069979394
Iteration: 16, Func. Count: 142, Neg. LLF: 90.74749578650311
Iteration: 17, Func. Count: 150, Neg. LLF: 90.74030821945458
Iteration: 18, Func. Count: 158, Neg. LLF: 90.73959512638473
Iteration: 19, Func. Count: 166, Neg. LLF: 90.73951848370756
Iteration: 20, Func. Count: 174, Neg. LLF: 90.73951417994958
Iteration: 21, Func. Count: 181, Neg. LLF: 90.73951417577524
Optimization terminated successfully (Exit mode 0)
Current function value: 90.73951417994958
Iterations: 21
Function evaluations: 181
Gradient evaluations: 21
Iteration: 1, Func. Count: 10, Neg. LLF: 21989073.619263627
Iteration: 2, Func. Count: 21, Neg. LLF: 99.25273171343999
Iteration: 3, Func. Count: 31, Neg. LLF: 98.85524378504897
Iteration: 4, Func. Count: 41, Neg. LLF: 95.80469946878783
Iteration: 5, Func. Count: 50, Neg. LLF: 95.59521872317026
Iteration: 6, Func. Count: 59, Neg. LLF: 21953431.33699452
Iteration: 7, Func. Count: 71, Neg. LLF: 95.74276822440318
Iteration: 8, Func. Count: 82, Neg. LLF: 95.58580560408176
Iteration: 9, Func. Count: 91, Neg. LLF: 95.58580476547576
Optimization terminated successfully (Exit mode 0)
Current function value: 95.58580476547576
Iterations: 10
Function evaluations: 91
Gradient evaluations: 9
Iteration: 1, Func. Count: 11, Neg. LLF: 21965159.64735505
Iteration: 2, Func. Count: 23, Neg. LLF: 97.57840508229083
Iteration: 3, Func. Count: 34, Neg. LLF: 96.49145431801378
Iteration: 4, Func. Count: 44, Neg. LLF: 107.63297453363057
Iteration: 5, Func. Count: 56, Neg. LLF: 96.11007783360513
Iteration: 6, Func. Count: 67, Neg. LLF: 95.81920709198826
Iteration: 7, Func. Count: 78, Neg. LLF: 95.33614479729418
Iteration: 8, Func. Count: 88, Neg. LLF: 95.29984370654745
Iteration: 9, Func. Count: 98, Neg. LLF: 95.29132469501079
Iteration: 10, Func. Count: 108, Neg. LLF: 95.29059879789874
Iteration: 11, Func. Count: 118, Neg. LLF: 95.29058751624908
Iteration: 12, Func. Count: 127, Neg. LLF: 95.29058751595039
Optimization terminated successfully (Exit mode 0)
Current function value: 95.29058751624908
Iterations: 12
Function evaluations: 127
Gradient evaluations: 12
Iteration: 1, Func. Count: 12, Neg. LLF: 22003592.19941935
Iteration: 2, Func. Count: 25, Neg. LLF: 97.77106611019487
Iteration: 3, Func. Count: 37, Neg. LLF: 96.54948111807911
Iteration: 4, Func. Count: 48, Neg. LLF: 100.6055142048882
Iteration: 5, Func. Count: 61, Neg. LLF: 97.7678474295045
Iteration: 6, Func. Count: 73, Neg. LLF: 108.97192548471929
Iteration: 7, Func. Count: 86, Neg. LLF: 95.81045783487176
Iteration: 8, Func. Count: 97, Neg. LLF: 95.7287986520047
Iteration: 9, Func. Count: 108, Neg. LLF: 95.68325842806391
Iteration: 10, Func. Count: 119, Neg. LLF: 95.66784426202298
Iteration: 11, Func. Count: 130, Neg. LLF: 95.6639684245975
Iteration: 12, Func. Count: 141, Neg. LLF: 95.66166961656958
Iteration: 13, Func. Count: 152, Neg. LLF: 95.62534065167519
Iteration: 14, Func. Count: 163, Neg. LLF: 95.60128977549856
Iteration: 15, Func. Count: 174, Neg. LLF: 95.54932133818829
Iteration: 16, Func. Count: 185, Neg. LLF: 100.03058601075918
Iteration: 17, Func. Count: 198, Neg. LLF: 120.58354768337131
Iteration: 18, Func. Count: 211, Neg. LLF: 96.74776254015497
Iteration: 19, Func. Count: 223, Neg. LLF: 104.30041641002164
Iteration: 20, Func. Count: 236, Neg. LLF: 95.29064813447661
Iteration: 21, Func. Count: 247, Neg. LLF: 95.29059685420921
Iteration: 22, Func. Count: 258, Neg. LLF: 95.29058875819517
Iteration: 23, Func. Count: 269, Neg. LLF: 95.29058741054462
Iteration: 24, Func. Count: 279, Neg. LLF: 95.29058751815928
Optimization terminated successfully (Exit mode 0)
Current function value: 95.29058741054462
Iterations: 25
Function evaluations: 279
Gradient evaluations: 24
Iteration: 1, Func. Count: 13, Neg. LLF: 22000093.269515406
Iteration: 2, Func. Count: 27, Neg. LLF: 99.1156544985839
Iteration: 3, Func. Count: 40, Neg. LLF: 95.64064264036706
Iteration: 4, Func. Count: 52, Neg. LLF: 96.97439197623078
Iteration: 5, Func. Count: 66, Neg. LLF: 98.17827550931244
Iteration: 6, Func. Count: 79, Neg. LLF: 95.68881436600655
Iteration: 7, Func. Count: 92, Neg. LLF: 94.76369915897425
Iteration: 8, Func. Count: 104, Neg. LLF: 94.76037945384654
Iteration: 9, Func. Count: 116, Neg. LLF: 94.74961804949278
Iteration: 10, Func. Count: 128, Neg. LLF: 94.74842048654351
Iteration: 11, Func. Count: 140, Neg. LLF: 94.748170723845
Iteration: 12, Func. Count: 152, Neg. LLF: 94.7481665798323
Iteration: 13, Func. Count: 163, Neg. LLF: 94.74816657982873
Optimization terminated successfully (Exit mode 0)
Current function value: 94.7481665798323
Iterations: 13
Function evaluations: 163
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 179.1118468499954
Iteration: 2, Func. Count: 21, Neg. LLF: 144.86653005331095
Iteration: 3, Func. Count: 32, Neg. LLF: 2604115.7892507687
Iteration: 4, Func. Count: 42, Neg. LLF: 4095928.5613890076
Iteration: 5, Func. Count: 52, Neg. LLF: 891887.0720875823
Iteration: 6, Func. Count: 62, Neg. LLF: 3944529.813968027
Iteration: 7, Func. Count: 72, Neg. LLF: 3952375.5897221253
Iteration: 8, Func. Count: 82, Neg. LLF: 119.6120389711606
Iteration: 9, Func. Count: 92, Neg. LLF: 94.9155288950562
Iteration: 10, Func. Count: 102, Neg. LLF: 91.18315466581504
Iteration: 11, Func. Count: 111, Neg. LLF: 90.87750163146384
Iteration: 12, Func. Count: 120, Neg. LLF: 91.16782053873588
Iteration: 13, Func. Count: 130, Neg. LLF: 90.74826149267864
Iteration: 14, Func. Count: 139, Neg. LLF: 90.73979854367965
Iteration: 15, Func. Count: 148, Neg. LLF: 90.73951482583287
Iteration: 16, Func. Count: 157, Neg. LLF: 90.7395122587773
Iteration: 17, Func. Count: 166, Neg. LLF: 90.73985210289453
Optimization terminated successfully (Exit mode 0)
Current function value: 90.73951216253812
Iterations: 18
Function evaluations: 168
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 21998819.70437951
Iteration: 2, Func. Count: 23, Neg. LLF: 99.24080677484095
Iteration: 3, Func. Count: 34, Neg. LLF: 99.02467921369417
Iteration: 4, Func. Count: 45, Neg. LLF: 95.90075023555886
Iteration: 5, Func. Count: 55, Neg. LLF: 95.59550984053757
Iteration: 6, Func. Count: 65, Neg. LLF: 95.59528023264978
Iteration: 7, Func. Count: 76, Neg. LLF: 95.58600675002548
Iteration: 8, Func. Count: 86, Neg. LLF: 99.84956176531253
Iteration: 9, Func. Count: 100, Neg. LLF: 95.5858070218385
Iteration: 10, Func. Count: 110, Neg. LLF: 95.58580476328447
Iteration: 11, Func. Count: 119, Neg. LLF: 95.5858047632829
Optimization terminated successfully (Exit mode 0)
Current function value: 95.58580476328447
Iterations: 12
Function evaluations: 119
Gradient evaluations: 11
Iteration: 1, Func. Count: 12, Neg. LLF: 21980017.56937277
Iteration: 2, Func. Count: 25, Neg. LLF: 97.56799336221484
Iteration: 3, Func. Count: 37, Neg. LLF: 96.48156917294563
Iteration: 4, Func. Count: 48, Neg. LLF: 106.87273153037833
Iteration: 5, Func. Count: 61, Neg. LLF: 96.16801117348022
Iteration: 6, Func. Count: 73, Neg. LLF: 95.86516010052988
Iteration: 7, Func. Count: 85, Neg. LLF: 95.33554428355039
Iteration: 8, Func. Count: 96, Neg. LLF: 95.29999019166242
Iteration: 9, Func. Count: 107, Neg. LLF: 95.29133995281568
Iteration: 10, Func. Count: 118, Neg. LLF: 95.2905988644525
Iteration: 11, Func. Count: 129, Neg. LLF: 95.29058752547975
Iteration: 12, Func. Count: 139, Neg. LLF: 95.29058752517471
Optimization terminated successfully (Exit mode 0)
Current function value: 95.29058752547975
Iterations: 12
Function evaluations: 139
Gradient evaluations: 12
Iteration: 1, Func. Count: 13, Neg. LLF: 22019650.153655913
Iteration: 2, Func. Count: 27, Neg. LLF: 97.7709861302713
Iteration: 3, Func. Count: 40, Neg. LLF: 96.54395951233272
Iteration: 4, Func. Count: 52, Neg. LLF: 100.41075772314596
Iteration: 5, Func. Count: 66, Neg. LLF: 98.37277038260733
Iteration: 6, Func. Count: 79, Neg. LLF: 112.44504300832065
Iteration: 7, Func. Count: 93, Neg. LLF: 95.8007412663634
Iteration: 8, Func. Count: 105, Neg. LLF: 95.7267287399329
Iteration: 9, Func. Count: 117, Neg. LLF: 95.67728149124247
Iteration: 10, Func. Count: 129, Neg. LLF: 95.66512313012332
Iteration: 11, Func. Count: 141, Neg. LLF: 95.66275473193453
Iteration: 12, Func. Count: 153, Neg. LLF: 95.65705373160154
Iteration: 13, Func. Count: 165, Neg. LLF: 95.62883822379126
Iteration: 14, Func. Count: 177, Neg. LLF: 95.61074159123262
Iteration: 15, Func. Count: 189, Neg. LLF: 95.54561915410714
Iteration: 16, Func. Count: 201, Neg. LLF: 100.2509417022479
Iteration: 17, Func. Count: 215, Neg. LLF: 5694137.712118497
Iteration: 18, Func. Count: 230, Neg. LLF: 104.49654356363331
Iteration: 19, Func. Count: 244, Neg. LLF: 188.83827290232836
Iteration: 20, Func. Count: 259, Neg. LLF: 95.36876694078262
Iteration: 21, Func. Count: 271, Neg. LLF: 95.39097630818969
Iteration: 22, Func. Count: 284, Neg. LLF: 95.34386014257352
Iteration: 23, Func. Count: 297, Neg. LLF: 95.29059521044358
Iteration: 24, Func. Count: 309, Neg. LLF: 95.29058782196125
Iteration: 25, Func. Count: 320, Neg. LLF: 95.29058792927395
Optimization terminated successfully (Exit mode 0)
Current function value: 95.29058782196125
Iterations: 26
Function evaluations: 320
Gradient evaluations: 25
Iteration: 1, Func. Count: 14, Neg. LLF: 22024737.144828185
Iteration: 2, Func. Count: 29, Neg. LLF: 98.89008632275257
Iteration: 3, Func. Count: 43, Neg. LLF: 95.70301036267811
Iteration: 4, Func. Count: 56, Neg. LLF: 97.88700424469648
Iteration: 5, Func. Count: 71, Neg. LLF: 121.03126128108269
Iteration: 6, Func. Count: 86, Neg. LLF: 96.20427166353493
Iteration: 7, Func. Count: 100, Neg. LLF: 94.79716693721485
Iteration: 8, Func. Count: 113, Neg. LLF: 94.77198213338097
Iteration: 9, Func. Count: 126, Neg. LLF: 94.75544062612775
Iteration: 10, Func. Count: 139, Neg. LLF: 94.75269449249227
Iteration: 11, Func. Count: 152, Neg. LLF: 94.75115936235599
Iteration: 12, Func. Count: 165, Neg. LLF: 94.748929804699
Iteration: 13, Func. Count: 178, Neg. LLF: 94.74820195723048
Iteration: 14, Func. Count: 191, Neg. LLF: 94.74816675103972
Iteration: 15, Func. Count: 204, Neg. LLF: 94.74816497281962
Iteration: 16, Func. Count: 216, Neg. LLF: 94.74816497285022
Optimization terminated successfully (Exit mode 0)
Current function value: 94.74816497281962
Iterations: 16
Function evaluations: 216
Gradient evaluations: 16
Iteration: 1, Func. Count: 7, Neg. LLF: 128.36775527922214
Iteration: 2, Func. Count: 15, Neg. LLF: 148.8029186269376
Iteration: 3, Func. Count: 22, Neg. LLF: 96.29452390803144
Iteration: 4, Func. Count: 28, Neg. LLF: 8934.783347651675
Iteration: 5, Func. Count: 35, Neg. LLF: 97.23608438920606
Iteration: 6, Func. Count: 42, Neg. LLF: 95.34288686212639
Iteration: 7, Func. Count: 48, Neg. LLF: 95.30113131489186
Iteration: 8, Func. Count: 54, Neg. LLF: 95.28699112808033
Iteration: 9, Func. Count: 60, Neg. LLF: 95.28522341376122
Iteration: 10, Func. Count: 66, Neg. LLF: 95.28520731163785
Iteration: 11, Func. Count: 71, Neg. LLF: 95.28520731892685
Optimization terminated successfully (Exit mode 0)
Current function value: 95.28520731163785
Iterations: 11
Function evaluations: 71
Gradient evaluations: 11
Iteration: 1, Func. Count: 8, Neg. LLF: 21936405.463701796
Iteration: 2, Func. Count: 17, Neg. LLF: 99.01418166342623
Iteration: 3, Func. Count: 25, Neg. LLF: 97.07663852535465
Iteration: 4, Func. Count: 32, Neg. LLF: 112.3154311120196
Iteration: 5, Func. Count: 41, Neg. LLF: 925.4964716143672
Iteration: 6, Func. Count: 50, Neg. LLF: 95.66020429090077
Iteration: 7, Func. Count: 57, Neg. LLF: 95.59360907544938
Iteration: 8, Func. Count: 64, Neg. LLF: 95.585971842221
Iteration: 9, Func. Count: 71, Neg. LLF: 95.58580499917363
Iteration: 10, Func. Count: 77, Neg. LLF: 95.58580500033422
Optimization terminated successfully (Exit mode 0)
Current function value: 95.58580499917363
Iterations: 10
Function evaluations: 77
Gradient evaluations: 10
Iteration: 1, Func. Count: 9, Neg. LLF: 22033723.99985159
Iteration: 2, Func. Count: 19, Neg. LLF: 97.53595888185347
Iteration: 3, Func. Count: 28, Neg. LLF: 96.30210075237513
Iteration: 4, Func. Count: 36, Neg. LLF: 105.04193505548525
Iteration: 5, Func. Count: 45, Neg. LLF: 95.90505660755021
Iteration: 6, Func. Count: 53, Neg. LLF: 95.55092889979541
Iteration: 7, Func. Count: 61, Neg. LLF: 95.54190921986368
Iteration: 8, Func. Count: 69, Neg. LLF: 95.54169474480796
Iteration: 9, Func. Count: 76, Neg. LLF: 95.54169474534184
Optimization terminated successfully (Exit mode 0)
Current function value: 95.54169474480796
Iterations: 9
Function evaluations: 76
Gradient evaluations: 9
Iteration: 1, Func. Count: 10, Neg. LLF: 22033018.719826486
Iteration: 2, Func. Count: 21, Neg. LLF: 97.80679199848106
Iteration: 3, Func. Count: 31, Neg. LLF: 96.40362412169166
Iteration: 4, Func. Count: 40, Neg. LLF: 96.44699412388368
Iteration: 5, Func. Count: 50, Neg. LLF: 98.57167733817683
Iteration: 6, Func. Count: 62, Neg. LLF: 99.18676371826594
Iteration: 7, Func. Count: 72, Neg. LLF: 95.74202059560956
Iteration: 8, Func. Count: 81, Neg. LLF: 95.62529462846064
Iteration: 9, Func. Count: 90, Neg. LLF: 95.61031494155888
Iteration: 10, Func. Count: 99, Neg. LLF: 95.60173265928611
Iteration: 11, Func. Count: 108, Neg. LLF: 95.58030296069812
Iteration: 12, Func. Count: 117, Neg. LLF: 95.56744985285296
Iteration: 13, Func. Count: 126, Neg. LLF: 95.56127594804056
Iteration: 14, Func. Count: 135, Neg. LLF: 95.56467959285037
Iteration: 15, Func. Count: 145, Neg. LLF: 95.56025454067348
Iteration: 16, Func. Count: 154, Neg. LLF: 95.56023676493918
Iteration: 17, Func. Count: 162, Neg. LLF: 95.560236764943
Optimization terminated successfully (Exit mode 0)
Current function value: 95.56023676493918
Iterations: 17
Function evaluations: 162
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 22016828.372410014
Iteration: 2, Func. Count: 23, Neg. LLF: 98.12356866878626
Iteration: 3, Func. Count: 34, Neg. LLF: 95.90721202763768
Iteration: 4, Func. Count: 44, Neg. LLF: 95.85675484643501
Iteration: 5, Func. Count: 54, Neg. LLF: 96.20546016588247
Iteration: 6, Func. Count: 65, Neg. LLF: 95.71611415032105
Iteration: 7, Func. Count: 75, Neg. LLF: 95.66542040645888
Iteration: 8, Func. Count: 85, Neg. LLF: 95.65668139968237
Iteration: 9, Func. Count: 95, Neg. LLF: 95.65419842383915
Iteration: 10, Func. Count: 105, Neg. LLF: 95.65358075538627
Iteration: 11, Func. Count: 115, Neg. LLF: 95.65357849035978
Iteration: 12, Func. Count: 124, Neg. LLF: 95.65357849033217
Optimization terminated successfully (Exit mode 0)
Current function value: 95.65357849035978
Iterations: 12
Function evaluations: 124
Gradient evaluations: 12
Iteration: 1, Func. Count: 8, Neg. LLF: 130.887901509013
Iteration: 2, Func. Count: 17, Neg. LLF: 149.24254003614502
Iteration: 3, Func. Count: 25, Neg. LLF: 98.42103929168844
Iteration: 4, Func. Count: 32, Neg. LLF: 96.9107007859805
Iteration: 5, Func. Count: 40, Neg. LLF: 95.95420137039044
Iteration: 6, Func. Count: 48, Neg. LLF: 95.78206713772866
Iteration: 7, Func. Count: 55, Neg. LLF: 95.73429949195642
Iteration: 8, Func. Count: 62, Neg. LLF: 95.71163647715265
Iteration: 9, Func. Count: 69, Neg. LLF: 95.70865109129099
Iteration: 10, Func. Count: 76, Neg. LLF: 95.70818942940926
Iteration: 11, Func. Count: 83, Neg. LLF: 95.70808779357223
Iteration: 12, Func. Count: 90, Neg. LLF: 95.7080027309389
Iteration: 13, Func. Count: 97, Neg. LLF: 95.70785587639804
Iteration: 14, Func. Count: 104, Neg. LLF: 95.70765298265486
Iteration: 15, Func. Count: 111, Neg. LLF: 95.69845982295857
Iteration: 16, Func. Count: 118, Neg. LLF: 95.41704021530902
Iteration: 17, Func. Count: 125, Neg. LLF: 95.57049951685008
Iteration: 18, Func. Count: 133, Neg. LLF: 95.34790031473352
Iteration: 19, Func. Count: 140, Neg. LLF: 95.29119489874157
Iteration: 20, Func. Count: 147, Neg. LLF: 95.28580007299037
Iteration: 21, Func. Count: 154, Neg. LLF: 95.28524826703011
Iteration: 22, Func. Count: 161, Neg. LLF: 95.28520694826888
Iteration: 23, Func. Count: 167, Neg. LLF: 95.2852066873986
Optimization terminated successfully (Exit mode 0)
Current function value: 95.28520694826888
Iterations: 23
Function evaluations: 167
Gradient evaluations: 23
Iteration: 1, Func. Count: 9, Neg. LLF: 21971875.78624577
Iteration: 2, Func. Count: 19, Neg. LLF: 99.29769687921127
Iteration: 3, Func. Count: 28, Neg. LLF: 98.9760881658279
Iteration: 4, Func. Count: 37, Neg. LLF: 95.82442130008907
Iteration: 5, Func. Count: 45, Neg. LLF: 95.67665531120055
Iteration: 6, Func. Count: 53, Neg. LLF: 187.14274730875
Iteration: 7, Func. Count: 66, Neg. LLF: 97.07117099419979
Iteration: 8, Func. Count: 75, Neg. LLF: 95.58671813646166
Iteration: 9, Func. Count: 83, Neg. LLF: 95.58580490291143
Iteration: 10, Func. Count: 90, Neg. LLF: 95.58580490390538
Optimization terminated successfully (Exit mode 0)
Current function value: 95.58580490291143
Iterations: 11
Function evaluations: 90
Gradient evaluations: 10
Iteration: 1, Func. Count: 10, Neg. LLF: 21913333.038987666
Iteration: 2, Func. Count: 21, Neg. LLF: 97.73674306299523
Iteration: 3, Func. Count: 31, Neg. LLF: 96.6009868021243
Iteration: 4, Func. Count: 40, Neg. LLF: 107.0662866389646
Iteration: 5, Func. Count: 50, Neg. LLF: 96.5236630146262
Iteration: 6, Func. Count: 60, Neg. LLF: 96.16560964073341
Iteration: 7, Func. Count: 70, Neg. LLF: 95.3246878303561
Iteration: 8, Func. Count: 79, Neg. LLF: 95.29397106766879
Iteration: 9, Func. Count: 88, Neg. LLF: 95.29079278779035
Iteration: 10, Func. Count: 97, Neg. LLF: 95.29058899825571
Iteration: 11, Func. Count: 106, Neg. LLF: 95.29058745062993
Iteration: 12, Func. Count: 114, Neg. LLF: 95.29058745060952
Optimization terminated successfully (Exit mode 0)
Current function value: 95.29058745062993
Iterations: 12
Function evaluations: 114
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 21952828.22211505
Iteration: 2, Func. Count: 23, Neg. LLF: 97.91446972887788
Iteration: 3, Func. Count: 34, Neg. LLF: 96.42064028203507
Iteration: 4, Func. Count: 44, Neg. LLF: 100.39638215711157
Iteration: 5, Func. Count: 55, Neg. LLF: 96.99612563625261
Iteration: 6, Func. Count: 66, Neg. LLF: 95.80205483476398
Iteration: 7, Func. Count: 76, Neg. LLF: 95.69904155375559
Iteration: 8, Func. Count: 86, Neg. LLF: 95.67274505476861
Iteration: 9, Func. Count: 96, Neg. LLF: 95.6572996625323
Iteration: 10, Func. Count: 106, Neg. LLF: 95.63308562619211
Iteration: 11, Func. Count: 116, Neg. LLF: 95.6203973286354
Iteration: 12, Func. Count: 126, Neg. LLF: 95.61904672202441
Iteration: 13, Func. Count: 136, Neg. LLF: 95.6099893412131
Iteration: 14, Func. Count: 146, Neg. LLF: 95.58805128261824
Iteration: 15, Func. Count: 156, Neg. LLF: 100.02159107170559
Iteration: 16, Func. Count: 168, Neg. LLF: 9934.54668677344
Iteration: 17, Func. Count: 182, Neg. LLF: 95.58580478752874
Iteration: 18, Func. Count: 191, Neg. LLF: 95.58580479150581
Optimization terminated successfully (Exit mode 0)
Current function value: 95.58580478752874
Iterations: 19
Function evaluations: 191
Gradient evaluations: 18
Iteration: 1, Func. Count: 12, Neg. LLF: 21954293.98887681
Iteration: 2, Func. Count: 25, Neg. LLF: 99.40522227773876
Iteration: 3, Func. Count: 37, Neg. LLF: 95.80166405327668
Iteration: 4, Func. Count: 48, Neg. LLF: 97.50323319749623
Iteration: 5, Func. Count: 61, Neg. LLF: 99.05237149858105
Iteration: 6, Func. Count: 73, Neg. LLF: 95.89496331362432
Iteration: 7, Func. Count: 85, Neg. LLF: 94.76599075761357
Iteration: 8, Func. Count: 96, Neg. LLF: 94.76254831150732
Iteration: 9, Func. Count: 107, Neg. LLF: 94.74962919941918
Iteration: 10, Func. Count: 118, Neg. LLF: 94.74843831520438
Iteration: 11, Func. Count: 129, Neg. LLF: 94.74817232916932
Iteration: 12, Func. Count: 140, Neg. LLF: 94.74816659450718
Iteration: 13, Func. Count: 150, Neg. LLF: 94.74816659458244
Optimization terminated successfully (Exit mode 0)
Current function value: 94.74816659450718
Iterations: 13
Function evaluations: 150
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 132.3214663822988
Iteration: 2, Func. Count: 19, Neg. LLF: 216.6423582385146
Iteration: 3, Func. Count: 28, Neg. LLF: 227.4057359677551
Iteration: 4, Func. Count: 37, Neg. LLF: 3537124.8953731433
Iteration: 5, Func. Count: 46, Neg. LLF: 102.07379440027458
Iteration: 6, Func. Count: 55, Neg. LLF: 96.42718945503017
Iteration: 7, Func. Count: 63, Neg. LLF: 95.84380756573788
Iteration: 8, Func. Count: 71, Neg. LLF: 95.66543662145257
Iteration: 9, Func. Count: 79, Neg. LLF: 95.64487913334298
Iteration: 10, Func. Count: 87, Neg. LLF: 95.63811061799625
Iteration: 11, Func. Count: 95, Neg. LLF: 95.6372375958287
Iteration: 12, Func. Count: 103, Neg. LLF: 95.63721024451952
Iteration: 13, Func. Count: 111, Neg. LLF: 95.63720652282149
Iteration: 14, Func. Count: 119, Neg. LLF: 95.63720593680074
Optimization terminated successfully (Exit mode 0)
Current function value: 95.63720593680074
Iterations: 14
Function evaluations: 119
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 21919758.862965245
Iteration: 2, Func. Count: 21, Neg. LLF: 99.45015290281046
Iteration: 3, Func. Count: 31, Neg. LLF: 99.20791827418697
Iteration: 4, Func. Count: 41, Neg. LLF: 96.07151606001203
Iteration: 5, Func. Count: 50, Neg. LLF: 97.14344703479874
Iteration: 6, Func. Count: 60, Neg. LLF: 97.34708377641061
Iteration: 7, Func. Count: 70, Neg. LLF: 95.58582249679438
Iteration: 8, Func. Count: 79, Neg. LLF: 95.58580864206631
Iteration: 9, Func. Count: 88, Neg. LLF: 95.58580801825823
Optimization terminated successfully (Exit mode 0)
Current function value: 95.58580801825823
Iterations: 9
Function evaluations: 88
Gradient evaluations: 9
Iteration: 1, Func. Count: 11, Neg. LLF: 21914327.556000445
Iteration: 2, Func. Count: 23, Neg. LLF: 97.70694160886404
Iteration: 3, Func. Count: 34, Neg. LLF: 96.52514472898686
Iteration: 4, Func. Count: 44, Neg. LLF: 106.83466785059356
Iteration: 5, Func. Count: 55, Neg. LLF: 96.08394649631298
Iteration: 6, Func. Count: 66, Neg. LLF: 96.27564105669765
Iteration: 7, Func. Count: 77, Neg. LLF: 95.31280888899629
Iteration: 8, Func. Count: 87, Neg. LLF: 95.2921732656404
Iteration: 9, Func. Count: 97, Neg. LLF: 95.29065656282438
Iteration: 10, Func. Count: 107, Neg. LLF: 95.29058767598849
Iteration: 11, Func. Count: 116, Neg. LLF: 95.29058767557325
Optimization terminated successfully (Exit mode 0)
Current function value: 95.29058767598849
Iterations: 11
Function evaluations: 116
Gradient evaluations: 11
Iteration: 1, Func. Count: 12, Neg. LLF: 21942733.01927046
Iteration: 2, Func. Count: 25, Neg. LLF: 97.91659734434221
Iteration: 3, Func. Count: 37, Neg. LLF: 96.55358837559972
Iteration: 4, Func. Count: 48, Neg. LLF: 100.36115474407403
Iteration: 5, Func. Count: 61, Neg. LLF: 97.76875768429831
Iteration: 6, Func. Count: 73, Neg. LLF: 96.57075475668476
Iteration: 7, Func. Count: 85, Neg. LLF: 95.70047340013025
Iteration: 8, Func. Count: 96, Neg. LLF: 95.68040737686543
Iteration: 9, Func. Count: 107, Neg. LLF: 95.66893011581907
Iteration: 10, Func. Count: 118, Neg. LLF: 95.66590618988124
Iteration: 11, Func. Count: 129, Neg. LLF: 95.66361509877007
Iteration: 12, Func. Count: 140, Neg. LLF: 95.65156382486325
Iteration: 13, Func. Count: 151, Neg. LLF: 95.59823444316383
Iteration: 14, Func. Count: 162, Neg. LLF: 95.57720473514466
Iteration: 15, Func. Count: 173, Neg. LLF: 7043165.788580081
Iteration: 16, Func. Count: 187, Neg. LLF: 108.61196781722792
Iteration: 17, Func. Count: 200, Neg. LLF: 95.29542034603982
Iteration: 18, Func. Count: 211, Neg. LLF: 96.26873951556948
Iteration: 19, Func. Count: 224, Neg. LLF: 95.29244774343378
Iteration: 20, Func. Count: 235, Neg. LLF: 95.29165419205343
Iteration: 21, Func. Count: 246, Neg. LLF: 95.29082431713822
Iteration: 22, Func. Count: 257, Neg. LLF: 95.29060651254707
Iteration: 23, Func. Count: 268, Neg. LLF: 95.29058793095703
Iteration: 24, Func. Count: 278, Neg. LLF: 95.29058803958087
Optimization terminated successfully (Exit mode 0)
Current function value: 95.29058793095703
Iterations: 25
Function evaluations: 278
Gradient evaluations: 24
Iteration: 1, Func. Count: 13, Neg. LLF: 21946950.91712316
Iteration: 2, Func. Count: 27, Neg. LLF: 99.48782090998614
Iteration: 3, Func. Count: 40, Neg. LLF: 95.66869437475782
Iteration: 4, Func. Count: 52, Neg. LLF: 96.7131377730824
Iteration: 5, Func. Count: 66, Neg. LLF: 98.42722277291426
Iteration: 6, Func. Count: 79, Neg. LLF: 95.61720864205967
Iteration: 7, Func. Count: 92, Neg. LLF: 94.76733198823958
Iteration: 8, Func. Count: 104, Neg. LLF: 94.76317002028769
Iteration: 9, Func. Count: 116, Neg. LLF: 94.7498007982285
Iteration: 10, Func. Count: 128, Neg. LLF: 94.74851977222767
Iteration: 11, Func. Count: 140, Neg. LLF: 94.74817251074931
Iteration: 12, Func. Count: 152, Neg. LLF: 94.74816659397358
Iteration: 13, Func. Count: 163, Neg. LLF: 94.74816659397479
Optimization terminated successfully (Exit mode 0)
Current function value: 94.74816659397358
Iterations: 13
Function evaluations: 163
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 114.8473619164273
Iteration: 2, Func. Count: 21, Neg. LLF: 149.51677981852532
Iteration: 3, Func. Count: 31, Neg. LLF: 3957150.4842192163
Iteration: 4, Func. Count: 41, Neg. LLF: 4470608.820562993
Iteration: 5, Func. Count: 51, Neg. LLF: 2584836.330688965
Iteration: 6, Func. Count: 61, Neg. LLF: 4775544.119898783
Iteration: 7, Func. Count: 71, Neg. LLF: 4478370.724968638
Iteration: 8, Func. Count: 81, Neg. LLF: 105.95984314663505
Iteration: 9, Func. Count: 91, Neg. LLF: 128.28903497828912
Iteration: 10, Func. Count: 101, Neg. LLF: 92.11941065515833
Iteration: 11, Func. Count: 110, Neg. LLF: 91.13257819537749
Iteration: 12, Func. Count: 119, Neg. LLF: 94.46462499019768
Iteration: 13, Func. Count: 130, Neg. LLF: 90.94554203887546
Iteration: 14, Func. Count: 139, Neg. LLF: 90.84152124027925
Iteration: 15, Func. Count: 148, Neg. LLF: 90.74149271708748
Iteration: 16, Func. Count: 157, Neg. LLF: 90.733333327547
Iteration: 17, Func. Count: 166, Neg. LLF: 90.73270769095312
Iteration: 18, Func. Count: 175, Neg. LLF: 90.73268325938493
Iteration: 19, Func. Count: 184, Neg. LLF: 90.73268262211114
Optimization terminated successfully (Exit mode 0)
Current function value: 90.73268262211114
Iterations: 19
Function evaluations: 184
Gradient evaluations: 19
Iteration: 1, Func. Count: 11, Neg. LLF: 21879084.89321071
Iteration: 2, Func. Count: 23, Neg. LLF: 99.71391815382498
Iteration: 3, Func. Count: 34, Neg. LLF: 99.23465668185189
Iteration: 4, Func. Count: 45, Neg. LLF: 97.06506277980753
Iteration: 5, Func. Count: 55, Neg. LLF: 135.7190099778545
Iteration: 6, Func. Count: 67, Neg. LLF: 358294494.0207978
Iteration: 7, Func. Count: 79, Neg. LLF: 95.5985261810398
Iteration: 8, Func. Count: 89, Neg. LLF: 95.58600739169745
Iteration: 9, Func. Count: 99, Neg. LLF: 95.58580506954222
Iteration: 10, Func. Count: 108, Neg. LLF: 95.58580506824218
Optimization terminated successfully (Exit mode 0)
Current function value: 95.58580506954222
Iterations: 10
Function evaluations: 108
Gradient evaluations: 10
Iteration: 1, Func. Count: 12, Neg. LLF: 21872172.47552821
Iteration: 2, Func. Count: 25, Neg. LLF: 97.97202750668447
Iteration: 3, Func. Count: 37, Neg. LLF: 96.60476379521954
Iteration: 4, Func. Count: 48, Neg. LLF: 102.03231048931208
Iteration: 5, Func. Count: 60, Neg. LLF: 99.95908559542904
Iteration: 6, Func. Count: 73, Neg. LLF: 96.81719612675278
Iteration: 7, Func. Count: 85, Neg. LLF: 95.41148558704917
Iteration: 8, Func. Count: 96, Neg. LLF: 95.38430576058106
Iteration: 9, Func. Count: 107, Neg. LLF: 95.36626301335187
Iteration: 10, Func. Count: 118, Neg. LLF: 95.3058915565353
Iteration: 11, Func. Count: 129, Neg. LLF: 95.29383588295234
Iteration: 12, Func. Count: 140, Neg. LLF: 95.29052489910185
Iteration: 13, Func. Count: 151, Neg. LLF: 95.29010305859009
Iteration: 14, Func. Count: 162, Neg. LLF: 95.29005325092092
Iteration: 15, Func. Count: 173, Neg. LLF: 102.08919417024154
Optimization terminated successfully (Exit mode 0)
Current function value: 95.29005291825818
Iterations: 16
Function evaluations: 177
Gradient evaluations: 15
Iteration: 1, Func. Count: 13, Neg. LLF: 21887599.25892149
Iteration: 2, Func. Count: 27, Neg. LLF: 98.31683552142037
Iteration: 3, Func. Count: 40, Neg. LLF: 96.54088680909406
Iteration: 4, Func. Count: 52, Neg. LLF: 99.26763162778093
Iteration: 5, Func. Count: 66, Neg. LLF: 97.48379833886652
Iteration: 6, Func. Count: 80, Neg. LLF: 97.22579147846302
Iteration: 7, Func. Count: 93, Neg. LLF: 95.73269270370751
Iteration: 8, Func. Count: 105, Neg. LLF: 95.70364449407339
Iteration: 9, Func. Count: 117, Neg. LLF: 95.66710234817828
Iteration: 10, Func. Count: 129, Neg. LLF: 95.66467998234832
Iteration: 11, Func. Count: 141, Neg. LLF: 95.66320411062424
Iteration: 12, Func. Count: 153, Neg. LLF: 95.64923311616181
Iteration: 13, Func. Count: 165, Neg. LLF: 95.568063707597
Iteration: 14, Func. Count: 177, Neg. LLF: 98.71300393747978
Iteration: 15, Func. Count: 191, Neg. LLF: 22274467.871879578
Iteration: 16, Func. Count: 206, Neg. LLF: 99.21119437777399
Iteration: 17, Func. Count: 220, Neg. LLF: 98.72499742735694
Iteration: 18, Func. Count: 233, Neg. LLF: 95.29146805753832
Iteration: 19, Func. Count: 245, Neg. LLF: 95.29028510935629
Iteration: 20, Func. Count: 257, Neg. LLF: 95.29015602009596
Iteration: 21, Func. Count: 269, Neg. LLF: 95.2900691490727
Iteration: 22, Func. Count: 281, Neg. LLF: 95.29004558915442
Iteration: 23, Func. Count: 293, Neg. LLF: 95.29004160880788
Iteration: 24, Func. Count: 304, Neg. LLF: 95.29004171660671
Optimization terminated successfully (Exit mode 0)
Current function value: 95.29004160880788
Iterations: 25
Function evaluations: 304
Gradient evaluations: 24
Iteration: 1, Func. Count: 14, Neg. LLF: 21893158.378133453
Iteration: 2, Func. Count: 29, Neg. LLF: 100.01729528456211
Iteration: 3, Func. Count: 43, Neg. LLF: 95.57123962855398
Iteration: 4, Func. Count: 56, Neg. LLF: 96.03650493574438
Iteration: 5, Func. Count: 71, Neg. LLF: 97.56799917967619
Iteration: 6, Func. Count: 85, Neg. LLF: 94.93421345177111
Iteration: 7, Func. Count: 99, Neg. LLF: 94.77092526849823
Iteration: 8, Func. Count: 112, Neg. LLF: 94.76423301593306
Iteration: 9, Func. Count: 125, Neg. LLF: 94.75292966341287
Iteration: 10, Func. Count: 138, Neg. LLF: 94.7492955449936
Iteration: 11, Func. Count: 151, Neg. LLF: 94.74822382961861
Iteration: 12, Func. Count: 164, Neg. LLF: 94.74816672586304
Iteration: 13, Func. Count: 176, Neg. LLF: 94.74816672594494
Optimization terminated successfully (Exit mode 0)
Current function value: 94.74816672586304
Iterations: 13
Function evaluations: 176
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 122.19041311591995
Iteration: 2, Func. Count: 23, Neg. LLF: 155.26557766046128
Iteration: 3, Func. Count: 34, Neg. LLF: 2272635.1276788306
Iteration: 4, Func. Count: 45, Neg. LLF: 4560900.330817791
Iteration: 5, Func. Count: 56, Neg. LLF: 4773095.875492197
Iteration: 6, Func. Count: 67, Neg. LLF: 4502873.552780545
Iteration: 7, Func. Count: 78, Neg. LLF: 4869969.144631787
Iteration: 8, Func. Count: 89, Neg. LLF: 4751862.378953818
Iteration: 9, Func. Count: 100, Neg. LLF: 102.59326837187143
Iteration: 10, Func. Count: 111, Neg. LLF: 2270811.7915879632
Iteration: 11, Func. Count: 122, Neg. LLF: 93.43681421805111
Iteration: 12, Func. Count: 133, Neg. LLF: 92.2857915660156
Iteration: 13, Func. Count: 144, Neg. LLF: 91.07319971895062
Iteration: 14, Func. Count: 154, Neg. LLF: 90.90999028297931
Iteration: 15, Func. Count: 164, Neg. LLF: 90.772126406767
Iteration: 16, Func. Count: 174, Neg. LLF: 90.7634545291413
Iteration: 17, Func. Count: 185, Neg. LLF: 90.73346607635885
Iteration: 18, Func. Count: 195, Neg. LLF: 90.73280266517563
Iteration: 19, Func. Count: 205, Neg. LLF: 90.73269185562816
Iteration: 20, Func. Count: 215, Neg. LLF: 90.7326866245499
Iteration: 21, Func. Count: 225, Neg. LLF: 90.73268596574394
Optimization terminated successfully (Exit mode 0)
Current function value: 90.73268596574394
Iterations: 21
Function evaluations: 225
Gradient evaluations: 21
Iteration: 1, Func. Count: 12, Neg. LLF: 21883057.06890281
Iteration: 2, Func. Count: 25, Neg. LLF: 99.6865522998447
Iteration: 3, Func. Count: 37, Neg. LLF: 99.2678135235783
Iteration: 4, Func. Count: 49, Neg. LLF: 96.86192107553948
Iteration: 5, Func. Count: 60, Neg. LLF: 122.32167595482242
Iteration: 6, Func. Count: 73, Neg. LLF: 456513840.76001364
Iteration: 7, Func. Count: 86, Neg. LLF: 95.59386263647339
Iteration: 8, Func. Count: 97, Neg. LLF: 95.58591405616073
Iteration: 9, Func. Count: 108, Neg. LLF: 95.58580485271409
Iteration: 10, Func. Count: 118, Neg. LLF: 95.5858048532459
Optimization terminated successfully (Exit mode 0)
Current function value: 95.58580485271409
Iterations: 10
Function evaluations: 118
Gradient evaluations: 10
Iteration: 1, Func. Count: 13, Neg. LLF: 21878375.730107784
Iteration: 2, Func. Count: 27, Neg. LLF: 97.9382489394021
Iteration: 3, Func. Count: 40, Neg. LLF: 96.6038389183536
Iteration: 4, Func. Count: 52, Neg. LLF: 102.22984886472335
Iteration: 5, Func. Count: 65, Neg. LLF: 99.28838218044238
Iteration: 6, Func. Count: 79, Neg. LLF: 98.86659201687115
Iteration: 7, Func. Count: 92, Neg. LLF: 95.42266419325838
Iteration: 8, Func. Count: 104, Neg. LLF: 95.38652340472579
Iteration: 9, Func. Count: 116, Neg. LLF: 95.36458998470675
Iteration: 10, Func. Count: 128, Neg. LLF: 95.29768607668127
Iteration: 11, Func. Count: 140, Neg. LLF: 95.2911339674968
Iteration: 12, Func. Count: 152, Neg. LLF: 95.29052028150087
Iteration: 13, Func. Count: 164, Neg. LLF: 95.29016243101212
Iteration: 14, Func. Count: 176, Neg. LLF: 95.29007114856255
Iteration: 15, Func. Count: 188, Neg. LLF: 95.29007786555584
Iteration: 16, Func. Count: 201, Neg. LLF: 95.29006954601532
Iteration: 17, Func. Count: 214, Neg. LLF: 95.29004126738162
Iteration: 18, Func. Count: 226, Neg. LLF: 95.290039278649
Optimization terminated successfully (Exit mode 0)
Current function value: 95.29004126725862
Iterations: 18
Function evaluations: 236
Gradient evaluations: 18
Iteration: 1, Func. Count: 14, Neg. LLF: 21895315.107382618
Iteration: 2, Func. Count: 29, Neg. LLF: 98.27399335010136
Iteration: 3, Func. Count: 43, Neg. LLF: 96.5342922977804
Iteration: 4, Func. Count: 56, Neg. LLF: 99.20196170759706
Iteration: 5, Func. Count: 71, Neg. LLF: 97.46809063303864
Iteration: 6, Func. Count: 86, Neg. LLF: 100.55966274553546
Iteration: 7, Func. Count: 101, Neg. LLF: 95.78468377851235
Iteration: 8, Func. Count: 114, Neg. LLF: 95.71688213180288
Iteration: 9, Func. Count: 127, Neg. LLF: 95.68938195710751
Iteration: 10, Func. Count: 140, Neg. LLF: 95.6675242711746
Iteration: 11, Func. Count: 153, Neg. LLF: 95.66461267808681
Iteration: 12, Func. Count: 166, Neg. LLF: 95.66343145007048
Iteration: 13, Func. Count: 179, Neg. LLF: 95.65196671190536
Iteration: 14, Func. Count: 192, Neg. LLF: 95.57169420026038
Iteration: 15, Func. Count: 205, Neg. LLF: 96.96041995826407
Iteration: 16, Func. Count: 220, Neg. LLF: 22033659.613226246
Iteration: 17, Func. Count: 236, Neg. LLF: 98.42949365344799
Iteration: 18, Func. Count: 251, Neg. LLF: 96.43920310924528
Iteration: 19, Func. Count: 265, Neg. LLF: 95.29522817157105
Iteration: 20, Func. Count: 278, Neg. LLF: 95.29182027022303
Iteration: 21, Func. Count: 291, Neg. LLF: 95.29059608352452
Iteration: 22, Func. Count: 304, Neg. LLF: 95.29015850111048
Iteration: 23, Func. Count: 317, Neg. LLF: 95.29005003475359
Iteration: 24, Func. Count: 330, Neg. LLF: 95.2900417735981
Iteration: 25, Func. Count: 342, Neg. LLF: 95.29004188169536
Optimization terminated successfully (Exit mode 0)
Current function value: 95.2900417735981
Iterations: 26
Function evaluations: 342
Gradient evaluations: 25
Iteration: 1, Func. Count: 15, Neg. LLF: 21906292.670397867
Iteration: 2, Func. Count: 31, Neg. LLF: 99.71547082726173
Iteration: 3, Func. Count: 46, Neg. LLF: 95.62656143035194
Iteration: 4, Func. Count: 60, Neg. LLF: 96.38218860125575
Iteration: 5, Func. Count: 76, Neg. LLF: 141.12913589656807
Iteration: 6, Func. Count: 92, Neg. LLF: 96.34784148169919
Iteration: 7, Func. Count: 107, Neg. LLF: 94.83247927906321
Iteration: 8, Func. Count: 121, Neg. LLF: 94.7816293809702
Iteration: 9, Func. Count: 135, Neg. LLF: 94.76334565446665
Iteration: 10, Func. Count: 149, Neg. LLF: 94.75626365896878
Iteration: 11, Func. Count: 163, Neg. LLF: 94.75273958660745
Iteration: 12, Func. Count: 177, Neg. LLF: 94.74902245154959
Iteration: 13, Func. Count: 191, Neg. LLF: 94.7483361449494
Iteration: 14, Func. Count: 205, Neg. LLF: 94.74816943134658
Iteration: 15, Func. Count: 219, Neg. LLF: 94.74816507398921
Iteration: 16, Func. Count: 232, Neg. LLF: 94.74816507404897
Optimization terminated successfully (Exit mode 0)
Current function value: 94.74816507398921
Iterations: 16
Function evaluations: 232
Gradient evaluations: 16
Iteration: 1, Func. Count: 8, Neg. LLF: 127.39300761802615
Iteration: 2, Func. Count: 17, Neg. LLF: 150.2503539255033
Iteration: 3, Func. Count: 25, Neg. LLF: 96.37042426253272
Iteration: 4, Func. Count: 32, Neg. LLF: 1307.8379954709487
Iteration: 5, Func. Count: 40, Neg. LLF: 97.37314166369458
Iteration: 6, Func. Count: 48, Neg. LLF: 95.82004825363236
Iteration: 7, Func. Count: 56, Neg. LLF: 95.30734456379054
Iteration: 8, Func. Count: 63, Neg. LLF: 95.28831027602268
Iteration: 9, Func. Count: 70, Neg. LLF: 95.28524436033464
Iteration: 10, Func. Count: 77, Neg. LLF: 95.28520689838439
Iteration: 11, Func. Count: 83, Neg. LLF: 95.2852073139444
Optimization terminated successfully (Exit mode 0)
Current function value: 95.28520689838439
Iterations: 11
Function evaluations: 83
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 21947202.686267387
Iteration: 2, Func. Count: 19, Neg. LLF: 99.12635441076489
Iteration: 3, Func. Count: 28, Neg. LLF: 97.05254851351553
Iteration: 4, Func. Count: 36, Neg. LLF: 109.66255595236402
Iteration: 5, Func. Count: 46, Neg. LLF: 711.5984490742023
Iteration: 6, Func. Count: 56, Neg. LLF: 95.65995887448636
Iteration: 7, Func. Count: 64, Neg. LLF: 95.59403978460534
Iteration: 8, Func. Count: 72, Neg. LLF: 95.58589762143205
Iteration: 9, Func. Count: 80, Neg. LLF: 95.58580566116015
Iteration: 10, Func. Count: 88, Neg. LLF: 95.58580479831792
Optimization terminated successfully (Exit mode 0)
Current function value: 95.58580479831792
Iterations: 10
Function evaluations: 88
Gradient evaluations: 10
Iteration: 1, Func. Count: 10, Neg. LLF: 22039724.447303273
Iteration: 2, Func. Count: 21, Neg. LLF: 97.61149196848135
Iteration: 3, Func. Count: 31, Neg. LLF: 96.29850592762027
Iteration: 4, Func. Count: 40, Neg. LLF: 101.53302779916496
Iteration: 5, Func. Count: 50, Neg. LLF: 96.03359315049646
Iteration: 6, Func. Count: 60, Neg. LLF: 95.54197254279225
Iteration: 7, Func. Count: 69, Neg. LLF: 95.54169512098518
Iteration: 8, Func. Count: 77, Neg. LLF: 95.5416951207141
Optimization terminated successfully (Exit mode 0)
Current function value: 95.54169512098518
Iterations: 8
Function evaluations: 77
Gradient evaluations: 8
Iteration: 1, Func. Count: 11, Neg. LLF: 22032271.57699855
Iteration: 2, Func. Count: 23, Neg. LLF: 97.81776733644877
Iteration: 3, Func. Count: 34, Neg. LLF: 96.39905421475974
Iteration: 4, Func. Count: 44, Neg. LLF: 96.38860089930466
Iteration: 5, Func. Count: 55, Neg. LLF: 97.82752980192278
Iteration: 6, Func. Count: 69, Neg. LLF: 96.76454578049434
Iteration: 7, Func. Count: 80, Neg. LLF: 95.58085076761047
Iteration: 8, Func. Count: 90, Neg. LLF: 95.57255869511371
Iteration: 9, Func. Count: 100, Neg. LLF: 95.56410145510779
Iteration: 10, Func. Count: 110, Neg. LLF: 95.56678637748857
Iteration: 11, Func. Count: 121, Neg. LLF: 95.56131530098367
Iteration: 12, Func. Count: 131, Neg. LLF: 95.56024450390969
Iteration: 13, Func. Count: 141, Neg. LLF: 95.560236842647
Iteration: 14, Func. Count: 150, Neg. LLF: 95.56023684276138
Optimization terminated successfully (Exit mode 0)
Current function value: 95.560236842647
Iterations: 14
Function evaluations: 150
Gradient evaluations: 14
Iteration: 1, Func. Count: 12, Neg. LLF: 22013178.58840638
Iteration: 2, Func. Count: 25, Neg. LLF: 98.09692530437955
Iteration: 3, Func. Count: 37, Neg. LLF: 95.91981336973491
Iteration: 4, Func. Count: 48, Neg. LLF: 95.7708546651108
Iteration: 5, Func. Count: 59, Neg. LLF: 95.67934004578963
Iteration: 6, Func. Count: 70, Neg. LLF: 95.65392787349109
Iteration: 7, Func. Count: 81, Neg. LLF: 95.65380091618837
Iteration: 8, Func. Count: 92, Neg. LLF: 95.65357864066151
Iteration: 9, Func. Count: 102, Neg. LLF: 95.65357864103615
Optimization terminated successfully (Exit mode 0)
Current function value: 95.65357864066151
Iterations: 9
Function evaluations: 102
Gradient evaluations: 9
Iteration: 1, Func. Count: 9, Neg. LLF: 129.80837420371873
Iteration: 2, Func. Count: 19, Neg. LLF: 152.08896304644003
Iteration: 3, Func. Count: 28, Neg. LLF: 97.1418169260331
Iteration: 4, Func. Count: 36, Neg. LLF: 96.99236131335958
Iteration: 5, Func. Count: 45, Neg. LLF: 95.8050703528734
Iteration: 6, Func. Count: 53, Neg. LLF: 95.73567131024973
Iteration: 7, Func. Count: 61, Neg. LLF: 95.82959987871206
Iteration: 8, Func. Count: 70, Neg. LLF: 95.7116557578112
Iteration: 9, Func. Count: 78, Neg. LLF: 95.70847360989436
Iteration: 10, Func. Count: 86, Neg. LLF: 95.70787950306219
Iteration: 11, Func. Count: 94, Neg. LLF: 95.70778119426225
Iteration: 12, Func. Count: 102, Neg. LLF: 95.70777262448429
Iteration: 13, Func. Count: 110, Neg. LLF: 95.70775837871942
Iteration: 14, Func. Count: 118, Neg. LLF: 95.70770857489636
Iteration: 15, Func. Count: 126, Neg. LLF: 95.70629459527352
Iteration: 16, Func. Count: 134, Neg. LLF: 95.61287765997425
Iteration: 17, Func. Count: 142, Neg. LLF: 95.31562339130805
Iteration: 18, Func. Count: 150, Neg. LLF: 95.29707049503943
Iteration: 19, Func. Count: 158, Neg. LLF: 95.28583632885623
Iteration: 20, Func. Count: 166, Neg. LLF: 95.30569318858012
Iteration: 21, Func. Count: 175, Neg. LLF: 95.29622848401468
Iteration: 22, Func. Count: 184, Neg. LLF: 95.28520705602533
Iteration: 23, Func. Count: 191, Neg. LLF: 95.28520731693541
Optimization terminated successfully (Exit mode 0)
Current function value: 95.28520705602533
Iterations: 24
Function evaluations: 191
Gradient evaluations: 23
Iteration: 1, Func. Count: 10, Neg. LLF: 21964002.419887472
Iteration: 2, Func. Count: 21, Neg. LLF: 99.31720829544679
Iteration: 3, Func. Count: 31, Neg. LLF: 99.27607791797054
Iteration: 4, Func. Count: 41, Neg. LLF: 95.98863080476063
Iteration: 5, Func. Count: 50, Neg. LLF: 95.72769852486182
Iteration: 6, Func. Count: 59, Neg. LLF: 95.58803054104052
Iteration: 7, Func. Count: 68, Neg. LLF: 95.5868105123654
Iteration: 8, Func. Count: 77, Neg. LLF: 95.5860237483984
Iteration: 9, Func. Count: 86, Neg. LLF: 95.58581273264582
Iteration: 10, Func. Count: 95, Neg. LLF: 95.58580673374475
Iteration: 11, Func. Count: 104, Neg. LLF: 99.84997298569722
Optimization terminated successfully (Exit mode 0)
Current function value: 95.58580670681688
Iterations: 12
Function evaluations: 108
Gradient evaluations: 11
Iteration: 1, Func. Count: 11, Neg. LLF: 21909946.53997052
Iteration: 2, Func. Count: 23, Neg. LLF: 97.76985180971126
Iteration: 3, Func. Count: 34, Neg. LLF: 96.60015834525431
Iteration: 4, Func. Count: 44, Neg. LLF: 106.0631975082378
Iteration: 5, Func. Count: 55, Neg. LLF: 96.43405438615216
Iteration: 6, Func. Count: 66, Neg. LLF: 96.12382790263455
Iteration: 7, Func. Count: 77, Neg. LLF: 95.32105987604672
Iteration: 8, Func. Count: 87, Neg. LLF: 95.29407369223955
Iteration: 9, Func. Count: 97, Neg. LLF: 95.29079274446852
Iteration: 10, Func. Count: 107, Neg. LLF: 95.29058883674494
Iteration: 11, Func. Count: 117, Neg. LLF: 95.29058741127642
Iteration: 12, Func. Count: 126, Neg. LLF: 95.29058741123836
Optimization terminated successfully (Exit mode 0)
Current function value: 95.29058741127642
Iterations: 12
Function evaluations: 126
Gradient evaluations: 12
Iteration: 1, Func. Count: 12, Neg. LLF: 21953217.941032402
Iteration: 2, Func. Count: 25, Neg. LLF: 97.94933783890043
Iteration: 3, Func. Count: 37, Neg. LLF: 96.41315077839218
Iteration: 4, Func. Count: 48, Neg. LLF: 100.3761949493242
Iteration: 5, Func. Count: 60, Neg. LLF: 96.96145210437349
Iteration: 6, Func. Count: 72, Neg. LLF: 95.79120685555145
Iteration: 7, Func. Count: 83, Neg. LLF: 95.69805047000976
Iteration: 8, Func. Count: 94, Neg. LLF: 95.67160297146982
Iteration: 9, Func. Count: 105, Neg. LLF: 95.65747772750254
Iteration: 10, Func. Count: 116, Neg. LLF: 95.63305463266602
Iteration: 11, Func. Count: 127, Neg. LLF: 95.62175329883736
Iteration: 12, Func. Count: 138, Neg. LLF: 95.62007815125456
Iteration: 13, Func. Count: 149, Neg. LLF: 95.60711278561189
Iteration: 14, Func. Count: 160, Neg. LLF: 95.5868048663206
Iteration: 15, Func. Count: 171, Neg. LLF: 21857189.2278868
Iteration: 16, Func. Count: 186, Neg. LLF: 95.62417647472837
Iteration: 17, Func. Count: 199, Neg. LLF: 95.58580478560124
Iteration: 18, Func. Count: 209, Neg. LLF: 95.58580478949536
Optimization terminated successfully (Exit mode 0)
Current function value: 95.58580478560124
Iterations: 19
Function evaluations: 209
Gradient evaluations: 18
Iteration: 1, Func. Count: 13, Neg. LLF: 21956809.651161067
Iteration: 2, Func. Count: 27, Neg. LLF: 99.38390362469046
Iteration: 3, Func. Count: 40, Neg. LLF: 95.85530861163068
Iteration: 4, Func. Count: 52, Neg. LLF: 97.85447279111453
Iteration: 5, Func. Count: 66, Neg. LLF: 125.78296156715761
Iteration: 6, Func. Count: 80, Neg. LLF: 97.46140366563537
Iteration: 7, Func. Count: 93, Neg. LLF: 94.9743821798496
Iteration: 8, Func. Count: 105, Neg. LLF: 94.79599980018978
Iteration: 9, Func. Count: 117, Neg. LLF: 94.76373633041567
Iteration: 10, Func. Count: 129, Neg. LLF: 94.75901248709347
Iteration: 11, Func. Count: 141, Neg. LLF: 94.75505711671501
Iteration: 12, Func. Count: 153, Neg. LLF: 94.74956468928761
Iteration: 13, Func. Count: 165, Neg. LLF: 94.7484199987975
Iteration: 14, Func. Count: 177, Neg. LLF: 94.74817488964311
Iteration: 15, Func. Count: 189, Neg. LLF: 94.74816683506779
Iteration: 16, Func. Count: 200, Neg. LLF: 94.74816683509982
Optimization terminated successfully (Exit mode 0)
Current function value: 94.74816683506779
Iterations: 16
Function evaluations: 200
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 131.0950580591619
Iteration: 2, Func. Count: 21, Neg. LLF: 237.09521115182577
Iteration: 3, Func. Count: 31, Neg. LLF: 153.72248729115367
Iteration: 4, Func. Count: 41, Neg. LLF: 3527985.3840599013
Iteration: 5, Func. Count: 51, Neg. LLF: 3528176.6205093847
Iteration: 6, Func. Count: 61, Neg. LLF: 101.58079541522082
Iteration: 7, Func. Count: 71, Neg. LLF: 96.36254221894227
Iteration: 8, Func. Count: 80, Neg. LLF: 95.8511529933983
Iteration: 9, Func. Count: 89, Neg. LLF: 95.69469882827904
Iteration: 10, Func. Count: 98, Neg. LLF: 95.65222212914536
Iteration: 11, Func. Count: 107, Neg. LLF: 95.64482182929463
Iteration: 12, Func. Count: 116, Neg. LLF: 95.63895941579591
Iteration: 13, Func. Count: 125, Neg. LLF: 95.63777417454656
Iteration: 14, Func. Count: 134, Neg. LLF: 95.63722179411235
Iteration: 15, Func. Count: 143, Neg. LLF: 95.63720925347732
Iteration: 16, Func. Count: 152, Neg. LLF: 95.63720629825575
Iteration: 17, Func. Count: 160, Neg. LLF: 95.63720652895134
Optimization terminated successfully (Exit mode 0)
Current function value: 95.63720629825575
Iterations: 17
Function evaluations: 160
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 21913882.484905567
Iteration: 2, Func. Count: 23, Neg. LLF: 99.47713920307187
Iteration: 3, Func. Count: 34, Neg. LLF: 99.2781832792758
Iteration: 4, Func. Count: 45, Neg. LLF: 96.11073391496909
Iteration: 5, Func. Count: 55, Neg. LLF: 97.80346129732648
Iteration: 6, Func. Count: 66, Neg. LLF: 97.58474033654097
Iteration: 7, Func. Count: 77, Neg. LLF: 95.58584244364917
Iteration: 8, Func. Count: 87, Neg. LLF: 95.58580488722386
Iteration: 9, Func. Count: 96, Neg. LLF: 95.58580488705067
Optimization terminated successfully (Exit mode 0)
Current function value: 95.58580488722386
Iterations: 9
Function evaluations: 96
Gradient evaluations: 9
Iteration: 1, Func. Count: 12, Neg. LLF: 21911044.25601442
Iteration: 2, Func. Count: 25, Neg. LLF: 97.78046005207892
Iteration: 3, Func. Count: 37, Neg. LLF: 96.52482662832138
Iteration: 4, Func. Count: 48, Neg. LLF: 105.15594030519111
Iteration: 5, Func. Count: 60, Neg. LLF: 95.93935570019826
Iteration: 6, Func. Count: 71, Neg. LLF: 97.37842849729552
Iteration: 7, Func. Count: 83, Neg. LLF: 95.3258901137999
Iteration: 8, Func. Count: 94, Neg. LLF: 95.2914408554923
Iteration: 9, Func. Count: 105, Neg. LLF: 95.29092488852348
Iteration: 10, Func. Count: 116, Neg. LLF: 95.29070796802769
Iteration: 11, Func. Count: 127, Neg. LLF: 95.29059602350264
Iteration: 12, Func. Count: 138, Neg. LLF: 95.2905878595576
Iteration: 13, Func. Count: 148, Neg. LLF: 95.29058785896537
Optimization terminated successfully (Exit mode 0)
Current function value: 95.2905878595576
Iterations: 13
Function evaluations: 148
Gradient evaluations: 13
Iteration: 1, Func. Count: 13, Neg. LLF: 21943435.791349992
Iteration: 2, Func. Count: 27, Neg. LLF: 97.94980012528325
Iteration: 3, Func. Count: 40, Neg. LLF: 96.5445236088016
Iteration: 4, Func. Count: 52, Neg. LLF: 100.00912973296474
Iteration: 5, Func. Count: 66, Neg. LLF: 97.55296472912008
Iteration: 6, Func. Count: 79, Neg. LLF: 96.2522454535444
Iteration: 7, Func. Count: 92, Neg. LLF: 95.70553625926101
Iteration: 8, Func. Count: 104, Neg. LLF: 95.67721921274142
Iteration: 9, Func. Count: 116, Neg. LLF: 95.67008034422908
Iteration: 10, Func. Count: 128, Neg. LLF: 95.6667715594702
Iteration: 11, Func. Count: 140, Neg. LLF: 95.66432024624577
Iteration: 12, Func. Count: 152, Neg. LLF: 95.66098672301202
Iteration: 13, Func. Count: 164, Neg. LLF: 95.59870743327268
Iteration: 14, Func. Count: 176, Neg. LLF: 95.61260774357446
Iteration: 15, Func. Count: 189, Neg. LLF: 95.57444423327841
Iteration: 16, Func. Count: 201, Neg. LLF: 21852773.775148552
Iteration: 17, Func. Count: 216, Neg. LLF: 111.95137818777276
Iteration: 18, Func. Count: 230, Neg. LLF: 95.31787132016052
Iteration: 19, Func. Count: 242, Neg. LLF: 95.29062173570756
Iteration: 20, Func. Count: 254, Neg. LLF: 95.29058959051753
Iteration: 21, Func. Count: 266, Neg. LLF: 95.29058740237639
Iteration: 22, Func. Count: 277, Neg. LLF: 95.29058751012516
Optimization terminated successfully (Exit mode 0)
Current function value: 95.29058740237639
Iterations: 23
Function evaluations: 277
Gradient evaluations: 22
Iteration: 1, Func. Count: 14, Neg. LLF: 21949829.729976095
Iteration: 2, Func. Count: 29, Neg. LLF: 99.44500638195282
Iteration: 3, Func. Count: 43, Neg. LLF: 95.72204381010198
Iteration: 4, Func. Count: 56, Neg. LLF: 97.1436474218713
Iteration: 5, Func. Count: 71, Neg. LLF: 125.20101780211625
Iteration: 6, Func. Count: 86, Neg. LLF: 97.84940031208961
Iteration: 7, Func. Count: 100, Neg. LLF: 94.92961444233916
Iteration: 8, Func. Count: 113, Neg. LLF: 94.78249493319403
Iteration: 9, Func. Count: 126, Neg. LLF: 94.76185930188025
Iteration: 10, Func. Count: 139, Neg. LLF: 94.75821895459539
Iteration: 11, Func. Count: 152, Neg. LLF: 94.75107833703754
Iteration: 12, Func. Count: 165, Neg. LLF: 94.74855254458252
Iteration: 13, Func. Count: 178, Neg. LLF: 94.74820207666245
Iteration: 14, Func. Count: 191, Neg. LLF: 94.74816712204027
Iteration: 15, Func. Count: 203, Neg. LLF: 94.74816712202743
Optimization terminated successfully (Exit mode 0)
Current function value: 94.74816712204027
Iterations: 15
Function evaluations: 203
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 113.79020447515926
Iteration: 2, Func. Count: 23, Neg. LLF: 157.08038558606108
Iteration: 3, Func. Count: 34, Neg. LLF: 4034393.465680012
Iteration: 4, Func. Count: 45, Neg. LLF: 3918617.5138870524
Iteration: 5, Func. Count: 56, Neg. LLF: 1424283.8600571782
Iteration: 6, Func. Count: 67, Neg. LLF: 10609841.755872203
Iteration: 7, Func. Count: 78, Neg. LLF: 4525470.904389354
Iteration: 8, Func. Count: 89, Neg. LLF: 235.20022569591546
Iteration: 9, Func. Count: 100, Neg. LLF: 100.59333622762898
Iteration: 10, Func. Count: 111, Neg. LLF: 92.07969436962243
Iteration: 11, Func. Count: 121, Neg. LLF: 92.4652658054455
Iteration: 12, Func. Count: 132, Neg. LLF: 99.9746880447023
Iteration: 13, Func. Count: 144, Neg. LLF: 91.06812241036141
Iteration: 14, Func. Count: 154, Neg. LLF: 90.95443604321967
Iteration: 15, Func. Count: 164, Neg. LLF: 90.89171149064792
Iteration: 16, Func. Count: 175, Neg. LLF: 90.74918239247833
Iteration: 17, Func. Count: 185, Neg. LLF: 90.73331555991702
Iteration: 18, Func. Count: 195, Neg. LLF: 90.73278679596514
Iteration: 19, Func. Count: 205, Neg. LLF: 90.7326853859281
Iteration: 20, Func. Count: 215, Neg. LLF: 90.73268265524787
Iteration: 21, Func. Count: 224, Neg. LLF: 90.73268265081734
Optimization terminated successfully (Exit mode 0)
Current function value: 90.73268265524787
Iterations: 21
Function evaluations: 224
Gradient evaluations: 21
Iteration: 1, Func. Count: 12, Neg. LLF: 21875079.813893512
Iteration: 2, Func. Count: 25, Neg. LLF: 99.75398389029922
Iteration: 3, Func. Count: 37, Neg. LLF: 99.28894033897599
Iteration: 4, Func. Count: 49, Neg. LLF: 97.31081900473343
Iteration: 5, Func. Count: 60, Neg. LLF: 143.7660087110906
Iteration: 6, Func. Count: 73, Neg. LLF: 446754612.7395147
Iteration: 7, Func. Count: 86, Neg. LLF: 95.60134899891628
Iteration: 8, Func. Count: 97, Neg. LLF: 95.5860521731516
Iteration: 9, Func. Count: 108, Neg. LLF: 95.5858057806484
Iteration: 10, Func. Count: 119, Neg. LLF: 95.5858047883833
Optimization terminated successfully (Exit mode 0)
Current function value: 95.5858047883833
Iterations: 10
Function evaluations: 119
Gradient evaluations: 10
Iteration: 1, Func. Count: 13, Neg. LLF: 21870127.98655474
Iteration: 2, Func. Count: 27, Neg. LLF: 98.04145128382396
Iteration: 3, Func. Count: 40, Neg. LLF: 96.61621280177623
Iteration: 4, Func. Count: 52, Neg. LLF: 100.2132315605485
Iteration: 5, Func. Count: 65, Neg. LLF: 102.81449176386693
Iteration: 6, Func. Count: 78, Neg. LLF: 96.2652831620238
Iteration: 7, Func. Count: 91, Neg. LLF: 95.39729920327484
Iteration: 8, Func. Count: 103, Neg. LLF: 95.34071810164207
Iteration: 9, Func. Count: 115, Neg. LLF: 95.32772857228434
Iteration: 10, Func. Count: 127, Neg. LLF: 95.32054454645787
Iteration: 11, Func. Count: 139, Neg. LLF: 95.30506400512861
Iteration: 12, Func. Count: 151, Neg. LLF: 95.2945111535063
Iteration: 13, Func. Count: 163, Neg. LLF: 95.2906189397889
Iteration: 14, Func. Count: 175, Neg. LLF: 95.2900898945309
Iteration: 15, Func. Count: 187, Neg. LLF: 95.29004929326848
Iteration: 16, Func. Count: 199, Neg. LLF: 95.29004399180711
Iteration: 17, Func. Count: 211, Neg. LLF: 97.67929514550788
Optimization terminated successfully (Exit mode 0)
Current function value: 95.29004387271391
Iterations: 18
Function evaluations: 215
Gradient evaluations: 17
Iteration: 1, Func. Count: 14, Neg. LLF: 21887839.153326627
Iteration: 2, Func. Count: 29, Neg. LLF: 98.35124277163688
Iteration: 3, Func. Count: 43, Neg. LLF: 96.53512404559682
Iteration: 4, Func. Count: 56, Neg. LLF: 99.07620179444102
Iteration: 5, Func. Count: 71, Neg. LLF: 97.20992459037244
Iteration: 6, Func. Count: 86, Neg. LLF: 98.24971364453727
Iteration: 7, Func. Count: 100, Neg. LLF: 95.7444278907797
Iteration: 8, Func. Count: 113, Neg. LLF: 95.71373219549695
Iteration: 9, Func. Count: 126, Neg. LLF: 95.67931220487577
Iteration: 10, Func. Count: 139, Neg. LLF: 95.66739143472485
Iteration: 11, Func. Count: 152, Neg. LLF: 95.66337589544763
Iteration: 12, Func. Count: 165, Neg. LLF: 95.66135663913963
Iteration: 13, Func. Count: 178, Neg. LLF: 95.59393427765747
Iteration: 14, Func. Count: 191, Neg. LLF: 100.58054574853197
Iteration: 15, Func. Count: 206, Neg. LLF: 95.31679158374004
Iteration: 16, Func. Count: 219, Neg. LLF: 27581265.4836853
Iteration: 17, Func. Count: 235, Neg. LLF: 127.86713219325581
Iteration: 18, Func. Count: 250, Neg. LLF: 95.6534846721306
Iteration: 19, Func. Count: 264, Neg. LLF: 95.29011077400042
Iteration: 20, Func. Count: 277, Neg. LLF: 95.29004308270306
Iteration: 21, Func. Count: 290, Neg. LLF: 95.29004142243559
Iteration: 22, Func. Count: 302, Neg. LLF: 95.29004152985948
Optimization terminated successfully (Exit mode 0)
Current function value: 95.29004142243559
Iterations: 23
Function evaluations: 302
Gradient evaluations: 22
Iteration: 1, Func. Count: 15, Neg. LLF: 21894870.687585488
Iteration: 2, Func. Count: 31, Neg. LLF: 99.97260798585148
Iteration: 3, Func. Count: 46, Neg. LLF: 95.6189654831065
Iteration: 4, Func. Count: 60, Neg. LLF: 96.19876932353868
Iteration: 5, Func. Count: 76, Neg. LLF: 124.90570142452988
Iteration: 6, Func. Count: 92, Neg. LLF: 97.8063172074187
Iteration: 7, Func. Count: 107, Neg. LLF: 94.87714573000048
Iteration: 8, Func. Count: 121, Neg. LLF: 94.77391006554059
Iteration: 9, Func. Count: 135, Neg. LLF: 94.7630582604993
Iteration: 10, Func. Count: 149, Neg. LLF: 94.75829812616844
Iteration: 11, Func. Count: 163, Neg. LLF: 94.75117811149777
Iteration: 12, Func. Count: 177, Neg. LLF: 94.74857879354487
Iteration: 13, Func. Count: 191, Neg. LLF: 94.74821561958314
Iteration: 14, Func. Count: 205, Neg. LLF: 94.7481677484329
Iteration: 15, Func. Count: 219, Neg. LLF: 94.74816660724103
Iteration: 16, Func. Count: 232, Neg. LLF: 94.74816660719736
Optimization terminated successfully (Exit mode 0)
Current function value: 94.74816660724103
Iterations: 16
Function evaluations: 232
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 115.934591114764
Iteration: 2, Func. Count: 25, Neg. LLF: 156.49679698541763
Iteration: 3, Func. Count: 37, Neg. LLF: 4000409.784711531
Iteration: 4, Func. Count: 49, Neg. LLF: 4511512.946641672
Iteration: 5, Func. Count: 61, Neg. LLF: 4486895.16755401
Iteration: 6, Func. Count: 73, Neg. LLF: 4480841.98774415
Iteration: 7, Func. Count: 85, Neg. LLF: 5623593.111376012
Iteration: 8, Func. Count: 97, Neg. LLF: 3930568.802476385
Iteration: 9, Func. Count: 109, Neg. LLF: 113.48785496313377
Iteration: 10, Func. Count: 121, Neg. LLF: 108.45674588915752
Iteration: 11, Func. Count: 133, Neg. LLF: 93.91012587639302
Iteration: 12, Func. Count: 145, Neg. LLF: 91.27101103266807
Iteration: 13, Func. Count: 156, Neg. LLF: 90.99425352285957
Iteration: 14, Func. Count: 167, Neg. LLF: 90.80275665614123
Iteration: 15, Func. Count: 178, Neg. LLF: 90.98253837907198
Iteration: 16, Func. Count: 190, Neg. LLF: 90.85904848111181
Iteration: 17, Func. Count: 202, Neg. LLF: 91.6834309899605
Iteration: 18, Func. Count: 214, Neg. LLF: 90.69611340176569
Iteration: 19, Func. Count: 225, Neg. LLF: 90.69519095594504
Iteration: 20, Func. Count: 236, Neg. LLF: 90.69499588841116
Iteration: 21, Func. Count: 247, Neg. LLF: 90.69498223553346
Iteration: 22, Func. Count: 257, Neg. LLF: 90.6949818544581
Optimization terminated successfully (Exit mode 0)
Current function value: 90.69498223553346
Iterations: 22
Function evaluations: 257
Gradient evaluations: 22
Iteration: 1, Func. Count: 13, Neg. LLF: 21878539.334707428
Iteration: 2, Func. Count: 27, Neg. LLF: 99.7255465214481
Iteration: 3, Func. Count: 40, Neg. LLF: 99.3228831666666
Iteration: 4, Func. Count: 53, Neg. LLF: 97.1050532651149
Iteration: 5, Func. Count: 65, Neg. LLF: 130.1990389596778
Iteration: 6, Func. Count: 79, Neg. LLF: 974849298.1058843
Iteration: 7, Func. Count: 93, Neg. LLF: 95.60263524696768
Iteration: 8, Func. Count: 105, Neg. LLF: 95.5860995039932
Iteration: 9, Func. Count: 117, Neg. LLF: 95.58580558052157
Iteration: 10, Func. Count: 129, Neg. LLF: 95.58580478759524
Optimization terminated successfully (Exit mode 0)
Current function value: 95.58580478759524
Iterations: 10
Function evaluations: 129
Gradient evaluations: 10
Iteration: 1, Func. Count: 14, Neg. LLF: 21875772.21655299
Iteration: 2, Func. Count: 29, Neg. LLF: 98.02040930695863
Iteration: 3, Func. Count: 43, Neg. LLF: 96.61531323388832
Iteration: 4, Func. Count: 56, Neg. LLF: 99.94569651091003
Iteration: 5, Func. Count: 70, Neg. LLF: 101.83364151961143
Iteration: 6, Func. Count: 85, Neg. LLF: 96.25036185378833
Iteration: 7, Func. Count: 99, Neg. LLF: 95.40390434676578
Iteration: 8, Func. Count: 112, Neg. LLF: 95.35224453045113
Iteration: 9, Func. Count: 125, Neg. LLF: 95.30960235626478
Iteration: 10, Func. Count: 138, Neg. LLF: 95.30574757478422
Iteration: 11, Func. Count: 151, Neg. LLF: 95.29982857525697
Iteration: 12, Func. Count: 164, Neg. LLF: 95.29045972655112
Iteration: 13, Func. Count: 177, Neg. LLF: 95.29005618213132
Iteration: 14, Func. Count: 190, Neg. LLF: 95.29004227162557
Iteration: 15, Func. Count: 202, Neg. LLF: 95.29004227174994
Optimization terminated successfully (Exit mode 0)
Current function value: 95.29004227162557
Iterations: 15
Function evaluations: 202
Gradient evaluations: 15
Iteration: 1, Func. Count: 15, Neg. LLF: 21895265.119524177
Iteration: 2, Func. Count: 31, Neg. LLF: 98.31800731554127
Iteration: 3, Func. Count: 46, Neg. LLF: 96.52824704532414
Iteration: 4, Func. Count: 60, Neg. LLF: 98.9856385189897
Iteration: 5, Func. Count: 76, Neg. LLF: 97.04713358091675
Iteration: 6, Func. Count: 92, Neg. LLF: 96.18365175624558
Iteration: 7, Func. Count: 107, Neg. LLF: 95.73976460983197
Iteration: 8, Func. Count: 121, Neg. LLF: 95.70580372836775
Iteration: 9, Func. Count: 135, Neg. LLF: 95.675269861397
Iteration: 10, Func. Count: 149, Neg. LLF: 95.66743500368923
Iteration: 11, Func. Count: 163, Neg. LLF: 95.66460566143815
Iteration: 12, Func. Count: 177, Neg. LLF: 95.66363432381812
Iteration: 13, Func. Count: 191, Neg. LLF: 95.64742815613369
Iteration: 14, Func. Count: 205, Neg. LLF: 95.55271586101675
Iteration: 15, Func. Count: 219, Neg. LLF: 98.01373192090685
Iteration: 16, Func. Count: 235, Neg. LLF: 21888325.885987923
Iteration: 17, Func. Count: 252, Neg. LLF: 100.00842500134871
Iteration: 18, Func. Count: 268, Neg. LLF: 96.40622653617048
Iteration: 19, Func. Count: 283, Neg. LLF: 95.2914099598808
Iteration: 20, Func. Count: 297, Neg. LLF: 95.29019360358352
Iteration: 21, Func. Count: 311, Neg. LLF: 95.29011271752081
Iteration: 22, Func. Count: 325, Neg. LLF: 95.29005170669004
Iteration: 23, Func. Count: 339, Neg. LLF: 95.29004328985611
Iteration: 24, Func. Count: 353, Neg. LLF: 95.29004143337886
Iteration: 25, Func. Count: 366, Neg. LLF: 95.2900415409536
Optimization terminated successfully (Exit mode 0)
Current function value: 95.29004143337886
Iterations: 26
Function evaluations: 366
Gradient evaluations: 25
Iteration: 1, Func. Count: 16, Neg. LLF: 21907793.600165334
Iteration: 2, Func. Count: 33, Neg. LLF: 99.6900992894383
Iteration: 3, Func. Count: 49, Neg. LLF: 95.67542696999351
Iteration: 4, Func. Count: 64, Neg. LLF: 96.581339632289
Iteration: 5, Func. Count: 81, Neg. LLF: 143.1833918255015
Iteration: 6, Func. Count: 98, Neg. LLF: 96.34117385201075
Iteration: 7, Func. Count: 114, Neg. LLF: 94.83893507217587
Iteration: 8, Func. Count: 129, Neg. LLF: 94.78284720522734
Iteration: 9, Func. Count: 144, Neg. LLF: 94.76386210573706
Iteration: 10, Func. Count: 159, Neg. LLF: 94.7572477906634
Iteration: 11, Func. Count: 174, Neg. LLF: 94.7536052084513
Iteration: 12, Func. Count: 189, Neg. LLF: 94.74966680659425
Iteration: 13, Func. Count: 204, Neg. LLF: 94.74849294551298
Iteration: 14, Func. Count: 219, Neg. LLF: 94.74818186764642
Iteration: 15, Func. Count: 234, Neg. LLF: 94.74816566043772
Iteration: 16, Func. Count: 249, Neg. LLF: 94.74816492185484
Optimization terminated successfully (Exit mode 0)
Current function value: 94.74816492185484
Iterations: 16
Function evaluations: 249
Gradient evaluations: 16
Iteration: 1, Func. Count: 7, Neg. LLF: 127.74721609019488
Iteration: 2, Func. Count: 16, Neg. LLF: 47629387.77071406
Iteration: 3, Func. Count: 23, Neg. LLF: 4494130.618580089
Iteration: 4, Func. Count: 30, Neg. LLF: 3928174.5758488737
Iteration: 5, Func. Count: 37, Neg. LLF: 3945108.1147645093
Iteration: 6, Func. Count: 44, Neg. LLF: 3568720.1187205985
Iteration: 7, Func. Count: 51, Neg. LLF: 4478119.625608771
Iteration: 8, Func. Count: 58, Neg. LLF: 138.8216042625166
Iteration: 9, Func. Count: 65, Neg. LLF: 94.39859779457717
Iteration: 10, Func. Count: 72, Neg. LLF: 91.33437830045693
Iteration: 11, Func. Count: 78, Neg. LLF: 91.11458498954121
Iteration: 12, Func. Count: 84, Neg. LLF: 90.82839070941712
Iteration: 13, Func. Count: 90, Neg. LLF: 90.79648918517078
Iteration: 14, Func. Count: 96, Neg. LLF: 90.78467536901104
Iteration: 15, Func. Count: 102, Neg. LLF: 90.78115284212849
Iteration: 16, Func. Count: 108, Neg. LLF: 90.78045505425035
Iteration: 17, Func. Count: 114, Neg. LLF: 90.78040997419285
Iteration: 18, Func. Count: 120, Neg. LLF: 90.78040857789499
Iteration: 19, Func. Count: 125, Neg. LLF: 90.78040858113975
Optimization terminated successfully (Exit mode 0)
Current function value: 90.78040857789499
Iterations: 19
Function evaluations: 125
Gradient evaluations: 19
Iteration: 1, Func. Count: 5, Neg. LLF: 127.72616247513918
Iteration: 2, Func. Count: 12, Neg. LLF: 97.47494849350952
Iteration: 3, Func. Count: 16, Neg. LLF: 19985492.872436382
Iteration: 4, Func. Count: 21, Neg. LLF: 96.87549548876896
Iteration: 5, Func. Count: 26, Neg. LLF: 96.5812316391042
Iteration: 6, Func. Count: 30, Neg. LLF: 96.58067284919014
Iteration: 7, Func. Count: 33, Neg. LLF: 96.58067305540209
Optimization terminated successfully (Exit mode 0)
Current function value: 96.58067284919014
Iterations: 7
Function evaluations: 33
Gradient evaluations: 7
Iteration: 1, Func. Count: 6, Neg. LLF: 19796071.518318962
Iteration: 2, Func. Count: 13, Neg. LLF: 157.76086606156414
Iteration: 3, Func. Count: 19, Neg. LLF: 108.12518188866355
Iteration: 4, Func. Count: 25, Neg. LLF: 98.26023230096901
Iteration: 5, Func. Count: 31, Neg. LLF: 95.3843318895934
Iteration: 6, Func. Count: 37, Neg. LLF: 101.1891216475521
Iteration: 7, Func. Count: 43, Neg. LLF: 92.38785987558455
Iteration: 8, Func. Count: 48, Neg. LLF: 91.90920970377204
Iteration: 9, Func. Count: 53, Neg. LLF: 91.36405938942669
Iteration: 10, Func. Count: 58, Neg. LLF: 91.89800201653767
Iteration: 11, Func. Count: 64, Neg. LLF: 91.09212144611067
Iteration: 12, Func. Count: 69, Neg. LLF: 91.09119344350397
Iteration: 13, Func. Count: 74, Neg. LLF: 91.09106098004582
Iteration: 14, Func. Count: 78, Neg. LLF: 91.09106097951191
Optimization terminated successfully (Exit mode 0)
Current function value: 91.09106098004582
Iterations: 14
Function evaluations: 78
Gradient evaluations: 14
Iteration: 1, Func. Count: 7, Neg. LLF: 19811135.448387273
Iteration: 2, Func. Count: 14, Neg. LLF: 112.53239352497724
Iteration: 3, Func. Count: 22, Neg. LLF: 91.5835665434714
Iteration: 4, Func. Count: 28, Neg. LLF: 92.5080123707856
Iteration: 5, Func. Count: 35, Neg. LLF: 91.22450378198528
Iteration: 6, Func. Count: 41, Neg. LLF: 96.06777575352655
Iteration: 7, Func. Count: 48, Neg. LLF: 91.19839266755582
Iteration: 8, Func. Count: 54, Neg. LLF: 91.16748552580113
Iteration: 9, Func. Count: 60, Neg. LLF: 91.15431698946895
Iteration: 10, Func. Count: 66, Neg. LLF: 91.13758935293369
Iteration: 11, Func. Count: 72, Neg. LLF: 91.12101216131559
Iteration: 12, Func. Count: 78, Neg. LLF: 91.09145976088627
Iteration: 13, Func. Count: 84, Neg. LLF: 91.09117048239105
Iteration: 14, Func. Count: 90, Neg. LLF: 91.09107073557281
Iteration: 15, Func. Count: 96, Neg. LLF: 91.0910622749732
Iteration: 16, Func. Count: 102, Neg. LLF: 91.09106136002195
Optimization terminated successfully (Exit mode 0)
Current function value: 91.09106136002195
Iterations: 16
Function evaluations: 102
Gradient evaluations: 16
Iteration: 1, Func. Count: 8, Neg. LLF: 19835653.886734664
Iteration: 2, Func. Count: 16, Neg. LLF: 98.7073122762519
Iteration: 3, Func. Count: 24, Neg. LLF: 93.07887212953021
Iteration: 4, Func. Count: 31, Neg. LLF: 97.72634948701918
Iteration: 5, Func. Count: 39, Neg. LLF: 96.80263054520908
Iteration: 6, Func. Count: 47, Neg. LLF: 97.67577818890288
Iteration: 7, Func. Count: 55, Neg. LLF: 91.14867929959776
Iteration: 8, Func. Count: 62, Neg. LLF: 91.14245720631814
Iteration: 9, Func. Count: 69, Neg. LLF: 91.14047276634052
Iteration: 10, Func. Count: 76, Neg. LLF: 91.14028343708571
Iteration: 11, Func. Count: 83, Neg. LLF: 91.14016349417837
Iteration: 12, Func. Count: 90, Neg. LLF: 91.1401621531149
Iteration: 13, Func. Count: 96, Neg. LLF: 91.14016215299647
Optimization terminated successfully (Exit mode 0)
Current function value: 91.1401621531149
Iterations: 13
Function evaluations: 96
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 20037166.74617336
Iteration: 2, Func. Count: 18, Neg. LLF: 96.64267577242728
Iteration: 3, Func. Count: 27, Neg. LLF: 91.98473280043741
Iteration: 4, Func. Count: 35, Neg. LLF: 98.26260543482738
Iteration: 5, Func. Count: 44, Neg. LLF: 97.30414738638785
Iteration: 6, Func. Count: 53, Neg. LLF: 92.09053524986335
Iteration: 7, Func. Count: 62, Neg. LLF: 91.25291476893067
Iteration: 8, Func. Count: 70, Neg. LLF: 91.14708605573524
Iteration: 9, Func. Count: 78, Neg. LLF: 91.1425288680005
Iteration: 10, Func. Count: 86, Neg. LLF: 91.14219230001254
Iteration: 11, Func. Count: 94, Neg. LLF: 91.14139811551205
Iteration: 12, Func. Count: 102, Neg. LLF: 91.14055303681978
Iteration: 13, Func. Count: 110, Neg. LLF: 91.14022881306748
Iteration: 14, Func. Count: 118, Neg. LLF: 91.14016412150171
Iteration: 15, Func. Count: 126, Neg. LLF: 91.14016214750667
Iteration: 16, Func. Count: 133, Neg. LLF: 91.14016215490771
Optimization terminated successfully (Exit mode 0)
Current function value: 91.14016214750667
Iterations: 16
Function evaluations: 133
Gradient evaluations: 16
Iteration: 1, Func. Count: 6, Neg. LLF: 127.71034699724926
Iteration: 2, Func. Count: 14, Neg. LLF: 97.53961718116615
Iteration: 3, Func. Count: 19, Neg. LLF: 119.07007968651251
Iteration: 4, Func. Count: 25, Neg. LLF: 97.08212890366012
Iteration: 5, Func. Count: 31, Neg. LLF: 96.5822801441845
Iteration: 6, Func. Count: 36, Neg. LLF: 96.5806760441318
Iteration: 7, Func. Count: 41, Neg. LLF: 96.58067339635518
Iteration: 8, Func. Count: 46, Neg. LLF: 96.58067271771623
Optimization terminated successfully (Exit mode 0)
Current function value: 96.58067271771623
Iterations: 8
Function evaluations: 46
Gradient evaluations: 8
Iteration: 1, Func. Count: 7, Neg. LLF: 19886545.956939794
Iteration: 2, Func. Count: 15, Neg. LLF: 162.3537625617219
Iteration: 3, Func. Count: 22, Neg. LLF: 108.55822200285164
Iteration: 4, Func. Count: 29, Neg. LLF: 97.17385993650244
Iteration: 5, Func. Count: 36, Neg. LLF: 94.7501685223615
Iteration: 6, Func. Count: 43, Neg. LLF: 100.64289020249025
Iteration: 7, Func. Count: 50, Neg. LLF: 91.8951323358777
Iteration: 8, Func. Count: 56, Neg. LLF: 91.40970540259138
Iteration: 9, Func. Count: 62, Neg. LLF: 91.10761707622825
Iteration: 10, Func. Count: 68, Neg. LLF: 91.0914339446276
Iteration: 11, Func. Count: 74, Neg. LLF: 91.0910657872282
Iteration: 12, Func. Count: 80, Neg. LLF: 91.09106094680946
Iteration: 13, Func. Count: 85, Neg. LLF: 91.09106094676089
Optimization terminated successfully (Exit mode 0)
Current function value: 91.09106094680946
Iterations: 13
Function evaluations: 85
Gradient evaluations: 13
Iteration: 1, Func. Count: 8, Neg. LLF: 19792372.519366223
Iteration: 2, Func. Count: 16, Neg. LLF: 112.55084195077708
Iteration: 3, Func. Count: 25, Neg. LLF: 91.56157501759972
Iteration: 4, Func. Count: 32, Neg. LLF: 92.36533264974057
Iteration: 5, Func. Count: 40, Neg. LLF: 91.22532965595417
Iteration: 6, Func. Count: 47, Neg. LLF: 95.3653962217154
Iteration: 7, Func. Count: 55, Neg. LLF: 91.19577151379673
Iteration: 8, Func. Count: 62, Neg. LLF: 91.16009381246596
Iteration: 9, Func. Count: 69, Neg. LLF: 91.14850397304357
Iteration: 10, Func. Count: 76, Neg. LLF: 91.13163393466958
Iteration: 11, Func. Count: 83, Neg. LLF: 91.10775255697837
Iteration: 12, Func. Count: 90, Neg. LLF: 91.09109287841424
Iteration: 13, Func. Count: 97, Neg. LLF: 91.09107740330401
Iteration: 14, Func. Count: 104, Neg. LLF: 91.0910635093739
Iteration: 15, Func. Count: 111, Neg. LLF: 91.09106096382797
Iteration: 16, Func. Count: 117, Neg. LLF: 91.09106096632901
Optimization terminated successfully (Exit mode 0)
Current function value: 91.09106096382797
Iterations: 16
Function evaluations: 117
Gradient evaluations: 16
Iteration: 1, Func. Count: 9, Neg. LLF: 19861529.397610556
Iteration: 2, Func. Count: 18, Neg. LLF: 99.11780656487822
Iteration: 3, Func. Count: 27, Neg. LLF: 92.83801248352064
Iteration: 4, Func. Count: 35, Neg. LLF: 97.40748947990612
Iteration: 5, Func. Count: 44, Neg. LLF: 96.63226966495786
Iteration: 6, Func. Count: 53, Neg. LLF: 96.48934412321249
Iteration: 7, Func. Count: 62, Neg. LLF: 91.25578096710531
Iteration: 8, Func. Count: 71, Neg. LLF: 91.141143617279
Iteration: 9, Func. Count: 79, Neg. LLF: 91.14041095672084
Iteration: 10, Func. Count: 87, Neg. LLF: 91.14017301558314
Iteration: 11, Func. Count: 95, Neg. LLF: 91.14016223920667
Iteration: 12, Func. Count: 102, Neg. LLF: 91.14016223952221
Optimization terminated successfully (Exit mode 0)
Current function value: 91.14016223920667
Iterations: 12
Function evaluations: 102
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 20024616.42742816
Iteration: 2, Func. Count: 20, Neg. LLF: 96.46413185302374
Iteration: 3, Func. Count: 30, Neg. LLF: 92.00498047435234
Iteration: 4, Func. Count: 39, Neg. LLF: 91.86256659466798
Iteration: 5, Func. Count: 48, Neg. LLF: 95.28480624245117
Iteration: 6, Func. Count: 58, Neg. LLF: 91.48784828014998
Iteration: 7, Func. Count: 68, Neg. LLF: 91.2387426383129
Iteration: 8, Func. Count: 77, Neg. LLF: 91.16479662514274
Iteration: 9, Func. Count: 86, Neg. LLF: 91.12804021461902
Iteration: 10, Func. Count: 95, Neg. LLF: 91.12888218651032
Iteration: 11, Func. Count: 105, Neg. LLF: 91.11943090962487
Iteration: 12, Func. Count: 114, Neg. LLF: 19337471.281060435
Iteration: 13, Func. Count: 126, Neg. LLF: 91.23064788153596
Iteration: 14, Func. Count: 136, Neg. LLF: 91.09668307935914
Iteration: 15, Func. Count: 145, Neg. LLF: 91.09106697160567
Iteration: 16, Func. Count: 154, Neg. LLF: 91.09106324804766
Iteration: 17, Func. Count: 163, Neg. LLF: 91.09106096502161
Iteration: 18, Func. Count: 171, Neg. LLF: 91.09106097899327
Optimization terminated successfully (Exit mode 0)
Current function value: 91.09106096502161
Iterations: 19
Function evaluations: 171
Gradient evaluations: 18
Iteration: 1, Func. Count: 7, Neg. LLF: 135.23457538790765
Iteration: 2, Func. Count: 16, Neg. LLF: 87852897.76989487
Iteration: 3, Func. Count: 23, Neg. LLF: 4494620.562077321
Iteration: 4, Func. Count: 30, Neg. LLF: 3740313.0469594835
Iteration: 5, Func. Count: 37, Neg. LLF: 3708435.62117625
Iteration: 6, Func. Count: 44, Neg. LLF: 2933002.5341170323
Iteration: 7, Func. Count: 51, Neg. LLF: 4488621.9598474465
Iteration: 8, Func. Count: 58, Neg. LLF: 2928684.612307154
Iteration: 9, Func. Count: 65, Neg. LLF: 101.78847947266051
Iteration: 10, Func. Count: 72, Neg. LLF: 89.64510624295598
Iteration: 11, Func. Count: 78, Neg. LLF: 89.11183959063537
Iteration: 12, Func. Count: 84, Neg. LLF: 89.02480558993956
Iteration: 13, Func. Count: 90, Neg. LLF: 88.87393699512178
Iteration: 14, Func. Count: 96, Neg. LLF: 88.8380068258512
Iteration: 15, Func. Count: 102, Neg. LLF: 88.81990584344643
Iteration: 16, Func. Count: 108, Neg. LLF: 88.81737907275647
Iteration: 17, Func. Count: 114, Neg. LLF: 88.81737430838517
Iteration: 18, Func. Count: 119, Neg. LLF: 88.81737430839375
Optimization terminated successfully (Exit mode 0)
Current function value: 88.81737430838517
Iterations: 18
Function evaluations: 119
Gradient evaluations: 18
Iteration: 1, Func. Count: 8, Neg. LLF: 19999700.44953318
Iteration: 2, Func. Count: 17, Neg. LLF: 168.23543423945242
Iteration: 3, Func. Count: 25, Neg. LLF: 109.0146385362689
Iteration: 4, Func. Count: 33, Neg. LLF: 96.23189792366458
Iteration: 5, Func. Count: 41, Neg. LLF: 94.39210227357445
Iteration: 6, Func. Count: 49, Neg. LLF: 94.03035577142684
Iteration: 7, Func. Count: 57, Neg. LLF: 91.58805710519694
Iteration: 8, Func. Count: 64, Neg. LLF: 91.32024051765737
Iteration: 9, Func. Count: 71, Neg. LLF: 91.46763044026251
Iteration: 10, Func. Count: 79, Neg. LLF: 91.12734538839584
Iteration: 11, Func. Count: 86, Neg. LLF: 91.09175898652379
Iteration: 12, Func. Count: 93, Neg. LLF: 91.09106406731112
Iteration: 13, Func. Count: 100, Neg. LLF: 91.09106100286508
Iteration: 14, Func. Count: 106, Neg. LLF: 91.09106100227518
Optimization terminated successfully (Exit mode 0)
Current function value: 91.09106100286508
Iterations: 14
Function evaluations: 106
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 19926027.782477506
Iteration: 2, Func. Count: 18, Neg. LLF: 2889558.631014852
Iteration: 3, Func. Count: 27, Neg. LLF: 95.28159430834194
Iteration: 4, Func. Count: 36, Neg. LLF: 107.20184371629884
Iteration: 5, Func. Count: 45, Neg. LLF: 92.3344898685413
Iteration: 6, Func. Count: 54, Neg. LLF: 91.73977339943066
Iteration: 7, Func. Count: 62, Neg. LLF: 93.36396069895457
Iteration: 8, Func. Count: 71, Neg. LLF: 92.8514704598476
Iteration: 9, Func. Count: 80, Neg. LLF: 91.88076728112934
Iteration: 10, Func. Count: 89, Neg. LLF: 91.5066268442735
Iteration: 11, Func. Count: 98, Neg. LLF: 91.25300020477421
Iteration: 12, Func. Count: 106, Neg. LLF: 91.21991674645464
Iteration: 13, Func. Count: 114, Neg. LLF: 91.21203372940478
Iteration: 14, Func. Count: 123, Neg. LLF: 91.1651202574848
Iteration: 15, Func. Count: 131, Neg. LLF: 91.14232786811625
Iteration: 16, Func. Count: 139, Neg. LLF: 91.1403983267215
Iteration: 17, Func. Count: 147, Neg. LLF: 91.13919022902193
Iteration: 18, Func. Count: 155, Neg. LLF: 91.13201720969647
Iteration: 19, Func. Count: 163, Neg. LLF: 91.10688610890408
Iteration: 20, Func. Count: 171, Neg. LLF: 91.09211951679423
Iteration: 21, Func. Count: 179, Neg. LLF: 91.09148676040279
Iteration: 22, Func. Count: 187, Neg. LLF: 91.0912265527728
Iteration: 23, Func. Count: 195, Neg. LLF: 91.09108371513231
Iteration: 24, Func. Count: 203, Neg. LLF: 91.09106215374403
Iteration: 25, Func. Count: 211, Neg. LLF: 91.09106123193304
Optimization terminated successfully (Exit mode 0)
Current function value: 91.09106123193304
Iterations: 25
Function evaluations: 211
Gradient evaluations: 25
Iteration: 1, Func. Count: 10, Neg. LLF: 20068850.277688578
Iteration: 2, Func. Count: 20, Neg. LLF: 188763.71261807083
Iteration: 3, Func. Count: 30, Neg. LLF: 2021340.7858137055
Iteration: 4, Func. Count: 40, Neg. LLF: 5455733.8122979645
Iteration: 5, Func. Count: 50, Neg. LLF: 100.99514616782218
Iteration: 6, Func. Count: 60, Neg. LLF: 94.85009515247474
Iteration: 7, Func. Count: 70, Neg. LLF: 100.62273576805643
Iteration: 8, Func. Count: 81, Neg. LLF: 90.11279668694135
Iteration: 9, Func. Count: 90, Neg. LLF: 89.06235090179503
Iteration: 10, Func. Count: 101, Neg. LLF: 88.16256583025287
Iteration: 11, Func. Count: 110, Neg. LLF: 87.99516289961433
Iteration: 12, Func. Count: 119, Neg. LLF: 87.97838960300456
Iteration: 13, Func. Count: 128, Neg. LLF: 87.95730191762765
Iteration: 14, Func. Count: 137, Neg. LLF: 87.93367122685747
Iteration: 15, Func. Count: 146, Neg. LLF: 87.90654688508208
Iteration: 16, Func. Count: 155, Neg. LLF: 87.88871597890909
Iteration: 17, Func. Count: 164, Neg. LLF: 87.87319071280436
Iteration: 18, Func. Count: 173, Neg. LLF: 87.8681662277892
Iteration: 19, Func. Count: 182, Neg. LLF: 87.84794448362436
Iteration: 20, Func. Count: 191, Neg. LLF: 87.84210491114837
Iteration: 21, Func. Count: 200, Neg. LLF: 87.84145261663089
Iteration: 22, Func. Count: 209, Neg. LLF: 87.8414075315804
Iteration: 23, Func. Count: 218, Neg. LLF: 87.84140661827637
Optimization terminated successfully (Exit mode 0)
Current function value: 87.84140661827637
Iterations: 23
Function evaluations: 218
Gradient evaluations: 23
Iteration: 1, Func. Count: 11, Neg. LLF: 20255086.661842134
Iteration: 2, Func. Count: 22, Neg. LLF: 18451.941819135805
Iteration: 3, Func. Count: 33, Neg. LLF: 2046475.7486697137
Iteration: 4, Func. Count: 44, Neg. LLF: 4496839.565896917
Iteration: 5, Func. Count: 55, Neg. LLF: 146.19438338941725
Iteration: 6, Func. Count: 66, Neg. LLF: 108.69067970804923
Iteration: 7, Func. Count: 77, Neg. LLF: 95.18550200886628
Iteration: 8, Func. Count: 88, Neg. LLF: 93.81245341388575
Iteration: 9, Func. Count: 99, Neg. LLF: 90.98517641325596
Iteration: 10, Func. Count: 110, Neg. LLF: 89.34447783642561
Iteration: 11, Func. Count: 120, Neg. LLF: 90.51571012138942
Iteration: 12, Func. Count: 132, Neg. LLF: 104.71142156586566
Iteration: 13, Func. Count: 144, Neg. LLF: 88.30526829935135
Iteration: 14, Func. Count: 154, Neg. LLF: 88.48430104957626
Iteration: 15, Func. Count: 165, Neg. LLF: 88.02299120099913
Iteration: 16, Func. Count: 175, Neg. LLF: 88.13556125180457
Iteration: 17, Func. Count: 186, Neg. LLF: 87.94895260833678
Iteration: 18, Func. Count: 196, Neg. LLF: 87.93866202725842
Iteration: 19, Func. Count: 206, Neg. LLF: 87.9352062221453
Iteration: 20, Func. Count: 216, Neg. LLF: 87.93275801433838
Iteration: 21, Func. Count: 226, Neg. LLF: 87.93242176627017
Iteration: 22, Func. Count: 236, Neg. LLF: 87.93240996924685
Iteration: 23, Func. Count: 245, Neg. LLF: 87.9324099693378
Optimization terminated successfully (Exit mode 0)
Current function value: 87.93240996924685
Iterations: 23
Function evaluations: 245
Gradient evaluations: 23
Iteration: 1, Func. Count: 8, Neg. LLF: 130.60087560963825
Iteration: 2, Func. Count: 18, Neg. LLF: 57857245.65054508
Iteration: 3, Func. Count: 26, Neg. LLF: 4577960.06746015
Iteration: 4, Func. Count: 34, Neg. LLF: 3831880.5900550145
Iteration: 5, Func. Count: 42, Neg. LLF: 3791761.3438584055
Iteration: 6, Func. Count: 50, Neg. LLF: 5080.374600093896
Iteration: 7, Func. Count: 58, Neg. LLF: 2651054.9685341273
Iteration: 8, Func. Count: 66, Neg. LLF: 4498291.629704785
Iteration: 9, Func. Count: 74, Neg. LLF: 100.88724198596918
Iteration: 10, Func. Count: 82, Neg. LLF: 89.91668098057457
Iteration: 11, Func. Count: 89, Neg. LLF: 89.14911945462393
Iteration: 12, Func. Count: 96, Neg. LLF: 89.08640634401308
Iteration: 13, Func. Count: 103, Neg. LLF: 88.91145451185379
Iteration: 14, Func. Count: 110, Neg. LLF: 88.84972488943434
Iteration: 15, Func. Count: 117, Neg. LLF: 88.82341138922942
Iteration: 16, Func. Count: 124, Neg. LLF: 88.82064264518193
Iteration: 17, Func. Count: 131, Neg. LLF: 88.81738934428346
Iteration: 18, Func. Count: 138, Neg. LLF: 88.8173764891621
Iteration: 19, Func. Count: 145, Neg. LLF: 88.81737411141202
Iteration: 20, Func. Count: 151, Neg. LLF: 88.81737447475672
Optimization terminated successfully (Exit mode 0)
Current function value: 88.81737411141202
Iterations: 20
Function evaluations: 151
Gradient evaluations: 20
Iteration: 1, Func. Count: 9, Neg. LLF: 19969315.016388364
Iteration: 2, Func. Count: 19, Neg. LLF: 168.70694685293353
Iteration: 3, Func. Count: 28, Neg. LLF: 109.1779628515701
Iteration: 4, Func. Count: 37, Neg. LLF: 96.02973850004912
Iteration: 5, Func. Count: 46, Neg. LLF: 94.07901778973303
Iteration: 6, Func. Count: 55, Neg. LLF: 93.87439308823471
Iteration: 7, Func. Count: 64, Neg. LLF: 91.53351225944365
Iteration: 8, Func. Count: 72, Neg. LLF: 91.3197199000432
Iteration: 9, Func. Count: 80, Neg. LLF: 91.17416073827904
Iteration: 10, Func. Count: 88, Neg. LLF: 91.09613634208455
Iteration: 11, Func. Count: 96, Neg. LLF: 91.09161764183828
Iteration: 12, Func. Count: 104, Neg. LLF: 91.09106740139754
Iteration: 13, Func. Count: 112, Neg. LLF: 91.0910626003937
Iteration: 14, Func. Count: 120, Neg. LLF: 91.10324354053263
Optimization terminated successfully (Exit mode 0)
Current function value: 91.09106260025983
Iterations: 15
Function evaluations: 124
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 19878062.06835834
Iteration: 2, Func. Count: 20, Neg. LLF: 2836157.108640265
Iteration: 3, Func. Count: 30, Neg. LLF: 93.72576328252293
Iteration: 4, Func. Count: 40, Neg. LLF: 106.62114491789747
Iteration: 5, Func. Count: 50, Neg. LLF: 91.8191005333472
Iteration: 6, Func. Count: 59, Neg. LLF: 91.65261767402978
Iteration: 7, Func. Count: 68, Neg. LLF: 91.64370270310195
Iteration: 8, Func. Count: 78, Neg. LLF: 93.16276743712417
Iteration: 9, Func. Count: 88, Neg. LLF: 91.25259182642112
Iteration: 10, Func. Count: 97, Neg. LLF: 91.19536213623529
Iteration: 11, Func. Count: 106, Neg. LLF: 91.72122567100726
Iteration: 12, Func. Count: 116, Neg. LLF: 91.15033808285452
Iteration: 13, Func. Count: 125, Neg. LLF: 91.14427204182701
Iteration: 14, Func. Count: 134, Neg. LLF: 91.14049991798205
Iteration: 15, Func. Count: 143, Neg. LLF: 91.13404526292828
Iteration: 16, Func. Count: 152, Neg. LLF: 91.12221358605942
Iteration: 17, Func. Count: 161, Neg. LLF: 91.09358833619973
Iteration: 18, Func. Count: 170, Neg. LLF: 91.0921327596311
Iteration: 19, Func. Count: 179, Neg. LLF: 91.09106680799374
Iteration: 20, Func. Count: 188, Neg. LLF: 91.09106114307612
Iteration: 21, Func. Count: 196, Neg. LLF: 91.09106114647375
Optimization terminated successfully (Exit mode 0)
Current function value: 91.09106114307612
Iterations: 21
Function evaluations: 196
Gradient evaluations: 21
Iteration: 1, Func. Count: 11, Neg. LLF: 20023647.85858278
Iteration: 2, Func. Count: 22, Neg. LLF: 77432.76131871661
Iteration: 3, Func. Count: 33, Neg. LLF: 1997160.7620540375
Iteration: 4, Func. Count: 44, Neg. LLF: 6370327.619409273
Iteration: 5, Func. Count: 55, Neg. LLF: 100.91576018666709
Iteration: 6, Func. Count: 66, Neg. LLF: 96.05967414079969
Iteration: 7, Func. Count: 77, Neg. LLF: 113.78680760452102
Iteration: 8, Func. Count: 89, Neg. LLF: 91.2534721054192
Iteration: 9, Func. Count: 99, Neg. LLF: 89.16122594641102
Iteration: 10, Func. Count: 111, Neg. LLF: 88.11121378135174
Iteration: 11, Func. Count: 121, Neg. LLF: 87.9893122456327
Iteration: 12, Func. Count: 131, Neg. LLF: 87.97311298622593
Iteration: 13, Func. Count: 141, Neg. LLF: 87.9580962484631
Iteration: 14, Func. Count: 151, Neg. LLF: 87.94214420156177
Iteration: 15, Func. Count: 161, Neg. LLF: 87.92027765814774
Iteration: 16, Func. Count: 171, Neg. LLF: 87.90566706868736
Iteration: 17, Func. Count: 181, Neg. LLF: 87.89243931961096
Iteration: 18, Func. Count: 191, Neg. LLF: 87.88844195563478
Iteration: 19, Func. Count: 201, Neg. LLF: 87.87990058533903
Iteration: 20, Func. Count: 211, Neg. LLF: 87.8643434184418
Iteration: 21, Func. Count: 221, Neg. LLF: 87.8497694786406
Iteration: 22, Func. Count: 231, Neg. LLF: 87.84247582344881
Iteration: 23, Func. Count: 241, Neg. LLF: 87.84143063261706
Iteration: 24, Func. Count: 251, Neg. LLF: 87.84140732825293
Iteration: 25, Func. Count: 261, Neg. LLF: 87.8414067319013
Optimization terminated successfully (Exit mode 0)
Current function value: 87.8414067319013
Iterations: 25
Function evaluations: 261
Gradient evaluations: 25
Iteration: 1, Func. Count: 12, Neg. LLF: 20179110.901788514
Iteration: 2, Func. Count: 24, Neg. LLF: 1650.7194730174876
Iteration: 3, Func. Count: 36, Neg. LLF: 2240194.8263552096
Iteration: 4, Func. Count: 48, Neg. LLF: 4776351.744669066
Iteration: 5, Func. Count: 60, Neg. LLF: 198.65394869811192
Iteration: 6, Func. Count: 72, Neg. LLF: 114.49960446657727
Iteration: 7, Func. Count: 84, Neg. LLF: 106.97112906317294
Iteration: 8, Func. Count: 96, Neg. LLF: 90.40683822967932
Iteration: 9, Func. Count: 107, Neg. LLF: 91.43623976445711
Iteration: 10, Func. Count: 121, Neg. LLF: 1643.6815951525307
Iteration: 11, Func. Count: 133, Neg. LLF: 88.41630422581945
Iteration: 12, Func. Count: 144, Neg. LLF: 87.97774665592263
Iteration: 13, Func. Count: 155, Neg. LLF: 87.90299017234011
Iteration: 14, Func. Count: 166, Neg. LLF: 87.86042993854007
Iteration: 15, Func. Count: 177, Neg. LLF: 87.84704482369473
Iteration: 16, Func. Count: 188, Neg. LLF: 87.84299501847066
Iteration: 17, Func. Count: 199, Neg. LLF: 87.84219792833942
Iteration: 18, Func. Count: 210, Neg. LLF: 87.84157168099843
Iteration: 19, Func. Count: 221, Neg. LLF: 87.84143366635001
Iteration: 20, Func. Count: 232, Neg. LLF: 87.8414082677887
Iteration: 21, Func. Count: 243, Neg. LLF: 87.84140668327741
Iteration: 22, Func. Count: 253, Neg. LLF: 87.84140697493025
Optimization terminated successfully (Exit mode 0)
Current function value: 87.84140668327741
Iterations: 22
Function evaluations: 253
Gradient evaluations: 22
Iteration: 1, Func. Count: 5, Neg. LLF: 152.88239634549228
Iteration: 2, Func. Count: 12, Neg. LLF: 145.58716867438085
Iteration: 3, Func. Count: 18, Neg. LLF: 96.66500575695542
Iteration: 4, Func. Count: 22, Neg. LLF: 96.58585037360295
Iteration: 5, Func. Count: 26, Neg. LLF: 96.58132746483588
Iteration: 6, Func. Count: 30, Neg. LLF: 96.58093555702355
Iteration: 7, Func. Count: 34, Neg. LLF: 96.58068243458592
Iteration: 8, Func. Count: 38, Neg. LLF: 96.58067302897408
Iteration: 9, Func. Count: 41, Neg. LLF: 96.58067312757404
Optimization terminated successfully (Exit mode 0)
Current function value: 96.58067302897408
Iterations: 9
Function evaluations: 41
Gradient evaluations: 9
Iteration: 1, Func. Count: 6, Neg. LLF: 21678657.348616093
Iteration: 2, Func. Count: 13, Neg. LLF: 130.66941020205886
Iteration: 3, Func. Count: 19, Neg. LLF: 106.82714973660813
Iteration: 4, Func. Count: 25, Neg. LLF: 102.68149452701364
Iteration: 5, Func. Count: 31, Neg. LLF: 103.22107688010097
Iteration: 6, Func. Count: 37, Neg. LLF: 122.27614357152619
Iteration: 7, Func. Count: 44, Neg. LLF: 99.88673349247368
Iteration: 8, Func. Count: 50, Neg. LLF: 98.44557047588536
Iteration: 9, Func. Count: 56, Neg. LLF: 96.94688407826489
Iteration: 10, Func. Count: 62, Neg. LLF: 95.63220663056956
Iteration: 11, Func. Count: 68, Neg. LLF: 94.48632853488832
Iteration: 12, Func. Count: 74, Neg. LLF: 93.49015852232313
Iteration: 13, Func. Count: 80, Neg. LLF: 92.63299572746561
Iteration: 14, Func. Count: 86, Neg. LLF: 91.8710121358417
Iteration: 15, Func. Count: 91, Neg. LLF: 91.21385092994274
Iteration: 16, Func. Count: 96, Neg. LLF: 91.09447884165499
Iteration: 17, Func. Count: 101, Neg. LLF: 91.09107833182425
Iteration: 18, Func. Count: 106, Neg. LLF: 91.09106094813232
Iteration: 19, Func. Count: 110, Neg. LLF: 91.09106094828252
Optimization terminated successfully (Exit mode 0)
Current function value: 91.09106094813232
Iterations: 19
Function evaluations: 110
Gradient evaluations: 19
Iteration: 1, Func. Count: 7, Neg. LLF: 21940711.2165945
Iteration: 2, Func. Count: 15, Neg. LLF: 140.4395905514823
Iteration: 3, Func. Count: 22, Neg. LLF: 94.72488111097255
Iteration: 4, Func. Count: 29, Neg. LLF: 91.53421209037042
Iteration: 5, Func. Count: 35, Neg. LLF: 91.5333717747867
Iteration: 6, Func. Count: 42, Neg. LLF: 91.35454180717046
Iteration: 7, Func. Count: 49, Neg. LLF: 91.14843325009093
Iteration: 8, Func. Count: 55, Neg. LLF: 91.12868089956665
Iteration: 9, Func. Count: 61, Neg. LLF: 91.11482744116428
Iteration: 10, Func. Count: 67, Neg. LLF: 91.09565290584938
Iteration: 11, Func. Count: 73, Neg. LLF: 91.0927177354349
Iteration: 12, Func. Count: 79, Neg. LLF: 91.09106160332489
Iteration: 13, Func. Count: 85, Neg. LLF: 91.09106094712645
Optimization terminated successfully (Exit mode 0)
Current function value: 91.09106094712645
Iterations: 13
Function evaluations: 85
Gradient evaluations: 13
Iteration: 1, Func. Count: 8, Neg. LLF: 21269629.47237768
Iteration: 2, Func. Count: 16, Neg. LLF: 126.32914943166499
Iteration: 3, Func. Count: 24, Neg. LLF: 91.8223747264912
Iteration: 4, Func. Count: 31, Neg. LLF: 91.40421031724502
Iteration: 5, Func. Count: 38, Neg. LLF: 91.16152707455814
Iteration: 6, Func. Count: 45, Neg. LLF: 91.14051137178771
Iteration: 7, Func. Count: 52, Neg. LLF: 91.1401653696103
Iteration: 8, Func. Count: 59, Neg. LLF: 91.14016214308877
Iteration: 9, Func. Count: 65, Neg. LLF: 91.1401621430819
Optimization terminated successfully (Exit mode 0)
Current function value: 91.14016214308877
Iterations: 9
Function evaluations: 65
Gradient evaluations: 9
Iteration: 1, Func. Count: 9, Neg. LLF: 20306063.124822535
Iteration: 2, Func. Count: 18, Neg. LLF: 95.60900061055862
Iteration: 3, Func. Count: 27, Neg. LLF: 92.06154613141034
Iteration: 4, Func. Count: 35, Neg. LLF: 98.08058527188746
Iteration: 5, Func. Count: 44, Neg. LLF: 124.87199925523035
Iteration: 6, Func. Count: 53, Neg. LLF: 92.66032485511663
Iteration: 7, Func. Count: 62, Neg. LLF: 91.3496648292455
Iteration: 8, Func. Count: 70, Neg. LLF: 91.15065988634083
Iteration: 9, Func. Count: 78, Neg. LLF: 91.14226669610699
Iteration: 10, Func. Count: 86, Neg. LLF: 91.14159747408672
Iteration: 11, Func. Count: 94, Neg. LLF: 91.1412748246271
Iteration: 12, Func. Count: 102, Neg. LLF: 91.14053822985984
Iteration: 13, Func. Count: 110, Neg. LLF: 91.14024361755297
Iteration: 14, Func. Count: 118, Neg. LLF: 91.14016579033317
Iteration: 15, Func. Count: 126, Neg. LLF: 91.14016216612852
Iteration: 16, Func. Count: 133, Neg. LLF: 91.14016217354484
Optimization terminated successfully (Exit mode 0)
Current function value: 91.14016216612852
Iterations: 16
Function evaluations: 133
Gradient evaluations: 16
Iteration: 1, Func. Count: 6, Neg. LLF: 153.3050586016386
Iteration: 2, Func. Count: 14, Neg. LLF: 166.54759414045077
Iteration: 3, Func. Count: 21, Neg. LLF: 94.6249082251696
Iteration: 4, Func. Count: 26, Neg. LLF: 93.83842277948179
Iteration: 5, Func. Count: 31, Neg. LLF: 93.81589357800776
Iteration: 6, Func. Count: 36, Neg. LLF: 93.80095035896406
Iteration: 7, Func. Count: 41, Neg. LLF: 93.79666061070718
Iteration: 8, Func. Count: 46, Neg. LLF: 93.79340891063715
Iteration: 9, Func. Count: 51, Neg. LLF: 93.79290549574515
Iteration: 10, Func. Count: 56, Neg. LLF: 93.79286706544204
Iteration: 11, Func. Count: 60, Neg. LLF: 93.79286734190353
Optimization terminated successfully (Exit mode 0)
Current function value: 93.79286706544204
Iterations: 11
Function evaluations: 60
Gradient evaluations: 11
Iteration: 1, Func. Count: 7, Neg. LLF: 19826285.144479293
Iteration: 2, Func. Count: 15, Neg. LLF: 143.58646904367694
Iteration: 3, Func. Count: 22, Neg. LLF: 110.18133764613823
Iteration: 4, Func. Count: 29, Neg. LLF: 98.6830502622842
Iteration: 5, Func. Count: 36, Neg. LLF: 98.02039448617106
Iteration: 6, Func. Count: 43, Neg. LLF: 93.29912266442159
Iteration: 7, Func. Count: 50, Neg. LLF: 92.78195057732452
Iteration: 8, Func. Count: 57, Neg. LLF: 91.60137716809461
Iteration: 9, Func. Count: 63, Neg. LLF: 5406.689903037428
Iteration: 10, Func. Count: 72, Neg. LLF: 91.14903962395708
Iteration: 11, Func. Count: 78, Neg. LLF: 91.0914665324704
Iteration: 12, Func. Count: 84, Neg. LLF: 91.09106132324025
Iteration: 13, Func. Count: 89, Neg. LLF: 91.09106132216792
Optimization terminated successfully (Exit mode 0)
Current function value: 91.09106132324025
Iterations: 13
Function evaluations: 89
Gradient evaluations: 13
Iteration: 1, Func. Count: 8, Neg. LLF: 19941893.452180818
Iteration: 2, Func. Count: 17, Neg. LLF: 146.38249711709472
Iteration: 3, Func. Count: 25, Neg. LLF: 95.6058910315863
Iteration: 4, Func. Count: 33, Neg. LLF: 91.54693300408539
Iteration: 5, Func. Count: 40, Neg. LLF: 92.93239348168366
Iteration: 6, Func. Count: 48, Neg. LLF: 91.27750991933534
Iteration: 7, Func. Count: 55, Neg. LLF: 91.1810895909384
Iteration: 8, Func. Count: 62, Neg. LLF: 91.12945919681027
Iteration: 9, Func. Count: 69, Neg. LLF: 91.10163704079217
Iteration: 10, Func. Count: 76, Neg. LLF: 91.0914261831421
Iteration: 11, Func. Count: 83, Neg. LLF: 91.09106453947916
Iteration: 12, Func. Count: 90, Neg. LLF: 91.09106094841809
Iteration: 13, Func. Count: 96, Neg. LLF: 91.09106095039724
Optimization terminated successfully (Exit mode 0)
Current function value: 91.09106094841809
Iterations: 13
Function evaluations: 96
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 19580270.157426648
Iteration: 2, Func. Count: 18, Neg. LLF: 143.067751337699
Iteration: 3, Func. Count: 27, Neg. LLF: 91.30533007082097
Iteration: 4, Func. Count: 35, Neg. LLF: 91.15692227896135
Iteration: 5, Func. Count: 43, Neg. LLF: 91.14289295417552
Iteration: 6, Func. Count: 51, Neg. LLF: 91.14508942058688
Iteration: 7, Func. Count: 60, Neg. LLF: 91.14016681690497
Iteration: 8, Func. Count: 68, Neg. LLF: 91.14016241890519
Iteration: 9, Func. Count: 75, Neg. LLF: 91.14016241881458
Optimization terminated successfully (Exit mode 0)
Current function value: 91.14016241890519
Iterations: 9
Function evaluations: 75
Gradient evaluations: 9
Iteration: 1, Func. Count: 10, Neg. LLF: 19721911.41139381
Iteration: 2, Func. Count: 20, Neg. LLF: 203.77822813024702
Iteration: 3, Func. Count: 30, Neg. LLF: 110.77293557113973
Iteration: 4, Func. Count: 40, Neg. LLF: 93.86402786068196
Iteration: 5, Func. Count: 49, Neg. LLF: 96.04113147261478
Iteration: 6, Func. Count: 59, Neg. LLF: 91.53669137395237
Iteration: 7, Func. Count: 68, Neg. LLF: 91.20345442349199
Iteration: 8, Func. Count: 77, Neg. LLF: 92.04581554629559
Iteration: 9, Func. Count: 87, Neg. LLF: 91.12889823009559
Iteration: 10, Func. Count: 96, Neg. LLF: 91.12556566559141
Iteration: 11, Func. Count: 105, Neg. LLF: 91.12454273109906
Iteration: 12, Func. Count: 114, Neg. LLF: 91.11815835205307
Iteration: 13, Func. Count: 123, Neg. LLF: 91.10099533080174
Iteration: 14, Func. Count: 132, Neg. LLF: 91.09489773777948
Iteration: 15, Func. Count: 141, Neg. LLF: 91.09114058347035
Iteration: 16, Func. Count: 150, Neg. LLF: 91.09106110881575
Iteration: 17, Func. Count: 158, Neg. LLF: 91.09106112439895
Optimization terminated successfully (Exit mode 0)
Current function value: 91.09106110881575
Iterations: 17
Function evaluations: 158
Gradient evaluations: 17
Iteration: 1, Func. Count: 7, Neg. LLF: 153.99074323296927
Iteration: 2, Func. Count: 16, Neg. LLF: 166.0639171054326
Iteration: 3, Func. Count: 24, Neg. LLF: 94.61925906488167
Iteration: 4, Func. Count: 30, Neg. LLF: 93.83649570721816
Iteration: 5, Func. Count: 36, Neg. LLF: 93.81574525295461
Iteration: 6, Func. Count: 42, Neg. LLF: 93.8005797895987
Iteration: 7, Func. Count: 48, Neg. LLF: 93.79633343600133
Iteration: 8, Func. Count: 54, Neg. LLF: 93.7932928105599
Iteration: 9, Func. Count: 60, Neg. LLF: 93.79289717261734
Iteration: 10, Func. Count: 66, Neg. LLF: 93.79286700044997
Iteration: 11, Func. Count: 71, Neg. LLF: 93.79286723283208
Optimization terminated successfully (Exit mode 0)
Current function value: 93.79286700044997
Iterations: 11
Function evaluations: 71
Gradient evaluations: 11
Iteration: 1, Func. Count: 8, Neg. LLF: 19911986.179817982
Iteration: 2, Func. Count: 17, Neg. LLF: 146.65770080476742
Iteration: 3, Func. Count: 25, Neg. LLF: 110.67689270950254
Iteration: 4, Func. Count: 33, Neg. LLF: 103.64956736454667
Iteration: 5, Func. Count: 41, Neg. LLF: 94.13797120294788
Iteration: 6, Func. Count: 49, Neg. LLF: 102.14818280726357
Iteration: 7, Func. Count: 57, Neg. LLF: 241.97734489345066
Iteration: 8, Func. Count: 66, Neg. LLF: 92.54919677595245
Iteration: 9, Func. Count: 73, Neg. LLF: 91.89590151806594
Iteration: 10, Func. Count: 80, Neg. LLF: 94.42793732253374
Iteration: 11, Func. Count: 88, Neg. LLF: 91.11093451759041
Iteration: 12, Func. Count: 95, Neg. LLF: 91.09468713113422
Iteration: 13, Func. Count: 102, Neg. LLF: 91.09107849519587
Iteration: 14, Func. Count: 109, Neg. LLF: 91.0910611685534
Iteration: 15, Func. Count: 115, Neg. LLF: 91.09106116789823
Optimization terminated successfully (Exit mode 0)
Current function value: 91.0910611685534
Iterations: 15
Function evaluations: 115
Gradient evaluations: 15
Iteration: 1, Func. Count: 9, Neg. LLF: 19914422.2378921
Iteration: 2, Func. Count: 19, Neg. LLF: 145.7275815285235
Iteration: 3, Func. Count: 28, Neg. LLF: 95.52648260241415
Iteration: 4, Func. Count: 37, Neg. LLF: 91.57828057417427
Iteration: 5, Func. Count: 45, Neg. LLF: 93.02255548638304
Iteration: 6, Func. Count: 54, Neg. LLF: 91.27629423327426
Iteration: 7, Func. Count: 62, Neg. LLF: 91.17702332098537
Iteration: 8, Func. Count: 70, Neg. LLF: 91.12453804601817
Iteration: 9, Func. Count: 78, Neg. LLF: 91.1194633877835
Iteration: 10, Func. Count: 87, Neg. LLF: 91.09136563239389
Iteration: 11, Func. Count: 95, Neg. LLF: 91.09111267040464
Iteration: 12, Func. Count: 103, Neg. LLF: 91.09106400763885
Iteration: 13, Func. Count: 111, Neg. LLF: 91.09106116038285
Iteration: 14, Func. Count: 118, Neg. LLF: 91.0910611630498
Optimization terminated successfully (Exit mode 0)
Current function value: 91.09106116038285
Iterations: 14
Function evaluations: 118
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 19542057.98079838
Iteration: 2, Func. Count: 20, Neg. LLF: 144.465369382446
Iteration: 3, Func. Count: 30, Neg. LLF: 111.95343438284763
Iteration: 4, Func. Count: 40, Neg. LLF: 91.96804170087705
Iteration: 5, Func. Count: 49, Neg. LLF: 92.3961868953263
Iteration: 6, Func. Count: 59, Neg. LLF: 91.21384573651574
Iteration: 7, Func. Count: 68, Neg. LLF: 91.1628708280384
Iteration: 8, Func. Count: 77, Neg. LLF: 91.16093298196965
Iteration: 9, Func. Count: 86, Neg. LLF: 91.15623626788515
Iteration: 10, Func. Count: 95, Neg. LLF: 91.14246407401781
Iteration: 11, Func. Count: 104, Neg. LLF: 91.14131616255311
Iteration: 12, Func. Count: 113, Neg. LLF: 91.14024035898409
Iteration: 13, Func. Count: 122, Neg. LLF: 91.14016880623934
Iteration: 14, Func. Count: 131, Neg. LLF: 91.14016216116607
Iteration: 15, Func. Count: 139, Neg. LLF: 91.14016216107902
Optimization terminated successfully (Exit mode 0)
Current function value: 91.14016216116607
Iterations: 15
Function evaluations: 139
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 19702014.471795637
Iteration: 2, Func. Count: 22, Neg. LLF: 200.52533636346115
Iteration: 3, Func. Count: 33, Neg. LLF: 110.56119283060212
Iteration: 4, Func. Count: 44, Neg. LLF: 93.75719113252745
Iteration: 5, Func. Count: 54, Neg. LLF: 95.69552307963234
Iteration: 6, Func. Count: 65, Neg. LLF: 91.38381223440425
Iteration: 7, Func. Count: 75, Neg. LLF: 91.14613121138551
Iteration: 8, Func. Count: 85, Neg. LLF: 91.17362905310868
Iteration: 9, Func. Count: 96, Neg. LLF: 91.14006465756796
Iteration: 10, Func. Count: 107, Neg. LLF: 91.12429874356947
Iteration: 11, Func. Count: 117, Neg. LLF: 91.11979042281915
Iteration: 12, Func. Count: 127, Neg. LLF: 91.09117813788463
Iteration: 13, Func. Count: 137, Neg. LLF: 91.09106152511605
Iteration: 14, Func. Count: 147, Neg. LLF: 91.09106139277326
Optimization terminated successfully (Exit mode 0)
Current function value: 91.09106099449728
Iterations: 14
Function evaluations: 148
Gradient evaluations: 14
Iteration: 1, Func. Count: 8, Neg. LLF: 139.97256554551797
Iteration: 2, Func. Count: 18, Neg. LLF: 147.45096379084112
Iteration: 3, Func. Count: 27, Neg. LLF: 2495907.4730393444
Iteration: 4, Func. Count: 35, Neg. LLF: 3641520.409469987
Iteration: 5, Func. Count: 43, Neg. LLF: 3759258.2255300535
Iteration: 6, Func. Count: 51, Neg. LLF: 136.79695323253452
Iteration: 7, Func. Count: 59, Neg. LLF: 95.33214111987694
Iteration: 8, Func. Count: 67, Neg. LLF: 90.03079415543547
Iteration: 9, Func. Count: 74, Neg. LLF: 89.17809677472536
Iteration: 10, Func. Count: 81, Neg. LLF: 89.74013677574771
Iteration: 11, Func. Count: 89, Neg. LLF: 88.78324415688871
Iteration: 12, Func. Count: 96, Neg. LLF: 88.77159281634566
Iteration: 13, Func. Count: 103, Neg. LLF: 88.76641571627324
Iteration: 14, Func. Count: 110, Neg. LLF: 88.76503529923488
Iteration: 15, Func. Count: 117, Neg. LLF: 88.7640902459517
Iteration: 16, Func. Count: 124, Neg. LLF: 88.76351208604672
Iteration: 17, Func. Count: 131, Neg. LLF: 88.76337611173142
Iteration: 18, Func. Count: 138, Neg. LLF: 88.76336480814349
Iteration: 19, Func. Count: 144, Neg. LLF: 88.76336480813463
Optimization terminated successfully (Exit mode 0)
Current function value: 88.76336480814349
Iterations: 19
Function evaluations: 144
Gradient evaluations: 19
Iteration: 1, Func. Count: 9, Neg. LLF: 20018233.350562505
Iteration: 2, Func. Count: 19, Neg. LLF: 150.48059040408245
Iteration: 3, Func. Count: 28, Neg. LLF: 111.19894661296726
Iteration: 4, Func. Count: 37, Neg. LLF: 107.88964313865554
Iteration: 5, Func. Count: 46, Neg. LLF: 108.48115967407676
Iteration: 6, Func. Count: 55, Neg. LLF: 128.0904745947391
Iteration: 7, Func. Count: 65, Neg. LLF: 95.92025541384504
Iteration: 8, Func. Count: 74, Neg. LLF: 94.55177687095019
Iteration: 9, Func. Count: 83, Neg. LLF: 93.73380294928705
Iteration: 10, Func. Count: 92, Neg. LLF: 92.6548209869582
Iteration: 11, Func. Count: 100, Neg. LLF: 92.9776196725424
Iteration: 12, Func. Count: 109, Neg. LLF: 91.868892796023
Iteration: 13, Func. Count: 117, Neg. LLF: 91.12692010275126
Iteration: 14, Func. Count: 125, Neg. LLF: 91.10117369611696
Iteration: 15, Func. Count: 133, Neg. LLF: 91.09121330481302
Iteration: 16, Func. Count: 141, Neg. LLF: 91.09106118517272
Iteration: 17, Func. Count: 148, Neg. LLF: 91.09106118601318
Optimization terminated successfully (Exit mode 0)
Current function value: 91.09106118517272
Iterations: 17
Function evaluations: 148
Gradient evaluations: 17
Iteration: 1, Func. Count: 10, Neg. LLF: 20054638.329024144
Iteration: 2, Func. Count: 20, Neg. LLF: 2613647.1368484437
Iteration: 3, Func. Count: 30, Neg. LLF: 102.78686663891891
Iteration: 4, Func. Count: 40, Neg. LLF: 99.66324776008209
Iteration: 5, Func. Count: 50, Neg. LLF: 93.25485814215293
Iteration: 6, Func. Count: 60, Neg. LLF: 93.36321160017383
Iteration: 7, Func. Count: 70, Neg. LLF: 92.0062864984404
Iteration: 8, Func. Count: 79, Neg. LLF: 92.0523051464759
Iteration: 9, Func. Count: 89, Neg. LLF: 92.62398559198432
Iteration: 10, Func. Count: 99, Neg. LLF: 91.72342359236607
Iteration: 11, Func. Count: 108, Neg. LLF: 91.34518342246339
Iteration: 12, Func. Count: 117, Neg. LLF: 91.20488668634388
Iteration: 13, Func. Count: 126, Neg. LLF: 91.18372798355229
Iteration: 14, Func. Count: 135, Neg. LLF: 91.2474029734225
Iteration: 15, Func. Count: 145, Neg. LLF: 91.16497544426629
Iteration: 16, Func. Count: 154, Neg. LLF: 91.15775656749427
Iteration: 17, Func. Count: 163, Neg. LLF: 91.15338593508065
Iteration: 18, Func. Count: 172, Neg. LLF: 91.14179854835618
Iteration: 19, Func. Count: 181, Neg. LLF: 91.13162013145046
Iteration: 20, Func. Count: 190, Neg. LLF: 91.11256029696004
Iteration: 21, Func. Count: 199, Neg. LLF: 91.09116507616676
Iteration: 22, Func. Count: 208, Neg. LLF: 19371406.227718443
Iteration: 23, Func. Count: 221, Neg. LLF: 91.15003605185285
Iteration: 24, Func. Count: 232, Neg. LLF: 91.09106094600757
Iteration: 25, Func. Count: 240, Neg. LLF: 91.09106094823153
Optimization terminated successfully (Exit mode 0)
Current function value: 91.09106094600757
Iterations: 26
Function evaluations: 240
Gradient evaluations: 25
Iteration: 1, Func. Count: 11, Neg. LLF: 19684686.21968518
Iteration: 2, Func. Count: 22, Neg. LLF: 2408989.576295443
Iteration: 3, Func. Count: 33, Neg. LLF: 2694227.328666316
Iteration: 4, Func. Count: 44, Neg. LLF: 1387723.610243261
Iteration: 5, Func. Count: 55, Neg. LLF: 91.95155925002281
Iteration: 6, Func. Count: 65, Neg. LLF: 1881.2700846414
Iteration: 7, Func. Count: 76, Neg. LLF: 99.66020602771266
Iteration: 8, Func. Count: 87, Neg. LLF: 89.39388908884331
Iteration: 9, Func. Count: 97, Neg. LLF: 87.92529134765509
Iteration: 10, Func. Count: 107, Neg. LLF: 87.92981222266943
Iteration: 11, Func. Count: 118, Neg. LLF: 87.79713018594745
Iteration: 12, Func. Count: 128, Neg. LLF: 87.7380211544854
Iteration: 13, Func. Count: 138, Neg. LLF: 87.73101540270557
Iteration: 14, Func. Count: 148, Neg. LLF: 87.71941555564668
Iteration: 15, Func. Count: 158, Neg. LLF: 87.70522986121493
Iteration: 16, Func. Count: 168, Neg. LLF: 87.69133644610989
Iteration: 17, Func. Count: 178, Neg. LLF: 87.6905302373006
Iteration: 18, Func. Count: 188, Neg. LLF: 87.69045669001652
Iteration: 19, Func. Count: 197, Neg. LLF: 87.69045737994121
Optimization terminated successfully (Exit mode 0)
Current function value: 87.69045669001652
Iterations: 19
Function evaluations: 197
Gradient evaluations: 19
Iteration: 1, Func. Count: 12, Neg. LLF: 19877395.220696535
Iteration: 2, Func. Count: 24, Neg. LLF: 2390399.4544578437
Iteration: 3, Func. Count: 36, Neg. LLF: 2022506.160333395
Iteration: 4, Func. Count: 48, Neg. LLF: 1613442.4991963832
Iteration: 5, Func. Count: 60, Neg. LLF: 100.77739001645412
Iteration: 6, Func. Count: 72, Neg. LLF: 297.40728002943155
Iteration: 7, Func. Count: 84, Neg. LLF: 118.00925763686863
Iteration: 8, Func. Count: 96, Neg. LLF: 122.20514880700338
Iteration: 9, Func. Count: 108, Neg. LLF: 110.99330759563534
Iteration: 10, Func. Count: 120, Neg. LLF: 93.73219799291779
Iteration: 11, Func. Count: 132, Neg. LLF: 91.50087737882235
Iteration: 12, Func. Count: 144, Neg. LLF: 97.73115454739784
Iteration: 13, Func. Count: 156, Neg. LLF: 90.98436019099819
Iteration: 14, Func. Count: 168, Neg. LLF: 90.58607324299929
Iteration: 15, Func. Count: 180, Neg. LLF: 88.1360912387776
Iteration: 16, Func. Count: 191, Neg. LLF: 88.20665929687364
Iteration: 17, Func. Count: 203, Neg. LLF: 87.83959314236213
Iteration: 18, Func. Count: 214, Neg. LLF: 87.86581861683499
Iteration: 19, Func. Count: 226, Neg. LLF: 87.82784000062611
Iteration: 20, Func. Count: 238, Neg. LLF: 87.82027026069397
Iteration: 21, Func. Count: 249, Neg. LLF: 87.81788924687217
Iteration: 22, Func. Count: 260, Neg. LLF: 87.81373963436252
Iteration: 23, Func. Count: 271, Neg. LLF: 87.81088310252822
Iteration: 24, Func. Count: 282, Neg. LLF: 87.69262545435981
Iteration: 25, Func. Count: 293, Neg. LLF: 88.94739094269787
Iteration: 26, Func. Count: 306, Neg. LLF: 93.40521079238411
Iteration: 27, Func. Count: 320, Neg. LLF: 87.88607365290545
Iteration: 28, Func. Count: 333, Neg. LLF: 87.70040619923252
Iteration: 29, Func. Count: 345, Neg. LLF: 87.69045860886972
Iteration: 30, Func. Count: 356, Neg. LLF: 87.6904564330467
Iteration: 31, Func. Count: 366, Neg. LLF: 87.69045668057508
Optimization terminated successfully (Exit mode 0)
Current function value: 87.6904564330467
Iterations: 32
Function evaluations: 366
Gradient evaluations: 31
Iteration: 1, Func. Count: 9, Neg. LLF: 155.47951110108684
Iteration: 2, Func. Count: 20, Neg. LLF: 154.29355104808366
Iteration: 3, Func. Count: 30, Neg. LLF: 2433105.085705408
Iteration: 4, Func. Count: 39, Neg. LLF: 2486590.752065176
Iteration: 5, Func. Count: 48, Neg. LLF: 3662709.2299138648
Iteration: 6, Func. Count: 57, Neg. LLF: 3779488.201043978
Iteration: 7, Func. Count: 66, Neg. LLF: 673.2628849531998
Iteration: 8, Func. Count: 75, Neg. LLF: 92.91425888892903
Iteration: 9, Func. Count: 84, Neg. LLF: 89.00928339680091
Iteration: 10, Func. Count: 92, Neg. LLF: 89.86410463355327
Iteration: 11, Func. Count: 101, Neg. LLF: 88.94142955526917
Iteration: 12, Func. Count: 110, Neg. LLF: 88.81720081242518
Iteration: 13, Func. Count: 118, Neg. LLF: 88.8025873866847
Iteration: 14, Func. Count: 126, Neg. LLF: 88.79394183909626
Iteration: 15, Func. Count: 134, Neg. LLF: 88.78567020689185
Iteration: 16, Func. Count: 142, Neg. LLF: 88.77887497453938
Iteration: 17, Func. Count: 150, Neg. LLF: 88.77111831840921
Iteration: 18, Func. Count: 158, Neg. LLF: 88.76474832025882
Iteration: 19, Func. Count: 166, Neg. LLF: 88.7633031476106
Iteration: 20, Func. Count: 174, Neg. LLF: 88.7634771677348
Iteration: 21, Func. Count: 183, Neg. LLF: 88.76335836284849
Iteration: 22, Func. Count: 191, Neg. LLF: 88.76341295173376
Optimization terminated successfully (Exit mode 0)
Current function value: 88.76335846300677
Iterations: 23
Function evaluations: 193
Gradient evaluations: 22
Iteration: 1, Func. Count: 10, Neg. LLF: 19981103.058330394
Iteration: 2, Func. Count: 21, Neg. LLF: 150.67646704285988
Iteration: 3, Func. Count: 31, Neg. LLF: 111.37840153524326
Iteration: 4, Func. Count: 41, Neg. LLF: 109.0639230352087
Iteration: 5, Func. Count: 51, Neg. LLF: 110.35325496971032
Iteration: 6, Func. Count: 61, Neg. LLF: 116.68475884816712
Iteration: 7, Func. Count: 71, Neg. LLF: 95.95378132319567
Iteration: 8, Func. Count: 81, Neg. LLF: 101.55013832138631
Iteration: 9, Func. Count: 92, Neg. LLF: 92.92860496335341
Iteration: 10, Func. Count: 101, Neg. LLF: 92.90653770698576
Iteration: 11, Func. Count: 111, Neg. LLF: 93.18338556295144
Iteration: 12, Func. Count: 121, Neg. LLF: 92.71905275183506
Iteration: 13, Func. Count: 130, Neg. LLF: 92.2888178095284
Iteration: 14, Func. Count: 139, Neg. LLF: 91.53058167465359
Iteration: 15, Func. Count: 148, Neg. LLF: 91.27863754106795
Iteration: 16, Func. Count: 157, Neg. LLF: 91.09599195872913
Iteration: 17, Func. Count: 166, Neg. LLF: 91.0910944572284
Iteration: 18, Func. Count: 175, Neg. LLF: 91.09106098696752
Iteration: 19, Func. Count: 183, Neg. LLF: 91.09106098750229
Optimization terminated successfully (Exit mode 0)
Current function value: 91.09106098696752
Iterations: 19
Function evaluations: 183
Gradient evaluations: 19
Iteration: 1, Func. Count: 11, Neg. LLF: 20001161.31534096
Iteration: 2, Func. Count: 22, Neg. LLF: 2571142.723537442
Iteration: 3, Func. Count: 33, Neg. LLF: 101.57746613519592
Iteration: 4, Func. Count: 44, Neg. LLF: 100.40685627370969
Iteration: 5, Func. Count: 55, Neg. LLF: 93.44518318114504
Iteration: 6, Func. Count: 66, Neg. LLF: 92.92851268801402
Iteration: 7, Func. Count: 77, Neg. LLF: 92.11105187458622
Iteration: 8, Func. Count: 88, Neg. LLF: 92.01906896849893
Iteration: 9, Func. Count: 99, Neg. LLF: 91.75571743017778
Iteration: 10, Func. Count: 109, Neg. LLF: 91.70813600495543
Iteration: 11, Func. Count: 119, Neg. LLF: 91.38571463483834
Iteration: 12, Func. Count: 129, Neg. LLF: 91.67886911540322
Iteration: 13, Func. Count: 140, Neg. LLF: 94.42285070270864
Iteration: 14, Func. Count: 152, Neg. LLF: 91.22395558995973
Iteration: 15, Func. Count: 162, Neg. LLF: 91.18159997594297
Iteration: 16, Func. Count: 172, Neg. LLF: 91.16406991628978
Iteration: 17, Func. Count: 182, Neg. LLF: 91.16102933674738
Iteration: 18, Func. Count: 192, Neg. LLF: 91.15791903965015
Iteration: 19, Func. Count: 202, Neg. LLF: 91.15156729788957
Iteration: 20, Func. Count: 212, Neg. LLF: 91.14389855798574
Iteration: 21, Func. Count: 222, Neg. LLF: 91.12918033932219
Iteration: 22, Func. Count: 232, Neg. LLF: 91.09115064135902
Iteration: 23, Func. Count: 242, Neg. LLF: 91.0911703874212
Iteration: 24, Func. Count: 253, Neg. LLF: 91.09106146382017
Iteration: 25, Func. Count: 262, Neg. LLF: 91.09106146736144
Optimization terminated successfully (Exit mode 0)
Current function value: 91.09106146382017
Iterations: 25
Function evaluations: 262
Gradient evaluations: 25
Iteration: 1, Func. Count: 12, Neg. LLF: 19652155.183908813
Iteration: 2, Func. Count: 24, Neg. LLF: 2418314.683638952
Iteration: 3, Func. Count: 36, Neg. LLF: 2503430.7579701715
Iteration: 4, Func. Count: 48, Neg. LLF: 1416722.730140282
Iteration: 5, Func. Count: 60, Neg. LLF: 92.1372252903149
Iteration: 6, Func. Count: 71, Neg. LLF: 2619.3633498411477
Iteration: 7, Func. Count: 83, Neg. LLF: 92.44566508994949
Iteration: 8, Func. Count: 95, Neg. LLF: 88.57844618150337
Iteration: 9, Func. Count: 106, Neg. LLF: 119.86665009341871
Iteration: 10, Func. Count: 118, Neg. LLF: 88.07715357746208
Iteration: 11, Func. Count: 129, Neg. LLF: 87.90579527403118
Iteration: 12, Func. Count: 140, Neg. LLF: 87.8000555603848
Iteration: 13, Func. Count: 151, Neg. LLF: 87.73794927216429
Iteration: 14, Func. Count: 162, Neg. LLF: 87.72402931021918
Iteration: 15, Func. Count: 173, Neg. LLF: 87.71806979409111
Iteration: 16, Func. Count: 184, Neg. LLF: 87.70875793101487
Iteration: 17, Func. Count: 195, Neg. LLF: 87.69743191904293
Iteration: 18, Func. Count: 206, Neg. LLF: 87.69101970335583
Iteration: 19, Func. Count: 217, Neg. LLF: 87.69049555441751
Iteration: 20, Func. Count: 228, Neg. LLF: 87.69045787660379
Iteration: 21, Func. Count: 239, Neg. LLF: 87.69045641665996
Iteration: 22, Func. Count: 249, Neg. LLF: 87.69045710662746
Optimization terminated successfully (Exit mode 0)
Current function value: 87.69045641665996
Iterations: 22
Function evaluations: 249
Gradient evaluations: 22
Iteration: 1, Func. Count: 13, Neg. LLF: 19817503.57175453
Iteration: 2, Func. Count: 26, Neg. LLF: 2401582.9820076083
Iteration: 3, Func. Count: 39, Neg. LLF: 1970459.6367540134
Iteration: 4, Func. Count: 52, Neg. LLF: 1752009.8942381009
Iteration: 5, Func. Count: 65, Neg. LLF: 99.30276570026246
Iteration: 6, Func. Count: 78, Neg. LLF: 493.39640389180613
Iteration: 7, Func. Count: 91, Neg. LLF: 118.6713931865179
Iteration: 8, Func. Count: 104, Neg. LLF: 122.88265004463608
Iteration: 9, Func. Count: 117, Neg. LLF: 109.1704379293293
Iteration: 10, Func. Count: 130, Neg. LLF: 92.69723928711709
Iteration: 11, Func. Count: 143, Neg. LLF: 93.76165375113749
Iteration: 12, Func. Count: 156, Neg. LLF: 92.03684810386281
Iteration: 13, Func. Count: 169, Neg. LLF: 91.06541509994508
Iteration: 14, Func. Count: 182, Neg. LLF: 90.9873387476481
Iteration: 15, Func. Count: 195, Neg. LLF: 88.16995178668029
Iteration: 16, Func. Count: 207, Neg. LLF: 88.24827138337363
Iteration: 17, Func. Count: 220, Neg. LLF: 87.98663098407886
Iteration: 18, Func. Count: 232, Neg. LLF: 87.93070017126996
Iteration: 19, Func. Count: 244, Neg. LLF: 87.84519292660413
Iteration: 20, Func. Count: 256, Neg. LLF: 87.81904049525254
Iteration: 21, Func. Count: 268, Neg. LLF: 87.81669865843074
Iteration: 22, Func. Count: 280, Neg. LLF: 87.81523034009759
Iteration: 23, Func. Count: 292, Neg. LLF: 87.80998504838918
Iteration: 24, Func. Count: 304, Neg. LLF: 87.69796495762168
Iteration: 25, Func. Count: 316, Neg. LLF: 89.11698844046911
Iteration: 26, Func. Count: 329, Neg. LLF: 88.82388496149478
Iteration: 27, Func. Count: 343, Neg. LLF: 89.9141884115244
Iteration: 28, Func. Count: 357, Neg. LLF: 88.02657580856122
Iteration: 29, Func. Count: 370, Neg. LLF: 87.70192096047816
Iteration: 30, Func. Count: 383, Neg. LLF: 87.6904567955838
Iteration: 31, Func. Count: 394, Neg. LLF: 87.69045704319608
Optimization terminated successfully (Exit mode 0)
Current function value: 87.6904567955838
Iterations: 32
Function evaluations: 394
Gradient evaluations: 31
Iteration: 1, Func. Count: 6, Neg. LLF: 159.78307367313684
Iteration: 2, Func. Count: 14, Neg. LLF: 141.93014021570437
Iteration: 3, Func. Count: 21, Neg. LLF: 96.64761933645144
Iteration: 4, Func. Count: 26, Neg. LLF: 96.58852165105087
Iteration: 5, Func. Count: 31, Neg. LLF: 96.58089920908813
Iteration: 6, Func. Count: 36, Neg. LLF: 96.58074840870373
Iteration: 7, Func. Count: 41, Neg. LLF: 96.58067692170728
Iteration: 8, Func. Count: 46, Neg. LLF: 96.58067286400149
Iteration: 9, Func. Count: 50, Neg. LLF: 96.5806729703025
Optimization terminated successfully (Exit mode 0)
Current function value: 96.58067286400149
Iterations: 9
Function evaluations: 50
Gradient evaluations: 9
Iteration: 1, Func. Count: 7, Neg. LLF: 22173405.539461873
Iteration: 2, Func. Count: 15, Neg. LLF: 135.7411785259133
Iteration: 3, Func. Count: 22, Neg. LLF: 107.5548025697199
Iteration: 4, Func. Count: 29, Neg. LLF: 102.87770462228707
Iteration: 5, Func. Count: 36, Neg. LLF: 103.42296725120907
Iteration: 6, Func. Count: 43, Neg. LLF: 110.09895381715758
Iteration: 7, Func. Count: 50, Neg. LLF: 99.48320098049201
Iteration: 8, Func. Count: 57, Neg. LLF: 97.95636353946581
Iteration: 9, Func. Count: 64, Neg. LLF: 96.09594121595084
Iteration: 10, Func. Count: 71, Neg. LLF: 94.60927309101335
Iteration: 11, Func. Count: 78, Neg. LLF: 93.31247414329962
Iteration: 12, Func. Count: 85, Neg. LLF: 92.2696896502594
Iteration: 13, Func. Count: 91, Neg. LLF: 93.04890590946313
Iteration: 14, Func. Count: 98, Neg. LLF: 91.18318514004929
Iteration: 15, Func. Count: 104, Neg. LLF: 91.09142202358356
Iteration: 16, Func. Count: 110, Neg. LLF: 91.0910662012525
Iteration: 17, Func. Count: 116, Neg. LLF: 91.09106096255539
Iteration: 18, Func. Count: 121, Neg. LLF: 91.091060962692
Optimization terminated successfully (Exit mode 0)
Current function value: 91.09106096255539
Iterations: 18
Function evaluations: 121
Gradient evaluations: 18
Iteration: 1, Func. Count: 8, Neg. LLF: 22003017.18015451
Iteration: 2, Func. Count: 17, Neg. LLF: 140.52090184275795
Iteration: 3, Func. Count: 25, Neg. LLF: 94.68278226364454
Iteration: 4, Func. Count: 33, Neg. LLF: 91.56446951044319
Iteration: 5, Func. Count: 40, Neg. LLF: 91.5488566965098
Iteration: 6, Func. Count: 48, Neg. LLF: 91.41209949624283
Iteration: 7, Func. Count: 56, Neg. LLF: 91.14317475717878
Iteration: 8, Func. Count: 63, Neg. LLF: 91.12635520764341
Iteration: 9, Func. Count: 70, Neg. LLF: 91.0987172837041
Iteration: 10, Func. Count: 77, Neg. LLF: 91.09311361946057
Iteration: 11, Func. Count: 84, Neg. LLF: 91.09115933752476
Iteration: 12, Func. Count: 91, Neg. LLF: 91.09106110071605
Iteration: 13, Func. Count: 97, Neg. LLF: 91.09106110405834
Optimization terminated successfully (Exit mode 0)
Current function value: 91.09106110071605
Iterations: 13
Function evaluations: 97
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 21356887.45821209
Iteration: 2, Func. Count: 18, Neg. LLF: 126.31103282304045
Iteration: 3, Func. Count: 27, Neg. LLF: 91.76029536515962
Iteration: 4, Func. Count: 35, Neg. LLF: 91.43143680398884
Iteration: 5, Func. Count: 43, Neg. LLF: 91.16185947062169
Iteration: 6, Func. Count: 51, Neg. LLF: 91.14073062292175
Iteration: 7, Func. Count: 59, Neg. LLF: 91.14016675653201
Iteration: 8, Func. Count: 67, Neg. LLF: 91.14016214808996
Iteration: 9, Func. Count: 74, Neg. LLF: 91.14016214811107
Optimization terminated successfully (Exit mode 0)
Current function value: 91.14016214808996
Iterations: 9
Function evaluations: 74
Gradient evaluations: 9
Iteration: 1, Func. Count: 10, Neg. LLF: 20337494.81327623
Iteration: 2, Func. Count: 20, Neg. LLF: 95.37177573318557
Iteration: 3, Func. Count: 30, Neg. LLF: 92.1940878642497
Iteration: 4, Func. Count: 39, Neg. LLF: 94.65397026937713
Iteration: 5, Func. Count: 49, Neg. LLF: 287.5601817435257
Iteration: 6, Func. Count: 59, Neg. LLF: 91.44309808460807
Iteration: 7, Func. Count: 68, Neg. LLF: 91.31687022731293
Iteration: 8, Func. Count: 77, Neg. LLF: 91.21851646693396
Iteration: 9, Func. Count: 86, Neg. LLF: 91.2129144463255
Iteration: 10, Func. Count: 96, Neg. LLF: 91.19300077285655
Iteration: 11, Func. Count: 105, Neg. LLF: 91.18704160724162
Iteration: 12, Func. Count: 114, Neg. LLF: 91.10117134496271
Iteration: 13, Func. Count: 123, Neg. LLF: 91.10334199259488
Iteration: 14, Func. Count: 133, Neg. LLF: 19302322.570425082
Iteration: 15, Func. Count: 145, Neg. LLF: 91.20580063869677
Iteration: 16, Func. Count: 155, Neg. LLF: 91.09156152196887
Iteration: 17, Func. Count: 164, Neg. LLF: 91.09106197611405
Iteration: 18, Func. Count: 173, Neg. LLF: 91.091060946908
Iteration: 19, Func. Count: 181, Neg. LLF: 91.09106096110708
Optimization terminated successfully (Exit mode 0)
Current function value: 91.091060946908
Iterations: 20
Function evaluations: 181
Gradient evaluations: 19
Iteration: 1, Func. Count: 7, Neg. LLF: 162.1486158507049
Iteration: 2, Func. Count: 16, Neg. LLF: 147.52370128138233
Iteration: 3, Func. Count: 24, Neg. LLF: 96.01986962611622
Iteration: 4, Func. Count: 30, Neg. LLF: 93.91059423572597
Iteration: 5, Func. Count: 36, Neg. LLF: 93.85953041713921
Iteration: 6, Func. Count: 42, Neg. LLF: 93.81704827063776
Iteration: 7, Func. Count: 48, Neg. LLF: 93.79634696747645
Iteration: 8, Func. Count: 54, Neg. LLF: 93.79314302594155
Iteration: 9, Func. Count: 60, Neg. LLF: 93.79292182189995
Iteration: 10, Func. Count: 66, Neg. LLF: 93.7928680986919
Iteration: 11, Func. Count: 72, Neg. LLF: 93.79286704331021
Iteration: 12, Func. Count: 77, Neg. LLF: 93.79286731977592
Optimization terminated successfully (Exit mode 0)
Current function value: 93.79286704331021
Iterations: 12
Function evaluations: 77
Gradient evaluations: 12
Iteration: 1, Func. Count: 8, Neg. LLF: 20059077.36714589
Iteration: 2, Func. Count: 17, Neg. LLF: 149.3075334501539
Iteration: 3, Func. Count: 25, Neg. LLF: 110.92860259140545
Iteration: 4, Func. Count: 33, Neg. LLF: 104.50791469301693
Iteration: 5, Func. Count: 41, Neg. LLF: 99.79260663593989
Iteration: 6, Func. Count: 49, Neg. LLF: 102.22429992089255
Iteration: 7, Func. Count: 57, Neg. LLF: 100.07788042868056
Iteration: 8, Func. Count: 65, Neg. LLF: 97.33918797717891
Iteration: 9, Func. Count: 73, Neg. LLF: 92.89524531145473
Iteration: 10, Func. Count: 80, Neg. LLF: 93.07340087620302
Iteration: 11, Func. Count: 88, Neg. LLF: 92.99505641758746
Iteration: 12, Func. Count: 96, Neg. LLF: 92.35824737951528
Iteration: 13, Func. Count: 104, Neg. LLF: 91.1528125437131
Iteration: 14, Func. Count: 111, Neg. LLF: 91.18616670058876
Iteration: 15, Func. Count: 119, Neg. LLF: 91.09509551610572
Iteration: 16, Func. Count: 126, Neg. LLF: 91.09106745620838
Iteration: 17, Func. Count: 133, Neg. LLF: 91.09106095048722
Iteration: 18, Func. Count: 139, Neg. LLF: 91.09106095060018
Optimization terminated successfully (Exit mode 0)
Current function value: 91.09106095048722
Iterations: 18
Function evaluations: 139
Gradient evaluations: 18
Iteration: 1, Func. Count: 9, Neg. LLF: 19965388.850394472
Iteration: 2, Func. Count: 19, Neg. LLF: 146.6332436723583
Iteration: 3, Func. Count: 28, Neg. LLF: 95.56192412068769
Iteration: 4, Func. Count: 37, Neg. LLF: 91.56725952682609
Iteration: 5, Func. Count: 45, Neg. LLF: 93.01113567568835
Iteration: 6, Func. Count: 54, Neg. LLF: 91.27463593300865
Iteration: 7, Func. Count: 62, Neg. LLF: 91.18514228923709
Iteration: 8, Func. Count: 70, Neg. LLF: 91.13541089089487
Iteration: 9, Func. Count: 78, Neg. LLF: 91.09841948320688
Iteration: 10, Func. Count: 86, Neg. LLF: 91.09137174918973
Iteration: 11, Func. Count: 94, Neg. LLF: 91.09133967160446
Iteration: 12, Func. Count: 102, Neg. LLF: 91.09118899896656
Iteration: 13, Func. Count: 110, Neg. LLF: 91.09108109099584
Iteration: 14, Func. Count: 118, Neg. LLF: 91.09106240398555
Iteration: 15, Func. Count: 126, Neg. LLF: 91.09106139148338
Iteration: 16, Func. Count: 133, Neg. LLF: 91.09106139411429
Optimization terminated successfully (Exit mode 0)
Current function value: 91.09106139148338
Iterations: 16
Function evaluations: 133
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 19570018.70315249
Iteration: 2, Func. Count: 20, Neg. LLF: 148.3490952797349
Iteration: 3, Func. Count: 30, Neg. LLF: 112.538721479902
Iteration: 4, Func. Count: 40, Neg. LLF: 92.1194009770987
Iteration: 5, Func. Count: 49, Neg. LLF: 93.20555035465246
Iteration: 6, Func. Count: 59, Neg. LLF: 91.21921670284657
Iteration: 7, Func. Count: 68, Neg. LLF: 91.18028006506967
Iteration: 8, Func. Count: 77, Neg. LLF: 91.15875197917725
Iteration: 9, Func. Count: 86, Neg. LLF: 91.15543410329833
Iteration: 10, Func. Count: 95, Neg. LLF: 91.14162571591211
Iteration: 11, Func. Count: 104, Neg. LLF: 91.14026059240743
Iteration: 12, Func. Count: 113, Neg. LLF: 91.1401632544256
Iteration: 13, Func. Count: 122, Neg. LLF: 91.14016217208763
Iteration: 14, Func. Count: 130, Neg. LLF: 91.14016217231928
Optimization terminated successfully (Exit mode 0)
Current function value: 91.14016217208763
Iterations: 14
Function evaluations: 130
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 19731288.29529575
Iteration: 2, Func. Count: 22, Neg. LLF: 205.2229457180914
Iteration: 3, Func. Count: 33, Neg. LLF: 111.12704052893798
Iteration: 4, Func. Count: 44, Neg. LLF: 93.80467345219014
Iteration: 5, Func. Count: 54, Neg. LLF: 95.73378135291338
Iteration: 6, Func. Count: 65, Neg. LLF: 91.37338073044782
Iteration: 7, Func. Count: 75, Neg. LLF: 91.15649618776555
Iteration: 8, Func. Count: 85, Neg. LLF: 91.38113642039052
Iteration: 9, Func. Count: 96, Neg. LLF: 91.12880453010546
Iteration: 10, Func. Count: 106, Neg. LLF: 91.12471775935381
Iteration: 11, Func. Count: 116, Neg. LLF: 91.12372030619007
Iteration: 12, Func. Count: 126, Neg. LLF: 91.11666266960334
Iteration: 13, Func. Count: 136, Neg. LLF: 91.0922490304489
Iteration: 14, Func. Count: 146, Neg. LLF: 91.09128156324232
Iteration: 15, Func. Count: 156, Neg. LLF: 91.09107776357648
Iteration: 16, Func. Count: 166, Neg. LLF: 91.09106480001859
Iteration: 17, Func. Count: 176, Neg. LLF: 91.09106132876917
Iteration: 18, Func. Count: 185, Neg. LLF: 91.091061342965
Optimization terminated successfully (Exit mode 0)
Current function value: 91.09106132876917
Iterations: 18
Function evaluations: 185
Gradient evaluations: 18
Iteration: 1, Func. Count: 8, Neg. LLF: 164.79114163841533
Iteration: 2, Func. Count: 18, Neg. LLF: 184.97917112997087
Iteration: 3, Func. Count: 26, Neg. LLF: 3390854.5835203542
Iteration: 4, Func. Count: 34, Neg. LLF: 96.28968109475184
Iteration: 5, Func. Count: 42, Neg. LLF: 93.50500043386243
Iteration: 6, Func. Count: 49, Neg. LLF: 93.31430676445179
Iteration: 7, Func. Count: 56, Neg. LLF: 93.24695828478086
Iteration: 8, Func. Count: 63, Neg. LLF: 93.2422719757283
Iteration: 9, Func. Count: 70, Neg. LLF: 93.24114720357319
Iteration: 10, Func. Count: 77, Neg. LLF: 93.24109650082049
Iteration: 11, Func. Count: 84, Neg. LLF: 93.24109183904724
Iteration: 12, Func. Count: 90, Neg. LLF: 93.24109209112115
Optimization terminated successfully (Exit mode 0)
Current function value: 93.24109183904724
Iterations: 12
Function evaluations: 90
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 20167379.923095677
Iteration: 2, Func. Count: 19, Neg. LLF: 152.88217308806747
Iteration: 3, Func. Count: 28, Neg. LLF: 111.43233162174026
Iteration: 4, Func. Count: 37, Neg. LLF: 108.67784878202554
Iteration: 5, Func. Count: 46, Neg. LLF: 110.41738379340018
Iteration: 6, Func. Count: 55, Neg. LLF: 116.15774571967349
Iteration: 7, Func. Count: 64, Neg. LLF: 96.53497790417565
Iteration: 8, Func. Count: 73, Neg. LLF: 93.22226074673748
Iteration: 9, Func. Count: 81, Neg. LLF: 108.60757311660643
Iteration: 10, Func. Count: 91, Neg. LLF: 93.14379596612171
Iteration: 11, Func. Count: 100, Neg. LLF: 93.07256058420728
Iteration: 12, Func. Count: 109, Neg. LLF: 92.44588321952367
Iteration: 13, Func. Count: 117, Neg. LLF: 91.71228032445828
Iteration: 14, Func. Count: 125, Neg. LLF: 91.10196222171986
Iteration: 15, Func. Count: 133, Neg. LLF: 91.0935728429594
Iteration: 16, Func. Count: 141, Neg. LLF: 91.09106495180579
Iteration: 17, Func. Count: 149, Neg. LLF: 91.09106095101441
Iteration: 18, Func. Count: 156, Neg. LLF: 91.09106095109748
Optimization terminated successfully (Exit mode 0)
Current function value: 91.09106095101441
Iterations: 18
Function evaluations: 156
Gradient evaluations: 18
Iteration: 1, Func. Count: 10, Neg. LLF: 19947072.975782927
Iteration: 2, Func. Count: 21, Neg. LLF: 146.20410161215764
Iteration: 3, Func. Count: 31, Neg. LLF: 95.48318857404874
Iteration: 4, Func. Count: 41, Neg. LLF: 91.60184942432947
Iteration: 5, Func. Count: 50, Neg. LLF: 93.14860844069504
Iteration: 6, Func. Count: 60, Neg. LLF: 91.27358469683968
Iteration: 7, Func. Count: 69, Neg. LLF: 91.17927065667112
Iteration: 8, Func. Count: 78, Neg. LLF: 91.13320147850409
Iteration: 9, Func. Count: 87, Neg. LLF: 91.0922704228293
Iteration: 10, Func. Count: 96, Neg. LLF: 91.09216515863179
Iteration: 11, Func. Count: 106, Neg. LLF: 91.09117652750194
Iteration: 12, Func. Count: 115, Neg. LLF: 91.09106095534096
Iteration: 13, Func. Count: 123, Neg. LLF: 91.09106095753359
Optimization terminated successfully (Exit mode 0)
Current function value: 91.09106095534096
Iterations: 13
Function evaluations: 123
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 19589765.002619367
Iteration: 2, Func. Count: 22, Neg. LLF: 145.44645869904554
Iteration: 3, Func. Count: 33, Neg. LLF: 110.15348557010411
Iteration: 4, Func. Count: 44, Neg. LLF: 93.30561925028906
Iteration: 5, Func. Count: 54, Neg. LLF: 99.95464526640072
Iteration: 6, Func. Count: 65, Neg. LLF: 91.74997844983928
Iteration: 7, Func. Count: 75, Neg. LLF: 110.81781879509879
Iteration: 8, Func. Count: 86, Neg. LLF: 91.19118130661585
Iteration: 9, Func. Count: 96, Neg. LLF: 91.15864991849844
Iteration: 10, Func. Count: 106, Neg. LLF: 91.1451693295261
Iteration: 11, Func. Count: 116, Neg. LLF: 91.1415234128372
Iteration: 12, Func. Count: 126, Neg. LLF: 91.14024573904874
Iteration: 13, Func. Count: 136, Neg. LLF: 91.14018540248905
Iteration: 14, Func. Count: 146, Neg. LLF: 91.14016506110892
Iteration: 15, Func. Count: 156, Neg. LLF: 91.14016231033641
Iteration: 16, Func. Count: 165, Neg. LLF: 91.14016231071612
Optimization terminated successfully (Exit mode 0)
Current function value: 91.14016231033641
Iterations: 16
Function evaluations: 165
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 19726287.25088841
Iteration: 2, Func. Count: 24, Neg. LLF: 122.29091303307455
Iteration: 3, Func. Count: 36, Neg. LLF: 109.08109976498419
Iteration: 4, Func. Count: 48, Neg. LLF: 99.02279314733617
Iteration: 5, Func. Count: 60, Neg. LLF: 93.73056146932237
Iteration: 6, Func. Count: 71, Neg. LLF: 93.65231465853554
Iteration: 7, Func. Count: 83, Neg. LLF: 94.68408769252946
Iteration: 8, Func. Count: 95, Neg. LLF: 131.7222183292108
Iteration: 9, Func. Count: 108, Neg. LLF: 93.43935142004366
Iteration: 10, Func. Count: 120, Neg. LLF: 92.16150219481285
Iteration: 11, Func. Count: 131, Neg. LLF: 92.05861884134198
Iteration: 12, Func. Count: 142, Neg. LLF: 91.9807148876994
Iteration: 13, Func. Count: 153, Neg. LLF: 91.96531261149998
Iteration: 14, Func. Count: 164, Neg. LLF: 91.96445245655647
Iteration: 15, Func. Count: 175, Neg. LLF: 91.96444426979673
Iteration: 16, Func. Count: 186, Neg. LLF: 91.96444310756246
Iteration: 17, Func. Count: 196, Neg. LLF: 91.96444308485017
Optimization terminated successfully (Exit mode 0)
Current function value: 91.96444310756246
Iterations: 17
Function evaluations: 196
Gradient evaluations: 17
Iteration: 1, Func. Count: 9, Neg. LLF: 147.2636712489632
Iteration: 2, Func. Count: 19, Neg. LLF: 147.62367592144008
Iteration: 3, Func. Count: 29, Neg. LLF: 2411674.1130488766
Iteration: 4, Func. Count: 38, Neg. LLF: 3641391.18220805
Iteration: 5, Func. Count: 47, Neg. LLF: 797459.2283281268
Iteration: 6, Func. Count: 56, Neg. LLF: 3748748.7398369187
Iteration: 7, Func. Count: 65, Neg. LLF: 3823734.746648192
Iteration: 8, Func. Count: 74, Neg. LLF: 175.31859976706863
Iteration: 9, Func. Count: 83, Neg. LLF: 93.59346705742175
Iteration: 10, Func. Count: 92, Neg. LLF: 89.65838963055425
Iteration: 11, Func. Count: 100, Neg. LLF: 89.31777920936779
Iteration: 12, Func. Count: 108, Neg. LLF: 89.02331167616856
Iteration: 13, Func. Count: 116, Neg. LLF: 88.82368686712296
Iteration: 14, Func. Count: 124, Neg. LLF: 88.80079055040466
Iteration: 15, Func. Count: 132, Neg. LLF: 88.76775476084245
Iteration: 16, Func. Count: 140, Neg. LLF: 88.76529121564715
Iteration: 17, Func. Count: 148, Neg. LLF: 88.7644928446223
Iteration: 18, Func. Count: 156, Neg. LLF: 88.7635301171097
Iteration: 19, Func. Count: 164, Neg. LLF: 88.7633799982529
Iteration: 20, Func. Count: 172, Neg. LLF: 88.76338170424816
Iteration: 21, Func. Count: 180, Neg. LLF: 88.76333755400329
Iteration: 22, Func. Count: 188, Neg. LLF: 88.76336367797698
Optimization terminated successfully (Exit mode 0)
Current function value: 88.76333758918378
Iterations: 22
Function evaluations: 198
Gradient evaluations: 22
Iteration: 1, Func. Count: 10, Neg. LLF: 20292286.92300517
Iteration: 2, Func. Count: 21, Neg. LLF: 157.20757725677402
Iteration: 3, Func. Count: 31, Neg. LLF: 111.96466147144567
Iteration: 4, Func. Count: 41, Neg. LLF: 106.47956492083689
Iteration: 5, Func. Count: 51, Neg. LLF: 106.36916998370258
Iteration: 6, Func. Count: 61, Neg. LLF: 110.73871975440937
Iteration: 7, Func. Count: 71, Neg. LLF: 94.82991661788883
Iteration: 8, Func. Count: 81, Neg. LLF: 97.00321875638147
Iteration: 9, Func. Count: 91, Neg. LLF: 178.65085937389892
Iteration: 10, Func. Count: 101, Neg. LLF: 92.72444592511415
Iteration: 11, Func. Count: 110, Neg. LLF: 92.5414124462402
Iteration: 12, Func. Count: 119, Neg. LLF: 92.28096785627139
Iteration: 13, Func. Count: 128, Neg. LLF: 97.44006786840569
Iteration: 14, Func. Count: 138, Neg. LLF: 91.28681702012982
Iteration: 15, Func. Count: 147, Neg. LLF: 91.14812759975696
Iteration: 16, Func. Count: 156, Neg. LLF: 91.09123861036612
Iteration: 17, Func. Count: 165, Neg. LLF: 91.09106202293258
Iteration: 18, Func. Count: 174, Neg. LLF: 91.09106094570619
Iteration: 19, Func. Count: 182, Neg. LLF: 91.09106094571808
Optimization terminated successfully (Exit mode 0)
Current function value: 91.09106094570619
Iterations: 19
Function evaluations: 182
Gradient evaluations: 19
Iteration: 1, Func. Count: 11, Neg. LLF: 20090292.40459521
Iteration: 2, Func. Count: 22, Neg. LLF: 2646763.750638383
Iteration: 3, Func. Count: 33, Neg. LLF: 103.5637095631354
Iteration: 4, Func. Count: 44, Neg. LLF: 105.73693439367038
Iteration: 5, Func. Count: 55, Neg. LLF: 92.96847603751935
Iteration: 6, Func. Count: 65, Neg. LLF: 93.73402916168725
Iteration: 7, Func. Count: 77, Neg. LLF: 96.50882149818116
Iteration: 8, Func. Count: 88, Neg. LLF: 91.93936136865358
Iteration: 9, Func. Count: 98, Neg. LLF: 91.84181705914591
Iteration: 10, Func. Count: 108, Neg. LLF: 91.27933046924774
Iteration: 11, Func. Count: 118, Neg. LLF: 92.57474664382785
Iteration: 12, Func. Count: 129, Neg. LLF: 91.1893414253594
Iteration: 13, Func. Count: 139, Neg. LLF: 91.18469505014018
Iteration: 14, Func. Count: 149, Neg. LLF: 91.17789805280898
Iteration: 15, Func. Count: 159, Neg. LLF: 91.16586745246427
Iteration: 16, Func. Count: 169, Neg. LLF: 91.15580805825103
Iteration: 17, Func. Count: 179, Neg. LLF: 91.14569799453345
Iteration: 18, Func. Count: 189, Neg. LLF: 91.13700460741207
Iteration: 19, Func. Count: 199, Neg. LLF: 91.11939972624603
Iteration: 20, Func. Count: 209, Neg. LLF: 91.09156935535547
Iteration: 21, Func. Count: 219, Neg. LLF: 91.09121371258213
Iteration: 22, Func. Count: 229, Neg. LLF: 91.09130691423155
Iteration: 23, Func. Count: 240, Neg. LLF: 91.09106632532527
Iteration: 24, Func. Count: 250, Neg. LLF: 91.09127504544742
Optimization terminated successfully (Exit mode 0)
Current function value: 91.09106610635904
Iterations: 24
Function evaluations: 251
Gradient evaluations: 24
Iteration: 1, Func. Count: 12, Neg. LLF: 19741753.03868941
Iteration: 2, Func. Count: 24, Neg. LLF: 1066667.4182956244
Iteration: 3, Func. Count: 36, Neg. LLF: 866802.2080086634
Iteration: 4, Func. Count: 48, Neg. LLF: 607495.0655865803
Iteration: 5, Func. Count: 60, Neg. LLF: 799383.7391372484
Iteration: 6, Func. Count: 72, Neg. LLF: 126.051929070999
Iteration: 7, Func. Count: 84, Neg. LLF: 99.67708730050263
Iteration: 8, Func. Count: 96, Neg. LLF: 95.92989230202822
Iteration: 9, Func. Count: 108, Neg. LLF: 95.13655004551859
Iteration: 10, Func. Count: 120, Neg. LLF: 93.85348394396593
Iteration: 11, Func. Count: 132, Neg. LLF: 89.93008055792966
Iteration: 12, Func. Count: 143, Neg. LLF: 89.21075714942731
Iteration: 13, Func. Count: 155, Neg. LLF: 97.15246277766838
Iteration: 14, Func. Count: 168, Neg. LLF: 88.18528399876907
Iteration: 15, Func. Count: 180, Neg. LLF: 87.81932388652166
Iteration: 16, Func. Count: 191, Neg. LLF: 87.75939060106647
Iteration: 17, Func. Count: 202, Neg. LLF: 87.71897758911292
Iteration: 18, Func. Count: 213, Neg. LLF: 87.69922100448174
Iteration: 19, Func. Count: 224, Neg. LLF: 87.69180989101879
Iteration: 20, Func. Count: 235, Neg. LLF: 87.69070483996049
Iteration: 21, Func. Count: 246, Neg. LLF: 87.69055668720222
Iteration: 22, Func. Count: 257, Neg. LLF: 87.69046668441631
Iteration: 23, Func. Count: 268, Neg. LLF: 87.69045910312934
Iteration: 24, Func. Count: 279, Neg. LLF: 87.69045677415578
Iteration: 25, Func. Count: 289, Neg. LLF: 87.69045746415358
Optimization terminated successfully (Exit mode 0)
Current function value: 87.69045677415578
Iterations: 25
Function evaluations: 289
Gradient evaluations: 25
Iteration: 1, Func. Count: 13, Neg. LLF: 19905032.848582696
Iteration: 2, Func. Count: 26, Neg. LLF: 1067735.338329539
Iteration: 3, Func. Count: 39, Neg. LLF: 695820.1091562548
Iteration: 4, Func. Count: 52, Neg. LLF: 758690.8204991854
Iteration: 5, Func. Count: 65, Neg. LLF: 89.66128309016494
Iteration: 6, Func. Count: 77, Neg. LLF: 100.32965005852033
Iteration: 7, Func. Count: 90, Neg. LLF: 410.07875421236406
Iteration: 8, Func. Count: 103, Neg. LLF: 103.85658913181491
Iteration: 9, Func. Count: 117, Neg. LLF: 88.39156475384603
Iteration: 10, Func. Count: 129, Neg. LLF: 88.00477011392337
Iteration: 11, Func. Count: 141, Neg. LLF: 2996865.279724801
Iteration: 12, Func. Count: 155, Neg. LLF: 17547.76959462267
Iteration: 13, Func. Count: 169, Neg. LLF: 88.09487866288279
Iteration: 14, Func. Count: 182, Neg. LLF: 87.9643324630113
Iteration: 15, Func. Count: 195, Neg. LLF: 87.9418558876309
Iteration: 16, Func. Count: 208, Neg. LLF: 87.93240985431443
Iteration: 17, Func. Count: 219, Neg. LLF: 87.93240985433171
Optimization terminated successfully (Exit mode 0)
Current function value: 87.93240985431443
Iterations: 18
Function evaluations: 219
Gradient evaluations: 17
Iteration: 1, Func. Count: 10, Neg. LLF: 171.9302757952539
Iteration: 2, Func. Count: 22, Neg. LLF: 147.41722451134714
Iteration: 3, Func. Count: 33, Neg. LLF: 1085863.472280559
Iteration: 4, Func. Count: 43, Neg. LLF: 1918879.1987714425
Iteration: 5, Func. Count: 53, Neg. LLF: 3661783.1003692215
Iteration: 6, Func. Count: 63, Neg. LLF: 3769450.4019941427
Iteration: 7, Func. Count: 73, Neg. LLF: 162.03891701179137
Iteration: 8, Func. Count: 83, Neg. LLF: 92.13222069562318
Iteration: 9, Func. Count: 93, Neg. LLF: 88.96760259802765
Iteration: 10, Func. Count: 102, Neg. LLF: 92.47634516570994
Iteration: 11, Func. Count: 113, Neg. LLF: 88.92687577375231
Iteration: 12, Func. Count: 123, Neg. LLF: 88.87623594998813
Iteration: 13, Func. Count: 132, Neg. LLF: 88.82856584124606
Iteration: 14, Func. Count: 141, Neg. LLF: 88.77952285389968
Iteration: 15, Func. Count: 150, Neg. LLF: 88.76963334350978
Iteration: 16, Func. Count: 159, Neg. LLF: 88.76451712710369
Iteration: 17, Func. Count: 168, Neg. LLF: 88.76348894536741
Iteration: 18, Func. Count: 177, Neg. LLF: 88.76334623716022
Iteration: 19, Func. Count: 186, Neg. LLF: 88.76338556762812
Iteration: 20, Func. Count: 196, Neg. LLF: 88.76335253517813
Optimization terminated successfully (Exit mode 0)
Current function value: 88.76335253517813
Iterations: 20
Function evaluations: 196
Gradient evaluations: 20
Iteration: 1, Func. Count: 11, Neg. LLF: 20248336.264550176
Iteration: 2, Func. Count: 23, Neg. LLF: 157.29946761690823
Iteration: 3, Func. Count: 34, Neg. LLF: 112.15043733890514
Iteration: 4, Func. Count: 45, Neg. LLF: 105.75731701450952
Iteration: 5, Func. Count: 56, Neg. LLF: 104.70990510231489
Iteration: 6, Func. Count: 67, Neg. LLF: 108.85890727374364
Iteration: 7, Func. Count: 78, Neg. LLF: 99.8578283693335
Iteration: 8, Func. Count: 89, Neg. LLF: 93.22016894341213
Iteration: 9, Func. Count: 100, Neg. LLF: 95.57474134754574
Iteration: 10, Func. Count: 111, Neg. LLF: 92.93452640314852
Iteration: 11, Func. Count: 122, Neg. LLF: 92.12515349470038
Iteration: 12, Func. Count: 132, Neg. LLF: 91.20301705458364
Iteration: 13, Func. Count: 142, Neg. LLF: 91.17301447961373
Iteration: 14, Func. Count: 152, Neg. LLF: 91.10355615228823
Iteration: 15, Func. Count: 162, Neg. LLF: 91.09305534724847
Iteration: 16, Func. Count: 172, Neg. LLF: 91.09113161593628
Iteration: 17, Func. Count: 182, Neg. LLF: 91.09106177394841
Iteration: 18, Func. Count: 192, Neg. LLF: 91.09106095397324
Optimization terminated successfully (Exit mode 0)
Current function value: 91.09106095397324
Iterations: 18
Function evaluations: 192
Gradient evaluations: 18
Iteration: 1, Func. Count: 12, Neg. LLF: 20034893.9994371
Iteration: 2, Func. Count: 24, Neg. LLF: 2603748.8977742195
Iteration: 3, Func. Count: 36, Neg. LLF: 102.47506119035657
Iteration: 4, Func. Count: 48, Neg. LLF: 102.93897957520805
Iteration: 5, Func. Count: 60, Neg. LLF: 93.23212732460762
Iteration: 6, Func. Count: 72, Neg. LLF: 92.7017261662296
Iteration: 7, Func. Count: 84, Neg. LLF: 92.68778795317681
Iteration: 8, Func. Count: 96, Neg. LLF: 91.81155636153196
Iteration: 9, Func. Count: 107, Neg. LLF: 91.76636031371754
Iteration: 10, Func. Count: 118, Neg. LLF: 91.74705695404603
Iteration: 11, Func. Count: 129, Neg. LLF: 91.93867639289995
Iteration: 12, Func. Count: 141, Neg. LLF: 92.78391100663879
Iteration: 13, Func. Count: 153, Neg. LLF: 96.35019288346871
Iteration: 14, Func. Count: 165, Neg. LLF: 93.47487910446576
Iteration: 15, Func. Count: 177, Neg. LLF: 95.84281977269649
Iteration: 16, Func. Count: 190, Neg. LLF: 91.71680542344336
Iteration: 17, Func. Count: 202, Neg. LLF: 91.63019103263954
Iteration: 18, Func. Count: 213, Neg. LLF: 91.6113048624068
Iteration: 19, Func. Count: 224, Neg. LLF: 91.49959486198938
Iteration: 20, Func. Count: 235, Neg. LLF: 91.23969132871291
Iteration: 21, Func. Count: 246, Neg. LLF: 91.20719206744785
Iteration: 22, Func. Count: 257, Neg. LLF: 91.18670981244729
Iteration: 23, Func. Count: 268, Neg. LLF: 91.17979815113875
Iteration: 24, Func. Count: 279, Neg. LLF: 91.16991078142743
Iteration: 25, Func. Count: 290, Neg. LLF: 91.15589903131
Iteration: 26, Func. Count: 301, Neg. LLF: 91.1411742541191
Iteration: 27, Func. Count: 312, Neg. LLF: 91.13033796782912
Iteration: 28, Func. Count: 323, Neg. LLF: 91.1111758498964
Iteration: 29, Func. Count: 334, Neg. LLF: 91.09121081682827
Iteration: 30, Func. Count: 345, Neg. LLF: 19270304.0074294
Iteration: 31, Func. Count: 360, Neg. LLF: 91.19938163456932
Iteration: 32, Func. Count: 373, Neg. LLF: 91.09106094909687
Iteration: 33, Func. Count: 383, Neg. LLF: 91.0910609513192
Optimization terminated successfully (Exit mode 0)
Current function value: 91.09106094909687
Iterations: 34
Function evaluations: 383
Gradient evaluations: 33
Iteration: 1, Func. Count: 13, Neg. LLF: 19705295.070319343
Iteration: 2, Func. Count: 26, Neg. LLF: 1066603.3412071636
Iteration: 3, Func. Count: 39, Neg. LLF: 836179.3047171938
Iteration: 4, Func. Count: 52, Neg. LLF: 629543.053130593
Iteration: 5, Func. Count: 65, Neg. LLF: 800539.1544213146
Iteration: 6, Func. Count: 78, Neg. LLF: 128.50445056501007
Iteration: 7, Func. Count: 91, Neg. LLF: 99.93068105371282
Iteration: 8, Func. Count: 104, Neg. LLF: 96.03357521266277
Iteration: 9, Func. Count: 117, Neg. LLF: 96.35430038841378
Iteration: 10, Func. Count: 130, Neg. LLF: 93.80373161079942
Iteration: 11, Func. Count: 143, Neg. LLF: 89.30611463885391
Iteration: 12, Func. Count: 155, Neg. LLF: 89.86498150369461
Iteration: 13, Func. Count: 168, Neg. LLF: 91.84477891895489
Iteration: 14, Func. Count: 183, Neg. LLF: 88.01262439852165
Iteration: 15, Func. Count: 196, Neg. LLF: 87.85145974788088
Iteration: 16, Func. Count: 209, Neg. LLF: 87.70369680522973
Iteration: 17, Func. Count: 221, Neg. LLF: 87.69500825817487
Iteration: 18, Func. Count: 233, Neg. LLF: 87.6916546427359
Iteration: 19, Func. Count: 245, Neg. LLF: 87.69096965758378
Iteration: 20, Func. Count: 257, Neg. LLF: 87.69064482534066
Iteration: 21, Func. Count: 269, Neg. LLF: 87.69047489067682
Iteration: 22, Func. Count: 281, Neg. LLF: 87.69045726711819
Iteration: 23, Func. Count: 293, Neg. LLF: 87.69045690529357
Optimization terminated successfully (Exit mode 0)
Current function value: 87.69045690529357
Iterations: 23
Function evaluations: 293
Gradient evaluations: 23
Iteration: 1, Func. Count: 14, Neg. LLF: 19841641.57468406
Iteration: 2, Func. Count: 28, Neg. LLF: 1066667.4571103877
Iteration: 3, Func. Count: 42, Neg. LLF: 810175.3653525
Iteration: 4, Func. Count: 56, Neg. LLF: 797358.8453975758
Iteration: 5, Func. Count: 70, Neg. LLF: 89.26257816484797
Iteration: 6, Func. Count: 83, Neg. LLF: 105.93858689971736
Iteration: 7, Func. Count: 97, Neg. LLF: 5384.199676199183
Iteration: 8, Func. Count: 112, Neg. LLF: 88.19203767137657
Iteration: 9, Func. Count: 125, Neg. LLF: 88.24291395393412
Iteration: 10, Func. Count: 139, Neg. LLF: 88.94155437369844
Iteration: 11, Func. Count: 153, Neg. LLF: 87.93819645415105
Iteration: 12, Func. Count: 166, Neg. LLF: 87.93587546622248
Iteration: 13, Func. Count: 179, Neg. LLF: 87.93247993739064
Iteration: 14, Func. Count: 192, Neg. LLF: 87.9324466530398
Iteration: 15, Func. Count: 205, Neg. LLF: 88.1508775343626
Optimization terminated successfully (Exit mode 0)
Current function value: 87.9324461397996
Iterations: 16
Function evaluations: 208
Gradient evaluations: 15
Iteration: 1, Func. Count: 7, Neg. LLF: 125.89696853558463
Iteration: 2, Func. Count: 16, Neg. LLF: 141.44143955171307
Iteration: 3, Func. Count: 23, Neg. LLF: 98.44345760426121
Iteration: 4, Func. Count: 30, Neg. LLF: 102.4275267372493
Iteration: 5, Func. Count: 37, Neg. LLF: 939.7856909567372
Iteration: 6, Func. Count: 45, Neg. LLF: 96.47230429808691
Iteration: 7, Func. Count: 52, Neg. LLF: 93.55681505934317
Iteration: 8, Func. Count: 58, Neg. LLF: 93.30225643902895
Iteration: 9, Func. Count: 64, Neg. LLF: 93.2079800075241
Iteration: 10, Func. Count: 70, Neg. LLF: 93.19952880516051
Iteration: 11, Func. Count: 76, Neg. LLF: 93.19929694534208
Iteration: 12, Func. Count: 82, Neg. LLF: 93.1992958561854
Iteration: 13, Func. Count: 87, Neg. LLF: 93.19929586451
Optimization terminated successfully (Exit mode 0)
Current function value: 93.1992958561854
Iterations: 13
Function evaluations: 87
Gradient evaluations: 13
Iteration: 1, Func. Count: 8, Neg. LLF: 22782826.110605933
Iteration: 2, Func. Count: 17, Neg. LLF: 143.11639196745853
Iteration: 3, Func. Count: 25, Neg. LLF: 108.33475789282532
Iteration: 4, Func. Count: 33, Neg. LLF: 99.6712002176515
Iteration: 5, Func. Count: 41, Neg. LLF: 100.50069949729448
Iteration: 6, Func. Count: 49, Neg. LLF: 94.65697101864305
Iteration: 7, Func. Count: 57, Neg. LLF: 94.85474587313685
Iteration: 8, Func. Count: 65, Neg. LLF: 93.36712352954919
Iteration: 9, Func. Count: 73, Neg. LLF: 91.9523045900863
Iteration: 10, Func. Count: 80, Neg. LLF: 94.32024985702195
Iteration: 11, Func. Count: 88, Neg. LLF: 91.12964427576819
Iteration: 12, Func. Count: 95, Neg. LLF: 91.0914704934684
Iteration: 13, Func. Count: 102, Neg. LLF: 91.09106264013056
Iteration: 14, Func. Count: 109, Neg. LLF: 91.09106096328743
Iteration: 15, Func. Count: 115, Neg. LLF: 91.09106096357715
Optimization terminated successfully (Exit mode 0)
Current function value: 91.09106096328743
Iterations: 15
Function evaluations: 115
Gradient evaluations: 15
Iteration: 1, Func. Count: 9, Neg. LLF: 22572512.289792508
Iteration: 2, Func. Count: 18, Neg. LLF: 417.31797524891124
Iteration: 3, Func. Count: 28, Neg. LLF: 98.92932633810159
Iteration: 4, Func. Count: 37, Neg. LLF: 139.86412778875857
Iteration: 5, Func. Count: 47, Neg. LLF: 94.4082184117696
Iteration: 6, Func. Count: 56, Neg. LLF: 91.56266685398167
Iteration: 7, Func. Count: 64, Neg. LLF: 91.35554320481408
Iteration: 8, Func. Count: 72, Neg. LLF: 91.22645972401968
Iteration: 9, Func. Count: 80, Neg. LLF: 91.19677998696632
Iteration: 10, Func. Count: 88, Neg. LLF: 91.16110392740622
Iteration: 11, Func. Count: 96, Neg. LLF: 91.14334946343139
Iteration: 12, Func. Count: 104, Neg. LLF: 91.13375843123212
Iteration: 13, Func. Count: 112, Neg. LLF: 91.1104716234483
Iteration: 14, Func. Count: 120, Neg. LLF: 91.09122900309079
Iteration: 15, Func. Count: 128, Neg. LLF: 91.09115429703844
Iteration: 16, Func. Count: 136, Neg. LLF: 91.09106582608536
Iteration: 17, Func. Count: 144, Neg. LLF: 91.09106165248582
Iteration: 18, Func. Count: 151, Neg. LLF: 91.0910616546429
Optimization terminated successfully (Exit mode 0)
Current function value: 91.09106165248582
Iterations: 18
Function evaluations: 151
Gradient evaluations: 18
Iteration: 1, Func. Count: 10, Neg. LLF: 20577584.045989703
Iteration: 2, Func. Count: 20, Neg. LLF: 97.90878067581787
Iteration: 3, Func. Count: 30, Neg. LLF: 93.08614798381623
Iteration: 4, Func. Count: 39, Neg. LLF: 98.11359229943552
Iteration: 5, Func. Count: 49, Neg. LLF: 96.92825440345565
Iteration: 6, Func. Count: 59, Neg. LLF: 97.60743425351072
Iteration: 7, Func. Count: 69, Neg. LLF: 91.14996911082069
Iteration: 8, Func. Count: 78, Neg. LLF: 91.1428870533634
Iteration: 9, Func. Count: 87, Neg. LLF: 91.14029025999142
Iteration: 10, Func. Count: 96, Neg. LLF: 91.140210069545
Iteration: 11, Func. Count: 105, Neg. LLF: 91.14016319991805
Iteration: 12, Func. Count: 114, Neg. LLF: 91.14016214849194
Iteration: 13, Func. Count: 122, Neg. LLF: 91.14016214838233
Optimization terminated successfully (Exit mode 0)
Current function value: 91.14016214849194
Iterations: 13
Function evaluations: 122
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 20837607.935733374
Iteration: 2, Func. Count: 22, Neg. LLF: 95.4402570433996
Iteration: 3, Func. Count: 33, Neg. LLF: 92.04908717070359
Iteration: 4, Func. Count: 43, Neg. LLF: 92.82684013012738
Iteration: 5, Func. Count: 54, Neg. LLF: 112.98991220378156
Iteration: 6, Func. Count: 66, Neg. LLF: 97.84392607488107
Iteration: 7, Func. Count: 78, Neg. LLF: 91.41489541995958
Iteration: 8, Func. Count: 88, Neg. LLF: 91.38661713321463
Iteration: 9, Func. Count: 98, Neg. LLF: 91.34739510857659
Iteration: 10, Func. Count: 108, Neg. LLF: 91.3431167868619
Iteration: 11, Func. Count: 118, Neg. LLF: 91.34263589293079
Iteration: 12, Func. Count: 128, Neg. LLF: 91.34256309700494
Iteration: 13, Func. Count: 138, Neg. LLF: 91.34251859415029
Iteration: 14, Func. Count: 148, Neg. LLF: 91.34251482191226
Iteration: 15, Func. Count: 158, Neg. LLF: 91.34251350267822
Iteration: 16, Func. Count: 167, Neg. LLF: 91.34251350281471
Optimization terminated successfully (Exit mode 0)
Current function value: 91.34251350267822
Iterations: 16
Function evaluations: 167
Gradient evaluations: 16
Iteration: 1, Func. Count: 8, Neg. LLF: 127.97218065516687
Iteration: 2, Func. Count: 17, Neg. LLF: 146.90476892886295
Iteration: 3, Func. Count: 25, Neg. LLF: 98.73323280572617
Iteration: 4, Func. Count: 33, Neg. LLF: 32291.860685246942
Iteration: 5, Func. Count: 41, Neg. LLF: 96.61328527521309
Iteration: 6, Func. Count: 49, Neg. LLF: 97.77647211805557
Iteration: 7, Func. Count: 57, Neg. LLF: 93.5999879083236
Iteration: 8, Func. Count: 64, Neg. LLF: 93.33750438282776
Iteration: 9, Func. Count: 71, Neg. LLF: 93.3256098399951
Iteration: 10, Func. Count: 78, Neg. LLF: 93.3193481184176
Iteration: 11, Func. Count: 85, Neg. LLF: 93.31866683489096
Iteration: 12, Func. Count: 92, Neg. LLF: 93.31854949891296
Iteration: 13, Func. Count: 99, Neg. LLF: 93.31850257136787
Iteration: 14, Func. Count: 106, Neg. LLF: 93.31845053534643
Iteration: 15, Func. Count: 113, Neg. LLF: 93.31842407952874
Iteration: 16, Func. Count: 120, Neg. LLF: 93.31841806308485
Iteration: 17, Func. Count: 126, Neg. LLF: 93.31841778520753
Optimization terminated successfully (Exit mode 0)
Current function value: 93.31841806308485
Iterations: 17
Function evaluations: 126
Gradient evaluations: 17
Iteration: 1, Func. Count: 9, Neg. LLF: 20370503.420199245
Iteration: 2, Func. Count: 19, Neg. LLF: 157.82892002582278
Iteration: 3, Func. Count: 28, Neg. LLF: 111.75422879033886
Iteration: 4, Func. Count: 37, Neg. LLF: 107.75213485672664
Iteration: 5, Func. Count: 46, Neg. LLF: 109.22672688585155
Iteration: 6, Func. Count: 55, Neg. LLF: 111.89924526618952
Iteration: 7, Func. Count: 64, Neg. LLF: 94.51683962504607
Iteration: 8, Func. Count: 73, Neg. LLF: 94.78808299327845
Iteration: 9, Func. Count: 82, Neg. LLF: 93.38473899915037
Iteration: 10, Func. Count: 91, Neg. LLF: 92.83782082165915
Iteration: 11, Func. Count: 99, Neg. LLF: 92.57965320656086
Iteration: 12, Func. Count: 107, Neg. LLF: 94.45743746680033
Iteration: 13, Func. Count: 117, Neg. LLF: 91.78058740304596
Iteration: 14, Func. Count: 125, Neg. LLF: 91.09518928756857
Iteration: 15, Func. Count: 133, Neg. LLF: 91.10668188841059
Iteration: 16, Func. Count: 142, Neg. LLF: 91.09124796562072
Iteration: 17, Func. Count: 150, Neg. LLF: 91.09106095420161
Iteration: 18, Func. Count: 157, Neg. LLF: 91.0910609539498
Optimization terminated successfully (Exit mode 0)
Current function value: 91.09106095420161
Iterations: 18
Function evaluations: 157
Gradient evaluations: 18
Iteration: 1, Func. Count: 10, Neg. LLF: 20251414.749055263
Iteration: 2, Func. Count: 20, Neg. LLF: 237.20200998275934
Iteration: 3, Func. Count: 31, Neg. LLF: 95.25182376308672
Iteration: 4, Func. Count: 41, Neg. LLF: 107.91995978647257
Iteration: 5, Func. Count: 51, Neg. LLF: 92.5096631334542
Iteration: 6, Func. Count: 60, Neg. LLF: 120.84623629202291
Iteration: 7, Func. Count: 71, Neg. LLF: 96.36658461000428
Iteration: 8, Func. Count: 81, Neg. LLF: 91.64248112370709
Iteration: 9, Func. Count: 90, Neg. LLF: 91.3221180285904
Iteration: 10, Func. Count: 99, Neg. LLF: 91.25423866293032
Iteration: 11, Func. Count: 108, Neg. LLF: 91.24017811148178
Iteration: 12, Func. Count: 117, Neg. LLF: 91.23863507001603
Iteration: 13, Func. Count: 126, Neg. LLF: 91.23747935530255
Iteration: 14, Func. Count: 135, Neg. LLF: 91.23016867025201
Iteration: 15, Func. Count: 144, Neg. LLF: 91.21577244129392
Iteration: 16, Func. Count: 153, Neg. LLF: 91.19556570988718
Iteration: 17, Func. Count: 162, Neg. LLF: 91.1641006909341
Iteration: 18, Func. Count: 171, Neg. LLF: 91.13961220831163
Iteration: 19, Func. Count: 180, Neg. LLF: 91.12749678917919
Iteration: 20, Func. Count: 189, Neg. LLF: 91.09921112529031
Iteration: 21, Func. Count: 198, Neg. LLF: 91.09413667068718
Iteration: 22, Func. Count: 207, Neg. LLF: 91.09124620312765
Iteration: 23, Func. Count: 216, Neg. LLF: 91.09107714780474
Iteration: 24, Func. Count: 225, Neg. LLF: 91.09124026491685
Optimization terminated successfully (Exit mode 0)
Current function value: 91.09107707198545
Iterations: 24
Function evaluations: 227
Gradient evaluations: 24
Iteration: 1, Func. Count: 11, Neg. LLF: 33895876.69124817
Iteration: 2, Func. Count: 23, Neg. LLF: 101.05928598970992
Iteration: 3, Func. Count: 34, Neg. LLF: 98.50976195052799
Iteration: 4, Func. Count: 45, Neg. LLF: 93.64447408832123
Iteration: 5, Func. Count: 55, Neg. LLF: 99.44960702050619
Iteration: 6, Func. Count: 66, Neg. LLF: 130.39205798497423
Iteration: 7, Func. Count: 78, Neg. LLF: 91.29210462297915
Iteration: 8, Func. Count: 88, Neg. LLF: 91.4461384685248
Iteration: 9, Func. Count: 100, Neg. LLF: 91.25252920787113
Iteration: 10, Func. Count: 110, Neg. LLF: 91.230278556695
Iteration: 11, Func. Count: 120, Neg. LLF: 91.21448323139944
Iteration: 12, Func. Count: 130, Neg. LLF: 91.1973735298421
Iteration: 13, Func. Count: 140, Neg. LLF: 91.16588643971369
Iteration: 14, Func. Count: 150, Neg. LLF: 91.1461737611444
Iteration: 15, Func. Count: 160, Neg. LLF: 91.14045630073481
Iteration: 16, Func. Count: 170, Neg. LLF: 91.14017411572907
Iteration: 17, Func. Count: 180, Neg. LLF: 91.14016216808233
Iteration: 18, Func. Count: 189, Neg. LLF: 91.14016216821459
Optimization terminated successfully (Exit mode 0)
Current function value: 91.14016216808233
Iterations: 18
Function evaluations: 189
Gradient evaluations: 18
Iteration: 1, Func. Count: 12, Neg. LLF: 20070859.678991456
Iteration: 2, Func. Count: 24, Neg. LLF: 226.55453078906936
Iteration: 3, Func. Count: 36, Neg. LLF: 114.65662715653379
Iteration: 4, Func. Count: 48, Neg. LLF: 92.61565160711274
Iteration: 5, Func. Count: 59, Neg. LLF: 94.27538054324816
Iteration: 6, Func. Count: 71, Neg. LLF: 111.14484774201458
Iteration: 7, Func. Count: 83, Neg. LLF: 92.07097533213818
Iteration: 8, Func. Count: 95, Neg. LLF: 91.48146116168849
Iteration: 9, Func. Count: 107, Neg. LLF: 91.346685049353
Iteration: 10, Func. Count: 118, Neg. LLF: 91.34518060109933
Iteration: 11, Func. Count: 129, Neg. LLF: 91.3430401343802
Iteration: 12, Func. Count: 140, Neg. LLF: 91.34272726401089
Iteration: 13, Func. Count: 151, Neg. LLF: 91.34252552740584
Iteration: 14, Func. Count: 162, Neg. LLF: 91.34251393792415
Iteration: 15, Func. Count: 172, Neg. LLF: 91.34251393816992
Optimization terminated successfully (Exit mode 0)
Current function value: 91.34251393792415
Iterations: 15
Function evaluations: 172
Gradient evaluations: 15
Iteration: 1, Func. Count: 9, Neg. LLF: 129.36128915056347
Iteration: 2, Func. Count: 19, Neg. LLF: 242.71479010284466
Iteration: 3, Func. Count: 28, Neg. LLF: 4528126.246086295
Iteration: 4, Func. Count: 37, Neg. LLF: 4217866.060114514
Iteration: 5, Func. Count: 46, Neg. LLF: 648.8016320380785
Iteration: 6, Func. Count: 55, Neg. LLF: 620.5944200621605
Iteration: 7, Func. Count: 64, Neg. LLF: 850.4041646737895
Iteration: 8, Func. Count: 73, Neg. LLF: 130.65379885111327
Iteration: 9, Func. Count: 82, Neg. LLF: 95.1072404448808
Iteration: 10, Func. Count: 91, Neg. LLF: 95.65323309741086
Iteration: 11, Func. Count: 100, Neg. LLF: 93.35149640937826
Iteration: 12, Func. Count: 108, Neg. LLF: 93.22894214026637
Iteration: 13, Func. Count: 116, Neg. LLF: 93.19411723037985
Iteration: 14, Func. Count: 124, Neg. LLF: 93.160179362611
Iteration: 15, Func. Count: 132, Neg. LLF: 93.128439098234
Iteration: 16, Func. Count: 140, Neg. LLF: 93.11526400540448
Iteration: 17, Func. Count: 148, Neg. LLF: 93.11123431262368
Iteration: 18, Func. Count: 156, Neg. LLF: 93.11084152226594
Iteration: 19, Func. Count: 164, Neg. LLF: 93.11076576693104
Iteration: 20, Func. Count: 172, Neg. LLF: 93.1107643015155
Iteration: 21, Func. Count: 179, Neg. LLF: 93.11076451488746
Optimization terminated successfully (Exit mode 0)
Current function value: 93.1107643015155
Iterations: 21
Function evaluations: 179
Gradient evaluations: 21
Iteration: 1, Func. Count: 10, Neg. LLF: 20497711.86478314
Iteration: 2, Func. Count: 21, Neg. LLF: 162.02066370643325
Iteration: 3, Func. Count: 31, Neg. LLF: 112.2671859112702
Iteration: 4, Func. Count: 41, Neg. LLF: 105.20896665745954
Iteration: 5, Func. Count: 51, Neg. LLF: 105.2755977612602
Iteration: 6, Func. Count: 61, Neg. LLF: 107.04689336082009
Iteration: 7, Func. Count: 71, Neg. LLF: 97.22332933121429
Iteration: 8, Func. Count: 81, Neg. LLF: 93.57006526857042
Iteration: 9, Func. Count: 91, Neg. LLF: 93.34787073133009
Iteration: 10, Func. Count: 101, Neg. LLF: 92.38291818183816
Iteration: 11, Func. Count: 110, Neg. LLF: 97.89890130275253
Iteration: 12, Func. Count: 120, Neg. LLF: 91.66266438412666
Iteration: 13, Func. Count: 129, Neg. LLF: 91.10035499408883
Iteration: 14, Func. Count: 138, Neg. LLF: 91.11503935937223
Iteration: 15, Func. Count: 148, Neg. LLF: 91.09106339626472
Iteration: 16, Func. Count: 157, Neg. LLF: 91.0910609457332
Iteration: 17, Func. Count: 165, Neg. LLF: 91.0910609456993
Optimization terminated successfully (Exit mode 0)
Current function value: 91.0910609457332
Iterations: 17
Function evaluations: 165
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 20229032.20197326
Iteration: 2, Func. Count: 22, Neg. LLF: 233.20050514462852
Iteration: 3, Func. Count: 34, Neg. LLF: 95.39180863354596
Iteration: 4, Func. Count: 45, Neg. LLF: 107.02015782070526
Iteration: 5, Func. Count: 56, Neg. LLF: 92.46225177539995
Iteration: 6, Func. Count: 66, Neg. LLF: 123.89259368699369
Iteration: 7, Func. Count: 78, Neg. LLF: 95.86232137655658
Iteration: 8, Func. Count: 89, Neg. LLF: 91.62311316326696
Iteration: 9, Func. Count: 99, Neg. LLF: 91.26794786973689
Iteration: 10, Func. Count: 109, Neg. LLF: 91.24494142402499
Iteration: 11, Func. Count: 119, Neg. LLF: 91.24148278092444
Iteration: 12, Func. Count: 129, Neg. LLF: 91.24051275274057
Iteration: 13, Func. Count: 139, Neg. LLF: 91.23453290997544
Iteration: 14, Func. Count: 149, Neg. LLF: 91.2206721384267
Iteration: 15, Func. Count: 159, Neg. LLF: 91.2036893819835
Iteration: 16, Func. Count: 169, Neg. LLF: 91.16995687995193
Iteration: 17, Func. Count: 179, Neg. LLF: 91.14294169423438
Iteration: 18, Func. Count: 189, Neg. LLF: 91.13100024908744
Iteration: 19, Func. Count: 199, Neg. LLF: 91.11395262649694
Iteration: 20, Func. Count: 209, Neg. LLF: 91.0929519875589
Iteration: 21, Func. Count: 219, Neg. LLF: 91.09225404656014
Iteration: 22, Func. Count: 229, Neg. LLF: 19793329.862326134
Iteration: 23, Func. Count: 243, Neg. LLF: 91.86676443877424
Iteration: 24, Func. Count: 255, Neg. LLF: 91.09106095753646
Iteration: 25, Func. Count: 264, Neg. LLF: 91.09106095964007
Optimization terminated successfully (Exit mode 0)
Current function value: 91.09106095753646
Iterations: 26
Function evaluations: 264
Gradient evaluations: 25
Iteration: 1, Func. Count: 12, Neg. LLF: 33972765.6772911
Iteration: 2, Func. Count: 25, Neg. LLF: 99.40618628327287
Iteration: 3, Func. Count: 37, Neg. LLF: 94.59211870990119
Iteration: 4, Func. Count: 49, Neg. LLF: 92.48885421893183
Iteration: 5, Func. Count: 60, Neg. LLF: 102.22453960352503
Iteration: 6, Func. Count: 73, Neg. LLF: 98.20186207825697
Iteration: 7, Func. Count: 86, Neg. LLF: 95.06773314467915
Iteration: 8, Func. Count: 98, Neg. LLF: 92.59678034546855
Iteration: 9, Func. Count: 110, Neg. LLF: 91.36247525184767
Iteration: 10, Func. Count: 121, Neg. LLF: 91.21221172926876
Iteration: 11, Func. Count: 132, Neg. LLF: 91.17835495575024
Iteration: 12, Func. Count: 143, Neg. LLF: 91.17380377266089
Iteration: 13, Func. Count: 154, Neg. LLF: 91.15957431932084
Iteration: 14, Func. Count: 165, Neg. LLF: 91.14422712475486
Iteration: 15, Func. Count: 176, Neg. LLF: 91.14064878858363
Iteration: 16, Func. Count: 187, Neg. LLF: 91.14017738144368
Iteration: 17, Func. Count: 198, Neg. LLF: 91.14016650157409
Iteration: 18, Func. Count: 209, Neg. LLF: 91.14016317687123
Iteration: 19, Func. Count: 220, Neg. LLF: 91.14016220516304
Optimization terminated successfully (Exit mode 0)
Current function value: 91.14016220516304
Iterations: 19
Function evaluations: 220
Gradient evaluations: 19
Iteration: 1, Func. Count: 13, Neg. LLF: 20062624.698264327
Iteration: 2, Func. Count: 26, Neg. LLF: 122.89152898967286
Iteration: 3, Func. Count: 39, Neg. LLF: 110.61516163661459
Iteration: 4, Func. Count: 52, Neg. LLF: 95.7271784726695
Iteration: 5, Func. Count: 65, Neg. LLF: 95.19656300224958
Iteration: 6, Func. Count: 78, Neg. LLF: 98.36112584733583
Iteration: 7, Func. Count: 91, Neg. LLF: 92.90306703672356
Iteration: 8, Func. Count: 104, Neg. LLF: 92.50247471302646
Iteration: 9, Func. Count: 117, Neg. LLF: 92.32684970838547
Iteration: 10, Func. Count: 130, Neg. LLF: 91.59998857736471
Iteration: 11, Func. Count: 142, Neg. LLF: 91.67640558289564
Iteration: 12, Func. Count: 155, Neg. LLF: 91.52179254371305
Iteration: 13, Func. Count: 167, Neg. LLF: 91.63656064111552
Iteration: 14, Func. Count: 180, Neg. LLF: 91.50345325408925
Iteration: 15, Func. Count: 193, Neg. LLF: 91.43543764440076
Iteration: 16, Func. Count: 205, Neg. LLF: 91.42638278629157
Iteration: 17, Func. Count: 217, Neg. LLF: 91.42490002102478
Iteration: 18, Func. Count: 229, Neg. LLF: 91.42353603167254
Iteration: 19, Func. Count: 241, Neg. LLF: 91.42259354009703
Iteration: 20, Func. Count: 253, Neg. LLF: 91.36288318345409
Iteration: 21, Func. Count: 265, Neg. LLF: 90.92177267326541
Iteration: 22, Func. Count: 277, Neg. LLF: 102.29289402553071
Iteration: 23, Func. Count: 292, Neg. LLF: 394.0881533656107
Iteration: 24, Func. Count: 305, Neg. LLF: 90.15333440693145
Iteration: 25, Func. Count: 317, Neg. LLF: 90.0710406932201
Iteration: 26, Func. Count: 329, Neg. LLF: 89.93750963920543
Iteration: 27, Func. Count: 341, Neg. LLF: 89.93356951708154
Iteration: 28, Func. Count: 354, Neg. LLF: 89.90575849344592
Iteration: 29, Func. Count: 367, Neg. LLF: 89.90031961028814
Iteration: 30, Func. Count: 379, Neg. LLF: 89.9003181500911
Iteration: 31, Func. Count: 390, Neg. LLF: 89.9003180694851
Optimization terminated successfully (Exit mode 0)
Current function value: 89.9003181500911
Iterations: 32
Function evaluations: 390
Gradient evaluations: 31
Iteration: 1, Func. Count: 10, Neg. LLF: 110.9466305909617
Iteration: 2, Func. Count: 21, Neg. LLF: 147.0880790204099
Iteration: 3, Func. Count: 31, Neg. LLF: 2439918.79164036
Iteration: 4, Func. Count: 41, Neg. LLF: 3823606.4697060804
Iteration: 5, Func. Count: 51, Neg. LLF: 4520565.300869844
Iteration: 6, Func. Count: 61, Neg. LLF: 6070262.100004441
Iteration: 7, Func. Count: 71, Neg. LLF: 3701957.0448784693
Iteration: 8, Func. Count: 81, Neg. LLF: 199.9081556641727
Iteration: 9, Func. Count: 91, Neg. LLF: 90.7151703436797
Iteration: 10, Func. Count: 100, Neg. LLF: 92.35767415724494
Iteration: 11, Func. Count: 111, Neg. LLF: 97.2147532319375
Iteration: 12, Func. Count: 122, Neg. LLF: 89.00779381240136
Iteration: 13, Func. Count: 131, Neg. LLF: 88.82495820227754
Iteration: 14, Func. Count: 140, Neg. LLF: 88.79756160927938
Iteration: 15, Func. Count: 149, Neg. LLF: 88.77904753792308
Iteration: 16, Func. Count: 158, Neg. LLF: 88.76995006409719
Iteration: 17, Func. Count: 167, Neg. LLF: 88.7645349233439
Iteration: 18, Func. Count: 176, Neg. LLF: 88.7634874312974
Iteration: 19, Func. Count: 185, Neg. LLF: 88.76338814946422
Iteration: 20, Func. Count: 194, Neg. LLF: 88.76337132022863
Iteration: 21, Func. Count: 203, Neg. LLF: 88.76336547687367
Iteration: 22, Func. Count: 212, Neg. LLF: 88.7633645887724
Optimization terminated successfully (Exit mode 0)
Current function value: 88.7633645887724
Iterations: 22
Function evaluations: 212
Gradient evaluations: 22
Iteration: 1, Func. Count: 11, Neg. LLF: 20646886.723168273
Iteration: 2, Func. Count: 23, Neg. LLF: 167.16527042650978
Iteration: 3, Func. Count: 34, Neg. LLF: 112.808533128919
Iteration: 4, Func. Count: 45, Neg. LLF: 102.9643951615467
Iteration: 5, Func. Count: 56, Neg. LLF: 102.60471247974749
Iteration: 6, Func. Count: 67, Neg. LLF: 102.5128550927536
Iteration: 7, Func. Count: 78, Neg. LLF: 96.8141385805583
Iteration: 8, Func. Count: 89, Neg. LLF: 95.39421741576442
Iteration: 9, Func. Count: 100, Neg. LLF: 93.99704043116387
Iteration: 10, Func. Count: 111, Neg. LLF: 92.78601919189946
Iteration: 11, Func. Count: 122, Neg. LLF: 91.78214911139665
Iteration: 12, Func. Count: 132, Neg. LLF: 92.01646930864013
Iteration: 13, Func. Count: 143, Neg. LLF: 91.09500296733346
Iteration: 14, Func. Count: 153, Neg. LLF: 91.09113821040995
Iteration: 15, Func. Count: 163, Neg. LLF: 91.0910610022026
Iteration: 16, Func. Count: 172, Neg. LLF: 91.09106100145424
Optimization terminated successfully (Exit mode 0)
Current function value: 91.0910610022026
Iterations: 16
Function evaluations: 172
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 20399608.085200667
Iteration: 2, Func. Count: 24, Neg. LLF: 3042130.2657932946
Iteration: 3, Func. Count: 36, Neg. LLF: 111.00296179474407
Iteration: 4, Func. Count: 48, Neg. LLF: 102.74712026403266
Iteration: 5, Func. Count: 60, Neg. LLF: 93.23848174978659
Iteration: 6, Func. Count: 71, Neg. LLF: 94.31035208791049
Iteration: 7, Func. Count: 83, Neg. LLF: 116.32189579241813
Iteration: 8, Func. Count: 95, Neg. LLF: 91.93156410551866
Iteration: 9, Func. Count: 106, Neg. LLF: 91.81183344287565
Iteration: 10, Func. Count: 117, Neg. LLF: 91.78447700380173
Iteration: 11, Func. Count: 128, Neg. LLF: 91.77601376385914
Iteration: 12, Func. Count: 139, Neg. LLF: 91.75745806689554
Iteration: 13, Func. Count: 150, Neg. LLF: 91.775330260232
Iteration: 14, Func. Count: 162, Neg. LLF: 92.00666875798031
Iteration: 15, Func. Count: 174, Neg. LLF: 91.73042849033577
Iteration: 16, Func. Count: 186, Neg. LLF: 92.06629005280966
Iteration: 17, Func. Count: 198, Neg. LLF: 91.86670501502539
Iteration: 18, Func. Count: 210, Neg. LLF: 91.51686427191021
Iteration: 19, Func. Count: 221, Neg. LLF: 92.07636434975475
Iteration: 20, Func. Count: 234, Neg. LLF: 91.22226330701002
Iteration: 21, Func. Count: 245, Neg. LLF: 91.1878400901133
Iteration: 22, Func. Count: 256, Neg. LLF: 91.17691994736768
Iteration: 23, Func. Count: 267, Neg. LLF: 91.17044489241496
Iteration: 24, Func. Count: 278, Neg. LLF: 91.16521231555662
Iteration: 25, Func. Count: 289, Neg. LLF: 91.15636326469486
Iteration: 26, Func. Count: 300, Neg. LLF: 91.14382614983167
Iteration: 27, Func. Count: 311, Neg. LLF: 91.13170453068587
Iteration: 28, Func. Count: 322, Neg. LLF: 91.09258969671097
Iteration: 29, Func. Count: 333, Neg. LLF: 91.09145762968403
Iteration: 30, Func. Count: 344, Neg. LLF: 91.09107723854208
Iteration: 31, Func. Count: 355, Neg. LLF: 91.09106271730575
Iteration: 32, Func. Count: 366, Neg. LLF: 91.09106110065713
Iteration: 33, Func. Count: 376, Neg. LLF: 91.09106110296496
Optimization terminated successfully (Exit mode 0)
Current function value: 91.09106110065713
Iterations: 33
Function evaluations: 376
Gradient evaluations: 33
Iteration: 1, Func. Count: 13, Neg. LLF: 34628965.973157756
Iteration: 2, Func. Count: 27, Neg. LLF: 2157191.312486842
Iteration: 3, Func. Count: 40, Neg. LLF: 15359458.641749363
Iteration: 4, Func. Count: 53, Neg. LLF: 107.24732868432933
Iteration: 5, Func. Count: 66, Neg. LLF: 106.36285945826477
Iteration: 6, Func. Count: 79, Neg. LLF: 103.78423315563127
Iteration: 7, Func. Count: 92, Neg. LLF: 95.77100146114155
Iteration: 8, Func. Count: 105, Neg. LLF: 93.48555846939904
Iteration: 9, Func. Count: 118, Neg. LLF: 90.87783980189921
Iteration: 10, Func. Count: 131, Neg. LLF: 88.70221968840907
Iteration: 11, Func. Count: 143, Neg. LLF: 94.23857001679474
Iteration: 12, Func. Count: 158, Neg. LLF: 88.45118723197051
Iteration: 13, Func. Count: 170, Neg. LLF: 88.29349325231252
Iteration: 14, Func. Count: 182, Neg. LLF: 88.27746885620068
Iteration: 15, Func. Count: 194, Neg. LLF: 88.17242030232266
Iteration: 16, Func. Count: 206, Neg. LLF: 88.09432426942459
Iteration: 17, Func. Count: 218, Neg. LLF: 88.01882103585524
Iteration: 18, Func. Count: 230, Neg. LLF: 87.90008453779399
Iteration: 19, Func. Count: 242, Neg. LLF: 87.77614407667838
Iteration: 20, Func. Count: 254, Neg. LLF: 88.14657806136519
Iteration: 21, Func. Count: 267, Neg. LLF: 87.79846309638432
Iteration: 22, Func. Count: 280, Neg. LLF: 87.74482995009467
Iteration: 23, Func. Count: 292, Neg. LLF: 87.70156585852139
Iteration: 24, Func. Count: 304, Neg. LLF: 87.70469614562914
Iteration: 25, Func. Count: 326, Neg. LLF: 88.4741123973441
Iteration: 26, Func. Count: 340, Neg. LLF: 87.68532723574944
Iteration: 27, Func. Count: 352, Neg. LLF: 87.69012746614541
Iteration: 28, Func. Count: 367, Neg. LLF: 87.6892338291385
Iteration: 29, Func. Count: 379, Neg. LLF: 87.82511911047965
Iteration: 30, Func. Count: 392, Neg. LLF: 88.08578144047767
Iteration: 31, Func. Count: 406, Neg. LLF: 88.43278344385048
Iteration: 32, Func. Count: 420, Neg. LLF: 87.69759340671722
Iteration: 33, Func. Count: 433, Neg. LLF: 87.69237761310653
Iteration: 34, Func. Count: 446, Neg. LLF: 87.69057493555351
Iteration: 35, Func. Count: 458, Neg. LLF: 87.69045663447731
Iteration: 36, Func. Count: 469, Neg. LLF: 87.69045732449796
Optimization terminated successfully (Exit mode 0)
Current function value: 87.69045663447731
Iterations: 37
Function evaluations: 469
Gradient evaluations: 36
Iteration: 1, Func. Count: 14, Neg. LLF: 20294945.047229428
Iteration: 2, Func. Count: 28, Neg. LLF: 1021313.5212792216
Iteration: 3, Func. Count: 42, Neg. LLF: 737290.1408096624
Iteration: 4, Func. Count: 56, Neg. LLF: 1404241.30511456
Iteration: 5, Func. Count: 70, Neg. LLF: 93.34526890622286
Iteration: 6, Func. Count: 84, Neg. LLF: 229.7245351431007
Iteration: 7, Func. Count: 98, Neg. LLF: 107.58573471416494
Iteration: 8, Func. Count: 112, Neg. LLF: 105.21260980603513
Iteration: 9, Func. Count: 126, Neg. LLF: 91.75779730596132
Iteration: 10, Func. Count: 140, Neg. LLF: 105.99667949299986
Iteration: 11, Func. Count: 154, Neg. LLF: 88.6562379581611
Iteration: 12, Func. Count: 167, Neg. LLF: 89.1733635171884
Iteration: 13, Func. Count: 181, Neg. LLF: 90.27496263611961
Iteration: 14, Func. Count: 196, Neg. LLF: 99.21264275003965
Iteration: 15, Func. Count: 212, Neg. LLF: 88.41211436190956
Iteration: 16, Func. Count: 226, Neg. LLF: 87.82647054794914
Iteration: 17, Func. Count: 239, Neg. LLF: 87.71428668842321
Iteration: 18, Func. Count: 252, Neg. LLF: 87.63329797822846
Iteration: 19, Func. Count: 265, Neg. LLF: 87.60307608756018
Iteration: 20, Func. Count: 278, Neg. LLF: 87.5869764154582
Iteration: 21, Func. Count: 291, Neg. LLF: 87.5824292502569
Iteration: 22, Func. Count: 304, Neg. LLF: 87.58098447299807
Iteration: 23, Func. Count: 317, Neg. LLF: 87.58079235838363
Iteration: 24, Func. Count: 330, Neg. LLF: 87.5807672618185
Iteration: 25, Func. Count: 343, Neg. LLF: 87.58076238152768
Iteration: 26, Func. Count: 356, Neg. LLF: 87.58076171778893
Optimization terminated successfully (Exit mode 0)
Current function value: 87.58076171778893
Iterations: 26
Function evaluations: 356
Gradient evaluations: 26
Iteration: 1, Func. Count: 11, Neg. LLF: 120.34583975210113
Iteration: 2, Func. Count: 24, Neg. LLF: 153.734127375989
Iteration: 3, Func. Count: 35, Neg. LLF: 2626593.4618258867
Iteration: 4, Func. Count: 46, Neg. LLF: 4813731.5341325635
Iteration: 5, Func. Count: 57, Neg. LLF: 4548477.7961977925
Iteration: 6, Func. Count: 68, Neg. LLF: 378.17074429808184
Iteration: 7, Func. Count: 79, Neg. LLF: 96.37479011121295
Iteration: 8, Func. Count: 90, Neg. LLF: 90.67813982095771
Iteration: 9, Func. Count: 100, Neg. LLF: 89.70362391285133
Iteration: 10, Func. Count: 110, Neg. LLF: 91.58153332294467
Iteration: 11, Func. Count: 121, Neg. LLF: 89.36646860622285
Iteration: 12, Func. Count: 132, Neg. LLF: 88.99407086152841
Iteration: 13, Func. Count: 142, Neg. LLF: 88.87862189813032
Iteration: 14, Func. Count: 152, Neg. LLF: 88.80614734029565
Iteration: 15, Func. Count: 162, Neg. LLF: 88.7803056470255
Iteration: 16, Func. Count: 172, Neg. LLF: 88.76380031801662
Iteration: 17, Func. Count: 182, Neg. LLF: 88.76337531037902
Iteration: 18, Func. Count: 192, Neg. LLF: 88.76336488601711
Iteration: 19, Func. Count: 201, Neg. LLF: 88.76336529232513
Optimization terminated successfully (Exit mode 0)
Current function value: 88.76336488601711
Iterations: 19
Function evaluations: 201
Gradient evaluations: 19
Iteration: 1, Func. Count: 12, Neg. LLF: 20597898.70273381
Iteration: 2, Func. Count: 25, Neg. LLF: 167.2054319480145
Iteration: 3, Func. Count: 37, Neg. LLF: 113.0037082002248
Iteration: 4, Func. Count: 49, Neg. LLF: 102.45509353331305
Iteration: 5, Func. Count: 61, Neg. LLF: 101.60376983861049
Iteration: 6, Func. Count: 73, Neg. LLF: 101.7663411681001
Iteration: 7, Func. Count: 85, Neg. LLF: 96.03148173327952
Iteration: 8, Func. Count: 97, Neg. LLF: 94.8307387674032
Iteration: 9, Func. Count: 109, Neg. LLF: 93.55317395004309
Iteration: 10, Func. Count: 121, Neg. LLF: 92.41973724968383
Iteration: 11, Func. Count: 132, Neg. LLF: 92.22638396876806
Iteration: 12, Func. Count: 144, Neg. LLF: 2562751.7133264006
Iteration: 13, Func. Count: 158, Neg. LLF: 91.11386579378285
Iteration: 14, Func. Count: 169, Neg. LLF: 91.09204177051849
Iteration: 15, Func. Count: 180, Neg. LLF: 91.09106222277097
Iteration: 16, Func. Count: 191, Neg. LLF: 91.09106096012944
Iteration: 17, Func. Count: 201, Neg. LLF: 91.09106096015823
Optimization terminated successfully (Exit mode 0)
Current function value: 91.09106096012944
Iterations: 17
Function evaluations: 201
Gradient evaluations: 17
Iteration: 1, Func. Count: 13, Neg. LLF: 20335983.665607948
Iteration: 2, Func. Count: 26, Neg. LLF: 2982602.259720286
Iteration: 3, Func. Count: 39, Neg. LLF: 109.84929490005236
Iteration: 4, Func. Count: 52, Neg. LLF: 103.18306565891521
Iteration: 5, Func. Count: 65, Neg. LLF: 92.87113825854158
Iteration: 6, Func. Count: 77, Neg. LLF: 95.75702124011482
Iteration: 7, Func. Count: 90, Neg. LLF: 125.67273103627082
Iteration: 8, Func. Count: 103, Neg. LLF: 91.85448014714224
Iteration: 9, Func. Count: 115, Neg. LLF: 91.7899551744814
Iteration: 10, Func. Count: 127, Neg. LLF: 91.78041507283176
Iteration: 11, Func. Count: 139, Neg. LLF: 91.77736022079597
Iteration: 12, Func. Count: 151, Neg. LLF: 91.76916933190992
Iteration: 13, Func. Count: 163, Neg. LLF: 91.79345718698369
Iteration: 14, Func. Count: 176, Neg. LLF: 92.10391036209653
Iteration: 15, Func. Count: 189, Neg. LLF: 92.14480251450797
Iteration: 16, Func. Count: 202, Neg. LLF: 91.66105351409573
Iteration: 17, Func. Count: 215, Neg. LLF: 91.49079799960303
Iteration: 18, Func. Count: 228, Neg. LLF: 91.2630779049902
Iteration: 19, Func. Count: 240, Neg. LLF: 91.32174311650652
Iteration: 20, Func. Count: 253, Neg. LLF: 91.22165134636126
Iteration: 21, Func. Count: 265, Neg. LLF: 91.18676208098888
Iteration: 22, Func. Count: 277, Neg. LLF: 91.18506774320517
Iteration: 23, Func. Count: 289, Neg. LLF: 91.1807019017406
Iteration: 24, Func. Count: 301, Neg. LLF: 91.16621782938564
Iteration: 25, Func. Count: 313, Neg. LLF: 91.14623685169124
Iteration: 26, Func. Count: 325, Neg. LLF: 91.1407072771882
Iteration: 27, Func. Count: 337, Neg. LLF: 91.1341684675851
Iteration: 28, Func. Count: 349, Neg. LLF: 91.12708434391936
Iteration: 29, Func. Count: 361, Neg. LLF: 98.6789383611935
Iteration: 30, Func. Count: 383, Neg. LLF: 9635202.576423138
Iteration: 31, Func. Count: 400, Neg. LLF: 91.12837925006951
Iteration: 32, Func. Count: 413, Neg. LLF: 91.09141664909322
Iteration: 33, Func. Count: 425, Neg. LLF: 91.09106789616611
Iteration: 34, Func. Count: 437, Neg. LLF: 91.09106474752106
Iteration: 35, Func. Count: 449, Neg. LLF: 91.09106094145692
Iteration: 36, Func. Count: 460, Neg. LLF: 91.09106094366847
Optimization terminated successfully (Exit mode 0)
Current function value: 91.09106094145692
Iterations: 37
Function evaluations: 460
Gradient evaluations: 36
Iteration: 1, Func. Count: 14, Neg. LLF: 34513695.48032561
Iteration: 2, Func. Count: 29, Neg. LLF: 2215955.022638461
Iteration: 3, Func. Count: 43, Neg. LLF: 14887506.06800978
Iteration: 4, Func. Count: 57, Neg. LLF: 107.07338150748721
Iteration: 5, Func. Count: 71, Neg. LLF: 106.11505424853138
Iteration: 6, Func. Count: 85, Neg. LLF: 104.70416451526661
Iteration: 7, Func. Count: 99, Neg. LLF: 96.24025075582011
Iteration: 8, Func. Count: 113, Neg. LLF: 94.13102138550889
Iteration: 9, Func. Count: 127, Neg. LLF: 90.4647232095589
Iteration: 10, Func. Count: 140, Neg. LLF: 90.92915303288429
Iteration: 11, Func. Count: 154, Neg. LLF: 179.4106933335292
Iteration: 12, Func. Count: 168, Neg. LLF: 119.56274785682571
Iteration: 13, Func. Count: 182, Neg. LLF: 93.77219661358853
Iteration: 14, Func. Count: 196, Neg. LLF: 89.0199636159006
Iteration: 15, Func. Count: 210, Neg. LLF: 88.34709247715197
Iteration: 16, Func. Count: 223, Neg. LLF: 88.2625597302987
Iteration: 17, Func. Count: 236, Neg. LLF: 88.19009399606333
Iteration: 18, Func. Count: 249, Neg. LLF: 88.14664131184848
Iteration: 19, Func. Count: 262, Neg. LLF: 88.04652575576742
Iteration: 20, Func. Count: 275, Neg. LLF: 87.98633124932
Iteration: 21, Func. Count: 288, Neg. LLF: 87.96281615518036
Iteration: 22, Func. Count: 301, Neg. LLF: 87.84558986368158
Iteration: 23, Func. Count: 314, Neg. LLF: 87.82040187396032
Iteration: 24, Func. Count: 327, Neg. LLF: 87.78858672477696
Iteration: 25, Func. Count: 341, Neg. LLF: 87.70107026570278
Iteration: 26, Func. Count: 354, Neg. LLF: 87.69465168157711
Iteration: 27, Func. Count: 367, Neg. LLF: 87.69388016219102
Iteration: 28, Func. Count: 380, Neg. LLF: 87.69362766504635
Iteration: 29, Func. Count: 393, Neg. LLF: 87.69341514085853
Iteration: 30, Func. Count: 406, Neg. LLF: 87.69280078507285
Iteration: 31, Func. Count: 419, Neg. LLF: 87.6926708767587
Iteration: 32, Func. Count: 432, Neg. LLF: 87.69106992767165
Iteration: 33, Func. Count: 445, Neg. LLF: 87.69058832441414
Iteration: 34, Func. Count: 458, Neg. LLF: 87.69051607626476
Iteration: 35, Func. Count: 471, Neg. LLF: 87.72207209225131
Iteration: 36, Func. Count: 487, Neg. LLF: 87.69120147976533
Iteration: 37, Func. Count: 502, Neg. LLF: 87.69047755224759
Iteration: 38, Func. Count: 515, Neg. LLF: 87.69045784924148
Iteration: 39, Func. Count: 528, Neg. LLF: 87.69046841652009
Optimization terminated successfully (Exit mode 0)
Current function value: 87.69045708934593
Iterations: 40
Function evaluations: 529
Gradient evaluations: 39
Iteration: 1, Func. Count: 15, Neg. LLF: 20215620.115896534
Iteration: 2, Func. Count: 30, Neg. LLF: 1105133.9791446328
Iteration: 3, Func. Count: 45, Neg. LLF: 708957.4866846165
Iteration: 4, Func. Count: 60, Neg. LLF: 1442244.2118729982
Iteration: 5, Func. Count: 75, Neg. LLF: 91.7459435570726
Iteration: 6, Func. Count: 89, Neg. LLF: 141.92226375111076
Iteration: 7, Func. Count: 104, Neg. LLF: 98.250138319367
Iteration: 8, Func. Count: 121, Neg. LLF: 116.11238176796229
Iteration: 9, Func. Count: 136, Neg. LLF: 88.35590017711719
Iteration: 10, Func. Count: 150, Neg. LLF: 98.40041544343443
Iteration: 11, Func. Count: 165, Neg. LLF: 91.32037216679508
Iteration: 12, Func. Count: 180, Neg. LLF: 87.42951867071766
Iteration: 13, Func. Count: 194, Neg. LLF: 87.31314261742705
Iteration: 14, Func. Count: 208, Neg. LLF: 87.30454369072912
Iteration: 15, Func. Count: 222, Neg. LLF: 87.29955820678377
Iteration: 16, Func. Count: 236, Neg. LLF: 87.29839257932154
Iteration: 17, Func. Count: 250, Neg. LLF: 87.29812027186831
Iteration: 18, Func. Count: 264, Neg. LLF: 87.2981129063908
Iteration: 19, Func. Count: 278, Neg. LLF: 87.29810845549075
Iteration: 20, Func. Count: 292, Neg. LLF: 87.29810309742112
Iteration: 21, Func. Count: 306, Neg. LLF: 87.29810034961264
Iteration: 22, Func. Count: 320, Neg. LLF: 87.2980998416627
Optimization terminated successfully (Exit mode 0)
Current function value: 87.2980998416627
Iterations: 22
Function evaluations: 320
Gradient evaluations: 22
Iteration: 1, Func. Count: 8, Neg. LLF: 127.6550765427541
Iteration: 2, Func. Count: 18, Neg. LLF: 144.19301479523617
Iteration: 3, Func. Count: 26, Neg. LLF: 98.77966745027243
Iteration: 4, Func. Count: 34, Neg. LLF: 102.29470537321208
Iteration: 5, Func. Count: 42, Neg. LLF: 174.26244443234336
Iteration: 6, Func. Count: 50, Neg. LLF: 94.27239295693262
Iteration: 7, Func. Count: 57, Neg. LLF: 93.50422929993832
Iteration: 8, Func. Count: 64, Neg. LLF: 93.35000781488196
Iteration: 9, Func. Count: 71, Neg. LLF: 93.23621004902081
Iteration: 10, Func. Count: 78, Neg. LLF: 93.19932162318342
Iteration: 11, Func. Count: 85, Neg. LLF: 93.19929699798928
Iteration: 12, Func. Count: 92, Neg. LLF: 93.19929588297043
Iteration: 13, Func. Count: 98, Neg. LLF: 93.19929628371435
Optimization terminated successfully (Exit mode 0)
Current function value: 93.19929588297043
Iterations: 13
Function evaluations: 98
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 22860054.827174235
Iteration: 2, Func. Count: 19, Neg. LLF: 144.58566418267787
Iteration: 3, Func. Count: 28, Neg. LLF: 108.68244891090544
Iteration: 4, Func. Count: 37, Neg. LLF: 98.72096885551967
Iteration: 5, Func. Count: 46, Neg. LLF: 99.4277878747853
Iteration: 6, Func. Count: 55, Neg. LLF: 92.96107648115147
Iteration: 7, Func. Count: 63, Neg. LLF: 93.38307391811014
Iteration: 8, Func. Count: 72, Neg. LLF: 247.9058124404132
Iteration: 9, Func. Count: 82, Neg. LLF: 91.29396334869378
Iteration: 10, Func. Count: 90, Neg. LLF: 91.10282288107625
Iteration: 11, Func. Count: 98, Neg. LLF: 91.09114378750202
Iteration: 12, Func. Count: 106, Neg. LLF: 91.09106099947647
Iteration: 13, Func. Count: 113, Neg. LLF: 91.09106099877084
Optimization terminated successfully (Exit mode 0)
Current function value: 91.09106099947647
Iterations: 13
Function evaluations: 113
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 22561485.31196539
Iteration: 2, Func. Count: 20, Neg. LLF: 423.4739265182321
Iteration: 3, Func. Count: 31, Neg. LLF: 98.67471593715861
Iteration: 4, Func. Count: 41, Neg. LLF: 138.22510611704968
Iteration: 5, Func. Count: 52, Neg. LLF: 94.21275702099105
Iteration: 6, Func. Count: 62, Neg. LLF: 91.55252531759729
Iteration: 7, Func. Count: 71, Neg. LLF: 91.36108861250617
Iteration: 8, Func. Count: 80, Neg. LLF: 91.22568621559205
Iteration: 9, Func. Count: 89, Neg. LLF: 91.195755184233
Iteration: 10, Func. Count: 98, Neg. LLF: 91.15950745373365
Iteration: 11, Func. Count: 107, Neg. LLF: 91.14256193926028
Iteration: 12, Func. Count: 116, Neg. LLF: 91.13256365796028
Iteration: 13, Func. Count: 125, Neg. LLF: 91.10587959487944
Iteration: 14, Func. Count: 134, Neg. LLF: 91.09123778191473
Iteration: 15, Func. Count: 143, Neg. LLF: 91.09117558066191
Iteration: 16, Func. Count: 152, Neg. LLF: 91.09109360729575
Iteration: 17, Func. Count: 161, Neg. LLF: 91.0910627768551
Iteration: 18, Func. Count: 170, Neg. LLF: 91.09106121285022
Iteration: 19, Func. Count: 178, Neg. LLF: 91.09106121497946
Optimization terminated successfully (Exit mode 0)
Current function value: 91.09106121285022
Iterations: 19
Function evaluations: 178
Gradient evaluations: 19
Iteration: 1, Func. Count: 11, Neg. LLF: 20601967.549208038
Iteration: 2, Func. Count: 22, Neg. LLF: 97.92027607408221
Iteration: 3, Func. Count: 33, Neg. LLF: 93.12321394939768
Iteration: 4, Func. Count: 43, Neg. LLF: 98.09302543318387
Iteration: 5, Func. Count: 54, Neg. LLF: 96.68951056357817
Iteration: 6, Func. Count: 65, Neg. LLF: 97.433504941658
Iteration: 7, Func. Count: 76, Neg. LLF: 91.15141283996265
Iteration: 8, Func. Count: 86, Neg. LLF: 91.14282190005777
Iteration: 9, Func. Count: 96, Neg. LLF: 91.14023592426896
Iteration: 10, Func. Count: 106, Neg. LLF: 91.14018734261033
Iteration: 11, Func. Count: 116, Neg. LLF: 91.1401637021816
Iteration: 12, Func. Count: 126, Neg. LLF: 91.1401621575752
Iteration: 13, Func. Count: 135, Neg. LLF: 91.14016215742114
Optimization terminated successfully (Exit mode 0)
Current function value: 91.1401621575752
Iterations: 13
Function evaluations: 135
Gradient evaluations: 13
Iteration: 1, Func. Count: 12, Neg. LLF: 20828021.329996977
Iteration: 2, Func. Count: 24, Neg. LLF: 95.52567938485358
Iteration: 3, Func. Count: 36, Neg. LLF: 92.00764524598324
Iteration: 4, Func. Count: 47, Neg. LLF: 91.70833919580993
Iteration: 5, Func. Count: 58, Neg. LLF: 108.71153544718244
Iteration: 6, Func. Count: 72, Neg. LLF: 91.45757684671811
Iteration: 7, Func. Count: 83, Neg. LLF: 91.34661032723695
Iteration: 8, Func. Count: 94, Neg. LLF: 91.38062343973093
Iteration: 9, Func. Count: 106, Neg. LLF: 91.20282715306627
Iteration: 10, Func. Count: 117, Neg. LLF: 91.16986190948744
Iteration: 11, Func. Count: 128, Neg. LLF: 91.15809541892992
Iteration: 12, Func. Count: 139, Neg. LLF: 91.11540267326797
Iteration: 13, Func. Count: 150, Neg. LLF: 91.12550334684785
Iteration: 14, Func. Count: 162, Neg. LLF: 91.11525425799582
Iteration: 15, Func. Count: 174, Neg. LLF: 91.106889257866
Iteration: 16, Func. Count: 185, Neg. LLF: 91.0949868358914
Iteration: 17, Func. Count: 196, Neg. LLF: 20722096.855802517
Iteration: 18, Func. Count: 211, Neg. LLF: 94.54023950255713
Iteration: 19, Func. Count: 224, Neg. LLF: 91.09106095131513
Iteration: 20, Func. Count: 234, Neg. LLF: 91.09106096544086
Optimization terminated successfully (Exit mode 0)
Current function value: 91.09106095131513
Iterations: 21
Function evaluations: 234
Gradient evaluations: 20
Iteration: 1, Func. Count: 9, Neg. LLF: 129.83998280849903
Iteration: 2, Func. Count: 20, Neg. LLF: 148.15000130318006
Iteration: 3, Func. Count: 29, Neg. LLF: 242.78652667093158
Iteration: 4, Func. Count: 38, Neg. LLF: 956.1149202270714
Iteration: 5, Func. Count: 47, Neg. LLF: 113.33032515337237
Iteration: 6, Func. Count: 56, Neg. LLF: 98.43046986844244
Iteration: 7, Func. Count: 65, Neg. LLF: 95.84211070590254
Iteration: 8, Func. Count: 74, Neg. LLF: 93.8096755784452
Iteration: 9, Func. Count: 82, Neg. LLF: 93.41464988984501
Iteration: 10, Func. Count: 90, Neg. LLF: 93.36784776048104
Iteration: 11, Func. Count: 98, Neg. LLF: 93.32226887230063
Iteration: 12, Func. Count: 106, Neg. LLF: 93.3191609346291
Iteration: 13, Func. Count: 114, Neg. LLF: 93.31878343439617
Iteration: 14, Func. Count: 122, Neg. LLF: 93.31872588855606
Iteration: 15, Func. Count: 130, Neg. LLF: 93.3186692239144
Iteration: 16, Func. Count: 138, Neg. LLF: 93.31858855314832
Iteration: 17, Func. Count: 146, Neg. LLF: 93.31848999341145
Iteration: 18, Func. Count: 154, Neg. LLF: 93.31843364323002
Iteration: 19, Func. Count: 162, Neg. LLF: 93.3184181945243
Iteration: 20, Func. Count: 170, Neg. LLF: 93.31841756217337
Optimization terminated successfully (Exit mode 0)
Current function value: 93.31841756217337
Iterations: 20
Function evaluations: 170
Gradient evaluations: 20
Iteration: 1, Func. Count: 10, Neg. LLF: 20402932.09295772
Iteration: 2, Func. Count: 21, Neg. LLF: 159.91020317926802
Iteration: 3, Func. Count: 31, Neg. LLF: 112.13841037448668
Iteration: 4, Func. Count: 41, Neg. LLF: 105.97291234235593
Iteration: 5, Func. Count: 51, Neg. LLF: 106.08621497924963
Iteration: 6, Func. Count: 61, Neg. LLF: 109.07547005056092
Iteration: 7, Func. Count: 71, Neg. LLF: 95.13448033378644
Iteration: 8, Func. Count: 81, Neg. LLF: 93.0337019738725
Iteration: 9, Func. Count: 90, Neg. LLF: 93.52846724605394
Iteration: 10, Func. Count: 100, Neg. LLF: 93.9599533274806
Iteration: 11, Func. Count: 110, Neg. LLF: 92.49256900580275
Iteration: 12, Func. Count: 119, Neg. LLF: 91.89486768399746
Iteration: 13, Func. Count: 128, Neg. LLF: 93.22527050309803
Iteration: 14, Func. Count: 138, Neg. LLF: 91.11603071989911
Iteration: 15, Func. Count: 147, Neg. LLF: 91.09755343776702
Iteration: 16, Func. Count: 156, Neg. LLF: 91.09108272722722
Iteration: 17, Func. Count: 165, Neg. LLF: 91.09106105549891
Iteration: 18, Func. Count: 173, Neg. LLF: 91.09106105578515
Optimization terminated successfully (Exit mode 0)
Current function value: 91.09106105549891
Iterations: 18
Function evaluations: 173
Gradient evaluations: 18
Iteration: 1, Func. Count: 11, Neg. LLF: 20245947.034814946
Iteration: 2, Func. Count: 22, Neg. LLF: 248.01809071294926
Iteration: 3, Func. Count: 34, Neg. LLF: 95.28007055266202
Iteration: 4, Func. Count: 45, Neg. LLF: 107.23731972088153
Iteration: 5, Func. Count: 56, Neg. LLF: 92.5035971132658
Iteration: 6, Func. Count: 66, Neg. LLF: 122.65333522368068
Iteration: 7, Func. Count: 78, Neg. LLF: 96.22789417188864
Iteration: 8, Func. Count: 89, Neg. LLF: 91.63537594667667
Iteration: 9, Func. Count: 99, Neg. LLF: 91.29330551765368
Iteration: 10, Func. Count: 109, Neg. LLF: 91.24820439817321
Iteration: 11, Func. Count: 119, Neg. LLF: 91.24049395468508
Iteration: 12, Func. Count: 129, Neg. LLF: 91.23974727133904
Iteration: 13, Func. Count: 139, Neg. LLF: 91.23498963965746
Iteration: 14, Func. Count: 149, Neg. LLF: 91.21373320044879
Iteration: 15, Func. Count: 159, Neg. LLF: 91.16243359299244
Iteration: 16, Func. Count: 169, Neg. LLF: 91.14605294620848
Iteration: 17, Func. Count: 179, Neg. LLF: 91.13122052130126
Iteration: 18, Func. Count: 189, Neg. LLF: 91.10519812598895
Iteration: 19, Func. Count: 199, Neg. LLF: 91.09141751365665
Iteration: 20, Func. Count: 209, Neg. LLF: 99.19725819968076
Iteration: 21, Func. Count: 222, Neg. LLF: 91.19663238920093
Optimization terminated successfully (Exit mode 0)
Current function value: 91.09106174384594
Iterations: 22
Function evaluations: 226
Gradient evaluations: 21
Iteration: 1, Func. Count: 12, Neg. LLF: 19883827.569070615
Iteration: 2, Func. Count: 24, Neg. LLF: 154.00296254230574
Iteration: 3, Func. Count: 36, Neg. LLF: 116.06409436840435
Iteration: 4, Func. Count: 48, Neg. LLF: 93.68745495853183
Iteration: 5, Func. Count: 59, Neg. LLF: 103.5235843532135
Iteration: 6, Func. Count: 72, Neg. LLF: 14537.023732050193
Iteration: 7, Func. Count: 84, Neg. LLF: 91.93026837743481
Iteration: 8, Func. Count: 95, Neg. LLF: 91.81862688231517
Iteration: 9, Func. Count: 106, Neg. LLF: 91.22204984906124
Iteration: 10, Func. Count: 117, Neg. LLF: 91.49502556826715
Iteration: 11, Func. Count: 129, Neg. LLF: 91.18471924861566
Iteration: 12, Func. Count: 140, Neg. LLF: 91.1674999376172
Iteration: 13, Func. Count: 151, Neg. LLF: 91.1648815439858
Iteration: 14, Func. Count: 162, Neg. LLF: 91.16179300942929
Iteration: 15, Func. Count: 173, Neg. LLF: 91.1602525902873
Iteration: 16, Func. Count: 184, Neg. LLF: 91.15341649628384
Iteration: 17, Func. Count: 195, Neg. LLF: 91.14667258607876
Iteration: 18, Func. Count: 206, Neg. LLF: 91.14133993275235
Iteration: 19, Func. Count: 217, Neg. LLF: 91.14023321296565
Iteration: 20, Func. Count: 228, Neg. LLF: 91.14016710117676
Iteration: 21, Func. Count: 239, Neg. LLF: 91.14016230078175
Iteration: 22, Func. Count: 249, Neg. LLF: 91.14016230078683
Optimization terminated successfully (Exit mode 0)
Current function value: 91.14016230078175
Iterations: 22
Function evaluations: 249
Gradient evaluations: 22
Iteration: 1, Func. Count: 13, Neg. LLF: 20063706.74676815
Iteration: 2, Func. Count: 26, Neg. LLF: 226.5311533380284
Iteration: 3, Func. Count: 39, Neg. LLF: 114.79648979864173
Iteration: 4, Func. Count: 52, Neg. LLF: 92.84668320316288
Iteration: 5, Func. Count: 64, Neg. LLF: 94.4474007188545
Iteration: 6, Func. Count: 77, Neg. LLF: 102.01037817225576
Iteration: 7, Func. Count: 90, Neg. LLF: 94.63960019749106
Iteration: 8, Func. Count: 103, Neg. LLF: 91.77123164045258
Iteration: 9, Func. Count: 116, Neg. LLF: 91.36154979140937
Iteration: 10, Func. Count: 128, Neg. LLF: 91.34957282535268
Iteration: 11, Func. Count: 140, Neg. LLF: 91.29587928559737
Iteration: 12, Func. Count: 152, Neg. LLF: 91.26001772507558
Iteration: 13, Func. Count: 164, Neg. LLF: 91.22632941140427
Iteration: 14, Func. Count: 176, Neg. LLF: 91.1746884083116
Iteration: 15, Func. Count: 188, Neg. LLF: 91.17127345049902
Iteration: 16, Func. Count: 200, Neg. LLF: 91.16273190123844
Iteration: 17, Func. Count: 212, Neg. LLF: 91.13932641841112
Iteration: 18, Func. Count: 224, Neg. LLF: 91.12487487797156
Iteration: 19, Func. Count: 236, Neg. LLF: 99.87419157722363
Iteration: 20, Func. Count: 250, Neg. LLF: 14553011827.465614
Iteration: 21, Func. Count: 266, Neg. LLF: 91.1174915060179
Iteration: 22, Func. Count: 278, Neg. LLF: 91.09353598364753
Iteration: 23, Func. Count: 290, Neg. LLF: 91.09106109877014
Iteration: 24, Func. Count: 302, Neg. LLF: 527.7964865469812
Optimization terminated successfully (Exit mode 0)
Current function value: 91.09106094233276
Iterations: 26
Function evaluations: 307
Gradient evaluations: 24
Iteration: 1, Func. Count: 10, Neg. LLF: 131.26226925669587
Iteration: 2, Func. Count: 22, Neg. LLF: 809.2586577933072
Iteration: 3, Func. Count: 32, Neg. LLF: 1306888.8498521762
Iteration: 4, Func. Count: 42, Neg. LLF: 95.1873679823351
Iteration: 5, Func. Count: 51, Neg. LLF: 93.68727855104545
Iteration: 6, Func. Count: 60, Neg. LLF: 93.40102978845194
Iteration: 7, Func. Count: 69, Neg. LLF: 93.28828471956221
Iteration: 8, Func. Count: 78, Neg. LLF: 93.36017340745134
Iteration: 9, Func. Count: 88, Neg. LLF: 93.24839921816391
Iteration: 10, Func. Count: 97, Neg. LLF: 93.2427652690182
Iteration: 11, Func. Count: 106, Neg. LLF: 93.24117041201585
Iteration: 12, Func. Count: 115, Neg. LLF: 93.24110200344644
Iteration: 13, Func. Count: 124, Neg. LLF: 93.24109200103491
Iteration: 14, Func. Count: 132, Neg. LLF: 93.24109225310119
Optimization terminated successfully (Exit mode 0)
Current function value: 93.24109200103491
Iterations: 14
Function evaluations: 132
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 20531703.711374424
Iteration: 2, Func. Count: 23, Neg. LLF: 164.19908492943188
Iteration: 3, Func. Count: 34, Neg. LLF: 112.65980434644479
Iteration: 4, Func. Count: 45, Neg. LLF: 103.7098950478067
Iteration: 5, Func. Count: 56, Neg. LLF: 103.03652896847765
Iteration: 6, Func. Count: 67, Neg. LLF: 103.72729813103602
Iteration: 7, Func. Count: 78, Neg. LLF: 97.43183734467273
Iteration: 8, Func. Count: 89, Neg. LLF: 95.91043798202011
Iteration: 9, Func. Count: 100, Neg. LLF: 94.4018331219139
Iteration: 10, Func. Count: 111, Neg. LLF: 93.10583825572604
Iteration: 11, Func. Count: 122, Neg. LLF: 92.00347093939665
Iteration: 12, Func. Count: 132, Neg. LLF: 91.65169970369658
Iteration: 13, Func. Count: 142, Neg. LLF: 91.13553292410249
Iteration: 14, Func. Count: 152, Neg. LLF: 91.09217804512824
Iteration: 15, Func. Count: 162, Neg. LLF: 91.0910643539608
Iteration: 16, Func. Count: 172, Neg. LLF: 91.09106094638004
Iteration: 17, Func. Count: 181, Neg. LLF: 91.09106094640956
Optimization terminated successfully (Exit mode 0)
Current function value: 91.09106094638004
Iterations: 17
Function evaluations: 181
Gradient evaluations: 17
Iteration: 1, Func. Count: 12, Neg. LLF: 20223199.217085607
Iteration: 2, Func. Count: 24, Neg. LLF: 242.02487781715715
Iteration: 3, Func. Count: 37, Neg. LLF: 95.43172734312884
Iteration: 4, Func. Count: 49, Neg. LLF: 106.43200394062806
Iteration: 5, Func. Count: 61, Neg. LLF: 92.44917647133508
Iteration: 6, Func. Count: 72, Neg. LLF: 126.19071827416045
Iteration: 7, Func. Count: 85, Neg. LLF: 95.51739818896479
Iteration: 8, Func. Count: 97, Neg. LLF: 91.60728291534394
Iteration: 9, Func. Count: 108, Neg. LLF: 91.25954468447097
Iteration: 10, Func. Count: 119, Neg. LLF: 91.24556307517214
Iteration: 11, Func. Count: 130, Neg. LLF: 91.24398024461168
Iteration: 12, Func. Count: 141, Neg. LLF: 91.24274029155383
Iteration: 13, Func. Count: 152, Neg. LLF: 91.23434837539091
Iteration: 14, Func. Count: 163, Neg. LLF: 91.20532544010801
Iteration: 15, Func. Count: 174, Neg. LLF: 91.18604457284506
Iteration: 16, Func. Count: 185, Neg. LLF: 91.14789233803675
Iteration: 17, Func. Count: 196, Neg. LLF: 91.1348634498209
Iteration: 18, Func. Count: 207, Neg. LLF: 91.12154222495077
Iteration: 19, Func. Count: 218, Neg. LLF: 91.09256420342476
Iteration: 20, Func. Count: 229, Neg. LLF: 91.09188537186085
Iteration: 21, Func. Count: 240, Neg. LLF: 91.09124215457409
Iteration: 22, Func. Count: 251, Neg. LLF: 91.09109144970874
Iteration: 23, Func. Count: 262, Neg. LLF: 94.12269606790994
Optimization terminated successfully (Exit mode 0)
Current function value: 91.09109144376843
Iterations: 24
Function evaluations: 267
Gradient evaluations: 23
Iteration: 1, Func. Count: 13, Neg. LLF: 19908449.362895306
Iteration: 2, Func. Count: 26, Neg. LLF: 147.52237260620987
Iteration: 3, Func. Count: 39, Neg. LLF: 110.35664040652395
Iteration: 4, Func. Count: 52, Neg. LLF: 94.13988952608916
Iteration: 5, Func. Count: 64, Neg. LLF: 93.55319370189163
Iteration: 6, Func. Count: 77, Neg. LLF: 188.2286250629066
Iteration: 7, Func. Count: 90, Neg. LLF: 94.71221095141392
Iteration: 8, Func. Count: 103, Neg. LLF: 91.85545213287996
Iteration: 9, Func. Count: 115, Neg. LLF: 91.81025652513881
Iteration: 10, Func. Count: 127, Neg. LLF: 91.78174828272937
Iteration: 11, Func. Count: 139, Neg. LLF: 91.7492374942326
Iteration: 12, Func. Count: 151, Neg. LLF: 91.73005757502845
Iteration: 13, Func. Count: 163, Neg. LLF: 91.7226200457816
Iteration: 14, Func. Count: 175, Neg. LLF: 91.721942653695
Iteration: 15, Func. Count: 187, Neg. LLF: 91.72063462520305
Iteration: 16, Func. Count: 199, Neg. LLF: 91.72037812259737
Iteration: 17, Func. Count: 211, Neg. LLF: 91.71988501296454
Iteration: 18, Func. Count: 223, Neg. LLF: 91.7198251222746
Iteration: 19, Func. Count: 235, Neg. LLF: 91.71981265501532
Iteration: 20, Func. Count: 246, Neg. LLF: 91.71981261274
Optimization terminated successfully (Exit mode 0)
Current function value: 91.71981265501532
Iterations: 20
Function evaluations: 246
Gradient evaluations: 20
Iteration: 1, Func. Count: 14, Neg. LLF: 20053857.12547882
Iteration: 2, Func. Count: 28, Neg. LLF: 122.88581141144887
Iteration: 3, Func. Count: 42, Neg. LLF: 110.45566989978951
Iteration: 4, Func. Count: 56, Neg. LLF: 95.89749798162391
Iteration: 5, Func. Count: 70, Neg. LLF: 95.20592021437277
Iteration: 6, Func. Count: 84, Neg. LLF: 95.61103889814403
Iteration: 7, Func. Count: 98, Neg. LLF: 93.0744380265434
Iteration: 8, Func. Count: 112, Neg. LLF: 92.3614701061489
Iteration: 9, Func. Count: 125, Neg. LLF: 93.08328460764791
Iteration: 10, Func. Count: 139, Neg. LLF: 91.98307334841809
Iteration: 11, Func. Count: 153, Neg. LLF: 91.70285083570974
Iteration: 12, Func. Count: 167, Neg. LLF: 92.47681653730298
Iteration: 13, Func. Count: 181, Neg. LLF: 91.51879735334695
Iteration: 14, Func. Count: 194, Neg. LLF: 91.49937838596277
Iteration: 15, Func. Count: 207, Neg. LLF: 91.4434610256687
Iteration: 16, Func. Count: 220, Neg. LLF: 91.42752563155102
Iteration: 17, Func. Count: 233, Neg. LLF: 91.42555055208722
Iteration: 18, Func. Count: 246, Neg. LLF: 91.42435380280712
Iteration: 19, Func. Count: 259, Neg. LLF: 91.42353008467988
Iteration: 20, Func. Count: 272, Neg. LLF: 91.42081693800904
Iteration: 21, Func. Count: 285, Neg. LLF: 91.0591203257591
Iteration: 22, Func. Count: 298, Neg. LLF: 90.64714819393807
Iteration: 23, Func. Count: 311, Neg. LLF: 119.16998877814582
Iteration: 24, Func. Count: 327, Neg. LLF: 2948.631487455595
Iteration: 25, Func. Count: 341, Neg. LLF: 103.39474026607233
Iteration: 26, Func. Count: 355, Neg. LLF: 90.16072457171649
Iteration: 27, Func. Count: 368, Neg. LLF: 90.04017680958088
Iteration: 28, Func. Count: 381, Neg. LLF: 90.87211345195342
Iteration: 29, Func. Count: 396, Neg. LLF: 90.01942695386633
Iteration: 30, Func. Count: 409, Neg. LLF: 89.99965737674276
Iteration: 31, Func. Count: 422, Neg. LLF: 89.9984653325849
Iteration: 32, Func. Count: 435, Neg. LLF: 89.99835419224517
Iteration: 33, Func. Count: 448, Neg. LLF: 89.99834980716527
Iteration: 34, Func. Count: 460, Neg. LLF: 89.99834971428449
Optimization terminated successfully (Exit mode 0)
Current function value: 89.99834980716527
Iterations: 35
Function evaluations: 460
Gradient evaluations: 34
Iteration: 1, Func. Count: 11, Neg. LLF: 112.27018385568809
Iteration: 2, Func. Count: 23, Neg. LLF: 230.7902567940866
Iteration: 3, Func. Count: 34, Neg. LLF: 3639249.7927531907
Iteration: 4, Func. Count: 45, Neg. LLF: 3666008.133466834
Iteration: 5, Func. Count: 56, Neg. LLF: 3702280.24039774
Iteration: 6, Func. Count: 67, Neg. LLF: 8440.225777327196
Iteration: 7, Func. Count: 78, Neg. LLF: 90638.97073531049
Iteration: 8, Func. Count: 89, Neg. LLF: 5231816.332868499
Iteration: 9, Func. Count: 100, Neg. LLF: 344.7038911666325
Iteration: 10, Func. Count: 111, Neg. LLF: 143.7964362081194
Iteration: 11, Func. Count: 122, Neg. LLF: 89.21428995972403
Iteration: 12, Func. Count: 132, Neg. LLF: 89.01311302791045
Iteration: 13, Func. Count: 142, Neg. LLF: 88.98630183025979
Iteration: 14, Func. Count: 153, Neg. LLF: 88.79164238603092
Iteration: 15, Func. Count: 163, Neg. LLF: 88.77849342710256
Iteration: 16, Func. Count: 173, Neg. LLF: 88.77634397182959
Iteration: 17, Func. Count: 183, Neg. LLF: 88.76946949105516
Iteration: 18, Func. Count: 193, Neg. LLF: 88.76528885260548
Iteration: 19, Func. Count: 203, Neg. LLF: 88.76350329963999
Iteration: 20, Func. Count: 213, Neg. LLF: 88.76337300985439
Iteration: 21, Func. Count: 223, Neg. LLF: 88.7633651732328
Iteration: 22, Func. Count: 233, Neg. LLF: 88.76336455777694
Optimization terminated successfully (Exit mode 0)
Current function value: 88.76336455777694
Iterations: 22
Function evaluations: 233
Gradient evaluations: 22
Iteration: 1, Func. Count: 12, Neg. LLF: 20685047.118018717
Iteration: 2, Func. Count: 25, Neg. LLF: 169.53525558236436
Iteration: 3, Func. Count: 37, Neg. LLF: 113.21085309242277
Iteration: 4, Func. Count: 49, Neg. LLF: 101.70809068082079
Iteration: 5, Func. Count: 61, Neg. LLF: 101.05244495131396
Iteration: 6, Func. Count: 73, Neg. LLF: 100.84157987971572
Iteration: 7, Func. Count: 85, Neg. LLF: 95.44602059356785
Iteration: 8, Func. Count: 97, Neg. LLF: 94.37625991850945
Iteration: 9, Func. Count: 109, Neg. LLF: 93.18321245080092
Iteration: 10, Func. Count: 121, Neg. LLF: 92.11519062664107
Iteration: 11, Func. Count: 132, Neg. LLF: 91.60047795742304
Iteration: 12, Func. Count: 143, Neg. LLF: 100.78377499837048
Iteration: 13, Func. Count: 155, Neg. LLF: 91.42282769568965
Iteration: 14, Func. Count: 166, Neg. LLF: 91.12095453223839
Iteration: 15, Func. Count: 177, Neg. LLF: 91.09132846055519
Iteration: 16, Func. Count: 188, Neg. LLF: 91.09108056619502
Iteration: 17, Func. Count: 199, Neg. LLF: 91.0910609481554
Iteration: 18, Func. Count: 209, Neg. LLF: 91.09106094829531
Optimization terminated successfully (Exit mode 0)
Current function value: 91.0910609481554
Iterations: 18
Function evaluations: 209
Gradient evaluations: 18
Iteration: 1, Func. Count: 13, Neg. LLF: 20394554.786427997
Iteration: 2, Func. Count: 26, Neg. LLF: 3054471.574717998
Iteration: 3, Func. Count: 39, Neg. LLF: 111.49583725856871
Iteration: 4, Func. Count: 52, Neg. LLF: 101.36515146200857
Iteration: 5, Func. Count: 65, Neg. LLF: 93.32992424684194
Iteration: 6, Func. Count: 78, Neg. LLF: 92.54280895175185
Iteration: 7, Func. Count: 91, Neg. LLF: 92.06965743813323
Iteration: 8, Func. Count: 103, Neg. LLF: 91.86603382248956
Iteration: 9, Func. Count: 115, Neg. LLF: 92.70258734991823
Iteration: 10, Func. Count: 128, Neg. LLF: 92.32149425947439
Iteration: 11, Func. Count: 141, Neg. LLF: 91.90301345026113
Iteration: 12, Func. Count: 154, Neg. LLF: 91.7151161941685
Iteration: 13, Func. Count: 166, Neg. LLF: 91.70486705877768
Iteration: 14, Func. Count: 178, Neg. LLF: 91.67449056539827
Iteration: 15, Func. Count: 190, Neg. LLF: 91.14230836910633
Iteration: 16, Func. Count: 202, Neg. LLF: 91.59597829461359
Iteration: 17, Func. Count: 215, Neg. LLF: 91.05159281562456
Iteration: 18, Func. Count: 228, Neg. LLF: 90.64386548400988
Iteration: 19, Func. Count: 240, Neg. LLF: 90.42320381806636
Iteration: 20, Func. Count: 252, Neg. LLF: 90.29726988438391
Iteration: 21, Func. Count: 266, Neg. LLF: 88.94754228583176
Iteration: 22, Func. Count: 278, Neg. LLF: 88.78384524746696
Iteration: 23, Func. Count: 290, Neg. LLF: 88.63216896970462
Iteration: 24, Func. Count: 302, Neg. LLF: 88.56642695226903
Iteration: 25, Func. Count: 314, Neg. LLF: 88.33657784329803
Iteration: 26, Func. Count: 326, Neg. LLF: 88.19340844539721
Iteration: 27, Func. Count: 338, Neg. LLF: 87.99204705870288
Iteration: 28, Func. Count: 350, Neg. LLF: 87.8124859235225
Iteration: 29, Func. Count: 362, Neg. LLF: 87.78677749913595
Iteration: 30, Func. Count: 374, Neg. LLF: 87.77517155853455
Iteration: 31, Func. Count: 386, Neg. LLF: 87.76157542752344
Iteration: 32, Func. Count: 398, Neg. LLF: 87.74552639841994
Iteration: 33, Func. Count: 410, Neg. LLF: 87.71733378997425
Iteration: 34, Func. Count: 422, Neg. LLF: 87.70052744884192
Iteration: 35, Func. Count: 434, Neg. LLF: 87.69198870813813
Iteration: 36, Func. Count: 446, Neg. LLF: 87.69170322444363
Iteration: 37, Func. Count: 458, Neg. LLF: 90.27392938177289
Iteration: 38, Func. Count: 472, Neg. LLF: 163514.8212244671
Iteration: 39, Func. Count: 487, Neg. LLF: 87.78338530748583
Iteration: 40, Func. Count: 501, Neg. LLF: 87.69339552535776
Iteration: 41, Func. Count: 514, Neg. LLF: 87.69045640356855
Iteration: 42, Func. Count: 525, Neg. LLF: 87.6904564031304
Optimization terminated successfully (Exit mode 0)
Current function value: 87.69045640356855
Iterations: 43
Function evaluations: 525
Gradient evaluations: 42
Iteration: 1, Func. Count: 14, Neg. LLF: 20119872.28790306
Iteration: 2, Func. Count: 28, Neg. LLF: 896032.1813698794
Iteration: 3, Func. Count: 42, Neg. LLF: 954192.7089850835
Iteration: 4, Func. Count: 56, Neg. LLF: 572828.7090621605
Iteration: 5, Func. Count: 70, Neg. LLF: 1138501.669019951
Iteration: 6, Func. Count: 84, Neg. LLF: 121.3268115095315
Iteration: 7, Func. Count: 98, Neg. LLF: 100.24577882403345
Iteration: 8, Func. Count: 112, Neg. LLF: 95.97834196748043
Iteration: 9, Func. Count: 126, Neg. LLF: 90.78169053423395
Iteration: 10, Func. Count: 139, Neg. LLF: 107.08799757422055
Iteration: 11, Func. Count: 153, Neg. LLF: 92.98292087736064
Iteration: 12, Func. Count: 167, Neg. LLF: 91.95643883843735
Iteration: 13, Func. Count: 182, Neg. LLF: 91.60801100467478
Iteration: 14, Func. Count: 196, Neg. LLF: 88.03261022338563
Iteration: 15, Func. Count: 209, Neg. LLF: 87.99513053662626
Iteration: 16, Func. Count: 222, Neg. LLF: 87.95458062169682
Iteration: 17, Func. Count: 235, Neg. LLF: 87.83308454121628
Iteration: 18, Func. Count: 248, Neg. LLF: 87.7805268947482
Iteration: 19, Func. Count: 261, Neg. LLF: 87.72891244261355
Iteration: 20, Func. Count: 274, Neg. LLF: 87.6932281302261
Iteration: 21, Func. Count: 287, Neg. LLF: 87.69056035830025
Iteration: 22, Func. Count: 300, Neg. LLF: 87.69047885120158
Iteration: 23, Func. Count: 313, Neg. LLF: 87.69047149809614
Iteration: 24, Func. Count: 326, Neg. LLF: 87.69047114616951
Optimization terminated successfully (Exit mode 0)
Current function value: 87.69047114616951
Iterations: 24
Function evaluations: 326
Gradient evaluations: 24
Iteration: 1, Func. Count: 15, Neg. LLF: 20286360.59394946
Iteration: 2, Func. Count: 30, Neg. LLF: 1570591.7804162386
Iteration: 3, Func. Count: 45, Neg. LLF: 724205.1061452574
Iteration: 4, Func. Count: 60, Neg. LLF: 1418768.9028011272
Iteration: 5, Func. Count: 75, Neg. LLF: 91.3211087463627
Iteration: 6, Func. Count: 89, Neg. LLF: 117.89088999370358
Iteration: 7, Func. Count: 104, Neg. LLF: 98.92199224247715
Iteration: 8, Func. Count: 121, Neg. LLF: 103.57451912202563
Iteration: 9, Func. Count: 136, Neg. LLF: 89.2133911433789
Iteration: 10, Func. Count: 151, Neg. LLF: 88.08533270855251
Iteration: 11, Func. Count: 165, Neg. LLF: 87.42744892204404
Iteration: 12, Func. Count: 179, Neg. LLF: 88.36017580252783
Iteration: 13, Func. Count: 194, Neg. LLF: 87.32628765676044
Iteration: 14, Func. Count: 208, Neg. LLF: 87.35956219311981
Iteration: 15, Func. Count: 223, Neg. LLF: 87.30075902096736
Iteration: 16, Func. Count: 237, Neg. LLF: 87.29824692147304
Iteration: 17, Func. Count: 251, Neg. LLF: 87.29818438784093
Iteration: 18, Func. Count: 265, Neg. LLF: 87.2981760337476
Iteration: 19, Func. Count: 279, Neg. LLF: 87.29811472737936
Iteration: 20, Func. Count: 293, Neg. LLF: 87.29810751748511
Iteration: 21, Func. Count: 307, Neg. LLF: 87.29810746899469
Optimization terminated successfully (Exit mode 0)
Current function value: 87.29810727881917
Iterations: 21
Function evaluations: 308
Gradient evaluations: 21
Iteration: 1, Func. Count: 12, Neg. LLF: 114.63210718671203
Iteration: 2, Func. Count: 25, Neg. LLF: 154.47902513589344
Iteration: 3, Func. Count: 37, Neg. LLF: 2423447.4481476042
Iteration: 4, Func. Count: 49, Neg. LLF: 3780578.8293335326
Iteration: 5, Func. Count: 61, Neg. LLF: 2205625.93131053
Iteration: 6, Func. Count: 73, Neg. LLF: 3544965.8053528946
Iteration: 7, Func. Count: 85, Neg. LLF: 32856677.083819717
Iteration: 8, Func. Count: 97, Neg. LLF: 2022434.995647863
Iteration: 9, Func. Count: 109, Neg. LLF: 262.0456371952408
Iteration: 10, Func. Count: 121, Neg. LLF: 93.11999274367832
Iteration: 11, Func. Count: 133, Neg. LLF: 98.4548798869917
Iteration: 12, Func. Count: 145, Neg. LLF: 88.93694970720843
Iteration: 13, Func. Count: 156, Neg. LLF: 88.81397804159593
Iteration: 14, Func. Count: 167, Neg. LLF: 89.0294573190914
Iteration: 15, Func. Count: 179, Neg. LLF: 88.7448772277341
Iteration: 16, Func. Count: 190, Neg. LLF: 88.72266947375448
Iteration: 17, Func. Count: 201, Neg. LLF: 88.70701791675926
Iteration: 18, Func. Count: 212, Neg. LLF: 88.66372051366675
Iteration: 19, Func. Count: 223, Neg. LLF: 88.62384822202766
Iteration: 20, Func. Count: 234, Neg. LLF: 88.61530096168426
Iteration: 21, Func. Count: 245, Neg. LLF: 88.61510522503264
Iteration: 22, Func. Count: 256, Neg. LLF: 88.61509473507864
Iteration: 23, Func. Count: 267, Neg. LLF: 88.61508495469124
Iteration: 24, Func. Count: 278, Neg. LLF: 88.6150914665552
Optimization terminated successfully (Exit mode 0)
Current function value: 88.61508559847968
Iterations: 25
Function evaluations: 279
Gradient evaluations: 24
Iteration: 1, Func. Count: 13, Neg. LLF: 20637000.3364935
Iteration: 2, Func. Count: 27, Neg. LLF: 169.55679337002354
Iteration: 3, Func. Count: 40, Neg. LLF: 113.4066465368012
Iteration: 4, Func. Count: 53, Neg. LLF: 101.29372520904833
Iteration: 5, Func. Count: 66, Neg. LLF: 100.2593258854477
Iteration: 6, Func. Count: 79, Neg. LLF: 100.39039657656232
Iteration: 7, Func. Count: 92, Neg. LLF: 94.89029273765993
Iteration: 8, Func. Count: 105, Neg. LLF: 93.95081556457079
Iteration: 9, Func. Count: 118, Neg. LLF: 92.82738729870937
Iteration: 10, Func. Count: 131, Neg. LLF: 91.81402775538837
Iteration: 11, Func. Count: 143, Neg. LLF: 91.68723999321017
Iteration: 12, Func. Count: 156, Neg. LLF: 91.11112350375598
Iteration: 13, Func. Count: 168, Neg. LLF: 91.09140736455637
Iteration: 14, Func. Count: 180, Neg. LLF: 91.09106141220447
Iteration: 15, Func. Count: 191, Neg. LLF: 91.09106141101422
Optimization terminated successfully (Exit mode 0)
Current function value: 91.09106141220447
Iterations: 15
Function evaluations: 191
Gradient evaluations: 15
Iteration: 1, Func. Count: 14, Neg. LLF: 20332718.875597432
Iteration: 2, Func. Count: 28, Neg. LLF: 2996767.654970097
Iteration: 3, Func. Count: 42, Neg. LLF: 107.64579601976455
Iteration: 4, Func. Count: 56, Neg. LLF: 101.5549437581482
Iteration: 5, Func. Count: 70, Neg. LLF: 93.24873043837255
Iteration: 6, Func. Count: 83, Neg. LLF: 92.6936277979774
Iteration: 7, Func. Count: 97, Neg. LLF: 93.67057532896197
Iteration: 8, Func. Count: 111, Neg. LLF: 92.10806242713204
Iteration: 9, Func. Count: 125, Neg. LLF: 91.82415397455355
Iteration: 10, Func. Count: 138, Neg. LLF: 91.80010859828668
Iteration: 11, Func. Count: 151, Neg. LLF: 91.78607145674002
Iteration: 12, Func. Count: 164, Neg. LLF: 91.78247325321588
Iteration: 13, Func. Count: 177, Neg. LLF: 91.78173660803323
Iteration: 14, Func. Count: 190, Neg. LLF: 91.78159337449941
Iteration: 15, Func. Count: 203, Neg. LLF: 91.78127593285765
Iteration: 16, Func. Count: 216, Neg. LLF: 91.77751580823825
Iteration: 17, Func. Count: 229, Neg. LLF: 91.80916134546749
Iteration: 18, Func. Count: 243, Neg. LLF: 91.81319632642119
Iteration: 19, Func. Count: 257, Neg. LLF: 91.76047990393258
Iteration: 20, Func. Count: 270, Neg. LLF: 91.69301839043341
Iteration: 21, Func. Count: 283, Neg. LLF: 91.48972262726538
Iteration: 22, Func. Count: 296, Neg. LLF: 90.94079750589441
Iteration: 23, Func. Count: 309, Neg. LLF: 128.53283747297485
Iteration: 24, Func. Count: 324, Neg. LLF: 96.40668320267261
Iteration: 25, Func. Count: 338, Neg. LLF: 91.53846323122647
Iteration: 26, Func. Count: 352, Neg. LLF: 91.13542269575849
Iteration: 27, Func. Count: 366, Neg. LLF: 88.87238032065805
Iteration: 28, Func. Count: 379, Neg. LLF: 88.33197356576217
Iteration: 29, Func. Count: 392, Neg. LLF: 88.29527951719251
Iteration: 30, Func. Count: 406, Neg. LLF: 90.72185423660919
Iteration: 31, Func. Count: 421, Neg. LLF: 88.09764911354166
Iteration: 32, Func. Count: 434, Neg. LLF: 95.03864630686307
Iteration: 33, Func. Count: 448, Neg. LLF: 88.78882871345526
Iteration: 34, Func. Count: 462, Neg. LLF: 88.13093239274818
Iteration: 35, Func. Count: 476, Neg. LLF: 90.61949367078202
Iteration: 36, Func. Count: 490, Neg. LLF: 87.6085578676787
Iteration: 37, Func. Count: 503, Neg. LLF: 87.5511090721641
Iteration: 38, Func. Count: 516, Neg. LLF: 87.52801965143274
Iteration: 39, Func. Count: 529, Neg. LLF: 87.76965458766375
Iteration: 40, Func. Count: 543, Neg. LLF: 87.48848629727951
Iteration: 41, Func. Count: 556, Neg. LLF: 87.45400220513052
Iteration: 42, Func. Count: 569, Neg. LLF: 87.39620421286452
Iteration: 43, Func. Count: 582, Neg. LLF: 87.38055544416981
Iteration: 44, Func. Count: 595, Neg. LLF: 87.36215900423264
Iteration: 45, Func. Count: 608, Neg. LLF: 87.34334353804513
Iteration: 46, Func. Count: 621, Neg. LLF: 87.31743617620187
Iteration: 47, Func. Count: 634, Neg. LLF: 87.29943486411253
Iteration: 48, Func. Count: 647, Neg. LLF: 87.27220692267008
Iteration: 49, Func. Count: 660, Neg. LLF: 87.26120172294995
Iteration: 50, Func. Count: 673, Neg. LLF: 87.25968521796773
Iteration: 51, Func. Count: 686, Neg. LLF: 87.2595517002728
Iteration: 52, Func. Count: 698, Neg. LLF: 87.25955168482479
Optimization terminated successfully (Exit mode 0)
Current function value: 87.2595517002728
Iterations: 52
Function evaluations: 698
Gradient evaluations: 52
Iteration: 1, Func. Count: 15, Neg. LLF: 20074497.838486504
Iteration: 2, Func. Count: 30, Neg. LLF: 1569576.36555113
Iteration: 3, Func. Count: 45, Neg. LLF: 938219.7745088905
Iteration: 4, Func. Count: 60, Neg. LLF: 579782.3835086949
Iteration: 5, Func. Count: 75, Neg. LLF: 188.18097102041403
Iteration: 6, Func. Count: 90, Neg. LLF: 3483.474521102613
Iteration: 7, Func. Count: 105, Neg. LLF: 1266143.6115492382
Iteration: 8, Func. Count: 120, Neg. LLF: 126.44325344924165
Iteration: 9, Func. Count: 135, Neg. LLF: 112.121256108602
Iteration: 10, Func. Count: 150, Neg. LLF: 100.62503902947692
Iteration: 11, Func. Count: 165, Neg. LLF: 112.69211872241185
Iteration: 12, Func. Count: 180, Neg. LLF: 93.85867665435144
Iteration: 13, Func. Count: 195, Neg. LLF: 94.16516615433012
Iteration: 14, Func. Count: 210, Neg. LLF: 90.48257028222854
Iteration: 15, Func. Count: 225, Neg. LLF: 89.6275584938992
Iteration: 16, Func. Count: 240, Neg. LLF: 88.60306009621294
Iteration: 17, Func. Count: 255, Neg. LLF: 88.30812862086628
Iteration: 18, Func. Count: 270, Neg. LLF: 88.92345357694168
Iteration: 19, Func. Count: 285, Neg. LLF: 87.38961011493286
Iteration: 20, Func. Count: 299, Neg. LLF: 87.33909585678698
Iteration: 21, Func. Count: 313, Neg. LLF: 87.27048040491418
Iteration: 22, Func. Count: 327, Neg. LLF: 87.26142680958677
Iteration: 23, Func. Count: 341, Neg. LLF: 87.25969737146686
Iteration: 24, Func. Count: 355, Neg. LLF: 87.25955759343036
Iteration: 25, Func. Count: 369, Neg. LLF: 87.25955265848262
Iteration: 26, Func. Count: 383, Neg. LLF: 87.25955161311902
Iteration: 27, Func. Count: 397, Neg. LLF: 87.26956359733306
Optimization terminated successfully (Exit mode 0)
Current function value: 87.2595515788083
Iterations: 28
Function evaluations: 400
Gradient evaluations: 27
Iteration: 1, Func. Count: 16, Neg. LLF: 20210182.62960972
Iteration: 2, Func. Count: 32, Neg. LLF: 1091368.2236101588
Iteration: 3, Func. Count: 48, Neg. LLF: 698760.8297836808
Iteration: 4, Func. Count: 64, Neg. LLF: 1455445.0213605005
Iteration: 5, Func. Count: 80, Neg. LLF: 90.13345744348996
Iteration: 6, Func. Count: 95, Neg. LLF: 99.44701464294661
Iteration: 7, Func. Count: 112, Neg. LLF: 104.69649626928503
Iteration: 8, Func. Count: 129, Neg. LLF: 106.31794644739382
Iteration: 9, Func. Count: 146, Neg. LLF: 87.85750941009348
Iteration: 10, Func. Count: 161, Neg. LLF: 88.9595212267024
Iteration: 11, Func. Count: 177, Neg. LLF: 87.3989989629322
Iteration: 12, Func. Count: 192, Neg. LLF: 87.32816500889386
Iteration: 13, Func. Count: 207, Neg. LLF: 87.30352240645676
Iteration: 14, Func. Count: 222, Neg. LLF: 87.29648230699358
Iteration: 15, Func. Count: 237, Neg. LLF: 87.28239331610729
Iteration: 16, Func. Count: 252, Neg. LLF: 93.25928114436546
Iteration: 17, Func. Count: 271, Neg. LLF: 90.39262977536322
Iteration: 18, Func. Count: 288, Neg. LLF: 87.52288443352623
Iteration: 19, Func. Count: 305, Neg. LLF: 87.44191206161194
Iteration: 20, Func. Count: 322, Neg. LLF: 87.28111741439179
Iteration: 21, Func. Count: 336, Neg. LLF: 87.28111734999362
Optimization terminated successfully (Exit mode 0)
Current function value: 87.28111741439179
Iterations: 22
Function evaluations: 336
Gradient evaluations: 21
Iteration: 1, Func. Count: 7, Neg. LLF: 135.23457538790765
Iteration: 2, Func. Count: 16, Neg. LLF: 87852897.76989487
Iteration: 3, Func. Count: 23, Neg. LLF: 4494620.562077321
Iteration: 4, Func. Count: 30, Neg. LLF: 3740313.0469594835
Iteration: 5, Func. Count: 37, Neg. LLF: 3708435.62117625
Iteration: 6, Func. Count: 44, Neg. LLF: 2933002.5341170323
Iteration: 7, Func. Count: 51, Neg. LLF: 4488621.9598474465
Iteration: 8, Func. Count: 58, Neg. LLF: 2928684.612307154
Iteration: 9, Func. Count: 65, Neg. LLF: 101.78847947266051
Iteration: 10, Func. Count: 72, Neg. LLF: 89.64510624295598
Iteration: 11, Func. Count: 78, Neg. LLF: 89.11183959063537
Iteration: 12, Func. Count: 84, Neg. LLF: 89.02480558993956
Iteration: 13, Func. Count: 90, Neg. LLF: 88.87393699512178
Iteration: 14, Func. Count: 96, Neg. LLF: 88.8380068258512
Iteration: 15, Func. Count: 102, Neg. LLF: 88.81990584344643
Iteration: 16, Func. Count: 108, Neg. LLF: 88.81737907275647
Iteration: 17, Func. Count: 114, Neg. LLF: 88.81737430838517
Iteration: 18, Func. Count: 119, Neg. LLF: 88.81737430839375
Optimization terminated successfully (Exit mode 0)
Current function value: 88.81737430838517
Iterations: 18
Function evaluations: 119
Gradient evaluations: 18
Iteration: 1, Func. Count: 5, Neg. LLF: 136.8309071486057
Iteration: 2, Func. Count: 13, Neg. LLF: 171.49270235336655
Iteration: 3, Func. Count: 19, Neg. LLF: 86.64887021228364
Iteration: 4, Func. Count: 23, Neg. LLF: 86.56902110919731
Iteration: 5, Func. Count: 28, Neg. LLF: 86.46471264048705
Iteration: 6, Func. Count: 32, Neg. LLF: 86.45849365798962
Iteration: 7, Func. Count: 36, Neg. LLF: 86.4584446336862
Iteration: 8, Func. Count: 40, Neg. LLF: 86.45844344023627
Iteration: 9, Func. Count: 43, Neg. LLF: 86.45844344019524
Optimization terminated successfully (Exit mode 0)
Current function value: 86.45844344023627
Iterations: 9
Function evaluations: 43
Gradient evaluations: 9
Iteration: 1, Func. Count: 6, Neg. LLF: 113.61419207117996
Iteration: 2, Func. Count: 13, Neg. LLF: 86.6570536853886
Iteration: 3, Func. Count: 20, Neg. LLF: 86.5667487431588
Iteration: 4, Func. Count: 26, Neg. LLF: 86.54491836133633
Iteration: 5, Func. Count: 31, Neg. LLF: 86.51959405630154
Iteration: 6, Func. Count: 36, Neg. LLF: 86.46429989660712
Iteration: 7, Func. Count: 41, Neg. LLF: 86.46159117948797
Iteration: 8, Func. Count: 46, Neg. LLF: 86.46092921751833
Iteration: 9, Func. Count: 51, Neg. LLF: 86.46050965062844
Iteration: 10, Func. Count: 56, Neg. LLF: 86.45956559217812
Iteration: 11, Func. Count: 61, Neg. LLF: 86.45883378039002
Iteration: 12, Func. Count: 66, Neg. LLF: 86.45849529898898
Iteration: 13, Func. Count: 71, Neg. LLF: 86.45844546303023
Iteration: 14, Func. Count: 76, Neg. LLF: 86.45844328725651
Iteration: 15, Func. Count: 80, Neg. LLF: 86.45844329545471
Optimization terminated successfully (Exit mode 0)
Current function value: 86.45844328725651
Iterations: 15
Function evaluations: 80
Gradient evaluations: 15
Iteration: 1, Func. Count: 7, Neg. LLF: 119.27594587640291
Iteration: 2, Func. Count: 15, Neg. LLF: 87.0070931136071
Iteration: 3, Func. Count: 22, Neg. LLF: 85.85924117077049
Iteration: 4, Func. Count: 28, Neg. LLF: 86.56086883353767
Iteration: 5, Func. Count: 35, Neg. LLF: 86.09446370906129
Iteration: 6, Func. Count: 42, Neg. LLF: 85.8145425656058
Iteration: 7, Func. Count: 49, Neg. LLF: 85.77159383907858
Iteration: 8, Func. Count: 56, Neg. LLF: 85.75835345357378
Iteration: 9, Func. Count: 62, Neg. LLF: 85.75811510278474
Iteration: 10, Func. Count: 68, Neg. LLF: 85.75811337575321
Iteration: 11, Func. Count: 73, Neg. LLF: 85.75811337578978
Optimization terminated successfully (Exit mode 0)
Current function value: 85.75811337575321
Iterations: 11
Function evaluations: 73
Gradient evaluations: 11
Iteration: 1, Func. Count: 8, Neg. LLF: 95.7128431360424
Iteration: 2, Func. Count: 17, Neg. LLF: 91.49858519507603
Iteration: 3, Func. Count: 26, Neg. LLF: 86.08813420070435
Iteration: 4, Func. Count: 33, Neg. LLF: 87.71955007070159
Iteration: 5, Func. Count: 41, Neg. LLF: 86.48572226353284
Iteration: 6, Func. Count: 49, Neg. LLF: 86.11506645077979
Iteration: 7, Func. Count: 57, Neg. LLF: 85.8235949791876
Iteration: 8, Func. Count: 64, Neg. LLF: 85.80994746893641
Iteration: 9, Func. Count: 71, Neg. LLF: 85.76735227891558
Iteration: 10, Func. Count: 78, Neg. LLF: 85.75821106243411
Iteration: 11, Func. Count: 85, Neg. LLF: 85.75811721626869
Iteration: 12, Func. Count: 92, Neg. LLF: 85.75811339849909
Iteration: 13, Func. Count: 98, Neg. LLF: 85.75811339928708
Optimization terminated successfully (Exit mode 0)
Current function value: 85.75811339849909
Iterations: 13
Function evaluations: 98
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 95.18916680848615
Iteration: 2, Func. Count: 19, Neg. LLF: 86.9127938170277
Iteration: 3, Func. Count: 28, Neg. LLF: 92.83652550578846
Iteration: 4, Func. Count: 37, Neg. LLF: 89.00518365115815
Iteration: 5, Func. Count: 46, Neg. LLF: 90.4560674516431
Iteration: 6, Func. Count: 55, Neg. LLF: 86.21888380713696
Iteration: 7, Func. Count: 64, Neg. LLF: 86.15233404619984
Iteration: 8, Func. Count: 73, Neg. LLF: 86.0726708433166
Iteration: 9, Func. Count: 82, Neg. LLF: 85.76165103441387
Iteration: 10, Func. Count: 90, Neg. LLF: 85.76032912197573
Iteration: 11, Func. Count: 98, Neg. LLF: 85.76034552229717
Iteration: 12, Func. Count: 107, Neg. LLF: 85.76030363396423
Iteration: 13, Func. Count: 116, Neg. LLF: 85.7581194533885
Iteration: 14, Func. Count: 124, Neg. LLF: 85.75811333168578
Iteration: 15, Func. Count: 131, Neg. LLF: 85.75811333897934
Optimization terminated successfully (Exit mode 0)
Current function value: 85.75811333168578
Iterations: 15
Function evaluations: 131
Gradient evaluations: 15
Iteration: 1, Func. Count: 6, Neg. LLF: 136.839945461006
Iteration: 2, Func. Count: 15, Neg. LLF: 170.86024206500323
Iteration: 3, Func. Count: 22, Neg. LLF: 86.6556984479608
Iteration: 4, Func. Count: 27, Neg. LLF: 86.50209840898088
Iteration: 5, Func. Count: 32, Neg. LLF: 86.47034163982997
Iteration: 6, Func. Count: 37, Neg. LLF: 86.45942853536879
Iteration: 7, Func. Count: 42, Neg. LLF: 86.45845962148941
Iteration: 8, Func. Count: 47, Neg. LLF: 86.45844343425226
Iteration: 9, Func. Count: 51, Neg. LLF: 86.45844352858116
Optimization terminated successfully (Exit mode 0)
Current function value: 86.45844343425226
Iterations: 9
Function evaluations: 51
Gradient evaluations: 9
Iteration: 1, Func. Count: 7, Neg. LLF: 94.33628339354888
Iteration: 2, Func. Count: 16, Neg. LLF: 100.0358375814623
Iteration: 3, Func. Count: 24, Neg. LLF: 86.77035257653267
Iteration: 4, Func. Count: 31, Neg. LLF: 86.55286464013415
Iteration: 5, Func. Count: 37, Neg. LLF: 86.5489069604372
Iteration: 6, Func. Count: 43, Neg. LLF: 86.74584984232833
Iteration: 7, Func. Count: 50, Neg. LLF: 86.54680838760548
Iteration: 8, Func. Count: 56, Neg. LLF: 86.54528038518475
Iteration: 9, Func. Count: 62, Neg. LLF: 86.54487373129808
Iteration: 10, Func. Count: 68, Neg. LLF: 86.54487390365956
Iteration: 11, Func. Count: 75, Neg. LLF: 86.54484676944342
Iteration: 12, Func. Count: 80, Neg. LLF: 86.54484676949798
Optimization terminated successfully (Exit mode 0)
Current function value: 86.54484676944342
Iterations: 12
Function evaluations: 80
Gradient evaluations: 12
Iteration: 1, Func. Count: 8, Neg. LLF: 91.2565185301556
Iteration: 2, Func. Count: 18, Neg. LLF: 14129649.450574042
Iteration: 3, Func. Count: 27, Neg. LLF: 90.0588780362921
Iteration: 4, Func. Count: 35, Neg. LLF: 88.22392755489574
Iteration: 5, Func. Count: 43, Neg. LLF: 87.75237845808347
Iteration: 6, Func. Count: 51, Neg. LLF: 86.99131846401335
Iteration: 7, Func. Count: 59, Neg. LLF: 86.54383124201222
Iteration: 8, Func. Count: 67, Neg. LLF: 99.87938987250388
Iteration: 9, Func. Count: 76, Neg. LLF: 86.02264691143206
Iteration: 10, Func. Count: 83, Neg. LLF: 86.06027976402987
Iteration: 11, Func. Count: 91, Neg. LLF: 89.55399628397022
Iteration: 12, Func. Count: 99, Neg. LLF: 85.82473497572963
Iteration: 13, Func. Count: 106, Neg. LLF: 85.78442311828076
Iteration: 14, Func. Count: 113, Neg. LLF: 85.76242783105513
Iteration: 15, Func. Count: 120, Neg. LLF: 85.75833671482634
Iteration: 16, Func. Count: 127, Neg. LLF: 85.75813521939764
Iteration: 17, Func. Count: 134, Neg. LLF: 85.75811717845954
Iteration: 18, Func. Count: 141, Neg. LLF: 85.75811348477805
Iteration: 19, Func. Count: 147, Neg. LLF: 85.75811348486828
Optimization terminated successfully (Exit mode 0)
Current function value: 85.75811348477805
Iterations: 19
Function evaluations: 147
Gradient evaluations: 19
Iteration: 1, Func. Count: 9, Neg. LLF: 91.33892434551478
Iteration: 2, Func. Count: 20, Neg. LLF: 14265716.418665698
Iteration: 3, Func. Count: 30, Neg. LLF: 88.59496988376978
Iteration: 4, Func. Count: 39, Neg. LLF: 88.5962615453285
Iteration: 5, Func. Count: 48, Neg. LLF: 88.04694996596511
Iteration: 6, Func. Count: 57, Neg. LLF: 87.71597511351095
Iteration: 7, Func. Count: 66, Neg. LLF: 87.44806706086212
Iteration: 8, Func. Count: 75, Neg. LLF: 87.12758346095832
Iteration: 9, Func. Count: 84, Neg. LLF: 86.18482105748437
Iteration: 10, Func. Count: 93, Neg. LLF: 133.35604866614582
Iteration: 11, Func. Count: 103, Neg. LLF: 85.98258820776566
Iteration: 12, Func. Count: 112, Neg. LLF: 85.86992684604928
Iteration: 13, Func. Count: 120, Neg. LLF: 89.28756647955721
Iteration: 14, Func. Count: 130, Neg. LLF: 88.93636706808616
Iteration: 15, Func. Count: 139, Neg. LLF: 85.79667273903071
Iteration: 16, Func. Count: 147, Neg. LLF: 85.79129901645793
Iteration: 17, Func. Count: 155, Neg. LLF: 85.78750132715669
Iteration: 18, Func. Count: 163, Neg. LLF: 85.77251945110167
Iteration: 19, Func. Count: 171, Neg. LLF: 85.76401512207512
Iteration: 20, Func. Count: 179, Neg. LLF: 85.75894503453345
Iteration: 21, Func. Count: 187, Neg. LLF: 85.75831220505721
Iteration: 22, Func. Count: 195, Neg. LLF: 85.75813442279133
Iteration: 23, Func. Count: 203, Neg. LLF: 85.75811436163083
Iteration: 24, Func. Count: 211, Neg. LLF: 85.75811335284372
Iteration: 25, Func. Count: 218, Neg. LLF: 85.7581133536068
Optimization terminated successfully (Exit mode 0)
Current function value: 85.75811335284372
Iterations: 25
Function evaluations: 218
Gradient evaluations: 25
Iteration: 1, Func. Count: 10, Neg. LLF: 91.36334291646428
Iteration: 2, Func. Count: 22, Neg. LLF: 275.29396670587
Iteration: 3, Func. Count: 33, Neg. LLF: 87.48532225731725
Iteration: 4, Func. Count: 43, Neg. LLF: 90.99095948728467
Iteration: 5, Func. Count: 53, Neg. LLF: 90.03424551254739
Iteration: 6, Func. Count: 63, Neg. LLF: 87.04971880915487
Iteration: 7, Func. Count: 73, Neg. LLF: 86.2015855874323
Iteration: 8, Func. Count: 83, Neg. LLF: 85.9278227520412
Iteration: 9, Func. Count: 92, Neg. LLF: 87.01244066545921
Iteration: 10, Func. Count: 102, Neg. LLF: 85.77320699724724
Iteration: 11, Func. Count: 111, Neg. LLF: 85.76248117024119
Iteration: 12, Func. Count: 120, Neg. LLF: 85.75948182814282
Iteration: 13, Func. Count: 129, Neg. LLF: 85.75813322285468
Iteration: 14, Func. Count: 138, Neg. LLF: 85.7581135488341
Iteration: 15, Func. Count: 146, Neg. LLF: 85.75811355612727
Optimization terminated successfully (Exit mode 0)
Current function value: 85.7581135488341
Iterations: 15
Function evaluations: 146
Gradient evaluations: 15
Iteration: 1, Func. Count: 7, Neg. LLF: 133.24596947714286
Iteration: 2, Func. Count: 17, Neg. LLF: 1293.7811456017205
Iteration: 3, Func. Count: 25, Neg. LLF: 4022283.62569778
Iteration: 4, Func. Count: 32, Neg. LLF: 86.17685125770011
Iteration: 5, Func. Count: 39, Neg. LLF: 85.52474988237316
Iteration: 6, Func. Count: 45, Neg. LLF: 85.51178062083056
Iteration: 7, Func. Count: 51, Neg. LLF: 85.50726032682199
Iteration: 8, Func. Count: 57, Neg. LLF: 85.50682664180094
Iteration: 9, Func. Count: 63, Neg. LLF: 85.50676574582309
Iteration: 10, Func. Count: 69, Neg. LLF: 85.50676288353051
Iteration: 11, Func. Count: 74, Neg. LLF: 85.50676288352533
Optimization terminated successfully (Exit mode 0)
Current function value: 85.50676288353051
Iterations: 11
Function evaluations: 74
Gradient evaluations: 11
Iteration: 1, Func. Count: 8, Neg. LLF: 91.88146661901997
Iteration: 2, Func. Count: 17, Neg. LLF: 162.60378391557538
Iteration: 3, Func. Count: 25, Neg. LLF: 87.36327402540122
Iteration: 4, Func. Count: 33, Neg. LLF: 88.28352311681522
Iteration: 5, Func. Count: 42, Neg. LLF: 86.10368152010582
Iteration: 6, Func. Count: 50, Neg. LLF: 85.52741418321361
Iteration: 7, Func. Count: 57, Neg. LLF: 85.51558061118016
Iteration: 8, Func. Count: 64, Neg. LLF: 85.50844148280711
Iteration: 9, Func. Count: 71, Neg. LLF: 85.50708835023327
Iteration: 10, Func. Count: 78, Neg. LLF: 85.50678914284914
Iteration: 11, Func. Count: 85, Neg. LLF: 85.5067630012784
Iteration: 12, Func. Count: 91, Neg. LLF: 85.5067630186072
Optimization terminated successfully (Exit mode 0)
Current function value: 85.5067630012784
Iterations: 12
Function evaluations: 91
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 89.8994175301069
Iteration: 2, Func. Count: 19, Neg. LLF: 7330428.544955107
Iteration: 3, Func. Count: 28, Neg. LLF: 89.48667862173649
Iteration: 4, Func. Count: 37, Neg. LLF: 85.86967553321338
Iteration: 5, Func. Count: 45, Neg. LLF: 86.59064241532099
Iteration: 6, Func. Count: 54, Neg. LLF: 85.54787963236824
Iteration: 7, Func. Count: 62, Neg. LLF: 85.51813283147123
Iteration: 8, Func. Count: 70, Neg. LLF: 85.50799961088093
Iteration: 9, Func. Count: 78, Neg. LLF: 85.50684115447663
Iteration: 10, Func. Count: 86, Neg. LLF: 85.50678522637887
Iteration: 11, Func. Count: 94, Neg. LLF: 85.50676358662993
Iteration: 12, Func. Count: 102, Neg. LLF: 85.5067626875609
Optimization terminated successfully (Exit mode 0)
Current function value: 85.5067626875609
Iterations: 12
Function evaluations: 102
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 90.02219265713593
Iteration: 2, Func. Count: 22, Neg. LLF: 7358064.251318225
Iteration: 3, Func. Count: 32, Neg. LLF: 89.9165261456191
Iteration: 4, Func. Count: 42, Neg. LLF: 88.74079363628398
Iteration: 5, Func. Count: 52, Neg. LLF: 85.75372695842792
Iteration: 6, Func. Count: 61, Neg. LLF: 85.53006301392215
Iteration: 7, Func. Count: 70, Neg. LLF: 85.50847596446955
Iteration: 8, Func. Count: 79, Neg. LLF: 85.50685491098602
Iteration: 9, Func. Count: 88, Neg. LLF: 85.50680779419089
Iteration: 10, Func. Count: 97, Neg. LLF: 85.50676532783845
Iteration: 11, Func. Count: 106, Neg. LLF: 85.50676316410535
Iteration: 12, Func. Count: 114, Neg. LLF: 85.5067631888704
Optimization terminated successfully (Exit mode 0)
Current function value: 85.50676316410535
Iterations: 12
Function evaluations: 114
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 92.21134539862396
Iteration: 2, Func. Count: 23, Neg. LLF: 1971465.410975352
Iteration: 3, Func. Count: 34, Neg. LLF: 87.58166058889111
Iteration: 4, Func. Count: 45, Neg. LLF: 97.56527603305278
Iteration: 5, Func. Count: 56, Neg. LLF: 93.08444781537133
Iteration: 6, Func. Count: 67, Neg. LLF: 85.90556584168202
Iteration: 7, Func. Count: 78, Neg. LLF: 87.53294905693464
Iteration: 8, Func. Count: 89, Neg. LLF: 84.7335677536318
Iteration: 9, Func. Count: 99, Neg. LLF: 84.47156777106945
Iteration: 10, Func. Count: 109, Neg. LLF: 84.8181712596441
Iteration: 11, Func. Count: 120, Neg. LLF: 84.41759307281609
Iteration: 12, Func. Count: 130, Neg. LLF: 84.41312712399846
Iteration: 13, Func. Count: 140, Neg. LLF: 84.41289172486586
Iteration: 14, Func. Count: 150, Neg. LLF: 84.41268359062073
Iteration: 15, Func. Count: 160, Neg. LLF: 84.41267701025394
Iteration: 16, Func. Count: 169, Neg. LLF: 84.41267699117566
Optimization terminated successfully (Exit mode 0)
Current function value: 84.41267701025394
Iterations: 16
Function evaluations: 169
Gradient evaluations: 16
Iteration: 1, Func. Count: 8, Neg. LLF: 128.41171840914828
Iteration: 2, Func. Count: 19, Neg. LLF: 86882165.16707061
Iteration: 3, Func. Count: 27, Neg. LLF: 1965709.7478758686
Iteration: 4, Func. Count: 35, Neg. LLF: 85.861633010865
Iteration: 5, Func. Count: 42, Neg. LLF: 105.56659660737131
Iteration: 6, Func. Count: 51, Neg. LLF: 85.59366144998675
Iteration: 7, Func. Count: 58, Neg. LLF: 85.52246849036491
Iteration: 8, Func. Count: 65, Neg. LLF: 85.51452051552376
Iteration: 9, Func. Count: 72, Neg. LLF: 85.50855752867977
Iteration: 10, Func. Count: 79, Neg. LLF: 85.50757036914143
Iteration: 11, Func. Count: 86, Neg. LLF: 85.50689760410248
Iteration: 12, Func. Count: 93, Neg. LLF: 85.50677418574658
Iteration: 13, Func. Count: 100, Neg. LLF: 85.50676286328864
Iteration: 14, Func. Count: 106, Neg. LLF: 85.50676289283896
Optimization terminated successfully (Exit mode 0)
Current function value: 85.50676286328864
Iterations: 14
Function evaluations: 106
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 89.92670133555559
Iteration: 2, Func. Count: 20, Neg. LLF: 7501947.928773307
Iteration: 3, Func. Count: 30, Neg. LLF: 88.3513456577375
Iteration: 4, Func. Count: 39, Neg. LLF: 86.47524411261152
Iteration: 5, Func. Count: 48, Neg. LLF: 85.92278384241848
Iteration: 6, Func. Count: 56, Neg. LLF: 92.41764683237265
Iteration: 7, Func. Count: 65, Neg. LLF: 85.53685213347335
Iteration: 8, Func. Count: 73, Neg. LLF: 85.51115856511952
Iteration: 9, Func. Count: 81, Neg. LLF: 85.51025703719932
Iteration: 10, Func. Count: 89, Neg. LLF: 85.50883760427402
Iteration: 11, Func. Count: 97, Neg. LLF: 85.50730234808054
Iteration: 12, Func. Count: 105, Neg. LLF: 85.50680978801945
Iteration: 13, Func. Count: 113, Neg. LLF: 85.50676393966415
Iteration: 14, Func. Count: 121, Neg. LLF: 85.50676266517944
Iteration: 15, Func. Count: 128, Neg. LLF: 85.50676268248175
Optimization terminated successfully (Exit mode 0)
Current function value: 85.50676266517944
Iterations: 15
Function evaluations: 128
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 90.29100166598077
Iteration: 2, Func. Count: 22, Neg. LLF: 15334856.69849094
Iteration: 3, Func. Count: 32, Neg. LLF: 89.1483205254172
Iteration: 4, Func. Count: 42, Neg. LLF: 85.95738666389077
Iteration: 5, Func. Count: 51, Neg. LLF: 85.75839105501545
Iteration: 6, Func. Count: 60, Neg. LLF: 86.07788413713672
Iteration: 7, Func. Count: 70, Neg. LLF: 85.69177059077178
Iteration: 8, Func. Count: 79, Neg. LLF: 85.9754098227733
Iteration: 9, Func. Count: 89, Neg. LLF: 86.01142514738049
Iteration: 10, Func. Count: 99, Neg. LLF: 85.69680940112451
Iteration: 11, Func. Count: 109, Neg. LLF: 85.64478557813173
Iteration: 12, Func. Count: 118, Neg. LLF: 85.64305884595296
Iteration: 13, Func. Count: 127, Neg. LLF: 85.64296032118091
Iteration: 14, Func. Count: 136, Neg. LLF: 85.64295620841472
Iteration: 15, Func. Count: 145, Neg. LLF: 85.64295542051256
Optimization terminated successfully (Exit mode 0)
Current function value: 85.64295542051256
Iterations: 15
Function evaluations: 145
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 89.79782385550953
Iteration: 2, Func. Count: 24, Neg. LLF: 15687926.221922023
Iteration: 3, Func. Count: 35, Neg. LLF: 103.19083253726187
Iteration: 4, Func. Count: 47, Neg. LLF: 87.68720150280251
Iteration: 5, Func. Count: 58, Neg. LLF: 91.30022606691122
Iteration: 6, Func. Count: 69, Neg. LLF: 85.86156062425914
Iteration: 7, Func. Count: 79, Neg. LLF: 85.81313596971634
Iteration: 8, Func. Count: 89, Neg. LLF: 85.80635623878067
Iteration: 9, Func. Count: 99, Neg. LLF: 85.80266916357796
Iteration: 10, Func. Count: 109, Neg. LLF: 85.79377488708992
Iteration: 11, Func. Count: 119, Neg. LLF: 85.62139733006038
Iteration: 12, Func. Count: 129, Neg. LLF: 85.54239447763715
Iteration: 13, Func. Count: 139, Neg. LLF: 85.50950613904642
Iteration: 14, Func. Count: 149, Neg. LLF: 85.5080416423174
Iteration: 15, Func. Count: 159, Neg. LLF: 85.50754655954748
Iteration: 16, Func. Count: 169, Neg. LLF: 85.5070649762326
Iteration: 17, Func. Count: 179, Neg. LLF: 85.5068457185283
Iteration: 18, Func. Count: 189, Neg. LLF: 85.50677906213299
Iteration: 19, Func. Count: 199, Neg. LLF: 85.50676703480806
Iteration: 20, Func. Count: 209, Neg. LLF: 85.50676336945152
Iteration: 21, Func. Count: 219, Neg. LLF: 85.50676270889156
Optimization terminated successfully (Exit mode 0)
Current function value: 85.50676270889156
Iterations: 21
Function evaluations: 219
Gradient evaluations: 21
Iteration: 1, Func. Count: 12, Neg. LLF: 89.77055926827455
Iteration: 2, Func. Count: 26, Neg. LLF: 17050933.41776226
Iteration: 3, Func. Count: 38, Neg. LLF: 5802348.517220724
Iteration: 4, Func. Count: 50, Neg. LLF: 94.64816282917981
Iteration: 5, Func. Count: 62, Neg. LLF: 86.5302454550276
Iteration: 6, Func. Count: 74, Neg. LLF: 85.20912194711795
Iteration: 7, Func. Count: 86, Neg. LLF: 84.75098555532755
Iteration: 8, Func. Count: 97, Neg. LLF: 88.88817788340143
Iteration: 9, Func. Count: 109, Neg. LLF: 84.61881668094539
Iteration: 10, Func. Count: 120, Neg. LLF: 84.56931900007166
Iteration: 11, Func. Count: 131, Neg. LLF: 84.45545064547983
Iteration: 12, Func. Count: 142, Neg. LLF: 84.44232019280479
Iteration: 13, Func. Count: 153, Neg. LLF: 84.42106995502797
Iteration: 14, Func. Count: 164, Neg. LLF: 84.416088361979
Iteration: 15, Func. Count: 175, Neg. LLF: 84.41283665560974
Iteration: 16, Func. Count: 186, Neg. LLF: 84.41268554500256
Iteration: 17, Func. Count: 197, Neg. LLF: 84.41267771548287
Iteration: 18, Func. Count: 208, Neg. LLF: 84.41267698775094
Optimization terminated successfully (Exit mode 0)
Current function value: 84.41267698775094
Iterations: 18
Function evaluations: 208
Gradient evaluations: 18
Iteration: 1, Func. Count: 5, Neg. LLF: 123.97607260849713
Iteration: 2, Func. Count: 13, Neg. LLF: 95.5946372098966
Iteration: 3, Func. Count: 18, Neg. LLF: 86.6460204740521
Iteration: 4, Func. Count: 22, Neg. LLF: 86.64746917201715
Iteration: 5, Func. Count: 27, Neg. LLF: 86.6386264940197
Iteration: 6, Func. Count: 31, Neg. LLF: 86.63738641941524
Iteration: 7, Func. Count: 35, Neg. LLF: 86.63730317614359
Iteration: 8, Func. Count: 38, Neg. LLF: 86.63730317615952
Optimization terminated successfully (Exit mode 0)
Current function value: 86.63730317614359
Iterations: 8
Function evaluations: 38
Gradient evaluations: 8
Iteration: 1, Func. Count: 6, Neg. LLF: 135.8579971132884
Iteration: 2, Func. Count: 13, Neg. LLF: 86.60633458347598
Iteration: 3, Func. Count: 18, Neg. LLF: 86.6120770143493
Iteration: 4, Func. Count: 24, Neg. LLF: 86.59646509745949
Iteration: 5, Func. Count: 29, Neg. LLF: 87.08827198954963
Iteration: 6, Func. Count: 35, Neg. LLF: 86.73494309758222
Iteration: 7, Func. Count: 41, Neg. LLF: 86.67607696493079
Iteration: 8, Func. Count: 47, Neg. LLF: 87.14038315732289
Iteration: 9, Func. Count: 53, Neg. LLF: 86.9895892950361
Iteration: 10, Func. Count: 59, Neg. LLF: 86.60107774867089
Iteration: 11, Func. Count: 65, Neg. LLF: 86.56184783294387
Iteration: 12, Func. Count: 71, Neg. LLF: 86.56115494026882
Iteration: 13, Func. Count: 77, Neg. LLF: 86.56109572286704
Iteration: 14, Func. Count: 81, Neg. LLF: 86.56109572290157
Optimization terminated successfully (Exit mode 0)
Current function value: 86.56109572286704
Iterations: 14
Function evaluations: 81
Gradient evaluations: 14
Iteration: 1, Func. Count: 7, Neg. LLF: 127.78112700730293
Iteration: 2, Func. Count: 15, Neg. LLF: 86.59622327929183
Iteration: 3, Func. Count: 21, Neg. LLF: 86.64613475269967
Iteration: 4, Func. Count: 28, Neg. LLF: 86.57603451770218
Iteration: 5, Func. Count: 34, Neg. LLF: 86.57572406902317
Iteration: 6, Func. Count: 41, Neg. LLF: 86.5806333376074
Iteration: 7, Func. Count: 48, Neg. LLF: 86.56708796923868
Iteration: 8, Func. Count: 54, Neg. LLF: 86.5643862340336
Iteration: 9, Func. Count: 60, Neg. LLF: 86.55966355115774
Iteration: 10, Func. Count: 66, Neg. LLF: 86.5582395717965
Iteration: 11, Func. Count: 72, Neg. LLF: 86.55804058162286
Iteration: 12, Func. Count: 78, Neg. LLF: 86.55799447501444
Iteration: 13, Func. Count: 84, Neg. LLF: 86.55799355226483
Optimization terminated successfully (Exit mode 0)
Current function value: 86.55799355226483
Iterations: 13
Function evaluations: 84
Gradient evaluations: 13
Iteration: 1, Func. Count: 8, Neg. LLF: 123.24908175609298
Iteration: 2, Func. Count: 17, Neg. LLF: 86.59256820998212
Iteration: 3, Func. Count: 24, Neg. LLF: 86.61686968344074
Iteration: 4, Func. Count: 32, Neg. LLF: 86.57819512756713
Iteration: 5, Func. Count: 39, Neg. LLF: 86.57613025037189
Iteration: 6, Func. Count: 46, Neg. LLF: 86.57487910359275
Iteration: 7, Func. Count: 53, Neg. LLF: 86.57395392476226
Iteration: 8, Func. Count: 60, Neg. LLF: 86.56883412867072
Iteration: 9, Func. Count: 67, Neg. LLF: 86.56803806124965
Iteration: 10, Func. Count: 74, Neg. LLF: 86.56782024976667
Iteration: 11, Func. Count: 81, Neg. LLF: 86.56769938249568
Iteration: 12, Func. Count: 88, Neg. LLF: 86.5673702904971
Iteration: 13, Func. Count: 95, Neg. LLF: 86.56610515685358
Iteration: 14, Func. Count: 102, Neg. LLF: 86.56409538906216
Iteration: 15, Func. Count: 109, Neg. LLF: 86.56123357911376
Iteration: 16, Func. Count: 116, Neg. LLF: 86.56111733876357
Iteration: 17, Func. Count: 123, Neg. LLF: 86.56109641732489
Iteration: 18, Func. Count: 130, Neg. LLF: 86.56109572890767
Optimization terminated successfully (Exit mode 0)
Current function value: 86.56109572890767
Iterations: 18
Function evaluations: 130
Gradient evaluations: 18
Iteration: 1, Func. Count: 9, Neg. LLF: 119.81232028223344
Iteration: 2, Func. Count: 19, Neg. LLF: 86.58876454338845
Iteration: 3, Func. Count: 27, Neg. LLF: 86.65348343131255
Iteration: 4, Func. Count: 36, Neg. LLF: 86.57941895652948
Iteration: 5, Func. Count: 44, Neg. LLF: 86.577678393348
Iteration: 6, Func. Count: 52, Neg. LLF: 86.5774169428439
Iteration: 7, Func. Count: 60, Neg. LLF: 86.57693612843134
Iteration: 8, Func. Count: 68, Neg. LLF: 86.57251484975191
Iteration: 9, Func. Count: 76, Neg. LLF: 86.57128189815933
Iteration: 10, Func. Count: 84, Neg. LLF: 86.57078900749278
Iteration: 11, Func. Count: 92, Neg. LLF: 86.56969049164212
Iteration: 12, Func. Count: 100, Neg. LLF: 86.56599353080199
Iteration: 13, Func. Count: 108, Neg. LLF: 86.5626731657054
Iteration: 14, Func. Count: 116, Neg. LLF: 86.56164791340416
Iteration: 15, Func. Count: 124, Neg. LLF: 86.56113763230233
Iteration: 16, Func. Count: 132, Neg. LLF: 86.56109905160069
Iteration: 17, Func. Count: 140, Neg. LLF: 86.56109804726891
Iteration: 18, Func. Count: 148, Neg. LLF: 86.56109568109771
Iteration: 19, Func. Count: 155, Neg. LLF: 86.56109568284552
Optimization terminated successfully (Exit mode 0)
Current function value: 86.56109568109771
Iterations: 19
Function evaluations: 155
Gradient evaluations: 19
Iteration: 1, Func. Count: 6, Neg. LLF: 128.9643415686191
Iteration: 2, Func. Count: 15, Neg. LLF: 124.3297306897694
Iteration: 3, Func. Count: 22, Neg. LLF: 86.64706699719864
Iteration: 4, Func. Count: 27, Neg. LLF: 86.58847568678222
Iteration: 5, Func. Count: 33, Neg. LLF: 86.46317279215388
Iteration: 6, Func. Count: 38, Neg. LLF: 86.45858545761877
Iteration: 7, Func. Count: 43, Neg. LLF: 86.45844653029923
Iteration: 8, Func. Count: 48, Neg. LLF: 86.45844332186374
Iteration: 9, Func. Count: 52, Neg. LLF: 86.45844332186455
Optimization terminated successfully (Exit mode 0)
Current function value: 86.45844332186374
Iterations: 9
Function evaluations: 52
Gradient evaluations: 9
Iteration: 1, Func. Count: 7, Neg. LLF: 134.81908018096752
Iteration: 2, Func. Count: 15, Neg. LLF: 86.69645276702627
Iteration: 3, Func. Count: 22, Neg. LLF: 86.68924122746134
Iteration: 4, Func. Count: 29, Neg. LLF: 86.57548125307093
Iteration: 5, Func. Count: 35, Neg. LLF: 86.52912577927952
Iteration: 6, Func. Count: 41, Neg. LLF: 86.4613318460561
Iteration: 7, Func. Count: 47, Neg. LLF: 86.46021765483468
Iteration: 8, Func. Count: 53, Neg. LLF: 86.45859053800469
Iteration: 9, Func. Count: 59, Neg. LLF: 86.45849247918015
Iteration: 10, Func. Count: 65, Neg. LLF: 86.4584589980995
Iteration: 11, Func. Count: 71, Neg. LLF: 86.45844728898658
Iteration: 12, Func. Count: 77, Neg. LLF: 86.45844348921518
Iteration: 13, Func. Count: 82, Neg. LLF: 86.45844349740936
Optimization terminated successfully (Exit mode 0)
Current function value: 86.45844348921518
Iterations: 13
Function evaluations: 82
Gradient evaluations: 13
Iteration: 1, Func. Count: 8, Neg. LLF: 121.71987077376711
Iteration: 2, Func. Count: 17, Neg. LLF: 87.03856378270672
Iteration: 3, Func. Count: 25, Neg. LLF: 86.33411687409027
Iteration: 4, Func. Count: 32, Neg. LLF: 86.1765624371953
Iteration: 5, Func. Count: 39, Neg. LLF: 94.99616186227351
Iteration: 6, Func. Count: 49, Neg. LLF: 90.82195647523656
Iteration: 7, Func. Count: 58, Neg. LLF: 85.7640242057227
Iteration: 8, Func. Count: 65, Neg. LLF: 85.75964744916263
Iteration: 9, Func. Count: 72, Neg. LLF: 85.75868774168669
Iteration: 10, Func. Count: 79, Neg. LLF: 85.75829728895849
Iteration: 11, Func. Count: 86, Neg. LLF: 85.7581438847421
Iteration: 12, Func. Count: 93, Neg. LLF: 85.75811764840385
Iteration: 13, Func. Count: 100, Neg. LLF: 85.75811372950315
Iteration: 14, Func. Count: 106, Neg. LLF: 85.75811372938054
Optimization terminated successfully (Exit mode 0)
Current function value: 85.75811372950315
Iterations: 14
Function evaluations: 106
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 97.29699147534114
Iteration: 2, Func. Count: 19, Neg. LLF: 86.59976412513801
Iteration: 3, Func. Count: 28, Neg. LLF: 86.41849740168577
Iteration: 4, Func. Count: 36, Neg. LLF: 87.08243336802573
Iteration: 5, Func. Count: 45, Neg. LLF: 89.45649574926422
Iteration: 6, Func. Count: 55, Neg. LLF: 86.40091926712705
Iteration: 7, Func. Count: 64, Neg. LLF: 85.76054982656773
Iteration: 8, Func. Count: 72, Neg. LLF: 85.8068546900385
Iteration: 9, Func. Count: 81, Neg. LLF: 85.7618784340341
Iteration: 10, Func. Count: 90, Neg. LLF: 85.75812151018623
Iteration: 11, Func. Count: 98, Neg. LLF: 85.7581141342009
Iteration: 12, Func. Count: 106, Neg. LLF: 85.7581133256409
Optimization terminated successfully (Exit mode 0)
Current function value: 85.7581133256409
Iterations: 12
Function evaluations: 106
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 102.40200410162278
Iteration: 2, Func. Count: 21, Neg. LLF: 86.0839869640936
Iteration: 3, Func. Count: 30, Neg. LLF: 85.99123964133993
Iteration: 4, Func. Count: 39, Neg. LLF: 87.2208013860042
Iteration: 5, Func. Count: 50, Neg. LLF: 102.98565832782826
Iteration: 6, Func. Count: 61, Neg. LLF: 87.4590050021939
Iteration: 7, Func. Count: 71, Neg. LLF: 86.0923789724557
Iteration: 8, Func. Count: 81, Neg. LLF: 85.76008114845523
Iteration: 9, Func. Count: 90, Neg. LLF: 85.75844313159477
Iteration: 10, Func. Count: 99, Neg. LLF: 85.75811853033258
Iteration: 11, Func. Count: 108, Neg. LLF: 85.75811424845739
Iteration: 12, Func. Count: 116, Neg. LLF: 85.75811425609523
Optimization terminated successfully (Exit mode 0)
Current function value: 85.75811424845739
Iterations: 12
Function evaluations: 116
Gradient evaluations: 12
Iteration: 1, Func. Count: 7, Neg. LLF: 128.90891972752456
Iteration: 2, Func. Count: 17, Neg. LLF: 113.9033479950378
Iteration: 3, Func. Count: 24, Neg. LLF: 86.64951814817576
Iteration: 4, Func. Count: 30, Neg. LLF: 88.24236816113836
Iteration: 5, Func. Count: 37, Neg. LLF: 86.5850351727494
Iteration: 6, Func. Count: 44, Neg. LLF: 86.4659445060086
Iteration: 7, Func. Count: 50, Neg. LLF: 86.458538441993
Iteration: 8, Func. Count: 56, Neg. LLF: 86.45844967541052
Iteration: 9, Func. Count: 62, Neg. LLF: 86.4584437238839
Iteration: 10, Func. Count: 67, Neg. LLF: 86.45844381821951
Optimization terminated successfully (Exit mode 0)
Current function value: 86.4584437238839
Iterations: 10
Function evaluations: 67
Gradient evaluations: 10
Iteration: 1, Func. Count: 8, Neg. LLF: 91.23826460835183
Iteration: 2, Func. Count: 18, Neg. LLF: 95.69238032280153
Iteration: 3, Func. Count: 27, Neg. LLF: 86.57404252162303
Iteration: 4, Func. Count: 34, Neg. LLF: 86.54375916304232
Iteration: 5, Func. Count: 41, Neg. LLF: 86.53361534153511
Iteration: 6, Func. Count: 48, Neg. LLF: 86.5104672384011
Iteration: 7, Func. Count: 55, Neg. LLF: 86.45934556667592
Iteration: 8, Func. Count: 62, Neg. LLF: 86.45868393326855
Iteration: 9, Func. Count: 69, Neg. LLF: 86.45844798439656
Iteration: 10, Func. Count: 76, Neg. LLF: 86.45844543418131
Iteration: 11, Func. Count: 83, Neg. LLF: 86.45844373732164
Iteration: 12, Func. Count: 89, Neg. LLF: 86.4584437454467
Optimization terminated successfully (Exit mode 0)
Current function value: 86.45844373732164
Iterations: 12
Function evaluations: 89
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 90.78705158356283
Iteration: 2, Func. Count: 20, Neg. LLF: 157.42807834365658
Iteration: 3, Func. Count: 30, Neg. LLF: 86.07478164037428
Iteration: 4, Func. Count: 38, Neg. LLF: 87.51484165564318
Iteration: 5, Func. Count: 47, Neg. LLF: 86.06439056428425
Iteration: 6, Func. Count: 56, Neg. LLF: 85.92000661011005
Iteration: 7, Func. Count: 65, Neg. LLF: 85.8185433299581
Iteration: 8, Func. Count: 73, Neg. LLF: 85.76113154073184
Iteration: 9, Func. Count: 81, Neg. LLF: 85.7613141731075
Iteration: 10, Func. Count: 90, Neg. LLF: 85.75813618996035
Iteration: 11, Func. Count: 98, Neg. LLF: 85.75811333803675
Iteration: 12, Func. Count: 105, Neg. LLF: 85.75811333800893
Optimization terminated successfully (Exit mode 0)
Current function value: 85.75811333803675
Iterations: 12
Function evaluations: 105
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 90.76885739542763
Iteration: 2, Func. Count: 22, Neg. LLF: 110.01759400020617
Iteration: 3, Func. Count: 33, Neg. LLF: 86.07137560221683
Iteration: 4, Func. Count: 42, Neg. LLF: 88.12265550557203
Iteration: 5, Func. Count: 52, Neg. LLF: 86.02796926048487
Iteration: 6, Func. Count: 62, Neg. LLF: 85.88753974490186
Iteration: 7, Func. Count: 72, Neg. LLF: 85.79809238055675
Iteration: 8, Func. Count: 81, Neg. LLF: 85.76171350834142
Iteration: 9, Func. Count: 90, Neg. LLF: 85.75827414861438
Iteration: 10, Func. Count: 99, Neg. LLF: 85.75811724941684
Iteration: 11, Func. Count: 108, Neg. LLF: 85.75811352481682
Iteration: 12, Func. Count: 116, Neg. LLF: 85.75811352543788
Optimization terminated successfully (Exit mode 0)
Current function value: 85.75811352481682
Iterations: 12
Function evaluations: 116
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 90.7802225300085
Iteration: 2, Func. Count: 24, Neg. LLF: 101.72243710746663
Iteration: 3, Func. Count: 36, Neg. LLF: 86.15246695271281
Iteration: 4, Func. Count: 46, Neg. LLF: 88.5101826419273
Iteration: 5, Func. Count: 57, Neg. LLF: 90.38521380046417
Iteration: 6, Func. Count: 68, Neg. LLF: 86.20961749333776
Iteration: 7, Func. Count: 79, Neg. LLF: 85.84882102918522
Iteration: 8, Func. Count: 90, Neg. LLF: 85.7611206688666
Iteration: 9, Func. Count: 100, Neg. LLF: 85.75895195665932
Iteration: 10, Func. Count: 110, Neg. LLF: 85.7602312086353
Iteration: 11, Func. Count: 121, Neg. LLF: 85.75812494844394
Iteration: 12, Func. Count: 131, Neg. LLF: 85.75811383373495
Iteration: 13, Func. Count: 141, Neg. LLF: 85.75811332416647
Optimization terminated successfully (Exit mode 0)
Current function value: 85.75811332416647
Iterations: 13
Function evaluations: 141
Gradient evaluations: 13
Iteration: 1, Func. Count: 8, Neg. LLF: 122.09442318521299
Iteration: 2, Func. Count: 18, Neg. LLF: 66505985.73421204
Iteration: 3, Func. Count: 26, Neg. LLF: 8863674.701515492
Iteration: 4, Func. Count: 34, Neg. LLF: 86.05575284761186
Iteration: 5, Func. Count: 41, Neg. LLF: 4017500.8674349464
Iteration: 6, Func. Count: 49, Neg. LLF: 86.93798662843926
Iteration: 7, Func. Count: 57, Neg. LLF: 85.66271673873558
Iteration: 8, Func. Count: 64, Neg. LLF: 85.52780455519796
Iteration: 9, Func. Count: 71, Neg. LLF: 85.50844702334577
Iteration: 10, Func. Count: 78, Neg. LLF: 85.50707384722406
Iteration: 11, Func. Count: 85, Neg. LLF: 85.50676532098758
Iteration: 12, Func. Count: 92, Neg. LLF: 85.50676282948828
Iteration: 13, Func. Count: 98, Neg. LLF: 85.50676282949222
Optimization terminated successfully (Exit mode 0)
Current function value: 85.50676282948828
Iterations: 13
Function evaluations: 98
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 91.72662719708596
Iteration: 2, Func. Count: 19, Neg. LLF: 163.05120744578
Iteration: 3, Func. Count: 28, Neg. LLF: 90.16547529363956
Iteration: 4, Func. Count: 37, Neg. LLF: 86.26202091340853
Iteration: 5, Func. Count: 45, Neg. LLF: 87.43476313310063
Iteration: 6, Func. Count: 54, Neg. LLF: 85.59094544365826
Iteration: 7, Func. Count: 62, Neg. LLF: 85.51949411162201
Iteration: 8, Func. Count: 70, Neg. LLF: 85.51015634187637
Iteration: 9, Func. Count: 78, Neg. LLF: 85.5069822547067
Iteration: 10, Func. Count: 86, Neg. LLF: 85.50679403496845
Iteration: 11, Func. Count: 94, Neg. LLF: 85.50676823990938
Iteration: 12, Func. Count: 102, Neg. LLF: 85.5067627139423
Iteration: 13, Func. Count: 109, Neg. LLF: 85.50676273124385
Optimization terminated successfully (Exit mode 0)
Current function value: 85.5067627139423
Iterations: 13
Function evaluations: 109
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 90.60828118663511
Iteration: 2, Func. Count: 22, Neg. LLF: 10853051.741413293
Iteration: 3, Func. Count: 32, Neg. LLF: 88.29501744258127
Iteration: 4, Func. Count: 42, Neg. LLF: 85.98553627498777
Iteration: 5, Func. Count: 51, Neg. LLF: 87.58290591660231
Iteration: 6, Func. Count: 61, Neg. LLF: 85.5540878059551
Iteration: 7, Func. Count: 70, Neg. LLF: 85.50732423834656
Iteration: 8, Func. Count: 79, Neg. LLF: 85.50697118309319
Iteration: 9, Func. Count: 88, Neg. LLF: 85.50681114089097
Iteration: 10, Func. Count: 97, Neg. LLF: 85.50676949350633
Iteration: 11, Func. Count: 106, Neg. LLF: 85.50676424732345
Iteration: 12, Func. Count: 115, Neg. LLF: 85.50676281959016
Iteration: 13, Func. Count: 123, Neg. LLF: 85.50676284631622
Optimization terminated successfully (Exit mode 0)
Current function value: 85.50676281959016
Iterations: 13
Function evaluations: 123
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 89.77839331014148
Iteration: 2, Func. Count: 24, Neg. LLF: 7507925.007240122
Iteration: 3, Func. Count: 35, Neg. LLF: 90.84455490390769
Iteration: 4, Func. Count: 46, Neg. LLF: 86.08808386892603
Iteration: 5, Func. Count: 57, Neg. LLF: 85.63399291534037
Iteration: 6, Func. Count: 67, Neg. LLF: 85.53651430997695
Iteration: 7, Func. Count: 77, Neg. LLF: 85.50795366992564
Iteration: 8, Func. Count: 87, Neg. LLF: 85.50690845244405
Iteration: 9, Func. Count: 97, Neg. LLF: 85.50683050059557
Iteration: 10, Func. Count: 107, Neg. LLF: 85.50677060395476
Iteration: 11, Func. Count: 117, Neg. LLF: 85.50676340957581
Iteration: 12, Func. Count: 127, Neg. LLF: 85.50676266788885
Optimization terminated successfully (Exit mode 0)
Current function value: 85.50676266788885
Iterations: 12
Function evaluations: 127
Gradient evaluations: 12
Iteration: 1, Func. Count: 12, Neg. LLF: 92.06438368971138
Iteration: 2, Func. Count: 25, Neg. LLF: 1974577.7965658803
Iteration: 3, Func. Count: 37, Neg. LLF: 88.53081629839642
Iteration: 4, Func. Count: 49, Neg. LLF: 94.30461415190628
Iteration: 5, Func. Count: 61, Neg. LLF: 85.91591642911519
Iteration: 6, Func. Count: 73, Neg. LLF: 88.73685058704982
Iteration: 7, Func. Count: 85, Neg. LLF: 85.8070759642787
Iteration: 8, Func. Count: 97, Neg. LLF: 84.45930529855315
Iteration: 9, Func. Count: 108, Neg. LLF: 84.61362242767545
Iteration: 10, Func. Count: 120, Neg. LLF: 84.43136165348955
Iteration: 11, Func. Count: 131, Neg. LLF: 84.4134110150299
Iteration: 12, Func. Count: 142, Neg. LLF: 84.41270589506436
Iteration: 13, Func. Count: 153, Neg. LLF: 84.41267761274166
Iteration: 14, Func. Count: 163, Neg. LLF: 84.41267759368154
Optimization terminated successfully (Exit mode 0)
Current function value: 84.41267761274166
Iterations: 14
Function evaluations: 163
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 122.78833676841556
Iteration: 2, Func. Count: 21, Neg. LLF: 51288450.93551117
Iteration: 3, Func. Count: 30, Neg. LLF: 7899881.269364915
Iteration: 4, Func. Count: 39, Neg. LLF: 85.83012556299889
Iteration: 5, Func. Count: 47, Neg. LLF: 97.36264848208734
Iteration: 6, Func. Count: 56, Neg. LLF: 85.62295013640154
Iteration: 7, Func. Count: 64, Neg. LLF: 85.50790840710711
Iteration: 8, Func. Count: 72, Neg. LLF: 85.50688715638358
Iteration: 9, Func. Count: 80, Neg. LLF: 85.50683478783222
Iteration: 10, Func. Count: 88, Neg. LLF: 85.50678090391392
Iteration: 11, Func. Count: 96, Neg. LLF: 85.50676469436439
Iteration: 12, Func. Count: 104, Neg. LLF: 85.50676278196299
Iteration: 13, Func. Count: 111, Neg. LLF: 85.50676281152496
Optimization terminated successfully (Exit mode 0)
Current function value: 85.50676278196299
Iterations: 13
Function evaluations: 111
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 88.22799857699258
Iteration: 2, Func. Count: 22, Neg. LLF: 17266556.391885355
Iteration: 3, Func. Count: 32, Neg. LLF: 95.11677869355172
Iteration: 4, Func. Count: 42, Neg. LLF: 87.00060520557375
Iteration: 5, Func. Count: 52, Neg. LLF: 85.75564697036074
Iteration: 6, Func. Count: 61, Neg. LLF: 85.52237579130443
Iteration: 7, Func. Count: 70, Neg. LLF: 85.51084325017213
Iteration: 8, Func. Count: 79, Neg. LLF: 85.50776252407759
Iteration: 9, Func. Count: 88, Neg. LLF: 85.50731003011873
Iteration: 10, Func. Count: 97, Neg. LLF: 85.50676428174596
Iteration: 11, Func. Count: 106, Neg. LLF: 85.50676266798393
Iteration: 12, Func. Count: 114, Neg. LLF: 85.50676268528989
Optimization terminated successfully (Exit mode 0)
Current function value: 85.50676266798393
Iterations: 12
Function evaluations: 114
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 88.13592937233099
Iteration: 2, Func. Count: 24, Neg. LLF: 17688520.227648754
Iteration: 3, Func. Count: 35, Neg. LLF: 172.85873683209806
Iteration: 4, Func. Count: 46, Neg. LLF: 87.77743870322077
Iteration: 5, Func. Count: 57, Neg. LLF: 85.85169960333633
Iteration: 6, Func. Count: 67, Neg. LLF: 85.58980649562204
Iteration: 7, Func. Count: 77, Neg. LLF: 85.5187044920631
Iteration: 8, Func. Count: 87, Neg. LLF: 85.50789997896432
Iteration: 9, Func. Count: 97, Neg. LLF: 85.50727244665924
Iteration: 10, Func. Count: 107, Neg. LLF: 85.50694568323316
Iteration: 11, Func. Count: 117, Neg. LLF: 85.50681231585553
Iteration: 12, Func. Count: 127, Neg. LLF: 85.50676521308328
Iteration: 13, Func. Count: 137, Neg. LLF: 85.50676272530843
Iteration: 14, Func. Count: 146, Neg. LLF: 85.50676275200846
Optimization terminated successfully (Exit mode 0)
Current function value: 85.50676272530843
Iterations: 14
Function evaluations: 146
Gradient evaluations: 14
Iteration: 1, Func. Count: 12, Neg. LLF: 88.40831026068489
Iteration: 2, Func. Count: 26, Neg. LLF: 16082466.988853317
Iteration: 3, Func. Count: 38, Neg. LLF: 7931418.726149438
Iteration: 4, Func. Count: 50, Neg. LLF: 88.07523862604802
Iteration: 5, Func. Count: 62, Neg. LLF: 85.65418709121313
Iteration: 6, Func. Count: 73, Neg. LLF: 85.55281011207964
Iteration: 7, Func. Count: 84, Neg. LLF: 85.51479523880676
Iteration: 8, Func. Count: 95, Neg. LLF: 85.50790131663608
Iteration: 9, Func. Count: 106, Neg. LLF: 85.50744689061305
Iteration: 10, Func. Count: 117, Neg. LLF: 85.50679539483966
Iteration: 11, Func. Count: 128, Neg. LLF: 85.5067647794188
Iteration: 12, Func. Count: 139, Neg. LLF: 85.50676265952629
Iteration: 13, Func. Count: 149, Neg. LLF: 85.50676268423699
Optimization terminated successfully (Exit mode 0)
Current function value: 85.50676265952629
Iterations: 13
Function evaluations: 149
Gradient evaluations: 13
Iteration: 1, Func. Count: 13, Neg. LLF: 88.4937393902521
Iteration: 2, Func. Count: 28, Neg. LLF: 17187873.846051484
Iteration: 3, Func. Count: 41, Neg. LLF: 7951204.677189125
Iteration: 4, Func. Count: 54, Neg. LLF: 126.69957013839719
Iteration: 5, Func. Count: 67, Neg. LLF: 85.70748537433808
Iteration: 6, Func. Count: 80, Neg. LLF: 85.2330648735365
Iteration: 7, Func. Count: 93, Neg. LLF: 84.80345133907606
Iteration: 8, Func. Count: 105, Neg. LLF: 85.25336158855822
Iteration: 9, Func. Count: 118, Neg. LLF: 84.53455273983069
Iteration: 10, Func. Count: 130, Neg. LLF: 84.49408143718377
Iteration: 11, Func. Count: 142, Neg. LLF: 84.47753886996675
Iteration: 12, Func. Count: 154, Neg. LLF: 84.43503985346881
Iteration: 13, Func. Count: 166, Neg. LLF: 84.4249500698374
Iteration: 14, Func. Count: 178, Neg. LLF: 84.41557245855387
Iteration: 15, Func. Count: 190, Neg. LLF: 84.41308611117356
Iteration: 16, Func. Count: 202, Neg. LLF: 84.41270253701573
Iteration: 17, Func. Count: 214, Neg. LLF: 84.41267739364234
Iteration: 18, Func. Count: 225, Neg. LLF: 84.41267737450359
Optimization terminated successfully (Exit mode 0)
Current function value: 84.41267739364234
Iterations: 18
Function evaluations: 225
Gradient evaluations: 18
Iteration: 1, Func. Count: 6, Neg. LLF: 127.86821819908242
Iteration: 2, Func. Count: 15, Neg. LLF: 102.28934791822182
Iteration: 3, Func. Count: 21, Neg. LLF: 86.6478696511205
Iteration: 4, Func. Count: 26, Neg. LLF: 86.64150781415587
Iteration: 5, Func. Count: 31, Neg. LLF: 86.6621571875959
Iteration: 6, Func. Count: 37, Neg. LLF: 86.6387279990803
Iteration: 7, Func. Count: 43, Neg. LLF: 86.63730427414762
Iteration: 8, Func. Count: 48, Neg. LLF: 86.63730312055867
Iteration: 9, Func. Count: 52, Neg. LLF: 86.6373032597485
Optimization terminated successfully (Exit mode 0)
Current function value: 86.63730312055867
Iterations: 9
Function evaluations: 52
Gradient evaluations: 9
Iteration: 1, Func. Count: 7, Neg. LLF: 136.6809856688764
Iteration: 2, Func. Count: 15, Neg. LLF: 86.6209955791814
Iteration: 3, Func. Count: 21, Neg. LLF: 86.60464903655682
Iteration: 4, Func. Count: 27, Neg. LLF: 86.59859936122179
Iteration: 5, Func. Count: 33, Neg. LLF: 86.5717327961303
Iteration: 6, Func. Count: 39, Neg. LLF: 86.60589156844009
Iteration: 7, Func. Count: 46, Neg. LLF: 86.5612148521564
Iteration: 8, Func. Count: 52, Neg. LLF: 86.56363170572217
Iteration: 9, Func. Count: 59, Neg. LLF: 86.56109570624851
Iteration: 10, Func. Count: 64, Neg. LLF: 86.56109570627343
Optimization terminated successfully (Exit mode 0)
Current function value: 86.56109570624851
Iterations: 10
Function evaluations: 64
Gradient evaluations: 10
Iteration: 1, Func. Count: 8, Neg. LLF: 129.64218494969487
Iteration: 2, Func. Count: 17, Neg. LLF: 86.60264937579332
Iteration: 3, Func. Count: 24, Neg. LLF: 86.57380618465724
Iteration: 4, Func. Count: 31, Neg. LLF: 86.5906305627977
Iteration: 5, Func. Count: 39, Neg. LLF: 86.57190191326103
Iteration: 6, Func. Count: 47, Neg. LLF: 86.5692517801857
Iteration: 7, Func. Count: 55, Neg. LLF: 86.56889214621955
Iteration: 8, Func. Count: 62, Neg. LLF: 86.56872136376346
Iteration: 9, Func. Count: 69, Neg. LLF: 86.56823114574475
Iteration: 10, Func. Count: 76, Neg. LLF: 86.56659879493533
Iteration: 11, Func. Count: 83, Neg. LLF: 86.56111704550041
Iteration: 12, Func. Count: 90, Neg. LLF: 86.56110654334442
Iteration: 13, Func. Count: 97, Neg. LLF: 86.56109685129633
Iteration: 14, Func. Count: 104, Neg. LLF: 86.56109603622804
Optimization terminated successfully (Exit mode 0)
Current function value: 86.56109603622804
Iterations: 14
Function evaluations: 104
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 124.8896127265627
Iteration: 2, Func. Count: 19, Neg. LLF: 86.59894944310501
Iteration: 3, Func. Count: 27, Neg. LLF: 86.58142954471883
Iteration: 4, Func. Count: 35, Neg. LLF: 86.58709931746452
Iteration: 5, Func. Count: 44, Neg. LLF: 86.57612105870456
Iteration: 6, Func. Count: 52, Neg. LLF: 86.57522802798859
Iteration: 7, Func. Count: 60, Neg. LLF: 86.57332336908142
Iteration: 8, Func. Count: 68, Neg. LLF: 86.57032436608111
Iteration: 9, Func. Count: 76, Neg. LLF: 86.56757490059218
Iteration: 10, Func. Count: 84, Neg. LLF: 86.56733951726272
Iteration: 11, Func. Count: 92, Neg. LLF: 86.56719160320202
Iteration: 12, Func. Count: 100, Neg. LLF: 86.56705162138694
Iteration: 13, Func. Count: 108, Neg. LLF: 86.56687414311959
Iteration: 14, Func. Count: 116, Neg. LLF: 86.56621243033126
Iteration: 15, Func. Count: 124, Neg. LLF: 86.56438536568768
Iteration: 16, Func. Count: 132, Neg. LLF: 86.56347351362948
Iteration: 17, Func. Count: 140, Neg. LLF: 86.56141661251459
Iteration: 18, Func. Count: 148, Neg. LLF: 86.56111216979355
Iteration: 19, Func. Count: 156, Neg. LLF: 86.56109592733347
Iteration: 20, Func. Count: 163, Neg. LLF: 86.56109592843147
Optimization terminated successfully (Exit mode 0)
Current function value: 86.56109592733347
Iterations: 20
Function evaluations: 163
Gradient evaluations: 20
Iteration: 1, Func. Count: 10, Neg. LLF: 121.31362951615795
Iteration: 2, Func. Count: 21, Neg. LLF: 86.59399390426208
Iteration: 3, Func. Count: 30, Neg. LLF: 86.58881249494459
Iteration: 4, Func. Count: 39, Neg. LLF: 86.58756256599716
Iteration: 5, Func. Count: 49, Neg. LLF: 86.57949192031862
Iteration: 6, Func. Count: 59, Neg. LLF: 86.57781558601464
Iteration: 7, Func. Count: 68, Neg. LLF: 86.57764758707758
Iteration: 8, Func. Count: 77, Neg. LLF: 86.5770854206341
Iteration: 9, Func. Count: 86, Neg. LLF: 86.57663170987772
Iteration: 10, Func. Count: 95, Neg. LLF: 86.57576865352227
Iteration: 11, Func. Count: 104, Neg. LLF: 86.57534984957178
Iteration: 12, Func. Count: 113, Neg. LLF: 86.57367544115823
Iteration: 13, Func. Count: 122, Neg. LLF: 86.57062914233279
Iteration: 14, Func. Count: 131, Neg. LLF: 86.56778925935082
Iteration: 15, Func. Count: 140, Neg. LLF: 86.56328393154281
Iteration: 16, Func. Count: 149, Neg. LLF: 86.5617295890289
Iteration: 17, Func. Count: 158, Neg. LLF: 86.56198706191479
Iteration: 18, Func. Count: 168, Neg. LLF: 86.56282951605893
Iteration: 19, Func. Count: 178, Neg. LLF: 213.86445630553345
Iteration: 20, Func. Count: 190, Neg. LLF: 86.56109758574325
Iteration: 21, Func. Count: 199, Neg. LLF: 86.56162842343161
Optimization terminated successfully (Exit mode 0)
Current function value: 86.56109671010907
Iterations: 22
Function evaluations: 201
Gradient evaluations: 21
Iteration: 1, Func. Count: 7, Neg. LLF: 124.71291873016534
Iteration: 2, Func. Count: 17, Neg. LLF: 95.64482376690722
Iteration: 3, Func. Count: 24, Neg. LLF: 86.64596596259595
Iteration: 4, Func. Count: 30, Neg. LLF: 86.69754400230558
Iteration: 5, Func. Count: 37, Neg. LLF: 86.5275553722819
Iteration: 6, Func. Count: 44, Neg. LLF: 86.4614700735688
Iteration: 7, Func. Count: 50, Neg. LLF: 86.45845856205652
Iteration: 8, Func. Count: 56, Neg. LLF: 86.45844358873745
Iteration: 9, Func. Count: 61, Neg. LLF: 86.45844358867996
Optimization terminated successfully (Exit mode 0)
Current function value: 86.45844358873745
Iterations: 9
Function evaluations: 61
Gradient evaluations: 9
Iteration: 1, Func. Count: 8, Neg. LLF: 129.31455174625887
Iteration: 2, Func. Count: 17, Neg. LLF: 86.76772412256827
Iteration: 3, Func. Count: 25, Neg. LLF: 86.64063175613916
Iteration: 4, Func. Count: 33, Neg. LLF: 86.60087135366743
Iteration: 5, Func. Count: 41, Neg. LLF: 86.54063844293269
Iteration: 6, Func. Count: 48, Neg. LLF: 86.53684581681706
Iteration: 7, Func. Count: 55, Neg. LLF: 86.46126893557975
Iteration: 8, Func. Count: 62, Neg. LLF: 86.4590378487762
Iteration: 9, Func. Count: 69, Neg. LLF: 86.458449248441
Iteration: 10, Func. Count: 76, Neg. LLF: 86.45844524654497
Iteration: 11, Func. Count: 83, Neg. LLF: 86.45844388167289
Iteration: 12, Func. Count: 90, Neg. LLF: 86.45844329601299
Optimization terminated successfully (Exit mode 0)
Current function value: 86.45844329601299
Iterations: 12
Function evaluations: 90
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 122.07154778634028
Iteration: 2, Func. Count: 19, Neg. LLF: 87.16614770986205
Iteration: 3, Func. Count: 28, Neg. LLF: 86.05031691171814
Iteration: 4, Func. Count: 36, Neg. LLF: 86.26609236306014
Iteration: 5, Func. Count: 45, Neg. LLF: 85.90254965467373
Iteration: 6, Func. Count: 53, Neg. LLF: 85.92228156204686
Iteration: 7, Func. Count: 62, Neg. LLF: 85.89293673077928
Iteration: 8, Func. Count: 71, Neg. LLF: 86.0825389582277
Iteration: 9, Func. Count: 80, Neg. LLF: 85.76310503022836
Iteration: 10, Func. Count: 88, Neg. LLF: 85.7583170718552
Iteration: 11, Func. Count: 96, Neg. LLF: 85.7581280174979
Iteration: 12, Func. Count: 104, Neg. LLF: 85.75811337275715
Iteration: 13, Func. Count: 111, Neg. LLF: 85.75811337276254
Optimization terminated successfully (Exit mode 0)
Current function value: 85.75811337275715
Iterations: 13
Function evaluations: 111
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 95.09368624195153
Iteration: 2, Func. Count: 21, Neg. LLF: 87.28309899807691
Iteration: 3, Func. Count: 31, Neg. LLF: 86.17361418890486
Iteration: 4, Func. Count: 40, Neg. LLF: 86.69478585913626
Iteration: 5, Func. Count: 50, Neg. LLF: 93.01997092475662
Iteration: 6, Func. Count: 61, Neg. LLF: 86.39114805685604
Iteration: 7, Func. Count: 71, Neg. LLF: 85.76087912338589
Iteration: 8, Func. Count: 80, Neg. LLF: 85.76249562823695
Iteration: 9, Func. Count: 90, Neg. LLF: 85.75975398384554
Iteration: 10, Func. Count: 100, Neg. LLF: 85.75812736076868
Iteration: 11, Func. Count: 109, Neg. LLF: 85.75811367318786
Iteration: 12, Func. Count: 117, Neg. LLF: 85.75811367396474
Optimization terminated successfully (Exit mode 0)
Current function value: 85.75811367318786
Iterations: 12
Function evaluations: 117
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 99.02491375391925
Iteration: 2, Func. Count: 23, Neg. LLF: 86.31116839509252
Iteration: 3, Func. Count: 33, Neg. LLF: 86.33063458101945
Iteration: 4, Func. Count: 44, Neg. LLF: 88.54102785430545
Iteration: 5, Func. Count: 55, Neg. LLF: 93.70274040953706
Iteration: 6, Func. Count: 67, Neg. LLF: 85.9806973883347
Iteration: 7, Func. Count: 78, Neg. LLF: 85.81712008619574
Iteration: 8, Func. Count: 89, Neg. LLF: 85.78638193387846
Iteration: 9, Func. Count: 100, Neg. LLF: 85.76417058989152
Iteration: 10, Func. Count: 111, Neg. LLF: 85.75813403976007
Iteration: 11, Func. Count: 121, Neg. LLF: 85.75811521830825
Iteration: 12, Func. Count: 131, Neg. LLF: 85.7581133266007
Iteration: 13, Func. Count: 140, Neg. LLF: 85.75811333387038
Optimization terminated successfully (Exit mode 0)
Current function value: 85.7581133266007
Iterations: 13
Function evaluations: 140
Gradient evaluations: 13
Iteration: 1, Func. Count: 8, Neg. LLF: 124.61855945005567
Iteration: 2, Func. Count: 19, Neg. LLF: 90.41369926240614
Iteration: 3, Func. Count: 27, Neg. LLF: 86.64576555406077
Iteration: 4, Func. Count: 34, Neg. LLF: 96.09152790936332
Iteration: 5, Func. Count: 42, Neg. LLF: 86.48267590260582
Iteration: 6, Func. Count: 49, Neg. LLF: 86.46269812270882
Iteration: 7, Func. Count: 56, Neg. LLF: 86.45882138306231
Iteration: 8, Func. Count: 63, Neg. LLF: 86.4584665096003
Iteration: 9, Func. Count: 70, Neg. LLF: 86.45844467249822
Iteration: 10, Func. Count: 77, Neg. LLF: 86.45844333029883
Iteration: 11, Func. Count: 83, Neg. LLF: 86.45844323597025
Optimization terminated successfully (Exit mode 0)
Current function value: 86.45844333029883
Iterations: 11
Function evaluations: 83
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 90.97556546402201
Iteration: 2, Func. Count: 20, Neg. LLF: 96.75516223174698
Iteration: 3, Func. Count: 30, Neg. LLF: 86.58923159925806
Iteration: 4, Func. Count: 38, Neg. LLF: 86.55714251871089
Iteration: 5, Func. Count: 46, Neg. LLF: 86.54367352864138
Iteration: 6, Func. Count: 54, Neg. LLF: 86.53670967214107
Iteration: 7, Func. Count: 62, Neg. LLF: 86.52801790359182
Iteration: 8, Func. Count: 70, Neg. LLF: 86.47785033704004
Iteration: 9, Func. Count: 78, Neg. LLF: 86.46786837029272
Iteration: 10, Func. Count: 86, Neg. LLF: 86.45863738481178
Iteration: 11, Func. Count: 94, Neg. LLF: 86.4584763662669
Iteration: 12, Func. Count: 102, Neg. LLF: 86.45845698746398
Iteration: 13, Func. Count: 110, Neg. LLF: 86.45844507313663
Iteration: 14, Func. Count: 118, Neg. LLF: 86.45844336481063
Iteration: 15, Func. Count: 125, Neg. LLF: 86.45844337298641
Optimization terminated successfully (Exit mode 0)
Current function value: 86.45844336481063
Iterations: 15
Function evaluations: 125
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 90.71908781473788
Iteration: 2, Func. Count: 22, Neg. LLF: 185.1525460964298
Iteration: 3, Func. Count: 33, Neg. LLF: 85.97430357989184
Iteration: 4, Func. Count: 42, Neg. LLF: 88.58569337647202
Iteration: 5, Func. Count: 52, Neg. LLF: 86.00546610627524
Iteration: 6, Func. Count: 62, Neg. LLF: 86.7469899782003
Iteration: 7, Func. Count: 72, Neg. LLF: 85.98473164367795
Iteration: 8, Func. Count: 82, Neg. LLF: 85.75958904182802
Iteration: 9, Func. Count: 91, Neg. LLF: 85.7583204229642
Iteration: 10, Func. Count: 100, Neg. LLF: 85.758115588395
Iteration: 11, Func. Count: 109, Neg. LLF: 85.75811334546287
Iteration: 12, Func. Count: 117, Neg. LLF: 85.75811334540238
Optimization terminated successfully (Exit mode 0)
Current function value: 85.75811334546287
Iterations: 12
Function evaluations: 117
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 90.72703526612071
Iteration: 2, Func. Count: 24, Neg. LLF: 115.8272714108594
Iteration: 3, Func. Count: 36, Neg. LLF: 86.01123130926393
Iteration: 4, Func. Count: 46, Neg. LLF: 88.2754551852701
Iteration: 5, Func. Count: 57, Neg. LLF: 86.72088190388168
Iteration: 6, Func. Count: 68, Neg. LLF: 85.99108226224949
Iteration: 7, Func. Count: 79, Neg. LLF: 85.84576343733416
Iteration: 8, Func. Count: 90, Neg. LLF: 85.78700957394247
Iteration: 9, Func. Count: 101, Neg. LLF: 85.75852400057397
Iteration: 10, Func. Count: 111, Neg. LLF: 85.75819490753997
Iteration: 11, Func. Count: 121, Neg. LLF: 85.75811811192283
Iteration: 12, Func. Count: 131, Neg. LLF: 85.75811348317673
Iteration: 13, Func. Count: 140, Neg. LLF: 85.75811348399561
Optimization terminated successfully (Exit mode 0)
Current function value: 85.75811348317673
Iterations: 13
Function evaluations: 140
Gradient evaluations: 13
Iteration: 1, Func. Count: 12, Neg. LLF: 90.7525738488893
Iteration: 2, Func. Count: 26, Neg. LLF: 105.18777026503736
Iteration: 3, Func. Count: 39, Neg. LLF: 86.13382601095783
Iteration: 4, Func. Count: 50, Neg. LLF: 88.69908932058065
Iteration: 5, Func. Count: 62, Neg. LLF: 89.66149565032123
Iteration: 6, Func. Count: 74, Neg. LLF: 85.98338921892181
Iteration: 7, Func. Count: 86, Neg. LLF: 85.80298856121753
Iteration: 8, Func. Count: 97, Neg. LLF: 85.77855576558245
Iteration: 9, Func. Count: 108, Neg. LLF: 85.762448334048
Iteration: 10, Func. Count: 119, Neg. LLF: 85.7592393955397
Iteration: 11, Func. Count: 130, Neg. LLF: 85.75818377139204
Iteration: 12, Func. Count: 141, Neg. LLF: 85.7581189404782
Iteration: 13, Func. Count: 152, Neg. LLF: 85.75811359805277
Iteration: 14, Func. Count: 162, Neg. LLF: 85.7581136054744
Optimization terminated successfully (Exit mode 0)
Current function value: 85.75811359805277
Iterations: 14
Function evaluations: 162
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 118.7270242626552
Iteration: 2, Func. Count: 20, Neg. LLF: 28299928.470552515
Iteration: 3, Func. Count: 29, Neg. LLF: 7854974.905557474
Iteration: 4, Func. Count: 38, Neg. LLF: 112.10591637514068
Iteration: 5, Func. Count: 47, Neg. LLF: 86.70870837229397
Iteration: 6, Func. Count: 56, Neg. LLF: 85.701068706179
Iteration: 7, Func. Count: 64, Neg. LLF: 85.5592544951278
Iteration: 8, Func. Count: 72, Neg. LLF: 85.51527678358765
Iteration: 9, Func. Count: 80, Neg. LLF: 85.50880834945494
Iteration: 10, Func. Count: 88, Neg. LLF: 85.50702763613684
Iteration: 11, Func. Count: 96, Neg. LLF: 85.5067637622138
Iteration: 12, Func. Count: 104, Neg. LLF: 85.50676268850717
Iteration: 13, Func. Count: 111, Neg. LLF: 85.50676268851075
Optimization terminated successfully (Exit mode 0)
Current function value: 85.50676268850717
Iterations: 13
Function evaluations: 111
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 92.13098582323263
Iteration: 2, Func. Count: 21, Neg. LLF: 155.0637483973645
Iteration: 3, Func. Count: 31, Neg. LLF: 87.68945028280997
Iteration: 4, Func. Count: 41, Neg. LLF: 86.43079784893749
Iteration: 5, Func. Count: 51, Neg. LLF: 86.29163773685175
Iteration: 6, Func. Count: 61, Neg. LLF: 85.52727254179536
Iteration: 7, Func. Count: 70, Neg. LLF: 85.51355951415188
Iteration: 8, Func. Count: 79, Neg. LLF: 85.50773828530721
Iteration: 9, Func. Count: 88, Neg. LLF: 85.50679550104468
Iteration: 10, Func. Count: 97, Neg. LLF: 85.5067627248867
Iteration: 11, Func. Count: 105, Neg. LLF: 85.50676274220355
Optimization terminated successfully (Exit mode 0)
Current function value: 85.5067627248867
Iterations: 11
Function evaluations: 105
Gradient evaluations: 11
Iteration: 1, Func. Count: 11, Neg. LLF: 90.60350340801625
Iteration: 2, Func. Count: 24, Neg. LLF: 7584703.809433601
Iteration: 3, Func. Count: 35, Neg. LLF: 88.14651773404726
Iteration: 4, Func. Count: 46, Neg. LLF: 86.0704962288862
Iteration: 5, Func. Count: 56, Neg. LLF: 86.87456868641526
Iteration: 6, Func. Count: 67, Neg. LLF: 85.52808212253257
Iteration: 7, Func. Count: 77, Neg. LLF: 85.50904152579105
Iteration: 8, Func. Count: 87, Neg. LLF: 85.50724133866676
Iteration: 9, Func. Count: 97, Neg. LLF: 85.50686160744894
Iteration: 10, Func. Count: 107, Neg. LLF: 85.50677554905428
Iteration: 11, Func. Count: 117, Neg. LLF: 85.50676791403778
Iteration: 12, Func. Count: 127, Neg. LLF: 85.50676316759433
Iteration: 13, Func. Count: 136, Neg. LLF: 85.50676319434734
Optimization terminated successfully (Exit mode 0)
Current function value: 85.50676316759433
Iterations: 13
Function evaluations: 136
Gradient evaluations: 13
Iteration: 1, Func. Count: 12, Neg. LLF: 90.17091584852665
Iteration: 2, Func. Count: 26, Neg. LLF: 6180068.687293826
Iteration: 3, Func. Count: 38, Neg. LLF: 89.26441226297952
Iteration: 4, Func. Count: 50, Neg. LLF: 86.69897156905357
Iteration: 5, Func. Count: 62, Neg. LLF: 85.60051745123673
Iteration: 6, Func. Count: 73, Neg. LLF: 85.53189271498599
Iteration: 7, Func. Count: 84, Neg. LLF: 85.50738506458735
Iteration: 8, Func. Count: 95, Neg. LLF: 85.50686156553874
Iteration: 9, Func. Count: 106, Neg. LLF: 85.50680686271879
Iteration: 10, Func. Count: 117, Neg. LLF: 85.50677028455938
Iteration: 11, Func. Count: 128, Neg. LLF: 85.50676308086075
Iteration: 12, Func. Count: 138, Neg. LLF: 85.5067631055685
Optimization terminated successfully (Exit mode 0)
Current function value: 85.50676308086075
Iterations: 12
Function evaluations: 138
Gradient evaluations: 12
Iteration: 1, Func. Count: 13, Neg. LLF: 92.38537596729893
Iteration: 2, Func. Count: 27, Neg. LLF: 1987230.3262941577
Iteration: 3, Func. Count: 40, Neg. LLF: 87.47780572870124
Iteration: 4, Func. Count: 53, Neg. LLF: 94.35455563712603
Iteration: 5, Func. Count: 66, Neg. LLF: 88.05922169685482
Iteration: 6, Func. Count: 79, Neg. LLF: 88.24961256962412
Iteration: 7, Func. Count: 92, Neg. LLF: 85.61493056653055
Iteration: 8, Func. Count: 105, Neg. LLF: 84.54826029540486
Iteration: 9, Func. Count: 117, Neg. LLF: 84.50529711810547
Iteration: 10, Func. Count: 129, Neg. LLF: 84.47098108426381
Iteration: 11, Func. Count: 141, Neg. LLF: 84.41751373284504
Iteration: 12, Func. Count: 153, Neg. LLF: 84.41390686494996
Iteration: 13, Func. Count: 165, Neg. LLF: 84.4130137380505
Iteration: 14, Func. Count: 177, Neg. LLF: 84.4127052123403
Iteration: 15, Func. Count: 189, Neg. LLF: 84.41267791426516
Iteration: 16, Func. Count: 201, Neg. LLF: 84.41267698469454
Optimization terminated successfully (Exit mode 0)
Current function value: 84.41267698469454
Iterations: 16
Function evaluations: 201
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 117.37364796204545
Iteration: 2, Func. Count: 22, Neg. LLF: 5212570.54321008
Iteration: 3, Func. Count: 32, Neg. LLF: 21504921.593370296
Iteration: 4, Func. Count: 42, Neg. LLF: 86.32318322962696
Iteration: 5, Func. Count: 51, Neg. LLF: 85.89315026944091
Iteration: 6, Func. Count: 60, Neg. LLF: 93.05247486908966
Iteration: 7, Func. Count: 72, Neg. LLF: 85.61132632629365
Iteration: 8, Func. Count: 81, Neg. LLF: 85.55881756435328
Iteration: 9, Func. Count: 90, Neg. LLF: 85.52434526476637
Iteration: 10, Func. Count: 99, Neg. LLF: 85.5110381166729
Iteration: 11, Func. Count: 108, Neg. LLF: 85.50837621734242
Iteration: 12, Func. Count: 117, Neg. LLF: 85.50678185819307
Iteration: 13, Func. Count: 126, Neg. LLF: 85.50676275832336
Iteration: 14, Func. Count: 134, Neg. LLF: 85.50676278789949
Optimization terminated successfully (Exit mode 0)
Current function value: 85.50676275832336
Iterations: 14
Function evaluations: 134
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 88.36969956441845
Iteration: 2, Func. Count: 24, Neg. LLF: 16709510.02598379
Iteration: 3, Func. Count: 35, Neg. LLF: 98.33294660004604
Iteration: 4, Func. Count: 46, Neg. LLF: 88.19948346499199
Iteration: 5, Func. Count: 57, Neg. LLF: 85.85508710845723
Iteration: 6, Func. Count: 67, Neg. LLF: 85.52980117680235
Iteration: 7, Func. Count: 77, Neg. LLF: 85.51393639292877
Iteration: 8, Func. Count: 87, Neg. LLF: 85.50880856498557
Iteration: 9, Func. Count: 97, Neg. LLF: 85.50750311085781
Iteration: 10, Func. Count: 107, Neg. LLF: 85.50705229323452
Iteration: 11, Func. Count: 117, Neg. LLF: 85.50678045269773
Iteration: 12, Func. Count: 127, Neg. LLF: 85.5067639739428
Iteration: 13, Func. Count: 137, Neg. LLF: 85.50676272654195
Iteration: 14, Func. Count: 146, Neg. LLF: 85.50676274385381
Optimization terminated successfully (Exit mode 0)
Current function value: 85.50676272654195
Iterations: 14
Function evaluations: 146
Gradient evaluations: 14
Iteration: 1, Func. Count: 12, Neg. LLF: 88.34797834077062
Iteration: 2, Func. Count: 26, Neg. LLF: 16845551.99057938
Iteration: 3, Func. Count: 38, Neg. LLF: 118.27842061358592
Iteration: 4, Func. Count: 51, Neg. LLF: 86.2615779499227
Iteration: 5, Func. Count: 63, Neg. LLF: 85.56436430622247
Iteration: 6, Func. Count: 74, Neg. LLF: 85.52816974417458
Iteration: 7, Func. Count: 85, Neg. LLF: 85.51178895707471
Iteration: 8, Func. Count: 96, Neg. LLF: 85.50706003677506
Iteration: 9, Func. Count: 107, Neg. LLF: 85.50693344013655
Iteration: 10, Func. Count: 118, Neg. LLF: 85.50679497520285
Iteration: 11, Func. Count: 129, Neg. LLF: 85.50676535238898
Iteration: 12, Func. Count: 140, Neg. LLF: 85.50676270742267
Iteration: 13, Func. Count: 150, Neg. LLF: 85.50676273414477
Optimization terminated successfully (Exit mode 0)
Current function value: 85.50676270742267
Iterations: 13
Function evaluations: 150
Gradient evaluations: 13
Iteration: 1, Func. Count: 13, Neg. LLF: 88.62060440991326
Iteration: 2, Func. Count: 28, Neg. LLF: 13329466.108197408
Iteration: 3, Func. Count: 41, Neg. LLF: 7853557.3756986065
Iteration: 4, Func. Count: 54, Neg. LLF: 88.83984741800114
Iteration: 5, Func. Count: 67, Neg. LLF: 85.67205400413381
Iteration: 6, Func. Count: 79, Neg. LLF: 85.5508036935447
Iteration: 7, Func. Count: 91, Neg. LLF: 85.5101743886145
Iteration: 8, Func. Count: 103, Neg. LLF: 85.50818052787405
Iteration: 9, Func. Count: 115, Neg. LLF: 85.5074886992102
Iteration: 10, Func. Count: 127, Neg. LLF: 85.50681840735797
Iteration: 11, Func. Count: 139, Neg. LLF: 85.5067698777487
Iteration: 12, Func. Count: 151, Neg. LLF: 85.50676275957066
Iteration: 13, Func. Count: 162, Neg. LLF: 85.50676278428234
Optimization terminated successfully (Exit mode 0)
Current function value: 85.50676275957066
Iterations: 13
Function evaluations: 162
Gradient evaluations: 13
Iteration: 1, Func. Count: 14, Neg. LLF: 88.70046997719287
Iteration: 2, Func. Count: 30, Neg. LLF: 15928768.616554063
Iteration: 3, Func. Count: 44, Neg. LLF: 7837026.421427876
Iteration: 4, Func. Count: 58, Neg. LLF: 144.12120504833166
Iteration: 5, Func. Count: 72, Neg. LLF: 85.85477424179646
Iteration: 6, Func. Count: 86, Neg. LLF: 85.25069898422686
Iteration: 7, Func. Count: 100, Neg. LLF: 84.74628336620812
Iteration: 8, Func. Count: 113, Neg. LLF: 84.72573974051092
Iteration: 9, Func. Count: 127, Neg. LLF: 84.55820498629288
Iteration: 10, Func. Count: 140, Neg. LLF: 84.51662845124909
Iteration: 11, Func. Count: 153, Neg. LLF: 84.45146254905191
Iteration: 12, Func. Count: 166, Neg. LLF: 84.42883454024145
Iteration: 13, Func. Count: 179, Neg. LLF: 84.42177586519432
Iteration: 14, Func. Count: 192, Neg. LLF: 84.41297983266143
Iteration: 15, Func. Count: 205, Neg. LLF: 84.41269203649672
Iteration: 16, Func. Count: 218, Neg. LLF: 84.41267771251387
Iteration: 17, Func. Count: 231, Neg. LLF: 84.41267704198927
Optimization terminated successfully (Exit mode 0)
Current function value: 84.41267704198927
Iterations: 17
Function evaluations: 231
Gradient evaluations: 17
Iteration: 1, Func. Count: 7, Neg. LLF: 121.2918703092316
Iteration: 2, Func. Count: 16, Neg. LLF: 98.70424763060228
Iteration: 3, Func. Count: 23, Neg. LLF: 86.72310757661644
Iteration: 4, Func. Count: 29, Neg. LLF: 349070.69584205485
Iteration: 5, Func. Count: 36, Neg. LLF: 87.86297689133738
Iteration: 6, Func. Count: 43, Neg. LLF: 87.00384687721879
Iteration: 7, Func. Count: 50, Neg. LLF: 86.5223370927141
Iteration: 8, Func. Count: 56, Neg. LLF: 86.51988567982595
Iteration: 9, Func. Count: 62, Neg. LLF: 86.51985398751883
Iteration: 10, Func. Count: 67, Neg. LLF: 86.51985398756669
Optimization terminated successfully (Exit mode 0)
Current function value: 86.51985398751883
Iterations: 10
Function evaluations: 67
Gradient evaluations: 10
Iteration: 1, Func. Count: 8, Neg. LLF: 136.06454709559816
Iteration: 2, Func. Count: 17, Neg. LLF: 86.61570550749336
Iteration: 3, Func. Count: 24, Neg. LLF: 86.60473305889906
Iteration: 4, Func. Count: 31, Neg. LLF: 86.59808085256601
Iteration: 5, Func. Count: 38, Neg. LLF: 86.62792163706692
Iteration: 6, Func. Count: 46, Neg. LLF: 86.8057000992662
Iteration: 7, Func. Count: 54, Neg. LLF: 86.62924990034273
Iteration: 8, Func. Count: 62, Neg. LLF: 86.68365517680978
Iteration: 9, Func. Count: 70, Neg. LLF: 86.63923934505681
Iteration: 10, Func. Count: 78, Neg. LLF: 86.60199366183491
Iteration: 11, Func. Count: 86, Neg. LLF: 86.56127357474688
Iteration: 12, Func. Count: 93, Neg. LLF: 86.5611010379291
Iteration: 13, Func. Count: 100, Neg. LLF: 86.56109573597342
Iteration: 14, Func. Count: 106, Neg. LLF: 86.56109573608875
Optimization terminated successfully (Exit mode 0)
Current function value: 86.56109573597342
Iterations: 14
Function evaluations: 106
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 101.3064990434479
Iteration: 2, Func. Count: 19, Neg. LLF: 86.60479673568099
Iteration: 3, Func. Count: 27, Neg. LLF: 86.5591234580856
Iteration: 4, Func. Count: 35, Neg. LLF: 86.57080521082803
Iteration: 5, Func. Count: 44, Neg. LLF: 86.8927515620532
Iteration: 6, Func. Count: 53, Neg. LLF: 86.54605647677131
Iteration: 7, Func. Count: 61, Neg. LLF: 86.528854165006
Iteration: 8, Func. Count: 69, Neg. LLF: 86.52642648256158
Iteration: 9, Func. Count: 77, Neg. LLF: 86.52635567850268
Iteration: 10, Func. Count: 85, Neg. LLF: 86.52635024743373
Iteration: 11, Func. Count: 92, Neg. LLF: 86.52635024741105
Optimization terminated successfully (Exit mode 0)
Current function value: 86.52635024743373
Iterations: 11
Function evaluations: 92
Gradient evaluations: 11
Iteration: 1, Func. Count: 10, Neg. LLF: 93.4904471840445
Iteration: 2, Func. Count: 21, Neg. LLF: 87.91838406165255
Iteration: 3, Func. Count: 32, Neg. LLF: 86.5851085616262
Iteration: 4, Func. Count: 41, Neg. LLF: 86.62792308529959
Iteration: 5, Func. Count: 51, Neg. LLF: 86.57946593406393
Iteration: 6, Func. Count: 60, Neg. LLF: 86.56366314716371
Iteration: 7, Func. Count: 69, Neg. LLF: 86.55642906510577
Iteration: 8, Func. Count: 78, Neg. LLF: 86.55327549707037
Iteration: 9, Func. Count: 87, Neg. LLF: 86.54256537802848
Iteration: 10, Func. Count: 96, Neg. LLF: 86.53389621077702
Iteration: 11, Func. Count: 105, Neg. LLF: 86.52475142460587
Iteration: 12, Func. Count: 114, Neg. LLF: 86.52083109382399
Iteration: 13, Func. Count: 123, Neg. LLF: 86.5198608269576
Iteration: 14, Func. Count: 132, Neg. LLF: 86.51985565352719
Iteration: 15, Func. Count: 141, Neg. LLF: 86.51985406988824
Iteration: 16, Func. Count: 149, Neg. LLF: 86.51985407189397
Optimization terminated successfully (Exit mode 0)
Current function value: 86.51985406988824
Iterations: 16
Function evaluations: 149
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 90.38719980708223
Iteration: 2, Func. Count: 24, Neg. LLF: 91.92877648545469
Iteration: 3, Func. Count: 35, Neg. LLF: 86.34187439194687
Iteration: 4, Func. Count: 45, Neg. LLF: 87.35971623610897
Iteration: 5, Func. Count: 56, Neg. LLF: 88.53577436902867
Iteration: 6, Func. Count: 67, Neg. LLF: 86.2784655471109
Iteration: 7, Func. Count: 77, Neg. LLF: 86.27745876175332
Iteration: 8, Func. Count: 87, Neg. LLF: 86.27694432143205
Iteration: 9, Func. Count: 97, Neg. LLF: 86.27637389519955
Iteration: 10, Func. Count: 107, Neg. LLF: 86.27601926852044
Iteration: 11, Func. Count: 117, Neg. LLF: 86.27574691604785
Iteration: 12, Func. Count: 127, Neg. LLF: 86.27572912721254
Iteration: 13, Func. Count: 137, Neg. LLF: 86.27572838398815
Optimization terminated successfully (Exit mode 0)
Current function value: 86.27572838398815
Iterations: 13
Function evaluations: 137
Gradient evaluations: 13
Iteration: 1, Func. Count: 8, Neg. LLF: 118.02632947127158
Iteration: 2, Func. Count: 18, Neg. LLF: 90.61225627747434
Iteration: 3, Func. Count: 26, Neg. LLF: 87.45084127304891
Iteration: 4, Func. Count: 34, Neg. LLF: 18241972.525189072
Iteration: 5, Func. Count: 42, Neg. LLF: 86.53342735929829
Iteration: 6, Func. Count: 49, Neg. LLF: 86.36739474497826
Iteration: 7, Func. Count: 56, Neg. LLF: 86.31634808377892
Iteration: 8, Func. Count: 63, Neg. LLF: 86.2955481772129
Iteration: 9, Func. Count: 70, Neg. LLF: 86.29371536953006
Iteration: 10, Func. Count: 77, Neg. LLF: 86.29364941863071
Iteration: 11, Func. Count: 83, Neg. LLF: 86.29364941861097
Optimization terminated successfully (Exit mode 0)
Current function value: 86.29364941863071
Iterations: 11
Function evaluations: 83
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 107.01262580911849
Iteration: 2, Func. Count: 19, Neg. LLF: 86.76712241917677
Iteration: 3, Func. Count: 28, Neg. LLF: 86.6036278631049
Iteration: 4, Func. Count: 37, Neg. LLF: 86.56513477219045
Iteration: 5, Func. Count: 45, Neg. LLF: 86.38896154614793
Iteration: 6, Func. Count: 53, Neg. LLF: 86.32926640673648
Iteration: 7, Func. Count: 61, Neg. LLF: 86.31022351785836
Iteration: 8, Func. Count: 69, Neg. LLF: 86.30157996745729
Iteration: 9, Func. Count: 77, Neg. LLF: 86.29692540283511
Iteration: 10, Func. Count: 85, Neg. LLF: 86.2941664379628
Iteration: 11, Func. Count: 93, Neg. LLF: 86.29385544185917
Iteration: 12, Func. Count: 101, Neg. LLF: 86.29370362101672
Iteration: 13, Func. Count: 109, Neg. LLF: 86.29365633286903
Iteration: 14, Func. Count: 117, Neg. LLF: 86.29364954474889
Iteration: 15, Func. Count: 124, Neg. LLF: 86.2936495589866
Optimization terminated successfully (Exit mode 0)
Current function value: 86.29364954474889
Iterations: 15
Function evaluations: 124
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 93.7129525905428
Iteration: 2, Func. Count: 21, Neg. LLF: 87.49900373764163
Iteration: 3, Func. Count: 31, Neg. LLF: 86.3689632582639
Iteration: 4, Func. Count: 40, Neg. LLF: 86.66229711926553
Iteration: 5, Func. Count: 50, Neg. LLF: 86.35438948980664
Iteration: 6, Func. Count: 60, Neg. LLF: 85.76204083832174
Iteration: 7, Func. Count: 69, Neg. LLF: 85.84053568785373
Iteration: 8, Func. Count: 79, Neg. LLF: 85.7587933848689
Iteration: 9, Func. Count: 88, Neg. LLF: 85.7581141816905
Iteration: 10, Func. Count: 97, Neg. LLF: 85.75811523565484
Optimization terminated successfully (Exit mode 0)
Current function value: 85.75811339038576
Iterations: 10
Function evaluations: 98
Gradient evaluations: 10
Iteration: 1, Func. Count: 11, Neg. LLF: 89.67585463367259
Iteration: 2, Func. Count: 23, Neg. LLF: 91.20696132908883
Iteration: 3, Func. Count: 34, Neg. LLF: 86.967185623303
Iteration: 4, Func. Count: 45, Neg. LLF: 85.9632090906013
Iteration: 5, Func. Count: 55, Neg. LLF: 86.15869691829529
Iteration: 6, Func. Count: 66, Neg. LLF: 86.06674201141789
Iteration: 7, Func. Count: 77, Neg. LLF: 86.76700146976151
Iteration: 8, Func. Count: 88, Neg. LLF: 85.79336038097479
Iteration: 9, Func. Count: 99, Neg. LLF: 85.75823278451499
Iteration: 10, Func. Count: 109, Neg. LLF: 85.75811796393543
Iteration: 11, Func. Count: 119, Neg. LLF: 85.75811335382735
Iteration: 12, Func. Count: 128, Neg. LLF: 85.75811335451543
Optimization terminated successfully (Exit mode 0)
Current function value: 85.75811335382735
Iterations: 12
Function evaluations: 128
Gradient evaluations: 12
Iteration: 1, Func. Count: 12, Neg. LLF: 89.9396906431285
Iteration: 2, Func. Count: 26, Neg. LLF: 101.17479098363741
Iteration: 3, Func. Count: 38, Neg. LLF: 88.42825413726787
Iteration: 4, Func. Count: 50, Neg. LLF: 86.87549892885441
Iteration: 5, Func. Count: 62, Neg. LLF: 85.60782357967186
Iteration: 6, Func. Count: 73, Neg. LLF: 85.59645531419336
Iteration: 7, Func. Count: 85, Neg. LLF: 85.5616748909206
Iteration: 8, Func. Count: 96, Neg. LLF: 85.56194345121334
Iteration: 9, Func. Count: 108, Neg. LLF: 85.5558225193717
Iteration: 10, Func. Count: 119, Neg. LLF: 85.55528684202358
Iteration: 11, Func. Count: 130, Neg. LLF: 85.55528110689336
Iteration: 12, Func. Count: 140, Neg. LLF: 85.55528103737448
Optimization terminated successfully (Exit mode 0)
Current function value: 85.55528110689336
Iterations: 12
Function evaluations: 140
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 118.24038480046559
Iteration: 2, Func. Count: 20, Neg. LLF: 90.34309450949968
Iteration: 3, Func. Count: 29, Neg. LLF: 87.84902387482171
Iteration: 4, Func. Count: 38, Neg. LLF: 14129794.147579296
Iteration: 5, Func. Count: 47, Neg. LLF: 86.53858177676979
Iteration: 6, Func. Count: 55, Neg. LLF: 86.3667668810938
Iteration: 7, Func. Count: 63, Neg. LLF: 86.3129771758821
Iteration: 8, Func. Count: 71, Neg. LLF: 86.30217826443264
Iteration: 9, Func. Count: 79, Neg. LLF: 86.29396335355446
Iteration: 10, Func. Count: 87, Neg. LLF: 86.29365426466158
Iteration: 11, Func. Count: 95, Neg. LLF: 86.2936497100361
Iteration: 12, Func. Count: 102, Neg. LLF: 86.29364962443852
Optimization terminated successfully (Exit mode 0)
Current function value: 86.2936497100361
Iterations: 12
Function evaluations: 102
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 90.87942762498614
Iteration: 2, Func. Count: 22, Neg. LLF: 98.56174118866318
Iteration: 3, Func. Count: 33, Neg. LLF: 86.58157425895133
Iteration: 4, Func. Count: 42, Neg. LLF: 86.5789345914807
Iteration: 5, Func. Count: 52, Neg. LLF: 86.65054621095268
Iteration: 6, Func. Count: 62, Neg. LLF: 86.39106574037189
Iteration: 7, Func. Count: 71, Neg. LLF: 86.35435901985993
Iteration: 8, Func. Count: 80, Neg. LLF: 86.31742054387573
Iteration: 9, Func. Count: 89, Neg. LLF: 86.29611623057124
Iteration: 10, Func. Count: 98, Neg. LLF: 86.29382866283306
Iteration: 11, Func. Count: 107, Neg. LLF: 86.29367415097457
Iteration: 12, Func. Count: 116, Neg. LLF: 86.29366113928509
Iteration: 13, Func. Count: 125, Neg. LLF: 86.29364937363084
Iteration: 14, Func. Count: 133, Neg. LLF: 86.29364938787253
Optimization terminated successfully (Exit mode 0)
Current function value: 86.29364937363084
Iterations: 14
Function evaluations: 133
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 90.73226670352024
Iteration: 2, Func. Count: 24, Neg. LLF: 214.00738155626948
Iteration: 3, Func. Count: 36, Neg. LLF: 95.05060866753715
Iteration: 4, Func. Count: 47, Neg. LLF: 86.07190422010993
Iteration: 5, Func. Count: 57, Neg. LLF: 87.18223983676344
Iteration: 6, Func. Count: 68, Neg. LLF: 90.81956268834561
Iteration: 7, Func. Count: 79, Neg. LLF: 85.84950680278973
Iteration: 8, Func. Count: 89, Neg. LLF: 85.88220663733851
Iteration: 9, Func. Count: 100, Neg. LLF: 85.76325321532349
Iteration: 10, Func. Count: 110, Neg. LLF: 85.7586277672036
Iteration: 11, Func. Count: 120, Neg. LLF: 85.75812203453935
Iteration: 12, Func. Count: 130, Neg. LLF: 85.75811353338207
Iteration: 13, Func. Count: 139, Neg. LLF: 85.75811353327029
Optimization terminated successfully (Exit mode 0)
Current function value: 85.75811353338207
Iterations: 13
Function evaluations: 139
Gradient evaluations: 13
Iteration: 1, Func. Count: 12, Neg. LLF: 90.7143849271387
Iteration: 2, Func. Count: 26, Neg. LLF: 101.79783200778081
Iteration: 3, Func. Count: 38, Neg. LLF: 96.80676456540203
Iteration: 4, Func. Count: 51, Neg. LLF: 86.33958061225407
Iteration: 5, Func. Count: 62, Neg. LLF: 86.22259561062037
Iteration: 6, Func. Count: 73, Neg. LLF: 85.9232066240566
Iteration: 7, Func. Count: 84, Neg. LLF: 86.50297939489501
Iteration: 8, Func. Count: 96, Neg. LLF: 86.03374179677463
Iteration: 9, Func. Count: 108, Neg. LLF: 85.77851989028979
Iteration: 10, Func. Count: 120, Neg. LLF: 85.76006423509264
Iteration: 11, Func. Count: 131, Neg. LLF: 85.76009067410689
Iteration: 12, Func. Count: 143, Neg. LLF: 85.75811954518265
Iteration: 13, Func. Count: 154, Neg. LLF: 85.7581133872774
Iteration: 14, Func. Count: 164, Neg. LLF: 85.75811338806827
Optimization terminated successfully (Exit mode 0)
Current function value: 85.7581133872774
Iterations: 14
Function evaluations: 164
Gradient evaluations: 14
Iteration: 1, Func. Count: 13, Neg. LLF: 90.72965398729701
Iteration: 2, Func. Count: 28, Neg. LLF: 93.5137260052097
Iteration: 3, Func. Count: 41, Neg. LLF: 340.40964950140466
Iteration: 4, Func. Count: 54, Neg. LLF: 86.28184105187712
Iteration: 5, Func. Count: 66, Neg. LLF: 86.56912884363244
Iteration: 6, Func. Count: 79, Neg. LLF: 88.22468406816776
Iteration: 7, Func. Count: 92, Neg. LLF: 85.69932177958691
Iteration: 8, Func. Count: 104, Neg. LLF: 85.56452900692727
Iteration: 9, Func. Count: 116, Neg. LLF: 85.55820625125818
Iteration: 10, Func. Count: 128, Neg. LLF: 85.55669507166003
Iteration: 11, Func. Count: 140, Neg. LLF: 85.55544249766513
Iteration: 12, Func. Count: 152, Neg. LLF: 85.55528288703763
Iteration: 13, Func. Count: 164, Neg. LLF: 85.55808037069147
Iteration: 14, Func. Count: 178, Neg. LLF: 85.56104598742645
Optimization terminated successfully (Exit mode 0)
Current function value: 85.5552808027758
Iterations: 15
Function evaluations: 180
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 112.66636163827619
Iteration: 2, Func. Count: 22, Neg. LLF: 112.38097656241997
Iteration: 3, Func. Count: 32, Neg. LLF: 283.168195906312
Iteration: 4, Func. Count: 42, Neg. LLF: 85.74226715280115
Iteration: 5, Func. Count: 51, Neg. LLF: 96.8815052090922
Iteration: 6, Func. Count: 61, Neg. LLF: 85.53670433065592
Iteration: 7, Func. Count: 70, Neg. LLF: 85.50951117456839
Iteration: 8, Func. Count: 79, Neg. LLF: 85.50692995137393
Iteration: 9, Func. Count: 88, Neg. LLF: 85.50677471058786
Iteration: 10, Func. Count: 97, Neg. LLF: 85.50676437282812
Iteration: 11, Func. Count: 106, Neg. LLF: 85.50676266415938
Iteration: 12, Func. Count: 114, Neg. LLF: 85.5067626641633
Optimization terminated successfully (Exit mode 0)
Current function value: 85.50676266415938
Iterations: 12
Function evaluations: 114
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 92.21674661271219
Iteration: 2, Func. Count: 23, Neg. LLF: 144.62375171861478
Iteration: 3, Func. Count: 34, Neg. LLF: 87.8087385559785
Iteration: 4, Func. Count: 45, Neg. LLF: 87.26413501138511
Iteration: 5, Func. Count: 56, Neg. LLF: 86.17391831430976
Iteration: 6, Func. Count: 67, Neg. LLF: 85.52251463748884
Iteration: 7, Func. Count: 77, Neg. LLF: 85.51267711882724
Iteration: 8, Func. Count: 87, Neg. LLF: 85.5077687896171
Iteration: 9, Func. Count: 97, Neg. LLF: 85.50687884541813
Iteration: 10, Func. Count: 107, Neg. LLF: 85.50676497178225
Iteration: 11, Func. Count: 117, Neg. LLF: 85.50676267021109
Iteration: 12, Func. Count: 126, Neg. LLF: 85.50676268752017
Optimization terminated successfully (Exit mode 0)
Current function value: 85.50676267021109
Iterations: 12
Function evaluations: 126
Gradient evaluations: 12
Iteration: 1, Func. Count: 12, Neg. LLF: 90.15126190864115
Iteration: 2, Func. Count: 25, Neg. LLF: 6059032.138693174
Iteration: 3, Func. Count: 37, Neg. LLF: 88.2726526023606
Iteration: 4, Func. Count: 49, Neg. LLF: 85.87465692793641
Iteration: 5, Func. Count: 60, Neg. LLF: 86.56600576103446
Iteration: 6, Func. Count: 72, Neg. LLF: 85.56215151400663
Iteration: 7, Func. Count: 83, Neg. LLF: 85.51859486868102
Iteration: 8, Func. Count: 94, Neg. LLF: 85.50842625262213
Iteration: 9, Func. Count: 105, Neg. LLF: 85.5068374614272
Iteration: 10, Func. Count: 116, Neg. LLF: 85.50676400065058
Iteration: 11, Func. Count: 127, Neg. LLF: 85.5067630291084
Optimization terminated successfully (Exit mode 0)
Current function value: 85.5067630291084
Iterations: 11
Function evaluations: 127
Gradient evaluations: 11
Iteration: 1, Func. Count: 13, Neg. LLF: 90.07521942129046
Iteration: 2, Func. Count: 28, Neg. LLF: 6413829.95401034
Iteration: 3, Func. Count: 41, Neg. LLF: 89.03748189665671
Iteration: 4, Func. Count: 54, Neg. LLF: 87.79216520346063
Iteration: 5, Func. Count: 67, Neg. LLF: 85.63365928623743
Iteration: 6, Func. Count: 79, Neg. LLF: 85.53759460622113
Iteration: 7, Func. Count: 91, Neg. LLF: 85.5076869420427
Iteration: 8, Func. Count: 103, Neg. LLF: 85.50690907677195
Iteration: 9, Func. Count: 115, Neg. LLF: 85.50683519525799
Iteration: 10, Func. Count: 127, Neg. LLF: 85.50676314737363
Iteration: 11, Func. Count: 138, Neg. LLF: 85.5067631721088
Optimization terminated successfully (Exit mode 0)
Current function value: 85.50676314737363
Iterations: 11
Function evaluations: 138
Gradient evaluations: 11
Iteration: 1, Func. Count: 14, Neg. LLF: 92.24411507319697
Iteration: 2, Func. Count: 29, Neg. LLF: 1976236.1674377674
Iteration: 3, Func. Count: 43, Neg. LLF: 87.77419737888115
Iteration: 4, Func. Count: 57, Neg. LLF: 92.68366552998614
Iteration: 5, Func. Count: 71, Neg. LLF: 85.76213059747339
Iteration: 6, Func. Count: 85, Neg. LLF: 89.63288996756879
Iteration: 7, Func. Count: 99, Neg. LLF: 85.44946652758347
Iteration: 8, Func. Count: 113, Neg. LLF: 88.799390924554
Iteration: 9, Func. Count: 127, Neg. LLF: 84.4454665973156
Iteration: 10, Func. Count: 140, Neg. LLF: 84.44111364317754
Iteration: 11, Func. Count: 154, Neg. LLF: 84.41992329120639
Iteration: 12, Func. Count: 167, Neg. LLF: 84.4133504523681
Iteration: 13, Func. Count: 180, Neg. LLF: 84.4130988227058
Iteration: 14, Func. Count: 193, Neg. LLF: 84.41268827115249
Iteration: 15, Func. Count: 206, Neg. LLF: 84.41267744105333
Iteration: 16, Func. Count: 218, Neg. LLF: 84.41267742191654
Optimization terminated successfully (Exit mode 0)
Current function value: 84.41267744105333
Iterations: 16
Function evaluations: 218
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 114.34100753264471
Iteration: 2, Func. Count: 24, Neg. LLF: 4377371.637769386
Iteration: 3, Func. Count: 35, Neg. LLF: 23624536.213028647
Iteration: 4, Func. Count: 46, Neg. LLF: 87.5902586861889
Iteration: 5, Func. Count: 57, Neg. LLF: 85.57629584734724
Iteration: 6, Func. Count: 67, Neg. LLF: 85.53576186522898
Iteration: 7, Func. Count: 77, Neg. LLF: 85.51265872971538
Iteration: 8, Func. Count: 87, Neg. LLF: 85.50755048538798
Iteration: 9, Func. Count: 97, Neg. LLF: 85.50676464251545
Iteration: 10, Func. Count: 107, Neg. LLF: 85.5067627247705
Iteration: 11, Func. Count: 116, Neg. LLF: 85.50676275434425
Optimization terminated successfully (Exit mode 0)
Current function value: 85.5067627247705
Iterations: 11
Function evaluations: 116
Gradient evaluations: 11
Iteration: 1, Func. Count: 12, Neg. LLF: 87.99532794129797
Iteration: 2, Func. Count: 26, Neg. LLF: 17064831.42574756
Iteration: 3, Func. Count: 38, Neg. LLF: 93.10614586276684
Iteration: 4, Func. Count: 50, Neg. LLF: 86.15938392483376
Iteration: 5, Func. Count: 61, Neg. LLF: 85.78839175189006
Iteration: 6, Func. Count: 72, Neg. LLF: 85.5347774108263
Iteration: 7, Func. Count: 83, Neg. LLF: 85.51505687692014
Iteration: 8, Func. Count: 94, Neg. LLF: 85.5093026133187
Iteration: 9, Func. Count: 105, Neg. LLF: 85.50797521863998
Iteration: 10, Func. Count: 116, Neg. LLF: 85.50688681255926
Iteration: 11, Func. Count: 127, Neg. LLF: 85.50678894208781
Iteration: 12, Func. Count: 138, Neg. LLF: 85.50676281079967
Iteration: 13, Func. Count: 148, Neg. LLF: 85.50676282811156
Optimization terminated successfully (Exit mode 0)
Current function value: 85.50676281079967
Iterations: 13
Function evaluations: 148
Gradient evaluations: 13
Iteration: 1, Func. Count: 13, Neg. LLF: 88.43800705969225
Iteration: 2, Func. Count: 28, Neg. LLF: 16884401.972056072
Iteration: 3, Func. Count: 41, Neg. LLF: 105.39914274353968
Iteration: 4, Func. Count: 55, Neg. LLF: 85.86254685052035
Iteration: 5, Func. Count: 67, Neg. LLF: 85.56409179028199
Iteration: 6, Func. Count: 79, Neg. LLF: 85.51798033814083
Iteration: 7, Func. Count: 91, Neg. LLF: 85.50798843320779
Iteration: 8, Func. Count: 103, Neg. LLF: 85.50711944386396
Iteration: 9, Func. Count: 115, Neg. LLF: 85.50695995069141
Iteration: 10, Func. Count: 127, Neg. LLF: 85.50678608026023
Iteration: 11, Func. Count: 139, Neg. LLF: 85.50676879546414
Iteration: 12, Func. Count: 151, Neg. LLF: 85.50676281545573
Iteration: 13, Func. Count: 162, Neg. LLF: 85.50676284216787
Optimization terminated successfully (Exit mode 0)
Current function value: 85.50676281545573
Iterations: 13
Function evaluations: 162
Gradient evaluations: 13
Iteration: 1, Func. Count: 14, Neg. LLF: 88.4911928957474
Iteration: 2, Func. Count: 30, Neg. LLF: 11651680.101540966
Iteration: 3, Func. Count: 44, Neg. LLF: 7856927.889640264
Iteration: 4, Func. Count: 58, Neg. LLF: 88.52884831476284
Iteration: 5, Func. Count: 72, Neg. LLF: 85.78768029617305
Iteration: 6, Func. Count: 85, Neg. LLF: 85.55820080557804
Iteration: 7, Func. Count: 98, Neg. LLF: 85.51298592086678
Iteration: 8, Func. Count: 111, Neg. LLF: 85.50844875100779
Iteration: 9, Func. Count: 124, Neg. LLF: 85.5076601868099
Iteration: 10, Func. Count: 137, Neg. LLF: 85.50689393888118
Iteration: 11, Func. Count: 150, Neg. LLF: 85.50678301053632
Iteration: 12, Func. Count: 163, Neg. LLF: 85.50676381447987
Iteration: 13, Func. Count: 176, Neg. LLF: 85.50676273042721
Iteration: 14, Func. Count: 188, Neg. LLF: 85.50676275513682
Optimization terminated successfully (Exit mode 0)
Current function value: 85.50676273042721
Iterations: 14
Function evaluations: 188
Gradient evaluations: 14
Iteration: 1, Func. Count: 15, Neg. LLF: 88.55100203592741
Iteration: 2, Func. Count: 32, Neg. LLF: 15939166.2890231
Iteration: 3, Func. Count: 47, Neg. LLF: 7855134.294303192
Iteration: 4, Func. Count: 62, Neg. LLF: 102.74460894787481
Iteration: 5, Func. Count: 77, Neg. LLF: 85.84680164770026
Iteration: 6, Func. Count: 92, Neg. LLF: 85.20136089233654
Iteration: 7, Func. Count: 107, Neg. LLF: 84.83643720824682
Iteration: 8, Func. Count: 121, Neg. LLF: 84.9061838188495
Iteration: 9, Func. Count: 136, Neg. LLF: 84.51202675119666
Iteration: 10, Func. Count: 150, Neg. LLF: 84.45410524852137
Iteration: 11, Func. Count: 164, Neg. LLF: 84.44540144525604
Iteration: 12, Func. Count: 178, Neg. LLF: 84.44202386976349
Iteration: 13, Func. Count: 193, Neg. LLF: 84.41982383424921
Iteration: 14, Func. Count: 207, Neg. LLF: 84.41343985454509
Iteration: 15, Func. Count: 221, Neg. LLF: 84.41268370440854
Iteration: 16, Func. Count: 235, Neg. LLF: 84.41267700676397
Iteration: 17, Func. Count: 248, Neg. LLF: 84.4126769877247
Optimization terminated successfully (Exit mode 0)
Current function value: 84.41267700676397
Iterations: 17
Function evaluations: 248
Gradient evaluations: 17
Iteration: 1, Func. Count: 8, Neg. LLF: 124.13127071592793
Iteration: 2, Func. Count: 18, Neg. LLF: 115.93984813867922
Iteration: 3, Func. Count: 26, Neg. LLF: 91.44081700602275
Iteration: 4, Func. Count: 34, Neg. LLF: 86.69469584306502
Iteration: 5, Func. Count: 41, Neg. LLF: 129.96751575019886
Iteration: 6, Func. Count: 50, Neg. LLF: 86.58561563649756
Iteration: 7, Func. Count: 57, Neg. LLF: 86.5863683203238
Iteration: 8, Func. Count: 65, Neg. LLF: 86.54615462692982
Iteration: 9, Func. Count: 73, Neg. LLF: 86.52001656067594
Iteration: 10, Func. Count: 80, Neg. LLF: 86.51985436630156
Iteration: 11, Func. Count: 87, Neg. LLF: 86.51985368152614
Optimization terminated successfully (Exit mode 0)
Current function value: 86.51985368152614
Iterations: 11
Function evaluations: 87
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 136.4945055382354
Iteration: 2, Func. Count: 19, Neg. LLF: 86.62418739732404
Iteration: 3, Func. Count: 27, Neg. LLF: 86.60385631172491
Iteration: 4, Func. Count: 35, Neg. LLF: 86.59644051943758
Iteration: 5, Func. Count: 43, Neg. LLF: 86.8028686002917
Iteration: 6, Func. Count: 52, Neg. LLF: 86.97839750985267
Iteration: 7, Func. Count: 61, Neg. LLF: 86.88443396518143
Iteration: 8, Func. Count: 70, Neg. LLF: 86.80838591576159
Iteration: 9, Func. Count: 79, Neg. LLF: 86.71335068506859
Iteration: 10, Func. Count: 88, Neg. LLF: 87.02293449391142
Iteration: 11, Func. Count: 97, Neg. LLF: 86.63282682605428
Iteration: 12, Func. Count: 106, Neg. LLF: 86.56334701958565
Iteration: 13, Func. Count: 115, Neg. LLF: 86.56126743904686
Iteration: 14, Func. Count: 124, Neg. LLF: 86.56109722629434
Iteration: 15, Func. Count: 132, Neg. LLF: 86.56109566831208
Iteration: 16, Func. Count: 139, Neg. LLF: 86.56109566830145
Optimization terminated successfully (Exit mode 0)
Current function value: 86.56109566831208
Iterations: 16
Function evaluations: 139
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 100.47245324770117
Iteration: 2, Func. Count: 21, Neg. LLF: 86.61738436115162
Iteration: 3, Func. Count: 30, Neg. LLF: 86.58355239172054
Iteration: 4, Func. Count: 39, Neg. LLF: 86.58248633957494
Iteration: 5, Func. Count: 49, Neg. LLF: 86.54928244259192
Iteration: 6, Func. Count: 58, Neg. LLF: 86.53906525029592
Iteration: 7, Func. Count: 67, Neg. LLF: 86.53599423406466
Iteration: 8, Func. Count: 76, Neg. LLF: 86.52684029792806
Iteration: 9, Func. Count: 85, Neg. LLF: 86.52647237149911
Iteration: 10, Func. Count: 94, Neg. LLF: 86.52636013103016
Iteration: 11, Func. Count: 103, Neg. LLF: 86.52635025006651
Iteration: 12, Func. Count: 111, Neg. LLF: 86.52635025008102
Optimization terminated successfully (Exit mode 0)
Current function value: 86.52635025006651
Iterations: 12
Function evaluations: 111
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 93.19067201461877
Iteration: 2, Func. Count: 23, Neg. LLF: 87.96285607239497
Iteration: 3, Func. Count: 35, Neg. LLF: 86.58550466402741
Iteration: 4, Func. Count: 45, Neg. LLF: 86.64152369952669
Iteration: 5, Func. Count: 56, Neg. LLF: 86.58029739028973
Iteration: 6, Func. Count: 66, Neg. LLF: 86.55602758956667
Iteration: 7, Func. Count: 76, Neg. LLF: 86.54812115784452
Iteration: 8, Func. Count: 86, Neg. LLF: 86.52247868839217
Iteration: 9, Func. Count: 96, Neg. LLF: 86.5202490295358
Iteration: 10, Func. Count: 106, Neg. LLF: 86.51996334593309
Iteration: 11, Func. Count: 116, Neg. LLF: 86.51988230853749
Iteration: 12, Func. Count: 126, Neg. LLF: 86.51985676268089
Iteration: 13, Func. Count: 136, Neg. LLF: 86.51985475079881
Iteration: 14, Func. Count: 146, Neg. LLF: 86.51985398217498
Optimization terminated successfully (Exit mode 0)
Current function value: 86.51985398217498
Iterations: 14
Function evaluations: 146
Gradient evaluations: 14
Iteration: 1, Func. Count: 12, Neg. LLF: 90.45978473945902
Iteration: 2, Func. Count: 26, Neg. LLF: 92.07810703393544
Iteration: 3, Func. Count: 38, Neg. LLF: 86.34267083246674
Iteration: 4, Func. Count: 49, Neg. LLF: 87.33826876256596
Iteration: 5, Func. Count: 61, Neg. LLF: 88.99747439842696
Iteration: 6, Func. Count: 73, Neg. LLF: 86.27840096788181
Iteration: 7, Func. Count: 84, Neg. LLF: 86.27730495549655
Iteration: 8, Func. Count: 95, Neg. LLF: 86.27674905029451
Iteration: 9, Func. Count: 106, Neg. LLF: 86.27620163553472
Iteration: 10, Func. Count: 117, Neg. LLF: 86.27591011015583
Iteration: 11, Func. Count: 128, Neg. LLF: 86.27573576075469
Iteration: 12, Func. Count: 139, Neg. LLF: 86.27572862864623
Iteration: 13, Func. Count: 149, Neg. LLF: 86.27572862867494
Optimization terminated successfully (Exit mode 0)
Current function value: 86.27572862864623
Iterations: 13
Function evaluations: 149
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 120.28269808983356
Iteration: 2, Func. Count: 20, Neg. LLF: 112.57428618436998
Iteration: 3, Func. Count: 29, Neg. LLF: 130.97044171540006
Iteration: 4, Func. Count: 38, Neg. LLF: 86.60716278955923
Iteration: 5, Func. Count: 46, Neg. LLF: 167.8729888059436
Iteration: 6, Func. Count: 55, Neg. LLF: 86.36362935799652
Iteration: 7, Func. Count: 63, Neg. LLF: 86.54498887747287
Iteration: 8, Func. Count: 72, Neg. LLF: 86.29579886106553
Iteration: 9, Func. Count: 80, Neg. LLF: 86.29388809864663
Iteration: 10, Func. Count: 88, Neg. LLF: 86.29365892803365
Iteration: 11, Func. Count: 96, Neg. LLF: 86.29364938582931
Iteration: 12, Func. Count: 103, Neg. LLF: 86.29364938581674
Optimization terminated successfully (Exit mode 0)
Current function value: 86.29364938582931
Iterations: 12
Function evaluations: 103
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 105.06832449077153
Iteration: 2, Func. Count: 21, Neg. LLF: 86.81842675076895
Iteration: 3, Func. Count: 31, Neg. LLF: 86.56304481050518
Iteration: 4, Func. Count: 40, Neg. LLF: 86.61415166392018
Iteration: 5, Func. Count: 50, Neg. LLF: 86.40188153082374
Iteration: 6, Func. Count: 59, Neg. LLF: 86.3645309196097
Iteration: 7, Func. Count: 68, Neg. LLF: 86.33029676096795
Iteration: 8, Func. Count: 77, Neg. LLF: 86.31062709908738
Iteration: 9, Func. Count: 86, Neg. LLF: 86.30613153525935
Iteration: 10, Func. Count: 95, Neg. LLF: 86.29856929768853
Iteration: 11, Func. Count: 104, Neg. LLF: 86.2945230601734
Iteration: 12, Func. Count: 113, Neg. LLF: 86.29372464342228
Iteration: 13, Func. Count: 122, Neg. LLF: 86.29365424411225
Iteration: 14, Func. Count: 131, Neg. LLF: 86.29365085661269
Iteration: 15, Func. Count: 140, Neg. LLF: 86.29364976466505
Iteration: 16, Func. Count: 148, Neg. LLF: 86.2936497789617
Optimization terminated successfully (Exit mode 0)
Current function value: 86.29364976466505
Iterations: 16
Function evaluations: 148
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 93.37024162983235
Iteration: 2, Func. Count: 23, Neg. LLF: 87.66662132590453
Iteration: 3, Func. Count: 34, Neg. LLF: 86.33095698801809
Iteration: 4, Func. Count: 44, Neg. LLF: 86.66231253590826
Iteration: 5, Func. Count: 55, Neg. LLF: 86.4220369033801
Iteration: 6, Func. Count: 66, Neg. LLF: 85.77714179670959
Iteration: 7, Func. Count: 76, Neg. LLF: 86.17666303185166
Iteration: 8, Func. Count: 88, Neg. LLF: 85.76739939810658
Iteration: 9, Func. Count: 99, Neg. LLF: 85.758143291941
Iteration: 10, Func. Count: 109, Neg. LLF: 85.75812087227625
Iteration: 11, Func. Count: 119, Neg. LLF: 85.75811344647028
Iteration: 12, Func. Count: 128, Neg. LLF: 85.75811344648899
Optimization terminated successfully (Exit mode 0)
Current function value: 85.75811344647028
Iterations: 12
Function evaluations: 128
Gradient evaluations: 12
Iteration: 1, Func. Count: 12, Neg. LLF: 89.69011142602976
Iteration: 2, Func. Count: 25, Neg. LLF: 91.65696631682754
Iteration: 3, Func. Count: 37, Neg. LLF: 86.99546988575737
Iteration: 4, Func. Count: 49, Neg. LLF: 85.95956232717508
Iteration: 5, Func. Count: 60, Neg. LLF: 85.94597091999755
Iteration: 6, Func. Count: 71, Neg. LLF: 86.4206121960044
Iteration: 7, Func. Count: 83, Neg. LLF: 85.91121484820324
Iteration: 8, Func. Count: 95, Neg. LLF: 85.78161682797476
Iteration: 9, Func. Count: 106, Neg. LLF: 85.80256097009804
Iteration: 10, Func. Count: 118, Neg. LLF: 85.76143779663687
Iteration: 11, Func. Count: 129, Neg. LLF: 85.77131534243432
Iteration: 12, Func. Count: 141, Neg. LLF: 85.77480483542168
Iteration: 13, Func. Count: 153, Neg. LLF: 85.75813406155028
Iteration: 14, Func. Count: 164, Neg. LLF: 85.7581143511586
Iteration: 15, Func. Count: 175, Neg. LLF: 85.75811332889269
Iteration: 16, Func. Count: 185, Neg. LLF: 85.7581133296135
Optimization terminated successfully (Exit mode 0)
Current function value: 85.75811332889269
Iterations: 16
Function evaluations: 185
Gradient evaluations: 16
Iteration: 1, Func. Count: 13, Neg. LLF: 89.97052949291025
Iteration: 2, Func. Count: 28, Neg. LLF: 102.65986030865521
Iteration: 3, Func. Count: 41, Neg. LLF: 89.15153248628346
Iteration: 4, Func. Count: 54, Neg. LLF: 87.63445580294638
Iteration: 5, Func. Count: 67, Neg. LLF: 86.02813996432951
Iteration: 6, Func. Count: 79, Neg. LLF: 85.64534481678534
Iteration: 7, Func. Count: 91, Neg. LLF: 85.60579312914234
Iteration: 8, Func. Count: 103, Neg. LLF: 85.5585278811172
Iteration: 9, Func. Count: 115, Neg. LLF: 85.55569964221021
Iteration: 10, Func. Count: 127, Neg. LLF: 85.55531535576473
Iteration: 11, Func. Count: 139, Neg. LLF: 85.55529231511434
Iteration: 12, Func. Count: 151, Neg. LLF: 85.55527218797037
Iteration: 13, Func. Count: 163, Neg. LLF: 85.55527281107072
Iteration: 14, Func. Count: 185, Neg. LLF: 85.55527014978212
Iteration: 15, Func. Count: 207, Neg. LLF: 85.55537167740631
Iteration: 16, Func. Count: 221, Neg. LLF: 85.5552777920956
Iteration: 17, Func. Count: 243, Neg. LLF: 85.55549929150885
Iteration: 18, Func. Count: 257, Neg. LLF: 85.55528977706861
Iteration: 19, Func. Count: 271, Neg. LLF: 85.55528116918494
Iteration: 20, Func. Count: 284, Neg. LLF: 85.5552809883529
Iteration: 21, Func. Count: 295, Neg. LLF: 85.55528091891566
Optimization terminated successfully (Exit mode 0)
Current function value: 85.5552809883529
Iterations: 22
Function evaluations: 295
Gradient evaluations: 21
Iteration: 1, Func. Count: 10, Neg. LLF: 120.34421811957398
Iteration: 2, Func. Count: 22, Neg. LLF: 113.81556922957115
Iteration: 3, Func. Count: 32, Neg. LLF: 131.018193833673
Iteration: 4, Func. Count: 42, Neg. LLF: 103.57799628970582
Iteration: 5, Func. Count: 52, Neg. LLF: 86.38254754474929
Iteration: 6, Func. Count: 61, Neg. LLF: 86.29708647881807
Iteration: 7, Func. Count: 70, Neg. LLF: 86.29418177840924
Iteration: 8, Func. Count: 79, Neg. LLF: 86.29366230137374
Iteration: 9, Func. Count: 88, Neg. LLF: 86.29368675841336
Iteration: 10, Func. Count: 98, Neg. LLF: 86.29364938671829
Optimization terminated successfully (Exit mode 0)
Current function value: 86.29364938671829
Iterations: 10
Function evaluations: 98
Gradient evaluations: 10
Iteration: 1, Func. Count: 11, Neg. LLF: 90.86563243091402
Iteration: 2, Func. Count: 24, Neg. LLF: 99.31886625964981
Iteration: 3, Func. Count: 36, Neg. LLF: 86.585103810991
Iteration: 4, Func. Count: 46, Neg. LLF: 86.58188717628876
Iteration: 5, Func. Count: 57, Neg. LLF: 86.82066311351049
Iteration: 6, Func. Count: 68, Neg. LLF: 86.39646805875037
Iteration: 7, Func. Count: 78, Neg. LLF: 86.35929234618322
Iteration: 8, Func. Count: 88, Neg. LLF: 86.33188686147001
Iteration: 9, Func. Count: 98, Neg. LLF: 86.29430492415673
Iteration: 10, Func. Count: 108, Neg. LLF: 86.29366392402292
Iteration: 11, Func. Count: 118, Neg. LLF: 86.29365314627596
Iteration: 12, Func. Count: 128, Neg. LLF: 86.2936507983665
Iteration: 13, Func. Count: 138, Neg. LLF: 86.29364935301251
Iteration: 14, Func. Count: 147, Neg. LLF: 86.29364936725638
Optimization terminated successfully (Exit mode 0)
Current function value: 86.29364935301251
Iterations: 14
Function evaluations: 147
Gradient evaluations: 14
Iteration: 1, Func. Count: 12, Neg. LLF: 90.72538482176816
Iteration: 2, Func. Count: 26, Neg. LLF: 238.28149619596545
Iteration: 3, Func. Count: 39, Neg. LLF: 95.46997789240855
Iteration: 4, Func. Count: 51, Neg. LLF: 86.07369916591988
Iteration: 5, Func. Count: 62, Neg. LLF: 87.31267864015258
Iteration: 6, Func. Count: 74, Neg. LLF: 91.0412789730186
Iteration: 7, Func. Count: 86, Neg. LLF: 85.87223616825112
Iteration: 8, Func. Count: 97, Neg. LLF: 85.88338930710445
Iteration: 9, Func. Count: 109, Neg. LLF: 85.76375897787483
Iteration: 10, Func. Count: 120, Neg. LLF: 85.75882429029988
Iteration: 11, Func. Count: 131, Neg. LLF: 85.75814629384575
Iteration: 12, Func. Count: 142, Neg. LLF: 85.75811442007088
Iteration: 13, Func. Count: 153, Neg. LLF: 85.7581133970441
Iteration: 14, Func. Count: 163, Neg. LLF: 85.75811339700347
Optimization terminated successfully (Exit mode 0)
Current function value: 85.7581133970441
Iterations: 14
Function evaluations: 163
Gradient evaluations: 14
Iteration: 1, Func. Count: 13, Neg. LLF: 90.71499204738242
Iteration: 2, Func. Count: 28, Neg. LLF: 102.88249795490357
Iteration: 3, Func. Count: 41, Neg. LLF: 96.04361378604447
Iteration: 4, Func. Count: 55, Neg. LLF: 86.33233274385697
Iteration: 5, Func. Count: 67, Neg. LLF: 86.21113079239157
Iteration: 6, Func. Count: 79, Neg. LLF: 85.91167529135072
Iteration: 7, Func. Count: 91, Neg. LLF: 86.46624465602784
Iteration: 8, Func. Count: 104, Neg. LLF: 86.00048463722025
Iteration: 9, Func. Count: 117, Neg. LLF: 85.7779348086054
Iteration: 10, Func. Count: 130, Neg. LLF: 85.76615226123654
Iteration: 11, Func. Count: 143, Neg. LLF: 85.75832897440311
Iteration: 12, Func. Count: 155, Neg. LLF: 85.75814641826688
Iteration: 13, Func. Count: 167, Neg. LLF: 85.75811343874825
Iteration: 14, Func. Count: 178, Neg. LLF: 85.75811343958284
Optimization terminated successfully (Exit mode 0)
Current function value: 85.75811343874825
Iterations: 14
Function evaluations: 178
Gradient evaluations: 14
Iteration: 1, Func. Count: 14, Neg. LLF: 90.73166304883902
Iteration: 2, Func. Count: 30, Neg. LLF: 93.84092690243932
Iteration: 3, Func. Count: 44, Neg. LLF: 337.56511515919163
Iteration: 4, Func. Count: 58, Neg. LLF: 86.25280090690386
Iteration: 5, Func. Count: 71, Neg. LLF: 86.3946222960852
Iteration: 6, Func. Count: 85, Neg. LLF: 86.98241181376449
Iteration: 7, Func. Count: 99, Neg. LLF: 85.68956963351829
Iteration: 8, Func. Count: 112, Neg. LLF: 85.56631250570398
Iteration: 9, Func. Count: 125, Neg. LLF: 85.56252651899436
Iteration: 10, Func. Count: 138, Neg. LLF: 85.5575019886618
Iteration: 11, Func. Count: 151, Neg. LLF: 85.55578693966996
Iteration: 12, Func. Count: 164, Neg. LLF: 85.55553109515881
Iteration: 13, Func. Count: 177, Neg. LLF: 85.55528715853501
Iteration: 14, Func. Count: 190, Neg. LLF: 85.55526772329074
Iteration: 15, Func. Count: 203, Neg. LLF: 85.56006897875044
Iteration: 16, Func. Count: 218, Neg. LLF: 85.55532095804675
Iteration: 17, Func. Count: 233, Neg. LLF: 85.55528307459721
Iteration: 18, Func. Count: 248, Neg. LLF: 85.55528340014529
Iteration: 19, Func. Count: 262, Neg. LLF: 85.55528212291618
Iteration: 20, Func. Count: 276, Neg. LLF: 85.5552809598294
Iteration: 21, Func. Count: 288, Neg. LLF: 85.55528089040345
Optimization terminated successfully (Exit mode 0)
Current function value: 85.5552809598294
Iterations: 22
Function evaluations: 288
Gradient evaluations: 21
Iteration: 1, Func. Count: 11, Neg. LLF: 113.99708228606083
Iteration: 2, Func. Count: 24, Neg. LLF: 3930684.025625377
Iteration: 3, Func. Count: 35, Neg. LLF: 19365483.131419588
Iteration: 4, Func. Count: 46, Neg. LLF: 89.9455851758687
Iteration: 5, Func. Count: 57, Neg. LLF: 85.55893953382308
Iteration: 6, Func. Count: 67, Neg. LLF: 86.02601714802883
Iteration: 7, Func. Count: 78, Neg. LLF: 85.5194604497204
Iteration: 8, Func. Count: 88, Neg. LLF: 85.50791023381402
Iteration: 9, Func. Count: 98, Neg. LLF: 85.50695438433141
Iteration: 10, Func. Count: 108, Neg. LLF: 85.50676513296575
Iteration: 11, Func. Count: 118, Neg. LLF: 85.50676279646903
Iteration: 12, Func. Count: 127, Neg. LLF: 85.50676279649224
Optimization terminated successfully (Exit mode 0)
Current function value: 85.50676279646903
Iterations: 12
Function evaluations: 127
Gradient evaluations: 12
Iteration: 1, Func. Count: 12, Neg. LLF: 92.48890761464934
Iteration: 2, Func. Count: 25, Neg. LLF: 151.46670969386366
Iteration: 3, Func. Count: 37, Neg. LLF: 87.75824192969915
Iteration: 4, Func. Count: 49, Neg. LLF: 86.29084942494494
Iteration: 5, Func. Count: 61, Neg. LLF: 86.1938871476347
Iteration: 6, Func. Count: 73, Neg. LLF: 85.51600365607067
Iteration: 7, Func. Count: 84, Neg. LLF: 85.5100321719128
Iteration: 8, Func. Count: 95, Neg. LLF: 85.5071815591983
Iteration: 9, Func. Count: 106, Neg. LLF: 85.50678665695096
Iteration: 10, Func. Count: 117, Neg. LLF: 85.50676275613873
Iteration: 11, Func. Count: 127, Neg. LLF: 85.50676277346142
Optimization terminated successfully (Exit mode 0)
Current function value: 85.50676275613873
Iterations: 11
Function evaluations: 127
Gradient evaluations: 11
Iteration: 1, Func. Count: 13, Neg. LLF: 90.26280887826002
Iteration: 2, Func. Count: 27, Neg. LLF: 6022147.49363991
Iteration: 3, Func. Count: 40, Neg. LLF: 87.97880499834858
Iteration: 4, Func. Count: 53, Neg. LLF: 85.88541350918885
Iteration: 5, Func. Count: 65, Neg. LLF: 86.58455865145194
Iteration: 6, Func. Count: 78, Neg. LLF: 85.57207903674774
Iteration: 7, Func. Count: 90, Neg. LLF: 85.51876873072854
Iteration: 8, Func. Count: 102, Neg. LLF: 85.50864721176008
Iteration: 9, Func. Count: 114, Neg. LLF: 85.50687280052057
Iteration: 10, Func. Count: 126, Neg. LLF: 85.50676363329515
Iteration: 11, Func. Count: 138, Neg. LLF: 85.50676269759755
Optimization terminated successfully (Exit mode 0)
Current function value: 85.50676269759755
Iterations: 11
Function evaluations: 138
Gradient evaluations: 11
Iteration: 1, Func. Count: 14, Neg. LLF: 90.16542145353448
Iteration: 2, Func. Count: 30, Neg. LLF: 6153668.142246172
Iteration: 3, Func. Count: 44, Neg. LLF: 89.06838958348447
Iteration: 4, Func. Count: 58, Neg. LLF: 88.70789823426442
Iteration: 5, Func. Count: 72, Neg. LLF: 85.65673295548159
Iteration: 6, Func. Count: 85, Neg. LLF: 85.53404458232453
Iteration: 7, Func. Count: 98, Neg. LLF: 85.50833386187709
Iteration: 8, Func. Count: 111, Neg. LLF: 85.50691190448534
Iteration: 9, Func. Count: 124, Neg. LLF: 85.50683884055536
Iteration: 10, Func. Count: 137, Neg. LLF: 85.50676333407648
Iteration: 11, Func. Count: 150, Neg. LLF: 85.506762698462
Optimization terminated successfully (Exit mode 0)
Current function value: 85.506762698462
Iterations: 11
Function evaluations: 150
Gradient evaluations: 11
Iteration: 1, Func. Count: 15, Neg. LLF: 92.44662589840962
Iteration: 2, Func. Count: 31, Neg. LLF: 1997513.8110909287
Iteration: 3, Func. Count: 46, Neg. LLF: 87.47638939051419
Iteration: 4, Func. Count: 61, Neg. LLF: 94.53451552931608
Iteration: 5, Func. Count: 76, Neg. LLF: 88.69046133497793
Iteration: 6, Func. Count: 92, Neg. LLF: 84.78861265313573
Iteration: 7, Func. Count: 106, Neg. LLF: 89.3495137142253
Iteration: 8, Func. Count: 122, Neg. LLF: 84.55613295893767
Iteration: 9, Func. Count: 136, Neg. LLF: 84.43760268145184
Iteration: 10, Func. Count: 150, Neg. LLF: 84.41052790164622
Iteration: 11, Func. Count: 164, Neg. LLF: 84.37159681192911
Iteration: 12, Func. Count: 178, Neg. LLF: 84.36055877240734
Iteration: 13, Func. Count: 192, Neg. LLF: 84.35676271553518
Iteration: 14, Func. Count: 206, Neg. LLF: 84.35661915198482
Iteration: 15, Func. Count: 220, Neg. LLF: 84.35661786003394
Iteration: 16, Func. Count: 233, Neg. LLF: 84.35661783453733
Optimization terminated successfully (Exit mode 0)
Current function value: 84.35661786003394
Iterations: 16
Function evaluations: 233
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 116.58186398611312
Iteration: 2, Func. Count: 26, Neg. LLF: 5409860.293307125
Iteration: 3, Func. Count: 38, Neg. LLF: 13215143.568798453
Iteration: 4, Func. Count: 50, Neg. LLF: 123.5830478537383
Iteration: 5, Func. Count: 62, Neg. LLF: 86.39864639836625
Iteration: 6, Func. Count: 74, Neg. LLF: 85.57703252041688
Iteration: 7, Func. Count: 85, Neg. LLF: 85.5132024811826
Iteration: 8, Func. Count: 96, Neg. LLF: 85.4966122856412
Iteration: 9, Func. Count: 107, Neg. LLF: 85.48041898838312
Iteration: 10, Func. Count: 118, Neg. LLF: 85.47924254011618
Iteration: 11, Func. Count: 129, Neg. LLF: 85.47909461556162
Iteration: 12, Func. Count: 140, Neg. LLF: 85.47909296700577
Iteration: 13, Func. Count: 150, Neg. LLF: 85.47909294334914
Optimization terminated successfully (Exit mode 0)
Current function value: 85.47909296700577
Iterations: 13
Function evaluations: 150
Gradient evaluations: 13
Iteration: 1, Func. Count: 13, Neg. LLF: 88.05791657552382
Iteration: 2, Func. Count: 28, Neg. LLF: 17008001.921154633
Iteration: 3, Func. Count: 41, Neg. LLF: 3455870.3728493317
Iteration: 4, Func. Count: 54, Neg. LLF: 96.38020890961903
Iteration: 5, Func. Count: 67, Neg. LLF: 85.59345447109396
Iteration: 6, Func. Count: 79, Neg. LLF: 88.58403034567743
Iteration: 7, Func. Count: 92, Neg. LLF: 85.49440334640097
Iteration: 8, Func. Count: 104, Neg. LLF: 85.48647187396251
Iteration: 9, Func. Count: 116, Neg. LLF: 85.48244752536856
Iteration: 10, Func. Count: 128, Neg. LLF: 85.48011339224209
Iteration: 11, Func. Count: 140, Neg. LLF: 85.47933313870735
Iteration: 12, Func. Count: 152, Neg. LLF: 85.47911066171412
Iteration: 13, Func. Count: 164, Neg. LLF: 85.47909329254111
Iteration: 14, Func. Count: 175, Neg. LLF: 85.47909330667068
Optimization terminated successfully (Exit mode 0)
Current function value: 85.47909329254111
Iterations: 14
Function evaluations: 175
Gradient evaluations: 14
Iteration: 1, Func. Count: 14, Neg. LLF: 88.48876542791696
Iteration: 2, Func. Count: 30, Neg. LLF: 16809499.13177064
Iteration: 3, Func. Count: 44, Neg. LLF: 1093655.413766255
Iteration: 4, Func. Count: 58, Neg. LLF: 101.548599875331
Iteration: 5, Func. Count: 72, Neg. LLF: 85.91418553190253
Iteration: 6, Func. Count: 86, Neg. LLF: 85.63481292110214
Iteration: 7, Func. Count: 99, Neg. LLF: 85.50650438900911
Iteration: 8, Func. Count: 112, Neg. LLF: 85.48322154993627
Iteration: 9, Func. Count: 125, Neg. LLF: 85.48096740492163
Iteration: 10, Func. Count: 138, Neg. LLF: 85.48002546487605
Iteration: 11, Func. Count: 151, Neg. LLF: 85.47933040950812
Iteration: 12, Func. Count: 164, Neg. LLF: 85.47916438101767
Iteration: 13, Func. Count: 177, Neg. LLF: 85.47909552437466
Iteration: 14, Func. Count: 190, Neg. LLF: 85.47909293766132
Iteration: 15, Func. Count: 202, Neg. LLF: 85.47909296276681
Optimization terminated successfully (Exit mode 0)
Current function value: 85.47909293766132
Iterations: 15
Function evaluations: 202
Gradient evaluations: 15
Iteration: 1, Func. Count: 15, Neg. LLF: 88.53250668593458
Iteration: 2, Func. Count: 32, Neg. LLF: 11573749.411305822
Iteration: 3, Func. Count: 47, Neg. LLF: 5445738.306985389
Iteration: 4, Func. Count: 62, Neg. LLF: 129.08224998471863
Iteration: 5, Func. Count: 77, Neg. LLF: 89.48315083176409
Iteration: 6, Func. Count: 92, Neg. LLF: 85.61339585783269
Iteration: 7, Func. Count: 106, Neg. LLF: 85.51513004776497
Iteration: 8, Func. Count: 120, Neg. LLF: 85.48594076720738
Iteration: 9, Func. Count: 134, Neg. LLF: 85.4809335900262
Iteration: 10, Func. Count: 148, Neg. LLF: 85.47989862108646
Iteration: 11, Func. Count: 162, Neg. LLF: 85.47938841551648
Iteration: 12, Func. Count: 176, Neg. LLF: 85.47919119268133
Iteration: 13, Func. Count: 190, Neg. LLF: 85.4790953494128
Iteration: 14, Func. Count: 204, Neg. LLF: 85.47909291432187
Iteration: 15, Func. Count: 217, Neg. LLF: 85.47909293497334
Optimization terminated successfully (Exit mode 0)
Current function value: 85.47909291432187
Iterations: 15
Function evaluations: 217
Gradient evaluations: 15
Iteration: 1, Func. Count: 16, Neg. LLF: 88.60422706780946
Iteration: 2, Func. Count: 34, Neg. LLF: 15776036.924386883
Iteration: 3, Func. Count: 50, Neg. LLF: 7847330.946307728
Iteration: 4, Func. Count: 66, Neg. LLF: 97.746414689306
Iteration: 5, Func. Count: 82, Neg. LLF: 86.139134362138
Iteration: 6, Func. Count: 98, Neg. LLF: 85.2002374079931
Iteration: 7, Func. Count: 114, Neg. LLF: 84.88308747647058
Iteration: 8, Func. Count: 129, Neg. LLF: 84.93484518450634
Iteration: 9, Func. Count: 145, Neg. LLF: 84.52528293021055
Iteration: 10, Func. Count: 160, Neg. LLF: 84.46735515722156
Iteration: 11, Func. Count: 175, Neg. LLF: 84.50353984015659
Iteration: 12, Func. Count: 191, Neg. LLF: 84.41092910127871
Iteration: 13, Func. Count: 206, Neg. LLF: 84.37259503999032
Iteration: 14, Func. Count: 221, Neg. LLF: 84.35749689078
Iteration: 15, Func. Count: 236, Neg. LLF: 84.35688013419362
Iteration: 16, Func. Count: 251, Neg. LLF: 84.35678166486176
Iteration: 17, Func. Count: 266, Neg. LLF: 84.3567452529526
Iteration: 18, Func. Count: 281, Neg. LLF: 84.3566849007985
Iteration: 19, Func. Count: 296, Neg. LLF: 84.35663873994767
Iteration: 20, Func. Count: 311, Neg. LLF: 84.35662020788962
Iteration: 21, Func. Count: 326, Neg. LLF: 84.35661787999243
Iteration: 22, Func. Count: 340, Neg. LLF: 84.3566178546119
Optimization terminated successfully (Exit mode 0)
Current function value: 84.35661787999243
Iterations: 22
Function evaluations: 340
Gradient evaluations: 22
Iteration: 1, Func. Count: 5, Neg. LLF: 136.8309071486057
Iteration: 2, Func. Count: 13, Neg. LLF: 171.49270235336655
Iteration: 3, Func. Count: 19, Neg. LLF: 86.64887021228364
Iteration: 4, Func. Count: 23, Neg. LLF: 86.56902110919731
Iteration: 5, Func. Count: 28, Neg. LLF: 86.46471264048705
Iteration: 6, Func. Count: 32, Neg. LLF: 86.45849365798962
Iteration: 7, Func. Count: 36, Neg. LLF: 86.4584446336862
Iteration: 8, Func. Count: 40, Neg. LLF: 86.45844344023627
Iteration: 9, Func. Count: 43, Neg. LLF: 86.45844344019524
Optimization terminated successfully (Exit mode 0)
Current function value: 86.45844344023627
Iterations: 9
Function evaluations: 43
Gradient evaluations: 9
Iteration: 1, Func. Count: 5, Neg. LLF: 143.95733961092097
Iteration: 2, Func. Count: 13, Neg. LLF: 178.09728212956975
Iteration: 3, Func. Count: 19, Neg. LLF: 87.2830438668475
Iteration: 4, Func. Count: 24, Neg. LLF: 87.07188919331352
Iteration: 5, Func. Count: 29, Neg. LLF: 87.03754295825983
Iteration: 6, Func. Count: 33, Neg. LLF: 87.03381830909642
Iteration: 7, Func. Count: 37, Neg. LLF: 87.0337957378291
Iteration: 8, Func. Count: 40, Neg. LLF: 87.03379573782904
Optimization terminated successfully (Exit mode 0)
Current function value: 87.0337957378291
Iterations: 8
Function evaluations: 40
Gradient evaluations: 8
Iteration: 1, Func. Count: 6, Neg. LLF: 90.32877567039459
Iteration: 2, Func. Count: 13, Neg. LLF: 87.28911343297187
Iteration: 3, Func. Count: 19, Neg. LLF: 87.03546203217614
Iteration: 4, Func. Count: 24, Neg. LLF: 87.18665769216258
Iteration: 5, Func. Count: 31, Neg. LLF: 87.03398248401015
Iteration: 6, Func. Count: 36, Neg. LLF: 87.03381395193762
Iteration: 7, Func. Count: 41, Neg. LLF: 87.0338049237086
Iteration: 8, Func. Count: 46, Neg. LLF: 87.03379582017038
Iteration: 9, Func. Count: 50, Neg. LLF: 87.03379583039319
Optimization terminated successfully (Exit mode 0)
Current function value: 87.03379582017038
Iterations: 9
Function evaluations: 50
Gradient evaluations: 9
Iteration: 1, Func. Count: 7, Neg. LLF: 94.53476335753811
Iteration: 2, Func. Count: 15, Neg. LLF: 87.28215185465498
Iteration: 3, Func. Count: 22, Neg. LLF: 86.9840774670695
Iteration: 4, Func. Count: 28, Neg. LLF: 86.96886693633047
Iteration: 5, Func. Count: 34, Neg. LLF: 86.93144712004577
Iteration: 6, Func. Count: 40, Neg. LLF: 86.9108591192075
Iteration: 7, Func. Count: 46, Neg. LLF: 86.89758472190238
Iteration: 8, Func. Count: 52, Neg. LLF: 87.12706160646842
Iteration: 9, Func. Count: 59, Neg. LLF: 87.08193009280727
Iteration: 10, Func. Count: 66, Neg. LLF: 87.076066730172
Iteration: 11, Func. Count: 73, Neg. LLF: 86.89162227641576
Iteration: 12, Func. Count: 80, Neg. LLF: 86.86944675813686
Iteration: 13, Func. Count: 86, Neg. LLF: 86.86863892546752
Iteration: 14, Func. Count: 92, Neg. LLF: 86.86883754722527
Iteration: 15, Func. Count: 99, Neg. LLF: 86.86808820786113
Iteration: 16, Func. Count: 105, Neg. LLF: 86.86808645854595
Iteration: 17, Func. Count: 110, Neg. LLF: 86.86808645855453
Optimization terminated successfully (Exit mode 0)
Current function value: 86.86808645854595
Iterations: 17
Function evaluations: 110
Gradient evaluations: 17
Iteration: 1, Func. Count: 8, Neg. LLF: 104.25856427937802
Iteration: 2, Func. Count: 17, Neg. LLF: 87.28586200721814
Iteration: 3, Func. Count: 25, Neg. LLF: 86.92833340599702
Iteration: 4, Func. Count: 32, Neg. LLF: 88.49299611494669
Iteration: 5, Func. Count: 40, Neg. LLF: 86.90702358964631
Iteration: 6, Func. Count: 47, Neg. LLF: 86.88695602795586
Iteration: 7, Func. Count: 54, Neg. LLF: 86.88000005085051
Iteration: 8, Func. Count: 61, Neg. LLF: 86.87283244045358
Iteration: 9, Func. Count: 68, Neg. LLF: 86.88008263134763
Iteration: 10, Func. Count: 76, Neg. LLF: 86.86857397229154
Iteration: 11, Func. Count: 83, Neg. LLF: 86.86809642178005
Iteration: 12, Func. Count: 90, Neg. LLF: 86.8680869856388
Iteration: 13, Func. Count: 97, Neg. LLF: 86.86808645068359
Optimization terminated successfully (Exit mode 0)
Current function value: 86.86808645068359
Iterations: 13
Function evaluations: 97
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 106.18410640688062
Iteration: 2, Func. Count: 19, Neg. LLF: 91.7831541619296
Iteration: 3, Func. Count: 29, Neg. LLF: 86.91619146603361
Iteration: 4, Func. Count: 37, Neg. LLF: 87.05172993714785
Iteration: 5, Func. Count: 46, Neg. LLF: 86.89506597205839
Iteration: 6, Func. Count: 54, Neg. LLF: 86.87704585243425
Iteration: 7, Func. Count: 62, Neg. LLF: 86.91601527544711
Iteration: 8, Func. Count: 71, Neg. LLF: 86.87127455967166
Iteration: 9, Func. Count: 79, Neg. LLF: 86.8699653618918
Iteration: 10, Func. Count: 87, Neg. LLF: 86.86730735409071
Iteration: 11, Func. Count: 95, Neg. LLF: 86.86703091762749
Iteration: 12, Func. Count: 103, Neg. LLF: 86.86701833253073
Iteration: 13, Func. Count: 111, Neg. LLF: 86.86700920127868
Iteration: 14, Func. Count: 118, Neg. LLF: 86.86700920128537
Optimization terminated successfully (Exit mode 0)
Current function value: 86.86700920127868
Iterations: 14
Function evaluations: 118
Gradient evaluations: 14
Iteration: 1, Func. Count: 6, Neg. LLF: 140.2653304406679
Iteration: 2, Func. Count: 15, Neg. LLF: 171.73210384246514
Iteration: 3, Func. Count: 22, Neg. LLF: 87.28404997685954
Iteration: 4, Func. Count: 27, Neg. LLF: 87.07062504541592
Iteration: 5, Func. Count: 32, Neg. LLF: 87.04457381631015
Iteration: 6, Func. Count: 37, Neg. LLF: 87.03436416619556
Iteration: 7, Func. Count: 42, Neg. LLF: 87.03380366906538
Iteration: 8, Func. Count: 47, Neg. LLF: 87.03379572100276
Iteration: 9, Func. Count: 51, Neg. LLF: 87.03379581497956
Optimization terminated successfully (Exit mode 0)
Current function value: 87.03379572100276
Iterations: 9
Function evaluations: 51
Gradient evaluations: 9
Iteration: 1, Func. Count: 7, Neg. LLF: 92.80149002378303
Iteration: 2, Func. Count: 16, Neg. LLF: 109.08545289558452
Iteration: 3, Func. Count: 24, Neg. LLF: 87.19758304959365
Iteration: 4, Func. Count: 30, Neg. LLF: 87.06826922609528
Iteration: 5, Func. Count: 36, Neg. LLF: 87.06293627997408
Iteration: 6, Func. Count: 42, Neg. LLF: 87.04308040233514
Iteration: 7, Func. Count: 48, Neg. LLF: 87.03454817193635
Iteration: 8, Func. Count: 54, Neg. LLF: 87.03397815099243
Iteration: 9, Func. Count: 60, Neg. LLF: 87.03381950428573
Iteration: 10, Func. Count: 66, Neg. LLF: 87.03380630585397
Iteration: 11, Func. Count: 72, Neg. LLF: 87.0337967753194
Iteration: 12, Func. Count: 78, Neg. LLF: 87.03379578561797
Optimization terminated successfully (Exit mode 0)
Current function value: 87.03379578561797
Iterations: 12
Function evaluations: 78
Gradient evaluations: 12
Iteration: 1, Func. Count: 8, Neg. LLF: 93.43140916938124
Iteration: 2, Func. Count: 18, Neg. LLF: 287.8329357324433
Iteration: 3, Func. Count: 27, Neg. LLF: 86.97085566899845
Iteration: 4, Func. Count: 34, Neg. LLF: 86.95366577124528
Iteration: 5, Func. Count: 41, Neg. LLF: 86.92853676824033
Iteration: 6, Func. Count: 48, Neg. LLF: 86.91118669865061
Iteration: 7, Func. Count: 55, Neg. LLF: 87.12193732523916
Iteration: 8, Func. Count: 63, Neg. LLF: 87.15954472895433
Iteration: 9, Func. Count: 71, Neg. LLF: 87.10393568042278
Iteration: 10, Func. Count: 79, Neg. LLF: 86.9080610036609
Iteration: 11, Func. Count: 87, Neg. LLF: 86.8701451488792
Iteration: 12, Func. Count: 94, Neg. LLF: 86.8688745878377
Iteration: 13, Func. Count: 101, Neg. LLF: 86.86863547759039
Iteration: 14, Func. Count: 108, Neg. LLF: 86.86813320613099
Iteration: 15, Func. Count: 115, Neg. LLF: 86.8680886732849
Iteration: 16, Func. Count: 122, Neg. LLF: 86.86808640982846
Iteration: 17, Func. Count: 128, Neg. LLF: 86.86808640982511
Optimization terminated successfully (Exit mode 0)
Current function value: 86.86808640982846
Iterations: 17
Function evaluations: 128
Gradient evaluations: 17
Iteration: 1, Func. Count: 9, Neg. LLF: 201.0457744902177
Iteration: 2, Func. Count: 19, Neg. LLF: 13964129.692583231
Iteration: 3, Func. Count: 29, Neg. LLF: 87.31355609412773
Iteration: 4, Func. Count: 38, Neg. LLF: 87.0140472471165
Iteration: 5, Func. Count: 46, Neg. LLF: 86.95664486603057
Iteration: 6, Func. Count: 54, Neg. LLF: 86.9197137041226
Iteration: 7, Func. Count: 62, Neg. LLF: 86.90189397003032
Iteration: 8, Func. Count: 70, Neg. LLF: 86.87553040777865
Iteration: 9, Func. Count: 78, Neg. LLF: 86.86997055104462
Iteration: 10, Func. Count: 86, Neg. LLF: 86.86834649705901
Iteration: 11, Func. Count: 94, Neg. LLF: 86.86809710563136
Iteration: 12, Func. Count: 102, Neg. LLF: 86.86808673524436
Iteration: 13, Func. Count: 109, Neg. LLF: 86.8680867401688
Optimization terminated successfully (Exit mode 0)
Current function value: 86.86808673524436
Iterations: 13
Function evaluations: 109
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 11541782.982439661
Iteration: 2, Func. Count: 21, Neg. LLF: 11640575.408181205
Iteration: 3, Func. Count: 32, Neg. LLF: 87.19089100027166
Iteration: 4, Func. Count: 42, Neg. LLF: 86.91176539699102
Iteration: 5, Func. Count: 51, Neg. LLF: 86.96654439406595
Iteration: 6, Func. Count: 61, Neg. LLF: 86.86998698340426
Iteration: 7, Func. Count: 70, Neg. LLF: 86.86822248072386
Iteration: 8, Func. Count: 79, Neg. LLF: 86.86723845578186
Iteration: 9, Func. Count: 88, Neg. LLF: 86.86706835576838
Iteration: 10, Func. Count: 97, Neg. LLF: 86.86702679399845
Iteration: 11, Func. Count: 106, Neg. LLF: 86.8670095076931
Iteration: 12, Func. Count: 114, Neg. LLF: 86.86700950761582
Optimization terminated successfully (Exit mode 0)
Current function value: 86.8670095076931
Iterations: 12
Function evaluations: 114
Gradient evaluations: 12
Iteration: 1, Func. Count: 7, Neg. LLF: 138.40583005053534
Iteration: 2, Func. Count: 17, Neg. LLF: 263.2030185906308
Iteration: 3, Func. Count: 25, Neg. LLF: 88.36153570542852
Iteration: 4, Func. Count: 32, Neg. LLF: 86.76523892826573
Iteration: 5, Func. Count: 38, Neg. LLF: 86.65157296568005
Iteration: 6, Func. Count: 44, Neg. LLF: 86.64015059573147
Iteration: 7, Func. Count: 50, Neg. LLF: 86.63307071584352
Iteration: 8, Func. Count: 56, Neg. LLF: 86.63285785088378
Iteration: 9, Func. Count: 62, Neg. LLF: 86.63285182378188
Iteration: 10, Func. Count: 67, Neg. LLF: 86.63285182378466
Optimization terminated successfully (Exit mode 0)
Current function value: 86.63285182378188
Iterations: 10
Function evaluations: 67
Gradient evaluations: 10
Iteration: 1, Func. Count: 8, Neg. LLF: 91.67851925458044
Iteration: 2, Func. Count: 18, Neg. LLF: 102.96994671791215
Iteration: 3, Func. Count: 26, Neg. LLF: 89.26980467073331
Iteration: 4, Func. Count: 35, Neg. LLF: 86.84901899702596
Iteration: 5, Func. Count: 42, Neg. LLF: 86.81651767375645
Iteration: 6, Func. Count: 50, Neg. LLF: 86.63405072455151
Iteration: 7, Func. Count: 57, Neg. LLF: 86.63297869643993
Iteration: 8, Func. Count: 64, Neg. LLF: 86.63287052370345
Iteration: 9, Func. Count: 71, Neg. LLF: 86.63285205717922
Iteration: 10, Func. Count: 77, Neg. LLF: 86.63285206610519
Optimization terminated successfully (Exit mode 0)
Current function value: 86.63285205717922
Iterations: 10
Function evaluations: 77
Gradient evaluations: 10
Iteration: 1, Func. Count: 9, Neg. LLF: 93.69953946165143
Iteration: 2, Func. Count: 20, Neg. LLF: 219.20150042544833
Iteration: 3, Func. Count: 29, Neg. LLF: 88.55183007216054
Iteration: 4, Func. Count: 39, Neg. LLF: 86.98182223826642
Iteration: 5, Func. Count: 47, Neg. LLF: 86.82182186113235
Iteration: 6, Func. Count: 55, Neg. LLF: 86.6639856426987
Iteration: 7, Func. Count: 63, Neg. LLF: 86.63720708631607
Iteration: 8, Func. Count: 71, Neg. LLF: 86.63290390648582
Iteration: 9, Func. Count: 79, Neg. LLF: 86.63285682371988
Iteration: 10, Func. Count: 87, Neg. LLF: 86.63285434004494
Iteration: 11, Func. Count: 95, Neg. LLF: 86.6328524966766
Iteration: 12, Func. Count: 102, Neg. LLF: 86.63285252295633
Optimization terminated successfully (Exit mode 0)
Current function value: 86.6328524966766
Iterations: 12
Function evaluations: 102
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 203.32118155076512
Iteration: 2, Func. Count: 21, Neg. LLF: 4446035.042380954
Iteration: 3, Func. Count: 32, Neg. LLF: 126.97537320567872
Iteration: 4, Func. Count: 43, Neg. LLF: 87.04008562531538
Iteration: 5, Func. Count: 52, Neg. LLF: 86.93744379164434
Iteration: 6, Func. Count: 61, Neg. LLF: 86.88827697836938
Iteration: 7, Func. Count: 70, Neg. LLF: 86.86737833254027
Iteration: 8, Func. Count: 79, Neg. LLF: 87.2573714233814
Iteration: 9, Func. Count: 89, Neg. LLF: 113.94327365797821
Iteration: 10, Func. Count: 99, Neg. LLF: 110.84752580186947
Iteration: 11, Func. Count: 109, Neg. LLF: 108.6200519143141
Iteration: 12, Func. Count: 119, Neg. LLF: 88.3630761171367
Iteration: 13, Func. Count: 129, Neg. LLF: 119.6542194006197
Iteration: 14, Func. Count: 140, Neg. LLF: 87.91746179858707
Iteration: 15, Func. Count: 150, Neg. LLF: 105.84070801775938
Iteration: 16, Func. Count: 160, Neg. LLF: 89.92697416093615
Iteration: 17, Func. Count: 170, Neg. LLF: 89.26350834145643
Iteration: 18, Func. Count: 180, Neg. LLF: 87.24550596713051
Iteration: 19, Func. Count: 190, Neg. LLF: 86.32983043917383
Iteration: 20, Func. Count: 199, Neg. LLF: 86.2916717249327
Iteration: 21, Func. Count: 208, Neg. LLF: 86.29595994799297
Iteration: 22, Func. Count: 218, Neg. LLF: 86.2797973292454
Iteration: 23, Func. Count: 227, Neg. LLF: 86.2793717633505
Iteration: 24, Func. Count: 236, Neg. LLF: 86.27928012992278
Iteration: 25, Func. Count: 245, Neg. LLF: 86.27924558710495
Iteration: 26, Func. Count: 253, Neg. LLF: 86.27924558698403
Optimization terminated successfully (Exit mode 0)
Current function value: 86.27924558710495
Iterations: 27
Function evaluations: 253
Gradient evaluations: 26
Iteration: 1, Func. Count: 11, Neg. LLF: 4057849.527207587
Iteration: 2, Func. Count: 22, Neg. LLF: 15609074.85313246
Iteration: 3, Func. Count: 34, Neg. LLF: 104.39516423608472
Iteration: 4, Func. Count: 46, Neg. LLF: 86.20241520800012
Iteration: 5, Func. Count: 56, Neg. LLF: 86.5607924522963
Iteration: 6, Func. Count: 67, Neg. LLF: 86.59940243782235
Iteration: 7, Func. Count: 78, Neg. LLF: 86.18440189715314
Iteration: 8, Func. Count: 89, Neg. LLF: 86.11483297023094
Iteration: 9, Func. Count: 99, Neg. LLF: 86.09871094818662
Iteration: 10, Func. Count: 109, Neg. LLF: 86.08872258775742
Iteration: 11, Func. Count: 119, Neg. LLF: 86.08690026809711
Iteration: 12, Func. Count: 129, Neg. LLF: 86.08664387253458
Iteration: 13, Func. Count: 139, Neg. LLF: 86.08650224603149
Iteration: 14, Func. Count: 149, Neg. LLF: 86.08627170805552
Iteration: 15, Func. Count: 159, Neg. LLF: 86.08617314864927
Iteration: 16, Func. Count: 169, Neg. LLF: 86.08616318234144
Iteration: 17, Func. Count: 179, Neg. LLF: 86.08616263546344
Optimization terminated successfully (Exit mode 0)
Current function value: 86.08616263546344
Iterations: 17
Function evaluations: 179
Gradient evaluations: 17
Iteration: 1, Func. Count: 8, Neg. LLF: 136.87604976301515
Iteration: 2, Func. Count: 19, Neg. LLF: 332.0260040808462
Iteration: 3, Func. Count: 28, Neg. LLF: 1893721.2765917107
Iteration: 4, Func. Count: 36, Neg. LLF: 87.21504251332787
Iteration: 5, Func. Count: 44, Neg. LLF: 86.67282197946831
Iteration: 6, Func. Count: 51, Neg. LLF: 86.64743933433664
Iteration: 7, Func. Count: 58, Neg. LLF: 86.88186593148572
Iteration: 8, Func. Count: 67, Neg. LLF: 86.6392339393257
Iteration: 9, Func. Count: 74, Neg. LLF: 86.63307170356421
Iteration: 10, Func. Count: 81, Neg. LLF: 86.63285695454346
Iteration: 11, Func. Count: 88, Neg. LLF: 86.63285173232559
Iteration: 12, Func. Count: 94, Neg. LLF: 86.63285173233416
Optimization terminated successfully (Exit mode 0)
Current function value: 86.63285173232559
Iterations: 12
Function evaluations: 94
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 91.59876134034573
Iteration: 2, Func. Count: 20, Neg. LLF: 102.0227455338643
Iteration: 3, Func. Count: 29, Neg. LLF: 88.07656418165813
Iteration: 4, Func. Count: 40, Neg. LLF: 86.87393247855331
Iteration: 5, Func. Count: 48, Neg. LLF: 86.75144441389145
Iteration: 6, Func. Count: 56, Neg. LLF: 86.64093460953202
Iteration: 7, Func. Count: 64, Neg. LLF: 86.63452312882343
Iteration: 8, Func. Count: 72, Neg. LLF: 86.63359476422713
Iteration: 9, Func. Count: 80, Neg. LLF: 86.63330874430974
Iteration: 10, Func. Count: 88, Neg. LLF: 86.63304839573632
Iteration: 11, Func. Count: 96, Neg. LLF: 86.63288675920079
Iteration: 12, Func. Count: 104, Neg. LLF: 86.6328642070524
Iteration: 13, Func. Count: 112, Neg. LLF: 86.63285203379844
Iteration: 14, Func. Count: 119, Neg. LLF: 86.63285204272341
Optimization terminated successfully (Exit mode 0)
Current function value: 86.63285203379844
Iterations: 14
Function evaluations: 119
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 93.43429197343667
Iteration: 2, Func. Count: 22, Neg. LLF: 234.89132844212435
Iteration: 3, Func. Count: 32, Neg. LLF: 88.42963832482972
Iteration: 4, Func. Count: 43, Neg. LLF: 86.97842603951634
Iteration: 5, Func. Count: 52, Neg. LLF: 86.81937456086209
Iteration: 6, Func. Count: 61, Neg. LLF: 86.6618342807672
Iteration: 7, Func. Count: 70, Neg. LLF: 86.63700865003123
Iteration: 8, Func. Count: 79, Neg. LLF: 86.6328868435984
Iteration: 9, Func. Count: 88, Neg. LLF: 86.6328527105298
Iteration: 10, Func. Count: 97, Neg. LLF: 86.63294729096313
Optimization terminated successfully (Exit mode 0)
Current function value: 86.63285253852196
Iterations: 10
Function evaluations: 99
Gradient evaluations: 10
Iteration: 1, Func. Count: 11, Neg. LLF: 189.45594725915802
Iteration: 2, Func. Count: 23, Neg. LLF: 4450538.365271645
Iteration: 3, Func. Count: 35, Neg. LLF: 119.52866976767537
Iteration: 4, Func. Count: 47, Neg. LLF: 87.05189749486821
Iteration: 5, Func. Count: 57, Neg. LLF: 86.89844994836882
Iteration: 6, Func. Count: 67, Neg. LLF: 86.91030323859168
Iteration: 7, Func. Count: 78, Neg. LLF: 86.7593658762015
Iteration: 8, Func. Count: 88, Neg. LLF: 96.0779361090446
Iteration: 9, Func. Count: 99, Neg. LLF: 95.25969526884374
Iteration: 10, Func. Count: 110, Neg. LLF: 94.38923481491297
Iteration: 11, Func. Count: 121, Neg. LLF: 88.78412028572326
Iteration: 12, Func. Count: 132, Neg. LLF: 89.44787959858202
Iteration: 13, Func. Count: 143, Neg. LLF: 93.10097514695602
Iteration: 14, Func. Count: 154, Neg. LLF: 87.35257867799116
Iteration: 15, Func. Count: 165, Neg. LLF: 86.6883570616445
Iteration: 16, Func. Count: 176, Neg. LLF: 86.307213669323
Iteration: 17, Func. Count: 186, Neg. LLF: 87.22373905591812
Iteration: 18, Func. Count: 197, Neg. LLF: 86.28789737296688
Iteration: 19, Func. Count: 207, Neg. LLF: 86.28158546546574
Iteration: 20, Func. Count: 217, Neg. LLF: 86.27543174607017
Iteration: 21, Func. Count: 227, Neg. LLF: 86.27202757734874
Iteration: 22, Func. Count: 237, Neg. LLF: 86.27084341568087
Iteration: 23, Func. Count: 247, Neg. LLF: 86.27080127913885
Iteration: 24, Func. Count: 256, Neg. LLF: 86.27080127906446
Optimization terminated successfully (Exit mode 0)
Current function value: 86.27080127913885
Iterations: 24
Function evaluations: 256
Gradient evaluations: 24
Iteration: 1, Func. Count: 12, Neg. LLF: 4059313.2115503973
Iteration: 2, Func. Count: 24, Neg. LLF: 15677988.251156522
Iteration: 3, Func. Count: 37, Neg. LLF: 104.24547670093736
Iteration: 4, Func. Count: 50, Neg. LLF: 86.20488967728735
Iteration: 5, Func. Count: 61, Neg. LLF: 86.5647432373335
Iteration: 6, Func. Count: 73, Neg. LLF: 86.63573158138217
Iteration: 7, Func. Count: 85, Neg. LLF: 86.21890104238629
Iteration: 8, Func. Count: 97, Neg. LLF: 86.11523857382277
Iteration: 9, Func. Count: 108, Neg. LLF: 86.10054690317142
Iteration: 10, Func. Count: 119, Neg. LLF: 86.08785696716254
Iteration: 11, Func. Count: 130, Neg. LLF: 86.08691137683985
Iteration: 12, Func. Count: 141, Neg. LLF: 86.08667442721759
Iteration: 13, Func. Count: 152, Neg. LLF: 86.08649597494586
Iteration: 14, Func. Count: 163, Neg. LLF: 86.08632323462999
Iteration: 15, Func. Count: 174, Neg. LLF: 86.0861805416768
Iteration: 16, Func. Count: 185, Neg. LLF: 86.08616405253385
Iteration: 17, Func. Count: 196, Neg. LLF: 86.0861626692512
Iteration: 18, Func. Count: 206, Neg. LLF: 86.08616266430965
Optimization terminated successfully (Exit mode 0)
Current function value: 86.0861626692512
Iterations: 18
Function evaluations: 206
Gradient evaluations: 18
Iteration: 1, Func. Count: 5, Neg. LLF: 125.30995114863343
Iteration: 2, Func. Count: 13, Neg. LLF: 98.13229314441608
Iteration: 3, Func. Count: 18, Neg. LLF: 87.27709602536044
Iteration: 4, Func. Count: 22, Neg. LLF: 87.28213952559192
Iteration: 5, Func. Count: 27, Neg. LLF: 87.26895501447352
Iteration: 6, Func. Count: 32, Neg. LLF: 87.26560271921294
Iteration: 7, Func. Count: 36, Neg. LLF: 87.26553081764956
Iteration: 8, Func. Count: 39, Neg. LLF: 87.26553081763367
Optimization terminated successfully (Exit mode 0)
Current function value: 87.26553081764956
Iterations: 8
Function evaluations: 39
Gradient evaluations: 8
Iteration: 1, Func. Count: 6, Neg. LLF: 105.96327472181298
Iteration: 2, Func. Count: 13, Neg. LLF: 87.28342745794234
Iteration: 3, Func. Count: 18, Neg. LLF: 87.3150612871953
Iteration: 4, Func. Count: 24, Neg. LLF: 87.27708615034707
Iteration: 5, Func. Count: 29, Neg. LLF: 87.2769892864189
Iteration: 6, Func. Count: 34, Neg. LLF: 87.27666133097657
Iteration: 7, Func. Count: 39, Neg. LLF: 87.2729084191486
Iteration: 8, Func. Count: 44, Neg. LLF: 87.27233215089242
Iteration: 9, Func. Count: 49, Neg. LLF: 87.26986331794197
Iteration: 10, Func. Count: 54, Neg. LLF: 87.26850418152193
Iteration: 11, Func. Count: 59, Neg. LLF: 87.26819579493139
Iteration: 12, Func. Count: 64, Neg. LLF: 87.26803218759929
Iteration: 13, Func. Count: 69, Neg. LLF: 87.26784687493931
Iteration: 14, Func. Count: 74, Neg. LLF: 87.26736081667481
Iteration: 15, Func. Count: 79, Neg. LLF: 87.26662390508565
Iteration: 16, Func. Count: 84, Neg. LLF: 87.26587521393738
Iteration: 17, Func. Count: 89, Neg. LLF: 87.26557397369642
Iteration: 18, Func. Count: 94, Neg. LLF: 87.26553288349851
Iteration: 19, Func. Count: 99, Neg. LLF: 87.26553081835264
Iteration: 20, Func. Count: 103, Neg. LLF: 87.26553081999405
Optimization terminated successfully (Exit mode 0)
Current function value: 87.26553081835264
Iterations: 20
Function evaluations: 103
Gradient evaluations: 20
Iteration: 1, Func. Count: 7, Neg. LLF: 111.37908806475896
Iteration: 2, Func. Count: 15, Neg. LLF: 87.29520494021409
Iteration: 3, Func. Count: 21, Neg. LLF: 87.2994123980798
Iteration: 4, Func. Count: 28, Neg. LLF: 87.27589278230388
Iteration: 5, Func. Count: 34, Neg. LLF: 87.27575055437099
Iteration: 6, Func. Count: 40, Neg. LLF: 87.27528440207148
Iteration: 7, Func. Count: 46, Neg. LLF: 87.27513797444124
Iteration: 8, Func. Count: 52, Neg. LLF: 87.27507921833104
Iteration: 9, Func. Count: 58, Neg. LLF: 87.2748754135911
Iteration: 10, Func. Count: 64, Neg. LLF: 87.26338487012733
Iteration: 11, Func. Count: 70, Neg. LLF: 89.77022344041785
Iteration: 12, Func. Count: 77, Neg. LLF: 87.60060452126731
Iteration: 13, Func. Count: 84, Neg. LLF: 101.45621872244078
Iteration: 14, Func. Count: 93, Neg. LLF: 87.30056530221158
Iteration: 15, Func. Count: 100, Neg. LLF: 87.25708559048437
Iteration: 16, Func. Count: 107, Neg. LLF: 87.23451797101104
Iteration: 17, Func. Count: 113, Neg. LLF: 87.23670234999328
Iteration: 18, Func. Count: 120, Neg. LLF: 87.24517794558625
Iteration: 19, Func. Count: 127, Neg. LLF: 87.23328901668444
Iteration: 20, Func. Count: 134, Neg. LLF: 87.22993064069506
Iteration: 21, Func. Count: 140, Neg. LLF: 87.2299252223701
Iteration: 22, Func. Count: 145, Neg. LLF: 87.22992522223726
Optimization terminated successfully (Exit mode 0)
Current function value: 87.2299252223701
Iterations: 23
Function evaluations: 145
Gradient evaluations: 22
Iteration: 1, Func. Count: 8, Neg. LLF: 88.02614796122161
Iteration: 2, Func. Count: 17, Neg. LLF: 87.37571705594891
Iteration: 3, Func. Count: 25, Neg. LLF: 87.2678656014446
Iteration: 4, Func. Count: 32, Neg. LLF: 87.26432740633746
Iteration: 5, Func. Count: 39, Neg. LLF: 87.26197249810659
Iteration: 6, Func. Count: 46, Neg. LLF: 87.24610047287504
Iteration: 7, Func. Count: 53, Neg. LLF: 87.23621444278686
Iteration: 8, Func. Count: 60, Neg. LLF: 87.0743086348513
Iteration: 9, Func. Count: 67, Neg. LLF: 86.7603000571218
Iteration: 10, Func. Count: 74, Neg. LLF: 88.02524042583981
Iteration: 11, Func. Count: 82, Neg. LLF: 87.7440601402112
Iteration: 12, Func. Count: 90, Neg. LLF: 86.60516027067632
Iteration: 13, Func. Count: 97, Neg. LLF: 86.58612693990285
Iteration: 14, Func. Count: 104, Neg. LLF: 86.57964823140861
Iteration: 15, Func. Count: 111, Neg. LLF: 86.5794309122323
Iteration: 16, Func. Count: 118, Neg. LLF: 86.57941955166433
Iteration: 17, Func. Count: 124, Neg. LLF: 86.57941955161428
Optimization terminated successfully (Exit mode 0)
Current function value: 86.57941955166433
Iterations: 17
Function evaluations: 124
Gradient evaluations: 17
Iteration: 1, Func. Count: 9, Neg. LLF: 96.44013010344322
Iteration: 2, Func. Count: 20, Neg. LLF: 87.27573196956847
Iteration: 3, Func. Count: 28, Neg. LLF: 87.27978022445909
Iteration: 4, Func. Count: 37, Neg. LLF: 87.26302294693954
Iteration: 5, Func. Count: 45, Neg. LLF: 87.25367924812328
Iteration: 6, Func. Count: 53, Neg. LLF: 87.25266696354122
Iteration: 7, Func. Count: 61, Neg. LLF: 87.24606806053379
Iteration: 8, Func. Count: 69, Neg. LLF: 87.24778593595727
Iteration: 9, Func. Count: 78, Neg. LLF: 87.22318718192463
Iteration: 10, Func. Count: 86, Neg. LLF: 88.13189177744376
Iteration: 11, Func. Count: 96, Neg. LLF: 87.23119008052099
Iteration: 12, Func. Count: 105, Neg. LLF: 87.07624957081964
Iteration: 13, Func. Count: 113, Neg. LLF: 86.77094653710341
Iteration: 14, Func. Count: 121, Neg. LLF: 86.69414087893736
Iteration: 15, Func. Count: 129, Neg. LLF: 86.59663778504215
Iteration: 16, Func. Count: 137, Neg. LLF: 86.58187271640732
Iteration: 17, Func. Count: 145, Neg. LLF: 86.57956225901299
Iteration: 18, Func. Count: 153, Neg. LLF: 86.57943710491533
Iteration: 19, Func. Count: 161, Neg. LLF: 86.57942189786678
Iteration: 20, Func. Count: 169, Neg. LLF: 86.57941966420545
Iteration: 21, Func. Count: 176, Neg. LLF: 86.57941973753962
Optimization terminated successfully (Exit mode 0)
Current function value: 86.57941966420545
Iterations: 21
Function evaluations: 176
Gradient evaluations: 21
Iteration: 1, Func. Count: 6, Neg. LLF: 135.13618508882158
Iteration: 2, Func. Count: 15, Neg. LLF: 142.21589288103263
Iteration: 3, Func. Count: 22, Neg. LLF: 87.28196321445206
Iteration: 4, Func. Count: 27, Neg. LLF: 87.17666960198738
Iteration: 5, Func. Count: 33, Neg. LLF: 87.0392279833732
Iteration: 6, Func. Count: 38, Neg. LLF: 87.03385022585259
Iteration: 7, Func. Count: 43, Neg. LLF: 87.0337959125675
Iteration: 8, Func. Count: 47, Neg. LLF: 87.03379591257969
Optimization terminated successfully (Exit mode 0)
Current function value: 87.0337959125675
Iterations: 8
Function evaluations: 47
Gradient evaluations: 8
Iteration: 1, Func. Count: 7, Neg. LLF: 87.31178273425745
Iteration: 2, Func. Count: 14, Neg. LLF: 87.49946901822159
Iteration: 3, Func. Count: 21, Neg. LLF: 87.35367120320531
Iteration: 4, Func. Count: 28, Neg. LLF: 87.5750705598893
Iteration: 5, Func. Count: 35, Neg. LLF: 87.03506284453564
Iteration: 6, Func. Count: 41, Neg. LLF: 87.03441165195761
Iteration: 7, Func. Count: 47, Neg. LLF: 87.03393671022542
Iteration: 8, Func. Count: 53, Neg. LLF: 87.03387416948931
Iteration: 9, Func. Count: 59, Neg. LLF: 87.0338022065217
Iteration: 10, Func. Count: 65, Neg. LLF: 87.03379618829408
Iteration: 11, Func. Count: 70, Neg. LLF: 87.03379619856764
Optimization terminated successfully (Exit mode 0)
Current function value: 87.03379618829408
Iterations: 11
Function evaluations: 70
Gradient evaluations: 11
Iteration: 1, Func. Count: 8, Neg. LLF: 90.4800435902566
Iteration: 2, Func. Count: 17, Neg. LLF: 87.06968790986446
Iteration: 3, Func. Count: 24, Neg. LLF: 86.97975545154945
Iteration: 4, Func. Count: 31, Neg. LLF: 95.89522694896964
Iteration: 5, Func. Count: 40, Neg. LLF: 86.91598817770375
Iteration: 6, Func. Count: 47, Neg. LLF: 86.9078090006915
Iteration: 7, Func. Count: 54, Neg. LLF: 86.89291149684823
Iteration: 8, Func. Count: 61, Neg. LLF: 86.88090062758549
Iteration: 9, Func. Count: 68, Neg. LLF: 86.8787392516693
Iteration: 10, Func. Count: 76, Neg. LLF: 86.86860743275402
Iteration: 11, Func. Count: 84, Neg. LLF: 86.86810446078391
Iteration: 12, Func. Count: 91, Neg. LLF: 86.86811117420257
Iteration: 13, Func. Count: 99, Neg. LLF: 86.86808757911726
Iteration: 14, Func. Count: 106, Neg. LLF: 86.86808640208717
Iteration: 15, Func. Count: 112, Neg. LLF: 86.86808640208857
Optimization terminated successfully (Exit mode 0)
Current function value: 86.86808640208717
Iterations: 15
Function evaluations: 112
Gradient evaluations: 15
Iteration: 1, Func. Count: 9, Neg. LLF: 97.64720132041415
Iteration: 2, Func. Count: 19, Neg. LLF: 93.54414984610239
Iteration: 3, Func. Count: 29, Neg. LLF: 86.9817056589763
Iteration: 4, Func. Count: 37, Neg. LLF: 87.03093014786315
Iteration: 5, Func. Count: 46, Neg. LLF: 86.90799010533938
Iteration: 6, Func. Count: 54, Neg. LLF: 86.8885982678974
Iteration: 7, Func. Count: 62, Neg. LLF: 87.16009671253802
Iteration: 8, Func. Count: 71, Neg. LLF: 86.90505737165815
Iteration: 9, Func. Count: 80, Neg. LLF: 86.87092983378189
Iteration: 10, Func. Count: 88, Neg. LLF: 86.8688014118903
Iteration: 11, Func. Count: 96, Neg. LLF: 86.86825401579382
Iteration: 12, Func. Count: 104, Neg. LLF: 86.86809171381556
Iteration: 13, Func. Count: 112, Neg. LLF: 86.86810485042228
Iteration: 14, Func. Count: 121, Neg. LLF: 86.86808643203761
Optimization terminated successfully (Exit mode 0)
Current function value: 86.86808643203761
Iterations: 14
Function evaluations: 121
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 99.40572910055864
Iteration: 2, Func. Count: 21, Neg. LLF: 89.16946481660592
Iteration: 3, Func. Count: 32, Neg. LLF: 86.92039374005981
Iteration: 4, Func. Count: 41, Neg. LLF: 86.91287238297271
Iteration: 5, Func. Count: 50, Neg. LLF: 87.7787229046933
Iteration: 6, Func. Count: 60, Neg. LLF: 86.87680795260913
Iteration: 7, Func. Count: 69, Neg. LLF: 86.93676203614626
Iteration: 8, Func. Count: 79, Neg. LLF: 86.87086021768289
Iteration: 9, Func. Count: 88, Neg. LLF: 86.86861562671007
Iteration: 10, Func. Count: 97, Neg. LLF: 86.86827449464081
Iteration: 11, Func. Count: 106, Neg. LLF: 86.86785631282763
Iteration: 12, Func. Count: 115, Neg. LLF: 86.86745635243429
Iteration: 13, Func. Count: 124, Neg. LLF: 86.86701421106775
Iteration: 14, Func. Count: 133, Neg. LLF: 86.86700942407363
Iteration: 15, Func. Count: 141, Neg. LLF: 86.86700942403056
Optimization terminated successfully (Exit mode 0)
Current function value: 86.86700942407363
Iterations: 15
Function evaluations: 141
Gradient evaluations: 15
Iteration: 1, Func. Count: 7, Neg. LLF: 134.22582900618178
Iteration: 2, Func. Count: 17, Neg. LLF: 135.77954354559907
Iteration: 3, Func. Count: 25, Neg. LLF: 87.2743749125868
Iteration: 4, Func. Count: 31, Neg. LLF: 87.13598625118698
Iteration: 5, Func. Count: 37, Neg. LLF: 87.0667195678302
Iteration: 6, Func. Count: 43, Neg. LLF: 87.05219657127576
Iteration: 7, Func. Count: 49, Neg. LLF: 87.03502631596804
Iteration: 8, Func. Count: 55, Neg. LLF: 87.03384402548855
Iteration: 9, Func. Count: 61, Neg. LLF: 87.03379774802981
Iteration: 10, Func. Count: 67, Neg. LLF: 87.03379607623776
Iteration: 11, Func. Count: 72, Neg. LLF: 87.03379617022733
Optimization terminated successfully (Exit mode 0)
Current function value: 87.03379607623776
Iterations: 11
Function evaluations: 72
Gradient evaluations: 11
Iteration: 1, Func. Count: 8, Neg. LLF: 91.85490610460675
Iteration: 2, Func. Count: 18, Neg. LLF: 98.21263661776823
Iteration: 3, Func. Count: 27, Neg. LLF: 87.18732613959486
Iteration: 4, Func. Count: 34, Neg. LLF: 87.3677596645522
Iteration: 5, Func. Count: 42, Neg. LLF: 87.04111234183459
Iteration: 6, Func. Count: 49, Neg. LLF: 87.03532856705
Iteration: 7, Func. Count: 56, Neg. LLF: 87.03387494531532
Iteration: 8, Func. Count: 63, Neg. LLF: 87.03383488885223
Iteration: 9, Func. Count: 70, Neg. LLF: 87.03379755077108
Iteration: 10, Func. Count: 77, Neg. LLF: 87.0337963559047
Iteration: 11, Func. Count: 84, Neg. LLF: 87.03379571700805
Optimization terminated successfully (Exit mode 0)
Current function value: 87.03379571700805
Iterations: 11
Function evaluations: 84
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 92.73141944912841
Iteration: 2, Func. Count: 20, Neg. LLF: 145.25538975297437
Iteration: 3, Func. Count: 30, Neg. LLF: 86.94281578578553
Iteration: 4, Func. Count: 38, Neg. LLF: 87.31467612263555
Iteration: 5, Func. Count: 47, Neg. LLF: 86.92370791367033
Iteration: 6, Func. Count: 55, Neg. LLF: 87.35925846598997
Iteration: 7, Func. Count: 64, Neg. LLF: 87.81465973098867
Iteration: 8, Func. Count: 73, Neg. LLF: 87.65685904064668
Iteration: 9, Func. Count: 82, Neg. LLF: 87.4966920973229
Iteration: 10, Func. Count: 91, Neg. LLF: 87.42922483813379
Iteration: 11, Func. Count: 100, Neg. LLF: 86.93810987285035
Iteration: 12, Func. Count: 109, Neg. LLF: 86.87830544127397
Iteration: 13, Func. Count: 117, Neg. LLF: 86.87455385588791
Iteration: 14, Func. Count: 125, Neg. LLF: 86.87191944602849
Iteration: 15, Func. Count: 133, Neg. LLF: 86.86861859196706
Iteration: 16, Func. Count: 141, Neg. LLF: 86.86813035896368
Iteration: 17, Func. Count: 149, Neg. LLF: 86.86808693494291
Iteration: 18, Func. Count: 156, Neg. LLF: 86.86808693468511
Optimization terminated successfully (Exit mode 0)
Current function value: 86.86808693494291
Iterations: 18
Function evaluations: 156
Gradient evaluations: 18
Iteration: 1, Func. Count: 10, Neg. LLF: 94.3302292025447
Iteration: 2, Func. Count: 22, Neg. LLF: 174.06243154647441
Iteration: 3, Func. Count: 33, Neg. LLF: 86.99327030943061
Iteration: 4, Func. Count: 42, Neg. LLF: 87.01435012997557
Iteration: 5, Func. Count: 52, Neg. LLF: 86.90597111297643
Iteration: 6, Func. Count: 61, Neg. LLF: 87.27176844080813
Iteration: 7, Func. Count: 71, Neg. LLF: 87.12430841365682
Iteration: 8, Func. Count: 81, Neg. LLF: 87.08717440162472
Iteration: 9, Func. Count: 91, Neg. LLF: 86.88465335510787
Iteration: 10, Func. Count: 101, Neg. LLF: 86.86932404908544
Iteration: 11, Func. Count: 111, Neg. LLF: 86.86863060302603
Iteration: 12, Func. Count: 120, Neg. LLF: 86.86814231922324
Iteration: 13, Func. Count: 129, Neg. LLF: 86.868087822253
Iteration: 14, Func. Count: 138, Neg. LLF: 86.86808652218546
Iteration: 15, Func. Count: 146, Neg. LLF: 86.86808652712496
Optimization terminated successfully (Exit mode 0)
Current function value: 86.86808652218546
Iterations: 15
Function evaluations: 146
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 95.26581579552692
Iteration: 2, Func. Count: 24, Neg. LLF: 156.76255721774692
Iteration: 3, Func. Count: 36, Neg. LLF: 86.92130719950967
Iteration: 4, Func. Count: 46, Neg. LLF: 87.71475416643483
Iteration: 5, Func. Count: 57, Neg. LLF: 86.88244540347249
Iteration: 6, Func. Count: 67, Neg. LLF: 87.00003333587007
Iteration: 7, Func. Count: 78, Neg. LLF: 86.8729079956025
Iteration: 8, Func. Count: 88, Neg. LLF: 86.8705247805898
Iteration: 9, Func. Count: 98, Neg. LLF: 86.87049037215877
Iteration: 10, Func. Count: 109, Neg. LLF: 86.86759410367186
Iteration: 11, Func. Count: 119, Neg. LLF: 86.86703663487779
Iteration: 12, Func. Count: 129, Neg. LLF: 86.86700954253772
Iteration: 13, Func. Count: 138, Neg. LLF: 86.86700954264982
Optimization terminated successfully (Exit mode 0)
Current function value: 86.86700954253772
Iterations: 13
Function evaluations: 138
Gradient evaluations: 13
Iteration: 1, Func. Count: 8, Neg. LLF: 128.1999963215717
Iteration: 2, Func. Count: 18, Neg. LLF: 204.56217013993478
Iteration: 3, Func. Count: 26, Neg. LLF: 106.84350813936923
Iteration: 4, Func. Count: 34, Neg. LLF: 88.62701587431057
Iteration: 5, Func. Count: 42, Neg. LLF: 87.39124799705182
Iteration: 6, Func. Count: 50, Neg. LLF: 86.81576762814763
Iteration: 7, Func. Count: 57, Neg. LLF: 87.1359816421259
Iteration: 8, Func. Count: 65, Neg. LLF: 87.14725012167628
Iteration: 9, Func. Count: 73, Neg. LLF: 86.65502336474493
Iteration: 10, Func. Count: 81, Neg. LLF: 86.63339388961309
Iteration: 11, Func. Count: 88, Neg. LLF: 86.63289359329202
Iteration: 12, Func. Count: 95, Neg. LLF: 86.63285833208978
Iteration: 13, Func. Count: 102, Neg. LLF: 86.63285197163853
Iteration: 14, Func. Count: 108, Neg. LLF: 86.63285197163056
Optimization terminated successfully (Exit mode 0)
Current function value: 86.63285197163853
Iterations: 14
Function evaluations: 108
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 90.3848199072734
Iteration: 2, Func. Count: 20, Neg. LLF: 97.65050576254852
Iteration: 3, Func. Count: 29, Neg. LLF: 87.3492132975264
Iteration: 4, Func. Count: 38, Neg. LLF: 86.8233639598353
Iteration: 5, Func. Count: 46, Neg. LLF: 89.79048138225544
Iteration: 6, Func. Count: 55, Neg. LLF: 87.78985368060493
Iteration: 7, Func. Count: 64, Neg. LLF: 86.6550703674598
Iteration: 8, Func. Count: 72, Neg. LLF: 86.63889906951705
Iteration: 9, Func. Count: 80, Neg. LLF: 86.63492331530092
Iteration: 10, Func. Count: 88, Neg. LLF: 86.63342641617443
Iteration: 11, Func. Count: 96, Neg. LLF: 86.63286526099354
Iteration: 12, Func. Count: 104, Neg. LLF: 86.63285206786489
Iteration: 13, Func. Count: 111, Neg. LLF: 86.6328520767681
Optimization terminated successfully (Exit mode 0)
Current function value: 86.63285206786489
Iterations: 13
Function evaluations: 111
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 91.72057307833796
Iteration: 2, Func. Count: 22, Neg. LLF: 142.48147464565278
Iteration: 3, Func. Count: 32, Neg. LLF: 87.80229070353137
Iteration: 4, Func. Count: 42, Neg. LLF: 86.72071734660747
Iteration: 5, Func. Count: 51, Neg. LLF: 87.81049589303292
Iteration: 6, Func. Count: 61, Neg. LLF: 86.65686037546162
Iteration: 7, Func. Count: 70, Neg. LLF: 86.63294008845841
Iteration: 8, Func. Count: 79, Neg. LLF: 86.63289106005259
Iteration: 9, Func. Count: 88, Neg. LLF: 86.63286107312405
Iteration: 10, Func. Count: 97, Neg. LLF: 86.63285274323547
Iteration: 11, Func. Count: 106, Neg. LLF: 86.63285187486187
Optimization terminated successfully (Exit mode 0)
Current function value: 86.63285187486187
Iterations: 11
Function evaluations: 106
Gradient evaluations: 11
Iteration: 1, Func. Count: 11, Neg. LLF: 91.63467757877548
Iteration: 2, Func. Count: 24, Neg. LLF: 4130535.7229291815
Iteration: 3, Func. Count: 35, Neg. LLF: 87.50896418498061
Iteration: 4, Func. Count: 46, Neg. LLF: 86.73840272151669
Iteration: 5, Func. Count: 56, Neg. LLF: 87.55556067452271
Iteration: 6, Func. Count: 67, Neg. LLF: 86.6646809442364
Iteration: 7, Func. Count: 77, Neg. LLF: 86.63376554550025
Iteration: 8, Func. Count: 87, Neg. LLF: 86.6329331181547
Iteration: 9, Func. Count: 97, Neg. LLF: 86.63289611526396
Iteration: 10, Func. Count: 107, Neg. LLF: 86.63285235545831
Iteration: 11, Func. Count: 116, Neg. LLF: 86.63285238247086
Optimization terminated successfully (Exit mode 0)
Current function value: 86.63285235545831
Iterations: 11
Function evaluations: 116
Gradient evaluations: 11
Iteration: 1, Func. Count: 12, Neg. LLF: 89.34462020331286
Iteration: 2, Func. Count: 26, Neg. LLF: 10892853.633612584
Iteration: 3, Func. Count: 38, Neg. LLF: 89.69758097446996
Iteration: 4, Func. Count: 50, Neg. LLF: 87.08300466191058
Iteration: 5, Func. Count: 62, Neg. LLF: 86.41015313932547
Iteration: 6, Func. Count: 73, Neg. LLF: 103.29707826078
Iteration: 7, Func. Count: 86, Neg. LLF: 86.57250248914437
Iteration: 8, Func. Count: 98, Neg. LLF: 90.04264016572999
Iteration: 9, Func. Count: 110, Neg. LLF: 86.11044337403118
Iteration: 10, Func. Count: 121, Neg. LLF: 86.10115000043083
Iteration: 11, Func. Count: 132, Neg. LLF: 86.09658326980241
Iteration: 12, Func. Count: 143, Neg. LLF: 86.09323356054057
Iteration: 13, Func. Count: 154, Neg. LLF: 86.0881186165317
Iteration: 14, Func. Count: 165, Neg. LLF: 86.08757652112085
Iteration: 15, Func. Count: 176, Neg. LLF: 86.0869092648822
Iteration: 16, Func. Count: 187, Neg. LLF: 86.08632992176302
Iteration: 17, Func. Count: 198, Neg. LLF: 86.08625799745367
Iteration: 18, Func. Count: 209, Neg. LLF: 86.08618866842826
Iteration: 19, Func. Count: 220, Neg. LLF: 86.08616684836139
Iteration: 20, Func. Count: 231, Neg. LLF: 86.08616292884653
Iteration: 21, Func. Count: 241, Neg. LLF: 86.08616292393968
Optimization terminated successfully (Exit mode 0)
Current function value: 86.08616292884653
Iterations: 21
Function evaluations: 241
Gradient evaluations: 21
Iteration: 1, Func. Count: 9, Neg. LLF: 129.8146318263231
Iteration: 2, Func. Count: 20, Neg. LLF: 519.1492347554839
Iteration: 3, Func. Count: 29, Neg. LLF: 7389126.105277929
Iteration: 4, Func. Count: 38, Neg. LLF: 91.41052489717453
Iteration: 5, Func. Count: 47, Neg. LLF: 88.42142659671784
Iteration: 6, Func. Count: 56, Neg. LLF: 87.10302123508846
Iteration: 7, Func. Count: 65, Neg. LLF: 86.87024304104676
Iteration: 8, Func. Count: 73, Neg. LLF: 86.73017808811345
Iteration: 9, Func. Count: 81, Neg. LLF: 86.65659429712399
Iteration: 10, Func. Count: 89, Neg. LLF: 86.64830880720936
Iteration: 11, Func. Count: 97, Neg. LLF: 86.64017336295937
Iteration: 12, Func. Count: 105, Neg. LLF: 86.63409561703301
Iteration: 13, Func. Count: 113, Neg. LLF: 86.63286125169326
Iteration: 14, Func. Count: 121, Neg. LLF: 86.63285282146677
Iteration: 15, Func. Count: 129, Neg. LLF: 86.63285180406062
Iteration: 16, Func. Count: 136, Neg. LLF: 86.63285180410992
Optimization terminated successfully (Exit mode 0)
Current function value: 86.63285180406062
Iterations: 16
Function evaluations: 136
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 90.36372132008867
Iteration: 2, Func. Count: 22, Neg. LLF: 97.58554923094276
Iteration: 3, Func. Count: 32, Neg. LLF: 87.2828188172973
Iteration: 4, Func. Count: 42, Neg. LLF: 86.82013423884794
Iteration: 5, Func. Count: 51, Neg. LLF: 89.12371969511582
Iteration: 6, Func. Count: 61, Neg. LLF: 88.23536533911145
Iteration: 7, Func. Count: 71, Neg. LLF: 86.64864984731726
Iteration: 8, Func. Count: 80, Neg. LLF: 86.63732701868916
Iteration: 9, Func. Count: 89, Neg. LLF: 86.6336713713809
Iteration: 10, Func. Count: 98, Neg. LLF: 86.6331553489768
Iteration: 11, Func. Count: 107, Neg. LLF: 86.63285758502073
Iteration: 12, Func. Count: 116, Neg. LLF: 86.63285189233285
Iteration: 13, Func. Count: 124, Neg. LLF: 86.63285190131253
Optimization terminated successfully (Exit mode 0)
Current function value: 86.63285189233285
Iterations: 13
Function evaluations: 124
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 91.64556610677889
Iteration: 2, Func. Count: 24, Neg. LLF: 143.52152269896968
Iteration: 3, Func. Count: 35, Neg. LLF: 87.76176474935558
Iteration: 4, Func. Count: 46, Neg. LLF: 86.72566682993408
Iteration: 5, Func. Count: 56, Neg. LLF: 87.76519178130444
Iteration: 6, Func. Count: 67, Neg. LLF: 86.65740703914568
Iteration: 7, Func. Count: 77, Neg. LLF: 86.63303069906158
Iteration: 8, Func. Count: 87, Neg. LLF: 86.63289326451603
Iteration: 9, Func. Count: 97, Neg. LLF: 86.63287044212315
Iteration: 10, Func. Count: 107, Neg. LLF: 86.63285286486894
Iteration: 11, Func. Count: 117, Neg. LLF: 86.63285325313888
Optimization terminated successfully (Exit mode 0)
Current function value: 86.63285249436157
Iterations: 11
Function evaluations: 118
Gradient evaluations: 11
Iteration: 1, Func. Count: 12, Neg. LLF: 91.56337533517627
Iteration: 2, Func. Count: 26, Neg. LLF: 4134740.365111819
Iteration: 3, Func. Count: 38, Neg. LLF: 87.51767602304918
Iteration: 4, Func. Count: 50, Neg. LLF: 86.72225609708205
Iteration: 5, Func. Count: 61, Neg. LLF: 87.39875903035653
Iteration: 6, Func. Count: 73, Neg. LLF: 86.66468965278048
Iteration: 7, Func. Count: 84, Neg. LLF: 86.63374136648486
Iteration: 8, Func. Count: 95, Neg. LLF: 86.6330517045458
Iteration: 9, Func. Count: 106, Neg. LLF: 86.63294479936573
Iteration: 10, Func. Count: 117, Neg. LLF: 86.63286176049918
Iteration: 11, Func. Count: 128, Neg. LLF: 86.63285347746016
Iteration: 12, Func. Count: 139, Neg. LLF: 86.63288374435467
Optimization terminated successfully (Exit mode 0)
Current function value: 86.63285329747654
Iterations: 12
Function evaluations: 140
Gradient evaluations: 12
Iteration: 1, Func. Count: 13, Neg. LLF: 89.27464321088225
Iteration: 2, Func. Count: 28, Neg. LLF: 10937409.568340952
Iteration: 3, Func. Count: 41, Neg. LLF: 90.02066069738383
Iteration: 4, Func. Count: 54, Neg. LLF: 87.0378765892069
Iteration: 5, Func. Count: 67, Neg. LLF: 86.44645558083623
Iteration: 6, Func. Count: 79, Neg. LLF: 106.73943326876702
Iteration: 7, Func. Count: 93, Neg. LLF: 86.57342510179298
Iteration: 8, Func. Count: 106, Neg. LLF: 88.9852115628766
Iteration: 9, Func. Count: 119, Neg. LLF: 86.11292231359826
Iteration: 10, Func. Count: 131, Neg. LLF: 86.10215975364953
Iteration: 11, Func. Count: 143, Neg. LLF: 86.09806503302063
Iteration: 12, Func. Count: 155, Neg. LLF: 86.09537129331079
Iteration: 13, Func. Count: 167, Neg. LLF: 86.08937136655408
Iteration: 14, Func. Count: 179, Neg. LLF: 86.08827970818763
Iteration: 15, Func. Count: 191, Neg. LLF: 86.08695900926439
Iteration: 16, Func. Count: 203, Neg. LLF: 86.08662545720507
Iteration: 17, Func. Count: 215, Neg. LLF: 86.08620916387204
Iteration: 18, Func. Count: 227, Neg. LLF: 86.08617127641723
Iteration: 19, Func. Count: 239, Neg. LLF: 86.08616279053678
Iteration: 20, Func. Count: 250, Neg. LLF: 86.08616278560764
Optimization terminated successfully (Exit mode 0)
Current function value: 86.08616279053678
Iterations: 20
Function evaluations: 250
Gradient evaluations: 20
Iteration: 1, Func. Count: 6, Neg. LLF: 125.5285947655951
Iteration: 2, Func. Count: 15, Neg. LLF: 93.50186742801141
Iteration: 3, Func. Count: 21, Neg. LLF: 87.27526294198658
Iteration: 4, Func. Count: 26, Neg. LLF: 87.27767275538515
Iteration: 5, Func. Count: 32, Neg. LLF: 87.26799459051533
Iteration: 6, Func. Count: 37, Neg. LLF: 87.26559398750992
Iteration: 7, Func. Count: 42, Neg. LLF: 87.26553494177517
Iteration: 8, Func. Count: 47, Neg. LLF: 87.26553079319261
Iteration: 9, Func. Count: 51, Neg. LLF: 87.26553094023551
Optimization terminated successfully (Exit mode 0)
Current function value: 87.26553079319261
Iterations: 9
Function evaluations: 51
Gradient evaluations: 9
Iteration: 1, Func. Count: 7, Neg. LLF: 133.92578873313192
Iteration: 2, Func. Count: 15, Neg. LLF: 87.28714782384749
Iteration: 3, Func. Count: 21, Neg. LLF: 87.28018188252999
Iteration: 4, Func. Count: 27, Neg. LLF: 87.27716876902137
Iteration: 5, Func. Count: 33, Neg. LLF: 87.2771250689847
Iteration: 6, Func. Count: 39, Neg. LLF: 87.2769108872603
Iteration: 7, Func. Count: 45, Neg. LLF: 87.27462401681727
Iteration: 8, Func. Count: 51, Neg. LLF: 87.27275051327042
Iteration: 9, Func. Count: 57, Neg. LLF: 87.27069759679092
Iteration: 10, Func. Count: 63, Neg. LLF: 87.26911585872787
Iteration: 11, Func. Count: 69, Neg. LLF: 87.26806855388902
Iteration: 12, Func. Count: 75, Neg. LLF: 87.26781269553021
Iteration: 13, Func. Count: 81, Neg. LLF: 87.26657826784798
Iteration: 14, Func. Count: 87, Neg. LLF: 87.26556905549718
Iteration: 15, Func. Count: 93, Neg. LLF: 87.26553334904682
Iteration: 16, Func. Count: 99, Neg. LLF: 87.26553079331354
Iteration: 17, Func. Count: 104, Neg. LLF: 87.26553079494437
Optimization terminated successfully (Exit mode 0)
Current function value: 87.26553079331354
Iterations: 17
Function evaluations: 104
Gradient evaluations: 17
Iteration: 1, Func. Count: 8, Neg. LLF: 124.34455143063897
Iteration: 2, Func. Count: 17, Neg. LLF: 87.2896506909319
Iteration: 3, Func. Count: 24, Neg. LLF: 87.27732164696155
Iteration: 4, Func. Count: 31, Neg. LLF: 87.27552643732216
Iteration: 5, Func. Count: 38, Neg. LLF: 87.27549460511773
Iteration: 6, Func. Count: 45, Neg. LLF: 87.27531492517159
Iteration: 7, Func. Count: 52, Neg. LLF: 87.2750722028165
Iteration: 8, Func. Count: 59, Neg. LLF: 87.26501144677701
Iteration: 9, Func. Count: 66, Neg. LLF: 87.26368163530054
Iteration: 10, Func. Count: 74, Neg. LLF: 87.23419622436802
Iteration: 11, Func. Count: 81, Neg. LLF: 108.377339822243
Iteration: 12, Func. Count: 91, Neg. LLF: 87.23208349790296
Iteration: 13, Func. Count: 98, Neg. LLF: 87.29435399650812
Iteration: 14, Func. Count: 106, Neg. LLF: 87.23323646369163
Iteration: 15, Func. Count: 114, Neg. LLF: 87.22992300284857
Iteration: 16, Func. Count: 121, Neg. LLF: 87.22990368888945
Iteration: 17, Func. Count: 128, Neg. LLF: 87.22990298430462
Optimization terminated successfully (Exit mode 0)
Current function value: 87.22990298430462
Iterations: 18
Function evaluations: 128
Gradient evaluations: 17
Iteration: 1, Func. Count: 9, Neg. LLF: 104.9995765744603
Iteration: 2, Func. Count: 19, Neg. LLF: 87.301326467755
Iteration: 3, Func. Count: 27, Neg. LLF: 87.26800834262748
Iteration: 4, Func. Count: 35, Neg. LLF: 87.26542805983948
Iteration: 5, Func. Count: 43, Neg. LLF: 87.26161191691176
Iteration: 6, Func. Count: 51, Neg. LLF: 87.25476711671607
Iteration: 7, Func. Count: 59, Neg. LLF: 87.24939237040856
Iteration: 8, Func. Count: 67, Neg. LLF: 87.18253821875722
Iteration: 9, Func. Count: 75, Neg. LLF: 86.68832910886174
Iteration: 10, Func. Count: 83, Neg. LLF: 28646204.197552
Iteration: 11, Func. Count: 93, Neg. LLF: 220.54002484385757
Iteration: 12, Func. Count: 103, Neg. LLF: 93.30213058690627
Iteration: 13, Func. Count: 113, Neg. LLF: 86.5795392932045
Iteration: 14, Func. Count: 121, Neg. LLF: 86.57942015420011
Iteration: 15, Func. Count: 129, Neg. LLF: 86.57941949641513
Optimization terminated successfully (Exit mode 0)
Current function value: 86.57941949641513
Iterations: 16
Function evaluations: 129
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 88.44487417225429
Iteration: 2, Func. Count: 21, Neg. LLF: 87.35612306118263
Iteration: 3, Func. Count: 31, Neg. LLF: 87.26546200443767
Iteration: 4, Func. Count: 40, Neg. LLF: 87.26241216841306
Iteration: 5, Func. Count: 49, Neg. LLF: 87.25626171806329
Iteration: 6, Func. Count: 58, Neg. LLF: 87.25515196408655
Iteration: 7, Func. Count: 67, Neg. LLF: 87.24989290273915
Iteration: 8, Func. Count: 76, Neg. LLF: 87.2575659998418
Iteration: 9, Func. Count: 86, Neg. LLF: 87.27237350573255
Iteration: 10, Func. Count: 96, Neg. LLF: 87.42012364895936
Iteration: 11, Func. Count: 106, Neg. LLF: 87.31647493830411
Iteration: 12, Func. Count: 116, Neg. LLF: 87.2569993386693
Iteration: 13, Func. Count: 126, Neg. LLF: 87.22871739249447
Iteration: 14, Func. Count: 135, Neg. LLF: 87.21206835984019
Iteration: 15, Func. Count: 144, Neg. LLF: 87.34661177652566
Iteration: 16, Func. Count: 155, Neg. LLF: 86.95248197021112
Iteration: 17, Func. Count: 164, Neg. LLF: 86.97505088719309
Iteration: 18, Func. Count: 174, Neg. LLF: 86.844375152682
Iteration: 19, Func. Count: 183, Neg. LLF: 86.77685449151464
Iteration: 20, Func. Count: 192, Neg. LLF: 86.69753908545563
Iteration: 21, Func. Count: 201, Neg. LLF: 86.6086666115531
Iteration: 22, Func. Count: 210, Neg. LLF: 86.58065438423523
Iteration: 23, Func. Count: 219, Neg. LLF: 86.57945559585734
Iteration: 24, Func. Count: 228, Neg. LLF: 86.57943011981737
Iteration: 25, Func. Count: 237, Neg. LLF: 86.5794196735006
Iteration: 26, Func. Count: 245, Neg. LLF: 86.57941974700152
Optimization terminated successfully (Exit mode 0)
Current function value: 86.5794196735006
Iterations: 26
Function evaluations: 245
Gradient evaluations: 26
Iteration: 1, Func. Count: 7, Neg. LLF: 128.48935654724943
Iteration: 2, Func. Count: 17, Neg. LLF: 116.326676093071
Iteration: 3, Func. Count: 24, Neg. LLF: 87.27887143571124
Iteration: 4, Func. Count: 30, Neg. LLF: 87.96279272928835
Iteration: 5, Func. Count: 37, Neg. LLF: 87.26536110952536
Iteration: 6, Func. Count: 44, Neg. LLF: 87.03956076948695
Iteration: 7, Func. Count: 50, Neg. LLF: 87.03383774316966
Iteration: 8, Func. Count: 56, Neg. LLF: 87.03379832541252
Iteration: 9, Func. Count: 62, Neg. LLF: 87.03379610466247
Iteration: 10, Func. Count: 67, Neg. LLF: 87.03379610460807
Optimization terminated successfully (Exit mode 0)
Current function value: 87.03379610466247
Iterations: 10
Function evaluations: 67
Gradient evaluations: 10
Iteration: 1, Func. Count: 8, Neg. LLF: 87.58734752043051
Iteration: 2, Func. Count: 16, Neg. LLF: 87.28960029335826
Iteration: 3, Func. Count: 24, Neg. LLF: 87.03691108086042
Iteration: 4, Func. Count: 31, Neg. LLF: 88.1438122902734
Iteration: 5, Func. Count: 40, Neg. LLF: 87.0342035158925
Iteration: 6, Func. Count: 47, Neg. LLF: 87.03379885021523
Iteration: 7, Func. Count: 54, Neg. LLF: 87.03379742525735
Iteration: 8, Func. Count: 61, Neg. LLF: 87.03379583177191
Iteration: 9, Func. Count: 67, Neg. LLF: 87.03379584199617
Optimization terminated successfully (Exit mode 0)
Current function value: 87.03379583177191
Iterations: 9
Function evaluations: 67
Gradient evaluations: 9
Iteration: 1, Func. Count: 9, Neg. LLF: 87.32301261949101
Iteration: 2, Func. Count: 18, Neg. LLF: 88.90346525184502
Iteration: 3, Func. Count: 27, Neg. LLF: 93.5395203226711
Iteration: 4, Func. Count: 37, Neg. LLF: 87.05729811113588
Iteration: 5, Func. Count: 45, Neg. LLF: 86.93044458937835
Iteration: 6, Func. Count: 53, Neg. LLF: 86.91444240023516
Iteration: 7, Func. Count: 61, Neg. LLF: 86.90299122682752
Iteration: 8, Func. Count: 69, Neg. LLF: 87.07545366724281
Iteration: 9, Func. Count: 78, Neg. LLF: 87.1902224810995
Iteration: 10, Func. Count: 87, Neg. LLF: 87.16399579372256
Iteration: 11, Func. Count: 96, Neg. LLF: 87.12481019797357
Iteration: 12, Func. Count: 105, Neg. LLF: 86.88359795433514
Iteration: 13, Func. Count: 114, Neg. LLF: 86.86837295110297
Iteration: 14, Func. Count: 122, Neg. LLF: 86.8682138969668
Iteration: 15, Func. Count: 130, Neg. LLF: 86.86821199923357
Iteration: 16, Func. Count: 139, Neg. LLF: 86.8680871036889
Iteration: 17, Func. Count: 147, Neg. LLF: 86.86808640338938
Optimization terminated successfully (Exit mode 0)
Current function value: 86.86808640338938
Iterations: 17
Function evaluations: 147
Gradient evaluations: 17
Iteration: 1, Func. Count: 10, Neg. LLF: 90.02543898023028
Iteration: 2, Func. Count: 20, Neg. LLF: 87.43584272919514
Iteration: 3, Func. Count: 30, Neg. LLF: 88.40950468490534
Iteration: 4, Func. Count: 40, Neg. LLF: 87.11293199239455
Iteration: 5, Func. Count: 50, Neg. LLF: 86.91600068770857
Iteration: 6, Func. Count: 59, Neg. LLF: 86.90419313008839
Iteration: 7, Func. Count: 68, Neg. LLF: 86.89061414901883
Iteration: 8, Func. Count: 77, Neg. LLF: 86.87601613307204
Iteration: 9, Func. Count: 86, Neg. LLF: 86.92639645663021
Iteration: 10, Func. Count: 96, Neg. LLF: 86.8689227123257
Iteration: 11, Func. Count: 105, Neg. LLF: 86.868129496992
Iteration: 12, Func. Count: 114, Neg. LLF: 86.86808753114761
Iteration: 13, Func. Count: 123, Neg. LLF: 86.86808646339485
Iteration: 14, Func. Count: 131, Neg. LLF: 86.86808646846728
Optimization terminated successfully (Exit mode 0)
Current function value: 86.86808646339485
Iterations: 14
Function evaluations: 131
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 97.28789963050394
Iteration: 2, Func. Count: 23, Neg. LLF: 92.36486599234111
Iteration: 3, Func. Count: 35, Neg. LLF: 86.92037767880693
Iteration: 4, Func. Count: 45, Neg. LLF: 87.16420871508002
Iteration: 5, Func. Count: 56, Neg. LLF: 86.9011797085993
Iteration: 6, Func. Count: 66, Neg. LLF: 86.88273940905638
Iteration: 7, Func. Count: 76, Neg. LLF: 86.96831115079586
Iteration: 8, Func. Count: 87, Neg. LLF: 86.87381872455117
Iteration: 9, Func. Count: 97, Neg. LLF: 86.8719281706512
Iteration: 10, Func. Count: 107, Neg. LLF: 86.86880894307359
Iteration: 11, Func. Count: 117, Neg. LLF: 86.86748119333745
Iteration: 12, Func. Count: 127, Neg. LLF: 86.86704079193161
Iteration: 13, Func. Count: 137, Neg. LLF: 86.86702820463736
Iteration: 14, Func. Count: 147, Neg. LLF: 86.867009318024
Iteration: 15, Func. Count: 156, Neg. LLF: 86.86700931805525
Optimization terminated successfully (Exit mode 0)
Current function value: 86.867009318024
Iterations: 15
Function evaluations: 156
Gradient evaluations: 15
Iteration: 1, Func. Count: 8, Neg. LLF: 122.4517257929316
Iteration: 2, Func. Count: 18, Neg. LLF: 89.49706635525845
Iteration: 3, Func. Count: 25, Neg. LLF: 87.66605864801726
Iteration: 4, Func. Count: 32, Neg. LLF: 8051249.8317988
Iteration: 5, Func. Count: 41, Neg. LLF: 87.51624133611544
Iteration: 6, Func. Count: 49, Neg. LLF: 87.06861152059301
Iteration: 7, Func. Count: 56, Neg. LLF: 87.03569321488007
Iteration: 8, Func. Count: 63, Neg. LLF: 87.03444711004515
Iteration: 9, Func. Count: 70, Neg. LLF: 87.03384953506234
Iteration: 10, Func. Count: 77, Neg. LLF: 87.03379907839566
Iteration: 11, Func. Count: 84, Neg. LLF: 87.03379573077684
Iteration: 12, Func. Count: 90, Neg. LLF: 87.03379582475286
Optimization terminated successfully (Exit mode 0)
Current function value: 87.03379573077684
Iterations: 12
Function evaluations: 90
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 91.8849546829371
Iteration: 2, Func. Count: 20, Neg. LLF: 98.95457096271997
Iteration: 3, Func. Count: 30, Neg. LLF: 87.1880794787478
Iteration: 4, Func. Count: 38, Neg. LLF: 87.38032075104383
Iteration: 5, Func. Count: 47, Neg. LLF: 87.0445409096088
Iteration: 6, Func. Count: 55, Neg. LLF: 87.03595378164108
Iteration: 7, Func. Count: 63, Neg. LLF: 87.03389433569671
Iteration: 8, Func. Count: 71, Neg. LLF: 87.03384589059372
Iteration: 9, Func. Count: 79, Neg. LLF: 87.03379698709935
Iteration: 10, Func. Count: 87, Neg. LLF: 87.03379575868814
Iteration: 11, Func. Count: 94, Neg. LLF: 87.03379576890293
Optimization terminated successfully (Exit mode 0)
Current function value: 87.03379575868814
Iterations: 11
Function evaluations: 94
Gradient evaluations: 11
Iteration: 1, Func. Count: 10, Neg. LLF: 92.33665749440154
Iteration: 2, Func. Count: 22, Neg. LLF: 157.77998014619325
Iteration: 3, Func. Count: 33, Neg. LLF: 86.96970080454301
Iteration: 4, Func. Count: 42, Neg. LLF: 86.96518291950811
Iteration: 5, Func. Count: 52, Neg. LLF: 86.93411891973871
Iteration: 6, Func. Count: 61, Neg. LLF: 86.93275700257873
Iteration: 7, Func. Count: 71, Neg. LLF: 86.95226366353103
Iteration: 8, Func. Count: 81, Neg. LLF: 87.16395776185686
Iteration: 9, Func. Count: 91, Neg. LLF: 87.10532763666862
Iteration: 10, Func. Count: 101, Neg. LLF: 86.90226402568321
Iteration: 11, Func. Count: 111, Neg. LLF: 86.8690552079497
Iteration: 12, Func. Count: 120, Neg. LLF: 86.86832808221527
Iteration: 13, Func. Count: 129, Neg. LLF: 86.8681221717675
Iteration: 14, Func. Count: 138, Neg. LLF: 86.86809338714416
Iteration: 15, Func. Count: 147, Neg. LLF: 86.86808691995277
Iteration: 16, Func. Count: 156, Neg. LLF: 86.86808640348166
Optimization terminated successfully (Exit mode 0)
Current function value: 86.86808640348166
Iterations: 16
Function evaluations: 156
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 93.6428289189182
Iteration: 2, Func. Count: 24, Neg. LLF: 187.17052924773938
Iteration: 3, Func. Count: 36, Neg. LLF: 87.00898141999222
Iteration: 4, Func. Count: 46, Neg. LLF: 86.9454319010525
Iteration: 5, Func. Count: 56, Neg. LLF: 86.9042864127963
Iteration: 6, Func. Count: 66, Neg. LLF: 87.01155164723204
Iteration: 7, Func. Count: 77, Neg. LLF: 86.9207991120902
Iteration: 8, Func. Count: 88, Neg. LLF: 86.87452496474462
Iteration: 9, Func. Count: 99, Neg. LLF: 86.86848780555569
Iteration: 10, Func. Count: 109, Neg. LLF: 86.86824804906335
Iteration: 11, Func. Count: 119, Neg. LLF: 86.86809007714368
Iteration: 12, Func. Count: 129, Neg. LLF: 86.8680865479968
Iteration: 13, Func. Count: 138, Neg. LLF: 86.8680865529943
Optimization terminated successfully (Exit mode 0)
Current function value: 86.8680865479968
Iterations: 13
Function evaluations: 138
Gradient evaluations: 13
Iteration: 1, Func. Count: 12, Neg. LLF: 94.3457309102397
Iteration: 2, Func. Count: 26, Neg. LLF: 162.94689486168718
Iteration: 3, Func. Count: 39, Neg. LLF: 86.9302749937261
Iteration: 4, Func. Count: 50, Neg. LLF: 87.28074231718331
Iteration: 5, Func. Count: 62, Neg. LLF: 87.18364158466574
Iteration: 6, Func. Count: 74, Neg. LLF: 87.05496833455136
Iteration: 7, Func. Count: 86, Neg. LLF: 87.00092874988209
Iteration: 8, Func. Count: 98, Neg. LLF: 86.92146547355688
Iteration: 9, Func. Count: 110, Neg. LLF: 86.87637096444169
Iteration: 10, Func. Count: 122, Neg. LLF: 86.869415414558
Iteration: 11, Func. Count: 133, Neg. LLF: 86.86809069185429
Iteration: 12, Func. Count: 144, Neg. LLF: 86.86736696436266
Iteration: 13, Func. Count: 155, Neg. LLF: 86.86713473877292
Iteration: 14, Func. Count: 166, Neg. LLF: 86.8670187283245
Iteration: 15, Func. Count: 177, Neg. LLF: 86.8670095101475
Iteration: 16, Func. Count: 187, Neg. LLF: 86.8670095100101
Optimization terminated successfully (Exit mode 0)
Current function value: 86.8670095101475
Iterations: 16
Function evaluations: 187
Gradient evaluations: 16
Iteration: 1, Func. Count: 9, Neg. LLF: 123.0541976323867
Iteration: 2, Func. Count: 20, Neg. LLF: 169.3860277722955
Iteration: 3, Func. Count: 29, Neg. LLF: 7564153.128919914
Iteration: 4, Func. Count: 38, Neg. LLF: 103.99574742346053
Iteration: 5, Func. Count: 47, Neg. LLF: 89.20922085608703
Iteration: 6, Func. Count: 56, Neg. LLF: 86.8429776962548
Iteration: 7, Func. Count: 64, Neg. LLF: 86.70848373436121
Iteration: 8, Func. Count: 72, Neg. LLF: 87.15003811002116
Iteration: 9, Func. Count: 81, Neg. LLF: 86.65067278218193
Iteration: 10, Func. Count: 89, Neg. LLF: 86.63749200350158
Iteration: 11, Func. Count: 97, Neg. LLF: 86.634114371793
Iteration: 12, Func. Count: 105, Neg. LLF: 86.63308832938819
Iteration: 13, Func. Count: 113, Neg. LLF: 86.63289524287119
Iteration: 14, Func. Count: 121, Neg. LLF: 86.63285233941474
Iteration: 15, Func. Count: 129, Neg. LLF: 86.63285181648584
Optimization terminated successfully (Exit mode 0)
Current function value: 86.63285181648584
Iterations: 15
Function evaluations: 129
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 90.60421080406785
Iteration: 2, Func. Count: 22, Neg. LLF: 97.19138734919004
Iteration: 3, Func. Count: 32, Neg. LLF: 87.42505201182256
Iteration: 4, Func. Count: 42, Neg. LLF: 86.97193956803724
Iteration: 5, Func. Count: 51, Neg. LLF: 87.7424064909609
Iteration: 6, Func. Count: 61, Neg. LLF: 87.70689112448066
Iteration: 7, Func. Count: 71, Neg. LLF: 86.65389935970805
Iteration: 8, Func. Count: 80, Neg. LLF: 86.64130719611313
Iteration: 9, Func. Count: 89, Neg. LLF: 86.63483364345585
Iteration: 10, Func. Count: 98, Neg. LLF: 86.63363632048531
Iteration: 11, Func. Count: 107, Neg. LLF: 86.63286271460542
Iteration: 12, Func. Count: 116, Neg. LLF: 86.63285205038395
Iteration: 13, Func. Count: 124, Neg. LLF: 86.63285205929695
Optimization terminated successfully (Exit mode 0)
Current function value: 86.63285205038395
Iterations: 13
Function evaluations: 124
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 92.30234158457844
Iteration: 2, Func. Count: 24, Neg. LLF: 130.190031183585
Iteration: 3, Func. Count: 35, Neg. LLF: 87.86708182406421
Iteration: 4, Func. Count: 46, Neg. LLF: 86.96377256438585
Iteration: 5, Func. Count: 56, Neg. LLF: 87.1007073451363
Iteration: 6, Func. Count: 67, Neg. LLF: 86.64703040704195
Iteration: 7, Func. Count: 77, Neg. LLF: 86.63630562599718
Iteration: 8, Func. Count: 87, Neg. LLF: 86.63287295370404
Iteration: 9, Func. Count: 97, Neg. LLF: 86.63286093638209
Iteration: 10, Func. Count: 107, Neg. LLF: 86.63285255551874
Iteration: 11, Func. Count: 117, Neg. LLF: 86.63285190826275
Optimization terminated successfully (Exit mode 0)
Current function value: 86.63285190826275
Iterations: 11
Function evaluations: 117
Gradient evaluations: 11
Iteration: 1, Func. Count: 12, Neg. LLF: 91.72688333098799
Iteration: 2, Func. Count: 26, Neg. LLF: 4096531.1254036487
Iteration: 3, Func. Count: 38, Neg. LLF: 87.66110082578119
Iteration: 4, Func. Count: 50, Neg. LLF: 86.75806255988662
Iteration: 5, Func. Count: 61, Neg. LLF: 87.61331983198895
Iteration: 6, Func. Count: 73, Neg. LLF: 86.66805501056801
Iteration: 7, Func. Count: 84, Neg. LLF: 86.63663967071606
Iteration: 8, Func. Count: 95, Neg. LLF: 86.63312020376225
Iteration: 9, Func. Count: 106, Neg. LLF: 86.63296292445139
Iteration: 10, Func. Count: 117, Neg. LLF: 86.63287495967813
Iteration: 11, Func. Count: 128, Neg. LLF: 86.6328549248564
Iteration: 12, Func. Count: 139, Neg. LLF: 86.63285204336266
Iteration: 13, Func. Count: 149, Neg. LLF: 86.63285207044105
Optimization terminated successfully (Exit mode 0)
Current function value: 86.63285204336266
Iterations: 13
Function evaluations: 149
Gradient evaluations: 13
Iteration: 1, Func. Count: 13, Neg. LLF: 89.51676132818262
Iteration: 2, Func. Count: 28, Neg. LLF: 6493996.124485343
Iteration: 3, Func. Count: 41, Neg. LLF: 91.13347130159157
Iteration: 4, Func. Count: 54, Neg. LLF: 90.74400359495054
Iteration: 5, Func. Count: 67, Neg. LLF: 87.77328419203553
Iteration: 6, Func. Count: 80, Neg. LLF: 86.54022296382843
Iteration: 7, Func. Count: 92, Neg. LLF: 86.62908323216882
Iteration: 8, Func. Count: 105, Neg. LLF: 99.89098830077987
Iteration: 9, Func. Count: 118, Neg. LLF: 88.17768224733607
Iteration: 10, Func. Count: 132, Neg. LLF: 86.12761925320038
Iteration: 11, Func. Count: 144, Neg. LLF: 86.10618945191395
Iteration: 12, Func. Count: 156, Neg. LLF: 86.09061849714323
Iteration: 13, Func. Count: 168, Neg. LLF: 86.08682659086043
Iteration: 14, Func. Count: 180, Neg. LLF: 86.08669470127113
Iteration: 15, Func. Count: 192, Neg. LLF: 86.08637520311295
Iteration: 16, Func. Count: 204, Neg. LLF: 86.08621450214092
Iteration: 17, Func. Count: 216, Neg. LLF: 86.086166161923
Iteration: 18, Func. Count: 228, Neg. LLF: 86.08616292531369
Iteration: 19, Func. Count: 239, Neg. LLF: 86.08616292036513
Optimization terminated successfully (Exit mode 0)
Current function value: 86.08616292531369
Iterations: 19
Function evaluations: 239
Gradient evaluations: 19
Iteration: 1, Func. Count: 10, Neg. LLF: 123.31056302373158
Iteration: 2, Func. Count: 22, Neg. LLF: 957.9215955154962
Iteration: 3, Func. Count: 32, Neg. LLF: 7173747.421393799
Iteration: 4, Func. Count: 42, Neg. LLF: 122.5192361186207
Iteration: 5, Func. Count: 52, Neg. LLF: 87.46687001262478
Iteration: 6, Func. Count: 61, Neg. LLF: 940106.9465031151
Iteration: 7, Func. Count: 72, Neg. LLF: 90.97273875759275
Iteration: 8, Func. Count: 82, Neg. LLF: 86.81299732608788
Iteration: 9, Func. Count: 91, Neg. LLF: 86.74668882486165
Iteration: 10, Func. Count: 100, Neg. LLF: 86.69485051656484
Iteration: 11, Func. Count: 109, Neg. LLF: 86.64030151742058
Iteration: 12, Func. Count: 118, Neg. LLF: 86.63869252323282
Iteration: 13, Func. Count: 127, Neg. LLF: 86.63358942570562
Iteration: 14, Func. Count: 136, Neg. LLF: 86.63313268251778
Iteration: 15, Func. Count: 145, Neg. LLF: 86.63289327766388
Iteration: 16, Func. Count: 154, Neg. LLF: 86.63285474189989
Iteration: 17, Func. Count: 163, Neg. LLF: 86.63285172005278
Iteration: 18, Func. Count: 171, Neg. LLF: 86.63285172005632
Optimization terminated successfully (Exit mode 0)
Current function value: 86.63285172005278
Iterations: 18
Function evaluations: 171
Gradient evaluations: 18
Iteration: 1, Func. Count: 11, Neg. LLF: 90.58960857030446
Iteration: 2, Func. Count: 24, Neg. LLF: 97.00954003199162
Iteration: 3, Func. Count: 35, Neg. LLF: 87.30265379501212
Iteration: 4, Func. Count: 46, Neg. LLF: 86.97811338271728
Iteration: 5, Func. Count: 56, Neg. LLF: 87.4327372082678
Iteration: 6, Func. Count: 67, Neg. LLF: 88.88192172840373
Iteration: 7, Func. Count: 78, Neg. LLF: 86.64838965626805
Iteration: 8, Func. Count: 88, Neg. LLF: 86.63532073074748
Iteration: 9, Func. Count: 98, Neg. LLF: 86.63341778501466
Iteration: 10, Func. Count: 108, Neg. LLF: 86.6330660632083
Iteration: 11, Func. Count: 118, Neg. LLF: 86.63285379719835
Iteration: 12, Func. Count: 128, Neg. LLF: 86.63285173246408
Iteration: 13, Func. Count: 137, Neg. LLF: 86.63285174141551
Optimization terminated successfully (Exit mode 0)
Current function value: 86.63285173246408
Iterations: 13
Function evaluations: 137
Gradient evaluations: 13
Iteration: 1, Func. Count: 12, Neg. LLF: 92.31357234869907
Iteration: 2, Func. Count: 26, Neg. LLF: 131.1211026364643
Iteration: 3, Func. Count: 38, Neg. LLF: 87.85197172156865
Iteration: 4, Func. Count: 50, Neg. LLF: 87.05061222081818
Iteration: 5, Func. Count: 61, Neg. LLF: 87.10529080318753
Iteration: 6, Func. Count: 73, Neg. LLF: 86.64471512073591
Iteration: 7, Func. Count: 84, Neg. LLF: 86.63603558784374
Iteration: 8, Func. Count: 95, Neg. LLF: 86.6329940662676
Iteration: 9, Func. Count: 106, Neg. LLF: 86.63288575293076
Iteration: 10, Func. Count: 117, Neg. LLF: 86.6331857276258
Iteration: 11, Func. Count: 129, Neg. LLF: 86.63290016852848
Iteration: 12, Func. Count: 141, Neg. LLF: 86.63285300505169
Iteration: 13, Func. Count: 152, Neg. LLF: 86.63285182676593
Iteration: 14, Func. Count: 162, Neg. LLF: 86.63285185315067
Optimization terminated successfully (Exit mode 0)
Current function value: 86.63285182676593
Iterations: 14
Function evaluations: 162
Gradient evaluations: 14
Iteration: 1, Func. Count: 13, Neg. LLF: 91.6696739157791
Iteration: 2, Func. Count: 28, Neg. LLF: 4097236.019025925
Iteration: 3, Func. Count: 41, Neg. LLF: 87.5329141246813
Iteration: 4, Func. Count: 54, Neg. LLF: 86.76255507050102
Iteration: 5, Func. Count: 66, Neg. LLF: 87.74900286704226
Iteration: 6, Func. Count: 79, Neg. LLF: 86.66709756093105
Iteration: 7, Func. Count: 91, Neg. LLF: 86.63717486264711
Iteration: 8, Func. Count: 103, Neg. LLF: 86.63315972427822
Iteration: 9, Func. Count: 115, Neg. LLF: 86.6329680517728
Iteration: 10, Func. Count: 127, Neg. LLF: 86.63287985045116
Iteration: 11, Func. Count: 139, Neg. LLF: 86.63285544798028
Iteration: 12, Func. Count: 151, Neg. LLF: 86.63298342781039
Optimization terminated successfully (Exit mode 0)
Current function value: 86.63285492153935
Iterations: 12
Function evaluations: 152
Gradient evaluations: 12
Iteration: 1, Func. Count: 14, Neg. LLF: 89.47318234781748
Iteration: 2, Func. Count: 30, Neg. LLF: 6514789.748213868
Iteration: 3, Func. Count: 44, Neg. LLF: 91.46183832493844
Iteration: 4, Func. Count: 58, Neg. LLF: 91.09607763471705
Iteration: 5, Func. Count: 72, Neg. LLF: 87.71296909310597
Iteration: 6, Func. Count: 86, Neg. LLF: 86.52616997035575
Iteration: 7, Func. Count: 99, Neg. LLF: 86.70366255691118
Iteration: 8, Func. Count: 113, Neg. LLF: 94.3153578061601
Iteration: 9, Func. Count: 127, Neg. LLF: 87.8230978363436
Iteration: 10, Func. Count: 142, Neg. LLF: 86.12341806788046
Iteration: 11, Func. Count: 155, Neg. LLF: 86.09967686425809
Iteration: 12, Func. Count: 168, Neg. LLF: 86.08849481542953
Iteration: 13, Func. Count: 181, Neg. LLF: 86.08657464394874
Iteration: 14, Func. Count: 194, Neg. LLF: 86.08647068533061
Iteration: 15, Func. Count: 207, Neg. LLF: 86.08632402056276
Iteration: 16, Func. Count: 220, Neg. LLF: 86.08625262804864
Iteration: 17, Func. Count: 233, Neg. LLF: 86.0861745738224
Iteration: 18, Func. Count: 246, Neg. LLF: 86.08616376940572
Iteration: 19, Func. Count: 259, Neg. LLF: 86.086162671154
Iteration: 20, Func. Count: 271, Neg. LLF: 86.08616266621574
Optimization terminated successfully (Exit mode 0)
Current function value: 86.086162671154
Iterations: 20
Function evaluations: 271
Gradient evaluations: 20
Iteration: 1, Func. Count: 7, Neg. LLF: 119.97435377359649
Iteration: 2, Func. Count: 16, Neg. LLF: 87.69184484713341
Iteration: 3, Func. Count: 22, Neg. LLF: 175.0101019360825
Iteration: 4, Func. Count: 29, Neg. LLF: 131.7024108260384
Iteration: 5, Func. Count: 36, Neg. LLF: 87.42573506531713
Iteration: 6, Func. Count: 43, Neg. LLF: 87.37624737256681
Iteration: 7, Func. Count: 50, Neg. LLF: 87.25998033433864
Iteration: 8, Func. Count: 56, Neg. LLF: 87.25657822614403
Iteration: 9, Func. Count: 62, Neg. LLF: 87.25707878746114
Iteration: 10, Func. Count: 69, Neg. LLF: 87.2557035944192
Iteration: 11, Func. Count: 75, Neg. LLF: 87.25569598842236
Iteration: 12, Func. Count: 80, Neg. LLF: 87.25569598838982
Optimization terminated successfully (Exit mode 0)
Current function value: 87.25569598842236
Iterations: 12
Function evaluations: 80
Gradient evaluations: 12
Iteration: 1, Func. Count: 8, Neg. LLF: 119.09948743692152
Iteration: 2, Func. Count: 17, Neg. LLF: 87.28140773802214
Iteration: 3, Func. Count: 24, Neg. LLF: 87.29014818199705
Iteration: 4, Func. Count: 32, Neg. LLF: 87.27720052743825
Iteration: 5, Func. Count: 39, Neg. LLF: 87.27715612637115
Iteration: 6, Func. Count: 46, Neg. LLF: 87.27700363946055
Iteration: 7, Func. Count: 53, Neg. LLF: 87.27486887460282
Iteration: 8, Func. Count: 60, Neg. LLF: 87.2730492205885
Iteration: 9, Func. Count: 67, Neg. LLF: 87.27367957189469
Iteration: 10, Func. Count: 75, Neg. LLF: 87.27023207234002
Iteration: 11, Func. Count: 82, Neg. LLF: 87.26623670814878
Iteration: 12, Func. Count: 89, Neg. LLF: 87.26423021310487
Iteration: 13, Func. Count: 96, Neg. LLF: 87.30962726056813
Iteration: 14, Func. Count: 104, Neg. LLF: 87.26072656987135
Iteration: 15, Func. Count: 111, Neg. LLF: 87.25841349616978
Iteration: 16, Func. Count: 118, Neg. LLF: 87.25577488589093
Iteration: 17, Func. Count: 125, Neg. LLF: 87.25569732048385
Iteration: 18, Func. Count: 132, Neg. LLF: 87.25569567896491
Iteration: 19, Func. Count: 138, Neg. LLF: 87.25569568243039
Optimization terminated successfully (Exit mode 0)
Current function value: 87.25569567896491
Iterations: 19
Function evaluations: 138
Gradient evaluations: 19
Iteration: 1, Func. Count: 9, Neg. LLF: 123.73334867045882
Iteration: 2, Func. Count: 19, Neg. LLF: 87.28373325126992
Iteration: 3, Func. Count: 27, Neg. LLF: 87.27998901687053
Iteration: 4, Func. Count: 35, Neg. LLF: 87.27552439277811
Iteration: 5, Func. Count: 43, Neg. LLF: 87.27547793071649
Iteration: 6, Func. Count: 51, Neg. LLF: 87.27543741772868
Iteration: 7, Func. Count: 59, Neg. LLF: 87.27520450551647
Iteration: 8, Func. Count: 67, Neg. LLF: 87.2738805653054
Iteration: 9, Func. Count: 75, Neg. LLF: 87.2487237955345
Iteration: 10, Func. Count: 83, Neg. LLF: 88.45421864185428
Iteration: 11, Func. Count: 92, Neg. LLF: 87.27859674843629
Iteration: 12, Func. Count: 104, Neg. LLF: 87.23082687794557
Iteration: 13, Func. Count: 112, Neg. LLF: 87.23074424305999
Iteration: 14, Func. Count: 121, Neg. LLF: 87.2298687988119
Iteration: 15, Func. Count: 129, Neg. LLF: 87.2298478009446
Iteration: 16, Func. Count: 137, Neg. LLF: 87.22984427956823
Iteration: 17, Func. Count: 145, Neg. LLF: 87.22983863786179
Iteration: 18, Func. Count: 153, Neg. LLF: 87.22981909936661
Iteration: 19, Func. Count: 161, Neg. LLF: 87.22981171174632
Iteration: 20, Func. Count: 169, Neg. LLF: 87.22980134577607
Iteration: 21, Func. Count: 176, Neg. LLF: 87.22980134599777
Optimization terminated successfully (Exit mode 0)
Current function value: 87.22980134577607
Iterations: 21
Function evaluations: 176
Gradient evaluations: 21
Iteration: 1, Func. Count: 10, Neg. LLF: 91.61161608691955
Iteration: 2, Func. Count: 21, Neg. LLF: 87.28334667262692
Iteration: 3, Func. Count: 30, Neg. LLF: 87.26615415262224
Iteration: 4, Func. Count: 39, Neg. LLF: 87.26273522445538
Iteration: 5, Func. Count: 48, Neg. LLF: 87.25268359234389
Iteration: 6, Func. Count: 57, Neg. LLF: 87.24803025764294
Iteration: 7, Func. Count: 66, Neg. LLF: 87.15801337018198
Iteration: 8, Func. Count: 75, Neg. LLF: 86.64573185871461
Iteration: 9, Func. Count: 84, Neg. LLF: 28358985.34847949
Iteration: 10, Func. Count: 95, Neg. LLF: 380.0943349307902
Iteration: 11, Func. Count: 106, Neg. LLF: 89.47658841235832
Iteration: 12, Func. Count: 117, Neg. LLF: 86.57953435219459
Iteration: 13, Func. Count: 126, Neg. LLF: 86.57942311170794
Iteration: 14, Func. Count: 135, Neg. LLF: 86.57941950066052
Iteration: 15, Func. Count: 143, Neg. LLF: 86.57941950063544
Optimization terminated successfully (Exit mode 0)
Current function value: 86.57941950066052
Iterations: 16
Function evaluations: 143
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 88.32177998343779
Iteration: 2, Func. Count: 23, Neg. LLF: 87.29673568912565
Iteration: 3, Func. Count: 33, Neg. LLF: 87.26040008835565
Iteration: 4, Func. Count: 43, Neg. LLF: 88.46674640012823
Iteration: 5, Func. Count: 54, Neg. LLF: 87.11418289329937
Iteration: 6, Func. Count: 64, Neg. LLF: 87.06255554939791
Iteration: 7, Func. Count: 74, Neg. LLF: 86.27616027863439
Iteration: 8, Func. Count: 84, Neg. LLF: 87.35937378626822
Iteration: 9, Func. Count: 97, Neg. LLF: 86.2587959760508
Iteration: 10, Func. Count: 107, Neg. LLF: 86.42011823662561
Iteration: 11, Func. Count: 118, Neg. LLF: 86.23550312934623
Iteration: 12, Func. Count: 128, Neg. LLF: 86.23249488802934
Iteration: 13, Func. Count: 138, Neg. LLF: 13809.739599540077
Iteration: 14, Func. Count: 151, Neg. LLF: 86.41193571718559
Iteration: 15, Func. Count: 163, Neg. LLF: 86.25926294263974
Iteration: 16, Func. Count: 175, Neg. LLF: 86.23525177210615
Optimization terminated successfully (Exit mode 0)
Current function value: 86.23226769272938
Iterations: 17
Function evaluations: 177
Gradient evaluations: 16
Iteration: 1, Func. Count: 8, Neg. LLF: 118.0924391165341
Iteration: 2, Func. Count: 18, Neg. LLF: 101.90640804390192
Iteration: 3, Func. Count: 26, Neg. LLF: 87.29937491693339
Iteration: 4, Func. Count: 33, Neg. LLF: 91.80428207278727
Iteration: 5, Func. Count: 41, Neg. LLF: 7084.754386253353
Iteration: 6, Func. Count: 49, Neg. LLF: 87.06697176453292
Iteration: 7, Func. Count: 57, Neg. LLF: 87.00734054434295
Iteration: 8, Func. Count: 64, Neg. LLF: 87.00531327227232
Iteration: 9, Func. Count: 71, Neg. LLF: 87.00528430337197
Iteration: 10, Func. Count: 78, Neg. LLF: 87.00528075082805
Iteration: 11, Func. Count: 84, Neg. LLF: 87.00528075082667
Optimization terminated successfully (Exit mode 0)
Current function value: 87.00528075082805
Iterations: 11
Function evaluations: 84
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 87.36391969794333
Iteration: 2, Func. Count: 18, Neg. LLF: 87.41687275683773
Iteration: 3, Func. Count: 27, Neg. LLF: 87.10763882062327
Iteration: 4, Func. Count: 35, Neg. LLF: 89.02994152435852
Iteration: 5, Func. Count: 44, Neg. LLF: 95.32021594017672
Iteration: 6, Func. Count: 54, Neg. LLF: 87.01803664082955
Iteration: 7, Func. Count: 62, Neg. LLF: 87.0062377813786
Iteration: 8, Func. Count: 70, Neg. LLF: 87.0054046452402
Iteration: 9, Func. Count: 78, Neg. LLF: 87.00530382718004
Iteration: 10, Func. Count: 86, Neg. LLF: 87.00528095335063
Iteration: 11, Func. Count: 93, Neg. LLF: 87.00528096475274
Optimization terminated successfully (Exit mode 0)
Current function value: 87.00528095335063
Iterations: 11
Function evaluations: 93
Gradient evaluations: 11
Iteration: 1, Func. Count: 10, Neg. LLF: 88.02154965848536
Iteration: 2, Func. Count: 20, Neg. LLF: 87.56026576738577
Iteration: 3, Func. Count: 30, Neg. LLF: 88.27537294061334
Iteration: 4, Func. Count: 40, Neg. LLF: 86.95526194838182
Iteration: 5, Func. Count: 49, Neg. LLF: 86.93081409144771
Iteration: 6, Func. Count: 58, Neg. LLF: 86.91641858622111
Iteration: 7, Func. Count: 67, Neg. LLF: 86.89398864883826
Iteration: 8, Func. Count: 76, Neg. LLF: 87.01205188191038
Iteration: 9, Func. Count: 86, Neg. LLF: 87.01097305117632
Iteration: 10, Func. Count: 96, Neg. LLF: 86.90942428321911
Iteration: 11, Func. Count: 106, Neg. LLF: 86.87635078913989
Iteration: 12, Func. Count: 116, Neg. LLF: 86.86859816264388
Iteration: 13, Func. Count: 125, Neg. LLF: 86.86811843759378
Iteration: 14, Func. Count: 134, Neg. LLF: 86.86808719202291
Iteration: 15, Func. Count: 143, Neg. LLF: 86.86808640357641
Optimization terminated successfully (Exit mode 0)
Current function value: 86.86808640357641
Iterations: 15
Function evaluations: 143
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 94.61757181130952
Iteration: 2, Func. Count: 23, Neg. LLF: 87.28064312526325
Iteration: 3, Func. Count: 34, Neg. LLF: 87.05169774603284
Iteration: 4, Func. Count: 44, Neg. LLF: 86.96240737672072
Iteration: 5, Func. Count: 54, Neg. LLF: 86.91276558427077
Iteration: 6, Func. Count: 64, Neg. LLF: 86.90235462589668
Iteration: 7, Func. Count: 74, Neg. LLF: 86.87722293384903
Iteration: 8, Func. Count: 84, Neg. LLF: 86.87854020206372
Iteration: 9, Func. Count: 95, Neg. LLF: 86.86930994192305
Iteration: 10, Func. Count: 105, Neg. LLF: 86.86992111088027
Iteration: 11, Func. Count: 116, Neg. LLF: 86.86809907491178
Iteration: 12, Func. Count: 126, Neg. LLF: 86.86808658091039
Iteration: 13, Func. Count: 135, Neg. LLF: 86.86808658594084
Optimization terminated successfully (Exit mode 0)
Current function value: 86.86808658091039
Iterations: 13
Function evaluations: 135
Gradient evaluations: 13
Iteration: 1, Func. Count: 12, Neg. LLF: 94.93595316336292
Iteration: 2, Func. Count: 25, Neg. LLF: 89.8859630621097
Iteration: 3, Func. Count: 38, Neg. LLF: 89.65847601287642
Iteration: 4, Func. Count: 50, Neg. LLF: 86.98231385731772
Iteration: 5, Func. Count: 61, Neg. LLF: 86.99754173882718
Iteration: 6, Func. Count: 73, Neg. LLF: 86.93679513481162
Iteration: 7, Func. Count: 84, Neg. LLF: 86.93020888314778
Iteration: 8, Func. Count: 95, Neg. LLF: 86.90950349335765
Iteration: 9, Func. Count: 106, Neg. LLF: 87.5691427321039
Iteration: 10, Func. Count: 118, Neg. LLF: 87.46703874687812
Iteration: 11, Func. Count: 130, Neg. LLF: 87.13790087372273
Iteration: 12, Func. Count: 142, Neg. LLF: 87.03010591282994
Iteration: 13, Func. Count: 154, Neg. LLF: 86.9878514558109
Iteration: 14, Func. Count: 166, Neg. LLF: 86.8720883067276
Iteration: 15, Func. Count: 178, Neg. LLF: 86.86808602385305
Iteration: 16, Func. Count: 189, Neg. LLF: 86.86774201998128
Iteration: 17, Func. Count: 200, Neg. LLF: 86.86730057455806
Iteration: 18, Func. Count: 211, Neg. LLF: 86.86705548684894
Iteration: 19, Func. Count: 222, Neg. LLF: 86.86700962449699
Iteration: 20, Func. Count: 233, Neg. LLF: 86.867009211979
Optimization terminated successfully (Exit mode 0)
Current function value: 86.867009211979
Iterations: 20
Function evaluations: 233
Gradient evaluations: 20
Iteration: 1, Func. Count: 9, Neg. LLF: 118.29939622040139
Iteration: 2, Func. Count: 20, Neg. LLF: 93.0159353445573
Iteration: 3, Func. Count: 29, Neg. LLF: 87.29197254250688
Iteration: 4, Func. Count: 37, Neg. LLF: 8572821.268817127
Iteration: 5, Func. Count: 46, Neg. LLF: 330.5328497560105
Iteration: 6, Func. Count: 56, Neg. LLF: 87.01229767580428
Iteration: 7, Func. Count: 64, Neg. LLF: 87.00558333149868
Iteration: 8, Func. Count: 72, Neg. LLF: 87.00532763326204
Iteration: 9, Func. Count: 80, Neg. LLF: 87.00528130619381
Iteration: 10, Func. Count: 87, Neg. LLF: 87.0052813952212
Optimization terminated successfully (Exit mode 0)
Current function value: 87.00528130619381
Iterations: 10
Function evaluations: 87
Gradient evaluations: 10
Iteration: 1, Func. Count: 10, Neg. LLF: 92.03263862398204
Iteration: 2, Func. Count: 22, Neg. LLF: 101.3814724916491
Iteration: 3, Func. Count: 33, Neg. LLF: 87.18941411750446
Iteration: 4, Func. Count: 42, Neg. LLF: 87.26845777465374
Iteration: 5, Func. Count: 52, Neg. LLF: 87.0319056275612
Iteration: 6, Func. Count: 61, Neg. LLF: 87.01616253824841
Iteration: 7, Func. Count: 70, Neg. LLF: 87.0070546963706
Iteration: 8, Func. Count: 79, Neg. LLF: 87.00609623517411
Iteration: 9, Func. Count: 88, Neg. LLF: 87.00532091548241
Iteration: 10, Func. Count: 97, Neg. LLF: 87.00528795343168
Iteration: 11, Func. Count: 106, Neg. LLF: 87.00528321365736
Iteration: 12, Func. Count: 115, Neg. LLF: 87.00528122815007
Iteration: 13, Func. Count: 123, Neg. LLF: 87.00528123960203
Optimization terminated successfully (Exit mode 0)
Current function value: 87.00528122815007
Iterations: 13
Function evaluations: 123
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 92.55718231362397
Iteration: 2, Func. Count: 24, Neg. LLF: 177.55207735345203
Iteration: 3, Func. Count: 36, Neg. LLF: 86.97537121852433
Iteration: 4, Func. Count: 46, Neg. LLF: 86.95638807161889
Iteration: 5, Func. Count: 56, Neg. LLF: 86.9397969339509
Iteration: 6, Func. Count: 66, Neg. LLF: 86.9249209948964
Iteration: 7, Func. Count: 76, Neg. LLF: 86.9062429591016
Iteration: 8, Func. Count: 86, Neg. LLF: 86.88430482827567
Iteration: 9, Func. Count: 96, Neg. LLF: 86.87417815460431
Iteration: 10, Func. Count: 106, Neg. LLF: 86.87356763434383
Iteration: 11, Func. Count: 117, Neg. LLF: 86.86828214917435
Iteration: 12, Func. Count: 127, Neg. LLF: 86.8681131987388
Iteration: 13, Func. Count: 137, Neg. LLF: 86.86808739471797
Iteration: 14, Func. Count: 147, Neg. LLF: 86.86808640731051
Optimization terminated successfully (Exit mode 0)
Current function value: 86.86808640731051
Iterations: 14
Function evaluations: 147
Gradient evaluations: 14
Iteration: 1, Func. Count: 12, Neg. LLF: 93.96218797466905
Iteration: 2, Func. Count: 26, Neg. LLF: 227.8261331992038
Iteration: 3, Func. Count: 39, Neg. LLF: 87.01657942630347
Iteration: 4, Func. Count: 50, Neg. LLF: 86.96636038814636
Iteration: 5, Func. Count: 61, Neg. LLF: 86.92658247250375
Iteration: 6, Func. Count: 72, Neg. LLF: 87.06114353940768
Iteration: 7, Func. Count: 84, Neg. LLF: 87.13572812089403
Iteration: 8, Func. Count: 96, Neg. LLF: 87.03262777835909
Iteration: 9, Func. Count: 108, Neg. LLF: 86.88716583137682
Iteration: 10, Func. Count: 120, Neg. LLF: 86.86997076566301
Iteration: 11, Func. Count: 131, Neg. LLF: 86.86834014842432
Iteration: 12, Func. Count: 142, Neg. LLF: 86.86817398782266
Iteration: 13, Func. Count: 153, Neg. LLF: 86.86809051550276
Iteration: 14, Func. Count: 164, Neg. LLF: 86.86808659102796
Iteration: 15, Func. Count: 174, Neg. LLF: 86.86808659612726
Optimization terminated successfully (Exit mode 0)
Current function value: 86.86808659102796
Iterations: 15
Function evaluations: 174
Gradient evaluations: 15
Iteration: 1, Func. Count: 13, Neg. LLF: 94.8685934010491
Iteration: 2, Func. Count: 28, Neg. LLF: 193.63950715255612
Iteration: 3, Func. Count: 42, Neg. LLF: 101.30601462882873
Iteration: 4, Func. Count: 56, Neg. LLF: 87.0837244289155
Iteration: 5, Func. Count: 68, Neg. LLF: 86.96545982253927
Iteration: 6, Func. Count: 80, Neg. LLF: 86.93135993067007
Iteration: 7, Func. Count: 92, Neg. LLF: 86.91906509990625
Iteration: 8, Func. Count: 104, Neg. LLF: 87.45606565225131
Iteration: 9, Func. Count: 117, Neg. LLF: 87.21972226123961
Iteration: 10, Func. Count: 130, Neg. LLF: 87.39093492218176
Iteration: 11, Func. Count: 143, Neg. LLF: 87.21432831510312
Iteration: 12, Func. Count: 156, Neg. LLF: 87.11669807938594
Iteration: 13, Func. Count: 169, Neg. LLF: 86.89950455112455
Iteration: 14, Func. Count: 182, Neg. LLF: 86.87635159442328
Iteration: 15, Func. Count: 194, Neg. LLF: 86.87208620836431
Iteration: 16, Func. Count: 206, Neg. LLF: 86.86974958961505
Iteration: 17, Func. Count: 218, Neg. LLF: 86.86869992944682
Iteration: 18, Func. Count: 230, Neg. LLF: 86.8681043446481
Iteration: 19, Func. Count: 242, Neg. LLF: 86.8675705341749
Iteration: 20, Func. Count: 254, Neg. LLF: 86.86703559701934
Iteration: 21, Func. Count: 266, Neg. LLF: 86.86700989896701
Iteration: 22, Func. Count: 278, Neg. LLF: 86.86700918276401
Optimization terminated successfully (Exit mode 0)
Current function value: 86.86700918276401
Iterations: 22
Function evaluations: 278
Gradient evaluations: 22
Iteration: 1, Func. Count: 10, Neg. LLF: 115.51483559561144
Iteration: 2, Func. Count: 22, Neg. LLF: 111.68151001663698
Iteration: 3, Func. Count: 32, Neg. LLF: 87.38817854684727
Iteration: 4, Func. Count: 41, Neg. LLF: 1893915.8187121747
Iteration: 5, Func. Count: 51, Neg. LLF: 87.47438371392728
Iteration: 6, Func. Count: 61, Neg. LLF: 86.67678804941592
Iteration: 7, Func. Count: 70, Neg. LLF: 86.69840604016346
Iteration: 8, Func. Count: 80, Neg. LLF: 86.63415462184375
Iteration: 9, Func. Count: 89, Neg. LLF: 86.63337111770386
Iteration: 10, Func. Count: 98, Neg. LLF: 86.63289966780424
Iteration: 11, Func. Count: 107, Neg. LLF: 86.63285196229802
Iteration: 12, Func. Count: 115, Neg. LLF: 86.63285196228722
Optimization terminated successfully (Exit mode 0)
Current function value: 86.63285196229802
Iterations: 12
Function evaluations: 115
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 91.03217225403978
Iteration: 2, Func. Count: 24, Neg. LLF: 97.24820901062975
Iteration: 3, Func. Count: 35, Neg. LLF: 87.94828625685396
Iteration: 4, Func. Count: 48, Neg. LLF: 86.86150317420018
Iteration: 5, Func. Count: 58, Neg. LLF: 86.8167746698536
Iteration: 6, Func. Count: 69, Neg. LLF: 86.636398772317
Iteration: 7, Func. Count: 79, Neg. LLF: 86.63321003659944
Iteration: 8, Func. Count: 89, Neg. LLF: 86.63301063467468
Iteration: 9, Func. Count: 99, Neg. LLF: 86.63286316032438
Iteration: 10, Func. Count: 109, Neg. LLF: 86.63285215968406
Iteration: 11, Func. Count: 118, Neg. LLF: 86.63285216862057
Optimization terminated successfully (Exit mode 0)
Current function value: 86.63285215968406
Iterations: 11
Function evaluations: 118
Gradient evaluations: 11
Iteration: 1, Func. Count: 12, Neg. LLF: 92.74299956665425
Iteration: 2, Func. Count: 26, Neg. LLF: 140.02653765237687
Iteration: 3, Func. Count: 38, Neg. LLF: 88.23171930188516
Iteration: 4, Func. Count: 51, Neg. LLF: 86.94830536971303
Iteration: 5, Func. Count: 62, Neg. LLF: 86.78201742357412
Iteration: 6, Func. Count: 73, Neg. LLF: 86.65611521466124
Iteration: 7, Func. Count: 84, Neg. LLF: 86.63604214137916
Iteration: 8, Func. Count: 95, Neg. LLF: 86.63287275142768
Iteration: 9, Func. Count: 106, Neg. LLF: 86.63285405356947
Iteration: 10, Func. Count: 117, Neg. LLF: 86.63285274977022
Iteration: 11, Func. Count: 128, Neg. LLF: 86.63285209297139
Optimization terminated successfully (Exit mode 0)
Current function value: 86.63285209297139
Iterations: 11
Function evaluations: 128
Gradient evaluations: 11
Iteration: 1, Func. Count: 13, Neg. LLF: 92.84643722298601
Iteration: 2, Func. Count: 28, Neg. LLF: 326.43369235664363
Iteration: 3, Func. Count: 41, Neg. LLF: 88.00842930644684
Iteration: 4, Func. Count: 54, Neg. LLF: 89.18701578030759
Iteration: 5, Func. Count: 67, Neg. LLF: 86.83014138404853
Iteration: 6, Func. Count: 79, Neg. LLF: 86.69093310734947
Iteration: 7, Func. Count: 91, Neg. LLF: 86.64366469387112
Iteration: 8, Func. Count: 103, Neg. LLF: 86.63429517312287
Iteration: 9, Func. Count: 115, Neg. LLF: 86.6332595587446
Iteration: 10, Func. Count: 127, Neg. LLF: 86.63295993831724
Iteration: 11, Func. Count: 139, Neg. LLF: 86.63286823910258
Iteration: 12, Func. Count: 151, Neg. LLF: 86.63285298055828
Iteration: 13, Func. Count: 163, Neg. LLF: 86.63285184091315
Iteration: 14, Func. Count: 174, Neg. LLF: 86.63285186799324
Optimization terminated successfully (Exit mode 0)
Current function value: 86.63285184091315
Iterations: 14
Function evaluations: 174
Gradient evaluations: 14
Iteration: 1, Func. Count: 14, Neg. LLF: 90.10827705091681
Iteration: 2, Func. Count: 29, Neg. LLF: 15064380.30033293
Iteration: 3, Func. Count: 43, Neg. LLF: 94.49393334343328
Iteration: 4, Func. Count: 57, Neg. LLF: 91.71155319394177
Iteration: 5, Func. Count: 71, Neg. LLF: 86.3095067576134
Iteration: 6, Func. Count: 84, Neg. LLF: 86.45167859543125
Iteration: 7, Func. Count: 98, Neg. LLF: 94.81168406777557
Iteration: 8, Func. Count: 112, Neg. LLF: 86.51480697025923
Iteration: 9, Func. Count: 126, Neg. LLF: 85.86558634220097
Iteration: 10, Func. Count: 139, Neg. LLF: 85.88524746846466
Iteration: 11, Func. Count: 153, Neg. LLF: 85.81660585096454
Iteration: 12, Func. Count: 166, Neg. LLF: 85.81363617214389
Iteration: 13, Func. Count: 179, Neg. LLF: 85.811587033899
Iteration: 14, Func. Count: 192, Neg. LLF: 85.81020058084604
Iteration: 15, Func. Count: 205, Neg. LLF: 85.80982894117152
Iteration: 16, Func. Count: 218, Neg. LLF: 85.80980502141539
Iteration: 17, Func. Count: 230, Neg. LLF: 85.80980500584566
Optimization terminated successfully (Exit mode 0)
Current function value: 85.80980502141539
Iterations: 17
Function evaluations: 230
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 116.0143293344131
Iteration: 2, Func. Count: 24, Neg. LLF: 128.67321772280894
Iteration: 3, Func. Count: 35, Neg. LLF: 89.16647971142143
Iteration: 4, Func. Count: 46, Neg. LLF: 128.83058802028103
Iteration: 5, Func. Count: 57, Neg. LLF: 86.72448019652099
Iteration: 6, Func. Count: 67, Neg. LLF: 86.65933421028207
Iteration: 7, Func. Count: 77, Neg. LLF: 86.63455466339597
Iteration: 8, Func. Count: 87, Neg. LLF: 86.63296092889694
Iteration: 9, Func. Count: 97, Neg. LLF: 86.65960289872145
Iteration: 10, Func. Count: 109, Neg. LLF: 86.63289438751148
Iteration: 11, Func. Count: 119, Neg. LLF: 86.63285178391682
Iteration: 12, Func. Count: 128, Neg. LLF: 86.63285178393303
Optimization terminated successfully (Exit mode 0)
Current function value: 86.63285178391682
Iterations: 12
Function evaluations: 128
Gradient evaluations: 12
Iteration: 1, Func. Count: 12, Neg. LLF: 91.00305763877297
Iteration: 2, Func. Count: 26, Neg. LLF: 96.85718420689244
Iteration: 3, Func. Count: 38, Neg. LLF: 87.56630684297109
Iteration: 4, Func. Count: 52, Neg. LLF: 86.93980647884653
Iteration: 5, Func. Count: 63, Neg. LLF: 86.84258010049598
Iteration: 6, Func. Count: 75, Neg. LLF: 86.81258714807552
Iteration: 7, Func. Count: 87, Neg. LLF: 86.63810632601243
Iteration: 8, Func. Count: 98, Neg. LLF: 86.63403624762569
Iteration: 9, Func. Count: 109, Neg. LLF: 86.63319209820658
Iteration: 10, Func. Count: 120, Neg. LLF: 86.63289567346982
Iteration: 11, Func. Count: 131, Neg. LLF: 86.63286026253024
Iteration: 12, Func. Count: 142, Neg. LLF: 86.63285357752555
Iteration: 13, Func. Count: 153, Neg. LLF: 86.63285184605618
Iteration: 14, Func. Count: 163, Neg. LLF: 86.63285185502005
Optimization terminated successfully (Exit mode 0)
Current function value: 86.63285184605618
Iterations: 14
Function evaluations: 163
Gradient evaluations: 14
Iteration: 1, Func. Count: 13, Neg. LLF: 92.57307783597052
Iteration: 2, Func. Count: 28, Neg. LLF: 143.76416452693877
Iteration: 3, Func. Count: 41, Neg. LLF: 88.15645402958897
Iteration: 4, Func. Count: 55, Neg. LLF: 86.94327563748756
Iteration: 5, Func. Count: 67, Neg. LLF: 86.78467894664381
Iteration: 6, Func. Count: 79, Neg. LLF: 86.65467962981191
Iteration: 7, Func. Count: 91, Neg. LLF: 86.63617227399678
Iteration: 8, Func. Count: 103, Neg. LLF: 86.63287851849832
Iteration: 9, Func. Count: 115, Neg. LLF: 86.63285816706528
Iteration: 10, Func. Count: 127, Neg. LLF: 86.63318344285892
Optimization terminated successfully (Exit mode 0)
Current function value: 86.63285748532398
Iterations: 10
Function evaluations: 129
Gradient evaluations: 10
Iteration: 1, Func. Count: 14, Neg. LLF: 92.79674409344992
Iteration: 2, Func. Count: 30, Neg. LLF: 351.9494558511278
Iteration: 3, Func. Count: 44, Neg. LLF: 88.38273745415648
Iteration: 4, Func. Count: 58, Neg. LLF: 89.1666044193702
Iteration: 5, Func. Count: 72, Neg. LLF: 86.80339518971087
Iteration: 6, Func. Count: 85, Neg. LLF: 86.68680187477047
Iteration: 7, Func. Count: 98, Neg. LLF: 86.64272179772979
Iteration: 8, Func. Count: 111, Neg. LLF: 86.63409913481954
Iteration: 9, Func. Count: 124, Neg. LLF: 86.63321490432814
Iteration: 10, Func. Count: 137, Neg. LLF: 86.63294968754246
Iteration: 11, Func. Count: 150, Neg. LLF: 86.63286745600537
Iteration: 12, Func. Count: 163, Neg. LLF: 86.63285299048123
Iteration: 13, Func. Count: 176, Neg. LLF: 86.63292741715188
Optimization terminated successfully (Exit mode 0)
Current function value: 86.63285276488851
Iterations: 13
Function evaluations: 177
Gradient evaluations: 13
Iteration: 1, Func. Count: 15, Neg. LLF: 90.05179782661477
Iteration: 2, Func. Count: 31, Neg. LLF: 15152497.821136419
Iteration: 3, Func. Count: 46, Neg. LLF: 95.57931988954626
Iteration: 4, Func. Count: 61, Neg. LLF: 92.36634357797911
Iteration: 5, Func. Count: 76, Neg. LLF: 86.16179268104703
Iteration: 6, Func. Count: 90, Neg. LLF: 86.70290482033172
Iteration: 7, Func. Count: 105, Neg. LLF: 87.73761721947216
Iteration: 8, Func. Count: 120, Neg. LLF: 85.85022896855968
Iteration: 9, Func. Count: 134, Neg. LLF: 85.81224175227416
Iteration: 10, Func. Count: 148, Neg. LLF: 85.81112189454852
Iteration: 11, Func. Count: 162, Neg. LLF: 85.8101127992603
Iteration: 12, Func. Count: 176, Neg. LLF: 85.81002286530797
Iteration: 13, Func. Count: 190, Neg. LLF: 85.80980861382837
Iteration: 14, Func. Count: 204, Neg. LLF: 85.80980469383249
Iteration: 15, Func. Count: 217, Neg. LLF: 85.80980467834193
Optimization terminated successfully (Exit mode 0)
Current function value: 85.80980469383249
Iterations: 15
Function evaluations: 217
Gradient evaluations: 15
Iteration: 1, Func. Count: 8, Neg. LLF: 118.81589869408883
Iteration: 2, Func. Count: 18, Neg. LLF: 87.58430715378329
Iteration: 3, Func. Count: 25, Neg. LLF: 112.42299268837667
Iteration: 4, Func. Count: 33, Neg. LLF: 153.77838241791054
Iteration: 5, Func. Count: 41, Neg. LLF: 87.2949749955595
Iteration: 6, Func. Count: 49, Neg. LLF: 87.28188088926038
Iteration: 7, Func. Count: 58, Neg. LLF: 87.25600714710173
Iteration: 8, Func. Count: 66, Neg. LLF: 87.25570371388609
Iteration: 9, Func. Count: 73, Neg. LLF: 87.25569568166966
Iteration: 10, Func. Count: 79, Neg. LLF: 87.25569573146291
Optimization terminated successfully (Exit mode 0)
Current function value: 87.25569568166966
Iterations: 10
Function evaluations: 79
Gradient evaluations: 10
Iteration: 1, Func. Count: 9, Neg. LLF: 123.03492340456081
Iteration: 2, Func. Count: 19, Neg. LLF: 87.29149509111433
Iteration: 3, Func. Count: 27, Neg. LLF: 87.27792788500737
Iteration: 4, Func. Count: 35, Neg. LLF: 87.27728000752967
Iteration: 5, Func. Count: 43, Neg. LLF: 87.27726409264588
Iteration: 6, Func. Count: 51, Neg. LLF: 87.27713378016824
Iteration: 7, Func. Count: 59, Neg. LLF: 87.27515494134072
Iteration: 8, Func. Count: 67, Neg. LLF: 87.2691581626384
Iteration: 9, Func. Count: 75, Neg. LLF: 87.26878670578415
Iteration: 10, Func. Count: 83, Neg. LLF: 87.26780114312571
Iteration: 11, Func. Count: 91, Neg. LLF: 87.26773324231642
Iteration: 12, Func. Count: 99, Neg. LLF: 87.26765912987906
Iteration: 13, Func. Count: 107, Neg. LLF: 87.26746079957269
Iteration: 14, Func. Count: 115, Neg. LLF: 87.26700545618748
Iteration: 15, Func. Count: 123, Neg. LLF: 87.2660168641617
Iteration: 16, Func. Count: 131, Neg. LLF: 87.2722146925951
Iteration: 17, Func. Count: 140, Neg. LLF: 87.28018150416234
Iteration: 18, Func. Count: 149, Neg. LLF: 87.26111762277424
Iteration: 19, Func. Count: 157, Neg. LLF: 87.25587881760084
Iteration: 20, Func. Count: 165, Neg. LLF: 88.12902543459398
Iteration: 21, Func. Count: 175, Neg. LLF: 87.26280235960148
Iteration: 22, Func. Count: 185, Neg. LLF: 87.25674680670244
Iteration: 23, Func. Count: 194, Neg. LLF: 87.25844279622379
Iteration: 24, Func. Count: 203, Neg. LLF: 87.25569566526156
Iteration: 25, Func. Count: 210, Neg. LLF: 87.25569566872257
Optimization terminated successfully (Exit mode 0)
Current function value: 87.25569566526156
Iterations: 26
Function evaluations: 210
Gradient evaluations: 25
Iteration: 1, Func. Count: 10, Neg. LLF: 123.78324177043044
Iteration: 2, Func. Count: 21, Neg. LLF: 87.28966671004694
Iteration: 3, Func. Count: 30, Neg. LLF: 87.27651743543231
Iteration: 4, Func. Count: 39, Neg. LLF: 87.2754652655524
Iteration: 5, Func. Count: 48, Neg. LLF: 87.27541176095328
Iteration: 6, Func. Count: 57, Neg. LLF: 87.27538084841962
Iteration: 7, Func. Count: 66, Neg. LLF: 87.27517884724864
Iteration: 8, Func. Count: 75, Neg. LLF: 87.2724980795298
Iteration: 9, Func. Count: 84, Neg. LLF: 87.25187760757098
Iteration: 10, Func. Count: 93, Neg. LLF: 88.11200160052343
Iteration: 11, Func. Count: 103, Neg. LLF: 87.28103901916059
Iteration: 12, Func. Count: 116, Neg. LLF: 87.23019578355623
Iteration: 13, Func. Count: 125, Neg. LLF: 87.2299755528384
Iteration: 14, Func. Count: 134, Neg. LLF: 87.22994218929507
Iteration: 15, Func. Count: 143, Neg. LLF: 87.22993779757918
Iteration: 16, Func. Count: 152, Neg. LLF: 87.22993475370289
Iteration: 17, Func. Count: 161, Neg. LLF: 87.229933178484
Iteration: 18, Func. Count: 170, Neg. LLF: 87.22992283516254
Iteration: 19, Func. Count: 179, Neg. LLF: 87.22988976779193
Iteration: 20, Func. Count: 188, Neg. LLF: 87.22985141198691
Iteration: 21, Func. Count: 197, Neg. LLF: 87.22982776634782
Iteration: 22, Func. Count: 206, Neg. LLF: 87.22980142637027
Iteration: 23, Func. Count: 214, Neg. LLF: 87.22980142691596
Optimization terminated successfully (Exit mode 0)
Current function value: 87.22980142637027
Iterations: 23
Function evaluations: 214
Gradient evaluations: 23
Iteration: 1, Func. Count: 11, Neg. LLF: 91.6647607382525
Iteration: 2, Func. Count: 23, Neg. LLF: 87.29117157324167
Iteration: 3, Func. Count: 33, Neg. LLF: 87.26202562865119
Iteration: 4, Func. Count: 43, Neg. LLF: 87.25938834844088
Iteration: 5, Func. Count: 53, Neg. LLF: 87.24071365081122
Iteration: 6, Func. Count: 63, Neg. LLF: 87.8793276103904
Iteration: 7, Func. Count: 74, Neg. LLF: 87.85363146656739
Iteration: 8, Func. Count: 85, Neg. LLF: 87.43929361080097
Iteration: 9, Func. Count: 96, Neg. LLF: 87.1660940890174
Iteration: 10, Func. Count: 107, Neg. LLF: 87.0143192526085
Iteration: 11, Func. Count: 117, Neg. LLF: 86.98260348156387
Iteration: 12, Func. Count: 127, Neg. LLF: 86.7916546980081
Iteration: 13, Func. Count: 137, Neg. LLF: 86.68447986488705
Iteration: 14, Func. Count: 147, Neg. LLF: 86.58645409888379
Iteration: 15, Func. Count: 157, Neg. LLF: 86.58119198194963
Iteration: 16, Func. Count: 167, Neg. LLF: 86.57899199488516
Iteration: 17, Func. Count: 177, Neg. LLF: 86.57872297221228
Iteration: 18, Func. Count: 187, Neg. LLF: 86.5786811042127
Iteration: 19, Func. Count: 197, Neg. LLF: 86.57867959198984
Iteration: 20, Func. Count: 206, Neg. LLF: 86.5786795920585
Optimization terminated successfully (Exit mode 0)
Current function value: 86.57867959198984
Iterations: 20
Function evaluations: 206
Gradient evaluations: 20
Iteration: 1, Func. Count: 12, Neg. LLF: 88.06685686211196
Iteration: 2, Func. Count: 25, Neg. LLF: 87.34355577784628
Iteration: 3, Func. Count: 37, Neg. LLF: 87.25759500987004
Iteration: 4, Func. Count: 48, Neg. LLF: 87.30163283159234
Iteration: 5, Func. Count: 60, Neg. LLF: 87.2118864573826
Iteration: 6, Func. Count: 71, Neg. LLF: 87.09226772347479
Iteration: 7, Func. Count: 82, Neg. LLF: 87.0627437276432
Iteration: 8, Func. Count: 93, Neg. LLF: 86.35591044959003
Iteration: 9, Func. Count: 104, Neg. LLF: 81292366.8610907
Iteration: 10, Func. Count: 117, Neg. LLF: 229.80397592822501
Iteration: 11, Func. Count: 131, Neg. LLF: 89.79223008734098
Iteration: 12, Func. Count: 144, Neg. LLF: 86.5182371919768
Iteration: 13, Func. Count: 156, Neg. LLF: 86.23427174091479
Iteration: 14, Func. Count: 167, Neg. LLF: 86.23355842484952
Iteration: 15, Func. Count: 178, Neg. LLF: 86.2322948413639
Iteration: 16, Func. Count: 189, Neg. LLF: 86.23226080434911
Iteration: 17, Func. Count: 199, Neg. LLF: 86.23226080433987
Optimization terminated successfully (Exit mode 0)
Current function value: 86.23226080434911
Iterations: 18
Function evaluations: 199
Gradient evaluations: 17
Iteration: 1, Func. Count: 9, Neg. LLF: 115.52450437543412
Iteration: 2, Func. Count: 20, Neg. LLF: 94.29403170274637
Iteration: 3, Func. Count: 29, Neg. LLF: 87.29095639448444
Iteration: 4, Func. Count: 37, Neg. LLF: 94.79831549942563
Iteration: 5, Func. Count: 46, Neg. LLF: 387370.81884978095
Iteration: 6, Func. Count: 55, Neg. LLF: 87.18854710145224
Iteration: 7, Func. Count: 64, Neg. LLF: 87.00723364613067
Iteration: 8, Func. Count: 72, Neg. LLF: 87.00542339397475
Iteration: 9, Func. Count: 80, Neg. LLF: 87.00529543524573
Iteration: 10, Func. Count: 88, Neg. LLF: 87.005280911404
Iteration: 11, Func. Count: 95, Neg. LLF: 87.00528091136502
Optimization terminated successfully (Exit mode 0)
Current function value: 87.005280911404
Iterations: 11
Function evaluations: 95
Gradient evaluations: 11
Iteration: 1, Func. Count: 10, Neg. LLF: 87.42597524146503
Iteration: 2, Func. Count: 20, Neg. LLF: 87.37696290998963
Iteration: 3, Func. Count: 30, Neg. LLF: 87.11872588303648
Iteration: 4, Func. Count: 39, Neg. LLF: 88.01680344662277
Iteration: 5, Func. Count: 49, Neg. LLF: 92.44356011419511
Iteration: 6, Func. Count: 60, Neg. LLF: 87.01069801249446
Iteration: 7, Func. Count: 69, Neg. LLF: 87.00607892119963
Iteration: 8, Func. Count: 78, Neg. LLF: 87.0054880691113
Iteration: 9, Func. Count: 87, Neg. LLF: 87.00528985575119
Iteration: 10, Func. Count: 96, Neg. LLF: 87.0052814760873
Iteration: 11, Func. Count: 105, Neg. LLF: 87.00528073700285
Optimization terminated successfully (Exit mode 0)
Current function value: 87.00528073700285
Iterations: 11
Function evaluations: 105
Gradient evaluations: 11
Iteration: 1, Func. Count: 11, Neg. LLF: 88.50435491558876
Iteration: 2, Func. Count: 22, Neg. LLF: 87.51811384247179
Iteration: 3, Func. Count: 33, Neg. LLF: 87.96704645138514
Iteration: 4, Func. Count: 44, Neg. LLF: 86.94853310366624
Iteration: 5, Func. Count: 54, Neg. LLF: 86.92743983195346
Iteration: 6, Func. Count: 64, Neg. LLF: 86.91382135900182
Iteration: 7, Func. Count: 74, Neg. LLF: 86.88895398386914
Iteration: 8, Func. Count: 84, Neg. LLF: 86.9294769349621
Iteration: 9, Func. Count: 95, Neg. LLF: 86.88718631204395
Iteration: 10, Func. Count: 106, Neg. LLF: 86.87092854327152
Iteration: 11, Func. Count: 116, Neg. LLF: 86.87145269733034
Iteration: 12, Func. Count: 127, Neg. LLF: 86.86810396295884
Iteration: 13, Func. Count: 137, Neg. LLF: 86.86808640751775
Iteration: 14, Func. Count: 146, Neg. LLF: 86.86808640752555
Optimization terminated successfully (Exit mode 0)
Current function value: 86.86808640751775
Iterations: 14
Function evaluations: 146
Gradient evaluations: 14
Iteration: 1, Func. Count: 12, Neg. LLF: 96.3890146632966
Iteration: 2, Func. Count: 25, Neg. LLF: 87.28115889262219
Iteration: 3, Func. Count: 37, Neg. LLF: 87.06839559847816
Iteration: 4, Func. Count: 48, Neg. LLF: 86.94463868202257
Iteration: 5, Func. Count: 59, Neg. LLF: 86.910158791445
Iteration: 6, Func. Count: 70, Neg. LLF: 86.90033860794182
Iteration: 7, Func. Count: 81, Neg. LLF: 86.91220879308169
Iteration: 8, Func. Count: 93, Neg. LLF: 87.05397643834814
Iteration: 9, Func. Count: 105, Neg. LLF: 86.87089766722096
Iteration: 10, Func. Count: 117, Neg. LLF: 86.86813027499564
Iteration: 11, Func. Count: 129, Neg. LLF: 86.86810811818127
Iteration: 12, Func. Count: 140, Neg. LLF: 86.8680865957602
Optimization terminated successfully (Exit mode 0)
Current function value: 86.86808659078068
Iterations: 12
Function evaluations: 140
Gradient evaluations: 12
Iteration: 1, Func. Count: 13, Neg. LLF: 94.64463199668914
Iteration: 2, Func. Count: 27, Neg. LLF: 89.63406531672776
Iteration: 3, Func. Count: 41, Neg. LLF: 89.84699797312543
Iteration: 4, Func. Count: 54, Neg. LLF: 86.99405008839595
Iteration: 5, Func. Count: 66, Neg. LLF: 86.96838622732525
Iteration: 6, Func. Count: 78, Neg. LLF: 86.93985751622733
Iteration: 7, Func. Count: 90, Neg. LLF: 86.93508925987717
Iteration: 8, Func. Count: 102, Neg. LLF: 86.92503582389367
Iteration: 9, Func. Count: 114, Neg. LLF: 86.91482261574609
Iteration: 10, Func. Count: 126, Neg. LLF: 87.6190575787468
Iteration: 11, Func. Count: 139, Neg. LLF: 87.22681911336285
Iteration: 12, Func. Count: 152, Neg. LLF: 87.04750181939579
Iteration: 13, Func. Count: 165, Neg. LLF: 87.03619844848016
Iteration: 14, Func. Count: 178, Neg. LLF: 86.9023510693787
Iteration: 15, Func. Count: 191, Neg. LLF: 86.99799413450623
Iteration: 16, Func. Count: 204, Neg. LLF: 86.86922837284635
Iteration: 17, Func. Count: 216, Neg. LLF: 86.86827880303153
Iteration: 18, Func. Count: 228, Neg. LLF: 86.86793983310521
Iteration: 19, Func. Count: 240, Neg. LLF: 86.86750374517246
Iteration: 20, Func. Count: 252, Neg. LLF: 86.86718271825308
Iteration: 21, Func. Count: 264, Neg. LLF: 86.8670321513212
Iteration: 22, Func. Count: 276, Neg. LLF: 86.86701037383914
Iteration: 23, Func. Count: 288, Neg. LLF: 86.86700919788215
Iteration: 24, Func. Count: 299, Neg. LLF: 86.86700919788389
Optimization terminated successfully (Exit mode 0)
Current function value: 86.86700919788215
Iterations: 24
Function evaluations: 299
Gradient evaluations: 24
Iteration: 1, Func. Count: 10, Neg. LLF: 115.10350984801067
Iteration: 2, Func. Count: 22, Neg. LLF: 97.2298110575274
Iteration: 3, Func. Count: 32, Neg. LLF: 87.29008560346385
Iteration: 4, Func. Count: 41, Neg. LLF: 104.58486514980454
Iteration: 5, Func. Count: 51, Neg. LLF: 399.25619421609207
Iteration: 6, Func. Count: 61, Neg. LLF: 87.02729766891296
Iteration: 7, Func. Count: 70, Neg. LLF: 87.00569095248022
Iteration: 8, Func. Count: 79, Neg. LLF: 87.0053027328032
Iteration: 9, Func. Count: 88, Neg. LLF: 87.0052814378039
Iteration: 10, Func. Count: 97, Neg. LLF: 87.00528075690153
Optimization terminated successfully (Exit mode 0)
Current function value: 87.00528075690153
Iterations: 10
Function evaluations: 97
Gradient evaluations: 10
Iteration: 1, Func. Count: 11, Neg. LLF: 92.08549997813573
Iteration: 2, Func. Count: 24, Neg. LLF: 102.7811437593722
Iteration: 3, Func. Count: 36, Neg. LLF: 87.19045140157918
Iteration: 4, Func. Count: 46, Neg. LLF: 87.23662695511908
Iteration: 5, Func. Count: 57, Neg. LLF: 87.03392999506434
Iteration: 6, Func. Count: 67, Neg. LLF: 87.01728173311157
Iteration: 7, Func. Count: 77, Neg. LLF: 87.00738042675901
Iteration: 8, Func. Count: 87, Neg. LLF: 87.00614536163822
Iteration: 9, Func. Count: 97, Neg. LLF: 87.00533448367324
Iteration: 10, Func. Count: 107, Neg. LLF: 87.00529143220841
Iteration: 11, Func. Count: 117, Neg. LLF: 87.00528438743191
Iteration: 12, Func. Count: 127, Neg. LLF: 87.00528142393215
Iteration: 13, Func. Count: 137, Neg. LLF: 87.00528077119793
Optimization terminated successfully (Exit mode 0)
Current function value: 87.00528077119793
Iterations: 13
Function evaluations: 137
Gradient evaluations: 13
Iteration: 1, Func. Count: 12, Neg. LLF: 92.59634036891073
Iteration: 2, Func. Count: 26, Neg. LLF: 192.65146281909188
Iteration: 3, Func. Count: 39, Neg. LLF: 86.9795546063745
Iteration: 4, Func. Count: 50, Neg. LLF: 86.95447508067053
Iteration: 5, Func. Count: 61, Neg. LLF: 86.94238988140329
Iteration: 6, Func. Count: 72, Neg. LLF: 86.92022028364674
Iteration: 7, Func. Count: 83, Neg. LLF: 86.89768270281918
Iteration: 8, Func. Count: 94, Neg. LLF: 86.94629335088801
Iteration: 9, Func. Count: 106, Neg. LLF: 86.88504385355019
Iteration: 10, Func. Count: 118, Neg. LLF: 86.86907846180375
Iteration: 11, Func. Count: 129, Neg. LLF: 86.86851299373834
Iteration: 12, Func. Count: 140, Neg. LLF: 86.8681481334431
Iteration: 13, Func. Count: 151, Neg. LLF: 86.86808689974919
Iteration: 14, Func. Count: 162, Neg. LLF: 86.86808640440087
Optimization terminated successfully (Exit mode 0)
Current function value: 86.86808640440087
Iterations: 14
Function evaluations: 162
Gradient evaluations: 14
Iteration: 1, Func. Count: 13, Neg. LLF: 94.07880719171496
Iteration: 2, Func. Count: 28, Neg. LLF: 256.88051679360433
Iteration: 3, Func. Count: 42, Neg. LLF: 87.0246294096443
Iteration: 4, Func. Count: 54, Neg. LLF: 86.97075822824681
Iteration: 5, Func. Count: 66, Neg. LLF: 86.9258870795009
Iteration: 6, Func. Count: 78, Neg. LLF: 87.02641253929029
Iteration: 7, Func. Count: 91, Neg. LLF: 87.02251401148835
Iteration: 8, Func. Count: 104, Neg. LLF: 86.87941699611045
Iteration: 9, Func. Count: 117, Neg. LLF: 86.87598274754467
Iteration: 10, Func. Count: 130, Neg. LLF: 86.86859050681402
Iteration: 11, Func. Count: 142, Neg. LLF: 86.86808693981015
Iteration: 12, Func. Count: 153, Neg. LLF: 86.86808694500822
Optimization terminated successfully (Exit mode 0)
Current function value: 86.86808693981015
Iterations: 12
Function evaluations: 153
Gradient evaluations: 12
Iteration: 1, Func. Count: 14, Neg. LLF: 94.92348929813457
Iteration: 2, Func. Count: 30, Neg. LLF: 207.1431426960743
Iteration: 3, Func. Count: 45, Neg. LLF: 103.4082690052651
Iteration: 4, Func. Count: 60, Neg. LLF: 87.11207783110034
Iteration: 5, Func. Count: 73, Neg. LLF: 86.96324080274348
Iteration: 6, Func. Count: 86, Neg. LLF: 86.93177093387212
Iteration: 7, Func. Count: 99, Neg. LLF: 86.92007176845424
Iteration: 8, Func. Count: 112, Neg. LLF: 87.45568732857058
Iteration: 9, Func. Count: 126, Neg. LLF: 87.220532543881
Iteration: 10, Func. Count: 140, Neg. LLF: 87.41582600414684
Iteration: 11, Func. Count: 154, Neg. LLF: 87.21610528904945
Iteration: 12, Func. Count: 168, Neg. LLF: 87.17416985309178
Iteration: 13, Func. Count: 182, Neg. LLF: 86.90243125645259
Iteration: 14, Func. Count: 196, Neg. LLF: 86.87737026029393
Iteration: 15, Func. Count: 209, Neg. LLF: 86.87301395630809
Iteration: 16, Func. Count: 222, Neg. LLF: 86.87046969170872
Iteration: 17, Func. Count: 235, Neg. LLF: 86.8691174310924
Iteration: 18, Func. Count: 248, Neg. LLF: 86.86819655802444
Iteration: 19, Func. Count: 261, Neg. LLF: 86.86757057887691
Iteration: 20, Func. Count: 274, Neg. LLF: 86.8670956178647
Iteration: 21, Func. Count: 287, Neg. LLF: 86.86701236635818
Iteration: 22, Func. Count: 300, Neg. LLF: 86.86700924047493
Iteration: 23, Func. Count: 312, Neg. LLF: 86.86700924054215
Optimization terminated successfully (Exit mode 0)
Current function value: 86.86700924047493
Iterations: 23
Function evaluations: 312
Gradient evaluations: 23
Iteration: 1, Func. Count: 11, Neg. LLF: 112.71130088582807
Iteration: 2, Func. Count: 24, Neg. LLF: 121.50707692073047
Iteration: 3, Func. Count: 35, Neg. LLF: 92.66438356924324
Iteration: 4, Func. Count: 46, Neg. LLF: 86.71821719651999
Iteration: 5, Func. Count: 56, Neg. LLF: 104.64403788192844
Iteration: 6, Func. Count: 68, Neg. LLF: 89.14598162372621
Iteration: 7, Func. Count: 79, Neg. LLF: 86.64278365278517
Iteration: 8, Func. Count: 89, Neg. LLF: 86.62879899536176
Iteration: 9, Func. Count: 99, Neg. LLF: 86.62344481718192
Iteration: 10, Func. Count: 109, Neg. LLF: 86.6230307283086
Iteration: 11, Func. Count: 119, Neg. LLF: 86.62300949940098
Iteration: 12, Func. Count: 129, Neg. LLF: 86.62300695839572
Iteration: 13, Func. Count: 138, Neg. LLF: 86.6230069583944
Optimization terminated successfully (Exit mode 0)
Current function value: 86.62300695839572
Iterations: 13
Function evaluations: 138
Gradient evaluations: 13
Iteration: 1, Func. Count: 12, Neg. LLF: 91.10489251224683
Iteration: 2, Func. Count: 26, Neg. LLF: 97.90246336187032
Iteration: 3, Func. Count: 38, Neg. LLF: 87.57618148988244
Iteration: 4, Func. Count: 52, Neg. LLF: 86.9274540210849
Iteration: 5, Func. Count: 63, Neg. LLF: 86.82724971252499
Iteration: 6, Func. Count: 75, Neg. LLF: 87.75000511502041
Iteration: 7, Func. Count: 88, Neg. LLF: 86.62489986392528
Iteration: 8, Func. Count: 99, Neg. LLF: 86.62375592599446
Iteration: 9, Func. Count: 110, Neg. LLF: 86.62339453495602
Iteration: 10, Func. Count: 121, Neg. LLF: 86.62305514978884
Iteration: 11, Func. Count: 132, Neg. LLF: 86.62302236844955
Iteration: 12, Func. Count: 143, Neg. LLF: 86.62300955244794
Iteration: 13, Func. Count: 154, Neg. LLF: 86.62300728429823
Iteration: 14, Func. Count: 164, Neg. LLF: 86.62300729789432
Optimization terminated successfully (Exit mode 0)
Current function value: 86.62300728429823
Iterations: 14
Function evaluations: 164
Gradient evaluations: 14
Iteration: 1, Func. Count: 13, Neg. LLF: 92.78767482323087
Iteration: 2, Func. Count: 28, Neg. LLF: 150.4442426885618
Iteration: 3, Func. Count: 41, Neg. LLF: 88.18765488797682
Iteration: 4, Func. Count: 55, Neg. LLF: 86.94440179725933
Iteration: 5, Func. Count: 67, Neg. LLF: 86.78351203554327
Iteration: 6, Func. Count: 79, Neg. LLF: 86.65504321879936
Iteration: 7, Func. Count: 91, Neg. LLF: 87.29664087483137
Iteration: 8, Func. Count: 104, Neg. LLF: 86.62608516612636
Iteration: 9, Func. Count: 116, Neg. LLF: 86.6232605052878
Iteration: 10, Func. Count: 128, Neg. LLF: 86.62312684628101
Iteration: 11, Func. Count: 140, Neg. LLF: 86.6230590308041
Iteration: 12, Func. Count: 152, Neg. LLF: 86.62301629088829
Iteration: 13, Func. Count: 164, Neg. LLF: 86.6230078046521
Iteration: 14, Func. Count: 176, Neg. LLF: 86.62300697497608
Optimization terminated successfully (Exit mode 0)
Current function value: 86.62300697497608
Iterations: 14
Function evaluations: 176
Gradient evaluations: 14
Iteration: 1, Func. Count: 14, Neg. LLF: 93.05662879777846
Iteration: 2, Func. Count: 30, Neg. LLF: 475.609643650268
Iteration: 3, Func. Count: 44, Neg. LLF: 88.46051077610844
Iteration: 4, Func. Count: 58, Neg. LLF: 89.26446933753431
Iteration: 5, Func. Count: 72, Neg. LLF: 86.79630799446144
Iteration: 6, Func. Count: 85, Neg. LLF: 86.68622890718767
Iteration: 7, Func. Count: 98, Neg. LLF: 86.71046452244777
Iteration: 8, Func. Count: 112, Neg. LLF: 86.66350799608894
Iteration: 9, Func. Count: 126, Neg. LLF: 86.62458019523298
Iteration: 10, Func. Count: 139, Neg. LLF: 86.623517782519
Iteration: 11, Func. Count: 152, Neg. LLF: 86.623133851181
Iteration: 12, Func. Count: 165, Neg. LLF: 86.62302096519
Iteration: 13, Func. Count: 178, Neg. LLF: 86.62300784052061
Iteration: 14, Func. Count: 191, Neg. LLF: 86.62300696547923
Optimization terminated successfully (Exit mode 0)
Current function value: 86.62300696547923
Iterations: 14
Function evaluations: 191
Gradient evaluations: 14
Iteration: 1, Func. Count: 15, Neg. LLF: 90.16017543394565
Iteration: 2, Func. Count: 31, Neg. LLF: 15108840.627691083
Iteration: 3, Func. Count: 46, Neg. LLF: 94.94119189684886
Iteration: 4, Func. Count: 61, Neg. LLF: 92.16427257191546
Iteration: 5, Func. Count: 76, Neg. LLF: 86.15889771248125
Iteration: 6, Func. Count: 90, Neg. LLF: 87.05401298155574
Iteration: 7, Func. Count: 105, Neg. LLF: 86.31928936965028
Iteration: 8, Func. Count: 120, Neg. LLF: 85.84668372863815
Iteration: 9, Func. Count: 134, Neg. LLF: 85.8276717198677
Iteration: 10, Func. Count: 148, Neg. LLF: 85.81492843027945
Iteration: 11, Func. Count: 162, Neg. LLF: 85.81348409235456
Iteration: 12, Func. Count: 176, Neg. LLF: 85.81151013227411
Iteration: 13, Func. Count: 190, Neg. LLF: 85.81002843465221
Iteration: 14, Func. Count: 204, Neg. LLF: 85.80981590818747
Iteration: 15, Func. Count: 218, Neg. LLF: 85.80980510280443
Iteration: 16, Func. Count: 232, Neg. LLF: 85.80980477972693
Optimization terminated successfully (Exit mode 0)
Current function value: 85.80980477972693
Iterations: 16
Function evaluations: 232
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 112.25587760671827
Iteration: 2, Func. Count: 26, Neg. LLF: 159.8488330930832
Iteration: 3, Func. Count: 38, Neg. LLF: 1905510.4393823515
Iteration: 4, Func. Count: 50, Neg. LLF: 100.30358001934728
Iteration: 5, Func. Count: 62, Neg. LLF: 87.21381841386923
Iteration: 6, Func. Count: 73, Neg. LLF: 86.86872634530225
Iteration: 7, Func. Count: 84, Neg. LLF: 89.87149929240735
Iteration: 8, Func. Count: 97, Neg. LLF: 86.72717575290386
Iteration: 9, Func. Count: 109, Neg. LLF: 86.62705283563481
Iteration: 10, Func. Count: 120, Neg. LLF: 86.61759663490417
Iteration: 11, Func. Count: 131, Neg. LLF: 86.61183429262677
Iteration: 12, Func. Count: 142, Neg. LLF: 86.61127641420629
Iteration: 13, Func. Count: 153, Neg. LLF: 86.61118405588917
Iteration: 14, Func. Count: 164, Neg. LLF: 86.61117538013896
Iteration: 15, Func. Count: 174, Neg. LLF: 86.61117538012662
Optimization terminated successfully (Exit mode 0)
Current function value: 86.61117538013896
Iterations: 15
Function evaluations: 174
Gradient evaluations: 15
Iteration: 1, Func. Count: 13, Neg. LLF: 91.0759655149529
Iteration: 2, Func. Count: 28, Neg. LLF: 93.24511457761427
Iteration: 3, Func. Count: 41, Neg. LLF: 95.11195240897175
Iteration: 4, Func. Count: 54, Neg. LLF: 90.32894564683326
Iteration: 5, Func. Count: 67, Neg. LLF: 90.3809713577378
Iteration: 6, Func. Count: 80, Neg. LLF: 86.73456983719339
Iteration: 7, Func. Count: 92, Neg. LLF: 86.7106525431929
Iteration: 8, Func. Count: 105, Neg. LLF: 86.6487860005114
Iteration: 9, Func. Count: 118, Neg. LLF: 86.61879967494892
Iteration: 10, Func. Count: 130, Neg. LLF: 86.61514046606138
Iteration: 11, Func. Count: 142, Neg. LLF: 86.6132482089935
Iteration: 12, Func. Count: 154, Neg. LLF: 86.61157308129876
Iteration: 13, Func. Count: 166, Neg. LLF: 86.6112203503015
Iteration: 14, Func. Count: 178, Neg. LLF: 86.6111793268941
Iteration: 15, Func. Count: 190, Neg. LLF: 86.61117573804302
Iteration: 16, Func. Count: 201, Neg. LLF: 86.61117574694629
Optimization terminated successfully (Exit mode 0)
Current function value: 86.61117573804302
Iterations: 16
Function evaluations: 201
Gradient evaluations: 16
Iteration: 1, Func. Count: 14, Neg. LLF: 92.60944325764571
Iteration: 2, Func. Count: 30, Neg. LLF: 155.67088467670445
Iteration: 3, Func. Count: 44, Neg. LLF: 95.0035293890561
Iteration: 4, Func. Count: 58, Neg. LLF: 92.52599503223549
Iteration: 5, Func. Count: 72, Neg. LLF: 92.96595904044777
Iteration: 6, Func. Count: 86, Neg. LLF: 86.69365212671822
Iteration: 7, Func. Count: 99, Neg. LLF: 86.65085676358204
Iteration: 8, Func. Count: 112, Neg. LLF: 86.63055885423091
Iteration: 9, Func. Count: 125, Neg. LLF: 86.61620460491814
Iteration: 10, Func. Count: 138, Neg. LLF: 86.6168244063584
Iteration: 11, Func. Count: 152, Neg. LLF: 86.61162428149224
Iteration: 12, Func. Count: 165, Neg. LLF: 86.61127086615971
Iteration: 13, Func. Count: 178, Neg. LLF: 86.6112157044326
Iteration: 14, Func. Count: 191, Neg. LLF: 86.61119363689656
Iteration: 15, Func. Count: 204, Neg. LLF: 86.61118122503159
Iteration: 16, Func. Count: 217, Neg. LLF: 86.61117573946493
Iteration: 17, Func. Count: 230, Neg. LLF: 86.61117505423486
Optimization terminated successfully (Exit mode 0)
Current function value: 86.61117505423486
Iterations: 17
Function evaluations: 230
Gradient evaluations: 17
Iteration: 1, Func. Count: 15, Neg. LLF: 92.99976406600553
Iteration: 2, Func. Count: 32, Neg. LLF: 537.6716860376547
Iteration: 3, Func. Count: 47, Neg. LLF: 90.34606849989896
Iteration: 4, Func. Count: 62, Neg. LLF: 90.89017465085479
Iteration: 5, Func. Count: 78, Neg. LLF: 89.9911871372281
Iteration: 6, Func. Count: 93, Neg. LLF: 86.7462015318991
Iteration: 7, Func. Count: 107, Neg. LLF: 86.67959002653437
Iteration: 8, Func. Count: 121, Neg. LLF: 86.63171708794884
Iteration: 9, Func. Count: 135, Neg. LLF: 86.61896386565607
Iteration: 10, Func. Count: 149, Neg. LLF: 86.61248249660993
Iteration: 11, Func. Count: 163, Neg. LLF: 86.61135693725302
Iteration: 12, Func. Count: 177, Neg. LLF: 86.61124049602611
Iteration: 13, Func. Count: 191, Neg. LLF: 86.61118115403782
Iteration: 14, Func. Count: 205, Neg. LLF: 86.61117526032633
Iteration: 15, Func. Count: 218, Neg. LLF: 86.61117528729316
Optimization terminated successfully (Exit mode 0)
Current function value: 86.61117526032633
Iterations: 15
Function evaluations: 218
Gradient evaluations: 15
Iteration: 1, Func. Count: 16, Neg. LLF: 90.09802127909586
Iteration: 2, Func. Count: 33, Neg. LLF: 15194674.660809163
Iteration: 3, Func. Count: 49, Neg. LLF: 120.82822528695519
Iteration: 4, Func. Count: 65, Neg. LLF: 90.76223707608585
Iteration: 5, Func. Count: 81, Neg. LLF: 108.66200982675903
Iteration: 6, Func. Count: 97, Neg. LLF: 86.51903307492344
Iteration: 7, Func. Count: 112, Neg. LLF: 86.54980005538806
Iteration: 8, Func. Count: 128, Neg. LLF: 87.70706671838667
Iteration: 9, Func. Count: 144, Neg. LLF: 86.90965789834323
Iteration: 10, Func. Count: 160, Neg. LLF: 86.00254655690317
Iteration: 11, Func. Count: 175, Neg. LLF: 85.87473476782338
Iteration: 12, Func. Count: 190, Neg. LLF: 85.85271935784718
Iteration: 13, Func. Count: 205, Neg. LLF: 85.83785836291287
Iteration: 14, Func. Count: 220, Neg. LLF: 85.82755997224358
Iteration: 15, Func. Count: 235, Neg. LLF: 85.82108592173893
Iteration: 16, Func. Count: 250, Neg. LLF: 85.81407166305165
Iteration: 17, Func. Count: 265, Neg. LLF: 85.80280543699332
Iteration: 18, Func. Count: 280, Neg. LLF: 85.79342373303224
Iteration: 19, Func. Count: 295, Neg. LLF: 85.78578709216282
Iteration: 20, Func. Count: 310, Neg. LLF: 85.68244247481036
Iteration: 21, Func. Count: 325, Neg. LLF: 85.60492589155382
Iteration: 22, Func. Count: 340, Neg. LLF: 85.53334246410186
Iteration: 23, Func. Count: 355, Neg. LLF: 85.4991931052298
Iteration: 24, Func. Count: 370, Neg. LLF: 106.16900142178196
Iteration: 25, Func. Count: 387, Neg. LLF: 85.8692468111572
Iteration: 26, Func. Count: 403, Neg. LLF: 85.85725315461757
Iteration: 27, Func. Count: 419, Neg. LLF: 85.54461803472121
Iteration: 28, Func. Count: 435, Neg. LLF: 85.55724496119373
Iteration: 29, Func. Count: 451, Neg. LLF: 85.84188158444911
Iteration: 30, Func. Count: 468, Neg. LLF: 85.4761979451988
Iteration: 31, Func. Count: 483, Neg. LLF: 85.47619613749787
Iteration: 32, Func. Count: 497, Neg. LLF: 85.47619613749356
Optimization terminated successfully (Exit mode 0)
Current function value: 85.47619613749787
Iterations: 33
Function evaluations: 497
Gradient evaluations: 32
Iteration: 1, Func. Count: 5, Neg. LLF: 143.95733961092097
Iteration: 2, Func. Count: 13, Neg. LLF: 178.09728212956975
Iteration: 3, Func. Count: 19, Neg. LLF: 87.2830438668475
Iteration: 4, Func. Count: 24, Neg. LLF: 87.07188919331352
Iteration: 5, Func. Count: 29, Neg. LLF: 87.03754295825983
Iteration: 6, Func. Count: 33, Neg. LLF: 87.03381830909642
Iteration: 7, Func. Count: 37, Neg. LLF: 87.0337957378291
Iteration: 8, Func. Count: 40, Neg. LLF: 87.03379573782904
Optimization terminated successfully (Exit mode 0)
Current function value: 87.0337957378291
Iterations: 8
Function evaluations: 40
Gradient evaluations: 8
Iteration: 1, Func. Count: 5, Neg. LLF: 133.20093603493623
Iteration: 2, Func. Count: 13, Neg. LLF: 137.26916351152613
Iteration: 3, Func. Count: 19, Neg. LLF: 90.37476334513805
Iteration: 4, Func. Count: 23, Neg. LLF: 90.34429661400976
Iteration: 5, Func. Count: 28, Neg. LLF: 90.2878994860902
Iteration: 6, Func. Count: 32, Neg. LLF: 90.28340455705477
Iteration: 7, Func. Count: 36, Neg. LLF: 90.28337440043029
Iteration: 8, Func. Count: 39, Neg. LLF: 90.28337440044496
Optimization terminated successfully (Exit mode 0)
Current function value: 90.28337440043029
Iterations: 8
Function evaluations: 39
Gradient evaluations: 8
Iteration: 1, Func. Count: 6, Neg. LLF: 91.17548019983272
Iteration: 2, Func. Count: 13, Neg. LLF: 90.3674233081114
Iteration: 3, Func. Count: 18, Neg. LLF: 90.370431287455
Iteration: 4, Func. Count: 24, Neg. LLF: 90.36292386726322
Iteration: 5, Func. Count: 29, Neg. LLF: 90.36292220829664
Iteration: 6, Func. Count: 33, Neg. LLF: 90.36292220828688
Optimization terminated successfully (Exit mode 0)
Current function value: 90.36292220829664
Iterations: 6
Function evaluations: 33
Gradient evaluations: 6
Iteration: 1, Func. Count: 7, Neg. LLF: 91.212578080323
Iteration: 2, Func. Count: 15, Neg. LLF: 95.17220513433158
Iteration: 3, Func. Count: 23, Neg. LLF: 90.34318937870061
Iteration: 4, Func. Count: 29, Neg. LLF: 90.35712397587483
Iteration: 5, Func. Count: 36, Neg. LLF: 90.27733466575155
Iteration: 6, Func. Count: 42, Neg. LLF: 90.26974409517808
Iteration: 7, Func. Count: 48, Neg. LLF: 90.25281686007101
Iteration: 8, Func. Count: 54, Neg. LLF: 90.14125008441187
Iteration: 9, Func. Count: 60, Neg. LLF: 90.20847033596321
Iteration: 10, Func. Count: 67, Neg. LLF: 107.35772001957662
Iteration: 11, Func. Count: 75, Neg. LLF: 90.17057543827858
Iteration: 12, Func. Count: 82, Neg. LLF: 90.07457925980054
Iteration: 13, Func. Count: 88, Neg. LLF: 90.0531839840954
Iteration: 14, Func. Count: 94, Neg. LLF: 90.05010582644077
Iteration: 15, Func. Count: 100, Neg. LLF: 90.04745684981542
Iteration: 16, Func. Count: 106, Neg. LLF: 90.04740192398269
Iteration: 17, Func. Count: 112, Neg. LLF: 90.04739383333663
Iteration: 18, Func. Count: 117, Neg. LLF: 90.04739383318638
Optimization terminated successfully (Exit mode 0)
Current function value: 90.04739383333663
Iterations: 18
Function evaluations: 117
Gradient evaluations: 18
Iteration: 1, Func. Count: 8, Neg. LLF: 92.1264921613552
Iteration: 2, Func. Count: 17, Neg. LLF: 99.54985802560306
Iteration: 3, Func. Count: 26, Neg. LLF: 90.3281303617319
Iteration: 4, Func. Count: 33, Neg. LLF: 90.31481033628259
Iteration: 5, Func. Count: 40, Neg. LLF: 90.31452140231862
Iteration: 6, Func. Count: 47, Neg. LLF: 90.30660030374199
Iteration: 7, Func. Count: 54, Neg. LLF: 90.27349063986769
Iteration: 8, Func. Count: 61, Neg. LLF: 90.27086452358205
Iteration: 9, Func. Count: 68, Neg. LLF: 90.26898949638827
Iteration: 10, Func. Count: 75, Neg. LLF: 90.26616834261785
Iteration: 11, Func. Count: 82, Neg. LLF: 91.22985330084565
Iteration: 12, Func. Count: 90, Neg. LLF: 93.23086590434043
Iteration: 13, Func. Count: 98, Neg. LLF: 91.35530078226756
Iteration: 14, Func. Count: 106, Neg. LLF: 219.76343549925093
Iteration: 15, Func. Count: 116, Neg. LLF: 9227.033011535399
Iteration: 16, Func. Count: 127, Neg. LLF: 90.43213489694705
Iteration: 17, Func. Count: 135, Neg. LLF: 91.49630662645461
Iteration: 18, Func. Count: 143, Neg. LLF: 90.68252495048952
Iteration: 19, Func. Count: 151, Neg. LLF: 90.8007805735885
Iteration: 20, Func. Count: 159, Neg. LLF: 90.36173156480102
Iteration: 21, Func. Count: 167, Neg. LLF: 92.78702461779193
Iteration: 22, Func. Count: 176, Neg. LLF: 90.34311910208889
Iteration: 23, Func. Count: 184, Neg. LLF: 95.003594174131
Iteration: 24, Func. Count: 192, Neg. LLF: 90.22559685140942
Iteration: 25, Func. Count: 200, Neg. LLF: 90.09388063524605
Iteration: 26, Func. Count: 207, Neg. LLF: 90.07254895634507
Iteration: 27, Func. Count: 214, Neg. LLF: 90.04789825589276
Iteration: 28, Func. Count: 221, Neg. LLF: 90.04743738094507
Iteration: 29, Func. Count: 228, Neg. LLF: 90.04740006138533
Iteration: 30, Func. Count: 235, Neg. LLF: 90.04739363095226
Iteration: 31, Func. Count: 241, Neg. LLF: 90.04739364745254
Optimization terminated successfully (Exit mode 0)
Current function value: 90.04739363095226
Iterations: 32
Function evaluations: 241
Gradient evaluations: 31
Iteration: 1, Func. Count: 9, Neg. LLF: 97.8361946678037
Iteration: 2, Func. Count: 19, Neg. LLF: 104.47717452761982
Iteration: 3, Func. Count: 30, Neg. LLF: 90.29341641480181
Iteration: 4, Func. Count: 38, Neg. LLF: 90.5070914221973
Iteration: 5, Func. Count: 47, Neg. LLF: 90.24136832962
Iteration: 6, Func. Count: 55, Neg. LLF: 90.20561528176898
Iteration: 7, Func. Count: 63, Neg. LLF: 90.13963327328021
Iteration: 8, Func. Count: 71, Neg. LLF: 90.5972313769783
Iteration: 9, Func. Count: 80, Neg. LLF: 90.26109920116131
Iteration: 10, Func. Count: 89, Neg. LLF: 90.06136948823516
Iteration: 11, Func. Count: 97, Neg. LLF: 90.05522876233265
Iteration: 12, Func. Count: 105, Neg. LLF: 90.05169562417726
Iteration: 13, Func. Count: 113, Neg. LLF: 90.04932206817557
Iteration: 14, Func. Count: 121, Neg. LLF: 90.04781891073127
Iteration: 15, Func. Count: 129, Neg. LLF: 90.04746307088665
Iteration: 16, Func. Count: 137, Neg. LLF: 90.04740462414635
Iteration: 17, Func. Count: 145, Neg. LLF: 90.04739591295879
Iteration: 18, Func. Count: 153, Neg. LLF: 90.0473935624815
Iteration: 19, Func. Count: 160, Neg. LLF: 90.04739356283173
Optimization terminated successfully (Exit mode 0)
Current function value: 90.0473935624815
Iterations: 19
Function evaluations: 160
Gradient evaluations: 19
Iteration: 1, Func. Count: 6, Neg. LLF: 134.1869031098985
Iteration: 2, Func. Count: 15, Neg. LLF: 137.47072540521089
Iteration: 3, Func. Count: 22, Neg. LLF: 90.39060215547164
Iteration: 4, Func. Count: 27, Neg. LLF: 90.3197866279243
Iteration: 5, Func. Count: 32, Neg. LLF: 90.29123448309963
Iteration: 6, Func. Count: 37, Neg. LLF: 90.28375838187789
Iteration: 7, Func. Count: 42, Neg. LLF: 90.28337699485985
Iteration: 8, Func. Count: 47, Neg. LLF: 90.2833743530322
Iteration: 9, Func. Count: 51, Neg. LLF: 90.28337444062524
Optimization terminated successfully (Exit mode 0)
Current function value: 90.2833743530322
Iterations: 9
Function evaluations: 51
Gradient evaluations: 9
Iteration: 1, Func. Count: 7, Neg. LLF: 94.50548653215623
Iteration: 2, Func. Count: 15, Neg. LLF: 90.39872984025163
Iteration: 3, Func. Count: 22, Neg. LLF: 90.36301096858502
Iteration: 4, Func. Count: 28, Neg. LLF: 90.36294585501437
Iteration: 5, Func. Count: 33, Neg. LLF: 90.36294585498618
Optimization terminated successfully (Exit mode 0)
Current function value: 90.36294585501437
Iterations: 5
Function evaluations: 33
Gradient evaluations: 5
Iteration: 1, Func. Count: 8, Neg. LLF: 98.73688933554607
Iteration: 2, Func. Count: 17, Neg. LLF: 99.06277798773502
Iteration: 3, Func. Count: 26, Neg. LLF: 90.3492720008166
Iteration: 4, Func. Count: 33, Neg. LLF: 90.29313776300818
Iteration: 5, Func. Count: 40, Neg. LLF: 90.28215618338623
Iteration: 6, Func. Count: 47, Neg. LLF: 90.27189638909451
Iteration: 7, Func. Count: 54, Neg. LLF: 90.26655680330212
Iteration: 8, Func. Count: 61, Neg. LLF: 90.25975568801844
Iteration: 9, Func. Count: 68, Neg. LLF: 90.22570171934302
Iteration: 10, Func. Count: 75, Neg. LLF: 90.304904490659
Iteration: 11, Func. Count: 83, Neg. LLF: 91.39739370887122
Iteration: 12, Func. Count: 91, Neg. LLF: 90.67744533092637
Iteration: 13, Func. Count: 99, Neg. LLF: 90.30206140678011
Iteration: 14, Func. Count: 107, Neg. LLF: 90.09382409627027
Iteration: 15, Func. Count: 114, Neg. LLF: 90.12716583211349
Iteration: 16, Func. Count: 122, Neg. LLF: 90.05213135175252
Iteration: 17, Func. Count: 129, Neg. LLF: 90.0479575936373
Iteration: 18, Func. Count: 136, Neg. LLF: 90.04747075939358
Iteration: 19, Func. Count: 143, Neg. LLF: 90.04739652006657
Iteration: 20, Func. Count: 150, Neg. LLF: 90.04739363406662
Iteration: 21, Func. Count: 156, Neg. LLF: 90.04739363400864
Optimization terminated successfully (Exit mode 0)
Current function value: 90.04739363406662
Iterations: 21
Function evaluations: 156
Gradient evaluations: 21
Iteration: 1, Func. Count: 9, Neg. LLF: 96.39025775328025
Iteration: 2, Func. Count: 19, Neg. LLF: 102.45173999687985
Iteration: 3, Func. Count: 29, Neg. LLF: 90.33077807414055
Iteration: 4, Func. Count: 37, Neg. LLF: 90.37175188504945
Iteration: 5, Func. Count: 46, Neg. LLF: 90.31384515568554
Iteration: 6, Func. Count: 54, Neg. LLF: 90.31354678913083
Iteration: 7, Func. Count: 62, Neg. LLF: 90.27924741370022
Iteration: 8, Func. Count: 70, Neg. LLF: 90.26886725366505
Iteration: 9, Func. Count: 78, Neg. LLF: 90.26843695825944
Iteration: 10, Func. Count: 86, Neg. LLF: 90.26477614805573
Iteration: 11, Func. Count: 94, Neg. LLF: 90.11819883242057
Iteration: 12, Func. Count: 102, Neg. LLF: 90.25760701241613
Iteration: 13, Func. Count: 112, Neg. LLF: 90.4701905628466
Iteration: 14, Func. Count: 121, Neg. LLF: 90.06192439487457
Iteration: 15, Func. Count: 129, Neg. LLF: 90.05441167664594
Iteration: 16, Func. Count: 137, Neg. LLF: 90.0495665467955
Iteration: 17, Func. Count: 145, Neg. LLF: 90.04783140550555
Iteration: 18, Func. Count: 153, Neg. LLF: 90.04740417551506
Iteration: 19, Func. Count: 161, Neg. LLF: 90.0473937146507
Iteration: 20, Func. Count: 168, Neg. LLF: 90.04739373121427
Optimization terminated successfully (Exit mode 0)
Current function value: 90.0473937146507
Iterations: 20
Function evaluations: 168
Gradient evaluations: 20
Iteration: 1, Func. Count: 10, Neg. LLF: 94.78580086278761
Iteration: 2, Func. Count: 21, Neg. LLF: 108.16513299217341
Iteration: 3, Func. Count: 32, Neg. LLF: 90.29788492959175
Iteration: 4, Func. Count: 41, Neg. LLF: 90.33870814044944
Iteration: 5, Func. Count: 51, Neg. LLF: 90.21923810958702
Iteration: 6, Func. Count: 60, Neg. LLF: 90.15232145660417
Iteration: 7, Func. Count: 69, Neg. LLF: 90.22925233351955
Iteration: 8, Func. Count: 79, Neg. LLF: 90.18610218903788
Iteration: 9, Func. Count: 89, Neg. LLF: 90.05632004208074
Iteration: 10, Func. Count: 98, Neg. LLF: 90.05164898088731
Iteration: 11, Func. Count: 107, Neg. LLF: 90.05015690379257
Iteration: 12, Func. Count: 116, Neg. LLF: 90.0489245072763
Iteration: 13, Func. Count: 125, Neg. LLF: 90.04753976840038
Iteration: 14, Func. Count: 134, Neg. LLF: 90.04741395338476
Iteration: 15, Func. Count: 143, Neg. LLF: 90.0473940464696
Iteration: 16, Func. Count: 151, Neg. LLF: 90.04739404714697
Optimization terminated successfully (Exit mode 0)
Current function value: 90.0473940464696
Iterations: 16
Function evaluations: 151
Gradient evaluations: 16
Iteration: 1, Func. Count: 7, Neg. LLF: 134.15474962640047
Iteration: 2, Func. Count: 17, Neg. LLF: 140.33391426498653
Iteration: 3, Func. Count: 25, Neg. LLF: 90.32441420047013
Iteration: 4, Func. Count: 31, Neg. LLF: 90.6447434532171
Iteration: 5, Func. Count: 38, Neg. LLF: 91.00055605590282
Iteration: 6, Func. Count: 45, Neg. LLF: 90.2393210066944
Iteration: 7, Func. Count: 51, Neg. LLF: 90.2326148143777
Iteration: 8, Func. Count: 57, Neg. LLF: 90.2312162436107
Iteration: 9, Func. Count: 63, Neg. LLF: 90.23116716880327
Iteration: 10, Func. Count: 69, Neg. LLF: 90.23116515919114
Iteration: 11, Func. Count: 74, Neg. LLF: 90.23116515918898
Optimization terminated successfully (Exit mode 0)
Current function value: 90.23116515919114
Iterations: 11
Function evaluations: 74
Gradient evaluations: 11
Iteration: 1, Func. Count: 8, Neg. LLF: 93.17699553361514
Iteration: 2, Func. Count: 17, Neg. LLF: 90.39337810423349
Iteration: 3, Func. Count: 25, Neg. LLF: 90.3630430383554
Iteration: 4, Func. Count: 32, Neg. LLF: 90.36294097625505
Iteration: 5, Func. Count: 38, Neg. LLF: 90.3629409762029
Optimization terminated successfully (Exit mode 0)
Current function value: 90.36294097625505
Iterations: 5
Function evaluations: 38
Gradient evaluations: 5
Iteration: 1, Func. Count: 9, Neg. LLF: 97.66298067283124
Iteration: 2, Func. Count: 19, Neg. LLF: 100.59391943197117
Iteration: 3, Func. Count: 29, Neg. LLF: 90.34550471787108
Iteration: 4, Func. Count: 37, Neg. LLF: 90.27636295487162
Iteration: 5, Func. Count: 45, Neg. LLF: 90.41991629062933
Iteration: 6, Func. Count: 54, Neg. LLF: 90.26746063298735
Iteration: 7, Func. Count: 62, Neg. LLF: 90.26640355985387
Iteration: 8, Func. Count: 70, Neg. LLF: 90.26245670468724
Iteration: 9, Func. Count: 78, Neg. LLF: 91.14518276649815
Iteration: 10, Func. Count: 87, Neg. LLF: 91.00612735555823
Iteration: 11, Func. Count: 96, Neg. LLF: 90.91691616790817
Iteration: 12, Func. Count: 105, Neg. LLF: 32897370.45074117
Iteration: 13, Func. Count: 115, Neg. LLF: 92.80965182788505
Iteration: 14, Func. Count: 125, Neg. LLF: 90.4140166902562
Iteration: 15, Func. Count: 134, Neg. LLF: 90.87541644923655
Iteration: 16, Func. Count: 143, Neg. LLF: 90.51974385643244
Iteration: 17, Func. Count: 152, Neg. LLF: 90.40970425661874
Iteration: 18, Func. Count: 161, Neg. LLF: 90.41085238503003
Iteration: 19, Func. Count: 170, Neg. LLF: 90.29070683248193
Iteration: 20, Func. Count: 179, Neg. LLF: 91.03794209968589
Iteration: 21, Func. Count: 188, Neg. LLF: 90.18073923949862
Iteration: 22, Func. Count: 197, Neg. LLF: 90.07227251003579
Iteration: 23, Func. Count: 205, Neg. LLF: 90.06173911455626
Iteration: 24, Func. Count: 213, Neg. LLF: 90.04798242360187
Iteration: 25, Func. Count: 221, Neg. LLF: 90.0468477848196
Iteration: 26, Func. Count: 229, Neg. LLF: 90.04677107271526
Iteration: 27, Func. Count: 237, Neg. LLF: 90.04676700914608
Iteration: 28, Func. Count: 244, Neg. LLF: 90.04676700919431
Optimization terminated successfully (Exit mode 0)
Current function value: 90.04676700914608
Iterations: 29
Function evaluations: 244
Gradient evaluations: 28
Iteration: 1, Func. Count: 10, Neg. LLF: 119.96802807030934
Iteration: 2, Func. Count: 22, Neg. LLF: 90.63440370239663
Iteration: 3, Func. Count: 32, Neg. LLF: 90.35915788634829
Iteration: 4, Func. Count: 41, Neg. LLF: 90.33393013643062
Iteration: 5, Func. Count: 50, Neg. LLF: 90.33546484298263
Iteration: 6, Func. Count: 60, Neg. LLF: 90.31100680213102
Iteration: 7, Func. Count: 69, Neg. LLF: 90.31095162772543
Iteration: 8, Func. Count: 78, Neg. LLF: 90.31095051453252
Iteration: 9, Func. Count: 87, Neg. LLF: 90.31094462671935
Iteration: 10, Func. Count: 96, Neg. LLF: 90.31093251308948
Iteration: 11, Func. Count: 105, Neg. LLF: 90.31089738002507
Iteration: 12, Func. Count: 114, Neg. LLF: 90.3106272427932
Iteration: 13, Func. Count: 123, Neg. LLF: 90.31022162485179
Iteration: 14, Func. Count: 132, Neg. LLF: 90.3099437275097
Iteration: 15, Func. Count: 141, Neg. LLF: 90.30865561806736
Iteration: 16, Func. Count: 150, Neg. LLF: 90.33913517869814
Iteration: 17, Func. Count: 161, Neg. LLF: 90.35962006078766
Iteration: 18, Func. Count: 180, Neg. LLF: 11878672.714719756
Iteration: 19, Func. Count: 192, Neg. LLF: 286.99705549596496
Iteration: 20, Func. Count: 203, Neg. LLF: 90.63404164040129
Iteration: 21, Func. Count: 213, Neg. LLF: 90.2272553315342
Iteration: 22, Func. Count: 222, Neg. LLF: 89.66983275090007
Iteration: 23, Func. Count: 231, Neg. LLF: 89.41730255004805
Iteration: 24, Func. Count: 240, Neg. LLF: 89.54939200009966
Iteration: 25, Func. Count: 250, Neg. LLF: 89.3295177280973
Iteration: 26, Func. Count: 259, Neg. LLF: 89.30400145638049
Iteration: 27, Func. Count: 268, Neg. LLF: 89.2977792961447
Iteration: 28, Func. Count: 277, Neg. LLF: 89.2969831699283
Iteration: 29, Func. Count: 286, Neg. LLF: 89.29696060303223
Iteration: 30, Func. Count: 295, Neg. LLF: 89.2969599339033
Optimization terminated successfully (Exit mode 0)
Current function value: 89.2969599339033
Iterations: 31
Function evaluations: 295
Gradient evaluations: 30
Iteration: 1, Func. Count: 11, Neg. LLF: 96.45353373957684
Iteration: 2, Func. Count: 24, Neg. LLF: 106.74694972124323
Iteration: 3, Func. Count: 36, Neg. LLF: 93.72900542269433
Iteration: 4, Func. Count: 47, Neg. LLF: 90.56419297935905
Iteration: 5, Func. Count: 59, Neg. LLF: 90.51720225899949
Iteration: 6, Func. Count: 70, Neg. LLF: 90.17131484298952
Iteration: 7, Func. Count: 80, Neg. LLF: 90.19596925260842
Iteration: 8, Func. Count: 91, Neg. LLF: 90.04823772103053
Iteration: 9, Func. Count: 101, Neg. LLF: 90.0161361937257
Iteration: 10, Func. Count: 111, Neg. LLF: 89.85858850484182
Iteration: 11, Func. Count: 121, Neg. LLF: 90.03648819150703
Iteration: 12, Func. Count: 132, Neg. LLF: 89.83042043640374
Iteration: 13, Func. Count: 142, Neg. LLF: 89.82482463133229
Iteration: 14, Func. Count: 152, Neg. LLF: 89.82251053800732
Iteration: 15, Func. Count: 162, Neg. LLF: 89.82208253681627
Iteration: 16, Func. Count: 172, Neg. LLF: 89.8220580589161
Iteration: 17, Func. Count: 182, Neg. LLF: 89.8220563417375
Iteration: 18, Func. Count: 192, Neg. LLF: 89.82205513173851
Iteration: 19, Func. Count: 201, Neg. LLF: 89.82205513174124
Optimization terminated successfully (Exit mode 0)
Current function value: 89.82205513173851
Iterations: 20
Function evaluations: 201
Gradient evaluations: 19
Iteration: 1, Func. Count: 8, Neg. LLF: 134.68518347079208
Iteration: 2, Func. Count: 18, Neg. LLF: 155.16659065512022
Iteration: 3, Func. Count: 26, Neg. LLF: 91.23399578279894
Iteration: 4, Func. Count: 33, Neg. LLF: 91.48343944456427
Iteration: 5, Func. Count: 41, Neg. LLF: 16348154.856911985
Iteration: 6, Func. Count: 50, Neg. LLF: 91.27256397878392
Iteration: 7, Func. Count: 58, Neg. LLF: 90.52518241934408
Iteration: 8, Func. Count: 66, Neg. LLF: 90.23154645479737
Iteration: 9, Func. Count: 73, Neg. LLF: 90.2311710091468
Iteration: 10, Func. Count: 80, Neg. LLF: 90.23116634977109
Iteration: 11, Func. Count: 87, Neg. LLF: 90.23116517344022
Iteration: 12, Func. Count: 93, Neg. LLF: 90.23116521523065
Optimization terminated successfully (Exit mode 0)
Current function value: 90.23116517344022
Iterations: 12
Function evaluations: 93
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 94.67169686834086
Iteration: 2, Func. Count: 19, Neg. LLF: 90.39541871807577
Iteration: 3, Func. Count: 27, Neg. LLF: 90.36299766422096
Iteration: 4, Func. Count: 35, Neg. LLF: 90.36294656811273
Iteration: 5, Func. Count: 42, Neg. LLF: 90.36294656813027
Optimization terminated successfully (Exit mode 0)
Current function value: 90.36294656811273
Iterations: 5
Function evaluations: 42
Gradient evaluations: 5
Iteration: 1, Func. Count: 10, Neg. LLF: 120.90536565023022
Iteration: 2, Func. Count: 22, Neg. LLF: 91.00501488614874
Iteration: 3, Func. Count: 33, Neg. LLF: 90.36198746276439
Iteration: 4, Func. Count: 42, Neg. LLF: 90.36496158971599
Iteration: 5, Func. Count: 52, Neg. LLF: 90.35722872841416
Iteration: 6, Func. Count: 61, Neg. LLF: 90.32338274179882
Iteration: 7, Func. Count: 70, Neg. LLF: 90.31998759886304
Iteration: 8, Func. Count: 79, Neg. LLF: 90.3114953190813
Iteration: 9, Func. Count: 88, Neg. LLF: 90.31141997938862
Iteration: 10, Func. Count: 97, Neg. LLF: 90.31141223948502
Iteration: 11, Func. Count: 106, Neg. LLF: 90.31138082920907
Iteration: 12, Func. Count: 115, Neg. LLF: 90.3111666179926
Iteration: 13, Func. Count: 124, Neg. LLF: 90.31039255869948
Iteration: 14, Func. Count: 133, Neg. LLF: 90.30970050606605
Iteration: 15, Func. Count: 142, Neg. LLF: 90.37658655512277
Iteration: 16, Func. Count: 153, Neg. LLF: 91.16154581982532
Iteration: 17, Func. Count: 164, Neg. LLF: 90.30968869637692
Optimization terminated successfully (Exit mode 0)
Current function value: 90.30968872375574
Iterations: 18
Function evaluations: 164
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 117.66891053208329
Iteration: 2, Func. Count: 24, Neg. LLF: 90.6118074898683
Iteration: 3, Func. Count: 35, Neg. LLF: 90.37920117849859
Iteration: 4, Func. Count: 46, Neg. LLF: 90.32584752337259
Iteration: 5, Func. Count: 56, Neg. LLF: 90.34720208123008
Iteration: 6, Func. Count: 67, Neg. LLF: 90.31101835839978
Iteration: 7, Func. Count: 77, Neg. LLF: 90.31092340329177
Iteration: 8, Func. Count: 87, Neg. LLF: 90.31092096049585
Iteration: 9, Func. Count: 97, Neg. LLF: 90.31091971320969
Iteration: 10, Func. Count: 107, Neg. LLF: 90.31091159592887
Iteration: 11, Func. Count: 117, Neg. LLF: 90.31088567563681
Iteration: 12, Func. Count: 127, Neg. LLF: 90.3107751350252
Iteration: 13, Func. Count: 137, Neg. LLF: 90.31011111335815
Iteration: 14, Func. Count: 147, Neg. LLF: 90.30979038769757
Iteration: 15, Func. Count: 157, Neg. LLF: 90.30857307410521
Iteration: 16, Func. Count: 167, Neg. LLF: 90.30769941637725
Iteration: 17, Func. Count: 177, Neg. LLF: 90.54166981610403
Iteration: 18, Func. Count: 190, Neg. LLF: 298.1693903950861
Iteration: 19, Func. Count: 202, Neg. LLF: 7827.35928421997
Iteration: 20, Func. Count: 216, Neg. LLF: 90.25974857952461
Iteration: 21, Func. Count: 226, Neg. LLF: 89.74736428692503
Iteration: 22, Func. Count: 236, Neg. LLF: 99.54858050564417
Iteration: 23, Func. Count: 247, Neg. LLF: 89.5275932219447
Iteration: 24, Func. Count: 257, Neg. LLF: 92.88684116383017
Iteration: 25, Func. Count: 269, Neg. LLF: 89.6570459848582
Iteration: 26, Func. Count: 280, Neg. LLF: 89.56928901842927
Iteration: 27, Func. Count: 291, Neg. LLF: 89.30109737650986
Iteration: 28, Func. Count: 301, Neg. LLF: 89.29391425976878
Iteration: 29, Func. Count: 311, Neg. LLF: 89.29287537104626
Iteration: 30, Func. Count: 321, Neg. LLF: 89.29227006679038
Iteration: 31, Func. Count: 331, Neg. LLF: 89.29228060105638
Iteration: 32, Func. Count: 351, Neg. LLF: 89.29227543181668
Iteration: 33, Func. Count: 362, Neg. LLF: 89.29210842391115
Iteration: 34, Func. Count: 372, Neg. LLF: 89.29199300411562
Iteration: 35, Func. Count: 382, Neg. LLF: 89.3548049229158
Optimization terminated successfully (Exit mode 0)
Current function value: 89.29199284462909
Iterations: 37
Function evaluations: 385
Gradient evaluations: 35
Iteration: 1, Func. Count: 12, Neg. LLF: 96.06054759390537
Iteration: 2, Func. Count: 26, Neg. LLF: 107.93018142815849
Iteration: 3, Func. Count: 39, Neg. LLF: 94.3547375583335
Iteration: 4, Func. Count: 51, Neg. LLF: 90.45346526811278
Iteration: 5, Func. Count: 64, Neg. LLF: 90.33138960135173
Iteration: 6, Func. Count: 76, Neg. LLF: 90.2024048060059
Iteration: 7, Func. Count: 87, Neg. LLF: 90.44334139853505
Iteration: 8, Func. Count: 99, Neg. LLF: 90.05500393166798
Iteration: 9, Func. Count: 110, Neg. LLF: 90.04539572797518
Iteration: 10, Func. Count: 121, Neg. LLF: 90.04206171598241
Iteration: 11, Func. Count: 132, Neg. LLF: 90.0387519135792
Iteration: 12, Func. Count: 143, Neg. LLF: 90.03689770825389
Iteration: 13, Func. Count: 154, Neg. LLF: 90.03614096211922
Iteration: 14, Func. Count: 165, Neg. LLF: 90.03606710518252
Iteration: 15, Func. Count: 176, Neg. LLF: 90.03596619831187
Iteration: 16, Func. Count: 187, Neg. LLF: 90.03592557842761
Iteration: 17, Func. Count: 198, Neg. LLF: 90.0359214898254
Iteration: 18, Func. Count: 208, Neg. LLF: 90.03592149007561
Optimization terminated successfully (Exit mode 0)
Current function value: 90.0359214898254
Iterations: 18
Function evaluations: 208
Gradient evaluations: 18
Iteration: 1, Func. Count: 5, Neg. LLF: 123.47242788872025
Iteration: 2, Func. Count: 12, Neg. LLF: 90.96209036247915
Iteration: 3, Func. Count: 16, Neg. LLF: 91.76020789788808
Iteration: 4, Func. Count: 21, Neg. LLF: 91.77411976293565
Iteration: 5, Func. Count: 26, Neg. LLF: 90.59606367926658
Iteration: 6, Func. Count: 31, Neg. LLF: 90.36084571311294
Iteration: 7, Func. Count: 35, Neg. LLF: 90.36071778399517
Iteration: 8, Func. Count: 38, Neg. LLF: 90.36071778410403
Optimization terminated successfully (Exit mode 0)
Current function value: 90.36071778399517
Iterations: 8
Function evaluations: 38
Gradient evaluations: 8
Iteration: 1, Func. Count: 6, Neg. LLF: 95.70588978853397
Iteration: 2, Func. Count: 13, Neg. LLF: 90.37646372614465
Iteration: 3, Func. Count: 18, Neg. LLF: 90.3637214416209
Iteration: 4, Func. Count: 23, Neg. LLF: 90.36293145243354
Iteration: 5, Func. Count: 27, Neg. LLF: 90.36293145246309
Optimization terminated successfully (Exit mode 0)
Current function value: 90.36293145243354
Iterations: 5
Function evaluations: 27
Gradient evaluations: 5
Iteration: 1, Func. Count: 7, Neg. LLF: 93.4197768869791
Iteration: 2, Func. Count: 15, Neg. LLF: 90.36782645880214
Iteration: 3, Func. Count: 21, Neg. LLF: 90.38222904760853
Iteration: 4, Func. Count: 28, Neg. LLF: 90.36446851418064
Iteration: 5, Func. Count: 34, Neg. LLF: 90.3644166065649
Iteration: 6, Func. Count: 40, Neg. LLF: 90.36411343928707
Iteration: 7, Func. Count: 46, Neg. LLF: 90.36345608366693
Iteration: 8, Func. Count: 52, Neg. LLF: 90.36308235006585
Iteration: 9, Func. Count: 58, Neg. LLF: 90.36301738266341
Iteration: 10, Func. Count: 64, Neg. LLF: 90.36300082189231
Iteration: 11, Func. Count: 70, Neg. LLF: 90.362998192785
Iteration: 12, Func. Count: 76, Neg. LLF: 90.36298254281536
Iteration: 13, Func. Count: 82, Neg. LLF: 90.36294823714388
Iteration: 14, Func. Count: 88, Neg. LLF: 90.36292802769947
Iteration: 15, Func. Count: 94, Neg. LLF: 90.3629192340963
Iteration: 16, Func. Count: 100, Neg. LLF: 90.362917135254
Iteration: 17, Func. Count: 105, Neg. LLF: 90.36291713524948
Optimization terminated successfully (Exit mode 0)
Current function value: 90.362917135254
Iterations: 17
Function evaluations: 105
Gradient evaluations: 17
Iteration: 1, Func. Count: 8, Neg. LLF: 95.73566479967614
Iteration: 2, Func. Count: 18, Neg. LLF: 90.36436613917294
Iteration: 3, Func. Count: 25, Neg. LLF: 90.36443883530507
Iteration: 4, Func. Count: 33, Neg. LLF: 90.36452353767277
Iteration: 5, Func. Count: 41, Neg. LLF: 90.36430462538118
Iteration: 6, Func. Count: 48, Neg. LLF: 90.36418097832652
Iteration: 7, Func. Count: 55, Neg. LLF: 90.36352945170078
Iteration: 8, Func. Count: 62, Neg. LLF: 90.36319591345134
Iteration: 9, Func. Count: 69, Neg. LLF: 90.36305472913351
Iteration: 10, Func. Count: 76, Neg. LLF: 90.3616332011428
Iteration: 11, Func. Count: 83, Neg. LLF: 90.3612771175184
Iteration: 12, Func. Count: 90, Neg. LLF: 90.35971475154894
Iteration: 13, Func. Count: 97, Neg. LLF: 90.35555879039508
Iteration: 14, Func. Count: 104, Neg. LLF: 90.35444808782364
Iteration: 15, Func. Count: 111, Neg. LLF: 90.35320939639902
Iteration: 16, Func. Count: 118, Neg. LLF: 90.34252930147944
Iteration: 17, Func. Count: 125, Neg. LLF: 90.54305264112708
Iteration: 18, Func. Count: 133, Neg. LLF: 100.68234386549042
Iteration: 19, Func. Count: 142, Neg. LLF: 90.36813391961796
Iteration: 20, Func. Count: 150, Neg. LLF: 90.3600369487938
Iteration: 21, Func. Count: 158, Neg. LLF: 90.57117054140704
Iteration: 22, Func. Count: 166, Neg. LLF: 93.68162158592463
Iteration: 23, Func. Count: 174, Neg. LLF: 90.417466750981
Iteration: 24, Func. Count: 182, Neg. LLF: 90.24137442002547
Iteration: 25, Func. Count: 189, Neg. LLF: 90.19540279053479
Iteration: 26, Func. Count: 196, Neg. LLF: 90.2779713553873
Iteration: 27, Func. Count: 204, Neg. LLF: 90.18548575969342
Iteration: 28, Func. Count: 211, Neg. LLF: 90.1850971182127
Iteration: 29, Func. Count: 218, Neg. LLF: 90.18517625483692
Iteration: 30, Func. Count: 226, Neg. LLF: 90.18469502942216
Iteration: 31, Func. Count: 233, Neg. LLF: 90.1846462736919
Iteration: 32, Func. Count: 240, Neg. LLF: 90.18462733252976
Iteration: 33, Func. Count: 246, Neg. LLF: 90.18462731878404
Optimization terminated successfully (Exit mode 0)
Current function value: 90.18462733252976
Iterations: 34
Function evaluations: 246
Gradient evaluations: 33
Iteration: 1, Func. Count: 9, Neg. LLF: 91.02828221160479
Iteration: 2, Func. Count: 19, Neg. LLF: 90.36569273174
Iteration: 3, Func. Count: 27, Neg. LLF: 90.38372375746941
Iteration: 4, Func. Count: 37, Neg. LLF: 90.36532175055345
Iteration: 5, Func. Count: 45, Neg. LLF: 90.36522755592648
Iteration: 6, Func. Count: 53, Neg. LLF: 90.36510538898766
Iteration: 7, Func. Count: 61, Neg. LLF: 90.36502818251263
Iteration: 8, Func. Count: 69, Neg. LLF: 90.36389453598191
Iteration: 9, Func. Count: 77, Neg. LLF: 90.35359899485917
Iteration: 10, Func. Count: 85, Neg. LLF: 90.35224134169076
Iteration: 11, Func. Count: 93, Neg. LLF: 90.34485943440014
Iteration: 12, Func. Count: 101, Neg. LLF: 90.46668536593863
Iteration: 13, Func. Count: 110, Neg. LLF: 90.40126081934233
Iteration: 14, Func. Count: 119, Neg. LLF: 90.77037156461844
Iteration: 15, Func. Count: 128, Neg. LLF: 90.42692830767173
Iteration: 16, Func. Count: 137, Neg. LLF: 90.36182061644861
Iteration: 17, Func. Count: 146, Neg. LLF: 90.28212966489349
Iteration: 18, Func. Count: 154, Neg. LLF: 90.33444582882959
Iteration: 19, Func. Count: 163, Neg. LLF: 90.20900298571405
Iteration: 20, Func. Count: 171, Neg. LLF: 90.18960768398206
Iteration: 21, Func. Count: 179, Neg. LLF: 90.1880611898731
Iteration: 22, Func. Count: 187, Neg. LLF: 90.18549209805487
Iteration: 23, Func. Count: 195, Neg. LLF: 90.18488858430788
Iteration: 24, Func. Count: 203, Neg. LLF: 90.18464156786624
Iteration: 25, Func. Count: 211, Neg. LLF: 90.18463383014705
Iteration: 26, Func. Count: 219, Neg. LLF: 90.1846195532231
Iteration: 27, Func. Count: 228, Neg. LLF: 90.18460577011186
Iteration: 28, Func. Count: 246, Neg. LLF: 90.18462738787734
Iteration: 29, Func. Count: 253, Neg. LLF: 90.18462743431297
Optimization terminated successfully (Exit mode 0)
Current function value: 90.18462738787734
Iterations: 29
Function evaluations: 253
Gradient evaluations: 29
Iteration: 1, Func. Count: 6, Neg. LLF: 123.37734091903563
Iteration: 2, Func. Count: 14, Neg. LLF: 91.03243456180651
Iteration: 3, Func. Count: 19, Neg. LLF: 91.46999763910082
Iteration: 4, Func. Count: 25, Neg. LLF: 12574258.247995112
Iteration: 5, Func. Count: 32, Neg. LLF: 90.28918472954018
Iteration: 6, Func. Count: 37, Neg. LLF: 90.28340101753108
Iteration: 7, Func. Count: 42, Neg. LLF: 90.28337440653387
Iteration: 8, Func. Count: 46, Neg. LLF: 90.28337440656345
Optimization terminated successfully (Exit mode 0)
Current function value: 90.28337440653387
Iterations: 8
Function evaluations: 46
Gradient evaluations: 8
Iteration: 1, Func. Count: 7, Neg. LLF: 94.67973195381825
Iteration: 2, Func. Count: 15, Neg. LLF: 90.39034851711916
Iteration: 3, Func. Count: 21, Neg. LLF: 90.37345139598843
Iteration: 4, Func. Count: 27, Neg. LLF: 90.5399628024406
Iteration: 5, Func. Count: 35, Neg. LLF: 90.35559194564404
Iteration: 6, Func. Count: 41, Neg. LLF: 90.31947741097326
Iteration: 7, Func. Count: 47, Neg. LLF: 90.2846612296723
Iteration: 8, Func. Count: 53, Neg. LLF: 90.2843003103089
Iteration: 9, Func. Count: 59, Neg. LLF: 90.28342473329944
Iteration: 10, Func. Count: 65, Neg. LLF: 90.28337460766657
Iteration: 11, Func. Count: 70, Neg. LLF: 90.2833746134051
Optimization terminated successfully (Exit mode 0)
Current function value: 90.28337460766657
Iterations: 11
Function evaluations: 70
Gradient evaluations: 11
Iteration: 1, Func. Count: 8, Neg. LLF: 91.86477377825697
Iteration: 2, Func. Count: 17, Neg. LLF: 90.33414759148948
Iteration: 3, Func. Count: 24, Neg. LLF: 90.2930082217452
Iteration: 4, Func. Count: 31, Neg. LLF: 91.41660394839111
Iteration: 5, Func. Count: 39, Neg. LLF: 90.26863860170394
Iteration: 6, Func. Count: 46, Neg. LLF: 90.26737118956557
Iteration: 7, Func. Count: 53, Neg. LLF: 90.26585111215488
Iteration: 8, Func. Count: 60, Neg. LLF: 90.32531365624838
Iteration: 9, Func. Count: 68, Neg. LLF: 91.56279692479487
Iteration: 10, Func. Count: 76, Neg. LLF: 91.40766615898514
Iteration: 11, Func. Count: 84, Neg. LLF: 91.24120828313576
Iteration: 12, Func. Count: 92, Neg. LLF: 29629469.48892266
Iteration: 13, Func. Count: 101, Neg. LLF: 92.72212387044468
Iteration: 14, Func. Count: 110, Neg. LLF: 90.16289150255662
Iteration: 15, Func. Count: 117, Neg. LLF: 90.56886304885575
Iteration: 16, Func. Count: 125, Neg. LLF: 96.38274057164142
Iteration: 17, Func. Count: 133, Neg. LLF: 90.31329992812283
Iteration: 18, Func. Count: 141, Neg. LLF: 90.44223730469722
Iteration: 19, Func. Count: 149, Neg. LLF: 90.07243912278392
Iteration: 20, Func. Count: 157, Neg. LLF: 90.04784612352734
Iteration: 21, Func. Count: 164, Neg. LLF: 90.04742148071753
Iteration: 22, Func. Count: 171, Neg. LLF: 90.04739837168476
Iteration: 23, Func. Count: 178, Neg. LLF: 90.04739356201006
Iteration: 24, Func. Count: 184, Neg. LLF: 90.04739356201931
Optimization terminated successfully (Exit mode 0)
Current function value: 90.04739356201006
Iterations: 25
Function evaluations: 184
Gradient evaluations: 24
Iteration: 1, Func. Count: 9, Neg. LLF: 95.02642441619852
Iteration: 2, Func. Count: 19, Neg. LLF: 91.91875995999493
Iteration: 3, Func. Count: 29, Neg. LLF: 90.31569594503033
Iteration: 4, Func. Count: 37, Neg. LLF: 90.32049409291848
Iteration: 5, Func. Count: 46, Neg. LLF: 90.31085352350678
Iteration: 6, Func. Count: 54, Neg. LLF: 90.26366595169243
Iteration: 7, Func. Count: 62, Neg. LLF: 90.1895252450096
Iteration: 8, Func. Count: 70, Neg. LLF: 89.9152421908654
Iteration: 9, Func. Count: 78, Neg. LLF: 90.4772973453612
Iteration: 10, Func. Count: 88, Neg. LLF: 90.46064586009412
Iteration: 11, Func. Count: 97, Neg. LLF: 89.44741206234772
Iteration: 12, Func. Count: 105, Neg. LLF: 89.78504265645792
Iteration: 13, Func. Count: 114, Neg. LLF: 90.78546515988889
Iteration: 14, Func. Count: 123, Neg. LLF: 89.36583927664098
Iteration: 15, Func. Count: 131, Neg. LLF: 89.32378219378236
Iteration: 16, Func. Count: 139, Neg. LLF: 89.3059169930227
Iteration: 17, Func. Count: 147, Neg. LLF: 89.3002768826138
Iteration: 18, Func. Count: 155, Neg. LLF: 89.29699460414872
Iteration: 19, Func. Count: 163, Neg. LLF: 89.29696417767755
Iteration: 20, Func. Count: 171, Neg. LLF: 89.29696038382492
Iteration: 21, Func. Count: 178, Neg. LLF: 89.29696036449648
Optimization terminated successfully (Exit mode 0)
Current function value: 89.29696038382492
Iterations: 21
Function evaluations: 178
Gradient evaluations: 21
Iteration: 1, Func. Count: 10, Neg. LLF: 91.75873627216457
Iteration: 2, Func. Count: 21, Neg. LLF: 92.22264505826821
Iteration: 3, Func. Count: 32, Neg. LLF: 90.28990265154721
Iteration: 4, Func. Count: 41, Neg. LLF: 90.58852562864898
Iteration: 5, Func. Count: 51, Neg. LLF: 90.24233065145808
Iteration: 6, Func. Count: 60, Neg. LLF: 90.21177195902652
Iteration: 7, Func. Count: 69, Neg. LLF: 90.14033318332127
Iteration: 8, Func. Count: 78, Neg. LLF: 90.56956800361127
Iteration: 9, Func. Count: 88, Neg. LLF: 90.26005955740634
Iteration: 10, Func. Count: 98, Neg. LLF: 90.0579799294621
Iteration: 11, Func. Count: 107, Neg. LLF: 90.0555784772765
Iteration: 12, Func. Count: 116, Neg. LLF: 90.05195382973584
Iteration: 13, Func. Count: 125, Neg. LLF: 90.05017131150554
Iteration: 14, Func. Count: 134, Neg. LLF: 90.04882577391159
Iteration: 15, Func. Count: 143, Neg. LLF: 90.04749270331857
Iteration: 16, Func. Count: 152, Neg. LLF: 90.04742932211644
Iteration: 17, Func. Count: 161, Neg. LLF: 90.0473956361363
Iteration: 18, Func. Count: 170, Neg. LLF: 90.04739367331376
Iteration: 19, Func. Count: 178, Neg. LLF: 90.04739367377049
Optimization terminated successfully (Exit mode 0)
Current function value: 90.04739367331376
Iterations: 19
Function evaluations: 178
Gradient evaluations: 19
Iteration: 1, Func. Count: 7, Neg. LLF: 123.34281728952799
Iteration: 2, Func. Count: 16, Neg. LLF: 91.1117905841804
Iteration: 3, Func. Count: 22, Neg. LLF: 91.2335254128193
Iteration: 4, Func. Count: 29, Neg. LLF: 12650225.597417548
Iteration: 5, Func. Count: 37, Neg. LLF: 90.2877373927072
Iteration: 6, Func. Count: 43, Neg. LLF: 90.28339854055272
Iteration: 7, Func. Count: 49, Neg. LLF: 90.2833744608234
Iteration: 8, Func. Count: 54, Neg. LLF: 90.28337454842283
Optimization terminated successfully (Exit mode 0)
Current function value: 90.2833744608234
Iterations: 8
Function evaluations: 54
Gradient evaluations: 8
Iteration: 1, Func. Count: 8, Neg. LLF: 100.63384865619109
Iteration: 2, Func. Count: 17, Neg. LLF: 90.43898595462659
Iteration: 3, Func. Count: 25, Neg. LLF: 90.36380969931446
Iteration: 4, Func. Count: 32, Neg. LLF: 90.36292495043614
Iteration: 5, Func. Count: 39, Neg. LLF: 90.36313660237089
Optimization terminated successfully (Exit mode 0)
Current function value: 90.36292442736078
Iterations: 5
Function evaluations: 40
Gradient evaluations: 5
Iteration: 1, Func. Count: 9, Neg. LLF: 105.21484688955108
Iteration: 2, Func. Count: 19, Neg. LLF: 91.03904253720462
Iteration: 3, Func. Count: 28, Neg. LLF: 90.34342876534669
Iteration: 4, Func. Count: 36, Neg. LLF: 90.31873206965939
Iteration: 5, Func. Count: 44, Neg. LLF: 90.2876779054199
Iteration: 6, Func. Count: 52, Neg. LLF: 90.27006805060715
Iteration: 7, Func. Count: 60, Neg. LLF: 90.2684698603112
Iteration: 8, Func. Count: 68, Neg. LLF: 90.26773320512783
Iteration: 9, Func. Count: 76, Neg. LLF: 90.24964011857963
Iteration: 10, Func. Count: 84, Neg. LLF: 90.16647786571973
Iteration: 11, Func. Count: 92, Neg. LLF: 90.21210812876237
Iteration: 12, Func. Count: 101, Neg. LLF: 90.05809613465743
Iteration: 13, Func. Count: 109, Neg. LLF: 90.11344887359395
Iteration: 14, Func. Count: 118, Neg. LLF: 90.08919885379349
Iteration: 15, Func. Count: 127, Neg. LLF: 90.04742830200865
Iteration: 16, Func. Count: 135, Neg. LLF: 90.04739422846261
Iteration: 17, Func. Count: 143, Neg. LLF: 90.0473935717765
Optimization terminated successfully (Exit mode 0)
Current function value: 90.0473935717765
Iterations: 17
Function evaluations: 143
Gradient evaluations: 17
Iteration: 1, Func. Count: 10, Neg. LLF: 100.59195477458988
Iteration: 2, Func. Count: 21, Neg. LLF: 96.471022965705
Iteration: 3, Func. Count: 32, Neg. LLF: 90.32965845575686
Iteration: 4, Func. Count: 41, Neg. LLF: 90.31452683871085
Iteration: 5, Func. Count: 50, Neg. LLF: 90.31271331786508
Iteration: 6, Func. Count: 59, Neg. LLF: 90.27840554433172
Iteration: 7, Func. Count: 68, Neg. LLF: 90.2374045920068
Iteration: 8, Func. Count: 77, Neg. LLF: 89.4053844531362
Iteration: 9, Func. Count: 86, Neg. LLF: 89.8386807698054
Iteration: 10, Func. Count: 97, Neg. LLF: 105.05125843304631
Iteration: 11, Func. Count: 107, Neg. LLF: 89.30171551344392
Iteration: 12, Func. Count: 116, Neg. LLF: 89.29786105428504
Iteration: 13, Func. Count: 125, Neg. LLF: 89.29699422747078
Iteration: 14, Func. Count: 134, Neg. LLF: 89.29692585223087
Iteration: 15, Func. Count: 143, Neg. LLF: 89.29695058732464
Iteration: 16, Func. Count: 152, Neg. LLF: 89.29690447089833
Iteration: 17, Func. Count: 171, Neg. LLF: 89.29695045412014
Iteration: 18, Func. Count: 190, Neg. LLF: 89.2969519206986
Iteration: 19, Func. Count: 209, Neg. LLF: 89.29695523270395
Iteration: 20, Func. Count: 218, Neg. LLF: 89.29699555569319
Iteration: 21, Func. Count: 229, Neg. LLF: 89.29834405588085
Iteration: 22, Func. Count: 241, Neg. LLF: 89.29702611849373
Iteration: 23, Func. Count: 252, Neg. LLF: 89.29696327658289
Iteration: 24, Func. Count: 262, Neg. LLF: 89.29696003064035
Iteration: 25, Func. Count: 270, Neg. LLF: 89.29696001116763
Optimization terminated successfully (Exit mode 0)
Current function value: 89.29696003064035
Iterations: 26
Function evaluations: 270
Gradient evaluations: 25
Iteration: 1, Func. Count: 11, Neg. LLF: 97.13397019311401
Iteration: 2, Func. Count: 23, Neg. LLF: 101.95874877451637
Iteration: 3, Func. Count: 35, Neg. LLF: 90.30247510607218
Iteration: 4, Func. Count: 45, Neg. LLF: 90.37614405664878
Iteration: 5, Func. Count: 56, Neg. LLF: 90.24455122314087
Iteration: 6, Func. Count: 66, Neg. LLF: 90.21053529783622
Iteration: 7, Func. Count: 76, Neg. LLF: 90.16884731278363
Iteration: 8, Func. Count: 86, Neg. LLF: 90.5992596769051
Iteration: 9, Func. Count: 97, Neg. LLF: 90.27985831698794
Iteration: 10, Func. Count: 108, Neg. LLF: 90.06112074611929
Iteration: 11, Func. Count: 118, Neg. LLF: 90.05507419737121
Iteration: 12, Func. Count: 128, Neg. LLF: 90.05153800338063
Iteration: 13, Func. Count: 138, Neg. LLF: 90.04891792828843
Iteration: 14, Func. Count: 148, Neg. LLF: 90.04809168610969
Iteration: 15, Func. Count: 158, Neg. LLF: 90.04753626609538
Iteration: 16, Func. Count: 168, Neg. LLF: 90.04743157129765
Iteration: 17, Func. Count: 178, Neg. LLF: 90.0473985217282
Iteration: 18, Func. Count: 188, Neg. LLF: 90.04739426291593
Iteration: 19, Func. Count: 198, Neg. LLF: 90.04739356197929
Optimization terminated successfully (Exit mode 0)
Current function value: 90.04739356197929
Iterations: 19
Function evaluations: 198
Gradient evaluations: 19
Iteration: 1, Func. Count: 8, Neg. LLF: 118.42765432774635
Iteration: 2, Func. Count: 18, Neg. LLF: 102.20851845754437
Iteration: 3, Func. Count: 26, Neg. LLF: 90.39666601395025
Iteration: 4, Func. Count: 33, Neg. LLF: 90.7683822946154
Iteration: 5, Func. Count: 41, Neg. LLF: 90.31931227642967
Iteration: 6, Func. Count: 49, Neg. LLF: 90.7217319383323
Iteration: 7, Func. Count: 57, Neg. LLF: 90.23119930917576
Iteration: 8, Func. Count: 64, Neg. LLF: 90.23118553064226
Iteration: 9, Func. Count: 71, Neg. LLF: 90.23116516200422
Iteration: 10, Func. Count: 77, Neg. LLF: 90.23116516200898
Optimization terminated successfully (Exit mode 0)
Current function value: 90.23116516200422
Iterations: 10
Function evaluations: 77
Gradient evaluations: 10
Iteration: 1, Func. Count: 9, Neg. LLF: 97.65336293578409
Iteration: 2, Func. Count: 19, Neg. LLF: 90.43081681835717
Iteration: 3, Func. Count: 28, Neg. LLF: 90.36401505708214
Iteration: 4, Func. Count: 36, Neg. LLF: 90.36403657491692
Iteration: 5, Func. Count: 45, Neg. LLF: 90.38059459740789
Iteration: 6, Func. Count: 54, Neg. LLF: 90.36175326375783
Iteration: 7, Func. Count: 62, Neg. LLF: 90.27611905324629
Iteration: 8, Func. Count: 70, Neg. LLF: 90.26336670535085
Iteration: 9, Func. Count: 78, Neg. LLF: 90.25439935641022
Iteration: 10, Func. Count: 86, Neg. LLF: 90.25054747728434
Iteration: 11, Func. Count: 94, Neg. LLF: 90.23539470394073
Iteration: 12, Func. Count: 102, Neg. LLF: 90.23138606011594
Iteration: 13, Func. Count: 110, Neg. LLF: 90.23125146610079
Iteration: 14, Func. Count: 118, Neg. LLF: 90.23118843045366
Iteration: 15, Func. Count: 126, Neg. LLF: 90.23116759661129
Iteration: 16, Func. Count: 134, Neg. LLF: 90.23116529193973
Iteration: 17, Func. Count: 141, Neg. LLF: 90.23116530001028
Optimization terminated successfully (Exit mode 0)
Current function value: 90.23116529193973
Iterations: 17
Function evaluations: 141
Gradient evaluations: 17
Iteration: 1, Func. Count: 10, Neg. LLF: 103.12758932462408
Iteration: 2, Func. Count: 21, Neg. LLF: 91.92022276195836
Iteration: 3, Func. Count: 32, Neg. LLF: 90.34206779268045
Iteration: 4, Func. Count: 41, Neg. LLF: 90.30205344451934
Iteration: 5, Func. Count: 50, Neg. LLF: 90.28758547310534
Iteration: 6, Func. Count: 59, Neg. LLF: 90.27161123324632
Iteration: 7, Func. Count: 68, Neg. LLF: 90.26626967263425
Iteration: 8, Func. Count: 77, Neg. LLF: 90.36009534310045
Iteration: 9, Func. Count: 87, Neg. LLF: 90.23517368951363
Iteration: 10, Func. Count: 96, Neg. LLF: 90.56561191083955
Iteration: 11, Func. Count: 106, Neg. LLF: 90.33016721918439
Iteration: 12, Func. Count: 116, Neg. LLF: 90.18397713343695
Iteration: 13, Func. Count: 125, Neg. LLF: 90.31124263878948
Iteration: 14, Func. Count: 135, Neg. LLF: 100.57336573856291
Iteration: 15, Func. Count: 146, Neg. LLF: 90.19179323033008
Iteration: 16, Func. Count: 156, Neg. LLF: 90.1520493146804
Iteration: 17, Func. Count: 165, Neg. LLF: 90.12524699844725
Iteration: 18, Func. Count: 174, Neg. LLF: 90.0603010834223
Iteration: 19, Func. Count: 183, Neg. LLF: 90.04832848141469
Iteration: 20, Func. Count: 192, Neg. LLF: 90.04783431221253
Iteration: 21, Func. Count: 201, Neg. LLF: 90.04679123525081
Iteration: 22, Func. Count: 210, Neg. LLF: 90.04676818300136
Iteration: 23, Func. Count: 219, Neg. LLF: 90.0467672674654
Optimization terminated successfully (Exit mode 0)
Current function value: 90.0467672674654
Iterations: 23
Function evaluations: 219
Gradient evaluations: 23
Iteration: 1, Func. Count: 11, Neg. LLF: 99.11631371210957
Iteration: 2, Func. Count: 23, Neg. LLF: 98.41319551070913
Iteration: 3, Func. Count: 35, Neg. LLF: 90.32641720750443
Iteration: 4, Func. Count: 45, Neg. LLF: 90.32046938318277
Iteration: 5, Func. Count: 55, Neg. LLF: 90.31165726392348
Iteration: 6, Func. Count: 65, Neg. LLF: 90.30004811069358
Iteration: 7, Func. Count: 75, Neg. LLF: 90.22857596736239
Iteration: 8, Func. Count: 85, Neg. LLF: 94.49913806708602
Iteration: 9, Func. Count: 97, Neg. LLF: 90.02244304703993
Iteration: 10, Func. Count: 107, Neg. LLF: 90.7652379187261
Iteration: 11, Func. Count: 118, Neg. LLF: 89.4184025166294
Iteration: 12, Func. Count: 128, Neg. LLF: 90.37012105039918
Iteration: 13, Func. Count: 139, Neg. LLF: 90.61721533222642
Iteration: 14, Func. Count: 150, Neg. LLF: 41362227.38268078
Iteration: 15, Func. Count: 163, Neg. LLF: 114.49402375430387
Iteration: 16, Func. Count: 175, Neg. LLF: 90.98671782245601
Iteration: 17, Func. Count: 186, Neg. LLF: 89.47306175237554
Iteration: 18, Func. Count: 197, Neg. LLF: 89.31876127598164
Iteration: 19, Func. Count: 207, Neg. LLF: 89.30105776971442
Iteration: 20, Func. Count: 217, Neg. LLF: 89.29927200362988
Iteration: 21, Func. Count: 227, Neg. LLF: 89.29701174555075
Iteration: 22, Func. Count: 237, Neg. LLF: 89.2970087891208
Iteration: 23, Func. Count: 248, Neg. LLF: 89.2969622724707
Iteration: 24, Func. Count: 258, Neg. LLF: 89.29696003352596
Iteration: 25, Func. Count: 267, Neg. LLF: 89.29696001404946
Optimization terminated successfully (Exit mode 0)
Current function value: 89.29696003352596
Iterations: 26
Function evaluations: 267
Gradient evaluations: 25
Iteration: 1, Func. Count: 12, Neg. LLF: 95.5791975430106
Iteration: 2, Func. Count: 25, Neg. LLF: 108.12556051402939
Iteration: 3, Func. Count: 38, Neg. LLF: 90.35798766446503
Iteration: 4, Func. Count: 50, Neg. LLF: 91.43662357168942
Iteration: 5, Func. Count: 62, Neg. LLF: 96.42952534574891
Iteration: 6, Func. Count: 74, Neg. LLF: 91.0727849489636
Iteration: 7, Func. Count: 86, Neg. LLF: 90.23069733802876
Iteration: 8, Func. Count: 98, Neg. LLF: 90.21481969678742
Iteration: 9, Func. Count: 110, Neg. LLF: 90.04692564046239
Iteration: 10, Func. Count: 121, Neg. LLF: 90.04266931351297
Iteration: 11, Func. Count: 132, Neg. LLF: 90.03846827994096
Iteration: 12, Func. Count: 143, Neg. LLF: 90.03664914179781
Iteration: 13, Func. Count: 154, Neg. LLF: 90.03609532626795
Iteration: 14, Func. Count: 165, Neg. LLF: 90.03592549900577
Iteration: 15, Func. Count: 176, Neg. LLF: 90.03592088035255
Iteration: 16, Func. Count: 186, Neg. LLF: 90.03592088031205
Optimization terminated successfully (Exit mode 0)
Current function value: 90.03592088035255
Iterations: 16
Function evaluations: 186
Gradient evaluations: 16
Iteration: 1, Func. Count: 9, Neg. LLF: 119.83455309266576
Iteration: 2, Func. Count: 20, Neg. LLF: 113.31792753519242
Iteration: 3, Func. Count: 29, Neg. LLF: 90.42369770604108
Iteration: 4, Func. Count: 37, Neg. LLF: 95.98171628390774
Iteration: 5, Func. Count: 46, Neg. LLF: 90.28773081196582
Iteration: 6, Func. Count: 54, Neg. LLF: 90.43173943264404
Iteration: 7, Func. Count: 63, Neg. LLF: 90.24220808205811
Iteration: 8, Func. Count: 72, Neg. LLF: 90.23117037793237
Iteration: 9, Func. Count: 80, Neg. LLF: 90.2311659251119
Iteration: 10, Func. Count: 88, Neg. LLF: 90.23116521258937
Optimization terminated successfully (Exit mode 0)
Current function value: 90.23116521258937
Iterations: 10
Function evaluations: 88
Gradient evaluations: 10
Iteration: 1, Func. Count: 10, Neg. LLF: 100.11263685842647
Iteration: 2, Func. Count: 21, Neg. LLF: 90.43214894268455
Iteration: 3, Func. Count: 31, Neg. LLF: 90.36370866946552
Iteration: 4, Func. Count: 40, Neg. LLF: 90.36292203069416
Iteration: 5, Func. Count: 49, Neg. LLF: 90.37040053857712
Iteration: 6, Func. Count: 60, Neg. LLF: 90.36289496023113
Iteration: 7, Func. Count: 69, Neg. LLF: 90.36153692540812
Iteration: 8, Func. Count: 78, Neg. LLF: 90.29752965951224
Iteration: 9, Func. Count: 87, Neg. LLF: 90.28304888428873
Iteration: 10, Func. Count: 96, Neg. LLF: 90.27404220840391
Iteration: 11, Func. Count: 105, Neg. LLF: 90.26920828019645
Iteration: 12, Func. Count: 114, Neg. LLF: 90.25769192872295
Iteration: 13, Func. Count: 123, Neg. LLF: 90.25046273784294
Iteration: 14, Func. Count: 132, Neg. LLF: 90.24473482969438
Iteration: 15, Func. Count: 141, Neg. LLF: 90.24070526900788
Iteration: 16, Func. Count: 150, Neg. LLF: 90.23590006395455
Iteration: 17, Func. Count: 159, Neg. LLF: 90.23245478162576
Iteration: 18, Func. Count: 168, Neg. LLF: 90.23129446120784
Iteration: 19, Func. Count: 177, Neg. LLF: 90.2311762061472
Iteration: 20, Func. Count: 186, Neg. LLF: 90.23117053005969
Iteration: 21, Func. Count: 195, Neg. LLF: 90.23116754949184
Iteration: 22, Func. Count: 204, Neg. LLF: 90.23116579056139
Iteration: 23, Func. Count: 213, Neg. LLF: 90.23116604165892
Optimization terminated successfully (Exit mode 0)
Current function value: 90.23116566202735
Iterations: 24
Function evaluations: 214
Gradient evaluations: 23
Iteration: 1, Func. Count: 11, Neg. LLF: 102.23386346063198
Iteration: 2, Func. Count: 23, Neg. LLF: 92.49678203148831
Iteration: 3, Func. Count: 35, Neg. LLF: 90.34203748038551
Iteration: 4, Func. Count: 45, Neg. LLF: 90.30186101099642
Iteration: 5, Func. Count: 55, Neg. LLF: 90.28771577871953
Iteration: 6, Func. Count: 65, Neg. LLF: 90.26986230237415
Iteration: 7, Func. Count: 75, Neg. LLF: 90.26142986292584
Iteration: 8, Func. Count: 85, Neg. LLF: 90.81587837739116
Iteration: 9, Func. Count: 96, Neg. LLF: 90.53107312440616
Iteration: 10, Func. Count: 107, Neg. LLF: 90.46078659798282
Iteration: 11, Func. Count: 118, Neg. LLF: 90.40160754701957
Iteration: 12, Func. Count: 129, Neg. LLF: 43076486.49596701
Iteration: 13, Func. Count: 141, Neg. LLF: 112.56894401576166
Iteration: 14, Func. Count: 153, Neg. LLF: 90.52956034522211
Iteration: 15, Func. Count: 164, Neg. LLF: 90.12237807748531
Iteration: 16, Func. Count: 175, Neg. LLF: 90.05284408025305
Iteration: 17, Func. Count: 186, Neg. LLF: 90.0480603847213
Iteration: 18, Func. Count: 197, Neg. LLF: 90.05239648924358
Iteration: 19, Func. Count: 208, Neg. LLF: 90.04680389597468
Iteration: 20, Func. Count: 218, Neg. LLF: 90.04676703139442
Iteration: 21, Func. Count: 227, Neg. LLF: 90.0467670314783
Optimization terminated successfully (Exit mode 0)
Current function value: 90.04676703139442
Iterations: 22
Function evaluations: 227
Gradient evaluations: 21
Iteration: 1, Func. Count: 12, Neg. LLF: 98.33219836050618
Iteration: 2, Func. Count: 25, Neg. LLF: 98.84432133064736
Iteration: 3, Func. Count: 38, Neg. LLF: 90.32728638725496
Iteration: 4, Func. Count: 49, Neg. LLF: 90.31815311884061
Iteration: 5, Func. Count: 60, Neg. LLF: 90.33458009871622
Iteration: 6, Func. Count: 72, Neg. LLF: 90.29482037300215
Iteration: 7, Func. Count: 83, Neg. LLF: 90.22151851062715
Iteration: 8, Func. Count: 94, Neg. LLF: 90.40507934261728
Iteration: 9, Func. Count: 106, Neg. LLF: 91.64297250948587
Iteration: 10, Func. Count: 118, Neg. LLF: 93.73155365273578
Iteration: 11, Func. Count: 130, Neg. LLF: 28428849.09664192
Iteration: 12, Func. Count: 143, Neg. LLF: 96.16375119145695
Iteration: 13, Func. Count: 156, Neg. LLF: 90.63656301714902
Iteration: 14, Func. Count: 168, Neg. LLF: 97.58932773751297
Iteration: 15, Func. Count: 180, Neg. LLF: 90.2160122773541
Iteration: 16, Func. Count: 192, Neg. LLF: 94.63896737046107
Iteration: 17, Func. Count: 204, Neg. LLF: 89.35163829214957
Iteration: 18, Func. Count: 215, Neg. LLF: 91.1849135431829
Iteration: 19, Func. Count: 227, Neg. LLF: 89.42195567271617
Iteration: 20, Func. Count: 239, Neg. LLF: 89.39800083308363
Iteration: 21, Func. Count: 251, Neg. LLF: 89.32694472781616
Iteration: 22, Func. Count: 262, Neg. LLF: 89.32345078686497
Iteration: 23, Func. Count: 273, Neg. LLF: 89.30202369100017
Iteration: 24, Func. Count: 284, Neg. LLF: 89.302130291631
Iteration: 25, Func. Count: 296, Neg. LLF: 89.29219905146422
Iteration: 26, Func. Count: 307, Neg. LLF: 89.29200758901521
Iteration: 27, Func. Count: 318, Neg. LLF: 89.29204071885711
Iteration: 28, Func. Count: 330, Neg. LLF: 89.29198999820099
Iteration: 29, Func. Count: 340, Neg. LLF: 89.29198998171252
Optimization terminated successfully (Exit mode 0)
Current function value: 89.29198999820099
Iterations: 30
Function evaluations: 340
Gradient evaluations: 29
Iteration: 1, Func. Count: 13, Neg. LLF: 96.04370872058693
Iteration: 2, Func. Count: 27, Neg. LLF: 108.28923401466102
Iteration: 3, Func. Count: 41, Neg. LLF: 90.41546896269894
Iteration: 4, Func. Count: 54, Neg. LLF: 91.20572568810307
Iteration: 5, Func. Count: 67, Neg. LLF: 96.50874546252872
Iteration: 6, Func. Count: 80, Neg. LLF: 90.99362758225979
Iteration: 7, Func. Count: 93, Neg. LLF: 90.21309816321143
Iteration: 8, Func. Count: 106, Neg. LLF: 90.22808510323325
Iteration: 9, Func. Count: 119, Neg. LLF: 90.0484240016833
Iteration: 10, Func. Count: 131, Neg. LLF: 90.04287703955767
Iteration: 11, Func. Count: 143, Neg. LLF: 90.03890537520556
Iteration: 12, Func. Count: 155, Neg. LLF: 90.037040326634
Iteration: 13, Func. Count: 167, Neg. LLF: 90.03613656963833
Iteration: 14, Func. Count: 179, Neg. LLF: 90.0359298292433
Iteration: 15, Func. Count: 191, Neg. LLF: 90.03592297669421
Iteration: 16, Func. Count: 203, Neg. LLF: 90.03592099836553
Iteration: 17, Func. Count: 214, Neg. LLF: 90.03592099836587
Optimization terminated successfully (Exit mode 0)
Current function value: 90.03592099836553
Iterations: 17
Function evaluations: 214
Gradient evaluations: 17
Iteration: 1, Func. Count: 6, Neg. LLF: 132.93448570175295
Iteration: 2, Func. Count: 14, Neg. LLF: 140.04162117271227
Iteration: 3, Func. Count: 20, Neg. LLF: 90.50321073423169
Iteration: 4, Func. Count: 25, Neg. LLF: 90.53575288032907
Iteration: 5, Func. Count: 31, Neg. LLF: 90.39184631706388
Iteration: 6, Func. Count: 36, Neg. LLF: 90.37263818052998
Iteration: 7, Func. Count: 41, Neg. LLF: 90.3719836478173
Iteration: 8, Func. Count: 47, Neg. LLF: 90.36075097357944
Iteration: 9, Func. Count: 52, Neg. LLF: 90.36071745831956
Iteration: 10, Func. Count: 56, Neg. LLF: 90.36071755164325
Optimization terminated successfully (Exit mode 0)
Current function value: 90.36071745831956
Iterations: 10
Function evaluations: 56
Gradient evaluations: 10
Iteration: 1, Func. Count: 7, Neg. LLF: 102.53282776373693
Iteration: 2, Func. Count: 15, Neg. LLF: 90.46765785937596
Iteration: 3, Func. Count: 22, Neg. LLF: 90.36295875041623
Iteration: 4, Func. Count: 28, Neg. LLF: 90.36295725342298
Iteration: 5, Func. Count: 34, Neg. LLF: 90.36295629526902
Optimization terminated successfully (Exit mode 0)
Current function value: 90.36295629526902
Iterations: 5
Function evaluations: 34
Gradient evaluations: 5
Iteration: 1, Func. Count: 8, Neg. LLF: 113.18702934338953
Iteration: 2, Func. Count: 17, Neg. LLF: 90.470323520911
Iteration: 3, Func. Count: 25, Neg. LLF: 90.36424839166449
Iteration: 4, Func. Count: 32, Neg. LLF: 90.36422211891588
Iteration: 5, Func. Count: 39, Neg. LLF: 90.3641324300329
Iteration: 6, Func. Count: 46, Neg. LLF: 90.36392372125114
Iteration: 7, Func. Count: 53, Neg. LLF: 90.36348927295657
Iteration: 8, Func. Count: 60, Neg. LLF: 90.36315936797051
Iteration: 9, Func. Count: 67, Neg. LLF: 90.36292392920808
Iteration: 10, Func. Count: 74, Neg. LLF: 90.36292157614938
Iteration: 11, Func. Count: 80, Neg. LLF: 90.36292157621726
Optimization terminated successfully (Exit mode 0)
Current function value: 90.36292157614938
Iterations: 11
Function evaluations: 80
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 119.23353496279383
Iteration: 2, Func. Count: 19, Neg. LLF: 90.47410040306843
Iteration: 3, Func. Count: 28, Neg. LLF: 90.36437208324752
Iteration: 4, Func. Count: 36, Neg. LLF: 90.36433245728705
Iteration: 5, Func. Count: 44, Neg. LLF: 90.36431293035254
Iteration: 6, Func. Count: 52, Neg. LLF: 90.36419075684972
Iteration: 7, Func. Count: 60, Neg. LLF: 90.36367446505076
Iteration: 8, Func. Count: 68, Neg. LLF: 90.363603927626
Iteration: 9, Func. Count: 76, Neg. LLF: 90.36355545856456
Iteration: 10, Func. Count: 84, Neg. LLF: 90.36354301229925
Iteration: 11, Func. Count: 92, Neg. LLF: 90.36345731867229
Iteration: 12, Func. Count: 100, Neg. LLF: 90.36258309173607
Iteration: 13, Func. Count: 108, Neg. LLF: 90.36233008619297
Iteration: 14, Func. Count: 116, Neg. LLF: 90.36186540069767
Iteration: 15, Func. Count: 124, Neg. LLF: 90.36165072786461
Iteration: 16, Func. Count: 132, Neg. LLF: 90.3604851054001
Iteration: 17, Func. Count: 140, Neg. LLF: 90.35870796025878
Iteration: 18, Func. Count: 148, Neg. LLF: 90.35556678244474
Iteration: 19, Func. Count: 156, Neg. LLF: 90.3507859051571
Iteration: 20, Func. Count: 164, Neg. LLF: 90.28885891665331
Iteration: 21, Func. Count: 172, Neg. LLF: 126.63922019539233
Iteration: 22, Func. Count: 183, Neg. LLF: 91.01993962712275
Iteration: 23, Func. Count: 192, Neg. LLF: 91.94643156657409
Iteration: 24, Func. Count: 201, Neg. LLF: 91.08951956394573
Iteration: 25, Func. Count: 210, Neg. LLF: 90.54449610390938
Iteration: 26, Func. Count: 219, Neg. LLF: 90.34310259369504
Iteration: 27, Func. Count: 228, Neg. LLF: 90.21298964972281
Iteration: 28, Func. Count: 236, Neg. LLF: 90.27817331998756
Iteration: 29, Func. Count: 245, Neg. LLF: 90.18818635077314
Iteration: 30, Func. Count: 253, Neg. LLF: 90.18542275591444
Iteration: 31, Func. Count: 261, Neg. LLF: 90.18820788614835
Iteration: 32, Func. Count: 270, Neg. LLF: 90.18462745304014
Iteration: 33, Func. Count: 277, Neg. LLF: 90.18462743930351
Optimization terminated successfully (Exit mode 0)
Current function value: 90.18462745304014
Iterations: 34
Function evaluations: 277
Gradient evaluations: 33
Iteration: 1, Func. Count: 10, Neg. LLF: 106.85283741368539
Iteration: 2, Func. Count: 22, Neg. LLF: 90.48917723290029
Iteration: 3, Func. Count: 32, Neg. LLF: 90.365322147498
Iteration: 4, Func. Count: 41, Neg. LLF: 90.36524489660387
Iteration: 5, Func. Count: 50, Neg. LLF: 90.36472949052553
Iteration: 6, Func. Count: 59, Neg. LLF: 90.36415967437662
Iteration: 7, Func. Count: 68, Neg. LLF: 90.36414212840383
Iteration: 8, Func. Count: 77, Neg. LLF: 90.36404712519104
Iteration: 9, Func. Count: 86, Neg. LLF: 90.36360666149147
Iteration: 10, Func. Count: 95, Neg. LLF: 90.3635249117492
Iteration: 11, Func. Count: 104, Neg. LLF: 90.36345315794541
Iteration: 12, Func. Count: 113, Neg. LLF: 90.36343144354713
Iteration: 13, Func. Count: 122, Neg. LLF: 90.3632730424924
Iteration: 14, Func. Count: 131, Neg. LLF: 90.36257922829591
Iteration: 15, Func. Count: 140, Neg. LLF: 90.36226342644653
Iteration: 16, Func. Count: 149, Neg. LLF: 90.3609026906912
Iteration: 17, Func. Count: 158, Neg. LLF: 90.35871768248767
Iteration: 18, Func. Count: 167, Neg. LLF: 90.35797851656581
Iteration: 19, Func. Count: 176, Neg. LLF: 90.35456151282631
Iteration: 20, Func. Count: 185, Neg. LLF: 90.3487730341327
Iteration: 21, Func. Count: 194, Neg. LLF: 90.56063541962308
Iteration: 22, Func. Count: 204, Neg. LLF: 105.1036244931343
Iteration: 23, Func. Count: 215, Neg. LLF: 93.01286686657586
Iteration: 24, Func. Count: 226, Neg. LLF: 90.49667510643565
Iteration: 25, Func. Count: 236, Neg. LLF: 90.38726817514319
Iteration: 26, Func. Count: 246, Neg. LLF: 90.58743474242763
Iteration: 27, Func. Count: 256, Neg. LLF: 90.53345547603827
Iteration: 28, Func. Count: 266, Neg. LLF: 90.51608469558337
Iteration: 29, Func. Count: 276, Neg. LLF: 90.47085661516071
Iteration: 30, Func. Count: 286, Neg. LLF: 90.38352103194744
Iteration: 31, Func. Count: 296, Neg. LLF: 90.22155790424486
Iteration: 32, Func. Count: 305, Neg. LLF: 90.50140017317703
Iteration: 33, Func. Count: 315, Neg. LLF: 90.20082226709998
Iteration: 34, Func. Count: 324, Neg. LLF: 90.20497537083972
Iteration: 35, Func. Count: 334, Neg. LLF: 90.18467588431588
Iteration: 36, Func. Count: 343, Neg. LLF: 90.18462992299992
Iteration: 37, Func. Count: 352, Neg. LLF: 90.18462741452947
Iteration: 38, Func. Count: 360, Neg. LLF: 90.18462746129765
Optimization terminated successfully (Exit mode 0)
Current function value: 90.18462741452947
Iterations: 39
Function evaluations: 360
Gradient evaluations: 38
Iteration: 1, Func. Count: 7, Neg. LLF: 131.26847250302552
Iteration: 2, Func. Count: 16, Neg. LLF: 122.01186827509414
Iteration: 3, Func. Count: 23, Neg. LLF: 90.40059706549877
Iteration: 4, Func. Count: 29, Neg. LLF: 94.7164512473388
Iteration: 5, Func. Count: 36, Neg. LLF: 90.29412684537677
Iteration: 6, Func. Count: 42, Neg. LLF: 90.28375986828965
Iteration: 7, Func. Count: 48, Neg. LLF: 90.28337891627616
Iteration: 8, Func. Count: 54, Neg. LLF: 90.28337444723128
Iteration: 9, Func. Count: 59, Neg. LLF: 90.28337444726694
Optimization terminated successfully (Exit mode 0)
Current function value: 90.28337444723128
Iterations: 9
Function evaluations: 59
Gradient evaluations: 9
Iteration: 1, Func. Count: 8, Neg. LLF: 99.20719584979565
Iteration: 2, Func. Count: 17, Neg. LLF: 90.49837441589662
Iteration: 3, Func. Count: 25, Neg. LLF: 90.36325857643445
Iteration: 4, Func. Count: 32, Neg. LLF: 90.36293442308843
Iteration: 5, Func. Count: 39, Neg. LLF: 90.36292424174545
Iteration: 6, Func. Count: 45, Neg. LLF: 90.36292424172606
Optimization terminated successfully (Exit mode 0)
Current function value: 90.36292424174545
Iterations: 6
Function evaluations: 45
Gradient evaluations: 6
Iteration: 1, Func. Count: 9, Neg. LLF: 104.23199770733558
Iteration: 2, Func. Count: 19, Neg. LLF: 91.09417581140508
Iteration: 3, Func. Count: 29, Neg. LLF: 90.35111703636927
Iteration: 4, Func. Count: 37, Neg. LLF: 90.29313686680504
Iteration: 5, Func. Count: 45, Neg. LLF: 90.27158342523842
Iteration: 6, Func. Count: 53, Neg. LLF: 90.26662569157718
Iteration: 7, Func. Count: 61, Neg. LLF: 90.26242755739358
Iteration: 8, Func. Count: 69, Neg. LLF: 90.20681301374015
Iteration: 9, Func. Count: 77, Neg. LLF: 90.27052854062163
Iteration: 10, Func. Count: 86, Neg. LLF: 91.04182490779257
Iteration: 11, Func. Count: 95, Neg. LLF: 90.53854410011688
Iteration: 12, Func. Count: 104, Neg. LLF: 90.87781461391525
Iteration: 13, Func. Count: 114, Neg. LLF: 90.24229800434
Iteration: 14, Func. Count: 123, Neg. LLF: 90.05635738975637
Iteration: 15, Func. Count: 131, Neg. LLF: 90.04918019451254
Iteration: 16, Func. Count: 139, Neg. LLF: 90.04754104251873
Iteration: 17, Func. Count: 147, Neg. LLF: 90.04739822843682
Iteration: 18, Func. Count: 155, Neg. LLF: 90.04739385656922
Iteration: 19, Func. Count: 162, Neg. LLF: 90.04739385626392
Optimization terminated successfully (Exit mode 0)
Current function value: 90.04739385656922
Iterations: 19
Function evaluations: 162
Gradient evaluations: 19
Iteration: 1, Func. Count: 10, Neg. LLF: 100.70735605796159
Iteration: 2, Func. Count: 21, Neg. LLF: 95.92779960176314
Iteration: 3, Func. Count: 32, Neg. LLF: 90.33523500762277
Iteration: 4, Func. Count: 41, Neg. LLF: 90.31898236589909
Iteration: 5, Func. Count: 50, Neg. LLF: 90.31147393197516
Iteration: 6, Func. Count: 59, Neg. LLF: 90.29688465532313
Iteration: 7, Func. Count: 68, Neg. LLF: 90.27106969783183
Iteration: 8, Func. Count: 77, Neg. LLF: 90.26787692491492
Iteration: 9, Func. Count: 86, Neg. LLF: 90.25758531792209
Iteration: 10, Func. Count: 95, Neg. LLF: 90.35717839105085
Iteration: 11, Func. Count: 105, Neg. LLF: 90.31206380193454
Iteration: 12, Func. Count: 115, Neg. LLF: 90.2508802404098
Iteration: 13, Func. Count: 125, Neg. LLF: 92.24255805699329
Iteration: 14, Func. Count: 135, Neg. LLF: 38562027.88513845
Iteration: 15, Func. Count: 147, Neg. LLF: 174.29324748387063
Iteration: 16, Func. Count: 158, Neg. LLF: 91.9007820001853
Iteration: 17, Func. Count: 168, Neg. LLF: 90.1672115162591
Iteration: 18, Func. Count: 178, Neg. LLF: 90.04772768637673
Iteration: 19, Func. Count: 187, Neg. LLF: 90.04740413776678
Iteration: 20, Func. Count: 196, Neg. LLF: 90.0473941508449
Iteration: 21, Func. Count: 205, Neg. LLF: 90.0473937280317
Optimization terminated successfully (Exit mode 0)
Current function value: 90.0473937280317
Iterations: 22
Function evaluations: 205
Gradient evaluations: 21
Iteration: 1, Func. Count: 11, Neg. LLF: 97.15633858947011
Iteration: 2, Func. Count: 23, Neg. LLF: 102.29099526834048
Iteration: 3, Func. Count: 35, Neg. LLF: 90.30215500134865
Iteration: 4, Func. Count: 45, Neg. LLF: 90.36409214073242
Iteration: 5, Func. Count: 56, Neg. LLF: 90.24768747681567
Iteration: 6, Func. Count: 66, Neg. LLF: 90.22456778368053
Iteration: 7, Func. Count: 76, Neg. LLF: 90.17343705753682
Iteration: 8, Func. Count: 86, Neg. LLF: 90.66270776914425
Iteration: 9, Func. Count: 97, Neg. LLF: 90.29007050483696
Iteration: 10, Func. Count: 108, Neg. LLF: 90.05952549495665
Iteration: 11, Func. Count: 118, Neg. LLF: 90.05540913820045
Iteration: 12, Func. Count: 128, Neg. LLF: 90.05164102218379
Iteration: 13, Func. Count: 138, Neg. LLF: 90.04943915025297
Iteration: 14, Func. Count: 148, Neg. LLF: 90.04849322953285
Iteration: 15, Func. Count: 158, Neg. LLF: 90.0477010925308
Iteration: 16, Func. Count: 168, Neg. LLF: 90.04745615174059
Iteration: 17, Func. Count: 178, Neg. LLF: 90.0474040809269
Iteration: 18, Func. Count: 188, Neg. LLF: 90.04739469961801
Iteration: 19, Func. Count: 198, Neg. LLF: 90.0473935754349
Iteration: 20, Func. Count: 207, Neg. LLF: 90.04739357573848
Optimization terminated successfully (Exit mode 0)
Current function value: 90.0473935754349
Iterations: 20
Function evaluations: 207
Gradient evaluations: 20
Iteration: 1, Func. Count: 8, Neg. LLF: 134.30242894077378
Iteration: 2, Func. Count: 18, Neg. LLF: 129.14157115669423
Iteration: 3, Func. Count: 26, Neg. LLF: 90.4518508979266
Iteration: 4, Func. Count: 33, Neg. LLF: 96.34217325207483
Iteration: 5, Func. Count: 41, Neg. LLF: 90.30037638017495
Iteration: 6, Func. Count: 48, Neg. LLF: 90.28367714435912
Iteration: 7, Func. Count: 55, Neg. LLF: 90.283379405435
Iteration: 8, Func. Count: 62, Neg. LLF: 90.28337444094201
Iteration: 9, Func. Count: 68, Neg. LLF: 90.28337452852499
Optimization terminated successfully (Exit mode 0)
Current function value: 90.28337444094201
Iterations: 9
Function evaluations: 68
Gradient evaluations: 9
Iteration: 1, Func. Count: 9, Neg. LLF: 110.42648581605614
Iteration: 2, Func. Count: 19, Neg. LLF: 90.59804955905267
Iteration: 3, Func. Count: 28, Neg. LLF: 90.36296647643636
Iteration: 4, Func. Count: 36, Neg. LLF: 90.36293183920475
Iteration: 5, Func. Count: 43, Neg. LLF: 90.36293183914584
Optimization terminated successfully (Exit mode 0)
Current function value: 90.36293183920475
Iterations: 5
Function evaluations: 43
Gradient evaluations: 5
Iteration: 1, Func. Count: 10, Neg. LLF: 100.09742211918325
Iteration: 2, Func. Count: 21, Neg. LLF: 94.37552111872954
Iteration: 3, Func. Count: 32, Neg. LLF: 90.33350582604808
Iteration: 4, Func. Count: 41, Neg. LLF: 90.36944873713023
Iteration: 5, Func. Count: 51, Neg. LLF: 90.25202967460724
Iteration: 6, Func. Count: 60, Neg. LLF: 90.23028255801482
Iteration: 7, Func. Count: 69, Neg. LLF: 90.21472077813813
Iteration: 8, Func. Count: 78, Neg. LLF: 90.20552250969087
Iteration: 9, Func. Count: 87, Neg. LLF: 90.19949570439248
Iteration: 10, Func. Count: 96, Neg. LLF: 90.14829060478017
Iteration: 11, Func. Count: 105, Neg. LLF: 90.13811368582074
Iteration: 12, Func. Count: 115, Neg. LLF: 93.40373971514403
Iteration: 13, Func. Count: 126, Neg. LLF: 90.04842573215721
Iteration: 14, Func. Count: 135, Neg. LLF: 90.04765181094204
Iteration: 15, Func. Count: 144, Neg. LLF: 90.04740968759933
Iteration: 16, Func. Count: 153, Neg. LLF: 90.04739572253241
Iteration: 17, Func. Count: 162, Neg. LLF: 90.0473935673929
Iteration: 18, Func. Count: 170, Neg. LLF: 90.04739356736533
Optimization terminated successfully (Exit mode 0)
Current function value: 90.0473935673929
Iterations: 18
Function evaluations: 170
Gradient evaluations: 18
Iteration: 1, Func. Count: 11, Neg. LLF: 97.87110258605436
Iteration: 2, Func. Count: 23, Neg. LLF: 98.70851450427736
Iteration: 3, Func. Count: 35, Neg. LLF: 90.31811312989385
Iteration: 4, Func. Count: 45, Neg. LLF: 90.26508853911585
Iteration: 5, Func. Count: 55, Neg. LLF: 90.39130997205994
Iteration: 6, Func. Count: 66, Neg. LLF: 90.21181910850765
Iteration: 7, Func. Count: 76, Neg. LLF: 90.18184174431167
Iteration: 8, Func. Count: 86, Neg. LLF: 90.18040200710776
Iteration: 9, Func. Count: 97, Neg. LLF: 90.16510839421936
Iteration: 10, Func. Count: 107, Neg. LLF: 90.15785415440226
Iteration: 11, Func. Count: 117, Neg. LLF: 90.09250007646924
Iteration: 12, Func. Count: 127, Neg. LLF: 89.9566393758592
Iteration: 13, Func. Count: 137, Neg. LLF: 89.97542238315957
Iteration: 14, Func. Count: 148, Neg. LLF: 90.264180298837
Iteration: 15, Func. Count: 159, Neg. LLF: 89.78264536266003
Iteration: 16, Func. Count: 170, Neg. LLF: 89.67502085011918
Iteration: 17, Func. Count: 181, Neg. LLF: 89.9717380797499
Iteration: 18, Func. Count: 192, Neg. LLF: 89.95680196148493
Iteration: 19, Func. Count: 203, Neg. LLF: 89.36900962181728
Iteration: 20, Func. Count: 213, Neg. LLF: 89.34150792030063
Iteration: 21, Func. Count: 223, Neg. LLF: 89.3173545409278
Iteration: 22, Func. Count: 233, Neg. LLF: 89.28462652634838
Iteration: 23, Func. Count: 243, Neg. LLF: 89.24646236109164
Iteration: 24, Func. Count: 253, Neg. LLF: 89.24275050174239
Iteration: 25, Func. Count: 263, Neg. LLF: 89.24241898676819
Iteration: 26, Func. Count: 273, Neg. LLF: 89.24241282259715
Iteration: 27, Func. Count: 283, Neg. LLF: 89.24240866976449
Optimization terminated successfully (Exit mode 0)
Current function value: 89.24241272954976
Iterations: 27
Function evaluations: 288
Gradient evaluations: 27
Iteration: 1, Func. Count: 12, Neg. LLF: 95.6256024082009
Iteration: 2, Func. Count: 25, Neg. LLF: 102.51498108087718
Iteration: 3, Func. Count: 38, Neg. LLF: 90.30663810959965
Iteration: 4, Func. Count: 49, Neg. LLF: 90.29907309072377
Iteration: 5, Func. Count: 61, Neg. LLF: 90.23903037628999
Iteration: 6, Func. Count: 72, Neg. LLF: 90.21187511585919
Iteration: 7, Func. Count: 83, Neg. LLF: 90.19759063839004
Iteration: 8, Func. Count: 94, Neg. LLF: 90.18638048376576
Iteration: 9, Func. Count: 105, Neg. LLF: 90.24269934197605
Iteration: 10, Func. Count: 117, Neg. LLF: 90.23243026365688
Iteration: 11, Func. Count: 129, Neg. LLF: 90.16321845955584
Iteration: 12, Func. Count: 141, Neg. LLF: 92.5846367659919
Iteration: 13, Func. Count: 153, Neg. LLF: 90.1722983550304
Iteration: 14, Func. Count: 165, Neg. LLF: 90.0529989468671
Iteration: 15, Func. Count: 176, Neg. LLF: 90.10511566612
Iteration: 16, Func. Count: 188, Neg. LLF: 90.0485043257809
Iteration: 17, Func. Count: 199, Neg. LLF: 90.04811789362924
Iteration: 18, Func. Count: 210, Neg. LLF: 90.0477588203653
Iteration: 19, Func. Count: 221, Neg. LLF: 90.04752490575503
Iteration: 20, Func. Count: 232, Neg. LLF: 90.04742125761777
Iteration: 21, Func. Count: 243, Neg. LLF: 90.04739477299597
Iteration: 22, Func. Count: 254, Neg. LLF: 90.04739368084114
Iteration: 23, Func. Count: 264, Neg. LLF: 90.04739368132655
Optimization terminated successfully (Exit mode 0)
Current function value: 90.04739368084114
Iterations: 23
Function evaluations: 264
Gradient evaluations: 23
Iteration: 1, Func. Count: 9, Neg. LLF: 120.48611173974143
Iteration: 2, Func. Count: 20, Neg. LLF: 107.28429548628107
Iteration: 3, Func. Count: 29, Neg. LLF: 90.45524496850038
Iteration: 4, Func. Count: 37, Neg. LLF: 90.93907683716904
Iteration: 5, Func. Count: 46, Neg. LLF: 292.55094481620904
Iteration: 6, Func. Count: 56, Neg. LLF: 90.2385884511524
Iteration: 7, Func. Count: 64, Neg. LLF: 90.23128823618312
Iteration: 8, Func. Count: 72, Neg. LLF: 90.23116935006401
Iteration: 9, Func. Count: 80, Neg. LLF: 90.23116520316198
Iteration: 10, Func. Count: 87, Neg. LLF: 90.23116520315583
Optimization terminated successfully (Exit mode 0)
Current function value: 90.23116520316198
Iterations: 10
Function evaluations: 87
Gradient evaluations: 10
Iteration: 1, Func. Count: 10, Neg. LLF: 105.39913882587621
Iteration: 2, Func. Count: 21, Neg. LLF: 90.5870086238004
Iteration: 3, Func. Count: 31, Neg. LLF: 90.36296838008295
Iteration: 4, Func. Count: 40, Neg. LLF: 90.36292932017804
Iteration: 5, Func. Count: 48, Neg. LLF: 90.36292932010957
Optimization terminated successfully (Exit mode 0)
Current function value: 90.36292932017804
Iterations: 5
Function evaluations: 48
Gradient evaluations: 5
Iteration: 1, Func. Count: 11, Neg. LLF: 98.79371585501787
Iteration: 2, Func. Count: 23, Neg. LLF: 96.52860228052407
Iteration: 3, Func. Count: 35, Neg. LLF: 90.32451723586593
Iteration: 4, Func. Count: 45, Neg. LLF: 90.38744158049631
Iteration: 5, Func. Count: 56, Neg. LLF: 90.26237723842175
Iteration: 6, Func. Count: 66, Neg. LLF: 105.27954592043451
Iteration: 7, Func. Count: 78, Neg. LLF: 91.6322836555368
Iteration: 8, Func. Count: 89, Neg. LLF: 90.20497753104831
Iteration: 9, Func. Count: 99, Neg. LLF: 90.19445953152291
Iteration: 10, Func. Count: 109, Neg. LLF: 90.19095757237787
Iteration: 11, Func. Count: 119, Neg. LLF: 90.19044768926722
Iteration: 12, Func. Count: 129, Neg. LLF: 90.18963897726042
Iteration: 13, Func. Count: 139, Neg. LLF: 90.18853204921166
Iteration: 14, Func. Count: 149, Neg. LLF: 90.10648848351099
Iteration: 15, Func. Count: 159, Neg. LLF: 90.29698857105137
Iteration: 16, Func. Count: 170, Neg. LLF: 90.23336399505673
Iteration: 17, Func. Count: 181, Neg. LLF: 90.06215562090995
Iteration: 18, Func. Count: 192, Neg. LLF: 90.04707560334101
Iteration: 19, Func. Count: 202, Neg. LLF: 90.04681284249736
Iteration: 20, Func. Count: 212, Neg. LLF: 90.04680561483976
Iteration: 21, Func. Count: 222, Neg. LLF: 90.04676895865043
Iteration: 22, Func. Count: 232, Neg. LLF: 90.05038213664021
Optimization terminated successfully (Exit mode 0)
Current function value: 90.04676894356352
Iterations: 23
Function evaluations: 235
Gradient evaluations: 22
Iteration: 1, Func. Count: 12, Neg. LLF: 96.86674321996477
Iteration: 2, Func. Count: 25, Neg. LLF: 99.90218420719692
Iteration: 3, Func. Count: 38, Neg. LLF: 90.30515270613057
Iteration: 4, Func. Count: 49, Neg. LLF: 90.22092243193984
Iteration: 5, Func. Count: 60, Neg. LLF: 94.05890779839093
Iteration: 6, Func. Count: 72, Neg. LLF: 90.38150087839816
Iteration: 7, Func. Count: 84, Neg. LLF: 90.21018172090112
Iteration: 8, Func. Count: 96, Neg. LLF: 90.16058841006459
Iteration: 9, Func. Count: 107, Neg. LLF: 90.15884751077778
Iteration: 10, Func. Count: 118, Neg. LLF: 90.15707482365119
Iteration: 11, Func. Count: 129, Neg. LLF: 90.156973032408
Iteration: 12, Func. Count: 140, Neg. LLF: 90.1569514340039
Iteration: 13, Func. Count: 151, Neg. LLF: 90.15693838060146
Iteration: 14, Func. Count: 162, Neg. LLF: 90.15692990612766
Iteration: 15, Func. Count: 173, Neg. LLF: 90.15692717414912
Iteration: 16, Func. Count: 183, Neg. LLF: 90.15692717416654
Optimization terminated successfully (Exit mode 0)
Current function value: 90.15692717414912
Iterations: 16
Function evaluations: 183
Gradient evaluations: 16
Iteration: 1, Func. Count: 13, Neg. LLF: 95.97592791249333
Iteration: 2, Func. Count: 27, Neg. LLF: 106.6059504129779
Iteration: 3, Func. Count: 41, Neg. LLF: 90.5406646740324
Iteration: 4, Func. Count: 54, Neg. LLF: 90.49362481645521
Iteration: 5, Func. Count: 67, Neg. LLF: 91.07522585092364
Iteration: 6, Func. Count: 80, Neg. LLF: 91.03794007743473
Iteration: 7, Func. Count: 93, Neg. LLF: 90.06820766974026
Iteration: 8, Func. Count: 105, Neg. LLF: 90.0866193337531
Iteration: 9, Func. Count: 118, Neg. LLF: 90.09811158994579
Iteration: 10, Func. Count: 131, Neg. LLF: 90.04687197504389
Iteration: 11, Func. Count: 143, Neg. LLF: 90.04548756762829
Iteration: 12, Func. Count: 155, Neg. LLF: 90.04404156188244
Iteration: 13, Func. Count: 168, Neg. LLF: 90.03762107843036
Iteration: 14, Func. Count: 180, Neg. LLF: 90.03607617883048
Iteration: 15, Func. Count: 192, Neg. LLF: 90.03594224969656
Iteration: 16, Func. Count: 204, Neg. LLF: 90.03592360956408
Iteration: 17, Func. Count: 216, Neg. LLF: 90.03592101565778
Iteration: 18, Func. Count: 227, Neg. LLF: 90.03592101553832
Optimization terminated successfully (Exit mode 0)
Current function value: 90.03592101565778
Iterations: 18
Function evaluations: 227
Gradient evaluations: 18
Iteration: 1, Func. Count: 10, Neg. LLF: 118.19371551876708
Iteration: 2, Func. Count: 22, Neg. LLF: 102.80336248621639
Iteration: 3, Func. Count: 32, Neg. LLF: 90.50878708068831
Iteration: 4, Func. Count: 41, Neg. LLF: 101.92673209434456
Iteration: 5, Func. Count: 51, Neg. LLF: 90.34540935411461
Iteration: 6, Func. Count: 60, Neg. LLF: 90.37294355280369
Iteration: 7, Func. Count: 70, Neg. LLF: 90.23745316807444
Iteration: 8, Func. Count: 79, Neg. LLF: 90.23130769614296
Iteration: 9, Func. Count: 88, Neg. LLF: 90.23116627719634
Iteration: 10, Func. Count: 97, Neg. LLF: 90.23116516439501
Iteration: 11, Func. Count: 105, Neg. LLF: 90.23116520618962
Optimization terminated successfully (Exit mode 0)
Current function value: 90.23116516439501
Iterations: 11
Function evaluations: 105
Gradient evaluations: 11
Iteration: 1, Func. Count: 11, Neg. LLF: 110.11744152120751
Iteration: 2, Func. Count: 23, Neg. LLF: 90.58974038391175
Iteration: 3, Func. Count: 34, Neg. LLF: 90.36295826873264
Iteration: 4, Func. Count: 44, Neg. LLF: 90.36293156691018
Iteration: 5, Func. Count: 53, Neg. LLF: 90.36293156685873
Optimization terminated successfully (Exit mode 0)
Current function value: 90.36293156691018
Iterations: 5
Function evaluations: 53
Gradient evaluations: 5
Iteration: 1, Func. Count: 12, Neg. LLF: 98.39809305367648
Iteration: 2, Func. Count: 25, Neg. LLF: 97.64712311729193
Iteration: 3, Func. Count: 38, Neg. LLF: 90.3240432831571
Iteration: 4, Func. Count: 49, Neg. LLF: 90.38699836424678
Iteration: 5, Func. Count: 61, Neg. LLF: 90.27270802759239
Iteration: 6, Func. Count: 72, Neg. LLF: 104.82110193831946
Iteration: 7, Func. Count: 85, Neg. LLF: 92.03656995806965
Iteration: 8, Func. Count: 97, Neg. LLF: 90.21621015934558
Iteration: 9, Func. Count: 108, Neg. LLF: 90.19455767716705
Iteration: 10, Func. Count: 119, Neg. LLF: 90.19053593333938
Iteration: 11, Func. Count: 130, Neg. LLF: 90.19011411156184
Iteration: 12, Func. Count: 141, Neg. LLF: 90.18963926461453
Iteration: 13, Func. Count: 152, Neg. LLF: 90.18741683979985
Iteration: 14, Func. Count: 163, Neg. LLF: 90.08894763495327
Iteration: 15, Func. Count: 174, Neg. LLF: 90.23450063536718
Iteration: 16, Func. Count: 186, Neg. LLF: 90.06457434814197
Iteration: 17, Func. Count: 198, Neg. LLF: 90.12319961570216
Iteration: 18, Func. Count: 210, Neg. LLF: 90.04688792588983
Iteration: 19, Func. Count: 221, Neg. LLF: 90.04683369884059
Iteration: 20, Func. Count: 232, Neg. LLF: 90.13694136471648
Iteration: 21, Func. Count: 246, Neg. LLF: 90.15857683939296
Iteration: 22, Func. Count: 259, Neg. LLF: 90.04759440735897
Iteration: 23, Func. Count: 271, Neg. LLF: 90.04684258087188
Iteration: 24, Func. Count: 283, Neg. LLF: 90.04677018090761
Iteration: 25, Func. Count: 294, Neg. LLF: 90.04676919227116
Iteration: 26, Func. Count: 306, Neg. LLF: 90.04676702252324
Optimization terminated successfully (Exit mode 0)
Current function value: 90.04676702252324
Iterations: 27
Function evaluations: 306
Gradient evaluations: 26
Iteration: 1, Func. Count: 13, Neg. LLF: 96.52799156299484
Iteration: 2, Func. Count: 27, Neg. LLF: 100.16669694702654
Iteration: 3, Func. Count: 41, Neg. LLF: 90.29916179822217
Iteration: 4, Func. Count: 53, Neg. LLF: 90.23073291890537
Iteration: 5, Func. Count: 65, Neg. LLF: 94.25524609484143
Iteration: 6, Func. Count: 78, Neg. LLF: 90.35391715336021
Iteration: 7, Func. Count: 91, Neg. LLF: 90.20837328977353
Iteration: 8, Func. Count: 104, Neg. LLF: 90.17645333224323
Iteration: 9, Func. Count: 117, Neg. LLF: 90.15723869142694
Iteration: 10, Func. Count: 129, Neg. LLF: 90.15702527309361
Iteration: 11, Func. Count: 141, Neg. LLF: 90.15697852872312
Iteration: 12, Func. Count: 153, Neg. LLF: 90.15694099495703
Iteration: 13, Func. Count: 165, Neg. LLF: 90.15692886290553
Iteration: 14, Func. Count: 177, Neg. LLF: 90.15026002434979
Iteration: 15, Func. Count: 189, Neg. LLF: 90.04276862001502
Iteration: 16, Func. Count: 201, Neg. LLF: 89.92959758946584
Iteration: 17, Func. Count: 213, Neg. LLF: 89.51283644853908
Iteration: 18, Func. Count: 225, Neg. LLF: 90.7278177586568
Iteration: 19, Func. Count: 240, Neg. LLF: 89.4876873938715
Iteration: 20, Func. Count: 253, Neg. LLF: 89.3907587049455
Iteration: 21, Func. Count: 266, Neg. LLF: 89.30762331840894
Iteration: 22, Func. Count: 278, Neg. LLF: 89.30625787437681
Iteration: 23, Func. Count: 291, Neg. LLF: 89.28562600974902
Iteration: 24, Func. Count: 303, Neg. LLF: 89.25528248391619
Iteration: 25, Func. Count: 315, Neg. LLF: 89.24095388077968
Iteration: 26, Func. Count: 327, Neg. LLF: 89.23997577635336
Iteration: 27, Func. Count: 339, Neg. LLF: 89.2383981556392
Iteration: 28, Func. Count: 351, Neg. LLF: 89.23685484318477
Iteration: 29, Func. Count: 363, Neg. LLF: 89.23348123797498
Iteration: 30, Func. Count: 375, Neg. LLF: 89.23338179676233
Iteration: 31, Func. Count: 387, Neg. LLF: 89.23285272572681
Iteration: 32, Func. Count: 409, Neg. LLF: 89.85878554648126
Iteration: 33, Func. Count: 431, Neg. LLF: 89.30402160629738
Iteration: 34, Func. Count: 445, Neg. LLF: 89.23353623333861
Iteration: 35, Func. Count: 457, Neg. LLF: 89.23354755928519
Iteration: 36, Func. Count: 469, Neg. LLF: 89.23353725663192
Iteration: 37, Func. Count: 481, Neg. LLF: 89.23353422499493
Iteration: 38, Func. Count: 503, Neg. LLF: 89.2335447739563
Optimization terminated successfully (Exit mode 0)
Current function value: 89.23353738303206
Iterations: 38
Function evaluations: 504
Gradient evaluations: 38
Iteration: 1, Func. Count: 14, Neg. LLF: 95.9318580092546
Iteration: 2, Func. Count: 29, Neg. LLF: 107.19421999073265
Iteration: 3, Func. Count: 44, Neg. LLF: 90.55788334080374
Iteration: 4, Func. Count: 58, Neg. LLF: 90.63197864798909
Iteration: 5, Func. Count: 72, Neg. LLF: 91.21073260439994
Iteration: 6, Func. Count: 86, Neg. LLF: 91.01392809572141
Iteration: 7, Func. Count: 100, Neg. LLF: 90.06690987941533
Iteration: 8, Func. Count: 113, Neg. LLF: 90.07366443085772
Iteration: 9, Func. Count: 127, Neg. LLF: 90.10474016956238
Iteration: 10, Func. Count: 141, Neg. LLF: 90.04737108410706
Iteration: 11, Func. Count: 154, Neg. LLF: 90.04631135230915
Iteration: 12, Func. Count: 167, Neg. LLF: 90.05547845333953
Iteration: 13, Func. Count: 181, Neg. LLF: 90.04737407677027
Iteration: 14, Func. Count: 195, Neg. LLF: 90.03849487562341
Iteration: 15, Func. Count: 208, Neg. LLF: 90.03595814399638
Iteration: 16, Func. Count: 221, Neg. LLF: 90.03593584886303
Iteration: 17, Func. Count: 234, Neg. LLF: 90.03592165793985
Iteration: 18, Func. Count: 247, Neg. LLF: 90.03592080444149
Optimization terminated successfully (Exit mode 0)
Current function value: 90.03592080444149
Iterations: 18
Function evaluations: 247
Gradient evaluations: 18
Iteration: 1, Func. Count: 7, Neg. LLF: 129.49985463478697
Iteration: 2, Func. Count: 16, Neg. LLF: 124.70971203246863
Iteration: 3, Func. Count: 23, Neg. LLF: 90.41981962459315
Iteration: 4, Func. Count: 29, Neg. LLF: 90.96666747046226
Iteration: 5, Func. Count: 36, Neg. LLF: 91.00124673912559
Iteration: 6, Func. Count: 43, Neg. LLF: 90.41500665340159
Iteration: 7, Func. Count: 50, Neg. LLF: 90.36074033462111
Iteration: 8, Func. Count: 56, Neg. LLF: 90.36071848177899
Iteration: 9, Func. Count: 62, Neg. LLF: 90.36071739543868
Iteration: 10, Func. Count: 67, Neg. LLF: 90.36071739565995
Optimization terminated successfully (Exit mode 0)
Current function value: 90.36071739543868
Iterations: 10
Function evaluations: 67
Gradient evaluations: 10
Iteration: 1, Func. Count: 8, Neg. LLF: 99.1134387845066
Iteration: 2, Func. Count: 17, Neg. LLF: 90.44106728681717
Iteration: 3, Func. Count: 25, Neg. LLF: 90.36296019906545
Iteration: 4, Func. Count: 32, Neg. LLF: 90.36295823510292
Iteration: 5, Func. Count: 38, Neg. LLF: 90.36295823509957
Optimization terminated successfully (Exit mode 0)
Current function value: 90.36295823510292
Iterations: 5
Function evaluations: 38
Gradient evaluations: 5
Iteration: 1, Func. Count: 9, Neg. LLF: 104.41846912148401
Iteration: 2, Func. Count: 19, Neg. LLF: 90.46352228749741
Iteration: 3, Func. Count: 28, Neg. LLF: 90.36425809242161
Iteration: 4, Func. Count: 36, Neg. LLF: 90.36423456566094
Iteration: 5, Func. Count: 44, Neg. LLF: 90.36408015799901
Iteration: 6, Func. Count: 52, Neg. LLF: 90.3635770159861
Iteration: 7, Func. Count: 60, Neg. LLF: 90.3631674327673
Iteration: 8, Func. Count: 68, Neg. LLF: 90.36297164496084
Iteration: 9, Func. Count: 76, Neg. LLF: 90.36292085951929
Iteration: 10, Func. Count: 83, Neg. LLF: 90.36292085960172
Optimization terminated successfully (Exit mode 0)
Current function value: 90.36292085951929
Iterations: 10
Function evaluations: 83
Gradient evaluations: 10
Iteration: 1, Func. Count: 10, Neg. LLF: 119.22041714055652
Iteration: 2, Func. Count: 22, Neg. LLF: 90.45561939209436
Iteration: 3, Func. Count: 32, Neg. LLF: 90.36433981125698
Iteration: 4, Func. Count: 41, Neg. LLF: 90.36432599524663
Iteration: 5, Func. Count: 50, Neg. LLF: 90.36425493830309
Iteration: 6, Func. Count: 59, Neg. LLF: 90.36394791326735
Iteration: 7, Func. Count: 68, Neg. LLF: 90.36363201041486
Iteration: 8, Func. Count: 77, Neg. LLF: 90.36362681329749
Iteration: 9, Func. Count: 86, Neg. LLF: 90.36359885401203
Iteration: 10, Func. Count: 95, Neg. LLF: 90.3634666534103
Iteration: 11, Func. Count: 104, Neg. LLF: 90.36322172560399
Iteration: 12, Func. Count: 113, Neg. LLF: 90.36307692980809
Iteration: 13, Func. Count: 122, Neg. LLF: 90.36293459866641
Iteration: 14, Func. Count: 131, Neg. LLF: 90.36226737135554
Iteration: 15, Func. Count: 140, Neg. LLF: 90.359646505659
Iteration: 16, Func. Count: 149, Neg. LLF: 90.37876046284498
Iteration: 17, Func. Count: 159, Neg. LLF: 91.05286241048675
Iteration: 18, Func. Count: 169, Neg. LLF: 90.95677101385503
Iteration: 19, Func. Count: 179, Neg. LLF: 90.36394478555893
Iteration: 20, Func. Count: 189, Neg. LLF: 90.35370527848198
Iteration: 21, Func. Count: 198, Neg. LLF: 90.34695249243667
Iteration: 22, Func. Count: 207, Neg. LLF: 90.32259270866766
Iteration: 23, Func. Count: 216, Neg. LLF: 90.69546024177878
Iteration: 24, Func. Count: 226, Neg. LLF: 93.10732189572101
Iteration: 25, Func. Count: 237, Neg. LLF: 29046027.891598966
Iteration: 26, Func. Count: 248, Neg. LLF: 174.36156362555238
Iteration: 27, Func. Count: 259, Neg. LLF: 90.57444817949559
Iteration: 28, Func. Count: 269, Neg. LLF: 90.25335956214629
Iteration: 29, Func. Count: 278, Neg. LLF: 90.29215074715594
Iteration: 30, Func. Count: 288, Neg. LLF: 90.37000702191459
Iteration: 31, Func. Count: 299, Neg. LLF: 90.205608896442
Iteration: 32, Func. Count: 308, Neg. LLF: 90.18850155146127
Iteration: 33, Func. Count: 317, Neg. LLF: 90.18537419754956
Iteration: 34, Func. Count: 326, Neg. LLF: 90.18463883146595
Iteration: 35, Func. Count: 335, Neg. LLF: 90.18463069687743
Iteration: 36, Func. Count: 344, Neg. LLF: 90.18462730288776
Iteration: 37, Func. Count: 352, Neg. LLF: 90.18462728913259
Optimization terminated successfully (Exit mode 0)
Current function value: 90.18462730288776
Iterations: 38
Function evaluations: 352
Gradient evaluations: 37
Iteration: 1, Func. Count: 11, Neg. LLF: 95.5389101494089
Iteration: 2, Func. Count: 23, Neg. LLF: 90.50074432858192
Iteration: 3, Func. Count: 34, Neg. LLF: 90.36554498189052
Iteration: 4, Func. Count: 44, Neg. LLF: 90.36548262449614
Iteration: 5, Func. Count: 54, Neg. LLF: 90.36512447754467
Iteration: 6, Func. Count: 64, Neg. LLF: 90.36413226191313
Iteration: 7, Func. Count: 74, Neg. LLF: 90.36411903645565
Iteration: 8, Func. Count: 84, Neg. LLF: 90.36405156003214
Iteration: 9, Func. Count: 94, Neg. LLF: 90.36375722635724
Iteration: 10, Func. Count: 104, Neg. LLF: 90.36356452348805
Iteration: 11, Func. Count: 114, Neg. LLF: 90.36355500034443
Iteration: 12, Func. Count: 124, Neg. LLF: 90.36350483448368
Iteration: 13, Func. Count: 134, Neg. LLF: 90.36321277674406
Iteration: 14, Func. Count: 144, Neg. LLF: 90.36244644903424
Iteration: 15, Func. Count: 154, Neg. LLF: 90.36229786956008
Iteration: 16, Func. Count: 164, Neg. LLF: 90.36170507340816
Iteration: 17, Func. Count: 174, Neg. LLF: 90.36079757257579
Iteration: 18, Func. Count: 184, Neg. LLF: 90.36036317061496
Iteration: 19, Func. Count: 194, Neg. LLF: 90.358539168389
Iteration: 20, Func. Count: 204, Neg. LLF: 90.35570424289935
Iteration: 21, Func. Count: 214, Neg. LLF: 90.3440010650288
Iteration: 22, Func. Count: 224, Neg. LLF: 91.24271815879713
Iteration: 23, Func. Count: 236, Neg. LLF: 90.36712914024758
Iteration: 24, Func. Count: 247, Neg. LLF: 90.32494304371626
Iteration: 25, Func. Count: 257, Neg. LLF: 90.33489686656212
Iteration: 26, Func. Count: 268, Neg. LLF: 115.62653844250192
Iteration: 27, Func. Count: 280, Neg. LLF: 90.37423252383957
Iteration: 28, Func. Count: 291, Neg. LLF: 90.20446610542267
Iteration: 29, Func. Count: 301, Neg. LLF: 90.20595102016019
Iteration: 30, Func. Count: 312, Neg. LLF: 90.18675866973118
Iteration: 31, Func. Count: 322, Neg. LLF: 90.18782633026642
Iteration: 32, Func. Count: 333, Neg. LLF: 90.18463356675386
Iteration: 33, Func. Count: 343, Neg. LLF: 90.18462732468245
Iteration: 34, Func. Count: 352, Neg. LLF: 90.18462737142411
Optimization terminated successfully (Exit mode 0)
Current function value: 90.18462732468245
Iterations: 35
Function evaluations: 352
Gradient evaluations: 34
Iteration: 1, Func. Count: 8, Neg. LLF: 126.83592739989423
Iteration: 2, Func. Count: 18, Neg. LLF: 114.71673633431622
Iteration: 3, Func. Count: 26, Neg. LLF: 90.37019347981627
Iteration: 4, Func. Count: 33, Neg. LLF: 92.13659435349918
Iteration: 5, Func. Count: 41, Neg. LLF: 90.29534790875185
Iteration: 6, Func. Count: 48, Neg. LLF: 90.48811595655276
Iteration: 7, Func. Count: 56, Neg. LLF: 90.29258645161516
Iteration: 8, Func. Count: 64, Neg. LLF: 90.28311701180735
Iteration: 9, Func. Count: 71, Neg. LLF: 90.28310345169355
Iteration: 10, Func. Count: 77, Neg. LLF: 90.28310345174846
Optimization terminated successfully (Exit mode 0)
Current function value: 90.28310345169355
Iterations: 10
Function evaluations: 77
Gradient evaluations: 10
Iteration: 1, Func. Count: 9, Neg. LLF: 96.22545050656258
Iteration: 2, Func. Count: 19, Neg. LLF: 90.46900970539275
Iteration: 3, Func. Count: 28, Neg. LLF: 90.3632822153666
Iteration: 4, Func. Count: 36, Neg. LLF: 90.36293090636507
Iteration: 5, Func. Count: 44, Neg. LLF: 90.36292268002407
Iteration: 6, Func. Count: 51, Neg. LLF: 90.3629226800027
Optimization terminated successfully (Exit mode 0)
Current function value: 90.36292268002407
Iterations: 6
Function evaluations: 51
Gradient evaluations: 6
Iteration: 1, Func. Count: 10, Neg. LLF: 99.32464782861429
Iteration: 2, Func. Count: 21, Neg. LLF: 92.24533636931848
Iteration: 3, Func. Count: 32, Neg. LLF: 90.34969300259252
Iteration: 4, Func. Count: 41, Neg. LLF: 90.2902361979578
Iteration: 5, Func. Count: 50, Neg. LLF: 90.27461490905573
Iteration: 6, Func. Count: 59, Neg. LLF: 90.26498594416537
Iteration: 7, Func. Count: 68, Neg. LLF: 90.2555201849802
Iteration: 8, Func. Count: 77, Neg. LLF: 90.54945636150485
Iteration: 9, Func. Count: 87, Neg. LLF: 90.44504908390428
Iteration: 10, Func. Count: 97, Neg. LLF: 90.4101782578162
Iteration: 11, Func. Count: 107, Neg. LLF: 45874836.87617499
Iteration: 12, Func. Count: 118, Neg. LLF: 115.9718515231794
Iteration: 13, Func. Count: 129, Neg. LLF: 90.41164598320023
Iteration: 14, Func. Count: 139, Neg. LLF: 90.18234062485531
Iteration: 15, Func. Count: 149, Neg. LLF: 90.13714406392768
Iteration: 16, Func. Count: 159, Neg. LLF: 90.05829592540557
Iteration: 17, Func. Count: 169, Neg. LLF: 90.04858724099907
Iteration: 18, Func. Count: 178, Neg. LLF: 90.04739932322138
Iteration: 19, Func. Count: 187, Neg. LLF: 90.04739444159533
Iteration: 20, Func. Count: 196, Neg. LLF: 90.04739356722222
Optimization terminated successfully (Exit mode 0)
Current function value: 90.04739356722222
Iterations: 21
Function evaluations: 196
Gradient evaluations: 20
Iteration: 1, Func. Count: 11, Neg. LLF: 99.15661244756873
Iteration: 2, Func. Count: 23, Neg. LLF: 98.67951613499051
Iteration: 3, Func. Count: 35, Neg. LLF: 90.33271371148494
Iteration: 4, Func. Count: 45, Neg. LLF: 90.31878219512885
Iteration: 5, Func. Count: 55, Neg. LLF: 90.30095173410903
Iteration: 6, Func. Count: 65, Neg. LLF: 90.27023441118823
Iteration: 7, Func. Count: 75, Neg. LLF: 90.26765848129622
Iteration: 8, Func. Count: 85, Neg. LLF: 90.26168733568325
Iteration: 9, Func. Count: 95, Neg. LLF: 90.24200309540763
Iteration: 10, Func. Count: 105, Neg. LLF: 90.22730602622532
Iteration: 11, Func. Count: 115, Neg. LLF: 90.20790793082047
Iteration: 12, Func. Count: 126, Neg. LLF: 90.07514519272168
Iteration: 13, Func. Count: 136, Neg. LLF: 90.08739741569578
Iteration: 14, Func. Count: 147, Neg. LLF: 90.08506372447843
Iteration: 15, Func. Count: 158, Neg. LLF: 90.05156485032025
Iteration: 16, Func. Count: 168, Neg. LLF: 90.04760618388715
Iteration: 17, Func. Count: 178, Neg. LLF: 90.0474930003604
Iteration: 18, Func. Count: 188, Neg. LLF: 90.17609941842339
Iteration: 19, Func. Count: 200, Neg. LLF: 91.01582388123396
Iteration: 20, Func. Count: 213, Neg. LLF: 90.04887443728484
Iteration: 21, Func. Count: 224, Neg. LLF: 90.04739424551232
Iteration: 22, Func. Count: 234, Neg. LLF: 90.0473951985575
Optimization terminated successfully (Exit mode 0)
Current function value: 90.04739360962785
Iterations: 23
Function evaluations: 235
Gradient evaluations: 22
Iteration: 1, Func. Count: 12, Neg. LLF: 94.81705257061188
Iteration: 2, Func. Count: 25, Neg. LLF: 103.8419205723982
Iteration: 3, Func. Count: 38, Neg. LLF: 90.29691041807264
Iteration: 4, Func. Count: 49, Neg. LLF: 90.40859736043869
Iteration: 5, Func. Count: 61, Neg. LLF: 90.36586059355382
Iteration: 6, Func. Count: 73, Neg. LLF: 90.21925647205433
Iteration: 7, Func. Count: 84, Neg. LLF: 90.18623839572284
Iteration: 8, Func. Count: 95, Neg. LLF: 90.21785838524534
Iteration: 9, Func. Count: 107, Neg. LLF: 90.31434368229712
Iteration: 10, Func. Count: 120, Neg. LLF: 90.05785152839725
Iteration: 11, Func. Count: 131, Neg. LLF: 90.0519344660518
Iteration: 12, Func. Count: 142, Neg. LLF: 90.04980114354137
Iteration: 13, Func. Count: 153, Neg. LLF: 90.04890711179735
Iteration: 14, Func. Count: 164, Neg. LLF: 90.04791117498642
Iteration: 15, Func. Count: 175, Neg. LLF: 90.04745029633075
Iteration: 16, Func. Count: 186, Neg. LLF: 90.047393873096
Iteration: 17, Func. Count: 196, Neg. LLF: 90.04739387325267
Optimization terminated successfully (Exit mode 0)
Current function value: 90.047393873096
Iterations: 17
Function evaluations: 196
Gradient evaluations: 17
Iteration: 1, Func. Count: 9, Neg. LLF: 130.00903973784384
Iteration: 2, Func. Count: 20, Neg. LLF: 114.90878867110926
Iteration: 3, Func. Count: 29, Neg. LLF: 90.39311276346798
Iteration: 4, Func. Count: 37, Neg. LLF: 93.36799948258874
Iteration: 5, Func. Count: 46, Neg. LLF: 90.28906181311002
Iteration: 6, Func. Count: 54, Neg. LLF: 90.46878559716905
Iteration: 7, Func. Count: 64, Neg. LLF: 90.28507135505639
Iteration: 8, Func. Count: 72, Neg. LLF: 90.28311757664281
Iteration: 9, Func. Count: 80, Neg. LLF: 90.28310455185859
Iteration: 10, Func. Count: 88, Neg. LLF: 90.28310320366161
Iteration: 11, Func. Count: 95, Neg. LLF: 90.28310311646393
Optimization terminated successfully (Exit mode 0)
Current function value: 90.28310320366161
Iterations: 11
Function evaluations: 95
Gradient evaluations: 11
Iteration: 1, Func. Count: 10, Neg. LLF: 104.82785311328686
Iteration: 2, Func. Count: 21, Neg. LLF: 90.55920869123142
Iteration: 3, Func. Count: 31, Neg. LLF: 90.36296819940242
Iteration: 4, Func. Count: 40, Neg. LLF: 90.3629315480392
Iteration: 5, Func. Count: 48, Neg. LLF: 90.36293154798135
Optimization terminated successfully (Exit mode 0)
Current function value: 90.3629315480392
Iterations: 5
Function evaluations: 48
Gradient evaluations: 5
Iteration: 1, Func. Count: 11, Neg. LLF: 98.79882761122597
Iteration: 2, Func. Count: 23, Neg. LLF: 96.98015357040697
Iteration: 3, Func. Count: 35, Neg. LLF: 90.32823886391265
Iteration: 4, Func. Count: 45, Neg. LLF: 90.39381085260378
Iteration: 5, Func. Count: 56, Neg. LLF: 90.27094022540702
Iteration: 6, Func. Count: 66, Neg. LLF: 99.3036164737493
Iteration: 7, Func. Count: 78, Neg. LLF: 90.21697817047675
Iteration: 8, Func. Count: 88, Neg. LLF: 90.27256111758119
Iteration: 9, Func. Count: 99, Neg. LLF: 90.17897430387794
Iteration: 10, Func. Count: 109, Neg. LLF: 90.17245466043504
Iteration: 11, Func. Count: 119, Neg. LLF: 90.1665608892628
Iteration: 12, Func. Count: 129, Neg. LLF: 90.23499484843117
Iteration: 13, Func. Count: 140, Neg. LLF: 90.21507396566433
Iteration: 14, Func. Count: 151, Neg. LLF: 90.1484347102167
Iteration: 15, Func. Count: 161, Neg. LLF: 90.47499931895067
Iteration: 16, Func. Count: 172, Neg. LLF: 90.09421884937363
Iteration: 17, Func. Count: 183, Neg. LLF: 90.05462921456389
Iteration: 18, Func. Count: 193, Neg. LLF: 90.04768188572385
Iteration: 19, Func. Count: 203, Neg. LLF: 90.04740531432898
Iteration: 20, Func. Count: 213, Neg. LLF: 90.04739371774697
Iteration: 21, Func. Count: 222, Neg. LLF: 90.04739371792394
Optimization terminated successfully (Exit mode 0)
Current function value: 90.04739371774697
Iterations: 21
Function evaluations: 222
Gradient evaluations: 21
Iteration: 1, Func. Count: 12, Neg. LLF: 96.84767778074004
Iteration: 2, Func. Count: 25, Neg. LLF: 99.74741883713153
Iteration: 3, Func. Count: 38, Neg. LLF: 90.31424923380811
Iteration: 4, Func. Count: 49, Neg. LLF: 90.23642940497292
Iteration: 5, Func. Count: 60, Neg. LLF: 90.75301777737516
Iteration: 6, Func. Count: 72, Neg. LLF: 90.31766594428397
Iteration: 7, Func. Count: 84, Neg. LLF: 90.19547511821546
Iteration: 8, Func. Count: 95, Neg. LLF: 90.177356406738
Iteration: 9, Func. Count: 106, Neg. LLF: 90.16031961781417
Iteration: 10, Func. Count: 117, Neg. LLF: 90.14207616346494
Iteration: 11, Func. Count: 128, Neg. LLF: 90.12701083154987
Iteration: 12, Func. Count: 139, Neg. LLF: 89.87629034786123
Iteration: 13, Func. Count: 150, Neg. LLF: 90.20947762336291
Iteration: 14, Func. Count: 162, Neg. LLF: 12740843.27246381
Iteration: 15, Func. Count: 175, Neg. LLF: 99.18007052141836
Iteration: 16, Func. Count: 189, Neg. LLF: 106.2674436419888
Iteration: 17, Func. Count: 201, Neg. LLF: 89.6630187958859
Iteration: 18, Func. Count: 213, Neg. LLF: 89.28104751964896
Iteration: 19, Func. Count: 224, Neg. LLF: 89.24403933852258
Iteration: 20, Func. Count: 235, Neg. LLF: 89.24403765189832
Iteration: 21, Func. Count: 247, Neg. LLF: 89.24245564099546
Iteration: 22, Func. Count: 259, Neg. LLF: 89.24242533934152
Iteration: 23, Func. Count: 270, Neg. LLF: 89.24240980384161
Optimization terminated successfully (Exit mode 0)
Current function value: 89.24240983534061
Iterations: 24
Function evaluations: 270
Gradient evaluations: 23
Iteration: 1, Func. Count: 13, Neg. LLF: 94.98979058114675
Iteration: 2, Func. Count: 27, Neg. LLF: 104.02486235022448
Iteration: 3, Func. Count: 41, Neg. LLF: 90.30163288134328
Iteration: 4, Func. Count: 53, Neg. LLF: 90.32856719907127
Iteration: 5, Func. Count: 66, Neg. LLF: 90.49915392556642
Iteration: 6, Func. Count: 79, Neg. LLF: 90.21761974373254
Iteration: 7, Func. Count: 91, Neg. LLF: 90.88488176329385
Iteration: 8, Func. Count: 104, Neg. LLF: 90.66395114663874
Iteration: 9, Func. Count: 117, Neg. LLF: 90.38302556376468
Iteration: 10, Func. Count: 130, Neg. LLF: 90.19700897811596
Iteration: 11, Func. Count: 143, Neg. LLF: 90.11718102644929
Iteration: 12, Func. Count: 155, Neg. LLF: 90.14507553860969
Iteration: 13, Func. Count: 168, Neg. LLF: 90.24186819943617
Iteration: 14, Func. Count: 181, Neg. LLF: 90.05296411493656
Iteration: 15, Func. Count: 193, Neg. LLF: 90.05095873765943
Iteration: 16, Func. Count: 205, Neg. LLF: 90.04949925640695
Iteration: 17, Func. Count: 217, Neg. LLF: 90.04855472531614
Iteration: 18, Func. Count: 229, Neg. LLF: 90.04755587032477
Iteration: 19, Func. Count: 241, Neg. LLF: 90.0474041666094
Iteration: 20, Func. Count: 253, Neg. LLF: 90.04739570051407
Iteration: 21, Func. Count: 265, Neg. LLF: 90.04739395711424
Iteration: 22, Func. Count: 276, Neg. LLF: 90.04739395773177
Optimization terminated successfully (Exit mode 0)
Current function value: 90.04739395711424
Iterations: 22
Function evaluations: 276
Gradient evaluations: 22
Iteration: 1, Func. Count: 10, Neg. LLF: 128.18140190142807
Iteration: 2, Func. Count: 22, Neg. LLF: 106.38137703352182
Iteration: 3, Func. Count: 32, Neg. LLF: 90.48550995994455
Iteration: 4, Func. Count: 41, Neg. LLF: 91.26216978155554
Iteration: 5, Func. Count: 51, Neg. LLF: 94.46852280491164
Iteration: 6, Func. Count: 62, Neg. LLF: 90.53569335664001
Iteration: 7, Func. Count: 72, Neg. LLF: 90.23805521454128
Iteration: 8, Func. Count: 81, Neg. LLF: 90.23187512896972
Iteration: 9, Func. Count: 90, Neg. LLF: 90.23123823972146
Iteration: 10, Func. Count: 99, Neg. LLF: 90.23116980971011
Iteration: 11, Func. Count: 108, Neg. LLF: 90.23116567711136
Iteration: 12, Func. Count: 116, Neg. LLF: 90.23116567712715
Optimization terminated successfully (Exit mode 0)
Current function value: 90.23116567711136
Iterations: 12
Function evaluations: 116
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 102.581527775674
Iteration: 2, Func. Count: 23, Neg. LLF: 90.56071860468045
Iteration: 3, Func. Count: 34, Neg. LLF: 90.36529617492268
Iteration: 4, Func. Count: 44, Neg. LLF: 90.36298651608287
Iteration: 5, Func. Count: 54, Neg. LLF: 90.3629759699492
Iteration: 6, Func. Count: 65, Neg. LLF: 90.3629368523873
Iteration: 7, Func. Count: 75, Neg. LLF: 90.36293601688148
Optimization terminated successfully (Exit mode 0)
Current function value: 90.36293601688148
Iterations: 7
Function evaluations: 75
Gradient evaluations: 7
Iteration: 1, Func. Count: 12, Neg. LLF: 97.70235135255967
Iteration: 2, Func. Count: 25, Neg. LLF: 98.5901945342872
Iteration: 3, Func. Count: 38, Neg. LLF: 90.31508753232482
Iteration: 4, Func. Count: 49, Neg. LLF: 90.40122713431363
Iteration: 5, Func. Count: 61, Neg. LLF: 90.28770781102047
Iteration: 6, Func. Count: 72, Neg. LLF: 91.45711144936502
Iteration: 7, Func. Count: 84, Neg. LLF: 91.03949863688088
Iteration: 8, Func. Count: 96, Neg. LLF: 90.24119046427589
Iteration: 9, Func. Count: 107, Neg. LLF: 90.22295104489733
Iteration: 10, Func. Count: 118, Neg. LLF: 90.19309455604709
Iteration: 11, Func. Count: 129, Neg. LLF: 90.18423627285134
Iteration: 12, Func. Count: 140, Neg. LLF: 90.17527455228814
Iteration: 13, Func. Count: 151, Neg. LLF: 90.17172596383975
Iteration: 14, Func. Count: 162, Neg. LLF: 90.16838294300196
Iteration: 15, Func. Count: 173, Neg. LLF: 90.1284239302108
Iteration: 16, Func. Count: 184, Neg. LLF: 90.0819602955765
Iteration: 17, Func. Count: 195, Neg. LLF: 90.06492930823138
Iteration: 18, Func. Count: 206, Neg. LLF: 90.06342667356014
Iteration: 19, Func. Count: 218, Neg. LLF: 90.04825032115184
Iteration: 20, Func. Count: 229, Neg. LLF: 90.04685408955267
Iteration: 21, Func. Count: 240, Neg. LLF: 90.04679926210615
Iteration: 22, Func. Count: 251, Neg. LLF: 90.0467750636383
Iteration: 23, Func. Count: 262, Neg. LLF: 90.04676713028597
Iteration: 24, Func. Count: 272, Neg. LLF: 90.04676713020378
Optimization terminated successfully (Exit mode 0)
Current function value: 90.04676713028597
Iterations: 24
Function evaluations: 272
Gradient evaluations: 24
Iteration: 1, Func. Count: 13, Neg. LLF: 96.05403924107726
Iteration: 2, Func. Count: 27, Neg. LLF: 100.9198831210684
Iteration: 3, Func. Count: 41, Neg. LLF: 90.30370086840493
Iteration: 4, Func. Count: 53, Neg. LLF: 90.22570997353537
Iteration: 5, Func. Count: 65, Neg. LLF: 93.72605170501598
Iteration: 6, Func. Count: 78, Neg. LLF: 90.34695601800956
Iteration: 7, Func. Count: 91, Neg. LLF: 90.34497682996323
Iteration: 8, Func. Count: 104, Neg. LLF: 90.16001214533155
Iteration: 9, Func. Count: 116, Neg. LLF: 90.15770337019484
Iteration: 10, Func. Count: 128, Neg. LLF: 90.15746220236426
Iteration: 11, Func. Count: 140, Neg. LLF: 90.1569889723738
Iteration: 12, Func. Count: 152, Neg. LLF: 90.15695779796302
Iteration: 13, Func. Count: 164, Neg. LLF: 90.15694661262532
Iteration: 14, Func. Count: 176, Neg. LLF: 90.15693252082217
Iteration: 15, Func. Count: 188, Neg. LLF: 90.15692878599468
Iteration: 16, Func. Count: 200, Neg. LLF: 90.15692700683189
Iteration: 17, Func. Count: 211, Neg. LLF: 90.15692700683513
Optimization terminated successfully (Exit mode 0)
Current function value: 90.15692700683189
Iterations: 17
Function evaluations: 211
Gradient evaluations: 17
Iteration: 1, Func. Count: 14, Neg. LLF: 96.3064069504895
Iteration: 2, Func. Count: 29, Neg. LLF: 105.9574925091613
Iteration: 3, Func. Count: 44, Neg. LLF: 90.52793047958656
Iteration: 4, Func. Count: 58, Neg. LLF: 90.78493730135418
Iteration: 5, Func. Count: 72, Neg. LLF: 92.18081268898581
Iteration: 6, Func. Count: 86, Neg. LLF: 90.91753156016361
Iteration: 7, Func. Count: 100, Neg. LLF: 90.13373144749906
Iteration: 8, Func. Count: 113, Neg. LLF: 90.89890107882637
Iteration: 9, Func. Count: 127, Neg. LLF: 90.07961302658325
Iteration: 10, Func. Count: 140, Neg. LLF: 90.05345280968419
Iteration: 11, Func. Count: 153, Neg. LLF: 90.04963246571558
Iteration: 12, Func. Count: 166, Neg. LLF: 90.04845492480015
Iteration: 13, Func. Count: 179, Neg. LLF: 90.04796478088934
Iteration: 14, Func. Count: 192, Neg. LLF: 90.04759165914469
Iteration: 15, Func. Count: 205, Neg. LLF: 89.98127031375718
Iteration: 16, Func. Count: 218, Neg. LLF: 89.91840290443633
Iteration: 17, Func. Count: 231, Neg. LLF: 89.79927179877022
Iteration: 18, Func. Count: 244, Neg. LLF: 89.99299890234148
Iteration: 19, Func. Count: 258, Neg. LLF: 89.75699497042817
Iteration: 20, Func. Count: 271, Neg. LLF: 89.7444324573756
Iteration: 21, Func. Count: 284, Neg. LLF: 89.74242604419034
Iteration: 22, Func. Count: 297, Neg. LLF: 89.74233902152294
Iteration: 23, Func. Count: 310, Neg. LLF: 89.74454546862147
Iteration: 24, Func. Count: 325, Neg. LLF: 89.74330131732744
Iteration: 25, Func. Count: 340, Neg. LLF: 89.74237116796552
Iteration: 26, Func. Count: 355, Neg. LLF: 89.74235115696098
Iteration: 27, Func. Count: 367, Neg. LLF: 89.74235113841623
Optimization terminated successfully (Exit mode 0)
Current function value: 89.74235115696098
Iterations: 28
Function evaluations: 367
Gradient evaluations: 27
Iteration: 1, Func. Count: 11, Neg. LLF: 122.43233277717212
Iteration: 2, Func. Count: 24, Neg. LLF: 101.70128003575925
Iteration: 3, Func. Count: 35, Neg. LLF: 90.50464429997444
Iteration: 4, Func. Count: 45, Neg. LLF: 90.83212532214478
Iteration: 5, Func. Count: 56, Neg. LLF: 130.0987276793426
Iteration: 6, Func. Count: 68, Neg. LLF: 90.30088548158714
Iteration: 7, Func. Count: 78, Neg. LLF: 90.23642251645033
Iteration: 8, Func. Count: 88, Neg. LLF: 90.23185214164138
Iteration: 9, Func. Count: 98, Neg. LLF: 90.23118204482064
Iteration: 10, Func. Count: 108, Neg. LLF: 90.23116588976998
Iteration: 11, Func. Count: 118, Neg. LLF: 90.23116518293749
Optimization terminated successfully (Exit mode 0)
Current function value: 90.23116518293749
Iterations: 11
Function evaluations: 118
Gradient evaluations: 11
Iteration: 1, Func. Count: 12, Neg. LLF: 106.1832632727982
Iteration: 2, Func. Count: 25, Neg. LLF: 90.55957943968666
Iteration: 3, Func. Count: 37, Neg. LLF: 90.36414368044494
Iteration: 4, Func. Count: 48, Neg. LLF: 90.36296431546153
Iteration: 5, Func. Count: 59, Neg. LLF: 90.3629451630431
Iteration: 6, Func. Count: 70, Neg. LLF: 90.36293875913883
Iteration: 7, Func. Count: 81, Neg. LLF: 90.36293718287773
Iteration: 8, Func. Count: 91, Neg. LLF: 90.36293718286235
Optimization terminated successfully (Exit mode 0)
Current function value: 90.36293718287773
Iterations: 8
Function evaluations: 91
Gradient evaluations: 8
Iteration: 1, Func. Count: 13, Neg. LLF: 97.37869272265175
Iteration: 2, Func. Count: 27, Neg. LLF: 98.75980957537769
Iteration: 3, Func. Count: 41, Neg. LLF: 90.31332752920552
Iteration: 4, Func. Count: 53, Neg. LLF: 90.38808007332864
Iteration: 5, Func. Count: 66, Neg. LLF: 90.27283325731344
Iteration: 6, Func. Count: 78, Neg. LLF: 91.58056509924414
Iteration: 7, Func. Count: 91, Neg. LLF: 92.37697721383087
Iteration: 8, Func. Count: 104, Neg. LLF: 90.20588554828791
Iteration: 9, Func. Count: 116, Neg. LLF: 90.20234027096487
Iteration: 10, Func. Count: 129, Neg. LLF: 90.19526252581218
Iteration: 11, Func. Count: 142, Neg. LLF: 90.17623456439
Iteration: 12, Func. Count: 154, Neg. LLF: 90.17260180233963
Iteration: 13, Func. Count: 166, Neg. LLF: 90.17041879867483
Iteration: 14, Func. Count: 178, Neg. LLF: 90.16203047544246
Iteration: 15, Func. Count: 190, Neg. LLF: 90.11365487358844
Iteration: 16, Func. Count: 202, Neg. LLF: 90.05310774529856
Iteration: 17, Func. Count: 214, Neg. LLF: 90.09958983604908
Iteration: 18, Func. Count: 227, Neg. LLF: 90.05695387741144
Iteration: 19, Func. Count: 240, Neg. LLF: 90.04682159732675
Iteration: 20, Func. Count: 252, Neg. LLF: 90.04676887403848
Iteration: 21, Func. Count: 264, Neg. LLF: 90.0467688310401
Optimization terminated successfully (Exit mode 0)
Current function value: 90.04676865099927
Iterations: 21
Function evaluations: 265
Gradient evaluations: 21
Iteration: 1, Func. Count: 14, Neg. LLF: 95.78862937278616
Iteration: 2, Func. Count: 29, Neg. LLF: 101.1741401909647
Iteration: 3, Func. Count: 44, Neg. LLF: 90.29891178652042
Iteration: 4, Func. Count: 57, Neg. LLF: 90.21278726151009
Iteration: 5, Func. Count: 70, Neg. LLF: 95.43374217873534
Iteration: 6, Func. Count: 84, Neg. LLF: 90.18087235133427
Iteration: 7, Func. Count: 97, Neg. LLF: 90.24159673057515
Iteration: 8, Func. Count: 111, Neg. LLF: 90.19462767004096
Iteration: 9, Func. Count: 125, Neg. LLF: 90.15701305334765
Iteration: 10, Func. Count: 138, Neg. LLF: 90.1569574952725
Iteration: 11, Func. Count: 151, Neg. LLF: 90.15693691212748
Iteration: 12, Func. Count: 164, Neg. LLF: 90.15693268620208
Iteration: 13, Func. Count: 177, Neg. LLF: 90.15692939990159
Iteration: 14, Func. Count: 190, Neg. LLF: 90.15688097076335
Iteration: 15, Func. Count: 203, Neg. LLF: 90.13025559558012
Iteration: 16, Func. Count: 216, Neg. LLF: 90.02673374619272
Iteration: 17, Func. Count: 229, Neg. LLF: 164.94796351802137
Iteration: 18, Func. Count: 246, Neg. LLF: 103.96576689771507
Iteration: 19, Func. Count: 261, Neg. LLF: 95.54558211832502
Iteration: 20, Func. Count: 275, Neg. LLF: 97.85723655488387
Iteration: 21, Func. Count: 289, Neg. LLF: 96.45225510662652
Iteration: 22, Func. Count: 303, Neg. LLF: 90.40445807484568
Iteration: 23, Func. Count: 317, Neg. LLF: 175.383605711178
Iteration: 24, Func. Count: 331, Neg. LLF: 96.86389845934907
Iteration: 25, Func. Count: 345, Neg. LLF: 90.13672420495473
Iteration: 26, Func. Count: 359, Neg. LLF: 89.35224548307761
Iteration: 27, Func. Count: 372, Neg. LLF: 89.7444107532964
Iteration: 28, Func. Count: 386, Neg. LLF: 89.34092687262344
Iteration: 29, Func. Count: 400, Neg. LLF: 89.29345521390405
Iteration: 30, Func. Count: 414, Neg. LLF: 89.24327015278867
Iteration: 31, Func. Count: 427, Neg. LLF: 89.24070040767546
Iteration: 32, Func. Count: 440, Neg. LLF: 89.23876700594067
Iteration: 33, Func. Count: 453, Neg. LLF: 89.23488046807252
Iteration: 34, Func. Count: 466, Neg. LLF: 89.2336216267784
Iteration: 35, Func. Count: 479, Neg. LLF: 89.23353894250506
Iteration: 36, Func. Count: 492, Neg. LLF: 89.23353718956226
Iteration: 37, Func. Count: 504, Neg. LLF: 89.23353715935713
Optimization terminated successfully (Exit mode 0)
Current function value: 89.23353718956226
Iterations: 38
Function evaluations: 504
Gradient evaluations: 37
Iteration: 1, Func. Count: 15, Neg. LLF: 96.26156506049152
Iteration: 2, Func. Count: 31, Neg. LLF: 106.51847998164696
Iteration: 3, Func. Count: 47, Neg. LLF: 90.54229542973295
Iteration: 4, Func. Count: 62, Neg. LLF: 91.01911918025093
Iteration: 5, Func. Count: 77, Neg. LLF: 92.46949371834695
Iteration: 6, Func. Count: 92, Neg. LLF: 90.96373437648131
Iteration: 7, Func. Count: 107, Neg. LLF: 90.16093965710083
Iteration: 8, Func. Count: 121, Neg. LLF: 90.74059739268493
Iteration: 9, Func. Count: 136, Neg. LLF: 90.11166251749574
Iteration: 10, Func. Count: 151, Neg. LLF: 90.05392904139967
Iteration: 11, Func. Count: 165, Neg. LLF: 90.0508193487882
Iteration: 12, Func. Count: 179, Neg. LLF: 90.04801393920201
Iteration: 13, Func. Count: 193, Neg. LLF: 90.04729207978944
Iteration: 14, Func. Count: 207, Neg. LLF: 90.04530470054108
Iteration: 15, Func. Count: 221, Neg. LLF: 90.04365182727663
Iteration: 16, Func. Count: 235, Neg. LLF: 90.03995121794331
Iteration: 17, Func. Count: 249, Neg. LLF: 90.03705498845856
Iteration: 18, Func. Count: 263, Neg. LLF: 90.0368414513083
Iteration: 19, Func. Count: 278, Neg. LLF: 90.03593981892723
Iteration: 20, Func. Count: 292, Neg. LLF: 90.03592765776527
Iteration: 21, Func. Count: 306, Neg. LLF: 90.03592084820063
Iteration: 22, Func. Count: 319, Neg. LLF: 90.03592084816285
Optimization terminated successfully (Exit mode 0)
Current function value: 90.03592084820063
Iterations: 22
Function evaluations: 319
Gradient evaluations: 22
Iteration: 1, Func. Count: 8, Neg. LLF: 121.31415878232679
Iteration: 2, Func. Count: 18, Neg. LLF: 106.7023456087918
Iteration: 3, Func. Count: 26, Neg. LLF: 90.43072546272889
Iteration: 4, Func. Count: 33, Neg. LLF: 91.00433049010401
Iteration: 5, Func. Count: 41, Neg. LLF: 142.75643223658247
Iteration: 6, Func. Count: 50, Neg. LLF: 90.37637715494508
Iteration: 7, Func. Count: 57, Neg. LLF: 90.3609328434335
Iteration: 8, Func. Count: 64, Neg. LLF: 90.3607220345937
Iteration: 9, Func. Count: 71, Neg. LLF: 90.36071784149581
Iteration: 10, Func. Count: 77, Neg. LLF: 90.360717854598
Optimization terminated successfully (Exit mode 0)
Current function value: 90.36071784149581
Iterations: 10
Function evaluations: 77
Gradient evaluations: 10
Iteration: 1, Func. Count: 9, Neg. LLF: 98.72434987940815
Iteration: 2, Func. Count: 19, Neg. LLF: 90.4245308375388
Iteration: 3, Func. Count: 28, Neg. LLF: 90.36296297435436
Iteration: 4, Func. Count: 36, Neg. LLF: 90.36295927897241
Iteration: 5, Func. Count: 43, Neg. LLF: 90.36295927896924
Optimization terminated successfully (Exit mode 0)
Current function value: 90.36295927897241
Iterations: 5
Function evaluations: 43
Gradient evaluations: 5
Iteration: 1, Func. Count: 10, Neg. LLF: 103.72138708514946
Iteration: 2, Func. Count: 21, Neg. LLF: 90.43014589852964
Iteration: 3, Func. Count: 31, Neg. LLF: 90.36421924686071
Iteration: 4, Func. Count: 40, Neg. LLF: 90.36419490330222
Iteration: 5, Func. Count: 49, Neg. LLF: 90.36407164309416
Iteration: 6, Func. Count: 58, Neg. LLF: 90.36381619792436
Iteration: 7, Func. Count: 67, Neg. LLF: 90.36330606599819
Iteration: 8, Func. Count: 76, Neg. LLF: 90.36310918414488
Iteration: 9, Func. Count: 85, Neg. LLF: 90.36292205745936
Iteration: 10, Func. Count: 93, Neg. LLF: 90.36292205756298
Optimization terminated successfully (Exit mode 0)
Current function value: 90.36292205745936
Iterations: 10
Function evaluations: 93
Gradient evaluations: 10
Iteration: 1, Func. Count: 11, Neg. LLF: 118.89715623470246
Iteration: 2, Func. Count: 24, Neg. LLF: 90.42395614006048
Iteration: 3, Func. Count: 35, Neg. LLF: 90.364308289605
Iteration: 4, Func. Count: 45, Neg. LLF: 90.36428991699145
Iteration: 5, Func. Count: 55, Neg. LLF: 90.36424427213107
Iteration: 6, Func. Count: 65, Neg. LLF: 90.36411624519735
Iteration: 7, Func. Count: 75, Neg. LLF: 90.3638672567174
Iteration: 8, Func. Count: 85, Neg. LLF: 90.36369690423173
Iteration: 9, Func. Count: 95, Neg. LLF: 90.36353374012198
Iteration: 10, Func. Count: 105, Neg. LLF: 90.36348882801978
Iteration: 11, Func. Count: 115, Neg. LLF: 90.36294656014095
Iteration: 12, Func. Count: 125, Neg. LLF: 90.35353810835602
Iteration: 13, Func. Count: 135, Neg. LLF: 90.3491796681876
Iteration: 14, Func. Count: 145, Neg. LLF: 90.32317678416386
Iteration: 15, Func. Count: 155, Neg. LLF: 90.57292370138441
Iteration: 16, Func. Count: 166, Neg. LLF: 118.09003994223988
Iteration: 17, Func. Count: 178, Neg. LLF: 97.47680566929442
Iteration: 18, Func. Count: 190, Neg. LLF: 90.26174800271228
Iteration: 19, Func. Count: 200, Neg. LLF: 90.64527677389938
Iteration: 20, Func. Count: 211, Neg. LLF: 91.85339307481989
Iteration: 21, Func. Count: 222, Neg. LLF: 90.29927176903551
Iteration: 22, Func. Count: 233, Neg. LLF: 90.21375772054833
Iteration: 23, Func. Count: 244, Neg. LLF: 90.20449425130633
Iteration: 24, Func. Count: 254, Neg. LLF: 90.2044418080218
Iteration: 25, Func. Count: 264, Neg. LLF: 90.20440327273214
Iteration: 26, Func. Count: 274, Neg. LLF: 90.2044027776686
Optimization terminated successfully (Exit mode 0)
Current function value: 90.2044027776686
Iterations: 27
Function evaluations: 274
Gradient evaluations: 26
Iteration: 1, Func. Count: 12, Neg. LLF: 93.19918608607558
Iteration: 2, Func. Count: 25, Neg. LLF: 90.45856552033541
Iteration: 3, Func. Count: 37, Neg. LLF: 90.36545971849937
Iteration: 4, Func. Count: 48, Neg. LLF: 90.36539296544588
Iteration: 5, Func. Count: 59, Neg. LLF: 90.36499444853065
Iteration: 6, Func. Count: 70, Neg. LLF: 90.36407582745522
Iteration: 7, Func. Count: 81, Neg. LLF: 90.36406095496349
Iteration: 8, Func. Count: 92, Neg. LLF: 90.36398688628879
Iteration: 9, Func. Count: 103, Neg. LLF: 90.36350216653099
Iteration: 10, Func. Count: 114, Neg. LLF: 90.3633201060718
Iteration: 11, Func. Count: 125, Neg. LLF: 90.36321110425256
Iteration: 12, Func. Count: 136, Neg. LLF: 90.36229952381504
Iteration: 13, Func. Count: 147, Neg. LLF: 90.35585867407323
Iteration: 14, Func. Count: 158, Neg. LLF: 92.69717336362193
Iteration: 15, Func. Count: 172, Neg. LLF: 95.10045694567864
Iteration: 16, Func. Count: 185, Neg. LLF: 97.20620369001253
Iteration: 17, Func. Count: 198, Neg. LLF: 90.4467610887643
Iteration: 18, Func. Count: 210, Neg. LLF: 90.55972184030495
Iteration: 19, Func. Count: 222, Neg. LLF: 92.90896834938772
Iteration: 20, Func. Count: 234, Neg. LLF: 91.67686571777242
Iteration: 21, Func. Count: 246, Neg. LLF: 91.44171915786922
Iteration: 22, Func. Count: 258, Neg. LLF: 90.39779428798877
Iteration: 23, Func. Count: 270, Neg. LLF: 90.29843621362718
Iteration: 24, Func. Count: 282, Neg. LLF: 90.21701189433969
Iteration: 25, Func. Count: 293, Neg. LLF: 90.22528380198506
Iteration: 26, Func. Count: 305, Neg. LLF: 90.2074899167378
Iteration: 27, Func. Count: 316, Neg. LLF: 90.20488502138616
Iteration: 28, Func. Count: 327, Neg. LLF: 90.20443068867363
Iteration: 29, Func. Count: 338, Neg. LLF: 90.20440291047896
Iteration: 30, Func. Count: 348, Neg. LLF: 90.20440293349952
Optimization terminated successfully (Exit mode 0)
Current function value: 90.20440291047896
Iterations: 31
Function evaluations: 348
Gradient evaluations: 30
Iteration: 1, Func. Count: 9, Neg. LLF: 118.42534677498215
Iteration: 2, Func. Count: 20, Neg. LLF: 99.55699217564344
Iteration: 3, Func. Count: 29, Neg. LLF: 90.36939446957233
Iteration: 4, Func. Count: 37, Neg. LLF: 91.1062903294951
Iteration: 5, Func. Count: 46, Neg. LLF: 90.31074468415004
Iteration: 6, Func. Count: 55, Neg. LLF: 94.54512805653653
Iteration: 7, Func. Count: 65, Neg. LLF: 90.28686416499687
Iteration: 8, Func. Count: 73, Neg. LLF: 90.28317429617944
Iteration: 9, Func. Count: 81, Neg. LLF: 90.28521128159836
Iteration: 10, Func. Count: 90, Neg. LLF: 90.28309042727614
Iteration: 11, Func. Count: 97, Neg. LLF: 90.28309042733127
Optimization terminated successfully (Exit mode 0)
Current function value: 90.28309042727614
Iterations: 11
Function evaluations: 97
Gradient evaluations: 11
Iteration: 1, Func. Count: 10, Neg. LLF: 95.6973012121366
Iteration: 2, Func. Count: 21, Neg. LLF: 90.44755853925007
Iteration: 3, Func. Count: 31, Neg. LLF: 90.36332130535905
Iteration: 4, Func. Count: 40, Neg. LLF: 90.36292816445712
Iteration: 5, Func. Count: 49, Neg. LLF: 90.36292161208796
Iteration: 6, Func. Count: 57, Neg. LLF: 90.36292161206592
Optimization terminated successfully (Exit mode 0)
Current function value: 90.36292161208796
Iterations: 6
Function evaluations: 57
Gradient evaluations: 6
Iteration: 1, Func. Count: 11, Neg. LLF: 99.08592954283093
Iteration: 2, Func. Count: 23, Neg. LLF: 93.594648253575
Iteration: 3, Func. Count: 35, Neg. LLF: 90.34618236505865
Iteration: 4, Func. Count: 45, Neg. LLF: 90.29442710234791
Iteration: 5, Func. Count: 55, Neg. LLF: 90.2804781213014
Iteration: 6, Func. Count: 65, Neg. LLF: 90.26635214257594
Iteration: 7, Func. Count: 75, Neg. LLF: 90.25435774432029
Iteration: 8, Func. Count: 85, Neg. LLF: 90.5477030215522
Iteration: 9, Func. Count: 96, Neg. LLF: 90.39988895562425
Iteration: 10, Func. Count: 107, Neg. LLF: 90.19349723971307
Iteration: 11, Func. Count: 117, Neg. LLF: 192.83090957224937
Iteration: 12, Func. Count: 129, Neg. LLF: 90.62368373978218
Iteration: 13, Func. Count: 141, Neg. LLF: 90.10421480458143
Iteration: 14, Func. Count: 151, Neg. LLF: 90.11045291176006
Iteration: 15, Func. Count: 162, Neg. LLF: 90.05547338457566
Iteration: 16, Func. Count: 172, Neg. LLF: 90.04806288303834
Iteration: 17, Func. Count: 182, Neg. LLF: 90.0474763497661
Iteration: 18, Func. Count: 192, Neg. LLF: 90.04739587179445
Iteration: 19, Func. Count: 202, Neg. LLF: 90.04739370696281
Iteration: 20, Func. Count: 211, Neg. LLF: 90.04739370711383
Optimization terminated successfully (Exit mode 0)
Current function value: 90.04739370696281
Iterations: 20
Function evaluations: 211
Gradient evaluations: 20
Iteration: 1, Func. Count: 12, Neg. LLF: 98.26584432624276
Iteration: 2, Func. Count: 25, Neg. LLF: 99.64603199269729
Iteration: 3, Func. Count: 38, Neg. LLF: 90.32602218576865
Iteration: 4, Func. Count: 49, Neg. LLF: 90.31585266887238
Iteration: 5, Func. Count: 60, Neg. LLF: 90.3554894929111
Iteration: 6, Func. Count: 72, Neg. LLF: 90.27888018828412
Iteration: 7, Func. Count: 83, Neg. LLF: 90.12918602235908
Iteration: 8, Func. Count: 94, Neg. LLF: 89.86405640866379
Iteration: 9, Func. Count: 105, Neg. LLF: 90.52997763242612
Iteration: 10, Func. Count: 117, Neg. LLF: 90.37057488963313
Iteration: 11, Func. Count: 129, Neg. LLF: 90.01874751076627
Iteration: 12, Func. Count: 141, Neg. LLF: 89.70894286391663
Iteration: 13, Func. Count: 153, Neg. LLF: 89.6113933218871
Iteration: 14, Func. Count: 165, Neg. LLF: 89.42581035287658
Iteration: 15, Func. Count: 176, Neg. LLF: 89.43845418822141
Iteration: 16, Func. Count: 188, Neg. LLF: 89.4042551876136
Iteration: 17, Func. Count: 200, Neg. LLF: 89.3139099885082
Iteration: 18, Func. Count: 211, Neg. LLF: 89.29877286808906
Iteration: 19, Func. Count: 222, Neg. LLF: 89.2976953121803
Iteration: 20, Func. Count: 233, Neg. LLF: 89.29696207874564
Iteration: 21, Func. Count: 244, Neg. LLF: 89.29696008732076
Iteration: 22, Func. Count: 254, Neg. LLF: 89.29696006792605
Optimization terminated successfully (Exit mode 0)
Current function value: 89.29696008732076
Iterations: 22
Function evaluations: 254
Gradient evaluations: 22
Iteration: 1, Func. Count: 13, Neg. LLF: 101.02970794021881
Iteration: 2, Func. Count: 27, Neg. LLF: 90.62860566927993
Iteration: 3, Func. Count: 40, Neg. LLF: 90.40867650963675
Iteration: 4, Func. Count: 53, Neg. LLF: 90.25504099093419
Iteration: 5, Func. Count: 65, Neg. LLF: 90.44845818736317
Iteration: 6, Func. Count: 78, Neg. LLF: 90.19268950730886
Iteration: 7, Func. Count: 90, Neg. LLF: 90.25286785154348
Iteration: 8, Func. Count: 103, Neg. LLF: 90.20748944786105
Iteration: 9, Func. Count: 116, Neg. LLF: 90.15301236912092
Iteration: 10, Func. Count: 129, Neg. LLF: 90.08343309867807
Iteration: 11, Func. Count: 142, Neg. LLF: 90.05358953536641
Iteration: 12, Func. Count: 154, Neg. LLF: 90.04868242838816
Iteration: 13, Func. Count: 166, Neg. LLF: 90.04781664154406
Iteration: 14, Func. Count: 178, Neg. LLF: 90.04750906806855
Iteration: 15, Func. Count: 190, Neg. LLF: 90.04740216208334
Iteration: 16, Func. Count: 202, Neg. LLF: 90.04739360738672
Iteration: 17, Func. Count: 213, Neg. LLF: 90.04739360764394
Optimization terminated successfully (Exit mode 0)
Current function value: 90.04739360738672
Iterations: 17
Function evaluations: 213
Gradient evaluations: 17
Iteration: 1, Func. Count: 10, Neg. LLF: 120.87018764284593
Iteration: 2, Func. Count: 22, Neg. LLF: 100.75054875449246
Iteration: 3, Func. Count: 32, Neg. LLF: 90.51507069910882
Iteration: 4, Func. Count: 41, Neg. LLF: 95.07914032304946
Iteration: 5, Func. Count: 51, Neg. LLF: 94.30444186615225
Iteration: 6, Func. Count: 61, Neg. LLF: 140.83178268389275
Iteration: 7, Func. Count: 72, Neg. LLF: 90.3939823280584
Iteration: 8, Func. Count: 82, Neg. LLF: 90.29753181626765
Iteration: 9, Func. Count: 91, Neg. LLF: 90.28423649491428
Iteration: 10, Func. Count: 100, Neg. LLF: 90.28351290114081
Iteration: 11, Func. Count: 109, Neg. LLF: 90.28315703258356
Iteration: 12, Func. Count: 118, Neg. LLF: 90.28309484902091
Iteration: 13, Func. Count: 127, Neg. LLF: 90.2830902294135
Iteration: 14, Func. Count: 135, Neg. LLF: 90.28309031662589
Optimization terminated successfully (Exit mode 0)
Current function value: 90.2830902294135
Iterations: 14
Function evaluations: 135
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 103.94828062392524
Iteration: 2, Func. Count: 23, Neg. LLF: 90.53152982894152
Iteration: 3, Func. Count: 34, Neg. LLF: 90.3629683935364
Iteration: 4, Func. Count: 44, Neg. LLF: 90.36293162576938
Iteration: 5, Func. Count: 53, Neg. LLF: 90.36293162571312
Optimization terminated successfully (Exit mode 0)
Current function value: 90.36293162576938
Iterations: 5
Function evaluations: 53
Gradient evaluations: 5
Iteration: 1, Func. Count: 12, Neg. LLF: 98.08983260711788
Iteration: 2, Func. Count: 25, Neg. LLF: 98.00936658267676
Iteration: 3, Func. Count: 38, Neg. LLF: 90.32258549835313
Iteration: 4, Func. Count: 49, Neg. LLF: 90.39604505205128
Iteration: 5, Func. Count: 61, Neg. LLF: 90.27048886613537
Iteration: 6, Func. Count: 72, Neg. LLF: 91.06514995110038
Iteration: 7, Func. Count: 84, Neg. LLF: 94.303196010438
Iteration: 8, Func. Count: 96, Neg. LLF: 90.20708619136155
Iteration: 9, Func. Count: 107, Neg. LLF: 90.18862010296544
Iteration: 10, Func. Count: 118, Neg. LLF: 90.17635753135531
Iteration: 11, Func. Count: 129, Neg. LLF: 90.17134341342084
Iteration: 12, Func. Count: 140, Neg. LLF: 90.16532819691469
Iteration: 13, Func. Count: 151, Neg. LLF: 90.11932232894394
Iteration: 14, Func. Count: 162, Neg. LLF: 90.09944042308975
Iteration: 15, Func. Count: 173, Neg. LLF: 90.05586760526243
Iteration: 16, Func. Count: 184, Neg. LLF: 90.06623618997388
Iteration: 17, Func. Count: 196, Neg. LLF: 90.04754474194594
Iteration: 18, Func. Count: 207, Neg. LLF: 90.04739551036246
Iteration: 19, Func. Count: 218, Neg. LLF: 90.04739359916329
Iteration: 20, Func. Count: 228, Neg. LLF: 90.04739359907713
Optimization terminated successfully (Exit mode 0)
Current function value: 90.04739359916329
Iterations: 20
Function evaluations: 228
Gradient evaluations: 20
Iteration: 1, Func. Count: 13, Neg. LLF: 96.28879565691165
Iteration: 2, Func. Count: 27, Neg. LLF: 100.40805939740812
Iteration: 3, Func. Count: 41, Neg. LLF: 90.30824304003843
Iteration: 4, Func. Count: 53, Neg. LLF: 90.22629387920713
Iteration: 5, Func. Count: 65, Neg. LLF: 93.8495348028418
Iteration: 6, Func. Count: 78, Neg. LLF: 90.34304884972514
Iteration: 7, Func. Count: 91, Neg. LLF: 90.64462127072764
Iteration: 8, Func. Count: 104, Neg. LLF: 90.8371657077035
Iteration: 9, Func. Count: 117, Neg. LLF: 90.27238369188467
Iteration: 10, Func. Count: 130, Neg. LLF: 89.94180046846563
Iteration: 11, Func. Count: 142, Neg. LLF: 91.33624169901789
Iteration: 12, Func. Count: 155, Neg. LLF: 89.5708972039817
Iteration: 13, Func. Count: 167, Neg. LLF: 90.42579013005601
Iteration: 14, Func. Count: 180, Neg. LLF: 89.59492342602653
Iteration: 15, Func. Count: 193, Neg. LLF: 89.48734345813804
Iteration: 16, Func. Count: 206, Neg. LLF: 89.39751241535025
Iteration: 17, Func. Count: 218, Neg. LLF: 89.38877126318695
Iteration: 18, Func. Count: 230, Neg. LLF: 89.38056084201064
Iteration: 19, Func. Count: 242, Neg. LLF: 89.35942167090798
Iteration: 20, Func. Count: 254, Neg. LLF: 89.32387392034113
Iteration: 21, Func. Count: 266, Neg. LLF: 89.26050084434539
Iteration: 22, Func. Count: 278, Neg. LLF: 89.24520594462199
Iteration: 23, Func. Count: 290, Neg. LLF: 89.24517906810729
Iteration: 24, Func. Count: 303, Neg. LLF: 89.24293455394437
Iteration: 25, Func. Count: 315, Neg. LLF: 89.24242788942018
Iteration: 26, Func. Count: 327, Neg. LLF: 89.24240891177315
Iteration: 27, Func. Count: 339, Neg. LLF: 89.24240558332615
Optimization terminated successfully (Exit mode 0)
Current function value: 89.24240890593289
Iterations: 27
Function evaluations: 349
Gradient evaluations: 27
Iteration: 1, Func. Count: 14, Neg. LLF: 94.7700765787929
Iteration: 2, Func. Count: 29, Neg. LLF: 104.69610483213492
Iteration: 3, Func. Count: 44, Neg. LLF: 90.30371249780742
Iteration: 4, Func. Count: 57, Neg. LLF: 90.34339044034316
Iteration: 5, Func. Count: 71, Neg. LLF: 90.41387012131669
Iteration: 6, Func. Count: 85, Neg. LLF: 90.21038162116031
Iteration: 7, Func. Count: 98, Neg. LLF: 90.72436740100521
Iteration: 8, Func. Count: 112, Neg. LLF: 90.48425017860643
Iteration: 9, Func. Count: 126, Neg. LLF: 90.1905401708984
Iteration: 10, Func. Count: 140, Neg. LLF: 90.0998985422288
Iteration: 11, Func. Count: 153, Neg. LLF: 90.27198043233967
Iteration: 12, Func. Count: 167, Neg. LLF: 90.08322468406753
Iteration: 13, Func. Count: 180, Neg. LLF: 90.06062766571301
Iteration: 14, Func. Count: 193, Neg. LLF: 90.05468780186963
Iteration: 15, Func. Count: 206, Neg. LLF: 90.05119326723467
Iteration: 16, Func. Count: 219, Neg. LLF: 90.0502212624719
Iteration: 17, Func. Count: 232, Neg. LLF: 90.0479747379561
Iteration: 18, Func. Count: 245, Neg. LLF: 90.0474745140413
Iteration: 19, Func. Count: 258, Neg. LLF: 90.04740832244566
Iteration: 20, Func. Count: 271, Neg. LLF: 90.04739600024878
Iteration: 21, Func. Count: 284, Neg. LLF: 90.04739385117931
Iteration: 22, Func. Count: 296, Neg. LLF: 90.04739385140113
Optimization terminated successfully (Exit mode 0)
Current function value: 90.04739385117931
Iterations: 22
Function evaluations: 296
Gradient evaluations: 22
Iteration: 1, Func. Count: 11, Neg. LLF: 116.56534434887512
Iteration: 2, Func. Count: 24, Neg. LLF: 95.21961567358943
Iteration: 3, Func. Count: 35, Neg. LLF: 90.88195739329578
Iteration: 4, Func. Count: 46, Neg. LLF: 93.11174256030672
Iteration: 5, Func. Count: 57, Neg. LLF: 98.55028415783605
Iteration: 6, Func. Count: 68, Neg. LLF: 94.15618735886056
Iteration: 7, Func. Count: 79, Neg. LLF: 90.4602232557441
Iteration: 8, Func. Count: 90, Neg. LLF: 90.20683521710288
Iteration: 9, Func. Count: 100, Neg. LLF: 90.53980410148118
Iteration: 10, Func. Count: 111, Neg. LLF: 90.20200565572199
Iteration: 11, Func. Count: 121, Neg. LLF: 90.20160885572496
Iteration: 12, Func. Count: 131, Neg. LLF: 90.20136251272297
Iteration: 13, Func. Count: 141, Neg. LLF: 90.2013382846776
Iteration: 14, Func. Count: 151, Neg. LLF: 90.20133538298367
Iteration: 15, Func. Count: 160, Neg. LLF: 90.20133538298548
Optimization terminated successfully (Exit mode 0)
Current function value: 90.20133538298367
Iterations: 15
Function evaluations: 160
Gradient evaluations: 15
Iteration: 1, Func. Count: 12, Neg. LLF: 101.60116870982625
Iteration: 2, Func. Count: 25, Neg. LLF: 90.52857179896964
Iteration: 3, Func. Count: 37, Neg. LLF: 90.36345861914933
Iteration: 4, Func. Count: 48, Neg. LLF: 90.36293657635478
Iteration: 5, Func. Count: 59, Neg. LLF: 90.36293281788826
Iteration: 6, Func. Count: 70, Neg. LLF: 90.36293224383321
Optimization terminated successfully (Exit mode 0)
Current function value: 90.36293224383321
Iterations: 6
Function evaluations: 70
Gradient evaluations: 6
Iteration: 1, Func. Count: 13, Neg. LLF: 97.12764977785385
Iteration: 2, Func. Count: 27, Neg. LLF: 99.08672371749056
Iteration: 3, Func. Count: 41, Neg. LLF: 90.31046582942191
Iteration: 4, Func. Count: 53, Neg. LLF: 90.4127028858855
Iteration: 5, Func. Count: 66, Neg. LLF: 90.51326524885249
Iteration: 6, Func. Count: 79, Neg. LLF: 90.2312170641041
Iteration: 7, Func. Count: 91, Neg. LLF: 90.88957845482831
Iteration: 8, Func. Count: 104, Neg. LLF: 90.20527293783117
Iteration: 9, Func. Count: 116, Neg. LLF: 90.18886178938827
Iteration: 10, Func. Count: 128, Neg. LLF: 90.18075757613455
Iteration: 11, Func. Count: 140, Neg. LLF: 90.1750981085727
Iteration: 12, Func. Count: 152, Neg. LLF: 90.17135668081804
Iteration: 13, Func. Count: 164, Neg. LLF: 90.16761748156162
Iteration: 14, Func. Count: 176, Neg. LLF: 90.14222161379479
Iteration: 15, Func. Count: 188, Neg. LLF: 90.13325579156734
Iteration: 16, Func. Count: 201, Neg. LLF: 90.2128150697239
Iteration: 17, Func. Count: 214, Neg. LLF: 90.05110538998682
Iteration: 18, Func. Count: 226, Neg. LLF: 90.05246110595145
Iteration: 19, Func. Count: 239, Neg. LLF: 90.04683412066659
Iteration: 20, Func. Count: 251, Neg. LLF: 90.04677681733773
Iteration: 21, Func. Count: 263, Neg. LLF: 90.04676781622587
Iteration: 22, Func. Count: 275, Neg. LLF: 90.04676699180636
Optimization terminated successfully (Exit mode 0)
Current function value: 90.04676699180636
Iterations: 22
Function evaluations: 275
Gradient evaluations: 22
Iteration: 1, Func. Count: 14, Neg. LLF: 95.62427493915366
Iteration: 2, Func. Count: 29, Neg. LLF: 101.60547347278525
Iteration: 3, Func. Count: 44, Neg. LLF: 90.2981643065206
Iteration: 4, Func. Count: 57, Neg. LLF: 90.22383233770583
Iteration: 5, Func. Count: 70, Neg. LLF: 95.36631301366558
Iteration: 6, Func. Count: 84, Neg. LLF: 95.03325597615158
Iteration: 7, Func. Count: 99, Neg. LLF: 90.4311960185805
Iteration: 8, Func. Count: 113, Neg. LLF: 90.45762807470216
Iteration: 9, Func. Count: 127, Neg. LLF: 89.78119736499326
Iteration: 10, Func. Count: 140, Neg. LLF: 89.6658418316609
Iteration: 11, Func. Count: 153, Neg. LLF: 89.62251491934708
Iteration: 12, Func. Count: 166, Neg. LLF: 89.56972226579312
Iteration: 13, Func. Count: 179, Neg. LLF: 89.52260994816889
Iteration: 14, Func. Count: 192, Neg. LLF: 89.68168314863748
Iteration: 15, Func. Count: 206, Neg. LLF: 89.74262155510098
Iteration: 16, Func. Count: 220, Neg. LLF: 89.36224673822706
Iteration: 17, Func. Count: 233, Neg. LLF: 89.3571502893581
Iteration: 18, Func. Count: 246, Neg. LLF: 89.34975025632731
Iteration: 19, Func. Count: 259, Neg. LLF: 89.33803734979499
Iteration: 20, Func. Count: 272, Neg. LLF: 89.30896973468352
Iteration: 21, Func. Count: 285, Neg. LLF: 89.25619629884498
Iteration: 22, Func. Count: 298, Neg. LLF: 89.27180370269949
Iteration: 23, Func. Count: 312, Neg. LLF: 89.24273961229099
Iteration: 24, Func. Count: 325, Neg. LLF: 89.24240030280116
Iteration: 25, Func. Count: 338, Neg. LLF: 89.24241734686706
Iteration: 26, Func. Count: 351, Neg. LLF: 89.24239391789649
Iteration: 27, Func. Count: 364, Neg. LLF: 89.24239320202146
Iteration: 28, Func. Count: 387, Neg. LLF: 89.24243517920759
Iteration: 29, Func. Count: 402, Neg. LLF: 89.24245437422735
Iteration: 30, Func. Count: 418, Neg. LLF: 89.24242951199241
Iteration: 31, Func. Count: 433, Neg. LLF: 89.24240944282465
Iteration: 32, Func. Count: 447, Neg. LLF: 89.24240942517538
Iteration: 33, Func. Count: 459, Neg. LLF: 89.24240939337272
Optimization terminated successfully (Exit mode 0)
Current function value: 89.24240942517538
Iterations: 34
Function evaluations: 459
Gradient evaluations: 33
Iteration: 1, Func. Count: 15, Neg. LLF: 96.36210171439915
Iteration: 2, Func. Count: 31, Neg. LLF: 107.13569670275803
Iteration: 3, Func. Count: 47, Neg. LLF: 91.60446598593266
Iteration: 4, Func. Count: 62, Neg. LLF: 91.7098232504184
Iteration: 5, Func. Count: 77, Neg. LLF: 91.73645587583302
Iteration: 6, Func. Count: 92, Neg. LLF: 92.12240756003209
Iteration: 7, Func. Count: 107, Neg. LLF: 90.53252106937211
Iteration: 8, Func. Count: 122, Neg. LLF: 90.07126004989516
Iteration: 9, Func. Count: 136, Neg. LLF: 90.06356313906123
Iteration: 10, Func. Count: 150, Neg. LLF: 90.04370333744887
Iteration: 11, Func. Count: 164, Neg. LLF: 89.90721675723594
Iteration: 12, Func. Count: 178, Neg. LLF: 89.84966662546029
Iteration: 13, Func. Count: 192, Neg. LLF: 89.75841811436375
Iteration: 14, Func. Count: 206, Neg. LLF: 89.76206090096208
Iteration: 15, Func. Count: 221, Neg. LLF: 89.74465280363229
Iteration: 16, Func. Count: 235, Neg. LLF: 89.7424126175249
Iteration: 17, Func. Count: 249, Neg. LLF: 89.74234992193924
Iteration: 18, Func. Count: 263, Neg. LLF: 89.7436599598085
Iteration: 19, Func. Count: 279, Neg. LLF: 89.74237164245991
Iteration: 20, Func. Count: 295, Neg. LLF: 89.74235351988332
Optimization terminated successfully (Exit mode 0)
Current function value: 89.74234993095763
Iterations: 21
Function evaluations: 297
Gradient evaluations: 20
Iteration: 1, Func. Count: 12, Neg. LLF: 119.07219337958203
Iteration: 2, Func. Count: 26, Neg. LLF: 105.24280272921553
Iteration: 3, Func. Count: 38, Neg. LLF: 96.81643821371698
Iteration: 4, Func. Count: 50, Neg. LLF: 112.38652119533695
Iteration: 5, Func. Count: 62, Neg. LLF: 193.60549021705833
Iteration: 6, Func. Count: 74, Neg. LLF: 90.04139764274461
Iteration: 7, Func. Count: 85, Neg. LLF: 90.95492169530104
Iteration: 8, Func. Count: 97, Neg. LLF: 91.79840827776398
Iteration: 9, Func. Count: 110, Neg. LLF: 90.25357684239599
Iteration: 10, Func. Count: 122, Neg. LLF: 89.9248980477912
Iteration: 11, Func. Count: 134, Neg. LLF: 89.9575329848624
Iteration: 12, Func. Count: 146, Neg. LLF: 89.90882535885412
Iteration: 13, Func. Count: 157, Neg. LLF: 89.90878910565593
Iteration: 14, Func. Count: 168, Neg. LLF: 89.90878125325972
Iteration: 15, Func. Count: 179, Neg. LLF: 89.90877754501898
Iteration: 16, Func. Count: 190, Neg. LLF: 89.90877343172647
Iteration: 17, Func. Count: 200, Neg. LLF: 89.90877343174063
Optimization terminated successfully (Exit mode 0)
Current function value: 89.90877343172647
Iterations: 17
Function evaluations: 200
Gradient evaluations: 17
Iteration: 1, Func. Count: 13, Neg. LLF: 95.50948242056718
Iteration: 2, Func. Count: 27, Neg. LLF: 12225041.81800413
Iteration: 3, Func. Count: 40, Neg. LLF: 4357970.399551444
Iteration: 4, Func. Count: 54, Neg. LLF: 90.49857800136704
Iteration: 5, Func. Count: 67, Neg. LLF: 90.08011130448942
Iteration: 6, Func. Count: 79, Neg. LLF: 93.86605093726163
Iteration: 7, Func. Count: 92, Neg. LLF: 90.00594018364527
Iteration: 8, Func. Count: 104, Neg. LLF: 93.11231778675112
Iteration: 9, Func. Count: 117, Neg. LLF: 89.86663318004062
Iteration: 10, Func. Count: 129, Neg. LLF: 91.62645217531826
Iteration: 11, Func. Count: 142, Neg. LLF: 89.84043581860332
Iteration: 12, Func. Count: 154, Neg. LLF: 89.82825183902956
Iteration: 13, Func. Count: 166, Neg. LLF: 90.70917141547072
Iteration: 14, Func. Count: 179, Neg. LLF: 89.80969757692645
Iteration: 15, Func. Count: 192, Neg. LLF: 89.74517753269032
Iteration: 16, Func. Count: 204, Neg. LLF: 89.69618807859649
Iteration: 17, Func. Count: 216, Neg. LLF: 89.67260814818277
Iteration: 18, Func. Count: 228, Neg. LLF: 89.6624302141215
Iteration: 19, Func. Count: 240, Neg. LLF: 89.66133237682901
Iteration: 20, Func. Count: 252, Neg. LLF: 89.66058475119411
Iteration: 21, Func. Count: 264, Neg. LLF: 89.66038172161484
Iteration: 22, Func. Count: 276, Neg. LLF: 89.66028590851846
Iteration: 23, Func. Count: 288, Neg. LLF: 89.6602819228597
Iteration: 24, Func. Count: 299, Neg. LLF: 89.66028191376873
Optimization terminated successfully (Exit mode 0)
Current function value: 89.6602819228597
Iterations: 24
Function evaluations: 299
Gradient evaluations: 24
Iteration: 1, Func. Count: 14, Neg. LLF: 93.28755076668165
Iteration: 2, Func. Count: 29, Neg. LLF: 162.95044625252046
Iteration: 3, Func. Count: 43, Neg. LLF: 95.51493000479383
Iteration: 4, Func. Count: 58, Neg. LLF: 90.36418215597817
Iteration: 5, Func. Count: 72, Neg. LLF: 91.00518799560444
Iteration: 6, Func. Count: 86, Neg. LLF: 92.62195175654007
Iteration: 7, Func. Count: 100, Neg. LLF: 90.29801612980336
Iteration: 8, Func. Count: 114, Neg. LLF: 90.00966288588536
Iteration: 9, Func. Count: 128, Neg. LLF: 89.86181129670649
Iteration: 10, Func. Count: 141, Neg. LLF: 89.9675376286284
Iteration: 11, Func. Count: 155, Neg. LLF: 89.9288519033583
Iteration: 12, Func. Count: 169, Neg. LLF: 89.82495767484757
Iteration: 13, Func. Count: 182, Neg. LLF: 89.79710048111495
Iteration: 14, Func. Count: 195, Neg. LLF: 89.7079645070513
Iteration: 15, Func. Count: 208, Neg. LLF: 89.68185038988454
Iteration: 16, Func. Count: 221, Neg. LLF: 89.67568214027084
Iteration: 17, Func. Count: 234, Neg. LLF: 89.66907122836498
Iteration: 18, Func. Count: 247, Neg. LLF: 89.6652738513009
Iteration: 19, Func. Count: 260, Neg. LLF: 89.66306994380311
Iteration: 20, Func. Count: 273, Neg. LLF: 89.66108816501726
Iteration: 21, Func. Count: 286, Neg. LLF: 89.6604181499678
Iteration: 22, Func. Count: 299, Neg. LLF: 89.66028996668068
Iteration: 23, Func. Count: 312, Neg. LLF: 89.66028226114878
Iteration: 24, Func. Count: 324, Neg. LLF: 89.66028233780644
Optimization terminated successfully (Exit mode 0)
Current function value: 89.66028226114878
Iterations: 24
Function evaluations: 324
Gradient evaluations: 24
Iteration: 1, Func. Count: 15, Neg. LLF: 93.76402488725606
Iteration: 2, Func. Count: 31, Neg. LLF: 128.85164624768177
Iteration: 3, Func. Count: 46, Neg. LLF: 118.32832714950563
Iteration: 4, Func. Count: 62, Neg. LLF: 90.73106938676358
Iteration: 5, Func. Count: 77, Neg. LLF: 92.46757764167734
Iteration: 6, Func. Count: 92, Neg. LLF: 90.98779255069813
Iteration: 7, Func. Count: 107, Neg. LLF: 90.22338889782785
Iteration: 8, Func. Count: 122, Neg. LLF: 89.85515400166508
Iteration: 9, Func. Count: 136, Neg. LLF: 89.89081624239988
Iteration: 10, Func. Count: 151, Neg. LLF: 90.48261687043274
Iteration: 11, Func. Count: 166, Neg. LLF: 90.21872611148768
Iteration: 12, Func. Count: 181, Neg. LLF: 89.77503150672904
Iteration: 13, Func. Count: 196, Neg. LLF: 89.72726123665628
Iteration: 14, Func. Count: 210, Neg. LLF: 89.70985993713026
Iteration: 15, Func. Count: 224, Neg. LLF: 89.70114681262358
Iteration: 16, Func. Count: 238, Neg. LLF: 89.64638289295289
Iteration: 17, Func. Count: 252, Neg. LLF: 89.56716986432723
Iteration: 18, Func. Count: 266, Neg. LLF: 89.736342505209
Iteration: 19, Func. Count: 281, Neg. LLF: 89.5494606541576
Iteration: 20, Func. Count: 296, Neg. LLF: 89.42710308081168
Iteration: 21, Func. Count: 310, Neg. LLF: 89.87092837794637
Iteration: 22, Func. Count: 325, Neg. LLF: 89.38158357209514
Iteration: 23, Func. Count: 339, Neg. LLF: 89.33570616600655
Iteration: 24, Func. Count: 353, Neg. LLF: 89.32366308274248
Iteration: 25, Func. Count: 367, Neg. LLF: 89.315158917199
Iteration: 26, Func. Count: 381, Neg. LLF: 89.30486291972134
Iteration: 27, Func. Count: 395, Neg. LLF: 89.26063211438674
Iteration: 28, Func. Count: 409, Neg. LLF: 89.24071477151658
Iteration: 29, Func. Count: 423, Neg. LLF: 89.25140554028428
Iteration: 30, Func. Count: 438, Neg. LLF: 89.27402888147182
Iteration: 31, Func. Count: 453, Neg. LLF: 89.23644639771709
Iteration: 32, Func. Count: 468, Neg. LLF: 94.15545072038216
Iteration: 33, Func. Count: 485, Neg. LLF: 89.94186177530777
Iteration: 34, Func. Count: 501, Neg. LLF: 89.43630952065675
Iteration: 35, Func. Count: 517, Neg. LLF: 89.24035916971013
Iteration: 36, Func. Count: 532, Neg. LLF: 89.23381492770379
Iteration: 37, Func. Count: 546, Neg. LLF: 89.23583191978902
Iteration: 38, Func. Count: 561, Neg. LLF: 89.23356106981358
Iteration: 39, Func. Count: 575, Neg. LLF: 89.23353711812662
Iteration: 40, Func. Count: 588, Neg. LLF: 89.233537088085
Optimization terminated successfully (Exit mode 0)
Current function value: 89.23353711812662
Iterations: 41
Function evaluations: 588
Gradient evaluations: 40
Iteration: 1, Func. Count: 16, Neg. LLF: 93.40504696063151
Iteration: 2, Func. Count: 33, Neg. LLF: 135.76193162771563
Iteration: 3, Func. Count: 49, Neg. LLF: 100.81226525330248
Iteration: 4, Func. Count: 66, Neg. LLF: 91.38436512574349
Iteration: 5, Func. Count: 82, Neg. LLF: 90.81930506780213
Iteration: 6, Func. Count: 98, Neg. LLF: 93.14520452028056
Iteration: 7, Func. Count: 114, Neg. LLF: 90.14145695930989
Iteration: 8, Func. Count: 130, Neg. LLF: 89.90686931751097
Iteration: 9, Func. Count: 145, Neg. LLF: 90.00095501687096
Iteration: 10, Func. Count: 161, Neg. LLF: 89.84831283515547
Iteration: 11, Func. Count: 176, Neg. LLF: 89.84393207063366
Iteration: 12, Func. Count: 191, Neg. LLF: 90.271943653479
Iteration: 13, Func. Count: 207, Neg. LLF: 89.78720320904189
Iteration: 14, Func. Count: 222, Neg. LLF: 89.77380333953754
Iteration: 15, Func. Count: 237, Neg. LLF: 89.76207241170384
Iteration: 16, Func. Count: 252, Neg. LLF: 89.70424481019118
Iteration: 17, Func. Count: 267, Neg. LLF: 89.67732282746378
Iteration: 18, Func. Count: 282, Neg. LLF: 89.66500541969532
Iteration: 19, Func. Count: 297, Neg. LLF: 89.66116151523231
Iteration: 20, Func. Count: 312, Neg. LLF: 89.66037703062227
Iteration: 21, Func. Count: 327, Neg. LLF: 89.66029107222131
Iteration: 22, Func. Count: 342, Neg. LLF: 89.66028243638071
Iteration: 23, Func. Count: 356, Neg. LLF: 89.66028243412434
Optimization terminated successfully (Exit mode 0)
Current function value: 89.66028243638071
Iterations: 23
Function evaluations: 356
Gradient evaluations: 23
Iteration: 1, Func. Count: 5, Neg. LLF: 133.20093603493623
Iteration: 2, Func. Count: 13, Neg. LLF: 137.26916351152613
Iteration: 3, Func. Count: 19, Neg. LLF: 90.37476334513805
Iteration: 4, Func. Count: 23, Neg. LLF: 90.34429661400976
Iteration: 5, Func. Count: 28, Neg. LLF: 90.2878994860902
Iteration: 6, Func. Count: 32, Neg. LLF: 90.28340455705477
Iteration: 7, Func. Count: 36, Neg. LLF: 90.28337440043029
Iteration: 8, Func. Count: 39, Neg. LLF: 90.28337440044496
Optimization terminated successfully (Exit mode 0)
Current function value: 90.28337440043029
Iterations: 8
Function evaluations: 39
Gradient evaluations: 8
Iteration: 1, Func. Count: 5, Neg. LLF: 127.51413257224216
Iteration: 2, Func. Count: 12, Neg. LLF: 99.25811726189424
Iteration: 3, Func. Count: 16, Neg. LLF: 98.08053293547434
Iteration: 4, Func. Count: 20, Neg. LLF: 97.96686180202369
Iteration: 5, Func. Count: 24, Neg. LLF: 97.95627974393084
Iteration: 6, Func. Count: 28, Neg. LLF: 97.9558805347693
Iteration: 7, Func. Count: 32, Neg. LLF: 97.9558784411201
Iteration: 8, Func. Count: 35, Neg. LLF: 97.95587848821731
Optimization terminated successfully (Exit mode 0)
Current function value: 97.9558784411201
Iterations: 8
Function evaluations: 35
Gradient evaluations: 8
Iteration: 1, Func. Count: 6, Neg. LLF: 176.73358980666717
Iteration: 2, Func. Count: 15, Neg. LLF: 96.53830170499151
Iteration: 3, Func. Count: 20, Neg. LLF: 99.82569194597457
Iteration: 4, Func. Count: 26, Neg. LLF: 96.03962359804387
Iteration: 5, Func. Count: 31, Neg. LLF: 96.00363754356948
Iteration: 6, Func. Count: 36, Neg. LLF: 95.99753309900085
Iteration: 7, Func. Count: 41, Neg. LLF: 95.99744057474939
Iteration: 8, Func. Count: 46, Neg. LLF: 95.99743995724607
Optimization terminated successfully (Exit mode 0)
Current function value: 95.99743995724607
Iterations: 8
Function evaluations: 46
Gradient evaluations: 8
Iteration: 1, Func. Count: 7, Neg. LLF: 171.38528365626829
Iteration: 2, Func. Count: 17, Neg. LLF: 96.87391860628632
Iteration: 3, Func. Count: 23, Neg. LLF: 96.07662635340837
Iteration: 4, Func. Count: 29, Neg. LLF: 2365.4398091679845
Iteration: 5, Func. Count: 37, Neg. LLF: 95.9426123265139
Iteration: 6, Func. Count: 43, Neg. LLF: 95.9371409306778
Iteration: 7, Func. Count: 49, Neg. LLF: 95.93551645978795
Iteration: 8, Func. Count: 55, Neg. LLF: 95.93537566211218
Iteration: 9, Func. Count: 61, Neg. LLF: 95.93537151867473
Iteration: 10, Func. Count: 66, Neg. LLF: 95.9353713545072
Optimization terminated successfully (Exit mode 0)
Current function value: 95.93537151867473
Iterations: 10
Function evaluations: 66
Gradient evaluations: 10
Iteration: 1, Func. Count: 8, Neg. LLF: 171.07140656931702
Iteration: 2, Func. Count: 19, Neg. LLF: 97.04091242199044
Iteration: 3, Func. Count: 27, Neg. LLF: 96.14674033486075
Iteration: 4, Func. Count: 34, Neg. LLF: 96.18869125332887
Iteration: 5, Func. Count: 42, Neg. LLF: 96.04434994330427
Iteration: 6, Func. Count: 49, Neg. LLF: 96.03989410157259
Iteration: 7, Func. Count: 56, Neg. LLF: 96.0341685722221
Iteration: 8, Func. Count: 63, Neg. LLF: 96.03389382793314
Iteration: 9, Func. Count: 70, Neg. LLF: 96.03368791947354
Iteration: 10, Func. Count: 77, Neg. LLF: 96.02858661410924
Iteration: 11, Func. Count: 84, Neg. LLF: 96.02768889660338
Iteration: 12, Func. Count: 91, Neg. LLF: 96.02428130817019
Iteration: 13, Func. Count: 98, Neg. LLF: 96.01953002816707
Iteration: 14, Func. Count: 105, Neg. LLF: 96.01064268794764
Iteration: 15, Func. Count: 112, Neg. LLF: 95.99744704031998
Iteration: 16, Func. Count: 119, Neg. LLF: 100.54277792945732
Iteration: 17, Func. Count: 130, Neg. LLF: 95.9975094555918
Optimization terminated successfully (Exit mode 0)
Current function value: 95.99744452694507
Iterations: 18
Function evaluations: 131
Gradient evaluations: 17
Iteration: 1, Func. Count: 9, Neg. LLF: 172.42592889417335
Iteration: 2, Func. Count: 22, Neg. LLF: 97.25154564163172
Iteration: 3, Func. Count: 31, Neg. LLF: 96.07670502995352
Iteration: 4, Func. Count: 39, Neg. LLF: 96.03660687629355
Iteration: 5, Func. Count: 47, Neg. LLF: 96.01847009243914
Iteration: 6, Func. Count: 55, Neg. LLF: 95.9634461755096
Iteration: 7, Func. Count: 63, Neg. LLF: 95.93160789722046
Iteration: 8, Func. Count: 71, Neg. LLF: 95.93003259905478
Iteration: 9, Func. Count: 79, Neg. LLF: 95.929916568007
Iteration: 10, Func. Count: 86, Neg. LLF: 95.92991666608519
Optimization terminated successfully (Exit mode 0)
Current function value: 95.929916568007
Iterations: 10
Function evaluations: 86
Gradient evaluations: 10
Iteration: 1, Func. Count: 6, Neg. LLF: 127.81246699219014
Iteration: 2, Func. Count: 14, Neg. LLF: 101.67087151811435
Iteration: 3, Func. Count: 20, Neg. LLF: 98.32913851197725
Iteration: 4, Func. Count: 25, Neg. LLF: 97.98299654431126
Iteration: 5, Func. Count: 30, Neg. LLF: 97.95879978252997
Iteration: 6, Func. Count: 35, Neg. LLF: 97.95590173573929
Iteration: 7, Func. Count: 40, Neg. LLF: 97.9558784422295
Iteration: 8, Func. Count: 44, Neg. LLF: 97.95587858289244
Optimization terminated successfully (Exit mode 0)
Current function value: 97.9558784422295
Iterations: 8
Function evaluations: 44
Gradient evaluations: 8
Iteration: 1, Func. Count: 7, Neg. LLF: 176.66842561378428
Iteration: 2, Func. Count: 17, Neg. LLF: 96.66913169962159
Iteration: 3, Func. Count: 23, Neg. LLF: 97.12879615525434
Iteration: 4, Func. Count: 30, Neg. LLF: 96.25662645017024
Iteration: 5, Func. Count: 36, Neg. LLF: 96.00343699563915
Iteration: 6, Func. Count: 42, Neg. LLF: 95.99788560777473
Iteration: 7, Func. Count: 48, Neg. LLF: 95.99744332150527
Iteration: 8, Func. Count: 54, Neg. LLF: 97.03797912661084
Optimization terminated successfully (Exit mode 0)
Current function value: 95.9974430242753
Iterations: 9
Function evaluations: 58
Gradient evaluations: 8
Iteration: 1, Func. Count: 8, Neg. LLF: 173.30042510562524
Iteration: 2, Func. Count: 19, Neg. LLF: 96.96810517958573
Iteration: 3, Func. Count: 26, Neg. LLF: 96.12512494740459
Iteration: 4, Func. Count: 33, Neg. LLF: 1357.0295422452314
Iteration: 5, Func. Count: 42, Neg. LLF: 95.95390945110661
Iteration: 6, Func. Count: 50, Neg. LLF: 95.94018571580098
Iteration: 7, Func. Count: 57, Neg. LLF: 95.93568885112464
Iteration: 8, Func. Count: 64, Neg. LLF: 95.93537711075543
Iteration: 9, Func. Count: 71, Neg. LLF: 95.9353714194321
Iteration: 10, Func. Count: 77, Neg. LLF: 95.9353712555104
Optimization terminated successfully (Exit mode 0)
Current function value: 95.9353714194321
Iterations: 10
Function evaluations: 77
Gradient evaluations: 10
Iteration: 1, Func. Count: 9, Neg. LLF: 172.68233233920924
Iteration: 2, Func. Count: 21, Neg. LLF: 97.18128406733047
Iteration: 3, Func. Count: 30, Neg. LLF: 96.18376026628795
Iteration: 4, Func. Count: 38, Neg. LLF: 96.14417198419648
Iteration: 5, Func. Count: 47, Neg. LLF: 96.05132894820127
Iteration: 6, Func. Count: 55, Neg. LLF: 96.04249537722545
Iteration: 7, Func. Count: 63, Neg. LLF: 96.03425299729767
Iteration: 8, Func. Count: 71, Neg. LLF: 96.03390978183371
Iteration: 9, Func. Count: 79, Neg. LLF: 96.03370035439985
Iteration: 10, Func. Count: 87, Neg. LLF: 96.0284951854419
Iteration: 11, Func. Count: 95, Neg. LLF: 96.0276263453593
Iteration: 12, Func. Count: 103, Neg. LLF: 96.0237724609736
Iteration: 13, Func. Count: 111, Neg. LLF: 96.01703581822967
Iteration: 14, Func. Count: 119, Neg. LLF: 96.00185389534339
Iteration: 15, Func. Count: 127, Neg. LLF: 95.99758981038045
Iteration: 16, Func. Count: 135, Neg. LLF: 113.25588171027827
Iteration: 17, Func. Count: 153, Neg. LLF: 114.45761570284253
Iteration: 18, Func. Count: 165, Neg. LLF: 95.99776496650814
Iteration: 19, Func. Count: 174, Neg. LLF: 95.99743957490207
Iteration: 20, Func. Count: 181, Neg. LLF: 95.99743922907409
Optimization terminated successfully (Exit mode 0)
Current function value: 95.99743957490207
Iterations: 21
Function evaluations: 181
Gradient evaluations: 20
Iteration: 1, Func. Count: 10, Neg. LLF: 174.10249889352147
Iteration: 2, Func. Count: 24, Neg. LLF: 97.41279808657252
Iteration: 3, Func. Count: 34, Neg. LLF: 96.06254971900778
Iteration: 4, Func. Count: 43, Neg. LLF: 96.02798560538685
Iteration: 5, Func. Count: 52, Neg. LLF: 96.00459653302143
Iteration: 6, Func. Count: 61, Neg. LLF: 95.95917477619315
Iteration: 7, Func. Count: 70, Neg. LLF: 95.9315377923181
Iteration: 8, Func. Count: 79, Neg. LLF: 95.93000704363715
Iteration: 9, Func. Count: 88, Neg. LLF: 95.92991802498139
Iteration: 10, Func. Count: 97, Neg. LLF: 95.9299164036418
Iteration: 11, Func. Count: 105, Neg. LLF: 95.92991650225291
Optimization terminated successfully (Exit mode 0)
Current function value: 95.9299164036418
Iterations: 11
Function evaluations: 105
Gradient evaluations: 11
Iteration: 1, Func. Count: 7, Neg. LLF: 135.34262246708602
Iteration: 2, Func. Count: 16, Neg. LLF: 282599130.8019527
Iteration: 3, Func. Count: 23, Neg. LLF: 7468364.59650253
Iteration: 4, Func. Count: 30, Neg. LLF: 93.28302386521788
Iteration: 5, Func. Count: 36, Neg. LLF: 129.88627343624069
Iteration: 6, Func. Count: 45, Neg. LLF: 94.52453361820999
Iteration: 7, Func. Count: 52, Neg. LLF: 92.61133399605694
Iteration: 8, Func. Count: 58, Neg. LLF: 100.66342955006502
Iteration: 9, Func. Count: 67, Neg. LLF: 92.59503229415127
Iteration: 10, Func. Count: 74, Neg. LLF: 92.36648574088225
Iteration: 11, Func. Count: 80, Neg. LLF: 92.22204163599564
Iteration: 12, Func. Count: 86, Neg. LLF: 92.15005199752638
Iteration: 13, Func. Count: 92, Neg. LLF: 92.13707199429601
Iteration: 14, Func. Count: 98, Neg. LLF: 92.13589508184754
Iteration: 15, Func. Count: 104, Neg. LLF: 92.13587271297301
Iteration: 16, Func. Count: 109, Neg. LLF: 92.13587271296667
Optimization terminated successfully (Exit mode 0)
Current function value: 92.13587271297301
Iterations: 16
Function evaluations: 109
Gradient evaluations: 16
Iteration: 1, Func. Count: 8, Neg. LLF: 93.40049196652504
Iteration: 2, Func. Count: 15, Neg. LLF: 217.7067756562603
Iteration: 3, Func. Count: 23, Neg. LLF: 105.25956906017251
Iteration: 4, Func. Count: 33, Neg. LLF: 99.86497256026607
Iteration: 5, Func. Count: 41, Neg. LLF: 111.14609578564485
Iteration: 6, Func. Count: 49, Neg. LLF: 92.65259440445821
Iteration: 7, Func. Count: 57, Neg. LLF: 92.13492980418519
Iteration: 8, Func. Count: 64, Neg. LLF: 92.12538565263081
Iteration: 9, Func. Count: 71, Neg. LLF: 92.12448704178851
Iteration: 10, Func. Count: 78, Neg. LLF: 92.12386482567794
Iteration: 11, Func. Count: 85, Neg. LLF: 92.12382864440929
Iteration: 12, Func. Count: 92, Neg. LLF: 92.12382669854097
Iteration: 13, Func. Count: 98, Neg. LLF: 92.1238266985252
Optimization terminated successfully (Exit mode 0)
Current function value: 92.12382669854097
Iterations: 13
Function evaluations: 98
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 115.8034876931355
Iteration: 2, Func. Count: 22, Neg. LLF: 7603984.8042891035
Iteration: 3, Func. Count: 31, Neg. LLF: 97.93075578771929
Iteration: 4, Func. Count: 40, Neg. LLF: 96.10804026827908
Iteration: 5, Func. Count: 49, Neg. LLF: 104.39892355258341
Iteration: 6, Func. Count: 58, Neg. LLF: 92.40646167616852
Iteration: 7, Func. Count: 66, Neg. LLF: 92.25437409156314
Iteration: 8, Func. Count: 74, Neg. LLF: 117.62769988796536
Iteration: 9, Func. Count: 83, Neg. LLF: 92.20960788946309
Iteration: 10, Func. Count: 91, Neg. LLF: 92.2051643320152
Iteration: 11, Func. Count: 99, Neg. LLF: 92.20257924396753
Iteration: 12, Func. Count: 107, Neg. LLF: 92.19259623750554
Iteration: 13, Func. Count: 115, Neg. LLF: 92.18213289136341
Iteration: 14, Func. Count: 123, Neg. LLF: 92.16096825134598
Iteration: 15, Func. Count: 131, Neg. LLF: 92.13825181054176
Iteration: 16, Func. Count: 139, Neg. LLF: 92.12576984374975
Iteration: 17, Func. Count: 147, Neg. LLF: 92.12400083765061
Iteration: 18, Func. Count: 155, Neg. LLF: 92.12384701101703
Iteration: 19, Func. Count: 163, Neg. LLF: 92.12382711078331
Iteration: 20, Func. Count: 170, Neg. LLF: 92.12382714554035
Optimization terminated successfully (Exit mode 0)
Current function value: 92.12382711078331
Iterations: 20
Function evaluations: 170
Gradient evaluations: 20
Iteration: 1, Func. Count: 10, Neg. LLF: 119.41718283516687
Iteration: 2, Func. Count: 24, Neg. LLF: 7405005.432747113
Iteration: 3, Func. Count: 34, Neg. LLF: 105.76394641052094
Iteration: 4, Func. Count: 44, Neg. LLF: 111.02884179778486
Iteration: 5, Func. Count: 54, Neg. LLF: 96.97971784168094
Iteration: 6, Func. Count: 64, Neg. LLF: 97.34652752161593
Iteration: 7, Func. Count: 74, Neg. LLF: 96.0486830916431
Iteration: 8, Func. Count: 84, Neg. LLF: 93.76958909475786
Iteration: 9, Func. Count: 94, Neg. LLF: 93.77433982939883
Iteration: 10, Func. Count: 104, Neg. LLF: 94.40391024788035
Iteration: 11, Func. Count: 114, Neg. LLF: 96.96051349779563
Iteration: 12, Func. Count: 125, Neg. LLF: 94.83393297564453
Iteration: 13, Func. Count: 135, Neg. LLF: 93.70441770299277
Iteration: 14, Func. Count: 145, Neg. LLF: 93.20113688455102
Iteration: 15, Func. Count: 155, Neg. LLF: 92.98190490386796
Iteration: 16, Func. Count: 164, Neg. LLF: 92.94835034815277
Iteration: 17, Func. Count: 173, Neg. LLF: 92.91980986562481
Iteration: 18, Func. Count: 182, Neg. LLF: 92.918198431616
Iteration: 19, Func. Count: 191, Neg. LLF: 92.91791612372054
Iteration: 20, Func. Count: 200, Neg. LLF: 92.91790238474249
Iteration: 21, Func. Count: 209, Neg. LLF: 92.91790155299172
Optimization terminated successfully (Exit mode 0)
Current function value: 92.91790155299172
Iterations: 21
Function evaluations: 209
Gradient evaluations: 21
Iteration: 1, Func. Count: 11, Neg. LLF: 121.71821291776727
Iteration: 2, Func. Count: 26, Neg. LLF: 7152761.6100973375
Iteration: 3, Func. Count: 37, Neg. LLF: 135.8821098494341
Iteration: 4, Func. Count: 48, Neg. LLF: 121.1488636469393
Iteration: 5, Func. Count: 59, Neg. LLF: 121.13780306601267
Iteration: 6, Func. Count: 70, Neg. LLF: 93.20170512966807
Iteration: 7, Func. Count: 80, Neg. LLF: 92.64963442120903
Iteration: 8, Func. Count: 90, Neg. LLF: 94.10635470373231
Iteration: 9, Func. Count: 101, Neg. LLF: 92.28581369519763
Iteration: 10, Func. Count: 111, Neg. LLF: 92.246174617897
Iteration: 11, Func. Count: 121, Neg. LLF: 92.24202099911575
Iteration: 12, Func. Count: 131, Neg. LLF: 92.2189764696952
Iteration: 13, Func. Count: 141, Neg. LLF: 92.19396438963305
Iteration: 14, Func. Count: 151, Neg. LLF: 92.5666208167514
Iteration: 15, Func. Count: 163, Neg. LLF: 92.20882805012279
Iteration: 16, Func. Count: 174, Neg. LLF: 92.14800857508668
Iteration: 17, Func. Count: 184, Neg. LLF: 92.13483131378844
Iteration: 18, Func. Count: 194, Neg. LLF: 92.13051129811537
Iteration: 19, Func. Count: 204, Neg. LLF: 92.12398952427985
Iteration: 20, Func. Count: 214, Neg. LLF: 92.12383071331854
Iteration: 21, Func. Count: 224, Neg. LLF: 92.12382707817447
Iteration: 22, Func. Count: 233, Neg. LLF: 92.12382718890974
Optimization terminated successfully (Exit mode 0)
Current function value: 92.12382707817447
Iterations: 22
Function evaluations: 233
Gradient evaluations: 22
Iteration: 1, Func. Count: 8, Neg. LLF: 132.34161650033482
Iteration: 2, Func. Count: 18, Neg. LLF: 204981960.7670076
Iteration: 3, Func. Count: 26, Neg. LLF: 7555905.540330657
Iteration: 4, Func. Count: 34, Neg. LLF: 95.49170126361687
Iteration: 5, Func. Count: 42, Neg. LLF: 92.60341260228657
Iteration: 6, Func. Count: 49, Neg. LLF: 98.03661149169996
Iteration: 7, Func. Count: 58, Neg. LLF: 92.49047987784002
Iteration: 8, Func. Count: 65, Neg. LLF: 96.42908090073405
Iteration: 9, Func. Count: 74, Neg. LLF: 92.26125383502492
Iteration: 10, Func. Count: 81, Neg. LLF: 92.14513920094707
Iteration: 11, Func. Count: 88, Neg. LLF: 92.12543848354532
Iteration: 12, Func. Count: 95, Neg. LLF: 92.12469816379567
Iteration: 13, Func. Count: 102, Neg. LLF: 92.12462379470246
Iteration: 14, Func. Count: 109, Neg. LLF: 92.12460640820466
Iteration: 15, Func. Count: 115, Neg. LLF: 92.12460640814477
Optimization terminated successfully (Exit mode 0)
Current function value: 92.12460640820466
Iterations: 15
Function evaluations: 115
Gradient evaluations: 15
Iteration: 1, Func. Count: 9, Neg. LLF: 110.79172485973064
Iteration: 2, Func. Count: 22, Neg. LLF: 234.26956611468805
Iteration: 3, Func. Count: 31, Neg. LLF: 92.47647546029077
Iteration: 4, Func. Count: 39, Neg. LLF: 93.36961502515017
Iteration: 5, Func. Count: 48, Neg. LLF: 92.28250068536641
Iteration: 6, Func. Count: 56, Neg. LLF: 92.19177905255651
Iteration: 7, Func. Count: 64, Neg. LLF: 92.17715605438497
Iteration: 8, Func. Count: 72, Neg. LLF: 92.17288772674418
Iteration: 9, Func. Count: 80, Neg. LLF: 92.17172475117327
Iteration: 10, Func. Count: 88, Neg. LLF: 92.16537972997438
Iteration: 11, Func. Count: 96, Neg. LLF: 92.15548489510242
Iteration: 12, Func. Count: 104, Neg. LLF: 92.13988879892091
Iteration: 13, Func. Count: 112, Neg. LLF: 92.12846408038922
Iteration: 14, Func. Count: 120, Neg. LLF: 92.12417918378071
Iteration: 15, Func. Count: 128, Neg. LLF: 92.12385767879334
Iteration: 16, Func. Count: 136, Neg. LLF: 92.12382750456521
Iteration: 17, Func. Count: 144, Neg. LLF: 92.12382669350472
Optimization terminated successfully (Exit mode 0)
Current function value: 92.12382669350472
Iterations: 17
Function evaluations: 144
Gradient evaluations: 17
Iteration: 1, Func. Count: 10, Neg. LLF: 116.1083789328928
Iteration: 2, Func. Count: 24, Neg. LLF: 7636846.35047428
Iteration: 3, Func. Count: 34, Neg. LLF: 97.78176430088484
Iteration: 4, Func. Count: 44, Neg. LLF: 96.22623395248915
Iteration: 5, Func. Count: 54, Neg. LLF: 104.9788810905284
Iteration: 6, Func. Count: 64, Neg. LLF: 92.58121405561667
Iteration: 7, Func. Count: 73, Neg. LLF: 92.25586030747942
Iteration: 8, Func. Count: 82, Neg. LLF: 116.55514161235504
Iteration: 9, Func. Count: 93, Neg. LLF: 92.2043380041976
Iteration: 10, Func. Count: 102, Neg. LLF: 92.20041333167784
Iteration: 11, Func. Count: 111, Neg. LLF: 92.19865579106633
Iteration: 12, Func. Count: 120, Neg. LLF: 92.18727373160054
Iteration: 13, Func. Count: 129, Neg. LLF: 92.14773479445294
Iteration: 14, Func. Count: 138, Neg. LLF: 92.1340339751148
Iteration: 15, Func. Count: 147, Neg. LLF: 92.12587853587081
Iteration: 16, Func. Count: 156, Neg. LLF: 92.12470110905275
Iteration: 17, Func. Count: 165, Neg. LLF: 92.12629073847621
Iteration: 18, Func. Count: 175, Neg. LLF: 92.12442600481795
Iteration: 19, Func. Count: 184, Neg. LLF: 92.12398690536254
Iteration: 20, Func. Count: 193, Neg. LLF: 92.12387127128511
Iteration: 21, Func. Count: 202, Neg. LLF: 92.1238338354751
Iteration: 22, Func. Count: 211, Neg. LLF: 92.12382687276214
Iteration: 23, Func. Count: 219, Neg. LLF: 92.12382690748002
Optimization terminated successfully (Exit mode 0)
Current function value: 92.12382687276214
Iterations: 23
Function evaluations: 219
Gradient evaluations: 23
Iteration: 1, Func. Count: 11, Neg. LLF: 119.61443260240587
Iteration: 2, Func. Count: 26, Neg. LLF: 7423377.477968454
Iteration: 3, Func. Count: 37, Neg. LLF: 105.864953042662
Iteration: 4, Func. Count: 48, Neg. LLF: 111.08947727573752
Iteration: 5, Func. Count: 59, Neg. LLF: 96.96071549245484
Iteration: 6, Func. Count: 70, Neg. LLF: 97.34407380399952
Iteration: 7, Func. Count: 81, Neg. LLF: 96.16957328355141
Iteration: 8, Func. Count: 92, Neg. LLF: 93.93929113989162
Iteration: 9, Func. Count: 103, Neg. LLF: 93.85866315938478
Iteration: 10, Func. Count: 114, Neg. LLF: 94.79079607677878
Iteration: 11, Func. Count: 125, Neg. LLF: 93.80040379262944
Iteration: 12, Func. Count: 136, Neg. LLF: 96.53909383047963
Iteration: 13, Func. Count: 147, Neg. LLF: 93.01092740387769
Iteration: 14, Func. Count: 157, Neg. LLF: 92.99128575311816
Iteration: 15, Func. Count: 167, Neg. LLF: 92.93840065200287
Iteration: 16, Func. Count: 177, Neg. LLF: 92.96775278995337
Iteration: 17, Func. Count: 188, Neg. LLF: 92.995794343515
Iteration: 18, Func. Count: 199, Neg. LLF: 92.91809070561035
Iteration: 19, Func. Count: 209, Neg. LLF: 92.91836008614767
Iteration: 20, Func. Count: 220, Neg. LLF: 92.91790295439995
Iteration: 21, Func. Count: 230, Neg. LLF: 92.91790157798476
Iteration: 22, Func. Count: 239, Neg. LLF: 92.91790157249109
Optimization terminated successfully (Exit mode 0)
Current function value: 92.91790157798476
Iterations: 22
Function evaluations: 239
Gradient evaluations: 22
Iteration: 1, Func. Count: 12, Neg. LLF: 121.8812920925593
Iteration: 2, Func. Count: 28, Neg. LLF: 7180426.290124945
Iteration: 3, Func. Count: 40, Neg. LLF: 137.1753450928724
Iteration: 4, Func. Count: 52, Neg. LLF: 121.09816556073069
Iteration: 5, Func. Count: 64, Neg. LLF: 123.98200845458149
Iteration: 6, Func. Count: 76, Neg. LLF: 93.13500741508997
Iteration: 7, Func. Count: 87, Neg. LLF: 92.6333026071282
Iteration: 8, Func. Count: 98, Neg. LLF: 92.57415567454936
Iteration: 9, Func. Count: 110, Neg. LLF: 92.26082168468146
Iteration: 10, Func. Count: 121, Neg. LLF: 92.44348302346974
Iteration: 11, Func. Count: 133, Neg. LLF: 92.23236499426012
Iteration: 12, Func. Count: 144, Neg. LLF: 92.2285923433928
Iteration: 13, Func. Count: 155, Neg. LLF: 92.20983625976734
Iteration: 14, Func. Count: 166, Neg. LLF: 92.1508512103526
Iteration: 15, Func. Count: 177, Neg. LLF: 92.12589295777336
Iteration: 16, Func. Count: 188, Neg. LLF: 92.12390317613566
Iteration: 17, Func. Count: 199, Neg. LLF: 92.12382720129875
Iteration: 18, Func. Count: 209, Neg. LLF: 92.12382731195184
Optimization terminated successfully (Exit mode 0)
Current function value: 92.12382720129875
Iterations: 18
Function evaluations: 209
Gradient evaluations: 18
Iteration: 1, Func. Count: 5, Neg. LLF: 148.9621957832444
Iteration: 2, Func. Count: 12, Neg. LLF: 145.08535714803028
Iteration: 3, Func. Count: 18, Neg. LLF: 98.0234848727333
Iteration: 4, Func. Count: 22, Neg. LLF: 98.06746806932746
Iteration: 5, Func. Count: 27, Neg. LLF: 97.97570913270498
Iteration: 6, Func. Count: 31, Neg. LLF: 97.9567576353609
Iteration: 7, Func. Count: 35, Neg. LLF: 97.95642848165849
Iteration: 8, Func. Count: 40, Neg. LLF: 97.95493369545551
Iteration: 9, Func. Count: 44, Neg. LLF: 97.95480332621186
Iteration: 10, Func. Count: 47, Neg. LLF: 97.95480332621493
Optimization terminated successfully (Exit mode 0)
Current function value: 97.95480332621186
Iterations: 10
Function evaluations: 47
Gradient evaluations: 10
Iteration: 1, Func. Count: 6, Neg. LLF: 177.1247759364702
Iteration: 2, Func. Count: 15, Neg. LLF: 96.58954213654557
Iteration: 3, Func. Count: 20, Neg. LLF: 96.81062419586058
Iteration: 4, Func. Count: 26, Neg. LLF: 96.57550281289936
Iteration: 5, Func. Count: 31, Neg. LLF: 96.51272647810951
Iteration: 6, Func. Count: 36, Neg. LLF: 96.25360227457493
Iteration: 7, Func. Count: 41, Neg. LLF: 96.08245054344393
Iteration: 8, Func. Count: 46, Neg. LLF: 96.0049251779031
Iteration: 9, Func. Count: 51, Neg. LLF: 95.99757871549706
Iteration: 10, Func. Count: 56, Neg. LLF: 95.99746467464237
Iteration: 11, Func. Count: 61, Neg. LLF: 113.03772799426503
Iteration: 12, Func. Count: 70, Neg. LLF: 95.99751940786473
Optimization terminated successfully (Exit mode 0)
Current function value: 95.99743955645036
Iterations: 13
Function evaluations: 72
Gradient evaluations: 12
Iteration: 1, Func. Count: 7, Neg. LLF: 171.90410589833664
Iteration: 2, Func. Count: 17, Neg. LLF: 96.82243442435885
Iteration: 3, Func. Count: 23, Neg. LLF: 96.14523358630694
Iteration: 4, Func. Count: 29, Neg. LLF: 156.83724393599113
Iteration: 5, Func. Count: 36, Neg. LLF: 95.89441846035898
Iteration: 6, Func. Count: 42, Neg. LLF: 95.83223768125112
Iteration: 7, Func. Count: 48, Neg. LLF: 95.77039409055672
Iteration: 8, Func. Count: 54, Neg. LLF: 95.74139317645937
Iteration: 9, Func. Count: 60, Neg. LLF: 95.73692479259067
Iteration: 10, Func. Count: 66, Neg. LLF: 95.73650158370805
Iteration: 11, Func. Count: 72, Neg. LLF: 95.7364769850719
Iteration: 12, Func. Count: 78, Neg. LLF: 95.73647639529868
Optimization terminated successfully (Exit mode 0)
Current function value: 95.73647639529868
Iterations: 12
Function evaluations: 78
Gradient evaluations: 12
Iteration: 1, Func. Count: 8, Neg. LLF: 169.76864557014005
Iteration: 2, Func. Count: 19, Neg. LLF: 96.98510158658894
Iteration: 3, Func. Count: 26, Neg. LLF: 96.09026404862283
Iteration: 4, Func. Count: 33, Neg. LLF: 96.3182690183904
Iteration: 5, Func. Count: 41, Neg. LLF: 96.04805788039533
Iteration: 6, Func. Count: 48, Neg. LLF: 96.0350521333454
Iteration: 7, Func. Count: 55, Neg. LLF: 96.03412166295922
Iteration: 8, Func. Count: 62, Neg. LLF: 96.03385366040237
Iteration: 9, Func. Count: 69, Neg. LLF: 96.03367618742128
Iteration: 10, Func. Count: 76, Neg. LLF: 96.02782607766636
Iteration: 11, Func. Count: 83, Neg. LLF: 96.02612907544419
Iteration: 12, Func. Count: 90, Neg. LLF: 96.02288377282441
Iteration: 13, Func. Count: 97, Neg. LLF: 96.01857905531458
Iteration: 14, Func. Count: 104, Neg. LLF: 96.00781391193284
Iteration: 15, Func. Count: 111, Neg. LLF: 95.99760672258853
Iteration: 16, Func. Count: 118, Neg. LLF: 111.48729562525067
Iteration: 17, Func. Count: 129, Neg. LLF: 96.02445562786323
Iteration: 18, Func. Count: 138, Neg. LLF: 95.99743955638412
Iteration: 19, Func. Count: 144, Neg. LLF: 95.99743921054518
Optimization terminated successfully (Exit mode 0)
Current function value: 95.99743955638412
Iterations: 20
Function evaluations: 144
Gradient evaluations: 19
Iteration: 1, Func. Count: 9, Neg. LLF: 171.85365790638292
Iteration: 2, Func. Count: 21, Neg. LLF: 97.24155238856643
Iteration: 3, Func. Count: 30, Neg. LLF: 96.31236306652839
Iteration: 4, Func. Count: 38, Neg. LLF: 98.94973655883341
Iteration: 5, Func. Count: 47, Neg. LLF: 96.3796663682849
Iteration: 6, Func. Count: 56, Neg. LLF: 95.93119208925428
Iteration: 7, Func. Count: 64, Neg. LLF: 95.93001388632473
Iteration: 8, Func. Count: 72, Neg. LLF: 95.92993312659377
Iteration: 9, Func. Count: 80, Neg. LLF: 95.92991894232536
Iteration: 10, Func. Count: 88, Neg. LLF: 95.9299163553663
Iteration: 11, Func. Count: 95, Neg. LLF: 95.92991645390683
Optimization terminated successfully (Exit mode 0)
Current function value: 95.9299163553663
Iterations: 11
Function evaluations: 95
Gradient evaluations: 11
Iteration: 1, Func. Count: 6, Neg. LLF: 149.81091132871754
Iteration: 2, Func. Count: 14, Neg. LLF: 161.86802408771084
Iteration: 3, Func. Count: 21, Neg. LLF: 97.19992965593251
Iteration: 4, Func. Count: 26, Neg. LLF: 97.6356014023278
Iteration: 5, Func. Count: 33, Neg. LLF: 98.08605692108696
Iteration: 6, Func. Count: 39, Neg. LLF: 96.54441558419386
Iteration: 7, Func. Count: 44, Neg. LLF: 96.45835735690076
Iteration: 8, Func. Count: 49, Neg. LLF: 96.42774197550347
Iteration: 9, Func. Count: 54, Neg. LLF: 96.41985923524068
Iteration: 10, Func. Count: 59, Neg. LLF: 96.4188932300144
Iteration: 11, Func. Count: 64, Neg. LLF: 96.41860188518483
Iteration: 12, Func. Count: 69, Neg. LLF: 96.41859915108643
Iteration: 13, Func. Count: 73, Neg. LLF: 96.41859915110571
Optimization terminated successfully (Exit mode 0)
Current function value: 96.41859915108643
Iterations: 13
Function evaluations: 73
Gradient evaluations: 13
Iteration: 1, Func. Count: 7, Neg. LLF: 124.31514495586647
Iteration: 2, Func. Count: 17, Neg. LLF: 104.37052636345624
Iteration: 3, Func. Count: 24, Neg. LLF: 110.10151710761271
Iteration: 4, Func. Count: 32, Neg. LLF: 96.92853626550243
Iteration: 5, Func. Count: 38, Neg. LLF: 97.44137376903409
Iteration: 6, Func. Count: 45, Neg. LLF: 96.69075507380603
Iteration: 7, Func. Count: 51, Neg. LLF: 96.92299942434919
Iteration: 8, Func. Count: 58, Neg. LLF: 96.01897145124742
Iteration: 9, Func. Count: 64, Neg. LLF: 96.00328994743244
Iteration: 10, Func. Count: 70, Neg. LLF: 95.99758442487415
Iteration: 11, Func. Count: 76, Neg. LLF: 95.99743956951687
Iteration: 12, Func. Count: 81, Neg. LLF: 95.99743991774909
Optimization terminated successfully (Exit mode 0)
Current function value: 95.99743956951687
Iterations: 12
Function evaluations: 81
Gradient evaluations: 12
Iteration: 1, Func. Count: 8, Neg. LLF: 168.03519918339137
Iteration: 2, Func. Count: 19, Neg. LLF: 104.05393910480365
Iteration: 3, Func. Count: 27, Neg. LLF: 102.86877252336703
Iteration: 4, Func. Count: 35, Neg. LLF: 103.76162040865789
Iteration: 5, Func. Count: 43, Neg. LLF: 95.97238929190314
Iteration: 6, Func. Count: 50, Neg. LLF: 96.93011372272706
Iteration: 7, Func. Count: 58, Neg. LLF: 95.77486722361367
Iteration: 8, Func. Count: 65, Neg. LLF: 95.73601981623311
Iteration: 9, Func. Count: 72, Neg. LLF: 95.73245513108091
Iteration: 10, Func. Count: 79, Neg. LLF: 95.73214038898388
Iteration: 11, Func. Count: 86, Neg. LLF: 95.73196821631234
Iteration: 12, Func. Count: 93, Neg. LLF: 95.73166305046614
Iteration: 13, Func. Count: 100, Neg. LLF: 95.73157843458335
Iteration: 14, Func. Count: 107, Neg. LLF: 95.73156248164209
Iteration: 15, Func. Count: 114, Neg. LLF: 95.73156193367156
Optimization terminated successfully (Exit mode 0)
Current function value: 95.73156193367156
Iterations: 15
Function evaluations: 114
Gradient evaluations: 15
Iteration: 1, Func. Count: 9, Neg. LLF: 145.3749970225395
Iteration: 2, Func. Count: 22, Neg. LLF: 107.55293578113576
Iteration: 3, Func. Count: 31, Neg. LLF: 113.9534264942105
Iteration: 4, Func. Count: 40, Neg. LLF: 98.54487385474188
Iteration: 5, Func. Count: 49, Neg. LLF: 97.79166878899966
Iteration: 6, Func. Count: 58, Neg. LLF: 97.37868032065266
Iteration: 7, Func. Count: 67, Neg. LLF: 97.94155048332014
Iteration: 8, Func. Count: 76, Neg. LLF: 122.45700726240848
Iteration: 9, Func. Count: 86, Neg. LLF: 95.7474226824977
Iteration: 10, Func. Count: 94, Neg. LLF: 95.70183371912624
Iteration: 11, Func. Count: 102, Neg. LLF: 95.69475123342352
Iteration: 12, Func. Count: 110, Neg. LLF: 95.68598939973447
Iteration: 13, Func. Count: 118, Neg. LLF: 95.68062158464124
Iteration: 14, Func. Count: 126, Neg. LLF: 95.66409721294009
Iteration: 15, Func. Count: 134, Neg. LLF: 95.64492761642363
Iteration: 16, Func. Count: 142, Neg. LLF: 95.63466283010118
Iteration: 17, Func. Count: 150, Neg. LLF: 95.6326806316628
Iteration: 18, Func. Count: 158, Neg. LLF: 95.63250733600732
Iteration: 19, Func. Count: 166, Neg. LLF: 95.63250484722934
Iteration: 20, Func. Count: 173, Neg. LLF: 95.63250484230139
Optimization terminated successfully (Exit mode 0)
Current function value: 95.63250484722934
Iterations: 20
Function evaluations: 173
Gradient evaluations: 20
Iteration: 1, Func. Count: 10, Neg. LLF: 172.10290033201596
Iteration: 2, Func. Count: 23, Neg. LLF: 100.15338331018332
Iteration: 3, Func. Count: 33, Neg. LLF: 101.5696546189722
Iteration: 4, Func. Count: 43, Neg. LLF: 102.00342374690354
Iteration: 5, Func. Count: 53, Neg. LLF: 100.46191052125388
Iteration: 6, Func. Count: 63, Neg. LLF: 100.12239659029103
Iteration: 7, Func. Count: 73, Neg. LLF: 99.8084855112894
Iteration: 8, Func. Count: 83, Neg. LLF: 99.50319917163185
Iteration: 9, Func. Count: 93, Neg. LLF: 96.80131653125973
Iteration: 10, Func. Count: 103, Neg. LLF: 95.9734052289722
Iteration: 11, Func. Count: 112, Neg. LLF: 95.82537944320843
Iteration: 12, Func. Count: 121, Neg. LLF: 95.5760977589261
Iteration: 13, Func. Count: 130, Neg. LLF: 95.59400715716268
Iteration: 14, Func. Count: 140, Neg. LLF: 95.48086264114374
Iteration: 15, Func. Count: 149, Neg. LLF: 95.44296132235989
Iteration: 16, Func. Count: 158, Neg. LLF: 95.44082285343346
Iteration: 17, Func. Count: 167, Neg. LLF: 95.43998452274819
Iteration: 18, Func. Count: 176, Neg. LLF: 95.43995937931557
Iteration: 19, Func. Count: 185, Neg. LLF: 95.43995866870954
Optimization terminated successfully (Exit mode 0)
Current function value: 95.43995866870954
Iterations: 19
Function evaluations: 185
Gradient evaluations: 19
Iteration: 1, Func. Count: 7, Neg. LLF: 149.3073541094389
Iteration: 2, Func. Count: 16, Neg. LLF: 161.9786836177124
Iteration: 3, Func. Count: 24, Neg. LLF: 97.19183611261096
Iteration: 4, Func. Count: 30, Neg. LLF: 97.61835545055821
Iteration: 5, Func. Count: 38, Neg. LLF: 98.08808250095436
Iteration: 6, Func. Count: 45, Neg. LLF: 96.54291971698362
Iteration: 7, Func. Count: 51, Neg. LLF: 96.45919294847683
Iteration: 8, Func. Count: 57, Neg. LLF: 96.42807417689565
Iteration: 9, Func. Count: 63, Neg. LLF: 96.41970884450089
Iteration: 10, Func. Count: 69, Neg. LLF: 96.41875121904391
Iteration: 11, Func. Count: 75, Neg. LLF: 96.41860051967278
Iteration: 12, Func. Count: 81, Neg. LLF: 96.41859914743885
Iteration: 13, Func. Count: 86, Neg. LLF: 96.4185992905528
Optimization terminated successfully (Exit mode 0)
Current function value: 96.41859914743885
Iterations: 13
Function evaluations: 86
Gradient evaluations: 13
Iteration: 1, Func. Count: 8, Neg. LLF: 124.12721859591672
Iteration: 2, Func. Count: 19, Neg. LLF: 105.15433209185869
Iteration: 3, Func. Count: 27, Neg. LLF: 110.39101536039179
Iteration: 4, Func. Count: 36, Neg. LLF: 96.92336806295228
Iteration: 5, Func. Count: 43, Neg. LLF: 97.21341690416486
Iteration: 6, Func. Count: 51, Neg. LLF: 96.7920866852525
Iteration: 7, Func. Count: 58, Neg. LLF: 96.51950173841885
Iteration: 8, Func. Count: 65, Neg. LLF: 96.30018903033448
Iteration: 9, Func. Count: 72, Neg. LLF: 96.15141195251667
Iteration: 10, Func. Count: 79, Neg. LLF: 96.01848823871376
Iteration: 11, Func. Count: 86, Neg. LLF: 95.9983919170771
Iteration: 12, Func. Count: 93, Neg. LLF: 96.0041301265678
Iteration: 13, Func. Count: 110, Neg. LLF: 100.18407878375741
Iteration: 14, Func. Count: 119, Neg. LLF: 96.57708679648931
Iteration: 15, Func. Count: 128, Neg. LLF: 95.99743956730559
Iteration: 16, Func. Count: 134, Neg. LLF: 95.99743991572844
Optimization terminated successfully (Exit mode 0)
Current function value: 95.99743956730559
Iterations: 17
Function evaluations: 134
Gradient evaluations: 16
Iteration: 1, Func. Count: 9, Neg. LLF: 172.3227319189193
Iteration: 2, Func. Count: 21, Neg. LLF: 104.00882854207863
Iteration: 3, Func. Count: 30, Neg. LLF: 102.17878354240035
Iteration: 4, Func. Count: 39, Neg. LLF: 104.13582469683344
Iteration: 5, Func. Count: 48, Neg. LLF: 96.29162592905793
Iteration: 6, Func. Count: 56, Neg. LLF: 97.13798841122434
Iteration: 7, Func. Count: 65, Neg. LLF: 95.76197920401263
Iteration: 8, Func. Count: 73, Neg. LLF: 95.73779613328284
Iteration: 9, Func. Count: 81, Neg. LLF: 95.73348093252348
Iteration: 10, Func. Count: 89, Neg. LLF: 95.73302977620668
Iteration: 11, Func. Count: 97, Neg. LLF: 95.73248234410165
Iteration: 12, Func. Count: 105, Neg. LLF: 95.73181944232283
Iteration: 13, Func. Count: 113, Neg. LLF: 95.73160057306904
Iteration: 14, Func. Count: 121, Neg. LLF: 95.73156355177235
Iteration: 15, Func. Count: 129, Neg. LLF: 95.73156193611314
Iteration: 16, Func. Count: 136, Neg. LLF: 95.73156192126798
Optimization terminated successfully (Exit mode 0)
Current function value: 95.73156193611314
Iterations: 16
Function evaluations: 136
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 147.7180064573991
Iteration: 2, Func. Count: 24, Neg. LLF: 107.0812277687441
Iteration: 3, Func. Count: 34, Neg. LLF: 114.6077035201852
Iteration: 4, Func. Count: 44, Neg. LLF: 98.5025944820682
Iteration: 5, Func. Count: 54, Neg. LLF: 97.72288633169362
Iteration: 6, Func. Count: 64, Neg. LLF: 97.69030808430189
Iteration: 7, Func. Count: 74, Neg. LLF: 97.70500410026791
Iteration: 8, Func. Count: 84, Neg. LLF: 128.184859756263
Iteration: 9, Func. Count: 95, Neg. LLF: 95.9717749440793
Iteration: 10, Func. Count: 105, Neg. LLF: 95.70952819831317
Iteration: 11, Func. Count: 114, Neg. LLF: 95.69550057529858
Iteration: 12, Func. Count: 123, Neg. LLF: 95.68992928845431
Iteration: 13, Func. Count: 132, Neg. LLF: 95.6756082464626
Iteration: 14, Func. Count: 141, Neg. LLF: 95.67125814334194
Iteration: 15, Func. Count: 150, Neg. LLF: 95.66532731074483
Iteration: 16, Func. Count: 159, Neg. LLF: 95.62302179458122
Iteration: 17, Func. Count: 168, Neg. LLF: 95.54071642457372
Iteration: 18, Func. Count: 177, Neg. LLF: 95.85018963692232
Iteration: 19, Func. Count: 187, Neg. LLF: 95.50251694321899
Iteration: 20, Func. Count: 196, Neg. LLF: 95.49690710993707
Iteration: 21, Func. Count: 205, Neg. LLF: 95.49238888452437
Iteration: 22, Func. Count: 214, Neg. LLF: 95.49015405767786
Iteration: 23, Func. Count: 223, Neg. LLF: 95.48905329488468
Iteration: 24, Func. Count: 232, Neg. LLF: 95.4888710557496
Iteration: 25, Func. Count: 241, Neg. LLF: 95.48859090333261
Iteration: 26, Func. Count: 250, Neg. LLF: 95.4882517683249
Iteration: 27, Func. Count: 259, Neg. LLF: 95.48787910458738
Iteration: 28, Func. Count: 268, Neg. LLF: 95.4877581268094
Iteration: 29, Func. Count: 277, Neg. LLF: 95.48774389463375
Iteration: 30, Func. Count: 285, Neg. LLF: 95.48774389454373
Optimization terminated successfully (Exit mode 0)
Current function value: 95.48774389463375
Iterations: 30
Function evaluations: 285
Gradient evaluations: 30
Iteration: 1, Func. Count: 11, Neg. LLF: 173.72270907339674
Iteration: 2, Func. Count: 25, Neg. LLF: 100.47750531490848
Iteration: 3, Func. Count: 36, Neg. LLF: 101.52165370778451
Iteration: 4, Func. Count: 47, Neg. LLF: 101.97442426581598
Iteration: 5, Func. Count: 58, Neg. LLF: 100.37368569145463
Iteration: 6, Func. Count: 69, Neg. LLF: 99.98713455042174
Iteration: 7, Func. Count: 80, Neg. LLF: 99.62549248376561
Iteration: 8, Func. Count: 91, Neg. LLF: 99.28693873053963
Iteration: 9, Func. Count: 102, Neg. LLF: 96.99545190970014
Iteration: 10, Func. Count: 113, Neg. LLF: 95.99550152602298
Iteration: 11, Func. Count: 123, Neg. LLF: 95.78194439672488
Iteration: 12, Func. Count: 133, Neg. LLF: 95.62138788879335
Iteration: 13, Func. Count: 143, Neg. LLF: 95.678500792501
Iteration: 14, Func. Count: 154, Neg. LLF: 95.47747506372802
Iteration: 15, Func. Count: 164, Neg. LLF: 95.45438667123172
Iteration: 16, Func. Count: 174, Neg. LLF: 95.44251155385645
Iteration: 17, Func. Count: 184, Neg. LLF: 95.44013472121844
Iteration: 18, Func. Count: 194, Neg. LLF: 95.43996685865586
Iteration: 19, Func. Count: 204, Neg. LLF: 95.43995944013926
Iteration: 20, Func. Count: 214, Neg. LLF: 95.43995868232055
Optimization terminated successfully (Exit mode 0)
Current function value: 95.43995868232055
Iterations: 20
Function evaluations: 214
Gradient evaluations: 20
Iteration: 1, Func. Count: 8, Neg. LLF: 111.89696569978224
Iteration: 2, Func. Count: 17, Neg. LLF: 159.29028075276437
Iteration: 3, Func. Count: 25, Neg. LLF: 9268051.549579175
Iteration: 4, Func. Count: 33, Neg. LLF: 468.4242038560865
Iteration: 5, Func. Count: 41, Neg. LLF: 96.64872981349298
Iteration: 6, Func. Count: 49, Neg. LLF: 92.48264662327847
Iteration: 7, Func. Count: 56, Neg. LLF: 92.2659256392609
Iteration: 8, Func. Count: 63, Neg. LLF: 92.72571594098083
Iteration: 9, Func. Count: 72, Neg. LLF: 92.28665596172056
Iteration: 10, Func. Count: 80, Neg. LLF: 92.168801225178
Iteration: 11, Func. Count: 88, Neg. LLF: 92.1083518092222
Iteration: 12, Func. Count: 95, Neg. LLF: 92.30090845670173
Iteration: 13, Func. Count: 103, Neg. LLF: 92.06624006296889
Iteration: 14, Func. Count: 110, Neg. LLF: 92.06312790141973
Iteration: 15, Func. Count: 117, Neg. LLF: 92.06307350093894
Iteration: 16, Func. Count: 123, Neg. LLF: 92.06307350093805
Optimization terminated successfully (Exit mode 0)
Current function value: 92.06307350093894
Iterations: 16
Function evaluations: 123
Gradient evaluations: 16
Iteration: 1, Func. Count: 9, Neg. LLF: 93.07483086508243
Iteration: 2, Func. Count: 17, Neg. LLF: 226.56325992491625
Iteration: 3, Func. Count: 26, Neg. LLF: 98.11857489810731
Iteration: 4, Func. Count: 36, Neg. LLF: 100.07887479372997
Iteration: 5, Func. Count: 45, Neg. LLF: 164.4322377756447
Iteration: 6, Func. Count: 54, Neg. LLF: 224.9769600352477
Iteration: 7, Func. Count: 65, Neg. LLF: 102.88513230279173
Iteration: 8, Func. Count: 74, Neg. LLF: 92.1047341307432
Iteration: 9, Func. Count: 83, Neg. LLF: 92.03816814265338
Iteration: 10, Func. Count: 91, Neg. LLF: 92.02639686278685
Iteration: 11, Func. Count: 99, Neg. LLF: 92.02614999211337
Iteration: 12, Func. Count: 107, Neg. LLF: 92.02613689827585
Iteration: 13, Func. Count: 115, Neg. LLF: 92.02613149043978
Iteration: 14, Func. Count: 123, Neg. LLF: 92.02612985792051
Iteration: 15, Func. Count: 130, Neg. LLF: 92.02612985789416
Optimization terminated successfully (Exit mode 0)
Current function value: 92.02612985792051
Iterations: 15
Function evaluations: 130
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 115.02279058054806
Iteration: 2, Func. Count: 24, Neg. LLF: 7865572.496472045
Iteration: 3, Func. Count: 34, Neg. LLF: 95.72151067688274
Iteration: 4, Func. Count: 44, Neg. LLF: 100.97392997920684
Iteration: 5, Func. Count: 54, Neg. LLF: 99.38459579411258
Iteration: 6, Func. Count: 64, Neg. LLF: 92.47345093683978
Iteration: 7, Func. Count: 73, Neg. LLF: 92.26210649938083
Iteration: 8, Func. Count: 82, Neg. LLF: 96.27308154051158
Iteration: 9, Func. Count: 92, Neg. LLF: 92.19203501520083
Iteration: 10, Func. Count: 101, Neg. LLF: 92.17618547002914
Iteration: 11, Func. Count: 110, Neg. LLF: 92.17045252389806
Iteration: 12, Func. Count: 119, Neg. LLF: 92.14884421788315
Iteration: 13, Func. Count: 128, Neg. LLF: 92.13555757442522
Iteration: 14, Func. Count: 137, Neg. LLF: 92.12866970620016
Iteration: 15, Func. Count: 146, Neg. LLF: 92.09657650502031
Iteration: 16, Func. Count: 155, Neg. LLF: 92.05964972585531
Iteration: 17, Func. Count: 164, Neg. LLF: 92.03203593105549
Iteration: 18, Func. Count: 173, Neg. LLF: 92.02691262074696
Iteration: 19, Func. Count: 182, Neg. LLF: 92.02623236712931
Iteration: 20, Func. Count: 191, Neg. LLF: 92.02613485384579
Iteration: 21, Func. Count: 200, Neg. LLF: 92.02612988380324
Iteration: 22, Func. Count: 208, Neg. LLF: 92.02612990725302
Optimization terminated successfully (Exit mode 0)
Current function value: 92.02612988380324
Iterations: 22
Function evaluations: 208
Gradient evaluations: 22
Iteration: 1, Func. Count: 11, Neg. LLF: 118.401878168524
Iteration: 2, Func. Count: 26, Neg. LLF: 7557525.805811858
Iteration: 3, Func. Count: 37, Neg. LLF: 100.9433987651914
Iteration: 4, Func. Count: 48, Neg. LLF: 116.43754019768768
Iteration: 5, Func. Count: 59, Neg. LLF: 95.14343649697354
Iteration: 6, Func. Count: 70, Neg. LLF: 94.14740611635186
Iteration: 7, Func. Count: 81, Neg. LLF: 93.05492280243014
Iteration: 8, Func. Count: 91, Neg. LLF: 93.02485647824753
Iteration: 9, Func. Count: 102, Neg. LLF: 96.12252707649566
Iteration: 10, Func. Count: 114, Neg. LLF: 92.57137371692498
Iteration: 11, Func. Count: 124, Neg. LLF: 92.98339049807656
Iteration: 12, Func. Count: 136, Neg. LLF: 92.24073277246029
Iteration: 13, Func. Count: 146, Neg. LLF: 163.30783868598147
Iteration: 14, Func. Count: 158, Neg. LLF: 92.33773428922743
Iteration: 15, Func. Count: 169, Neg. LLF: 92.41712922354711
Iteration: 16, Func. Count: 180, Neg. LLF: 92.22545449398307
Iteration: 17, Func. Count: 191, Neg. LLF: 92.02689339355501
Iteration: 18, Func. Count: 201, Neg. LLF: 92.0267579077072
Iteration: 19, Func. Count: 212, Neg. LLF: 92.02613445742202
Iteration: 20, Func. Count: 222, Neg. LLF: 92.02612972375634
Iteration: 21, Func. Count: 231, Neg. LLF: 92.02612986145095
Optimization terminated successfully (Exit mode 0)
Current function value: 92.02612972375634
Iterations: 22
Function evaluations: 231
Gradient evaluations: 21
Iteration: 1, Func. Count: 12, Neg. LLF: 120.77885801710654
Iteration: 2, Func. Count: 28, Neg. LLF: 7418303.733273409
Iteration: 3, Func. Count: 40, Neg. LLF: 122.96179319814996
Iteration: 4, Func. Count: 52, Neg. LLF: 123.18909455714879
Iteration: 5, Func. Count: 64, Neg. LLF: 93.9305548609979
Iteration: 6, Func. Count: 75, Neg. LLF: 182.65498566072026
Iteration: 7, Func. Count: 87, Neg. LLF: 95.49110805897136
Iteration: 8, Func. Count: 99, Neg. LLF: 92.36228913760944
Iteration: 9, Func. Count: 110, Neg. LLF: 92.73249525384372
Iteration: 10, Func. Count: 122, Neg. LLF: 94.24178385344835
Iteration: 11, Func. Count: 134, Neg. LLF: 92.23959740385135
Iteration: 12, Func. Count: 145, Neg. LLF: 92.22804527730146
Iteration: 13, Func. Count: 156, Neg. LLF: 92.21678509230317
Iteration: 14, Func. Count: 167, Neg. LLF: 92.20828833731487
Iteration: 15, Func. Count: 178, Neg. LLF: 94.63234252554987
Iteration: 16, Func. Count: 192, Neg. LLF: 92.19273511908679
Iteration: 17, Func. Count: 203, Neg. LLF: 92.16680694183732
Iteration: 18, Func. Count: 214, Neg. LLF: 92.10026796007202
Iteration: 19, Func. Count: 225, Neg. LLF: 92.05737209433055
Iteration: 20, Func. Count: 236, Neg. LLF: 92.03723665642605
Iteration: 21, Func. Count: 247, Neg. LLF: 92.02878718350641
Iteration: 22, Func. Count: 258, Neg. LLF: 92.02630747636384
Iteration: 23, Func. Count: 269, Neg. LLF: 92.02614794473416
Iteration: 24, Func. Count: 280, Neg. LLF: 92.02613038121785
Iteration: 25, Func. Count: 290, Neg. LLF: 92.02613051230911
Optimization terminated successfully (Exit mode 0)
Current function value: 92.02613038121785
Iterations: 25
Function evaluations: 290
Gradient evaluations: 25
Iteration: 1, Func. Count: 9, Neg. LLF: 115.27409745312164
Iteration: 2, Func. Count: 19, Neg. LLF: 164.33738314594754
Iteration: 3, Func. Count: 29, Neg. LLF: 8544231.001713015
Iteration: 4, Func. Count: 38, Neg. LLF: 9212212.440028535
Iteration: 5, Func. Count: 47, Neg. LLF: 104.42646104891527
Iteration: 6, Func. Count: 56, Neg. LLF: 93.10039729742554
Iteration: 7, Func. Count: 64, Neg. LLF: 96.84357322086754
Iteration: 8, Func. Count: 74, Neg. LLF: 106.4680617946266
Iteration: 9, Func. Count: 85, Neg. LLF: 92.34472824084844
Iteration: 10, Func. Count: 93, Neg. LLF: 92.18587421424864
Iteration: 11, Func. Count: 101, Neg. LLF: 92.11938602607678
Iteration: 12, Func. Count: 109, Neg. LLF: 92.09450525610978
Iteration: 13, Func. Count: 117, Neg. LLF: 92.0788189627352
Iteration: 14, Func. Count: 125, Neg. LLF: 92.04914328959173
Iteration: 15, Func. Count: 133, Neg. LLF: 92.03043877973116
Iteration: 16, Func. Count: 141, Neg. LLF: 92.02351312931548
Iteration: 17, Func. Count: 149, Neg. LLF: 92.023068300333
Iteration: 18, Func. Count: 157, Neg. LLF: 92.02305622164339
Iteration: 19, Func. Count: 165, Neg. LLF: 92.0230553118483
Optimization terminated successfully (Exit mode 0)
Current function value: 92.0230553118483
Iterations: 19
Function evaluations: 165
Gradient evaluations: 19
Iteration: 1, Func. Count: 10, Neg. LLF: 110.83032626692504
Iteration: 2, Func. Count: 24, Neg. LLF: 359.8080018432781
Iteration: 3, Func. Count: 34, Neg. LLF: 93.64318857538997
Iteration: 4, Func. Count: 43, Neg. LLF: 97.26796400541194
Iteration: 5, Func. Count: 53, Neg. LLF: 107.2011488877074
Iteration: 6, Func. Count: 64, Neg. LLF: 92.32744121387282
Iteration: 7, Func. Count: 73, Neg. LLF: 92.18969634483916
Iteration: 8, Func. Count: 82, Neg. LLF: 95.33515988729658
Iteration: 9, Func. Count: 92, Neg. LLF: 92.13577515611631
Iteration: 10, Func. Count: 101, Neg. LLF: 92.11207244936631
Iteration: 11, Func. Count: 110, Neg. LLF: 92.10879310721869
Iteration: 12, Func. Count: 119, Neg. LLF: 92.10407898966834
Iteration: 13, Func. Count: 128, Neg. LLF: 92.09389044405465
Iteration: 14, Func. Count: 137, Neg. LLF: 92.07348051062316
Iteration: 15, Func. Count: 146, Neg. LLF: 92.04737866805725
Iteration: 16, Func. Count: 155, Neg. LLF: 92.03062415760536
Iteration: 17, Func. Count: 164, Neg. LLF: 92.02454912507403
Iteration: 18, Func. Count: 173, Neg. LLF: 92.02315160740788
Iteration: 19, Func. Count: 182, Neg. LLF: 92.02306249919415
Iteration: 20, Func. Count: 191, Neg. LLF: 92.02305551561953
Iteration: 21, Func. Count: 199, Neg. LLF: 92.0230555173692
Optimization terminated successfully (Exit mode 0)
Current function value: 92.02305551561953
Iterations: 21
Function evaluations: 199
Gradient evaluations: 21
Iteration: 1, Func. Count: 11, Neg. LLF: 115.32091289404222
Iteration: 2, Func. Count: 26, Neg. LLF: 7901871.130686802
Iteration: 3, Func. Count: 37, Neg. LLF: 95.65426261534401
Iteration: 4, Func. Count: 48, Neg. LLF: 100.16190669180824
Iteration: 5, Func. Count: 59, Neg. LLF: 99.86387609723779
Iteration: 6, Func. Count: 70, Neg. LLF: 92.43205292833952
Iteration: 7, Func. Count: 80, Neg. LLF: 92.25472817833905
Iteration: 8, Func. Count: 90, Neg. LLF: 97.19116940619742
Iteration: 9, Func. Count: 101, Neg. LLF: 92.18094119026715
Iteration: 10, Func. Count: 111, Neg. LLF: 92.16518558400315
Iteration: 11, Func. Count: 121, Neg. LLF: 92.1594223020688
Iteration: 12, Func. Count: 131, Neg. LLF: 92.13943127566512
Iteration: 13, Func. Count: 141, Neg. LLF: 92.13091675416192
Iteration: 14, Func. Count: 151, Neg. LLF: 92.12402267275053
Iteration: 15, Func. Count: 161, Neg. LLF: 92.09733092934837
Iteration: 16, Func. Count: 171, Neg. LLF: 92.06002263512956
Iteration: 17, Func. Count: 181, Neg. LLF: 92.04197919903534
Iteration: 18, Func. Count: 191, Neg. LLF: 92.02953913046913
Iteration: 19, Func. Count: 201, Neg. LLF: 92.02548065112437
Iteration: 20, Func. Count: 211, Neg. LLF: 92.0233223476221
Iteration: 21, Func. Count: 221, Neg. LLF: 92.02307216044643
Iteration: 22, Func. Count: 231, Neg. LLF: 92.0230559081855
Iteration: 23, Func. Count: 241, Neg. LLF: 92.02305531360652
Optimization terminated successfully (Exit mode 0)
Current function value: 92.02305531360652
Iterations: 23
Function evaluations: 241
Gradient evaluations: 23
Iteration: 1, Func. Count: 12, Neg. LLF: 118.60171176485052
Iteration: 2, Func. Count: 28, Neg. LLF: 7576607.503451826
Iteration: 3, Func. Count: 40, Neg. LLF: 100.99610309035602
Iteration: 4, Func. Count: 52, Neg. LLF: 116.74864199019254
Iteration: 5, Func. Count: 64, Neg. LLF: 95.13280743290778
Iteration: 6, Func. Count: 76, Neg. LLF: 94.01564471671355
Iteration: 7, Func. Count: 88, Neg. LLF: 93.06761837155278
Iteration: 8, Func. Count: 99, Neg. LLF: 94.07769741316403
Iteration: 9, Func. Count: 111, Neg. LLF: 95.90839075327582
Iteration: 10, Func. Count: 124, Neg. LLF: 93.13935331301991
Iteration: 11, Func. Count: 136, Neg. LLF: 93.7594306912548
Iteration: 12, Func. Count: 148, Neg. LLF: 92.34480885662434
Iteration: 13, Func. Count: 159, Neg. LLF: 92.23697556574061
Iteration: 14, Func. Count: 170, Neg. LLF: 92.05119136516123
Iteration: 15, Func. Count: 181, Neg. LLF: 94.3063194590543
Iteration: 16, Func. Count: 194, Neg. LLF: 98.18200828945315
Iteration: 17, Func. Count: 207, Neg. LLF: 92.32198729737931
Iteration: 18, Func. Count: 219, Neg. LLF: 92.08105817813033
Iteration: 19, Func. Count: 231, Neg. LLF: 92.02481366548747
Iteration: 20, Func. Count: 242, Neg. LLF: 92.02318806561662
Iteration: 21, Func. Count: 253, Neg. LLF: 92.0230988002273
Iteration: 22, Func. Count: 264, Neg. LLF: 92.0230554558582
Iteration: 23, Func. Count: 274, Neg. LLF: 92.02305559005954
Optimization terminated successfully (Exit mode 0)
Current function value: 92.0230554558582
Iterations: 24
Function evaluations: 274
Gradient evaluations: 23
Iteration: 1, Func. Count: 13, Neg. LLF: 120.94582975560525
Iteration: 2, Func. Count: 30, Neg. LLF: 7428840.4667810835
Iteration: 3, Func. Count: 43, Neg. LLF: 123.9658828366634
Iteration: 4, Func. Count: 56, Neg. LLF: 123.49753009584009
Iteration: 5, Func. Count: 69, Neg. LLF: 93.84356113813996
Iteration: 6, Func. Count: 81, Neg. LLF: 144.71317437700642
Iteration: 7, Func. Count: 94, Neg. LLF: 93.47865313116951
Iteration: 8, Func. Count: 107, Neg. LLF: 92.27837011095143
Iteration: 9, Func. Count: 119, Neg. LLF: 111.10969241872259
Iteration: 10, Func. Count: 133, Neg. LLF: 92.23640010802094
Iteration: 11, Func. Count: 145, Neg. LLF: 92.22786124823547
Iteration: 12, Func. Count: 157, Neg. LLF: 92.18533850656884
Iteration: 13, Func. Count: 169, Neg. LLF: 93.28503725330668
Iteration: 14, Func. Count: 183, Neg. LLF: 92.26539899738451
Iteration: 15, Func. Count: 196, Neg. LLF: 92.05372263576604
Iteration: 16, Func. Count: 209, Neg. LLF: 92.06207082233895
Iteration: 17, Func. Count: 222, Neg. LLF: 92.03463767912083
Iteration: 18, Func. Count: 234, Neg. LLF: 92.0259600081968
Iteration: 19, Func. Count: 246, Neg. LLF: 92.02350209191735
Iteration: 20, Func. Count: 258, Neg. LLF: 92.0232131781211
Iteration: 21, Func. Count: 270, Neg. LLF: 92.02310473943352
Iteration: 22, Func. Count: 282, Neg. LLF: 92.02306445724518
Iteration: 23, Func. Count: 294, Neg. LLF: 92.02305586080654
Iteration: 24, Func. Count: 305, Neg. LLF: 92.02305599353544
Optimization terminated successfully (Exit mode 0)
Current function value: 92.02305586080654
Iterations: 24
Function evaluations: 305
Gradient evaluations: 24
Iteration: 1, Func. Count: 6, Neg. LLF: 162.81147795164185
Iteration: 2, Func. Count: 14, Neg. LLF: 148.18232921543503
Iteration: 3, Func. Count: 21, Neg. LLF: 97.96348568398307
Iteration: 4, Func. Count: 26, Neg. LLF: 97.95874364882685
Iteration: 5, Func. Count: 31, Neg. LLF: 97.95486468500462
Iteration: 6, Func. Count: 36, Neg. LLF: 97.95480350028299
Iteration: 7, Func. Count: 40, Neg. LLF: 97.95480368130077
Optimization terminated successfully (Exit mode 0)
Current function value: 97.95480350028299
Iterations: 7
Function evaluations: 40
Gradient evaluations: 7
Iteration: 1, Func. Count: 7, Neg. LLF: 177.4297682509373
Iteration: 2, Func. Count: 17, Neg. LLF: 97.75738931936074
Iteration: 3, Func. Count: 24, Neg. LLF: 96.42928519764327
Iteration: 4, Func. Count: 30, Neg. LLF: 111.90291286171632
Iteration: 5, Func. Count: 38, Neg. LLF: 96.04524748171617
Iteration: 6, Func. Count: 44, Neg. LLF: 96.01899040619364
Iteration: 7, Func. Count: 50, Neg. LLF: 95.99745461246752
Iteration: 8, Func. Count: 56, Neg. LLF: 95.99743974000503
Iteration: 9, Func. Count: 61, Neg. LLF: 95.99744008700954
Optimization terminated successfully (Exit mode 0)
Current function value: 95.99743974000503
Iterations: 9
Function evaluations: 61
Gradient evaluations: 9
Iteration: 1, Func. Count: 8, Neg. LLF: 173.96473128418683
Iteration: 2, Func. Count: 19, Neg. LLF: 96.89800601228326
Iteration: 3, Func. Count: 26, Neg. LLF: 96.24266950444424
Iteration: 4, Func. Count: 33, Neg. LLF: 171.6636678311791
Iteration: 5, Func. Count: 41, Neg. LLF: 95.91319424381007
Iteration: 6, Func. Count: 48, Neg. LLF: 95.84809327533128
Iteration: 7, Func. Count: 55, Neg. LLF: 102.76982054319168
Iteration: 8, Func. Count: 63, Neg. LLF: 95.77863902530521
Iteration: 9, Func. Count: 70, Neg. LLF: 95.74288532005559
Iteration: 10, Func. Count: 77, Neg. LLF: 95.73758727872733
Iteration: 11, Func. Count: 84, Neg. LLF: 95.73648074472075
Iteration: 12, Func. Count: 91, Neg. LLF: 95.73647680826599
Iteration: 13, Func. Count: 97, Neg. LLF: 95.73647679450782
Optimization terminated successfully (Exit mode 0)
Current function value: 95.73647680826599
Iterations: 13
Function evaluations: 97
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 172.60377519478888
Iteration: 2, Func. Count: 21, Neg. LLF: 97.09668655077485
Iteration: 3, Func. Count: 30, Neg. LLF: 96.21018967157963
Iteration: 4, Func. Count: 38, Neg. LLF: 96.17161057736298
Iteration: 5, Func. Count: 47, Neg. LLF: 96.05214520352072
Iteration: 6, Func. Count: 55, Neg. LLF: 96.04351509838317
Iteration: 7, Func. Count: 63, Neg. LLF: 96.03436056341252
Iteration: 8, Func. Count: 71, Neg. LLF: 96.0339314288334
Iteration: 9, Func. Count: 79, Neg. LLF: 96.03368884982794
Iteration: 10, Func. Count: 87, Neg. LLF: 96.02864096066428
Iteration: 11, Func. Count: 95, Neg. LLF: 96.02782454150328
Iteration: 12, Func. Count: 103, Neg. LLF: 96.0253468024814
Iteration: 13, Func. Count: 111, Neg. LLF: 96.01984695124152
Iteration: 14, Func. Count: 119, Neg. LLF: 96.01204787020652
Iteration: 15, Func. Count: 127, Neg. LLF: 95.99758363672751
Iteration: 16, Func. Count: 135, Neg. LLF: 121.56018262379898
Iteration: 17, Func. Count: 147, Neg. LLF: 95.9974462821124
Iteration: 18, Func. Count: 155, Neg. LLF: 95.9974395775436
Iteration: 19, Func. Count: 162, Neg. LLF: 95.99743923166035
Optimization terminated successfully (Exit mode 0)
Current function value: 95.9974395775436
Iterations: 20
Function evaluations: 162
Gradient evaluations: 19
Iteration: 1, Func. Count: 10, Neg. LLF: 175.23137477606937
Iteration: 2, Func. Count: 24, Neg. LLF: 97.37322337296726
Iteration: 3, Func. Count: 34, Neg. LLF: 96.08991137874439
Iteration: 4, Func. Count: 43, Neg. LLF: 96.04837873193573
Iteration: 5, Func. Count: 52, Neg. LLF: 96.05148295242877
Iteration: 6, Func. Count: 62, Neg. LLF: 95.94811364157464
Iteration: 7, Func. Count: 71, Neg. LLF: 95.93510544239984
Iteration: 8, Func. Count: 80, Neg. LLF: 95.9299275701277
Iteration: 9, Func. Count: 89, Neg. LLF: 95.92991661493552
Iteration: 10, Func. Count: 97, Neg. LLF: 95.92991671303352
Optimization terminated successfully (Exit mode 0)
Current function value: 95.92991661493552
Iterations: 10
Function evaluations: 97
Gradient evaluations: 10
Iteration: 1, Func. Count: 7, Neg. LLF: 163.37606218682586
Iteration: 2, Func. Count: 16, Neg. LLF: 167.65204537963473
Iteration: 3, Func. Count: 24, Neg. LLF: 98.03553141499773
Iteration: 4, Func. Count: 30, Neg. LLF: 98.40835763995398
Iteration: 5, Func. Count: 38, Neg. LLF: 98.78607113677177
Iteration: 6, Func. Count: 45, Neg. LLF: 96.64019937215775
Iteration: 7, Func. Count: 51, Neg. LLF: 96.50266938342071
Iteration: 8, Func. Count: 57, Neg. LLF: 96.46363909948607
Iteration: 9, Func. Count: 63, Neg. LLF: 96.43325092541124
Iteration: 10, Func. Count: 69, Neg. LLF: 96.41945981996216
Iteration: 11, Func. Count: 75, Neg. LLF: 96.41865463506275
Iteration: 12, Func. Count: 81, Neg. LLF: 96.41859989602942
Iteration: 13, Func. Count: 87, Neg. LLF: 96.41859914936845
Optimization terminated successfully (Exit mode 0)
Current function value: 96.41859914936845
Iterations: 13
Function evaluations: 87
Gradient evaluations: 13
Iteration: 1, Func. Count: 8, Neg. LLF: 124.3708646319272
Iteration: 2, Func. Count: 19, Neg. LLF: 107.04627532056358
Iteration: 3, Func. Count: 28, Neg. LLF: 110.15617837138362
Iteration: 4, Func. Count: 36, Neg. LLF: 96.96373008852603
Iteration: 5, Func. Count: 43, Neg. LLF: 96.928469929248
Iteration: 6, Func. Count: 50, Neg. LLF: 96.89839359538422
Iteration: 7, Func. Count: 57, Neg. LLF: 96.88049565856817
Iteration: 8, Func. Count: 64, Neg. LLF: 96.79827171256157
Iteration: 9, Func. Count: 71, Neg. LLF: 96.2750999984593
Iteration: 10, Func. Count: 78, Neg. LLF: 104.80336015527433
Iteration: 11, Func. Count: 87, Neg. LLF: 96.14532066271826
Iteration: 12, Func. Count: 94, Neg. LLF: 96.08665568237792
Iteration: 13, Func. Count: 101, Neg. LLF: 96.04600085428704
Iteration: 14, Func. Count: 108, Neg. LLF: 95.99939983885689
Iteration: 15, Func. Count: 115, Neg. LLF: 95.99743098448644
Iteration: 16, Func. Count: 122, Neg. LLF: 107.34606868175496
Iteration: 17, Func. Count: 133, Neg. LLF: 95.99761757910645
Iteration: 18, Func. Count: 140, Neg. LLF: 95.99743956335021
Iteration: 19, Func. Count: 146, Neg. LLF: 95.99743991149023
Optimization terminated successfully (Exit mode 0)
Current function value: 95.99743956335021
Iterations: 20
Function evaluations: 146
Gradient evaluations: 19
Iteration: 1, Func. Count: 9, Neg. LLF: 172.43144995591553
Iteration: 2, Func. Count: 21, Neg. LLF: 104.31544322790407
Iteration: 3, Func. Count: 30, Neg. LLF: 102.47140066945333
Iteration: 4, Func. Count: 39, Neg. LLF: 104.02773667567436
Iteration: 5, Func. Count: 48, Neg. LLF: 96.13782164985886
Iteration: 6, Func. Count: 56, Neg. LLF: 97.15429441656386
Iteration: 7, Func. Count: 65, Neg. LLF: 95.76110768301501
Iteration: 8, Func. Count: 73, Neg. LLF: 95.73696214614418
Iteration: 9, Func. Count: 81, Neg. LLF: 95.7338851567853
Iteration: 10, Func. Count: 89, Neg. LLF: 95.73332293221377
Iteration: 11, Func. Count: 97, Neg. LLF: 95.73249590528067
Iteration: 12, Func. Count: 105, Neg. LLF: 95.73179439054377
Iteration: 13, Func. Count: 113, Neg. LLF: 95.73159184880338
Iteration: 14, Func. Count: 121, Neg. LLF: 95.7315627478236
Iteration: 15, Func. Count: 129, Neg. LLF: 95.73156193039573
Optimization terminated successfully (Exit mode 0)
Current function value: 95.73156193039573
Iterations: 15
Function evaluations: 129
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 146.9208880453607
Iteration: 2, Func. Count: 24, Neg. LLF: 108.43789326872424
Iteration: 3, Func. Count: 34, Neg. LLF: 113.44761181571667
Iteration: 4, Func. Count: 44, Neg. LLF: 98.58792285868904
Iteration: 5, Func. Count: 54, Neg. LLF: 97.84734008977297
Iteration: 6, Func. Count: 64, Neg. LLF: 97.46336512076509
Iteration: 7, Func. Count: 74, Neg. LLF: 97.93657312159652
Iteration: 8, Func. Count: 84, Neg. LLF: 120.32837628654595
Iteration: 9, Func. Count: 95, Neg. LLF: 95.74019181692205
Iteration: 10, Func. Count: 104, Neg. LLF: 95.70312254946232
Iteration: 11, Func. Count: 113, Neg. LLF: 95.6913781440752
Iteration: 12, Func. Count: 122, Neg. LLF: 95.68386560956516
Iteration: 13, Func. Count: 131, Neg. LLF: 95.67760110468753
Iteration: 14, Func. Count: 140, Neg. LLF: 95.66387417521518
Iteration: 15, Func. Count: 149, Neg. LLF: 95.64469769203266
Iteration: 16, Func. Count: 158, Neg. LLF: 95.63495810027406
Iteration: 17, Func. Count: 167, Neg. LLF: 95.63270944744468
Iteration: 18, Func. Count: 176, Neg. LLF: 95.63250873402677
Iteration: 19, Func. Count: 185, Neg. LLF: 95.63250488027025
Iteration: 20, Func. Count: 193, Neg. LLF: 95.63250487537265
Optimization terminated successfully (Exit mode 0)
Current function value: 95.63250488027025
Iterations: 20
Function evaluations: 193
Gradient evaluations: 20
Iteration: 1, Func. Count: 11, Neg. LLF: 175.48587813093127
Iteration: 2, Func. Count: 25, Neg. LLF: 101.10219673441051
Iteration: 3, Func. Count: 36, Neg. LLF: 102.13572668601181
Iteration: 4, Func. Count: 47, Neg. LLF: 102.11644690885309
Iteration: 5, Func. Count: 58, Neg. LLF: 100.10437401209802
Iteration: 6, Func. Count: 69, Neg. LLF: 99.81098578511089
Iteration: 7, Func. Count: 80, Neg. LLF: 99.51791016961681
Iteration: 8, Func. Count: 91, Neg. LLF: 99.21390052726163
Iteration: 9, Func. Count: 102, Neg. LLF: 96.62199545205189
Iteration: 10, Func. Count: 113, Neg. LLF: 95.91434478785085
Iteration: 11, Func. Count: 123, Neg. LLF: 95.76442484890478
Iteration: 12, Func. Count: 133, Neg. LLF: 95.72293479384714
Iteration: 13, Func. Count: 144, Neg. LLF: 95.46738036377103
Iteration: 14, Func. Count: 154, Neg. LLF: 95.45160592598876
Iteration: 15, Func. Count: 164, Neg. LLF: 95.44401202935794
Iteration: 16, Func. Count: 174, Neg. LLF: 95.44059048717892
Iteration: 17, Func. Count: 184, Neg. LLF: 95.43998104055467
Iteration: 18, Func. Count: 194, Neg. LLF: 95.43996070820836
Iteration: 19, Func. Count: 204, Neg. LLF: 95.43995866232096
Iteration: 20, Func. Count: 213, Neg. LLF: 95.4399586375226
Optimization terminated successfully (Exit mode 0)
Current function value: 95.43995866232096
Iterations: 20
Function evaluations: 213
Gradient evaluations: 20
Iteration: 1, Func. Count: 8, Neg. LLF: 167.71190540552087
Iteration: 2, Func. Count: 18, Neg. LLF: 164.1664317746897
Iteration: 3, Func. Count: 26, Neg. LLF: 98.00654599824016
Iteration: 4, Func. Count: 33, Neg. LLF: 100.85540523145713
Iteration: 5, Func. Count: 42, Neg. LLF: 100.50126772597243
Iteration: 6, Func. Count: 51, Neg. LLF: 96.60313228179535
Iteration: 7, Func. Count: 58, Neg. LLF: 96.50429178680137
Iteration: 8, Func. Count: 65, Neg. LLF: 96.43138133896751
Iteration: 9, Func. Count: 72, Neg. LLF: 96.42260363153943
Iteration: 10, Func. Count: 79, Neg. LLF: 96.41864272363327
Iteration: 11, Func. Count: 86, Neg. LLF: 96.41860309865315
Iteration: 12, Func. Count: 93, Neg. LLF: 96.41859917972215
Iteration: 13, Func. Count: 99, Neg. LLF: 96.41859903660716
Optimization terminated successfully (Exit mode 0)
Current function value: 96.41859917972215
Iterations: 13
Function evaluations: 99
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 124.22991669985063
Iteration: 2, Func. Count: 21, Neg. LLF: 106.74355729558863
Iteration: 3, Func. Count: 31, Neg. LLF: 108.63478800868916
Iteration: 4, Func. Count: 40, Neg. LLF: 96.92433962940237
Iteration: 5, Func. Count: 48, Neg. LLF: 96.85744055903379
Iteration: 6, Func. Count: 56, Neg. LLF: 96.52179172722957
Iteration: 7, Func. Count: 64, Neg. LLF: 96.262902643399
Iteration: 8, Func. Count: 72, Neg. LLF: 96.03214720540129
Iteration: 9, Func. Count: 80, Neg. LLF: 96.00061979638443
Iteration: 10, Func. Count: 88, Neg. LLF: 95.99799016016672
Iteration: 11, Func. Count: 106, Neg. LLF: 96.00152266199747
Iteration: 12, Func. Count: 115, Neg. LLF: 95.9999930464609
Iteration: 13, Func. Count: 123, Neg. LLF: 96.59519950491962
Iteration: 14, Func. Count: 134, Neg. LLF: 95.99744873268789
Iteration: 15, Func. Count: 142, Neg. LLF: 95.99745311377646
Iteration: 16, Func. Count: 151, Neg. LLF: 95.99744000673195
Iteration: 17, Func. Count: 158, Neg. LLF: 95.99744035350957
Optimization terminated successfully (Exit mode 0)
Current function value: 95.99744000673195
Iterations: 18
Function evaluations: 158
Gradient evaluations: 17
Iteration: 1, Func. Count: 10, Neg. LLF: 174.3535764963104
Iteration: 2, Func. Count: 23, Neg. LLF: 104.44933854196243
Iteration: 3, Func. Count: 33, Neg. LLF: 101.49971107344516
Iteration: 4, Func. Count: 43, Neg. LLF: 105.23862371684568
Iteration: 5, Func. Count: 53, Neg. LLF: 96.70470863303542
Iteration: 6, Func. Count: 62, Neg. LLF: 96.3018143209078
Iteration: 7, Func. Count: 71, Neg. LLF: 95.92302960500373
Iteration: 8, Func. Count: 80, Neg. LLF: 95.85004749539776
Iteration: 9, Func. Count: 89, Neg. LLF: 95.78106214415361
Iteration: 10, Func. Count: 98, Neg. LLF: 95.77637981887575
Iteration: 11, Func. Count: 107, Neg. LLF: 95.75368459089616
Iteration: 12, Func. Count: 116, Neg. LLF: 95.74089260710937
Iteration: 13, Func. Count: 125, Neg. LLF: 95.7337344664989
Iteration: 14, Func. Count: 134, Neg. LLF: 95.73157384639192
Iteration: 15, Func. Count: 143, Neg. LLF: 95.73156249192706
Iteration: 16, Func. Count: 152, Neg. LLF: 95.73156194025925
Optimization terminated successfully (Exit mode 0)
Current function value: 95.73156194025925
Iterations: 16
Function evaluations: 152
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 149.53454747487515
Iteration: 2, Func. Count: 26, Neg. LLF: 107.9291457880115
Iteration: 3, Func. Count: 37, Neg. LLF: 114.00085922653976
Iteration: 4, Func. Count: 48, Neg. LLF: 98.56720233265752
Iteration: 5, Func. Count: 59, Neg. LLF: 97.80436817045003
Iteration: 6, Func. Count: 70, Neg. LLF: 97.82344054432895
Iteration: 7, Func. Count: 81, Neg. LLF: 97.74278551890859
Iteration: 8, Func. Count: 92, Neg. LLF: 128.21773906425173
Iteration: 9, Func. Count: 104, Neg. LLF: 95.75290961144478
Iteration: 10, Func. Count: 114, Neg. LLF: 95.70801887858548
Iteration: 11, Func. Count: 124, Neg. LLF: 95.6892968277322
Iteration: 12, Func. Count: 134, Neg. LLF: 95.68048065630343
Iteration: 13, Func. Count: 144, Neg. LLF: 95.67512897625816
Iteration: 14, Func. Count: 154, Neg. LLF: 95.66739418349717
Iteration: 15, Func. Count: 164, Neg. LLF: 95.65288612934104
Iteration: 16, Func. Count: 174, Neg. LLF: 95.63746750555659
Iteration: 17, Func. Count: 184, Neg. LLF: 95.63335198498568
Iteration: 18, Func. Count: 194, Neg. LLF: 95.63250627055503
Iteration: 19, Func. Count: 204, Neg. LLF: 95.63250485232648
Iteration: 20, Func. Count: 213, Neg. LLF: 95.63250484731877
Optimization terminated successfully (Exit mode 0)
Current function value: 95.63250485232648
Iterations: 20
Function evaluations: 213
Gradient evaluations: 20
Iteration: 1, Func. Count: 12, Neg. LLF: 177.3268722224008
Iteration: 2, Func. Count: 28, Neg. LLF: 96.92901639534644
Iteration: 3, Func. Count: 39, Neg. LLF: 96.1038333939529
Iteration: 4, Func. Count: 50, Neg. LLF: 96.04172337998355
Iteration: 5, Func. Count: 61, Neg. LLF: 96.0752533727477
Iteration: 6, Func. Count: 73, Neg. LLF: 96.01286472341067
Iteration: 7, Func. Count: 84, Neg. LLF: 96.03126818837976
Iteration: 8, Func. Count: 96, Neg. LLF: 95.94205858314031
Iteration: 9, Func. Count: 107, Neg. LLF: 95.92999296361003
Iteration: 10, Func. Count: 118, Neg. LLF: 95.92994223165489
Iteration: 11, Func. Count: 129, Neg. LLF: 95.92991649808668
Iteration: 12, Func. Count: 140, Neg. LLF: 95.92995138919493
Optimization terminated successfully (Exit mode 0)
Current function value: 95.92991643594871
Iterations: 13
Function evaluations: 142
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 121.79937599219122
Iteration: 2, Func. Count: 19, Neg. LLF: 164.12946371076464
Iteration: 3, Func. Count: 29, Neg. LLF: 8389442.978824366
Iteration: 4, Func. Count: 38, Neg. LLF: 3671674.6001176042
Iteration: 5, Func. Count: 47, Neg. LLF: 104.54570116654219
Iteration: 6, Func. Count: 56, Neg. LLF: 93.07889906770458
Iteration: 7, Func. Count: 64, Neg. LLF: 92.62715733645317
Iteration: 8, Func. Count: 72, Neg. LLF: 92.3041938884584
Iteration: 9, Func. Count: 80, Neg. LLF: 92.33704627497467
Iteration: 10, Func. Count: 89, Neg. LLF: 92.13142286689849
Iteration: 11, Func. Count: 97, Neg. LLF: 95.4114378275556
Iteration: 12, Func. Count: 107, Neg. LLF: 92.10692015063992
Iteration: 13, Func. Count: 115, Neg. LLF: 92.07645896668556
Iteration: 14, Func. Count: 123, Neg. LLF: 92.06441709780705
Iteration: 15, Func. Count: 131, Neg. LLF: 92.0631638177874
Iteration: 16, Func. Count: 139, Neg. LLF: 92.06307478743271
Iteration: 17, Func. Count: 147, Neg. LLF: 92.063073242873
Iteration: 18, Func. Count: 154, Neg. LLF: 92.06307324287607
Optimization terminated successfully (Exit mode 0)
Current function value: 92.063073242873
Iterations: 18
Function evaluations: 154
Gradient evaluations: 18
Iteration: 1, Func. Count: 10, Neg. LLF: 93.17325142762935
Iteration: 2, Func. Count: 19, Neg. LLF: 231.132391195122
Iteration: 3, Func. Count: 29, Neg. LLF: 98.56659030941981
Iteration: 4, Func. Count: 40, Neg. LLF: 99.66644037743642
Iteration: 5, Func. Count: 50, Neg. LLF: 150.17483426035648
Iteration: 6, Func. Count: 60, Neg. LLF: 1170.2426706572737
Iteration: 7, Func. Count: 72, Neg. LLF: 99.09222800886477
Iteration: 8, Func. Count: 82, Neg. LLF: 92.07130126361196
Iteration: 9, Func. Count: 91, Neg. LLF: 92.02927271218056
Iteration: 10, Func. Count: 100, Neg. LLF: 92.02678346915262
Iteration: 11, Func. Count: 109, Neg. LLF: 92.02615209287853
Iteration: 12, Func. Count: 118, Neg. LLF: 92.02613812048277
Iteration: 13, Func. Count: 127, Neg. LLF: 92.02613121952989
Iteration: 14, Func. Count: 136, Neg. LLF: 92.02612983679292
Iteration: 15, Func. Count: 144, Neg. LLF: 92.02612983681709
Optimization terminated successfully (Exit mode 0)
Current function value: 92.02612983679292
Iterations: 15
Function evaluations: 144
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 115.72719314466573
Iteration: 2, Func. Count: 26, Neg. LLF: 7849421.120254769
Iteration: 3, Func. Count: 37, Neg. LLF: 95.8846240031383
Iteration: 4, Func. Count: 48, Neg. LLF: 100.81213079187577
Iteration: 5, Func. Count: 59, Neg. LLF: 100.95479551741836
Iteration: 6, Func. Count: 70, Neg. LLF: 92.4707655062777
Iteration: 7, Func. Count: 80, Neg. LLF: 92.27594765526885
Iteration: 8, Func. Count: 90, Neg. LLF: 95.74851920456535
Iteration: 9, Func. Count: 101, Neg. LLF: 92.21575194670002
Iteration: 10, Func. Count: 111, Neg. LLF: 92.20286810704738
Iteration: 11, Func. Count: 121, Neg. LLF: 92.17978384048492
Iteration: 12, Func. Count: 131, Neg. LLF: 92.16902515470271
Iteration: 13, Func. Count: 141, Neg. LLF: 92.15262650100348
Iteration: 14, Func. Count: 151, Neg. LLF: 92.14643740140734
Iteration: 15, Func. Count: 161, Neg. LLF: 92.13729023795996
Iteration: 16, Func. Count: 171, Neg. LLF: 92.11648887998115
Iteration: 17, Func. Count: 181, Neg. LLF: 92.07997383898378
Iteration: 18, Func. Count: 191, Neg. LLF: 92.04201000279879
Iteration: 19, Func. Count: 201, Neg. LLF: 92.02724426317226
Iteration: 20, Func. Count: 211, Neg. LLF: 92.02625629298215
Iteration: 21, Func. Count: 221, Neg. LLF: 92.02614448566881
Iteration: 22, Func. Count: 231, Neg. LLF: 92.02613022835186
Iteration: 23, Func. Count: 240, Neg. LLF: 92.02613025182481
Optimization terminated successfully (Exit mode 0)
Current function value: 92.02613022835186
Iterations: 23
Function evaluations: 240
Gradient evaluations: 23
Iteration: 1, Func. Count: 12, Neg. LLF: 119.15850614555141
Iteration: 2, Func. Count: 28, Neg. LLF: 7547285.635559298
Iteration: 3, Func. Count: 40, Neg. LLF: 101.80138416615218
Iteration: 4, Func. Count: 52, Neg. LLF: 117.35194399892833
Iteration: 5, Func. Count: 64, Neg. LLF: 95.21214698389316
Iteration: 6, Func. Count: 76, Neg. LLF: 93.1534431298576
Iteration: 7, Func. Count: 87, Neg. LLF: 112.13926071164367
Iteration: 8, Func. Count: 101, Neg. LLF: 101.68904613179537
Iteration: 9, Func. Count: 115, Neg. LLF: 93.3102580741641
Iteration: 10, Func. Count: 127, Neg. LLF: 94.81351554406257
Iteration: 11, Func. Count: 139, Neg. LLF: 93.01839651257427
Iteration: 12, Func. Count: 151, Neg. LLF: 93.98691336422381
Iteration: 13, Func. Count: 163, Neg. LLF: 92.68516629393426
Iteration: 14, Func. Count: 174, Neg. LLF: 92.78074280159294
Iteration: 15, Func. Count: 186, Neg. LLF: 92.70690522295017
Iteration: 16, Func. Count: 198, Neg. LLF: 92.48176349231967
Iteration: 17, Func. Count: 209, Neg. LLF: 92.52727956196667
Iteration: 18, Func. Count: 221, Neg. LLF: 92.46257149992589
Iteration: 19, Func. Count: 232, Neg. LLF: 92.46178637167917
Iteration: 20, Func. Count: 243, Neg. LLF: 92.4613790791413
Iteration: 21, Func. Count: 254, Neg. LLF: 92.46126051074867
Iteration: 22, Func. Count: 265, Neg. LLF: 92.46117004750852
Iteration: 23, Func. Count: 276, Neg. LLF: 92.46115910096326
Iteration: 24, Func. Count: 287, Neg. LLF: 92.46115835320343
Optimization terminated successfully (Exit mode 0)
Current function value: 92.46115835320343
Iterations: 24
Function evaluations: 287
Gradient evaluations: 24
Iteration: 1, Func. Count: 13, Neg. LLF: 121.47722478878768
Iteration: 2, Func. Count: 30, Neg. LLF: 7406623.306273492
Iteration: 3, Func. Count: 43, Neg. LLF: 128.2626161159933
Iteration: 4, Func. Count: 56, Neg. LLF: 125.39110677065757
Iteration: 5, Func. Count: 69, Neg. LLF: 95.34924682750031
Iteration: 6, Func. Count: 82, Neg. LLF: 94.73186377392496
Iteration: 7, Func. Count: 95, Neg. LLF: 93.27742844720676
Iteration: 8, Func. Count: 107, Neg. LLF: 93.10441281020613
Iteration: 9, Func. Count: 119, Neg. LLF: 97.09815114101133
Iteration: 10, Func. Count: 134, Neg. LLF: 93.05608550617404
Iteration: 11, Func. Count: 147, Neg. LLF: 93.87943071114807
Iteration: 12, Func. Count: 160, Neg. LLF: 92.8108298521172
Iteration: 13, Func. Count: 173, Neg. LLF: 93.17825117944872
Iteration: 14, Func. Count: 186, Neg. LLF: 92.62055092654236
Iteration: 15, Func. Count: 198, Neg. LLF: 92.64321312674721
Iteration: 16, Func. Count: 211, Neg. LLF: 92.50848390775847
Iteration: 17, Func. Count: 223, Neg. LLF: 92.48337992048397
Iteration: 18, Func. Count: 235, Neg. LLF: 92.46428867419009
Iteration: 19, Func. Count: 247, Neg. LLF: 92.46252978844774
Iteration: 20, Func. Count: 259, Neg. LLF: 92.46126550424061
Iteration: 21, Func. Count: 271, Neg. LLF: 92.46116615856714
Iteration: 22, Func. Count: 283, Neg. LLF: 92.46115876768604
Iteration: 23, Func. Count: 294, Neg. LLF: 92.4611587618818
Optimization terminated successfully (Exit mode 0)
Current function value: 92.46115876768604
Iterations: 23
Function evaluations: 294
Gradient evaluations: 23
Iteration: 1, Func. Count: 10, Neg. LLF: 128.0773856254629
Iteration: 2, Func. Count: 22, Neg. LLF: 187.16231631221743
Iteration: 3, Func. Count: 33, Neg. LLF: 8320684.786526953
Iteration: 4, Func. Count: 43, Neg. LLF: 94.53572663864259
Iteration: 5, Func. Count: 52, Neg. LLF: 230.4794684876836
Iteration: 6, Func. Count: 63, Neg. LLF: 108.93750717503809
Iteration: 7, Func. Count: 75, Neg. LLF: 92.86322860958413
Iteration: 8, Func. Count: 84, Neg. LLF: 92.59573154382129
Iteration: 9, Func. Count: 93, Neg. LLF: 92.96795200449388
Iteration: 10, Func. Count: 103, Neg. LLF: 92.28534873842189
Iteration: 11, Func. Count: 112, Neg. LLF: 92.16790112891078
Iteration: 12, Func. Count: 121, Neg. LLF: 92.42112195329508
Iteration: 13, Func. Count: 131, Neg. LLF: 92.02868177091942
Iteration: 14, Func. Count: 140, Neg. LLF: 92.02399168488903
Iteration: 15, Func. Count: 149, Neg. LLF: 92.02310643474836
Iteration: 16, Func. Count: 158, Neg. LLF: 92.02306686200069
Iteration: 17, Func. Count: 167, Neg. LLF: 92.02305537578879
Iteration: 18, Func. Count: 175, Neg. LLF: 92.02305537579204
Optimization terminated successfully (Exit mode 0)
Current function value: 92.02305537578879
Iterations: 18
Function evaluations: 175
Gradient evaluations: 18
Iteration: 1, Func. Count: 11, Neg. LLF: 111.16460797631872
Iteration: 2, Func. Count: 26, Neg. LLF: 316.7737289171417
Iteration: 3, Func. Count: 37, Neg. LLF: 93.07532340894237
Iteration: 4, Func. Count: 47, Neg. LLF: 96.59039345568338
Iteration: 5, Func. Count: 58, Neg. LLF: 92.29752433847975
Iteration: 6, Func. Count: 68, Neg. LLF: 92.20447399251658
Iteration: 7, Func. Count: 78, Neg. LLF: 93.34870331725851
Iteration: 8, Func. Count: 89, Neg. LLF: 92.14656404113634
Iteration: 9, Func. Count: 99, Neg. LLF: 92.11428997045103
Iteration: 10, Func. Count: 109, Neg. LLF: 92.11162691584431
Iteration: 11, Func. Count: 119, Neg. LLF: 92.10465361564745
Iteration: 12, Func. Count: 129, Neg. LLF: 92.09231123652022
Iteration: 13, Func. Count: 139, Neg. LLF: 92.06925286103645
Iteration: 14, Func. Count: 149, Neg. LLF: 92.04555024449346
Iteration: 15, Func. Count: 159, Neg. LLF: 92.03055957390441
Iteration: 16, Func. Count: 169, Neg. LLF: 92.02425346586513
Iteration: 17, Func. Count: 179, Neg. LLF: 92.0231217641211
Iteration: 18, Func. Count: 189, Neg. LLF: 92.0230612861062
Iteration: 19, Func. Count: 199, Neg. LLF: 92.02305532068175
Iteration: 20, Func. Count: 208, Neg. LLF: 92.02305532245558
Optimization terminated successfully (Exit mode 0)
Current function value: 92.02305532068175
Iterations: 20
Function evaluations: 208
Gradient evaluations: 20
Iteration: 1, Func. Count: 12, Neg. LLF: 116.02444116206578
Iteration: 2, Func. Count: 28, Neg. LLF: 7885588.498759077
Iteration: 3, Func. Count: 40, Neg. LLF: 95.82478881808458
Iteration: 4, Func. Count: 52, Neg. LLF: 101.15650157187473
Iteration: 5, Func. Count: 64, Neg. LLF: 101.1033642095826
Iteration: 6, Func. Count: 76, Neg. LLF: 92.47324317326635
Iteration: 7, Func. Count: 87, Neg. LLF: 92.27289471846854
Iteration: 8, Func. Count: 98, Neg. LLF: 96.53571403935578
Iteration: 9, Func. Count: 110, Neg. LLF: 92.23509907397735
Iteration: 10, Func. Count: 122, Neg. LLF: 92.177117057593
Iteration: 11, Func. Count: 133, Neg. LLF: 92.16584519078454
Iteration: 12, Func. Count: 144, Neg. LLF: 92.1505850853307
Iteration: 13, Func. Count: 155, Neg. LLF: 92.14168903209125
Iteration: 14, Func. Count: 166, Neg. LLF: 92.13475929936722
Iteration: 15, Func. Count: 177, Neg. LLF: 92.12542562089799
Iteration: 16, Func. Count: 188, Neg. LLF: 92.10416969879893
Iteration: 17, Func. Count: 199, Neg. LLF: 92.06918155349159
Iteration: 18, Func. Count: 210, Neg. LLF: 92.03677977099194
Iteration: 19, Func. Count: 221, Neg. LLF: 92.02570357893474
Iteration: 20, Func. Count: 232, Neg. LLF: 92.02352141656115
Iteration: 21, Func. Count: 243, Neg. LLF: 92.02309175610183
Iteration: 22, Func. Count: 254, Neg. LLF: 92.02305649727519
Iteration: 23, Func. Count: 265, Neg. LLF: 92.02305532489736
Iteration: 24, Func. Count: 275, Neg. LLF: 92.02305534504796
Optimization terminated successfully (Exit mode 0)
Current function value: 92.02305532489736
Iterations: 24
Function evaluations: 275
Gradient evaluations: 24
Iteration: 1, Func. Count: 13, Neg. LLF: 119.35689206007179
Iteration: 2, Func. Count: 30, Neg. LLF: 7566482.046871468
Iteration: 3, Func. Count: 43, Neg. LLF: 101.89680344774123
Iteration: 4, Func. Count: 56, Neg. LLF: 117.77103732514166
Iteration: 5, Func. Count: 69, Neg. LLF: 95.26048207703606
Iteration: 6, Func. Count: 82, Neg. LLF: 93.26789248543105
Iteration: 7, Func. Count: 94, Neg. LLF: 115.55442650833535
Iteration: 8, Func. Count: 109, Neg. LLF: 101.1064385487112
Iteration: 9, Func. Count: 124, Neg. LLF: 93.97531913563073
Iteration: 10, Func. Count: 137, Neg. LLF: 92.96310364359661
Iteration: 11, Func. Count: 150, Neg. LLF: 94.75159834958562
Iteration: 12, Func. Count: 163, Neg. LLF: 92.65933694350531
Iteration: 13, Func. Count: 175, Neg. LLF: 92.55053330386993
Iteration: 14, Func. Count: 187, Neg. LLF: 92.49034567067184
Iteration: 15, Func. Count: 199, Neg. LLF: 92.43119343125898
Iteration: 16, Func. Count: 211, Neg. LLF: 92.40367998896633
Iteration: 17, Func. Count: 223, Neg. LLF: 92.38480241580149
Iteration: 18, Func. Count: 235, Neg. LLF: 92.38104952564922
Iteration: 19, Func. Count: 247, Neg. LLF: 92.38049092670508
Iteration: 20, Func. Count: 259, Neg. LLF: 92.38032062068828
Iteration: 21, Func. Count: 271, Neg. LLF: 92.38026414151454
Iteration: 22, Func. Count: 283, Neg. LLF: 92.38025606656134
Iteration: 23, Func. Count: 295, Neg. LLF: 92.38025517635866
Optimization terminated successfully (Exit mode 0)
Current function value: 92.38025517635866
Iterations: 23
Function evaluations: 295
Gradient evaluations: 23
Iteration: 1, Func. Count: 14, Neg. LLF: 121.64222841810192
Iteration: 2, Func. Count: 32, Neg. LLF: 7417405.509462487
Iteration: 3, Func. Count: 46, Neg. LLF: 129.46159557498743
Iteration: 4, Func. Count: 60, Neg. LLF: 125.7417319581941
Iteration: 5, Func. Count: 74, Neg. LLF: 96.21122457433857
Iteration: 6, Func. Count: 88, Neg. LLF: 95.40793855777999
Iteration: 7, Func. Count: 102, Neg. LLF: 94.74436121732265
Iteration: 8, Func. Count: 116, Neg. LLF: 93.23577585121566
Iteration: 9, Func. Count: 129, Neg. LLF: 92.99582575925598
Iteration: 10, Func. Count: 142, Neg. LLF: 95.44063768160085
Iteration: 11, Func. Count: 157, Neg. LLF: 92.31533299126028
Iteration: 12, Func. Count: 170, Neg. LLF: 92.18815153568251
Iteration: 13, Func. Count: 183, Neg. LLF: 92.15376999092427
Iteration: 14, Func. Count: 196, Neg. LLF: 92.12896360434593
Iteration: 15, Func. Count: 209, Neg. LLF: 92.11553933179178
Iteration: 16, Func. Count: 222, Neg. LLF: 92.09433601118528
Iteration: 17, Func. Count: 235, Neg. LLF: 92.07535748224069
Iteration: 18, Func. Count: 248, Neg. LLF: 92.05202613963066
Iteration: 19, Func. Count: 261, Neg. LLF: 92.04715665500203
Iteration: 20, Func. Count: 274, Neg. LLF: 92.04314888801275
Iteration: 21, Func. Count: 287, Neg. LLF: 92.03870503004764
Iteration: 22, Func. Count: 300, Neg. LLF: 92.03325975547762
Iteration: 23, Func. Count: 313, Neg. LLF: 92.0284596963796
Iteration: 24, Func. Count: 326, Neg. LLF: 92.02361016375603
Iteration: 25, Func. Count: 339, Neg. LLF: 92.0235690564251
Iteration: 26, Func. Count: 352, Neg. LLF: 92.02304247004142
Iteration: 27, Func. Count: 365, Neg. LLF: 92.02304285940775
Iteration: 28, Func. Count: 378, Neg. LLF: 92.0241853641055
Iteration: 29, Func. Count: 393, Neg. LLF: 92.02327301178889
Iteration: 30, Func. Count: 407, Neg. LLF: 92.02309914602296
Iteration: 31, Func. Count: 421, Neg. LLF: 92.02305761744503
Iteration: 32, Func. Count: 435, Neg. LLF: 92.02305534288794
Iteration: 33, Func. Count: 447, Neg. LLF: 92.02305547567546
Optimization terminated successfully (Exit mode 0)
Current function value: 92.02305534288794
Iterations: 34
Function evaluations: 447
Gradient evaluations: 33
Iteration: 1, Func. Count: 7, Neg. LLF: 114.11303126442334
Iteration: 2, Func. Count: 15, Neg. LLF: 169.05632251614767
Iteration: 3, Func. Count: 22, Neg. LLF: 373.15578519927925
Iteration: 4, Func. Count: 29, Neg. LLF: 13497.73247281265
Iteration: 5, Func. Count: 36, Neg. LLF: 98.7072778701148
Iteration: 6, Func. Count: 43, Neg. LLF: 94.36643403616718
Iteration: 7, Func. Count: 49, Neg. LLF: 102.6523447191331
Iteration: 8, Func. Count: 57, Neg. LLF: 98.24359099237059
Iteration: 9, Func. Count: 65, Neg. LLF: 94.16904402236747
Iteration: 10, Func. Count: 71, Neg. LLF: 94.16784343317366
Iteration: 11, Func. Count: 77, Neg. LLF: 94.16714183718014
Iteration: 12, Func. Count: 83, Neg. LLF: 94.16660444201439
Iteration: 13, Func. Count: 89, Neg. LLF: 94.16654149905553
Iteration: 14, Func. Count: 95, Neg. LLF: 94.1665362924161
Iteration: 15, Func. Count: 100, Neg. LLF: 94.16653629241749
Optimization terminated successfully (Exit mode 0)
Current function value: 94.1665362924161
Iterations: 15
Function evaluations: 100
Gradient evaluations: 15
Iteration: 1, Func. Count: 8, Neg. LLF: 100.83330848822911
Iteration: 2, Func. Count: 17, Neg. LLF: 112.58174393884691
Iteration: 3, Func. Count: 25, Neg. LLF: 296.63526458292915
Iteration: 4, Func. Count: 33, Neg. LLF: 94.19734106544311
Iteration: 5, Func. Count: 40, Neg. LLF: 94.36935030955428
Iteration: 6, Func. Count: 48, Neg. LLF: 93.98173077278135
Iteration: 7, Func. Count: 56, Neg. LLF: 93.92628020393599
Iteration: 8, Func. Count: 63, Neg. LLF: 93.91640882873864
Iteration: 9, Func. Count: 70, Neg. LLF: 93.91302984016193
Iteration: 10, Func. Count: 77, Neg. LLF: 93.91182871109066
Iteration: 11, Func. Count: 84, Neg. LLF: 93.91182123108838
Iteration: 12, Func. Count: 90, Neg. LLF: 93.9118212311119
Optimization terminated successfully (Exit mode 0)
Current function value: 93.91182123108838
Iterations: 12
Function evaluations: 90
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 115.83816576880945
Iteration: 2, Func. Count: 22, Neg. LLF: 112.31499831146509
Iteration: 3, Func. Count: 31, Neg. LLF: 96.10097880265532
Iteration: 4, Func. Count: 40, Neg. LLF: 94.35228375648468
Iteration: 5, Func. Count: 48, Neg. LLF: 122.77340849019991
Iteration: 6, Func. Count: 58, Neg. LLF: 94.15235229742281
Iteration: 7, Func. Count: 66, Neg. LLF: 101.03366213620383
Iteration: 8, Func. Count: 76, Neg. LLF: 94.09491124441718
Iteration: 9, Func. Count: 84, Neg. LLF: 94.07853936862031
Iteration: 10, Func. Count: 92, Neg. LLF: 94.06445017919847
Iteration: 11, Func. Count: 100, Neg. LLF: 94.01362526660384
Iteration: 12, Func. Count: 108, Neg. LLF: 93.98114335468219
Iteration: 13, Func. Count: 116, Neg. LLF: 93.95476190168979
Iteration: 14, Func. Count: 124, Neg. LLF: 93.9306675414481
Iteration: 15, Func. Count: 132, Neg. LLF: 93.91581548688995
Iteration: 16, Func. Count: 140, Neg. LLF: 93.91226443815756
Iteration: 17, Func. Count: 148, Neg. LLF: 93.9118803869433
Iteration: 18, Func. Count: 156, Neg. LLF: 93.91182686300775
Iteration: 19, Func. Count: 164, Neg. LLF: 93.91182145379537
Iteration: 20, Func. Count: 171, Neg. LLF: 93.91182154023967
Optimization terminated successfully (Exit mode 0)
Current function value: 93.91182145379537
Iterations: 20
Function evaluations: 171
Gradient evaluations: 20
Iteration: 1, Func. Count: 10, Neg. LLF: 119.19313197649893
Iteration: 2, Func. Count: 24, Neg. LLF: 109.99345910866161
Iteration: 3, Func. Count: 34, Neg. LLF: 94.56042344179946
Iteration: 4, Func. Count: 43, Neg. LLF: 94.6772034458847
Iteration: 5, Func. Count: 53, Neg. LLF: 97.9912220784556
Iteration: 6, Func. Count: 64, Neg. LLF: 97.04217423586915
Iteration: 7, Func. Count: 74, Neg. LLF: 94.09263379561486
Iteration: 8, Func. Count: 83, Neg. LLF: 94.07641793874895
Iteration: 9, Func. Count: 92, Neg. LLF: 94.01935686080938
Iteration: 10, Func. Count: 101, Neg. LLF: 93.98468138038497
Iteration: 11, Func. Count: 110, Neg. LLF: 93.94924403805024
Iteration: 12, Func. Count: 119, Neg. LLF: 93.93136126280787
Iteration: 13, Func. Count: 128, Neg. LLF: 93.91917129004449
Iteration: 14, Func. Count: 137, Neg. LLF: 93.91327307082564
Iteration: 15, Func. Count: 146, Neg. LLF: 93.9119566059218
Iteration: 16, Func. Count: 155, Neg. LLF: 93.91182568068274
Iteration: 17, Func. Count: 164, Neg. LLF: 93.91182114655645
Iteration: 18, Func. Count: 172, Neg. LLF: 93.91182123335489
Optimization terminated successfully (Exit mode 0)
Current function value: 93.91182114655645
Iterations: 18
Function evaluations: 172
Gradient evaluations: 18
Iteration: 1, Func. Count: 11, Neg. LLF: 121.31472015776957
Iteration: 2, Func. Count: 26, Neg. LLF: 120.38721017767914
Iteration: 3, Func. Count: 37, Neg. LLF: 98.50478154115072
Iteration: 4, Func. Count: 48, Neg. LLF: 98.76615535685319
Iteration: 5, Func. Count: 59, Neg. LLF: 95.26679604305677
Iteration: 6, Func. Count: 70, Neg. LLF: 95.01650257873084
Iteration: 7, Func. Count: 81, Neg. LLF: 94.24221234349798
Iteration: 8, Func. Count: 91, Neg. LLF: 94.65229404525617
Iteration: 9, Func. Count: 102, Neg. LLF: 94.11297993769932
Iteration: 10, Func. Count: 112, Neg. LLF: 94.16280400210336
Iteration: 11, Func. Count: 123, Neg. LLF: 94.04269984029035
Iteration: 12, Func. Count: 133, Neg. LLF: 93.97863766829862
Iteration: 13, Func. Count: 143, Neg. LLF: 93.964322675018
Iteration: 14, Func. Count: 153, Neg. LLF: 93.94178985752828
Iteration: 15, Func. Count: 163, Neg. LLF: 93.92847234424326
Iteration: 16, Func. Count: 173, Neg. LLF: 93.91932863794952
Iteration: 17, Func. Count: 183, Neg. LLF: 93.91422782494358
Iteration: 18, Func. Count: 193, Neg. LLF: 93.91217481329636
Iteration: 19, Func. Count: 203, Neg. LLF: 93.91183568017969
Iteration: 20, Func. Count: 213, Neg. LLF: 93.91182155504175
Iteration: 21, Func. Count: 223, Neg. LLF: 93.9118210897073
Optimization terminated successfully (Exit mode 0)
Current function value: 93.9118210897073
Iterations: 21
Function evaluations: 223
Gradient evaluations: 21
Iteration: 1, Func. Count: 8, Neg. LLF: 114.29378542878119
Iteration: 2, Func. Count: 17, Neg. LLF: 161.876986280714
Iteration: 3, Func. Count: 25, Neg. LLF: 418.81914853316704
Iteration: 4, Func. Count: 33, Neg. LLF: 167.5095962342559
Iteration: 5, Func. Count: 41, Neg. LLF: 162.20259440474783
Iteration: 6, Func. Count: 49, Neg. LLF: 96.64735109000347
Iteration: 7, Func. Count: 57, Neg. LLF: 94.0723200839729
Iteration: 8, Func. Count: 64, Neg. LLF: 102.37782669120088
Iteration: 9, Func. Count: 73, Neg. LLF: 96.70596698014903
Iteration: 10, Func. Count: 82, Neg. LLF: 93.98406088625285
Iteration: 11, Func. Count: 89, Neg. LLF: 93.96981825908271
Iteration: 12, Func. Count: 96, Neg. LLF: 93.95497397213876
Iteration: 13, Func. Count: 103, Neg. LLF: 93.95311017047156
Iteration: 14, Func. Count: 110, Neg. LLF: 93.95267252178631
Iteration: 15, Func. Count: 117, Neg. LLF: 93.95263847005327
Iteration: 16, Func. Count: 124, Neg. LLF: 93.95263548697456
Iteration: 17, Func. Count: 130, Neg. LLF: 93.95263548697417
Optimization terminated successfully (Exit mode 0)
Current function value: 93.95263548697456
Iterations: 17
Function evaluations: 130
Gradient evaluations: 17
Iteration: 1, Func. Count: 9, Neg. LLF: 101.57453381087866
Iteration: 2, Func. Count: 19, Neg. LLF: 112.2937725909305
Iteration: 3, Func. Count: 28, Neg. LLF: 289.0258850651946
Iteration: 4, Func. Count: 37, Neg. LLF: 94.20116871823836
Iteration: 5, Func. Count: 45, Neg. LLF: 94.31361223050264
Iteration: 6, Func. Count: 54, Neg. LLF: 93.99505396330584
Iteration: 7, Func. Count: 63, Neg. LLF: 93.92780674011573
Iteration: 8, Func. Count: 71, Neg. LLF: 93.91585592559521
Iteration: 9, Func. Count: 79, Neg. LLF: 93.91067721733948
Iteration: 10, Func. Count: 87, Neg. LLF: 93.90920189372073
Iteration: 11, Func. Count: 95, Neg. LLF: 93.90892678201239
Iteration: 12, Func. Count: 103, Neg. LLF: 93.90876618117866
Iteration: 13, Func. Count: 111, Neg. LLF: 93.90876238002076
Iteration: 14, Func. Count: 118, Neg. LLF: 93.90876238006497
Optimization terminated successfully (Exit mode 0)
Current function value: 93.90876238002076
Iterations: 14
Function evaluations: 118
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 115.59647944938806
Iteration: 2, Func. Count: 24, Neg. LLF: 116.8185352216279
Iteration: 3, Func. Count: 34, Neg. LLF: 95.19908879044834
Iteration: 4, Func. Count: 43, Neg. LLF: 96.57535044678717
Iteration: 5, Func. Count: 54, Neg. LLF: 219.10180982853387
Iteration: 6, Func. Count: 64, Neg. LLF: 97.66847475173549
Iteration: 7, Func. Count: 75, Neg. LLF: 94.12592234478865
Iteration: 8, Func. Count: 84, Neg. LLF: 94.10356180289689
Iteration: 9, Func. Count: 93, Neg. LLF: 94.07576243230302
Iteration: 10, Func. Count: 102, Neg. LLF: 94.01560669747626
Iteration: 11, Func. Count: 111, Neg. LLF: 93.96242735908275
Iteration: 12, Func. Count: 120, Neg. LLF: 93.93968897287252
Iteration: 13, Func. Count: 129, Neg. LLF: 93.92388236689342
Iteration: 14, Func. Count: 138, Neg. LLF: 93.91365568523918
Iteration: 15, Func. Count: 147, Neg. LLF: 93.9100068230659
Iteration: 16, Func. Count: 156, Neg. LLF: 93.90900510770145
Iteration: 17, Func. Count: 165, Neg. LLF: 93.90882961418689
Iteration: 18, Func. Count: 174, Neg. LLF: 93.90879587775416
Iteration: 19, Func. Count: 183, Neg. LLF: 93.90877480774517
Iteration: 20, Func. Count: 192, Neg. LLF: 93.90876467692888
Iteration: 21, Func. Count: 201, Neg. LLF: 93.90876243969342
Iteration: 22, Func. Count: 209, Neg. LLF: 93.90876252115123
Optimization terminated successfully (Exit mode 0)
Current function value: 93.90876243969342
Iterations: 22
Function evaluations: 209
Gradient evaluations: 22
Iteration: 1, Func. Count: 11, Neg. LLF: 119.1026817730487
Iteration: 2, Func. Count: 26, Neg. LLF: 114.13113509851426
Iteration: 3, Func. Count: 37, Neg. LLF: 94.65701647878066
Iteration: 4, Func. Count: 47, Neg. LLF: 94.34965259138795
Iteration: 5, Func. Count: 57, Neg. LLF: 98.58215860476744
Iteration: 6, Func. Count: 69, Neg. LLF: 98.52831155964525
Iteration: 7, Func. Count: 80, Neg. LLF: 94.41947588965058
Iteration: 8, Func. Count: 91, Neg. LLF: 94.10225863273895
Iteration: 9, Func. Count: 101, Neg. LLF: 94.08344975195085
Iteration: 10, Func. Count: 111, Neg. LLF: 94.00247711137118
Iteration: 11, Func. Count: 121, Neg. LLF: 93.92216348911323
Iteration: 12, Func. Count: 131, Neg. LLF: 93.91149526341374
Iteration: 13, Func. Count: 141, Neg. LLF: 93.90970821900966
Iteration: 14, Func. Count: 151, Neg. LLF: 93.9090607509736
Iteration: 15, Func. Count: 161, Neg. LLF: 93.90879778715438
Iteration: 16, Func. Count: 171, Neg. LLF: 93.9087669696657
Iteration: 17, Func. Count: 181, Neg. LLF: 93.90876334965277
Iteration: 18, Func. Count: 191, Neg. LLF: 93.90876258076713
Optimization terminated successfully (Exit mode 0)
Current function value: 93.90876258076713
Iterations: 18
Function evaluations: 191
Gradient evaluations: 18
Iteration: 1, Func. Count: 12, Neg. LLF: 121.22124475446434
Iteration: 2, Func. Count: 28, Neg. LLF: 128.7230087693876
Iteration: 3, Func. Count: 40, Neg. LLF: 97.89835355089485
Iteration: 4, Func. Count: 52, Neg. LLF: 103.88844519989692
Iteration: 5, Func. Count: 64, Neg. LLF: 95.87704365587166
Iteration: 6, Func. Count: 76, Neg. LLF: 94.93295070261108
Iteration: 7, Func. Count: 88, Neg. LLF: 96.9333032009357
Iteration: 8, Func. Count: 100, Neg. LLF: 94.40553355712751
Iteration: 9, Func. Count: 111, Neg. LLF: 94.3269409547691
Iteration: 10, Func. Count: 122, Neg. LLF: 94.16698669623432
Iteration: 11, Func. Count: 133, Neg. LLF: 94.09754976382244
Iteration: 12, Func. Count: 144, Neg. LLF: 94.0773895450767
Iteration: 13, Func. Count: 155, Neg. LLF: 94.04074052942036
Iteration: 14, Func. Count: 166, Neg. LLF: 94.01115131759427
Iteration: 15, Func. Count: 177, Neg. LLF: 93.98800159520754
Iteration: 16, Func. Count: 188, Neg. LLF: 93.95358242877896
Iteration: 17, Func. Count: 199, Neg. LLF: 93.92471439680016
Iteration: 18, Func. Count: 210, Neg. LLF: 93.91309054904731
Iteration: 19, Func. Count: 221, Neg. LLF: 93.91150417847248
Iteration: 20, Func. Count: 232, Neg. LLF: 93.91103234060854
Iteration: 21, Func. Count: 243, Neg. LLF: 93.91013082492786
Iteration: 22, Func. Count: 254, Neg. LLF: 93.90928540383081
Iteration: 23, Func. Count: 265, Neg. LLF: 93.90883778303721
Iteration: 24, Func. Count: 276, Neg. LLF: 93.9087650885061
Iteration: 25, Func. Count: 287, Neg. LLF: 93.90876264724811
Iteration: 26, Func. Count: 297, Neg. LLF: 93.90876269162777
Optimization terminated successfully (Exit mode 0)
Current function value: 93.90876264724811
Iterations: 26
Function evaluations: 297
Gradient evaluations: 26
Iteration: 1, Func. Count: 9, Neg. LLF: 114.38833697868769
Iteration: 2, Func. Count: 19, Neg. LLF: 159.27850308229526
Iteration: 3, Func. Count: 28, Neg. LLF: 617.7240543607647
Iteration: 4, Func. Count: 37, Neg. LLF: 167.72982488736838
Iteration: 5, Func. Count: 46, Neg. LLF: 162.8885872427906
Iteration: 6, Func. Count: 55, Neg. LLF: 96.75134404553465
Iteration: 7, Func. Count: 64, Neg. LLF: 94.07411684871497
Iteration: 8, Func. Count: 72, Neg. LLF: 102.42504671370801
Iteration: 9, Func. Count: 82, Neg. LLF: 96.81610739329261
Iteration: 10, Func. Count: 92, Neg. LLF: 93.9836618048583
Iteration: 11, Func. Count: 100, Neg. LLF: 93.96972015323097
Iteration: 12, Func. Count: 108, Neg. LLF: 93.95502040196878
Iteration: 13, Func. Count: 116, Neg. LLF: 93.95310233771336
Iteration: 14, Func. Count: 124, Neg. LLF: 93.95267471337709
Iteration: 15, Func. Count: 132, Neg. LLF: 93.95263869805513
Iteration: 16, Func. Count: 140, Neg. LLF: 93.9526355077789
Iteration: 17, Func. Count: 147, Neg. LLF: 93.95263565217887
Optimization terminated successfully (Exit mode 0)
Current function value: 93.9526355077789
Iterations: 17
Function evaluations: 147
Gradient evaluations: 17
Iteration: 1, Func. Count: 10, Neg. LLF: 101.3147914226708
Iteration: 2, Func. Count: 21, Neg. LLF: 111.82821957212018
Iteration: 3, Func. Count: 31, Neg. LLF: 289.6789943410081
Iteration: 4, Func. Count: 41, Neg. LLF: 94.20020027476629
Iteration: 5, Func. Count: 50, Neg. LLF: 94.27658008475898
Iteration: 6, Func. Count: 60, Neg. LLF: 93.9890209398058
Iteration: 7, Func. Count: 70, Neg. LLF: 93.92672208308176
Iteration: 8, Func. Count: 79, Neg. LLF: 93.91496507778488
Iteration: 9, Func. Count: 88, Neg. LLF: 93.91043132439177
Iteration: 10, Func. Count: 97, Neg. LLF: 93.90914284493329
Iteration: 11, Func. Count: 106, Neg. LLF: 93.90890004844383
Iteration: 12, Func. Count: 115, Neg. LLF: 93.90876516456468
Iteration: 13, Func. Count: 124, Neg. LLF: 93.90876234645167
Iteration: 14, Func. Count: 132, Neg. LLF: 93.90876234648425
Optimization terminated successfully (Exit mode 0)
Current function value: 93.90876234645167
Iterations: 14
Function evaluations: 132
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 116.06057974396626
Iteration: 2, Func. Count: 26, Neg. LLF: 115.55908323494943
Iteration: 3, Func. Count: 37, Neg. LLF: 95.52572516157544
Iteration: 4, Func. Count: 47, Neg. LLF: 96.45322857119295
Iteration: 5, Func. Count: 58, Neg. LLF: 99.14124725408014
Iteration: 6, Func. Count: 70, Neg. LLF: 94.29363474668504
Iteration: 7, Func. Count: 80, Neg. LLF: 94.20311466200687
Iteration: 8, Func. Count: 90, Neg. LLF: 94.23907535507587
Iteration: 9, Func. Count: 101, Neg. LLF: 94.08817196941239
Iteration: 10, Func. Count: 111, Neg. LLF: 94.0736173182033
Iteration: 11, Func. Count: 121, Neg. LLF: 94.02105848420011
Iteration: 12, Func. Count: 131, Neg. LLF: 93.97586175701078
Iteration: 13, Func. Count: 141, Neg. LLF: 93.94120368364301
Iteration: 14, Func. Count: 151, Neg. LLF: 93.92246976682725
Iteration: 15, Func. Count: 161, Neg. LLF: 93.91630864593756
Iteration: 16, Func. Count: 171, Neg. LLF: 93.91140793890392
Iteration: 17, Func. Count: 181, Neg. LLF: 93.90979469727789
Iteration: 18, Func. Count: 191, Neg. LLF: 93.90916937089747
Iteration: 19, Func. Count: 201, Neg. LLF: 93.90900790299504
Iteration: 20, Func. Count: 211, Neg. LLF: 93.90887373683422
Iteration: 21, Func. Count: 221, Neg. LLF: 93.90879240607157
Iteration: 22, Func. Count: 231, Neg. LLF: 93.90876547354614
Iteration: 23, Func. Count: 241, Neg. LLF: 93.90876236478886
Iteration: 24, Func. Count: 250, Neg. LLF: 93.90876244624921
Optimization terminated successfully (Exit mode 0)
Current function value: 93.90876236478886
Iterations: 24
Function evaluations: 250
Gradient evaluations: 24
Iteration: 1, Func. Count: 12, Neg. LLF: 119.42151324085583
Iteration: 2, Func. Count: 28, Neg. LLF: 112.85226404819483
Iteration: 3, Func. Count: 40, Neg. LLF: 94.52702732215702
Iteration: 4, Func. Count: 51, Neg. LLF: 94.23386649370384
Iteration: 5, Func. Count: 62, Neg. LLF: 99.48184282598929
Iteration: 6, Func. Count: 75, Neg. LLF: 94.51222091379263
Iteration: 7, Func. Count: 87, Neg. LLF: 94.09640099824337
Iteration: 8, Func. Count: 98, Neg. LLF: 94.07859144573936
Iteration: 9, Func. Count: 109, Neg. LLF: 93.97359614813902
Iteration: 10, Func. Count: 120, Neg. LLF: 93.9166987948254
Iteration: 11, Func. Count: 131, Neg. LLF: 93.91085138858315
Iteration: 12, Func. Count: 142, Neg. LLF: 93.90920152399453
Iteration: 13, Func. Count: 153, Neg. LLF: 93.9088492797108
Iteration: 14, Func. Count: 164, Neg. LLF: 93.90878233704494
Iteration: 15, Func. Count: 175, Neg. LLF: 93.90876722364708
Iteration: 16, Func. Count: 186, Neg. LLF: 93.90876310516013
Iteration: 17, Func. Count: 197, Neg. LLF: 93.90876237975462
Optimization terminated successfully (Exit mode 0)
Current function value: 93.90876237975462
Iterations: 17
Function evaluations: 197
Gradient evaluations: 17
Iteration: 1, Func. Count: 13, Neg. LLF: 121.49879443182945
Iteration: 2, Func. Count: 30, Neg. LLF: 126.06196167084764
Iteration: 3, Func. Count: 43, Neg. LLF: 97.56112351936977
Iteration: 4, Func. Count: 56, Neg. LLF: 102.07923931290736
Iteration: 5, Func. Count: 69, Neg. LLF: 97.21388938019827
Iteration: 6, Func. Count: 82, Neg. LLF: 94.83925889698114
Iteration: 7, Func. Count: 94, Neg. LLF: 94.25421952512882
Iteration: 8, Func. Count: 106, Neg. LLF: 94.24739117413334
Iteration: 9, Func. Count: 119, Neg. LLF: 94.11655356887331
Iteration: 10, Func. Count: 131, Neg. LLF: 94.05747630111154
Iteration: 11, Func. Count: 143, Neg. LLF: 94.03204150456241
Iteration: 12, Func. Count: 155, Neg. LLF: 94.00114258190321
Iteration: 13, Func. Count: 167, Neg. LLF: 93.97215081082092
Iteration: 14, Func. Count: 179, Neg. LLF: 93.93834639504792
Iteration: 15, Func. Count: 191, Neg. LLF: 93.92227023848349
Iteration: 16, Func. Count: 203, Neg. LLF: 93.91585609016313
Iteration: 17, Func. Count: 215, Neg. LLF: 93.91160838170039
Iteration: 18, Func. Count: 227, Neg. LLF: 93.91090235738936
Iteration: 19, Func. Count: 239, Neg. LLF: 93.90987269913802
Iteration: 20, Func. Count: 251, Neg. LLF: 93.90919870366123
Iteration: 21, Func. Count: 263, Neg. LLF: 93.90884554346583
Iteration: 22, Func. Count: 275, Neg. LLF: 93.90876447797781
Iteration: 23, Func. Count: 287, Neg. LLF: 93.90876232161212
Iteration: 24, Func. Count: 298, Neg. LLF: 93.90876236597565
Optimization terminated successfully (Exit mode 0)
Current function value: 93.90876232161212
Iterations: 24
Function evaluations: 298
Gradient evaluations: 24
Iteration: 1, Func. Count: 10, Neg. LLF: 105.62442327362504
Iteration: 2, Func. Count: 21, Neg. LLF: 13399657.04975117
Iteration: 3, Func. Count: 31, Neg. LLF: 5799700.676314339
Iteration: 4, Func. Count: 41, Neg. LLF: 3691238.01340998
Iteration: 5, Func. Count: 51, Neg. LLF: 93.77872403711154
Iteration: 6, Func. Count: 61, Neg. LLF: 92.23675109266684
Iteration: 7, Func. Count: 70, Neg. LLF: 92.31623904076451
Iteration: 8, Func. Count: 80, Neg. LLF: 94.28304438933299
Iteration: 9, Func. Count: 92, Neg. LLF: 93.15574306757773
Iteration: 10, Func. Count: 103, Neg. LLF: 92.13354206986362
Iteration: 11, Func. Count: 112, Neg. LLF: 92.09514167647603
Iteration: 12, Func. Count: 121, Neg. LLF: 92.06577110709752
Iteration: 13, Func. Count: 130, Neg. LLF: 92.05538403999715
Iteration: 14, Func. Count: 139, Neg. LLF: 92.05198147025293
Iteration: 15, Func. Count: 148, Neg. LLF: 92.051908982214
Iteration: 16, Func. Count: 157, Neg. LLF: 92.05190407171818
Iteration: 17, Func. Count: 166, Neg. LLF: 92.05190346588789
Optimization terminated successfully (Exit mode 0)
Current function value: 92.05190346588789
Iterations: 17
Function evaluations: 166
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 93.20300809545718
Iteration: 2, Func. Count: 21, Neg. LLF: 260.66596427447865
Iteration: 3, Func. Count: 32, Neg. LLF: 106.6659662181277
Iteration: 4, Func. Count: 43, Neg. LLF: 127.28405354140976
Iteration: 5, Func. Count: 54, Neg. LLF: 1686369.837687021
Iteration: 6, Func. Count: 65, Neg. LLF: 95.73787925657604
Iteration: 7, Func. Count: 76, Neg. LLF: 93.73874922716863
Iteration: 8, Func. Count: 87, Neg. LLF: 92.0019704370791
Iteration: 9, Func. Count: 97, Neg. LLF: 92.02038154200906
Iteration: 10, Func. Count: 108, Neg. LLF: 91.99358016734936
Iteration: 11, Func. Count: 119, Neg. LLF: 91.99026633488425
Iteration: 12, Func. Count: 129, Neg. LLF: 91.99025208318126
Iteration: 13, Func. Count: 139, Neg. LLF: 91.99024935698368
Iteration: 14, Func. Count: 148, Neg. LLF: 91.99024935710786
Optimization terminated successfully (Exit mode 0)
Current function value: 91.99024935698368
Iterations: 14
Function evaluations: 148
Gradient evaluations: 14
Iteration: 1, Func. Count: 12, Neg. LLF: 93.19969415813338
Iteration: 2, Func. Count: 23, Neg. LLF: 295.0425329258032
Iteration: 3, Func. Count: 35, Neg. LLF: 5002657.219314257
Iteration: 4, Func. Count: 47, Neg. LLF: 146.59493750688748
Iteration: 5, Func. Count: 59, Neg. LLF: 4106207.6333313994
Iteration: 6, Func. Count: 71, Neg. LLF: 133.84632602493656
Iteration: 7, Func. Count: 83, Neg. LLF: 93.26292777237082
Iteration: 8, Func. Count: 95, Neg. LLF: 93.45705201264865
Iteration: 9, Func. Count: 108, Neg. LLF: 94.14953493066031
Iteration: 10, Func. Count: 120, Neg. LLF: 91.9930135564699
Iteration: 11, Func. Count: 131, Neg. LLF: 91.9907039740231
Iteration: 12, Func. Count: 142, Neg. LLF: 91.99044178288499
Iteration: 13, Func. Count: 153, Neg. LLF: 91.9902591923366
Iteration: 14, Func. Count: 164, Neg. LLF: 91.99024913234481
Iteration: 15, Func. Count: 174, Neg. LLF: 91.99024916119593
Optimization terminated successfully (Exit mode 0)
Current function value: 91.99024913234481
Iterations: 15
Function evaluations: 174
Gradient evaluations: 15
Iteration: 1, Func. Count: 13, Neg. LLF: 119.05839210753996
Iteration: 2, Func. Count: 30, Neg. LLF: 7442926.73714784
Iteration: 3, Func. Count: 43, Neg. LLF: 103.74082705196425
Iteration: 4, Func. Count: 56, Neg. LLF: 114.96017559479797
Iteration: 5, Func. Count: 69, Neg. LLF: 96.24004207595641
Iteration: 6, Func. Count: 82, Neg. LLF: 99.98489911544799
Iteration: 7, Func. Count: 95, Neg. LLF: 92.72674013232695
Iteration: 8, Func. Count: 107, Neg. LLF: 93.05113086930908
Iteration: 9, Func. Count: 120, Neg. LLF: 99.57438160618575
Iteration: 10, Func. Count: 135, Neg. LLF: 95.25333317833116
Iteration: 11, Func. Count: 149, Neg. LLF: 92.63499702922505
Iteration: 12, Func. Count: 162, Neg. LLF: 92.28851551765926
Iteration: 13, Func. Count: 174, Neg. LLF: 92.21974502938718
Iteration: 14, Func. Count: 186, Neg. LLF: 92.18613172701828
Iteration: 15, Func. Count: 198, Neg. LLF: 92.16416192064233
Iteration: 16, Func. Count: 210, Neg. LLF: 92.14478855112293
Iteration: 17, Func. Count: 222, Neg. LLF: 92.1340115149195
Iteration: 18, Func. Count: 234, Neg. LLF: 92.11686198337523
Iteration: 19, Func. Count: 246, Neg. LLF: 92.08788357183224
Iteration: 20, Func. Count: 258, Neg. LLF: 92.04892096589488
Iteration: 21, Func. Count: 270, Neg. LLF: 92.01962938224084
Iteration: 22, Func. Count: 282, Neg. LLF: 92.00435214118316
Iteration: 23, Func. Count: 294, Neg. LLF: 91.99300752616847
Iteration: 24, Func. Count: 306, Neg. LLF: 91.99064991425712
Iteration: 25, Func. Count: 318, Neg. LLF: 91.99033684928352
Iteration: 26, Func. Count: 330, Neg. LLF: 91.99026825698778
Iteration: 27, Func. Count: 342, Neg. LLF: 91.99284098840226
Iteration: 28, Func. Count: 356, Neg. LLF: 92.00207343801873
Optimization terminated successfully (Exit mode 0)
Current function value: 91.99026504199138
Iterations: 29
Function evaluations: 358
Gradient evaluations: 28
Iteration: 1, Func. Count: 14, Neg. LLF: 121.23729781267357
Iteration: 2, Func. Count: 32, Neg. LLF: 7155108.116554316
Iteration: 3, Func. Count: 46, Neg. LLF: 133.00960198987988
Iteration: 4, Func. Count: 60, Neg. LLF: 124.12582168633858
Iteration: 5, Func. Count: 74, Neg. LLF: 105.4492728569272
Iteration: 6, Func. Count: 88, Neg. LLF: 95.09578298933936
Iteration: 7, Func. Count: 102, Neg. LLF: 95.69543982595444
Iteration: 8, Func. Count: 116, Neg. LLF: 93.20252224749805
Iteration: 9, Func. Count: 129, Neg. LLF: 93.10306317061716
Iteration: 10, Func. Count: 142, Neg. LLF: 93.07439120751222
Iteration: 11, Func. Count: 156, Neg. LLF: 93.09173042032715
Iteration: 12, Func. Count: 170, Neg. LLF: 92.89573307181597
Iteration: 13, Func. Count: 184, Neg. LLF: 92.71213657741502
Iteration: 14, Func. Count: 197, Neg. LLF: 97.25825204432002
Iteration: 15, Func. Count: 211, Neg. LLF: 95.10030590946464
Iteration: 16, Func. Count: 225, Neg. LLF: 93.24078214992042
Iteration: 17, Func. Count: 239, Neg. LLF: 92.7322632066547
Iteration: 18, Func. Count: 253, Neg. LLF: 92.46546986192794
Iteration: 19, Func. Count: 266, Neg. LLF: 92.4639895384601
Iteration: 20, Func. Count: 279, Neg. LLF: 92.4634872450459
Iteration: 21, Func. Count: 292, Neg. LLF: 92.4627277163423
Iteration: 22, Func. Count: 305, Neg. LLF: 92.46192574080715
Iteration: 23, Func. Count: 318, Neg. LLF: 92.46147734865366
Iteration: 24, Func. Count: 331, Neg. LLF: 92.46127188647107
Iteration: 25, Func. Count: 344, Neg. LLF: 92.4611852050162
Iteration: 26, Func. Count: 357, Neg. LLF: 92.46116118306837
Iteration: 27, Func. Count: 370, Neg. LLF: 92.46115845846383
Iteration: 28, Func. Count: 382, Neg. LLF: 92.46115845269546
Optimization terminated successfully (Exit mode 0)
Current function value: 92.46115845846383
Iterations: 28
Function evaluations: 382
Gradient evaluations: 28
Iteration: 1, Func. Count: 11, Neg. LLF: 106.08658214312996
Iteration: 2, Func. Count: 23, Neg. LLF: 8947400.807108821
Iteration: 3, Func. Count: 34, Neg. LLF: 3443418.5867283447
Iteration: 4, Func. Count: 45, Neg. LLF: 16090401.201910552
Iteration: 5, Func. Count: 56, Neg. LLF: 102.9226330817098
Iteration: 6, Func. Count: 67, Neg. LLF: 93.6900537427395
Iteration: 7, Func. Count: 78, Neg. LLF: 92.32958245309462
Iteration: 8, Func. Count: 88, Neg. LLF: 101.47753860247985
Iteration: 9, Func. Count: 100, Neg. LLF: 94.0855039687272
Iteration: 10, Func. Count: 112, Neg. LLF: 92.18327861949521
Iteration: 11, Func. Count: 123, Neg. LLF: 92.10020302670364
Iteration: 12, Func. Count: 133, Neg. LLF: 92.05706664070692
Iteration: 13, Func. Count: 143, Neg. LLF: 92.01307891507551
Iteration: 14, Func. Count: 153, Neg. LLF: 91.9970191377018
Iteration: 15, Func. Count: 163, Neg. LLF: 91.99266246102482
Iteration: 16, Func. Count: 173, Neg. LLF: 91.9925142947753
Iteration: 17, Func. Count: 183, Neg. LLF: 91.9924983677485
Iteration: 18, Func. Count: 193, Neg. LLF: 91.99249472712911
Iteration: 19, Func. Count: 202, Neg. LLF: 91.99249472716261
Optimization terminated successfully (Exit mode 0)
Current function value: 91.99249472712911
Iterations: 19
Function evaluations: 202
Gradient evaluations: 19
Iteration: 1, Func. Count: 12, Neg. LLF: 97.40244311436015
Iteration: 2, Func. Count: 25, Neg. LLF: 3086338.1698955814
Iteration: 3, Func. Count: 37, Neg. LLF: 14681951.251493543
Iteration: 4, Func. Count: 49, Neg. LLF: 95.6607238564777
Iteration: 5, Func. Count: 61, Neg. LLF: 92.55498161953685
Iteration: 6, Func. Count: 72, Neg. LLF: 92.72137832131268
Iteration: 7, Func. Count: 84, Neg. LLF: 93.47855558936638
Iteration: 8, Func. Count: 96, Neg. LLF: 92.02760163718997
Iteration: 9, Func. Count: 107, Neg. LLF: 92.0260165314647
Iteration: 10, Func. Count: 119, Neg. LLF: 92.00581582125447
Iteration: 11, Func. Count: 130, Neg. LLF: 92.00280159820245
Iteration: 12, Func. Count: 141, Neg. LLF: 91.99905730773006
Iteration: 13, Func. Count: 152, Neg. LLF: 91.99467314112228
Iteration: 14, Func. Count: 163, Neg. LLF: 91.99197782689566
Iteration: 15, Func. Count: 174, Neg. LLF: 91.99045034071561
Iteration: 16, Func. Count: 185, Neg. LLF: 91.99028343385066
Iteration: 17, Func. Count: 196, Neg. LLF: 91.99024951436459
Iteration: 18, Func. Count: 207, Neg. LLF: 91.99024899768844
Optimization terminated successfully (Exit mode 0)
Current function value: 91.99024899768844
Iterations: 18
Function evaluations: 207
Gradient evaluations: 18
Iteration: 1, Func. Count: 13, Neg. LLF: 115.82958669419774
Iteration: 2, Func. Count: 30, Neg. LLF: 7762827.896083763
Iteration: 3, Func. Count: 43, Neg. LLF: 96.25058934923172
Iteration: 4, Func. Count: 56, Neg. LLF: 98.55225549236242
Iteration: 5, Func. Count: 69, Neg. LLF: 103.28427491578516
Iteration: 6, Func. Count: 82, Neg. LLF: 92.39172886703983
Iteration: 7, Func. Count: 94, Neg. LLF: 92.30472704822996
Iteration: 8, Func. Count: 106, Neg. LLF: 97.47200684966515
Iteration: 9, Func. Count: 119, Neg. LLF: 92.69334898888079
Iteration: 10, Func. Count: 132, Neg. LLF: 92.18313061300384
Iteration: 11, Func. Count: 144, Neg. LLF: 92.15864235315404
Iteration: 12, Func. Count: 156, Neg. LLF: 92.15496193576169
Iteration: 13, Func. Count: 168, Neg. LLF: 92.14673018116379
Iteration: 14, Func. Count: 180, Neg. LLF: 92.13674490125003
Iteration: 15, Func. Count: 192, Neg. LLF: 92.12492664287375
Iteration: 16, Func. Count: 204, Neg. LLF: 92.10175295196238
Iteration: 17, Func. Count: 216, Neg. LLF: 92.07036194653115
Iteration: 18, Func. Count: 228, Neg. LLF: 92.04805945583055
Iteration: 19, Func. Count: 240, Neg. LLF: 91.99569758209586
Iteration: 20, Func. Count: 252, Neg. LLF: 91.99144548051217
Iteration: 21, Func. Count: 264, Neg. LLF: 91.99042372936572
Iteration: 22, Func. Count: 276, Neg. LLF: 91.99027956439164
Iteration: 23, Func. Count: 288, Neg. LLF: 91.99025541689385
Iteration: 24, Func. Count: 300, Neg. LLF: 91.99024949473991
Iteration: 25, Func. Count: 311, Neg. LLF: 91.99024952359395
Optimization terminated successfully (Exit mode 0)
Current function value: 91.99024949473991
Iterations: 25
Function evaluations: 311
Gradient evaluations: 25
Iteration: 1, Func. Count: 14, Neg. LLF: 119.24739656157084
Iteration: 2, Func. Count: 32, Neg. LLF: 7460182.303391789
Iteration: 3, Func. Count: 46, Neg. LLF: 103.80926799564617
Iteration: 4, Func. Count: 60, Neg. LLF: 115.30988424345416
Iteration: 5, Func. Count: 74, Neg. LLF: 96.4127100788368
Iteration: 6, Func. Count: 88, Neg. LLF: 100.01444059446023
Iteration: 7, Func. Count: 102, Neg. LLF: 92.70314643304445
Iteration: 8, Func. Count: 115, Neg. LLF: 93.8109233957531
Iteration: 9, Func. Count: 129, Neg. LLF: 98.80605029474354
Iteration: 10, Func. Count: 145, Neg. LLF: 94.54250357394362
Iteration: 11, Func. Count: 160, Neg. LLF: 92.50379054283441
Iteration: 12, Func. Count: 174, Neg. LLF: 92.31527011527149
Iteration: 13, Func. Count: 187, Neg. LLF: 92.2050714015276
Iteration: 14, Func. Count: 200, Neg. LLF: 92.17392882970464
Iteration: 15, Func. Count: 213, Neg. LLF: 92.1623905331837
Iteration: 16, Func. Count: 226, Neg. LLF: 92.1443776848781
Iteration: 17, Func. Count: 239, Neg. LLF: 92.12675906334127
Iteration: 18, Func. Count: 252, Neg. LLF: 92.10356922017424
Iteration: 19, Func. Count: 265, Neg. LLF: 92.08050517005195
Iteration: 20, Func. Count: 278, Neg. LLF: 92.04737777926952
Iteration: 21, Func. Count: 291, Neg. LLF: 92.01952557564198
Iteration: 22, Func. Count: 304, Neg. LLF: 92.00515650728836
Iteration: 23, Func. Count: 317, Neg. LLF: 91.99778881416479
Iteration: 24, Func. Count: 330, Neg. LLF: 91.99398302042574
Iteration: 25, Func. Count: 343, Neg. LLF: 91.99288265720315
Iteration: 26, Func. Count: 356, Neg. LLF: 91.99243238969875
Iteration: 27, Func. Count: 369, Neg. LLF: 91.99180960560318
Iteration: 28, Func. Count: 382, Neg. LLF: 91.99079845607596
Iteration: 29, Func. Count: 395, Neg. LLF: 91.99052413033536
Iteration: 30, Func. Count: 408, Neg. LLF: 91.99039600622618
Iteration: 31, Func. Count: 421, Neg. LLF: 91.99026625132305
Iteration: 32, Func. Count: 434, Neg. LLF: 91.99025254431892
Iteration: 33, Func. Count: 447, Neg. LLF: 92.0017712024471
Optimization terminated successfully (Exit mode 0)
Current function value: 91.99025222198159
Iterations: 34
Function evaluations: 450
Gradient evaluations: 33
Iteration: 1, Func. Count: 15, Neg. LLF: 121.39499960249871
Iteration: 2, Func. Count: 34, Neg. LLF: 7180618.2431094935
Iteration: 3, Func. Count: 49, Neg. LLF: 134.183112720443
Iteration: 4, Func. Count: 64, Neg. LLF: 124.25936858253957
Iteration: 5, Func. Count: 79, Neg. LLF: 111.22517481998308
Iteration: 6, Func. Count: 94, Neg. LLF: 94.58423588650403
Iteration: 7, Func. Count: 109, Neg. LLF: 95.4896577901637
Iteration: 8, Func. Count: 124, Neg. LLF: 93.26383608879941
Iteration: 9, Func. Count: 138, Neg. LLF: 93.09485023476336
Iteration: 10, Func. Count: 152, Neg. LLF: 94.60007309140144
Iteration: 11, Func. Count: 168, Neg. LLF: 92.93315183613251
Iteration: 12, Func. Count: 183, Neg. LLF: 93.15669484202017
Iteration: 13, Func. Count: 198, Neg. LLF: 92.8840398345354
Iteration: 14, Func. Count: 213, Neg. LLF: 100.21175953131889
Iteration: 15, Func. Count: 229, Neg. LLF: 92.59667100533457
Iteration: 16, Func. Count: 243, Neg. LLF: 92.44108068276931
Iteration: 17, Func. Count: 257, Neg. LLF: 92.40439628556202
Iteration: 18, Func. Count: 271, Neg. LLF: 92.38847868998909
Iteration: 19, Func. Count: 285, Neg. LLF: 92.38394826736166
Iteration: 20, Func. Count: 299, Neg. LLF: 92.38264473771362
Iteration: 21, Func. Count: 313, Neg. LLF: 92.38178147744911
Iteration: 22, Func. Count: 327, Neg. LLF: 92.38116376463164
Iteration: 23, Func. Count: 341, Neg. LLF: 92.3805037111524
Iteration: 24, Func. Count: 355, Neg. LLF: 92.38028495829231
Iteration: 25, Func. Count: 369, Neg. LLF: 92.38025633738282
Iteration: 26, Func. Count: 383, Neg. LLF: 92.38025514392069
Iteration: 27, Func. Count: 396, Neg. LLF: 92.38025512583066
Optimization terminated successfully (Exit mode 0)
Current function value: 92.38025514392069
Iterations: 27
Function evaluations: 396
Gradient evaluations: 27
Iteration: 1, Func. Count: 8, Neg. LLF: 116.26358537061658
Iteration: 2, Func. Count: 17, Neg. LLF: 146.95711609345824
Iteration: 3, Func. Count: 25, Neg. LLF: 4314.61489689861
Iteration: 4, Func. Count: 33, Neg. LLF: 114.04329876102388
Iteration: 5, Func. Count: 41, Neg. LLF: 818.4428077795923
Iteration: 6, Func. Count: 49, Neg. LLF: 101.57904704895654
Iteration: 7, Func. Count: 57, Neg. LLF: 95.05229736936977
Iteration: 8, Func. Count: 65, Neg. LLF: 93.8873966439879
Iteration: 9, Func. Count: 72, Neg. LLF: 93.85903796585484
Iteration: 10, Func. Count: 79, Neg. LLF: 93.84209896896388
Iteration: 11, Func. Count: 86, Neg. LLF: 93.82143011347007
Iteration: 12, Func. Count: 93, Neg. LLF: 93.81993244495973
Iteration: 13, Func. Count: 100, Neg. LLF: 93.8198306760383
Iteration: 14, Func. Count: 107, Neg. LLF: 93.81982955997604
Iteration: 15, Func. Count: 113, Neg. LLF: 93.81982956001434
Optimization terminated successfully (Exit mode 0)
Current function value: 93.81982955997604
Iterations: 15
Function evaluations: 113
Gradient evaluations: 15
Iteration: 1, Func. Count: 9, Neg. LLF: 99.76112087925938
Iteration: 2, Func. Count: 18, Neg. LLF: 112.24531632498154
Iteration: 3, Func. Count: 27, Neg. LLF: 500.6829150787193
Iteration: 4, Func. Count: 36, Neg. LLF: 99.13764314197631
Iteration: 5, Func. Count: 45, Neg. LLF: 96.5169358357422
Iteration: 6, Func. Count: 54, Neg. LLF: 93.82213285324627
Iteration: 7, Func. Count: 62, Neg. LLF: 93.8243441525699
Iteration: 8, Func. Count: 71, Neg. LLF: 93.82023332233496
Iteration: 9, Func. Count: 79, Neg. LLF: 93.81984239736666
Iteration: 10, Func. Count: 87, Neg. LLF: 93.81982997393435
Iteration: 11, Func. Count: 95, Neg. LLF: 93.81982948534947
Optimization terminated successfully (Exit mode 0)
Current function value: 93.81982948534947
Iterations: 11
Function evaluations: 95
Gradient evaluations: 11
Iteration: 1, Func. Count: 10, Neg. LLF: 116.0179448982198
Iteration: 2, Func. Count: 24, Neg. LLF: 112.64290915881381
Iteration: 3, Func. Count: 34, Neg. LLF: 95.73617522849486
Iteration: 4, Func. Count: 44, Neg. LLF: 94.34137763409842
Iteration: 5, Func. Count: 53, Neg. LLF: 133.15536470444738
Iteration: 6, Func. Count: 64, Neg. LLF: 93.99970983985949
Iteration: 7, Func. Count: 73, Neg. LLF: 93.97601407886307
Iteration: 8, Func. Count: 82, Neg. LLF: 93.95594586138427
Iteration: 9, Func. Count: 91, Neg. LLF: 93.94695384349593
Iteration: 10, Func. Count: 100, Neg. LLF: 93.92773323007991
Iteration: 11, Func. Count: 109, Neg. LLF: 93.90164712976981
Iteration: 12, Func. Count: 118, Neg. LLF: 93.86496716551834
Iteration: 13, Func. Count: 127, Neg. LLF: 93.83789081013256
Iteration: 14, Func. Count: 136, Neg. LLF: 93.82797964655579
Iteration: 15, Func. Count: 145, Neg. LLF: 93.82301621238993
Iteration: 16, Func. Count: 154, Neg. LLF: 93.8203442953667
Iteration: 17, Func. Count: 163, Neg. LLF: 93.8198706776889
Iteration: 18, Func. Count: 172, Neg. LLF: 93.81983197336713
Iteration: 19, Func. Count: 181, Neg. LLF: 93.81982975345724
Iteration: 20, Func. Count: 189, Neg. LLF: 93.81982983715696
Optimization terminated successfully (Exit mode 0)
Current function value: 93.81982975345724
Iterations: 20
Function evaluations: 189
Gradient evaluations: 20
Iteration: 1, Func. Count: 11, Neg. LLF: 119.17222093952492
Iteration: 2, Func. Count: 26, Neg. LLF: 110.28123819794784
Iteration: 3, Func. Count: 37, Neg. LLF: 94.44998240082909
Iteration: 4, Func. Count: 47, Neg. LLF: 94.77647719375311
Iteration: 5, Func. Count: 59, Neg. LLF: 116.88932017977275
Iteration: 6, Func. Count: 71, Neg. LLF: 95.09154372159605
Iteration: 7, Func. Count: 82, Neg. LLF: 93.97841983137334
Iteration: 8, Func. Count: 92, Neg. LLF: 93.96508745752607
Iteration: 9, Func. Count: 102, Neg. LLF: 93.91705384735931
Iteration: 10, Func. Count: 112, Neg. LLF: 93.88628058371015
Iteration: 11, Func. Count: 122, Neg. LLF: 93.85305713620302
Iteration: 12, Func. Count: 132, Neg. LLF: 93.83119808038144
Iteration: 13, Func. Count: 142, Neg. LLF: 93.82136097625077
Iteration: 14, Func. Count: 152, Neg. LLF: 93.820234211955
Iteration: 15, Func. Count: 162, Neg. LLF: 93.81998334017511
Iteration: 16, Func. Count: 172, Neg. LLF: 93.81987854926328
Iteration: 17, Func. Count: 182, Neg. LLF: 93.81984122840596
Iteration: 18, Func. Count: 192, Neg. LLF: 93.81983009368693
Iteration: 19, Func. Count: 202, Neg. LLF: 93.81982949004511
Optimization terminated successfully (Exit mode 0)
Current function value: 93.81982949004511
Iterations: 19
Function evaluations: 202
Gradient evaluations: 19
Iteration: 1, Func. Count: 12, Neg. LLF: 121.31681884617231
Iteration: 2, Func. Count: 28, Neg. LLF: 120.74248944921543
Iteration: 3, Func. Count: 40, Neg. LLF: 98.08136747419854
Iteration: 4, Func. Count: 52, Neg. LLF: 99.01573892453483
Iteration: 5, Func. Count: 64, Neg. LLF: 95.28116926505099
Iteration: 6, Func. Count: 76, Neg. LLF: 95.28805614560355
Iteration: 7, Func. Count: 88, Neg. LLF: 94.6943013109347
Iteration: 8, Func. Count: 99, Neg. LLF: 94.47472280598627
Iteration: 9, Func. Count: 110, Neg. LLF: 99.58597761666573
Iteration: 10, Func. Count: 122, Neg. LLF: 94.06837771447921
Iteration: 11, Func. Count: 133, Neg. LLF: 94.00134140271891
Iteration: 12, Func. Count: 144, Neg. LLF: 93.9559746648177
Iteration: 13, Func. Count: 155, Neg. LLF: 93.93648665246849
Iteration: 14, Func. Count: 166, Neg. LLF: 93.91782177098325
Iteration: 15, Func. Count: 177, Neg. LLF: 93.90442595331669
Iteration: 16, Func. Count: 188, Neg. LLF: 93.88491938727763
Iteration: 17, Func. Count: 199, Neg. LLF: 93.85724315813857
Iteration: 18, Func. Count: 210, Neg. LLF: 93.83025645805344
Iteration: 19, Func. Count: 221, Neg. LLF: 93.82167828620126
Iteration: 20, Func. Count: 232, Neg. LLF: 93.82013104098297
Iteration: 21, Func. Count: 243, Neg. LLF: 93.81984914630422
Iteration: 22, Func. Count: 254, Neg. LLF: 93.81983028221218
Iteration: 23, Func. Count: 265, Neg. LLF: 93.81982951908697
Optimization terminated successfully (Exit mode 0)
Current function value: 93.81982951908697
Iterations: 23
Function evaluations: 265
Gradient evaluations: 23
Iteration: 1, Func. Count: 9, Neg. LLF: 116.62528548866908
Iteration: 2, Func. Count: 19, Neg. LLF: 146.54150239992674
Iteration: 3, Func. Count: 28, Neg. LLF: 5627.355839239798
Iteration: 4, Func. Count: 37, Neg. LLF: 114.4971187944332
Iteration: 5, Func. Count: 46, Neg. LLF: 1456.0925674675357
Iteration: 6, Func. Count: 55, Neg. LLF: 101.98557293963823
Iteration: 7, Func. Count: 64, Neg. LLF: 94.87701462981398
Iteration: 8, Func. Count: 73, Neg. LLF: 93.88776769240515
Iteration: 9, Func. Count: 81, Neg. LLF: 93.86076306614152
Iteration: 10, Func. Count: 89, Neg. LLF: 93.8407078936169
Iteration: 11, Func. Count: 97, Neg. LLF: 93.8217676940292
Iteration: 12, Func. Count: 105, Neg. LLF: 93.81996957036905
Iteration: 13, Func. Count: 113, Neg. LLF: 93.81983040698354
Iteration: 14, Func. Count: 121, Neg. LLF: 93.81982954874601
Optimization terminated successfully (Exit mode 0)
Current function value: 93.81982954874601
Iterations: 14
Function evaluations: 121
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 100.54802572337618
Iteration: 2, Func. Count: 20, Neg. LLF: 111.58898976641508
Iteration: 3, Func. Count: 30, Neg. LLF: 490.2675748080256
Iteration: 4, Func. Count: 40, Neg. LLF: 99.54453742224163
Iteration: 5, Func. Count: 50, Neg. LLF: 96.61505802430334
Iteration: 6, Func. Count: 60, Neg. LLF: 93.82416491980001
Iteration: 7, Func. Count: 69, Neg. LLF: 93.8271839501823
Iteration: 8, Func. Count: 79, Neg. LLF: 93.82045920824594
Iteration: 9, Func. Count: 88, Neg. LLF: 93.81988994914829
Iteration: 10, Func. Count: 97, Neg. LLF: 93.8198325912467
Iteration: 11, Func. Count: 106, Neg. LLF: 93.81982961509505
Iteration: 12, Func. Count: 114, Neg. LLF: 93.81982962622368
Optimization terminated successfully (Exit mode 0)
Current function value: 93.81982961509505
Iterations: 12
Function evaluations: 114
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 115.75920399587716
Iteration: 2, Func. Count: 26, Neg. LLF: 117.30730358101691
Iteration: 3, Func. Count: 37, Neg. LLF: 94.95382599241911
Iteration: 4, Func. Count: 47, Neg. LLF: 96.39159539709964
Iteration: 5, Func. Count: 59, Neg. LLF: 155.38989654299456
Iteration: 6, Func. Count: 70, Neg. LLF: 94.0930192483767
Iteration: 7, Func. Count: 81, Neg. LLF: 93.98155706128347
Iteration: 8, Func. Count: 91, Neg. LLF: 93.97059812225626
Iteration: 9, Func. Count: 101, Neg. LLF: 93.93898912716023
Iteration: 10, Func. Count: 111, Neg. LLF: 93.90967567469596
Iteration: 11, Func. Count: 121, Neg. LLF: 93.87372721918703
Iteration: 12, Func. Count: 131, Neg. LLF: 93.84382803308858
Iteration: 13, Func. Count: 141, Neg. LLF: 93.82940347682108
Iteration: 14, Func. Count: 151, Neg. LLF: 93.8239502690544
Iteration: 15, Func. Count: 161, Neg. LLF: 93.82089271811833
Iteration: 16, Func. Count: 171, Neg. LLF: 93.81992648364981
Iteration: 17, Func. Count: 181, Neg. LLF: 93.81983440634205
Iteration: 18, Func. Count: 191, Neg. LLF: 93.81982972090492
Iteration: 19, Func. Count: 200, Neg. LLF: 93.81982980461946
Optimization terminated successfully (Exit mode 0)
Current function value: 93.81982972090492
Iterations: 19
Function evaluations: 200
Gradient evaluations: 19
Iteration: 1, Func. Count: 12, Neg. LLF: 111.23884900026094
Iteration: 2, Func. Count: 25, Neg. LLF: 112.68208869284014
Iteration: 3, Func. Count: 37, Neg. LLF: 590.8686248496084
Iteration: 4, Func. Count: 49, Neg. LLF: 94.228069694582
Iteration: 5, Func. Count: 60, Neg. LLF: 93.99507074537124
Iteration: 6, Func. Count: 71, Neg. LLF: 93.88255729472522
Iteration: 7, Func. Count: 82, Neg. LLF: 93.84579506927813
Iteration: 8, Func. Count: 93, Neg. LLF: 93.83294647011991
Iteration: 9, Func. Count: 104, Neg. LLF: 93.82265673266032
Iteration: 10, Func. Count: 115, Neg. LLF: 93.82016826044672
Iteration: 11, Func. Count: 126, Neg. LLF: 93.81985156884761
Iteration: 12, Func. Count: 137, Neg. LLF: 93.81983075706516
Iteration: 13, Func. Count: 148, Neg. LLF: 93.81982949489482
Iteration: 14, Func. Count: 158, Neg. LLF: 93.81982958766608
Optimization terminated successfully (Exit mode 0)
Current function value: 93.81982949489482
Iterations: 14
Function evaluations: 158
Gradient evaluations: 14
Iteration: 1, Func. Count: 13, Neg. LLF: 121.21430282149005
Iteration: 2, Func. Count: 30, Neg. LLF: 129.3894305996382
Iteration: 3, Func. Count: 43, Neg. LLF: 98.12662947931302
Iteration: 4, Func. Count: 56, Neg. LLF: 101.8189365170521
Iteration: 5, Func. Count: 69, Neg. LLF: 95.3664301126946
Iteration: 6, Func. Count: 82, Neg. LLF: 96.10259442456471
Iteration: 7, Func. Count: 95, Neg. LLF: 94.93506207734119
Iteration: 8, Func. Count: 108, Neg. LLF: 94.18998405587928
Iteration: 9, Func. Count: 120, Neg. LLF: 95.0311891927239
Iteration: 10, Func. Count: 133, Neg. LLF: 94.04438603397789
Iteration: 11, Func. Count: 145, Neg. LLF: 94.00484518895914
Iteration: 12, Func. Count: 157, Neg. LLF: 93.97782033265722
Iteration: 13, Func. Count: 169, Neg. LLF: 93.94728538130123
Iteration: 14, Func. Count: 181, Neg. LLF: 93.91948268215937
Iteration: 15, Func. Count: 193, Neg. LLF: 93.90343404522869
Iteration: 16, Func. Count: 205, Neg. LLF: 93.87403514831865
Iteration: 17, Func. Count: 217, Neg. LLF: 93.84085762488034
Iteration: 18, Func. Count: 229, Neg. LLF: 93.82430326353833
Iteration: 19, Func. Count: 241, Neg. LLF: 93.82074383165828
Iteration: 20, Func. Count: 253, Neg. LLF: 93.81992878616708
Iteration: 21, Func. Count: 265, Neg. LLF: 93.8198329396986
Iteration: 22, Func. Count: 277, Neg. LLF: 93.81982957059107
Iteration: 23, Func. Count: 288, Neg. LLF: 93.81982961184498
Optimization terminated successfully (Exit mode 0)
Current function value: 93.81982957059107
Iterations: 23
Function evaluations: 288
Gradient evaluations: 23
Iteration: 1, Func. Count: 10, Neg. LLF: 116.7306169409276
Iteration: 2, Func. Count: 21, Neg. LLF: 146.3192458227732
Iteration: 3, Func. Count: 31, Neg. LLF: 8563.774482230525
Iteration: 4, Func. Count: 41, Neg. LLF: 114.3583884570651
Iteration: 5, Func. Count: 51, Neg. LLF: 1127.7548136808473
Iteration: 6, Func. Count: 61, Neg. LLF: 101.8071858014916
Iteration: 7, Func. Count: 71, Neg. LLF: 95.02058757209046
Iteration: 8, Func. Count: 81, Neg. LLF: 93.88892320679562
Iteration: 9, Func. Count: 90, Neg. LLF: 93.86018495116852
Iteration: 10, Func. Count: 99, Neg. LLF: 93.84274657224755
Iteration: 11, Func. Count: 108, Neg. LLF: 93.8215415140439
Iteration: 12, Func. Count: 117, Neg. LLF: 93.81997408248426
Iteration: 13, Func. Count: 126, Neg. LLF: 93.8198303776725
Iteration: 14, Func. Count: 135, Neg. LLF: 93.81982954573355
Optimization terminated successfully (Exit mode 0)
Current function value: 93.81982954573355
Iterations: 14
Function evaluations: 135
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 107.91531087642268
Iteration: 2, Func. Count: 23, Neg. LLF: 111.47754536829073
Iteration: 3, Func. Count: 34, Neg. LLF: 423.99441918694544
Iteration: 4, Func. Count: 45, Neg. LLF: 94.22485860356923
Iteration: 5, Func. Count: 55, Neg. LLF: 93.93538811426103
Iteration: 6, Func. Count: 65, Neg. LLF: 94.05573930445046
Iteration: 7, Func. Count: 76, Neg. LLF: 94.18737592751114
Iteration: 8, Func. Count: 87, Neg. LLF: 93.83452787979391
Iteration: 9, Func. Count: 97, Neg. LLF: 93.82802458539678
Iteration: 10, Func. Count: 107, Neg. LLF: 93.82429689301425
Iteration: 11, Func. Count: 117, Neg. LLF: 93.82009397476287
Iteration: 12, Func. Count: 127, Neg. LLF: 93.81984230235417
Iteration: 13, Func. Count: 137, Neg. LLF: 93.81982963008738
Iteration: 14, Func. Count: 146, Neg. LLF: 93.81982964121296
Optimization terminated successfully (Exit mode 0)
Current function value: 93.81982963008738
Iterations: 14
Function evaluations: 146
Gradient evaluations: 14
Iteration: 1, Func. Count: 12, Neg. LLF: 116.22329779216491
Iteration: 2, Func. Count: 28, Neg. LLF: 115.97940404290787
Iteration: 3, Func. Count: 40, Neg. LLF: 95.83949774982001
Iteration: 4, Func. Count: 52, Neg. LLF: 94.49838303279317
Iteration: 5, Func. Count: 63, Neg. LLF: 119.0225401842456
Iteration: 6, Func. Count: 75, Neg. LLF: 98.63315195199202
Iteration: 7, Func. Count: 88, Neg. LLF: 94.33973104883903
Iteration: 8, Func. Count: 100, Neg. LLF: 93.97782848952332
Iteration: 9, Func. Count: 111, Neg. LLF: 93.95945593111652
Iteration: 10, Func. Count: 122, Neg. LLF: 93.92860886060708
Iteration: 11, Func. Count: 133, Neg. LLF: 93.91483374987907
Iteration: 12, Func. Count: 144, Neg. LLF: 93.8919854343125
Iteration: 13, Func. Count: 155, Neg. LLF: 93.86104752572675
Iteration: 14, Func. Count: 166, Neg. LLF: 93.8335324722522
Iteration: 15, Func. Count: 177, Neg. LLF: 93.823133342076
Iteration: 16, Func. Count: 188, Neg. LLF: 93.8203581839389
Iteration: 17, Func. Count: 199, Neg. LLF: 93.81985749792076
Iteration: 18, Func. Count: 210, Neg. LLF: 93.81983058956038
Iteration: 19, Func. Count: 221, Neg. LLF: 93.8198295539577
Iteration: 20, Func. Count: 231, Neg. LLF: 93.81982963769093
Optimization terminated successfully (Exit mode 0)
Current function value: 93.8198295539577
Iterations: 20
Function evaluations: 231
Gradient evaluations: 20
Iteration: 1, Func. Count: 13, Neg. LLF: 111.36115454668032
Iteration: 2, Func. Count: 27, Neg. LLF: 112.33860227605899
Iteration: 3, Func. Count: 40, Neg. LLF: 669.4423015751462
Iteration: 4, Func. Count: 53, Neg. LLF: 94.22588456617962
Iteration: 5, Func. Count: 65, Neg. LLF: 93.96679729386706
Iteration: 6, Func. Count: 77, Neg. LLF: 93.87906982922473
Iteration: 7, Func. Count: 89, Neg. LLF: 93.8453727268968
Iteration: 8, Func. Count: 101, Neg. LLF: 93.83264151285
Iteration: 9, Func. Count: 113, Neg. LLF: 93.82213952220991
Iteration: 10, Func. Count: 125, Neg. LLF: 93.8200589950284
Iteration: 11, Func. Count: 137, Neg. LLF: 93.81984605472317
Iteration: 12, Func. Count: 149, Neg. LLF: 93.8198306009163
Iteration: 13, Func. Count: 161, Neg. LLF: 93.81982949607318
Iteration: 14, Func. Count: 172, Neg. LLF: 93.81982958884238
Optimization terminated successfully (Exit mode 0)
Current function value: 93.81982949607318
Iterations: 14
Function evaluations: 172
Gradient evaluations: 14
Iteration: 1, Func. Count: 14, Neg. LLF: 121.49027663143092
Iteration: 2, Func. Count: 32, Neg. LLF: 126.61142231843351
Iteration: 3, Func. Count: 46, Neg. LLF: 97.62911166617774
Iteration: 4, Func. Count: 60, Neg. LLF: 102.68957211888497
Iteration: 5, Func. Count: 74, Neg. LLF: 96.57311827072778
Iteration: 6, Func. Count: 88, Neg. LLF: 94.68980524715863
Iteration: 7, Func. Count: 101, Neg. LLF: 94.40023315759244
Iteration: 8, Func. Count: 114, Neg. LLF: 94.32288130960781
Iteration: 9, Func. Count: 127, Neg. LLF: 94.2045299130204
Iteration: 10, Func. Count: 140, Neg. LLF: 94.19361487509167
Iteration: 11, Func. Count: 153, Neg. LLF: 94.18874937301632
Iteration: 12, Func. Count: 166, Neg. LLF: 94.18539761865217
Iteration: 13, Func. Count: 179, Neg. LLF: 94.18273286666482
Iteration: 14, Func. Count: 192, Neg. LLF: 94.18121589554603
Iteration: 15, Func. Count: 205, Neg. LLF: 94.18063520167159
Iteration: 16, Func. Count: 218, Neg. LLF: 94.180154902246
Iteration: 17, Func. Count: 231, Neg. LLF: 94.17951785692229
Iteration: 18, Func. Count: 244, Neg. LLF: 94.17908339879723
Iteration: 19, Func. Count: 257, Neg. LLF: 94.17895597685052
Iteration: 20, Func. Count: 270, Neg. LLF: 94.17894135230702
Iteration: 21, Func. Count: 283, Neg. LLF: 94.17894048344773
Optimization terminated successfully (Exit mode 0)
Current function value: 94.17894048344773
Iterations: 21
Function evaluations: 283
Gradient evaluations: 21
Iteration: 1, Func. Count: 11, Neg. LLF: 103.98246722838711
Iteration: 2, Func. Count: 23, Neg. LLF: 6380371.156163218
Iteration: 3, Func. Count: 34, Neg. LLF: 16836483.89470605
Iteration: 4, Func. Count: 45, Neg. LLF: 4287.868061417552
Iteration: 5, Func. Count: 56, Neg. LLF: 3752.6424714741242
Iteration: 6, Func. Count: 67, Neg. LLF: 95.26457727529552
Iteration: 7, Func. Count: 78, Neg. LLF: 102.90853964587193
Iteration: 8, Func. Count: 89, Neg. LLF: 92.65683487581175
Iteration: 9, Func. Count: 100, Neg. LLF: 92.18977231527053
Iteration: 10, Func. Count: 111, Neg. LLF: 91.83147424769115
Iteration: 11, Func. Count: 121, Neg. LLF: 91.9270308612998
Iteration: 12, Func. Count: 132, Neg. LLF: 91.60129039455835
Iteration: 13, Func. Count: 142, Neg. LLF: 91.6246266154886
Iteration: 14, Func. Count: 153, Neg. LLF: 91.57097555121727
Iteration: 15, Func. Count: 163, Neg. LLF: 91.57056820900571
Iteration: 16, Func. Count: 173, Neg. LLF: 91.5705497578618
Iteration: 17, Func. Count: 182, Neg. LLF: 91.57054975341602
Optimization terminated successfully (Exit mode 0)
Current function value: 91.5705497578618
Iterations: 17
Function evaluations: 182
Gradient evaluations: 17
Iteration: 1, Func. Count: 12, Neg. LLF: 94.33244625406543
Iteration: 2, Func. Count: 23, Neg. LLF: 127.76472085342353
Iteration: 3, Func. Count: 35, Neg. LLF: 3629.40172321257
Iteration: 4, Func. Count: 47, Neg. LLF: 212192.6750587558
Iteration: 5, Func. Count: 59, Neg. LLF: 27631849.21945811
Iteration: 6, Func. Count: 71, Neg. LLF: 122.78523449546461
Iteration: 7, Func. Count: 83, Neg. LLF: 136.25836175139844
Iteration: 8, Func. Count: 95, Neg. LLF: 100.51559792025762
Iteration: 9, Func. Count: 107, Neg. LLF: 108.75405655617408
Iteration: 10, Func. Count: 119, Neg. LLF: 91.60752558687398
Iteration: 11, Func. Count: 130, Neg. LLF: 91.57335786976012
Iteration: 12, Func. Count: 141, Neg. LLF: 91.57088357978816
Iteration: 13, Func. Count: 152, Neg. LLF: 91.57066443218919
Iteration: 14, Func. Count: 163, Neg. LLF: 91.57055054315742
Iteration: 15, Func. Count: 174, Neg. LLF: 91.57054989674184
Optimization terminated successfully (Exit mode 0)
Current function value: 91.57054989674184
Iterations: 15
Function evaluations: 174
Gradient evaluations: 15
Iteration: 1, Func. Count: 13, Neg. LLF: 94.45861833165651
Iteration: 2, Func. Count: 26, Neg. LLF: 175.22620377381773
Iteration: 3, Func. Count: 39, Neg. LLF: 8456018.797452439
Iteration: 4, Func. Count: 52, Neg. LLF: 159.28182693417412
Iteration: 5, Func. Count: 65, Neg. LLF: 119.74607422483368
Iteration: 6, Func. Count: 78, Neg. LLF: 93.55673824292049
Iteration: 7, Func. Count: 91, Neg. LLF: 91.87510084434862
Iteration: 8, Func. Count: 103, Neg. LLF: 91.78488081038145
Iteration: 9, Func. Count: 116, Neg. LLF: 92.07163019345842
Iteration: 10, Func. Count: 129, Neg. LLF: 91.59684022207881
Iteration: 11, Func. Count: 141, Neg. LLF: 91.57501349468524
Iteration: 12, Func. Count: 153, Neg. LLF: 91.57487898760975
Iteration: 13, Func. Count: 166, Neg. LLF: 91.57056733244798
Iteration: 14, Func. Count: 178, Neg. LLF: 91.57055031261697
Iteration: 15, Func. Count: 190, Neg. LLF: 91.57054957499021
Optimization terminated successfully (Exit mode 0)
Current function value: 91.57054957499021
Iterations: 15
Function evaluations: 190
Gradient evaluations: 15
Iteration: 1, Func. Count: 14, Neg. LLF: 95.7221265610762
Iteration: 2, Func. Count: 28, Neg. LLF: 139.86649509806566
Iteration: 3, Func. Count: 42, Neg. LLF: 8018369.176593025
Iteration: 4, Func. Count: 56, Neg. LLF: 994.3769678599534
Iteration: 5, Func. Count: 70, Neg. LLF: 116.55908263681194
Iteration: 6, Func. Count: 84, Neg. LLF: 92.6486958782218
Iteration: 7, Func. Count: 98, Neg. LLF: 91.82240867320508
Iteration: 8, Func. Count: 111, Neg. LLF: 91.68974852193398
Iteration: 9, Func. Count: 124, Neg. LLF: 91.65552474638191
Iteration: 10, Func. Count: 137, Neg. LLF: 91.57874437825197
Iteration: 11, Func. Count: 150, Neg. LLF: 91.57161049069563
Iteration: 12, Func. Count: 163, Neg. LLF: 91.57063721838523
Iteration: 13, Func. Count: 176, Neg. LLF: 91.57057177956203
Iteration: 14, Func. Count: 189, Neg. LLF: 91.57055045113299
Iteration: 15, Func. Count: 202, Neg. LLF: 91.57054961733509
Optimization terminated successfully (Exit mode 0)
Current function value: 91.57054961733509
Iterations: 15
Function evaluations: 202
Gradient evaluations: 15
Iteration: 1, Func. Count: 15, Neg. LLF: 96.49194476935675
Iteration: 2, Func. Count: 30, Neg. LLF: 138.93884947024833
Iteration: 3, Func. Count: 45, Neg. LLF: 8032226.746792055
Iteration: 4, Func. Count: 60, Neg. LLF: 622.8423845078432
Iteration: 5, Func. Count: 75, Neg. LLF: 120.08756859259496
Iteration: 6, Func. Count: 90, Neg. LLF: 92.76915913760557
Iteration: 7, Func. Count: 105, Neg. LLF: 91.84862508202988
Iteration: 8, Func. Count: 119, Neg. LLF: 91.68054460565222
Iteration: 9, Func. Count: 133, Neg. LLF: 91.76123377037034
Iteration: 10, Func. Count: 148, Neg. LLF: 91.70589148094342
Iteration: 11, Func. Count: 163, Neg. LLF: 91.61265253124715
Iteration: 12, Func. Count: 178, Neg. LLF: 91.57122267644326
Iteration: 13, Func. Count: 192, Neg. LLF: 91.57075492745426
Iteration: 14, Func. Count: 206, Neg. LLF: 91.57057563009461
Iteration: 15, Func. Count: 220, Neg. LLF: 91.57055038781046
Iteration: 16, Func. Count: 234, Neg. LLF: 91.57054947742392
Optimization terminated successfully (Exit mode 0)
Current function value: 91.57054947742392
Iterations: 16
Function evaluations: 234
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 104.82638859302718
Iteration: 2, Func. Count: 25, Neg. LLF: 2749188.2724681366
Iteration: 3, Func. Count: 37, Neg. LLF: 3630464.3425107524
Iteration: 4, Func. Count: 49, Neg. LLF: 1073958.283797184
Iteration: 5, Func. Count: 61, Neg. LLF: 461.70612324799976
Iteration: 6, Func. Count: 73, Neg. LLF: 1006995.9543288781
Iteration: 7, Func. Count: 85, Neg. LLF: 111.42517852369774
Iteration: 8, Func. Count: 97, Neg. LLF: 133.4710834068403
Iteration: 9, Func. Count: 109, Neg. LLF: 101.60243816967369
Iteration: 10, Func. Count: 121, Neg. LLF: 92.60365548495841
Iteration: 11, Func. Count: 133, Neg. LLF: 91.9321674056079
Iteration: 12, Func. Count: 145, Neg. LLF: 92.0817731633356
Iteration: 13, Func. Count: 157, Neg. LLF: 91.5251067336869
Iteration: 14, Func. Count: 168, Neg. LLF: 91.26274027841295
Iteration: 15, Func. Count: 179, Neg. LLF: 91.2444062295203
Iteration: 16, Func. Count: 190, Neg. LLF: 91.24389446623161
Iteration: 17, Func. Count: 201, Neg. LLF: 91.24383921501862
Iteration: 18, Func. Count: 212, Neg. LLF: 91.24383605068495
Iteration: 19, Func. Count: 222, Neg. LLF: 91.24383605626919
Optimization terminated successfully (Exit mode 0)
Current function value: 91.24383605068495
Iterations: 19
Function evaluations: 222
Gradient evaluations: 19
Iteration: 1, Func. Count: 13, Neg. LLF: 96.86449623913704
Iteration: 2, Func. Count: 26, Neg. LLF: 141.00514948222008
Iteration: 3, Func. Count: 39, Neg. LLF: 5654292.755622281
Iteration: 4, Func. Count: 52, Neg. LLF: 3475715.4519558884
Iteration: 5, Func. Count: 65, Neg. LLF: 97.98429623979467
Iteration: 6, Func. Count: 78, Neg. LLF: 101.77737695390827
Iteration: 7, Func. Count: 91, Neg. LLF: 94.27129787195543
Iteration: 8, Func. Count: 104, Neg. LLF: 94.46130335119281
Iteration: 9, Func. Count: 117, Neg. LLF: 93.4554857510521
Iteration: 10, Func. Count: 130, Neg. LLF: 91.41330977552055
Iteration: 11, Func. Count: 143, Neg. LLF: 91.79524112717071
Iteration: 12, Func. Count: 156, Neg. LLF: 91.58645795078819
Iteration: 13, Func. Count: 169, Neg. LLF: 91.24310032119928
Iteration: 14, Func. Count: 181, Neg. LLF: 91.29691457398377
Iteration: 15, Func. Count: 194, Neg. LLF: 91.22371580598619
Iteration: 16, Func. Count: 206, Neg. LLF: 91.22193546332184
Iteration: 17, Func. Count: 218, Neg. LLF: 91.22161114338908
Iteration: 18, Func. Count: 230, Neg. LLF: 91.22155565438321
Iteration: 19, Func. Count: 242, Neg. LLF: 91.22155471834559
Optimization terminated successfully (Exit mode 0)
Current function value: 91.22155471834559
Iterations: 19
Function evaluations: 242
Gradient evaluations: 19
Iteration: 1, Func. Count: 14, Neg. LLF: 115.93955661870228
Iteration: 2, Func. Count: 32, Neg. LLF: 7803920.3029036075
Iteration: 3, Func. Count: 46, Neg. LLF: 101.36830710225246
Iteration: 4, Func. Count: 60, Neg. LLF: 101.2722393611402
Iteration: 5, Func. Count: 74, Neg. LLF: 92.16024239028553
Iteration: 6, Func. Count: 87, Neg. LLF: 97.11462003751211
Iteration: 7, Func. Count: 101, Neg. LLF: 94.01243789994824
Iteration: 8, Func. Count: 115, Neg. LLF: 94.31924094188598
Iteration: 9, Func. Count: 130, Neg. LLF: 92.52474036366651
Iteration: 10, Func. Count: 144, Neg. LLF: 91.85583450681416
Iteration: 11, Func. Count: 158, Neg. LLF: 91.77933785528325
Iteration: 12, Func. Count: 172, Neg. LLF: 91.632339637096
Iteration: 13, Func. Count: 185, Neg. LLF: 91.63692029646049
Iteration: 14, Func. Count: 199, Neg. LLF: 91.60651676166792
Iteration: 15, Func. Count: 212, Neg. LLF: 91.55693287828495
Iteration: 16, Func. Count: 225, Neg. LLF: 91.54338276519204
Iteration: 17, Func. Count: 238, Neg. LLF: 91.5116967281749
Iteration: 18, Func. Count: 251, Neg. LLF: 91.70898686863978
Iteration: 19, Func. Count: 265, Neg. LLF: 91.37703887726052
Iteration: 20, Func. Count: 278, Neg. LLF: 91.29599380649873
Iteration: 21, Func. Count: 291, Neg. LLF: 91.2573026975571
Iteration: 22, Func. Count: 304, Neg. LLF: 91.2341367777822
Iteration: 23, Func. Count: 317, Neg. LLF: 91.22355744464119
Iteration: 24, Func. Count: 330, Neg. LLF: 91.22180735605741
Iteration: 25, Func. Count: 343, Neg. LLF: 91.22157248236677
Iteration: 26, Func. Count: 356, Neg. LLF: 91.2215557915663
Iteration: 27, Func. Count: 369, Neg. LLF: 91.22155481594531
Optimization terminated successfully (Exit mode 0)
Current function value: 91.22155481594531
Iterations: 27
Function evaluations: 369
Gradient evaluations: 27
Iteration: 1, Func. Count: 15, Neg. LLF: 119.15688890896767
Iteration: 2, Func. Count: 34, Neg. LLF: 7484085.264972146
Iteration: 3, Func. Count: 49, Neg. LLF: 115.85568877652064
Iteration: 4, Func. Count: 64, Neg. LLF: 119.64897957777913
Iteration: 5, Func. Count: 79, Neg. LLF: 92.43193559810277
Iteration: 6, Func. Count: 93, Neg. LLF: 296.68301826685655
Iteration: 7, Func. Count: 109, Neg. LLF: 97.77199213111194
Iteration: 8, Func. Count: 124, Neg. LLF: 108.25767033599712
Iteration: 9, Func. Count: 141, Neg. LLF: 102.19256863577051
Iteration: 10, Func. Count: 156, Neg. LLF: 101.59139803084399
Iteration: 11, Func. Count: 171, Neg. LLF: 95.77928899808018
Iteration: 12, Func. Count: 186, Neg. LLF: 92.7317445621588
Iteration: 13, Func. Count: 201, Neg. LLF: 91.78140882431582
Iteration: 14, Func. Count: 215, Neg. LLF: 91.7597159955403
Iteration: 15, Func. Count: 229, Neg. LLF: 91.7012067126805
Iteration: 16, Func. Count: 243, Neg. LLF: 91.66531730521041
Iteration: 17, Func. Count: 257, Neg. LLF: 91.60737856842566
Iteration: 18, Func. Count: 271, Neg. LLF: 91.56236955324944
Iteration: 19, Func. Count: 285, Neg. LLF: 91.48554717931873
Iteration: 20, Func. Count: 299, Neg. LLF: 91.38555400524147
Iteration: 21, Func. Count: 313, Neg. LLF: 91.29120363468071
Iteration: 22, Func. Count: 327, Neg. LLF: 91.25967801723861
Iteration: 23, Func. Count: 341, Neg. LLF: 91.24133104291953
Iteration: 24, Func. Count: 355, Neg. LLF: 91.23021330142653
Iteration: 25, Func. Count: 369, Neg. LLF: 91.22226625609825
Iteration: 26, Func. Count: 383, Neg. LLF: 91.22161727549157
Iteration: 27, Func. Count: 397, Neg. LLF: 91.22155835347
Iteration: 28, Func. Count: 411, Neg. LLF: 91.22155478603646
Iteration: 29, Func. Count: 424, Neg. LLF: 91.22155496037628
Optimization terminated successfully (Exit mode 0)
Current function value: 91.22155478603646
Iterations: 29
Function evaluations: 424
Gradient evaluations: 29
Iteration: 1, Func. Count: 16, Neg. LLF: 121.33875758419175
Iteration: 2, Func. Count: 36, Neg. LLF: 7354528.935521862
Iteration: 3, Func. Count: 52, Neg. LLF: 118.68310538918868
Iteration: 4, Func. Count: 68, Neg. LLF: 112.05421771037591
Iteration: 5, Func. Count: 84, Neg. LLF: 128.04079063715253
Iteration: 6, Func. Count: 100, Neg. LLF: 91.94294717002697
Iteration: 7, Func. Count: 115, Neg. LLF: 93.94553747741828
Iteration: 8, Func. Count: 131, Neg. LLF: 101.80360356361331
Iteration: 9, Func. Count: 148, Neg. LLF: 92.01035466580096
Iteration: 10, Func. Count: 164, Neg. LLF: 91.81975622107342
Iteration: 11, Func. Count: 180, Neg. LLF: 91.84284586301699
Iteration: 12, Func. Count: 196, Neg. LLF: 91.74205199891583
Iteration: 13, Func. Count: 211, Neg. LLF: 91.71090881740109
Iteration: 14, Func. Count: 226, Neg. LLF: 91.64589650859956
Iteration: 15, Func. Count: 241, Neg. LLF: 91.3781665193244
Iteration: 16, Func. Count: 256, Neg. LLF: 91.31901634270275
Iteration: 17, Func. Count: 271, Neg. LLF: 91.25823741491988
Iteration: 18, Func. Count: 286, Neg. LLF: 91.22683954365043
Iteration: 19, Func. Count: 301, Neg. LLF: 91.22245510460657
Iteration: 20, Func. Count: 316, Neg. LLF: 91.2217998872936
Iteration: 21, Func. Count: 331, Neg. LLF: 91.22158339694182
Iteration: 22, Func. Count: 346, Neg. LLF: 91.221566999692
Iteration: 23, Func. Count: 361, Neg. LLF: 91.22155585641775
Iteration: 24, Func. Count: 376, Neg. LLF: 91.22155484262002
Iteration: 25, Func. Count: 390, Neg. LLF: 91.22155496247966
Optimization terminated successfully (Exit mode 0)
Current function value: 91.22155484262002
Iterations: 25
Function evaluations: 390
Gradient evaluations: 25
Iteration: 1, Func. Count: 7, Neg. LLF: 135.34262246708602
Iteration: 2, Func. Count: 16, Neg. LLF: 282599130.8019527
Iteration: 3, Func. Count: 23, Neg. LLF: 7468364.59650253
Iteration: 4, Func. Count: 30, Neg. LLF: 93.28302386521788
Iteration: 5, Func. Count: 36, Neg. LLF: 129.88627343624069
Iteration: 6, Func. Count: 45, Neg. LLF: 94.52453361820999
Iteration: 7, Func. Count: 52, Neg. LLF: 92.61133399605694
Iteration: 8, Func. Count: 58, Neg. LLF: 100.66342955006502
Iteration: 9, Func. Count: 67, Neg. LLF: 92.59503229415127
Iteration: 10, Func. Count: 74, Neg. LLF: 92.36648574088225
Iteration: 11, Func. Count: 80, Neg. LLF: 92.22204163599564
Iteration: 12, Func. Count: 86, Neg. LLF: 92.15005199752638
Iteration: 13, Func. Count: 92, Neg. LLF: 92.13707199429601
Iteration: 14, Func. Count: 98, Neg. LLF: 92.13589508184754
Iteration: 15, Func. Count: 104, Neg. LLF: 92.13587271297301
Iteration: 16, Func. Count: 109, Neg. LLF: 92.13587271296667
Optimization terminated successfully (Exit mode 0)
Current function value: 92.13587271297301
Iterations: 16
Function evaluations: 109
Gradient evaluations: 16
Iteration: 1, Func. Count: 5, Neg. LLF: 126.12146726718152
Iteration: 2, Func. Count: 12, Neg. LLF: 100.74655765693656
Iteration: 3, Func. Count: 16, Neg. LLF: 100.1679054819649
Iteration: 4, Func. Count: 20, Neg. LLF: 100.12591244458207
Iteration: 5, Func. Count: 24, Neg. LLF: 100.1227287412001
Iteration: 6, Func. Count: 28, Neg. LLF: 100.12270153800849
Iteration: 7, Func. Count: 31, Neg. LLF: 100.12270160212503
Optimization terminated successfully (Exit mode 0)
Current function value: 100.12270153800849
Iterations: 7
Function evaluations: 31
Gradient evaluations: 7
Iteration: 1, Func. Count: 6, Neg. LLF: 209.9847158677585
Iteration: 2, Func. Count: 18, Neg. LLF: 99.59374290039469
Iteration: 3, Func. Count: 24, Neg. LLF: 99.10497404184409
Iteration: 4, Func. Count: 29, Neg. LLF: 99.05432877037865
Iteration: 5, Func. Count: 34, Neg. LLF: 99.03156242811961
Iteration: 6, Func. Count: 39, Neg. LLF: 99.03131930672319
Iteration: 7, Func. Count: 44, Neg. LLF: 99.03129688451358
Iteration: 8, Func. Count: 48, Neg. LLF: 99.03129710961576
Optimization terminated successfully (Exit mode 0)
Current function value: 99.03129688451358
Iterations: 8
Function evaluations: 48
Gradient evaluations: 8
Iteration: 1, Func. Count: 7, Neg. LLF: 159.29417029142923
Iteration: 2, Func. Count: 16, Neg. LLF: 99.2451821123896
Iteration: 3, Func. Count: 22, Neg. LLF: 99.31709624771281
Iteration: 4, Func. Count: 29, Neg. LLF: 99.07438572365844
Iteration: 5, Func. Count: 35, Neg. LLF: 99.1691474410682
Iteration: 6, Func. Count: 43, Neg. LLF: 99.04006846357751
Iteration: 7, Func. Count: 49, Neg. LLF: 99.03946410748628
Iteration: 8, Func. Count: 55, Neg. LLF: 99.03944026756814
Iteration: 9, Func. Count: 61, Neg. LLF: 99.03941705266153
Iteration: 10, Func. Count: 67, Neg. LLF: 99.03936269486371
Iteration: 11, Func. Count: 73, Neg. LLF: 99.03930555132656
Iteration: 12, Func. Count: 79, Neg. LLF: 99.0392542219066
Iteration: 13, Func. Count: 85, Neg. LLF: 99.03922416204684
Iteration: 14, Func. Count: 91, Neg. LLF: 99.0391623478399
Iteration: 15, Func. Count: 97, Neg. LLF: 99.03839588637037
Iteration: 16, Func. Count: 103, Neg. LLF: 99.0322840656647
Iteration: 17, Func. Count: 109, Neg. LLF: 142.19590199177927
Iteration: 18, Func. Count: 119, Neg. LLF: 99.1262386180124
Iteration: 19, Func. Count: 126, Neg. LLF: 99.03129686011303
Iteration: 20, Func. Count: 131, Neg. LLF: 99.03129663540477
Optimization terminated successfully (Exit mode 0)
Current function value: 99.03129686011303
Iterations: 21
Function evaluations: 131
Gradient evaluations: 20
Iteration: 1, Func. Count: 8, Neg. LLF: 159.42582429010992
Iteration: 2, Func. Count: 19, Neg. LLF: 99.19969003099398
Iteration: 3, Func. Count: 26, Neg. LLF: 99.09960906318376
Iteration: 4, Func. Count: 33, Neg. LLF: 99.10806710107497
Iteration: 5, Func. Count: 41, Neg. LLF: 99.03588481862273
Iteration: 6, Func. Count: 48, Neg. LLF: 99.0353820463866
Iteration: 7, Func. Count: 55, Neg. LLF: 99.03526609448015
Iteration: 8, Func. Count: 62, Neg. LLF: 99.03442049736994
Iteration: 9, Func. Count: 69, Neg. LLF: 99.00193541612032
Iteration: 10, Func. Count: 76, Neg. LLF: 99.07920994477449
Iteration: 11, Func. Count: 87, Neg. LLF: 98.98894919643091
Iteration: 12, Func. Count: 94, Neg. LLF: 98.9863431426892
Iteration: 13, Func. Count: 101, Neg. LLF: 99.1741613698442
Iteration: 14, Func. Count: 118, Neg. LLF: 99.71247644965133
Iteration: 15, Func. Count: 135, Neg. LLF: 99.00231844161725
Iteration: 16, Func. Count: 146, Neg. LLF: 99.09519511732827
Iteration: 17, Func. Count: 155, Neg. LLF: 23980286.032434225
Iteration: 18, Func. Count: 164, Neg. LLF: 100.09001032658045
Iteration: 19, Func. Count: 172, Neg. LLF: 99.9267227970378
Iteration: 20, Func. Count: 180, Neg. LLF: 98.56355052906619
Iteration: 21, Func. Count: 187, Neg. LLF: 98.56354242303888
Iteration: 22, Func. Count: 193, Neg. LLF: 98.56354217467138
Optimization terminated successfully (Exit mode 0)
Current function value: 98.56354242303888
Iterations: 23
Function evaluations: 193
Gradient evaluations: 22
Iteration: 1, Func. Count: 9, Neg. LLF: 160.78865715602944
Iteration: 2, Func. Count: 21, Neg. LLF: 99.16580966518829
Iteration: 3, Func. Count: 29, Neg. LLF: 99.07758255501142
Iteration: 4, Func. Count: 37, Neg. LLF: 99.06836182396306
Iteration: 5, Func. Count: 45, Neg. LLF: 99.04940720014619
Iteration: 6, Func. Count: 53, Neg. LLF: 99.04721840427955
Iteration: 7, Func. Count: 61, Neg. LLF: 99.04063779906387
Iteration: 8, Func. Count: 69, Neg. LLF: 99.03560883149505
Iteration: 9, Func. Count: 77, Neg. LLF: 99.00131677419719
Iteration: 10, Func. Count: 85, Neg. LLF: 99.03449039302771
Iteration: 11, Func. Count: 96, Neg. LLF: 98.98163246705592
Iteration: 12, Func. Count: 104, Neg. LLF: 98.96378915204076
Iteration: 13, Func. Count: 112, Neg. LLF: 98.87426017762726
Iteration: 14, Func. Count: 120, Neg. LLF: 98.60227678892352
Iteration: 15, Func. Count: 128, Neg. LLF: 98.49033167319662
Iteration: 16, Func. Count: 136, Neg. LLF: 98.51927235632233
Iteration: 17, Func. Count: 154, Neg. LLF: 101.07875028296151
Iteration: 18, Func. Count: 164, Neg. LLF: 101.36975202777153
Iteration: 19, Func. Count: 174, Neg. LLF: 98.6882225164387
Iteration: 20, Func. Count: 184, Neg. LLF: 98.56356375544676
Iteration: 21, Func. Count: 192, Neg. LLF: 98.56354324465711
Iteration: 22, Func. Count: 199, Neg. LLF: 98.56354331792907
Optimization terminated successfully (Exit mode 0)
Current function value: 98.56354324465711
Iterations: 23
Function evaluations: 199
Gradient evaluations: 22
Iteration: 1, Func. Count: 6, Neg. LLF: 126.98772426624299
Iteration: 2, Func. Count: 14, Neg. LLF: 107.86688818908488
Iteration: 3, Func. Count: 20, Neg. LLF: 100.33559125959972
Iteration: 4, Func. Count: 25, Neg. LLF: 100.25853104204093
Iteration: 5, Func. Count: 30, Neg. LLF: 100.12699602601464
Iteration: 6, Func. Count: 35, Neg. LLF: 100.12290029918259
Iteration: 7, Func. Count: 40, Neg. LLF: 100.12270202757799
Iteration: 8, Func. Count: 45, Neg. LLF: 100.12270143407522
Optimization terminated successfully (Exit mode 0)
Current function value: 100.12270143407522
Iterations: 8
Function evaluations: 45
Gradient evaluations: 8
Iteration: 1, Func. Count: 7, Neg. LLF: 209.98864448878922
Iteration: 2, Func. Count: 20, Neg. LLF: 99.48056495146345
Iteration: 3, Func. Count: 26, Neg. LLF: 99.58817295724015
Iteration: 4, Func. Count: 33, Neg. LLF: 100.02746348302274
Iteration: 5, Func. Count: 40, Neg. LLF: 99.03135370491403
Iteration: 6, Func. Count: 46, Neg. LLF: 99.03129687047463
Iteration: 7, Func. Count: 51, Neg. LLF: 99.03129709539992
Optimization terminated successfully (Exit mode 0)
Current function value: 99.03129687047463
Iterations: 7
Function evaluations: 51
Gradient evaluations: 7
Iteration: 1, Func. Count: 8, Neg. LLF: 160.25164842026774
Iteration: 2, Func. Count: 18, Neg. LLF: 99.21425882156684
Iteration: 3, Func. Count: 25, Neg. LLF: 99.6002083443212
Iteration: 4, Func. Count: 33, Neg. LLF: 99.06913951226736
Iteration: 5, Func. Count: 40, Neg. LLF: 99.05831973094766
Iteration: 6, Func. Count: 48, Neg. LLF: 99.0421261693584
Iteration: 7, Func. Count: 55, Neg. LLF: 99.03937081880738
Iteration: 8, Func. Count: 62, Neg. LLF: 99.03930546760444
Iteration: 9, Func. Count: 69, Neg. LLF: 99.03930306410196
Iteration: 10, Func. Count: 76, Neg. LLF: 99.0392900214761
Iteration: 11, Func. Count: 83, Neg. LLF: 99.03924879237664
Iteration: 12, Func. Count: 90, Neg. LLF: 99.03921810319757
Iteration: 13, Func. Count: 97, Neg. LLF: 99.03904146189491
Iteration: 14, Func. Count: 104, Neg. LLF: 99.03394331657498
Iteration: 15, Func. Count: 111, Neg. LLF: 99.03897483002186
Iteration: 16, Func. Count: 119, Neg. LLF: 99.03250578700514
Iteration: 17, Func. Count: 126, Neg. LLF: 149.76480010924374
Iteration: 18, Func. Count: 137, Neg. LLF: 99.03318055084704
Iteration: 19, Func. Count: 145, Neg. LLF: 99.03129685934387
Iteration: 20, Func. Count: 151, Neg. LLF: 99.03129663457847
Optimization terminated successfully (Exit mode 0)
Current function value: 99.03129685934387
Iterations: 21
Function evaluations: 151
Gradient evaluations: 20
Iteration: 1, Func. Count: 9, Neg. LLF: 161.05587499054573
Iteration: 2, Func. Count: 21, Neg. LLF: 99.18490171123705
Iteration: 3, Func. Count: 29, Neg. LLF: 99.0669223880028
Iteration: 4, Func. Count: 37, Neg. LLF: 99.15468579730327
Iteration: 5, Func. Count: 46, Neg. LLF: 99.03353038572203
Iteration: 6, Func. Count: 54, Neg. LLF: 99.03319292080056
Iteration: 7, Func. Count: 62, Neg. LLF: 99.03233870681791
Iteration: 8, Func. Count: 70, Neg. LLF: 99.03207441099845
Iteration: 9, Func. Count: 78, Neg. LLF: 99.03190570135045
Iteration: 10, Func. Count: 86, Neg. LLF: 99.03189921105269
Iteration: 11, Func. Count: 93, Neg. LLF: 99.03189913340033
Optimization terminated successfully (Exit mode 0)
Current function value: 99.03189921105269
Iterations: 11
Function evaluations: 93
Gradient evaluations: 11
Iteration: 1, Func. Count: 10, Neg. LLF: 160.05327270288484
Iteration: 2, Func. Count: 23, Neg. LLF: 99.13050704439225
Iteration: 3, Func. Count: 32, Neg. LLF: 99.15037724799093
Iteration: 4, Func. Count: 42, Neg. LLF: 99.06970159778699
Iteration: 5, Func. Count: 52, Neg. LLF: 99.05089053352192
Iteration: 6, Func. Count: 61, Neg. LLF: 99.04189333200137
Iteration: 7, Func. Count: 70, Neg. LLF: 99.0355464703237
Iteration: 8, Func. Count: 79, Neg. LLF: 99.00118968578715
Iteration: 9, Func. Count: 88, Neg. LLF: 99.03449636593763
Iteration: 10, Func. Count: 100, Neg. LLF: 98.98152043530355
Iteration: 11, Func. Count: 109, Neg. LLF: 98.96591767231013
Iteration: 12, Func. Count: 118, Neg. LLF: 98.87038127264678
Iteration: 13, Func. Count: 127, Neg. LLF: 98.65815112215815
Iteration: 14, Func. Count: 136, Neg. LLF: 98.48104950525725
Iteration: 15, Func. Count: 145, Neg. LLF: 106.07389221667394
Iteration: 16, Func. Count: 156, Neg. LLF: 101.07931339555896
Iteration: 17, Func. Count: 166, Neg. LLF: 99.06719206187928
Iteration: 18, Func. Count: 177, Neg. LLF: 98.5635658851323
Iteration: 19, Func. Count: 186, Neg. LLF: 98.5635527498228
Iteration: 20, Func. Count: 195, Neg. LLF: 98.56354658128305
Iteration: 21, Func. Count: 204, Neg. LLF: 98.56354279435855
Iteration: 22, Func. Count: 213, Neg. LLF: 98.5635421523951
Optimization terminated successfully (Exit mode 0)
Current function value: 98.5635421523951
Iterations: 23
Function evaluations: 213
Gradient evaluations: 22
Iteration: 1, Func. Count: 7, Neg. LLF: 135.18768617750203
Iteration: 2, Func. Count: 16, Neg. LLF: 204580159.87884536
Iteration: 3, Func. Count: 23, Neg. LLF: 6870442.26917639
Iteration: 4, Func. Count: 30, Neg. LLF: 97.46085446535477
Iteration: 5, Func. Count: 36, Neg. LLF: 97.29716029871098
Iteration: 6, Func. Count: 42, Neg. LLF: 97.28131577365592
Iteration: 7, Func. Count: 48, Neg. LLF: 97.23862322101827
Iteration: 8, Func. Count: 54, Neg. LLF: 97.2336432898555
Iteration: 9, Func. Count: 60, Neg. LLF: 97.23337194330595
Iteration: 10, Func. Count: 66, Neg. LLF: 97.23336825141337
Iteration: 11, Func. Count: 72, Neg. LLF: 97.23336758138146
Optimization terminated successfully (Exit mode 0)
Current function value: 97.23336758138146
Iterations: 11
Function evaluations: 72
Gradient evaluations: 11
Iteration: 1, Func. Count: 8, Neg. LLF: 209.99058244243375
Iteration: 2, Func. Count: 22, Neg. LLF: 99.42222567014485
Iteration: 3, Func. Count: 29, Neg. LLF: 100.37232576120316
Iteration: 4, Func. Count: 37, Neg. LLF: 99.5859339195102
Iteration: 5, Func. Count: 45, Neg. LLF: 99.03134518478605
Iteration: 6, Func. Count: 52, Neg. LLF: 99.03129705313226
Iteration: 7, Func. Count: 58, Neg. LLF: 99.03129727759632
Optimization terminated successfully (Exit mode 0)
Current function value: 99.03129705313226
Iterations: 7
Function evaluations: 58
Gradient evaluations: 7
Iteration: 1, Func. Count: 9, Neg. LLF: 107.47746486268561
Iteration: 2, Func. Count: 22, Neg. LLF: 14383898.429211998
Iteration: 3, Func. Count: 31, Neg. LLF: 101.09603546791406
Iteration: 4, Func. Count: 40, Neg. LLF: 99.26663784479092
Iteration: 5, Func. Count: 49, Neg. LLF: 98.99204714787048
Iteration: 6, Func. Count: 58, Neg. LLF: 107.44891923726301
Iteration: 7, Func. Count: 68, Neg. LLF: 98.22663842667816
Iteration: 8, Func. Count: 76, Neg. LLF: 97.97568824852742
Iteration: 9, Func. Count: 84, Neg. LLF: 102.97363748717271
Iteration: 10, Func. Count: 94, Neg. LLF: 97.5068865943179
Iteration: 11, Func. Count: 102, Neg. LLF: 97.31674882159228
Iteration: 12, Func. Count: 110, Neg. LLF: 97.27951737296584
Iteration: 13, Func. Count: 118, Neg. LLF: 97.25699432372465
Iteration: 14, Func. Count: 126, Neg. LLF: 97.24686518360689
Iteration: 15, Func. Count: 134, Neg. LLF: 97.24418391889678
Iteration: 16, Func. Count: 142, Neg. LLF: 97.24351339354581
Iteration: 17, Func. Count: 150, Neg. LLF: 97.24314075379439
Iteration: 18, Func. Count: 158, Neg. LLF: 97.24218441238874
Iteration: 19, Func. Count: 166, Neg. LLF: 97.24031649455578
Iteration: 20, Func. Count: 174, Neg. LLF: 97.2372971599479
Iteration: 21, Func. Count: 182, Neg. LLF: 97.23465272836219
Iteration: 22, Func. Count: 190, Neg. LLF: 97.23351309394697
Iteration: 23, Func. Count: 198, Neg. LLF: 97.23336982978778
Iteration: 24, Func. Count: 206, Neg. LLF: 97.23336759472394
Iteration: 25, Func. Count: 213, Neg. LLF: 97.23336769789579
Optimization terminated successfully (Exit mode 0)
Current function value: 97.23336759472394
Iterations: 25
Function evaluations: 213
Gradient evaluations: 25
Iteration: 1, Func. Count: 10, Neg. LLF: 111.6418105544702
Iteration: 2, Func. Count: 24, Neg. LLF: 13901214.818553055
Iteration: 3, Func. Count: 34, Neg. LLF: 98.13493776538296
Iteration: 4, Func. Count: 43, Neg. LLF: 102.68402892519082
Iteration: 5, Func. Count: 54, Neg. LLF: 162.84268349263624
Iteration: 6, Func. Count: 65, Neg. LLF: 96.46658318848455
Iteration: 7, Func. Count: 74, Neg. LLF: 123.99103562052842
Iteration: 8, Func. Count: 86, Neg. LLF: 97.33895090183832
Iteration: 9, Func. Count: 96, Neg. LLF: 96.39673819805799
Iteration: 10, Func. Count: 105, Neg. LLF: 96.35535103381349
Iteration: 11, Func. Count: 114, Neg. LLF: 96.31192585008073
Iteration: 12, Func. Count: 123, Neg. LLF: 96.25617586446154
Iteration: 13, Func. Count: 132, Neg. LLF: 96.21811072342659
Iteration: 14, Func. Count: 141, Neg. LLF: 96.20962866045444
Iteration: 15, Func. Count: 150, Neg. LLF: 96.20831125520681
Iteration: 16, Func. Count: 159, Neg. LLF: 96.2077052882495
Iteration: 17, Func. Count: 168, Neg. LLF: 96.20600529599979
Iteration: 18, Func. Count: 177, Neg. LLF: 96.20262760398727
Iteration: 19, Func. Count: 186, Neg. LLF: 96.19611544336604
Iteration: 20, Func. Count: 195, Neg. LLF: 96.19136865040166
Iteration: 21, Func. Count: 204, Neg. LLF: 96.19067091462064
Iteration: 22, Func. Count: 213, Neg. LLF: 96.19042175857213
Iteration: 23, Func. Count: 222, Neg. LLF: 96.1904195183882
Iteration: 24, Func. Count: 230, Neg. LLF: 96.19041951843171
Optimization terminated successfully (Exit mode 0)
Current function value: 96.1904195183882
Iterations: 24
Function evaluations: 230
Gradient evaluations: 24
Iteration: 1, Func. Count: 11, Neg. LLF: 114.03400805503769
Iteration: 2, Func. Count: 26, Neg. LLF: 13486649.530913746
Iteration: 3, Func. Count: 37, Neg. LLF: 100.29741107868124
Iteration: 4, Func. Count: 48, Neg. LLF: 111.14282807621103
Iteration: 5, Func. Count: 59, Neg. LLF: 100.16919379046382
Iteration: 6, Func. Count: 70, Neg. LLF: 96.86715411618792
Iteration: 7, Func. Count: 80, Neg. LLF: 100.23821290873495
Iteration: 8, Func. Count: 91, Neg. LLF: 97.80801035410528
Iteration: 9, Func. Count: 102, Neg. LLF: 1433.6911031962884
Iteration: 10, Func. Count: 114, Neg. LLF: 96.446628694417
Iteration: 11, Func. Count: 124, Neg. LLF: 96.34884704158593
Iteration: 12, Func. Count: 134, Neg. LLF: 96.27155992324938
Iteration: 13, Func. Count: 144, Neg. LLF: 97.45509160386874
Iteration: 14, Func. Count: 155, Neg. LLF: 96.32399852829184
Iteration: 15, Func. Count: 166, Neg. LLF: 96.24140565251466
Iteration: 16, Func. Count: 176, Neg. LLF: 96.23562137546656
Iteration: 17, Func. Count: 186, Neg. LLF: 96.22946359666906
Iteration: 18, Func. Count: 196, Neg. LLF: 96.21848218088222
Iteration: 19, Func. Count: 206, Neg. LLF: 96.20932106413875
Iteration: 20, Func. Count: 216, Neg. LLF: 96.19877128055344
Iteration: 21, Func. Count: 226, Neg. LLF: 96.19293778209489
Iteration: 22, Func. Count: 236, Neg. LLF: 96.19119608179886
Iteration: 23, Func. Count: 246, Neg. LLF: 96.19049844092523
Iteration: 24, Func. Count: 256, Neg. LLF: 96.19043151327521
Iteration: 25, Func. Count: 266, Neg. LLF: 96.1904206181056
Iteration: 26, Func. Count: 276, Neg. LLF: 96.19041954765154
Iteration: 27, Func. Count: 285, Neg. LLF: 96.19041962381691
Optimization terminated successfully (Exit mode 0)
Current function value: 96.19041954765154
Iterations: 27
Function evaluations: 285
Gradient evaluations: 27
Iteration: 1, Func. Count: 8, Neg. LLF: 137.54268172353508
Iteration: 2, Func. Count: 18, Neg. LLF: 216794577.5678404
Iteration: 3, Func. Count: 26, Neg. LLF: 6861986.882327151
Iteration: 4, Func. Count: 34, Neg. LLF: 97.59113072622176
Iteration: 5, Func. Count: 41, Neg. LLF: 97.32049120437642
Iteration: 6, Func. Count: 48, Neg. LLF: 97.29830011993326
Iteration: 7, Func. Count: 55, Neg. LLF: 97.26319049099159
Iteration: 8, Func. Count: 62, Neg. LLF: 97.24098683459856
Iteration: 9, Func. Count: 69, Neg. LLF: 97.2337397786345
Iteration: 10, Func. Count: 76, Neg. LLF: 97.23337450467093
Iteration: 11, Func. Count: 83, Neg. LLF: 97.23336791670005
Iteration: 12, Func. Count: 89, Neg. LLF: 97.23336793884029
Optimization terminated successfully (Exit mode 0)
Current function value: 97.23336791670005
Iterations: 12
Function evaluations: 89
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 209.98868293936965
Iteration: 2, Func. Count: 24, Neg. LLF: 99.4460754076067
Iteration: 3, Func. Count: 32, Neg. LLF: 100.10080132103202
Iteration: 4, Func. Count: 41, Neg. LLF: 99.69494955184761
Iteration: 5, Func. Count: 50, Neg. LLF: 99.03137330775019
Iteration: 6, Func. Count: 58, Neg. LLF: 99.03129689627792
Iteration: 7, Func. Count: 65, Neg. LLF: 99.03129712104773
Optimization terminated successfully (Exit mode 0)
Current function value: 99.03129689627792
Iterations: 7
Function evaluations: 65
Gradient evaluations: 7
Iteration: 1, Func. Count: 10, Neg. LLF: 107.61528475252403
Iteration: 2, Func. Count: 24, Neg. LLF: 14442607.877391165
Iteration: 3, Func. Count: 34, Neg. LLF: 101.52090813378575
Iteration: 4, Func. Count: 44, Neg. LLF: 99.48078550369978
Iteration: 5, Func. Count: 54, Neg. LLF: 99.09271835238573
Iteration: 6, Func. Count: 64, Neg. LLF: 113.34470363419604
Iteration: 7, Func. Count: 75, Neg. LLF: 98.42048654936798
Iteration: 8, Func. Count: 85, Neg. LLF: 98.62953486440631
Iteration: 9, Func. Count: 95, Neg. LLF: 105.04176474801992
Iteration: 10, Func. Count: 105, Neg. LLF: 97.78893287342783
Iteration: 11, Func. Count: 114, Neg. LLF: 97.54883445567462
Iteration: 12, Func. Count: 123, Neg. LLF: 97.41625772225674
Iteration: 13, Func. Count: 132, Neg. LLF: 97.28776661058635
Iteration: 14, Func. Count: 141, Neg. LLF: 97.27878634959238
Iteration: 15, Func. Count: 150, Neg. LLF: 97.27690603373232
Iteration: 16, Func. Count: 159, Neg. LLF: 97.27620155693978
Iteration: 17, Func. Count: 168, Neg. LLF: 97.27198954277432
Iteration: 18, Func. Count: 177, Neg. LLF: 97.26354634338811
Iteration: 19, Func. Count: 186, Neg. LLF: 97.25264349587302
Iteration: 20, Func. Count: 195, Neg. LLF: 97.24133546540394
Iteration: 21, Func. Count: 204, Neg. LLF: 97.23490135527902
Iteration: 22, Func. Count: 213, Neg. LLF: 97.2334201436822
Iteration: 23, Func. Count: 222, Neg. LLF: 97.23337497455148
Iteration: 24, Func. Count: 231, Neg. LLF: 97.23336766264129
Iteration: 25, Func. Count: 239, Neg. LLF: 97.2333677658477
Optimization terminated successfully (Exit mode 0)
Current function value: 97.23336766264129
Iterations: 25
Function evaluations: 239
Gradient evaluations: 25
Iteration: 1, Func. Count: 11, Neg. LLF: 111.83696112277957
Iteration: 2, Func. Count: 26, Neg. LLF: 13911955.767185012
Iteration: 3, Func. Count: 37, Neg. LLF: 98.15905174394432
Iteration: 4, Func. Count: 47, Neg. LLF: 102.50994410386132
Iteration: 5, Func. Count: 59, Neg. LLF: 242.22503452126756
Iteration: 6, Func. Count: 72, Neg. LLF: 114.97227843364972
Iteration: 7, Func. Count: 85, Neg. LLF: 110.65517773281235
Iteration: 8, Func. Count: 96, Neg. LLF: 96.50251368950572
Iteration: 9, Func. Count: 106, Neg. LLF: 96.386876887427
Iteration: 10, Func. Count: 116, Neg. LLF: 96.4870537186204
Iteration: 11, Func. Count: 127, Neg. LLF: 96.3526465468495
Iteration: 12, Func. Count: 137, Neg. LLF: 96.25948711004615
Iteration: 13, Func. Count: 147, Neg. LLF: 96.22141943339581
Iteration: 14, Func. Count: 157, Neg. LLF: 96.2104291414237
Iteration: 15, Func. Count: 167, Neg. LLF: 96.20878291301192
Iteration: 16, Func. Count: 177, Neg. LLF: 96.20816321542317
Iteration: 17, Func. Count: 187, Neg. LLF: 96.20670506136057
Iteration: 18, Func. Count: 197, Neg. LLF: 96.20365779254013
Iteration: 19, Func. Count: 207, Neg. LLF: 96.19757986209073
Iteration: 20, Func. Count: 217, Neg. LLF: 96.19156059038384
Iteration: 21, Func. Count: 227, Neg. LLF: 96.1907243866697
Iteration: 22, Func. Count: 237, Neg. LLF: 96.19042634321218
Iteration: 23, Func. Count: 247, Neg. LLF: 96.19041951944628
Iteration: 24, Func. Count: 256, Neg. LLF: 96.19041951944914
Optimization terminated successfully (Exit mode 0)
Current function value: 96.19041951944628
Iterations: 24
Function evaluations: 256
Gradient evaluations: 24
Iteration: 1, Func. Count: 12, Neg. LLF: 114.2409152736142
Iteration: 2, Func. Count: 28, Neg. LLF: 13477854.432915743
Iteration: 3, Func. Count: 40, Neg. LLF: 100.51364105065333
Iteration: 4, Func. Count: 52, Neg. LLF: 109.16429856604871
Iteration: 5, Func. Count: 64, Neg. LLF: 99.27389303349722
Iteration: 6, Func. Count: 76, Neg. LLF: 97.00273621222922
Iteration: 7, Func. Count: 87, Neg. LLF: 102.14096020512412
Iteration: 8, Func. Count: 100, Neg. LLF: 101.28859263905558
Iteration: 9, Func. Count: 112, Neg. LLF: 96.46880467748183
Iteration: 10, Func. Count: 123, Neg. LLF: 96.42794491290219
Iteration: 11, Func. Count: 134, Neg. LLF: 96.34685849396791
Iteration: 12, Func. Count: 145, Neg. LLF: 96.64274290933811
Iteration: 13, Func. Count: 157, Neg. LLF: 97.45419278053171
Iteration: 14, Func. Count: 169, Neg. LLF: 96.28425052653475
Iteration: 15, Func. Count: 181, Neg. LLF: 96.23474343762767
Iteration: 16, Func. Count: 192, Neg. LLF: 96.23058945469596
Iteration: 17, Func. Count: 203, Neg. LLF: 96.22177886045459
Iteration: 18, Func. Count: 214, Neg. LLF: 96.21266692150381
Iteration: 19, Func. Count: 225, Neg. LLF: 96.20080351523106
Iteration: 20, Func. Count: 236, Neg. LLF: 96.19381911576345
Iteration: 21, Func. Count: 247, Neg. LLF: 96.19135352697026
Iteration: 22, Func. Count: 258, Neg. LLF: 96.19063702332625
Iteration: 23, Func. Count: 269, Neg. LLF: 96.19044763588634
Iteration: 24, Func. Count: 280, Neg. LLF: 96.19042104646427
Iteration: 25, Func. Count: 291, Neg. LLF: 96.19041947693024
Iteration: 26, Func. Count: 301, Neg. LLF: 96.19041955306767
Optimization terminated successfully (Exit mode 0)
Current function value: 96.19041947693024
Iterations: 26
Function evaluations: 301
Gradient evaluations: 26
Iteration: 1, Func. Count: 5, Neg. LLF: 150.64615351510898
Iteration: 2, Func. Count: 11, Neg. LLF: 147.62683745352777
Iteration: 3, Func. Count: 17, Neg. LLF: 100.35156923573295
Iteration: 4, Func. Count: 21, Neg. LLF: 100.12961658634619
Iteration: 5, Func. Count: 25, Neg. LLF: 100.12374645907624
Iteration: 6, Func. Count: 29, Neg. LLF: 100.12270301109182
Iteration: 7, Func. Count: 33, Neg. LLF: 100.1227014317376
Iteration: 8, Func. Count: 36, Neg. LLF: 100.12270146222846
Optimization terminated successfully (Exit mode 0)
Current function value: 100.1227014317376
Iterations: 8
Function evaluations: 36
Gradient evaluations: 8
Iteration: 1, Func. Count: 6, Neg. LLF: 161.14264001011244
Iteration: 2, Func. Count: 14, Neg. LLF: 99.59230577469063
Iteration: 3, Func. Count: 19, Neg. LLF: 99.52214453801363
Iteration: 4, Func. Count: 24, Neg. LLF: 99.2289364440097
Iteration: 5, Func. Count: 29, Neg. LLF: 99.03773518833802
Iteration: 6, Func. Count: 34, Neg. LLF: 99.03143332122384
Iteration: 7, Func. Count: 39, Neg. LLF: 99.03129764127944
Iteration: 8, Func. Count: 44, Neg. LLF: 99.03129685928056
Optimization terminated successfully (Exit mode 0)
Current function value: 99.03129685928056
Iterations: 8
Function evaluations: 44
Gradient evaluations: 8
Iteration: 1, Func. Count: 7, Neg. LLF: 161.2151836699072
Iteration: 2, Func. Count: 16, Neg. LLF: 99.30347789558638
Iteration: 3, Func. Count: 22, Neg. LLF: 99.8088761111162
Iteration: 4, Func. Count: 29, Neg. LLF: 99.17357276167198
Iteration: 5, Func. Count: 35, Neg. LLF: 99.15926131497814
Iteration: 6, Func. Count: 42, Neg. LLF: 99.10713752811199
Iteration: 7, Func. Count: 48, Neg. LLF: 99.03983763836627
Iteration: 8, Func. Count: 54, Neg. LLF: 99.03954865887152
Iteration: 9, Func. Count: 60, Neg. LLF: 99.0395185745012
Iteration: 10, Func. Count: 66, Neg. LLF: 99.03939968717361
Iteration: 11, Func. Count: 72, Neg. LLF: 99.03930541371027
Iteration: 12, Func. Count: 78, Neg. LLF: 99.0392632739617
Iteration: 13, Func. Count: 84, Neg. LLF: 99.03923241872315
Iteration: 14, Func. Count: 90, Neg. LLF: 99.03917878229535
Iteration: 15, Func. Count: 96, Neg. LLF: 99.03854354605114
Iteration: 16, Func. Count: 102, Neg. LLF: 99.0313029603728
Iteration: 17, Func. Count: 108, Neg. LLF: 102.94894618140168
Iteration: 18, Func. Count: 118, Neg. LLF: 99.03141480224463
Optimization terminated successfully (Exit mode 0)
Current function value: 99.03130039691783
Iterations: 19
Function evaluations: 119
Gradient evaluations: 18
Iteration: 1, Func. Count: 8, Neg. LLF: 159.42876682125714
Iteration: 2, Func. Count: 19, Neg. LLF: 99.23013728663778
Iteration: 3, Func. Count: 26, Neg. LLF: 99.09302980056175
Iteration: 4, Func. Count: 33, Neg. LLF: 99.14395417144985
Iteration: 5, Func. Count: 41, Neg. LLF: 99.03404341249755
Iteration: 6, Func. Count: 48, Neg. LLF: 99.0337844765172
Iteration: 7, Func. Count: 55, Neg. LLF: 99.03270797674274
Iteration: 8, Func. Count: 62, Neg. LLF: 99.03317422496013
Iteration: 9, Func. Count: 70, Neg. LLF: 99.03202966784536
Iteration: 10, Func. Count: 77, Neg. LLF: 99.0319019531632
Iteration: 11, Func. Count: 84, Neg. LLF: 99.03189906973326
Iteration: 12, Func. Count: 90, Neg. LLF: 99.03189899199951
Optimization terminated successfully (Exit mode 0)
Current function value: 99.03189906973326
Iterations: 12
Function evaluations: 90
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 161.36902696349617
Iteration: 2, Func. Count: 21, Neg. LLF: 99.18412166110427
Iteration: 3, Func. Count: 29, Neg. LLF: 99.06168275511439
Iteration: 4, Func. Count: 37, Neg. LLF: 99.08224314879041
Iteration: 5, Func. Count: 46, Neg. LLF: 99.04541198726595
Iteration: 6, Func. Count: 54, Neg. LLF: 99.04125799383779
Iteration: 7, Func. Count: 62, Neg. LLF: 99.0373586853774
Iteration: 8, Func. Count: 70, Neg. LLF: 99.00130411804528
Iteration: 9, Func. Count: 78, Neg. LLF: 99.03579902061986
Iteration: 10, Func. Count: 89, Neg. LLF: 98.95981861508142
Iteration: 11, Func. Count: 97, Neg. LLF: 98.93547730173643
Iteration: 12, Func. Count: 105, Neg. LLF: 98.82070793840013
Iteration: 13, Func. Count: 113, Neg. LLF: 98.5221408349515
Iteration: 14, Func. Count: 121, Neg. LLF: 98.44674571594868
Iteration: 15, Func. Count: 129, Neg. LLF: 98.42380954037225
Iteration: 16, Func. Count: 137, Neg. LLF: 98.41868930683177
Iteration: 17, Func. Count: 145, Neg. LLF: 98.41885163398842
Iteration: 18, Func. Count: 154, Neg. LLF: 98.41820640741513
Iteration: 19, Func. Count: 162, Neg. LLF: 98.4180898683112
Iteration: 20, Func. Count: 180, Neg. LLF: 98.41815941193337
Iteration: 21, Func. Count: 198, Neg. LLF: 98.41826685081776
Iteration: 22, Func. Count: 216, Neg. LLF: 98.41810484539614
Iteration: 23, Func. Count: 234, Neg. LLF: 98.41830532011565
Iteration: 24, Func. Count: 252, Neg. LLF: 98.4189861441142
Iteration: 25, Func. Count: 262, Neg. LLF: 98.41906700147774
Iteration: 26, Func. Count: 272, Neg. LLF: 98.41836258522325
Iteration: 27, Func. Count: 279, Neg. LLF: 98.41836270185658
Optimization terminated successfully (Exit mode 0)
Current function value: 98.41836258522325
Iterations: 28
Function evaluations: 279
Gradient evaluations: 27
Iteration: 1, Func. Count: 6, Neg. LLF: 151.3771791927333
Iteration: 2, Func. Count: 13, Neg. LLF: 155.8511692033061
Iteration: 3, Func. Count: 20, Neg. LLF: 98.7187533910805
Iteration: 4, Func. Count: 25, Neg. LLF: 98.6516137763978
Iteration: 5, Func. Count: 30, Neg. LLF: 98.69638785276409
Iteration: 6, Func. Count: 36, Neg. LLF: 98.65073099355276
Iteration: 7, Func. Count: 41, Neg. LLF: 98.65034977940192
Iteration: 8, Func. Count: 45, Neg. LLF: 98.65034977935046
Optimization terminated successfully (Exit mode 0)
Current function value: 98.65034977940192
Iterations: 8
Function evaluations: 45
Gradient evaluations: 8
Iteration: 1, Func. Count: 7, Neg. LLF: 118.69111389845534
Iteration: 2, Func. Count: 16, Neg. LLF: 103.7313646661155
Iteration: 3, Func. Count: 23, Neg. LLF: 124.01617139156531
Iteration: 4, Func. Count: 30, Neg. LLF: 99.74947462173256
Iteration: 5, Func. Count: 36, Neg. LLF: 99.34467365295157
Iteration: 6, Func. Count: 42, Neg. LLF: 99.62256040951502
Iteration: 7, Func. Count: 49, Neg. LLF: 99.2338407143891
Iteration: 8, Func. Count: 55, Neg. LLF: 99.17025466922135
Iteration: 9, Func. Count: 61, Neg. LLF: 99.14205230872213
Iteration: 10, Func. Count: 67, Neg. LLF: 99.04500562415795
Iteration: 11, Func. Count: 73, Neg. LLF: 99.03297073317633
Iteration: 12, Func. Count: 79, Neg. LLF: 99.03262904412512
Iteration: 13, Func. Count: 85, Neg. LLF: 99.0329271441288
Iteration: 14, Func. Count: 101, Neg. LLF: 99.03168137845236
Iteration: 15, Func. Count: 107, Neg. LLF: 100.93705068969626
Iteration: 16, Func. Count: 116, Neg. LLF: 99.0323340511624
Iteration: 17, Func. Count: 123, Neg. LLF: 99.0312968592728
Iteration: 18, Func. Count: 128, Neg. LLF: 99.03129708449207
Optimization terminated successfully (Exit mode 0)
Current function value: 99.0312968592728
Iterations: 19
Function evaluations: 128
Gradient evaluations: 18
Iteration: 1, Func. Count: 8, Neg. LLF: 159.42836524756666
Iteration: 2, Func. Count: 18, Neg. LLF: 100.72286069359262
Iteration: 3, Func. Count: 26, Neg. LLF: 103.91080856256508
Iteration: 4, Func. Count: 34, Neg. LLF: 99.61800770470359
Iteration: 5, Func. Count: 41, Neg. LLF: 100.44188956621679
Iteration: 6, Func. Count: 49, Neg. LLF: 99.98610927445141
Iteration: 7, Func. Count: 58, Neg. LLF: 99.12489516725773
Iteration: 8, Func. Count: 65, Neg. LLF: 99.03571702084668
Iteration: 9, Func. Count: 72, Neg. LLF: 98.94509476799456
Iteration: 10, Func. Count: 79, Neg. LLF: 98.8270811134426
Iteration: 11, Func. Count: 86, Neg. LLF: 98.79443697925429
Iteration: 12, Func. Count: 93, Neg. LLF: 98.75013478212027
Iteration: 13, Func. Count: 100, Neg. LLF: 98.69211296469405
Iteration: 14, Func. Count: 107, Neg. LLF: 98.66319123307389
Iteration: 15, Func. Count: 114, Neg. LLF: 98.62507796752018
Iteration: 16, Func. Count: 121, Neg. LLF: 98.62068662916916
Iteration: 17, Func. Count: 128, Neg. LLF: 98.62067739317493
Iteration: 18, Func. Count: 135, Neg. LLF: 98.62065443597105
Iteration: 19, Func. Count: 142, Neg. LLF: 98.62091448286611
Optimization terminated successfully (Exit mode 0)
Current function value: 98.62065441114011
Iterations: 20
Function evaluations: 144
Gradient evaluations: 19
Iteration: 1, Func. Count: 9, Neg. LLF: 158.41999489431586
Iteration: 2, Func. Count: 21, Neg. LLF: 100.8892943345742
Iteration: 3, Func. Count: 30, Neg. LLF: 104.54235720105271
Iteration: 4, Func. Count: 39, Neg. LLF: 100.07025899037056
Iteration: 5, Func. Count: 48, Neg. LLF: 99.16228851695466
Iteration: 6, Func. Count: 57, Neg. LLF: 107.07155578850833
Iteration: 7, Func. Count: 66, Neg. LLF: 97.9025038742775
Iteration: 8, Func. Count: 74, Neg. LLF: 126.21316553781651
Iteration: 9, Func. Count: 84, Neg. LLF: 97.67122255892757
Iteration: 10, Func. Count: 92, Neg. LLF: 97.6482669532769
Iteration: 11, Func. Count: 100, Neg. LLF: 97.64285656065181
Iteration: 12, Func. Count: 108, Neg. LLF: 97.6406792443685
Iteration: 13, Func. Count: 116, Neg. LLF: 97.63869025001277
Iteration: 14, Func. Count: 124, Neg. LLF: 97.63719727248578
Iteration: 15, Func. Count: 132, Neg. LLF: 97.6363248226256
Iteration: 16, Func. Count: 140, Neg. LLF: 97.63606632534197
Iteration: 17, Func. Count: 148, Neg. LLF: 97.63602530368567
Iteration: 18, Func. Count: 156, Neg. LLF: 97.63601997573849
Iteration: 19, Func. Count: 163, Neg. LLF: 97.63601997572071
Optimization terminated successfully (Exit mode 0)
Current function value: 97.63601997573849
Iterations: 19
Function evaluations: 163
Gradient evaluations: 19
Iteration: 1, Func. Count: 10, Neg. LLF: 161.82120081990527
Iteration: 2, Func. Count: 23, Neg. LLF: 99.52285261670747
Iteration: 3, Func. Count: 32, Neg. LLF: 99.09415199196864
Iteration: 4, Func. Count: 41, Neg. LLF: 99.09131592210794
Iteration: 5, Func. Count: 51, Neg. LLF: 99.04951260123536
Iteration: 6, Func. Count: 60, Neg. LLF: 99.04250152820946
Iteration: 7, Func. Count: 69, Neg. LLF: 98.99171677266014
Iteration: 8, Func. Count: 78, Neg. LLF: 100.53852788771285
Iteration: 9, Func. Count: 90, Neg. LLF: 98.82359931929228
Iteration: 10, Func. Count: 99, Neg. LLF: 100.98460623779307
Iteration: 11, Func. Count: 112, Neg. LLF: 8231.367461921272
Iteration: 12, Func. Count: 123, Neg. LLF: 98.88733627807882
Iteration: 13, Func. Count: 133, Neg. LLF: 106.47141191493137
Iteration: 14, Func. Count: 144, Neg. LLF: 99.38798790262842
Iteration: 15, Func. Count: 154, Neg. LLF: 98.07835421260667
Iteration: 16, Func. Count: 163, Neg. LLF: 98.46169545560517
Iteration: 17, Func. Count: 173, Neg. LLF: 101.00623902449107
Iteration: 18, Func. Count: 184, Neg. LLF: 97.82231569671661
Iteration: 19, Func. Count: 193, Neg. LLF: 97.84826282065856
Iteration: 20, Func. Count: 203, Neg. LLF: 97.72809050966791
Iteration: 21, Func. Count: 212, Neg. LLF: 97.68569188667888
Iteration: 22, Func. Count: 221, Neg. LLF: 97.66065047065929
Iteration: 23, Func. Count: 230, Neg. LLF: 97.65671457388476
Iteration: 24, Func. Count: 239, Neg. LLF: 97.65186044045954
Iteration: 25, Func. Count: 248, Neg. LLF: 97.64359091845195
Iteration: 26, Func. Count: 257, Neg. LLF: 97.63819530376132
Iteration: 27, Func. Count: 266, Neg. LLF: 97.63632310227887
Iteration: 28, Func. Count: 275, Neg. LLF: 97.63602529037881
Iteration: 29, Func. Count: 284, Neg. LLF: 97.63601953736378
Iteration: 30, Func. Count: 292, Neg. LLF: 97.63601956652526
Optimization terminated successfully (Exit mode 0)
Current function value: 97.63601953736378
Iterations: 31
Function evaluations: 292
Gradient evaluations: 30
Iteration: 1, Func. Count: 7, Neg. LLF: 150.55366328515626
Iteration: 2, Func. Count: 15, Neg. LLF: 156.2078563167375
Iteration: 3, Func. Count: 23, Neg. LLF: 98.70856841707135
Iteration: 4, Func. Count: 29, Neg. LLF: 98.65189214263977
Iteration: 5, Func. Count: 35, Neg. LLF: 98.69536550501458
Iteration: 6, Func. Count: 42, Neg. LLF: 98.6510005661877
Iteration: 7, Func. Count: 48, Neg. LLF: 98.65034995109907
Iteration: 8, Func. Count: 53, Neg. LLF: 98.6503500707416
Optimization terminated successfully (Exit mode 0)
Current function value: 98.65034995109907
Iterations: 8
Function evaluations: 53
Gradient evaluations: 8
Iteration: 1, Func. Count: 8, Neg. LLF: 118.80075048305798
Iteration: 2, Func. Count: 18, Neg. LLF: 103.44904325094625
Iteration: 3, Func. Count: 26, Neg. LLF: 118.48800209483805
Iteration: 4, Func. Count: 34, Neg. LLF: 99.73330600401435
Iteration: 5, Func. Count: 41, Neg. LLF: 99.20416057400372
Iteration: 6, Func. Count: 48, Neg. LLF: 103.95320956427764
Iteration: 7, Func. Count: 56, Neg. LLF: 99.03370084470008
Iteration: 8, Func. Count: 63, Neg. LLF: 99.03153444414892
Iteration: 9, Func. Count: 70, Neg. LLF: 99.03133503036544
Iteration: 10, Func. Count: 77, Neg. LLF: 99.2733710411561
Optimization terminated successfully (Exit mode 0)
Current function value: 99.03133461282654
Iterations: 11
Function evaluations: 80
Gradient evaluations: 10
Iteration: 1, Func. Count: 9, Neg. LLF: 160.40287983851005
Iteration: 2, Func. Count: 20, Neg. LLF: 100.67597629665964
Iteration: 3, Func. Count: 29, Neg. LLF: 104.06481368333277
Iteration: 4, Func. Count: 38, Neg. LLF: 99.67703601262919
Iteration: 5, Func. Count: 46, Neg. LLF: 100.320925998758
Iteration: 6, Func. Count: 55, Neg. LLF: 100.32468594359005
Iteration: 7, Func. Count: 65, Neg. LLF: 99.31800465054027
Iteration: 8, Func. Count: 73, Neg. LLF: 99.20101471435328
Iteration: 9, Func. Count: 81, Neg. LLF: 99.12705302137088
Iteration: 10, Func. Count: 89, Neg. LLF: 99.02656413549688
Iteration: 11, Func. Count: 97, Neg. LLF: 98.9125457128307
Iteration: 12, Func. Count: 105, Neg. LLF: 98.8882577027876
Iteration: 13, Func. Count: 113, Neg. LLF: 98.85033765416897
Iteration: 14, Func. Count: 121, Neg. LLF: 98.7155355807799
Iteration: 15, Func. Count: 129, Neg. LLF: 98.67248066995519
Iteration: 16, Func. Count: 137, Neg. LLF: 98.62693978981663
Iteration: 17, Func. Count: 145, Neg. LLF: 98.62559039984298
Iteration: 18, Func. Count: 154, Neg. LLF: 98.62065342894374
Iteration: 19, Func. Count: 162, Neg. LLF: 98.62064533602509
Iteration: 20, Func. Count: 170, Neg. LLF: 98.62062068718531
Iteration: 21, Func. Count: 188, Neg. LLF: 98.67456167318998
Iteration: 22, Func. Count: 199, Neg. LLF: 98.62074350669941
Iteration: 23, Func. Count: 208, Neg. LLF: 98.62065737410703
Iteration: 24, Func. Count: 217, Neg. LLF: 98.62065442056958
Iteration: 25, Func. Count: 224, Neg. LLF: 98.620654372442
Optimization terminated successfully (Exit mode 0)
Current function value: 98.62065442056958
Iterations: 26
Function evaluations: 224
Gradient evaluations: 25
Iteration: 1, Func. Count: 10, Neg. LLF: 159.91455065617757
Iteration: 2, Func. Count: 23, Neg. LLF: 100.64270377519253
Iteration: 3, Func. Count: 33, Neg. LLF: 104.47079177976482
Iteration: 4, Func. Count: 43, Neg. LLF: 99.8959321806692
Iteration: 5, Func. Count: 53, Neg. LLF: 99.04969612037723
Iteration: 6, Func. Count: 63, Neg. LLF: 106.47971792775316
Iteration: 7, Func. Count: 73, Neg. LLF: 97.75657747074904
Iteration: 8, Func. Count: 82, Neg. LLF: 97.75900996905347
Iteration: 9, Func. Count: 92, Neg. LLF: 97.67648313154622
Iteration: 10, Func. Count: 101, Neg. LLF: 97.66296621525602
Iteration: 11, Func. Count: 110, Neg. LLF: 97.65368579719087
Iteration: 12, Func. Count: 119, Neg. LLF: 97.64471899270058
Iteration: 13, Func. Count: 128, Neg. LLF: 97.63934936548648
Iteration: 14, Func. Count: 137, Neg. LLF: 97.63687139649255
Iteration: 15, Func. Count: 146, Neg. LLF: 97.63624259379455
Iteration: 16, Func. Count: 155, Neg. LLF: 97.63604504347204
Iteration: 17, Func. Count: 164, Neg. LLF: 97.6360202736048
Iteration: 18, Func. Count: 173, Neg. LLF: 97.63601952743466
Optimization terminated successfully (Exit mode 0)
Current function value: 97.63601952743466
Iterations: 18
Function evaluations: 173
Gradient evaluations: 18
Iteration: 1, Func. Count: 11, Neg. LLF: 161.06857225924054
Iteration: 2, Func. Count: 25, Neg. LLF: 99.46099744477635
Iteration: 3, Func. Count: 35, Neg. LLF: 99.07914761941606
Iteration: 4, Func. Count: 45, Neg. LLF: 99.06859395890088
Iteration: 5, Func. Count: 55, Neg. LLF: 99.05045377566529
Iteration: 6, Func. Count: 65, Neg. LLF: 99.04836901526618
Iteration: 7, Func. Count: 75, Neg. LLF: 99.0409224353465
Iteration: 8, Func. Count: 85, Neg. LLF: 99.02147886368341
Iteration: 9, Func. Count: 95, Neg. LLF: 98.92489427196175
Iteration: 10, Func. Count: 105, Neg. LLF: 99.33357974748029
Iteration: 11, Func. Count: 117, Neg. LLF: 98.87731827254716
Iteration: 12, Func. Count: 127, Neg. LLF: 356.9878024248345
Iteration: 13, Func. Count: 138, Neg. LLF: 99.9388852375293
Iteration: 14, Func. Count: 150, Neg. LLF: 100.19970343285802
Iteration: 15, Func. Count: 161, Neg. LLF: 100.82427488788788
Iteration: 16, Func. Count: 172, Neg. LLF: 99.72034938322753
Iteration: 17, Func. Count: 183, Neg. LLF: 97.77161865042396
Iteration: 18, Func. Count: 193, Neg. LLF: 97.80190784580645
Iteration: 19, Func. Count: 204, Neg. LLF: 97.66849709622461
Iteration: 20, Func. Count: 214, Neg. LLF: 97.63675789945772
Iteration: 21, Func. Count: 224, Neg. LLF: 97.63637382365128
Iteration: 22, Func. Count: 234, Neg. LLF: 97.63625737529374
Iteration: 23, Func. Count: 244, Neg. LLF: 97.6360962244115
Iteration: 24, Func. Count: 254, Neg. LLF: 97.63602752893489
Iteration: 25, Func. Count: 264, Neg. LLF: 97.63601982484285
Iteration: 26, Func. Count: 273, Neg. LLF: 97.63601985407811
Optimization terminated successfully (Exit mode 0)
Current function value: 97.63601982484285
Iterations: 27
Function evaluations: 273
Gradient evaluations: 26
Iteration: 1, Func. Count: 8, Neg. LLF: 116.32696351731576
Iteration: 2, Func. Count: 17, Neg. LLF: 157.09779586421982
Iteration: 3, Func. Count: 25, Neg. LLF: 12756134.083595185
Iteration: 4, Func. Count: 33, Neg. LLF: 98.26869833167265
Iteration: 5, Func. Count: 40, Neg. LLF: 97.51862470612205
Iteration: 6, Func. Count: 47, Neg. LLF: 97.29734300932905
Iteration: 7, Func. Count: 54, Neg. LLF: 97.25262782613734
Iteration: 8, Func. Count: 61, Neg. LLF: 97.2419703297196
Iteration: 9, Func. Count: 68, Neg. LLF: 97.23907333324159
Iteration: 10, Func. Count: 75, Neg. LLF: 97.2334035834472
Iteration: 11, Func. Count: 82, Neg. LLF: 97.23337625630246
Iteration: 12, Func. Count: 89, Neg. LLF: 97.2333681679395
Iteration: 13, Func. Count: 96, Neg. LLF: 97.23336759229953
Optimization terminated successfully (Exit mode 0)
Current function value: 97.23336759229953
Iterations: 13
Function evaluations: 96
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 103.81804676207949
Iteration: 2, Func. Count: 21, Neg. LLF: 165.93257368164342
Iteration: 3, Func. Count: 30, Neg. LLF: 107.3456687358228
Iteration: 4, Func. Count: 39, Neg. LLF: 100.10155093802521
Iteration: 5, Func. Count: 48, Neg. LLF: 98.97414170249874
Iteration: 6, Func. Count: 57, Neg. LLF: 99.08055417322815
Iteration: 7, Func. Count: 66, Neg. LLF: 97.93453687825303
Iteration: 8, Func. Count: 74, Neg. LLF: 98.06457800723179
Iteration: 9, Func. Count: 84, Neg. LLF: 103.28226030846442
Iteration: 10, Func. Count: 95, Neg. LLF: 97.56750096420508
Iteration: 11, Func. Count: 103, Neg. LLF: 97.30841426814081
Iteration: 12, Func. Count: 111, Neg. LLF: 97.27333851306916
Iteration: 13, Func. Count: 119, Neg. LLF: 97.27095807298421
Iteration: 14, Func. Count: 127, Neg. LLF: 97.26919036295918
Iteration: 15, Func. Count: 135, Neg. LLF: 97.26176703405453
Iteration: 16, Func. Count: 143, Neg. LLF: 97.25182397447169
Iteration: 17, Func. Count: 151, Neg. LLF: 97.23996446722771
Iteration: 18, Func. Count: 159, Neg. LLF: 97.23474562258882
Iteration: 19, Func. Count: 167, Neg. LLF: 97.23355411722102
Iteration: 20, Func. Count: 175, Neg. LLF: 97.23337642420624
Iteration: 21, Func. Count: 183, Neg. LLF: 97.23336775157233
Iteration: 22, Func. Count: 190, Neg. LLF: 97.23336776952652
Optimization terminated successfully (Exit mode 0)
Current function value: 97.23336775157233
Iterations: 22
Function evaluations: 190
Gradient evaluations: 22
Iteration: 1, Func. Count: 10, Neg. LLF: 107.69883454394075
Iteration: 2, Func. Count: 24, Neg. LLF: 3589630.7286118404
Iteration: 3, Func. Count: 34, Neg. LLF: 105.03293304479622
Iteration: 4, Func. Count: 44, Neg. LLF: 99.98384520056497
Iteration: 5, Func. Count: 54, Neg. LLF: 99.25355643657178
Iteration: 6, Func. Count: 64, Neg. LLF: 98.83681817833138
Iteration: 7, Func. Count: 74, Neg. LLF: 97.90072877563402
Iteration: 8, Func. Count: 83, Neg. LLF: 97.63882547364102
Iteration: 9, Func. Count: 92, Neg. LLF: 97.26817360682755
Iteration: 10, Func. Count: 101, Neg. LLF: 97.26171898994325
Iteration: 11, Func. Count: 110, Neg. LLF: 97.25986363468277
Iteration: 12, Func. Count: 119, Neg. LLF: 97.25667675073585
Iteration: 13, Func. Count: 128, Neg. LLF: 97.2508006933327
Iteration: 14, Func. Count: 137, Neg. LLF: 97.24249140730358
Iteration: 15, Func. Count: 146, Neg. LLF: 97.23602817511185
Iteration: 16, Func. Count: 155, Neg. LLF: 97.23367888015764
Iteration: 17, Func. Count: 164, Neg. LLF: 97.23338998660303
Iteration: 18, Func. Count: 173, Neg. LLF: 97.23337002085259
Iteration: 19, Func. Count: 182, Neg. LLF: 97.23336782543221
Iteration: 20, Func. Count: 190, Neg. LLF: 97.23336792860948
Optimization terminated successfully (Exit mode 0)
Current function value: 97.23336782543221
Iterations: 20
Function evaluations: 190
Gradient evaluations: 20
Iteration: 1, Func. Count: 11, Neg. LLF: 111.44716539115787
Iteration: 2, Func. Count: 26, Neg. LLF: 15259690.616637636
Iteration: 3, Func. Count: 37, Neg. LLF: 108.33559064516467
Iteration: 4, Func. Count: 48, Neg. LLF: 101.27108360121115
Iteration: 5, Func. Count: 59, Neg. LLF: 98.65853292098703
Iteration: 6, Func. Count: 70, Neg. LLF: 97.04890292459248
Iteration: 7, Func. Count: 80, Neg. LLF: 99.57861967072341
Iteration: 8, Func. Count: 91, Neg. LLF: 101.14851653615094
Iteration: 9, Func. Count: 104, Neg. LLF: 97.84461190970586
Iteration: 10, Func. Count: 115, Neg. LLF: 96.7849401264517
Iteration: 11, Func. Count: 126, Neg. LLF: 96.07803253590853
Iteration: 12, Func. Count: 136, Neg. LLF: 96.07207148990625
Iteration: 13, Func. Count: 146, Neg. LLF: 96.06769343723933
Iteration: 14, Func. Count: 156, Neg. LLF: 96.06167386005015
Iteration: 15, Func. Count: 166, Neg. LLF: 96.0584563412425
Iteration: 16, Func. Count: 176, Neg. LLF: 96.04874097920883
Iteration: 17, Func. Count: 186, Neg. LLF: 96.04419366815452
Iteration: 18, Func. Count: 196, Neg. LLF: 96.04318180113096
Iteration: 19, Func. Count: 206, Neg. LLF: 96.0431290989884
Iteration: 20, Func. Count: 216, Neg. LLF: 96.04312655855392
Iteration: 21, Func. Count: 225, Neg. LLF: 96.04312655850984
Optimization terminated successfully (Exit mode 0)
Current function value: 96.04312655855392
Iterations: 21
Function evaluations: 225
Gradient evaluations: 21
Iteration: 1, Func. Count: 12, Neg. LLF: 113.93870610336593
Iteration: 2, Func. Count: 28, Neg. LLF: 14518791.394893935
Iteration: 3, Func. Count: 40, Neg. LLF: 100.95727780630219
Iteration: 4, Func. Count: 52, Neg. LLF: 105.65595872099993
Iteration: 5, Func. Count: 64, Neg. LLF: 107.67996563953042
Iteration: 6, Func. Count: 76, Neg. LLF: 96.63461484106503
Iteration: 7, Func. Count: 87, Neg. LLF: 96.96275460592486
Iteration: 8, Func. Count: 99, Neg. LLF: 96.88193206832855
Iteration: 9, Func. Count: 111, Neg. LLF: 96.17140498415519
Iteration: 10, Func. Count: 123, Neg. LLF: 96.05804676151503
Iteration: 11, Func. Count: 134, Neg. LLF: 96.05513155294018
Iteration: 12, Func. Count: 145, Neg. LLF: 96.05001034682714
Iteration: 13, Func. Count: 156, Neg. LLF: 96.04816358173308
Iteration: 14, Func. Count: 167, Neg. LLF: 96.0457408403862
Iteration: 15, Func. Count: 178, Neg. LLF: 96.04381249111117
Iteration: 16, Func. Count: 189, Neg. LLF: 96.04319813338644
Iteration: 17, Func. Count: 200, Neg. LLF: 96.04313096761692
Iteration: 18, Func. Count: 211, Neg. LLF: 96.04312637584226
Iteration: 19, Func. Count: 221, Neg. LLF: 96.04312639609277
Optimization terminated successfully (Exit mode 0)
Current function value: 96.04312637584226
Iterations: 19
Function evaluations: 221
Gradient evaluations: 19
Iteration: 1, Func. Count: 9, Neg. LLF: 114.97110585391968
Iteration: 2, Func. Count: 19, Neg. LLF: 162.356153119336
Iteration: 3, Func. Count: 28, Neg. LLF: 12696278.261017838
Iteration: 4, Func. Count: 37, Neg. LLF: 98.39011841833043
Iteration: 5, Func. Count: 45, Neg. LLF: 97.56857123737554
Iteration: 6, Func. Count: 53, Neg. LLF: 97.3228196070928
Iteration: 7, Func. Count: 61, Neg. LLF: 97.2851091342984
Iteration: 8, Func. Count: 69, Neg. LLF: 97.24314412491191
Iteration: 9, Func. Count: 77, Neg. LLF: 97.24040139379953
Iteration: 10, Func. Count: 85, Neg. LLF: 97.23485374301272
Iteration: 11, Func. Count: 93, Neg. LLF: 97.23363668137915
Iteration: 12, Func. Count: 101, Neg. LLF: 97.2333798952694
Iteration: 13, Func. Count: 109, Neg. LLF: 97.23336785574006
Iteration: 14, Func. Count: 116, Neg. LLF: 97.23336787797537
Optimization terminated successfully (Exit mode 0)
Current function value: 97.23336785574006
Iterations: 14
Function evaluations: 116
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 104.47635503278774
Iteration: 2, Func. Count: 23, Neg. LLF: 161.60746030186036
Iteration: 3, Func. Count: 33, Neg. LLF: 107.22097119964285
Iteration: 4, Func. Count: 43, Neg. LLF: 100.19933590411271
Iteration: 5, Func. Count: 53, Neg. LLF: 99.07793058621569
Iteration: 6, Func. Count: 63, Neg. LLF: 99.30061713187439
Iteration: 7, Func. Count: 73, Neg. LLF: 97.89550550850655
Iteration: 8, Func. Count: 82, Neg. LLF: 97.91533789802934
Iteration: 9, Func. Count: 92, Neg. LLF: 100.76055631152548
Iteration: 10, Func. Count: 102, Neg. LLF: 97.29247552500813
Iteration: 11, Func. Count: 111, Neg. LLF: 97.27999254271751
Iteration: 12, Func. Count: 120, Neg. LLF: 97.26464038252861
Iteration: 13, Func. Count: 129, Neg. LLF: 97.26328038506415
Iteration: 14, Func. Count: 138, Neg. LLF: 97.26099012910275
Iteration: 15, Func. Count: 147, Neg. LLF: 97.2564389397576
Iteration: 16, Func. Count: 156, Neg. LLF: 97.24777274013111
Iteration: 17, Func. Count: 165, Neg. LLF: 97.23848022317037
Iteration: 18, Func. Count: 174, Neg. LLF: 97.23433272841228
Iteration: 19, Func. Count: 183, Neg. LLF: 97.23348627042233
Iteration: 20, Func. Count: 192, Neg. LLF: 97.23337209103431
Iteration: 21, Func. Count: 201, Neg. LLF: 97.23336765606649
Iteration: 22, Func. Count: 209, Neg. LLF: 97.23336767399715
Optimization terminated successfully (Exit mode 0)
Current function value: 97.23336765606649
Iterations: 22
Function evaluations: 209
Gradient evaluations: 22
Iteration: 1, Func. Count: 11, Neg. LLF: 107.87920453432973
Iteration: 2, Func. Count: 26, Neg. LLF: 3624017.4696284276
Iteration: 3, Func. Count: 37, Neg. LLF: 104.67454337745384
Iteration: 4, Func. Count: 48, Neg. LLF: 99.84989977560892
Iteration: 5, Func. Count: 59, Neg. LLF: 100.20735022404175
Iteration: 6, Func. Count: 70, Neg. LLF: 98.28824651340253
Iteration: 7, Func. Count: 81, Neg. LLF: 97.74111432658415
Iteration: 8, Func. Count: 91, Neg. LLF: 97.37792085564114
Iteration: 9, Func. Count: 101, Neg. LLF: 97.2637762266029
Iteration: 10, Func. Count: 111, Neg. LLF: 97.26056522921101
Iteration: 11, Func. Count: 121, Neg. LLF: 97.25883945649603
Iteration: 12, Func. Count: 131, Neg. LLF: 97.25586375279089
Iteration: 13, Func. Count: 141, Neg. LLF: 97.25334099926351
Iteration: 14, Func. Count: 151, Neg. LLF: 97.24654197770509
Iteration: 15, Func. Count: 161, Neg. LLF: 97.23969056161758
Iteration: 16, Func. Count: 171, Neg. LLF: 97.23474042316336
Iteration: 17, Func. Count: 181, Neg. LLF: 97.23345207826827
Iteration: 18, Func. Count: 191, Neg. LLF: 97.2333710852135
Iteration: 19, Func. Count: 201, Neg. LLF: 97.23336768662134
Iteration: 20, Func. Count: 210, Neg. LLF: 97.23336778983918
Optimization terminated successfully (Exit mode 0)
Current function value: 97.23336768662134
Iterations: 20
Function evaluations: 210
Gradient evaluations: 20
Iteration: 1, Func. Count: 12, Neg. LLF: 111.64376152625745
Iteration: 2, Func. Count: 28, Neg. LLF: 15289764.739549091
Iteration: 3, Func. Count: 40, Neg. LLF: 108.22119864593685
Iteration: 4, Func. Count: 52, Neg. LLF: 101.26124133019331
Iteration: 5, Func. Count: 64, Neg. LLF: 98.66968476630242
Iteration: 6, Func. Count: 76, Neg. LLF: 97.04597331195023
Iteration: 7, Func. Count: 87, Neg. LLF: 99.59217428711165
Iteration: 8, Func. Count: 99, Neg. LLF: 101.05408170113326
Iteration: 9, Func. Count: 113, Neg. LLF: 97.80852384326018
Iteration: 10, Func. Count: 125, Neg. LLF: 96.92582768370696
Iteration: 11, Func. Count: 137, Neg. LLF: 96.09156406294625
Iteration: 12, Func. Count: 148, Neg. LLF: 96.17034965978762
Iteration: 13, Func. Count: 160, Neg. LLF: 96.0661145510721
Iteration: 14, Func. Count: 171, Neg. LLF: 96.06149055201567
Iteration: 15, Func. Count: 182, Neg. LLF: 96.05856725516874
Iteration: 16, Func. Count: 193, Neg. LLF: 96.04711482333697
Iteration: 17, Func. Count: 204, Neg. LLF: 96.04404991410748
Iteration: 18, Func. Count: 215, Neg. LLF: 96.0433203259714
Iteration: 19, Func. Count: 226, Neg. LLF: 96.0431510991963
Iteration: 20, Func. Count: 237, Neg. LLF: 96.04312718393837
Iteration: 21, Func. Count: 248, Neg. LLF: 96.04312620984209
Optimization terminated successfully (Exit mode 0)
Current function value: 96.04312620984209
Iterations: 21
Function evaluations: 248
Gradient evaluations: 21
Iteration: 1, Func. Count: 13, Neg. LLF: 114.13134420288421
Iteration: 2, Func. Count: 30, Neg. LLF: 14512189.456300052
Iteration: 3, Func. Count: 43, Neg. LLF: 100.88432804947846
Iteration: 4, Func. Count: 56, Neg. LLF: 105.08860620228076
Iteration: 5, Func. Count: 69, Neg. LLF: 107.16430604814167
Iteration: 6, Func. Count: 82, Neg. LLF: 96.61243555179166
Iteration: 7, Func. Count: 94, Neg. LLF: 97.59555451159949
Iteration: 8, Func. Count: 107, Neg. LLF: 96.85027511830924
Iteration: 9, Func. Count: 120, Neg. LLF: 96.13937618754676
Iteration: 10, Func. Count: 133, Neg. LLF: 96.0568746477939
Iteration: 11, Func. Count: 145, Neg. LLF: 96.05314644005085
Iteration: 12, Func. Count: 157, Neg. LLF: 96.0500963354386
Iteration: 13, Func. Count: 169, Neg. LLF: 96.0468721128766
Iteration: 14, Func. Count: 181, Neg. LLF: 96.04535099398672
Iteration: 15, Func. Count: 193, Neg. LLF: 96.04355103183622
Iteration: 16, Func. Count: 205, Neg. LLF: 96.04317620085864
Iteration: 17, Func. Count: 217, Neg. LLF: 96.04312996182554
Iteration: 18, Func. Count: 229, Neg. LLF: 96.0431263226759
Iteration: 19, Func. Count: 240, Neg. LLF: 96.04312634292492
Optimization terminated successfully (Exit mode 0)
Current function value: 96.0431263226759
Iterations: 19
Function evaluations: 240
Gradient evaluations: 19
Iteration: 1, Func. Count: 6, Neg. LLF: 148.67294537328382
Iteration: 2, Func. Count: 14, Neg. LLF: 147.6450106335589
Iteration: 3, Func. Count: 21, Neg. LLF: 100.13474849825735
Iteration: 4, Func. Count: 26, Neg. LLF: 100.12283267780433
Iteration: 5, Func. Count: 31, Neg. LLF: 100.12273327328722
Iteration: 6, Func. Count: 36, Neg. LLF: 100.12270988285668
Iteration: 7, Func. Count: 41, Neg. LLF: 100.12270175439872
Iteration: 8, Func. Count: 45, Neg. LLF: 100.12270192169348
Optimization terminated successfully (Exit mode 0)
Current function value: 100.12270175439872
Iterations: 8
Function evaluations: 45
Gradient evaluations: 8
Iteration: 1, Func. Count: 7, Neg. LLF: 161.29810603415652
Iteration: 2, Func. Count: 16, Neg. LLF: 99.49329631188174
Iteration: 3, Func. Count: 22, Neg. LLF: 99.58328489770452
Iteration: 4, Func. Count: 29, Neg. LLF: 99.45742402355826
Iteration: 5, Func. Count: 35, Neg. LLF: 99.31127788291256
Iteration: 6, Func. Count: 41, Neg. LLF: 99.03569597435379
Iteration: 7, Func. Count: 47, Neg. LLF: 99.03187309245594
Iteration: 8, Func. Count: 53, Neg. LLF: 99.03129734872613
Iteration: 9, Func. Count: 59, Neg. LLF: 100.93602562428325
Optimization terminated successfully (Exit mode 0)
Current function value: 99.03129706599665
Iterations: 10
Function evaluations: 62
Gradient evaluations: 9
Iteration: 1, Func. Count: 8, Neg. LLF: 162.4455490745191
Iteration: 2, Func. Count: 18, Neg. LLF: 99.25619739132974
Iteration: 3, Func. Count: 25, Neg. LLF: 101.0161923508326
Iteration: 4, Func. Count: 33, Neg. LLF: 99.11403437674485
Iteration: 5, Func. Count: 40, Neg. LLF: 99.03973945170442
Iteration: 6, Func. Count: 47, Neg. LLF: 99.03890914750622
Iteration: 7, Func. Count: 54, Neg. LLF: 99.03889194669996
Iteration: 8, Func. Count: 61, Neg. LLF: 99.03888833784751
Iteration: 9, Func. Count: 68, Neg. LLF: 99.03886948077464
Iteration: 10, Func. Count: 75, Neg. LLF: 99.03877321587775
Iteration: 11, Func. Count: 82, Neg. LLF: 99.03829538478253
Iteration: 12, Func. Count: 89, Neg. LLF: 99.03260458715695
Iteration: 13, Func. Count: 96, Neg. LLF: 99.03205137578473
Iteration: 14, Func. Count: 103, Neg. LLF: 100.93602855057358
Iteration: 15, Func. Count: 113, Neg. LLF: 99.03149995835918
Iteration: 16, Func. Count: 120, Neg. LLF: 99.03155300793604
Iteration: 17, Func. Count: 128, Neg. LLF: 99.03129713410966
Iteration: 18, Func. Count: 134, Neg. LLF: 99.03129690936233
Optimization terminated successfully (Exit mode 0)
Current function value: 99.03129713410966
Iterations: 19
Function evaluations: 134
Gradient evaluations: 18
Iteration: 1, Func. Count: 9, Neg. LLF: 162.24501666535497
Iteration: 2, Func. Count: 21, Neg. LLF: 99.2118637884341
Iteration: 3, Func. Count: 29, Neg. LLF: 99.06661876325195
Iteration: 4, Func. Count: 37, Neg. LLF: 99.26200771650909
Iteration: 5, Func. Count: 46, Neg. LLF: 99.03372472948364
Iteration: 6, Func. Count: 54, Neg. LLF: 99.03344782096003
Iteration: 7, Func. Count: 62, Neg. LLF: 99.03204475959355
Iteration: 8, Func. Count: 70, Neg. LLF: 99.03235410950727
Iteration: 9, Func. Count: 79, Neg. LLF: 99.03189913141671
Iteration: 10, Func. Count: 86, Neg. LLF: 99.03189905398368
Optimization terminated successfully (Exit mode 0)
Current function value: 99.03189913141671
Iterations: 10
Function evaluations: 86
Gradient evaluations: 10
Iteration: 1, Func. Count: 10, Neg. LLF: 161.9897741572603
Iteration: 2, Func. Count: 23, Neg. LLF: 99.14479619825019
Iteration: 3, Func. Count: 32, Neg. LLF: 99.07555439330869
Iteration: 4, Func. Count: 41, Neg. LLF: 99.10095426902987
Iteration: 5, Func. Count: 51, Neg. LLF: 99.0513104468244
Iteration: 6, Func. Count: 60, Neg. LLF: 99.0487282490538
Iteration: 7, Func. Count: 69, Neg. LLF: 99.04210615368697
Iteration: 8, Func. Count: 78, Neg. LLF: 99.03532188422038
Iteration: 9, Func. Count: 87, Neg. LLF: 99.00148350081206
Iteration: 10, Func. Count: 96, Neg. LLF: 99.03430779732332
Iteration: 11, Func. Count: 108, Neg. LLF: 98.96068352444598
Iteration: 12, Func. Count: 117, Neg. LLF: 98.93656505329977
Iteration: 13, Func. Count: 126, Neg. LLF: 98.80142894517698
Iteration: 14, Func. Count: 135, Neg. LLF: 98.5001719937891
Iteration: 15, Func. Count: 144, Neg. LLF: 98.44527403093205
Iteration: 16, Func. Count: 153, Neg. LLF: 98.423515565096
Iteration: 17, Func. Count: 162, Neg. LLF: 98.41875969181967
Iteration: 18, Func. Count: 171, Neg. LLF: 98.41842814784088
Iteration: 19, Func. Count: 180, Neg. LLF: 98.41833078959269
Iteration: 20, Func. Count: 189, Neg. LLF: 98.41831597297522
Iteration: 21, Func. Count: 208, Neg. LLF: 98.41819339555796
Iteration: 22, Func. Count: 227, Neg. LLF: 98.41830757364299
Iteration: 23, Func. Count: 246, Neg. LLF: 98.4184584455657
Iteration: 24, Func. Count: 257, Neg. LLF: 98.4184384585781
Iteration: 25, Func. Count: 268, Neg. LLF: 98.41836342241294
Iteration: 26, Func. Count: 278, Neg. LLF: 98.41836245052258
Iteration: 27, Func. Count: 286, Neg. LLF: 98.41836256714386
Optimization terminated successfully (Exit mode 0)
Current function value: 98.41836245052258
Iterations: 28
Function evaluations: 286
Gradient evaluations: 27
Iteration: 1, Func. Count: 7, Neg. LLF: 149.17871550557683
Iteration: 2, Func. Count: 15, Neg. LLF: 172.43971343377902
Iteration: 3, Func. Count: 22, Neg. LLF: 98.82163219168208
Iteration: 4, Func. Count: 28, Neg. LLF: 98.65909012665365
Iteration: 5, Func. Count: 34, Neg. LLF: 98.95939652002616
Iteration: 6, Func. Count: 42, Neg. LLF: 98.66418292673585
Iteration: 7, Func. Count: 49, Neg. LLF: 98.65035168668113
Iteration: 8, Func. Count: 55, Neg. LLF: 98.65034964529461
Iteration: 9, Func. Count: 60, Neg. LLF: 98.65034964529882
Optimization terminated successfully (Exit mode 0)
Current function value: 98.65034964529461
Iterations: 9
Function evaluations: 60
Gradient evaluations: 9
Iteration: 1, Func. Count: 8, Neg. LLF: 118.90749380342464
Iteration: 2, Func. Count: 18, Neg. LLF: 103.34547951153961
Iteration: 3, Func. Count: 26, Neg. LLF: 118.35161992855264
Iteration: 4, Func. Count: 34, Neg. LLF: 99.73763203434179
Iteration: 5, Func. Count: 41, Neg. LLF: 99.2296802619573
Iteration: 6, Func. Count: 48, Neg. LLF: 103.92020904390569
Iteration: 7, Func. Count: 56, Neg. LLF: 99.03294714169489
Iteration: 8, Func. Count: 63, Neg. LLF: 99.03147851623868
Iteration: 9, Func. Count: 70, Neg. LLF: 100.98621280705137
Iteration: 10, Func. Count: 80, Neg. LLF: 100.4672675719777
Iteration: 11, Func. Count: 89, Neg. LLF: 99.03129685927246
Iteration: 12, Func. Count: 95, Neg. LLF: 99.03129708449268
Optimization terminated successfully (Exit mode 0)
Current function value: 99.03129685927246
Iterations: 13
Function evaluations: 95
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 160.67511496184665
Iteration: 2, Func. Count: 20, Neg. LLF: 100.65711562975805
Iteration: 3, Func. Count: 29, Neg. LLF: 104.88486912579923
Iteration: 4, Func. Count: 38, Neg. LLF: 99.62433775550689
Iteration: 5, Func. Count: 46, Neg. LLF: 101.66039279898483
Iteration: 6, Func. Count: 55, Neg. LLF: 99.22202545838996
Iteration: 7, Func. Count: 63, Neg. LLF: 99.30642297840559
Iteration: 8, Func. Count: 72, Neg. LLF: 98.95448359305999
Iteration: 9, Func. Count: 80, Neg. LLF: 98.86836654918505
Iteration: 10, Func. Count: 88, Neg. LLF: 98.78701889458925
Iteration: 11, Func. Count: 96, Neg. LLF: 98.754684771627
Iteration: 12, Func. Count: 104, Neg. LLF: 98.70050763685543
Iteration: 13, Func. Count: 112, Neg. LLF: 98.66123987671557
Iteration: 14, Func. Count: 120, Neg. LLF: 98.63815371193702
Iteration: 15, Func. Count: 128, Neg. LLF: 98.62528470462314
Iteration: 16, Func. Count: 136, Neg. LLF: 98.62099778357431
Iteration: 17, Func. Count: 144, Neg. LLF: 98.62066201856558
Iteration: 18, Func. Count: 152, Neg. LLF: 98.6206635668491
Iteration: 19, Func. Count: 161, Neg. LLF: 98.62065127984957
Iteration: 20, Func. Count: 169, Neg. LLF: 98.62065507157038
Optimization terminated successfully (Exit mode 0)
Current function value: 98.62065129534982
Iterations: 21
Function evaluations: 172
Gradient evaluations: 20
Iteration: 1, Func. Count: 10, Neg. LLF: 161.13544912526726
Iteration: 2, Func. Count: 23, Neg. LLF: 100.81561859438509
Iteration: 3, Func. Count: 33, Neg. LLF: 104.71528243662785
Iteration: 4, Func. Count: 43, Neg. LLF: 100.01492881835085
Iteration: 5, Func. Count: 53, Neg. LLF: 99.04413710664298
Iteration: 6, Func. Count: 63, Neg. LLF: 104.84770695112738
Iteration: 7, Func. Count: 73, Neg. LLF: 97.79789764266123
Iteration: 8, Func. Count: 82, Neg. LLF: 109.04840127389504
Iteration: 9, Func. Count: 93, Neg. LLF: 97.66917651408347
Iteration: 10, Func. Count: 102, Neg. LLF: 97.65320409555761
Iteration: 11, Func. Count: 111, Neg. LLF: 97.64803165381639
Iteration: 12, Func. Count: 120, Neg. LLF: 97.64369505499471
Iteration: 13, Func. Count: 129, Neg. LLF: 97.63894009355728
Iteration: 14, Func. Count: 138, Neg. LLF: 97.63678251034823
Iteration: 15, Func. Count: 147, Neg. LLF: 97.63616564368503
Iteration: 16, Func. Count: 156, Neg. LLF: 97.6360500307729
Iteration: 17, Func. Count: 165, Neg. LLF: 97.63602387789973
Iteration: 18, Func. Count: 174, Neg. LLF: 97.6360198826095
Iteration: 19, Func. Count: 182, Neg. LLF: 97.6360198825914
Optimization terminated successfully (Exit mode 0)
Current function value: 97.6360198826095
Iterations: 19
Function evaluations: 182
Gradient evaluations: 19
Iteration: 1, Func. Count: 11, Neg. LLF: 162.51057808205454
Iteration: 2, Func. Count: 25, Neg. LLF: 99.44151553296435
Iteration: 3, Func. Count: 35, Neg. LLF: 99.07861664246444
Iteration: 4, Func. Count: 45, Neg. LLF: 99.0737576166035
Iteration: 5, Func. Count: 56, Neg. LLF: 99.0530824317773
Iteration: 6, Func. Count: 66, Neg. LLF: 99.04352799765687
Iteration: 7, Func. Count: 76, Neg. LLF: 98.97382592074912
Iteration: 8, Func. Count: 86, Neg. LLF: 130.66588933863392
Iteration: 9, Func. Count: 99, Neg. LLF: 30848276.131139297
Iteration: 10, Func. Count: 111, Neg. LLF: 175.39537670867247
Iteration: 11, Func. Count: 123, Neg. LLF: 111.61328500144491
Iteration: 12, Func. Count: 134, Neg. LLF: 111.82266782390887
Iteration: 13, Func. Count: 146, Neg. LLF: 98.51555256038347
Iteration: 14, Func. Count: 157, Neg. LLF: 103.48364418927508
Iteration: 15, Func. Count: 168, Neg. LLF: 99.08201205539581
Iteration: 16, Func. Count: 179, Neg. LLF: 97.79103753023865
Iteration: 17, Func. Count: 189, Neg. LLF: 97.73148493448227
Iteration: 18, Func. Count: 199, Neg. LLF: 97.69688169780166
Iteration: 19, Func. Count: 209, Neg. LLF: 97.6463220265492
Iteration: 20, Func. Count: 219, Neg. LLF: 97.6399991590096
Iteration: 21, Func. Count: 229, Neg. LLF: 97.63910971341399
Iteration: 22, Func. Count: 239, Neg. LLF: 97.63842210558356
Iteration: 23, Func. Count: 249, Neg. LLF: 97.6366415027101
Iteration: 24, Func. Count: 259, Neg. LLF: 97.6361127345023
Iteration: 25, Func. Count: 269, Neg. LLF: 97.63602263229446
Iteration: 26, Func. Count: 279, Neg. LLF: 97.63601962371267
Iteration: 27, Func. Count: 288, Neg. LLF: 97.63601965295747
Optimization terminated successfully (Exit mode 0)
Current function value: 97.63601962371267
Iterations: 28
Function evaluations: 288
Gradient evaluations: 27
Iteration: 1, Func. Count: 8, Neg. LLF: 150.4495522442165
Iteration: 2, Func. Count: 17, Neg. LLF: 171.4812167984368
Iteration: 3, Func. Count: 25, Neg. LLF: 98.78346001545499
Iteration: 4, Func. Count: 32, Neg. LLF: 98.65935149762613
Iteration: 5, Func. Count: 39, Neg. LLF: 98.88041490417261
Iteration: 6, Func. Count: 48, Neg. LLF: 98.68009133096135
Iteration: 7, Func. Count: 56, Neg. LLF: 98.65035030748757
Iteration: 8, Func. Count: 63, Neg. LLF: 98.65034964659696
Optimization terminated successfully (Exit mode 0)
Current function value: 98.65034964659696
Iterations: 8
Function evaluations: 63
Gradient evaluations: 8
Iteration: 1, Func. Count: 9, Neg. LLF: 119.16764369113233
Iteration: 2, Func. Count: 20, Neg. LLF: 103.39953423716821
Iteration: 3, Func. Count: 30, Neg. LLF: 101.86479709895887
Iteration: 4, Func. Count: 39, Neg. LLF: 99.74794782023626
Iteration: 5, Func. Count: 47, Neg. LLF: 99.28741295015337
Iteration: 6, Func. Count: 55, Neg. LLF: 99.94550810472221
Iteration: 7, Func. Count: 64, Neg. LLF: 99.06285711760454
Iteration: 8, Func. Count: 72, Neg. LLF: 99.04727022760163
Iteration: 9, Func. Count: 80, Neg. LLF: 99.0344304775415
Iteration: 10, Func. Count: 88, Neg. LLF: 101.86414891837991
Iteration: 11, Func. Count: 98, Neg. LLF: 264.62658236429115
Iteration: 12, Func. Count: 109, Neg. LLF: 99.03129685972922
Iteration: 13, Func. Count: 116, Neg. LLF: 99.0312970848985
Optimization terminated successfully (Exit mode 0)
Current function value: 99.03129685972922
Iterations: 14
Function evaluations: 116
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 161.71591919719285
Iteration: 2, Func. Count: 22, Neg. LLF: 100.59654256312035
Iteration: 3, Func. Count: 32, Neg. LLF: 105.03385822576284
Iteration: 4, Func. Count: 42, Neg. LLF: 99.65666902277563
Iteration: 5, Func. Count: 51, Neg. LLF: 101.63622850359002
Iteration: 6, Func. Count: 61, Neg. LLF: 99.29652714692553
Iteration: 7, Func. Count: 70, Neg. LLF: 99.9452527512815
Iteration: 8, Func. Count: 80, Neg. LLF: 99.0433037862764
Iteration: 9, Func. Count: 89, Neg. LLF: 98.94222708151601
Iteration: 10, Func. Count: 98, Neg. LLF: 98.82185636033894
Iteration: 11, Func. Count: 107, Neg. LLF: 98.78783396500012
Iteration: 12, Func. Count: 116, Neg. LLF: 98.73411036727268
Iteration: 13, Func. Count: 125, Neg. LLF: 98.68894305469065
Iteration: 14, Func. Count: 134, Neg. LLF: 98.64658677172461
Iteration: 15, Func. Count: 143, Neg. LLF: 98.62976355105259
Iteration: 16, Func. Count: 152, Neg. LLF: 98.62092734613266
Iteration: 17, Func. Count: 161, Neg. LLF: 98.62081313866997
Iteration: 18, Func. Count: 170, Neg. LLF: 98.62065443796682
Iteration: 19, Func. Count: 179, Neg. LLF: 98.62064053501271
Iteration: 20, Func. Count: 188, Neg. LLF: 98.62072913579627
Iteration: 21, Func. Count: 199, Neg. LLF: 98.62171039769052
Iteration: 22, Func. Count: 210, Neg. LLF: 98.62065550203246
Iteration: 23, Func. Count: 220, Neg. LLF: 98.62065440697657
Iteration: 24, Func. Count: 228, Neg. LLF: 98.62065435885019
Optimization terminated successfully (Exit mode 0)
Current function value: 98.62065440697657
Iterations: 25
Function evaluations: 228
Gradient evaluations: 24
Iteration: 1, Func. Count: 11, Neg. LLF: 162.77042923187926
Iteration: 2, Func. Count: 25, Neg. LLF: 100.57402607887691
Iteration: 3, Func. Count: 36, Neg. LLF: 104.69390224570297
Iteration: 4, Func. Count: 47, Neg. LLF: 99.89332239075596
Iteration: 5, Func. Count: 58, Neg. LLF: 99.31760054388845
Iteration: 6, Func. Count: 69, Neg. LLF: 99.53866476583563
Iteration: 7, Func. Count: 80, Neg. LLF: 98.13927404383796
Iteration: 8, Func. Count: 90, Neg. LLF: 98.66273907908159
Iteration: 9, Func. Count: 101, Neg. LLF: 98.07784064460954
Iteration: 10, Func. Count: 112, Neg. LLF: 97.6740693833872
Iteration: 11, Func. Count: 122, Neg. LLF: 98.91580177773146
Iteration: 12, Func. Count: 134, Neg. LLF: 97.66255717812017
Iteration: 13, Func. Count: 144, Neg. LLF: 97.65250420531868
Iteration: 14, Func. Count: 154, Neg. LLF: 97.63834695090821
Iteration: 15, Func. Count: 164, Neg. LLF: 97.63612424602655
Iteration: 16, Func. Count: 174, Neg. LLF: 97.63602993019211
Iteration: 17, Func. Count: 184, Neg. LLF: 97.63602222158481
Iteration: 18, Func. Count: 194, Neg. LLF: 97.6360197480741
Iteration: 19, Func. Count: 203, Neg. LLF: 97.63601974811887
Optimization terminated successfully (Exit mode 0)
Current function value: 97.6360197480741
Iterations: 19
Function evaluations: 203
Gradient evaluations: 19
Iteration: 1, Func. Count: 12, Neg. LLF: 161.86914398543604
Iteration: 2, Func. Count: 27, Neg. LLF: 99.38205102639358
Iteration: 3, Func. Count: 38, Neg. LLF: 99.0659495530901
Iteration: 4, Func. Count: 49, Neg. LLF: 99.0594138430694
Iteration: 5, Func. Count: 60, Neg. LLF: 99.05520049129957
Iteration: 6, Func. Count: 71, Neg. LLF: 99.05485493223185
Iteration: 7, Func. Count: 82, Neg. LLF: 99.048515706493
Iteration: 8, Func. Count: 93, Neg. LLF: 99.03515408431339
Iteration: 9, Func. Count: 104, Neg. LLF: 98.98826392755099
Iteration: 10, Func. Count: 115, Neg. LLF: 98.68610472052998
Iteration: 11, Func. Count: 126, Neg. LLF: 99.40411566174025
Iteration: 12, Func. Count: 138, Neg. LLF: 98.26552524743954
Iteration: 13, Func. Count: 150, Neg. LLF: 99.85805764719804
Iteration: 14, Func. Count: 163, Neg. LLF: 97.751849196378
Iteration: 15, Func. Count: 174, Neg. LLF: 98.13485951806058
Iteration: 16, Func. Count: 186, Neg. LLF: 97.65536362042637
Iteration: 17, Func. Count: 197, Neg. LLF: 97.6474001571118
Iteration: 18, Func. Count: 208, Neg. LLF: 97.64039342244014
Iteration: 19, Func. Count: 219, Neg. LLF: 97.63819350018002
Iteration: 20, Func. Count: 230, Neg. LLF: 97.63656347995568
Iteration: 21, Func. Count: 241, Neg. LLF: 97.63615567217124
Iteration: 22, Func. Count: 252, Neg. LLF: 97.63602526430665
Iteration: 23, Func. Count: 263, Neg. LLF: 97.63601994245714
Iteration: 24, Func. Count: 273, Neg. LLF: 97.63601997162628
Optimization terminated successfully (Exit mode 0)
Current function value: 97.63601994245714
Iterations: 24
Function evaluations: 273
Gradient evaluations: 24
Iteration: 1, Func. Count: 9, Neg. LLF: 114.35274216294799
Iteration: 2, Func. Count: 19, Neg. LLF: 164.5000305948356
Iteration: 3, Func. Count: 28, Neg. LLF: 12752278.850286353
Iteration: 4, Func. Count: 37, Neg. LLF: 99.50838119587549
Iteration: 5, Func. Count: 46, Neg. LLF: 97.28920640506132
Iteration: 6, Func. Count: 54, Neg. LLF: 97.2647043842933
Iteration: 7, Func. Count: 62, Neg. LLF: 97.2718494238919
Iteration: 8, Func. Count: 71, Neg. LLF: 97.2497042804051
Iteration: 9, Func. Count: 79, Neg. LLF: 97.23485277740322
Iteration: 10, Func. Count: 87, Neg. LLF: 97.23349185947163
Iteration: 11, Func. Count: 95, Neg. LLF: 97.23336778009694
Iteration: 12, Func. Count: 102, Neg. LLF: 97.23336778011665
Optimization terminated successfully (Exit mode 0)
Current function value: 97.23336778009694
Iterations: 12
Function evaluations: 102
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 103.81359730799751
Iteration: 2, Func. Count: 23, Neg. LLF: 115.2491314911157
Iteration: 3, Func. Count: 33, Neg. LLF: 103.07393917207904
Iteration: 4, Func. Count: 44, Neg. LLF: 98.68348013784538
Iteration: 5, Func. Count: 53, Neg. LLF: 102.35749446704673
Iteration: 6, Func. Count: 64, Neg. LLF: 165.04597236953938
Iteration: 7, Func. Count: 75, Neg. LLF: 98.18943850381089
Iteration: 8, Func. Count: 84, Neg. LLF: 97.70725193376137
Iteration: 9, Func. Count: 93, Neg. LLF: 97.30457376932898
Iteration: 10, Func. Count: 102, Neg. LLF: 97.2839947808949
Iteration: 11, Func. Count: 111, Neg. LLF: 97.27453865306386
Iteration: 12, Func. Count: 120, Neg. LLF: 97.26782077242369
Iteration: 13, Func. Count: 129, Neg. LLF: 97.26634108030164
Iteration: 14, Func. Count: 138, Neg. LLF: 97.2608266581281
Iteration: 15, Func. Count: 147, Neg. LLF: 97.25272707413853
Iteration: 16, Func. Count: 156, Neg. LLF: 97.24146674914189
Iteration: 17, Func. Count: 165, Neg. LLF: 97.23490160442488
Iteration: 18, Func. Count: 174, Neg. LLF: 97.23349990886172
Iteration: 19, Func. Count: 183, Neg. LLF: 97.23337594805892
Iteration: 20, Func. Count: 192, Neg. LLF: 97.23336773643673
Iteration: 21, Func. Count: 200, Neg. LLF: 97.23336775434808
Optimization terminated successfully (Exit mode 0)
Current function value: 97.23336773643673
Iterations: 21
Function evaluations: 200
Gradient evaluations: 21
Iteration: 1, Func. Count: 11, Neg. LLF: 108.17334881757036
Iteration: 2, Func. Count: 26, Neg. LLF: 3483278.1362571614
Iteration: 3, Func. Count: 37, Neg. LLF: 103.8876701441702
Iteration: 4, Func. Count: 48, Neg. LLF: 99.74884477512991
Iteration: 5, Func. Count: 59, Neg. LLF: 107.7883753008569
Iteration: 6, Func. Count: 70, Neg. LLF: 98.43569522815888
Iteration: 7, Func. Count: 81, Neg. LLF: 98.20177646181328
Iteration: 8, Func. Count: 92, Neg. LLF: 98.51307796426588
Iteration: 9, Func. Count: 103, Neg. LLF: 97.43578674363775
Iteration: 10, Func. Count: 113, Neg. LLF: 97.37147688296912
Iteration: 11, Func. Count: 123, Neg. LLF: 97.26143914120064
Iteration: 12, Func. Count: 133, Neg. LLF: 97.25583486696188
Iteration: 13, Func. Count: 143, Neg. LLF: 97.25504277846235
Iteration: 14, Func. Count: 153, Neg. LLF: 97.25052620896085
Iteration: 15, Func. Count: 163, Neg. LLF: 97.23744941212183
Iteration: 16, Func. Count: 173, Neg. LLF: 97.23461463648563
Iteration: 17, Func. Count: 183, Neg. LLF: 97.23344899891208
Iteration: 18, Func. Count: 193, Neg. LLF: 97.23337100216266
Iteration: 19, Func. Count: 203, Neg. LLF: 97.23336767623353
Iteration: 20, Func. Count: 212, Neg. LLF: 97.23336777944752
Optimization terminated successfully (Exit mode 0)
Current function value: 97.23336767623353
Iterations: 20
Function evaluations: 212
Gradient evaluations: 20
Iteration: 1, Func. Count: 12, Neg. LLF: 112.10645632997844
Iteration: 2, Func. Count: 28, Neg. LLF: 15066439.568518924
Iteration: 3, Func. Count: 40, Neg. LLF: 106.64178752580366
Iteration: 4, Func. Count: 52, Neg. LLF: 100.75629264616626
Iteration: 5, Func. Count: 64, Neg. LLF: 98.77797476915427
Iteration: 6, Func. Count: 76, Neg. LLF: 97.08117719643903
Iteration: 7, Func. Count: 87, Neg. LLF: 100.72575628227924
Iteration: 8, Func. Count: 99, Neg. LLF: 108.54375456651732
Iteration: 9, Func. Count: 114, Neg. LLF: 96.21262301685387
Iteration: 10, Func. Count: 125, Neg. LLF: 98.31405730513701
Iteration: 11, Func. Count: 138, Neg. LLF: 96.21263962312621
Iteration: 12, Func. Count: 150, Neg. LLF: 96.0712615462478
Iteration: 13, Func. Count: 161, Neg. LLF: 96.06362576189721
Iteration: 14, Func. Count: 172, Neg. LLF: 96.06005999258413
Iteration: 15, Func. Count: 183, Neg. LLF: 96.05591003917593
Iteration: 16, Func. Count: 194, Neg. LLF: 96.0509126252444
Iteration: 17, Func. Count: 205, Neg. LLF: 96.04544289074755
Iteration: 18, Func. Count: 216, Neg. LLF: 96.04344340757991
Iteration: 19, Func. Count: 227, Neg. LLF: 96.0431805041327
Iteration: 20, Func. Count: 238, Neg. LLF: 96.04313567949687
Iteration: 21, Func. Count: 249, Neg. LLF: 96.04312755311834
Iteration: 22, Func. Count: 260, Neg. LLF: 96.04312632675877
Iteration: 23, Func. Count: 270, Neg. LLF: 96.04312632678783
Optimization terminated successfully (Exit mode 0)
Current function value: 96.04312632675877
Iterations: 23
Function evaluations: 270
Gradient evaluations: 23
Iteration: 1, Func. Count: 13, Neg. LLF: 114.3305541734884
Iteration: 2, Func. Count: 30, Neg. LLF: 14360943.66370281
Iteration: 3, Func. Count: 43, Neg. LLF: 100.29504332409898
Iteration: 4, Func. Count: 56, Neg. LLF: 103.31426408231839
Iteration: 5, Func. Count: 69, Neg. LLF: 104.30592396700001
Iteration: 6, Func. Count: 82, Neg. LLF: 101.14324965442022
Iteration: 7, Func. Count: 95, Neg. LLF: 100.56561849523388
Iteration: 8, Func. Count: 108, Neg. LLF: 96.31428192021218
Iteration: 9, Func. Count: 120, Neg. LLF: 96.12606883847295
Iteration: 10, Func. Count: 132, Neg. LLF: 96.07588489917515
Iteration: 11, Func. Count: 144, Neg. LLF: 96.05827142628237
Iteration: 12, Func. Count: 156, Neg. LLF: 96.05278484605573
Iteration: 13, Func. Count: 168, Neg. LLF: 96.05080129188843
Iteration: 14, Func. Count: 180, Neg. LLF: 96.04821895547526
Iteration: 15, Func. Count: 192, Neg. LLF: 96.04696066390832
Iteration: 16, Func. Count: 204, Neg. LLF: 96.04350321716734
Iteration: 17, Func. Count: 216, Neg. LLF: 96.04316120653927
Iteration: 18, Func. Count: 228, Neg. LLF: 96.04312734774572
Iteration: 19, Func. Count: 240, Neg. LLF: 96.04312625982925
Iteration: 20, Func. Count: 251, Neg. LLF: 96.04312628002285
Optimization terminated successfully (Exit mode 0)
Current function value: 96.04312625982925
Iterations: 20
Function evaluations: 251
Gradient evaluations: 20
Iteration: 1, Func. Count: 10, Neg. LLF: 114.77049193307009
Iteration: 2, Func. Count: 21, Neg. LLF: 164.81414218906082
Iteration: 3, Func. Count: 31, Neg. LLF: 9968970.826400172
Iteration: 4, Func. Count: 41, Neg. LLF: 102.9108749260326
Iteration: 5, Func. Count: 51, Neg. LLF: 97.44217727446153
Iteration: 6, Func. Count: 60, Neg. LLF: 97.30269751375536
Iteration: 7, Func. Count: 69, Neg. LLF: 97.25935076387283
Iteration: 8, Func. Count: 78, Neg. LLF: 97.25227899543633
Iteration: 9, Func. Count: 87, Neg. LLF: 97.24682323082475
Iteration: 10, Func. Count: 96, Neg. LLF: 97.23767202765102
Iteration: 11, Func. Count: 105, Neg. LLF: 97.23352327353655
Iteration: 12, Func. Count: 114, Neg. LLF: 97.23337045832248
Iteration: 13, Func. Count: 123, Neg. LLF: 97.23336758365868
Iteration: 14, Func. Count: 131, Neg. LLF: 97.2333676058308
Optimization terminated successfully (Exit mode 0)
Current function value: 97.23336758365868
Iterations: 14
Function evaluations: 131
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 104.44460283691774
Iteration: 2, Func. Count: 25, Neg. LLF: 112.77783531688591
Iteration: 3, Func. Count: 36, Neg. LLF: 100.62971308083232
Iteration: 4, Func. Count: 48, Neg. LLF: 99.07293958668576
Iteration: 5, Func. Count: 58, Neg. LLF: 105.84831991415207
Iteration: 6, Func. Count: 69, Neg. LLF: 100.75581743207714
Iteration: 7, Func. Count: 82, Neg. LLF: 97.99449747784358
Iteration: 8, Func. Count: 92, Neg. LLF: 97.49482382135419
Iteration: 9, Func. Count: 102, Neg. LLF: 97.31161718741515
Iteration: 10, Func. Count: 112, Neg. LLF: 97.28154355860757
Iteration: 11, Func. Count: 122, Neg. LLF: 97.27022000383121
Iteration: 12, Func. Count: 132, Neg. LLF: 97.2667524675906
Iteration: 13, Func. Count: 142, Neg. LLF: 97.26188944967663
Iteration: 14, Func. Count: 152, Neg. LLF: 97.26017743778374
Iteration: 15, Func. Count: 162, Neg. LLF: 97.25359052940385
Iteration: 16, Func. Count: 172, Neg. LLF: 97.24598731743315
Iteration: 17, Func. Count: 182, Neg. LLF: 97.23774693296576
Iteration: 18, Func. Count: 192, Neg. LLF: 97.23396772597668
Iteration: 19, Func. Count: 202, Neg. LLF: 97.23339395313288
Iteration: 20, Func. Count: 212, Neg. LLF: 97.23336893483192
Iteration: 21, Func. Count: 222, Neg. LLF: 97.2333676012588
Iteration: 22, Func. Count: 231, Neg. LLF: 97.23336761914351
Optimization terminated successfully (Exit mode 0)
Current function value: 97.2333676012588
Iterations: 22
Function evaluations: 231
Gradient evaluations: 22
Iteration: 1, Func. Count: 12, Neg. LLF: 108.35526344602818
Iteration: 2, Func. Count: 28, Neg. LLF: 3520658.461515285
Iteration: 3, Func. Count: 40, Neg. LLF: 103.8187852045113
Iteration: 4, Func. Count: 52, Neg. LLF: 99.95719655030959
Iteration: 5, Func. Count: 64, Neg. LLF: 151.21518094566505
Iteration: 6, Func. Count: 77, Neg. LLF: 98.92711063605707
Iteration: 7, Func. Count: 89, Neg. LLF: 98.27326756429207
Iteration: 8, Func. Count: 101, Neg. LLF: 100.60705523927525
Iteration: 9, Func. Count: 113, Neg. LLF: 97.72469771020852
Iteration: 10, Func. Count: 124, Neg. LLF: 97.36029249640936
Iteration: 11, Func. Count: 135, Neg. LLF: 97.27643554982653
Iteration: 12, Func. Count: 146, Neg. LLF: 97.2650417907412
Iteration: 13, Func. Count: 157, Neg. LLF: 97.25897810588327
Iteration: 14, Func. Count: 168, Neg. LLF: 97.25797351625488
Iteration: 15, Func. Count: 179, Neg. LLF: 97.25309366882415
Iteration: 16, Func. Count: 190, Neg. LLF: 97.24758695526282
Iteration: 17, Func. Count: 201, Neg. LLF: 97.23945392936231
Iteration: 18, Func. Count: 212, Neg. LLF: 97.23462603895697
Iteration: 19, Func. Count: 223, Neg. LLF: 97.23344971110451
Iteration: 20, Func. Count: 234, Neg. LLF: 97.2333711384494
Iteration: 21, Func. Count: 245, Neg. LLF: 97.23336764370444
Iteration: 22, Func. Count: 255, Neg. LLF: 97.23336774691616
Optimization terminated successfully (Exit mode 0)
Current function value: 97.23336764370444
Iterations: 22
Function evaluations: 255
Gradient evaluations: 22
Iteration: 1, Func. Count: 13, Neg. LLF: 112.30135321199258
Iteration: 2, Func. Count: 30, Neg. LLF: 15085982.091304382
Iteration: 3, Func. Count: 43, Neg. LLF: 106.46684583204976
Iteration: 4, Func. Count: 56, Neg. LLF: 100.73882371128673
Iteration: 5, Func. Count: 69, Neg. LLF: 98.78856706992148
Iteration: 6, Func. Count: 82, Neg. LLF: 97.1244627115418
Iteration: 7, Func. Count: 94, Neg. LLF: 100.81003221029678
Iteration: 8, Func. Count: 107, Neg. LLF: 109.4254462580841
Iteration: 9, Func. Count: 123, Neg. LLF: 96.15571514979763
Iteration: 10, Func. Count: 135, Neg. LLF: 98.62095608097792
Iteration: 11, Func. Count: 149, Neg. LLF: 96.10000903729701
Iteration: 12, Func. Count: 161, Neg. LLF: 96.06652040758642
Iteration: 13, Func. Count: 173, Neg. LLF: 96.06154205194562
Iteration: 14, Func. Count: 185, Neg. LLF: 96.05807782243089
Iteration: 15, Func. Count: 197, Neg. LLF: 96.05422313895794
Iteration: 16, Func. Count: 209, Neg. LLF: 96.04789804439426
Iteration: 17, Func. Count: 221, Neg. LLF: 96.04414828059348
Iteration: 18, Func. Count: 233, Neg. LLF: 96.04324358190028
Iteration: 19, Func. Count: 245, Neg. LLF: 96.0431408486322
Iteration: 20, Func. Count: 257, Neg. LLF: 96.04312866302023
Iteration: 21, Func. Count: 269, Neg. LLF: 96.0431265914115
Iteration: 22, Func. Count: 280, Neg. LLF: 96.0431265914399
Optimization terminated successfully (Exit mode 0)
Current function value: 96.0431265914115
Iterations: 22
Function evaluations: 280
Gradient evaluations: 22
Iteration: 1, Func. Count: 14, Neg. LLF: 114.52388183139075
Iteration: 2, Func. Count: 32, Neg. LLF: 14353403.626445385
Iteration: 3, Func. Count: 46, Neg. LLF: 100.24034026183698
Iteration: 4, Func. Count: 60, Neg. LLF: 103.53040790531229
Iteration: 5, Func. Count: 74, Neg. LLF: 103.61764755790757
Iteration: 6, Func. Count: 88, Neg. LLF: 100.28825349958608
Iteration: 7, Func. Count: 102, Neg. LLF: 100.53455301704318
Iteration: 8, Func. Count: 116, Neg. LLF: 96.28416330229456
Iteration: 9, Func. Count: 129, Neg. LLF: 96.10530262080276
Iteration: 10, Func. Count: 142, Neg. LLF: 96.06896728556652
Iteration: 11, Func. Count: 155, Neg. LLF: 96.05552068059893
Iteration: 12, Func. Count: 168, Neg. LLF: 96.05197576742637
Iteration: 13, Func. Count: 181, Neg. LLF: 96.05035762545556
Iteration: 14, Func. Count: 194, Neg. LLF: 96.04744425562569
Iteration: 15, Func. Count: 207, Neg. LLF: 96.04607844536541
Iteration: 16, Func. Count: 220, Neg. LLF: 96.04335322015514
Iteration: 17, Func. Count: 233, Neg. LLF: 96.04314339547113
Iteration: 18, Func. Count: 246, Neg. LLF: 96.04312654112508
Iteration: 19, Func. Count: 258, Neg. LLF: 96.04312656134566
Optimization terminated successfully (Exit mode 0)
Current function value: 96.04312654112508
Iterations: 19
Function evaluations: 258
Gradient evaluations: 19
Iteration: 1, Func. Count: 7, Neg. LLF: 114.72809648514536
Iteration: 2, Func. Count: 15, Neg. LLF: 130.94266141487952
Iteration: 3, Func. Count: 22, Neg. LLF: 230150.34814550178
Iteration: 4, Func. Count: 29, Neg. LLF: 100.62433074247531
Iteration: 5, Func. Count: 36, Neg. LLF: 98.4593960245901
Iteration: 6, Func. Count: 42, Neg. LLF: 98.40532116276704
Iteration: 7, Func. Count: 48, Neg. LLF: 98.39055650847529
Iteration: 8, Func. Count: 54, Neg. LLF: 98.39030609480675
Iteration: 9, Func. Count: 60, Neg. LLF: 98.39027638526036
Iteration: 10, Func. Count: 65, Neg. LLF: 98.39027638522207
Optimization terminated successfully (Exit mode 0)
Current function value: 98.39027638526036
Iterations: 10
Function evaluations: 65
Gradient evaluations: 10
Iteration: 1, Func. Count: 8, Neg. LLF: 104.32639971316546
Iteration: 2, Func. Count: 19, Neg. LLF: 140.2833079274257
Iteration: 3, Func. Count: 27, Neg. LLF: 107.36867099592166
Iteration: 4, Func. Count: 35, Neg. LLF: 98.97763901219646
Iteration: 5, Func. Count: 42, Neg. LLF: 98.77403253983387
Iteration: 6, Func. Count: 50, Neg. LLF: 98.54454275627535
Iteration: 7, Func. Count: 57, Neg. LLF: 98.52100750792302
Iteration: 8, Func. Count: 64, Neg. LLF: 98.51143374150487
Iteration: 9, Func. Count: 71, Neg. LLF: 98.43889688673741
Iteration: 10, Func. Count: 78, Neg. LLF: 98.42872455024006
Iteration: 11, Func. Count: 85, Neg. LLF: 98.39451721109111
Iteration: 12, Func. Count: 92, Neg. LLF: 98.39196787237157
Iteration: 13, Func. Count: 99, Neg. LLF: 98.39104432144656
Iteration: 14, Func. Count: 106, Neg. LLF: 98.39041259339177
Iteration: 15, Func. Count: 113, Neg. LLF: 98.38701165402982
Iteration: 16, Func. Count: 120, Neg. LLF: 98.38105069682037
Iteration: 17, Func. Count: 127, Neg. LLF: 98.38096391563245
Iteration: 18, Func. Count: 134, Neg. LLF: 98.38095335124066
Iteration: 19, Func. Count: 141, Neg. LLF: 98.38095236498202
Optimization terminated successfully (Exit mode 0)
Current function value: 98.38095236498202
Iterations: 19
Function evaluations: 141
Gradient evaluations: 19
Iteration: 1, Func. Count: 9, Neg. LLF: 109.89343267406467
Iteration: 2, Func. Count: 21, Neg. LLF: 121.20031779888315
Iteration: 3, Func. Count: 30, Neg. LLF: 106.6345819836059
Iteration: 4, Func. Count: 39, Neg. LLF: 101.279949152827
Iteration: 5, Func. Count: 48, Neg. LLF: 102.33168767478115
Iteration: 6, Func. Count: 57, Neg. LLF: 99.4307457681547
Iteration: 7, Func. Count: 66, Neg. LLF: 98.71041008022242
Iteration: 8, Func. Count: 74, Neg. LLF: 99.69896122005147
Iteration: 9, Func. Count: 83, Neg. LLF: 98.5286892530837
Iteration: 10, Func. Count: 91, Neg. LLF: 98.50446051316527
Iteration: 11, Func. Count: 99, Neg. LLF: 98.49381192007598
Iteration: 12, Func. Count: 107, Neg. LLF: 98.48275425650458
Iteration: 13, Func. Count: 115, Neg. LLF: 98.47146501857173
Iteration: 14, Func. Count: 123, Neg. LLF: 98.40869316285686
Iteration: 15, Func. Count: 131, Neg. LLF: 98.40035599442929
Iteration: 16, Func. Count: 139, Neg. LLF: 98.39377052494774
Iteration: 17, Func. Count: 147, Neg. LLF: 98.39275846274586
Iteration: 18, Func. Count: 155, Neg. LLF: 98.3916058821703
Iteration: 19, Func. Count: 163, Neg. LLF: 98.38935612445916
Iteration: 20, Func. Count: 171, Neg. LLF: 98.38527253641882
Iteration: 21, Func. Count: 179, Neg. LLF: 98.38194182239897
Iteration: 22, Func. Count: 187, Neg. LLF: 98.38106343176847
Iteration: 23, Func. Count: 195, Neg. LLF: 98.3809592247837
Iteration: 24, Func. Count: 203, Neg. LLF: 98.38095242956895
Iteration: 25, Func. Count: 210, Neg. LLF: 98.38095249528352
Optimization terminated successfully (Exit mode 0)
Current function value: 98.38095242956895
Iterations: 25
Function evaluations: 210
Gradient evaluations: 25
Iteration: 1, Func. Count: 10, Neg. LLF: 113.39751231835433
Iteration: 2, Func. Count: 24, Neg. LLF: 147.58687898922076
Iteration: 3, Func. Count: 34, Neg. LLF: 107.43891025357934
Iteration: 4, Func. Count: 44, Neg. LLF: 99.22396450168642
Iteration: 5, Func. Count: 54, Neg. LLF: 98.33490704236601
Iteration: 6, Func. Count: 63, Neg. LLF: 99.71357328735677
Iteration: 7, Func. Count: 73, Neg. LLF: 99.79931255918672
Iteration: 8, Func. Count: 83, Neg. LLF: 99.92850732586089
Iteration: 9, Func. Count: 94, Neg. LLF: 98.54051974211679
Iteration: 10, Func. Count: 104, Neg. LLF: 99.58627945431755
Iteration: 11, Func. Count: 114, Neg. LLF: 97.70408718801923
Iteration: 12, Func. Count: 123, Neg. LLF: 97.60206507232186
Iteration: 13, Func. Count: 132, Neg. LLF: 97.56616079114806
Iteration: 14, Func. Count: 141, Neg. LLF: 97.50894971260082
Iteration: 15, Func. Count: 150, Neg. LLF: 97.48898506519754
Iteration: 16, Func. Count: 159, Neg. LLF: 97.45202971694651
Iteration: 17, Func. Count: 168, Neg. LLF: 97.43077213101502
Iteration: 18, Func. Count: 177, Neg. LLF: 97.4191676540814
Iteration: 19, Func. Count: 186, Neg. LLF: 97.4157205717648
Iteration: 20, Func. Count: 195, Neg. LLF: 97.41541481501595
Iteration: 21, Func. Count: 204, Neg. LLF: 97.41539657963824
Iteration: 22, Func. Count: 213, Neg. LLF: 97.4153951523176
Iteration: 23, Func. Count: 221, Neg. LLF: 97.41539515230878
Optimization terminated successfully (Exit mode 0)
Current function value: 97.4153951523176
Iterations: 23
Function evaluations: 221
Gradient evaluations: 23
Iteration: 1, Func. Count: 11, Neg. LLF: 115.38454582380419
Iteration: 2, Func. Count: 26, Neg. LLF: 147.69343418888678
Iteration: 3, Func. Count: 37, Neg. LLF: 140.66451429097745
Iteration: 4, Func. Count: 48, Neg. LLF: 99.00108295492512
Iteration: 5, Func. Count: 59, Neg. LLF: 99.25678287503094
Iteration: 6, Func. Count: 70, Neg. LLF: 98.37549749176469
Iteration: 7, Func. Count: 80, Neg. LLF: 98.17768307868288
Iteration: 8, Func. Count: 90, Neg. LLF: 98.16110493554577
Iteration: 9, Func. Count: 100, Neg. LLF: 98.15892354628417
Iteration: 10, Func. Count: 110, Neg. LLF: 98.15784995049985
Iteration: 11, Func. Count: 120, Neg. LLF: 98.1544048534154
Iteration: 12, Func. Count: 130, Neg. LLF: 98.1499454527782
Iteration: 13, Func. Count: 140, Neg. LLF: 98.08705170356222
Iteration: 14, Func. Count: 150, Neg. LLF: 97.8610403281579
Iteration: 15, Func. Count: 160, Neg. LLF: 97.50966893502869
Iteration: 16, Func. Count: 170, Neg. LLF: 98.13610332730806
Iteration: 17, Func. Count: 181, Neg. LLF: 97.52723871646741
Iteration: 18, Func. Count: 192, Neg. LLF: 97.47492479818618
Iteration: 19, Func. Count: 203, Neg. LLF: 97.45057677140913
Iteration: 20, Func. Count: 213, Neg. LLF: 97.44425840759554
Iteration: 21, Func. Count: 223, Neg. LLF: 97.43137101876557
Iteration: 22, Func. Count: 233, Neg. LLF: 97.42722245015165
Iteration: 23, Func. Count: 243, Neg. LLF: 97.42137284576818
Iteration: 24, Func. Count: 253, Neg. LLF: 97.41826000907024
Iteration: 25, Func. Count: 263, Neg. LLF: 97.41673429223815
Iteration: 26, Func. Count: 273, Neg. LLF: 97.41577234905586
Iteration: 27, Func. Count: 283, Neg. LLF: 97.4154547543956
Iteration: 28, Func. Count: 293, Neg. LLF: 97.41539764390379
Iteration: 29, Func. Count: 303, Neg. LLF: 97.41539653151656
Iteration: 30, Func. Count: 313, Neg. LLF: 97.41539534540841
Iteration: 31, Func. Count: 322, Neg. LLF: 97.41539538637448
Optimization terminated successfully (Exit mode 0)
Current function value: 97.41539534540841
Iterations: 31
Function evaluations: 322
Gradient evaluations: 31
Iteration: 1, Func. Count: 8, Neg. LLF: 114.68430439678545
Iteration: 2, Func. Count: 17, Neg. LLF: 135.71567954039585
Iteration: 3, Func. Count: 25, Neg. LLF: 7116.548665885772
Iteration: 4, Func. Count: 33, Neg. LLF: 100.71907775985416
Iteration: 5, Func. Count: 41, Neg. LLF: 98.50156312726702
Iteration: 6, Func. Count: 48, Neg. LLF: 98.41214547326219
Iteration: 7, Func. Count: 55, Neg. LLF: 98.38998871534761
Iteration: 8, Func. Count: 62, Neg. LLF: 98.38338103442814
Iteration: 9, Func. Count: 69, Neg. LLF: 98.38316308900401
Iteration: 10, Func. Count: 76, Neg. LLF: 98.38316117353364
Iteration: 11, Func. Count: 82, Neg. LLF: 98.38316114450191
Optimization terminated successfully (Exit mode 0)
Current function value: 98.38316117353364
Iterations: 11
Function evaluations: 82
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 105.34130775825408
Iteration: 2, Func. Count: 21, Neg. LLF: 119.85602043240843
Iteration: 3, Func. Count: 30, Neg. LLF: 100.73911345394964
Iteration: 4, Func. Count: 39, Neg. LLF: 99.1573534847998
Iteration: 5, Func. Count: 48, Neg. LLF: 98.69630961741323
Iteration: 6, Func. Count: 57, Neg. LLF: 98.52377095311932
Iteration: 7, Func. Count: 65, Neg. LLF: 98.49879897320311
Iteration: 8, Func. Count: 73, Neg. LLF: 98.47467635022998
Iteration: 9, Func. Count: 81, Neg. LLF: 98.43101677661018
Iteration: 10, Func. Count: 89, Neg. LLF: 98.40539452928425
Iteration: 11, Func. Count: 97, Neg. LLF: 98.39978477889719
Iteration: 12, Func. Count: 105, Neg. LLF: 98.39377906369006
Iteration: 13, Func. Count: 113, Neg. LLF: 98.39271276085236
Iteration: 14, Func. Count: 121, Neg. LLF: 98.39169860311782
Iteration: 15, Func. Count: 129, Neg. LLF: 98.39036772896829
Iteration: 16, Func. Count: 137, Neg. LLF: 98.38625334205888
Iteration: 17, Func. Count: 145, Neg. LLF: 98.38245617185417
Iteration: 18, Func. Count: 153, Neg. LLF: 98.38111063852966
Iteration: 19, Func. Count: 161, Neg. LLF: 98.38096704278229
Iteration: 20, Func. Count: 169, Neg. LLF: 98.38095249404421
Iteration: 21, Func. Count: 176, Neg. LLF: 98.38095249407087
Optimization terminated successfully (Exit mode 0)
Current function value: 98.38095249404421
Iterations: 21
Function evaluations: 176
Gradient evaluations: 21
Iteration: 1, Func. Count: 10, Neg. LLF: 109.71723715639628
Iteration: 2, Func. Count: 23, Neg. LLF: 120.86382274811878
Iteration: 3, Func. Count: 33, Neg. LLF: 102.10359527038405
Iteration: 4, Func. Count: 43, Neg. LLF: 103.44256467646935
Iteration: 5, Func. Count: 53, Neg. LLF: 105.99682240039193
Iteration: 6, Func. Count: 63, Neg. LLF: 98.70448586293845
Iteration: 7, Func. Count: 72, Neg. LLF: 100.0111899473916
Iteration: 8, Func. Count: 82, Neg. LLF: 98.55805787614527
Iteration: 9, Func. Count: 91, Neg. LLF: 98.49600935843638
Iteration: 10, Func. Count: 100, Neg. LLF: 98.48659649742956
Iteration: 11, Func. Count: 109, Neg. LLF: 98.48367946583099
Iteration: 12, Func. Count: 118, Neg. LLF: 98.47043889176277
Iteration: 13, Func. Count: 127, Neg. LLF: 98.43611512621649
Iteration: 14, Func. Count: 136, Neg. LLF: 98.40315701991463
Iteration: 15, Func. Count: 145, Neg. LLF: 98.39399241873184
Iteration: 16, Func. Count: 154, Neg. LLF: 98.38581209206048
Iteration: 17, Func. Count: 163, Neg. LLF: 98.38434095920233
Iteration: 18, Func. Count: 172, Neg. LLF: 98.38347025265284
Iteration: 19, Func. Count: 181, Neg. LLF: 98.38289666994221
Iteration: 20, Func. Count: 190, Neg. LLF: 98.38201689696909
Iteration: 21, Func. Count: 199, Neg. LLF: 98.38166537874946
Iteration: 22, Func. Count: 208, Neg. LLF: 98.38153473061952
Iteration: 23, Func. Count: 217, Neg. LLF: 98.38116780586158
Iteration: 24, Func. Count: 226, Neg. LLF: 98.38100030589167
Iteration: 25, Func. Count: 235, Neg. LLF: 98.38096487905231
Iteration: 26, Func. Count: 244, Neg. LLF: 98.38095499512252
Iteration: 27, Func. Count: 253, Neg. LLF: 98.38095245494337
Iteration: 28, Func. Count: 261, Neg. LLF: 98.38095252069743
Optimization terminated successfully (Exit mode 0)
Current function value: 98.38095245494337
Iterations: 28
Function evaluations: 261
Gradient evaluations: 28
Iteration: 1, Func. Count: 11, Neg. LLF: 113.2429479015437
Iteration: 2, Func. Count: 26, Neg. LLF: 124.91385647547192
Iteration: 3, Func. Count: 37, Neg. LLF: 111.33215933116712
Iteration: 4, Func. Count: 48, Neg. LLF: 98.82456028652736
Iteration: 5, Func. Count: 58, Neg. LLF: 97.45987635999778
Iteration: 6, Func. Count: 68, Neg. LLF: 151.9403437511336
Iteration: 7, Func. Count: 80, Neg. LLF: 98.06792959329353
Iteration: 8, Func. Count: 91, Neg. LLF: 97.74697661494451
Iteration: 9, Func. Count: 102, Neg. LLF: 97.27733018092312
Iteration: 10, Func. Count: 112, Neg. LLF: 97.22833744428307
Iteration: 11, Func. Count: 122, Neg. LLF: 97.21001826512146
Iteration: 12, Func. Count: 132, Neg. LLF: 97.1947109687727
Iteration: 13, Func. Count: 142, Neg. LLF: 97.19192571155877
Iteration: 14, Func. Count: 152, Neg. LLF: 97.18946744010914
Iteration: 15, Func. Count: 162, Neg. LLF: 97.18750241431118
Iteration: 16, Func. Count: 172, Neg. LLF: 97.18580651851227
Iteration: 17, Func. Count: 182, Neg. LLF: 97.18491275165678
Iteration: 18, Func. Count: 192, Neg. LLF: 97.184498692292
Iteration: 19, Func. Count: 202, Neg. LLF: 97.18442042914731
Iteration: 20, Func. Count: 212, Neg. LLF: 97.18440908130574
Iteration: 21, Func. Count: 222, Neg. LLF: 97.18440626245494
Iteration: 22, Func. Count: 231, Neg. LLF: 97.18440626238323
Optimization terminated successfully (Exit mode 0)
Current function value: 97.18440626245494
Iterations: 22
Function evaluations: 231
Gradient evaluations: 22
Iteration: 1, Func. Count: 12, Neg. LLF: 115.30915655949524
Iteration: 2, Func. Count: 28, Neg. LLF: 145.5408739062788
Iteration: 3, Func. Count: 40, Neg. LLF: 154.76498776593164
Iteration: 4, Func. Count: 52, Neg. LLF: 144.58014410395901
Iteration: 5, Func. Count: 65, Neg. LLF: 98.80370373300703
Iteration: 6, Func. Count: 76, Neg. LLF: 98.21554333570677
Iteration: 7, Func. Count: 87, Neg. LLF: 97.9860793508091
Iteration: 8, Func. Count: 98, Neg. LLF: 97.67527419032518
Iteration: 9, Func. Count: 109, Neg. LLF: 98.26569766102463
Iteration: 10, Func. Count: 122, Neg. LLF: 98.36660596537702
Iteration: 11, Func. Count: 134, Neg. LLF: 97.42038365116181
Iteration: 12, Func. Count: 145, Neg. LLF: 97.41899882665017
Iteration: 13, Func. Count: 157, Neg. LLF: 97.3519597523809
Iteration: 14, Func. Count: 168, Neg. LLF: 97.21942196077495
Iteration: 15, Func. Count: 179, Neg. LLF: 97.19916610071607
Iteration: 16, Func. Count: 190, Neg. LLF: 97.189172219093
Iteration: 17, Func. Count: 201, Neg. LLF: 97.18745366158309
Iteration: 18, Func. Count: 212, Neg. LLF: 97.18676432464774
Iteration: 19, Func. Count: 223, Neg. LLF: 97.18532385863091
Iteration: 20, Func. Count: 234, Neg. LLF: 97.18463019677635
Iteration: 21, Func. Count: 245, Neg. LLF: 97.18444315347244
Iteration: 22, Func. Count: 256, Neg. LLF: 97.18441867215238
Iteration: 23, Func. Count: 267, Neg. LLF: 97.18441133182509
Iteration: 24, Func. Count: 278, Neg. LLF: 97.18440718537606
Iteration: 25, Func. Count: 289, Neg. LLF: 97.18440605932719
Iteration: 26, Func. Count: 299, Neg. LLF: 97.18440610239554
Optimization terminated successfully (Exit mode 0)
Current function value: 97.18440605932719
Iterations: 26
Function evaluations: 299
Gradient evaluations: 26
Iteration: 1, Func. Count: 9, Neg. LLF: 114.67741529076835
Iteration: 2, Func. Count: 19, Neg. LLF: 134.36616480820123
Iteration: 3, Func. Count: 28, Neg. LLF: 14521.44996724171
Iteration: 4, Func. Count: 37, Neg. LLF: 100.80183097148795
Iteration: 5, Func. Count: 46, Neg. LLF: 98.50465537097806
Iteration: 6, Func. Count: 54, Neg. LLF: 98.41186050349705
Iteration: 7, Func. Count: 62, Neg. LLF: 98.39005738894683
Iteration: 8, Func. Count: 70, Neg. LLF: 98.38338658776509
Iteration: 9, Func. Count: 78, Neg. LLF: 98.38316283193217
Iteration: 10, Func. Count: 86, Neg. LLF: 98.38316110414877
Iteration: 11, Func. Count: 93, Neg. LLF: 98.38316100604375
Optimization terminated successfully (Exit mode 0)
Current function value: 98.38316110414877
Iterations: 11
Function evaluations: 93
Gradient evaluations: 11
Iteration: 1, Func. Count: 10, Neg. LLF: 105.01915803196299
Iteration: 2, Func. Count: 23, Neg. LLF: 117.88439943725672
Iteration: 3, Func. Count: 33, Neg. LLF: 100.854750605899
Iteration: 4, Func. Count: 43, Neg. LLF: 99.13136944618843
Iteration: 5, Func. Count: 53, Neg. LLF: 98.76529759127564
Iteration: 6, Func. Count: 63, Neg. LLF: 98.52136507261815
Iteration: 7, Func. Count: 72, Neg. LLF: 98.49247439561637
Iteration: 8, Func. Count: 81, Neg. LLF: 98.4672537552861
Iteration: 9, Func. Count: 90, Neg. LLF: 98.42165899864096
Iteration: 10, Func. Count: 99, Neg. LLF: 98.40138020286551
Iteration: 11, Func. Count: 108, Neg. LLF: 98.39997156568938
Iteration: 12, Func. Count: 118, Neg. LLF: 98.39368816958019
Iteration: 13, Func. Count: 127, Neg. LLF: 98.39265770231897
Iteration: 14, Func. Count: 136, Neg. LLF: 98.38986264116346
Iteration: 15, Func. Count: 145, Neg. LLF: 98.38438248656504
Iteration: 16, Func. Count: 154, Neg. LLF: 98.38184147936768
Iteration: 17, Func. Count: 163, Neg. LLF: 98.38114534593643
Iteration: 18, Func. Count: 172, Neg. LLF: 98.3809708154969
Iteration: 19, Func. Count: 181, Neg. LLF: 98.3809537170349
Iteration: 20, Func. Count: 190, Neg. LLF: 98.38095242701557
Iteration: 21, Func. Count: 198, Neg. LLF: 98.38095242703582
Optimization terminated successfully (Exit mode 0)
Current function value: 98.38095242701557
Iterations: 21
Function evaluations: 198
Gradient evaluations: 21
Iteration: 1, Func. Count: 11, Neg. LLF: 109.89882402495778
Iteration: 2, Func. Count: 25, Neg. LLF: 119.78874789790333
Iteration: 3, Func. Count: 36, Neg. LLF: 102.4829494395657
Iteration: 4, Func. Count: 47, Neg. LLF: 103.1536245454008
Iteration: 5, Func. Count: 58, Neg. LLF: 106.9442769698386
Iteration: 6, Func. Count: 69, Neg. LLF: 98.77472500677625
Iteration: 7, Func. Count: 79, Neg. LLF: 100.42564374873028
Iteration: 8, Func. Count: 90, Neg. LLF: 98.67154604785381
Iteration: 9, Func. Count: 101, Neg. LLF: 98.50938360780229
Iteration: 10, Func. Count: 111, Neg. LLF: 98.48817163867977
Iteration: 11, Func. Count: 121, Neg. LLF: 98.48529075548342
Iteration: 12, Func. Count: 131, Neg. LLF: 98.4746157365055
Iteration: 13, Func. Count: 141, Neg. LLF: 98.43158450092699
Iteration: 14, Func. Count: 151, Neg. LLF: 98.4158195208375
Iteration: 15, Func. Count: 161, Neg. LLF: 98.38807804686776
Iteration: 16, Func. Count: 171, Neg. LLF: 98.3867523520622
Iteration: 17, Func. Count: 181, Neg. LLF: 98.38541731660219
Iteration: 18, Func. Count: 191, Neg. LLF: 98.38393504773799
Iteration: 19, Func. Count: 201, Neg. LLF: 98.3827900588246
Iteration: 20, Func. Count: 211, Neg. LLF: 98.38251583788885
Iteration: 21, Func. Count: 221, Neg. LLF: 98.38248539855505
Iteration: 22, Func. Count: 231, Neg. LLF: 98.38227027702953
Iteration: 23, Func. Count: 241, Neg. LLF: 98.38109721631484
Iteration: 24, Func. Count: 251, Neg. LLF: 98.38100064520529
Iteration: 25, Func. Count: 261, Neg. LLF: 98.38095890335003
Iteration: 26, Func. Count: 271, Neg. LLF: 98.3809527253555
Iteration: 27, Func. Count: 280, Neg. LLF: 98.38095279108188
Optimization terminated successfully (Exit mode 0)
Current function value: 98.3809527253555
Iterations: 27
Function evaluations: 280
Gradient evaluations: 27
Iteration: 1, Func. Count: 12, Neg. LLF: 113.41651017558556
Iteration: 2, Func. Count: 28, Neg. LLF: 123.56287012438996
Iteration: 3, Func. Count: 40, Neg. LLF: 110.78316642369057
Iteration: 4, Func. Count: 52, Neg. LLF: 98.8249725041928
Iteration: 5, Func. Count: 63, Neg. LLF: 97.44626003959547
Iteration: 6, Func. Count: 74, Neg. LLF: 134.9518113786256
Iteration: 7, Func. Count: 87, Neg. LLF: 97.79549253317147
Iteration: 8, Func. Count: 99, Neg. LLF: 98.03880154976397
Iteration: 9, Func. Count: 111, Neg. LLF: 97.26474229649237
Iteration: 10, Func. Count: 122, Neg. LLF: 97.2261195410037
Iteration: 11, Func. Count: 133, Neg. LLF: 97.20653918501021
Iteration: 12, Func. Count: 144, Neg. LLF: 97.19704225296769
Iteration: 13, Func. Count: 155, Neg. LLF: 97.19255873705929
Iteration: 14, Func. Count: 166, Neg. LLF: 97.18982878186908
Iteration: 15, Func. Count: 177, Neg. LLF: 97.18820555162415
Iteration: 16, Func. Count: 188, Neg. LLF: 97.18598813166822
Iteration: 17, Func. Count: 199, Neg. LLF: 97.18492199989079
Iteration: 18, Func. Count: 210, Neg. LLF: 97.18454415665562
Iteration: 19, Func. Count: 221, Neg. LLF: 97.1844340606271
Iteration: 20, Func. Count: 232, Neg. LLF: 97.18441155587811
Iteration: 21, Func. Count: 243, Neg. LLF: 97.1844070616955
Iteration: 22, Func. Count: 254, Neg. LLF: 97.18440607953848
Optimization terminated successfully (Exit mode 0)
Current function value: 97.18440607953848
Iterations: 22
Function evaluations: 254
Gradient evaluations: 22
Iteration: 1, Func. Count: 13, Neg. LLF: 115.26648942240706
Iteration: 2, Func. Count: 30, Neg. LLF: 143.63172184920668
Iteration: 3, Func. Count: 43, Neg. LLF: 146.84241771589214
Iteration: 4, Func. Count: 56, Neg. LLF: 157.84098447071236
Iteration: 5, Func. Count: 70, Neg. LLF: 98.85444917762524
Iteration: 6, Func. Count: 82, Neg. LLF: 98.19812202428626
Iteration: 7, Func. Count: 94, Neg. LLF: 98.00113477250352
Iteration: 8, Func. Count: 106, Neg. LLF: 97.73706444614096
Iteration: 9, Func. Count: 118, Neg. LLF: 101.78698582759955
Iteration: 10, Func. Count: 132, Neg. LLF: 97.69200662834548
Iteration: 11, Func. Count: 145, Neg. LLF: 97.42993316503254
Iteration: 12, Func. Count: 157, Neg. LLF: 97.40214689617163
Iteration: 13, Func. Count: 169, Neg. LLF: 97.34119354888247
Iteration: 14, Func. Count: 181, Neg. LLF: 97.21283210829326
Iteration: 15, Func. Count: 193, Neg. LLF: 97.2000557375425
Iteration: 16, Func. Count: 205, Neg. LLF: 97.18654252495486
Iteration: 17, Func. Count: 217, Neg. LLF: 97.18577413888262
Iteration: 18, Func. Count: 229, Neg. LLF: 97.18527208853658
Iteration: 19, Func. Count: 241, Neg. LLF: 97.18474649498732
Iteration: 20, Func. Count: 253, Neg. LLF: 97.18460553694214
Iteration: 21, Func. Count: 265, Neg. LLF: 97.18452189169336
Iteration: 22, Func. Count: 277, Neg. LLF: 97.18446090904902
Iteration: 23, Func. Count: 289, Neg. LLF: 97.18441884014172
Iteration: 24, Func. Count: 301, Neg. LLF: 97.18440836774074
Iteration: 25, Func. Count: 313, Neg. LLF: 97.18440693349277
Iteration: 26, Func. Count: 324, Neg. LLF: 97.18440697638647
Optimization terminated successfully (Exit mode 0)
Current function value: 97.18440693349277
Iterations: 26
Function evaluations: 324
Gradient evaluations: 26
Iteration: 1, Func. Count: 10, Neg. LLF: 111.83882278964765
Iteration: 2, Func. Count: 21, Neg. LLF: 62619865.348280236
Iteration: 3, Func. Count: 31, Neg. LLF: 8465539.255026935
Iteration: 4, Func. Count: 41, Neg. LLF: 97.32279585987422
Iteration: 5, Func. Count: 50, Neg. LLF: 97.27162753056894
Iteration: 6, Func. Count: 59, Neg. LLF: 97.24340749825964
Iteration: 7, Func. Count: 68, Neg. LLF: 97.23933065331634
Iteration: 8, Func. Count: 77, Neg. LLF: 97.23669016436816
Iteration: 9, Func. Count: 86, Neg. LLF: 97.23339195580627
Iteration: 10, Func. Count: 95, Neg. LLF: 97.23336800921903
Iteration: 11, Func. Count: 103, Neg. LLF: 97.23336800923644
Optimization terminated successfully (Exit mode 0)
Current function value: 97.23336800921903
Iterations: 11
Function evaluations: 103
Gradient evaluations: 11
Iteration: 1, Func. Count: 11, Neg. LLF: 104.59089444211786
Iteration: 2, Func. Count: 25, Neg. LLF: 107.74524230555643
Iteration: 3, Func. Count: 36, Neg. LLF: 100.72807870896602
Iteration: 4, Func. Count: 47, Neg. LLF: 137.091927876565
Iteration: 5, Func. Count: 58, Neg. LLF: 98.72467574963268
Iteration: 6, Func. Count: 68, Neg. LLF: 98.69567417211633
Iteration: 7, Func. Count: 79, Neg. LLF: 97.51910513977671
Iteration: 8, Func. Count: 89, Neg. LLF: 97.46966667033807
Iteration: 9, Func. Count: 100, Neg. LLF: 97.26589507646523
Iteration: 10, Func. Count: 110, Neg. LLF: 97.24812983162559
Iteration: 11, Func. Count: 120, Neg. LLF: 97.24338661372349
Iteration: 12, Func. Count: 130, Neg. LLF: 97.24275239768427
Iteration: 13, Func. Count: 140, Neg. LLF: 97.24229161462279
Iteration: 14, Func. Count: 150, Neg. LLF: 97.24135575847669
Iteration: 15, Func. Count: 160, Neg. LLF: 97.23945053733742
Iteration: 16, Func. Count: 170, Neg. LLF: 97.23670078923189
Iteration: 17, Func. Count: 180, Neg. LLF: 97.2343681640917
Iteration: 18, Func. Count: 190, Neg. LLF: 97.23347086681055
Iteration: 19, Func. Count: 200, Neg. LLF: 97.2333715320072
Iteration: 20, Func. Count: 210, Neg. LLF: 97.23336768672203
Iteration: 21, Func. Count: 219, Neg. LLF: 97.233367704637
Optimization terminated successfully (Exit mode 0)
Current function value: 97.23336768672203
Iterations: 21
Function evaluations: 219
Gradient evaluations: 21
Iteration: 1, Func. Count: 12, Neg. LLF: 107.78378886655261
Iteration: 2, Func. Count: 28, Neg. LLF: 7411.866590914341
Iteration: 3, Func. Count: 40, Neg. LLF: 103.28066975186005
Iteration: 4, Func. Count: 52, Neg. LLF: 99.84946058506308
Iteration: 5, Func. Count: 64, Neg. LLF: 160.1588600733947
Iteration: 6, Func. Count: 77, Neg. LLF: 99.18989120981304
Iteration: 7, Func. Count: 89, Neg. LLF: 98.01422922476281
Iteration: 8, Func. Count: 100, Neg. LLF: 98.71118092410256
Iteration: 9, Func. Count: 112, Neg. LLF: 98.19544560465053
Iteration: 10, Func. Count: 124, Neg. LLF: 97.37158386246159
Iteration: 11, Func. Count: 135, Neg. LLF: 97.27353914482912
Iteration: 12, Func. Count: 146, Neg. LLF: 97.27124716477572
Iteration: 13, Func. Count: 158, Neg. LLF: 97.26104899074224
Iteration: 14, Func. Count: 169, Neg. LLF: 97.25844732367092
Iteration: 15, Func. Count: 180, Neg. LLF: 97.25604900538677
Iteration: 16, Func. Count: 191, Neg. LLF: 97.24925208275789
Iteration: 17, Func. Count: 202, Neg. LLF: 97.24166950145293
Iteration: 18, Func. Count: 213, Neg. LLF: 97.23551244150377
Iteration: 19, Func. Count: 224, Neg. LLF: 97.23353468473421
Iteration: 20, Func. Count: 235, Neg. LLF: 97.23337416970323
Iteration: 21, Func. Count: 246, Neg. LLF: 97.2333678450844
Iteration: 22, Func. Count: 256, Neg. LLF: 97.2333679483262
Optimization terminated successfully (Exit mode 0)
Current function value: 97.2333678450844
Iterations: 22
Function evaluations: 256
Gradient evaluations: 22
Iteration: 1, Func. Count: 13, Neg. LLF: 111.67793610828674
Iteration: 2, Func. Count: 30, Neg. LLF: 14799599.835274052
Iteration: 3, Func. Count: 43, Neg. LLF: 104.96165379030766
Iteration: 4, Func. Count: 56, Neg. LLF: 100.23249157091907
Iteration: 5, Func. Count: 69, Neg. LLF: 98.84346116980366
Iteration: 6, Func. Count: 82, Neg. LLF: 97.21993094661129
Iteration: 7, Func. Count: 95, Neg. LLF: 96.31075254484915
Iteration: 8, Func. Count: 107, Neg. LLF: 103.70719423523268
Iteration: 9, Func. Count: 120, Neg. LLF: 96.99149747831012
Iteration: 10, Func. Count: 134, Neg. LLF: 96.19393948632317
Iteration: 11, Func. Count: 147, Neg. LLF: 96.0723136519569
Iteration: 12, Func. Count: 159, Neg. LLF: 96.06691879904692
Iteration: 13, Func. Count: 171, Neg. LLF: 96.05879220614798
Iteration: 14, Func. Count: 183, Neg. LLF: 96.05665816897063
Iteration: 15, Func. Count: 195, Neg. LLF: 96.04922437434291
Iteration: 16, Func. Count: 207, Neg. LLF: 96.04576494396751
Iteration: 17, Func. Count: 219, Neg. LLF: 96.04339474542196
Iteration: 18, Func. Count: 231, Neg. LLF: 96.04314578992067
Iteration: 19, Func. Count: 243, Neg. LLF: 96.04312727922581
Iteration: 20, Func. Count: 255, Neg. LLF: 96.04312622044519
Iteration: 21, Func. Count: 266, Neg. LLF: 96.04312622043912
Optimization terminated successfully (Exit mode 0)
Current function value: 96.04312622044519
Iterations: 21
Function evaluations: 266
Gradient evaluations: 21
Iteration: 1, Func. Count: 14, Neg. LLF: 113.92454530609925
Iteration: 2, Func. Count: 32, Neg. LLF: 13891101.955270266
Iteration: 3, Func. Count: 46, Neg. LLF: 99.66097531225833
Iteration: 4, Func. Count: 60, Neg. LLF: 113.81037650974973
Iteration: 5, Func. Count: 74, Neg. LLF: 99.35779586849418
Iteration: 6, Func. Count: 88, Neg. LLF: 98.3735061451738
Iteration: 7, Func. Count: 102, Neg. LLF: 99.37576436360484
Iteration: 8, Func. Count: 116, Neg. LLF: 96.8021292202685
Iteration: 9, Func. Count: 130, Neg. LLF: 96.18989396630523
Iteration: 10, Func. Count: 143, Neg. LLF: 96.11294223162514
Iteration: 11, Func. Count: 156, Neg. LLF: 96.08695625175254
Iteration: 12, Func. Count: 169, Neg. LLF: 96.05852427810143
Iteration: 13, Func. Count: 182, Neg. LLF: 96.05180240876592
Iteration: 14, Func. Count: 195, Neg. LLF: 96.05037187127095
Iteration: 15, Func. Count: 208, Neg. LLF: 96.04888985845389
Iteration: 16, Func. Count: 221, Neg. LLF: 96.0451324281961
Iteration: 17, Func. Count: 234, Neg. LLF: 96.04357299608247
Iteration: 18, Func. Count: 247, Neg. LLF: 96.04315338627299
Iteration: 19, Func. Count: 260, Neg. LLF: 96.0431278326408
Iteration: 20, Func. Count: 273, Neg. LLF: 96.04312624272916
Iteration: 21, Func. Count: 285, Neg. LLF: 96.04312626295055
Optimization terminated successfully (Exit mode 0)
Current function value: 96.04312624272916
Iterations: 21
Function evaluations: 285
Gradient evaluations: 21
Iteration: 1, Func. Count: 11, Neg. LLF: 114.75024138799452
Iteration: 2, Func. Count: 23, Neg. LLF: 3797.5688003032337
Iteration: 3, Func. Count: 34, Neg. LLF: 8604976.581139171
Iteration: 4, Func. Count: 45, Neg. LLF: 97.33952939371946
Iteration: 5, Func. Count: 55, Neg. LLF: 97.26990839215111
Iteration: 6, Func. Count: 65, Neg. LLF: 97.2382216492983
Iteration: 7, Func. Count: 75, Neg. LLF: 97.23626470302206
Iteration: 8, Func. Count: 85, Neg. LLF: 97.23510498238254
Iteration: 9, Func. Count: 95, Neg. LLF: 97.23392791576862
Iteration: 10, Func. Count: 105, Neg. LLF: 97.23342481476188
Iteration: 11, Func. Count: 115, Neg. LLF: 97.23337021596068
Iteration: 12, Func. Count: 125, Neg. LLF: 97.23336758938582
Iteration: 13, Func. Count: 134, Neg. LLF: 97.23336761156234
Optimization terminated successfully (Exit mode 0)
Current function value: 97.23336758938582
Iterations: 13
Function evaluations: 134
Gradient evaluations: 13
Iteration: 1, Func. Count: 12, Neg. LLF: 105.07018491402646
Iteration: 2, Func. Count: 27, Neg. LLF: 107.44278114328199
Iteration: 3, Func. Count: 39, Neg. LLF: 102.36755879061825
Iteration: 4, Func. Count: 51, Neg. LLF: 107.64985908694358
Iteration: 5, Func. Count: 63, Neg. LLF: 100.55892355741882
Iteration: 6, Func. Count: 75, Neg. LLF: 98.62688432518713
Iteration: 7, Func. Count: 86, Neg. LLF: 107.9089211648345
Iteration: 8, Func. Count: 98, Neg. LLF: 97.89444243574602
Iteration: 9, Func. Count: 109, Neg. LLF: 97.78856835167738
Iteration: 10, Func. Count: 120, Neg. LLF: 97.37706949366594
Iteration: 11, Func. Count: 131, Neg. LLF: 97.24782593511677
Iteration: 12, Func. Count: 142, Neg. LLF: 97.24250965653025
Iteration: 13, Func. Count: 153, Neg. LLF: 97.23985230299992
Iteration: 14, Func. Count: 164, Neg. LLF: 97.23962396806776
Iteration: 15, Func. Count: 175, Neg. LLF: 97.2390494366494
Iteration: 16, Func. Count: 186, Neg. LLF: 97.23812319624366
Iteration: 17, Func. Count: 197, Neg. LLF: 97.23634583919782
Iteration: 18, Func. Count: 208, Neg. LLF: 97.23452229497113
Iteration: 19, Func. Count: 219, Neg. LLF: 97.23354758340723
Iteration: 20, Func. Count: 230, Neg. LLF: 97.2333769964747
Iteration: 21, Func. Count: 241, Neg. LLF: 97.23336785383437
Iteration: 22, Func. Count: 251, Neg. LLF: 97.23336787177745
Optimization terminated successfully (Exit mode 0)
Current function value: 97.23336785383437
Iterations: 22
Function evaluations: 251
Gradient evaluations: 22
Iteration: 1, Func. Count: 13, Neg. LLF: 107.96317460472156
Iteration: 2, Func. Count: 30, Neg. LLF: 1959.4227393683204
Iteration: 3, Func. Count: 43, Neg. LLF: 103.23533223894053
Iteration: 4, Func. Count: 56, Neg. LLF: 100.37851524431484
Iteration: 5, Func. Count: 69, Neg. LLF: 100.1594191348239
Iteration: 6, Func. Count: 82, Neg. LLF: 98.32057326874467
Iteration: 7, Func. Count: 95, Neg. LLF: 98.06979349703691
Iteration: 8, Func. Count: 108, Neg. LLF: 98.09260347071144
Iteration: 9, Func. Count: 121, Neg. LLF: 97.77923061566133
Iteration: 10, Func. Count: 133, Neg. LLF: 97.31686598557955
Iteration: 11, Func. Count: 145, Neg. LLF: 97.31359748128237
Iteration: 12, Func. Count: 158, Neg. LLF: 97.27196391252659
Iteration: 13, Func. Count: 170, Neg. LLF: 97.26385761282661
Iteration: 14, Func. Count: 182, Neg. LLF: 97.2534324657542
Iteration: 15, Func. Count: 194, Neg. LLF: 97.25269876372032
Iteration: 16, Func. Count: 206, Neg. LLF: 97.24896222013064
Iteration: 17, Func. Count: 218, Neg. LLF: 97.23727440006286
Iteration: 18, Func. Count: 230, Neg. LLF: 97.23343856111369
Iteration: 19, Func. Count: 242, Neg. LLF: 97.23336886949089
Iteration: 20, Func. Count: 254, Neg. LLF: 97.23336761978919
Iteration: 21, Func. Count: 265, Neg. LLF: 97.23336772298822
Optimization terminated successfully (Exit mode 0)
Current function value: 97.23336761978919
Iterations: 21
Function evaluations: 265
Gradient evaluations: 21
Iteration: 1, Func. Count: 14, Neg. LLF: 111.87431000953796
Iteration: 2, Func. Count: 32, Neg. LLF: 14817421.569849692
Iteration: 3, Func. Count: 46, Neg. LLF: 104.82703941983898
Iteration: 4, Func. Count: 60, Neg. LLF: 100.20431249232408
Iteration: 5, Func. Count: 74, Neg. LLF: 99.08347389688988
Iteration: 6, Func. Count: 88, Neg. LLF: 97.02989126261227
Iteration: 7, Func. Count: 101, Neg. LLF: 97.98419778764338
Iteration: 8, Func. Count: 115, Neg. LLF: 99.02601894315258
Iteration: 9, Func. Count: 129, Neg. LLF: 96.16742824915926
Iteration: 10, Func. Count: 142, Neg. LLF: 103.3070310672837
Iteration: 11, Func. Count: 156, Neg. LLF: 96.09826543852768
Iteration: 12, Func. Count: 169, Neg. LLF: 96.06668479043243
Iteration: 13, Func. Count: 182, Neg. LLF: 96.05962436009271
Iteration: 14, Func. Count: 195, Neg. LLF: 96.05701237514673
Iteration: 15, Func. Count: 208, Neg. LLF: 96.05286337677255
Iteration: 16, Func. Count: 221, Neg. LLF: 96.04889288194849
Iteration: 17, Func. Count: 234, Neg. LLF: 96.04447044961458
Iteration: 18, Func. Count: 247, Neg. LLF: 96.04325073318479
Iteration: 19, Func. Count: 260, Neg. LLF: 96.0431359225083
Iteration: 20, Func. Count: 273, Neg. LLF: 96.04312703098523
Iteration: 21, Func. Count: 286, Neg. LLF: 96.04312628369104
Optimization terminated successfully (Exit mode 0)
Current function value: 96.04312628369104
Iterations: 21
Function evaluations: 286
Gradient evaluations: 21
Iteration: 1, Func. Count: 15, Neg. LLF: 114.12166171701648
Iteration: 2, Func. Count: 34, Neg. LLF: 13883803.749265786
Iteration: 3, Func. Count: 49, Neg. LLF: 99.63672558501405
Iteration: 4, Func. Count: 64, Neg. LLF: 112.96483793810903
Iteration: 5, Func. Count: 79, Neg. LLF: 99.28096270168258
Iteration: 6, Func. Count: 94, Neg. LLF: 97.86554384140751
Iteration: 7, Func. Count: 109, Neg. LLF: 100.76913808669819
Iteration: 8, Func. Count: 124, Neg. LLF: 96.64513834407066
Iteration: 9, Func. Count: 138, Neg. LLF: 96.07498467368922
Iteration: 10, Func. Count: 152, Neg. LLF: 97.40189173580585
Iteration: 11, Func. Count: 168, Neg. LLF: 96.28599159146583
Iteration: 12, Func. Count: 183, Neg. LLF: 96.05404199000989
Iteration: 13, Func. Count: 197, Neg. LLF: 96.05216542812792
Iteration: 14, Func. Count: 211, Neg. LLF: 96.0500742818287
Iteration: 15, Func. Count: 225, Neg. LLF: 96.0464442139792
Iteration: 16, Func. Count: 239, Neg. LLF: 96.0440415993511
Iteration: 17, Func. Count: 253, Neg. LLF: 96.04322851555305
Iteration: 18, Func. Count: 267, Neg. LLF: 96.04313670871983
Iteration: 19, Func. Count: 281, Neg. LLF: 96.04312667909375
Iteration: 20, Func. Count: 294, Neg. LLF: 96.04312669929986
Optimization terminated successfully (Exit mode 0)
Current function value: 96.04312667909375
Iterations: 20
Function evaluations: 294
Gradient evaluations: 20
Iteration: 1, Func. Count: 8, Neg. LLF: 113.62013931647854
Iteration: 2, Func. Count: 17, Neg. LLF: 175.81489248751964
Iteration: 3, Func. Count: 25, Neg. LLF: 516.6060311052171
Iteration: 4, Func. Count: 33, Neg. LLF: 105.8442490506534
Iteration: 5, Func. Count: 41, Neg. LLF: 102.42925439353446
Iteration: 6, Func. Count: 49, Neg. LLF: 98.41411356809391
Iteration: 7, Func. Count: 56, Neg. LLF: 98.86483276487164
Iteration: 8, Func. Count: 64, Neg. LLF: 98.38896318599971
Iteration: 9, Func. Count: 72, Neg. LLF: 98.33929096321842
Iteration: 10, Func. Count: 79, Neg. LLF: 98.33452300972691
Iteration: 11, Func. Count: 86, Neg. LLF: 98.3342279380117
Iteration: 12, Func. Count: 93, Neg. LLF: 98.33422407003403
Iteration: 13, Func. Count: 99, Neg. LLF: 98.33422407001183
Optimization terminated successfully (Exit mode 0)
Current function value: 98.33422407003403
Iterations: 13
Function evaluations: 99
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 104.57325383740844
Iteration: 2, Func. Count: 21, Neg. LLF: 138.22981938885505
Iteration: 3, Func. Count: 30, Neg. LLF: 107.21348711124655
Iteration: 4, Func. Count: 39, Neg. LLF: 99.03224005979125
Iteration: 5, Func. Count: 47, Neg. LLF: 98.79242133238607
Iteration: 6, Func. Count: 56, Neg. LLF: 98.55009705894032
Iteration: 7, Func. Count: 64, Neg. LLF: 98.52552358748014
Iteration: 8, Func. Count: 72, Neg. LLF: 98.5165161159545
Iteration: 9, Func. Count: 80, Neg. LLF: 98.44971637290534
Iteration: 10, Func. Count: 88, Neg. LLF: 98.41703526437186
Iteration: 11, Func. Count: 96, Neg. LLF: 98.39641925210026
Iteration: 12, Func. Count: 104, Neg. LLF: 98.3941546027396
Iteration: 13, Func. Count: 113, Neg. LLF: 98.36242550298996
Iteration: 14, Func. Count: 121, Neg. LLF: 98.35456390940152
Iteration: 15, Func. Count: 129, Neg. LLF: 98.3502078468401
Iteration: 16, Func. Count: 137, Neg. LLF: 98.34849995933452
Iteration: 17, Func. Count: 145, Neg. LLF: 98.34502601771919
Iteration: 18, Func. Count: 153, Neg. LLF: 98.34358265863102
Iteration: 19, Func. Count: 161, Neg. LLF: 98.34230255893172
Iteration: 20, Func. Count: 169, Neg. LLF: 98.34052758054013
Iteration: 21, Func. Count: 177, Neg. LLF: 98.33784847770225
Iteration: 22, Func. Count: 185, Neg. LLF: 98.33542372606227
Iteration: 23, Func. Count: 193, Neg. LLF: 98.3343837027887
Iteration: 24, Func. Count: 201, Neg. LLF: 98.33423229881431
Iteration: 25, Func. Count: 209, Neg. LLF: 98.33422411051964
Iteration: 26, Func. Count: 216, Neg. LLF: 98.33422412987774
Optimization terminated successfully (Exit mode 0)
Current function value: 98.33422411051964
Iterations: 26
Function evaluations: 216
Gradient evaluations: 26
Iteration: 1, Func. Count: 10, Neg. LLF: 109.89773265454384
Iteration: 2, Func. Count: 23, Neg. LLF: 120.5387686797739
Iteration: 3, Func. Count: 33, Neg. LLF: 106.78452355419857
Iteration: 4, Func. Count: 43, Neg. LLF: 101.70268709744882
Iteration: 5, Func. Count: 53, Neg. LLF: 102.84666442114832
Iteration: 6, Func. Count: 63, Neg. LLF: 99.83078519752281
Iteration: 7, Func. Count: 73, Neg. LLF: 98.81464950847142
Iteration: 8, Func. Count: 82, Neg. LLF: 98.87211373643585
Iteration: 9, Func. Count: 92, Neg. LLF: 98.50850535445376
Iteration: 10, Func. Count: 101, Neg. LLF: 98.49847018981363
Iteration: 11, Func. Count: 110, Neg. LLF: 98.48904433600428
Iteration: 12, Func. Count: 119, Neg. LLF: 98.47914562507633
Iteration: 13, Func. Count: 128, Neg. LLF: 98.42476460682303
Iteration: 14, Func. Count: 137, Neg. LLF: 98.37936461173983
Iteration: 15, Func. Count: 146, Neg. LLF: 98.36541860286731
Iteration: 16, Func. Count: 155, Neg. LLF: 98.35648134953199
Iteration: 17, Func. Count: 164, Neg. LLF: 98.34668110329237
Iteration: 18, Func. Count: 173, Neg. LLF: 98.3414346967431
Iteration: 19, Func. Count: 182, Neg. LLF: 98.34048674380416
Iteration: 20, Func. Count: 191, Neg. LLF: 98.33991853312102
Iteration: 21, Func. Count: 200, Neg. LLF: 98.33827788195775
Iteration: 22, Func. Count: 209, Neg. LLF: 98.33630720003657
Iteration: 23, Func. Count: 218, Neg. LLF: 98.33475878047284
Iteration: 24, Func. Count: 227, Neg. LLF: 98.33429243845
Iteration: 25, Func. Count: 236, Neg. LLF: 98.33422751589812
Iteration: 26, Func. Count: 245, Neg. LLF: 98.33422409679653
Iteration: 27, Func. Count: 253, Neg. LLF: 98.33422413452386
Optimization terminated successfully (Exit mode 0)
Current function value: 98.33422409679653
Iterations: 27
Function evaluations: 253
Gradient evaluations: 27
Iteration: 1, Func. Count: 11, Neg. LLF: 113.34640475432872
Iteration: 2, Func. Count: 26, Neg. LLF: 146.1996333332517
Iteration: 3, Func. Count: 37, Neg. LLF: 107.66307612486932
Iteration: 4, Func. Count: 48, Neg. LLF: 98.71255508866038
Iteration: 5, Func. Count: 58, Neg. LLF: 98.07529407390015
Iteration: 6, Func. Count: 68, Neg. LLF: 116.0597485758501
Iteration: 7, Func. Count: 79, Neg. LLF: 99.98354516012346
Iteration: 8, Func. Count: 90, Neg. LLF: 97.81861278665694
Iteration: 9, Func. Count: 100, Neg. LLF: 98.07735956455835
Iteration: 10, Func. Count: 111, Neg. LLF: 97.69590694638178
Iteration: 11, Func. Count: 122, Neg. LLF: 97.5926971470805
Iteration: 12, Func. Count: 132, Neg. LLF: 97.53962105180634
Iteration: 13, Func. Count: 142, Neg. LLF: 97.50052228398685
Iteration: 14, Func. Count: 152, Neg. LLF: 97.42237660382202
Iteration: 15, Func. Count: 162, Neg. LLF: 97.41198918040952
Iteration: 16, Func. Count: 172, Neg. LLF: 97.41040672172306
Iteration: 17, Func. Count: 182, Neg. LLF: 97.41013460247375
Iteration: 18, Func. Count: 192, Neg. LLF: 97.41010192325756
Iteration: 19, Func. Count: 202, Neg. LLF: 97.41010004384754
Iteration: 20, Func. Count: 211, Neg. LLF: 97.41010004383863
Optimization terminated successfully (Exit mode 0)
Current function value: 97.41010004384754
Iterations: 20
Function evaluations: 211
Gradient evaluations: 20
Iteration: 1, Func. Count: 12, Neg. LLF: 115.3835251753553
Iteration: 2, Func. Count: 28, Neg. LLF: 147.09520515447343
Iteration: 3, Func. Count: 40, Neg. LLF: 144.5977993650024
Iteration: 4, Func. Count: 52, Neg. LLF: 99.01150438769207
Iteration: 5, Func. Count: 64, Neg. LLF: 99.22182173379096
Iteration: 6, Func. Count: 76, Neg. LLF: 98.58422010494637
Iteration: 7, Func. Count: 87, Neg. LLF: 98.1797262737146
Iteration: 8, Func. Count: 98, Neg. LLF: 98.16689026706798
Iteration: 9, Func. Count: 109, Neg. LLF: 98.16261922498047
Iteration: 10, Func. Count: 120, Neg. LLF: 98.16108941296562
Iteration: 11, Func. Count: 131, Neg. LLF: 98.15975502300662
Iteration: 12, Func. Count: 142, Neg. LLF: 98.15419028409755
Iteration: 13, Func. Count: 153, Neg. LLF: 98.15064069325668
Iteration: 14, Func. Count: 164, Neg. LLF: 98.11513523386307
Iteration: 15, Func. Count: 175, Neg. LLF: 97.79900210628092
Iteration: 16, Func. Count: 186, Neg. LLF: 97.52987164266646
Iteration: 17, Func. Count: 197, Neg. LLF: 98.98587383131047
Iteration: 18, Func. Count: 209, Neg. LLF: 97.52271633764367
Iteration: 19, Func. Count: 221, Neg. LLF: 97.49487136815675
Iteration: 20, Func. Count: 232, Neg. LLF: 97.47887560967553
Iteration: 21, Func. Count: 243, Neg. LLF: 97.47104087567917
Iteration: 22, Func. Count: 254, Neg. LLF: 97.45404882221327
Iteration: 23, Func. Count: 265, Neg. LLF: 97.44055180673006
Iteration: 24, Func. Count: 276, Neg. LLF: 97.43165846721459
Iteration: 25, Func. Count: 287, Neg. LLF: 97.42887023683258
Iteration: 26, Func. Count: 298, Neg. LLF: 97.41941282961461
Iteration: 27, Func. Count: 309, Neg. LLF: 97.41334266960371
Iteration: 28, Func. Count: 320, Neg. LLF: 97.41032174245836
Iteration: 29, Func. Count: 331, Neg. LLF: 97.41010737447178
Iteration: 30, Func. Count: 342, Neg. LLF: 97.41010024296926
Iteration: 31, Func. Count: 352, Neg. LLF: 97.41010028734634
Optimization terminated successfully (Exit mode 0)
Current function value: 97.41010024296926
Iterations: 31
Function evaluations: 352
Gradient evaluations: 31
Iteration: 1, Func. Count: 9, Neg. LLF: 113.49824640295716
Iteration: 2, Func. Count: 19, Neg. LLF: 191.47792925494446
Iteration: 3, Func. Count: 28, Neg. LLF: 1351.2606657897265
Iteration: 4, Func. Count: 37, Neg. LLF: 104.79438820075566
Iteration: 5, Func. Count: 46, Neg. LLF: 102.31689060803848
Iteration: 6, Func. Count: 55, Neg. LLF: 98.42416932356525
Iteration: 7, Func. Count: 63, Neg. LLF: 98.96062799270386
Iteration: 8, Func. Count: 72, Neg. LLF: 98.39281812093469
Iteration: 9, Func. Count: 81, Neg. LLF: 98.33933592670017
Iteration: 10, Func. Count: 89, Neg. LLF: 98.3344761874114
Iteration: 11, Func. Count: 97, Neg. LLF: 98.33422637356998
Iteration: 12, Func. Count: 105, Neg. LLF: 98.33422390855242
Iteration: 13, Func. Count: 112, Neg. LLF: 98.33422386929718
Optimization terminated successfully (Exit mode 0)
Current function value: 98.33422390855242
Iterations: 13
Function evaluations: 112
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 105.69365042934821
Iteration: 2, Func. Count: 23, Neg. LLF: 117.57182252549094
Iteration: 3, Func. Count: 33, Neg. LLF: 99.81270485667422
Iteration: 4, Func. Count: 43, Neg. LLF: 99.58621478437348
Iteration: 5, Func. Count: 53, Neg. LLF: 98.52839927767792
Iteration: 6, Func. Count: 62, Neg. LLF: 98.53323473479097
Iteration: 7, Func. Count: 72, Neg. LLF: 98.48772947042896
Iteration: 8, Func. Count: 81, Neg. LLF: 98.42349186668942
Iteration: 9, Func. Count: 90, Neg. LLF: 98.52293283693764
Iteration: 10, Func. Count: 100, Neg. LLF: 98.36732852711904
Iteration: 11, Func. Count: 109, Neg. LLF: 98.3546324408257
Iteration: 12, Func. Count: 118, Neg. LLF: 98.35078939003637
Iteration: 13, Func. Count: 127, Neg. LLF: 98.34923242743432
Iteration: 14, Func. Count: 136, Neg. LLF: 98.34783626906024
Iteration: 15, Func. Count: 145, Neg. LLF: 98.34615361735037
Iteration: 16, Func. Count: 154, Neg. LLF: 98.34304896798868
Iteration: 17, Func. Count: 163, Neg. LLF: 98.33880741205382
Iteration: 18, Func. Count: 172, Neg. LLF: 98.33546218688384
Iteration: 19, Func. Count: 181, Neg. LLF: 98.33437031754286
Iteration: 20, Func. Count: 190, Neg. LLF: 98.33423168510953
Iteration: 21, Func. Count: 199, Neg. LLF: 98.33422413648981
Iteration: 22, Func. Count: 207, Neg. LLF: 98.33422415575991
Optimization terminated successfully (Exit mode 0)
Current function value: 98.33422413648981
Iterations: 22
Function evaluations: 207
Gradient evaluations: 22
Iteration: 1, Func. Count: 11, Neg. LLF: 109.77461965387164
Iteration: 2, Func. Count: 25, Neg. LLF: 120.52346339833007
Iteration: 3, Func. Count: 36, Neg. LLF: 102.16525271751446
Iteration: 4, Func. Count: 47, Neg. LLF: 104.35597485839716
Iteration: 5, Func. Count: 58, Neg. LLF: 107.25489620289108
Iteration: 6, Func. Count: 69, Neg. LLF: 98.97032015641395
Iteration: 7, Func. Count: 80, Neg. LLF: 98.72224563595793
Iteration: 8, Func. Count: 91, Neg. LLF: 98.49628501660067
Iteration: 9, Func. Count: 101, Neg. LLF: 98.50725215644746
Iteration: 10, Func. Count: 112, Neg. LLF: 98.48767861869283
Iteration: 11, Func. Count: 122, Neg. LLF: 98.47966903773282
Iteration: 12, Func. Count: 132, Neg. LLF: 98.4505634549509
Iteration: 13, Func. Count: 142, Neg. LLF: 98.40648299657629
Iteration: 14, Func. Count: 152, Neg. LLF: 98.37330146811261
Iteration: 15, Func. Count: 162, Neg. LLF: 98.36151341513158
Iteration: 16, Func. Count: 172, Neg. LLF: 98.35265453616388
Iteration: 17, Func. Count: 182, Neg. LLF: 98.33805597549502
Iteration: 18, Func. Count: 192, Neg. LLF: 98.33504769064282
Iteration: 19, Func. Count: 202, Neg. LLF: 98.33483479698702
Iteration: 20, Func. Count: 212, Neg. LLF: 98.3347589653882
Iteration: 21, Func. Count: 222, Neg. LLF: 98.33456509042881
Iteration: 22, Func. Count: 232, Neg. LLF: 98.33440686785468
Iteration: 23, Func. Count: 242, Neg. LLF: 98.33427608866283
Iteration: 24, Func. Count: 252, Neg. LLF: 98.33423078454419
Iteration: 25, Func. Count: 262, Neg. LLF: 98.3342241729708
Iteration: 26, Func. Count: 271, Neg. LLF: 98.33422421066112
Optimization terminated successfully (Exit mode 0)
Current function value: 98.3342241729708
Iterations: 26
Function evaluations: 271
Gradient evaluations: 26
Iteration: 1, Func. Count: 12, Neg. LLF: 113.21255089596954
Iteration: 2, Func. Count: 28, Neg. LLF: 123.95538758675515
Iteration: 3, Func. Count: 40, Neg. LLF: 111.30744428177562
Iteration: 4, Func. Count: 52, Neg. LLF: 98.85706951017553
Iteration: 5, Func. Count: 63, Neg. LLF: 97.45618328013812
Iteration: 6, Func. Count: 74, Neg. LLF: 115.62561057087653
Iteration: 7, Func. Count: 87, Neg. LLF: 97.71867159893455
Iteration: 8, Func. Count: 99, Neg. LLF: 98.03120156145603
Iteration: 9, Func. Count: 111, Neg. LLF: 97.28190793722939
Iteration: 10, Func. Count: 122, Neg. LLF: 97.23326735071204
Iteration: 11, Func. Count: 133, Neg. LLF: 97.20926074482759
Iteration: 12, Func. Count: 144, Neg. LLF: 97.19251419132517
Iteration: 13, Func. Count: 155, Neg. LLF: 97.19025180176021
Iteration: 14, Func. Count: 166, Neg. LLF: 97.18904503285174
Iteration: 15, Func. Count: 177, Neg. LLF: 97.1858318430161
Iteration: 16, Func. Count: 188, Neg. LLF: 97.18505342653533
Iteration: 17, Func. Count: 199, Neg. LLF: 97.18461068869505
Iteration: 18, Func. Count: 210, Neg. LLF: 97.18444039482608
Iteration: 19, Func. Count: 221, Neg. LLF: 97.18441159949198
Iteration: 20, Func. Count: 232, Neg. LLF: 97.18440707920071
Iteration: 21, Func. Count: 243, Neg. LLF: 97.18440606834352
Iteration: 22, Func. Count: 253, Neg. LLF: 97.18440606828798
Optimization terminated successfully (Exit mode 0)
Current function value: 97.18440606834352
Iterations: 22
Function evaluations: 253
Gradient evaluations: 22
Iteration: 1, Func. Count: 13, Neg. LLF: 115.30941416184776
Iteration: 2, Func. Count: 30, Neg. LLF: 145.03624607072584
Iteration: 3, Func. Count: 43, Neg. LLF: 156.549696248905
Iteration: 4, Func. Count: 56, Neg. LLF: 149.706534569674
Iteration: 5, Func. Count: 70, Neg. LLF: 98.80196391895275
Iteration: 6, Func. Count: 82, Neg. LLF: 98.21154904410875
Iteration: 7, Func. Count: 94, Neg. LLF: 97.99950868687917
Iteration: 8, Func. Count: 106, Neg. LLF: 97.6978579152062
Iteration: 9, Func. Count: 118, Neg. LLF: 98.34296947758857
Iteration: 10, Func. Count: 132, Neg. LLF: 98.09289406191519
Iteration: 11, Func. Count: 145, Neg. LLF: 97.43481156635639
Iteration: 12, Func. Count: 157, Neg. LLF: 97.41432495097972
Iteration: 13, Func. Count: 169, Neg. LLF: 97.3672030938626
Iteration: 14, Func. Count: 181, Neg. LLF: 97.24944829529562
Iteration: 15, Func. Count: 193, Neg. LLF: 97.1966787477762
Iteration: 16, Func. Count: 205, Neg. LLF: 97.18982442768883
Iteration: 17, Func. Count: 217, Neg. LLF: 97.18729700538232
Iteration: 18, Func. Count: 229, Neg. LLF: 97.18598916936301
Iteration: 19, Func. Count: 241, Neg. LLF: 97.18550955002868
Iteration: 20, Func. Count: 253, Neg. LLF: 97.1848936743068
Iteration: 21, Func. Count: 265, Neg. LLF: 97.1845528993233
Iteration: 22, Func. Count: 277, Neg. LLF: 97.18445152925565
Iteration: 23, Func. Count: 289, Neg. LLF: 97.18443080997162
Iteration: 24, Func. Count: 301, Neg. LLF: 97.1844177664878
Iteration: 25, Func. Count: 313, Neg. LLF: 97.18440870345624
Iteration: 26, Func. Count: 325, Neg. LLF: 97.1844061972338
Iteration: 27, Func. Count: 336, Neg. LLF: 97.18440624033009
Optimization terminated successfully (Exit mode 0)
Current function value: 97.1844061972338
Iterations: 27
Function evaluations: 336
Gradient evaluations: 27
Iteration: 1, Func. Count: 10, Neg. LLF: 113.52927911651504
Iteration: 2, Func. Count: 21, Neg. LLF: 184.3565174656128
Iteration: 3, Func. Count: 31, Neg. LLF: 8886.66651694293
Iteration: 4, Func. Count: 41, Neg. LLF: 105.04894520227714
Iteration: 5, Func. Count: 51, Neg. LLF: 102.3183895246273
Iteration: 6, Func. Count: 61, Neg. LLF: 98.44184271163553
Iteration: 7, Func. Count: 70, Neg. LLF: 99.31602602244466
Iteration: 8, Func. Count: 80, Neg. LLF: 98.40559555952018
Iteration: 9, Func. Count: 90, Neg. LLF: 98.33964821666923
Iteration: 10, Func. Count: 99, Neg. LLF: 98.33448915054242
Iteration: 11, Func. Count: 108, Neg. LLF: 98.33424031908791
Iteration: 12, Func. Count: 117, Neg. LLF: 98.3342281162078
Iteration: 13, Func. Count: 126, Neg. LLF: 98.33422387928185
Iteration: 14, Func. Count: 134, Neg. LLF: 98.3342237875083
Optimization terminated successfully (Exit mode 0)
Current function value: 98.33422387928185
Iterations: 14
Function evaluations: 134
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 105.36036491779458
Iteration: 2, Func. Count: 25, Neg. LLF: 116.05972556720275
Iteration: 3, Func. Count: 36, Neg. LLF: 100.04188327993039
Iteration: 4, Func. Count: 47, Neg. LLF: 99.42561550689088
Iteration: 5, Func. Count: 58, Neg. LLF: 98.62633485412483
Iteration: 6, Func. Count: 68, Neg. LLF: 98.52383880640366
Iteration: 7, Func. Count: 78, Neg. LLF: 98.49326861920886
Iteration: 8, Func. Count: 88, Neg. LLF: 98.46348023880581
Iteration: 9, Func. Count: 98, Neg. LLF: 98.4666860865204
Iteration: 10, Func. Count: 109, Neg. LLF: 98.41418981687585
Iteration: 11, Func. Count: 119, Neg. LLF: 98.40444888973187
Iteration: 12, Func. Count: 129, Neg. LLF: 98.36254161770154
Iteration: 13, Func. Count: 139, Neg. LLF: 98.35514508713634
Iteration: 14, Func. Count: 149, Neg. LLF: 98.35047253536882
Iteration: 15, Func. Count: 159, Neg. LLF: 98.34864181931647
Iteration: 16, Func. Count: 169, Neg. LLF: 98.34739075332347
Iteration: 17, Func. Count: 179, Neg. LLF: 98.34603178998968
Iteration: 18, Func. Count: 189, Neg. LLF: 98.34331486841388
Iteration: 19, Func. Count: 199, Neg. LLF: 98.33953496838238
Iteration: 20, Func. Count: 209, Neg. LLF: 98.336110785491
Iteration: 21, Func. Count: 219, Neg. LLF: 98.33465855126452
Iteration: 22, Func. Count: 229, Neg. LLF: 98.33429200488887
Iteration: 23, Func. Count: 239, Neg. LLF: 98.33423255537842
Iteration: 24, Func. Count: 249, Neg. LLF: 98.33422494704946
Iteration: 25, Func. Count: 259, Neg. LLF: 98.33422391734524
Iteration: 26, Func. Count: 268, Neg. LLF: 98.33422393662222
Optimization terminated successfully (Exit mode 0)
Current function value: 98.33422391734524
Iterations: 26
Function evaluations: 268
Gradient evaluations: 26
Iteration: 1, Func. Count: 12, Neg. LLF: 109.95509176322058
Iteration: 2, Func. Count: 27, Neg. LLF: 116.83247686197628
Iteration: 3, Func. Count: 39, Neg. LLF: 102.50718151811881
Iteration: 4, Func. Count: 51, Neg. LLF: 103.98453237176116
Iteration: 5, Func. Count: 63, Neg. LLF: 108.72958379030514
Iteration: 6, Func. Count: 75, Neg. LLF: 99.22765464827071
Iteration: 7, Func. Count: 87, Neg. LLF: 98.56186801847215
Iteration: 8, Func. Count: 98, Neg. LLF: 99.30082906648774
Iteration: 9, Func. Count: 111, Neg. LLF: 98.50054099146986
Iteration: 10, Func. Count: 122, Neg. LLF: 98.49420728645747
Iteration: 11, Func. Count: 133, Neg. LLF: 98.48566215310535
Iteration: 12, Func. Count: 144, Neg. LLF: 98.47730151611826
Iteration: 13, Func. Count: 155, Neg. LLF: 98.44988651238951
Iteration: 14, Func. Count: 166, Neg. LLF: 98.37038213654246
Iteration: 15, Func. Count: 177, Neg. LLF: 98.35901663207532
Iteration: 16, Func. Count: 188, Neg. LLF: 98.35170563795965
Iteration: 17, Func. Count: 199, Neg. LLF: 98.34679325649553
Iteration: 18, Func. Count: 210, Neg. LLF: 98.33868796693145
Iteration: 19, Func. Count: 221, Neg. LLF: 98.33507176237407
Iteration: 20, Func. Count: 232, Neg. LLF: 98.33462265655231
Iteration: 21, Func. Count: 243, Neg. LLF: 98.33457731344018
Iteration: 22, Func. Count: 254, Neg. LLF: 98.33452149373844
Iteration: 23, Func. Count: 265, Neg. LLF: 98.3344411739237
Iteration: 24, Func. Count: 276, Neg. LLF: 98.33433170409789
Iteration: 25, Func. Count: 287, Neg. LLF: 98.33425280689796
Iteration: 26, Func. Count: 298, Neg. LLF: 98.33422720702525
Iteration: 27, Func. Count: 309, Neg. LLF: 98.33422399138276
Iteration: 28, Func. Count: 319, Neg. LLF: 98.33422402907678
Optimization terminated successfully (Exit mode 0)
Current function value: 98.33422399138276
Iterations: 28
Function evaluations: 319
Gradient evaluations: 28
Iteration: 1, Func. Count: 13, Neg. LLF: 113.3813702553725
Iteration: 2, Func. Count: 30, Neg. LLF: 122.6454813225834
Iteration: 3, Func. Count: 43, Neg. LLF: 110.7617060185902
Iteration: 4, Func. Count: 56, Neg. LLF: 98.86224073214576
Iteration: 5, Func. Count: 68, Neg. LLF: 97.44307373714565
Iteration: 6, Func. Count: 80, Neg. LLF: 110.43828484362896
Iteration: 7, Func. Count: 94, Neg. LLF: 97.5217469259613
Iteration: 8, Func. Count: 107, Neg. LLF: 97.9710152566946
Iteration: 9, Func. Count: 120, Neg. LLF: 97.25296906302277
Iteration: 10, Func. Count: 132, Neg. LLF: 97.22298525800018
Iteration: 11, Func. Count: 144, Neg. LLF: 97.19260971080132
Iteration: 12, Func. Count: 156, Neg. LLF: 97.19015075373304
Iteration: 13, Func. Count: 168, Neg. LLF: 97.18876642614896
Iteration: 14, Func. Count: 180, Neg. LLF: 97.18704151777766
Iteration: 15, Func. Count: 192, Neg. LLF: 97.18549511224953
Iteration: 16, Func. Count: 204, Neg. LLF: 97.18470611383364
Iteration: 17, Func. Count: 216, Neg. LLF: 97.18445993486516
Iteration: 18, Func. Count: 228, Neg. LLF: 97.18441177064429
Iteration: 19, Func. Count: 240, Neg. LLF: 97.18440713832
Iteration: 20, Func. Count: 252, Neg. LLF: 97.18440627265261
Optimization terminated successfully (Exit mode 0)
Current function value: 97.18440627265261
Iterations: 20
Function evaluations: 252
Gradient evaluations: 20
Iteration: 1, Func. Count: 14, Neg. LLF: 115.26377333091675
Iteration: 2, Func. Count: 32, Neg. LLF: 143.14534065509227
Iteration: 3, Func. Count: 46, Neg. LLF: 151.95500859964568
Iteration: 4, Func. Count: 60, Neg. LLF: 153.79743731426487
Iteration: 5, Func. Count: 75, Neg. LLF: 98.86530026605297
Iteration: 6, Func. Count: 88, Neg. LLF: 98.28054136967971
Iteration: 7, Func. Count: 101, Neg. LLF: 98.00306947569001
Iteration: 8, Func. Count: 114, Neg. LLF: 97.9817129230154
Iteration: 9, Func. Count: 128, Neg. LLF: 97.50175759971297
Iteration: 10, Func. Count: 141, Neg. LLF: 97.46268861106063
Iteration: 11, Func. Count: 154, Neg. LLF: 100.62809595979533
Iteration: 12, Func. Count: 169, Neg. LLF: 97.32730673789601
Iteration: 13, Func. Count: 182, Neg. LLF: 97.2268612680487
Iteration: 14, Func. Count: 195, Neg. LLF: 97.20113158226579
Iteration: 15, Func. Count: 208, Neg. LLF: 97.19240125151998
Iteration: 16, Func. Count: 221, Neg. LLF: 97.18991272052706
Iteration: 17, Func. Count: 234, Neg. LLF: 97.1870758478417
Iteration: 18, Func. Count: 247, Neg. LLF: 97.18544585681498
Iteration: 19, Func. Count: 260, Neg. LLF: 97.18461562690632
Iteration: 20, Func. Count: 273, Neg. LLF: 97.1844517074153
Iteration: 21, Func. Count: 286, Neg. LLF: 97.18442346888932
Iteration: 22, Func. Count: 299, Neg. LLF: 97.18441418562368
Iteration: 23, Func. Count: 312, Neg. LLF: 97.18440838338181
Iteration: 24, Func. Count: 325, Neg. LLF: 97.18440623477345
Iteration: 25, Func. Count: 337, Neg. LLF: 97.18440627778254
Optimization terminated successfully (Exit mode 0)
Current function value: 97.18440623477345
Iterations: 25
Function evaluations: 337
Gradient evaluations: 25
Iteration: 1, Func. Count: 11, Neg. LLF: 113.77665663733406
Iteration: 2, Func. Count: 23, Neg. LLF: 965.379271383791
Iteration: 3, Func. Count: 34, Neg. LLF: 8445313.15878676
Iteration: 4, Func. Count: 45, Neg. LLF: 97.28418039029083
Iteration: 5, Func. Count: 55, Neg. LLF: 258.55028139435876
Iteration: 6, Func. Count: 67, Neg. LLF: 97.30951917743381
Iteration: 7, Func. Count: 78, Neg. LLF: 97.2022579625896
Iteration: 8, Func. Count: 88, Neg. LLF: 97.2009625259795
Iteration: 9, Func. Count: 98, Neg. LLF: 97.20077326092274
Iteration: 10, Func. Count: 108, Neg. LLF: 97.20070865658626
Iteration: 11, Func. Count: 118, Neg. LLF: 97.20068306242347
Iteration: 12, Func. Count: 128, Neg. LLF: 97.20065980771302
Iteration: 13, Func. Count: 138, Neg. LLF: 97.20065903327612
Optimization terminated successfully (Exit mode 0)
Current function value: 97.20065903327612
Iterations: 13
Function evaluations: 138
Gradient evaluations: 13
Iteration: 1, Func. Count: 12, Neg. LLF: 104.93288228526116
Iteration: 2, Func. Count: 27, Neg. LLF: 107.52163062363371
Iteration: 3, Func. Count: 39, Neg. LLF: 102.63230772952019
Iteration: 4, Func. Count: 51, Neg. LLF: 105.27144370545527
Iteration: 5, Func. Count: 63, Neg. LLF: 100.38669041528883
Iteration: 6, Func. Count: 75, Neg. LLF: 98.59758328029673
Iteration: 7, Func. Count: 87, Neg. LLF: 107.65597889111547
Iteration: 8, Func. Count: 99, Neg. LLF: 97.8013252012625
Iteration: 9, Func. Count: 110, Neg. LLF: 97.77492358189642
Iteration: 10, Func. Count: 122, Neg. LLF: 97.62665219584532
Iteration: 11, Func. Count: 134, Neg. LLF: 97.24362864258926
Iteration: 12, Func. Count: 145, Neg. LLF: 97.23793182321185
Iteration: 13, Func. Count: 157, Neg. LLF: 97.20528623969032
Iteration: 14, Func. Count: 168, Neg. LLF: 97.20497387199416
Iteration: 15, Func. Count: 179, Neg. LLF: 97.20459457028372
Iteration: 16, Func. Count: 190, Neg. LLF: 97.20440491330416
Iteration: 17, Func. Count: 201, Neg. LLF: 97.20332493558374
Iteration: 18, Func. Count: 212, Neg. LLF: 97.20190205764186
Iteration: 19, Func. Count: 223, Neg. LLF: 97.20096634627373
Iteration: 20, Func. Count: 234, Neg. LLF: 97.20069121339375
Iteration: 21, Func. Count: 245, Neg. LLF: 97.20066038622092
Iteration: 22, Func. Count: 256, Neg. LLF: 97.20065901846986
Iteration: 23, Func. Count: 266, Neg. LLF: 97.20065905789905
Optimization terminated successfully (Exit mode 0)
Current function value: 97.20065901846986
Iterations: 23
Function evaluations: 266
Gradient evaluations: 23
Iteration: 1, Func. Count: 13, Neg. LLF: 107.77174542900177
Iteration: 2, Func. Count: 30, Neg. LLF: 1917.0235983524262
Iteration: 3, Func. Count: 43, Neg. LLF: 102.991249054885
Iteration: 4, Func. Count: 56, Neg. LLF: 100.35931783803453
Iteration: 5, Func. Count: 69, Neg. LLF: 100.04440304600642
Iteration: 6, Func. Count: 82, Neg. LLF: 98.23375953641087
Iteration: 7, Func. Count: 94, Neg. LLF: 98.97698754279503
Iteration: 8, Func. Count: 107, Neg. LLF: 99.89995624129217
Iteration: 9, Func. Count: 120, Neg. LLF: 97.48948018285331
Iteration: 10, Func. Count: 132, Neg. LLF: 97.29452527652764
Iteration: 11, Func. Count: 144, Neg. LLF: 97.23977365189201
Iteration: 12, Func. Count: 156, Neg. LLF: 97.2267478799729
Iteration: 13, Func. Count: 168, Neg. LLF: 97.22369269087297
Iteration: 14, Func. Count: 180, Neg. LLF: 97.22108966328162
Iteration: 15, Func. Count: 192, Neg. LLF: 97.21941166134162
Iteration: 16, Func. Count: 204, Neg. LLF: 97.21709747455814
Iteration: 17, Func. Count: 216, Neg. LLF: 97.2132500659426
Iteration: 18, Func. Count: 228, Neg. LLF: 97.20809372727793
Iteration: 19, Func. Count: 240, Neg. LLF: 97.20330091309168
Iteration: 20, Func. Count: 252, Neg. LLF: 97.20091354071387
Iteration: 21, Func. Count: 264, Neg. LLF: 97.20067612250422
Iteration: 22, Func. Count: 276, Neg. LLF: 97.20065975154039
Iteration: 23, Func. Count: 288, Neg. LLF: 97.20065900024358
Optimization terminated successfully (Exit mode 0)
Current function value: 97.20065900024358
Iterations: 23
Function evaluations: 288
Gradient evaluations: 23
Iteration: 1, Func. Count: 14, Neg. LLF: 111.59294573094193
Iteration: 2, Func. Count: 32, Neg. LLF: 14868334.04904906
Iteration: 3, Func. Count: 46, Neg. LLF: 104.4690894115002
Iteration: 4, Func. Count: 60, Neg. LLF: 100.32667486245312
Iteration: 5, Func. Count: 74, Neg. LLF: 98.97247755258248
Iteration: 6, Func. Count: 88, Neg. LLF: 97.117679049816
Iteration: 7, Func. Count: 101, Neg. LLF: 98.25541361049085
Iteration: 8, Func. Count: 115, Neg. LLF: 99.19823895783368
Iteration: 9, Func. Count: 129, Neg. LLF: 96.16065616610183
Iteration: 10, Func. Count: 142, Neg. LLF: 98.96898912788957
Iteration: 11, Func. Count: 157, Neg. LLF: 96.07835127506063
Iteration: 12, Func. Count: 170, Neg. LLF: 96.06611967458336
Iteration: 13, Func. Count: 183, Neg. LLF: 96.98792927216046
Iteration: 14, Func. Count: 198, Neg. LLF: 96.05539485043322
Iteration: 15, Func. Count: 211, Neg. LLF: 96.05300983828991
Iteration: 16, Func. Count: 224, Neg. LLF: 96.04970537640867
Iteration: 17, Func. Count: 237, Neg. LLF: 96.04307646206948
Iteration: 18, Func. Count: 250, Neg. LLF: 96.04076540998297
Iteration: 19, Func. Count: 263, Neg. LLF: 96.04019006355702
Iteration: 20, Func. Count: 276, Neg. LLF: 96.04012490355137
Iteration: 21, Func. Count: 289, Neg. LLF: 96.04011763965121
Iteration: 22, Func. Count: 302, Neg. LLF: 96.04011639394757
Iteration: 23, Func. Count: 314, Neg. LLF: 96.04011639392243
Optimization terminated successfully (Exit mode 0)
Current function value: 96.04011639394757
Iterations: 23
Function evaluations: 314
Gradient evaluations: 23
Iteration: 1, Func. Count: 15, Neg. LLF: 113.91283015791268
Iteration: 2, Func. Count: 34, Neg. LLF: 13907949.664665947
Iteration: 3, Func. Count: 49, Neg. LLF: 99.60725210174508
Iteration: 4, Func. Count: 64, Neg. LLF: 113.21425096509253
Iteration: 5, Func. Count: 79, Neg. LLF: 99.39673527355484
Iteration: 6, Func. Count: 94, Neg. LLF: 97.49848848464688
Iteration: 7, Func. Count: 109, Neg. LLF: 99.86073692522112
Iteration: 8, Func. Count: 124, Neg. LLF: 97.03438187284051
Iteration: 9, Func. Count: 139, Neg. LLF: 96.14847510675102
Iteration: 10, Func. Count: 153, Neg. LLF: 96.51040403854483
Iteration: 11, Func. Count: 168, Neg. LLF: 96.68948938326312
Iteration: 12, Func. Count: 183, Neg. LLF: 96.06641712049175
Iteration: 13, Func. Count: 197, Neg. LLF: 96.08135624825036
Iteration: 14, Func. Count: 212, Neg. LLF: 96.0514895143184
Iteration: 15, Func. Count: 226, Neg. LLF: 96.0496308405889
Iteration: 16, Func. Count: 240, Neg. LLF: 96.04652827605335
Iteration: 17, Func. Count: 254, Neg. LLF: 96.04310586214862
Iteration: 18, Func. Count: 268, Neg. LLF: 96.04057742898836
Iteration: 19, Func. Count: 282, Neg. LLF: 96.04015188578319
Iteration: 20, Func. Count: 296, Neg. LLF: 96.04011810527881
Iteration: 21, Func. Count: 310, Neg. LLF: 96.040116155937
Iteration: 22, Func. Count: 323, Neg. LLF: 96.04011617986163
Optimization terminated successfully (Exit mode 0)
Current function value: 96.040116155937
Iterations: 22
Function evaluations: 323
Gradient evaluations: 22
Iteration: 1, Func. Count: 12, Neg. LLF: 113.57857541833333
Iteration: 2, Func. Count: 25, Neg. LLF: 4614259.625582332
Iteration: 3, Func. Count: 37, Neg. LLF: 4681628.196639439
Iteration: 4, Func. Count: 49, Neg. LLF: 97.3996067550248
Iteration: 5, Func. Count: 60, Neg. LLF: 144.33064324906059
Iteration: 6, Func. Count: 73, Neg. LLF: 107.58460356899937
Iteration: 7, Func. Count: 88, Neg. LLF: 98.22719699623094
Iteration: 8, Func. Count: 100, Neg. LLF: 96.91060663385761
Iteration: 9, Func. Count: 111, Neg. LLF: 96.91202454876338
Iteration: 10, Func. Count: 123, Neg. LLF: 96.90521239316791
Iteration: 11, Func. Count: 134, Neg. LLF: 96.9048475124302
Iteration: 12, Func. Count: 145, Neg. LLF: 96.90475048698896
Iteration: 13, Func. Count: 156, Neg. LLF: 96.90474642053607
Iteration: 14, Func. Count: 167, Neg. LLF: 96.90474461456856
Iteration: 15, Func. Count: 178, Neg. LLF: 96.90474240494356
Iteration: 16, Func. Count: 188, Neg. LLF: 96.90474240489539
Optimization terminated successfully (Exit mode 0)
Current function value: 96.90474240494356
Iterations: 16
Function evaluations: 188
Gradient evaluations: 16
Iteration: 1, Func. Count: 13, Neg. LLF: 106.24084473506741
Iteration: 2, Func. Count: 29, Neg. LLF: 109.38288108140796
Iteration: 3, Func. Count: 42, Neg. LLF: 169.04475937267384
Iteration: 4, Func. Count: 55, Neg. LLF: 97.1877333955578
Iteration: 5, Func. Count: 67, Neg. LLF: 97.10559298077511
Iteration: 6, Func. Count: 79, Neg. LLF: 97.37799512640825
Iteration: 7, Func. Count: 93, Neg. LLF: 97.04632979167216
Iteration: 8, Func. Count: 105, Neg. LLF: 97.04079844956703
Iteration: 9, Func. Count: 117, Neg. LLF: 97.03771252688672
Iteration: 10, Func. Count: 129, Neg. LLF: 97.03229385973879
Iteration: 11, Func. Count: 141, Neg. LLF: 97.02409247306556
Iteration: 12, Func. Count: 153, Neg. LLF: 97.01804931475601
Iteration: 13, Func. Count: 165, Neg. LLF: 97.0162941172358
Iteration: 14, Func. Count: 177, Neg. LLF: 97.0161250640668
Iteration: 15, Func. Count: 189, Neg. LLF: 97.01611742511578
Iteration: 16, Func. Count: 200, Neg. LLF: 97.01611742888272
Optimization terminated successfully (Exit mode 0)
Current function value: 97.01611742511578
Iterations: 16
Function evaluations: 200
Gradient evaluations: 16
Iteration: 1, Func. Count: 14, Neg. LLF: 108.26815862236838
Iteration: 2, Func. Count: 31, Neg. LLF: 182.67516072675764
Iteration: 3, Func. Count: 45, Neg. LLF: 100.74618935631285
Iteration: 4, Func. Count: 59, Neg. LLF: 124.5763320312105
Iteration: 5, Func. Count: 73, Neg. LLF: 127.97058154392911
Iteration: 6, Func. Count: 87, Neg. LLF: 98.55234554567164
Iteration: 7, Func. Count: 101, Neg. LLF: 97.52686008828013
Iteration: 8, Func. Count: 115, Neg. LLF: 97.21764251634106
Iteration: 9, Func. Count: 128, Neg. LLF: 97.38165281004797
Iteration: 10, Func. Count: 142, Neg. LLF: 97.12538196116084
Iteration: 11, Func. Count: 155, Neg. LLF: 97.076051855152
Iteration: 12, Func. Count: 168, Neg. LLF: 96.98307326594734
Iteration: 13, Func. Count: 181, Neg. LLF: 96.95359812148645
Iteration: 14, Func. Count: 194, Neg. LLF: 96.92486824564467
Iteration: 15, Func. Count: 207, Neg. LLF: 96.91301469499459
Iteration: 16, Func. Count: 220, Neg. LLF: 96.91079713752826
Iteration: 17, Func. Count: 233, Neg. LLF: 96.9101840012142
Iteration: 18, Func. Count: 246, Neg. LLF: 96.90972488413634
Iteration: 19, Func. Count: 259, Neg. LLF: 96.90920179829807
Iteration: 20, Func. Count: 272, Neg. LLF: 96.90785791825628
Iteration: 21, Func. Count: 285, Neg. LLF: 96.90628864642335
Iteration: 22, Func. Count: 298, Neg. LLF: 96.90510955639706
Iteration: 23, Func. Count: 311, Neg. LLF: 96.90477387186992
Iteration: 24, Func. Count: 324, Neg. LLF: 96.90474348479083
Iteration: 25, Func. Count: 337, Neg. LLF: 96.9047423436272
Iteration: 26, Func. Count: 349, Neg. LLF: 96.90474242962443
Optimization terminated successfully (Exit mode 0)
Current function value: 96.9047423436272
Iterations: 26
Function evaluations: 349
Gradient evaluations: 26
Iteration: 1, Func. Count: 15, Neg. LLF: 111.79121079489761
Iteration: 2, Func. Count: 34, Neg. LLF: 6894516.710962619
Iteration: 3, Func. Count: 49, Neg. LLF: 101.46507468187376
Iteration: 4, Func. Count: 64, Neg. LLF: 248.26818452223102
Iteration: 5, Func. Count: 79, Neg. LLF: 98.10481835091718
Iteration: 6, Func. Count: 94, Neg. LLF: 96.63915072472966
Iteration: 7, Func. Count: 109, Neg. LLF: 100.89287926185794
Iteration: 8, Func. Count: 124, Neg. LLF: 95.50413153732354
Iteration: 9, Func. Count: 138, Neg. LLF: 98.54279724188414
Iteration: 10, Func. Count: 154, Neg. LLF: 95.49140875188537
Iteration: 11, Func. Count: 169, Neg. LLF: 95.40103144409068
Iteration: 12, Func. Count: 183, Neg. LLF: 95.39757103320635
Iteration: 13, Func. Count: 197, Neg. LLF: 95.3898404171588
Iteration: 14, Func. Count: 211, Neg. LLF: 95.3803947395237
Iteration: 15, Func. Count: 225, Neg. LLF: 95.37054771293056
Iteration: 16, Func. Count: 239, Neg. LLF: 95.36542116526392
Iteration: 17, Func. Count: 253, Neg. LLF: 95.36448746987595
Iteration: 18, Func. Count: 267, Neg. LLF: 95.36441978764381
Iteration: 19, Func. Count: 281, Neg. LLF: 95.36441232815822
Iteration: 20, Func. Count: 295, Neg. LLF: 95.36441075071288
Iteration: 21, Func. Count: 309, Neg. LLF: 95.36440986147429
Optimization terminated successfully (Exit mode 0)
Current function value: 95.36440986147429
Iterations: 21
Function evaluations: 309
Gradient evaluations: 21
Iteration: 1, Func. Count: 16, Neg. LLF: 114.1109634332677
Iteration: 2, Func. Count: 36, Neg. LLF: 6255977.987969418
Iteration: 3, Func. Count: 52, Neg. LLF: 119.73902583545971
Iteration: 4, Func. Count: 68, Neg. LLF: 4363280.640726936
Iteration: 5, Func. Count: 84, Neg. LLF: 98.89521040654719
Iteration: 6, Func. Count: 100, Neg. LLF: 101.23430760362024
Iteration: 7, Func. Count: 116, Neg. LLF: 100.15163356358799
Iteration: 8, Func. Count: 132, Neg. LLF: 96.87403566728058
Iteration: 9, Func. Count: 148, Neg. LLF: 96.91074573992977
Iteration: 10, Func. Count: 164, Neg. LLF: 95.651755907573
Iteration: 11, Func. Count: 179, Neg. LLF: 97.42016286991952
Iteration: 12, Func. Count: 196, Neg. LLF: 95.5580259943953
Iteration: 13, Func. Count: 212, Neg. LLF: 95.38113379528437
Iteration: 14, Func. Count: 227, Neg. LLF: 95.37404146798173
Iteration: 15, Func. Count: 242, Neg. LLF: 95.37182472374921
Iteration: 16, Func. Count: 257, Neg. LLF: 95.37096221045879
Iteration: 17, Func. Count: 272, Neg. LLF: 95.36936114377448
Iteration: 18, Func. Count: 287, Neg. LLF: 95.36751667985308
Iteration: 19, Func. Count: 302, Neg. LLF: 95.36562031030073
Iteration: 20, Func. Count: 317, Neg. LLF: 95.36466807844239
Iteration: 21, Func. Count: 332, Neg. LLF: 95.36443978052829
Iteration: 22, Func. Count: 347, Neg. LLF: 95.36441891852154
Iteration: 23, Func. Count: 362, Neg. LLF: 95.3644152405186
Iteration: 24, Func. Count: 377, Neg. LLF: 95.36441177714173
Iteration: 25, Func. Count: 392, Neg. LLF: 95.3644102419434
Iteration: 26, Func. Count: 406, Neg. LLF: 95.36441028556695
Optimization terminated successfully (Exit mode 0)
Current function value: 95.3644102419434
Iterations: 26
Function evaluations: 406
Gradient evaluations: 26
Iteration: 1, Func. Count: 7, Neg. LLF: 135.18768617750203
Iteration: 2, Func. Count: 16, Neg. LLF: 204580159.87884536
Iteration: 3, Func. Count: 23, Neg. LLF: 6870442.26917639
Iteration: 4, Func. Count: 30, Neg. LLF: 97.46085446535477
Iteration: 5, Func. Count: 36, Neg. LLF: 97.29716029871098
Iteration: 6, Func. Count: 42, Neg. LLF: 97.28131577365592
Iteration: 7, Func. Count: 48, Neg. LLF: 97.23862322101827
Iteration: 8, Func. Count: 54, Neg. LLF: 97.2336432898555
Iteration: 9, Func. Count: 60, Neg. LLF: 97.23337194330595
Iteration: 10, Func. Count: 66, Neg. LLF: 97.23336825141337
Iteration: 11, Func. Count: 72, Neg. LLF: 97.23336758138146
Optimization terminated successfully (Exit mode 0)
Current function value: 97.23336758138146
Iterations: 11
Function evaluations: 72
Gradient evaluations: 11
Iteration: 1, Func. Count: 5, Neg. LLF: 127.56939314857082
Iteration: 2, Func. Count: 12, Neg. LLF: 99.37445218057557
Iteration: 3, Func. Count: 17, Neg. LLF: 97.74564632656609
Iteration: 4, Func. Count: 21, Neg. LLF: 97.68595704492608
Iteration: 5, Func. Count: 26, Neg. LLF: 97.54607646244139
Iteration: 6, Func. Count: 30, Neg. LLF: 97.54596818578787
Iteration: 7, Func. Count: 34, Neg. LLF: 97.54596582647464
Iteration: 8, Func. Count: 37, Neg. LLF: 97.54596586979324
Optimization terminated successfully (Exit mode 0)
Current function value: 97.54596582647464
Iterations: 8
Function evaluations: 37
Gradient evaluations: 8
Iteration: 1, Func. Count: 6, Neg. LLF: 179.07010976470212
Iteration: 2, Func. Count: 15, Neg. LLF: 95.85789785450878
Iteration: 3, Func. Count: 20, Neg. LLF: 95.64571093940863
Iteration: 4, Func. Count: 25, Neg. LLF: 106.29110468686754
Iteration: 5, Func. Count: 32, Neg. LLF: 95.60855195875678
Iteration: 6, Func. Count: 37, Neg. LLF: 95.6070648010636
Iteration: 7, Func. Count: 42, Neg. LLF: 95.60706002168234
Iteration: 8, Func. Count: 46, Neg. LLF: 95.60706015120375
Optimization terminated successfully (Exit mode 0)
Current function value: 95.60706002168234
Iterations: 8
Function evaluations: 46
Gradient evaluations: 8
Iteration: 1, Func. Count: 7, Neg. LLF: 175.43174997971084
Iteration: 2, Func. Count: 17, Neg. LLF: 95.7289983138602
Iteration: 3, Func. Count: 23, Neg. LLF: 95.9682598718747
Iteration: 4, Func. Count: 30, Neg. LLF: 96.64322809603534
Iteration: 5, Func. Count: 37, Neg. LLF: 95.63758413887255
Iteration: 6, Func. Count: 43, Neg. LLF: 95.62439256962355
Iteration: 7, Func. Count: 49, Neg. LLF: 95.60747686360395
Iteration: 8, Func. Count: 55, Neg. LLF: 95.60718009118223
Iteration: 9, Func. Count: 61, Neg. LLF: 95.60706004542783
Iteration: 10, Func. Count: 66, Neg. LLF: 95.6070599164338
Optimization terminated successfully (Exit mode 0)
Current function value: 95.60706004542783
Iterations: 10
Function evaluations: 66
Gradient evaluations: 10
Iteration: 1, Func. Count: 8, Neg. LLF: 176.4614290781056
Iteration: 2, Func. Count: 20, Neg. LLF: 95.72918744585317
Iteration: 3, Func. Count: 27, Neg. LLF: 95.67615809334059
Iteration: 4, Func. Count: 34, Neg. LLF: 97.2041200109189
Iteration: 5, Func. Count: 42, Neg. LLF: 95.66289763588372
Iteration: 6, Func. Count: 49, Neg. LLF: 95.6617925995164
Iteration: 7, Func. Count: 56, Neg. LLF: 95.6593566345259
Iteration: 8, Func. Count: 63, Neg. LLF: 95.65259034917882
Iteration: 9, Func. Count: 70, Neg. LLF: 95.63833679691676
Iteration: 10, Func. Count: 77, Neg. LLF: 95.63618360155502
Iteration: 11, Func. Count: 84, Neg. LLF: 95.62637346935149
Iteration: 12, Func. Count: 91, Neg. LLF: 95.6083954386503
Iteration: 13, Func. Count: 98, Neg. LLF: 95.60857224214578
Iteration: 14, Func. Count: 106, Neg. LLF: 95.60747928731317
Iteration: 15, Func. Count: 113, Neg. LLF: 135.04167976721013
Iteration: 16, Func. Count: 124, Neg. LLF: 95.6290223566675
Iteration: 17, Func. Count: 132, Neg. LLF: 95.60705990514674
Optimization terminated successfully (Exit mode 0)
Current function value: 95.60706003170573
Iterations: 18
Function evaluations: 132
Gradient evaluations: 17
Iteration: 1, Func. Count: 9, Neg. LLF: 183.30350525840828
Iteration: 2, Func. Count: 22, Neg. LLF: 95.75971806486544
Iteration: 3, Func. Count: 30, Neg. LLF: 95.95703061597133
Iteration: 4, Func. Count: 39, Neg. LLF: 96.18323068564231
Iteration: 5, Func. Count: 48, Neg. LLF: 95.6905944374814
Iteration: 6, Func. Count: 56, Neg. LLF: 95.6469827730287
Iteration: 7, Func. Count: 64, Neg. LLF: 95.6749230707756
Iteration: 8, Func. Count: 73, Neg. LLF: 95.61103725692574
Iteration: 9, Func. Count: 81, Neg. LLF: 95.60776482867477
Iteration: 10, Func. Count: 89, Neg. LLF: 95.6072312675477
Iteration: 11, Func. Count: 97, Neg. LLF: 95.60706237873515
Iteration: 12, Func. Count: 105, Neg. LLF: 95.60706080086582
Iteration: 13, Func. Count: 113, Neg. LLF: 95.66353880619033
Optimization terminated successfully (Exit mode 0)
Current function value: 95.60706079121243
Iterations: 14
Function evaluations: 117
Gradient evaluations: 13
Iteration: 1, Func. Count: 6, Neg. LLF: 127.86490855964452
Iteration: 2, Func. Count: 14, Neg. LLF: 104.74250647154918
Iteration: 3, Func. Count: 20, Neg. LLF: 97.99526973575341
Iteration: 4, Func. Count: 25, Neg. LLF: 97.68048426970981
Iteration: 5, Func. Count: 30, Neg. LLF: 97.58481528076004
Iteration: 6, Func. Count: 35, Neg. LLF: 97.5477466752954
Iteration: 7, Func. Count: 40, Neg. LLF: 97.5459851118164
Iteration: 8, Func. Count: 45, Neg. LLF: 97.54596583654849
Iteration: 9, Func. Count: 49, Neg. LLF: 97.54596594615609
Optimization terminated successfully (Exit mode 0)
Current function value: 97.54596583654849
Iterations: 9
Function evaluations: 49
Gradient evaluations: 9
Iteration: 1, Func. Count: 7, Neg. LLF: 178.90749675679157
Iteration: 2, Func. Count: 17, Neg. LLF: 95.88776796073074
Iteration: 3, Func. Count: 23, Neg. LLF: 95.64073738667969
Iteration: 4, Func. Count: 29, Neg. LLF: 106.63280237066793
Iteration: 5, Func. Count: 37, Neg. LLF: 95.60818892442899
Iteration: 6, Func. Count: 43, Neg. LLF: 95.6070630627132
Iteration: 7, Func. Count: 49, Neg. LLF: 95.60706002037894
Iteration: 8, Func. Count: 54, Neg. LLF: 95.60706014993677
Optimization terminated successfully (Exit mode 0)
Current function value: 95.60706002037894
Iterations: 8
Function evaluations: 54
Gradient evaluations: 8
Iteration: 1, Func. Count: 8, Neg. LLF: 176.311129721443
Iteration: 2, Func. Count: 19, Neg. LLF: 95.7476172276965
Iteration: 3, Func. Count: 26, Neg. LLF: 96.31816140573548
Iteration: 4, Func. Count: 34, Neg. LLF: 95.97955847312514
Iteration: 5, Func. Count: 42, Neg. LLF: 95.63804157448267
Iteration: 6, Func. Count: 49, Neg. LLF: 95.6304394791102
Iteration: 7, Func. Count: 56, Neg. LLF: 95.60750640520338
Iteration: 8, Func. Count: 63, Neg. LLF: 95.60708140404267
Iteration: 9, Func. Count: 70, Neg. LLF: 95.6070611592855
Iteration: 10, Func. Count: 77, Neg. LLF: 95.60706001899501
Iteration: 11, Func. Count: 83, Neg. LLF: 95.60705989032634
Optimization terminated successfully (Exit mode 0)
Current function value: 95.60706001899501
Iterations: 11
Function evaluations: 83
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 178.55754647188826
Iteration: 2, Func. Count: 22, Neg. LLF: 95.75066962005958
Iteration: 3, Func. Count: 30, Neg. LLF: 95.89017180237153
Iteration: 4, Func. Count: 39, Neg. LLF: 96.78293409568656
Iteration: 5, Func. Count: 48, Neg. LLF: 95.66402092790798
Iteration: 6, Func. Count: 56, Neg. LLF: 95.65869902164644
Iteration: 7, Func. Count: 64, Neg. LLF: 95.62821666502289
Iteration: 8, Func. Count: 72, Neg. LLF: 95.62197267511043
Iteration: 9, Func. Count: 80, Neg. LLF: 95.6194305135368
Iteration: 10, Func. Count: 88, Neg. LLF: 95.60871268634826
Iteration: 11, Func. Count: 96, Neg. LLF: 95.60771414127565
Iteration: 12, Func. Count: 104, Neg. LLF: 95.6070602161584
Iteration: 13, Func. Count: 111, Neg. LLF: 95.60706008830802
Optimization terminated successfully (Exit mode 0)
Current function value: 95.6070602161584
Iterations: 13
Function evaluations: 111
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 183.3713377255767
Iteration: 2, Func. Count: 24, Neg. LLF: 95.75075370488585
Iteration: 3, Func. Count: 33, Neg. LLF: 95.73776661682555
Iteration: 4, Func. Count: 42, Neg. LLF: 95.71580233332516
Iteration: 5, Func. Count: 51, Neg. LLF: 96.67927536146809
Iteration: 6, Func. Count: 61, Neg. LLF: 95.69636809687437
Iteration: 7, Func. Count: 70, Neg. LLF: 95.67993462941644
Iteration: 8, Func. Count: 79, Neg. LLF: 95.64256091802838
Iteration: 9, Func. Count: 88, Neg. LLF: 95.6278041811214
Iteration: 10, Func. Count: 97, Neg. LLF: 95.61892151762382
Iteration: 11, Func. Count: 106, Neg. LLF: 95.6165430816365
Iteration: 12, Func. Count: 115, Neg. LLF: 95.60707101239501
Iteration: 13, Func. Count: 124, Neg. LLF: 95.60706121310095
Iteration: 14, Func. Count: 133, Neg. LLF: 95.60706006963296
Iteration: 15, Func. Count: 141, Neg. LLF: 95.60705994489409
Optimization terminated successfully (Exit mode 0)
Current function value: 95.60706006963296
Iterations: 15
Function evaluations: 141
Gradient evaluations: 15
Iteration: 1, Func. Count: 7, Neg. LLF: 141.99358332101966
Iteration: 2, Func. Count: 16, Neg. LLF: 272963858.4877402
Iteration: 3, Func. Count: 23, Neg. LLF: 7465635.551908639
Iteration: 4, Func. Count: 30, Neg. LLF: 95.02957036694198
Iteration: 5, Func. Count: 36, Neg. LLF: 94.77690554504204
Iteration: 6, Func. Count: 42, Neg. LLF: 94.77090406248784
Iteration: 7, Func. Count: 48, Neg. LLF: 94.76368088031923
Iteration: 8, Func. Count: 54, Neg. LLF: 94.7584017045391
Iteration: 9, Func. Count: 60, Neg. LLF: 94.75713623752392
Iteration: 10, Func. Count: 66, Neg. LLF: 94.75707027315951
Iteration: 11, Func. Count: 72, Neg. LLF: 94.75706909301378
Iteration: 12, Func. Count: 77, Neg. LLF: 94.75706909302203
Optimization terminated successfully (Exit mode 0)
Current function value: 94.75706909301378
Iterations: 12
Function evaluations: 77
Gradient evaluations: 12
Iteration: 1, Func. Count: 8, Neg. LLF: 178.40981427175424
Iteration: 2, Func. Count: 19, Neg. LLF: 95.91332672439101
Iteration: 3, Func. Count: 26, Neg. LLF: 95.61866848347476
Iteration: 4, Func. Count: 33, Neg. LLF: 95.94097407451954
Iteration: 5, Func. Count: 41, Neg. LLF: 95.63023098415748
Iteration: 6, Func. Count: 49, Neg. LLF: 95.60706017800496
Iteration: 7, Func. Count: 55, Neg. LLF: 95.60706030850334
Optimization terminated successfully (Exit mode 0)
Current function value: 95.60706017800496
Iterations: 7
Function evaluations: 55
Gradient evaluations: 7
Iteration: 1, Func. Count: 9, Neg. LLF: 175.94965042241162
Iteration: 2, Func. Count: 21, Neg. LLF: 95.7837432308351
Iteration: 3, Func. Count: 29, Neg. LLF: 96.1866227499119
Iteration: 4, Func. Count: 38, Neg. LLF: 96.46024441964369
Iteration: 5, Func. Count: 47, Neg. LLF: 95.63567958638419
Iteration: 6, Func. Count: 55, Neg. LLF: 95.62113165173145
Iteration: 7, Func. Count: 63, Neg. LLF: 95.60778718717
Iteration: 8, Func. Count: 71, Neg. LLF: 95.60754102535944
Iteration: 9, Func. Count: 79, Neg. LLF: 95.60708815640136
Iteration: 10, Func. Count: 87, Neg. LLF: 95.60706007000209
Iteration: 11, Func. Count: 94, Neg. LLF: 95.60705994080789
Optimization terminated successfully (Exit mode 0)
Current function value: 95.60706007000209
Iterations: 11
Function evaluations: 94
Gradient evaluations: 11
Iteration: 1, Func. Count: 10, Neg. LLF: 121.72764914672162
Iteration: 2, Func. Count: 24, Neg. LLF: 265.5249517830141
Iteration: 3, Func. Count: 34, Neg. LLF: 356.2693650925265
Iteration: 4, Func. Count: 44, Neg. LLF: 107.75319181002249
Iteration: 5, Func. Count: 54, Neg. LLF: 96.32210343266136
Iteration: 6, Func. Count: 64, Neg. LLF: 98.18859325017156
Iteration: 7, Func. Count: 74, Neg. LLF: 95.78920002733581
Iteration: 8, Func. Count: 84, Neg. LLF: 95.23200017095593
Iteration: 9, Func. Count: 93, Neg. LLF: 96.59524457599689
Iteration: 10, Func. Count: 103, Neg. LLF: 105.44948435952188
Iteration: 11, Func. Count: 116, Neg. LLF: 96.16094936814439
Iteration: 12, Func. Count: 126, Neg. LLF: 99.15999570007898
Iteration: 13, Func. Count: 136, Neg. LLF: 94.67735450378149
Iteration: 14, Func. Count: 146, Neg. LLF: 95.41885829298279
Iteration: 15, Func. Count: 156, Neg. LLF: 96.16893126273919
Iteration: 16, Func. Count: 166, Neg. LLF: 94.26852054592091
Iteration: 17, Func. Count: 176, Neg. LLF: 93.96974062561165
Iteration: 18, Func. Count: 185, Neg. LLF: 93.94584596438959
Iteration: 19, Func. Count: 194, Neg. LLF: 93.93086992867609
Iteration: 20, Func. Count: 203, Neg. LLF: 93.89265108406364
Iteration: 21, Func. Count: 212, Neg. LLF: 93.85801069377099
Iteration: 22, Func. Count: 221, Neg. LLF: 93.68739634132204
Iteration: 23, Func. Count: 230, Neg. LLF: 93.53141637196993
Iteration: 24, Func. Count: 239, Neg. LLF: 93.50667832618139
Iteration: 25, Func. Count: 248, Neg. LLF: 93.50214981057084
Iteration: 26, Func. Count: 257, Neg. LLF: 93.50187365598437
Iteration: 27, Func. Count: 266, Neg. LLF: 93.50183477294816
Iteration: 28, Func. Count: 275, Neg. LLF: 93.50182521954335
Iteration: 29, Func. Count: 283, Neg. LLF: 93.5018252195967
Optimization terminated successfully (Exit mode 0)
Current function value: 93.50182521954335
Iterations: 29
Function evaluations: 283
Gradient evaluations: 29
Iteration: 1, Func. Count: 11, Neg. LLF: 123.97283165606505
Iteration: 2, Func. Count: 26, Neg. LLF: 189.83362694901533
Iteration: 3, Func. Count: 37, Neg. LLF: 16941410.54772283
Iteration: 4, Func. Count: 48, Neg. LLF: 110.27313315523234
Iteration: 5, Func. Count: 59, Neg. LLF: 96.55341825594775
Iteration: 6, Func. Count: 70, Neg. LLF: 93.92715106386116
Iteration: 7, Func. Count: 80, Neg. LLF: 95.81422244124077
Iteration: 8, Func. Count: 91, Neg. LLF: 93.74291659858582
Iteration: 9, Func. Count: 101, Neg. LLF: 93.71386503673185
Iteration: 10, Func. Count: 111, Neg. LLF: 93.71151417694892
Iteration: 11, Func. Count: 121, Neg. LLF: 93.70063549014398
Iteration: 12, Func. Count: 131, Neg. LLF: 93.64187415885634
Iteration: 13, Func. Count: 141, Neg. LLF: 93.55579615246036
Iteration: 14, Func. Count: 151, Neg. LLF: 93.50817775780192
Iteration: 15, Func. Count: 161, Neg. LLF: 93.50216609718548
Iteration: 16, Func. Count: 171, Neg. LLF: 93.50185384378882
Iteration: 17, Func. Count: 181, Neg. LLF: 93.50183015093586
Iteration: 18, Func. Count: 191, Neg. LLF: 93.50182538052532
Iteration: 19, Func. Count: 200, Neg. LLF: 93.50182547131398
Optimization terminated successfully (Exit mode 0)
Current function value: 93.50182538052532
Iterations: 19
Function evaluations: 200
Gradient evaluations: 19
Iteration: 1, Func. Count: 8, Neg. LLF: 146.1669253083661
Iteration: 2, Func. Count: 18, Neg. LLF: 340889568.027098
Iteration: 3, Func. Count: 26, Neg. LLF: 7456338.158859314
Iteration: 4, Func. Count: 34, Neg. LLF: 95.47961918564633
Iteration: 5, Func. Count: 41, Neg. LLF: 116.51964812866001
Iteration: 6, Func. Count: 51, Neg. LLF: 95.55173985209606
Iteration: 7, Func. Count: 59, Neg. LLF: 94.77838468375491
Iteration: 8, Func. Count: 66, Neg. LLF: 94.76935993703908
Iteration: 9, Func. Count: 73, Neg. LLF: 94.75781615026634
Iteration: 10, Func. Count: 80, Neg. LLF: 94.75705362383012
Iteration: 11, Func. Count: 87, Neg. LLF: 94.75702908135504
Iteration: 12, Func. Count: 94, Neg. LLF: 94.75702567865262
Iteration: 13, Func. Count: 100, Neg. LLF: 94.75702567845003
Optimization terminated successfully (Exit mode 0)
Current function value: 94.75702567865262
Iterations: 13
Function evaluations: 100
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 178.9020005879146
Iteration: 2, Func. Count: 21, Neg. LLF: 95.8799755036305
Iteration: 3, Func. Count: 29, Neg. LLF: 95.63119671077659
Iteration: 4, Func. Count: 37, Neg. LLF: 104.0045454773486
Iteration: 5, Func. Count: 47, Neg. LLF: 95.60761849520826
Iteration: 6, Func. Count: 55, Neg. LLF: 95.60706078013772
Iteration: 7, Func. Count: 63, Neg. LLF: 95.60706001910495
Optimization terminated successfully (Exit mode 0)
Current function value: 95.60706001910495
Iterations: 7
Function evaluations: 63
Gradient evaluations: 7
Iteration: 1, Func. Count: 10, Neg. LLF: 175.90169870403537
Iteration: 2, Func. Count: 23, Neg. LLF: 95.76291121992587
Iteration: 3, Func. Count: 32, Neg. LLF: 96.14002325467541
Iteration: 4, Func. Count: 42, Neg. LLF: 96.27454581907698
Iteration: 5, Func. Count: 52, Neg. LLF: 95.63614062287711
Iteration: 6, Func. Count: 61, Neg. LLF: 95.61770226066403
Iteration: 7, Func. Count: 70, Neg. LLF: 95.60719311454254
Iteration: 8, Func. Count: 79, Neg. LLF: 95.6070897195222
Iteration: 9, Func. Count: 88, Neg. LLF: 97.1954138502315
Optimization terminated successfully (Exit mode 0)
Current function value: 95.60708902360521
Iterations: 10
Function evaluations: 91
Gradient evaluations: 9
Iteration: 1, Func. Count: 11, Neg. LLF: 121.92110378907755
Iteration: 2, Func. Count: 26, Neg. LLF: 143.55467641023452
Iteration: 3, Func. Count: 37, Neg. LLF: 363.2150669866318
Iteration: 4, Func. Count: 48, Neg. LLF: 106.35521759111343
Iteration: 5, Func. Count: 59, Neg. LLF: 98.98360108455056
Iteration: 6, Func. Count: 70, Neg. LLF: 97.5615496197579
Iteration: 7, Func. Count: 81, Neg. LLF: 96.20940530214177
Iteration: 8, Func. Count: 92, Neg. LLF: 96.33227076098127
Iteration: 9, Func. Count: 103, Neg. LLF: 96.21063099990704
Iteration: 10, Func. Count: 114, Neg. LLF: 97.48387466309228
Iteration: 11, Func. Count: 125, Neg. LLF: 95.88436143246625
Iteration: 12, Func. Count: 136, Neg. LLF: 95.07088642954311
Iteration: 13, Func. Count: 146, Neg. LLF: 95.02744234718544
Iteration: 14, Func. Count: 156, Neg. LLF: 95.01696324330521
Iteration: 15, Func. Count: 166, Neg. LLF: 95.00683132817888
Iteration: 16, Func. Count: 176, Neg. LLF: 94.99385897439375
Iteration: 17, Func. Count: 186, Neg. LLF: 94.97390970879633
Iteration: 18, Func. Count: 196, Neg. LLF: 94.94709799532524
Iteration: 19, Func. Count: 206, Neg. LLF: 94.92591197463105
Iteration: 20, Func. Count: 216, Neg. LLF: 94.90163601437003
Iteration: 21, Func. Count: 226, Neg. LLF: 94.79093181514527
Iteration: 22, Func. Count: 236, Neg. LLF: 94.62287681297676
Iteration: 23, Func. Count: 246, Neg. LLF: 93.76271791326285
Iteration: 24, Func. Count: 256, Neg. LLF: 93.61147922185644
Iteration: 25, Func. Count: 266, Neg. LLF: 95.3402850956487
Iteration: 26, Func. Count: 277, Neg. LLF: 95.10321026063633
Iteration: 27, Func. Count: 288, Neg. LLF: 93.54912486639303
Iteration: 28, Func. Count: 298, Neg. LLF: 93.51385221809825
Iteration: 29, Func. Count: 308, Neg. LLF: 93.50600954435998
Iteration: 30, Func. Count: 318, Neg. LLF: 93.50347370823525
Iteration: 31, Func. Count: 328, Neg. LLF: 93.50321272819407
Iteration: 32, Func. Count: 338, Neg. LLF: 93.50292598922931
Iteration: 33, Func. Count: 348, Neg. LLF: 93.50243719709964
Iteration: 34, Func. Count: 358, Neg. LLF: 93.50219233587065
Iteration: 35, Func. Count: 368, Neg. LLF: 93.50188520321969
Iteration: 36, Func. Count: 378, Neg. LLF: 93.50190205411984
Iteration: 37, Func. Count: 389, Neg. LLF: 93.50186821008965
Iteration: 38, Func. Count: 399, Neg. LLF: 93.50184507838264
Iteration: 39, Func. Count: 409, Neg. LLF: 93.5186768593341
Optimization terminated successfully (Exit mode 0)
Current function value: 93.50184466438878
Iterations: 40
Function evaluations: 411
Gradient evaluations: 39
Iteration: 1, Func. Count: 12, Neg. LLF: 124.19382875329914
Iteration: 2, Func. Count: 28, Neg. LLF: 203.54091942897878
Iteration: 3, Func. Count: 40, Neg. LLF: 17153398.526642542
Iteration: 4, Func. Count: 52, Neg. LLF: 112.39238788590202
Iteration: 5, Func. Count: 64, Neg. LLF: 98.70142573058212
Iteration: 6, Func. Count: 76, Neg. LLF: 94.031681695684
Iteration: 7, Func. Count: 87, Neg. LLF: 98.0182391326208
Iteration: 8, Func. Count: 99, Neg. LLF: 94.86257228776562
Iteration: 9, Func. Count: 111, Neg. LLF: 93.9173675954867
Iteration: 10, Func. Count: 123, Neg. LLF: 93.71540299693427
Iteration: 11, Func. Count: 134, Neg. LLF: 93.6979312524272
Iteration: 12, Func. Count: 145, Neg. LLF: 93.68616284089521
Iteration: 13, Func. Count: 156, Neg. LLF: 93.66768736443322
Iteration: 14, Func. Count: 167, Neg. LLF: 93.65576870478654
Iteration: 15, Func. Count: 178, Neg. LLF: 93.63917432522933
Iteration: 16, Func. Count: 189, Neg. LLF: 93.61735253309342
Iteration: 17, Func. Count: 200, Neg. LLF: 93.58457211223887
Iteration: 18, Func. Count: 211, Neg. LLF: 93.53557742320264
Iteration: 19, Func. Count: 222, Neg. LLF: 93.5027319810791
Iteration: 20, Func. Count: 233, Neg. LLF: 93.50201724802761
Iteration: 21, Func. Count: 244, Neg. LLF: 93.50184659314367
Iteration: 22, Func. Count: 255, Neg. LLF: 93.50182613400514
Iteration: 23, Func. Count: 266, Neg. LLF: 93.50182514991073
Optimization terminated successfully (Exit mode 0)
Current function value: 93.50182514991073
Iterations: 23
Function evaluations: 266
Gradient evaluations: 23
Iteration: 1, Func. Count: 5, Neg. LLF: 158.11073455118196
Iteration: 2, Func. Count: 12, Neg. LLF: 142.08986777032314
Iteration: 3, Func. Count: 18, Neg. LLF: 97.60365529839756
Iteration: 4, Func. Count: 22, Neg. LLF: 97.64526084808914
Iteration: 5, Func. Count: 28, Neg. LLF: 97.55816433395944
Iteration: 6, Func. Count: 32, Neg. LLF: 97.54586486083244
Iteration: 7, Func. Count: 36, Neg. LLF: 97.54492719444187
Iteration: 8, Func. Count: 40, Neg. LLF: 97.54456638731664
Iteration: 9, Func. Count: 44, Neg. LLF: 97.54454992641384
Iteration: 10, Func. Count: 47, Neg. LLF: 97.54454992638726
Optimization terminated successfully (Exit mode 0)
Current function value: 97.54454992641384
Iterations: 10
Function evaluations: 47
Gradient evaluations: 10
Iteration: 1, Func. Count: 6, Neg. LLF: 179.7702217196188
Iteration: 2, Func. Count: 15, Neg. LLF: 95.97675011021893
Iteration: 3, Func. Count: 20, Neg. LLF: 95.65320300634981
Iteration: 4, Func. Count: 25, Neg. LLF: 108.49487349674101
Iteration: 5, Func. Count: 31, Neg. LLF: 95.60964093681108
Iteration: 6, Func. Count: 36, Neg. LLF: 95.60710743927889
Iteration: 7, Func. Count: 41, Neg. LLF: 95.6070602067848
Iteration: 8, Func. Count: 45, Neg. LLF: 95.60706033677964
Optimization terminated successfully (Exit mode 0)
Current function value: 95.6070602067848
Iterations: 8
Function evaluations: 45
Gradient evaluations: 8
Iteration: 1, Func. Count: 7, Neg. LLF: 176.0271826934977
Iteration: 2, Func. Count: 17, Neg. LLF: 95.77223440667416
Iteration: 3, Func. Count: 23, Neg. LLF: 95.73688984446738
Iteration: 4, Func. Count: 30, Neg. LLF: 98.86877674022746
Iteration: 5, Func. Count: 37, Neg. LLF: 95.64336373994442
Iteration: 6, Func. Count: 43, Neg. LLF: 95.61764500249994
Iteration: 7, Func. Count: 49, Neg. LLF: 95.60734031782454
Iteration: 8, Func. Count: 55, Neg. LLF: 95.60716632191478
Iteration: 9, Func. Count: 61, Neg. LLF: 122.27471991465146
Iteration: 10, Func. Count: 71, Neg. LLF: 95.6108941667939
Iteration: 11, Func. Count: 78, Neg. LLF: 95.60705989130858
Optimization terminated successfully (Exit mode 0)
Current function value: 95.60706001988805
Iterations: 12
Function evaluations: 78
Gradient evaluations: 11
Iteration: 1, Func. Count: 8, Neg. LLF: 175.1757791298604
Iteration: 2, Func. Count: 20, Neg. LLF: 95.75127284431086
Iteration: 3, Func. Count: 27, Neg. LLF: 95.69576986582827
Iteration: 4, Func. Count: 34, Neg. LLF: 99.10765688270793
Iteration: 5, Func. Count: 42, Neg. LLF: 95.66661629481814
Iteration: 6, Func. Count: 49, Neg. LLF: 95.6645912436644
Iteration: 7, Func. Count: 56, Neg. LLF: 95.65991196290388
Iteration: 8, Func. Count: 63, Neg. LLF: 95.65473921925384
Iteration: 9, Func. Count: 70, Neg. LLF: 95.63661539750629
Iteration: 10, Func. Count: 77, Neg. LLF: 95.63499404459112
Iteration: 11, Func. Count: 84, Neg. LLF: 95.6252721301813
Iteration: 12, Func. Count: 91, Neg. LLF: 95.60821566615388
Iteration: 13, Func. Count: 98, Neg. LLF: 143.80820577410185
Iteration: 14, Func. Count: 109, Neg. LLF: 95.71940253016177
Iteration: 15, Func. Count: 118, Neg. LLF: 95.60706001900871
Iteration: 16, Func. Count: 124, Neg. LLF: 95.60705989220389
Optimization terminated successfully (Exit mode 0)
Current function value: 95.60706001900871
Iterations: 17
Function evaluations: 124
Gradient evaluations: 16
Iteration: 1, Func. Count: 9, Neg. LLF: 181.6198540884713
Iteration: 2, Func. Count: 22, Neg. LLF: 95.78190962441722
Iteration: 3, Func. Count: 30, Neg. LLF: 95.8821462478658
Iteration: 4, Func. Count: 39, Neg. LLF: 96.45971981372631
Iteration: 5, Func. Count: 48, Neg. LLF: 95.7019517655514
Iteration: 6, Func. Count: 56, Neg. LLF: 95.67255264188343
Iteration: 7, Func. Count: 64, Neg. LLF: 95.63180426417723
Iteration: 8, Func. Count: 72, Neg. LLF: 95.61565333760767
Iteration: 9, Func. Count: 80, Neg. LLF: 95.60951852344925
Iteration: 10, Func. Count: 88, Neg. LLF: 95.60715661476387
Iteration: 11, Func. Count: 96, Neg. LLF: 95.60706842299766
Iteration: 12, Func. Count: 104, Neg. LLF: 95.60706001933099
Iteration: 13, Func. Count: 111, Neg. LLF: 95.60705989505884
Optimization terminated successfully (Exit mode 0)
Current function value: 95.60706001933099
Iterations: 13
Function evaluations: 111
Gradient evaluations: 13
Iteration: 1, Func. Count: 6, Neg. LLF: 159.0366429725393
Iteration: 2, Func. Count: 14, Neg. LLF: 152.56724941486894
Iteration: 3, Func. Count: 21, Neg. LLF: 96.23939265654256
Iteration: 4, Func. Count: 26, Neg. LLF: 96.42543292459327
Iteration: 5, Func. Count: 32, Neg. LLF: 97.73319648219227
Iteration: 6, Func. Count: 38, Neg. LLF: 95.63337305090037
Iteration: 7, Func. Count: 43, Neg. LLF: 95.56929112543081
Iteration: 8, Func. Count: 48, Neg. LLF: 95.55117885743616
Iteration: 9, Func. Count: 53, Neg. LLF: 95.54812693988417
Iteration: 10, Func. Count: 58, Neg. LLF: 95.54757760501587
Iteration: 11, Func. Count: 63, Neg. LLF: 95.54744402204172
Iteration: 12, Func. Count: 67, Neg. LLF: 95.54744402216144
Optimization terminated successfully (Exit mode 0)
Current function value: 95.54744402204172
Iterations: 12
Function evaluations: 67
Gradient evaluations: 12
Iteration: 1, Func. Count: 7, Neg. LLF: 133.99662360146112
Iteration: 2, Func. Count: 17, Neg. LLF: 99.49597113176137
Iteration: 3, Func. Count: 24, Neg. LLF: 97.49397720769323
Iteration: 4, Func. Count: 31, Neg. LLF: 96.75422937451536
Iteration: 5, Func. Count: 38, Neg. LLF: 95.99502483352484
Iteration: 6, Func. Count: 44, Neg. LLF: 95.84405683176772
Iteration: 7, Func. Count: 50, Neg. LLF: 95.61544451524813
Iteration: 8, Func. Count: 56, Neg. LLF: 95.60766653548608
Iteration: 9, Func. Count: 62, Neg. LLF: 95.60724626166507
Iteration: 10, Func. Count: 68, Neg. LLF: 95.60706002348228
Iteration: 11, Func. Count: 73, Neg. LLF: 95.6070601529649
Optimization terminated successfully (Exit mode 0)
Current function value: 95.60706002348228
Iterations: 11
Function evaluations: 73
Gradient evaluations: 11
Iteration: 1, Func. Count: 8, Neg. LLF: 173.49910783747168
Iteration: 2, Func. Count: 19, Neg. LLF: 96.58963754735176
Iteration: 3, Func. Count: 27, Neg. LLF: 95.11741068091102
Iteration: 4, Func. Count: 34, Neg. LLF: 105.16250103571396
Iteration: 5, Func. Count: 42, Neg. LLF: 95.02357128945998
Iteration: 6, Func. Count: 49, Neg. LLF: 95.02192015120548
Iteration: 7, Func. Count: 56, Neg. LLF: 95.0216313350927
Iteration: 8, Func. Count: 63, Neg. LLF: 95.0215835226131
Iteration: 9, Func. Count: 70, Neg. LLF: 95.02157391115934
Iteration: 10, Func. Count: 76, Neg. LLF: 95.02157386251393
Optimization terminated successfully (Exit mode 0)
Current function value: 95.02157391115934
Iterations: 10
Function evaluations: 76
Gradient evaluations: 10
Iteration: 1, Func. Count: 9, Neg. LLF: 152.89387942647767
Iteration: 2, Func. Count: 22, Neg. LLF: 101.97558507202181
Iteration: 3, Func. Count: 31, Neg. LLF: 96.43481397591934
Iteration: 4, Func. Count: 40, Neg. LLF: 96.00267426597668
Iteration: 5, Func. Count: 49, Neg. LLF: 98.36157621885333
Iteration: 6, Func. Count: 58, Neg. LLF: 94.60800952800903
Iteration: 7, Func. Count: 66, Neg. LLF: 158.14423375000078
Iteration: 8, Func. Count: 76, Neg. LLF: 94.36123135970017
Iteration: 9, Func. Count: 84, Neg. LLF: 94.49624787346745
Iteration: 10, Func. Count: 93, Neg. LLF: 94.58980481513477
Iteration: 11, Func. Count: 102, Neg. LLF: 94.32952801930442
Iteration: 12, Func. Count: 110, Neg. LLF: 94.32892999429161
Iteration: 13, Func. Count: 118, Neg. LLF: 94.32815240804094
Iteration: 14, Func. Count: 126, Neg. LLF: 94.32728586520297
Iteration: 15, Func. Count: 134, Neg. LLF: 94.32694140703741
Iteration: 16, Func. Count: 142, Neg. LLF: 94.32687596301186
Iteration: 17, Func. Count: 150, Neg. LLF: 94.32686698631717
Iteration: 18, Func. Count: 158, Neg. LLF: 94.32686626749357
Optimization terminated successfully (Exit mode 0)
Current function value: 94.32686626749357
Iterations: 18
Function evaluations: 158
Gradient evaluations: 18
Iteration: 1, Func. Count: 10, Neg. LLF: 180.8152922982584
Iteration: 2, Func. Count: 24, Neg. LLF: 96.11142935362949
Iteration: 3, Func. Count: 33, Neg. LLF: 103.1012829939907
Iteration: 4, Func. Count: 43, Neg. LLF: 96.33773511192877
Iteration: 5, Func. Count: 53, Neg. LLF: 96.33986270311387
Iteration: 6, Func. Count: 63, Neg. LLF: 94.97929109367016
Iteration: 7, Func. Count: 72, Neg. LLF: 94.96279319140312
Iteration: 8, Func. Count: 81, Neg. LLF: 94.9611526792176
Iteration: 9, Func. Count: 90, Neg. LLF: 94.960675271804
Iteration: 10, Func. Count: 99, Neg. LLF: 94.96064171211036
Iteration: 11, Func. Count: 108, Neg. LLF: 94.96064076624772
Optimization terminated successfully (Exit mode 0)
Current function value: 94.96064076624772
Iterations: 11
Function evaluations: 108
Gradient evaluations: 11
Iteration: 1, Func. Count: 7, Neg. LLF: 158.1201562334871
Iteration: 2, Func. Count: 16, Neg. LLF: 152.63431483014062
Iteration: 3, Func. Count: 24, Neg. LLF: 96.24498859142768
Iteration: 4, Func. Count: 30, Neg. LLF: 96.41588365812015
Iteration: 5, Func. Count: 37, Neg. LLF: 97.73168343786664
Iteration: 6, Func. Count: 44, Neg. LLF: 95.63246377224992
Iteration: 7, Func. Count: 50, Neg. LLF: 95.56929301045851
Iteration: 8, Func. Count: 56, Neg. LLF: 95.55090301402745
Iteration: 9, Func. Count: 62, Neg. LLF: 95.54809600607884
Iteration: 10, Func. Count: 68, Neg. LLF: 95.54756539752027
Iteration: 11, Func. Count: 74, Neg. LLF: 95.54744378977004
Iteration: 12, Func. Count: 79, Neg. LLF: 95.54744387936402
Optimization terminated successfully (Exit mode 0)
Current function value: 95.54744378977004
Iterations: 12
Function evaluations: 79
Gradient evaluations: 12
Iteration: 1, Func. Count: 8, Neg. LLF: 135.2372654730205
Iteration: 2, Func. Count: 19, Neg. LLF: 99.5679953610401
Iteration: 3, Func. Count: 27, Neg. LLF: 98.43273116387431
Iteration: 4, Func. Count: 35, Neg. LLF: 96.65504124337099
Iteration: 5, Func. Count: 43, Neg. LLF: 96.06093066569173
Iteration: 6, Func. Count: 50, Neg. LLF: 95.86452980672625
Iteration: 7, Func. Count: 57, Neg. LLF: 95.61010722574777
Iteration: 8, Func. Count: 64, Neg. LLF: 95.60725587061332
Iteration: 9, Func. Count: 71, Neg. LLF: 95.60706016248292
Iteration: 10, Func. Count: 77, Neg. LLF: 95.60706029305172
Optimization terminated successfully (Exit mode 0)
Current function value: 95.60706016248292
Iterations: 10
Function evaluations: 77
Gradient evaluations: 10
Iteration: 1, Func. Count: 9, Neg. LLF: 174.404810933417
Iteration: 2, Func. Count: 21, Neg. LLF: 96.72348388264597
Iteration: 3, Func. Count: 30, Neg. LLF: 95.19889196638177
Iteration: 4, Func. Count: 38, Neg. LLF: 101.11992242916953
Iteration: 5, Func. Count: 47, Neg. LLF: 95.03012281064863
Iteration: 6, Func. Count: 55, Neg. LLF: 95.02339125893181
Iteration: 7, Func. Count: 63, Neg. LLF: 95.02210958244102
Iteration: 8, Func. Count: 71, Neg. LLF: 95.02158405263411
Iteration: 9, Func. Count: 79, Neg. LLF: 95.02157402567799
Iteration: 10, Func. Count: 86, Neg. LLF: 95.02157397714117
Optimization terminated successfully (Exit mode 0)
Current function value: 95.02157402567799
Iterations: 10
Function evaluations: 86
Gradient evaluations: 10
Iteration: 1, Func. Count: 10, Neg. LLF: 156.10791732832263
Iteration: 2, Func. Count: 24, Neg. LLF: 101.94776275574688
Iteration: 3, Func. Count: 34, Neg. LLF: 96.63629269835317
Iteration: 4, Func. Count: 44, Neg. LLF: 96.46115074246129
Iteration: 5, Func. Count: 54, Neg. LLF: 95.71269598167903
Iteration: 6, Func. Count: 64, Neg. LLF: 94.49353809062946
Iteration: 7, Func. Count: 73, Neg. LLF: 96.21963456884484
Iteration: 8, Func. Count: 84, Neg. LLF: 94.8001860219083
Iteration: 9, Func. Count: 94, Neg. LLF: 94.47840690773396
Iteration: 10, Func. Count: 104, Neg. LLF: 94.35840232977527
Iteration: 11, Func. Count: 113, Neg. LLF: 94.34871023058119
Iteration: 12, Func. Count: 122, Neg. LLF: 94.3388638662273
Iteration: 13, Func. Count: 131, Neg. LLF: 94.32931106649548
Iteration: 14, Func. Count: 140, Neg. LLF: 94.32728593076425
Iteration: 15, Func. Count: 149, Neg. LLF: 94.32687228516761
Iteration: 16, Func. Count: 158, Neg. LLF: 94.32686628132019
Iteration: 17, Func. Count: 166, Neg. LLF: 94.32686628141397
Optimization terminated successfully (Exit mode 0)
Current function value: 94.32686628132019
Iterations: 17
Function evaluations: 166
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 181.47273202588616
Iteration: 2, Func. Count: 26, Neg. LLF: 96.04448676574
Iteration: 3, Func. Count: 36, Neg. LLF: 102.84933203875636
Iteration: 4, Func. Count: 47, Neg. LLF: 96.09176289721637
Iteration: 5, Func. Count: 58, Neg. LLF: 95.01332676902092
Iteration: 6, Func. Count: 68, Neg. LLF: 95.05894322399178
Iteration: 7, Func. Count: 79, Neg. LLF: 94.97055616665753
Iteration: 8, Func. Count: 89, Neg. LLF: 94.96186496348031
Iteration: 9, Func. Count: 99, Neg. LLF: 94.96082541429472
Iteration: 10, Func. Count: 109, Neg. LLF: 94.96064649439715
Iteration: 11, Func. Count: 119, Neg. LLF: 94.96063963548899
Iteration: 12, Func. Count: 128, Neg. LLF: 94.96063960700045
Optimization terminated successfully (Exit mode 0)
Current function value: 94.96063963548899
Iterations: 12
Function evaluations: 128
Gradient evaluations: 12
Iteration: 1, Func. Count: 8, Neg. LLF: 115.22588630629993
Iteration: 2, Func. Count: 17, Neg. LLF: 155.62339079121412
Iteration: 3, Func. Count: 25, Neg. LLF: 11286936.47587681
Iteration: 4, Func. Count: 33, Neg. LLF: 96.16255399568553
Iteration: 5, Func. Count: 40, Neg. LLF: 95.30825947225365
Iteration: 6, Func. Count: 47, Neg. LLF: 94.9490363738458
Iteration: 7, Func. Count: 54, Neg. LLF: 94.93970615972447
Iteration: 8, Func. Count: 62, Neg. LLF: 94.78233090833304
Iteration: 9, Func. Count: 69, Neg. LLF: 94.75851745283339
Iteration: 10, Func. Count: 76, Neg. LLF: 94.75715230077815
Iteration: 11, Func. Count: 83, Neg. LLF: 94.75708158289792
Iteration: 12, Func. Count: 90, Neg. LLF: 94.75707015432837
Iteration: 13, Func. Count: 97, Neg. LLF: 94.7570690706267
Iteration: 14, Func. Count: 103, Neg. LLF: 94.7570690706294
Optimization terminated successfully (Exit mode 0)
Current function value: 94.7570690706267
Iterations: 14
Function evaluations: 103
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 134.52049108001216
Iteration: 2, Func. Count: 21, Neg. LLF: 99.66463295005595
Iteration: 3, Func. Count: 30, Neg. LLF: 98.89916794784337
Iteration: 4, Func. Count: 39, Neg. LLF: 96.61381133631842
Iteration: 5, Func. Count: 48, Neg. LLF: 96.06853243604657
Iteration: 6, Func. Count: 56, Neg. LLF: 96.61742256134256
Iteration: 7, Func. Count: 65, Neg. LLF: 95.71918356942884
Iteration: 8, Func. Count: 73, Neg. LLF: 95.61155962536998
Iteration: 9, Func. Count: 81, Neg. LLF: 95.60717036241
Iteration: 10, Func. Count: 89, Neg. LLF: 95.60706017657625
Iteration: 11, Func. Count: 96, Neg. LLF: 95.60706030707361
Optimization terminated successfully (Exit mode 0)
Current function value: 95.60706017657625
Iterations: 11
Function evaluations: 96
Gradient evaluations: 11
Iteration: 1, Func. Count: 10, Neg. LLF: 173.9723702728771
Iteration: 2, Func. Count: 23, Neg. LLF: 96.81110312730017
Iteration: 3, Func. Count: 33, Neg. LLF: 95.63948413960387
Iteration: 4, Func. Count: 42, Neg. LLF: 96.11647535675507
Iteration: 5, Func. Count: 52, Neg. LLF: 96.69279524633527
Iteration: 6, Func. Count: 62, Neg. LLF: 95.19695566268216
Iteration: 7, Func. Count: 71, Neg. LLF: 95.10429583863106
Iteration: 8, Func. Count: 80, Neg. LLF: 95.08250162286585
Iteration: 9, Func. Count: 89, Neg. LLF: 95.06317534327334
Iteration: 10, Func. Count: 98, Neg. LLF: 95.04326282134275
Iteration: 11, Func. Count: 107, Neg. LLF: 95.02892444700528
Iteration: 12, Func. Count: 116, Neg. LLF: 95.02181833754813
Iteration: 13, Func. Count: 125, Neg. LLF: 95.02160049962188
Iteration: 14, Func. Count: 134, Neg. LLF: 95.0215738978417
Iteration: 15, Func. Count: 142, Neg. LLF: 95.0215738494204
Optimization terminated successfully (Exit mode 0)
Current function value: 95.0215738978417
Iterations: 15
Function evaluations: 142
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 120.37288515409942
Iteration: 2, Func. Count: 26, Neg. LLF: 923395.8890312703
Iteration: 3, Func. Count: 37, Neg. LLF: 97.91139211297671
Iteration: 4, Func. Count: 48, Neg. LLF: 98.64199954917217
Iteration: 5, Func. Count: 59, Neg. LLF: 96.61436428385187
Iteration: 6, Func. Count: 70, Neg. LLF: 94.61181232238833
Iteration: 7, Func. Count: 80, Neg. LLF: 94.44235972828349
Iteration: 8, Func. Count: 91, Neg. LLF: 7871126.831651258
Iteration: 9, Func. Count: 103, Neg. LLF: 96.05837940065302
Iteration: 10, Func. Count: 115, Neg. LLF: 93.79822732006271
Iteration: 11, Func. Count: 126, Neg. LLF: 93.62368811320009
Iteration: 12, Func. Count: 136, Neg. LLF: 94.42894864969658
Iteration: 13, Func. Count: 147, Neg. LLF: 93.62220918520865
Iteration: 14, Func. Count: 158, Neg. LLF: 93.51607667443102
Iteration: 15, Func. Count: 168, Neg. LLF: 93.49861479704198
Iteration: 16, Func. Count: 178, Neg. LLF: 93.49048168484863
Iteration: 17, Func. Count: 188, Neg. LLF: 93.48075264536051
Iteration: 18, Func. Count: 198, Neg. LLF: 93.4717172406369
Iteration: 19, Func. Count: 208, Neg. LLF: 93.46157546020972
Iteration: 20, Func. Count: 218, Neg. LLF: 93.45291429882401
Iteration: 21, Func. Count: 228, Neg. LLF: 93.44579310528034
Iteration: 22, Func. Count: 238, Neg. LLF: 93.44346423701388
Iteration: 23, Func. Count: 248, Neg. LLF: 93.44326683809663
Iteration: 24, Func. Count: 258, Neg. LLF: 93.443235066713
Iteration: 25, Func. Count: 267, Neg. LLF: 93.4432350667174
Optimization terminated successfully (Exit mode 0)
Current function value: 93.443235066713
Iterations: 25
Function evaluations: 267
Gradient evaluations: 25
Iteration: 1, Func. Count: 12, Neg. LLF: 122.87847791506522
Iteration: 2, Func. Count: 28, Neg. LLF: 2876402.232165125
Iteration: 3, Func. Count: 40, Neg. LLF: 19277.426406891664
Iteration: 4, Func. Count: 52, Neg. LLF: 102.19798475089017
Iteration: 5, Func. Count: 64, Neg. LLF: 98.40236795436613
Iteration: 6, Func. Count: 76, Neg. LLF: 95.1781517768859
Iteration: 7, Func. Count: 87, Neg. LLF: 95.47066202449722
Iteration: 8, Func. Count: 99, Neg. LLF: 99.93349718290506
Iteration: 9, Func. Count: 111, Neg. LLF: 94.29927364019288
Iteration: 10, Func. Count: 122, Neg. LLF: 94.8552163828179
Iteration: 11, Func. Count: 134, Neg. LLF: 94.29132949969109
Iteration: 12, Func. Count: 146, Neg. LLF: 93.67829308144012
Iteration: 13, Func. Count: 157, Neg. LLF: 93.93263275863627
Iteration: 14, Func. Count: 169, Neg. LLF: 93.5624178099279
Iteration: 15, Func. Count: 180, Neg. LLF: 93.5417260387409
Iteration: 16, Func. Count: 191, Neg. LLF: 93.53275251269046
Iteration: 17, Func. Count: 202, Neg. LLF: 93.5112116311092
Iteration: 18, Func. Count: 213, Neg. LLF: 93.48051807410602
Iteration: 19, Func. Count: 224, Neg. LLF: 93.45757614474711
Iteration: 20, Func. Count: 235, Neg. LLF: 93.4454192920505
Iteration: 21, Func. Count: 246, Neg. LLF: 93.44414321401592
Iteration: 22, Func. Count: 257, Neg. LLF: 93.44361588857646
Iteration: 23, Func. Count: 268, Neg. LLF: 93.44326613011246
Iteration: 24, Func. Count: 279, Neg. LLF: 93.44323630548858
Iteration: 25, Func. Count: 290, Neg. LLF: 93.443234840385
Iteration: 26, Func. Count: 300, Neg. LLF: 93.44323492217812
Optimization terminated successfully (Exit mode 0)
Current function value: 93.443234840385
Iterations: 26
Function evaluations: 300
Gradient evaluations: 26
Iteration: 1, Func. Count: 9, Neg. LLF: 113.7478086213143
Iteration: 2, Func. Count: 19, Neg. LLF: 274.76472399138027
Iteration: 3, Func. Count: 28, Neg. LLF: 10954298.960160693
Iteration: 4, Func. Count: 37, Neg. LLF: 96.29446636579763
Iteration: 5, Func. Count: 46, Neg. LLF: 94.84382855959416
Iteration: 6, Func. Count: 54, Neg. LLF: 95.27746949043852
Iteration: 7, Func. Count: 63, Neg. LLF: 94.77601082857822
Iteration: 8, Func. Count: 71, Neg. LLF: 94.78117840219949
Iteration: 9, Func. Count: 80, Neg. LLF: 94.76983367517228
Iteration: 10, Func. Count: 89, Neg. LLF: 94.75709486155112
Iteration: 11, Func. Count: 97, Neg. LLF: 94.7570300730095
Iteration: 12, Func. Count: 105, Neg. LLF: 94.75702560360418
Iteration: 13, Func. Count: 112, Neg. LLF: 94.7570256036542
Optimization terminated successfully (Exit mode 0)
Current function value: 94.75702560360418
Iterations: 13
Function evaluations: 112
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 134.31102108188526
Iteration: 2, Func. Count: 23, Neg. LLF: 99.54383983749868
Iteration: 3, Func. Count: 33, Neg. LLF: 97.85697378356903
Iteration: 4, Func. Count: 43, Neg. LLF: 96.72443775397099
Iteration: 5, Func. Count: 53, Neg. LLF: 96.06661111094543
Iteration: 6, Func. Count: 62, Neg. LLF: 97.54986438448444
Iteration: 7, Func. Count: 72, Neg. LLF: 95.9846175712288
Iteration: 8, Func. Count: 82, Neg. LLF: 95.60738229886678
Iteration: 9, Func. Count: 91, Neg. LLF: 95.60710265963118
Iteration: 10, Func. Count: 100, Neg. LLF: 95.60706003037545
Iteration: 11, Func. Count: 108, Neg. LLF: 95.60706016020318
Optimization terminated successfully (Exit mode 0)
Current function value: 95.60706003037545
Iterations: 11
Function evaluations: 108
Gradient evaluations: 11
Iteration: 1, Func. Count: 11, Neg. LLF: 173.95467884415152
Iteration: 2, Func. Count: 25, Neg. LLF: 96.69997799946914
Iteration: 3, Func. Count: 36, Neg. LLF: 95.46212866740095
Iteration: 4, Func. Count: 46, Neg. LLF: 96.45393725569603
Iteration: 5, Func. Count: 57, Neg. LLF: 108.41006921275562
Iteration: 6, Func. Count: 69, Neg. LLF: 95.1706583199246
Iteration: 7, Func. Count: 79, Neg. LLF: 95.0423609264183
Iteration: 8, Func. Count: 89, Neg. LLF: 95.02937061109795
Iteration: 9, Func. Count: 99, Neg. LLF: 95.02267381577943
Iteration: 10, Func. Count: 109, Neg. LLF: 95.02194425371393
Iteration: 11, Func. Count: 119, Neg. LLF: 95.02157515554345
Iteration: 12, Func. Count: 129, Neg. LLF: 95.021574866915
Optimization terminated successfully (Exit mode 0)
Current function value: 95.021574866915
Iterations: 12
Function evaluations: 129
Gradient evaluations: 12
Iteration: 1, Func. Count: 12, Neg. LLF: 120.56653624272037
Iteration: 2, Func. Count: 28, Neg. LLF: 1035396.1025373068
Iteration: 3, Func. Count: 40, Neg. LLF: 98.04137548135196
Iteration: 4, Func. Count: 52, Neg. LLF: 98.65266930167385
Iteration: 5, Func. Count: 64, Neg. LLF: 96.66513330319653
Iteration: 6, Func. Count: 76, Neg. LLF: 94.6146771502514
Iteration: 7, Func. Count: 87, Neg. LLF: 94.2368825612266
Iteration: 8, Func. Count: 98, Neg. LLF: 137.2420962297992
Iteration: 9, Func. Count: 111, Neg. LLF: 96.36228625376118
Iteration: 10, Func. Count: 123, Neg. LLF: 94.80385012281718
Iteration: 11, Func. Count: 136, Neg. LLF: 93.641378532251
Iteration: 12, Func. Count: 147, Neg. LLF: 93.63116254979948
Iteration: 13, Func. Count: 159, Neg. LLF: 94.06014279028048
Iteration: 14, Func. Count: 171, Neg. LLF: 93.54212336580002
Iteration: 15, Func. Count: 182, Neg. LLF: 93.51209209562928
Iteration: 16, Func. Count: 193, Neg. LLF: 93.49982235218586
Iteration: 17, Func. Count: 204, Neg. LLF: 93.48808017532765
Iteration: 18, Func. Count: 215, Neg. LLF: 93.4741093405327
Iteration: 19, Func. Count: 226, Neg. LLF: 93.46694839403098
Iteration: 20, Func. Count: 237, Neg. LLF: 93.45917660782318
Iteration: 21, Func. Count: 248, Neg. LLF: 93.45250832748474
Iteration: 22, Func. Count: 259, Neg. LLF: 93.44591524119545
Iteration: 23, Func. Count: 270, Neg. LLF: 93.4435691043658
Iteration: 24, Func. Count: 281, Neg. LLF: 93.4432553437341
Iteration: 25, Func. Count: 292, Neg. LLF: 93.44323576028333
Iteration: 26, Func. Count: 303, Neg. LLF: 93.44323483220279
Optimization terminated successfully (Exit mode 0)
Current function value: 93.44323483220279
Iterations: 26
Function evaluations: 303
Gradient evaluations: 26
Iteration: 1, Func. Count: 13, Neg. LLF: 123.08582435439257
Iteration: 2, Func. Count: 30, Neg. LLF: 2876534.3515897617
Iteration: 3, Func. Count: 43, Neg. LLF: 32614.282185066542
Iteration: 4, Func. Count: 56, Neg. LLF: 101.89772814952524
Iteration: 5, Func. Count: 69, Neg. LLF: 98.31942069486193
Iteration: 6, Func. Count: 82, Neg. LLF: 95.10522724771238
Iteration: 7, Func. Count: 94, Neg. LLF: 95.60708429696851
Iteration: 8, Func. Count: 107, Neg. LLF: 101.80483886051782
Iteration: 9, Func. Count: 120, Neg. LLF: 94.43719930192744
Iteration: 10, Func. Count: 133, Neg. LLF: 95.13378659769391
Iteration: 11, Func. Count: 146, Neg. LLF: 93.90530061015264
Iteration: 12, Func. Count: 158, Neg. LLF: 93.59900467342004
Iteration: 13, Func. Count: 170, Neg. LLF: 93.5730746639749
Iteration: 14, Func. Count: 182, Neg. LLF: 93.55615002176442
Iteration: 15, Func. Count: 194, Neg. LLF: 93.5388683627766
Iteration: 16, Func. Count: 206, Neg. LLF: 93.52381826987602
Iteration: 17, Func. Count: 218, Neg. LLF: 93.49501822936816
Iteration: 18, Func. Count: 230, Neg. LLF: 93.4719310878242
Iteration: 19, Func. Count: 242, Neg. LLF: 93.45651216898372
Iteration: 20, Func. Count: 254, Neg. LLF: 93.44796936481279
Iteration: 21, Func. Count: 266, Neg. LLF: 93.44430877132152
Iteration: 22, Func. Count: 278, Neg. LLF: 93.44346940982551
Iteration: 23, Func. Count: 290, Neg. LLF: 93.44324343325101
Iteration: 24, Func. Count: 302, Neg. LLF: 93.44323518861326
Iteration: 25, Func. Count: 313, Neg. LLF: 93.44323527035438
Optimization terminated successfully (Exit mode 0)
Current function value: 93.44323518861326
Iterations: 25
Function evaluations: 313
Gradient evaluations: 25
Iteration: 1, Func. Count: 6, Neg. LLF: 155.18264986902523
Iteration: 2, Func. Count: 14, Neg. LLF: 147.7537405632973
Iteration: 3, Func. Count: 21, Neg. LLF: 97.62770887405237
Iteration: 4, Func. Count: 26, Neg. LLF: 97.55372581804322
Iteration: 5, Func. Count: 31, Neg. LLF: 97.57802795706823
Iteration: 6, Func. Count: 38, Neg. LLF: 97.54527450105337
Iteration: 7, Func. Count: 43, Neg. LLF: 97.54490279258258
Iteration: 8, Func. Count: 48, Neg. LLF: 97.5447623878149
Iteration: 9, Func. Count: 53, Neg. LLF: 97.54457267833084
Iteration: 10, Func. Count: 58, Neg. LLF: 97.544551544485
Iteration: 11, Func. Count: 63, Neg. LLF: 97.54454991496202
Iteration: 12, Func. Count: 67, Neg. LLF: 97.54455008892006
Optimization terminated successfully (Exit mode 0)
Current function value: 97.54454991496202
Iterations: 12
Function evaluations: 67
Gradient evaluations: 12
Iteration: 1, Func. Count: 7, Neg. LLF: 179.9711989423347
Iteration: 2, Func. Count: 17, Neg. LLF: 95.99420284624622
Iteration: 3, Func. Count: 23, Neg. LLF: 95.61327380698955
Iteration: 4, Func. Count: 29, Neg. LLF: 96.41778180169698
Iteration: 5, Func. Count: 36, Neg. LLF: 95.60830206730955
Iteration: 6, Func. Count: 42, Neg. LLF: 95.60706230705536
Iteration: 7, Func. Count: 48, Neg. LLF: 95.6070600268734
Iteration: 8, Func. Count: 53, Neg. LLF: 95.60706015659932
Optimization terminated successfully (Exit mode 0)
Current function value: 95.6070600268734
Iterations: 8
Function evaluations: 53
Gradient evaluations: 8
Iteration: 1, Func. Count: 8, Neg. LLF: 177.19063415595494
Iteration: 2, Func. Count: 19, Neg. LLF: 95.78586693823696
Iteration: 3, Func. Count: 26, Neg. LLF: 96.45127522228762
Iteration: 4, Func. Count: 34, Neg. LLF: 95.65695398596459
Iteration: 5, Func. Count: 41, Neg. LLF: 95.62937584776243
Iteration: 6, Func. Count: 48, Neg. LLF: 95.62252109590231
Iteration: 7, Func. Count: 55, Neg. LLF: 95.62247744450453
Iteration: 8, Func. Count: 61, Neg. LLF: 95.62247751870355
Optimization terminated successfully (Exit mode 0)
Current function value: 95.62247744450453
Iterations: 8
Function evaluations: 61
Gradient evaluations: 8
Iteration: 1, Func. Count: 9, Neg. LLF: 178.6517279986383
Iteration: 2, Func. Count: 22, Neg. LLF: 95.77424507326182
Iteration: 3, Func. Count: 30, Neg. LLF: 95.7920671861448
Iteration: 4, Func. Count: 39, Neg. LLF: 99.62572139933575
Iteration: 5, Func. Count: 48, Neg. LLF: 95.66517654205659
Iteration: 6, Func. Count: 56, Neg. LLF: 95.66140516485287
Iteration: 7, Func. Count: 64, Neg. LLF: 95.63476475545447
Iteration: 8, Func. Count: 72, Neg. LLF: 95.63999742038988
Iteration: 9, Func. Count: 81, Neg. LLF: 95.62662250447062
Iteration: 10, Func. Count: 89, Neg. LLF: 95.62242609535069
Iteration: 11, Func. Count: 97, Neg. LLF: 95.61217120445217
Iteration: 12, Func. Count: 105, Neg. LLF: 95.6094124879614
Iteration: 13, Func. Count: 113, Neg. LLF: 95.60723127058118
Iteration: 14, Func. Count: 121, Neg. LLF: 95.60707733481335
Iteration: 15, Func. Count: 129, Neg. LLF: 100.52481222631287
Iteration: 16, Func. Count: 140, Neg. LLF: 95.60707481459333
Iteration: 17, Func. Count: 149, Neg. LLF: 95.6070600200421
Iteration: 18, Func. Count: 156, Neg. LLF: 95.60705989326505
Optimization terminated successfully (Exit mode 0)
Current function value: 95.6070600200421
Iterations: 19
Function evaluations: 156
Gradient evaluations: 18
Iteration: 1, Func. Count: 10, Neg. LLF: 184.14234796442923
Iteration: 2, Func. Count: 24, Neg. LLF: 95.77428486722177
Iteration: 3, Func. Count: 33, Neg. LLF: 95.74977813334013
Iteration: 4, Func. Count: 42, Neg. LLF: 96.54969212630918
Iteration: 5, Func. Count: 52, Neg. LLF: 95.71615910904003
Iteration: 6, Func. Count: 61, Neg. LLF: 95.696716086019
Iteration: 7, Func. Count: 70, Neg. LLF: 95.66597583364153
Iteration: 8, Func. Count: 79, Neg. LLF: 95.64095240382848
Iteration: 9, Func. Count: 88, Neg. LLF: 95.61373425142867
Iteration: 10, Func. Count: 97, Neg. LLF: 95.60780639595906
Iteration: 11, Func. Count: 106, Neg. LLF: 95.60710606585002
Iteration: 12, Func. Count: 115, Neg. LLF: 95.60706002456428
Iteration: 13, Func. Count: 123, Neg. LLF: 95.60705990001931
Optimization terminated successfully (Exit mode 0)
Current function value: 95.60706002456428
Iterations: 13
Function evaluations: 123
Gradient evaluations: 13
Iteration: 1, Func. Count: 7, Neg. LLF: 155.8647263317193
Iteration: 2, Func. Count: 16, Neg. LLF: 172.0096813459052
Iteration: 3, Func. Count: 23, Neg. LLF: 96.59085717270946
Iteration: 4, Func. Count: 29, Neg. LLF: 99.64922030378752
Iteration: 5, Func. Count: 37, Neg. LLF: 98.59890894923991
Iteration: 6, Func. Count: 44, Neg. LLF: 95.69962954685013
Iteration: 7, Func. Count: 50, Neg. LLF: 95.59615558408709
Iteration: 8, Func. Count: 56, Neg. LLF: 95.563621140338
Iteration: 9, Func. Count: 62, Neg. LLF: 95.55586488506377
Iteration: 10, Func. Count: 68, Neg. LLF: 95.54788862492116
Iteration: 11, Func. Count: 74, Neg. LLF: 95.54754291572256
Iteration: 12, Func. Count: 80, Neg. LLF: 95.54744458292517
Iteration: 13, Func. Count: 86, Neg. LLF: 95.54744362972228
Optimization terminated successfully (Exit mode 0)
Current function value: 95.54744362972228
Iterations: 13
Function evaluations: 86
Gradient evaluations: 13
Iteration: 1, Func. Count: 8, Neg. LLF: 135.05456432727604
Iteration: 2, Func. Count: 19, Neg. LLF: 99.60498337101761
Iteration: 3, Func. Count: 27, Neg. LLF: 98.67756026961835
Iteration: 4, Func. Count: 35, Neg. LLF: 96.62247131300072
Iteration: 5, Func. Count: 43, Neg. LLF: 96.03218585736185
Iteration: 6, Func. Count: 50, Neg. LLF: 95.73921014649584
Iteration: 7, Func. Count: 57, Neg. LLF: 95.6265187174125
Iteration: 8, Func. Count: 64, Neg. LLF: 95.60768480958396
Iteration: 9, Func. Count: 71, Neg. LLF: 95.60706560590276
Iteration: 10, Func. Count: 78, Neg. LLF: 95.60706002187001
Iteration: 11, Func. Count: 84, Neg. LLF: 95.6070601514848
Optimization terminated successfully (Exit mode 0)
Current function value: 95.60706002187001
Iterations: 11
Function evaluations: 84
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 174.67652467368123
Iteration: 2, Func. Count: 21, Neg. LLF: 96.72554518338185
Iteration: 3, Func. Count: 30, Neg. LLF: 95.39559271012638
Iteration: 4, Func. Count: 38, Neg. LLF: 96.5657703015039
Iteration: 5, Func. Count: 47, Neg. LLF: 95.28773307815196
Iteration: 6, Func. Count: 56, Neg. LLF: 95.064602227033
Iteration: 7, Func. Count: 64, Neg. LLF: 95.0434486266293
Iteration: 8, Func. Count: 72, Neg. LLF: 95.03184875483652
Iteration: 9, Func. Count: 80, Neg. LLF: 95.02572729393842
Iteration: 10, Func. Count: 88, Neg. LLF: 95.02195879586121
Iteration: 11, Func. Count: 96, Neg. LLF: 95.02160121636187
Iteration: 12, Func. Count: 104, Neg. LLF: 95.02157396019244
Iteration: 13, Func. Count: 111, Neg. LLF: 95.02157391156632
Optimization terminated successfully (Exit mode 0)
Current function value: 95.02157396019244
Iterations: 13
Function evaluations: 111
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 155.45404051061894
Iteration: 2, Func. Count: 24, Neg. LLF: 101.90902981949657
Iteration: 3, Func. Count: 34, Neg. LLF: 96.48816680755347
Iteration: 4, Func. Count: 44, Neg. LLF: 96.23107681481343
Iteration: 5, Func. Count: 54, Neg. LLF: 95.0471986720613
Iteration: 6, Func. Count: 63, Neg. LLF: 273.8883719222402
Iteration: 7, Func. Count: 75, Neg. LLF: 95.0362340695539
Iteration: 8, Func. Count: 85, Neg. LLF: 94.34074643650621
Iteration: 9, Func. Count: 94, Neg. LLF: 94.37175508384219
Iteration: 10, Func. Count: 104, Neg. LLF: 94.38524140538708
Iteration: 11, Func. Count: 114, Neg. LLF: 94.32820482527659
Iteration: 12, Func. Count: 123, Neg. LLF: 94.32765742438818
Iteration: 13, Func. Count: 132, Neg. LLF: 94.32740505256629
Iteration: 14, Func. Count: 141, Neg. LLF: 94.3270923383478
Iteration: 15, Func. Count: 150, Neg. LLF: 94.3269250480895
Iteration: 16, Func. Count: 159, Neg. LLF: 94.32687168825638
Iteration: 17, Func. Count: 168, Neg. LLF: 94.32686661854217
Iteration: 18, Func. Count: 176, Neg. LLF: 94.32686661846225
Optimization terminated successfully (Exit mode 0)
Current function value: 94.32686661854217
Iterations: 18
Function evaluations: 176
Gradient evaluations: 18
Iteration: 1, Func. Count: 11, Neg. LLF: 183.32953453801474
Iteration: 2, Func. Count: 26, Neg. LLF: 96.04268213058633
Iteration: 3, Func. Count: 36, Neg. LLF: 101.14771020678583
Iteration: 4, Func. Count: 47, Neg. LLF: 96.13550132868802
Iteration: 5, Func. Count: 58, Neg. LLF: 95.11800393467604
Iteration: 6, Func. Count: 68, Neg. LLF: 95.09238583784253
Iteration: 7, Func. Count: 79, Neg. LLF: 94.98428189337255
Iteration: 8, Func. Count: 89, Neg. LLF: 94.98060635703337
Iteration: 9, Func. Count: 100, Neg. LLF: 94.96171811929612
Iteration: 10, Func. Count: 110, Neg. LLF: 94.9612343681165
Iteration: 11, Func. Count: 120, Neg. LLF: 94.96089473329438
Iteration: 12, Func. Count: 130, Neg. LLF: 94.96068274989143
Iteration: 13, Func. Count: 140, Neg. LLF: 94.96064250205069
Iteration: 14, Func. Count: 150, Neg. LLF: 94.96063956646364
Iteration: 15, Func. Count: 159, Neg. LLF: 94.96063953788557
Optimization terminated successfully (Exit mode 0)
Current function value: 94.96063956646364
Iterations: 15
Function evaluations: 159
Gradient evaluations: 15
Iteration: 1, Func. Count: 8, Neg. LLF: 155.80482274463225
Iteration: 2, Func. Count: 18, Neg. LLF: 172.02722998032496
Iteration: 3, Func. Count: 26, Neg. LLF: 96.58453803111509
Iteration: 4, Func. Count: 33, Neg. LLF: 99.68829583281463
Iteration: 5, Func. Count: 42, Neg. LLF: 98.58405579282804
Iteration: 6, Func. Count: 50, Neg. LLF: 95.70013278363469
Iteration: 7, Func. Count: 57, Neg. LLF: 95.59312373192552
Iteration: 8, Func. Count: 64, Neg. LLF: 95.56308056989508
Iteration: 9, Func. Count: 71, Neg. LLF: 95.55547742705905
Iteration: 10, Func. Count: 78, Neg. LLF: 95.5479178906682
Iteration: 11, Func. Count: 85, Neg. LLF: 95.54754790786893
Iteration: 12, Func. Count: 92, Neg. LLF: 95.54744474698128
Iteration: 13, Func. Count: 99, Neg. LLF: 95.54744363950905
Iteration: 14, Func. Count: 105, Neg. LLF: 95.54744372909887
Optimization terminated successfully (Exit mode 0)
Current function value: 95.54744363950905
Iterations: 14
Function evaluations: 105
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 136.59954049943
Iteration: 2, Func. Count: 21, Neg. LLF: 100.09088505477511
Iteration: 3, Func. Count: 31, Neg. LLF: 98.19183116916722
Iteration: 4, Func. Count: 40, Neg. LLF: 95.98027506887894
Iteration: 5, Func. Count: 48, Neg. LLF: 95.61463963616984
Iteration: 6, Func. Count: 56, Neg. LLF: 95.61217958711427
Iteration: 7, Func. Count: 64, Neg. LLF: 95.60995665208472
Iteration: 8, Func. Count: 72, Neg. LLF: 95.60818527050118
Iteration: 9, Func. Count: 80, Neg. LLF: 95.60728684528031
Iteration: 10, Func. Count: 88, Neg. LLF: 117.26324007406143
Iteration: 11, Func. Count: 100, Neg. LLF: 95.61455831952264
Iteration: 12, Func. Count: 109, Neg. LLF: 95.60706001873241
Iteration: 13, Func. Count: 116, Neg. LLF: 95.60706014837153
Optimization terminated successfully (Exit mode 0)
Current function value: 95.60706001873241
Iterations: 14
Function evaluations: 116
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 175.65317774984243
Iteration: 2, Func. Count: 23, Neg. LLF: 96.91771353339539
Iteration: 3, Func. Count: 33, Neg. LLF: 95.46448676792883
Iteration: 4, Func. Count: 42, Neg. LLF: 96.5096596041533
Iteration: 5, Func. Count: 52, Neg. LLF: 96.81311520654775
Iteration: 6, Func. Count: 62, Neg. LLF: 95.09010367959665
Iteration: 7, Func. Count: 71, Neg. LLF: 95.05426403057153
Iteration: 8, Func. Count: 80, Neg. LLF: 95.03979088975377
Iteration: 9, Func. Count: 89, Neg. LLF: 95.02867526937854
Iteration: 10, Func. Count: 98, Neg. LLF: 95.0226911975683
Iteration: 11, Func. Count: 107, Neg. LLF: 95.02173261099735
Iteration: 12, Func. Count: 116, Neg. LLF: 95.0215776257372
Iteration: 13, Func. Count: 125, Neg. LLF: 95.02157398048338
Iteration: 14, Func. Count: 133, Neg. LLF: 95.02157393182279
Optimization terminated successfully (Exit mode 0)
Current function value: 95.02157398048338
Iterations: 14
Function evaluations: 133
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 159.24761942497497
Iteration: 2, Func. Count: 26, Neg. LLF: 101.92430552365887
Iteration: 3, Func. Count: 37, Neg. LLF: 96.9630518890011
Iteration: 4, Func. Count: 48, Neg. LLF: 96.74234980587573
Iteration: 5, Func. Count: 59, Neg. LLF: 98.21701563505638
Iteration: 6, Func. Count: 70, Neg. LLF: 95.58750286635964
Iteration: 7, Func. Count: 81, Neg. LLF: 95.40547818683372
Iteration: 8, Func. Count: 92, Neg. LLF: 94.50663721939077
Iteration: 9, Func. Count: 102, Neg. LLF: 95.0094144275213
Iteration: 10, Func. Count: 113, Neg. LLF: 94.39948554913347
Iteration: 11, Func. Count: 123, Neg. LLF: 94.39394075996542
Iteration: 12, Func. Count: 133, Neg. LLF: 95.30055887530195
Iteration: 13, Func. Count: 144, Neg. LLF: 94.35109521291956
Iteration: 14, Func. Count: 154, Neg. LLF: 94.3629672648181
Iteration: 15, Func. Count: 165, Neg. LLF: 94.32746781728957
Iteration: 16, Func. Count: 175, Neg. LLF: 94.32690417366116
Iteration: 17, Func. Count: 185, Neg. LLF: 94.32686978129621
Iteration: 18, Func. Count: 195, Neg. LLF: 94.3268672059952
Iteration: 19, Func. Count: 205, Neg. LLF: 94.32686624128297
Optimization terminated successfully (Exit mode 0)
Current function value: 94.32686624128297
Iterations: 19
Function evaluations: 205
Gradient evaluations: 19
Iteration: 1, Func. Count: 12, Neg. LLF: 183.13420964518536
Iteration: 2, Func. Count: 28, Neg. LLF: 96.02856777344213
Iteration: 3, Func. Count: 39, Neg. LLF: 99.42645202556417
Iteration: 4, Func. Count: 51, Neg. LLF: 96.49778636566333
Iteration: 5, Func. Count: 63, Neg. LLF: 95.16445780606183
Iteration: 6, Func. Count: 74, Neg. LLF: 94.98895043182172
Iteration: 7, Func. Count: 85, Neg. LLF: 94.962348910447
Iteration: 8, Func. Count: 96, Neg. LLF: 94.96075021277825
Iteration: 9, Func. Count: 107, Neg. LLF: 94.9606844230431
Iteration: 10, Func. Count: 118, Neg. LLF: 94.96065857403568
Iteration: 11, Func. Count: 129, Neg. LLF: 94.96064882963424
Iteration: 12, Func. Count: 140, Neg. LLF: 94.96064105724432
Iteration: 13, Func. Count: 151, Neg. LLF: 94.96063962545229
Iteration: 14, Func. Count: 161, Neg. LLF: 94.960639596805
Optimization terminated successfully (Exit mode 0)
Current function value: 94.96063962545229
Iterations: 14
Function evaluations: 161
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 113.44995698840359
Iteration: 2, Func. Count: 19, Neg. LLF: 2596286.128534279
Iteration: 3, Func. Count: 28, Neg. LLF: 11290650.00751463
Iteration: 4, Func. Count: 37, Neg. LLF: 98.34563402229149
Iteration: 5, Func. Count: 46, Neg. LLF: 94.95384838833235
Iteration: 6, Func. Count: 54, Neg. LLF: 94.91441286824592
Iteration: 7, Func. Count: 62, Neg. LLF: 94.83760004088971
Iteration: 8, Func. Count: 70, Neg. LLF: 94.80162828439306
Iteration: 9, Func. Count: 78, Neg. LLF: 94.77052629971065
Iteration: 10, Func. Count: 86, Neg. LLF: 94.75790475092235
Iteration: 11, Func. Count: 94, Neg. LLF: 94.75707384250897
Iteration: 12, Func. Count: 102, Neg. LLF: 94.75706909285918
Iteration: 13, Func. Count: 109, Neg. LLF: 94.75706909285822
Optimization terminated successfully (Exit mode 0)
Current function value: 94.75706909285918
Iterations: 13
Function evaluations: 109
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 135.9563631221611
Iteration: 2, Func. Count: 23, Neg. LLF: 100.19955639153531
Iteration: 3, Func. Count: 34, Neg. LLF: 98.5055152772191
Iteration: 4, Func. Count: 44, Neg. LLF: 95.97898626601612
Iteration: 5, Func. Count: 53, Neg. LLF: 95.63399532235137
Iteration: 6, Func. Count: 62, Neg. LLF: 95.6182011029154
Iteration: 7, Func. Count: 71, Neg. LLF: 95.61534088388778
Iteration: 8, Func. Count: 80, Neg. LLF: 95.61053686160932
Iteration: 9, Func. Count: 89, Neg. LLF: 95.6098123613418
Iteration: 10, Func. Count: 98, Neg. LLF: 95.60835768544528
Iteration: 11, Func. Count: 107, Neg. LLF: 100.5246339102406
Iteration: 12, Func. Count: 119, Neg. LLF: 95.60706014423707
Iteration: 13, Func. Count: 128, Neg. LLF: 95.6070775937467
Optimization terminated successfully (Exit mode 0)
Current function value: 95.60706004931899
Iterations: 14
Function evaluations: 129
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 175.2292290588799
Iteration: 2, Func. Count: 25, Neg. LLF: 97.01143549173213
Iteration: 3, Func. Count: 36, Neg. LLF: 96.21376231950582
Iteration: 4, Func. Count: 46, Neg. LLF: 96.02541276006102
Iteration: 5, Func. Count: 56, Neg. LLF: 170.71716940065915
Iteration: 6, Func. Count: 68, Neg. LLF: 95.08240661589332
Iteration: 7, Func. Count: 78, Neg. LLF: 95.03235587170283
Iteration: 8, Func. Count: 88, Neg. LLF: 95.02487297756728
Iteration: 9, Func. Count: 98, Neg. LLF: 95.0228005768842
Iteration: 10, Func. Count: 108, Neg. LLF: 95.0216044953662
Iteration: 11, Func. Count: 118, Neg. LLF: 95.02157411971005
Iteration: 12, Func. Count: 127, Neg. LLF: 95.02157407097893
Optimization terminated successfully (Exit mode 0)
Current function value: 95.02157411971005
Iterations: 12
Function evaluations: 127
Gradient evaluations: 12
Iteration: 1, Func. Count: 12, Neg. LLF: 121.05559785815487
Iteration: 2, Func. Count: 28, Neg. LLF: 1036214.8331915517
Iteration: 3, Func. Count: 40, Neg. LLF: 97.81941275336766
Iteration: 4, Func. Count: 52, Neg. LLF: 98.49306168383674
Iteration: 5, Func. Count: 64, Neg. LLF: 96.11757604724899
Iteration: 6, Func. Count: 76, Neg. LLF: 94.5927466084622
Iteration: 7, Func. Count: 87, Neg. LLF: 94.53013684365605
Iteration: 8, Func. Count: 99, Neg. LLF: 2464942.099613234
Iteration: 9, Func. Count: 112, Neg. LLF: 96.43681509452173
Iteration: 10, Func. Count: 125, Neg. LLF: 93.66520361159155
Iteration: 11, Func. Count: 136, Neg. LLF: 93.5858189906997
Iteration: 12, Func. Count: 147, Neg. LLF: 93.54130354494662
Iteration: 13, Func. Count: 158, Neg. LLF: 93.51058898553026
Iteration: 14, Func. Count: 169, Neg. LLF: 93.50277368803974
Iteration: 15, Func. Count: 180, Neg. LLF: 93.49437804709879
Iteration: 16, Func. Count: 191, Neg. LLF: 93.47728753208395
Iteration: 17, Func. Count: 202, Neg. LLF: 93.46913358819343
Iteration: 18, Func. Count: 213, Neg. LLF: 93.45911336801616
Iteration: 19, Func. Count: 224, Neg. LLF: 93.45069401866692
Iteration: 20, Func. Count: 235, Neg. LLF: 93.44436720774745
Iteration: 21, Func. Count: 246, Neg. LLF: 93.44334198094776
Iteration: 22, Func. Count: 257, Neg. LLF: 93.44324621403962
Iteration: 23, Func. Count: 268, Neg. LLF: 93.44323487550322
Iteration: 24, Func. Count: 278, Neg. LLF: 93.44323487547867
Optimization terminated successfully (Exit mode 0)
Current function value: 93.44323487550322
Iterations: 24
Function evaluations: 278
Gradient evaluations: 24
Iteration: 1, Func. Count: 13, Neg. LLF: 123.31477261524304
Iteration: 2, Func. Count: 30, Neg. LLF: 2846041.1328874556
Iteration: 3, Func. Count: 43, Neg. LLF: 5595.133984171327
Iteration: 4, Func. Count: 56, Neg. LLF: 101.29838073468392
Iteration: 5, Func. Count: 69, Neg. LLF: 98.45531158564852
Iteration: 6, Func. Count: 82, Neg. LLF: 95.0910866093694
Iteration: 7, Func. Count: 94, Neg. LLF: 95.80328222270903
Iteration: 8, Func. Count: 107, Neg. LLF: 111.88381225252408
Iteration: 9, Func. Count: 120, Neg. LLF: 95.03080587872081
Iteration: 10, Func. Count: 133, Neg. LLF: 95.16346856966517
Iteration: 11, Func. Count: 146, Neg. LLF: 94.19164281912998
Iteration: 12, Func. Count: 159, Neg. LLF: 93.65552474925704
Iteration: 13, Func. Count: 171, Neg. LLF: 93.60307280755445
Iteration: 14, Func. Count: 183, Neg. LLF: 93.5647231512765
Iteration: 15, Func. Count: 195, Neg. LLF: 93.54803094277848
Iteration: 16, Func. Count: 207, Neg. LLF: 93.53554721073304
Iteration: 17, Func. Count: 219, Neg. LLF: 93.4987599220337
Iteration: 18, Func. Count: 231, Neg. LLF: 93.4813808361923
Iteration: 19, Func. Count: 243, Neg. LLF: 93.46072285996874
Iteration: 20, Func. Count: 255, Neg. LLF: 93.44790530748617
Iteration: 21, Func. Count: 267, Neg. LLF: 93.44378244117692
Iteration: 22, Func. Count: 279, Neg. LLF: 93.44331978778376
Iteration: 23, Func. Count: 291, Neg. LLF: 93.44323651822465
Iteration: 24, Func. Count: 303, Neg. LLF: 93.44323487941774
Iteration: 25, Func. Count: 314, Neg. LLF: 93.44323496119678
Optimization terminated successfully (Exit mode 0)
Current function value: 93.44323487941774
Iterations: 25
Function evaluations: 314
Gradient evaluations: 25
Iteration: 1, Func. Count: 10, Neg. LLF: 113.58435422154191
Iteration: 2, Func. Count: 21, Neg. LLF: 2572538.54602769
Iteration: 3, Func. Count: 31, Neg. LLF: 10948280.070012834
Iteration: 4, Func. Count: 41, Neg. LLF: 106.4669361097059
Iteration: 5, Func. Count: 51, Neg. LLF: 95.66400691178153
Iteration: 6, Func. Count: 60, Neg. LLF: 95.08136272831992
Iteration: 7, Func. Count: 69, Neg. LLF: 94.88449050790064
Iteration: 8, Func. Count: 78, Neg. LLF: 94.82214204091949
Iteration: 9, Func. Count: 87, Neg. LLF: 94.96392192122906
Iteration: 10, Func. Count: 98, Neg. LLF: 95.18617051236808
Iteration: 11, Func. Count: 108, Neg. LLF: 94.78128887277016
Iteration: 12, Func. Count: 117, Neg. LLF: 94.75789086085045
Iteration: 13, Func. Count: 126, Neg. LLF: 94.75705266096678
Iteration: 14, Func. Count: 135, Neg. LLF: 94.75702533569468
Iteration: 15, Func. Count: 143, Neg. LLF: 94.75702533571034
Optimization terminated successfully (Exit mode 0)
Current function value: 94.75702533569468
Iterations: 15
Function evaluations: 143
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 135.74211338366703
Iteration: 2, Func. Count: 25, Neg. LLF: 100.08012706993343
Iteration: 3, Func. Count: 37, Neg. LLF: 97.97247369938827
Iteration: 4, Func. Count: 48, Neg. LLF: 95.9787037729151
Iteration: 5, Func. Count: 58, Neg. LLF: 95.61884818492904
Iteration: 6, Func. Count: 68, Neg. LLF: 95.61380699835215
Iteration: 7, Func. Count: 78, Neg. LLF: 95.61307488884995
Iteration: 8, Func. Count: 88, Neg. LLF: 95.60802755782726
Iteration: 9, Func. Count: 98, Neg. LLF: 127.49015891114068
Iteration: 10, Func. Count: 112, Neg. LLF: 95.76988379394497
Iteration: 11, Func. Count: 124, Neg. LLF: 95.6070600188179
Iteration: 12, Func. Count: 133, Neg. LLF: 95.60706014847293
Optimization terminated successfully (Exit mode 0)
Current function value: 95.6070600188179
Iterations: 13
Function evaluations: 133
Gradient evaluations: 12
Iteration: 1, Func. Count: 12, Neg. LLF: 175.21776198238032
Iteration: 2, Func. Count: 27, Neg. LLF: 96.90740819335997
Iteration: 3, Func. Count: 39, Neg. LLF: 95.83411240869587
Iteration: 4, Func. Count: 50, Neg. LLF: 96.10630405332937
Iteration: 5, Func. Count: 62, Neg. LLF: 145.2695232632287
Iteration: 6, Func. Count: 75, Neg. LLF: 95.24275495282345
Iteration: 7, Func. Count: 86, Neg. LLF: 95.17072830781454
Iteration: 8, Func. Count: 97, Neg. LLF: 95.04838467474994
Iteration: 9, Func. Count: 108, Neg. LLF: 95.03680749560773
Iteration: 10, Func. Count: 119, Neg. LLF: 95.02329139539043
Iteration: 11, Func. Count: 130, Neg. LLF: 95.02186122564056
Iteration: 12, Func. Count: 141, Neg. LLF: 95.02157965964378
Iteration: 13, Func. Count: 152, Neg. LLF: 95.02157423559962
Iteration: 14, Func. Count: 162, Neg. LLF: 95.02157418756356
Optimization terminated successfully (Exit mode 0)
Current function value: 95.02157423559962
Iterations: 14
Function evaluations: 162
Gradient evaluations: 14
Iteration: 1, Func. Count: 13, Neg. LLF: 121.2489336237417
Iteration: 2, Func. Count: 30, Neg. LLF: 1042673.4194207677
Iteration: 3, Func. Count: 43, Neg. LLF: 97.91537158409741
Iteration: 4, Func. Count: 56, Neg. LLF: 98.5896366398382
Iteration: 5, Func. Count: 69, Neg. LLF: 96.1618804424197
Iteration: 6, Func. Count: 82, Neg. LLF: 94.57726663620241
Iteration: 7, Func. Count: 94, Neg. LLF: 94.34210289973521
Iteration: 8, Func. Count: 107, Neg. LLF: 354.69636138260705
Iteration: 9, Func. Count: 121, Neg. LLF: 97.27216448073357
Iteration: 10, Func. Count: 134, Neg. LLF: 93.8844811848064
Iteration: 11, Func. Count: 147, Neg. LLF: 94.17677653145594
Iteration: 12, Func. Count: 160, Neg. LLF: 93.65874215530943
Iteration: 13, Func. Count: 172, Neg. LLF: 93.57117460789559
Iteration: 14, Func. Count: 184, Neg. LLF: 93.57571797520411
Iteration: 15, Func. Count: 197, Neg. LLF: 93.50130941841104
Iteration: 16, Func. Count: 209, Neg. LLF: 93.4926184526044
Iteration: 17, Func. Count: 221, Neg. LLF: 93.48566340011767
Iteration: 18, Func. Count: 233, Neg. LLF: 93.47681603459355
Iteration: 19, Func. Count: 245, Neg. LLF: 93.46405393424467
Iteration: 20, Func. Count: 257, Neg. LLF: 93.45578644582908
Iteration: 21, Func. Count: 269, Neg. LLF: 93.44899340411243
Iteration: 22, Func. Count: 281, Neg. LLF: 93.44420015148803
Iteration: 23, Func. Count: 293, Neg. LLF: 93.44333736421329
Iteration: 24, Func. Count: 305, Neg. LLF: 93.44324291998592
Iteration: 25, Func. Count: 317, Neg. LLF: 93.44323492319594
Iteration: 26, Func. Count: 328, Neg. LLF: 93.44323492315478
Optimization terminated successfully (Exit mode 0)
Current function value: 93.44323492319594
Iterations: 26
Function evaluations: 328
Gradient evaluations: 26
Iteration: 1, Func. Count: 14, Neg. LLF: 123.52224731812991
Iteration: 2, Func. Count: 32, Neg. LLF: 2845278.2455178793
Iteration: 3, Func. Count: 46, Neg. LLF: 7448.810869442202
Iteration: 4, Func. Count: 60, Neg. LLF: 101.05323959006138
Iteration: 5, Func. Count: 74, Neg. LLF: 98.43159710889144
Iteration: 6, Func. Count: 88, Neg. LLF: 95.02336286998509
Iteration: 7, Func. Count: 101, Neg. LLF: 95.96468184295632
Iteration: 8, Func. Count: 115, Neg. LLF: 125.23382155341758
Iteration: 9, Func. Count: 129, Neg. LLF: 95.39420647369953
Iteration: 10, Func. Count: 143, Neg. LLF: 95.93878530617914
Iteration: 11, Func. Count: 157, Neg. LLF: 94.13941329874434
Iteration: 12, Func. Count: 171, Neg. LLF: 93.6330570483676
Iteration: 13, Func. Count: 184, Neg. LLF: 93.59678159395655
Iteration: 14, Func. Count: 197, Neg. LLF: 93.59768018353594
Iteration: 15, Func. Count: 211, Neg. LLF: 93.5486241348359
Iteration: 16, Func. Count: 224, Neg. LLF: 93.53670937932272
Iteration: 17, Func. Count: 237, Neg. LLF: 93.52047152544488
Iteration: 18, Func. Count: 250, Neg. LLF: 93.46794290122608
Iteration: 19, Func. Count: 263, Neg. LLF: 93.4518420479041
Iteration: 20, Func. Count: 276, Neg. LLF: 93.44543937193329
Iteration: 21, Func. Count: 289, Neg. LLF: 93.44393570771749
Iteration: 22, Func. Count: 302, Neg. LLF: 93.44348424179378
Iteration: 23, Func. Count: 315, Neg. LLF: 93.44325878598607
Iteration: 24, Func. Count: 328, Neg. LLF: 93.44323860950536
Iteration: 25, Func. Count: 341, Neg. LLF: 93.44323487338943
Iteration: 26, Func. Count: 353, Neg. LLF: 93.4432349551525
Optimization terminated successfully (Exit mode 0)
Current function value: 93.44323487338943
Iterations: 26
Function evaluations: 353
Gradient evaluations: 26
Iteration: 1, Func. Count: 7, Neg. LLF: 114.52300731782807
Iteration: 2, Func. Count: 15, Neg. LLF: 122.19563351304157
Iteration: 3, Func. Count: 22, Neg. LLF: 257.25937940455475
Iteration: 4, Func. Count: 29, Neg. LLF: 868.0890153240614
Iteration: 5, Func. Count: 36, Neg. LLF: 96.5039037331825
Iteration: 6, Func. Count: 42, Neg. LLF: 96.05989204499001
Iteration: 7, Func. Count: 48, Neg. LLF: 95.97981751822718
Iteration: 8, Func. Count: 54, Neg. LLF: 95.96236324251112
Iteration: 9, Func. Count: 60, Neg. LLF: 95.9615828002249
Iteration: 10, Func. Count: 66, Neg. LLF: 95.96156283193861
Iteration: 11, Func. Count: 72, Neg. LLF: 95.96156065369593
Iteration: 12, Func. Count: 77, Neg. LLF: 95.96156065369175
Optimization terminated successfully (Exit mode 0)
Current function value: 95.96156065369593
Iterations: 12
Function evaluations: 77
Gradient evaluations: 12
Iteration: 1, Func. Count: 8, Neg. LLF: 179.3248569968102
Iteration: 2, Func. Count: 19, Neg. LLF: 96.02577604706038
Iteration: 3, Func. Count: 26, Neg. LLF: 95.6243583753705
Iteration: 4, Func. Count: 33, Neg. LLF: 96.69546774660174
Iteration: 5, Func. Count: 41, Neg. LLF: 95.61756461885093
Iteration: 6, Func. Count: 49, Neg. LLF: 95.60706004264688
Iteration: 7, Func. Count: 55, Neg. LLF: 95.607060171953
Optimization terminated successfully (Exit mode 0)
Current function value: 95.60706004264688
Iterations: 7
Function evaluations: 55
Gradient evaluations: 7
Iteration: 1, Func. Count: 9, Neg. LLF: 177.05278631224633
Iteration: 2, Func. Count: 21, Neg. LLF: 95.82371796586331
Iteration: 3, Func. Count: 29, Neg. LLF: 96.75619351945633
Iteration: 4, Func. Count: 38, Neg. LLF: 95.8523976120175
Iteration: 5, Func. Count: 47, Neg. LLF: 95.63866944563546
Iteration: 6, Func. Count: 55, Neg. LLF: 95.63273101933218
Iteration: 7, Func. Count: 63, Neg. LLF: 95.60762631153771
Iteration: 8, Func. Count: 71, Neg. LLF: 95.60707002628624
Iteration: 9, Func. Count: 79, Neg. LLF: 95.6070647688675
Iteration: 10, Func. Count: 87, Neg. LLF: 95.6070619629462
Iteration: 11, Func. Count: 95, Neg. LLF: 95.60706104160917
Optimization terminated successfully (Exit mode 0)
Current function value: 95.60706104160917
Iterations: 12
Function evaluations: 95
Gradient evaluations: 11
Iteration: 1, Func. Count: 10, Neg. LLF: 177.7019740099153
Iteration: 2, Func. Count: 24, Neg. LLF: 95.79676780738123
Iteration: 3, Func. Count: 33, Neg. LLF: 96.04048198284755
Iteration: 4, Func. Count: 43, Neg. LLF: 95.95135820556693
Iteration: 5, Func. Count: 53, Neg. LLF: 95.66795597743038
Iteration: 6, Func. Count: 62, Neg. LLF: 95.65800285888278
Iteration: 7, Func. Count: 71, Neg. LLF: 95.61744076505879
Iteration: 8, Func. Count: 80, Neg. LLF: 95.61480301543092
Iteration: 9, Func. Count: 89, Neg. LLF: 95.60710057094879
Iteration: 10, Func. Count: 98, Neg. LLF: 95.60707250702826
Iteration: 11, Func. Count: 107, Neg. LLF: 106.70044172807816
Iteration: 12, Func. Count: 120, Neg. LLF: 95.6074100124666
Iteration: 13, Func. Count: 130, Neg. LLF: 95.60706022047842
Optimization terminated successfully (Exit mode 0)
Current function value: 95.60706034729536
Iterations: 14
Function evaluations: 130
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 134.85577901596042
Iteration: 2, Func. Count: 26, Neg. LLF: 95.81248861641487
Iteration: 3, Func. Count: 36, Neg. LLF: 96.1811027552919
Iteration: 4, Func. Count: 47, Neg. LLF: 95.7334687301528
Iteration: 5, Func. Count: 57, Neg. LLF: 96.91469815802742
Iteration: 6, Func. Count: 68, Neg. LLF: 96.87433314239003
Iteration: 7, Func. Count: 79, Neg. LLF: 96.95440253440125
Iteration: 8, Func. Count: 90, Neg. LLF: 114.13842231488007
Iteration: 9, Func. Count: 102, Neg. LLF: 96.17798853859699
Iteration: 10, Func. Count: 113, Neg. LLF: 95.49426200921052
Iteration: 11, Func. Count: 123, Neg. LLF: 95.47055744407636
Iteration: 12, Func. Count: 133, Neg. LLF: 95.43673215308078
Iteration: 13, Func. Count: 143, Neg. LLF: 95.37105479986431
Iteration: 14, Func. Count: 153, Neg. LLF: 95.3571387949432
Iteration: 15, Func. Count: 163, Neg. LLF: 95.34646039612646
Iteration: 16, Func. Count: 173, Neg. LLF: 95.3444870683224
Iteration: 17, Func. Count: 183, Neg. LLF: 95.3441024977507
Iteration: 18, Func. Count: 193, Neg. LLF: 95.34410131470139
Iteration: 19, Func. Count: 202, Neg. LLF: 95.34410130953273
Optimization terminated successfully (Exit mode 0)
Current function value: 95.34410131470139
Iterations: 19
Function evaluations: 202
Gradient evaluations: 19
Iteration: 1, Func. Count: 8, Neg. LLF: 114.35092051811512
Iteration: 2, Func. Count: 17, Neg. LLF: 122.6012924144821
Iteration: 3, Func. Count: 25, Neg. LLF: 326.53549496161787
Iteration: 4, Func. Count: 33, Neg. LLF: 481.10108092009983
Iteration: 5, Func. Count: 41, Neg. LLF: 97.47734826819186
Iteration: 6, Func. Count: 49, Neg. LLF: 96.00591030470414
Iteration: 7, Func. Count: 56, Neg. LLF: 97.67080975580016
Iteration: 8, Func. Count: 65, Neg. LLF: 96.06544209370736
Iteration: 9, Func. Count: 73, Neg. LLF: 95.94985209212295
Iteration: 10, Func. Count: 80, Neg. LLF: 95.94895958255078
Iteration: 11, Func. Count: 87, Neg. LLF: 95.94892188198064
Iteration: 12, Func. Count: 94, Neg. LLF: 95.94892109761628
Optimization terminated successfully (Exit mode 0)
Current function value: 95.94892109761628
Iterations: 12
Function evaluations: 94
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 134.27579967620642
Iteration: 2, Func. Count: 21, Neg. LLF: 99.72937399734168
Iteration: 3, Func. Count: 30, Neg. LLF: 99.20564128510065
Iteration: 4, Func. Count: 39, Neg. LLF: 96.58330895629702
Iteration: 5, Func. Count: 48, Neg. LLF: 96.0441927200235
Iteration: 6, Func. Count: 56, Neg. LLF: 96.20551652025165
Iteration: 7, Func. Count: 65, Neg. LLF: 95.63672001986232
Iteration: 8, Func. Count: 73, Neg. LLF: 95.60762229873103
Iteration: 9, Func. Count: 81, Neg. LLF: 95.60706585270758
Iteration: 10, Func. Count: 89, Neg. LLF: 95.6070600379931
Iteration: 11, Func. Count: 96, Neg. LLF: 95.60706016781822
Optimization terminated successfully (Exit mode 0)
Current function value: 95.6070600379931
Iterations: 11
Function evaluations: 96
Gradient evaluations: 11
Iteration: 1, Func. Count: 10, Neg. LLF: 174.44308520473444
Iteration: 2, Func. Count: 23, Neg. LLF: 96.89218461772627
Iteration: 3, Func. Count: 33, Neg. LLF: 96.02089293953314
Iteration: 4, Func. Count: 42, Neg. LLF: 96.09723405355489
Iteration: 5, Func. Count: 52, Neg. LLF: 120.06333632090464
Iteration: 6, Func. Count: 62, Neg. LLF: 95.04819434095386
Iteration: 7, Func. Count: 71, Neg. LLF: 95.03368068101653
Iteration: 8, Func. Count: 80, Neg. LLF: 95.02535126025505
Iteration: 9, Func. Count: 89, Neg. LLF: 95.02372320556273
Iteration: 10, Func. Count: 98, Neg. LLF: 95.0216062089321
Iteration: 11, Func. Count: 107, Neg. LLF: 95.02157633631352
Iteration: 12, Func. Count: 116, Neg. LLF: 95.02157386434061
Iteration: 13, Func. Count: 124, Neg. LLF: 95.021573815898
Optimization terminated successfully (Exit mode 0)
Current function value: 95.02157386434061
Iterations: 13
Function evaluations: 124
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 155.0323672258529
Iteration: 2, Func. Count: 26, Neg. LLF: 102.30170499833719
Iteration: 3, Func. Count: 37, Neg. LLF: 98.21911048016166
Iteration: 4, Func. Count: 48, Neg. LLF: 96.81387777546206
Iteration: 5, Func. Count: 59, Neg. LLF: 95.93220652676965
Iteration: 6, Func. Count: 70, Neg. LLF: 95.79047593564401
Iteration: 7, Func. Count: 81, Neg. LLF: 94.92002144955445
Iteration: 8, Func. Count: 91, Neg. LLF: 96.44570205656368
Iteration: 9, Func. Count: 102, Neg. LLF: 95.51950077458831
Iteration: 10, Func. Count: 113, Neg. LLF: 99.42247403221192
Iteration: 11, Func. Count: 124, Neg. LLF: 94.34268867862497
Iteration: 12, Func. Count: 134, Neg. LLF: 94.4297772870996
Iteration: 13, Func. Count: 145, Neg. LLF: 94.4601471582782
Iteration: 14, Func. Count: 156, Neg. LLF: 94.32187453834453
Iteration: 15, Func. Count: 166, Neg. LLF: 94.31949071638046
Iteration: 16, Func. Count: 176, Neg. LLF: 94.31897064565806
Iteration: 17, Func. Count: 186, Neg. LLF: 94.31867471250399
Iteration: 18, Func. Count: 196, Neg. LLF: 94.31854162268283
Iteration: 19, Func. Count: 206, Neg. LLF: 94.3183043995144
Iteration: 20, Func. Count: 216, Neg. LLF: 94.31824550510213
Iteration: 21, Func. Count: 226, Neg. LLF: 94.3182317847821
Iteration: 22, Func. Count: 236, Neg. LLF: 94.3182311851509
Optimization terminated successfully (Exit mode 0)
Current function value: 94.3182311851509
Iterations: 22
Function evaluations: 236
Gradient evaluations: 22
Iteration: 1, Func. Count: 12, Neg. LLF: 123.87516920935438
Iteration: 2, Func. Count: 28, Neg. LLF: 104.18148718601931
Iteration: 3, Func. Count: 40, Neg. LLF: 97.94629031746524
Iteration: 4, Func. Count: 52, Neg. LLF: 96.40820278421374
Iteration: 5, Func. Count: 64, Neg. LLF: 95.35422288331375
Iteration: 6, Func. Count: 75, Neg. LLF: 111.23805826177264
Iteration: 7, Func. Count: 87, Neg. LLF: 106.69164031537689
Iteration: 8, Func. Count: 99, Neg. LLF: 146.06701728019235
Iteration: 9, Func. Count: 112, Neg. LLF: 96.3339729876865
Iteration: 10, Func. Count: 124, Neg. LLF: 94.32318288838351
Iteration: 11, Func. Count: 135, Neg. LLF: 94.42935907622497
Iteration: 12, Func. Count: 147, Neg. LLF: 94.25038330589989
Iteration: 13, Func. Count: 158, Neg. LLF: 94.24497477193205
Iteration: 14, Func. Count: 169, Neg. LLF: 94.24436648563388
Iteration: 15, Func. Count: 180, Neg. LLF: 94.24400568168934
Iteration: 16, Func. Count: 191, Neg. LLF: 94.2438586505175
Iteration: 17, Func. Count: 202, Neg. LLF: 94.24380781659436
Iteration: 18, Func. Count: 213, Neg. LLF: 94.2438038241774
Iteration: 19, Func. Count: 223, Neg. LLF: 94.24380381149639
Optimization terminated successfully (Exit mode 0)
Current function value: 94.2438038241774
Iterations: 19
Function evaluations: 223
Gradient evaluations: 19
Iteration: 1, Func. Count: 9, Neg. LLF: 114.37296857248636
Iteration: 2, Func. Count: 19, Neg. LLF: 123.15062803883042
Iteration: 3, Func. Count: 28, Neg. LLF: 365.4499217738976
Iteration: 4, Func. Count: 37, Neg. LLF: 485.02659994229504
Iteration: 5, Func. Count: 46, Neg. LLF: 97.38406168210705
Iteration: 6, Func. Count: 55, Neg. LLF: 96.00282081851475
Iteration: 7, Func. Count: 63, Neg. LLF: 104.06702100366613
Iteration: 8, Func. Count: 73, Neg. LLF: 95.98852785852034
Iteration: 9, Func. Count: 82, Neg. LLF: 95.95024024691803
Iteration: 10, Func. Count: 90, Neg. LLF: 95.94894845061307
Iteration: 11, Func. Count: 98, Neg. LLF: 95.948921378901
Iteration: 12, Func. Count: 106, Neg. LLF: 95.94892105937501
Optimization terminated successfully (Exit mode 0)
Current function value: 95.94892105937501
Iterations: 12
Function evaluations: 106
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 135.89900797904534
Iteration: 2, Func. Count: 23, Neg. LLF: 100.19933592224614
Iteration: 3, Func. Count: 34, Neg. LLF: 98.51398791340632
Iteration: 4, Func. Count: 44, Neg. LLF: 95.98009616500951
Iteration: 5, Func. Count: 53, Neg. LLF: 95.63622895532494
Iteration: 6, Func. Count: 62, Neg. LLF: 95.62121341809467
Iteration: 7, Func. Count: 71, Neg. LLF: 95.61446623316556
Iteration: 8, Func. Count: 80, Neg. LLF: 124.64481099932938
Iteration: 9, Func. Count: 93, Neg. LLF: 97.73050179321352
Iteration: 10, Func. Count: 104, Neg. LLF: 95.60706008377166
Iteration: 11, Func. Count: 112, Neg. LLF: 95.6070602140417
Optimization terminated successfully (Exit mode 0)
Current function value: 95.60706008377166
Iterations: 12
Function evaluations: 112
Gradient evaluations: 11
Iteration: 1, Func. Count: 11, Neg. LLF: 175.43617081589358
Iteration: 2, Func. Count: 25, Neg. LLF: 97.07357681262452
Iteration: 3, Func. Count: 36, Neg. LLF: 96.36730127175456
Iteration: 4, Func. Count: 47, Neg. LLF: 96.0533199837474
Iteration: 5, Func. Count: 57, Neg. LLF: 99.63583904986444
Iteration: 6, Func. Count: 68, Neg. LLF: 95.2609274831116
Iteration: 7, Func. Count: 78, Neg. LLF: 95.08618765610503
Iteration: 8, Func. Count: 88, Neg. LLF: 95.0478917697003
Iteration: 9, Func. Count: 98, Neg. LLF: 95.0332870882807
Iteration: 10, Func. Count: 108, Neg. LLF: 95.02835578362628
Iteration: 11, Func. Count: 118, Neg. LLF: 95.02239922717021
Iteration: 12, Func. Count: 128, Neg. LLF: 95.0216459563876
Iteration: 13, Func. Count: 138, Neg. LLF: 95.021574865995
Iteration: 14, Func. Count: 148, Neg. LLF: 95.0215738229762
Iteration: 15, Func. Count: 157, Neg. LLF: 95.02157377455889
Optimization terminated successfully (Exit mode 0)
Current function value: 95.0215738229762
Iterations: 15
Function evaluations: 157
Gradient evaluations: 15
Iteration: 1, Func. Count: 12, Neg. LLF: 158.9627112918587
Iteration: 2, Func. Count: 28, Neg. LLF: 102.2099255407825
Iteration: 3, Func. Count: 40, Neg. LLF: 99.16703416220184
Iteration: 4, Func. Count: 52, Neg. LLF: 96.85549902462981
Iteration: 5, Func. Count: 64, Neg. LLF: 95.99870165971663
Iteration: 6, Func. Count: 76, Neg. LLF: 96.82305339559264
Iteration: 7, Func. Count: 88, Neg. LLF: 95.00056613589726
Iteration: 8, Func. Count: 99, Neg. LLF: 94.49646285276305
Iteration: 9, Func. Count: 110, Neg. LLF: 95.07722552147223
Iteration: 10, Func. Count: 122, Neg. LLF: 94.46207692770118
Iteration: 11, Func. Count: 134, Neg. LLF: 94.54133883736465
Iteration: 12, Func. Count: 146, Neg. LLF: 94.3384195198277
Iteration: 13, Func. Count: 157, Neg. LLF: 94.32778416610252
Iteration: 14, Func. Count: 168, Neg. LLF: 94.32768181396585
Iteration: 15, Func. Count: 180, Neg. LLF: 94.31928595996136
Iteration: 16, Func. Count: 191, Neg. LLF: 94.31896744372214
Iteration: 17, Func. Count: 202, Neg. LLF: 94.31863465313948
Iteration: 18, Func. Count: 213, Neg. LLF: 94.31840670327524
Iteration: 19, Func. Count: 224, Neg. LLF: 94.31828536531552
Iteration: 20, Func. Count: 235, Neg. LLF: 94.31823948275417
Iteration: 21, Func. Count: 246, Neg. LLF: 94.31823168765078
Iteration: 22, Func. Count: 256, Neg. LLF: 94.31823168756465
Optimization terminated successfully (Exit mode 0)
Current function value: 94.31823168765078
Iterations: 22
Function evaluations: 256
Gradient evaluations: 22
Iteration: 1, Func. Count: 13, Neg. LLF: 128.84346756361248
Iteration: 2, Func. Count: 30, Neg. LLF: 97.54880497533603
Iteration: 3, Func. Count: 43, Neg. LLF: 95.04504687527208
Iteration: 4, Func. Count: 55, Neg. LLF: 94.95440441132482
Iteration: 5, Func. Count: 68, Neg. LLF: 100.8455432217125
Iteration: 6, Func. Count: 82, Neg. LLF: 95.04253177754148
Iteration: 7, Func. Count: 95, Neg. LLF: 94.63957351328766
Iteration: 8, Func. Count: 108, Neg. LLF: 94.29184325429885
Iteration: 9, Func. Count: 121, Neg. LLF: 94.24743891559991
Iteration: 10, Func. Count: 133, Neg. LLF: 94.24542025871496
Iteration: 11, Func. Count: 145, Neg. LLF: 94.24443868109167
Iteration: 12, Func. Count: 157, Neg. LLF: 94.2438122159476
Iteration: 13, Func. Count: 169, Neg. LLF: 94.24380385761133
Iteration: 14, Func. Count: 180, Neg. LLF: 94.24380384482137
Optimization terminated successfully (Exit mode 0)
Current function value: 94.24380385761133
Iterations: 14
Function evaluations: 180
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 117.1729930615984
Iteration: 2, Func. Count: 21, Neg. LLF: 112520329.41128309
Iteration: 3, Func. Count: 31, Neg. LLF: 9361055.755898593
Iteration: 4, Func. Count: 41, Neg. LLF: 94.82249991597405
Iteration: 5, Func. Count: 50, Neg. LLF: 94.79472922361994
Iteration: 6, Func. Count: 59, Neg. LLF: 94.77490499923873
Iteration: 7, Func. Count: 68, Neg. LLF: 94.765558524064
Iteration: 8, Func. Count: 77, Neg. LLF: 94.75939603363224
Iteration: 9, Func. Count: 86, Neg. LLF: 94.75709908903694
Iteration: 10, Func. Count: 95, Neg. LLF: 94.75706919697527
Iteration: 11, Func. Count: 103, Neg. LLF: 94.75706919699299
Optimization terminated successfully (Exit mode 0)
Current function value: 94.75706919697527
Iterations: 11
Function evaluations: 103
Gradient evaluations: 11
Iteration: 1, Func. Count: 11, Neg. LLF: 118.00701444008368
Iteration: 2, Func. Count: 25, Neg. LLF: 106.34560732998085
Iteration: 3, Func. Count: 37, Neg. LLF: 96.4590009822901
Iteration: 4, Func. Count: 48, Neg. LLF: 96.00180105855286
Iteration: 5, Func. Count: 58, Neg. LLF: 97.35546919415295
Iteration: 6, Func. Count: 70, Neg. LLF: 95.94159572128348
Iteration: 7, Func. Count: 80, Neg. LLF: 95.89982297244735
Iteration: 8, Func. Count: 90, Neg. LLF: 95.63541240066091
Iteration: 9, Func. Count: 100, Neg. LLF: 95.64887377900295
Iteration: 10, Func. Count: 111, Neg. LLF: 95.6178607271509
Iteration: 11, Func. Count: 121, Neg. LLF: 95.61835537164886
Iteration: 12, Func. Count: 131, Neg. LLF: 95.61317654960817
Iteration: 13, Func. Count: 141, Neg. LLF: 100.52540344497692
Iteration: 14, Func. Count: 154, Neg. LLF: 95.60836810146516
Iteration: 15, Func. Count: 164, Neg. LLF: 95.6070601402332
Iteration: 16, Func. Count: 173, Neg. LLF: 95.60706026931018
Optimization terminated successfully (Exit mode 0)
Current function value: 95.6070601402332
Iterations: 17
Function evaluations: 173
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 175.02226395067305
Iteration: 2, Func. Count: 27, Neg. LLF: 97.16521764943393
Iteration: 3, Func. Count: 39, Neg. LLF: 97.0627613489748
Iteration: 4, Func. Count: 51, Neg. LLF: 95.9924707871347
Iteration: 5, Func. Count: 62, Neg. LLF: 95.19536170174462
Iteration: 6, Func. Count: 73, Neg. LLF: 95.05543579410151
Iteration: 7, Func. Count: 84, Neg. LLF: 95.0396080268127
Iteration: 8, Func. Count: 95, Neg. LLF: 95.02802639128564
Iteration: 9, Func. Count: 106, Neg. LLF: 95.02332828496765
Iteration: 10, Func. Count: 117, Neg. LLF: 95.02197888960455
Iteration: 11, Func. Count: 128, Neg. LLF: 95.0215811217976
Iteration: 12, Func. Count: 139, Neg. LLF: 95.02157381905432
Iteration: 13, Func. Count: 149, Neg. LLF: 95.0215737705358
Optimization terminated successfully (Exit mode 0)
Current function value: 95.02157381905432
Iterations: 13
Function evaluations: 149
Gradient evaluations: 13
Iteration: 1, Func. Count: 13, Neg. LLF: 120.73859282948456
Iteration: 2, Func. Count: 30, Neg. LLF: 793894.0645868719
Iteration: 3, Func. Count: 43, Neg. LLF: 97.63058884184623
Iteration: 4, Func. Count: 56, Neg. LLF: 97.47662045759753
Iteration: 5, Func. Count: 69, Neg. LLF: 95.41559214164504
Iteration: 6, Func. Count: 82, Neg. LLF: 94.71217331231787
Iteration: 7, Func. Count: 94, Neg. LLF: 96.65198168136828
Iteration: 8, Func. Count: 108, Neg. LLF: 98.20190799455263
Iteration: 9, Func. Count: 122, Neg. LLF: 94.89049337266286
Iteration: 10, Func. Count: 135, Neg. LLF: 119.84118289973493
Iteration: 11, Func. Count: 148, Neg. LLF: 94.69022194434119
Iteration: 12, Func. Count: 161, Neg. LLF: 93.82006459926394
Iteration: 13, Func. Count: 173, Neg. LLF: 93.9411391191893
Iteration: 14, Func. Count: 186, Neg. LLF: 93.57708992117232
Iteration: 15, Func. Count: 198, Neg. LLF: 93.53955935742694
Iteration: 16, Func. Count: 210, Neg. LLF: 93.83968355435012
Iteration: 17, Func. Count: 223, Neg. LLF: 93.5037041802027
Iteration: 18, Func. Count: 235, Neg. LLF: 93.48531274817002
Iteration: 19, Func. Count: 247, Neg. LLF: 93.48111456321172
Iteration: 20, Func. Count: 259, Neg. LLF: 93.47419153955381
Iteration: 21, Func. Count: 271, Neg. LLF: 93.45923632086217
Iteration: 22, Func. Count: 283, Neg. LLF: 93.44764070347478
Iteration: 23, Func. Count: 295, Neg. LLF: 93.44169903102356
Iteration: 24, Func. Count: 307, Neg. LLF: 93.44061114177754
Iteration: 25, Func. Count: 319, Neg. LLF: 93.44053714389665
Iteration: 26, Func. Count: 331, Neg. LLF: 93.4405304659468
Iteration: 27, Func. Count: 342, Neg. LLF: 93.44053046593976
Optimization terminated successfully (Exit mode 0)
Current function value: 93.4405304659468
Iterations: 27
Function evaluations: 342
Gradient evaluations: 27
Iteration: 1, Func. Count: 14, Neg. LLF: 122.98878014005376
Iteration: 2, Func. Count: 32, Neg. LLF: 376.6207352828133
Iteration: 3, Func. Count: 46, Neg. LLF: 122.79298831110029
Iteration: 4, Func. Count: 60, Neg. LLF: 101.38969254607056
Iteration: 5, Func. Count: 74, Neg. LLF: 98.838178392571
Iteration: 6, Func. Count: 88, Neg. LLF: 95.44593009615558
Iteration: 7, Func. Count: 102, Neg. LLF: 94.61478998719839
Iteration: 8, Func. Count: 115, Neg. LLF: 100.35989030367658
Iteration: 9, Func. Count: 130, Neg. LLF: 95.4396660245709
Iteration: 10, Func. Count: 144, Neg. LLF: 94.15226913422106
Iteration: 11, Func. Count: 158, Neg. LLF: 93.81517328384261
Iteration: 12, Func. Count: 172, Neg. LLF: 93.59531188285598
Iteration: 13, Func. Count: 185, Neg. LLF: 93.57095322223255
Iteration: 14, Func. Count: 198, Neg. LLF: 93.86905360984129
Iteration: 15, Func. Count: 212, Neg. LLF: 93.54999910785764
Iteration: 16, Func. Count: 225, Neg. LLF: 93.51914164828567
Iteration: 17, Func. Count: 238, Neg. LLF: 93.49305251123533
Iteration: 18, Func. Count: 251, Neg. LLF: 93.45283769211251
Iteration: 19, Func. Count: 264, Neg. LLF: 93.44126757373023
Iteration: 20, Func. Count: 277, Neg. LLF: 93.44055827839854
Iteration: 21, Func. Count: 290, Neg. LLF: 93.44053546532031
Iteration: 22, Func. Count: 303, Neg. LLF: 93.4405307774527
Iteration: 23, Func. Count: 315, Neg. LLF: 93.44053085985601
Optimization terminated successfully (Exit mode 0)
Current function value: 93.4405307774527
Iterations: 23
Function evaluations: 315
Gradient evaluations: 23
Iteration: 1, Func. Count: 11, Neg. LLF: 123.07337938046766
Iteration: 2, Func. Count: 23, Neg. LLF: 35277.29692062467
Iteration: 3, Func. Count: 34, Neg. LLF: 9328505.108458022
Iteration: 4, Func. Count: 45, Neg. LLF: 94.82621761177836
Iteration: 5, Func. Count: 55, Neg. LLF: 94.81974221483416
Iteration: 6, Func. Count: 66, Neg. LLF: 94.76672222150307
Iteration: 7, Func. Count: 76, Neg. LLF: 94.76159022315778
Iteration: 8, Func. Count: 86, Neg. LLF: 96.77409729271932
Iteration: 9, Func. Count: 98, Neg. LLF: 94.75721056944843
Iteration: 10, Func. Count: 108, Neg. LLF: 94.75702887114277
Iteration: 11, Func. Count: 118, Neg. LLF: 94.75702519337256
Iteration: 12, Func. Count: 127, Neg. LLF: 94.75702519336777
Optimization terminated successfully (Exit mode 0)
Current function value: 94.75702519337256
Iterations: 12
Function evaluations: 127
Gradient evaluations: 12
Iteration: 1, Func. Count: 12, Neg. LLF: 118.29143892335547
Iteration: 2, Func. Count: 27, Neg. LLF: 105.82626450930628
Iteration: 3, Func. Count: 40, Neg. LLF: 96.21257346924648
Iteration: 4, Func. Count: 51, Neg. LLF: 95.9951910169936
Iteration: 5, Func. Count: 62, Neg. LLF: 98.3905027025822
Iteration: 6, Func. Count: 76, Neg. LLF: 95.94071993713538
Iteration: 7, Func. Count: 87, Neg. LLF: 95.87888825781654
Iteration: 8, Func. Count: 98, Neg. LLF: 95.62132604498493
Iteration: 9, Func. Count: 109, Neg. LLF: 37151855.49436958
Iteration: 10, Func. Count: 123, Neg. LLF: 96.2753913491276
Iteration: 11, Func. Count: 135, Neg. LLF: 95.60708680973477
Iteration: 12, Func. Count: 146, Neg. LLF: 95.60706013147127
Iteration: 13, Func. Count: 156, Neg. LLF: 95.6070602604053
Optimization terminated successfully (Exit mode 0)
Current function value: 95.60706013147127
Iterations: 14
Function evaluations: 156
Gradient evaluations: 13
Iteration: 1, Func. Count: 13, Neg. LLF: 175.01297019566496
Iteration: 2, Func. Count: 29, Neg. LLF: 97.07552800256587
Iteration: 3, Func. Count: 42, Neg. LLF: 96.76085617582501
Iteration: 4, Func. Count: 55, Neg. LLF: 96.01913121180624
Iteration: 5, Func. Count: 67, Neg. LLF: 95.65382810670377
Iteration: 6, Func. Count: 79, Neg. LLF: 95.2878072551971
Iteration: 7, Func. Count: 91, Neg. LLF: 95.2714099652995
Iteration: 8, Func. Count: 104, Neg. LLF: 95.06890233228748
Iteration: 9, Func. Count: 116, Neg. LLF: 95.04292061414385
Iteration: 10, Func. Count: 128, Neg. LLF: 95.02638748611136
Iteration: 11, Func. Count: 140, Neg. LLF: 95.02329930441181
Iteration: 12, Func. Count: 152, Neg. LLF: 95.0216706326833
Iteration: 13, Func. Count: 164, Neg. LLF: 95.02157658088349
Iteration: 14, Func. Count: 176, Neg. LLF: 95.02157380119905
Iteration: 15, Func. Count: 187, Neg. LLF: 95.0215737528355
Optimization terminated successfully (Exit mode 0)
Current function value: 95.02157380119905
Iterations: 15
Function evaluations: 187
Gradient evaluations: 15
Iteration: 1, Func. Count: 14, Neg. LLF: 120.93309363823388
Iteration: 2, Func. Count: 32, Neg. LLF: 841980.7624468494
Iteration: 3, Func. Count: 46, Neg. LLF: 97.7050212102736
Iteration: 4, Func. Count: 60, Neg. LLF: 97.70582650065853
Iteration: 5, Func. Count: 74, Neg. LLF: 95.4497655609508
Iteration: 6, Func. Count: 88, Neg. LLF: 94.50816165695853
Iteration: 7, Func. Count: 101, Neg. LLF: 95.21985388927553
Iteration: 8, Func. Count: 115, Neg. LLF: 96.98767561709845
Iteration: 9, Func. Count: 129, Neg. LLF: 100.23535712321313
Iteration: 10, Func. Count: 143, Neg. LLF: 98.06402786500395
Iteration: 11, Func. Count: 157, Neg. LLF: 98.50075308004918
Iteration: 12, Func. Count: 171, Neg. LLF: 93.59847791981832
Iteration: 13, Func. Count: 184, Neg. LLF: 93.70973125316208
Iteration: 14, Func. Count: 198, Neg. LLF: 93.58644277208315
Iteration: 15, Func. Count: 212, Neg. LLF: 93.53055761145194
Iteration: 16, Func. Count: 225, Neg. LLF: 93.51076290466273
Iteration: 17, Func. Count: 238, Neg. LLF: 93.50189935062522
Iteration: 18, Func. Count: 251, Neg. LLF: 93.48203120100794
Iteration: 19, Func. Count: 264, Neg. LLF: 93.46372246510322
Iteration: 20, Func. Count: 277, Neg. LLF: 93.44989152401615
Iteration: 21, Func. Count: 290, Neg. LLF: 93.44243959182764
Iteration: 22, Func. Count: 303, Neg. LLF: 93.44065372202853
Iteration: 23, Func. Count: 316, Neg. LLF: 93.44054008148584
Iteration: 24, Func. Count: 329, Neg. LLF: 93.44053025222719
Iteration: 25, Func. Count: 341, Neg. LLF: 93.4405302522151
Optimization terminated successfully (Exit mode 0)
Current function value: 93.44053025222719
Iterations: 25
Function evaluations: 341
Gradient evaluations: 25
Iteration: 1, Func. Count: 15, Neg. LLF: 123.19961084701563
Iteration: 2, Func. Count: 34, Neg. LLF: 378.76799374039336
Iteration: 3, Func. Count: 49, Neg. LLF: 150.8102319624481
Iteration: 4, Func. Count: 64, Neg. LLF: 101.1312207563872
Iteration: 5, Func. Count: 79, Neg. LLF: 98.74496667925611
Iteration: 6, Func. Count: 94, Neg. LLF: 95.29475396356227
Iteration: 7, Func. Count: 108, Neg. LLF: 95.87134242714356
Iteration: 8, Func. Count: 123, Neg. LLF: 118.07368987886345
Iteration: 9, Func. Count: 138, Neg. LLF: 96.61815691066947
Iteration: 10, Func. Count: 153, Neg. LLF: 94.21470789251356
Iteration: 11, Func. Count: 167, Neg. LLF: 93.993311008827
Iteration: 12, Func. Count: 181, Neg. LLF: 93.93086035838832
Iteration: 13, Func. Count: 195, Neg. LLF: 93.69856078586572
Iteration: 14, Func. Count: 209, Neg. LLF: 93.90186988964832
Iteration: 15, Func. Count: 224, Neg. LLF: 93.70169037130242
Iteration: 16, Func. Count: 239, Neg. LLF: 93.6720326772396
Iteration: 17, Func. Count: 254, Neg. LLF: 93.55256660200216
Iteration: 18, Func. Count: 268, Neg. LLF: 93.5316705496186
Iteration: 19, Func. Count: 282, Neg. LLF: 93.51737249570462
Iteration: 20, Func. Count: 296, Neg. LLF: 93.49874556559486
Iteration: 21, Func. Count: 310, Neg. LLF: 93.46877447699661
Iteration: 22, Func. Count: 324, Neg. LLF: 93.45365959114531
Iteration: 23, Func. Count: 338, Neg. LLF: 93.44374214153359
Iteration: 24, Func. Count: 352, Neg. LLF: 93.44073139954331
Iteration: 25, Func. Count: 366, Neg. LLF: 93.44056159263808
Iteration: 26, Func. Count: 380, Neg. LLF: 93.44053029600097
Iteration: 27, Func. Count: 393, Neg. LLF: 93.44053037833223
Optimization terminated successfully (Exit mode 0)
Current function value: 93.44053029600097
Iterations: 27
Function evaluations: 393
Gradient evaluations: 27
Iteration: 1, Func. Count: 8, Neg. LLF: 114.33033972293619
Iteration: 2, Func. Count: 17, Neg. LLF: 149.49459657236073
Iteration: 3, Func. Count: 25, Neg. LLF: 304.7777291371081
Iteration: 4, Func. Count: 33, Neg. LLF: 117.79596648544447
Iteration: 5, Func. Count: 41, Neg. LLF: 117.26050992698677
Iteration: 6, Func. Count: 49, Neg. LLF: 96.64639328469016
Iteration: 7, Func. Count: 57, Neg. LLF: 96.02031223184707
Iteration: 8, Func. Count: 64, Neg. LLF: 95.92351048435957
Iteration: 9, Func. Count: 71, Neg. LLF: 95.89835761056229
Iteration: 10, Func. Count: 78, Neg. LLF: 95.87778998739786
Iteration: 11, Func. Count: 85, Neg. LLF: 95.87599947711655
Iteration: 12, Func. Count: 92, Neg. LLF: 95.87583259673221
Iteration: 13, Func. Count: 99, Neg. LLF: 95.87582763809063
Iteration: 14, Func. Count: 105, Neg. LLF: 95.87582763809277
Optimization terminated successfully (Exit mode 0)
Current function value: 95.87582763809063
Iterations: 14
Function evaluations: 105
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 179.48155651683857
Iteration: 2, Func. Count: 21, Neg. LLF: 96.00826254396787
Iteration: 3, Func. Count: 29, Neg. LLF: 95.64221175524942
Iteration: 4, Func. Count: 37, Neg. LLF: 100.74399217245477
Iteration: 5, Func. Count: 46, Neg. LLF: 95.61309987125775
Iteration: 6, Func. Count: 54, Neg. LLF: 95.60710224016405
Iteration: 7, Func. Count: 62, Neg. LLF: 95.60706014650303
Iteration: 8, Func. Count: 69, Neg. LLF: 95.60706027694155
Optimization terminated successfully (Exit mode 0)
Current function value: 95.60706014650303
Iterations: 8
Function evaluations: 69
Gradient evaluations: 8
Iteration: 1, Func. Count: 10, Neg. LLF: 176.92672672030315
Iteration: 2, Func. Count: 23, Neg. LLF: 95.80842642055318
Iteration: 3, Func. Count: 32, Neg. LLF: 96.53038028852721
Iteration: 4, Func. Count: 42, Neg. LLF: 95.86323899616355
Iteration: 5, Func. Count: 52, Neg. LLF: 95.64104671549075
Iteration: 6, Func. Count: 61, Neg. LLF: 95.63551664358157
Iteration: 7, Func. Count: 70, Neg. LLF: 95.60765070568539
Iteration: 8, Func. Count: 79, Neg. LLF: 95.60730939698988
Iteration: 9, Func. Count: 88, Neg. LLF: 95.60706164081513
Iteration: 10, Func. Count: 97, Neg. LLF: 95.60706003748335
Iteration: 11, Func. Count: 105, Neg. LLF: 95.60705990867541
Optimization terminated successfully (Exit mode 0)
Current function value: 95.60706003748335
Iterations: 11
Function evaluations: 105
Gradient evaluations: 11
Iteration: 1, Func. Count: 11, Neg. LLF: 177.10371649930298
Iteration: 2, Func. Count: 26, Neg. LLF: 95.78418354866442
Iteration: 3, Func. Count: 36, Neg. LLF: 96.09628874639112
Iteration: 4, Func. Count: 47, Neg. LLF: 95.93628287936198
Iteration: 5, Func. Count: 58, Neg. LLF: 95.67145316080155
Iteration: 6, Func. Count: 68, Neg. LLF: 95.66995326337596
Iteration: 7, Func. Count: 78, Neg. LLF: 95.6653997305274
Iteration: 8, Func. Count: 88, Neg. LLF: 95.66145869057937
Iteration: 9, Func. Count: 98, Neg. LLF: 95.65663453259845
Iteration: 10, Func. Count: 108, Neg. LLF: 95.65407973507045
Iteration: 11, Func. Count: 118, Neg. LLF: 95.64731194543107
Iteration: 12, Func. Count: 128, Neg. LLF: 95.64707467671218
Iteration: 13, Func. Count: 138, Neg. LLF: 95.64705744652588
Iteration: 14, Func. Count: 148, Neg. LLF: 95.64510852544817
Iteration: 15, Func. Count: 168, Neg. LLF: 95.64699256232564
Iteration: 16, Func. Count: 178, Neg. LLF: 95.64368192142776
Iteration: 17, Func. Count: 198, Neg. LLF: 95.6443784012829
Iteration: 18, Func. Count: 218, Neg. LLF: 95.65394591654692
Iteration: 19, Func. Count: 231, Neg. LLF: 95.62612228707422
Iteration: 20, Func. Count: 241, Neg. LLF: 245753324.48191136
Iteration: 21, Func. Count: 258, Neg. LLF: 100.52453123382374
Iteration: 22, Func. Count: 270, Neg. LLF: 95.62249366729688
Iteration: 23, Func. Count: 280, Neg. LLF: 95.62321932785997
Iteration: 24, Func. Count: 291, Neg. LLF: 95.62247722784596
Iteration: 25, Func. Count: 300, Neg. LLF: 95.62247717232567
Optimization terminated successfully (Exit mode 0)
Current function value: 95.62247722784596
Iterations: 26
Function evaluations: 300
Gradient evaluations: 25
Iteration: 1, Func. Count: 12, Neg. LLF: 136.30519631413674
Iteration: 2, Func. Count: 28, Neg. LLF: 95.81383315245802
Iteration: 3, Func. Count: 39, Neg. LLF: 96.00530158716715
Iteration: 4, Func. Count: 51, Neg. LLF: 95.71339927072239
Iteration: 5, Func. Count: 62, Neg. LLF: 95.69169204879672
Iteration: 6, Func. Count: 73, Neg. LLF: 95.65978910901119
Iteration: 7, Func. Count: 84, Neg. LLF: 95.65790623129506
Iteration: 8, Func. Count: 95, Neg. LLF: 95.65051430037963
Iteration: 9, Func. Count: 106, Neg. LLF: 95.6354408940126
Iteration: 10, Func. Count: 117, Neg. LLF: 95.6344057984495
Iteration: 11, Func. Count: 128, Neg. LLF: 95.62953163468045
Iteration: 12, Func. Count: 140, Neg. LLF: 95.63024154080681
Iteration: 13, Func. Count: 151, Neg. LLF: 95.62880678783691
Iteration: 14, Func. Count: 172, Neg. LLF: 95.6340845697398
Iteration: 15, Func. Count: 193, Neg. LLF: 95.63156416390302
Iteration: 16, Func. Count: 204, Neg. LLF: 95.62732869676378
Iteration: 17, Func. Count: 215, Neg. LLF: 95.6233075421314
Iteration: 18, Func. Count: 226, Neg. LLF: 95.6089733161047
Iteration: 19, Func. Count: 237, Neg. LLF: 96.24176511521677
Iteration: 20, Func. Count: 250, Neg. LLF: 100.78823908686782
Iteration: 21, Func. Count: 263, Neg. LLF: 95.60706002092084
Iteration: 22, Func. Count: 273, Neg. LLF: 95.60705989669722
Optimization terminated successfully (Exit mode 0)
Current function value: 95.60706002092084
Iterations: 23
Function evaluations: 273
Gradient evaluations: 22
Iteration: 1, Func. Count: 9, Neg. LLF: 113.95576613111372
Iteration: 2, Func. Count: 19, Neg. LLF: 181.13598691329588
Iteration: 3, Func. Count: 28, Neg. LLF: 265.5961804469944
Iteration: 4, Func. Count: 37, Neg. LLF: 122.55026990243742
Iteration: 5, Func. Count: 46, Neg. LLF: 116.06443637718885
Iteration: 6, Func. Count: 55, Neg. LLF: 96.45793632386679
Iteration: 7, Func. Count: 64, Neg. LLF: 96.0098738230255
Iteration: 8, Func. Count: 72, Neg. LLF: 95.91362243300884
Iteration: 9, Func. Count: 80, Neg. LLF: 95.89275060408971
Iteration: 10, Func. Count: 88, Neg. LLF: 95.87906819224582
Iteration: 11, Func. Count: 96, Neg. LLF: 95.87611474350662
Iteration: 12, Func. Count: 104, Neg. LLF: 95.87583645605675
Iteration: 13, Func. Count: 112, Neg. LLF: 95.87582788038117
Iteration: 14, Func. Count: 119, Neg. LLF: 95.87582789795218
Optimization terminated successfully (Exit mode 0)
Current function value: 95.87582788038117
Iterations: 14
Function evaluations: 119
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 133.6007636237745
Iteration: 2, Func. Count: 23, Neg. LLF: 99.57674116668214
Iteration: 3, Func. Count: 33, Neg. LLF: 97.91285666852558
Iteration: 4, Func. Count: 43, Neg. LLF: 96.73253422897027
Iteration: 5, Func. Count: 53, Neg. LLF: 96.07550783661928
Iteration: 6, Func. Count: 62, Neg. LLF: 98.55549820305778
Iteration: 7, Func. Count: 72, Neg. LLF: 95.73141527387047
Iteration: 8, Func. Count: 81, Neg. LLF: 95.61836690324557
Iteration: 9, Func. Count: 90, Neg. LLF: 95.60742183894233
Iteration: 10, Func. Count: 99, Neg. LLF: 95.60706172301268
Iteration: 11, Func. Count: 108, Neg. LLF: 95.60706001915389
Iteration: 12, Func. Count: 116, Neg. LLF: 95.60706014876037
Optimization terminated successfully (Exit mode 0)
Current function value: 95.60706001915389
Iterations: 12
Function evaluations: 116
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 174.3542117735941
Iteration: 2, Func. Count: 25, Neg. LLF: 96.83167571663108
Iteration: 3, Func. Count: 36, Neg. LLF: 95.5908406863594
Iteration: 4, Func. Count: 46, Neg. LLF: 96.16687452886994
Iteration: 5, Func. Count: 57, Neg. LLF: 97.21491528667268
Iteration: 6, Func. Count: 68, Neg. LLF: 95.15355106569854
Iteration: 7, Func. Count: 78, Neg. LLF: 95.09404394030268
Iteration: 8, Func. Count: 88, Neg. LLF: 95.0727938789791
Iteration: 9, Func. Count: 98, Neg. LLF: 95.04811893410415
Iteration: 10, Func. Count: 108, Neg. LLF: 95.03533483892404
Iteration: 11, Func. Count: 118, Neg. LLF: 95.02435338632871
Iteration: 12, Func. Count: 128, Neg. LLF: 95.02161741858222
Iteration: 13, Func. Count: 138, Neg. LLF: 95.02157497594679
Iteration: 14, Func. Count: 148, Neg. LLF: 95.02157376392964
Iteration: 15, Func. Count: 157, Neg. LLF: 95.02157371540473
Optimization terminated successfully (Exit mode 0)
Current function value: 95.02157376392964
Iterations: 15
Function evaluations: 157
Gradient evaluations: 15
Iteration: 1, Func. Count: 12, Neg. LLF: 154.77114397252737
Iteration: 2, Func. Count: 28, Neg. LLF: 102.14869876167961
Iteration: 3, Func. Count: 40, Neg. LLF: 97.58717461493033
Iteration: 4, Func. Count: 52, Neg. LLF: 96.76432763677238
Iteration: 5, Func. Count: 64, Neg. LLF: 95.87953578281923
Iteration: 6, Func. Count: 76, Neg. LLF: 95.10012994423074
Iteration: 7, Func. Count: 87, Neg. LLF: 152.24388276080958
Iteration: 8, Func. Count: 100, Neg. LLF: 95.68586400293503
Iteration: 9, Func. Count: 112, Neg. LLF: 96.01877663596048
Iteration: 10, Func. Count: 124, Neg. LLF: 95.44013438536625
Iteration: 11, Func. Count: 136, Neg. LLF: 94.70899485318893
Iteration: 12, Func. Count: 148, Neg. LLF: 94.41048769211311
Iteration: 13, Func. Count: 160, Neg. LLF: 94.34870433716681
Iteration: 14, Func. Count: 171, Neg. LLF: 94.32345741956222
Iteration: 15, Func. Count: 182, Neg. LLF: 94.32204517842926
Iteration: 16, Func. Count: 193, Neg. LLF: 94.32073694034118
Iteration: 17, Func. Count: 204, Neg. LLF: 94.31933128409568
Iteration: 18, Func. Count: 215, Neg. LLF: 94.31847146753766
Iteration: 19, Func. Count: 226, Neg. LLF: 94.31825066590977
Iteration: 20, Func. Count: 237, Neg. LLF: 94.31823161171314
Iteration: 21, Func. Count: 247, Neg. LLF: 94.31823161175195
Optimization terminated successfully (Exit mode 0)
Current function value: 94.31823161171314
Iterations: 21
Function evaluations: 247
Gradient evaluations: 21
Iteration: 1, Func. Count: 13, Neg. LLF: 123.975242218587
Iteration: 2, Func. Count: 30, Neg. LLF: 103.90904533120985
Iteration: 3, Func. Count: 43, Neg. LLF: 97.84978477119424
Iteration: 4, Func. Count: 56, Neg. LLF: 96.37315015970847
Iteration: 5, Func. Count: 69, Neg. LLF: 95.27552632634605
Iteration: 6, Func. Count: 81, Neg. LLF: 106.51284189879826
Iteration: 7, Func. Count: 94, Neg. LLF: 105.17193957091077
Iteration: 8, Func. Count: 107, Neg. LLF: 149.75670161938532
Iteration: 9, Func. Count: 121, Neg. LLF: 96.34061761689354
Iteration: 10, Func. Count: 134, Neg. LLF: 94.30582565251191
Iteration: 11, Func. Count: 146, Neg. LLF: 94.45610905295747
Iteration: 12, Func. Count: 159, Neg. LLF: 94.24827310210806
Iteration: 13, Func. Count: 171, Neg. LLF: 94.24473429303333
Iteration: 14, Func. Count: 183, Neg. LLF: 94.24413415602987
Iteration: 15, Func. Count: 195, Neg. LLF: 94.24396210749005
Iteration: 16, Func. Count: 207, Neg. LLF: 94.24383694642604
Iteration: 17, Func. Count: 219, Neg. LLF: 94.24380819075729
Iteration: 18, Func. Count: 231, Neg. LLF: 94.24380393567246
Iteration: 19, Func. Count: 242, Neg. LLF: 94.24380392294056
Optimization terminated successfully (Exit mode 0)
Current function value: 94.24380393567246
Iterations: 19
Function evaluations: 242
Gradient evaluations: 19
Iteration: 1, Func. Count: 10, Neg. LLF: 114.02353158570895
Iteration: 2, Func. Count: 21, Neg. LLF: 172.26209952916724
Iteration: 3, Func. Count: 31, Neg. LLF: 301.639318478917
Iteration: 4, Func. Count: 41, Neg. LLF: 121.5096500765288
Iteration: 5, Func. Count: 51, Neg. LLF: 116.09998718983186
Iteration: 6, Func. Count: 61, Neg. LLF: 96.47773029789144
Iteration: 7, Func. Count: 71, Neg. LLF: 96.01130033563831
Iteration: 8, Func. Count: 80, Neg. LLF: 95.91408313824226
Iteration: 9, Func. Count: 89, Neg. LLF: 95.89302532306027
Iteration: 10, Func. Count: 98, Neg. LLF: 95.8789275442222
Iteration: 11, Func. Count: 107, Neg. LLF: 95.8760915377331
Iteration: 12, Func. Count: 116, Neg. LLF: 95.87583648515077
Iteration: 13, Func. Count: 125, Neg. LLF: 95.87582788127172
Iteration: 14, Func. Count: 133, Neg. LLF: 95.87582794441128
Optimization terminated successfully (Exit mode 0)
Current function value: 95.87582788127172
Iterations: 14
Function evaluations: 133
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 135.1785501775636
Iteration: 2, Func. Count: 25, Neg. LLF: 100.05502811624433
Iteration: 3, Func. Count: 37, Neg. LLF: 97.87140333753777
Iteration: 4, Func. Count: 48, Neg. LLF: 95.98111931403656
Iteration: 5, Func. Count: 58, Neg. LLF: 95.62584242410516
Iteration: 6, Func. Count: 68, Neg. LLF: 95.61680913973805
Iteration: 7, Func. Count: 78, Neg. LLF: 95.61172000319358
Iteration: 8, Func. Count: 88, Neg. LLF: 108.27033002017804
Iteration: 9, Func. Count: 101, Neg. LLF: 106.3323698864218
Iteration: 10, Func. Count: 113, Neg. LLF: 95.60706003316628
Iteration: 11, Func. Count: 123, Neg. LLF: 95.67596740108009
Optimization terminated successfully (Exit mode 0)
Current function value: 95.60706001902152
Iterations: 13
Function evaluations: 127
Gradient evaluations: 11
Iteration: 1, Func. Count: 12, Neg. LLF: 175.35825031478677
Iteration: 2, Func. Count: 27, Neg. LLF: 97.01681617942393
Iteration: 3, Func. Count: 39, Neg. LLF: 95.92856634113433
Iteration: 4, Func. Count: 50, Neg. LLF: 96.02657913483797
Iteration: 5, Func. Count: 62, Neg. LLF: 124.4616119009575
Iteration: 6, Func. Count: 74, Neg. LLF: 95.03984118510128
Iteration: 7, Func. Count: 85, Neg. LLF: 95.02967530019056
Iteration: 8, Func. Count: 96, Neg. LLF: 95.02299474598132
Iteration: 9, Func. Count: 107, Neg. LLF: 95.02243812911381
Iteration: 10, Func. Count: 118, Neg. LLF: 95.02167492665399
Iteration: 11, Func. Count: 129, Neg. LLF: 95.02157791099444
Iteration: 12, Func. Count: 140, Neg. LLF: 95.02157406963957
Iteration: 13, Func. Count: 150, Neg. LLF: 95.02157402124757
Optimization terminated successfully (Exit mode 0)
Current function value: 95.02157406963957
Iterations: 13
Function evaluations: 150
Gradient evaluations: 13
Iteration: 1, Func. Count: 13, Neg. LLF: 158.69223403442172
Iteration: 2, Func. Count: 30, Neg. LLF: 102.0535509293777
Iteration: 3, Func. Count: 43, Neg. LLF: 98.43951251140301
Iteration: 4, Func. Count: 56, Neg. LLF: 96.79245977044368
Iteration: 5, Func. Count: 69, Neg. LLF: 95.94265839565654
Iteration: 6, Func. Count: 82, Neg. LLF: 96.18788525919422
Iteration: 7, Func. Count: 95, Neg. LLF: 94.94978630537891
Iteration: 8, Func. Count: 107, Neg. LLF: 95.92136576280514
Iteration: 9, Func. Count: 120, Neg. LLF: 95.24121289025739
Iteration: 10, Func. Count: 133, Neg. LLF: 110.97150497503566
Iteration: 11, Func. Count: 147, Neg. LLF: 95.63503810071005
Iteration: 12, Func. Count: 160, Neg. LLF: 94.39477610260843
Iteration: 13, Func. Count: 172, Neg. LLF: 94.39870347053986
Iteration: 14, Func. Count: 185, Neg. LLF: 94.33839924272002
Iteration: 15, Func. Count: 198, Neg. LLF: 94.3189675354211
Iteration: 16, Func. Count: 210, Neg. LLF: 94.31857009110676
Iteration: 17, Func. Count: 222, Neg. LLF: 94.31841967388894
Iteration: 18, Func. Count: 234, Neg. LLF: 94.3183508750843
Iteration: 19, Func. Count: 246, Neg. LLF: 94.31829502643738
Iteration: 20, Func. Count: 258, Neg. LLF: 94.31824739260196
Iteration: 21, Func. Count: 270, Neg. LLF: 94.31823297984269
Iteration: 22, Func. Count: 282, Neg. LLF: 94.31823123241706
Iteration: 23, Func. Count: 293, Neg. LLF: 94.31823123237555
Optimization terminated successfully (Exit mode 0)
Current function value: 94.31823123241706
Iterations: 23
Function evaluations: 293
Gradient evaluations: 23
Iteration: 1, Func. Count: 14, Neg. LLF: 129.76549357135326
Iteration: 2, Func. Count: 32, Neg. LLF: 97.00898877203075
Iteration: 3, Func. Count: 46, Neg. LLF: 95.3568911382684
Iteration: 4, Func. Count: 59, Neg. LLF: 95.38627910344663
Iteration: 5, Func. Count: 73, Neg. LLF: 113.16250110985183
Iteration: 6, Func. Count: 88, Neg. LLF: 100.25006517461497
Iteration: 7, Func. Count: 102, Neg. LLF: 95.9397843949135
Iteration: 8, Func. Count: 116, Neg. LLF: 94.37458573615007
Iteration: 9, Func. Count: 129, Neg. LLF: 94.45415130630234
Iteration: 10, Func. Count: 143, Neg. LLF: 94.28212139493918
Iteration: 11, Func. Count: 156, Neg. LLF: 94.25258153093748
Iteration: 12, Func. Count: 169, Neg. LLF: 94.24460059907767
Iteration: 13, Func. Count: 182, Neg. LLF: 94.24397169218926
Iteration: 14, Func. Count: 195, Neg. LLF: 94.2438233146655
Iteration: 15, Func. Count: 208, Neg. LLF: 94.24380774217393
Iteration: 16, Func. Count: 221, Neg. LLF: 94.2438059817646
Iteration: 17, Func. Count: 234, Neg. LLF: 94.24380416436443
Iteration: 18, Func. Count: 246, Neg. LLF: 94.24380415182104
Optimization terminated successfully (Exit mode 0)
Current function value: 94.24380416436443
Iterations: 18
Function evaluations: 246
Gradient evaluations: 18
Iteration: 1, Func. Count: 11, Neg. LLF: 124.7410982588993
Iteration: 2, Func. Count: 23, Neg. LLF: 594.8190658640663
Iteration: 3, Func. Count: 34, Neg. LLF: 7927378.274009074
Iteration: 4, Func. Count: 45, Neg. LLF: 94.79256656938932
Iteration: 5, Func. Count: 55, Neg. LLF: 808.3028856212677
Iteration: 6, Func. Count: 67, Neg. LLF: 94.82973236571074
Iteration: 7, Func. Count: 78, Neg. LLF: 94.72246937922694
Iteration: 8, Func. Count: 88, Neg. LLF: 94.72047692246757
Iteration: 9, Func. Count: 98, Neg. LLF: 94.71964019592352
Iteration: 10, Func. Count: 108, Neg. LLF: 94.71940826094641
Iteration: 11, Func. Count: 118, Neg. LLF: 94.7193878753304
Iteration: 12, Func. Count: 128, Neg. LLF: 94.71938368962975
Iteration: 13, Func. Count: 138, Neg. LLF: 94.71938092404399
Iteration: 14, Func. Count: 147, Neg. LLF: 94.71938092404612
Optimization terminated successfully (Exit mode 0)
Current function value: 94.71938092404399
Iterations: 14
Function evaluations: 147
Gradient evaluations: 14
Iteration: 1, Func. Count: 12, Neg. LLF: 118.02615074370114
Iteration: 2, Func. Count: 27, Neg. LLF: 105.8630649371664
Iteration: 3, Func. Count: 40, Neg. LLF: 96.19049050605697
Iteration: 4, Func. Count: 51, Neg. LLF: 95.99217703768191
Iteration: 5, Func. Count: 62, Neg. LLF: 98.093422695133
Iteration: 6, Func. Count: 75, Neg. LLF: 95.9396509385185
Iteration: 7, Func. Count: 86, Neg. LLF: 95.9063691508989
Iteration: 8, Func. Count: 97, Neg. LLF: 95.621235908941
Iteration: 9, Func. Count: 108, Neg. LLF: 38657016.91114602
Iteration: 10, Func. Count: 122, Neg. LLF: 97.52328632894081
Iteration: 11, Func. Count: 135, Neg. LLF: 95.60707115932185
Iteration: 12, Func. Count: 146, Neg. LLF: 95.60706032570707
Iteration: 13, Func. Count: 156, Neg. LLF: 95.60706045404885
Optimization terminated successfully (Exit mode 0)
Current function value: 95.60706032570707
Iterations: 14
Function evaluations: 156
Gradient evaluations: 13
Iteration: 1, Func. Count: 13, Neg. LLF: 174.94264991014776
Iteration: 2, Func. Count: 29, Neg. LLF: 97.1038142079204
Iteration: 3, Func. Count: 42, Neg. LLF: 96.60818486284771
Iteration: 4, Func. Count: 55, Neg. LLF: 96.0260316559933
Iteration: 5, Func. Count: 67, Neg. LLF: 95.45515918162234
Iteration: 6, Func. Count: 79, Neg. LLF: 95.34387952633257
Iteration: 7, Func. Count: 91, Neg. LLF: 95.08383147853425
Iteration: 8, Func. Count: 103, Neg. LLF: 95.04214837141767
Iteration: 9, Func. Count: 115, Neg. LLF: 95.02774294150898
Iteration: 10, Func. Count: 127, Neg. LLF: 95.02383804646831
Iteration: 11, Func. Count: 139, Neg. LLF: 95.02172435336736
Iteration: 12, Func. Count: 151, Neg. LLF: 95.0215797569484
Iteration: 13, Func. Count: 163, Neg. LLF: 95.02157385437626
Iteration: 14, Func. Count: 174, Neg. LLF: 95.02157380609466
Optimization terminated successfully (Exit mode 0)
Current function value: 95.02157385437626
Iterations: 14
Function evaluations: 174
Gradient evaluations: 14
Iteration: 1, Func. Count: 14, Neg. LLF: 120.68645029321202
Iteration: 2, Func. Count: 32, Neg. LLF: 814685.0543595132
Iteration: 3, Func. Count: 46, Neg. LLF: 97.93131751790233
Iteration: 4, Func. Count: 60, Neg. LLF: 97.93467506890626
Iteration: 5, Func. Count: 74, Neg. LLF: 95.48624714989812
Iteration: 6, Func. Count: 88, Neg. LLF: 94.46993592069188
Iteration: 7, Func. Count: 101, Neg. LLF: 95.41032976278919
Iteration: 8, Func. Count: 115, Neg. LLF: 100.62069353338089
Iteration: 9, Func. Count: 129, Neg. LLF: 97.0713023572533
Iteration: 10, Func. Count: 143, Neg. LLF: 93.8962516869416
Iteration: 11, Func. Count: 157, Neg. LLF: 97.18463772142177
Iteration: 12, Func. Count: 171, Neg. LLF: 93.68324848026452
Iteration: 13, Func. Count: 184, Neg. LLF: 94.2810986825418
Iteration: 14, Func. Count: 198, Neg. LLF: 95.59336282032429
Iteration: 15, Func. Count: 213, Neg. LLF: 93.70926536728032
Iteration: 16, Func. Count: 227, Neg. LLF: 93.5373959310679
Iteration: 17, Func. Count: 240, Neg. LLF: 93.51787322343307
Iteration: 18, Func. Count: 253, Neg. LLF: 93.50649339998915
Iteration: 19, Func. Count: 266, Neg. LLF: 93.49769084555177
Iteration: 20, Func. Count: 279, Neg. LLF: 93.48560109608523
Iteration: 21, Func. Count: 292, Neg. LLF: 93.46834626597732
Iteration: 22, Func. Count: 305, Neg. LLF: 93.4496373936268
Iteration: 23, Func. Count: 318, Neg. LLF: 93.440108193043
Iteration: 24, Func. Count: 331, Neg. LLF: 93.43802647515992
Iteration: 25, Func. Count: 344, Neg. LLF: 93.43783912552274
Iteration: 26, Func. Count: 357, Neg. LLF: 93.4378235367784
Iteration: 27, Func. Count: 370, Neg. LLF: 93.4378219950418
Iteration: 28, Func. Count: 382, Neg. LLF: 93.43782199501194
Optimization terminated successfully (Exit mode 0)
Current function value: 93.4378219950418
Iterations: 28
Function evaluations: 382
Gradient evaluations: 28
Iteration: 1, Func. Count: 15, Neg. LLF: 123.01837105453095
Iteration: 2, Func. Count: 34, Neg. LLF: 365.78623194523016
Iteration: 3, Func. Count: 49, Neg. LLF: 136.93132169993578
Iteration: 4, Func. Count: 64, Neg. LLF: 101.31096233858999
Iteration: 5, Func. Count: 79, Neg. LLF: 98.76114880102787
Iteration: 6, Func. Count: 94, Neg. LLF: 95.37232093208743
Iteration: 7, Func. Count: 108, Neg. LLF: 95.5540135424546
Iteration: 8, Func. Count: 123, Neg. LLF: 94.85172079769616
Iteration: 9, Func. Count: 138, Neg. LLF: 94.15160136216184
Iteration: 10, Func. Count: 152, Neg. LLF: 94.07521915042742
Iteration: 11, Func. Count: 166, Neg. LLF: 95.11329191572248
Iteration: 12, Func. Count: 181, Neg. LLF: 111.69386772374285
Iteration: 13, Func. Count: 196, Neg. LLF: 93.75640531592765
Iteration: 14, Func. Count: 210, Neg. LLF: 93.67957482634125
Iteration: 15, Func. Count: 224, Neg. LLF: 93.84018335753298
Iteration: 16, Func. Count: 239, Neg. LLF: 93.56443033237086
Iteration: 17, Func. Count: 253, Neg. LLF: 93.56844103580436
Iteration: 18, Func. Count: 268, Neg. LLF: 93.6335078614047
Iteration: 19, Func. Count: 283, Neg. LLF: 93.55474755010232
Iteration: 20, Func. Count: 298, Neg. LLF: 93.50594145550889
Iteration: 21, Func. Count: 312, Neg. LLF: 93.49504869154639
Iteration: 22, Func. Count: 326, Neg. LLF: 93.47511716047262
Iteration: 23, Func. Count: 340, Neg. LLF: 93.45968069074308
Iteration: 24, Func. Count: 354, Neg. LLF: 93.44746596932183
Iteration: 25, Func. Count: 368, Neg. LLF: 93.44140365261879
Iteration: 26, Func. Count: 382, Neg. LLF: 93.43896678541776
Iteration: 27, Func. Count: 396, Neg. LLF: 93.43823707632777
Iteration: 28, Func. Count: 410, Neg. LLF: 93.43795506867822
Iteration: 29, Func. Count: 424, Neg. LLF: 93.4378402716688
Iteration: 30, Func. Count: 438, Neg. LLF: 93.43782317053096
Iteration: 31, Func. Count: 452, Neg. LLF: 93.43782174135917
Iteration: 32, Func. Count: 465, Neg. LLF: 93.43782182715151
Optimization terminated successfully (Exit mode 0)
Current function value: 93.43782174135917
Iterations: 32
Function evaluations: 465
Gradient evaluations: 32
Iteration: 1, Func. Count: 12, Neg. LLF: 124.62198255497206
Iteration: 2, Func. Count: 25, Neg. LLF: 232.58181934685422
Iteration: 3, Func. Count: 37, Neg. LLF: 4946561.797839077
Iteration: 4, Func. Count: 49, Neg. LLF: 95.2151519934055
Iteration: 5, Func. Count: 60, Neg. LLF: 113.72533010237483
Iteration: 6, Func. Count: 73, Neg. LLF: 100.40041818158532
Iteration: 7, Func. Count: 88, Neg. LLF: 98.44689635158002
Iteration: 8, Func. Count: 101, Neg. LLF: 95.14327162657091
Iteration: 9, Func. Count: 113, Neg. LLF: 94.85865540263981
Iteration: 10, Func. Count: 125, Neg. LLF: 94.59763663224344
Iteration: 11, Func. Count: 136, Neg. LLF: 94.55902320294742
Iteration: 12, Func. Count: 147, Neg. LLF: 94.55759396311555
Iteration: 13, Func. Count: 158, Neg. LLF: 94.55753827491021
Iteration: 14, Func. Count: 169, Neg. LLF: 94.55751749463155
Iteration: 15, Func. Count: 180, Neg. LLF: 94.55750822056433
Iteration: 16, Func. Count: 190, Neg. LLF: 94.55750822054972
Optimization terminated successfully (Exit mode 0)
Current function value: 94.55750822056433
Iterations: 16
Function evaluations: 190
Gradient evaluations: 16
Iteration: 1, Func. Count: 13, Neg. LLF: 113.48120108167313
Iteration: 2, Func. Count: 30, Neg. LLF: 120.92436269345443
Iteration: 3, Func. Count: 43, Neg. LLF: 96.53118490077478
Iteration: 4, Func. Count: 56, Neg. LLF: 98.3501928749602
Iteration: 5, Func. Count: 69, Neg. LLF: 96.68808917791054
Iteration: 6, Func. Count: 82, Neg. LLF: 94.9459018086745
Iteration: 7, Func. Count: 94, Neg. LLF: 95.99747651722271
Iteration: 8, Func. Count: 108, Neg. LLF: 94.95775347566374
Iteration: 9, Func. Count: 121, Neg. LLF: 94.8495711674098
Iteration: 10, Func. Count: 133, Neg. LLF: 94.8333319571554
Iteration: 11, Func. Count: 145, Neg. LLF: 94.80269990158456
Iteration: 12, Func. Count: 157, Neg. LLF: 94.77390644778338
Iteration: 13, Func. Count: 169, Neg. LLF: 94.7591152713086
Iteration: 14, Func. Count: 181, Neg. LLF: 94.7426091646788
Iteration: 15, Func. Count: 193, Neg. LLF: 94.71426156996161
Iteration: 16, Func. Count: 205, Neg. LLF: 94.67034357961042
Iteration: 17, Func. Count: 217, Neg. LLF: 94.64734808309915
Iteration: 18, Func. Count: 229, Neg. LLF: 94.64249788278511
Iteration: 19, Func. Count: 241, Neg. LLF: 94.64148982227049
Iteration: 20, Func. Count: 253, Neg. LLF: 94.64148446361908
Iteration: 21, Func. Count: 264, Neg. LLF: 94.64148446362428
Optimization terminated successfully (Exit mode 0)
Current function value: 94.64148446361908
Iterations: 21
Function evaluations: 264
Gradient evaluations: 21
Iteration: 1, Func. Count: 14, Neg. LLF: 130.5765806566597
Iteration: 2, Func. Count: 32, Neg. LLF: 111.08241281727157
Iteration: 3, Func. Count: 46, Neg. LLF: 97.75685505829463
Iteration: 4, Func. Count: 60, Neg. LLF: 97.85306439055844
Iteration: 5, Func. Count: 74, Neg. LLF: 96.68931277315038
Iteration: 6, Func. Count: 88, Neg. LLF: 102.43943793328778
Iteration: 7, Func. Count: 102, Neg. LLF: 98.12563005347383
Iteration: 8, Func. Count: 116, Neg. LLF: 95.19249859838555
Iteration: 9, Func. Count: 129, Neg. LLF: 95.04587453569498
Iteration: 10, Func. Count: 142, Neg. LLF: 94.9620828767088
Iteration: 11, Func. Count: 155, Neg. LLF: 94.8730693601272
Iteration: 12, Func. Count: 168, Neg. LLF: 94.85611096495897
Iteration: 13, Func. Count: 181, Neg. LLF: 94.81788174834168
Iteration: 14, Func. Count: 194, Neg. LLF: 94.78399006141042
Iteration: 15, Func. Count: 207, Neg. LLF: 94.73426112713587
Iteration: 16, Func. Count: 220, Neg. LLF: 94.6767618095931
Iteration: 17, Func. Count: 233, Neg. LLF: 94.6487454086903
Iteration: 18, Func. Count: 246, Neg. LLF: 94.64187993983826
Iteration: 19, Func. Count: 259, Neg. LLF: 94.64151482331846
Iteration: 20, Func. Count: 272, Neg. LLF: 94.64148427726046
Iteration: 21, Func. Count: 284, Neg. LLF: 94.6414843434559
Optimization terminated successfully (Exit mode 0)
Current function value: 94.64148427726046
Iterations: 21
Function evaluations: 284
Gradient evaluations: 21
Iteration: 1, Func. Count: 15, Neg. LLF: 121.16567746948697
Iteration: 2, Func. Count: 34, Neg. LLF: 142.8308426093714
Iteration: 3, Func. Count: 49, Neg. LLF: 98.87759390285257
Iteration: 4, Func. Count: 64, Neg. LLF: 98.19012240497109
Iteration: 5, Func. Count: 79, Neg. LLF: 96.98597860249146
Iteration: 6, Func. Count: 94, Neg. LLF: 103.33532654337048
Iteration: 7, Func. Count: 109, Neg. LLF: 93.44383170906332
Iteration: 8, Func. Count: 123, Neg. LLF: 96.05258791477678
Iteration: 9, Func. Count: 138, Neg. LLF: 93.45864851606336
Iteration: 10, Func. Count: 153, Neg. LLF: 93.0176339921242
Iteration: 11, Func. Count: 167, Neg. LLF: 92.99372892279938
Iteration: 12, Func. Count: 181, Neg. LLF: 92.98919193352992
Iteration: 13, Func. Count: 195, Neg. LLF: 92.98691029897344
Iteration: 14, Func. Count: 209, Neg. LLF: 92.9950085911372
Iteration: 15, Func. Count: 224, Neg. LLF: 92.98453302636314
Iteration: 16, Func. Count: 238, Neg. LLF: 92.9837456309303
Iteration: 17, Func. Count: 252, Neg. LLF: 92.98295107262825
Iteration: 18, Func. Count: 266, Neg. LLF: 92.98291210381502
Iteration: 19, Func. Count: 280, Neg. LLF: 92.9828693602547
Iteration: 20, Func. Count: 294, Neg. LLF: 92.98281358981366
Iteration: 21, Func. Count: 308, Neg. LLF: 92.98270201245673
Iteration: 22, Func. Count: 322, Neg. LLF: 92.9825771298017
Iteration: 23, Func. Count: 336, Neg. LLF: 92.98253421518045
Iteration: 24, Func. Count: 350, Neg. LLF: 92.98252080218168
Iteration: 25, Func. Count: 364, Neg. LLF: 92.98252003279553
Optimization terminated successfully (Exit mode 0)
Current function value: 92.98252003279553
Iterations: 25
Function evaluations: 364
Gradient evaluations: 25
Iteration: 1, Func. Count: 16, Neg. LLF: 123.2303809004934
Iteration: 2, Func. Count: 36, Neg. LLF: 194.23038267212348
Iteration: 3, Func. Count: 52, Neg. LLF: 115.90399822968422
Iteration: 4, Func. Count: 68, Neg. LLF: 100.37985186125469
Iteration: 5, Func. Count: 84, Neg. LLF: 93.79444384321329
Iteration: 6, Func. Count: 99, Neg. LLF: 96.11287022669771
Iteration: 7, Func. Count: 115, Neg. LLF: 118.55333085682598
Iteration: 8, Func. Count: 131, Neg. LLF: 111.00308636032966
Iteration: 9, Func. Count: 149, Neg. LLF: 95.33026473920444
Iteration: 10, Func. Count: 165, Neg. LLF: 95.81469337089028
Iteration: 11, Func. Count: 181, Neg. LLF: 93.01563962884295
Iteration: 12, Func. Count: 196, Neg. LLF: 93.00035733594426
Iteration: 13, Func. Count: 211, Neg. LLF: 92.99404188427194
Iteration: 14, Func. Count: 226, Neg. LLF: 92.99066724363051
Iteration: 15, Func. Count: 241, Neg. LLF: 92.98516328273118
Iteration: 16, Func. Count: 256, Neg. LLF: 92.98387704074253
Iteration: 17, Func. Count: 271, Neg. LLF: 92.98283531224665
Iteration: 18, Func. Count: 286, Neg. LLF: 92.98258206647937
Iteration: 19, Func. Count: 301, Neg. LLF: 92.98252873894675
Iteration: 20, Func. Count: 316, Neg. LLF: 92.98252126413136
Iteration: 21, Func. Count: 331, Neg. LLF: 92.98252068148878
Optimization terminated successfully (Exit mode 0)
Current function value: 92.98252068148878
Iterations: 21
Function evaluations: 331
Gradient evaluations: 21
Iteration: 1, Func. Count: 6, Neg. LLF: 159.0366429725393
Iteration: 2, Func. Count: 14, Neg. LLF: 152.56724941486894
Iteration: 3, Func. Count: 21, Neg. LLF: 96.23939265654256
Iteration: 4, Func. Count: 26, Neg. LLF: 96.42543292459327
Iteration: 5, Func. Count: 32, Neg. LLF: 97.73319648219227
Iteration: 6, Func. Count: 38, Neg. LLF: 95.63337305090037
Iteration: 7, Func. Count: 43, Neg. LLF: 95.56929112543081
Iteration: 8, Func. Count: 48, Neg. LLF: 95.55117885743616
Iteration: 9, Func. Count: 53, Neg. LLF: 95.54812693988417
Iteration: 10, Func. Count: 58, Neg. LLF: 95.54757760501587
Iteration: 11, Func. Count: 63, Neg. LLF: 95.54744402204172
Iteration: 12, Func. Count: 67, Neg. LLF: 95.54744402216144
Optimization terminated successfully (Exit mode 0)
Current function value: 95.54744402204172
Iterations: 12
Function evaluations: 67
Gradient evaluations: 12
Iteration: 1, Func. Count: 5, Neg. LLF: 126.78258507231405
Iteration: 2, Func. Count: 12, Neg. LLF: 98.93463635540999
Iteration: 3, Func. Count: 16, Neg. LLF: 98.75439025404555
Iteration: 4, Func. Count: 20, Neg. LLF: 98.55053278984363
Iteration: 5, Func. Count: 24, Neg. LLF: 98.52994269126849
Iteration: 6, Func. Count: 28, Neg. LLF: 98.52901149633598
Iteration: 7, Func. Count: 32, Neg. LLF: 98.52900466542953
Iteration: 8, Func. Count: 35, Neg. LLF: 98.52900471377023
Optimization terminated successfully (Exit mode 0)
Current function value: 98.52900466542953
Iterations: 8
Function evaluations: 35
Gradient evaluations: 8
Iteration: 1, Func. Count: 6, Neg. LLF: 174.0556983084185
Iteration: 2, Func. Count: 14, Neg. LLF: 98.09516337068065
Iteration: 3, Func. Count: 19, Neg. LLF: 97.84397897648707
Iteration: 4, Func. Count: 24, Neg. LLF: 121.54754715320634
Iteration: 5, Func. Count: 32, Neg. LLF: 97.71011210439802
Iteration: 6, Func. Count: 37, Neg. LLF: 98.04861887542611
Iteration: 7, Func. Count: 43, Neg. LLF: 97.61673222264399
Iteration: 8, Func. Count: 48, Neg. LLF: 97.61304630176411
Iteration: 9, Func. Count: 53, Neg. LLF: 97.61240968661087
Iteration: 10, Func. Count: 58, Neg. LLF: 97.61236868250599
Iteration: 11, Func. Count: 62, Neg. LLF: 97.61236868276038
Optimization terminated successfully (Exit mode 0)
Current function value: 97.61236868250599
Iterations: 11
Function evaluations: 62
Gradient evaluations: 11
Iteration: 1, Func. Count: 7, Neg. LLF: 170.6233716573395
Iteration: 2, Func. Count: 17, Neg. LLF: 98.28175220923502
Iteration: 3, Func. Count: 24, Neg. LLF: 97.68485163240841
Iteration: 4, Func. Count: 30, Neg. LLF: 97.99097278799738
Iteration: 5, Func. Count: 37, Neg. LLF: 98.01765479718762
Iteration: 6, Func. Count: 44, Neg. LLF: 97.6278882904902
Iteration: 7, Func. Count: 51, Neg. LLF: 97.62337555658821
Iteration: 8, Func. Count: 57, Neg. LLF: 97.62286803578745
Iteration: 9, Func. Count: 63, Neg. LLF: 97.62279182897747
Iteration: 10, Func. Count: 69, Neg. LLF: 97.62236041534909
Iteration: 11, Func. Count: 75, Neg. LLF: 97.61845786431272
Iteration: 12, Func. Count: 81, Neg. LLF: 97.61237865964414
Iteration: 13, Func. Count: 87, Neg. LLF: 97.61239703424208
Iteration: 14, Func. Count: 94, Neg. LLF: 132.55864845437125
Optimization terminated successfully (Exit mode 0)
Current function value: 97.61237548500692
Iterations: 15
Function evaluations: 98
Gradient evaluations: 14
Iteration: 1, Func. Count: 8, Neg. LLF: 170.1523693084874
Iteration: 2, Func. Count: 19, Neg. LLF: 98.37095392412064
Iteration: 3, Func. Count: 27, Neg. LLF: 97.64148955414028
Iteration: 4, Func. Count: 34, Neg. LLF: 97.73489731814848
Iteration: 5, Func. Count: 42, Neg. LLF: 97.67109937281832
Iteration: 6, Func. Count: 50, Neg. LLF: 97.6315060837108
Iteration: 7, Func. Count: 58, Neg. LLF: 97.63067106627942
Iteration: 8, Func. Count: 65, Neg. LLF: 97.630153675135
Iteration: 9, Func. Count: 72, Neg. LLF: 97.63003186570509
Iteration: 10, Func. Count: 79, Neg. LLF: 97.62994579920795
Iteration: 11, Func. Count: 86, Neg. LLF: 97.62988370959789
Iteration: 12, Func. Count: 93, Neg. LLF: 97.62977860695133
Iteration: 13, Func. Count: 100, Neg. LLF: 97.62955893497603
Iteration: 14, Func. Count: 107, Neg. LLF: 97.62875624609873
Iteration: 15, Func. Count: 114, Neg. LLF: 97.65438605648464
Iteration: 16, Func. Count: 122, Neg. LLF: 97.6561777722545
Iteration: 17, Func. Count: 130, Neg. LLF: 97.65047189425319
Iteration: 18, Func. Count: 138, Neg. LLF: 115.6843827713868
Iteration: 19, Func. Count: 148, Neg. LLF: 110.83308622796343
Optimization terminated successfully (Exit mode 0)
Current function value: 97.62768285037734
Iterations: 20
Function evaluations: 152
Gradient evaluations: 19
Iteration: 1, Func. Count: 9, Neg. LLF: 173.76520297096647
Iteration: 2, Func. Count: 21, Neg. LLF: 98.44128894575839
Iteration: 3, Func. Count: 30, Neg. LLF: 97.6429163079205
Iteration: 4, Func. Count: 38, Neg. LLF: 97.88582917012901
Iteration: 5, Func. Count: 48, Neg. LLF: 97.64616158443546
Iteration: 6, Func. Count: 57, Neg. LLF: 97.63866679069838
Iteration: 7, Func. Count: 65, Neg. LLF: 97.63850099433223
Iteration: 8, Func. Count: 73, Neg. LLF: 97.63671991096471
Iteration: 9, Func. Count: 81, Neg. LLF: 97.62952425372502
Iteration: 10, Func. Count: 89, Neg. LLF: 97.62414189563277
Iteration: 11, Func. Count: 97, Neg. LLF: 97.60227488232766
Iteration: 12, Func. Count: 105, Neg. LLF: 97.57923886672157
Iteration: 13, Func. Count: 113, Neg. LLF: 97.57532071667569
Iteration: 14, Func. Count: 122, Neg. LLF: 97.56633999785895
Iteration: 15, Func. Count: 130, Neg. LLF: 97.56616635724636
Iteration: 16, Func. Count: 138, Neg. LLF: 97.56616487825619
Iteration: 17, Func. Count: 146, Neg. LLF: 97.5661570976851
Iteration: 18, Func. Count: 154, Neg. LLF: 97.56615441639052
Iteration: 19, Func. Count: 162, Neg. LLF: 97.56613967596442
Iteration: 20, Func. Count: 170, Neg. LLF: 97.96984235780799
Optimization terminated successfully (Exit mode 0)
Current function value: 97.56613960179179
Iterations: 21
Function evaluations: 174
Gradient evaluations: 20
Iteration: 1, Func. Count: 6, Neg. LLF: 125.89493505696684
Iteration: 2, Func. Count: 14, Neg. LLF: 98.88194770588441
Iteration: 3, Func. Count: 19, Neg. LLF: 98.54431036953453
Iteration: 4, Func. Count: 24, Neg. LLF: 98.53093587509662
Iteration: 5, Func. Count: 29, Neg. LLF: 98.52911366681073
Iteration: 6, Func. Count: 34, Neg. LLF: 98.52900577410526
Iteration: 7, Func. Count: 39, Neg. LLF: 98.52900466340681
Iteration: 8, Func. Count: 43, Neg. LLF: 98.52900476374874
Optimization terminated successfully (Exit mode 0)
Current function value: 98.52900466340681
Iterations: 8
Function evaluations: 43
Gradient evaluations: 8
Iteration: 1, Func. Count: 7, Neg. LLF: 173.82375557641683
Iteration: 2, Func. Count: 16, Neg. LLF: 97.99701262558504
Iteration: 3, Func. Count: 22, Neg. LLF: 98.2816021014692
Iteration: 4, Func. Count: 29, Neg. LLF: 119.23035256872336
Iteration: 5, Func. Count: 36, Neg. LLF: 98.50540123320579
Iteration: 6, Func. Count: 44, Neg. LLF: 97.61305945746473
Iteration: 7, Func. Count: 50, Neg. LLF: 97.61245316088878
Iteration: 8, Func. Count: 56, Neg. LLF: 97.61236957337745
Iteration: 9, Func. Count: 62, Neg. LLF: 97.61236843879811
Iteration: 10, Func. Count: 67, Neg. LLF: 97.61236843877226
Optimization terminated successfully (Exit mode 0)
Current function value: 97.61236843879811
Iterations: 10
Function evaluations: 67
Gradient evaluations: 10
Iteration: 1, Func. Count: 8, Neg. LLF: 171.2811916173614
Iteration: 2, Func. Count: 19, Neg. LLF: 98.22367160382733
Iteration: 3, Func. Count: 27, Neg. LLF: 97.69141438776438
Iteration: 4, Func. Count: 34, Neg. LLF: 98.21767302827415
Iteration: 5, Func. Count: 42, Neg. LLF: 97.86945470021801
Iteration: 6, Func. Count: 50, Neg. LLF: 97.63193533048113
Iteration: 7, Func. Count: 58, Neg. LLF: 97.62287654343035
Iteration: 8, Func. Count: 65, Neg. LLF: 97.62259698151766
Iteration: 9, Func. Count: 72, Neg. LLF: 97.62249696175772
Iteration: 10, Func. Count: 79, Neg. LLF: 97.62177461852681
Iteration: 11, Func. Count: 86, Neg. LLF: 97.61275440697746
Iteration: 12, Func. Count: 93, Neg. LLF: 97.61263440179187
Iteration: 13, Func. Count: 101, Neg. LLF: 97.61237008397727
Iteration: 14, Func. Count: 108, Neg. LLF: 97.61237110655429
Iteration: 15, Func. Count: 115, Neg. LLF: 97.61236893813172
Optimization terminated successfully (Exit mode 0)
Current function value: 97.61236893751709
Iterations: 15
Function evaluations: 115
Gradient evaluations: 15
Iteration: 1, Func. Count: 9, Neg. LLF: 171.81245483600503
Iteration: 2, Func. Count: 21, Neg. LLF: 98.30820874578087
Iteration: 3, Func. Count: 30, Neg. LLF: 97.63592789113491
Iteration: 4, Func. Count: 38, Neg. LLF: 97.71189108378093
Iteration: 5, Func. Count: 47, Neg. LLF: 97.64737434211162
Iteration: 6, Func. Count: 56, Neg. LLF: 97.63116271497688
Iteration: 7, Func. Count: 64, Neg. LLF: 97.63065455133815
Iteration: 8, Func. Count: 72, Neg. LLF: 97.63046202755898
Iteration: 9, Func. Count: 80, Neg. LLF: 97.63040695988212
Iteration: 10, Func. Count: 88, Neg. LLF: 97.63015382865616
Iteration: 11, Func. Count: 96, Neg. LLF: 97.62975304555617
Iteration: 12, Func. Count: 104, Neg. LLF: 97.62742458379502
Iteration: 13, Func. Count: 112, Neg. LLF: 97.63378895193708
Iteration: 14, Func. Count: 121, Neg. LLF: 97.63050366776271
Iteration: 15, Func. Count: 130, Neg. LLF: 97.62574425890627
Iteration: 16, Func. Count: 138, Neg. LLF: 97.62478703699374
Iteration: 17, Func. Count: 146, Neg. LLF: 97.62447926445464
Iteration: 18, Func. Count: 154, Neg. LLF: 97.62425315380827
Iteration: 19, Func. Count: 162, Neg. LLF: 97.62402923582442
Iteration: 20, Func. Count: 170, Neg. LLF: 97.62349160245617
Iteration: 21, Func. Count: 178, Neg. LLF: 97.61850941346852
Iteration: 22, Func. Count: 186, Neg. LLF: 97.79827561116406
Iteration: 23, Func. Count: 196, Neg. LLF: 97.69083644382319
Iteration: 24, Func. Count: 206, Neg. LLF: 97.61254830352361
Iteration: 25, Func. Count: 214, Neg. LLF: 29726661.898692545
Iteration: 26, Func. Count: 226, Neg. LLF: 97.61436238531326
Iteration: 27, Func. Count: 235, Neg. LLF: 97.61243225474995
Iteration: 28, Func. Count: 243, Neg. LLF: 97.61237769737316
Iteration: 29, Func. Count: 251, Neg. LLF: 97.61236956176184
Iteration: 30, Func. Count: 259, Neg. LLF: 97.61236843311826
Iteration: 31, Func. Count: 266, Neg. LLF: 97.61236843491797
Optimization terminated successfully (Exit mode 0)
Current function value: 97.61236843311826
Iterations: 32
Function evaluations: 266
Gradient evaluations: 31
Iteration: 1, Func. Count: 10, Neg. LLF: 172.01989861134356
Iteration: 2, Func. Count: 23, Neg. LLF: 98.36663371297483
Iteration: 3, Func. Count: 33, Neg. LLF: 97.65880309357884
Iteration: 4, Func. Count: 42, Neg. LLF: 97.64111187720266
Iteration: 5, Func. Count: 51, Neg. LLF: 97.63878931046663
Iteration: 6, Func. Count: 60, Neg. LLF: 97.782696375228
Iteration: 7, Func. Count: 70, Neg. LLF: 97.63620853305164
Iteration: 8, Func. Count: 79, Neg. LLF: 97.63448266449737
Iteration: 9, Func. Count: 88, Neg. LLF: 97.62865314736347
Iteration: 10, Func. Count: 97, Neg. LLF: 97.61196887758236
Iteration: 11, Func. Count: 106, Neg. LLF: 97.57810946209477
Iteration: 12, Func. Count: 115, Neg. LLF: 97.57411409167257
Iteration: 13, Func. Count: 125, Neg. LLF: 97.56615705610788
Iteration: 14, Func. Count: 134, Neg. LLF: 97.56613946957474
Iteration: 15, Func. Count: 142, Neg. LLF: 97.56613946955582
Optimization terminated successfully (Exit mode 0)
Current function value: 97.56613946957474
Iterations: 15
Function evaluations: 142
Gradient evaluations: 15
Iteration: 1, Func. Count: 7, Neg. LLF: 132.15268495658063
Iteration: 2, Func. Count: 16, Neg. LLF: 136556362.4546549
Iteration: 3, Func. Count: 23, Neg. LLF: 6793408.002257185
Iteration: 4, Func. Count: 30, Neg. LLF: 96.61040110813177
Iteration: 5, Func. Count: 36, Neg. LLF: 96.57754053821898
Iteration: 6, Func. Count: 42, Neg. LLF: 96.57501647858811
Iteration: 7, Func. Count: 48, Neg. LLF: 96.57437975169054
Iteration: 8, Func. Count: 54, Neg. LLF: 96.57324520770126
Iteration: 9, Func. Count: 60, Neg. LLF: 96.57308942042752
Iteration: 10, Func. Count: 66, Neg. LLF: 96.57307667347219
Iteration: 11, Func. Count: 71, Neg. LLF: 96.57307667348933
Optimization terminated successfully (Exit mode 0)
Current function value: 96.57307667347219
Iterations: 11
Function evaluations: 71
Gradient evaluations: 11
Iteration: 1, Func. Count: 8, Neg. LLF: 173.3204820686358
Iteration: 2, Func. Count: 18, Neg. LLF: 97.95459530737661
Iteration: 3, Func. Count: 25, Neg. LLF: 98.45935859777292
Iteration: 4, Func. Count: 33, Neg. LLF: 124.6201658432467
Iteration: 5, Func. Count: 41, Neg. LLF: 98.19339328113374
Iteration: 6, Func. Count: 50, Neg. LLF: 97.6521677620394
Iteration: 7, Func. Count: 58, Neg. LLF: 97.6123843321606
Iteration: 8, Func. Count: 65, Neg. LLF: 97.61237030348336
Iteration: 9, Func. Count: 72, Neg. LLF: 97.61236843138923
Iteration: 10, Func. Count: 78, Neg. LLF: 97.61236843140263
Optimization terminated successfully (Exit mode 0)
Current function value: 97.61236843138923
Iterations: 10
Function evaluations: 78
Gradient evaluations: 10
Iteration: 1, Func. Count: 9, Neg. LLF: 170.90429522107385
Iteration: 2, Func. Count: 21, Neg. LLF: 98.12523187812995
Iteration: 3, Func. Count: 30, Neg. LLF: 97.70117440801755
Iteration: 4, Func. Count: 38, Neg. LLF: 98.2197579888939
Iteration: 5, Func. Count: 47, Neg. LLF: 98.02505788195586
Iteration: 6, Func. Count: 56, Neg. LLF: 97.63241889633035
Iteration: 7, Func. Count: 65, Neg. LLF: 97.62304233749633
Iteration: 8, Func. Count: 73, Neg. LLF: 97.6225074589963
Iteration: 9, Func. Count: 81, Neg. LLF: 97.62242491489611
Iteration: 10, Func. Count: 89, Neg. LLF: 97.62194328277816
Iteration: 11, Func. Count: 97, Neg. LLF: 97.61720656910536
Iteration: 12, Func. Count: 105, Neg. LLF: 97.6123807308725
Iteration: 13, Func. Count: 113, Neg. LLF: 3532519.942398538
Iteration: 14, Func. Count: 125, Neg. LLF: 97.61628420610649
Iteration: 15, Func. Count: 135, Neg. LLF: 97.61242210585593
Optimization terminated successfully (Exit mode 0)
Current function value: 97.61236888673419
Iterations: 16
Function evaluations: 136
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 158.08896896201992
Iteration: 2, Func. Count: 23, Neg. LLF: 98.18378037513963
Iteration: 3, Func. Count: 33, Neg. LLF: 97.64686748999111
Iteration: 4, Func. Count: 42, Neg. LLF: 97.63659828820612
Iteration: 5, Func. Count: 51, Neg. LLF: 105.59120132266412
Iteration: 6, Func. Count: 61, Neg. LLF: 97.11583522890598
Iteration: 7, Func. Count: 70, Neg. LLF: 96.36353685050477
Iteration: 8, Func. Count: 79, Neg. LLF: 95.59977242896703
Iteration: 9, Func. Count: 88, Neg. LLF: 95.69199612206991
Iteration: 10, Func. Count: 98, Neg. LLF: 95.66389261546622
Iteration: 11, Func. Count: 108, Neg. LLF: 95.6286814426265
Iteration: 12, Func. Count: 118, Neg. LLF: 95.52994027608207
Iteration: 13, Func. Count: 127, Neg. LLF: 95.50401431674356
Iteration: 14, Func. Count: 136, Neg. LLF: 95.50083039102442
Iteration: 15, Func. Count: 145, Neg. LLF: 95.50070923207495
Iteration: 16, Func. Count: 154, Neg. LLF: 95.50070082119906
Iteration: 17, Func. Count: 163, Neg. LLF: 95.5006931590258
Iteration: 18, Func. Count: 172, Neg. LLF: 95.50067442761872
Iteration: 19, Func. Count: 181, Neg. LLF: 95.50065720317586
Iteration: 20, Func. Count: 190, Neg. LLF: 95.5006483786807
Iteration: 21, Func. Count: 199, Neg. LLF: 95.50064702594517
Iteration: 22, Func. Count: 207, Neg. LLF: 95.50064702598176
Optimization terminated successfully (Exit mode 0)
Current function value: 95.50064702594517
Iterations: 22
Function evaluations: 207
Gradient evaluations: 22
Iteration: 1, Func. Count: 11, Neg. LLF: 148.75938665131872
Iteration: 2, Func. Count: 25, Neg. LLF: 99.07901407959675
Iteration: 3, Func. Count: 37, Neg. LLF: 97.68746542517063
Iteration: 4, Func. Count: 47, Neg. LLF: 98.74536048933409
Iteration: 5, Func. Count: 58, Neg. LLF: 97.68048495109988
Iteration: 6, Func. Count: 69, Neg. LLF: 97.63798487604224
Iteration: 7, Func. Count: 79, Neg. LLF: 97.63743108746927
Iteration: 8, Func. Count: 89, Neg. LLF: 97.63701532188838
Iteration: 9, Func. Count: 99, Neg. LLF: 97.633102167647
Iteration: 10, Func. Count: 109, Neg. LLF: 97.62254766530545
Iteration: 11, Func. Count: 119, Neg. LLF: 97.60044495296054
Iteration: 12, Func. Count: 129, Neg. LLF: 97.57870191917054
Iteration: 13, Func. Count: 139, Neg. LLF: 97.57611350714618
Iteration: 14, Func. Count: 150, Neg. LLF: 97.56641053961815
Iteration: 15, Func. Count: 160, Neg. LLF: 97.56658754157985
Iteration: 16, Func. Count: 171, Neg. LLF: 97.56618968947468
Iteration: 17, Func. Count: 181, Neg. LLF: 159.41789143765146
Iteration: 18, Func. Count: 194, Neg. LLF: 97.56730236132984
Iteration: 19, Func. Count: 205, Neg. LLF: 97.56614494775363
Iteration: 20, Func. Count: 215, Neg. LLF: 97.5661778729718
Iteration: 21, Func. Count: 226, Neg. LLF: 97.56614043352349
Iteration: 22, Func. Count: 236, Neg. LLF: 97.5661394338576
Optimization terminated successfully (Exit mode 0)
Current function value: 97.56613943386651
Iterations: 23
Function evaluations: 236
Gradient evaluations: 22
Iteration: 1, Func. Count: 8, Neg. LLF: 136.94275653805408
Iteration: 2, Func. Count: 18, Neg. LLF: 169508082.03494874
Iteration: 3, Func. Count: 26, Neg. LLF: 6824056.318050289
Iteration: 4, Func. Count: 34, Neg. LLF: 96.68374774167042
Iteration: 5, Func. Count: 41, Neg. LLF: 96.58182946009511
Iteration: 6, Func. Count: 48, Neg. LLF: 96.57658035718995
Iteration: 7, Func. Count: 55, Neg. LLF: 96.57560400851374
Iteration: 8, Func. Count: 62, Neg. LLF: 96.57381590124419
Iteration: 9, Func. Count: 69, Neg. LLF: 96.57313561767842
Iteration: 10, Func. Count: 76, Neg. LLF: 96.57307763053646
Iteration: 11, Func. Count: 83, Neg. LLF: 96.57307636554806
Iteration: 12, Func. Count: 89, Neg. LLF: 96.57307641809754
Optimization terminated successfully (Exit mode 0)
Current function value: 96.57307636554806
Iterations: 12
Function evaluations: 89
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 173.75235520063143
Iteration: 2, Func. Count: 20, Neg. LLF: 97.99111656673858
Iteration: 3, Func. Count: 28, Neg. LLF: 98.25223964930505
Iteration: 4, Func. Count: 37, Neg. LLF: 119.84565271139303
Iteration: 5, Func. Count: 46, Neg. LLF: 98.5051953812988
Iteration: 6, Func. Count: 56, Neg. LLF: 97.61357902742203
Iteration: 7, Func. Count: 64, Neg. LLF: 97.61254406118375
Iteration: 8, Func. Count: 72, Neg. LLF: 97.61237246482698
Iteration: 9, Func. Count: 80, Neg. LLF: 97.61236847321817
Iteration: 10, Func. Count: 87, Neg. LLF: 97.61236847320114
Optimization terminated successfully (Exit mode 0)
Current function value: 97.61236847321817
Iterations: 10
Function evaluations: 87
Gradient evaluations: 10
Iteration: 1, Func. Count: 10, Neg. LLF: 170.83578262150561
Iteration: 2, Func. Count: 23, Neg. LLF: 98.14061812699349
Iteration: 3, Func. Count: 33, Neg. LLF: 97.69096174271246
Iteration: 4, Func. Count: 42, Neg. LLF: 98.03702067159593
Iteration: 5, Func. Count: 52, Neg. LLF: 98.0795643227009
Iteration: 6, Func. Count: 62, Neg. LLF: 97.62900450528788
Iteration: 7, Func. Count: 71, Neg. LLF: 97.62354720198762
Iteration: 8, Func. Count: 80, Neg. LLF: 97.62281623076947
Iteration: 9, Func. Count: 89, Neg. LLF: 97.62271994662062
Iteration: 10, Func. Count: 98, Neg. LLF: 97.62249012587368
Iteration: 11, Func. Count: 107, Neg. LLF: 97.62145767329862
Iteration: 12, Func. Count: 116, Neg. LLF: 97.61644911672789
Iteration: 13, Func. Count: 125, Neg. LLF: 97.61588170729122
Iteration: 14, Func. Count: 134, Neg. LLF: 97.6151031730597
Iteration: 15, Func. Count: 143, Neg. LLF: 97.61393985460516
Iteration: 16, Func. Count: 152, Neg. LLF: 97.61273754265879
Iteration: 17, Func. Count: 161, Neg. LLF: 97.61239588914839
Iteration: 18, Func. Count: 170, Neg. LLF: 97.61270824558072
Optimization terminated successfully (Exit mode 0)
Current function value: 97.61239578950281
Iterations: 18
Function evaluations: 172
Gradient evaluations: 18
Iteration: 1, Func. Count: 11, Neg. LLF: 164.49007102831328
Iteration: 2, Func. Count: 25, Neg. LLF: 98.16751072817685
Iteration: 3, Func. Count: 36, Neg. LLF: 97.64358404705376
Iteration: 4, Func. Count: 46, Neg. LLF: 97.69447120477385
Iteration: 5, Func. Count: 57, Neg. LLF: 99.43448756817223
Iteration: 6, Func. Count: 68, Neg. LLF: 97.63193652480703
Iteration: 7, Func. Count: 78, Neg. LLF: 97.63146771887442
Iteration: 8, Func. Count: 88, Neg. LLF: 97.63094134545243
Iteration: 9, Func. Count: 98, Neg. LLF: 97.63061194163747
Iteration: 10, Func. Count: 108, Neg. LLF: 97.63047007194518
Iteration: 11, Func. Count: 118, Neg. LLF: 97.63027082894938
Iteration: 12, Func. Count: 128, Neg. LLF: 97.63002624279035
Iteration: 13, Func. Count: 138, Neg. LLF: 97.62948694243015
Iteration: 14, Func. Count: 148, Neg. LLF: 97.65781470210365
Iteration: 15, Func. Count: 159, Neg. LLF: 97.65307008657302
Iteration: 16, Func. Count: 170, Neg. LLF: 97.65119592103714
Iteration: 17, Func. Count: 181, Neg. LLF: 98.13416157451373
Iteration: 18, Func. Count: 193, Neg. LLF: 97.62705587128593
Iteration: 19, Func. Count: 203, Neg. LLF: 255.6537638724312
Iteration: 20, Func. Count: 217, Neg. LLF: 97.66247976086021
Iteration: 21, Func. Count: 229, Neg. LLF: 97.6270240041399
Iteration: 22, Func. Count: 240, Neg. LLF: 97.62632609806889
Iteration: 23, Func. Count: 250, Neg. LLF: 97.62431277006785
Iteration: 24, Func. Count: 260, Neg. LLF: 97.62423693619847
Iteration: 25, Func. Count: 270, Neg. LLF: 97.62412361278196
Iteration: 26, Func. Count: 280, Neg. LLF: 97.62383248444468
Iteration: 27, Func. Count: 290, Neg. LLF: 97.62205675673674
Iteration: 28, Func. Count: 300, Neg. LLF: 97.61251023420738
Iteration: 29, Func. Count: 310, Neg. LLF: 142.4144939667469
Optimization terminated successfully (Exit mode 0)
Current function value: 97.61250928551779
Iterations: 31
Function evaluations: 314
Gradient evaluations: 29
Iteration: 1, Func. Count: 12, Neg. LLF: 150.54300957168874
Iteration: 2, Func. Count: 27, Neg. LLF: 99.09295460866763
Iteration: 3, Func. Count: 40, Neg. LLF: 97.70333353962539
Iteration: 4, Func. Count: 51, Neg. LLF: 98.65159977619909
Iteration: 5, Func. Count: 63, Neg. LLF: 97.70867277988971
Iteration: 6, Func. Count: 75, Neg. LLF: 97.63809259844744
Iteration: 7, Func. Count: 86, Neg. LLF: 97.63737887217111
Iteration: 8, Func. Count: 97, Neg. LLF: 97.63686904680658
Iteration: 9, Func. Count: 108, Neg. LLF: 97.63239146637555
Iteration: 10, Func. Count: 119, Neg. LLF: 97.6199082358952
Iteration: 11, Func. Count: 130, Neg. LLF: 97.60501754352589
Iteration: 12, Func. Count: 141, Neg. LLF: 97.59090887725779
Iteration: 13, Func. Count: 152, Neg. LLF: 97.58071622299019
Iteration: 14, Func. Count: 163, Neg. LLF: 97.57171145998153
Iteration: 15, Func. Count: 174, Neg. LLF: 97.57054326380764
Iteration: 16, Func. Count: 186, Neg. LLF: 97.56665336559607
Iteration: 17, Func. Count: 197, Neg. LLF: 97.566207809035
Iteration: 18, Func. Count: 208, Neg. LLF: 97.56616702348987
Iteration: 19, Func. Count: 219, Neg. LLF: 211.95179286186567
Iteration: 20, Func. Count: 233, Neg. LLF: 97.56615888967717
Iteration: 21, Func. Count: 245, Neg. LLF: 97.56614983048274
Iteration: 22, Func. Count: 257, Neg. LLF: 97.56620508029599
Optimization terminated successfully (Exit mode 0)
Current function value: 97.56613982333694
Iterations: 23
Function evaluations: 258
Gradient evaluations: 22
Iteration: 1, Func. Count: 5, Neg. LLF: 157.019045203958
Iteration: 2, Func. Count: 12, Neg. LLF: 141.3651466221964
Iteration: 3, Func. Count: 18, Neg. LLF: 98.59572929051318
Iteration: 4, Func. Count: 22, Neg. LLF: 98.66948562072352
Iteration: 5, Func. Count: 28, Neg. LLF: 98.53862425435617
Iteration: 6, Func. Count: 32, Neg. LLF: 98.53062738205136
Iteration: 7, Func. Count: 36, Neg. LLF: 98.52909389616869
Iteration: 8, Func. Count: 40, Neg. LLF: 98.52900853282455
Iteration: 9, Func. Count: 44, Neg. LLF: 98.52900468540506
Iteration: 10, Func. Count: 47, Neg. LLF: 98.52900468776798
Optimization terminated successfully (Exit mode 0)
Current function value: 98.52900468540506
Iterations: 10
Function evaluations: 47
Gradient evaluations: 10
Iteration: 1, Func. Count: 6, Neg. LLF: 174.4687606373687
Iteration: 2, Func. Count: 14, Neg. LLF: 98.24177007177798
Iteration: 3, Func. Count: 20, Neg. LLF: 97.72301089763972
Iteration: 4, Func. Count: 25, Neg. LLF: 98.03097904338081
Iteration: 5, Func. Count: 31, Neg. LLF: 108.49896105134336
Iteration: 6, Func. Count: 38, Neg. LLF: 97.61247494365752
Iteration: 7, Func. Count: 43, Neg. LLF: 97.61243137893784
Iteration: 8, Func. Count: 48, Neg. LLF: 97.612368940768
Iteration: 9, Func. Count: 52, Neg. LLF: 97.61236894229805
Optimization terminated successfully (Exit mode 0)
Current function value: 97.612368940768
Iterations: 9
Function evaluations: 52
Gradient evaluations: 9
Iteration: 1, Func. Count: 7, Neg. LLF: 171.06097947280037
Iteration: 2, Func. Count: 17, Neg. LLF: 98.36215609205796
Iteration: 3, Func. Count: 24, Neg. LLF: 97.72106580836227
Iteration: 4, Func. Count: 30, Neg. LLF: 98.07391663784794
Iteration: 5, Func. Count: 37, Neg. LLF: 98.3967304191171
Iteration: 6, Func. Count: 44, Neg. LLF: 97.62721309556794
Iteration: 7, Func. Count: 50, Neg. LLF: 97.6234275788097
Iteration: 8, Func. Count: 56, Neg. LLF: 97.62267400919787
Iteration: 9, Func. Count: 62, Neg. LLF: 97.62253524644396
Iteration: 10, Func. Count: 68, Neg. LLF: 97.62229129859936
Iteration: 11, Func. Count: 74, Neg. LLF: 97.62128199331987
Iteration: 12, Func. Count: 80, Neg. LLF: 97.61816729932927
Iteration: 13, Func. Count: 86, Neg. LLF: 97.61477549588142
Iteration: 14, Func. Count: 92, Neg. LLF: 97.61364351334426
Iteration: 15, Func. Count: 98, Neg. LLF: 97.61247224287074
Iteration: 16, Func. Count: 104, Neg. LLF: 97.61237063029824
Iteration: 17, Func. Count: 110, Neg. LLF: 97.61236848148582
Iteration: 18, Func. Count: 116, Neg. LLF: 99.37961616729679
Optimization terminated successfully (Exit mode 0)
Current function value: 97.6123684751026
Iterations: 19
Function evaluations: 120
Gradient evaluations: 18
Iteration: 1, Func. Count: 8, Neg. LLF: 169.03179327189636
Iteration: 2, Func. Count: 19, Neg. LLF: 98.39478933928854
Iteration: 3, Func. Count: 27, Neg. LLF: 97.64673263955919
Iteration: 4, Func. Count: 34, Neg. LLF: 97.80890455996978
Iteration: 5, Func. Count: 42, Neg. LLF: 97.634567705802
Iteration: 6, Func. Count: 49, Neg. LLF: 97.63128879706687
Iteration: 7, Func. Count: 56, Neg. LLF: 97.63103354735279
Iteration: 8, Func. Count: 63, Neg. LLF: 97.63078346021096
Iteration: 9, Func. Count: 70, Neg. LLF: 97.63068819107079
Iteration: 10, Func. Count: 77, Neg. LLF: 97.63049478585559
Iteration: 11, Func. Count: 84, Neg. LLF: 97.6301316555763
Iteration: 12, Func. Count: 91, Neg. LLF: 97.62931147489456
Iteration: 13, Func. Count: 98, Neg. LLF: 97.63737683313134
Iteration: 14, Func. Count: 106, Neg. LLF: 97.635722402613
Iteration: 15, Func. Count: 114, Neg. LLF: 97.63440887968478
Iteration: 16, Func. Count: 122, Neg. LLF: 98.81729094829174
Optimization terminated successfully (Exit mode 0)
Current function value: 97.62863720275725
Iterations: 16
Function evaluations: 125
Gradient evaluations: 16
Iteration: 1, Func. Count: 9, Neg. LLF: 173.0894251022544
Iteration: 2, Func. Count: 21, Neg. LLF: 98.45171556410357
Iteration: 3, Func. Count: 30, Neg. LLF: 97.64140556041579
Iteration: 4, Func. Count: 38, Neg. LLF: 98.25295425858133
Iteration: 5, Func. Count: 48, Neg. LLF: 97.63913716885317
Iteration: 6, Func. Count: 56, Neg. LLF: 97.63911103505805
Iteration: 7, Func. Count: 64, Neg. LLF: 97.63889692857359
Iteration: 8, Func. Count: 72, Neg. LLF: 97.63038675249496
Iteration: 9, Func. Count: 80, Neg. LLF: 97.60958260071331
Iteration: 10, Func. Count: 88, Neg. LLF: 97.58287531970052
Iteration: 11, Func. Count: 96, Neg. LLF: 97.57784841442873
Iteration: 12, Func. Count: 105, Neg. LLF: 97.56814434488498
Iteration: 13, Func. Count: 113, Neg. LLF: 97.56689164521728
Iteration: 14, Func. Count: 121, Neg. LLF: 97.56652326980952
Iteration: 15, Func. Count: 129, Neg. LLF: 97.56790005964203
Iteration: 16, Func. Count: 138, Neg. LLF: 97.57784962546175
Iteration: 17, Func. Count: 148, Neg. LLF: 97.56622856024897
Iteration: 18, Func. Count: 156, Neg. LLF: 97.56621056919002
Iteration: 19, Func. Count: 165, Neg. LLF: 97.56615420953169
Iteration: 20, Func. Count: 173, Neg. LLF: 97.56613942319535
Iteration: 21, Func. Count: 180, Neg. LLF: 97.56613942321503
Optimization terminated successfully (Exit mode 0)
Current function value: 97.56613942319535
Iterations: 22
Function evaluations: 180
Gradient evaluations: 21
Iteration: 1, Func. Count: 6, Neg. LLF: 158.01757386981075
Iteration: 2, Func. Count: 14, Neg. LLF: 151.2156028335121
Iteration: 3, Func. Count: 21, Neg. LLF: 97.30860655844559
Iteration: 4, Func. Count: 26, Neg. LLF: 97.6741454923716
Iteration: 5, Func. Count: 33, Neg. LLF: 98.62353635400078
Iteration: 6, Func. Count: 39, Neg. LLF: 96.81279693550456
Iteration: 7, Func. Count: 44, Neg. LLF: 96.7577190170537
Iteration: 8, Func. Count: 49, Neg. LLF: 96.74108838949974
Iteration: 9, Func. Count: 54, Neg. LLF: 96.73147708587022
Iteration: 10, Func. Count: 59, Neg. LLF: 96.72936140809769
Iteration: 11, Func. Count: 64, Neg. LLF: 96.72914759850865
Iteration: 12, Func. Count: 69, Neg. LLF: 96.729141782977
Iteration: 13, Func. Count: 73, Neg. LLF: 96.72914178297582
Optimization terminated successfully (Exit mode 0)
Current function value: 96.729141782977
Iterations: 13
Function evaluations: 73
Gradient evaluations: 13
Iteration: 1, Func. Count: 7, Neg. LLF: 124.1380414759817
Iteration: 2, Func. Count: 17, Neg. LLF: 104.22752951753246
Iteration: 3, Func. Count: 24, Neg. LLF: 116.31695392630023
Iteration: 4, Func. Count: 31, Neg. LLF: 97.9020936083966
Iteration: 5, Func. Count: 37, Neg. LLF: 98.10148716341942
Iteration: 6, Func. Count: 44, Neg. LLF: 98.27039044812491
Iteration: 7, Func. Count: 51, Neg. LLF: 97.77420453016637
Iteration: 8, Func. Count: 57, Neg. LLF: 97.77179209071583
Iteration: 9, Func. Count: 63, Neg. LLF: 97.77155132782558
Iteration: 10, Func. Count: 69, Neg. LLF: 97.77132391808225
Iteration: 11, Func. Count: 75, Neg. LLF: 97.77107867220747
Iteration: 12, Func. Count: 81, Neg. LLF: 97.63759109272465
Iteration: 13, Func. Count: 87, Neg. LLF: 32928228.66831351
Iteration: 14, Func. Count: 97, Neg. LLF: 97.66698517731595
Iteration: 15, Func. Count: 104, Neg. LLF: 97.64412438443257
Iteration: 16, Func. Count: 111, Neg. LLF: 97.616216633055
Iteration: 17, Func. Count: 118, Neg. LLF: 97.61262656291747
Iteration: 18, Func. Count: 125, Neg. LLF: 97.61236843432074
Iteration: 19, Func. Count: 130, Neg. LLF: 97.61236843433231
Optimization terminated successfully (Exit mode 0)
Current function value: 97.61236843432074
Iterations: 20
Function evaluations: 130
Gradient evaluations: 19
Iteration: 1, Func. Count: 8, Neg. LLF: 140.72099257858767
Iteration: 2, Func. Count: 19, Neg. LLF: 100.00613469394561
Iteration: 3, Func. Count: 27, Neg. LLF: 120.00275768020558
Iteration: 4, Func. Count: 35, Neg. LLF: 97.12817600656219
Iteration: 5, Func. Count: 42, Neg. LLF: 97.2916246712594
Iteration: 6, Func. Count: 50, Neg. LLF: 97.06944191440505
Iteration: 7, Func. Count: 57, Neg. LLF: 97.01240839565561
Iteration: 8, Func. Count: 64, Neg. LLF: 96.95876646908042
Iteration: 9, Func. Count: 71, Neg. LLF: 97.11729370900613
Iteration: 10, Func. Count: 79, Neg. LLF: 96.83805081077735
Iteration: 11, Func. Count: 86, Neg. LLF: 96.82316206091895
Iteration: 12, Func. Count: 93, Neg. LLF: 96.8242825751786
Iteration: 13, Func. Count: 101, Neg. LLF: 96.80712444984957
Iteration: 14, Func. Count: 108, Neg. LLF: 96.78969106929017
Iteration: 15, Func. Count: 115, Neg. LLF: 96.7594978888283
Iteration: 16, Func. Count: 122, Neg. LLF: 96.73985037448608
Iteration: 17, Func. Count: 129, Neg. LLF: 96.73196365829575
Iteration: 18, Func. Count: 136, Neg. LLF: 96.73000176569437
Iteration: 19, Func. Count: 143, Neg. LLF: 96.729316241954
Iteration: 20, Func. Count: 150, Neg. LLF: 96.72911811059015
Iteration: 21, Func. Count: 157, Neg. LLF: 96.72911696264275
Iteration: 22, Func. Count: 164, Neg. LLF: 96.72911656041374
Optimization terminated successfully (Exit mode 0)
Current function value: 96.72911656041374
Iterations: 22
Function evaluations: 164
Gradient evaluations: 22
Iteration: 1, Func. Count: 9, Neg. LLF: 131.06317214203165
Iteration: 2, Func. Count: 21, Neg. LLF: 100.18729622356392
Iteration: 3, Func. Count: 30, Neg. LLF: 121.79764530794118
Iteration: 4, Func. Count: 39, Neg. LLF: 98.98582797744676
Iteration: 5, Func. Count: 48, Neg. LLF: 97.42771737272815
Iteration: 6, Func. Count: 57, Neg. LLF: 97.1303184724569
Iteration: 7, Func. Count: 66, Neg. LLF: 96.43412981846865
Iteration: 8, Func. Count: 74, Neg. LLF: 97.07255726458273
Iteration: 9, Func. Count: 83, Neg. LLF: 96.37825998269939
Iteration: 10, Func. Count: 92, Neg. LLF: 96.2874968529322
Iteration: 11, Func. Count: 100, Neg. LLF: 96.28162502980196
Iteration: 12, Func. Count: 108, Neg. LLF: 96.28157684750363
Iteration: 13, Func. Count: 116, Neg. LLF: 96.28157239083198
Iteration: 14, Func. Count: 124, Neg. LLF: 96.28156578481138
Iteration: 15, Func. Count: 132, Neg. LLF: 96.28156320726522
Iteration: 16, Func. Count: 140, Neg. LLF: 96.28156214331779
Iteration: 17, Func. Count: 147, Neg. LLF: 96.28156214334406
Optimization terminated successfully (Exit mode 0)
Current function value: 96.28156214331779
Iterations: 17
Function evaluations: 147
Gradient evaluations: 17
Iteration: 1, Func. Count: 10, Neg. LLF: 107.0910507791743
Iteration: 2, Func. Count: 21, Neg. LLF: 98.5006771106334
Iteration: 3, Func. Count: 31, Neg. LLF: 399.9295027112287
Iteration: 4, Func. Count: 41, Neg. LLF: 98.94286803649457
Iteration: 5, Func. Count: 51, Neg. LLF: 96.6905798156077
Iteration: 6, Func. Count: 60, Neg. LLF: 96.44451935332235
Iteration: 7, Func. Count: 69, Neg. LLF: 96.59608474095144
Iteration: 8, Func. Count: 79, Neg. LLF: 96.29862246638724
Iteration: 9, Func. Count: 88, Neg. LLF: 96.31193961188092
Iteration: 10, Func. Count: 98, Neg. LLF: 96.27775777483737
Iteration: 11, Func. Count: 107, Neg. LLF: 96.20745006478762
Iteration: 12, Func. Count: 116, Neg. LLF: 98.55962467116142
Iteration: 13, Func. Count: 126, Neg. LLF: 97.9708687290131
Iteration: 14, Func. Count: 136, Neg. LLF: 98.32715693115169
Iteration: 15, Func. Count: 146, Neg. LLF: 96.16522163262205
Iteration: 16, Func. Count: 156, Neg. LLF: 96.13017611597024
Iteration: 17, Func. Count: 166, Neg. LLF: 96.1287168660046
Iteration: 18, Func. Count: 175, Neg. LLF: 96.12852592952682
Iteration: 19, Func. Count: 184, Neg. LLF: 96.12852211398683
Iteration: 20, Func. Count: 192, Neg. LLF: 96.12852206216887
Optimization terminated successfully (Exit mode 0)
Current function value: 96.12852211398683
Iterations: 20
Function evaluations: 192
Gradient evaluations: 20
Iteration: 1, Func. Count: 7, Neg. LLF: 157.53655550878315
Iteration: 2, Func. Count: 16, Neg. LLF: 150.71435312241638
Iteration: 3, Func. Count: 24, Neg. LLF: 97.32582870787375
Iteration: 4, Func. Count: 30, Neg. LLF: 97.67924852120063
Iteration: 5, Func. Count: 38, Neg. LLF: 98.63407024428466
Iteration: 6, Func. Count: 45, Neg. LLF: 96.81508793673503
Iteration: 7, Func. Count: 51, Neg. LLF: 96.7590568548006
Iteration: 8, Func. Count: 57, Neg. LLF: 96.74084732620588
Iteration: 9, Func. Count: 63, Neg. LLF: 96.73150561669763
Iteration: 10, Func. Count: 69, Neg. LLF: 96.72936941367192
Iteration: 11, Func. Count: 75, Neg. LLF: 96.72914807096659
Iteration: 12, Func. Count: 81, Neg. LLF: 96.7291418257442
Iteration: 13, Func. Count: 86, Neg. LLF: 96.72914188293096
Optimization terminated successfully (Exit mode 0)
Current function value: 96.7291418257442
Iterations: 13
Function evaluations: 86
Gradient evaluations: 13
Iteration: 1, Func. Count: 8, Neg. LLF: 123.77034488057818
Iteration: 2, Func. Count: 19, Neg. LLF: 103.92967336425257
Iteration: 3, Func. Count: 27, Neg. LLF: 111.04392505640247
Iteration: 4, Func. Count: 35, Neg. LLF: 97.8977555273873
Iteration: 5, Func. Count: 42, Neg. LLF: 98.09304296056094
Iteration: 6, Func. Count: 50, Neg. LLF: 98.31988543244134
Iteration: 7, Func. Count: 58, Neg. LLF: 97.7740256704582
Iteration: 8, Func. Count: 65, Neg. LLF: 97.7716791070865
Iteration: 9, Func. Count: 72, Neg. LLF: 97.7715110782032
Iteration: 10, Func. Count: 79, Neg. LLF: 97.77131672145251
Iteration: 11, Func. Count: 86, Neg. LLF: 97.7709652380052
Iteration: 12, Func. Count: 93, Neg. LLF: 97.63829293547322
Iteration: 13, Func. Count: 100, Neg. LLF: 32993417.102243923
Iteration: 14, Func. Count: 111, Neg. LLF: 97.7008259688195
Iteration: 15, Func. Count: 119, Neg. LLF: 97.63491555786386
Iteration: 16, Func. Count: 127, Neg. LLF: 97.61579504519113
Iteration: 17, Func. Count: 135, Neg. LLF: 97.61257146431456
Iteration: 18, Func. Count: 143, Neg. LLF: 97.61236845149418
Iteration: 19, Func. Count: 149, Neg. LLF: 97.61236845145082
Optimization terminated successfully (Exit mode 0)
Current function value: 97.61236845149418
Iterations: 20
Function evaluations: 149
Gradient evaluations: 19
Iteration: 1, Func. Count: 9, Neg. LLF: 141.99786833727777
Iteration: 2, Func. Count: 21, Neg. LLF: 100.04530102654073
Iteration: 3, Func. Count: 30, Neg. LLF: 113.3867358351198
Iteration: 4, Func. Count: 39, Neg. LLF: 97.21549002375589
Iteration: 5, Func. Count: 47, Neg. LLF: 97.31605775409002
Iteration: 6, Func. Count: 56, Neg. LLF: 97.10279823125849
Iteration: 7, Func. Count: 64, Neg. LLF: 97.05557405048228
Iteration: 8, Func. Count: 72, Neg. LLF: 96.98608360204932
Iteration: 9, Func. Count: 80, Neg. LLF: 96.8578104989254
Iteration: 10, Func. Count: 88, Neg. LLF: 96.8477723083424
Iteration: 11, Func. Count: 97, Neg. LLF: 96.81524382858319
Iteration: 12, Func. Count: 105, Neg. LLF: 96.80611503278521
Iteration: 13, Func. Count: 113, Neg. LLF: 96.79395270339319
Iteration: 14, Func. Count: 121, Neg. LLF: 96.78105587539777
Iteration: 15, Func. Count: 129, Neg. LLF: 96.76437437502243
Iteration: 16, Func. Count: 137, Neg. LLF: 96.74702806161878
Iteration: 17, Func. Count: 145, Neg. LLF: 96.73272078770636
Iteration: 18, Func. Count: 153, Neg. LLF: 96.72940412761214
Iteration: 19, Func. Count: 161, Neg. LLF: 96.7291513213488
Iteration: 20, Func. Count: 169, Neg. LLF: 96.72911643434276
Iteration: 21, Func. Count: 176, Neg. LLF: 96.72911643434463
Optimization terminated successfully (Exit mode 0)
Current function value: 96.72911643434276
Iterations: 21
Function evaluations: 176
Gradient evaluations: 21
Iteration: 1, Func. Count: 10, Neg. LLF: 131.9979857585485
Iteration: 2, Func. Count: 23, Neg. LLF: 100.02619420109706
Iteration: 3, Func. Count: 33, Neg. LLF: 121.54685486704443
Iteration: 4, Func. Count: 43, Neg. LLF: 98.8823923487049
Iteration: 5, Func. Count: 53, Neg. LLF: 97.56607070047089
Iteration: 6, Func. Count: 63, Neg. LLF: 97.24848620984979
Iteration: 7, Func. Count: 73, Neg. LLF: 96.45394823859975
Iteration: 8, Func. Count: 82, Neg. LLF: 96.98192279470621
Iteration: 9, Func. Count: 92, Neg. LLF: 96.4538141904333
Iteration: 10, Func. Count: 102, Neg. LLF: 96.29000710219216
Iteration: 11, Func. Count: 111, Neg. LLF: 96.28173322068118
Iteration: 12, Func. Count: 120, Neg. LLF: 96.28162509541335
Iteration: 13, Func. Count: 129, Neg. LLF: 96.28160790731546
Iteration: 14, Func. Count: 138, Neg. LLF: 96.28156833471613
Iteration: 15, Func. Count: 147, Neg. LLF: 96.28156330897146
Iteration: 16, Func. Count: 156, Neg. LLF: 96.28156209009647
Iteration: 17, Func. Count: 164, Neg. LLF: 96.28156209009595
Optimization terminated successfully (Exit mode 0)
Current function value: 96.28156209009647
Iterations: 17
Function evaluations: 164
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 106.67491032588377
Iteration: 2, Func. Count: 23, Neg. LLF: 97.9929263382144
Iteration: 3, Func. Count: 34, Neg. LLF: 425.5419952311086
Iteration: 4, Func. Count: 45, Neg. LLF: 100.1240407267188
Iteration: 5, Func. Count: 56, Neg. LLF: 97.6532288132963
Iteration: 6, Func. Count: 67, Neg. LLF: 96.4932236354275
Iteration: 7, Func. Count: 77, Neg. LLF: 96.74333322243115
Iteration: 8, Func. Count: 88, Neg. LLF: 122.4430513568736
Iteration: 9, Func. Count: 100, Neg. LLF: 96.35834367421987
Iteration: 10, Func. Count: 110, Neg. LLF: 96.32609447292052
Iteration: 11, Func. Count: 120, Neg. LLF: 96.3224046973743
Iteration: 12, Func. Count: 130, Neg. LLF: 96.3204815197311
Iteration: 13, Func. Count: 140, Neg. LLF: 96.31808351784677
Iteration: 14, Func. Count: 150, Neg. LLF: 96.31553028870627
Iteration: 15, Func. Count: 160, Neg. LLF: 96.31250861149847
Iteration: 16, Func. Count: 170, Neg. LLF: 96.31178968518523
Iteration: 17, Func. Count: 180, Neg. LLF: 96.30704881815846
Iteration: 18, Func. Count: 190, Neg. LLF: 96.355063167631
Iteration: 19, Func. Count: 201, Neg. LLF: 96.30471494432646
Iteration: 20, Func. Count: 221, Neg. LLF: 142.66841796539978
Iteration: 21, Func. Count: 233, Neg. LLF: 96.97945593407589
Iteration: 22, Func. Count: 244, Neg. LLF: 96.23651240966431
Iteration: 23, Func. Count: 254, Neg. LLF: 99.55031882501044
Iteration: 24, Func. Count: 265, Neg. LLF: 98.03984025655821
Iteration: 25, Func. Count: 276, Neg. LLF: 98.37256121868987
Iteration: 26, Func. Count: 287, Neg. LLF: 96.19829770495718
Iteration: 27, Func. Count: 298, Neg. LLF: 96.12984289788295
Iteration: 28, Func. Count: 308, Neg. LLF: 96.12867883663223
Iteration: 29, Func. Count: 318, Neg. LLF: 96.12861262913096
Iteration: 30, Func. Count: 328, Neg. LLF: 96.12852688115376
Iteration: 31, Func. Count: 338, Neg. LLF: 96.12852226202484
Iteration: 32, Func. Count: 347, Neg. LLF: 96.12852221023346
Optimization terminated successfully (Exit mode 0)
Current function value: 96.12852226202484
Iterations: 33
Function evaluations: 347
Gradient evaluations: 32
Iteration: 1, Func. Count: 8, Neg. LLF: 125.11187418121715
Iteration: 2, Func. Count: 17, Neg. LLF: 152.35814060575638
Iteration: 3, Func. Count: 26, Neg. LLF: 739.8607168842201
Iteration: 4, Func. Count: 34, Neg. LLF: 97.03960942314363
Iteration: 5, Func. Count: 41, Neg. LLF: 96.88356678703155
Iteration: 6, Func. Count: 48, Neg. LLF: 96.66944098370763
Iteration: 7, Func. Count: 55, Neg. LLF: 96.60986145307615
Iteration: 8, Func. Count: 62, Neg. LLF: 96.5875835471822
Iteration: 9, Func. Count: 69, Neg. LLF: 96.5733442760678
Iteration: 10, Func. Count: 76, Neg. LLF: 96.57308618401375
Iteration: 11, Func. Count: 83, Neg. LLF: 96.57307643476
Iteration: 12, Func. Count: 89, Neg. LLF: 96.57307643477051
Optimization terminated successfully (Exit mode 0)
Current function value: 96.57307643476
Iterations: 12
Function evaluations: 89
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 123.26422391542997
Iteration: 2, Func. Count: 21, Neg. LLF: 103.77321188275512
Iteration: 3, Func. Count: 30, Neg. LLF: 108.09494406676912
Iteration: 4, Func. Count: 39, Neg. LLF: 97.89580751106955
Iteration: 5, Func. Count: 47, Neg. LLF: 98.10195701965344
Iteration: 6, Func. Count: 56, Neg. LLF: 98.35624296942692
Iteration: 7, Func. Count: 65, Neg. LLF: 97.7738303659529
Iteration: 8, Func. Count: 73, Neg. LLF: 97.77162307453568
Iteration: 9, Func. Count: 81, Neg. LLF: 97.77149305045697
Iteration: 10, Func. Count: 89, Neg. LLF: 97.7713128901318
Iteration: 11, Func. Count: 97, Neg. LLF: 97.77060477272397
Iteration: 12, Func. Count: 105, Neg. LLF: 97.64232574692711
Iteration: 13, Func. Count: 113, Neg. LLF: 32911209.46165504
Iteration: 14, Func. Count: 124, Neg. LLF: 97.67203711159328
Iteration: 15, Func. Count: 133, Neg. LLF: 97.64991230172485
Iteration: 16, Func. Count: 142, Neg. LLF: 97.61546414300044
Iteration: 17, Func. Count: 151, Neg. LLF: 97.61289815617327
Iteration: 18, Func. Count: 160, Neg. LLF: 97.61236843290655
Iteration: 19, Func. Count: 167, Neg. LLF: 97.61236843290881
Optimization terminated successfully (Exit mode 0)
Current function value: 97.61236843290655
Iterations: 20
Function evaluations: 167
Gradient evaluations: 19
Iteration: 1, Func. Count: 10, Neg. LLF: 142.13636764351946
Iteration: 2, Func. Count: 23, Neg. LLF: 99.83987595216598
Iteration: 3, Func. Count: 33, Neg. LLF: 108.39280274338755
Iteration: 4, Func. Count: 43, Neg. LLF: 97.52660710632766
Iteration: 5, Func. Count: 52, Neg. LLF: 97.35829076726151
Iteration: 6, Func. Count: 61, Neg. LLF: 97.27071107469683
Iteration: 7, Func. Count: 70, Neg. LLF: 97.18679344886156
Iteration: 8, Func. Count: 79, Neg. LLF: 96.90768451335718
Iteration: 9, Func. Count: 88, Neg. LLF: 96.89109850914848
Iteration: 10, Func. Count: 97, Neg. LLF: 96.84911521874946
Iteration: 11, Func. Count: 106, Neg. LLF: 96.83048378528869
Iteration: 12, Func. Count: 115, Neg. LLF: 96.81740133992304
Iteration: 13, Func. Count: 124, Neg. LLF: 96.80650856673101
Iteration: 14, Func. Count: 133, Neg. LLF: 96.78423031492316
Iteration: 15, Func. Count: 142, Neg. LLF: 96.76585541159872
Iteration: 16, Func. Count: 151, Neg. LLF: 96.73387245064066
Iteration: 17, Func. Count: 160, Neg. LLF: 96.72946541872521
Iteration: 18, Func. Count: 169, Neg. LLF: 96.72912712260295
Iteration: 19, Func. Count: 178, Neg. LLF: 96.72911600551228
Iteration: 20, Func. Count: 186, Neg. LLF: 96.7291160055416
Optimization terminated successfully (Exit mode 0)
Current function value: 96.72911600551228
Iterations: 20
Function evaluations: 186
Gradient evaluations: 20
Iteration: 1, Func. Count: 11, Neg. LLF: 122.66282225535484
Iteration: 2, Func. Count: 26, Neg. LLF: 104.06648230655911
Iteration: 3, Func. Count: 37, Neg. LLF: 124.23621698235115
Iteration: 4, Func. Count: 48, Neg. LLF: 97.3513765828931
Iteration: 5, Func. Count: 60, Neg. LLF: 97.53887602001454
Iteration: 6, Func. Count: 71, Neg. LLF: 97.45512311282219
Iteration: 7, Func. Count: 82, Neg. LLF: 97.68300714884647
Iteration: 8, Func. Count: 93, Neg. LLF: 96.14655483549163
Iteration: 9, Func. Count: 103, Neg. LLF: 96.15091072845435
Iteration: 10, Func. Count: 114, Neg. LLF: 96.05051180148472
Iteration: 11, Func. Count: 124, Neg. LLF: 96.00563365507831
Iteration: 12, Func. Count: 134, Neg. LLF: 96.89323398479783
Iteration: 13, Func. Count: 145, Neg. LLF: 96.92451184160588
Iteration: 14, Func. Count: 156, Neg. LLF: 96.97428810765972
Iteration: 15, Func. Count: 167, Neg. LLF: 100.37759128619697
Iteration: 16, Func. Count: 178, Neg. LLF: 95.76178786828902
Iteration: 17, Func. Count: 189, Neg. LLF: 95.57817971239666
Iteration: 18, Func. Count: 199, Neg. LLF: 95.55821070434821
Iteration: 19, Func. Count: 209, Neg. LLF: 95.55022309386204
Iteration: 20, Func. Count: 219, Neg. LLF: 95.53971625589071
Iteration: 21, Func. Count: 229, Neg. LLF: 95.5335803090034
Iteration: 22, Func. Count: 239, Neg. LLF: 95.50795517403922
Iteration: 23, Func. Count: 249, Neg. LLF: 95.50084358648427
Iteration: 24, Func. Count: 259, Neg. LLF: 95.50032265979596
Iteration: 25, Func. Count: 269, Neg. LLF: 95.5003010683278
Iteration: 26, Func. Count: 279, Neg. LLF: 95.50028840448331
Iteration: 27, Func. Count: 288, Neg. LLF: 95.50028840450074
Optimization terminated successfully (Exit mode 0)
Current function value: 95.50028840448331
Iterations: 27
Function evaluations: 288
Gradient evaluations: 27
Iteration: 1, Func. Count: 12, Neg. LLF: 100.23163012511543
Iteration: 2, Func. Count: 26, Neg. LLF: 3555581.978397303
Iteration: 3, Func. Count: 38, Neg. LLF: 169.3355888763958
Iteration: 4, Func. Count: 50, Neg. LLF: 142.21569149868904
Iteration: 5, Func. Count: 62, Neg. LLF: 96.33993504582388
Iteration: 6, Func. Count: 73, Neg. LLF: 101.95737284052488
Iteration: 7, Func. Count: 86, Neg. LLF: 100.20235128544503
Iteration: 8, Func. Count: 99, Neg. LLF: 96.10402600358543
Iteration: 9, Func. Count: 111, Neg. LLF: 95.60564139027748
Iteration: 10, Func. Count: 122, Neg. LLF: 95.56370807747453
Iteration: 11, Func. Count: 133, Neg. LLF: 95.53326824074081
Iteration: 12, Func. Count: 144, Neg. LLF: 95.52594656823601
Iteration: 13, Func. Count: 155, Neg. LLF: 95.519596677868
Iteration: 14, Func. Count: 166, Neg. LLF: 95.50830795563616
Iteration: 15, Func. Count: 177, Neg. LLF: 95.50150266501342
Iteration: 16, Func. Count: 188, Neg. LLF: 95.50047920375492
Iteration: 17, Func. Count: 199, Neg. LLF: 95.50029903304375
Iteration: 18, Func. Count: 210, Neg. LLF: 95.50028849529144
Iteration: 19, Func. Count: 220, Neg. LLF: 95.50028857670911
Optimization terminated successfully (Exit mode 0)
Current function value: 95.50028849529144
Iterations: 19
Function evaluations: 220
Gradient evaluations: 19
Iteration: 1, Func. Count: 9, Neg. LLF: 121.7593113778818
Iteration: 2, Func. Count: 19, Neg. LLF: 154.22016221866434
Iteration: 3, Func. Count: 29, Neg. LLF: 8955316.401782442
Iteration: 4, Func. Count: 38, Neg. LLF: 97.3335665186356
Iteration: 5, Func. Count: 46, Neg. LLF: 96.96389647300812
Iteration: 6, Func. Count: 54, Neg. LLF: 96.70948671643573
Iteration: 7, Func. Count: 62, Neg. LLF: 96.63037950810573
Iteration: 8, Func. Count: 70, Neg. LLF: 96.59744128070459
Iteration: 9, Func. Count: 78, Neg. LLF: 96.58009771056896
Iteration: 10, Func. Count: 86, Neg. LLF: 96.57340636313897
Iteration: 11, Func. Count: 94, Neg. LLF: 96.57308652737889
Iteration: 12, Func. Count: 102, Neg. LLF: 96.57307645241066
Iteration: 13, Func. Count: 109, Neg. LLF: 96.57307650498808
Optimization terminated successfully (Exit mode 0)
Current function value: 96.57307645241066
Iterations: 13
Function evaluations: 109
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 123.72700493642908
Iteration: 2, Func. Count: 23, Neg. LLF: 103.96656475442705
Iteration: 3, Func. Count: 33, Neg. LLF: 111.65476260600309
Iteration: 4, Func. Count: 43, Neg. LLF: 97.8969884267479
Iteration: 5, Func. Count: 52, Neg. LLF: 98.11148091540987
Iteration: 6, Func. Count: 62, Neg. LLF: 98.30289879388351
Iteration: 7, Func. Count: 72, Neg. LLF: 97.77401454089255
Iteration: 8, Func. Count: 81, Neg. LLF: 97.77171816848325
Iteration: 9, Func. Count: 90, Neg. LLF: 97.7715303493117
Iteration: 10, Func. Count: 99, Neg. LLF: 97.77132693623572
Iteration: 11, Func. Count: 108, Neg. LLF: 97.77100248405374
Iteration: 12, Func. Count: 117, Neg. LLF: 97.63958811103194
Iteration: 13, Func. Count: 126, Neg. LLF: 32934133.55835748
Iteration: 14, Func. Count: 138, Neg. LLF: 97.67250442035903
Iteration: 15, Func. Count: 148, Neg. LLF: 97.64144332937516
Iteration: 16, Func. Count: 158, Neg. LLF: 97.61402449225494
Iteration: 17, Func. Count: 167, Neg. LLF: 97.61330519634895
Iteration: 18, Func. Count: 176, Neg. LLF: 97.61253497380945
Iteration: 19, Func. Count: 185, Neg. LLF: 97.61237171425634
Iteration: 20, Func. Count: 194, Neg. LLF: 97.61236847564075
Iteration: 21, Func. Count: 202, Neg. LLF: 97.61236847594219
Optimization terminated successfully (Exit mode 0)
Current function value: 97.61236847564075
Iterations: 22
Function evaluations: 202
Gradient evaluations: 21
Iteration: 1, Func. Count: 11, Neg. LLF: 141.5366957520886
Iteration: 2, Func. Count: 25, Neg. LLF: 99.81846320328414
Iteration: 3, Func. Count: 36, Neg. LLF: 110.01578007006276
Iteration: 4, Func. Count: 47, Neg. LLF: 97.36910953507687
Iteration: 5, Func. Count: 57, Neg. LLF: 97.27637927630714
Iteration: 6, Func. Count: 67, Neg. LLF: 97.21931010212691
Iteration: 7, Func. Count: 77, Neg. LLF: 97.17521666700443
Iteration: 8, Func. Count: 87, Neg. LLF: 96.9814754864519
Iteration: 9, Func. Count: 97, Neg. LLF: 96.84059229600317
Iteration: 10, Func. Count: 107, Neg. LLF: 96.78145863271608
Iteration: 11, Func. Count: 117, Neg. LLF: 96.76927619422635
Iteration: 12, Func. Count: 127, Neg. LLF: 96.76422378495114
Iteration: 13, Func. Count: 137, Neg. LLF: 96.76201229032867
Iteration: 14, Func. Count: 147, Neg. LLF: 96.75400170057135
Iteration: 15, Func. Count: 157, Neg. LLF: 96.74539588560286
Iteration: 16, Func. Count: 167, Neg. LLF: 96.73457842198535
Iteration: 17, Func. Count: 177, Neg. LLF: 96.72998701924367
Iteration: 18, Func. Count: 187, Neg. LLF: 96.72916379317041
Iteration: 19, Func. Count: 197, Neg. LLF: 96.729124106616
Iteration: 20, Func. Count: 207, Neg. LLF: 96.72912012228856
Iteration: 21, Func. Count: 217, Neg. LLF: 96.72911585436223
Iteration: 22, Func. Count: 226, Neg. LLF: 96.72911585436316
Optimization terminated successfully (Exit mode 0)
Current function value: 96.72911585436223
Iterations: 23
Function evaluations: 226
Gradient evaluations: 22
Iteration: 1, Func. Count: 12, Neg. LLF: 123.71004114474623
Iteration: 2, Func. Count: 28, Neg. LLF: 103.81967581764897
Iteration: 3, Func. Count: 40, Neg. LLF: 120.51353116257354
Iteration: 4, Func. Count: 52, Neg. LLF: 97.36756360451825
Iteration: 5, Func. Count: 65, Neg. LLF: 97.07720353891752
Iteration: 6, Func. Count: 76, Neg. LLF: 97.19538045163999
Iteration: 7, Func. Count: 88, Neg. LLF: 96.82422957176594
Iteration: 8, Func. Count: 100, Neg. LLF: 96.44636390420797
Iteration: 9, Func. Count: 112, Neg. LLF: 96.72371102090585
Iteration: 10, Func. Count: 125, Neg. LLF: 96.10489638002656
Iteration: 11, Func. Count: 136, Neg. LLF: 96.07915843078457
Iteration: 12, Func. Count: 147, Neg. LLF: 96.0539028436245
Iteration: 13, Func. Count: 158, Neg. LLF: 96.00458759637431
Iteration: 14, Func. Count: 169, Neg. LLF: 95.97376610861596
Iteration: 15, Func. Count: 181, Neg. LLF: 95.66257611163441
Iteration: 16, Func. Count: 192, Neg. LLF: 95.57478809362804
Iteration: 17, Func. Count: 203, Neg. LLF: 95.54542623198985
Iteration: 18, Func. Count: 214, Neg. LLF: 95.54084509894722
Iteration: 19, Func. Count: 225, Neg. LLF: 95.5360135113434
Iteration: 20, Func. Count: 236, Neg. LLF: 95.52265635732903
Iteration: 21, Func. Count: 247, Neg. LLF: 95.51576406043436
Iteration: 22, Func. Count: 258, Neg. LLF: 95.51003711732196
Iteration: 23, Func. Count: 269, Neg. LLF: 95.50494480165305
Iteration: 24, Func. Count: 280, Neg. LLF: 95.5013116618422
Iteration: 25, Func. Count: 291, Neg. LLF: 95.5003807021376
Iteration: 26, Func. Count: 302, Neg. LLF: 95.50029153060363
Iteration: 27, Func. Count: 313, Neg. LLF: 95.50028817873199
Iteration: 28, Func. Count: 323, Neg. LLF: 95.50028817872465
Optimization terminated successfully (Exit mode 0)
Current function value: 95.50028817873199
Iterations: 28
Function evaluations: 323
Gradient evaluations: 28
Iteration: 1, Func. Count: 13, Neg. LLF: 100.31034189293777
Iteration: 2, Func. Count: 28, Neg. LLF: 3551657.957367439
Iteration: 3, Func. Count: 41, Neg. LLF: 170.6375001815562
Iteration: 4, Func. Count: 54, Neg. LLF: 149.79989716643283
Iteration: 5, Func. Count: 67, Neg. LLF: 96.33244961339852
Iteration: 6, Func. Count: 79, Neg. LLF: 102.63518104446209
Iteration: 7, Func. Count: 93, Neg. LLF: 99.94824228918402
Iteration: 8, Func. Count: 107, Neg. LLF: 96.12951114102394
Iteration: 9, Func. Count: 120, Neg. LLF: 95.6108413443899
Iteration: 10, Func. Count: 132, Neg. LLF: 95.57073721893845
Iteration: 11, Func. Count: 144, Neg. LLF: 95.55667236084393
Iteration: 12, Func. Count: 156, Neg. LLF: 95.5278461691416
Iteration: 13, Func. Count: 168, Neg. LLF: 95.52255238975853
Iteration: 14, Func. Count: 180, Neg. LLF: 95.51160791865684
Iteration: 15, Func. Count: 192, Neg. LLF: 95.5016270975611
Iteration: 16, Func. Count: 204, Neg. LLF: 95.50055788725331
Iteration: 17, Func. Count: 216, Neg. LLF: 95.50030710034025
Iteration: 18, Func. Count: 228, Neg. LLF: 95.50028886690615
Iteration: 19, Func. Count: 240, Neg. LLF: 95.50028815986265
Optimization terminated successfully (Exit mode 0)
Current function value: 95.50028815986265
Iterations: 19
Function evaluations: 240
Gradient evaluations: 19
Iteration: 1, Func. Count: 6, Neg. LLF: 157.28263906301356
Iteration: 2, Func. Count: 14, Neg. LLF: 146.86376259632777
Iteration: 3, Func. Count: 21, Neg. LLF: 98.5421449106271
Iteration: 4, Func. Count: 26, Neg. LLF: 98.53375992548287
Iteration: 5, Func. Count: 31, Neg. LLF: 98.52908439875792
Iteration: 6, Func. Count: 36, Neg. LLF: 98.52903793993615
Iteration: 7, Func. Count: 41, Neg. LLF: 98.52900477236088
Iteration: 8, Func. Count: 45, Neg. LLF: 98.52900493922441
Optimization terminated successfully (Exit mode 0)
Current function value: 98.52900477236088
Iterations: 8
Function evaluations: 45
Gradient evaluations: 8
Iteration: 1, Func. Count: 7, Neg. LLF: 174.6077426104731
Iteration: 2, Func. Count: 16, Neg. LLF: 98.10384322000593
Iteration: 3, Func. Count: 22, Neg. LLF: 98.27595419509915
Iteration: 4, Func. Count: 29, Neg. LLF: 124.06970709165542
Iteration: 5, Func. Count: 36, Neg. LLF: 98.57452099162391
Iteration: 6, Func. Count: 45, Neg. LLF: 97.61300220122908
Iteration: 7, Func. Count: 51, Neg. LLF: 97.61239137928769
Iteration: 8, Func. Count: 57, Neg. LLF: 97.61237111041088
Iteration: 9, Func. Count: 63, Neg. LLF: 97.61236844045386
Iteration: 10, Func. Count: 68, Neg. LLF: 97.6123684402534
Optimization terminated successfully (Exit mode 0)
Current function value: 97.61236844045386
Iterations: 10
Function evaluations: 68
Gradient evaluations: 10
Iteration: 1, Func. Count: 8, Neg. LLF: 172.07368276608443
Iteration: 2, Func. Count: 19, Neg. LLF: 98.2815301724958
Iteration: 3, Func. Count: 27, Neg. LLF: 97.71995992608262
Iteration: 4, Func. Count: 34, Neg. LLF: 98.47335403310802
Iteration: 5, Func. Count: 42, Neg. LLF: 98.13023939259162
Iteration: 6, Func. Count: 50, Neg. LLF: 97.63008592145718
Iteration: 7, Func. Count: 58, Neg. LLF: 97.6229464922425
Iteration: 8, Func. Count: 65, Neg. LLF: 97.62212095248326
Iteration: 9, Func. Count: 72, Neg. LLF: 97.62198994247869
Iteration: 10, Func. Count: 79, Neg. LLF: 97.62105577782968
Iteration: 11, Func. Count: 86, Neg. LLF: 97.61259447110055
Iteration: 12, Func. Count: 93, Neg. LLF: 97.61260443626354
Iteration: 13, Func. Count: 101, Neg. LLF: 97.6123775225722
Iteration: 14, Func. Count: 108, Neg. LLF: 17202005.488405056
Iteration: 15, Func. Count: 119, Neg. LLF: 97.61442859122728
Iteration: 16, Func. Count: 128, Neg. LLF: 97.61237807908613
Optimization terminated successfully (Exit mode 0)
Current function value: 97.61236877391468
Iterations: 17
Function evaluations: 129
Gradient evaluations: 16
Iteration: 1, Func. Count: 9, Neg. LLF: 171.95944145060022
Iteration: 2, Func. Count: 21, Neg. LLF: 98.31697565646739
Iteration: 3, Func. Count: 30, Neg. LLF: 97.63489690462264
Iteration: 4, Func. Count: 38, Neg. LLF: 97.82385911639717
Iteration: 5, Func. Count: 47, Neg. LLF: 97.63069091189338
Iteration: 6, Func. Count: 55, Neg. LLF: 97.63063108696562
Iteration: 7, Func. Count: 63, Neg. LLF: 97.6304971939596
Iteration: 8, Func. Count: 71, Neg. LLF: 97.63017925364564
Iteration: 9, Func. Count: 79, Neg. LLF: 97.62953930201151
Iteration: 10, Func. Count: 87, Neg. LLF: 97.63316221321641
Iteration: 11, Func. Count: 96, Neg. LLF: 97.63157165099291
Iteration: 12, Func. Count: 105, Neg. LLF: 97.63072728248844
Iteration: 13, Func. Count: 114, Neg. LLF: 21781788.525747407
Iteration: 14, Func. Count: 126, Neg. LLF: 97.66442535171865
Iteration: 15, Func. Count: 135, Neg. LLF: 97.62786639194894
Iteration: 16, Func. Count: 143, Neg. LLF: 97.62799814312902
Iteration: 17, Func. Count: 152, Neg. LLF: 97.62744808348062
Iteration: 18, Func. Count: 160, Neg. LLF: 97.62521964540157
Iteration: 19, Func. Count: 168, Neg. LLF: 97.62418999309261
Iteration: 20, Func. Count: 176, Neg. LLF: 97.62413287170575
Iteration: 21, Func. Count: 184, Neg. LLF: 97.624012595536
Iteration: 22, Func. Count: 192, Neg. LLF: 97.62382217490467
Iteration: 23, Func. Count: 200, Neg. LLF: 97.62243120995652
Iteration: 24, Func. Count: 208, Neg. LLF: 97.6145093037976
Iteration: 25, Func. Count: 216, Neg. LLF: 100.47735113002769
Iteration: 26, Func. Count: 226, Neg. LLF: 2663.7725139752
Iteration: 27, Func. Count: 237, Neg. LLF: 97.61526912729323
Iteration: 28, Func. Count: 247, Neg. LLF: 97.61237178490114
Iteration: 29, Func. Count: 255, Neg. LLF: 97.6123684303074
Iteration: 30, Func. Count: 262, Neg. LLF: 97.61236843211645
Optimization terminated successfully (Exit mode 0)
Current function value: 97.6123684303074
Iterations: 32
Function evaluations: 262
Gradient evaluations: 30
Iteration: 1, Func. Count: 10, Neg. LLF: 173.50353432691514
Iteration: 2, Func. Count: 23, Neg. LLF: 98.33917657833562
Iteration: 3, Func. Count: 33, Neg. LLF: 97.64691994656188
Iteration: 4, Func. Count: 42, Neg. LLF: 97.7338174064071
Iteration: 5, Func. Count: 52, Neg. LLF: 98.32113939860287
Iteration: 6, Func. Count: 62, Neg. LLF: 97.63724786968396
Iteration: 7, Func. Count: 71, Neg. LLF: 97.63688381514089
Iteration: 8, Func. Count: 80, Neg. LLF: 97.62947055864768
Iteration: 9, Func. Count: 89, Neg. LLF: 97.61973215283788
Iteration: 10, Func. Count: 98, Neg. LLF: 97.58842631713529
Iteration: 11, Func. Count: 107, Neg. LLF: 97.57839303308472
Iteration: 12, Func. Count: 116, Neg. LLF: 97.57115248207356
Iteration: 13, Func. Count: 125, Neg. LLF: 97.5668533818434
Iteration: 14, Func. Count: 134, Neg. LLF: 97.56625585883195
Iteration: 15, Func. Count: 143, Neg. LLF: 97.56614099172288
Iteration: 16, Func. Count: 152, Neg. LLF: 97.56613942290399
Iteration: 17, Func. Count: 160, Neg. LLF: 97.56613942286056
Optimization terminated successfully (Exit mode 0)
Current function value: 97.56613942290399
Iterations: 17
Function evaluations: 160
Gradient evaluations: 17
Iteration: 1, Func. Count: 7, Neg. LLF: 158.06271660081188
Iteration: 2, Func. Count: 16, Neg. LLF: 166.85900306868893
Iteration: 3, Func. Count: 24, Neg. LLF: 97.97975391545943
Iteration: 4, Func. Count: 30, Neg. LLF: 98.15793584442184
Iteration: 5, Func. Count: 37, Neg. LLF: 99.0765891648988
Iteration: 6, Func. Count: 44, Neg. LLF: 96.94323612812947
Iteration: 7, Func. Count: 50, Neg. LLF: 96.80469710169639
Iteration: 8, Func. Count: 56, Neg. LLF: 96.74879299588977
Iteration: 9, Func. Count: 62, Neg. LLF: 96.73738685074858
Iteration: 10, Func. Count: 68, Neg. LLF: 96.72998840460805
Iteration: 11, Func. Count: 74, Neg. LLF: 96.72919895059219
Iteration: 12, Func. Count: 80, Neg. LLF: 96.72914287920263
Iteration: 13, Func. Count: 86, Neg. LLF: 96.72914169581223
Iteration: 14, Func. Count: 91, Neg. LLF: 96.72914169584783
Optimization terminated successfully (Exit mode 0)
Current function value: 96.72914169581223
Iterations: 14
Function evaluations: 91
Gradient evaluations: 14
Iteration: 1, Func. Count: 8, Neg. LLF: 123.94997579727534
Iteration: 2, Func. Count: 19, Neg. LLF: 103.88503997670509
Iteration: 3, Func. Count: 27, Neg. LLF: 110.75220819293818
Iteration: 4, Func. Count: 35, Neg. LLF: 97.8989597007947
Iteration: 5, Func. Count: 42, Neg. LLF: 98.09574879727654
Iteration: 6, Func. Count: 50, Neg. LLF: 98.33016211608873
Iteration: 7, Func. Count: 58, Neg. LLF: 97.77414409367431
Iteration: 8, Func. Count: 65, Neg. LLF: 97.77168386412691
Iteration: 9, Func. Count: 72, Neg. LLF: 97.7715147586923
Iteration: 10, Func. Count: 79, Neg. LLF: 97.77131514398305
Iteration: 11, Func. Count: 86, Neg. LLF: 97.770987940451
Iteration: 12, Func. Count: 93, Neg. LLF: 97.63822786387853
Iteration: 13, Func. Count: 100, Neg. LLF: 32986303.16844173
Iteration: 14, Func. Count: 111, Neg. LLF: 97.69631968310523
Iteration: 15, Func. Count: 119, Neg. LLF: 97.63560235869359
Iteration: 16, Func. Count: 127, Neg. LLF: 97.61596923411642
Iteration: 17, Func. Count: 135, Neg. LLF: 97.6125770036712
Iteration: 18, Func. Count: 143, Neg. LLF: 97.61236844540615
Iteration: 19, Func. Count: 149, Neg. LLF: 97.61236844537318
Optimization terminated successfully (Exit mode 0)
Current function value: 97.61236844540615
Iterations: 20
Function evaluations: 149
Gradient evaluations: 19
Iteration: 1, Func. Count: 9, Neg. LLF: 141.76338629981046
Iteration: 2, Func. Count: 21, Neg. LLF: 99.97266520931734
Iteration: 3, Func. Count: 30, Neg. LLF: 112.99227376782046
Iteration: 4, Func. Count: 39, Neg. LLF: 97.23202764873999
Iteration: 5, Func. Count: 47, Neg. LLF: 97.33316365409813
Iteration: 6, Func. Count: 56, Neg. LLF: 97.11838760488696
Iteration: 7, Func. Count: 64, Neg. LLF: 97.06900709333891
Iteration: 8, Func. Count: 72, Neg. LLF: 96.99113333212303
Iteration: 9, Func. Count: 80, Neg. LLF: 96.84812440250123
Iteration: 10, Func. Count: 88, Neg. LLF: 96.84419346600511
Iteration: 11, Func. Count: 97, Neg. LLF: 96.81090873959693
Iteration: 12, Func. Count: 105, Neg. LLF: 96.80171239498999
Iteration: 13, Func. Count: 113, Neg. LLF: 96.79119589898455
Iteration: 14, Func. Count: 121, Neg. LLF: 96.77915201242101
Iteration: 15, Func. Count: 129, Neg. LLF: 96.7632731783097
Iteration: 16, Func. Count: 137, Neg. LLF: 96.74688477870073
Iteration: 17, Func. Count: 145, Neg. LLF: 96.73291618012503
Iteration: 18, Func. Count: 153, Neg. LLF: 96.72939445731669
Iteration: 19, Func. Count: 161, Neg. LLF: 96.72915086500056
Iteration: 20, Func. Count: 169, Neg. LLF: 96.72911609176127
Iteration: 21, Func. Count: 176, Neg. LLF: 96.72911609176214
Optimization terminated successfully (Exit mode 0)
Current function value: 96.72911609176127
Iterations: 21
Function evaluations: 176
Gradient evaluations: 21
Iteration: 1, Func. Count: 10, Neg. LLF: 131.82475535013205
Iteration: 2, Func. Count: 23, Neg. LLF: 99.84525628473843
Iteration: 3, Func. Count: 33, Neg. LLF: 114.69577462418124
Iteration: 4, Func. Count: 43, Neg. LLF: 99.15427682866323
Iteration: 5, Func. Count: 53, Neg. LLF: 97.43376393030287
Iteration: 6, Func. Count: 63, Neg. LLF: 97.21291881777012
Iteration: 7, Func. Count: 73, Neg. LLF: 96.3929282370896
Iteration: 8, Func. Count: 82, Neg. LLF: 98.4551775384265
Iteration: 9, Func. Count: 92, Neg. LLF: 96.34755764073645
Iteration: 10, Func. Count: 102, Neg. LLF: 96.28208710183812
Iteration: 11, Func. Count: 111, Neg. LLF: 96.28173552354636
Iteration: 12, Func. Count: 120, Neg. LLF: 96.281632489808
Iteration: 13, Func. Count: 129, Neg. LLF: 96.28161257787777
Iteration: 14, Func. Count: 138, Neg. LLF: 96.28156922708207
Iteration: 15, Func. Count: 147, Neg. LLF: 96.28156282422646
Iteration: 16, Func. Count: 156, Neg. LLF: 96.28156208564322
Optimization terminated successfully (Exit mode 0)
Current function value: 96.28156208564322
Iterations: 16
Function evaluations: 156
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 106.9880702247465
Iteration: 2, Func. Count: 23, Neg. LLF: 98.06949479570945
Iteration: 3, Func. Count: 34, Neg. LLF: 453.5401144308043
Iteration: 4, Func. Count: 45, Neg. LLF: 98.64935957725055
Iteration: 5, Func. Count: 56, Neg. LLF: 97.49334615449467
Iteration: 6, Func. Count: 67, Neg. LLF: 96.44918853776585
Iteration: 7, Func. Count: 77, Neg. LLF: 96.52171929723887
Iteration: 8, Func. Count: 88, Neg. LLF: 98.57314141414318
Iteration: 9, Func. Count: 99, Neg. LLF: 96.3323522441742
Iteration: 10, Func. Count: 109, Neg. LLF: 96.32196360723363
Iteration: 11, Func. Count: 119, Neg. LLF: 96.31602267880876
Iteration: 12, Func. Count: 129, Neg. LLF: 96.3142565486044
Iteration: 13, Func. Count: 139, Neg. LLF: 96.26994215845487
Iteration: 14, Func. Count: 149, Neg. LLF: 96.20746566715597
Iteration: 15, Func. Count: 159, Neg. LLF: 98.30302400850384
Iteration: 16, Func. Count: 170, Neg. LLF: 98.58302295820508
Iteration: 17, Func. Count: 181, Neg. LLF: 98.56695087340859
Iteration: 18, Func. Count: 192, Neg. LLF: 96.41008376906302
Iteration: 19, Func. Count: 203, Neg. LLF: 96.14096837987167
Iteration: 20, Func. Count: 214, Neg. LLF: 96.12939177303562
Iteration: 21, Func. Count: 224, Neg. LLF: 96.12856747596138
Iteration: 22, Func. Count: 234, Neg. LLF: 96.12852220675404
Iteration: 23, Func. Count: 243, Neg. LLF: 96.12852215500696
Optimization terminated successfully (Exit mode 0)
Current function value: 96.12852220675404
Iterations: 23
Function evaluations: 243
Gradient evaluations: 23
Iteration: 1, Func. Count: 8, Neg. LLF: 158.20423065121147
Iteration: 2, Func. Count: 18, Neg. LLF: 166.63761033370832
Iteration: 3, Func. Count: 27, Neg. LLF: 97.98561094212266
Iteration: 4, Func. Count: 34, Neg. LLF: 98.16196018067983
Iteration: 5, Func. Count: 42, Neg. LLF: 99.08868068342814
Iteration: 6, Func. Count: 50, Neg. LLF: 96.94352808930405
Iteration: 7, Func. Count: 57, Neg. LLF: 96.80449950657092
Iteration: 8, Func. Count: 64, Neg. LLF: 96.74958785139867
Iteration: 9, Func. Count: 71, Neg. LLF: 96.73875344559978
Iteration: 10, Func. Count: 78, Neg. LLF: 96.7301337500827
Iteration: 11, Func. Count: 85, Neg. LLF: 96.72921917530552
Iteration: 12, Func. Count: 92, Neg. LLF: 96.7291432137642
Iteration: 13, Func. Count: 99, Neg. LLF: 96.72914171439898
Iteration: 14, Func. Count: 105, Neg. LLF: 96.7291416572161
Optimization terminated successfully (Exit mode 0)
Current function value: 96.72914171439898
Iterations: 14
Function evaluations: 105
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 123.61965872612714
Iteration: 2, Func. Count: 21, Neg. LLF: 104.86549181757603
Iteration: 3, Func. Count: 30, Neg. LLF: 100.47273251248485
Iteration: 4, Func. Count: 39, Neg. LLF: 97.92626674068977
Iteration: 5, Func. Count: 47, Neg. LLF: 98.1550294965083
Iteration: 6, Func. Count: 56, Neg. LLF: 99.0454669463091
Iteration: 7, Func. Count: 65, Neg. LLF: 97.77202733336468
Iteration: 8, Func. Count: 73, Neg. LLF: 97.77150789597044
Iteration: 9, Func. Count: 81, Neg. LLF: 97.77140787964834
Iteration: 10, Func. Count: 89, Neg. LLF: 97.77118543084529
Iteration: 11, Func. Count: 97, Neg. LLF: 97.7169321958151
Iteration: 12, Func. Count: 105, Neg. LLF: 32916906.621010605
Iteration: 13, Func. Count: 116, Neg. LLF: 97.61814833343355
Iteration: 14, Func. Count: 124, Neg. LLF: 97.61817211252706
Iteration: 15, Func. Count: 133, Neg. LLF: 97.63067253792816
Iteration: 16, Func. Count: 142, Neg. LLF: 97.6125089316273
Iteration: 17, Func. Count: 150, Neg. LLF: 109.14632945738425
Iteration: 18, Func. Count: 162, Neg. LLF: 97.69285739397542
Iteration: 19, Func. Count: 172, Neg. LLF: 97.61326533594521
Iteration: 20, Func. Count: 181, Neg. LLF: 97.61236842633238
Iteration: 21, Func. Count: 188, Neg. LLF: 97.61236842634392
Optimization terminated successfully (Exit mode 0)
Current function value: 97.61236842633238
Iterations: 23
Function evaluations: 188
Gradient evaluations: 21
Iteration: 1, Func. Count: 10, Neg. LLF: 143.26502428962684
Iteration: 2, Func. Count: 23, Neg. LLF: 100.00971928305916
Iteration: 3, Func. Count: 33, Neg. LLF: 108.98041511472282
Iteration: 4, Func. Count: 43, Neg. LLF: 97.48914267348154
Iteration: 5, Func. Count: 52, Neg. LLF: 97.34499241670136
Iteration: 6, Func. Count: 61, Neg. LLF: 97.2668591075104
Iteration: 7, Func. Count: 70, Neg. LLF: 97.14442087877865
Iteration: 8, Func. Count: 79, Neg. LLF: 96.85898318387109
Iteration: 9, Func. Count: 88, Neg. LLF: 96.963946647009
Iteration: 10, Func. Count: 99, Neg. LLF: 96.82775214699645
Iteration: 11, Func. Count: 108, Neg. LLF: 96.8186626939535
Iteration: 12, Func. Count: 117, Neg. LLF: 96.7964425004863
Iteration: 13, Func. Count: 126, Neg. LLF: 96.77405996363679
Iteration: 14, Func. Count: 135, Neg. LLF: 96.7532971299756
Iteration: 15, Func. Count: 144, Neg. LLF: 96.737672756931
Iteration: 16, Func. Count: 153, Neg. LLF: 96.72969381201509
Iteration: 17, Func. Count: 162, Neg. LLF: 96.7291866611217
Iteration: 18, Func. Count: 171, Neg. LLF: 96.72911680592733
Iteration: 19, Func. Count: 180, Neg. LLF: 96.72911640749538
Optimization terminated successfully (Exit mode 0)
Current function value: 96.72911640749538
Iterations: 19
Function evaluations: 180
Gradient evaluations: 19
Iteration: 1, Func. Count: 11, Neg. LLF: 132.87671771844774
Iteration: 2, Func. Count: 25, Neg. LLF: 99.68444034488212
Iteration: 3, Func. Count: 36, Neg. LLF: 112.96215885633269
Iteration: 4, Func. Count: 47, Neg. LLF: 99.1395019703507
Iteration: 5, Func. Count: 58, Neg. LLF: 97.33208964591446
Iteration: 6, Func. Count: 69, Neg. LLF: 97.1115050621878
Iteration: 7, Func. Count: 80, Neg. LLF: 96.38072554684334
Iteration: 8, Func. Count: 90, Neg. LLF: 96.28796762540158
Iteration: 9, Func. Count: 100, Neg. LLF: 99.08379568990902
Iteration: 10, Func. Count: 112, Neg. LLF: 96.28195463465381
Iteration: 11, Func. Count: 122, Neg. LLF: 96.28162742716017
Iteration: 12, Func. Count: 132, Neg. LLF: 96.28160821699343
Iteration: 13, Func. Count: 142, Neg. LLF: 96.28157945000302
Iteration: 14, Func. Count: 152, Neg. LLF: 96.28156777711592
Iteration: 15, Func. Count: 162, Neg. LLF: 96.28156251444592
Iteration: 16, Func. Count: 171, Neg. LLF: 96.28156251448954
Optimization terminated successfully (Exit mode 0)
Current function value: 96.28156251444592
Iterations: 16
Function evaluations: 171
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 106.60446042303099
Iteration: 2, Func. Count: 25, Neg. LLF: 97.55622761790929
Iteration: 3, Func. Count: 36, Neg. LLF: 404.0746754746988
Iteration: 4, Func. Count: 48, Neg. LLF: 109.71466402172562
Iteration: 5, Func. Count: 61, Neg. LLF: 109.60477118379669
Iteration: 6, Func. Count: 73, Neg. LLF: 99.85641488829958
Iteration: 7, Func. Count: 86, Neg. LLF: 96.6213777047118
Iteration: 8, Func. Count: 97, Neg. LLF: 97.27994348874918
Iteration: 9, Func. Count: 109, Neg. LLF: 97.74316975975412
Iteration: 10, Func. Count: 121, Neg. LLF: 96.54707562203009
Iteration: 11, Func. Count: 133, Neg. LLF: 96.38872754546938
Iteration: 12, Func. Count: 144, Neg. LLF: 96.38570755384079
Iteration: 13, Func. Count: 155, Neg. LLF: 96.38469517539106
Iteration: 14, Func. Count: 166, Neg. LLF: 96.38434208098853
Iteration: 15, Func. Count: 177, Neg. LLF: 96.38399577757858
Iteration: 16, Func. Count: 188, Neg. LLF: 96.3839364238005
Iteration: 17, Func. Count: 199, Neg. LLF: 96.38393434036655
Iteration: 18, Func. Count: 209, Neg. LLF: 96.38393434040054
Optimization terminated successfully (Exit mode 0)
Current function value: 96.38393434036655
Iterations: 18
Function evaluations: 209
Gradient evaluations: 18
Iteration: 1, Func. Count: 9, Neg. LLF: 123.02899123915574
Iteration: 2, Func. Count: 19, Neg. LLF: 157.93432157553582
Iteration: 3, Func. Count: 29, Neg. LLF: 9080749.539947676
Iteration: 4, Func. Count: 38, Neg. LLF: 97.84402140170153
Iteration: 5, Func. Count: 46, Neg. LLF: 96.99670974403338
Iteration: 6, Func. Count: 54, Neg. LLF: 96.7513996457665
Iteration: 7, Func. Count: 62, Neg. LLF: 96.65344014952284
Iteration: 8, Func. Count: 70, Neg. LLF: 96.60812352259846
Iteration: 9, Func. Count: 78, Neg. LLF: 96.59236960525479
Iteration: 10, Func. Count: 86, Neg. LLF: 96.57486282925275
Iteration: 11, Func. Count: 94, Neg. LLF: 96.57314410457127
Iteration: 12, Func. Count: 102, Neg. LLF: 96.57307658228498
Iteration: 13, Func. Count: 109, Neg. LLF: 96.57307658230712
Optimization terminated successfully (Exit mode 0)
Current function value: 96.57307658228498
Iterations: 13
Function evaluations: 109
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 123.13080351028266
Iteration: 2, Func. Count: 23, Neg. LLF: 104.6941819107535
Iteration: 3, Func. Count: 33, Neg. LLF: 99.60429286152004
Iteration: 4, Func. Count: 43, Neg. LLF: 98.00563959389899
Iteration: 5, Func. Count: 53, Neg. LLF: 98.24750703460337
Iteration: 6, Func. Count: 63, Neg. LLF: 97.80554216189373
Iteration: 7, Func. Count: 72, Neg. LLF: 97.77387527158778
Iteration: 8, Func. Count: 81, Neg. LLF: 97.77215155674531
Iteration: 9, Func. Count: 90, Neg. LLF: 97.77159540924222
Iteration: 10, Func. Count: 99, Neg. LLF: 97.77136865334845
Iteration: 11, Func. Count: 108, Neg. LLF: 97.77111828916092
Iteration: 12, Func. Count: 117, Neg. LLF: 97.65304328807255
Iteration: 13, Func. Count: 126, Neg. LLF: 32850864.47461259
Iteration: 14, Func. Count: 138, Neg. LLF: 97.6374520566969
Iteration: 15, Func. Count: 147, Neg. LLF: 97.74330225430981
Iteration: 16, Func. Count: 157, Neg. LLF: 97.74462836570156
Iteration: 17, Func. Count: 167, Neg. LLF: 97.612833772135
Iteration: 18, Func. Count: 176, Neg. LLF: 97.61245578613278
Iteration: 19, Func. Count: 185, Neg. LLF: 97.61236860455783
Iteration: 20, Func. Count: 193, Neg. LLF: 97.6123686050046
Optimization terminated successfully (Exit mode 0)
Current function value: 97.61236860455783
Iterations: 21
Function evaluations: 193
Gradient evaluations: 20
Iteration: 1, Func. Count: 11, Neg. LLF: 143.5131520258533
Iteration: 2, Func. Count: 25, Neg. LLF: 99.81264517004684
Iteration: 3, Func. Count: 36, Neg. LLF: 105.3038589262168
Iteration: 4, Func. Count: 47, Neg. LLF: 97.82448213451163
Iteration: 5, Func. Count: 59, Neg. LLF: 97.21819838327231
Iteration: 6, Func. Count: 69, Neg. LLF: 97.02318220214812
Iteration: 7, Func. Count: 79, Neg. LLF: 96.84261040555133
Iteration: 8, Func. Count: 89, Neg. LLF: 96.83085869327692
Iteration: 9, Func. Count: 99, Neg. LLF: 96.82192615961472
Iteration: 10, Func. Count: 109, Neg. LLF: 96.82108893646432
Iteration: 11, Func. Count: 119, Neg. LLF: 96.82065215097917
Iteration: 12, Func. Count: 129, Neg. LLF: 96.8181698011206
Iteration: 13, Func. Count: 139, Neg. LLF: 96.81786529701706
Iteration: 14, Func. Count: 149, Neg. LLF: 96.81779419030872
Iteration: 15, Func. Count: 159, Neg. LLF: 96.81774608787529
Iteration: 16, Func. Count: 179, Neg. LLF: 96.81779749393839
Iteration: 17, Func. Count: 189, Neg. LLF: 96.81810107428211
Iteration: 18, Func. Count: 201, Neg. LLF: 96.81790759978952
Iteration: 19, Func. Count: 213, Neg. LLF: 96.81781534878073
Iteration: 20, Func. Count: 224, Neg. LLF: 96.81780365971933
Iteration: 21, Func. Count: 233, Neg. LLF: 96.81780365489405
Optimization terminated successfully (Exit mode 0)
Current function value: 96.81780365971933
Iterations: 22
Function evaluations: 233
Gradient evaluations: 21
Iteration: 1, Func. Count: 12, Neg. LLF: 123.62024307571359
Iteration: 2, Func. Count: 28, Neg. LLF: 103.70455650153518
Iteration: 3, Func. Count: 40, Neg. LLF: 114.16137753486757
Iteration: 4, Func. Count: 52, Neg. LLF: 97.38735367650987
Iteration: 5, Func. Count: 64, Neg. LLF: 96.75273936467973
Iteration: 6, Func. Count: 75, Neg. LLF: 96.98272517240834
Iteration: 7, Func. Count: 87, Neg. LLF: 97.43473780315168
Iteration: 8, Func. Count: 99, Neg. LLF: 96.70972968492869
Iteration: 9, Func. Count: 111, Neg. LLF: 96.10321580992567
Iteration: 10, Func. Count: 122, Neg. LLF: 96.07700432741336
Iteration: 11, Func. Count: 133, Neg. LLF: 96.08229628837582
Iteration: 12, Func. Count: 145, Neg. LLF: 96.02414862035322
Iteration: 13, Func. Count: 156, Neg. LLF: 96.42379675801939
Iteration: 14, Func. Count: 168, Neg. LLF: 97.08833085308594
Iteration: 15, Func. Count: 180, Neg. LLF: 97.22463596394181
Iteration: 16, Func. Count: 192, Neg. LLF: 96.24595222019674
Iteration: 17, Func. Count: 204, Neg. LLF: 97.16067091005658
Iteration: 18, Func. Count: 216, Neg. LLF: 95.62078610204446
Iteration: 19, Func. Count: 227, Neg. LLF: 95.58009570882705
Iteration: 20, Func. Count: 238, Neg. LLF: 95.57569587824332
Iteration: 21, Func. Count: 250, Neg. LLF: 95.54837720181767
Iteration: 22, Func. Count: 261, Neg. LLF: 95.54169199288373
Iteration: 23, Func. Count: 272, Neg. LLF: 95.53499879875949
Iteration: 24, Func. Count: 283, Neg. LLF: 95.52483227698974
Iteration: 25, Func. Count: 294, Neg. LLF: 95.51343666450721
Iteration: 26, Func. Count: 305, Neg. LLF: 95.50550702368061
Iteration: 27, Func. Count: 316, Neg. LLF: 95.50110085479078
Iteration: 28, Func. Count: 327, Neg. LLF: 95.5003298745557
Iteration: 29, Func. Count: 338, Neg. LLF: 95.50029043919317
Iteration: 30, Func. Count: 349, Neg. LLF: 95.50028820051577
Iteration: 31, Func. Count: 359, Neg. LLF: 95.50028820051813
Optimization terminated successfully (Exit mode 0)
Current function value: 95.50028820051577
Iterations: 31
Function evaluations: 359
Gradient evaluations: 31
Iteration: 1, Func. Count: 13, Neg. LLF: 100.17126233329274
Iteration: 2, Func. Count: 28, Neg. LLF: 3557804.4368127966
Iteration: 3, Func. Count: 41, Neg. LLF: 197.21293566049846
Iteration: 4, Func. Count: 54, Neg. LLF: 153.36960633395236
Iteration: 5, Func. Count: 67, Neg. LLF: 96.28989428217156
Iteration: 6, Func. Count: 79, Neg. LLF: 125.76401017191544
Iteration: 7, Func. Count: 93, Neg. LLF: 100.38441201651266
Iteration: 8, Func. Count: 107, Neg. LLF: 96.29392720038787
Iteration: 9, Func. Count: 120, Neg. LLF: 95.65284461124888
Iteration: 10, Func. Count: 132, Neg. LLF: 95.62302039471216
Iteration: 11, Func. Count: 144, Neg. LLF: 95.55705039298871
Iteration: 12, Func. Count: 156, Neg. LLF: 95.53273369522226
Iteration: 13, Func. Count: 168, Neg. LLF: 95.52387329750373
Iteration: 14, Func. Count: 180, Neg. LLF: 95.51668426517999
Iteration: 15, Func. Count: 192, Neg. LLF: 95.50437818059355
Iteration: 16, Func. Count: 204, Neg. LLF: 95.50043749574223
Iteration: 17, Func. Count: 216, Neg. LLF: 95.50029061699578
Iteration: 18, Func. Count: 228, Neg. LLF: 95.50028878018456
Iteration: 19, Func. Count: 240, Neg. LLF: 95.5002881937647
Optimization terminated successfully (Exit mode 0)
Current function value: 95.5002881937647
Iterations: 19
Function evaluations: 240
Gradient evaluations: 19
Iteration: 1, Func. Count: 10, Neg. LLF: 121.76907004042239
Iteration: 2, Func. Count: 21, Neg. LLF: 160.7249251687038
Iteration: 3, Func. Count: 32, Neg. LLF: 9062319.270004116
Iteration: 4, Func. Count: 42, Neg. LLF: 98.95509056887305
Iteration: 5, Func. Count: 52, Neg. LLF: 96.71315274972358
Iteration: 6, Func. Count: 61, Neg. LLF: 96.61774358029253
Iteration: 7, Func. Count: 70, Neg. LLF: 96.58241082262917
Iteration: 8, Func. Count: 79, Neg. LLF: 96.57356829898173
Iteration: 9, Func. Count: 88, Neg. LLF: 96.57318179264458
Iteration: 10, Func. Count: 97, Neg. LLF: 96.57307745970313
Iteration: 11, Func. Count: 106, Neg. LLF: 96.57307636802577
Iteration: 12, Func. Count: 114, Neg. LLF: 96.5730764205656
Optimization terminated successfully (Exit mode 0)
Current function value: 96.57307636802577
Iterations: 12
Function evaluations: 114
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 123.5949803722001
Iteration: 2, Func. Count: 25, Neg. LLF: 105.00704236901936
Iteration: 3, Func. Count: 36, Neg. LLF: 100.32560840308375
Iteration: 4, Func. Count: 47, Neg. LLF: 97.93268209318076
Iteration: 5, Func. Count: 57, Neg. LLF: 98.18546246444114
Iteration: 6, Func. Count: 68, Neg. LLF: 99.22764613331512
Iteration: 7, Func. Count: 79, Neg. LLF: 97.77198452688529
Iteration: 8, Func. Count: 89, Neg. LLF: 97.77154148710557
Iteration: 9, Func. Count: 99, Neg. LLF: 97.77142501985232
Iteration: 10, Func. Count: 109, Neg. LLF: 97.77119593417564
Iteration: 11, Func. Count: 119, Neg. LLF: 97.72424714770582
Iteration: 12, Func. Count: 129, Neg. LLF: 32910933.15393414
Iteration: 13, Func. Count: 143, Neg. LLF: 97.61814865063783
Iteration: 14, Func. Count: 153, Neg. LLF: 97.66655402760108
Iteration: 15, Func. Count: 164, Neg. LLF: 97.61745512556105
Iteration: 16, Func. Count: 175, Neg. LLF: 97.61291256771791
Iteration: 17, Func. Count: 186, Neg. LLF: 99.59676109177879
Optimization terminated successfully (Exit mode 0)
Current function value: 97.61237984076436
Iterations: 19
Function evaluations: 190
Gradient evaluations: 17
Iteration: 1, Func. Count: 12, Neg. LLF: 142.91656260722263
Iteration: 2, Func. Count: 27, Neg. LLF: 99.78342899229617
Iteration: 3, Func. Count: 39, Neg. LLF: 106.45787507842053
Iteration: 4, Func. Count: 51, Neg. LLF: 97.75760181623595
Iteration: 5, Func. Count: 65, Neg. LLF: 97.06282622903039
Iteration: 6, Func. Count: 76, Neg. LLF: 97.44551725264282
Iteration: 7, Func. Count: 89, Neg. LLF: 96.83379990040419
Iteration: 8, Func. Count: 100, Neg. LLF: 96.83047067510017
Iteration: 9, Func. Count: 111, Neg. LLF: 96.82678276385013
Iteration: 10, Func. Count: 122, Neg. LLF: 96.82559087437683
Iteration: 11, Func. Count: 133, Neg. LLF: 96.82476693660705
Iteration: 12, Func. Count: 144, Neg. LLF: 96.82263853376783
Iteration: 13, Func. Count: 155, Neg. LLF: 96.81794674101475
Iteration: 14, Func. Count: 166, Neg. LLF: 178.82252164709288
Iteration: 15, Func. Count: 180, Neg. LLF: 96.8184614137968
Iteration: 16, Func. Count: 192, Neg. LLF: 96.81854101387034
Iteration: 17, Func. Count: 204, Neg. LLF: 96.81781025284369
Iteration: 18, Func. Count: 215, Neg. LLF: 96.81780366093894
Iteration: 19, Func. Count: 225, Neg. LLF: 96.81780365613754
Optimization terminated successfully (Exit mode 0)
Current function value: 96.81780366093894
Iterations: 20
Function evaluations: 225
Gradient evaluations: 19
Iteration: 1, Func. Count: 13, Neg. LLF: 124.66277530032832
Iteration: 2, Func. Count: 30, Neg. LLF: 103.45963121640483
Iteration: 3, Func. Count: 43, Neg. LLF: 112.69987548881774
Iteration: 4, Func. Count: 56, Neg. LLF: 97.40282098648285
Iteration: 5, Func. Count: 69, Neg. LLF: 96.65807497618005
Iteration: 6, Func. Count: 81, Neg. LLF: 96.93312902530359
Iteration: 7, Func. Count: 94, Neg. LLF: 99.46416618766627
Iteration: 8, Func. Count: 107, Neg. LLF: 97.3782355608325
Iteration: 9, Func. Count: 120, Neg. LLF: 96.0773160018753
Iteration: 10, Func. Count: 132, Neg. LLF: 96.05630318947364
Iteration: 11, Func. Count: 144, Neg. LLF: 96.03335612705933
Iteration: 12, Func. Count: 156, Neg. LLF: 97.28776921312787
Iteration: 13, Func. Count: 169, Neg. LLF: 97.28412959658898
Iteration: 14, Func. Count: 182, Neg. LLF: 97.26091819029081
Iteration: 15, Func. Count: 195, Neg. LLF: 97.18372488599434
Iteration: 16, Func. Count: 208, Neg. LLF: 97.06575254061097
Iteration: 17, Func. Count: 221, Neg. LLF: 97.01543777430791
Iteration: 18, Func. Count: 234, Neg. LLF: 96.91484877597155
Iteration: 19, Func. Count: 247, Neg. LLF: 99.17717706135706
Iteration: 20, Func. Count: 260, Neg. LLF: 95.59821087231532
Iteration: 21, Func. Count: 272, Neg. LLF: 95.56913993307371
Iteration: 22, Func. Count: 284, Neg. LLF: 95.5605739809504
Iteration: 23, Func. Count: 296, Neg. LLF: 95.55419013374068
Iteration: 24, Func. Count: 308, Neg. LLF: 95.53985626097892
Iteration: 25, Func. Count: 320, Neg. LLF: 95.52216512845123
Iteration: 26, Func. Count: 332, Neg. LLF: 95.51409244403929
Iteration: 27, Func. Count: 344, Neg. LLF: 95.50721188766401
Iteration: 28, Func. Count: 356, Neg. LLF: 95.50228998162729
Iteration: 29, Func. Count: 368, Neg. LLF: 95.50057113313481
Iteration: 30, Func. Count: 380, Neg. LLF: 95.50030396032528
Iteration: 31, Func. Count: 392, Neg. LLF: 95.50028859898694
Iteration: 32, Func. Count: 403, Neg. LLF: 95.50028859903396
Optimization terminated successfully (Exit mode 0)
Current function value: 95.50028859898694
Iterations: 32
Function evaluations: 403
Gradient evaluations: 32
Iteration: 1, Func. Count: 14, Neg. LLF: 100.25377485770841
Iteration: 2, Func. Count: 30, Neg. LLF: 3553892.6328327325
Iteration: 3, Func. Count: 44, Neg. LLF: 200.34019152419623
Iteration: 4, Func. Count: 58, Neg. LLF: 165.42832021457392
Iteration: 5, Func. Count: 72, Neg. LLF: 96.28230372315413
Iteration: 6, Func. Count: 85, Neg. LLF: 129.1220841911293
Iteration: 7, Func. Count: 100, Neg. LLF: 100.13925667208285
Iteration: 8, Func. Count: 115, Neg. LLF: 96.31947115190772
Iteration: 9, Func. Count: 129, Neg. LLF: 95.66069591952329
Iteration: 10, Func. Count: 142, Neg. LLF: 95.62904583319218
Iteration: 11, Func. Count: 155, Neg. LLF: 95.56150171086038
Iteration: 12, Func. Count: 168, Neg. LLF: 95.53482985108703
Iteration: 13, Func. Count: 181, Neg. LLF: 95.52419508109547
Iteration: 14, Func. Count: 194, Neg. LLF: 95.51785067614722
Iteration: 15, Func. Count: 207, Neg. LLF: 95.50780835984362
Iteration: 16, Func. Count: 220, Neg. LLF: 95.50061358483362
Iteration: 17, Func. Count: 233, Neg. LLF: 95.50029977367012
Iteration: 18, Func. Count: 246, Neg. LLF: 95.50028949417639
Iteration: 19, Func. Count: 259, Neg. LLF: 95.50028841777161
Iteration: 20, Func. Count: 271, Neg. LLF: 95.50028849922249
Optimization terminated successfully (Exit mode 0)
Current function value: 95.50028841777161
Iterations: 20
Function evaluations: 271
Gradient evaluations: 20
Iteration: 1, Func. Count: 7, Neg. LLF: 116.12626931968629
Iteration: 2, Func. Count: 15, Neg. LLF: 132.58408810603368
Iteration: 3, Func. Count: 22, Neg. LLF: 127.99059391318617
Iteration: 4, Func. Count: 29, Neg. LLF: 99.36658776742887
Iteration: 5, Func. Count: 36, Neg. LLF: 97.52883005143806
Iteration: 6, Func. Count: 42, Neg. LLF: 97.47198729068079
Iteration: 7, Func. Count: 48, Neg. LLF: 97.45604419625343
Iteration: 8, Func. Count: 54, Neg. LLF: 97.45311947847385
Iteration: 9, Func. Count: 60, Neg. LLF: 97.45307763153609
Iteration: 10, Func. Count: 66, Neg. LLF: 97.45307715111278
Optimization terminated successfully (Exit mode 0)
Current function value: 97.45307715111278
Iterations: 10
Function evaluations: 66
Gradient evaluations: 10
Iteration: 1, Func. Count: 8, Neg. LLF: 173.8789294710374
Iteration: 2, Func. Count: 18, Neg. LLF: 98.06801659235185
Iteration: 3, Func. Count: 25, Neg. LLF: 98.333795252916
Iteration: 4, Func. Count: 33, Neg. LLF: 134.94480539682016
Iteration: 5, Func. Count: 41, Neg. LLF: 98.44667820761427
Iteration: 6, Func. Count: 50, Neg. LLF: 97.62999388145667
Iteration: 7, Func. Count: 57, Neg. LLF: 97.61433949783923
Iteration: 8, Func. Count: 64, Neg. LLF: 97.61249864593195
Iteration: 9, Func. Count: 71, Neg. LLF: 97.61237049866878
Iteration: 10, Func. Count: 78, Neg. LLF: 97.61236844546943
Iteration: 11, Func. Count: 84, Neg. LLF: 97.61236844571323
Optimization terminated successfully (Exit mode 0)
Current function value: 97.61236844546943
Iterations: 11
Function evaluations: 84
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 171.87868896518546
Iteration: 2, Func. Count: 21, Neg. LLF: 98.18098035693565
Iteration: 3, Func. Count: 30, Neg. LLF: 97.73295118302657
Iteration: 4, Func. Count: 38, Neg. LLF: 98.66274184141363
Iteration: 5, Func. Count: 47, Neg. LLF: 98.3526649567232
Iteration: 6, Func. Count: 56, Neg. LLF: 97.63007541540472
Iteration: 7, Func. Count: 64, Neg. LLF: 97.62412957705999
Iteration: 8, Func. Count: 72, Neg. LLF: 97.62228104645463
Iteration: 9, Func. Count: 80, Neg. LLF: 97.62184913900059
Iteration: 10, Func. Count: 88, Neg. LLF: 97.62168278872869
Iteration: 11, Func. Count: 96, Neg. LLF: 97.62082650543896
Iteration: 12, Func. Count: 104, Neg. LLF: 97.61837981227302
Iteration: 13, Func. Count: 112, Neg. LLF: 97.61667744760358
Iteration: 14, Func. Count: 120, Neg. LLF: 97.6126317266166
Iteration: 15, Func. Count: 128, Neg. LLF: 97.61247503211435
Iteration: 16, Func. Count: 136, Neg. LLF: 97.61236849100104
Iteration: 17, Func. Count: 143, Neg. LLF: 97.61236849098701
Optimization terminated successfully (Exit mode 0)
Current function value: 97.61236849100104
Iterations: 17
Function evaluations: 143
Gradient evaluations: 17
Iteration: 1, Func. Count: 10, Neg. LLF: 171.04327243243253
Iteration: 2, Func. Count: 23, Neg. LLF: 98.15714685089142
Iteration: 3, Func. Count: 33, Neg. LLF: 97.63714777404023
Iteration: 4, Func. Count: 42, Neg. LLF: 97.77961047968769
Iteration: 5, Func. Count: 52, Neg. LLF: 97.64160899464046
Iteration: 6, Func. Count: 62, Neg. LLF: 97.6319901429213
Iteration: 7, Func. Count: 71, Neg. LLF: 97.63138040689971
Iteration: 8, Func. Count: 80, Neg. LLF: 97.63104791775494
Iteration: 9, Func. Count: 89, Neg. LLF: 97.63084417825581
Iteration: 10, Func. Count: 98, Neg. LLF: 97.63041592611405
Iteration: 11, Func. Count: 107, Neg. LLF: 97.62975652577951
Iteration: 12, Func. Count: 116, Neg. LLF: 97.62746103669508
Iteration: 13, Func. Count: 125, Neg. LLF: 97.62949908372224
Iteration: 14, Func. Count: 136, Neg. LLF: 97.62488280461726
Iteration: 15, Func. Count: 145, Neg. LLF: 97.62453445286721
Iteration: 16, Func. Count: 154, Neg. LLF: 97.62437169219734
Iteration: 17, Func. Count: 163, Neg. LLF: 97.6242918822503
Iteration: 18, Func. Count: 172, Neg. LLF: 97.6241174452353
Iteration: 19, Func. Count: 181, Neg. LLF: 97.62369555163319
Iteration: 20, Func. Count: 190, Neg. LLF: 97.62085419761338
Iteration: 21, Func. Count: 199, Neg. LLF: 97.6124216298563
Iteration: 22, Func. Count: 208, Neg. LLF: 106.93283545601693
Iteration: 23, Func. Count: 221, Neg. LLF: 98.0507349582822
Iteration: 24, Func. Count: 232, Neg. LLF: 97.61342156765676
Iteration: 25, Func. Count: 242, Neg. LLF: 97.61236870954893
Iteration: 26, Func. Count: 250, Neg. LLF: 97.6123687115317
Optimization terminated successfully (Exit mode 0)
Current function value: 97.61236870954893
Iterations: 27
Function evaluations: 250
Gradient evaluations: 26
Iteration: 1, Func. Count: 11, Neg. LLF: 172.01214286157114
Iteration: 2, Func. Count: 25, Neg. LLF: 98.16090227672139
Iteration: 3, Func. Count: 36, Neg. LLF: 97.65415583762324
Iteration: 4, Func. Count: 46, Neg. LLF: 97.70744530643809
Iteration: 5, Func. Count: 57, Neg. LLF: 98.29205670693023
Iteration: 6, Func. Count: 68, Neg. LLF: 97.63835835290836
Iteration: 7, Func. Count: 78, Neg. LLF: 97.63742660823442
Iteration: 8, Func. Count: 88, Neg. LLF: 97.63736332463077
Iteration: 9, Func. Count: 98, Neg. LLF: 97.63729085793042
Iteration: 10, Func. Count: 108, Neg. LLF: 97.63705118384294
Iteration: 11, Func. Count: 118, Neg. LLF: 97.63369154657565
Iteration: 12, Func. Count: 128, Neg. LLF: 97.63692534214756
Iteration: 13, Func. Count: 139, Neg. LLF: 97.62496574011725
Iteration: 14, Func. Count: 149, Neg. LLF: 97.61725476393711
Iteration: 15, Func. Count: 159, Neg. LLF: 97.57851100162584
Iteration: 16, Func. Count: 169, Neg. LLF: 97.59625662813859
Iteration: 17, Func. Count: 180, Neg. LLF: 97.56639251290066
Iteration: 18, Func. Count: 190, Neg. LLF: 97.56614230273709
Iteration: 19, Func. Count: 200, Neg. LLF: 97.566139540028
Iteration: 20, Func. Count: 209, Neg. LLF: 97.56613954004168
Optimization terminated successfully (Exit mode 0)
Current function value: 97.566139540028
Iterations: 20
Function evaluations: 209
Gradient evaluations: 20
Iteration: 1, Func. Count: 8, Neg. LLF: 116.23653620712973
Iteration: 2, Func. Count: 17, Neg. LLF: 133.34877659963811
Iteration: 3, Func. Count: 25, Neg. LLF: 119.71769082651166
Iteration: 4, Func. Count: 33, Neg. LLF: 102.3381424126328
Iteration: 5, Func. Count: 41, Neg. LLF: 98.29358364311604
Iteration: 6, Func. Count: 49, Neg. LLF: 97.41548401474631
Iteration: 7, Func. Count: 56, Neg. LLF: 97.37613958965072
Iteration: 8, Func. Count: 63, Neg. LLF: 96.9843358401118
Iteration: 9, Func. Count: 70, Neg. LLF: 96.83027596780784
Iteration: 10, Func. Count: 77, Neg. LLF: 96.81049889414739
Iteration: 11, Func. Count: 84, Neg. LLF: 96.74372702074322
Iteration: 12, Func. Count: 91, Neg. LLF: 96.73351334761188
Iteration: 13, Func. Count: 98, Neg. LLF: 96.72929708236623
Iteration: 14, Func. Count: 105, Neg. LLF: 96.72914753707994
Iteration: 15, Func. Count: 112, Neg. LLF: 96.72914170834304
Iteration: 16, Func. Count: 118, Neg. LLF: 96.7291417083309
Optimization terminated successfully (Exit mode 0)
Current function value: 96.72914170834304
Iterations: 16
Function evaluations: 118
Gradient evaluations: 16
Iteration: 1, Func. Count: 9, Neg. LLF: 123.27075791273398
Iteration: 2, Func. Count: 21, Neg. LLF: 103.74961036095765
Iteration: 3, Func. Count: 30, Neg. LLF: 107.42980399778418
Iteration: 4, Func. Count: 39, Neg. LLF: 97.89703673561712
Iteration: 5, Func. Count: 47, Neg. LLF: 98.10559267005101
Iteration: 6, Func. Count: 56, Neg. LLF: 98.36180065707605
Iteration: 7, Func. Count: 65, Neg. LLF: 97.77390862397391
Iteration: 8, Func. Count: 73, Neg. LLF: 97.77163320989433
Iteration: 9, Func. Count: 81, Neg. LLF: 97.77150174318304
Iteration: 10, Func. Count: 89, Neg. LLF: 97.77131007042817
Iteration: 11, Func. Count: 97, Neg. LLF: 97.77055620328645
Iteration: 12, Func. Count: 105, Neg. LLF: 97.64282540346956
Iteration: 13, Func. Count: 113, Neg. LLF: 32870136.034676585
Iteration: 14, Func. Count: 124, Neg. LLF: 97.65474728121518
Iteration: 15, Func. Count: 133, Neg. LLF: 97.66726469341408
Iteration: 16, Func. Count: 142, Neg. LLF: 97.61454435844402
Iteration: 17, Func. Count: 151, Neg. LLF: 97.61283679626071
Iteration: 18, Func. Count: 160, Neg. LLF: 97.61236843215701
Iteration: 19, Func. Count: 167, Neg. LLF: 97.61236843216295
Optimization terminated successfully (Exit mode 0)
Current function value: 97.61236843215701
Iterations: 20
Function evaluations: 167
Gradient evaluations: 19
Iteration: 1, Func. Count: 10, Neg. LLF: 141.7577047556945
Iteration: 2, Func. Count: 23, Neg. LLF: 99.7990318711676
Iteration: 3, Func. Count: 33, Neg. LLF: 107.26940738104938
Iteration: 4, Func. Count: 43, Neg. LLF: 97.68622518441532
Iteration: 5, Func. Count: 52, Neg. LLF: 97.46286353100707
Iteration: 6, Func. Count: 61, Neg. LLF: 97.32631642599628
Iteration: 7, Func. Count: 70, Neg. LLF: 97.15158268928924
Iteration: 8, Func. Count: 79, Neg. LLF: 96.98904204490726
Iteration: 9, Func. Count: 88, Neg. LLF: 96.92335930363318
Iteration: 10, Func. Count: 97, Neg. LLF: 96.91722166018397
Iteration: 11, Func. Count: 107, Neg. LLF: 97.00890685012139
Iteration: 12, Func. Count: 117, Neg. LLF: 96.87100023445778
Iteration: 13, Func. Count: 126, Neg. LLF: 96.8511967851302
Iteration: 14, Func. Count: 135, Neg. LLF: 96.78129570583478
Iteration: 15, Func. Count: 144, Neg. LLF: 96.74583791416698
Iteration: 16, Func. Count: 153, Neg. LLF: 96.73205754185308
Iteration: 17, Func. Count: 162, Neg. LLF: 96.7292540782589
Iteration: 18, Func. Count: 171, Neg. LLF: 96.72913481015644
Iteration: 19, Func. Count: 180, Neg. LLF: 96.72911586346348
Iteration: 20, Func. Count: 188, Neg. LLF: 96.72911586345185
Optimization terminated successfully (Exit mode 0)
Current function value: 96.72911586346348
Iterations: 20
Function evaluations: 188
Gradient evaluations: 20
Iteration: 1, Func. Count: 11, Neg. LLF: 131.29265970231518
Iteration: 2, Func. Count: 25, Neg. LLF: 99.39338127460768
Iteration: 3, Func. Count: 36, Neg. LLF: 123.64430701620608
Iteration: 4, Func. Count: 47, Neg. LLF: 98.7770116440767
Iteration: 5, Func. Count: 58, Neg. LLF: 98.06018451831204
Iteration: 6, Func. Count: 69, Neg. LLF: 97.43770877230263
Iteration: 7, Func. Count: 80, Neg. LLF: 96.40423979156067
Iteration: 8, Func. Count: 90, Neg. LLF: 98.1658036981481
Iteration: 9, Func. Count: 101, Neg. LLF: 96.51192247749817
Iteration: 10, Func. Count: 112, Neg. LLF: 96.54406236469679
Iteration: 11, Func. Count: 124, Neg. LLF: 96.282582340914
Iteration: 12, Func. Count: 134, Neg. LLF: 96.27431419491292
Iteration: 13, Func. Count: 144, Neg. LLF: 96.27407979250177
Iteration: 14, Func. Count: 154, Neg. LLF: 96.2739553720175
Iteration: 15, Func. Count: 164, Neg. LLF: 96.27389743705561
Iteration: 16, Func. Count: 174, Neg. LLF: 96.27381799571528
Iteration: 17, Func. Count: 184, Neg. LLF: 96.27379647743109
Iteration: 18, Func. Count: 194, Neg. LLF: 96.27379352041909
Iteration: 19, Func. Count: 203, Neg. LLF: 96.27379352039786
Optimization terminated successfully (Exit mode 0)
Current function value: 96.27379352041909
Iterations: 19
Function evaluations: 203
Gradient evaluations: 19
Iteration: 1, Func. Count: 12, Neg. LLF: 101.27778759809017
Iteration: 2, Func. Count: 26, Neg. LLF: 240.88506588557743
Iteration: 3, Func. Count: 38, Neg. LLF: 114.7652129818237
Iteration: 4, Func. Count: 50, Neg. LLF: 120.68082898905247
Iteration: 5, Func. Count: 62, Neg. LLF: 108.03088300564747
Iteration: 6, Func. Count: 74, Neg. LLF: 100.93150891928062
Iteration: 7, Func. Count: 86, Neg. LLF: 97.46954551551268
Iteration: 8, Func. Count: 98, Neg. LLF: 98.41465724747229
Iteration: 9, Func. Count: 110, Neg. LLF: 96.55351892966969
Iteration: 10, Func. Count: 121, Neg. LLF: 96.4352618972584
Iteration: 11, Func. Count: 132, Neg. LLF: 97.11412335967395
Iteration: 12, Func. Count: 144, Neg. LLF: 96.29848296672355
Iteration: 13, Func. Count: 155, Neg. LLF: 96.23785041853279
Iteration: 14, Func. Count: 166, Neg. LLF: 96.23091773100936
Iteration: 15, Func. Count: 177, Neg. LLF: 96.22965166987123
Iteration: 16, Func. Count: 188, Neg. LLF: 96.22925759857776
Iteration: 17, Func. Count: 199, Neg. LLF: 96.22913255802416
Iteration: 18, Func. Count: 210, Neg. LLF: 96.22913061082393
Iteration: 19, Func. Count: 220, Neg. LLF: 96.22913061076021
Optimization terminated successfully (Exit mode 0)
Current function value: 96.22913061082393
Iterations: 19
Function evaluations: 220
Gradient evaluations: 19
Iteration: 1, Func. Count: 9, Neg. LLF: 116.25475345937245
Iteration: 2, Func. Count: 19, Neg. LLF: 133.53631534968002
Iteration: 3, Func. Count: 28, Neg. LLF: 119.56357560423989
Iteration: 4, Func. Count: 37, Neg. LLF: 102.27414476848952
Iteration: 5, Func. Count: 46, Neg. LLF: 98.25372914884274
Iteration: 6, Func. Count: 55, Neg. LLF: 97.41541660106732
Iteration: 7, Func. Count: 63, Neg. LLF: 97.3863642777766
Iteration: 8, Func. Count: 71, Neg. LLF: 96.9857743631525
Iteration: 9, Func. Count: 79, Neg. LLF: 96.84446040128454
Iteration: 10, Func. Count: 87, Neg. LLF: 96.82155916991196
Iteration: 11, Func. Count: 95, Neg. LLF: 96.73084049100368
Iteration: 12, Func. Count: 103, Neg. LLF: 96.73191349960236
Iteration: 13, Func. Count: 112, Neg. LLF: 96.72914286024739
Iteration: 14, Func. Count: 120, Neg. LLF: 96.72914171935295
Iteration: 15, Func. Count: 127, Neg. LLF: 96.72914177654859
Optimization terminated successfully (Exit mode 0)
Current function value: 96.72914171935295
Iterations: 15
Function evaluations: 127
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 122.9539618591891
Iteration: 2, Func. Count: 23, Neg. LLF: 104.64431617502278
Iteration: 3, Func. Count: 33, Neg. LLF: 99.62534941759797
Iteration: 4, Func. Count: 43, Neg. LLF: 97.99667315365029
Iteration: 5, Func. Count: 53, Neg. LLF: 98.24117492516805
Iteration: 6, Func. Count: 63, Neg. LLF: 97.8060683156496
Iteration: 7, Func. Count: 72, Neg. LLF: 97.77386685215419
Iteration: 8, Func. Count: 81, Neg. LLF: 97.7721505766054
Iteration: 9, Func. Count: 90, Neg. LLF: 97.77159929544538
Iteration: 10, Func. Count: 99, Neg. LLF: 97.77136978766201
Iteration: 11, Func. Count: 108, Neg. LLF: 97.7711221490075
Iteration: 12, Func. Count: 117, Neg. LLF: 97.65409922795612
Iteration: 13, Func. Count: 126, Neg. LLF: 32857646.362152487
Iteration: 14, Func. Count: 138, Neg. LLF: 97.6386152631008
Iteration: 15, Func. Count: 147, Neg. LLF: 97.73776467489631
Iteration: 16, Func. Count: 157, Neg. LLF: 97.75687383800116
Iteration: 17, Func. Count: 167, Neg. LLF: 97.61291522056979
Iteration: 18, Func. Count: 176, Neg. LLF: 97.6124689892009
Iteration: 19, Func. Count: 185, Neg. LLF: 97.61236871212058
Iteration: 20, Func. Count: 193, Neg. LLF: 97.61236871262628
Optimization terminated successfully (Exit mode 0)
Current function value: 97.61236871212058
Iterations: 21
Function evaluations: 193
Gradient evaluations: 20
Iteration: 1, Func. Count: 11, Neg. LLF: 143.37763368624547
Iteration: 2, Func. Count: 25, Neg. LLF: 99.83501239001775
Iteration: 3, Func. Count: 36, Neg. LLF: 104.60508531717836
Iteration: 4, Func. Count: 47, Neg. LLF: 97.86791082957157
Iteration: 5, Func. Count: 59, Neg. LLF: 97.33092021031463
Iteration: 6, Func. Count: 69, Neg. LLF: 97.03879508557247
Iteration: 7, Func. Count: 79, Neg. LLF: 96.9225444031683
Iteration: 8, Func. Count: 89, Neg. LLF: 96.85835868115754
Iteration: 9, Func. Count: 99, Neg. LLF: 96.83202017890979
Iteration: 10, Func. Count: 109, Neg. LLF: 96.82729818147232
Iteration: 11, Func. Count: 119, Neg. LLF: 96.82653264687279
Iteration: 12, Func. Count: 129, Neg. LLF: 96.82584114922074
Iteration: 13, Func. Count: 139, Neg. LLF: 96.82429903631915
Iteration: 14, Func. Count: 149, Neg. LLF: 96.8228557450341
Iteration: 15, Func. Count: 159, Neg. LLF: 96.81797532279552
Iteration: 16, Func. Count: 169, Neg. LLF: 96.81783665167893
Iteration: 17, Func. Count: 179, Neg. LLF: 96.81781372898692
Iteration: 18, Func. Count: 189, Neg. LLF: 96.81780451387306
Iteration: 19, Func. Count: 199, Neg. LLF: 96.81779904944895
Iteration: 20, Func. Count: 210, Neg. LLF: 96.81780178953039
Iteration: 21, Func. Count: 220, Neg. LLF: 96.817800967251
Iteration: 22, Func. Count: 240, Neg. LLF: 96.81780377158526
Iteration: 23, Func. Count: 251, Neg. LLF: 96.8178037177837
Optimization terminated successfully (Exit mode 0)
Current function value: 96.8178037177837
Iterations: 24
Function evaluations: 251
Gradient evaluations: 23
Iteration: 1, Func. Count: 12, Neg. LLF: 132.39926047349843
Iteration: 2, Func. Count: 27, Neg. LLF: 99.22670910495499
Iteration: 3, Func. Count: 39, Neg. LLF: 123.36029211099934
Iteration: 4, Func. Count: 51, Neg. LLF: 98.65605232911761
Iteration: 5, Func. Count: 63, Neg. LLF: 98.1445199864148
Iteration: 6, Func. Count: 75, Neg. LLF: 97.38250890401612
Iteration: 7, Func. Count: 87, Neg. LLF: 96.40173859925301
Iteration: 8, Func. Count: 98, Neg. LLF: 98.18462274012069
Iteration: 9, Func. Count: 110, Neg. LLF: 96.68503798274395
Iteration: 10, Func. Count: 122, Neg. LLF: 97.74919285562821
Iteration: 11, Func. Count: 135, Neg. LLF: 96.28297133334956
Iteration: 12, Func. Count: 146, Neg. LLF: 96.27483694139855
Iteration: 13, Func. Count: 157, Neg. LLF: 96.27438233144508
Iteration: 14, Func. Count: 168, Neg. LLF: 96.27417212890623
Iteration: 15, Func. Count: 179, Neg. LLF: 96.27402791339357
Iteration: 16, Func. Count: 190, Neg. LLF: 96.27387481829109
Iteration: 17, Func. Count: 201, Neg. LLF: 96.27380491917268
Iteration: 18, Func. Count: 212, Neg. LLF: 96.27379398307806
Iteration: 19, Func. Count: 222, Neg. LLF: 96.27379398293742
Optimization terminated successfully (Exit mode 0)
Current function value: 96.27379398307806
Iterations: 19
Function evaluations: 222
Gradient evaluations: 19
Iteration: 1, Func. Count: 13, Neg. LLF: 101.12655616146388
Iteration: 2, Func. Count: 28, Neg. LLF: 174.72118556547468
Iteration: 3, Func. Count: 41, Neg. LLF: 114.64350122155753
Iteration: 4, Func. Count: 54, Neg. LLF: 120.01234193557252
Iteration: 5, Func. Count: 67, Neg. LLF: 108.16671807221854
Iteration: 6, Func. Count: 80, Neg. LLF: 100.5754896362371
Iteration: 7, Func. Count: 93, Neg. LLF: 97.3840150858015
Iteration: 8, Func. Count: 106, Neg. LLF: 98.5641482237745
Iteration: 9, Func. Count: 119, Neg. LLF: 96.55346815788172
Iteration: 10, Func. Count: 131, Neg. LLF: 98.02473563173821
Iteration: 11, Func. Count: 144, Neg. LLF: 96.67518330037053
Iteration: 12, Func. Count: 157, Neg. LLF: 97.92275616452797
Iteration: 13, Func. Count: 170, Neg. LLF: 96.26005359795191
Iteration: 14, Func. Count: 182, Neg. LLF: 96.25094677285885
Iteration: 15, Func. Count: 194, Neg. LLF: 96.23106465336159
Iteration: 16, Func. Count: 206, Neg. LLF: 96.22948272380933
Iteration: 17, Func. Count: 218, Neg. LLF: 96.22916143706146
Iteration: 18, Func. Count: 230, Neg. LLF: 96.22914234674589
Iteration: 19, Func. Count: 242, Neg. LLF: 96.22913057245121
Iteration: 20, Func. Count: 253, Neg. LLF: 96.229130572425
Optimization terminated successfully (Exit mode 0)
Current function value: 96.22913057245121
Iterations: 20
Function evaluations: 253
Gradient evaluations: 20
Iteration: 1, Func. Count: 10, Neg. LLF: 109.60272894181361
Iteration: 2, Func. Count: 21, Neg. LLF: 15826590.400520476
Iteration: 3, Func. Count: 31, Neg. LLF: 6650512.795458302
Iteration: 4, Func. Count: 41, Neg. LLF: 96.9073649699287
Iteration: 5, Func. Count: 50, Neg. LLF: 96.70087795218576
Iteration: 6, Func. Count: 59, Neg. LLF: 96.62475855360772
Iteration: 7, Func. Count: 68, Neg. LLF: 96.58769541451612
Iteration: 8, Func. Count: 77, Neg. LLF: 96.57594286855581
Iteration: 9, Func. Count: 86, Neg. LLF: 96.57311547728821
Iteration: 10, Func. Count: 95, Neg. LLF: 96.57307656228237
Iteration: 11, Func. Count: 103, Neg. LLF: 96.5730765623061
Optimization terminated successfully (Exit mode 0)
Current function value: 96.57307656228237
Iterations: 11
Function evaluations: 103
Gradient evaluations: 11
Iteration: 1, Func. Count: 11, Neg. LLF: 112.5812553152183
Iteration: 2, Func. Count: 25, Neg. LLF: 113.81828396618855
Iteration: 3, Func. Count: 37, Neg. LLF: 101.20606234440807
Iteration: 4, Func. Count: 48, Neg. LLF: 97.61442493034745
Iteration: 5, Func. Count: 58, Neg. LLF: 97.55789630562356
Iteration: 6, Func. Count: 68, Neg. LLF: 97.53438241611401
Iteration: 7, Func. Count: 78, Neg. LLF: 97.53356215017669
Iteration: 8, Func. Count: 88, Neg. LLF: 97.53332858664304
Iteration: 9, Func. Count: 98, Neg. LLF: 97.53327816116665
Iteration: 10, Func. Count: 108, Neg. LLF: 97.53325326736083
Iteration: 11, Func. Count: 118, Neg. LLF: 97.53325128897242
Iteration: 12, Func. Count: 127, Neg. LLF: 97.53325128904106
Optimization terminated successfully (Exit mode 0)
Current function value: 97.53325128897242
Iterations: 12
Function evaluations: 127
Gradient evaluations: 12
Iteration: 1, Func. Count: 12, Neg. LLF: 143.68047922502748
Iteration: 2, Func. Count: 27, Neg. LLF: 99.66553281713912
Iteration: 3, Func. Count: 39, Neg. LLF: 101.16420257476162
Iteration: 4, Func. Count: 51, Neg. LLF: 97.77030029198423
Iteration: 5, Func. Count: 63, Neg. LLF: 97.87065191475827
Iteration: 6, Func. Count: 75, Neg. LLF: 96.90510224454461
Iteration: 7, Func. Count: 86, Neg. LLF: 97.24893714611684
Iteration: 8, Func. Count: 98, Neg. LLF: 96.82436540480717
Iteration: 9, Func. Count: 109, Neg. LLF: 96.82373605751717
Iteration: 10, Func. Count: 120, Neg. LLF: 96.82240093876413
Iteration: 11, Func. Count: 131, Neg. LLF: 96.82189758299126
Iteration: 12, Func. Count: 142, Neg. LLF: 96.81819334467231
Iteration: 13, Func. Count: 153, Neg. LLF: 96.81804399705477
Iteration: 14, Func. Count: 164, Neg. LLF: 96.81774000120902
Iteration: 15, Func. Count: 175, Neg. LLF: 96.91299915946615
Iteration: 16, Func. Count: 189, Neg. LLF: 96.81802251946694
Iteration: 17, Func. Count: 201, Neg. LLF: 96.81787475819695
Iteration: 18, Func. Count: 213, Neg. LLF: 96.8178036604551
Iteration: 19, Func. Count: 223, Neg. LLF: 96.81780365563269
Optimization terminated successfully (Exit mode 0)
Current function value: 96.8178036604551
Iterations: 20
Function evaluations: 223
Gradient evaluations: 19
Iteration: 1, Func. Count: 13, Neg. LLF: 124.44360237453802
Iteration: 2, Func. Count: 30, Neg. LLF: 103.90186314033443
Iteration: 3, Func. Count: 43, Neg. LLF: 110.19015194915397
Iteration: 4, Func. Count: 56, Neg. LLF: 97.37650648317921
Iteration: 5, Func. Count: 69, Neg. LLF: 97.51009018032501
Iteration: 6, Func. Count: 82, Neg. LLF: 97.0331049461822
Iteration: 7, Func. Count: 95, Neg. LLF: 97.88651377291983
Iteration: 8, Func. Count: 108, Neg. LLF: 96.1052449171224
Iteration: 9, Func. Count: 120, Neg. LLF: 98.70121492166533
Iteration: 10, Func. Count: 134, Neg. LLF: 96.37331858319013
Iteration: 11, Func. Count: 147, Neg. LLF: 96.05159194718024
Iteration: 12, Func. Count: 159, Neg. LLF: 95.94927346159642
Iteration: 13, Func. Count: 171, Neg. LLF: 97.25599507697568
Iteration: 14, Func. Count: 184, Neg. LLF: 97.22833226570746
Iteration: 15, Func. Count: 197, Neg. LLF: 97.27428767833233
Iteration: 16, Func. Count: 210, Neg. LLF: 97.16054993275621
Iteration: 17, Func. Count: 223, Neg. LLF: 97.47722143537736
Iteration: 18, Func. Count: 236, Neg. LLF: 95.58324069118305
Iteration: 19, Func. Count: 248, Neg. LLF: 95.56014619969866
Iteration: 20, Func. Count: 260, Neg. LLF: 96.35439541139954
Iteration: 21, Func. Count: 273, Neg. LLF: 95.54352770693653
Iteration: 22, Func. Count: 285, Neg. LLF: 95.5292625197066
Iteration: 23, Func. Count: 297, Neg. LLF: 95.51963182983201
Iteration: 24, Func. Count: 309, Neg. LLF: 95.51127230046893
Iteration: 25, Func. Count: 321, Neg. LLF: 95.50718906575953
Iteration: 26, Func. Count: 333, Neg. LLF: 95.5009047084605
Iteration: 27, Func. Count: 345, Neg. LLF: 95.49578002423354
Iteration: 28, Func. Count: 357, Neg. LLF: 95.4921648383174
Iteration: 29, Func. Count: 369, Neg. LLF: 95.49067969337335
Iteration: 30, Func. Count: 381, Neg. LLF: 95.49010840661505
Iteration: 31, Func. Count: 393, Neg. LLF: 95.48996064312142
Iteration: 32, Func. Count: 405, Neg. LLF: 95.48994899394879
Iteration: 33, Func. Count: 416, Neg. LLF: 95.48994899388562
Optimization terminated successfully (Exit mode 0)
Current function value: 95.48994899394879
Iterations: 33
Function evaluations: 416
Gradient evaluations: 33
Iteration: 1, Func. Count: 14, Neg. LLF: 99.65888335574115
Iteration: 2, Func. Count: 30, Neg. LLF: 3561153.421540247
Iteration: 3, Func. Count: 44, Neg. LLF: 199.67331272001078
Iteration: 4, Func. Count: 58, Neg. LLF: 129.78350823131015
Iteration: 5, Func. Count: 72, Neg. LLF: 96.337594357795
Iteration: 6, Func. Count: 85, Neg. LLF: 114.2613551963289
Iteration: 7, Func. Count: 100, Neg. LLF: 100.72369460535428
Iteration: 8, Func. Count: 115, Neg. LLF: 96.92265439800923
Iteration: 9, Func. Count: 129, Neg. LLF: 96.07132571452013
Iteration: 10, Func. Count: 143, Neg. LLF: 95.55830346642529
Iteration: 11, Func. Count: 156, Neg. LLF: 95.53924033534472
Iteration: 12, Func. Count: 169, Neg. LLF: 95.51687808594252
Iteration: 13, Func. Count: 182, Neg. LLF: 95.50494222076124
Iteration: 14, Func. Count: 195, Neg. LLF: 95.49937637652093
Iteration: 15, Func. Count: 208, Neg. LLF: 95.49195815160674
Iteration: 16, Func. Count: 221, Neg. LLF: 95.49049669606822
Iteration: 17, Func. Count: 234, Neg. LLF: 95.49001061178949
Iteration: 18, Func. Count: 247, Neg. LLF: 95.4899533839227
Iteration: 19, Func. Count: 260, Neg. LLF: 95.48994895386583
Iteration: 20, Func. Count: 272, Neg. LLF: 95.48994903633036
Optimization terminated successfully (Exit mode 0)
Current function value: 95.48994895386583
Iterations: 20
Function evaluations: 272
Gradient evaluations: 20
Iteration: 1, Func. Count: 11, Neg. LLF: 112.12020462368744
Iteration: 2, Func. Count: 23, Neg. LLF: 61121.71220248981
Iteration: 3, Func. Count: 34, Neg. LLF: 8161730.079538825
Iteration: 4, Func. Count: 45, Neg. LLF: 96.70530101513496
Iteration: 5, Func. Count: 55, Neg. LLF: 96.65399912761676
Iteration: 6, Func. Count: 65, Neg. LLF: 96.61158360739651
Iteration: 7, Func. Count: 75, Neg. LLF: 96.58349493613817
Iteration: 8, Func. Count: 85, Neg. LLF: 96.57416316562887
Iteration: 9, Func. Count: 95, Neg. LLF: 96.57308696851462
Iteration: 10, Func. Count: 105, Neg. LLF: 96.57307645376896
Iteration: 11, Func. Count: 114, Neg. LLF: 96.5730765063199
Optimization terminated successfully (Exit mode 0)
Current function value: 96.57307645376896
Iterations: 11
Function evaluations: 114
Gradient evaluations: 11
Iteration: 1, Func. Count: 12, Neg. LLF: 112.82944662742796
Iteration: 2, Func. Count: 27, Neg. LLF: 113.69760330885435
Iteration: 3, Func. Count: 40, Neg. LLF: 102.46261495494069
Iteration: 4, Func. Count: 52, Neg. LLF: 97.68649532384697
Iteration: 5, Func. Count: 63, Neg. LLF: 97.55352567066068
Iteration: 6, Func. Count: 74, Neg. LLF: 97.53614110281927
Iteration: 7, Func. Count: 85, Neg. LLF: 97.53352548394558
Iteration: 8, Func. Count: 96, Neg. LLF: 97.53336816517492
Iteration: 9, Func. Count: 107, Neg. LLF: 97.53326661831613
Iteration: 10, Func. Count: 118, Neg. LLF: 97.53325551777944
Iteration: 11, Func. Count: 129, Neg. LLF: 97.53325132209741
Iteration: 12, Func. Count: 139, Neg. LLF: 97.53325132213494
Optimization terminated successfully (Exit mode 0)
Current function value: 97.53325132209741
Iterations: 12
Function evaluations: 139
Gradient evaluations: 12
Iteration: 1, Func. Count: 13, Neg. LLF: 143.08115872891136
Iteration: 2, Func. Count: 29, Neg. LLF: 99.62549856384393
Iteration: 3, Func. Count: 42, Neg. LLF: 101.6601465423468
Iteration: 4, Func. Count: 55, Neg. LLF: 97.90660404957352
Iteration: 5, Func. Count: 68, Neg. LLF: 97.90346370935741
Iteration: 6, Func. Count: 81, Neg. LLF: 97.00184551356114
Iteration: 7, Func. Count: 93, Neg. LLF: 96.82504909319618
Iteration: 8, Func. Count: 105, Neg. LLF: 96.82404703057118
Iteration: 9, Func. Count: 117, Neg. LLF: 96.82326035001785
Iteration: 10, Func. Count: 129, Neg. LLF: 96.82240723128281
Iteration: 11, Func. Count: 141, Neg. LLF: 96.81958869957906
Iteration: 12, Func. Count: 153, Neg. LLF: 1046.5643941288527
Iteration: 13, Func. Count: 168, Neg. LLF: 97.23399085895417
Iteration: 14, Func. Count: 182, Neg. LLF: 96.83477106683006
Iteration: 15, Func. Count: 195, Neg. LLF: 96.81780397670722
Iteration: 16, Func. Count: 206, Neg. LLF: 96.81780397166122
Optimization terminated successfully (Exit mode 0)
Current function value: 96.81780397670722
Iterations: 17
Function evaluations: 206
Gradient evaluations: 16
Iteration: 1, Func. Count: 14, Neg. LLF: 125.49630207664201
Iteration: 2, Func. Count: 32, Neg. LLF: 103.64300732206901
Iteration: 3, Func. Count: 46, Neg. LLF: 109.48265472100397
Iteration: 4, Func. Count: 60, Neg. LLF: 97.36978098551997
Iteration: 5, Func. Count: 74, Neg. LLF: 97.09331316299586
Iteration: 6, Func. Count: 87, Neg. LLF: 97.07440306664151
Iteration: 7, Func. Count: 101, Neg. LLF: 97.61219320763487
Iteration: 8, Func. Count: 115, Neg. LLF: 97.17588741082939
Iteration: 9, Func. Count: 129, Neg. LLF: 96.95138968184115
Iteration: 10, Func. Count: 143, Neg. LLF: 96.08497251031568
Iteration: 11, Func. Count: 156, Neg. LLF: 96.06751479094723
Iteration: 12, Func. Count: 169, Neg. LLF: 96.0508740115059
Iteration: 13, Func. Count: 182, Neg. LLF: 97.58471858489024
Iteration: 14, Func. Count: 196, Neg. LLF: 97.45077794919632
Iteration: 15, Func. Count: 210, Neg. LLF: 97.42948680333774
Iteration: 16, Func. Count: 224, Neg. LLF: 97.36384908404773
Iteration: 17, Func. Count: 238, Neg. LLF: 97.34771942768107
Iteration: 18, Func. Count: 252, Neg. LLF: 97.67706157469523
Iteration: 19, Func. Count: 266, Neg. LLF: 97.25185788876585
Iteration: 20, Func. Count: 280, Neg. LLF: 96.08933356582575
Iteration: 21, Func. Count: 294, Neg. LLF: 97.47676536860006
Iteration: 22, Func. Count: 308, Neg. LLF: 96.02112693933528
Iteration: 23, Func. Count: 322, Neg. LLF: 95.54221817928153
Iteration: 24, Func. Count: 335, Neg. LLF: 95.52723840220776
Iteration: 25, Func. Count: 348, Neg. LLF: 95.51793378068234
Iteration: 26, Func. Count: 361, Neg. LLF: 95.51293815035928
Iteration: 27, Func. Count: 374, Neg. LLF: 95.51368123608327
Iteration: 28, Func. Count: 388, Neg. LLF: 95.50429019513452
Iteration: 29, Func. Count: 401, Neg. LLF: 95.50183022173992
Iteration: 30, Func. Count: 414, Neg. LLF: 95.49470983989131
Iteration: 31, Func. Count: 427, Neg. LLF: 95.49119032250796
Iteration: 32, Func. Count: 440, Neg. LLF: 95.49010389728095
Iteration: 33, Func. Count: 453, Neg. LLF: 95.49000523566424
Iteration: 34, Func. Count: 466, Neg. LLF: 95.48997608750643
Iteration: 35, Func. Count: 479, Neg. LLF: 95.48995285461113
Iteration: 36, Func. Count: 492, Neg. LLF: 95.48994883880688
Iteration: 37, Func. Count: 504, Neg. LLF: 95.48994883883236
Optimization terminated successfully (Exit mode 0)
Current function value: 95.48994883880688
Iterations: 37
Function evaluations: 504
Gradient evaluations: 37
Iteration: 1, Func. Count: 15, Neg. LLF: 99.73442657069796
Iteration: 2, Func. Count: 32, Neg. LLF: 3556512.50877273
Iteration: 3, Func. Count: 47, Neg. LLF: 200.5086158773183
Iteration: 4, Func. Count: 62, Neg. LLF: 133.62861522055834
Iteration: 5, Func. Count: 77, Neg. LLF: 96.32827376639604
Iteration: 6, Func. Count: 91, Neg. LLF: 116.91141492783485
Iteration: 7, Func. Count: 107, Neg. LLF: 100.90467128065987
Iteration: 8, Func. Count: 123, Neg. LLF: 96.92934557865188
Iteration: 9, Func. Count: 138, Neg. LLF: 96.07333145605129
Iteration: 10, Func. Count: 153, Neg. LLF: 95.55751384798177
Iteration: 11, Func. Count: 167, Neg. LLF: 95.53874655634
Iteration: 12, Func. Count: 181, Neg. LLF: 95.51641626773939
Iteration: 13, Func. Count: 195, Neg. LLF: 95.50497205393805
Iteration: 14, Func. Count: 209, Neg. LLF: 95.4993810103316
Iteration: 15, Func. Count: 223, Neg. LLF: 95.49173464433561
Iteration: 16, Func. Count: 237, Neg. LLF: 95.49045668257284
Iteration: 17, Func. Count: 251, Neg. LLF: 95.48998933771976
Iteration: 18, Func. Count: 265, Neg. LLF: 95.48995187616373
Iteration: 19, Func. Count: 279, Neg. LLF: 95.48994881230797
Iteration: 20, Func. Count: 292, Neg. LLF: 95.48994889475979
Optimization terminated successfully (Exit mode 0)
Current function value: 95.48994881230797
Iterations: 20
Function evaluations: 292
Gradient evaluations: 20
Iteration: 1, Func. Count: 8, Neg. LLF: 114.3388242034868
Iteration: 2, Func. Count: 17, Neg. LLF: 121.58295588445091
Iteration: 3, Func. Count: 25, Neg. LLF: 192.1973221392889
Iteration: 4, Func. Count: 33, Neg. LLF: 98.94546704915498
Iteration: 5, Func. Count: 41, Neg. LLF: 97.47715975041142
Iteration: 6, Func. Count: 48, Neg. LLF: 97.94161139873529
Iteration: 7, Func. Count: 57, Neg. LLF: 97.56242556496929
Iteration: 8, Func. Count: 65, Neg. LLF: 97.4532445778229
Iteration: 9, Func. Count: 72, Neg. LLF: 97.45307918684072
Iteration: 10, Func. Count: 79, Neg. LLF: 97.45307590988033
Iteration: 11, Func. Count: 86, Neg. LLF: 97.45307540128302
Optimization terminated successfully (Exit mode 0)
Current function value: 97.45307540128302
Iterations: 11
Function evaluations: 86
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 173.93704153805325
Iteration: 2, Func. Count: 20, Neg. LLF: 98.14919150313506
Iteration: 3, Func. Count: 29, Neg. LLF: 97.71103591554677
Iteration: 4, Func. Count: 37, Neg. LLF: 98.02885584739053
Iteration: 5, Func. Count: 46, Neg. LLF: 106.26128750688133
Iteration: 6, Func. Count: 56, Neg. LLF: 97.6124526545298
Iteration: 7, Func. Count: 64, Neg. LLF: 97.61244024686465
Iteration: 8, Func. Count: 73, Neg. LLF: 97.61236865564052
Iteration: 9, Func. Count: 80, Neg. LLF: 97.61236865661166
Optimization terminated successfully (Exit mode 0)
Current function value: 97.61236865564052
Iterations: 9
Function evaluations: 80
Gradient evaluations: 9
Iteration: 1, Func. Count: 10, Neg. LLF: 171.69769925945454
Iteration: 2, Func. Count: 23, Neg. LLF: 98.21101478872791
Iteration: 3, Func. Count: 33, Neg. LLF: 97.73287945261379
Iteration: 4, Func. Count: 42, Neg. LLF: 98.48944728304092
Iteration: 5, Func. Count: 52, Neg. LLF: 98.45872872636956
Iteration: 6, Func. Count: 62, Neg. LLF: 97.62915519662833
Iteration: 7, Func. Count: 71, Neg. LLF: 97.6242440428095
Iteration: 8, Func. Count: 80, Neg. LLF: 97.62238095105188
Iteration: 9, Func. Count: 89, Neg. LLF: 97.62199797426335
Iteration: 10, Func. Count: 98, Neg. LLF: 97.62184486692047
Iteration: 11, Func. Count: 107, Neg. LLF: 97.62103617359881
Iteration: 12, Func. Count: 116, Neg. LLF: 97.61868239184864
Iteration: 13, Func. Count: 125, Neg. LLF: 97.61669002575053
Iteration: 14, Func. Count: 134, Neg. LLF: 97.61252726904966
Iteration: 15, Func. Count: 143, Neg. LLF: 97.61249692766326
Iteration: 16, Func. Count: 153, Neg. LLF: 97.61236854889965
Iteration: 17, Func. Count: 161, Neg. LLF: 97.61236854897366
Optimization terminated successfully (Exit mode 0)
Current function value: 97.61236854889965
Iterations: 17
Function evaluations: 161
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 170.55333892066693
Iteration: 2, Func. Count: 25, Neg. LLF: 98.16294231426899
Iteration: 3, Func. Count: 36, Neg. LLF: 97.63905832807788
Iteration: 4, Func. Count: 46, Neg. LLF: 97.80367957557556
Iteration: 5, Func. Count: 57, Neg. LLF: 97.63820281868287
Iteration: 6, Func. Count: 68, Neg. LLF: 97.63189265738202
Iteration: 7, Func. Count: 78, Neg. LLF: 97.63119828123462
Iteration: 8, Func. Count: 88, Neg. LLF: 97.63095456548211
Iteration: 9, Func. Count: 98, Neg. LLF: 97.63082406038619
Iteration: 10, Func. Count: 108, Neg. LLF: 97.63044466870103
Iteration: 11, Func. Count: 118, Neg. LLF: 97.62984959833554
Iteration: 12, Func. Count: 128, Neg. LLF: 97.62689668609244
Iteration: 13, Func. Count: 138, Neg. LLF: 97.62954890735215
Iteration: 14, Func. Count: 149, Neg. LLF: 97.62979384988488
Iteration: 15, Func. Count: 160, Neg. LLF: 97.62535008333975
Iteration: 16, Func. Count: 170, Neg. LLF: 97.62478641122188
Iteration: 17, Func. Count: 180, Neg. LLF: 97.6244247519123
Iteration: 18, Func. Count: 190, Neg. LLF: 97.62424470127466
Iteration: 19, Func. Count: 200, Neg. LLF: 97.6240524296543
Iteration: 20, Func. Count: 210, Neg. LLF: 97.62349872165937
Iteration: 21, Func. Count: 220, Neg. LLF: 97.61839632758897
Iteration: 22, Func. Count: 230, Neg. LLF: 97.61238010556285
Iteration: 23, Func. Count: 240, Neg. LLF: 311223.0755645867
Iteration: 24, Func. Count: 254, Neg. LLF: 97.61389982285192
Iteration: 25, Func. Count: 265, Neg. LLF: 97.61237382325706
Iteration: 26, Func. Count: 275, Neg. LLF: 97.61247957379926
Iteration: 27, Func. Count: 286, Neg. LLF: 97.61236851214524
Iteration: 28, Func. Count: 295, Neg. LLF: 97.61236851382482
Optimization terminated successfully (Exit mode 0)
Current function value: 97.61236851214524
Iterations: 29
Function evaluations: 295
Gradient evaluations: 28
Iteration: 1, Func. Count: 12, Neg. LLF: 172.35917323771952
Iteration: 2, Func. Count: 27, Neg. LLF: 98.15173796260041
Iteration: 3, Func. Count: 39, Neg. LLF: 97.648719519695
Iteration: 4, Func. Count: 50, Neg. LLF: 97.82217677018815
Iteration: 5, Func. Count: 62, Neg. LLF: 97.95621821230584
Iteration: 6, Func. Count: 74, Neg. LLF: 97.63794307709651
Iteration: 7, Func. Count: 85, Neg. LLF: 97.63766628392884
Iteration: 8, Func. Count: 96, Neg. LLF: 97.63618925659786
Iteration: 9, Func. Count: 107, Neg. LLF: 97.63202903169541
Iteration: 10, Func. Count: 118, Neg. LLF: 97.6272374775161
Iteration: 11, Func. Count: 129, Neg. LLF: 97.63445548680708
Iteration: 12, Func. Count: 141, Neg. LLF: 97.60096698425443
Iteration: 13, Func. Count: 152, Neg. LLF: 97.56715867782609
Iteration: 14, Func. Count: 163, Neg. LLF: 97.56624404315235
Iteration: 15, Func. Count: 174, Neg. LLF: 97.56614432813572
Iteration: 16, Func. Count: 185, Neg. LLF: 97.56613956737539
Iteration: 17, Func. Count: 196, Neg. LLF: 97.59015225313954
Optimization terminated successfully (Exit mode 0)
Current function value: 97.5661395624677
Iterations: 18
Function evaluations: 200
Gradient evaluations: 17
Iteration: 1, Func. Count: 9, Neg. LLF: 114.28464866180877
Iteration: 2, Func. Count: 19, Neg. LLF: 125.61732144244343
Iteration: 3, Func. Count: 28, Neg. LLF: 199.39555344145435
Iteration: 4, Func. Count: 37, Neg. LLF: 98.74849418534369
Iteration: 5, Func. Count: 46, Neg. LLF: 97.44927422254229
Iteration: 6, Func. Count: 54, Neg. LLF: 98.99035932128365
Iteration: 7, Func. Count: 64, Neg. LLF: 98.1959437823451
Iteration: 8, Func. Count: 73, Neg. LLF: 97.40973255908044
Iteration: 9, Func. Count: 81, Neg. LLF: 97.4089579105143
Iteration: 10, Func. Count: 89, Neg. LLF: 97.40731283606262
Iteration: 11, Func. Count: 97, Neg. LLF: 97.28274194488215
Iteration: 12, Func. Count: 105, Neg. LLF: 96.73735852737893
Iteration: 13, Func. Count: 113, Neg. LLF: 100.47234231847321
Iteration: 14, Func. Count: 124, Neg. LLF: 96.93982497811034
Iteration: 15, Func. Count: 133, Neg. LLF: 96.81084217701725
Iteration: 16, Func. Count: 142, Neg. LLF: 96.72914245915722
Iteration: 17, Func. Count: 150, Neg. LLF: 96.72914160712733
Optimization terminated successfully (Exit mode 0)
Current function value: 96.72914160712733
Iterations: 18
Function evaluations: 150
Gradient evaluations: 17
Iteration: 1, Func. Count: 10, Neg. LLF: 123.55480619337438
Iteration: 2, Func. Count: 23, Neg. LLF: 104.02861461832838
Iteration: 3, Func. Count: 33, Neg. LLF: 111.46082790517792
Iteration: 4, Func. Count: 43, Neg. LLF: 97.89871998397383
Iteration: 5, Func. Count: 52, Neg. LLF: 98.11543245686961
Iteration: 6, Func. Count: 62, Neg. LLF: 98.28050826967535
Iteration: 7, Func. Count: 72, Neg. LLF: 97.7741922111973
Iteration: 8, Func. Count: 81, Neg. LLF: 97.77175973149964
Iteration: 9, Func. Count: 90, Neg. LLF: 97.77155373956121
Iteration: 10, Func. Count: 99, Neg. LLF: 97.77133171287946
Iteration: 11, Func. Count: 108, Neg. LLF: 97.7710382419866
Iteration: 12, Func. Count: 117, Neg. LLF: 97.63977937806753
Iteration: 13, Func. Count: 126, Neg. LLF: 32888136.481691815
Iteration: 14, Func. Count: 138, Neg. LLF: 97.6529274319227
Iteration: 15, Func. Count: 148, Neg. LLF: 97.65579584325445
Iteration: 16, Func. Count: 158, Neg. LLF: 97.61369697254356
Iteration: 17, Func. Count: 167, Neg. LLF: 97.61311848067567
Iteration: 18, Func. Count: 176, Neg. LLF: 97.61249251165111
Iteration: 19, Func. Count: 185, Neg. LLF: 97.61237101031662
Iteration: 20, Func. Count: 194, Neg. LLF: 97.6123684669844
Iteration: 21, Func. Count: 202, Neg. LLF: 97.61236846722255
Optimization terminated successfully (Exit mode 0)
Current function value: 97.6123684669844
Iterations: 22
Function evaluations: 202
Gradient evaluations: 21
Iteration: 1, Func. Count: 11, Neg. LLF: 141.0583968271574
Iteration: 2, Func. Count: 25, Neg. LLF: 99.85615719263033
Iteration: 3, Func. Count: 36, Neg. LLF: 107.95566391583773
Iteration: 4, Func. Count: 47, Neg. LLF: 97.62381025825006
Iteration: 5, Func. Count: 57, Neg. LLF: 97.39565636940704
Iteration: 6, Func. Count: 67, Neg. LLF: 97.24576656494827
Iteration: 7, Func. Count: 77, Neg. LLF: 97.09776803120133
Iteration: 8, Func. Count: 87, Neg. LLF: 96.98624343671172
Iteration: 9, Func. Count: 97, Neg. LLF: 96.91455569578788
Iteration: 10, Func. Count: 107, Neg. LLF: 96.93084955517935
Iteration: 11, Func. Count: 118, Neg. LLF: 96.88212118859879
Iteration: 12, Func. Count: 128, Neg. LLF: 96.83814477826361
Iteration: 13, Func. Count: 138, Neg. LLF: 96.78638813621434
Iteration: 14, Func. Count: 148, Neg. LLF: 96.74157098813475
Iteration: 15, Func. Count: 158, Neg. LLF: 96.7310850775567
Iteration: 16, Func. Count: 168, Neg. LLF: 96.7292382155282
Iteration: 17, Func. Count: 178, Neg. LLF: 96.72912814768358
Iteration: 18, Func. Count: 188, Neg. LLF: 96.72911605560516
Iteration: 19, Func. Count: 197, Neg. LLF: 96.72911605561578
Optimization terminated successfully (Exit mode 0)
Current function value: 96.72911605560516
Iterations: 19
Function evaluations: 197
Gradient evaluations: 19
Iteration: 1, Func. Count: 12, Neg. LLF: 131.29664022689633
Iteration: 2, Func. Count: 27, Neg. LLF: 99.46314855212658
Iteration: 3, Func. Count: 39, Neg. LLF: 123.594963115074
Iteration: 4, Func. Count: 51, Neg. LLF: 98.76665296671358
Iteration: 5, Func. Count: 63, Neg. LLF: 97.8928807611784
Iteration: 6, Func. Count: 75, Neg. LLF: 97.46353427150413
Iteration: 7, Func. Count: 87, Neg. LLF: 96.42388132269548
Iteration: 8, Func. Count: 98, Neg. LLF: 98.89098290566312
Iteration: 9, Func. Count: 110, Neg. LLF: 96.4568971714945
Iteration: 10, Func. Count: 122, Neg. LLF: 97.46015086167094
Iteration: 11, Func. Count: 135, Neg. LLF: 96.28336548080479
Iteration: 12, Func. Count: 146, Neg. LLF: 96.27450831436634
Iteration: 13, Func. Count: 157, Neg. LLF: 96.27418125443774
Iteration: 14, Func. Count: 168, Neg. LLF: 96.27408056436063
Iteration: 15, Func. Count: 179, Neg. LLF: 96.27397555726814
Iteration: 16, Func. Count: 190, Neg. LLF: 96.27381028903598
Iteration: 17, Func. Count: 201, Neg. LLF: 96.27379498371835
Iteration: 18, Func. Count: 212, Neg. LLF: 96.27379345654508
Iteration: 19, Func. Count: 222, Neg. LLF: 96.2737934565204
Optimization terminated successfully (Exit mode 0)
Current function value: 96.27379345654508
Iterations: 19
Function evaluations: 222
Gradient evaluations: 19
Iteration: 1, Func. Count: 13, Neg. LLF: 101.27933879128213
Iteration: 2, Func. Count: 28, Neg. LLF: 241.43351537801846
Iteration: 3, Func. Count: 41, Neg. LLF: 114.91288116651792
Iteration: 4, Func. Count: 54, Neg. LLF: 120.14000483204286
Iteration: 5, Func. Count: 67, Neg. LLF: 108.23572375797048
Iteration: 6, Func. Count: 80, Neg. LLF: 100.94357219258815
Iteration: 7, Func. Count: 93, Neg. LLF: 97.46674514694745
Iteration: 8, Func. Count: 106, Neg. LLF: 98.45918825232859
Iteration: 9, Func. Count: 119, Neg. LLF: 96.55544826149477
Iteration: 10, Func. Count: 131, Neg. LLF: 96.60336384380608
Iteration: 11, Func. Count: 144, Neg. LLF: 96.9036526686976
Iteration: 12, Func. Count: 157, Neg. LLF: 96.27184461505274
Iteration: 13, Func. Count: 169, Neg. LLF: 96.2339400286886
Iteration: 14, Func. Count: 181, Neg. LLF: 96.23086328285646
Iteration: 15, Func. Count: 193, Neg. LLF: 96.22941929428781
Iteration: 16, Func. Count: 205, Neg. LLF: 96.22921190440351
Iteration: 17, Func. Count: 217, Neg. LLF: 96.22913284214366
Iteration: 18, Func. Count: 229, Neg. LLF: 96.2291306629261
Iteration: 19, Func. Count: 240, Neg. LLF: 96.22913066288328
Optimization terminated successfully (Exit mode 0)
Current function value: 96.2291306629261
Iterations: 19
Function evaluations: 240
Gradient evaluations: 19
Iteration: 1, Func. Count: 10, Neg. LLF: 114.30812287635956
Iteration: 2, Func. Count: 21, Neg. LLF: 126.303741838401
Iteration: 3, Func. Count: 31, Neg. LLF: 192.41225131179735
Iteration: 4, Func. Count: 41, Neg. LLF: 98.7514721097367
Iteration: 5, Func. Count: 51, Neg. LLF: 97.4495384839321
Iteration: 6, Func. Count: 60, Neg. LLF: 99.09140513864425
Iteration: 7, Func. Count: 71, Neg. LLF: 98.1728642227306
Iteration: 8, Func. Count: 81, Neg. LLF: 97.40971611597894
Iteration: 9, Func. Count: 90, Neg. LLF: 97.40892726729878
Iteration: 10, Func. Count: 99, Neg. LLF: 97.40714294641927
Iteration: 11, Func. Count: 108, Neg. LLF: 97.25632655022933
Iteration: 12, Func. Count: 117, Neg. LLF: 96.73516863655139
Iteration: 13, Func. Count: 126, Neg. LLF: 100.65458728359398
Iteration: 14, Func. Count: 138, Neg. LLF: 96.78879253295828
Iteration: 15, Func. Count: 148, Neg. LLF: 96.80396809566194
Iteration: 16, Func. Count: 158, Neg. LLF: 96.729142083951
Iteration: 17, Func. Count: 166, Neg. LLF: 96.72914202674109
Optimization terminated successfully (Exit mode 0)
Current function value: 96.729142083951
Iterations: 18
Function evaluations: 166
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 123.23687998947972
Iteration: 2, Func. Count: 25, Neg. LLF: 105.04582872747973
Iteration: 3, Func. Count: 36, Neg. LLF: 100.52190244075211
Iteration: 4, Func. Count: 47, Neg. LLF: 97.92288791774074
Iteration: 5, Func. Count: 57, Neg. LLF: 98.15784647602099
Iteration: 6, Func. Count: 68, Neg. LLF: 98.72618549660694
Iteration: 7, Func. Count: 79, Neg. LLF: 97.77219130254929
Iteration: 8, Func. Count: 89, Neg. LLF: 97.77152248832492
Iteration: 9, Func. Count: 99, Neg. LLF: 97.77140739310401
Iteration: 10, Func. Count: 109, Neg. LLF: 97.77124614137418
Iteration: 11, Func. Count: 119, Neg. LLF: 97.75470110600268
Iteration: 12, Func. Count: 129, Neg. LLF: 32911129.2351999
Iteration: 13, Func. Count: 143, Neg. LLF: 97.62719808615785
Iteration: 14, Func. Count: 153, Neg. LLF: 98.1828230364947
Iteration: 15, Func. Count: 164, Neg. LLF: 97.7278268418272
Iteration: 16, Func. Count: 175, Neg. LLF: 97.61360721602433
Iteration: 17, Func. Count: 186, Neg. LLF: 97.61239692218959
Iteration: 18, Func. Count: 196, Neg. LLF: 97.61236886816921
Iteration: 19, Func. Count: 206, Neg. LLF: 98.18643153280632
Optimization terminated successfully (Exit mode 0)
Current function value: 97.61236886599174
Iterations: 21
Function evaluations: 210
Gradient evaluations: 19
Iteration: 1, Func. Count: 12, Neg. LLF: 142.67137439703507
Iteration: 2, Func. Count: 27, Neg. LLF: 99.88594311524842
Iteration: 3, Func. Count: 39, Neg. LLF: 105.15439470471284
Iteration: 4, Func. Count: 51, Neg. LLF: 97.89108439279002
Iteration: 5, Func. Count: 64, Neg. LLF: 97.17835548336852
Iteration: 6, Func. Count: 75, Neg. LLF: 96.9416820302037
Iteration: 7, Func. Count: 86, Neg. LLF: 96.8550212921944
Iteration: 8, Func. Count: 97, Neg. LLF: 96.83383849159938
Iteration: 9, Func. Count: 108, Neg. LLF: 96.82562587720348
Iteration: 10, Func. Count: 119, Neg. LLF: 96.82433386221263
Iteration: 11, Func. Count: 130, Neg. LLF: 96.82389463250264
Iteration: 12, Func. Count: 141, Neg. LLF: 96.82320979674674
Iteration: 13, Func. Count: 152, Neg. LLF: 96.82296307706156
Iteration: 14, Func. Count: 163, Neg. LLF: 96.82110589169548
Iteration: 15, Func. Count: 174, Neg. LLF: 96.81788135013518
Iteration: 16, Func. Count: 185, Neg. LLF: 98.39940052175828
Iteration: 17, Func. Count: 199, Neg. LLF: 96.82314995801498
Iteration: 18, Func. Count: 211, Neg. LLF: 96.81962568579387
Iteration: 19, Func. Count: 223, Neg. LLF: 96.81780365986914
Optimization terminated successfully (Exit mode 0)
Current function value: 96.81780365986914
Iterations: 20
Function evaluations: 223
Gradient evaluations: 19
Iteration: 1, Func. Count: 13, Neg. LLF: 132.41541438055714
Iteration: 2, Func. Count: 29, Neg. LLF: 99.28645608051896
Iteration: 3, Func. Count: 42, Neg. LLF: 123.32475511677733
Iteration: 4, Func. Count: 55, Neg. LLF: 98.64420227044499
Iteration: 5, Func. Count: 68, Neg. LLF: 97.97868144145761
Iteration: 6, Func. Count: 81, Neg. LLF: 97.40906082061021
Iteration: 7, Func. Count: 94, Neg. LLF: 96.43393491686261
Iteration: 8, Func. Count: 106, Neg. LLF: 98.29169505326637
Iteration: 9, Func. Count: 119, Neg. LLF: 97.82657885041944
Iteration: 10, Func. Count: 133, Neg. LLF: 98.28033358681515
Iteration: 11, Func. Count: 147, Neg. LLF: 96.27664157094463
Iteration: 12, Func. Count: 159, Neg. LLF: 96.27508211245751
Iteration: 13, Func. Count: 171, Neg. LLF: 96.27462744717005
Iteration: 14, Func. Count: 183, Neg. LLF: 96.2743768678258
Iteration: 15, Func. Count: 195, Neg. LLF: 96.27385583025632
Iteration: 16, Func. Count: 207, Neg. LLF: 96.27380359066588
Iteration: 17, Func. Count: 219, Neg. LLF: 96.27379356299853
Iteration: 18, Func. Count: 230, Neg. LLF: 96.27379356297509
Optimization terminated successfully (Exit mode 0)
Current function value: 96.27379356299853
Iterations: 18
Function evaluations: 230
Gradient evaluations: 18
Iteration: 1, Func. Count: 14, Neg. LLF: 101.12166523768585
Iteration: 2, Func. Count: 30, Neg. LLF: 158.70243209588014
Iteration: 3, Func. Count: 44, Neg. LLF: 115.13455857431427
Iteration: 4, Func. Count: 58, Neg. LLF: 119.89724780364826
Iteration: 5, Func. Count: 72, Neg. LLF: 108.44185801602288
Iteration: 6, Func. Count: 86, Neg. LLF: 100.65824341300929
Iteration: 7, Func. Count: 100, Neg. LLF: 97.39232612875522
Iteration: 8, Func. Count: 114, Neg. LLF: 98.59248289696484
Iteration: 9, Func. Count: 128, Neg. LLF: 96.55589343699332
Iteration: 10, Func. Count: 141, Neg. LLF: 98.01273807689492
Iteration: 11, Func. Count: 155, Neg. LLF: 96.65506750283646
Iteration: 12, Func. Count: 169, Neg. LLF: 97.85356883906495
Iteration: 13, Func. Count: 183, Neg. LLF: 96.26037014806542
Iteration: 14, Func. Count: 196, Neg. LLF: 96.25132369485348
Iteration: 15, Func. Count: 209, Neg. LLF: 96.23097623540191
Iteration: 16, Func. Count: 222, Neg. LLF: 96.22945886704541
Iteration: 17, Func. Count: 235, Neg. LLF: 96.22915322201948
Iteration: 18, Func. Count: 248, Neg. LLF: 96.22913909143706
Iteration: 19, Func. Count: 261, Neg. LLF: 96.2291306638704
Iteration: 20, Func. Count: 273, Neg. LLF: 96.22913066383809
Optimization terminated successfully (Exit mode 0)
Current function value: 96.2291306638704
Iterations: 20
Function evaluations: 273
Gradient evaluations: 20
Iteration: 1, Func. Count: 11, Neg. LLF: 111.68440963099536
Iteration: 2, Func. Count: 23, Neg. LLF: 2296.91483406157
Iteration: 3, Func. Count: 34, Neg. LLF: 8153108.95376152
Iteration: 4, Func. Count: 45, Neg. LLF: 96.65013356066106
Iteration: 5, Func. Count: 55, Neg. LLF: 96.6118427778722
Iteration: 6, Func. Count: 65, Neg. LLF: 96.59151653306672
Iteration: 7, Func. Count: 75, Neg. LLF: 96.57336344874368
Iteration: 8, Func. Count: 85, Neg. LLF: 96.57307753483299
Iteration: 9, Func. Count: 95, Neg. LLF: 96.57307639442077
Iteration: 10, Func. Count: 104, Neg. LLF: 96.57307639441073
Optimization terminated successfully (Exit mode 0)
Current function value: 96.57307639442077
Iterations: 10
Function evaluations: 104
Gradient evaluations: 10
Iteration: 1, Func. Count: 12, Neg. LLF: 112.69002521471535
Iteration: 2, Func. Count: 27, Neg. LLF: 113.9622028801418
Iteration: 3, Func. Count: 40, Neg. LLF: 102.56522880016414
Iteration: 4, Func. Count: 52, Neg. LLF: 97.54052226798898
Iteration: 5, Func. Count: 63, Neg. LLF: 98.15244176630962
Iteration: 6, Func. Count: 76, Neg. LLF: 97.53349820025981
Iteration: 7, Func. Count: 87, Neg. LLF: 97.53333281135882
Iteration: 8, Func. Count: 98, Neg. LLF: 97.53326487805211
Iteration: 9, Func. Count: 109, Neg. LLF: 97.53325274517924
Iteration: 10, Func. Count: 120, Neg. LLF: 97.53325164203248
Iteration: 11, Func. Count: 130, Neg. LLF: 97.533251642125
Optimization terminated successfully (Exit mode 0)
Current function value: 97.53325164203248
Iterations: 11
Function evaluations: 130
Gradient evaluations: 11
Iteration: 1, Func. Count: 13, Neg. LLF: 142.9672507789656
Iteration: 2, Func. Count: 29, Neg. LLF: 99.70355006775212
Iteration: 3, Func. Count: 42, Neg. LLF: 101.3991238476475
Iteration: 4, Func. Count: 55, Neg. LLF: 97.84693690749936
Iteration: 5, Func. Count: 68, Neg. LLF: 98.40229018657519
Iteration: 6, Func. Count: 81, Neg. LLF: 97.0034937418297
Iteration: 7, Func. Count: 93, Neg. LLF: 96.91312220707174
Iteration: 8, Func. Count: 105, Neg. LLF: 96.85470035128135
Iteration: 9, Func. Count: 117, Neg. LLF: 96.84926888968936
Iteration: 10, Func. Count: 130, Neg. LLF: 96.82803548779081
Iteration: 11, Func. Count: 142, Neg. LLF: 96.82373189803602
Iteration: 12, Func. Count: 154, Neg. LLF: 96.82318687259544
Iteration: 13, Func. Count: 166, Neg. LLF: 96.82239944548262
Iteration: 14, Func. Count: 178, Neg. LLF: 96.81917685624387
Iteration: 15, Func. Count: 190, Neg. LLF: 96.81901116999944
Iteration: 16, Func. Count: 202, Neg. LLF: 96.81751526615612
Iteration: 17, Func. Count: 214, Neg. LLF: 96.83358790537233
Iteration: 18, Func. Count: 228, Neg. LLF: 96.82544377258635
Iteration: 19, Func. Count: 242, Neg. LLF: 96.81783473389591
Iteration: 20, Func. Count: 255, Neg. LLF: 96.81780607133956
Iteration: 21, Func. Count: 267, Neg. LLF: 96.81780410701803
Iteration: 22, Func. Count: 278, Neg. LLF: 96.81780410214368
Optimization terminated successfully (Exit mode 0)
Current function value: 96.81780410701803
Iterations: 23
Function evaluations: 278
Gradient evaluations: 22
Iteration: 1, Func. Count: 14, Neg. LLF: 126.05332369199232
Iteration: 2, Func. Count: 32, Neg. LLF: 103.81926840024641
Iteration: 3, Func. Count: 46, Neg. LLF: 109.55497085791454
Iteration: 4, Func. Count: 60, Neg. LLF: 97.40474899354291
Iteration: 5, Func. Count: 74, Neg. LLF: 97.27106467455884
Iteration: 6, Func. Count: 88, Neg. LLF: 96.92350343251834
Iteration: 7, Func. Count: 102, Neg. LLF: 98.20729461348412
Iteration: 8, Func. Count: 116, Neg. LLF: 99.83585578996131
Iteration: 9, Func. Count: 130, Neg. LLF: 99.70168833024238
Iteration: 10, Func. Count: 144, Neg. LLF: 95.99308437899398
Iteration: 11, Func. Count: 157, Neg. LLF: 96.03584736541481
Iteration: 12, Func. Count: 171, Neg. LLF: 97.62065894963072
Iteration: 13, Func. Count: 185, Neg. LLF: 95.71765139912137
Iteration: 14, Func. Count: 198, Neg. LLF: 97.30306475571558
Iteration: 15, Func. Count: 212, Neg. LLF: 95.85251592017526
Iteration: 16, Func. Count: 226, Neg. LLF: 96.30123745558406
Iteration: 17, Func. Count: 240, Neg. LLF: 95.55392571876658
Iteration: 18, Func. Count: 253, Neg. LLF: 95.53579856642807
Iteration: 19, Func. Count: 266, Neg. LLF: 95.53141753680971
Iteration: 20, Func. Count: 279, Neg. LLF: 95.52141485516009
Iteration: 21, Func. Count: 292, Neg. LLF: 95.5134799251865
Iteration: 22, Func. Count: 305, Neg. LLF: 95.49724154694867
Iteration: 23, Func. Count: 318, Neg. LLF: 95.49125680895969
Iteration: 24, Func. Count: 331, Neg. LLF: 95.49006502552758
Iteration: 25, Func. Count: 344, Neg. LLF: 95.48995608259202
Iteration: 26, Func. Count: 357, Neg. LLF: 95.48994877929242
Iteration: 27, Func. Count: 369, Neg. LLF: 95.48994877930966
Optimization terminated successfully (Exit mode 0)
Current function value: 95.48994877929242
Iterations: 27
Function evaluations: 369
Gradient evaluations: 27
Iteration: 1, Func. Count: 15, Neg. LLF: 99.66754003856575
Iteration: 2, Func. Count: 32, Neg. LLF: 3554561.557833682
Iteration: 3, Func. Count: 47, Neg. LLF: 176.92220537969496
Iteration: 4, Func. Count: 62, Neg. LLF: 127.96609760370666
Iteration: 5, Func. Count: 77, Neg. LLF: 96.35066563876669
Iteration: 6, Func. Count: 91, Neg. LLF: 116.7951493419583
Iteration: 7, Func. Count: 107, Neg. LLF: 100.96266446355523
Iteration: 8, Func. Count: 123, Neg. LLF: 96.93537440326423
Iteration: 9, Func. Count: 138, Neg. LLF: 95.9910559277765
Iteration: 10, Func. Count: 153, Neg. LLF: 95.56006893835195
Iteration: 11, Func. Count: 167, Neg. LLF: 95.54496114536256
Iteration: 12, Func. Count: 181, Neg. LLF: 95.521260553991
Iteration: 13, Func. Count: 195, Neg. LLF: 95.50577934660296
Iteration: 14, Func. Count: 209, Neg. LLF: 95.49980118089438
Iteration: 15, Func. Count: 223, Neg. LLF: 95.49276590693758
Iteration: 16, Func. Count: 237, Neg. LLF: 95.49052613810001
Iteration: 17, Func. Count: 251, Neg. LLF: 95.490056892131
Iteration: 18, Func. Count: 265, Neg. LLF: 95.48995485733755
Iteration: 19, Func. Count: 279, Neg. LLF: 95.48994917951401
Iteration: 20, Func. Count: 293, Neg. LLF: 95.48994857371285
Optimization terminated successfully (Exit mode 0)
Current function value: 95.48994857371285
Iterations: 20
Function evaluations: 293
Gradient evaluations: 20
Iteration: 1, Func. Count: 12, Neg. LLF: 112.60044260971576
Iteration: 2, Func. Count: 25, Neg. LLF: 1228404.8994088843
Iteration: 3, Func. Count: 37, Neg. LLF: 6351522.7218415495
Iteration: 4, Func. Count: 49, Neg. LLF: 96.78442583378946
Iteration: 5, Func. Count: 60, Neg. LLF: 96.56991950409504
Iteration: 6, Func. Count: 71, Neg. LLF: 96.52405462512608
Iteration: 7, Func. Count: 82, Neg. LLF: 96.57255714961084
Iteration: 8, Func. Count: 94, Neg. LLF: 96.51043353343941
Iteration: 9, Func. Count: 105, Neg. LLF: 96.49348056757233
Iteration: 10, Func. Count: 116, Neg. LLF: 96.49286288765275
Iteration: 11, Func. Count: 127, Neg. LLF: 96.49277534565543
Iteration: 12, Func. Count: 138, Neg. LLF: 96.49277166084376
Iteration: 13, Func. Count: 148, Neg. LLF: 96.49277161925936
Optimization terminated successfully (Exit mode 0)
Current function value: 96.49277166084376
Iterations: 13
Function evaluations: 148
Gradient evaluations: 13
Iteration: 1, Func. Count: 13, Neg. LLF: 112.8026750181032
Iteration: 2, Func. Count: 30, Neg. LLF: 134.20170958816632
Iteration: 3, Func. Count: 43, Neg. LLF: 97.06007189242786
Iteration: 4, Func. Count: 56, Neg. LLF: 100.3973250932701
Iteration: 5, Func. Count: 69, Neg. LLF: 97.91627297278829
Iteration: 6, Func. Count: 82, Neg. LLF: 96.42221277310917
Iteration: 7, Func. Count: 94, Neg. LLF: 96.36594643724925
Iteration: 8, Func. Count: 106, Neg. LLF: 97.01133398677412
Iteration: 9, Func. Count: 119, Neg. LLF: 96.30752736387906
Iteration: 10, Func. Count: 131, Neg. LLF: 96.28054875040401
Iteration: 11, Func. Count: 143, Neg. LLF: 96.26945349339347
Iteration: 12, Func. Count: 155, Neg. LLF: 96.24575624037804
Iteration: 13, Func. Count: 167, Neg. LLF: 96.21638490115787
Iteration: 14, Func. Count: 179, Neg. LLF: 96.18955101952427
Iteration: 15, Func. Count: 191, Neg. LLF: 96.16954561129425
Iteration: 16, Func. Count: 203, Neg. LLF: 96.15046161396833
Iteration: 17, Func. Count: 215, Neg. LLF: 96.12971949591602
Iteration: 18, Func. Count: 227, Neg. LLF: 96.11324866025986
Iteration: 19, Func. Count: 239, Neg. LLF: 96.10627977386393
Iteration: 20, Func. Count: 251, Neg. LLF: 96.10479241157236
Iteration: 21, Func. Count: 263, Neg. LLF: 96.10412712467102
Iteration: 22, Func. Count: 275, Neg. LLF: 96.10410320521214
Iteration: 23, Func. Count: 287, Neg. LLF: 96.10410230171058
Optimization terminated successfully (Exit mode 0)
Current function value: 96.10410230171058
Iterations: 23
Function evaluations: 287
Gradient evaluations: 23
Iteration: 1, Func. Count: 14, Neg. LLF: 122.17146989824928
Iteration: 2, Func. Count: 31, Neg. LLF: 116.53518944039007
Iteration: 3, Func. Count: 45, Neg. LLF: 107.05967662762767
Iteration: 4, Func. Count: 59, Neg. LLF: 97.13991384258578
Iteration: 5, Func. Count: 73, Neg. LLF: 97.64741165306091
Iteration: 6, Func. Count: 87, Neg. LLF: 98.89741522405696
Iteration: 7, Func. Count: 101, Neg. LLF: 96.48157192459782
Iteration: 8, Func. Count: 114, Neg. LLF: 96.40281307734195
Iteration: 9, Func. Count: 127, Neg. LLF: 96.41593542477895
Iteration: 10, Func. Count: 141, Neg. LLF: 96.37344643610027
Iteration: 11, Func. Count: 154, Neg. LLF: 96.36625032029052
Iteration: 12, Func. Count: 167, Neg. LLF: 96.36336065092131
Iteration: 13, Func. Count: 180, Neg. LLF: 96.35979697204314
Iteration: 14, Func. Count: 193, Neg. LLF: 96.35292786928493
Iteration: 15, Func. Count: 206, Neg. LLF: 96.27028788770161
Iteration: 16, Func. Count: 219, Neg. LLF: 96.21667005277492
Iteration: 17, Func. Count: 232, Neg. LLF: 96.14293667302395
Iteration: 18, Func. Count: 245, Neg. LLF: 96.1197332547593
Iteration: 19, Func. Count: 258, Neg. LLF: 96.11890669336294
Iteration: 20, Func. Count: 272, Neg. LLF: 96.11034091158618
Iteration: 21, Func. Count: 285, Neg. LLF: 96.1081409186631
Iteration: 22, Func. Count: 298, Neg. LLF: 96.1071986729171
Iteration: 23, Func. Count: 311, Neg. LLF: 96.1062550783784
Iteration: 24, Func. Count: 324, Neg. LLF: 96.1053503850608
Iteration: 25, Func. Count: 337, Neg. LLF: 96.10450984856323
Iteration: 26, Func. Count: 350, Neg. LLF: 96.10415454471398
Iteration: 27, Func. Count: 363, Neg. LLF: 96.1041050893705
Iteration: 28, Func. Count: 376, Neg. LLF: 96.10410225064795
Iteration: 29, Func. Count: 388, Neg. LLF: 96.10410232459856
Optimization terminated successfully (Exit mode 0)
Current function value: 96.10410225064795
Iterations: 29
Function evaluations: 388
Gradient evaluations: 29
Iteration: 1, Func. Count: 15, Neg. LLF: 118.07224831160451
Iteration: 2, Func. Count: 34, Neg. LLF: 143.4509911873147
Iteration: 3, Func. Count: 49, Neg. LLF: 102.84539883989548
Iteration: 4, Func. Count: 64, Neg. LLF: 97.41592637770853
Iteration: 5, Func. Count: 79, Neg. LLF: 101.75954927975519
Iteration: 6, Func. Count: 94, Neg. LLF: 99.32523471164842
Iteration: 7, Func. Count: 109, Neg. LLF: 103.28809821682965
Iteration: 8, Func. Count: 124, Neg. LLF: 95.65974754267184
Iteration: 9, Func. Count: 138, Neg. LLF: 95.40438335582246
Iteration: 10, Func. Count: 152, Neg. LLF: 98.21523839464939
Iteration: 11, Func. Count: 168, Neg. LLF: 95.2865778535158
Iteration: 12, Func. Count: 182, Neg. LLF: 95.27809071871957
Iteration: 13, Func. Count: 196, Neg. LLF: 95.27280553838253
Iteration: 14, Func. Count: 210, Neg. LLF: 95.26844789625818
Iteration: 15, Func. Count: 224, Neg. LLF: 95.26484168166705
Iteration: 16, Func. Count: 238, Neg. LLF: 95.2631877521793
Iteration: 17, Func. Count: 252, Neg. LLF: 95.26121190529595
Iteration: 18, Func. Count: 266, Neg. LLF: 95.2589296612231
Iteration: 19, Func. Count: 280, Neg. LLF: 95.25762145272012
Iteration: 20, Func. Count: 294, Neg. LLF: 95.25747093963382
Iteration: 21, Func. Count: 308, Neg. LLF: 95.2574528958522
Iteration: 22, Func. Count: 321, Neg. LLF: 95.25745289588474
Optimization terminated successfully (Exit mode 0)
Current function value: 95.2574528958522
Iterations: 22
Function evaluations: 321
Gradient evaluations: 22
Iteration: 1, Func. Count: 16, Neg. LLF: 100.89925370145426
Iteration: 2, Func. Count: 34, Neg. LLF: 2920073.7193790604
Iteration: 3, Func. Count: 50, Neg. LLF: 254.06306801964124
Iteration: 4, Func. Count: 66, Neg. LLF: 167.92261727253316
Iteration: 5, Func. Count: 82, Neg. LLF: 95.60125978266711
Iteration: 6, Func. Count: 97, Neg. LLF: 105.3398593568776
Iteration: 7, Func. Count: 114, Neg. LLF: 97.4925242520901
Iteration: 8, Func. Count: 131, Neg. LLF: 97.44813016814712
Iteration: 9, Func. Count: 148, Neg. LLF: 95.6459584109751
Iteration: 10, Func. Count: 164, Neg. LLF: 95.26592022013888
Iteration: 11, Func. Count: 179, Neg. LLF: 95.24834352567366
Iteration: 12, Func. Count: 194, Neg. LLF: 95.2440913804873
Iteration: 13, Func. Count: 209, Neg. LLF: 95.24288958776961
Iteration: 14, Func. Count: 224, Neg. LLF: 95.24271112159472
Iteration: 15, Func. Count: 239, Neg. LLF: 95.24265273284787
Iteration: 16, Func. Count: 254, Neg. LLF: 95.2426207767159
Iteration: 17, Func. Count: 269, Neg. LLF: 95.2426019008473
Iteration: 18, Func. Count: 284, Neg. LLF: 95.24258812053473
Iteration: 19, Func. Count: 299, Neg. LLF: 95.24258513704623
Iteration: 20, Func. Count: 313, Neg. LLF: 95.24258513701079
Optimization terminated successfully (Exit mode 0)
Current function value: 95.24258513704623
Iterations: 20
Function evaluations: 313
Gradient evaluations: 20
Iteration: 1, Func. Count: 6, Neg. LLF: 158.01757386981075
Iteration: 2, Func. Count: 14, Neg. LLF: 151.2156028335121
Iteration: 3, Func. Count: 21, Neg. LLF: 97.30860655844559
Iteration: 4, Func. Count: 26, Neg. LLF: 97.6741454923716
Iteration: 5, Func. Count: 33, Neg. LLF: 98.62353635400078
Iteration: 6, Func. Count: 39, Neg. LLF: 96.81279693550456
Iteration: 7, Func. Count: 44, Neg. LLF: 96.7577190170537
Iteration: 8, Func. Count: 49, Neg. LLF: 96.74108838949974
Iteration: 9, Func. Count: 54, Neg. LLF: 96.73147708587022
Iteration: 10, Func. Count: 59, Neg. LLF: 96.72936140809769
Iteration: 11, Func. Count: 64, Neg. LLF: 96.72914759850865
Iteration: 12, Func. Count: 69, Neg. LLF: 96.729141782977
Iteration: 13, Func. Count: 73, Neg. LLF: 96.72914178297582
Optimization terminated successfully (Exit mode 0)
Current function value: 96.729141782977
Iterations: 13
Function evaluations: 73
Gradient evaluations: 13
Iteration: 1, Func. Count: 5, Neg. LLF: 125.24182293830343
Iteration: 2, Func. Count: 12, Neg. LLF: 100.64262629329536
Iteration: 3, Func. Count: 17, Neg. LLF: 99.26444220844962
Iteration: 4, Func. Count: 21, Neg. LLF: 99.18457419533841
Iteration: 5, Func. Count: 25, Neg. LLF: 99.12789315599385
Iteration: 6, Func. Count: 29, Neg. LLF: 99.12521608093995
Iteration: 7, Func. Count: 33, Neg. LLF: 99.12517221152385
Iteration: 8, Func. Count: 36, Neg. LLF: 99.12517226857065
Optimization terminated successfully (Exit mode 0)
Current function value: 99.12517221152385
Iterations: 8
Function evaluations: 36
Gradient evaluations: 8
Iteration: 1, Func. Count: 6, Neg. LLF: 174.47125889270654
Iteration: 2, Func. Count: 14, Neg. LLF: 102.22015474974836
Iteration: 3, Func. Count: 20, Neg. LLF: 98.95171511138122
Iteration: 4, Func. Count: 26, Neg. LLF: 99.71345072691108
Iteration: 5, Func. Count: 32, Neg. LLF: 98.62401555265609
Iteration: 6, Func. Count: 37, Neg. LLF: 98.61384340323363
Iteration: 7, Func. Count: 42, Neg. LLF: 98.61776287167035
Iteration: 8, Func. Count: 48, Neg. LLF: 98.61194880779861
Iteration: 9, Func. Count: 53, Neg. LLF: 98.61194743468059
Iteration: 10, Func. Count: 57, Neg. LLF: 98.6119474346907
Optimization terminated successfully (Exit mode 0)
Current function value: 98.61194743468059
Iterations: 10
Function evaluations: 57
Gradient evaluations: 10
Iteration: 1, Func. Count: 7, Neg. LLF: 168.35298144268612
Iteration: 2, Func. Count: 17, Neg. LLF: 103.16582623052585
Iteration: 3, Func. Count: 25, Neg. LLF: 99.27612919063745
Iteration: 4, Func. Count: 32, Neg. LLF: 98.63000913154515
Iteration: 5, Func. Count: 38, Neg. LLF: 98.62811043958348
Iteration: 6, Func. Count: 44, Neg. LLF: 98.62781159101156
Iteration: 7, Func. Count: 50, Neg. LLF: 98.62759289611763
Iteration: 8, Func. Count: 56, Neg. LLF: 98.62673904686896
Iteration: 9, Func. Count: 62, Neg. LLF: 98.62396803923411
Iteration: 10, Func. Count: 68, Neg. LLF: 98.61645259439672
Iteration: 11, Func. Count: 74, Neg. LLF: 98.61544607698167
Iteration: 12, Func. Count: 80, Neg. LLF: 98.61203432923041
Iteration: 13, Func. Count: 86, Neg. LLF: 98.61196380820903
Iteration: 14, Func. Count: 92, Neg. LLF: 98.61197825030665
Iteration: 15, Func. Count: 99, Neg. LLF: 98.61194927645872
Iteration: 16, Func. Count: 105, Neg. LLF: 98.611951215253
Optimization terminated successfully (Exit mode 0)
Current function value: 98.61194904940497
Iterations: 16
Function evaluations: 106
Gradient evaluations: 16
Iteration: 1, Func. Count: 8, Neg. LLF: 131.98273715138595
Iteration: 2, Func. Count: 17, Neg. LLF: 99.04909756787212
Iteration: 3, Func. Count: 25, Neg. LLF: 98.8606503304513
Iteration: 4, Func. Count: 33, Neg. LLF: 100.16827439485877
Iteration: 5, Func. Count: 41, Neg. LLF: 98.64648877358678
Iteration: 6, Func. Count: 48, Neg. LLF: 98.64283009178514
Iteration: 7, Func. Count: 55, Neg. LLF: 98.64132608807753
Iteration: 8, Func. Count: 62, Neg. LLF: 98.64103965543306
Iteration: 9, Func. Count: 69, Neg. LLF: 98.64078636461305
Iteration: 10, Func. Count: 76, Neg. LLF: 98.63812098734925
Iteration: 11, Func. Count: 83, Neg. LLF: 98.62711518631673
Iteration: 12, Func. Count: 90, Neg. LLF: 98.62659538008353
Iteration: 13, Func. Count: 97, Neg. LLF: 98.62605094081876
Iteration: 14, Func. Count: 104, Neg. LLF: 98.62541096102824
Iteration: 15, Func. Count: 111, Neg. LLF: 98.6228681267762
Iteration: 16, Func. Count: 118, Neg. LLF: 98.61566811032453
Iteration: 17, Func. Count: 125, Neg. LLF: 31076580.642790925
Iteration: 18, Func. Count: 135, Neg. LLF: 98.97066433561672
Iteration: 19, Func. Count: 143, Neg. LLF: 98.64940871147796
Iteration: 20, Func. Count: 151, Neg. LLF: 98.6119548325362
Iteration: 21, Func. Count: 158, Neg. LLF: 98.61194744650521
Iteration: 22, Func. Count: 164, Neg. LLF: 98.61194744874562
Optimization terminated successfully (Exit mode 0)
Current function value: 98.61194744650521
Iterations: 23
Function evaluations: 164
Gradient evaluations: 22
Iteration: 1, Func. Count: 9, Neg. LLF: 130.52638633486018
Iteration: 2, Func. Count: 19, Neg. LLF: 98.97961410284314
Iteration: 3, Func. Count: 28, Neg. LLF: 99.12540562083709
Iteration: 4, Func. Count: 37, Neg. LLF: 98.94014735968241
Iteration: 5, Func. Count: 46, Neg. LLF: 98.65553847116723
Iteration: 6, Func. Count: 54, Neg. LLF: 98.65345973240952
Iteration: 7, Func. Count: 62, Neg. LLF: 98.64652025971763
Iteration: 8, Func. Count: 70, Neg. LLF: 98.63984889645856
Iteration: 9, Func. Count: 78, Neg. LLF: 98.63949692823444
Iteration: 10, Func. Count: 86, Neg. LLF: 98.63847725018009
Iteration: 11, Func. Count: 94, Neg. LLF: 98.63523579059166
Iteration: 12, Func. Count: 102, Neg. LLF: 98.63199780843532
Iteration: 13, Func. Count: 110, Neg. LLF: 98.62771939927873
Iteration: 14, Func. Count: 118, Neg. LLF: 98.62750510030347
Iteration: 15, Func. Count: 126, Neg. LLF: 98.62714253545231
Iteration: 16, Func. Count: 134, Neg. LLF: 98.62501993289617
Iteration: 17, Func. Count: 142, Neg. LLF: 98.6186311424276
Iteration: 18, Func. Count: 150, Neg. LLF: 98.61506274651043
Iteration: 19, Func. Count: 158, Neg. LLF: 98.61270208594448
Iteration: 20, Func. Count: 166, Neg. LLF: 98.61196180528214
Iteration: 21, Func. Count: 174, Neg. LLF: 98.61194759111468
Iteration: 22, Func. Count: 181, Neg. LLF: 98.61194759593714
Optimization terminated successfully (Exit mode 0)
Current function value: 98.61194759111468
Iterations: 22
Function evaluations: 181
Gradient evaluations: 22
Iteration: 1, Func. Count: 6, Neg. LLF: 124.44605113583407
Iteration: 2, Func. Count: 14, Neg. LLF: 101.08268670162418
Iteration: 3, Func. Count: 20, Neg. LLF: 99.26105087789249
Iteration: 4, Func. Count: 25, Neg. LLF: 99.12725972896838
Iteration: 5, Func. Count: 30, Neg. LLF: 99.12523923313469
Iteration: 6, Func. Count: 35, Neg. LLF: 99.12517218313404
Iteration: 7, Func. Count: 39, Neg. LLF: 99.12517227953755
Optimization terminated successfully (Exit mode 0)
Current function value: 99.12517218313404
Iterations: 7
Function evaluations: 39
Gradient evaluations: 7
Iteration: 1, Func. Count: 7, Neg. LLF: 174.17158260689132
Iteration: 2, Func. Count: 16, Neg. LLF: 101.72166864809058
Iteration: 3, Func. Count: 23, Neg. LLF: 98.9511883119922
Iteration: 4, Func. Count: 30, Neg. LLF: 99.65301226185235
Iteration: 5, Func. Count: 37, Neg. LLF: 98.62586015614511
Iteration: 6, Func. Count: 43, Neg. LLF: 98.6146450069688
Iteration: 7, Func. Count: 49, Neg. LLF: 98.61700000935187
Iteration: 8, Func. Count: 56, Neg. LLF: 98.61195110190809
Iteration: 9, Func. Count: 62, Neg. LLF: 98.61194745576304
Iteration: 10, Func. Count: 67, Neg. LLF: 98.61194745577167
Optimization terminated successfully (Exit mode 0)
Current function value: 98.61194745576304
Iterations: 10
Function evaluations: 67
Gradient evaluations: 10
Iteration: 1, Func. Count: 8, Neg. LLF: 168.90640373456688
Iteration: 2, Func. Count: 19, Neg. LLF: 102.989188229004
Iteration: 3, Func. Count: 28, Neg. LLF: 99.301537132339
Iteration: 4, Func. Count: 36, Neg. LLF: 98.630450026549
Iteration: 5, Func. Count: 43, Neg. LLF: 98.62806425139382
Iteration: 6, Func. Count: 50, Neg. LLF: 98.6274445967675
Iteration: 7, Func. Count: 57, Neg. LLF: 98.62730685311205
Iteration: 8, Func. Count: 64, Neg. LLF: 98.62666718857405
Iteration: 9, Func. Count: 71, Neg. LLF: 98.62578377286746
Iteration: 10, Func. Count: 78, Neg. LLF: 98.61919073945592
Iteration: 11, Func. Count: 85, Neg. LLF: 98.61558046534441
Iteration: 12, Func. Count: 92, Neg. LLF: 98.61243718140273
Iteration: 13, Func. Count: 99, Neg. LLF: 98.61232633210173
Iteration: 14, Func. Count: 107, Neg. LLF: 98.6119511460917
Iteration: 15, Func. Count: 114, Neg. LLF: 98.61194782019078
Iteration: 16, Func. Count: 121, Neg. LLF: 105.65255886542782
Optimization terminated successfully (Exit mode 0)
Current function value: 98.61194743222448
Iterations: 17
Function evaluations: 125
Gradient evaluations: 16
Iteration: 1, Func. Count: 9, Neg. LLF: 132.97181922469426
Iteration: 2, Func. Count: 19, Neg. LLF: 99.07534716297764
Iteration: 3, Func. Count: 28, Neg. LLF: 98.8286989099913
Iteration: 4, Func. Count: 37, Neg. LLF: 102.5573507687515
Iteration: 5, Func. Count: 46, Neg. LLF: 98.64222704553413
Iteration: 6, Func. Count: 54, Neg. LLF: 98.64167220431797
Iteration: 7, Func. Count: 62, Neg. LLF: 98.64121228143102
Iteration: 8, Func. Count: 70, Neg. LLF: 98.64102256172562
Iteration: 9, Func. Count: 78, Neg. LLF: 98.63872462137074
Iteration: 10, Func. Count: 86, Neg. LLF: 98.6330302521496
Iteration: 11, Func. Count: 94, Neg. LLF: 98.63049489168881
Iteration: 12, Func. Count: 102, Neg. LLF: 98.6269313253274
Iteration: 13, Func. Count: 110, Neg. LLF: 98.62601136939352
Iteration: 14, Func. Count: 118, Neg. LLF: 98.62554894217725
Iteration: 15, Func. Count: 126, Neg. LLF: 98.62482185278513
Iteration: 16, Func. Count: 134, Neg. LLF: 98.61866204645557
Iteration: 17, Func. Count: 142, Neg. LLF: 98.61505980097728
Iteration: 18, Func. Count: 150, Neg. LLF: 98.65655022698229
Iteration: 19, Func. Count: 160, Neg. LLF: 98.61379349997328
Iteration: 20, Func. Count: 168, Neg. LLF: 128.6440865632519
Iteration: 21, Func. Count: 180, Neg. LLF: 98.61895164813824
Iteration: 22, Func. Count: 189, Neg. LLF: 98.61323777865901
Iteration: 23, Func. Count: 197, Neg. LLF: 98.61197849027172
Iteration: 24, Func. Count: 205, Neg. LLF: 98.61194846396518
Iteration: 25, Func. Count: 213, Neg. LLF: 98.61194743145629
Iteration: 26, Func. Count: 220, Neg. LLF: 98.61194743371792
Optimization terminated successfully (Exit mode 0)
Current function value: 98.61194743145629
Iterations: 27
Function evaluations: 220
Gradient evaluations: 26
Iteration: 1, Func. Count: 10, Neg. LLF: 129.55372593125458
Iteration: 2, Func. Count: 21, Neg. LLF: 98.96917340842747
Iteration: 3, Func. Count: 31, Neg. LLF: 99.17438096962088
Iteration: 4, Func. Count: 41, Neg. LLF: 98.92775440484328
Iteration: 5, Func. Count: 51, Neg. LLF: 98.66023976773381
Iteration: 6, Func. Count: 60, Neg. LLF: 98.65912527917217
Iteration: 7, Func. Count: 69, Neg. LLF: 98.64570108258023
Iteration: 8, Func. Count: 78, Neg. LLF: 98.64168072988056
Iteration: 9, Func. Count: 87, Neg. LLF: 98.64157861474102
Iteration: 10, Func. Count: 96, Neg. LLF: 98.6414417986162
Iteration: 11, Func. Count: 105, Neg. LLF: 98.63979623015109
Iteration: 12, Func. Count: 114, Neg. LLF: 98.63324133574251
Iteration: 13, Func. Count: 123, Neg. LLF: 98.63180603810041
Iteration: 14, Func. Count: 132, Neg. LLF: 98.62910889889898
Iteration: 15, Func. Count: 141, Neg. LLF: 98.62741737573
Iteration: 16, Func. Count: 150, Neg. LLF: 98.62719467588006
Iteration: 17, Func. Count: 159, Neg. LLF: 98.62697590021519
Iteration: 18, Func. Count: 168, Neg. LLF: 98.62901639463946
Iteration: 19, Func. Count: 178, Neg. LLF: 98.62558230979496
Iteration: 20, Func. Count: 187, Neg. LLF: 98.66043244170497
Iteration: 21, Func. Count: 197, Neg. LLF: 98.64464403274269
Iteration: 22, Func. Count: 207, Neg. LLF: 98.61516502395324
Iteration: 23, Func. Count: 216, Neg. LLF: 100.00221457922373
Iteration: 24, Func. Count: 227, Neg. LLF: 30910474.84103926
Iteration: 25, Func. Count: 239, Neg. LLF: 98.65869110613048
Iteration: 26, Func. Count: 249, Neg. LLF: 98.61539838713104
Iteration: 27, Func. Count: 259, Neg. LLF: 98.61212418196234
Iteration: 28, Func. Count: 268, Neg. LLF: 98.61194758602326
Iteration: 29, Func. Count: 276, Neg. LLF: 98.61194759009415
Optimization terminated successfully (Exit mode 0)
Current function value: 98.61194758602326
Iterations: 30
Function evaluations: 276
Gradient evaluations: 29
Iteration: 1, Func. Count: 7, Neg. LLF: 133.48929912922463
Iteration: 2, Func. Count: 16, Neg. LLF: 133502542.69685383
Iteration: 3, Func. Count: 23, Neg. LLF: 7216638.372329832
Iteration: 4, Func. Count: 30, Neg. LLF: 97.5683896054371
Iteration: 5, Func. Count: 36, Neg. LLF: 97.53716422518025
Iteration: 6, Func. Count: 42, Neg. LLF: 97.5365250882615
Iteration: 7, Func. Count: 48, Neg. LLF: 97.53652434297973
Optimization terminated successfully (Exit mode 0)
Current function value: 97.53652434297973
Iterations: 7
Function evaluations: 48
Gradient evaluations: 7
Iteration: 1, Func. Count: 8, Neg. LLF: 173.7138135546159
Iteration: 2, Func. Count: 18, Neg. LLF: 101.28493857394216
Iteration: 3, Func. Count: 26, Neg. LLF: 98.9431447076625
Iteration: 4, Func. Count: 34, Neg. LLF: 99.85027556734049
Iteration: 5, Func. Count: 42, Neg. LLF: 98.62726564183416
Iteration: 6, Func. Count: 49, Neg. LLF: 98.61640867362397
Iteration: 7, Func. Count: 56, Neg. LLF: 98.61578104446328
Iteration: 8, Func. Count: 64, Neg. LLF: 98.61195936340954
Iteration: 9, Func. Count: 71, Neg. LLF: 98.61194752233182
Iteration: 10, Func. Count: 77, Neg. LLF: 98.6119475223031
Optimization terminated successfully (Exit mode 0)
Current function value: 98.61194752233182
Iterations: 10
Function evaluations: 77
Gradient evaluations: 10
Iteration: 1, Func. Count: 9, Neg. LLF: 168.45691666456085
Iteration: 2, Func. Count: 21, Neg. LLF: 102.40488698483192
Iteration: 3, Func. Count: 31, Neg. LLF: 99.28220414839222
Iteration: 4, Func. Count: 40, Neg. LLF: 98.63053694337643
Iteration: 5, Func. Count: 48, Neg. LLF: 98.62802860642611
Iteration: 6, Func. Count: 56, Neg. LLF: 98.62731710797199
Iteration: 7, Func. Count: 64, Neg. LLF: 98.62722236652434
Iteration: 8, Func. Count: 72, Neg. LLF: 98.62660276080192
Iteration: 9, Func. Count: 80, Neg. LLF: 98.62423198853239
Iteration: 10, Func. Count: 88, Neg. LLF: 98.61743908409329
Iteration: 11, Func. Count: 96, Neg. LLF: 98.61520319854348
Iteration: 12, Func. Count: 104, Neg. LLF: 98.61327929022087
Iteration: 13, Func. Count: 112, Neg. LLF: 98.61217616125124
Iteration: 14, Func. Count: 120, Neg. LLF: 98.61990184171837
Iteration: 15, Func. Count: 130, Neg. LLF: 98.6119827585388
Iteration: 16, Func. Count: 138, Neg. LLF: 98.61382922165762
Optimization terminated successfully (Exit mode 0)
Current function value: 98.61198199776149
Iterations: 16
Function evaluations: 140
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 100.279870482487
Iteration: 2, Func. Count: 23, Neg. LLF: 117.36863767640895
Iteration: 3, Func. Count: 33, Neg. LLF: 111.9999186178571
Iteration: 4, Func. Count: 43, Neg. LLF: 103.40322462811805
Iteration: 5, Func. Count: 53, Neg. LLF: 97.72686572046346
Iteration: 6, Func. Count: 62, Neg. LLF: 96.9881817632404
Iteration: 7, Func. Count: 71, Neg. LLF: 97.01942955601592
Iteration: 8, Func. Count: 81, Neg. LLF: 96.73276193494361
Iteration: 9, Func. Count: 90, Neg. LLF: 96.71309756727163
Iteration: 10, Func. Count: 99, Neg. LLF: 96.70782812808916
Iteration: 11, Func. Count: 108, Neg. LLF: 96.70621437020081
Iteration: 12, Func. Count: 117, Neg. LLF: 96.70330203569719
Iteration: 13, Func. Count: 126, Neg. LLF: 96.70142142234717
Iteration: 14, Func. Count: 135, Neg. LLF: 96.70099950189848
Iteration: 15, Func. Count: 144, Neg. LLF: 96.70096491890665
Iteration: 16, Func. Count: 153, Neg. LLF: 96.70096270351304
Iteration: 17, Func. Count: 161, Neg. LLF: 96.70096270352929
Optimization terminated successfully (Exit mode 0)
Current function value: 96.70096270351304
Iterations: 17
Function evaluations: 161
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 104.46161449863529
Iteration: 2, Func. Count: 24, Neg. LLF: 104.66536771101318
Iteration: 3, Func. Count: 35, Neg. LLF: 115.31124460064412
Iteration: 4, Func. Count: 46, Neg. LLF: 103.164818903805
Iteration: 5, Func. Count: 57, Neg. LLF: 97.4891991492714
Iteration: 6, Func. Count: 67, Neg. LLF: 98.3215507976015
Iteration: 7, Func. Count: 78, Neg. LLF: 99.42762325550369
Iteration: 8, Func. Count: 89, Neg. LLF: 96.7390330911027
Iteration: 9, Func. Count: 99, Neg. LLF: 96.71818148075789
Iteration: 10, Func. Count: 109, Neg. LLF: 96.70326604440142
Iteration: 11, Func. Count: 119, Neg. LLF: 96.70135390074421
Iteration: 12, Func. Count: 129, Neg. LLF: 96.70121985253937
Iteration: 13, Func. Count: 139, Neg. LLF: 96.7010728800265
Iteration: 14, Func. Count: 149, Neg. LLF: 96.70098090882333
Iteration: 15, Func. Count: 159, Neg. LLF: 96.7009638779828
Iteration: 16, Func. Count: 169, Neg. LLF: 96.70096269910054
Iteration: 17, Func. Count: 178, Neg. LLF: 96.70096275929934
Optimization terminated successfully (Exit mode 0)
Current function value: 96.70096269910054
Iterations: 17
Function evaluations: 178
Gradient evaluations: 17
Iteration: 1, Func. Count: 8, Neg. LLF: 137.89401514799633
Iteration: 2, Func. Count: 18, Neg. LLF: 159282733.09301728
Iteration: 3, Func. Count: 26, Neg. LLF: 7214057.361509875
Iteration: 4, Func. Count: 34, Neg. LLF: 97.61553017190595
Iteration: 5, Func. Count: 41, Neg. LLF: 97.53764949877728
Iteration: 6, Func. Count: 48, Neg. LLF: 97.53652691945341
Iteration: 7, Func. Count: 55, Neg. LLF: 97.53652482322698
Iteration: 8, Func. Count: 61, Neg. LLF: 97.53652490856236
Optimization terminated successfully (Exit mode 0)
Current function value: 97.53652482322698
Iterations: 8
Function evaluations: 61
Gradient evaluations: 8
Iteration: 1, Func. Count: 9, Neg. LLF: 174.06288074723372
Iteration: 2, Func. Count: 20, Neg. LLF: 101.53668148502317
Iteration: 3, Func. Count: 29, Neg. LLF: 98.93301351076578
Iteration: 4, Func. Count: 38, Neg. LLF: 100.10885124218103
Iteration: 5, Func. Count: 47, Neg. LLF: 98.6250006672247
Iteration: 6, Func. Count: 55, Neg. LLF: 98.61535917549637
Iteration: 7, Func. Count: 63, Neg. LLF: 98.61575717523269
Iteration: 8, Func. Count: 72, Neg. LLF: 98.61195618558668
Iteration: 9, Func. Count: 80, Neg. LLF: 98.6119474675769
Iteration: 10, Func. Count: 87, Neg. LLF: 98.61194746758808
Optimization terminated successfully (Exit mode 0)
Current function value: 98.6119474675769
Iterations: 10
Function evaluations: 87
Gradient evaluations: 10
Iteration: 1, Func. Count: 10, Neg. LLF: 168.4068401634606
Iteration: 2, Func. Count: 23, Neg. LLF: 102.48028736310673
Iteration: 3, Func. Count: 34, Neg. LLF: 99.25295025375219
Iteration: 4, Func. Count: 44, Neg. LLF: 98.63003076393997
Iteration: 5, Func. Count: 53, Neg. LLF: 98.62809570248729
Iteration: 6, Func. Count: 62, Neg. LLF: 98.62755589740014
Iteration: 7, Func. Count: 71, Neg. LLF: 98.62737301060369
Iteration: 8, Func. Count: 80, Neg. LLF: 98.62678113716017
Iteration: 9, Func. Count: 89, Neg. LLF: 98.62536549438617
Iteration: 10, Func. Count: 98, Neg. LLF: 98.6175896922643
Iteration: 11, Func. Count: 107, Neg. LLF: 98.61548836162268
Iteration: 12, Func. Count: 116, Neg. LLF: 98.61227363640637
Iteration: 13, Func. Count: 125, Neg. LLF: 98.61218911264211
Iteration: 14, Func. Count: 135, Neg. LLF: 98.61195498863867
Iteration: 15, Func. Count: 144, Neg. LLF: 98.61195434546171
Iteration: 16, Func. Count: 154, Neg. LLF: 98.6119534473505
Optimization terminated successfully (Exit mode 0)
Current function value: 98.61195265277424
Iterations: 16
Function evaluations: 155
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 99.36386787891826
Iteration: 2, Func. Count: 25, Neg. LLF: 115.6069097227246
Iteration: 3, Func. Count: 36, Neg. LLF: 115.85909515208205
Iteration: 4, Func. Count: 47, Neg. LLF: 104.43977127276801
Iteration: 5, Func. Count: 58, Neg. LLF: 97.94650689435448
Iteration: 6, Func. Count: 68, Neg. LLF: 96.99965991399367
Iteration: 7, Func. Count: 78, Neg. LLF: 97.76371366300222
Iteration: 8, Func. Count: 89, Neg. LLF: 96.74058867510726
Iteration: 9, Func. Count: 99, Neg. LLF: 96.72095166128433
Iteration: 10, Func. Count: 109, Neg. LLF: 96.71226856055482
Iteration: 11, Func. Count: 119, Neg. LLF: 96.70899313654566
Iteration: 12, Func. Count: 129, Neg. LLF: 96.70633216781033
Iteration: 13, Func. Count: 139, Neg. LLF: 96.70309040608757
Iteration: 14, Func. Count: 149, Neg. LLF: 96.70117991450233
Iteration: 15, Func. Count: 159, Neg. LLF: 96.7009721541713
Iteration: 16, Func. Count: 169, Neg. LLF: 96.700963165678
Iteration: 17, Func. Count: 178, Neg. LLF: 96.70096316566747
Optimization terminated successfully (Exit mode 0)
Current function value: 96.700963165678
Iterations: 17
Function evaluations: 178
Gradient evaluations: 17
Iteration: 1, Func. Count: 12, Neg. LLF: 105.19838986874664
Iteration: 2, Func. Count: 26, Neg. LLF: 104.11080861707195
Iteration: 3, Func. Count: 38, Neg. LLF: 115.1770230728435
Iteration: 4, Func. Count: 50, Neg. LLF: 102.75523180548811
Iteration: 5, Func. Count: 62, Neg. LLF: 97.42015725601354
Iteration: 6, Func. Count: 73, Neg. LLF: 96.85034789184606
Iteration: 7, Func. Count: 84, Neg. LLF: 96.80863669264822
Iteration: 8, Func. Count: 95, Neg. LLF: 97.54465597437418
Iteration: 9, Func. Count: 107, Neg. LLF: 96.72829135204326
Iteration: 10, Func. Count: 118, Neg. LLF: 96.7055929474231
Iteration: 11, Func. Count: 129, Neg. LLF: 96.70249640406378
Iteration: 12, Func. Count: 140, Neg. LLF: 96.70178714290282
Iteration: 13, Func. Count: 151, Neg. LLF: 96.7015192837003
Iteration: 14, Func. Count: 162, Neg. LLF: 96.70096527492437
Iteration: 15, Func. Count: 173, Neg. LLF: 96.70096275179722
Iteration: 16, Func. Count: 183, Neg. LLF: 96.70096281196288
Optimization terminated successfully (Exit mode 0)
Current function value: 96.70096275179722
Iterations: 16
Function evaluations: 183
Gradient evaluations: 16
Iteration: 1, Func. Count: 5, Neg. LLF: 154.45720039111868
Iteration: 2, Func. Count: 12, Neg. LLF: 140.7938148092157
Iteration: 3, Func. Count: 18, Neg. LLF: 99.18690011142675
Iteration: 4, Func. Count: 22, Neg. LLF: 99.13659882109384
Iteration: 5, Func. Count: 26, Neg. LLF: 99.12802554612034
Iteration: 6, Func. Count: 30, Neg. LLF: 99.1253332219075
Iteration: 7, Func. Count: 34, Neg. LLF: 99.12517780226885
Iteration: 8, Func. Count: 38, Neg. LLF: 99.12517225373513
Iteration: 9, Func. Count: 41, Neg. LLF: 99.12517227012262
Optimization terminated successfully (Exit mode 0)
Current function value: 99.12517225373513
Iterations: 9
Function evaluations: 41
Gradient evaluations: 9
Iteration: 1, Func. Count: 6, Neg. LLF: 175.19954921196114
Iteration: 2, Func. Count: 14, Neg. LLF: 103.79271217551339
Iteration: 3, Func. Count: 21, Neg. LLF: 99.13188052029619
Iteration: 4, Func. Count: 27, Neg. LLF: 98.81466974715343
Iteration: 5, Func. Count: 33, Neg. LLF: 98.631249194135
Iteration: 6, Func. Count: 38, Neg. LLF: 98.63250598107899
Iteration: 7, Func. Count: 44, Neg. LLF: 98.61195038642283
Iteration: 8, Func. Count: 49, Neg. LLF: 98.61194754873873
Iteration: 9, Func. Count: 53, Neg. LLF: 98.61194754842242
Optimization terminated successfully (Exit mode 0)
Current function value: 98.61194754873873
Iterations: 9
Function evaluations: 53
Gradient evaluations: 9
Iteration: 1, Func. Count: 7, Neg. LLF: 169.1472519670225
Iteration: 2, Func. Count: 17, Neg. LLF: 104.422455534486
Iteration: 3, Func. Count: 25, Neg. LLF: 99.37145491627108
Iteration: 4, Func. Count: 32, Neg. LLF: 98.63268065371886
Iteration: 5, Func. Count: 38, Neg. LLF: 98.62850994113539
Iteration: 6, Func. Count: 44, Neg. LLF: 98.62792693615785
Iteration: 7, Func. Count: 50, Neg. LLF: 98.62786358103773
Iteration: 8, Func. Count: 56, Neg. LLF: 98.6275415389248
Iteration: 9, Func. Count: 62, Neg. LLF: 98.62673070555388
Iteration: 10, Func. Count: 68, Neg. LLF: 98.62407244424989
Iteration: 11, Func. Count: 74, Neg. LLF: 98.61948846037619
Iteration: 12, Func. Count: 80, Neg. LLF: 98.61655670159872
Iteration: 13, Func. Count: 86, Neg. LLF: 98.61414868859114
Iteration: 14, Func. Count: 92, Neg. LLF: 98.61201559178059
Iteration: 15, Func. Count: 98, Neg. LLF: 98.61196145227576
Iteration: 16, Func. Count: 104, Neg. LLF: 330.0043494713769
Iteration: 17, Func. Count: 114, Neg. LLF: 98.61251338856555
Iteration: 18, Func. Count: 121, Neg. LLF: 98.61194743110873
Iteration: 19, Func. Count: 126, Neg. LLF: 98.61194743183809
Optimization terminated successfully (Exit mode 0)
Current function value: 98.61194743110873
Iterations: 20
Function evaluations: 126
Gradient evaluations: 19
Iteration: 1, Func. Count: 8, Neg. LLF: 130.9184060172266
Iteration: 2, Func. Count: 17, Neg. LLF: 99.04020519996462
Iteration: 3, Func. Count: 25, Neg. LLF: 98.85366478115117
Iteration: 4, Func. Count: 33, Neg. LLF: 102.31387728828894
Iteration: 5, Func. Count: 41, Neg. LLF: 98.64661095980878
Iteration: 6, Func. Count: 48, Neg. LLF: 98.64211812683118
Iteration: 7, Func. Count: 55, Neg. LLF: 98.64184321732439
Iteration: 8, Func. Count: 62, Neg. LLF: 98.64178510600358
Iteration: 9, Func. Count: 69, Neg. LLF: 98.64165516855118
Iteration: 10, Func. Count: 76, Neg. LLF: 98.6397520215575
Iteration: 11, Func. Count: 83, Neg. LLF: 98.63292218583646
Iteration: 12, Func. Count: 90, Neg. LLF: 98.63014798301931
Iteration: 13, Func. Count: 97, Neg. LLF: 98.62650841609754
Iteration: 14, Func. Count: 104, Neg. LLF: 98.62600893536205
Iteration: 15, Func. Count: 111, Neg. LLF: 98.62529978700765
Iteration: 16, Func. Count: 118, Neg. LLF: 98.62485869508906
Iteration: 17, Func. Count: 125, Neg. LLF: 98.62085427364619
Iteration: 18, Func. Count: 132, Neg. LLF: 98.61356866969645
Iteration: 19, Func. Count: 139, Neg. LLF: 30886161.439201877
Iteration: 20, Func. Count: 149, Neg. LLF: 98.61842314671256
Iteration: 21, Func. Count: 157, Neg. LLF: 98.61220049859602
Iteration: 22, Func. Count: 165, Neg. LLF: 98.61200587777779
Iteration: 23, Func. Count: 172, Neg. LLF: 98.61194743584166
Optimization terminated successfully (Exit mode 0)
Current function value: 98.61194743362567
Iterations: 24
Function evaluations: 172
Gradient evaluations: 23
Iteration: 1, Func. Count: 9, Neg. LLF: 130.13335614449124
Iteration: 2, Func. Count: 19, Neg. LLF: 98.97277553763459
Iteration: 3, Func. Count: 28, Neg. LLF: 99.12301558691323
Iteration: 4, Func. Count: 37, Neg. LLF: 99.3145356443333
Iteration: 5, Func. Count: 46, Neg. LLF: 98.65364086131837
Iteration: 6, Func. Count: 54, Neg. LLF: 98.6514681811684
Iteration: 7, Func. Count: 62, Neg. LLF: 98.64658985329122
Iteration: 8, Func. Count: 70, Neg. LLF: 98.64211376673573
Iteration: 9, Func. Count: 78, Neg. LLF: 98.64116342737653
Iteration: 10, Func. Count: 86, Neg. LLF: 98.64091912384605
Iteration: 11, Func. Count: 94, Neg. LLF: 98.64065930507648
Iteration: 12, Func. Count: 102, Neg. LLF: 98.6384523969907
Iteration: 13, Func. Count: 110, Neg. LLF: 98.62787158539285
Iteration: 14, Func. Count: 118, Neg. LLF: 98.6273351833752
Iteration: 15, Func. Count: 126, Neg. LLF: 98.62669904363234
Iteration: 16, Func. Count: 134, Neg. LLF: 98.62611091419961
Iteration: 17, Func. Count: 142, Neg. LLF: 98.6207704865227
Iteration: 18, Func. Count: 150, Neg. LLF: 98.6158581123743
Iteration: 19, Func. Count: 158, Neg. LLF: 98.62411281282027
Iteration: 20, Func. Count: 167, Neg. LLF: 32010894.397392426
Iteration: 21, Func. Count: 179, Neg. LLF: 99.6480662044437
Iteration: 22, Func. Count: 189, Neg. LLF: 98.61308758398549
Iteration: 23, Func. Count: 198, Neg. LLF: 98.6119474498861
Iteration: 24, Func. Count: 205, Neg. LLF: 98.61194745427657
Optimization terminated successfully (Exit mode 0)
Current function value: 98.6119474498861
Iterations: 25
Function evaluations: 205
Gradient evaluations: 24
Iteration: 1, Func. Count: 6, Neg. LLF: 155.09806901929883
Iteration: 2, Func. Count: 14, Neg. LLF: 151.7330210170521
Iteration: 3, Func. Count: 21, Neg. LLF: 98.28760095714047
Iteration: 4, Func. Count: 26, Neg. LLF: 98.80363286522501
Iteration: 5, Func. Count: 33, Neg. LLF: 99.31342895594523
Iteration: 6, Func. Count: 39, Neg. LLF: 97.87523829136046
Iteration: 7, Func. Count: 44, Neg. LLF: 97.82487644717551
Iteration: 8, Func. Count: 49, Neg. LLF: 97.79162127915603
Iteration: 9, Func. Count: 54, Neg. LLF: 97.78246740389588
Iteration: 10, Func. Count: 59, Neg. LLF: 97.78094267536552
Iteration: 11, Func. Count: 64, Neg. LLF: 97.78085538093997
Iteration: 12, Func. Count: 69, Neg. LLF: 97.78085392078479
Iteration: 13, Func. Count: 73, Neg. LLF: 97.78085392078901
Optimization terminated successfully (Exit mode 0)
Current function value: 97.78085392078479
Iterations: 13
Function evaluations: 73
Gradient evaluations: 13
Iteration: 1, Func. Count: 7, Neg. LLF: 106.83516511188688
Iteration: 2, Func. Count: 15, Neg. LLF: 103.4852608908251
Iteration: 3, Func. Count: 22, Neg. LLF: 108.96269570403669
Iteration: 4, Func. Count: 29, Neg. LLF: 98.60768099314049
Iteration: 5, Func. Count: 35, Neg. LLF: 98.98711985161361
Iteration: 6, Func. Count: 42, Neg. LLF: 98.85158173647363
Iteration: 7, Func. Count: 49, Neg. LLF: 98.69727193050984
Iteration: 8, Func. Count: 56, Neg. LLF: 98.52152260806454
Iteration: 9, Func. Count: 63, Neg. LLF: 98.36584412326062
Iteration: 10, Func. Count: 70, Neg. LLF: 98.36112815297575
Iteration: 11, Func. Count: 76, Neg. LLF: 98.36111983132216
Iteration: 12, Func. Count: 81, Neg. LLF: 98.36111983119727
Optimization terminated successfully (Exit mode 0)
Current function value: 98.36111983132216
Iterations: 12
Function evaluations: 81
Gradient evaluations: 12
Iteration: 1, Func. Count: 8, Neg. LLF: 106.46067366509874
Iteration: 2, Func. Count: 17, Neg. LLF: 102.34593142268632
Iteration: 3, Func. Count: 25, Neg. LLF: 122.33037519752767
Iteration: 4, Func. Count: 33, Neg. LLF: 97.95540928234183
Iteration: 5, Func. Count: 40, Neg. LLF: 97.44649906455227
Iteration: 6, Func. Count: 47, Neg. LLF: 97.36628609541613
Iteration: 7, Func. Count: 54, Neg. LLF: 97.31345763898973
Iteration: 8, Func. Count: 61, Neg. LLF: 97.3078374378442
Iteration: 9, Func. Count: 68, Neg. LLF: 97.3069605231926
Iteration: 10, Func. Count: 75, Neg. LLF: 97.30568606129223
Iteration: 11, Func. Count: 82, Neg. LLF: 97.30556579048518
Iteration: 12, Func. Count: 89, Neg. LLF: 97.30555458310067
Iteration: 13, Func. Count: 95, Neg. LLF: 97.30555458301383
Optimization terminated successfully (Exit mode 0)
Current function value: 97.30555458310067
Iterations: 13
Function evaluations: 95
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 108.0625154947471
Iteration: 2, Func. Count: 19, Neg. LLF: 101.80782380017321
Iteration: 3, Func. Count: 28, Neg. LLF: 761.2771360245082
Iteration: 4, Func. Count: 37, Neg. LLF: 100.76430855382891
Iteration: 5, Func. Count: 46, Neg. LLF: 99.52660607160031
Iteration: 6, Func. Count: 55, Neg. LLF: 101.29924045612435
Iteration: 7, Func. Count: 64, Neg. LLF: 97.89762109080884
Iteration: 8, Func. Count: 73, Neg. LLF: 97.09937847699722
Iteration: 9, Func. Count: 81, Neg. LLF: 96.93695701390038
Iteration: 10, Func. Count: 89, Neg. LLF: 96.91187398978236
Iteration: 11, Func. Count: 97, Neg. LLF: 96.90536690850391
Iteration: 12, Func. Count: 105, Neg. LLF: 96.90384225226586
Iteration: 13, Func. Count: 113, Neg. LLF: 96.90378086418369
Iteration: 14, Func. Count: 121, Neg. LLF: 96.90377599437966
Iteration: 15, Func. Count: 128, Neg. LLF: 96.90377599439786
Optimization terminated successfully (Exit mode 0)
Current function value: 96.90377599437966
Iterations: 15
Function evaluations: 128
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 109.22826965838021
Iteration: 2, Func. Count: 21, Neg. LLF: 101.75780188495123
Iteration: 3, Func. Count: 31, Neg. LLF: 193.2309236993371
Iteration: 4, Func. Count: 41, Neg. LLF: 99.86479100849485
Iteration: 5, Func. Count: 51, Neg. LLF: 97.60707045876984
Iteration: 6, Func. Count: 60, Neg. LLF: 97.43168020157057
Iteration: 7, Func. Count: 69, Neg. LLF: 97.33073462166703
Iteration: 8, Func. Count: 78, Neg. LLF: 97.02825538318157
Iteration: 9, Func. Count: 87, Neg. LLF: 96.91500411483321
Iteration: 10, Func. Count: 96, Neg. LLF: 96.90456034113431
Iteration: 11, Func. Count: 105, Neg. LLF: 96.90387056654238
Iteration: 12, Func. Count: 114, Neg. LLF: 96.90381831650998
Iteration: 13, Func. Count: 123, Neg. LLF: 96.90377640247404
Iteration: 14, Func. Count: 131, Neg. LLF: 96.90377642633813
Optimization terminated successfully (Exit mode 0)
Current function value: 96.90377640247404
Iterations: 14
Function evaluations: 131
Gradient evaluations: 14
Iteration: 1, Func. Count: 7, Neg. LLF: 154.77513802122067
Iteration: 2, Func. Count: 16, Neg. LLF: 146.65200618486304
Iteration: 3, Func. Count: 23, Neg. LLF: 98.19173665701987
Iteration: 4, Func. Count: 29, Neg. LLF: 99.93208972806588
Iteration: 5, Func. Count: 37, Neg. LLF: 99.89192939384412
Iteration: 6, Func. Count: 44, Neg. LLF: 97.85219272881862
Iteration: 7, Func. Count: 50, Neg. LLF: 97.79707079145052
Iteration: 8, Func. Count: 56, Neg. LLF: 97.7832200225741
Iteration: 9, Func. Count: 62, Neg. LLF: 97.78110097685412
Iteration: 10, Func. Count: 68, Neg. LLF: 97.78087172083164
Iteration: 11, Func. Count: 74, Neg. LLF: 97.7808546507365
Iteration: 12, Func. Count: 80, Neg. LLF: 97.78085387807982
Optimization terminated successfully (Exit mode 0)
Current function value: 97.78085387807982
Iterations: 12
Function evaluations: 80
Gradient evaluations: 12
Iteration: 1, Func. Count: 8, Neg. LLF: 106.46882994162041
Iteration: 2, Func. Count: 17, Neg. LLF: 102.9517609894521
Iteration: 3, Func. Count: 25, Neg. LLF: 108.69879983764713
Iteration: 4, Func. Count: 33, Neg. LLF: 98.64320741099496
Iteration: 5, Func. Count: 40, Neg. LLF: 99.25341011355937
Iteration: 6, Func. Count: 48, Neg. LLF: 98.850855062731
Iteration: 7, Func. Count: 56, Neg. LLF: 98.64938460654355
Iteration: 8, Func. Count: 64, Neg. LLF: 99.83685148141222
Iteration: 9, Func. Count: 72, Neg. LLF: 98.37428779109973
Iteration: 10, Func. Count: 79, Neg. LLF: 98.3619638235367
Iteration: 11, Func. Count: 86, Neg. LLF: 98.36115597080014
Iteration: 12, Func. Count: 93, Neg. LLF: 98.36112022013062
Iteration: 13, Func. Count: 100, Neg. LLF: 98.36111971472525
Optimization terminated successfully (Exit mode 0)
Current function value: 98.36111971472525
Iterations: 13
Function evaluations: 100
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 106.48283673385912
Iteration: 2, Func. Count: 19, Neg. LLF: 102.16421160586329
Iteration: 3, Func. Count: 28, Neg. LLF: 124.06027021881094
Iteration: 4, Func. Count: 37, Neg. LLF: 98.20857501808456
Iteration: 5, Func. Count: 45, Neg. LLF: 97.51419776541367
Iteration: 6, Func. Count: 53, Neg. LLF: 97.41194989771962
Iteration: 7, Func. Count: 61, Neg. LLF: 97.3278397157064
Iteration: 8, Func. Count: 69, Neg. LLF: 97.3149752517494
Iteration: 9, Func. Count: 77, Neg. LLF: 97.31204837815253
Iteration: 10, Func. Count: 85, Neg. LLF: 97.30677080721335
Iteration: 11, Func. Count: 93, Neg. LLF: 97.30572086225813
Iteration: 12, Func. Count: 101, Neg. LLF: 97.30555650723966
Iteration: 13, Func. Count: 109, Neg. LLF: 97.30555469639447
Iteration: 14, Func. Count: 116, Neg. LLF: 97.30555469630163
Optimization terminated successfully (Exit mode 0)
Current function value: 97.30555469639447
Iterations: 14
Function evaluations: 116
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 107.97031111271654
Iteration: 2, Func. Count: 21, Neg. LLF: 101.57381606288142
Iteration: 3, Func. Count: 31, Neg. LLF: 766.5772891294445
Iteration: 4, Func. Count: 41, Neg. LLF: 100.48900713261904
Iteration: 5, Func. Count: 51, Neg. LLF: 99.04506920694703
Iteration: 6, Func. Count: 61, Neg. LLF: 101.42512510196684
Iteration: 7, Func. Count: 71, Neg. LLF: 97.52865593593106
Iteration: 8, Func. Count: 81, Neg. LLF: 97.31756458270758
Iteration: 9, Func. Count: 91, Neg. LLF: 96.91720410015995
Iteration: 10, Func. Count: 100, Neg. LLF: 96.90620343114765
Iteration: 11, Func. Count: 109, Neg. LLF: 96.90384823994414
Iteration: 12, Func. Count: 118, Neg. LLF: 96.90378309338541
Iteration: 13, Func. Count: 127, Neg. LLF: 96.90377666772359
Iteration: 14, Func. Count: 136, Neg. LLF: 96.90377591539742
Optimization terminated successfully (Exit mode 0)
Current function value: 96.90377591539742
Iterations: 14
Function evaluations: 136
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 108.8605530029544
Iteration: 2, Func. Count: 23, Neg. LLF: 101.68474210574493
Iteration: 3, Func. Count: 34, Neg. LLF: 197.17924524069292
Iteration: 4, Func. Count: 45, Neg. LLF: 99.85559726412399
Iteration: 5, Func. Count: 56, Neg. LLF: 97.56970345228227
Iteration: 6, Func. Count: 66, Neg. LLF: 97.38851423740205
Iteration: 7, Func. Count: 76, Neg. LLF: 97.8013029927253
Iteration: 8, Func. Count: 87, Neg. LLF: 97.11755834236983
Iteration: 9, Func. Count: 98, Neg. LLF: 96.92190809709795
Iteration: 10, Func. Count: 108, Neg. LLF: 96.90478749414254
Iteration: 11, Func. Count: 118, Neg. LLF: 96.90441284540664
Iteration: 12, Func. Count: 128, Neg. LLF: 96.90377757220658
Iteration: 13, Func. Count: 138, Neg. LLF: 96.90377597955874
Iteration: 14, Func. Count: 147, Neg. LLF: 96.90377600327753
Optimization terminated successfully (Exit mode 0)
Current function value: 96.90377597955874
Iterations: 14
Function evaluations: 147
Gradient evaluations: 14
Iteration: 1, Func. Count: 8, Neg. LLF: 123.22907025764192
Iteration: 2, Func. Count: 17, Neg. LLF: 153.14116875591327
Iteration: 3, Func. Count: 25, Neg. LLF: 102.93410449377528
Iteration: 4, Func. Count: 33, Neg. LLF: 98.3562311783071
Iteration: 5, Func. Count: 40, Neg. LLF: 97.70231711632803
Iteration: 6, Func. Count: 47, Neg. LLF: 97.61552068103394
Iteration: 7, Func. Count: 54, Neg. LLF: 97.56068146597097
Iteration: 8, Func. Count: 61, Neg. LLF: 97.54069304218893
Iteration: 9, Func. Count: 68, Neg. LLF: 97.53678392432192
Iteration: 10, Func. Count: 75, Neg. LLF: 97.53654184651994
Iteration: 11, Func. Count: 82, Neg. LLF: 97.53652349368728
Iteration: 12, Func. Count: 88, Neg. LLF: 97.5365234936906
Optimization terminated successfully (Exit mode 0)
Current function value: 97.53652349368728
Iterations: 12
Function evaluations: 88
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 105.94592478269121
Iteration: 2, Func. Count: 19, Neg. LLF: 102.58465785031076
Iteration: 3, Func. Count: 28, Neg. LLF: 108.4197438753013
Iteration: 4, Func. Count: 37, Neg. LLF: 98.65377759913979
Iteration: 5, Func. Count: 45, Neg. LLF: 99.53549746888166
Iteration: 6, Func. Count: 54, Neg. LLF: 99.04762100182306
Iteration: 7, Func. Count: 63, Neg. LLF: 98.71936329289849
Iteration: 8, Func. Count: 72, Neg. LLF: 100.96823689184875
Iteration: 9, Func. Count: 81, Neg. LLF: 98.4219722306291
Iteration: 10, Func. Count: 90, Neg. LLF: 98.36315491390383
Iteration: 11, Func. Count: 98, Neg. LLF: 98.36129299343321
Iteration: 12, Func. Count: 106, Neg. LLF: 98.36112321744099
Iteration: 13, Func. Count: 114, Neg. LLF: 98.36111977629103
Iteration: 14, Func. Count: 121, Neg. LLF: 98.36111977636303
Optimization terminated successfully (Exit mode 0)
Current function value: 98.36111977629103
Iterations: 14
Function evaluations: 121
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 105.87699160734896
Iteration: 2, Func. Count: 21, Neg. LLF: 101.83999343595546
Iteration: 3, Func. Count: 31, Neg. LLF: 122.2561996124063
Iteration: 4, Func. Count: 41, Neg. LLF: 97.54725816060001
Iteration: 5, Func. Count: 50, Neg. LLF: 97.35328283103327
Iteration: 6, Func. Count: 59, Neg. LLF: 97.33571994737618
Iteration: 7, Func. Count: 68, Neg. LLF: 97.30957846964338
Iteration: 8, Func. Count: 77, Neg. LLF: 97.30704771454748
Iteration: 9, Func. Count: 86, Neg. LLF: 97.30591086507002
Iteration: 10, Func. Count: 95, Neg. LLF: 97.30557836875929
Iteration: 11, Func. Count: 104, Neg. LLF: 97.3055553434449
Iteration: 12, Func. Count: 113, Neg. LLF: 97.30555445116349
Optimization terminated successfully (Exit mode 0)
Current function value: 97.30555445116349
Iterations: 12
Function evaluations: 113
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 102.39738653318113
Iteration: 2, Func. Count: 24, Neg. LLF: 122.49287040035615
Iteration: 3, Func. Count: 35, Neg. LLF: 177.55523788681464
Iteration: 4, Func. Count: 46, Neg. LLF: 103.53968196013005
Iteration: 5, Func. Count: 57, Neg. LLF: 102.39501917812035
Iteration: 6, Func. Count: 68, Neg. LLF: 99.34212054018445
Iteration: 7, Func. Count: 79, Neg. LLF: 117.86519934815786
Iteration: 8, Func. Count: 90, Neg. LLF: 97.30836295044853
Iteration: 9, Func. Count: 100, Neg. LLF: 98.20349166193112
Iteration: 10, Func. Count: 111, Neg. LLF: 97.19125985409644
Iteration: 11, Func. Count: 121, Neg. LLF: 97.08963758891552
Iteration: 12, Func. Count: 131, Neg. LLF: 97.080855707636
Iteration: 13, Func. Count: 141, Neg. LLF: 97.0785537128606
Iteration: 14, Func. Count: 151, Neg. LLF: 97.26650330278288
Iteration: 15, Func. Count: 162, Neg. LLF: 97.25660624525048
Iteration: 16, Func. Count: 173, Neg. LLF: 97.22045588314087
Iteration: 17, Func. Count: 184, Neg. LLF: 97.10256104415261
Iteration: 18, Func. Count: 195, Neg. LLF: 97.0578116419236
Iteration: 19, Func. Count: 205, Neg. LLF: 97.05155053038233
Iteration: 20, Func. Count: 215, Neg. LLF: 97.04364307891464
Iteration: 21, Func. Count: 225, Neg. LLF: 97.03053453126907
Iteration: 22, Func. Count: 235, Neg. LLF: 97.00976150137397
Iteration: 23, Func. Count: 245, Neg. LLF: 96.94338381002518
Iteration: 24, Func. Count: 255, Neg. LLF: 96.90463838287609
Iteration: 25, Func. Count: 265, Neg. LLF: 96.89277790139829
Iteration: 26, Func. Count: 275, Neg. LLF: 96.89210149785184
Iteration: 27, Func. Count: 285, Neg. LLF: 96.89148262735797
Iteration: 28, Func. Count: 295, Neg. LLF: 96.89146557896115
Iteration: 29, Func. Count: 305, Neg. LLF: 96.89146094302501
Iteration: 30, Func. Count: 314, Neg. LLF: 96.89146094302767
Optimization terminated successfully (Exit mode 0)
Current function value: 96.89146094302501
Iterations: 30
Function evaluations: 314
Gradient evaluations: 30
Iteration: 1, Func. Count: 12, Neg. LLF: 102.84925791844172
Iteration: 2, Func. Count: 26, Neg. LLF: 108.65586974340916
Iteration: 3, Func. Count: 38, Neg. LLF: 157.88227021097424
Iteration: 4, Func. Count: 50, Neg. LLF: 103.13355546058209
Iteration: 5, Func. Count: 62, Neg. LLF: 97.76369131697831
Iteration: 6, Func. Count: 73, Neg. LLF: 97.25477063263762
Iteration: 7, Func. Count: 84, Neg. LLF: 100.65608955894719
Iteration: 8, Func. Count: 96, Neg. LLF: 97.14969183632023
Iteration: 9, Func. Count: 107, Neg. LLF: 97.07559959348106
Iteration: 10, Func. Count: 118, Neg. LLF: 97.0333034171603
Iteration: 11, Func. Count: 129, Neg. LLF: 96.90858281867307
Iteration: 12, Func. Count: 140, Neg. LLF: 96.81895354986483
Iteration: 13, Func. Count: 151, Neg. LLF: 96.77624280510065
Iteration: 14, Func. Count: 162, Neg. LLF: 96.74733258047235
Iteration: 15, Func. Count: 173, Neg. LLF: 96.71315923976381
Iteration: 16, Func. Count: 184, Neg. LLF: 96.70790491259622
Iteration: 17, Func. Count: 195, Neg. LLF: 96.7029650824223
Iteration: 18, Func. Count: 206, Neg. LLF: 96.70140721392825
Iteration: 19, Func. Count: 217, Neg. LLF: 96.70100755440623
Iteration: 20, Func. Count: 228, Neg. LLF: 96.70096439981153
Iteration: 21, Func. Count: 239, Neg. LLF: 96.7009627194341
Iteration: 22, Func. Count: 249, Neg. LLF: 96.70096277963198
Optimization terminated successfully (Exit mode 0)
Current function value: 96.7009627194341
Iterations: 22
Function evaluations: 249
Gradient evaluations: 22
Iteration: 1, Func. Count: 9, Neg. LLF: 121.02656717782375
Iteration: 2, Func. Count: 19, Neg. LLF: 154.0969041101648
Iteration: 3, Func. Count: 28, Neg. LLF: 114.61381457891358
Iteration: 4, Func. Count: 37, Neg. LLF: 98.98842887899431
Iteration: 5, Func. Count: 45, Neg. LLF: 97.96518068778573
Iteration: 6, Func. Count: 53, Neg. LLF: 97.71378606054242
Iteration: 7, Func. Count: 61, Neg. LLF: 97.6363409977908
Iteration: 8, Func. Count: 69, Neg. LLF: 97.55438725160676
Iteration: 9, Func. Count: 77, Neg. LLF: 97.54051188325757
Iteration: 10, Func. Count: 85, Neg. LLF: 97.53666634843246
Iteration: 11, Func. Count: 93, Neg. LLF: 97.5365351255439
Iteration: 12, Func. Count: 101, Neg. LLF: 97.53652471370627
Iteration: 13, Func. Count: 109, Neg. LLF: 97.53652349881969
Iteration: 14, Func. Count: 116, Neg. LLF: 97.53652358413345
Optimization terminated successfully (Exit mode 0)
Current function value: 97.53652349881969
Iterations: 14
Function evaluations: 116
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 106.09348948154285
Iteration: 2, Func. Count: 21, Neg. LLF: 102.96408370565658
Iteration: 3, Func. Count: 31, Neg. LLF: 109.05077811522149
Iteration: 4, Func. Count: 41, Neg. LLF: 98.64327725841943
Iteration: 5, Func. Count: 50, Neg. LLF: 99.32861683143325
Iteration: 6, Func. Count: 60, Neg. LLF: 98.88119696671798
Iteration: 7, Func. Count: 70, Neg. LLF: 98.65351467363429
Iteration: 8, Func. Count: 80, Neg. LLF: 100.28378259799803
Iteration: 9, Func. Count: 90, Neg. LLF: 98.37672146325374
Iteration: 10, Func. Count: 99, Neg. LLF: 98.3622748085288
Iteration: 11, Func. Count: 108, Neg. LLF: 98.36117548558995
Iteration: 12, Func. Count: 117, Neg. LLF: 98.36112061408733
Iteration: 13, Func. Count: 126, Neg. LLF: 98.36111971459478
Optimization terminated successfully (Exit mode 0)
Current function value: 98.36111971459478
Iterations: 13
Function evaluations: 126
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 106.09027898935064
Iteration: 2, Func. Count: 23, Neg. LLF: 102.01475817043622
Iteration: 3, Func. Count: 34, Neg. LLF: 123.26984661628322
Iteration: 4, Func. Count: 45, Neg. LLF: 97.67228019033693
Iteration: 5, Func. Count: 55, Neg. LLF: 97.32282219055972
Iteration: 6, Func. Count: 65, Neg. LLF: 97.31349309914094
Iteration: 7, Func. Count: 75, Neg. LLF: 97.30573438034786
Iteration: 8, Func. Count: 85, Neg. LLF: 97.30564138385469
Iteration: 9, Func. Count: 95, Neg. LLF: 97.30556734502714
Iteration: 10, Func. Count: 105, Neg. LLF: 97.30555609778855
Iteration: 11, Func. Count: 115, Neg. LLF: 97.30555441064595
Iteration: 12, Func. Count: 124, Neg. LLF: 97.30555441068611
Optimization terminated successfully (Exit mode 0)
Current function value: 97.30555441064595
Iterations: 12
Function evaluations: 124
Gradient evaluations: 12
Iteration: 1, Func. Count: 12, Neg. LLF: 102.4860301505197
Iteration: 2, Func. Count: 26, Neg. LLF: 120.55048100777987
Iteration: 3, Func. Count: 38, Neg. LLF: 186.08878249567758
Iteration: 4, Func. Count: 50, Neg. LLF: 103.69630864991784
Iteration: 5, Func. Count: 62, Neg. LLF: 102.513332463759
Iteration: 6, Func. Count: 74, Neg. LLF: 99.51195813052743
Iteration: 7, Func. Count: 86, Neg. LLF: 119.20487003217559
Iteration: 8, Func. Count: 98, Neg. LLF: 97.32770528693672
Iteration: 9, Func. Count: 109, Neg. LLF: 98.09800366477162
Iteration: 10, Func. Count: 121, Neg. LLF: 97.23022101709232
Iteration: 11, Func. Count: 133, Neg. LLF: 97.10081348911757
Iteration: 12, Func. Count: 144, Neg. LLF: 97.07200114463662
Iteration: 13, Func. Count: 155, Neg. LLF: 97.05635041977071
Iteration: 14, Func. Count: 166, Neg. LLF: 97.15913073078674
Iteration: 15, Func. Count: 178, Neg. LLF: 97.12536999289328
Iteration: 16, Func. Count: 190, Neg. LLF: 96.9804861639439
Iteration: 17, Func. Count: 201, Neg. LLF: 96.94190698855898
Iteration: 18, Func. Count: 212, Neg. LLF: 96.89629897349252
Iteration: 19, Func. Count: 223, Neg. LLF: 96.89196196606727
Iteration: 20, Func. Count: 234, Neg. LLF: 96.89147994017378
Iteration: 21, Func. Count: 245, Neg. LLF: 96.89146253552703
Iteration: 22, Func. Count: 256, Neg. LLF: 96.89146120882309
Iteration: 23, Func. Count: 266, Neg. LLF: 96.89146120881338
Optimization terminated successfully (Exit mode 0)
Current function value: 96.89146120882309
Iterations: 23
Function evaluations: 266
Gradient evaluations: 23
Iteration: 1, Func. Count: 13, Neg. LLF: 102.90893359352359
Iteration: 2, Func. Count: 28, Neg. LLF: 108.20373791816775
Iteration: 3, Func. Count: 41, Neg. LLF: 157.27180953967124
Iteration: 4, Func. Count: 54, Neg. LLF: 103.13217789290567
Iteration: 5, Func. Count: 67, Neg. LLF: 97.76780955380744
Iteration: 6, Func. Count: 79, Neg. LLF: 97.26105163399967
Iteration: 7, Func. Count: 91, Neg. LLF: 100.58163781325071
Iteration: 8, Func. Count: 104, Neg. LLF: 97.14604114777747
Iteration: 9, Func. Count: 116, Neg. LLF: 97.0799155231732
Iteration: 10, Func. Count: 128, Neg. LLF: 97.04622766588614
Iteration: 11, Func. Count: 140, Neg. LLF: 96.94668167220561
Iteration: 12, Func. Count: 152, Neg. LLF: 98.32480114796084
Iteration: 13, Func. Count: 165, Neg. LLF: 97.69337276602067
Iteration: 14, Func. Count: 178, Neg. LLF: 96.9651526242332
Iteration: 15, Func. Count: 191, Neg. LLF: 96.72827855253038
Iteration: 16, Func. Count: 203, Neg. LLF: 96.71858833140898
Iteration: 17, Func. Count: 215, Neg. LLF: 96.71154854396428
Iteration: 18, Func. Count: 227, Neg. LLF: 96.70381532010386
Iteration: 19, Func. Count: 239, Neg. LLF: 96.70201755300263
Iteration: 20, Func. Count: 251, Neg. LLF: 96.70122292812093
Iteration: 21, Func. Count: 263, Neg. LLF: 96.70100245822984
Iteration: 22, Func. Count: 275, Neg. LLF: 96.70096398801823
Iteration: 23, Func. Count: 287, Neg. LLF: 96.70096270320252
Iteration: 24, Func. Count: 298, Neg. LLF: 96.70096276340486
Optimization terminated successfully (Exit mode 0)
Current function value: 96.70096270320252
Iterations: 24
Function evaluations: 298
Gradient evaluations: 24
Iteration: 1, Func. Count: 6, Neg. LLF: 154.29493423071634
Iteration: 2, Func. Count: 14, Neg. LLF: 145.79178714635898
Iteration: 3, Func. Count: 21, Neg. LLF: 99.13721674349436
Iteration: 4, Func. Count: 26, Neg. LLF: 99.12672533929006
Iteration: 5, Func. Count: 31, Neg. LLF: 99.12518557065194
Iteration: 6, Func. Count: 36, Neg. LLF: 99.12517741604117
Iteration: 7, Func. Count: 41, Neg. LLF: 99.12517225754657
Iteration: 8, Func. Count: 45, Neg. LLF: 99.12517241974993
Optimization terminated successfully (Exit mode 0)
Current function value: 99.12517225754657
Iterations: 8
Function evaluations: 45
Gradient evaluations: 8
Iteration: 1, Func. Count: 7, Neg. LLF: 175.20723839706662
Iteration: 2, Func. Count: 16, Neg. LLF: 103.14678499226157
Iteration: 3, Func. Count: 24, Neg. LLF: 99.15159223153587
Iteration: 4, Func. Count: 31, Neg. LLF: 98.7925250083276
Iteration: 5, Func. Count: 37, Neg. LLF: 98.64319365025986
Iteration: 6, Func. Count: 43, Neg. LLF: 98.62727968447429
Iteration: 7, Func. Count: 49, Neg. LLF: 98.61404356230214
Iteration: 8, Func. Count: 55, Neg. LLF: 98.61207230948291
Iteration: 9, Func. Count: 61, Neg. LLF: 98.61194915652123
Iteration: 10, Func. Count: 67, Neg. LLF: 98.6119475159177
Iteration: 11, Func. Count: 72, Neg. LLF: 98.61194751625841
Optimization terminated successfully (Exit mode 0)
Current function value: 98.6119475159177
Iterations: 11
Function evaluations: 72
Gradient evaluations: 11
Iteration: 1, Func. Count: 8, Neg. LLF: 170.09806925585812
Iteration: 2, Func. Count: 19, Neg. LLF: 103.90601137369022
Iteration: 3, Func. Count: 28, Neg. LLF: 99.40320623404006
Iteration: 4, Func. Count: 36, Neg. LLF: 98.63374472954273
Iteration: 5, Func. Count: 43, Neg. LLF: 98.6281939357791
Iteration: 6, Func. Count: 50, Neg. LLF: 98.62730743116829
Iteration: 7, Func. Count: 57, Neg. LLF: 98.62719538147446
Iteration: 8, Func. Count: 64, Neg. LLF: 98.62687961278124
Iteration: 9, Func. Count: 71, Neg. LLF: 98.62616851885535
Iteration: 10, Func. Count: 78, Neg. LLF: 98.62409005098846
Iteration: 11, Func. Count: 85, Neg. LLF: 98.61950391390778
Iteration: 12, Func. Count: 92, Neg. LLF: 31653258.468280792
Iteration: 13, Func. Count: 102, Neg. LLF: 99.7693278882167
Iteration: 14, Func. Count: 111, Neg. LLF: 98.6471044556043
Iteration: 15, Func. Count: 119, Neg. LLF: 98.61194768541415
Iteration: 16, Func. Count: 125, Neg. LLF: 98.61194768650994
Optimization terminated successfully (Exit mode 0)
Current function value: 98.61194768541415
Iterations: 17
Function evaluations: 125
Gradient evaluations: 16
Iteration: 1, Func. Count: 9, Neg. LLF: 132.95559179823707
Iteration: 2, Func. Count: 19, Neg. LLF: 99.07141440323414
Iteration: 3, Func. Count: 28, Neg. LLF: 98.81712496605087
Iteration: 4, Func. Count: 37, Neg. LLF: 103.94625621589591
Iteration: 5, Func. Count: 46, Neg. LLF: 98.64283505745807
Iteration: 6, Func. Count: 54, Neg. LLF: 98.64178945974676
Iteration: 7, Func. Count: 62, Neg. LLF: 98.64133443753748
Iteration: 8, Func. Count: 70, Neg. LLF: 98.64118947399061
Iteration: 9, Func. Count: 78, Neg. LLF: 98.63984999425938
Iteration: 10, Func. Count: 86, Neg. LLF: 98.63668573003264
Iteration: 11, Func. Count: 94, Neg. LLF: 98.63407183861283
Iteration: 12, Func. Count: 102, Neg. LLF: 98.62683424113942
Iteration: 13, Func. Count: 110, Neg. LLF: 98.62628608138661
Iteration: 14, Func. Count: 118, Neg. LLF: 98.6259624799193
Iteration: 15, Func. Count: 126, Neg. LLF: 98.62403781966677
Iteration: 16, Func. Count: 134, Neg. LLF: 98.6122487214704
Iteration: 17, Func. Count: 142, Neg. LLF: 98.61340804412734
Iteration: 18, Func. Count: 151, Neg. LLF: 98.61195925171675
Iteration: 19, Func. Count: 159, Neg. LLF: 98.61195027191087
Iteration: 20, Func. Count: 167, Neg. LLF: 98.61195076309295
Optimization terminated successfully (Exit mode 0)
Current function value: 98.611949583956
Iterations: 20
Function evaluations: 168
Gradient evaluations: 20
Iteration: 1, Func. Count: 10, Neg. LLF: 130.54051890026318
Iteration: 2, Func. Count: 21, Neg. LLF: 98.97683536421518
Iteration: 3, Func. Count: 31, Neg. LLF: 99.15873379411566
Iteration: 4, Func. Count: 41, Neg. LLF: 99.3834222418128
Iteration: 5, Func. Count: 51, Neg. LLF: 98.65774197887791
Iteration: 6, Func. Count: 60, Neg. LLF: 98.65628959300287
Iteration: 7, Func. Count: 69, Neg. LLF: 98.65283080415061
Iteration: 8, Func. Count: 78, Neg. LLF: 98.64132944212885
Iteration: 9, Func. Count: 87, Neg. LLF: 98.64067736972596
Iteration: 10, Func. Count: 96, Neg. LLF: 98.64047512787818
Iteration: 11, Func. Count: 105, Neg. LLF: 98.63833633758442
Iteration: 12, Func. Count: 114, Neg. LLF: 98.63030782114177
Iteration: 13, Func. Count: 123, Neg. LLF: 98.62808637915785
Iteration: 14, Func. Count: 132, Neg. LLF: 98.62779103408295
Iteration: 15, Func. Count: 141, Neg. LLF: 98.62744164215752
Iteration: 16, Func. Count: 150, Neg. LLF: 98.62621215294273
Iteration: 17, Func. Count: 159, Neg. LLF: 98.61909582823571
Iteration: 18, Func. Count: 168, Neg. LLF: 98.61638461281511
Iteration: 19, Func. Count: 177, Neg. LLF: 103.66923525079287
Iteration: 20, Func. Count: 188, Neg. LLF: 30079292.994923122
Iteration: 21, Func. Count: 201, Neg. LLF: 99.77205196692162
Iteration: 22, Func. Count: 212, Neg. LLF: 98.61229810743589
Iteration: 23, Func. Count: 221, Neg. LLF: 98.61196777091779
Iteration: 24, Func. Count: 230, Neg. LLF: 98.61194746418674
Iteration: 25, Func. Count: 238, Neg. LLF: 98.61194746863505
Optimization terminated successfully (Exit mode 0)
Current function value: 98.61194746418674
Iterations: 26
Function evaluations: 238
Gradient evaluations: 25
Iteration: 1, Func. Count: 7, Neg. LLF: 154.78588163363978
Iteration: 2, Func. Count: 16, Neg. LLF: 164.8840697064787
Iteration: 3, Func. Count: 23, Neg. LLF: 98.78728206048157
Iteration: 4, Func. Count: 29, Neg. LLF: 101.41326454122665
Iteration: 5, Func. Count: 37, Neg. LLF: 100.35032555943748
Iteration: 6, Func. Count: 44, Neg. LLF: 97.93695285974432
Iteration: 7, Func. Count: 50, Neg. LLF: 97.88597523881654
Iteration: 8, Func. Count: 56, Neg. LLF: 97.80108146723991
Iteration: 9, Func. Count: 62, Neg. LLF: 97.78474040267301
Iteration: 10, Func. Count: 68, Neg. LLF: 97.78144301649864
Iteration: 11, Func. Count: 74, Neg. LLF: 97.78087240697623
Iteration: 12, Func. Count: 80, Neg. LLF: 97.78085475359529
Iteration: 13, Func. Count: 86, Neg. LLF: 97.78085387577498
Optimization terminated successfully (Exit mode 0)
Current function value: 97.78085387577498
Iterations: 13
Function evaluations: 86
Gradient evaluations: 13
Iteration: 1, Func. Count: 8, Neg. LLF: 106.48688937469363
Iteration: 2, Func. Count: 17, Neg. LLF: 102.5089486123552
Iteration: 3, Func. Count: 25, Neg. LLF: 109.2417801187813
Iteration: 4, Func. Count: 33, Neg. LLF: 98.68691861495016
Iteration: 5, Func. Count: 40, Neg. LLF: 99.92190225284602
Iteration: 6, Func. Count: 48, Neg. LLF: 100.31374092685206
Iteration: 7, Func. Count: 56, Neg. LLF: 99.31733688138772
Iteration: 8, Func. Count: 64, Neg. LLF: 98.74412667837211
Iteration: 9, Func. Count: 72, Neg. LLF: 98.91634122113499
Iteration: 10, Func. Count: 80, Neg. LLF: 98.44897738682566
Iteration: 11, Func. Count: 87, Neg. LLF: 98.38755254244795
Iteration: 12, Func. Count: 94, Neg. LLF: 98.36842243716623
Iteration: 13, Func. Count: 101, Neg. LLF: 98.36164547496932
Iteration: 14, Func. Count: 108, Neg. LLF: 98.36115538676161
Iteration: 15, Func. Count: 115, Neg. LLF: 98.36111980980522
Iteration: 16, Func. Count: 121, Neg. LLF: 98.36111980981194
Optimization terminated successfully (Exit mode 0)
Current function value: 98.36111980980522
Iterations: 16
Function evaluations: 121
Gradient evaluations: 16
Iteration: 1, Func. Count: 9, Neg. LLF: 106.52370417465809
Iteration: 2, Func. Count: 19, Neg. LLF: 101.82328522968182
Iteration: 3, Func. Count: 28, Neg. LLF: 125.89882173644469
Iteration: 4, Func. Count: 37, Neg. LLF: 98.07114842730547
Iteration: 5, Func. Count: 45, Neg. LLF: 97.48540340141217
Iteration: 6, Func. Count: 53, Neg. LLF: 97.39093206413578
Iteration: 7, Func. Count: 61, Neg. LLF: 97.31830535586441
Iteration: 8, Func. Count: 69, Neg. LLF: 97.31103300535261
Iteration: 9, Func. Count: 77, Neg. LLF: 97.30909878280278
Iteration: 10, Func. Count: 85, Neg. LLF: 97.30597371718376
Iteration: 11, Func. Count: 93, Neg. LLF: 97.30559880953065
Iteration: 12, Func. Count: 101, Neg. LLF: 97.30555484144831
Iteration: 13, Func. Count: 109, Neg. LLF: 97.30555444821587
Optimization terminated successfully (Exit mode 0)
Current function value: 97.30555444821587
Iterations: 13
Function evaluations: 109
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 108.17184580633412
Iteration: 2, Func. Count: 21, Neg. LLF: 101.33429560925157
Iteration: 3, Func. Count: 31, Neg. LLF: 820.6679385815111
Iteration: 4, Func. Count: 41, Neg. LLF: 100.74150675255137
Iteration: 5, Func. Count: 51, Neg. LLF: 99.30821195501767
Iteration: 6, Func. Count: 61, Neg. LLF: 100.34103525163697
Iteration: 7, Func. Count: 71, Neg. LLF: 97.78705540305366
Iteration: 8, Func. Count: 81, Neg. LLF: 97.38610440276989
Iteration: 9, Func. Count: 91, Neg. LLF: 96.9302209194649
Iteration: 10, Func. Count: 100, Neg. LLF: 96.94632896541775
Iteration: 11, Func. Count: 110, Neg. LLF: 96.90397944350833
Iteration: 12, Func. Count: 119, Neg. LLF: 96.90377900676296
Iteration: 13, Func. Count: 128, Neg. LLF: 96.90377614980355
Iteration: 14, Func. Count: 136, Neg. LLF: 96.9037761499152
Optimization terminated successfully (Exit mode 0)
Current function value: 96.90377614980355
Iterations: 14
Function evaluations: 136
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 109.06120156700553
Iteration: 2, Func. Count: 23, Neg. LLF: 101.32668458592212
Iteration: 3, Func. Count: 34, Neg. LLF: 203.22563652863008
Iteration: 4, Func. Count: 45, Neg. LLF: 99.90677154391597
Iteration: 5, Func. Count: 56, Neg. LLF: 97.5532085200462
Iteration: 6, Func. Count: 66, Neg. LLF: 97.47706609954922
Iteration: 7, Func. Count: 76, Neg. LLF: 97.42246813315288
Iteration: 8, Func. Count: 86, Neg. LLF: 97.197584878562
Iteration: 9, Func. Count: 96, Neg. LLF: 97.00607851891395
Iteration: 10, Func. Count: 106, Neg. LLF: 96.95108893770714
Iteration: 11, Func. Count: 116, Neg. LLF: 96.91069306301283
Iteration: 12, Func. Count: 126, Neg. LLF: 96.90421561360563
Iteration: 13, Func. Count: 136, Neg. LLF: 96.90381275613096
Iteration: 14, Func. Count: 146, Neg. LLF: 96.90377787176162
Iteration: 15, Func. Count: 156, Neg. LLF: 96.90377600216144
Iteration: 16, Func. Count: 165, Neg. LLF: 96.90377602598966
Optimization terminated successfully (Exit mode 0)
Current function value: 96.90377600216144
Iterations: 16
Function evaluations: 165
Gradient evaluations: 16
Iteration: 1, Func. Count: 8, Neg. LLF: 155.01978358338522
Iteration: 2, Func. Count: 18, Neg. LLF: 164.58039969757246
Iteration: 3, Func. Count: 26, Neg. LLF: 98.79274294802761
Iteration: 4, Func. Count: 33, Neg. LLF: 101.5352623882403
Iteration: 5, Func. Count: 42, Neg. LLF: 100.36085968982627
Iteration: 6, Func. Count: 50, Neg. LLF: 97.93643043651029
Iteration: 7, Func. Count: 57, Neg. LLF: 97.90359006988173
Iteration: 8, Func. Count: 64, Neg. LLF: 97.80193200361131
Iteration: 9, Func. Count: 71, Neg. LLF: 97.78542969160581
Iteration: 10, Func. Count: 78, Neg. LLF: 97.78167728922587
Iteration: 11, Func. Count: 85, Neg. LLF: 97.78088376668224
Iteration: 12, Func. Count: 92, Neg. LLF: 97.78085558108998
Iteration: 13, Func. Count: 99, Neg. LLF: 97.78085388111121
Iteration: 14, Func. Count: 105, Neg. LLF: 97.7808539316043
Optimization terminated successfully (Exit mode 0)
Current function value: 97.78085388111121
Iterations: 14
Function evaluations: 105
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 106.1659258623865
Iteration: 2, Func. Count: 19, Neg. LLF: 101.96720298177172
Iteration: 3, Func. Count: 28, Neg. LLF: 109.01323475972889
Iteration: 4, Func. Count: 37, Neg. LLF: 98.72354719675927
Iteration: 5, Func. Count: 45, Neg. LLF: 101.39933304673997
Iteration: 6, Func. Count: 54, Neg. LLF: 101.86996002040695
Iteration: 7, Func. Count: 63, Neg. LLF: 101.42212357699496
Iteration: 8, Func. Count: 72, Neg. LLF: 98.64091970486231
Iteration: 9, Func. Count: 81, Neg. LLF: 99.63084313118082
Iteration: 10, Func. Count: 90, Neg. LLF: 98.49356022651216
Iteration: 11, Func. Count: 98, Neg. LLF: 98.40426857522968
Iteration: 12, Func. Count: 106, Neg. LLF: 98.38363312422065
Iteration: 13, Func. Count: 114, Neg. LLF: 98.36335966165606
Iteration: 14, Func. Count: 122, Neg. LLF: 98.36168590607382
Iteration: 15, Func. Count: 130, Neg. LLF: 98.36112966742454
Iteration: 16, Func. Count: 138, Neg. LLF: 98.3611199662626
Iteration: 17, Func. Count: 145, Neg. LLF: 98.36111996605248
Optimization terminated successfully (Exit mode 0)
Current function value: 98.3611199662626
Iterations: 17
Function evaluations: 145
Gradient evaluations: 17
Iteration: 1, Func. Count: 10, Neg. LLF: 106.56143263743648
Iteration: 2, Func. Count: 21, Neg. LLF: 101.62869080460057
Iteration: 3, Func. Count: 31, Neg. LLF: 128.32689019531352
Iteration: 4, Func. Count: 41, Neg. LLF: 98.39101959800445
Iteration: 5, Func. Count: 51, Neg. LLF: 97.83320392542282
Iteration: 6, Func. Count: 60, Neg. LLF: 99.44523436669841
Iteration: 7, Func. Count: 70, Neg. LLF: 99.00065234329733
Iteration: 8, Func. Count: 81, Neg. LLF: 97.33451705329357
Iteration: 9, Func. Count: 90, Neg. LLF: 97.31364714526907
Iteration: 10, Func. Count: 99, Neg. LLF: 97.30813348133631
Iteration: 11, Func. Count: 108, Neg. LLF: 97.30563231365733
Iteration: 12, Func. Count: 117, Neg. LLF: 97.30555929395848
Iteration: 13, Func. Count: 126, Neg. LLF: 97.30555566256214
Iteration: 14, Func. Count: 135, Neg. LLF: 97.3055544872986
Iteration: 15, Func. Count: 143, Neg. LLF: 97.30555448731604
Optimization terminated successfully (Exit mode 0)
Current function value: 97.3055544872986
Iterations: 15
Function evaluations: 143
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 108.20088924229994
Iteration: 2, Func. Count: 23, Neg. LLF: 101.15490494487642
Iteration: 3, Func. Count: 34, Neg. LLF: 835.4964446336082
Iteration: 4, Func. Count: 45, Neg. LLF: 100.68821258787858
Iteration: 5, Func. Count: 56, Neg. LLF: 99.13831225914386
Iteration: 6, Func. Count: 67, Neg. LLF: 100.97512127134152
Iteration: 7, Func. Count: 78, Neg. LLF: 97.66480591115346
Iteration: 8, Func. Count: 89, Neg. LLF: 97.90812607216888
Iteration: 9, Func. Count: 100, Neg. LLF: 96.92142508709712
Iteration: 10, Func. Count: 110, Neg. LLF: 96.93387195847491
Iteration: 11, Func. Count: 121, Neg. LLF: 96.90385644235208
Iteration: 12, Func. Count: 131, Neg. LLF: 96.90377921500215
Iteration: 13, Func. Count: 141, Neg. LLF: 96.90377643245748
Iteration: 14, Func. Count: 150, Neg. LLF: 96.90377643264381
Optimization terminated successfully (Exit mode 0)
Current function value: 96.90377643245748
Iterations: 14
Function evaluations: 150
Gradient evaluations: 14
Iteration: 1, Func. Count: 12, Neg. LLF: 108.79168377771607
Iteration: 2, Func. Count: 25, Neg. LLF: 101.24637670752743
Iteration: 3, Func. Count: 37, Neg. LLF: 209.19489590464826
Iteration: 4, Func. Count: 49, Neg. LLF: 99.8993245498483
Iteration: 5, Func. Count: 61, Neg. LLF: 97.5348202203194
Iteration: 6, Func. Count: 72, Neg. LLF: 97.38869164215099
Iteration: 7, Func. Count: 83, Neg. LLF: 98.93769128666708
Iteration: 8, Func. Count: 95, Neg. LLF: 98.5859372969038
Iteration: 9, Func. Count: 107, Neg. LLF: 97.01150975950925
Iteration: 10, Func. Count: 118, Neg. LLF: 97.26423658560651
Iteration: 11, Func. Count: 130, Neg. LLF: 96.94966761012579
Iteration: 12, Func. Count: 141, Neg. LLF: 96.91525002522552
Iteration: 13, Func. Count: 152, Neg. LLF: 96.90487021026833
Iteration: 14, Func. Count: 163, Neg. LLF: 96.9038376854453
Iteration: 15, Func. Count: 174, Neg. LLF: 96.90377733840079
Iteration: 16, Func. Count: 185, Neg. LLF: 96.90377593101546
Iteration: 17, Func. Count: 195, Neg. LLF: 96.90377595479126
Optimization terminated successfully (Exit mode 0)
Current function value: 96.90377593101546
Iterations: 17
Function evaluations: 195
Gradient evaluations: 17
Iteration: 1, Func. Count: 9, Neg. LLF: 121.5591809013721
Iteration: 2, Func. Count: 19, Neg. LLF: 159.05061652121088
Iteration: 3, Func. Count: 29, Neg. LLF: 9364881.919707563
Iteration: 4, Func. Count: 38, Neg. LLF: 98.24765329206424
Iteration: 5, Func. Count: 46, Neg. LLF: 97.84983501889465
Iteration: 6, Func. Count: 54, Neg. LLF: 97.69192866606873
Iteration: 7, Func. Count: 62, Neg. LLF: 97.59322506644922
Iteration: 8, Func. Count: 70, Neg. LLF: 97.55590973849162
Iteration: 9, Func. Count: 78, Neg. LLF: 97.5383649956319
Iteration: 10, Func. Count: 86, Neg. LLF: 97.53660231793644
Iteration: 11, Func. Count: 94, Neg. LLF: 97.53652420479469
Iteration: 12, Func. Count: 102, Neg. LLF: 97.53652350757098
Optimization terminated successfully (Exit mode 0)
Current function value: 97.53652350757098
Iterations: 12
Function evaluations: 102
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 105.66177246139465
Iteration: 2, Func. Count: 21, Neg. LLF: 101.63880218944034
Iteration: 3, Func. Count: 32, Neg. LLF: 104.06042202056273
Iteration: 4, Func. Count: 42, Neg. LLF: 98.660936627238
Iteration: 5, Func. Count: 51, Neg. LLF: 98.74376619395002
Iteration: 6, Func. Count: 61, Neg. LLF: 98.46001502683428
Iteration: 7, Func. Count: 71, Neg. LLF: 98.3805591570653
Iteration: 8, Func. Count: 80, Neg. LLF: 98.36502310099794
Iteration: 9, Func. Count: 89, Neg. LLF: 98.3620207264248
Iteration: 10, Func. Count: 98, Neg. LLF: 98.36113088060304
Iteration: 11, Func. Count: 107, Neg. LLF: 98.36111984608868
Iteration: 12, Func. Count: 115, Neg. LLF: 98.36111984623403
Optimization terminated successfully (Exit mode 0)
Current function value: 98.36111984608868
Iterations: 12
Function evaluations: 115
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 105.95783707501889
Iteration: 2, Func. Count: 23, Neg. LLF: 101.29954356241136
Iteration: 3, Func. Count: 34, Neg. LLF: 125.3897240132682
Iteration: 4, Func. Count: 45, Neg. LLF: 97.55499717792463
Iteration: 5, Func. Count: 55, Neg. LLF: 97.34971656561248
Iteration: 6, Func. Count: 65, Neg. LLF: 97.34115461317805
Iteration: 7, Func. Count: 76, Neg. LLF: 97.30930410704246
Iteration: 8, Func. Count: 86, Neg. LLF: 97.30602145855846
Iteration: 9, Func. Count: 96, Neg. LLF: 97.30562216164654
Iteration: 10, Func. Count: 106, Neg. LLF: 97.305560001425
Iteration: 11, Func. Count: 116, Neg. LLF: 97.30555466568009
Iteration: 12, Func. Count: 125, Neg. LLF: 97.3055546656928
Optimization terminated successfully (Exit mode 0)
Current function value: 97.30555466568009
Iterations: 12
Function evaluations: 125
Gradient evaluations: 12
Iteration: 1, Func. Count: 12, Neg. LLF: 102.23507600150238
Iteration: 2, Func. Count: 26, Neg. LLF: 121.23640550231806
Iteration: 3, Func. Count: 38, Neg. LLF: 172.3039707894428
Iteration: 4, Func. Count: 50, Neg. LLF: 103.72580957756033
Iteration: 5, Func. Count: 62, Neg. LLF: 102.52239561121041
Iteration: 6, Func. Count: 74, Neg. LLF: 98.9166384773599
Iteration: 7, Func. Count: 86, Neg. LLF: 114.78126091545589
Iteration: 8, Func. Count: 99, Neg. LLF: 97.2691349783665
Iteration: 9, Func. Count: 110, Neg. LLF: 97.41278334768835
Iteration: 10, Func. Count: 122, Neg. LLF: 97.10527318796198
Iteration: 11, Func. Count: 133, Neg. LLF: 97.06983268969731
Iteration: 12, Func. Count: 144, Neg. LLF: 97.03536377037445
Iteration: 13, Func. Count: 155, Neg. LLF: 97.17033243823512
Iteration: 14, Func. Count: 167, Neg. LLF: 97.00528273352936
Iteration: 15, Func. Count: 178, Neg. LLF: 96.96527332685223
Iteration: 16, Func. Count: 189, Neg. LLF: 96.91103379724687
Iteration: 17, Func. Count: 200, Neg. LLF: 96.89178249176824
Iteration: 18, Func. Count: 211, Neg. LLF: 96.89154042816894
Iteration: 19, Func. Count: 222, Neg. LLF: 96.891462316032
Iteration: 20, Func. Count: 233, Neg. LLF: 96.89146097396308
Iteration: 21, Func. Count: 243, Neg. LLF: 96.89146097397223
Optimization terminated successfully (Exit mode 0)
Current function value: 96.89146097396308
Iterations: 21
Function evaluations: 243
Gradient evaluations: 21
Iteration: 1, Func. Count: 13, Neg. LLF: 102.63868421687292
Iteration: 2, Func. Count: 28, Neg. LLF: 107.80527250348453
Iteration: 3, Func. Count: 41, Neg. LLF: 160.68920593327093
Iteration: 4, Func. Count: 54, Neg. LLF: 103.18197205116728
Iteration: 5, Func. Count: 67, Neg. LLF: 97.7452710597609
Iteration: 6, Func. Count: 79, Neg. LLF: 97.26498276570324
Iteration: 7, Func. Count: 91, Neg. LLF: 100.71475092754326
Iteration: 8, Func. Count: 104, Neg. LLF: 97.1444975363507
Iteration: 9, Func. Count: 116, Neg. LLF: 97.07475477694454
Iteration: 10, Func. Count: 128, Neg. LLF: 97.04154146536473
Iteration: 11, Func. Count: 140, Neg. LLF: 96.91648805189597
Iteration: 12, Func. Count: 152, Neg. LLF: 98.06990059320792
Iteration: 13, Func. Count: 165, Neg. LLF: 97.69949711945384
Iteration: 14, Func. Count: 178, Neg. LLF: 96.82410268854832
Iteration: 15, Func. Count: 191, Neg. LLF: 96.7200492953884
Iteration: 16, Func. Count: 203, Neg. LLF: 96.71294837619193
Iteration: 17, Func. Count: 215, Neg. LLF: 96.7042576930262
Iteration: 18, Func. Count: 227, Neg. LLF: 96.70240208502649
Iteration: 19, Func. Count: 239, Neg. LLF: 96.70137498127819
Iteration: 20, Func. Count: 251, Neg. LLF: 96.70097143300289
Iteration: 21, Func. Count: 263, Neg. LLF: 96.70096287737992
Iteration: 22, Func. Count: 274, Neg. LLF: 96.70096293759342
Optimization terminated successfully (Exit mode 0)
Current function value: 96.70096287737992
Iterations: 22
Function evaluations: 274
Gradient evaluations: 22
Iteration: 1, Func. Count: 10, Neg. LLF: 121.11832212995787
Iteration: 2, Func. Count: 21, Neg. LLF: 161.80653176011353
Iteration: 3, Func. Count: 31, Neg. LLF: 11532800.08111322
Iteration: 4, Func. Count: 41, Neg. LLF: 100.18595839586325
Iteration: 5, Func. Count: 51, Neg. LLF: 97.72049236512906
Iteration: 6, Func. Count: 60, Neg. LLF: 97.65912028102251
Iteration: 7, Func. Count: 69, Neg. LLF: 97.54709614719455
Iteration: 8, Func. Count: 78, Neg. LLF: 97.53708262196065
Iteration: 9, Func. Count: 87, Neg. LLF: 97.5366212445997
Iteration: 10, Func. Count: 96, Neg. LLF: 97.5365244732568
Iteration: 11, Func. Count: 105, Neg. LLF: 97.53652351573012
Optimization terminated successfully (Exit mode 0)
Current function value: 97.53652351573012
Iterations: 11
Function evaluations: 105
Gradient evaluations: 11
Iteration: 1, Func. Count: 11, Neg. LLF: 105.79444300194484
Iteration: 2, Func. Count: 23, Neg. LLF: 101.9575487589447
Iteration: 3, Func. Count: 34, Neg. LLF: 109.26350526995029
Iteration: 4, Func. Count: 45, Neg. LLF: 98.72339197250102
Iteration: 5, Func. Count: 55, Neg. LLF: 101.87844157020979
Iteration: 6, Func. Count: 66, Neg. LLF: 102.2750639609527
Iteration: 7, Func. Count: 77, Neg. LLF: 100.16929372653914
Iteration: 8, Func. Count: 88, Neg. LLF: 98.81835485303688
Iteration: 9, Func. Count: 99, Neg. LLF: 99.32760161465492
Iteration: 10, Func. Count: 110, Neg. LLF: 98.51128206476136
Iteration: 11, Func. Count: 120, Neg. LLF: 98.44485170768957
Iteration: 12, Func. Count: 130, Neg. LLF: 98.37301047490595
Iteration: 13, Func. Count: 140, Neg. LLF: 98.36478999501277
Iteration: 14, Func. Count: 150, Neg. LLF: 98.36121642675145
Iteration: 15, Func. Count: 160, Neg. LLF: 98.36112098367211
Iteration: 16, Func. Count: 170, Neg. LLF: 98.36111974764171
Iteration: 17, Func. Count: 179, Neg. LLF: 98.36111974765441
Optimization terminated successfully (Exit mode 0)
Current function value: 98.36111974764171
Iterations: 17
Function evaluations: 179
Gradient evaluations: 17
Iteration: 1, Func. Count: 12, Neg. LLF: 106.17514757141191
Iteration: 2, Func. Count: 25, Neg. LLF: 101.45847068048434
Iteration: 3, Func. Count: 37, Neg. LLF: 126.8231354414898
Iteration: 4, Func. Count: 49, Neg. LLF: 97.70344558480221
Iteration: 5, Func. Count: 60, Neg. LLF: 97.33706183378519
Iteration: 6, Func. Count: 71, Neg. LLF: 97.315410631875
Iteration: 7, Func. Count: 82, Neg. LLF: 97.3080504805027
Iteration: 8, Func. Count: 93, Neg. LLF: 97.30556393029556
Iteration: 9, Func. Count: 104, Neg. LLF: 97.30555556782495
Iteration: 10, Func. Count: 115, Neg. LLF: 97.30555483285438
Optimization terminated successfully (Exit mode 0)
Current function value: 97.30555483285438
Iterations: 10
Function evaluations: 115
Gradient evaluations: 10
Iteration: 1, Func. Count: 13, Neg. LLF: 102.32464281401175
Iteration: 2, Func. Count: 28, Neg. LLF: 119.42644608717244
Iteration: 3, Func. Count: 41, Neg. LLF: 178.95863324817873
Iteration: 4, Func. Count: 54, Neg. LLF: 103.88331992747966
Iteration: 5, Func. Count: 67, Neg. LLF: 102.63399801732244
Iteration: 6, Func. Count: 80, Neg. LLF: 99.03179732195086
Iteration: 7, Func. Count: 93, Neg. LLF: 115.37041857897145
Iteration: 8, Func. Count: 107, Neg. LLF: 97.27911214660001
Iteration: 9, Func. Count: 119, Neg. LLF: 97.4065552117957
Iteration: 10, Func. Count: 132, Neg. LLF: 97.13516545429616
Iteration: 11, Func. Count: 144, Neg. LLF: 97.07033857522975
Iteration: 12, Func. Count: 156, Neg. LLF: 97.01089258500745
Iteration: 13, Func. Count: 168, Neg. LLF: 96.9612765544753
Iteration: 14, Func. Count: 180, Neg. LLF: 97.63227516379361
Iteration: 15, Func. Count: 193, Neg. LLF: 96.83124304121642
Iteration: 16, Func. Count: 205, Neg. LLF: 96.7840428688394
Iteration: 17, Func. Count: 217, Neg. LLF: 96.74145463151585
Iteration: 18, Func. Count: 229, Neg. LLF: 96.7222047856505
Iteration: 19, Func. Count: 241, Neg. LLF: 96.71395115283627
Iteration: 20, Func. Count: 253, Neg. LLF: 96.7126200275727
Iteration: 21, Func. Count: 265, Neg. LLF: 96.70966805218451
Iteration: 22, Func. Count: 277, Neg. LLF: 96.70551332659808
Iteration: 23, Func. Count: 289, Neg. LLF: 96.70210743671761
Iteration: 24, Func. Count: 301, Neg. LLF: 96.70108118887043
Iteration: 25, Func. Count: 313, Neg. LLF: 96.70096483941953
Iteration: 26, Func. Count: 325, Neg. LLF: 96.70096272463275
Iteration: 27, Func. Count: 336, Neg. LLF: 96.70096272464252
Optimization terminated successfully (Exit mode 0)
Current function value: 96.70096272463275
Iterations: 27
Function evaluations: 336
Gradient evaluations: 27
Iteration: 1, Func. Count: 14, Neg. LLF: 102.69949392813383
Iteration: 2, Func. Count: 30, Neg. LLF: 107.39172285368993
Iteration: 3, Func. Count: 44, Neg. LLF: 160.53553796918425
Iteration: 4, Func. Count: 58, Neg. LLF: 103.1787370370144
Iteration: 5, Func. Count: 72, Neg. LLF: 97.74578595109561
Iteration: 6, Func. Count: 85, Neg. LLF: 97.27211083951853
Iteration: 7, Func. Count: 98, Neg. LLF: 100.60400587007271
Iteration: 8, Func. Count: 112, Neg. LLF: 97.14158128847062
Iteration: 9, Func. Count: 125, Neg. LLF: 97.08473833446065
Iteration: 10, Func. Count: 138, Neg. LLF: 97.01752895395958
Iteration: 11, Func. Count: 151, Neg. LLF: 96.87013102807862
Iteration: 12, Func. Count: 164, Neg. LLF: 97.64842686553624
Iteration: 13, Func. Count: 178, Neg. LLF: 97.2272267351113
Iteration: 14, Func. Count: 192, Neg. LLF: 97.6667001391368
Iteration: 15, Func. Count: 206, Neg. LLF: 96.71916163726398
Iteration: 16, Func. Count: 219, Neg. LLF: 96.71485675347044
Iteration: 17, Func. Count: 232, Neg. LLF: 96.7070029853563
Iteration: 18, Func. Count: 245, Neg. LLF: 96.70209175571905
Iteration: 19, Func. Count: 258, Neg. LLF: 96.70110232318011
Iteration: 20, Func. Count: 271, Neg. LLF: 96.7009879148221
Iteration: 21, Func. Count: 284, Neg. LLF: 96.70096553000282
Iteration: 22, Func. Count: 297, Neg. LLF: 96.70096272684192
Iteration: 23, Func. Count: 309, Neg. LLF: 96.7009627870307
Optimization terminated successfully (Exit mode 0)
Current function value: 96.70096272684192
Iterations: 23
Function evaluations: 309
Gradient evaluations: 23
Iteration: 1, Func. Count: 7, Neg. LLF: 115.98760317811038
Iteration: 2, Func. Count: 15, Neg. LLF: 133.4901772297428
Iteration: 3, Func. Count: 22, Neg. LLF: 121.54523094206678
Iteration: 4, Func. Count: 29, Neg. LLF: 100.11882769792463
Iteration: 5, Func. Count: 36, Neg. LLF: 98.18630558285143
Iteration: 6, Func. Count: 42, Neg. LLF: 98.1310091802096
Iteration: 7, Func. Count: 48, Neg. LLF: 98.1178719026584
Iteration: 8, Func. Count: 54, Neg. LLF: 98.11503487653854
Iteration: 9, Func. Count: 60, Neg. LLF: 98.11499860886681
Iteration: 10, Func. Count: 65, Neg. LLF: 98.11499860884011
Optimization terminated successfully (Exit mode 0)
Current function value: 98.11499860886681
Iterations: 10
Function evaluations: 65
Gradient evaluations: 10
Iteration: 1, Func. Count: 8, Neg. LLF: 174.49976603335588
Iteration: 2, Func. Count: 18, Neg. LLF: 102.62947407090824
Iteration: 3, Func. Count: 27, Neg. LLF: 99.15020583829164
Iteration: 4, Func. Count: 35, Neg. LLF: 98.70836930854244
Iteration: 5, Func. Count: 42, Neg. LLF: 98.62406356224136
Iteration: 6, Func. Count: 49, Neg. LLF: 98.61581334473094
Iteration: 7, Func. Count: 56, Neg. LLF: 98.61234861063754
Iteration: 8, Func. Count: 63, Neg. LLF: 98.6119489133806
Iteration: 9, Func. Count: 70, Neg. LLF: 98.61194748540869
Iteration: 10, Func. Count: 76, Neg. LLF: 98.61194748566164
Optimization terminated successfully (Exit mode 0)
Current function value: 98.61194748540869
Iterations: 10
Function evaluations: 76
Gradient evaluations: 10
Iteration: 1, Func. Count: 9, Neg. LLF: 169.77560828846845
Iteration: 2, Func. Count: 21, Neg. LLF: 103.31998864361766
Iteration: 3, Func. Count: 31, Neg. LLF: 99.42144893118481
Iteration: 4, Func. Count: 40, Neg. LLF: 98.63449599473937
Iteration: 5, Func. Count: 48, Neg. LLF: 98.62850374491748
Iteration: 6, Func. Count: 56, Neg. LLF: 98.62712043610344
Iteration: 7, Func. Count: 64, Neg. LLF: 98.62700654470667
Iteration: 8, Func. Count: 72, Neg. LLF: 98.6266287901734
Iteration: 9, Func. Count: 80, Neg. LLF: 98.62579808051576
Iteration: 10, Func. Count: 88, Neg. LLF: 98.62333857546018
Iteration: 11, Func. Count: 96, Neg. LLF: 98.6193910066238
Iteration: 12, Func. Count: 104, Neg. LLF: 98.6172907732434
Iteration: 13, Func. Count: 112, Neg. LLF: 98.61389212073196
Iteration: 14, Func. Count: 120, Neg. LLF: 98.61222702920885
Iteration: 15, Func. Count: 128, Neg. LLF: 98.61422386397494
Iteration: 16, Func. Count: 137, Neg. LLF: 98.61252980918165
Iteration: 17, Func. Count: 146, Neg. LLF: 98.6119900109716
Iteration: 18, Func. Count: 154, Neg. LLF: 98.61199671713602
Optimization terminated successfully (Exit mode 0)
Current function value: 98.6119893126956
Iterations: 18
Function evaluations: 155
Gradient evaluations: 18
Iteration: 1, Func. Count: 10, Neg. LLF: 102.14361469143786
Iteration: 2, Func. Count: 22, Neg. LLF: 113.20431169244272
Iteration: 3, Func. Count: 32, Neg. LLF: 166.22655799858987
Iteration: 4, Func. Count: 42, Neg. LLF: 101.79286578028533
Iteration: 5, Func. Count: 52, Neg. LLF: 97.9690571240504
Iteration: 6, Func. Count: 61, Neg. LLF: 98.53522363368204
Iteration: 7, Func. Count: 71, Neg. LLF: 98.68094029914509
Iteration: 8, Func. Count: 81, Neg. LLF: 98.56739558723851
Iteration: 9, Func. Count: 92, Neg. LLF: 99.51911762498173
Iteration: 10, Func. Count: 102, Neg. LLF: 97.4201038686928
Iteration: 11, Func. Count: 111, Neg. LLF: 97.40542934748942
Iteration: 12, Func. Count: 120, Neg. LLF: 97.39622169535353
Iteration: 13, Func. Count: 129, Neg. LLF: 97.38217539770804
Iteration: 14, Func. Count: 138, Neg. LLF: 97.37856145577607
Iteration: 15, Func. Count: 147, Neg. LLF: 97.37842356377045
Iteration: 16, Func. Count: 156, Neg. LLF: 97.37841768771578
Iteration: 17, Func. Count: 164, Neg. LLF: 97.37841768773332
Optimization terminated successfully (Exit mode 0)
Current function value: 97.37841768771578
Iterations: 17
Function evaluations: 164
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 102.52502905569165
Iteration: 2, Func. Count: 24, Neg. LLF: 116.0293075834248
Iteration: 3, Func. Count: 35, Neg. LLF: 137.32235377735304
Iteration: 4, Func. Count: 46, Neg. LLF: 102.26730901912362
Iteration: 5, Func. Count: 57, Neg. LLF: 98.66633719900891
Iteration: 6, Func. Count: 68, Neg. LLF: 97.8455969495696
Iteration: 7, Func. Count: 78, Neg. LLF: 97.60463350179894
Iteration: 8, Func. Count: 88, Neg. LLF: 97.50492333369795
Iteration: 9, Func. Count: 98, Neg. LLF: 97.56476713033877
Iteration: 10, Func. Count: 109, Neg. LLF: 98.19268653444583
Iteration: 11, Func. Count: 120, Neg. LLF: 97.39951405128605
Iteration: 12, Func. Count: 130, Neg. LLF: 97.38954192053208
Iteration: 13, Func. Count: 140, Neg. LLF: 97.38056055691334
Iteration: 14, Func. Count: 150, Neg. LLF: 97.3786503064586
Iteration: 15, Func. Count: 160, Neg. LLF: 97.37842467311708
Iteration: 16, Func. Count: 170, Neg. LLF: 97.37841758400282
Iteration: 17, Func. Count: 179, Neg. LLF: 97.37841762537633
Optimization terminated successfully (Exit mode 0)
Current function value: 97.37841758400282
Iterations: 17
Function evaluations: 179
Gradient evaluations: 17
Iteration: 1, Func. Count: 8, Neg. LLF: 116.0154681324241
Iteration: 2, Func. Count: 17, Neg. LLF: 133.8737202917873
Iteration: 3, Func. Count: 25, Neg. LLF: 121.44216513282727
Iteration: 4, Func. Count: 33, Neg. LLF: 100.39468792221703
Iteration: 5, Func. Count: 41, Neg. LLF: 98.26834409321374
Iteration: 6, Func. Count: 48, Neg. LLF: 98.12391212218641
Iteration: 7, Func. Count: 55, Neg. LLF: 98.11312180790311
Iteration: 8, Func. Count: 62, Neg. LLF: 98.11231109437222
Iteration: 9, Func. Count: 69, Neg. LLF: 98.11226149611477
Iteration: 10, Func. Count: 76, Neg. LLF: 98.11226032088317
Iteration: 11, Func. Count: 82, Neg. LLF: 98.11226029178304
Optimization terminated successfully (Exit mode 0)
Current function value: 98.11226032088317
Iterations: 11
Function evaluations: 82
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 102.05950003260293
Iteration: 2, Func. Count: 19, Neg. LLF: 117.23341532972672
Iteration: 3, Func. Count: 28, Neg. LLF: 111.85167531344017
Iteration: 4, Func. Count: 37, Neg. LLF: 98.5550790328043
Iteration: 5, Func. Count: 45, Neg. LLF: 98.4506237659189
Iteration: 6, Func. Count: 54, Neg. LLF: 98.12090580089108
Iteration: 7, Func. Count: 62, Neg. LLF: 98.11600322149135
Iteration: 8, Func. Count: 70, Neg. LLF: 98.11348220112643
Iteration: 9, Func. Count: 78, Neg. LLF: 98.1130267740979
Iteration: 10, Func. Count: 86, Neg. LLF: 98.11246109375166
Iteration: 11, Func. Count: 94, Neg. LLF: 98.11230574699934
Iteration: 12, Func. Count: 102, Neg. LLF: 98.11227741229135
Iteration: 13, Func. Count: 110, Neg. LLF: 98.11227221835314
Iteration: 14, Func. Count: 118, Neg. LLF: 98.11226495617557
Iteration: 15, Func. Count: 126, Neg. LLF: 98.11226116990098
Iteration: 16, Func. Count: 134, Neg. LLF: 98.11226023641115
Optimization terminated successfully (Exit mode 0)
Current function value: 98.11226023641115
Iterations: 16
Function evaluations: 134
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 102.29502110068191
Iteration: 2, Func. Count: 22, Neg. LLF: 103.93569490580715
Iteration: 3, Func. Count: 32, Neg. LLF: 332.533551614288
Iteration: 4, Func. Count: 42, Neg. LLF: 99.40241810237278
Iteration: 5, Func. Count: 52, Neg. LLF: 98.15074284184429
Iteration: 6, Func. Count: 61, Neg. LLF: 103.70527793382105
Iteration: 7, Func. Count: 72, Neg. LLF: 100.96201179788406
Iteration: 8, Func. Count: 83, Neg. LLF: 97.4522340936539
Iteration: 9, Func. Count: 92, Neg. LLF: 97.35738189995547
Iteration: 10, Func. Count: 101, Neg. LLF: 97.32177915710164
Iteration: 11, Func. Count: 110, Neg. LLF: 97.30808365066994
Iteration: 12, Func. Count: 119, Neg. LLF: 97.30591727833404
Iteration: 13, Func. Count: 128, Neg. LLF: 97.30559224547541
Iteration: 14, Func. Count: 137, Neg. LLF: 97.305567161526
Iteration: 15, Func. Count: 146, Neg. LLF: 97.30555911856327
Iteration: 16, Func. Count: 155, Neg. LLF: 97.30555497686889
Iteration: 17, Func. Count: 163, Neg. LLF: 97.30555497706895
Optimization terminated successfully (Exit mode 0)
Current function value: 97.30555497686889
Iterations: 17
Function evaluations: 163
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 103.03313470929004
Iteration: 2, Func. Count: 24, Neg. LLF: 106.074440136428
Iteration: 3, Func. Count: 35, Neg. LLF: 182.02540953221765
Iteration: 4, Func. Count: 46, Neg. LLF: 103.62740955813331
Iteration: 5, Func. Count: 57, Neg. LLF: 98.79486773126216
Iteration: 6, Func. Count: 68, Neg. LLF: 97.63030632967462
Iteration: 7, Func. Count: 79, Neg. LLF: 97.07085464884882
Iteration: 8, Func. Count: 89, Neg. LLF: 100.67790047801546
Iteration: 9, Func. Count: 100, Neg. LLF: 96.9708972906469
Iteration: 10, Func. Count: 111, Neg. LLF: 96.90428464982072
Iteration: 11, Func. Count: 121, Neg. LLF: 96.90383940001125
Iteration: 12, Func. Count: 131, Neg. LLF: 96.903786528113
Iteration: 13, Func. Count: 141, Neg. LLF: 96.90377679634062
Iteration: 14, Func. Count: 151, Neg. LLF: 96.90377592747727
Optimization terminated successfully (Exit mode 0)
Current function value: 96.90377592747727
Iterations: 14
Function evaluations: 151
Gradient evaluations: 14
Iteration: 1, Func. Count: 12, Neg. LLF: 103.56828666470159
Iteration: 2, Func. Count: 26, Neg. LLF: 105.47322148103773
Iteration: 3, Func. Count: 38, Neg. LLF: 175.50626214448727
Iteration: 4, Func. Count: 50, Neg. LLF: 103.99495518886602
Iteration: 5, Func. Count: 62, Neg. LLF: 98.88190430151563
Iteration: 6, Func. Count: 74, Neg. LLF: 97.88078038575836
Iteration: 7, Func. Count: 86, Neg. LLF: 97.22274890004935
Iteration: 8, Func. Count: 97, Neg. LLF: 98.72707437229673
Iteration: 9, Func. Count: 109, Neg. LLF: 98.06852454357279
Iteration: 10, Func. Count: 121, Neg. LLF: 97.15405073002343
Iteration: 11, Func. Count: 133, Neg. LLF: 96.9476970459856
Iteration: 12, Func. Count: 144, Neg. LLF: 96.9040398155095
Iteration: 13, Func. Count: 155, Neg. LLF: 96.90381453339035
Iteration: 14, Func. Count: 166, Neg. LLF: 96.90378471824137
Iteration: 15, Func. Count: 177, Neg. LLF: 96.90377616960131
Iteration: 16, Func. Count: 187, Neg. LLF: 96.90377619343319
Optimization terminated successfully (Exit mode 0)
Current function value: 96.90377616960131
Iterations: 16
Function evaluations: 187
Gradient evaluations: 16
Iteration: 1, Func. Count: 9, Neg. LLF: 116.03786480740672
Iteration: 2, Func. Count: 19, Neg. LLF: 134.59368582067822
Iteration: 3, Func. Count: 28, Neg. LLF: 120.90994948182171
Iteration: 4, Func. Count: 37, Neg. LLF: 100.37250635677411
Iteration: 5, Func. Count: 46, Neg. LLF: 98.26561966459418
Iteration: 6, Func. Count: 54, Neg. LLF: 98.1241908039692
Iteration: 7, Func. Count: 62, Neg. LLF: 98.11311272129637
Iteration: 8, Func. Count: 70, Neg. LLF: 98.1123135195957
Iteration: 9, Func. Count: 78, Neg. LLF: 98.11226128608139
Iteration: 10, Func. Count: 86, Neg. LLF: 98.11226023663579
Iteration: 11, Func. Count: 93, Neg. LLF: 98.11226030125916
Optimization terminated successfully (Exit mode 0)
Current function value: 98.11226023663579
Iterations: 11
Function evaluations: 93
Gradient evaluations: 11
Iteration: 1, Func. Count: 10, Neg. LLF: 101.72618634061415
Iteration: 2, Func. Count: 22, Neg. LLF: 121.17979632127998
Iteration: 3, Func. Count: 32, Neg. LLF: 103.68355421914121
Iteration: 4, Func. Count: 42, Neg. LLF: 98.6471245515321
Iteration: 5, Func. Count: 51, Neg. LLF: 98.4639635155845
Iteration: 6, Func. Count: 60, Neg. LLF: 98.39792641124585
Iteration: 7, Func. Count: 69, Neg. LLF: 98.17450396162828
Iteration: 8, Func. Count: 78, Neg. LLF: 98.13266065211137
Iteration: 9, Func. Count: 87, Neg. LLF: 98.11769144320948
Iteration: 10, Func. Count: 96, Neg. LLF: 98.11439149161758
Iteration: 11, Func. Count: 105, Neg. LLF: 98.11394862872505
Iteration: 12, Func. Count: 114, Neg. LLF: 98.11325010608724
Iteration: 13, Func. Count: 123, Neg. LLF: 98.11253477989897
Iteration: 14, Func. Count: 132, Neg. LLF: 98.1122942312544
Iteration: 15, Func. Count: 141, Neg. LLF: 98.11226745466146
Iteration: 16, Func. Count: 150, Neg. LLF: 98.11226436571975
Iteration: 17, Func. Count: 159, Neg. LLF: 98.11226252004242
Iteration: 18, Func. Count: 168, Neg. LLF: 98.11226084785496
Iteration: 19, Func. Count: 176, Neg. LLF: 98.11226086473135
Optimization terminated successfully (Exit mode 0)
Current function value: 98.11226084785496
Iterations: 19
Function evaluations: 176
Gradient evaluations: 19
Iteration: 1, Func. Count: 11, Neg. LLF: 102.18373578973296
Iteration: 2, Func. Count: 24, Neg. LLF: 103.32951059830229
Iteration: 3, Func. Count: 35, Neg. LLF: 352.32397810484923
Iteration: 4, Func. Count: 46, Neg. LLF: 98.90934267195139
Iteration: 5, Func. Count: 57, Neg. LLF: 98.1856936943462
Iteration: 6, Func. Count: 67, Neg. LLF: 103.01200211653669
Iteration: 7, Func. Count: 79, Neg. LLF: 100.93174105045117
Iteration: 8, Func. Count: 91, Neg. LLF: 97.50501693455547
Iteration: 9, Func. Count: 101, Neg. LLF: 97.40054249900685
Iteration: 10, Func. Count: 111, Neg. LLF: 97.33520297269733
Iteration: 11, Func. Count: 121, Neg. LLF: 97.31590639310237
Iteration: 12, Func. Count: 131, Neg. LLF: 97.30946770201682
Iteration: 13, Func. Count: 141, Neg. LLF: 97.30629795580646
Iteration: 14, Func. Count: 151, Neg. LLF: 97.30571967647606
Iteration: 15, Func. Count: 161, Neg. LLF: 97.30561278798989
Iteration: 16, Func. Count: 171, Neg. LLF: 97.30556603557952
Iteration: 17, Func. Count: 181, Neg. LLF: 97.30555524231407
Iteration: 18, Func. Count: 191, Neg. LLF: 97.30555439366199
Optimization terminated successfully (Exit mode 0)
Current function value: 97.30555439366199
Iterations: 18
Function evaluations: 191
Gradient evaluations: 18
Iteration: 1, Func. Count: 12, Neg. LLF: 102.90349107977546
Iteration: 2, Func. Count: 26, Neg. LLF: 105.30459211101773
Iteration: 3, Func. Count: 38, Neg. LLF: 181.60147188214904
Iteration: 4, Func. Count: 50, Neg. LLF: 103.29794552274427
Iteration: 5, Func. Count: 62, Neg. LLF: 98.44234662411128
Iteration: 6, Func. Count: 74, Neg. LLF: 97.41024486630212
Iteration: 7, Func. Count: 85, Neg. LLF: 101.60105502526527
Iteration: 8, Func. Count: 97, Neg. LLF: 99.19213686136332
Iteration: 9, Func. Count: 109, Neg. LLF: 96.92778163509111
Iteration: 10, Func. Count: 120, Neg. LLF: 96.90850128443827
Iteration: 11, Func. Count: 131, Neg. LLF: 96.90500610778791
Iteration: 12, Func. Count: 142, Neg. LLF: 96.90402277525548
Iteration: 13, Func. Count: 153, Neg. LLF: 96.90379661601372
Iteration: 14, Func. Count: 164, Neg. LLF: 96.90377807628684
Iteration: 15, Func. Count: 175, Neg. LLF: 96.903776013559
Iteration: 16, Func. Count: 185, Neg. LLF: 96.90377601357858
Optimization terminated successfully (Exit mode 0)
Current function value: 96.903776013559
Iterations: 16
Function evaluations: 185
Gradient evaluations: 16
Iteration: 1, Func. Count: 13, Neg. LLF: 103.40452813905601
Iteration: 2, Func. Count: 28, Neg. LLF: 104.5319134761687
Iteration: 3, Func. Count: 41, Neg. LLF: 181.40168431641183
Iteration: 4, Func. Count: 54, Neg. LLF: 103.79858765096498
Iteration: 5, Func. Count: 67, Neg. LLF: 98.48615314429782
Iteration: 6, Func. Count: 80, Neg. LLF: 97.82356979890127
Iteration: 7, Func. Count: 93, Neg. LLF: 97.1370221194424
Iteration: 8, Func. Count: 105, Neg. LLF: 103.24928849276534
Iteration: 9, Func. Count: 118, Neg. LLF: 97.0852237061164
Iteration: 10, Func. Count: 131, Neg. LLF: 96.92016542944143
Iteration: 11, Func. Count: 143, Neg. LLF: 96.90662261387656
Iteration: 12, Func. Count: 155, Neg. LLF: 96.9042302045687
Iteration: 13, Func. Count: 167, Neg. LLF: 96.90377924634367
Iteration: 14, Func. Count: 179, Neg. LLF: 96.90377594221518
Iteration: 15, Func. Count: 190, Neg. LLF: 96.9037759659457
Optimization terminated successfully (Exit mode 0)
Current function value: 96.90377594221518
Iterations: 15
Function evaluations: 190
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 111.05817753352119
Iteration: 2, Func. Count: 21, Neg. LLF: 507.81216659297013
Iteration: 3, Func. Count: 31, Neg. LLF: 7235958.229444204
Iteration: 4, Func. Count: 41, Neg. LLF: 97.68472045649014
Iteration: 5, Func. Count: 50, Neg. LLF: 97.67133107660337
Iteration: 6, Func. Count: 60, Neg. LLF: 97.86133317996214
Iteration: 7, Func. Count: 70, Neg. LLF: 97.53882072210683
Iteration: 8, Func. Count: 79, Neg. LLF: 97.53703713442636
Iteration: 9, Func. Count: 88, Neg. LLF: 97.53545626647681
Iteration: 10, Func. Count: 97, Neg. LLF: 97.53541867550788
Iteration: 11, Func. Count: 106, Neg. LLF: 97.53540751140483
Iteration: 12, Func. Count: 114, Neg. LLF: 97.53540751140251
Optimization terminated successfully (Exit mode 0)
Current function value: 97.53540751140483
Iterations: 12
Function evaluations: 114
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 101.72110961874175
Iteration: 2, Func. Count: 23, Neg. LLF: 201.16559455531828
Iteration: 3, Func. Count: 34, Neg. LLF: 99.04259882700323
Iteration: 4, Func. Count: 45, Neg. LLF: 98.56167914420763
Iteration: 5, Func. Count: 56, Neg. LLF: 99.46084690116804
Iteration: 6, Func. Count: 67, Neg. LLF: 98.1109135741045
Iteration: 7, Func. Count: 77, Neg. LLF: 97.99202645288688
Iteration: 8, Func. Count: 87, Neg. LLF: 97.98856277868998
Iteration: 9, Func. Count: 97, Neg. LLF: 97.9848737177692
Iteration: 10, Func. Count: 107, Neg. LLF: 97.98471797185697
Iteration: 11, Func. Count: 117, Neg. LLF: 97.98471339270347
Iteration: 12, Func. Count: 126, Neg. LLF: 97.98471339258731
Optimization terminated successfully (Exit mode 0)
Current function value: 97.98471339270347
Iterations: 12
Function evaluations: 126
Gradient evaluations: 12
Iteration: 1, Func. Count: 12, Neg. LLF: 101.8591203448218
Iteration: 2, Func. Count: 25, Neg. LLF: 142.0017147850661
Iteration: 3, Func. Count: 37, Neg. LLF: 99.24634590963994
Iteration: 4, Func. Count: 49, Neg. LLF: 99.03981085254182
Iteration: 5, Func. Count: 61, Neg. LLF: 98.10564772944046
Iteration: 6, Func. Count: 73, Neg. LLF: 97.41353200295222
Iteration: 7, Func. Count: 84, Neg. LLF: 97.33088915729037
Iteration: 8, Func. Count: 95, Neg. LLF: 97.31708206937714
Iteration: 9, Func. Count: 106, Neg. LLF: 97.3098638328391
Iteration: 10, Func. Count: 117, Neg. LLF: 97.30687401283807
Iteration: 11, Func. Count: 128, Neg. LLF: 97.30591153860234
Iteration: 12, Func. Count: 139, Neg. LLF: 97.30569385956292
Iteration: 13, Func. Count: 150, Neg. LLF: 97.30557364358074
Iteration: 14, Func. Count: 161, Neg. LLF: 97.30555636857034
Iteration: 15, Func. Count: 172, Neg. LLF: 97.30555477485622
Iteration: 16, Func. Count: 182, Neg. LLF: 97.30555477488244
Optimization terminated successfully (Exit mode 0)
Current function value: 97.30555477485622
Iterations: 16
Function evaluations: 182
Gradient evaluations: 16
Iteration: 1, Func. Count: 13, Neg. LLF: 101.72820527921914
Iteration: 2, Func. Count: 28, Neg. LLF: 121.19721947403033
Iteration: 3, Func. Count: 41, Neg. LLF: 178.2448922384637
Iteration: 4, Func. Count: 54, Neg. LLF: 104.09036389737386
Iteration: 5, Func. Count: 67, Neg. LLF: 102.97197550887552
Iteration: 6, Func. Count: 80, Neg. LLF: 99.40377258225854
Iteration: 7, Func. Count: 93, Neg. LLF: 112.65044883116452
Iteration: 8, Func. Count: 107, Neg. LLF: 97.299477525245
Iteration: 9, Func. Count: 119, Neg. LLF: 97.53384535779726
Iteration: 10, Func. Count: 132, Neg. LLF: 98.02094646906038
Iteration: 11, Func. Count: 146, Neg. LLF: 97.12594176510129
Iteration: 12, Func. Count: 158, Neg. LLF: 97.06826182999082
Iteration: 13, Func. Count: 170, Neg. LLF: 97.04225232743113
Iteration: 14, Func. Count: 182, Neg. LLF: 97.02038067109929
Iteration: 15, Func. Count: 194, Neg. LLF: 96.9563792996363
Iteration: 16, Func. Count: 206, Neg. LLF: 96.91142226504932
Iteration: 17, Func. Count: 218, Neg. LLF: 96.89396399042704
Iteration: 18, Func. Count: 230, Neg. LLF: 96.8925765562473
Iteration: 19, Func. Count: 242, Neg. LLF: 96.89148418608254
Iteration: 20, Func. Count: 254, Neg. LLF: 96.89146186782301
Iteration: 21, Func. Count: 266, Neg. LLF: 96.89146096500993
Optimization terminated successfully (Exit mode 0)
Current function value: 96.89146096500993
Iterations: 21
Function evaluations: 266
Gradient evaluations: 21
Iteration: 1, Func. Count: 14, Neg. LLF: 102.37136681777362
Iteration: 2, Func. Count: 30, Neg. LLF: 106.1307545262508
Iteration: 3, Func. Count: 44, Neg. LLF: 164.91389200658165
Iteration: 4, Func. Count: 58, Neg. LLF: 103.11089131355398
Iteration: 5, Func. Count: 72, Neg. LLF: 97.96801731056027
Iteration: 6, Func. Count: 86, Neg. LLF: 98.0161690687133
Iteration: 7, Func. Count: 100, Neg. LLF: 97.20488956365041
Iteration: 8, Func. Count: 113, Neg. LLF: 96.96466201090782
Iteration: 9, Func. Count: 126, Neg. LLF: 96.92931442943191
Iteration: 10, Func. Count: 139, Neg. LLF: 96.90097784267388
Iteration: 11, Func. Count: 152, Neg. LLF: 96.89239856641356
Iteration: 12, Func. Count: 165, Neg. LLF: 96.89194039083989
Iteration: 13, Func. Count: 178, Neg. LLF: 96.89146248996313
Iteration: 14, Func. Count: 191, Neg. LLF: 96.89146125334679
Iteration: 15, Func. Count: 203, Neg. LLF: 96.89146127066877
Optimization terminated successfully (Exit mode 0)
Current function value: 96.89146125334679
Iterations: 15
Function evaluations: 203
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 113.90968451034459
Iteration: 2, Func. Count: 23, Neg. LLF: 307.921337475942
Iteration: 3, Func. Count: 34, Neg. LLF: 8600861.08793945
Iteration: 4, Func. Count: 45, Neg. LLF: 97.67075538085447
Iteration: 5, Func. Count: 55, Neg. LLF: 97.70534250841358
Iteration: 6, Func. Count: 66, Neg. LLF: 97.73961051040715
Iteration: 7, Func. Count: 77, Neg. LLF: 97.54712565859768
Iteration: 8, Func. Count: 87, Neg. LLF: 97.53850699805461
Iteration: 9, Func. Count: 97, Neg. LLF: 97.53560589388522
Iteration: 10, Func. Count: 107, Neg. LLF: 97.53543039920555
Iteration: 11, Func. Count: 117, Neg. LLF: 97.53540757905895
Iteration: 12, Func. Count: 126, Neg. LLF: 97.53540766396937
Optimization terminated successfully (Exit mode 0)
Current function value: 97.53540757905895
Iterations: 12
Function evaluations: 126
Gradient evaluations: 12
Iteration: 1, Func. Count: 12, Neg. LLF: 101.94364788633403
Iteration: 2, Func. Count: 25, Neg. LLF: 204.46021661906056
Iteration: 3, Func. Count: 37, Neg. LLF: 99.08690099633523
Iteration: 4, Func. Count: 49, Neg. LLF: 98.5807413896715
Iteration: 5, Func. Count: 61, Neg. LLF: 99.36248088034434
Iteration: 6, Func. Count: 73, Neg. LLF: 98.15435378359741
Iteration: 7, Func. Count: 85, Neg. LLF: 97.98482419368317
Iteration: 8, Func. Count: 96, Neg. LLF: 97.98483757343521
Iteration: 9, Func. Count: 108, Neg. LLF: 97.98471345190188
Iteration: 10, Func. Count: 118, Neg. LLF: 97.98471345181758
Optimization terminated successfully (Exit mode 0)
Current function value: 97.98471345190188
Iterations: 10
Function evaluations: 118
Gradient evaluations: 10
Iteration: 1, Func. Count: 13, Neg. LLF: 102.05578002676761
Iteration: 2, Func. Count: 27, Neg. LLF: 143.06883158097367
Iteration: 3, Func. Count: 40, Neg. LLF: 99.30231665746172
Iteration: 4, Func. Count: 53, Neg. LLF: 99.8683746869322
Iteration: 5, Func. Count: 66, Neg. LLF: 98.12728506554944
Iteration: 6, Func. Count: 79, Neg. LLF: 97.38896482207818
Iteration: 7, Func. Count: 91, Neg. LLF: 97.34793356515517
Iteration: 8, Func. Count: 103, Neg. LLF: 97.32065223570889
Iteration: 9, Func. Count: 115, Neg. LLF: 97.30714785639078
Iteration: 10, Func. Count: 127, Neg. LLF: 97.30584306970249
Iteration: 11, Func. Count: 139, Neg. LLF: 97.3056348563437
Iteration: 12, Func. Count: 151, Neg. LLF: 97.3055694267405
Iteration: 13, Func. Count: 163, Neg. LLF: 97.30555604542376
Iteration: 14, Func. Count: 175, Neg. LLF: 97.3055544282363
Iteration: 15, Func. Count: 186, Neg. LLF: 97.30555442818597
Optimization terminated successfully (Exit mode 0)
Current function value: 97.3055544282363
Iterations: 15
Function evaluations: 186
Gradient evaluations: 15
Iteration: 1, Func. Count: 14, Neg. LLF: 101.80974536150708
Iteration: 2, Func. Count: 30, Neg. LLF: 119.42102701733343
Iteration: 3, Func. Count: 44, Neg. LLF: 187.24478078409192
Iteration: 4, Func. Count: 58, Neg. LLF: 104.25830607695016
Iteration: 5, Func. Count: 72, Neg. LLF: 103.09523004533948
Iteration: 6, Func. Count: 86, Neg. LLF: 99.55134849629827
Iteration: 7, Func. Count: 100, Neg. LLF: 114.80822715752632
Iteration: 8, Func. Count: 115, Neg. LLF: 97.30854722503179
Iteration: 9, Func. Count: 128, Neg. LLF: 97.5444797382616
Iteration: 10, Func. Count: 142, Neg. LLF: 98.11949383160217
Iteration: 11, Func. Count: 157, Neg. LLF: 97.13304131029545
Iteration: 12, Func. Count: 170, Neg. LLF: 97.06991048731436
Iteration: 13, Func. Count: 183, Neg. LLF: 97.04370154262952
Iteration: 14, Func. Count: 196, Neg. LLF: 97.02171953581114
Iteration: 15, Func. Count: 209, Neg. LLF: 97.04219602075023
Iteration: 16, Func. Count: 223, Neg. LLF: 96.91532384025528
Iteration: 17, Func. Count: 236, Neg. LLF: 96.89601784980285
Iteration: 18, Func. Count: 249, Neg. LLF: 96.89634732836296
Iteration: 19, Func. Count: 263, Neg. LLF: 96.89147271025422
Iteration: 20, Func. Count: 276, Neg. LLF: 96.8914610690056
Iteration: 21, Func. Count: 288, Neg. LLF: 96.8914610690637
Optimization terminated successfully (Exit mode 0)
Current function value: 96.8914610690056
Iterations: 21
Function evaluations: 288
Gradient evaluations: 21
Iteration: 1, Func. Count: 15, Neg. LLF: 102.451860149378
Iteration: 2, Func. Count: 32, Neg. LLF: 105.81063223455621
Iteration: 3, Func. Count: 47, Neg. LLF: 169.99999814312204
Iteration: 4, Func. Count: 62, Neg. LLF: 103.06416976819446
Iteration: 5, Func. Count: 77, Neg. LLF: 98.00908456747958
Iteration: 6, Func. Count: 92, Neg. LLF: 98.18961767909262
Iteration: 7, Func. Count: 107, Neg. LLF: 97.18473626168914
Iteration: 8, Func. Count: 121, Neg. LLF: 96.96918587183269
Iteration: 9, Func. Count: 135, Neg. LLF: 96.94573703458691
Iteration: 10, Func. Count: 149, Neg. LLF: 96.89486128005434
Iteration: 11, Func. Count: 163, Neg. LLF: 96.89248777384377
Iteration: 12, Func. Count: 177, Neg. LLF: 96.8916856991724
Iteration: 13, Func. Count: 191, Neg. LLF: 96.89147031802817
Iteration: 14, Func. Count: 205, Neg. LLF: 96.89146244129451
Iteration: 15, Func. Count: 219, Neg. LLF: 96.89146105111094
Iteration: 16, Func. Count: 232, Neg. LLF: 96.8914610685096
Optimization terminated successfully (Exit mode 0)
Current function value: 96.89146105111094
Iterations: 16
Function evaluations: 232
Gradient evaluations: 16
Iteration: 1, Func. Count: 8, Neg. LLF: 114.79033874934626
Iteration: 2, Func. Count: 17, Neg. LLF: 109.05118610606372
Iteration: 3, Func. Count: 25, Neg. LLF: 156.50794580169585
Iteration: 4, Func. Count: 33, Neg. LLF: 98.86120602641718
Iteration: 5, Func. Count: 40, Neg. LLF: 98.20461461229269
Iteration: 6, Func. Count: 47, Neg. LLF: 98.13314621035148
Iteration: 7, Func. Count: 54, Neg. LLF: 98.11812438458573
Iteration: 8, Func. Count: 61, Neg. LLF: 98.11502287336228
Iteration: 9, Func. Count: 68, Neg. LLF: 98.11499911495895
Iteration: 10, Func. Count: 75, Neg. LLF: 98.11499851390273
Optimization terminated successfully (Exit mode 0)
Current function value: 98.11499851390273
Iterations: 10
Function evaluations: 75
Gradient evaluations: 10
Iteration: 1, Func. Count: 9, Neg. LLF: 174.49386670161834
Iteration: 2, Func. Count: 20, Neg. LLF: 103.12258868095637
Iteration: 3, Func. Count: 30, Neg. LLF: 99.15477653452535
Iteration: 4, Func. Count: 39, Neg. LLF: 98.70930010012388
Iteration: 5, Func. Count: 47, Neg. LLF: 98.62360638538968
Iteration: 6, Func. Count: 55, Neg. LLF: 98.61589475615261
Iteration: 7, Func. Count: 63, Neg. LLF: 98.61234295931426
Iteration: 8, Func. Count: 71, Neg. LLF: 98.61194954961152
Iteration: 9, Func. Count: 79, Neg. LLF: 98.61194746784207
Iteration: 10, Func. Count: 86, Neg. LLF: 98.61194746760054
Optimization terminated successfully (Exit mode 0)
Current function value: 98.61194746784207
Iterations: 10
Function evaluations: 86
Gradient evaluations: 10
Iteration: 1, Func. Count: 10, Neg. LLF: 169.60222693598672
Iteration: 2, Func. Count: 23, Neg. LLF: 103.47882182158786
Iteration: 3, Func. Count: 34, Neg. LLF: 99.40013645777628
Iteration: 4, Func. Count: 44, Neg. LLF: 98.63442179208788
Iteration: 5, Func. Count: 53, Neg. LLF: 98.62891108983005
Iteration: 6, Func. Count: 62, Neg. LLF: 98.62737774927808
Iteration: 7, Func. Count: 71, Neg. LLF: 98.62728696391969
Iteration: 8, Func. Count: 80, Neg. LLF: 98.6269245172348
Iteration: 9, Func. Count: 89, Neg. LLF: 98.62587804154265
Iteration: 10, Func. Count: 98, Neg. LLF: 98.62223179057261
Iteration: 11, Func. Count: 107, Neg. LLF: 98.61848293324218
Iteration: 12, Func. Count: 116, Neg. LLF: 98.61491920957772
Iteration: 13, Func. Count: 125, Neg. LLF: 98.61206477868879
Iteration: 14, Func. Count: 134, Neg. LLF: 98.61202925507142
Iteration: 15, Func. Count: 143, Neg. LLF: 98.61195335404435
Iteration: 16, Func. Count: 152, Neg. LLF: 106.63299712874539
Optimization terminated successfully (Exit mode 0)
Current function value: 98.61195255191984
Iterations: 17
Function evaluations: 156
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 102.18496046717691
Iteration: 2, Func. Count: 24, Neg. LLF: 111.83409744340226
Iteration: 3, Func. Count: 35, Neg. LLF: 169.64940025059178
Iteration: 4, Func. Count: 46, Neg. LLF: 102.04502627939245
Iteration: 5, Func. Count: 57, Neg. LLF: 98.0410793260534
Iteration: 6, Func. Count: 67, Neg. LLF: 98.54053323836247
Iteration: 7, Func. Count: 78, Neg. LLF: 98.6352675232207
Iteration: 8, Func. Count: 89, Neg. LLF: 98.3338379935928
Iteration: 9, Func. Count: 100, Neg. LLF: 98.90778257903415
Iteration: 10, Func. Count: 111, Neg. LLF: 97.43411523385531
Iteration: 11, Func. Count: 121, Neg. LLF: 97.41952253499667
Iteration: 12, Func. Count: 131, Neg. LLF: 97.40655033855572
Iteration: 13, Func. Count: 141, Neg. LLF: 97.39059631420335
Iteration: 14, Func. Count: 151, Neg. LLF: 97.3803007051341
Iteration: 15, Func. Count: 161, Neg. LLF: 97.37843223371056
Iteration: 16, Func. Count: 171, Neg. LLF: 97.37841769813944
Iteration: 17, Func. Count: 180, Neg. LLF: 97.3784176981312
Optimization terminated successfully (Exit mode 0)
Current function value: 97.37841769813944
Iterations: 17
Function evaluations: 180
Gradient evaluations: 17
Iteration: 1, Func. Count: 12, Neg. LLF: 102.51064324564098
Iteration: 2, Func. Count: 26, Neg. LLF: 114.83154304507234
Iteration: 3, Func. Count: 38, Neg. LLF: 137.79974227627332
Iteration: 4, Func. Count: 50, Neg. LLF: 102.4719306100048
Iteration: 5, Func. Count: 62, Neg. LLF: 98.70823559573489
Iteration: 6, Func. Count: 74, Neg. LLF: 97.86817790211656
Iteration: 7, Func. Count: 85, Neg. LLF: 97.569873805294
Iteration: 8, Func. Count: 96, Neg. LLF: 97.49279881138806
Iteration: 9, Func. Count: 107, Neg. LLF: 97.70260903237718
Iteration: 10, Func. Count: 119, Neg. LLF: 97.86830790045673
Iteration: 11, Func. Count: 131, Neg. LLF: 97.39956619139718
Iteration: 12, Func. Count: 142, Neg. LLF: 97.38467442813548
Iteration: 13, Func. Count: 153, Neg. LLF: 97.37852560087
Iteration: 14, Func. Count: 164, Neg. LLF: 97.37842038236388
Iteration: 15, Func. Count: 175, Neg. LLF: 97.37841764205712
Iteration: 16, Func. Count: 185, Neg. LLF: 97.37841768342135
Optimization terminated successfully (Exit mode 0)
Current function value: 97.37841764205712
Iterations: 16
Function evaluations: 185
Gradient evaluations: 16
Iteration: 1, Func. Count: 9, Neg. LLF: 114.6628945766875
Iteration: 2, Func. Count: 19, Neg. LLF: 110.57596719729843
Iteration: 3, Func. Count: 28, Neg. LLF: 163.41677734977705
Iteration: 4, Func. Count: 37, Neg. LLF: 98.90537726691456
Iteration: 5, Func. Count: 45, Neg. LLF: 98.20444435422037
Iteration: 6, Func. Count: 53, Neg. LLF: 98.1400222500777
Iteration: 7, Func. Count: 61, Neg. LLF: 98.11506646710039
Iteration: 8, Func. Count: 69, Neg. LLF: 98.1133294162629
Iteration: 9, Func. Count: 77, Neg. LLF: 98.11237115492837
Iteration: 10, Func. Count: 85, Neg. LLF: 98.11227275354753
Iteration: 11, Func. Count: 93, Neg. LLF: 98.11226057212276
Iteration: 12, Func. Count: 100, Neg. LLF: 98.11226054303953
Optimization terminated successfully (Exit mode 0)
Current function value: 98.11226057212276
Iterations: 12
Function evaluations: 100
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 102.41992707434297
Iteration: 2, Func. Count: 21, Neg. LLF: 115.82875737632041
Iteration: 3, Func. Count: 31, Neg. LLF: 110.8971127183714
Iteration: 4, Func. Count: 41, Neg. LLF: 98.60218164990287
Iteration: 5, Func. Count: 50, Neg. LLF: 98.44631948309272
Iteration: 6, Func. Count: 60, Neg. LLF: 98.15564646639234
Iteration: 7, Func. Count: 69, Neg. LLF: 98.11541313306448
Iteration: 8, Func. Count: 78, Neg. LLF: 98.11444298538746
Iteration: 9, Func. Count: 87, Neg. LLF: 98.1135730346169
Iteration: 10, Func. Count: 96, Neg. LLF: 98.11261456530605
Iteration: 11, Func. Count: 105, Neg. LLF: 98.11233376170577
Iteration: 12, Func. Count: 114, Neg. LLF: 98.11229869280974
Iteration: 13, Func. Count: 123, Neg. LLF: 98.1122851815902
Iteration: 14, Func. Count: 132, Neg. LLF: 98.11226731471382
Iteration: 15, Func. Count: 141, Neg. LLF: 98.11226119171752
Iteration: 16, Func. Count: 150, Neg. LLF: 98.11226021052505
Optimization terminated successfully (Exit mode 0)
Current function value: 98.11226021052505
Iterations: 16
Function evaluations: 150
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 102.47055323635108
Iteration: 2, Func. Count: 24, Neg. LLF: 103.81909323362085
Iteration: 3, Func. Count: 35, Neg. LLF: 429.8990541431537
Iteration: 4, Func. Count: 46, Neg. LLF: 99.51879502943083
Iteration: 5, Func. Count: 57, Neg. LLF: 98.0558340685485
Iteration: 6, Func. Count: 67, Neg. LLF: 104.03341372057511
Iteration: 7, Func. Count: 79, Neg. LLF: 100.45126240850234
Iteration: 8, Func. Count: 91, Neg. LLF: 97.41302618767843
Iteration: 9, Func. Count: 101, Neg. LLF: 97.34216719200685
Iteration: 10, Func. Count: 111, Neg. LLF: 97.31653478232052
Iteration: 11, Func. Count: 121, Neg. LLF: 97.30686688922157
Iteration: 12, Func. Count: 131, Neg. LLF: 97.30580888470672
Iteration: 13, Func. Count: 141, Neg. LLF: 97.30563386914149
Iteration: 14, Func. Count: 151, Neg. LLF: 97.30557866316585
Iteration: 15, Func. Count: 161, Neg. LLF: 97.30555719532408
Iteration: 16, Func. Count: 171, Neg. LLF: 97.30555452568208
Iteration: 17, Func. Count: 180, Neg. LLF: 97.30555452576365
Optimization terminated successfully (Exit mode 0)
Current function value: 97.30555452568208
Iterations: 17
Function evaluations: 180
Gradient evaluations: 17
Iteration: 1, Func. Count: 12, Neg. LLF: 103.09527387106941
Iteration: 2, Func. Count: 26, Neg. LLF: 105.54234473457036
Iteration: 3, Func. Count: 38, Neg. LLF: 195.41408414253198
Iteration: 4, Func. Count: 50, Neg. LLF: 103.48146281632935
Iteration: 5, Func. Count: 62, Neg. LLF: 98.54772596549154
Iteration: 6, Func. Count: 74, Neg. LLF: 97.44091896219884
Iteration: 7, Func. Count: 85, Neg. LLF: 101.67990483791712
Iteration: 8, Func. Count: 97, Neg. LLF: 98.77360812798
Iteration: 9, Func. Count: 109, Neg. LLF: 96.94224769852559
Iteration: 10, Func. Count: 120, Neg. LLF: 96.91241155886253
Iteration: 11, Func. Count: 131, Neg. LLF: 96.90568070534506
Iteration: 12, Func. Count: 142, Neg. LLF: 96.90425686356772
Iteration: 13, Func. Count: 153, Neg. LLF: 96.90381908614754
Iteration: 14, Func. Count: 164, Neg. LLF: 96.90378156855355
Iteration: 15, Func. Count: 175, Neg. LLF: 96.90377610454047
Iteration: 16, Func. Count: 185, Neg. LLF: 96.90377610456136
Optimization terminated successfully (Exit mode 0)
Current function value: 96.90377610454047
Iterations: 16
Function evaluations: 185
Gradient evaluations: 16
Iteration: 1, Func. Count: 13, Neg. LLF: 103.56347196629542
Iteration: 2, Func. Count: 28, Neg. LLF: 105.10341929028976
Iteration: 3, Func. Count: 41, Neg. LLF: 176.9900294890654
Iteration: 4, Func. Count: 54, Neg. LLF: 103.93003236376718
Iteration: 5, Func. Count: 67, Neg. LLF: 98.79784195196342
Iteration: 6, Func. Count: 80, Neg. LLF: 97.90187899244826
Iteration: 7, Func. Count: 93, Neg. LLF: 97.19709463906415
Iteration: 8, Func. Count: 105, Neg. LLF: 100.09210873924573
Iteration: 9, Func. Count: 118, Neg. LLF: 97.73486766529625
Iteration: 10, Func. Count: 131, Neg. LLF: 96.9944175152706
Iteration: 11, Func. Count: 143, Neg. LLF: 96.90513879048612
Iteration: 12, Func. Count: 155, Neg. LLF: 96.90401042055069
Iteration: 13, Func. Count: 167, Neg. LLF: 96.90381048822957
Iteration: 14, Func. Count: 179, Neg. LLF: 96.90378299333491
Iteration: 15, Func. Count: 191, Neg. LLF: 96.9037759188612
Iteration: 16, Func. Count: 202, Neg. LLF: 96.90377594261771
Optimization terminated successfully (Exit mode 0)
Current function value: 96.9037759188612
Iterations: 16
Function evaluations: 202
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 114.64721014771736
Iteration: 2, Func. Count: 21, Neg. LLF: 111.52079947172861
Iteration: 3, Func. Count: 31, Neg. LLF: 162.00372386360718
Iteration: 4, Func. Count: 41, Neg. LLF: 98.96928840691044
Iteration: 5, Func. Count: 51, Neg. LLF: 98.11830154058529
Iteration: 6, Func. Count: 60, Neg. LLF: 98.11586632187395
Iteration: 7, Func. Count: 69, Neg. LLF: 98.11230916965323
Iteration: 8, Func. Count: 78, Neg. LLF: 98.11227088888964
Iteration: 9, Func. Count: 87, Neg. LLF: 98.11226022066089
Iteration: 10, Func. Count: 95, Neg. LLF: 98.11226028528557
Optimization terminated successfully (Exit mode 0)
Current function value: 98.11226022066089
Iterations: 10
Function evaluations: 95
Gradient evaluations: 10
Iteration: 1, Func. Count: 11, Neg. LLF: 102.06657618249133
Iteration: 2, Func. Count: 23, Neg. LLF: 113.90112284210063
Iteration: 3, Func. Count: 34, Neg. LLF: 110.42703737673408
Iteration: 4, Func. Count: 45, Neg. LLF: 98.60232815385612
Iteration: 5, Func. Count: 55, Neg. LLF: 98.45226075636509
Iteration: 6, Func. Count: 66, Neg. LLF: 98.16148816647056
Iteration: 7, Func. Count: 76, Neg. LLF: 98.11569718776788
Iteration: 8, Func. Count: 86, Neg. LLF: 98.11468232384595
Iteration: 9, Func. Count: 96, Neg. LLF: 98.11356621511939
Iteration: 10, Func. Count: 106, Neg. LLF: 98.11261160600205
Iteration: 11, Func. Count: 116, Neg. LLF: 98.11232798636722
Iteration: 12, Func. Count: 126, Neg. LLF: 98.11229478297095
Iteration: 13, Func. Count: 136, Neg. LLF: 98.11228305882881
Iteration: 14, Func. Count: 146, Neg. LLF: 98.11226620265401
Iteration: 15, Func. Count: 156, Neg. LLF: 98.1122609910982
Iteration: 16, Func. Count: 166, Neg. LLF: 98.11226020012427
Optimization terminated successfully (Exit mode 0)
Current function value: 98.11226020012427
Iterations: 16
Function evaluations: 166
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 102.35158424961634
Iteration: 2, Func. Count: 26, Neg. LLF: 103.23324913484007
Iteration: 3, Func. Count: 38, Neg. LLF: 465.01756067928306
Iteration: 4, Func. Count: 50, Neg. LLF: 98.3647538913319
Iteration: 5, Func. Count: 61, Neg. LLF: 97.47464881619739
Iteration: 6, Func. Count: 72, Neg. LLF: 97.40753840888011
Iteration: 7, Func. Count: 83, Neg. LLF: 97.31579874943203
Iteration: 8, Func. Count: 94, Neg. LLF: 97.30678714101992
Iteration: 9, Func. Count: 105, Neg. LLF: 97.305801241639
Iteration: 10, Func. Count: 116, Neg. LLF: 97.3056967873888
Iteration: 11, Func. Count: 127, Neg. LLF: 97.30562923714032
Iteration: 12, Func. Count: 138, Neg. LLF: 97.30557415348957
Iteration: 13, Func. Count: 149, Neg. LLF: 97.30555639996383
Iteration: 14, Func. Count: 160, Neg. LLF: 97.30555444070163
Iteration: 15, Func. Count: 170, Neg. LLF: 97.30555444068551
Optimization terminated successfully (Exit mode 0)
Current function value: 97.30555444070163
Iterations: 15
Function evaluations: 170
Gradient evaluations: 15
Iteration: 1, Func. Count: 13, Neg. LLF: 102.95519818661194
Iteration: 2, Func. Count: 28, Neg. LLF: 104.81533086044328
Iteration: 3, Func. Count: 41, Neg. LLF: 195.40672199375337
Iteration: 4, Func. Count: 54, Neg. LLF: 103.16113477241927
Iteration: 5, Func. Count: 67, Neg. LLF: 98.23617840133927
Iteration: 6, Func. Count: 80, Neg. LLF: 97.25083381522327
Iteration: 7, Func. Count: 92, Neg. LLF: 101.43386397469156
Iteration: 8, Func. Count: 106, Neg. LLF: 99.71918915787766
Iteration: 9, Func. Count: 119, Neg. LLF: 96.91847467719025
Iteration: 10, Func. Count: 131, Neg. LLF: 96.90609369623633
Iteration: 11, Func. Count: 143, Neg. LLF: 96.90445158310828
Iteration: 12, Func. Count: 155, Neg. LLF: 96.90383665756582
Iteration: 13, Func. Count: 167, Neg. LLF: 96.90378386705989
Iteration: 14, Func. Count: 179, Neg. LLF: 96.9037762677201
Iteration: 15, Func. Count: 190, Neg. LLF: 96.90377626766796
Optimization terminated successfully (Exit mode 0)
Current function value: 96.9037762677201
Iterations: 15
Function evaluations: 190
Gradient evaluations: 15
Iteration: 1, Func. Count: 14, Neg. LLF: 103.39277031606284
Iteration: 2, Func. Count: 30, Neg. LLF: 104.21556770889636
Iteration: 3, Func. Count: 44, Neg. LLF: 183.29045271930678
Iteration: 4, Func. Count: 58, Neg. LLF: 103.74374131235619
Iteration: 5, Func. Count: 72, Neg. LLF: 98.43122052515919
Iteration: 6, Func. Count: 86, Neg. LLF: 97.86856621707531
Iteration: 7, Func. Count: 100, Neg. LLF: 97.12600867522005
Iteration: 8, Func. Count: 113, Neg. LLF: 102.83983961691143
Iteration: 9, Func. Count: 127, Neg. LLF: 97.0150526098145
Iteration: 10, Func. Count: 141, Neg. LLF: 96.91902848637362
Iteration: 11, Func. Count: 154, Neg. LLF: 96.90644491250869
Iteration: 12, Func. Count: 167, Neg. LLF: 96.90399661671113
Iteration: 13, Func. Count: 180, Neg. LLF: 96.90377730764308
Iteration: 14, Func. Count: 193, Neg. LLF: 96.90377592387681
Iteration: 15, Func. Count: 205, Neg. LLF: 96.90377594761098
Optimization terminated successfully (Exit mode 0)
Current function value: 96.90377592387681
Iterations: 15
Function evaluations: 205
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 114.7862810826016
Iteration: 2, Func. Count: 23, Neg. LLF: 158.78403006155543
Iteration: 3, Func. Count: 34, Neg. LLF: 111.86517511322738
Iteration: 4, Func. Count: 45, Neg. LLF: 97.63735918503997
Iteration: 5, Func. Count: 55, Neg. LLF: 97.723311261361
Iteration: 6, Func. Count: 66, Neg. LLF: 97.67771232535522
Iteration: 7, Func. Count: 77, Neg. LLF: 97.54427787012284
Iteration: 8, Func. Count: 87, Neg. LLF: 97.53759772331965
Iteration: 9, Func. Count: 97, Neg. LLF: 97.53543091821473
Iteration: 10, Func. Count: 107, Neg. LLF: 97.53540893137954
Iteration: 11, Func. Count: 117, Neg. LLF: 97.53540750862774
Iteration: 12, Func. Count: 126, Neg. LLF: 97.53540750862629
Optimization terminated successfully (Exit mode 0)
Current function value: 97.53540750862774
Iterations: 12
Function evaluations: 126
Gradient evaluations: 12
Iteration: 1, Func. Count: 12, Neg. LLF: 102.01192829651697
Iteration: 2, Func. Count: 25, Neg. LLF: 216.73011898742797
Iteration: 3, Func. Count: 37, Neg. LLF: 99.12364257859936
Iteration: 4, Func. Count: 49, Neg. LLF: 98.49013133839625
Iteration: 5, Func. Count: 61, Neg. LLF: 99.43961140009765
Iteration: 6, Func. Count: 73, Neg. LLF: 98.17845574073037
Iteration: 7, Func. Count: 85, Neg. LLF: 97.98603910511667
Iteration: 8, Func. Count: 96, Neg. LLF: 97.9864070823765
Iteration: 9, Func. Count: 108, Neg. LLF: 97.98471353855652
Iteration: 10, Func. Count: 118, Neg. LLF: 97.98471353854326
Optimization terminated successfully (Exit mode 0)
Current function value: 97.98471353855652
Iterations: 10
Function evaluations: 118
Gradient evaluations: 10
Iteration: 1, Func. Count: 13, Neg. LLF: 102.03192667833483
Iteration: 2, Func. Count: 27, Neg. LLF: 144.52394674671982
Iteration: 3, Func. Count: 40, Neg. LLF: 99.13542608718984
Iteration: 4, Func. Count: 53, Neg. LLF: 100.14435856263115
Iteration: 5, Func. Count: 66, Neg. LLF: 97.9557736007884
Iteration: 6, Func. Count: 78, Neg. LLF: 98.65289378160651
Iteration: 7, Func. Count: 91, Neg. LLF: 99.57208816546722
Iteration: 8, Func. Count: 104, Neg. LLF: 97.36861446035724
Iteration: 9, Func. Count: 116, Neg. LLF: 97.32680665850144
Iteration: 10, Func. Count: 128, Neg. LLF: 97.31240510452591
Iteration: 11, Func. Count: 140, Neg. LLF: 97.30613538423452
Iteration: 12, Func. Count: 152, Neg. LLF: 97.30564038330185
Iteration: 13, Func. Count: 164, Neg. LLF: 97.30557028072492
Iteration: 14, Func. Count: 176, Neg. LLF: 97.30555732729546
Iteration: 15, Func. Count: 188, Neg. LLF: 97.30555446270026
Iteration: 16, Func. Count: 199, Neg. LLF: 97.30555446277819
Optimization terminated successfully (Exit mode 0)
Current function value: 97.30555446270026
Iterations: 16
Function evaluations: 199
Gradient evaluations: 16
Iteration: 1, Func. Count: 14, Neg. LLF: 101.7776151633987
Iteration: 2, Func. Count: 30, Neg. LLF: 119.00636580551443
Iteration: 3, Func. Count: 44, Neg. LLF: 207.9096518586469
Iteration: 4, Func. Count: 58, Neg. LLF: 104.23718784456345
Iteration: 5, Func. Count: 72, Neg. LLF: 103.11090136566109
Iteration: 6, Func. Count: 86, Neg. LLF: 99.84839180543668
Iteration: 7, Func. Count: 100, Neg. LLF: 111.4385793210159
Iteration: 8, Func. Count: 115, Neg. LLF: 97.34755681301655
Iteration: 9, Func. Count: 128, Neg. LLF: 97.53500388380314
Iteration: 10, Func. Count: 142, Neg. LLF: 97.46395745103422
Iteration: 11, Func. Count: 157, Neg. LLF: 97.14024883732911
Iteration: 12, Func. Count: 170, Neg. LLF: 97.15265721817303
Iteration: 13, Func. Count: 184, Neg. LLF: 97.06954452969617
Iteration: 14, Func. Count: 197, Neg. LLF: 97.0355027208447
Iteration: 15, Func. Count: 210, Neg. LLF: 96.99453870598076
Iteration: 16, Func. Count: 223, Neg. LLF: 96.96147927480645
Iteration: 17, Func. Count: 236, Neg. LLF: 96.92377831950297
Iteration: 18, Func. Count: 249, Neg. LLF: 96.90372439860897
Iteration: 19, Func. Count: 262, Neg. LLF: 96.89329244428438
Iteration: 20, Func. Count: 275, Neg. LLF: 96.89157201320117
Iteration: 21, Func. Count: 288, Neg. LLF: 96.89146399020515
Iteration: 22, Func. Count: 301, Neg. LLF: 96.89146099412395
Iteration: 23, Func. Count: 313, Neg. LLF: 96.89146099413807
Optimization terminated successfully (Exit mode 0)
Current function value: 96.89146099412395
Iterations: 23
Function evaluations: 313
Gradient evaluations: 23
Iteration: 1, Func. Count: 15, Neg. LLF: 102.38999367533697
Iteration: 2, Func. Count: 32, Neg. LLF: 105.52508370258138
Iteration: 3, Func. Count: 47, Neg. LLF: 178.99657737707955
Iteration: 4, Func. Count: 62, Neg. LLF: 103.0683518204859
Iteration: 5, Func. Count: 77, Neg. LLF: 97.98183722284934
Iteration: 6, Func. Count: 92, Neg. LLF: 98.46332988235966
Iteration: 7, Func. Count: 107, Neg. LLF: 97.17661752417716
Iteration: 8, Func. Count: 121, Neg. LLF: 96.96623019675458
Iteration: 9, Func. Count: 135, Neg. LLF: 96.94145452359311
Iteration: 10, Func. Count: 149, Neg. LLF: 96.89297258033619
Iteration: 11, Func. Count: 163, Neg. LLF: 96.89165717821223
Iteration: 12, Func. Count: 177, Neg. LLF: 96.89160691676781
Iteration: 13, Func. Count: 192, Neg. LLF: 96.89146637097465
Iteration: 14, Func. Count: 206, Neg. LLF: 96.89146166416329
Iteration: 15, Func. Count: 219, Neg. LLF: 96.89146168165645
Optimization terminated successfully (Exit mode 0)
Current function value: 96.89146166416329
Iterations: 15
Function evaluations: 219
Gradient evaluations: 15
Iteration: 1, Func. Count: 12, Neg. LLF: 115.6088652005867
Iteration: 2, Func. Count: 25, Neg. LLF: 153.65893674071955
Iteration: 3, Func. Count: 37, Neg. LLF: 52761.337759038885
Iteration: 4, Func. Count: 49, Neg. LLF: 97.88846956486904
Iteration: 5, Func. Count: 60, Neg. LLF: 97.59005999226062
Iteration: 6, Func. Count: 71, Neg. LLF: 97.7959383557013
Iteration: 7, Func. Count: 83, Neg. LLF: 97.48762537587498
Iteration: 8, Func. Count: 94, Neg. LLF: 97.46992813365158
Iteration: 9, Func. Count: 105, Neg. LLF: 97.46142877958076
Iteration: 10, Func. Count: 116, Neg. LLF: 97.46133055892781
Iteration: 11, Func. Count: 127, Neg. LLF: 97.46132621076488
Iteration: 12, Func. Count: 138, Neg. LLF: 97.461325620996
Optimization terminated successfully (Exit mode 0)
Current function value: 97.461325620996
Iterations: 12
Function evaluations: 138
Gradient evaluations: 12
Iteration: 1, Func. Count: 13, Neg. LLF: 101.86404769021496
Iteration: 2, Func. Count: 27, Neg. LLF: 21387177.810867563
Iteration: 3, Func. Count: 40, Neg. LLF: 127.06833338988876
Iteration: 4, Func. Count: 53, Neg. LLF: 98.95541808530916
Iteration: 5, Func. Count: 66, Neg. LLF: 97.12910073023464
Iteration: 6, Func. Count: 78, Neg. LLF: 97.1172774271702
Iteration: 7, Func. Count: 90, Neg. LLF: 97.11659199317852
Iteration: 8, Func. Count: 102, Neg. LLF: 97.11575305274755
Iteration: 9, Func. Count: 114, Neg. LLF: 97.11536196108241
Iteration: 10, Func. Count: 126, Neg. LLF: 97.11537506901082
Iteration: 11, Func. Count: 139, Neg. LLF: 97.11532187911891
Iteration: 12, Func. Count: 150, Neg. LLF: 97.11532187915694
Optimization terminated successfully (Exit mode 0)
Current function value: 97.11532187911891
Iterations: 12
Function evaluations: 150
Gradient evaluations: 12
Iteration: 1, Func. Count: 14, Neg. LLF: 102.4803361031819
Iteration: 2, Func. Count: 29, Neg. LLF: 9384099.073028049
Iteration: 3, Func. Count: 43, Neg. LLF: 99.27583813871169
Iteration: 4, Func. Count: 57, Neg. LLF: 114.56464423717684
Iteration: 5, Func. Count: 71, Neg. LLF: 97.174166864349
Iteration: 6, Func. Count: 84, Neg. LLF: 97.16712653088346
Iteration: 7, Func. Count: 98, Neg. LLF: 97.11224392593454
Iteration: 8, Func. Count: 111, Neg. LLF: 97.10844432233627
Iteration: 9, Func. Count: 124, Neg. LLF: 97.1072747150584
Iteration: 10, Func. Count: 137, Neg. LLF: 97.10704485184904
Iteration: 11, Func. Count: 150, Neg. LLF: 97.10696109306936
Iteration: 12, Func. Count: 163, Neg. LLF: 97.10691068653637
Iteration: 13, Func. Count: 176, Neg. LLF: 97.10689045298521
Iteration: 14, Func. Count: 189, Neg. LLF: 97.10688828321923
Iteration: 15, Func. Count: 201, Neg. LLF: 97.10688828323485
Optimization terminated successfully (Exit mode 0)
Current function value: 97.10688828321923
Iterations: 15
Function evaluations: 201
Gradient evaluations: 15
Iteration: 1, Func. Count: 15, Neg. LLF: 102.88762863832028
Iteration: 2, Func. Count: 31, Neg. LLF: 22864233.046706457
Iteration: 3, Func. Count: 46, Neg. LLF: 119.55966108618223
Iteration: 4, Func. Count: 61, Neg. LLF: 101.12839128370423
Iteration: 5, Func. Count: 76, Neg. LLF: 97.04788250290916
Iteration: 6, Func. Count: 90, Neg. LLF: 96.10075609497531
Iteration: 7, Func. Count: 104, Neg. LLF: 98.70172718116214
Iteration: 8, Func. Count: 120, Neg. LLF: 96.94306072333072
Iteration: 9, Func. Count: 135, Neg. LLF: 95.94794049254565
Iteration: 10, Func. Count: 149, Neg. LLF: 95.94069643567387
Iteration: 11, Func. Count: 163, Neg. LLF: 95.93916721290043
Iteration: 12, Func. Count: 177, Neg. LLF: 95.93841836417836
Iteration: 13, Func. Count: 191, Neg. LLF: 95.93839755133043
Iteration: 14, Func. Count: 205, Neg. LLF: 95.93839594709773
Iteration: 15, Func. Count: 219, Neg. LLF: 95.93839511481812
Optimization terminated successfully (Exit mode 0)
Current function value: 95.93839511481812
Iterations: 15
Function evaluations: 219
Gradient evaluations: 15
Iteration: 1, Func. Count: 16, Neg. LLF: 103.15888952553922
Iteration: 2, Func. Count: 33, Neg. LLF: 478.8354706134518
Iteration: 3, Func. Count: 49, Neg. LLF: 126.38519278452058
Iteration: 4, Func. Count: 65, Neg. LLF: 109.11669587978228
Iteration: 5, Func. Count: 81, Neg. LLF: 100.63116276694642
Iteration: 6, Func. Count: 97, Neg. LLF: 96.69517665443045
Iteration: 7, Func. Count: 112, Neg. LLF: 96.47156366161884
Iteration: 8, Func. Count: 128, Neg. LLF: 106.65318510901884
Iteration: 9, Func. Count: 145, Neg. LLF: 97.73900589465619
Iteration: 10, Func. Count: 161, Neg. LLF: 95.99514421394707
Iteration: 11, Func. Count: 176, Neg. LLF: 95.94756437722785
Iteration: 12, Func. Count: 191, Neg. LLF: 95.938859193585
Iteration: 13, Func. Count: 206, Neg. LLF: 95.93852377717145
Iteration: 14, Func. Count: 221, Neg. LLF: 95.93842665341705
Iteration: 15, Func. Count: 236, Neg. LLF: 95.93840952045213
Iteration: 16, Func. Count: 251, Neg. LLF: 95.93839565692001
Iteration: 17, Func. Count: 266, Neg. LLF: 95.9383946264751
Iteration: 18, Func. Count: 280, Neg. LLF: 95.93839464362087
Optimization terminated successfully (Exit mode 0)
Current function value: 95.9383946264751
Iterations: 18
Function evaluations: 280
Gradient evaluations: 18
Iteration: 1, Func. Count: 6, Neg. LLF: 155.09806901929883
Iteration: 2, Func. Count: 14, Neg. LLF: 151.7330210170521
Iteration: 3, Func. Count: 21, Neg. LLF: 98.28760095714047
Iteration: 4, Func. Count: 26, Neg. LLF: 98.80363286522501
Iteration: 5, Func. Count: 33, Neg. LLF: 99.31342895594523
Iteration: 6, Func. Count: 39, Neg. LLF: 97.87523829136046
Iteration: 7, Func. Count: 44, Neg. LLF: 97.82487644717551
Iteration: 8, Func. Count: 49, Neg. LLF: 97.79162127915603
Iteration: 9, Func. Count: 54, Neg. LLF: 97.78246740389588
Iteration: 10, Func. Count: 59, Neg. LLF: 97.78094267536552
Iteration: 11, Func. Count: 64, Neg. LLF: 97.78085538093997
Iteration: 12, Func. Count: 69, Neg. LLF: 97.78085392078479
Iteration: 13, Func. Count: 73, Neg. LLF: 97.78085392078901
Optimization terminated successfully (Exit mode 0)
Current function value: 97.78085392078479
Iterations: 13
Function evaluations: 73
Gradient evaluations: 13
Iteration: 1, Func. Count: 5, Neg. LLF: 125.93173055614061
Iteration: 2, Func. Count: 12, Neg. LLF: 99.00553274629964
Iteration: 3, Func. Count: 16, Neg. LLF: 98.89097730043041
Iteration: 4, Func. Count: 20, Neg. LLF: 117.8756283859206
Iteration: 5, Func. Count: 25, Neg. LLF: 98.71511598742512
Iteration: 6, Func. Count: 29, Neg. LLF: 98.70435058896659
Iteration: 7, Func. Count: 33, Neg. LLF: 98.70424036116584
Iteration: 8, Func. Count: 36, Neg. LLF: 98.70424041392232
Optimization terminated successfully (Exit mode 0)
Current function value: 98.70424036116584
Iterations: 8
Function evaluations: 36
Gradient evaluations: 8
Iteration: 1, Func. Count: 6, Neg. LLF: 142.25195458807377
Iteration: 2, Func. Count: 13, Neg. LLF: 98.70574132806566
Iteration: 3, Func. Count: 18, Neg. LLF: 98.67570260979998
Iteration: 4, Func. Count: 23, Neg. LLF: 98.67411821243563
Iteration: 5, Func. Count: 28, Neg. LLF: 98.66297898837252
Iteration: 6, Func. Count: 33, Neg. LLF: 99.70975217899984
Iteration: 7, Func. Count: 39, Neg. LLF: 99.42469178348361
Iteration: 8, Func. Count: 45, Neg. LLF: 99.349192079039
Iteration: 9, Func. Count: 51, Neg. LLF: 99.30766984026798
Iteration: 10, Func. Count: 57, Neg. LLF: 98.74449727910033
Iteration: 11, Func. Count: 63, Neg. LLF: 123.54686119551528
Iteration: 12, Func. Count: 71, Neg. LLF: 98.638531519503
Iteration: 13, Func. Count: 77, Neg. LLF: 98.62765070080076
Iteration: 14, Func. Count: 82, Neg. LLF: 98.62423554595723
Iteration: 15, Func. Count: 87, Neg. LLF: 98.62211337920274
Iteration: 16, Func. Count: 92, Neg. LLF: 98.62211126072295
Iteration: 17, Func. Count: 98, Neg. LLF: 98.62135474402393
Iteration: 18, Func. Count: 103, Neg. LLF: 98.62134800830692
Iteration: 19, Func. Count: 107, Neg. LLF: 98.62134800829466
Optimization terminated successfully (Exit mode 0)
Current function value: 98.62134800830692
Iterations: 20
Function evaluations: 107
Gradient evaluations: 19
Iteration: 1, Func. Count: 7, Neg. LLF: 134.51375986210405
Iteration: 2, Func. Count: 15, Neg. LLF: 98.69589349332182
Iteration: 3, Func. Count: 21, Neg. LLF: 98.66040795601677
Iteration: 4, Func. Count: 27, Neg. LLF: 98.65491766726294
Iteration: 5, Func. Count: 33, Neg. LLF: 98.63656312957903
Iteration: 6, Func. Count: 39, Neg. LLF: 98.63953246746894
Iteration: 7, Func. Count: 46, Neg. LLF: 98.63434527391028
Iteration: 8, Func. Count: 53, Neg. LLF: 98.63026109764677
Iteration: 9, Func. Count: 59, Neg. LLF: 98.6299215957373
Iteration: 10, Func. Count: 65, Neg. LLF: 98.62967832135651
Iteration: 11, Func. Count: 71, Neg. LLF: 98.62858978485815
Iteration: 12, Func. Count: 77, Neg. LLF: 98.62135148530179
Iteration: 13, Func. Count: 83, Neg. LLF: 98.62135758388911
Iteration: 14, Func. Count: 89, Neg. LLF: 98.62134842177294
Optimization terminated successfully (Exit mode 0)
Current function value: 98.6213484213161
Iterations: 14
Function evaluations: 89
Gradient evaluations: 14
Iteration: 1, Func. Count: 8, Neg. LLF: 130.43140217321135
Iteration: 2, Func. Count: 17, Neg. LLF: 98.7174721282921
Iteration: 3, Func. Count: 25, Neg. LLF: 98.66459466792082
Iteration: 4, Func. Count: 32, Neg. LLF: 98.65312583471697
Iteration: 5, Func. Count: 39, Neg. LLF: 98.64620214338682
Iteration: 6, Func. Count: 46, Neg. LLF: 98.67022206788278
Iteration: 7, Func. Count: 54, Neg. LLF: 98.64213883123472
Iteration: 8, Func. Count: 62, Neg. LLF: 98.63466152277577
Iteration: 9, Func. Count: 69, Neg. LLF: 98.63406545938844
Iteration: 10, Func. Count: 76, Neg. LLF: 98.63363225830156
Iteration: 11, Func. Count: 83, Neg. LLF: 98.63325665704728
Iteration: 12, Func. Count: 90, Neg. LLF: 98.63136773311314
Iteration: 13, Func. Count: 97, Neg. LLF: 98.63036119492052
Iteration: 14, Func. Count: 104, Neg. LLF: 98.63007740368484
Iteration: 15, Func. Count: 111, Neg. LLF: 98.6299234891997
Iteration: 16, Func. Count: 118, Neg. LLF: 98.62972759178653
Iteration: 17, Func. Count: 125, Neg. LLF: 98.62931709999255
Iteration: 18, Func. Count: 132, Neg. LLF: 98.62544382673212
Iteration: 19, Func. Count: 139, Neg. LLF: 98.62241853075471
Iteration: 20, Func. Count: 146, Neg. LLF: 98.62170343949877
Iteration: 21, Func. Count: 153, Neg. LLF: 98.62187419226038
Iteration: 22, Func. Count: 161, Neg. LLF: 98.62134813879767
Iteration: 23, Func. Count: 167, Neg. LLF: 98.6213481399138
Optimization terminated successfully (Exit mode 0)
Current function value: 98.62134813879767
Iterations: 23
Function evaluations: 167
Gradient evaluations: 23
Iteration: 1, Func. Count: 9, Neg. LLF: 128.11604536342207
Iteration: 2, Func. Count: 19, Neg. LLF: 98.73503386698479
Iteration: 3, Func. Count: 28, Neg. LLF: 98.6629022945004
Iteration: 4, Func. Count: 36, Neg. LLF: 98.6530040621999
Iteration: 5, Func. Count: 44, Neg. LLF: 98.64459961135731
Iteration: 6, Func. Count: 52, Neg. LLF: 98.64082928696044
Iteration: 7, Func. Count: 60, Neg. LLF: 98.63893554234912
Iteration: 8, Func. Count: 68, Neg. LLF: 98.63782956740852
Iteration: 9, Func. Count: 76, Neg. LLF: 98.63503816035839
Iteration: 10, Func. Count: 84, Neg. LLF: 98.63327850724616
Iteration: 11, Func. Count: 92, Neg. LLF: 98.63181661638426
Iteration: 12, Func. Count: 100, Neg. LLF: 98.63093708837654
Iteration: 13, Func. Count: 108, Neg. LLF: 98.63033735686419
Iteration: 14, Func. Count: 116, Neg. LLF: 98.63015307014324
Iteration: 15, Func. Count: 124, Neg. LLF: 98.629940594432
Iteration: 16, Func. Count: 132, Neg. LLF: 98.62981065021195
Iteration: 17, Func. Count: 140, Neg. LLF: 98.62952241591873
Iteration: 18, Func. Count: 148, Neg. LLF: 98.62787395225455
Iteration: 19, Func. Count: 156, Neg. LLF: 98.62260715199326
Iteration: 20, Func. Count: 164, Neg. LLF: 98.62216465944445
Iteration: 21, Func. Count: 172, Neg. LLF: 98.62147078948263
Iteration: 22, Func. Count: 180, Neg. LLF: 98.62149197029154
Iteration: 23, Func. Count: 189, Neg. LLF: 98.62134802980864
Iteration: 24, Func. Count: 196, Neg. LLF: 98.62134803158867
Optimization terminated successfully (Exit mode 0)
Current function value: 98.62134802980864
Iterations: 24
Function evaluations: 196
Gradient evaluations: 24
Iteration: 1, Func. Count: 6, Neg. LLF: 125.44649321714391
Iteration: 2, Func. Count: 14, Neg. LLF: 99.23209206273341
Iteration: 3, Func. Count: 19, Neg. LLF: 98.7265223680105
Iteration: 4, Func. Count: 24, Neg. LLF: 98.70482049062095
Iteration: 5, Func. Count: 29, Neg. LLF: 98.70425079067479
Iteration: 6, Func. Count: 34, Neg. LLF: 98.70424012608267
Iteration: 7, Func. Count: 38, Neg. LLF: 98.7042402136842
Optimization terminated successfully (Exit mode 0)
Current function value: 98.70424012608267
Iterations: 7
Function evaluations: 38
Gradient evaluations: 7
Iteration: 1, Func. Count: 7, Neg. LLF: 142.06562589304062
Iteration: 2, Func. Count: 15, Neg. LLF: 98.68156855076859
Iteration: 3, Func. Count: 21, Neg. LLF: 98.67508292991776
Iteration: 4, Func. Count: 27, Neg. LLF: 98.67212207143652
Iteration: 5, Func. Count: 33, Neg. LLF: 98.64284003358547
Iteration: 6, Func. Count: 39, Neg. LLF: 99.09983925819078
Iteration: 7, Func. Count: 46, Neg. LLF: 99.03046425726983
Iteration: 8, Func. Count: 53, Neg. LLF: 98.99111724904715
Iteration: 9, Func. Count: 60, Neg. LLF: 98.63557141201505
Iteration: 10, Func. Count: 67, Neg. LLF: 98.6216576473887
Iteration: 11, Func. Count: 73, Neg. LLF: 98.62174023407809
Iteration: 12, Func. Count: 80, Neg. LLF: 98.62139194627183
Iteration: 13, Func. Count: 86, Neg. LLF: 98.62134812003126
Iteration: 14, Func. Count: 91, Neg. LLF: 98.62134812015377
Optimization terminated successfully (Exit mode 0)
Current function value: 98.62134812003126
Iterations: 14
Function evaluations: 91
Gradient evaluations: 14
Iteration: 1, Func. Count: 8, Neg. LLF: 135.10888188768743
Iteration: 2, Func. Count: 17, Neg. LLF: 98.68091422341604
Iteration: 3, Func. Count: 24, Neg. LLF: 98.66364953180253
Iteration: 4, Func. Count: 31, Neg. LLF: 98.65706452313177
Iteration: 5, Func. Count: 38, Neg. LLF: 98.68318850111132
Iteration: 6, Func. Count: 46, Neg. LLF: 99.12835079261417
Iteration: 7, Func. Count: 54, Neg. LLF: 98.72213402584491
Iteration: 8, Func. Count: 62, Neg. LLF: 98.63227736450834
Iteration: 9, Func. Count: 70, Neg. LLF: 98.62983594582681
Iteration: 10, Func. Count: 77, Neg. LLF: 98.62973032907468
Iteration: 11, Func. Count: 84, Neg. LLF: 98.62965956681377
Iteration: 12, Func. Count: 91, Neg. LLF: 98.62962210589758
Iteration: 13, Func. Count: 98, Neg. LLF: 98.62936719619846
Iteration: 14, Func. Count: 105, Neg. LLF: 98.62822772741704
Iteration: 15, Func. Count: 112, Neg. LLF: 98.62431874513217
Iteration: 16, Func. Count: 119, Neg. LLF: 98.62328236849744
Iteration: 17, Func. Count: 126, Neg. LLF: 98.62196320483083
Iteration: 18, Func. Count: 133, Neg. LLF: 98.62136497163388
Iteration: 19, Func. Count: 140, Neg. LLF: 98.62137970952548
Iteration: 20, Func. Count: 148, Neg. LLF: 98.62134805149768
Iteration: 21, Func. Count: 154, Neg. LLF: 98.6213480519415
Optimization terminated successfully (Exit mode 0)
Current function value: 98.62134805149768
Iterations: 21
Function evaluations: 154
Gradient evaluations: 21
Iteration: 1, Func. Count: 9, Neg. LLF: 131.36562407220225
Iteration: 2, Func. Count: 19, Neg. LLF: 98.68881537163469
Iteration: 3, Func. Count: 27, Neg. LLF: 98.6602265809793
Iteration: 4, Func. Count: 35, Neg. LLF: 98.65394506588457
Iteration: 5, Func. Count: 43, Neg. LLF: 98.66560965830662
Iteration: 6, Func. Count: 52, Neg. LLF: 98.81704993496014
Iteration: 7, Func. Count: 61, Neg. LLF: 98.63580679670413
Iteration: 8, Func. Count: 69, Neg. LLF: 98.63409875646057
Iteration: 9, Func. Count: 77, Neg. LLF: 98.63377092273699
Iteration: 10, Func. Count: 85, Neg. LLF: 98.63176422674125
Iteration: 11, Func. Count: 93, Neg. LLF: 98.62961816970956
Iteration: 12, Func. Count: 101, Neg. LLF: 98.62917836131957
Iteration: 13, Func. Count: 109, Neg. LLF: 98.62873338970348
Iteration: 14, Func. Count: 117, Neg. LLF: 98.62869949686939
Iteration: 15, Func. Count: 125, Neg. LLF: 98.62847085936633
Iteration: 16, Func. Count: 133, Neg. LLF: 98.62682269905787
Iteration: 17, Func. Count: 141, Neg. LLF: 98.62185604189565
Iteration: 18, Func. Count: 149, Neg. LLF: 98.62135548639348
Iteration: 19, Func. Count: 157, Neg. LLF: 98.62135186189852
Iteration: 20, Func. Count: 165, Neg. LLF: 98.6213480032094
Iteration: 21, Func. Count: 172, Neg. LLF: 98.62134800416028
Optimization terminated successfully (Exit mode 0)
Current function value: 98.6213480032094
Iterations: 21
Function evaluations: 172
Gradient evaluations: 21
Iteration: 1, Func. Count: 10, Neg. LLF: 127.09129220786163
Iteration: 2, Func. Count: 21, Neg. LLF: 98.70027407038162
Iteration: 3, Func. Count: 30, Neg. LLF: 98.65607476157116
Iteration: 4, Func. Count: 39, Neg. LLF: 98.65047804310662
Iteration: 5, Func. Count: 48, Neg. LLF: 98.65094934915275
Iteration: 6, Func. Count: 58, Neg. LLF: 98.64284441304251
Iteration: 7, Func. Count: 67, Neg. LLF: 98.64130384034591
Iteration: 8, Func. Count: 76, Neg. LLF: 98.63430663716287
Iteration: 9, Func. Count: 85, Neg. LLF: 98.63355816230086
Iteration: 10, Func. Count: 94, Neg. LLF: 98.63246112022297
Iteration: 11, Func. Count: 103, Neg. LLF: 98.63169612607099
Iteration: 12, Func. Count: 112, Neg. LLF: 98.63051622509806
Iteration: 13, Func. Count: 121, Neg. LLF: 98.62853868811908
Iteration: 14, Func. Count: 130, Neg. LLF: 98.62842616923466
Iteration: 15, Func. Count: 139, Neg. LLF: 98.6283488438583
Iteration: 16, Func. Count: 148, Neg. LLF: 98.62824939246146
Iteration: 17, Func. Count: 157, Neg. LLF: 98.62780099246366
Iteration: 18, Func. Count: 166, Neg. LLF: 98.62616412722888
Iteration: 19, Func. Count: 175, Neg. LLF: 98.62462628901575
Iteration: 20, Func. Count: 184, Neg. LLF: 98.62378447509674
Iteration: 21, Func. Count: 193, Neg. LLF: 98.62150703833635
Iteration: 22, Func. Count: 202, Neg. LLF: 98.62138756174186
Iteration: 23, Func. Count: 211, Neg. LLF: 98.62135875364018
Iteration: 24, Func. Count: 220, Neg. LLF: 98.62135940780043
Iteration: 25, Func. Count: 230, Neg. LLF: 98.6213526847755
Optimization terminated successfully (Exit mode 0)
Current function value: 98.6213526847755
Iterations: 25
Function evaluations: 230
Gradient evaluations: 25
Iteration: 1, Func. Count: 7, Neg. LLF: 135.12543010353056
Iteration: 2, Func. Count: 16, Neg. LLF: 140014177.6070897
Iteration: 3, Func. Count: 23, Neg. LLF: 7421084.385137965
Iteration: 4, Func. Count: 30, Neg. LLF: 96.8899440867227
Iteration: 5, Func. Count: 36, Neg. LLF: 96.80946306430702
Iteration: 6, Func. Count: 42, Neg. LLF: 96.80758367762067
Iteration: 7, Func. Count: 48, Neg. LLF: 96.80616216393726
Iteration: 8, Func. Count: 54, Neg. LLF: 96.80482634929997
Iteration: 9, Func. Count: 60, Neg. LLF: 96.80452786772335
Iteration: 10, Func. Count: 66, Neg. LLF: 96.80450420369355
Iteration: 11, Func. Count: 72, Neg. LLF: 96.80450365564778
Optimization terminated successfully (Exit mode 0)
Current function value: 96.80450365564778
Iterations: 11
Function evaluations: 72
Gradient evaluations: 11
Iteration: 1, Func. Count: 8, Neg. LLF: 98.8156692332533
Iteration: 2, Func. Count: 17, Neg. LLF: 110.74179688103743
Iteration: 3, Func. Count: 25, Neg. LLF: 97.03727836374055
Iteration: 4, Func. Count: 32, Neg. LLF: 100.70376328990127
Iteration: 5, Func. Count: 41, Neg. LLF: 96.98855696176565
Iteration: 6, Func. Count: 48, Neg. LLF: 96.83849446446122
Iteration: 7, Func. Count: 55, Neg. LLF: 96.83631981430963
Iteration: 8, Func. Count: 63, Neg. LLF: 96.8045203968044
Iteration: 9, Func. Count: 70, Neg. LLF: 96.80450365598328
Iteration: 10, Func. Count: 76, Neg. LLF: 96.8045036993293
Optimization terminated successfully (Exit mode 0)
Current function value: 96.80450365598328
Iterations: 10
Function evaluations: 76
Gradient evaluations: 10
Iteration: 1, Func. Count: 9, Neg. LLF: 98.68999259443076
Iteration: 2, Func. Count: 18, Neg. LLF: 106.75901158460437
Iteration: 3, Func. Count: 27, Neg. LLF: 107.01910550099146
Iteration: 4, Func. Count: 36, Neg. LLF: 97.3391557895721
Iteration: 5, Func. Count: 44, Neg. LLF: 96.85114767486861
Iteration: 6, Func. Count: 52, Neg. LLF: 96.81793596909553
Iteration: 7, Func. Count: 60, Neg. LLF: 96.80508951046453
Iteration: 8, Func. Count: 68, Neg. LLF: 96.80450501015214
Iteration: 9, Func. Count: 76, Neg. LLF: 96.80450364792168
Iteration: 10, Func. Count: 83, Neg. LLF: 96.80450370565468
Optimization terminated successfully (Exit mode 0)
Current function value: 96.80450364792168
Iterations: 10
Function evaluations: 83
Gradient evaluations: 10
Iteration: 1, Func. Count: 10, Neg. LLF: 98.65452018374015
Iteration: 2, Func. Count: 20, Neg. LLF: 135.31274298516246
Iteration: 3, Func. Count: 30, Neg. LLF: 127.16201589486393
Iteration: 4, Func. Count: 40, Neg. LLF: 97.29676321525545
Iteration: 5, Func. Count: 50, Neg. LLF: 103.26904682804955
Iteration: 6, Func. Count: 60, Neg. LLF: 103.37947462581317
Iteration: 7, Func. Count: 70, Neg. LLF: 100.54170172600561
Iteration: 8, Func. Count: 80, Neg. LLF: 96.01405971521747
Iteration: 9, Func. Count: 89, Neg. LLF: 95.99509256674003
Iteration: 10, Func. Count: 98, Neg. LLF: 95.98662654973364
Iteration: 11, Func. Count: 107, Neg. LLF: 95.9855543653703
Iteration: 12, Func. Count: 116, Neg. LLF: 95.98437072866757
Iteration: 13, Func. Count: 125, Neg. LLF: 95.98433550209366
Iteration: 14, Func. Count: 134, Neg. LLF: 95.98432778227834
Iteration: 15, Func. Count: 142, Neg. LLF: 95.9843277822614
Optimization terminated successfully (Exit mode 0)
Current function value: 95.98432778227834
Iterations: 15
Function evaluations: 142
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 98.64215485969872
Iteration: 2, Func. Count: 22, Neg. LLF: 141.67724663588535
Iteration: 3, Func. Count: 33, Neg. LLF: 519.0741561124393
Iteration: 4, Func. Count: 44, Neg. LLF: 97.46731556345259
Iteration: 5, Func. Count: 55, Neg. LLF: 101.37615936219734
Iteration: 6, Func. Count: 66, Neg. LLF: 126.24409164880655
Iteration: 7, Func. Count: 78, Neg. LLF: 100.28172046666009
Iteration: 8, Func. Count: 89, Neg. LLF: 96.00742982207274
Iteration: 9, Func. Count: 99, Neg. LLF: 95.9913997613625
Iteration: 10, Func. Count: 109, Neg. LLF: 95.98666310110119
Iteration: 11, Func. Count: 119, Neg. LLF: 95.98459327241666
Iteration: 12, Func. Count: 129, Neg. LLF: 95.98436326380047
Iteration: 13, Func. Count: 139, Neg. LLF: 95.98432958549066
Iteration: 14, Func. Count: 149, Neg. LLF: 95.98432786755147
Iteration: 15, Func. Count: 158, Neg. LLF: 95.98432792865249
Optimization terminated successfully (Exit mode 0)
Current function value: 95.98432786755147
Iterations: 15
Function evaluations: 158
Gradient evaluations: 15
Iteration: 1, Func. Count: 8, Neg. LLF: 139.9545710127105
Iteration: 2, Func. Count: 18, Neg. LLF: 166376603.16580963
Iteration: 3, Func. Count: 26, Neg. LLF: 7417014.807732165
Iteration: 4, Func. Count: 34, Neg. LLF: 96.98347952475041
Iteration: 5, Func. Count: 41, Neg. LLF: 96.81145081927924
Iteration: 6, Func. Count: 48, Neg. LLF: 96.80787311079824
Iteration: 7, Func. Count: 55, Neg. LLF: 96.80689350616007
Iteration: 8, Func. Count: 62, Neg. LLF: 96.80503677157688
Iteration: 9, Func. Count: 69, Neg. LLF: 96.80454657770252
Iteration: 10, Func. Count: 76, Neg. LLF: 96.80450442291144
Iteration: 11, Func. Count: 83, Neg. LLF: 96.80450365853837
Optimization terminated successfully (Exit mode 0)
Current function value: 96.80450365853837
Iterations: 11
Function evaluations: 83
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 98.78404282192949
Iteration: 2, Func. Count: 19, Neg. LLF: 109.78140254629592
Iteration: 3, Func. Count: 28, Neg. LLF: 97.10764486014016
Iteration: 4, Func. Count: 36, Neg. LLF: 143.31298606293456
Iteration: 5, Func. Count: 46, Neg. LLF: 96.97497913745813
Iteration: 6, Func. Count: 54, Neg. LLF: 96.84285930609765
Iteration: 7, Func. Count: 62, Neg. LLF: 96.83468421215221
Iteration: 8, Func. Count: 71, Neg. LLF: 96.80451960041064
Iteration: 9, Func. Count: 79, Neg. LLF: 96.80450430754712
Iteration: 10, Func. Count: 87, Neg. LLF: 96.80450364741405
Optimization terminated successfully (Exit mode 0)
Current function value: 96.80450364741405
Iterations: 10
Function evaluations: 87
Gradient evaluations: 10
Iteration: 1, Func. Count: 10, Neg. LLF: 98.68724542024484
Iteration: 2, Func. Count: 20, Neg. LLF: 106.43164988266648
Iteration: 3, Func. Count: 30, Neg. LLF: 99.13003613349304
Iteration: 4, Func. Count: 40, Neg. LLF: 102.74471751444321
Iteration: 5, Func. Count: 50, Neg. LLF: 101.80198110249401
Iteration: 6, Func. Count: 60, Neg. LLF: 98.87114255273201
Iteration: 7, Func. Count: 70, Neg. LLF: 96.91148855171733
Iteration: 8, Func. Count: 79, Neg. LLF: 96.80854205050206
Iteration: 9, Func. Count: 88, Neg. LLF: 96.80501436585357
Iteration: 10, Func. Count: 97, Neg. LLF: 96.80451014082148
Iteration: 11, Func. Count: 106, Neg. LLF: 96.8045040386051
Iteration: 12, Func. Count: 114, Neg. LLF: 96.80450409632276
Optimization terminated successfully (Exit mode 0)
Current function value: 96.8045040386051
Iterations: 12
Function evaluations: 114
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 98.63895989174073
Iteration: 2, Func. Count: 22, Neg. LLF: 133.72654408223684
Iteration: 3, Func. Count: 33, Neg. LLF: 128.58623941049655
Iteration: 4, Func. Count: 44, Neg. LLF: 97.30320927825187
Iteration: 5, Func. Count: 54, Neg. LLF: 103.16664715698056
Iteration: 6, Func. Count: 65, Neg. LLF: 99.79159447691502
Iteration: 7, Func. Count: 77, Neg. LLF: 99.43749751890317
Iteration: 8, Func. Count: 88, Neg. LLF: 96.18881430219102
Iteration: 9, Func. Count: 98, Neg. LLF: 96.09197425332569
Iteration: 10, Func. Count: 108, Neg. LLF: 96.02583898607912
Iteration: 11, Func. Count: 118, Neg. LLF: 95.99301554086462
Iteration: 12, Func. Count: 128, Neg. LLF: 95.98532587361879
Iteration: 13, Func. Count: 138, Neg. LLF: 95.98437157960768
Iteration: 14, Func. Count: 148, Neg. LLF: 95.98433851836289
Iteration: 15, Func. Count: 158, Neg. LLF: 95.98432780899903
Iteration: 16, Func. Count: 167, Neg. LLF: 95.98432780899678
Optimization terminated successfully (Exit mode 0)
Current function value: 95.98432780899903
Iterations: 16
Function evaluations: 167
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 98.61796582017465
Iteration: 2, Func. Count: 24, Neg. LLF: 141.06355151595113
Iteration: 3, Func. Count: 36, Neg. LLF: 619.1310570128537
Iteration: 4, Func. Count: 48, Neg. LLF: 97.45434739949484
Iteration: 5, Func. Count: 60, Neg. LLF: 101.80732035682256
Iteration: 6, Func. Count: 72, Neg. LLF: 127.33162256954883
Iteration: 7, Func. Count: 85, Neg. LLF: 100.26682466419841
Iteration: 8, Func. Count: 97, Neg. LLF: 96.01223016118011
Iteration: 9, Func. Count: 108, Neg. LLF: 95.99290512598391
Iteration: 10, Func. Count: 119, Neg. LLF: 95.98724746221934
Iteration: 11, Func. Count: 130, Neg. LLF: 95.98468519660217
Iteration: 12, Func. Count: 141, Neg. LLF: 95.98435834891042
Iteration: 13, Func. Count: 152, Neg. LLF: 95.9843294078721
Iteration: 14, Func. Count: 163, Neg. LLF: 95.98432786105909
Iteration: 15, Func. Count: 173, Neg. LLF: 95.98432792216236
Optimization terminated successfully (Exit mode 0)
Current function value: 95.98432786105909
Iterations: 15
Function evaluations: 173
Gradient evaluations: 15
Iteration: 1, Func. Count: 5, Neg. LLF: 150.56745720663386
Iteration: 2, Func. Count: 12, Neg. LLF: 138.55983708500892
Iteration: 3, Func. Count: 18, Neg. LLF: 98.75582499916621
Iteration: 4, Func. Count: 22, Neg. LLF: 98.71321741145965
Iteration: 5, Func. Count: 26, Neg. LLF: 98.70664082984406
Iteration: 6, Func. Count: 30, Neg. LLF: 98.704404107501
Iteration: 7, Func. Count: 34, Neg. LLF: 98.70424610028427
Iteration: 8, Func. Count: 38, Neg. LLF: 98.70424015866209
Iteration: 9, Func. Count: 41, Neg. LLF: 98.70424017784819
Optimization terminated successfully (Exit mode 0)
Current function value: 98.70424015866209
Iterations: 9
Function evaluations: 41
Gradient evaluations: 9
Iteration: 1, Func. Count: 6, Neg. LLF: 142.67468004771771
Iteration: 2, Func. Count: 13, Neg. LLF: 98.73131088304007
Iteration: 3, Func. Count: 18, Neg. LLF: 98.67609176153394
Iteration: 4, Func. Count: 23, Neg. LLF: 98.67463299666669
Iteration: 5, Func. Count: 28, Neg. LLF: 98.66523559664174
Iteration: 6, Func. Count: 33, Neg. LLF: 99.79283584959667
Iteration: 7, Func. Count: 39, Neg. LLF: 99.48168581623263
Iteration: 8, Func. Count: 45, Neg. LLF: 99.39621034890682
Iteration: 9, Func. Count: 51, Neg. LLF: 99.35100017816157
Iteration: 10, Func. Count: 57, Neg. LLF: 98.90674597238974
Iteration: 11, Func. Count: 63, Neg. LLF: 98.89176360591733
Iteration: 12, Func. Count: 69, Neg. LLF: 100.15733983005538
Iteration: 13, Func. Count: 76, Neg. LLF: 394.8843443607759
Iteration: 14, Func. Count: 83, Neg. LLF: 98.62737161820702
Iteration: 15, Func. Count: 88, Neg. LLF: 98.7789373327048
Iteration: 16, Func. Count: 94, Neg. LLF: 98.63526890763065
Iteration: 17, Func. Count: 100, Neg. LLF: 98.62161546196846
Iteration: 18, Func. Count: 105, Neg. LLF: 98.62135924737792
Iteration: 19, Func. Count: 110, Neg. LLF: 98.6213497699698
Iteration: 20, Func. Count: 115, Neg. LLF: 98.62134820797992
Iteration: 21, Func. Count: 119, Neg. LLF: 98.62134820778775
Optimization terminated successfully (Exit mode 0)
Current function value: 98.62134820797992
Iterations: 22
Function evaluations: 119
Gradient evaluations: 21
Iteration: 1, Func. Count: 7, Neg. LLF: 135.85461756977784
Iteration: 2, Func. Count: 15, Neg. LLF: 98.82424984961155
Iteration: 3, Func. Count: 22, Neg. LLF: 98.63807607143534
Iteration: 4, Func. Count: 28, Neg. LLF: 98.6322704387511
Iteration: 5, Func. Count: 34, Neg. LLF: 98.62932407754792
Iteration: 6, Func. Count: 40, Neg. LLF: 98.62881244543654
Iteration: 7, Func. Count: 46, Neg. LLF: 98.6287482490527
Iteration: 8, Func. Count: 52, Neg. LLF: 98.62864861071962
Iteration: 9, Func. Count: 58, Neg. LLF: 98.62801535533033
Iteration: 10, Func. Count: 64, Neg. LLF: 98.62576218196331
Iteration: 11, Func. Count: 70, Neg. LLF: 98.62470041204719
Iteration: 12, Func. Count: 76, Neg. LLF: 98.6215079017668
Iteration: 13, Func. Count: 82, Neg. LLF: 98.62150771028703
Iteration: 14, Func. Count: 89, Neg. LLF: 98.62136068897777
Iteration: 15, Func. Count: 95, Neg. LLF: 98.62134800878842
Iteration: 16, Func. Count: 100, Neg. LLF: 98.62134800905685
Optimization terminated successfully (Exit mode 0)
Current function value: 98.62134800878842
Iterations: 16
Function evaluations: 100
Gradient evaluations: 16
Iteration: 1, Func. Count: 8, Neg. LLF: 129.1505201800312
Iteration: 2, Func. Count: 17, Neg. LLF: 98.76422352332591
Iteration: 3, Func. Count: 25, Neg. LLF: 98.65495520012186
Iteration: 4, Func. Count: 32, Neg. LLF: 98.64915225177008
Iteration: 5, Func. Count: 39, Neg. LLF: 98.64421546009922
Iteration: 6, Func. Count: 46, Neg. LLF: 98.63981697440745
Iteration: 7, Func. Count: 53, Neg. LLF: 98.63722076213196
Iteration: 8, Func. Count: 60, Neg. LLF: 98.63667593855288
Iteration: 9, Func. Count: 67, Neg. LLF: 98.6360900481117
Iteration: 10, Func. Count: 74, Neg. LLF: 98.6357563245331
Iteration: 11, Func. Count: 81, Neg. LLF: 98.63374575332554
Iteration: 12, Func. Count: 88, Neg. LLF: 98.62657707323827
Iteration: 13, Func. Count: 95, Neg. LLF: 98.62634583766997
Iteration: 14, Func. Count: 102, Neg. LLF: 98.62589455626568
Iteration: 15, Func. Count: 109, Neg. LLF: 98.62371271559968
Iteration: 16, Func. Count: 116, Neg. LLF: 98.6227461906486
Iteration: 17, Func. Count: 123, Neg. LLF: 98.6215333015675
Iteration: 18, Func. Count: 130, Neg. LLF: 98.6215047743121
Iteration: 19, Func. Count: 138, Neg. LLF: 98.62135043257094
Iteration: 20, Func. Count: 145, Neg. LLF: 98.62134882898869
Iteration: 21, Func. Count: 152, Neg. LLF: 98.62134800073137
Optimization terminated successfully (Exit mode 0)
Current function value: 98.62134800073137
Iterations: 21
Function evaluations: 152
Gradient evaluations: 21
Iteration: 1, Func. Count: 9, Neg. LLF: 127.21881954051982
Iteration: 2, Func. Count: 19, Neg. LLF: 98.81601108021589
Iteration: 3, Func. Count: 28, Neg. LLF: 98.65619181548047
Iteration: 4, Func. Count: 36, Neg. LLF: 98.65018295929036
Iteration: 5, Func. Count: 44, Neg. LLF: 98.65380390274632
Iteration: 6, Func. Count: 53, Neg. LLF: 98.6403959991598
Iteration: 7, Func. Count: 61, Neg. LLF: 98.63843661955887
Iteration: 8, Func. Count: 69, Neg. LLF: 98.63751068648658
Iteration: 9, Func. Count: 77, Neg. LLF: 98.63621013427635
Iteration: 10, Func. Count: 85, Neg. LLF: 98.63469250843751
Iteration: 11, Func. Count: 93, Neg. LLF: 98.6342169394565
Iteration: 12, Func. Count: 101, Neg. LLF: 98.63322138164698
Iteration: 13, Func. Count: 109, Neg. LLF: 98.63090444466454
Iteration: 14, Func. Count: 117, Neg. LLF: 98.63023545922587
Iteration: 15, Func. Count: 125, Neg. LLF: 98.62901933194549
Iteration: 16, Func. Count: 133, Neg. LLF: 98.62891582232889
Iteration: 17, Func. Count: 141, Neg. LLF: 98.62880659080373
Iteration: 18, Func. Count: 149, Neg. LLF: 98.62807482446867
Iteration: 19, Func. Count: 157, Neg. LLF: 98.62657464817912
Iteration: 20, Func. Count: 165, Neg. LLF: 98.6235840120558
Iteration: 21, Func. Count: 173, Neg. LLF: 98.62225179422421
Iteration: 22, Func. Count: 181, Neg. LLF: 98.62144433161167
Iteration: 23, Func. Count: 189, Neg. LLF: 98.62135123203761
Iteration: 24, Func. Count: 197, Neg. LLF: 98.62134802049344
Iteration: 25, Func. Count: 204, Neg. LLF: 98.62134802233591
Optimization terminated successfully (Exit mode 0)
Current function value: 98.62134802049344
Iterations: 25
Function evaluations: 204
Gradient evaluations: 25
Iteration: 1, Func. Count: 6, Neg. LLF: 151.07436170311107
Iteration: 2, Func. Count: 14, Neg. LLF: 156.86773577539208
Iteration: 3, Func. Count: 20, Neg. LLF: 98.00580382270286
Iteration: 4, Func. Count: 25, Neg. LLF: 99.51943065496157
Iteration: 5, Func. Count: 32, Neg. LLF: 99.06264914739964
Iteration: 6, Func. Count: 38, Neg. LLF: 97.82195184311216
Iteration: 7, Func. Count: 43, Neg. LLF: 97.79929414968761
Iteration: 8, Func. Count: 48, Neg. LLF: 97.7935375204187
Iteration: 9, Func. Count: 53, Neg. LLF: 97.79150132393688
Iteration: 10, Func. Count: 58, Neg. LLF: 97.79146697468005
Iteration: 11, Func. Count: 63, Neg. LLF: 97.79146539688185
Iteration: 12, Func. Count: 67, Neg. LLF: 97.79146539687945
Optimization terminated successfully (Exit mode 0)
Current function value: 97.79146539688185
Iterations: 12
Function evaluations: 67
Gradient evaluations: 12
Iteration: 1, Func. Count: 7, Neg. LLF: 143.31660750326782
Iteration: 2, Func. Count: 15, Neg. LLF: 98.82801964199928
Iteration: 3, Func. Count: 22, Neg. LLF: 98.67694125773691
Iteration: 4, Func. Count: 28, Neg. LLF: 98.6755335315537
Iteration: 5, Func. Count: 34, Neg. LLF: 98.66595533055656
Iteration: 6, Func. Count: 40, Neg. LLF: 99.86495736493431
Iteration: 7, Func. Count: 47, Neg. LLF: 99.43835269893191
Iteration: 8, Func. Count: 54, Neg. LLF: 99.21475682882411
Iteration: 9, Func. Count: 61, Neg. LLF: 99.12782947373387
Iteration: 10, Func. Count: 68, Neg. LLF: 99.45515166622162
Iteration: 11, Func. Count: 75, Neg. LLF: 144.37343559130724
Iteration: 12, Func. Count: 83, Neg. LLF: 27379230.40469286
Iteration: 13, Func. Count: 92, Neg. LLF: 99.08137822701019
Iteration: 14, Func. Count: 99, Neg. LLF: 98.88175539327123
Iteration: 15, Func. Count: 106, Neg. LLF: 99.15162207386422
Iteration: 16, Func. Count: 113, Neg. LLF: 99.16811980263925
Iteration: 17, Func. Count: 120, Neg. LLF: 98.69966718765258
Iteration: 18, Func. Count: 127, Neg. LLF: 98.57374657745032
Iteration: 19, Func. Count: 133, Neg. LLF: 98.57191887288049
Iteration: 20, Func. Count: 139, Neg. LLF: 98.5717660337684
Iteration: 21, Func. Count: 145, Neg. LLF: 98.5717626572123
Iteration: 22, Func. Count: 151, Neg. LLF: 98.57175801422333
Iteration: 23, Func. Count: 156, Neg. LLF: 98.57175801427555
Optimization terminated successfully (Exit mode 0)
Current function value: 98.57175801422333
Iterations: 24
Function evaluations: 156
Gradient evaluations: 23
Iteration: 1, Func. Count: 8, Neg. LLF: 109.23709227538194
Iteration: 2, Func. Count: 17, Neg. LLF: 99.67423596912303
Iteration: 3, Func. Count: 25, Neg. LLF: 100.71198133286157
Iteration: 4, Func. Count: 33, Neg. LLF: 97.98996161525055
Iteration: 5, Func. Count: 40, Neg. LLF: 98.40927283288758
Iteration: 6, Func. Count: 49, Neg. LLF: 97.92531269239788
Iteration: 7, Func. Count: 56, Neg. LLF: 97.90942949551892
Iteration: 8, Func. Count: 63, Neg. LLF: 97.8718637211843
Iteration: 9, Func. Count: 70, Neg. LLF: 97.84250245474892
Iteration: 10, Func. Count: 77, Neg. LLF: 97.82309399482484
Iteration: 11, Func. Count: 84, Neg. LLF: 97.7996762304763
Iteration: 12, Func. Count: 91, Neg. LLF: 97.7953540464091
Iteration: 13, Func. Count: 98, Neg. LLF: 97.79221359182822
Iteration: 14, Func. Count: 105, Neg. LLF: 97.79145236355866
Iteration: 15, Func. Count: 112, Neg. LLF: 97.7912725456978
Iteration: 16, Func. Count: 119, Neg. LLF: 97.79125780310744
Iteration: 17, Func. Count: 126, Neg. LLF: 97.79125620600182
Iteration: 18, Func. Count: 132, Neg. LLF: 97.79125620602007
Optimization terminated successfully (Exit mode 0)
Current function value: 97.79125620600182
Iterations: 18
Function evaluations: 132
Gradient evaluations: 18
Iteration: 1, Func. Count: 9, Neg. LLF: 104.41043919553087
Iteration: 2, Func. Count: 19, Neg. LLF: 101.00229081140711
Iteration: 3, Func. Count: 28, Neg. LLF: 105.07972597322585
Iteration: 4, Func. Count: 37, Neg. LLF: 99.35121413401306
Iteration: 5, Func. Count: 46, Neg. LLF: 97.89200566122342
Iteration: 6, Func. Count: 55, Neg. LLF: 110.8273771675539
Iteration: 7, Func. Count: 64, Neg. LLF: 97.17409668366115
Iteration: 8, Func. Count: 72, Neg. LLF: 104.43138786338451
Iteration: 9, Func. Count: 81, Neg. LLF: 97.03223734376847
Iteration: 10, Func. Count: 89, Neg. LLF: 97.00459116785196
Iteration: 11, Func. Count: 97, Neg. LLF: 97.00345337410808
Iteration: 12, Func. Count: 105, Neg. LLF: 97.00111830464309
Iteration: 13, Func. Count: 113, Neg. LLF: 97.00106847881331
Iteration: 14, Func. Count: 121, Neg. LLF: 97.00106042761078
Iteration: 15, Func. Count: 128, Neg. LLF: 97.00106042759349
Optimization terminated successfully (Exit mode 0)
Current function value: 97.00106042761078
Iterations: 15
Function evaluations: 128
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 104.94968702030032
Iteration: 2, Func. Count: 21, Neg. LLF: 100.50438845069557
Iteration: 3, Func. Count: 31, Neg. LLF: 129.9894150670289
Iteration: 4, Func. Count: 41, Neg. LLF: 98.08082770399346
Iteration: 5, Func. Count: 51, Neg. LLF: 98.23236714658688
Iteration: 6, Func. Count: 61, Neg. LLF: 101.36677790528076
Iteration: 7, Func. Count: 71, Neg. LLF: 97.79166185686185
Iteration: 8, Func. Count: 81, Neg. LLF: 106.71216009380231
Iteration: 9, Func. Count: 91, Neg. LLF: 97.2602508358143
Iteration: 10, Func. Count: 100, Neg. LLF: 97.15034808646817
Iteration: 11, Func. Count: 109, Neg. LLF: 97.09800419079049
Iteration: 12, Func. Count: 118, Neg. LLF: 97.02917490100936
Iteration: 13, Func. Count: 127, Neg. LLF: 97.0062608248306
Iteration: 14, Func. Count: 136, Neg. LLF: 97.00180288528759
Iteration: 15, Func. Count: 145, Neg. LLF: 97.00108171940536
Iteration: 16, Func. Count: 154, Neg. LLF: 97.00106168672133
Iteration: 17, Func. Count: 163, Neg. LLF: 97.00106048351228
Iteration: 18, Func. Count: 171, Neg. LLF: 97.0010605164177
Optimization terminated successfully (Exit mode 0)
Current function value: 97.00106048351228
Iterations: 18
Function evaluations: 171
Gradient evaluations: 18
Iteration: 1, Func. Count: 7, Neg. LLF: 150.66755738102992
Iteration: 2, Func. Count: 16, Neg. LLF: 150.83337483818147
Iteration: 3, Func. Count: 23, Neg. LLF: 98.16599160199813
Iteration: 4, Func. Count: 29, Neg. LLF: 99.40205816110826
Iteration: 5, Func. Count: 37, Neg. LLF: 99.27090695091756
Iteration: 6, Func. Count: 44, Neg. LLF: 97.82853203115276
Iteration: 7, Func. Count: 50, Neg. LLF: 97.80090637170112
Iteration: 8, Func. Count: 56, Neg. LLF: 97.79472023001738
Iteration: 9, Func. Count: 62, Neg. LLF: 97.79173742504598
Iteration: 10, Func. Count: 68, Neg. LLF: 97.79149132796758
Iteration: 11, Func. Count: 74, Neg. LLF: 97.79146622555929
Iteration: 12, Func. Count: 80, Neg. LLF: 97.79146533993186
Optimization terminated successfully (Exit mode 0)
Current function value: 97.79146533993186
Iterations: 12
Function evaluations: 80
Gradient evaluations: 12
Iteration: 1, Func. Count: 8, Neg. LLF: 143.071437050668
Iteration: 2, Func. Count: 17, Neg. LLF: 98.76790267628282
Iteration: 3, Func. Count: 24, Neg. LLF: 98.6767621144052
Iteration: 4, Func. Count: 31, Neg. LLF: 98.67533078639755
Iteration: 5, Func. Count: 38, Neg. LLF: 98.66531624748335
Iteration: 6, Func. Count: 45, Neg. LLF: 99.7995373647484
Iteration: 7, Func. Count: 53, Neg. LLF: 99.42164147514325
Iteration: 8, Func. Count: 61, Neg. LLF: 99.229989415213
Iteration: 9, Func. Count: 69, Neg. LLF: 99.1496205347289
Iteration: 10, Func. Count: 77, Neg. LLF: 100.32804816804622
Iteration: 11, Func. Count: 85, Neg. LLF: 120.47071869491072
Iteration: 12, Func. Count: 95, Neg. LLF: 100.75003245984261
Iteration: 13, Func. Count: 103, Neg. LLF: 98.66054137520206
Iteration: 14, Func. Count: 111, Neg. LLF: 99.19575392338355
Iteration: 15, Func. Count: 119, Neg. LLF: 99.20853667400118
Iteration: 16, Func. Count: 127, Neg. LLF: 98.5870343699145
Iteration: 17, Func. Count: 135, Neg. LLF: 98.57204250055692
Iteration: 18, Func. Count: 142, Neg. LLF: 98.57185240877
Iteration: 19, Func. Count: 149, Neg. LLF: 98.57177797983249
Iteration: 20, Func. Count: 156, Neg. LLF: 98.57175874648746
Iteration: 21, Func. Count: 163, Neg. LLF: 98.57175803226323
Optimization terminated successfully (Exit mode 0)
Current function value: 98.57175803226323
Iterations: 22
Function evaluations: 163
Gradient evaluations: 21
Iteration: 1, Func. Count: 9, Neg. LLF: 109.14420654928779
Iteration: 2, Func. Count: 19, Neg. LLF: 99.51753669388088
Iteration: 3, Func. Count: 28, Neg. LLF: 100.8786570262577
Iteration: 4, Func. Count: 37, Neg. LLF: 97.97813755984595
Iteration: 5, Func. Count: 45, Neg. LLF: 98.35865695246476
Iteration: 6, Func. Count: 55, Neg. LLF: 97.9103420119388
Iteration: 7, Func. Count: 63, Neg. LLF: 97.91933266459752
Iteration: 8, Func. Count: 72, Neg. LLF: 97.85995460284528
Iteration: 9, Func. Count: 80, Neg. LLF: 97.8253009323252
Iteration: 10, Func. Count: 88, Neg. LLF: 97.80499078005941
Iteration: 11, Func. Count: 96, Neg. LLF: 97.79604360036957
Iteration: 12, Func. Count: 104, Neg. LLF: 97.7925846603661
Iteration: 13, Func. Count: 112, Neg. LLF: 97.79148344578024
Iteration: 14, Func. Count: 120, Neg. LLF: 97.7912829708944
Iteration: 15, Func. Count: 128, Neg. LLF: 97.7912576557341
Iteration: 16, Func. Count: 136, Neg. LLF: 97.7912561555717
Iteration: 17, Func. Count: 143, Neg. LLF: 97.79125615557734
Optimization terminated successfully (Exit mode 0)
Current function value: 97.7912561555717
Iterations: 17
Function evaluations: 143
Gradient evaluations: 17
Iteration: 1, Func. Count: 10, Neg. LLF: 104.44062308471567
Iteration: 2, Func. Count: 21, Neg. LLF: 101.00209688221199
Iteration: 3, Func. Count: 31, Neg. LLF: 104.2607574409325
Iteration: 4, Func. Count: 41, Neg. LLF: 99.31443907234238
Iteration: 5, Func. Count: 51, Neg. LLF: 97.70936765154548
Iteration: 6, Func. Count: 60, Neg. LLF: 103.47058020593617
Iteration: 7, Func. Count: 71, Neg. LLF: 98.06219774257436
Iteration: 8, Func. Count: 82, Neg. LLF: 97.03527044581328
Iteration: 9, Func. Count: 91, Neg. LLF: 97.01978000032156
Iteration: 10, Func. Count: 100, Neg. LLF: 97.00243155740195
Iteration: 11, Func. Count: 109, Neg. LLF: 97.0011803462759
Iteration: 12, Func. Count: 118, Neg. LLF: 97.00106809982046
Iteration: 13, Func. Count: 127, Neg. LLF: 97.00106147447369
Iteration: 14, Func. Count: 136, Neg. LLF: 97.0010604137509
Iteration: 15, Func. Count: 144, Neg. LLF: 97.00106041376738
Optimization terminated successfully (Exit mode 0)
Current function value: 97.0010604137509
Iterations: 15
Function evaluations: 144
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 104.69834567937814
Iteration: 2, Func. Count: 23, Neg. LLF: 100.53031254333072
Iteration: 3, Func. Count: 34, Neg. LLF: 131.01726982899638
Iteration: 4, Func. Count: 45, Neg. LLF: 98.30081017587966
Iteration: 5, Func. Count: 56, Neg. LLF: 98.44085446083214
Iteration: 6, Func. Count: 67, Neg. LLF: 100.0204966183278
Iteration: 7, Func. Count: 78, Neg. LLF: 98.20760214880848
Iteration: 8, Func. Count: 89, Neg. LLF: 103.10684340709047
Iteration: 9, Func. Count: 100, Neg. LLF: 97.26976818877199
Iteration: 10, Func. Count: 110, Neg. LLF: 97.07543444675498
Iteration: 11, Func. Count: 120, Neg. LLF: 97.01207532379678
Iteration: 12, Func. Count: 130, Neg. LLF: 97.00186098559126
Iteration: 13, Func. Count: 140, Neg. LLF: 97.0011010421761
Iteration: 14, Func. Count: 150, Neg. LLF: 97.00106958998485
Iteration: 15, Func. Count: 160, Neg. LLF: 97.00106048071933
Iteration: 16, Func. Count: 169, Neg. LLF: 97.00106051361034
Optimization terminated successfully (Exit mode 0)
Current function value: 97.00106048071933
Iterations: 16
Function evaluations: 169
Gradient evaluations: 16
Iteration: 1, Func. Count: 8, Neg. LLF: 116.44974271892521
Iteration: 2, Func. Count: 17, Neg. LLF: 147.635028017457
Iteration: 3, Func. Count: 25, Neg. LLF: 11036129.748690665
Iteration: 4, Func. Count: 33, Neg. LLF: 97.56120986721669
Iteration: 5, Func. Count: 40, Neg. LLF: 97.11264921107121
Iteration: 6, Func. Count: 47, Neg. LLF: 96.92931913320886
Iteration: 7, Func. Count: 54, Neg. LLF: 96.85114987695063
Iteration: 8, Func. Count: 61, Neg. LLF: 96.82025244194969
Iteration: 9, Func. Count: 68, Neg. LLF: 96.80482012797752
Iteration: 10, Func. Count: 75, Neg. LLF: 96.80450896149573
Iteration: 11, Func. Count: 82, Neg. LLF: 96.80450392343587
Iteration: 12, Func. Count: 88, Neg. LLF: 96.80450392341231
Optimization terminated successfully (Exit mode 0)
Current function value: 96.80450392343587
Iterations: 12
Function evaluations: 88
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 98.89378095191164
Iteration: 2, Func. Count: 19, Neg. LLF: 111.34870830018592
Iteration: 3, Func. Count: 28, Neg. LLF: 99.55013632209213
Iteration: 4, Func. Count: 37, Neg. LLF: 97.35589617677209
Iteration: 5, Func. Count: 45, Neg. LLF: 96.8372767431545
Iteration: 6, Func. Count: 53, Neg. LLF: 96.80916329928962
Iteration: 7, Func. Count: 61, Neg. LLF: 96.8045868842006
Iteration: 8, Func. Count: 69, Neg. LLF: 96.80450470449503
Iteration: 9, Func. Count: 77, Neg. LLF: 96.8045036830532
Iteration: 10, Func. Count: 84, Neg. LLF: 96.80450372639295
Optimization terminated successfully (Exit mode 0)
Current function value: 96.8045036830532
Iterations: 10
Function evaluations: 84
Gradient evaluations: 10
Iteration: 1, Func. Count: 10, Neg. LLF: 98.93316003822818
Iteration: 2, Func. Count: 21, Neg. LLF: 124.06145497363916
Iteration: 3, Func. Count: 31, Neg. LLF: 97.54106001226076
Iteration: 4, Func. Count: 40, Neg. LLF: 112.82316270317386
Iteration: 5, Func. Count: 50, Neg. LLF: 96.96128088863509
Iteration: 6, Func. Count: 59, Neg. LLF: 96.92381467804448
Iteration: 7, Func. Count: 68, Neg. LLF: 96.90011011687616
Iteration: 8, Func. Count: 77, Neg. LLF: 96.83840085887279
Iteration: 9, Func. Count: 86, Neg. LLF: 96.80969923202544
Iteration: 10, Func. Count: 95, Neg. LLF: 96.80500342987786
Iteration: 11, Func. Count: 104, Neg. LLF: 96.80453015838667
Iteration: 12, Func. Count: 113, Neg. LLF: 96.80450411805393
Iteration: 13, Func. Count: 121, Neg. LLF: 96.8045041758205
Optimization terminated successfully (Exit mode 0)
Current function value: 96.80450411805393
Iterations: 13
Function evaluations: 121
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 99.06271342665634
Iteration: 2, Func. Count: 22, Neg. LLF: 121.6463851805117
Iteration: 3, Func. Count: 33, Neg. LLF: 105.49870310122502
Iteration: 4, Func. Count: 44, Neg. LLF: 98.6948424619739
Iteration: 5, Func. Count: 55, Neg. LLF: 105.39996733017918
Iteration: 6, Func. Count: 66, Neg. LLF: 96.24691761873807
Iteration: 7, Func. Count: 76, Neg. LLF: 96.08681751526107
Iteration: 8, Func. Count: 86, Neg. LLF: 96.04754726576374
Iteration: 9, Func. Count: 96, Neg. LLF: 101.84423562223343
Iteration: 10, Func. Count: 109, Neg. LLF: 95.98675387288567
Iteration: 11, Func. Count: 119, Neg. LLF: 95.98451450313613
Iteration: 12, Func. Count: 129, Neg. LLF: 95.98433554026454
Iteration: 13, Func. Count: 139, Neg. LLF: 95.98432777786067
Iteration: 14, Func. Count: 148, Neg. LLF: 95.98432777787087
Optimization terminated successfully (Exit mode 0)
Current function value: 95.98432777786067
Iterations: 14
Function evaluations: 148
Gradient evaluations: 14
Iteration: 1, Func. Count: 12, Neg. LLF: 99.16011516974264
Iteration: 2, Func. Count: 24, Neg. LLF: 122.61919863761563
Iteration: 3, Func. Count: 36, Neg. LLF: 112.24992008730247
Iteration: 4, Func. Count: 48, Neg. LLF: 8087.549785987304
Iteration: 5, Func. Count: 60, Neg. LLF: 97.4718818140346
Iteration: 6, Func. Count: 72, Neg. LLF: 96.0231387002604
Iteration: 7, Func. Count: 83, Neg. LLF: 95.9875582915193
Iteration: 8, Func. Count: 94, Neg. LLF: 107.85311034191479
Iteration: 9, Func. Count: 108, Neg. LLF: 95.98473597770729
Iteration: 10, Func. Count: 119, Neg. LLF: 95.9843527299997
Iteration: 11, Func. Count: 130, Neg. LLF: 95.98433128365794
Iteration: 12, Func. Count: 141, Neg. LLF: 95.98432792814081
Iteration: 13, Func. Count: 151, Neg. LLF: 95.98432798929345
Optimization terminated successfully (Exit mode 0)
Current function value: 95.98432792814081
Iterations: 13
Function evaluations: 151
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 115.43466901249798
Iteration: 2, Func. Count: 19, Neg. LLF: 150.32266440956275
Iteration: 3, Func. Count: 28, Neg. LLF: 11017458.31041007
Iteration: 4, Func. Count: 37, Neg. LLF: 97.5846819971621
Iteration: 5, Func. Count: 45, Neg. LLF: 97.1639239111983
Iteration: 6, Func. Count: 53, Neg. LLF: 96.95996325448469
Iteration: 7, Func. Count: 61, Neg. LLF: 96.87249867295982
Iteration: 8, Func. Count: 69, Neg. LLF: 96.83093391995705
Iteration: 9, Func. Count: 77, Neg. LLF: 96.80550173030888
Iteration: 10, Func. Count: 85, Neg. LLF: 96.80455348774737
Iteration: 11, Func. Count: 93, Neg. LLF: 96.80450530430194
Iteration: 12, Func. Count: 101, Neg. LLF: 96.80450374225353
Iteration: 13, Func. Count: 108, Neg. LLF: 96.80450382486849
Optimization terminated successfully (Exit mode 0)
Current function value: 96.80450374225353
Iterations: 13
Function evaluations: 108
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 98.91974789781739
Iteration: 2, Func. Count: 21, Neg. LLF: 110.8004466264746
Iteration: 3, Func. Count: 31, Neg. LLF: 100.12423059753584
Iteration: 4, Func. Count: 41, Neg. LLF: 97.17667643905219
Iteration: 5, Func. Count: 50, Neg. LLF: 96.82485252819916
Iteration: 6, Func. Count: 59, Neg. LLF: 96.80641103190062
Iteration: 7, Func. Count: 68, Neg. LLF: 96.80451304431661
Iteration: 8, Func. Count: 77, Neg. LLF: 96.804503685594
Iteration: 9, Func. Count: 85, Neg. LLF: 96.80450372894428
Optimization terminated successfully (Exit mode 0)
Current function value: 96.804503685594
Iterations: 9
Function evaluations: 85
Gradient evaluations: 9
Iteration: 1, Func. Count: 11, Neg. LLF: 98.97456230295306
Iteration: 2, Func. Count: 23, Neg. LLF: 122.31888282994562
Iteration: 3, Func. Count: 34, Neg. LLF: 98.03706057002435
Iteration: 4, Func. Count: 45, Neg. LLF: 118.03252858399634
Iteration: 5, Func. Count: 56, Neg. LLF: 96.93596456272934
Iteration: 6, Func. Count: 66, Neg. LLF: 96.84290328471234
Iteration: 7, Func. Count: 76, Neg. LLF: 96.80581963286004
Iteration: 8, Func. Count: 86, Neg. LLF: 96.80452367161938
Iteration: 9, Func. Count: 96, Neg. LLF: 96.80450367934752
Iteration: 10, Func. Count: 105, Neg. LLF: 96.80450373708108
Optimization terminated successfully (Exit mode 0)
Current function value: 96.80450367934752
Iterations: 10
Function evaluations: 105
Gradient evaluations: 10
Iteration: 1, Func. Count: 12, Neg. LLF: 99.06754387599389
Iteration: 2, Func. Count: 24, Neg. LLF: 121.54288309985124
Iteration: 3, Func. Count: 36, Neg. LLF: 107.94554238874208
Iteration: 4, Func. Count: 48, Neg. LLF: 96.32564899975435
Iteration: 5, Func. Count: 59, Neg. LLF: 101.84925278838708
Iteration: 6, Func. Count: 72, Neg. LLF: 98.31014895289616
Iteration: 7, Func. Count: 84, Neg. LLF: 102.8874664654053
Iteration: 8, Func. Count: 96, Neg. LLF: 96.06554458889482
Iteration: 9, Func. Count: 108, Neg. LLF: 95.99026725636149
Iteration: 10, Func. Count: 119, Neg. LLF: 95.98452369966523
Iteration: 11, Func. Count: 130, Neg. LLF: 95.9843357363182
Iteration: 12, Func. Count: 141, Neg. LLF: 95.98432810805105
Iteration: 13, Func. Count: 151, Neg. LLF: 95.9843281079502
Optimization terminated successfully (Exit mode 0)
Current function value: 95.98432810805105
Iterations: 13
Function evaluations: 151
Gradient evaluations: 13
Iteration: 1, Func. Count: 13, Neg. LLF: 99.13667531302792
Iteration: 2, Func. Count: 26, Neg. LLF: 122.17005454791123
Iteration: 3, Func. Count: 39, Neg. LLF: 113.6189219700653
Iteration: 4, Func. Count: 52, Neg. LLF: 12184.599207716179
Iteration: 5, Func. Count: 65, Neg. LLF: 97.5052182144038
Iteration: 6, Func. Count: 78, Neg. LLF: 96.0196334184464
Iteration: 7, Func. Count: 90, Neg. LLF: 95.98690069493577
Iteration: 8, Func. Count: 102, Neg. LLF: 110.10547655887315
Iteration: 9, Func. Count: 117, Neg. LLF: 95.98460913709856
Iteration: 10, Func. Count: 129, Neg. LLF: 95.98434965832966
Iteration: 11, Func. Count: 141, Neg. LLF: 95.98433051493286
Iteration: 12, Func. Count: 153, Neg. LLF: 95.9843279438695
Iteration: 13, Func. Count: 164, Neg. LLF: 95.9843280050237
Optimization terminated successfully (Exit mode 0)
Current function value: 95.9843279438695
Iterations: 13
Function evaluations: 164
Gradient evaluations: 13
Iteration: 1, Func. Count: 6, Neg. LLF: 150.4915576967387
Iteration: 2, Func. Count: 14, Neg. LLF: 145.94735851884278
Iteration: 3, Func. Count: 21, Neg. LLF: 98.71342585799657
Iteration: 4, Func. Count: 26, Neg. LLF: 98.70460668467713
Iteration: 5, Func. Count: 31, Neg. LLF: 98.70428270022182
Iteration: 6, Func. Count: 36, Neg. LLF: 98.70425606807724
Iteration: 7, Func. Count: 41, Neg. LLF: 98.70424019928062
Iteration: 8, Func. Count: 45, Neg. LLF: 98.70424037153494
Optimization terminated successfully (Exit mode 0)
Current function value: 98.70424019928062
Iterations: 8
Function evaluations: 45
Gradient evaluations: 8
Iteration: 1, Func. Count: 7, Neg. LLF: 143.96126261058805
Iteration: 2, Func. Count: 15, Neg. LLF: 98.67794932594894
Iteration: 3, Func. Count: 21, Neg. LLF: 98.63802379804201
Iteration: 4, Func. Count: 27, Neg. LLF: 98.71491829038492
Iteration: 5, Func. Count: 34, Neg. LLF: 98.90015055757084
Iteration: 6, Func. Count: 41, Neg. LLF: 98.90615761373658
Iteration: 7, Func. Count: 48, Neg. LLF: 98.6292955455878
Iteration: 8, Func. Count: 55, Neg. LLF: 98.62236968903515
Iteration: 9, Func. Count: 62, Neg. LLF: 98.62136566290378
Iteration: 10, Func. Count: 68, Neg. LLF: 98.62134853901436
Iteration: 11, Func. Count: 73, Neg. LLF: 98.62134853893976
Optimization terminated successfully (Exit mode 0)
Current function value: 98.62134853901436
Iterations: 11
Function evaluations: 73
Gradient evaluations: 11
Iteration: 1, Func. Count: 8, Neg. LLF: 136.8781191309486
Iteration: 2, Func. Count: 17, Neg. LLF: 98.73914576910472
Iteration: 3, Func. Count: 25, Neg. LLF: 98.6373310376737
Iteration: 4, Func. Count: 32, Neg. LLF: 98.63555839418892
Iteration: 5, Func. Count: 39, Neg. LLF: 98.63023063961457
Iteration: 6, Func. Count: 46, Neg. LLF: 98.62846321911206
Iteration: 7, Func. Count: 53, Neg. LLF: 98.62815747098654
Iteration: 8, Func. Count: 60, Neg. LLF: 98.62799755327535
Iteration: 9, Func. Count: 67, Neg. LLF: 98.62794060263975
Iteration: 10, Func. Count: 74, Neg. LLF: 98.62740234426433
Iteration: 11, Func. Count: 81, Neg. LLF: 98.62302417106845
Iteration: 12, Func. Count: 88, Neg. LLF: 98.62135870008042
Iteration: 13, Func. Count: 95, Neg. LLF: 98.62135317017601
Iteration: 14, Func. Count: 102, Neg. LLF: 98.6213483180098
Iteration: 15, Func. Count: 108, Neg. LLF: 98.62134831867884
Optimization terminated successfully (Exit mode 0)
Current function value: 98.6213483180098
Iterations: 15
Function evaluations: 108
Gradient evaluations: 15
Iteration: 1, Func. Count: 9, Neg. LLF: 130.9729584085393
Iteration: 2, Func. Count: 19, Neg. LLF: 98.68961736682779
Iteration: 3, Func. Count: 27, Neg. LLF: 98.65132093519169
Iteration: 4, Func. Count: 35, Neg. LLF: 98.64118157559015
Iteration: 5, Func. Count: 43, Neg. LLF: 98.64549756164996
Iteration: 6, Func. Count: 52, Neg. LLF: 98.63521661335162
Iteration: 7, Func. Count: 60, Neg. LLF: 98.63412841099776
Iteration: 8, Func. Count: 68, Neg. LLF: 98.63387049650517
Iteration: 9, Func. Count: 76, Neg. LLF: 98.6317104739812
Iteration: 10, Func. Count: 84, Neg. LLF: 98.62991032785794
Iteration: 11, Func. Count: 92, Neg. LLF: 98.6293466912199
Iteration: 12, Func. Count: 100, Neg. LLF: 98.62915061480803
Iteration: 13, Func. Count: 108, Neg. LLF: 98.62908662945247
Iteration: 14, Func. Count: 116, Neg. LLF: 98.62864090186788
Iteration: 15, Func. Count: 124, Neg. LLF: 98.62479587793443
Iteration: 16, Func. Count: 132, Neg. LLF: 98.62135793302389
Iteration: 17, Func. Count: 140, Neg. LLF: 99.49192965735584
Optimization terminated successfully (Exit mode 0)
Current function value: 98.62135754573056
Iterations: 18
Function evaluations: 143
Gradient evaluations: 17
Iteration: 1, Func. Count: 10, Neg. LLF: 127.46633153826708
Iteration: 2, Func. Count: 21, Neg. LLF: 98.70018588805983
Iteration: 3, Func. Count: 30, Neg. LLF: 98.651205946218
Iteration: 4, Func. Count: 39, Neg. LLF: 98.64473698272815
Iteration: 5, Func. Count: 48, Neg. LLF: 98.64480253750747
Iteration: 6, Func. Count: 58, Neg. LLF: 98.64097293200244
Iteration: 7, Func. Count: 67, Neg. LLF: 98.63946203188085
Iteration: 8, Func. Count: 76, Neg. LLF: 98.63342201893126
Iteration: 9, Func. Count: 85, Neg. LLF: 98.63226444995769
Iteration: 10, Func. Count: 94, Neg. LLF: 98.6313134849774
Iteration: 11, Func. Count: 103, Neg. LLF: 98.63064548488337
Iteration: 12, Func. Count: 112, Neg. LLF: 98.6294163385727
Iteration: 13, Func. Count: 121, Neg. LLF: 98.62908858134466
Iteration: 14, Func. Count: 130, Neg. LLF: 98.62903528617392
Iteration: 15, Func. Count: 139, Neg. LLF: 98.62890609365903
Iteration: 16, Func. Count: 148, Neg. LLF: 98.6287762232988
Iteration: 17, Func. Count: 157, Neg. LLF: 98.62813896852707
Iteration: 18, Func. Count: 166, Neg. LLF: 98.62654302318022
Iteration: 19, Func. Count: 175, Neg. LLF: 98.62516039756278
Iteration: 20, Func. Count: 184, Neg. LLF: 98.62178035657347
Iteration: 21, Func. Count: 193, Neg. LLF: 98.62211354194568
Iteration: 22, Func. Count: 203, Neg. LLF: 98.62136346610042
Iteration: 23, Func. Count: 212, Neg. LLF: 98.62134844590382
Iteration: 24, Func. Count: 221, Neg. LLF: 98.6213480178546
Optimization terminated successfully (Exit mode 0)
Current function value: 98.6213480178546
Iterations: 24
Function evaluations: 221
Gradient evaluations: 24
Iteration: 1, Func. Count: 7, Neg. LLF: 150.79345899693442
Iteration: 2, Func. Count: 16, Neg. LLF: 170.1669968895542
Iteration: 3, Func. Count: 23, Neg. LLF: 98.76280435735114
Iteration: 4, Func. Count: 29, Neg. LLF: 100.43799851003511
Iteration: 5, Func. Count: 37, Neg. LLF: 99.69925957720335
Iteration: 6, Func. Count: 44, Neg. LLF: 97.91836536071015
Iteration: 7, Func. Count: 50, Neg. LLF: 97.83414503034712
Iteration: 8, Func. Count: 56, Neg. LLF: 97.80366797283902
Iteration: 9, Func. Count: 62, Neg. LLF: 97.79453392365026
Iteration: 10, Func. Count: 68, Neg. LLF: 97.79228370629116
Iteration: 11, Func. Count: 74, Neg. LLF: 97.7915360790933
Iteration: 12, Func. Count: 80, Neg. LLF: 97.79146542133363
Iteration: 13, Func. Count: 85, Neg. LLF: 97.79146542129392
Optimization terminated successfully (Exit mode 0)
Current function value: 97.79146542133363
Iterations: 13
Function evaluations: 85
Gradient evaluations: 13
Iteration: 1, Func. Count: 8, Neg. LLF: 143.46492151860363
Iteration: 2, Func. Count: 17, Neg. LLF: 98.73139254211763
Iteration: 3, Func. Count: 24, Neg. LLF: 98.67625331470977
Iteration: 4, Func. Count: 31, Neg. LLF: 98.67471841327419
Iteration: 5, Func. Count: 38, Neg. LLF: 98.66425929334041
Iteration: 6, Func. Count: 45, Neg. LLF: 99.7542903499416
Iteration: 7, Func. Count: 53, Neg. LLF: 99.41998631438022
Iteration: 8, Func. Count: 61, Neg. LLF: 99.26491859958665
Iteration: 9, Func. Count: 69, Neg. LLF: 99.21030536578336
Iteration: 10, Func. Count: 77, Neg. LLF: 99.26729000032707
Iteration: 11, Func. Count: 85, Neg. LLF: 99.1403551601
Iteration: 12, Func. Count: 93, Neg. LLF: 146.0370405987083
Iteration: 13, Func. Count: 102, Neg. LLF: 98.62977049271211
Iteration: 14, Func. Count: 110, Neg. LLF: 99.96212430541298
Iteration: 15, Func. Count: 118, Neg. LLF: 98.65398346851703
Iteration: 16, Func. Count: 126, Neg. LLF: 98.57535295453559
Iteration: 17, Func. Count: 133, Neg. LLF: 98.57193009608241
Iteration: 18, Func. Count: 140, Neg. LLF: 98.57188284404619
Iteration: 19, Func. Count: 148, Neg. LLF: 98.57175806400294
Iteration: 20, Func. Count: 154, Neg. LLF: 98.5717580638598
Optimization terminated successfully (Exit mode 0)
Current function value: 98.57175806400294
Iterations: 21
Function evaluations: 154
Gradient evaluations: 20
Iteration: 1, Func. Count: 9, Neg. LLF: 109.34147483993638
Iteration: 2, Func. Count: 19, Neg. LLF: 99.21692824116742
Iteration: 3, Func. Count: 28, Neg. LLF: 100.70617169764218
Iteration: 4, Func. Count: 37, Neg. LLF: 97.94423606242353
Iteration: 5, Func. Count: 45, Neg. LLF: 98.18404443833813
Iteration: 6, Func. Count: 55, Neg. LLF: 97.8840337147705
Iteration: 7, Func. Count: 63, Neg. LLF: 98.43968311673221
Iteration: 8, Func. Count: 72, Neg. LLF: 97.85010271801607
Iteration: 9, Func. Count: 80, Neg. LLF: 97.81080449800355
Iteration: 10, Func. Count: 88, Neg. LLF: 97.79653193384334
Iteration: 11, Func. Count: 96, Neg. LLF: 97.79243648930772
Iteration: 12, Func. Count: 104, Neg. LLF: 97.7917992096409
Iteration: 13, Func. Count: 112, Neg. LLF: 97.79146704873622
Iteration: 14, Func. Count: 120, Neg. LLF: 97.79129031343942
Iteration: 15, Func. Count: 128, Neg. LLF: 97.79125832685153
Iteration: 16, Func. Count: 136, Neg. LLF: 97.79125619309914
Iteration: 17, Func. Count: 143, Neg. LLF: 97.79125619310116
Optimization terminated successfully (Exit mode 0)
Current function value: 97.79125619309914
Iterations: 17
Function evaluations: 143
Gradient evaluations: 17
Iteration: 1, Func. Count: 10, Neg. LLF: 104.54170370669641
Iteration: 2, Func. Count: 21, Neg. LLF: 101.01412542565306
Iteration: 3, Func. Count: 31, Neg. LLF: 104.06689217481005
Iteration: 4, Func. Count: 41, Neg. LLF: 99.4478316657884
Iteration: 5, Func. Count: 51, Neg. LLF: 97.58196577006203
Iteration: 6, Func. Count: 60, Neg. LLF: 100.94933824327425
Iteration: 7, Func. Count: 71, Neg. LLF: 98.01959368309335
Iteration: 8, Func. Count: 82, Neg. LLF: 97.04022284643726
Iteration: 9, Func. Count: 91, Neg. LLF: 97.02397039184959
Iteration: 10, Func. Count: 100, Neg. LLF: 97.00306754431402
Iteration: 11, Func. Count: 109, Neg. LLF: 97.00118512071471
Iteration: 12, Func. Count: 118, Neg. LLF: 97.00106181952322
Iteration: 13, Func. Count: 127, Neg. LLF: 97.00106046178918
Iteration: 14, Func. Count: 135, Neg. LLF: 97.00106046173727
Optimization terminated successfully (Exit mode 0)
Current function value: 97.00106046178918
Iterations: 14
Function evaluations: 135
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 104.82164157874118
Iteration: 2, Func. Count: 23, Neg. LLF: 100.40559722154232
Iteration: 3, Func. Count: 34, Neg. LLF: 122.9675146810804
Iteration: 4, Func. Count: 45, Neg. LLF: 99.02542220652543
Iteration: 5, Func. Count: 56, Neg. LLF: 98.88196008819116
Iteration: 6, Func. Count: 67, Neg. LLF: 98.69059830755904
Iteration: 7, Func. Count: 78, Neg. LLF: 98.6867657801117
Iteration: 8, Func. Count: 89, Neg. LLF: 97.80529110668617
Iteration: 9, Func. Count: 100, Neg. LLF: 97.35988896443934
Iteration: 10, Func. Count: 110, Neg. LLF: 97.48345366348275
Iteration: 11, Func. Count: 121, Neg. LLF: 97.00918078931859
Iteration: 12, Func. Count: 131, Neg. LLF: 97.0015002658918
Iteration: 13, Func. Count: 141, Neg. LLF: 97.00108470882681
Iteration: 14, Func. Count: 151, Neg. LLF: 97.00106322469759
Iteration: 15, Func. Count: 161, Neg. LLF: 97.00106061755847
Iteration: 16, Func. Count: 170, Neg. LLF: 97.0010606503291
Optimization terminated successfully (Exit mode 0)
Current function value: 97.00106061755847
Iterations: 16
Function evaluations: 170
Gradient evaluations: 16
Iteration: 1, Func. Count: 8, Neg. LLF: 151.07798521879064
Iteration: 2, Func. Count: 18, Neg. LLF: 169.89937767824432
Iteration: 3, Func. Count: 26, Neg. LLF: 98.7716728359601
Iteration: 4, Func. Count: 33, Neg. LLF: 100.52797912457623
Iteration: 5, Func. Count: 42, Neg. LLF: 100.13490091067317
Iteration: 6, Func. Count: 50, Neg. LLF: 97.89277119192455
Iteration: 7, Func. Count: 57, Neg. LLF: 97.82905762753875
Iteration: 8, Func. Count: 64, Neg. LLF: 97.80300134419848
Iteration: 9, Func. Count: 71, Neg. LLF: 97.79505251894196
Iteration: 10, Func. Count: 78, Neg. LLF: 97.79186549317735
Iteration: 11, Func. Count: 85, Neg. LLF: 97.79152397590731
Iteration: 12, Func. Count: 92, Neg. LLF: 97.79146684956241
Iteration: 13, Func. Count: 99, Neg. LLF: 97.79146535821542
Iteration: 14, Func. Count: 105, Neg. LLF: 97.79146531075256
Optimization terminated successfully (Exit mode 0)
Current function value: 97.79146535821542
Iterations: 14
Function evaluations: 105
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 143.26134752688674
Iteration: 2, Func. Count: 19, Neg. LLF: 98.70015824704383
Iteration: 3, Func. Count: 27, Neg. LLF: 98.67611008924825
Iteration: 4, Func. Count: 35, Neg. LLF: 98.67432128693886
Iteration: 5, Func. Count: 43, Neg. LLF: 98.65934523912556
Iteration: 6, Func. Count: 51, Neg. LLF: 99.82279492131786
Iteration: 7, Func. Count: 60, Neg. LLF: 99.40478870295205
Iteration: 8, Func. Count: 69, Neg. LLF: 99.32754625022541
Iteration: 9, Func. Count: 78, Neg. LLF: 99.29920663058152
Iteration: 10, Func. Count: 87, Neg. LLF: 201.03430592260617
Iteration: 11, Func. Count: 98, Neg. LLF: 105.50044660852586
Iteration: 12, Func. Count: 108, Neg. LLF: 98.96966467703876
Iteration: 13, Func. Count: 117, Neg. LLF: 98.63963501916375
Iteration: 14, Func. Count: 126, Neg. LLF: 98.80963575506323
Iteration: 15, Func. Count: 135, Neg. LLF: 98.57293631404542
Iteration: 16, Func. Count: 143, Neg. LLF: 98.57186569456606
Iteration: 17, Func. Count: 151, Neg. LLF: 98.57175973614778
Iteration: 18, Func. Count: 159, Neg. LLF: 98.57175809384906
Iteration: 19, Func. Count: 166, Neg. LLF: 98.57175809401141
Optimization terminated successfully (Exit mode 0)
Current function value: 98.57175809384906
Iterations: 20
Function evaluations: 166
Gradient evaluations: 19
Iteration: 1, Func. Count: 10, Neg. LLF: 109.29953798820486
Iteration: 2, Func. Count: 21, Neg. LLF: 99.06538793761784
Iteration: 3, Func. Count: 31, Neg. LLF: 100.8170839863462
Iteration: 4, Func. Count: 41, Neg. LLF: 97.93385484289712
Iteration: 5, Func. Count: 50, Neg. LLF: 98.12974159253709
Iteration: 6, Func. Count: 61, Neg. LLF: 97.89395897929302
Iteration: 7, Func. Count: 70, Neg. LLF: 97.86218243386041
Iteration: 8, Func. Count: 79, Neg. LLF: 97.82714927757713
Iteration: 9, Func. Count: 88, Neg. LLF: 97.80868248843049
Iteration: 10, Func. Count: 97, Neg. LLF: 97.79229896083528
Iteration: 11, Func. Count: 106, Neg. LLF: 97.79155366640927
Iteration: 12, Func. Count: 115, Neg. LLF: 97.7913992078869
Iteration: 13, Func. Count: 124, Neg. LLF: 97.79129308356954
Iteration: 14, Func. Count: 133, Neg. LLF: 97.79125674142557
Iteration: 15, Func. Count: 142, Neg. LLF: 97.79125615040341
Optimization terminated successfully (Exit mode 0)
Current function value: 97.79125615040341
Iterations: 15
Function evaluations: 142
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 104.58792661927485
Iteration: 2, Func. Count: 23, Neg. LLF: 101.0189302980319
Iteration: 3, Func. Count: 34, Neg. LLF: 104.63281135110842
Iteration: 4, Func. Count: 45, Neg. LLF: 99.42289618764418
Iteration: 5, Func. Count: 56, Neg. LLF: 97.86551440685355
Iteration: 6, Func. Count: 67, Neg. LLF: 98.1903248171095
Iteration: 7, Func. Count: 78, Neg. LLF: 103.17094358249292
Iteration: 8, Func. Count: 90, Neg. LLF: 97.01373637926218
Iteration: 9, Func. Count: 100, Neg. LLF: 97.01641387666095
Iteration: 10, Func. Count: 111, Neg. LLF: 97.00153109281287
Iteration: 11, Func. Count: 121, Neg. LLF: 97.00108992757028
Iteration: 12, Func. Count: 131, Neg. LLF: 97.0010630406803
Iteration: 13, Func. Count: 141, Neg. LLF: 97.00106041516727
Iteration: 14, Func. Count: 150, Neg. LLF: 97.00106041517662
Optimization terminated successfully (Exit mode 0)
Current function value: 97.00106041516727
Iterations: 14
Function evaluations: 150
Gradient evaluations: 14
Iteration: 1, Func. Count: 12, Neg. LLF: 104.62629522695167
Iteration: 2, Func. Count: 25, Neg. LLF: 100.42310057375181
Iteration: 3, Func. Count: 37, Neg. LLF: 116.05146903777158
Iteration: 4, Func. Count: 49, Neg. LLF: 99.31237081676521
Iteration: 5, Func. Count: 61, Neg. LLF: 99.21678630783475
Iteration: 6, Func. Count: 73, Neg. LLF: 99.07093389191628
Iteration: 7, Func. Count: 85, Neg. LLF: 98.63037816308172
Iteration: 8, Func. Count: 97, Neg. LLF: 97.66419078646
Iteration: 9, Func. Count: 109, Neg. LLF: 97.32430403190887
Iteration: 10, Func. Count: 120, Neg. LLF: 97.02531885221438
Iteration: 11, Func. Count: 131, Neg. LLF: 97.0061968980363
Iteration: 12, Func. Count: 142, Neg. LLF: 97.00150583636716
Iteration: 13, Func. Count: 153, Neg. LLF: 97.0010686190855
Iteration: 14, Func. Count: 164, Neg. LLF: 97.001061240022
Iteration: 15, Func. Count: 175, Neg. LLF: 97.00106041065958
Optimization terminated successfully (Exit mode 0)
Current function value: 97.00106041065958
Iterations: 15
Function evaluations: 175
Gradient evaluations: 15
Iteration: 1, Func. Count: 9, Neg. LLF: 115.89640423241475
Iteration: 2, Func. Count: 19, Neg. LLF: 165.13130960366462
Iteration: 3, Func. Count: 28, Neg. LLF: 11046764.32453143
Iteration: 4, Func. Count: 37, Neg. LLF: 97.68858988726775
Iteration: 5, Func. Count: 45, Neg. LLF: 97.11520788390263
Iteration: 6, Func. Count: 53, Neg. LLF: 96.94739593228628
Iteration: 7, Func. Count: 61, Neg. LLF: 96.87218367540687
Iteration: 8, Func. Count: 69, Neg. LLF: 96.84180007694577
Iteration: 9, Func. Count: 77, Neg. LLF: 96.8059455813268
Iteration: 10, Func. Count: 85, Neg. LLF: 96.80460496639654
Iteration: 11, Func. Count: 93, Neg. LLF: 96.80450453564754
Iteration: 12, Func. Count: 101, Neg. LLF: 96.80450375053681
Optimization terminated successfully (Exit mode 0)
Current function value: 96.80450375053681
Iterations: 12
Function evaluations: 101
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 98.69203008086976
Iteration: 2, Func. Count: 21, Neg. LLF: 111.191161904489
Iteration: 3, Func. Count: 31, Neg. LLF: 97.64051106092818
Iteration: 4, Func. Count: 40, Neg. LLF: 97.88887891111308
Iteration: 5, Func. Count: 50, Neg. LLF: 96.98297800674447
Iteration: 6, Func. Count: 59, Neg. LLF: 96.89992160462998
Iteration: 7, Func. Count: 68, Neg. LLF: 96.80939628799094
Iteration: 8, Func. Count: 77, Neg. LLF: 96.80454672742903
Iteration: 9, Func. Count: 86, Neg. LLF: 96.80450439779321
Iteration: 10, Func. Count: 94, Neg. LLF: 96.8045044411651
Optimization terminated successfully (Exit mode 0)
Current function value: 96.80450439779321
Iterations: 10
Function evaluations: 94
Gradient evaluations: 10
Iteration: 1, Func. Count: 11, Neg. LLF: 98.72624460515227
Iteration: 2, Func. Count: 23, Neg. LLF: 123.26566866641967
Iteration: 3, Func. Count: 34, Neg. LLF: 97.08761134515878
Iteration: 4, Func. Count: 44, Neg. LLF: 98.27423538219321
Iteration: 5, Func. Count: 55, Neg. LLF: 96.91148143959114
Iteration: 6, Func. Count: 65, Neg. LLF: 96.86390747988727
Iteration: 7, Func. Count: 75, Neg. LLF: 96.83839708649013
Iteration: 8, Func. Count: 85, Neg. LLF: 96.80522178867308
Iteration: 9, Func. Count: 95, Neg. LLF: 96.80451599945323
Iteration: 10, Func. Count: 105, Neg. LLF: 96.80450416629411
Iteration: 11, Func. Count: 115, Neg. LLF: 96.80450364807098
Optimization terminated successfully (Exit mode 0)
Current function value: 96.80450364807098
Iterations: 11
Function evaluations: 115
Gradient evaluations: 11
Iteration: 1, Func. Count: 12, Neg. LLF: 98.82472387652152
Iteration: 2, Func. Count: 24, Neg. LLF: 124.20735620488975
Iteration: 3, Func. Count: 36, Neg. LLF: 97.36971848662922
Iteration: 4, Func. Count: 47, Neg. LLF: 1175.7225351788068
Iteration: 5, Func. Count: 59, Neg. LLF: 303.1296825851713
Iteration: 6, Func. Count: 71, Neg. LLF: 108.83866320728823
Iteration: 7, Func. Count: 85, Neg. LLF: 97.19557885729212
Iteration: 8, Func. Count: 97, Neg. LLF: 96.38500643322271
Iteration: 9, Func. Count: 109, Neg. LLF: 96.10760123020872
Iteration: 10, Func. Count: 120, Neg. LLF: 96.0557645491701
Iteration: 11, Func. Count: 131, Neg. LLF: 96.01297441721799
Iteration: 12, Func. Count: 142, Neg. LLF: 95.98812055432555
Iteration: 13, Func. Count: 153, Neg. LLF: 95.9847110287407
Iteration: 14, Func. Count: 164, Neg. LLF: 95.98434678564666
Iteration: 15, Func. Count: 175, Neg. LLF: 95.98432817271632
Iteration: 16, Func. Count: 185, Neg. LLF: 95.98432817270472
Optimization terminated successfully (Exit mode 0)
Current function value: 95.98432817271632
Iterations: 16
Function evaluations: 185
Gradient evaluations: 16
Iteration: 1, Func. Count: 13, Neg. LLF: 98.9072443234759
Iteration: 2, Func. Count: 26, Neg. LLF: 124.2096714504935
Iteration: 3, Func. Count: 39, Neg. LLF: 123.4622365492248
Iteration: 4, Func. Count: 52, Neg. LLF: 96.30301213228915
Iteration: 5, Func. Count: 64, Neg. LLF: 142.9229914153979
Iteration: 6, Func. Count: 79, Neg. LLF: 96.94281491402417
Iteration: 7, Func. Count: 92, Neg. LLF: 101.82389108176459
Iteration: 8, Func. Count: 105, Neg. LLF: 95.98946839730365
Iteration: 9, Func. Count: 117, Neg. LLF: 95.98470684270873
Iteration: 10, Func. Count: 129, Neg. LLF: 95.98435136942109
Iteration: 11, Func. Count: 141, Neg. LLF: 95.9843280066054
Iteration: 12, Func. Count: 152, Neg. LLF: 95.98432806775037
Optimization terminated successfully (Exit mode 0)
Current function value: 95.9843280066054
Iterations: 12
Function evaluations: 152
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 116.00499192894017
Iteration: 2, Func. Count: 21, Neg. LLF: 2221788.4674525973
Iteration: 3, Func. Count: 31, Neg. LLF: 10983702.825283406
Iteration: 4, Func. Count: 41, Neg. LLF: 98.43607409557318
Iteration: 5, Func. Count: 50, Neg. LLF: 97.28476321741356
Iteration: 6, Func. Count: 59, Neg. LLF: 97.03838906395467
Iteration: 7, Func. Count: 68, Neg. LLF: 96.92863294376536
Iteration: 8, Func. Count: 77, Neg. LLF: 96.86244822894074
Iteration: 9, Func. Count: 86, Neg. LLF: 96.84038603439613
Iteration: 10, Func. Count: 95, Neg. LLF: 96.80805244967955
Iteration: 11, Func. Count: 104, Neg. LLF: 96.80479579786841
Iteration: 12, Func. Count: 113, Neg. LLF: 96.80450599563667
Iteration: 13, Func. Count: 122, Neg. LLF: 96.80450380725013
Iteration: 14, Func. Count: 130, Neg. LLF: 96.80450388985652
Optimization terminated successfully (Exit mode 0)
Current function value: 96.80450380725013
Iterations: 14
Function evaluations: 130
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 98.69099638751278
Iteration: 2, Func. Count: 23, Neg. LLF: 110.57528862286186
Iteration: 3, Func. Count: 34, Neg. LLF: 98.0667975697813
Iteration: 4, Func. Count: 45, Neg. LLF: 98.1567637704429
Iteration: 5, Func. Count: 56, Neg. LLF: 96.81245624617628
Iteration: 6, Func. Count: 66, Neg. LLF: 96.80517045477804
Iteration: 7, Func. Count: 76, Neg. LLF: 96.80450994224051
Iteration: 8, Func. Count: 86, Neg. LLF: 96.80450365924145
Iteration: 9, Func. Count: 95, Neg. LLF: 96.80450370258767
Optimization terminated successfully (Exit mode 0)
Current function value: 96.80450365924145
Iterations: 9
Function evaluations: 95
Gradient evaluations: 9
Iteration: 1, Func. Count: 12, Neg. LLF: 98.75322570689221
Iteration: 2, Func. Count: 25, Neg. LLF: 121.4474939738979
Iteration: 3, Func. Count: 37, Neg. LLF: 97.05393494678036
Iteration: 4, Func. Count: 48, Neg. LLF: 105.55723360672653
Iteration: 5, Func. Count: 61, Neg. LLF: 96.98357207915676
Iteration: 6, Func. Count: 72, Neg. LLF: 96.91456581743711
Iteration: 7, Func. Count: 83, Neg. LLF: 96.87100921686859
Iteration: 8, Func. Count: 94, Neg. LLF: 96.81753462768376
Iteration: 9, Func. Count: 105, Neg. LLF: 96.8048925399656
Iteration: 10, Func. Count: 116, Neg. LLF: 96.80450573033794
Iteration: 11, Func. Count: 127, Neg. LLF: 96.8045036489378
Iteration: 12, Func. Count: 137, Neg. LLF: 96.804503706669
Optimization terminated successfully (Exit mode 0)
Current function value: 96.8045036489378
Iterations: 12
Function evaluations: 137
Gradient evaluations: 12
Iteration: 1, Func. Count: 13, Neg. LLF: 98.82991633395571
Iteration: 2, Func. Count: 26, Neg. LLF: 123.79432383394871
Iteration: 3, Func. Count: 39, Neg. LLF: 97.62717455416326
Iteration: 4, Func. Count: 52, Neg. LLF: 704.8455358940505
Iteration: 5, Func. Count: 65, Neg. LLF: 6106271.17711361
Iteration: 6, Func. Count: 78, Neg. LLF: 96.00047696905983
Iteration: 7, Func. Count: 90, Neg. LLF: 99.58493578222505
Iteration: 8, Func. Count: 105, Neg. LLF: 95.9898456710004
Iteration: 9, Func. Count: 117, Neg. LLF: 95.98676134417428
Iteration: 10, Func. Count: 129, Neg. LLF: 95.98452468749444
Iteration: 11, Func. Count: 141, Neg. LLF: 95.98432986073637
Iteration: 12, Func. Count: 153, Neg. LLF: 95.9843277758403
Iteration: 13, Func. Count: 164, Neg. LLF: 95.98432777585091
Optimization terminated successfully (Exit mode 0)
Current function value: 95.9843277758403
Iterations: 13
Function evaluations: 164
Gradient evaluations: 13
Iteration: 1, Func. Count: 14, Neg. LLF: 98.89008447409128
Iteration: 2, Func. Count: 28, Neg. LLF: 123.79617403032769
Iteration: 3, Func. Count: 42, Neg. LLF: 124.30543591782497
Iteration: 4, Func. Count: 56, Neg. LLF: 96.33660349592093
Iteration: 5, Func. Count: 69, Neg. LLF: 130.05346694467596
Iteration: 6, Func. Count: 85, Neg. LLF: 96.68034753295646
Iteration: 7, Func. Count: 99, Neg. LLF: 104.45450883543229
Iteration: 8, Func. Count: 113, Neg. LLF: 95.99107714028797
Iteration: 9, Func. Count: 126, Neg. LLF: 95.98482230315432
Iteration: 10, Func. Count: 139, Neg. LLF: 95.98437930883412
Iteration: 11, Func. Count: 152, Neg. LLF: 95.98432811071355
Iteration: 12, Func. Count: 164, Neg. LLF: 95.98432817190657
Optimization terminated successfully (Exit mode 0)
Current function value: 95.98432811071355
Iterations: 12
Function evaluations: 164
Gradient evaluations: 12
Iteration: 1, Func. Count: 7, Neg. LLF: 115.30406651183112
Iteration: 2, Func. Count: 15, Neg. LLF: 128.09019257682297
Iteration: 3, Func. Count: 22, Neg. LLF: 178.72798830260544
Iteration: 4, Func. Count: 29, Neg. LLF: 99.54458444401541
Iteration: 5, Func. Count: 36, Neg. LLF: 97.70979920671141
Iteration: 6, Func. Count: 42, Neg. LLF: 97.69303487710053
Iteration: 7, Func. Count: 48, Neg. LLF: 97.68155886384682
Iteration: 8, Func. Count: 54, Neg. LLF: 97.67908614667478
Iteration: 9, Func. Count: 60, Neg. LLF: 97.67895709300636
Iteration: 10, Func. Count: 66, Neg. LLF: 97.6789566156298
Optimization terminated successfully (Exit mode 0)
Current function value: 97.6789566156298
Iterations: 10
Function evaluations: 66
Gradient evaluations: 10
Iteration: 1, Func. Count: 8, Neg. LLF: 100.23652611052903
Iteration: 2, Func. Count: 18, Neg. LLF: 105.96572261649463
Iteration: 3, Func. Count: 26, Neg. LLF: 109.34283635569766
Iteration: 4, Func. Count: 34, Neg. LLF: 98.10517792990011
Iteration: 5, Func. Count: 41, Neg. LLF: 98.0252490240362
Iteration: 6, Func. Count: 49, Neg. LLF: 97.67928477848025
Iteration: 7, Func. Count: 56, Neg. LLF: 97.67907648245948
Iteration: 8, Func. Count: 63, Neg. LLF: 97.6790364177427
Iteration: 9, Func. Count: 70, Neg. LLF: 97.67901503546881
Iteration: 10, Func. Count: 77, Neg. LLF: 97.6789780409969
Iteration: 11, Func. Count: 84, Neg. LLF: 97.67896066878505
Iteration: 12, Func. Count: 91, Neg. LLF: 97.67895683013715
Iteration: 13, Func. Count: 97, Neg. LLF: 97.67895684519634
Optimization terminated successfully (Exit mode 0)
Current function value: 97.67895683013715
Iterations: 13
Function evaluations: 97
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 100.47964496658321
Iteration: 2, Func. Count: 20, Neg. LLF: 102.700358217524
Iteration: 3, Func. Count: 29, Neg. LLF: 138.62644662626965
Iteration: 4, Func. Count: 38, Neg. LLF: 100.57602332991696
Iteration: 5, Func. Count: 47, Neg. LLF: 100.70369477212827
Iteration: 6, Func. Count: 56, Neg. LLF: 98.32095732560472
Iteration: 7, Func. Count: 65, Neg. LLF: 98.37111586782454
Iteration: 8, Func. Count: 74, Neg. LLF: 98.24082435538384
Iteration: 9, Func. Count: 82, Neg. LLF: 98.20130486048808
Iteration: 10, Func. Count: 90, Neg. LLF: 98.00430344681784
Iteration: 11, Func. Count: 98, Neg. LLF: 97.78044252129658
Iteration: 12, Func. Count: 106, Neg. LLF: 97.70265738739093
Iteration: 13, Func. Count: 114, Neg. LLF: 97.68976457292429
Iteration: 14, Func. Count: 122, Neg. LLF: 97.67953134412464
Iteration: 15, Func. Count: 130, Neg. LLF: 97.67911357203474
Iteration: 16, Func. Count: 138, Neg. LLF: 97.67900573118628
Iteration: 17, Func. Count: 146, Neg. LLF: 97.67897758041389
Iteration: 18, Func. Count: 154, Neg. LLF: 97.67895809503797
Iteration: 19, Func. Count: 162, Neg. LLF: 97.67895666949975
Iteration: 20, Func. Count: 169, Neg. LLF: 97.67895671943565
Optimization terminated successfully (Exit mode 0)
Current function value: 97.67895666949975
Iterations: 20
Function evaluations: 169
Gradient evaluations: 20
Iteration: 1, Func. Count: 10, Neg. LLF: 100.15529085003973
Iteration: 2, Func. Count: 21, Neg. LLF: 112.60171840044612
Iteration: 3, Func. Count: 31, Neg. LLF: 269.93637842109183
Iteration: 4, Func. Count: 41, Neg. LLF: 105.16706718089786
Iteration: 5, Func. Count: 51, Neg. LLF: 98.5718950748787
Iteration: 6, Func. Count: 61, Neg. LLF: 97.02245568023042
Iteration: 7, Func. Count: 70, Neg. LLF: 99.40421486876315
Iteration: 8, Func. Count: 80, Neg. LLF: 97.01118970074062
Iteration: 9, Func. Count: 90, Neg. LLF: 96.98622391385827
Iteration: 10, Func. Count: 99, Neg. LLF: 96.98545663626238
Iteration: 11, Func. Count: 108, Neg. LLF: 96.98478187005773
Iteration: 12, Func. Count: 117, Neg. LLF: 96.9847530677781
Iteration: 13, Func. Count: 125, Neg. LLF: 96.98475306774262
Optimization terminated successfully (Exit mode 0)
Current function value: 96.9847530677781
Iterations: 13
Function evaluations: 125
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 100.23499684233201
Iteration: 2, Func. Count: 23, Neg. LLF: 114.3746523575204
Iteration: 3, Func. Count: 34, Neg. LLF: 167.3431785528895
Iteration: 4, Func. Count: 45, Neg. LLF: 107.92358597874454
Iteration: 5, Func. Count: 56, Neg. LLF: 97.38139886541728
Iteration: 6, Func. Count: 66, Neg. LLF: 97.00538444915657
Iteration: 7, Func. Count: 76, Neg. LLF: 109.23691186255789
Iteration: 8, Func. Count: 88, Neg. LLF: 96.99034741099453
Iteration: 9, Func. Count: 98, Neg. LLF: 96.98490086664142
Iteration: 10, Func. Count: 108, Neg. LLF: 96.98477815904133
Iteration: 11, Func. Count: 118, Neg. LLF: 96.98475469034148
Iteration: 12, Func. Count: 128, Neg. LLF: 96.98475261104375
Iteration: 13, Func. Count: 137, Neg. LLF: 96.98475264128346
Optimization terminated successfully (Exit mode 0)
Current function value: 96.98475261104375
Iterations: 13
Function evaluations: 137
Gradient evaluations: 13
Iteration: 1, Func. Count: 8, Neg. LLF: 115.22093667732726
Iteration: 2, Func. Count: 17, Neg. LLF: 129.5591977332523
Iteration: 3, Func. Count: 25, Neg. LLF: 193.65420235101192
Iteration: 4, Func. Count: 33, Neg. LLF: 99.43112509346429
Iteration: 5, Func. Count: 41, Neg. LLF: 97.70810481700485
Iteration: 6, Func. Count: 48, Neg. LLF: 97.69446537748824
Iteration: 7, Func. Count: 55, Neg. LLF: 97.68124783975216
Iteration: 8, Func. Count: 62, Neg. LLF: 97.67914072734011
Iteration: 9, Func. Count: 69, Neg. LLF: 97.67895694144643
Iteration: 10, Func. Count: 75, Neg. LLF: 97.67895691651647
Optimization terminated successfully (Exit mode 0)
Current function value: 97.67895694144643
Iterations: 10
Function evaluations: 75
Gradient evaluations: 10
Iteration: 1, Func. Count: 9, Neg. LLF: 100.24593693105325
Iteration: 2, Func. Count: 19, Neg. LLF: 106.46153553794413
Iteration: 3, Func. Count: 28, Neg. LLF: 105.91343213339151
Iteration: 4, Func. Count: 37, Neg. LLF: 97.82660672036604
Iteration: 5, Func. Count: 45, Neg. LLF: 97.71111055234756
Iteration: 6, Func. Count: 53, Neg. LLF: 97.68844353264927
Iteration: 7, Func. Count: 61, Neg. LLF: 97.6793852780569
Iteration: 8, Func. Count: 69, Neg. LLF: 97.6789667159524
Iteration: 9, Func. Count: 77, Neg. LLF: 97.67895660583007
Iteration: 10, Func. Count: 84, Neg. LLF: 97.67895662089562
Optimization terminated successfully (Exit mode 0)
Current function value: 97.67895660583007
Iterations: 10
Function evaluations: 84
Gradient evaluations: 10
Iteration: 1, Func. Count: 10, Neg. LLF: 100.43634918775169
Iteration: 2, Func. Count: 21, Neg. LLF: 105.23417084926622
Iteration: 3, Func. Count: 31, Neg. LLF: 107.91803149828073
Iteration: 4, Func. Count: 41, Neg. LLF: 98.00218716524857
Iteration: 5, Func. Count: 50, Neg. LLF: 97.75718130304725
Iteration: 6, Func. Count: 59, Neg. LLF: 97.94144478816695
Iteration: 7, Func. Count: 69, Neg. LLF: 97.691693911722
Iteration: 8, Func. Count: 78, Neg. LLF: 97.6802648039487
Iteration: 9, Func. Count: 87, Neg. LLF: 97.67898710763342
Iteration: 10, Func. Count: 96, Neg. LLF: 97.67895663016039
Iteration: 11, Func. Count: 104, Neg. LLF: 97.67895668008711
Optimization terminated successfully (Exit mode 0)
Current function value: 97.67895663016039
Iterations: 11
Function evaluations: 104
Gradient evaluations: 11
Iteration: 1, Func. Count: 11, Neg. LLF: 100.53564537180043
Iteration: 2, Func. Count: 23, Neg. LLF: 116.0580333637679
Iteration: 3, Func. Count: 34, Neg. LLF: 7856.7099266990945
Iteration: 4, Func. Count: 45, Neg. LLF: 105.19972220143208
Iteration: 5, Func. Count: 56, Neg. LLF: 97.71345792768146
Iteration: 6, Func. Count: 67, Neg. LLF: 97.02597531844842
Iteration: 7, Func. Count: 77, Neg. LLF: 110.79907733686868
Iteration: 8, Func. Count: 89, Neg. LLF: 97.21642714683632
Iteration: 9, Func. Count: 100, Neg. LLF: 97.00670450092016
Iteration: 10, Func. Count: 111, Neg. LLF: 96.98066813893422
Iteration: 11, Func. Count: 121, Neg. LLF: 96.97983261815352
Iteration: 12, Func. Count: 131, Neg. LLF: 96.97980745995652
Iteration: 13, Func. Count: 141, Neg. LLF: 96.97980677839128
Optimization terminated successfully (Exit mode 0)
Current function value: 96.97980677839128
Iterations: 13
Function evaluations: 141
Gradient evaluations: 13
Iteration: 1, Func. Count: 12, Neg. LLF: 100.7420825449686
Iteration: 2, Func. Count: 25, Neg. LLF: 119.2863487882194
Iteration: 3, Func. Count: 37, Neg. LLF: 162068.23159811852
Iteration: 4, Func. Count: 49, Neg. LLF: 107.99022235153652
Iteration: 5, Func. Count: 61, Neg. LLF: 97.22565652299502
Iteration: 6, Func. Count: 72, Neg. LLF: 97.00559505362672
Iteration: 7, Func. Count: 83, Neg. LLF: 110.8590545740118
Iteration: 8, Func. Count: 96, Neg. LLF: 97.14609174617785
Iteration: 9, Func. Count: 108, Neg. LLF: 96.98996269177705
Iteration: 10, Func. Count: 120, Neg. LLF: 96.98016589181763
Iteration: 11, Func. Count: 131, Neg. LLF: 96.97984889382076
Iteration: 12, Func. Count: 142, Neg. LLF: 96.97981982437246
Iteration: 13, Func. Count: 153, Neg. LLF: 96.97980682377853
Iteration: 14, Func. Count: 163, Neg. LLF: 96.9798068525805
Optimization terminated successfully (Exit mode 0)
Current function value: 96.97980682377853
Iterations: 14
Function evaluations: 163
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 115.21416658506807
Iteration: 2, Func. Count: 19, Neg. LLF: 131.93718588725602
Iteration: 3, Func. Count: 28, Neg. LLF: 188.28217956908446
Iteration: 4, Func. Count: 37, Neg. LLF: 99.34722617140223
Iteration: 5, Func. Count: 46, Neg. LLF: 97.70737513272779
Iteration: 6, Func. Count: 54, Neg. LLF: 97.7000994113725
Iteration: 7, Func. Count: 63, Neg. LLF: 97.6796025764249
Iteration: 8, Func. Count: 71, Neg. LLF: 97.67895711919022
Iteration: 9, Func. Count: 79, Neg. LLF: 97.67895661759171
Optimization terminated successfully (Exit mode 0)
Current function value: 97.67895661759171
Iterations: 9
Function evaluations: 79
Gradient evaluations: 9
Iteration: 1, Func. Count: 10, Neg. LLF: 100.01129472622273
Iteration: 2, Func. Count: 21, Neg. LLF: 106.67746589891077
Iteration: 3, Func. Count: 31, Neg. LLF: 106.10997433068344
Iteration: 4, Func. Count: 41, Neg. LLF: 97.82963169397719
Iteration: 5, Func. Count: 50, Neg. LLF: 97.71296054766627
Iteration: 6, Func. Count: 59, Neg. LLF: 97.68906819250306
Iteration: 7, Func. Count: 68, Neg. LLF: 97.6804062582622
Iteration: 8, Func. Count: 77, Neg. LLF: 97.67905489434254
Iteration: 9, Func. Count: 86, Neg. LLF: 97.67895752243254
Iteration: 10, Func. Count: 95, Neg. LLF: 97.678956631124
Optimization terminated successfully (Exit mode 0)
Current function value: 97.678956631124
Iterations: 10
Function evaluations: 95
Gradient evaluations: 10
Iteration: 1, Func. Count: 11, Neg. LLF: 100.31679180035427
Iteration: 2, Func. Count: 23, Neg. LLF: 104.95234693675225
Iteration: 3, Func. Count: 34, Neg. LLF: 107.71214238294745
Iteration: 4, Func. Count: 45, Neg. LLF: 97.95613531034634
Iteration: 5, Func. Count: 55, Neg. LLF: 97.75859226810202
Iteration: 6, Func. Count: 65, Neg. LLF: 98.60801570046893
Iteration: 7, Func. Count: 76, Neg. LLF: 97.68690949185489
Iteration: 8, Func. Count: 86, Neg. LLF: 97.67957207955212
Iteration: 9, Func. Count: 96, Neg. LLF: 97.67896028810523
Iteration: 10, Func. Count: 106, Neg. LLF: 97.67895660548606
Iteration: 11, Func. Count: 115, Neg. LLF: 97.67895665542316
Optimization terminated successfully (Exit mode 0)
Current function value: 97.67895660548606
Iterations: 11
Function evaluations: 115
Gradient evaluations: 11
Iteration: 1, Func. Count: 12, Neg. LLF: 100.41702089722578
Iteration: 2, Func. Count: 25, Neg. LLF: 115.28182553124377
Iteration: 3, Func. Count: 37, Neg. LLF: 20066.54008689444
Iteration: 4, Func. Count: 49, Neg. LLF: 105.1807055646045
Iteration: 5, Func. Count: 61, Neg. LLF: 97.7647177590767
Iteration: 6, Func. Count: 73, Neg. LLF: 97.0293140055681
Iteration: 7, Func. Count: 84, Neg. LLF: 113.95571449977223
Iteration: 8, Func. Count: 97, Neg. LLF: 97.31589375372899
Iteration: 9, Func. Count: 109, Neg. LLF: 96.99873007609037
Iteration: 10, Func. Count: 120, Neg. LLF: 96.9803428890672
Iteration: 11, Func. Count: 131, Neg. LLF: 96.97985024647966
Iteration: 12, Func. Count: 142, Neg. LLF: 96.97980941011052
Iteration: 13, Func. Count: 153, Neg. LLF: 96.97980701099314
Iteration: 14, Func. Count: 163, Neg. LLF: 96.97980701103495
Optimization terminated successfully (Exit mode 0)
Current function value: 96.97980701099314
Iterations: 14
Function evaluations: 163
Gradient evaluations: 14
Iteration: 1, Func. Count: 13, Neg. LLF: 100.62136374765332
Iteration: 2, Func. Count: 27, Neg. LLF: 118.04460947268359
Iteration: 3, Func. Count: 40, Neg. LLF: 277516.3801407415
Iteration: 4, Func. Count: 53, Neg. LLF: 108.00682386126239
Iteration: 5, Func. Count: 66, Neg. LLF: 97.2321812851079
Iteration: 6, Func. Count: 78, Neg. LLF: 97.0074455798072
Iteration: 7, Func. Count: 90, Neg. LLF: 110.32791293400142
Iteration: 8, Func. Count: 104, Neg. LLF: 97.24527739941205
Iteration: 9, Func. Count: 117, Neg. LLF: 96.99040588342818
Iteration: 10, Func. Count: 130, Neg. LLF: 96.98019298026945
Iteration: 11, Func. Count: 142, Neg. LLF: 96.97985654495835
Iteration: 12, Func. Count: 154, Neg. LLF: 96.97982100771345
Iteration: 13, Func. Count: 166, Neg. LLF: 96.97980685226587
Iteration: 14, Func. Count: 177, Neg. LLF: 96.97980688106834
Optimization terminated successfully (Exit mode 0)
Current function value: 96.97980685226587
Iterations: 14
Function evaluations: 177
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 112.86582754024728
Iteration: 2, Func. Count: 21, Neg. LLF: 663.1034702332373
Iteration: 3, Func. Count: 31, Neg. LLF: 8574611.806996532
Iteration: 4, Func. Count: 41, Neg. LLF: 96.88934409942095
Iteration: 5, Func. Count: 50, Neg. LLF: 96.84641052491192
Iteration: 6, Func. Count: 59, Neg. LLF: 96.82150907254484
Iteration: 7, Func. Count: 68, Neg. LLF: 96.81890093822193
Iteration: 8, Func. Count: 78, Neg. LLF: 96.80451525658675
Iteration: 9, Func. Count: 87, Neg. LLF: 96.80450368966991
Iteration: 10, Func. Count: 95, Neg. LLF: 96.80450368967706
Optimization terminated successfully (Exit mode 0)
Current function value: 96.80450368966991
Iterations: 10
Function evaluations: 95
Gradient evaluations: 10
Iteration: 1, Func. Count: 11, Neg. LLF: 98.59323023313152
Iteration: 2, Func. Count: 23, Neg. LLF: 115.85993323485658
Iteration: 3, Func. Count: 34, Neg. LLF: 104.30339241922567
Iteration: 4, Func. Count: 45, Neg. LLF: 96.95885143032581
Iteration: 5, Func. Count: 55, Neg. LLF: 96.83474608951497
Iteration: 6, Func. Count: 65, Neg. LLF: 96.80992220217236
Iteration: 7, Func. Count: 75, Neg. LLF: 96.80478181013832
Iteration: 8, Func. Count: 85, Neg. LLF: 96.80457424668546
Iteration: 9, Func. Count: 95, Neg. LLF: 96.80452623601553
Iteration: 10, Func. Count: 105, Neg. LLF: 96.8045054775424
Iteration: 11, Func. Count: 115, Neg. LLF: 96.80450369951915
Iteration: 12, Func. Count: 124, Neg. LLF: 96.80450374285401
Optimization terminated successfully (Exit mode 0)
Current function value: 96.80450369951915
Iterations: 12
Function evaluations: 124
Gradient evaluations: 12
Iteration: 1, Func. Count: 12, Neg. LLF: 98.68309256710799
Iteration: 2, Func. Count: 24, Neg. LLF: 107.87465334072309
Iteration: 3, Func. Count: 36, Neg. LLF: 107.8791676172188
Iteration: 4, Func. Count: 48, Neg. LLF: 98.1105574193999
Iteration: 5, Func. Count: 60, Neg. LLF: 103.66748924155995
Iteration: 6, Func. Count: 72, Neg. LLF: 97.1547358504343
Iteration: 7, Func. Count: 83, Neg. LLF: 97.1138327128836
Iteration: 8, Func. Count: 95, Neg. LLF: 97.67909750309369
Iteration: 9, Func. Count: 107, Neg. LLF: 96.8086361540745
Iteration: 10, Func. Count: 118, Neg. LLF: 96.80455077605183
Iteration: 11, Func. Count: 129, Neg. LLF: 96.80450494750154
Iteration: 12, Func. Count: 140, Neg. LLF: 96.80450379630933
Iteration: 13, Func. Count: 150, Neg. LLF: 96.80450385408386
Optimization terminated successfully (Exit mode 0)
Current function value: 96.80450379630933
Iterations: 13
Function evaluations: 150
Gradient evaluations: 13
Iteration: 1, Func. Count: 13, Neg. LLF: 98.71467034471311
Iteration: 2, Func. Count: 26, Neg. LLF: 127.5119919720271
Iteration: 3, Func. Count: 39, Neg. LLF: 3610.1061242632754
Iteration: 4, Func. Count: 52, Neg. LLF: 99.69180290716943
Iteration: 5, Func. Count: 65, Neg. LLF: 177.0159475485957
Iteration: 6, Func. Count: 78, Neg. LLF: 111.48107986052865
Iteration: 7, Func. Count: 91, Neg. LLF: 102.01206644295227
Iteration: 8, Func. Count: 104, Neg. LLF: 95.99710341641142
Iteration: 9, Func. Count: 116, Neg. LLF: 96.39741039579523
Iteration: 10, Func. Count: 129, Neg. LLF: 96.00446890105395
Iteration: 11, Func. Count: 142, Neg. LLF: 95.97478441449361
Iteration: 12, Func. Count: 154, Neg. LLF: 95.97464046654603
Iteration: 13, Func. Count: 166, Neg. LLF: 95.97463519863504
Iteration: 14, Func. Count: 178, Neg. LLF: 95.97463328232735
Iteration: 15, Func. Count: 189, Neg. LLF: 95.97463328235787
Optimization terminated successfully (Exit mode 0)
Current function value: 95.97463328232735
Iterations: 15
Function evaluations: 189
Gradient evaluations: 15
Iteration: 1, Func. Count: 14, Neg. LLF: 98.74680613050582
Iteration: 2, Func. Count: 28, Neg. LLF: 130.6035566458993
Iteration: 3, Func. Count: 42, Neg. LLF: 154.07645286205428
Iteration: 4, Func. Count: 56, Neg. LLF: 109.02627055390812
Iteration: 5, Func. Count: 70, Neg. LLF: 168.44366582819615
Iteration: 6, Func. Count: 84, Neg. LLF: 102.5636056588776
Iteration: 7, Func. Count: 98, Neg. LLF: 100.75898897085598
Iteration: 8, Func. Count: 112, Neg. LLF: 98.49193214947788
Iteration: 9, Func. Count: 126, Neg. LLF: 95.9918436137127
Iteration: 10, Func. Count: 139, Neg. LLF: 95.9813344000166
Iteration: 11, Func. Count: 152, Neg. LLF: 95.99372235112122
Iteration: 12, Func. Count: 166, Neg. LLF: 95.97511645650933
Iteration: 13, Func. Count: 179, Neg. LLF: 95.9746643853362
Iteration: 14, Func. Count: 192, Neg. LLF: 95.97463625410025
Iteration: 15, Func. Count: 205, Neg. LLF: 95.97463324410909
Iteration: 16, Func. Count: 217, Neg. LLF: 95.9746333053267
Optimization terminated successfully (Exit mode 0)
Current function value: 95.97463324410909
Iterations: 16
Function evaluations: 217
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 117.41552499419231
Iteration: 2, Func. Count: 23, Neg. LLF: 461.4880856138969
Iteration: 3, Func. Count: 34, Neg. LLF: 8888375.270278987
Iteration: 4, Func. Count: 45, Neg. LLF: 96.8904557531499
Iteration: 5, Func. Count: 55, Neg. LLF: 96.85021425538706
Iteration: 6, Func. Count: 65, Neg. LLF: 96.82936514383492
Iteration: 7, Func. Count: 75, Neg. LLF: 96.80601072877653
Iteration: 8, Func. Count: 85, Neg. LLF: 96.8045333189766
Iteration: 9, Func. Count: 95, Neg. LLF: 96.80450385318125
Iteration: 10, Func. Count: 104, Neg. LLF: 96.80450393581218
Optimization terminated successfully (Exit mode 0)
Current function value: 96.80450385318125
Iterations: 10
Function evaluations: 104
Gradient evaluations: 10
Iteration: 1, Func. Count: 12, Neg. LLF: 98.62258447284827
Iteration: 2, Func. Count: 25, Neg. LLF: 114.87030538923257
Iteration: 3, Func. Count: 37, Neg. LLF: 105.85709048690063
Iteration: 4, Func. Count: 49, Neg. LLF: 96.97684549223254
Iteration: 5, Func. Count: 60, Neg. LLF: 96.8448423393892
Iteration: 6, Func. Count: 71, Neg. LLF: 96.88335123831749
Iteration: 7, Func. Count: 83, Neg. LLF: 96.8082933146202
Iteration: 8, Func. Count: 94, Neg. LLF: 96.8054258033765
Iteration: 9, Func. Count: 105, Neg. LLF: 96.8049703987623
Iteration: 10, Func. Count: 116, Neg. LLF: 96.80451598659695
Iteration: 11, Func. Count: 127, Neg. LLF: 96.80450407234538
Iteration: 12, Func. Count: 137, Neg. LLF: 96.80450411565461
Optimization terminated successfully (Exit mode 0)
Current function value: 96.80450407234538
Iterations: 12
Function evaluations: 137
Gradient evaluations: 12
Iteration: 1, Func. Count: 13, Neg. LLF: 98.68996407597035
Iteration: 2, Func. Count: 26, Neg. LLF: 107.89739201596856
Iteration: 3, Func. Count: 39, Neg. LLF: 110.67883389873812
Iteration: 4, Func. Count: 52, Neg. LLF: 100.53634524732536
Iteration: 5, Func. Count: 65, Neg. LLF: 107.75456905706798
Iteration: 6, Func. Count: 78, Neg. LLF: 101.59499435040595
Iteration: 7, Func. Count: 91, Neg. LLF: 97.26076361926596
Iteration: 8, Func. Count: 103, Neg. LLF: 96.8784115650826
Iteration: 9, Func. Count: 115, Neg. LLF: 96.82302940717788
Iteration: 10, Func. Count: 127, Neg. LLF: 96.80602225937432
Iteration: 11, Func. Count: 139, Neg. LLF: 96.80456232096078
Iteration: 12, Func. Count: 151, Neg. LLF: 96.80450465760754
Iteration: 13, Func. Count: 163, Neg. LLF: 96.80450365991825
Optimization terminated successfully (Exit mode 0)
Current function value: 96.80450365991825
Iterations: 13
Function evaluations: 163
Gradient evaluations: 13
Iteration: 1, Func. Count: 14, Neg. LLF: 98.70662685635735
Iteration: 2, Func. Count: 28, Neg. LLF: 126.7765495603834
Iteration: 3, Func. Count: 42, Neg. LLF: 484.5887933330694
Iteration: 4, Func. Count: 56, Neg. LLF: 100.62708171346429
Iteration: 5, Func. Count: 70, Neg. LLF: 158.06331517895194
Iteration: 6, Func. Count: 84, Neg. LLF: 109.69608606865542
Iteration: 7, Func. Count: 98, Neg. LLF: 101.66489333718009
Iteration: 8, Func. Count: 112, Neg. LLF: 95.99748634907642
Iteration: 9, Func. Count: 125, Neg. LLF: 96.83338194401318
Iteration: 10, Func. Count: 139, Neg. LLF: 96.01518191406565
Iteration: 11, Func. Count: 153, Neg. LLF: 95.97488373050939
Iteration: 12, Func. Count: 166, Neg. LLF: 95.97464504335693
Iteration: 13, Func. Count: 179, Neg. LLF: 95.97463512556969
Iteration: 14, Func. Count: 192, Neg. LLF: 95.97463346991151
Iteration: 15, Func. Count: 204, Neg. LLF: 95.97463347000952
Optimization terminated successfully (Exit mode 0)
Current function value: 95.97463346991151
Iterations: 15
Function evaluations: 204
Gradient evaluations: 15
Iteration: 1, Func. Count: 15, Neg. LLF: 98.72307209095631
Iteration: 2, Func. Count: 30, Neg. LLF: 130.33354834928357
Iteration: 3, Func. Count: 45, Neg. LLF: 159.45719774488225
Iteration: 4, Func. Count: 60, Neg. LLF: 108.43461790629034
Iteration: 5, Func. Count: 75, Neg. LLF: 105.40595756667494
Iteration: 6, Func. Count: 90, Neg. LLF: 104.95839315779995
Iteration: 7, Func. Count: 105, Neg. LLF: 101.84514272106954
Iteration: 8, Func. Count: 120, Neg. LLF: 100.22800241925565
Iteration: 9, Func. Count: 135, Neg. LLF: 96.07398827608384
Iteration: 10, Func. Count: 149, Neg. LLF: 95.99424759286072
Iteration: 11, Func. Count: 163, Neg. LLF: 95.99380717474985
Iteration: 12, Func. Count: 178, Neg. LLF: 95.97730241537809
Iteration: 13, Func. Count: 192, Neg. LLF: 95.97633810403859
Iteration: 14, Func. Count: 206, Neg. LLF: 95.97468236285633
Iteration: 15, Func. Count: 220, Neg. LLF: 95.97463421909055
Iteration: 16, Func. Count: 234, Neg. LLF: 95.97463323915386
Optimization terminated successfully (Exit mode 0)
Current function value: 95.97463323915386
Iterations: 16
Function evaluations: 234
Gradient evaluations: 16
Iteration: 1, Func. Count: 8, Neg. LLF: 115.23033096899303
Iteration: 2, Func. Count: 17, Neg. LLF: 114.41734823578176
Iteration: 3, Func. Count: 25, Neg. LLF: 6737.529310178547
Iteration: 4, Func. Count: 33, Neg. LLF: 103.90569266292717
Iteration: 5, Func. Count: 41, Neg. LLF: 97.86771920142101
Iteration: 6, Func. Count: 48, Neg. LLF: 97.69787503824321
Iteration: 7, Func. Count: 55, Neg. LLF: 97.68047106863897
Iteration: 8, Func. Count: 62, Neg. LLF: 97.6789957163736
Iteration: 9, Func. Count: 69, Neg. LLF: 97.67895906298668
Iteration: 10, Func. Count: 76, Neg. LLF: 97.6789566619972
Iteration: 11, Func. Count: 82, Neg. LLF: 97.67895671065907
Optimization terminated successfully (Exit mode 0)
Current function value: 97.6789566619972
Iterations: 11
Function evaluations: 82
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 100.5040240438002
Iteration: 2, Func. Count: 20, Neg. LLF: 105.4854899800303
Iteration: 3, Func. Count: 29, Neg. LLF: 113.43562997704946
Iteration: 4, Func. Count: 38, Neg. LLF: 98.157186230437
Iteration: 5, Func. Count: 46, Neg. LLF: 98.02881147322226
Iteration: 6, Func. Count: 54, Neg. LLF: 97.81872870221068
Iteration: 7, Func. Count: 62, Neg. LLF: 97.69308437664854
Iteration: 8, Func. Count: 70, Neg. LLF: 97.68305769436435
Iteration: 9, Func. Count: 78, Neg. LLF: 97.6790324585342
Iteration: 10, Func. Count: 86, Neg. LLF: 97.67901947260015
Iteration: 11, Func. Count: 94, Neg. LLF: 97.67897141242435
Iteration: 12, Func. Count: 102, Neg. LLF: 97.67895782867568
Iteration: 13, Func. Count: 110, Neg. LLF: 97.67895670732482
Iteration: 14, Func. Count: 117, Neg. LLF: 97.67895672237951
Optimization terminated successfully (Exit mode 0)
Current function value: 97.67895670732482
Iterations: 14
Function evaluations: 117
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 100.87938829526803
Iteration: 2, Func. Count: 22, Neg. LLF: 102.35364015171443
Iteration: 3, Func. Count: 32, Neg. LLF: 126.89398825762363
Iteration: 4, Func. Count: 42, Neg. LLF: 101.10333283653237
Iteration: 5, Func. Count: 52, Neg. LLF: 99.42903139496107
Iteration: 6, Func. Count: 62, Neg. LLF: 97.97348483349927
Iteration: 7, Func. Count: 71, Neg. LLF: 97.90863916664266
Iteration: 8, Func. Count: 80, Neg. LLF: 98.72331787549916
Iteration: 9, Func. Count: 90, Neg. LLF: 97.71392509016863
Iteration: 10, Func. Count: 99, Neg. LLF: 97.70196340135583
Iteration: 11, Func. Count: 108, Neg. LLF: 97.68540665699585
Iteration: 12, Func. Count: 117, Neg. LLF: 97.68017601861078
Iteration: 13, Func. Count: 126, Neg. LLF: 97.67911169343748
Iteration: 14, Func. Count: 135, Neg. LLF: 97.67896546312413
Iteration: 15, Func. Count: 144, Neg. LLF: 97.67895675631024
Iteration: 16, Func. Count: 152, Neg. LLF: 97.67895680629152
Optimization terminated successfully (Exit mode 0)
Current function value: 97.67895675631024
Iterations: 16
Function evaluations: 152
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 100.19838819705745
Iteration: 2, Func. Count: 23, Neg. LLF: 111.92462955609507
Iteration: 3, Func. Count: 34, Neg. LLF: 217.0167578279568
Iteration: 4, Func. Count: 45, Neg. LLF: 105.05903101623973
Iteration: 5, Func. Count: 56, Neg. LLF: 98.48647972290604
Iteration: 6, Func. Count: 67, Neg. LLF: 97.02427102981314
Iteration: 7, Func. Count: 77, Neg. LLF: 100.40381970844116
Iteration: 8, Func. Count: 88, Neg. LLF: 97.01024198931151
Iteration: 9, Func. Count: 99, Neg. LLF: 96.98595374749976
Iteration: 10, Func. Count: 109, Neg. LLF: 96.9852730546235
Iteration: 11, Func. Count: 119, Neg. LLF: 96.9847876930431
Iteration: 12, Func. Count: 129, Neg. LLF: 96.98475326554615
Iteration: 13, Func. Count: 139, Neg. LLF: 96.98475258617594
Optimization terminated successfully (Exit mode 0)
Current function value: 96.98475258617594
Iterations: 13
Function evaluations: 139
Gradient evaluations: 13
Iteration: 1, Func. Count: 12, Neg. LLF: 100.2376328350925
Iteration: 2, Func. Count: 25, Neg. LLF: 113.72398713598766
Iteration: 3, Func. Count: 37, Neg. LLF: 163.49736748139347
Iteration: 4, Func. Count: 49, Neg. LLF: 107.90711280500084
Iteration: 5, Func. Count: 61, Neg. LLF: 97.386104078564
Iteration: 6, Func. Count: 72, Neg. LLF: 97.00594407907566
Iteration: 7, Func. Count: 83, Neg. LLF: 109.01024310417542
Iteration: 8, Func. Count: 96, Neg. LLF: 96.99149618769545
Iteration: 9, Func. Count: 107, Neg. LLF: 96.98489467162617
Iteration: 10, Func. Count: 118, Neg. LLF: 96.9847766050393
Iteration: 11, Func. Count: 129, Neg. LLF: 96.98475416972383
Iteration: 12, Func. Count: 140, Neg. LLF: 96.98475261023833
Iteration: 13, Func. Count: 150, Neg. LLF: 96.98475264047828
Optimization terminated successfully (Exit mode 0)
Current function value: 96.98475261023833
Iterations: 13
Function evaluations: 150
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 115.03483580230939
Iteration: 2, Func. Count: 19, Neg. LLF: 116.17819959578462
Iteration: 3, Func. Count: 28, Neg. LLF: 2675.381267975829
Iteration: 4, Func. Count: 37, Neg. LLF: 106.53799564164572
Iteration: 5, Func. Count: 46, Neg. LLF: 97.92517323644412
Iteration: 6, Func. Count: 54, Neg. LLF: 97.72041569174138
Iteration: 7, Func. Count: 62, Neg. LLF: 97.68059321845139
Iteration: 8, Func. Count: 70, Neg. LLF: 97.67898193528778
Iteration: 9, Func. Count: 78, Neg. LLF: 97.67895719420474
Iteration: 10, Func. Count: 86, Neg. LLF: 97.67895664318371
Optimization terminated successfully (Exit mode 0)
Current function value: 97.67895664318371
Iterations: 10
Function evaluations: 86
Gradient evaluations: 10
Iteration: 1, Func. Count: 10, Neg. LLF: 100.41050020593043
Iteration: 2, Func. Count: 21, Neg. LLF: 106.05025522790518
Iteration: 3, Func. Count: 31, Neg. LLF: 105.18203442529031
Iteration: 4, Func. Count: 41, Neg. LLF: 97.84244672690542
Iteration: 5, Func. Count: 50, Neg. LLF: 97.71170287607342
Iteration: 6, Func. Count: 59, Neg. LLF: 97.68990140782287
Iteration: 7, Func. Count: 68, Neg. LLF: 97.67941177237203
Iteration: 8, Func. Count: 77, Neg. LLF: 97.67896402689219
Iteration: 9, Func. Count: 86, Neg. LLF: 97.67895662326852
Iteration: 10, Func. Count: 94, Neg. LLF: 97.67895663832549
Optimization terminated successfully (Exit mode 0)
Current function value: 97.67895662326852
Iterations: 10
Function evaluations: 94
Gradient evaluations: 10
Iteration: 1, Func. Count: 11, Neg. LLF: 100.546405450996
Iteration: 2, Func. Count: 23, Neg. LLF: 104.93264152584233
Iteration: 3, Func. Count: 34, Neg. LLF: 107.03729336011594
Iteration: 4, Func. Count: 45, Neg. LLF: 97.9978413653038
Iteration: 5, Func. Count: 55, Neg. LLF: 97.75343710539119
Iteration: 6, Func. Count: 65, Neg. LLF: 97.86054540770888
Iteration: 7, Func. Count: 76, Neg. LLF: 97.69265334008047
Iteration: 8, Func. Count: 86, Neg. LLF: 97.68078754049134
Iteration: 9, Func. Count: 96, Neg. LLF: 97.67898340639549
Iteration: 10, Func. Count: 106, Neg. LLF: 97.6789569077019
Iteration: 11, Func. Count: 115, Neg. LLF: 97.6789569576024
Optimization terminated successfully (Exit mode 0)
Current function value: 97.6789569077019
Iterations: 11
Function evaluations: 115
Gradient evaluations: 11
Iteration: 1, Func. Count: 12, Neg. LLF: 100.59415986166404
Iteration: 2, Func. Count: 25, Neg. LLF: 115.1096828433607
Iteration: 3, Func. Count: 37, Neg. LLF: 2759.0173228025847
Iteration: 4, Func. Count: 49, Neg. LLF: 104.59071401822764
Iteration: 5, Func. Count: 61, Neg. LLF: 97.73852243081485
Iteration: 6, Func. Count: 73, Neg. LLF: 97.03147538364537
Iteration: 7, Func. Count: 84, Neg. LLF: 110.68659163224498
Iteration: 8, Func. Count: 97, Neg. LLF: 97.34586559644411
Iteration: 9, Func. Count: 109, Neg. LLF: 97.00028073939538
Iteration: 10, Func. Count: 120, Neg. LLF: 96.98047124890802
Iteration: 11, Func. Count: 131, Neg. LLF: 96.9798754354015
Iteration: 12, Func. Count: 142, Neg. LLF: 96.97981199889959
Iteration: 13, Func. Count: 153, Neg. LLF: 96.9798077655667
Iteration: 14, Func. Count: 164, Neg. LLF: 96.97980696512627
Optimization terminated successfully (Exit mode 0)
Current function value: 96.97980696512627
Iterations: 14
Function evaluations: 164
Gradient evaluations: 14
Iteration: 1, Func. Count: 13, Neg. LLF: 100.75256678234038
Iteration: 2, Func. Count: 27, Neg. LLF: 118.34707887017095
Iteration: 3, Func. Count: 40, Neg. LLF: 28902.248010064784
Iteration: 4, Func. Count: 53, Neg. LLF: 107.97548550673798
Iteration: 5, Func. Count: 66, Neg. LLF: 97.22295672056372
Iteration: 6, Func. Count: 78, Neg. LLF: 97.00667883237118
Iteration: 7, Func. Count: 90, Neg. LLF: 110.58584556743746
Iteration: 8, Func. Count: 104, Neg. LLF: 97.17663696790062
Iteration: 9, Func. Count: 117, Neg. LLF: 96.9910860215643
Iteration: 10, Func. Count: 130, Neg. LLF: 96.98017061534733
Iteration: 11, Func. Count: 142, Neg. LLF: 96.97985054223449
Iteration: 12, Func. Count: 154, Neg. LLF: 96.9798198733819
Iteration: 13, Func. Count: 166, Neg. LLF: 96.97980684103803
Iteration: 14, Func. Count: 177, Neg. LLF: 96.97980686984069
Optimization terminated successfully (Exit mode 0)
Current function value: 96.97980684103803
Iterations: 14
Function evaluations: 177
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 114.95987176783387
Iteration: 2, Func. Count: 21, Neg. LLF: 116.26493549674403
Iteration: 3, Func. Count: 31, Neg. LLF: 2094.4635758107233
Iteration: 4, Func. Count: 41, Neg. LLF: 143.71273502611484
Iteration: 5, Func. Count: 51, Neg. LLF: 97.94937684409443
Iteration: 6, Func. Count: 60, Neg. LLF: 97.73467427891015
Iteration: 7, Func. Count: 69, Neg. LLF: 97.68333226760973
Iteration: 8, Func. Count: 78, Neg. LLF: 97.67913190741413
Iteration: 9, Func. Count: 87, Neg. LLF: 97.67896299682687
Iteration: 10, Func. Count: 96, Neg. LLF: 97.67895700361828
Iteration: 11, Func. Count: 104, Neg. LLF: 97.67895695385641
Optimization terminated successfully (Exit mode 0)
Current function value: 97.67895700361828
Iterations: 11
Function evaluations: 104
Gradient evaluations: 11
Iteration: 1, Func. Count: 11, Neg. LLF: 100.15286667578971
Iteration: 2, Func. Count: 23, Neg. LLF: 106.28249716113798
Iteration: 3, Func. Count: 34, Neg. LLF: 105.41421672397688
Iteration: 4, Func. Count: 45, Neg. LLF: 97.8425379621223
Iteration: 5, Func. Count: 55, Neg. LLF: 97.71363053618613
Iteration: 6, Func. Count: 65, Neg. LLF: 97.69080266218008
Iteration: 7, Func. Count: 75, Neg. LLF: 97.68067723705686
Iteration: 8, Func. Count: 85, Neg. LLF: 97.67905506713976
Iteration: 9, Func. Count: 95, Neg. LLF: 97.67895666774433
Iteration: 10, Func. Count: 104, Neg. LLF: 97.67895668278094
Optimization terminated successfully (Exit mode 0)
Current function value: 97.67895666774433
Iterations: 10
Function evaluations: 104
Gradient evaluations: 10
Iteration: 1, Func. Count: 12, Neg. LLF: 100.38947721514151
Iteration: 2, Func. Count: 25, Neg. LLF: 104.61697508798179
Iteration: 3, Func. Count: 37, Neg. LLF: 106.75700181552536
Iteration: 4, Func. Count: 49, Neg. LLF: 97.9334148713571
Iteration: 5, Func. Count: 60, Neg. LLF: 97.75886291075167
Iteration: 6, Func. Count: 71, Neg. LLF: 98.758383776668
Iteration: 7, Func. Count: 83, Neg. LLF: 97.68436142391903
Iteration: 8, Func. Count: 94, Neg. LLF: 97.67985319009426
Iteration: 9, Func. Count: 105, Neg. LLF: 97.67896125827059
Iteration: 10, Func. Count: 116, Neg. LLF: 97.67895662074596
Iteration: 11, Func. Count: 126, Neg. LLF: 97.67895667068493
Optimization terminated successfully (Exit mode 0)
Current function value: 97.67895662074596
Iterations: 11
Function evaluations: 126
Gradient evaluations: 11
Iteration: 1, Func. Count: 13, Neg. LLF: 100.4655823584786
Iteration: 2, Func. Count: 27, Neg. LLF: 114.36829283749917
Iteration: 3, Func. Count: 40, Neg. LLF: 4043.726490708309
Iteration: 4, Func. Count: 53, Neg. LLF: 104.58107596494715
Iteration: 5, Func. Count: 66, Neg. LLF: 97.7857925516877
Iteration: 6, Func. Count: 79, Neg. LLF: 97.03331928141351
Iteration: 7, Func. Count: 91, Neg. LLF: 113.91787022426921
Iteration: 8, Func. Count: 105, Neg. LLF: 97.3719910443088
Iteration: 9, Func. Count: 118, Neg. LLF: 96.9997014258174
Iteration: 10, Func. Count: 130, Neg. LLF: 96.98053617729524
Iteration: 11, Func. Count: 142, Neg. LLF: 96.97989354590021
Iteration: 12, Func. Count: 154, Neg. LLF: 96.97981131047216
Iteration: 13, Func. Count: 166, Neg. LLF: 96.979807455933
Iteration: 14, Func. Count: 177, Neg. LLF: 96.97980745599862
Optimization terminated successfully (Exit mode 0)
Current function value: 96.979807455933
Iterations: 14
Function evaluations: 177
Gradient evaluations: 14
Iteration: 1, Func. Count: 14, Neg. LLF: 100.62535847342816
Iteration: 2, Func. Count: 29, Neg. LLF: 117.15840170617813
Iteration: 3, Func. Count: 43, Neg. LLF: 341069.1007885182
Iteration: 4, Func. Count: 57, Neg. LLF: 108.04757465465946
Iteration: 5, Func. Count: 71, Neg. LLF: 97.23341732077257
Iteration: 6, Func. Count: 84, Neg. LLF: 97.00824795684089
Iteration: 7, Func. Count: 97, Neg. LLF: 109.8726761585737
Iteration: 8, Func. Count: 112, Neg. LLF: 97.29157491609766
Iteration: 9, Func. Count: 126, Neg. LLF: 96.99132481727888
Iteration: 10, Func. Count: 140, Neg. LLF: 96.98020208957756
Iteration: 11, Func. Count: 153, Neg. LLF: 96.9798514510146
Iteration: 12, Func. Count: 166, Neg. LLF: 96.97981960051152
Iteration: 13, Func. Count: 179, Neg. LLF: 96.97980682867066
Iteration: 14, Func. Count: 191, Neg. LLF: 96.979806857466
Optimization terminated successfully (Exit mode 0)
Current function value: 96.97980682867066
Iterations: 14
Function evaluations: 191
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 119.53333189518537
Iteration: 2, Func. Count: 23, Neg. LLF: 198.7181496298028
Iteration: 3, Func. Count: 34, Neg. LLF: 123.38896391004647
Iteration: 4, Func. Count: 45, Neg. LLF: 96.86844357325009
Iteration: 5, Func. Count: 55, Neg. LLF: 96.83291797835346
Iteration: 6, Func. Count: 65, Neg. LLF: 96.81749301864139
Iteration: 7, Func. Count: 75, Neg. LLF: 96.80681164395813
Iteration: 8, Func. Count: 85, Neg. LLF: 96.80459866029966
Iteration: 9, Func. Count: 95, Neg. LLF: 96.80450423488124
Iteration: 10, Func. Count: 105, Neg. LLF: 96.80450364953221
Optimization terminated successfully (Exit mode 0)
Current function value: 96.80450364953221
Iterations: 10
Function evaluations: 105
Gradient evaluations: 10
Iteration: 1, Func. Count: 12, Neg. LLF: 98.66540173359664
Iteration: 2, Func. Count: 25, Neg. LLF: 115.4598964873301
Iteration: 3, Func. Count: 37, Neg. LLF: 106.53005877448645
Iteration: 4, Func. Count: 49, Neg. LLF: 96.99460831660826
Iteration: 5, Func. Count: 60, Neg. LLF: 96.84764985416268
Iteration: 6, Func. Count: 71, Neg. LLF: 97.3443907543698
Iteration: 7, Func. Count: 83, Neg. LLF: 96.8121510677376
Iteration: 8, Func. Count: 94, Neg. LLF: 96.8060852362407
Iteration: 9, Func. Count: 105, Neg. LLF: 96.80535476967138
Iteration: 10, Func. Count: 116, Neg. LLF: 96.80450843869876
Iteration: 11, Func. Count: 127, Neg. LLF: 96.80450370522607
Iteration: 12, Func. Count: 137, Neg. LLF: 96.80450374856879
Optimization terminated successfully (Exit mode 0)
Current function value: 96.80450370522607
Iterations: 12
Function evaluations: 137
Gradient evaluations: 12
Iteration: 1, Func. Count: 13, Neg. LLF: 98.73432626376544
Iteration: 2, Func. Count: 26, Neg. LLF: 107.9778137031514
Iteration: 3, Func. Count: 39, Neg. LLF: 109.47648477192794
Iteration: 4, Func. Count: 52, Neg. LLF: 100.67990309848025
Iteration: 5, Func. Count: 65, Neg. LLF: 107.235754942643
Iteration: 6, Func. Count: 78, Neg. LLF: 101.4276932211738
Iteration: 7, Func. Count: 91, Neg. LLF: 97.21872795167043
Iteration: 8, Func. Count: 103, Neg. LLF: 96.87012922786029
Iteration: 9, Func. Count: 115, Neg. LLF: 96.8196725421924
Iteration: 10, Func. Count: 127, Neg. LLF: 96.80578300890568
Iteration: 11, Func. Count: 139, Neg. LLF: 96.80455078083915
Iteration: 12, Func. Count: 151, Neg. LLF: 96.80450419614083
Iteration: 13, Func. Count: 163, Neg. LLF: 96.80450365256753
Optimization terminated successfully (Exit mode 0)
Current function value: 96.80450365256753
Iterations: 13
Function evaluations: 163
Gradient evaluations: 13
Iteration: 1, Func. Count: 14, Neg. LLF: 98.75395754014785
Iteration: 2, Func. Count: 28, Neg. LLF: 124.47771055657213
Iteration: 3, Func. Count: 42, Neg. LLF: 207.73692305492665
Iteration: 4, Func. Count: 56, Neg. LLF: 100.57611966746757
Iteration: 5, Func. Count: 70, Neg. LLF: 186.24440162628684
Iteration: 6, Func. Count: 84, Neg. LLF: 112.60197463292049
Iteration: 7, Func. Count: 98, Neg. LLF: 101.96725117242343
Iteration: 8, Func. Count: 112, Neg. LLF: 95.9978298712039
Iteration: 9, Func. Count: 125, Neg. LLF: 96.38305766613982
Iteration: 10, Func. Count: 139, Neg. LLF: 96.00938357148296
Iteration: 11, Func. Count: 153, Neg. LLF: 95.97473108804796
Iteration: 12, Func. Count: 166, Neg. LLF: 95.97464155720905
Iteration: 13, Func. Count: 179, Neg. LLF: 95.97463453418476
Iteration: 14, Func. Count: 192, Neg. LLF: 95.97463334245317
Iteration: 15, Func. Count: 204, Neg. LLF: 95.97463334251492
Optimization terminated successfully (Exit mode 0)
Current function value: 95.97463334245317
Iterations: 15
Function evaluations: 204
Gradient evaluations: 15
Iteration: 1, Func. Count: 15, Neg. LLF: 98.75503963424777
Iteration: 2, Func. Count: 30, Neg. LLF: 128.93833947972647
Iteration: 3, Func. Count: 45, Neg. LLF: 152.36907115161097
Iteration: 4, Func. Count: 60, Neg. LLF: 109.51860658646306
Iteration: 5, Func. Count: 75, Neg. LLF: 306.46150693608854
Iteration: 6, Func. Count: 90, Neg. LLF: 102.41084960061967
Iteration: 7, Func. Count: 105, Neg. LLF: 98.19115444287746
Iteration: 8, Func. Count: 120, Neg. LLF: 96.59629801590604
Iteration: 9, Func. Count: 135, Neg. LLF: 96.0162318416019
Iteration: 10, Func. Count: 149, Neg. LLF: 95.98474100039422
Iteration: 11, Func. Count: 163, Neg. LLF: 96.01226669264358
Iteration: 12, Func. Count: 178, Neg. LLF: 95.97675850978145
Iteration: 13, Func. Count: 192, Neg. LLF: 95.97464342937093
Iteration: 14, Func. Count: 206, Neg. LLF: 95.97463328246565
Iteration: 15, Func. Count: 219, Neg. LLF: 95.97463334370856
Optimization terminated successfully (Exit mode 0)
Current function value: 95.97463328246565
Iterations: 15
Function evaluations: 219
Gradient evaluations: 15
Iteration: 1, Func. Count: 12, Neg. LLF: 120.51808972442683
Iteration: 2, Func. Count: 25, Neg. LLF: 182.2854461080632
Iteration: 3, Func. Count: 37, Neg. LLF: 185.81931841860063
Iteration: 4, Func. Count: 49, Neg. LLF: 96.90860493428922
Iteration: 5, Func. Count: 60, Neg. LLF: 96.8513937218361
Iteration: 6, Func. Count: 71, Neg. LLF: 96.82569783868806
Iteration: 7, Func. Count: 82, Neg. LLF: 96.81099252539286
Iteration: 8, Func. Count: 93, Neg. LLF: 96.80523910957046
Iteration: 9, Func. Count: 104, Neg. LLF: 96.80451409099005
Iteration: 10, Func. Count: 115, Neg. LLF: 96.80471707289881
Iteration: 11, Func. Count: 127, Neg. LLF: 96.80449868366081
Iteration: 12, Func. Count: 138, Neg. LLF: 96.80449800975869
Optimization terminated successfully (Exit mode 0)
Current function value: 96.80449800975869
Iterations: 12
Function evaluations: 138
Gradient evaluations: 12
Iteration: 1, Func. Count: 13, Neg. LLF: 100.47920827364982
Iteration: 2, Func. Count: 27, Neg. LLF: 182.63623142383017
Iteration: 3, Func. Count: 40, Neg. LLF: 103.82860425310994
Iteration: 4, Func. Count: 53, Neg. LLF: 97.42982105959634
Iteration: 5, Func. Count: 65, Neg. LLF: 97.25276352463197
Iteration: 6, Func. Count: 77, Neg. LLF: 97.24623181287633
Iteration: 7, Func. Count: 89, Neg. LLF: 97.24757827425077
Iteration: 8, Func. Count: 102, Neg. LLF: 97.21688404035667
Iteration: 9, Func. Count: 114, Neg. LLF: 97.21232280127819
Iteration: 10, Func. Count: 126, Neg. LLF: 97.20420558010996
Iteration: 11, Func. Count: 138, Neg. LLF: 97.20155650266211
Iteration: 12, Func. Count: 150, Neg. LLF: 97.20099705965143
Iteration: 13, Func. Count: 162, Neg. LLF: 97.20096304298909
Iteration: 14, Func. Count: 174, Neg. LLF: 97.20096108316663
Iteration: 15, Func. Count: 185, Neg. LLF: 97.20096108765098
Optimization terminated successfully (Exit mode 0)
Current function value: 97.20096108316663
Iterations: 15
Function evaluations: 185
Gradient evaluations: 15
Iteration: 1, Func. Count: 14, Neg. LLF: 100.62693566949635
Iteration: 2, Func. Count: 29, Neg. LLF: 226.7204238514297
Iteration: 3, Func. Count: 43, Neg. LLF: 107.01556095302277
Iteration: 4, Func. Count: 57, Neg. LLF: 97.81725529557289
Iteration: 5, Func. Count: 71, Neg. LLF: 97.61607523032798
Iteration: 6, Func. Count: 85, Neg. LLF: 97.96825816164687
Iteration: 7, Func. Count: 99, Neg. LLF: 97.38380667179027
Iteration: 8, Func. Count: 113, Neg. LLF: 97.00221021652564
Iteration: 9, Func. Count: 126, Neg. LLF: 96.81629697474453
Iteration: 10, Func. Count: 139, Neg. LLF: 96.80530528172208
Iteration: 11, Func. Count: 152, Neg. LLF: 96.80452197964053
Iteration: 12, Func. Count: 165, Neg. LLF: 96.80450517723357
Iteration: 13, Func. Count: 178, Neg. LLF: 96.80449842840675
Iteration: 14, Func. Count: 190, Neg. LLF: 96.80449848613985
Optimization terminated successfully (Exit mode 0)
Current function value: 96.80449842840675
Iterations: 14
Function evaluations: 190
Gradient evaluations: 14
Iteration: 1, Func. Count: 15, Neg. LLF: 100.7030126253667
Iteration: 2, Func. Count: 31, Neg. LLF: 8026842.957503304
Iteration: 3, Func. Count: 46, Neg. LLF: 126.78843282477929
Iteration: 4, Func. Count: 61, Neg. LLF: 107.90517102688615
Iteration: 5, Func. Count: 76, Neg. LLF: 96.51164770367463
Iteration: 6, Func. Count: 90, Neg. LLF: 96.27322498449176
Iteration: 7, Func. Count: 104, Neg. LLF: 145.70140399659138
Iteration: 8, Func. Count: 121, Neg. LLF: 96.2370544828144
Iteration: 9, Func. Count: 135, Neg. LLF: 96.22283658000937
Iteration: 10, Func. Count: 149, Neg. LLF: 96.21898242140144
Iteration: 11, Func. Count: 163, Neg. LLF: 96.19387921350037
Iteration: 12, Func. Count: 177, Neg. LLF: 96.01452803681761
Iteration: 13, Func. Count: 191, Neg. LLF: 95.97321766754328
Iteration: 14, Func. Count: 205, Neg. LLF: 95.96122974346088
Iteration: 15, Func. Count: 219, Neg. LLF: 95.93980504380755
Iteration: 16, Func. Count: 233, Neg. LLF: 95.94122644049585
Iteration: 17, Func. Count: 248, Neg. LLF: 95.93700314765474
Iteration: 18, Func. Count: 262, Neg. LLF: 95.93681080506258
Iteration: 19, Func. Count: 276, Neg. LLF: 95.93679975894062
Iteration: 20, Func. Count: 289, Neg. LLF: 95.93679975896428
Optimization terminated successfully (Exit mode 0)
Current function value: 95.93679975894062
Iterations: 20
Function evaluations: 289
Gradient evaluations: 20
Iteration: 1, Func. Count: 16, Neg. LLF: 100.71873898150966
Iteration: 2, Func. Count: 33, Neg. LLF: 7847723.569377458
Iteration: 3, Func. Count: 49, Neg. LLF: 124.6422920648808
Iteration: 4, Func. Count: 65, Neg. LLF: 105.84595885706388
Iteration: 5, Func. Count: 81, Neg. LLF: 130.2432787736737
Iteration: 6, Func. Count: 97, Neg. LLF: 96.35895525998735
Iteration: 7, Func. Count: 112, Neg. LLF: 96.63315749712004
Iteration: 8, Func. Count: 128, Neg. LLF: 96.73774190195367
Iteration: 9, Func. Count: 144, Neg. LLF: 96.06828169737314
Iteration: 10, Func. Count: 159, Neg. LLF: 96.890587712252
Iteration: 11, Func. Count: 175, Neg. LLF: 95.96757210901919
Iteration: 12, Func. Count: 190, Neg. LLF: 95.93794882098805
Iteration: 13, Func. Count: 205, Neg. LLF: 95.93743029668188
Iteration: 14, Func. Count: 220, Neg. LLF: 95.9371604100999
Iteration: 15, Func. Count: 235, Neg. LLF: 95.93684882659988
Iteration: 16, Func. Count: 250, Neg. LLF: 95.93680384682901
Iteration: 17, Func. Count: 265, Neg. LLF: 95.93679977205159
Iteration: 18, Func. Count: 279, Neg. LLF: 95.9367997836491
Optimization terminated successfully (Exit mode 0)
Current function value: 95.93679977205159
Iterations: 18
Function evaluations: 279
Gradient evaluations: 18
Iteration: 1, Func. Count: 5, Neg. LLF: 150.56745720663386
Iteration: 2, Func. Count: 12, Neg. LLF: 138.55983708500892
Iteration: 3, Func. Count: 18, Neg. LLF: 98.75582499916621
Iteration: 4, Func. Count: 22, Neg. LLF: 98.71321741145965
Iteration: 5, Func. Count: 26, Neg. LLF: 98.70664082984406
Iteration: 6, Func. Count: 30, Neg. LLF: 98.704404107501
Iteration: 7, Func. Count: 34, Neg. LLF: 98.70424610028427
Iteration: 8, Func. Count: 38, Neg. LLF: 98.70424015866209
Iteration: 9, Func. Count: 41, Neg. LLF: 98.70424017784819
Optimization terminated successfully (Exit mode 0)
Current function value: 98.70424015866209
Iterations: 9
Function evaluations: 41
Gradient evaluations: 9
Iteration: 1, Func. Count: 5, Neg. LLF: 125.66187019306916
Iteration: 2, Func. Count: 12, Neg. LLF: 99.0063174475117
Iteration: 3, Func. Count: 16, Neg. LLF: 104.69356805002074
Iteration: 4, Func. Count: 21, Neg. LLF: 98.70693592934349
Iteration: 5, Func. Count: 25, Neg. LLF: 98.6937017246416
Iteration: 6, Func. Count: 29, Neg. LLF: 98.693177231181
Iteration: 7, Func. Count: 33, Neg. LLF: 98.69317520937439
Iteration: 8, Func. Count: 36, Neg. LLF: 98.69317527193964
Optimization terminated successfully (Exit mode 0)
Current function value: 98.69317520937439
Iterations: 8
Function evaluations: 36
Gradient evaluations: 8
Iteration: 1, Func. Count: 6, Neg. LLF: 22433115.074757185
Iteration: 2, Func. Count: 13, Neg. LLF: 96.85710714940545
Iteration: 3, Func. Count: 18, Neg. LLF: 102.32586746185424
Iteration: 4, Func. Count: 24, Neg. LLF: 99.80559083391874
Iteration: 5, Func. Count: 30, Neg. LLF: 96.70879487120665
Iteration: 6, Func. Count: 35, Neg. LLF: 96.70869609647275
Iteration: 7, Func. Count: 39, Neg. LLF: 96.70869609587754
Optimization terminated successfully (Exit mode 0)
Current function value: 96.70869609647275
Iterations: 7
Function evaluations: 39
Gradient evaluations: 7
Iteration: 1, Func. Count: 7, Neg. LLF: 22447252.152481753
Iteration: 2, Func. Count: 15, Neg. LLF: 97.11421658822417
Iteration: 3, Func. Count: 21, Neg. LLF: 96.94866900026945
Iteration: 4, Func. Count: 27, Neg. LLF: 96.93589085843058
Iteration: 5, Func. Count: 34, Neg. LLF: 96.88164585556142
Iteration: 6, Func. Count: 41, Neg. LLF: 96.77236837831026
Iteration: 7, Func. Count: 48, Neg. LLF: 96.74335034397329
Iteration: 8, Func. Count: 54, Neg. LLF: 96.74268527362958
Iteration: 9, Func. Count: 60, Neg. LLF: 96.74123642223368
Iteration: 10, Func. Count: 66, Neg. LLF: 96.7376328517806
Iteration: 11, Func. Count: 72, Neg. LLF: 96.70999764839014
Iteration: 12, Func. Count: 78, Neg. LLF: 96.70902644972682
Iteration: 13, Func. Count: 84, Neg. LLF: 96.7089820063558
Iteration: 14, Func. Count: 91, Neg. LLF: 96.70873245618057
Iteration: 15, Func. Count: 97, Neg. LLF: 96.70875631198386
Optimization terminated successfully (Exit mode 0)
Current function value: 96.70873212687478
Iterations: 15
Function evaluations: 98
Gradient evaluations: 15
Iteration: 1, Func. Count: 8, Neg. LLF: 22486249.151286118
Iteration: 2, Func. Count: 17, Neg. LLF: 97.20630296115209
Iteration: 3, Func. Count: 24, Neg. LLF: 96.89793643259426
Iteration: 4, Func. Count: 31, Neg. LLF: 96.79175494609902
Iteration: 5, Func. Count: 38, Neg. LLF: 96.89470105240312
Iteration: 6, Func. Count: 46, Neg. LLF: 96.76451855712541
Iteration: 7, Func. Count: 53, Neg. LLF: 96.76309222190422
Iteration: 8, Func. Count: 60, Neg. LLF: 96.7625868221023
Iteration: 9, Func. Count: 67, Neg. LLF: 96.76119287068967
Iteration: 10, Func. Count: 74, Neg. LLF: 96.76959926580462
Iteration: 11, Func. Count: 82, Neg. LLF: 96.76727352811999
Iteration: 12, Func. Count: 90, Neg. LLF: 96.76527277678659
Iteration: 13, Func. Count: 98, Neg. LLF: 22601282.719131142
Iteration: 14, Func. Count: 109, Neg. LLF: 97.05999467378759
Iteration: 15, Func. Count: 118, Neg. LLF: 96.75416981671394
Iteration: 16, Func. Count: 125, Neg. LLF: 96.7427454926957
Iteration: 17, Func. Count: 132, Neg. LLF: 96.7405851097726
Iteration: 18, Func. Count: 139, Neg. LLF: 96.7379919925571
Iteration: 19, Func. Count: 146, Neg. LLF: 96.720832081371
Iteration: 20, Func. Count: 153, Neg. LLF: 96.70891831573944
Iteration: 21, Func. Count: 160, Neg. LLF: 99.26722986642332
Iteration: 22, Func. Count: 169, Neg. LLF: 96.70876178665067
Iteration: 23, Func. Count: 177, Neg. LLF: 96.70878150631118
Iteration: 24, Func. Count: 185, Neg. LLF: 96.70869603128642
Iteration: 25, Func. Count: 191, Neg. LLF: 96.70869603515679
Optimization terminated successfully (Exit mode 0)
Current function value: 96.70869603128642
Iterations: 27
Function evaluations: 191
Gradient evaluations: 25
Iteration: 1, Func. Count: 9, Neg. LLF: 22503342.107245155
Iteration: 2, Func. Count: 19, Neg. LLF: 97.36673420267785
Iteration: 3, Func. Count: 27, Neg. LLF: 96.75984555154247
Iteration: 4, Func. Count: 35, Neg. LLF: 96.76335528095674
Iteration: 5, Func. Count: 44, Neg. LLF: 96.71969548755425
Iteration: 6, Func. Count: 52, Neg. LLF: 96.71912392090056
Iteration: 7, Func. Count: 60, Neg. LLF: 96.718651115586
Iteration: 8, Func. Count: 68, Neg. LLF: 96.7186503280339
Optimization terminated successfully (Exit mode 0)
Current function value: 96.7186503280339
Iterations: 8
Function evaluations: 68
Gradient evaluations: 8
Iteration: 1, Func. Count: 6, Neg. LLF: 126.26011184510592
Iteration: 2, Func. Count: 14, Neg. LLF: 103.08298944339941
Iteration: 3, Func. Count: 20, Neg. LLF: 98.87950664204948
Iteration: 4, Func. Count: 25, Neg. LLF: 98.82201964524504
Iteration: 5, Func. Count: 30, Neg. LLF: 98.69414956715755
Iteration: 6, Func. Count: 35, Neg. LLF: 98.69321775750757
Iteration: 7, Func. Count: 40, Neg. LLF: 98.693175815338
Iteration: 8, Func. Count: 45, Neg. LLF: 98.69317520858961
Optimization terminated successfully (Exit mode 0)
Current function value: 98.69317520858961
Iterations: 8
Function evaluations: 45
Gradient evaluations: 8
Iteration: 1, Func. Count: 7, Neg. LLF: 22388695.496470626
Iteration: 2, Func. Count: 15, Neg. LLF: 96.92202222983624
Iteration: 3, Func. Count: 21, Neg. LLF: 107.60533611306415
Iteration: 4, Func. Count: 29, Neg. LLF: 97.68100647753896
Iteration: 5, Func. Count: 36, Neg. LLF: 96.7087161287185
Iteration: 6, Func. Count: 42, Neg. LLF: 96.7086961901277
Iteration: 7, Func. Count: 47, Neg. LLF: 96.70869619031858
Optimization terminated successfully (Exit mode 0)
Current function value: 96.7086961901277
Iterations: 7
Function evaluations: 47
Gradient evaluations: 7
Iteration: 1, Func. Count: 8, Neg. LLF: 22421642.860603016
Iteration: 2, Func. Count: 17, Neg. LLF: 97.19918046889018
Iteration: 3, Func. Count: 24, Neg. LLF: 97.1194560001571
Iteration: 4, Func. Count: 31, Neg. LLF: 97.05692757986753
Iteration: 5, Func. Count: 39, Neg. LLF: 96.78307114392743
Iteration: 6, Func. Count: 47, Neg. LLF: 96.73787832000954
Iteration: 7, Func. Count: 54, Neg. LLF: 96.73686650172871
Iteration: 8, Func. Count: 61, Neg. LLF: 96.73662447161954
Iteration: 9, Func. Count: 68, Neg. LLF: 96.7350393698548
Iteration: 10, Func. Count: 75, Neg. LLF: 96.73073377367264
Iteration: 11, Func. Count: 82, Neg. LLF: 96.72075556408208
Iteration: 12, Func. Count: 89, Neg. LLF: 96.7087387586282
Iteration: 13, Func. Count: 96, Neg. LLF: 96.70870547418654
Iteration: 14, Func. Count: 103, Neg. LLF: 96.70967109839107
Optimization terminated successfully (Exit mode 0)
Current function value: 96.70870541923261
Iterations: 14
Function evaluations: 105
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 22447401.005574677
Iteration: 2, Func. Count: 19, Neg. LLF: 97.29677088686408
Iteration: 3, Func. Count: 27, Neg. LLF: 96.92213044229412
Iteration: 4, Func. Count: 35, Neg. LLF: 96.79365308702947
Iteration: 5, Func. Count: 43, Neg. LLF: 97.04890558420341
Iteration: 6, Func. Count: 52, Neg. LLF: 96.76212044869814
Iteration: 7, Func. Count: 60, Neg. LLF: 96.76181416197882
Iteration: 8, Func. Count: 68, Neg. LLF: 96.75951622790481
Iteration: 9, Func. Count: 76, Neg. LLF: 96.73487424870551
Iteration: 10, Func. Count: 84, Neg. LLF: 96.73417795383958
Iteration: 11, Func. Count: 92, Neg. LLF: 96.73007778087204
Iteration: 12, Func. Count: 100, Neg. LLF: 96.70963989865375
Iteration: 13, Func. Count: 108, Neg. LLF: 99.32893546128095
Iteration: 14, Func. Count: 118, Neg. LLF: 100.60131542514976
Iteration: 15, Func. Count: 129, Neg. LLF: 96.70869604108908
Iteration: 16, Func. Count: 136, Neg. LLF: 96.70869604499987
Optimization terminated successfully (Exit mode 0)
Current function value: 96.70869604108908
Iterations: 17
Function evaluations: 136
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 22469880.534903463
Iteration: 2, Func. Count: 21, Neg. LLF: 97.45213284740831
Iteration: 3, Func. Count: 30, Neg. LLF: 96.7353726790038
Iteration: 4, Func. Count: 39, Neg. LLF: 121.97757810747547
Iteration: 5, Func. Count: 50, Neg. LLF: 96.66269454903882
Iteration: 6, Func. Count: 60, Neg. LLF: 96.80181442588815
Iteration: 7, Func. Count: 70, Neg. LLF: 96.64412785682254
Iteration: 8, Func. Count: 79, Neg. LLF: 96.64386838272648
Iteration: 9, Func. Count: 88, Neg. LLF: 96.64386774741223
Optimization terminated successfully (Exit mode 0)
Current function value: 96.64386774741223
Iterations: 9
Function evaluations: 88
Gradient evaluations: 9
Iteration: 1, Func. Count: 7, Neg. LLF: 133.94686145140005
Iteration: 2, Func. Count: 16, Neg. LLF: 152183551.6896599
Iteration: 3, Func. Count: 23, Neg. LLF: 7413098.310507793
Iteration: 4, Func. Count: 30, Neg. LLF: 96.47966147490466
Iteration: 5, Func. Count: 36, Neg. LLF: 96.36000151476615
Iteration: 6, Func. Count: 43, Neg. LLF: 100.39076311563825
Iteration: 7, Func. Count: 50, Neg. LLF: 95.93924048687929
Iteration: 8, Func. Count: 56, Neg. LLF: 95.9200467911491
Iteration: 9, Func. Count: 62, Neg. LLF: 95.91033994784729
Iteration: 10, Func. Count: 68, Neg. LLF: 95.8804804162152
Iteration: 11, Func. Count: 74, Neg. LLF: 95.87478631664922
Iteration: 12, Func. Count: 80, Neg. LLF: 95.87422501887991
Iteration: 13, Func. Count: 86, Neg. LLF: 95.8742140628855
Iteration: 14, Func. Count: 91, Neg. LLF: 95.87421406288395
Optimization terminated successfully (Exit mode 0)
Current function value: 95.8742140628855
Iterations: 14
Function evaluations: 91
Gradient evaluations: 14
Iteration: 1, Func. Count: 8, Neg. LLF: 22373927.73625333
Iteration: 2, Func. Count: 17, Neg. LLF: 96.9655080959174
Iteration: 3, Func. Count: 24, Neg. LLF: 108.09274059008132
Iteration: 4, Func. Count: 33, Neg. LLF: 97.03631826813573
Iteration: 5, Func. Count: 41, Neg. LLF: 96.70873671945884
Iteration: 6, Func. Count: 48, Neg. LLF: 96.7086972504413
Iteration: 7, Func. Count: 55, Neg. LLF: 96.70869661079192
Optimization terminated successfully (Exit mode 0)
Current function value: 96.70869661079192
Iterations: 7
Function evaluations: 55
Gradient evaluations: 7
Iteration: 1, Func. Count: 9, Neg. LLF: 22386332.886662066
Iteration: 2, Func. Count: 19, Neg. LLF: 97.33146399752339
Iteration: 3, Func. Count: 27, Neg. LLF: 97.44115047258454
Iteration: 4, Func. Count: 36, Neg. LLF: 97.16016725306099
Iteration: 5, Func. Count: 44, Neg. LLF: 97.1013664317514
Iteration: 6, Func. Count: 53, Neg. LLF: 96.80912890553674
Iteration: 7, Func. Count: 61, Neg. LLF: 96.74430951204288
Iteration: 8, Func. Count: 69, Neg. LLF: 96.74313204571263
Iteration: 9, Func. Count: 77, Neg. LLF: 96.74297954975688
Iteration: 10, Func. Count: 85, Neg. LLF: 96.74265446178653
Iteration: 11, Func. Count: 93, Neg. LLF: 96.74196382474058
Iteration: 12, Func. Count: 101, Neg. LLF: 96.74019651829389
Iteration: 13, Func. Count: 109, Neg. LLF: 96.72883832545499
Iteration: 14, Func. Count: 117, Neg. LLF: 96.71643760486876
Iteration: 15, Func. Count: 125, Neg. LLF: 23259932.10588849
Iteration: 16, Func. Count: 136, Neg. LLF: 98.49005872127675
Iteration: 17, Func. Count: 146, Neg. LLF: 96.70869626216087
Iteration: 18, Func. Count: 153, Neg. LLF: 96.70869626459027
Optimization terminated successfully (Exit mode 0)
Current function value: 96.70869626216087
Iterations: 19
Function evaluations: 153
Gradient evaluations: 18
Iteration: 1, Func. Count: 10, Neg. LLF: 22401017.605495755
Iteration: 2, Func. Count: 21, Neg. LLF: 7625161.675506819
Iteration: 3, Func. Count: 31, Neg. LLF: 7771075.065483237
Iteration: 4, Func. Count: 41, Neg. LLF: 117.07208935055326
Iteration: 5, Func. Count: 51, Neg. LLF: 97.2458119219659
Iteration: 6, Func. Count: 61, Neg. LLF: 95.57170332409467
Iteration: 7, Func. Count: 70, Neg. LLF: 97.45532921598104
Iteration: 8, Func. Count: 80, Neg. LLF: 94.88239011499438
Iteration: 9, Func. Count: 89, Neg. LLF: 96.307796852847
Iteration: 10, Func. Count: 99, Neg. LLF: 94.9211180379804
Iteration: 11, Func. Count: 109, Neg. LLF: 94.69797899029139
Iteration: 12, Func. Count: 118, Neg. LLF: 94.69586391414774
Iteration: 13, Func. Count: 127, Neg. LLF: 94.69513345044075
Iteration: 14, Func. Count: 136, Neg. LLF: 94.69339818885183
Iteration: 15, Func. Count: 145, Neg. LLF: 94.68703416080632
Iteration: 16, Func. Count: 154, Neg. LLF: 94.68196238482354
Iteration: 17, Func. Count: 163, Neg. LLF: 94.67601693448297
Iteration: 18, Func. Count: 172, Neg. LLF: 94.67240232862734
Iteration: 19, Func. Count: 181, Neg. LLF: 94.67133999986258
Iteration: 20, Func. Count: 190, Neg. LLF: 94.67122503674076
Iteration: 21, Func. Count: 199, Neg. LLF: 94.67121627904427
Iteration: 22, Func. Count: 207, Neg. LLF: 94.67121627906614
Optimization terminated successfully (Exit mode 0)
Current function value: 94.67121627904427
Iterations: 22
Function evaluations: 207
Gradient evaluations: 22
Iteration: 1, Func. Count: 11, Neg. LLF: 22409365.254927773
Iteration: 2, Func. Count: 23, Neg. LLF: 7776.113769439487
Iteration: 3, Func. Count: 34, Neg. LLF: 9179605.253269596
Iteration: 4, Func. Count: 45, Neg. LLF: 425765.6851525451
Iteration: 5, Func. Count: 56, Neg. LLF: 129.25355911448102
Iteration: 6, Func. Count: 67, Neg. LLF: 94.5617957782773
Iteration: 7, Func. Count: 77, Neg. LLF: 94.4882940930595
Iteration: 8, Func. Count: 87, Neg. LLF: 94.34921584363246
Iteration: 9, Func. Count: 97, Neg. LLF: 100.0842956539595
Iteration: 10, Func. Count: 108, Neg. LLF: 129.50972557080752
Iteration: 11, Func. Count: 120, Neg. LLF: 96.78568809100815
Iteration: 12, Func. Count: 131, Neg. LLF: 94.21690433797987
Iteration: 13, Func. Count: 142, Neg. LLF: 94.16873334464938
Iteration: 14, Func. Count: 152, Neg. LLF: 94.1568375734003
Iteration: 15, Func. Count: 162, Neg. LLF: 94.15149295945362
Iteration: 16, Func. Count: 172, Neg. LLF: 94.11774074133695
Iteration: 17, Func. Count: 182, Neg. LLF: 94.11225534745941
Iteration: 18, Func. Count: 192, Neg. LLF: 94.09887090016147
Iteration: 19, Func. Count: 202, Neg. LLF: 94.0991059874311
Iteration: 20, Func. Count: 213, Neg. LLF: 9243983.136266863
Iteration: 21, Func. Count: 226, Neg. LLF: 185.09894218377875
Iteration: 22, Func. Count: 239, Neg. LLF: 95.0642601044323
Iteration: 23, Func. Count: 251, Neg. LLF: 94.46819769118437
Iteration: 24, Func. Count: 264, Neg. LLF: 94.22886130816252
Iteration: 25, Func. Count: 276, Neg. LLF: 94.09759813651739
Iteration: 26, Func. Count: 286, Neg. LLF: 94.09764155875617
Iteration: 27, Func. Count: 297, Neg. LLF: 94.09758349534437
Iteration: 28, Func. Count: 307, Neg. LLF: 94.09757722276856
Iteration: 29, Func. Count: 316, Neg. LLF: 94.09757722277001
Optimization terminated successfully (Exit mode 0)
Current function value: 94.09757722276856
Iterations: 30
Function evaluations: 316
Gradient evaluations: 29
Iteration: 1, Func. Count: 8, Neg. LLF: 139.9840444491621
Iteration: 2, Func. Count: 18, Neg. LLF: 190957200.99279067
Iteration: 3, Func. Count: 26, Neg. LLF: 7432441.474756032
Iteration: 4, Func. Count: 34, Neg. LLF: 97.1492750945773
Iteration: 5, Func. Count: 42, Neg. LLF: 95.99829426558695
Iteration: 6, Func. Count: 49, Neg. LLF: 95.95567806100452
Iteration: 7, Func. Count: 56, Neg. LLF: 98.82636357043496
Iteration: 8, Func. Count: 65, Neg. LLF: 95.92591978347711
Iteration: 9, Func. Count: 72, Neg. LLF: 95.88235996613281
Iteration: 10, Func. Count: 79, Neg. LLF: 95.87471667313329
Iteration: 11, Func. Count: 86, Neg. LLF: 95.87421784710499
Iteration: 12, Func. Count: 93, Neg. LLF: 95.8742139999126
Iteration: 13, Func. Count: 99, Neg. LLF: 95.87421404856057
Optimization terminated successfully (Exit mode 0)
Current function value: 95.8742139999126
Iterations: 13
Function evaluations: 99
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 22406807.149793345
Iteration: 2, Func. Count: 19, Neg. LLF: 96.89715199010367
Iteration: 3, Func. Count: 27, Neg. LLF: 106.6090207379454
Iteration: 4, Func. Count: 37, Neg. LLF: 98.30972568254096
Iteration: 5, Func. Count: 46, Neg. LLF: 96.70871326872825
Iteration: 6, Func. Count: 54, Neg. LLF: 96.70869648043518
Iteration: 7, Func. Count: 61, Neg. LLF: 96.70869648044996
Optimization terminated successfully (Exit mode 0)
Current function value: 96.70869648043518
Iterations: 7
Function evaluations: 61
Gradient evaluations: 7
Iteration: 1, Func. Count: 10, Neg. LLF: 22405766.938533027
Iteration: 2, Func. Count: 21, Neg. LLF: 97.24684630487393
Iteration: 3, Func. Count: 30, Neg. LLF: 97.27198987282294
Iteration: 4, Func. Count: 40, Neg. LLF: 96.96932972661276
Iteration: 5, Func. Count: 49, Neg. LLF: 97.32750632631992
Iteration: 6, Func. Count: 59, Neg. LLF: 96.75263852448853
Iteration: 7, Func. Count: 68, Neg. LLF: 96.7439398709026
Iteration: 8, Func. Count: 77, Neg. LLF: 96.74309889976811
Iteration: 9, Func. Count: 86, Neg. LLF: 96.74294581684832
Iteration: 10, Func. Count: 95, Neg. LLF: 96.74215777092341
Iteration: 11, Func. Count: 104, Neg. LLF: 96.74085403749018
Iteration: 12, Func. Count: 113, Neg. LLF: 96.73448044170395
Iteration: 13, Func. Count: 122, Neg. LLF: 96.71817935149727
Iteration: 14, Func. Count: 131, Neg. LLF: 23133415.693113368
Iteration: 15, Func. Count: 143, Neg. LLF: 98.20107900376405
Iteration: 16, Func. Count: 154, Neg. LLF: 96.70869605854833
Iteration: 17, Func. Count: 162, Neg. LLF: 96.70869606017544
Optimization terminated successfully (Exit mode 0)
Current function value: 96.70869605854833
Iterations: 18
Function evaluations: 162
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 22406707.48712097
Iteration: 2, Func. Count: 23, Neg. LLF: 7626439.900311945
Iteration: 3, Func. Count: 34, Neg. LLF: 7761656.031907542
Iteration: 4, Func. Count: 45, Neg. LLF: 116.93305115671927
Iteration: 5, Func. Count: 56, Neg. LLF: 97.1442121850427
Iteration: 6, Func. Count: 67, Neg. LLF: 95.44482478503161
Iteration: 7, Func. Count: 77, Neg. LLF: 98.53430746892936
Iteration: 8, Func. Count: 88, Neg. LLF: 94.98957565569901
Iteration: 9, Func. Count: 98, Neg. LLF: 96.22877648162805
Iteration: 10, Func. Count: 109, Neg. LLF: 94.87991868984192
Iteration: 11, Func. Count: 120, Neg. LLF: 94.69551106146935
Iteration: 12, Func. Count: 130, Neg. LLF: 94.69404310937436
Iteration: 13, Func. Count: 140, Neg. LLF: 94.6936459400535
Iteration: 14, Func. Count: 150, Neg. LLF: 94.69249756144872
Iteration: 15, Func. Count: 160, Neg. LLF: 94.68996405033704
Iteration: 16, Func. Count: 170, Neg. LLF: 94.68608535914636
Iteration: 17, Func. Count: 180, Neg. LLF: 94.67955986345738
Iteration: 18, Func. Count: 190, Neg. LLF: 94.67438811939871
Iteration: 19, Func. Count: 200, Neg. LLF: 94.67203861856225
Iteration: 20, Func. Count: 210, Neg. LLF: 94.67132804598492
Iteration: 21, Func. Count: 220, Neg. LLF: 94.67122369525312
Iteration: 22, Func. Count: 230, Neg. LLF: 94.67121629722554
Iteration: 23, Func. Count: 239, Neg. LLF: 94.67121629728393
Optimization terminated successfully (Exit mode 0)
Current function value: 94.67121629722554
Iterations: 23
Function evaluations: 239
Gradient evaluations: 23
Iteration: 1, Func. Count: 12, Neg. LLF: 22408062.208607525
Iteration: 2, Func. Count: 25, Neg. LLF: 206.17522552657263
Iteration: 3, Func. Count: 37, Neg. LLF: 9168790.725448748
Iteration: 4, Func. Count: 49, Neg. LLF: 1291412.3669762483
Iteration: 5, Func. Count: 61, Neg. LLF: 131.7171872714105
Iteration: 6, Func. Count: 73, Neg. LLF: 94.85780369506892
Iteration: 7, Func. Count: 84, Neg. LLF: 94.32738723330412
Iteration: 8, Func. Count: 95, Neg. LLF: 97.90767798345144
Iteration: 9, Func. Count: 109, Neg. LLF: 105.02152636009528
Iteration: 10, Func. Count: 123, Neg. LLF: 94.25633310832127
Iteration: 11, Func. Count: 135, Neg. LLF: 94.12547418699096
Iteration: 12, Func. Count: 146, Neg. LLF: 94.11211450321728
Iteration: 13, Func. Count: 157, Neg. LLF: 94.10673850706053
Iteration: 14, Func. Count: 168, Neg. LLF: 94.10003103995543
Iteration: 15, Func. Count: 179, Neg. LLF: 94.0978238888241
Iteration: 16, Func. Count: 190, Neg. LLF: 94.09758149526425
Iteration: 17, Func. Count: 201, Neg. LLF: 94.09757734406327
Iteration: 18, Func. Count: 211, Neg. LLF: 94.09757734405744
Optimization terminated successfully (Exit mode 0)
Current function value: 94.09757734406327
Iterations: 18
Function evaluations: 211
Gradient evaluations: 18
Iteration: 1, Func. Count: 5, Neg. LLF: 148.7140541088157
Iteration: 2, Func. Count: 12, Neg. LLF: 140.37881509876118
Iteration: 3, Func. Count: 17, Neg. LLF: 98.7154660735284
Iteration: 4, Func. Count: 21, Neg. LLF: 98.69803122535833
Iteration: 5, Func. Count: 25, Neg. LLF: 98.69460068345225
Iteration: 6, Func. Count: 29, Neg. LLF: 98.69317963994594
Iteration: 7, Func. Count: 33, Neg. LLF: 98.69317522790175
Iteration: 8, Func. Count: 36, Neg. LLF: 98.69317526186717
Optimization terminated successfully (Exit mode 0)
Current function value: 98.69317522790175
Iterations: 8
Function evaluations: 36
Gradient evaluations: 8
Iteration: 1, Func. Count: 6, Neg. LLF: 22354699.353552874
Iteration: 2, Func. Count: 13, Neg. LLF: 96.78921753324225
Iteration: 3, Func. Count: 18, Neg. LLF: 99.25760356489175
Iteration: 4, Func. Count: 24, Neg. LLF: 96.97336734667459
Iteration: 5, Func. Count: 31, Neg. LLF: 96.70876472243442
Iteration: 6, Func. Count: 36, Neg. LLF: 96.70869603778303
Iteration: 7, Func. Count: 40, Neg. LLF: 96.70869603802204
Optimization terminated successfully (Exit mode 0)
Current function value: 96.70869603778303
Iterations: 7
Function evaluations: 40
Gradient evaluations: 7
Iteration: 1, Func. Count: 7, Neg. LLF: 22349556.889410343
Iteration: 2, Func. Count: 15, Neg. LLF: 96.98524679911529
Iteration: 3, Func. Count: 21, Neg. LLF: 99.58982070899508
Iteration: 4, Func. Count: 28, Neg. LLF: 99.1285403670251
Iteration: 5, Func. Count: 35, Neg. LLF: 96.74313378230624
Iteration: 6, Func. Count: 41, Neg. LLF: 96.74258384525578
Iteration: 7, Func. Count: 47, Neg. LLF: 96.74196688294575
Iteration: 8, Func. Count: 53, Neg. LLF: 96.74017605586177
Iteration: 9, Func. Count: 59, Neg. LLF: 96.73212771869242
Iteration: 10, Func. Count: 65, Neg. LLF: 96.71011117225807
Iteration: 11, Func. Count: 71, Neg. LLF: 99.41176087830198
Iteration: 12, Func. Count: 79, Neg. LLF: 719742347.5914996
Iteration: 13, Func. Count: 89, Neg. LLF: 96.70869603131516
Iteration: 14, Func. Count: 94, Neg. LLF: 96.70869603256561
Optimization terminated successfully (Exit mode 0)
Current function value: 96.70869603131516
Iterations: 15
Function evaluations: 94
Gradient evaluations: 14
Iteration: 1, Func. Count: 8, Neg. LLF: 22350521.03910903
Iteration: 2, Func. Count: 17, Neg. LLF: 97.01096482585007
Iteration: 3, Func. Count: 24, Neg. LLF: 96.88945592222798
Iteration: 4, Func. Count: 31, Neg. LLF: 96.77723584631279
Iteration: 5, Func. Count: 38, Neg. LLF: 96.81543917754708
Iteration: 6, Func. Count: 46, Neg. LLF: 96.76463022093688
Iteration: 7, Func. Count: 53, Neg. LLF: 96.76411658643897
Iteration: 8, Func. Count: 60, Neg. LLF: 96.76340778353976
Iteration: 9, Func. Count: 67, Neg. LLF: 96.76298095484272
Iteration: 10, Func. Count: 74, Neg. LLF: 96.76172385422342
Iteration: 11, Func. Count: 81, Neg. LLF: 96.74767230428345
Iteration: 12, Func. Count: 88, Neg. LLF: 96.74605905117659
Iteration: 13, Func. Count: 95, Neg. LLF: 96.7428588572323
Iteration: 14, Func. Count: 102, Neg. LLF: 96.74108900528392
Iteration: 15, Func. Count: 109, Neg. LLF: 96.73584597368345
Iteration: 16, Func. Count: 116, Neg. LLF: 96.71432116634108
Iteration: 17, Func. Count: 123, Neg. LLF: 22349490.467172686
Iteration: 18, Func. Count: 133, Neg. LLF: 96.70879351239233
Iteration: 19, Func. Count: 140, Neg. LLF: 96.73616913056335
Iteration: 20, Func. Count: 149, Neg. LLF: 96.70869604498324
Iteration: 21, Func. Count: 155, Neg. LLF: 96.70869604875799
Optimization terminated successfully (Exit mode 0)
Current function value: 96.70869604498324
Iterations: 22
Function evaluations: 155
Gradient evaluations: 21
Iteration: 1, Func. Count: 9, Neg. LLF: 22354179.342260387
Iteration: 2, Func. Count: 19, Neg. LLF: 97.05073629144421
Iteration: 3, Func. Count: 27, Neg. LLF: 96.93345619790958
Iteration: 4, Func. Count: 35, Neg. LLF: 96.83302545550053
Iteration: 5, Func. Count: 43, Neg. LLF: 96.82553765910656
Iteration: 6, Func. Count: 52, Neg. LLF: 96.79265239654868
Iteration: 7, Func. Count: 61, Neg. LLF: 96.77620630026051
Iteration: 8, Func. Count: 69, Neg. LLF: 96.74202884997244
Iteration: 9, Func. Count: 77, Neg. LLF: 96.7187619966264
Iteration: 10, Func. Count: 85, Neg. LLF: 96.71868802010937
Iteration: 11, Func. Count: 93, Neg. LLF: 96.71865043583249
Iteration: 12, Func. Count: 101, Neg. LLF: 97.84530059914475
Optimization terminated successfully (Exit mode 0)
Current function value: 96.71865033330965
Iterations: 13
Function evaluations: 105
Gradient evaluations: 12
Iteration: 1, Func. Count: 6, Neg. LLF: 149.1866929529341
Iteration: 2, Func. Count: 14, Neg. LLF: 159.92803503804308
Iteration: 3, Func. Count: 20, Neg. LLF: 97.99236784154986
Iteration: 4, Func. Count: 25, Neg. LLF: 99.10622990394378
Iteration: 5, Func. Count: 32, Neg. LLF: 99.04832099668889
Iteration: 6, Func. Count: 38, Neg. LLF: 97.90724166678508
Iteration: 7, Func. Count: 43, Neg. LLF: 97.8925164568852
Iteration: 8, Func. Count: 48, Neg. LLF: 97.88464012027627
Iteration: 9, Func. Count: 53, Neg. LLF: 97.88344182510387
Iteration: 10, Func. Count: 58, Neg. LLF: 97.8834202799767
Iteration: 11, Func. Count: 62, Neg. LLF: 97.88342027991212
Optimization terminated successfully (Exit mode 0)
Current function value: 97.8834202799767
Iterations: 11
Function evaluations: 62
Gradient evaluations: 11
Iteration: 1, Func. Count: 7, Neg. LLF: 196.1691080772111
Iteration: 2, Func. Count: 15, Neg. LLF: 100.65306650392809
Iteration: 3, Func. Count: 22, Neg. LLF: 103.7836128340642
Iteration: 4, Func. Count: 29, Neg. LLF: 97.74842128264093
Iteration: 5, Func. Count: 35, Neg. LLF: 102.43186540537104
Iteration: 6, Func. Count: 42, Neg. LLF: 97.59341263154471
Iteration: 7, Func. Count: 48, Neg. LLF: 97.55422557585774
Iteration: 8, Func. Count: 54, Neg. LLF: 97.53540784276592
Iteration: 9, Func. Count: 60, Neg. LLF: 97.53414974298548
Iteration: 10, Func. Count: 66, Neg. LLF: 97.53390212812624
Iteration: 11, Func. Count: 72, Neg. LLF: 97.53292662883648
Iteration: 12, Func. Count: 78, Neg. LLF: 97.52168775210916
Iteration: 13, Func. Count: 84, Neg. LLF: 97.526418808183
Iteration: 14, Func. Count: 91, Neg. LLF: 24428044.31923229
Iteration: 15, Func. Count: 101, Neg. LLF: 100.48996980414805
Iteration: 16, Func. Count: 108, Neg. LLF: 97.03004144012648
Iteration: 17, Func. Count: 114, Neg. LLF: 106.24383493382905
Iteration: 18, Func. Count: 121, Neg. LLF: 96.73132136377313
Iteration: 19, Func. Count: 127, Neg. LLF: 96.71161905293225
Iteration: 20, Func. Count: 133, Neg. LLF: 96.70881218213643
Iteration: 21, Func. Count: 139, Neg. LLF: 96.7087326527365
Iteration: 22, Func. Count: 145, Neg. LLF: 96.70872512526965
Iteration: 23, Func. Count: 151, Neg. LLF: 98.26412409378314
Optimization terminated successfully (Exit mode 0)
Current function value: 96.70872512215054
Iterations: 25
Function evaluations: 155
Gradient evaluations: 23
Iteration: 1, Func. Count: 8, Neg. LLF: 22828279.766835466
Iteration: 2, Func. Count: 17, Neg. LLF: 96.68254782764167
Iteration: 3, Func. Count: 24, Neg. LLF: 97.0566724544354
Iteration: 4, Func. Count: 32, Neg. LLF: 96.3482340637732
Iteration: 5, Func. Count: 39, Neg. LLF: 95.95475468674961
Iteration: 6, Func. Count: 46, Neg. LLF: 95.78369899633095
Iteration: 7, Func. Count: 53, Neg. LLF: 96.06128313635907
Iteration: 8, Func. Count: 61, Neg. LLF: 95.25828767556861
Iteration: 9, Func. Count: 68, Neg. LLF: 95.15429733807039
Iteration: 10, Func. Count: 75, Neg. LLF: 95.09230430231617
Iteration: 11, Func. Count: 82, Neg. LLF: 95.08971557298685
Iteration: 12, Func. Count: 89, Neg. LLF: 95.08959915479295
Iteration: 13, Func. Count: 96, Neg. LLF: 95.08959325743062
Iteration: 14, Func. Count: 102, Neg. LLF: 95.08959319666343
Optimization terminated successfully (Exit mode 0)
Current function value: 95.08959325743062
Iterations: 14
Function evaluations: 102
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 22911010.066085797
Iteration: 2, Func. Count: 19, Neg. LLF: 100.07719754454699
Iteration: 3, Func. Count: 28, Neg. LLF: 225.27647440659197
Iteration: 4, Func. Count: 37, Neg. LLF: 97.44184270440358
Iteration: 5, Func. Count: 46, Neg. LLF: 95.34732895018173
Iteration: 6, Func. Count: 54, Neg. LLF: 97.83172212665313
Iteration: 7, Func. Count: 63, Neg. LLF: 97.31144513155452
Iteration: 8, Func. Count: 72, Neg. LLF: 95.01841073491131
Iteration: 9, Func. Count: 80, Neg. LLF: 95.01473083496086
Iteration: 10, Func. Count: 88, Neg. LLF: 95.01382534211712
Iteration: 11, Func. Count: 96, Neg. LLF: 95.01381988405213
Iteration: 12, Func. Count: 104, Neg. LLF: 95.01381863081761
Iteration: 13, Func. Count: 111, Neg. LLF: 95.01381863074594
Optimization terminated successfully (Exit mode 0)
Current function value: 95.01381863081761
Iterations: 13
Function evaluations: 111
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 22942741.081644762
Iteration: 2, Func. Count: 21, Neg. LLF: 97.08335932062369
Iteration: 3, Func. Count: 30, Neg. LLF: 99.1488530102039
Iteration: 4, Func. Count: 40, Neg. LLF: 95.65752671617781
Iteration: 5, Func. Count: 49, Neg. LLF: 95.3700600515253
Iteration: 6, Func. Count: 58, Neg. LLF: 95.69044455885452
Iteration: 7, Func. Count: 68, Neg. LLF: 95.10578682507685
Iteration: 8, Func. Count: 77, Neg. LLF: 95.09636352510655
Iteration: 9, Func. Count: 86, Neg. LLF: 95.09156258102215
Iteration: 10, Func. Count: 95, Neg. LLF: 95.08959894879341
Iteration: 11, Func. Count: 104, Neg. LLF: 95.08959374921406
Iteration: 12, Func. Count: 112, Neg. LLF: 95.08959368910054
Optimization terminated successfully (Exit mode 0)
Current function value: 95.08959374921406
Iterations: 12
Function evaluations: 112
Gradient evaluations: 12
Iteration: 1, Func. Count: 7, Neg. LLF: 148.7424314803076
Iteration: 2, Func. Count: 16, Neg. LLF: 152.53634354533474
Iteration: 3, Func. Count: 23, Neg. LLF: 98.109271848447
Iteration: 4, Func. Count: 29, Neg. LLF: 99.09869170296474
Iteration: 5, Func. Count: 37, Neg. LLF: 99.18867079111322
Iteration: 6, Func. Count: 44, Neg. LLF: 97.90612115284372
Iteration: 7, Func. Count: 50, Neg. LLF: 97.89323851157518
Iteration: 8, Func. Count: 56, Neg. LLF: 97.88617605041422
Iteration: 9, Func. Count: 62, Neg. LLF: 97.88357452127202
Iteration: 10, Func. Count: 68, Neg. LLF: 97.88342142534361
Iteration: 11, Func. Count: 74, Neg. LLF: 97.88341981271797
Iteration: 12, Func. Count: 79, Neg. LLF: 97.88341986403438
Optimization terminated successfully (Exit mode 0)
Current function value: 97.88341981271797
Iterations: 12
Function evaluations: 79
Gradient evaluations: 12
Iteration: 1, Func. Count: 8, Neg. LLF: 257.1871390219042
Iteration: 2, Func. Count: 17, Neg. LLF: 100.65489332618917
Iteration: 3, Func. Count: 25, Neg. LLF: 99.44694969226101
Iteration: 4, Func. Count: 33, Neg. LLF: 97.82713938126265
Iteration: 5, Func. Count: 40, Neg. LLF: 98.07103162464757
Iteration: 6, Func. Count: 48, Neg. LLF: 97.74511869132309
Iteration: 7, Func. Count: 55, Neg. LLF: 97.56121218439323
Iteration: 8, Func. Count: 62, Neg. LLF: 97.50557167993391
Iteration: 9, Func. Count: 69, Neg. LLF: 97.5705690955049
Iteration: 10, Func. Count: 77, Neg. LLF: 97.46043737347071
Iteration: 11, Func. Count: 84, Neg. LLF: 97.45978757498881
Iteration: 12, Func. Count: 91, Neg. LLF: 97.45976406877104
Iteration: 13, Func. Count: 98, Neg. LLF: 97.80836380071344
Iteration: 14, Func. Count: 108, Neg. LLF: 97.46890807869423
Iteration: 15, Func. Count: 117, Neg. LLF: 97.46780017847931
Iteration: 16, Func. Count: 126, Neg. LLF: 97.45975223492846
Iteration: 17, Func. Count: 134, Neg. LLF: 97.45972615557056
Iteration: 18, Func. Count: 140, Neg. LLF: 97.459726056775
Optimization terminated successfully (Exit mode 0)
Current function value: 97.45972615557056
Iterations: 19
Function evaluations: 140
Gradient evaluations: 18
Iteration: 1, Func. Count: 9, Neg. LLF: 22798396.567245036
Iteration: 2, Func. Count: 19, Neg. LLF: 96.69668137143626
Iteration: 3, Func. Count: 27, Neg. LLF: 100.55077171009036
Iteration: 4, Func. Count: 37, Neg. LLF: 96.21581836826498
Iteration: 5, Func. Count: 45, Neg. LLF: 97.01208142310752
Iteration: 6, Func. Count: 54, Neg. LLF: 97.4226117699993
Iteration: 7, Func. Count: 63, Neg. LLF: 95.41274352320957
Iteration: 8, Func. Count: 71, Neg. LLF: 95.17629371012644
Iteration: 9, Func. Count: 79, Neg. LLF: 95.09375630532641
Iteration: 10, Func. Count: 87, Neg. LLF: 95.0904572435996
Iteration: 11, Func. Count: 95, Neg. LLF: 95.08960300803486
Iteration: 12, Func. Count: 103, Neg. LLF: 95.08959345519293
Iteration: 13, Func. Count: 110, Neg. LLF: 95.08959339446257
Optimization terminated successfully (Exit mode 0)
Current function value: 95.08959345519293
Iterations: 13
Function evaluations: 110
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 22853709.255079612
Iteration: 2, Func. Count: 21, Neg. LLF: 100.56919045839011
Iteration: 3, Func. Count: 31, Neg. LLF: 186.8035746220621
Iteration: 4, Func. Count: 41, Neg. LLF: 97.98271033653495
Iteration: 5, Func. Count: 51, Neg. LLF: 96.09616081462455
Iteration: 6, Func. Count: 60, Neg. LLF: 99.91796198873998
Iteration: 7, Func. Count: 70, Neg. LLF: 106.1189401266611
Iteration: 8, Func. Count: 81, Neg. LLF: 95.0498812500621
Iteration: 9, Func. Count: 90, Neg. LLF: 95.02605473057602
Iteration: 10, Func. Count: 99, Neg. LLF: 95.02784081553396
Iteration: 11, Func. Count: 109, Neg. LLF: 95.01530824949833
Iteration: 12, Func. Count: 119, Neg. LLF: 95.01382550919698
Iteration: 13, Func. Count: 128, Neg. LLF: 95.0138195331539
Iteration: 14, Func. Count: 137, Neg. LLF: 95.01381862316902
Optimization terminated successfully (Exit mode 0)
Current function value: 95.01381862316902
Iterations: 14
Function evaluations: 137
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 22899165.36837627
Iteration: 2, Func. Count: 23, Neg. LLF: 97.68309241389925
Iteration: 3, Func. Count: 33, Neg. LLF: 99.49280484478027
Iteration: 4, Func. Count: 44, Neg. LLF: 100.84053763699738
Iteration: 5, Func. Count: 55, Neg. LLF: 95.25896202239763
Iteration: 6, Func. Count: 65, Neg. LLF: 96.30082309248017
Iteration: 7, Func. Count: 76, Neg. LLF: 95.12045958285542
Iteration: 8, Func. Count: 86, Neg. LLF: 95.11579751264804
Iteration: 9, Func. Count: 96, Neg. LLF: 95.11196610738445
Iteration: 10, Func. Count: 106, Neg. LLF: 95.10135772988228
Iteration: 11, Func. Count: 116, Neg. LLF: 95.093592827555
Iteration: 12, Func. Count: 126, Neg. LLF: 95.08962965548807
Iteration: 13, Func. Count: 136, Neg. LLF: 95.08961477835372
Iteration: 14, Func. Count: 146, Neg. LLF: 95.08960323487923
Iteration: 15, Func. Count: 156, Neg. LLF: 95.0895387535527
Iteration: 16, Func. Count: 166, Neg. LLF: 95.08972906992364
Iteration: 17, Func. Count: 178, Neg. LLF: 95.08959711229748
Iteration: 18, Func. Count: 190, Neg. LLF: 95.0895934187219
Iteration: 19, Func. Count: 203, Neg. LLF: 95.08959333925324
Iteration: 20, Func. Count: 215, Neg. LLF: 95.08959364059945
Iteration: 21, Func. Count: 227, Neg. LLF: 95.08959333980582
Iteration: 22, Func. Count: 236, Neg. LLF: 95.08959327999932
Optimization terminated successfully (Exit mode 0)
Current function value: 95.08959333980582
Iterations: 24
Function evaluations: 236
Gradient evaluations: 22
Iteration: 1, Func. Count: 8, Neg. LLF: 113.90853900360885
Iteration: 2, Func. Count: 17, Neg. LLF: 183.06730534377252
Iteration: 3, Func. Count: 25, Neg. LLF: 9191927.474856025
Iteration: 4, Func. Count: 33, Neg. LLF: 97.21591371780876
Iteration: 5, Func. Count: 40, Neg. LLF: 96.32625272715617
Iteration: 6, Func. Count: 47, Neg. LLF: 96.03527347170576
Iteration: 7, Func. Count: 54, Neg. LLF: 95.97565707778564
Iteration: 8, Func. Count: 61, Neg. LLF: 96.50001580030373
Iteration: 9, Func. Count: 70, Neg. LLF: 97.261763528775
Iteration: 10, Func. Count: 78, Neg. LLF: 95.8854478183713
Iteration: 11, Func. Count: 85, Neg. LLF: 95.88005828252496
Iteration: 12, Func. Count: 92, Neg. LLF: 95.87654567718694
Iteration: 13, Func. Count: 99, Neg. LLF: 95.87427625208166
Iteration: 14, Func. Count: 106, Neg. LLF: 95.87421622052516
Iteration: 15, Func. Count: 113, Neg. LLF: 95.87421407585607
Iteration: 16, Func. Count: 119, Neg. LLF: 95.87421407585167
Optimization terminated successfully (Exit mode 0)
Current function value: 95.87421407585607
Iterations: 16
Function evaluations: 119
Gradient evaluations: 16
Iteration: 1, Func. Count: 9, Neg. LLF: 328.2447457360678
Iteration: 2, Func. Count: 18, Neg. LLF: 7460210.8970541665
Iteration: 3, Func. Count: 27, Neg. LLF: 200.41678840290305
Iteration: 4, Func. Count: 37, Neg. LLF: 101.39361792922885
Iteration: 5, Func. Count: 46, Neg. LLF: 96.73209200587648
Iteration: 6, Func. Count: 54, Neg. LLF: 96.6353033354623
Iteration: 7, Func. Count: 62, Neg. LLF: 96.55784378941087
Iteration: 8, Func. Count: 70, Neg. LLF: 96.52149844051037
Iteration: 9, Func. Count: 78, Neg. LLF: 96.45199521022437
Iteration: 10, Func. Count: 86, Neg. LLF: 95.9754238548266
Iteration: 11, Func. Count: 94, Neg. LLF: 95.87544963239279
Iteration: 12, Func. Count: 102, Neg. LLF: 95.87466304339827
Iteration: 13, Func. Count: 110, Neg. LLF: 95.87434858177659
Iteration: 14, Func. Count: 118, Neg. LLF: 95.8742216620743
Iteration: 15, Func. Count: 126, Neg. LLF: 95.87421423816546
Iteration: 16, Func. Count: 133, Neg. LLF: 95.87421427253567
Optimization terminated successfully (Exit mode 0)
Current function value: 95.87421423816546
Iterations: 16
Function evaluations: 133
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 22695700.985647354
Iteration: 2, Func. Count: 21, Neg. LLF: 96.78533425083866
Iteration: 3, Func. Count: 30, Neg. LLF: 99.1469187910776
Iteration: 4, Func. Count: 40, Neg. LLF: 96.23135713729889
Iteration: 5, Func. Count: 49, Neg. LLF: 95.26078795663469
Iteration: 6, Func. Count: 58, Neg. LLF: 95.15713651602695
Iteration: 7, Func. Count: 67, Neg. LLF: 95.11075951176475
Iteration: 8, Func. Count: 76, Neg. LLF: 95.08978369016944
Iteration: 9, Func. Count: 85, Neg. LLF: 95.08960007849078
Iteration: 10, Func. Count: 94, Neg. LLF: 95.08959285038488
Iteration: 11, Func. Count: 102, Neg. LLF: 95.08959278968928
Optimization terminated successfully (Exit mode 0)
Current function value: 95.08959285038488
Iterations: 11
Function evaluations: 102
Gradient evaluations: 11
Iteration: 1, Func. Count: 11, Neg. LLF: 22733194.31961144
Iteration: 2, Func. Count: 23, Neg. LLF: 2997858.137335463
Iteration: 3, Func. Count: 34, Neg. LLF: 6472803.07084251
Iteration: 4, Func. Count: 45, Neg. LLF: 5272886.546524215
Iteration: 5, Func. Count: 57, Neg. LLF: 101.38095844427531
Iteration: 6, Func. Count: 68, Neg. LLF: 99.91976860223619
Iteration: 7, Func. Count: 79, Neg. LLF: 98.50460240580198
Iteration: 8, Func. Count: 90, Neg. LLF: 96.59434517902613
Iteration: 9, Func. Count: 101, Neg. LLF: 95.45220532139163
Iteration: 10, Func. Count: 111, Neg. LLF: 95.53895805404584
Iteration: 11, Func. Count: 122, Neg. LLF: 95.6095669042345
Iteration: 12, Func. Count: 133, Neg. LLF: 95.32636284090214
Iteration: 13, Func. Count: 143, Neg. LLF: 104.10164316708911
Iteration: 14, Func. Count: 154, Neg. LLF: 95.76257589513979
Iteration: 15, Func. Count: 165, Neg. LLF: 95.19619503634424
Iteration: 16, Func. Count: 175, Neg. LLF: 99.04974111600042
Iteration: 17, Func. Count: 186, Neg. LLF: 95.19201415311666
Iteration: 18, Func. Count: 197, Neg. LLF: 95.1183474485947
Iteration: 19, Func. Count: 208, Neg. LLF: 94.83476347049988
Iteration: 20, Func. Count: 218, Neg. LLF: 94.74543665337511
Iteration: 21, Func. Count: 228, Neg. LLF: 94.71478450339667
Iteration: 22, Func. Count: 238, Neg. LLF: 94.7022902196296
Iteration: 23, Func. Count: 248, Neg. LLF: 94.70114478556515
Iteration: 24, Func. Count: 258, Neg. LLF: 94.69931720647979
Iteration: 25, Func. Count: 268, Neg. LLF: 94.69870695802061
Iteration: 26, Func. Count: 278, Neg. LLF: 94.69837477541445
Iteration: 27, Func. Count: 288, Neg. LLF: 94.6983287535513
Iteration: 28, Func. Count: 298, Neg. LLF: 94.69831835672382
Iteration: 29, Func. Count: 308, Neg. LLF: 94.69831660342602
Iteration: 30, Func. Count: 317, Neg. LLF: 94.6983165888656
Optimization terminated successfully (Exit mode 0)
Current function value: 94.69831660342602
Iterations: 30
Function evaluations: 317
Gradient evaluations: 30
Iteration: 1, Func. Count: 12, Neg. LLF: 3080357.871476885
Iteration: 2, Func. Count: 24, Neg. LLF: 9212156.056435056
Iteration: 3, Func. Count: 36, Neg. LLF: 134.81698388705743
Iteration: 4, Func. Count: 48, Neg. LLF: 420.2046667364252
Iteration: 5, Func. Count: 60, Neg. LLF: 186.7721165469603
Iteration: 6, Func. Count: 72, Neg. LLF: 110.20535900012385
Iteration: 7, Func. Count: 84, Neg. LLF: 95.19188740986455
Iteration: 8, Func. Count: 95, Neg. LLF: 95.13751276649981
Iteration: 9, Func. Count: 107, Neg. LLF: 99.7622430755598
Iteration: 10, Func. Count: 122, Neg. LLF: 95.56707292994724
Iteration: 11, Func. Count: 134, Neg. LLF: 94.6162832060413
Iteration: 12, Func. Count: 145, Neg. LLF: 94.45221654276925
Iteration: 13, Func. Count: 156, Neg. LLF: 94.39041574413687
Iteration: 14, Func. Count: 167, Neg. LLF: 94.23455252048564
Iteration: 15, Func. Count: 178, Neg. LLF: 94.19215031816582
Iteration: 16, Func. Count: 189, Neg. LLF: 94.14828724598827
Iteration: 17, Func. Count: 200, Neg. LLF: 94.11700603498831
Iteration: 18, Func. Count: 211, Neg. LLF: 94.09760744975125
Iteration: 19, Func. Count: 222, Neg. LLF: 94.08733018776229
Iteration: 20, Func. Count: 233, Neg. LLF: 94.08470985904844
Iteration: 21, Func. Count: 244, Neg. LLF: 94.0844922353185
Iteration: 22, Func. Count: 255, Neg. LLF: 94.08441498511537
Iteration: 23, Func. Count: 266, Neg. LLF: 94.08441397158991
Iteration: 24, Func. Count: 276, Neg. LLF: 94.08441397155067
Optimization terminated successfully (Exit mode 0)
Current function value: 94.08441397158991
Iterations: 24
Function evaluations: 276
Gradient evaluations: 24
Iteration: 1, Func. Count: 9, Neg. LLF: 112.80496433158153
Iteration: 2, Func. Count: 19, Neg. LLF: 1291116.8138386603
Iteration: 3, Func. Count: 28, Neg. LLF: 9202764.667782625
Iteration: 4, Func. Count: 37, Neg. LLF: 98.5029154201847
Iteration: 5, Func. Count: 46, Neg. LLF: 95.95211498002885
Iteration: 6, Func. Count: 54, Neg. LLF: 95.96377715589526
Iteration: 7, Func. Count: 63, Neg. LLF: 96.04637554017593
Iteration: 8, Func. Count: 72, Neg. LLF: 95.88947681939528
Iteration: 9, Func. Count: 80, Neg. LLF: 96.74418019898651
Iteration: 10, Func. Count: 89, Neg. LLF: 95.87452684044196
Iteration: 11, Func. Count: 97, Neg. LLF: 95.87421960128084
Iteration: 12, Func. Count: 105, Neg. LLF: 95.87421410156647
Iteration: 13, Func. Count: 112, Neg. LLF: 95.87421415020884
Optimization terminated successfully (Exit mode 0)
Current function value: 95.87421410156647
Iterations: 13
Function evaluations: 112
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 237.6608603027389
Iteration: 2, Func. Count: 20, Neg. LLF: 6437653.69139089
Iteration: 3, Func. Count: 30, Neg. LLF: 3454784.681300412
Iteration: 4, Func. Count: 41, Neg. LLF: 99.51121465945079
Iteration: 5, Func. Count: 51, Neg. LLF: 96.82009358129199
Iteration: 6, Func. Count: 60, Neg. LLF: 96.62821738699532
Iteration: 7, Func. Count: 69, Neg. LLF: 96.52987066470295
Iteration: 8, Func. Count: 78, Neg. LLF: 96.54986004747867
Iteration: 9, Func. Count: 88, Neg. LLF: 96.29946072023857
Iteration: 10, Func. Count: 97, Neg. LLF: 96.04702490876532
Iteration: 11, Func. Count: 106, Neg. LLF: 95.88253159156542
Iteration: 12, Func. Count: 115, Neg. LLF: 95.87493598051188
Iteration: 13, Func. Count: 124, Neg. LLF: 95.87453405349113
Iteration: 14, Func. Count: 133, Neg. LLF: 95.87427167470533
Iteration: 15, Func. Count: 142, Neg. LLF: 95.87422459971427
Iteration: 16, Func. Count: 151, Neg. LLF: 95.87421400224713
Iteration: 17, Func. Count: 159, Neg. LLF: 95.87421403660811
Optimization terminated successfully (Exit mode 0)
Current function value: 95.87421400224713
Iterations: 17
Function evaluations: 159
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 22759898.674414918
Iteration: 2, Func. Count: 23, Neg. LLF: 96.73262641687818
Iteration: 3, Func. Count: 33, Neg. LLF: 100.83920422581956
Iteration: 4, Func. Count: 44, Neg. LLF: 96.77287789201036
Iteration: 5, Func. Count: 55, Neg. LLF: 100.63427942092234
Iteration: 6, Func. Count: 67, Neg. LLF: 95.71240903052681
Iteration: 7, Func. Count: 77, Neg. LLF: 95.16972798752103
Iteration: 8, Func. Count: 87, Neg. LLF: 95.09356163577446
Iteration: 9, Func. Count: 97, Neg. LLF: 95.08973476874966
Iteration: 10, Func. Count: 107, Neg. LLF: 95.08959374488927
Iteration: 11, Func. Count: 117, Neg. LLF: 95.08959403913654
Optimization terminated successfully (Exit mode 0)
Current function value: 95.08959403913654
Iterations: 11
Function evaluations: 117
Gradient evaluations: 11
Iteration: 1, Func. Count: 12, Neg. LLF: 22757139.143269245
Iteration: 2, Func. Count: 25, Neg. LLF: 2980819.7530290196
Iteration: 3, Func. Count: 37, Neg. LLF: 6463837.4680472575
Iteration: 4, Func. Count: 49, Neg. LLF: 4592737.33821847
Iteration: 5, Func. Count: 62, Neg. LLF: 101.47310809085432
Iteration: 6, Func. Count: 74, Neg. LLF: 99.93344175623464
Iteration: 7, Func. Count: 86, Neg. LLF: 98.51228325723916
Iteration: 8, Func. Count: 98, Neg. LLF: 96.82219200934371
Iteration: 9, Func. Count: 110, Neg. LLF: 95.46758526691232
Iteration: 10, Func. Count: 121, Neg. LLF: 95.58925026317168
Iteration: 11, Func. Count: 133, Neg. LLF: 95.5491710936757
Iteration: 12, Func. Count: 145, Neg. LLF: 95.34181415967676
Iteration: 13, Func. Count: 156, Neg. LLF: 98.73756775971869
Iteration: 14, Func. Count: 168, Neg. LLF: 104.35597340073168
Iteration: 15, Func. Count: 180, Neg. LLF: 95.23389651067258
Iteration: 16, Func. Count: 191, Neg. LLF: 95.33943259218893
Iteration: 17, Func. Count: 203, Neg. LLF: 98.96673075834455
Iteration: 18, Func. Count: 215, Neg. LLF: 99.14561650318468
Iteration: 19, Func. Count: 227, Neg. LLF: 98.9592157672485
Iteration: 20, Func. Count: 239, Neg. LLF: 95.05903125376928
Iteration: 21, Func. Count: 251, Neg. LLF: 98.51156409856699
Iteration: 22, Func. Count: 263, Neg. LLF: 94.87027378587835
Iteration: 23, Func. Count: 274, Neg. LLF: 94.78861004015515
Iteration: 24, Func. Count: 285, Neg. LLF: 94.72629744816308
Iteration: 25, Func. Count: 296, Neg. LLF: 94.70645302361262
Iteration: 26, Func. Count: 307, Neg. LLF: 94.70437234025975
Iteration: 27, Func. Count: 318, Neg. LLF: 94.69929201159202
Iteration: 28, Func. Count: 329, Neg. LLF: 94.6984891474462
Iteration: 29, Func. Count: 340, Neg. LLF: 94.69832229754482
Iteration: 30, Func. Count: 351, Neg. LLF: 94.69831780524271
Iteration: 31, Func. Count: 362, Neg. LLF: 94.69831650080728
Iteration: 32, Func. Count: 372, Neg. LLF: 94.69831648646314
Optimization terminated successfully (Exit mode 0)
Current function value: 94.69831650080728
Iterations: 32
Function evaluations: 372
Gradient evaluations: 32
Iteration: 1, Func. Count: 13, Neg. LLF: 3076221.2237156415
Iteration: 2, Func. Count: 26, Neg. LLF: 8479627.131638933
Iteration: 3, Func. Count: 39, Neg. LLF: 138.41513350659196
Iteration: 4, Func. Count: 52, Neg. LLF: 424.7150719327655
Iteration: 5, Func. Count: 65, Neg. LLF: 152.81820680859028
Iteration: 6, Func. Count: 78, Neg. LLF: 112.54329049731403
Iteration: 7, Func. Count: 91, Neg. LLF: 95.66334716865799
Iteration: 8, Func. Count: 104, Neg. LLF: 94.87460075781509
Iteration: 9, Func. Count: 116, Neg. LLF: 95.28102365379955
Iteration: 10, Func. Count: 129, Neg. LLF: 95.05137321113592
Iteration: 11, Func. Count: 142, Neg. LLF: 107.94145788460617
Iteration: 12, Func. Count: 156, Neg. LLF: 94.60235603909118
Iteration: 13, Func. Count: 168, Neg. LLF: 94.36920822036592
Iteration: 14, Func. Count: 180, Neg. LLF: 94.32022781330193
Iteration: 15, Func. Count: 192, Neg. LLF: 94.26564676045206
Iteration: 16, Func. Count: 204, Neg. LLF: 94.20907828299923
Iteration: 17, Func. Count: 216, Neg. LLF: 94.11878075657012
Iteration: 18, Func. Count: 228, Neg. LLF: 94.09582942605805
Iteration: 19, Func. Count: 240, Neg. LLF: 94.08552812850898
Iteration: 20, Func. Count: 252, Neg. LLF: 94.0850361421616
Iteration: 21, Func. Count: 264, Neg. LLF: 94.0844235105586
Iteration: 22, Func. Count: 276, Neg. LLF: 94.08441586684033
Iteration: 23, Func. Count: 288, Neg. LLF: 94.08441392538133
Iteration: 24, Func. Count: 299, Neg. LLF: 94.08441392539767
Optimization terminated successfully (Exit mode 0)
Current function value: 94.08441392538133
Iterations: 24
Function evaluations: 299
Gradient evaluations: 24
Iteration: 1, Func. Count: 6, Neg. LLF: 148.16786982008009
Iteration: 2, Func. Count: 14, Neg. LLF: 144.55274269329638
Iteration: 3, Func. Count: 21, Neg. LLF: 98.70116387763025
Iteration: 4, Func. Count: 26, Neg. LLF: 98.69320508621495
Iteration: 5, Func. Count: 31, Neg. LLF: 98.69318685029906
Iteration: 6, Func. Count: 36, Neg. LLF: 98.69317541369745
Iteration: 7, Func. Count: 40, Neg. LLF: 98.69317556958121
Optimization terminated successfully (Exit mode 0)
Current function value: 98.69317541369745
Iterations: 7
Function evaluations: 40
Gradient evaluations: 7
Iteration: 1, Func. Count: 7, Neg. LLF: 22356571.92963616
Iteration: 2, Func. Count: 15, Neg. LLF: 96.83957103190822
Iteration: 3, Func. Count: 21, Neg. LLF: 104.96711178541543
Iteration: 4, Func. Count: 28, Neg. LLF: 98.64591618603781
Iteration: 5, Func. Count: 35, Neg. LLF: 96.70870174197226
Iteration: 6, Func. Count: 41, Neg. LLF: 96.70869859131476
Iteration: 7, Func. Count: 47, Neg. LLF: 96.70869603128482
Iteration: 8, Func. Count: 52, Neg. LLF: 96.70869603128682
Optimization terminated successfully (Exit mode 0)
Current function value: 96.70869603128482
Iterations: 8
Function evaluations: 52
Gradient evaluations: 8
Iteration: 1, Func. Count: 8, Neg. LLF: 22358509.43502942
Iteration: 2, Func. Count: 17, Neg. LLF: 97.0912597787455
Iteration: 3, Func. Count: 24, Neg. LLF: 97.82937528571762
Iteration: 4, Func. Count: 32, Neg. LLF: 96.75413820974875
Iteration: 5, Func. Count: 39, Neg. LLF: 96.79345540167904
Iteration: 6, Func. Count: 47, Neg. LLF: 96.74278569329283
Iteration: 7, Func. Count: 54, Neg. LLF: 96.74229796327008
Iteration: 8, Func. Count: 61, Neg. LLF: 96.74022989084187
Iteration: 9, Func. Count: 68, Neg. LLF: 96.73132852688703
Iteration: 10, Func. Count: 75, Neg. LLF: 96.70870400745696
Iteration: 11, Func. Count: 82, Neg. LLF: 363043.2714261982
Iteration: 12, Func. Count: 94, Neg. LLF: 96.70876871142808
Optimization terminated successfully (Exit mode 0)
Current function value: 96.70870223460165
Iterations: 13
Function evaluations: 95
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 22354676.330179997
Iteration: 2, Func. Count: 19, Neg. LLF: 97.13245930872151
Iteration: 3, Func. Count: 27, Neg. LLF: 97.04586313611775
Iteration: 4, Func. Count: 35, Neg. LLF: 96.97370769014523
Iteration: 5, Func. Count: 43, Neg. LLF: 96.79316637720616
Iteration: 6, Func. Count: 51, Neg. LLF: 96.76588708850419
Iteration: 7, Func. Count: 59, Neg. LLF: 96.76399784802952
Iteration: 8, Func. Count: 67, Neg. LLF: 96.76375903074906
Iteration: 9, Func. Count: 75, Neg. LLF: 96.76334333897466
Iteration: 10, Func. Count: 83, Neg. LLF: 96.76295234820702
Iteration: 11, Func. Count: 91, Neg. LLF: 96.76125258763807
Iteration: 12, Func. Count: 99, Neg. LLF: 96.74837530842588
Iteration: 13, Func. Count: 107, Neg. LLF: 96.74583188484237
Iteration: 14, Func. Count: 115, Neg. LLF: 96.74282905074048
Iteration: 15, Func. Count: 123, Neg. LLF: 96.74127743761689
Iteration: 16, Func. Count: 131, Neg. LLF: 96.73619658581728
Iteration: 17, Func. Count: 139, Neg. LLF: 96.71472970141919
Iteration: 18, Func. Count: 147, Neg. LLF: 270.92584970118924
Iteration: 19, Func. Count: 159, Neg. LLF: 99.26938513628802
Iteration: 20, Func. Count: 170, Neg. LLF: 96.71238226250586
Iteration: 21, Func. Count: 178, Neg. LLF: 96.70873936212521
Iteration: 22, Func. Count: 186, Neg. LLF: 96.70869603917367
Iteration: 23, Func. Count: 193, Neg. LLF: 96.70869604304711
Optimization terminated successfully (Exit mode 0)
Current function value: 96.70869603917367
Iterations: 24
Function evaluations: 193
Gradient evaluations: 23
Iteration: 1, Func. Count: 10, Neg. LLF: 22351791.932815246
Iteration: 2, Func. Count: 21, Neg. LLF: 97.19650799134416
Iteration: 3, Func. Count: 30, Neg. LLF: 96.7678930489339
Iteration: 4, Func. Count: 39, Neg. LLF: 96.77022897150718
Iteration: 5, Func. Count: 49, Neg. LLF: 96.72616481196452
Iteration: 6, Func. Count: 58, Neg. LLF: 96.72120213391476
Iteration: 7, Func. Count: 67, Neg. LLF: 96.7186652782967
Iteration: 8, Func. Count: 76, Neg. LLF: 96.71865048994958
Iteration: 9, Func. Count: 84, Neg. LLF: 96.71865048994171
Optimization terminated successfully (Exit mode 0)
Current function value: 96.71865048994958
Iterations: 9
Function evaluations: 84
Gradient evaluations: 9
Iteration: 1, Func. Count: 7, Neg. LLF: 148.44045728945326
Iteration: 2, Func. Count: 16, Neg. LLF: 168.97729881179893
Iteration: 3, Func. Count: 23, Neg. LLF: 98.54016690427562
Iteration: 4, Func. Count: 29, Neg. LLF: 100.22910445317922
Iteration: 5, Func. Count: 37, Neg. LLF: 99.52229819156436
Iteration: 6, Func. Count: 44, Neg. LLF: 97.97936891055593
Iteration: 7, Func. Count: 50, Neg. LLF: 97.91124568033658
Iteration: 8, Func. Count: 56, Neg. LLF: 97.89560365412723
Iteration: 9, Func. Count: 62, Neg. LLF: 97.88428900384854
Iteration: 10, Func. Count: 68, Neg. LLF: 97.8834385294313
Iteration: 11, Func. Count: 74, Neg. LLF: 97.88342008882572
Iteration: 12, Func. Count: 79, Neg. LLF: 97.88342008865739
Optimization terminated successfully (Exit mode 0)
Current function value: 97.88342008882572
Iterations: 12
Function evaluations: 79
Gradient evaluations: 12
Iteration: 1, Func. Count: 8, Neg. LLF: 232.82146464555152
Iteration: 2, Func. Count: 17, Neg. LLF: 100.60648326999798
Iteration: 3, Func. Count: 25, Neg. LLF: 98.21267398058174
Iteration: 4, Func. Count: 32, Neg. LLF: 97.6657741869297
Iteration: 5, Func. Count: 39, Neg. LLF: 110.7939850706936
Iteration: 6, Func. Count: 47, Neg. LLF: 97.49058017426916
Iteration: 7, Func. Count: 54, Neg. LLF: 97.47505836053114
Iteration: 8, Func. Count: 61, Neg. LLF: 97.46365492097361
Iteration: 9, Func. Count: 68, Neg. LLF: 97.46219424640965
Iteration: 10, Func. Count: 75, Neg. LLF: 97.4602907380703
Iteration: 11, Func. Count: 82, Neg. LLF: 97.46026499859319
Iteration: 12, Func. Count: 88, Neg. LLF: 97.46026489835006
Optimization terminated successfully (Exit mode 0)
Current function value: 97.46026499859319
Iterations: 12
Function evaluations: 88
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 22721521.670903187
Iteration: 2, Func. Count: 19, Neg. LLF: 96.73149119577064
Iteration: 3, Func. Count: 27, Neg. LLF: 100.77364543355426
Iteration: 4, Func. Count: 36, Neg. LLF: 96.00226325325676
Iteration: 5, Func. Count: 44, Neg. LLF: 96.90528553471438
Iteration: 6, Func. Count: 53, Neg. LLF: 95.23538691262786
Iteration: 7, Func. Count: 61, Neg. LLF: 95.16533600072653
Iteration: 8, Func. Count: 69, Neg. LLF: 95.09913143803018
Iteration: 9, Func. Count: 77, Neg. LLF: 95.09081034812095
Iteration: 10, Func. Count: 85, Neg. LLF: 95.08960077636674
Iteration: 11, Func. Count: 93, Neg. LLF: 95.08959275055159
Iteration: 12, Func. Count: 101, Neg. LLF: 95.0896972502334
Optimization terminated successfully (Exit mode 0)
Current function value: 95.08959268152081
Iterations: 13
Function evaluations: 103
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 22786449.764692333
Iteration: 2, Func. Count: 21, Neg. LLF: 100.25193206235294
Iteration: 3, Func. Count: 31, Neg. LLF: 135.2549242546297
Iteration: 4, Func. Count: 41, Neg. LLF: 97.9992781529005
Iteration: 5, Func. Count: 51, Neg. LLF: 96.33960075895118
Iteration: 6, Func. Count: 60, Neg. LLF: 99.81516482419285
Iteration: 7, Func. Count: 70, Neg. LLF: 100.90230099982276
Iteration: 8, Func. Count: 81, Neg. LLF: 95.0805445562367
Iteration: 9, Func. Count: 90, Neg. LLF: 95.08662463857104
Iteration: 10, Func. Count: 100, Neg. LLF: 95.01811540511333
Iteration: 11, Func. Count: 109, Neg. LLF: 95.01386513230325
Iteration: 12, Func. Count: 118, Neg. LLF: 95.01382014497139
Iteration: 13, Func. Count: 127, Neg. LLF: 95.01381872513525
Iteration: 14, Func. Count: 135, Neg. LLF: 95.01381872528768
Optimization terminated successfully (Exit mode 0)
Current function value: 95.01381872513525
Iterations: 14
Function evaluations: 135
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 22800333.171757184
Iteration: 2, Func. Count: 23, Neg. LLF: 97.62713918235421
Iteration: 3, Func. Count: 33, Neg. LLF: 99.3816913763122
Iteration: 4, Func. Count: 44, Neg. LLF: 99.32811078768637
Iteration: 5, Func. Count: 55, Neg. LLF: 95.21060000334012
Iteration: 6, Func. Count: 65, Neg. LLF: 96.69960716982298
Iteration: 7, Func. Count: 76, Neg. LLF: 95.12796778906862
Iteration: 8, Func. Count: 86, Neg. LLF: 95.12106904405667
Iteration: 9, Func. Count: 96, Neg. LLF: 95.11137619389879
Iteration: 10, Func. Count: 106, Neg. LLF: 95.10014487749075
Iteration: 11, Func. Count: 116, Neg. LLF: 95.09183163342178
Iteration: 12, Func. Count: 126, Neg. LLF: 95.08969627393205
Iteration: 13, Func. Count: 136, Neg. LLF: 95.08959368583427
Iteration: 14, Func. Count: 146, Neg. LLF: 95.0895825135648
Iteration: 15, Func. Count: 156, Neg. LLF: 95.08958815097488
Iteration: 16, Func. Count: 176, Neg. LLF: 95.08958835676845
Iteration: 17, Func. Count: 196, Neg. LLF: 95.08957834704448
Iteration: 18, Func. Count: 216, Neg. LLF: 95.08962388613216
Iteration: 19, Func. Count: 228, Neg. LLF: 95.08959347914809
Iteration: 20, Func. Count: 239, Neg. LLF: 95.08959333559552
Iteration: 21, Func. Count: 248, Neg. LLF: 95.08959327581194
Optimization terminated successfully (Exit mode 0)
Current function value: 95.08959333559552
Iterations: 22
Function evaluations: 248
Gradient evaluations: 21
Iteration: 1, Func. Count: 8, Neg. LLF: 148.84941960776192
Iteration: 2, Func. Count: 18, Neg. LLF: 168.267027715754
Iteration: 3, Func. Count: 26, Neg. LLF: 98.59246518534715
Iteration: 4, Func. Count: 33, Neg. LLF: 100.31365202154765
Iteration: 5, Func. Count: 42, Neg. LLF: 99.5587132422749
Iteration: 6, Func. Count: 50, Neg. LLF: 97.98710089263724
Iteration: 7, Func. Count: 57, Neg. LLF: 97.91203078323689
Iteration: 8, Func. Count: 64, Neg. LLF: 97.89564557871432
Iteration: 9, Func. Count: 71, Neg. LLF: 97.88456052671005
Iteration: 10, Func. Count: 78, Neg. LLF: 97.88346402723823
Iteration: 11, Func. Count: 85, Neg. LLF: 97.88342001247095
Iteration: 12, Func. Count: 91, Neg. LLF: 97.88341996115322
Optimization terminated successfully (Exit mode 0)
Current function value: 97.88342001247095
Iterations: 12
Function evaluations: 91
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 337.0746151009815
Iteration: 2, Func. Count: 19, Neg. LLF: 100.93361592931778
Iteration: 3, Func. Count: 28, Neg. LLF: 98.27331212973483
Iteration: 4, Func. Count: 36, Neg. LLF: 97.69654038613606
Iteration: 5, Func. Count: 44, Neg. LLF: 125.91377125737323
Iteration: 6, Func. Count: 54, Neg. LLF: 97.75067007409973
Iteration: 7, Func. Count: 63, Neg. LLF: 97.47717486773945
Iteration: 8, Func. Count: 71, Neg. LLF: 97.51055787775144
Iteration: 9, Func. Count: 80, Neg. LLF: 97.46077620388436
Iteration: 10, Func. Count: 88, Neg. LLF: 97.46022383182421
Iteration: 11, Func. Count: 96, Neg. LLF: 97.46013375851864
Iteration: 12, Func. Count: 104, Neg. LLF: 97.45976174748542
Iteration: 13, Func. Count: 112, Neg. LLF: 97.45972999156557
Iteration: 14, Func. Count: 120, Neg. LLF: 97.45972615587155
Iteration: 15, Func. Count: 127, Neg. LLF: 97.45972605706645
Optimization terminated successfully (Exit mode 0)
Current function value: 97.45972615587155
Iterations: 15
Function evaluations: 127
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 22690749.33140496
Iteration: 2, Func. Count: 21, Neg. LLF: 97.00365166725506
Iteration: 3, Func. Count: 30, Neg. LLF: 101.05589270139865
Iteration: 4, Func. Count: 40, Neg. LLF: 96.38810476141303
Iteration: 5, Func. Count: 49, Neg. LLF: 95.53669081246842
Iteration: 6, Func. Count: 58, Neg. LLF: 95.13082034167451
Iteration: 7, Func. Count: 67, Neg. LLF: 95.09529013645427
Iteration: 8, Func. Count: 76, Neg. LLF: 95.08971544766749
Iteration: 9, Func. Count: 85, Neg. LLF: 95.08959670630702
Iteration: 10, Func. Count: 94, Neg. LLF: 95.08959331097572
Iteration: 11, Func. Count: 102, Neg. LLF: 95.08959325027615
Optimization terminated successfully (Exit mode 0)
Current function value: 95.08959331097572
Iterations: 11
Function evaluations: 102
Gradient evaluations: 11
Iteration: 1, Func. Count: 11, Neg. LLF: 22732929.769460246
Iteration: 2, Func. Count: 23, Neg. LLF: 100.7980080219685
Iteration: 3, Func. Count: 34, Neg. LLF: 110.49245422911763
Iteration: 4, Func. Count: 45, Neg. LLF: 98.90652817541279
Iteration: 5, Func. Count: 56, Neg. LLF: 97.69360266968545
Iteration: 6, Func. Count: 67, Neg. LLF: 96.89306088485891
Iteration: 7, Func. Count: 78, Neg. LLF: 95.441972555202
Iteration: 8, Func. Count: 88, Neg. LLF: 98.83062766217377
Iteration: 9, Func. Count: 99, Neg. LLF: 98.14890404875563
Iteration: 10, Func. Count: 111, Neg. LLF: 95.07563899908202
Iteration: 11, Func. Count: 121, Neg. LLF: 95.02260413177493
Iteration: 12, Func. Count: 131, Neg. LLF: 95.0140980752933
Iteration: 13, Func. Count: 141, Neg. LLF: 95.0138374933437
Iteration: 14, Func. Count: 151, Neg. LLF: 95.01381945025017
Iteration: 15, Func. Count: 161, Neg. LLF: 95.01381869291257
Optimization terminated successfully (Exit mode 0)
Current function value: 95.01381869291257
Iterations: 15
Function evaluations: 161
Gradient evaluations: 15
Iteration: 1, Func. Count: 12, Neg. LLF: 22760508.545609538
Iteration: 2, Func. Count: 25, Neg. LLF: 98.0835027944286
Iteration: 3, Func. Count: 37, Neg. LLF: 101.1561695824541
Iteration: 4, Func. Count: 49, Neg. LLF: 96.16060278870057
Iteration: 5, Func. Count: 60, Neg. LLF: 95.96182839759541
Iteration: 6, Func. Count: 71, Neg. LLF: 101.92101132507783
Iteration: 7, Func. Count: 85, Neg. LLF: 95.52722542819959
Iteration: 8, Func. Count: 96, Neg. LLF: 95.12929980906533
Iteration: 9, Func. Count: 107, Neg. LLF: 95.10067399553509
Iteration: 10, Func. Count: 118, Neg. LLF: 95.096047398593
Iteration: 11, Func. Count: 129, Neg. LLF: 95.0949758591858
Iteration: 12, Func. Count: 140, Neg. LLF: 95.09049508261668
Iteration: 13, Func. Count: 151, Neg. LLF: 95.08961975343615
Iteration: 14, Func. Count: 162, Neg. LLF: 95.08959349694403
Iteration: 15, Func. Count: 173, Neg. LLF: 95.08959241959492
Iteration: 16, Func. Count: 184, Neg. LLF: 95.08959822666962
Optimization terminated successfully (Exit mode 0)
Current function value: 95.08959244340765
Iterations: 17
Function evaluations: 186
Gradient evaluations: 16
Iteration: 1, Func. Count: 9, Neg. LLF: 113.78895732432636
Iteration: 2, Func. Count: 19, Neg. LLF: 49527.83865631357
Iteration: 3, Func. Count: 28, Neg. LLF: 9193906.515703278
Iteration: 4, Func. Count: 37, Neg. LLF: 99.14096052937194
Iteration: 5, Func. Count: 46, Neg. LLF: 95.95200946930392
Iteration: 6, Func. Count: 54, Neg. LLF: 95.93765764157894
Iteration: 7, Func. Count: 63, Neg. LLF: 96.81657624385716
Iteration: 8, Func. Count: 73, Neg. LLF: 95.89916665424617
Iteration: 9, Func. Count: 81, Neg. LLF: 95.88878385981042
Iteration: 10, Func. Count: 89, Neg. LLF: 95.87895667861815
Iteration: 11, Func. Count: 97, Neg. LLF: 95.87472813445105
Iteration: 12, Func. Count: 105, Neg. LLF: 95.87423602388859
Iteration: 13, Func. Count: 113, Neg. LLF: 95.87421403835037
Iteration: 14, Func. Count: 120, Neg. LLF: 95.87421403834756
Optimization terminated successfully (Exit mode 0)
Current function value: 95.87421403835037
Iterations: 14
Function evaluations: 120
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 645.6551156436817
Iteration: 2, Func. Count: 20, Neg. LLF: 7429874.047645174
Iteration: 3, Func. Count: 30, Neg. LLF: 146.74101610763563
Iteration: 4, Func. Count: 41, Neg. LLF: 106.03786613784605
Iteration: 5, Func. Count: 51, Neg. LLF: 96.69905584259895
Iteration: 6, Func. Count: 60, Neg. LLF: 96.6154116575002
Iteration: 7, Func. Count: 69, Neg. LLF: 96.91610519095639
Iteration: 8, Func. Count: 80, Neg. LLF: 96.3086343713622
Iteration: 9, Func. Count: 89, Neg. LLF: 96.11748839443257
Iteration: 10, Func. Count: 98, Neg. LLF: 96.40968447953168
Iteration: 11, Func. Count: 108, Neg. LLF: 96.04142819990241
Iteration: 12, Func. Count: 118, Neg. LLF: 95.90655046392774
Iteration: 13, Func. Count: 127, Neg. LLF: 95.87917644722509
Iteration: 14, Func. Count: 136, Neg. LLF: 95.87603696238777
Iteration: 15, Func. Count: 145, Neg. LLF: 95.87433128400617
Iteration: 16, Func. Count: 154, Neg. LLF: 95.87421720382908
Iteration: 17, Func. Count: 163, Neg. LLF: 95.87421401626693
Iteration: 18, Func. Count: 171, Neg. LLF: 95.87421405063918
Optimization terminated successfully (Exit mode 0)
Current function value: 95.87421401626693
Iterations: 18
Function evaluations: 171
Gradient evaluations: 18
Iteration: 1, Func. Count: 11, Neg. LLF: 22597600.05708449
Iteration: 2, Func. Count: 23, Neg. LLF: 97.21374478757446
Iteration: 3, Func. Count: 33, Neg. LLF: 99.4152645918703
Iteration: 4, Func. Count: 44, Neg. LLF: 99.08218614303162
Iteration: 5, Func. Count: 55, Neg. LLF: 95.73223269968258
Iteration: 6, Func. Count: 65, Neg. LLF: 95.13486870423696
Iteration: 7, Func. Count: 75, Neg. LLF: 95.09519539982598
Iteration: 8, Func. Count: 85, Neg. LLF: 95.08978988549742
Iteration: 9, Func. Count: 95, Neg. LLF: 95.08959426610988
Iteration: 10, Func. Count: 105, Neg. LLF: 95.0895933875344
Optimization terminated successfully (Exit mode 0)
Current function value: 95.0895933875344
Iterations: 10
Function evaluations: 105
Gradient evaluations: 10
Iteration: 1, Func. Count: 12, Neg. LLF: 22624305.41790589
Iteration: 2, Func. Count: 25, Neg. LLF: 3077046.850503682
Iteration: 3, Func. Count: 37, Neg. LLF: 6347934.409510081
Iteration: 4, Func. Count: 49, Neg. LLF: 3653793.397881233
Iteration: 5, Func. Count: 62, Neg. LLF: 102.24653378964086
Iteration: 6, Func. Count: 74, Neg. LLF: 100.22358605024901
Iteration: 7, Func. Count: 86, Neg. LLF: 98.73224055122674
Iteration: 8, Func. Count: 98, Neg. LLF: 97.73650828852287
Iteration: 9, Func. Count: 110, Neg. LLF: 95.54452918634706
Iteration: 10, Func. Count: 121, Neg. LLF: 95.84066629869237
Iteration: 11, Func. Count: 133, Neg. LLF: 96.8383466087374
Iteration: 12, Func. Count: 145, Neg. LLF: 95.45502067716063
Iteration: 13, Func. Count: 157, Neg. LLF: 95.45051440307208
Iteration: 14, Func. Count: 169, Neg. LLF: 95.3273380164917
Iteration: 15, Func. Count: 180, Neg. LLF: 95.28471741142398
Iteration: 16, Func. Count: 191, Neg. LLF: 95.53784618623204
Iteration: 17, Func. Count: 203, Neg. LLF: 99.3761886774161
Iteration: 18, Func. Count: 215, Neg. LLF: 95.06143144221602
Iteration: 19, Func. Count: 226, Neg. LLF: 94.89275812946772
Iteration: 20, Func. Count: 237, Neg. LLF: 97.29912419416999
Iteration: 21, Func. Count: 249, Neg. LLF: 94.7757662108907
Iteration: 22, Func. Count: 260, Neg. LLF: 94.71992080781263
Iteration: 23, Func. Count: 271, Neg. LLF: 94.7054083141975
Iteration: 24, Func. Count: 282, Neg. LLF: 94.70161046053798
Iteration: 25, Func. Count: 293, Neg. LLF: 94.69907406351527
Iteration: 26, Func. Count: 304, Neg. LLF: 94.6985441665995
Iteration: 27, Func. Count: 315, Neg. LLF: 94.6983492965479
Iteration: 28, Func. Count: 326, Neg. LLF: 94.69832100934309
Iteration: 29, Func. Count: 337, Neg. LLF: 94.69831677195556
Iteration: 30, Func. Count: 347, Neg. LLF: 94.69831675768083
Optimization terminated successfully (Exit mode 0)
Current function value: 94.69831677195556
Iterations: 30
Function evaluations: 347
Gradient evaluations: 30
Iteration: 1, Func. Count: 13, Neg. LLF: 22631078.743009355
Iteration: 2, Func. Count: 27, Neg. LLF: 3249671.5575173623
Iteration: 3, Func. Count: 40, Neg. LLF: 4525891.417584838
Iteration: 4, Func. Count: 53, Neg. LLF: 3783761.4522592393
Iteration: 5, Func. Count: 67, Neg. LLF: 154.40963653847385
Iteration: 6, Func. Count: 80, Neg. LLF: 102.15496295719721
Iteration: 7, Func. Count: 93, Neg. LLF: 94.95264428128287
Iteration: 8, Func. Count: 105, Neg. LLF: 102.90920207195572
Iteration: 9, Func. Count: 119, Neg. LLF: 95.13710843307899
Iteration: 10, Func. Count: 132, Neg. LLF: 100.30567583547737
Iteration: 11, Func. Count: 147, Neg. LLF: 94.40187133199765
Iteration: 12, Func. Count: 160, Neg. LLF: 94.13485617547049
Iteration: 13, Func. Count: 172, Neg. LLF: 94.10572294151409
Iteration: 14, Func. Count: 184, Neg. LLF: 94.09870002414992
Iteration: 15, Func. Count: 196, Neg. LLF: 94.09166219433502
Iteration: 16, Func. Count: 208, Neg. LLF: 94.11544149650891
Iteration: 17, Func. Count: 221, Neg. LLF: 94.10758185932787
Iteration: 18, Func. Count: 234, Neg. LLF: 94.08472746098751
Iteration: 19, Func. Count: 246, Neg. LLF: 94.0845952080731
Iteration: 20, Func. Count: 258, Neg. LLF: 94.08444987947757
Iteration: 21, Func. Count: 270, Neg. LLF: 94.08441756080138
Iteration: 22, Func. Count: 282, Neg. LLF: 94.08441388537659
Iteration: 23, Func. Count: 293, Neg. LLF: 94.08441388541628
Optimization terminated successfully (Exit mode 0)
Current function value: 94.08441388537659
Iterations: 23
Function evaluations: 293
Gradient evaluations: 23
Iteration: 1, Func. Count: 10, Neg. LLF: 113.54009057616949
Iteration: 2, Func. Count: 21, Neg. LLF: 2045786.3245981543
Iteration: 3, Func. Count: 31, Neg. LLF: 9174686.536786288
Iteration: 4, Func. Count: 41, Neg. LLF: 104.50479308046963
Iteration: 5, Func. Count: 51, Neg. LLF: 96.31911500102106
Iteration: 6, Func. Count: 60, Neg. LLF: 96.01158613279544
Iteration: 7, Func. Count: 69, Neg. LLF: 96.19643845515255
Iteration: 8, Func. Count: 80, Neg. LLF: 97.73171519104486
Iteration: 9, Func. Count: 90, Neg. LLF: 95.88980055047276
Iteration: 10, Func. Count: 99, Neg. LLF: 95.8857938722246
Iteration: 11, Func. Count: 108, Neg. LLF: 95.88104307288285
Iteration: 12, Func. Count: 117, Neg. LLF: 95.87570265528156
Iteration: 13, Func. Count: 126, Neg. LLF: 95.87433514894069
Iteration: 14, Func. Count: 135, Neg. LLF: 95.87421801605312
Iteration: 15, Func. Count: 144, Neg. LLF: 95.87421406851728
Iteration: 16, Func. Count: 152, Neg. LLF: 95.87421411716007
Optimization terminated successfully (Exit mode 0)
Current function value: 95.87421406851728
Iterations: 16
Function evaluations: 152
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 329.71728071147487
Iteration: 2, Func. Count: 22, Neg. LLF: 6388935.222192282
Iteration: 3, Func. Count: 33, Neg. LLF: 438.927630803408
Iteration: 4, Func. Count: 45, Neg. LLF: 103.03824551015158
Iteration: 5, Func. Count: 56, Neg. LLF: 96.79964425832047
Iteration: 6, Func. Count: 66, Neg. LLF: 96.62161254779514
Iteration: 7, Func. Count: 76, Neg. LLF: 96.60404904215062
Iteration: 8, Func. Count: 86, Neg. LLF: 96.44702991160354
Iteration: 9, Func. Count: 96, Neg. LLF: 96.16825580800737
Iteration: 10, Func. Count: 106, Neg. LLF: 95.9107541113602
Iteration: 11, Func. Count: 116, Neg. LLF: 95.87592486251421
Iteration: 12, Func. Count: 126, Neg. LLF: 95.87442404768608
Iteration: 13, Func. Count: 136, Neg. LLF: 95.874271180641
Iteration: 14, Func. Count: 146, Neg. LLF: 95.87421778296222
Iteration: 15, Func. Count: 156, Neg. LLF: 95.87421531928135
Iteration: 16, Func. Count: 166, Neg. LLF: 95.87421399393368
Iteration: 17, Func. Count: 175, Neg. LLF: 95.87421402828907
Optimization terminated successfully (Exit mode 0)
Current function value: 95.87421399393368
Iterations: 17
Function evaluations: 175
Gradient evaluations: 17
Iteration: 1, Func. Count: 12, Neg. LLF: 22650672.547335003
Iteration: 2, Func. Count: 25, Neg. LLF: 96.87782735530962
Iteration: 3, Func. Count: 36, Neg. LLF: 99.84191104619914
Iteration: 4, Func. Count: 48, Neg. LLF: 101.20476493958321
Iteration: 5, Func. Count: 60, Neg. LLF: 100.5707355995323
Iteration: 6, Func. Count: 73, Neg. LLF: 95.89957392897665
Iteration: 7, Func. Count: 84, Neg. LLF: 95.21651377782689
Iteration: 8, Func. Count: 95, Neg. LLF: 95.11368276698354
Iteration: 9, Func. Count: 106, Neg. LLF: 95.08972601188115
Iteration: 10, Func. Count: 117, Neg. LLF: 95.08959370791605
Iteration: 11, Func. Count: 127, Neg. LLF: 95.08959364748482
Optimization terminated successfully (Exit mode 0)
Current function value: 95.08959370791605
Iterations: 11
Function evaluations: 127
Gradient evaluations: 11
Iteration: 1, Func. Count: 13, Neg. LLF: 22642268.916767288
Iteration: 2, Func. Count: 27, Neg. LLF: 3059228.828311822
Iteration: 3, Func. Count: 40, Neg. LLF: 6395769.356853711
Iteration: 4, Func. Count: 53, Neg. LLF: 4983027.660675741
Iteration: 5, Func. Count: 67, Neg. LLF: 102.28017805481011
Iteration: 6, Func. Count: 80, Neg. LLF: 100.1952972655192
Iteration: 7, Func. Count: 93, Neg. LLF: 98.72036486635464
Iteration: 8, Func. Count: 106, Neg. LLF: 97.72195509503416
Iteration: 9, Func. Count: 119, Neg. LLF: 95.54273236047766
Iteration: 10, Func. Count: 131, Neg. LLF: 95.93361105934989
Iteration: 11, Func. Count: 144, Neg. LLF: 96.79709270320207
Iteration: 12, Func. Count: 157, Neg. LLF: 95.44108897551807
Iteration: 13, Func. Count: 170, Neg. LLF: 95.41105185593558
Iteration: 14, Func. Count: 183, Neg. LLF: 95.31833790908784
Iteration: 15, Func. Count: 195, Neg. LLF: 95.28498041846176
Iteration: 16, Func. Count: 207, Neg. LLF: 95.62238083324289
Iteration: 17, Func. Count: 220, Neg. LLF: 98.88185710935431
Iteration: 18, Func. Count: 233, Neg. LLF: 95.33451727799776
Iteration: 19, Func. Count: 246, Neg. LLF: 98.03238829506293
Iteration: 20, Func. Count: 259, Neg. LLF: 100.18017622425171
Iteration: 21, Func. Count: 272, Neg. LLF: 97.90975305391801
Iteration: 22, Func. Count: 285, Neg. LLF: 95.15734338443676
Iteration: 23, Func. Count: 298, Neg. LLF: 94.87728323059876
Iteration: 24, Func. Count: 310, Neg. LLF: 94.80601596239165
Iteration: 25, Func. Count: 322, Neg. LLF: 94.74166387700403
Iteration: 26, Func. Count: 334, Neg. LLF: 94.7007209325424
Iteration: 27, Func. Count: 346, Neg. LLF: 94.69950010515774
Iteration: 28, Func. Count: 358, Neg. LLF: 94.69895222461774
Iteration: 29, Func. Count: 370, Neg. LLF: 94.69850036299262
Iteration: 30, Func. Count: 382, Neg. LLF: 94.69839078475138
Iteration: 31, Func. Count: 394, Neg. LLF: 94.6983307829205
Iteration: 32, Func. Count: 406, Neg. LLF: 94.69831800002095
Iteration: 33, Func. Count: 418, Neg. LLF: 94.69831643281272
Iteration: 34, Func. Count: 429, Neg. LLF: 94.6983164184285
Optimization terminated successfully (Exit mode 0)
Current function value: 94.69831643281272
Iterations: 34
Function evaluations: 429
Gradient evaluations: 34
Iteration: 1, Func. Count: 14, Neg. LLF: 22632083.887406964
Iteration: 2, Func. Count: 29, Neg. LLF: 3242179.464294807
Iteration: 3, Func. Count: 43, Neg. LLF: 4998337.3743959265
Iteration: 4, Func. Count: 57, Neg. LLF: 3828417.3305110466
Iteration: 5, Func. Count: 72, Neg. LLF: 168.27302675869012
Iteration: 6, Func. Count: 86, Neg. LLF: 102.12590056418408
Iteration: 7, Func. Count: 100, Neg. LLF: 94.95096683386937
Iteration: 8, Func. Count: 113, Neg. LLF: 101.95114148060459
Iteration: 9, Func. Count: 128, Neg. LLF: 95.09038090726047
Iteration: 10, Func. Count: 142, Neg. LLF: 100.40719793297983
Iteration: 11, Func. Count: 158, Neg. LLF: 94.31641267636314
Iteration: 12, Func. Count: 171, Neg. LLF: 94.12699874234941
Iteration: 13, Func. Count: 184, Neg. LLF: 94.14566347366346
Iteration: 14, Func. Count: 198, Neg. LLF: 94.09686379851694
Iteration: 15, Func. Count: 211, Neg. LLF: 94.09075120753116
Iteration: 16, Func. Count: 224, Neg. LLF: 94.2269350609847
Iteration: 17, Func. Count: 239, Neg. LLF: 94.09118448651968
Iteration: 18, Func. Count: 253, Neg. LLF: 94.08467374865208
Iteration: 19, Func. Count: 266, Neg. LLF: 94.08455652597021
Iteration: 20, Func. Count: 279, Neg. LLF: 94.08442099197217
Iteration: 21, Func. Count: 292, Neg. LLF: 94.08441421629716
Iteration: 22, Func. Count: 304, Neg. LLF: 94.0844142162019
Optimization terminated successfully (Exit mode 0)
Current function value: 94.08441421629716
Iterations: 22
Function evaluations: 304
Gradient evaluations: 22
Iteration: 1, Func. Count: 7, Neg. LLF: 113.67771734392404
Iteration: 2, Func. Count: 15, Neg. LLF: 947.6076584036782
Iteration: 3, Func. Count: 22, Neg. LLF: 4149.996838467451
Iteration: 4, Func. Count: 29, Neg. LLF: 1197.9623708574998
Iteration: 5, Func. Count: 36, Neg. LLF: 103.47340544223056
Iteration: 6, Func. Count: 43, Neg. LLF: 96.34411979967166
Iteration: 7, Func. Count: 49, Neg. LLF: 95.94539318221561
Iteration: 8, Func. Count: 55, Neg. LLF: 95.87857993540047
Iteration: 9, Func. Count: 61, Neg. LLF: 95.86062709900665
Iteration: 10, Func. Count: 67, Neg. LLF: 95.85679117088664
Iteration: 11, Func. Count: 73, Neg. LLF: 95.85441810523506
Iteration: 12, Func. Count: 79, Neg. LLF: 95.853601287198
Iteration: 13, Func. Count: 85, Neg. LLF: 95.85356855021695
Iteration: 14, Func. Count: 91, Neg. LLF: 95.85356739636578
Iteration: 15, Func. Count: 96, Neg. LLF: 95.85356739636423
Optimization terminated successfully (Exit mode 0)
Current function value: 95.85356739636578
Iterations: 15
Function evaluations: 96
Gradient evaluations: 15
Iteration: 1, Func. Count: 8, Neg. LLF: 1646.274150102309
Iteration: 2, Func. Count: 16, Neg. LLF: 2660.3851639605537
Iteration: 3, Func. Count: 24, Neg. LLF: 97.90413672677504
Iteration: 4, Func. Count: 33, Neg. LLF: 96.76186928150511
Iteration: 5, Func. Count: 41, Neg. LLF: 96.91044127566074
Iteration: 6, Func. Count: 49, Neg. LLF: 95.9632673647694
Iteration: 7, Func. Count: 57, Neg. LLF: 95.18898718482573
Iteration: 8, Func. Count: 64, Neg. LLF: 95.18711795056194
Iteration: 9, Func. Count: 71, Neg. LLF: 95.18676838659974
Iteration: 10, Func. Count: 78, Neg. LLF: 95.18667253395915
Iteration: 11, Func. Count: 84, Neg. LLF: 95.18667253400875
Optimization terminated successfully (Exit mode 0)
Current function value: 95.18667253395915
Iterations: 11
Function evaluations: 84
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 1213914.5931893094
Iteration: 2, Func. Count: 18, Neg. LLF: 811.0823895602796
Iteration: 3, Func. Count: 27, Neg. LLF: 14852.326398688456
Iteration: 4, Func. Count: 36, Neg. LLF: 144.72793613384673
Iteration: 5, Func. Count: 45, Neg. LLF: 95.13427065140873
Iteration: 6, Func. Count: 53, Neg. LLF: 96.10212001383601
Iteration: 7, Func. Count: 62, Neg. LLF: 94.61960223433202
Iteration: 8, Func. Count: 71, Neg. LLF: 94.5653021891889
Iteration: 9, Func. Count: 79, Neg. LLF: 94.56318780833303
Iteration: 10, Func. Count: 87, Neg. LLF: 94.56301904932899
Iteration: 11, Func. Count: 95, Neg. LLF: 94.56301547748801
Iteration: 12, Func. Count: 102, Neg. LLF: 94.56301546666282
Optimization terminated successfully (Exit mode 0)
Current function value: 94.56301547748801
Iterations: 12
Function evaluations: 102
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 22391798.793962967
Iteration: 2, Func. Count: 21, Neg. LLF: 1867.2508706040937
Iteration: 3, Func. Count: 31, Neg. LLF: 2673.1968094570634
Iteration: 4, Func. Count: 41, Neg. LLF: 3841.9477494425028
Iteration: 5, Func. Count: 51, Neg. LLF: 152.8538199955599
Iteration: 6, Func. Count: 61, Neg. LLF: 478.44735228021966
Iteration: 7, Func. Count: 71, Neg. LLF: 94.22074003361028
Iteration: 8, Func. Count: 80, Neg. LLF: 95.95772061629458
Iteration: 9, Func. Count: 90, Neg. LLF: 94.85213045094498
Iteration: 10, Func. Count: 101, Neg. LLF: 94.0788474622782
Iteration: 11, Func. Count: 110, Neg. LLF: 94.06566870770871
Iteration: 12, Func. Count: 119, Neg. LLF: 94.06089067724137
Iteration: 13, Func. Count: 128, Neg. LLF: 94.04706417689654
Iteration: 14, Func. Count: 137, Neg. LLF: 94.0231173385425
Iteration: 15, Func. Count: 146, Neg. LLF: 93.99661993840431
Iteration: 16, Func. Count: 155, Neg. LLF: 93.98532507592175
Iteration: 17, Func. Count: 164, Neg. LLF: 93.98354291552918
Iteration: 18, Func. Count: 173, Neg. LLF: 93.98341644084542
Iteration: 19, Func. Count: 182, Neg. LLF: 93.98340914493556
Iteration: 20, Func. Count: 190, Neg. LLF: 93.98340914497822
Optimization terminated successfully (Exit mode 0)
Current function value: 93.98340914493556
Iterations: 20
Function evaluations: 190
Gradient evaluations: 20
Iteration: 1, Func. Count: 11, Neg. LLF: 22386453.60748305
Iteration: 2, Func. Count: 23, Neg. LLF: 3410.7117892999295
Iteration: 3, Func. Count: 34, Neg. LLF: 106104.43744209515
Iteration: 4, Func. Count: 45, Neg. LLF: 1663.9391013912432
Iteration: 5, Func. Count: 56, Neg. LLF: 106.68292827983075
Iteration: 6, Func. Count: 67, Neg. LLF: 288.3042943511572
Iteration: 7, Func. Count: 78, Neg. LLF: 100.38045885868277
Iteration: 8, Func. Count: 89, Neg. LLF: 121.4749180588824
Iteration: 9, Func. Count: 100, Neg. LLF: 97.39325089061289
Iteration: 10, Func. Count: 111, Neg. LLF: 94.81487616084243
Iteration: 11, Func. Count: 122, Neg. LLF: 94.25449803067112
Iteration: 12, Func. Count: 133, Neg. LLF: 93.68660595129779
Iteration: 13, Func. Count: 143, Neg. LLF: 94.6634315884269
Iteration: 14, Func. Count: 154, Neg. LLF: 93.33608216382211
Iteration: 15, Func. Count: 164, Neg. LLF: 93.29255914501874
Iteration: 16, Func. Count: 174, Neg. LLF: 93.28531642624189
Iteration: 17, Func. Count: 184, Neg. LLF: 93.28343777694617
Iteration: 18, Func. Count: 194, Neg. LLF: 93.28288750408873
Iteration: 19, Func. Count: 204, Neg. LLF: 93.28283411202717
Iteration: 20, Func. Count: 214, Neg. LLF: 93.28283274244299
Iteration: 21, Func. Count: 223, Neg. LLF: 93.28283274245284
Optimization terminated successfully (Exit mode 0)
Current function value: 93.28283274244299
Iterations: 21
Function evaluations: 223
Gradient evaluations: 21
Iteration: 1, Func. Count: 8, Neg. LLF: 113.55676826349
Iteration: 2, Func. Count: 17, Neg. LLF: 887.0463684459372
Iteration: 3, Func. Count: 25, Neg. LLF: 6880.385113394564
Iteration: 4, Func. Count: 33, Neg. LLF: 1236.6619154075688
Iteration: 5, Func. Count: 41, Neg. LLF: 111.654486461386
Iteration: 6, Func. Count: 49, Neg. LLF: 97.36680600365086
Iteration: 7, Func. Count: 57, Neg. LLF: 95.9133762463657
Iteration: 8, Func. Count: 64, Neg. LLF: 95.87352194480367
Iteration: 9, Func. Count: 71, Neg. LLF: 95.85690308960508
Iteration: 10, Func. Count: 78, Neg. LLF: 95.84687399556216
Iteration: 11, Func. Count: 85, Neg. LLF: 95.84422690860319
Iteration: 12, Func. Count: 92, Neg. LLF: 95.8418141237096
Iteration: 13, Func. Count: 99, Neg. LLF: 95.841645350034
Iteration: 14, Func. Count: 106, Neg. LLF: 95.84163851128659
Iteration: 15, Func. Count: 113, Neg. LLF: 95.84163657868613
Iteration: 16, Func. Count: 119, Neg. LLF: 95.84163647912307
Optimization terminated successfully (Exit mode 0)
Current function value: 95.84163657868613
Iterations: 16
Function evaluations: 119
Gradient evaluations: 16
Iteration: 1, Func. Count: 9, Neg. LLF: 724.7740687661728
Iteration: 2, Func. Count: 18, Neg. LLF: 1226.4535573128398
Iteration: 3, Func. Count: 27, Neg. LLF: 98.1031920737699
Iteration: 4, Func. Count: 37, Neg. LLF: 96.7376199863885
Iteration: 5, Func. Count: 46, Neg. LLF: 96.77263857108844
Iteration: 6, Func. Count: 55, Neg. LLF: 96.19054726185128
Iteration: 7, Func. Count: 64, Neg. LLF: 95.18916271047829
Iteration: 8, Func. Count: 72, Neg. LLF: 95.18692355352768
Iteration: 9, Func. Count: 80, Neg. LLF: 95.18672223608823
Iteration: 10, Func. Count: 88, Neg. LLF: 95.18668050182825
Iteration: 11, Func. Count: 96, Neg. LLF: 95.18667232314378
Iteration: 12, Func. Count: 103, Neg. LLF: 95.1866723231525
Optimization terminated successfully (Exit mode 0)
Current function value: 95.18667232314378
Iterations: 12
Function evaluations: 103
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 1224.5764237317926
Iteration: 2, Func. Count: 20, Neg. LLF: 605.5499013439781
Iteration: 3, Func. Count: 30, Neg. LLF: 2627.923206448499
Iteration: 4, Func. Count: 40, Neg. LLF: 135.9122743015686
Iteration: 5, Func. Count: 50, Neg. LLF: 94.87298480691041
Iteration: 6, Func. Count: 59, Neg. LLF: 98.99219509673243
Iteration: 7, Func. Count: 69, Neg. LLF: 94.64151747280579
Iteration: 8, Func. Count: 79, Neg. LLF: 95.24652993306083
Iteration: 9, Func. Count: 89, Neg. LLF: 94.55581719002267
Iteration: 10, Func. Count: 98, Neg. LLF: 94.5545078493039
Iteration: 11, Func. Count: 107, Neg. LLF: 94.55411587069634
Iteration: 12, Func. Count: 116, Neg. LLF: 94.55386411633809
Iteration: 13, Func. Count: 125, Neg. LLF: 94.55381896539
Iteration: 14, Func. Count: 134, Neg. LLF: 94.55380889960023
Iteration: 15, Func. Count: 142, Neg. LLF: 94.55380887126212
Optimization terminated successfully (Exit mode 0)
Current function value: 94.55380889960023
Iterations: 15
Function evaluations: 142
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 107.75453482139955
Iteration: 2, Func. Count: 22, Neg. LLF: 2610.3669420295932
Iteration: 3, Func. Count: 33, Neg. LLF: 4541.566460267701
Iteration: 4, Func. Count: 44, Neg. LLF: 115.85506760314733
Iteration: 5, Func. Count: 55, Neg. LLF: 113.99692717315186
Iteration: 6, Func. Count: 66, Neg. LLF: 104.82074004500444
Iteration: 7, Func. Count: 77, Neg. LLF: 94.40691136670902
Iteration: 8, Func. Count: 87, Neg. LLF: 95.02310250739345
Iteration: 9, Func. Count: 99, Neg. LLF: 101.62716287257328
Iteration: 10, Func. Count: 111, Neg. LLF: 94.03432222102569
Iteration: 11, Func. Count: 122, Neg. LLF: 93.89386015044312
Iteration: 12, Func. Count: 132, Neg. LLF: 93.88805625035053
Iteration: 13, Func. Count: 143, Neg. LLF: 93.86199630274236
Iteration: 14, Func. Count: 153, Neg. LLF: 93.85893187938038
Iteration: 15, Func. Count: 163, Neg. LLF: 93.85759672675032
Iteration: 16, Func. Count: 173, Neg. LLF: 93.85593524969504
Iteration: 17, Func. Count: 183, Neg. LLF: 93.85541238193677
Iteration: 18, Func. Count: 193, Neg. LLF: 93.85531589642943
Iteration: 19, Func. Count: 203, Neg. LLF: 93.85531418036027
Iteration: 20, Func. Count: 212, Neg. LLF: 93.85531417267427
Optimization terminated successfully (Exit mode 0)
Current function value: 93.85531418036027
Iterations: 20
Function evaluations: 212
Gradient evaluations: 20
Iteration: 1, Func. Count: 12, Neg. LLF: 116.67186061568836
Iteration: 2, Func. Count: 24, Neg. LLF: 1439.553715130449
Iteration: 3, Func. Count: 36, Neg. LLF: 3868.569648689727
Iteration: 4, Func. Count: 48, Neg. LLF: 119.32653338804455
Iteration: 5, Func. Count: 60, Neg. LLF: 148.2110308051384
Iteration: 6, Func. Count: 72, Neg. LLF: 106.88173341408928
Iteration: 7, Func. Count: 84, Neg. LLF: 94.34934146713607
Iteration: 8, Func. Count: 95, Neg. LLF: 94.82237283969886
Iteration: 9, Func. Count: 108, Neg. LLF: 139.87160826659508
Iteration: 10, Func. Count: 120, Neg. LLF: 93.17261738441677
Iteration: 11, Func. Count: 131, Neg. LLF: 93.01931123624087
Iteration: 12, Func. Count: 142, Neg. LLF: 92.99818270621971
Iteration: 13, Func. Count: 153, Neg. LLF: 92.98027631497582
Iteration: 14, Func. Count: 164, Neg. LLF: 92.97798436940522
Iteration: 15, Func. Count: 175, Neg. LLF: 92.97665526188065
Iteration: 16, Func. Count: 186, Neg. LLF: 92.9766113626778
Iteration: 17, Func. Count: 197, Neg. LLF: 92.97661030497872
Iteration: 18, Func. Count: 207, Neg. LLF: 92.97661029539881
Optimization terminated successfully (Exit mode 0)
Current function value: 92.97661030497872
Iterations: 18
Function evaluations: 207
Gradient evaluations: 18
Iteration: 1, Func. Count: 9, Neg. LLF: 113.43151968149283
Iteration: 2, Func. Count: 19, Neg. LLF: 1514.2908432144498
Iteration: 3, Func. Count: 28, Neg. LLF: 4237.315192542786
Iteration: 4, Func. Count: 37, Neg. LLF: 8570.440677170796
Iteration: 5, Func. Count: 46, Neg. LLF: 2307.7020836663005
Iteration: 6, Func. Count: 55, Neg. LLF: 99.68504466831811
Iteration: 7, Func. Count: 64, Neg. LLF: 95.97945069376597
Iteration: 8, Func. Count: 72, Neg. LLF: 95.8734032849746
Iteration: 9, Func. Count: 80, Neg. LLF: 95.85344434173605
Iteration: 10, Func. Count: 88, Neg. LLF: 95.8470986101823
Iteration: 11, Func. Count: 96, Neg. LLF: 95.84430122575853
Iteration: 12, Func. Count: 104, Neg. LLF: 95.84224737457805
Iteration: 13, Func. Count: 112, Neg. LLF: 95.84167903153076
Iteration: 14, Func. Count: 120, Neg. LLF: 95.84163966060514
Iteration: 15, Func. Count: 128, Neg. LLF: 95.84163658862252
Iteration: 16, Func. Count: 135, Neg. LLF: 95.84163658501954
Optimization terminated successfully (Exit mode 0)
Current function value: 95.84163658862252
Iterations: 16
Function evaluations: 135
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 1138.4026649521743
Iteration: 2, Func. Count: 20, Neg. LLF: 1239.8871886409452
Iteration: 3, Func. Count: 30, Neg. LLF: 98.02678571294176
Iteration: 4, Func. Count: 41, Neg. LLF: 96.74277031047235
Iteration: 5, Func. Count: 51, Neg. LLF: 96.793416859977
Iteration: 6, Func. Count: 61, Neg. LLF: 95.92735191208673
Iteration: 7, Func. Count: 71, Neg. LLF: 95.19748311733868
Iteration: 8, Func. Count: 80, Neg. LLF: 95.58523477560706
Iteration: 9, Func. Count: 91, Neg. LLF: 95.1879488777682
Iteration: 10, Func. Count: 101, Neg. LLF: 95.16790579442569
Iteration: 11, Func. Count: 110, Neg. LLF: 95.1677533354232
Iteration: 12, Func. Count: 119, Neg. LLF: 95.167750618297
Iteration: 13, Func. Count: 127, Neg. LLF: 95.16775061831022
Optimization terminated successfully (Exit mode 0)
Current function value: 95.167750618297
Iterations: 13
Function evaluations: 127
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 1427.768035891749
Iteration: 2, Func. Count: 22, Neg. LLF: 720.478562260333
Iteration: 3, Func. Count: 33, Neg. LLF: 2435.869849062663
Iteration: 4, Func. Count: 44, Neg. LLF: 136.33266595805955
Iteration: 5, Func. Count: 55, Neg. LLF: 94.82109691370944
Iteration: 6, Func. Count: 65, Neg. LLF: 99.33238137696507
Iteration: 7, Func. Count: 76, Neg. LLF: 99.34683771037183
Iteration: 8, Func. Count: 88, Neg. LLF: 94.70631646979926
Iteration: 9, Func. Count: 99, Neg. LLF: 94.5989593129208
Iteration: 10, Func. Count: 110, Neg. LLF: 94.55455786637151
Iteration: 11, Func. Count: 120, Neg. LLF: 94.5521937547168
Iteration: 12, Func. Count: 130, Neg. LLF: 94.55195535471131
Iteration: 13, Func. Count: 140, Neg. LLF: 94.55171904167197
Iteration: 14, Func. Count: 150, Neg. LLF: 94.5516751411075
Iteration: 15, Func. Count: 160, Neg. LLF: 94.55166744411117
Iteration: 16, Func. Count: 169, Neg. LLF: 94.55166741583453
Optimization terminated successfully (Exit mode 0)
Current function value: 94.55166744411117
Iterations: 16
Function evaluations: 169
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 108.69052457767857
Iteration: 2, Func. Count: 24, Neg. LLF: 5173.263386694224
Iteration: 3, Func. Count: 36, Neg. LLF: 3102.259916803709
Iteration: 4, Func. Count: 48, Neg. LLF: 118.56386630407145
Iteration: 5, Func. Count: 60, Neg. LLF: 115.77503095836441
Iteration: 6, Func. Count: 72, Neg. LLF: 104.49583054735282
Iteration: 7, Func. Count: 84, Neg. LLF: 95.49330341561394
Iteration: 8, Func. Count: 96, Neg. LLF: 94.32663570745966
Iteration: 9, Func. Count: 108, Neg. LLF: 94.01658792723237
Iteration: 10, Func. Count: 120, Neg. LLF: 93.86692360744905
Iteration: 11, Func. Count: 131, Neg. LLF: 94.13294831344926
Iteration: 12, Func. Count: 143, Neg. LLF: 94.69826710488708
Iteration: 13, Func. Count: 155, Neg. LLF: 93.74192857966011
Iteration: 14, Func. Count: 166, Neg. LLF: 93.73519867470216
Iteration: 15, Func. Count: 177, Neg. LLF: 93.73477608525072
Iteration: 16, Func. Count: 188, Neg. LLF: 93.73455024634335
Iteration: 17, Func. Count: 199, Neg. LLF: 93.73452372136093
Iteration: 18, Func. Count: 210, Neg. LLF: 93.73452295634675
Optimization terminated successfully (Exit mode 0)
Current function value: 93.73452295634675
Iterations: 18
Function evaluations: 210
Gradient evaluations: 18
Iteration: 1, Func. Count: 13, Neg. LLF: 119.09305674559306
Iteration: 2, Func. Count: 26, Neg. LLF: 1277.2582921540886
Iteration: 3, Func. Count: 39, Neg. LLF: 2739.142752252468
Iteration: 4, Func. Count: 52, Neg. LLF: 120.23257327036079
Iteration: 5, Func. Count: 65, Neg. LLF: 145.73558259268978
Iteration: 6, Func. Count: 78, Neg. LLF: 106.57383301885017
Iteration: 7, Func. Count: 91, Neg. LLF: 94.37548924321263
Iteration: 8, Func. Count: 103, Neg. LLF: 94.89412309963645
Iteration: 9, Func. Count: 117, Neg. LLF: 113.63277382224697
Iteration: 10, Func. Count: 130, Neg. LLF: 93.12634135529512
Iteration: 11, Func. Count: 142, Neg. LLF: 93.01126473180412
Iteration: 12, Func. Count: 154, Neg. LLF: 92.98323998170264
Iteration: 13, Func. Count: 166, Neg. LLF: 92.98006622304926
Iteration: 14, Func. Count: 178, Neg. LLF: 92.97710454389404
Iteration: 15, Func. Count: 190, Neg. LLF: 92.97663817999329
Iteration: 16, Func. Count: 202, Neg. LLF: 92.97661037921966
Iteration: 17, Func. Count: 213, Neg. LLF: 92.97661036986433
Optimization terminated successfully (Exit mode 0)
Current function value: 92.97661037921966
Iterations: 17
Function evaluations: 213
Gradient evaluations: 17
Iteration: 1, Func. Count: 10, Neg. LLF: 112.45645948575022
Iteration: 2, Func. Count: 21, Neg. LLF: 290.80798420213233
Iteration: 3, Func. Count: 31, Neg. LLF: 1614.9865746529254
Iteration: 4, Func. Count: 41, Neg. LLF: 97.74896443731805
Iteration: 5, Func. Count: 51, Neg. LLF: 95.87646744614761
Iteration: 6, Func. Count: 60, Neg. LLF: 95.72473033689255
Iteration: 7, Func. Count: 69, Neg. LLF: 96.38196544925971
Iteration: 8, Func. Count: 80, Neg. LLF: 95.70287748547877
Iteration: 9, Func. Count: 89, Neg. LLF: 95.68185811209274
Iteration: 10, Func. Count: 98, Neg. LLF: 95.68125069364618
Iteration: 11, Func. Count: 107, Neg. LLF: 95.68094671306038
Iteration: 12, Func. Count: 116, Neg. LLF: 95.68061761113059
Iteration: 13, Func. Count: 125, Neg. LLF: 95.68061166309724
Iteration: 14, Func. Count: 133, Neg. LLF: 95.68061166309487
Optimization terminated successfully (Exit mode 0)
Current function value: 95.68061166309724
Iterations: 14
Function evaluations: 133
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 159.3407150997277
Iteration: 2, Func. Count: 22, Neg. LLF: 244.02344562497052
Iteration: 3, Func. Count: 33, Neg. LLF: 96.86882666217103
Iteration: 4, Func. Count: 45, Neg. LLF: 124.77487718434519
Iteration: 5, Func. Count: 56, Neg. LLF: 95.3132061272137
Iteration: 6, Func. Count: 66, Neg. LLF: 1865.143675858365
Iteration: 7, Func. Count: 78, Neg. LLF: 95.71191409275701
Iteration: 8, Func. Count: 89, Neg. LLF: 96.55767549723403
Iteration: 9, Func. Count: 100, Neg. LLF: 95.01801425520115
Iteration: 10, Func. Count: 110, Neg. LLF: 94.9827433949561
Iteration: 11, Func. Count: 120, Neg. LLF: 94.96174524603616
Iteration: 12, Func. Count: 130, Neg. LLF: 94.95268749020752
Iteration: 13, Func. Count: 140, Neg. LLF: 94.94410438171454
Iteration: 14, Func. Count: 150, Neg. LLF: 94.94404471538432
Iteration: 15, Func. Count: 160, Neg. LLF: 94.94404347684305
Iteration: 16, Func. Count: 169, Neg. LLF: 94.94404347307614
Optimization terminated successfully (Exit mode 0)
Current function value: 94.94404347684305
Iterations: 16
Function evaluations: 169
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 2771.7515058553663
Iteration: 2, Func. Count: 24, Neg. LLF: 620.422421340798
Iteration: 3, Func. Count: 36, Neg. LLF: 1626.024948910708
Iteration: 4, Func. Count: 48, Neg. LLF: 102.28271268456562
Iteration: 5, Func. Count: 60, Neg. LLF: 105.35724411896939
Iteration: 6, Func. Count: 72, Neg. LLF: 95.7764051958232
Iteration: 7, Func. Count: 84, Neg. LLF: 94.9093347467829
Iteration: 8, Func. Count: 95, Neg. LLF: 94.50013774271203
Iteration: 9, Func. Count: 106, Neg. LLF: 94.89402386705352
Iteration: 10, Func. Count: 118, Neg. LLF: 94.4757899653128
Iteration: 11, Func. Count: 129, Neg. LLF: 94.41667108859997
Iteration: 12, Func. Count: 140, Neg. LLF: 94.41040585273943
Iteration: 13, Func. Count: 151, Neg. LLF: 94.40903870318294
Iteration: 14, Func. Count: 162, Neg. LLF: 94.40889418373341
Iteration: 15, Func. Count: 173, Neg. LLF: 94.40888251507684
Iteration: 16, Func. Count: 183, Neg. LLF: 94.40888248544847
Optimization terminated successfully (Exit mode 0)
Current function value: 94.40888251507684
Iterations: 16
Function evaluations: 183
Gradient evaluations: 16
Iteration: 1, Func. Count: 13, Neg. LLF: 140.35253513003144
Iteration: 2, Func. Count: 26, Neg. LLF: 607.962706574228
Iteration: 3, Func. Count: 39, Neg. LLF: 1686.8701217154887
Iteration: 4, Func. Count: 52, Neg. LLF: 114.06231557321067
Iteration: 5, Func. Count: 65, Neg. LLF: 107.74536585444801
Iteration: 6, Func. Count: 78, Neg. LLF: 102.6569039847092
Iteration: 7, Func. Count: 91, Neg. LLF: 94.56709884229394
Iteration: 8, Func. Count: 103, Neg. LLF: 94.4083599626591
Iteration: 9, Func. Count: 116, Neg. LLF: 1859471.142416801
Iteration: 10, Func. Count: 129, Neg. LLF: 98.13218383323364
Iteration: 11, Func. Count: 142, Neg. LLF: 94.09001207208239
Iteration: 12, Func. Count: 155, Neg. LLF: 94.84836437046258
Iteration: 13, Func. Count: 168, Neg. LLF: 93.74624981951919
Iteration: 14, Func. Count: 180, Neg. LLF: 93.73661434755356
Iteration: 15, Func. Count: 192, Neg. LLF: 93.7344854202843
Iteration: 16, Func. Count: 204, Neg. LLF: 93.73397905792227
Iteration: 17, Func. Count: 216, Neg. LLF: 93.73357326510056
Iteration: 18, Func. Count: 228, Neg. LLF: 93.7333123414234
Iteration: 19, Func. Count: 240, Neg. LLF: 93.73322383234004
Iteration: 20, Func. Count: 252, Neg. LLF: 93.73320956389456
Iteration: 21, Func. Count: 264, Neg. LLF: 93.73320880929383
Optimization terminated successfully (Exit mode 0)
Current function value: 93.73320880929383
Iterations: 21
Function evaluations: 264
Gradient evaluations: 21
Iteration: 1, Func. Count: 14, Neg. LLF: 187.45044922674506
Iteration: 2, Func. Count: 28, Neg. LLF: 9983.471733652605
Iteration: 3, Func. Count: 42, Neg. LLF: 2467.702039320483
Iteration: 4, Func. Count: 56, Neg. LLF: 101.29411722214334
Iteration: 5, Func. Count: 70, Neg. LLF: 113.19174897166323
Iteration: 6, Func. Count: 84, Neg. LLF: 98.39459920969765
Iteration: 7, Func. Count: 98, Neg. LLF: 94.46157815314753
Iteration: 8, Func. Count: 111, Neg. LLF: 111.25621449516449
Iteration: 9, Func. Count: 126, Neg. LLF: 112.23231356427674
Iteration: 10, Func. Count: 141, Neg. LLF: 101.12291610301968
Iteration: 11, Func. Count: 155, Neg. LLF: 93.13415300531115
Iteration: 12, Func. Count: 168, Neg. LLF: 93.26495891963916
Iteration: 13, Func. Count: 182, Neg. LLF: 93.24381877781187
Iteration: 14, Func. Count: 196, Neg. LLF: 92.93509368606553
Iteration: 15, Func. Count: 209, Neg. LLF: 92.93365057760265
Iteration: 16, Func. Count: 222, Neg. LLF: 92.93263727989336
Iteration: 17, Func. Count: 235, Neg. LLF: 92.93153820561723
Iteration: 18, Func. Count: 248, Neg. LLF: 92.93119633055362
Iteration: 19, Func. Count: 261, Neg. LLF: 92.93115138715862
Iteration: 20, Func. Count: 274, Neg. LLF: 92.93114814998059
Iteration: 21, Func. Count: 286, Neg. LLF: 92.93114814992397
Optimization terminated successfully (Exit mode 0)
Current function value: 92.93114814998059
Iterations: 21
Function evaluations: 286
Gradient evaluations: 21
Iteration: 1, Func. Count: 11, Neg. LLF: 119.3217897306041
Iteration: 2, Func. Count: 23, Neg. LLF: 281.1518843388624
Iteration: 3, Func. Count: 34, Neg. LLF: 1427.1908422163406
Iteration: 4, Func. Count: 45, Neg. LLF: 96.13029060524234
Iteration: 5, Func. Count: 55, Neg. LLF: 95.89003440984004
Iteration: 6, Func. Count: 65, Neg. LLF: 97.1111634267196
Iteration: 7, Func. Count: 78, Neg. LLF: 95.70026482517612
Iteration: 8, Func. Count: 88, Neg. LLF: 98.30824081196135
Iteration: 9, Func. Count: 99, Neg. LLF: 95.6857096104725
Iteration: 10, Func. Count: 109, Neg. LLF: 95.68087188971599
Iteration: 11, Func. Count: 119, Neg. LLF: 95.68072039440553
Iteration: 12, Func. Count: 129, Neg. LLF: 95.68067806007579
Iteration: 13, Func. Count: 139, Neg. LLF: 95.68063685581572
Iteration: 14, Func. Count: 149, Neg. LLF: 95.68061290885214
Iteration: 15, Func. Count: 159, Neg. LLF: 95.68061182180936
Iteration: 16, Func. Count: 168, Neg. LLF: 95.68061186378081
Optimization terminated successfully (Exit mode 0)
Current function value: 95.68061182180936
Iterations: 16
Function evaluations: 168
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 150.8473748979415
Iteration: 2, Func. Count: 24, Neg. LLF: 206.6752326733751
Iteration: 3, Func. Count: 36, Neg. LLF: 97.12181602218662
Iteration: 4, Func. Count: 49, Neg. LLF: 131.47045353227958
Iteration: 5, Func. Count: 61, Neg. LLF: 96.75053748997901
Iteration: 6, Func. Count: 73, Neg. LLF: 95.67485653727826
Iteration: 7, Func. Count: 84, Neg. LLF: 95.18808059696572
Iteration: 8, Func. Count: 95, Neg. LLF: 95.46754980773795
Iteration: 9, Func. Count: 107, Neg. LLF: 95.06715346618206
Iteration: 10, Func. Count: 118, Neg. LLF: 95.07519244335056
Iteration: 11, Func. Count: 130, Neg. LLF: 94.96735524631814
Iteration: 12, Func. Count: 141, Neg. LLF: 94.95394992529292
Iteration: 13, Func. Count: 152, Neg. LLF: 94.94522577180389
Iteration: 14, Func. Count: 163, Neg. LLF: 94.94406603725422
Iteration: 15, Func. Count: 174, Neg. LLF: 94.94405462756852
Iteration: 16, Func. Count: 185, Neg. LLF: 94.94404352539482
Iteration: 17, Func. Count: 195, Neg. LLF: 94.9440435216341
Optimization terminated successfully (Exit mode 0)
Current function value: 94.94404352539482
Iterations: 17
Function evaluations: 195
Gradient evaluations: 17
Iteration: 1, Func. Count: 13, Neg. LLF: 1480.6493998100646
Iteration: 2, Func. Count: 26, Neg. LLF: 735.7269731885663
Iteration: 3, Func. Count: 39, Neg. LLF: 2278.3816369084448
Iteration: 4, Func. Count: 52, Neg. LLF: 102.05652430861157
Iteration: 5, Func. Count: 65, Neg. LLF: 104.98400116803731
Iteration: 6, Func. Count: 78, Neg. LLF: 95.74689122012164
Iteration: 7, Func. Count: 91, Neg. LLF: 94.94099965641131
Iteration: 8, Func. Count: 103, Neg. LLF: 94.50181607657173
Iteration: 9, Func. Count: 115, Neg. LLF: 94.93616448684789
Iteration: 10, Func. Count: 128, Neg. LLF: 94.46744100817986
Iteration: 11, Func. Count: 140, Neg. LLF: 94.41670359837748
Iteration: 12, Func. Count: 152, Neg. LLF: 94.41030289321952
Iteration: 13, Func. Count: 164, Neg. LLF: 94.40899986640497
Iteration: 14, Func. Count: 176, Neg. LLF: 94.40889432810378
Iteration: 15, Func. Count: 188, Neg. LLF: 94.40888241148275
Iteration: 16, Func. Count: 199, Neg. LLF: 94.40888238187911
Optimization terminated successfully (Exit mode 0)
Current function value: 94.40888241148275
Iterations: 16
Function evaluations: 199
Gradient evaluations: 16
Iteration: 1, Func. Count: 14, Neg. LLF: 136.93832836220426
Iteration: 2, Func. Count: 28, Neg. LLF: 402.6869207791163
Iteration: 3, Func. Count: 42, Neg. LLF: 732.6364573373241
Iteration: 4, Func. Count: 56, Neg. LLF: 118.08758929319673
Iteration: 5, Func. Count: 70, Neg. LLF: 106.70007930711287
Iteration: 6, Func. Count: 84, Neg. LLF: 105.28868973444175
Iteration: 7, Func. Count: 98, Neg. LLF: 94.21386262375884
Iteration: 8, Func. Count: 111, Neg. LLF: 94.63170928462482
Iteration: 9, Func. Count: 125, Neg. LLF: 169.05108787529878
Iteration: 10, Func. Count: 139, Neg. LLF: 95.07490613785147
Iteration: 11, Func. Count: 153, Neg. LLF: 94.20982163497814
Iteration: 12, Func. Count: 167, Neg. LLF: 93.91291519167555
Iteration: 13, Func. Count: 181, Neg. LLF: 93.75325474050749
Iteration: 14, Func. Count: 195, Neg. LLF: 93.7339464158006
Iteration: 15, Func. Count: 208, Neg. LLF: 93.73329244018814
Iteration: 16, Func. Count: 221, Neg. LLF: 93.73323514002155
Iteration: 17, Func. Count: 234, Neg. LLF: 93.73322262275876
Iteration: 18, Func. Count: 247, Neg. LLF: 93.73321492242647
Iteration: 19, Func. Count: 260, Neg. LLF: 93.73321126595559
Iteration: 20, Func. Count: 273, Neg. LLF: 93.73320946130957
Iteration: 21, Func. Count: 286, Neg. LLF: 93.73320884182334
Optimization terminated successfully (Exit mode 0)
Current function value: 93.73320884182334
Iterations: 21
Function evaluations: 286
Gradient evaluations: 21
Iteration: 1, Func. Count: 15, Neg. LLF: 177.41804815107255
Iteration: 2, Func. Count: 30, Neg. LLF: 15564.080382019823
Iteration: 3, Func. Count: 45, Neg. LLF: 3853.077235957098
Iteration: 4, Func. Count: 60, Neg. LLF: 101.21959968983242
Iteration: 5, Func. Count: 75, Neg. LLF: 114.09764504851482
Iteration: 6, Func. Count: 90, Neg. LLF: 99.00355664927794
Iteration: 7, Func. Count: 105, Neg. LLF: 94.52378679121455
Iteration: 8, Func. Count: 120, Neg. LLF: 93.47813925445361
Iteration: 9, Func. Count: 134, Neg. LLF: 101.19424688122756
Iteration: 10, Func. Count: 150, Neg. LLF: 93.37955406957151
Iteration: 11, Func. Count: 165, Neg. LLF: 103.61227043333963
Iteration: 12, Func. Count: 180, Neg. LLF: 92.98746671481562
Iteration: 13, Func. Count: 194, Neg. LLF: 93.09663506896344
Iteration: 14, Func. Count: 209, Neg. LLF: 92.93904173303362
Iteration: 15, Func. Count: 223, Neg. LLF: 92.93351864935084
Iteration: 16, Func. Count: 237, Neg. LLF: 92.93182073418004
Iteration: 17, Func. Count: 251, Neg. LLF: 92.93116446242871
Iteration: 18, Func. Count: 265, Neg. LLF: 92.9311490728408
Iteration: 19, Func. Count: 279, Neg. LLF: 92.93114797208004
Iteration: 20, Func. Count: 292, Neg. LLF: 92.93114797211983
Optimization terminated successfully (Exit mode 0)
Current function value: 92.93114797208004
Iterations: 20
Function evaluations: 292
Gradient evaluations: 20
Iteration: 1, Func. Count: 8, Neg. LLF: 116.44822883383736
Iteration: 2, Func. Count: 17, Neg. LLF: 998.4994546163209
Iteration: 3, Func. Count: 25, Neg. LLF: 3995.943865409779
Iteration: 4, Func. Count: 33, Neg. LLF: 2121.5265728842614
Iteration: 5, Func. Count: 41, Neg. LLF: 124.38248656085528
Iteration: 6, Func. Count: 49, Neg. LLF: 96.83815576204745
Iteration: 7, Func. Count: 57, Neg. LLF: 102.86545422212323
Iteration: 8, Func. Count: 65, Neg. LLF: 95.78821482116912
Iteration: 9, Func. Count: 72, Neg. LLF: 95.78600522644047
Iteration: 10, Func. Count: 79, Neg. LLF: 95.78507701979667
Iteration: 11, Func. Count: 86, Neg. LLF: 95.78470509484474
Iteration: 12, Func. Count: 93, Neg. LLF: 95.78460935220873
Iteration: 13, Func. Count: 100, Neg. LLF: 95.78460417738367
Iteration: 14, Func. Count: 107, Neg. LLF: 95.78460344800179
Optimization terminated successfully (Exit mode 0)
Current function value: 95.78460344800179
Iterations: 14
Function evaluations: 107
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 326.73453728529483
Iteration: 2, Func. Count: 18, Neg. LLF: 4792.899984176692
Iteration: 3, Func. Count: 27, Neg. LLF: 98.10113315111221
Iteration: 4, Func. Count: 36, Neg. LLF: 105.6450312654791
Iteration: 5, Func. Count: 45, Neg. LLF: 96.72719592228836
Iteration: 6, Func. Count: 54, Neg. LLF: 95.80546864373869
Iteration: 7, Func. Count: 63, Neg. LLF: 95.23044086099763
Iteration: 8, Func. Count: 71, Neg. LLF: 95.19145592438701
Iteration: 9, Func. Count: 79, Neg. LLF: 95.1869012673588
Iteration: 10, Func. Count: 87, Neg. LLF: 95.18667814985483
Iteration: 11, Func. Count: 95, Neg. LLF: 95.18667234848147
Iteration: 12, Func. Count: 102, Neg. LLF: 95.18667234843713
Optimization terminated successfully (Exit mode 0)
Current function value: 95.18667234848147
Iterations: 12
Function evaluations: 102
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 109.51200674866516
Iteration: 2, Func. Count: 20, Neg. LLF: 2405.114018356944
Iteration: 3, Func. Count: 30, Neg. LLF: 120294.01230275161
Iteration: 4, Func. Count: 40, Neg. LLF: 117.24572737670745
Iteration: 5, Func. Count: 50, Neg. LLF: 97.38991446637726
Iteration: 6, Func. Count: 60, Neg. LLF: 94.71414595713128
Iteration: 7, Func. Count: 69, Neg. LLF: 94.66244504303562
Iteration: 8, Func. Count: 79, Neg. LLF: 94.58743251286607
Iteration: 9, Func. Count: 89, Neg. LLF: 94.56714812564434
Iteration: 10, Func. Count: 98, Neg. LLF: 94.563135993874
Iteration: 11, Func. Count: 107, Neg. LLF: 94.56302526136407
Iteration: 12, Func. Count: 116, Neg. LLF: 94.56301617904538
Iteration: 13, Func. Count: 125, Neg. LLF: 94.56301544803146
Optimization terminated successfully (Exit mode 0)
Current function value: 94.56301544803146
Iterations: 13
Function evaluations: 125
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 22385315.30794609
Iteration: 2, Func. Count: 23, Neg. LLF: 1657.824626216355
Iteration: 3, Func. Count: 34, Neg. LLF: 3624.626645341964
Iteration: 4, Func. Count: 45, Neg. LLF: 4111.153087971961
Iteration: 5, Func. Count: 56, Neg. LLF: 155.81261358344543
Iteration: 6, Func. Count: 67, Neg. LLF: 740.9400123794533
Iteration: 7, Func. Count: 78, Neg. LLF: 94.29672987599581
Iteration: 8, Func. Count: 88, Neg. LLF: 96.90888399794667
Iteration: 9, Func. Count: 99, Neg. LLF: 94.59924417655952
Iteration: 10, Func. Count: 110, Neg. LLF: 95.19033605467503
Iteration: 11, Func. Count: 121, Neg. LLF: 94.03801008693294
Iteration: 12, Func. Count: 131, Neg. LLF: 94.03421338348991
Iteration: 13, Func. Count: 141, Neg. LLF: 94.01388133618597
Iteration: 14, Func. Count: 151, Neg. LLF: 93.99078221754473
Iteration: 15, Func. Count: 161, Neg. LLF: 93.97524310110533
Iteration: 16, Func. Count: 171, Neg. LLF: 93.96487212648599
Iteration: 17, Func. Count: 181, Neg. LLF: 93.96076141432134
Iteration: 18, Func. Count: 191, Neg. LLF: 93.96005197200462
Iteration: 19, Func. Count: 201, Neg. LLF: 93.95997810975712
Iteration: 20, Func. Count: 211, Neg. LLF: 93.95997537641168
Iteration: 21, Func. Count: 220, Neg. LLF: 93.95997537640834
Optimization terminated successfully (Exit mode 0)
Current function value: 93.95997537641168
Iterations: 21
Function evaluations: 220
Gradient evaluations: 21
Iteration: 1, Func. Count: 12, Neg. LLF: 22388510.590432603
Iteration: 2, Func. Count: 25, Neg. LLF: 3931.5997418809357
Iteration: 3, Func. Count: 37, Neg. LLF: 30928.523273893945
Iteration: 4, Func. Count: 49, Neg. LLF: 1636.9189742220058
Iteration: 5, Func. Count: 61, Neg. LLF: 107.39684709396745
Iteration: 6, Func. Count: 73, Neg. LLF: 147.14907576415033
Iteration: 7, Func. Count: 85, Neg. LLF: 100.24490749590171
Iteration: 8, Func. Count: 97, Neg. LLF: 124.1403112924371
Iteration: 9, Func. Count: 109, Neg. LLF: 98.02566357368043
Iteration: 10, Func. Count: 121, Neg. LLF: 94.42509366034841
Iteration: 11, Func. Count: 133, Neg. LLF: 95.7405746757666
Iteration: 12, Func. Count: 145, Neg. LLF: 93.73929032951924
Iteration: 13, Func. Count: 156, Neg. LLF: 95.06527784564278
Iteration: 14, Func. Count: 168, Neg. LLF: 93.3210825866712
Iteration: 15, Func. Count: 179, Neg. LLF: 93.29362758528141
Iteration: 16, Func. Count: 190, Neg. LLF: 93.28927519787264
Iteration: 17, Func. Count: 201, Neg. LLF: 93.28601900364538
Iteration: 18, Func. Count: 212, Neg. LLF: 93.28367188283437
Iteration: 19, Func. Count: 223, Neg. LLF: 93.28288315044077
Iteration: 20, Func. Count: 234, Neg. LLF: 93.28283437735728
Iteration: 21, Func. Count: 245, Neg. LLF: 93.28283277840197
Iteration: 22, Func. Count: 255, Neg. LLF: 93.28283277842974
Optimization terminated successfully (Exit mode 0)
Current function value: 93.28283277840197
Iterations: 22
Function evaluations: 255
Gradient evaluations: 22
Iteration: 1, Func. Count: 9, Neg. LLF: 116.14263188580179
Iteration: 2, Func. Count: 19, Neg. LLF: 1323.065219615323
Iteration: 3, Func. Count: 28, Neg. LLF: 4064.2920455442277
Iteration: 4, Func. Count: 37, Neg. LLF: 2098.35055321552
Iteration: 5, Func. Count: 46, Neg. LLF: 124.40200866824082
Iteration: 6, Func. Count: 55, Neg. LLF: 96.790663126509
Iteration: 7, Func. Count: 64, Neg. LLF: 102.83061719299116
Iteration: 8, Func. Count: 73, Neg. LLF: 95.78754834765617
Iteration: 9, Func. Count: 81, Neg. LLF: 95.78674084636566
Iteration: 10, Func. Count: 89, Neg. LLF: 95.78513739431787
Iteration: 11, Func. Count: 97, Neg. LLF: 95.78468756795499
Iteration: 12, Func. Count: 105, Neg. LLF: 95.78460486935491
Iteration: 13, Func. Count: 113, Neg. LLF: 95.7846035049468
Iteration: 14, Func. Count: 120, Neg. LLF: 95.7846036486583
Optimization terminated successfully (Exit mode 0)
Current function value: 95.7846035049468
Iterations: 14
Function evaluations: 120
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 264.1851907171147
Iteration: 2, Func. Count: 20, Neg. LLF: 2862.628891976072
Iteration: 3, Func. Count: 30, Neg. LLF: 98.39598260929345
Iteration: 4, Func. Count: 41, Neg. LLF: 105.24745976303035
Iteration: 5, Func. Count: 51, Neg. LLF: 96.07183723177737
Iteration: 6, Func. Count: 61, Neg. LLF: 96.22054159827981
Iteration: 7, Func. Count: 71, Neg. LLF: 95.19030092656392
Iteration: 8, Func. Count: 80, Neg. LLF: 95.18786289748887
Iteration: 9, Func. Count: 89, Neg. LLF: 95.18675674670817
Iteration: 10, Func. Count: 98, Neg. LLF: 95.18667320518438
Iteration: 11, Func. Count: 107, Neg. LLF: 95.18667226408812
Optimization terminated successfully (Exit mode 0)
Current function value: 95.18667226408812
Iterations: 11
Function evaluations: 107
Gradient evaluations: 11
Iteration: 1, Func. Count: 11, Neg. LLF: 106.6592399472108
Iteration: 2, Func. Count: 22, Neg. LLF: 2495.172742370808
Iteration: 3, Func. Count: 33, Neg. LLF: 192819.6517987571
Iteration: 4, Func. Count: 44, Neg. LLF: 115.60230190801894
Iteration: 5, Func. Count: 55, Neg. LLF: 97.73120537883813
Iteration: 6, Func. Count: 66, Neg. LLF: 94.7252620544831
Iteration: 7, Func. Count: 76, Neg. LLF: 94.68990147658559
Iteration: 8, Func. Count: 87, Neg. LLF: 94.57691696462405
Iteration: 9, Func. Count: 97, Neg. LLF: 94.56045417280284
Iteration: 10, Func. Count: 107, Neg. LLF: 94.55521985195134
Iteration: 11, Func. Count: 117, Neg. LLF: 94.55404674185462
Iteration: 12, Func. Count: 127, Neg. LLF: 94.55385361885303
Iteration: 13, Func. Count: 137, Neg. LLF: 94.55381530316247
Iteration: 14, Func. Count: 147, Neg. LLF: 94.55380899069533
Iteration: 15, Func. Count: 156, Neg. LLF: 94.55380896229023
Optimization terminated successfully (Exit mode 0)
Current function value: 94.55380899069533
Iterations: 15
Function evaluations: 156
Gradient evaluations: 15
Iteration: 1, Func. Count: 12, Neg. LLF: 116.59727334933974
Iteration: 2, Func. Count: 24, Neg. LLF: 398.51056677013935
Iteration: 3, Func. Count: 36, Neg. LLF: 1171.2820935888212
Iteration: 4, Func. Count: 48, Neg. LLF: 106.57038880969812
Iteration: 5, Func. Count: 60, Neg. LLF: 102.66442267645489
Iteration: 6, Func. Count: 72, Neg. LLF: 102.61918300678698
Iteration: 7, Func. Count: 84, Neg. LLF: 94.54382460239476
Iteration: 8, Func. Count: 95, Neg. LLF: 100.04166962673852
Iteration: 9, Func. Count: 107, Neg. LLF: 94.90636711346075
Iteration: 10, Func. Count: 119, Neg. LLF: 94.01844868468524
Iteration: 11, Func. Count: 131, Neg. LLF: 94.80767749617628
Iteration: 12, Func. Count: 143, Neg. LLF: 93.89453335292714
Iteration: 13, Func. Count: 154, Neg. LLF: 94.07800593335996
Iteration: 14, Func. Count: 166, Neg. LLF: 93.87048873685255
Iteration: 15, Func. Count: 177, Neg. LLF: 93.86648357814538
Iteration: 16, Func. Count: 188, Neg. LLF: 93.86406387872108
Iteration: 17, Func. Count: 199, Neg. LLF: 93.86215981808915
Iteration: 18, Func. Count: 210, Neg. LLF: 93.85684800493826
Iteration: 19, Func. Count: 221, Neg. LLF: 93.8556563332635
Iteration: 20, Func. Count: 232, Neg. LLF: 93.85532224339354
Iteration: 21, Func. Count: 243, Neg. LLF: 93.85531476477969
Iteration: 22, Func. Count: 254, Neg. LLF: 93.85531423084093
Optimization terminated successfully (Exit mode 0)
Current function value: 93.85531423084093
Iterations: 22
Function evaluations: 254
Gradient evaluations: 22
Iteration: 1, Func. Count: 13, Neg. LLF: 216.89282896821695
Iteration: 2, Func. Count: 26, Neg. LLF: 1565.0996504369334
Iteration: 3, Func. Count: 39, Neg. LLF: 515.0832901610376
Iteration: 4, Func. Count: 52, Neg. LLF: 563191.7685549312
Iteration: 5, Func. Count: 65, Neg. LLF: 103.8775958324282
Iteration: 6, Func. Count: 78, Neg. LLF: 136.63357498879566
Iteration: 7, Func. Count: 91, Neg. LLF: 101.49505845995887
Iteration: 8, Func. Count: 104, Neg. LLF: 94.48364454103762
Iteration: 9, Func. Count: 117, Neg. LLF: 93.37870442649917
Iteration: 10, Func. Count: 129, Neg. LLF: 94.07070460984593
Iteration: 11, Func. Count: 142, Neg. LLF: 93.14877215157082
Iteration: 12, Func. Count: 154, Neg. LLF: 93.05383976988294
Iteration: 13, Func. Count: 166, Neg. LLF: 93.00192928560476
Iteration: 14, Func. Count: 178, Neg. LLF: 92.98151599648756
Iteration: 15, Func. Count: 190, Neg. LLF: 92.9792804038609
Iteration: 16, Func. Count: 202, Neg. LLF: 92.9773299660187
Iteration: 17, Func. Count: 214, Neg. LLF: 92.97669668895134
Iteration: 18, Func. Count: 226, Neg. LLF: 92.97661300018034
Iteration: 19, Func. Count: 238, Neg. LLF: 92.97661019583457
Iteration: 20, Func. Count: 249, Neg. LLF: 92.97661018641347
Optimization terminated successfully (Exit mode 0)
Current function value: 92.97661019583457
Iterations: 20
Function evaluations: 249
Gradient evaluations: 20
Iteration: 1, Func. Count: 10, Neg. LLF: 115.85360872701177
Iteration: 2, Func. Count: 21, Neg. LLF: 2271.0156364507034
Iteration: 3, Func. Count: 31, Neg. LLF: 4898.531113289864
Iteration: 4, Func. Count: 41, Neg. LLF: 2294.4400586345287
Iteration: 5, Func. Count: 51, Neg. LLF: 124.63407502510104
Iteration: 6, Func. Count: 61, Neg. LLF: 96.82369951291652
Iteration: 7, Func. Count: 71, Neg. LLF: 102.8533789284979
Iteration: 8, Func. Count: 81, Neg. LLF: 95.78800038229919
Iteration: 9, Func. Count: 90, Neg. LLF: 96.09095239718279
Iteration: 10, Func. Count: 101, Neg. LLF: 95.78594527733252
Iteration: 11, Func. Count: 111, Neg. LLF: 95.7829246103911
Iteration: 12, Func. Count: 120, Neg. LLF: 95.78237715069525
Iteration: 13, Func. Count: 129, Neg. LLF: 95.78236421981309
Iteration: 14, Func. Count: 138, Neg. LLF: 95.78235636505707
Iteration: 15, Func. Count: 146, Neg. LLF: 95.78235636508211
Optimization terminated successfully (Exit mode 0)
Current function value: 95.78235636505707
Iterations: 15
Function evaluations: 146
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 271.9236390983936
Iteration: 2, Func. Count: 22, Neg. LLF: 2824.4839504865267
Iteration: 3, Func. Count: 33, Neg. LLF: 98.09836799021686
Iteration: 4, Func. Count: 44, Neg. LLF: 105.58078330560234
Iteration: 5, Func. Count: 55, Neg. LLF: 96.67501714452256
Iteration: 6, Func. Count: 66, Neg. LLF: 97.95469742002528
Iteration: 7, Func. Count: 77, Neg. LLF: 95.42261321041352
Iteration: 8, Func. Count: 87, Neg. LLF: 95.18912023875075
Iteration: 9, Func. Count: 97, Neg. LLF: 95.26930671505461
Iteration: 10, Func. Count: 108, Neg. LLF: 95.16852024076631
Iteration: 11, Func. Count: 118, Neg. LLF: 95.16795107934824
Iteration: 12, Func. Count: 128, Neg. LLF: 95.1677734916769
Iteration: 13, Func. Count: 138, Neg. LLF: 95.16775211453823
Iteration: 14, Func. Count: 148, Neg. LLF: 95.16775079947857
Iteration: 15, Func. Count: 157, Neg. LLF: 95.16775079939319
Optimization terminated successfully (Exit mode 0)
Current function value: 95.16775079947857
Iterations: 15
Function evaluations: 157
Gradient evaluations: 15
Iteration: 1, Func. Count: 12, Neg. LLF: 107.30154405331652
Iteration: 2, Func. Count: 24, Neg. LLF: 10467.500707461717
Iteration: 3, Func. Count: 36, Neg. LLF: 148530.10436483027
Iteration: 4, Func. Count: 48, Neg. LLF: 117.10184693797494
Iteration: 5, Func. Count: 60, Neg. LLF: 97.74936583000262
Iteration: 6, Func. Count: 72, Neg. LLF: 94.7186431903771
Iteration: 7, Func. Count: 83, Neg. LLF: 94.68255059266265
Iteration: 8, Func. Count: 95, Neg. LLF: 94.57968632329205
Iteration: 9, Func. Count: 106, Neg. LLF: 96.11507167408048
Iteration: 10, Func. Count: 118, Neg. LLF: 94.60806284165857
Iteration: 11, Func. Count: 130, Neg. LLF: 94.55249250241931
Iteration: 12, Func. Count: 141, Neg. LLF: 94.55178696381152
Iteration: 13, Func. Count: 152, Neg. LLF: 94.55169855581569
Iteration: 14, Func. Count: 163, Neg. LLF: 94.55167308490084
Iteration: 15, Func. Count: 174, Neg. LLF: 94.55166729543912
Iteration: 16, Func. Count: 184, Neg. LLF: 94.55166726706639
Optimization terminated successfully (Exit mode 0)
Current function value: 94.55166729543912
Iterations: 16
Function evaluations: 184
Gradient evaluations: 16
Iteration: 1, Func. Count: 13, Neg. LLF: 118.26263267691074
Iteration: 2, Func. Count: 26, Neg. LLF: 408.32574863748323
Iteration: 3, Func. Count: 39, Neg. LLF: 1365.7945040769723
Iteration: 4, Func. Count: 52, Neg. LLF: 106.57624255940178
Iteration: 5, Func. Count: 65, Neg. LLF: 102.92196597271625
Iteration: 6, Func. Count: 78, Neg. LLF: 105.77323572588799
Iteration: 7, Func. Count: 91, Neg. LLF: 100.36467086655662
Iteration: 8, Func. Count: 104, Neg. LLF: 95.44726527435408
Iteration: 9, Func. Count: 117, Neg. LLF: 94.8930702916597
Iteration: 10, Func. Count: 130, Neg. LLF: 93.99685998486677
Iteration: 11, Func. Count: 142, Neg. LLF: 94.01256372852866
Iteration: 12, Func. Count: 155, Neg. LLF: 96.67721244241682
Iteration: 13, Func. Count: 169, Neg. LLF: 94.3736768088495
Iteration: 14, Func. Count: 182, Neg. LLF: 93.74465681399288
Iteration: 15, Func. Count: 194, Neg. LLF: 93.73752723403712
Iteration: 16, Func. Count: 206, Neg. LLF: 93.73492607118362
Iteration: 17, Func. Count: 218, Neg. LLF: 93.7345566499202
Iteration: 18, Func. Count: 230, Neg. LLF: 93.7345292266132
Iteration: 19, Func. Count: 242, Neg. LLF: 93.73452341375678
Iteration: 20, Func. Count: 253, Neg. LLF: 93.73452339868271
Optimization terminated successfully (Exit mode 0)
Current function value: 93.73452341375678
Iterations: 20
Function evaluations: 253
Gradient evaluations: 20
Iteration: 1, Func. Count: 14, Neg. LLF: 605.9930251617927
Iteration: 2, Func. Count: 28, Neg. LLF: 594.995992395642
Iteration: 3, Func. Count: 42, Neg. LLF: 34357.932709239845
Iteration: 4, Func. Count: 56, Neg. LLF: 3429.2434654744357
Iteration: 5, Func. Count: 70, Neg. LLF: 103.76028500997775
Iteration: 6, Func. Count: 84, Neg. LLF: 165.3247712668128
Iteration: 7, Func. Count: 98, Neg. LLF: 101.52662514811102
Iteration: 8, Func. Count: 112, Neg. LLF: 94.26945769764451
Iteration: 9, Func. Count: 125, Neg. LLF: 99.03931217561566
Iteration: 10, Func. Count: 140, Neg. LLF: 106.56243522744492
Iteration: 11, Func. Count: 155, Neg. LLF: 93.25583206067219
Iteration: 12, Func. Count: 168, Neg. LLF: 93.02401779733964
Iteration: 13, Func. Count: 181, Neg. LLF: 92.98814756610982
Iteration: 14, Func. Count: 194, Neg. LLF: 92.98347896236217
Iteration: 15, Func. Count: 207, Neg. LLF: 92.97994792590897
Iteration: 16, Func. Count: 220, Neg. LLF: 92.97870630651606
Iteration: 17, Func. Count: 233, Neg. LLF: 92.97775575988692
Iteration: 18, Func. Count: 246, Neg. LLF: 92.97684048849905
Iteration: 19, Func. Count: 259, Neg. LLF: 92.97663357570218
Iteration: 20, Func. Count: 272, Neg. LLF: 92.97661074441127
Iteration: 21, Func. Count: 285, Neg. LLF: 92.97661018166804
Optimization terminated successfully (Exit mode 0)
Current function value: 92.97661018166804
Iterations: 21
Function evaluations: 285
Gradient evaluations: 21
Iteration: 1, Func. Count: 11, Neg. LLF: 123.64802560777163
Iteration: 2, Func. Count: 23, Neg. LLF: 184.93549078394193
Iteration: 3, Func. Count: 34, Neg. LLF: 1623.3714492699553
Iteration: 4, Func. Count: 45, Neg. LLF: 98.90630870807458
Iteration: 5, Func. Count: 56, Neg. LLF: 96.27735490853517
Iteration: 6, Func. Count: 66, Neg. LLF: 96.25652884332293
Iteration: 7, Func. Count: 77, Neg. LLF: 106.51992867679512
Iteration: 8, Func. Count: 90, Neg. LLF: 96.48921687577587
Iteration: 9, Func. Count: 101, Neg. LLF: 95.72204167356797
Iteration: 10, Func. Count: 111, Neg. LLF: 95.6905201097383
Iteration: 11, Func. Count: 121, Neg. LLF: 95.67910191543415
Iteration: 12, Func. Count: 131, Neg. LLF: 95.67996094569251
Iteration: 13, Func. Count: 142, Neg. LLF: 95.67802296880339
Iteration: 14, Func. Count: 152, Neg. LLF: 95.67787916670528
Iteration: 15, Func. Count: 162, Neg. LLF: 95.6777074613142
Iteration: 16, Func. Count: 171, Neg. LLF: 95.67770746130442
Optimization terminated successfully (Exit mode 0)
Current function value: 95.6777074613142
Iterations: 16
Function evaluations: 171
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 314.9787429380568
Iteration: 2, Func. Count: 24, Neg. LLF: 1784.1428915462197
Iteration: 3, Func. Count: 36, Neg. LLF: 97.55059880839383
Iteration: 4, Func. Count: 48, Neg. LLF: 106.61119818396244
Iteration: 5, Func. Count: 60, Neg. LLF: 129.72321034090925
Iteration: 6, Func. Count: 72, Neg. LLF: 133.29023350312
Iteration: 7, Func. Count: 84, Neg. LLF: 118.45991048571403
Iteration: 8, Func. Count: 96, Neg. LLF: 96.61635510743848
Iteration: 9, Func. Count: 108, Neg. LLF: 98.86652382559026
Iteration: 10, Func. Count: 120, Neg. LLF: 95.1278710903771
Iteration: 11, Func. Count: 131, Neg. LLF: 95.09424553750591
Iteration: 12, Func. Count: 142, Neg. LLF: 96.30715678312701
Iteration: 13, Func. Count: 154, Neg. LLF: 94.97345299852103
Iteration: 14, Func. Count: 165, Neg. LLF: 94.97788697985862
Iteration: 15, Func. Count: 177, Neg. LLF: 94.95374682553594
Iteration: 16, Func. Count: 188, Neg. LLF: 94.94556263259068
Iteration: 17, Func. Count: 199, Neg. LLF: 94.94416449244555
Iteration: 18, Func. Count: 210, Neg. LLF: 94.94404560129442
Iteration: 19, Func. Count: 221, Neg. LLF: 94.94404356847706
Iteration: 20, Func. Count: 231, Neg. LLF: 94.94404356476804
Optimization terminated successfully (Exit mode 0)
Current function value: 94.94404356847706
Iterations: 20
Function evaluations: 231
Gradient evaluations: 20
Iteration: 1, Func. Count: 13, Neg. LLF: 133.0329142323641
Iteration: 2, Func. Count: 26, Neg. LLF: 10164.235213339747
Iteration: 3, Func. Count: 39, Neg. LLF: 38859.92837841887
Iteration: 4, Func. Count: 52, Neg. LLF: 105.23186342265296
Iteration: 5, Func. Count: 65, Neg. LLF: 98.0521623890323
Iteration: 6, Func. Count: 78, Neg. LLF: 94.88729554786227
Iteration: 7, Func. Count: 90, Neg. LLF: 95.03010445256245
Iteration: 8, Func. Count: 103, Neg. LLF: 96.32167835191494
Iteration: 9, Func. Count: 116, Neg. LLF: 95.01522402176619
Iteration: 10, Func. Count: 129, Neg. LLF: 94.5242147031561
Iteration: 11, Func. Count: 141, Neg. LLF: 94.52598358391137
Iteration: 12, Func. Count: 154, Neg. LLF: 94.49527571790212
Iteration: 13, Func. Count: 166, Neg. LLF: 94.45677342174082
Iteration: 14, Func. Count: 178, Neg. LLF: 94.43249504830074
Iteration: 15, Func. Count: 190, Neg. LLF: 94.41833231958854
Iteration: 16, Func. Count: 202, Neg. LLF: 94.4092380211028
Iteration: 17, Func. Count: 214, Neg. LLF: 94.40890895280279
Iteration: 18, Func. Count: 226, Neg. LLF: 94.40888341530295
Iteration: 19, Func. Count: 238, Neg. LLF: 94.4088823532616
Iteration: 20, Func. Count: 249, Neg. LLF: 94.40888232356853
Optimization terminated successfully (Exit mode 0)
Current function value: 94.4088823532616
Iterations: 20
Function evaluations: 249
Gradient evaluations: 20
Iteration: 1, Func. Count: 14, Neg. LLF: 183.8259251598883
Iteration: 2, Func. Count: 28, Neg. LLF: 3217.839011105832
Iteration: 3, Func. Count: 42, Neg. LLF: 4306.437991251737
Iteration: 4, Func. Count: 56, Neg. LLF: 104.32908519171534
Iteration: 5, Func. Count: 70, Neg. LLF: 1038.4405662597699
Iteration: 6, Func. Count: 84, Neg. LLF: 95.72479876106493
Iteration: 7, Func. Count: 98, Neg. LLF: 300.19050088640375
Iteration: 8, Func. Count: 112, Neg. LLF: 94.44017240606013
Iteration: 9, Func. Count: 126, Neg. LLF: 94.56597105906135
Iteration: 10, Func. Count: 140, Neg. LLF: 94.58713080869984
Iteration: 11, Func. Count: 154, Neg. LLF: 93.84655874441712
Iteration: 12, Func. Count: 167, Neg. LLF: 93.98910774083839
Iteration: 13, Func. Count: 181, Neg. LLF: 94.29572626474871
Iteration: 14, Func. Count: 195, Neg. LLF: 93.74698714297034
Iteration: 15, Func. Count: 208, Neg. LLF: 93.73646498213175
Iteration: 16, Func. Count: 221, Neg. LLF: 93.73442153266144
Iteration: 17, Func. Count: 234, Neg. LLF: 93.73366417578653
Iteration: 18, Func. Count: 247, Neg. LLF: 93.73330039764933
Iteration: 19, Func. Count: 260, Neg. LLF: 93.73322429642688
Iteration: 20, Func. Count: 273, Neg. LLF: 93.73321154696968
Iteration: 21, Func. Count: 286, Neg. LLF: 93.73320891472677
Iteration: 22, Func. Count: 298, Neg. LLF: 93.73320889945647
Optimization terminated successfully (Exit mode 0)
Current function value: 93.73320891472677
Iterations: 22
Function evaluations: 298
Gradient evaluations: 22
Iteration: 1, Func. Count: 15, Neg. LLF: 2180.9255384687685
Iteration: 2, Func. Count: 30, Neg. LLF: 5020570.873523661
Iteration: 3, Func. Count: 45, Neg. LLF: 143.95707322931074
Iteration: 4, Func. Count: 60, Neg. LLF: 102.56471440094256
Iteration: 5, Func. Count: 75, Neg. LLF: 3213.827494366248
Iteration: 6, Func. Count: 90, Neg. LLF: 101.41722238977603
Iteration: 7, Func. Count: 105, Neg. LLF: 95.62559887954657
Iteration: 8, Func. Count: 120, Neg. LLF: 99.93172720233026
Iteration: 9, Func. Count: 135, Neg. LLF: 94.50241003946806
Iteration: 10, Func. Count: 150, Neg. LLF: 95.36786756391867
Iteration: 11, Func. Count: 165, Neg. LLF: 93.56509180253688
Iteration: 12, Func. Count: 179, Neg. LLF: 93.50181610634773
Iteration: 13, Func. Count: 193, Neg. LLF: 93.35238350547138
Iteration: 14, Func. Count: 207, Neg. LLF: 93.54768475078303
Iteration: 15, Func. Count: 222, Neg. LLF: 92.99983465548566
Iteration: 16, Func. Count: 236, Neg. LLF: 92.95924036097917
Iteration: 17, Func. Count: 250, Neg. LLF: 92.94295951719897
Iteration: 18, Func. Count: 264, Neg. LLF: 92.93814035625081
Iteration: 19, Func. Count: 278, Neg. LLF: 92.93418660342412
Iteration: 20, Func. Count: 292, Neg. LLF: 92.93210829586113
Iteration: 21, Func. Count: 306, Neg. LLF: 92.93119906037258
Iteration: 22, Func. Count: 320, Neg. LLF: 92.93114813833748
Iteration: 23, Func. Count: 334, Neg. LLF: 93.3921652655883
Iteration: 24, Func. Count: 351, Neg. LLF: 92.97921210454871
Iteration: 25, Func. Count: 368, Neg. LLF: 93.24056364442193
Iteration: 26, Func. Count: 385, Neg. LLF: 92.93216304237052
Iteration: 27, Func. Count: 401, Neg. LLF: 92.93161004136653
Iteration: 28, Func. Count: 417, Neg. LLF: 92.9311482784107
Optimization terminated successfully (Exit mode 0)
Current function value: 92.93114520937803
Iterations: 29
Function evaluations: 418
Gradient evaluations: 28
Iteration: 1, Func. Count: 12, Neg. LLF: 125.40771429425729
Iteration: 2, Func. Count: 25, Neg. LLF: 174.8704305199322
Iteration: 3, Func. Count: 37, Neg. LLF: 1302.3876020407797
Iteration: 4, Func. Count: 49, Neg. LLF: 1305.1464353083848
Iteration: 5, Func. Count: 61, Neg. LLF: 97.20060022928219
Iteration: 6, Func. Count: 73, Neg. LLF: 95.43470826449546
Iteration: 7, Func. Count: 84, Neg. LLF: 96.9619915019731
Iteration: 8, Func. Count: 96, Neg. LLF: 95.43877228463292
Iteration: 9, Func. Count: 108, Neg. LLF: 96.3866575397087
Iteration: 10, Func. Count: 121, Neg. LLF: 95.34396760575407
Iteration: 11, Func. Count: 132, Neg. LLF: 95.34096559202068
Iteration: 12, Func. Count: 143, Neg. LLF: 95.33948940898345
Iteration: 13, Func. Count: 154, Neg. LLF: 95.33819398779386
Iteration: 14, Func. Count: 165, Neg. LLF: 95.33768963062406
Iteration: 15, Func. Count: 176, Neg. LLF: 95.3370941615015
Iteration: 16, Func. Count: 187, Neg. LLF: 95.29780950696772
Iteration: 17, Func. Count: 198, Neg. LLF: 95.13030372195243
Iteration: 18, Func. Count: 209, Neg. LLF: 94.91392528781647
Iteration: 19, Func. Count: 220, Neg. LLF: 253109.07055981632
Iteration: 20, Func. Count: 232, Neg. LLF: 27469869208.27783
Iteration: 21, Func. Count: 250, Neg. LLF: 293.5373554136037
Iteration: 22, Func. Count: 263, Neg. LLF: 165.94526409176186
Iteration: 23, Func. Count: 276, Neg. LLF: 231.1948104601025
Iteration: 24, Func. Count: 291, Neg. LLF: 230.76673912181715
Iteration: 25, Func. Count: 306, Neg. LLF: 871.2464031191029
Iteration: 26, Func. Count: 321, Neg. LLF: 212.01900589853648
Iteration: 27, Func. Count: 336, Neg. LLF: 62356330.69969865
Iteration: 28, Func. Count: 351, Neg. LLF: 13929463.754743246
Iteration: 29, Func. Count: 363, Neg. LLF: 281177.0565639481
Iteration: 30, Func. Count: 375, Neg. LLF: 588141.7116191263
Iteration: 31, Func. Count: 387, Neg. LLF: 838289.6821442533
Iteration: 32, Func. Count: 399, Neg. LLF: 224075.67387379849
Iteration: 33, Func. Count: 411, Neg. LLF: 113.71930797189884
Iteration: 34, Func. Count: 422, Neg. LLF: 113.10354396967183
Iteration: 35, Func. Count: 434, Neg. LLF: 111.28477294797061
Iteration: 36, Func. Count: 446, Neg. LLF: 108.76926494157382
Iteration: 37, Func. Count: 457, Neg. LLF: 108.35195855094975
Iteration: 38, Func. Count: 468, Neg. LLF: 108.00652257971188
Iteration: 39, Func. Count: 479, Neg. LLF: 107.6413414932251
Iteration: 40, Func. Count: 490, Neg. LLF: 106.00303584054089
Iteration: 41, Func. Count: 501, Neg. LLF: 100.02124411341923
Iteration: 42, Func. Count: 512, Neg. LLF: 95.80699746573008
Iteration: 43, Func. Count: 523, Neg. LLF: 96.44703869012488
Iteration: 44, Func. Count: 535, Neg. LLF: 95.25528144373826
Iteration: 45, Func. Count: 546, Neg. LLF: 95.0611619201674
Iteration: 46, Func. Count: 557, Neg. LLF: 94.98129909585516
Iteration: 47, Func. Count: 568, Neg. LLF: 94.93550546562201
Iteration: 48, Func. Count: 579, Neg. LLF: 94.9154397277931
Iteration: 49, Func. Count: 590, Neg. LLF: 94.88816162876087
Iteration: 50, Func. Count: 601, Neg. LLF: 94.85673572703747
Iteration: 51, Func. Count: 612, Neg. LLF: 94.8364573601533
Iteration: 52, Func. Count: 623, Neg. LLF: 94.8137719324237
Iteration: 53, Func. Count: 634, Neg. LLF: 94.7939375854869
Iteration: 54, Func. Count: 645, Neg. LLF: 94.78920002372365
Iteration: 55, Func. Count: 656, Neg. LLF: 94.78907157274661
Iteration: 56, Func. Count: 667, Neg. LLF: 94.78904415603692
Iteration: 57, Func. Count: 678, Neg. LLF: 94.78903524840777
Iteration: 58, Func. Count: 688, Neg. LLF: 94.78903524837379
Optimization terminated successfully (Exit mode 0)
Current function value: 94.78903524840777
Iterations: 60
Function evaluations: 688
Gradient evaluations: 58
Iteration: 1, Func. Count: 13, Neg. LLF: 3671.0491064646185
Iteration: 2, Func. Count: 26, Neg. LLF: 244.988481789205
Iteration: 3, Func. Count: 39, Neg. LLF: 105.16833016143893
Iteration: 4, Func. Count: 53, Neg. LLF: 250.74658356216062
Iteration: 5, Func. Count: 66, Neg. LLF: 95.3496686572908
Iteration: 6, Func. Count: 78, Neg. LLF: 95.62251431563226
Iteration: 7, Func. Count: 91, Neg. LLF: 98.62582502259765
Iteration: 8, Func. Count: 105, Neg. LLF: 94.99028670865728
Iteration: 9, Func. Count: 117, Neg. LLF: 94.9780426459843
Iteration: 10, Func. Count: 129, Neg. LLF: 94.99381581521831
Iteration: 11, Func. Count: 142, Neg. LLF: 94.94519599771498
Iteration: 12, Func. Count: 154, Neg. LLF: 94.9442149167045
Iteration: 13, Func. Count: 166, Neg. LLF: 94.94404682354467
Iteration: 14, Func. Count: 178, Neg. LLF: 94.94404379997862
Iteration: 15, Func. Count: 189, Neg. LLF: 94.94404379609448
Optimization terminated successfully (Exit mode 0)
Current function value: 94.94404379997862
Iterations: 15
Function evaluations: 189
Gradient evaluations: 15
Iteration: 1, Func. Count: 14, Neg. LLF: 121.84066578137538
Iteration: 2, Func. Count: 28, Neg. LLF: 10010.0231273314
Iteration: 3, Func. Count: 42, Neg. LLF: 481.35497400508666
Iteration: 4, Func. Count: 56, Neg. LLF: 96.25303269724753
Iteration: 5, Func. Count: 70, Neg. LLF: 104.02825187693199
Iteration: 6, Func. Count: 84, Neg. LLF: 93.77764846430355
Iteration: 7, Func. Count: 97, Neg. LLF: 93.71318992459753
Iteration: 8, Func. Count: 111, Neg. LLF: 94.81518900166334
Iteration: 9, Func. Count: 126, Neg. LLF: 94.49377154513726
Iteration: 10, Func. Count: 140, Neg. LLF: 93.45554710633968
Iteration: 11, Func. Count: 153, Neg. LLF: 93.43137560226984
Iteration: 12, Func. Count: 166, Neg. LLF: 93.42797745212411
Iteration: 13, Func. Count: 179, Neg. LLF: 93.42713028208475
Iteration: 14, Func. Count: 192, Neg. LLF: 93.42705222942752
Iteration: 15, Func. Count: 205, Neg. LLF: 93.42705053631626
Iteration: 16, Func. Count: 217, Neg. LLF: 93.42705051036879
Optimization terminated successfully (Exit mode 0)
Current function value: 93.42705053631626
Iterations: 16
Function evaluations: 217
Gradient evaluations: 16
Iteration: 1, Func. Count: 15, Neg. LLF: 141.53154317364553
Iteration: 2, Func. Count: 30, Neg. LLF: 212.1681193069294
Iteration: 3, Func. Count: 45, Neg. LLF: 925.5115631993938
Iteration: 4, Func. Count: 60, Neg. LLF: 102.37450393777704
Iteration: 5, Func. Count: 75, Neg. LLF: 702.0338275749376
Iteration: 6, Func. Count: 90, Neg. LLF: 97.14556556602359
Iteration: 7, Func. Count: 105, Neg. LLF: 96.16475703526491
Iteration: 8, Func. Count: 120, Neg. LLF: 99.58417304591217
Iteration: 9, Func. Count: 135, Neg. LLF: 109.9358883545458
Iteration: 10, Func. Count: 150, Neg. LLF: 93.65580342280978
Iteration: 11, Func. Count: 165, Neg. LLF: 93.61814756112352
Iteration: 12, Func. Count: 180, Neg. LLF: 93.41112851820152
Iteration: 13, Func. Count: 195, Neg. LLF: 93.17231628503768
Iteration: 14, Func. Count: 209, Neg. LLF: 97.01190378172656
Iteration: 15, Func. Count: 224, Neg. LLF: 93.08986164080065
Iteration: 16, Func. Count: 238, Neg. LLF: 93.10628805337035
Iteration: 17, Func. Count: 253, Neg. LLF: 93.08585758930639
Iteration: 18, Func. Count: 267, Neg. LLF: 93.08393766001868
Iteration: 19, Func. Count: 281, Neg. LLF: 93.08382268914441
Iteration: 20, Func. Count: 295, Neg. LLF: 93.08371856746935
Iteration: 21, Func. Count: 309, Neg. LLF: 93.08362247343072
Iteration: 22, Func. Count: 323, Neg. LLF: 93.08356670981021
Iteration: 23, Func. Count: 337, Neg. LLF: 93.08355219709621
Iteration: 24, Func. Count: 351, Neg. LLF: 93.08354900585202
Iteration: 25, Func. Count: 365, Neg. LLF: 93.08354786753002
Iteration: 26, Func. Count: 378, Neg. LLF: 93.08354785438647
Optimization terminated successfully (Exit mode 0)
Current function value: 93.08354786753002
Iterations: 26
Function evaluations: 378
Gradient evaluations: 26
Iteration: 1, Func. Count: 16, Neg. LLF: 3974542.7623273786
Iteration: 2, Func. Count: 32, Neg. LLF: 6323551.111332511
Iteration: 3, Func. Count: 48, Neg. LLF: 166.09481111581954
Iteration: 4, Func. Count: 64, Neg. LLF: 151.9515099072597
Iteration: 5, Func. Count: 80, Neg. LLF: 1767369.0589279353
Iteration: 6, Func. Count: 96, Neg. LLF: 152.4580586180367
Iteration: 7, Func. Count: 112, Neg. LLF: 96.16947641735376
Iteration: 8, Func. Count: 128, Neg. LLF: 95.30770247592444
Iteration: 9, Func. Count: 144, Neg. LLF: 92.67852425179709
Iteration: 10, Func. Count: 159, Neg. LLF: 93.28986000082025
Iteration: 11, Func. Count: 175, Neg. LLF: 92.3561977551188
Iteration: 12, Func. Count: 190, Neg. LLF: 92.70902185169054
Iteration: 13, Func. Count: 206, Neg. LLF: 92.46817408585558
Iteration: 14, Func. Count: 222, Neg. LLF: 92.95638853181195
Iteration: 15, Func. Count: 238, Neg. LLF: 92.27037743321266
Iteration: 16, Func. Count: 253, Neg. LLF: 92.26896479460483
Iteration: 17, Func. Count: 268, Neg. LLF: 92.26866892146433
Iteration: 18, Func. Count: 283, Neg. LLF: 92.26856303882019
Iteration: 19, Func. Count: 298, Neg. LLF: 92.2684677857803
Iteration: 20, Func. Count: 313, Neg. LLF: 92.26845888320877
Iteration: 21, Func. Count: 327, Neg. LLF: 92.26845888333457
Optimization terminated successfully (Exit mode 0)
Current function value: 92.26845888320877
Iterations: 21
Function evaluations: 327
Gradient evaluations: 21
Iteration: 1, Func. Count: 6, Neg. LLF: 22354699.353552874
Iteration: 2, Func. Count: 13, Neg. LLF: 96.78921753324225
Iteration: 3, Func. Count: 18, Neg. LLF: 99.25760356489175
Iteration: 4, Func. Count: 24, Neg. LLF: 96.97336734667459
Iteration: 5, Func. Count: 31, Neg. LLF: 96.70876472243442
Iteration: 6, Func. Count: 36, Neg. LLF: 96.70869603778303
Iteration: 7, Func. Count: 40, Neg. LLF: 96.70869603802204
Optimization terminated successfully (Exit mode 0)
Current function value: 96.70869603778303
Iterations: 7
Function evaluations: 40
Gradient evaluations: 7
Iteration: 1, Func. Count: 5, Neg. LLF: 127.8332367756571
Iteration: 2, Func. Count: 12, Neg. LLF: 97.83728543137192
Iteration: 3, Func. Count: 17, Neg. LLF: 96.34330505051213
Iteration: 4, Func. Count: 21, Neg. LLF: 96.33300683961772
Iteration: 5, Func. Count: 25, Neg. LLF: 96.33095700577802
Iteration: 6, Func. Count: 29, Neg. LLF: 96.33095645205682
Iteration: 7, Func. Count: 33, Neg. LLF: 96.33095559767645
Optimization terminated successfully (Exit mode 0)
Current function value: 96.33095545734709
Iterations: 7
Function evaluations: 33
Gradient evaluations: 7
Iteration: 1, Func. Count: 6, Neg. LLF: 24029606.832614962
Iteration: 2, Func. Count: 13, Neg. LLF: 95.29296866755615
Iteration: 3, Func. Count: 18, Neg. LLF: 95.16268996320599
Iteration: 4, Func. Count: 24, Neg. LLF: 99.43351962136387
Iteration: 5, Func. Count: 30, Neg. LLF: 94.45745558502247
Iteration: 6, Func. Count: 35, Neg. LLF: 94.45735423399486
Iteration: 7, Func. Count: 40, Neg. LLF: 94.45735298573233
Iteration: 8, Func. Count: 44, Neg. LLF: 94.45735298562485
Optimization terminated successfully (Exit mode 0)
Current function value: 94.45735298573233
Iterations: 8
Function evaluations: 44
Gradient evaluations: 8
Iteration: 1, Func. Count: 7, Neg. LLF: 24088704.55519803
Iteration: 2, Func. Count: 15, Neg. LLF: 95.24445513518572
Iteration: 3, Func. Count: 21, Neg. LLF: 96.59809886989298
Iteration: 4, Func. Count: 28, Neg. LLF: 106.29556716372092
Iteration: 5, Func. Count: 36, Neg. LLF: 94.40295469446265
Iteration: 6, Func. Count: 42, Neg. LLF: 94.40019995989341
Iteration: 7, Func. Count: 48, Neg. LLF: 94.3959252800591
Iteration: 8, Func. Count: 54, Neg. LLF: 94.39591375746497
Iteration: 9, Func. Count: 60, Neg. LLF: 94.39591327231462
Optimization terminated successfully (Exit mode 0)
Current function value: 94.39591327231462
Iterations: 9
Function evaluations: 60
Gradient evaluations: 9
Iteration: 1, Func. Count: 8, Neg. LLF: 24188040.774190534
Iteration: 2, Func. Count: 17, Neg. LLF: 94.93563184741149
Iteration: 3, Func. Count: 24, Neg. LLF: 96.3531842002132
Iteration: 4, Func. Count: 32, Neg. LLF: 100.26938664531535
Iteration: 5, Func. Count: 41, Neg. LLF: 94.50235469411744
Iteration: 6, Func. Count: 48, Neg. LLF: 94.49492400773876
Iteration: 7, Func. Count: 55, Neg. LLF: 94.52155463000098
Iteration: 8, Func. Count: 63, Neg. LLF: 94.49272041260284
Iteration: 9, Func. Count: 70, Neg. LLF: 94.49265050992034
Iteration: 10, Func. Count: 77, Neg. LLF: 94.49264970885442
Optimization terminated successfully (Exit mode 0)
Current function value: 94.49264970885442
Iterations: 10
Function evaluations: 77
Gradient evaluations: 10
Iteration: 1, Func. Count: 9, Neg. LLF: 24171912.91374028
Iteration: 2, Func. Count: 19, Neg. LLF: 94.75612290058768
Iteration: 3, Func. Count: 27, Neg. LLF: 95.04802113670848
Iteration: 4, Func. Count: 36, Neg. LLF: 95.23486498898842
Iteration: 5, Func. Count: 45, Neg. LLF: 94.52769173059332
Iteration: 6, Func. Count: 53, Neg. LLF: 94.52600239277018
Iteration: 7, Func. Count: 61, Neg. LLF: 94.47468778310558
Iteration: 8, Func. Count: 69, Neg. LLF: 94.46218791056407
Iteration: 9, Func. Count: 77, Neg. LLF: 94.44526783652681
Iteration: 10, Func. Count: 85, Neg. LLF: 94.43294043423381
Iteration: 11, Func. Count: 93, Neg. LLF: 94.39720219685381
Iteration: 12, Func. Count: 101, Neg. LLF: 94.39754580607108
Optimization terminated successfully (Exit mode 0)
Current function value: 94.39720145332223
Iterations: 12
Function evaluations: 103
Gradient evaluations: 12
Iteration: 1, Func. Count: 6, Neg. LLF: 129.6382317870894
Iteration: 2, Func. Count: 14, Neg. LLF: 101.78631040618491
Iteration: 3, Func. Count: 20, Neg. LLF: 97.09091772478396
Iteration: 4, Func. Count: 25, Neg. LLF: 96.60990207962257
Iteration: 5, Func. Count: 30, Neg. LLF: 96.54388791257855
Iteration: 6, Func. Count: 36, Neg. LLF: 96.33114547563092
Iteration: 7, Func. Count: 41, Neg. LLF: 96.33095601200975
Iteration: 8, Func. Count: 46, Neg. LLF: 96.33095547543185
Optimization terminated successfully (Exit mode 0)
Current function value: 96.33095547543185
Iterations: 8
Function evaluations: 46
Gradient evaluations: 8
Iteration: 1, Func. Count: 7, Neg. LLF: 23819523.51901047
Iteration: 2, Func. Count: 15, Neg. LLF: 95.13307794060405
Iteration: 3, Func. Count: 21, Neg. LLF: 95.49726978838449
Iteration: 4, Func. Count: 28, Neg. LLF: 95.46086034420762
Iteration: 5, Func. Count: 35, Neg. LLF: 94.49568058687709
Iteration: 6, Func. Count: 41, Neg. LLF: 94.47279426080644
Iteration: 7, Func. Count: 47, Neg. LLF: 94.46218471082003
Iteration: 8, Func. Count: 53, Neg. LLF: 94.45735579397531
Iteration: 9, Func. Count: 59, Neg. LLF: 94.45735299805088
Iteration: 10, Func. Count: 64, Neg. LLF: 94.45735299787124
Optimization terminated successfully (Exit mode 0)
Current function value: 94.45735299805088
Iterations: 10
Function evaluations: 64
Gradient evaluations: 10
Iteration: 1, Func. Count: 8, Neg. LLF: 23944945.84174734
Iteration: 2, Func. Count: 17, Neg. LLF: 95.18899515457251
Iteration: 3, Func. Count: 24, Neg. LLF: 95.58188162196069
Iteration: 4, Func. Count: 32, Neg. LLF: 105.47042537446771
Iteration: 5, Func. Count: 40, Neg. LLF: 94.40730426950788
Iteration: 6, Func. Count: 47, Neg. LLF: 94.39630888860755
Iteration: 7, Func. Count: 54, Neg. LLF: 94.3960320479381
Iteration: 8, Func. Count: 61, Neg. LLF: 94.3959787225319
Iteration: 9, Func. Count: 68, Neg. LLF: 94.39591441494221
Iteration: 10, Func. Count: 75, Neg. LLF: 94.39591306241083
Iteration: 11, Func. Count: 82, Neg. LLF: 95.2976467900297
Optimization terminated successfully (Exit mode 0)
Current function value: 94.39591302759965
Iterations: 12
Function evaluations: 86
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 23985675.738575406
Iteration: 2, Func. Count: 19, Neg. LLF: 94.86394288804168
Iteration: 3, Func. Count: 27, Neg. LLF: 94.50515861061544
Iteration: 4, Func. Count: 35, Neg. LLF: 94.63679960030058
Iteration: 5, Func. Count: 44, Neg. LLF: 94.51133180126708
Iteration: 6, Func. Count: 53, Neg. LLF: 94.49265967433632
Iteration: 7, Func. Count: 61, Neg. LLF: 94.49264971319182
Iteration: 8, Func. Count: 68, Neg. LLF: 94.49264971320294
Optimization terminated successfully (Exit mode 0)
Current function value: 94.49264971319182
Iterations: 8
Function evaluations: 68
Gradient evaluations: 8
Iteration: 1, Func. Count: 10, Neg. LLF: 23983965.620965905
Iteration: 2, Func. Count: 21, Neg. LLF: 94.74662920905195
Iteration: 3, Func. Count: 30, Neg. LLF: 95.30478049373174
Iteration: 4, Func. Count: 40, Neg. LLF: 95.0216409722751
Iteration: 5, Func. Count: 51, Neg. LLF: 94.56209737599869
Iteration: 6, Func. Count: 61, Neg. LLF: 94.28933884468196
Iteration: 7, Func. Count: 70, Neg. LLF: 94.23173787006077
Iteration: 8, Func. Count: 79, Neg. LLF: 94.18943637909199
Iteration: 9, Func. Count: 88, Neg. LLF: 94.15869518536522
Iteration: 10, Func. Count: 97, Neg. LLF: 94.15348597395862
Iteration: 11, Func. Count: 106, Neg. LLF: 94.15132021493363
Iteration: 12, Func. Count: 115, Neg. LLF: 94.15115044599665
Iteration: 13, Func. Count: 124, Neg. LLF: 94.15114646824908
Iteration: 14, Func. Count: 133, Neg. LLF: 94.93278223396746
Optimization terminated successfully (Exit mode 0)
Current function value: 94.15114632476336
Iterations: 15
Function evaluations: 137
Gradient evaluations: 14
Iteration: 1, Func. Count: 7, Neg. LLF: 138.69082749344625
Iteration: 2, Func. Count: 16, Neg. LLF: 247088487.8024485
Iteration: 3, Func. Count: 24, Neg. LLF: 8269206.998947868
Iteration: 4, Func. Count: 31, Neg. LLF: 92.91815493778903
Iteration: 5, Func. Count: 37, Neg. LLF: 4040670.629460208
Iteration: 6, Func. Count: 46, Neg. LLF: 94.71608971497247
Iteration: 7, Func. Count: 53, Neg. LLF: 92.65222181105055
Iteration: 8, Func. Count: 59, Neg. LLF: 92.64218492391129
Iteration: 9, Func. Count: 65, Neg. LLF: 92.63802164076148
Iteration: 10, Func. Count: 71, Neg. LLF: 92.63060746543427
Iteration: 11, Func. Count: 77, Neg. LLF: 92.63019624568875
Iteration: 12, Func. Count: 83, Neg. LLF: 92.63000035914531
Iteration: 13, Func. Count: 89, Neg. LLF: 92.62983171605785
Iteration: 14, Func. Count: 95, Neg. LLF: 92.62979990579147
Iteration: 15, Func. Count: 101, Neg. LLF: 92.62979734697409
Iteration: 16, Func. Count: 106, Neg. LLF: 92.62979734698266
Optimization terminated successfully (Exit mode 0)
Current function value: 92.62979734697409
Iterations: 16
Function evaluations: 106
Gradient evaluations: 16
Iteration: 1, Func. Count: 8, Neg. LLF: 106.99309439779273
Iteration: 2, Func. Count: 16, Neg. LLF: 315.6820399347845
Iteration: 3, Func. Count: 25, Neg. LLF: 93.1644740876606
Iteration: 4, Func. Count: 32, Neg. LLF: 92.73671301991631
Iteration: 5, Func. Count: 39, Neg. LLF: 97.76466743921013
Iteration: 6, Func. Count: 48, Neg. LLF: 111.2527274319883
Iteration: 7, Func. Count: 57, Neg. LLF: 92.85785467358916
Iteration: 8, Func. Count: 65, Neg. LLF: 92.63269616837594
Iteration: 9, Func. Count: 72, Neg. LLF: 92.63031517899668
Iteration: 10, Func. Count: 79, Neg. LLF: 92.62982021554173
Iteration: 11, Func. Count: 86, Neg. LLF: 92.62979865993164
Iteration: 12, Func. Count: 93, Neg. LLF: 92.62979730080119
Iteration: 13, Func. Count: 99, Neg. LLF: 92.6297973257871
Optimization terminated successfully (Exit mode 0)
Current function value: 92.62979730080119
Iterations: 13
Function evaluations: 99
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 105.7583797557487
Iteration: 2, Func. Count: 18, Neg. LLF: 420.076801552869
Iteration: 3, Func. Count: 28, Neg. LLF: 99.33133605193315
Iteration: 4, Func. Count: 37, Neg. LLF: 93.14832754627253
Iteration: 5, Func. Count: 45, Neg. LLF: 117.83648620692969
Iteration: 6, Func. Count: 54, Neg. LLF: 95.58539520001763
Iteration: 7, Func. Count: 64, Neg. LLF: 92.63110336117934
Iteration: 8, Func. Count: 72, Neg. LLF: 92.5452186512108
Iteration: 9, Func. Count: 80, Neg. LLF: 92.53360583930204
Iteration: 10, Func. Count: 88, Neg. LLF: 92.51604114252862
Iteration: 11, Func. Count: 96, Neg. LLF: 92.5143805050182
Iteration: 12, Func. Count: 104, Neg. LLF: 92.51353026331988
Iteration: 13, Func. Count: 112, Neg. LLF: 92.5134773156831
Iteration: 14, Func. Count: 120, Neg. LLF: 92.51347339368655
Iteration: 15, Func. Count: 127, Neg. LLF: 92.51347339375177
Optimization terminated successfully (Exit mode 0)
Current function value: 92.51347339368655
Iterations: 15
Function evaluations: 127
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 103.38855768858812
Iteration: 2, Func. Count: 20, Neg. LLF: 125.32518899480955
Iteration: 3, Func. Count: 30, Neg. LLF: 94.55524277807119
Iteration: 4, Func. Count: 40, Neg. LLF: 97.28383549955325
Iteration: 5, Func. Count: 51, Neg. LLF: 92.40795891044542
Iteration: 6, Func. Count: 61, Neg. LLF: 91.53814391685866
Iteration: 7, Func. Count: 70, Neg. LLF: 434.0864923411845
Iteration: 8, Func. Count: 81, Neg. LLF: 91.49696499235844
Iteration: 9, Func. Count: 90, Neg. LLF: 91.49367872873987
Iteration: 10, Func. Count: 99, Neg. LLF: 91.49348757148559
Iteration: 11, Func. Count: 108, Neg. LLF: 91.49347225639202
Iteration: 12, Func. Count: 116, Neg. LLF: 91.4934722564033
Optimization terminated successfully (Exit mode 0)
Current function value: 91.49347225639202
Iterations: 12
Function evaluations: 116
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 104.56328679932464
Iteration: 2, Func. Count: 22, Neg. LLF: 116.99956304869953
Iteration: 3, Func. Count: 33, Neg. LLF: 96.65298309065415
Iteration: 4, Func. Count: 44, Neg. LLF: 91.60124613712128
Iteration: 5, Func. Count: 54, Neg. LLF: 97.99539648776923
Iteration: 6, Func. Count: 66, Neg. LLF: 133.80587996742574
Iteration: 7, Func. Count: 78, Neg. LLF: 91.50117323001778
Iteration: 8, Func. Count: 88, Neg. LLF: 91.49430687462801
Iteration: 9, Func. Count: 98, Neg. LLF: 91.49352771013048
Iteration: 10, Func. Count: 108, Neg. LLF: 91.49347511570397
Iteration: 11, Func. Count: 118, Neg. LLF: 91.49347217456153
Iteration: 12, Func. Count: 127, Neg. LLF: 91.49347223642617
Optimization terminated successfully (Exit mode 0)
Current function value: 91.49347217456153
Iterations: 12
Function evaluations: 127
Gradient evaluations: 12
Iteration: 1, Func. Count: 8, Neg. LLF: 142.40862070212978
Iteration: 2, Func. Count: 18, Neg. LLF: 266263682.51367542
Iteration: 3, Func. Count: 26, Neg. LLF: 7320526.570540887
Iteration: 4, Func. Count: 34, Neg. LLF: 95.3577356274009
Iteration: 5, Func. Count: 42, Neg. LLF: 93.01048900503471
Iteration: 6, Func. Count: 50, Neg. LLF: 4148567.9600454173
Iteration: 7, Func. Count: 60, Neg. LLF: 92.64862019811497
Iteration: 8, Func. Count: 67, Neg. LLF: 92.64363775321796
Iteration: 9, Func. Count: 74, Neg. LLF: 92.63861041383333
Iteration: 10, Func. Count: 81, Neg. LLF: 92.63074351537261
Iteration: 11, Func. Count: 88, Neg. LLF: 92.6298499371311
Iteration: 12, Func. Count: 95, Neg. LLF: 92.62980045408254
Iteration: 13, Func. Count: 102, Neg. LLF: 92.629797526031
Iteration: 14, Func. Count: 108, Neg. LLF: 92.62979756919691
Optimization terminated successfully (Exit mode 0)
Current function value: 92.629797526031
Iterations: 14
Function evaluations: 108
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 23934489.890874084
Iteration: 2, Func. Count: 19, Neg. LLF: 95.22455872383259
Iteration: 3, Func. Count: 27, Neg. LLF: 95.54110534208777
Iteration: 4, Func. Count: 36, Neg. LLF: 96.22410470451806
Iteration: 5, Func. Count: 45, Neg. LLF: 94.48693319150904
Iteration: 6, Func. Count: 53, Neg. LLF: 94.46660108055623
Iteration: 7, Func. Count: 61, Neg. LLF: 94.46510024496848
Iteration: 8, Func. Count: 70, Neg. LLF: 94.4573532461398
Iteration: 9, Func. Count: 77, Neg. LLF: 94.45735324528987
Optimization terminated successfully (Exit mode 0)
Current function value: 94.4573532461398
Iterations: 9
Function evaluations: 77
Gradient evaluations: 9
Iteration: 1, Func. Count: 10, Neg. LLF: 23917274.39757824
Iteration: 2, Func. Count: 21, Neg. LLF: 95.15732706064452
Iteration: 3, Func. Count: 30, Neg. LLF: 95.5023809331794
Iteration: 4, Func. Count: 40, Neg. LLF: 105.81604835231707
Iteration: 5, Func. Count: 50, Neg. LLF: 94.40920248561117
Iteration: 6, Func. Count: 59, Neg. LLF: 94.39685158537526
Iteration: 7, Func. Count: 68, Neg. LLF: 94.3964929390932
Iteration: 8, Func. Count: 77, Neg. LLF: 94.396013007204
Iteration: 9, Func. Count: 86, Neg. LLF: 94.39592268577053
Iteration: 10, Func. Count: 95, Neg. LLF: 94.39591314589356
Iteration: 11, Func. Count: 103, Neg. LLF: 94.39591314595116
Optimization terminated successfully (Exit mode 0)
Current function value: 94.39591314589356
Iterations: 11
Function evaluations: 103
Gradient evaluations: 11
Iteration: 1, Func. Count: 11, Neg. LLF: 23870058.373897973
Iteration: 2, Func. Count: 23, Neg. LLF: 8783660.327424739
Iteration: 3, Func. Count: 34, Neg. LLF: 6785360.481046512
Iteration: 4, Func. Count: 45, Neg. LLF: 164.27271975951035
Iteration: 5, Func. Count: 57, Neg. LLF: 93.02856069475274
Iteration: 6, Func. Count: 67, Neg. LLF: 92.16944759861444
Iteration: 7, Func. Count: 78, Neg. LLF: 122.99960599317075
Iteration: 8, Func. Count: 91, Neg. LLF: 91.56617856767991
Iteration: 9, Func. Count: 101, Neg. LLF: 91.5330190896866
Iteration: 10, Func. Count: 111, Neg. LLF: 91.52510542643542
Iteration: 11, Func. Count: 121, Neg. LLF: 91.50522723271666
Iteration: 12, Func. Count: 131, Neg. LLF: 91.50221048668764
Iteration: 13, Func. Count: 141, Neg. LLF: 91.50111769224553
Iteration: 14, Func. Count: 151, Neg. LLF: 91.50078111102641
Iteration: 15, Func. Count: 161, Neg. LLF: 91.49980580788404
Iteration: 16, Func. Count: 171, Neg. LLF: 91.49899009012175
Iteration: 17, Func. Count: 181, Neg. LLF: 91.49720565741197
Iteration: 18, Func. Count: 191, Neg. LLF: 91.49526035774825
Iteration: 19, Func. Count: 201, Neg. LLF: 91.49384358864162
Iteration: 20, Func. Count: 211, Neg. LLF: 91.49349083338423
Iteration: 21, Func. Count: 221, Neg. LLF: 91.49347237203187
Iteration: 22, Func. Count: 230, Neg. LLF: 91.4934723720303
Optimization terminated successfully (Exit mode 0)
Current function value: 91.49347237203187
Iterations: 22
Function evaluations: 230
Gradient evaluations: 22
Iteration: 1, Func. Count: 12, Neg. LLF: 23816028.714177236
Iteration: 2, Func. Count: 25, Neg. LLF: 8608.386295986535
Iteration: 3, Func. Count: 37, Neg. LLF: 6134524.663587879
Iteration: 4, Func. Count: 49, Neg. LLF: 104.9500234682574
Iteration: 5, Func. Count: 61, Neg. LLF: 105.74386452008828
Iteration: 6, Func. Count: 73, Neg. LLF: 92.65826788334766
Iteration: 7, Func. Count: 84, Neg. LLF: 92.53901503475558
Iteration: 8, Func. Count: 96, Neg. LLF: 103.05220258638958
Iteration: 9, Func. Count: 109, Neg. LLF: 91.6472316668164
Iteration: 10, Func. Count: 120, Neg. LLF: 91.5117246284078
Iteration: 11, Func. Count: 131, Neg. LLF: 91.50150517224958
Iteration: 12, Func. Count: 142, Neg. LLF: 91.49998567787307
Iteration: 13, Func. Count: 153, Neg. LLF: 91.49957209412715
Iteration: 14, Func. Count: 164, Neg. LLF: 91.49905584566767
Iteration: 15, Func. Count: 175, Neg. LLF: 91.49806323496573
Iteration: 16, Func. Count: 186, Neg. LLF: 91.4967853862987
Iteration: 17, Func. Count: 197, Neg. LLF: 91.49528939342059
Iteration: 18, Func. Count: 208, Neg. LLF: 91.49414490409198
Iteration: 19, Func. Count: 219, Neg. LLF: 91.49359339641758
Iteration: 20, Func. Count: 230, Neg. LLF: 91.49348298675648
Iteration: 21, Func. Count: 241, Neg. LLF: 91.49347271289568
Iteration: 22, Func. Count: 252, Neg. LLF: 91.49347212306179
Optimization terminated successfully (Exit mode 0)
Current function value: 91.49347212306179
Iterations: 22
Function evaluations: 252
Gradient evaluations: 22
Iteration: 1, Func. Count: 5, Neg. LLF: 146.8530139364217
Iteration: 2, Func. Count: 12, Neg. LLF: 153.71926220568153
Iteration: 3, Func. Count: 17, Neg. LLF: 96.3848333236483
Iteration: 4, Func. Count: 21, Neg. LLF: 96.35721046908998
Iteration: 5, Func. Count: 25, Neg. LLF: 96.33300926249684
Iteration: 6, Func. Count: 29, Neg. LLF: 96.33208609708119
Iteration: 7, Func. Count: 33, Neg. LLF: 96.33127955260248
Iteration: 8, Func. Count: 37, Neg. LLF: 96.33097993015295
Iteration: 9, Func. Count: 41, Neg. LLF: 96.33095628944477
Iteration: 10, Func. Count: 45, Neg. LLF: 96.3309554464103
Optimization terminated successfully (Exit mode 0)
Current function value: 96.3309554464103
Iterations: 10
Function evaluations: 45
Gradient evaluations: 10
Iteration: 1, Func. Count: 6, Neg. LLF: 23743310.692954864
Iteration: 2, Func. Count: 13, Neg. LLF: 95.09588273226201
Iteration: 3, Func. Count: 18, Neg. LLF: 94.59378366663957
Iteration: 4, Func. Count: 23, Neg. LLF: 127.23828595056757
Iteration: 5, Func. Count: 29, Neg. LLF: 94.45844605560282
Iteration: 6, Func. Count: 34, Neg. LLF: 94.4573576229411
Iteration: 7, Func. Count: 39, Neg. LLF: 94.45735300974016
Iteration: 8, Func. Count: 43, Neg. LLF: 94.4573530097979
Optimization terminated successfully (Exit mode 0)
Current function value: 94.45735300974016
Iterations: 8
Function evaluations: 43
Gradient evaluations: 8
Iteration: 1, Func. Count: 7, Neg. LLF: 23660372.03385494
Iteration: 2, Func. Count: 15, Neg. LLF: 95.27333832100804
Iteration: 3, Func. Count: 21, Neg. LLF: 96.3794252705698
Iteration: 4, Func. Count: 28, Neg. LLF: 104.16613500359202
Iteration: 5, Func. Count: 36, Neg. LLF: 94.40075926951226
Iteration: 6, Func. Count: 42, Neg. LLF: 94.39840822023551
Iteration: 7, Func. Count: 48, Neg. LLF: 94.39653636878208
Iteration: 8, Func. Count: 54, Neg. LLF: 94.39607912604636
Iteration: 9, Func. Count: 60, Neg. LLF: 94.39591739260368
Iteration: 10, Func. Count: 66, Neg. LLF: 94.39591322550271
Iteration: 11, Func. Count: 71, Neg. LLF: 94.39591322517059
Optimization terminated successfully (Exit mode 0)
Current function value: 94.39591322550271
Iterations: 11
Function evaluations: 71
Gradient evaluations: 11
Iteration: 1, Func. Count: 8, Neg. LLF: 23686909.037821595
Iteration: 2, Func. Count: 17, Neg. LLF: 94.98433106543388
Iteration: 3, Func. Count: 24, Neg. LLF: 96.19711029881148
Iteration: 4, Func. Count: 32, Neg. LLF: 98.14006632303207
Iteration: 5, Func. Count: 41, Neg. LLF: 94.49409630947272
Iteration: 6, Func. Count: 48, Neg. LLF: 94.4927464444033
Iteration: 7, Func. Count: 55, Neg. LLF: 94.49265575660813
Iteration: 8, Func. Count: 62, Neg. LLF: 94.49264983970036
Iteration: 9, Func. Count: 68, Neg. LLF: 94.4926498395683
Optimization terminated successfully (Exit mode 0)
Current function value: 94.49264983970036
Iterations: 9
Function evaluations: 68
Gradient evaluations: 9
Iteration: 1, Func. Count: 9, Neg. LLF: 23680062.965926215
Iteration: 2, Func. Count: 19, Neg. LLF: 94.77213739759274
Iteration: 3, Func. Count: 27, Neg. LLF: 95.29426082355579
Iteration: 4, Func. Count: 36, Neg. LLF: 95.64065916838837
Iteration: 5, Func. Count: 45, Neg. LLF: 94.50860793722808
Iteration: 6, Func. Count: 53, Neg. LLF: 94.51217494957297
Iteration: 7, Func. Count: 62, Neg. LLF: 94.49410930408366
Iteration: 8, Func. Count: 70, Neg. LLF: 94.49321517327017
Iteration: 9, Func. Count: 78, Neg. LLF: 94.4922284907072
Iteration: 10, Func. Count: 85, Neg. LLF: 94.49222849057453
Optimization terminated successfully (Exit mode 0)
Current function value: 94.4922284907072
Iterations: 10
Function evaluations: 85
Gradient evaluations: 10
Iteration: 1, Func. Count: 6, Neg. LLF: 146.92676393654185
Iteration: 2, Func. Count: 14, Neg. LLF: 174.62719927138315
Iteration: 3, Func. Count: 20, Neg. LLF: 95.78046046253185
Iteration: 4, Func. Count: 25, Neg. LLF: 95.61203750727636
Iteration: 5, Func. Count: 30, Neg. LLF: 95.59677456212668
Iteration: 6, Func. Count: 35, Neg. LLF: 95.59369902800738
Iteration: 7, Func. Count: 40, Neg. LLF: 95.59361940672645
Iteration: 8, Func. Count: 45, Neg. LLF: 95.59358760580263
Iteration: 9, Func. Count: 50, Neg. LLF: 95.59355939084652
Iteration: 10, Func. Count: 55, Neg. LLF: 95.59355608826513
Iteration: 11, Func. Count: 60, Neg. LLF: 95.59355500887061
Iteration: 12, Func. Count: 64, Neg. LLF: 95.59355485485756
Optimization terminated successfully (Exit mode 0)
Current function value: 95.59355500887061
Iterations: 12
Function evaluations: 64
Gradient evaluations: 12
Iteration: 1, Func. Count: 7, Neg. LLF: 6043880.21682296
Iteration: 2, Func. Count: 15, Neg. LLF: 103.14301799888992
Iteration: 3, Func. Count: 23, Neg. LLF: 173.88848924188855
Iteration: 4, Func. Count: 30, Neg. LLF: 95.26713793301319
Iteration: 5, Func. Count: 36, Neg. LLF: 95.60894342855231
Iteration: 6, Func. Count: 43, Neg. LLF: 94.99988229897717
Iteration: 7, Func. Count: 49, Neg. LLF: 94.55000933469958
Iteration: 8, Func. Count: 55, Neg. LLF: 94.53175353640853
Iteration: 9, Func. Count: 61, Neg. LLF: 94.49581247625427
Iteration: 10, Func. Count: 67, Neg. LLF: 94.46729956838655
Iteration: 11, Func. Count: 73, Neg. LLF: 26299579.23903468
Iteration: 12, Func. Count: 83, Neg. LLF: 100.92071117708474
Iteration: 13, Func. Count: 91, Neg. LLF: 94.45735301492927
Iteration: 14, Func. Count: 97, Neg. LLF: 96.85828341908167
Optimization terminated successfully (Exit mode 0)
Current function value: 94.45735296368755
Iterations: 16
Function evaluations: 101
Gradient evaluations: 14
Iteration: 1, Func. Count: 8, Neg. LLF: 24813053.91488812
Iteration: 2, Func. Count: 17, Neg. LLF: 97.33732972992475
Iteration: 3, Func. Count: 25, Neg. LLF: 146.88183494106545
Iteration: 4, Func. Count: 33, Neg. LLF: 93.90766557779027
Iteration: 5, Func. Count: 40, Neg. LLF: 94.58698592071244
Iteration: 6, Func. Count: 48, Neg. LLF: 93.66941016610703
Iteration: 7, Func. Count: 55, Neg. LLF: 93.66407854262881
Iteration: 8, Func. Count: 62, Neg. LLF: 93.66391063112574
Iteration: 9, Func. Count: 69, Neg. LLF: 93.66583079171042
Iteration: 10, Func. Count: 78, Neg. LLF: 93.66403329461643
Iteration: 11, Func. Count: 87, Neg. LLF: 93.6640238686276
Iteration: 12, Func. Count: 95, Neg. LLF: 93.66402387618433
Iteration: 13, Func. Count: 101, Neg. LLF: 93.66402381181845
Optimization terminated successfully (Exit mode 0)
Current function value: 93.66402387618433
Iterations: 14
Function evaluations: 101
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 25148066.048373774
Iteration: 2, Func. Count: 19, Neg. LLF: 97.6729170486004
Iteration: 3, Func. Count: 28, Neg. LLF: 166.95844348432118
Iteration: 4, Func. Count: 37, Neg. LLF: 93.58779166534279
Iteration: 5, Func. Count: 45, Neg. LLF: 94.57629511998958
Iteration: 6, Func. Count: 55, Neg. LLF: 92.73270277263386
Iteration: 7, Func. Count: 64, Neg. LLF: 92.54047044868666
Iteration: 8, Func. Count: 73, Neg. LLF: 92.38013697679347
Iteration: 9, Func. Count: 81, Neg. LLF: 92.35602653293054
Iteration: 10, Func. Count: 89, Neg. LLF: 92.35365582711586
Iteration: 11, Func. Count: 97, Neg. LLF: 92.35353200995907
Iteration: 12, Func. Count: 105, Neg. LLF: 92.35352858627238
Iteration: 13, Func. Count: 112, Neg. LLF: 92.35352857395642
Optimization terminated successfully (Exit mode 0)
Current function value: 92.35352858627238
Iterations: 13
Function evaluations: 112
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 25144697.474342056
Iteration: 2, Func. Count: 21, Neg. LLF: 94.99579933106565
Iteration: 3, Func. Count: 30, Neg. LLF: 94.36135641977084
Iteration: 4, Func. Count: 39, Neg. LLF: 96.60076426603408
Iteration: 5, Func. Count: 49, Neg. LLF: 96.02036048062585
Iteration: 6, Func. Count: 59, Neg. LLF: 93.74363466247921
Iteration: 7, Func. Count: 68, Neg. LLF: 93.69334975497503
Iteration: 8, Func. Count: 77, Neg. LLF: 93.67968763557187
Iteration: 9, Func. Count: 86, Neg. LLF: 93.66410703949808
Iteration: 10, Func. Count: 95, Neg. LLF: 93.66402482163681
Iteration: 11, Func. Count: 104, Neg. LLF: 93.66402362245967
Iteration: 12, Func. Count: 112, Neg. LLF: 93.66402356116893
Optimization terminated successfully (Exit mode 0)
Current function value: 93.66402362245967
Iterations: 12
Function evaluations: 112
Gradient evaluations: 12
Iteration: 1, Func. Count: 7, Neg. LLF: 145.4521410759278
Iteration: 2, Func. Count: 16, Neg. LLF: 163.1692046170466
Iteration: 3, Func. Count: 23, Neg. LLF: 95.68934436054612
Iteration: 4, Func. Count: 29, Neg. LLF: 95.60498208791431
Iteration: 5, Func. Count: 35, Neg. LLF: 95.59457992000972
Iteration: 6, Func. Count: 41, Neg. LLF: 95.59374132381377
Iteration: 7, Func. Count: 47, Neg. LLF: 95.59366381209367
Iteration: 8, Func. Count: 53, Neg. LLF: 95.5935771410308
Iteration: 9, Func. Count: 59, Neg. LLF: 95.59355680350403
Iteration: 10, Func. Count: 65, Neg. LLF: 95.59355485689625
Iteration: 11, Func. Count: 70, Neg. LLF: 95.59355487136548
Optimization terminated successfully (Exit mode 0)
Current function value: 95.59355485689625
Iterations: 11
Function evaluations: 70
Gradient evaluations: 11
Iteration: 1, Func. Count: 8, Neg. LLF: 5938166.50846075
Iteration: 2, Func. Count: 17, Neg. LLF: 102.28718559780626
Iteration: 3, Func. Count: 26, Neg. LLF: 173.10099727371866
Iteration: 4, Func. Count: 34, Neg. LLF: 116.89674319903948
Iteration: 5, Func. Count: 43, Neg. LLF: 95.15480051385002
Iteration: 6, Func. Count: 50, Neg. LLF: 96.1197306441872
Iteration: 7, Func. Count: 58, Neg. LLF: 94.55314998519138
Iteration: 8, Func. Count: 65, Neg. LLF: 94.51610574452796
Iteration: 9, Func. Count: 72, Neg. LLF: 94.4595130344325
Iteration: 10, Func. Count: 79, Neg. LLF: 94.45856368779101
Iteration: 11, Func. Count: 86, Neg. LLF: 94.45760703807865
Iteration: 12, Func. Count: 93, Neg. LLF: 94.45738535061726
Iteration: 13, Func. Count: 100, Neg. LLF: 94.45736339103641
Iteration: 14, Func. Count: 107, Neg. LLF: 94.45736182586519
Iteration: 15, Func. Count: 114, Neg. LLF: 94.45735739394472
Iteration: 16, Func. Count: 121, Neg. LLF: 94.45735603978663
Optimization terminated successfully (Exit mode 0)
Current function value: 94.45735603978663
Iterations: 16
Function evaluations: 121
Gradient evaluations: 16
Iteration: 1, Func. Count: 9, Neg. LLF: 24671569.184902146
Iteration: 2, Func. Count: 19, Neg. LLF: 97.04540923676858
Iteration: 3, Func. Count: 28, Neg. LLF: 153.3772257192581
Iteration: 4, Func. Count: 37, Neg. LLF: 93.92390456981404
Iteration: 5, Func. Count: 45, Neg. LLF: 94.59364658785168
Iteration: 6, Func. Count: 54, Neg. LLF: 93.66819659566019
Iteration: 7, Func. Count: 62, Neg. LLF: 93.6640658686812
Iteration: 8, Func. Count: 70, Neg. LLF: 93.66401961090658
Iteration: 9, Func. Count: 78, Neg. LLF: 93.66441826854184
Optimization terminated successfully (Exit mode 0)
Current function value: 93.66401952241257
Iterations: 10
Function evaluations: 80
Gradient evaluations: 9
Iteration: 1, Func. Count: 10, Neg. LLF: 24897187.969364256
Iteration: 2, Func. Count: 21, Neg. LLF: 97.42621377688532
Iteration: 3, Func. Count: 31, Neg. LLF: 180.50848429269368
Iteration: 4, Func. Count: 41, Neg. LLF: 93.81874905528142
Iteration: 5, Func. Count: 50, Neg. LLF: 94.51377034371184
Iteration: 6, Func. Count: 60, Neg. LLF: 92.99347897152998
Iteration: 7, Func. Count: 70, Neg. LLF: 92.7645594906135
Iteration: 8, Func. Count: 79, Neg. LLF: 92.44542294369018
Iteration: 9, Func. Count: 88, Neg. LLF: 99.17652493387466
Iteration: 10, Func. Count: 98, Neg. LLF: 92.35608781987695
Iteration: 11, Func. Count: 107, Neg. LLF: 92.4146558686841
Iteration: 12, Func. Count: 117, Neg. LLF: 92.34944735664097
Iteration: 13, Func. Count: 126, Neg. LLF: 92.34812127790201
Iteration: 14, Func. Count: 135, Neg. LLF: 92.34801885788669
Iteration: 15, Func. Count: 144, Neg. LLF: 92.34801743626956
Iteration: 16, Func. Count: 152, Neg. LLF: 92.34801742106708
Optimization terminated successfully (Exit mode 0)
Current function value: 92.34801743626956
Iterations: 16
Function evaluations: 152
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 24910028.55898674
Iteration: 2, Func. Count: 23, Neg. LLF: 95.39756536819391
Iteration: 3, Func. Count: 33, Neg. LLF: 102.96385460600085
Iteration: 4, Func. Count: 44, Neg. LLF: 96.90440548340645
Iteration: 5, Func. Count: 55, Neg. LLF: 94.29935450576781
Iteration: 6, Func. Count: 66, Neg. LLF: 93.81036762436707
Iteration: 7, Func. Count: 76, Neg. LLF: 93.71269242556504
Iteration: 8, Func. Count: 86, Neg. LLF: 93.70736617228727
Iteration: 9, Func. Count: 96, Neg. LLF: 93.69884972142039
Iteration: 10, Func. Count: 106, Neg. LLF: 93.68271081213565
Iteration: 11, Func. Count: 116, Neg. LLF: 93.6794795655597
Iteration: 12, Func. Count: 126, Neg. LLF: 93.66546763937363
Iteration: 13, Func. Count: 136, Neg. LLF: 93.66409288540865
Iteration: 14, Func. Count: 146, Neg. LLF: 93.66402332545836
Iteration: 15, Func. Count: 156, Neg. LLF: 93.66402212734799
Iteration: 16, Func. Count: 166, Neg. LLF: 93.66407014381288
Optimization terminated successfully (Exit mode 0)
Current function value: 93.6640221435065
Iterations: 17
Function evaluations: 168
Gradient evaluations: 16
Iteration: 1, Func. Count: 8, Neg. LLF: 121.14859396283887
Iteration: 2, Func. Count: 18, Neg. LLF: 62952708.170850046
Iteration: 3, Func. Count: 26, Neg. LLF: 7091583.444484666
Iteration: 4, Func. Count: 34, Neg. LLF: 92.75321438397008
Iteration: 5, Func. Count: 41, Neg. LLF: 492272.62413011165
Iteration: 6, Func. Count: 50, Neg. LLF: 92.68714295479425
Iteration: 7, Func. Count: 57, Neg. LLF: 92.63694431815914
Iteration: 8, Func. Count: 64, Neg. LLF: 92.63423562912445
Iteration: 9, Func. Count: 71, Neg. LLF: 92.63255637621289
Iteration: 10, Func. Count: 78, Neg. LLF: 92.6301126013581
Iteration: 11, Func. Count: 85, Neg. LLF: 92.62983543179558
Iteration: 12, Func. Count: 92, Neg. LLF: 92.62981137708486
Iteration: 13, Func. Count: 99, Neg. LLF: 92.62979887071342
Iteration: 14, Func. Count: 106, Neg. LLF: 92.62979739043433
Iteration: 15, Func. Count: 112, Neg. LLF: 92.62979739043533
Optimization terminated successfully (Exit mode 0)
Current function value: 92.62979739043433
Iterations: 15
Function evaluations: 112
Gradient evaluations: 15
Iteration: 1, Func. Count: 9, Neg. LLF: 102.91481745606696
Iteration: 2, Func. Count: 18, Neg. LLF: 336.45172680364396
Iteration: 3, Func. Count: 28, Neg. LLF: 92.88624757728591
Iteration: 4, Func. Count: 36, Neg. LLF: 112.16395058919474
Iteration: 5, Func. Count: 47, Neg. LLF: 92.68436507222788
Iteration: 6, Func. Count: 55, Neg. LLF: 92.65430876308572
Iteration: 7, Func. Count: 63, Neg. LLF: 92.6325080005399
Iteration: 8, Func. Count: 71, Neg. LLF: 92.63100402741402
Iteration: 9, Func. Count: 79, Neg. LLF: 92.63047211014738
Iteration: 10, Func. Count: 87, Neg. LLF: 92.63004813773547
Iteration: 11, Func. Count: 95, Neg. LLF: 92.62982079789661
Iteration: 12, Func. Count: 103, Neg. LLF: 92.62979874076207
Iteration: 13, Func. Count: 111, Neg. LLF: 92.62979731042049
Iteration: 14, Func. Count: 118, Neg. LLF: 92.62979733542954
Optimization terminated successfully (Exit mode 0)
Current function value: 92.62979731042049
Iterations: 14
Function evaluations: 118
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 102.41780733797215
Iteration: 2, Func. Count: 20, Neg. LLF: 381.7270082972406
Iteration: 3, Func. Count: 31, Neg. LLF: 99.05307244199105
Iteration: 4, Func. Count: 41, Neg. LLF: 93.3163512757207
Iteration: 5, Func. Count: 51, Neg. LLF: 483.9217559578157
Iteration: 6, Func. Count: 61, Neg. LLF: 92.90622993128302
Iteration: 7, Func. Count: 71, Neg. LLF: 92.51555826085611
Iteration: 8, Func. Count: 80, Neg. LLF: 92.51380528561513
Iteration: 9, Func. Count: 89, Neg. LLF: 92.51350297408973
Iteration: 10, Func. Count: 98, Neg. LLF: 92.51347547078927
Iteration: 11, Func. Count: 107, Neg. LLF: 92.51347328850737
Iteration: 12, Func. Count: 115, Neg. LLF: 92.51347328849502
Optimization terminated successfully (Exit mode 0)
Current function value: 92.51347328850737
Iterations: 12
Function evaluations: 115
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 100.69570399233233
Iteration: 2, Func. Count: 22, Neg. LLF: 114.75305030752209
Iteration: 3, Func. Count: 33, Neg. LLF: 94.79291810822485
Iteration: 4, Func. Count: 44, Neg. LLF: 96.58372356888276
Iteration: 5, Func. Count: 55, Neg. LLF: 92.4809396366252
Iteration: 6, Func. Count: 66, Neg. LLF: 91.52130570830457
Iteration: 7, Func. Count: 76, Neg. LLF: 70891115.15952101
Iteration: 8, Func. Count: 89, Neg. LLF: 91.49399162955721
Iteration: 9, Func. Count: 99, Neg. LLF: 91.49352347325495
Iteration: 10, Func. Count: 109, Neg. LLF: 91.49347323419173
Iteration: 11, Func. Count: 119, Neg. LLF: 91.49347213471832
Iteration: 12, Func. Count: 128, Neg. LLF: 91.49347213472477
Optimization terminated successfully (Exit mode 0)
Current function value: 91.49347213471832
Iterations: 12
Function evaluations: 128
Gradient evaluations: 12
Iteration: 1, Func. Count: 12, Neg. LLF: 101.62928569048682
Iteration: 2, Func. Count: 24, Neg. LLF: 114.98090157893895
Iteration: 3, Func. Count: 36, Neg. LLF: 97.05070988078964
Iteration: 4, Func. Count: 49, Neg. LLF: 93.4465789682334
Iteration: 5, Func. Count: 61, Neg. LLF: 96.44367537040466
Iteration: 6, Func. Count: 73, Neg. LLF: 91.52942015715811
Iteration: 7, Func. Count: 84, Neg. LLF: 98.08484546684004
Iteration: 8, Func. Count: 97, Neg. LLF: 91.49615653138002
Iteration: 9, Func. Count: 108, Neg. LLF: 91.49393037212158
Iteration: 10, Func. Count: 119, Neg. LLF: 91.49349635757184
Iteration: 11, Func. Count: 130, Neg. LLF: 91.49347480899047
Iteration: 12, Func. Count: 141, Neg. LLF: 91.49347223037562
Iteration: 13, Func. Count: 151, Neg. LLF: 91.4934722922154
Optimization terminated successfully (Exit mode 0)
Current function value: 91.49347223037562
Iterations: 13
Function evaluations: 151
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 115.616101481391
Iteration: 2, Func. Count: 20, Neg. LLF: 15677550.970863666
Iteration: 3, Func. Count: 29, Neg. LLF: 6638503.144472282
Iteration: 4, Func. Count: 38, Neg. LLF: 92.84812549156013
Iteration: 5, Func. Count: 46, Neg. LLF: 252.04191622502893
Iteration: 6, Func. Count: 56, Neg. LLF: 92.80028524344142
Iteration: 7, Func. Count: 65, Neg. LLF: 92.6356591382005
Iteration: 8, Func. Count: 73, Neg. LLF: 92.63189014368655
Iteration: 9, Func. Count: 81, Neg. LLF: 92.63052335797246
Iteration: 10, Func. Count: 89, Neg. LLF: 92.6299419844512
Iteration: 11, Func. Count: 97, Neg. LLF: 92.62986044012408
Iteration: 12, Func. Count: 105, Neg. LLF: 92.62981278065102
Iteration: 13, Func. Count: 113, Neg. LLF: 92.6297992705026
Iteration: 14, Func. Count: 121, Neg. LLF: 92.62979737249258
Iteration: 15, Func. Count: 128, Neg. LLF: 92.62979741565277
Optimization terminated successfully (Exit mode 0)
Current function value: 92.62979737249258
Iterations: 15
Function evaluations: 128
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 96.48607950837219
Iteration: 2, Func. Count: 20, Neg. LLF: 301.8637869454098
Iteration: 3, Func. Count: 31, Neg. LLF: 94.0634684481668
Iteration: 4, Func. Count: 40, Neg. LLF: 97.10192011430141
Iteration: 5, Func. Count: 50, Neg. LLF: 92.7068953791074
Iteration: 6, Func. Count: 59, Neg. LLF: 92.97826410020035
Iteration: 7, Func. Count: 69, Neg. LLF: 92.93450197746527
Iteration: 8, Func. Count: 79, Neg. LLF: 92.63230409220525
Iteration: 9, Func. Count: 88, Neg. LLF: 92.62986525396998
Iteration: 10, Func. Count: 97, Neg. LLF: 92.62979822426942
Iteration: 11, Func. Count: 106, Neg. LLF: 92.62979742857911
Optimization terminated successfully (Exit mode 0)
Current function value: 92.62979742857911
Iterations: 11
Function evaluations: 106
Gradient evaluations: 11
Iteration: 1, Func. Count: 11, Neg. LLF: 24630888.747273777
Iteration: 2, Func. Count: 23, Neg. LLF: 96.94556191930282
Iteration: 3, Func. Count: 34, Neg. LLF: 157.91750718975246
Iteration: 4, Func. Count: 45, Neg. LLF: 3851038.475684123
Iteration: 5, Func. Count: 56, Neg. LLF: 5564546.493017489
Iteration: 6, Func. Count: 67, Neg. LLF: 120.22510179008282
Iteration: 7, Func. Count: 78, Neg. LLF: 95.44494308631882
Iteration: 8, Func. Count: 89, Neg. LLF: 94.23510485024023
Iteration: 9, Func. Count: 100, Neg. LLF: 98.91801022983145
Iteration: 10, Func. Count: 111, Neg. LLF: 92.67345725604204
Iteration: 11, Func. Count: 121, Neg. LLF: 92.90581701180521
Iteration: 12, Func. Count: 132, Neg. LLF: 95.76230607857282
Iteration: 13, Func. Count: 144, Neg. LLF: 92.5761399527625
Iteration: 14, Func. Count: 154, Neg. LLF: 92.52605558961912
Iteration: 15, Func. Count: 164, Neg. LLF: 92.51449103276317
Iteration: 16, Func. Count: 174, Neg. LLF: 92.51434847439594
Iteration: 17, Func. Count: 184, Neg. LLF: 92.51429897626308
Iteration: 18, Func. Count: 194, Neg. LLF: 92.51424124227077
Iteration: 19, Func. Count: 204, Neg. LLF: 92.51411356488099
Iteration: 20, Func. Count: 214, Neg. LLF: 92.51389603654059
Iteration: 21, Func. Count: 224, Neg. LLF: 92.51363560406313
Iteration: 22, Func. Count: 234, Neg. LLF: 92.51349887740288
Iteration: 23, Func. Count: 244, Neg. LLF: 92.51347488422965
Iteration: 24, Func. Count: 254, Neg. LLF: 92.5134732975377
Iteration: 25, Func. Count: 263, Neg. LLF: 92.51347329755764
Optimization terminated successfully (Exit mode 0)
Current function value: 92.5134732975377
Iterations: 25
Function evaluations: 263
Gradient evaluations: 25
Iteration: 1, Func. Count: 12, Neg. LLF: 24706674.75144071
Iteration: 2, Func. Count: 25, Neg. LLF: 3517061.5790762105
Iteration: 3, Func. Count: 37, Neg. LLF: 41024.83621241577
Iteration: 4, Func. Count: 49, Neg. LLF: 96.85003107295233
Iteration: 5, Func. Count: 61, Neg. LLF: 94.60449390230187
Iteration: 6, Func. Count: 73, Neg. LLF: 94.31218308390923
Iteration: 7, Func. Count: 85, Neg. LLF: 93.54708891642115
Iteration: 8, Func. Count: 97, Neg. LLF: 95.19500644255986
Iteration: 9, Func. Count: 109, Neg. LLF: 93.06351192437157
Iteration: 10, Func. Count: 120, Neg. LLF: 93.28447838857016
Iteration: 11, Func. Count: 132, Neg. LLF: 93.05595839662837
Iteration: 12, Func. Count: 144, Neg. LLF: 93.00190231033913
Iteration: 13, Func. Count: 155, Neg. LLF: 92.92268267234384
Iteration: 14, Func. Count: 166, Neg. LLF: 92.82085829571592
Iteration: 15, Func. Count: 177, Neg. LLF: 93.1130282225928
Iteration: 16, Func. Count: 189, Neg. LLF: 92.47438976198953
Iteration: 17, Func. Count: 200, Neg. LLF: 92.2514901413663
Iteration: 18, Func. Count: 211, Neg. LLF: 92.12824098667551
Iteration: 19, Func. Count: 222, Neg. LLF: 91.90240505364454
Iteration: 20, Func. Count: 233, Neg. LLF: 91.5991094219693
Iteration: 21, Func. Count: 244, Neg. LLF: 91.52349340272998
Iteration: 22, Func. Count: 255, Neg. LLF: 91.50781066441888
Iteration: 23, Func. Count: 266, Neg. LLF: 91.49951759997793
Iteration: 24, Func. Count: 277, Neg. LLF: 91.49780919993638
Iteration: 25, Func. Count: 288, Neg. LLF: 91.49445828110838
Iteration: 26, Func. Count: 299, Neg. LLF: 91.4937010458917
Iteration: 27, Func. Count: 310, Neg. LLF: 91.4934781122267
Iteration: 28, Func. Count: 321, Neg. LLF: 91.49347221674564
Iteration: 29, Func. Count: 331, Neg. LLF: 91.49347221671385
Optimization terminated successfully (Exit mode 0)
Current function value: 91.49347221674564
Iterations: 29
Function evaluations: 331
Gradient evaluations: 29
Iteration: 1, Func. Count: 13, Neg. LLF: 24623568.73042631
Iteration: 2, Func. Count: 27, Neg. LLF: 3497211.757005117
Iteration: 3, Func. Count: 40, Neg. LLF: 5661033.371151011
Iteration: 4, Func. Count: 53, Neg. LLF: 101.5793485447377
Iteration: 5, Func. Count: 66, Neg. LLF: 131.86461355350397
Iteration: 6, Func. Count: 79, Neg. LLF: 96.61460138132244
Iteration: 7, Func. Count: 92, Neg. LLF: 93.696475141112
Iteration: 8, Func. Count: 105, Neg. LLF: 92.96588867800334
Iteration: 9, Func. Count: 118, Neg. LLF: 91.99419912900791
Iteration: 10, Func. Count: 130, Neg. LLF: 93.73412177212494
Iteration: 11, Func. Count: 143, Neg. LLF: 91.73799780237022
Iteration: 12, Func. Count: 155, Neg. LLF: 91.58026140983051
Iteration: 13, Func. Count: 167, Neg. LLF: 91.53554244149484
Iteration: 14, Func. Count: 179, Neg. LLF: 91.53693903293298
Iteration: 15, Func. Count: 192, Neg. LLF: 91.52952447256192
Iteration: 16, Func. Count: 204, Neg. LLF: 91.5268308359862
Iteration: 17, Func. Count: 216, Neg. LLF: 91.52062508073273
Iteration: 18, Func. Count: 228, Neg. LLF: 91.51083778512884
Iteration: 19, Func. Count: 240, Neg. LLF: 91.50066920541214
Iteration: 20, Func. Count: 252, Neg. LLF: 91.49463007686558
Iteration: 21, Func. Count: 264, Neg. LLF: 91.49348617770698
Iteration: 22, Func. Count: 276, Neg. LLF: 91.4934724237496
Iteration: 23, Func. Count: 287, Neg. LLF: 91.49347248558705
Optimization terminated successfully (Exit mode 0)
Current function value: 91.4934724237496
Iterations: 23
Function evaluations: 287
Gradient evaluations: 23
Iteration: 1, Func. Count: 6, Neg. LLF: 150.6013221649682
Iteration: 2, Func. Count: 14, Neg. LLF: 156.00256467985594
Iteration: 3, Func. Count: 20, Neg. LLF: 96.37922408219305
Iteration: 4, Func. Count: 25, Neg. LLF: 96.35159214527894
Iteration: 5, Func. Count: 30, Neg. LLF: 96.3321058417853
Iteration: 6, Func. Count: 35, Neg. LLF: 96.33144853409544
Iteration: 7, Func. Count: 40, Neg. LLF: 96.33115332281218
Iteration: 8, Func. Count: 45, Neg. LLF: 96.33096261175638
Iteration: 9, Func. Count: 50, Neg. LLF: 96.33095567980888
Iteration: 10, Func. Count: 54, Neg. LLF: 96.33095580406838
Optimization terminated successfully (Exit mode 0)
Current function value: 96.33095567980888
Iterations: 10
Function evaluations: 54
Gradient evaluations: 10
Iteration: 1, Func. Count: 7, Neg. LLF: 23571742.933724836
Iteration: 2, Func. Count: 15, Neg. LLF: 94.89422000768356
Iteration: 3, Func. Count: 21, Neg. LLF: 94.54669417306675
Iteration: 4, Func. Count: 27, Neg. LLF: 101.02319058993527
Iteration: 5, Func. Count: 34, Neg. LLF: 94.45767413594788
Iteration: 6, Func. Count: 40, Neg. LLF: 94.45735446737105
Iteration: 7, Func. Count: 46, Neg. LLF: 94.45735345645363
Iteration: 8, Func. Count: 51, Neg. LLF: 94.45735345645254
Optimization terminated successfully (Exit mode 0)
Current function value: 94.45735345645363
Iterations: 8
Function evaluations: 51
Gradient evaluations: 8
Iteration: 1, Func. Count: 8, Neg. LLF: 23562774.808201656
Iteration: 2, Func. Count: 17, Neg. LLF: 95.18334567530147
Iteration: 3, Func. Count: 24, Neg. LLF: 95.79362066685208
Iteration: 4, Func. Count: 32, Neg. LLF: 104.01722036506553
Iteration: 5, Func. Count: 40, Neg. LLF: 94.40303691875975
Iteration: 6, Func. Count: 47, Neg. LLF: 94.39672070584146
Iteration: 7, Func. Count: 54, Neg. LLF: 94.3961382967493
Iteration: 8, Func. Count: 61, Neg. LLF: 94.3960264338246
Iteration: 9, Func. Count: 68, Neg. LLF: 94.39591539531708
Iteration: 10, Func. Count: 75, Neg. LLF: 94.39591314918061
Iteration: 11, Func. Count: 81, Neg. LLF: 94.3959131487855
Optimization terminated successfully (Exit mode 0)
Current function value: 94.39591314918061
Iterations: 11
Function evaluations: 81
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 23562124.682890035
Iteration: 2, Func. Count: 19, Neg. LLF: 94.89243278936348
Iteration: 3, Func. Count: 27, Neg. LLF: 95.55937505888018
Iteration: 4, Func. Count: 36, Neg. LLF: 99.30141643198495
Iteration: 5, Func. Count: 45, Neg. LLF: 94.49521004634788
Iteration: 6, Func. Count: 53, Neg. LLF: 94.49269014285414
Iteration: 7, Func. Count: 61, Neg. LLF: 94.4926505614553
Iteration: 8, Func. Count: 69, Neg. LLF: 94.49264976925082
Optimization terminated successfully (Exit mode 0)
Current function value: 94.49264976925082
Iterations: 8
Function evaluations: 69
Gradient evaluations: 8
Iteration: 1, Func. Count: 10, Neg. LLF: 23550445.61070698
Iteration: 2, Func. Count: 21, Neg. LLF: 94.69711723623813
Iteration: 3, Func. Count: 30, Neg. LLF: 94.60589358388405
Iteration: 4, Func. Count: 39, Neg. LLF: 99.65402831085088
Iteration: 5, Func. Count: 49, Neg. LLF: 94.56660841603015
Iteration: 6, Func. Count: 59, Neg. LLF: 94.53119539023231
Iteration: 7, Func. Count: 68, Neg. LLF: 94.52724775092861
Iteration: 8, Func. Count: 77, Neg. LLF: 94.52719998049693
Iteration: 9, Func. Count: 86, Neg. LLF: 94.52715589118276
Iteration: 10, Func. Count: 95, Neg. LLF: 94.52367897374494
Iteration: 11, Func. Count: 104, Neg. LLF: 94.51692018369972
Iteration: 12, Func. Count: 113, Neg. LLF: 94.50418109250565
Iteration: 13, Func. Count: 122, Neg. LLF: 94.49414676583369
Iteration: 14, Func. Count: 131, Neg. LLF: 94.49256287702015
Iteration: 15, Func. Count: 140, Neg. LLF: 94.49223024624955
Iteration: 16, Func. Count: 149, Neg. LLF: 94.4922283565917
Iteration: 17, Func. Count: 157, Neg. LLF: 94.49222835664452
Optimization terminated successfully (Exit mode 0)
Current function value: 94.4922283565917
Iterations: 17
Function evaluations: 157
Gradient evaluations: 17
Iteration: 1, Func. Count: 7, Neg. LLF: 150.97906541005176
Iteration: 2, Func. Count: 16, Neg. LLF: 185.76509373198496
Iteration: 3, Func. Count: 23, Neg. LLF: 95.62500085167382
Iteration: 4, Func. Count: 29, Neg. LLF: 95.61235050218528
Iteration: 5, Func. Count: 35, Neg. LLF: 95.60552540410103
Iteration: 6, Func. Count: 41, Neg. LLF: 95.59882259761171
Iteration: 7, Func. Count: 47, Neg. LLF: 95.59371901905071
Iteration: 8, Func. Count: 53, Neg. LLF: 95.59355602333278
Iteration: 9, Func. Count: 59, Neg. LLF: 95.59355476882918
Iteration: 10, Func. Count: 64, Neg. LLF: 95.59355461477325
Optimization terminated successfully (Exit mode 0)
Current function value: 95.59355476882918
Iterations: 10
Function evaluations: 64
Gradient evaluations: 10
Iteration: 1, Func. Count: 8, Neg. LLF: 5916295.833968909
Iteration: 2, Func. Count: 17, Neg. LLF: 102.08039716330329
Iteration: 3, Func. Count: 26, Neg. LLF: 129.99568010156372
Iteration: 4, Func. Count: 34, Neg. LLF: 96.64044212573657
Iteration: 5, Func. Count: 42, Neg. LLF: 95.51007729223443
Iteration: 6, Func. Count: 49, Neg. LLF: 95.13691236990901
Iteration: 7, Func. Count: 56, Neg. LLF: 167126013.93186992
Iteration: 8, Func. Count: 65, Neg. LLF: 34640.539707583106
Iteration: 9, Func. Count: 75, Neg. LLF: 94.47012709973777
Iteration: 10, Func. Count: 82, Neg. LLF: 94.45738186669078
Iteration: 11, Func. Count: 89, Neg. LLF: 94.4573530158309
Iteration: 12, Func. Count: 95, Neg. LLF: 94.45735301565614
Optimization terminated successfully (Exit mode 0)
Current function value: 94.4573530158309
Iterations: 13
Function evaluations: 95
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 24616259.27380782
Iteration: 2, Func. Count: 19, Neg. LLF: 97.02679423071099
Iteration: 3, Func. Count: 28, Neg. LLF: 155.32037413573448
Iteration: 4, Func. Count: 37, Neg. LLF: 93.92963148981654
Iteration: 5, Func. Count: 45, Neg. LLF: 94.51247976807068
Iteration: 6, Func. Count: 54, Neg. LLF: 93.67252038448967
Iteration: 7, Func. Count: 62, Neg. LLF: 93.66410465935807
Iteration: 8, Func. Count: 70, Neg. LLF: 93.66402399104639
Iteration: 9, Func. Count: 78, Neg. LLF: 93.66424934165809
Optimization terminated successfully (Exit mode 0)
Current function value: 93.6640237950767
Iterations: 10
Function evaluations: 80
Gradient evaluations: 9
Iteration: 1, Func. Count: 10, Neg. LLF: 24833876.37081859
Iteration: 2, Func. Count: 21, Neg. LLF: 97.51922227746842
Iteration: 3, Func. Count: 31, Neg. LLF: 190.5870668501256
Iteration: 4, Func. Count: 41, Neg. LLF: 93.71312070445803
Iteration: 5, Func. Count: 50, Neg. LLF: 94.5204156247725
Iteration: 6, Func. Count: 61, Neg. LLF: 93.02147396803653
Iteration: 7, Func. Count: 71, Neg. LLF: 92.42424728531944
Iteration: 8, Func. Count: 80, Neg. LLF: 92.37137277966562
Iteration: 9, Func. Count: 89, Neg. LLF: 92.38430879638283
Iteration: 10, Func. Count: 99, Neg. LLF: 92.3982605955452
Iteration: 11, Func. Count: 109, Neg. LLF: 92.3515928934475
Iteration: 12, Func. Count: 118, Neg. LLF: 92.35157338718349
Iteration: 13, Func. Count: 127, Neg. LLF: 92.35157130081897
Iteration: 14, Func. Count: 135, Neg. LLF: 92.35157128455496
Optimization terminated successfully (Exit mode 0)
Current function value: 92.35157130081897
Iterations: 14
Function evaluations: 135
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 24805377.82104823
Iteration: 2, Func. Count: 23, Neg. LLF: 95.33496970973422
Iteration: 3, Func. Count: 33, Neg. LLF: 101.62737625388206
Iteration: 4, Func. Count: 44, Neg. LLF: 97.33888944598016
Iteration: 5, Func. Count: 55, Neg. LLF: 94.26251312795563
Iteration: 6, Func. Count: 66, Neg. LLF: 93.79497634512917
Iteration: 7, Func. Count: 76, Neg. LLF: 94.16523421675063
Iteration: 8, Func. Count: 87, Neg. LLF: 93.70069537937268
Iteration: 9, Func. Count: 97, Neg. LLF: 93.6845265302657
Iteration: 10, Func. Count: 107, Neg. LLF: 93.67938103596029
Iteration: 11, Func. Count: 117, Neg. LLF: 93.66404719886037
Iteration: 12, Func. Count: 127, Neg. LLF: 93.66403061338349
Iteration: 13, Func. Count: 137, Neg. LLF: 93.66402431622627
Iteration: 14, Func. Count: 146, Neg. LLF: 93.66402425487304
Optimization terminated successfully (Exit mode 0)
Current function value: 93.66402431622627
Iterations: 14
Function evaluations: 146
Gradient evaluations: 14
Iteration: 1, Func. Count: 8, Neg. LLF: 151.3365973730134
Iteration: 2, Func. Count: 18, Neg. LLF: 179.68297289512716
Iteration: 3, Func. Count: 26, Neg. LLF: 95.66103675100125
Iteration: 4, Func. Count: 33, Neg. LLF: 95.64744582222409
Iteration: 5, Func. Count: 41, Neg. LLF: 95.60751221552363
Iteration: 6, Func. Count: 48, Neg. LLF: 95.60057540521497
Iteration: 7, Func. Count: 55, Neg. LLF: 95.59409929415523
Iteration: 8, Func. Count: 62, Neg. LLF: 95.59356405617899
Iteration: 9, Func. Count: 69, Neg. LLF: 95.59355487307818
Iteration: 10, Func. Count: 75, Neg. LLF: 95.59355488754068
Optimization terminated successfully (Exit mode 0)
Current function value: 95.59355487307818
Iterations: 10
Function evaluations: 75
Gradient evaluations: 10
Iteration: 1, Func. Count: 9, Neg. LLF: 2327172.2204545797
Iteration: 2, Func. Count: 19, Neg. LLF: 105.42998068580671
Iteration: 3, Func. Count: 29, Neg. LLF: 133.89585519191613
Iteration: 4, Func. Count: 38, Neg. LLF: 111.42410806495168
Iteration: 5, Func. Count: 48, Neg. LLF: 95.16721819887249
Iteration: 6, Func. Count: 56, Neg. LLF: 96.86647666103107
Iteration: 7, Func. Count: 65, Neg. LLF: 94.56575127992186
Iteration: 8, Func. Count: 73, Neg. LLF: 94.48043099995496
Iteration: 9, Func. Count: 81, Neg. LLF: 94.45769641869202
Iteration: 10, Func. Count: 89, Neg. LLF: 94.45749079207717
Iteration: 11, Func. Count: 97, Neg. LLF: 94.45745777181115
Iteration: 12, Func. Count: 105, Neg. LLF: 94.45740391814425
Iteration: 13, Func. Count: 113, Neg. LLF: 94.45737094449956
Iteration: 14, Func. Count: 121, Neg. LLF: 94.45735414257905
Iteration: 15, Func. Count: 129, Neg. LLF: 94.4899549721398
Optimization terminated successfully (Exit mode 0)
Current function value: 94.45735414249212
Iterations: 16
Function evaluations: 133
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 24473301.811174322
Iteration: 2, Func. Count: 21, Neg. LLF: 98.23415871919659
Iteration: 3, Func. Count: 32, Neg. LLF: 226.47333338697942
Iteration: 4, Func. Count: 43, Neg. LLF: 94.22521117336245
Iteration: 5, Func. Count: 52, Neg. LLF: 93.85296340840516
Iteration: 6, Func. Count: 61, Neg. LLF: 93.69002686011365
Iteration: 7, Func. Count: 70, Neg. LLF: 93.673475515632
Iteration: 8, Func. Count: 79, Neg. LLF: 93.66706482531892
Iteration: 9, Func. Count: 88, Neg. LLF: 93.6643237045481
Iteration: 10, Func. Count: 97, Neg. LLF: 93.66403725457215
Iteration: 11, Func. Count: 106, Neg. LLF: 93.6640220946482
Iteration: 12, Func. Count: 115, Neg. LLF: 93.6640131191331
Optimization terminated successfully (Exit mode 0)
Current function value: 93.66402209184265
Iterations: 12
Function evaluations: 125
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 24600438.516826913
Iteration: 2, Func. Count: 23, Neg. LLF: 97.3316324253944
Iteration: 3, Func. Count: 34, Neg. LLF: 207.8312791301583
Iteration: 4, Func. Count: 45, Neg. LLF: 93.91833850422343
Iteration: 5, Func. Count: 55, Neg. LLF: 94.54236628837283
Iteration: 6, Func. Count: 66, Neg. LLF: 92.99434342126912
Iteration: 7, Func. Count: 77, Neg. LLF: 93.06302197433182
Iteration: 8, Func. Count: 88, Neg. LLF: 92.49065035893749
Iteration: 9, Func. Count: 98, Neg. LLF: 92.36825634821639
Iteration: 10, Func. Count: 108, Neg. LLF: 92.36079806727071
Iteration: 11, Func. Count: 118, Neg. LLF: 92.34900098706044
Iteration: 12, Func. Count: 128, Neg. LLF: 92.3483052730084
Iteration: 13, Func. Count: 138, Neg. LLF: 92.34802389389046
Iteration: 14, Func. Count: 148, Neg. LLF: 92.34801750200013
Iteration: 15, Func. Count: 157, Neg. LLF: 92.34801748700684
Optimization terminated successfully (Exit mode 0)
Current function value: 92.34801750200013
Iterations: 15
Function evaluations: 157
Gradient evaluations: 15
Iteration: 1, Func. Count: 12, Neg. LLF: 24591352.28871821
Iteration: 2, Func. Count: 25, Neg. LLF: 95.84402951850709
Iteration: 3, Func. Count: 37, Neg. LLF: 98.24224168584507
Iteration: 4, Func. Count: 49, Neg. LLF: 96.45276646254227
Iteration: 5, Func. Count: 61, Neg. LLF: 94.21699497091998
Iteration: 6, Func. Count: 72, Neg. LLF: 98.5604132330958
Iteration: 7, Func. Count: 85, Neg. LLF: 93.90016366078574
Iteration: 8, Func. Count: 96, Neg. LLF: 93.73648279113706
Iteration: 9, Func. Count: 107, Neg. LLF: 93.71268843382641
Iteration: 10, Func. Count: 118, Neg. LLF: 93.70104806090319
Iteration: 11, Func. Count: 129, Neg. LLF: 93.68563854099826
Iteration: 12, Func. Count: 140, Neg. LLF: 93.68107734811062
Iteration: 13, Func. Count: 151, Neg. LLF: 93.67003307832552
Iteration: 14, Func. Count: 162, Neg. LLF: 93.66427311547378
Iteration: 15, Func. Count: 173, Neg. LLF: 93.66419359591933
Iteration: 16, Func. Count: 184, Neg. LLF: 93.6640310091998
Iteration: 17, Func. Count: 195, Neg. LLF: 93.66387885910662
Optimization terminated successfully (Exit mode 0)
Current function value: 93.664030049172
Iterations: 17
Function evaluations: 203
Gradient evaluations: 17
Iteration: 1, Func. Count: 9, Neg. LLF: 136.1770834581313
Iteration: 2, Func. Count: 20, Neg. LLF: 216728765.26610658
Iteration: 3, Func. Count: 30, Neg. LLF: 8280746.456327846
Iteration: 4, Func. Count: 39, Neg. LLF: 92.92267394736186
Iteration: 5, Func. Count: 47, Neg. LLF: 4020936.6748962533
Iteration: 6, Func. Count: 58, Neg. LLF: 94.81510060684015
Iteration: 7, Func. Count: 67, Neg. LLF: 92.65279784062444
Iteration: 8, Func. Count: 75, Neg. LLF: 92.6423510600233
Iteration: 9, Func. Count: 83, Neg. LLF: 92.63818009879418
Iteration: 10, Func. Count: 91, Neg. LLF: 92.6305653219409
Iteration: 11, Func. Count: 99, Neg. LLF: 92.6301892838688
Iteration: 12, Func. Count: 107, Neg. LLF: 92.62999541732864
Iteration: 13, Func. Count: 115, Neg. LLF: 92.62982638225644
Iteration: 14, Func. Count: 123, Neg. LLF: 92.62979934019731
Iteration: 15, Func. Count: 131, Neg. LLF: 92.6297973280123
Iteration: 16, Func. Count: 138, Neg. LLF: 92.62979732802026
Optimization terminated successfully (Exit mode 0)
Current function value: 92.6297973280123
Iterations: 16
Function evaluations: 138
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 130.65217917576973
Iteration: 2, Func. Count: 20, Neg. LLF: 94.05939437355998
Iteration: 3, Func. Count: 29, Neg. LLF: 94.2681876586373
Iteration: 4, Func. Count: 39, Neg. LLF: 278.34410667724524
Iteration: 5, Func. Count: 50, Neg. LLF: 92.65484350994112
Iteration: 6, Func. Count: 59, Neg. LLF: 93.04741377289442
Iteration: 7, Func. Count: 69, Neg. LLF: 92.63127482828716
Iteration: 8, Func. Count: 78, Neg. LLF: 92.63021568704063
Iteration: 9, Func. Count: 87, Neg. LLF: 92.62995538488224
Iteration: 10, Func. Count: 96, Neg. LLF: 92.62980313389313
Iteration: 11, Func. Count: 105, Neg. LLF: 92.62979744060613
Iteration: 12, Func. Count: 113, Neg. LLF: 92.62979746563374
Optimization terminated successfully (Exit mode 0)
Current function value: 92.62979744060613
Iterations: 12
Function evaluations: 113
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 102.45873584488493
Iteration: 2, Func. Count: 22, Neg. LLF: 388.50369936466745
Iteration: 3, Func. Count: 34, Neg. LLF: 99.03493245365519
Iteration: 4, Func. Count: 45, Neg. LLF: 93.3054849067354
Iteration: 5, Func. Count: 56, Neg. LLF: 351.5421621119333
Iteration: 6, Func. Count: 67, Neg. LLF: 92.8687546018002
Iteration: 7, Func. Count: 78, Neg. LLF: 92.51561078689188
Iteration: 8, Func. Count: 88, Neg. LLF: 92.51378598323366
Iteration: 9, Func. Count: 98, Neg. LLF: 92.51350155002811
Iteration: 10, Func. Count: 108, Neg. LLF: 92.51347627146251
Iteration: 11, Func. Count: 118, Neg. LLF: 92.51347328844219
Iteration: 12, Func. Count: 127, Neg. LLF: 92.51347328842722
Optimization terminated successfully (Exit mode 0)
Current function value: 92.51347328844219
Iterations: 12
Function evaluations: 127
Gradient evaluations: 12
Iteration: 1, Func. Count: 12, Neg. LLF: 100.4767524856675
Iteration: 2, Func. Count: 24, Neg. LLF: 118.28713803837954
Iteration: 3, Func. Count: 36, Neg. LLF: 94.82547263386903
Iteration: 4, Func. Count: 48, Neg. LLF: 96.73791265733345
Iteration: 5, Func. Count: 60, Neg. LLF: 92.39079349203207
Iteration: 6, Func. Count: 72, Neg. LLF: 91.5208921310745
Iteration: 7, Func. Count: 83, Neg. LLF: 12498374.303464357
Iteration: 8, Func. Count: 97, Neg. LLF: 91.49426180722814
Iteration: 9, Func. Count: 108, Neg. LLF: 91.49353199420513
Iteration: 10, Func. Count: 119, Neg. LLF: 91.49347676178998
Iteration: 11, Func. Count: 130, Neg. LLF: 91.49347229075578
Iteration: 12, Func. Count: 140, Neg. LLF: 91.49347229074928
Optimization terminated successfully (Exit mode 0)
Current function value: 91.49347229075578
Iterations: 12
Function evaluations: 140
Gradient evaluations: 12
Iteration: 1, Func. Count: 13, Neg. LLF: 101.4724179837333
Iteration: 2, Func. Count: 26, Neg. LLF: 114.7523203549941
Iteration: 3, Func. Count: 39, Neg. LLF: 97.98481305738427
Iteration: 4, Func. Count: 53, Neg. LLF: 93.23434383642252
Iteration: 5, Func. Count: 66, Neg. LLF: 96.41391288230933
Iteration: 6, Func. Count: 79, Neg. LLF: 91.53206104401781
Iteration: 7, Func. Count: 91, Neg. LLF: 98.48235071150496
Iteration: 8, Func. Count: 105, Neg. LLF: 91.49628858472063
Iteration: 9, Func. Count: 117, Neg. LLF: 91.49396296357513
Iteration: 10, Func. Count: 129, Neg. LLF: 91.49351237034034
Iteration: 11, Func. Count: 141, Neg. LLF: 91.49347579124185
Iteration: 12, Func. Count: 153, Neg. LLF: 91.49347236697105
Iteration: 13, Func. Count: 164, Neg. LLF: 91.4934724287884
Optimization terminated successfully (Exit mode 0)
Current function value: 91.49347236697105
Iterations: 13
Function evaluations: 164
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 119.98968894532388
Iteration: 2, Func. Count: 22, Neg. LLF: 33477778.847156573
Iteration: 3, Func. Count: 32, Neg. LLF: 7209272.66504381
Iteration: 4, Func. Count: 42, Neg. LLF: 93.10248659426207
Iteration: 5, Func. Count: 51, Neg. LLF: 4020043.631599979
Iteration: 6, Func. Count: 63, Neg. LLF: 98.25185557940068
Iteration: 7, Func. Count: 74, Neg. LLF: 92.65151284042058
Iteration: 8, Func. Count: 83, Neg. LLF: 92.64057387784483
Iteration: 9, Func. Count: 92, Neg. LLF: 92.63552575948788
Iteration: 10, Func. Count: 101, Neg. LLF: 92.63095380407003
Iteration: 11, Func. Count: 110, Neg. LLF: 92.63037406742366
Iteration: 12, Func. Count: 119, Neg. LLF: 92.63014071126157
Iteration: 13, Func. Count: 128, Neg. LLF: 92.62987747625994
Iteration: 14, Func. Count: 137, Neg. LLF: 92.62980919567428
Iteration: 15, Func. Count: 146, Neg. LLF: 92.6297976827809
Iteration: 16, Func. Count: 154, Neg. LLF: 92.62979772596552
Optimization terminated successfully (Exit mode 0)
Current function value: 92.6297976827809
Iterations: 16
Function evaluations: 154
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 2366897.657985548
Iteration: 2, Func. Count: 23, Neg. LLF: 105.97902552973386
Iteration: 3, Func. Count: 35, Neg. LLF: 274.0896287342225
Iteration: 4, Func. Count: 46, Neg. LLF: 122.43111046194636
Iteration: 5, Func. Count: 58, Neg. LLF: 99.91507201247387
Iteration: 6, Func. Count: 69, Neg. LLF: 98.65252350824998
Iteration: 7, Func. Count: 80, Neg. LLF: 93.82496452176511
Iteration: 8, Func. Count: 90, Neg. LLF: 93.38811823589182
Iteration: 9, Func. Count: 100, Neg. LLF: 93.40017711974188
Iteration: 10, Func. Count: 111, Neg. LLF: 93.30778055291043
Iteration: 11, Func. Count: 121, Neg. LLF: 93.25418586298986
Iteration: 12, Func. Count: 131, Neg. LLF: 93.22007478644143
Iteration: 13, Func. Count: 141, Neg. LLF: 92.69392693528708
Iteration: 14, Func. Count: 151, Neg. LLF: 92.68662349258828
Iteration: 15, Func. Count: 161, Neg. LLF: 92.68540308020529
Iteration: 16, Func. Count: 171, Neg. LLF: 92.68377799310339
Iteration: 17, Func. Count: 181, Neg. LLF: 92.68195733707202
Iteration: 18, Func. Count: 191, Neg. LLF: 92.67849421961571
Iteration: 19, Func. Count: 201, Neg. LLF: 92.67129633119333
Iteration: 20, Func. Count: 211, Neg. LLF: 92.65738861888653
Iteration: 21, Func. Count: 221, Neg. LLF: 92.64095147359775
Iteration: 22, Func. Count: 231, Neg. LLF: 92.63230744391453
Iteration: 23, Func. Count: 241, Neg. LLF: 92.62988211442051
Iteration: 24, Func. Count: 251, Neg. LLF: 92.62980064325336
Iteration: 25, Func. Count: 261, Neg. LLF: 92.6297976790206
Iteration: 26, Func. Count: 270, Neg. LLF: 92.6297977040655
Optimization terminated successfully (Exit mode 0)
Current function value: 92.6297976790206
Iterations: 26
Function evaluations: 270
Gradient evaluations: 26
Iteration: 1, Func. Count: 12, Neg. LLF: 24415761.296565495
Iteration: 2, Func. Count: 25, Neg. LLF: 98.2103185359286
Iteration: 3, Func. Count: 38, Neg. LLF: 114.65921805527272
Iteration: 4, Func. Count: 50, Neg. LLF: 209.4744505964952
Iteration: 5, Func. Count: 62, Neg. LLF: 104.18548799912601
Iteration: 6, Func. Count: 74, Neg. LLF: 110.90704674577194
Iteration: 7, Func. Count: 86, Neg. LLF: 96.93731785600659
Iteration: 8, Func. Count: 98, Neg. LLF: 95.95706523580668
Iteration: 9, Func. Count: 110, Neg. LLF: 94.38472413383852
Iteration: 10, Func. Count: 121, Neg. LLF: 94.5034034622489
Iteration: 11, Func. Count: 133, Neg. LLF: 94.0845196720612
Iteration: 12, Func. Count: 144, Neg. LLF: 93.95305734391142
Iteration: 13, Func. Count: 155, Neg. LLF: 93.3648900833006
Iteration: 14, Func. Count: 166, Neg. LLF: 92.8877610961991
Iteration: 15, Func. Count: 177, Neg. LLF: 92.56073404107966
Iteration: 16, Func. Count: 188, Neg. LLF: 92.55555835900525
Iteration: 17, Func. Count: 199, Neg. LLF: 92.5503835581893
Iteration: 18, Func. Count: 210, Neg. LLF: 92.54848284086587
Iteration: 19, Func. Count: 221, Neg. LLF: 92.54668018679415
Iteration: 20, Func. Count: 232, Neg. LLF: 92.54254143198281
Iteration: 21, Func. Count: 243, Neg. LLF: 92.53478927672934
Iteration: 22, Func. Count: 254, Neg. LLF: 92.53013046697227
Iteration: 23, Func. Count: 265, Neg. LLF: 92.52692125522421
Iteration: 24, Func. Count: 276, Neg. LLF: 92.52563127617812
Iteration: 25, Func. Count: 287, Neg. LLF: 92.52159068935107
Iteration: 26, Func. Count: 298, Neg. LLF: 92.51755344726797
Iteration: 27, Func. Count: 309, Neg. LLF: 92.51463019189745
Iteration: 28, Func. Count: 320, Neg. LLF: 92.51359393673201
Iteration: 29, Func. Count: 331, Neg. LLF: 92.51347563188244
Iteration: 30, Func. Count: 342, Neg. LLF: 92.51347334501139
Iteration: 31, Func. Count: 352, Neg. LLF: 92.5134733449936
Optimization terminated successfully (Exit mode 0)
Current function value: 92.51347334501139
Iterations: 31
Function evaluations: 352
Gradient evaluations: 31
Iteration: 1, Func. Count: 13, Neg. LLF: 24408637.944984574
Iteration: 2, Func. Count: 27, Neg. LLF: 3494935.448200014
Iteration: 3, Func. Count: 40, Neg. LLF: 3510810.9082780504
Iteration: 4, Func. Count: 53, Neg. LLF: 110.30408279213452
Iteration: 5, Func. Count: 66, Neg. LLF: 92.68650049798393
Iteration: 6, Func. Count: 78, Neg. LLF: 94.96948796283515
Iteration: 7, Func. Count: 92, Neg. LLF: 95.15261558340653
Iteration: 8, Func. Count: 105, Neg. LLF: 93.80164399250124
Iteration: 9, Func. Count: 118, Neg. LLF: 93.7657406223322
Iteration: 10, Func. Count: 131, Neg. LLF: 94.17101335336903
Iteration: 11, Func. Count: 144, Neg. LLF: 93.75612673227579
Iteration: 12, Func. Count: 157, Neg. LLF: 95.37636165247316
Iteration: 13, Func. Count: 170, Neg. LLF: 93.79315816735865
Iteration: 14, Func. Count: 183, Neg. LLF: 92.2118291002
Iteration: 15, Func. Count: 195, Neg. LLF: 92.18693269681685
Iteration: 16, Func. Count: 207, Neg. LLF: 92.1774730438848
Iteration: 17, Func. Count: 219, Neg. LLF: 92.15007552257353
Iteration: 18, Func. Count: 231, Neg. LLF: 92.10570451522418
Iteration: 19, Func. Count: 243, Neg. LLF: 91.91351827776842
Iteration: 20, Func. Count: 255, Neg. LLF: 91.854479000091
Iteration: 21, Func. Count: 267, Neg. LLF: 91.80881482141614
Iteration: 22, Func. Count: 279, Neg. LLF: 91.76384149469841
Iteration: 23, Func. Count: 291, Neg. LLF: 91.731376784365
Iteration: 24, Func. Count: 303, Neg. LLF: 91.62906445784371
Iteration: 25, Func. Count: 315, Neg. LLF: 91.56382092134828
Iteration: 26, Func. Count: 327, Neg. LLF: 91.52763549164685
Iteration: 27, Func. Count: 339, Neg. LLF: 91.50161016025136
Iteration: 28, Func. Count: 351, Neg. LLF: 91.49755595493212
Iteration: 29, Func. Count: 363, Neg. LLF: 91.4940686005841
Iteration: 30, Func. Count: 375, Neg. LLF: 91.49354984370471
Iteration: 31, Func. Count: 387, Neg. LLF: 91.49347432180456
Iteration: 32, Func. Count: 399, Neg. LLF: 91.49347229666013
Iteration: 33, Func. Count: 410, Neg. LLF: 91.4934722966541
Optimization terminated successfully (Exit mode 0)
Current function value: 91.49347229666013
Iterations: 33
Function evaluations: 410
Gradient evaluations: 33
Iteration: 1, Func. Count: 14, Neg. LLF: 24319121.08510269
Iteration: 2, Func. Count: 29, Neg. LLF: 3521970.5591357583
Iteration: 3, Func. Count: 43, Neg. LLF: 5406556.529237964
Iteration: 4, Func. Count: 57, Neg. LLF: 2275136.444139205
Iteration: 5, Func. Count: 72, Neg. LLF: 108.38159285316753
Iteration: 6, Func. Count: 86, Neg. LLF: 95.21477128313447
Iteration: 7, Func. Count: 100, Neg. LLF: 92.42320124539945
Iteration: 8, Func. Count: 113, Neg. LLF: 95.2672950605571
Iteration: 9, Func. Count: 127, Neg. LLF: 93.6073446208886
Iteration: 10, Func. Count: 141, Neg. LLF: 93.61235075690027
Iteration: 11, Func. Count: 155, Neg. LLF: 92.02397433312983
Iteration: 12, Func. Count: 168, Neg. LLF: 93.31968392895743
Iteration: 13, Func. Count: 182, Neg. LLF: 91.92180729579273
Iteration: 14, Func. Count: 195, Neg. LLF: 91.63816930787907
Iteration: 15, Func. Count: 208, Neg. LLF: 91.53896733189114
Iteration: 16, Func. Count: 221, Neg. LLF: 91.5346606071404
Iteration: 17, Func. Count: 234, Neg. LLF: 91.53256323980351
Iteration: 18, Func. Count: 247, Neg. LLF: 91.52872074111514
Iteration: 19, Func. Count: 260, Neg. LLF: 91.5195460000768
Iteration: 20, Func. Count: 273, Neg. LLF: 91.5087115049381
Iteration: 21, Func. Count: 286, Neg. LLF: 91.49998573393552
Iteration: 22, Func. Count: 299, Neg. LLF: 91.49437075414865
Iteration: 23, Func. Count: 312, Neg. LLF: 91.49352675708211
Iteration: 24, Func. Count: 325, Neg. LLF: 91.49348389769129
Iteration: 25, Func. Count: 338, Neg. LLF: 91.49347238600944
Iteration: 26, Func. Count: 350, Neg. LLF: 91.49347244788278
Optimization terminated successfully (Exit mode 0)
Current function value: 91.49347238600944
Iterations: 26
Function evaluations: 350
Gradient evaluations: 26
Iteration: 1, Func. Count: 7, Neg. LLF: 117.88711572821812
Iteration: 2, Func. Count: 15, Neg. LLF: 1010.2061270104823
Iteration: 3, Func. Count: 22, Neg. LLF: 4683.877162841255
Iteration: 4, Func. Count: 29, Neg. LLF: 493.90107334793635
Iteration: 5, Func. Count: 36, Neg. LLF: 96.75663535044391
Iteration: 6, Func. Count: 43, Neg. LLF: 93.44257075056218
Iteration: 7, Func. Count: 49, Neg. LLF: 93.3402914388662
Iteration: 8, Func. Count: 55, Neg. LLF: 93.30548297364535
Iteration: 9, Func. Count: 61, Neg. LLF: 93.29166384494116
Iteration: 10, Func. Count: 67, Neg. LLF: 93.28979626761725
Iteration: 11, Func. Count: 73, Neg. LLF: 93.28961720528547
Iteration: 12, Func. Count: 79, Neg. LLF: 93.28960202727013
Iteration: 13, Func. Count: 84, Neg. LLF: 93.28960202721946
Optimization terminated successfully (Exit mode 0)
Current function value: 93.28960202727013
Iterations: 13
Function evaluations: 84
Gradient evaluations: 13
Iteration: 1, Func. Count: 8, Neg. LLF: 100.31108425781028
Iteration: 2, Func. Count: 18, Neg. LLF: 136.586191072036
Iteration: 3, Func. Count: 26, Neg. LLF: 108.23650999654647
Iteration: 4, Func. Count: 34, Neg. LLF: 93.63296938418696
Iteration: 5, Func. Count: 41, Neg. LLF: 93.35117742548941
Iteration: 6, Func. Count: 48, Neg. LLF: 97.04975223082599
Iteration: 7, Func. Count: 57, Neg. LLF: 93.11140886642927
Iteration: 8, Func. Count: 64, Neg. LLF: 93.1486270279123
Iteration: 9, Func. Count: 72, Neg. LLF: 93.09004204686052
Iteration: 10, Func. Count: 79, Neg. LLF: 93.08909118060748
Iteration: 11, Func. Count: 86, Neg. LLF: 93.08851638541508
Iteration: 12, Func. Count: 93, Neg. LLF: 93.08850720212871
Iteration: 13, Func. Count: 99, Neg. LLF: 93.08850720209668
Optimization terminated successfully (Exit mode 0)
Current function value: 93.08850720212871
Iterations: 13
Function evaluations: 99
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 96.59344916648936
Iteration: 2, Func. Count: 18, Neg. LLF: 817.8495126030368
Iteration: 3, Func. Count: 27, Neg. LLF: 741484.3806084007
Iteration: 4, Func. Count: 36, Neg. LLF: 104.4762760460594
Iteration: 5, Func. Count: 45, Neg. LLF: 105.35144424464595
Iteration: 6, Func. Count: 54, Neg. LLF: 94.99772321917345
Iteration: 7, Func. Count: 63, Neg. LLF: 92.82356636078356
Iteration: 8, Func. Count: 71, Neg. LLF: 92.82096457623655
Iteration: 9, Func. Count: 79, Neg. LLF: 92.82034182235304
Iteration: 10, Func. Count: 87, Neg. LLF: 92.82026930219901
Iteration: 11, Func. Count: 95, Neg. LLF: 92.82026073966517
Iteration: 12, Func. Count: 103, Neg. LLF: 92.82025994467811
Optimization terminated successfully (Exit mode 0)
Current function value: 92.82025994467811
Iterations: 12
Function evaluations: 103
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 23481455.844163217
Iteration: 2, Func. Count: 21, Neg. LLF: 1433.521968851429
Iteration: 3, Func. Count: 31, Neg. LLF: 1418.2661595719098
Iteration: 4, Func. Count: 41, Neg. LLF: 2833.212841152805
Iteration: 5, Func. Count: 51, Neg. LLF: 97.38580510228748
Iteration: 6, Func. Count: 61, Neg. LLF: 92.43835512356128
Iteration: 7, Func. Count: 70, Neg. LLF: 93.8759126707649
Iteration: 8, Func. Count: 80, Neg. LLF: 92.22186746334461
Iteration: 9, Func. Count: 90, Neg. LLF: 92.70877103050739
Iteration: 10, Func. Count: 100, Neg. LLF: 91.90650369341948
Iteration: 11, Func. Count: 109, Neg. LLF: 91.90493083072136
Iteration: 12, Func. Count: 118, Neg. LLF: 91.90473466186354
Iteration: 13, Func. Count: 127, Neg. LLF: 91.90470672083468
Iteration: 14, Func. Count: 136, Neg. LLF: 91.90461987855478
Iteration: 15, Func. Count: 145, Neg. LLF: 91.90447624005044
Iteration: 16, Func. Count: 154, Neg. LLF: 91.9042866292611
Iteration: 17, Func. Count: 163, Neg. LLF: 91.90417626798109
Iteration: 18, Func. Count: 172, Neg. LLF: 91.90415103174887
Iteration: 19, Func. Count: 181, Neg. LLF: 91.90414934093928
Iteration: 20, Func. Count: 189, Neg. LLF: 91.90414934092593
Optimization terminated successfully (Exit mode 0)
Current function value: 91.90414934093928
Iterations: 20
Function evaluations: 189
Gradient evaluations: 20
Iteration: 1, Func. Count: 11, Neg. LLF: 23473519.451277364
Iteration: 2, Func. Count: 23, Neg. LLF: 17792.501720063094
Iteration: 3, Func. Count: 34, Neg. LLF: 1320.6450225604106
Iteration: 4, Func. Count: 45, Neg. LLF: 4150.006145640933
Iteration: 5, Func. Count: 56, Neg. LLF: 95.98554894523132
Iteration: 6, Func. Count: 67, Neg. LLF: 92.49008160428168
Iteration: 7, Func. Count: 77, Neg. LLF: 93.38947254491974
Iteration: 8, Func. Count: 88, Neg. LLF: 91.97388477672527
Iteration: 9, Func. Count: 98, Neg. LLF: 91.92005593652009
Iteration: 10, Func. Count: 108, Neg. LLF: 91.90674916252706
Iteration: 11, Func. Count: 118, Neg. LLF: 91.90644176830314
Iteration: 12, Func. Count: 128, Neg. LLF: 91.9063174332879
Iteration: 13, Func. Count: 139, Neg. LLF: 91.90580454405215
Iteration: 14, Func. Count: 149, Neg. LLF: 91.90569460344942
Iteration: 15, Func. Count: 159, Neg. LLF: 91.90517062331492
Iteration: 16, Func. Count: 169, Neg. LLF: 91.90435917911124
Iteration: 17, Func. Count: 179, Neg. LLF: 91.90420487166882
Iteration: 18, Func. Count: 189, Neg. LLF: 91.90415011883485
Iteration: 19, Func. Count: 199, Neg. LLF: 91.90414932426668
Optimization terminated successfully (Exit mode 0)
Current function value: 91.90414932426668
Iterations: 19
Function evaluations: 199
Gradient evaluations: 19
Iteration: 1, Func. Count: 8, Neg. LLF: 117.56602158763835
Iteration: 2, Func. Count: 17, Neg. LLF: 698.1874213257541
Iteration: 3, Func. Count: 25, Neg. LLF: 4261.462737542739
Iteration: 4, Func. Count: 33, Neg. LLF: 2741.8372374101177
Iteration: 5, Func. Count: 41, Neg. LLF: 97.2955767967465
Iteration: 6, Func. Count: 49, Neg. LLF: 93.48174242885734
Iteration: 7, Func. Count: 56, Neg. LLF: 93.35186457553206
Iteration: 8, Func. Count: 63, Neg. LLF: 93.31253703048482
Iteration: 9, Func. Count: 70, Neg. LLF: 93.29555646101589
Iteration: 10, Func. Count: 77, Neg. LLF: 93.28988216187861
Iteration: 11, Func. Count: 84, Neg. LLF: 93.28962063891566
Iteration: 12, Func. Count: 91, Neg. LLF: 93.28960216303881
Iteration: 13, Func. Count: 97, Neg. LLF: 93.28960233644032
Optimization terminated successfully (Exit mode 0)
Current function value: 93.28960216303881
Iterations: 13
Function evaluations: 97
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 101.68146357917595
Iteration: 2, Func. Count: 20, Neg. LLF: 136.7553522703838
Iteration: 3, Func. Count: 29, Neg. LLF: 122.38620108670001
Iteration: 4, Func. Count: 38, Neg. LLF: 93.33508145692646
Iteration: 5, Func. Count: 46, Neg. LLF: 93.52378241894573
Iteration: 6, Func. Count: 56, Neg. LLF: 93.35685667671568
Iteration: 7, Func. Count: 65, Neg. LLF: 93.28064937840271
Iteration: 8, Func. Count: 73, Neg. LLF: 93.2768804088523
Iteration: 9, Func. Count: 81, Neg. LLF: 93.27606994318877
Iteration: 10, Func. Count: 89, Neg. LLF: 93.27506881319084
Iteration: 11, Func. Count: 97, Neg. LLF: 93.27459387441738
Iteration: 12, Func. Count: 105, Neg. LLF: 93.27449205856898
Iteration: 13, Func. Count: 113, Neg. LLF: 93.274486856214
Iteration: 14, Func. Count: 120, Neg. LLF: 93.27448685617628
Optimization terminated successfully (Exit mode 0)
Current function value: 93.274486856214
Iterations: 14
Function evaluations: 120
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 96.05611567692321
Iteration: 2, Func. Count: 20, Neg. LLF: 9812.8583271837
Iteration: 3, Func. Count: 30, Neg. LLF: 178009.26514678556
Iteration: 4, Func. Count: 40, Neg. LLF: 105.60137489029289
Iteration: 5, Func. Count: 50, Neg. LLF: 118.76020862931753
Iteration: 6, Func. Count: 60, Neg. LLF: 93.56106500706261
Iteration: 7, Func. Count: 70, Neg. LLF: 93.35963696467086
Iteration: 8, Func. Count: 80, Neg. LLF: 92.84168532858088
Iteration: 9, Func. Count: 89, Neg. LLF: 92.82252653715645
Iteration: 10, Func. Count: 98, Neg. LLF: 92.82053577707507
Iteration: 11, Func. Count: 107, Neg. LLF: 92.8202909281115
Iteration: 12, Func. Count: 116, Neg. LLF: 92.82026732943083
Iteration: 13, Func. Count: 125, Neg. LLF: 92.82025998084255
Iteration: 14, Func. Count: 133, Neg. LLF: 92.82025998080269
Optimization terminated successfully (Exit mode 0)
Current function value: 92.82025998084255
Iterations: 14
Function evaluations: 133
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 95.3523076979898
Iteration: 2, Func. Count: 22, Neg. LLF: 1125.4874426747626
Iteration: 3, Func. Count: 33, Neg. LLF: 12598.144580780392
Iteration: 4, Func. Count: 44, Neg. LLF: 106.6810420349243
Iteration: 5, Func. Count: 55, Neg. LLF: 103.05500778601184
Iteration: 6, Func. Count: 66, Neg. LLF: 91.84531173455987
Iteration: 7, Func. Count: 76, Neg. LLF: 91.97119368441898
Iteration: 8, Func. Count: 87, Neg. LLF: 91.81218649304968
Iteration: 9, Func. Count: 97, Neg. LLF: 91.81246646026199
Iteration: 10, Func. Count: 108, Neg. LLF: 91.80888112648181
Iteration: 11, Func. Count: 118, Neg. LLF: 91.80845969156074
Iteration: 12, Func. Count: 128, Neg. LLF: 91.80843973055258
Iteration: 13, Func. Count: 138, Neg. LLF: 91.80843696000277
Iteration: 14, Func. Count: 147, Neg. LLF: 91.8084369600036
Optimization terminated successfully (Exit mode 0)
Current function value: 91.80843696000277
Iterations: 14
Function evaluations: 147
Gradient evaluations: 14
Iteration: 1, Func. Count: 12, Neg. LLF: 97.0295218948619
Iteration: 2, Func. Count: 24, Neg. LLF: 250.28851040820422
Iteration: 3, Func. Count: 36, Neg. LLF: 1708.444674711209
Iteration: 4, Func. Count: 48, Neg. LLF: 115.66470774317536
Iteration: 5, Func. Count: 60, Neg. LLF: 98.37048708932268
Iteration: 6, Func. Count: 72, Neg. LLF: 91.8189943363347
Iteration: 7, Func. Count: 83, Neg. LLF: 91.89766477958351
Iteration: 8, Func. Count: 95, Neg. LLF: 91.81064051864392
Iteration: 9, Func. Count: 106, Neg. LLF: 91.80917424301329
Iteration: 10, Func. Count: 117, Neg. LLF: 91.80869995960987
Iteration: 11, Func. Count: 128, Neg. LLF: 91.80845483644846
Iteration: 12, Func. Count: 139, Neg. LLF: 91.80843949153875
Iteration: 13, Func. Count: 150, Neg. LLF: 91.80843696542114
Iteration: 14, Func. Count: 160, Neg. LLF: 91.80843698939813
Optimization terminated successfully (Exit mode 0)
Current function value: 91.80843696542114
Iterations: 14
Function evaluations: 160
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 117.34154562090194
Iteration: 2, Func. Count: 19, Neg. LLF: 727.2962056676422
Iteration: 3, Func. Count: 28, Neg. LLF: 3076.0734250661494
Iteration: 4, Func. Count: 37, Neg. LLF: 2328.9082666724216
Iteration: 5, Func. Count: 46, Neg. LLF: 97.16199808905401
Iteration: 6, Func. Count: 55, Neg. LLF: 93.47382140568513
Iteration: 7, Func. Count: 63, Neg. LLF: 350.31438675251763
Iteration: 8, Func. Count: 73, Neg. LLF: 93.5353233092647
Iteration: 9, Func. Count: 82, Neg. LLF: 93.3023293833464
Iteration: 10, Func. Count: 90, Neg. LLF: 93.28635269221373
Iteration: 11, Func. Count: 98, Neg. LLF: 93.27243926670408
Iteration: 12, Func. Count: 106, Neg. LLF: 93.27210786175216
Iteration: 13, Func. Count: 114, Neg. LLF: 93.27208716638266
Iteration: 14, Func. Count: 122, Neg. LLF: 93.2720822806534
Iteration: 15, Func. Count: 130, Neg. LLF: 93.27208138911016
Optimization terminated successfully (Exit mode 0)
Current function value: 93.27208138911016
Iterations: 15
Function evaluations: 130
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 101.30732913997267
Iteration: 2, Func. Count: 22, Neg. LLF: 136.76522466691895
Iteration: 3, Func. Count: 32, Neg. LLF: 118.42174824697153
Iteration: 4, Func. Count: 42, Neg. LLF: 93.37289686797719
Iteration: 5, Func. Count: 51, Neg. LLF: 94.15590709389303
Iteration: 6, Func. Count: 62, Neg. LLF: 94.6474259199243
Iteration: 7, Func. Count: 72, Neg. LLF: 94.43966327241812
Iteration: 8, Func. Count: 82, Neg. LLF: 93.2605400200814
Iteration: 9, Func. Count: 91, Neg. LLF: 93.26265289027815
Iteration: 10, Func. Count: 101, Neg. LLF: 93.25556548806722
Iteration: 11, Func. Count: 110, Neg. LLF: 93.25402832178278
Iteration: 12, Func. Count: 119, Neg. LLF: 93.25310432920341
Iteration: 13, Func. Count: 128, Neg. LLF: 93.25239477004952
Iteration: 14, Func. Count: 137, Neg. LLF: 93.25231947297796
Iteration: 15, Func. Count: 146, Neg. LLF: 93.25231453851883
Iteration: 16, Func. Count: 154, Neg. LLF: 93.25231453848966
Optimization terminated successfully (Exit mode 0)
Current function value: 93.25231453851883
Iterations: 16
Function evaluations: 154
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 95.97580699325222
Iteration: 2, Func. Count: 22, Neg. LLF: 1333.918244653453
Iteration: 3, Func. Count: 33, Neg. LLF: 103101.51378641941
Iteration: 4, Func. Count: 44, Neg. LLF: 104.83788579776467
Iteration: 5, Func. Count: 55, Neg. LLF: 126.76539475578913
Iteration: 6, Func. Count: 66, Neg. LLF: 93.29915858419916
Iteration: 7, Func. Count: 77, Neg. LLF: 93.69253662712411
Iteration: 8, Func. Count: 88, Neg. LLF: 92.89506140327417
Iteration: 9, Func. Count: 98, Neg. LLF: 92.82557950401439
Iteration: 10, Func. Count: 108, Neg. LLF: 92.82079790541536
Iteration: 11, Func. Count: 118, Neg. LLF: 92.82029568622261
Iteration: 12, Func. Count: 128, Neg. LLF: 92.82026720173745
Iteration: 13, Func. Count: 138, Neg. LLF: 92.82026074247993
Iteration: 14, Func. Count: 148, Neg. LLF: 92.82025994136333
Optimization terminated successfully (Exit mode 0)
Current function value: 92.82025994136333
Iterations: 14
Function evaluations: 148
Gradient evaluations: 14
Iteration: 1, Func. Count: 12, Neg. LLF: 95.44107116724761
Iteration: 2, Func. Count: 24, Neg. LLF: 1044.8538420742036
Iteration: 3, Func. Count: 36, Neg. LLF: 9100.157419520603
Iteration: 4, Func. Count: 48, Neg. LLF: 106.3459761066873
Iteration: 5, Func. Count: 60, Neg. LLF: 101.7807604705188
Iteration: 6, Func. Count: 72, Neg. LLF: 91.84053994949545
Iteration: 7, Func. Count: 83, Neg. LLF: 92.3158976549502
Iteration: 8, Func. Count: 95, Neg. LLF: 91.88082789407846
Iteration: 9, Func. Count: 107, Neg. LLF: 91.81183571636846
Iteration: 10, Func. Count: 118, Neg. LLF: 91.80898540973125
Iteration: 11, Func. Count: 129, Neg. LLF: 91.80754343824023
Iteration: 12, Func. Count: 140, Neg. LLF: 91.80734614206082
Iteration: 13, Func. Count: 151, Neg. LLF: 91.80742232346216
Iteration: 14, Func. Count: 163, Neg. LLF: 91.80727705817937
Iteration: 15, Func. Count: 174, Neg. LLF: 91.80727619251621
Optimization terminated successfully (Exit mode 0)
Current function value: 91.80727619251621
Iterations: 15
Function evaluations: 174
Gradient evaluations: 15
Iteration: 1, Func. Count: 13, Neg. LLF: 97.3356930669443
Iteration: 2, Func. Count: 26, Neg. LLF: 233.99081501225865
Iteration: 3, Func. Count: 39, Neg. LLF: 979.588225115072
Iteration: 4, Func. Count: 52, Neg. LLF: 116.16217577497889
Iteration: 5, Func. Count: 65, Neg. LLF: 97.2086610981136
Iteration: 6, Func. Count: 78, Neg. LLF: 91.81822614409602
Iteration: 7, Func. Count: 90, Neg. LLF: 92.58168342770304
Iteration: 8, Func. Count: 104, Neg. LLF: 91.81590025531523
Iteration: 9, Func. Count: 117, Neg. LLF: 91.81447769419105
Iteration: 10, Func. Count: 130, Neg. LLF: 91.80760371147956
Iteration: 11, Func. Count: 142, Neg. LLF: 91.80742985801811
Iteration: 12, Func. Count: 154, Neg. LLF: 91.80727764028322
Iteration: 13, Func. Count: 166, Neg. LLF: 91.80727629256123
Iteration: 14, Func. Count: 177, Neg. LLF: 91.80727631674294
Optimization terminated successfully (Exit mode 0)
Current function value: 91.80727629256123
Iterations: 14
Function evaluations: 177
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 121.1880764338209
Iteration: 2, Func. Count: 21, Neg. LLF: 858.7146569151168
Iteration: 3, Func. Count: 31, Neg. LLF: 8214663.423123341
Iteration: 4, Func. Count: 41, Neg. LLF: 92.87900954647881
Iteration: 5, Func. Count: 50, Neg. LLF: 569943.2915270289
Iteration: 6, Func. Count: 62, Neg. LLF: 92.73196222261168
Iteration: 7, Func. Count: 71, Neg. LLF: 92.64781991808154
Iteration: 8, Func. Count: 80, Neg. LLF: 104.3854192063574
Iteration: 9, Func. Count: 91, Neg. LLF: 92.62156474446861
Iteration: 10, Func. Count: 100, Neg. LLF: 92.61294330326021
Iteration: 11, Func. Count: 109, Neg. LLF: 92.61111696546195
Iteration: 12, Func. Count: 118, Neg. LLF: 92.61100548793654
Iteration: 13, Func. Count: 127, Neg. LLF: 92.61098495389284
Iteration: 14, Func. Count: 136, Neg. LLF: 92.61097360332303
Iteration: 15, Func. Count: 145, Neg. LLF: 92.61097264927648
Optimization terminated successfully (Exit mode 0)
Current function value: 92.61097264927648
Iterations: 15
Function evaluations: 145
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 98.61633418059246
Iteration: 2, Func. Count: 23, Neg. LLF: 158.4208167767691
Iteration: 3, Func. Count: 34, Neg. LLF: 113.02759172024479
Iteration: 4, Func. Count: 45, Neg. LLF: 95.93434121427909
Iteration: 5, Func. Count: 56, Neg. LLF: 93.18535177751647
Iteration: 6, Func. Count: 66, Neg. LLF: 96.6870419770376
Iteration: 7, Func. Count: 78, Neg. LLF: 93.64625950125047
Iteration: 8, Func. Count: 89, Neg. LLF: 96.82941020802237
Iteration: 9, Func. Count: 100, Neg. LLF: 95.08611380006151
Iteration: 10, Func. Count: 111, Neg. LLF: 93.42383569063897
Iteration: 11, Func. Count: 122, Neg. LLF: 93.23505330567751
Iteration: 12, Func. Count: 133, Neg. LLF: 93.01848434311256
Iteration: 13, Func. Count: 143, Neg. LLF: 93.01681250145914
Iteration: 14, Func. Count: 153, Neg. LLF: 93.01443128979211
Iteration: 15, Func. Count: 163, Neg. LLF: 93.01006110183098
Iteration: 16, Func. Count: 173, Neg. LLF: 93.00958615600385
Iteration: 17, Func. Count: 183, Neg. LLF: 93.0095643364815
Iteration: 18, Func. Count: 193, Neg. LLF: 93.00956270922683
Iteration: 19, Func. Count: 202, Neg. LLF: 93.00956270921155
Optimization terminated successfully (Exit mode 0)
Current function value: 93.00956270922683
Iterations: 19
Function evaluations: 202
Gradient evaluations: 19
Iteration: 1, Func. Count: 12, Neg. LLF: 99.1811547436594
Iteration: 2, Func. Count: 24, Neg. LLF: 101.49576441216337
Iteration: 3, Func. Count: 37, Neg. LLF: 100.9705951311585
Iteration: 4, Func. Count: 49, Neg. LLF: 101.57477273535639
Iteration: 5, Func. Count: 61, Neg. LLF: 93.98682752267163
Iteration: 6, Func. Count: 73, Neg. LLF: 103.92559609503736
Iteration: 7, Func. Count: 85, Neg. LLF: 92.60955787363535
Iteration: 8, Func. Count: 96, Neg. LLF: 92.46264524864306
Iteration: 9, Func. Count: 107, Neg. LLF: 92.46775750354087
Iteration: 10, Func. Count: 119, Neg. LLF: 92.4571734107728
Iteration: 11, Func. Count: 130, Neg. LLF: 92.45713449551107
Iteration: 12, Func. Count: 141, Neg. LLF: 92.45713146826678
Iteration: 13, Func. Count: 151, Neg. LLF: 92.45713146821372
Optimization terminated successfully (Exit mode 0)
Current function value: 92.45713146826678
Iterations: 13
Function evaluations: 151
Gradient evaluations: 13
Iteration: 1, Func. Count: 13, Neg. LLF: 97.9781465712602
Iteration: 2, Func. Count: 26, Neg. LLF: 407.81368758323947
Iteration: 3, Func. Count: 40, Neg. LLF: 96.78334337449937
Iteration: 4, Func. Count: 53, Neg. LLF: 94.05222698587288
Iteration: 5, Func. Count: 66, Neg. LLF: 21859.84757078788
Iteration: 6, Func. Count: 79, Neg. LLF: 109.33531519549011
Iteration: 7, Func. Count: 92, Neg. LLF: 91.71852117655676
Iteration: 8, Func. Count: 104, Neg. LLF: 93.91999134635937
Iteration: 9, Func. Count: 119, Neg. LLF: 93.40451145209866
Iteration: 10, Func. Count: 132, Neg. LLF: 91.3853933209287
Iteration: 11, Func. Count: 144, Neg. LLF: 91.37314197020663
Iteration: 12, Func. Count: 156, Neg. LLF: 91.37202049480713
Iteration: 13, Func. Count: 168, Neg. LLF: 91.37195951120925
Iteration: 14, Func. Count: 180, Neg. LLF: 91.37195735079541
Iteration: 15, Func. Count: 191, Neg. LLF: 91.37195735067698
Optimization terminated successfully (Exit mode 0)
Current function value: 91.37195735079541
Iterations: 15
Function evaluations: 191
Gradient evaluations: 15
Iteration: 1, Func. Count: 14, Neg. LLF: 96.91600042538082
Iteration: 2, Func. Count: 28, Neg. LLF: 143.5954982392795
Iteration: 3, Func. Count: 42, Neg. LLF: 94.01138316807152
Iteration: 4, Func. Count: 57, Neg. LLF: 1148.4940461164829
Iteration: 5, Func. Count: 71, Neg. LLF: 136.65441318299222
Iteration: 6, Func. Count: 85, Neg. LLF: 91.93641567416294
Iteration: 7, Func. Count: 98, Neg. LLF: 94.37971755976841
Iteration: 8, Func. Count: 112, Neg. LLF: 93.2034303394364
Iteration: 9, Func. Count: 126, Neg. LLF: 91.50361774150399
Iteration: 10, Func. Count: 139, Neg. LLF: 91.43694963882916
Iteration: 11, Func. Count: 152, Neg. LLF: 98.0234734338497
Iteration: 12, Func. Count: 166, Neg. LLF: 91.38083389995376
Iteration: 13, Func. Count: 179, Neg. LLF: 91.37232108195566
Iteration: 14, Func. Count: 192, Neg. LLF: 91.37199573957264
Iteration: 15, Func. Count: 205, Neg. LLF: 91.37196076274651
Iteration: 16, Func. Count: 218, Neg. LLF: 91.37195737851088
Iteration: 17, Func. Count: 230, Neg. LLF: 91.37195743714697
Optimization terminated successfully (Exit mode 0)
Current function value: 91.37195737851088
Iterations: 17
Function evaluations: 230
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 126.37279392478007
Iteration: 2, Func. Count: 23, Neg. LLF: 919.5172034110379
Iteration: 3, Func. Count: 34, Neg. LLF: 8214235.499039096
Iteration: 4, Func. Count: 45, Neg. LLF: 93.11073188930771
Iteration: 5, Func. Count: 55, Neg. LLF: 444348.83820730227
Iteration: 6, Func. Count: 68, Neg. LLF: 93.07406205129203
Iteration: 7, Func. Count: 79, Neg. LLF: 92.65964138795077
Iteration: 8, Func. Count: 89, Neg. LLF: 92.63781237949667
Iteration: 9, Func. Count: 99, Neg. LLF: 92.63138276573716
Iteration: 10, Func. Count: 109, Neg. LLF: 92.61604231311844
Iteration: 11, Func. Count: 119, Neg. LLF: 92.61338560380024
Iteration: 12, Func. Count: 129, Neg. LLF: 92.61157477890936
Iteration: 13, Func. Count: 139, Neg. LLF: 92.61098793370526
Iteration: 14, Func. Count: 149, Neg. LLF: 92.6109791610825
Iteration: 15, Func. Count: 159, Neg. LLF: 92.61097447020471
Iteration: 16, Func. Count: 169, Neg. LLF: 92.6109727209479
Iteration: 17, Func. Count: 178, Neg. LLF: 92.61097276261695
Optimization terminated successfully (Exit mode 0)
Current function value: 92.6109727209479
Iterations: 17
Function evaluations: 178
Gradient evaluations: 17
Iteration: 1, Func. Count: 12, Neg. LLF: 100.71166528844661
Iteration: 2, Func. Count: 26, Neg. LLF: 137.73808471482863
Iteration: 3, Func. Count: 38, Neg. LLF: 100.80992807470545
Iteration: 4, Func. Count: 50, Neg. LLF: 93.63649737528024
Iteration: 5, Func. Count: 61, Neg. LLF: 92.97131520653235
Iteration: 6, Func. Count: 72, Neg. LLF: 95.64119946504422
Iteration: 7, Func. Count: 85, Neg. LLF: 102.48403559926432
Iteration: 8, Func. Count: 97, Neg. LLF: 92.66772637139387
Iteration: 9, Func. Count: 108, Neg. LLF: 92.64379431263167
Iteration: 10, Func. Count: 119, Neg. LLF: 92.66774502198184
Iteration: 11, Func. Count: 131, Neg. LLF: 92.62791342164395
Iteration: 12, Func. Count: 142, Neg. LLF: 92.61569329222675
Iteration: 13, Func. Count: 153, Neg. LLF: 92.61148479054444
Iteration: 14, Func. Count: 164, Neg. LLF: 92.61098413435694
Iteration: 15, Func. Count: 175, Neg. LLF: 92.61097265322762
Iteration: 16, Func. Count: 185, Neg. LLF: 92.61097267549698
Optimization terminated successfully (Exit mode 0)
Current function value: 92.61097265322762
Iterations: 16
Function evaluations: 185
Gradient evaluations: 16
Iteration: 1, Func. Count: 13, Neg. LLF: 99.78726499542526
Iteration: 2, Func. Count: 26, Neg. LLF: 830.5433064511761
Iteration: 3, Func. Count: 39, Neg. LLF: 98.16743599971711
Iteration: 4, Func. Count: 52, Neg. LLF: 95.43746303322976
Iteration: 5, Func. Count: 65, Neg. LLF: 16209101.041242056
Iteration: 6, Func. Count: 78, Neg. LLF: 99.29812548983695
Iteration: 7, Func. Count: 91, Neg. LLF: 93.65328593133938
Iteration: 8, Func. Count: 104, Neg. LLF: 109.91619638895388
Iteration: 9, Func. Count: 117, Neg. LLF: 92.54583414206019
Iteration: 10, Func. Count: 129, Neg. LLF: 92.47442840241783
Iteration: 11, Func. Count: 141, Neg. LLF: 92.46187955916074
Iteration: 12, Func. Count: 153, Neg. LLF: 92.45723038260938
Iteration: 13, Func. Count: 165, Neg. LLF: 92.45714999979842
Iteration: 14, Func. Count: 177, Neg. LLF: 92.45713239688155
Iteration: 15, Func. Count: 189, Neg. LLF: 92.4571311394693
Iteration: 16, Func. Count: 200, Neg. LLF: 92.45713113949769
Optimization terminated successfully (Exit mode 0)
Current function value: 92.4571311394693
Iterations: 16
Function evaluations: 200
Gradient evaluations: 16
Iteration: 1, Func. Count: 14, Neg. LLF: 96.50395549141872
Iteration: 2, Func. Count: 28, Neg. LLF: 238.59226582330766
Iteration: 3, Func. Count: 42, Neg. LLF: 101.79689628457767
Iteration: 4, Func. Count: 56, Neg. LLF: 96.44454770780563
Iteration: 5, Func. Count: 70, Neg. LLF: 99.03382776288392
Iteration: 6, Func. Count: 85, Neg. LLF: 92.60728899384064
Iteration: 7, Func. Count: 99, Neg. LLF: 92.1879178124758
Iteration: 8, Func. Count: 113, Neg. LLF: 94.66215829045922
Iteration: 9, Func. Count: 128, Neg. LLF: 91.38325959487153
Iteration: 10, Func. Count: 141, Neg. LLF: 91.37281844866385
Iteration: 11, Func. Count: 154, Neg. LLF: 91.37210039041747
Iteration: 12, Func. Count: 167, Neg. LLF: 91.37198007399532
Iteration: 13, Func. Count: 180, Neg. LLF: 91.37196070425651
Iteration: 14, Func. Count: 193, Neg. LLF: 91.37195710889097
Iteration: 15, Func. Count: 205, Neg. LLF: 91.37195710885038
Optimization terminated successfully (Exit mode 0)
Current function value: 91.37195710889097
Iterations: 15
Function evaluations: 205
Gradient evaluations: 15
Iteration: 1, Func. Count: 15, Neg. LLF: 98.05067108097252
Iteration: 2, Func. Count: 30, Neg. LLF: 124.05229458660376
Iteration: 3, Func. Count: 45, Neg. LLF: 110.43422216414818
Iteration: 4, Func. Count: 60, Neg. LLF: 94.08574258759607
Iteration: 5, Func. Count: 75, Neg. LLF: 103.48512415326225
Iteration: 6, Func. Count: 90, Neg. LLF: 93.40765921904294
Iteration: 7, Func. Count: 105, Neg. LLF: 96.62618154165114
Iteration: 8, Func. Count: 120, Neg. LLF: 91.41019533649077
Iteration: 9, Func. Count: 134, Neg. LLF: 91.75049679489985
Iteration: 10, Func. Count: 150, Neg. LLF: 91.37393407302046
Iteration: 11, Func. Count: 164, Neg. LLF: 91.37228198591325
Iteration: 12, Func. Count: 178, Neg. LLF: 91.3719933296487
Iteration: 13, Func. Count: 192, Neg. LLF: 91.37196124291222
Iteration: 14, Func. Count: 206, Neg. LLF: 91.37195709476536
Iteration: 15, Func. Count: 219, Neg. LLF: 91.37195715343869
Optimization terminated successfully (Exit mode 0)
Current function value: 91.37195709476536
Iterations: 15
Function evaluations: 219
Gradient evaluations: 15
Iteration: 1, Func. Count: 8, Neg. LLF: 118.46216288029811
Iteration: 2, Func. Count: 17, Neg. LLF: 718.1363539227243
Iteration: 3, Func. Count: 25, Neg. LLF: 2059.076739053103
Iteration: 4, Func. Count: 33, Neg. LLF: 3829.2956413102984
Iteration: 5, Func. Count: 41, Neg. LLF: 96.61796809566685
Iteration: 6, Func. Count: 49, Neg. LLF: 93.4282742981922
Iteration: 7, Func. Count: 56, Neg. LLF: 216.18066413800761
Iteration: 8, Func. Count: 65, Neg. LLF: 93.75680538275796
Iteration: 9, Func. Count: 73, Neg. LLF: 93.29023477427181
Iteration: 10, Func. Count: 80, Neg. LLF: 93.27383264736744
Iteration: 11, Func. Count: 87, Neg. LLF: 93.27107466677262
Iteration: 12, Func. Count: 94, Neg. LLF: 93.27088569928856
Iteration: 13, Func. Count: 101, Neg. LLF: 93.27087057435973
Iteration: 14, Func. Count: 108, Neg. LLF: 93.27086785485125
Iteration: 15, Func. Count: 114, Neg. LLF: 93.27086785497539
Optimization terminated successfully (Exit mode 0)
Current function value: 93.27086785485125
Iterations: 15
Function evaluations: 114
Gradient evaluations: 15
Iteration: 1, Func. Count: 9, Neg. LLF: 95.21367652046787
Iteration: 2, Func. Count: 18, Neg. LLF: 1617.330239461296
Iteration: 3, Func. Count: 27, Neg. LLF: 110.78475972974398
Iteration: 4, Func. Count: 36, Neg. LLF: 104.6776069449868
Iteration: 5, Func. Count: 45, Neg. LLF: 240.3762624124131
Iteration: 6, Func. Count: 54, Neg. LLF: 93.42757454457623
Iteration: 7, Func. Count: 62, Neg. LLF: 93.14135337388124
Iteration: 8, Func. Count: 70, Neg. LLF: 93.14430886794702
Iteration: 9, Func. Count: 79, Neg. LLF: 93.18836290546638
Iteration: 10, Func. Count: 88, Neg. LLF: 93.08854281728095
Iteration: 11, Func. Count: 96, Neg. LLF: 93.08850703847409
Iteration: 12, Func. Count: 103, Neg. LLF: 93.08850703853807
Optimization terminated successfully (Exit mode 0)
Current function value: 93.08850703847409
Iterations: 12
Function evaluations: 103
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 96.40176899500379
Iteration: 2, Func. Count: 20, Neg. LLF: 198.36542340919365
Iteration: 3, Func. Count: 30, Neg. LLF: 1954.1778045633237
Iteration: 4, Func. Count: 40, Neg. LLF: 102.72588382182822
Iteration: 5, Func. Count: 50, Neg. LLF: 111.11425030443678
Iteration: 6, Func. Count: 60, Neg. LLF: 98.1479543566477
Iteration: 7, Func. Count: 70, Neg. LLF: 92.8336291753088
Iteration: 8, Func. Count: 79, Neg. LLF: 92.82136985521625
Iteration: 9, Func. Count: 88, Neg. LLF: 92.82031739908132
Iteration: 10, Func. Count: 97, Neg. LLF: 92.82026187705556
Iteration: 11, Func. Count: 106, Neg. LLF: 92.82025996711452
Iteration: 12, Func. Count: 114, Neg. LLF: 92.8202599670909
Optimization terminated successfully (Exit mode 0)
Current function value: 92.82025996711452
Iterations: 12
Function evaluations: 114
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 23502508.181944337
Iteration: 2, Func. Count: 23, Neg. LLF: 931.7963061724853
Iteration: 3, Func. Count: 34, Neg. LLF: 1984.062224688438
Iteration: 4, Func. Count: 45, Neg. LLF: 3377.328808321775
Iteration: 5, Func. Count: 56, Neg. LLF: 97.453486575141
Iteration: 6, Func. Count: 67, Neg. LLF: 92.43533732510159
Iteration: 7, Func. Count: 77, Neg. LLF: 93.89002209202398
Iteration: 8, Func. Count: 88, Neg. LLF: 92.28614349848337
Iteration: 9, Func. Count: 99, Neg. LLF: 92.63798127566014
Iteration: 10, Func. Count: 110, Neg. LLF: 91.90194886207225
Iteration: 11, Func. Count: 120, Neg. LLF: 91.90068508620041
Iteration: 12, Func. Count: 130, Neg. LLF: 91.90049454390854
Iteration: 13, Func. Count: 140, Neg. LLF: 91.9004529086164
Iteration: 14, Func. Count: 150, Neg. LLF: 91.90032041320504
Iteration: 15, Func. Count: 160, Neg. LLF: 91.9000829225675
Iteration: 16, Func. Count: 170, Neg. LLF: 91.89980949117619
Iteration: 17, Func. Count: 180, Neg. LLF: 91.8996621198044
Iteration: 18, Func. Count: 190, Neg. LLF: 91.89963276437676
Iteration: 19, Func. Count: 200, Neg. LLF: 91.89963117333836
Iteration: 20, Func. Count: 209, Neg. LLF: 91.89963117332543
Optimization terminated successfully (Exit mode 0)
Current function value: 91.89963117333836
Iterations: 20
Function evaluations: 209
Gradient evaluations: 20
Iteration: 1, Func. Count: 12, Neg. LLF: 23481348.177995406
Iteration: 2, Func. Count: 25, Neg. LLF: 37319.223182782014
Iteration: 3, Func. Count: 37, Neg. LLF: 1561.0685876234131
Iteration: 4, Func. Count: 49, Neg. LLF: 2241.3561274963754
Iteration: 5, Func. Count: 61, Neg. LLF: 95.98590834656049
Iteration: 6, Func. Count: 73, Neg. LLF: 92.4805066557662
Iteration: 7, Func. Count: 84, Neg. LLF: 93.81828496178856
Iteration: 8, Func. Count: 96, Neg. LLF: 91.97666585548201
Iteration: 9, Func. Count: 107, Neg. LLF: 91.92161772085504
Iteration: 10, Func. Count: 118, Neg. LLF: 91.91324620564907
Iteration: 11, Func. Count: 129, Neg. LLF: 91.95003524641757
Iteration: 12, Func. Count: 141, Neg. LLF: 91.90186338139166
Iteration: 13, Func. Count: 152, Neg. LLF: 91.90169102252112
Iteration: 14, Func. Count: 163, Neg. LLF: 91.90148713544907
Iteration: 15, Func. Count: 174, Neg. LLF: 91.90111730667039
Iteration: 16, Func. Count: 185, Neg. LLF: 91.90054685873908
Iteration: 17, Func. Count: 196, Neg. LLF: 91.89995480067572
Iteration: 18, Func. Count: 207, Neg. LLF: 91.89967740049231
Iteration: 19, Func. Count: 218, Neg. LLF: 91.89963283181221
Iteration: 20, Func. Count: 229, Neg. LLF: 91.89963116995841
Iteration: 21, Func. Count: 239, Neg. LLF: 91.89963121705198
Optimization terminated successfully (Exit mode 0)
Current function value: 91.89963116995841
Iterations: 21
Function evaluations: 239
Gradient evaluations: 21
Iteration: 1, Func. Count: 9, Neg. LLF: 117.99563482382112
Iteration: 2, Func. Count: 19, Neg. LLF: 1017.322358541277
Iteration: 3, Func. Count: 28, Neg. LLF: 1953.340850758804
Iteration: 4, Func. Count: 37, Neg. LLF: 4116.583263952513
Iteration: 5, Func. Count: 46, Neg. LLF: 96.94910797245413
Iteration: 6, Func. Count: 55, Neg. LLF: 93.4503827273643
Iteration: 7, Func. Count: 63, Neg. LLF: 214.57639600958646
Iteration: 8, Func. Count: 73, Neg. LLF: 93.9219664160597
Iteration: 9, Func. Count: 82, Neg. LLF: 93.29416546199603
Iteration: 10, Func. Count: 90, Neg. LLF: 93.27474961187768
Iteration: 11, Func. Count: 98, Neg. LLF: 93.2712625191058
Iteration: 12, Func. Count: 106, Neg. LLF: 93.27089007149752
Iteration: 13, Func. Count: 114, Neg. LLF: 93.27087125157293
Iteration: 14, Func. Count: 122, Neg. LLF: 93.27086811338913
Iteration: 15, Func. Count: 130, Neg. LLF: 93.27086748797039
Optimization terminated successfully (Exit mode 0)
Current function value: 93.27086748797039
Iterations: 15
Function evaluations: 130
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 95.0498597848074
Iteration: 2, Func. Count: 20, Neg. LLF: 1443.5381427807827
Iteration: 3, Func. Count: 30, Neg. LLF: 113.8740433723732
Iteration: 4, Func. Count: 40, Neg. LLF: 107.2810987375613
Iteration: 5, Func. Count: 50, Neg. LLF: 142.7703717317138
Iteration: 6, Func. Count: 60, Neg. LLF: 94.54789800216408
Iteration: 7, Func. Count: 70, Neg. LLF: 105.72258324274468
Iteration: 8, Func. Count: 80, Neg. LLF: 93.10665858567911
Iteration: 9, Func. Count: 89, Neg. LLF: 93.09401525218848
Iteration: 10, Func. Count: 98, Neg. LLF: 93.08960452353597
Iteration: 11, Func. Count: 107, Neg. LLF: 93.088640285033
Iteration: 12, Func. Count: 116, Neg. LLF: 93.08852356944014
Iteration: 13, Func. Count: 125, Neg. LLF: 93.08850710322564
Iteration: 14, Func. Count: 133, Neg. LLF: 93.08850710324391
Optimization terminated successfully (Exit mode 0)
Current function value: 93.08850710322564
Iterations: 14
Function evaluations: 133
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 96.35794465494823
Iteration: 2, Func. Count: 22, Neg. LLF: 179.24520160285684
Iteration: 3, Func. Count: 33, Neg. LLF: 9143.331237498869
Iteration: 4, Func. Count: 44, Neg. LLF: 104.74090171256265
Iteration: 5, Func. Count: 55, Neg. LLF: 146.7406646048566
Iteration: 6, Func. Count: 66, Neg. LLF: 99.02595653641524
Iteration: 7, Func. Count: 77, Neg. LLF: 92.85335493504301
Iteration: 8, Func. Count: 87, Neg. LLF: 92.8221825555414
Iteration: 9, Func. Count: 97, Neg. LLF: 92.82036129308293
Iteration: 10, Func. Count: 107, Neg. LLF: 92.82026886768998
Iteration: 11, Func. Count: 117, Neg. LLF: 92.8202600829827
Iteration: 12, Func. Count: 126, Neg. LLF: 92.82026008299162
Optimization terminated successfully (Exit mode 0)
Current function value: 92.8202600829827
Iterations: 12
Function evaluations: 126
Gradient evaluations: 12
Iteration: 1, Func. Count: 12, Neg. LLF: 99.9342447263999
Iteration: 2, Func. Count: 24, Neg. LLF: 139.72362584356836
Iteration: 3, Func. Count: 36, Neg. LLF: 2884.036872378595
Iteration: 4, Func. Count: 48, Neg. LLF: 108.98202194348941
Iteration: 5, Func. Count: 60, Neg. LLF: 98.82765402468104
Iteration: 6, Func. Count: 72, Neg. LLF: 91.96732137732947
Iteration: 7, Func. Count: 83, Neg. LLF: 92.03303846396511
Iteration: 8, Func. Count: 95, Neg. LLF: 93.01243345795734
Iteration: 9, Func. Count: 108, Neg. LLF: 91.81321474371582
Iteration: 10, Func. Count: 119, Neg. LLF: 91.80863954777354
Iteration: 11, Func. Count: 130, Neg. LLF: 91.80845600308686
Iteration: 12, Func. Count: 141, Neg. LLF: 91.8084233729831
Iteration: 13, Func. Count: 152, Neg. LLF: 91.80842218125274
Iteration: 14, Func. Count: 162, Neg. LLF: 91.80842218124668
Optimization terminated successfully (Exit mode 0)
Current function value: 91.80842218125274
Iterations: 14
Function evaluations: 162
Gradient evaluations: 14
Iteration: 1, Func. Count: 13, Neg. LLF: 101.07847818143377
Iteration: 2, Func. Count: 26, Neg. LLF: 154.0604827002907
Iteration: 3, Func. Count: 39, Neg. LLF: 5142.690118543267
Iteration: 4, Func. Count: 52, Neg. LLF: 110.53335864456616
Iteration: 5, Func. Count: 65, Neg. LLF: 102.98723515810914
Iteration: 6, Func. Count: 78, Neg. LLF: 91.85022777369704
Iteration: 7, Func. Count: 90, Neg. LLF: 92.03220126419406
Iteration: 8, Func. Count: 103, Neg. LLF: 91.95496301404869
Iteration: 9, Func. Count: 116, Neg. LLF: 91.81385207559704
Iteration: 10, Func. Count: 128, Neg. LLF: 91.80958095902152
Iteration: 11, Func. Count: 140, Neg. LLF: 91.80866240752482
Iteration: 12, Func. Count: 152, Neg. LLF: 91.8084276416942
Iteration: 13, Func. Count: 164, Neg. LLF: 91.80842259307607
Iteration: 14, Func. Count: 175, Neg. LLF: 91.80842261722786
Optimization terminated successfully (Exit mode 0)
Current function value: 91.80842259307607
Iterations: 14
Function evaluations: 175
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 117.74912053239942
Iteration: 2, Func. Count: 21, Neg. LLF: 887.6817710895692
Iteration: 3, Func. Count: 31, Neg. LLF: 1652.1618499582041
Iteration: 4, Func. Count: 41, Neg. LLF: 5013.116178357236
Iteration: 5, Func. Count: 51, Neg. LLF: 96.74535193283208
Iteration: 6, Func. Count: 61, Neg. LLF: 93.4370564891476
Iteration: 7, Func. Count: 70, Neg. LLF: 221.3908674159237
Iteration: 8, Func. Count: 81, Neg. LLF: 94.2599287912894
Iteration: 9, Func. Count: 91, Neg. LLF: 93.33759813136305
Iteration: 10, Func. Count: 101, Neg. LLF: 194.54499136840462
Iteration: 11, Func. Count: 111, Neg. LLF: 93.25589042428678
Iteration: 12, Func. Count: 120, Neg. LLF: 93.25073759313665
Iteration: 13, Func. Count: 129, Neg. LLF: 93.24895592328514
Iteration: 14, Func. Count: 138, Neg. LLF: 93.24872457004372
Iteration: 15, Func. Count: 147, Neg. LLF: 93.2487094043888
Iteration: 16, Func. Count: 155, Neg. LLF: 93.24870940438461
Optimization terminated successfully (Exit mode 0)
Current function value: 93.2487094043888
Iterations: 16
Function evaluations: 155
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 95.10452066695541
Iteration: 2, Func. Count: 22, Neg. LLF: 1187535.9864168451
Iteration: 3, Func. Count: 33, Neg. LLF: 103.35857610480625
Iteration: 4, Func. Count: 44, Neg. LLF: 126.59552135478972
Iteration: 5, Func. Count: 55, Neg. LLF: 127.29063084905992
Iteration: 6, Func. Count: 66, Neg. LLF: 98.52573069142822
Iteration: 7, Func. Count: 77, Neg. LLF: 112.9681260457656
Iteration: 8, Func. Count: 88, Neg. LLF: 93.28155779938325
Iteration: 9, Func. Count: 98, Neg. LLF: 102.6740028659524
Iteration: 10, Func. Count: 110, Neg. LLF: 94.91636391906286
Iteration: 11, Func. Count: 121, Neg. LLF: 93.11821597133883
Iteration: 12, Func. Count: 131, Neg. LLF: 93.10831989054444
Iteration: 13, Func. Count: 141, Neg. LLF: 93.10118779551887
Iteration: 14, Func. Count: 151, Neg. LLF: 93.09222651026757
Iteration: 15, Func. Count: 161, Neg. LLF: 93.08190289223424
Iteration: 16, Func. Count: 171, Neg. LLF: 93.08017253572427
Iteration: 17, Func. Count: 181, Neg. LLF: 93.07997086524098
Iteration: 18, Func. Count: 191, Neg. LLF: 93.0799631420328
Iteration: 19, Func. Count: 201, Neg. LLF: 93.07996234755835
Optimization terminated successfully (Exit mode 0)
Current function value: 93.07996234755835
Iterations: 19
Function evaluations: 201
Gradient evaluations: 19
Iteration: 1, Func. Count: 12, Neg. LLF: 96.5220713393432
Iteration: 2, Func. Count: 24, Neg. LLF: 175.22330335979282
Iteration: 3, Func. Count: 36, Neg. LLF: 2631.0912609229194
Iteration: 4, Func. Count: 48, Neg. LLF: 104.79925580833823
Iteration: 5, Func. Count: 60, Neg. LLF: 134.01785598496582
Iteration: 6, Func. Count: 72, Neg. LLF: 98.87770946428046
Iteration: 7, Func. Count: 84, Neg. LLF: 92.8441101141075
Iteration: 8, Func. Count: 95, Neg. LLF: 92.82177618146515
Iteration: 9, Func. Count: 106, Neg. LLF: 92.82030317107754
Iteration: 10, Func. Count: 117, Neg. LLF: 92.82026194071037
Iteration: 11, Func. Count: 128, Neg. LLF: 92.82026000113919
Iteration: 12, Func. Count: 138, Neg. LLF: 92.82026000113103
Optimization terminated successfully (Exit mode 0)
Current function value: 92.82026000113919
Iterations: 12
Function evaluations: 138
Gradient evaluations: 12
Iteration: 1, Func. Count: 13, Neg. LLF: 100.14049147561946
Iteration: 2, Func. Count: 26, Neg. LLF: 140.7027719711163
Iteration: 3, Func. Count: 39, Neg. LLF: 2975.181610013533
Iteration: 4, Func. Count: 52, Neg. LLF: 107.71308992779782
Iteration: 5, Func. Count: 65, Neg. LLF: 98.96002348964082
Iteration: 6, Func. Count: 78, Neg. LLF: 91.9680281232549
Iteration: 7, Func. Count: 90, Neg. LLF: 92.05230651299462
Iteration: 8, Func. Count: 103, Neg. LLF: 97.44146163180454
Iteration: 9, Func. Count: 118, Neg. LLF: 91.824938504322
Iteration: 10, Func. Count: 130, Neg. LLF: 91.82552107980354
Iteration: 11, Func. Count: 143, Neg. LLF: 91.81331113461225
Iteration: 12, Func. Count: 155, Neg. LLF: 91.80884826147069
Iteration: 13, Func. Count: 167, Neg. LLF: 91.80728643267545
Iteration: 14, Func. Count: 179, Neg. LLF: 91.80729209362244
Iteration: 15, Func. Count: 192, Neg. LLF: 91.80725920103346
Iteration: 16, Func. Count: 205, Neg. LLF: 91.80724837886936
Iteration: 17, Func. Count: 216, Neg. LLF: 91.80724837887057
Optimization terminated successfully (Exit mode 0)
Current function value: 91.80724837886936
Iterations: 17
Function evaluations: 216
Gradient evaluations: 17
Iteration: 1, Func. Count: 14, Neg. LLF: 95.2456558139245
Iteration: 2, Func. Count: 28, Neg. LLF: 600.9775690007242
Iteration: 3, Func. Count: 42, Neg. LLF: 116.69370500839388
Iteration: 4, Func. Count: 56, Neg. LLF: 486.29177120698444
Iteration: 5, Func. Count: 70, Neg. LLF: 120.2065661990729
Iteration: 6, Func. Count: 84, Neg. LLF: 102.59203738702885
Iteration: 7, Func. Count: 98, Neg. LLF: 92.35646602066731
Iteration: 8, Func. Count: 112, Neg. LLF: 91.82886053675229
Iteration: 9, Func. Count: 125, Neg. LLF: 95.41246872681087
Iteration: 10, Func. Count: 140, Neg. LLF: 92.04778367733812
Iteration: 11, Func. Count: 155, Neg. LLF: 92.15290264880741
Iteration: 12, Func. Count: 169, Neg. LLF: 91.80814066703242
Iteration: 13, Func. Count: 182, Neg. LLF: 91.80742666831998
Iteration: 14, Func. Count: 195, Neg. LLF: 91.80726610284677
Iteration: 15, Func. Count: 208, Neg. LLF: 91.80725613978034
Iteration: 16, Func. Count: 221, Neg. LLF: 91.80724832036107
Iteration: 17, Func. Count: 233, Neg. LLF: 91.80724834476065
Optimization terminated successfully (Exit mode 0)
Current function value: 91.80724832036107
Iterations: 17
Function evaluations: 233
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 127.36436871911184
Iteration: 2, Func. Count: 23, Neg. LLF: 500.88293150375813
Iteration: 3, Func. Count: 34, Neg. LLF: 8223579.525181162
Iteration: 4, Func. Count: 45, Neg. LLF: 99.70349818761369
Iteration: 5, Func. Count: 56, Neg. LLF: 92.96128433079897
Iteration: 6, Func. Count: 66, Neg. LLF: 98.92545524500537
Iteration: 7, Func. Count: 79, Neg. LLF: 99.89861734251166
Iteration: 8, Func. Count: 90, Neg. LLF: 92.64555587529341
Iteration: 9, Func. Count: 100, Neg. LLF: 96.48760875827239
Iteration: 10, Func. Count: 112, Neg. LLF: 92.63627908986203
Iteration: 11, Func. Count: 123, Neg. LLF: 92.61308260577933
Iteration: 12, Func. Count: 133, Neg. LLF: 92.61138296224362
Iteration: 13, Func. Count: 143, Neg. LLF: 92.61056639881245
Iteration: 14, Func. Count: 153, Neg. LLF: 92.61054752439559
Iteration: 15, Func. Count: 163, Neg. LLF: 92.61054579177065
Iteration: 16, Func. Count: 173, Neg. LLF: 92.6105448939341
Optimization terminated successfully (Exit mode 0)
Current function value: 92.6105448939341
Iterations: 16
Function evaluations: 173
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 98.3047196284112
Iteration: 2, Func. Count: 24, Neg. LLF: 114.72992501002027
Iteration: 3, Func. Count: 36, Neg. LLF: 104.1806738973568
Iteration: 4, Func. Count: 48, Neg. LLF: 99.61949237193677
Iteration: 5, Func. Count: 60, Neg. LLF: 131.90670905817248
Iteration: 6, Func. Count: 72, Neg. LLF: 198.61564677968514
Iteration: 7, Func. Count: 84, Neg. LLF: 106.83700817253765
Iteration: 8, Func. Count: 96, Neg. LLF: 93.54776486917814
Iteration: 9, Func. Count: 108, Neg. LLF: 93.0276191531428
Iteration: 10, Func. Count: 119, Neg. LLF: 95.48055074801913
Iteration: 11, Func. Count: 132, Neg. LLF: 93.01572266284715
Iteration: 12, Func. Count: 143, Neg. LLF: 93.01428841456328
Iteration: 13, Func. Count: 154, Neg. LLF: 93.0127906879017
Iteration: 14, Func. Count: 165, Neg. LLF: 93.01073020131362
Iteration: 15, Func. Count: 176, Neg. LLF: 93.00968203318732
Iteration: 16, Func. Count: 187, Neg. LLF: 93.00957655802198
Iteration: 17, Func. Count: 198, Neg. LLF: 93.00956293474518
Iteration: 18, Func. Count: 208, Neg. LLF: 93.00956293468424
Optimization terminated successfully (Exit mode 0)
Current function value: 93.00956293474518
Iterations: 18
Function evaluations: 208
Gradient evaluations: 18
Iteration: 1, Func. Count: 13, Neg. LLF: 95.44454290713519
Iteration: 2, Func. Count: 26, Neg. LLF: 2915.5541186470223
Iteration: 3, Func. Count: 39, Neg. LLF: 133.66787484999222
Iteration: 4, Func. Count: 52, Neg. LLF: 95.51070015767813
Iteration: 5, Func. Count: 65, Neg. LLF: 98.03449329192135
Iteration: 6, Func. Count: 79, Neg. LLF: 106.69207485492596
Iteration: 7, Func. Count: 92, Neg. LLF: 93.14952848001269
Iteration: 8, Func. Count: 105, Neg. LLF: 156.18647204325703
Iteration: 9, Func. Count: 118, Neg. LLF: 92.28804616571479
Iteration: 10, Func. Count: 130, Neg. LLF: 92.20813105655118
Iteration: 11, Func. Count: 142, Neg. LLF: 92.20641666925027
Iteration: 12, Func. Count: 154, Neg. LLF: 92.20620153157161
Iteration: 13, Func. Count: 166, Neg. LLF: 92.20619952547376
Iteration: 14, Func. Count: 179, Neg. LLF: 92.20619306177649
Optimization terminated successfully (Exit mode 0)
Current function value: 92.20619306177649
Iterations: 14
Function evaluations: 179
Gradient evaluations: 14
Iteration: 1, Func. Count: 14, Neg. LLF: 97.74023846150939
Iteration: 2, Func. Count: 28, Neg. LLF: 177.2129238673379
Iteration: 3, Func. Count: 43, Neg. LLF: 92.79768931265843
Iteration: 4, Func. Count: 57, Neg. LLF: 115.64019150149866
Iteration: 5, Func. Count: 71, Neg. LLF: 270.44105054923347
Iteration: 6, Func. Count: 85, Neg. LLF: 94.0228129918369
Iteration: 7, Func. Count: 99, Neg. LLF: 91.64189723522018
Iteration: 8, Func. Count: 112, Neg. LLF: 107.17534796106247
Iteration: 9, Func. Count: 127, Neg. LLF: 93.95735530016883
Iteration: 10, Func. Count: 142, Neg. LLF: 91.88774025594006
Iteration: 11, Func. Count: 156, Neg. LLF: 91.53365737006276
Iteration: 12, Func. Count: 170, Neg. LLF: 91.68224147934315
Iteration: 13, Func. Count: 184, Neg. LLF: 91.37380019988895
Iteration: 14, Func. Count: 197, Neg. LLF: 91.37127483458775
Iteration: 15, Func. Count: 210, Neg. LLF: 91.37042858339073
Iteration: 16, Func. Count: 223, Neg. LLF: 91.37036477187787
Iteration: 17, Func. Count: 236, Neg. LLF: 91.3703572494854
Iteration: 18, Func. Count: 249, Neg. LLF: 91.3703563046891
Optimization terminated successfully (Exit mode 0)
Current function value: 91.3703563046891
Iterations: 18
Function evaluations: 249
Gradient evaluations: 18
Iteration: 1, Func. Count: 15, Neg. LLF: 97.37007300186696
Iteration: 2, Func. Count: 30, Neg. LLF: 114.52058972408706
Iteration: 3, Func. Count: 45, Neg. LLF: 94.34442974860542
Iteration: 4, Func. Count: 60, Neg. LLF: 7378.727561474074
Iteration: 5, Func. Count: 75, Neg. LLF: 93.41029930446585
Iteration: 6, Func. Count: 90, Neg. LLF: 92.95450175058957
Iteration: 7, Func. Count: 105, Neg. LLF: 91.61286198338252
Iteration: 8, Func. Count: 119, Neg. LLF: 103.43495661463136
Iteration: 9, Func. Count: 135, Neg. LLF: 91.54104074770054
Iteration: 10, Func. Count: 150, Neg. LLF: 94.36868539033608
Iteration: 11, Func. Count: 165, Neg. LLF: 91.44153176329449
Iteration: 12, Func. Count: 180, Neg. LLF: 91.53605001800693
Iteration: 13, Func. Count: 195, Neg. LLF: 91.3737063798338
Iteration: 14, Func. Count: 209, Neg. LLF: 91.37111224599762
Iteration: 15, Func. Count: 223, Neg. LLF: 91.370413408994
Iteration: 16, Func. Count: 237, Neg. LLF: 91.37038705344375
Iteration: 17, Func. Count: 251, Neg. LLF: 91.37035640862766
Iteration: 18, Func. Count: 264, Neg. LLF: 91.37035646851683
Optimization terminated successfully (Exit mode 0)
Current function value: 91.37035640862766
Iterations: 18
Function evaluations: 264
Gradient evaluations: 18
Iteration: 1, Func. Count: 12, Neg. LLF: 127.01228946468385
Iteration: 2, Func. Count: 25, Neg. LLF: 1137.4222738905016
Iteration: 3, Func. Count: 37, Neg. LLF: 6149786.765390715
Iteration: 4, Func. Count: 49, Neg. LLF: 15211.506976397688
Iteration: 5, Func. Count: 61, Neg. LLF: 95.13773172058592
Iteration: 6, Func. Count: 73, Neg. LLF: 92.62553621269507
Iteration: 7, Func. Count: 84, Neg. LLF: 93.55133123027589
Iteration: 8, Func. Count: 97, Neg. LLF: 95.64465273229199
Iteration: 9, Func. Count: 111, Neg. LLF: 92.74072580286153
Iteration: 10, Func. Count: 123, Neg. LLF: 92.4429573106818
Iteration: 11, Func. Count: 134, Neg. LLF: 92.42022092350997
Iteration: 12, Func. Count: 145, Neg. LLF: 92.41580215479111
Iteration: 13, Func. Count: 156, Neg. LLF: 92.41202360071695
Iteration: 14, Func. Count: 167, Neg. LLF: 92.41170171413316
Iteration: 15, Func. Count: 178, Neg. LLF: 92.41167333811897
Iteration: 16, Func. Count: 188, Neg. LLF: 92.41167332551267
Optimization terminated successfully (Exit mode 0)
Current function value: 92.41167333811897
Iterations: 16
Function evaluations: 188
Gradient evaluations: 16
Iteration: 1, Func. Count: 13, Neg. LLF: 97.2273579929717
Iteration: 2, Func. Count: 26, Neg. LLF: 152.20999524229464
Iteration: 3, Func. Count: 39, Neg. LLF: 98.7881572785529
Iteration: 4, Func. Count: 52, Neg. LLF: 95.70452138131407
Iteration: 5, Func. Count: 65, Neg. LLF: 98.91717338429908
Iteration: 6, Func. Count: 78, Neg. LLF: 93.41171619313025
Iteration: 7, Func. Count: 91, Neg. LLF: 102.61025295306243
Iteration: 8, Func. Count: 104, Neg. LLF: 93.82109924508987
Iteration: 9, Func. Count: 117, Neg. LLF: 92.43765056020352
Iteration: 10, Func. Count: 129, Neg. LLF: 92.43181277883401
Iteration: 11, Func. Count: 141, Neg. LLF: 92.4180764246056
Iteration: 12, Func. Count: 153, Neg. LLF: 92.41249133372305
Iteration: 13, Func. Count: 165, Neg. LLF: 92.41170655373611
Iteration: 14, Func. Count: 177, Neg. LLF: 92.41167531327845
Iteration: 15, Func. Count: 189, Neg. LLF: 92.41167341398055
Iteration: 16, Func. Count: 200, Neg. LLF: 92.41167342141969
Optimization terminated successfully (Exit mode 0)
Current function value: 92.41167341398055
Iterations: 16
Function evaluations: 200
Gradient evaluations: 16
Iteration: 1, Func. Count: 14, Neg. LLF: 96.4317452135695
Iteration: 2, Func. Count: 28, Neg. LLF: 132.92486084491895
Iteration: 3, Func. Count: 42, Neg. LLF: 103.03875760835497
Iteration: 4, Func. Count: 56, Neg. LLF: 103.65210857904015
Iteration: 5, Func. Count: 70, Neg. LLF: 295.7128627767453
Iteration: 6, Func. Count: 84, Neg. LLF: 100.8936529322802
Iteration: 7, Func. Count: 98, Neg. LLF: 125.988940416362
Iteration: 8, Func. Count: 112, Neg. LLF: 92.93433647633255
Iteration: 9, Func. Count: 126, Neg. LLF: 104.1292282574313
Iteration: 10, Func. Count: 140, Neg. LLF: 91.81017724168434
Iteration: 11, Func. Count: 154, Neg. LLF: 91.56390614893577
Iteration: 12, Func. Count: 167, Neg. LLF: 91.5738972212823
Iteration: 13, Func. Count: 181, Neg. LLF: 91.55652088030497
Iteration: 14, Func. Count: 195, Neg. LLF: 91.5517231961447
Iteration: 15, Func. Count: 208, Neg. LLF: 91.5516069246487
Iteration: 16, Func. Count: 221, Neg. LLF: 91.5515875256612
Iteration: 17, Func. Count: 234, Neg. LLF: 91.55157765554156
Iteration: 18, Func. Count: 246, Neg. LLF: 91.55157765554432
Optimization terminated successfully (Exit mode 0)
Current function value: 91.55157765554156
Iterations: 18
Function evaluations: 246
Gradient evaluations: 18
Iteration: 1, Func. Count: 15, Neg. LLF: 99.29715322339418
Iteration: 2, Func. Count: 30, Neg. LLF: 157.86709854347586
Iteration: 3, Func. Count: 45, Neg. LLF: 327.223939996896
Iteration: 4, Func. Count: 60, Neg. LLF: 95.23501346907202
Iteration: 5, Func. Count: 75, Neg. LLF: 330.83992786041284
Iteration: 6, Func. Count: 90, Neg. LLF: 102.01783835441388
Iteration: 7, Func. Count: 105, Neg. LLF: 93.66489497036271
Iteration: 8, Func. Count: 120, Neg. LLF: 91.02480491113742
Iteration: 9, Func. Count: 134, Neg. LLF: 105.72640539884661
Iteration: 10, Func. Count: 150, Neg. LLF: 90.93106709349134
Iteration: 11, Func. Count: 164, Neg. LLF: 90.9272489016343
Iteration: 12, Func. Count: 178, Neg. LLF: 90.92684658638821
Iteration: 13, Func. Count: 192, Neg. LLF: 90.9268022744362
Iteration: 14, Func. Count: 206, Neg. LLF: 90.92679877306031
Iteration: 15, Func. Count: 219, Neg. LLF: 90.92679877319077
Optimization terminated successfully (Exit mode 0)
Current function value: 90.92679877306031
Iterations: 15
Function evaluations: 219
Gradient evaluations: 15
Iteration: 1, Func. Count: 16, Neg. LLF: 95.41293096175083
Iteration: 2, Func. Count: 32, Neg. LLF: 1647882.5016767161
Iteration: 3, Func. Count: 48, Neg. LLF: 139.94991282204336
Iteration: 4, Func. Count: 64, Neg. LLF: 235.26628992990624
Iteration: 5, Func. Count: 80, Neg. LLF: 93.87414407629905
Iteration: 6, Func. Count: 96, Neg. LLF: 3318532.008365009
Iteration: 7, Func. Count: 112, Neg. LLF: 98.2129244453082
Iteration: 8, Func. Count: 128, Neg. LLF: 100.35346575333419
Iteration: 9, Func. Count: 144, Neg. LLF: 96.10658454918803
Iteration: 10, Func. Count: 160, Neg. LLF: 90.98508024811763
Iteration: 11, Func. Count: 175, Neg. LLF: 95.16897165549487
Iteration: 12, Func. Count: 192, Neg. LLF: 94.47640087346349
Iteration: 13, Func. Count: 208, Neg. LLF: 90.84206908255258
Iteration: 14, Func. Count: 224, Neg. LLF: 90.61264468470819
Iteration: 15, Func. Count: 239, Neg. LLF: 90.5789376258782
Iteration: 16, Func. Count: 254, Neg. LLF: 90.56477367793225
Iteration: 17, Func. Count: 269, Neg. LLF: 90.56014816004041
Iteration: 18, Func. Count: 284, Neg. LLF: 90.55744803089286
Iteration: 19, Func. Count: 299, Neg. LLF: 90.55478079403358
Iteration: 20, Func. Count: 314, Neg. LLF: 90.55461037537866
Iteration: 21, Func. Count: 329, Neg. LLF: 90.55457317737756
Iteration: 22, Func. Count: 344, Neg. LLF: 90.55455843010924
Iteration: 23, Func. Count: 359, Neg. LLF: 90.55455343123879
Iteration: 24, Func. Count: 373, Neg. LLF: 90.55455343123734
Optimization terminated successfully (Exit mode 0)
Current function value: 90.55455343123879
Iterations: 24
Function evaluations: 373
Gradient evaluations: 24
Iteration: 1, Func. Count: 7, Neg. LLF: 138.69082749344625
Iteration: 2, Func. Count: 16, Neg. LLF: 247088487.8024485
Iteration: 3, Func. Count: 24, Neg. LLF: 8269206.998947868
Iteration: 4, Func. Count: 31, Neg. LLF: 92.91815493778903
Iteration: 5, Func. Count: 37, Neg. LLF: 4040670.629460208
Iteration: 6, Func. Count: 46, Neg. LLF: 94.71608971497247
Iteration: 7, Func. Count: 53, Neg. LLF: 92.65222181105055
Iteration: 8, Func. Count: 59, Neg. LLF: 92.64218492391129
Iteration: 9, Func. Count: 65, Neg. LLF: 92.63802164076148
Iteration: 10, Func. Count: 71, Neg. LLF: 92.63060746543427
Iteration: 11, Func. Count: 77, Neg. LLF: 92.63019624568875
Iteration: 12, Func. Count: 83, Neg. LLF: 92.63000035914531
Iteration: 13, Func. Count: 89, Neg. LLF: 92.62983171605785
Iteration: 14, Func. Count: 95, Neg. LLF: 92.62979990579147
Iteration: 15, Func. Count: 101, Neg. LLF: 92.62979734697409
Iteration: 16, Func. Count: 106, Neg. LLF: 92.62979734698266
Optimization terminated successfully (Exit mode 0)
Current function value: 92.62979734697409
Iterations: 16
Function evaluations: 106
Gradient evaluations: 16
Iteration: 1, Func. Count: 5, Neg. LLF: 128.116278479815
Iteration: 2, Func. Count: 12, Neg. LLF: 97.74757814792918
Iteration: 3, Func. Count: 17, Neg. LLF: 95.99466662249867
Iteration: 4, Func. Count: 21, Neg. LLF: 95.98459988176424
Iteration: 5, Func. Count: 26, Neg. LLF: 95.9486845404139
Iteration: 6, Func. Count: 30, Neg. LLF: 95.94842293300128
Iteration: 7, Func. Count: 33, Neg. LLF: 95.94842307584605
Optimization terminated successfully (Exit mode 0)
Current function value: 95.94842293300128
Iterations: 7
Function evaluations: 33
Gradient evaluations: 7
Iteration: 1, Func. Count: 6, Neg. LLF: 21697748.18888223
Iteration: 2, Func. Count: 13, Neg. LLF: 102.88098393599101
Iteration: 3, Func. Count: 19, Neg. LLF: 98.11052162900324
Iteration: 4, Func. Count: 25, Neg. LLF: 96.5477911428679
Iteration: 5, Func. Count: 31, Neg. LLF: 96.09262052095863
Iteration: 6, Func. Count: 37, Neg. LLF: 92.76725068548068
Iteration: 7, Func. Count: 42, Neg. LLF: 95.25156113615144
Iteration: 8, Func. Count: 48, Neg. LLF: 94.01682299276864
Iteration: 9, Func. Count: 54, Neg. LLF: 91.60234751098518
Iteration: 10, Func. Count: 59, Neg. LLF: 91.65070788664673
Iteration: 11, Func. Count: 65, Neg. LLF: 91.5948885743435
Iteration: 12, Func. Count: 70, Neg. LLF: 91.59486379217331
Iteration: 13, Func. Count: 74, Neg. LLF: 91.59486379217574
Optimization terminated successfully (Exit mode 0)
Current function value: 91.59486379217331
Iterations: 13
Function evaluations: 74
Gradient evaluations: 13
Iteration: 1, Func. Count: 7, Neg. LLF: 21351469.994541336
Iteration: 2, Func. Count: 15, Neg. LLF: 96.24696417099284
Iteration: 3, Func. Count: 22, Neg. LLF: 94.67114904861478
Iteration: 4, Func. Count: 29, Neg. LLF: 91.82174425176946
Iteration: 5, Func. Count: 35, Neg. LLF: 91.71925652683605
Iteration: 6, Func. Count: 41, Neg. LLF: 94.50355051880426
Iteration: 7, Func. Count: 48, Neg. LLF: 91.63469675761279
Iteration: 8, Func. Count: 54, Neg. LLF: 91.63423367536217
Iteration: 9, Func. Count: 60, Neg. LLF: 91.63389434287868
Iteration: 10, Func. Count: 66, Neg. LLF: 91.63345363843223
Iteration: 11, Func. Count: 72, Neg. LLF: 91.63099440503376
Iteration: 12, Func. Count: 78, Neg. LLF: 91.61566280238983
Iteration: 13, Func. Count: 84, Neg. LLF: 91.59541205824617
Iteration: 14, Func. Count: 90, Neg. LLF: 91.59524801419617
Iteration: 15, Func. Count: 96, Neg. LLF: 91.59491878750467
Iteration: 16, Func. Count: 102, Neg. LLF: 91.59714034848461
Iteration: 17, Func. Count: 110, Neg. LLF: 91.59490260438614
Iteration: 18, Func. Count: 116, Neg. LLF: 91.59613030768193
Optimization terminated successfully (Exit mode 0)
Current function value: 91.59490230755762
Iterations: 18
Function evaluations: 118
Gradient evaluations: 18
Iteration: 1, Func. Count: 8, Neg. LLF: 21204452.319416333
Iteration: 2, Func. Count: 16, Neg. LLF: 99.26405804463404
Iteration: 3, Func. Count: 24, Neg. LLF: 99.14168106944939
Iteration: 4, Func. Count: 32, Neg. LLF: 91.46555905250946
Iteration: 5, Func. Count: 39, Neg. LLF: 91.42183042886472
Iteration: 6, Func. Count: 46, Neg. LLF: 91.40345406207997
Iteration: 7, Func. Count: 53, Neg. LLF: 91.4031963230347
Iteration: 8, Func. Count: 60, Neg. LLF: 91.40319462998478
Iteration: 9, Func. Count: 66, Neg. LLF: 91.4031946300016
Optimization terminated successfully (Exit mode 0)
Current function value: 91.40319462998478
Iterations: 9
Function evaluations: 66
Gradient evaluations: 9
Iteration: 1, Func. Count: 9, Neg. LLF: 20948757.27695543
Iteration: 2, Func. Count: 19, Neg. LLF: 97.45225308464931
Iteration: 3, Func. Count: 28, Neg. LLF: 95.5915548083018
Iteration: 4, Func. Count: 37, Neg. LLF: 93.43698816917845
Iteration: 5, Func. Count: 45, Neg. LLF: 94.46565140440988
Iteration: 6, Func. Count: 54, Neg. LLF: 98.68344114349584
Iteration: 7, Func. Count: 64, Neg. LLF: 92.89302074154112
Iteration: 8, Func. Count: 72, Neg. LLF: 94.914732932063
Iteration: 9, Func. Count: 81, Neg. LLF: 92.22319588165342
Iteration: 10, Func. Count: 89, Neg. LLF: 92.7032580565322
Iteration: 11, Func. Count: 98, Neg. LLF: 91.8583518770612
Iteration: 12, Func. Count: 107, Neg. LLF: 91.60927827657797
Iteration: 13, Func. Count: 115, Neg. LLF: 91.59133016871844
Iteration: 14, Func. Count: 123, Neg. LLF: 91.4350951520021
Iteration: 15, Func. Count: 131, Neg. LLF: 91.40322206457977
Iteration: 16, Func. Count: 139, Neg. LLF: 91.40319931041896
Iteration: 17, Func. Count: 147, Neg. LLF: 91.40319577221408
Iteration: 18, Func. Count: 154, Neg. LLF: 91.40319578181897
Optimization terminated successfully (Exit mode 0)
Current function value: 91.40319577221408
Iterations: 18
Function evaluations: 154
Gradient evaluations: 18
Iteration: 1, Func. Count: 6, Neg. LLF: 128.70582075262195
Iteration: 2, Func. Count: 14, Neg. LLF: 98.64240785483199
Iteration: 3, Func. Count: 20, Neg. LLF: 96.25589571868613
Iteration: 4, Func. Count: 25, Neg. LLF: 95.97086626790652
Iteration: 5, Func. Count: 30, Neg. LLF: 95.95085074848116
Iteration: 6, Func. Count: 35, Neg. LLF: 95.94843826656893
Iteration: 7, Func. Count: 40, Neg. LLF: 95.94842298074569
Iteration: 8, Func. Count: 44, Neg. LLF: 95.94842300788504
Optimization terminated successfully (Exit mode 0)
Current function value: 95.94842298074569
Iterations: 8
Function evaluations: 44
Gradient evaluations: 8
Iteration: 1, Func. Count: 7, Neg. LLF: 21405504.310418706
Iteration: 2, Func. Count: 15, Neg. LLF: 102.79498849482235
Iteration: 3, Func. Count: 22, Neg. LLF: 99.67289126095578
Iteration: 4, Func. Count: 29, Neg. LLF: 96.42775159200065
Iteration: 5, Func. Count: 36, Neg. LLF: 95.31233057688479
Iteration: 6, Func. Count: 43, Neg. LLF: 92.9622402969388
Iteration: 7, Func. Count: 49, Neg. LLF: 99.21459685078318
Iteration: 8, Func. Count: 56, Neg. LLF: 120.83173027623192
Iteration: 9, Func. Count: 64, Neg. LLF: 97.9125311421391
Iteration: 10, Func. Count: 71, Neg. LLF: 91.79126308032669
Iteration: 11, Func. Count: 77, Neg. LLF: 92.16718530020712
Iteration: 12, Func. Count: 84, Neg. LLF: 91.59720602028278
Iteration: 13, Func. Count: 91, Neg. LLF: 91.59486491811597
Iteration: 14, Func. Count: 97, Neg. LLF: 91.5948637902136
Iteration: 15, Func. Count: 102, Neg. LLF: 91.59486379022619
Optimization terminated successfully (Exit mode 0)
Current function value: 91.5948637902136
Iterations: 16
Function evaluations: 102
Gradient evaluations: 15
Iteration: 1, Func. Count: 8, Neg. LLF: 21179081.91520961
Iteration: 2, Func. Count: 17, Neg. LLF: 96.43116613621135
Iteration: 3, Func. Count: 25, Neg. LLF: 94.69342367234505
Iteration: 4, Func. Count: 33, Neg. LLF: 91.8410877008207
Iteration: 5, Func. Count: 40, Neg. LLF: 91.8134075202616
Iteration: 6, Func. Count: 48, Neg. LLF: 92.54582578573677
Iteration: 7, Func. Count: 56, Neg. LLF: 91.6662102080528
Iteration: 8, Func. Count: 64, Neg. LLF: 91.64504784109981
Iteration: 9, Func. Count: 71, Neg. LLF: 91.64176509786945
Iteration: 10, Func. Count: 78, Neg. LLF: 91.63628721060265
Iteration: 11, Func. Count: 85, Neg. LLF: 91.63280025134436
Iteration: 12, Func. Count: 92, Neg. LLF: 91.62901888562767
Iteration: 13, Func. Count: 99, Neg. LLF: 91.59584279933034
Iteration: 14, Func. Count: 106, Neg. LLF: 91.59526448306302
Iteration: 15, Func. Count: 113, Neg. LLF: 91.59486576420207
Iteration: 16, Func. Count: 120, Neg. LLF: 98.00039512638675
Optimization terminated successfully (Exit mode 0)
Current function value: 91.59486575522396
Iterations: 17
Function evaluations: 125
Gradient evaluations: 16
Iteration: 1, Func. Count: 9, Neg. LLF: 21015010.00699553
Iteration: 2, Func. Count: 18, Neg. LLF: 98.46758104846192
Iteration: 3, Func. Count: 27, Neg. LLF: 99.01239203237758
Iteration: 4, Func. Count: 36, Neg. LLF: 91.47001807701083
Iteration: 5, Func. Count: 44, Neg. LLF: 91.41865442389053
Iteration: 6, Func. Count: 52, Neg. LLF: 91.40346191533291
Iteration: 7, Func. Count: 60, Neg. LLF: 91.40319559462871
Iteration: 8, Func. Count: 68, Neg. LLF: 91.40319463319643
Optimization terminated successfully (Exit mode 0)
Current function value: 91.40319463319643
Iterations: 8
Function evaluations: 68
Gradient evaluations: 8
Iteration: 1, Func. Count: 10, Neg. LLF: 20742485.12247817
Iteration: 2, Func. Count: 21, Neg. LLF: 97.06867164611448
Iteration: 3, Func. Count: 31, Neg. LLF: 94.94177967196164
Iteration: 4, Func. Count: 41, Neg. LLF: 94.21148117697332
Iteration: 5, Func. Count: 51, Neg. LLF: 93.14096266414599
Iteration: 6, Func. Count: 61, Neg. LLF: 174.49044322153685
Iteration: 7, Func. Count: 71, Neg. LLF: 91.63221248747192
Iteration: 8, Func. Count: 80, Neg. LLF: 91.83338365077408
Iteration: 9, Func. Count: 92, Neg. LLF: 92.0140537625663
Iteration: 10, Func. Count: 102, Neg. LLF: 91.5390197795259
Iteration: 11, Func. Count: 111, Neg. LLF: 91.53240640688595
Iteration: 12, Func. Count: 120, Neg. LLF: 91.5308028149358
Iteration: 13, Func. Count: 129, Neg. LLF: 91.53062818201693
Iteration: 14, Func. Count: 138, Neg. LLF: 91.53062944439955
Optimization terminated successfully (Exit mode 0)
Current function value: 91.53062805637764
Iterations: 14
Function evaluations: 139
Gradient evaluations: 14
Iteration: 1, Func. Count: 7, Neg. LLF: 132.36615405217333
Iteration: 2, Func. Count: 16, Neg. LLF: 177600134.9601164
Iteration: 3, Func. Count: 23, Neg. LLF: 6427672.071200158
Iteration: 4, Func. Count: 30, Neg. LLF: 93.24255418344899
Iteration: 5, Func. Count: 37, Neg. LLF: 93.86568684485287
Iteration: 6, Func. Count: 44, Neg. LLF: 92.51266220741367
Iteration: 7, Func. Count: 51, Neg. LLF: 92.0264929463777
Iteration: 8, Func. Count: 57, Neg. LLF: 92.02292334658507
Iteration: 9, Func. Count: 63, Neg. LLF: 92.01321226540023
Iteration: 10, Func. Count: 69, Neg. LLF: 92.00612753772785
Iteration: 11, Func. Count: 75, Neg. LLF: 92.00078525760593
Iteration: 12, Func. Count: 81, Neg. LLF: 91.99732770934789
Iteration: 13, Func. Count: 87, Neg. LLF: 91.99729046731379
Iteration: 14, Func. Count: 93, Neg. LLF: 91.99728978308444
Optimization terminated successfully (Exit mode 0)
Current function value: 91.99728978308444
Iterations: 14
Function evaluations: 93
Gradient evaluations: 14
Iteration: 1, Func. Count: 8, Neg. LLF: 21334889.09235387
Iteration: 2, Func. Count: 17, Neg. LLF: 10264058.988748671
Iteration: 3, Func. Count: 25, Neg. LLF: 9025494.816622566
Iteration: 4, Func. Count: 34, Neg. LLF: 97.20218608701101
Iteration: 5, Func. Count: 43, Neg. LLF: 94.84493869901071
Iteration: 6, Func. Count: 51, Neg. LLF: 93.33338970567945
Iteration: 7, Func. Count: 58, Neg. LLF: 105.20221367877504
Iteration: 8, Func. Count: 68, Neg. LLF: 93.06568119659806
Iteration: 9, Func. Count: 75, Neg. LLF: 92.8593689407497
Iteration: 10, Func. Count: 82, Neg. LLF: 92.77426784050827
Iteration: 11, Func. Count: 89, Neg. LLF: 92.74303273960795
Iteration: 12, Func. Count: 96, Neg. LLF: 92.72247083173696
Iteration: 13, Func. Count: 103, Neg. LLF: 92.69545197428295
Iteration: 14, Func. Count: 110, Neg. LLF: 92.65001842127636
Iteration: 15, Func. Count: 117, Neg. LLF: 92.57415211861625
Iteration: 16, Func. Count: 124, Neg. LLF: 92.50878996906455
Iteration: 17, Func. Count: 131, Neg. LLF: 92.46598898226934
Iteration: 18, Func. Count: 138, Neg. LLF: 92.44541994147302
Iteration: 19, Func. Count: 145, Neg. LLF: 92.44477599844706
Iteration: 20, Func. Count: 152, Neg. LLF: 92.444669295092
Iteration: 21, Func. Count: 159, Neg. LLF: 92.44430141338357
Iteration: 22, Func. Count: 166, Neg. LLF: 92.44441746194896
Iteration: 23, Func. Count: 174, Neg. LLF: 92.44386960362834
Iteration: 24, Func. Count: 181, Neg. LLF: 92.44369845113495
Iteration: 25, Func. Count: 188, Neg. LLF: 92.44369692340194
Iteration: 26, Func. Count: 194, Neg. LLF: 92.44369692341097
Optimization terminated successfully (Exit mode 0)
Current function value: 92.44369692340194
Iterations: 26
Function evaluations: 194
Gradient evaluations: 26
Iteration: 1, Func. Count: 9, Neg. LLF: 21043279.369013533
Iteration: 2, Func. Count: 19, Neg. LLF: 4470.226973653686
Iteration: 3, Func. Count: 28, Neg. LLF: 7357723.328294196
Iteration: 4, Func. Count: 37, Neg. LLF: 119.76589288315795
Iteration: 5, Func. Count: 47, Neg. LLF: 94.6294054354721
Iteration: 6, Func. Count: 56, Neg. LLF: 93.10035917561933
Iteration: 7, Func. Count: 65, Neg. LLF: 92.90780758454508
Iteration: 8, Func. Count: 74, Neg. LLF: 91.97733812590957
Iteration: 9, Func. Count: 83, Neg. LLF: 92.76223623837151
Iteration: 10, Func. Count: 92, Neg. LLF: 91.78279934821803
Iteration: 11, Func. Count: 101, Neg. LLF: 91.6992545857499
Iteration: 12, Func. Count: 109, Neg. LLF: 91.69499515725329
Iteration: 13, Func. Count: 117, Neg. LLF: 91.69416741269602
Iteration: 14, Func. Count: 125, Neg. LLF: 91.69407255683028
Iteration: 15, Func. Count: 133, Neg. LLF: 91.69405451727485
Iteration: 16, Func. Count: 141, Neg. LLF: 91.69403192399707
Iteration: 17, Func. Count: 149, Neg. LLF: 91.69397658416537
Iteration: 18, Func. Count: 157, Neg. LLF: 91.69389569722398
Iteration: 19, Func. Count: 165, Neg. LLF: 91.69382157869939
Iteration: 20, Func. Count: 173, Neg. LLF: 91.69379413854291
Iteration: 21, Func. Count: 181, Neg. LLF: 91.69379092877661
Iteration: 22, Func. Count: 188, Neg. LLF: 91.69379092883216
Optimization terminated successfully (Exit mode 0)
Current function value: 91.69379092877661
Iterations: 22
Function evaluations: 188
Gradient evaluations: 22
Iteration: 1, Func. Count: 10, Neg. LLF: 20872491.847641315
Iteration: 2, Func. Count: 20, Neg. LLF: 7228571.079451829
Iteration: 3, Func. Count: 30, Neg. LLF: 153.36929558759255
Iteration: 4, Func. Count: 41, Neg. LLF: 103.4637815496195
Iteration: 5, Func. Count: 51, Neg. LLF: 91.46785278365405
Iteration: 6, Func. Count: 60, Neg. LLF: 92.23831538351496
Iteration: 7, Func. Count: 70, Neg. LLF: 93.189316042586
Iteration: 8, Func. Count: 80, Neg. LLF: 90.73848521391655
Iteration: 9, Func. Count: 89, Neg. LLF: 90.58190418119518
Iteration: 10, Func. Count: 98, Neg. LLF: 90.62716025329347
Iteration: 11, Func. Count: 108, Neg. LLF: 90.50505902963621
Iteration: 12, Func. Count: 117, Neg. LLF: 90.47136684923491
Iteration: 13, Func. Count: 126, Neg. LLF: 90.4511371133776
Iteration: 14, Func. Count: 135, Neg. LLF: 90.4386216741233
Iteration: 15, Func. Count: 144, Neg. LLF: 90.42390433507451
Iteration: 16, Func. Count: 153, Neg. LLF: 90.39940757629644
Iteration: 17, Func. Count: 162, Neg. LLF: 90.37465447292455
Iteration: 18, Func. Count: 171, Neg. LLF: 90.36327627332858
Iteration: 19, Func. Count: 180, Neg. LLF: 90.36190067393176
Iteration: 20, Func. Count: 189, Neg. LLF: 90.36168177114455
Iteration: 21, Func. Count: 198, Neg. LLF: 90.36164108969939
Iteration: 22, Func. Count: 207, Neg. LLF: 90.36163809068475
Iteration: 23, Func. Count: 216, Neg. LLF: 90.36163720088025
Optimization terminated successfully (Exit mode 0)
Current function value: 90.36163720088025
Iterations: 23
Function evaluations: 216
Gradient evaluations: 23
Iteration: 1, Func. Count: 11, Neg. LLF: 7255940.68070281
Iteration: 2, Func. Count: 22, Neg. LLF: 10605882.7060617
Iteration: 3, Func. Count: 33, Neg. LLF: 13027.333217874098
Iteration: 4, Func. Count: 45, Neg. LLF: 113.64576563817751
Iteration: 5, Func. Count: 56, Neg. LLF: 267.5898699653011
Iteration: 6, Func. Count: 67, Neg. LLF: 94.53706346172089
Iteration: 7, Func. Count: 78, Neg. LLF: 90.10470110141205
Iteration: 8, Func. Count: 88, Neg. LLF: 94.68394995639031
Iteration: 9, Func. Count: 99, Neg. LLF: 90.27534689453533
Iteration: 10, Func. Count: 110, Neg. LLF: 90.15676547163378
Iteration: 11, Func. Count: 121, Neg. LLF: 89.99982698793387
Iteration: 12, Func. Count: 131, Neg. LLF: 89.96531781051253
Iteration: 13, Func. Count: 141, Neg. LLF: 89.95748398675816
Iteration: 14, Func. Count: 151, Neg. LLF: 89.95373667975541
Iteration: 15, Func. Count: 161, Neg. LLF: 89.95138902095121
Iteration: 16, Func. Count: 171, Neg. LLF: 89.94970387481855
Iteration: 17, Func. Count: 181, Neg. LLF: 89.94880197349839
Iteration: 18, Func. Count: 191, Neg. LLF: 89.94842354626357
Iteration: 19, Func. Count: 201, Neg. LLF: 89.94832096236982
Iteration: 20, Func. Count: 211, Neg. LLF: 89.94831907286192
Iteration: 21, Func. Count: 221, Neg. LLF: 89.9483142719301
Iteration: 22, Func. Count: 230, Neg. LLF: 89.94831427193256
Optimization terminated successfully (Exit mode 0)
Current function value: 89.9483142719301
Iterations: 22
Function evaluations: 230
Gradient evaluations: 22
Iteration: 1, Func. Count: 8, Neg. LLF: 137.53204011600303
Iteration: 2, Func. Count: 18, Neg. LLF: 209657528.66370788
Iteration: 3, Func. Count: 26, Neg. LLF: 6451265.7683289
Iteration: 4, Func. Count: 34, Neg. LLF: 94.277491822686
Iteration: 5, Func. Count: 42, Neg. LLF: 100.45025644652641
Iteration: 6, Func. Count: 50, Neg. LLF: 92.65520770544015
Iteration: 7, Func. Count: 58, Neg. LLF: 92.03567749782037
Iteration: 8, Func. Count: 65, Neg. LLF: 92.03117141531754
Iteration: 9, Func. Count: 72, Neg. LLF: 92.02043193389694
Iteration: 10, Func. Count: 79, Neg. LLF: 92.00528565046767
Iteration: 11, Func. Count: 86, Neg. LLF: 91.99888097687068
Iteration: 12, Func. Count: 93, Neg. LLF: 91.9975092566835
Iteration: 13, Func. Count: 100, Neg. LLF: 91.99729162932786
Iteration: 14, Func. Count: 107, Neg. LLF: 91.99728982221205
Iteration: 15, Func. Count: 113, Neg. LLF: 91.99728984630143
Optimization terminated successfully (Exit mode 0)
Current function value: 91.99728982221205
Iterations: 15
Function evaluations: 113
Gradient evaluations: 15
Iteration: 1, Func. Count: 9, Neg. LLF: 21551971.82975328
Iteration: 2, Func. Count: 19, Neg. LLF: 3516842.273108464
Iteration: 3, Func. Count: 28, Neg. LLF: 7466226.097092789
Iteration: 4, Func. Count: 38, Neg. LLF: 136.8008843837079
Iteration: 5, Func. Count: 48, Neg. LLF: 94.01106260333404
Iteration: 6, Func. Count: 57, Neg. LLF: 93.57012375121909
Iteration: 7, Func. Count: 65, Neg. LLF: 101.70965149984377
Iteration: 8, Func. Count: 76, Neg. LLF: 93.24173476384587
Iteration: 9, Func. Count: 84, Neg. LLF: 92.99924001984421
Iteration: 10, Func. Count: 92, Neg. LLF: 92.85406124114931
Iteration: 11, Func. Count: 100, Neg. LLF: 92.80237649038845
Iteration: 12, Func. Count: 108, Neg. LLF: 92.7710642639603
Iteration: 13, Func. Count: 116, Neg. LLF: 92.75098278849416
Iteration: 14, Func. Count: 124, Neg. LLF: 92.72066381090616
Iteration: 15, Func. Count: 132, Neg. LLF: 92.66834883623484
Iteration: 16, Func. Count: 140, Neg. LLF: 92.57680027114907
Iteration: 17, Func. Count: 148, Neg. LLF: 92.49383214949631
Iteration: 18, Func. Count: 156, Neg. LLF: 92.4580852720567
Iteration: 19, Func. Count: 164, Neg. LLF: 92.44575818350123
Iteration: 20, Func. Count: 172, Neg. LLF: 92.44500709275164
Iteration: 21, Func. Count: 180, Neg. LLF: 92.44495098476341
Iteration: 22, Func. Count: 188, Neg. LLF: 92.44494206079766
Iteration: 23, Func. Count: 196, Neg. LLF: 92.44491981213105
Iteration: 24, Func. Count: 204, Neg. LLF: 92.44510743580582
Iteration: 25, Func. Count: 213, Neg. LLF: 92.50276051890054
Iteration: 26, Func. Count: 222, Neg. LLF: 92.44472104399178
Iteration: 27, Func. Count: 230, Neg. LLF: 92.44467464988364
Iteration: 28, Func. Count: 238, Neg. LLF: 92.44443300147704
Iteration: 29, Func. Count: 246, Neg. LLF: 92.44393917287056
Iteration: 30, Func. Count: 254, Neg. LLF: 92.44371656035112
Iteration: 31, Func. Count: 262, Neg. LLF: 92.44369707925429
Iteration: 32, Func. Count: 269, Neg. LLF: 92.44369707922209
Optimization terminated successfully (Exit mode 0)
Current function value: 92.44369707925429
Iterations: 32
Function evaluations: 269
Gradient evaluations: 32
Iteration: 1, Func. Count: 10, Neg. LLF: 21140282.326010626
Iteration: 2, Func. Count: 21, Neg. LLF: 256.270536753601
Iteration: 3, Func. Count: 31, Neg. LLF: 7015617.64589534
Iteration: 4, Func. Count: 41, Neg. LLF: 132.1253400478648
Iteration: 5, Func. Count: 51, Neg. LLF: 135.22667068749863
Iteration: 6, Func. Count: 61, Neg. LLF: 93.6379955273793
Iteration: 7, Func. Count: 71, Neg. LLF: 93.11714278244972
Iteration: 8, Func. Count: 81, Neg. LLF: 97.34500174957006
Iteration: 9, Func. Count: 92, Neg. LLF: 92.84904999325363
Iteration: 10, Func. Count: 102, Neg. LLF: 91.8959376129822
Iteration: 11, Func. Count: 111, Neg. LLF: 91.78247212918991
Iteration: 12, Func. Count: 120, Neg. LLF: 91.73916664086516
Iteration: 13, Func. Count: 129, Neg. LLF: 92.51169940377903
Iteration: 14, Func. Count: 139, Neg. LLF: 91.98841224539407
Iteration: 15, Func. Count: 149, Neg. LLF: 91.69895248915674
Iteration: 16, Func. Count: 158, Neg. LLF: 91.6984064474328
Iteration: 17, Func. Count: 167, Neg. LLF: 91.6978093020219
Iteration: 18, Func. Count: 176, Neg. LLF: 91.69759268225069
Iteration: 19, Func. Count: 185, Neg. LLF: 91.69675280250593
Iteration: 20, Func. Count: 194, Neg. LLF: 91.69563628358965
Iteration: 21, Func. Count: 203, Neg. LLF: 91.69442944104469
Iteration: 22, Func. Count: 212, Neg. LLF: 91.69389832659056
Iteration: 23, Func. Count: 221, Neg. LLF: 91.6937964576103
Iteration: 24, Func. Count: 230, Neg. LLF: 91.69379096347451
Iteration: 25, Func. Count: 238, Neg. LLF: 91.69379096342702
Optimization terminated successfully (Exit mode 0)
Current function value: 91.69379096347451
Iterations: 25
Function evaluations: 238
Gradient evaluations: 25
Iteration: 1, Func. Count: 11, Neg. LLF: 20902160.396911014
Iteration: 2, Func. Count: 22, Neg. LLF: 7236201.208233394
Iteration: 3, Func. Count: 33, Neg. LLF: 154.11931906402998
Iteration: 4, Func. Count: 45, Neg. LLF: 102.86507258185935
Iteration: 5, Func. Count: 56, Neg. LLF: 91.42223010150269
Iteration: 6, Func. Count: 66, Neg. LLF: 93.55809452008248
Iteration: 7, Func. Count: 77, Neg. LLF: 93.90787311294038
Iteration: 8, Func. Count: 90, Neg. LLF: 93.16121108663766
Iteration: 9, Func. Count: 101, Neg. LLF: 91.38492307791667
Iteration: 10, Func. Count: 112, Neg. LLF: 91.47447297238803
Iteration: 11, Func. Count: 123, Neg. LLF: 90.53752476560047
Iteration: 12, Func. Count: 133, Neg. LLF: 90.4984927370493
Iteration: 13, Func. Count: 143, Neg. LLF: 90.47785009354091
Iteration: 14, Func. Count: 153, Neg. LLF: 90.45728551761655
Iteration: 15, Func. Count: 163, Neg. LLF: 90.4421895656576
Iteration: 16, Func. Count: 173, Neg. LLF: 90.42873540224123
Iteration: 17, Func. Count: 183, Neg. LLF: 90.40996707424183
Iteration: 18, Func. Count: 193, Neg. LLF: 90.38164861595162
Iteration: 19, Func. Count: 203, Neg. LLF: 90.36416320372186
Iteration: 20, Func. Count: 213, Neg. LLF: 90.3617924935198
Iteration: 21, Func. Count: 223, Neg. LLF: 90.36166156559115
Iteration: 22, Func. Count: 233, Neg. LLF: 90.36163743076149
Iteration: 23, Func. Count: 242, Neg. LLF: 90.36163743077721
Optimization terminated successfully (Exit mode 0)
Current function value: 90.36163743076149
Iterations: 23
Function evaluations: 242
Gradient evaluations: 23
Iteration: 1, Func. Count: 12, Neg. LLF: 8409645.997679127
Iteration: 2, Func. Count: 24, Neg. LLF: 10585765.885436399
Iteration: 3, Func. Count: 36, Neg. LLF: 2733.2073958407764
Iteration: 4, Func. Count: 49, Neg. LLF: 132.16345592787098
Iteration: 5, Func. Count: 61, Neg. LLF: 278.8260906932619
Iteration: 6, Func. Count: 73, Neg. LLF: 90.93589795860127
Iteration: 7, Func. Count: 84, Neg. LLF: 90.6067013072488
Iteration: 8, Func. Count: 95, Neg. LLF: 91.12172959794712
Iteration: 9, Func. Count: 107, Neg. LLF: 90.14416438832293
Iteration: 10, Func. Count: 119, Neg. LLF: 90.40273447033884
Iteration: 11, Func. Count: 131, Neg. LLF: 90.01743777050106
Iteration: 12, Func. Count: 143, Neg. LLF: 89.95023317497879
Iteration: 13, Func. Count: 154, Neg. LLF: 89.94913594785712
Iteration: 14, Func. Count: 165, Neg. LLF: 89.94875947031723
Iteration: 15, Func. Count: 176, Neg. LLF: 89.94851346058857
Iteration: 16, Func. Count: 187, Neg. LLF: 89.94832434080725
Iteration: 17, Func. Count: 198, Neg. LLF: 89.94831449084352
Iteration: 18, Func. Count: 208, Neg. LLF: 89.94831449080758
Optimization terminated successfully (Exit mode 0)
Current function value: 89.94831449084352
Iterations: 18
Function evaluations: 208
Gradient evaluations: 18
Iteration: 1, Func. Count: 5, Neg. LLF: 150.88929331430646
Iteration: 2, Func. Count: 12, Neg. LLF: 159.80338085958687
Iteration: 3, Func. Count: 18, Neg. LLF: 96.01201284551632
Iteration: 4, Func. Count: 22, Neg. LLF: 95.96566967715223
Iteration: 5, Func. Count: 26, Neg. LLF: 95.95841124916775
Iteration: 6, Func. Count: 30, Neg. LLF: 95.95304664543411
Iteration: 7, Func. Count: 34, Neg. LLF: 95.9490829952459
Iteration: 8, Func. Count: 38, Neg. LLF: 95.94846378664519
Iteration: 9, Func. Count: 42, Neg. LLF: 95.94842314254957
Iteration: 10, Func. Count: 45, Neg. LLF: 95.94842325453936
Optimization terminated successfully (Exit mode 0)
Current function value: 95.94842314254957
Iterations: 10
Function evaluations: 45
Gradient evaluations: 10
Iteration: 1, Func. Count: 6, Neg. LLF: 20527252.121282272
Iteration: 2, Func. Count: 13, Neg. LLF: 103.4913275061938
Iteration: 3, Func. Count: 19, Neg. LLF: 97.70463518453708
Iteration: 4, Func. Count: 25, Neg. LLF: 96.80852084142695
Iteration: 5, Func. Count: 31, Neg. LLF: 96.2516584635639
Iteration: 6, Func. Count: 37, Neg. LLF: 93.07438801587914
Iteration: 7, Func. Count: 42, Neg. LLF: 92.65698285330448
Iteration: 8, Func. Count: 47, Neg. LLF: 101.22450858596184
Iteration: 9, Func. Count: 53, Neg. LLF: 953.9838172455152
Iteration: 10, Func. Count: 60, Neg. LLF: 91.88411583492862
Iteration: 11, Func. Count: 65, Neg. LLF: 91.69484825714764
Iteration: 12, Func. Count: 70, Neg. LLF: 91.5960867582097
Iteration: 13, Func. Count: 75, Neg. LLF: 91.5948691725895
Iteration: 14, Func. Count: 80, Neg. LLF: 91.59486382034714
Iteration: 15, Func. Count: 84, Neg. LLF: 91.59486382028867
Optimization terminated successfully (Exit mode 0)
Current function value: 91.59486382034714
Iterations: 15
Function evaluations: 84
Gradient evaluations: 15
Iteration: 1, Func. Count: 7, Neg. LLF: 20338184.13308608
Iteration: 2, Func. Count: 15, Neg. LLF: 95.81199342821655
Iteration: 3, Func. Count: 22, Neg. LLF: 94.40884104255439
Iteration: 4, Func. Count: 29, Neg. LLF: 92.88907917607133
Iteration: 5, Func. Count: 36, Neg. LLF: 92.11202096420254
Iteration: 6, Func. Count: 42, Neg. LLF: 91.6439070039848
Iteration: 7, Func. Count: 48, Neg. LLF: 91.6790530044051
Iteration: 8, Func. Count: 55, Neg. LLF: 91.62706575625266
Iteration: 9, Func. Count: 61, Neg. LLF: 91.62580146636449
Iteration: 10, Func. Count: 67, Neg. LLF: 91.61592955518485
Iteration: 11, Func. Count: 73, Neg. LLF: 91.59508163673516
Iteration: 12, Func. Count: 79, Neg. LLF: 91.59491964359889
Iteration: 13, Func. Count: 85, Neg. LLF: 91.59487679260249
Iteration: 14, Func. Count: 91, Neg. LLF: 91.5948747041867
Iteration: 15, Func. Count: 97, Neg. LLF: 91.59487271705358
Iteration: 16, Func. Count: 103, Neg. LLF: 10121380.892257098
Iteration: 17, Func. Count: 113, Neg. LLF: 91.5948637925066
Optimization terminated successfully (Exit mode 0)
Current function value: 91.5948637907374
Iterations: 18
Function evaluations: 113
Gradient evaluations: 17
Iteration: 1, Func. Count: 8, Neg. LLF: 20312481.110036895
Iteration: 2, Func. Count: 16, Neg. LLF: 91.90526750654183
Iteration: 3, Func. Count: 23, Neg. LLF: 106.21425254091253
Iteration: 4, Func. Count: 32, Neg. LLF: 103.54598671118717
Iteration: 5, Func. Count: 40, Neg. LLF: 91.4064875851153
Iteration: 6, Func. Count: 47, Neg. LLF: 91.40409850040311
Iteration: 7, Func. Count: 54, Neg. LLF: 91.40319915718293
Iteration: 8, Func. Count: 61, Neg. LLF: 91.4031965420076
Iteration: 9, Func. Count: 68, Neg. LLF: 91.40319463571457
Iteration: 10, Func. Count: 74, Neg. LLF: 91.40319463565521
Optimization terminated successfully (Exit mode 0)
Current function value: 91.40319463571457
Iterations: 10
Function evaluations: 74
Gradient evaluations: 10
Iteration: 1, Func. Count: 9, Neg. LLF: 20297291.497624166
Iteration: 2, Func. Count: 18, Neg. LLF: 92.9186054603082
Iteration: 3, Func. Count: 26, Neg. LLF: 96.70546160305528
Iteration: 4, Func. Count: 35, Neg. LLF: 96.04033497890292
Iteration: 5, Func. Count: 44, Neg. LLF: 92.85374461552085
Iteration: 6, Func. Count: 53, Neg. LLF: 91.71871405395774
Iteration: 7, Func. Count: 61, Neg. LLF: 91.7166955830673
Iteration: 8, Func. Count: 70, Neg. LLF: 91.65952828732955
Iteration: 9, Func. Count: 78, Neg. LLF: 91.64505116480942
Iteration: 10, Func. Count: 86, Neg. LLF: 91.62907189741358
Iteration: 11, Func. Count: 94, Neg. LLF: 91.62741918707829
Iteration: 12, Func. Count: 102, Neg. LLF: 91.62652143973372
Iteration: 13, Func. Count: 110, Neg. LLF: 91.62620370373193
Iteration: 14, Func. Count: 118, Neg. LLF: 91.62380749644106
Iteration: 15, Func. Count: 126, Neg. LLF: 91.61058716709991
Iteration: 16, Func. Count: 134, Neg. LLF: 91.60730431115748
Iteration: 17, Func. Count: 142, Neg. LLF: 91.59656542547535
Iteration: 18, Func. Count: 150, Neg. LLF: 91.59538256499421
Iteration: 19, Func. Count: 158, Neg. LLF: 91.59488061290479
Iteration: 20, Func. Count: 166, Neg. LLF: 18465295.35825897
Iteration: 21, Func. Count: 179, Neg. LLF: 91.59505569980234
Optimization terminated successfully (Exit mode 0)
Current function value: 91.59486379032766
Iterations: 22
Function evaluations: 181
Gradient evaluations: 21
Iteration: 1, Func. Count: 6, Neg. LLF: 151.24892932108608
Iteration: 2, Func. Count: 14, Neg. LLF: 183.13035651633436
Iteration: 3, Func. Count: 20, Neg. LLF: 95.03245397809602
Iteration: 4, Func. Count: 25, Neg. LLF: 94.88308477778847
Iteration: 5, Func. Count: 30, Neg. LLF: 94.86650187537514
Iteration: 6, Func. Count: 35, Neg. LLF: 94.85803300793971
Iteration: 7, Func. Count: 40, Neg. LLF: 94.85666073881347
Iteration: 8, Func. Count: 45, Neg. LLF: 94.8565544015808
Iteration: 9, Func. Count: 50, Neg. LLF: 94.85652605444376
Iteration: 10, Func. Count: 55, Neg. LLF: 94.8565241248078
Iteration: 11, Func. Count: 59, Neg. LLF: 94.8565242858864
Optimization terminated successfully (Exit mode 0)
Current function value: 94.8565241248078
Iterations: 11
Function evaluations: 59
Gradient evaluations: 11
Iteration: 1, Func. Count: 7, Neg. LLF: 22427127.9103918
Iteration: 2, Func. Count: 15, Neg. LLF: 95.61293615600567
Iteration: 3, Func. Count: 22, Neg. LLF: 93.61029000674242
Iteration: 4, Func. Count: 28, Neg. LLF: 109.87119269612506
Iteration: 5, Func. Count: 36, Neg. LLF: 96.93515153920204
Iteration: 6, Func. Count: 43, Neg. LLF: 92.49462508770851
Iteration: 7, Func. Count: 50, Neg. LLF: 91.8491125836268
Iteration: 8, Func. Count: 56, Neg. LLF: 91.61275644579892
Iteration: 9, Func. Count: 62, Neg. LLF: 91.59578470017229
Iteration: 10, Func. Count: 68, Neg. LLF: 91.59486600128491
Iteration: 11, Func. Count: 74, Neg. LLF: 91.59486379516346
Iteration: 12, Func. Count: 79, Neg. LLF: 91.59486379526963
Optimization terminated successfully (Exit mode 0)
Current function value: 91.59486379516346
Iterations: 12
Function evaluations: 79
Gradient evaluations: 12
Iteration: 1, Func. Count: 8, Neg. LLF: 23377269.52031126
Iteration: 2, Func. Count: 17, Neg. LLF: 95.35927773085902
Iteration: 3, Func. Count: 25, Neg. LLF: 97.74911423693482
Iteration: 4, Func. Count: 33, Neg. LLF: 96.05805350063872
Iteration: 5, Func. Count: 41, Neg. LLF: 92.66386820395464
Iteration: 6, Func. Count: 48, Neg. LLF: 113.56072810682791
Iteration: 7, Func. Count: 57, Neg. LLF: 109.66955545558116
Iteration: 8, Func. Count: 66, Neg. LLF: 91.59282256914331
Iteration: 9, Func. Count: 73, Neg. LLF: 91.59026642594053
Iteration: 10, Func. Count: 81, Neg. LLF: 91.35165756269255
Iteration: 11, Func. Count: 88, Neg. LLF: 91.32312229843036
Iteration: 12, Func. Count: 95, Neg. LLF: 91.29823376015752
Iteration: 13, Func. Count: 102, Neg. LLF: 91.25894232053915
Iteration: 14, Func. Count: 109, Neg. LLF: 91.23767324792856
Iteration: 15, Func. Count: 116, Neg. LLF: 91.23280637096128
Iteration: 16, Func. Count: 123, Neg. LLF: 91.23278886839591
Iteration: 17, Func. Count: 130, Neg. LLF: 91.23278614630303
Iteration: 18, Func. Count: 136, Neg. LLF: 91.23278614180185
Optimization terminated successfully (Exit mode 0)
Current function value: 91.23278614630303
Iterations: 18
Function evaluations: 136
Gradient evaluations: 18
Iteration: 1, Func. Count: 9, Neg. LLF: 24624907.037872892
Iteration: 2, Func. Count: 19, Neg. LLF: 109.78518672702918
Iteration: 3, Func. Count: 28, Neg. LLF: 94.12018174221764
Iteration: 4, Func. Count: 37, Neg. LLF: 91.75555364840933
Iteration: 5, Func. Count: 45, Neg. LLF: 96.95738167601063
Iteration: 6, Func. Count: 55, Neg. LLF: 98.00089045911243
Iteration: 7, Func. Count: 65, Neg. LLF: 90.72395848618712
Iteration: 8, Func. Count: 73, Neg. LLF: 90.3093310097373
Iteration: 9, Func. Count: 81, Neg. LLF: 90.2220632866107
Iteration: 10, Func. Count: 89, Neg. LLF: 90.16826120743868
Iteration: 11, Func. Count: 97, Neg. LLF: 90.1635474914837
Iteration: 12, Func. Count: 105, Neg. LLF: 90.16228195367857
Iteration: 13, Func. Count: 113, Neg. LLF: 90.16227879474317
Iteration: 14, Func. Count: 121, Neg. LLF: 90.16227694707231
Iteration: 15, Func. Count: 128, Neg. LLF: 90.16227694707844
Optimization terminated successfully (Exit mode 0)
Current function value: 90.16227694707231
Iterations: 15
Function evaluations: 128
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 21747848.139553692
Iteration: 2, Func. Count: 21, Neg. LLF: 107.17917304024827
Iteration: 3, Func. Count: 31, Neg. LLF: 197.645877038195
Iteration: 4, Func. Count: 41, Neg. LLF: 94.96729918588198
Iteration: 5, Func. Count: 51, Neg. LLF: 92.67863420974892
Iteration: 6, Func. Count: 60, Neg. LLF: 103.49264553118671
Iteration: 7, Func. Count: 70, Neg. LLF: 216.19024730885965
Iteration: 8, Func. Count: 80, Neg. LLF: 90.60303078852951
Iteration: 9, Func. Count: 89, Neg. LLF: 90.40236066890067
Iteration: 10, Func. Count: 98, Neg. LLF: 90.2685355878737
Iteration: 11, Func. Count: 107, Neg. LLF: 90.1860786193135
Iteration: 12, Func. Count: 116, Neg. LLF: 90.16285142957118
Iteration: 13, Func. Count: 125, Neg. LLF: 90.16229490076611
Iteration: 14, Func. Count: 134, Neg. LLF: 90.16227698303607
Iteration: 15, Func. Count: 142, Neg. LLF: 90.16227713722435
Optimization terminated successfully (Exit mode 0)
Current function value: 90.16227698303607
Iterations: 15
Function evaluations: 142
Gradient evaluations: 15
Iteration: 1, Func. Count: 7, Neg. LLF: 152.40061337977176
Iteration: 2, Func. Count: 16, Neg. LLF: 145.52270426038018
Iteration: 3, Func. Count: 24, Neg. LLF: 94.91392323109547
Iteration: 4, Func. Count: 30, Neg. LLF: 94.88054271814954
Iteration: 5, Func. Count: 36, Neg. LLF: 94.86001217484794
Iteration: 6, Func. Count: 42, Neg. LLF: 94.84257141555612
Iteration: 7, Func. Count: 48, Neg. LLF: 94.84134740583633
Iteration: 8, Func. Count: 54, Neg. LLF: 94.84124907347379
Iteration: 9, Func. Count: 60, Neg. LLF: 94.84121751671161
Iteration: 10, Func. Count: 66, Neg. LLF: 94.84121635153227
Iteration: 11, Func. Count: 71, Neg. LLF: 94.84121635151591
Optimization terminated successfully (Exit mode 0)
Current function value: 94.84121635153227
Iterations: 11
Function evaluations: 71
Gradient evaluations: 11
Iteration: 1, Func. Count: 8, Neg. LLF: 22108512.130445573
Iteration: 2, Func. Count: 17, Neg. LLF: 95.17260891496349
Iteration: 3, Func. Count: 25, Neg. LLF: 93.78277680648613
Iteration: 4, Func. Count: 32, Neg. LLF: 134.1184376808729
Iteration: 5, Func. Count: 42, Neg. LLF: 92.60220623449665
Iteration: 6, Func. Count: 49, Neg. LLF: 93.09122343166939
Iteration: 7, Func. Count: 57, Neg. LLF: 91.62879387726997
Iteration: 8, Func. Count: 64, Neg. LLF: 92.45103053627234
Iteration: 9, Func. Count: 72, Neg. LLF: 91.5981123658578
Iteration: 10, Func. Count: 80, Neg. LLF: 91.59486384661247
Iteration: 11, Func. Count: 86, Neg. LLF: 91.59486384629541
Optimization terminated successfully (Exit mode 0)
Current function value: 91.59486384661247
Iterations: 11
Function evaluations: 86
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 21714442.936541405
Iteration: 2, Func. Count: 19, Neg. LLF: 93.11832810287166
Iteration: 3, Func. Count: 27, Neg. LLF: 95.89656542158181
Iteration: 4, Func. Count: 36, Neg. LLF: 343.54208757809147
Iteration: 5, Func. Count: 46, Neg. LLF: 92.04706105041637
Iteration: 6, Func. Count: 55, Neg. LLF: 91.3602071772654
Iteration: 7, Func. Count: 63, Neg. LLF: 91.25306792941085
Iteration: 8, Func. Count: 71, Neg. LLF: 91.23301879942171
Iteration: 9, Func. Count: 79, Neg. LLF: 91.23278946621734
Iteration: 10, Func. Count: 87, Neg. LLF: 91.23278581163757
Iteration: 11, Func. Count: 94, Neg. LLF: 91.2327858068442
Optimization terminated successfully (Exit mode 0)
Current function value: 91.23278581163757
Iterations: 11
Function evaluations: 94
Gradient evaluations: 11
Iteration: 1, Func. Count: 10, Neg. LLF: 24491516.483220313
Iteration: 2, Func. Count: 21, Neg. LLF: 111.34890495337865
Iteration: 3, Func. Count: 31, Neg. LLF: 92.93697402341995
Iteration: 4, Func. Count: 40, Neg. LLF: 91.72522301304485
Iteration: 5, Func. Count: 49, Neg. LLF: 103.62216734943729
Iteration: 6, Func. Count: 60, Neg. LLF: 93.30578047332568
Iteration: 7, Func. Count: 71, Neg. LLF: 100.95322151687121
Iteration: 8, Func. Count: 82, Neg. LLF: 94.22935763618374
Iteration: 9, Func. Count: 92, Neg. LLF: 90.30709233553502
Iteration: 10, Func. Count: 101, Neg. LLF: 90.32785689593635
Iteration: 11, Func. Count: 111, Neg. LLF: 90.16266002255702
Iteration: 12, Func. Count: 120, Neg. LLF: 90.1623316931964
Iteration: 13, Func. Count: 129, Neg. LLF: 90.16227720727039
Iteration: 14, Func. Count: 137, Neg. LLF: 90.16227720734446
Optimization terminated successfully (Exit mode 0)
Current function value: 90.16227720727039
Iterations: 14
Function evaluations: 137
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 21497791.69052354
Iteration: 2, Func. Count: 23, Neg. LLF: 109.40481417832414
Iteration: 3, Func. Count: 34, Neg. LLF: 146.8419950551339
Iteration: 4, Func. Count: 45, Neg. LLF: 94.56966320558782
Iteration: 5, Func. Count: 56, Neg. LLF: 95.00332218741154
Iteration: 6, Func. Count: 67, Neg. LLF: 91.90907242433893
Iteration: 7, Func. Count: 77, Neg. LLF: 92.43305476708807
Iteration: 8, Func. Count: 88, Neg. LLF: 433.91029710128583
Iteration: 9, Func. Count: 100, Neg. LLF: 91.09445168690978
Iteration: 10, Func. Count: 111, Neg. LLF: 90.78628335958491
Iteration: 11, Func. Count: 122, Neg. LLF: 90.63419890639354
Iteration: 12, Func. Count: 133, Neg. LLF: 90.2132433598166
Iteration: 13, Func. Count: 143, Neg. LLF: 90.16353716115671
Iteration: 14, Func. Count: 153, Neg. LLF: 90.16241256649276
Iteration: 15, Func. Count: 163, Neg. LLF: 90.16228832714518
Iteration: 16, Func. Count: 173, Neg. LLF: 90.16227834398661
Iteration: 17, Func. Count: 183, Neg. LLF: 90.16227697555743
Iteration: 18, Func. Count: 192, Neg. LLF: 90.16227712980476
Optimization terminated successfully (Exit mode 0)
Current function value: 90.16227697555743
Iterations: 18
Function evaluations: 192
Gradient evaluations: 18
Iteration: 1, Func. Count: 8, Neg. LLF: 111.19568631623137
Iteration: 2, Func. Count: 17, Neg. LLF: 7277302.015766627
Iteration: 3, Func. Count: 25, Neg. LLF: 16312988.481853226
Iteration: 4, Func. Count: 33, Neg. LLF: 2542834.025038964
Iteration: 5, Func. Count: 41, Neg. LLF: 94.41562763216271
Iteration: 6, Func. Count: 49, Neg. LLF: 92.19814527474699
Iteration: 7, Func. Count: 56, Neg. LLF: 92.26016920445616
Iteration: 8, Func. Count: 64, Neg. LLF: 92.10349597770254
Iteration: 9, Func. Count: 71, Neg. LLF: 92.0570639713438
Iteration: 10, Func. Count: 78, Neg. LLF: 92.01024802898235
Iteration: 11, Func. Count: 85, Neg. LLF: 91.99765944474169
Iteration: 12, Func. Count: 92, Neg. LLF: 91.99731099518975
Iteration: 13, Func. Count: 99, Neg. LLF: 91.99729381566455
Iteration: 14, Func. Count: 106, Neg. LLF: 91.99729015466906
Iteration: 15, Func. Count: 112, Neg. LLF: 91.99729015465122
Optimization terminated successfully (Exit mode 0)
Current function value: 91.99729015466906
Iterations: 15
Function evaluations: 112
Gradient evaluations: 15
Iteration: 1, Func. Count: 9, Neg. LLF: 21989739.190976486
Iteration: 2, Func. Count: 19, Neg. LLF: 3177707.411696427
Iteration: 3, Func. Count: 28, Neg. LLF: 4178825.8030241565
Iteration: 4, Func. Count: 37, Neg. LLF: 98.68550920020222
Iteration: 5, Func. Count: 46, Neg. LLF: 103.79130939888424
Iteration: 6, Func. Count: 56, Neg. LLF: 94.67349484062714
Iteration: 7, Func. Count: 66, Neg. LLF: 93.15681596946224
Iteration: 8, Func. Count: 74, Neg. LLF: 92.77361981250802
Iteration: 9, Func. Count: 82, Neg. LLF: 92.60268231859665
Iteration: 10, Func. Count: 90, Neg. LLF: 92.58573536591042
Iteration: 11, Func. Count: 98, Neg. LLF: 92.571015336093
Iteration: 12, Func. Count: 106, Neg. LLF: 92.55373197177414
Iteration: 13, Func. Count: 114, Neg. LLF: 92.54490721809668
Iteration: 14, Func. Count: 122, Neg. LLF: 92.52990532230218
Iteration: 15, Func. Count: 130, Neg. LLF: 92.50579588767657
Iteration: 16, Func. Count: 138, Neg. LLF: 92.47387217651305
Iteration: 17, Func. Count: 146, Neg. LLF: 92.45211189706411
Iteration: 18, Func. Count: 154, Neg. LLF: 92.44354399366695
Iteration: 19, Func. Count: 162, Neg. LLF: 92.43284264418261
Iteration: 20, Func. Count: 170, Neg. LLF: 92.08296920879707
Iteration: 21, Func. Count: 178, Neg. LLF: 92.04586926563184
Iteration: 22, Func. Count: 186, Neg. LLF: 92.01003781922263
Iteration: 23, Func. Count: 194, Neg. LLF: 92.00115316137136
Iteration: 24, Func. Count: 202, Neg. LLF: 91.99783171728562
Iteration: 25, Func. Count: 210, Neg. LLF: 91.99734066511095
Iteration: 26, Func. Count: 218, Neg. LLF: 91.99729190810149
Iteration: 27, Func. Count: 226, Neg. LLF: 91.9972899022143
Iteration: 28, Func. Count: 233, Neg. LLF: 91.9972899188767
Optimization terminated successfully (Exit mode 0)
Current function value: 91.9972899022143
Iterations: 28
Function evaluations: 233
Gradient evaluations: 28
Iteration: 1, Func. Count: 10, Neg. LLF: 23023667.63325953
Iteration: 2, Func. Count: 21, Neg. LLF: 13154798.999807278
Iteration: 3, Func. Count: 31, Neg. LLF: 8771632.08844181
Iteration: 4, Func. Count: 41, Neg. LLF: 118.65388419340067
Iteration: 5, Func. Count: 51, Neg. LLF: 95.21141992104954
Iteration: 6, Func. Count: 61, Neg. LLF: 92.73579998010317
Iteration: 7, Func. Count: 71, Neg. LLF: 92.9241906905983
Iteration: 8, Func. Count: 81, Neg. LLF: 92.15986111443475
Iteration: 9, Func. Count: 91, Neg. LLF: 91.6134018825252
Iteration: 10, Func. Count: 100, Neg. LLF: 91.5952936724861
Iteration: 11, Func. Count: 109, Neg. LLF: 93.16915362132202
Iteration: 12, Func. Count: 120, Neg. LLF: 91.5882752865452
Iteration: 13, Func. Count: 129, Neg. LLF: 91.58753092013968
Iteration: 14, Func. Count: 138, Neg. LLF: 91.58738883793636
Iteration: 15, Func. Count: 147, Neg. LLF: 91.58730836907353
Iteration: 16, Func. Count: 156, Neg. LLF: 91.58724180419624
Iteration: 17, Func. Count: 165, Neg. LLF: 91.58711672926474
Iteration: 18, Func. Count: 174, Neg. LLF: 91.5869763872722
Iteration: 19, Func. Count: 183, Neg. LLF: 91.5868990299417
Iteration: 20, Func. Count: 192, Neg. LLF: 91.58688446708148
Iteration: 21, Func. Count: 201, Neg. LLF: 91.58688351481247
Optimization terminated successfully (Exit mode 0)
Current function value: 91.58688351481247
Iterations: 21
Function evaluations: 201
Gradient evaluations: 21
Iteration: 1, Func. Count: 11, Neg. LLF: 24027557.582547005
Iteration: 2, Func. Count: 23, Neg. LLF: 11193598.012291398
Iteration: 3, Func. Count: 34, Neg. LLF: 1785266.1455823667
Iteration: 4, Func. Count: 46, Neg. LLF: 98.28779036251686
Iteration: 5, Func. Count: 57, Neg. LLF: 92.14093343414616
Iteration: 6, Func. Count: 68, Neg. LLF: 91.07582519235434
Iteration: 7, Func. Count: 78, Neg. LLF: 91.91380091195371
Iteration: 8, Func. Count: 89, Neg. LLF: 91.71422955627608
Iteration: 9, Func. Count: 101, Neg. LLF: 90.90838338883597
Iteration: 10, Func. Count: 111, Neg. LLF: 94.15095268604117
Iteration: 11, Func. Count: 123, Neg. LLF: 91.07921068498428
Iteration: 12, Func. Count: 134, Neg. LLF: 90.5875676040999
Iteration: 13, Func. Count: 144, Neg. LLF: 90.49890313498643
Iteration: 14, Func. Count: 154, Neg. LLF: 90.41925155884309
Iteration: 15, Func. Count: 164, Neg. LLF: 90.40497538656916
Iteration: 16, Func. Count: 174, Neg. LLF: 90.38946633835975
Iteration: 17, Func. Count: 184, Neg. LLF: 90.38782034709617
Iteration: 18, Func. Count: 194, Neg. LLF: 90.38552463981055
Iteration: 19, Func. Count: 204, Neg. LLF: 90.3818737839856
Iteration: 20, Func. Count: 214, Neg. LLF: 90.37188664394614
Iteration: 21, Func. Count: 224, Neg. LLF: 90.36431726829736
Iteration: 22, Func. Count: 234, Neg. LLF: 90.36203402816903
Iteration: 23, Func. Count: 244, Neg. LLF: 90.3616481963106
Iteration: 24, Func. Count: 254, Neg. LLF: 90.36163834534881
Iteration: 25, Func. Count: 264, Neg. LLF: 90.36163724710687
Iteration: 26, Func. Count: 273, Neg. LLF: 90.36163724712263
Optimization terminated successfully (Exit mode 0)
Current function value: 90.36163724710687
Iterations: 26
Function evaluations: 273
Gradient evaluations: 26
Iteration: 1, Func. Count: 12, Neg. LLF: 27098254.177429542
Iteration: 2, Func. Count: 24, Neg. LLF: 1376360.5308988527
Iteration: 3, Func. Count: 36, Neg. LLF: 8377493.746682235
Iteration: 4, Func. Count: 48, Neg. LLF: 100.44930425204532
Iteration: 5, Func. Count: 60, Neg. LLF: 95.17699923689189
Iteration: 6, Func. Count: 72, Neg. LLF: 90.37030578758323
Iteration: 7, Func. Count: 83, Neg. LLF: 91.46602889337024
Iteration: 8, Func. Count: 96, Neg. LLF: 90.23312482162106
Iteration: 9, Func. Count: 108, Neg. LLF: 101.4781913836622
Iteration: 10, Func. Count: 122, Neg. LLF: 89.95749745712816
Iteration: 11, Func. Count: 134, Neg. LLF: 89.99292239024116
Iteration: 12, Func. Count: 146, Neg. LLF: 89.942693432844
Iteration: 13, Func. Count: 158, Neg. LLF: 89.93419080141135
Iteration: 14, Func. Count: 169, Neg. LLF: 89.93405312023773
Iteration: 15, Func. Count: 180, Neg. LLF: 89.9340420210706
Iteration: 16, Func. Count: 191, Neg. LLF: 89.93403904421055
Iteration: 17, Func. Count: 201, Neg. LLF: 89.93403904424365
Optimization terminated successfully (Exit mode 0)
Current function value: 89.93403904421055
Iterations: 17
Function evaluations: 201
Gradient evaluations: 17
Iteration: 1, Func. Count: 9, Neg. LLF: 112.11113850914471
Iteration: 2, Func. Count: 20, Neg. LLF: 7261503.97953769
Iteration: 3, Func. Count: 29, Neg. LLF: 15409278.41418727
Iteration: 4, Func. Count: 38, Neg. LLF: 92.69367032703305
Iteration: 5, Func. Count: 46, Neg. LLF: 92.15910890045019
Iteration: 6, Func. Count: 54, Neg. LLF: 100.91455257704855
Iteration: 7, Func. Count: 66, Neg. LLF: 92.0279512345822
Iteration: 8, Func. Count: 74, Neg. LLF: 92.01079172830379
Iteration: 9, Func. Count: 82, Neg. LLF: 92.00615368396957
Iteration: 10, Func. Count: 90, Neg. LLF: 91.99872788605464
Iteration: 11, Func. Count: 98, Neg. LLF: 91.9980362805902
Iteration: 12, Func. Count: 106, Neg. LLF: 91.9976289500233
Iteration: 13, Func. Count: 114, Neg. LLF: 91.99735816335702
Iteration: 14, Func. Count: 122, Neg. LLF: 91.99729507245362
Iteration: 15, Func. Count: 130, Neg. LLF: 91.99728998866672
Iteration: 16, Func. Count: 137, Neg. LLF: 91.997290012776
Optimization terminated successfully (Exit mode 0)
Current function value: 91.99728998866672
Iterations: 16
Function evaluations: 137
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 22273981.25017841
Iteration: 2, Func. Count: 21, Neg. LLF: 2919213.7238488784
Iteration: 3, Func. Count: 31, Neg. LLF: 3483399.6157191168
Iteration: 4, Func. Count: 41, Neg. LLF: 97.67768354150013
Iteration: 5, Func. Count: 51, Neg. LLF: 103.8234586628979
Iteration: 6, Func. Count: 62, Neg. LLF: 95.31865178622422
Iteration: 7, Func. Count: 73, Neg. LLF: 93.60464287410454
Iteration: 8, Func. Count: 82, Neg. LLF: 93.06357337115905
Iteration: 9, Func. Count: 91, Neg. LLF: 92.76761652114139
Iteration: 10, Func. Count: 100, Neg. LLF: 92.7152074355737
Iteration: 11, Func. Count: 109, Neg. LLF: 92.64960700039316
Iteration: 12, Func. Count: 118, Neg. LLF: 92.63100057270216
Iteration: 13, Func. Count: 127, Neg. LLF: 92.61580734588156
Iteration: 14, Func. Count: 136, Neg. LLF: 92.59748162778638
Iteration: 15, Func. Count: 145, Neg. LLF: 92.57002491920544
Iteration: 16, Func. Count: 154, Neg. LLF: 92.52567182706866
Iteration: 17, Func. Count: 163, Neg. LLF: 92.48191865000533
Iteration: 18, Func. Count: 172, Neg. LLF: 92.45189937248976
Iteration: 19, Func. Count: 181, Neg. LLF: 92.44514547866318
Iteration: 20, Func. Count: 190, Neg. LLF: 92.44493968333198
Iteration: 21, Func. Count: 199, Neg. LLF: 92.44491702635945
Iteration: 22, Func. Count: 208, Neg. LLF: 92.44396757902288
Iteration: 23, Func. Count: 217, Neg. LLF: 92.24923996860834
Iteration: 24, Func. Count: 226, Neg. LLF: 92.08576939751812
Iteration: 25, Func. Count: 235, Neg. LLF: 151.32136136238663
Iteration: 26, Func. Count: 246, Neg. LLF: 92.01876517287002
Iteration: 27, Func. Count: 255, Neg. LLF: 92.00083125556542
Iteration: 28, Func. Count: 264, Neg. LLF: 91.99811409522822
Iteration: 29, Func. Count: 273, Neg. LLF: 91.99762981232207
Iteration: 30, Func. Count: 282, Neg. LLF: 91.99733116226533
Iteration: 31, Func. Count: 291, Neg. LLF: 91.99729130630514
Iteration: 32, Func. Count: 300, Neg. LLF: 91.9972897968244
Iteration: 33, Func. Count: 308, Neg. LLF: 91.99728981350255
Optimization terminated successfully (Exit mode 0)
Current function value: 91.9972897968244
Iterations: 33
Function evaluations: 308
Gradient evaluations: 33
Iteration: 1, Func. Count: 11, Neg. LLF: 23276805.895994917
Iteration: 2, Func. Count: 23, Neg. LLF: 14743048.030073382
Iteration: 3, Func. Count: 34, Neg. LLF: 8052440.448495307
Iteration: 4, Func. Count: 45, Neg. LLF: 111.80179290594715
Iteration: 5, Func. Count: 56, Neg. LLF: 95.59226945889952
Iteration: 6, Func. Count: 67, Neg. LLF: 92.7113132692768
Iteration: 7, Func. Count: 78, Neg. LLF: 92.90631261653361
Iteration: 8, Func. Count: 89, Neg. LLF: 92.28829674622061
Iteration: 9, Func. Count: 100, Neg. LLF: 91.6128253206444
Iteration: 10, Func. Count: 110, Neg. LLF: 91.59449004431062
Iteration: 11, Func. Count: 120, Neg. LLF: 93.18450995234014
Iteration: 12, Func. Count: 132, Neg. LLF: 91.5880903466189
Iteration: 13, Func. Count: 142, Neg. LLF: 91.58751937254077
Iteration: 14, Func. Count: 152, Neg. LLF: 91.58739440985309
Iteration: 15, Func. Count: 162, Neg. LLF: 91.58730707419656
Iteration: 16, Func. Count: 172, Neg. LLF: 91.5872366288855
Iteration: 17, Func. Count: 182, Neg. LLF: 91.58711267957142
Iteration: 18, Func. Count: 192, Neg. LLF: 91.586971892286
Iteration: 19, Func. Count: 202, Neg. LLF: 91.58689771910416
Iteration: 20, Func. Count: 212, Neg. LLF: 91.58688433721589
Iteration: 21, Func. Count: 222, Neg. LLF: 91.58688351212791
Optimization terminated successfully (Exit mode 0)
Current function value: 91.58688351212791
Iterations: 21
Function evaluations: 222
Gradient evaluations: 21
Iteration: 1, Func. Count: 12, Neg. LLF: 24203805.20925489
Iteration: 2, Func. Count: 25, Neg. LLF: 11329730.916701352
Iteration: 3, Func. Count: 37, Neg. LLF: 1658682.7346908457
Iteration: 4, Func. Count: 50, Neg. LLF: 98.37028698805364
Iteration: 5, Func. Count: 62, Neg. LLF: 91.83046909314122
Iteration: 6, Func. Count: 73, Neg. LLF: 92.78582885539944
Iteration: 7, Func. Count: 85, Neg. LLF: 94.94905234252798
Iteration: 8, Func. Count: 99, Neg. LLF: 93.3341769980273
Iteration: 9, Func. Count: 112, Neg. LLF: 90.84425435204905
Iteration: 10, Func. Count: 123, Neg. LLF: 90.68542413414993
Iteration: 11, Func. Count: 134, Neg. LLF: 90.90701770788455
Iteration: 12, Func. Count: 146, Neg. LLF: 90.50125433697436
Iteration: 13, Func. Count: 157, Neg. LLF: 90.41216190700419
Iteration: 14, Func. Count: 168, Neg. LLF: 90.3989230955619
Iteration: 15, Func. Count: 179, Neg. LLF: 90.39099016593322
Iteration: 16, Func. Count: 190, Neg. LLF: 90.38681513806205
Iteration: 17, Func. Count: 201, Neg. LLF: 90.38536956337396
Iteration: 18, Func. Count: 212, Neg. LLF: 90.38084610954519
Iteration: 19, Func. Count: 223, Neg. LLF: 90.37379910927224
Iteration: 20, Func. Count: 234, Neg. LLF: 90.36706135637895
Iteration: 21, Func. Count: 245, Neg. LLF: 90.36296615335597
Iteration: 22, Func. Count: 256, Neg. LLF: 90.36164433689913
Iteration: 23, Func. Count: 267, Neg. LLF: 90.36163720281752
Iteration: 24, Func. Count: 277, Neg. LLF: 90.36163720281344
Optimization terminated successfully (Exit mode 0)
Current function value: 90.36163720281752
Iterations: 24
Function evaluations: 277
Gradient evaluations: 24
Iteration: 1, Func. Count: 13, Neg. LLF: 10125568.493594263
Iteration: 2, Func. Count: 26, Neg. LLF: 8380566.176413749
Iteration: 3, Func. Count: 39, Neg. LLF: 141.75635757974402
Iteration: 4, Func. Count: 52, Neg. LLF: 119.24742454394509
Iteration: 5, Func. Count: 65, Neg. LLF: 191.0665119516157
Iteration: 6, Func. Count: 78, Neg. LLF: 96.54655195454538
Iteration: 7, Func. Count: 91, Neg. LLF: 90.28834142891239
Iteration: 8, Func. Count: 103, Neg. LLF: 94.65902907615485
Iteration: 9, Func. Count: 116, Neg. LLF: 92.00162324925114
Iteration: 10, Func. Count: 129, Neg. LLF: 91.99577122806751
Iteration: 11, Func. Count: 142, Neg. LLF: 90.00100277319018
Iteration: 12, Func. Count: 155, Neg. LLF: 89.97575533995963
Iteration: 13, Func. Count: 168, Neg. LLF: 89.94144735540519
Iteration: 14, Func. Count: 180, Neg. LLF: 89.93557324615776
Iteration: 15, Func. Count: 192, Neg. LLF: 89.93449005043666
Iteration: 16, Func. Count: 204, Neg. LLF: 89.9341036426613
Iteration: 17, Func. Count: 216, Neg. LLF: 89.93405156255409
Iteration: 18, Func. Count: 228, Neg. LLF: 89.93403960473887
Iteration: 19, Func. Count: 240, Neg. LLF: 89.9340387397278
Optimization terminated successfully (Exit mode 0)
Current function value: 89.9340387397278
Iterations: 19
Function evaluations: 240
Gradient evaluations: 19
Iteration: 1, Func. Count: 6, Neg. LLF: 153.40186529316603
Iteration: 2, Func. Count: 14, Neg. LLF: 159.42856739555944
Iteration: 3, Func. Count: 20, Neg. LLF: 96.0029670324325
Iteration: 4, Func. Count: 25, Neg. LLF: 95.97136174353888
Iteration: 5, Func. Count: 30, Neg. LLF: 95.95028734265543
Iteration: 6, Func. Count: 35, Neg. LLF: 95.94894017556179
Iteration: 7, Func. Count: 40, Neg. LLF: 95.94842609357302
Iteration: 8, Func. Count: 45, Neg. LLF: 95.94842291982381
Iteration: 9, Func. Count: 49, Neg. LLF: 95.94842304524492
Optimization terminated successfully (Exit mode 0)
Current function value: 95.94842291982381
Iterations: 9
Function evaluations: 49
Gradient evaluations: 9
Iteration: 1, Func. Count: 7, Neg. LLF: 21340197.917083114
Iteration: 2, Func. Count: 15, Neg. LLF: 94.80075243356288
Iteration: 3, Func. Count: 22, Neg. LLF: 102.74877495094702
Iteration: 4, Func. Count: 29, Neg. LLF: 109.95262852513407
Iteration: 5, Func. Count: 36, Neg. LLF: 92.14733425261532
Iteration: 6, Func. Count: 42, Neg. LLF: 93.89542099115158
Iteration: 7, Func. Count: 50, Neg. LLF: 91.5986301246015
Iteration: 8, Func. Count: 56, Neg. LLF: 91.59503713404685
Iteration: 9, Func. Count: 62, Neg. LLF: 91.59486396268598
Iteration: 10, Func. Count: 67, Neg. LLF: 91.59486396162532
Optimization terminated successfully (Exit mode 0)
Current function value: 91.59486396268598
Iterations: 10
Function evaluations: 67
Gradient evaluations: 10
Iteration: 1, Func. Count: 8, Neg. LLF: 20287748.67349123
Iteration: 2, Func. Count: 17, Neg. LLF: 95.80532130878348
Iteration: 3, Func. Count: 25, Neg. LLF: 94.22614181968717
Iteration: 4, Func. Count: 33, Neg. LLF: 94.45912897544999
Iteration: 5, Func. Count: 41, Neg. LLF: 92.04991935242141
Iteration: 6, Func. Count: 48, Neg. LLF: 91.67473275444213
Iteration: 7, Func. Count: 55, Neg. LLF: 91.69460815434925
Iteration: 8, Func. Count: 63, Neg. LLF: 91.63366407925432
Iteration: 9, Func. Count: 70, Neg. LLF: 91.63158970498539
Iteration: 10, Func. Count: 77, Neg. LLF: 91.62218475800562
Iteration: 11, Func. Count: 84, Neg. LLF: 91.59557255668449
Iteration: 12, Func. Count: 91, Neg. LLF: 91.59514642633401
Iteration: 13, Func. Count: 98, Neg. LLF: 91.59496237605595
Iteration: 14, Func. Count: 105, Neg. LLF: 91.5948661148903
Iteration: 15, Func. Count: 112, Neg. LLF: 91.5952642316499
Optimization terminated successfully (Exit mode 0)
Current function value: 91.59486564628243
Iterations: 15
Function evaluations: 114
Gradient evaluations: 15
Iteration: 1, Func. Count: 9, Neg. LLF: 20267093.32822443
Iteration: 2, Func. Count: 18, Neg. LLF: 91.88379780190374
Iteration: 3, Func. Count: 26, Neg. LLF: 105.46588477029262
Iteration: 4, Func. Count: 36, Neg. LLF: 107.53753202471954
Iteration: 5, Func. Count: 45, Neg. LLF: 91.40575499274216
Iteration: 6, Func. Count: 53, Neg. LLF: 91.40343248339035
Iteration: 7, Func. Count: 61, Neg. LLF: 91.40320020059292
Iteration: 8, Func. Count: 69, Neg. LLF: 91.40319470976677
Iteration: 9, Func. Count: 76, Neg. LLF: 91.4031947099732
Optimization terminated successfully (Exit mode 0)
Current function value: 91.40319470976677
Iterations: 9
Function evaluations: 76
Gradient evaluations: 9
Iteration: 1, Func. Count: 10, Neg. LLF: 20259514.27888164
Iteration: 2, Func. Count: 20, Neg. LLF: 92.64748454112951
Iteration: 3, Func. Count: 29, Neg. LLF: 95.21360776673929
Iteration: 4, Func. Count: 39, Neg. LLF: 93.50650366820099
Iteration: 5, Func. Count: 49, Neg. LLF: 93.73750342822498
Iteration: 6, Func. Count: 59, Neg. LLF: 95.68696816321595
Iteration: 7, Func. Count: 70, Neg. LLF: 91.86378439559036
Iteration: 8, Func. Count: 79, Neg. LLF: 91.7617555129625
Iteration: 9, Func. Count: 88, Neg. LLF: 91.72054990863722
Iteration: 10, Func. Count: 97, Neg. LLF: 91.70897476450817
Iteration: 11, Func. Count: 106, Neg. LLF: 91.70417175888582
Iteration: 12, Func. Count: 115, Neg. LLF: 91.61972843474416
Iteration: 13, Func. Count: 124, Neg. LLF: 91.72026391826189
Iteration: 14, Func. Count: 134, Neg. LLF: 91.59552058199715
Iteration: 15, Func. Count: 143, Neg. LLF: 20435191.426229622
Iteration: 16, Func. Count: 156, Neg. LLF: 91.93560128633007
Iteration: 17, Func. Count: 167, Neg. LLF: 91.5948637951749
Iteration: 18, Func. Count: 175, Neg. LLF: 91.59486380662118
Optimization terminated successfully (Exit mode 0)
Current function value: 91.5948637951749
Iterations: 19
Function evaluations: 175
Gradient evaluations: 18
Iteration: 1, Func. Count: 7, Neg. LLF: 154.00470566304446
Iteration: 2, Func. Count: 16, Neg. LLF: 190.2392365123145
Iteration: 3, Func. Count: 23, Neg. LLF: 95.01060593829484
Iteration: 4, Func. Count: 29, Neg. LLF: 95.03519078053232
Iteration: 5, Func. Count: 36, Neg. LLF: 94.89959999530058
Iteration: 6, Func. Count: 42, Neg. LLF: 94.86492844153011
Iteration: 7, Func. Count: 48, Neg. LLF: 94.85749973324279
Iteration: 8, Func. Count: 54, Neg. LLF: 94.85652616473453
Iteration: 9, Func. Count: 60, Neg. LLF: 94.85652407645239
Iteration: 10, Func. Count: 65, Neg. LLF: 94.85652423751684
Optimization terminated successfully (Exit mode 0)
Current function value: 94.85652407645239
Iterations: 10
Function evaluations: 65
Gradient evaluations: 10
Iteration: 1, Func. Count: 8, Neg. LLF: 23405336.358095482
Iteration: 2, Func. Count: 17, Neg. LLF: 104.02216065398737
Iteration: 3, Func. Count: 26, Neg. LLF: 103.01447949752966
Iteration: 4, Func. Count: 34, Neg. LLF: 94.01651628992244
Iteration: 5, Func. Count: 41, Neg. LLF: 93.7635685360753
Iteration: 6, Func. Count: 49, Neg. LLF: 92.14781020923043
Iteration: 7, Func. Count: 56, Neg. LLF: 91.63591664873299
Iteration: 8, Func. Count: 63, Neg. LLF: 91.6067263508218
Iteration: 9, Func. Count: 70, Neg. LLF: 91.5951382844947
Iteration: 10, Func. Count: 77, Neg. LLF: 91.59487346492796
Iteration: 11, Func. Count: 84, Neg. LLF: 91.59486430353017
Iteration: 12, Func. Count: 90, Neg. LLF: 91.5948643035085
Optimization terminated successfully (Exit mode 0)
Current function value: 91.59486430353017
Iterations: 12
Function evaluations: 90
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 21683166.930584826
Iteration: 2, Func. Count: 19, Neg. LLF: 92.94888261954657
Iteration: 3, Func. Count: 27, Neg. LLF: 95.46353722296531
Iteration: 4, Func. Count: 36, Neg. LLF: 331.06243409113387
Iteration: 5, Func. Count: 46, Neg. LLF: 91.70145890942365
Iteration: 6, Func. Count: 55, Neg. LLF: 91.319764616766
Iteration: 7, Func. Count: 63, Neg. LLF: 91.242743611859
Iteration: 8, Func. Count: 71, Neg. LLF: 91.2329763689599
Iteration: 9, Func. Count: 79, Neg. LLF: 91.23278605108725
Iteration: 10, Func. Count: 86, Neg. LLF: 91.23278604671448
Optimization terminated successfully (Exit mode 0)
Current function value: 91.23278605108725
Iterations: 10
Function evaluations: 86
Gradient evaluations: 10
Iteration: 1, Func. Count: 10, Neg. LLF: 21598679.930519026
Iteration: 2, Func. Count: 20, Neg. LLF: 121.05407262207493
Iteration: 3, Func. Count: 30, Neg. LLF: 116.8325952970473
Iteration: 4, Func. Count: 41, Neg. LLF: 90.5620323077354
Iteration: 5, Func. Count: 50, Neg. LLF: 90.17640033946697
Iteration: 6, Func. Count: 59, Neg. LLF: 90.16281649841657
Iteration: 7, Func. Count: 68, Neg. LLF: 90.1623525856106
Iteration: 8, Func. Count: 77, Neg. LLF: 90.16229489047448
Iteration: 9, Func. Count: 86, Neg. LLF: 90.16227725350763
Iteration: 10, Func. Count: 94, Neg. LLF: 90.16227725356363
Optimization terminated successfully (Exit mode 0)
Current function value: 90.16227725350763
Iterations: 10
Function evaluations: 94
Gradient evaluations: 10
Iteration: 1, Func. Count: 11, Neg. LLF: 21374254.86960235
Iteration: 2, Func. Count: 23, Neg. LLF: 110.65865364327789
Iteration: 3, Func. Count: 34, Neg. LLF: 247.46194386140417
Iteration: 4, Func. Count: 45, Neg. LLF: 100.97977842153068
Iteration: 5, Func. Count: 56, Neg. LLF: 97.70442812388204
Iteration: 6, Func. Count: 67, Neg. LLF: 95.46149950740916
Iteration: 7, Func. Count: 78, Neg. LLF: 93.6029945545286
Iteration: 8, Func. Count: 89, Neg. LLF: 91.38996489828826
Iteration: 9, Func. Count: 99, Neg. LLF: 99.35485721561788
Iteration: 10, Func. Count: 110, Neg. LLF: 104.40062264780914
Iteration: 11, Func. Count: 122, Neg. LLF: 93.43633954296875
Iteration: 12, Func. Count: 133, Neg. LLF: 90.18346327457031
Iteration: 13, Func. Count: 143, Neg. LLF: 90.16258452457508
Iteration: 14, Func. Count: 153, Neg. LLF: 90.162287269018
Iteration: 15, Func. Count: 163, Neg. LLF: 90.16227707074133
Iteration: 16, Func. Count: 172, Neg. LLF: 90.16227722500274
Optimization terminated successfully (Exit mode 0)
Current function value: 90.16227707074133
Iterations: 16
Function evaluations: 172
Gradient evaluations: 16
Iteration: 1, Func. Count: 8, Neg. LLF: 154.25374811566053
Iteration: 2, Func. Count: 18, Neg. LLF: 183.66282403266396
Iteration: 3, Func. Count: 26, Neg. LLF: 95.15549967770939
Iteration: 4, Func. Count: 33, Neg. LLF: 95.87303504916238
Iteration: 5, Func. Count: 42, Neg. LLF: 96.10802036115012
Iteration: 6, Func. Count: 50, Neg. LLF: 94.88175748595873
Iteration: 7, Func. Count: 57, Neg. LLF: 94.85812388654955
Iteration: 8, Func. Count: 64, Neg. LLF: 94.84770762909382
Iteration: 9, Func. Count: 71, Neg. LLF: 94.84141531999174
Iteration: 10, Func. Count: 78, Neg. LLF: 94.84123466715172
Iteration: 11, Func. Count: 85, Neg. LLF: 94.84121640173211
Iteration: 12, Func. Count: 91, Neg. LLF: 94.84121640170981
Optimization terminated successfully (Exit mode 0)
Current function value: 94.84121640173211
Iterations: 12
Function evaluations: 91
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 23092492.088232152
Iteration: 2, Func. Count: 19, Neg. LLF: 107.03259674505381
Iteration: 3, Func. Count: 29, Neg. LLF: 100.77469667789644
Iteration: 4, Func. Count: 38, Neg. LLF: 94.19358551597533
Iteration: 5, Func. Count: 46, Neg. LLF: 94.03720770524826
Iteration: 6, Func. Count: 55, Neg. LLF: 92.67543138686574
Iteration: 7, Func. Count: 63, Neg. LLF: 91.70599056095112
Iteration: 8, Func. Count: 71, Neg. LLF: 91.67112209820999
Iteration: 9, Func. Count: 79, Neg. LLF: 91.7836410411522
Iteration: 10, Func. Count: 88, Neg. LLF: 91.6125530547026
Iteration: 11, Func. Count: 96, Neg. LLF: 91.59565371395688
Iteration: 12, Func. Count: 104, Neg. LLF: 91.59487158285134
Iteration: 13, Func. Count: 112, Neg. LLF: 91.59486379221097
Iteration: 14, Func. Count: 119, Neg. LLF: 91.59486379210963
Optimization terminated successfully (Exit mode 0)
Current function value: 91.59486379221097
Iterations: 14
Function evaluations: 119
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 21528927.010136716
Iteration: 2, Func. Count: 21, Neg. LLF: 92.70692410585617
Iteration: 3, Func. Count: 30, Neg. LLF: 95.74781759677172
Iteration: 4, Func. Count: 40, Neg. LLF: 260.5912727903183
Iteration: 5, Func. Count: 51, Neg. LLF: 93.26941831930549
Iteration: 6, Func. Count: 61, Neg. LLF: 91.36189096084097
Iteration: 7, Func. Count: 70, Neg. LLF: 91.30180625319838
Iteration: 8, Func. Count: 79, Neg. LLF: 91.4734034725277
Iteration: 9, Func. Count: 89, Neg. LLF: 91.23640208226996
Iteration: 10, Func. Count: 98, Neg. LLF: 91.23279493084404
Iteration: 11, Func. Count: 107, Neg. LLF: 91.2327858107338
Iteration: 12, Func. Count: 115, Neg. LLF: 91.23278580593858
Optimization terminated successfully (Exit mode 0)
Current function value: 91.2327858107338
Iterations: 12
Function evaluations: 115
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 21406379.838958833
Iteration: 2, Func. Count: 22, Neg. LLF: 118.70964678392166
Iteration: 3, Func. Count: 33, Neg. LLF: 115.38358383030528
Iteration: 4, Func. Count: 44, Neg. LLF: 90.54932944474686
Iteration: 5, Func. Count: 54, Neg. LLF: 90.19047520979497
Iteration: 6, Func. Count: 64, Neg. LLF: 90.16527739823255
Iteration: 7, Func. Count: 74, Neg. LLF: 90.16228793056561
Iteration: 8, Func. Count: 84, Neg. LLF: 90.16227914358967
Iteration: 9, Func. Count: 94, Neg. LLF: 90.16227719295279
Iteration: 10, Func. Count: 103, Neg. LLF: 90.16227719292024
Optimization terminated successfully (Exit mode 0)
Current function value: 90.16227719295279
Iterations: 10
Function evaluations: 103
Gradient evaluations: 10
Iteration: 1, Func. Count: 12, Neg. LLF: 21159469.818250388
Iteration: 2, Func. Count: 25, Neg. LLF: 112.38767872914761
Iteration: 3, Func. Count: 37, Neg. LLF: 152.10407965196586
Iteration: 4, Func. Count: 49, Neg. LLF: 94.9678768100773
Iteration: 5, Func. Count: 61, Neg. LLF: 94.35477621116175
Iteration: 6, Func. Count: 73, Neg. LLF: 91.60942757726784
Iteration: 7, Func. Count: 84, Neg. LLF: 92.10614396969272
Iteration: 8, Func. Count: 96, Neg. LLF: 382.9251219652329
Iteration: 9, Func. Count: 108, Neg. LLF: 90.94143076312623
Iteration: 10, Func. Count: 120, Neg. LLF: 90.1953829362219
Iteration: 11, Func. Count: 131, Neg. LLF: 90.16440050068903
Iteration: 12, Func. Count: 142, Neg. LLF: 90.16336657361896
Iteration: 13, Func. Count: 153, Neg. LLF: 90.1627621121533
Iteration: 14, Func. Count: 164, Neg. LLF: 90.16228559359975
Iteration: 15, Func. Count: 175, Neg. LLF: 90.16227746405028
Iteration: 16, Func. Count: 185, Neg. LLF: 90.16227761826276
Optimization terminated successfully (Exit mode 0)
Current function value: 90.16227746405028
Iterations: 16
Function evaluations: 185
Gradient evaluations: 16
Iteration: 1, Func. Count: 9, Neg. LLF: 129.92466298442667
Iteration: 2, Func. Count: 20, Neg. LLF: 151530692.47651666
Iteration: 3, Func. Count: 29, Neg. LLF: 6433113.416477983
Iteration: 4, Func. Count: 38, Neg. LLF: 92.87117843102162
Iteration: 5, Func. Count: 46, Neg. LLF: 79892.13700311002
Iteration: 6, Func. Count: 57, Neg. LLF: 94.68741060557306
Iteration: 7, Func. Count: 66, Neg. LLF: 92.3018059295967
Iteration: 8, Func. Count: 75, Neg. LLF: 92.02585023382389
Iteration: 9, Func. Count: 83, Neg. LLF: 92.01757713876844
Iteration: 10, Func. Count: 91, Neg. LLF: 92.0034139091598
Iteration: 11, Func. Count: 99, Neg. LLF: 91.99829510051153
Iteration: 12, Func. Count: 107, Neg. LLF: 91.99765332148561
Iteration: 13, Func. Count: 115, Neg. LLF: 91.99758501051566
Iteration: 14, Func. Count: 123, Neg. LLF: 91.99743900902861
Iteration: 15, Func. Count: 131, Neg. LLF: 91.9973311643971
Iteration: 16, Func. Count: 139, Neg. LLF: 91.99729397930378
Iteration: 17, Func. Count: 147, Neg. LLF: 91.99728993897757
Iteration: 18, Func. Count: 154, Neg. LLF: 91.99728993898887
Optimization terminated successfully (Exit mode 0)
Current function value: 91.99728993897757
Iterations: 18
Function evaluations: 154
Gradient evaluations: 18
Iteration: 1, Func. Count: 10, Neg. LLF: 22792290.89654427
Iteration: 2, Func. Count: 21, Neg. LLF: 105.84355286213214
Iteration: 3, Func. Count: 32, Neg. LLF: 100.61504058733972
Iteration: 4, Func. Count: 42, Neg. LLF: 94.22266187485936
Iteration: 5, Func. Count: 51, Neg. LLF: 94.49905799732382
Iteration: 6, Func. Count: 61, Neg. LLF: 99.70078880435753
Iteration: 7, Func. Count: 72, Neg. LLF: 92.75537498330246
Iteration: 8, Func. Count: 81, Neg. LLF: 92.27583747230797
Iteration: 9, Func. Count: 90, Neg. LLF: 91.93313893465456
Iteration: 10, Func. Count: 99, Neg. LLF: 91.69909269020235
Iteration: 11, Func. Count: 108, Neg. LLF: 91.59918672972707
Iteration: 12, Func. Count: 117, Neg. LLF: 91.59532949945556
Iteration: 13, Func. Count: 126, Neg. LLF: 91.59486388363894
Iteration: 14, Func. Count: 134, Neg. LLF: 91.59486388432094
Optimization terminated successfully (Exit mode 0)
Current function value: 91.59486388363894
Iterations: 14
Function evaluations: 134
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 21346598.766994223
Iteration: 2, Func. Count: 23, Neg. LLF: 3363095.4688104074
Iteration: 3, Func. Count: 34, Neg. LLF: 8771591.205064014
Iteration: 4, Func. Count: 45, Neg. LLF: 19390.31125401691
Iteration: 5, Func. Count: 57, Neg. LLF: 96.53443595259701
Iteration: 6, Func. Count: 68, Neg. LLF: 92.62459483234123
Iteration: 7, Func. Count: 79, Neg. LLF: 92.92386343064717
Iteration: 8, Func. Count: 90, Neg. LLF: 94.19265563741365
Iteration: 9, Func. Count: 101, Neg. LLF: 92.37966994495086
Iteration: 10, Func. Count: 112, Neg. LLF: 92.05077575412696
Iteration: 11, Func. Count: 123, Neg. LLF: 91.59249783723791
Iteration: 12, Func. Count: 133, Neg. LLF: 91.58835090694551
Iteration: 13, Func. Count: 143, Neg. LLF: 91.5872871905061
Iteration: 14, Func. Count: 153, Neg. LLF: 91.58706988266353
Iteration: 15, Func. Count: 163, Neg. LLF: 91.5870590794917
Iteration: 16, Func. Count: 173, Neg. LLF: 91.58702354160914
Iteration: 17, Func. Count: 183, Neg. LLF: 91.58697341936663
Iteration: 18, Func. Count: 193, Neg. LLF: 91.58692715104748
Iteration: 19, Func. Count: 203, Neg. LLF: 91.58689492143306
Iteration: 20, Func. Count: 213, Neg. LLF: 91.58688491338134
Iteration: 21, Func. Count: 223, Neg. LLF: 91.58688356388171
Iteration: 22, Func. Count: 232, Neg. LLF: 91.5868835639325
Optimization terminated successfully (Exit mode 0)
Current function value: 91.58688356388171
Iterations: 22
Function evaluations: 232
Gradient evaluations: 22
Iteration: 1, Func. Count: 12, Neg. LLF: 21210820.55002532
Iteration: 2, Func. Count: 24, Neg. LLF: 7161989.852531429
Iteration: 3, Func. Count: 36, Neg. LLF: 175.98108673030785
Iteration: 4, Func. Count: 49, Neg. LLF: 111.0788338387786
Iteration: 5, Func. Count: 62, Neg. LLF: 91.74334050042201
Iteration: 6, Func. Count: 73, Neg. LLF: 91.6535144199055
Iteration: 7, Func. Count: 85, Neg. LLF: 94.79354279357058
Iteration: 8, Func. Count: 98, Neg. LLF: 92.32168088346127
Iteration: 9, Func. Count: 110, Neg. LLF: 93.08623283115955
Iteration: 10, Func. Count: 122, Neg. LLF: 92.89663137541861
Iteration: 11, Func. Count: 134, Neg. LLF: 92.77987413295072
Iteration: 12, Func. Count: 146, Neg. LLF: 91.03713022645346
Iteration: 13, Func. Count: 158, Neg. LLF: 90.39611388326801
Iteration: 14, Func. Count: 169, Neg. LLF: 90.37189107246046
Iteration: 15, Func. Count: 180, Neg. LLF: 90.36979858128002
Iteration: 16, Func. Count: 191, Neg. LLF: 90.36919591374672
Iteration: 17, Func. Count: 202, Neg. LLF: 90.3666986703213
Iteration: 18, Func. Count: 213, Neg. LLF: 90.3649826832259
Iteration: 19, Func. Count: 224, Neg. LLF: 90.36364628630463
Iteration: 20, Func. Count: 235, Neg. LLF: 90.36254382681884
Iteration: 21, Func. Count: 246, Neg. LLF: 90.36194442231006
Iteration: 22, Func. Count: 257, Neg. LLF: 90.36169112544975
Iteration: 23, Func. Count: 268, Neg. LLF: 90.36164071507133
Iteration: 24, Func. Count: 279, Neg. LLF: 90.36163725397951
Iteration: 25, Func. Count: 289, Neg. LLF: 90.36163725396449
Optimization terminated successfully (Exit mode 0)
Current function value: 90.36163725397951
Iterations: 25
Function evaluations: 289
Gradient evaluations: 25
Iteration: 1, Func. Count: 13, Neg. LLF: 27106963.817606803
Iteration: 2, Func. Count: 26, Neg. LLF: 1355559.7883235915
Iteration: 3, Func. Count: 39, Neg. LLF: 8375411.070747754
Iteration: 4, Func. Count: 52, Neg. LLF: 101.07298500892693
Iteration: 5, Func. Count: 65, Neg. LLF: 96.12256625202834
Iteration: 6, Func. Count: 78, Neg. LLF: 90.63798199886787
Iteration: 7, Func. Count: 90, Neg. LLF: 91.78550383485324
Iteration: 8, Func. Count: 104, Neg. LLF: 90.6956308188135
Iteration: 9, Func. Count: 117, Neg. LLF: 96.67107059887421
Iteration: 10, Func. Count: 132, Neg. LLF: 90.477685843322
Iteration: 11, Func. Count: 145, Neg. LLF: 89.96801780218887
Iteration: 12, Func. Count: 158, Neg. LLF: 89.95053505920029
Iteration: 13, Func. Count: 171, Neg. LLF: 89.93436609859774
Iteration: 14, Func. Count: 183, Neg. LLF: 89.93412641245048
Iteration: 15, Func. Count: 195, Neg. LLF: 89.93406723385908
Iteration: 16, Func. Count: 207, Neg. LLF: 89.93404274465257
Iteration: 17, Func. Count: 219, Neg. LLF: 89.93403915934046
Iteration: 18, Func. Count: 230, Neg. LLF: 89.93403915938778
Optimization terminated successfully (Exit mode 0)
Current function value: 89.93403915934046
Iterations: 18
Function evaluations: 230
Gradient evaluations: 18
Iteration: 1, Func. Count: 10, Neg. LLF: 116.93109217502324
Iteration: 2, Func. Count: 22, Neg. LLF: 15502395.900629593
Iteration: 3, Func. Count: 32, Neg. LLF: 6991900.072900023
Iteration: 4, Func. Count: 42, Neg. LLF: 92.88677706821085
Iteration: 5, Func. Count: 51, Neg. LLF: 5571102.624574661
Iteration: 6, Func. Count: 62, Neg. LLF: 102.19204808864168
Iteration: 7, Func. Count: 74, Neg. LLF: 92.12067512609437
Iteration: 8, Func. Count: 83, Neg. LLF: 92.03553570559873
Iteration: 9, Func. Count: 92, Neg. LLF: 92.02410469344854
Iteration: 10, Func. Count: 101, Neg. LLF: 92.01401169912529
Iteration: 11, Func. Count: 110, Neg. LLF: 91.9992817189369
Iteration: 12, Func. Count: 119, Neg. LLF: 91.99742285096082
Iteration: 13, Func. Count: 128, Neg. LLF: 91.997343287048
Iteration: 14, Func. Count: 137, Neg. LLF: 91.99732976319495
Iteration: 15, Func. Count: 146, Neg. LLF: 91.99730047875909
Iteration: 16, Func. Count: 155, Neg. LLF: 91.99729188682421
Iteration: 17, Func. Count: 164, Neg. LLF: 91.9972898587693
Iteration: 18, Func. Count: 172, Neg. LLF: 91.99728988288422
Optimization terminated successfully (Exit mode 0)
Current function value: 91.9972898587693
Iterations: 18
Function evaluations: 172
Gradient evaluations: 18
Iteration: 1, Func. Count: 11, Neg. LLF: 23066794.3802499
Iteration: 2, Func. Count: 23, Neg. LLF: 106.65585957082975
Iteration: 3, Func. Count: 35, Neg. LLF: 101.91172585031384
Iteration: 4, Func. Count: 46, Neg. LLF: 94.17102228693044
Iteration: 5, Func. Count: 56, Neg. LLF: 94.51212430809811
Iteration: 6, Func. Count: 67, Neg. LLF: 99.69572486871576
Iteration: 7, Func. Count: 79, Neg. LLF: 92.66667998447797
Iteration: 8, Func. Count: 89, Neg. LLF: 92.32958273662909
Iteration: 9, Func. Count: 99, Neg. LLF: 91.99541190142492
Iteration: 10, Func. Count: 109, Neg. LLF: 91.75038159721366
Iteration: 11, Func. Count: 119, Neg. LLF: 91.59599746749902
Iteration: 12, Func. Count: 129, Neg. LLF: 91.59486579879331
Iteration: 13, Func. Count: 139, Neg. LLF: 91.5948638890583
Iteration: 14, Func. Count: 148, Neg. LLF: 91.59486388820261
Optimization terminated successfully (Exit mode 0)
Current function value: 91.5948638890583
Iterations: 14
Function evaluations: 148
Gradient evaluations: 14
Iteration: 1, Func. Count: 12, Neg. LLF: 21469290.999996345
Iteration: 2, Func. Count: 25, Neg. LLF: 646.2539191827136
Iteration: 3, Func. Count: 37, Neg. LLF: 8769567.717786292
Iteration: 4, Func. Count: 49, Neg. LLF: 1754.3764020044812
Iteration: 5, Func. Count: 62, Neg. LLF: 99.02183725661492
Iteration: 6, Func. Count: 74, Neg. LLF: 93.12503263063414
Iteration: 7, Func. Count: 86, Neg. LLF: 92.75468539344571
Iteration: 8, Func. Count: 98, Neg. LLF: 93.07270347101058
Iteration: 9, Func. Count: 110, Neg. LLF: 93.88358455343905
Iteration: 10, Func. Count: 122, Neg. LLF: 92.35954166588782
Iteration: 11, Func. Count: 134, Neg. LLF: 91.95617847833842
Iteration: 12, Func. Count: 146, Neg. LLF: 91.5940798263031
Iteration: 13, Func. Count: 157, Neg. LLF: 91.58985204142247
Iteration: 14, Func. Count: 168, Neg. LLF: 91.58932053705114
Iteration: 15, Func. Count: 179, Neg. LLF: 91.58915087135885
Iteration: 16, Func. Count: 190, Neg. LLF: 91.58858528459261
Iteration: 17, Func. Count: 201, Neg. LLF: 91.58781717507217
Iteration: 18, Func. Count: 212, Neg. LLF: 91.58714208743386
Iteration: 19, Func. Count: 223, Neg. LLF: 91.58691715079048
Iteration: 20, Func. Count: 234, Neg. LLF: 91.5868858029582
Iteration: 21, Func. Count: 245, Neg. LLF: 91.58688373141408
Iteration: 22, Func. Count: 255, Neg. LLF: 91.58688373142903
Optimization terminated successfully (Exit mode 0)
Current function value: 91.58688373141408
Iterations: 22
Function evaluations: 255
Gradient evaluations: 22
Iteration: 1, Func. Count: 13, Neg. LLF: 21255484.334298998
Iteration: 2, Func. Count: 26, Neg. LLF: 7092708.365318757
Iteration: 3, Func. Count: 39, Neg. LLF: 176.99622778941637
Iteration: 4, Func. Count: 53, Neg. LLF: 110.66349148872484
Iteration: 5, Func. Count: 67, Neg. LLF: 91.72995270831112
Iteration: 6, Func. Count: 79, Neg. LLF: 91.61350997254273
Iteration: 7, Func. Count: 92, Neg. LLF: 94.58345460500588
Iteration: 8, Func. Count: 106, Neg. LLF: 92.20140176740571
Iteration: 9, Func. Count: 119, Neg. LLF: 93.06027120140004
Iteration: 10, Func. Count: 132, Neg. LLF: 92.94530893807175
Iteration: 11, Func. Count: 145, Neg. LLF: 92.81012218895914
Iteration: 12, Func. Count: 158, Neg. LLF: 92.57789521594894
Iteration: 13, Func. Count: 171, Neg. LLF: 90.46541532720798
Iteration: 14, Func. Count: 183, Neg. LLF: 90.4793202591077
Iteration: 15, Func. Count: 196, Neg. LLF: 90.37313433137727
Iteration: 16, Func. Count: 208, Neg. LLF: 90.3714943560209
Iteration: 17, Func. Count: 220, Neg. LLF: 90.37050289452174
Iteration: 18, Func. Count: 232, Neg. LLF: 90.36676324456502
Iteration: 19, Func. Count: 244, Neg. LLF: 90.364153137473
Iteration: 20, Func. Count: 256, Neg. LLF: 90.36237929648696
Iteration: 21, Func. Count: 268, Neg. LLF: 90.3618997932629
Iteration: 22, Func. Count: 280, Neg. LLF: 90.36173440273721
Iteration: 23, Func. Count: 292, Neg. LLF: 90.36164914591538
Iteration: 24, Func. Count: 304, Neg. LLF: 90.36163780698287
Iteration: 25, Func. Count: 316, Neg. LLF: 90.36163715302112
Optimization terminated successfully (Exit mode 0)
Current function value: 90.36163715302112
Iterations: 25
Function evaluations: 316
Gradient evaluations: 25
Iteration: 1, Func. Count: 14, Neg. LLF: 8370801.17232397
Iteration: 2, Func. Count: 28, Neg. LLF: 8380656.401928903
Iteration: 3, Func. Count: 42, Neg. LLF: 144.4724091122299
Iteration: 4, Func. Count: 56, Neg. LLF: 133.69980674978137
Iteration: 5, Func. Count: 70, Neg. LLF: 166.87009164547052
Iteration: 6, Func. Count: 84, Neg. LLF: 3899.28408164268
Iteration: 7, Func. Count: 99, Neg. LLF: 97.91777294611819
Iteration: 8, Func. Count: 113, Neg. LLF: 90.39753155258899
Iteration: 9, Func. Count: 126, Neg. LLF: 90.84277819392788
Iteration: 10, Func. Count: 140, Neg. LLF: 90.80221149744436
Iteration: 11, Func. Count: 154, Neg. LLF: 90.05561302545286
Iteration: 12, Func. Count: 168, Neg. LLF: 90.10282368387135
Iteration: 13, Func. Count: 182, Neg. LLF: 89.94185710983294
Iteration: 14, Func. Count: 195, Neg. LLF: 89.93756399621805
Iteration: 15, Func. Count: 208, Neg. LLF: 89.93575522272688
Iteration: 16, Func. Count: 221, Neg. LLF: 89.93414920152993
Iteration: 17, Func. Count: 234, Neg. LLF: 89.93405969086412
Iteration: 18, Func. Count: 247, Neg. LLF: 89.93404211549269
Iteration: 19, Func. Count: 260, Neg. LLF: 89.93403875441388
Iteration: 20, Func. Count: 272, Neg. LLF: 89.93403875440497
Optimization terminated successfully (Exit mode 0)
Current function value: 89.93403875441388
Iterations: 20
Function evaluations: 272
Gradient evaluations: 20
Iteration: 1, Func. Count: 7, Neg. LLF: 115.28005303300644
Iteration: 2, Func. Count: 15, Neg. LLF: 789.6275733785035
Iteration: 3, Func. Count: 22, Neg. LLF: 14900.565691026582
Iteration: 4, Func. Count: 29, Neg. LLF: 4015.358749601908
Iteration: 5, Func. Count: 36, Neg. LLF: 105.65670066228724
Iteration: 6, Func. Count: 43, Neg. LLF: 93.48852452661924
Iteration: 7, Func. Count: 50, Neg. LLF: 92.53566312668336
Iteration: 8, Func. Count: 56, Neg. LLF: 92.5008899708771
Iteration: 9, Func. Count: 62, Neg. LLF: 92.47942246129682
Iteration: 10, Func. Count: 68, Neg. LLF: 92.47617193880953
Iteration: 11, Func. Count: 74, Neg. LLF: 92.47590866575267
Iteration: 12, Func. Count: 80, Neg. LLF: 92.47589397789967
Iteration: 13, Func. Count: 85, Neg. LLF: 92.47589397786551
Optimization terminated successfully (Exit mode 0)
Current function value: 92.47589397789967
Iterations: 13
Function evaluations: 85
Gradient evaluations: 13
Iteration: 1, Func. Count: 8, Neg. LLF: 20311026.587274026
Iteration: 2, Func. Count: 17, Neg. LLF: 96.28884548358582
Iteration: 3, Func. Count: 27, Neg. LLF: 92.88607523266565
Iteration: 4, Func. Count: 34, Neg. LLF: 94.54936071139949
Iteration: 5, Func. Count: 42, Neg. LLF: 95.31165596456438
Iteration: 6, Func. Count: 50, Neg. LLF: 101.65104132706409
Iteration: 7, Func. Count: 58, Neg. LLF: 92.30473377190702
Iteration: 8, Func. Count: 65, Neg. LLF: 92.2605873099006
Iteration: 9, Func. Count: 72, Neg. LLF: 92.1055136818623
Iteration: 10, Func. Count: 79, Neg. LLF: 92.06325134535695
Iteration: 11, Func. Count: 86, Neg. LLF: 92.04059611387228
Iteration: 12, Func. Count: 93, Neg. LLF: 92.02708120689154
Iteration: 13, Func. Count: 100, Neg. LLF: 92.00304772584839
Iteration: 14, Func. Count: 107, Neg. LLF: 91.96867691050744
Iteration: 15, Func. Count: 114, Neg. LLF: 91.93463516693252
Iteration: 16, Func. Count: 121, Neg. LLF: 91.9181387753541
Iteration: 17, Func. Count: 128, Neg. LLF: 91.91530239006613
Iteration: 18, Func. Count: 135, Neg. LLF: 91.91515547200915
Iteration: 19, Func. Count: 142, Neg. LLF: 91.91515382315819
Iteration: 20, Func. Count: 148, Neg. LLF: 91.91515382316128
Optimization terminated successfully (Exit mode 0)
Current function value: 91.91515382315819
Iterations: 20
Function evaluations: 148
Gradient evaluations: 20
Iteration: 1, Func. Count: 9, Neg. LLF: 1334.9176496928465
Iteration: 2, Func. Count: 18, Neg. LLF: 175.68821930554955
Iteration: 3, Func. Count: 27, Neg. LLF: 94.743529864127
Iteration: 4, Func. Count: 36, Neg. LLF: 95.1865656987763
Iteration: 5, Func. Count: 45, Neg. LLF: 7416955.172314236
Iteration: 6, Func. Count: 54, Neg. LLF: 315.340422801018
Iteration: 7, Func. Count: 63, Neg. LLF: 91.70427142712272
Iteration: 8, Func. Count: 71, Neg. LLF: 91.69502619251229
Iteration: 9, Func. Count: 79, Neg. LLF: 91.69447750052576
Iteration: 10, Func. Count: 87, Neg. LLF: 91.69437517151968
Iteration: 11, Func. Count: 95, Neg. LLF: 91.6943683891795
Iteration: 12, Func. Count: 103, Neg. LLF: 91.69436785803492
Optimization terminated successfully (Exit mode 0)
Current function value: 91.69436785803492
Iterations: 12
Function evaluations: 103
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 1665.0427176800836
Iteration: 2, Func. Count: 20, Neg. LLF: 1409539.8770398824
Iteration: 3, Func. Count: 30, Neg. LLF: 94.4938857152292
Iteration: 4, Func. Count: 40, Neg. LLF: 94.68778924660133
Iteration: 5, Func. Count: 50, Neg. LLF: 1027.2265539385285
Iteration: 6, Func. Count: 60, Neg. LLF: 90.69130637646961
Iteration: 7, Func. Count: 69, Neg. LLF: 209.14713871376955
Iteration: 8, Func. Count: 79, Neg. LLF: 90.6453820957173
Iteration: 9, Func. Count: 89, Neg. LLF: 90.59299024983206
Iteration: 10, Func. Count: 98, Neg. LLF: 90.5910629657432
Iteration: 11, Func. Count: 107, Neg. LLF: 90.59104377221311
Iteration: 12, Func. Count: 116, Neg. LLF: 90.5910431230434
Optimization terminated successfully (Exit mode 0)
Current function value: 90.5910431230434
Iterations: 12
Function evaluations: 116
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 20270190.898310896
Iteration: 2, Func. Count: 23, Neg. LLF: 899.0503362132923
Iteration: 3, Func. Count: 34, Neg. LLF: 208.8749859716558
Iteration: 4, Func. Count: 46, Neg. LLF: 92.98043222227383
Iteration: 5, Func. Count: 57, Neg. LLF: 90.82253353625217
Iteration: 6, Func. Count: 67, Neg. LLF: 95.58748934037351
Iteration: 7, Func. Count: 79, Neg. LLF: 95.56178370705928
Iteration: 8, Func. Count: 90, Neg. LLF: 94.91595998222185
Iteration: 9, Func. Count: 101, Neg. LLF: 92.74293948845387
Iteration: 10, Func. Count: 112, Neg. LLF: 90.29247644486716
Iteration: 11, Func. Count: 122, Neg. LLF: 90.26521406819332
Iteration: 12, Func. Count: 132, Neg. LLF: 90.26493080935964
Iteration: 13, Func. Count: 143, Neg. LLF: 90.2559523865409
Iteration: 14, Func. Count: 153, Neg. LLF: 90.25340400792876
Iteration: 15, Func. Count: 163, Neg. LLF: 90.25290061181232
Iteration: 16, Func. Count: 173, Neg. LLF: 90.25259404848059
Iteration: 17, Func. Count: 183, Neg. LLF: 90.25257441594752
Iteration: 18, Func. Count: 193, Neg. LLF: 90.25257341148121
Iteration: 19, Func. Count: 202, Neg. LLF: 90.25257341150271
Optimization terminated successfully (Exit mode 0)
Current function value: 90.25257341148121
Iterations: 19
Function evaluations: 202
Gradient evaluations: 19
Iteration: 1, Func. Count: 8, Neg. LLF: 114.94077954451006
Iteration: 2, Func. Count: 17, Neg. LLF: 347964.6010920799
Iteration: 3, Func. Count: 25, Neg. LLF: 22088.32271728584
Iteration: 4, Func. Count: 33, Neg. LLF: 5530.214790556959
Iteration: 5, Func. Count: 41, Neg. LLF: 5830.658352579251
Iteration: 6, Func. Count: 49, Neg. LLF: 161.01911320941406
Iteration: 7, Func. Count: 57, Neg. LLF: 93.46424501773505
Iteration: 8, Func. Count: 65, Neg. LLF: 92.41865365390025
Iteration: 9, Func. Count: 72, Neg. LLF: 92.3997806539677
Iteration: 10, Func. Count: 79, Neg. LLF: 92.37869870428777
Iteration: 11, Func. Count: 86, Neg. LLF: 92.37662452372183
Iteration: 12, Func. Count: 93, Neg. LLF: 92.37576170773141
Iteration: 13, Func. Count: 100, Neg. LLF: 92.37563527052944
Iteration: 14, Func. Count: 107, Neg. LLF: 92.3755990731723
Iteration: 15, Func. Count: 113, Neg. LLF: 92.37559890762836
Optimization terminated successfully (Exit mode 0)
Current function value: 92.3755990731723
Iterations: 15
Function evaluations: 113
Gradient evaluations: 15
Iteration: 1, Func. Count: 9, Neg. LLF: 20481710.596685145
Iteration: 2, Func. Count: 19, Neg. LLF: 94.12351377893434
Iteration: 3, Func. Count: 31, Neg. LLF: 97.62707752640104
Iteration: 4, Func. Count: 40, Neg. LLF: 124.41334895064114
Iteration: 5, Func. Count: 49, Neg. LLF: 97.84578548610827
Iteration: 6, Func. Count: 58, Neg. LLF: 93.29518202121982
Iteration: 7, Func. Count: 67, Neg. LLF: 93.30496524056431
Iteration: 8, Func. Count: 76, Neg. LLF: 92.09768230090481
Iteration: 9, Func. Count: 84, Neg. LLF: 92.04497568294883
Iteration: 10, Func. Count: 92, Neg. LLF: 91.96581237269403
Iteration: 11, Func. Count: 100, Neg. LLF: 91.95414509347586
Iteration: 12, Func. Count: 108, Neg. LLF: 91.94873431688787
Iteration: 13, Func. Count: 116, Neg. LLF: 91.93936985535315
Iteration: 14, Func. Count: 124, Neg. LLF: 91.92699137152712
Iteration: 15, Func. Count: 132, Neg. LLF: 91.91786684161103
Iteration: 16, Func. Count: 140, Neg. LLF: 91.91540346797491
Iteration: 17, Func. Count: 148, Neg. LLF: 91.91515634504428
Iteration: 18, Func. Count: 156, Neg. LLF: 91.91515382346523
Iteration: 19, Func. Count: 163, Neg. LLF: 91.91515382346314
Optimization terminated successfully (Exit mode 0)
Current function value: 91.91515382346523
Iterations: 19
Function evaluations: 163
Gradient evaluations: 19
Iteration: 1, Func. Count: 10, Neg. LLF: 1187.7582605777898
Iteration: 2, Func. Count: 20, Neg. LLF: 200.42743451820786
Iteration: 3, Func. Count: 30, Neg. LLF: 94.33981899377295
Iteration: 4, Func. Count: 40, Neg. LLF: 94.66633216673479
Iteration: 5, Func. Count: 50, Neg. LLF: 8064474.621074127
Iteration: 6, Func. Count: 60, Neg. LLF: 2047.177918423245
Iteration: 7, Func. Count: 70, Neg. LLF: 91.70850959459466
Iteration: 8, Func. Count: 79, Neg. LLF: 91.69530583654691
Iteration: 9, Func. Count: 88, Neg. LLF: 91.69450330254288
Iteration: 10, Func. Count: 97, Neg. LLF: 91.69437369325522
Iteration: 11, Func. Count: 106, Neg. LLF: 91.69436809404057
Iteration: 12, Func. Count: 114, Neg. LLF: 91.6943680940425
Optimization terminated successfully (Exit mode 0)
Current function value: 91.69436809404057
Iterations: 12
Function evaluations: 114
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 372188.8323729012
Iteration: 2, Func. Count: 22, Neg. LLF: 827.6473653178733
Iteration: 3, Func. Count: 33, Neg. LLF: 94.10881544114001
Iteration: 4, Func. Count: 44, Neg. LLF: 93.29143515132222
Iteration: 5, Func. Count: 55, Neg. LLF: 2803.6885889759214
Iteration: 6, Func. Count: 66, Neg. LLF: 91.70503605235864
Iteration: 7, Func. Count: 77, Neg. LLF: 90.3805608248755
Iteration: 8, Func. Count: 87, Neg. LLF: 90.7812576219185
Iteration: 9, Func. Count: 98, Neg. LLF: 92.43541508671754
Iteration: 10, Func. Count: 109, Neg. LLF: 90.33980328610355
Iteration: 11, Func. Count: 119, Neg. LLF: 90.33721799576783
Iteration: 12, Func. Count: 129, Neg. LLF: 90.33700999088735
Iteration: 13, Func. Count: 139, Neg. LLF: 90.33699493793766
Iteration: 14, Func. Count: 148, Neg. LLF: 90.33699493803682
Optimization terminated successfully (Exit mode 0)
Current function value: 90.33699493793766
Iterations: 14
Function evaluations: 148
Gradient evaluations: 14
Iteration: 1, Func. Count: 12, Neg. LLF: 308085.00343502447
Iteration: 2, Func. Count: 25, Neg. LLF: 1629.408159542378
Iteration: 3, Func. Count: 37, Neg. LLF: 401.59955684175384
Iteration: 4, Func. Count: 49, Neg. LLF: 92.62256326197459
Iteration: 5, Func. Count: 60, Neg. LLF: 91.82968133825467
Iteration: 6, Func. Count: 72, Neg. LLF: 96.23222103160732
Iteration: 7, Func. Count: 84, Neg. LLF: 91.74830582546434
Iteration: 8, Func. Count: 96, Neg. LLF: 90.70199265372095
Iteration: 9, Func. Count: 108, Neg. LLF: 91.57800658368582
Iteration: 10, Func. Count: 120, Neg. LLF: 90.19425420682266
Iteration: 11, Func. Count: 131, Neg. LLF: 90.12396144049674
Iteration: 12, Func. Count: 142, Neg. LLF: 90.10748202025277
Iteration: 13, Func. Count: 153, Neg. LLF: 90.0938001698454
Iteration: 14, Func. Count: 164, Neg. LLF: 90.08832937616583
Iteration: 15, Func. Count: 175, Neg. LLF: 90.08475737895458
Iteration: 16, Func. Count: 186, Neg. LLF: 90.08468726392448
Iteration: 17, Func. Count: 197, Neg. LLF: 90.08463860791225
Iteration: 18, Func. Count: 208, Neg. LLF: 90.08442303427177
Iteration: 19, Func. Count: 219, Neg. LLF: 90.08432420016095
Iteration: 20, Func. Count: 230, Neg. LLF: 90.0843219458908
Iteration: 21, Func. Count: 240, Neg. LLF: 90.08432194588781
Optimization terminated successfully (Exit mode 0)
Current function value: 90.0843219458908
Iterations: 21
Function evaluations: 240
Gradient evaluations: 21
Iteration: 1, Func. Count: 9, Neg. LLF: 114.72463810269502
Iteration: 2, Func. Count: 19, Neg. LLF: 2333.368599841028
Iteration: 3, Func. Count: 28, Neg. LLF: 56807.35907366405
Iteration: 4, Func. Count: 37, Neg. LLF: 4526.737171818674
Iteration: 5, Func. Count: 46, Neg. LLF: 585.5783472169642
Iteration: 6, Func. Count: 55, Neg. LLF: 247.43883619268053
Iteration: 7, Func. Count: 64, Neg. LLF: 240.43342856440375
Iteration: 8, Func. Count: 73, Neg. LLF: 136.30398980965967
Iteration: 9, Func. Count: 82, Neg. LLF: 102.18786172098072
Iteration: 10, Func. Count: 91, Neg. LLF: 97.53256616707903
Iteration: 11, Func. Count: 100, Neg. LLF: 93.96571208992181
Iteration: 12, Func. Count: 109, Neg. LLF: 92.15553906320736
Iteration: 13, Func. Count: 117, Neg. LLF: 92.12195675884493
Iteration: 14, Func. Count: 126, Neg. LLF: 92.06907033010084
Iteration: 15, Func. Count: 134, Neg. LLF: 92.05839064376352
Iteration: 16, Func. Count: 142, Neg. LLF: 92.05509368851139
Iteration: 17, Func. Count: 150, Neg. LLF: 92.05416150041107
Iteration: 18, Func. Count: 158, Neg. LLF: 92.05387615496753
Iteration: 19, Func. Count: 166, Neg. LLF: 92.0538416296233
Iteration: 20, Func. Count: 174, Neg. LLF: 92.05383864982666
Iteration: 21, Func. Count: 181, Neg. LLF: 92.05383864983811
Optimization terminated successfully (Exit mode 0)
Current function value: 92.05383864982666
Iterations: 21
Function evaluations: 181
Gradient evaluations: 21
Iteration: 1, Func. Count: 10, Neg. LLF: 20397983.754115712
Iteration: 2, Func. Count: 21, Neg. LLF: 98.28436498489489
Iteration: 3, Func. Count: 33, Neg. LLF: 93.50607076937123
Iteration: 4, Func. Count: 42, Neg. LLF: 94.38941879227872
Iteration: 5, Func. Count: 52, Neg. LLF: 111.92608384403334
Iteration: 6, Func. Count: 63, Neg. LLF: 100.98067992754396
Iteration: 7, Func. Count: 73, Neg. LLF: 92.17525480303091
Iteration: 8, Func. Count: 82, Neg. LLF: 92.00473752050084
Iteration: 9, Func. Count: 91, Neg. LLF: 91.96600882588947
Iteration: 10, Func. Count: 100, Neg. LLF: 91.94395413363038
Iteration: 11, Func. Count: 109, Neg. LLF: 91.92470981308259
Iteration: 12, Func. Count: 118, Neg. LLF: 91.91185167108449
Iteration: 13, Func. Count: 127, Neg. LLF: 91.90435616359177
Iteration: 14, Func. Count: 136, Neg. LLF: 91.88515376805242
Iteration: 15, Func. Count: 145, Neg. LLF: 91.86485955825489
Iteration: 16, Func. Count: 154, Neg. LLF: 91.858812836292
Iteration: 17, Func. Count: 163, Neg. LLF: 91.85783027389367
Iteration: 18, Func. Count: 172, Neg. LLF: 91.8578004350472
Iteration: 19, Func. Count: 181, Neg. LLF: 91.85779670747016
Iteration: 20, Func. Count: 189, Neg. LLF: 91.85779670750371
Optimization terminated successfully (Exit mode 0)
Current function value: 91.85779670747016
Iterations: 20
Function evaluations: 189
Gradient evaluations: 20
Iteration: 1, Func. Count: 11, Neg. LLF: 1282.7838704885999
Iteration: 2, Func. Count: 22, Neg. LLF: 212.0947137060296
Iteration: 3, Func. Count: 33, Neg. LLF: 94.2493752325045
Iteration: 4, Func. Count: 44, Neg. LLF: 94.67522232373469
Iteration: 5, Func. Count: 55, Neg. LLF: 7833282.213779588
Iteration: 6, Func. Count: 66, Neg. LLF: 220725.05404601296
Iteration: 7, Func. Count: 77, Neg. LLF: 91.71248139388793
Iteration: 8, Func. Count: 87, Neg. LLF: 106.02443528953053
Iteration: 9, Func. Count: 99, Neg. LLF: 91.68291104080774
Iteration: 10, Func. Count: 109, Neg. LLF: 91.67923246097993
Iteration: 11, Func. Count: 119, Neg. LLF: 91.67897444692808
Iteration: 12, Func. Count: 129, Neg. LLF: 91.67894620700085
Iteration: 13, Func. Count: 139, Neg. LLF: 91.67894482260158
Iteration: 14, Func. Count: 148, Neg. LLF: 91.67894482266188
Optimization terminated successfully (Exit mode 0)
Current function value: 91.67894482260158
Iterations: 14
Function evaluations: 148
Gradient evaluations: 14
Iteration: 1, Func. Count: 12, Neg. LLF: 1330909.68329122
Iteration: 2, Func. Count: 24, Neg. LLF: 818.434631608538
Iteration: 3, Func. Count: 36, Neg. LLF: 94.08965339314321
Iteration: 4, Func. Count: 48, Neg. LLF: 93.22622498387467
Iteration: 5, Func. Count: 60, Neg. LLF: 2067.3737667767964
Iteration: 6, Func. Count: 72, Neg. LLF: 91.4021282619918
Iteration: 7, Func. Count: 84, Neg. LLF: 90.38064975113573
Iteration: 8, Func. Count: 95, Neg. LLF: 99.54717207225855
Iteration: 9, Func. Count: 108, Neg. LLF: 90.75045998480364
Iteration: 10, Func. Count: 121, Neg. LLF: 96.4424555137839
Iteration: 11, Func. Count: 134, Neg. LLF: 90.29951002449681
Iteration: 12, Func. Count: 145, Neg. LLF: 90.29839210654416
Iteration: 13, Func. Count: 156, Neg. LLF: 90.2978713277639
Iteration: 14, Func. Count: 167, Neg. LLF: 90.29779860941476
Iteration: 15, Func. Count: 178, Neg. LLF: 90.29779215204661
Iteration: 16, Func. Count: 188, Neg. LLF: 90.29779215211656
Optimization terminated successfully (Exit mode 0)
Current function value: 90.29779215204661
Iterations: 16
Function evaluations: 188
Gradient evaluations: 16
Iteration: 1, Func. Count: 13, Neg. LLF: 20541036.869569335
Iteration: 2, Func. Count: 27, Neg. LLF: 12912.71295807987
Iteration: 3, Func. Count: 40, Neg. LLF: 18543.93315769563
Iteration: 4, Func. Count: 53, Neg. LLF: 92.62639251946688
Iteration: 5, Func. Count: 65, Neg. LLF: 91.3505882478077
Iteration: 6, Func. Count: 78, Neg. LLF: 95.96098690833784
Iteration: 7, Func. Count: 91, Neg. LLF: 93.99434737825071
Iteration: 8, Func. Count: 106, Neg. LLF: 91.93701770112328
Iteration: 9, Func. Count: 119, Neg. LLF: 90.67607863046382
Iteration: 10, Func. Count: 132, Neg. LLF: 92.12567333037747
Iteration: 11, Func. Count: 145, Neg. LLF: 90.14989604412635
Iteration: 12, Func. Count: 157, Neg. LLF: 90.11346328636238
Iteration: 13, Func. Count: 169, Neg. LLF: 90.10215759533448
Iteration: 14, Func. Count: 181, Neg. LLF: 90.08904838273052
Iteration: 15, Func. Count: 193, Neg. LLF: 90.08260320219011
Iteration: 16, Func. Count: 205, Neg. LLF: 90.0811488618921
Iteration: 17, Func. Count: 217, Neg. LLF: 90.08107730418052
Iteration: 18, Func. Count: 229, Neg. LLF: 90.08100525878397
Iteration: 19, Func. Count: 241, Neg. LLF: 90.08078631497364
Iteration: 20, Func. Count: 253, Neg. LLF: 90.08068392376107
Iteration: 21, Func. Count: 265, Neg. LLF: 90.08065019548391
Iteration: 22, Func. Count: 277, Neg. LLF: 90.080646020317
Iteration: 23, Func. Count: 288, Neg. LLF: 90.08064602032123
Optimization terminated successfully (Exit mode 0)
Current function value: 90.080646020317
Iterations: 23
Function evaluations: 288
Gradient evaluations: 23
Iteration: 1, Func. Count: 10, Neg. LLF: 112.54994237761599
Iteration: 2, Func. Count: 21, Neg. LLF: 532.7604177329795
Iteration: 3, Func. Count: 31, Neg. LLF: 7272860.899023923
Iteration: 4, Func. Count: 41, Neg. LLF: 114.33523624341814
Iteration: 5, Func. Count: 51, Neg. LLF: 95.32625108905161
Iteration: 6, Func. Count: 61, Neg. LLF: 92.11635911578446
Iteration: 7, Func. Count: 70, Neg. LLF: 92.00076306174236
Iteration: 8, Func. Count: 79, Neg. LLF: 92.7480271137012
Iteration: 9, Func. Count: 90, Neg. LLF: 91.9196814311926
Iteration: 10, Func. Count: 99, Neg. LLF: 91.91466721981836
Iteration: 11, Func. Count: 108, Neg. LLF: 91.90475030944927
Iteration: 12, Func. Count: 117, Neg. LLF: 91.90073419363418
Iteration: 13, Func. Count: 126, Neg. LLF: 91.8987186765609
Iteration: 14, Func. Count: 135, Neg. LLF: 91.89857712962025
Iteration: 15, Func. Count: 144, Neg. LLF: 91.89852176247912
Iteration: 16, Func. Count: 153, Neg. LLF: 91.89846450306395
Iteration: 17, Func. Count: 162, Neg. LLF: 91.89841259911661
Iteration: 18, Func. Count: 171, Neg. LLF: 91.89840174445746
Iteration: 19, Func. Count: 180, Neg. LLF: 91.89840042415587
Iteration: 20, Func. Count: 188, Neg. LLF: 91.8984004241565
Optimization terminated successfully (Exit mode 0)
Current function value: 91.89840042415587
Iterations: 20
Function evaluations: 188
Gradient evaluations: 20
Iteration: 1, Func. Count: 11, Neg. LLF: 20340534.208461307
Iteration: 2, Func. Count: 23, Neg. LLF: 100.4750016678539
Iteration: 3, Func. Count: 36, Neg. LLF: 194.31996876101715
Iteration: 4, Func. Count: 47, Neg. LLF: 93.40853077041044
Iteration: 5, Func. Count: 57, Neg. LLF: 96.80789095667183
Iteration: 6, Func. Count: 69, Neg. LLF: 93.76909760946091
Iteration: 7, Func. Count: 80, Neg. LLF: 92.18726170438207
Iteration: 8, Func. Count: 90, Neg. LLF: 93.01229777318171
Iteration: 9, Func. Count: 101, Neg. LLF: 91.75810354630431
Iteration: 10, Func. Count: 111, Neg. LLF: 91.63310387504174
Iteration: 11, Func. Count: 121, Neg. LLF: 91.63713093503533
Iteration: 12, Func. Count: 132, Neg. LLF: 91.61523847722123
Iteration: 13, Func. Count: 142, Neg. LLF: 91.6016772120603
Iteration: 14, Func. Count: 152, Neg. LLF: 91.59793557749528
Iteration: 15, Func. Count: 162, Neg. LLF: 91.5952398919732
Iteration: 16, Func. Count: 172, Neg. LLF: 91.59496815273502
Iteration: 17, Func. Count: 182, Neg. LLF: 91.59486513850852
Iteration: 18, Func. Count: 192, Neg. LLF: 91.59486383123445
Iteration: 19, Func. Count: 201, Neg. LLF: 91.59486383161352
Optimization terminated successfully (Exit mode 0)
Current function value: 91.59486383123445
Iterations: 19
Function evaluations: 201
Gradient evaluations: 19
Iteration: 1, Func. Count: 12, Neg. LLF: 7102882.366394156
Iteration: 2, Func. Count: 24, Neg. LLF: 198.80049607733255
Iteration: 3, Func. Count: 37, Neg. LLF: 96.72405901880515
Iteration: 4, Func. Count: 49, Neg. LLF: 97.48184100163262
Iteration: 5, Func. Count: 61, Neg. LLF: 93.60783606648636
Iteration: 6, Func. Count: 73, Neg. LLF: 91.72823992492897
Iteration: 7, Func. Count: 84, Neg. LLF: 91.72219762299963
Iteration: 8, Func. Count: 96, Neg. LLF: 93.25157525348851
Iteration: 9, Func. Count: 108, Neg. LLF: 93.44989119830244
Iteration: 10, Func. Count: 120, Neg. LLF: 91.60860658050353
Iteration: 11, Func. Count: 132, Neg. LLF: 91.52791566266353
Iteration: 12, Func. Count: 143, Neg. LLF: 91.52114832920303
Iteration: 13, Func. Count: 154, Neg. LLF: 91.52052882866161
Iteration: 14, Func. Count: 165, Neg. LLF: 91.52030684967514
Iteration: 15, Func. Count: 176, Neg. LLF: 91.5202371420403
Iteration: 16, Func. Count: 187, Neg. LLF: 91.52022153470313
Iteration: 17, Func. Count: 198, Neg. LLF: 91.52021861225803
Iteration: 18, Func. Count: 209, Neg. LLF: 91.52021727901115
Iteration: 19, Func. Count: 219, Neg. LLF: 91.52021727904284
Optimization terminated successfully (Exit mode 0)
Current function value: 91.52021727901115
Iterations: 19
Function evaluations: 219
Gradient evaluations: 19
Iteration: 1, Func. Count: 13, Neg. LLF: 7112284.870121079
Iteration: 2, Func. Count: 26, Neg. LLF: 7230305.653267508
Iteration: 3, Func. Count: 40, Neg. LLF: 95.23126765525427
Iteration: 4, Func. Count: 53, Neg. LLF: 96.14855041373629
Iteration: 5, Func. Count: 66, Neg. LLF: 96.54833136936747
Iteration: 6, Func. Count: 79, Neg. LLF: 95.62809953549467
Iteration: 7, Func. Count: 92, Neg. LLF: 90.75272428677162
Iteration: 8, Func. Count: 104, Neg. LLF: 94.36337540584131
Iteration: 9, Func. Count: 118, Neg. LLF: 93.96529456015058
Iteration: 10, Func. Count: 133, Neg. LLF: 90.35401043632177
Iteration: 11, Func. Count: 145, Neg. LLF: 90.33253582177933
Iteration: 12, Func. Count: 158, Neg. LLF: 94.9032388904867
Iteration: 13, Func. Count: 171, Neg. LLF: 90.04221636657927
Iteration: 14, Func. Count: 183, Neg. LLF: 90.0355979860068
Iteration: 15, Func. Count: 195, Neg. LLF: 90.0302670553281
Iteration: 16, Func. Count: 207, Neg. LLF: 90.02972897046209
Iteration: 17, Func. Count: 219, Neg. LLF: 90.02939090047236
Iteration: 18, Func. Count: 231, Neg. LLF: 90.02938325131751
Iteration: 19, Func. Count: 243, Neg. LLF: 90.02938232673486
Optimization terminated successfully (Exit mode 0)
Current function value: 90.02938232673486
Iterations: 19
Function evaluations: 243
Gradient evaluations: 19
Iteration: 1, Func. Count: 14, Neg. LLF: 7121553.375168047
Iteration: 2, Func. Count: 28, Neg. LLF: 7146642.249166297
Iteration: 3, Func. Count: 42, Neg. LLF: 103.52003522167378
Iteration: 4, Func. Count: 56, Neg. LLF: 100.26620639961786
Iteration: 5, Func. Count: 70, Neg. LLF: 94.50187030854146
Iteration: 6, Func. Count: 84, Neg. LLF: 93.40689585533951
Iteration: 7, Func. Count: 98, Neg. LLF: 91.28005343753193
Iteration: 8, Func. Count: 112, Neg. LLF: 89.9808569402932
Iteration: 9, Func. Count: 125, Neg. LLF: 92.78227676258541
Iteration: 10, Func. Count: 139, Neg. LLF: 90.79849920015897
Iteration: 11, Func. Count: 153, Neg. LLF: 91.353660143387
Iteration: 12, Func. Count: 167, Neg. LLF: 90.13392041532448
Iteration: 13, Func. Count: 181, Neg. LLF: 89.7978039843524
Iteration: 14, Func. Count: 194, Neg. LLF: 89.79362432425563
Iteration: 15, Func. Count: 207, Neg. LLF: 89.79321415282887
Iteration: 16, Func. Count: 220, Neg. LLF: 89.79303298102468
Iteration: 17, Func. Count: 233, Neg. LLF: 89.7929625378873
Iteration: 18, Func. Count: 246, Neg. LLF: 89.7929440240237
Iteration: 19, Func. Count: 258, Neg. LLF: 89.79294402411917
Optimization terminated successfully (Exit mode 0)
Current function value: 89.7929440240237
Iterations: 19
Function evaluations: 258
Gradient evaluations: 19
Iteration: 1, Func. Count: 11, Neg. LLF: 118.90172855833886
Iteration: 2, Func. Count: 23, Neg. LLF: 154186500.7101808
Iteration: 3, Func. Count: 34, Neg. LLF: 7060125.056209697
Iteration: 4, Func. Count: 45, Neg. LLF: 250.74527890663896
Iteration: 5, Func. Count: 56, Neg. LLF: 96.3599639614832
Iteration: 6, Func. Count: 67, Neg. LLF: 92.0245866040778
Iteration: 7, Func. Count: 77, Neg. LLF: 92.00374651512595
Iteration: 8, Func. Count: 88, Neg. LLF: 91.97758696094454
Iteration: 9, Func. Count: 99, Neg. LLF: 91.90549799535765
Iteration: 10, Func. Count: 109, Neg. LLF: 91.90363122069007
Iteration: 11, Func. Count: 119, Neg. LLF: 91.90050361509863
Iteration: 12, Func. Count: 129, Neg. LLF: 91.89901986743011
Iteration: 13, Func. Count: 139, Neg. LLF: 91.89844830385013
Iteration: 14, Func. Count: 149, Neg. LLF: 91.89840072354353
Iteration: 15, Func. Count: 158, Neg. LLF: 91.89840073753138
Optimization terminated successfully (Exit mode 0)
Current function value: 91.89840072354353
Iterations: 15
Function evaluations: 158
Gradient evaluations: 15
Iteration: 1, Func. Count: 12, Neg. LLF: 20388381.336602796
Iteration: 2, Func. Count: 25, Neg. LLF: 100.40598541947368
Iteration: 3, Func. Count: 39, Neg. LLF: 200.93833954279546
Iteration: 4, Func. Count: 51, Neg. LLF: 93.4041906052734
Iteration: 5, Func. Count: 62, Neg. LLF: 97.22433958440692
Iteration: 6, Func. Count: 75, Neg. LLF: 93.58755906978318
Iteration: 7, Func. Count: 87, Neg. LLF: 92.15610440500178
Iteration: 8, Func. Count: 98, Neg. LLF: 92.80272588162283
Iteration: 9, Func. Count: 110, Neg. LLF: 91.80810105595015
Iteration: 10, Func. Count: 121, Neg. LLF: 91.62888983824506
Iteration: 11, Func. Count: 132, Neg. LLF: 91.62602853302644
Iteration: 12, Func. Count: 143, Neg. LLF: 91.61216389615234
Iteration: 13, Func. Count: 154, Neg. LLF: 91.60187193044035
Iteration: 14, Func. Count: 165, Neg. LLF: 91.59676559282077
Iteration: 15, Func. Count: 176, Neg. LLF: 91.59623221302553
Iteration: 16, Func. Count: 187, Neg. LLF: 91.59499946408727
Iteration: 17, Func. Count: 198, Neg. LLF: 91.59487504311335
Iteration: 18, Func. Count: 209, Neg. LLF: 91.594864143359
Iteration: 19, Func. Count: 219, Neg. LLF: 91.59486414228365
Optimization terminated successfully (Exit mode 0)
Current function value: 91.594864143359
Iterations: 19
Function evaluations: 219
Gradient evaluations: 19
Iteration: 1, Func. Count: 13, Neg. LLF: 7168929.188855766
Iteration: 2, Func. Count: 26, Neg. LLF: 182.43269482023072
Iteration: 3, Func. Count: 40, Neg. LLF: 101.93604137767024
Iteration: 4, Func. Count: 53, Neg. LLF: 95.3613639204991
Iteration: 5, Func. Count: 66, Neg. LLF: 94.44542414464804
Iteration: 6, Func. Count: 79, Neg. LLF: 92.19716756585818
Iteration: 7, Func. Count: 92, Neg. LLF: 91.58406373249449
Iteration: 8, Func. Count: 104, Neg. LLF: 91.6173583445908
Iteration: 9, Func. Count: 117, Neg. LLF: 91.77122873239064
Iteration: 10, Func. Count: 130, Neg. LLF: 92.8049939528285
Iteration: 11, Func. Count: 144, Neg. LLF: 91.5223560876491
Iteration: 12, Func. Count: 156, Neg. LLF: 91.52065963473629
Iteration: 13, Func. Count: 168, Neg. LLF: 91.52030794790922
Iteration: 14, Func. Count: 180, Neg. LLF: 91.52025130343206
Iteration: 15, Func. Count: 192, Neg. LLF: 91.52022640422365
Iteration: 16, Func. Count: 204, Neg. LLF: 91.52021773029745
Iteration: 17, Func. Count: 215, Neg. LLF: 91.5202177303691
Optimization terminated successfully (Exit mode 0)
Current function value: 91.52021773029745
Iterations: 17
Function evaluations: 215
Gradient evaluations: 17
Iteration: 1, Func. Count: 14, Neg. LLF: 7104255.709639383
Iteration: 2, Func. Count: 28, Neg. LLF: 7356699.160867557
Iteration: 3, Func. Count: 43, Neg. LLF: 95.65516256613213
Iteration: 4, Func. Count: 57, Neg. LLF: 95.93975219141697
Iteration: 5, Func. Count: 71, Neg. LLF: 96.89193530108393
Iteration: 6, Func. Count: 85, Neg. LLF: 95.68373088500213
Iteration: 7, Func. Count: 99, Neg. LLF: 90.7732064403678
Iteration: 8, Func. Count: 112, Neg. LLF: 94.3151900345446
Iteration: 9, Func. Count: 127, Neg. LLF: 94.62182921609595
Iteration: 10, Func. Count: 142, Neg. LLF: 90.3304715539236
Iteration: 11, Func. Count: 155, Neg. LLF: 90.38342341814176
Iteration: 12, Func. Count: 169, Neg. LLF: 101.14173452455559
Iteration: 13, Func. Count: 184, Neg. LLF: 90.04587661471236
Iteration: 14, Func. Count: 197, Neg. LLF: 90.03086260928127
Iteration: 15, Func. Count: 210, Neg. LLF: 90.03156281674265
Iteration: 16, Func. Count: 224, Neg. LLF: 90.030300195198
Iteration: 17, Func. Count: 238, Neg. LLF: 90.02942864532426
Iteration: 18, Func. Count: 251, Neg. LLF: 90.02939024193532
Iteration: 19, Func. Count: 264, Neg. LLF: 90.02938517386721
Iteration: 20, Func. Count: 277, Neg. LLF: 90.02938327018127
Iteration: 21, Func. Count: 289, Neg. LLF: 90.02938327024097
Optimization terminated successfully (Exit mode 0)
Current function value: 90.02938327018127
Iterations: 21
Function evaluations: 289
Gradient evaluations: 21
Iteration: 1, Func. Count: 15, Neg. LLF: 7117127.861483724
Iteration: 2, Func. Count: 30, Neg. LLF: 7164509.57128153
Iteration: 3, Func. Count: 45, Neg. LLF: 103.19844218782684
Iteration: 4, Func. Count: 60, Neg. LLF: 100.3081479775812
Iteration: 5, Func. Count: 75, Neg. LLF: 95.59416094437074
Iteration: 6, Func. Count: 90, Neg. LLF: 93.59532723238102
Iteration: 7, Func. Count: 105, Neg. LLF: 91.2117483939715
Iteration: 8, Func. Count: 120, Neg. LLF: 90.03556729275213
Iteration: 9, Func. Count: 134, Neg. LLF: 91.59387271208499
Iteration: 10, Func. Count: 149, Neg. LLF: 90.65661900699995
Iteration: 11, Func. Count: 164, Neg. LLF: 91.48782546187729
Iteration: 12, Func. Count: 179, Neg. LLF: 90.54359092264347
Iteration: 13, Func. Count: 194, Neg. LLF: 89.79610906845558
Iteration: 14, Func. Count: 208, Neg. LLF: 89.79381506211213
Iteration: 15, Func. Count: 222, Neg. LLF: 89.79329121579441
Iteration: 16, Func. Count: 236, Neg. LLF: 89.79308313583991
Iteration: 17, Func. Count: 250, Neg. LLF: 89.79294655750728
Iteration: 18, Func. Count: 264, Neg. LLF: 89.7929436882026
Iteration: 19, Func. Count: 277, Neg. LLF: 89.79294368823072
Optimization terminated successfully (Exit mode 0)
Current function value: 89.7929436882026
Iterations: 19
Function evaluations: 277
Gradient evaluations: 19
Iteration: 1, Func. Count: 8, Neg. LLF: 113.6777172151267
Iteration: 2, Func. Count: 17, Neg. LLF: 1849552.3705163104
Iteration: 3, Func. Count: 25, Neg. LLF: 4791.8031217678335
Iteration: 4, Func. Count: 33, Neg. LLF: 11790.822948664974
Iteration: 5, Func. Count: 41, Neg. LLF: 140.01107247376055
Iteration: 6, Func. Count: 49, Neg. LLF: 95.0841126904591
Iteration: 7, Func. Count: 57, Neg. LLF: 92.63107378477372
Iteration: 8, Func. Count: 64, Neg. LLF: 162.20277018757
Iteration: 9, Func. Count: 72, Neg. LLF: 93.55345202001595
Iteration: 10, Func. Count: 80, Neg. LLF: 92.38458389724109
Iteration: 11, Func. Count: 87, Neg. LLF: 92.37183376790352
Iteration: 12, Func. Count: 94, Neg. LLF: 92.36606482535635
Iteration: 13, Func. Count: 101, Neg. LLF: 92.36299078783584
Iteration: 14, Func. Count: 108, Neg. LLF: 92.36283627353394
Iteration: 15, Func. Count: 115, Neg. LLF: 92.36283553802288
Optimization terminated successfully (Exit mode 0)
Current function value: 92.36283553802288
Iterations: 15
Function evaluations: 115
Gradient evaluations: 15
Iteration: 1, Func. Count: 9, Neg. LLF: 20670735.904149666
Iteration: 2, Func. Count: 19, Neg. LLF: 95.94995152276996
Iteration: 3, Func. Count: 29, Neg. LLF: 93.50318456027208
Iteration: 4, Func. Count: 37, Neg. LLF: 98.96728716044191
Iteration: 5, Func. Count: 46, Neg. LLF: 98.52726582722197
Iteration: 6, Func. Count: 55, Neg. LLF: 98.29445000812298
Iteration: 7, Func. Count: 64, Neg. LLF: 158.12609865599825
Iteration: 8, Func. Count: 74, Neg. LLF: 95.37279231984972
Iteration: 9, Func. Count: 83, Neg. LLF: 92.20309932726254
Iteration: 10, Func. Count: 91, Neg. LLF: 92.17350057334613
Iteration: 11, Func. Count: 99, Neg. LLF: 92.13647837852776
Iteration: 12, Func. Count: 107, Neg. LLF: 92.11481114707938
Iteration: 13, Func. Count: 115, Neg. LLF: 92.06428182824646
Iteration: 14, Func. Count: 123, Neg. LLF: 92.004935562677
Iteration: 15, Func. Count: 131, Neg. LLF: 91.94075253469191
Iteration: 16, Func. Count: 139, Neg. LLF: 91.91869024715788
Iteration: 17, Func. Count: 147, Neg. LLF: 91.91536215013056
Iteration: 18, Func. Count: 155, Neg. LLF: 91.9151547229116
Iteration: 19, Func. Count: 163, Neg. LLF: 91.9151538392792
Optimization terminated successfully (Exit mode 0)
Current function value: 91.9151538392792
Iterations: 19
Function evaluations: 163
Gradient evaluations: 19
Iteration: 1, Func. Count: 10, Neg. LLF: 1977.1033354405783
Iteration: 2, Func. Count: 20, Neg. LLF: 4943.351595716984
Iteration: 3, Func. Count: 30, Neg. LLF: 95.40901936754801
Iteration: 4, Func. Count: 40, Neg. LLF: 94.63982468781543
Iteration: 5, Func. Count: 50, Neg. LLF: 105.05361534426203
Iteration: 6, Func. Count: 60, Neg. LLF: 98.59031076638814
Iteration: 7, Func. Count: 70, Neg. LLF: 91.70409163789576
Iteration: 8, Func. Count: 79, Neg. LLF: 91.73840583350794
Iteration: 9, Func. Count: 89, Neg. LLF: 91.6944362316237
Iteration: 10, Func. Count: 98, Neg. LLF: 91.69437012072729
Iteration: 11, Func. Count: 107, Neg. LLF: 91.69436821619668
Iteration: 12, Func. Count: 115, Neg. LLF: 91.69436821613607
Optimization terminated successfully (Exit mode 0)
Current function value: 91.69436821619668
Iterations: 12
Function evaluations: 115
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 1394.8384178087065
Iteration: 2, Func. Count: 22, Neg. LLF: 235.31003030525878
Iteration: 3, Func. Count: 33, Neg. LLF: 456.953472057891
Iteration: 4, Func. Count: 45, Neg. LLF: 94.4232974577096
Iteration: 5, Func. Count: 56, Neg. LLF: 90.94155935734965
Iteration: 6, Func. Count: 66, Neg. LLF: 94.76545830521643
Iteration: 7, Func. Count: 77, Neg. LLF: 91.13734122663551
Iteration: 8, Func. Count: 88, Neg. LLF: 90.6755230998755
Iteration: 9, Func. Count: 99, Neg. LLF: 90.61596865326753
Iteration: 10, Func. Count: 110, Neg. LLF: 90.58175687521597
Iteration: 11, Func. Count: 120, Neg. LLF: 90.58146880561907
Iteration: 12, Func. Count: 130, Neg. LLF: 90.58119431615054
Iteration: 13, Func. Count: 140, Neg. LLF: 90.58104592474679
Iteration: 14, Func. Count: 150, Neg. LLF: 90.58092475839956
Iteration: 15, Func. Count: 160, Neg. LLF: 90.58088788307106
Iteration: 16, Func. Count: 170, Neg. LLF: 90.58088156189984
Iteration: 17, Func. Count: 179, Neg. LLF: 90.58088156189267
Optimization terminated successfully (Exit mode 0)
Current function value: 90.58088156189984
Iterations: 17
Function evaluations: 179
Gradient evaluations: 17
Iteration: 1, Func. Count: 12, Neg. LLF: 21399525.336639185
Iteration: 2, Func. Count: 25, Neg. LLF: 3690.1551599125173
Iteration: 3, Func. Count: 37, Neg. LLF: 1051.222510284661
Iteration: 4, Func. Count: 49, Neg. LLF: 93.15654031389437
Iteration: 5, Func. Count: 61, Neg. LLF: 90.87528253519685
Iteration: 6, Func. Count: 72, Neg. LLF: 93.35071822017882
Iteration: 7, Func. Count: 85, Neg. LLF: 96.12806724471552
Iteration: 8, Func. Count: 97, Neg. LLF: 95.43805956717601
Iteration: 9, Func. Count: 109, Neg. LLF: 93.32254008870004
Iteration: 10, Func. Count: 121, Neg. LLF: 90.2856107145431
Iteration: 11, Func. Count: 132, Neg. LLF: 90.26603840520521
Iteration: 12, Func. Count: 143, Neg. LLF: 90.25913028291643
Iteration: 13, Func. Count: 154, Neg. LLF: 90.2561207744669
Iteration: 14, Func. Count: 165, Neg. LLF: 90.25339403665222
Iteration: 15, Func. Count: 176, Neg. LLF: 90.25276666479489
Iteration: 16, Func. Count: 187, Neg. LLF: 90.25259364089797
Iteration: 17, Func. Count: 198, Neg. LLF: 90.25257493255813
Iteration: 18, Func. Count: 209, Neg. LLF: 90.25257343999482
Iteration: 19, Func. Count: 219, Neg. LLF: 90.25257344002178
Optimization terminated successfully (Exit mode 0)
Current function value: 90.25257343999482
Iterations: 19
Function evaluations: 219
Gradient evaluations: 19
Iteration: 1, Func. Count: 9, Neg. LLF: 113.31287760640072
Iteration: 2, Func. Count: 19, Neg. LLF: 386.38659681834486
Iteration: 3, Func. Count: 28, Neg. LLF: 2168.694656150782
Iteration: 4, Func. Count: 37, Neg. LLF: 1287.2024515310948
Iteration: 5, Func. Count: 46, Neg. LLF: 3085.241474229299
Iteration: 6, Func. Count: 55, Neg. LLF: 106.47098284949986
Iteration: 7, Func. Count: 64, Neg. LLF: 93.08881330518578
Iteration: 8, Func. Count: 73, Neg. LLF: 92.41862050658911
Iteration: 9, Func. Count: 81, Neg. LLF: 92.37959544037193
Iteration: 10, Func. Count: 89, Neg. LLF: 93.09496950648875
Iteration: 11, Func. Count: 99, Neg. LLF: 92.36838810885482
Iteration: 12, Func. Count: 107, Neg. LLF: 92.37227984870393
Iteration: 13, Func. Count: 116, Neg. LLF: 92.36467120165975
Iteration: 14, Func. Count: 125, Neg. LLF: 92.34537715117158
Iteration: 15, Func. Count: 133, Neg. LLF: 92.34515118029516
Iteration: 16, Func. Count: 141, Neg. LLF: 92.34508792195518
Iteration: 17, Func. Count: 149, Neg. LLF: 92.3450695592843
Iteration: 18, Func. Count: 157, Neg. LLF: 92.34506855383843
Iteration: 19, Func. Count: 164, Neg. LLF: 92.34506836506336
Optimization terminated successfully (Exit mode 0)
Current function value: 92.34506855383843
Iterations: 19
Function evaluations: 164
Gradient evaluations: 19
Iteration: 1, Func. Count: 10, Neg. LLF: 22098282.39171019
Iteration: 2, Func. Count: 21, Neg. LLF: 99.76183197942271
Iteration: 3, Func. Count: 33, Neg. LLF: 95.18578073740655
Iteration: 4, Func. Count: 43, Neg. LLF: 99.6137816412594
Iteration: 5, Func. Count: 53, Neg. LLF: 101.96667042881731
Iteration: 6, Func. Count: 63, Neg. LLF: 92.14385515218171
Iteration: 7, Func. Count: 72, Neg. LLF: 92.0484681877964
Iteration: 8, Func. Count: 81, Neg. LLF: 91.96912318288084
Iteration: 9, Func. Count: 90, Neg. LLF: 91.96271459700328
Iteration: 10, Func. Count: 99, Neg. LLF: 91.95101079377682
Iteration: 11, Func. Count: 108, Neg. LLF: 91.93792378680699
Iteration: 12, Func. Count: 117, Neg. LLF: 91.92274540395718
Iteration: 13, Func. Count: 126, Neg. LLF: 91.91628689373265
Iteration: 14, Func. Count: 135, Neg. LLF: 91.91520537122872
Iteration: 15, Func. Count: 144, Neg. LLF: 91.91515383988171
Iteration: 16, Func. Count: 152, Neg. LLF: 91.91515383989534
Optimization terminated successfully (Exit mode 0)
Current function value: 91.91515383988171
Iterations: 16
Function evaluations: 152
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 208857.0315969814
Iteration: 2, Func. Count: 22, Neg. LLF: 10084.710222367246
Iteration: 3, Func. Count: 33, Neg. LLF: 95.58269726473718
Iteration: 4, Func. Count: 44, Neg. LLF: 94.60174490332122
Iteration: 5, Func. Count: 55, Neg. LLF: 105.35885617955327
Iteration: 6, Func. Count: 66, Neg. LLF: 102.30497077787761
Iteration: 7, Func. Count: 77, Neg. LLF: 91.70670257330521
Iteration: 8, Func. Count: 87, Neg. LLF: 91.83356080779149
Iteration: 9, Func. Count: 98, Neg. LLF: 91.69439040535285
Iteration: 10, Func. Count: 108, Neg. LLF: 91.69436820075359
Iteration: 11, Func. Count: 117, Neg. LLF: 91.69436820064485
Optimization terminated successfully (Exit mode 0)
Current function value: 91.69436820075359
Iterations: 11
Function evaluations: 117
Gradient evaluations: 11
Iteration: 1, Func. Count: 12, Neg. LLF: 12155.355955020299
Iteration: 2, Func. Count: 24, Neg. LLF: 1481.529695455496
Iteration: 3, Func. Count: 36, Neg. LLF: 98.98033231570852
Iteration: 4, Func. Count: 48, Neg. LLF: 93.58653807339303
Iteration: 5, Func. Count: 60, Neg. LLF: 100.80025307519175
Iteration: 6, Func. Count: 72, Neg. LLF: 90.7900200945874
Iteration: 7, Func. Count: 83, Neg. LLF: 93.78477322567723
Iteration: 8, Func. Count: 95, Neg. LLF: 99.01018015724632
Iteration: 9, Func. Count: 107, Neg. LLF: 90.82585104305348
Iteration: 10, Func. Count: 119, Neg. LLF: 90.34568905197108
Iteration: 11, Func. Count: 130, Neg. LLF: 90.37454131704287
Iteration: 12, Func. Count: 142, Neg. LLF: 90.3270332886076
Iteration: 13, Func. Count: 153, Neg. LLF: 90.32603440423532
Iteration: 14, Func. Count: 164, Neg. LLF: 90.32582612855873
Iteration: 15, Func. Count: 175, Neg. LLF: 90.32580429054813
Iteration: 16, Func. Count: 186, Neg. LLF: 90.3258030068473
Iteration: 17, Func. Count: 196, Neg. LLF: 90.32580300680793
Optimization terminated successfully (Exit mode 0)
Current function value: 90.3258030068473
Iterations: 17
Function evaluations: 196
Gradient evaluations: 17
Iteration: 1, Func. Count: 13, Neg. LLF: 22486303.93062896
Iteration: 2, Func. Count: 27, Neg. LLF: 1233.958827225451
Iteration: 3, Func. Count: 40, Neg. LLF: 520.8756822687247
Iteration: 4, Func. Count: 53, Neg. LLF: 93.09214913111522
Iteration: 5, Func. Count: 66, Neg. LLF: 91.03283891738002
Iteration: 6, Func. Count: 78, Neg. LLF: 94.21297616854986
Iteration: 7, Func. Count: 92, Neg. LLF: 92.20890473071942
Iteration: 8, Func. Count: 105, Neg. LLF: 91.99128039626116
Iteration: 9, Func. Count: 118, Neg. LLF: 95.93034270853397
Iteration: 10, Func. Count: 131, Neg. LLF: 90.11380816303421
Iteration: 11, Func. Count: 143, Neg. LLF: 90.10370912250126
Iteration: 12, Func. Count: 155, Neg. LLF: 90.09056896854567
Iteration: 13, Func. Count: 167, Neg. LLF: 90.08702656294977
Iteration: 14, Func. Count: 179, Neg. LLF: 90.08473274625648
Iteration: 15, Func. Count: 191, Neg. LLF: 90.08439393922086
Iteration: 16, Func. Count: 203, Neg. LLF: 90.08432694240489
Iteration: 17, Func. Count: 215, Neg. LLF: 90.08432199438896
Iteration: 18, Func. Count: 226, Neg. LLF: 90.08432199448765
Optimization terminated successfully (Exit mode 0)
Current function value: 90.08432199438896
Iterations: 18
Function evaluations: 226
Gradient evaluations: 18
Iteration: 1, Func. Count: 10, Neg. LLF: 113.08525926982341
Iteration: 2, Func. Count: 21, Neg. LLF: 518.7189602742793
Iteration: 3, Func. Count: 31, Neg. LLF: 1525.964724225857
Iteration: 4, Func. Count: 41, Neg. LLF: 373.4527804099883
Iteration: 5, Func. Count: 51, Neg. LLF: 354.4927892352638
Iteration: 6, Func. Count: 61, Neg. LLF: 246.27329794652073
Iteration: 7, Func. Count: 71, Neg. LLF: 210.07473387885182
Iteration: 8, Func. Count: 81, Neg. LLF: 113.95778154726078
Iteration: 9, Func. Count: 91, Neg. LLF: 102.57745848080626
Iteration: 10, Func. Count: 101, Neg. LLF: 96.61329856387168
Iteration: 11, Func. Count: 111, Neg. LLF: 92.85181582323604
Iteration: 12, Func. Count: 121, Neg. LLF: 92.07716977287463
Iteration: 13, Func. Count: 130, Neg. LLF: 93.2271833170403
Iteration: 14, Func. Count: 141, Neg. LLF: 92.19571686101848
Iteration: 15, Func. Count: 151, Neg. LLF: 92.06058412667576
Iteration: 16, Func. Count: 160, Neg. LLF: 92.05645484403648
Iteration: 17, Func. Count: 169, Neg. LLF: 92.05399506982654
Iteration: 18, Func. Count: 178, Neg. LLF: 92.05337692286348
Iteration: 19, Func. Count: 187, Neg. LLF: 92.0532454712025
Iteration: 20, Func. Count: 196, Neg. LLF: 92.05316496103706
Iteration: 21, Func. Count: 205, Neg. LLF: 92.0531449092185
Iteration: 22, Func. Count: 213, Neg. LLF: 92.0531449092289
Optimization terminated successfully (Exit mode 0)
Current function value: 92.0531449092185
Iterations: 22
Function evaluations: 213
Gradient evaluations: 22
Iteration: 1, Func. Count: 11, Neg. LLF: 21810741.05038067
Iteration: 2, Func. Count: 23, Neg. LLF: 102.40164327808365
Iteration: 3, Func. Count: 36, Neg. LLF: 93.98872279404468
Iteration: 4, Func. Count: 46, Neg. LLF: 93.32670954923668
Iteration: 5, Func. Count: 56, Neg. LLF: 108.72092297888187
Iteration: 6, Func. Count: 67, Neg. LLF: 96.67908821974069
Iteration: 7, Func. Count: 78, Neg. LLF: 164.4700552134513
Iteration: 8, Func. Count: 89, Neg. LLF: 92.18823669496199
Iteration: 9, Func. Count: 99, Neg. LLF: 92.07923783377917
Iteration: 10, Func. Count: 109, Neg. LLF: 92.0119109702861
Iteration: 11, Func. Count: 119, Neg. LLF: 91.96903288479591
Iteration: 12, Func. Count: 129, Neg. LLF: 91.93949872138086
Iteration: 13, Func. Count: 139, Neg. LLF: 91.92180257992936
Iteration: 14, Func. Count: 149, Neg. LLF: 91.90893427783165
Iteration: 15, Func. Count: 159, Neg. LLF: 91.90070534760926
Iteration: 16, Func. Count: 169, Neg. LLF: 91.88437234382381
Iteration: 17, Func. Count: 179, Neg. LLF: 91.86655081740707
Iteration: 18, Func. Count: 189, Neg. LLF: 91.85963898139224
Iteration: 19, Func. Count: 199, Neg. LLF: 91.85787478463135
Iteration: 20, Func. Count: 209, Neg. LLF: 91.85779870279427
Iteration: 21, Func. Count: 219, Neg. LLF: 91.85779673265048
Iteration: 22, Func. Count: 228, Neg. LLF: 91.85779673267263
Optimization terminated successfully (Exit mode 0)
Current function value: 91.85779673265048
Iterations: 22
Function evaluations: 228
Gradient evaluations: 22
Iteration: 1, Func. Count: 12, Neg. LLF: 115370.4909539766
Iteration: 2, Func. Count: 24, Neg. LLF: 5939.188616378907
Iteration: 3, Func. Count: 36, Neg. LLF: 95.61609525449305
Iteration: 4, Func. Count: 48, Neg. LLF: 94.62462322619433
Iteration: 5, Func. Count: 60, Neg. LLF: 105.28247572340857
Iteration: 6, Func. Count: 72, Neg. LLF: 101.32273509319735
Iteration: 7, Func. Count: 84, Neg. LLF: 91.70689882295724
Iteration: 8, Func. Count: 95, Neg. LLF: 91.93820017031145
Iteration: 9, Func. Count: 107, Neg. LLF: 91.67936592224278
Iteration: 10, Func. Count: 118, Neg. LLF: 91.67900012591797
Iteration: 11, Func. Count: 129, Neg. LLF: 91.6789532118308
Iteration: 12, Func. Count: 140, Neg. LLF: 91.67894477119904
Iteration: 13, Func. Count: 150, Neg. LLF: 91.67894477117476
Optimization terminated successfully (Exit mode 0)
Current function value: 91.67894477119904
Iterations: 13
Function evaluations: 150
Gradient evaluations: 13
Iteration: 1, Func. Count: 13, Neg. LLF: 11011.293603697333
Iteration: 2, Func. Count: 26, Neg. LLF: 3471.7394166211275
Iteration: 3, Func. Count: 39, Neg. LLF: 102.7107280424903
Iteration: 4, Func. Count: 52, Neg. LLF: 93.31659362987692
Iteration: 5, Func. Count: 65, Neg. LLF: 92.38684647043812
Iteration: 6, Func. Count: 78, Neg. LLF: 90.680303100056
Iteration: 7, Func. Count: 90, Neg. LLF: 93.11047507656507
Iteration: 8, Func. Count: 103, Neg. LLF: 95.73867254844666
Iteration: 9, Func. Count: 117, Neg. LLF: 91.00463407855467
Iteration: 10, Func. Count: 130, Neg. LLF: 90.3360893582332
Iteration: 11, Func. Count: 143, Neg. LLF: 90.31997426303509
Iteration: 12, Func. Count: 156, Neg. LLF: 90.35730641175054
Iteration: 13, Func. Count: 169, Neg. LLF: 90.28571483498047
Iteration: 14, Func. Count: 181, Neg. LLF: 90.2853244846007
Iteration: 15, Func. Count: 193, Neg. LLF: 90.28508164610508
Iteration: 16, Func. Count: 205, Neg. LLF: 90.28505128892743
Iteration: 17, Func. Count: 216, Neg. LLF: 90.28505128886934
Optimization terminated successfully (Exit mode 0)
Current function value: 90.28505128892743
Iterations: 17
Function evaluations: 216
Gradient evaluations: 17
Iteration: 1, Func. Count: 14, Neg. LLF: 22497991.84325994
Iteration: 2, Func. Count: 29, Neg. LLF: 1215.3356913544824
Iteration: 3, Func. Count: 43, Neg. LLF: 512.1261831328076
Iteration: 4, Func. Count: 57, Neg. LLF: 93.10315114855418
Iteration: 5, Func. Count: 71, Neg. LLF: 91.0303315415539
Iteration: 6, Func. Count: 84, Neg. LLF: 94.30439761714334
Iteration: 7, Func. Count: 99, Neg. LLF: 93.41217476944654
Iteration: 8, Func. Count: 113, Neg. LLF: 101.09120367755855
Iteration: 9, Func. Count: 127, Neg. LLF: 90.31677979095916
Iteration: 10, Func. Count: 141, Neg. LLF: 98.44935854410565
Iteration: 11, Func. Count: 155, Neg. LLF: 90.1204383020921
Iteration: 12, Func. Count: 168, Neg. LLF: 90.13207531162503
Iteration: 13, Func. Count: 182, Neg. LLF: 90.09336024735573
Iteration: 14, Func. Count: 195, Neg. LLF: 90.08384143666234
Iteration: 15, Func. Count: 208, Neg. LLF: 90.08117103890136
Iteration: 16, Func. Count: 221, Neg. LLF: 90.08073773636971
Iteration: 17, Func. Count: 234, Neg. LLF: 90.0806569947284
Iteration: 18, Func. Count: 247, Neg. LLF: 90.08064724174294
Iteration: 19, Func. Count: 260, Neg. LLF: 90.08064597467818
Iteration: 20, Func. Count: 272, Neg. LLF: 90.08064597467545
Optimization terminated successfully (Exit mode 0)
Current function value: 90.08064597467818
Iterations: 20
Function evaluations: 272
Gradient evaluations: 20
Iteration: 1, Func. Count: 11, Neg. LLF: 114.77598596424308
Iteration: 2, Func. Count: 23, Neg. LLF: 557.9993075225383
Iteration: 3, Func. Count: 34, Neg. LLF: 12486.524953076752
Iteration: 4, Func. Count: 45, Neg. LLF: 115.00973932061028
Iteration: 5, Func. Count: 56, Neg. LLF: 93.27361172519642
Iteration: 6, Func. Count: 67, Neg. LLF: 92.01696417091391
Iteration: 7, Func. Count: 77, Neg. LLF: 94.87975322376901
Iteration: 8, Func. Count: 89, Neg. LLF: 92.04511247139996
Iteration: 9, Func. Count: 100, Neg. LLF: 92.0536907313814
Iteration: 10, Func. Count: 111, Neg. LLF: 91.96602292033322
Iteration: 11, Func. Count: 122, Neg. LLF: 91.92350265757422
Iteration: 12, Func. Count: 133, Neg. LLF: 91.88382116870362
Iteration: 13, Func. Count: 144, Neg. LLF: 91.87990385878359
Iteration: 14, Func. Count: 154, Neg. LLF: 91.87797945977962
Iteration: 15, Func. Count: 164, Neg. LLF: 91.87742489137051
Iteration: 16, Func. Count: 174, Neg. LLF: 91.87730571891704
Iteration: 17, Func. Count: 184, Neg. LLF: 91.87730420639264
Iteration: 18, Func. Count: 193, Neg. LLF: 91.87730420639194
Optimization terminated successfully (Exit mode 0)
Current function value: 91.87730420639264
Iterations: 18
Function evaluations: 193
Gradient evaluations: 18
Iteration: 1, Func. Count: 12, Neg. LLF: 21598137.61098844
Iteration: 2, Func. Count: 25, Neg. LLF: 103.03750273778249
Iteration: 3, Func. Count: 39, Neg. LLF: 249.53208775255015
Iteration: 4, Func. Count: 51, Neg. LLF: 93.44067915959313
Iteration: 5, Func. Count: 62, Neg. LLF: 101.92579753376582
Iteration: 6, Func. Count: 75, Neg. LLF: 94.35836934805086
Iteration: 7, Func. Count: 87, Neg. LLF: 99.8597474623742
Iteration: 8, Func. Count: 100, Neg. LLF: 92.60799376392053
Iteration: 9, Func. Count: 112, Neg. LLF: 97.08795598225865
Iteration: 10, Func. Count: 124, Neg. LLF: 91.72852742790324
Iteration: 11, Func. Count: 135, Neg. LLF: 91.60879835506043
Iteration: 12, Func. Count: 146, Neg. LLF: 91.60489406202296
Iteration: 13, Func. Count: 157, Neg. LLF: 91.60167813738178
Iteration: 14, Func. Count: 168, Neg. LLF: 91.59914325714688
Iteration: 15, Func. Count: 179, Neg. LLF: 91.59573014002667
Iteration: 16, Func. Count: 190, Neg. LLF: 91.59510451420417
Iteration: 17, Func. Count: 201, Neg. LLF: 91.59486443974377
Iteration: 18, Func. Count: 212, Neg. LLF: 91.59486382789592
Optimization terminated successfully (Exit mode 0)
Current function value: 91.59486382789592
Iterations: 18
Function evaluations: 212
Gradient evaluations: 18
Iteration: 1, Func. Count: 13, Neg. LLF: 11275572.036614364
Iteration: 2, Func. Count: 26, Neg. LLF: 261.4970232577268
Iteration: 3, Func. Count: 39, Neg. LLF: 95.3290966018069
Iteration: 4, Func. Count: 53, Neg. LLF: 94.48996061416248
Iteration: 5, Func. Count: 66, Neg. LLF: 96.01536484546247
Iteration: 6, Func. Count: 79, Neg. LLF: 97.24713261545735
Iteration: 7, Func. Count: 92, Neg. LLF: 91.94649141244766
Iteration: 8, Func. Count: 105, Neg. LLF: 91.71177122448967
Iteration: 9, Func. Count: 118, Neg. LLF: 91.46437435694868
Iteration: 10, Func. Count: 130, Neg. LLF: 92.86979941714277
Iteration: 11, Func. Count: 144, Neg. LLF: 91.51005506265088
Iteration: 12, Func. Count: 157, Neg. LLF: 91.45230100105852
Iteration: 13, Func. Count: 169, Neg. LLF: 91.45113824114271
Iteration: 14, Func. Count: 181, Neg. LLF: 91.45045618223254
Iteration: 15, Func. Count: 193, Neg. LLF: 91.45016797764443
Iteration: 16, Func. Count: 205, Neg. LLF: 91.45013178411001
Iteration: 17, Func. Count: 217, Neg. LLF: 91.45011385340226
Iteration: 18, Func. Count: 229, Neg. LLF: 91.45010793207607
Iteration: 19, Func. Count: 241, Neg. LLF: 91.45010731147494
Optimization terminated successfully (Exit mode 0)
Current function value: 91.45010731147494
Iterations: 19
Function evaluations: 241
Gradient evaluations: 19
Iteration: 1, Func. Count: 14, Neg. LLF: 11151287.513856482
Iteration: 2, Func. Count: 28, Neg. LLF: 8983987.30959586
Iteration: 3, Func. Count: 42, Neg. LLF: 145.2760673905324
Iteration: 4, Func. Count: 57, Neg. LLF: 94.98862002724063
Iteration: 5, Func. Count: 71, Neg. LLF: 96.700701215829
Iteration: 6, Func. Count: 85, Neg. LLF: 91.76909250649136
Iteration: 7, Func. Count: 99, Neg. LLF: 90.96431073951076
Iteration: 8, Func. Count: 112, Neg. LLF: 93.75300042793522
Iteration: 9, Func. Count: 127, Neg. LLF: 93.3831788427305
Iteration: 10, Func. Count: 143, Neg. LLF: 93.45243490062607
Iteration: 11, Func. Count: 157, Neg. LLF: 92.79883268061782
Iteration: 12, Func. Count: 171, Neg. LLF: 90.1893787547447
Iteration: 13, Func. Count: 185, Neg. LLF: 92.75685267673965
Iteration: 14, Func. Count: 199, Neg. LLF: 90.03570276797356
Iteration: 15, Func. Count: 212, Neg. LLF: 90.02629098884552
Iteration: 16, Func. Count: 225, Neg. LLF: 90.02260917753544
Iteration: 17, Func. Count: 238, Neg. LLF: 90.0202920144571
Iteration: 18, Func. Count: 251, Neg. LLF: 90.01968473514275
Iteration: 19, Func. Count: 264, Neg. LLF: 90.0196246419691
Iteration: 20, Func. Count: 277, Neg. LLF: 90.01961568146157
Iteration: 21, Func. Count: 290, Neg. LLF: 90.01961177799191
Iteration: 22, Func. Count: 303, Neg. LLF: 90.01961112666598
Optimization terminated successfully (Exit mode 0)
Current function value: 90.01961112666598
Iterations: 22
Function evaluations: 303
Gradient evaluations: 22
Iteration: 1, Func. Count: 15, Neg. LLF: 10665785.108196966
Iteration: 2, Func. Count: 30, Neg. LLF: 6856692.354784321
Iteration: 3, Func. Count: 45, Neg. LLF: 157.9353954942663
Iteration: 4, Func. Count: 61, Neg. LLF: 94.63571319434348
Iteration: 5, Func. Count: 76, Neg. LLF: 95.26961849394118
Iteration: 6, Func. Count: 91, Neg. LLF: 93.65577432099339
Iteration: 7, Func. Count: 106, Neg. LLF: 91.35210417352766
Iteration: 8, Func. Count: 121, Neg. LLF: 90.48787308382404
Iteration: 9, Func. Count: 135, Neg. LLF: 91.30274542442386
Iteration: 10, Func. Count: 150, Neg. LLF: 92.52354749569452
Iteration: 11, Func. Count: 165, Neg. LLF: 90.08905652720684
Iteration: 12, Func. Count: 180, Neg. LLF: 89.84867436750194
Iteration: 13, Func. Count: 194, Neg. LLF: 89.97710297286307
Iteration: 14, Func. Count: 209, Neg. LLF: 89.80032805660898
Iteration: 15, Func. Count: 223, Neg. LLF: 89.79524131654972
Iteration: 16, Func. Count: 237, Neg. LLF: 89.79348886866843
Iteration: 17, Func. Count: 251, Neg. LLF: 89.79299895037511
Iteration: 18, Func. Count: 265, Neg. LLF: 89.79294609549842
Iteration: 19, Func. Count: 279, Neg. LLF: 89.79294496670241
Iteration: 20, Func. Count: 293, Neg. LLF: 89.79294395872805
Iteration: 21, Func. Count: 306, Neg. LLF: 89.79294395874128
Optimization terminated successfully (Exit mode 0)
Current function value: 89.79294395872805
Iterations: 21
Function evaluations: 306
Gradient evaluations: 21
Iteration: 1, Func. Count: 12, Neg. LLF: 115.91948458763237
Iteration: 2, Func. Count: 25, Neg. LLF: 625609.7517069574
Iteration: 3, Func. Count: 37, Neg. LLF: 19022.664702233735
Iteration: 4, Func. Count: 49, Neg. LLF: 3373.799326204095
Iteration: 5, Func. Count: 61, Neg. LLF: 168.23376606625115
Iteration: 6, Func. Count: 73, Neg. LLF: 161.91184629453772
Iteration: 7, Func. Count: 85, Neg. LLF: 97.26731487414277
Iteration: 8, Func. Count: 97, Neg. LLF: 95.99267436587459
Iteration: 9, Func. Count: 109, Neg. LLF: 91.97573303724062
Iteration: 10, Func. Count: 120, Neg. LLF: 91.93957849359624
Iteration: 11, Func. Count: 132, Neg. LLF: 93.10302829377048
Iteration: 12, Func. Count: 145, Neg. LLF: 91.57139553451883
Iteration: 13, Func. Count: 157, Neg. LLF: 91.42712383120026
Iteration: 14, Func. Count: 168, Neg. LLF: 91.43124998665594
Iteration: 15, Func. Count: 180, Neg. LLF: 91.37814037841011
Iteration: 16, Func. Count: 191, Neg. LLF: 91.37476802710908
Iteration: 17, Func. Count: 202, Neg. LLF: 91.37271840368422
Iteration: 18, Func. Count: 213, Neg. LLF: 91.37155053625582
Iteration: 19, Func. Count: 224, Neg. LLF: 91.371382910867
Iteration: 20, Func. Count: 235, Neg. LLF: 91.37136154532018
Iteration: 21, Func. Count: 246, Neg. LLF: 91.37135735331616
Iteration: 22, Func. Count: 257, Neg. LLF: 91.37135644436317
Optimization terminated successfully (Exit mode 0)
Current function value: 91.37135644436317
Iterations: 22
Function evaluations: 257
Gradient evaluations: 22
Iteration: 1, Func. Count: 13, Neg. LLF: 21807618.6008659
Iteration: 2, Func. Count: 27, Neg. LLF: 100.49094628649237
Iteration: 3, Func. Count: 41, Neg. LLF: 497.4536323111262
Iteration: 4, Func. Count: 55, Neg. LLF: 93.52211764815371
Iteration: 5, Func. Count: 68, Neg. LLF: 94.8168868651792
Iteration: 6, Func. Count: 81, Neg. LLF: 94.81355832304995
Iteration: 7, Func. Count: 94, Neg. LLF: 93.44676171895439
Iteration: 8, Func. Count: 107, Neg. LLF: 92.57852305195622
Iteration: 9, Func. Count: 120, Neg. LLF: 92.13094925811373
Iteration: 10, Func. Count: 132, Neg. LLF: 92.57705827839408
Iteration: 11, Func. Count: 146, Neg. LLF: 92.31682046009485
Iteration: 12, Func. Count: 159, Neg. LLF: 91.89230945610042
Iteration: 13, Func. Count: 171, Neg. LLF: 91.86896646929608
Iteration: 14, Func. Count: 184, Neg. LLF: 91.73162537163496
Iteration: 15, Func. Count: 196, Neg. LLF: 91.70322800223066
Iteration: 16, Func. Count: 208, Neg. LLF: 91.69520385871859
Iteration: 17, Func. Count: 220, Neg. LLF: 91.69090693326382
Iteration: 18, Func. Count: 232, Neg. LLF: 91.68643312260566
Iteration: 19, Func. Count: 244, Neg. LLF: 91.68084407446896
Iteration: 20, Func. Count: 256, Neg. LLF: 91.6777975555581
Iteration: 21, Func. Count: 268, Neg. LLF: 91.67440566613993
Iteration: 22, Func. Count: 280, Neg. LLF: 91.67263055142438
Iteration: 23, Func. Count: 292, Neg. LLF: 91.67221239352173
Iteration: 24, Func. Count: 304, Neg. LLF: 91.67210726933112
Iteration: 25, Func. Count: 316, Neg. LLF: 91.67207357131218
Iteration: 26, Func. Count: 328, Neg. LLF: 91.67205781964705
Iteration: 27, Func. Count: 340, Neg. LLF: 91.6720566106338
Iteration: 28, Func. Count: 351, Neg. LLF: 91.67205661063885
Optimization terminated successfully (Exit mode 0)
Current function value: 91.6720566106338
Iterations: 28
Function evaluations: 351
Gradient evaluations: 28
Iteration: 1, Func. Count: 14, Neg. LLF: 2341475.1154033607
Iteration: 2, Func. Count: 28, Neg. LLF: 1468936.140480107
Iteration: 3, Func. Count: 42, Neg. LLF: 104.41230771070202
Iteration: 4, Func. Count: 56, Neg. LLF: 98.46626872165349
Iteration: 5, Func. Count: 70, Neg. LLF: 98.00683117081081
Iteration: 6, Func. Count: 84, Neg. LLF: 92.60153322647653
Iteration: 7, Func. Count: 98, Neg. LLF: 93.4838951848361
Iteration: 8, Func. Count: 112, Neg. LLF: 93.55870159553332
Iteration: 9, Func. Count: 126, Neg. LLF: 92.20460871727684
Iteration: 10, Func. Count: 141, Neg. LLF: 91.19829347530245
Iteration: 11, Func. Count: 154, Neg. LLF: 91.23892945123448
Iteration: 12, Func. Count: 168, Neg. LLF: 91.09486855082406
Iteration: 13, Func. Count: 182, Neg. LLF: 91.06715154723904
Iteration: 14, Func. Count: 195, Neg. LLF: 91.06667755553167
Iteration: 15, Func. Count: 208, Neg. LLF: 91.06647369924525
Iteration: 16, Func. Count: 221, Neg. LLF: 91.0664665522833
Iteration: 17, Func. Count: 234, Neg. LLF: 91.06646509009083
Iteration: 18, Func. Count: 246, Neg. LLF: 91.0664650900931
Optimization terminated successfully (Exit mode 0)
Current function value: 91.06646509009083
Iterations: 18
Function evaluations: 246
Gradient evaluations: 18
Iteration: 1, Func. Count: 15, Neg. LLF: 2316759.269120329
Iteration: 2, Func. Count: 30, Neg. LLF: 2380441.0186599144
Iteration: 3, Func. Count: 45, Neg. LLF: 106.23550829193
Iteration: 4, Func. Count: 61, Neg. LLF: 95.04034802909015
Iteration: 5, Func. Count: 76, Neg. LLF: 106.00817156897352
Iteration: 6, Func. Count: 91, Neg. LLF: 90.42257275869832
Iteration: 7, Func. Count: 105, Neg. LLF: 92.32283936068829
Iteration: 8, Func. Count: 121, Neg. LLF: 98.19555754293101
Iteration: 9, Func. Count: 138, Neg. LLF: 93.40949724431024
Iteration: 10, Func. Count: 153, Neg. LLF: 93.61512519817407
Iteration: 11, Func. Count: 168, Neg. LLF: 94.47290174042743
Iteration: 12, Func. Count: 183, Neg. LLF: 93.3016775337132
Iteration: 13, Func. Count: 198, Neg. LLF: 91.69583865001843
Iteration: 14, Func. Count: 213, Neg. LLF: 90.64841139962213
Iteration: 15, Func. Count: 228, Neg. LLF: 92.64993415081084
Iteration: 16, Func. Count: 243, Neg. LLF: 89.6422243819932
Iteration: 17, Func. Count: 258, Neg. LLF: 89.66619500264548
Iteration: 18, Func. Count: 273, Neg. LLF: 89.60480547886254
Iteration: 19, Func. Count: 288, Neg. LLF: 89.59768202530154
Iteration: 20, Func. Count: 302, Neg. LLF: 89.59537607655525
Iteration: 21, Func. Count: 316, Neg. LLF: 89.5946272023103
Iteration: 22, Func. Count: 330, Neg. LLF: 89.59420608137907
Iteration: 23, Func. Count: 344, Neg. LLF: 89.59414994680938
Iteration: 24, Func. Count: 358, Neg. LLF: 89.59413636710816
Iteration: 25, Func. Count: 372, Neg. LLF: 89.59413253038123
Iteration: 26, Func. Count: 386, Neg. LLF: 89.59412986073467
Iteration: 27, Func. Count: 400, Neg. LLF: 89.59412916365804
Optimization terminated successfully (Exit mode 0)
Current function value: 89.59412916365804
Iterations: 27
Function evaluations: 400
Gradient evaluations: 27
Iteration: 1, Func. Count: 16, Neg. LLF: 2975654.5713665127
Iteration: 2, Func. Count: 32, Neg. LLF: 9435449.064870348
Iteration: 3, Func. Count: 48, Neg. LLF: 136.29685139253266
Iteration: 4, Func. Count: 65, Neg. LLF: 94.70424664120138
Iteration: 5, Func. Count: 81, Neg. LLF: 98.23149314683256
Iteration: 6, Func. Count: 97, Neg. LLF: 94.02067494638824
Iteration: 7, Func. Count: 113, Neg. LLF: 92.78680540115565
Iteration: 8, Func. Count: 129, Neg. LLF: 92.63416107796827
Iteration: 9, Func. Count: 145, Neg. LLF: 90.59796749846282
Iteration: 10, Func. Count: 161, Neg. LLF: 90.02287018833474
Iteration: 11, Func. Count: 177, Neg. LLF: 91.10908738298416
Iteration: 12, Func. Count: 193, Neg. LLF: 89.75224960102526
Iteration: 13, Func. Count: 209, Neg. LLF: 89.41967541135662
Iteration: 14, Func. Count: 224, Neg. LLF: 89.41282406410413
Iteration: 15, Func. Count: 239, Neg. LLF: 89.40747307150097
Iteration: 16, Func. Count: 254, Neg. LLF: 89.40373009672182
Iteration: 17, Func. Count: 269, Neg. LLF: 89.40238575844042
Iteration: 18, Func. Count: 284, Neg. LLF: 89.40203498653528
Iteration: 19, Func. Count: 299, Neg. LLF: 89.99621925415805
Iteration: 20, Func. Count: 317, Neg. LLF: 89.4020035606954
Iteration: 21, Func. Count: 332, Neg. LLF: 89.40200043771137
Iteration: 22, Func. Count: 346, Neg. LLF: 89.40200043768826
Optimization terminated successfully (Exit mode 0)
Current function value: 89.40200043771137
Iterations: 22
Function evaluations: 346
Gradient evaluations: 22
Iteration: 1, Func. Count: 6, Neg. LLF: 21697748.18888223
Iteration: 2, Func. Count: 13, Neg. LLF: 102.88098393599101
Iteration: 3, Func. Count: 19, Neg. LLF: 98.11052162900324
Iteration: 4, Func. Count: 25, Neg. LLF: 96.5477911428679
Iteration: 5, Func. Count: 31, Neg. LLF: 96.09262052095863
Iteration: 6, Func. Count: 37, Neg. LLF: 92.76725068548068
Iteration: 7, Func. Count: 42, Neg. LLF: 95.25156113615144
Iteration: 8, Func. Count: 48, Neg. LLF: 94.01682299276864
Iteration: 9, Func. Count: 54, Neg. LLF: 91.60234751098518
Iteration: 10, Func. Count: 59, Neg. LLF: 91.65070788664673
Iteration: 11, Func. Count: 65, Neg. LLF: 91.5948885743435
Iteration: 12, Func. Count: 70, Neg. LLF: 91.59486379217331
Iteration: 13, Func. Count: 74, Neg. LLF: 91.59486379217574
Optimization terminated successfully (Exit mode 0)
Current function value: 91.59486379217331
Iterations: 13
Function evaluations: 74
Gradient evaluations: 13
Iteration: 1, Func. Count: 5, Neg. LLF: 128.8927488023326
Iteration: 2, Func. Count: 12, Neg. LLF: 96.7272687486875
Iteration: 3, Func. Count: 17, Neg. LLF: 94.58851564892306
Iteration: 4, Func. Count: 21, Neg. LLF: 94.56995203694913
Iteration: 5, Func. Count: 25, Neg. LLF: 94.56259706741358
Iteration: 6, Func. Count: 29, Neg. LLF: 94.5624773399384
Iteration: 7, Func. Count: 34, Neg. LLF: 94.56222251228678
Iteration: 8, Func. Count: 37, Neg. LLF: 94.56222261015024
Optimization terminated successfully (Exit mode 0)
Current function value: 94.56222251228678
Iterations: 8
Function evaluations: 37
Gradient evaluations: 8
Iteration: 1, Func. Count: 6, Neg. LLF: 69301367.35615648
Iteration: 2, Func. Count: 13, Neg. LLF: 385775077.29206556
Iteration: 3, Func. Count: 20, Neg. LLF: 277.12324376867934
Iteration: 4, Func. Count: 26, Neg. LLF: 216.21888311800421
Iteration: 5, Func. Count: 32, Neg. LLF: 149.80661867053342
Iteration: 6, Func. Count: 38, Neg. LLF: 98.2434288993728
Iteration: 7, Func. Count: 44, Neg. LLF: 93.58842857655141
Iteration: 8, Func. Count: 50, Neg. LLF: 93.97122197997547
Iteration: 9, Func. Count: 56, Neg. LLF: 92.29297538068856
Iteration: 10, Func. Count: 62, Neg. LLF: 99.16724906155471
Iteration: 11, Func. Count: 68, Neg. LLF: 88.73846582977698
Iteration: 12, Func. Count: 73, Neg. LLF: 88.39875857359182
Iteration: 13, Func. Count: 78, Neg. LLF: 88.28030854216435
Iteration: 14, Func. Count: 83, Neg. LLF: 88.25881393837452
Iteration: 15, Func. Count: 88, Neg. LLF: 88.22471513705092
Iteration: 16, Func. Count: 93, Neg. LLF: 88.21335563177334
Iteration: 17, Func. Count: 98, Neg. LLF: 88.1644106324387
Iteration: 18, Func. Count: 103, Neg. LLF: 88.1019714562308
Iteration: 19, Func. Count: 108, Neg. LLF: 88.05856118746979
Iteration: 20, Func. Count: 113, Neg. LLF: 88.04817880421609
Iteration: 21, Func. Count: 118, Neg. LLF: 88.0330598302123
Iteration: 22, Func. Count: 123, Neg. LLF: 17936004.019677494
Iteration: 23, Func. Count: 132, Neg. LLF: 88.52711158151197
Iteration: 24, Func. Count: 139, Neg. LLF: 88.26786956913477
Iteration: 25, Func. Count: 146, Neg. LLF: 88.03284214921979
Iteration: 26, Func. Count: 150, Neg. LLF: 88.03284214922469
Optimization terminated successfully (Exit mode 0)
Current function value: 88.03284214921979
Iterations: 27
Function evaluations: 150
Gradient evaluations: 26
Iteration: 1, Func. Count: 7, Neg. LLF: 73887814.06602678
Iteration: 2, Func. Count: 15, Neg. LLF: 335671013.56914836
Iteration: 3, Func. Count: 23, Neg. LLF: 141.28950909920547
Iteration: 4, Func. Count: 30, Neg. LLF: 95.41546399143117
Iteration: 5, Func. Count: 37, Neg. LLF: 90.93305296406706
Iteration: 6, Func. Count: 44, Neg. LLF: 88.7023221142496
Iteration: 7, Func. Count: 50, Neg. LLF: 88.22594778918756
Iteration: 8, Func. Count: 56, Neg. LLF: 88.1080761901571
Iteration: 9, Func. Count: 62, Neg. LLF: 87.95407548576411
Iteration: 10, Func. Count: 68, Neg. LLF: 87.94112877844996
Iteration: 11, Func. Count: 74, Neg. LLF: 87.93329356023375
Iteration: 12, Func. Count: 80, Neg. LLF: 87.93313589296858
Iteration: 13, Func. Count: 86, Neg. LLF: 87.93313468524657
Iteration: 14, Func. Count: 91, Neg. LLF: 87.93313468529443
Optimization terminated successfully (Exit mode 0)
Current function value: 87.93313468524657
Iterations: 14
Function evaluations: 91
Gradient evaluations: 14
Iteration: 1, Func. Count: 8, Neg. LLF: 20164365.634297986
Iteration: 2, Func. Count: 16, Neg. LLF: 123.02440318686295
Iteration: 3, Func. Count: 24, Neg. LLF: 108.11552739628176
Iteration: 4, Func. Count: 32, Neg. LLF: 89.54760397040309
Iteration: 5, Func. Count: 39, Neg. LLF: 110.9528943756103
Iteration: 6, Func. Count: 47, Neg. LLF: 88.65239794779069
Iteration: 7, Func. Count: 54, Neg. LLF: 91.09951270922737
Iteration: 8, Func. Count: 62, Neg. LLF: 88.40902709330818
Iteration: 9, Func. Count: 70, Neg. LLF: 88.2327291373996
Iteration: 10, Func. Count: 77, Neg. LLF: 88.15970301005893
Iteration: 11, Func. Count: 84, Neg. LLF: 87.93892165331195
Iteration: 12, Func. Count: 91, Neg. LLF: 128.01915314731318
Iteration: 13, Func. Count: 101, Neg. LLF: 88.17541229809298
Iteration: 14, Func. Count: 109, Neg. LLF: 88.40205110180077
Iteration: 15, Func. Count: 118, Neg. LLF: 87.93313628067477
Iteration: 16, Func. Count: 125, Neg. LLF: 87.93313468934177
Iteration: 17, Func. Count: 131, Neg. LLF: 87.9331347173854
Optimization terminated successfully (Exit mode 0)
Current function value: 87.93313468934177
Iterations: 18
Function evaluations: 131
Gradient evaluations: 17
Iteration: 1, Func. Count: 9, Neg. LLF: 20313226.351058114
Iteration: 2, Func. Count: 18, Neg. LLF: 127.64937092895313
Iteration: 3, Func. Count: 27, Neg. LLF: 107.65805501083709
Iteration: 4, Func. Count: 36, Neg. LLF: 104.91385650105126
Iteration: 5, Func. Count: 45, Neg. LLF: 95.2808265789727
Iteration: 6, Func. Count: 54, Neg. LLF: 89.59039887367463
Iteration: 7, Func. Count: 63, Neg. LLF: 88.12957139759558
Iteration: 8, Func. Count: 71, Neg. LLF: 88.41591653918613
Iteration: 9, Func. Count: 80, Neg. LLF: 88.06305877069373
Iteration: 10, Func. Count: 89, Neg. LLF: 87.99223986831771
Iteration: 11, Func. Count: 98, Neg. LLF: 87.96959841585094
Iteration: 12, Func. Count: 106, Neg. LLF: 87.96953685088002
Iteration: 13, Func. Count: 114, Neg. LLF: 87.96951869240182
Iteration: 14, Func. Count: 122, Neg. LLF: 87.96951643455753
Iteration: 15, Func. Count: 129, Neg. LLF: 87.9695164345858
Optimization terminated successfully (Exit mode 0)
Current function value: 87.96951643455753
Iterations: 15
Function evaluations: 129
Gradient evaluations: 15
Iteration: 1, Func. Count: 6, Neg. LLF: 128.3564203370376
Iteration: 2, Func. Count: 14, Neg. LLF: 96.46979882059291
Iteration: 3, Func. Count: 19, Neg. LLF: 94.78566928440591
Iteration: 4, Func. Count: 24, Neg. LLF: 94.59308736262594
Iteration: 5, Func. Count: 29, Neg. LLF: 94.56331386789331
Iteration: 6, Func. Count: 34, Neg. LLF: 94.5622490861246
Iteration: 7, Func. Count: 39, Neg. LLF: 94.5622224965961
Iteration: 8, Func. Count: 43, Neg. LLF: 94.56222252026853
Optimization terminated successfully (Exit mode 0)
Current function value: 94.5622224965961
Iterations: 8
Function evaluations: 43
Gradient evaluations: 8
Iteration: 1, Func. Count: 7, Neg. LLF: 71162501.92138204
Iteration: 2, Func. Count: 15, Neg. LLF: 366121296.983557
Iteration: 3, Func. Count: 23, Neg. LLF: 330.0590447198806
Iteration: 4, Func. Count: 30, Neg. LLF: 305.3927297460401
Iteration: 5, Func. Count: 37, Neg. LLF: 222.22784381172826
Iteration: 6, Func. Count: 44, Neg. LLF: 105.54471323677494
Iteration: 7, Func. Count: 51, Neg. LLF: 91.83110565532762
Iteration: 8, Func. Count: 58, Neg. LLF: 94.1053751253512
Iteration: 9, Func. Count: 65, Neg. LLF: 89.66723357673335
Iteration: 10, Func. Count: 71, Neg. LLF: 89.34152448647203
Iteration: 11, Func. Count: 77, Neg. LLF: 89.22875650316604
Iteration: 12, Func. Count: 83, Neg. LLF: 88.60620934414035
Iteration: 13, Func. Count: 89, Neg. LLF: 88.11687030971845
Iteration: 14, Func. Count: 95, Neg. LLF: 88.08833579929599
Iteration: 15, Func. Count: 101, Neg. LLF: 88.0831629606098
Iteration: 16, Func. Count: 108, Neg. LLF: 88.0333888900462
Iteration: 17, Func. Count: 114, Neg. LLF: 88.03286517091983
Iteration: 18, Func. Count: 120, Neg. LLF: 88.03284218965935
Iteration: 19, Func. Count: 125, Neg. LLF: 88.032842190042
Optimization terminated successfully (Exit mode 0)
Current function value: 88.03284218965935
Iterations: 19
Function evaluations: 125
Gradient evaluations: 19
Iteration: 1, Func. Count: 8, Neg. LLF: 86637129.50268264
Iteration: 2, Func. Count: 17, Neg. LLF: 291928785.83959293
Iteration: 3, Func. Count: 26, Neg. LLF: 167.9730156007068
Iteration: 4, Func. Count: 34, Neg. LLF: 114.1839161615883
Iteration: 5, Func. Count: 42, Neg. LLF: 97.06870775675274
Iteration: 6, Func. Count: 50, Neg. LLF: 93.85462994467753
Iteration: 7, Func. Count: 58, Neg. LLF: 91.54296658181075
Iteration: 8, Func. Count: 66, Neg. LLF: 89.36036512465297
Iteration: 9, Func. Count: 73, Neg. LLF: 88.82275182472992
Iteration: 10, Func. Count: 80, Neg. LLF: 88.56631450617101
Iteration: 11, Func. Count: 87, Neg. LLF: 89.86516452991063
Iteration: 12, Func. Count: 95, Neg. LLF: 88.10984553925172
Iteration: 13, Func. Count: 102, Neg. LLF: 87.96221384893298
Iteration: 14, Func. Count: 109, Neg. LLF: 87.9717841441249
Iteration: 15, Func. Count: 117, Neg. LLF: 87.93910171360217
Iteration: 16, Func. Count: 124, Neg. LLF: 87.932854014288
Iteration: 17, Func. Count: 131, Neg. LLF: 87.9319987427291
Iteration: 18, Func. Count: 138, Neg. LLF: 87.93198858175903
Iteration: 19, Func. Count: 144, Neg. LLF: 87.93198858212449
Optimization terminated successfully (Exit mode 0)
Current function value: 87.93198858175903
Iterations: 19
Function evaluations: 144
Gradient evaluations: 19
Iteration: 1, Func. Count: 9, Neg. LLF: 20526793.537162896
Iteration: 2, Func. Count: 18, Neg. LLF: 10380162.046449473
Iteration: 3, Func. Count: 28, Neg. LLF: 275.36703770438805
Iteration: 4, Func. Count: 37, Neg. LLF: 124.40257630014213
Iteration: 5, Func. Count: 46, Neg. LLF: 111.0005144408719
Iteration: 6, Func. Count: 55, Neg. LLF: 102.7249936863611
Iteration: 7, Func. Count: 64, Neg. LLF: 98.20430358262249
Iteration: 8, Func. Count: 73, Neg. LLF: 90.55036725173395
Iteration: 9, Func. Count: 82, Neg. LLF: 102.27683681665685
Iteration: 10, Func. Count: 91, Neg. LLF: 89.45991486001486
Iteration: 11, Func. Count: 100, Neg. LLF: 88.34508228955961
Iteration: 12, Func. Count: 108, Neg. LLF: 88.39296446655507
Iteration: 13, Func. Count: 117, Neg. LLF: 88.50728802603582
Iteration: 14, Func. Count: 126, Neg. LLF: 88.19155856276001
Iteration: 15, Func. Count: 135, Neg. LLF: 88.16371586822231
Iteration: 16, Func. Count: 143, Neg. LLF: 88.1481197149487
Iteration: 17, Func. Count: 151, Neg. LLF: 88.0939065251667
Iteration: 18, Func. Count: 159, Neg. LLF: 88.03357344105146
Iteration: 19, Func. Count: 167, Neg. LLF: 88.03298235957331
Iteration: 20, Func. Count: 175, Neg. LLF: 88.03284687917963
Iteration: 21, Func. Count: 183, Neg. LLF: 88.03284420346537
Iteration: 22, Func. Count: 191, Neg. LLF: 88.03284220972523
Iteration: 23, Func. Count: 198, Neg. LLF: 88.03284221868182
Optimization terminated successfully (Exit mode 0)
Current function value: 88.03284220972523
Iterations: 23
Function evaluations: 198
Gradient evaluations: 23
Iteration: 1, Func. Count: 10, Neg. LLF: 20626781.02101429
Iteration: 2, Func. Count: 20, Neg. LLF: 10385576.508176256
Iteration: 3, Func. Count: 31, Neg. LLF: 1171.787851557921
Iteration: 4, Func. Count: 41, Neg. LLF: 105.30027119785905
Iteration: 5, Func. Count: 51, Neg. LLF: 104.1730915140087
Iteration: 6, Func. Count: 61, Neg. LLF: 98.67420628302324
Iteration: 7, Func. Count: 71, Neg. LLF: 88.17872819869504
Iteration: 8, Func. Count: 80, Neg. LLF: 88.25493476453241
Iteration: 9, Func. Count: 90, Neg. LLF: 90.11484333421926
Iteration: 10, Func. Count: 101, Neg. LLF: 87.41881091187966
Iteration: 11, Func. Count: 110, Neg. LLF: 87.40279140611693
Iteration: 12, Func. Count: 119, Neg. LLF: 87.40233990436548
Iteration: 13, Func. Count: 128, Neg. LLF: 87.40232912428493
Iteration: 14, Func. Count: 137, Neg. LLF: 87.40232669519847
Iteration: 15, Func. Count: 146, Neg. LLF: 87.40232552514775
Iteration: 16, Func. Count: 154, Neg. LLF: 87.40232552502984
Optimization terminated successfully (Exit mode 0)
Current function value: 87.40232552514775
Iterations: 16
Function evaluations: 154
Gradient evaluations: 16
Iteration: 1, Func. Count: 7, Neg. LLF: 138.8662811925709
Iteration: 2, Func. Count: 16, Neg. LLF: 324860994.31337607
Iteration: 3, Func. Count: 24, Neg. LLF: 6420947.916321886
Iteration: 4, Func. Count: 31, Neg. LLF: 3523421.382618736
Iteration: 5, Func. Count: 38, Neg. LLF: 3513887.7133802054
Iteration: 6, Func. Count: 45, Neg. LLF: 91.03825385792737
Iteration: 7, Func. Count: 52, Neg. LLF: 89.65801903331678
Iteration: 8, Func. Count: 58, Neg. LLF: 93.36873686065229
Iteration: 9, Func. Count: 66, Neg. LLF: 89.60566469006847
Iteration: 10, Func. Count: 72, Neg. LLF: 89.51514674159992
Iteration: 11, Func. Count: 78, Neg. LLF: 89.5029432858783
Iteration: 12, Func. Count: 84, Neg. LLF: 89.49163614523326
Iteration: 13, Func. Count: 90, Neg. LLF: 89.48430569357275
Iteration: 14, Func. Count: 96, Neg. LLF: 89.48402869618225
Iteration: 15, Func. Count: 102, Neg. LLF: 89.48401555153696
Iteration: 16, Func. Count: 108, Neg. LLF: 89.48401051087582
Iteration: 17, Func. Count: 113, Neg. LLF: 89.48401051088263
Optimization terminated successfully (Exit mode 0)
Current function value: 89.48401051087582
Iterations: 17
Function evaluations: 113
Gradient evaluations: 17
Iteration: 1, Func. Count: 8, Neg. LLF: 57936924.719823144
Iteration: 2, Func. Count: 17, Neg. LLF: 377403078.18124896
Iteration: 3, Func. Count: 26, Neg. LLF: 100.97789799447801
Iteration: 4, Func. Count: 34, Neg. LLF: 89.14269389362748
Iteration: 5, Func. Count: 41, Neg. LLF: 91.21261461545961
Iteration: 6, Func. Count: 49, Neg. LLF: 93.86015214143117
Iteration: 7, Func. Count: 57, Neg. LLF: 96.85003719255275
Iteration: 8, Func. Count: 65, Neg. LLF: 93.10612350970813
Iteration: 9, Func. Count: 73, Neg. LLF: 90.95561331427483
Iteration: 10, Func. Count: 81, Neg. LLF: 89.34399670429698
Iteration: 11, Func. Count: 89, Neg. LLF: 89.24065784557874
Iteration: 12, Func. Count: 97, Neg. LLF: 90.03609147444274
Iteration: 13, Func. Count: 105, Neg. LLF: 89.14352217811901
Iteration: 14, Func. Count: 113, Neg. LLF: 89.0791880040124
Iteration: 15, Func. Count: 121, Neg. LLF: 89.06252114590333
Iteration: 16, Func. Count: 129, Neg. LLF: 88.61748624255328
Iteration: 17, Func. Count: 136, Neg. LLF: 90.65655654703917
Iteration: 18, Func. Count: 144, Neg. LLF: 88.27031540380236
Iteration: 19, Func. Count: 151, Neg. LLF: 88.22840924925602
Iteration: 20, Func. Count: 159, Neg. LLF: 88.0348482526027
Iteration: 21, Func. Count: 166, Neg. LLF: 88.0328631323169
Iteration: 22, Func. Count: 173, Neg. LLF: 88.03284224153239
Iteration: 23, Func. Count: 179, Neg. LLF: 88.03284224153316
Optimization terminated successfully (Exit mode 0)
Current function value: 88.03284224153239
Iterations: 23
Function evaluations: 179
Gradient evaluations: 23
Iteration: 1, Func. Count: 9, Neg. LLF: 71510658.75567204
Iteration: 2, Func. Count: 19, Neg. LLF: 304066526.4548632
Iteration: 3, Func. Count: 29, Neg. LLF: 108.64716634692145
Iteration: 4, Func. Count: 38, Neg. LLF: 90.24362335846442
Iteration: 5, Func. Count: 47, Neg. LLF: 89.2032961827911
Iteration: 6, Func. Count: 56, Neg. LLF: 91.3409540427231
Iteration: 7, Func. Count: 65, Neg. LLF: 89.3745907717764
Iteration: 8, Func. Count: 74, Neg. LLF: 88.64824300000072
Iteration: 9, Func. Count: 83, Neg. LLF: 88.16807506543705
Iteration: 10, Func. Count: 91, Neg. LLF: 88.16569444906489
Iteration: 11, Func. Count: 99, Neg. LLF: 88.16494738630624
Iteration: 12, Func. Count: 107, Neg. LLF: 88.1639279959292
Iteration: 13, Func. Count: 115, Neg. LLF: 88.1637279726414
Iteration: 14, Func. Count: 123, Neg. LLF: 88.1637133026072
Iteration: 15, Func. Count: 130, Neg. LLF: 88.16371330250041
Optimization terminated successfully (Exit mode 0)
Current function value: 88.1637133026072
Iterations: 15
Function evaluations: 130
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 14191696.217493888
Iteration: 2, Func. Count: 20, Neg. LLF: 7096826.695221232
Iteration: 3, Func. Count: 30, Neg. LLF: 112.2209298869476
Iteration: 4, Func. Count: 41, Neg. LLF: 128.00105655756275
Iteration: 5, Func. Count: 51, Neg. LLF: 87.84149560528519
Iteration: 6, Func. Count: 60, Neg. LLF: 90.99538036245605
Iteration: 7, Func. Count: 70, Neg. LLF: 87.9035037720918
Iteration: 8, Func. Count: 80, Neg. LLF: 89.79890084292744
Iteration: 9, Func. Count: 90, Neg. LLF: 90.06749234293784
Iteration: 10, Func. Count: 100, Neg. LLF: 89.50317951019693
Iteration: 11, Func. Count: 110, Neg. LLF: 87.59324467980792
Iteration: 12, Func. Count: 120, Neg. LLF: 87.39017763890048
Iteration: 13, Func. Count: 130, Neg. LLF: 87.31995121209583
Iteration: 14, Func. Count: 139, Neg. LLF: 87.3172056005352
Iteration: 15, Func. Count: 148, Neg. LLF: 87.32009155804963
Iteration: 16, Func. Count: 158, Neg. LLF: 87.3134694412286
Iteration: 17, Func. Count: 167, Neg. LLF: 87.31284403737294
Iteration: 18, Func. Count: 176, Neg. LLF: 87.31252030326144
Iteration: 19, Func. Count: 185, Neg. LLF: 87.31250917489652
Iteration: 20, Func. Count: 194, Neg. LLF: 87.31250711071759
Iteration: 21, Func. Count: 202, Neg. LLF: 87.31250711072465
Optimization terminated successfully (Exit mode 0)
Current function value: 87.31250711071759
Iterations: 21
Function evaluations: 202
Gradient evaluations: 21
Iteration: 1, Func. Count: 11, Neg. LLF: 15674626.542405095
Iteration: 2, Func. Count: 22, Neg. LLF: 6321693.128340655
Iteration: 3, Func. Count: 33, Neg. LLF: 852573.2473824972
Iteration: 4, Func. Count: 44, Neg. LLF: 214.54294539320398
Iteration: 5, Func. Count: 55, Neg. LLF: 119.59657330559594
Iteration: 6, Func. Count: 66, Neg. LLF: 91.45703148974617
Iteration: 7, Func. Count: 77, Neg. LLF: 86.94479315891404
Iteration: 8, Func. Count: 87, Neg. LLF: 94.7732819364668
Iteration: 9, Func. Count: 98, Neg. LLF: 88.93153341972912
Iteration: 10, Func. Count: 109, Neg. LLF: 86.70156998828499
Iteration: 11, Func. Count: 119, Neg. LLF: 86.7122401374084
Iteration: 12, Func. Count: 130, Neg. LLF: 86.66952580673825
Iteration: 13, Func. Count: 140, Neg. LLF: 86.65840649755425
Iteration: 14, Func. Count: 150, Neg. LLF: 86.65825476204861
Iteration: 15, Func. Count: 160, Neg. LLF: 86.65821871966438
Iteration: 16, Func. Count: 170, Neg. LLF: 86.65821351663989
Iteration: 17, Func. Count: 180, Neg. LLF: 86.65821243856206
Iteration: 18, Func. Count: 189, Neg. LLF: 86.65821243861105
Optimization terminated successfully (Exit mode 0)
Current function value: 86.65821243856206
Iterations: 18
Function evaluations: 189
Gradient evaluations: 18
Iteration: 1, Func. Count: 8, Neg. LLF: 142.9837315773925
Iteration: 2, Func. Count: 18, Neg. LLF: 361006504.0149433
Iteration: 3, Func. Count: 27, Neg. LLF: 6494437.493119734
Iteration: 4, Func. Count: 35, Neg. LLF: 3548107.7375557665
Iteration: 5, Func. Count: 43, Neg. LLF: 3517518.6349617923
Iteration: 6, Func. Count: 51, Neg. LLF: 90.46024734218229
Iteration: 7, Func. Count: 59, Neg. LLF: 89.65925033627087
Iteration: 8, Func. Count: 66, Neg. LLF: 89.58750807359586
Iteration: 9, Func. Count: 73, Neg. LLF: 91.24924518128626
Iteration: 10, Func. Count: 82, Neg. LLF: 89.71462782825313
Iteration: 11, Func. Count: 90, Neg. LLF: 89.52513163683841
Iteration: 12, Func. Count: 97, Neg. LLF: 89.61002343844268
Iteration: 13, Func. Count: 105, Neg. LLF: 89.48425479174205
Iteration: 14, Func. Count: 112, Neg. LLF: 89.48404179347892
Iteration: 15, Func. Count: 119, Neg. LLF: 89.48401204826041
Iteration: 16, Func. Count: 126, Neg. LLF: 89.48401034769678
Iteration: 17, Func. Count: 132, Neg. LLF: 89.48401036367102
Optimization terminated successfully (Exit mode 0)
Current function value: 89.48401034769678
Iterations: 17
Function evaluations: 132
Gradient evaluations: 17
Iteration: 1, Func. Count: 9, Neg. LLF: 58351585.16462638
Iteration: 2, Func. Count: 19, Neg. LLF: 368258421.23984116
Iteration: 3, Func. Count: 29, Neg. LLF: 97.4611265832349
Iteration: 4, Func. Count: 38, Neg. LLF: 89.39595241895887
Iteration: 5, Func. Count: 46, Neg. LLF: 89.22270955464136
Iteration: 6, Func. Count: 54, Neg. LLF: 89.60249112589204
Iteration: 7, Func. Count: 63, Neg. LLF: 89.07685000585118
Iteration: 8, Func. Count: 71, Neg. LLF: 89.03504312303214
Iteration: 9, Func. Count: 79, Neg. LLF: 89.02077301041369
Iteration: 10, Func. Count: 87, Neg. LLF: 89.02860943808373
Iteration: 11, Func. Count: 96, Neg. LLF: 89.00920796005235
Iteration: 12, Func. Count: 104, Neg. LLF: 89.00851474241598
Iteration: 13, Func. Count: 112, Neg. LLF: 89.00841267582398
Iteration: 14, Func. Count: 120, Neg. LLF: 89.00840691349728
Iteration: 15, Func. Count: 127, Neg. LLF: 89.0084069134619
Optimization terminated successfully (Exit mode 0)
Current function value: 89.00840691349728
Iterations: 15
Function evaluations: 127
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 73675001.6836016
Iteration: 2, Func. Count: 21, Neg. LLF: 300292319.3003101
Iteration: 3, Func. Count: 32, Neg. LLF: 113.11348608386915
Iteration: 4, Func. Count: 42, Neg. LLF: 90.25190750332085
Iteration: 5, Func. Count: 52, Neg. LLF: 89.1911116797378
Iteration: 6, Func. Count: 62, Neg. LLF: 91.32786381619448
Iteration: 7, Func. Count: 72, Neg. LLF: 88.22856274920754
Iteration: 8, Func. Count: 81, Neg. LLF: 90.4932012886678
Iteration: 9, Func. Count: 91, Neg. LLF: 88.16777009304477
Iteration: 10, Func. Count: 100, Neg. LLF: 88.16497886688151
Iteration: 11, Func. Count: 109, Neg. LLF: 88.16443899681376
Iteration: 12, Func. Count: 118, Neg. LLF: 88.16399503788301
Iteration: 13, Func. Count: 127, Neg. LLF: 88.16374074786859
Iteration: 14, Func. Count: 136, Neg. LLF: 88.16371497044143
Iteration: 15, Func. Count: 145, Neg. LLF: 88.1637130838786
Iteration: 16, Func. Count: 153, Neg. LLF: 88.16371308386981
Optimization terminated successfully (Exit mode 0)
Current function value: 88.1637130838786
Iterations: 16
Function evaluations: 153
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 14922801.907740492
Iteration: 2, Func. Count: 22, Neg. LLF: 7153873.743985386
Iteration: 3, Func. Count: 33, Neg. LLF: 100.13765374965813
Iteration: 4, Func. Count: 44, Neg. LLF: 178.26711431694045
Iteration: 5, Func. Count: 55, Neg. LLF: 87.77469845978004
Iteration: 6, Func. Count: 65, Neg. LLF: 88.13460629937836
Iteration: 7, Func. Count: 76, Neg. LLF: 89.70081660642809
Iteration: 8, Func. Count: 88, Neg. LLF: 87.46264031051435
Iteration: 9, Func. Count: 98, Neg. LLF: 88.74107114530193
Iteration: 10, Func. Count: 109, Neg. LLF: 87.43572423121229
Iteration: 11, Func. Count: 120, Neg. LLF: 87.42091489139881
Iteration: 12, Func. Count: 131, Neg. LLF: 87.31599774004697
Iteration: 13, Func. Count: 141, Neg. LLF: 87.3131367500455
Iteration: 14, Func. Count: 151, Neg. LLF: 87.31289465553701
Iteration: 15, Func. Count: 161, Neg. LLF: 87.31273560890946
Iteration: 16, Func. Count: 171, Neg. LLF: 87.3126492894995
Iteration: 17, Func. Count: 181, Neg. LLF: 87.31253485891492
Iteration: 18, Func. Count: 191, Neg. LLF: 87.31250989250334
Iteration: 19, Func. Count: 201, Neg. LLF: 87.31250715112101
Iteration: 20, Func. Count: 210, Neg. LLF: 87.31250715114642
Optimization terminated successfully (Exit mode 0)
Current function value: 87.31250715112101
Iterations: 20
Function evaluations: 210
Gradient evaluations: 20
Iteration: 1, Func. Count: 12, Neg. LLF: 15480622.156761512
Iteration: 2, Func. Count: 24, Neg. LLF: 6553313.327045971
Iteration: 3, Func. Count: 36, Neg. LLF: 2156881.30530757
Iteration: 4, Func. Count: 48, Neg. LLF: 200.6372935457638
Iteration: 5, Func. Count: 60, Neg. LLF: 103.9230982234817
Iteration: 6, Func. Count: 72, Neg. LLF: 91.10754045817875
Iteration: 7, Func. Count: 84, Neg. LLF: 86.9721754516931
Iteration: 8, Func. Count: 95, Neg. LLF: 96.18192371128214
Iteration: 9, Func. Count: 107, Neg. LLF: 87.24675203698295
Iteration: 10, Func. Count: 119, Neg. LLF: 86.71168567791231
Iteration: 11, Func. Count: 130, Neg. LLF: 86.67758934156346
Iteration: 12, Func. Count: 141, Neg. LLF: 86.66228213094472
Iteration: 13, Func. Count: 152, Neg. LLF: 86.65858355066044
Iteration: 14, Func. Count: 163, Neg. LLF: 86.65824929616556
Iteration: 15, Func. Count: 174, Neg. LLF: 86.65821634480689
Iteration: 16, Func. Count: 185, Neg. LLF: 86.65821246587015
Iteration: 17, Func. Count: 195, Neg. LLF: 86.65821246587738
Optimization terminated successfully (Exit mode 0)
Current function value: 86.65821246587015
Iterations: 17
Function evaluations: 195
Gradient evaluations: 17
Iteration: 1, Func. Count: 5, Neg. LLF: 148.4163184202636
Iteration: 2, Func. Count: 12, Neg. LLF: 150.55316847687345
Iteration: 3, Func. Count: 18, Neg. LLF: 94.62026555668264
Iteration: 4, Func. Count: 22, Neg. LLF: 94.56754229267334
Iteration: 5, Func. Count: 26, Neg. LLF: 94.56222927546516
Iteration: 6, Func. Count: 30, Neg. LLF: 94.56222342342946
Iteration: 7, Func. Count: 34, Neg. LLF: 94.56222248372566
Optimization terminated successfully (Exit mode 0)
Current function value: 94.56222248372566
Iterations: 7
Function evaluations: 34
Gradient evaluations: 7
Iteration: 1, Func. Count: 6, Neg. LLF: 56591894.587849826
Iteration: 2, Func. Count: 13, Neg. LLF: 541.1030720352331
Iteration: 3, Func. Count: 21, Neg. LLF: 142.42453792338767
Iteration: 4, Func. Count: 28, Neg. LLF: 89.83036017023284
Iteration: 5, Func. Count: 33, Neg. LLF: 89.88246895480381
Iteration: 6, Func. Count: 39, Neg. LLF: 89.0430475727783
Iteration: 7, Func. Count: 45, Neg. LLF: 88.2421648818121
Iteration: 8, Func. Count: 50, Neg. LLF: 88.07573503793289
Iteration: 9, Func. Count: 55, Neg. LLF: 88.07105980567779
Iteration: 10, Func. Count: 61, Neg. LLF: 88.03287361047008
Iteration: 11, Func. Count: 66, Neg. LLF: 88.03284381718532
Iteration: 12, Func. Count: 71, Neg. LLF: 88.03284215894797
Iteration: 13, Func. Count: 75, Neg. LLF: 88.03284215888984
Optimization terminated successfully (Exit mode 0)
Current function value: 88.03284215894797
Iterations: 13
Function evaluations: 75
Gradient evaluations: 13
Iteration: 1, Func. Count: 7, Neg. LLF: 40039597.68050242
Iteration: 2, Func. Count: 14, Neg. LLF: 150438770.967938
Iteration: 3, Func. Count: 22, Neg. LLF: 94.70513151526201
Iteration: 4, Func. Count: 29, Neg. LLF: 108.41205930954933
Iteration: 5, Func. Count: 36, Neg. LLF: 88.48937552898903
Iteration: 6, Func. Count: 42, Neg. LLF: 89.07435680654685
Iteration: 7, Func. Count: 49, Neg. LLF: 88.43397489531665
Iteration: 8, Func. Count: 56, Neg. LLF: 87.95580475318653
Iteration: 9, Func. Count: 62, Neg. LLF: 87.94811825413487
Iteration: 10, Func. Count: 68, Neg. LLF: 87.93344794884447
Iteration: 11, Func. Count: 74, Neg. LLF: 87.93329079688547
Iteration: 12, Func. Count: 80, Neg. LLF: 87.93313974627259
Iteration: 13, Func. Count: 86, Neg. LLF: 87.93313478450477
Iteration: 14, Func. Count: 91, Neg. LLF: 87.93313478482966
Optimization terminated successfully (Exit mode 0)
Current function value: 87.93313478450477
Iterations: 14
Function evaluations: 91
Gradient evaluations: 14
Iteration: 1, Func. Count: 8, Neg. LLF: 52088269.1506368
Iteration: 2, Func. Count: 17, Neg. LLF: 109.12869003721995
Iteration: 3, Func. Count: 25, Neg. LLF: 154.4851278666497
Iteration: 4, Func. Count: 33, Neg. LLF: 112.79856463357568
Iteration: 5, Func. Count: 41, Neg. LLF: 109.18133331506083
Iteration: 6, Func. Count: 49, Neg. LLF: 88.41251206525381
Iteration: 7, Func. Count: 56, Neg. LLF: 88.21463916360784
Iteration: 8, Func. Count: 63, Neg. LLF: 89.09961026805722
Iteration: 9, Func. Count: 72, Neg. LLF: 88.61584739545768
Iteration: 10, Func. Count: 80, Neg. LLF: 87.96842273201082
Iteration: 11, Func. Count: 87, Neg. LLF: 87.93557095518761
Iteration: 12, Func. Count: 94, Neg. LLF: 87.93357658384339
Iteration: 13, Func. Count: 101, Neg. LLF: 87.9331577841195
Iteration: 14, Func. Count: 108, Neg. LLF: 87.93313545352012
Iteration: 15, Func. Count: 115, Neg. LLF: 87.9331346906387
Optimization terminated successfully (Exit mode 0)
Current function value: 87.9331346906387
Iterations: 15
Function evaluations: 115
Gradient evaluations: 15
Iteration: 1, Func. Count: 9, Neg. LLF: 46406541.84261274
Iteration: 2, Func. Count: 18, Neg. LLF: 334799776.3981597
Iteration: 3, Func. Count: 29, Neg. LLF: 92.640773024581
Iteration: 4, Func. Count: 38, Neg. LLF: 107.82913251040279
Iteration: 5, Func. Count: 47, Neg. LLF: 88.2573799641249
Iteration: 6, Func. Count: 55, Neg. LLF: 89.0743110435258
Iteration: 7, Func. Count: 64, Neg. LLF: 88.07238485468015
Iteration: 8, Func. Count: 72, Neg. LLF: 88.02094703213633
Iteration: 9, Func. Count: 80, Neg. LLF: 87.9740886373356
Iteration: 10, Func. Count: 88, Neg. LLF: 87.96954657592465
Iteration: 11, Func. Count: 96, Neg. LLF: 87.96952124277257
Iteration: 12, Func. Count: 104, Neg. LLF: 87.96951811337782
Iteration: 13, Func. Count: 112, Neg. LLF: 87.9695169082235
Iteration: 14, Func. Count: 119, Neg. LLF: 87.96951690799793
Optimization terminated successfully (Exit mode 0)
Current function value: 87.9695169082235
Iterations: 14
Function evaluations: 119
Gradient evaluations: 14
Iteration: 1, Func. Count: 6, Neg. LLF: 148.6960095532056
Iteration: 2, Func. Count: 14, Neg. LLF: 174.69992851197858
Iteration: 3, Func. Count: 20, Neg. LLF: 92.22548118668155
Iteration: 4, Func. Count: 25, Neg. LLF: 92.16678819468733
Iteration: 5, Func. Count: 30, Neg. LLF: 92.16306128498417
Iteration: 6, Func. Count: 35, Neg. LLF: 92.16291523325049
Iteration: 7, Func. Count: 40, Neg. LLF: 92.16291340628659
Iteration: 8, Func. Count: 44, Neg. LLF: 92.16291350994834
Optimization terminated successfully (Exit mode 0)
Current function value: 92.16291340628659
Iterations: 8
Function evaluations: 44
Gradient evaluations: 8
Iteration: 1, Func. Count: 7, Neg. LLF: 48608727.832249366
Iteration: 2, Func. Count: 15, Neg. LLF: 554.6533345533595
Iteration: 3, Func. Count: 23, Neg. LLF: 150.71373573458249
Iteration: 4, Func. Count: 31, Neg. LLF: 90.11983570245417
Iteration: 5, Func. Count: 37, Neg. LLF: 90.33942149734672
Iteration: 6, Func. Count: 44, Neg. LLF: 91.73532514716129
Iteration: 7, Func. Count: 51, Neg. LLF: 88.60940732103295
Iteration: 8, Func. Count: 57, Neg. LLF: 88.25321769499696
Iteration: 9, Func. Count: 63, Neg. LLF: 88.24097742609432
Iteration: 10, Func. Count: 70, Neg. LLF: 88.04663100774891
Iteration: 11, Func. Count: 76, Neg. LLF: 88.03352022429358
Iteration: 12, Func. Count: 82, Neg. LLF: 88.03285294559895
Iteration: 13, Func. Count: 88, Neg. LLF: 88.03284225081856
Iteration: 14, Func. Count: 93, Neg. LLF: 88.03284225129356
Optimization terminated successfully (Exit mode 0)
Current function value: 88.03284225081856
Iterations: 14
Function evaluations: 93
Gradient evaluations: 14
Iteration: 1, Func. Count: 8, Neg. LLF: 26273453.505865306
Iteration: 2, Func. Count: 17, Neg. LLF: 162.64970875676337
Iteration: 3, Func. Count: 25, Neg. LLF: 127.37961988840352
Iteration: 4, Func. Count: 33, Neg. LLF: 89.06816812828798
Iteration: 5, Func. Count: 40, Neg. LLF: 92.97394153317758
Iteration: 6, Func. Count: 49, Neg. LLF: 88.11589924051208
Iteration: 7, Func. Count: 56, Neg. LLF: 88.05272737722636
Iteration: 8, Func. Count: 63, Neg. LLF: 88.03101211080168
Iteration: 9, Func. Count: 71, Neg. LLF: 87.93536610975349
Iteration: 10, Func. Count: 78, Neg. LLF: 87.93385661010294
Iteration: 11, Func. Count: 85, Neg. LLF: 87.93323633120231
Iteration: 12, Func. Count: 92, Neg. LLF: 87.93314272888045
Iteration: 13, Func. Count: 99, Neg. LLF: 87.9331347884802
Iteration: 14, Func. Count: 105, Neg. LLF: 87.93313478816025
Optimization terminated successfully (Exit mode 0)
Current function value: 87.9331347884802
Iterations: 14
Function evaluations: 105
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 27345647.07752505
Iteration: 2, Func. Count: 18, Neg. LLF: 1651.7436355301681
Iteration: 3, Func. Count: 28, Neg. LLF: 96.38815378900202
Iteration: 4, Func. Count: 37, Neg. LLF: 100.84192378594183
Iteration: 5, Func. Count: 46, Neg. LLF: 88.43059743399021
Iteration: 6, Func. Count: 54, Neg. LLF: 88.26806176505667
Iteration: 7, Func. Count: 62, Neg. LLF: 88.42286795668582
Iteration: 8, Func. Count: 71, Neg. LLF: 87.96887870711144
Iteration: 9, Func. Count: 79, Neg. LLF: 87.94516291442973
Iteration: 10, Func. Count: 87, Neg. LLF: 87.93390771891914
Iteration: 11, Func. Count: 95, Neg. LLF: 87.93314690403004
Iteration: 12, Func. Count: 103, Neg. LLF: 87.93313472141892
Iteration: 13, Func. Count: 110, Neg. LLF: 87.93313474938223
Optimization terminated successfully (Exit mode 0)
Current function value: 87.93313472141892
Iterations: 13
Function evaluations: 110
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 44315331.10070577
Iteration: 2, Func. Count: 20, Neg. LLF: 102998956.57837388
Iteration: 3, Func. Count: 31, Neg. LLF: 90.05279871109745
Iteration: 4, Func. Count: 40, Neg. LLF: 98.31230865484923
Iteration: 5, Func. Count: 50, Neg. LLF: 98.56978899824821
Iteration: 6, Func. Count: 61, Neg. LLF: 88.05677925811437
Iteration: 7, Func. Count: 70, Neg. LLF: 88.77959124622075
Iteration: 8, Func. Count: 80, Neg. LLF: 88.4421817406697
Iteration: 9, Func. Count: 90, Neg. LLF: 87.97775662527181
Iteration: 10, Func. Count: 99, Neg. LLF: 87.9637252528567
Iteration: 11, Func. Count: 108, Neg. LLF: 87.95921887406156
Iteration: 12, Func. Count: 117, Neg. LLF: 87.958241839633
Iteration: 13, Func. Count: 126, Neg. LLF: 87.95803674172915
Iteration: 14, Func. Count: 135, Neg. LLF: 87.95801390451713
Iteration: 15, Func. Count: 144, Neg. LLF: 87.95801264008055
Iteration: 16, Func. Count: 152, Neg. LLF: 87.95801264005696
Optimization terminated successfully (Exit mode 0)
Current function value: 87.95801264008055
Iterations: 16
Function evaluations: 152
Gradient evaluations: 16
Iteration: 1, Func. Count: 7, Neg. LLF: 153.4508784422685
Iteration: 2, Func. Count: 16, Neg. LLF: 138.3662655482932
Iteration: 3, Func. Count: 24, Neg. LLF: 92.73496931885823
Iteration: 4, Func. Count: 30, Neg. LLF: 93.59076680054265
Iteration: 5, Func. Count: 38, Neg. LLF: 99.53676871635108
Iteration: 6, Func. Count: 48, Neg. LLF: 93.40376477820169
Iteration: 7, Func. Count: 55, Neg. LLF: 92.16094080814399
Iteration: 8, Func. Count: 61, Neg. LLF: 92.1406761539011
Iteration: 9, Func. Count: 67, Neg. LLF: 92.13230479116656
Iteration: 10, Func. Count: 73, Neg. LLF: 92.1317888943863
Iteration: 11, Func. Count: 79, Neg. LLF: 92.13173319815316
Iteration: 12, Func. Count: 85, Neg. LLF: 92.1317260956042
Iteration: 13, Func. Count: 90, Neg. LLF: 92.13172609563615
Optimization terminated successfully (Exit mode 0)
Current function value: 92.1317260956042
Iterations: 13
Function evaluations: 90
Gradient evaluations: 13
Iteration: 1, Func. Count: 8, Neg. LLF: 59821947.379987344
Iteration: 2, Func. Count: 17, Neg. LLF: 375897410.42389965
Iteration: 3, Func. Count: 26, Neg. LLF: 316.2505060110831
Iteration: 4, Func. Count: 34, Neg. LLF: 258.94207915693835
Iteration: 5, Func. Count: 42, Neg. LLF: 172.66341741196615
Iteration: 6, Func. Count: 50, Neg. LLF: 138.38569265256592
Iteration: 7, Func. Count: 58, Neg. LLF: 94.64039483375586
Iteration: 8, Func. Count: 66, Neg. LLF: 90.10916339458367
Iteration: 9, Func. Count: 74, Neg. LLF: 90.10612729587028
Iteration: 10, Func. Count: 82, Neg. LLF: 89.52583786596752
Iteration: 11, Func. Count: 90, Neg. LLF: 89.72143711469278
Iteration: 12, Func. Count: 98, Neg. LLF: 89.42368797009364
Iteration: 13, Func. Count: 106, Neg. LLF: 88.70223553818269
Iteration: 14, Func. Count: 113, Neg. LLF: 88.26649858627877
Iteration: 15, Func. Count: 120, Neg. LLF: 88.17306672300322
Iteration: 16, Func. Count: 127, Neg. LLF: 88.24859465429897
Iteration: 17, Func. Count: 135, Neg. LLF: 88.03727221413946
Iteration: 18, Func. Count: 142, Neg. LLF: 88.03307860888441
Iteration: 19, Func. Count: 149, Neg. LLF: 88.03284393349749
Iteration: 20, Func. Count: 156, Neg. LLF: 88.03284216654448
Iteration: 21, Func. Count: 162, Neg. LLF: 88.0328421665797
Optimization terminated successfully (Exit mode 0)
Current function value: 88.03284216654448
Iterations: 21
Function evaluations: 162
Gradient evaluations: 21
Iteration: 1, Func. Count: 9, Neg. LLF: 19236087.836516
Iteration: 2, Func. Count: 19, Neg. LLF: 333.2416493505386
Iteration: 3, Func. Count: 28, Neg. LLF: 139.00468781330275
Iteration: 4, Func. Count: 37, Neg. LLF: 90.42424025413291
Iteration: 5, Func. Count: 46, Neg. LLF: 91.23103567913478
Iteration: 6, Func. Count: 55, Neg. LLF: 88.023487475402
Iteration: 7, Func. Count: 63, Neg. LLF: 95.27123880285399
Iteration: 8, Func. Count: 72, Neg. LLF: 88.01777335088114
Iteration: 9, Func. Count: 81, Neg. LLF: 87.93900245546506
Iteration: 10, Func. Count: 89, Neg. LLF: 87.93695665117085
Iteration: 11, Func. Count: 97, Neg. LLF: 87.93383722500883
Iteration: 12, Func. Count: 105, Neg. LLF: 87.93305198044752
Iteration: 13, Func. Count: 113, Neg. LLF: 87.9320464122977
Iteration: 14, Func. Count: 121, Neg. LLF: 87.9319831109554
Iteration: 15, Func. Count: 129, Neg. LLF: 87.93198973457018
Iteration: 16, Func. Count: 138, Neg. LLF: 87.93198710307495
Optimization terminated successfully (Exit mode 0)
Current function value: 87.93198710307495
Iterations: 16
Function evaluations: 138
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 19827731.862214446
Iteration: 2, Func. Count: 20, Neg. LLF: 244.16795260665938
Iteration: 3, Func. Count: 30, Neg. LLF: 98.48460177534183
Iteration: 4, Func. Count: 40, Neg. LLF: 105.23015671707984
Iteration: 5, Func. Count: 50, Neg. LLF: 88.26147719676791
Iteration: 6, Func. Count: 59, Neg. LLF: 88.12776250033201
Iteration: 7, Func. Count: 68, Neg. LLF: 88.3733852799308
Iteration: 8, Func. Count: 78, Neg. LLF: 88.04703188244684
Iteration: 9, Func. Count: 88, Neg. LLF: 91.26086130868465
Iteration: 10, Func. Count: 99, Neg. LLF: 87.9336158318209
Iteration: 11, Func. Count: 108, Neg. LLF: 87.93211844990489
Iteration: 12, Func. Count: 117, Neg. LLF: 87.93199835457138
Iteration: 13, Func. Count: 126, Neg. LLF: 87.93198844539248
Iteration: 14, Func. Count: 134, Neg. LLF: 87.93198847907072
Optimization terminated successfully (Exit mode 0)
Current function value: 87.93198844539248
Iterations: 14
Function evaluations: 134
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 43650081.2876604
Iteration: 2, Func. Count: 22, Neg. LLF: 118828354.44947776
Iteration: 3, Func. Count: 34, Neg. LLF: 91.03535772993102
Iteration: 4, Func. Count: 44, Neg. LLF: 98.85438666471667
Iteration: 5, Func. Count: 55, Neg. LLF: 99.59501440029157
Iteration: 6, Func. Count: 67, Neg. LLF: 12137944.902748587
Iteration: 7, Func. Count: 79, Neg. LLF: 89.05928276868842
Iteration: 8, Func. Count: 90, Neg. LLF: 87.43117659576531
Iteration: 9, Func. Count: 100, Neg. LLF: 87.35275820930629
Iteration: 10, Func. Count: 110, Neg. LLF: 87.32639004994472
Iteration: 11, Func. Count: 120, Neg. LLF: 87.32493531097464
Iteration: 12, Func. Count: 130, Neg. LLF: 87.3240087891171
Iteration: 13, Func. Count: 140, Neg. LLF: 87.32357163434524
Iteration: 14, Func. Count: 150, Neg. LLF: 87.32322279991874
Iteration: 15, Func. Count: 160, Neg. LLF: 87.32314607105921
Iteration: 16, Func. Count: 170, Neg. LLF: 87.32313647141977
Iteration: 17, Func. Count: 179, Neg. LLF: 87.32313647158813
Optimization terminated successfully (Exit mode 0)
Current function value: 87.32313647141977
Iterations: 17
Function evaluations: 179
Gradient evaluations: 17
Iteration: 1, Func. Count: 8, Neg. LLF: 108.87097057351876
Iteration: 2, Func. Count: 17, Neg. LLF: 8356465.039220044
Iteration: 3, Func. Count: 25, Neg. LLF: 6269522.0791551825
Iteration: 4, Func. Count: 33, Neg. LLF: 5173578.884974329
Iteration: 5, Func. Count: 41, Neg. LLF: 5155459.642210132
Iteration: 6, Func. Count: 49, Neg. LLF: 5193540.346515875
Iteration: 7, Func. Count: 57, Neg. LLF: 93.31877484800026
Iteration: 8, Func. Count: 65, Neg. LLF: 89.60466828136691
Iteration: 9, Func. Count: 72, Neg. LLF: 89.8306553672517
Iteration: 10, Func. Count: 80, Neg. LLF: 89.57227692431631
Iteration: 11, Func. Count: 88, Neg. LLF: 89.5159248964251
Iteration: 12, Func. Count: 95, Neg. LLF: 89.50034879906956
Iteration: 13, Func. Count: 102, Neg. LLF: 89.49149938743021
Iteration: 14, Func. Count: 109, Neg. LLF: 89.48442531843989
Iteration: 15, Func. Count: 116, Neg. LLF: 89.48411611482928
Iteration: 16, Func. Count: 123, Neg. LLF: 89.48408060820594
Iteration: 17, Func. Count: 130, Neg. LLF: 89.48402356666715
Iteration: 18, Func. Count: 137, Neg. LLF: 89.48401134475283
Iteration: 19, Func. Count: 144, Neg. LLF: 89.48401034859943
Optimization terminated successfully (Exit mode 0)
Current function value: 89.48401034859943
Iterations: 19
Function evaluations: 144
Gradient evaluations: 19
Iteration: 1, Func. Count: 9, Neg. LLF: 47803409.71813052
Iteration: 2, Func. Count: 19, Neg. LLF: 392517593.00369316
Iteration: 3, Func. Count: 29, Neg. LLF: 99.2890514215174
Iteration: 4, Func. Count: 38, Neg. LLF: 89.37005842258827
Iteration: 5, Func. Count: 46, Neg. LLF: 89.21001779445675
Iteration: 6, Func. Count: 54, Neg. LLF: 89.40261437799539
Iteration: 7, Func. Count: 63, Neg. LLF: 101.6005634350796
Iteration: 8, Func. Count: 72, Neg. LLF: 108.92786591422866
Iteration: 9, Func. Count: 81, Neg. LLF: 108.86983194782158
Iteration: 10, Func. Count: 90, Neg. LLF: 93.47268187992502
Iteration: 11, Func. Count: 99, Neg. LLF: 96.60346739410001
Iteration: 12, Func. Count: 109, Neg. LLF: 89.12805777285796
Iteration: 13, Func. Count: 118, Neg. LLF: 89.10052838536355
Iteration: 14, Func. Count: 126, Neg. LLF: 89.0946259341671
Iteration: 15, Func. Count: 135, Neg. LLF: 89.29121756276113
Iteration: 16, Func. Count: 144, Neg. LLF: 89.57964728297529
Iteration: 17, Func. Count: 153, Neg. LLF: 89.52679294262005
Iteration: 18, Func. Count: 162, Neg. LLF: 88.54829379834867
Iteration: 19, Func. Count: 170, Neg. LLF: 88.6289053710493
Iteration: 20, Func. Count: 179, Neg. LLF: 88.71384469426805
Iteration: 21, Func. Count: 188, Neg. LLF: 88.03679369221221
Iteration: 22, Func. Count: 196, Neg. LLF: 88.03285300330103
Iteration: 23, Func. Count: 204, Neg. LLF: 88.03284476842931
Iteration: 24, Func. Count: 212, Neg. LLF: 88.03284222314007
Iteration: 25, Func. Count: 219, Neg. LLF: 88.03284222267808
Optimization terminated successfully (Exit mode 0)
Current function value: 88.03284222314007
Iterations: 25
Function evaluations: 219
Gradient evaluations: 25
Iteration: 1, Func. Count: 10, Neg. LLF: 25225988.932787266
Iteration: 2, Func. Count: 21, Neg. LLF: 192.77366526810383
Iteration: 3, Func. Count: 32, Neg. LLF: 118.509494085095
Iteration: 4, Func. Count: 42, Neg. LLF: 90.039124986657
Iteration: 5, Func. Count: 52, Neg. LLF: 89.20841736339484
Iteration: 6, Func. Count: 62, Neg. LLF: 92.1846756651113
Iteration: 7, Func. Count: 72, Neg. LLF: 89.87943725179488
Iteration: 8, Func. Count: 82, Neg. LLF: 88.29755412893613
Iteration: 9, Func. Count: 91, Neg. LLF: 88.17939417354332
Iteration: 10, Func. Count: 100, Neg. LLF: 88.1676924210179
Iteration: 11, Func. Count: 109, Neg. LLF: 88.16390334919998
Iteration: 12, Func. Count: 118, Neg. LLF: 88.16371631576726
Iteration: 13, Func. Count: 127, Neg. LLF: 88.16371339860537
Iteration: 14, Func. Count: 135, Neg. LLF: 88.16371339852006
Optimization terminated successfully (Exit mode 0)
Current function value: 88.16371339860537
Iterations: 14
Function evaluations: 135
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 18237400.575006653
Iteration: 2, Func. Count: 22, Neg. LLF: 7377585.952859685
Iteration: 3, Func. Count: 33, Neg. LLF: 93.57973660417103
Iteration: 4, Func. Count: 44, Neg. LLF: 106.32644922514166
Iteration: 5, Func. Count: 55, Neg. LLF: 87.96124333620013
Iteration: 6, Func. Count: 65, Neg. LLF: 87.72716241743126
Iteration: 7, Func. Count: 75, Neg. LLF: 90.20385554225142
Iteration: 8, Func. Count: 88, Neg. LLF: 87.89051093172795
Iteration: 9, Func. Count: 100, Neg. LLF: 87.35400605719445
Iteration: 10, Func. Count: 110, Neg. LLF: 87.34631541714177
Iteration: 11, Func. Count: 120, Neg. LLF: 87.33502744721227
Iteration: 12, Func. Count: 130, Neg. LLF: 87.3262871339206
Iteration: 13, Func. Count: 140, Neg. LLF: 87.32196401363396
Iteration: 14, Func. Count: 150, Neg. LLF: 87.31505969205273
Iteration: 15, Func. Count: 160, Neg. LLF: 87.31402274551101
Iteration: 16, Func. Count: 170, Neg. LLF: 87.31327724206396
Iteration: 17, Func. Count: 180, Neg. LLF: 87.31271572786082
Iteration: 18, Func. Count: 190, Neg. LLF: 87.31252109642999
Iteration: 19, Func. Count: 200, Neg. LLF: 87.31250754080584
Iteration: 20, Func. Count: 209, Neg. LLF: 87.31250754076999
Optimization terminated successfully (Exit mode 0)
Current function value: 87.31250754080584
Iterations: 20
Function evaluations: 209
Gradient evaluations: 20
Iteration: 1, Func. Count: 12, Neg. LLF: 19983318.68193707
Iteration: 2, Func. Count: 24, Neg. LLF: 1331644.9295235358
Iteration: 3, Func. Count: 36, Neg. LLF: 148.32685387714466
Iteration: 4, Func. Count: 48, Neg. LLF: 90.09002476091605
Iteration: 5, Func. Count: 60, Neg. LLF: 88.31217249788949
Iteration: 6, Func. Count: 71, Neg. LLF: 87.8215689190823
Iteration: 7, Func. Count: 82, Neg. LLF: 91.24509534734173
Iteration: 8, Func. Count: 94, Neg. LLF: 92.76137325474193
Iteration: 9, Func. Count: 106, Neg. LLF: 92.16790638347724
Iteration: 10, Func. Count: 118, Neg. LLF: 91.17679243617934
Iteration: 11, Func. Count: 130, Neg. LLF: 92.38628105256937
Iteration: 12, Func. Count: 142, Neg. LLF: 89.96360090613638
Iteration: 13, Func. Count: 154, Neg. LLF: 87.18995325552747
Iteration: 14, Func. Count: 165, Neg. LLF: 86.99264879068555
Iteration: 15, Func. Count: 176, Neg. LLF: 87.13183467583276
Iteration: 16, Func. Count: 188, Neg. LLF: 86.85523298618358
Iteration: 17, Func. Count: 199, Neg. LLF: 86.79513537650666
Iteration: 18, Func. Count: 210, Neg. LLF: 86.76752851794218
Iteration: 19, Func. Count: 221, Neg. LLF: 86.73143169422866
Iteration: 20, Func. Count: 232, Neg. LLF: 86.67931553199479
Iteration: 21, Func. Count: 243, Neg. LLF: 86.65908569570323
Iteration: 22, Func. Count: 254, Neg. LLF: 86.65822523481985
Iteration: 23, Func. Count: 265, Neg. LLF: 86.65821457230338
Iteration: 24, Func. Count: 276, Neg. LLF: 86.658212389851
Iteration: 25, Func. Count: 286, Neg. LLF: 86.65821238985374
Optimization terminated successfully (Exit mode 0)
Current function value: 86.658212389851
Iterations: 25
Function evaluations: 286
Gradient evaluations: 25
Iteration: 1, Func. Count: 9, Neg. LLF: 110.6770590718138
Iteration: 2, Func. Count: 19, Neg. LLF: 42388793.74667184
Iteration: 3, Func. Count: 28, Neg. LLF: 6399755.678476245
Iteration: 4, Func. Count: 37, Neg. LLF: 2413219.693887217
Iteration: 5, Func. Count: 46, Neg. LLF: 2410187.4550453215
Iteration: 6, Func. Count: 55, Neg. LLF: 3528326.027117102
Iteration: 7, Func. Count: 64, Neg. LLF: 90.74300195593644
Iteration: 8, Func. Count: 73, Neg. LLF: 89.51387957349435
Iteration: 9, Func. Count: 81, Neg. LLF: 90.20487018538769
Iteration: 10, Func. Count: 91, Neg. LLF: 89.53802475188988
Iteration: 11, Func. Count: 100, Neg. LLF: 89.50482663329511
Iteration: 12, Func. Count: 108, Neg. LLF: 89.49377044704472
Iteration: 13, Func. Count: 116, Neg. LLF: 89.48432521151454
Iteration: 14, Func. Count: 124, Neg. LLF: 89.48408094379813
Iteration: 15, Func. Count: 132, Neg. LLF: 89.48404274888182
Iteration: 16, Func. Count: 140, Neg. LLF: 89.4840227497475
Iteration: 17, Func. Count: 148, Neg. LLF: 89.48401164690061
Iteration: 18, Func. Count: 156, Neg. LLF: 89.48401038759715
Iteration: 19, Func. Count: 163, Neg. LLF: 89.48401040354764
Optimization terminated successfully (Exit mode 0)
Current function value: 89.48401038759715
Iterations: 19
Function evaluations: 163
Gradient evaluations: 19
Iteration: 1, Func. Count: 10, Neg. LLF: 47874063.40772931
Iteration: 2, Func. Count: 21, Neg. LLF: 382151274.33054155
Iteration: 3, Func. Count: 32, Neg. LLF: 99.6237797198581
Iteration: 4, Func. Count: 42, Neg. LLF: 90.85033383853163
Iteration: 5, Func. Count: 52, Neg. LLF: 89.17618859020885
Iteration: 6, Func. Count: 61, Neg. LLF: 89.97431600148403
Iteration: 7, Func. Count: 72, Neg. LLF: 89.1471519820497
Iteration: 8, Func. Count: 82, Neg. LLF: 89.04431910893547
Iteration: 9, Func. Count: 91, Neg. LLF: 89.01924934613476
Iteration: 10, Func. Count: 100, Neg. LLF: 89.00924139266101
Iteration: 11, Func. Count: 109, Neg. LLF: 89.0085031972899
Iteration: 12, Func. Count: 118, Neg. LLF: 89.00842568275195
Iteration: 13, Func. Count: 127, Neg. LLF: 89.00841139174617
Iteration: 14, Func. Count: 136, Neg. LLF: 89.00840690327821
Iteration: 15, Func. Count: 144, Neg. LLF: 89.00840690323642
Optimization terminated successfully (Exit mode 0)
Current function value: 89.00840690327821
Iterations: 15
Function evaluations: 144
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 25681353.938074607
Iteration: 2, Func. Count: 23, Neg. LLF: 200.61563262137173
Iteration: 3, Func. Count: 35, Neg. LLF: 123.14508910522414
Iteration: 4, Func. Count: 46, Neg. LLF: 89.98863811876602
Iteration: 5, Func. Count: 57, Neg. LLF: 89.22116578514198
Iteration: 6, Func. Count: 68, Neg. LLF: 103.58113587326574
Iteration: 7, Func. Count: 79, Neg. LLF: 91.19277763110672
Iteration: 8, Func. Count: 90, Neg. LLF: 89.19258620104144
Iteration: 9, Func. Count: 101, Neg. LLF: 88.19147700576285
Iteration: 10, Func. Count: 111, Neg. LLF: 88.16679026240496
Iteration: 11, Func. Count: 121, Neg. LLF: 88.16423469087826
Iteration: 12, Func. Count: 131, Neg. LLF: 88.16383260807315
Iteration: 13, Func. Count: 141, Neg. LLF: 88.16378927064576
Iteration: 14, Func. Count: 151, Neg. LLF: 88.16373811499514
Iteration: 15, Func. Count: 161, Neg. LLF: 88.16371366693689
Iteration: 16, Func. Count: 171, Neg. LLF: 88.16371304124841
Optimization terminated successfully (Exit mode 0)
Current function value: 88.16371304124841
Iterations: 16
Function evaluations: 171
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 18262150.979251217
Iteration: 2, Func. Count: 24, Neg. LLF: 7517501.669712642
Iteration: 3, Func. Count: 36, Neg. LLF: 95.97003312577274
Iteration: 4, Func. Count: 48, Neg. LLF: 101.39144998425427
Iteration: 5, Func. Count: 60, Neg. LLF: 87.74605369149404
Iteration: 6, Func. Count: 71, Neg. LLF: 89.23926235482256
Iteration: 7, Func. Count: 83, Neg. LLF: 90.35237583637365
Iteration: 8, Func. Count: 95, Neg. LLF: 89.34903782560828
Iteration: 9, Func. Count: 107, Neg. LLF: 89.66072867420654
Iteration: 10, Func. Count: 120, Neg. LLF: 90.11084668820978
Iteration: 11, Func. Count: 132, Neg. LLF: 87.33416131186607
Iteration: 12, Func. Count: 143, Neg. LLF: 87.32678643593351
Iteration: 13, Func. Count: 154, Neg. LLF: 87.32374445640937
Iteration: 14, Func. Count: 165, Neg. LLF: 87.31477206093182
Iteration: 15, Func. Count: 176, Neg. LLF: 87.3134390669945
Iteration: 16, Func. Count: 187, Neg. LLF: 87.31259647384165
Iteration: 17, Func. Count: 198, Neg. LLF: 87.31250990848403
Iteration: 18, Func. Count: 209, Neg. LLF: 87.3125071331645
Iteration: 19, Func. Count: 219, Neg. LLF: 87.31250713317081
Optimization terminated successfully (Exit mode 0)
Current function value: 87.3125071331645
Iterations: 19
Function evaluations: 219
Gradient evaluations: 19
Iteration: 1, Func. Count: 13, Neg. LLF: 19805603.02617558
Iteration: 2, Func. Count: 26, Neg. LLF: 1247239.2155319971
Iteration: 3, Func. Count: 39, Neg. LLF: 145.6227050460543
Iteration: 4, Func. Count: 52, Neg. LLF: 90.08138084723304
Iteration: 5, Func. Count: 65, Neg. LLF: 88.18296520948132
Iteration: 6, Func. Count: 77, Neg. LLF: 87.79789270342533
Iteration: 7, Func. Count: 89, Neg. LLF: 94.41183515742517
Iteration: 8, Func. Count: 102, Neg. LLF: 106.20251978389162
Iteration: 9, Func. Count: 115, Neg. LLF: 98.60274517955926
Iteration: 10, Func. Count: 128, Neg. LLF: 92.33656341166086
Iteration: 11, Func. Count: 141, Neg. LLF: 90.35697078537747
Iteration: 12, Func. Count: 154, Neg. LLF: 86.89549116014678
Iteration: 13, Func. Count: 166, Neg. LLF: 86.8191124258774
Iteration: 14, Func. Count: 178, Neg. LLF: 86.69327311354746
Iteration: 15, Func. Count: 190, Neg. LLF: 86.67256702582858
Iteration: 16, Func. Count: 202, Neg. LLF: 86.66905491972291
Iteration: 17, Func. Count: 214, Neg. LLF: 86.6644060527342
Iteration: 18, Func. Count: 226, Neg. LLF: 86.6609668221669
Iteration: 19, Func. Count: 238, Neg. LLF: 86.65853102081448
Iteration: 20, Func. Count: 250, Neg. LLF: 86.65824128243327
Iteration: 21, Func. Count: 262, Neg. LLF: 86.658213711057
Iteration: 22, Func. Count: 274, Neg. LLF: 86.65821244661679
Iteration: 23, Func. Count: 285, Neg. LLF: 86.65821244665378
Optimization terminated successfully (Exit mode 0)
Current function value: 86.65821244661679
Iterations: 23
Function evaluations: 285
Gradient evaluations: 23
Iteration: 1, Func. Count: 6, Neg. LLF: 153.03642498436156
Iteration: 2, Func. Count: 14, Neg. LLF: 147.8378603171757
Iteration: 3, Func. Count: 21, Neg. LLF: 94.5966306777637
Iteration: 4, Func. Count: 26, Neg. LLF: 94.56649372524528
Iteration: 5, Func. Count: 31, Neg. LLF: 94.56421439037732
Iteration: 6, Func. Count: 36, Neg. LLF: 94.56293923746843
Iteration: 7, Func. Count: 41, Neg. LLF: 94.56228492527684
Iteration: 8, Func. Count: 46, Neg. LLF: 94.56222488548063
Iteration: 9, Func. Count: 51, Neg. LLF: 94.56222249345893
Iteration: 10, Func. Count: 55, Neg. LLF: 94.56222258459928
Optimization terminated successfully (Exit mode 0)
Current function value: 94.56222249345893
Iterations: 10
Function evaluations: 55
Gradient evaluations: 10
Iteration: 1, Func. Count: 7, Neg. LLF: 57737029.66525888
Iteration: 2, Func. Count: 15, Neg. LLF: 268.1654285645819
Iteration: 3, Func. Count: 24, Neg. LLF: 267.84389312045437
Iteration: 4, Func. Count: 32, Neg. LLF: 89.81350992017249
Iteration: 5, Func. Count: 38, Neg. LLF: 89.39405605091528
Iteration: 6, Func. Count: 45, Neg. LLF: 88.61039291755371
Iteration: 7, Func. Count: 51, Neg. LLF: 88.30577927818369
Iteration: 8, Func. Count: 57, Neg. LLF: 88.08025371435363
Iteration: 9, Func. Count: 63, Neg. LLF: 88.09670950586052
Iteration: 10, Func. Count: 70, Neg. LLF: 88.03347231337582
Iteration: 11, Func. Count: 76, Neg. LLF: 88.03287289000693
Iteration: 12, Func. Count: 82, Neg. LLF: 88.03284274565051
Iteration: 13, Func. Count: 88, Neg. LLF: 88.03284216541984
Optimization terminated successfully (Exit mode 0)
Current function value: 88.03284216541984
Iterations: 13
Function evaluations: 88
Gradient evaluations: 13
Iteration: 1, Func. Count: 8, Neg. LLF: 53259388.93007157
Iteration: 2, Func. Count: 17, Neg. LLF: 606.38551261292
Iteration: 3, Func. Count: 27, Neg. LLF: 118.6391189625573
Iteration: 4, Func. Count: 36, Neg. LLF: 90.37574828934393
Iteration: 5, Func. Count: 43, Neg. LLF: 90.12626080186665
Iteration: 6, Func. Count: 51, Neg. LLF: 90.95846010840717
Iteration: 7, Func. Count: 61, Neg. LLF: 88.57010544799023
Iteration: 8, Func. Count: 68, Neg. LLF: 88.30231278363574
Iteration: 9, Func. Count: 75, Neg. LLF: 88.15915262676111
Iteration: 10, Func. Count: 82, Neg. LLF: 87.97580443909823
Iteration: 11, Func. Count: 89, Neg. LLF: 87.93864336424899
Iteration: 12, Func. Count: 96, Neg. LLF: 87.93396078341573
Iteration: 13, Func. Count: 103, Neg. LLF: 87.93313803000159
Iteration: 14, Func. Count: 110, Neg. LLF: 87.93313468258503
Iteration: 15, Func. Count: 116, Neg. LLF: 87.93313468253159
Optimization terminated successfully (Exit mode 0)
Current function value: 87.93313468258503
Iterations: 15
Function evaluations: 116
Gradient evaluations: 15
Iteration: 1, Func. Count: 9, Neg. LLF: 30373544.41894193
Iteration: 2, Func. Count: 19, Neg. LLF: 322550.07203088165
Iteration: 3, Func. Count: 29, Neg. LLF: 128.956955807977
Iteration: 4, Func. Count: 38, Neg. LLF: 114.02026114102844
Iteration: 5, Func. Count: 47, Neg. LLF: 103.83235887725394
Iteration: 6, Func. Count: 56, Neg. LLF: 93.80799005407606
Iteration: 7, Func. Count: 65, Neg. LLF: 92.29746555740918
Iteration: 8, Func. Count: 74, Neg. LLF: 91.57469160425161
Iteration: 9, Func. Count: 83, Neg. LLF: 89.00031732860658
Iteration: 10, Func. Count: 91, Neg. LLF: 91.14452309178989
Iteration: 11, Func. Count: 100, Neg. LLF: 155.60989894872503
Iteration: 12, Func. Count: 110, Neg. LLF: 89.4684489370704
Iteration: 13, Func. Count: 121, Neg. LLF: 88.43582212520863
Iteration: 14, Func. Count: 129, Neg. LLF: 88.39075692828004
Iteration: 15, Func. Count: 138, Neg. LLF: 88.0849524973085
Iteration: 16, Func. Count: 146, Neg. LLF: 87.96315925509352
Iteration: 17, Func. Count: 154, Neg. LLF: 87.94702482941746
Iteration: 18, Func. Count: 162, Neg. LLF: 87.9374522767183
Iteration: 19, Func. Count: 170, Neg. LLF: 87.933862177598
Iteration: 20, Func. Count: 178, Neg. LLF: 87.93323923784844
Iteration: 21, Func. Count: 186, Neg. LLF: 87.93315366171205
Iteration: 22, Func. Count: 194, Neg. LLF: 87.93313641805315
Iteration: 23, Func. Count: 202, Neg. LLF: 87.93313476177984
Iteration: 24, Func. Count: 209, Neg. LLF: 87.93313478965837
Optimization terminated successfully (Exit mode 0)
Current function value: 87.93313476177984
Iterations: 24
Function evaluations: 209
Gradient evaluations: 24
Iteration: 1, Func. Count: 10, Neg. LLF: 24423988.960798636
Iteration: 2, Func. Count: 20, Neg. LLF: 75710.82371570195
Iteration: 3, Func. Count: 31, Neg. LLF: 100.69869541096296
Iteration: 4, Func. Count: 41, Neg. LLF: 88.38224276727044
Iteration: 5, Func. Count: 50, Neg. LLF: 92.57502588420319
Iteration: 6, Func. Count: 61, Neg. LLF: 193.3322724963289
Iteration: 7, Func. Count: 71, Neg. LLF: 87.72247733169438
Iteration: 8, Func. Count: 80, Neg. LLF: 87.69508409236742
Iteration: 9, Func. Count: 89, Neg. LLF: 87.69173244156542
Iteration: 10, Func. Count: 98, Neg. LLF: 87.69116342982429
Iteration: 11, Func. Count: 107, Neg. LLF: 87.69116185024917
Iteration: 12, Func. Count: 115, Neg. LLF: 87.6911618502316
Optimization terminated successfully (Exit mode 0)
Current function value: 87.69116185024917
Iterations: 12
Function evaluations: 115
Gradient evaluations: 12
Iteration: 1, Func. Count: 7, Neg. LLF: 155.92362367958995
Iteration: 2, Func. Count: 16, Neg. LLF: 177.65407169808907
Iteration: 3, Func. Count: 23, Neg. LLF: 93.2958987963246
Iteration: 4, Func. Count: 29, Neg. LLF: 93.2098939165404
Iteration: 5, Func. Count: 36, Neg. LLF: 92.30545503154308
Iteration: 6, Func. Count: 42, Neg. LLF: 92.18054891067459
Iteration: 7, Func. Count: 48, Neg. LLF: 92.16680827405165
Iteration: 8, Func. Count: 54, Neg. LLF: 92.16300353787645
Iteration: 9, Func. Count: 60, Neg. LLF: 92.16291393343022
Iteration: 10, Func. Count: 66, Neg. LLF: 92.1629133937828
Optimization terminated successfully (Exit mode 0)
Current function value: 92.1629133937828
Iterations: 10
Function evaluations: 66
Gradient evaluations: 10
Iteration: 1, Func. Count: 8, Neg. LLF: 48289505.04696734
Iteration: 2, Func. Count: 17, Neg. LLF: 323.43191307225896
Iteration: 3, Func. Count: 26, Neg. LLF: 236.39795071230606
Iteration: 4, Func. Count: 35, Neg. LLF: 90.01951118825372
Iteration: 5, Func. Count: 42, Neg. LLF: 89.69078161013879
Iteration: 6, Func. Count: 50, Neg. LLF: 89.73405903884128
Iteration: 7, Func. Count: 58, Neg. LLF: 88.4926554799168
Iteration: 8, Func. Count: 65, Neg. LLF: 88.16876362682045
Iteration: 9, Func. Count: 72, Neg. LLF: 88.93701945976333
Iteration: 10, Func. Count: 80, Neg. LLF: 88.05810170698983
Iteration: 11, Func. Count: 87, Neg. LLF: 88.03442785988719
Iteration: 12, Func. Count: 94, Neg. LLF: 88.03291890168218
Iteration: 13, Func. Count: 101, Neg. LLF: 88.03284394628756
Iteration: 14, Func. Count: 108, Neg. LLF: 88.03284238082752
Iteration: 15, Func. Count: 114, Neg. LLF: 88.03284237992747
Optimization terminated successfully (Exit mode 0)
Current function value: 88.03284238082752
Iterations: 15
Function evaluations: 114
Gradient evaluations: 15
Iteration: 1, Func. Count: 9, Neg. LLF: 30513905.053772125
Iteration: 2, Func. Count: 18, Neg. LLF: 658553.6398915936
Iteration: 3, Func. Count: 28, Neg. LLF: 99.06011708705968
Iteration: 4, Func. Count: 37, Neg. LLF: 102.53987793522167
Iteration: 5, Func. Count: 46, Neg. LLF: 87.99377910261455
Iteration: 6, Func. Count: 54, Neg. LLF: 88.60323039007413
Iteration: 7, Func. Count: 63, Neg. LLF: 87.93467698877348
Iteration: 8, Func. Count: 71, Neg. LLF: 87.93322181252054
Iteration: 9, Func. Count: 79, Neg. LLF: 87.93313498996356
Iteration: 10, Func. Count: 86, Neg. LLF: 87.93313498938565
Optimization terminated successfully (Exit mode 0)
Current function value: 87.93313498996356
Iterations: 10
Function evaluations: 86
Gradient evaluations: 10
Iteration: 1, Func. Count: 10, Neg. LLF: 27886802.16650503
Iteration: 2, Func. Count: 21, Neg. LLF: 4108.059026061386
Iteration: 3, Func. Count: 32, Neg. LLF: 136.22573547176182
Iteration: 4, Func. Count: 42, Neg. LLF: 102.88013324447657
Iteration: 5, Func. Count: 52, Neg. LLF: 89.77330365102875
Iteration: 6, Func. Count: 61, Neg. LLF: 101.40097490013692
Iteration: 7, Func. Count: 72, Neg. LLF: 112.22963300918272
Iteration: 8, Func. Count: 84, Neg. LLF: 88.20913354079552
Iteration: 9, Func. Count: 93, Neg. LLF: 168.39743204718576
Iteration: 10, Func. Count: 104, Neg. LLF: 87.9349981800628
Iteration: 11, Func. Count: 113, Neg. LLF: 87.93370930428276
Iteration: 12, Func. Count: 122, Neg. LLF: 87.93339234160409
Iteration: 13, Func. Count: 131, Neg. LLF: 87.93321053314848
Iteration: 14, Func. Count: 140, Neg. LLF: 87.93314618035349
Iteration: 15, Func. Count: 149, Neg. LLF: 87.93313543488586
Iteration: 16, Func. Count: 158, Neg. LLF: 87.93313461343136
Optimization terminated successfully (Exit mode 0)
Current function value: 87.93313461343136
Iterations: 16
Function evaluations: 158
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 22688445.282049764
Iteration: 2, Func. Count: 22, Neg. LLF: 2196.8424586325896
Iteration: 3, Func. Count: 34, Neg. LLF: 97.77319919655685
Iteration: 4, Func. Count: 45, Neg. LLF: 89.91385384632733
Iteration: 5, Func. Count: 55, Neg. LLF: 88.20234256153309
Iteration: 6, Func. Count: 65, Neg. LLF: 9770.656136077665
Iteration: 7, Func. Count: 77, Neg. LLF: 98.46075233437385
Iteration: 8, Func. Count: 89, Neg. LLF: 88.40620667437707
Iteration: 9, Func. Count: 100, Neg. LLF: 87.59359056222537
Iteration: 10, Func. Count: 110, Neg. LLF: 87.53287176526678
Iteration: 11, Func. Count: 120, Neg. LLF: 87.52225015615943
Iteration: 12, Func. Count: 130, Neg. LLF: 87.51947843321538
Iteration: 13, Func. Count: 140, Neg. LLF: 87.51917701002459
Iteration: 14, Func. Count: 150, Neg. LLF: 87.51914095728647
Iteration: 15, Func. Count: 160, Neg. LLF: 87.51913948703977
Iteration: 16, Func. Count: 169, Neg. LLF: 87.51913948696856
Optimization terminated successfully (Exit mode 0)
Current function value: 87.51913948703977
Iterations: 16
Function evaluations: 169
Gradient evaluations: 16
Iteration: 1, Func. Count: 8, Neg. LLF: 153.83286756882387
Iteration: 2, Func. Count: 18, Neg. LLF: 155.23092479743036
Iteration: 3, Func. Count: 27, Neg. LLF: 93.31782203980879
Iteration: 4, Func. Count: 34, Neg. LLF: 94.9677567447719
Iteration: 5, Func. Count: 43, Neg. LLF: 100.9618042564392
Iteration: 6, Func. Count: 55, Neg. LLF: 93.87514898882809
Iteration: 7, Func. Count: 63, Neg. LLF: 92.25681756244173
Iteration: 8, Func. Count: 70, Neg. LLF: 92.15341038816044
Iteration: 9, Func. Count: 77, Neg. LLF: 92.13902829097569
Iteration: 10, Func. Count: 84, Neg. LLF: 92.13189374153768
Iteration: 11, Func. Count: 91, Neg. LLF: 92.13175357021441
Iteration: 12, Func. Count: 98, Neg. LLF: 92.13173058900891
Iteration: 13, Func. Count: 105, Neg. LLF: 92.13172589280626
Iteration: 14, Func. Count: 111, Neg. LLF: 92.1317258928196
Optimization terminated successfully (Exit mode 0)
Current function value: 92.13172589280626
Iterations: 14
Function evaluations: 111
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 60550151.933179535
Iteration: 2, Func. Count: 19, Neg. LLF: 372392147.34729874
Iteration: 3, Func. Count: 29, Neg. LLF: 320.44083750413154
Iteration: 4, Func. Count: 38, Neg. LLF: 267.74875607537217
Iteration: 5, Func. Count: 47, Neg. LLF: 167.10736861617536
Iteration: 6, Func. Count: 56, Neg. LLF: 145.16872809519154
Iteration: 7, Func. Count: 65, Neg. LLF: 96.905054226585
Iteration: 8, Func. Count: 74, Neg. LLF: 90.33503561219227
Iteration: 9, Func. Count: 83, Neg. LLF: 91.57457831142285
Iteration: 10, Func. Count: 92, Neg. LLF: 90.34723758113343
Iteration: 11, Func. Count: 101, Neg. LLF: 89.9921775729261
Iteration: 12, Func. Count: 110, Neg. LLF: 92.77590083427116
Iteration: 13, Func. Count: 119, Neg. LLF: 89.30837060288505
Iteration: 14, Func. Count: 128, Neg. LLF: 89.02790888422398
Iteration: 15, Func. Count: 137, Neg. LLF: 88.40009961493176
Iteration: 16, Func. Count: 145, Neg. LLF: 89.89015674215958
Iteration: 17, Func. Count: 154, Neg. LLF: 88.04004493605566
Iteration: 18, Func. Count: 162, Neg. LLF: 88.03448979878002
Iteration: 19, Func. Count: 170, Neg. LLF: 88.03294118816866
Iteration: 20, Func. Count: 178, Neg. LLF: 88.03284621250219
Iteration: 21, Func. Count: 186, Neg. LLF: 88.03284215090096
Iteration: 22, Func. Count: 193, Neg. LLF: 88.03284215088551
Optimization terminated successfully (Exit mode 0)
Current function value: 88.03284215090096
Iterations: 22
Function evaluations: 193
Gradient evaluations: 22
Iteration: 1, Func. Count: 10, Neg. LLF: 18023479.12720806
Iteration: 2, Func. Count: 21, Neg. LLF: 355.40055248388273
Iteration: 3, Func. Count: 31, Neg. LLF: 141.8479974612061
Iteration: 4, Func. Count: 41, Neg. LLF: 110.62514672994324
Iteration: 5, Func. Count: 51, Neg. LLF: 97.58540459866454
Iteration: 6, Func. Count: 61, Neg. LLF: 92.29079007011211
Iteration: 7, Func. Count: 71, Neg. LLF: 97.14305125852269
Iteration: 8, Func. Count: 81, Neg. LLF: 88.97780222458842
Iteration: 9, Func. Count: 90, Neg. LLF: 88.53667007511646
Iteration: 10, Func. Count: 99, Neg. LLF: 97.30428019939762
Iteration: 11, Func. Count: 110, Neg. LLF: 88.90047936775719
Iteration: 12, Func. Count: 120, Neg. LLF: 87.99779790944983
Iteration: 13, Func. Count: 129, Neg. LLF: 87.95859213303135
Iteration: 14, Func. Count: 138, Neg. LLF: 87.93580738970319
Iteration: 15, Func. Count: 147, Neg. LLF: 87.93300408266353
Iteration: 16, Func. Count: 156, Neg. LLF: 87.93228305315425
Iteration: 17, Func. Count: 165, Neg. LLF: 87.9319933981967
Iteration: 18, Func. Count: 174, Neg. LLF: 87.93198965502646
Iteration: 19, Func. Count: 183, Neg. LLF: 87.93198845626782
Iteration: 20, Func. Count: 191, Neg. LLF: 87.93198845632759
Optimization terminated successfully (Exit mode 0)
Current function value: 87.93198845626782
Iterations: 20
Function evaluations: 191
Gradient evaluations: 20
Iteration: 1, Func. Count: 11, Neg. LLF: 27667910.987952236
Iteration: 2, Func. Count: 23, Neg. LLF: 5707.467199820327
Iteration: 3, Func. Count: 35, Neg. LLF: 132.467965059269
Iteration: 4, Func. Count: 46, Neg. LLF: 105.13640432984832
Iteration: 5, Func. Count: 57, Neg. LLF: 96.66821722358695
Iteration: 6, Func. Count: 68, Neg. LLF: 100.27478900364366
Iteration: 7, Func. Count: 79, Neg. LLF: 92.01111075786903
Iteration: 8, Func. Count: 90, Neg. LLF: 90.80371916379157
Iteration: 9, Func. Count: 101, Neg. LLF: 88.72402603801625
Iteration: 10, Func. Count: 111, Neg. LLF: 88.20879967323292
Iteration: 11, Func. Count: 121, Neg. LLF: 90.72577669816071
Iteration: 12, Func. Count: 132, Neg. LLF: 88.22931490347237
Iteration: 13, Func. Count: 143, Neg. LLF: 88.1565617033473
Iteration: 14, Func. Count: 154, Neg. LLF: 88.16980682140516
Iteration: 15, Func. Count: 165, Neg. LLF: 87.99726268476546
Iteration: 16, Func. Count: 175, Neg. LLF: 87.94051511234132
Iteration: 17, Func. Count: 185, Neg. LLF: 87.93325389200587
Iteration: 18, Func. Count: 195, Neg. LLF: 87.93217183891403
Iteration: 19, Func. Count: 205, Neg. LLF: 87.93198891311344
Iteration: 20, Func. Count: 214, Neg. LLF: 87.93198894642696
Optimization terminated successfully (Exit mode 0)
Current function value: 87.93198891311344
Iterations: 20
Function evaluations: 214
Gradient evaluations: 20
Iteration: 1, Func. Count: 12, Neg. LLF: 22470968.877635185
Iteration: 2, Func. Count: 24, Neg. LLF: 2039.470724037069
Iteration: 3, Func. Count: 37, Neg. LLF: 98.09032534389533
Iteration: 4, Func. Count: 49, Neg. LLF: 89.69482505202987
Iteration: 5, Func. Count: 60, Neg. LLF: 88.23646393269293
Iteration: 6, Func. Count: 71, Neg. LLF: 13635245.519000443
Iteration: 7, Func. Count: 84, Neg. LLF: 96.0440822554125
Iteration: 8, Func. Count: 97, Neg. LLF: 88.67380073124642
Iteration: 9, Func. Count: 109, Neg. LLF: 87.37110053311311
Iteration: 10, Func. Count: 120, Neg. LLF: 87.33367004816226
Iteration: 11, Func. Count: 131, Neg. LLF: 87.32401019738776
Iteration: 12, Func. Count: 142, Neg. LLF: 87.32331136735213
Iteration: 13, Func. Count: 153, Neg. LLF: 87.32320439826489
Iteration: 14, Func. Count: 164, Neg. LLF: 87.3231383527521
Iteration: 15, Func. Count: 175, Neg. LLF: 87.3231366708464
Iteration: 16, Func. Count: 186, Neg. LLF: 87.32313601607393
Optimization terminated successfully (Exit mode 0)
Current function value: 87.32313601607393
Iterations: 16
Function evaluations: 186
Gradient evaluations: 16
Iteration: 1, Func. Count: 9, Neg. LLF: 108.81670897957733
Iteration: 2, Func. Count: 19, Neg. LLF: 1607237.4516769499
Iteration: 3, Func. Count: 28, Neg. LLF: 6183207.618269537
Iteration: 4, Func. Count: 37, Neg. LLF: 5870007.792704373
Iteration: 5, Func. Count: 46, Neg. LLF: 5933402.9930064
Iteration: 6, Func. Count: 55, Neg. LLF: 5976541.793273596
Iteration: 7, Func. Count: 64, Neg. LLF: 94.37827610487653
Iteration: 8, Func. Count: 73, Neg. LLF: 89.64876920679318
Iteration: 9, Func. Count: 81, Neg. LLF: 89.76143596909462
Iteration: 10, Func. Count: 90, Neg. LLF: 110.81488450005402
Iteration: 11, Func. Count: 100, Neg. LLF: 89.5102248678556
Iteration: 12, Func. Count: 108, Neg. LLF: 89.49501512967215
Iteration: 13, Func. Count: 116, Neg. LLF: 89.4879480203262
Iteration: 14, Func. Count: 124, Neg. LLF: 89.48637484979298
Iteration: 15, Func. Count: 132, Neg. LLF: 89.48533699651998
Iteration: 16, Func. Count: 140, Neg. LLF: 89.48484192522207
Iteration: 17, Func. Count: 148, Neg. LLF: 89.48424087800565
Iteration: 18, Func. Count: 156, Neg. LLF: 89.48403790422098
Iteration: 19, Func. Count: 164, Neg. LLF: 89.48401100423276
Iteration: 20, Func. Count: 172, Neg. LLF: 89.48401033697209
Optimization terminated successfully (Exit mode 0)
Current function value: 89.48401033697209
Iterations: 20
Function evaluations: 172
Gradient evaluations: 20
Iteration: 1, Func. Count: 10, Neg. LLF: 28085043.504554376
Iteration: 2, Func. Count: 21, Neg. LLF: 3894193.10466144
Iteration: 3, Func. Count: 32, Neg. LLF: 124.32619413866627
Iteration: 4, Func. Count: 42, Neg. LLF: 90.35835897953642
Iteration: 5, Func. Count: 52, Neg. LLF: 89.18186341734832
Iteration: 6, Func. Count: 61, Neg. LLF: 90.32520371616894
Iteration: 7, Func. Count: 72, Neg. LLF: 89.0649089484809
Iteration: 8, Func. Count: 81, Neg. LLF: 89.03287632402852
Iteration: 9, Func. Count: 90, Neg. LLF: 89.01378687206463
Iteration: 10, Func. Count: 99, Neg. LLF: 89.00928218562522
Iteration: 11, Func. Count: 108, Neg. LLF: 89.0085433923007
Iteration: 12, Func. Count: 117, Neg. LLF: 89.00843230674523
Iteration: 13, Func. Count: 126, Neg. LLF: 89.00840953792664
Iteration: 14, Func. Count: 135, Neg. LLF: 89.00840702458608
Iteration: 15, Func. Count: 143, Neg. LLF: 89.00840702461511
Optimization terminated successfully (Exit mode 0)
Current function value: 89.00840702458608
Iterations: 15
Function evaluations: 143
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 20506096.848014113
Iteration: 2, Func. Count: 23, Neg. LLF: 7721899.127001713
Iteration: 3, Func. Count: 34, Neg. LLF: 160.92116520383163
Iteration: 4, Func. Count: 45, Neg. LLF: 90.0331920079166
Iteration: 5, Func. Count: 56, Neg. LLF: 89.2118437572789
Iteration: 6, Func. Count: 67, Neg. LLF: 91.03047883651878
Iteration: 7, Func. Count: 78, Neg. LLF: 88.18998332862581
Iteration: 8, Func. Count: 88, Neg. LLF: 88.19363170064362
Iteration: 9, Func. Count: 99, Neg. LLF: 88.16427724541339
Iteration: 10, Func. Count: 109, Neg. LLF: 88.16390420111101
Iteration: 11, Func. Count: 119, Neg. LLF: 88.16377490357212
Iteration: 12, Func. Count: 129, Neg. LLF: 88.16372611941975
Iteration: 13, Func. Count: 139, Neg. LLF: 88.16371644501943
Iteration: 14, Func. Count: 149, Neg. LLF: 88.16371308847829
Iteration: 15, Func. Count: 158, Neg. LLF: 88.16371308852557
Optimization terminated successfully (Exit mode 0)
Current function value: 88.16371308847829
Iterations: 15
Function evaluations: 158
Gradient evaluations: 15
Iteration: 1, Func. Count: 12, Neg. LLF: 24565458.751345195
Iteration: 2, Func. Count: 24, Neg. LLF: 2033528.1808351171
Iteration: 3, Func. Count: 36, Neg. LLF: 169.1071875691762
Iteration: 4, Func. Count: 48, Neg. LLF: 89.83505352971719
Iteration: 5, Func. Count: 60, Neg. LLF: 88.05254298521045
Iteration: 6, Func. Count: 71, Neg. LLF: 87.6948199040976
Iteration: 7, Func. Count: 82, Neg. LLF: 89.84017740296117
Iteration: 8, Func. Count: 94, Neg. LLF: 90.43854082856541
Iteration: 9, Func. Count: 106, Neg. LLF: 87.55265469461901
Iteration: 10, Func. Count: 117, Neg. LLF: 87.44034452235915
Iteration: 11, Func. Count: 128, Neg. LLF: 87.35076841404116
Iteration: 12, Func. Count: 139, Neg. LLF: 87.63610889463996
Iteration: 13, Func. Count: 152, Neg. LLF: 87.3244147678904
Iteration: 14, Func. Count: 163, Neg. LLF: 87.32080392376794
Iteration: 15, Func. Count: 174, Neg. LLF: 87.31859630129871
Iteration: 16, Func. Count: 185, Neg. LLF: 87.31302380901343
Iteration: 17, Func. Count: 196, Neg. LLF: 87.31252856124084
Iteration: 18, Func. Count: 207, Neg. LLF: 87.31250720255103
Iteration: 19, Func. Count: 217, Neg. LLF: 87.3125072025492
Optimization terminated successfully (Exit mode 0)
Current function value: 87.31250720255103
Iterations: 19
Function evaluations: 217
Gradient evaluations: 19
Iteration: 1, Func. Count: 13, Neg. LLF: 30849724.72864849
Iteration: 2, Func. Count: 26, Neg. LLF: 234969783.29592454
Iteration: 3, Func. Count: 40, Neg. LLF: 6451656.521606349
Iteration: 4, Func. Count: 53, Neg. LLF: 90.49678535941099
Iteration: 5, Func. Count: 66, Neg. LLF: 88.1761151087822
Iteration: 6, Func. Count: 78, Neg. LLF: 96.72620795307643
Iteration: 7, Func. Count: 91, Neg. LLF: 87.6575396291024
Iteration: 8, Func. Count: 103, Neg. LLF: 90.72637249188222
Iteration: 9, Func. Count: 116, Neg. LLF: 87.57286867574962
Iteration: 10, Func. Count: 128, Neg. LLF: 87.43251083101295
Iteration: 11, Func. Count: 140, Neg. LLF: 87.38086331858194
Iteration: 12, Func. Count: 152, Neg. LLF: 87.30784906381211
Iteration: 13, Func. Count: 164, Neg. LLF: 87.20170301083782
Iteration: 14, Func. Count: 176, Neg. LLF: 87.2614384071455
Iteration: 15, Func. Count: 189, Neg. LLF: 86.93895874752282
Iteration: 16, Func. Count: 201, Neg. LLF: 86.76406482266121
Iteration: 17, Func. Count: 213, Neg. LLF: 86.69503196918912
Iteration: 18, Func. Count: 225, Neg. LLF: 86.66658624972916
Iteration: 19, Func. Count: 237, Neg. LLF: 86.65991143399452
Iteration: 20, Func. Count: 249, Neg. LLF: 86.658547550086
Iteration: 21, Func. Count: 261, Neg. LLF: 86.65832284348974
Iteration: 22, Func. Count: 273, Neg. LLF: 86.6582892515711
Iteration: 23, Func. Count: 285, Neg. LLF: 86.65822172084444
Iteration: 24, Func. Count: 297, Neg. LLF: 86.65821316388956
Iteration: 25, Func. Count: 309, Neg. LLF: 86.65821240784335
Optimization terminated successfully (Exit mode 0)
Current function value: 86.65821240784335
Iterations: 25
Function evaluations: 309
Gradient evaluations: 25
Iteration: 1, Func. Count: 10, Neg. LLF: 108.17207947148647
Iteration: 2, Func. Count: 21, Neg. LLF: 2433464.3236589776
Iteration: 3, Func. Count: 31, Neg. LLF: 6217961.7475641435
Iteration: 4, Func. Count: 41, Neg. LLF: 5187391.567906748
Iteration: 5, Func. Count: 51, Neg. LLF: 5580641.1091291
Iteration: 6, Func. Count: 61, Neg. LLF: 5935210.696089893
Iteration: 7, Func. Count: 71, Neg. LLF: 97.76615640866144
Iteration: 8, Func. Count: 81, Neg. LLF: 89.68318211197469
Iteration: 9, Func. Count: 90, Neg. LLF: 89.73209081220786
Iteration: 10, Func. Count: 100, Neg. LLF: 110.14846928683716
Iteration: 11, Func. Count: 111, Neg. LLF: 89.50364834642343
Iteration: 12, Func. Count: 120, Neg. LLF: 89.49354298621557
Iteration: 13, Func. Count: 129, Neg. LLF: 89.48807896101327
Iteration: 14, Func. Count: 138, Neg. LLF: 89.48619073596046
Iteration: 15, Func. Count: 147, Neg. LLF: 89.48520251898637
Iteration: 16, Func. Count: 156, Neg. LLF: 89.48478526364532
Iteration: 17, Func. Count: 165, Neg. LLF: 89.48426226489029
Iteration: 18, Func. Count: 174, Neg. LLF: 89.48404647962113
Iteration: 19, Func. Count: 183, Neg. LLF: 89.48401158348986
Iteration: 20, Func. Count: 192, Neg. LLF: 89.48401034616934
Iteration: 21, Func. Count: 200, Neg. LLF: 89.48401036212155
Optimization terminated successfully (Exit mode 0)
Current function value: 89.48401034616934
Iterations: 21
Function evaluations: 200
Gradient evaluations: 21
Iteration: 1, Func. Count: 11, Neg. LLF: 27154969.4071297
Iteration: 2, Func. Count: 23, Neg. LLF: 3835109.345268866
Iteration: 3, Func. Count: 35, Neg. LLF: 121.81163728631445
Iteration: 4, Func. Count: 46, Neg. LLF: 90.23551337731662
Iteration: 5, Func. Count: 57, Neg. LLF: 89.18941524818959
Iteration: 6, Func. Count: 67, Neg. LLF: 90.35161665722796
Iteration: 7, Func. Count: 80, Neg. LLF: 89.07125231066017
Iteration: 8, Func. Count: 90, Neg. LLF: 89.03414843164146
Iteration: 9, Func. Count: 100, Neg. LLF: 89.01617767250274
Iteration: 10, Func. Count: 110, Neg. LLF: 89.00948979111752
Iteration: 11, Func. Count: 120, Neg. LLF: 89.0085292650409
Iteration: 12, Func. Count: 130, Neg. LLF: 89.00842204616295
Iteration: 13, Func. Count: 140, Neg. LLF: 89.00840737850045
Iteration: 14, Func. Count: 149, Neg. LLF: 89.00840737847896
Optimization terminated successfully (Exit mode 0)
Current function value: 89.00840737850045
Iterations: 14
Function evaluations: 149
Gradient evaluations: 14
Iteration: 1, Func. Count: 12, Neg. LLF: 20456281.124385137
Iteration: 2, Func. Count: 25, Neg. LLF: 7113264.999713663
Iteration: 3, Func. Count: 37, Neg. LLF: 158.8220394754118
Iteration: 4, Func. Count: 49, Neg. LLF: 89.93451754937672
Iteration: 5, Func. Count: 61, Neg. LLF: 89.22208563743243
Iteration: 6, Func. Count: 73, Neg. LLF: 93.2271501674438
Iteration: 7, Func. Count: 85, Neg. LLF: 88.18497322687806
Iteration: 8, Func. Count: 96, Neg. LLF: 88.21309138697808
Iteration: 9, Func. Count: 108, Neg. LLF: 88.16437147549188
Iteration: 10, Func. Count: 119, Neg. LLF: 88.16395528580033
Iteration: 11, Func. Count: 130, Neg. LLF: 88.16376385450978
Iteration: 12, Func. Count: 141, Neg. LLF: 88.1637263956368
Iteration: 13, Func. Count: 152, Neg. LLF: 88.1637159144535
Iteration: 14, Func. Count: 163, Neg. LLF: 88.1637131749096
Iteration: 15, Func. Count: 173, Neg. LLF: 88.16371317497897
Optimization terminated successfully (Exit mode 0)
Current function value: 88.1637131749096
Iterations: 15
Function evaluations: 173
Gradient evaluations: 15
Iteration: 1, Func. Count: 13, Neg. LLF: 24469410.516976576
Iteration: 2, Func. Count: 26, Neg. LLF: 2088481.3284554721
Iteration: 3, Func. Count: 39, Neg. LLF: 163.09850696474933
Iteration: 4, Func. Count: 52, Neg. LLF: 89.78815655211675
Iteration: 5, Func. Count: 65, Neg. LLF: 88.01584437369256
Iteration: 6, Func. Count: 77, Neg. LLF: 87.64143639615892
Iteration: 7, Func. Count: 89, Neg. LLF: 87.94673776191958
Iteration: 8, Func. Count: 103, Neg. LLF: 90.02121264522735
Iteration: 9, Func. Count: 116, Neg. LLF: 87.37899603657871
Iteration: 10, Func. Count: 128, Neg. LLF: 87.34032155031547
Iteration: 11, Func. Count: 140, Neg. LLF: 87.44136199703897
Iteration: 12, Func. Count: 153, Neg. LLF: 87.37082761321399
Iteration: 13, Func. Count: 166, Neg. LLF: 87.31954132840147
Iteration: 14, Func. Count: 178, Neg. LLF: 87.31802133121803
Iteration: 15, Func. Count: 190, Neg. LLF: 87.31614208086914
Iteration: 16, Func. Count: 202, Neg. LLF: 87.31395429924855
Iteration: 17, Func. Count: 214, Neg. LLF: 87.31276361239809
Iteration: 18, Func. Count: 226, Neg. LLF: 87.31252171098826
Iteration: 19, Func. Count: 238, Neg. LLF: 87.31250754696397
Iteration: 20, Func. Count: 249, Neg. LLF: 87.31250754692408
Optimization terminated successfully (Exit mode 0)
Current function value: 87.31250754696397
Iterations: 20
Function evaluations: 249
Gradient evaluations: 20
Iteration: 1, Func. Count: 14, Neg. LLF: 30040794.619373444
Iteration: 2, Func. Count: 28, Neg. LLF: 242726707.54759046
Iteration: 3, Func. Count: 43, Neg. LLF: 6249187.505741617
Iteration: 4, Func. Count: 57, Neg. LLF: 90.38416269020799
Iteration: 5, Func. Count: 71, Neg. LLF: 88.15446350613806
Iteration: 6, Func. Count: 84, Neg. LLF: 96.30651872235082
Iteration: 7, Func. Count: 98, Neg. LLF: 87.66020690192315
Iteration: 8, Func. Count: 111, Neg. LLF: 90.52929093518492
Iteration: 9, Func. Count: 125, Neg. LLF: 87.58649395878811
Iteration: 10, Func. Count: 138, Neg. LLF: 87.41118998712766
Iteration: 11, Func. Count: 151, Neg. LLF: 87.38120675032191
Iteration: 12, Func. Count: 164, Neg. LLF: 87.26323551067468
Iteration: 13, Func. Count: 177, Neg. LLF: 87.32979329446395
Iteration: 14, Func. Count: 191, Neg. LLF: 86.76042101758603
Iteration: 15, Func. Count: 204, Neg. LLF: 86.79489237041018
Iteration: 16, Func. Count: 218, Neg. LLF: 86.6733440322096
Iteration: 17, Func. Count: 231, Neg. LLF: 86.66174888102938
Iteration: 18, Func. Count: 244, Neg. LLF: 86.6600525515236
Iteration: 19, Func. Count: 257, Neg. LLF: 86.65906194460068
Iteration: 20, Func. Count: 270, Neg. LLF: 86.6585146697763
Iteration: 21, Func. Count: 283, Neg. LLF: 86.65823401175106
Iteration: 22, Func. Count: 296, Neg. LLF: 86.65821310775647
Iteration: 23, Func. Count: 309, Neg. LLF: 86.658212396473
Optimization terminated successfully (Exit mode 0)
Current function value: 86.658212396473
Iterations: 23
Function evaluations: 309
Gradient evaluations: 23
Iteration: 1, Func. Count: 7, Neg. LLF: 123.54807134970659
Iteration: 2, Func. Count: 15, Neg. LLF: 163.24056985749135
Iteration: 3, Func. Count: 22, Neg. LLF: 56071.43489598044
Iteration: 4, Func. Count: 29, Neg. LLF: 3435.7440329842275
Iteration: 5, Func. Count: 36, Neg. LLF: 95135.0837064317
Iteration: 6, Func. Count: 43, Neg. LLF: 92.76749685032863
Iteration: 7, Func. Count: 50, Neg. LLF: 90.14573130376604
Iteration: 8, Func. Count: 56, Neg. LLF: 90.1185947272947
Iteration: 9, Func. Count: 62, Neg. LLF: 94.94286999136783
Iteration: 10, Func. Count: 70, Neg. LLF: 90.09146828809439
Iteration: 11, Func. Count: 76, Neg. LLF: 90.09218581654893
Iteration: 12, Func. Count: 83, Neg. LLF: 90.08824373131056
Iteration: 13, Func. Count: 89, Neg. LLF: 90.0875742338199
Iteration: 14, Func. Count: 95, Neg. LLF: 90.08756821222345
Iteration: 15, Func. Count: 100, Neg. LLF: 90.08756821222403
Optimization terminated successfully (Exit mode 0)
Current function value: 90.08756821222345
Iterations: 15
Function evaluations: 100
Gradient evaluations: 15
Iteration: 1, Func. Count: 8, Neg. LLF: 79850006.28701913
Iteration: 2, Func. Count: 17, Neg. LLF: 83372.455311777
Iteration: 3, Func. Count: 25, Neg. LLF: 123.38399921246106
Iteration: 4, Func. Count: 33, Neg. LLF: 91.68572998759221
Iteration: 5, Func. Count: 41, Neg. LLF: 89.78017656277017
Iteration: 6, Func. Count: 48, Neg. LLF: 89.54105705841138
Iteration: 7, Func. Count: 55, Neg. LLF: 89.52856654542526
Iteration: 8, Func. Count: 62, Neg. LLF: 89.5028651721806
Iteration: 9, Func. Count: 69, Neg. LLF: 91.71791657224173
Iteration: 10, Func. Count: 77, Neg. LLF: 91.35792293373834
Iteration: 11, Func. Count: 85, Neg. LLF: 90.70859142834249
Iteration: 12, Func. Count: 94, Neg. LLF: 89.5360825324369
Iteration: 13, Func. Count: 102, Neg. LLF: 89.19824832636229
Iteration: 14, Func. Count: 109, Neg. LLF: 89.28233518892492
Iteration: 15, Func. Count: 117, Neg. LLF: 88.71030800671927
Iteration: 16, Func. Count: 124, Neg. LLF: 88.24341598912086
Iteration: 17, Func. Count: 131, Neg. LLF: 88.05071551101385
Iteration: 18, Func. Count: 138, Neg. LLF: 88.04849532949665
Iteration: 19, Func. Count: 146, Neg. LLF: 88.04793752467518
Iteration: 20, Func. Count: 154, Neg. LLF: 88.03284417543645
Iteration: 21, Func. Count: 161, Neg. LLF: 551525.5060210204
Iteration: 22, Func. Count: 172, Neg. LLF: 88.03646471780665
Optimization terminated successfully (Exit mode 0)
Current function value: 88.03284236703227
Iterations: 23
Function evaluations: 174
Gradient evaluations: 22
Iteration: 1, Func. Count: 9, Neg. LLF: 79578679.35562706
Iteration: 2, Func. Count: 19, Neg. LLF: 2754.7310168833046
Iteration: 3, Func. Count: 29, Neg. LLF: 133.49718269309932
Iteration: 4, Func. Count: 38, Neg. LLF: 92.83745069771065
Iteration: 5, Func. Count: 47, Neg. LLF: 90.12128156896347
Iteration: 6, Func. Count: 56, Neg. LLF: 88.98228016630652
Iteration: 7, Func. Count: 64, Neg. LLF: 88.81752869044908
Iteration: 8, Func. Count: 72, Neg. LLF: 88.7963515951503
Iteration: 9, Func. Count: 80, Neg. LLF: 88.78694063330316
Iteration: 10, Func. Count: 88, Neg. LLF: 88.78522233642234
Iteration: 11, Func. Count: 96, Neg. LLF: 88.78414222667342
Iteration: 12, Func. Count: 104, Neg. LLF: 88.7841187267458
Iteration: 13, Func. Count: 112, Neg. LLF: 88.78411265417685
Iteration: 14, Func. Count: 120, Neg. LLF: 88.78410785364686
Iteration: 15, Func. Count: 128, Neg. LLF: 88.78410689685383
Optimization terminated successfully (Exit mode 0)
Current function value: 88.78410689685383
Iterations: 15
Function evaluations: 128
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 65036882.18888342
Iteration: 2, Func. Count: 20, Neg. LLF: 140021718.07457584
Iteration: 3, Func. Count: 31, Neg. LLF: 161.70346845972372
Iteration: 4, Func. Count: 41, Neg. LLF: 99.24790660424964
Iteration: 5, Func. Count: 52, Neg. LLF: 88.23483498553122
Iteration: 6, Func. Count: 61, Neg. LLF: 90.83327034760738
Iteration: 7, Func. Count: 71, Neg. LLF: 89.15883545354052
Iteration: 8, Func. Count: 82, Neg. LLF: 92.13470799478426
Iteration: 9, Func. Count: 92, Neg. LLF: 88.02667126675748
Iteration: 10, Func. Count: 102, Neg. LLF: 87.76503785755908
Iteration: 11, Func. Count: 111, Neg. LLF: 87.67376472515333
Iteration: 12, Func. Count: 120, Neg. LLF: 87.65289327960106
Iteration: 13, Func. Count: 129, Neg. LLF: 87.64492290713066
Iteration: 14, Func. Count: 138, Neg. LLF: 87.64141206732096
Iteration: 15, Func. Count: 147, Neg. LLF: 87.6406777459784
Iteration: 16, Func. Count: 156, Neg. LLF: 87.63940155280858
Iteration: 17, Func. Count: 165, Neg. LLF: 87.63920642094737
Iteration: 18, Func. Count: 174, Neg. LLF: 87.63917905638338
Iteration: 19, Func. Count: 182, Neg. LLF: 87.6391790562818
Optimization terminated successfully (Exit mode 0)
Current function value: 87.63917905638338
Iterations: 19
Function evaluations: 182
Gradient evaluations: 19
Iteration: 1, Func. Count: 11, Neg. LLF: 55653246.91404613
Iteration: 2, Func. Count: 22, Neg. LLF: 161424720.5511235
Iteration: 3, Func. Count: 34, Neg. LLF: 126.30911038001014
Iteration: 4, Func. Count: 45, Neg. LLF: 92.08432208868233
Iteration: 5, Func. Count: 56, Neg. LLF: 88.19516439457317
Iteration: 6, Func. Count: 66, Neg. LLF: 99.93351514720591
Iteration: 7, Func. Count: 77, Neg. LLF: 93.66446204313365
Iteration: 8, Func. Count: 88, Neg. LLF: 90.46842444002554
Iteration: 9, Func. Count: 99, Neg. LLF: 92.31376560453825
Iteration: 10, Func. Count: 110, Neg. LLF: 87.71029225017844
Iteration: 11, Func. Count: 120, Neg. LLF: 87.66637020911102
Iteration: 12, Func. Count: 130, Neg. LLF: 87.65409365529179
Iteration: 13, Func. Count: 140, Neg. LLF: 87.64694774578427
Iteration: 14, Func. Count: 150, Neg. LLF: 87.64396514050097
Iteration: 15, Func. Count: 160, Neg. LLF: 87.64077240806138
Iteration: 16, Func. Count: 170, Neg. LLF: 87.63989929952207
Iteration: 17, Func. Count: 180, Neg. LLF: 87.63925601627834
Iteration: 18, Func. Count: 190, Neg. LLF: 87.63918372849085
Iteration: 19, Func. Count: 200, Neg. LLF: 87.63917882914907
Iteration: 20, Func. Count: 209, Neg. LLF: 87.63917883976168
Optimization terminated successfully (Exit mode 0)
Current function value: 87.63917882914907
Iterations: 20
Function evaluations: 209
Gradient evaluations: 20
Iteration: 1, Func. Count: 8, Neg. LLF: 122.79521277720876
Iteration: 2, Func. Count: 17, Neg. LLF: 166.64660751692068
Iteration: 3, Func. Count: 25, Neg. LLF: 842779.6085188707
Iteration: 4, Func. Count: 33, Neg. LLF: 254035.9712412797
Iteration: 5, Func. Count: 41, Neg. LLF: 92811.37332440524
Iteration: 6, Func. Count: 49, Neg. LLF: 93.10117889894715
Iteration: 7, Func. Count: 57, Neg. LLF: 90.16037356610292
Iteration: 8, Func. Count: 64, Neg. LLF: 90.1224771919711
Iteration: 9, Func. Count: 71, Neg. LLF: 94.50612361617256
Iteration: 10, Func. Count: 80, Neg. LLF: 90.0900776041149
Iteration: 11, Func. Count: 87, Neg. LLF: 90.08969382656157
Iteration: 12, Func. Count: 94, Neg. LLF: 90.08808207102179
Iteration: 13, Func. Count: 101, Neg. LLF: 90.08764756504617
Iteration: 14, Func. Count: 108, Neg. LLF: 90.08756995929654
Iteration: 15, Func. Count: 115, Neg. LLF: 90.0875681561489
Iteration: 16, Func. Count: 121, Neg. LLF: 90.08756807846409
Optimization terminated successfully (Exit mode 0)
Current function value: 90.0875681561489
Iterations: 16
Function evaluations: 121
Gradient evaluations: 16
Iteration: 1, Func. Count: 9, Neg. LLF: 72708231.956139
Iteration: 2, Func. Count: 19, Neg. LLF: 999.3563082388196
Iteration: 3, Func. Count: 28, Neg. LLF: 127.9991380241474
Iteration: 4, Func. Count: 37, Neg. LLF: 91.71274590525253
Iteration: 5, Func. Count: 46, Neg. LLF: 89.83297889023736
Iteration: 6, Func. Count: 54, Neg. LLF: 89.54113152338755
Iteration: 7, Func. Count: 62, Neg. LLF: 89.52952759011532
Iteration: 8, Func. Count: 70, Neg. LLF: 89.51520347960498
Iteration: 9, Func. Count: 78, Neg. LLF: 91.96866625468364
Iteration: 10, Func. Count: 87, Neg. LLF: 91.78423203256489
Iteration: 11, Func. Count: 96, Neg. LLF: 91.51988941409091
Iteration: 12, Func. Count: 105, Neg. LLF: 91.24992295838292
Iteration: 13, Func. Count: 114, Neg. LLF: 89.82948413695198
Iteration: 14, Func. Count: 123, Neg. LLF: 89.64676564258474
Iteration: 15, Func. Count: 132, Neg. LLF: 89.08884376526551
Iteration: 16, Func. Count: 140, Neg. LLF: 99.01489992666963
Iteration: 17, Func. Count: 149, Neg. LLF: 98.59913522490673
Iteration: 18, Func. Count: 158, Neg. LLF: 89.4522503208708
Iteration: 19, Func. Count: 167, Neg. LLF: 88.40943109353753
Iteration: 20, Func. Count: 175, Neg. LLF: 90.17693388759054
Iteration: 21, Func. Count: 184, Neg. LLF: 88.56124258879318
Iteration: 22, Func. Count: 193, Neg. LLF: 88.05042422538868
Iteration: 23, Func. Count: 201, Neg. LLF: 88.0384108544089
Iteration: 24, Func. Count: 209, Neg. LLF: 88.03308102124753
Iteration: 25, Func. Count: 217, Neg. LLF: 88.03285609555715
Iteration: 26, Func. Count: 225, Neg. LLF: 88.03284218130482
Iteration: 27, Func. Count: 232, Neg. LLF: 88.03284218151686
Optimization terminated successfully (Exit mode 0)
Current function value: 88.03284218130482
Iterations: 28
Function evaluations: 232
Gradient evaluations: 27
Iteration: 1, Func. Count: 10, Neg. LLF: 74020974.25061172
Iteration: 2, Func. Count: 21, Neg. LLF: 514.492313422671
Iteration: 3, Func. Count: 32, Neg. LLF: 117.48664412730795
Iteration: 4, Func. Count: 42, Neg. LLF: 92.75809687954609
Iteration: 5, Func. Count: 52, Neg. LLF: 89.92979384614296
Iteration: 6, Func. Count: 62, Neg. LLF: 88.79576300241915
Iteration: 7, Func. Count: 71, Neg. LLF: 88.79987141208646
Iteration: 8, Func. Count: 81, Neg. LLF: 88.80285163602912
Iteration: 9, Func. Count: 91, Neg. LLF: 88.78450588562126
Iteration: 10, Func. Count: 100, Neg. LLF: 88.78413429463184
Iteration: 11, Func. Count: 109, Neg. LLF: 88.7841200909218
Iteration: 12, Func. Count: 118, Neg. LLF: 88.78411028630728
Iteration: 13, Func. Count: 127, Neg. LLF: 88.78410707552105
Iteration: 14, Func. Count: 135, Neg. LLF: 88.78410707555771
Optimization terminated successfully (Exit mode 0)
Current function value: 88.78410707552105
Iterations: 14
Function evaluations: 135
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 60179812.70483596
Iteration: 2, Func. Count: 22, Neg. LLF: 149384653.74858814
Iteration: 3, Func. Count: 34, Neg. LLF: 176.06270036811367
Iteration: 4, Func. Count: 45, Neg. LLF: 97.92619290444624
Iteration: 5, Func. Count: 56, Neg. LLF: 88.0295223684183
Iteration: 6, Func. Count: 66, Neg. LLF: 92.31558592172587
Iteration: 7, Func. Count: 77, Neg. LLF: 88.6165954882909
Iteration: 8, Func. Count: 89, Neg. LLF: 91.82821919087947
Iteration: 9, Func. Count: 100, Neg. LLF: 88.01532051375257
Iteration: 10, Func. Count: 111, Neg. LLF: 87.70872893979886
Iteration: 11, Func. Count: 121, Neg. LLF: 87.65743378047405
Iteration: 12, Func. Count: 131, Neg. LLF: 87.6472759681485
Iteration: 13, Func. Count: 141, Neg. LLF: 87.64391359097385
Iteration: 14, Func. Count: 151, Neg. LLF: 87.64116667927465
Iteration: 15, Func. Count: 161, Neg. LLF: 87.63987238120644
Iteration: 16, Func. Count: 171, Neg. LLF: 87.63936616447593
Iteration: 17, Func. Count: 181, Neg. LLF: 87.63918739603685
Iteration: 18, Func. Count: 191, Neg. LLF: 87.63917876933446
Iteration: 19, Func. Count: 200, Neg. LLF: 87.63917876935369
Optimization terminated successfully (Exit mode 0)
Current function value: 87.63917876933446
Iterations: 19
Function evaluations: 200
Gradient evaluations: 19
Iteration: 1, Func. Count: 12, Neg. LLF: 51458977.79249385
Iteration: 2, Func. Count: 24, Neg. LLF: 175107752.09468213
Iteration: 3, Func. Count: 37, Neg. LLF: 129.98506706556603
Iteration: 4, Func. Count: 49, Neg. LLF: 91.86194808808128
Iteration: 5, Func. Count: 61, Neg. LLF: 88.1398862448003
Iteration: 6, Func. Count: 72, Neg. LLF: 100.87337509856879
Iteration: 7, Func. Count: 84, Neg. LLF: 93.0300136214762
Iteration: 8, Func. Count: 96, Neg. LLF: 90.44648023419181
Iteration: 9, Func. Count: 108, Neg. LLF: 92.18253506805576
Iteration: 10, Func. Count: 120, Neg. LLF: 87.69017439102993
Iteration: 11, Func. Count: 131, Neg. LLF: 87.65737281831048
Iteration: 12, Func. Count: 142, Neg. LLF: 87.64913336189647
Iteration: 13, Func. Count: 153, Neg. LLF: 87.64425400174645
Iteration: 14, Func. Count: 164, Neg. LLF: 87.6423611931532
Iteration: 15, Func. Count: 175, Neg. LLF: 87.64025305070994
Iteration: 16, Func. Count: 186, Neg. LLF: 87.63958784369571
Iteration: 17, Func. Count: 197, Neg. LLF: 87.63920378882189
Iteration: 18, Func. Count: 208, Neg. LLF: 87.63917988866974
Iteration: 19, Func. Count: 219, Neg. LLF: 87.63917875127726
Iteration: 20, Func. Count: 229, Neg. LLF: 87.63917876187655
Optimization terminated successfully (Exit mode 0)
Current function value: 87.63917875127726
Iterations: 20
Function evaluations: 229
Gradient evaluations: 20
Iteration: 1, Func. Count: 9, Neg. LLF: 122.62506148510342
Iteration: 2, Func. Count: 19, Neg. LLF: 168.62371322844234
Iteration: 3, Func. Count: 28, Neg. LLF: 973311.117187603
Iteration: 4, Func. Count: 37, Neg. LLF: 652.2253998802679
Iteration: 5, Func. Count: 46, Neg. LLF: 212.27869245485775
Iteration: 6, Func. Count: 55, Neg. LLF: 201.62186138984225
Iteration: 7, Func. Count: 64, Neg. LLF: 225.89581986484302
Iteration: 8, Func. Count: 73, Neg. LLF: 220.32337725784646
Iteration: 9, Func. Count: 82, Neg. LLF: 94.42607319194364
Iteration: 10, Func. Count: 91, Neg. LLF: 89.90988411110311
Iteration: 11, Func. Count: 99, Neg. LLF: 89.7334004528502
Iteration: 12, Func. Count: 107, Neg. LLF: 98.14475487780814
Iteration: 13, Func. Count: 117, Neg. LLF: 89.62846653107171
Iteration: 14, Func. Count: 125, Neg. LLF: 89.63513928263033
Iteration: 15, Func. Count: 134, Neg. LLF: 89.6551304209208
Iteration: 16, Func. Count: 143, Neg. LLF: 89.60952456991959
Iteration: 17, Func. Count: 151, Neg. LLF: 89.60930540985584
Iteration: 18, Func. Count: 159, Neg. LLF: 89.60921650387134
Iteration: 19, Func. Count: 167, Neg. LLF: 89.60915224178733
Iteration: 20, Func. Count: 175, Neg. LLF: 89.60915057114818
Iteration: 21, Func. Count: 182, Neg. LLF: 89.60915057115456
Optimization terminated successfully (Exit mode 0)
Current function value: 89.60915057114818
Iterations: 21
Function evaluations: 182
Gradient evaluations: 21
Iteration: 1, Func. Count: 10, Neg. LLF: 20472126.896431517
Iteration: 2, Func. Count: 21, Neg. LLF: 113.16551517684653
Iteration: 3, Func. Count: 31, Neg. LLF: 104.85908887170599
Iteration: 4, Func. Count: 41, Neg. LLF: 91.62927740845882
Iteration: 5, Func. Count: 51, Neg. LLF: 89.49532514059696
Iteration: 6, Func. Count: 60, Neg. LLF: 90.6569635361627
Iteration: 7, Func. Count: 71, Neg. LLF: 89.6656003947481
Iteration: 8, Func. Count: 81, Neg. LLF: 91.21046935106604
Iteration: 9, Func. Count: 91, Neg. LLF: 91.06559737214965
Iteration: 10, Func. Count: 101, Neg. LLF: 90.63074739866678
Iteration: 11, Func. Count: 111, Neg. LLF: 90.27558445698803
Iteration: 12, Func. Count: 121, Neg. LLF: 96.1522977959639
Iteration: 13, Func. Count: 131, Neg. LLF: 96.58331141436975
Iteration: 14, Func. Count: 141, Neg. LLF: 98.20678411235068
Iteration: 15, Func. Count: 151, Neg. LLF: 88.31135778143195
Iteration: 16, Func. Count: 160, Neg. LLF: 88.92607446857855
Iteration: 17, Func. Count: 170, Neg. LLF: 110.33829360926231
Iteration: 18, Func. Count: 182, Neg. LLF: 88.21015708865919
Iteration: 19, Func. Count: 192, Neg. LLF: 88.03699262835795
Iteration: 20, Func. Count: 201, Neg. LLF: 88.0331876648088
Iteration: 21, Func. Count: 210, Neg. LLF: 88.03284796124578
Iteration: 22, Func. Count: 219, Neg. LLF: 88.03284224064637
Iteration: 23, Func. Count: 227, Neg. LLF: 88.03284224068857
Optimization terminated successfully (Exit mode 0)
Current function value: 88.03284224064637
Iterations: 24
Function evaluations: 227
Gradient evaluations: 23
Iteration: 1, Func. Count: 11, Neg. LLF: 73417041.34213826
Iteration: 2, Func. Count: 23, Neg. LLF: 1381.8651050292558
Iteration: 3, Func. Count: 35, Neg. LLF: 121.34892319772014
Iteration: 4, Func. Count: 46, Neg. LLF: 92.80925301758764
Iteration: 5, Func. Count: 57, Neg. LLF: 89.99369083893484
Iteration: 6, Func. Count: 68, Neg. LLF: 88.81657144724592
Iteration: 7, Func. Count: 78, Neg. LLF: 88.80632161011093
Iteration: 8, Func. Count: 89, Neg. LLF: 90.75242319405854
Iteration: 9, Func. Count: 101, Neg. LLF: 88.7885315213446
Iteration: 10, Func. Count: 112, Neg. LLF: 88.78349049250507
Iteration: 11, Func. Count: 122, Neg. LLF: 88.78311845684833
Iteration: 12, Func. Count: 132, Neg. LLF: 88.78311266517635
Iteration: 13, Func. Count: 141, Neg. LLF: 88.7831126650124
Optimization terminated successfully (Exit mode 0)
Current function value: 88.78311266517635
Iterations: 13
Function evaluations: 141
Gradient evaluations: 13
Iteration: 1, Func. Count: 12, Neg. LLF: 59897378.38970138
Iteration: 2, Func. Count: 24, Neg. LLF: 149073047.6922731
Iteration: 3, Func. Count: 37, Neg. LLF: 174.16586379399024
Iteration: 4, Func. Count: 49, Neg. LLF: 97.75576235062239
Iteration: 5, Func. Count: 61, Neg. LLF: 88.01230039656359
Iteration: 6, Func. Count: 72, Neg. LLF: 92.70418365078112
Iteration: 7, Func. Count: 84, Neg. LLF: 90.70373869761148
Iteration: 8, Func. Count: 96, Neg. LLF: 88.26033887450686
Iteration: 9, Func. Count: 108, Neg. LLF: 87.72091851792193
Iteration: 10, Func. Count: 119, Neg. LLF: 87.98381189055851
Iteration: 11, Func. Count: 131, Neg. LLF: 87.61138074215502
Iteration: 12, Func. Count: 142, Neg. LLF: 87.59828917031064
Iteration: 13, Func. Count: 153, Neg. LLF: 87.58601702646922
Iteration: 14, Func. Count: 164, Neg. LLF: 87.5827765061833
Iteration: 15, Func. Count: 175, Neg. LLF: 87.58042188379055
Iteration: 16, Func. Count: 186, Neg. LLF: 87.58037032956393
Iteration: 17, Func. Count: 197, Neg. LLF: 87.58036728494851
Iteration: 18, Func. Count: 207, Neg. LLF: 87.58036728497481
Optimization terminated successfully (Exit mode 0)
Current function value: 87.58036728494851
Iterations: 18
Function evaluations: 207
Gradient evaluations: 18
Iteration: 1, Func. Count: 13, Neg. LLF: 51054482.205522366
Iteration: 2, Func. Count: 26, Neg. LLF: 175407989.8695758
Iteration: 3, Func. Count: 40, Neg. LLF: 129.11806671452757
Iteration: 4, Func. Count: 53, Neg. LLF: 91.83039022013595
Iteration: 5, Func. Count: 66, Neg. LLF: 88.10277499268518
Iteration: 6, Func. Count: 78, Neg. LLF: 100.01937779303847
Iteration: 7, Func. Count: 91, Neg. LLF: 99.91730812442734
Iteration: 8, Func. Count: 105, Neg. LLF: 91.39140122454862
Iteration: 9, Func. Count: 118, Neg. LLF: 90.83618348616109
Iteration: 10, Func. Count: 131, Neg. LLF: 91.09659651690062
Iteration: 11, Func. Count: 144, Neg. LLF: 87.62335504487257
Iteration: 12, Func. Count: 156, Neg. LLF: 87.5904203054875
Iteration: 13, Func. Count: 168, Neg. LLF: 87.58561703873981
Iteration: 14, Func. Count: 180, Neg. LLF: 87.5836925487592
Iteration: 15, Func. Count: 192, Neg. LLF: 87.58230887754931
Iteration: 16, Func. Count: 204, Neg. LLF: 87.5805412950387
Iteration: 17, Func. Count: 216, Neg. LLF: 87.58037631364645
Iteration: 18, Func. Count: 228, Neg. LLF: 87.58036763819976
Iteration: 19, Func. Count: 239, Neg. LLF: 87.58036765576921
Optimization terminated successfully (Exit mode 0)
Current function value: 87.58036763819976
Iterations: 19
Function evaluations: 239
Gradient evaluations: 19
Iteration: 1, Func. Count: 10, Neg. LLF: 131.98666850020135
Iteration: 2, Func. Count: 21, Neg. LLF: 364.73602143143165
Iteration: 3, Func. Count: 31, Neg. LLF: 6331130.989981204
Iteration: 4, Func. Count: 41, Neg. LLF: 501.7942803926289
Iteration: 5, Func. Count: 51, Neg. LLF: 800.7858673079727
Iteration: 6, Func. Count: 61, Neg. LLF: 117.4804333334264
Iteration: 7, Func. Count: 71, Neg. LLF: 89.6707087339524
Iteration: 8, Func. Count: 80, Neg. LLF: 94.02947085239158
Iteration: 9, Func. Count: 90, Neg. LLF: 109.16021551195551
Iteration: 10, Func. Count: 100, Neg. LLF: 89.70971671654397
Iteration: 11, Func. Count: 110, Neg. LLF: 89.3527447460339
Iteration: 12, Func. Count: 119, Neg. LLF: 89.29062838683045
Iteration: 13, Func. Count: 128, Neg. LLF: 89.29470430176968
Iteration: 14, Func. Count: 138, Neg. LLF: 89.27735562682246
Iteration: 15, Func. Count: 147, Neg. LLF: 89.27713778173366
Iteration: 16, Func. Count: 156, Neg. LLF: 89.27698209809813
Iteration: 17, Func. Count: 165, Neg. LLF: 89.27694230962977
Iteration: 18, Func. Count: 174, Neg. LLF: 89.27690579032074
Iteration: 19, Func. Count: 183, Neg. LLF: 89.2768916195721
Iteration: 20, Func. Count: 192, Neg. LLF: 89.27688867144127
Iteration: 21, Func. Count: 200, Neg. LLF: 89.27688867145004
Optimization terminated successfully (Exit mode 0)
Current function value: 89.27688867144127
Iterations: 21
Function evaluations: 200
Gradient evaluations: 21
Iteration: 1, Func. Count: 11, Neg. LLF: 24054496.458530392
Iteration: 2, Func. Count: 23, Neg. LLF: 165.67507609495917
Iteration: 3, Func. Count: 35, Neg. LLF: 93.59834567990704
Iteration: 4, Func. Count: 46, Neg. LLF: 90.34650785198696
Iteration: 5, Func. Count: 57, Neg. LLF: 89.27727097021277
Iteration: 6, Func. Count: 67, Neg. LLF: 89.98523266762038
Iteration: 7, Func. Count: 79, Neg. LLF: 90.69780541829725
Iteration: 8, Func. Count: 90, Neg. LLF: 89.03219445450733
Iteration: 9, Func. Count: 100, Neg. LLF: 89.01547282829574
Iteration: 10, Func. Count: 110, Neg. LLF: 89.00923658869412
Iteration: 11, Func. Count: 120, Neg. LLF: 89.00856694402043
Iteration: 12, Func. Count: 130, Neg. LLF: 89.00840790398809
Iteration: 13, Func. Count: 140, Neg. LLF: 89.00840688952059
Iteration: 14, Func. Count: 149, Neg. LLF: 89.00840688952347
Optimization terminated successfully (Exit mode 0)
Current function value: 89.00840688952059
Iterations: 14
Function evaluations: 149
Gradient evaluations: 14
Iteration: 1, Func. Count: 12, Neg. LLF: 17920973.52239281
Iteration: 2, Func. Count: 25, Neg. LLF: 480.53103997880993
Iteration: 3, Func. Count: 37, Neg. LLF: 109.9171066741493
Iteration: 4, Func. Count: 49, Neg. LLF: 90.01114566444411
Iteration: 5, Func. Count: 61, Neg. LLF: 89.23583293321788
Iteration: 6, Func. Count: 73, Neg. LLF: 99.67099753300191
Iteration: 7, Func. Count: 85, Neg. LLF: 93.89058859644506
Iteration: 8, Func. Count: 97, Neg. LLF: 88.21646203183148
Iteration: 9, Func. Count: 108, Neg. LLF: 88.18282697820617
Iteration: 10, Func. Count: 119, Neg. LLF: 88.16754817921304
Iteration: 11, Func. Count: 130, Neg. LLF: 88.16501843971609
Iteration: 12, Func. Count: 141, Neg. LLF: 88.16423824976579
Iteration: 13, Func. Count: 152, Neg. LLF: 88.16390332670227
Iteration: 14, Func. Count: 163, Neg. LLF: 88.16374150174386
Iteration: 15, Func. Count: 174, Neg. LLF: 88.16371916263932
Iteration: 16, Func. Count: 185, Neg. LLF: 88.16371337899496
Iteration: 17, Func. Count: 195, Neg. LLF: 88.16371337904607
Optimization terminated successfully (Exit mode 0)
Current function value: 88.16371337899496
Iterations: 17
Function evaluations: 195
Gradient evaluations: 17
Iteration: 1, Func. Count: 13, Neg. LLF: 7442521.124224992
Iteration: 2, Func. Count: 26, Neg. LLF: 141.89364068799154
Iteration: 3, Func. Count: 39, Neg. LLF: 91.10598328486326
Iteration: 4, Func. Count: 52, Neg. LLF: 89.9373161613621
Iteration: 5, Func. Count: 65, Neg. LLF: 99.73236921386064
Iteration: 6, Func. Count: 78, Neg. LLF: 108.88631956689584
Iteration: 7, Func. Count: 91, Neg. LLF: 87.33894825683002
Iteration: 8, Func. Count: 103, Neg. LLF: 96.13950347176424
Iteration: 9, Func. Count: 117, Neg. LLF: 98.3032098485727
Iteration: 10, Func. Count: 130, Neg. LLF: 96.6310433696352
Iteration: 11, Func. Count: 145, Neg. LLF: 87.14040012927958
Iteration: 12, Func. Count: 157, Neg. LLF: 87.11848066737126
Iteration: 13, Func. Count: 169, Neg. LLF: 87.10700637628294
Iteration: 14, Func. Count: 181, Neg. LLF: 87.10504815729048
Iteration: 15, Func. Count: 193, Neg. LLF: 87.10400144851133
Iteration: 16, Func. Count: 205, Neg. LLF: 87.10368303264138
Iteration: 17, Func. Count: 217, Neg. LLF: 87.10363839024258
Iteration: 18, Func. Count: 229, Neg. LLF: 87.10361836008548
Iteration: 19, Func. Count: 241, Neg. LLF: 87.10361223693576
Iteration: 20, Func. Count: 253, Neg. LLF: 87.10361157065456
Optimization terminated successfully (Exit mode 0)
Current function value: 87.10361157065456
Iterations: 20
Function evaluations: 253
Gradient evaluations: 20
Iteration: 1, Func. Count: 14, Neg. LLF: 6588440.30803063
Iteration: 2, Func. Count: 28, Neg. LLF: 135.70507326135134
Iteration: 3, Func. Count: 42, Neg. LLF: 2454.0243704086065
Iteration: 4, Func. Count: 56, Neg. LLF: 91.2075271327982
Iteration: 5, Func. Count: 70, Neg. LLF: 88.63144343342356
Iteration: 6, Func. Count: 84, Neg. LLF: 91.10975735828767
Iteration: 7, Func. Count: 98, Neg. LLF: 98.67977717018161
Iteration: 8, Func. Count: 112, Neg. LLF: 239.1115628738208
Iteration: 9, Func. Count: 126, Neg. LLF: 87.02886808927836
Iteration: 10, Func. Count: 139, Neg. LLF: 86.71948453031379
Iteration: 11, Func. Count: 152, Neg. LLF: 87.13534352037207
Iteration: 12, Func. Count: 167, Neg. LLF: 86.6640856971423
Iteration: 13, Func. Count: 180, Neg. LLF: 86.66097042196613
Iteration: 14, Func. Count: 193, Neg. LLF: 86.65941733354609
Iteration: 15, Func. Count: 206, Neg. LLF: 86.65824758731154
Iteration: 16, Func. Count: 219, Neg. LLF: 86.65821404476198
Iteration: 17, Func. Count: 232, Neg. LLF: 86.65821250323182
Iteration: 18, Func. Count: 244, Neg. LLF: 86.65821250319482
Optimization terminated successfully (Exit mode 0)
Current function value: 86.65821250323182
Iterations: 18
Function evaluations: 244
Gradient evaluations: 18
Iteration: 1, Func. Count: 11, Neg. LLF: 138.13230850361577
Iteration: 2, Func. Count: 23, Neg. LLF: 330.9411255087406
Iteration: 3, Func. Count: 34, Neg. LLF: 6396179.67016546
Iteration: 4, Func. Count: 45, Neg. LLF: 195.99540721291842
Iteration: 5, Func. Count: 56, Neg. LLF: 243.53927499230906
Iteration: 6, Func. Count: 67, Neg. LLF: 100.3036515097665
Iteration: 7, Func. Count: 78, Neg. LLF: 90.29783653425457
Iteration: 8, Func. Count: 89, Neg. LLF: 89.41701526152552
Iteration: 9, Func. Count: 99, Neg. LLF: 170.17450518457557
Iteration: 10, Func. Count: 111, Neg. LLF: 89.74987178338915
Iteration: 11, Func. Count: 122, Neg. LLF: 89.3046991252254
Iteration: 12, Func. Count: 132, Neg. LLF: 89.28055274277665
Iteration: 13, Func. Count: 142, Neg. LLF: 89.2775131533957
Iteration: 14, Func. Count: 152, Neg. LLF: 89.27699208657661
Iteration: 15, Func. Count: 162, Neg. LLF: 89.2769343971472
Iteration: 16, Func. Count: 172, Neg. LLF: 89.27691676432303
Iteration: 17, Func. Count: 182, Neg. LLF: 89.27689237297281
Iteration: 18, Func. Count: 192, Neg. LLF: 89.27688882883936
Iteration: 19, Func. Count: 201, Neg. LLF: 89.27688888417416
Optimization terminated successfully (Exit mode 0)
Current function value: 89.27688882883936
Iterations: 19
Function evaluations: 201
Gradient evaluations: 19
Iteration: 1, Func. Count: 12, Neg. LLF: 17949243.772913396
Iteration: 2, Func. Count: 25, Neg. LLF: 187.49437415162183
Iteration: 3, Func. Count: 37, Neg. LLF: 92.40532978105014
Iteration: 4, Func. Count: 49, Neg. LLF: 98.12145283865043
Iteration: 5, Func. Count: 61, Neg. LLF: 89.21444626987186
Iteration: 6, Func. Count: 72, Neg. LLF: 90.71096331752545
Iteration: 7, Func. Count: 85, Neg. LLF: 89.1533843777309
Iteration: 8, Func. Count: 97, Neg. LLF: 89.02065928152312
Iteration: 9, Func. Count: 108, Neg. LLF: 89.01140251818484
Iteration: 10, Func. Count: 119, Neg. LLF: 89.00885032897511
Iteration: 11, Func. Count: 130, Neg. LLF: 89.00857243081175
Iteration: 12, Func. Count: 141, Neg. LLF: 89.00841640432766
Iteration: 13, Func. Count: 152, Neg. LLF: 89.00840824618115
Iteration: 14, Func. Count: 163, Neg. LLF: 89.00840684841025
Iteration: 15, Func. Count: 173, Neg. LLF: 89.00840684840172
Optimization terminated successfully (Exit mode 0)
Current function value: 89.00840684841025
Iterations: 15
Function evaluations: 173
Gradient evaluations: 15
Iteration: 1, Func. Count: 13, Neg. LLF: 57768522.682380535
Iteration: 2, Func. Count: 27, Neg. LLF: 6162017.440246833
Iteration: 3, Func. Count: 40, Neg. LLF: 93.65970888732676
Iteration: 4, Func. Count: 53, Neg. LLF: 92.66479189822705
Iteration: 5, Func. Count: 66, Neg. LLF: 191.92785923697434
Iteration: 6, Func. Count: 79, Neg. LLF: 89.61223365107152
Iteration: 7, Func. Count: 92, Neg. LLF: 88.48827733776571
Iteration: 8, Func. Count: 104, Neg. LLF: 90.73388845587947
Iteration: 9, Func. Count: 117, Neg. LLF: 90.32872283179141
Iteration: 10, Func. Count: 130, Neg. LLF: 88.20389676466709
Iteration: 11, Func. Count: 142, Neg. LLF: 88.1736377691379
Iteration: 12, Func. Count: 154, Neg. LLF: 88.16875161658558
Iteration: 13, Func. Count: 166, Neg. LLF: 88.16517808841525
Iteration: 14, Func. Count: 178, Neg. LLF: 88.16385872835222
Iteration: 15, Func. Count: 190, Neg. LLF: 88.16373528699508
Iteration: 16, Func. Count: 202, Neg. LLF: 88.16371606097672
Iteration: 17, Func. Count: 214, Neg. LLF: 88.16371418626773
Iteration: 18, Func. Count: 226, Neg. LLF: 88.16371302340832
Iteration: 19, Func. Count: 237, Neg. LLF: 88.16371302343163
Optimization terminated successfully (Exit mode 0)
Current function value: 88.16371302340832
Iterations: 19
Function evaluations: 237
Gradient evaluations: 19
Iteration: 1, Func. Count: 14, Neg. LLF: 36336249.195480354
Iteration: 2, Func. Count: 28, Neg. LLF: 5850546.84206141
Iteration: 3, Func. Count: 42, Neg. LLF: 95173150.1212513
Iteration: 4, Func. Count: 57, Neg. LLF: 95.08529992904158
Iteration: 5, Func. Count: 71, Neg. LLF: 88.61552893447616
Iteration: 6, Func. Count: 84, Neg. LLF: 99.74215765300139
Iteration: 7, Func. Count: 98, Neg. LLF: 91.87321355473321
Iteration: 8, Func. Count: 112, Neg. LLF: 93.06957672496966
Iteration: 9, Func. Count: 126, Neg. LLF: 92.64957971446151
Iteration: 10, Func. Count: 140, Neg. LLF: 91.77344948618523
Iteration: 11, Func. Count: 154, Neg. LLF: 90.98376317937189
Iteration: 12, Func. Count: 168, Neg. LLF: 91.04253859070384
Iteration: 13, Func. Count: 182, Neg. LLF: 90.88125962824404
Iteration: 14, Func. Count: 196, Neg. LLF: 91.0047038247514
Iteration: 15, Func. Count: 210, Neg. LLF: 90.54958883106376
Iteration: 16, Func. Count: 224, Neg. LLF: 88.0470491441133
Iteration: 17, Func. Count: 238, Neg. LLF: 87.42557691814969
Iteration: 18, Func. Count: 251, Neg. LLF: 87.38734433471858
Iteration: 19, Func. Count: 264, Neg. LLF: 87.3739081811832
Iteration: 20, Func. Count: 277, Neg. LLF: 87.34762356762872
Iteration: 21, Func. Count: 290, Neg. LLF: 87.32728145045473
Iteration: 22, Func. Count: 303, Neg. LLF: 87.25853110002882
Iteration: 23, Func. Count: 316, Neg. LLF: 87.16299272381656
Iteration: 24, Func. Count: 329, Neg. LLF: 87.16219861759038
Iteration: 25, Func. Count: 343, Neg. LLF: 87.1306747898977
Iteration: 26, Func. Count: 356, Neg. LLF: 87.1082925055072
Iteration: 27, Func. Count: 369, Neg. LLF: 87.10520889556216
Iteration: 28, Func. Count: 382, Neg. LLF: 87.10407529870243
Iteration: 29, Func. Count: 395, Neg. LLF: 87.10392230828464
Iteration: 30, Func. Count: 408, Neg. LLF: 87.1037165951936
Iteration: 31, Func. Count: 421, Neg. LLF: 87.10365174611844
Iteration: 32, Func. Count: 434, Neg. LLF: 87.10361759908551
Iteration: 33, Func. Count: 447, Neg. LLF: 87.10361300488384
Iteration: 34, Func. Count: 460, Neg. LLF: 87.10361194076425
Iteration: 35, Func. Count: 472, Neg. LLF: 87.10361194070535
Optimization terminated successfully (Exit mode 0)
Current function value: 87.10361194076425
Iterations: 35
Function evaluations: 472
Gradient evaluations: 35
Iteration: 1, Func. Count: 15, Neg. LLF: 6978352.015198095
Iteration: 2, Func. Count: 30, Neg. LLF: 106.93748363864687
Iteration: 3, Func. Count: 45, Neg. LLF: 5387.903005814881
Iteration: 4, Func. Count: 61, Neg. LLF: 90.43244137328945
Iteration: 5, Func. Count: 76, Neg. LLF: 88.51662508934508
Iteration: 6, Func. Count: 91, Neg. LLF: 87.20889597570145
Iteration: 7, Func. Count: 105, Neg. LLF: 87.82357004457518
Iteration: 8, Func. Count: 120, Neg. LLF: 88.9009160880962
Iteration: 9, Func. Count: 137, Neg. LLF: 86.80363671790082
Iteration: 10, Func. Count: 152, Neg. LLF: 86.66556253921951
Iteration: 11, Func. Count: 166, Neg. LLF: 86.66260002826267
Iteration: 12, Func. Count: 180, Neg. LLF: 86.65883274063714
Iteration: 13, Func. Count: 194, Neg. LLF: 86.65836448126171
Iteration: 14, Func. Count: 208, Neg. LLF: 86.65822199291252
Iteration: 15, Func. Count: 222, Neg. LLF: 86.65821283733614
Iteration: 16, Func. Count: 235, Neg. LLF: 86.65821283734348
Optimization terminated successfully (Exit mode 0)
Current function value: 86.65821283733614
Iterations: 16
Function evaluations: 235
Gradient evaluations: 16
Iteration: 1, Func. Count: 8, Neg. LLF: 131.590396724126
Iteration: 2, Func. Count: 17, Neg. LLF: 147.3098635530499
Iteration: 3, Func. Count: 25, Neg. LLF: 3838.8786005651937
Iteration: 4, Func. Count: 33, Neg. LLF: 2105.326728268
Iteration: 5, Func. Count: 41, Neg. LLF: 48734.03442319132
Iteration: 6, Func. Count: 49, Neg. LLF: 92.63689936972682
Iteration: 7, Func. Count: 57, Neg. LLF: 90.28816872452653
Iteration: 8, Func. Count: 64, Neg. LLF: 90.12254409895284
Iteration: 9, Func. Count: 71, Neg. LLF: 92.96535962166705
Iteration: 10, Func. Count: 80, Neg. LLF: 90.09091124846704
Iteration: 11, Func. Count: 87, Neg. LLF: 90.08889892270841
Iteration: 12, Func. Count: 94, Neg. LLF: 90.08797090860439
Iteration: 13, Func. Count: 101, Neg. LLF: 90.0875704887489
Iteration: 14, Func. Count: 108, Neg. LLF: 90.08756814599613
Iteration: 15, Func. Count: 114, Neg. LLF: 90.08756818544005
Optimization terminated successfully (Exit mode 0)
Current function value: 90.08756814599613
Iterations: 15
Function evaluations: 114
Gradient evaluations: 15
Iteration: 1, Func. Count: 9, Neg. LLF: 76897365.75043832
Iteration: 2, Func. Count: 19, Neg. LLF: 848.9025789803934
Iteration: 3, Func. Count: 28, Neg. LLF: 112.91597498200248
Iteration: 4, Func. Count: 37, Neg. LLF: 91.82963418586235
Iteration: 5, Func. Count: 46, Neg. LLF: 89.71728173579196
Iteration: 6, Func. Count: 54, Neg. LLF: 89.54473848085283
Iteration: 7, Func. Count: 62, Neg. LLF: 89.53432299527155
Iteration: 8, Func. Count: 70, Neg. LLF: 89.53320228421626
Iteration: 9, Func. Count: 78, Neg. LLF: 89.53304437278295
Iteration: 10, Func. Count: 86, Neg. LLF: 89.5324461253204
Iteration: 11, Func. Count: 94, Neg. LLF: 89.59370920724552
Iteration: 12, Func. Count: 103, Neg. LLF: 108.21239137438911
Iteration: 13, Func. Count: 112, Neg. LLF: 109.86540638922219
Iteration: 14, Func. Count: 121, Neg. LLF: 109.17351366660692
Iteration: 15, Func. Count: 130, Neg. LLF: 95.55749459762487
Iteration: 16, Func. Count: 139, Neg. LLF: 99.71554919363506
Iteration: 17, Func. Count: 148, Neg. LLF: 140.66200741096014
Iteration: 18, Func. Count: 158, Neg. LLF: 127817117.63385789
Iteration: 19, Func. Count: 168, Neg. LLF: 93.63713374378426
Iteration: 20, Func. Count: 177, Neg. LLF: 93.11423981211425
Iteration: 21, Func. Count: 186, Neg. LLF: 92.84372210214308
Iteration: 22, Func. Count: 195, Neg. LLF: 92.6145273588397
Iteration: 23, Func. Count: 204, Neg. LLF: 98.2449202597517
Iteration: 24, Func. Count: 213, Neg. LLF: 20019666.978567783
Iteration: 25, Func. Count: 224, Neg. LLF: 96.53414682664013
Iteration: 26, Func. Count: 233, Neg. LLF: 90.7933671594332
Iteration: 27, Func. Count: 242, Neg. LLF: 90.07258757928808
Iteration: 28, Func. Count: 251, Neg. LLF: 89.04071153512643
Iteration: 29, Func. Count: 260, Neg. LLF: 88.0844671461665
Iteration: 30, Func. Count: 268, Neg. LLF: 88.19399797622985
Iteration: 31, Func. Count: 277, Neg. LLF: 88.05618359596514
Iteration: 32, Func. Count: 286, Neg. LLF: 88.03500875005514
Iteration: 33, Func. Count: 294, Neg. LLF: 18876717.086516824
Iteration: 34, Func. Count: 306, Neg. LLF: 96.42392359276842
Iteration: 35, Func. Count: 317, Neg. LLF: 89.84027581150299
Iteration: 36, Func. Count: 326, Neg. LLF: 88.03284223215933
Optimization terminated successfully (Exit mode 0)
Current function value: 88.03284223173881
Iterations: 39
Function evaluations: 326
Gradient evaluations: 36
Iteration: 1, Func. Count: 10, Neg. LLF: 71980713.67561515
Iteration: 2, Func. Count: 21, Neg. LLF: 144160101.64092666
Iteration: 3, Func. Count: 32, Neg. LLF: 110.08008047539165
Iteration: 4, Func. Count: 42, Neg. LLF: 93.76334909977435
Iteration: 5, Func. Count: 52, Neg. LLF: 93.57847878685872
Iteration: 6, Func. Count: 62, Neg. LLF: 90.00333677886196
Iteration: 7, Func. Count: 72, Neg. LLF: 88.97675297783003
Iteration: 8, Func. Count: 81, Neg. LLF: 88.83813459645636
Iteration: 9, Func. Count: 90, Neg. LLF: 94.1163772347157
Iteration: 10, Func. Count: 101, Neg. LLF: 88.79437064669457
Iteration: 11, Func. Count: 110, Neg. LLF: 88.78470326958018
Iteration: 12, Func. Count: 119, Neg. LLF: 88.78426263369442
Iteration: 13, Func. Count: 128, Neg. LLF: 88.78423247755
Iteration: 14, Func. Count: 137, Neg. LLF: 88.78421247190839
Iteration: 15, Func. Count: 146, Neg. LLF: 88.78413554293981
Iteration: 16, Func. Count: 155, Neg. LLF: 88.78411059691042
Iteration: 17, Func. Count: 164, Neg. LLF: 88.78410730451964
Iteration: 18, Func. Count: 172, Neg. LLF: 88.78410730460992
Optimization terminated successfully (Exit mode 0)
Current function value: 88.78410730451964
Iterations: 18
Function evaluations: 172
Gradient evaluations: 18
Iteration: 1, Func. Count: 11, Neg. LLF: 61375931.832689054
Iteration: 2, Func. Count: 22, Neg. LLF: 159827069.64615113
Iteration: 3, Func. Count: 34, Neg. LLF: 148.63027978327258
Iteration: 4, Func. Count: 45, Neg. LLF: 96.12395896656976
Iteration: 5, Func. Count: 56, Neg. LLF: 87.97439022482348
Iteration: 6, Func. Count: 66, Neg. LLF: 92.00959816768747
Iteration: 7, Func. Count: 77, Neg. LLF: 89.63051566714827
Iteration: 8, Func. Count: 89, Neg. LLF: 91.81761264103358
Iteration: 9, Func. Count: 100, Neg. LLF: 87.92120173956167
Iteration: 10, Func. Count: 111, Neg. LLF: 87.7405521328583
Iteration: 11, Func. Count: 122, Neg. LLF: 87.67182037715247
Iteration: 12, Func. Count: 132, Neg. LLF: 87.6495103937106
Iteration: 13, Func. Count: 142, Neg. LLF: 87.64539513624871
Iteration: 14, Func. Count: 152, Neg. LLF: 87.64230592431025
Iteration: 15, Func. Count: 162, Neg. LLF: 87.64015017034824
Iteration: 16, Func. Count: 172, Neg. LLF: 87.63929629266397
Iteration: 17, Func. Count: 182, Neg. LLF: 87.63918731439371
Iteration: 18, Func. Count: 192, Neg. LLF: 87.63917887852173
Iteration: 19, Func. Count: 201, Neg. LLF: 87.63917887854205
Optimization terminated successfully (Exit mode 0)
Current function value: 87.63917887852173
Iterations: 19
Function evaluations: 201
Gradient evaluations: 19
Iteration: 1, Func. Count: 12, Neg. LLF: 53753808.39121957
Iteration: 2, Func. Count: 24, Neg. LLF: 182140790.87080798
Iteration: 3, Func. Count: 37, Neg. LLF: 119.90485291196293
Iteration: 4, Func. Count: 49, Neg. LLF: 91.75047448899382
Iteration: 5, Func. Count: 61, Neg. LLF: 88.01300691911366
Iteration: 6, Func. Count: 72, Neg. LLF: 97.73434786720868
Iteration: 7, Func. Count: 84, Neg. LLF: 92.81249426962724
Iteration: 8, Func. Count: 96, Neg. LLF: 91.07264125337798
Iteration: 9, Func. Count: 108, Neg. LLF: 87.86154742386027
Iteration: 10, Func. Count: 120, Neg. LLF: 87.87880265854035
Iteration: 11, Func. Count: 132, Neg. LLF: 87.64605953677288
Iteration: 12, Func. Count: 143, Neg. LLF: 87.64091091588213
Iteration: 13, Func. Count: 154, Neg. LLF: 87.63950631292668
Iteration: 14, Func. Count: 165, Neg. LLF: 87.63937364349938
Iteration: 15, Func. Count: 176, Neg. LLF: 87.63931912464089
Iteration: 16, Func. Count: 187, Neg. LLF: 87.63925321682085
Iteration: 17, Func. Count: 198, Neg. LLF: 87.63919800037702
Iteration: 18, Func. Count: 209, Neg. LLF: 87.639180660241
Iteration: 19, Func. Count: 220, Neg. LLF: 87.63917885458963
Iteration: 20, Func. Count: 230, Neg. LLF: 87.63917886524779
Optimization terminated successfully (Exit mode 0)
Current function value: 87.63917885458963
Iterations: 20
Function evaluations: 230
Gradient evaluations: 20
Iteration: 1, Func. Count: 9, Neg. LLF: 130.63728354494216
Iteration: 2, Func. Count: 19, Neg. LLF: 147.79064723969188
Iteration: 3, Func. Count: 28, Neg. LLF: 3646.1891221029628
Iteration: 4, Func. Count: 37, Neg. LLF: 7003.125918329811
Iteration: 5, Func. Count: 46, Neg. LLF: 134455.7867273087
Iteration: 6, Func. Count: 55, Neg. LLF: 92.60625146342568
Iteration: 7, Func. Count: 64, Neg. LLF: 90.2664920195221
Iteration: 8, Func. Count: 72, Neg. LLF: 90.12818724759208
Iteration: 9, Func. Count: 80, Neg. LLF: 93.0071303119382
Iteration: 10, Func. Count: 90, Neg. LLF: 90.09059401305835
Iteration: 11, Func. Count: 98, Neg. LLF: 90.08884843708758
Iteration: 12, Func. Count: 106, Neg. LLF: 90.0878880770522
Iteration: 13, Func. Count: 114, Neg. LLF: 90.08756860473109
Iteration: 14, Func. Count: 121, Neg. LLF: 90.08756852697003
Optimization terminated successfully (Exit mode 0)
Current function value: 90.08756860473109
Iterations: 14
Function evaluations: 121
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 70083657.49881496
Iteration: 2, Func. Count: 21, Neg. LLF: 500.2549237467535
Iteration: 3, Func. Count: 31, Neg. LLF: 116.58146142554439
Iteration: 4, Func. Count: 41, Neg. LLF: 91.81117321490703
Iteration: 5, Func. Count: 51, Neg. LLF: 89.74182949652838
Iteration: 6, Func. Count: 60, Neg. LLF: 89.54400503937036
Iteration: 7, Func. Count: 69, Neg. LLF: 89.53430562722696
Iteration: 8, Func. Count: 78, Neg. LLF: 89.53339409687148
Iteration: 9, Func. Count: 87, Neg. LLF: 89.53326125352426
Iteration: 10, Func. Count: 96, Neg. LLF: 89.53310520044903
Iteration: 11, Func. Count: 105, Neg. LLF: 89.52531530242484
Iteration: 12, Func. Count: 114, Neg. LLF: 109.97393382023074
Iteration: 13, Func. Count: 124, Neg. LLF: 111.65199039757402
Iteration: 14, Func. Count: 134, Neg. LLF: 109.6171860653598
Iteration: 15, Func. Count: 144, Neg. LLF: 104.03093693435223
Iteration: 16, Func. Count: 154, Neg. LLF: 106.62794620687919
Iteration: 17, Func. Count: 165, Neg. LLF: 158.09027452705362
Iteration: 18, Func. Count: 177, Neg. LLF: 115.76197981122345
Iteration: 19, Func. Count: 187, Neg. LLF: 88.42393192747288
Iteration: 20, Func. Count: 196, Neg. LLF: 97.0085721778715
Iteration: 21, Func. Count: 206, Neg. LLF: 113.86611131749832
Iteration: 22, Func. Count: 218, Neg. LLF: 88.04552080007068
Iteration: 23, Func. Count: 227, Neg. LLF: 88.03424828509696
Iteration: 24, Func. Count: 236, Neg. LLF: 88.0332989640924
Iteration: 25, Func. Count: 245, Neg. LLF: 88.03284937395406
Iteration: 26, Func. Count: 254, Neg. LLF: 88.03284220882102
Iteration: 27, Func. Count: 262, Neg. LLF: 88.03284220882199
Optimization terminated successfully (Exit mode 0)
Current function value: 88.03284220882102
Iterations: 28
Function evaluations: 262
Gradient evaluations: 27
Iteration: 1, Func. Count: 11, Neg. LLF: 66713285.2683681
Iteration: 2, Func. Count: 23, Neg. LLF: 152050014.96742314
Iteration: 3, Func. Count: 35, Neg. LLF: 113.62837700316655
Iteration: 4, Func. Count: 46, Neg. LLF: 93.7372458286498
Iteration: 5, Func. Count: 57, Neg. LLF: 93.21234737815158
Iteration: 6, Func. Count: 68, Neg. LLF: 89.9458404393698
Iteration: 7, Func. Count: 79, Neg. LLF: 88.85343561259607
Iteration: 8, Func. Count: 89, Neg. LLF: 88.80130525627007
Iteration: 9, Func. Count: 99, Neg. LLF: 88.78802412026843
Iteration: 10, Func. Count: 109, Neg. LLF: 88.7843419450806
Iteration: 11, Func. Count: 119, Neg. LLF: 88.78413351558201
Iteration: 12, Func. Count: 129, Neg. LLF: 88.78411686311206
Iteration: 13, Func. Count: 139, Neg. LLF: 88.78411218372945
Iteration: 14, Func. Count: 149, Neg. LLF: 88.78410989282631
Iteration: 15, Func. Count: 159, Neg. LLF: 88.78410714919741
Iteration: 16, Func. Count: 168, Neg. LLF: 88.78410714928278
Optimization terminated successfully (Exit mode 0)
Current function value: 88.78410714919741
Iterations: 16
Function evaluations: 168
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 56554869.070583366
Iteration: 2, Func. Count: 24, Neg. LLF: 172507779.73556036
Iteration: 3, Func. Count: 37, Neg. LLF: 159.94901875991692
Iteration: 4, Func. Count: 49, Neg. LLF: 95.0813132344511
Iteration: 5, Func. Count: 61, Neg. LLF: 87.90284228139186
Iteration: 6, Func. Count: 72, Neg. LLF: 91.34563388294423
Iteration: 7, Func. Count: 84, Neg. LLF: 92.07136571760934
Iteration: 8, Func. Count: 97, Neg. LLF: 87.82602126103251
Iteration: 9, Func. Count: 109, Neg. LLF: 87.85447861195428
Iteration: 10, Func. Count: 121, Neg. LLF: 87.67580666324795
Iteration: 11, Func. Count: 132, Neg. LLF: 87.64671305906967
Iteration: 12, Func. Count: 143, Neg. LLF: 87.64309571811299
Iteration: 13, Func. Count: 154, Neg. LLF: 87.64164738206166
Iteration: 14, Func. Count: 165, Neg. LLF: 87.64014836144943
Iteration: 15, Func. Count: 176, Neg. LLF: 87.63939843050203
Iteration: 16, Func. Count: 187, Neg. LLF: 87.63921603759348
Iteration: 17, Func. Count: 198, Neg. LLF: 87.63917913892851
Iteration: 18, Func. Count: 208, Neg. LLF: 87.63917913900762
Optimization terminated successfully (Exit mode 0)
Current function value: 87.63917913892851
Iterations: 18
Function evaluations: 208
Gradient evaluations: 18
Iteration: 1, Func. Count: 13, Neg. LLF: 49454047.395757765
Iteration: 2, Func. Count: 26, Neg. LLF: 200198954.67962402
Iteration: 3, Func. Count: 40, Neg. LLF: 122.00565970500715
Iteration: 4, Func. Count: 53, Neg. LLF: 91.61629080096208
Iteration: 5, Func. Count: 66, Neg. LLF: 87.93804117335829
Iteration: 6, Func. Count: 78, Neg. LLF: 92.20536357535656
Iteration: 7, Func. Count: 91, Neg. LLF: 92.35090849281467
Iteration: 8, Func. Count: 104, Neg. LLF: 89.80028123980678
Iteration: 9, Func. Count: 117, Neg. LLF: 87.84394031995018
Iteration: 10, Func. Count: 130, Neg. LLF: 87.6810819912412
Iteration: 11, Func. Count: 143, Neg. LLF: 87.64101946467244
Iteration: 12, Func. Count: 155, Neg. LLF: 87.6393970559787
Iteration: 13, Func. Count: 167, Neg. LLF: 87.63922094714376
Iteration: 14, Func. Count: 179, Neg. LLF: 87.63921134005004
Iteration: 15, Func. Count: 191, Neg. LLF: 87.63919811558276
Iteration: 16, Func. Count: 203, Neg. LLF: 87.63918511781681
Iteration: 17, Func. Count: 215, Neg. LLF: 87.63917953798588
Iteration: 18, Func. Count: 227, Neg. LLF: 87.6391787729958
Optimization terminated successfully (Exit mode 0)
Current function value: 87.6391787729958
Iterations: 18
Function evaluations: 227
Gradient evaluations: 18
Iteration: 1, Func. Count: 10, Neg. LLF: 130.52837583053307
Iteration: 2, Func. Count: 21, Neg. LLF: 147.93215295020323
Iteration: 3, Func. Count: 31, Neg. LLF: 3687.335107336514
Iteration: 4, Func. Count: 41, Neg. LLF: 169.69677912759056
Iteration: 5, Func. Count: 51, Neg. LLF: 574.8681778632445
Iteration: 6, Func. Count: 61, Neg. LLF: 290.7259128652976
Iteration: 7, Func. Count: 71, Neg. LLF: 208.02368975144287
Iteration: 8, Func. Count: 81, Neg. LLF: 117.39271397773747
Iteration: 9, Func. Count: 91, Neg. LLF: 99.79446533938044
Iteration: 10, Func. Count: 101, Neg. LLF: 90.18054850722396
Iteration: 11, Func. Count: 111, Neg. LLF: 89.62990694966265
Iteration: 12, Func. Count: 120, Neg. LLF: 92.42192166769624
Iteration: 13, Func. Count: 131, Neg. LLF: 89.68243693504644
Iteration: 14, Func. Count: 141, Neg. LLF: 89.60944381275213
Iteration: 15, Func. Count: 150, Neg. LLF: 89.60925859764569
Iteration: 16, Func. Count: 159, Neg. LLF: 89.60918012775161
Iteration: 17, Func. Count: 168, Neg. LLF: 89.60915260962263
Iteration: 18, Func. Count: 177, Neg. LLF: 89.60915084596884
Iteration: 19, Func. Count: 185, Neg. LLF: 89.60915084598926
Optimization terminated successfully (Exit mode 0)
Current function value: 89.60915084596884
Iterations: 19
Function evaluations: 185
Gradient evaluations: 19
Iteration: 1, Func. Count: 11, Neg. LLF: 70359521.87290202
Iteration: 2, Func. Count: 23, Neg. LLF: 676.6102952205638
Iteration: 3, Func. Count: 34, Neg. LLF: 114.97165420633843
Iteration: 4, Func. Count: 45, Neg. LLF: 91.82858285067795
Iteration: 5, Func. Count: 56, Neg. LLF: 89.74326552973652
Iteration: 6, Func. Count: 66, Neg. LLF: 96.5106088596425
Iteration: 7, Func. Count: 79, Neg. LLF: 89.74387567172887
Iteration: 8, Func. Count: 90, Neg. LLF: 89.49538733502995
Iteration: 9, Func. Count: 100, Neg. LLF: 89.4909527034139
Iteration: 10, Func. Count: 110, Neg. LLF: 89.49089785723739
Iteration: 11, Func. Count: 120, Neg. LLF: 89.49089159917013
Iteration: 12, Func. Count: 129, Neg. LLF: 89.49089159907324
Optimization terminated successfully (Exit mode 0)
Current function value: 89.49089159917013
Iterations: 12
Function evaluations: 129
Gradient evaluations: 12
Iteration: 1, Func. Count: 12, Neg. LLF: 66329941.54347435
Iteration: 2, Func. Count: 25, Neg. LLF: 151902911.8805309
Iteration: 3, Func. Count: 38, Neg. LLF: 114.63075417931142
Iteration: 4, Func. Count: 50, Neg. LLF: 93.78391522418269
Iteration: 5, Func. Count: 62, Neg. LLF: 93.1553318919475
Iteration: 6, Func. Count: 74, Neg. LLF: 89.95753047446675
Iteration: 7, Func. Count: 86, Neg. LLF: 88.8849871691853
Iteration: 8, Func. Count: 97, Neg. LLF: 88.8035238179301
Iteration: 9, Func. Count: 108, Neg. LLF: 94.42193952075132
Iteration: 10, Func. Count: 121, Neg. LLF: 88.78794353688484
Iteration: 11, Func. Count: 132, Neg. LLF: 88.78366466258548
Iteration: 12, Func. Count: 143, Neg. LLF: 88.78328238091997
Iteration: 13, Func. Count: 154, Neg. LLF: 88.7832303985363
Iteration: 14, Func. Count: 165, Neg. LLF: 88.78316807899762
Iteration: 15, Func. Count: 176, Neg. LLF: 88.78313452671702
Iteration: 16, Func. Count: 187, Neg. LLF: 88.78311437010268
Iteration: 17, Func. Count: 198, Neg. LLF: 88.78311210875049
Iteration: 18, Func. Count: 208, Neg. LLF: 88.7831121087577
Optimization terminated successfully (Exit mode 0)
Current function value: 88.78311210875049
Iterations: 18
Function evaluations: 208
Gradient evaluations: 18
Iteration: 1, Func. Count: 13, Neg. LLF: 56424445.00976579
Iteration: 2, Func. Count: 26, Neg. LLF: 171497529.61876738
Iteration: 3, Func. Count: 40, Neg. LLF: 158.43069053179522
Iteration: 4, Func. Count: 53, Neg. LLF: 95.01366492312307
Iteration: 5, Func. Count: 66, Neg. LLF: 87.90473433994347
Iteration: 6, Func. Count: 78, Neg. LLF: 91.17130387559345
Iteration: 7, Func. Count: 91, Neg. LLF: 97.5543184819603
Iteration: 8, Func. Count: 105, Neg. LLF: 87.81678201270509
Iteration: 9, Func. Count: 118, Neg. LLF: 88.10884070075302
Iteration: 10, Func. Count: 131, Neg. LLF: 87.62109432837572
Iteration: 11, Func. Count: 143, Neg. LLF: 87.60342351618056
Iteration: 12, Func. Count: 155, Neg. LLF: 87.59400201294687
Iteration: 13, Func. Count: 167, Neg. LLF: 87.58718618851918
Iteration: 14, Func. Count: 179, Neg. LLF: 87.58208360367749
Iteration: 15, Func. Count: 191, Neg. LLF: 87.58066377158468
Iteration: 16, Func. Count: 203, Neg. LLF: 87.58042575904787
Iteration: 17, Func. Count: 215, Neg. LLF: 87.58037585289989
Iteration: 18, Func. Count: 227, Neg. LLF: 87.58036762440217
Iteration: 19, Func. Count: 238, Neg. LLF: 87.58036762428935
Optimization terminated successfully (Exit mode 0)
Current function value: 87.58036762440217
Iterations: 19
Function evaluations: 238
Gradient evaluations: 19
Iteration: 1, Func. Count: 14, Neg. LLF: 49174878.2338774
Iteration: 2, Func. Count: 28, Neg. LLF: 199817699.20946994
Iteration: 3, Func. Count: 43, Neg. LLF: 121.32432682763029
Iteration: 4, Func. Count: 57, Neg. LLF: 91.61809393778412
Iteration: 5, Func. Count: 71, Neg. LLF: 87.91039670945476
Iteration: 6, Func. Count: 84, Neg. LLF: 96.89694631291351
Iteration: 7, Func. Count: 98, Neg. LLF: 91.20229546434425
Iteration: 8, Func. Count: 113, Neg. LLF: 91.36217143496371
Iteration: 9, Func. Count: 127, Neg. LLF: 87.70031126673375
Iteration: 10, Func. Count: 141, Neg. LLF: 87.74562935186214
Iteration: 11, Func. Count: 155, Neg. LLF: 87.58135348251062
Iteration: 12, Func. Count: 168, Neg. LLF: 87.58055975260972
Iteration: 13, Func. Count: 181, Neg. LLF: 87.58047191766344
Iteration: 14, Func. Count: 194, Neg. LLF: 87.58044424502191
Iteration: 15, Func. Count: 207, Neg. LLF: 87.58040525090264
Iteration: 16, Func. Count: 220, Neg. LLF: 87.58038115387903
Iteration: 17, Func. Count: 233, Neg. LLF: 87.58036905837841
Iteration: 18, Func. Count: 246, Neg. LLF: 87.58036731133036
Iteration: 19, Func. Count: 258, Neg. LLF: 87.5803673287912
Optimization terminated successfully (Exit mode 0)
Current function value: 87.58036731133036
Iterations: 19
Function evaluations: 258
Gradient evaluations: 19
Iteration: 1, Func. Count: 11, Neg. LLF: 139.41081776874586
Iteration: 2, Func. Count: 23, Neg. LLF: 276.27381750795973
Iteration: 3, Func. Count: 34, Neg. LLF: 6354648.065175891
Iteration: 4, Func. Count: 45, Neg. LLF: 326.9825141668801
Iteration: 5, Func. Count: 56, Neg. LLF: 318.15860873464646
Iteration: 6, Func. Count: 67, Neg. LLF: 93.2390854663674
Iteration: 7, Func. Count: 78, Neg. LLF: 89.42592459531112
Iteration: 8, Func. Count: 88, Neg. LLF: 101.04312109808474
Iteration: 9, Func. Count: 100, Neg. LLF: 91.32574962649117
Iteration: 10, Func. Count: 111, Neg. LLF: 89.29770879732632
Iteration: 11, Func. Count: 121, Neg. LLF: 89.27972472919788
Iteration: 12, Func. Count: 131, Neg. LLF: 89.2781770948697
Iteration: 13, Func. Count: 141, Neg. LLF: 89.27752355132426
Iteration: 14, Func. Count: 151, Neg. LLF: 89.2769695055866
Iteration: 15, Func. Count: 161, Neg. LLF: 89.27689760145525
Iteration: 16, Func. Count: 171, Neg. LLF: 89.27688931819813
Iteration: 17, Func. Count: 181, Neg. LLF: 89.27688862302963
Optimization terminated successfully (Exit mode 0)
Current function value: 89.27688862302963
Iterations: 17
Function evaluations: 181
Gradient evaluations: 17
Iteration: 1, Func. Count: 12, Neg. LLF: 23880833.282297783
Iteration: 2, Func. Count: 25, Neg. LLF: 148.52144615414176
Iteration: 3, Func. Count: 38, Neg. LLF: 92.49844194250782
Iteration: 4, Func. Count: 50, Neg. LLF: 90.31466954970928
Iteration: 5, Func. Count: 62, Neg. LLF: 89.40570146475144
Iteration: 6, Func. Count: 73, Neg. LLF: 89.53983572480789
Iteration: 7, Func. Count: 85, Neg. LLF: 92.23522287939875
Iteration: 8, Func. Count: 97, Neg. LLF: 89.0448183071747
Iteration: 9, Func. Count: 108, Neg. LLF: 89.02820929996643
Iteration: 10, Func. Count: 119, Neg. LLF: 89.02465952814032
Iteration: 11, Func. Count: 131, Neg. LLF: 89.00982805669942
Iteration: 12, Func. Count: 142, Neg. LLF: 89.00858798611986
Iteration: 13, Func. Count: 153, Neg. LLF: 89.00841557004419
Iteration: 14, Func. Count: 164, Neg. LLF: 89.00840702035319
Iteration: 15, Func. Count: 174, Neg. LLF: 89.00840702036562
Optimization terminated successfully (Exit mode 0)
Current function value: 89.00840702035319
Iterations: 15
Function evaluations: 174
Gradient evaluations: 15
Iteration: 1, Func. Count: 13, Neg. LLF: 18001743.128310647
Iteration: 2, Func. Count: 26, Neg. LLF: 7693357.620597963
Iteration: 3, Func. Count: 39, Neg. LLF: 90.73807901444125
Iteration: 4, Func. Count: 52, Neg. LLF: 166.6714618860613
Iteration: 5, Func. Count: 66, Neg. LLF: 89.37405283166757
Iteration: 6, Func. Count: 79, Neg. LLF: 89.07298072952293
Iteration: 7, Func. Count: 92, Neg. LLF: 92.05672323907731
Iteration: 8, Func. Count: 105, Neg. LLF: 88.21115869670908
Iteration: 9, Func. Count: 117, Neg. LLF: 88.17710696607413
Iteration: 10, Func. Count: 129, Neg. LLF: 88.16859922443925
Iteration: 11, Func. Count: 141, Neg. LLF: 88.16487202048872
Iteration: 12, Func. Count: 153, Neg. LLF: 88.16400695923073
Iteration: 13, Func. Count: 165, Neg. LLF: 88.16390035121199
Iteration: 14, Func. Count: 177, Neg. LLF: 88.16371672830938
Iteration: 15, Func. Count: 189, Neg. LLF: 88.16371303921136
Iteration: 16, Func. Count: 200, Neg. LLF: 88.16371303926178
Optimization terminated successfully (Exit mode 0)
Current function value: 88.16371303921136
Iterations: 16
Function evaluations: 200
Gradient evaluations: 16
Iteration: 1, Func. Count: 14, Neg. LLF: 6705344.963245108
Iteration: 2, Func. Count: 28, Neg. LLF: 92.21448895225207
Iteration: 3, Func. Count: 42, Neg. LLF: 242.1590779882488
Iteration: 4, Func. Count: 57, Neg. LLF: 89.88400285754139
Iteration: 5, Func. Count: 71, Neg. LLF: 101.45322671825642
Iteration: 6, Func. Count: 85, Neg. LLF: 87.65472143590598
Iteration: 7, Func. Count: 98, Neg. LLF: 102.38980117231168
Iteration: 8, Func. Count: 113, Neg. LLF: 97.58222080701024
Iteration: 9, Func. Count: 127, Neg. LLF: 87.20409023803026
Iteration: 10, Func. Count: 140, Neg. LLF: 94.97087619843056
Iteration: 11, Func. Count: 155, Neg. LLF: 112.52583482679793
Iteration: 12, Func. Count: 169, Neg. LLF: 87.10952486902502
Iteration: 13, Func. Count: 182, Neg. LLF: 87.10509052915494
Iteration: 14, Func. Count: 195, Neg. LLF: 87.10461201495065
Iteration: 15, Func. Count: 208, Neg. LLF: 87.1041003893792
Iteration: 16, Func. Count: 221, Neg. LLF: 87.10362214501488
Iteration: 17, Func. Count: 234, Neg. LLF: 87.10361209002876
Iteration: 18, Func. Count: 246, Neg. LLF: 87.10361209000595
Optimization terminated successfully (Exit mode 0)
Current function value: 87.10361209002876
Iterations: 18
Function evaluations: 246
Gradient evaluations: 18
Iteration: 1, Func. Count: 15, Neg. LLF: 6564743.833592105
Iteration: 2, Func. Count: 30, Neg. LLF: 282.85636715919003
Iteration: 3, Func. Count: 45, Neg. LLF: 64761549.13938688
Iteration: 4, Func. Count: 61, Neg. LLF: 91.22034567868221
Iteration: 5, Func. Count: 76, Neg. LLF: 88.34125474902474
Iteration: 6, Func. Count: 90, Neg. LLF: 100.33737339532347
Iteration: 7, Func. Count: 105, Neg. LLF: 88.09430285404203
Iteration: 8, Func. Count: 120, Neg. LLF: 90.93881920438074
Iteration: 9, Func. Count: 135, Neg. LLF: 91.78323130661674
Iteration: 10, Func. Count: 150, Neg. LLF: 90.72994009776099
Iteration: 11, Func. Count: 165, Neg. LLF: 91.3908570444626
Iteration: 12, Func. Count: 180, Neg. LLF: 87.45892700872139
Iteration: 13, Func. Count: 195, Neg. LLF: 87.19283888524599
Iteration: 14, Func. Count: 209, Neg. LLF: 87.12540946807619
Iteration: 15, Func. Count: 223, Neg. LLF: 87.11662531280933
Iteration: 16, Func. Count: 237, Neg. LLF: 87.10993893026725
Iteration: 17, Func. Count: 251, Neg. LLF: 87.10663646732921
Iteration: 18, Func. Count: 265, Neg. LLF: 87.09389256686276
Iteration: 19, Func. Count: 279, Neg. LLF: 87.02746642329771
Iteration: 20, Func. Count: 293, Neg. LLF: 87.79353221659348
Iteration: 21, Func. Count: 309, Neg. LLF: 86.97903178503347
Iteration: 22, Func. Count: 324, Neg. LLF: 86.96997608860943
Iteration: 23, Func. Count: 339, Neg. LLF: 86.80376353420004
Iteration: 24, Func. Count: 353, Neg. LLF: 86.77327918398049
Iteration: 25, Func. Count: 367, Neg. LLF: 86.7587722899155
Iteration: 26, Func. Count: 381, Neg. LLF: 86.71271824666984
Iteration: 27, Func. Count: 395, Neg. LLF: 86.66413340889129
Iteration: 28, Func. Count: 409, Neg. LLF: 86.66024242816248
Iteration: 29, Func. Count: 423, Neg. LLF: 86.65866226306932
Iteration: 30, Func. Count: 437, Neg. LLF: 86.658269701785
Iteration: 31, Func. Count: 451, Neg. LLF: 86.65821491394243
Iteration: 32, Func. Count: 465, Neg. LLF: 86.65821239996343
Iteration: 33, Func. Count: 478, Neg. LLF: 86.65821239995566
Optimization terminated successfully (Exit mode 0)
Current function value: 86.65821239996343
Iterations: 33
Function evaluations: 478
Gradient evaluations: 33
Iteration: 1, Func. Count: 12, Neg. LLF: 140.96723023546244
Iteration: 2, Func. Count: 25, Neg. LLF: 282.8253223223369
Iteration: 3, Func. Count: 37, Neg. LLF: 6424482.719258645
Iteration: 4, Func. Count: 49, Neg. LLF: 1960.4416414752457
Iteration: 5, Func. Count: 61, Neg. LLF: 429.5164486396186
Iteration: 6, Func. Count: 73, Neg. LLF: 90.29310427388442
Iteration: 7, Func. Count: 84, Neg. LLF: 89.87664488364075
Iteration: 8, Func. Count: 96, Neg. LLF: 89.60334564575352
Iteration: 9, Func. Count: 108, Neg. LLF: 91.51028650365099
Iteration: 10, Func. Count: 120, Neg. LLF: 89.3757310949232
Iteration: 11, Func. Count: 132, Neg. LLF: 89.2820494664484
Iteration: 12, Func. Count: 143, Neg. LLF: 89.27727681386622
Iteration: 13, Func. Count: 154, Neg. LLF: 89.27710345058242
Iteration: 14, Func. Count: 165, Neg. LLF: 89.27698874711486
Iteration: 15, Func. Count: 176, Neg. LLF: 89.27689491964091
Iteration: 16, Func. Count: 187, Neg. LLF: 89.27688862787959
Iteration: 17, Func. Count: 197, Neg. LLF: 89.27688857256472
Optimization terminated successfully (Exit mode 0)
Current function value: 89.27688862787959
Iterations: 17
Function evaluations: 197
Gradient evaluations: 17
Iteration: 1, Func. Count: 13, Neg. LLF: 18000643.339845654
Iteration: 2, Func. Count: 27, Neg. LLF: 184.70174181639655
Iteration: 3, Func. Count: 40, Neg. LLF: 91.80083522755336
Iteration: 4, Func. Count: 53, Neg. LLF: 100.52627976053468
Iteration: 5, Func. Count: 66, Neg. LLF: 89.19033784106473
Iteration: 6, Func. Count: 78, Neg. LLF: 90.78296688789756
Iteration: 7, Func. Count: 92, Neg. LLF: 89.09543675483845
Iteration: 8, Func. Count: 104, Neg. LLF: 89.02275008940516
Iteration: 9, Func. Count: 116, Neg. LLF: 89.01180814123148
Iteration: 10, Func. Count: 128, Neg. LLF: 89.00930184907371
Iteration: 11, Func. Count: 140, Neg. LLF: 89.00863557080586
Iteration: 12, Func. Count: 152, Neg. LLF: 89.00844239122057
Iteration: 13, Func. Count: 164, Neg. LLF: 89.0084099283299
Iteration: 14, Func. Count: 176, Neg. LLF: 89.0084070031108
Iteration: 15, Func. Count: 187, Neg. LLF: 89.00840700310182
Optimization terminated successfully (Exit mode 0)
Current function value: 89.0084070031108
Iterations: 15
Function evaluations: 187
Gradient evaluations: 15
Iteration: 1, Func. Count: 14, Neg. LLF: 52459483.48597086
Iteration: 2, Func. Count: 29, Neg. LLF: 7730658.782925843
Iteration: 3, Func. Count: 43, Neg. LLF: 141.0527224438055
Iteration: 4, Func. Count: 58, Neg. LLF: 92.04704177588891
Iteration: 5, Func. Count: 72, Neg. LLF: 89.29456302192813
Iteration: 6, Func. Count: 86, Neg. LLF: 89.31358637689209
Iteration: 7, Func. Count: 100, Neg. LLF: 88.35476807676837
Iteration: 8, Func. Count: 113, Neg. LLF: 88.1802409325774
Iteration: 9, Func. Count: 126, Neg. LLF: 88.22623736826537
Iteration: 10, Func. Count: 140, Neg. LLF: 88.17771351913318
Iteration: 11, Func. Count: 154, Neg. LLF: 88.16563862792226
Iteration: 12, Func. Count: 167, Neg. LLF: 88.16398204942836
Iteration: 13, Func. Count: 180, Neg. LLF: 88.1637395128966
Iteration: 14, Func. Count: 193, Neg. LLF: 88.1637150871072
Iteration: 15, Func. Count: 206, Neg. LLF: 88.16371305057301
Iteration: 16, Func. Count: 218, Neg. LLF: 88.16371305055455
Optimization terminated successfully (Exit mode 0)
Current function value: 88.16371305057301
Iterations: 16
Function evaluations: 218
Gradient evaluations: 16
Iteration: 1, Func. Count: 15, Neg. LLF: 34023403.464586414
Iteration: 2, Func. Count: 30, Neg. LLF: 5562991.982307112
Iteration: 3, Func. Count: 45, Neg. LLF: 137920793.78161198
Iteration: 4, Func. Count: 61, Neg. LLF: 92.72516659230672
Iteration: 5, Func. Count: 76, Neg. LLF: 88.09830175302416
Iteration: 6, Func. Count: 90, Neg. LLF: 91.17067200787695
Iteration: 7, Func. Count: 105, Neg. LLF: 90.45670507190084
Iteration: 8, Func. Count: 120, Neg. LLF: 87.52813818420735
Iteration: 9, Func. Count: 135, Neg. LLF: 88.07843125951628
Iteration: 10, Func. Count: 150, Neg. LLF: 87.38848369650293
Iteration: 11, Func. Count: 165, Neg. LLF: 88.02924933465374
Iteration: 12, Func. Count: 181, Neg. LLF: 87.16285173106108
Iteration: 13, Func. Count: 195, Neg. LLF: 87.13028622257616
Iteration: 14, Func. Count: 209, Neg. LLF: 87.11922236233816
Iteration: 15, Func. Count: 223, Neg. LLF: 87.11187421025554
Iteration: 16, Func. Count: 237, Neg. LLF: 87.10619774702498
Iteration: 17, Func. Count: 251, Neg. LLF: 87.10421976694327
Iteration: 18, Func. Count: 265, Neg. LLF: 87.1038140001743
Iteration: 19, Func. Count: 279, Neg. LLF: 87.10370055041659
Iteration: 20, Func. Count: 293, Neg. LLF: 87.10362359516827
Iteration: 21, Func. Count: 307, Neg. LLF: 87.10361238486823
Iteration: 22, Func. Count: 321, Neg. LLF: 87.10361156281336
Optimization terminated successfully (Exit mode 0)
Current function value: 87.10361156281336
Iterations: 22
Function evaluations: 321
Gradient evaluations: 22
Iteration: 1, Func. Count: 16, Neg. LLF: 6540321.626255648
Iteration: 2, Func. Count: 32, Neg. LLF: 193.31506730886477
Iteration: 3, Func. Count: 48, Neg. LLF: 3222.0925636756065
Iteration: 4, Func. Count: 64, Neg. LLF: 91.48055989673927
Iteration: 5, Func. Count: 80, Neg. LLF: 88.79279590372923
Iteration: 6, Func. Count: 96, Neg. LLF: 89.06971726936526
Iteration: 7, Func. Count: 112, Neg. LLF: 94.8912120500134
Iteration: 8, Func. Count: 128, Neg. LLF: 86.89769096519112
Iteration: 9, Func. Count: 143, Neg. LLF: 86.69209577625392
Iteration: 10, Func. Count: 158, Neg. LLF: 86.6735176720907
Iteration: 11, Func. Count: 173, Neg. LLF: 86.66918135863966
Iteration: 12, Func. Count: 188, Neg. LLF: 86.66104434091322
Iteration: 13, Func. Count: 203, Neg. LLF: 86.65922848315606
Iteration: 14, Func. Count: 218, Neg. LLF: 86.65826114389439
Iteration: 15, Func. Count: 233, Neg. LLF: 86.6582136467827
Iteration: 16, Func. Count: 248, Neg. LLF: 86.65821238846273
Iteration: 17, Func. Count: 262, Neg. LLF: 86.65821238846851
Optimization terminated successfully (Exit mode 0)
Current function value: 86.65821238846273
Iterations: 17
Function evaluations: 262
Gradient evaluations: 17
Iteration: 1, Func. Count: 6, Neg. LLF: 69301367.35615648
Iteration: 2, Func. Count: 13, Neg. LLF: 385775077.29206556
Iteration: 3, Func. Count: 20, Neg. LLF: 277.12324376867934
Iteration: 4, Func. Count: 26, Neg. LLF: 216.21888311800421
Iteration: 5, Func. Count: 32, Neg. LLF: 149.80661867053342
Iteration: 6, Func. Count: 38, Neg. LLF: 98.2434288993728
Iteration: 7, Func. Count: 44, Neg. LLF: 93.58842857655141
Iteration: 8, Func. Count: 50, Neg. LLF: 93.97122197997547
Iteration: 9, Func. Count: 56, Neg. LLF: 92.29297538068856
Iteration: 10, Func. Count: 62, Neg. LLF: 99.16724906155471
Iteration: 11, Func. Count: 68, Neg. LLF: 88.73846582977698
Iteration: 12, Func. Count: 73, Neg. LLF: 88.39875857359182
Iteration: 13, Func. Count: 78, Neg. LLF: 88.28030854216435
Iteration: 14, Func. Count: 83, Neg. LLF: 88.25881393837452
Iteration: 15, Func. Count: 88, Neg. LLF: 88.22471513705092
Iteration: 16, Func. Count: 93, Neg. LLF: 88.21335563177334
Iteration: 17, Func. Count: 98, Neg. LLF: 88.1644106324387
Iteration: 18, Func. Count: 103, Neg. LLF: 88.1019714562308
Iteration: 19, Func. Count: 108, Neg. LLF: 88.05856118746979
Iteration: 20, Func. Count: 113, Neg. LLF: 88.04817880421609
Iteration: 21, Func. Count: 118, Neg. LLF: 88.0330598302123
Iteration: 22, Func. Count: 123, Neg. LLF: 17936004.019677494
Iteration: 23, Func. Count: 132, Neg. LLF: 88.52711158151197
Iteration: 24, Func. Count: 139, Neg. LLF: 88.26786956913477
Iteration: 25, Func. Count: 146, Neg. LLF: 88.03284214921979
Iteration: 26, Func. Count: 150, Neg. LLF: 88.03284214922469
Optimization terminated successfully (Exit mode 0)
Current function value: 88.03284214921979
Iterations: 27
Function evaluations: 150
Gradient evaluations: 26
Iteration: 1, Func. Count: 5, Neg. LLF: 116.69245694792075
Iteration: 2, Func. Count: 12, Neg. LLF: 85.80903588544749
Iteration: 3, Func. Count: 17, Neg. LLF: 81.27055892440845
Iteration: 4, Func. Count: 21, Neg. LLF: 83.461849395944
Iteration: 5, Func. Count: 26, Neg. LLF: 80.85109925604087
Iteration: 6, Func. Count: 30, Neg. LLF: 80.83420558552763
Iteration: 7, Func. Count: 34, Neg. LLF: 80.83381805676575
Iteration: 8, Func. Count: 38, Neg. LLF: 80.83381055020682
Iteration: 9, Func. Count: 42, Neg. LLF: 80.83380838556347
Iteration: 10, Func. Count: 45, Neg. LLF: 80.83380849028462
Optimization terminated successfully (Exit mode 0)
Current function value: 80.83380838556347
Iterations: 10
Function evaluations: 45
Gradient evaluations: 10
Iteration: 1, Func. Count: 6, Neg. LLF: 25241423.89631474
Iteration: 2, Func. Count: 13, Neg. LLF: 81.1809548047775
Iteration: 3, Func. Count: 19, Neg. LLF: 80.74621682309193
Iteration: 4, Func. Count: 25, Neg. LLF: 80.26059208869069
Iteration: 5, Func. Count: 30, Neg. LLF: 80.45098944556504
Iteration: 6, Func. Count: 36, Neg. LLF: 80.16281860986726
Iteration: 7, Func. Count: 42, Neg. LLF: 80.14700220372434
Iteration: 8, Func. Count: 46, Neg. LLF: 80.14700220524635
Optimization terminated successfully (Exit mode 0)
Current function value: 80.14700220372434
Iterations: 8
Function evaluations: 46
Gradient evaluations: 8
Iteration: 1, Func. Count: 7, Neg. LLF: 25222187.322599057
Iteration: 2, Func. Count: 15, Neg. LLF: 80.7934151306089
Iteration: 3, Func. Count: 22, Neg. LLF: 80.75482249929213
Iteration: 4, Func. Count: 29, Neg. LLF: 80.25113143626552
Iteration: 5, Func. Count: 35, Neg. LLF: 80.23219168512426
Iteration: 6, Func. Count: 42, Neg. LLF: 80.15885332167264
Iteration: 7, Func. Count: 48, Neg. LLF: 80.15742273689438
Iteration: 8, Func. Count: 54, Neg. LLF: 80.15334371196518
Iteration: 9, Func. Count: 60, Neg. LLF: 80.1511515104397
Iteration: 10, Func. Count: 66, Neg. LLF: 80.14701300043276
Iteration: 11, Func. Count: 72, Neg. LLF: 80.14702855910376
Iteration: 12, Func. Count: 79, Neg. LLF: 80.14700197258828
Optimization terminated successfully (Exit mode 0)
Current function value: 80.14700197258828
Iterations: 12
Function evaluations: 79
Gradient evaluations: 12
Iteration: 1, Func. Count: 8, Neg. LLF: 25091756.33946684
Iteration: 2, Func. Count: 17, Neg. LLF: 80.59357809100901
Iteration: 3, Func. Count: 25, Neg. LLF: 81.10083853050757
Iteration: 4, Func. Count: 33, Neg. LLF: 80.18375055740668
Iteration: 5, Func. Count: 40, Neg. LLF: 80.16024618367199
Iteration: 6, Func. Count: 47, Neg. LLF: 80.1565316799744
Iteration: 7, Func. Count: 54, Neg. LLF: 80.15508174196233
Iteration: 8, Func. Count: 61, Neg. LLF: 80.15273477307
Iteration: 9, Func. Count: 68, Neg. LLF: 80.15214992898021
Iteration: 10, Func. Count: 75, Neg. LLF: 80.15160582687092
Iteration: 11, Func. Count: 82, Neg. LLF: 80.15157415647658
Iteration: 12, Func. Count: 89, Neg. LLF: 80.15157247850132
Iteration: 13, Func. Count: 95, Neg. LLF: 80.1515724785044
Optimization terminated successfully (Exit mode 0)
Current function value: 80.15157247850132
Iterations: 13
Function evaluations: 95
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 24929299.570950188
Iteration: 2, Func. Count: 19, Neg. LLF: 80.53055860339693
Iteration: 3, Func. Count: 28, Neg. LLF: 80.64350584397941
Iteration: 4, Func. Count: 37, Neg. LLF: 80.23023328699948
Iteration: 5, Func. Count: 45, Neg. LLF: 80.18500632477237
Iteration: 6, Func. Count: 53, Neg. LLF: 80.17584298021119
Iteration: 7, Func. Count: 61, Neg. LLF: 80.1649169771493
Iteration: 8, Func. Count: 69, Neg. LLF: 80.1567002962631
Iteration: 9, Func. Count: 77, Neg. LLF: 80.15608375497717
Iteration: 10, Func. Count: 85, Neg. LLF: 80.1559960661639
Iteration: 11, Func. Count: 93, Neg. LLF: 80.1559797651152
Iteration: 12, Func. Count: 101, Neg. LLF: 80.1559608247333
Iteration: 13, Func. Count: 109, Neg. LLF: 80.15589701658403
Iteration: 14, Func. Count: 117, Neg. LLF: 80.15573584929298
Iteration: 15, Func. Count: 125, Neg. LLF: 80.15480626436343
Iteration: 16, Func. Count: 133, Neg. LLF: 80.15455479748255
Iteration: 17, Func. Count: 141, Neg. LLF: 80.15405549222692
Iteration: 18, Func. Count: 149, Neg. LLF: 80.15381459201745
Iteration: 19, Func. Count: 157, Neg. LLF: 80.15308375126297
Iteration: 20, Func. Count: 165, Neg. LLF: 80.15187922560096
Iteration: 21, Func. Count: 173, Neg. LLF: 80.14783025273094
Iteration: 22, Func. Count: 181, Neg. LLF: 80.14717130922715
Iteration: 23, Func. Count: 189, Neg. LLF: 80.14743451746234
Iteration: 24, Func. Count: 198, Neg. LLF: 80.14701207559477
Iteration: 25, Func. Count: 206, Neg. LLF: 80.14778737229513
Iteration: 26, Func. Count: 216, Neg. LLF: 80.14700437566523
Iteration: 27, Func. Count: 224, Neg. LLF: 80.14702989269425
Optimization terminated successfully (Exit mode 0)
Current function value: 80.14700432355353
Iterations: 27
Function evaluations: 226
Gradient evaluations: 27
Iteration: 1, Func. Count: 6, Neg. LLF: 118.93695080629132
Iteration: 2, Func. Count: 15, Neg. LLF: 215.48301033341042
Iteration: 3, Func. Count: 22, Neg. LLF: 100.31431551466116
Iteration: 4, Func. Count: 28, Neg. LLF: 80.16680482244992
Iteration: 5, Func. Count: 33, Neg. LLF: 80.14771945207085
Iteration: 6, Func. Count: 38, Neg. LLF: 80.12760704028234
Iteration: 7, Func. Count: 43, Neg. LLF: 80.12306084203502
Iteration: 8, Func. Count: 48, Neg. LLF: 80.12262420205165
Iteration: 9, Func. Count: 53, Neg. LLF: 80.12241885576546
Iteration: 10, Func. Count: 58, Neg. LLF: 80.12238668859214
Iteration: 11, Func. Count: 63, Neg. LLF: 80.1223836979357
Iteration: 12, Func. Count: 67, Neg. LLF: 80.1223836979272
Optimization terminated successfully (Exit mode 0)
Current function value: 80.1223836979357
Iterations: 12
Function evaluations: 67
Gradient evaluations: 12
Iteration: 1, Func. Count: 7, Neg. LLF: 25271003.94191482
Iteration: 2, Func. Count: 15, Neg. LLF: 81.17701156549127
Iteration: 3, Func. Count: 22, Neg. LLF: 80.73727308626829
Iteration: 4, Func. Count: 29, Neg. LLF: 80.34478556115879
Iteration: 5, Func. Count: 35, Neg. LLF: 80.40482715070846
Iteration: 6, Func. Count: 42, Neg. LLF: 80.15936813756261
Iteration: 7, Func. Count: 49, Neg. LLF: 80.14700246022885
Iteration: 8, Func. Count: 54, Neg. LLF: 80.14700246244564
Optimization terminated successfully (Exit mode 0)
Current function value: 80.14700246022885
Iterations: 8
Function evaluations: 54
Gradient evaluations: 8
Iteration: 1, Func. Count: 8, Neg. LLF: 25368312.38528822
Iteration: 2, Func. Count: 17, Neg. LLF: 82.71100185345898
Iteration: 3, Func. Count: 25, Neg. LLF: 81.42859424403287
Iteration: 4, Func. Count: 33, Neg. LLF: 80.58478058454217
Iteration: 5, Func. Count: 41, Neg. LLF: 80.17139244804774
Iteration: 6, Func. Count: 48, Neg. LLF: 80.15946697309326
Iteration: 7, Func. Count: 55, Neg. LLF: 80.15925122941154
Iteration: 8, Func. Count: 63, Neg. LLF: 80.15697728901878
Iteration: 9, Func. Count: 70, Neg. LLF: 80.15483280036278
Iteration: 10, Func. Count: 77, Neg. LLF: 80.15241440862927
Iteration: 11, Func. Count: 84, Neg. LLF: 80.14921192714314
Iteration: 12, Func. Count: 91, Neg. LLF: 80.1470377057338
Iteration: 13, Func. Count: 98, Neg. LLF: 80.14700921306957
Iteration: 14, Func. Count: 105, Neg. LLF: 80.14700242649269
Iteration: 15, Func. Count: 111, Neg. LLF: 80.14700242530799
Optimization terminated successfully (Exit mode 0)
Current function value: 80.14700242649269
Iterations: 15
Function evaluations: 111
Gradient evaluations: 15
Iteration: 1, Func. Count: 9, Neg. LLF: 25308191.695924196
Iteration: 2, Func. Count: 19, Neg. LLF: 132.01103039481424
Iteration: 3, Func. Count: 29, Neg. LLF: 124.47412373206231
Iteration: 4, Func. Count: 39, Neg. LLF: 80.08960571972857
Iteration: 5, Func. Count: 47, Neg. LLF: 80.27983399799376
Iteration: 6, Func. Count: 56, Neg. LLF: 80.88163512067695
Iteration: 7, Func. Count: 65, Neg. LLF: 79.89411296999964
Iteration: 8, Func. Count: 73, Neg. LLF: 79.8814037698996
Iteration: 9, Func. Count: 81, Neg. LLF: 79.85606004630571
Iteration: 10, Func. Count: 89, Neg. LLF: 79.80282200007449
Iteration: 11, Func. Count: 97, Neg. LLF: 80.39328279609052
Iteration: 12, Func. Count: 106, Neg. LLF: 80.41638618968393
Iteration: 13, Func. Count: 115, Neg. LLF: 79.83589428060189
Iteration: 14, Func. Count: 124, Neg. LLF: 79.5763708063606
Iteration: 15, Func. Count: 132, Neg. LLF: 79.57201220723164
Iteration: 16, Func. Count: 140, Neg. LLF: 79.57093813285293
Iteration: 17, Func. Count: 148, Neg. LLF: 79.56725233326793
Iteration: 18, Func. Count: 156, Neg. LLF: 79.56597634650213
Iteration: 19, Func. Count: 164, Neg. LLF: 79.56586218479188
Iteration: 20, Func. Count: 172, Neg. LLF: 79.56566279462095
Iteration: 21, Func. Count: 180, Neg. LLF: 79.56551257202273
Iteration: 22, Func. Count: 188, Neg. LLF: 79.56512447918195
Iteration: 23, Func. Count: 196, Neg. LLF: 79.56479058486308
Iteration: 24, Func. Count: 204, Neg. LLF: 79.56463584317422
Iteration: 25, Func. Count: 212, Neg. LLF: 79.56461302030536
Iteration: 26, Func. Count: 220, Neg. LLF: 79.56461158695858
Iteration: 27, Func. Count: 227, Neg. LLF: 79.56461158697972
Optimization terminated successfully (Exit mode 0)
Current function value: 79.56461158695858
Iterations: 27
Function evaluations: 227
Gradient evaluations: 27
Iteration: 1, Func. Count: 10, Neg. LLF: 13063552.317938324
Iteration: 2, Func. Count: 20, Neg. LLF: 104.52015507822313
Iteration: 3, Func. Count: 31, Neg. LLF: 81.51393765860057
Iteration: 4, Func. Count: 41, Neg. LLF: 81.53190779159289
Iteration: 5, Func. Count: 51, Neg. LLF: 79.7974475194737
Iteration: 6, Func. Count: 60, Neg. LLF: 79.7471858636337
Iteration: 7, Func. Count: 69, Neg. LLF: 79.63604117759996
Iteration: 8, Func. Count: 78, Neg. LLF: 79.81461283725089
Iteration: 9, Func. Count: 88, Neg. LLF: 79.57833822188753
Iteration: 10, Func. Count: 97, Neg. LLF: 79.56638859579802
Iteration: 11, Func. Count: 106, Neg. LLF: 79.56465582881957
Iteration: 12, Func. Count: 115, Neg. LLF: 79.56461224793789
Iteration: 13, Func. Count: 123, Neg. LLF: 79.5646122850454
Optimization terminated successfully (Exit mode 0)
Current function value: 79.56461224793789
Iterations: 13
Function evaluations: 123
Gradient evaluations: 13
Iteration: 1, Func. Count: 7, Neg. LLF: 118.5391047106991
Iteration: 2, Func. Count: 17, Neg. LLF: 357.1782978050197
Iteration: 3, Func. Count: 25, Neg. LLF: 13026617.934006661
Iteration: 4, Func. Count: 32, Neg. LLF: 80.15259490343492
Iteration: 5, Func. Count: 38, Neg. LLF: 80.14206228706828
Iteration: 6, Func. Count: 44, Neg. LLF: 80.12497563115564
Iteration: 7, Func. Count: 50, Neg. LLF: 80.12253113663745
Iteration: 8, Func. Count: 56, Neg. LLF: 80.12239115066114
Iteration: 9, Func. Count: 62, Neg. LLF: 80.12238721056619
Iteration: 10, Func. Count: 68, Neg. LLF: 80.12238453494915
Iteration: 11, Func. Count: 74, Neg. LLF: 80.1223837252264
Optimization terminated successfully (Exit mode 0)
Current function value: 80.1223837252264
Iterations: 11
Function evaluations: 74
Gradient evaluations: 11
Iteration: 1, Func. Count: 8, Neg. LLF: 24974563.943627305
Iteration: 2, Func. Count: 17, Neg. LLF: 81.174287622675
Iteration: 3, Func. Count: 25, Neg. LLF: 80.6995316115629
Iteration: 4, Func. Count: 33, Neg. LLF: 80.20878740952796
Iteration: 5, Func. Count: 40, Neg. LLF: 82.29426768844455
Iteration: 6, Func. Count: 49, Neg. LLF: 80.14780035440933
Iteration: 7, Func. Count: 56, Neg. LLF: 80.1470027282422
Iteration: 8, Func. Count: 63, Neg. LLF: 80.14700196365727
Optimization terminated successfully (Exit mode 0)
Current function value: 80.14700196365727
Iterations: 8
Function evaluations: 63
Gradient evaluations: 8
Iteration: 1, Func. Count: 9, Neg. LLF: 25215962.291605283
Iteration: 2, Func. Count: 19, Neg. LLF: 82.8051830207861
Iteration: 3, Func. Count: 28, Neg. LLF: 81.30168894514958
Iteration: 4, Func. Count: 37, Neg. LLF: 80.59113576651012
Iteration: 5, Func. Count: 46, Neg. LLF: 80.17206045646105
Iteration: 6, Func. Count: 54, Neg. LLF: 80.16149860076682
Iteration: 7, Func. Count: 62, Neg. LLF: 80.15876954379219
Iteration: 8, Func. Count: 70, Neg. LLF: 80.15757141240816
Iteration: 9, Func. Count: 78, Neg. LLF: 80.15522395471507
Iteration: 10, Func. Count: 86, Neg. LLF: 80.15316544256706
Iteration: 11, Func. Count: 94, Neg. LLF: 80.15043198015685
Iteration: 12, Func. Count: 102, Neg. LLF: 80.14700506782923
Iteration: 13, Func. Count: 110, Neg. LLF: 80.14701060025477
Iteration: 14, Func. Count: 118, Neg. LLF: 80.147002482472
Optimization terminated successfully (Exit mode 0)
Current function value: 80.1470024817269
Iterations: 14
Function evaluations: 118
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 25274710.092258234
Iteration: 2, Func. Count: 21, Neg. LLF: 133.79917683193284
Iteration: 3, Func. Count: 32, Neg. LLF: 128.00205909053957
Iteration: 4, Func. Count: 43, Neg. LLF: 80.10482800795293
Iteration: 5, Func. Count: 52, Neg. LLF: 80.08099741996624
Iteration: 6, Func. Count: 62, Neg. LLF: 80.78788035365812
Iteration: 7, Func. Count: 73, Neg. LLF: 79.86082577936571
Iteration: 8, Func. Count: 82, Neg. LLF: 80.34702660373519
Iteration: 9, Func. Count: 92, Neg. LLF: 79.82040193924307
Iteration: 10, Func. Count: 101, Neg. LLF: 79.79847813588188
Iteration: 11, Func. Count: 110, Neg. LLF: 79.6611428824133
Iteration: 12, Func. Count: 119, Neg. LLF: 79.59861819029106
Iteration: 13, Func. Count: 128, Neg. LLF: 79.58518110979078
Iteration: 14, Func. Count: 137, Neg. LLF: 79.58202817673178
Iteration: 15, Func. Count: 146, Neg. LLF: 79.57981022169757
Iteration: 16, Func. Count: 155, Neg. LLF: 79.57590684636837
Iteration: 17, Func. Count: 164, Neg. LLF: 79.57373857666231
Iteration: 18, Func. Count: 173, Neg. LLF: 79.57222515920218
Iteration: 19, Func. Count: 182, Neg. LLF: 79.57104639797161
Iteration: 20, Func. Count: 191, Neg. LLF: 79.5690903148311
Iteration: 21, Func. Count: 200, Neg. LLF: 79.56658655104626
Iteration: 22, Func. Count: 209, Neg. LLF: 79.56495988073404
Iteration: 23, Func. Count: 218, Neg. LLF: 79.56463955295142
Iteration: 24, Func. Count: 227, Neg. LLF: 79.56461315615184
Iteration: 25, Func. Count: 236, Neg. LLF: 79.56461158554869
Iteration: 26, Func. Count: 244, Neg. LLF: 79.56461158555128
Optimization terminated successfully (Exit mode 0)
Current function value: 79.56461158554869
Iterations: 26
Function evaluations: 244
Gradient evaluations: 26
Iteration: 1, Func. Count: 11, Neg. LLF: 13058766.339812592
Iteration: 2, Func. Count: 22, Neg. LLF: 119.73983436598341
Iteration: 3, Func. Count: 34, Neg. LLF: 81.77533164346825
Iteration: 4, Func. Count: 45, Neg. LLF: 81.32386149557176
Iteration: 5, Func. Count: 56, Neg. LLF: 83.97198660802145
Iteration: 6, Func. Count: 67, Neg. LLF: 79.83309263885253
Iteration: 7, Func. Count: 77, Neg. LLF: 79.77966881402239
Iteration: 8, Func. Count: 87, Neg. LLF: 79.6962826361266
Iteration: 9, Func. Count: 97, Neg. LLF: 79.60670530553979
Iteration: 10, Func. Count: 107, Neg. LLF: 79.58540231381008
Iteration: 11, Func. Count: 117, Neg. LLF: 79.57367506735471
Iteration: 12, Func. Count: 127, Neg. LLF: 79.56614654779874
Iteration: 13, Func. Count: 137, Neg. LLF: 79.56537061215161
Iteration: 14, Func. Count: 147, Neg. LLF: 79.56478430340104
Iteration: 15, Func. Count: 157, Neg. LLF: 79.56462452602464
Iteration: 16, Func. Count: 167, Neg. LLF: 79.56461181169576
Iteration: 17, Func. Count: 176, Neg. LLF: 79.56461184860832
Optimization terminated successfully (Exit mode 0)
Current function value: 79.56461181169576
Iterations: 17
Function evaluations: 176
Gradient evaluations: 17
Iteration: 1, Func. Count: 8, Neg. LLF: 130.09209187675543
Iteration: 2, Func. Count: 19, Neg. LLF: 412.58837799295395
Iteration: 3, Func. Count: 28, Neg. LLF: 14657759.332888503
Iteration: 4, Func. Count: 36, Neg. LLF: 80.13268951089209
Iteration: 5, Func. Count: 43, Neg. LLF: 80.12925003986028
Iteration: 6, Func. Count: 50, Neg. LLF: 80.12272133076891
Iteration: 7, Func. Count: 57, Neg. LLF: 80.1225385868178
Iteration: 8, Func. Count: 64, Neg. LLF: 80.12242061835947
Iteration: 9, Func. Count: 71, Neg. LLF: 80.12238499241641
Iteration: 10, Func. Count: 78, Neg. LLF: 80.12238369100604
Iteration: 11, Func. Count: 84, Neg. LLF: 80.12238375729981
Optimization terminated successfully (Exit mode 0)
Current function value: 80.12238369100604
Iterations: 11
Function evaluations: 84
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 24705313.582923487
Iteration: 2, Func. Count: 19, Neg. LLF: 81.19074082046664
Iteration: 3, Func. Count: 28, Neg. LLF: 80.68162859073031
Iteration: 4, Func. Count: 37, Neg. LLF: 101.87406414196703
Iteration: 5, Func. Count: 48, Neg. LLF: 80.42986961368698
Iteration: 6, Func. Count: 57, Neg. LLF: 80.48161003832448
Iteration: 7, Func. Count: 66, Neg. LLF: 80.25216889152837
Iteration: 8, Func. Count: 74, Neg. LLF: 80.2360203753321
Iteration: 9, Func. Count: 82, Neg. LLF: 80.19092014566007
Iteration: 10, Func. Count: 90, Neg. LLF: 80.15024738402907
Iteration: 11, Func. Count: 98, Neg. LLF: 80.14778179268977
Iteration: 12, Func. Count: 106, Neg. LLF: 80.14700431188689
Iteration: 13, Func. Count: 114, Neg. LLF: 80.14700196960544
Iteration: 14, Func. Count: 121, Neg. LLF: 80.14700196937389
Optimization terminated successfully (Exit mode 0)
Current function value: 80.14700196960544
Iterations: 14
Function evaluations: 121
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 24984198.400584824
Iteration: 2, Func. Count: 21, Neg. LLF: 83.24942802024934
Iteration: 3, Func. Count: 32, Neg. LLF: 81.26797054329455
Iteration: 4, Func. Count: 42, Neg. LLF: 80.6534896492331
Iteration: 5, Func. Count: 52, Neg. LLF: 80.16748284140687
Iteration: 6, Func. Count: 61, Neg. LLF: 80.2598512010937
Iteration: 7, Func. Count: 71, Neg. LLF: 80.15799171983542
Iteration: 8, Func. Count: 80, Neg. LLF: 80.15698643823707
Iteration: 9, Func. Count: 89, Neg. LLF: 80.15502422677059
Iteration: 10, Func. Count: 98, Neg. LLF: 80.15264405532734
Iteration: 11, Func. Count: 107, Neg. LLF: 80.14949851068512
Iteration: 12, Func. Count: 116, Neg. LLF: 80.14700438659423
Iteration: 13, Func. Count: 125, Neg. LLF: 80.14700330259191
Iteration: 14, Func. Count: 134, Neg. LLF: 80.14700196852044
Iteration: 15, Func. Count: 142, Neg. LLF: 80.14700196887367
Optimization terminated successfully (Exit mode 0)
Current function value: 80.14700196852044
Iterations: 15
Function evaluations: 142
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 25046326.832898673
Iteration: 2, Func. Count: 23, Neg. LLF: 134.12801428060789
Iteration: 3, Func. Count: 35, Neg. LLF: 130.92885879970407
Iteration: 4, Func. Count: 47, Neg. LLF: 80.10069530463387
Iteration: 5, Func. Count: 57, Neg. LLF: 80.14699024965977
Iteration: 6, Func. Count: 68, Neg. LLF: 80.9137513745807
Iteration: 7, Func. Count: 80, Neg. LLF: 79.8688031964545
Iteration: 8, Func. Count: 90, Neg. LLF: 80.19942200141256
Iteration: 9, Func. Count: 101, Neg. LLF: 79.82367955380577
Iteration: 10, Func. Count: 111, Neg. LLF: 79.80596402108786
Iteration: 11, Func. Count: 121, Neg. LLF: 79.7784197845127
Iteration: 12, Func. Count: 131, Neg. LLF: 79.69317589680887
Iteration: 13, Func. Count: 141, Neg. LLF: 79.64057359720265
Iteration: 14, Func. Count: 151, Neg. LLF: 79.6203530231053
Iteration: 15, Func. Count: 161, Neg. LLF: 79.58336701854826
Iteration: 16, Func. Count: 171, Neg. LLF: 79.58118294848992
Iteration: 17, Func. Count: 181, Neg. LLF: 79.57989592827295
Iteration: 18, Func. Count: 191, Neg. LLF: 79.57762577478076
Iteration: 19, Func. Count: 201, Neg. LLF: 79.57303113312368
Iteration: 20, Func. Count: 211, Neg. LLF: 79.56838645823899
Iteration: 21, Func. Count: 221, Neg. LLF: 79.56654765279198
Iteration: 22, Func. Count: 231, Neg. LLF: 79.56595329772667
Iteration: 23, Func. Count: 241, Neg. LLF: 79.56523119604215
Iteration: 24, Func. Count: 251, Neg. LLF: 79.56482429315298
Iteration: 25, Func. Count: 261, Neg. LLF: 79.56464663357866
Iteration: 26, Func. Count: 271, Neg. LLF: 79.56461335840564
Iteration: 27, Func. Count: 281, Neg. LLF: 79.56461161904315
Iteration: 28, Func. Count: 290, Neg. LLF: 79.56461161904014
Optimization terminated successfully (Exit mode 0)
Current function value: 79.56461161904315
Iterations: 28
Function evaluations: 290
Gradient evaluations: 28
Iteration: 1, Func. Count: 12, Neg. LLF: 11351052.265620071
Iteration: 2, Func. Count: 24, Neg. LLF: 148.3413523722107
Iteration: 3, Func. Count: 37, Neg. LLF: 81.76554042296888
Iteration: 4, Func. Count: 49, Neg. LLF: 81.32725240414905
Iteration: 5, Func. Count: 61, Neg. LLF: 91.10428415365209
Iteration: 6, Func. Count: 73, Neg. LLF: 79.80170901866161
Iteration: 7, Func. Count: 84, Neg. LLF: 79.81141647149393
Iteration: 8, Func. Count: 96, Neg. LLF: 79.72038929859923
Iteration: 9, Func. Count: 107, Neg. LLF: 79.60141584469721
Iteration: 10, Func. Count: 118, Neg. LLF: 79.58524629200903
Iteration: 11, Func. Count: 129, Neg. LLF: 79.56966499091128
Iteration: 12, Func. Count: 140, Neg. LLF: 79.56544085782801
Iteration: 13, Func. Count: 151, Neg. LLF: 79.56465782118322
Iteration: 14, Func. Count: 162, Neg. LLF: 79.5646152178772
Iteration: 15, Func. Count: 173, Neg. LLF: 79.56461321318439
Iteration: 16, Func. Count: 184, Neg. LLF: 79.56461156846366
Iteration: 17, Func. Count: 194, Neg. LLF: 79.56461160545784
Optimization terminated successfully (Exit mode 0)
Current function value: 79.56461156846366
Iterations: 17
Function evaluations: 194
Gradient evaluations: 17
Iteration: 1, Func. Count: 5, Neg. LLF: 118.13366625338438
Iteration: 2, Func. Count: 12, Neg. LLF: 122.57668245670098
Iteration: 3, Func. Count: 17, Neg. LLF: 82.07374478822568
Iteration: 4, Func. Count: 21, Neg. LLF: 81.40187398266731
Iteration: 5, Func. Count: 25, Neg. LLF: 81.0283329944326
Iteration: 6, Func. Count: 29, Neg. LLF: 80.85614694877667
Iteration: 7, Func. Count: 33, Neg. LLF: 80.83589091442718
Iteration: 8, Func. Count: 37, Neg. LLF: 80.83382399172214
Iteration: 9, Func. Count: 41, Neg. LLF: 80.8338083957303
Iteration: 10, Func. Count: 44, Neg. LLF: 80.83380854400588
Optimization terminated successfully (Exit mode 0)
Current function value: 80.8338083957303
Iterations: 10
Function evaluations: 44
Gradient evaluations: 10
Iteration: 1, Func. Count: 6, Neg. LLF: 23694037.235624928
Iteration: 2, Func. Count: 13, Neg. LLF: 81.54302336491982
Iteration: 3, Func. Count: 19, Neg. LLF: 80.76780446595137
Iteration: 4, Func. Count: 25, Neg. LLF: 80.23345642751676
Iteration: 5, Func. Count: 30, Neg. LLF: 93.69507743240696
Iteration: 6, Func. Count: 37, Neg. LLF: 80.171222993845
Iteration: 7, Func. Count: 42, Neg. LLF: 80.14705933073552
Iteration: 8, Func. Count: 47, Neg. LLF: 80.14700202036056
Iteration: 9, Func. Count: 51, Neg. LLF: 80.14700201977769
Optimization terminated successfully (Exit mode 0)
Current function value: 80.14700202036056
Iterations: 9
Function evaluations: 51
Gradient evaluations: 9
Iteration: 1, Func. Count: 7, Neg. LLF: 23693856.404390216
Iteration: 2, Func. Count: 15, Neg. LLF: 80.93255479492872
Iteration: 3, Func. Count: 22, Neg. LLF: 80.59840814130003
Iteration: 4, Func. Count: 29, Neg. LLF: 80.25691110552022
Iteration: 5, Func. Count: 35, Neg. LLF: 80.20393776349478
Iteration: 6, Func. Count: 41, Neg. LLF: 80.16919903903035
Iteration: 7, Func. Count: 47, Neg. LLF: 80.1540377785015
Iteration: 8, Func. Count: 53, Neg. LLF: 80.1537116156899
Iteration: 9, Func. Count: 59, Neg. LLF: 80.15345551900243
Iteration: 10, Func. Count: 65, Neg. LLF: 80.15268737467677
Iteration: 11, Func. Count: 71, Neg. LLF: 80.14987077249633
Iteration: 12, Func. Count: 77, Neg. LLF: 80.14700735601954
Iteration: 13, Func. Count: 83, Neg. LLF: 80.14700375653844
Iteration: 14, Func. Count: 89, Neg. LLF: 80.14700201337999
Iteration: 15, Func. Count: 94, Neg. LLF: 80.14700201359913
Optimization terminated successfully (Exit mode 0)
Current function value: 80.14700201337999
Iterations: 15
Function evaluations: 94
Gradient evaluations: 15
Iteration: 1, Func. Count: 8, Neg. LLF: 23701257.488462985
Iteration: 2, Func. Count: 17, Neg. LLF: 80.73237066626903
Iteration: 3, Func. Count: 25, Neg. LLF: 80.63328662220256
Iteration: 4, Func. Count: 33, Neg. LLF: 80.21031802115347
Iteration: 5, Func. Count: 40, Neg. LLF: 80.15691559212178
Iteration: 6, Func. Count: 47, Neg. LLF: 80.15287209028949
Iteration: 7, Func. Count: 54, Neg. LLF: 80.15193964329883
Iteration: 8, Func. Count: 61, Neg. LLF: 80.1516939946072
Iteration: 9, Func. Count: 68, Neg. LLF: 80.15160199198974
Iteration: 10, Func. Count: 75, Neg. LLF: 80.15157722051374
Iteration: 11, Func. Count: 82, Neg. LLF: 80.15157306480549
Iteration: 12, Func. Count: 88, Neg. LLF: 80.15157306527124
Optimization terminated successfully (Exit mode 0)
Current function value: 80.15157306480549
Iterations: 12
Function evaluations: 88
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 23713418.775463376
Iteration: 2, Func. Count: 19, Neg. LLF: 80.56100985177218
Iteration: 3, Func. Count: 28, Neg. LLF: 80.49128152870334
Iteration: 4, Func. Count: 37, Neg. LLF: 80.31211984392684
Iteration: 5, Func. Count: 46, Neg. LLF: 80.1883553495752
Iteration: 6, Func. Count: 54, Neg. LLF: 80.17637368958118
Iteration: 7, Func. Count: 62, Neg. LLF: 80.16440722203727
Iteration: 8, Func. Count: 70, Neg. LLF: 80.15863585328535
Iteration: 9, Func. Count: 78, Neg. LLF: 80.15382022324157
Iteration: 10, Func. Count: 86, Neg. LLF: 80.15350130759252
Iteration: 11, Func. Count: 94, Neg. LLF: 80.15231827225087
Iteration: 12, Func. Count: 102, Neg. LLF: 80.15121006394793
Iteration: 13, Func. Count: 110, Neg. LLF: 80.15083526354101
Iteration: 14, Func. Count: 118, Neg. LLF: 80.15059055122018
Iteration: 15, Func. Count: 126, Neg. LLF: 23695745.276819177
Iteration: 16, Func. Count: 138, Neg. LLF: 80.15516722472684
Iteration: 17, Func. Count: 148, Neg. LLF: 80.1503618152861
Iteration: 18, Func. Count: 156, Neg. LLF: 80.14992776070075
Iteration: 19, Func. Count: 164, Neg. LLF: 80.14742335394011
Iteration: 20, Func. Count: 172, Neg. LLF: 80.14700197652223
Iteration: 21, Func. Count: 179, Neg. LLF: 80.1470019782812
Optimization terminated successfully (Exit mode 0)
Current function value: 80.14700197652223
Iterations: 22
Function evaluations: 179
Gradient evaluations: 21
Iteration: 1, Func. Count: 6, Neg. LLF: 118.83994209197986
Iteration: 2, Func. Count: 14, Neg. LLF: 117.1113699224132
Iteration: 3, Func. Count: 20, Neg. LLF: 82.05931687113174
Iteration: 4, Func. Count: 25, Neg. LLF: 80.85058113941666
Iteration: 5, Func. Count: 30, Neg. LLF: 80.84984719646116
Iteration: 6, Func. Count: 36, Neg. LLF: 80.83380862272891
Iteration: 7, Func. Count: 40, Neg. LLF: 80.83380872745559
Optimization terminated successfully (Exit mode 0)
Current function value: 80.83380862272891
Iterations: 7
Function evaluations: 40
Gradient evaluations: 7
Iteration: 1, Func. Count: 7, Neg. LLF: 24669334.028883524
Iteration: 2, Func. Count: 15, Neg. LLF: 81.33164817114837
Iteration: 3, Func. Count: 22, Neg. LLF: 80.8695578553638
Iteration: 4, Func. Count: 29, Neg. LLF: 80.26653693461527
Iteration: 5, Func. Count: 35, Neg. LLF: 80.52665636355567
Iteration: 6, Func. Count: 42, Neg. LLF: 80.1688095584822
Iteration: 7, Func. Count: 49, Neg. LLF: 80.14700233839183
Iteration: 8, Func. Count: 54, Neg. LLF: 80.1470023401669
Optimization terminated successfully (Exit mode 0)
Current function value: 80.14700233839183
Iterations: 8
Function evaluations: 54
Gradient evaluations: 8
Iteration: 1, Func. Count: 8, Neg. LLF: 24583433.30865675
Iteration: 2, Func. Count: 17, Neg. LLF: 80.86645228675164
Iteration: 3, Func. Count: 25, Neg. LLF: 80.63177830726133
Iteration: 4, Func. Count: 33, Neg. LLF: 80.27556284424027
Iteration: 5, Func. Count: 40, Neg. LLF: 80.1996411320458
Iteration: 6, Func. Count: 47, Neg. LLF: 80.18200989365629
Iteration: 7, Func. Count: 54, Neg. LLF: 80.15587400642033
Iteration: 8, Func. Count: 61, Neg. LLF: 80.15559093171362
Iteration: 9, Func. Count: 69, Neg. LLF: 80.15441375087988
Iteration: 10, Func. Count: 76, Neg. LLF: 80.1535952182328
Iteration: 11, Func. Count: 83, Neg. LLF: 80.15097902383911
Iteration: 12, Func. Count: 90, Neg. LLF: 80.14702101032893
Iteration: 13, Func. Count: 97, Neg. LLF: 80.14700196825463
Iteration: 14, Func. Count: 103, Neg. LLF: 80.14700196858774
Optimization terminated successfully (Exit mode 0)
Current function value: 80.14700196825463
Iterations: 14
Function evaluations: 103
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 24553815.514374565
Iteration: 2, Func. Count: 19, Neg. LLF: 80.69207156527861
Iteration: 3, Func. Count: 28, Neg. LLF: 80.84763954614289
Iteration: 4, Func. Count: 37, Neg. LLF: 80.21372278335195
Iteration: 5, Func. Count: 45, Neg. LLF: 80.16784317994664
Iteration: 6, Func. Count: 53, Neg. LLF: 80.15986794672168
Iteration: 7, Func. Count: 61, Neg. LLF: 80.1585272383393
Iteration: 8, Func. Count: 69, Neg. LLF: 80.1516966798525
Iteration: 9, Func. Count: 77, Neg. LLF: 80.15158754543077
Iteration: 10, Func. Count: 85, Neg. LLF: 80.151572958162
Iteration: 11, Func. Count: 92, Neg. LLF: 80.15157295795548
Optimization terminated successfully (Exit mode 0)
Current function value: 80.151572958162
Iterations: 11
Function evaluations: 92
Gradient evaluations: 11
Iteration: 1, Func. Count: 10, Neg. LLF: 24529849.735875815
Iteration: 2, Func. Count: 21, Neg. LLF: 80.47738072570928
Iteration: 3, Func. Count: 31, Neg. LLF: 81.28602878343081
Iteration: 4, Func. Count: 41, Neg. LLF: 80.42051928879792
Iteration: 5, Func. Count: 51, Neg. LLF: 80.19605204614697
Iteration: 6, Func. Count: 60, Neg. LLF: 80.17708687829563
Iteration: 7, Func. Count: 69, Neg. LLF: 80.16439055254577
Iteration: 8, Func. Count: 78, Neg. LLF: 80.15730821777574
Iteration: 9, Func. Count: 87, Neg. LLF: 80.15317392409463
Iteration: 10, Func. Count: 96, Neg. LLF: 80.15287283319134
Iteration: 11, Func. Count: 105, Neg. LLF: 80.15181735310718
Iteration: 12, Func. Count: 114, Neg. LLF: 80.15164637781253
Iteration: 13, Func. Count: 123, Neg. LLF: 80.15129081735968
Iteration: 14, Func. Count: 132, Neg. LLF: 80.1511651395177
Iteration: 15, Func. Count: 141, Neg. LLF: 80.15038419320479
Iteration: 16, Func. Count: 150, Neg. LLF: 80.14713257905747
Iteration: 17, Func. Count: 159, Neg. LLF: 80.17079106292246
Iteration: 18, Func. Count: 170, Neg. LLF: 80.14704694891573
Iteration: 19, Func. Count: 179, Neg. LLF: 80.14782959318929
Optimization terminated successfully (Exit mode 0)
Current function value: 80.14704632641214
Iterations: 19
Function evaluations: 181
Gradient evaluations: 19
Iteration: 1, Func. Count: 7, Neg. LLF: 118.63486304502506
Iteration: 2, Func. Count: 17, Neg. LLF: 224.57790637362086
Iteration: 3, Func. Count: 25, Neg. LLF: 225.31664959150015
Iteration: 4, Func. Count: 32, Neg. LLF: 80.15833711424663
Iteration: 5, Func. Count: 38, Neg. LLF: 80.14230308870383
Iteration: 6, Func. Count: 44, Neg. LLF: 80.1271381662252
Iteration: 7, Func. Count: 50, Neg. LLF: 80.12363487732041
Iteration: 8, Func. Count: 56, Neg. LLF: 80.1230558210208
Iteration: 9, Func. Count: 62, Neg. LLF: 80.1224013943984
Iteration: 10, Func. Count: 68, Neg. LLF: 80.12238443591504
Iteration: 11, Func. Count: 74, Neg. LLF: 80.12238366037208
Optimization terminated successfully (Exit mode 0)
Current function value: 80.12238366037208
Iterations: 11
Function evaluations: 74
Gradient evaluations: 11
Iteration: 1, Func. Count: 8, Neg. LLF: 24695371.08309605
Iteration: 2, Func. Count: 17, Neg. LLF: 81.32923805331319
Iteration: 3, Func. Count: 25, Neg. LLF: 80.86404122708173
Iteration: 4, Func. Count: 33, Neg. LLF: 80.3220267424494
Iteration: 5, Func. Count: 40, Neg. LLF: 80.42012321089656
Iteration: 6, Func. Count: 48, Neg. LLF: 80.16633674286511
Iteration: 7, Func. Count: 56, Neg. LLF: 80.14700250767073
Iteration: 8, Func. Count: 63, Neg. LLF: 80.14700196334087
Optimization terminated successfully (Exit mode 0)
Current function value: 80.14700196334087
Iterations: 8
Function evaluations: 63
Gradient evaluations: 8
Iteration: 1, Func. Count: 9, Neg. LLF: 24703391.72096781
Iteration: 2, Func. Count: 19, Neg. LLF: 82.65560460127526
Iteration: 3, Func. Count: 28, Neg. LLF: 81.30131785075477
Iteration: 4, Func. Count: 37, Neg. LLF: 80.53411535567756
Iteration: 5, Func. Count: 46, Neg. LLF: 80.33368398758662
Iteration: 6, Func. Count: 54, Neg. LLF: 80.18572437731777
Iteration: 7, Func. Count: 62, Neg. LLF: 80.15801174061924
Iteration: 8, Func. Count: 70, Neg. LLF: 80.15756020660572
Iteration: 9, Func. Count: 79, Neg. LLF: 80.15492153509786
Iteration: 10, Func. Count: 87, Neg. LLF: 80.15453160408887
Iteration: 11, Func. Count: 95, Neg. LLF: 80.15301295786873
Iteration: 12, Func. Count: 103, Neg. LLF: 80.15010753734752
Iteration: 13, Func. Count: 111, Neg. LLF: 80.14700586353872
Iteration: 14, Func. Count: 119, Neg. LLF: 80.14700913729389
Iteration: 15, Func. Count: 127, Neg. LLF: 80.14700196566312
Optimization terminated successfully (Exit mode 0)
Current function value: 80.14700196543374
Iterations: 15
Function evaluations: 127
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 24735252.385194894
Iteration: 2, Func. Count: 21, Neg. LLF: 131.37258322508424
Iteration: 3, Func. Count: 32, Neg. LLF: 125.71409210231295
Iteration: 4, Func. Count: 43, Neg. LLF: 80.11987239900286
Iteration: 5, Func. Count: 52, Neg. LLF: 80.24000205523438
Iteration: 6, Func. Count: 62, Neg. LLF: 80.97469741570818
Iteration: 7, Func. Count: 73, Neg. LLF: 79.88535595966444
Iteration: 8, Func. Count: 82, Neg. LLF: 79.8559018345958
Iteration: 9, Func. Count: 91, Neg. LLF: 81.28139361959792
Iteration: 10, Func. Count: 101, Neg. LLF: 79.81689207128233
Iteration: 11, Func. Count: 110, Neg. LLF: 79.76880039743887
Iteration: 12, Func. Count: 119, Neg. LLF: 79.72724214034956
Iteration: 13, Func. Count: 128, Neg. LLF: 79.63123111257744
Iteration: 14, Func. Count: 137, Neg. LLF: 79.60987958185767
Iteration: 15, Func. Count: 146, Neg. LLF: 79.58500955326986
Iteration: 16, Func. Count: 155, Neg. LLF: 79.57480528585064
Iteration: 17, Func. Count: 164, Neg. LLF: 79.57305694641697
Iteration: 18, Func. Count: 173, Neg. LLF: 79.571666636223
Iteration: 19, Func. Count: 182, Neg. LLF: 79.5701085523567
Iteration: 20, Func. Count: 191, Neg. LLF: 79.56903123549303
Iteration: 21, Func. Count: 200, Neg. LLF: 79.56829161378829
Iteration: 22, Func. Count: 209, Neg. LLF: 79.5676215759316
Iteration: 23, Func. Count: 218, Neg. LLF: 79.56641735672584
Iteration: 24, Func. Count: 227, Neg. LLF: 79.56520150181892
Iteration: 25, Func. Count: 236, Neg. LLF: 79.56469043717998
Iteration: 26, Func. Count: 245, Neg. LLF: 79.56461721993367
Iteration: 27, Func. Count: 254, Neg. LLF: 79.56461166477918
Iteration: 28, Func. Count: 262, Neg. LLF: 79.56461166482043
Optimization terminated successfully (Exit mode 0)
Current function value: 79.56461166477918
Iterations: 28
Function evaluations: 262
Gradient evaluations: 28
Iteration: 1, Func. Count: 11, Neg. LLF: 24798882.22997746
Iteration: 2, Func. Count: 23, Neg. LLF: 109.56261985775653
Iteration: 3, Func. Count: 35, Neg. LLF: 114.95991480108744
Iteration: 4, Func. Count: 47, Neg. LLF: 80.06386230814907
Iteration: 5, Func. Count: 57, Neg. LLF: 79.87318158590023
Iteration: 6, Func. Count: 67, Neg. LLF: 79.86066763846456
Iteration: 7, Func. Count: 77, Neg. LLF: 79.79233564505942
Iteration: 8, Func. Count: 87, Neg. LLF: 79.70420623417375
Iteration: 9, Func. Count: 97, Neg. LLF: 80.39745528062555
Iteration: 10, Func. Count: 108, Neg. LLF: 79.59576095978011
Iteration: 11, Func. Count: 118, Neg. LLF: 79.5694932775354
Iteration: 12, Func. Count: 128, Neg. LLF: 79.56912082473981
Iteration: 13, Func. Count: 138, Neg. LLF: 79.56735513752388
Iteration: 14, Func. Count: 148, Neg. LLF: 79.5658879673949
Iteration: 15, Func. Count: 158, Neg. LLF: 79.56572631052458
Iteration: 16, Func. Count: 168, Neg. LLF: 79.56512605708816
Iteration: 17, Func. Count: 178, Neg. LLF: 79.56478128634687
Iteration: 18, Func. Count: 188, Neg. LLF: 79.56462655541193
Iteration: 19, Func. Count: 198, Neg. LLF: 79.56461229348231
Iteration: 20, Func. Count: 208, Neg. LLF: 79.56461157882909
Optimization terminated successfully (Exit mode 0)
Current function value: 79.56461157882909
Iterations: 20
Function evaluations: 208
Gradient evaluations: 20
Iteration: 1, Func. Count: 8, Neg. LLF: 119.0301328673059
Iteration: 2, Func. Count: 19, Neg. LLF: 534.7524976719072
Iteration: 3, Func. Count: 28, Neg. LLF: 13032287.291803164
Iteration: 4, Func. Count: 36, Neg. LLF: 80.1469015115126
Iteration: 5, Func. Count: 43, Neg. LLF: 80.13896102168532
Iteration: 6, Func. Count: 50, Neg. LLF: 80.12402041362184
Iteration: 7, Func. Count: 57, Neg. LLF: 80.12276488154625
Iteration: 8, Func. Count: 64, Neg. LLF: 80.12243829370404
Iteration: 9, Func. Count: 71, Neg. LLF: 80.12238373938203
Iteration: 10, Func. Count: 77, Neg. LLF: 80.12238380507837
Optimization terminated successfully (Exit mode 0)
Current function value: 80.12238373938203
Iterations: 10
Function evaluations: 77
Gradient evaluations: 10
Iteration: 1, Func. Count: 9, Neg. LLF: 24455671.887265474
Iteration: 2, Func. Count: 19, Neg. LLF: 81.33036361985096
Iteration: 3, Func. Count: 28, Neg. LLF: 80.84186813729696
Iteration: 4, Func. Count: 37, Neg. LLF: 80.49247880111707
Iteration: 5, Func. Count: 46, Neg. LLF: 80.2637207137241
Iteration: 6, Func. Count: 54, Neg. LLF: 80.59879025322805
Iteration: 7, Func. Count: 63, Neg. LLF: 80.16259744740351
Iteration: 8, Func. Count: 71, Neg. LLF: 80.14875741953954
Iteration: 9, Func. Count: 79, Neg. LLF: 80.1470184260785
Iteration: 10, Func. Count: 87, Neg. LLF: 80.14700243024366
Iteration: 11, Func. Count: 94, Neg. LLF: 80.14700242970733
Optimization terminated successfully (Exit mode 0)
Current function value: 80.14700243024366
Iterations: 11
Function evaluations: 94
Gradient evaluations: 11
Iteration: 1, Func. Count: 10, Neg. LLF: 24580638.569700744
Iteration: 2, Func. Count: 21, Neg. LLF: 82.92463823691696
Iteration: 3, Func. Count: 31, Neg. LLF: 81.3425709686558
Iteration: 4, Func. Count: 41, Neg. LLF: 80.54880817219014
Iteration: 5, Func. Count: 51, Neg. LLF: 80.29785022708921
Iteration: 6, Func. Count: 60, Neg. LLF: 80.17994296246249
Iteration: 7, Func. Count: 69, Neg. LLF: 80.1558453318296
Iteration: 8, Func. Count: 78, Neg. LLF: 80.15570534847465
Iteration: 9, Func. Count: 88, Neg. LLF: 80.15469752024615
Iteration: 10, Func. Count: 97, Neg. LLF: 80.15406106267994
Iteration: 11, Func. Count: 106, Neg. LLF: 80.15197139167704
Iteration: 12, Func. Count: 115, Neg. LLF: 80.14881763209966
Iteration: 13, Func. Count: 124, Neg. LLF: 80.14703807174499
Iteration: 14, Func. Count: 133, Neg. LLF: 80.14702262984
Iteration: 15, Func. Count: 142, Neg. LLF: 80.14700747445458
Iteration: 16, Func. Count: 151, Neg. LLF: 80.14700291705466
Iteration: 17, Func. Count: 160, Neg. LLF: 80.14700205096136
Optimization terminated successfully (Exit mode 0)
Current function value: 80.14700205096136
Iterations: 17
Function evaluations: 160
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 24702208.13620095
Iteration: 2, Func. Count: 23, Neg. LLF: 133.21005603275847
Iteration: 3, Func. Count: 35, Neg. LLF: 129.50019364148451
Iteration: 4, Func. Count: 47, Neg. LLF: 80.13476080447579
Iteration: 5, Func. Count: 57, Neg. LLF: 80.05438378576268
Iteration: 6, Func. Count: 67, Neg. LLF: 81.18035751646421
Iteration: 7, Func. Count: 80, Neg. LLF: 79.83777245831112
Iteration: 8, Func. Count: 90, Neg. LLF: 79.81301905483258
Iteration: 9, Func. Count: 100, Neg. LLF: 79.69416735706618
Iteration: 10, Func. Count: 110, Neg. LLF: 79.66944708429064
Iteration: 11, Func. Count: 120, Neg. LLF: 79.62725426318588
Iteration: 12, Func. Count: 130, Neg. LLF: 79.5821818613087
Iteration: 13, Func. Count: 140, Neg. LLF: 79.57523885322124
Iteration: 14, Func. Count: 150, Neg. LLF: 79.57337225260596
Iteration: 15, Func. Count: 160, Neg. LLF: 79.57247849733609
Iteration: 16, Func. Count: 170, Neg. LLF: 79.5703110071206
Iteration: 17, Func. Count: 180, Neg. LLF: 79.56782159178832
Iteration: 18, Func. Count: 190, Neg. LLF: 79.56548752898473
Iteration: 19, Func. Count: 200, Neg. LLF: 79.56464967833125
Iteration: 20, Func. Count: 210, Neg. LLF: 79.5646128363284
Iteration: 21, Func. Count: 220, Neg. LLF: 79.56461162433479
Iteration: 22, Func. Count: 229, Neg. LLF: 79.56461162436813
Optimization terminated successfully (Exit mode 0)
Current function value: 79.56461162433479
Iterations: 22
Function evaluations: 229
Gradient evaluations: 22
Iteration: 1, Func. Count: 12, Neg. LLF: 24805158.06889541
Iteration: 2, Func. Count: 25, Neg. LLF: 118.49278848834086
Iteration: 3, Func. Count: 38, Neg. LLF: 118.94190426077483
Iteration: 4, Func. Count: 51, Neg. LLF: 80.06438650014026
Iteration: 5, Func. Count: 62, Neg. LLF: 79.87488774293321
Iteration: 6, Func. Count: 73, Neg. LLF: 80.01639671187601
Iteration: 7, Func. Count: 85, Neg. LLF: 79.828796729526
Iteration: 8, Func. Count: 96, Neg. LLF: 79.76745725953457
Iteration: 9, Func. Count: 107, Neg. LLF: 79.57244362470573
Iteration: 10, Func. Count: 118, Neg. LLF: 79.57141392881286
Iteration: 11, Func. Count: 129, Neg. LLF: 79.56817283768063
Iteration: 12, Func. Count: 140, Neg. LLF: 79.5670720154398
Iteration: 13, Func. Count: 151, Neg. LLF: 79.56685232208548
Iteration: 14, Func. Count: 162, Neg. LLF: 79.56619083851885
Iteration: 15, Func. Count: 173, Neg. LLF: 79.56569010744747
Iteration: 16, Func. Count: 184, Neg. LLF: 79.5650136159293
Iteration: 17, Func. Count: 195, Neg. LLF: 79.56467843438682
Iteration: 18, Func. Count: 206, Neg. LLF: 79.5646168840493
Iteration: 19, Func. Count: 217, Neg. LLF: 79.56461177334245
Iteration: 20, Func. Count: 227, Neg. LLF: 79.56461181036956
Optimization terminated successfully (Exit mode 0)
Current function value: 79.56461177334245
Iterations: 20
Function evaluations: 227
Gradient evaluations: 20
Iteration: 1, Func. Count: 9, Neg. LLF: 130.7458240546415
Iteration: 2, Func. Count: 21, Neg. LLF: 441.90752684773565
Iteration: 3, Func. Count: 31, Neg. LLF: 14437365.855762767
Iteration: 4, Func. Count: 40, Neg. LLF: 80.1300549757281
Iteration: 5, Func. Count: 48, Neg. LLF: 80.12682854296864
Iteration: 6, Func. Count: 56, Neg. LLF: 80.1237875496136
Iteration: 7, Func. Count: 64, Neg. LLF: 80.12288296730239
Iteration: 8, Func. Count: 72, Neg. LLF: 80.12247754671748
Iteration: 9, Func. Count: 80, Neg. LLF: 80.1223872769992
Iteration: 10, Func. Count: 88, Neg. LLF: 80.12238370294813
Iteration: 11, Func. Count: 95, Neg. LLF: 80.12238376922896
Optimization terminated successfully (Exit mode 0)
Current function value: 80.12238370294813
Iterations: 11
Function evaluations: 95
Gradient evaluations: 11
Iteration: 1, Func. Count: 10, Neg. LLF: 24252330.2584183
Iteration: 2, Func. Count: 21, Neg. LLF: 81.34764161028765
Iteration: 3, Func. Count: 31, Neg. LLF: 80.70137907940516
Iteration: 4, Func. Count: 41, Neg. LLF: 80.33107331811232
Iteration: 5, Func. Count: 50, Neg. LLF: 80.47430564013955
Iteration: 6, Func. Count: 60, Neg. LLF: 80.14779121741843
Iteration: 7, Func. Count: 69, Neg. LLF: 80.1470026445076
Iteration: 8, Func. Count: 78, Neg. LLF: 80.14700196491631
Optimization terminated successfully (Exit mode 0)
Current function value: 80.14700196491631
Iterations: 8
Function evaluations: 78
Gradient evaluations: 8
Iteration: 1, Func. Count: 11, Neg. LLF: 24406737.20893501
Iteration: 2, Func. Count: 23, Neg. LLF: 83.39227402195566
Iteration: 3, Func. Count: 34, Neg. LLF: 81.46099374853893
Iteration: 4, Func. Count: 45, Neg. LLF: 80.59159543364873
Iteration: 5, Func. Count: 56, Neg. LLF: 80.27338448029616
Iteration: 6, Func. Count: 66, Neg. LLF: 80.1697378539648
Iteration: 7, Func. Count: 76, Neg. LLF: 80.15719324085896
Iteration: 8, Func. Count: 86, Neg. LLF: 80.15592655242365
Iteration: 9, Func. Count: 96, Neg. LLF: 80.15553034101835
Iteration: 10, Func. Count: 106, Neg. LLF: 80.15349898807733
Iteration: 11, Func. Count: 116, Neg. LLF: 80.1514067839144
Iteration: 12, Func. Count: 126, Neg. LLF: 80.1470385923438
Iteration: 13, Func. Count: 136, Neg. LLF: 80.14704177611709
Iteration: 14, Func. Count: 147, Neg. LLF: 80.14700261102621
Iteration: 15, Func. Count: 157, Neg. LLF: 80.14700196368759
Optimization terminated successfully (Exit mode 0)
Current function value: 80.14700196368759
Iterations: 15
Function evaluations: 157
Gradient evaluations: 15
Iteration: 1, Func. Count: 12, Neg. LLF: 24521770.65459961
Iteration: 2, Func. Count: 25, Neg. LLF: 133.71006988938737
Iteration: 3, Func. Count: 38, Neg. LLF: 132.87454825579564
Iteration: 4, Func. Count: 51, Neg. LLF: 80.13199560217774
Iteration: 5, Func. Count: 62, Neg. LLF: 80.11028514532309
Iteration: 6, Func. Count: 74, Neg. LLF: 80.88860819448591
Iteration: 7, Func. Count: 87, Neg. LLF: 79.85462702432945
Iteration: 8, Func. Count: 98, Neg. LLF: 79.89500453974247
Iteration: 9, Func. Count: 110, Neg. LLF: 79.8133574336972
Iteration: 10, Func. Count: 121, Neg. LLF: 79.78276187060361
Iteration: 11, Func. Count: 132, Neg. LLF: 79.6619372309197
Iteration: 12, Func. Count: 143, Neg. LLF: 79.60514031874628
Iteration: 13, Func. Count: 154, Neg. LLF: 79.59036827330608
Iteration: 14, Func. Count: 165, Neg. LLF: 79.58759947076344
Iteration: 15, Func. Count: 176, Neg. LLF: 79.58397818719457
Iteration: 16, Func. Count: 187, Neg. LLF: 79.57927138048503
Iteration: 17, Func. Count: 198, Neg. LLF: 79.57572567556487
Iteration: 18, Func. Count: 209, Neg. LLF: 79.57333865683992
Iteration: 19, Func. Count: 220, Neg. LLF: 79.57156807768045
Iteration: 20, Func. Count: 231, Neg. LLF: 79.56905568876833
Iteration: 21, Func. Count: 242, Neg. LLF: 79.56622700332574
Iteration: 22, Func. Count: 253, Neg. LLF: 79.56482503609877
Iteration: 23, Func. Count: 264, Neg. LLF: 79.56462690308105
Iteration: 24, Func. Count: 275, Neg. LLF: 79.56461228235051
Iteration: 25, Func. Count: 286, Neg. LLF: 79.56461157876431
Optimization terminated successfully (Exit mode 0)
Current function value: 79.56461157876431
Iterations: 25
Function evaluations: 286
Gradient evaluations: 25
Iteration: 1, Func. Count: 13, Neg. LLF: 24607783.722796965
Iteration: 2, Func. Count: 27, Neg. LLF: 119.25425035412695
Iteration: 3, Func. Count: 41, Neg. LLF: 118.54111078644618
Iteration: 4, Func. Count: 55, Neg. LLF: 80.08043212618686
Iteration: 5, Func. Count: 67, Neg. LLF: 79.87381569342523
Iteration: 6, Func. Count: 79, Neg. LLF: 79.85162789737156
Iteration: 7, Func. Count: 91, Neg. LLF: 79.78163081353372
Iteration: 8, Func. Count: 103, Neg. LLF: 79.69799278813932
Iteration: 9, Func. Count: 115, Neg. LLF: 80.42001455173408
Iteration: 10, Func. Count: 128, Neg. LLF: 79.5806973651499
Iteration: 11, Func. Count: 140, Neg. LLF: 79.57055889514923
Iteration: 12, Func. Count: 152, Neg. LLF: 79.5696657200751
Iteration: 13, Func. Count: 164, Neg. LLF: 79.56889759097992
Iteration: 14, Func. Count: 176, Neg. LLF: 79.56769206930043
Iteration: 15, Func. Count: 188, Neg. LLF: 79.56662089905743
Iteration: 16, Func. Count: 200, Neg. LLF: 79.5659378835059
Iteration: 17, Func. Count: 212, Neg. LLF: 79.5656532687351
Iteration: 18, Func. Count: 224, Neg. LLF: 79.5653887390411
Iteration: 19, Func. Count: 236, Neg. LLF: 79.56497567966171
Iteration: 20, Func. Count: 248, Neg. LLF: 79.56468892520671
Iteration: 21, Func. Count: 260, Neg. LLF: 79.56461787992266
Iteration: 22, Func. Count: 272, Neg. LLF: 79.56461181598436
Iteration: 23, Func. Count: 283, Neg. LLF: 79.56461185300576
Optimization terminated successfully (Exit mode 0)
Current function value: 79.56461181598436
Iterations: 23
Function evaluations: 283
Gradient evaluations: 23
Iteration: 1, Func. Count: 6, Neg. LLF: 129.16677408794783
Iteration: 2, Func. Count: 15, Neg. LLF: 120.10060471422419
Iteration: 3, Func. Count: 22, Neg. LLF: 80.84654393446009
Iteration: 4, Func. Count: 27, Neg. LLF: 80.83579760600385
Iteration: 5, Func. Count: 32, Neg. LLF: 80.8338712597232
Iteration: 6, Func. Count: 37, Neg. LLF: 80.8338094777566
Iteration: 7, Func. Count: 42, Neg. LLF: 80.83380839860749
Iteration: 8, Func. Count: 46, Neg. LLF: 80.8338084030849
Optimization terminated successfully (Exit mode 0)
Current function value: 80.83380839860749
Iterations: 8
Function evaluations: 46
Gradient evaluations: 8
Iteration: 1, Func. Count: 7, Neg. LLF: 23694713.98214724
Iteration: 2, Func. Count: 15, Neg. LLF: 81.54608640182944
Iteration: 3, Func. Count: 22, Neg. LLF: 80.82996447600934
Iteration: 4, Func. Count: 29, Neg. LLF: 80.66592015238427
Iteration: 5, Func. Count: 36, Neg. LLF: 80.31540708930632
Iteration: 6, Func. Count: 42, Neg. LLF: 162.62455860544463
Iteration: 7, Func. Count: 50, Neg. LLF: 80.21885655749118
Iteration: 8, Func. Count: 56, Neg. LLF: 80.226230221625
Iteration: 9, Func. Count: 63, Neg. LLF: 80.1556512430446
Iteration: 10, Func. Count: 69, Neg. LLF: 80.1470929563349
Iteration: 11, Func. Count: 75, Neg. LLF: 80.14700433195068
Iteration: 12, Func. Count: 81, Neg. LLF: 80.1470019915566
Iteration: 13, Func. Count: 86, Neg. LLF: 80.14700199208019
Optimization terminated successfully (Exit mode 0)
Current function value: 80.1470019915566
Iterations: 13
Function evaluations: 86
Gradient evaluations: 13
Iteration: 1, Func. Count: 8, Neg. LLF: 23714898.17198093
Iteration: 2, Func. Count: 17, Neg. LLF: 81.02336958175827
Iteration: 3, Func. Count: 25, Neg. LLF: 80.60632437390261
Iteration: 4, Func. Count: 33, Neg. LLF: 80.28881561238741
Iteration: 5, Func. Count: 40, Neg. LLF: 80.2081736568833
Iteration: 6, Func. Count: 47, Neg. LLF: 80.20289581370017
Iteration: 7, Func. Count: 55, Neg. LLF: 80.15588621853334
Iteration: 8, Func. Count: 62, Neg. LLF: 80.15476221481433
Iteration: 9, Func. Count: 69, Neg. LLF: 80.1543732904315
Iteration: 10, Func. Count: 76, Neg. LLF: 80.15365940199466
Iteration: 11, Func. Count: 83, Neg. LLF: 80.15187615128482
Iteration: 12, Func. Count: 90, Neg. LLF: 80.14813949782528
Iteration: 13, Func. Count: 97, Neg. LLF: 80.14702047188094
Iteration: 14, Func. Count: 104, Neg. LLF: 80.14701128209197
Iteration: 15, Func. Count: 111, Neg. LLF: 80.14700248583443
Iteration: 16, Func. Count: 117, Neg. LLF: 80.14700248812593
Optimization terminated successfully (Exit mode 0)
Current function value: 80.14700248583443
Iterations: 16
Function evaluations: 117
Gradient evaluations: 16
Iteration: 1, Func. Count: 9, Neg. LLF: 23758332.58749444
Iteration: 2, Func. Count: 19, Neg. LLF: 80.7742638333667
Iteration: 3, Func. Count: 28, Neg. LLF: 80.413836558029
Iteration: 4, Func. Count: 37, Neg. LLF: 80.20916867302452
Iteration: 5, Func. Count: 45, Neg. LLF: 80.11895732368441
Iteration: 6, Func. Count: 53, Neg. LLF: 91.24191258304181
Iteration: 7, Func. Count: 62, Neg. LLF: 79.88276335981652
Iteration: 8, Func. Count: 70, Neg. LLF: 79.86503864557258
Iteration: 9, Func. Count: 78, Neg. LLF: 79.85234955168369
Iteration: 10, Func. Count: 86, Neg. LLF: 79.83892699584618
Iteration: 11, Func. Count: 94, Neg. LLF: 79.83109202979604
Iteration: 12, Func. Count: 102, Neg. LLF: 79.82893897753236
Iteration: 13, Func. Count: 110, Neg. LLF: 79.82761721207316
Iteration: 14, Func. Count: 118, Neg. LLF: 79.82641694666768
Iteration: 15, Func. Count: 126, Neg. LLF: 79.82580577084883
Iteration: 16, Func. Count: 134, Neg. LLF: 79.82567201578175
Iteration: 17, Func. Count: 142, Neg. LLF: 79.82565609679482
Iteration: 18, Func. Count: 149, Neg. LLF: 79.8256560966175
Optimization terminated successfully (Exit mode 0)
Current function value: 79.82565609679482
Iterations: 18
Function evaluations: 149
Gradient evaluations: 18
Iteration: 1, Func. Count: 10, Neg. LLF: 23717165.209556777
Iteration: 2, Func. Count: 21, Neg. LLF: 81.16538245402793
Iteration: 3, Func. Count: 31, Neg. LLF: 80.90018495901725
Iteration: 4, Func. Count: 41, Neg. LLF: 80.21421066140739
Iteration: 5, Func. Count: 50, Neg. LLF: 80.34781975481313
Iteration: 6, Func. Count: 60, Neg. LLF: 80.16598185407062
Iteration: 7, Func. Count: 69, Neg. LLF: 80.16875751178118
Iteration: 8, Func. Count: 79, Neg. LLF: 80.15849006315072
Iteration: 9, Func. Count: 88, Neg. LLF: 80.15638260039738
Iteration: 10, Func. Count: 97, Neg. LLF: 80.15550762047195
Iteration: 11, Func. Count: 106, Neg. LLF: 80.15400581952456
Iteration: 12, Func. Count: 115, Neg. LLF: 80.15166806401015
Iteration: 13, Func. Count: 124, Neg. LLF: 80.14703073599861
Iteration: 14, Func. Count: 133, Neg. LLF: 80.14703421647292
Iteration: 15, Func. Count: 143, Neg. LLF: 80.14700372927506
Iteration: 16, Func. Count: 152, Neg. LLF: 80.14700198835682
Iteration: 17, Func. Count: 160, Neg. LLF: 80.14700198978842
Optimization terminated successfully (Exit mode 0)
Current function value: 80.14700198835682
Iterations: 17
Function evaluations: 160
Gradient evaluations: 17
Iteration: 1, Func. Count: 7, Neg. LLF: 128.15215479046938
Iteration: 2, Func. Count: 17, Neg. LLF: 113.68082115765957
Iteration: 3, Func. Count: 25, Neg. LLF: 80.84768249928943
Iteration: 4, Func. Count: 31, Neg. LLF: 80.83612700994692
Iteration: 5, Func. Count: 37, Neg. LLF: 80.8338928370997
Iteration: 6, Func. Count: 43, Neg. LLF: 80.83380930948765
Iteration: 7, Func. Count: 49, Neg. LLF: 80.83380839753067
Optimization terminated successfully (Exit mode 0)
Current function value: 80.83380839753067
Iterations: 7
Function evaluations: 49
Gradient evaluations: 7
Iteration: 1, Func. Count: 8, Neg. LLF: 24680316.824292872
Iteration: 2, Func. Count: 17, Neg. LLF: 81.33383827442867
Iteration: 3, Func. Count: 25, Neg. LLF: 80.86460418988803
Iteration: 4, Func. Count: 33, Neg. LLF: 80.32887673495011
Iteration: 5, Func. Count: 40, Neg. LLF: 80.38179331907418
Iteration: 6, Func. Count: 48, Neg. LLF: 80.15944693139753
Iteration: 7, Func. Count: 56, Neg. LLF: 80.14700239957384
Iteration: 8, Func. Count: 62, Neg. LLF: 80.1470024015882
Optimization terminated successfully (Exit mode 0)
Current function value: 80.14700239957384
Iterations: 8
Function evaluations: 62
Gradient evaluations: 8
Iteration: 1, Func. Count: 9, Neg. LLF: 24868757.97271564
Iteration: 2, Func. Count: 19, Neg. LLF: 80.8965306385961
Iteration: 3, Func. Count: 28, Neg. LLF: 80.67009312269371
Iteration: 4, Func. Count: 37, Neg. LLF: 80.39304525014337
Iteration: 5, Func. Count: 46, Neg. LLF: 80.16636079207242
Iteration: 6, Func. Count: 54, Neg. LLF: 80.16182166073159
Iteration: 7, Func. Count: 62, Neg. LLF: 80.1595876888325
Iteration: 8, Func. Count: 70, Neg. LLF: 80.15752044003072
Iteration: 9, Func. Count: 78, Neg. LLF: 80.15596852048292
Iteration: 10, Func. Count: 86, Neg. LLF: 80.15346807656148
Iteration: 11, Func. Count: 94, Neg. LLF: 80.15087182550253
Iteration: 12, Func. Count: 102, Neg. LLF: 80.14701370072466
Iteration: 13, Func. Count: 110, Neg. LLF: 80.14700938973763
Iteration: 14, Func. Count: 118, Neg. LLF: 80.1470019786067
Iteration: 15, Func. Count: 125, Neg. LLF: 80.14700197915258
Optimization terminated successfully (Exit mode 0)
Current function value: 80.1470019786067
Iterations: 15
Function evaluations: 125
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 24933761.576547354
Iteration: 2, Func. Count: 21, Neg. LLF: 80.59121787904498
Iteration: 3, Func. Count: 31, Neg. LLF: 81.05871000888125
Iteration: 4, Func. Count: 41, Neg. LLF: 80.25847396048938
Iteration: 5, Func. Count: 50, Neg. LLF: 80.07254718650422
Iteration: 6, Func. Count: 59, Neg. LLF: 79.9708025821418
Iteration: 7, Func. Count: 68, Neg. LLF: 82.96616325226006
Iteration: 8, Func. Count: 79, Neg. LLF: 79.84299538850607
Iteration: 9, Func. Count: 88, Neg. LLF: 79.83251101245995
Iteration: 10, Func. Count: 97, Neg. LLF: 79.82779546683325
Iteration: 11, Func. Count: 106, Neg. LLF: 79.82639033273655
Iteration: 12, Func. Count: 115, Neg. LLF: 79.82611651275363
Iteration: 13, Func. Count: 124, Neg. LLF: 79.82600438422125
Iteration: 14, Func. Count: 133, Neg. LLF: 79.82579716223073
Iteration: 15, Func. Count: 142, Neg. LLF: 79.8256883368759
Iteration: 16, Func. Count: 151, Neg. LLF: 79.82565877506917
Iteration: 17, Func. Count: 160, Neg. LLF: 79.82565593434661
Iteration: 18, Func. Count: 168, Neg. LLF: 79.82565593443594
Optimization terminated successfully (Exit mode 0)
Current function value: 79.82565593434661
Iterations: 18
Function evaluations: 168
Gradient evaluations: 18
Iteration: 1, Func. Count: 11, Neg. LLF: 24953607.259159025
Iteration: 2, Func. Count: 23, Neg. LLF: 80.43835722593539
Iteration: 3, Func. Count: 34, Neg. LLF: 80.73746067930956
Iteration: 4, Func. Count: 45, Neg. LLF: 80.34182392407286
Iteration: 5, Func. Count: 56, Neg. LLF: 80.18004711445327
Iteration: 6, Func. Count: 66, Neg. LLF: 80.17686048621994
Iteration: 7, Func. Count: 76, Neg. LLF: 80.16788505293873
Iteration: 8, Func. Count: 86, Neg. LLF: 80.16347117281185
Iteration: 9, Func. Count: 96, Neg. LLF: 80.15595908925332
Iteration: 10, Func. Count: 106, Neg. LLF: 80.15523074602204
Iteration: 11, Func. Count: 116, Neg. LLF: 80.15504021697825
Iteration: 12, Func. Count: 126, Neg. LLF: 80.15486735942152
Iteration: 13, Func. Count: 136, Neg. LLF: 80.15365124485166
Iteration: 14, Func. Count: 146, Neg. LLF: 80.15297646065375
Iteration: 15, Func. Count: 156, Neg. LLF: 80.15189943619514
Iteration: 16, Func. Count: 166, Neg. LLF: 80.15180738129226
Iteration: 17, Func. Count: 176, Neg. LLF: 80.15134264275615
Iteration: 18, Func. Count: 186, Neg. LLF: 80.14921782661717
Iteration: 19, Func. Count: 196, Neg. LLF: 80.14700196806106
Iteration: 20, Func. Count: 206, Neg. LLF: 81.3553641375074
Optimization terminated successfully (Exit mode 0)
Current function value: 80.14700196524154
Iterations: 21
Function evaluations: 210
Gradient evaluations: 20
Iteration: 1, Func. Count: 8, Neg. LLF: 128.11795253201961
Iteration: 2, Func. Count: 19, Neg. LLF: 98.14840383339426
Iteration: 3, Func. Count: 27, Neg. LLF: 86.861842881553
Iteration: 4, Func. Count: 35, Neg. LLF: 80.18632247831623
Iteration: 5, Func. Count: 42, Neg. LLF: 80.174073072247
Iteration: 6, Func. Count: 49, Neg. LLF: 80.13287293898182
Iteration: 7, Func. Count: 56, Neg. LLF: 80.12416567794044
Iteration: 8, Func. Count: 63, Neg. LLF: 80.12239763220069
Iteration: 9, Func. Count: 70, Neg. LLF: 80.12238648105372
Iteration: 10, Func. Count: 77, Neg. LLF: 80.12238367108773
Iteration: 11, Func. Count: 83, Neg. LLF: 80.12238367108564
Optimization terminated successfully (Exit mode 0)
Current function value: 80.12238367108773
Iterations: 11
Function evaluations: 83
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 24705949.375763558
Iteration: 2, Func. Count: 19, Neg. LLF: 81.33182658347528
Iteration: 3, Func. Count: 28, Neg. LLF: 80.85946811807878
Iteration: 4, Func. Count: 37, Neg. LLF: 80.4069744390706
Iteration: 5, Func. Count: 45, Neg. LLF: 80.41814985154664
Iteration: 6, Func. Count: 54, Neg. LLF: 80.15209989553307
Iteration: 7, Func. Count: 63, Neg. LLF: 80.14700262411098
Iteration: 8, Func. Count: 71, Neg. LLF: 80.14700196334358
Optimization terminated successfully (Exit mode 0)
Current function value: 80.14700196334358
Iterations: 8
Function evaluations: 71
Gradient evaluations: 8
Iteration: 1, Func. Count: 10, Neg. LLF: 25004951.13788179
Iteration: 2, Func. Count: 21, Neg. LLF: 81.90982055822779
Iteration: 3, Func. Count: 31, Neg. LLF: 80.68112329435121
Iteration: 4, Func. Count: 41, Neg. LLF: 80.36492693494877
Iteration: 5, Func. Count: 50, Neg. LLF: 80.44607056438844
Iteration: 6, Func. Count: 60, Neg. LLF: 80.93046664405625
Iteration: 7, Func. Count: 70, Neg. LLF: 80.16232752341035
Iteration: 8, Func. Count: 79, Neg. LLF: 80.15757617039836
Iteration: 9, Func. Count: 88, Neg. LLF: 80.1563908178011
Iteration: 10, Func. Count: 97, Neg. LLF: 80.1556605662191
Iteration: 11, Func. Count: 106, Neg. LLF: 80.15276251460485
Iteration: 12, Func. Count: 115, Neg. LLF: 80.15021140931944
Iteration: 13, Func. Count: 124, Neg. LLF: 80.14706489955493
Iteration: 14, Func. Count: 133, Neg. LLF: 80.14700248102234
Iteration: 15, Func. Count: 142, Neg. LLF: 80.14700196643221
Optimization terminated successfully (Exit mode 0)
Current function value: 80.14700196643221
Iterations: 15
Function evaluations: 142
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 25146368.36491726
Iteration: 2, Func. Count: 23, Neg. LLF: 128.94541258753034
Iteration: 3, Func. Count: 35, Neg. LLF: 115.04363891001199
Iteration: 4, Func. Count: 47, Neg. LLF: 80.34890825108748
Iteration: 5, Func. Count: 58, Neg. LLF: 79.90089262923013
Iteration: 6, Func. Count: 68, Neg. LLF: 80.62283936466528
Iteration: 7, Func. Count: 80, Neg. LLF: 79.78695510949338
Iteration: 8, Func. Count: 90, Neg. LLF: 79.97050550734038
Iteration: 9, Func. Count: 101, Neg. LLF: 79.69367652892628
Iteration: 10, Func. Count: 111, Neg. LLF: 79.64488261955952
Iteration: 11, Func. Count: 121, Neg. LLF: 79.63585589708468
Iteration: 12, Func. Count: 131, Neg. LLF: 79.62872743012454
Iteration: 13, Func. Count: 141, Neg. LLF: 79.57157190806795
Iteration: 14, Func. Count: 151, Neg. LLF: 79.5680745336567
Iteration: 15, Func. Count: 161, Neg. LLF: 79.56759203113965
Iteration: 16, Func. Count: 171, Neg. LLF: 79.56718448745173
Iteration: 17, Func. Count: 181, Neg. LLF: 79.56585002037734
Iteration: 18, Func. Count: 191, Neg. LLF: 79.5650474572529
Iteration: 19, Func. Count: 201, Neg. LLF: 79.56466351445751
Iteration: 20, Func. Count: 211, Neg. LLF: 79.56462447312059
Iteration: 21, Func. Count: 221, Neg. LLF: 79.56461816377211
Iteration: 22, Func. Count: 231, Neg. LLF: 79.56461311062357
Iteration: 23, Func. Count: 241, Neg. LLF: 79.56461175920447
Iteration: 24, Func. Count: 250, Neg. LLF: 79.56461175916506
Optimization terminated successfully (Exit mode 0)
Current function value: 79.56461175920447
Iterations: 24
Function evaluations: 250
Gradient evaluations: 24
Iteration: 1, Func. Count: 12, Neg. LLF: 25278666.146908503
Iteration: 2, Func. Count: 25, Neg. LLF: 97.65563673994647
Iteration: 3, Func. Count: 38, Neg. LLF: 113.66682212891389
Iteration: 4, Func. Count: 51, Neg. LLF: 80.56663360488952
Iteration: 5, Func. Count: 63, Neg. LLF: 80.6257273610898
Iteration: 6, Func. Count: 75, Neg. LLF: 80.34507925859656
Iteration: 7, Func. Count: 87, Neg. LLF: 79.96921900301558
Iteration: 8, Func. Count: 98, Neg. LLF: 79.92073594836347
Iteration: 9, Func. Count: 109, Neg. LLF: 79.90088223832443
Iteration: 10, Func. Count: 120, Neg. LLF: 79.87158057431618
Iteration: 11, Func. Count: 131, Neg. LLF: 79.8631800505199
Iteration: 12, Func. Count: 142, Neg. LLF: 79.85173776416138
Iteration: 13, Func. Count: 153, Neg. LLF: 79.82944818633511
Iteration: 14, Func. Count: 164, Neg. LLF: 79.61774692715453
Iteration: 15, Func. Count: 175, Neg. LLF: 79.57798510494655
Iteration: 16, Func. Count: 186, Neg. LLF: 79.5712900907753
Iteration: 17, Func. Count: 197, Neg. LLF: 79.56612982017825
Iteration: 18, Func. Count: 208, Neg. LLF: 79.56595547067641
Iteration: 19, Func. Count: 219, Neg. LLF: 79.56530960334113
Iteration: 20, Func. Count: 230, Neg. LLF: 79.56509065485244
Iteration: 21, Func. Count: 241, Neg. LLF: 79.56500572026798
Iteration: 22, Func. Count: 252, Neg. LLF: 79.56475167667368
Iteration: 23, Func. Count: 263, Neg. LLF: 79.56465046773145
Iteration: 24, Func. Count: 274, Neg. LLF: 79.56461484935718
Iteration: 25, Func. Count: 285, Neg. LLF: 79.56461176562907
Iteration: 26, Func. Count: 295, Neg. LLF: 79.56461180258549
Optimization terminated successfully (Exit mode 0)
Current function value: 79.56461176562907
Iterations: 26
Function evaluations: 295
Gradient evaluations: 26
Iteration: 1, Func. Count: 9, Neg. LLF: 126.44551733945354
Iteration: 2, Func. Count: 21, Neg. LLF: 97.99600725108759
Iteration: 3, Func. Count: 30, Neg. LLF: 187.3758421874513
Iteration: 4, Func. Count: 39, Neg. LLF: 80.1856611944147
Iteration: 5, Func. Count: 47, Neg. LLF: 80.14642576715542
Iteration: 6, Func. Count: 55, Neg. LLF: 80.12649165913328
Iteration: 7, Func. Count: 63, Neg. LLF: 80.12296185196982
Iteration: 8, Func. Count: 71, Neg. LLF: 80.12240065491912
Iteration: 9, Func. Count: 79, Neg. LLF: 80.1223839511397
Iteration: 10, Func. Count: 86, Neg. LLF: 80.12238401685589
Optimization terminated successfully (Exit mode 0)
Current function value: 80.1223839511397
Iterations: 10
Function evaluations: 86
Gradient evaluations: 10
Iteration: 1, Func. Count: 10, Neg. LLF: 24466362.657235898
Iteration: 2, Func. Count: 21, Neg. LLF: 81.33364139589823
Iteration: 3, Func. Count: 31, Neg. LLF: 80.83553049094931
Iteration: 4, Func. Count: 41, Neg. LLF: 80.46789380808897
Iteration: 5, Func. Count: 51, Neg. LLF: 80.29618726798834
Iteration: 6, Func. Count: 60, Neg. LLF: 80.46883226372833
Iteration: 7, Func. Count: 70, Neg. LLF: 80.18022720362094
Iteration: 8, Func. Count: 79, Neg. LLF: 80.15617338215199
Iteration: 9, Func. Count: 88, Neg. LLF: 80.14719673686328
Iteration: 10, Func. Count: 97, Neg. LLF: 80.14701183144786
Iteration: 11, Func. Count: 106, Neg. LLF: 80.14700197801321
Iteration: 12, Func. Count: 114, Neg. LLF: 80.14700197762957
Optimization terminated successfully (Exit mode 0)
Current function value: 80.14700197801321
Iterations: 12
Function evaluations: 114
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 24864862.041475963
Iteration: 2, Func. Count: 23, Neg. LLF: 82.73123671632507
Iteration: 3, Func. Count: 34, Neg. LLF: 81.46383048062154
Iteration: 4, Func. Count: 45, Neg. LLF: 80.55686076750797
Iteration: 5, Func. Count: 56, Neg. LLF: 80.3110762871339
Iteration: 6, Func. Count: 66, Neg. LLF: 80.17850309734027
Iteration: 7, Func. Count: 76, Neg. LLF: 80.15696801327327
Iteration: 8, Func. Count: 86, Neg. LLF: 80.15541324371628
Iteration: 9, Func. Count: 96, Neg. LLF: 80.15505869247423
Iteration: 10, Func. Count: 106, Neg. LLF: 80.15299134579519
Iteration: 11, Func. Count: 116, Neg. LLF: 80.15042684298913
Iteration: 12, Func. Count: 126, Neg. LLF: 80.14700220656638
Iteration: 13, Func. Count: 135, Neg. LLF: 80.1470022059687
Optimization terminated successfully (Exit mode 0)
Current function value: 80.14700220656638
Iterations: 13
Function evaluations: 135
Gradient evaluations: 13
Iteration: 1, Func. Count: 12, Neg. LLF: 25108411.513770733
Iteration: 2, Func. Count: 25, Neg. LLF: 130.50844165028627
Iteration: 3, Func. Count: 38, Neg. LLF: 117.85706511558931
Iteration: 4, Func. Count: 51, Neg. LLF: 80.15746151161515
Iteration: 5, Func. Count: 62, Neg. LLF: 80.03917348816836
Iteration: 6, Func. Count: 73, Neg. LLF: 81.2851955267898
Iteration: 7, Func. Count: 87, Neg. LLF: 80.02520990219159
Iteration: 8, Func. Count: 99, Neg. LLF: 79.95987135759152
Iteration: 9, Func. Count: 111, Neg. LLF: 79.73151783051324
Iteration: 10, Func. Count: 122, Neg. LLF: 79.65748487014748
Iteration: 11, Func. Count: 133, Neg. LLF: 79.63088731277338
Iteration: 12, Func. Count: 144, Neg. LLF: 79.61875033675994
Iteration: 13, Func. Count: 155, Neg. LLF: 79.59801167493453
Iteration: 14, Func. Count: 166, Neg. LLF: 79.57233532941288
Iteration: 15, Func. Count: 177, Neg. LLF: 79.57150241652921
Iteration: 16, Func. Count: 188, Neg. LLF: 79.56887739315722
Iteration: 17, Func. Count: 199, Neg. LLF: 79.56806741985481
Iteration: 18, Func. Count: 210, Neg. LLF: 79.56765738495078
Iteration: 19, Func. Count: 221, Neg. LLF: 79.56682012994146
Iteration: 20, Func. Count: 232, Neg. LLF: 79.56602347494797
Iteration: 21, Func. Count: 243, Neg. LLF: 79.56520795736787
Iteration: 22, Func. Count: 254, Neg. LLF: 79.56475068254262
Iteration: 23, Func. Count: 265, Neg. LLF: 79.56462280203289
Iteration: 24, Func. Count: 276, Neg. LLF: 79.56461236123971
Iteration: 25, Func. Count: 287, Neg. LLF: 79.56461160186237
Optimization terminated successfully (Exit mode 0)
Current function value: 79.56461160186237
Iterations: 25
Function evaluations: 287
Gradient evaluations: 25
Iteration: 1, Func. Count: 13, Neg. LLF: 25287183.966613527
Iteration: 2, Func. Count: 27, Neg. LLF: 101.15945739629207
Iteration: 3, Func. Count: 41, Neg. LLF: 116.6391595361673
Iteration: 4, Func. Count: 55, Neg. LLF: 80.41253097029177
Iteration: 5, Func. Count: 68, Neg. LLF: 80.3221721369118
Iteration: 6, Func. Count: 81, Neg. LLF: 80.29314310732964
Iteration: 7, Func. Count: 94, Neg. LLF: 79.91103047246607
Iteration: 8, Func. Count: 106, Neg. LLF: 79.89910610232293
Iteration: 9, Func. Count: 118, Neg. LLF: 79.86868455678412
Iteration: 10, Func. Count: 130, Neg. LLF: 79.82461181102977
Iteration: 11, Func. Count: 142, Neg. LLF: 79.78559061491269
Iteration: 12, Func. Count: 154, Neg. LLF: 79.59289289014635
Iteration: 13, Func. Count: 166, Neg. LLF: 79.57126804233289
Iteration: 14, Func. Count: 178, Neg. LLF: 79.5675682589997
Iteration: 15, Func. Count: 190, Neg. LLF: 79.56656472920545
Iteration: 16, Func. Count: 202, Neg. LLF: 79.5653693433597
Iteration: 17, Func. Count: 214, Neg. LLF: 79.56507218644944
Iteration: 18, Func. Count: 226, Neg. LLF: 79.56496373789486
Iteration: 19, Func. Count: 238, Neg. LLF: 79.56492849412041
Iteration: 20, Func. Count: 250, Neg. LLF: 79.56484503199208
Iteration: 21, Func. Count: 262, Neg. LLF: 79.56473735811602
Iteration: 22, Func. Count: 274, Neg. LLF: 79.56464359625497
Iteration: 23, Func. Count: 286, Neg. LLF: 79.56461474583362
Iteration: 24, Func. Count: 298, Neg. LLF: 79.56461169363021
Iteration: 25, Func. Count: 309, Neg. LLF: 79.56461173066894
Optimization terminated successfully (Exit mode 0)
Current function value: 79.56461169363021
Iterations: 25
Function evaluations: 309
Gradient evaluations: 25
Iteration: 1, Func. Count: 10, Neg. LLF: 120.19488160018349
Iteration: 2, Func. Count: 23, Neg. LLF: 85.17389894578758
Iteration: 3, Func. Count: 33, Neg. LLF: 117.74791161702746
Iteration: 4, Func. Count: 43, Neg. LLF: 80.17133307990292
Iteration: 5, Func. Count: 52, Neg. LLF: 80.16038360378536
Iteration: 6, Func. Count: 61, Neg. LLF: 80.13030834503297
Iteration: 7, Func. Count: 70, Neg. LLF: 80.12413031473258
Iteration: 8, Func. Count: 79, Neg. LLF: 80.12238903258586
Iteration: 9, Func. Count: 88, Neg. LLF: 80.12238373375354
Iteration: 10, Func. Count: 96, Neg. LLF: 80.12238380004332
Optimization terminated successfully (Exit mode 0)
Current function value: 80.12238373375354
Iterations: 10
Function evaluations: 96
Gradient evaluations: 10
Iteration: 1, Func. Count: 11, Neg. LLF: 24261737.46036633
Iteration: 2, Func. Count: 23, Neg. LLF: 81.35127984978224
Iteration: 3, Func. Count: 34, Neg. LLF: 80.71806973491788
Iteration: 4, Func. Count: 45, Neg. LLF: 80.32300399175504
Iteration: 5, Func. Count: 55, Neg. LLF: 80.5063714632977
Iteration: 6, Func. Count: 66, Neg. LLF: 80.15315221954619
Iteration: 7, Func. Count: 76, Neg. LLF: 80.14700922376745
Iteration: 8, Func. Count: 86, Neg. LLF: 80.14700196793636
Iteration: 9, Func. Count: 95, Neg. LLF: 80.14700196806821
Optimization terminated successfully (Exit mode 0)
Current function value: 80.14700196793636
Iterations: 9
Function evaluations: 95
Gradient evaluations: 9
Iteration: 1, Func. Count: 12, Neg. LLF: 24663270.123002093
Iteration: 2, Func. Count: 25, Neg. LLF: 82.6592773760123
Iteration: 3, Func. Count: 37, Neg. LLF: 81.34481490414912
Iteration: 4, Func. Count: 49, Neg. LLF: 80.61078429897667
Iteration: 5, Func. Count: 61, Neg. LLF: 80.23189808211988
Iteration: 6, Func. Count: 72, Neg. LLF: 80.16519308227832
Iteration: 7, Func. Count: 83, Neg. LLF: 80.16061131553384
Iteration: 8, Func. Count: 94, Neg. LLF: 80.15814754585932
Iteration: 9, Func. Count: 105, Neg. LLF: 80.156944477871
Iteration: 10, Func. Count: 116, Neg. LLF: 80.154398755517
Iteration: 11, Func. Count: 127, Neg. LLF: 80.15194770034442
Iteration: 12, Func. Count: 138, Neg. LLF: 80.14846500172582
Iteration: 13, Func. Count: 149, Neg. LLF: 80.14700591578438
Iteration: 14, Func. Count: 160, Neg. LLF: 80.14700286353349
Iteration: 15, Func. Count: 171, Neg. LLF: 80.1470029237088
Optimization terminated successfully (Exit mode 0)
Current function value: 80.14700213430775
Iterations: 15
Function evaluations: 172
Gradient evaluations: 15
Iteration: 1, Func. Count: 13, Neg. LLF: 24893200.642735798
Iteration: 2, Func. Count: 27, Neg. LLF: 130.61386316534376
Iteration: 3, Func. Count: 41, Neg. LLF: 120.7080649970004
Iteration: 4, Func. Count: 55, Neg. LLF: 80.19774935283763
Iteration: 5, Func. Count: 67, Neg. LLF: 79.87193453740012
Iteration: 6, Func. Count: 79, Neg. LLF: 79.98034132271269
Iteration: 7, Func. Count: 92, Neg. LLF: 79.72876607426406
Iteration: 8, Func. Count: 104, Neg. LLF: 79.67997274353124
Iteration: 9, Func. Count: 116, Neg. LLF: 79.64211668203467
Iteration: 10, Func. Count: 128, Neg. LLF: 79.63166060624319
Iteration: 11, Func. Count: 140, Neg. LLF: 79.58818203909806
Iteration: 12, Func. Count: 152, Neg. LLF: 79.56846141252517
Iteration: 13, Func. Count: 164, Neg. LLF: 79.56797539969659
Iteration: 14, Func. Count: 176, Neg. LLF: 79.56762352755607
Iteration: 15, Func. Count: 188, Neg. LLF: 79.56721308623098
Iteration: 16, Func. Count: 200, Neg. LLF: 79.56675512656547
Iteration: 17, Func. Count: 212, Neg. LLF: 79.56617947157213
Iteration: 18, Func. Count: 224, Neg. LLF: 79.56555995118957
Iteration: 19, Func. Count: 236, Neg. LLF: 79.56507617336219
Iteration: 20, Func. Count: 248, Neg. LLF: 79.56487399002968
Iteration: 21, Func. Count: 260, Neg. LLF: 79.56479301501837
Iteration: 22, Func. Count: 272, Neg. LLF: 79.5647198252933
Iteration: 23, Func. Count: 284, Neg. LLF: 79.5646506221067
Iteration: 24, Func. Count: 296, Neg. LLF: 79.56461763481262
Iteration: 25, Func. Count: 308, Neg. LLF: 79.56461189405604
Iteration: 26, Func. Count: 319, Neg. LLF: 79.56461189405711
Optimization terminated successfully (Exit mode 0)
Current function value: 79.56461189405604
Iterations: 26
Function evaluations: 319
Gradient evaluations: 26
Iteration: 1, Func. Count: 14, Neg. LLF: 25049577.42257717
Iteration: 2, Func. Count: 29, Neg. LLF: 101.27448366904927
Iteration: 3, Func. Count: 44, Neg. LLF: 117.40831167450601
Iteration: 4, Func. Count: 59, Neg. LLF: 80.56668841346522
Iteration: 5, Func. Count: 73, Neg. LLF: 80.59457280296088
Iteration: 6, Func. Count: 87, Neg. LLF: 80.34795424145096
Iteration: 7, Func. Count: 101, Neg. LLF: 79.96515553320197
Iteration: 8, Func. Count: 114, Neg. LLF: 79.920458618973
Iteration: 9, Func. Count: 127, Neg. LLF: 79.90041637725506
Iteration: 10, Func. Count: 140, Neg. LLF: 79.86983162241162
Iteration: 11, Func. Count: 153, Neg. LLF: 79.86054087627662
Iteration: 12, Func. Count: 166, Neg. LLF: 79.84819968475753
Iteration: 13, Func. Count: 179, Neg. LLF: 79.819717265877
Iteration: 14, Func. Count: 192, Neg. LLF: 79.61879821725843
Iteration: 15, Func. Count: 205, Neg. LLF: 79.58300365053762
Iteration: 16, Func. Count: 218, Neg. LLF: 79.57711182441402
Iteration: 17, Func. Count: 231, Neg. LLF: 79.5676171805339
Iteration: 18, Func. Count: 244, Neg. LLF: 79.56715687067305
Iteration: 19, Func. Count: 257, Neg. LLF: 79.56565291680086
Iteration: 20, Func. Count: 270, Neg. LLF: 79.56545157833322
Iteration: 21, Func. Count: 283, Neg. LLF: 79.56532749794252
Iteration: 22, Func. Count: 296, Neg. LLF: 79.56501596384702
Iteration: 23, Func. Count: 309, Neg. LLF: 79.56476684093298
Iteration: 24, Func. Count: 322, Neg. LLF: 79.56463324009974
Iteration: 25, Func. Count: 335, Neg. LLF: 79.56461293698857
Iteration: 26, Func. Count: 348, Neg. LLF: 79.56461161420268
Iteration: 27, Func. Count: 360, Neg. LLF: 79.56461165117696
Optimization terminated successfully (Exit mode 0)
Current function value: 79.56461161420268
Iterations: 27
Function evaluations: 360
Gradient evaluations: 27
Iteration: 1, Func. Count: 7, Neg. LLF: 119.28331067920688
Iteration: 2, Func. Count: 17, Neg. LLF: 80.87207195631999
Iteration: 3, Func. Count: 23, Neg. LLF: 81.22691719820068
Iteration: 4, Func. Count: 30, Neg. LLF: 80.83549247079637
Iteration: 5, Func. Count: 36, Neg. LLF: 80.83381432221327
Iteration: 6, Func. Count: 42, Neg. LLF: 80.83380838856985
Iteration: 7, Func. Count: 47, Neg. LLF: 80.83380843288279
Optimization terminated successfully (Exit mode 0)
Current function value: 80.83380838856985
Iterations: 7
Function evaluations: 47
Gradient evaluations: 7
Iteration: 1, Func. Count: 8, Neg. LLF: 23743343.762106087
Iteration: 2, Func. Count: 17, Neg. LLF: 81.56197889567788
Iteration: 3, Func. Count: 25, Neg. LLF: 80.85475036984852
Iteration: 4, Func. Count: 33, Neg. LLF: 80.74392063539526
Iteration: 5, Func. Count: 41, Neg. LLF: 80.4302641219334
Iteration: 6, Func. Count: 49, Neg. LLF: 127.4833812833978
Iteration: 7, Func. Count: 58, Neg. LLF: 80.14795424315624
Iteration: 8, Func. Count: 65, Neg. LLF: 80.1498050924796
Iteration: 9, Func. Count: 73, Neg. LLF: 80.14700196491646
Optimization terminated successfully (Exit mode 0)
Current function value: 80.14700196491646
Iterations: 9
Function evaluations: 73
Gradient evaluations: 9
Iteration: 1, Func. Count: 9, Neg. LLF: 23693279.49910369
Iteration: 2, Func. Count: 19, Neg. LLF: 80.95537298795861
Iteration: 3, Func. Count: 28, Neg. LLF: 80.57687213134078
Iteration: 4, Func. Count: 37, Neg. LLF: 80.25512795334437
Iteration: 5, Func. Count: 45, Neg. LLF: 80.20081460851355
Iteration: 6, Func. Count: 53, Neg. LLF: 80.19019518049532
Iteration: 7, Func. Count: 62, Neg. LLF: 80.15450373233871
Iteration: 8, Func. Count: 70, Neg. LLF: 80.15384281371686
Iteration: 9, Func. Count: 78, Neg. LLF: 80.15354866821227
Iteration: 10, Func. Count: 86, Neg. LLF: 80.15301528311005
Iteration: 11, Func. Count: 94, Neg. LLF: 80.15145835420897
Iteration: 12, Func. Count: 102, Neg. LLF: 80.14728912864804
Iteration: 13, Func. Count: 110, Neg. LLF: 80.14704636712538
Iteration: 14, Func. Count: 118, Neg. LLF: 80.14700247693744
Iteration: 15, Func. Count: 126, Neg. LLF: 80.1470023244759
Optimization terminated successfully (Exit mode 0)
Current function value: 80.14700197338641
Iterations: 15
Function evaluations: 127
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 23712742.800379544
Iteration: 2, Func. Count: 21, Neg. LLF: 80.72832834110504
Iteration: 3, Func. Count: 31, Neg. LLF: 80.45215609666957
Iteration: 4, Func. Count: 41, Neg. LLF: 80.17543121619423
Iteration: 5, Func. Count: 50, Neg. LLF: 80.15066136421198
Iteration: 6, Func. Count: 59, Neg. LLF: 80.0800831862983
Iteration: 7, Func. Count: 68, Neg. LLF: 79.95264825083079
Iteration: 8, Func. Count: 77, Neg. LLF: 81.1853286918253
Iteration: 9, Func. Count: 88, Neg. LLF: 79.880881253318
Iteration: 10, Func. Count: 97, Neg. LLF: 79.84812716603763
Iteration: 11, Func. Count: 106, Neg. LLF: 79.84068652906726
Iteration: 12, Func. Count: 115, Neg. LLF: 79.83303988023408
Iteration: 13, Func. Count: 124, Neg. LLF: 79.83119751783578
Iteration: 14, Func. Count: 133, Neg. LLF: 79.82792380316174
Iteration: 15, Func. Count: 142, Neg. LLF: 79.82651865466364
Iteration: 16, Func. Count: 151, Neg. LLF: 79.82580472298413
Iteration: 17, Func. Count: 160, Neg. LLF: 79.82568129171581
Iteration: 18, Func. Count: 169, Neg. LLF: 79.8256571369414
Iteration: 19, Func. Count: 178, Neg. LLF: 79.82565688941631
Optimization terminated successfully (Exit mode 0)
Current function value: 79.82565688941631
Iterations: 19
Function evaluations: 178
Gradient evaluations: 19
Iteration: 1, Func. Count: 11, Neg. LLF: 23693424.987950075
Iteration: 2, Func. Count: 23, Neg. LLF: 81.18732952848347
Iteration: 3, Func. Count: 34, Neg. LLF: 80.72081753679181
Iteration: 4, Func. Count: 45, Neg. LLF: 80.20107982371874
Iteration: 5, Func. Count: 55, Neg. LLF: 80.26121914179784
Iteration: 6, Func. Count: 66, Neg. LLF: 80.24629342099306
Iteration: 7, Func. Count: 77, Neg. LLF: 80.18159801821336
Iteration: 8, Func. Count: 87, Neg. LLF: 80.1594147077758
Iteration: 9, Func. Count: 97, Neg. LLF: 80.15484712753693
Iteration: 10, Func. Count: 107, Neg. LLF: 80.15439533427802
Iteration: 11, Func. Count: 117, Neg. LLF: 80.1522666325355
Iteration: 12, Func. Count: 127, Neg. LLF: 80.15207853486265
Iteration: 13, Func. Count: 137, Neg. LLF: 80.15161961552235
Iteration: 14, Func. Count: 147, Neg. LLF: 80.1515783445391
Iteration: 15, Func. Count: 157, Neg. LLF: 80.15157264437511
Iteration: 16, Func. Count: 167, Neg. LLF: 80.15154371360856
Iteration: 17, Func. Count: 177, Neg. LLF: 80.15136453249795
Iteration: 18, Func. Count: 187, Neg. LLF: 80.1514485532368
Iteration: 19, Func. Count: 199, Neg. LLF: 80.13786577681695
Iteration: 20, Func. Count: 209, Neg. LLF: 80.12285251685124
Iteration: 21, Func. Count: 219, Neg. LLF: 80.08310457792528
Iteration: 22, Func. Count: 229, Neg. LLF: 1384.0475546705431
Iteration: 23, Func. Count: 240, Neg. LLF: 90.81686898962222
Iteration: 24, Func. Count: 252, Neg. LLF: 129.02411838427295
Iteration: 25, Func. Count: 264, Neg. LLF: 84.11182294030318
Iteration: 26, Func. Count: 276, Neg. LLF: 79.87207205746975
Iteration: 27, Func. Count: 287, Neg. LLF: 79.83320034576329
Iteration: 28, Func. Count: 297, Neg. LLF: 79.83012910749744
Iteration: 29, Func. Count: 307, Neg. LLF: 79.82666982342502
Iteration: 30, Func. Count: 317, Neg. LLF: 79.82574641405276
Iteration: 31, Func. Count: 327, Neg. LLF: 79.82566344631195
Iteration: 32, Func. Count: 337, Neg. LLF: 79.82565702160846
Iteration: 33, Func. Count: 347, Neg. LLF: 79.82565603031335
Optimization terminated successfully (Exit mode 0)
Current function value: 79.82565603031335
Iterations: 34
Function evaluations: 347
Gradient evaluations: 33
Iteration: 1, Func. Count: 8, Neg. LLF: 119.06886052672711
Iteration: 2, Func. Count: 19, Neg. LLF: 81.14132604896312
Iteration: 3, Func. Count: 26, Neg. LLF: 80.85785932519231
Iteration: 4, Func. Count: 33, Neg. LLF: 80.83435614025805
Iteration: 5, Func. Count: 40, Neg. LLF: 80.83380973076977
Iteration: 6, Func. Count: 47, Neg. LLF: 80.83380838909099
Iteration: 7, Func. Count: 53, Neg. LLF: 80.83380849381257
Optimization terminated successfully (Exit mode 0)
Current function value: 80.83380838909099
Iterations: 7
Function evaluations: 53
Gradient evaluations: 7
Iteration: 1, Func. Count: 9, Neg. LLF: 24337889.80372984
Iteration: 2, Func. Count: 19, Neg. LLF: 81.3308619566909
Iteration: 3, Func. Count: 28, Neg. LLF: 80.78191751453227
Iteration: 4, Func. Count: 37, Neg. LLF: 82.04192581997232
Iteration: 5, Func. Count: 46, Neg. LLF: 80.39137583353427
Iteration: 6, Func. Count: 54, Neg. LLF: 80.1841285570849
Iteration: 7, Func. Count: 62, Neg. LLF: 80.27714175205338
Iteration: 8, Func. Count: 71, Neg. LLF: 80.15177775798952
Iteration: 9, Func. Count: 79, Neg. LLF: 80.14736812955014
Iteration: 10, Func. Count: 87, Neg. LLF: 80.14700204925798
Iteration: 11, Func. Count: 94, Neg. LLF: 80.14700204848367
Optimization terminated successfully (Exit mode 0)
Current function value: 80.14700204925798
Iterations: 11
Function evaluations: 94
Gradient evaluations: 11
Iteration: 1, Func. Count: 10, Neg. LLF: 24582064.808496587
Iteration: 2, Func. Count: 21, Neg. LLF: 80.87708610623329
Iteration: 3, Func. Count: 31, Neg. LLF: 80.61145783184197
Iteration: 4, Func. Count: 41, Neg. LLF: 80.24782563863849
Iteration: 5, Func. Count: 50, Neg. LLF: 80.20662405635413
Iteration: 6, Func. Count: 60, Neg. LLF: 80.16725779794628
Iteration: 7, Func. Count: 70, Neg. LLF: 80.1598041049798
Iteration: 8, Func. Count: 79, Neg. LLF: 80.15879009373836
Iteration: 9, Func. Count: 88, Neg. LLF: 80.15628127401163
Iteration: 10, Func. Count: 97, Neg. LLF: 80.15430739401705
Iteration: 11, Func. Count: 106, Neg. LLF: 80.15137418261064
Iteration: 12, Func. Count: 115, Neg. LLF: 80.14772023651645
Iteration: 13, Func. Count: 124, Neg. LLF: 80.14701663766652
Iteration: 14, Func. Count: 133, Neg. LLF: 80.14700257660051
Iteration: 15, Func. Count: 142, Neg. LLF: 80.14700205109762
Optimization terminated successfully (Exit mode 0)
Current function value: 80.14700205109762
Iterations: 15
Function evaluations: 142
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 24683497.102924112
Iteration: 2, Func. Count: 23, Neg. LLF: 80.61758782010733
Iteration: 3, Func. Count: 34, Neg. LLF: 80.42228296556128
Iteration: 4, Func. Count: 45, Neg. LLF: 80.19782679893525
Iteration: 5, Func. Count: 55, Neg. LLF: 80.10988989954816
Iteration: 6, Func. Count: 65, Neg. LLF: 84.17684968715493
Iteration: 7, Func. Count: 77, Neg. LLF: 79.87360985036094
Iteration: 8, Func. Count: 87, Neg. LLF: 79.83600144571632
Iteration: 9, Func. Count: 97, Neg. LLF: 79.83172805159397
Iteration: 10, Func. Count: 107, Neg. LLF: 79.82726656208172
Iteration: 11, Func. Count: 117, Neg. LLF: 79.82658077341567
Iteration: 12, Func. Count: 127, Neg. LLF: 79.82586392915968
Iteration: 13, Func. Count: 137, Neg. LLF: 79.82569170761398
Iteration: 14, Func. Count: 147, Neg. LLF: 79.82565977463193
Iteration: 15, Func. Count: 157, Neg. LLF: 79.82565632679263
Iteration: 16, Func. Count: 166, Neg. LLF: 79.82565632691976
Optimization terminated successfully (Exit mode 0)
Current function value: 79.82565632679263
Iterations: 16
Function evaluations: 166
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 24682907.20166509
Iteration: 2, Func. Count: 25, Neg. LLF: 80.4822425133784
Iteration: 3, Func. Count: 37, Neg. LLF: 81.18273396853425
Iteration: 4, Func. Count: 49, Neg. LLF: 80.26949359572421
Iteration: 5, Func. Count: 60, Neg. LLF: 80.1888631492452
Iteration: 6, Func. Count: 71, Neg. LLF: 80.17890624061889
Iteration: 7, Func. Count: 82, Neg. LLF: 80.16729703991322
Iteration: 8, Func. Count: 93, Neg. LLF: 80.15732000469004
Iteration: 9, Func. Count: 104, Neg. LLF: 80.15603077880382
Iteration: 10, Func. Count: 115, Neg. LLF: 80.15597951398584
Iteration: 11, Func. Count: 126, Neg. LLF: 80.15590079512499
Iteration: 12, Func. Count: 137, Neg. LLF: 80.15566136067348
Iteration: 13, Func. Count: 148, Neg. LLF: 80.15490868073951
Iteration: 14, Func. Count: 159, Neg. LLF: 80.15399741010056
Iteration: 15, Func. Count: 170, Neg. LLF: 80.15369402140878
Iteration: 16, Func. Count: 181, Neg. LLF: 80.15300973434415
Iteration: 17, Func. Count: 192, Neg. LLF: 80.15280814940188
Iteration: 18, Func. Count: 203, Neg. LLF: 80.15169249903713
Iteration: 19, Func. Count: 214, Neg. LLF: 80.1470239654849
Iteration: 20, Func. Count: 225, Neg. LLF: 80.14838599792957
Iteration: 21, Func. Count: 238, Neg. LLF: 2221.0183619454933
Optimization terminated successfully (Exit mode 0)
Current function value: 80.14702208648434
Iterations: 22
Function evaluations: 243
Gradient evaluations: 21
Iteration: 1, Func. Count: 9, Neg. LLF: 117.43770318029573
Iteration: 2, Func. Count: 20, Neg. LLF: 91.95114295847846
Iteration: 3, Func. Count: 29, Neg. LLF: 18433819.676447254
Iteration: 4, Func. Count: 38, Neg. LLF: 80.98446099680976
Iteration: 5, Func. Count: 46, Neg. LLF: 80.21685763338425
Iteration: 6, Func. Count: 54, Neg. LLF: 80.14562971697794
Iteration: 7, Func. Count: 62, Neg. LLF: 80.13319521170293
Iteration: 8, Func. Count: 70, Neg. LLF: 80.38380346488377
Iteration: 9, Func. Count: 79, Neg. LLF: 80.12137325207416
Iteration: 10, Func. Count: 87, Neg. LLF: 80.11667915408708
Iteration: 11, Func. Count: 95, Neg. LLF: 80.11666341978888
Iteration: 12, Func. Count: 102, Neg. LLF: 80.11666341982146
Optimization terminated successfully (Exit mode 0)
Current function value: 80.11666341978888
Iterations: 12
Function evaluations: 102
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 24357599.224422503
Iteration: 2, Func. Count: 21, Neg. LLF: 81.32932985376735
Iteration: 3, Func. Count: 31, Neg. LLF: 80.77748871670524
Iteration: 4, Func. Count: 41, Neg. LLF: 81.99025296227391
Iteration: 5, Func. Count: 51, Neg. LLF: 80.39821072118225
Iteration: 6, Func. Count: 60, Neg. LLF: 80.24216425498405
Iteration: 7, Func. Count: 69, Neg. LLF: 80.33685538932099
Iteration: 8, Func. Count: 79, Neg. LLF: 80.15703582033493
Iteration: 9, Func. Count: 88, Neg. LLF: 80.14719501149784
Iteration: 10, Func. Count: 97, Neg. LLF: 80.1470133287291
Iteration: 11, Func. Count: 106, Neg. LLF: 80.14700275740525
Iteration: 12, Func. Count: 115, Neg. LLF: 80.14700196417462
Optimization terminated successfully (Exit mode 0)
Current function value: 80.14700196417462
Iterations: 12
Function evaluations: 115
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 24698864.932893444
Iteration: 2, Func. Count: 23, Neg. LLF: 82.19597706006084
Iteration: 3, Func. Count: 34, Neg. LLF: 81.28073308019417
Iteration: 4, Func. Count: 45, Neg. LLF: 80.50652759081181
Iteration: 5, Func. Count: 56, Neg. LLF: 80.306607495986
Iteration: 6, Func. Count: 66, Neg. LLF: 80.18049383408622
Iteration: 7, Func. Count: 76, Neg. LLF: 80.15617442915303
Iteration: 8, Func. Count: 86, Neg. LLF: 80.15561851812544
Iteration: 9, Func. Count: 96, Neg. LLF: 80.15495963460387
Iteration: 10, Func. Count: 106, Neg. LLF: 80.15443359414243
Iteration: 11, Func. Count: 116, Neg. LLF: 80.15282321933938
Iteration: 12, Func. Count: 126, Neg. LLF: 80.15077681935084
Iteration: 13, Func. Count: 136, Neg. LLF: 80.14703960594328
Iteration: 14, Func. Count: 146, Neg. LLF: 80.14701116231018
Iteration: 15, Func. Count: 156, Neg. LLF: 80.14700292991385
Iteration: 16, Func. Count: 165, Neg. LLF: 80.14700293231
Optimization terminated successfully (Exit mode 0)
Current function value: 80.14700292991385
Iterations: 16
Function evaluations: 165
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 24874007.81675554
Iteration: 2, Func. Count: 25, Neg. LLF: 129.26364907741774
Iteration: 3, Func. Count: 38, Neg. LLF: 118.73094366800575
Iteration: 4, Func. Count: 51, Neg. LLF: 80.12266171806706
Iteration: 5, Func. Count: 62, Neg. LLF: 80.1740833579507
Iteration: 6, Func. Count: 74, Neg. LLF: 81.01623680191905
Iteration: 7, Func. Count: 87, Neg. LLF: 79.85441710912235
Iteration: 8, Func. Count: 98, Neg. LLF: 79.84561264072991
Iteration: 9, Func. Count: 110, Neg. LLF: 79.80984749220423
Iteration: 10, Func. Count: 121, Neg. LLF: 79.78646513290272
Iteration: 11, Func. Count: 132, Neg. LLF: 79.74606857594434
Iteration: 12, Func. Count: 143, Neg. LLF: 79.62598359911529
Iteration: 13, Func. Count: 154, Neg. LLF: 79.59801096260502
Iteration: 14, Func. Count: 165, Neg. LLF: 79.58797376086052
Iteration: 15, Func. Count: 176, Neg. LLF: 79.58662221654723
Iteration: 16, Func. Count: 187, Neg. LLF: 79.58072939728301
Iteration: 17, Func. Count: 198, Neg. LLF: 79.57446378356143
Iteration: 18, Func. Count: 209, Neg. LLF: 79.56701024810904
Iteration: 19, Func. Count: 220, Neg. LLF: 79.56515385848314
Iteration: 20, Func. Count: 231, Neg. LLF: 79.56489250920059
Iteration: 21, Func. Count: 242, Neg. LLF: 79.56478533985849
Iteration: 22, Func. Count: 253, Neg. LLF: 79.56470891254814
Iteration: 23, Func. Count: 264, Neg. LLF: 79.56463745603722
Iteration: 24, Func. Count: 275, Neg. LLF: 79.56461426931328
Iteration: 25, Func. Count: 286, Neg. LLF: 79.56461200580586
Iteration: 26, Func. Count: 296, Neg. LLF: 79.56461200578387
Optimization terminated successfully (Exit mode 0)
Current function value: 79.56461200580586
Iterations: 26
Function evaluations: 296
Gradient evaluations: 26
Iteration: 1, Func. Count: 13, Neg. LLF: 24972657.265519235
Iteration: 2, Func. Count: 27, Neg. LLF: 99.24167757712497
Iteration: 3, Func. Count: 41, Neg. LLF: 114.17088634659555
Iteration: 4, Func. Count: 55, Neg. LLF: 80.29223658487903
Iteration: 5, Func. Count: 67, Neg. LLF: 79.86550817329534
Iteration: 6, Func. Count: 79, Neg. LLF: 80.57590956869863
Iteration: 7, Func. Count: 92, Neg. LLF: 79.71344432877564
Iteration: 8, Func. Count: 104, Neg. LLF: 79.65624211071182
Iteration: 9, Func. Count: 116, Neg. LLF: 79.59173426090865
Iteration: 10, Func. Count: 128, Neg. LLF: 79.57926607629484
Iteration: 11, Func. Count: 140, Neg. LLF: 79.57550717919092
Iteration: 12, Func. Count: 152, Neg. LLF: 79.57176460273563
Iteration: 13, Func. Count: 164, Neg. LLF: 79.56941669460164
Iteration: 14, Func. Count: 176, Neg. LLF: 79.5680858448906
Iteration: 15, Func. Count: 188, Neg. LLF: 79.56743233975183
Iteration: 16, Func. Count: 200, Neg. LLF: 79.56661499743365
Iteration: 17, Func. Count: 212, Neg. LLF: 79.56555441375171
Iteration: 18, Func. Count: 224, Neg. LLF: 79.56480548334555
Iteration: 19, Func. Count: 236, Neg. LLF: 79.56462593140571
Iteration: 20, Func. Count: 248, Neg. LLF: 79.56461219052716
Iteration: 21, Func. Count: 260, Neg. LLF: 79.56461157466703
Optimization terminated successfully (Exit mode 0)
Current function value: 79.56461157466703
Iterations: 21
Function evaluations: 260
Gradient evaluations: 21
Iteration: 1, Func. Count: 10, Neg. LLF: 119.91500026671122
Iteration: 2, Func. Count: 22, Neg. LLF: 123.90038644329374
Iteration: 3, Func. Count: 32, Neg. LLF: 16436017.153693026
Iteration: 4, Func. Count: 42, Neg. LLF: 7024404.279484066
Iteration: 5, Func. Count: 52, Neg. LLF: 86.31975036791002
Iteration: 6, Func. Count: 62, Neg. LLF: 80.19610888458348
Iteration: 7, Func. Count: 71, Neg. LLF: 79.90258231546446
Iteration: 8, Func. Count: 80, Neg. LLF: 79.81722316341013
Iteration: 9, Func. Count: 89, Neg. LLF: 83.63480426019264
Iteration: 10, Func. Count: 99, Neg. LLF: 79.74986684051166
Iteration: 11, Func. Count: 108, Neg. LLF: 79.74571497741354
Iteration: 12, Func. Count: 117, Neg. LLF: 79.74554156111218
Iteration: 13, Func. Count: 126, Neg. LLF: 79.74550460184514
Iteration: 14, Func. Count: 135, Neg. LLF: 79.74550392623615
Optimization terminated successfully (Exit mode 0)
Current function value: 79.74550392623615
Iterations: 14
Function evaluations: 135
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 24167284.235950932
Iteration: 2, Func. Count: 23, Neg. LLF: 81.3755928292085
Iteration: 3, Func. Count: 34, Neg. LLF: 80.66415567476434
Iteration: 4, Func. Count: 45, Neg. LLF: 80.284068068778
Iteration: 5, Func. Count: 55, Neg. LLF: 80.25383345738221
Iteration: 6, Func. Count: 66, Neg. LLF: 80.18397285728338
Iteration: 7, Func. Count: 77, Neg. LLF: 80.14700208506736
Iteration: 8, Func. Count: 86, Neg. LLF: 80.14700208616895
Optimization terminated successfully (Exit mode 0)
Current function value: 80.14700208506736
Iterations: 8
Function evaluations: 86
Gradient evaluations: 8
Iteration: 1, Func. Count: 12, Neg. LLF: 24577782.19073137
Iteration: 2, Func. Count: 25, Neg. LLF: 82.62732698063212
Iteration: 3, Func. Count: 37, Neg. LLF: 81.3093660553575
Iteration: 4, Func. Count: 49, Neg. LLF: 80.54754694562673
Iteration: 5, Func. Count: 61, Neg. LLF: 81.0407379197205
Iteration: 6, Func. Count: 73, Neg. LLF: 80.18468477150324
Iteration: 7, Func. Count: 84, Neg. LLF: 80.16242412236008
Iteration: 8, Func. Count: 95, Neg. LLF: 80.15761395539124
Iteration: 9, Func. Count: 106, Neg. LLF: 80.15689695553617
Iteration: 10, Func. Count: 117, Neg. LLF: 80.15439792483572
Iteration: 11, Func. Count: 128, Neg. LLF: 80.15165290086607
Iteration: 12, Func. Count: 139, Neg. LLF: 80.14856089948604
Iteration: 13, Func. Count: 150, Neg. LLF: 80.14700632446382
Iteration: 14, Func. Count: 161, Neg. LLF: 80.14700673386724
Iteration: 15, Func. Count: 172, Neg. LLF: 80.14700206436339
Optimization terminated successfully (Exit mode 0)
Current function value: 80.1470020642152
Iterations: 15
Function evaluations: 172
Gradient evaluations: 15
Iteration: 1, Func. Count: 13, Neg. LLF: 24839391.254129466
Iteration: 2, Func. Count: 27, Neg. LLF: 130.92685477019361
Iteration: 3, Func. Count: 41, Neg. LLF: 122.06873852273993
Iteration: 4, Func. Count: 55, Neg. LLF: 80.13758431824968
Iteration: 5, Func. Count: 67, Neg. LLF: 80.02188726520907
Iteration: 6, Func. Count: 79, Neg. LLF: 82.61793616824224
Iteration: 7, Func. Count: 94, Neg. LLF: 79.81896926495307
Iteration: 8, Func. Count: 106, Neg. LLF: 80.09774622387654
Iteration: 9, Func. Count: 119, Neg. LLF: 79.69428244231447
Iteration: 10, Func. Count: 131, Neg. LLF: 79.65477975206333
Iteration: 11, Func. Count: 143, Neg. LLF: 79.63552715879631
Iteration: 12, Func. Count: 155, Neg. LLF: 79.6275801338759
Iteration: 13, Func. Count: 167, Neg. LLF: 79.61863647558881
Iteration: 14, Func. Count: 179, Neg. LLF: 79.57511292701666
Iteration: 15, Func. Count: 191, Neg. LLF: 79.57352836775577
Iteration: 16, Func. Count: 203, Neg. LLF: 79.57266656658066
Iteration: 17, Func. Count: 215, Neg. LLF: 79.57009145567169
Iteration: 18, Func. Count: 227, Neg. LLF: 79.56791826187671
Iteration: 19, Func. Count: 239, Neg. LLF: 79.56633260667621
Iteration: 20, Func. Count: 251, Neg. LLF: 79.56577616436478
Iteration: 21, Func. Count: 263, Neg. LLF: 79.56517867410936
Iteration: 22, Func. Count: 275, Neg. LLF: 79.56477411032589
Iteration: 23, Func. Count: 287, Neg. LLF: 79.56462977547368
Iteration: 24, Func. Count: 299, Neg. LLF: 79.56461219131499
Iteration: 25, Func. Count: 311, Neg. LLF: 79.56461158317919
Optimization terminated successfully (Exit mode 0)
Current function value: 79.56461158317919
Iterations: 25
Function evaluations: 311
Gradient evaluations: 25
Iteration: 1, Func. Count: 14, Neg. LLF: 24979796.931467436
Iteration: 2, Func. Count: 29, Neg. LLF: 103.36232617285687
Iteration: 3, Func. Count: 44, Neg. LLF: 117.46001779864102
Iteration: 4, Func. Count: 59, Neg. LLF: 80.21702161821108
Iteration: 5, Func. Count: 72, Neg. LLF: 79.85929743545182
Iteration: 6, Func. Count: 85, Neg. LLF: 88.20486948352938
Iteration: 7, Func. Count: 99, Neg. LLF: 79.7282195422266
Iteration: 8, Func. Count: 112, Neg. LLF: 79.67186887098308
Iteration: 9, Func. Count: 125, Neg. LLF: 79.64308330403371
Iteration: 10, Func. Count: 138, Neg. LLF: 79.63238622304642
Iteration: 11, Func. Count: 151, Neg. LLF: 79.61540343585746
Iteration: 12, Func. Count: 164, Neg. LLF: 79.6032296952677
Iteration: 13, Func. Count: 177, Neg. LLF: 79.57739833905607
Iteration: 14, Func. Count: 190, Neg. LLF: 79.57648423900051
Iteration: 15, Func. Count: 203, Neg. LLF: 79.57231991392328
Iteration: 16, Func. Count: 216, Neg. LLF: 79.56860088514105
Iteration: 17, Func. Count: 229, Neg. LLF: 79.5655294578562
Iteration: 18, Func. Count: 242, Neg. LLF: 79.56480437269337
Iteration: 19, Func. Count: 255, Neg. LLF: 79.56475906158605
Iteration: 20, Func. Count: 268, Neg. LLF: 79.56470888298497
Iteration: 21, Func. Count: 281, Neg. LLF: 79.56465413022131
Iteration: 22, Func. Count: 294, Neg. LLF: 79.56462009452859
Iteration: 23, Func. Count: 307, Neg. LLF: 79.56461218508066
Iteration: 24, Func. Count: 320, Neg. LLF: 79.5646115817153
Optimization terminated successfully (Exit mode 0)
Current function value: 79.5646115817153
Iterations: 24
Function evaluations: 320
Gradient evaluations: 24
Iteration: 1, Func. Count: 11, Neg. LLF: 116.33263707635291
Iteration: 2, Func. Count: 24, Neg. LLF: 195.55748892840282
Iteration: 3, Func. Count: 35, Neg. LLF: 13028973.766894665
Iteration: 4, Func. Count: 46, Neg. LLF: 6898946.972364369
Iteration: 5, Func. Count: 57, Neg. LLF: 82.88819074186141
Iteration: 6, Func. Count: 68, Neg. LLF: 79.90228407705787
Iteration: 7, Func. Count: 78, Neg. LLF: 2045878.8356132812
Iteration: 8, Func. Count: 90, Neg. LLF: 79.7857796635494
Iteration: 9, Func. Count: 100, Neg. LLF: 79.75694949719254
Iteration: 10, Func. Count: 110, Neg. LLF: 79.74998126096162
Iteration: 11, Func. Count: 120, Neg. LLF: 79.74588136414806
Iteration: 12, Func. Count: 130, Neg. LLF: 79.74551638241849
Iteration: 13, Func. Count: 140, Neg. LLF: 79.7455050431445
Iteration: 14, Func. Count: 150, Neg. LLF: 79.74550396920743
Iteration: 15, Func. Count: 159, Neg. LLF: 79.74550404147499
Optimization terminated successfully (Exit mode 0)
Current function value: 79.74550396920743
Iterations: 15
Function evaluations: 159
Gradient evaluations: 15
Iteration: 1, Func. Count: 12, Neg. LLF: 24011087.226119578
Iteration: 2, Func. Count: 25, Neg. LLF: 81.43279741242677
Iteration: 3, Func. Count: 37, Neg. LLF: 80.59750395354595
Iteration: 4, Func. Count: 49, Neg. LLF: 80.22532904091798
Iteration: 5, Func. Count: 60, Neg. LLF: 83.42509296917801
Iteration: 6, Func. Count: 73, Neg. LLF: 80.55616320056134
Iteration: 7, Func. Count: 85, Neg. LLF: 80.14700308542652
Iteration: 8, Func. Count: 96, Neg. LLF: 80.1470019645904
Iteration: 9, Func. Count: 106, Neg. LLF: 80.14700196458847
Optimization terminated successfully (Exit mode 0)
Current function value: 80.1470019645904
Iterations: 9
Function evaluations: 106
Gradient evaluations: 9
Iteration: 1, Func. Count: 13, Neg. LLF: 24404176.188627493
Iteration: 2, Func. Count: 27, Neg. LLF: 82.6520026975999
Iteration: 3, Func. Count: 40, Neg. LLF: 81.23175318978365
Iteration: 4, Func. Count: 53, Neg. LLF: 80.59373807019692
Iteration: 5, Func. Count: 66, Neg. LLF: 80.48083279670416
Iteration: 6, Func. Count: 79, Neg. LLF: 80.16266106050824
Iteration: 7, Func. Count: 91, Neg. LLF: 80.15692181160253
Iteration: 8, Func. Count: 103, Neg. LLF: 80.15646010351743
Iteration: 9, Func. Count: 115, Neg. LLF: 80.15533055888717
Iteration: 10, Func. Count: 127, Neg. LLF: 80.15350476499106
Iteration: 11, Func. Count: 139, Neg. LLF: 80.15100205989825
Iteration: 12, Func. Count: 151, Neg. LLF: 80.14701513263569
Iteration: 13, Func. Count: 163, Neg. LLF: 80.14706893081959
Iteration: 14, Func. Count: 176, Neg. LLF: 80.14700454530563
Iteration: 15, Func. Count: 188, Neg. LLF: 80.1470020254444
Iteration: 16, Func. Count: 199, Neg. LLF: 80.14700202566644
Optimization terminated successfully (Exit mode 0)
Current function value: 80.1470020254444
Iterations: 16
Function evaluations: 199
Gradient evaluations: 16
Iteration: 1, Func. Count: 14, Neg. LLF: 24646912.722298358
Iteration: 2, Func. Count: 29, Neg. LLF: 131.27735982146595
Iteration: 3, Func. Count: 44, Neg. LLF: 124.80332841245723
Iteration: 4, Func. Count: 59, Neg. LLF: 80.13502722789912
Iteration: 5, Func. Count: 72, Neg. LLF: 80.06703075506373
Iteration: 6, Func. Count: 85, Neg. LLF: 81.8453996124171
Iteration: 7, Func. Count: 101, Neg. LLF: 79.90872981708006
Iteration: 8, Func. Count: 115, Neg. LLF: 80.04976719711789
Iteration: 9, Func. Count: 129, Neg. LLF: 79.72851706317053
Iteration: 10, Func. Count: 142, Neg. LLF: 79.66708356536131
Iteration: 11, Func. Count: 155, Neg. LLF: 79.64785761687152
Iteration: 12, Func. Count: 168, Neg. LLF: 79.63489394598487
Iteration: 13, Func. Count: 181, Neg. LLF: 79.62760505760006
Iteration: 14, Func. Count: 194, Neg. LLF: 79.5744241368034
Iteration: 15, Func. Count: 207, Neg. LLF: 79.57353033348048
Iteration: 16, Func. Count: 220, Neg. LLF: 79.57139143382499
Iteration: 17, Func. Count: 233, Neg. LLF: 79.57054233088513
Iteration: 18, Func. Count: 246, Neg. LLF: 79.56813333191558
Iteration: 19, Func. Count: 259, Neg. LLF: 79.56688008851889
Iteration: 20, Func. Count: 272, Neg. LLF: 79.56632506169687
Iteration: 21, Func. Count: 285, Neg. LLF: 79.56581465822978
Iteration: 22, Func. Count: 298, Neg. LLF: 79.565109570405
Iteration: 23, Func. Count: 311, Neg. LLF: 79.56471563416872
Iteration: 24, Func. Count: 324, Neg. LLF: 79.56461760756548
Iteration: 25, Func. Count: 337, Neg. LLF: 79.56461169121347
Iteration: 26, Func. Count: 349, Neg. LLF: 79.56461169127478
Optimization terminated successfully (Exit mode 0)
Current function value: 79.56461169121347
Iterations: 26
Function evaluations: 349
Gradient evaluations: 26
Iteration: 1, Func. Count: 15, Neg. LLF: 24767397.497419197
Iteration: 2, Func. Count: 31, Neg. LLF: 103.68441352223262
Iteration: 3, Func. Count: 47, Neg. LLF: 117.87107047706135
Iteration: 4, Func. Count: 63, Neg. LLF: 80.275457630227
Iteration: 5, Func. Count: 77, Neg. LLF: 79.8502259749827
Iteration: 6, Func. Count: 91, Neg. LLF: 82.40286565192466
Iteration: 7, Func. Count: 106, Neg. LLF: 79.71265218453298
Iteration: 8, Func. Count: 120, Neg. LLF: 79.67231552942849
Iteration: 9, Func. Count: 134, Neg. LLF: 79.64594246548214
Iteration: 10, Func. Count: 148, Neg. LLF: 79.6264051160917
Iteration: 11, Func. Count: 162, Neg. LLF: 79.61275561614514
Iteration: 12, Func. Count: 176, Neg. LLF: 79.57913745132264
Iteration: 13, Func. Count: 190, Neg. LLF: 79.5733020859369
Iteration: 14, Func. Count: 204, Neg. LLF: 79.57186377059212
Iteration: 15, Func. Count: 218, Neg. LLF: 79.57091594594384
Iteration: 16, Func. Count: 232, Neg. LLF: 79.5671829189854
Iteration: 17, Func. Count: 246, Neg. LLF: 79.56623464591863
Iteration: 18, Func. Count: 260, Neg. LLF: 79.56591215559972
Iteration: 19, Func. Count: 274, Neg. LLF: 79.56549810991746
Iteration: 20, Func. Count: 288, Neg. LLF: 79.56500501999153
Iteration: 21, Func. Count: 302, Neg. LLF: 79.56469870863839
Iteration: 22, Func. Count: 316, Neg. LLF: 79.56461706353988
Iteration: 23, Func. Count: 330, Neg. LLF: 79.5646116994094
Iteration: 24, Func. Count: 343, Neg. LLF: 79.56461173644045
Optimization terminated successfully (Exit mode 0)
Current function value: 79.5646116994094
Iterations: 24
Function evaluations: 343
Gradient evaluations: 24
Iteration: 1, Func. Count: 8, Neg. LLF: 120.2595782712293
Iteration: 2, Func. Count: 19, Neg. LLF: 101.51649867690018
Iteration: 3, Func. Count: 28, Neg. LLF: 80.8692335792604
Iteration: 4, Func. Count: 35, Neg. LLF: 80.83624471719452
Iteration: 5, Func. Count: 42, Neg. LLF: 80.83387659122265
Iteration: 6, Func. Count: 49, Neg. LLF: 80.83380840959248
Iteration: 7, Func. Count: 55, Neg. LLF: 80.83380854533385
Optimization terminated successfully (Exit mode 0)
Current function value: 80.83380840959248
Iterations: 7
Function evaluations: 55
Gradient evaluations: 7
Iteration: 1, Func. Count: 9, Neg. LLF: 23770324.124397114
Iteration: 2, Func. Count: 19, Neg. LLF: 81.58952702525077
Iteration: 3, Func. Count: 28, Neg. LLF: 80.94571080181868
Iteration: 4, Func. Count: 37, Neg. LLF: 87.14997232704926
Iteration: 5, Func. Count: 47, Neg. LLF: 80.46555694093615
Iteration: 6, Func. Count: 56, Neg. LLF: 80.21348607696348
Iteration: 7, Func. Count: 64, Neg. LLF: 80.15051114215414
Iteration: 8, Func. Count: 72, Neg. LLF: 80.14701340278296
Iteration: 9, Func. Count: 80, Neg. LLF: 80.14700214074841
Iteration: 10, Func. Count: 87, Neg. LLF: 80.14700213984291
Optimization terminated successfully (Exit mode 0)
Current function value: 80.14700214074841
Iterations: 10
Function evaluations: 87
Gradient evaluations: 10
Iteration: 1, Func. Count: 10, Neg. LLF: 23695079.331139173
Iteration: 2, Func. Count: 21, Neg. LLF: 80.97453664396009
Iteration: 3, Func. Count: 31, Neg. LLF: 80.6250802634298
Iteration: 4, Func. Count: 41, Neg. LLF: 80.2448356831092
Iteration: 5, Func. Count: 50, Neg. LLF: 80.22378140115835
Iteration: 6, Func. Count: 60, Neg. LLF: 80.1605385190083
Iteration: 7, Func. Count: 69, Neg. LLF: 80.15934614088782
Iteration: 8, Func. Count: 78, Neg. LLF: 80.1582629890373
Iteration: 9, Func. Count: 87, Neg. LLF: 80.1561248647042
Iteration: 10, Func. Count: 96, Neg. LLF: 80.15324996769398
Iteration: 11, Func. Count: 105, Neg. LLF: 80.15032221223875
Iteration: 12, Func. Count: 114, Neg. LLF: 80.14717011778492
Iteration: 13, Func. Count: 123, Neg. LLF: 80.14704432817432
Iteration: 14, Func. Count: 132, Neg. LLF: 80.1470060682716
Iteration: 15, Func. Count: 141, Neg. LLF: 80.14700212894132
Iteration: 16, Func. Count: 149, Neg. LLF: 80.14700213032536
Optimization terminated successfully (Exit mode 0)
Current function value: 80.14700212894132
Iterations: 16
Function evaluations: 149
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 23697893.111270268
Iteration: 2, Func. Count: 23, Neg. LLF: 80.73191674326955
Iteration: 3, Func. Count: 34, Neg. LLF: 80.50917916269734
Iteration: 4, Func. Count: 45, Neg. LLF: 80.18184134291533
Iteration: 5, Func. Count: 55, Neg. LLF: 80.11433152847849
Iteration: 6, Func. Count: 65, Neg. LLF: 79.98705575582271
Iteration: 7, Func. Count: 75, Neg. LLF: 79.84842777844257
Iteration: 8, Func. Count: 85, Neg. LLF: 79.83250627583018
Iteration: 9, Func. Count: 95, Neg. LLF: 79.82592295844685
Iteration: 10, Func. Count: 105, Neg. LLF: 79.82570922879415
Iteration: 11, Func. Count: 115, Neg. LLF: 79.82568861326514
Iteration: 12, Func. Count: 125, Neg. LLF: 79.82567483890192
Iteration: 13, Func. Count: 135, Neg. LLF: 79.8256601156071
Iteration: 14, Func. Count: 145, Neg. LLF: 79.82565629638503
Iteration: 15, Func. Count: 154, Neg. LLF: 79.82565629645008
Optimization terminated successfully (Exit mode 0)
Current function value: 79.82565629638503
Iterations: 15
Function evaluations: 154
Gradient evaluations: 15
Iteration: 1, Func. Count: 12, Neg. LLF: 23701264.430682234
Iteration: 2, Func. Count: 25, Neg. LLF: 81.20867584609246
Iteration: 3, Func. Count: 37, Neg. LLF: 80.91795156958814
Iteration: 4, Func. Count: 49, Neg. LLF: 80.2055807935105
Iteration: 5, Func. Count: 60, Neg. LLF: 80.55031794088927
Iteration: 6, Func. Count: 72, Neg. LLF: 80.17956713394982
Iteration: 7, Func. Count: 83, Neg. LLF: 80.16626089780175
Iteration: 8, Func. Count: 94, Neg. LLF: 80.15837727279575
Iteration: 9, Func. Count: 105, Neg. LLF: 80.15559260543199
Iteration: 10, Func. Count: 116, Neg. LLF: 80.1534496347449
Iteration: 11, Func. Count: 127, Neg. LLF: 80.15302990370081
Iteration: 12, Func. Count: 138, Neg. LLF: 80.15285816427075
Iteration: 13, Func. Count: 149, Neg. LLF: 80.15234257329219
Iteration: 14, Func. Count: 160, Neg. LLF: 80.15142004268426
Iteration: 15, Func. Count: 171, Neg. LLF: 80.14800417523307
Iteration: 16, Func. Count: 182, Neg. LLF: 80.14738429383212
Iteration: 17, Func. Count: 193, Neg. LLF: 80.14700884485298
Iteration: 18, Func. Count: 204, Neg. LLF: 80.14700751642962
Iteration: 19, Func. Count: 215, Neg. LLF: 80.14700206674532
Optimization terminated successfully (Exit mode 0)
Current function value: 80.14700206539166
Iterations: 19
Function evaluations: 215
Gradient evaluations: 19
Iteration: 1, Func. Count: 9, Neg. LLF: 120.66939527927053
Iteration: 2, Func. Count: 21, Neg. LLF: 106.31531976855025
Iteration: 3, Func. Count: 31, Neg. LLF: 80.86992339439104
Iteration: 4, Func. Count: 39, Neg. LLF: 80.83893283035582
Iteration: 5, Func. Count: 47, Neg. LLF: 80.83384447946631
Iteration: 6, Func. Count: 55, Neg. LLF: 80.83380881178176
Iteration: 7, Func. Count: 62, Neg. LLF: 80.83380891649682
Optimization terminated successfully (Exit mode 0)
Current function value: 80.83380881178176
Iterations: 7
Function evaluations: 62
Gradient evaluations: 7
Iteration: 1, Func. Count: 10, Neg. LLF: 24255829.745097093
Iteration: 2, Func. Count: 21, Neg. LLF: 81.35787040093776
Iteration: 3, Func. Count: 31, Neg. LLF: 80.7007642737921
Iteration: 4, Func. Count: 41, Neg. LLF: 80.25618476590148
Iteration: 5, Func. Count: 50, Neg. LLF: 80.30597856261582
Iteration: 6, Func. Count: 60, Neg. LLF: 80.15994428151593
Iteration: 7, Func. Count: 69, Neg. LLF: 80.14702369662382
Iteration: 8, Func. Count: 78, Neg. LLF: 80.14700201584645
Iteration: 9, Func. Count: 86, Neg. LLF: 80.14700201511948
Optimization terminated successfully (Exit mode 0)
Current function value: 80.14700201584645
Iterations: 9
Function evaluations: 86
Gradient evaluations: 9
Iteration: 1, Func. Count: 11, Neg. LLF: 24488628.303932253
Iteration: 2, Func. Count: 23, Neg. LLF: 80.9120184105809
Iteration: 3, Func. Count: 34, Neg. LLF: 80.5128225683688
Iteration: 4, Func. Count: 45, Neg. LLF: 80.19059677469757
Iteration: 5, Func. Count: 55, Neg. LLF: 80.17773180077813
Iteration: 6, Func. Count: 65, Neg. LLF: 80.16919741536202
Iteration: 7, Func. Count: 75, Neg. LLF: 80.16005933779458
Iteration: 8, Func. Count: 85, Neg. LLF: 80.15812364431011
Iteration: 9, Func. Count: 95, Neg. LLF: 80.15646486337494
Iteration: 10, Func. Count: 105, Neg. LLF: 80.15331465264731
Iteration: 11, Func. Count: 115, Neg. LLF: 80.15080338244823
Iteration: 12, Func. Count: 125, Neg. LLF: 80.14702327912293
Iteration: 13, Func. Count: 135, Neg. LLF: 80.14700428154669
Iteration: 14, Func. Count: 145, Neg. LLF: 80.14700310653541
Iteration: 15, Func. Count: 155, Neg. LLF: 80.14700206983863
Iteration: 16, Func. Count: 164, Neg. LLF: 80.14700207070472
Optimization terminated successfully (Exit mode 0)
Current function value: 80.14700206983863
Iterations: 16
Function evaluations: 164
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 24544498.059887752
Iteration: 2, Func. Count: 25, Neg. LLF: 80.65604511741422
Iteration: 3, Func. Count: 37, Neg. LLF: 80.86624469459454
Iteration: 4, Func. Count: 49, Neg. LLF: 80.20394867771836
Iteration: 5, Func. Count: 60, Neg. LLF: 80.0934713347796
Iteration: 6, Func. Count: 71, Neg. LLF: 87.59918014794444
Iteration: 7, Func. Count: 83, Neg. LLF: 79.83466228773473
Iteration: 8, Func. Count: 94, Neg. LLF: 79.83466518137462
Iteration: 9, Func. Count: 106, Neg. LLF: 79.82691574614124
Iteration: 10, Func. Count: 117, Neg. LLF: 79.82628307240614
Iteration: 11, Func. Count: 128, Neg. LLF: 79.82591744643099
Iteration: 12, Func. Count: 139, Neg. LLF: 79.82583616862436
Iteration: 13, Func. Count: 150, Neg. LLF: 79.82568092887395
Iteration: 14, Func. Count: 161, Neg. LLF: 79.82565852603891
Iteration: 15, Func. Count: 172, Neg. LLF: 79.82565590896473
Iteration: 16, Func. Count: 182, Neg. LLF: 79.82565590890816
Optimization terminated successfully (Exit mode 0)
Current function value: 79.82565590896473
Iterations: 16
Function evaluations: 182
Gradient evaluations: 16
Iteration: 1, Func. Count: 13, Neg. LLF: 24528487.429248847
Iteration: 2, Func. Count: 27, Neg. LLF: 80.4979106918696
Iteration: 3, Func. Count: 40, Neg. LLF: 81.10332597228478
Iteration: 4, Func. Count: 53, Neg. LLF: 80.27871025085008
Iteration: 5, Func. Count: 65, Neg. LLF: 80.1865136223181
Iteration: 6, Func. Count: 77, Neg. LLF: 80.17666125318607
Iteration: 7, Func. Count: 89, Neg. LLF: 80.16468809663765
Iteration: 8, Func. Count: 101, Neg. LLF: 80.156386116812
Iteration: 9, Func. Count: 113, Neg. LLF: 80.15572514773872
Iteration: 10, Func. Count: 125, Neg. LLF: 80.15567977421058
Iteration: 11, Func. Count: 137, Neg. LLF: 80.1555993945439
Iteration: 12, Func. Count: 149, Neg. LLF: 80.15522779346554
Iteration: 13, Func. Count: 161, Neg. LLF: 80.1545517148837
Iteration: 14, Func. Count: 173, Neg. LLF: 80.15376390633617
Iteration: 15, Func. Count: 185, Neg. LLF: 80.15211959208162
Iteration: 16, Func. Count: 197, Neg. LLF: 80.15202209359288
Iteration: 17, Func. Count: 209, Neg. LLF: 80.15142471609431
Iteration: 18, Func. Count: 221, Neg. LLF: 80.14988859065112
Iteration: 19, Func. Count: 233, Neg. LLF: 80.14772309283828
Iteration: 20, Func. Count: 245, Neg. LLF: 80.1472815455309
Iteration: 21, Func. Count: 257, Neg. LLF: 80.14700197364155
Iteration: 22, Func. Count: 268, Neg. LLF: 80.14700197527067
Optimization terminated successfully (Exit mode 0)
Current function value: 80.14700197364155
Iterations: 22
Function evaluations: 268
Gradient evaluations: 22
Iteration: 1, Func. Count: 10, Neg. LLF: 115.65947123705969
Iteration: 2, Func. Count: 22, Neg. LLF: 109.2629548239855
Iteration: 3, Func. Count: 32, Neg. LLF: 257.2841500344645
Iteration: 4, Func. Count: 42, Neg. LLF: 97.07635412189295
Iteration: 5, Func. Count: 52, Neg. LLF: 81.24841405898628
Iteration: 6, Func. Count: 61, Neg. LLF: 81.43837340043551
Iteration: 7, Func. Count: 71, Neg. LLF: 82.85013032952547
Iteration: 8, Func. Count: 81, Neg. LLF: 80.1702796668967
Iteration: 9, Func. Count: 90, Neg. LLF: 80.15133334781328
Iteration: 10, Func. Count: 99, Neg. LLF: 80.11930587168807
Iteration: 11, Func. Count: 108, Neg. LLF: 80.1168992782486
Iteration: 12, Func. Count: 117, Neg. LLF: 80.11667334983069
Iteration: 13, Func. Count: 126, Neg. LLF: 80.116663920868
Iteration: 14, Func. Count: 135, Neg. LLF: 80.11666308432359
Optimization terminated successfully (Exit mode 0)
Current function value: 80.11666308432359
Iterations: 14
Function evaluations: 135
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 24273128.510432135
Iteration: 2, Func. Count: 23, Neg. LLF: 81.35681773122765
Iteration: 3, Func. Count: 34, Neg. LLF: 80.70685226945393
Iteration: 4, Func. Count: 45, Neg. LLF: 80.23222987150974
Iteration: 5, Func. Count: 55, Neg. LLF: 80.30217867759289
Iteration: 6, Func. Count: 66, Neg. LLF: 81.84514766446728
Iteration: 7, Func. Count: 77, Neg. LLF: 80.1470026557699
Iteration: 8, Func. Count: 87, Neg. LLF: 80.14700196341339
Optimization terminated successfully (Exit mode 0)
Current function value: 80.14700196341339
Iterations: 8
Function evaluations: 87
Gradient evaluations: 8
Iteration: 1, Func. Count: 12, Neg. LLF: 24598474.641484793
Iteration: 2, Func. Count: 25, Neg. LLF: 82.31285809942754
Iteration: 3, Func. Count: 37, Neg. LLF: 81.19878082177294
Iteration: 4, Func. Count: 49, Neg. LLF: 80.56438281578609
Iteration: 5, Func. Count: 61, Neg. LLF: 80.25247101039402
Iteration: 6, Func. Count: 72, Neg. LLF: 80.16686990692571
Iteration: 7, Func. Count: 83, Neg. LLF: 80.15997910530103
Iteration: 8, Func. Count: 94, Neg. LLF: 80.15793938169155
Iteration: 9, Func. Count: 105, Neg. LLF: 80.15676108491643
Iteration: 10, Func. Count: 116, Neg. LLF: 80.15435934697254
Iteration: 11, Func. Count: 127, Neg. LLF: 80.15188151668497
Iteration: 12, Func. Count: 138, Neg. LLF: 80.14829759393415
Iteration: 13, Func. Count: 149, Neg. LLF: 80.14701216913639
Iteration: 14, Func. Count: 160, Neg. LLF: 80.14700298930916
Iteration: 15, Func. Count: 171, Neg. LLF: 338.04811097421657
Optimization terminated successfully (Exit mode 0)
Current function value: 80.14700287124096
Iterations: 16
Function evaluations: 176
Gradient evaluations: 15
Iteration: 1, Func. Count: 13, Neg. LLF: 24721323.664400693
Iteration: 2, Func. Count: 27, Neg. LLF: 129.19496802541406
Iteration: 3, Func. Count: 41, Neg. LLF: 120.33005025829894
Iteration: 4, Func. Count: 55, Neg. LLF: 80.11791115210447
Iteration: 5, Func. Count: 67, Neg. LLF: 80.30389026616872
Iteration: 6, Func. Count: 80, Neg. LLF: 80.8191489082589
Iteration: 7, Func. Count: 93, Neg. LLF: 79.88747067424082
Iteration: 8, Func. Count: 105, Neg. LLF: 79.91165721997504
Iteration: 9, Func. Count: 118, Neg. LLF: 79.82804817725388
Iteration: 10, Func. Count: 130, Neg. LLF: 79.74354942749143
Iteration: 11, Func. Count: 142, Neg. LLF: 79.66889133708989
Iteration: 12, Func. Count: 154, Neg. LLF: 79.62303890277035
Iteration: 13, Func. Count: 166, Neg. LLF: 79.61591753340815
Iteration: 14, Func. Count: 178, Neg. LLF: 79.58474090855093
Iteration: 15, Func. Count: 190, Neg. LLF: 79.57135767398772
Iteration: 16, Func. Count: 202, Neg. LLF: 79.56970320591377
Iteration: 17, Func. Count: 214, Neg. LLF: 79.56938822401295
Iteration: 18, Func. Count: 226, Neg. LLF: 79.56828999929355
Iteration: 19, Func. Count: 238, Neg. LLF: 79.56666734560476
Iteration: 20, Func. Count: 250, Neg. LLF: 79.56520751003075
Iteration: 21, Func. Count: 262, Neg. LLF: 79.56472966354026
Iteration: 22, Func. Count: 274, Neg. LLF: 79.56465266486553
Iteration: 23, Func. Count: 286, Neg. LLF: 79.56463265493684
Iteration: 24, Func. Count: 298, Neg. LLF: 79.56461953465175
Iteration: 25, Func. Count: 310, Neg. LLF: 79.5646128398848
Iteration: 26, Func. Count: 322, Neg. LLF: 79.56461164504509
Iteration: 27, Func. Count: 333, Neg. LLF: 79.56461164502056
Optimization terminated successfully (Exit mode 0)
Current function value: 79.56461164504509
Iterations: 27
Function evaluations: 333
Gradient evaluations: 27
Iteration: 1, Func. Count: 14, Neg. LLF: 24796332.622853167
Iteration: 2, Func. Count: 29, Neg. LLF: 100.61920124889588
Iteration: 3, Func. Count: 44, Neg. LLF: 113.17166674480055
Iteration: 4, Func. Count: 59, Neg. LLF: 80.25948350037525
Iteration: 5, Func. Count: 72, Neg. LLF: 79.9201404761114
Iteration: 6, Func. Count: 85, Neg. LLF: 79.78573719473448
Iteration: 7, Func. Count: 98, Neg. LLF: 79.72605454608345
Iteration: 8, Func. Count: 111, Neg. LLF: 79.67976848695854
Iteration: 9, Func. Count: 124, Neg. LLF: 79.62643290059005
Iteration: 10, Func. Count: 137, Neg. LLF: 79.60354184384154
Iteration: 11, Func. Count: 150, Neg. LLF: 79.58250698860158
Iteration: 12, Func. Count: 163, Neg. LLF: 79.57204390803179
Iteration: 13, Func. Count: 176, Neg. LLF: 79.57049385651833
Iteration: 14, Func. Count: 189, Neg. LLF: 79.5662933269945
Iteration: 15, Func. Count: 202, Neg. LLF: 79.56553215451524
Iteration: 16, Func. Count: 215, Neg. LLF: 79.56488821004163
Iteration: 17, Func. Count: 228, Neg. LLF: 79.56485050120179
Iteration: 18, Func. Count: 241, Neg. LLF: 79.56481703259577
Iteration: 19, Func. Count: 254, Neg. LLF: 79.56475816841585
Iteration: 20, Func. Count: 267, Neg. LLF: 79.56467911242585
Iteration: 21, Func. Count: 280, Neg. LLF: 79.56462620069135
Iteration: 22, Func. Count: 293, Neg. LLF: 79.56461269291638
Iteration: 23, Func. Count: 306, Neg. LLF: 79.56461159479812
Iteration: 24, Func. Count: 318, Neg. LLF: 79.56461163181996
Optimization terminated successfully (Exit mode 0)
Current function value: 79.56461159479812
Iterations: 24
Function evaluations: 318
Gradient evaluations: 24
Iteration: 1, Func. Count: 11, Neg. LLF: 117.80759983549623
Iteration: 2, Func. Count: 25, Neg. LLF: 5414053.27232139
Iteration: 3, Func. Count: 36, Neg. LLF: 6886972.514933135
Iteration: 4, Func. Count: 47, Neg. LLF: 92.38092739006458
Iteration: 5, Func. Count: 58, Neg. LLF: 80.0592103323257
Iteration: 6, Func. Count: 68, Neg. LLF: 79.75796516913086
Iteration: 7, Func. Count: 78, Neg. LLF: 84.76724423424838
Iteration: 8, Func. Count: 90, Neg. LLF: 79.74646043526926
Iteration: 9, Func. Count: 100, Neg. LLF: 79.7456167220164
Iteration: 10, Func. Count: 110, Neg. LLF: 79.74550818593119
Iteration: 11, Func. Count: 120, Neg. LLF: 79.74550545268166
Iteration: 12, Func. Count: 130, Neg. LLF: 79.74550427344269
Iteration: 13, Func. Count: 139, Neg. LLF: 79.74550421347976
Optimization terminated successfully (Exit mode 0)
Current function value: 79.74550427344269
Iterations: 13
Function evaluations: 139
Gradient evaluations: 13
Iteration: 1, Func. Count: 12, Neg. LLF: 24097030.5031265
Iteration: 2, Func. Count: 25, Neg. LLF: 81.41625047835083
Iteration: 3, Func. Count: 37, Neg. LLF: 80.68166444296598
Iteration: 4, Func. Count: 49, Neg. LLF: 80.3727571180538
Iteration: 5, Func. Count: 60, Neg. LLF: 101.88888309204718
Iteration: 6, Func. Count: 73, Neg. LLF: 817.8687718606742
Iteration: 7, Func. Count: 86, Neg. LLF: 80.17860886389738
Iteration: 8, Func. Count: 97, Neg. LLF: 80.16017106104339
Iteration: 9, Func. Count: 108, Neg. LLF: 80.15207133214042
Iteration: 10, Func. Count: 119, Neg. LLF: 80.14855504924115
Iteration: 11, Func. Count: 130, Neg. LLF: 80.14721511631691
Iteration: 12, Func. Count: 141, Neg. LLF: 80.14700386971857
Iteration: 13, Func. Count: 152, Neg. LLF: 80.14700196340111
Iteration: 14, Func. Count: 162, Neg. LLF: 80.14700196339096
Optimization terminated successfully (Exit mode 0)
Current function value: 80.14700196340111
Iterations: 14
Function evaluations: 162
Gradient evaluations: 14
Iteration: 1, Func. Count: 13, Neg. LLF: 24483696.22227869
Iteration: 2, Func. Count: 27, Neg. LLF: 82.82041120909376
Iteration: 3, Func. Count: 40, Neg. LLF: 81.22613256794054
Iteration: 4, Func. Count: 53, Neg. LLF: 80.58454322453578
Iteration: 5, Func. Count: 66, Neg. LLF: 80.57670247954987
Iteration: 6, Func. Count: 79, Neg. LLF: 80.16811801089719
Iteration: 7, Func. Count: 91, Neg. LLF: 80.15757041321926
Iteration: 8, Func. Count: 103, Neg. LLF: 80.15656294912677
Iteration: 9, Func. Count: 115, Neg. LLF: 80.15578081136024
Iteration: 10, Func. Count: 127, Neg. LLF: 80.153539138256
Iteration: 11, Func. Count: 139, Neg. LLF: 80.15121432271742
Iteration: 12, Func. Count: 151, Neg. LLF: 80.14700599922608
Iteration: 13, Func. Count: 163, Neg. LLF: 80.14700676328081
Iteration: 14, Func. Count: 176, Neg. LLF: 80.14700222394178
Iteration: 15, Func. Count: 187, Neg. LLF: 80.14700222504604
Optimization terminated successfully (Exit mode 0)
Current function value: 80.14700222394178
Iterations: 15
Function evaluations: 187
Gradient evaluations: 15
Iteration: 1, Func. Count: 14, Neg. LLF: 24689499.21784511
Iteration: 2, Func. Count: 29, Neg. LLF: 130.8847827744286
Iteration: 3, Func. Count: 44, Neg. LLF: 123.97682359382262
Iteration: 4, Func. Count: 59, Neg. LLF: 80.1315645285292
Iteration: 5, Func. Count: 72, Neg. LLF: 80.11564452613601
Iteration: 6, Func. Count: 86, Neg. LLF: 81.02583444395478
Iteration: 7, Func. Count: 101, Neg. LLF: 79.85504026089933
Iteration: 8, Func. Count: 114, Neg. LLF: 79.88025887822259
Iteration: 9, Func. Count: 128, Neg. LLF: 79.80827944122929
Iteration: 10, Func. Count: 141, Neg. LLF: 79.78263636425542
Iteration: 11, Func. Count: 154, Neg. LLF: 79.7213981055937
Iteration: 12, Func. Count: 167, Neg. LLF: 79.62258956656996
Iteration: 13, Func. Count: 180, Neg. LLF: 79.58919471501287
Iteration: 14, Func. Count: 193, Neg. LLF: 79.5863596254577
Iteration: 15, Func. Count: 206, Neg. LLF: 79.5806561457867
Iteration: 16, Func. Count: 219, Neg. LLF: 79.57934515545425
Iteration: 17, Func. Count: 232, Neg. LLF: 79.57513945574397
Iteration: 18, Func. Count: 245, Neg. LLF: 79.57117629911042
Iteration: 19, Func. Count: 258, Neg. LLF: 79.56698083438057
Iteration: 20, Func. Count: 271, Neg. LLF: 79.5653834760119
Iteration: 21, Func. Count: 284, Neg. LLF: 79.56516211543007
Iteration: 22, Func. Count: 297, Neg. LLF: 79.56489065813754
Iteration: 23, Func. Count: 310, Neg. LLF: 79.56468184766247
Iteration: 24, Func. Count: 323, Neg. LLF: 79.56461806393324
Iteration: 25, Func. Count: 336, Neg. LLF: 79.56461181580651
Iteration: 26, Func. Count: 348, Neg. LLF: 79.56461181576691
Optimization terminated successfully (Exit mode 0)
Current function value: 79.56461181580651
Iterations: 26
Function evaluations: 348
Gradient evaluations: 26
Iteration: 1, Func. Count: 15, Neg. LLF: 24802798.439276494
Iteration: 2, Func. Count: 31, Neg. LLF: 105.19358349616529
Iteration: 3, Func. Count: 47, Neg. LLF: 116.58558049603042
Iteration: 4, Func. Count: 63, Neg. LLF: 80.19042456532563
Iteration: 5, Func. Count: 77, Neg. LLF: 79.86979983718732
Iteration: 6, Func. Count: 91, Neg. LLF: 80.63278417036926
Iteration: 7, Func. Count: 106, Neg. LLF: 79.7205492093957
Iteration: 8, Func. Count: 120, Neg. LLF: 79.61770419398309
Iteration: 9, Func. Count: 134, Neg. LLF: 79.59374880143294
Iteration: 10, Func. Count: 148, Neg. LLF: 79.584695506843
Iteration: 11, Func. Count: 162, Neg. LLF: 79.58065344814558
Iteration: 12, Func. Count: 176, Neg. LLF: 79.57424516965081
Iteration: 13, Func. Count: 190, Neg. LLF: 79.57114253767138
Iteration: 14, Func. Count: 204, Neg. LLF: 79.56997451420493
Iteration: 15, Func. Count: 218, Neg. LLF: 79.56875490534533
Iteration: 16, Func. Count: 232, Neg. LLF: 79.56692028208565
Iteration: 17, Func. Count: 246, Neg. LLF: 79.565278956326
Iteration: 18, Func. Count: 260, Neg. LLF: 79.5646749301455
Iteration: 19, Func. Count: 274, Neg. LLF: 79.56461498807688
Iteration: 20, Func. Count: 288, Neg. LLF: 79.56461165703962
Iteration: 21, Func. Count: 301, Neg. LLF: 79.56461169406818
Optimization terminated successfully (Exit mode 0)
Current function value: 79.56461165703962
Iterations: 21
Function evaluations: 301
Gradient evaluations: 21
Iteration: 1, Func. Count: 12, Neg. LLF: 117.60619651858322
Iteration: 2, Func. Count: 27, Neg. LLF: 6094558.108372202
Iteration: 3, Func. Count: 39, Neg. LLF: 6955656.154808583
Iteration: 4, Func. Count: 51, Neg. LLF: 90.66134794205784
Iteration: 5, Func. Count: 63, Neg. LLF: 79.76775096403173
Iteration: 6, Func. Count: 74, Neg. LLF: 80.04946066236607
Iteration: 7, Func. Count: 86, Neg. LLF: 79.75868933835102
Iteration: 8, Func. Count: 97, Neg. LLF: 79.75413160676064
Iteration: 9, Func. Count: 108, Neg. LLF: 79.74991885714239
Iteration: 10, Func. Count: 119, Neg. LLF: 79.74787314765574
Iteration: 11, Func. Count: 130, Neg. LLF: 79.74631294941656
Iteration: 12, Func. Count: 141, Neg. LLF: 79.74570375086908
Iteration: 13, Func. Count: 152, Neg. LLF: 79.74553293964499
Iteration: 14, Func. Count: 163, Neg. LLF: 79.74550677866442
Iteration: 15, Func. Count: 174, Neg. LLF: 79.74550540273373
Iteration: 16, Func. Count: 185, Neg. LLF: 79.74550425061607
Iteration: 17, Func. Count: 196, Neg. LLF: 79.74550336504527
Optimization terminated successfully (Exit mode 0)
Current function value: 79.74550336504527
Iterations: 17
Function evaluations: 196
Gradient evaluations: 17
Iteration: 1, Func. Count: 13, Neg. LLF: 23954145.958619904
Iteration: 2, Func. Count: 27, Neg. LLF: 81.48561501606457
Iteration: 3, Func. Count: 40, Neg. LLF: 80.64861420900651
Iteration: 4, Func. Count: 53, Neg. LLF: 81.79836297720183
Iteration: 5, Func. Count: 66, Neg. LLF: 80.1640978711148
Iteration: 6, Func. Count: 78, Neg. LLF: 80.27493625020328
Iteration: 7, Func. Count: 91, Neg. LLF: 80.22669514733965
Iteration: 8, Func. Count: 104, Neg. LLF: 80.14700199107591
Iteration: 9, Func. Count: 115, Neg. LLF: 80.14700199082306
Optimization terminated successfully (Exit mode 0)
Current function value: 80.14700199107591
Iterations: 9
Function evaluations: 115
Gradient evaluations: 9
Iteration: 1, Func. Count: 14, Neg. LLF: 24319853.488793746
Iteration: 2, Func. Count: 29, Neg. LLF: 82.89121113481228
Iteration: 3, Func. Count: 43, Neg. LLF: 81.24421311723393
Iteration: 4, Func. Count: 57, Neg. LLF: 80.6435109782498
Iteration: 5, Func. Count: 71, Neg. LLF: 80.31420154401457
Iteration: 6, Func. Count: 84, Neg. LLF: 80.16375811345503
Iteration: 7, Func. Count: 97, Neg. LLF: 80.17508643241419
Iteration: 8, Func. Count: 111, Neg. LLF: 80.15538054379114
Iteration: 9, Func. Count: 124, Neg. LLF: 80.15512161767641
Iteration: 10, Func. Count: 137, Neg. LLF: 80.1549927068988
Iteration: 11, Func. Count: 150, Neg. LLF: 80.15426217211463
Iteration: 12, Func. Count: 163, Neg. LLF: 80.15317672094335
Iteration: 13, Func. Count: 176, Neg. LLF: 80.15104854180007
Iteration: 14, Func. Count: 189, Neg. LLF: 80.14716818301964
Iteration: 15, Func. Count: 202, Neg. LLF: 80.1470821483202
Iteration: 16, Func. Count: 215, Neg. LLF: 80.14700769969501
Iteration: 17, Func. Count: 228, Neg. LLF: 80.14700199635038
Iteration: 18, Func. Count: 240, Neg. LLF: 80.14700199663937
Optimization terminated successfully (Exit mode 0)
Current function value: 80.14700199635038
Iterations: 18
Function evaluations: 240
Gradient evaluations: 18
Iteration: 1, Func. Count: 15, Neg. LLF: 24510201.41075172
Iteration: 2, Func. Count: 31, Neg. LLF: 131.34191195968293
Iteration: 3, Func. Count: 47, Neg. LLF: 126.60978135945349
Iteration: 4, Func. Count: 63, Neg. LLF: 80.12806132513114
Iteration: 5, Func. Count: 77, Neg. LLF: 80.18668683310125
Iteration: 6, Func. Count: 92, Neg. LLF: 81.06012980906326
Iteration: 7, Func. Count: 108, Neg. LLF: 79.85965011337055
Iteration: 8, Func. Count: 122, Neg. LLF: 79.83105864194556
Iteration: 9, Func. Count: 136, Neg. LLF: 79.80784906995646
Iteration: 10, Func. Count: 150, Neg. LLF: 79.79618124456832
Iteration: 11, Func. Count: 164, Neg. LLF: 79.75929692607748
Iteration: 12, Func. Count: 178, Neg. LLF: 79.64130611502212
Iteration: 13, Func. Count: 192, Neg. LLF: 79.6121143757522
Iteration: 14, Func. Count: 206, Neg. LLF: 79.58947327415152
Iteration: 15, Func. Count: 220, Neg. LLF: 79.58714281298006
Iteration: 16, Func. Count: 234, Neg. LLF: 79.57939121401644
Iteration: 17, Func. Count: 248, Neg. LLF: 79.57701466914642
Iteration: 18, Func. Count: 262, Neg. LLF: 79.57526375703507
Iteration: 19, Func. Count: 276, Neg. LLF: 79.57182488856265
Iteration: 20, Func. Count: 290, Neg. LLF: 79.56791321915955
Iteration: 21, Func. Count: 304, Neg. LLF: 79.56538419405618
Iteration: 22, Func. Count: 318, Neg. LLF: 79.56470560260412
Iteration: 23, Func. Count: 332, Neg. LLF: 79.56461591926394
Iteration: 24, Func. Count: 346, Neg. LLF: 79.5646116658045
Iteration: 25, Func. Count: 359, Neg. LLF: 79.56461166584307
Optimization terminated successfully (Exit mode 0)
Current function value: 79.5646116658045
Iterations: 25
Function evaluations: 359
Gradient evaluations: 25
Iteration: 1, Func. Count: 16, Neg. LLF: 24605927.040211957
Iteration: 2, Func. Count: 33, Neg. LLF: 105.4340505548399
Iteration: 3, Func. Count: 50, Neg. LLF: 116.43538349551488
Iteration: 4, Func. Count: 67, Neg. LLF: 80.24952261770818
Iteration: 5, Func. Count: 82, Neg. LLF: 79.87710731326712
Iteration: 6, Func. Count: 97, Neg. LLF: 80.21374983622167
Iteration: 7, Func. Count: 113, Neg. LLF: 79.76215226939905
Iteration: 8, Func. Count: 128, Neg. LLF: 79.74419483287491
Iteration: 9, Func. Count: 144, Neg. LLF: 79.6368267297104
Iteration: 10, Func. Count: 159, Neg. LLF: 79.60461675649199
Iteration: 11, Func. Count: 174, Neg. LLF: 79.5804199290674
Iteration: 12, Func. Count: 189, Neg. LLF: 79.57231947385803
Iteration: 13, Func. Count: 204, Neg. LLF: 79.57071586500145
Iteration: 14, Func. Count: 219, Neg. LLF: 79.56985288487914
Iteration: 15, Func. Count: 234, Neg. LLF: 79.56870334878315
Iteration: 16, Func. Count: 249, Neg. LLF: 79.5670976833209
Iteration: 17, Func. Count: 264, Neg. LLF: 79.56565930093348
Iteration: 18, Func. Count: 279, Neg. LLF: 79.56494747668964
Iteration: 19, Func. Count: 294, Neg. LLF: 79.56472905997477
Iteration: 20, Func. Count: 309, Neg. LLF: 79.56463117493014
Iteration: 21, Func. Count: 324, Neg. LLF: 79.56461308239997
Iteration: 22, Func. Count: 339, Neg. LLF: 79.5646116194617
Iteration: 23, Func. Count: 353, Neg. LLF: 79.56461165643582
Optimization terminated successfully (Exit mode 0)
Current function value: 79.5646116194617
Iterations: 23
Function evaluations: 353
Gradient evaluations: 23
Iteration: 1, Func. Count: 5, Neg. LLF: 116.69245694792075
Iteration: 2, Func. Count: 12, Neg. LLF: 85.80903588544749
Iteration: 3, Func. Count: 17, Neg. LLF: 81.27055892440845
Iteration: 4, Func. Count: 21, Neg. LLF: 83.461849395944
Iteration: 5, Func. Count: 26, Neg. LLF: 80.85109925604087
Iteration: 6, Func. Count: 30, Neg. LLF: 80.83420558552763
Iteration: 7, Func. Count: 34, Neg. LLF: 80.83381805676575
Iteration: 8, Func. Count: 38, Neg. LLF: 80.83381055020682
Iteration: 9, Func. Count: 42, Neg. LLF: 80.83380838556347
Iteration: 10, Func. Count: 45, Neg. LLF: 80.83380849028462
Optimization terminated successfully (Exit mode 0)
Current function value: 80.83380838556347
Iterations: 10
Function evaluations: 45
Gradient evaluations: 10
Iteration: 1, Func. Count: 5, Neg. LLF: 148.85570970145727
Iteration: 2, Func. Count: 13, Neg. LLF: 488.50109729203285
Iteration: 3, Func. Count: 19, Neg. LLF: 75.47326766485808
Iteration: 4, Func. Count: 23, Neg. LLF: 75.46828112522736
Iteration: 5, Func. Count: 27, Neg. LLF: 75.463406551866
Iteration: 6, Func. Count: 31, Neg. LLF: 75.46312584236843
Iteration: 7, Func. Count: 35, Neg. LLF: 75.46303974827974
Iteration: 8, Func. Count: 38, Neg. LLF: 75.46303984720481
Optimization terminated successfully (Exit mode 0)
Current function value: 75.46303974827974
Iterations: 8
Function evaluations: 38
Gradient evaluations: 8
Iteration: 1, Func. Count: 6, Neg. LLF: 25765695.101809885
Iteration: 2, Func. Count: 14, Neg. LLF: 76.05267767988117
Iteration: 3, Func. Count: 20, Neg. LLF: 75.18302616073773
Iteration: 4, Func. Count: 25, Neg. LLF: 75.40395828315334
Iteration: 5, Func. Count: 31, Neg. LLF: 75.19058625696084
Iteration: 6, Func. Count: 37, Neg. LLF: 75.01815111850932
Iteration: 7, Func. Count: 42, Neg. LLF: 75.01815044770409
Optimization terminated successfully (Exit mode 0)
Current function value: 75.01815044770409
Iterations: 7
Function evaluations: 42
Gradient evaluations: 7
Iteration: 1, Func. Count: 7, Neg. LLF: 25265664.239940733
Iteration: 2, Func. Count: 15, Neg. LLF: 75.39229518583602
Iteration: 3, Func. Count: 22, Neg. LLF: 75.07861358228521
Iteration: 4, Func. Count: 28, Neg. LLF: 76.63482104503788
Iteration: 5, Func. Count: 35, Neg. LLF: 75.03227504635605
Iteration: 6, Func. Count: 41, Neg. LLF: 75.02538704213657
Iteration: 7, Func. Count: 47, Neg. LLF: 75.0242146700751
Iteration: 8, Func. Count: 53, Neg. LLF: 75.02406871917104
Iteration: 9, Func. Count: 59, Neg. LLF: 75.02401080002748
Iteration: 10, Func. Count: 65, Neg. LLF: 75.02362417924995
Iteration: 11, Func. Count: 71, Neg. LLF: 75.0219251588133
Iteration: 12, Func. Count: 77, Neg. LLF: 75.01975096369793
Iteration: 13, Func. Count: 83, Neg. LLF: 75.0187397866695
Iteration: 14, Func. Count: 89, Neg. LLF: 75.01815120151426
Iteration: 15, Func. Count: 95, Neg. LLF: 75.01815051806713
Optimization terminated successfully (Exit mode 0)
Current function value: 75.01815051806713
Iterations: 15
Function evaluations: 95
Gradient evaluations: 15
Iteration: 1, Func. Count: 8, Neg. LLF: 25120487.885447163
Iteration: 2, Func. Count: 17, Neg. LLF: 75.24761980781071
Iteration: 3, Func. Count: 24, Neg. LLF: 75.13733886430607
Iteration: 4, Func. Count: 31, Neg. LLF: 75.6775555680813
Iteration: 5, Func. Count: 41, Neg. LLF: 75.02875923639985
Iteration: 6, Func. Count: 48, Neg. LLF: 75.02860235888696
Iteration: 7, Func. Count: 55, Neg. LLF: 75.02804149351711
Iteration: 8, Func. Count: 62, Neg. LLF: 75.02771298723125
Iteration: 9, Func. Count: 69, Neg. LLF: 75.02745767379362
Iteration: 10, Func. Count: 76, Neg. LLF: 75.02738005191812
Iteration: 11, Func. Count: 83, Neg. LLF: 75.02722348292566
Iteration: 12, Func. Count: 90, Neg. LLF: 75.02530381557325
Iteration: 13, Func. Count: 97, Neg. LLF: 75.02515242469656
Iteration: 14, Func. Count: 104, Neg. LLF: 75.0250633363603
Iteration: 15, Func. Count: 111, Neg. LLF: 75.02503225594715
Iteration: 16, Func. Count: 118, Neg. LLF: 75.0247946575337
Iteration: 17, Func. Count: 125, Neg. LLF: 75.02310044738131
Iteration: 18, Func. Count: 132, Neg. LLF: 75.01895329470365
Iteration: 19, Func. Count: 139, Neg. LLF: 75.01842020939424
Iteration: 20, Func. Count: 146, Neg. LLF: 75.01815206914789
Iteration: 21, Func. Count: 153, Neg. LLF: 3043302.142679881
Iteration: 22, Func. Count: 165, Neg. LLF: 75.01819471875582
Optimization terminated successfully (Exit mode 0)
Current function value: 75.01815045847084
Iterations: 23
Function evaluations: 167
Gradient evaluations: 22
Iteration: 1, Func. Count: 9, Neg. LLF: 24874415.153394513
Iteration: 2, Func. Count: 19, Neg. LLF: 75.1312594723678
Iteration: 3, Func. Count: 27, Neg. LLF: 75.1549935767847
Iteration: 4, Func. Count: 36, Neg. LLF: 75.3610383837025
Iteration: 5, Func. Count: 45, Neg. LLF: 75.03510651245065
Iteration: 6, Func. Count: 53, Neg. LLF: 75.03231995715404
Iteration: 7, Func. Count: 61, Neg. LLF: 75.03048335440846
Iteration: 8, Func. Count: 69, Neg. LLF: 75.02837611906745
Iteration: 9, Func. Count: 77, Neg. LLF: 75.02194898450504
Iteration: 10, Func. Count: 85, Neg. LLF: 75.01978312263958
Iteration: 11, Func. Count: 93, Neg. LLF: 75.01979512633471
Iteration: 12, Func. Count: 102, Neg. LLF: 75.01959520795563
Iteration: 13, Func. Count: 110, Neg. LLF: 75.01959100657224
Iteration: 14, Func. Count: 117, Neg. LLF: 75.01959100707438
Optimization terminated successfully (Exit mode 0)
Current function value: 75.01959100657224
Iterations: 14
Function evaluations: 117
Gradient evaluations: 14
Iteration: 1, Func. Count: 6, Neg. LLF: 118.33284366816092
Iteration: 2, Func. Count: 15, Neg. LLF: 87.69758915936667
Iteration: 3, Func. Count: 22, Neg. LLF: 75.18157286253212
Iteration: 4, Func. Count: 27, Neg. LLF: 75.10383826705188
Iteration: 5, Func. Count: 32, Neg. LLF: 75.0570419862391
Iteration: 6, Func. Count: 37, Neg. LLF: 75.05327266042275
Iteration: 7, Func. Count: 42, Neg. LLF: 75.05131801399497
Iteration: 8, Func. Count: 47, Neg. LLF: 75.05125481920288
Iteration: 9, Func. Count: 52, Neg. LLF: 75.05125404818081
Optimization terminated successfully (Exit mode 0)
Current function value: 75.05125404818081
Iterations: 9
Function evaluations: 52
Gradient evaluations: 9
Iteration: 1, Func. Count: 7, Neg. LLF: 25929392.977797154
Iteration: 2, Func. Count: 16, Neg. LLF: 76.11997275900514
Iteration: 3, Func. Count: 23, Neg. LLF: 75.18403738531329
Iteration: 4, Func. Count: 29, Neg. LLF: 75.12462792980234
Iteration: 5, Func. Count: 35, Neg. LLF: 75.15847139563412
Iteration: 6, Func. Count: 42, Neg. LLF: 75.0196385290229
Iteration: 7, Func. Count: 48, Neg. LLF: 75.01815202978584
Iteration: 8, Func. Count: 54, Neg. LLF: 75.01815044770784
Iteration: 9, Func. Count: 59, Neg. LLF: 75.01815044773181
Optimization terminated successfully (Exit mode 0)
Current function value: 75.01815044770784
Iterations: 9
Function evaluations: 59
Gradient evaluations: 9
Iteration: 1, Func. Count: 8, Neg. LLF: 25785896.92177713
Iteration: 2, Func. Count: 17, Neg. LLF: 75.61869757499097
Iteration: 3, Func. Count: 25, Neg. LLF: 75.09615509332379
Iteration: 4, Func. Count: 32, Neg. LLF: 77.64176123307598
Iteration: 5, Func. Count: 40, Neg. LLF: 75.03339578212709
Iteration: 6, Func. Count: 47, Neg. LLF: 75.02866154737171
Iteration: 7, Func. Count: 54, Neg. LLF: 75.025913353824
Iteration: 8, Func. Count: 61, Neg. LLF: 75.02532783844141
Iteration: 9, Func. Count: 68, Neg. LLF: 75.02526906010944
Iteration: 10, Func. Count: 75, Neg. LLF: 75.02523165582119
Iteration: 11, Func. Count: 82, Neg. LLF: 75.0250246841497
Iteration: 12, Func. Count: 89, Neg. LLF: 75.0246707578839
Iteration: 13, Func. Count: 96, Neg. LLF: 75.02411965234391
Iteration: 14, Func. Count: 103, Neg. LLF: 75.02079706143032
Iteration: 15, Func. Count: 110, Neg. LLF: 75.01829873331828
Iteration: 16, Func. Count: 117, Neg. LLF: 75.01820938312832
Iteration: 17, Func. Count: 124, Neg. LLF: 75.01815050936212
Iteration: 18, Func. Count: 130, Neg. LLF: 75.01815050992222
Optimization terminated successfully (Exit mode 0)
Current function value: 75.01815050936212
Iterations: 18
Function evaluations: 130
Gradient evaluations: 18
Iteration: 1, Func. Count: 9, Neg. LLF: 25698944.172337018
Iteration: 2, Func. Count: 19, Neg. LLF: 173.31920934582072
Iteration: 3, Func. Count: 29, Neg. LLF: 82.83726790950564
Iteration: 4, Func. Count: 39, Neg. LLF: 74.64252427297451
Iteration: 5, Func. Count: 47, Neg. LLF: 74.8655841636646
Iteration: 6, Func. Count: 56, Neg. LLF: 74.8188620234674
Iteration: 7, Func. Count: 65, Neg. LLF: 74.53872968472625
Iteration: 8, Func. Count: 73, Neg. LLF: 74.52000149434065
Iteration: 9, Func. Count: 81, Neg. LLF: 74.51767402030012
Iteration: 10, Func. Count: 89, Neg. LLF: 74.517228784395
Iteration: 11, Func. Count: 97, Neg. LLF: 74.51721604248297
Iteration: 12, Func. Count: 105, Neg. LLF: 74.51721549215007
Optimization terminated successfully (Exit mode 0)
Current function value: 74.51721549215007
Iterations: 12
Function evaluations: 105
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 25629044.239482183
Iteration: 2, Func. Count: 21, Neg. LLF: 91.36484039412072
Iteration: 3, Func. Count: 32, Neg. LLF: 78.90000005190805
Iteration: 4, Func. Count: 43, Neg. LLF: 75.00899579546021
Iteration: 5, Func. Count: 52, Neg. LLF: 74.94299697333089
Iteration: 6, Func. Count: 61, Neg. LLF: 74.98058190201645
Iteration: 7, Func. Count: 71, Neg. LLF: 74.9130344501327
Iteration: 8, Func. Count: 81, Neg. LLF: 74.65829469604837
Iteration: 9, Func. Count: 90, Neg. LLF: 74.59632387546368
Iteration: 10, Func. Count: 99, Neg. LLF: 74.53201484799543
Iteration: 11, Func. Count: 108, Neg. LLF: 74.52299669542576
Iteration: 12, Func. Count: 117, Neg. LLF: 74.52119853879782
Iteration: 13, Func. Count: 126, Neg. LLF: 74.51954732207173
Iteration: 14, Func. Count: 135, Neg. LLF: 74.51829175665196
Iteration: 15, Func. Count: 144, Neg. LLF: 74.51735114965575
Iteration: 16, Func. Count: 153, Neg. LLF: 74.5172267266573
Iteration: 17, Func. Count: 162, Neg. LLF: 74.51722032540515
Iteration: 18, Func. Count: 171, Neg. LLF: 74.57999299088274
Optimization terminated successfully (Exit mode 0)
Current function value: 74.51722029193012
Iterations: 19
Function evaluations: 174
Gradient evaluations: 18
Iteration: 1, Func. Count: 7, Neg. LLF: 114.28103621838949
Iteration: 2, Func. Count: 17, Neg. LLF: 84.40171371593503
Iteration: 3, Func. Count: 24, Neg. LLF: 77.79682173614269
Iteration: 4, Func. Count: 31, Neg. LLF: 75.12242089651569
Iteration: 5, Func. Count: 37, Neg. LLF: 75.06646647961341
Iteration: 6, Func. Count: 43, Neg. LLF: 75.05193787657642
Iteration: 7, Func. Count: 49, Neg. LLF: 75.0512942494711
Iteration: 8, Func. Count: 55, Neg. LLF: 75.05126152815028
Iteration: 9, Func. Count: 61, Neg. LLF: 75.05125416389102
Iteration: 10, Func. Count: 66, Neg. LLF: 75.05125420804796
Optimization terminated successfully (Exit mode 0)
Current function value: 75.05125416389102
Iterations: 10
Function evaluations: 66
Gradient evaluations: 10
Iteration: 1, Func. Count: 8, Neg. LLF: 25293130.544702724
Iteration: 2, Func. Count: 18, Neg. LLF: 75.69650852520402
Iteration: 3, Func. Count: 26, Neg. LLF: 75.18888622292214
Iteration: 4, Func. Count: 33, Neg. LLF: 78.69396792349342
Iteration: 5, Func. Count: 41, Neg. LLF: 75.0588304384995
Iteration: 6, Func. Count: 48, Neg. LLF: 75.01834758806282
Iteration: 7, Func. Count: 55, Neg. LLF: 75.01815080170329
Iteration: 8, Func. Count: 61, Neg. LLF: 75.01815079987131
Optimization terminated successfully (Exit mode 0)
Current function value: 75.01815080170329
Iterations: 8
Function evaluations: 61
Gradient evaluations: 8
Iteration: 1, Func. Count: 9, Neg. LLF: 25386632.062990915
Iteration: 2, Func. Count: 19, Neg. LLF: 75.41886412705904
Iteration: 3, Func. Count: 28, Neg. LLF: 75.08244824754837
Iteration: 4, Func. Count: 36, Neg. LLF: 76.97207839712893
Iteration: 5, Func. Count: 45, Neg. LLF: 75.02588445654615
Iteration: 6, Func. Count: 53, Neg. LLF: 75.02508662529497
Iteration: 7, Func. Count: 61, Neg. LLF: 75.02487390924753
Iteration: 8, Func. Count: 69, Neg. LLF: 75.02474745917235
Iteration: 9, Func. Count: 77, Neg. LLF: 75.02463401179848
Iteration: 10, Func. Count: 85, Neg. LLF: 75.02416459728595
Iteration: 11, Func. Count: 93, Neg. LLF: 75.02339699507297
Iteration: 12, Func. Count: 101, Neg. LLF: 75.02065315964411
Iteration: 13, Func. Count: 109, Neg. LLF: 75.0196239336625
Iteration: 14, Func. Count: 117, Neg. LLF: 75.01826611620835
Iteration: 15, Func. Count: 125, Neg. LLF: 75.01815049047256
Iteration: 16, Func. Count: 132, Neg. LLF: 75.01815049043752
Optimization terminated successfully (Exit mode 0)
Current function value: 75.01815049047256
Iterations: 16
Function evaluations: 132
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 25468486.944686685
Iteration: 2, Func. Count: 21, Neg. LLF: 202.8965863538533
Iteration: 3, Func. Count: 32, Neg. LLF: 84.22698327489107
Iteration: 4, Func. Count: 43, Neg. LLF: 74.72129588204938
Iteration: 5, Func. Count: 52, Neg. LLF: 74.86146616300864
Iteration: 6, Func. Count: 62, Neg. LLF: 74.9040856512968
Iteration: 7, Func. Count: 72, Neg. LLF: 74.57735291748402
Iteration: 8, Func. Count: 82, Neg. LLF: 74.52399648100067
Iteration: 9, Func. Count: 91, Neg. LLF: 74.5176304882543
Iteration: 10, Func. Count: 100, Neg. LLF: 74.51726526605027
Iteration: 11, Func. Count: 109, Neg. LLF: 74.51721628327994
Iteration: 12, Func. Count: 118, Neg. LLF: 74.5172155063803
Optimization terminated successfully (Exit mode 0)
Current function value: 74.5172155063803
Iterations: 12
Function evaluations: 118
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 25509530.69529264
Iteration: 2, Func. Count: 23, Neg. LLF: 101.89942485624104
Iteration: 3, Func. Count: 35, Neg. LLF: 79.83270237718507
Iteration: 4, Func. Count: 47, Neg. LLF: 75.02818270034133
Iteration: 5, Func. Count: 57, Neg. LLF: 74.946329393044
Iteration: 6, Func. Count: 67, Neg. LLF: 74.91391543508277
Iteration: 7, Func. Count: 77, Neg. LLF: 74.69341986870035
Iteration: 8, Func. Count: 87, Neg. LLF: 74.59467663916531
Iteration: 9, Func. Count: 97, Neg. LLF: 74.54698103197073
Iteration: 10, Func. Count: 107, Neg. LLF: 74.53192068506878
Iteration: 11, Func. Count: 117, Neg. LLF: 74.52010997733498
Iteration: 12, Func. Count: 127, Neg. LLF: 74.5179510775849
Iteration: 13, Func. Count: 137, Neg. LLF: 74.51732653503753
Iteration: 14, Func. Count: 147, Neg. LLF: 74.51722126999394
Iteration: 15, Func. Count: 157, Neg. LLF: 74.51938029714505
Optimization terminated successfully (Exit mode 0)
Current function value: 74.51722101982973
Iterations: 16
Function evaluations: 159
Gradient evaluations: 15
Iteration: 1, Func. Count: 8, Neg. LLF: 118.48052262992702
Iteration: 2, Func. Count: 19, Neg. LLF: 330.76181550643514
Iteration: 3, Func. Count: 28, Neg. LLF: 79.49518304736446
Iteration: 4, Func. Count: 36, Neg. LLF: 75.12776986015184
Iteration: 5, Func. Count: 43, Neg. LLF: 75.09994700601601
Iteration: 6, Func. Count: 50, Neg. LLF: 75.05805167881296
Iteration: 7, Func. Count: 57, Neg. LLF: 75.05268151305123
Iteration: 8, Func. Count: 64, Neg. LLF: 75.0512981949993
Iteration: 9, Func. Count: 71, Neg. LLF: 75.05125802120806
Iteration: 10, Func. Count: 78, Neg. LLF: 75.05125405058156
Iteration: 11, Func. Count: 84, Neg. LLF: 75.05125415735166
Optimization terminated successfully (Exit mode 0)
Current function value: 75.05125405058156
Iterations: 11
Function evaluations: 84
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 24899038.741232652
Iteration: 2, Func. Count: 20, Neg. LLF: 75.47686800448255
Iteration: 3, Func. Count: 29, Neg. LLF: 75.19677757112893
Iteration: 4, Func. Count: 37, Neg. LLF: 208.64467072790953
Iteration: 5, Func. Count: 47, Neg. LLF: 75.01865749721229
Iteration: 6, Func. Count: 55, Neg. LLF: 75.01815268390042
Iteration: 7, Func. Count: 63, Neg. LLF: 75.01815044831372
Iteration: 8, Func. Count: 70, Neg. LLF: 75.0181504483211
Optimization terminated successfully (Exit mode 0)
Current function value: 75.01815044831372
Iterations: 8
Function evaluations: 70
Gradient evaluations: 8
Iteration: 1, Func. Count: 10, Neg. LLF: 25094992.530089423
Iteration: 2, Func. Count: 21, Neg. LLF: 75.31525537508057
Iteration: 3, Func. Count: 30, Neg. LLF: 75.05289333090143
Iteration: 4, Func. Count: 39, Neg. LLF: 75.86907084506589
Iteration: 5, Func. Count: 49, Neg. LLF: 75.0246425855179
Iteration: 6, Func. Count: 58, Neg. LLF: 75.02459341496485
Iteration: 7, Func. Count: 67, Neg. LLF: 75.02429935618629
Iteration: 8, Func. Count: 76, Neg. LLF: 75.02368728488793
Iteration: 9, Func. Count: 85, Neg. LLF: 75.02235939317085
Iteration: 10, Func. Count: 94, Neg. LLF: 75.01985767730463
Iteration: 11, Func. Count: 103, Neg. LLF: 75.01938236425083
Iteration: 12, Func. Count: 112, Neg. LLF: 75.01825360429926
Iteration: 13, Func. Count: 121, Neg. LLF: 75.01815416670681
Iteration: 14, Func. Count: 130, Neg. LLF: 75.01815071432421
Iteration: 15, Func. Count: 138, Neg. LLF: 75.01815071611904
Optimization terminated successfully (Exit mode 0)
Current function value: 75.01815071432421
Iterations: 15
Function evaluations: 138
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 25211935.37381823
Iteration: 2, Func. Count: 23, Neg. LLF: 217.22780697739347
Iteration: 3, Func. Count: 35, Neg. LLF: 84.74472355176654
Iteration: 4, Func. Count: 47, Neg. LLF: 74.67494555915245
Iteration: 5, Func. Count: 57, Neg. LLF: 74.86213103620959
Iteration: 6, Func. Count: 68, Neg. LLF: 74.5334799608875
Iteration: 7, Func. Count: 78, Neg. LLF: 74.58030299751987
Iteration: 8, Func. Count: 89, Neg. LLF: 74.52338363581532
Iteration: 9, Func. Count: 99, Neg. LLF: 74.5173789752088
Iteration: 10, Func. Count: 109, Neg. LLF: 74.51723506913872
Iteration: 11, Func. Count: 119, Neg. LLF: 74.51721550667682
Iteration: 12, Func. Count: 128, Neg. LLF: 74.51721550660292
Optimization terminated successfully (Exit mode 0)
Current function value: 74.51721550667682
Iterations: 12
Function evaluations: 128
Gradient evaluations: 12
Iteration: 1, Func. Count: 12, Neg. LLF: 25211503.64368362
Iteration: 2, Func. Count: 25, Neg. LLF: 106.58726330402604
Iteration: 3, Func. Count: 38, Neg. LLF: 80.23028777971054
Iteration: 4, Func. Count: 51, Neg. LLF: 75.01467975090466
Iteration: 5, Func. Count: 62, Neg. LLF: 74.9248548551182
Iteration: 6, Func. Count: 73, Neg. LLF: 74.91054692880448
Iteration: 7, Func. Count: 85, Neg. LLF: 74.70249418297816
Iteration: 8, Func. Count: 96, Neg. LLF: 74.52986551261296
Iteration: 9, Func. Count: 107, Neg. LLF: 74.63600300965868
Iteration: 10, Func. Count: 119, Neg. LLF: 74.51767881672414
Iteration: 11, Func. Count: 130, Neg. LLF: 74.51732950978102
Iteration: 12, Func. Count: 141, Neg. LLF: 74.51723557836068
Iteration: 13, Func. Count: 152, Neg. LLF: 74.51721660116624
Iteration: 14, Func. Count: 163, Neg. LLF: 74.51721551377547
Iteration: 15, Func. Count: 173, Neg. LLF: 74.51721558165721
Optimization terminated successfully (Exit mode 0)
Current function value: 74.51721551377547
Iterations: 15
Function evaluations: 173
Gradient evaluations: 15
Iteration: 1, Func. Count: 5, Neg. LLF: 190.9355235971246
Iteration: 2, Func. Count: 12, Neg. LLF: 402.29378819285125
Iteration: 3, Func. Count: 18, Neg. LLF: 76.07111789692296
Iteration: 4, Func. Count: 22, Neg. LLF: 75.73552468059847
Iteration: 5, Func. Count: 26, Neg. LLF: 75.57238598024634
Iteration: 6, Func. Count: 30, Neg. LLF: 75.47273429361103
Iteration: 7, Func. Count: 34, Neg. LLF: 75.46342014077749
Iteration: 8, Func. Count: 38, Neg. LLF: 75.46304406927634
Iteration: 9, Func. Count: 42, Neg. LLF: 75.46303996014933
Iteration: 10, Func. Count: 45, Neg. LLF: 75.46304009670827
Optimization terminated successfully (Exit mode 0)
Current function value: 75.46303996014933
Iterations: 10
Function evaluations: 45
Gradient evaluations: 10
Iteration: 1, Func. Count: 6, Neg. LLF: 24271064.425360452
Iteration: 2, Func. Count: 14, Neg. LLF: 75.618022106099
Iteration: 3, Func. Count: 20, Neg. LLF: 75.30189509589857
Iteration: 4, Func. Count: 25, Neg. LLF: 87.168675696834
Iteration: 5, Func. Count: 31, Neg. LLF: 75.30127586761479
Iteration: 6, Func. Count: 37, Neg. LLF: 75.01819660411566
Iteration: 7, Func. Count: 42, Neg. LLF: 75.01815047721144
Iteration: 8, Func. Count: 46, Neg. LLF: 75.01815047668116
Optimization terminated successfully (Exit mode 0)
Current function value: 75.01815047721144
Iterations: 8
Function evaluations: 46
Gradient evaluations: 8
Iteration: 1, Func. Count: 7, Neg. LLF: 23944613.22000694
Iteration: 2, Func. Count: 15, Neg. LLF: 75.24839570829701
Iteration: 3, Func. Count: 21, Neg. LLF: 75.08372212271128
Iteration: 4, Func. Count: 27, Neg. LLF: 83.12699186758346
Iteration: 5, Func. Count: 35, Neg. LLF: 75.0257830967546
Iteration: 6, Func. Count: 41, Neg. LLF: 75.025112866041
Iteration: 7, Func. Count: 47, Neg. LLF: 75.02507536508014
Iteration: 8, Func. Count: 53, Neg. LLF: 75.02485880069923
Iteration: 9, Func. Count: 59, Neg. LLF: 75.02339510151499
Iteration: 10, Func. Count: 65, Neg. LLF: 75.01815395000357
Iteration: 11, Func. Count: 71, Neg. LLF: 75.0181615260859
Iteration: 12, Func. Count: 77, Neg. LLF: 75.0181504586072
Optimization terminated successfully (Exit mode 0)
Current function value: 75.01815045836973
Iterations: 12
Function evaluations: 77
Gradient evaluations: 12
Iteration: 1, Func. Count: 8, Neg. LLF: 23936840.186688993
Iteration: 2, Func. Count: 17, Neg. LLF: 75.26890296187482
Iteration: 3, Func. Count: 24, Neg. LLF: 75.41620580563826
Iteration: 4, Func. Count: 32, Neg. LLF: 78.47142473953915
Iteration: 5, Func. Count: 42, Neg. LLF: 75.02830473648422
Iteration: 6, Func. Count: 49, Neg. LLF: 75.02803643766177
Iteration: 7, Func. Count: 56, Neg. LLF: 75.0279589981108
Iteration: 8, Func. Count: 63, Neg. LLF: 75.0278214631488
Iteration: 9, Func. Count: 70, Neg. LLF: 75.02760844024101
Iteration: 10, Func. Count: 77, Neg. LLF: 75.02737157626242
Iteration: 11, Func. Count: 84, Neg. LLF: 75.02708749684436
Iteration: 12, Func. Count: 91, Neg. LLF: 75.02516901984232
Iteration: 13, Func. Count: 98, Neg. LLF: 75.02507578090804
Iteration: 14, Func. Count: 105, Neg. LLF: 75.02498968893761
Iteration: 15, Func. Count: 112, Neg. LLF: 75.02494805753844
Iteration: 16, Func. Count: 119, Neg. LLF: 75.02482809477866
Iteration: 17, Func. Count: 126, Neg. LLF: 75.0244906078787
Iteration: 18, Func. Count: 133, Neg. LLF: 75.0238489980687
Iteration: 19, Func. Count: 140, Neg. LLF: 75.0223643976081
Iteration: 20, Func. Count: 147, Neg. LLF: 75.01970860908621
Iteration: 21, Func. Count: 154, Neg. LLF: 27011735.397712454
Iteration: 22, Func. Count: 165, Neg. LLF: 81.90554586602428
Iteration: 23, Func. Count: 174, Neg. LLF: 75.01815046996589
Iteration: 24, Func. Count: 180, Neg. LLF: 75.01815047049404
Optimization terminated successfully (Exit mode 0)
Current function value: 75.01815046996589
Iterations: 25
Function evaluations: 180
Gradient evaluations: 24
Iteration: 1, Func. Count: 9, Neg. LLF: 23941865.796059452
Iteration: 2, Func. Count: 19, Neg. LLF: 75.21323699138749
Iteration: 3, Func. Count: 27, Neg. LLF: 75.1325277519062
Iteration: 4, Func. Count: 35, Neg. LLF: 75.39589406774435
Iteration: 5, Func. Count: 44, Neg. LLF: 75.0125525900216
Iteration: 6, Func. Count: 52, Neg. LLF: 75.00951109262556
Iteration: 7, Func. Count: 60, Neg. LLF: 75.00834505874097
Iteration: 8, Func. Count: 68, Neg. LLF: 75.00805162251946
Iteration: 9, Func. Count: 76, Neg. LLF: 75.00803492535735
Iteration: 10, Func. Count: 84, Neg. LLF: 75.00802934860475
Iteration: 11, Func. Count: 92, Neg. LLF: 75.00802484785824
Iteration: 12, Func. Count: 99, Neg. LLF: 75.00802484823107
Optimization terminated successfully (Exit mode 0)
Current function value: 75.00802484785824
Iterations: 12
Function evaluations: 99
Gradient evaluations: 12
Iteration: 1, Func. Count: 6, Neg. LLF: 182.58310267187517
Iteration: 2, Func. Count: 15, Neg. LLF: 303.8704867802878
Iteration: 3, Func. Count: 22, Neg. LLF: 75.48599888245771
Iteration: 4, Func. Count: 27, Neg. LLF: 75.4757814909924
Iteration: 5, Func. Count: 32, Neg. LLF: 75.46363762924825
Iteration: 6, Func. Count: 37, Neg. LLF: 75.46326249681447
Iteration: 7, Func. Count: 42, Neg. LLF: 75.46303979104745
Iteration: 8, Func. Count: 46, Neg. LLF: 75.46303988997275
Optimization terminated successfully (Exit mode 0)
Current function value: 75.46303979104745
Iterations: 8
Function evaluations: 46
Gradient evaluations: 8
Iteration: 1, Func. Count: 7, Neg. LLF: 109.34027232377109
Iteration: 2, Func. Count: 15, Neg. LLF: 76.01222434970644
Iteration: 3, Func. Count: 22, Neg. LLF: 75.47149516073819
Iteration: 4, Func. Count: 28, Neg. LLF: 75.47057700454533
Iteration: 5, Func. Count: 34, Neg. LLF: 75.46581123113928
Iteration: 6, Func. Count: 40, Neg. LLF: 75.4629768997219
Iteration: 7, Func. Count: 46, Neg. LLF: 75.46230546657354
Iteration: 8, Func. Count: 52, Neg. LLF: 75.46229747411182
Iteration: 9, Func. Count: 58, Neg. LLF: 75.46229686971083
Optimization terminated successfully (Exit mode 0)
Current function value: 75.46229686971083
Iterations: 9
Function evaluations: 58
Gradient evaluations: 9
Iteration: 1, Func. Count: 8, Neg. LLF: 25018367.328469783
Iteration: 2, Func. Count: 17, Neg. LLF: 75.41957829528204
Iteration: 3, Func. Count: 24, Neg. LLF: 75.07628795014004
Iteration: 4, Func. Count: 31, Neg. LLF: 78.27232925921439
Iteration: 5, Func. Count: 39, Neg. LLF: 75.02490316277527
Iteration: 6, Func. Count: 46, Neg. LLF: 75.02481774636891
Iteration: 7, Func. Count: 53, Neg. LLF: 75.02475321311084
Iteration: 8, Func. Count: 60, Neg. LLF: 75.02446502223347
Iteration: 9, Func. Count: 67, Neg. LLF: 75.02390200131428
Iteration: 10, Func. Count: 74, Neg. LLF: 75.0228435473173
Iteration: 11, Func. Count: 81, Neg. LLF: 75.01948932733684
Iteration: 12, Func. Count: 88, Neg. LLF: 75.01888203839948
Iteration: 13, Func. Count: 95, Neg. LLF: 75.01816130528702
Iteration: 14, Func. Count: 102, Neg. LLF: 75.01815061760365
Iteration: 15, Func. Count: 108, Neg. LLF: 75.01815061881096
Optimization terminated successfully (Exit mode 0)
Current function value: 75.01815061760365
Iterations: 15
Function evaluations: 108
Gradient evaluations: 15
Iteration: 1, Func. Count: 9, Neg. LLF: 24746789.293764576
Iteration: 2, Func. Count: 19, Neg. LLF: 75.29046416946645
Iteration: 3, Func. Count: 27, Neg. LLF: 75.37216765567139
Iteration: 4, Func. Count: 36, Neg. LLF: 75.79548153599852
Iteration: 5, Func. Count: 48, Neg. LLF: 75.02816297922833
Iteration: 6, Func. Count: 56, Neg. LLF: 75.02807196270803
Iteration: 7, Func. Count: 64, Neg. LLF: 75.02764341185039
Iteration: 8, Func. Count: 72, Neg. LLF: 75.02681204469643
Iteration: 9, Func. Count: 80, Neg. LLF: 75.02584991925056
Iteration: 10, Func. Count: 88, Neg. LLF: 75.02467305024318
Iteration: 11, Func. Count: 96, Neg. LLF: 75.02464305097445
Iteration: 12, Func. Count: 104, Neg. LLF: 75.0245016591764
Iteration: 13, Func. Count: 112, Neg. LLF: 75.02391248358609
Iteration: 14, Func. Count: 120, Neg. LLF: 75.02324471663884
Iteration: 15, Func. Count: 128, Neg. LLF: 75.02243691426195
Iteration: 16, Func. Count: 136, Neg. LLF: 75.01871160317076
Iteration: 17, Func. Count: 144, Neg. LLF: 75.0195103135891
Iteration: 18, Func. Count: 153, Neg. LLF: 75.01885513688113
Iteration: 19, Func. Count: 162, Neg. LLF: 75.01815388493583
Iteration: 20, Func. Count: 170, Neg. LLF: 2540.128543396211
Optimization terminated successfully (Exit mode 0)
Current function value: 75.01815353589794
Iterations: 21
Function evaluations: 175
Gradient evaluations: 20
Iteration: 1, Func. Count: 10, Neg. LLF: 24327395.67372387
Iteration: 2, Func. Count: 21, Neg. LLF: 75.13269364161637
Iteration: 3, Func. Count: 30, Neg. LLF: 75.12050068172648
Iteration: 4, Func. Count: 40, Neg. LLF: 77.9663668607591
Iteration: 5, Func. Count: 50, Neg. LLF: 75.02299066097004
Iteration: 6, Func. Count: 59, Neg. LLF: 75.02290349169604
Iteration: 7, Func. Count: 68, Neg. LLF: 75.01861104710828
Iteration: 8, Func. Count: 77, Neg. LLF: 75.01087340744994
Iteration: 9, Func. Count: 86, Neg. LLF: 75.01044329269668
Iteration: 10, Func. Count: 95, Neg. LLF: 75.0089865460625
Iteration: 11, Func. Count: 104, Neg. LLF: 75.00840264916667
Iteration: 12, Func. Count: 113, Neg. LLF: 75.00812804055825
Iteration: 13, Func. Count: 122, Neg. LLF: 75.00806995400504
Iteration: 14, Func. Count: 131, Neg. LLF: 75.00806848624796
Iteration: 15, Func. Count: 141, Neg. LLF: 75.00803348312611
Iteration: 16, Func. Count: 150, Neg. LLF: 739.1517198819125
Iteration: 17, Func. Count: 163, Neg. LLF: 75.01092737803003
Iteration: 18, Func. Count: 173, Neg. LLF: 75.00802449304753
Optimization terminated successfully (Exit mode 0)
Current function value: 75.00802449304611
Iterations: 19
Function evaluations: 173
Gradient evaluations: 18
Iteration: 1, Func. Count: 7, Neg. LLF: 133.91718184479615
Iteration: 2, Func. Count: 17, Neg. LLF: 277.164671156893
Iteration: 3, Func. Count: 25, Neg. LLF: 75.27932540978489
Iteration: 4, Func. Count: 31, Neg. LLF: 75.23704862117808
Iteration: 5, Func. Count: 37, Neg. LLF: 75.18606853347585
Iteration: 6, Func. Count: 43, Neg. LLF: 75.1535273745107
Iteration: 7, Func. Count: 49, Neg. LLF: 75.10351320168792
Iteration: 8, Func. Count: 55, Neg. LLF: 75.08229350045583
Iteration: 9, Func. Count: 61, Neg. LLF: 75.05253662895963
Iteration: 10, Func. Count: 67, Neg. LLF: 75.05131034317584
Iteration: 11, Func. Count: 73, Neg. LLF: 75.05125558513076
Iteration: 12, Func. Count: 79, Neg. LLF: 75.05125358060188
Iteration: 13, Func. Count: 85, Neg. LLF: 75.05128050366717
Optimization terminated successfully (Exit mode 0)
Current function value: 75.05125357624085
Iterations: 14
Function evaluations: 87
Gradient evaluations: 13
Iteration: 1, Func. Count: 8, Neg. LLF: 77.99475161210027
Iteration: 2, Func. Count: 18, Neg. LLF: 31000629.427531164
Iteration: 3, Func. Count: 27, Neg. LLF: 75.17143265092798
Iteration: 4, Func. Count: 34, Neg. LLF: 75.06426784977663
Iteration: 5, Func. Count: 41, Neg. LLF: 75.05155770500555
Iteration: 6, Func. Count: 48, Neg. LLF: 75.0512990454483
Iteration: 7, Func. Count: 55, Neg. LLF: 75.05126177940036
Iteration: 8, Func. Count: 62, Neg. LLF: 75.05125749656898
Iteration: 9, Func. Count: 69, Neg. LLF: 75.05125485997704
Iteration: 10, Func. Count: 76, Neg. LLF: 75.05125412297657
Optimization terminated successfully (Exit mode 0)
Current function value: 75.05125412297657
Iterations: 10
Function evaluations: 76
Gradient evaluations: 10
Iteration: 1, Func. Count: 9, Neg. LLF: 25516653.26865002
Iteration: 2, Func. Count: 19, Neg. LLF: 75.66922800117759
Iteration: 3, Func. Count: 28, Neg. LLF: 75.08136466226534
Iteration: 4, Func. Count: 36, Neg. LLF: 77.41333534514646
Iteration: 5, Func. Count: 46, Neg. LLF: 75.02891481569148
Iteration: 6, Func. Count: 54, Neg. LLF: 75.02410886349111
Iteration: 7, Func. Count: 62, Neg. LLF: 75.02404828311309
Iteration: 8, Func. Count: 70, Neg. LLF: 75.02394470288462
Iteration: 9, Func. Count: 78, Neg. LLF: 75.02364859720018
Iteration: 10, Func. Count: 86, Neg. LLF: 75.02301671736438
Iteration: 11, Func. Count: 94, Neg. LLF: 75.02135713530129
Iteration: 12, Func. Count: 102, Neg. LLF: 75.01937057730362
Iteration: 13, Func. Count: 110, Neg. LLF: 75.01882309077102
Iteration: 14, Func. Count: 118, Neg. LLF: 75.01815194377575
Iteration: 15, Func. Count: 126, Neg. LLF: 75.01815751288052
Optimization terminated successfully (Exit mode 0)
Current function value: 75.01815192739596
Iterations: 15
Function evaluations: 128
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 25259271.10841725
Iteration: 2, Func. Count: 21, Neg. LLF: 184.42086646813613
Iteration: 3, Func. Count: 32, Neg. LLF: 84.27056274904957
Iteration: 4, Func. Count: 43, Neg. LLF: 74.66030118204662
Iteration: 5, Func. Count: 52, Neg. LLF: 74.8720333609003
Iteration: 6, Func. Count: 62, Neg. LLF: 74.65936230027776
Iteration: 7, Func. Count: 72, Neg. LLF: 74.67163822184683
Iteration: 8, Func. Count: 82, Neg. LLF: 74.51991726623409
Iteration: 9, Func. Count: 91, Neg. LLF: 74.51733219518331
Iteration: 10, Func. Count: 100, Neg. LLF: 74.51722027738319
Iteration: 11, Func. Count: 109, Neg. LLF: 74.51721552737553
Iteration: 12, Func. Count: 117, Neg. LLF: 74.51721552734065
Optimization terminated successfully (Exit mode 0)
Current function value: 74.51721552737553
Iterations: 12
Function evaluations: 117
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 24869866.175356295
Iteration: 2, Func. Count: 23, Neg. LLF: 96.98018996568676
Iteration: 3, Func. Count: 35, Neg. LLF: 78.90622525916899
Iteration: 4, Func. Count: 46, Neg. LLF: 75.05974495174327
Iteration: 5, Func. Count: 56, Neg. LLF: 74.98656699023925
Iteration: 6, Func. Count: 66, Neg. LLF: 74.80778528444665
Iteration: 7, Func. Count: 76, Neg. LLF: 74.6697758638183
Iteration: 8, Func. Count: 86, Neg. LLF: 74.573571001434
Iteration: 9, Func. Count: 96, Neg. LLF: 74.93819324258463
Iteration: 10, Func. Count: 107, Neg. LLF: 74.55372585215
Iteration: 11, Func. Count: 118, Neg. LLF: 74.52108557265782
Iteration: 12, Func. Count: 128, Neg. LLF: 74.51756340593974
Iteration: 13, Func. Count: 138, Neg. LLF: 74.51722910825455
Iteration: 14, Func. Count: 148, Neg. LLF: 74.51721560789652
Iteration: 15, Func. Count: 157, Neg. LLF: 74.51721567580397
Optimization terminated successfully (Exit mode 0)
Current function value: 74.51721560789652
Iterations: 15
Function evaluations: 157
Gradient evaluations: 15
Iteration: 1, Func. Count: 8, Neg. LLF: 122.06581137121734
Iteration: 2, Func. Count: 19, Neg. LLF: 297.37087304953525
Iteration: 3, Func. Count: 28, Neg. LLF: 78.46581044083867
Iteration: 4, Func. Count: 36, Neg. LLF: 75.10804010583975
Iteration: 5, Func. Count: 43, Neg. LLF: 75.07722035004248
Iteration: 6, Func. Count: 50, Neg. LLF: 75.05583083364762
Iteration: 7, Func. Count: 57, Neg. LLF: 75.05156770058792
Iteration: 8, Func. Count: 64, Neg. LLF: 75.05128551104794
Iteration: 9, Func. Count: 71, Neg. LLF: 75.05125946220083
Iteration: 10, Func. Count: 78, Neg. LLF: 75.05125441757296
Iteration: 11, Func. Count: 84, Neg. LLF: 75.05125446171029
Optimization terminated successfully (Exit mode 0)
Current function value: 75.05125441757296
Iterations: 11
Function evaluations: 84
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 77.93913936838146
Iteration: 2, Func. Count: 20, Neg. LLF: 31530461.77044977
Iteration: 3, Func. Count: 30, Neg. LLF: 75.4723618060287
Iteration: 4, Func. Count: 39, Neg. LLF: 75.05402373471199
Iteration: 5, Func. Count: 47, Neg. LLF: 75.05179524773031
Iteration: 6, Func. Count: 55, Neg. LLF: 75.05132109420065
Iteration: 7, Func. Count: 63, Neg. LLF: 75.05128995325819
Iteration: 8, Func. Count: 71, Neg. LLF: 75.05125432309555
Iteration: 9, Func. Count: 78, Neg. LLF: 75.0512543303374
Optimization terminated successfully (Exit mode 0)
Current function value: 75.05125432309555
Iterations: 9
Function evaluations: 78
Gradient evaluations: 9
Iteration: 1, Func. Count: 10, Neg. LLF: 25134551.72808796
Iteration: 2, Func. Count: 21, Neg. LLF: 75.45361125901786
Iteration: 3, Func. Count: 30, Neg. LLF: 75.05409784914823
Iteration: 4, Func. Count: 39, Neg. LLF: 75.10844177395803
Iteration: 5, Func. Count: 49, Neg. LLF: 75.08306578709272
Iteration: 6, Func. Count: 59, Neg. LLF: 75.02519219995702
Iteration: 7, Func. Count: 68, Neg. LLF: 75.02515011883663
Iteration: 8, Func. Count: 77, Neg. LLF: 75.02491109229658
Iteration: 9, Func. Count: 86, Neg. LLF: 75.02453430821377
Iteration: 10, Func. Count: 95, Neg. LLF: 75.02388408746907
Iteration: 11, Func. Count: 104, Neg. LLF: 75.02041243738762
Iteration: 12, Func. Count: 113, Neg. LLF: 75.01829168236229
Iteration: 13, Func. Count: 122, Neg. LLF: 75.01815287431224
Iteration: 14, Func. Count: 131, Neg. LLF: 75.0181504495549
Iteration: 15, Func. Count: 139, Neg. LLF: 75.01815044992325
Optimization terminated successfully (Exit mode 0)
Current function value: 75.0181504495549
Iterations: 15
Function evaluations: 139
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 25048412.282681935
Iteration: 2, Func. Count: 23, Neg. LLF: 225.11759380719366
Iteration: 3, Func. Count: 35, Neg. LLF: 85.90969534942757
Iteration: 4, Func. Count: 47, Neg. LLF: 74.73598003451137
Iteration: 5, Func. Count: 57, Neg. LLF: 74.87630935377317
Iteration: 6, Func. Count: 68, Neg. LLF: 74.90250127393502
Iteration: 7, Func. Count: 79, Neg. LLF: 74.5451976639456
Iteration: 8, Func. Count: 89, Neg. LLF: 74.5193215387003
Iteration: 9, Func. Count: 99, Neg. LLF: 74.52030901838951
Iteration: 10, Func. Count: 110, Neg. LLF: 74.51722534327526
Iteration: 11, Func. Count: 120, Neg. LLF: 74.51721576097778
Iteration: 12, Func. Count: 129, Neg. LLF: 74.51721576063747
Optimization terminated successfully (Exit mode 0)
Current function value: 74.51721576097778
Iterations: 12
Function evaluations: 129
Gradient evaluations: 12
Iteration: 1, Func. Count: 12, Neg. LLF: 24774096.133156847
Iteration: 2, Func. Count: 25, Neg. LLF: 114.87562669492709
Iteration: 3, Func. Count: 38, Neg. LLF: 79.78476108264195
Iteration: 4, Func. Count: 50, Neg. LLF: 75.07145130122834
Iteration: 5, Func. Count: 61, Neg. LLF: 75.00436569265788
Iteration: 6, Func. Count: 72, Neg. LLF: 74.82177043499885
Iteration: 7, Func. Count: 83, Neg. LLF: 74.90252821250921
Iteration: 8, Func. Count: 95, Neg. LLF: 74.79620697612015
Iteration: 9, Func. Count: 107, Neg. LLF: 74.73715631323914
Iteration: 10, Func. Count: 119, Neg. LLF: 74.73262098216262
Iteration: 11, Func. Count: 131, Neg. LLF: 74.58177105641757
Iteration: 12, Func. Count: 142, Neg. LLF: 74.61642776685318
Iteration: 13, Func. Count: 154, Neg. LLF: 74.52341950745968
Iteration: 14, Func. Count: 165, Neg. LLF: 74.5191277372227
Iteration: 15, Func. Count: 176, Neg. LLF: 74.51779598838128
Iteration: 16, Func. Count: 187, Neg. LLF: 74.51731853919988
Iteration: 17, Func. Count: 198, Neg. LLF: 74.5172207208496
Iteration: 18, Func. Count: 209, Neg. LLF: 74.51721558941024
Iteration: 19, Func. Count: 219, Neg. LLF: 74.51721565719649
Optimization terminated successfully (Exit mode 0)
Current function value: 74.51721558941024
Iterations: 19
Function evaluations: 219
Gradient evaluations: 19
Iteration: 1, Func. Count: 9, Neg. LLF: 141.93725689321158
Iteration: 2, Func. Count: 21, Neg. LLF: 350.2584524926656
Iteration: 3, Func. Count: 31, Neg. LLF: 90.31450417197705
Iteration: 4, Func. Count: 40, Neg. LLF: 75.07381838602592
Iteration: 5, Func. Count: 48, Neg. LLF: 75.06542367471752
Iteration: 6, Func. Count: 56, Neg. LLF: 75.053468212622
Iteration: 7, Func. Count: 64, Neg. LLF: 75.05149027612302
Iteration: 8, Func. Count: 72, Neg. LLF: 75.05126247532597
Iteration: 9, Func. Count: 80, Neg. LLF: 75.05125541508824
Iteration: 10, Func. Count: 88, Neg. LLF: 75.0512540472058
Iteration: 11, Func. Count: 95, Neg. LLF: 75.05125415397539
Optimization terminated successfully (Exit mode 0)
Current function value: 75.0512540472058
Iterations: 11
Function evaluations: 95
Gradient evaluations: 11
Iteration: 1, Func. Count: 10, Neg. LLF: 78.1670598312618
Iteration: 2, Func. Count: 22, Neg. LLF: 31002485.483878765
Iteration: 3, Func. Count: 33, Neg. LLF: 75.3720898551663
Iteration: 4, Func. Count: 42, Neg. LLF: 75.0550626922878
Iteration: 5, Func. Count: 51, Neg. LLF: 75.05179131705377
Iteration: 6, Func. Count: 60, Neg. LLF: 75.05131723220688
Iteration: 7, Func. Count: 69, Neg. LLF: 75.05128401709922
Iteration: 8, Func. Count: 78, Neg. LLF: 75.0512592160207
Iteration: 9, Func. Count: 87, Neg. LLF: 75.05125461066751
Iteration: 10, Func. Count: 96, Neg. LLF: 75.05125405817134
Optimization terminated successfully (Exit mode 0)
Current function value: 75.05125405817134
Iterations: 10
Function evaluations: 96
Gradient evaluations: 10
Iteration: 1, Func. Count: 11, Neg. LLF: 24869454.705018435
Iteration: 2, Func. Count: 23, Neg. LLF: 75.34281128619827
Iteration: 3, Func. Count: 33, Neg. LLF: 75.05972281238546
Iteration: 4, Func. Count: 43, Neg. LLF: 78.32143733738289
Iteration: 5, Func. Count: 54, Neg. LLF: 75.02510655244768
Iteration: 6, Func. Count: 64, Neg. LLF: 75.02492869943886
Iteration: 7, Func. Count: 74, Neg. LLF: 75.02488290803913
Iteration: 8, Func. Count: 84, Neg. LLF: 75.0245562673111
Iteration: 9, Func. Count: 94, Neg. LLF: 75.02412718036668
Iteration: 10, Func. Count: 104, Neg. LLF: 75.02288207914802
Iteration: 11, Func. Count: 114, Neg. LLF: 75.02097697849692
Iteration: 12, Func. Count: 124, Neg. LLF: 75.01834199249689
Iteration: 13, Func. Count: 134, Neg. LLF: 75.01821571998029
Iteration: 14, Func. Count: 144, Neg. LLF: 75.0181651867305
Iteration: 15, Func. Count: 154, Neg. LLF: 75.01815044830416
Iteration: 16, Func. Count: 163, Neg. LLF: 75.01815044843666
Optimization terminated successfully (Exit mode 0)
Current function value: 75.01815044830416
Iterations: 16
Function evaluations: 163
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 24831459.780136034
Iteration: 2, Func. Count: 25, Neg. LLF: 239.99964104826947
Iteration: 3, Func. Count: 38, Neg. LLF: 86.46801364388968
Iteration: 4, Func. Count: 51, Neg. LLF: 74.69182786451199
Iteration: 5, Func. Count: 62, Neg. LLF: 74.8722583906325
Iteration: 6, Func. Count: 74, Neg. LLF: 74.94031509311097
Iteration: 7, Func. Count: 86, Neg. LLF: 74.61322595035624
Iteration: 8, Func. Count: 98, Neg. LLF: 74.52015345507235
Iteration: 9, Func. Count: 109, Neg. LLF: 74.51755267756295
Iteration: 10, Func. Count: 120, Neg. LLF: 74.5172413690898
Iteration: 11, Func. Count: 131, Neg. LLF: 74.51721573207617
Iteration: 12, Func. Count: 141, Neg. LLF: 74.5172157320113
Optimization terminated successfully (Exit mode 0)
Current function value: 74.51721573207617
Iterations: 12
Function evaluations: 141
Gradient evaluations: 12
Iteration: 1, Func. Count: 13, Neg. LLF: 24560075.251402937
Iteration: 2, Func. Count: 27, Neg. LLF: 123.33953848820776
Iteration: 3, Func. Count: 41, Neg. LLF: 80.12061825680611
Iteration: 4, Func. Count: 54, Neg. LLF: 75.06189828289858
Iteration: 5, Func. Count: 66, Neg. LLF: 74.98317611260407
Iteration: 6, Func. Count: 78, Neg. LLF: 74.8275448485381
Iteration: 7, Func. Count: 90, Neg. LLF: 74.6199645214424
Iteration: 8, Func. Count: 102, Neg. LLF: 74.55721088476479
Iteration: 9, Func. Count: 114, Neg. LLF: 74.9232062685512
Iteration: 10, Func. Count: 127, Neg. LLF: 74.52813902929022
Iteration: 11, Func. Count: 139, Neg. LLF: 74.5200516244269
Iteration: 12, Func. Count: 151, Neg. LLF: 74.51830194524264
Iteration: 13, Func. Count: 163, Neg. LLF: 74.5172273555272
Iteration: 14, Func. Count: 175, Neg. LLF: 74.51721555609336
Iteration: 15, Func. Count: 186, Neg. LLF: 74.51721562395355
Optimization terminated successfully (Exit mode 0)
Current function value: 74.51721555609336
Iterations: 15
Function evaluations: 186
Gradient evaluations: 15
Iteration: 1, Func. Count: 6, Neg. LLF: 154.92905133336177
Iteration: 2, Func. Count: 15, Neg. LLF: 149.37852110499617
Iteration: 3, Func. Count: 22, Neg. LLF: 75.46891862358957
Iteration: 4, Func. Count: 27, Neg. LLF: 75.14134533641118
Iteration: 5, Func. Count: 32, Neg. LLF: 75.13521640474671
Iteration: 6, Func. Count: 37, Neg. LLF: 75.133380750229
Iteration: 7, Func. Count: 42, Neg. LLF: 75.13291319461804
Iteration: 8, Func. Count: 47, Neg. LLF: 75.13291215954315
Iteration: 9, Func. Count: 51, Neg. LLF: 75.13291215952569
Optimization terminated successfully (Exit mode 0)
Current function value: 75.13291215954315
Iterations: 9
Function evaluations: 51
Gradient evaluations: 9
Iteration: 1, Func. Count: 7, Neg. LLF: 24594113.96743239
Iteration: 2, Func. Count: 16, Neg. LLF: 75.89608170538573
Iteration: 3, Func. Count: 23, Neg. LLF: 75.2807092387619
Iteration: 4, Func. Count: 29, Neg. LLF: 75.28566886847143
Iteration: 5, Func. Count: 36, Neg. LLF: 75.3538761845616
Iteration: 6, Func. Count: 43, Neg. LLF: 75.0181520205923
Iteration: 7, Func. Count: 49, Neg. LLF: 75.01815044826446
Iteration: 8, Func. Count: 54, Neg. LLF: 75.0181504482696
Optimization terminated successfully (Exit mode 0)
Current function value: 75.01815044826446
Iterations: 8
Function evaluations: 54
Gradient evaluations: 8
Iteration: 1, Func. Count: 8, Neg. LLF: 24367206.165772013
Iteration: 2, Func. Count: 17, Neg. LLF: 75.63508931061605
Iteration: 3, Func. Count: 25, Neg. LLF: 75.16865059487873
Iteration: 4, Func. Count: 32, Neg. LLF: 76.05185063636597
Iteration: 5, Func. Count: 40, Neg. LLF: 75.03179017252694
Iteration: 6, Func. Count: 47, Neg. LLF: 75.02481048228181
Iteration: 7, Func. Count: 54, Neg. LLF: 75.02475781922304
Iteration: 8, Func. Count: 61, Neg. LLF: 75.02461721661426
Iteration: 9, Func. Count: 68, Neg. LLF: 75.02422846325511
Iteration: 10, Func. Count: 75, Neg. LLF: 75.02338084230514
Iteration: 11, Func. Count: 82, Neg. LLF: 75.02134058377169
Iteration: 12, Func. Count: 89, Neg. LLF: 75.01944508074223
Iteration: 13, Func. Count: 96, Neg. LLF: 75.01860708653531
Iteration: 14, Func. Count: 103, Neg. LLF: 75.0181504844872
Iteration: 15, Func. Count: 109, Neg. LLF: 75.01815048529288
Optimization terminated successfully (Exit mode 0)
Current function value: 75.0181504844872
Iterations: 15
Function evaluations: 109
Gradient evaluations: 15
Iteration: 1, Func. Count: 9, Neg. LLF: 24301148.859690744
Iteration: 2, Func. Count: 19, Neg. LLF: 79.68246048625339
Iteration: 3, Func. Count: 29, Neg. LLF: 76.80644476871296
Iteration: 4, Func. Count: 38, Neg. LLF: 74.16206161761743
Iteration: 5, Func. Count: 46, Neg. LLF: 74.05935726760532
Iteration: 6, Func. Count: 54, Neg. LLF: 74.05902696196091
Iteration: 7, Func. Count: 62, Neg. LLF: 74.05896321372198
Iteration: 8, Func. Count: 70, Neg. LLF: 74.05895957803496
Iteration: 9, Func. Count: 77, Neg. LLF: 74.05895957777624
Optimization terminated successfully (Exit mode 0)
Current function value: 74.05895957803496
Iterations: 9
Function evaluations: 77
Gradient evaluations: 9
Iteration: 1, Func. Count: 10, Neg. LLF: 24279314.597740144
Iteration: 2, Func. Count: 21, Neg. LLF: 75.57318928242837
Iteration: 3, Func. Count: 31, Neg. LLF: 75.09124578607563
Iteration: 4, Func. Count: 40, Neg. LLF: 75.22203501335503
Iteration: 5, Func. Count: 50, Neg. LLF: 75.0518031993487
Iteration: 6, Func. Count: 59, Neg. LLF: 75.03205725263561
Iteration: 7, Func. Count: 68, Neg. LLF: 75.02523494029646
Iteration: 8, Func. Count: 77, Neg. LLF: 75.0070286496202
Iteration: 9, Func. Count: 86, Neg. LLF: 74.48695567393544
Iteration: 10, Func. Count: 95, Neg. LLF: 74.08878066721536
Iteration: 11, Func. Count: 104, Neg. LLF: 74.06586554387046
Iteration: 12, Func. Count: 113, Neg. LLF: 74.05900224595248
Iteration: 13, Func. Count: 122, Neg. LLF: 6343.141646019616
Iteration: 14, Func. Count: 134, Neg. LLF: 74.06624768727681
Iteration: 15, Func. Count: 145, Neg. LLF: 74.05909931835585
Optimization terminated successfully (Exit mode 0)
Current function value: 74.05897233279387
Iterations: 16
Function evaluations: 146
Gradient evaluations: 15
Iteration: 1, Func. Count: 7, Neg. LLF: 153.23257348056094
Iteration: 2, Func. Count: 16, Neg. LLF: 161.2228999669442
Iteration: 3, Func. Count: 24, Neg. LLF: 75.82800952369567
Iteration: 4, Func. Count: 30, Neg. LLF: 129987.08695008473
Iteration: 5, Func. Count: 37, Neg. LLF: 75.33071407842107
Iteration: 6, Func. Count: 43, Neg. LLF: 75.1651560458191
Iteration: 7, Func. Count: 49, Neg. LLF: 75.13475963861843
Iteration: 8, Func. Count: 55, Neg. LLF: 75.13298237209975
Iteration: 9, Func. Count: 61, Neg. LLF: 75.13291224874382
Iteration: 10, Func. Count: 66, Neg. LLF: 75.13291235666608
Optimization terminated successfully (Exit mode 0)
Current function value: 75.13291224874382
Iterations: 10
Function evaluations: 66
Gradient evaluations: 10
Iteration: 1, Func. Count: 8, Neg. LLF: 77.93010375655716
Iteration: 2, Func. Count: 18, Neg. LLF: 253.3304534294599
Iteration: 3, Func. Count: 26, Neg. LLF: 26460.377853272395
Iteration: 4, Func. Count: 35, Neg. LLF: 75.23900393085012
Iteration: 5, Func. Count: 43, Neg. LLF: 75.0792141297348
Iteration: 6, Func. Count: 50, Neg. LLF: 75.07762526234946
Iteration: 7, Func. Count: 57, Neg. LLF: 75.07648227997431
Iteration: 8, Func. Count: 64, Neg. LLF: 75.07633936319857
Iteration: 9, Func. Count: 71, Neg. LLF: 75.07632898269328
Iteration: 10, Func. Count: 78, Neg. LLF: 75.07632821038757
Optimization terminated successfully (Exit mode 0)
Current function value: 75.07632821038757
Iterations: 10
Function evaluations: 78
Gradient evaluations: 10
Iteration: 1, Func. Count: 9, Neg. LLF: 26566901.99349693
Iteration: 2, Func. Count: 19, Neg. LLF: 76.54987529720442
Iteration: 3, Func. Count: 28, Neg. LLF: 75.10716178250057
Iteration: 4, Func. Count: 36, Neg. LLF: 76.04019635517282
Iteration: 5, Func. Count: 45, Neg. LLF: 75.04893111358072
Iteration: 6, Func. Count: 53, Neg. LLF: 75.03158493888628
Iteration: 7, Func. Count: 61, Neg. LLF: 75.02687158570083
Iteration: 8, Func. Count: 69, Neg. LLF: 75.02551426846642
Iteration: 9, Func. Count: 77, Neg. LLF: 75.0254519284559
Iteration: 10, Func. Count: 85, Neg. LLF: 75.02543585036665
Iteration: 11, Func. Count: 93, Neg. LLF: 75.02513953439588
Iteration: 12, Func. Count: 101, Neg. LLF: 75.0020136241582
Iteration: 13, Func. Count: 109, Neg. LLF: 24257358.05369351
Iteration: 14, Func. Count: 120, Neg. LLF: 75.62490787653653
Iteration: 15, Func. Count: 130, Neg. LLF: 74.99917138418937
Iteration: 16, Func. Count: 137, Neg. LLF: 74.99917138420827
Optimization terminated successfully (Exit mode 0)
Current function value: 74.99917138418937
Iterations: 17
Function evaluations: 137
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 26119618.0028404
Iteration: 2, Func. Count: 21, Neg. LLF: 79.03255679413321
Iteration: 3, Func. Count: 32, Neg. LLF: 75.31386340457247
Iteration: 4, Func. Count: 41, Neg. LLF: 74.19728911417191
Iteration: 5, Func. Count: 50, Neg. LLF: 74.10940043321224
Iteration: 6, Func. Count: 59, Neg. LLF: 74.08914779457201
Iteration: 7, Func. Count: 68, Neg. LLF: 74.07096009065607
Iteration: 8, Func. Count: 77, Neg. LLF: 74.05914620114585
Iteration: 9, Func. Count: 86, Neg. LLF: 74.05896261948456
Iteration: 10, Func. Count: 95, Neg. LLF: 74.05895912389177
Iteration: 11, Func. Count: 103, Neg. LLF: 74.05895912389347
Optimization terminated successfully (Exit mode 0)
Current function value: 74.05895912389177
Iterations: 11
Function evaluations: 103
Gradient evaluations: 11
Iteration: 1, Func. Count: 11, Neg. LLF: 25704298.722902827
Iteration: 2, Func. Count: 23, Neg. LLF: 75.42755142927902
Iteration: 3, Func. Count: 34, Neg. LLF: 75.07669625701934
Iteration: 4, Func. Count: 44, Neg. LLF: 77.02829541562137
Iteration: 5, Func. Count: 55, Neg. LLF: 75.03889128235
Iteration: 6, Func. Count: 65, Neg. LLF: 75.00691403361093
Iteration: 7, Func. Count: 75, Neg. LLF: 74.97654179185425
Iteration: 8, Func. Count: 85, Neg. LLF: 74.94282590767628
Iteration: 9, Func. Count: 95, Neg. LLF: 74.89109601947708
Iteration: 10, Func. Count: 105, Neg. LLF: 74.85867972514276
Iteration: 11, Func. Count: 115, Neg. LLF: 74.83358750693232
Iteration: 12, Func. Count: 125, Neg. LLF: 74.83249610150638
Iteration: 13, Func. Count: 135, Neg. LLF: 74.83247508108316
Iteration: 14, Func. Count: 144, Neg. LLF: 74.83247508115345
Optimization terminated successfully (Exit mode 0)
Current function value: 74.83247508108316
Iterations: 14
Function evaluations: 144
Gradient evaluations: 14
Iteration: 1, Func. Count: 8, Neg. LLF: 167.03911337487185
Iteration: 2, Func. Count: 18, Neg. LLF: 151.6759814583914
Iteration: 3, Func. Count: 27, Neg. LLF: 75.57408670629584
Iteration: 4, Func. Count: 34, Neg. LLF: 96.72003580551022
Iteration: 5, Func. Count: 42, Neg. LLF: 83.97773519305186
Iteration: 6, Func. Count: 50, Neg. LLF: 75.02818920840974
Iteration: 7, Func. Count: 57, Neg. LLF: 75.01057330283207
Iteration: 8, Func. Count: 64, Neg. LLF: 75.00721870740686
Iteration: 9, Func. Count: 71, Neg. LLF: 75.00510524452953
Iteration: 10, Func. Count: 78, Neg. LLF: 75.00501547290868
Iteration: 11, Func. Count: 85, Neg. LLF: 75.00501012176984
Iteration: 12, Func. Count: 91, Neg. LLF: 75.0050101217596
Optimization terminated successfully (Exit mode 0)
Current function value: 75.00501012176984
Iterations: 12
Function evaluations: 91
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 77.03200044119879
Iteration: 2, Func. Count: 20, Neg. LLF: 2183.645081555152
Iteration: 3, Func. Count: 30, Neg. LLF: 677.5718254796742
Iteration: 4, Func. Count: 39, Neg. LLF: 78.06386455521425
Iteration: 5, Func. Count: 49, Neg. LLF: 75.07299605944122
Iteration: 6, Func. Count: 57, Neg. LLF: 75.09228360088314
Iteration: 7, Func. Count: 66, Neg. LLF: 75.00984236583963
Iteration: 8, Func. Count: 74, Neg. LLF: 75.00669664291325
Iteration: 9, Func. Count: 82, Neg. LLF: 75.00567681028949
Iteration: 10, Func. Count: 90, Neg. LLF: 75.00520064323004
Iteration: 11, Func. Count: 98, Neg. LLF: 75.00502199382366
Iteration: 12, Func. Count: 106, Neg. LLF: 75.0050104472483
Iteration: 13, Func. Count: 113, Neg. LLF: 75.00501044951037
Optimization terminated successfully (Exit mode 0)
Current function value: 75.0050104472483
Iterations: 13
Function evaluations: 113
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 27306373.961377483
Iteration: 2, Func. Count: 21, Neg. LLF: 77.23603619198967
Iteration: 3, Func. Count: 31, Neg. LLF: 75.13123564405491
Iteration: 4, Func. Count: 40, Neg. LLF: 75.34995946247668
Iteration: 5, Func. Count: 50, Neg. LLF: 75.02835624895448
Iteration: 6, Func. Count: 59, Neg. LLF: 75.02469744225448
Iteration: 7, Func. Count: 68, Neg. LLF: 75.02460516567733
Iteration: 8, Func. Count: 77, Neg. LLF: 75.02453675282972
Iteration: 9, Func. Count: 86, Neg. LLF: 75.02423976933883
Iteration: 10, Func. Count: 95, Neg. LLF: 75.02367794161306
Iteration: 11, Func. Count: 104, Neg. LLF: 75.02245857085722
Iteration: 12, Func. Count: 113, Neg. LLF: 75.01946812242238
Iteration: 13, Func. Count: 122, Neg. LLF: 75.01880353869807
Iteration: 14, Func. Count: 131, Neg. LLF: 75.01815047662701
Iteration: 15, Func. Count: 139, Neg. LLF: 75.018150476827
Optimization terminated successfully (Exit mode 0)
Current function value: 75.01815047662701
Iterations: 15
Function evaluations: 139
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 26905934.907269254
Iteration: 2, Func. Count: 23, Neg. LLF: 105.39401481558498
Iteration: 3, Func. Count: 35, Neg. LLF: 81.68442891640727
Iteration: 4, Func. Count: 47, Neg. LLF: 74.97804508343853
Iteration: 5, Func. Count: 57, Neg. LLF: 74.41570787678064
Iteration: 6, Func. Count: 67, Neg. LLF: 74.11157566813603
Iteration: 7, Func. Count: 77, Neg. LLF: 74.05765497618982
Iteration: 8, Func. Count: 87, Neg. LLF: 74.02956718123745
Iteration: 9, Func. Count: 97, Neg. LLF: 74.02545884320438
Iteration: 10, Func. Count: 107, Neg. LLF: 74.0253360370717
Iteration: 11, Func. Count: 117, Neg. LLF: 74.02532865051417
Iteration: 12, Func. Count: 127, Neg. LLF: 74.02532213716245
Iteration: 13, Func. Count: 136, Neg. LLF: 74.02532213739869
Optimization terminated successfully (Exit mode 0)
Current function value: 74.02532213716245
Iterations: 13
Function evaluations: 136
Gradient evaluations: 13
Iteration: 1, Func. Count: 12, Neg. LLF: 26719573.857759263
Iteration: 2, Func. Count: 25, Neg. LLF: 87.81459035237646
Iteration: 3, Func. Count: 38, Neg. LLF: 78.0188243505678
Iteration: 4, Func. Count: 50, Neg. LLF: 74.99784367873748
Iteration: 5, Func. Count: 61, Neg. LLF: 74.91178617263567
Iteration: 6, Func. Count: 72, Neg. LLF: 75.01261556456532
Iteration: 7, Func. Count: 84, Neg. LLF: 74.52199099364852
Iteration: 8, Func. Count: 95, Neg. LLF: 76.88738798168008
Iteration: 9, Func. Count: 109, Neg. LLF: 74.23263735073866
Iteration: 10, Func. Count: 120, Neg. LLF: 74.07328952370845
Iteration: 11, Func. Count: 131, Neg. LLF: 74.03534247138265
Iteration: 12, Func. Count: 142, Neg. LLF: 74.03201886944876
Iteration: 13, Func. Count: 153, Neg. LLF: 74.02715006823895
Iteration: 14, Func. Count: 164, Neg. LLF: 74.02628232495078
Iteration: 15, Func. Count: 175, Neg. LLF: 74.02573497158019
Iteration: 16, Func. Count: 186, Neg. LLF: 74.02545614891874
Iteration: 17, Func. Count: 197, Neg. LLF: 74.02533639451555
Iteration: 18, Func. Count: 208, Neg. LLF: 74.02532233453543
Iteration: 19, Func. Count: 219, Neg. LLF: 74.46773066617908
Optimization terminated successfully (Exit mode 0)
Current function value: 74.02532223484779
Iterations: 20
Function evaluations: 222
Gradient evaluations: 19
Iteration: 1, Func. Count: 9, Neg. LLF: 160.13277399424018
Iteration: 2, Func. Count: 20, Neg. LLF: 148.51629757789667
Iteration: 3, Func. Count: 30, Neg. LLF: 75.28363521232316
Iteration: 4, Func. Count: 38, Neg. LLF: 220.32793280971654
Iteration: 5, Func. Count: 47, Neg. LLF: 78.29580934730635
Iteration: 6, Func. Count: 56, Neg. LLF: 75.02419469466005
Iteration: 7, Func. Count: 64, Neg. LLF: 75.00526678851885
Iteration: 8, Func. Count: 72, Neg. LLF: 75.0050135311261
Iteration: 9, Func. Count: 80, Neg. LLF: 75.00501012076496
Iteration: 10, Func. Count: 87, Neg. LLF: 75.00501016385203
Optimization terminated successfully (Exit mode 0)
Current function value: 75.00501012076496
Iterations: 10
Function evaluations: 87
Gradient evaluations: 10
Iteration: 1, Func. Count: 10, Neg. LLF: 76.94223513417167
Iteration: 2, Func. Count: 22, Neg. LLF: 2144.884572706421
Iteration: 3, Func. Count: 33, Neg. LLF: 682.9665924748053
Iteration: 4, Func. Count: 43, Neg. LLF: 78.59328040793011
Iteration: 5, Func. Count: 54, Neg. LLF: 75.07146575015506
Iteration: 6, Func. Count: 63, Neg. LLF: 75.07905769130365
Iteration: 7, Func. Count: 73, Neg. LLF: 75.00869515419441
Iteration: 8, Func. Count: 82, Neg. LLF: 75.00598748671719
Iteration: 9, Func. Count: 91, Neg. LLF: 75.00549877251393
Iteration: 10, Func. Count: 100, Neg. LLF: 75.00510488627354
Iteration: 11, Func. Count: 109, Neg. LLF: 75.00501780058173
Iteration: 12, Func. Count: 118, Neg. LLF: 75.00501022730026
Iteration: 13, Func. Count: 126, Neg. LLF: 75.00501022956007
Optimization terminated successfully (Exit mode 0)
Current function value: 75.00501022730026
Iterations: 13
Function evaluations: 126
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 26738466.08944029
Iteration: 2, Func. Count: 23, Neg. LLF: 76.61912003464836
Iteration: 3, Func. Count: 34, Neg. LLF: 75.12095137669246
Iteration: 4, Func. Count: 44, Neg. LLF: 75.2243857059817
Iteration: 5, Func. Count: 55, Neg. LLF: 75.03590608916325
Iteration: 6, Func. Count: 65, Neg. LLF: 75.02606000472913
Iteration: 7, Func. Count: 75, Neg. LLF: 75.02552588031966
Iteration: 8, Func. Count: 85, Neg. LLF: 75.02550640712604
Iteration: 9, Func. Count: 95, Neg. LLF: 75.02550493613582
Iteration: 10, Func. Count: 105, Neg. LLF: 75.02548919358192
Iteration: 11, Func. Count: 115, Neg. LLF: 75.00926413641471
Iteration: 12, Func. Count: 125, Neg. LLF: 3068902.7934808186
Iteration: 13, Func. Count: 137, Neg. LLF: 9526488.744977262
Iteration: 14, Func. Count: 149, Neg. LLF: 78.08467441033305
Iteration: 15, Func. Count: 161, Neg. LLF: 74.89527662185188
Iteration: 16, Func. Count: 172, Neg. LLF: 74.90630546120606
Iteration: 17, Func. Count: 183, Neg. LLF: 74.85170816397732
Iteration: 18, Func. Count: 193, Neg. LLF: 74.85110670434133
Iteration: 19, Func. Count: 203, Neg. LLF: 74.85109690956787
Iteration: 20, Func. Count: 212, Neg. LLF: 74.851096908927
Optimization terminated successfully (Exit mode 0)
Current function value: 74.85109690956787
Iterations: 21
Function evaluations: 212
Gradient evaluations: 20
Iteration: 1, Func. Count: 12, Neg. LLF: 26589624.72940084
Iteration: 2, Func. Count: 25, Neg. LLF: 134.414217402973
Iteration: 3, Func. Count: 38, Neg. LLF: 83.22936370602793
Iteration: 4, Func. Count: 51, Neg. LLF: 74.62921422382463
Iteration: 5, Func. Count: 62, Neg. LLF: 74.16298407133557
Iteration: 6, Func. Count: 73, Neg. LLF: 74.0739529610131
Iteration: 7, Func. Count: 84, Neg. LLF: 74.03148447997017
Iteration: 8, Func. Count: 95, Neg. LLF: 74.0269688553857
Iteration: 9, Func. Count: 106, Neg. LLF: 74.02621869984522
Iteration: 10, Func. Count: 117, Neg. LLF: 74.02536267939682
Iteration: 11, Func. Count: 128, Neg. LLF: 74.02532295364601
Iteration: 12, Func. Count: 139, Neg. LLF: 74.0253220085559
Optimization terminated successfully (Exit mode 0)
Current function value: 74.0253220085559
Iterations: 12
Function evaluations: 139
Gradient evaluations: 12
Iteration: 1, Func. Count: 13, Neg. LLF: 26555183.762259997
Iteration: 2, Func. Count: 27, Neg. LLF: 95.54306703016357
Iteration: 3, Func. Count: 41, Neg. LLF: 79.05053359146852
Iteration: 4, Func. Count: 55, Neg. LLF: 75.02189676217196
Iteration: 5, Func. Count: 67, Neg. LLF: 74.95585777254864
Iteration: 6, Func. Count: 79, Neg. LLF: 74.9314197749632
Iteration: 7, Func. Count: 92, Neg. LLF: 74.47165591670488
Iteration: 8, Func. Count: 104, Neg. LLF: 76.86382760318726
Iteration: 9, Func. Count: 119, Neg. LLF: 74.26286730625245
Iteration: 10, Func. Count: 131, Neg. LLF: 74.07124596320135
Iteration: 11, Func. Count: 143, Neg. LLF: 74.0320186629124
Iteration: 12, Func. Count: 155, Neg. LLF: 74.02901455401447
Iteration: 13, Func. Count: 167, Neg. LLF: 74.0271861486898
Iteration: 14, Func. Count: 179, Neg. LLF: 74.02568107692646
Iteration: 15, Func. Count: 191, Neg. LLF: 74.02534479327446
Iteration: 16, Func. Count: 203, Neg. LLF: 74.02532435657034
Iteration: 17, Func. Count: 215, Neg. LLF: 74.02532233186055
Iteration: 18, Func. Count: 227, Neg. LLF: 74.22992502384304
Optimization terminated successfully (Exit mode 0)
Current function value: 74.02532206886409
Iterations: 19
Function evaluations: 230
Gradient evaluations: 18
Iteration: 1, Func. Count: 10, Neg. LLF: 148.9919777665919
Iteration: 2, Func. Count: 22, Neg. LLF: 153.63909130709524
Iteration: 3, Func. Count: 33, Neg. LLF: 75.53074086790652
Iteration: 4, Func. Count: 42, Neg. LLF: 9576.222457716003
Iteration: 5, Func. Count: 52, Neg. LLF: 76.18455246251663
Iteration: 6, Func. Count: 62, Neg. LLF: 75.59846815859902
Iteration: 7, Func. Count: 72, Neg. LLF: 75.03009388541406
Iteration: 8, Func. Count: 82, Neg. LLF: 75.00518977006533
Iteration: 9, Func. Count: 91, Neg. LLF: 75.00501268064343
Iteration: 10, Func. Count: 100, Neg. LLF: 75.00501042075867
Iteration: 11, Func. Count: 108, Neg. LLF: 75.00501051944862
Optimization terminated successfully (Exit mode 0)
Current function value: 75.00501042075867
Iterations: 11
Function evaluations: 108
Gradient evaluations: 11
Iteration: 1, Func. Count: 11, Neg. LLF: 77.02303424538354
Iteration: 2, Func. Count: 24, Neg. LLF: 2760.179897673649
Iteration: 3, Func. Count: 35, Neg. LLF: 632.4578760070098
Iteration: 4, Func. Count: 46, Neg. LLF: 78.45368600197126
Iteration: 5, Func. Count: 58, Neg. LLF: 75.08993143185297
Iteration: 6, Func. Count: 68, Neg. LLF: 75.08666878197074
Iteration: 7, Func. Count: 79, Neg. LLF: 75.03949840600094
Iteration: 8, Func. Count: 90, Neg. LLF: 75.00723075242475
Iteration: 9, Func. Count: 100, Neg. LLF: 75.00528147631476
Iteration: 10, Func. Count: 110, Neg. LLF: 75.00516743088401
Iteration: 11, Func. Count: 120, Neg. LLF: 75.00502937540392
Iteration: 12, Func. Count: 130, Neg. LLF: 75.00501143208002
Iteration: 13, Func. Count: 140, Neg. LLF: 75.00501009243172
Iteration: 14, Func. Count: 149, Neg. LLF: 75.00501009470582
Optimization terminated successfully (Exit mode 0)
Current function value: 75.00501009243172
Iterations: 14
Function evaluations: 149
Gradient evaluations: 14
Iteration: 1, Func. Count: 12, Neg. LLF: 26321328.266919203
Iteration: 2, Func. Count: 25, Neg. LLF: 76.26439311684557
Iteration: 3, Func. Count: 37, Neg. LLF: 75.11944491618654
Iteration: 4, Func. Count: 48, Neg. LLF: 75.48987953249107
Iteration: 5, Func. Count: 60, Neg. LLF: 75.04656165534008
Iteration: 6, Func. Count: 71, Neg. LLF: 75.02615759122425
Iteration: 7, Func. Count: 82, Neg. LLF: 75.02533342864963
Iteration: 8, Func. Count: 93, Neg. LLF: 75.02529673111005
Iteration: 9, Func. Count: 104, Neg. LLF: 75.02526460951613
Iteration: 10, Func. Count: 115, Neg. LLF: 75.0250805129875
Iteration: 11, Func. Count: 126, Neg. LLF: 75.02477978019922
Iteration: 12, Func. Count: 137, Neg. LLF: 75.02426391033174
Iteration: 13, Func. Count: 148, Neg. LLF: 75.01993550635837
Iteration: 14, Func. Count: 159, Neg. LLF: 75.01818148979305
Iteration: 15, Func. Count: 170, Neg. LLF: 75.01815429473858
Iteration: 16, Func. Count: 181, Neg. LLF: 75.01815048100315
Iteration: 17, Func. Count: 191, Neg. LLF: 75.01815048178544
Optimization terminated successfully (Exit mode 0)
Current function value: 75.01815048100315
Iterations: 17
Function evaluations: 191
Gradient evaluations: 17
Iteration: 1, Func. Count: 13, Neg. LLF: 26246186.29795656
Iteration: 2, Func. Count: 27, Neg. LLF: 137.48178545128312
Iteration: 3, Func. Count: 41, Neg. LLF: 84.18666479368846
Iteration: 4, Func. Count: 55, Neg. LLF: 74.72961780038042
Iteration: 5, Func. Count: 67, Neg. LLF: 74.13584686744497
Iteration: 6, Func. Count: 79, Neg. LLF: 74.04744062606252
Iteration: 7, Func. Count: 91, Neg. LLF: 74.03340381390821
Iteration: 8, Func. Count: 103, Neg. LLF: 74.02835247792117
Iteration: 9, Func. Count: 115, Neg. LLF: 74.02559060948383
Iteration: 10, Func. Count: 127, Neg. LLF: 74.02532983058259
Iteration: 11, Func. Count: 139, Neg. LLF: 74.02532295209868
Iteration: 12, Func. Count: 151, Neg. LLF: 74.02532212510457
Optimization terminated successfully (Exit mode 0)
Current function value: 74.02532212510457
Iterations: 12
Function evaluations: 151
Gradient evaluations: 12
Iteration: 1, Func. Count: 14, Neg. LLF: 26163644.65013209
Iteration: 2, Func. Count: 29, Neg. LLF: 98.8124407682108
Iteration: 3, Func. Count: 44, Neg. LLF: 79.76321921378059
Iteration: 4, Func. Count: 59, Neg. LLF: 75.001382616085
Iteration: 5, Func. Count: 72, Neg. LLF: 74.93488686288534
Iteration: 6, Func. Count: 85, Neg. LLF: 74.90865157080988
Iteration: 7, Func. Count: 99, Neg. LLF: 74.36813130444105
Iteration: 8, Func. Count: 112, Neg. LLF: 75.95135978519
Iteration: 9, Func. Count: 128, Neg. LLF: 74.16482935570914
Iteration: 10, Func. Count: 141, Neg. LLF: 74.04266398219887
Iteration: 11, Func. Count: 154, Neg. LLF: 74.02847221078133
Iteration: 12, Func. Count: 167, Neg. LLF: 74.02737933799416
Iteration: 13, Func. Count: 180, Neg. LLF: 74.0255654595333
Iteration: 14, Func. Count: 193, Neg. LLF: 74.02536184855303
Iteration: 15, Func. Count: 206, Neg. LLF: 74.02533484896229
Iteration: 16, Func. Count: 219, Neg. LLF: 74.02532772475465
Iteration: 17, Func. Count: 232, Neg. LLF: 74.02532429135255
Iteration: 18, Func. Count: 245, Neg. LLF: 74.0253222503171
Iteration: 19, Func. Count: 257, Neg. LLF: 74.02532236171015
Optimization terminated successfully (Exit mode 0)
Current function value: 74.0253222503171
Iterations: 19
Function evaluations: 257
Gradient evaluations: 19
Iteration: 1, Func. Count: 7, Neg. LLF: 133.5820808402839
Iteration: 2, Func. Count: 17, Neg. LLF: 134.10494493669432
Iteration: 3, Func. Count: 25, Neg. LLF: 96.71069864857819
Iteration: 4, Func. Count: 32, Neg. LLF: 103.84541986866085
Iteration: 5, Func. Count: 39, Neg. LLF: 74.73472652125277
Iteration: 6, Func. Count: 45, Neg. LLF: 74.72789962794423
Iteration: 7, Func. Count: 51, Neg. LLF: 74.72672043704267
Iteration: 8, Func. Count: 57, Neg. LLF: 74.72661983395025
Iteration: 9, Func. Count: 63, Neg. LLF: 74.72660873956961
Iteration: 10, Func. Count: 69, Neg. LLF: 74.7266082014729
Optimization terminated successfully (Exit mode 0)
Current function value: 74.7266082014729
Iterations: 10
Function evaluations: 69
Gradient evaluations: 10
Iteration: 1, Func. Count: 8, Neg. LLF: 24140023.140285097
Iteration: 2, Func. Count: 18, Neg. LLF: 75.49660405229423
Iteration: 3, Func. Count: 26, Neg. LLF: 75.31665378187387
Iteration: 4, Func. Count: 33, Neg. LLF: 91.84874365874775
Iteration: 5, Func. Count: 41, Neg. LLF: 75.16351187804008
Iteration: 6, Func. Count: 48, Neg. LLF: 75.42516688780422
Iteration: 7, Func. Count: 57, Neg. LLF: 75.03283067927802
Iteration: 8, Func. Count: 64, Neg. LLF: 75.02028842565214
Iteration: 9, Func. Count: 71, Neg. LLF: 75.01818758731174
Iteration: 10, Func. Count: 78, Neg. LLF: 75.0181515914257
Iteration: 11, Func. Count: 85, Neg. LLF: 75.01815044789834
Iteration: 12, Func. Count: 91, Neg. LLF: 75.018150447878
Optimization terminated successfully (Exit mode 0)
Current function value: 75.01815044789834
Iterations: 12
Function evaluations: 91
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 24069727.871697407
Iteration: 2, Func. Count: 19, Neg. LLF: 75.37329235072445
Iteration: 3, Func. Count: 28, Neg. LLF: 75.1209123674278
Iteration: 4, Func. Count: 36, Neg. LLF: 75.69911291703043
Iteration: 5, Func. Count: 45, Neg. LLF: 75.03155770382406
Iteration: 6, Func. Count: 53, Neg. LLF: 75.0249932094965
Iteration: 7, Func. Count: 61, Neg. LLF: 75.02482262377292
Iteration: 8, Func. Count: 69, Neg. LLF: 75.02362169596174
Iteration: 9, Func. Count: 77, Neg. LLF: 75.01818620156395
Iteration: 10, Func. Count: 85, Neg. LLF: 75.01820402002555
Iteration: 11, Func. Count: 94, Neg. LLF: 75.0181504517866
Iteration: 12, Func. Count: 101, Neg. LLF: 75.01815045202152
Optimization terminated successfully (Exit mode 0)
Current function value: 75.0181504517866
Iterations: 12
Function evaluations: 101
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 24093071.511434935
Iteration: 2, Func. Count: 21, Neg. LLF: 92.64337851270862
Iteration: 3, Func. Count: 32, Neg. LLF: 77.3270915283741
Iteration: 4, Func. Count: 42, Neg. LLF: 74.59258920290146
Iteration: 5, Func. Count: 51, Neg. LLF: 74.07596084098557
Iteration: 6, Func. Count: 60, Neg. LLF: 74.06381668667986
Iteration: 7, Func. Count: 69, Neg. LLF: 74.06060838544813
Iteration: 8, Func. Count: 78, Neg. LLF: 74.05935472340744
Iteration: 9, Func. Count: 87, Neg. LLF: 74.05905143075024
Iteration: 10, Func. Count: 96, Neg. LLF: 74.05896389609983
Iteration: 11, Func. Count: 105, Neg. LLF: 74.05895920294981
Iteration: 12, Func. Count: 113, Neg. LLF: 74.05895920290044
Optimization terminated successfully (Exit mode 0)
Current function value: 74.05895920294981
Iterations: 12
Function evaluations: 113
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 24097130.76241975
Iteration: 2, Func. Count: 23, Neg. LLF: 75.32215647762979
Iteration: 3, Func. Count: 34, Neg. LLF: 75.08537919904556
Iteration: 4, Func. Count: 44, Neg. LLF: 77.98921486767486
Iteration: 5, Func. Count: 56, Neg. LLF: 75.06219898582862
Iteration: 6, Func. Count: 66, Neg. LLF: 75.03299329663002
Iteration: 7, Func. Count: 76, Neg. LLF: 75.02633508345376
Iteration: 8, Func. Count: 86, Neg. LLF: 75.01831620767818
Iteration: 9, Func. Count: 96, Neg. LLF: 74.99784045224384
Iteration: 10, Func. Count: 106, Neg. LLF: 74.98098965326697
Iteration: 11, Func. Count: 116, Neg. LLF: 74.90149498988468
Iteration: 12, Func. Count: 126, Neg. LLF: 74.59461024498427
Iteration: 13, Func. Count: 136, Neg. LLF: 74.4783475039796
Iteration: 14, Func. Count: 146, Neg. LLF: 74.1492213131694
Iteration: 15, Func. Count: 156, Neg. LLF: 82002538.49663343
Iteration: 16, Func. Count: 168, Neg. LLF: 156.18999208952874
Iteration: 17, Func. Count: 180, Neg. LLF: 76.21478978997658
Iteration: 18, Func. Count: 192, Neg. LLF: 74.05896414433933
Iteration: 19, Func. Count: 202, Neg. LLF: 74.05895920642095
Iteration: 20, Func. Count: 211, Neg. LLF: 74.05895930817961
Optimization terminated successfully (Exit mode 0)
Current function value: 74.05895920642095
Iterations: 21
Function evaluations: 211
Gradient evaluations: 20
Iteration: 1, Func. Count: 8, Neg. LLF: 132.1128824775092
Iteration: 2, Func. Count: 19, Neg. LLF: 132.16918673740372
Iteration: 3, Func. Count: 28, Neg. LLF: 96.8828566710444
Iteration: 4, Func. Count: 36, Neg. LLF: 103.85242647946902
Iteration: 5, Func. Count: 44, Neg. LLF: 74.73614022471921
Iteration: 6, Func. Count: 51, Neg. LLF: 74.72937879771459
Iteration: 7, Func. Count: 58, Neg. LLF: 74.72680217827421
Iteration: 8, Func. Count: 65, Neg. LLF: 74.72661169771034
Iteration: 9, Func. Count: 72, Neg. LLF: 74.72660837106393
Iteration: 10, Func. Count: 78, Neg. LLF: 74.72660823714756
Optimization terminated successfully (Exit mode 0)
Current function value: 74.72660837106393
Iterations: 10
Function evaluations: 78
Gradient evaluations: 10
Iteration: 1, Func. Count: 9, Neg. LLF: 77.7971423873183
Iteration: 2, Func. Count: 20, Neg. LLF: 269.13617856530686
Iteration: 3, Func. Count: 29, Neg. LLF: 23645.72898985584
Iteration: 4, Func. Count: 39, Neg. LLF: 75.23337160227723
Iteration: 5, Func. Count: 48, Neg. LLF: 74.86983639143786
Iteration: 6, Func. Count: 56, Neg. LLF: 74.78815073330769
Iteration: 7, Func. Count: 64, Neg. LLF: 74.73138453794118
Iteration: 8, Func. Count: 72, Neg. LLF: 74.72673336290792
Iteration: 9, Func. Count: 80, Neg. LLF: 74.72668656201246
Iteration: 10, Func. Count: 88, Neg. LLF: 74.72661964960857
Iteration: 11, Func. Count: 96, Neg. LLF: 74.72660909226344
Iteration: 12, Func. Count: 104, Neg. LLF: 74.72660821108711
Optimization terminated successfully (Exit mode 0)
Current function value: 74.72660821108711
Iterations: 12
Function evaluations: 104
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 25691986.16984094
Iteration: 2, Func. Count: 21, Neg. LLF: 75.77525620310816
Iteration: 3, Func. Count: 31, Neg. LLF: 75.08194128704136
Iteration: 4, Func. Count: 40, Neg. LLF: 77.34424269053986
Iteration: 5, Func. Count: 51, Neg. LLF: 75.02616745821194
Iteration: 6, Func. Count: 60, Neg. LLF: 75.02440060559827
Iteration: 7, Func. Count: 69, Neg. LLF: 75.02436025405203
Iteration: 8, Func. Count: 78, Neg. LLF: 75.02409242744903
Iteration: 9, Func. Count: 87, Neg. LLF: 75.02332239724397
Iteration: 10, Func. Count: 96, Neg. LLF: 75.02218387554056
Iteration: 11, Func. Count: 105, Neg. LLF: 75.01918964177683
Iteration: 12, Func. Count: 114, Neg. LLF: 75.01872434589171
Iteration: 13, Func. Count: 123, Neg. LLF: 75.01815095111345
Iteration: 14, Func. Count: 132, Neg. LLF: 75.01815103205054
Optimization terminated successfully (Exit mode 0)
Current function value: 75.01815062497053
Iterations: 14
Function evaluations: 133
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 25533141.125376515
Iteration: 2, Func. Count: 23, Neg. LLF: 82.9397760458595
Iteration: 3, Func. Count: 35, Neg. LLF: 76.01124958280222
Iteration: 4, Func. Count: 46, Neg. LLF: 74.17308108200062
Iteration: 5, Func. Count: 56, Neg. LLF: 74.07638488384896
Iteration: 6, Func. Count: 66, Neg. LLF: 74.06115949974462
Iteration: 7, Func. Count: 76, Neg. LLF: 74.0592201466904
Iteration: 8, Func. Count: 86, Neg. LLF: 74.0589739257086
Iteration: 9, Func. Count: 96, Neg. LLF: 74.05895909693513
Iteration: 10, Func. Count: 105, Neg. LLF: 74.05895909692264
Optimization terminated successfully (Exit mode 0)
Current function value: 74.05895909693513
Iterations: 10
Function evaluations: 105
Gradient evaluations: 10
Iteration: 1, Func. Count: 12, Neg. LLF: 25238874.764518037
Iteration: 2, Func. Count: 25, Neg. LLF: 75.25524314679598
Iteration: 3, Func. Count: 36, Neg. LLF: 75.07871806347121
Iteration: 4, Func. Count: 47, Neg. LLF: 104.5532339492752
Iteration: 5, Func. Count: 60, Neg. LLF: 75.06842440162724
Iteration: 6, Func. Count: 72, Neg. LLF: 75.01821746780318
Iteration: 7, Func. Count: 83, Neg. LLF: 74.98830504016368
Iteration: 8, Func. Count: 94, Neg. LLF: 74.96983771148165
Iteration: 9, Func. Count: 105, Neg. LLF: 74.88167516611081
Iteration: 10, Func. Count: 116, Neg. LLF: 74.84132199412976
Iteration: 11, Func. Count: 127, Neg. LLF: 74.83280360975138
Iteration: 12, Func. Count: 138, Neg. LLF: 74.83251924826133
Iteration: 13, Func. Count: 149, Neg. LLF: 74.832475416633
Iteration: 14, Func. Count: 160, Neg. LLF: 74.83247492075895
Optimization terminated successfully (Exit mode 0)
Current function value: 74.83247492075895
Iterations: 14
Function evaluations: 160
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 155.8361590908063
Iteration: 2, Func. Count: 20, Neg. LLF: 139.2184953049284
Iteration: 3, Func. Count: 30, Neg. LLF: 90.88391317733357
Iteration: 4, Func. Count: 39, Neg. LLF: 93.09430917481355
Iteration: 5, Func. Count: 48, Neg. LLF: 82.61236579090298
Iteration: 6, Func. Count: 57, Neg. LLF: 77.92510581665519
Iteration: 7, Func. Count: 66, Neg. LLF: 79.06976914021594
Iteration: 8, Func. Count: 75, Neg. LLF: 74.5424670111905
Iteration: 9, Func. Count: 83, Neg. LLF: 74.53630667563736
Iteration: 10, Func. Count: 91, Neg. LLF: 74.53257229092742
Iteration: 11, Func. Count: 99, Neg. LLF: 74.53111339722757
Iteration: 12, Func. Count: 107, Neg. LLF: 74.53019681422005
Iteration: 13, Func. Count: 115, Neg. LLF: 74.53004969440222
Iteration: 14, Func. Count: 123, Neg. LLF: 74.53004322892403
Iteration: 15, Func. Count: 131, Neg. LLF: 74.53004238728622
Optimization terminated successfully (Exit mode 0)
Current function value: 74.53004238728622
Iterations: 15
Function evaluations: 131
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 76.9819266841931
Iteration: 2, Func. Count: 22, Neg. LLF: 1419.9397104534269
Iteration: 3, Func. Count: 33, Neg. LLF: 667.3834988166265
Iteration: 4, Func. Count: 43, Neg. LLF: 78.13929741841119
Iteration: 5, Func. Count: 54, Neg. LLF: 75.06925296455368
Iteration: 6, Func. Count: 63, Neg. LLF: 74.88753135840685
Iteration: 7, Func. Count: 72, Neg. LLF: 74.56064923565116
Iteration: 8, Func. Count: 81, Neg. LLF: 74.53704476042141
Iteration: 9, Func. Count: 90, Neg. LLF: 74.53096622033672
Iteration: 10, Func. Count: 99, Neg. LLF: 74.53031795380882
Iteration: 11, Func. Count: 108, Neg. LLF: 74.53016529002242
Iteration: 12, Func. Count: 117, Neg. LLF: 74.53008263660345
Iteration: 13, Func. Count: 126, Neg. LLF: 74.53005505400267
Iteration: 14, Func. Count: 135, Neg. LLF: 74.53004695506343
Iteration: 15, Func. Count: 144, Neg. LLF: 74.5300431917104
Iteration: 16, Func. Count: 153, Neg. LLF: 74.53004244523086
Optimization terminated successfully (Exit mode 0)
Current function value: 74.53004244523086
Iterations: 16
Function evaluations: 153
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 26300373.577613935
Iteration: 2, Func. Count: 23, Neg. LLF: 76.17123507815957
Iteration: 3, Func. Count: 34, Neg. LLF: 75.10655882717265
Iteration: 4, Func. Count: 44, Neg. LLF: 75.36349819073462
Iteration: 5, Func. Count: 55, Neg. LLF: 75.05898779859936
Iteration: 6, Func. Count: 65, Neg. LLF: 75.00360859355811
Iteration: 7, Func. Count: 75, Neg. LLF: 108.4954687126118
Iteration: 8, Func. Count: 87, Neg. LLF: 75.11170410504693
Iteration: 9, Func. Count: 98, Neg. LLF: 74.91140783208957
Iteration: 10, Func. Count: 108, Neg. LLF: 55337682.59294115
Iteration: 11, Func. Count: 121, Neg. LLF: 99033705.34342104
Iteration: 12, Func. Count: 133, Neg. LLF: 100.0029436937884
Iteration: 13, Func. Count: 145, Neg. LLF: 74.85661269007954
Iteration: 14, Func. Count: 155, Neg. LLF: 74.85660833393929
Iteration: 15, Func. Count: 164, Neg. LLF: 74.8566083336676
Optimization terminated successfully (Exit mode 0)
Current function value: 74.85660833393929
Iterations: 16
Function evaluations: 164
Gradient evaluations: 15
Iteration: 1, Func. Count: 12, Neg. LLF: 26213833.563751914
Iteration: 2, Func. Count: 25, Neg. LLF: 133.87448901892805
Iteration: 3, Func. Count: 38, Neg. LLF: 82.8844947286046
Iteration: 4, Func. Count: 51, Neg. LLF: 74.61527819539288
Iteration: 5, Func. Count: 62, Neg. LLF: 74.7136760930524
Iteration: 6, Func. Count: 74, Neg. LLF: 74.05409487963597
Iteration: 7, Func. Count: 85, Neg. LLF: 74.02793159210806
Iteration: 8, Func. Count: 96, Neg. LLF: 74.025787677764
Iteration: 9, Func. Count: 107, Neg. LLF: 74.02546973760566
Iteration: 10, Func. Count: 118, Neg. LLF: 74.02540204094586
Iteration: 11, Func. Count: 129, Neg. LLF: 74.0253279293272
Iteration: 12, Func. Count: 140, Neg. LLF: 74.02532201439126
Iteration: 13, Func. Count: 150, Neg. LLF: 74.02532201457879
Optimization terminated successfully (Exit mode 0)
Current function value: 74.02532201439126
Iterations: 13
Function evaluations: 150
Gradient evaluations: 13
Iteration: 1, Func. Count: 13, Neg. LLF: 26126012.826573614
Iteration: 2, Func. Count: 27, Neg. LLF: 91.43402817557121
Iteration: 3, Func. Count: 41, Neg. LLF: 78.83808430212648
Iteration: 4, Func. Count: 54, Neg. LLF: 75.02033178753753
Iteration: 5, Func. Count: 66, Neg. LLF: 74.92800589320942
Iteration: 6, Func. Count: 78, Neg. LLF: 74.98965878565016
Iteration: 7, Func. Count: 91, Neg. LLF: 74.63786753719037
Iteration: 8, Func. Count: 103, Neg. LLF: 80.76369837292259
Iteration: 9, Func. Count: 117, Neg. LLF: 74.3045473654514
Iteration: 10, Func. Count: 129, Neg. LLF: 74.1219810861407
Iteration: 11, Func. Count: 141, Neg. LLF: 74.05253114201538
Iteration: 12, Func. Count: 153, Neg. LLF: 74.02913217614034
Iteration: 13, Func. Count: 165, Neg. LLF: 74.02671917847886
Iteration: 14, Func. Count: 177, Neg. LLF: 74.02632257120534
Iteration: 15, Func. Count: 189, Neg. LLF: 74.02600764520831
Iteration: 16, Func. Count: 201, Neg. LLF: 74.02553723997791
Iteration: 17, Func. Count: 213, Neg. LLF: 74.02539528315825
Iteration: 18, Func. Count: 225, Neg. LLF: 5673.274029248903
Iteration: 19, Func. Count: 240, Neg. LLF: 74.14251609384452
Iteration: 20, Func. Count: 254, Neg. LLF: 74.02696933570648
Iteration: 21, Func. Count: 268, Neg. LLF: 74.02633082712728
Iteration: 22, Func. Count: 282, Neg. LLF: 74.02532183430017
Iteration: 23, Func. Count: 293, Neg. LLF: 74.02532194574641
Optimization terminated successfully (Exit mode 0)
Current function value: 74.02532183430017
Iterations: 24
Function evaluations: 293
Gradient evaluations: 23
Iteration: 1, Func. Count: 10, Neg. LLF: 149.93826554792778
Iteration: 2, Func. Count: 22, Neg. LLF: 138.50133069729614
Iteration: 3, Func. Count: 33, Neg. LLF: 7260675.544905962
Iteration: 4, Func. Count: 43, Neg. LLF: 82.50647201643176
Iteration: 5, Func. Count: 53, Neg. LLF: 80.4972691456916
Iteration: 6, Func. Count: 63, Neg. LLF: 77.58713074092506
Iteration: 7, Func. Count: 73, Neg. LLF: 74.3451610426648
Iteration: 8, Func. Count: 82, Neg. LLF: 74.31092672144833
Iteration: 9, Func. Count: 91, Neg. LLF: 75.88975111684447
Iteration: 10, Func. Count: 101, Neg. LLF: 74.49013882960458
Iteration: 11, Func. Count: 111, Neg. LLF: 74.20838427898266
Iteration: 12, Func. Count: 120, Neg. LLF: 74.20656147231692
Iteration: 13, Func. Count: 129, Neg. LLF: 74.20642880746223
Iteration: 14, Func. Count: 138, Neg. LLF: 74.20642473687889
Iteration: 15, Func. Count: 146, Neg. LLF: 74.20642470506355
Optimization terminated successfully (Exit mode 0)
Current function value: 74.20642473687889
Iterations: 15
Function evaluations: 146
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 77.05488424660896
Iteration: 2, Func. Count: 24, Neg. LLF: 8594632.520542283
Iteration: 3, Func. Count: 35, Neg. LLF: 1843.7799913683352
Iteration: 4, Func. Count: 46, Neg. LLF: 77.96401998297507
Iteration: 5, Func. Count: 57, Neg. LLF: 74.37322465998186
Iteration: 6, Func. Count: 67, Neg. LLF: 75.91277764042894
Iteration: 7, Func. Count: 78, Neg. LLF: 79.39708616979492
Iteration: 8, Func. Count: 89, Neg. LLF: 74.42346547648341
Iteration: 9, Func. Count: 100, Neg. LLF: 74.20896258660079
Iteration: 10, Func. Count: 110, Neg. LLF: 74.20775524071558
Iteration: 11, Func. Count: 120, Neg. LLF: 74.2065405567191
Iteration: 12, Func. Count: 130, Neg. LLF: 74.2064344204395
Iteration: 13, Func. Count: 140, Neg. LLF: 74.20642459162482
Iteration: 14, Func. Count: 149, Neg. LLF: 74.20642460602217
Optimization terminated successfully (Exit mode 0)
Current function value: 74.20642459162482
Iterations: 14
Function evaluations: 149
Gradient evaluations: 14
Iteration: 1, Func. Count: 12, Neg. LLF: 25831436.119015906
Iteration: 2, Func. Count: 25, Neg. LLF: 77.99782661420085
Iteration: 3, Func. Count: 37, Neg. LLF: 80.29354559607673
Iteration: 4, Func. Count: 49, Neg. LLF: 75.1230898370608
Iteration: 5, Func. Count: 60, Neg. LLF: 75.13092705022893
Iteration: 6, Func. Count: 72, Neg. LLF: 75.04421828281488
Iteration: 7, Func. Count: 83, Neg. LLF: 75.03536845141446
Iteration: 8, Func. Count: 94, Neg. LLF: 75.0260923802679
Iteration: 9, Func. Count: 105, Neg. LLF: 75.02554076603685
Iteration: 10, Func. Count: 116, Neg. LLF: 75.02550735419824
Iteration: 11, Func. Count: 126, Neg. LLF: 75.02550735445818
Optimization terminated successfully (Exit mode 0)
Current function value: 75.02550735419824
Iterations: 11
Function evaluations: 126
Gradient evaluations: 11
Iteration: 1, Func. Count: 13, Neg. LLF: 25936571.93299993
Iteration: 2, Func. Count: 27, Neg. LLF: 135.175066257218
Iteration: 3, Func. Count: 41, Neg. LLF: 85.2388466311777
Iteration: 4, Func. Count: 55, Neg. LLF: 97.94303458866914
Iteration: 5, Func. Count: 68, Neg. LLF: 75.89642586242446
Iteration: 6, Func. Count: 81, Neg. LLF: 74.43981237884466
Iteration: 7, Func. Count: 93, Neg. LLF: 74.0848897292401
Iteration: 8, Func. Count: 105, Neg. LLF: 74.05902107872727
Iteration: 9, Func. Count: 117, Neg. LLF: 74.03062067388665
Iteration: 10, Func. Count: 129, Neg. LLF: 74.02712866010138
Iteration: 11, Func. Count: 141, Neg. LLF: 74.02603833706567
Iteration: 12, Func. Count: 153, Neg. LLF: 74.0256654563185
Iteration: 13, Func. Count: 165, Neg. LLF: 74.02534633718246
Iteration: 14, Func. Count: 177, Neg. LLF: 74.02532745125487
Iteration: 15, Func. Count: 189, Neg. LLF: 74.58534462163526
Optimization terminated successfully (Exit mode 0)
Current function value: 74.02532720060735
Iterations: 16
Function evaluations: 192
Gradient evaluations: 15
Iteration: 1, Func. Count: 14, Neg. LLF: 25978377.12477279
Iteration: 2, Func. Count: 29, Neg. LLF: 119.80857589885284
Iteration: 3, Func. Count: 44, Neg. LLF: 81.878650986136
Iteration: 4, Func. Count: 59, Neg. LLF: 134.53681283435438
Iteration: 5, Func. Count: 73, Neg. LLF: 76.16333333439117
Iteration: 6, Func. Count: 87, Neg. LLF: 74.53319484363058
Iteration: 7, Func. Count: 100, Neg. LLF: 74.17957069563413
Iteration: 8, Func. Count: 113, Neg. LLF: 74.03297518836646
Iteration: 9, Func. Count: 126, Neg. LLF: 74.02614284937901
Iteration: 10, Func. Count: 139, Neg. LLF: 74.02539779895514
Iteration: 11, Func. Count: 152, Neg. LLF: 74.02534293404477
Iteration: 12, Func. Count: 165, Neg. LLF: 74.02532436024843
Iteration: 13, Func. Count: 178, Neg. LLF: 74.02532279758157
Iteration: 14, Func. Count: 191, Neg. LLF: 74.02532191850116
Optimization terminated successfully (Exit mode 0)
Current function value: 74.02532191850116
Iterations: 14
Function evaluations: 191
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 135.5141452347167
Iteration: 2, Func. Count: 25, Neg. LLF: 129.13946595414274
Iteration: 3, Func. Count: 37, Neg. LLF: 7276970.610846568
Iteration: 4, Func. Count: 48, Neg. LLF: 98.97779091673671
Iteration: 5, Func. Count: 59, Neg. LLF: 74.38506598607033
Iteration: 6, Func. Count: 69, Neg. LLF: 74.54975739519313
Iteration: 7, Func. Count: 80, Neg. LLF: 76.19775721741597
Iteration: 8, Func. Count: 91, Neg. LLF: 74.47075323366816
Iteration: 9, Func. Count: 102, Neg. LLF: 74.2068666849649
Iteration: 10, Func. Count: 112, Neg. LLF: 74.2064385947319
Iteration: 11, Func. Count: 122, Neg. LLF: 74.20642571434641
Iteration: 12, Func. Count: 132, Neg. LLF: 74.20642471305894
Iteration: 13, Func. Count: 141, Neg. LLF: 74.20642481716366
Optimization terminated successfully (Exit mode 0)
Current function value: 74.20642471305894
Iterations: 13
Function evaluations: 141
Gradient evaluations: 13
Iteration: 1, Func. Count: 12, Neg. LLF: 76.63044710114917
Iteration: 2, Func. Count: 26, Neg. LLF: 6674149.754356062
Iteration: 3, Func. Count: 38, Neg. LLF: 5330.847474639412
Iteration: 4, Func. Count: 50, Neg. LLF: 76.97924761974275
Iteration: 5, Func. Count: 62, Neg. LLF: 74.5701422332884
Iteration: 6, Func. Count: 73, Neg. LLF: 75.83134176662026
Iteration: 7, Func. Count: 85, Neg. LLF: 89.50059347827404
Iteration: 8, Func. Count: 97, Neg. LLF: 74.5743288958625
Iteration: 9, Func. Count: 109, Neg. LLF: 74.209806035077
Iteration: 10, Func. Count: 120, Neg. LLF: 74.20769426253834
Iteration: 11, Func. Count: 131, Neg. LLF: 74.20688625097786
Iteration: 12, Func. Count: 142, Neg. LLF: 74.20647972156188
Iteration: 13, Func. Count: 153, Neg. LLF: 74.20642824988224
Iteration: 14, Func. Count: 164, Neg. LLF: 74.20642461209005
Iteration: 15, Func. Count: 174, Neg. LLF: 74.20642462648044
Optimization terminated successfully (Exit mode 0)
Current function value: 74.20642461209005
Iterations: 15
Function evaluations: 174
Gradient evaluations: 15
Iteration: 1, Func. Count: 13, Neg. LLF: 25492818.461953852
Iteration: 2, Func. Count: 27, Neg. LLF: 77.45723770804679
Iteration: 3, Func. Count: 40, Neg. LLF: 80.07278992087211
Iteration: 4, Func. Count: 53, Neg. LLF: 75.11728283694187
Iteration: 5, Func. Count: 65, Neg. LLF: 75.15669881820605
Iteration: 6, Func. Count: 78, Neg. LLF: 75.03668414177712
Iteration: 7, Func. Count: 90, Neg. LLF: 75.03412474570068
Iteration: 8, Func. Count: 103, Neg. LLF: 75.02617414210641
Iteration: 9, Func. Count: 115, Neg. LLF: 75.02551096431932
Iteration: 10, Func. Count: 127, Neg. LLF: 75.02550994660868
Iteration: 11, Func. Count: 138, Neg. LLF: 75.02550994675349
Optimization terminated successfully (Exit mode 0)
Current function value: 75.02550994660868
Iterations: 11
Function evaluations: 138
Gradient evaluations: 11
Iteration: 1, Func. Count: 14, Neg. LLF: 25641078.13659367
Iteration: 2, Func. Count: 29, Neg. LLF: 135.05889074326925
Iteration: 3, Func. Count: 44, Neg. LLF: 86.10627980200844
Iteration: 4, Func. Count: 59, Neg. LLF: 93.40837623745372
Iteration: 5, Func. Count: 73, Neg. LLF: 75.99245169189447
Iteration: 6, Func. Count: 87, Neg. LLF: 74.44946555795455
Iteration: 7, Func. Count: 100, Neg. LLF: 74.08494005939436
Iteration: 8, Func. Count: 113, Neg. LLF: 74.04153584887443
Iteration: 9, Func. Count: 126, Neg. LLF: 74.02843217784815
Iteration: 10, Func. Count: 139, Neg. LLF: 74.02641017475801
Iteration: 11, Func. Count: 152, Neg. LLF: 74.02586283501815
Iteration: 12, Func. Count: 165, Neg. LLF: 74.02548018902743
Iteration: 13, Func. Count: 178, Neg. LLF: 74.02535511403293
Iteration: 14, Func. Count: 191, Neg. LLF: 74.02532800430181
Iteration: 15, Func. Count: 204, Neg. LLF: 74.02532382973936
Iteration: 16, Func. Count: 217, Neg. LLF: 74.02532275713317
Iteration: 17, Func. Count: 230, Neg. LLF: 74.02532210762627
Optimization terminated successfully (Exit mode 0)
Current function value: 74.02532210762627
Iterations: 18
Function evaluations: 230
Gradient evaluations: 17
Iteration: 1, Func. Count: 15, Neg. LLF: 25635333.237648357
Iteration: 2, Func. Count: 31, Neg. LLF: 129.12567822426902
Iteration: 3, Func. Count: 47, Neg. LLF: 83.23723464483936
Iteration: 4, Func. Count: 63, Neg. LLF: 114.28946879002098
Iteration: 5, Func. Count: 78, Neg. LLF: 77.22893527238428
Iteration: 6, Func. Count: 93, Neg. LLF: 74.57910808047441
Iteration: 7, Func. Count: 107, Neg. LLF: 74.0871966819968
Iteration: 8, Func. Count: 121, Neg. LLF: 74.02949444363409
Iteration: 9, Func. Count: 135, Neg. LLF: 74.02588445241759
Iteration: 10, Func. Count: 149, Neg. LLF: 74.02558740579457
Iteration: 11, Func. Count: 163, Neg. LLF: 74.0253355423009
Iteration: 12, Func. Count: 177, Neg. LLF: 74.02532274445315
Iteration: 13, Func. Count: 191, Neg. LLF: 74.02532181503899
Optimization terminated successfully (Exit mode 0)
Current function value: 74.02532181503899
Iterations: 13
Function evaluations: 191
Gradient evaluations: 13
Iteration: 1, Func. Count: 8, Neg. LLF: 130.9131673391088
Iteration: 2, Func. Count: 19, Neg. LLF: 132.4032296802306
Iteration: 3, Func. Count: 28, Neg. LLF: 143.10582422494588
Iteration: 4, Func. Count: 36, Neg. LLF: 105.96748444343542
Iteration: 5, Func. Count: 44, Neg. LLF: 74.7730296370518
Iteration: 6, Func. Count: 51, Neg. LLF: 74.72846117753407
Iteration: 7, Func. Count: 58, Neg. LLF: 74.72722041483307
Iteration: 8, Func. Count: 65, Neg. LLF: 74.72662927257281
Iteration: 9, Func. Count: 72, Neg. LLF: 74.72660942323002
Iteration: 10, Func. Count: 79, Neg. LLF: 74.7266082165655
Iteration: 11, Func. Count: 85, Neg. LLF: 74.72660836887113
Optimization terminated successfully (Exit mode 0)
Current function value: 74.7266082165655
Iterations: 11
Function evaluations: 85
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 24016658.677247312
Iteration: 2, Func. Count: 20, Neg. LLF: 75.39994411886856
Iteration: 3, Func. Count: 28, Neg. LLF: 75.77973339745768
Iteration: 4, Func. Count: 37, Neg. LLF: 98.23461687050172
Iteration: 5, Func. Count: 47, Neg. LLF: 75.02542770341879
Iteration: 6, Func. Count: 55, Neg. LLF: 75.03015284196016
Iteration: 7, Func. Count: 64, Neg. LLF: 75.01880197457015
Iteration: 8, Func. Count: 72, Neg. LLF: 75.01815053963455
Iteration: 9, Func. Count: 79, Neg. LLF: 75.01815053896553
Optimization terminated successfully (Exit mode 0)
Current function value: 75.01815053963455
Iterations: 9
Function evaluations: 79
Gradient evaluations: 9
Iteration: 1, Func. Count: 10, Neg. LLF: 24025733.494000774
Iteration: 2, Func. Count: 21, Neg. LLF: 75.34483068162125
Iteration: 3, Func. Count: 30, Neg. LLF: 75.22028703687032
Iteration: 4, Func. Count: 39, Neg. LLF: 81.12537031942318
Iteration: 5, Func. Count: 50, Neg. LLF: 75.03911721298105
Iteration: 6, Func. Count: 59, Neg. LLF: 75.0274695703382
Iteration: 7, Func. Count: 68, Neg. LLF: 75.02509886062789
Iteration: 8, Func. Count: 77, Neg. LLF: 75.02469241837099
Iteration: 9, Func. Count: 86, Neg. LLF: 75.02464535529033
Iteration: 10, Func. Count: 95, Neg. LLF: 75.02435755847885
Iteration: 11, Func. Count: 104, Neg. LLF: 75.02273135481398
Iteration: 12, Func. Count: 113, Neg. LLF: 75.0181699754127
Iteration: 13, Func. Count: 122, Neg. LLF: 75.0181522317363
Iteration: 14, Func. Count: 131, Neg. LLF: 75.01815314556073
Iteration: 15, Func. Count: 141, Neg. LLF: 75.01815287960467
Optimization terminated successfully (Exit mode 0)
Current function value: 75.018150667092
Iterations: 15
Function evaluations: 142
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 24049750.09480553
Iteration: 2, Func. Count: 23, Neg. LLF: 100.69549179375173
Iteration: 3, Func. Count: 35, Neg. LLF: 77.66659962768723
Iteration: 4, Func. Count: 46, Neg. LLF: 74.3386874374639
Iteration: 5, Func. Count: 56, Neg. LLF: 74.0661400494224
Iteration: 6, Func. Count: 66, Neg. LLF: 74.0619491050716
Iteration: 7, Func. Count: 76, Neg. LLF: 74.05896065408801
Iteration: 8, Func. Count: 86, Neg. LLF: 74.05895924660537
Iteration: 9, Func. Count: 95, Neg. LLF: 74.0589592464402
Optimization terminated successfully (Exit mode 0)
Current function value: 74.05895924660537
Iterations: 9
Function evaluations: 95
Gradient evaluations: 9
Iteration: 1, Func. Count: 12, Neg. LLF: 24055437.872652438
Iteration: 2, Func. Count: 25, Neg. LLF: 75.51466206973812
Iteration: 3, Func. Count: 37, Neg. LLF: 75.26354325684645
Iteration: 4, Func. Count: 49, Neg. LLF: 75.16054394365779
Iteration: 5, Func. Count: 60, Neg. LLF: 75.01992681589272
Iteration: 6, Func. Count: 71, Neg. LLF: 75.00336889124054
Iteration: 7, Func. Count: 83, Neg. LLF: 74.70439135759395
Iteration: 8, Func. Count: 94, Neg. LLF: 74.3339723921581
Iteration: 9, Func. Count: 105, Neg. LLF: 74.14752367139972
Iteration: 10, Func. Count: 116, Neg. LLF: 74.09565363430593
Iteration: 11, Func. Count: 127, Neg. LLF: 74.07903953059468
Iteration: 12, Func. Count: 138, Neg. LLF: 74.06053949136752
Iteration: 13, Func. Count: 149, Neg. LLF: 76.11059044182933
Iteration: 14, Func. Count: 162, Neg. LLF: 74.54592825576363
Iteration: 15, Func. Count: 175, Neg. LLF: 74.14566801652873
Iteration: 16, Func. Count: 188, Neg. LLF: 74.05895909534838
Iteration: 17, Func. Count: 198, Neg. LLF: 74.05895919726106
Optimization terminated successfully (Exit mode 0)
Current function value: 74.05895909534838
Iterations: 18
Function evaluations: 198
Gradient evaluations: 17
Iteration: 1, Func. Count: 9, Neg. LLF: 129.31109821259554
Iteration: 2, Func. Count: 21, Neg. LLF: 132.11416384628092
Iteration: 3, Func. Count: 31, Neg. LLF: 146.44061292103345
Iteration: 4, Func. Count: 40, Neg. LLF: 112.72104634173996
Iteration: 5, Func. Count: 49, Neg. LLF: 74.7852269175087
Iteration: 6, Func. Count: 57, Neg. LLF: 74.72945852142045
Iteration: 7, Func. Count: 65, Neg. LLF: 74.72740068028921
Iteration: 8, Func. Count: 73, Neg. LLF: 74.72667677390062
Iteration: 9, Func. Count: 81, Neg. LLF: 74.72661447995516
Iteration: 10, Func. Count: 89, Neg. LLF: 74.72660824829049
Iteration: 11, Func. Count: 96, Neg. LLF: 74.72660838220429
Optimization terminated successfully (Exit mode 0)
Current function value: 74.72660824829049
Iterations: 11
Function evaluations: 96
Gradient evaluations: 11
Iteration: 1, Func. Count: 10, Neg. LLF: 78.0036985972833
Iteration: 2, Func. Count: 22, Neg. LLF: 241.84043131592327
Iteration: 3, Func. Count: 32, Neg. LLF: 13298.03217004369
Iteration: 4, Func. Count: 43, Neg. LLF: 75.22517894330682
Iteration: 5, Func. Count: 53, Neg. LLF: 74.87358591873667
Iteration: 6, Func. Count: 62, Neg. LLF: 74.79303928396764
Iteration: 7, Func. Count: 71, Neg. LLF: 74.72735765280025
Iteration: 8, Func. Count: 80, Neg. LLF: 74.72677083728904
Iteration: 9, Func. Count: 89, Neg. LLF: 74.72670685272996
Iteration: 10, Func. Count: 98, Neg. LLF: 74.72661936210756
Iteration: 11, Func. Count: 107, Neg. LLF: 74.72660927609884
Iteration: 12, Func. Count: 116, Neg. LLF: 74.7266082108912
Iteration: 13, Func. Count: 124, Neg. LLF: 74.72660823992788
Optimization terminated successfully (Exit mode 0)
Current function value: 74.7266082108912
Iterations: 13
Function evaluations: 124
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 25512757.314788073
Iteration: 2, Func. Count: 23, Neg. LLF: 75.68552290816356
Iteration: 3, Func. Count: 34, Neg. LLF: 75.0831381729108
Iteration: 4, Func. Count: 44, Neg. LLF: 77.78688337670987
Iteration: 5, Func. Count: 56, Neg. LLF: 75.0278325710743
Iteration: 6, Func. Count: 66, Neg. LLF: 75.02408087721746
Iteration: 7, Func. Count: 76, Neg. LLF: 75.02401478888352
Iteration: 8, Func. Count: 86, Neg. LLF: 75.02392783980063
Iteration: 9, Func. Count: 96, Neg. LLF: 75.02364818914434
Iteration: 10, Func. Count: 106, Neg. LLF: 75.02307003761514
Iteration: 11, Func. Count: 116, Neg. LLF: 75.02158561140553
Iteration: 12, Func. Count: 126, Neg. LLF: 75.01944608433743
Iteration: 13, Func. Count: 136, Neg. LLF: 75.01888607436958
Iteration: 14, Func. Count: 146, Neg. LLF: 75.01819243524953
Iteration: 15, Func. Count: 156, Neg. LLF: 75.0181573602124
Iteration: 16, Func. Count: 166, Neg. LLF: 14384224.739087055
Iteration: 17, Func. Count: 181, Neg. LLF: 75.01821210967255
Optimization terminated successfully (Exit mode 0)
Current function value: 75.01815042431943
Iterations: 18
Function evaluations: 183
Gradient evaluations: 17
Iteration: 1, Func. Count: 12, Neg. LLF: 25381938.513841663
Iteration: 2, Func. Count: 25, Neg. LLF: 86.88339218719433
Iteration: 3, Func. Count: 38, Neg. LLF: 76.33583028196576
Iteration: 4, Func. Count: 50, Neg. LLF: 74.16391394358374
Iteration: 5, Func. Count: 61, Neg. LLF: 74.06970223252628
Iteration: 6, Func. Count: 72, Neg. LLF: 74.05997190483083
Iteration: 7, Func. Count: 83, Neg. LLF: 74.0590650879108
Iteration: 8, Func. Count: 94, Neg. LLF: 74.05896631967697
Iteration: 9, Func. Count: 105, Neg. LLF: 74.05895910067157
Iteration: 10, Func. Count: 115, Neg. LLF: 74.05895910065935
Optimization terminated successfully (Exit mode 0)
Current function value: 74.05895910067157
Iterations: 10
Function evaluations: 115
Gradient evaluations: 10
Iteration: 1, Func. Count: 13, Neg. LLF: 25110467.43030009
Iteration: 2, Func. Count: 27, Neg. LLF: 75.5122200010939
Iteration: 3, Func. Count: 40, Neg. LLF: 75.0938943988455
Iteration: 4, Func. Count: 52, Neg. LLF: 79.76787460333111
Iteration: 5, Func. Count: 66, Neg. LLF: 75.06975965106733
Iteration: 6, Func. Count: 79, Neg. LLF: 75.03024651836161
Iteration: 7, Func. Count: 91, Neg. LLF: 74.99664840263623
Iteration: 8, Func. Count: 103, Neg. LLF: 74.33778612350508
Iteration: 9, Func. Count: 115, Neg. LLF: 74.24693406749208
Iteration: 10, Func. Count: 127, Neg. LLF: 74.09284213538585
Iteration: 11, Func. Count: 139, Neg. LLF: 25127497.588128768
Iteration: 12, Func. Count: 153, Neg. LLF: 76.26861345579367
Iteration: 13, Func. Count: 167, Neg. LLF: 74.10487645476609
Iteration: 14, Func. Count: 181, Neg. LLF: 74.05962593188478
Iteration: 15, Func. Count: 193, Neg. LLF: 74.05895911387475
Iteration: 16, Func. Count: 204, Neg. LLF: 74.05895921577708
Optimization terminated successfully (Exit mode 0)
Current function value: 74.05895911387475
Iterations: 17
Function evaluations: 204
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 153.1724024867433
Iteration: 2, Func. Count: 22, Neg. LLF: 140.63787759296704
Iteration: 3, Func. Count: 33, Neg. LLF: 107.14665315251955
Iteration: 4, Func. Count: 43, Neg. LLF: 107.70997383381619
Iteration: 5, Func. Count: 53, Neg. LLF: 152.53590659416443
Iteration: 6, Func. Count: 63, Neg. LLF: 75.32558474156812
Iteration: 7, Func. Count: 72, Neg. LLF: 2528.669766310544
Iteration: 8, Func. Count: 82, Neg. LLF: 79.13498533032949
Iteration: 9, Func. Count: 93, Neg. LLF: 74.5496171925039
Iteration: 10, Func. Count: 102, Neg. LLF: 74.53466745628552
Iteration: 11, Func. Count: 111, Neg. LLF: 74.53176178768793
Iteration: 12, Func. Count: 120, Neg. LLF: 74.53068839748605
Iteration: 13, Func. Count: 129, Neg. LLF: 74.53006411169113
Iteration: 14, Func. Count: 138, Neg. LLF: 74.53004565885021
Iteration: 15, Func. Count: 147, Neg. LLF: 74.5300423891257
Iteration: 16, Func. Count: 155, Neg. LLF: 74.53004238912344
Optimization terminated successfully (Exit mode 0)
Current function value: 74.5300423891257
Iterations: 16
Function evaluations: 155
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 77.0676247694754
Iteration: 2, Func. Count: 24, Neg. LLF: 3711.4892668046587
Iteration: 3, Func. Count: 35, Neg. LLF: 1319.1677170149924
Iteration: 4, Func. Count: 46, Neg. LLF: 77.99811592644916
Iteration: 5, Func. Count: 58, Neg. LLF: 75.0713592621774
Iteration: 6, Func. Count: 68, Neg. LLF: 74.87638241798986
Iteration: 7, Func. Count: 78, Neg. LLF: 75.50355234737135
Iteration: 8, Func. Count: 89, Neg. LLF: 74.56690502830371
Iteration: 9, Func. Count: 99, Neg. LLF: 74.53233037503426
Iteration: 10, Func. Count: 109, Neg. LLF: 74.53133542645217
Iteration: 11, Func. Count: 119, Neg. LLF: 74.53071141686065
Iteration: 12, Func. Count: 129, Neg. LLF: 74.53010105515352
Iteration: 13, Func. Count: 139, Neg. LLF: 74.5300490979057
Iteration: 14, Func. Count: 149, Neg. LLF: 74.53004302206365
Iteration: 15, Func. Count: 158, Neg. LLF: 74.53004305397468
Optimization terminated successfully (Exit mode 0)
Current function value: 74.53004302206365
Iterations: 15
Function evaluations: 158
Gradient evaluations: 15
Iteration: 1, Func. Count: 12, Neg. LLF: 26089529.406562302
Iteration: 2, Func. Count: 25, Neg. LLF: 76.04388721163944
Iteration: 3, Func. Count: 37, Neg. LLF: 75.10671524237705
Iteration: 4, Func. Count: 48, Neg. LLF: 76.18821218038529
Iteration: 5, Func. Count: 60, Neg. LLF: 75.05024430036433
Iteration: 6, Func. Count: 71, Neg. LLF: 75.03113271891722
Iteration: 7, Func. Count: 82, Neg. LLF: 75.0255366418483
Iteration: 8, Func. Count: 93, Neg. LLF: 74.98919711091028
Iteration: 9, Func. Count: 104, Neg. LLF: 74.97191912730871
Iteration: 10, Func. Count: 115, Neg. LLF: 74.93844458527361
Iteration: 11, Func. Count: 126, Neg. LLF: 74.91160281473178
Iteration: 12, Func. Count: 137, Neg. LLF: 74.90231813392192
Iteration: 13, Func. Count: 148, Neg. LLF: 24705408.338625744
Iteration: 14, Func. Count: 162, Neg. LLF: 87.21732403665821
Iteration: 15, Func. Count: 175, Neg. LLF: 75.1000514782354
Iteration: 16, Func. Count: 187, Neg. LLF: 74.85661039791357
Iteration: 17, Func. Count: 198, Neg. LLF: 74.85660811970824
Iteration: 18, Func. Count: 208, Neg. LLF: 74.8566081196929
Optimization terminated successfully (Exit mode 0)
Current function value: 74.85660811970824
Iterations: 19
Function evaluations: 208
Gradient evaluations: 18
Iteration: 1, Func. Count: 13, Neg. LLF: 26030492.894251265
Iteration: 2, Func. Count: 27, Neg. LLF: 136.5506679822029
Iteration: 3, Func. Count: 41, Neg. LLF: 83.7344566813079
Iteration: 4, Func. Count: 55, Neg. LLF: 74.6861111070568
Iteration: 5, Func. Count: 67, Neg. LLF: 74.35562103572406
Iteration: 6, Func. Count: 79, Neg. LLF: 74.39955243329317
Iteration: 7, Func. Count: 92, Neg. LLF: 74.04823587491542
Iteration: 8, Func. Count: 104, Neg. LLF: 74.03491109133341
Iteration: 9, Func. Count: 116, Neg. LLF: 74.02901468791129
Iteration: 10, Func. Count: 128, Neg. LLF: 74.02614604759162
Iteration: 11, Func. Count: 140, Neg. LLF: 74.02546662544889
Iteration: 12, Func. Count: 152, Neg. LLF: 74.02533692860966
Iteration: 13, Func. Count: 164, Neg. LLF: 74.02532222048195
Iteration: 14, Func. Count: 175, Neg. LLF: 74.02532222072932
Optimization terminated successfully (Exit mode 0)
Current function value: 74.02532222048195
Iterations: 14
Function evaluations: 175
Gradient evaluations: 14
Iteration: 1, Func. Count: 14, Neg. LLF: 25957185.987623025
Iteration: 2, Func. Count: 29, Neg. LLF: 95.34114087016313
Iteration: 3, Func. Count: 44, Neg. LLF: 79.50393923867568
Iteration: 4, Func. Count: 59, Neg. LLF: 75.00278586628836
Iteration: 5, Func. Count: 72, Neg. LLF: 74.94196515856038
Iteration: 6, Func. Count: 85, Neg. LLF: 74.93869764005031
Iteration: 7, Func. Count: 99, Neg. LLF: 74.43249208199093
Iteration: 8, Func. Count: 112, Neg. LLF: 76.4403414684975
Iteration: 9, Func. Count: 128, Neg. LLF: 74.1703764135819
Iteration: 10, Func. Count: 141, Neg. LLF: 74.04365388142635
Iteration: 11, Func. Count: 154, Neg. LLF: 74.03345361957471
Iteration: 12, Func. Count: 167, Neg. LLF: 74.03046898323366
Iteration: 13, Func. Count: 180, Neg. LLF: 74.0263570029692
Iteration: 14, Func. Count: 193, Neg. LLF: 74.02558119142041
Iteration: 15, Func. Count: 206, Neg. LLF: 74.02542830389238
Iteration: 16, Func. Count: 219, Neg. LLF: 74.02537749340614
Iteration: 17, Func. Count: 232, Neg. LLF: 74.02533040739635
Iteration: 18, Func. Count: 245, Neg. LLF: 74.0253237179359
Iteration: 19, Func. Count: 258, Neg. LLF: 74.34514347905221
Optimization terminated successfully (Exit mode 0)
Current function value: 74.02532362398814
Iterations: 20
Function evaluations: 261
Gradient evaluations: 19
Iteration: 1, Func. Count: 11, Neg. LLF: 148.8732809245492
Iteration: 2, Func. Count: 24, Neg. LLF: 140.94514840337587
Iteration: 3, Func. Count: 36, Neg. LLF: 7387640.878862505
Iteration: 4, Func. Count: 47, Neg. LLF: 44418.92683515752
Iteration: 5, Func. Count: 58, Neg. LLF: 5461249.01141614
Iteration: 6, Func. Count: 69, Neg. LLF: 75.56848600922633
Iteration: 7, Func. Count: 80, Neg. LLF: 74.5788511297527
Iteration: 8, Func. Count: 90, Neg. LLF: 74.34582344188206
Iteration: 9, Func. Count: 100, Neg. LLF: 74.58499122801736
Iteration: 10, Func. Count: 111, Neg. LLF: 74.2216614944077
Iteration: 11, Func. Count: 121, Neg. LLF: 74.21908801554095
Iteration: 12, Func. Count: 132, Neg. LLF: 74.2095054473694
Iteration: 13, Func. Count: 143, Neg. LLF: 74.20658756279042
Iteration: 14, Func. Count: 153, Neg. LLF: 74.20643698848637
Iteration: 15, Func. Count: 163, Neg. LLF: 74.20642475465202
Iteration: 16, Func. Count: 172, Neg. LLF: 74.20642472283436
Optimization terminated successfully (Exit mode 0)
Current function value: 74.20642475465202
Iterations: 16
Function evaluations: 172
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 76.84296268192182
Iteration: 2, Func. Count: 26, Neg. LLF: 6214673.024008691
Iteration: 3, Func. Count: 38, Neg. LLF: 1950.4208388397526
Iteration: 4, Func. Count: 50, Neg. LLF: 77.59636301034294
Iteration: 5, Func. Count: 62, Neg. LLF: 74.42021100032991
Iteration: 6, Func. Count: 73, Neg. LLF: 75.8881900361341
Iteration: 7, Func. Count: 85, Neg. LLF: 81.80919742900535
Iteration: 8, Func. Count: 97, Neg. LLF: 74.43577935814736
Iteration: 9, Func. Count: 109, Neg. LLF: 74.20858128144332
Iteration: 10, Func. Count: 120, Neg. LLF: 74.20756656503728
Iteration: 11, Func. Count: 131, Neg. LLF: 74.20658933099834
Iteration: 12, Func. Count: 142, Neg. LLF: 74.20644371925069
Iteration: 13, Func. Count: 153, Neg. LLF: 74.20642472200808
Iteration: 14, Func. Count: 163, Neg. LLF: 74.20642473639452
Optimization terminated successfully (Exit mode 0)
Current function value: 74.20642472200808
Iterations: 14
Function evaluations: 163
Gradient evaluations: 14
Iteration: 1, Func. Count: 13, Neg. LLF: 25645072.39838118
Iteration: 2, Func. Count: 27, Neg. LLF: 77.82250543098982
Iteration: 3, Func. Count: 40, Neg. LLF: 81.15168682955007
Iteration: 4, Func. Count: 53, Neg. LLF: 75.1165484423317
Iteration: 5, Func. Count: 65, Neg. LLF: 75.15341531707396
Iteration: 6, Func. Count: 78, Neg. LLF: 75.03808109350102
Iteration: 7, Func. Count: 90, Neg. LLF: 75.03715188845155
Iteration: 8, Func. Count: 103, Neg. LLF: 75.0264615494273
Iteration: 9, Func. Count: 115, Neg. LLF: 75.0254985063315
Iteration: 10, Func. Count: 127, Neg. LLF: 75.02549602448325
Iteration: 11, Func. Count: 138, Neg. LLF: 75.0254960249134
Optimization terminated successfully (Exit mode 0)
Current function value: 75.02549602448325
Iterations: 11
Function evaluations: 138
Gradient evaluations: 11
Iteration: 1, Func. Count: 14, Neg. LLF: 25767857.223553494
Iteration: 2, Func. Count: 29, Neg. LLF: 137.17450669666985
Iteration: 3, Func. Count: 44, Neg. LLF: 86.26042645312722
Iteration: 4, Func. Count: 59, Neg. LLF: 96.8091909427225
Iteration: 5, Func. Count: 73, Neg. LLF: 76.08121994949151
Iteration: 6, Func. Count: 87, Neg. LLF: 74.43387772391895
Iteration: 7, Func. Count: 100, Neg. LLF: 74.07008509212774
Iteration: 8, Func. Count: 113, Neg. LLF: 74.05109906893486
Iteration: 9, Func. Count: 126, Neg. LLF: 74.02834702091249
Iteration: 10, Func. Count: 139, Neg. LLF: 74.02643541397173
Iteration: 11, Func. Count: 152, Neg. LLF: 74.02576662583444
Iteration: 12, Func. Count: 165, Neg. LLF: 74.0255474717549
Iteration: 13, Func. Count: 178, Neg. LLF: 74.02534240709919
Iteration: 14, Func. Count: 191, Neg. LLF: 74.02532821983668
Iteration: 15, Func. Count: 204, Neg. LLF: 74.02532642901802
Iteration: 16, Func. Count: 217, Neg. LLF: 74.02532536333194
Iteration: 17, Func. Count: 230, Neg. LLF: 74.0253232052495
Iteration: 18, Func. Count: 243, Neg. LLF: 74.02532180086469
Iteration: 19, Func. Count: 256, Neg. LLF: 74.02537413456847
Optimization terminated successfully (Exit mode 0)
Current function value: 74.0253217916558
Iterations: 20
Function evaluations: 258
Gradient evaluations: 19
Iteration: 1, Func. Count: 15, Neg. LLF: 25817413.728557456
Iteration: 2, Func. Count: 31, Neg. LLF: 133.05356653255217
Iteration: 3, Func. Count: 47, Neg. LLF: 83.07920343594805
Iteration: 4, Func. Count: 63, Neg. LLF: 126.9336952606187
Iteration: 5, Func. Count: 78, Neg. LLF: 76.96374420794308
Iteration: 6, Func. Count: 93, Neg. LLF: 74.5398479782725
Iteration: 7, Func. Count: 107, Neg. LLF: 74.10749044706927
Iteration: 8, Func. Count: 121, Neg. LLF: 74.02862429055999
Iteration: 9, Func. Count: 135, Neg. LLF: 74.02569339095838
Iteration: 10, Func. Count: 149, Neg. LLF: 74.02543417934686
Iteration: 11, Func. Count: 163, Neg. LLF: 74.02535618716419
Iteration: 12, Func. Count: 177, Neg. LLF: 74.02532494814254
Iteration: 13, Func. Count: 191, Neg. LLF: 74.0253223424387
Iteration: 14, Func. Count: 204, Neg. LLF: 74.02532245393454
Optimization terminated successfully (Exit mode 0)
Current function value: 74.0253223424387
Iterations: 14
Function evaluations: 204
Gradient evaluations: 14
Iteration: 1, Func. Count: 12, Neg. LLF: 137.00204476245918
Iteration: 2, Func. Count: 26, Neg. LLF: 135.8259035713357
Iteration: 3, Func. Count: 39, Neg. LLF: 7387360.952712084
Iteration: 4, Func. Count: 51, Neg. LLF: 399.8438080929217
Iteration: 5, Func. Count: 63, Neg. LLF: 5510289.055092771
Iteration: 6, Func. Count: 75, Neg. LLF: 76.14295646980406
Iteration: 7, Func. Count: 87, Neg. LLF: 74.53627776593197
Iteration: 8, Func. Count: 98, Neg. LLF: 74.28147164057806
Iteration: 9, Func. Count: 109, Neg. LLF: 74.35587531818389
Iteration: 10, Func. Count: 121, Neg. LLF: 74.22145600965571
Iteration: 11, Func. Count: 132, Neg. LLF: 74.23673925633683
Iteration: 12, Func. Count: 144, Neg. LLF: 74.21000717897955
Iteration: 13, Func. Count: 156, Neg. LLF: 74.20660388358704
Iteration: 14, Func. Count: 167, Neg. LLF: 74.20642474631659
Iteration: 15, Func. Count: 177, Neg. LLF: 74.20642464221018
Optimization terminated successfully (Exit mode 0)
Current function value: 74.20642474631659
Iterations: 15
Function evaluations: 177
Gradient evaluations: 15
Iteration: 1, Func. Count: 13, Neg. LLF: 76.61274114161445
Iteration: 2, Func. Count: 28, Neg. LLF: 6711819.144081719
Iteration: 3, Func. Count: 41, Neg. LLF: 20868.319270337022
Iteration: 4, Func. Count: 54, Neg. LLF: 76.26231439606892
Iteration: 5, Func. Count: 67, Neg. LLF: 74.5495726009288
Iteration: 6, Func. Count: 79, Neg. LLF: 75.89674899914179
Iteration: 7, Func. Count: 92, Neg. LLF: 81.81999368447696
Iteration: 8, Func. Count: 105, Neg. LLF: 74.40552680626651
Iteration: 9, Func. Count: 118, Neg. LLF: 74.20891612259274
Iteration: 10, Func. Count: 130, Neg. LLF: 74.20732371775915
Iteration: 11, Func. Count: 142, Neg. LLF: 74.20675474004028
Iteration: 12, Func. Count: 154, Neg. LLF: 74.2064754545402
Iteration: 13, Func. Count: 166, Neg. LLF: 74.20642996801692
Iteration: 14, Func. Count: 178, Neg. LLF: 74.20642470237406
Iteration: 15, Func. Count: 189, Neg. LLF: 74.20642471675764
Optimization terminated successfully (Exit mode 0)
Current function value: 74.20642470237406
Iterations: 15
Function evaluations: 189
Gradient evaluations: 15
Iteration: 1, Func. Count: 14, Neg. LLF: 25324119.46663585
Iteration: 2, Func. Count: 29, Neg. LLF: 77.31563497518954
Iteration: 3, Func. Count: 43, Neg. LLF: 81.02359541545164
Iteration: 4, Func. Count: 57, Neg. LLF: 75.11482104064976
Iteration: 5, Func. Count: 70, Neg. LLF: 75.17109784119403
Iteration: 6, Func. Count: 84, Neg. LLF: 75.03162075158198
Iteration: 7, Func. Count: 97, Neg. LLF: 75.02970340323142
Iteration: 8, Func. Count: 110, Neg. LLF: 75.02569056003955
Iteration: 9, Func. Count: 123, Neg. LLF: 75.02552932868512
Iteration: 10, Func. Count: 136, Neg. LLF: 75.02551263046796
Iteration: 11, Func. Count: 148, Neg. LLF: 75.02551263037581
Optimization terminated successfully (Exit mode 0)
Current function value: 75.02551263046796
Iterations: 11
Function evaluations: 148
Gradient evaluations: 11
Iteration: 1, Func. Count: 15, Neg. LLF: 25484517.36386039
Iteration: 2, Func. Count: 31, Neg. LLF: 137.91268704723672
Iteration: 3, Func. Count: 47, Neg. LLF: 87.14102226196584
Iteration: 4, Func. Count: 63, Neg. LLF: 92.78759094222798
Iteration: 5, Func. Count: 78, Neg. LLF: 76.17046499993013
Iteration: 6, Func. Count: 93, Neg. LLF: 74.44406780775775
Iteration: 7, Func. Count: 107, Neg. LLF: 74.07111023600211
Iteration: 8, Func. Count: 121, Neg. LLF: 74.03817219834191
Iteration: 9, Func. Count: 135, Neg. LLF: 74.02711859100165
Iteration: 10, Func. Count: 149, Neg. LLF: 74.02605256698583
Iteration: 11, Func. Count: 163, Neg. LLF: 74.0256379991373
Iteration: 12, Func. Count: 177, Neg. LLF: 74.02546187081212
Iteration: 13, Func. Count: 191, Neg. LLF: 74.02533998614125
Iteration: 14, Func. Count: 205, Neg. LLF: 78.66127120748531
Iteration: 15, Func. Count: 222, Neg. LLF: 74.05872869783073
Iteration: 16, Func. Count: 238, Neg. LLF: 74.02637323618197
Iteration: 17, Func. Count: 254, Neg. LLF: 74.026303133906
Optimization terminated successfully (Exit mode 0)
Current function value: 74.02532959553912
Iterations: 18
Function evaluations: 256
Gradient evaluations: 17
Iteration: 1, Func. Count: 16, Neg. LLF: 25488161.923748683
Iteration: 2, Func. Count: 33, Neg. LLF: 137.25867849363883
Iteration: 3, Func. Count: 50, Neg. LLF: 84.42315507132238
Iteration: 4, Func. Count: 67, Neg. LLF: 110.86043855876001
Iteration: 5, Func. Count: 83, Neg. LLF: 78.25618872629016
Iteration: 6, Func. Count: 99, Neg. LLF: 74.58933425092289
Iteration: 7, Func. Count: 114, Neg. LLF: 74.04712135077473
Iteration: 8, Func. Count: 129, Neg. LLF: 74.02728896596119
Iteration: 9, Func. Count: 144, Neg. LLF: 74.02568549010363
Iteration: 10, Func. Count: 159, Neg. LLF: 74.02550135720999
Iteration: 11, Func. Count: 174, Neg. LLF: 74.02532938363527
Iteration: 12, Func. Count: 189, Neg. LLF: 74.02532265402677
Iteration: 13, Func. Count: 204, Neg. LLF: 74.09464144647076
Optimization terminated successfully (Exit mode 0)
Current function value: 74.02532262174813
Iterations: 14
Function evaluations: 207
Gradient evaluations: 13
Iteration: 1, Func. Count: 5, Neg. LLF: 148.85570970145727
Iteration: 2, Func. Count: 13, Neg. LLF: 488.50109729203285
Iteration: 3, Func. Count: 19, Neg. LLF: 75.47326766485808
Iteration: 4, Func. Count: 23, Neg. LLF: 75.46828112522736
Iteration: 5, Func. Count: 27, Neg. LLF: 75.463406551866
Iteration: 6, Func. Count: 31, Neg. LLF: 75.46312584236843
Iteration: 7, Func. Count: 35, Neg. LLF: 75.46303974827974
Iteration: 8, Func. Count: 38, Neg. LLF: 75.46303984720481
Optimization terminated successfully (Exit mode 0)
Current function value: 75.46303974827974
Iterations: 8
Function evaluations: 38
Gradient evaluations: 8
Iteration: 1, Func. Count: 5, Neg. LLF: 110.24567044374442
Iteration: 2, Func. Count: 12, Neg. LLF: 86.06516138593956
Iteration: 3, Func. Count: 17, Neg. LLF: 75.30059884612334
Iteration: 4, Func. Count: 21, Neg. LLF: 85.28979801750565
Iteration: 5, Func. Count: 26, Neg. LLF: 74.91242386597455
Iteration: 6, Func. Count: 31, Neg. LLF: 74.3123637397593
Iteration: 7, Func. Count: 35, Neg. LLF: 74.30981406849409
Iteration: 8, Func. Count: 39, Neg. LLF: 74.3098039670462
Iteration: 9, Func. Count: 42, Neg. LLF: 74.30980406640113
Optimization terminated successfully (Exit mode 0)
Current function value: 74.3098039670462
Iterations: 9
Function evaluations: 42
Gradient evaluations: 9
Iteration: 1, Func. Count: 6, Neg. LLF: 23872000.00788369
Iteration: 2, Func. Count: 13, Neg. LLF: 74.67848335829964
Iteration: 3, Func. Count: 19, Neg. LLF: 73.94168493148783
Iteration: 4, Func. Count: 25, Neg. LLF: 73.80874247008488
Iteration: 5, Func. Count: 31, Neg. LLF: 73.50729079693309
Iteration: 6, Func. Count: 36, Neg. LLF: 73.3865632594322
Iteration: 7, Func. Count: 41, Neg. LLF: 73.33155490236277
Iteration: 8, Func. Count: 46, Neg. LLF: 73.32493813812927
Iteration: 9, Func. Count: 51, Neg. LLF: 73.32492344927871
Iteration: 10, Func. Count: 55, Neg. LLF: 73.32492344945472
Optimization terminated successfully (Exit mode 0)
Current function value: 73.32492344927871
Iterations: 10
Function evaluations: 55
Gradient evaluations: 10
Iteration: 1, Func. Count: 7, Neg. LLF: 24364869.20536226
Iteration: 2, Func. Count: 15, Neg. LLF: 75.0980938087043
Iteration: 3, Func. Count: 22, Neg. LLF: 73.6054455803112
Iteration: 4, Func. Count: 28, Neg. LLF: 73.42733753298363
Iteration: 5, Func. Count: 34, Neg. LLF: 73.9935327874877
Iteration: 6, Func. Count: 43, Neg. LLF: 73.35691318366294
Iteration: 7, Func. Count: 49, Neg. LLF: 73.35343585584928
Iteration: 8, Func. Count: 55, Neg. LLF: 73.35042775188145
Iteration: 9, Func. Count: 61, Neg. LLF: 73.34733488848721
Iteration: 10, Func. Count: 67, Neg. LLF: 73.34527478304109
Iteration: 11, Func. Count: 73, Neg. LLF: 73.34261506327447
Iteration: 12, Func. Count: 79, Neg. LLF: 73.33570370535449
Iteration: 13, Func. Count: 85, Neg. LLF: 73.32758683321576
Iteration: 14, Func. Count: 91, Neg. LLF: 73.3249459815315
Iteration: 15, Func. Count: 97, Neg. LLF: 73.32493541081325
Iteration: 16, Func. Count: 103, Neg. LLF: 73.32492344826032
Iteration: 17, Func. Count: 108, Neg. LLF: 73.32492344867795
Optimization terminated successfully (Exit mode 0)
Current function value: 73.32492344826032
Iterations: 17
Function evaluations: 108
Gradient evaluations: 17
Iteration: 1, Func. Count: 8, Neg. LLF: 24758619.554927588
Iteration: 2, Func. Count: 17, Neg. LLF: 75.69598230698773
Iteration: 3, Func. Count: 25, Neg. LLF: 73.46854657539912
Iteration: 4, Func. Count: 32, Neg. LLF: 73.3790093407984
Iteration: 5, Func. Count: 39, Neg. LLF: 74.77956662086922
Iteration: 6, Func. Count: 48, Neg. LLF: 73.3459566801912
Iteration: 7, Func. Count: 55, Neg. LLF: 73.38658264689641
Iteration: 8, Func. Count: 63, Neg. LLF: 73.33659616494825
Iteration: 9, Func. Count: 70, Neg. LLF: 73.33511477255871
Iteration: 10, Func. Count: 77, Neg. LLF: 73.33450356167188
Iteration: 11, Func. Count: 84, Neg. LLF: 73.33441273282355
Iteration: 12, Func. Count: 91, Neg. LLF: 73.33436183839422
Iteration: 13, Func. Count: 98, Neg. LLF: 73.33429167209971
Iteration: 14, Func. Count: 105, Neg. LLF: 73.33409865495788
Iteration: 15, Func. Count: 112, Neg. LLF: 73.33363067157441
Iteration: 16, Func. Count: 119, Neg. LLF: 73.33261342826096
Iteration: 17, Func. Count: 126, Neg. LLF: 73.33085718196669
Iteration: 18, Func. Count: 133, Neg. LLF: 73.32822537617416
Iteration: 19, Func. Count: 140, Neg. LLF: 73.3280184385944
Iteration: 20, Func. Count: 147, Neg. LLF: 73.32783978988813
Iteration: 21, Func. Count: 154, Neg. LLF: 73.3278319683926
Iteration: 22, Func. Count: 160, Neg. LLF: 73.32783196829604
Optimization terminated successfully (Exit mode 0)
Current function value: 73.3278319683926
Iterations: 22
Function evaluations: 160
Gradient evaluations: 22
Iteration: 1, Func. Count: 9, Neg. LLF: 24839826.889314346
Iteration: 2, Func. Count: 19, Neg. LLF: 76.2075687105143
Iteration: 3, Func. Count: 28, Neg. LLF: 73.41225765175146
Iteration: 4, Func. Count: 36, Neg. LLF: 73.35920748273848
Iteration: 5, Func. Count: 44, Neg. LLF: 73.34575134133755
Iteration: 6, Func. Count: 52, Neg. LLF: 73.34533340065298
Iteration: 7, Func. Count: 60, Neg. LLF: 73.34524558602506
Iteration: 8, Func. Count: 68, Neg. LLF: 73.34523954899745
Iteration: 9, Func. Count: 76, Neg. LLF: 73.34523519947312
Iteration: 10, Func. Count: 84, Neg. LLF: 73.34522875757958
Iteration: 11, Func. Count: 92, Neg. LLF: 73.34521890622786
Iteration: 12, Func. Count: 100, Neg. LLF: 73.34520932564371
Iteration: 13, Func. Count: 108, Neg. LLF: 73.34520685105174
Iteration: 14, Func. Count: 115, Neg. LLF: 73.34520685097102
Optimization terminated successfully (Exit mode 0)
Current function value: 73.34520685105174
Iterations: 14
Function evaluations: 115
Gradient evaluations: 14
Iteration: 1, Func. Count: 6, Neg. LLF: 117.10526659938392
Iteration: 2, Func. Count: 15, Neg. LLF: 92.62789578828668
Iteration: 3, Func. Count: 22, Neg. LLF: 74.33554317780225
Iteration: 4, Func. Count: 27, Neg. LLF: 73.87797600167475
Iteration: 5, Func. Count: 32, Neg. LLF: 73.8628229243942
Iteration: 6, Func. Count: 37, Neg. LLF: 73.86028026038834
Iteration: 7, Func. Count: 42, Neg. LLF: 73.8596676519687
Iteration: 8, Func. Count: 47, Neg. LLF: 73.85958625425258
Iteration: 9, Func. Count: 52, Neg. LLF: 73.85958504537992
Iteration: 10, Func. Count: 56, Neg. LLF: 73.85958504537699
Optimization terminated successfully (Exit mode 0)
Current function value: 73.85958504537992
Iterations: 10
Function evaluations: 56
Gradient evaluations: 10
Iteration: 1, Func. Count: 7, Neg. LLF: 23939210.120628867
Iteration: 2, Func. Count: 15, Neg. LLF: 74.73578729846504
Iteration: 3, Func. Count: 22, Neg. LLF: 73.92187626372865
Iteration: 4, Func. Count: 29, Neg. LLF: 73.7933911843986
Iteration: 5, Func. Count: 36, Neg. LLF: 73.51785716635048
Iteration: 6, Func. Count: 42, Neg. LLF: 73.38999436751214
Iteration: 7, Func. Count: 48, Neg. LLF: 73.33583336362379
Iteration: 8, Func. Count: 54, Neg. LLF: 73.32495153883012
Iteration: 9, Func. Count: 60, Neg. LLF: 73.32492345755416
Iteration: 10, Func. Count: 65, Neg. LLF: 73.3249234578149
Optimization terminated successfully (Exit mode 0)
Current function value: 73.32492345755416
Iterations: 10
Function evaluations: 65
Gradient evaluations: 10
Iteration: 1, Func. Count: 8, Neg. LLF: 24765753.72318811
Iteration: 2, Func. Count: 17, Neg. LLF: 75.16088762404819
Iteration: 3, Func. Count: 25, Neg. LLF: 73.61557384620686
Iteration: 4, Func. Count: 32, Neg. LLF: 73.43141457019202
Iteration: 5, Func. Count: 39, Neg. LLF: 73.97634089193323
Iteration: 6, Func. Count: 49, Neg. LLF: 73.35752133700473
Iteration: 7, Func. Count: 56, Neg. LLF: 73.3535023294822
Iteration: 8, Func. Count: 63, Neg. LLF: 73.35063644726878
Iteration: 9, Func. Count: 70, Neg. LLF: 73.34751743980533
Iteration: 10, Func. Count: 77, Neg. LLF: 73.34540139739859
Iteration: 11, Func. Count: 84, Neg. LLF: 73.34286818533819
Iteration: 12, Func. Count: 91, Neg. LLF: 73.33648626884958
Iteration: 13, Func. Count: 98, Neg. LLF: 73.32760105714456
Iteration: 14, Func. Count: 105, Neg. LLF: 73.32498891859258
Iteration: 15, Func. Count: 112, Neg. LLF: 73.3249269576614
Iteration: 16, Func. Count: 119, Neg. LLF: 73.32492368370067
Iteration: 17, Func. Count: 125, Neg. LLF: 73.32492368441433
Optimization terminated successfully (Exit mode 0)
Current function value: 73.32492368370067
Iterations: 17
Function evaluations: 125
Gradient evaluations: 17
Iteration: 1, Func. Count: 9, Neg. LLF: 25324503.95720816
Iteration: 2, Func. Count: 19, Neg. LLF: 82.13454162516811
Iteration: 3, Func. Count: 29, Neg. LLF: 76.31425474053842
Iteration: 4, Func. Count: 38, Neg. LLF: 73.03088223038368
Iteration: 5, Func. Count: 46, Neg. LLF: 73.02483510789179
Iteration: 6, Func. Count: 55, Neg. LLF: 73.7962593432594
Iteration: 7, Func. Count: 65, Neg. LLF: 72.8788211839952
Iteration: 8, Func. Count: 74, Neg. LLF: 72.76811107210607
Iteration: 9, Func. Count: 82, Neg. LLF: 72.7627518299147
Iteration: 10, Func. Count: 90, Neg. LLF: 72.76249912556756
Iteration: 11, Func. Count: 98, Neg. LLF: 72.76245233242201
Iteration: 12, Func. Count: 106, Neg. LLF: 72.76245066473963
Iteration: 13, Func. Count: 113, Neg. LLF: 72.76245066469578
Optimization terminated successfully (Exit mode 0)
Current function value: 72.76245066473963
Iterations: 13
Function evaluations: 113
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 13901740.845125632
Iteration: 2, Func. Count: 21, Neg. LLF: 99.04850981318941
Iteration: 3, Func. Count: 32, Neg. LLF: 73.8062038018073
Iteration: 4, Func. Count: 41, Neg. LLF: 73.21410057321816
Iteration: 5, Func. Count: 50, Neg. LLF: 74.81834062528645
Iteration: 6, Func. Count: 62, Neg. LLF: 75.69084432311992
Iteration: 7, Func. Count: 73, Neg. LLF: 72.79160103914579
Iteration: 8, Func. Count: 82, Neg. LLF: 72.76761941685962
Iteration: 9, Func. Count: 91, Neg. LLF: 72.76257863590081
Iteration: 10, Func. Count: 100, Neg. LLF: 72.76248691694013
Iteration: 11, Func. Count: 109, Neg. LLF: 72.76245112256146
Iteration: 12, Func. Count: 117, Neg. LLF: 72.76245121158827
Optimization terminated successfully (Exit mode 0)
Current function value: 72.76245112256146
Iterations: 12
Function evaluations: 117
Gradient evaluations: 12
Iteration: 1, Func. Count: 7, Neg. LLF: 112.5879933529959
Iteration: 2, Func. Count: 17, Neg. LLF: 85.32684955000784
Iteration: 3, Func. Count: 25, Neg. LLF: 75.92829016830014
Iteration: 4, Func. Count: 32, Neg. LLF: 73.92335049824453
Iteration: 5, Func. Count: 38, Neg. LLF: 73.88034587844183
Iteration: 6, Func. Count: 44, Neg. LLF: 73.86063690872797
Iteration: 7, Func. Count: 50, Neg. LLF: 73.85961282328205
Iteration: 8, Func. Count: 56, Neg. LLF: 73.85958513974848
Iteration: 9, Func. Count: 61, Neg. LLF: 73.85958515129941
Optimization terminated successfully (Exit mode 0)
Current function value: 73.85958513974848
Iterations: 9
Function evaluations: 61
Gradient evaluations: 9
Iteration: 1, Func. Count: 8, Neg. LLF: 23545444.2464737
Iteration: 2, Func. Count: 17, Neg. LLF: 75.01640282679931
Iteration: 3, Func. Count: 25, Neg. LLF: 73.88312233714049
Iteration: 4, Func. Count: 32, Neg. LLF: 74.41207907935926
Iteration: 5, Func. Count: 40, Neg. LLF: 73.32552983029873
Iteration: 6, Func. Count: 47, Neg. LLF: 73.324931304544
Iteration: 7, Func. Count: 54, Neg. LLF: 73.32492347932927
Iteration: 8, Func. Count: 60, Neg. LLF: 73.32492347877125
Optimization terminated successfully (Exit mode 0)
Current function value: 73.32492347932927
Iterations: 8
Function evaluations: 60
Gradient evaluations: 8
Iteration: 1, Func. Count: 9, Neg. LLF: 24411431.098228835
Iteration: 2, Func. Count: 19, Neg. LLF: 75.24315335291587
Iteration: 3, Func. Count: 28, Neg. LLF: 73.56999923582983
Iteration: 4, Func. Count: 36, Neg. LLF: 73.42358733448647
Iteration: 5, Func. Count: 44, Neg. LLF: 75.10529413564093
Iteration: 6, Func. Count: 54, Neg. LLF: 73.3554440132352
Iteration: 7, Func. Count: 62, Neg. LLF: 73.35735753825301
Iteration: 8, Func. Count: 71, Neg. LLF: 73.35364987006521
Iteration: 9, Func. Count: 80, Neg. LLF: 73.35109922100636
Iteration: 10, Func. Count: 88, Neg. LLF: 73.34957160002809
Iteration: 11, Func. Count: 96, Neg. LLF: 73.34794427748844
Iteration: 12, Func. Count: 104, Neg. LLF: 73.3454099689301
Iteration: 13, Func. Count: 112, Neg. LLF: 73.34305763547104
Iteration: 14, Func. Count: 120, Neg. LLF: 73.33680206372544
Iteration: 15, Func. Count: 128, Neg. LLF: 73.32766238069074
Iteration: 16, Func. Count: 136, Neg. LLF: 73.32537647850096
Iteration: 17, Func. Count: 144, Neg. LLF: 73.32496429850022
Iteration: 18, Func. Count: 152, Neg. LLF: 73.32492350604186
Iteration: 19, Func. Count: 159, Neg. LLF: 73.32492350719755
Optimization terminated successfully (Exit mode 0)
Current function value: 73.32492350604186
Iterations: 19
Function evaluations: 159
Gradient evaluations: 19
Iteration: 1, Func. Count: 10, Neg. LLF: 25006037.155185487
Iteration: 2, Func. Count: 21, Neg. LLF: 85.11826079854177
Iteration: 3, Func. Count: 32, Neg. LLF: 76.48314812063596
Iteration: 4, Func. Count: 42, Neg. LLF: 73.16018440424715
Iteration: 5, Func. Count: 51, Neg. LLF: 73.09533495313741
Iteration: 6, Func. Count: 60, Neg. LLF: 74.88437065705142
Iteration: 7, Func. Count: 71, Neg. LLF: 73.25346684772556
Iteration: 8, Func. Count: 81, Neg. LLF: 72.80190627253869
Iteration: 9, Func. Count: 90, Neg. LLF: 72.77064713623277
Iteration: 10, Func. Count: 99, Neg. LLF: 72.7629845006034
Iteration: 11, Func. Count: 108, Neg. LLF: 72.76248358357331
Iteration: 12, Func. Count: 117, Neg. LLF: 72.76245238206288
Iteration: 13, Func. Count: 126, Neg. LLF: 72.76245068818146
Iteration: 14, Func. Count: 134, Neg. LLF: 72.76245068812983
Optimization terminated successfully (Exit mode 0)
Current function value: 72.76245068818146
Iterations: 14
Function evaluations: 134
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 13932668.63323588
Iteration: 2, Func. Count: 23, Neg. LLF: 1312.1250422960404
Iteration: 3, Func. Count: 35, Neg. LLF: 76.81549553725176
Iteration: 4, Func. Count: 47, Neg. LLF: 73.04878044966779
Iteration: 5, Func. Count: 57, Neg. LLF: 73.20928891182996
Iteration: 6, Func. Count: 68, Neg. LLF: 73.45700695013036
Iteration: 7, Func. Count: 79, Neg. LLF: 72.78590906996934
Iteration: 8, Func. Count: 89, Neg. LLF: 72.76327040270611
Iteration: 9, Func. Count: 99, Neg. LLF: 72.76246442057717
Iteration: 10, Func. Count: 109, Neg. LLF: 72.7624518735171
Iteration: 11, Func. Count: 119, Neg. LLF: 72.76245074632277
Iteration: 12, Func. Count: 128, Neg. LLF: 72.76245083496974
Optimization terminated successfully (Exit mode 0)
Current function value: 72.76245074632277
Iterations: 12
Function evaluations: 128
Gradient evaluations: 12
Iteration: 1, Func. Count: 8, Neg. LLF: 114.61559023683634
Iteration: 2, Func. Count: 19, Neg. LLF: 307.45669996721176
Iteration: 3, Func. Count: 28, Neg. LLF: 79.83524714400194
Iteration: 4, Func. Count: 36, Neg. LLF: 73.93791259075347
Iteration: 5, Func. Count: 43, Neg. LLF: 73.91427162392873
Iteration: 6, Func. Count: 50, Neg. LLF: 73.86382607725068
Iteration: 7, Func. Count: 57, Neg. LLF: 73.8600726971925
Iteration: 8, Func. Count: 64, Neg. LLF: 73.85959815562288
Iteration: 9, Func. Count: 71, Neg. LLF: 73.85958510738838
Iteration: 10, Func. Count: 77, Neg. LLF: 73.85958519944884
Optimization terminated successfully (Exit mode 0)
Current function value: 73.85958510738838
Iterations: 10
Function evaluations: 77
Gradient evaluations: 10
Iteration: 1, Func. Count: 9, Neg. LLF: 23335743.964347243
Iteration: 2, Func. Count: 19, Neg. LLF: 75.2002022190268
Iteration: 3, Func. Count: 28, Neg. LLF: 73.8796235223341
Iteration: 4, Func. Count: 36, Neg. LLF: 74.33826920884903
Iteration: 5, Func. Count: 45, Neg. LLF: 73.32509865985786
Iteration: 6, Func. Count: 53, Neg. LLF: 73.32492410757628
Iteration: 7, Func. Count: 61, Neg. LLF: 73.32492345513138
Optimization terminated successfully (Exit mode 0)
Current function value: 73.32492345513138
Iterations: 7
Function evaluations: 61
Gradient evaluations: 7
Iteration: 1, Func. Count: 10, Neg. LLF: 24161605.788526066
Iteration: 2, Func. Count: 21, Neg. LLF: 75.29009153145975
Iteration: 3, Func. Count: 31, Neg. LLF: 73.60765919177771
Iteration: 4, Func. Count: 40, Neg. LLF: 73.43051719759504
Iteration: 5, Func. Count: 49, Neg. LLF: 73.99406436972586
Iteration: 6, Func. Count: 61, Neg. LLF: 73.45504656172344
Iteration: 7, Func. Count: 71, Neg. LLF: 73.56667056055142
Iteration: 8, Func. Count: 81, Neg. LLF: 73.3539990831595
Iteration: 9, Func. Count: 90, Neg. LLF: 73.35326016296236
Iteration: 10, Func. Count: 99, Neg. LLF: 73.353002994465
Iteration: 11, Func. Count: 108, Neg. LLF: 73.35122165195048
Iteration: 12, Func. Count: 117, Neg. LLF: 73.34879754166896
Iteration: 13, Func. Count: 126, Neg. LLF: 73.34764797736307
Iteration: 14, Func. Count: 135, Neg. LLF: 73.34504391527264
Iteration: 15, Func. Count: 144, Neg. LLF: 73.34251242386479
Iteration: 16, Func. Count: 153, Neg. LLF: 73.33497703699628
Iteration: 17, Func. Count: 162, Neg. LLF: 73.32747567232069
Iteration: 18, Func. Count: 171, Neg. LLF: 73.32492845015503
Iteration: 19, Func. Count: 180, Neg. LLF: 74.88916300782222
Iteration: 20, Func. Count: 192, Neg. LLF: 73.32518560227986
Optimization terminated successfully (Exit mode 0)
Current function value: 73.32492494737623
Iterations: 21
Function evaluations: 194
Gradient evaluations: 20
Iteration: 1, Func. Count: 11, Neg. LLF: 24771743.685713198
Iteration: 2, Func. Count: 23, Neg. LLF: 87.00461514576592
Iteration: 3, Func. Count: 35, Neg. LLF: 76.45601086860337
Iteration: 4, Func. Count: 46, Neg. LLF: 73.08517931895159
Iteration: 5, Func. Count: 56, Neg. LLF: 73.04632983375745
Iteration: 6, Func. Count: 67, Neg. LLF: 73.08655866793946
Iteration: 7, Func. Count: 78, Neg. LLF: 73.25565639143699
Iteration: 8, Func. Count: 89, Neg. LLF: 72.76807155629467
Iteration: 9, Func. Count: 99, Neg. LLF: 72.76397646245137
Iteration: 10, Func. Count: 109, Neg. LLF: 72.76272908147125
Iteration: 11, Func. Count: 119, Neg. LLF: 72.76246419601368
Iteration: 12, Func. Count: 129, Neg. LLF: 72.7624517555381
Iteration: 13, Func. Count: 139, Neg. LLF: 72.76245065995194
Iteration: 14, Func. Count: 148, Neg. LLF: 72.76245065993126
Optimization terminated successfully (Exit mode 0)
Current function value: 72.76245065995194
Iterations: 14
Function evaluations: 148
Gradient evaluations: 14
Iteration: 1, Func. Count: 12, Neg. LLF: 11961188.085147234
Iteration: 2, Func. Count: 25, Neg. LLF: 43540.22768414183
Iteration: 3, Func. Count: 38, Neg. LLF: 76.19312454266276
Iteration: 4, Func. Count: 51, Neg. LLF: 73.04400569652107
Iteration: 5, Func. Count: 62, Neg. LLF: 73.24224194958725
Iteration: 6, Func. Count: 74, Neg. LLF: 73.404012553389
Iteration: 7, Func. Count: 86, Neg. LLF: 72.79812153733698
Iteration: 8, Func. Count: 97, Neg. LLF: 72.76421824132167
Iteration: 9, Func. Count: 108, Neg. LLF: 72.76276041877486
Iteration: 10, Func. Count: 119, Neg. LLF: 72.76247292108263
Iteration: 11, Func. Count: 130, Neg. LLF: 72.76245418459442
Iteration: 12, Func. Count: 141, Neg. LLF: 72.76245086307904
Iteration: 13, Func. Count: 151, Neg. LLF: 72.76245095153763
Optimization terminated successfully (Exit mode 0)
Current function value: 72.76245086307904
Iterations: 13
Function evaluations: 151
Gradient evaluations: 13
Iteration: 1, Func. Count: 5, Neg. LLF: 175.34833784826762
Iteration: 2, Func. Count: 12, Neg. LLF: 444.75634052444224
Iteration: 3, Func. Count: 18, Neg. LLF: 74.96619044293018
Iteration: 4, Func. Count: 22, Neg. LLF: 74.61671041104155
Iteration: 5, Func. Count: 26, Neg. LLF: 74.4573058226464
Iteration: 6, Func. Count: 30, Neg. LLF: 74.32408088988154
Iteration: 7, Func. Count: 34, Neg. LLF: 74.31034194127827
Iteration: 8, Func. Count: 38, Neg. LLF: 74.30980650589437
Iteration: 9, Func. Count: 42, Neg. LLF: 74.3098038166496
Iteration: 10, Func. Count: 45, Neg. LLF: 74.30980393757278
Optimization terminated successfully (Exit mode 0)
Current function value: 74.3098038166496
Iterations: 10
Function evaluations: 45
Gradient evaluations: 10
Iteration: 1, Func. Count: 6, Neg. LLF: 22871372.907894958
Iteration: 2, Func. Count: 13, Neg. LLF: 74.24691406407196
Iteration: 3, Func. Count: 19, Neg. LLF: 73.45601095555502
Iteration: 4, Func. Count: 24, Neg. LLF: 101.44410933562604
Iteration: 5, Func. Count: 32, Neg. LLF: 73.48877251618383
Iteration: 6, Func. Count: 38, Neg. LLF: 73.3249358074269
Iteration: 7, Func. Count: 43, Neg. LLF: 73.3249241402659
Iteration: 8, Func. Count: 47, Neg. LLF: 73.32492413998217
Optimization terminated successfully (Exit mode 0)
Current function value: 73.3249241402659
Iterations: 8
Function evaluations: 47
Gradient evaluations: 8
Iteration: 1, Func. Count: 7, Neg. LLF: 22808080.96269512
Iteration: 2, Func. Count: 15, Neg. LLF: 73.95144659751334
Iteration: 3, Func. Count: 22, Neg. LLF: 73.61746771628168
Iteration: 4, Func. Count: 28, Neg. LLF: 73.42190155372448
Iteration: 5, Func. Count: 34, Neg. LLF: 100.54933385098518
Iteration: 6, Func. Count: 42, Neg. LLF: 75.84560912122089
Iteration: 7, Func. Count: 50, Neg. LLF: 73.356204955571
Iteration: 8, Func. Count: 56, Neg. LLF: 73.35054314522024
Iteration: 9, Func. Count: 62, Neg. LLF: 73.3478507816681
Iteration: 10, Func. Count: 68, Neg. LLF: 73.34566793336562
Iteration: 11, Func. Count: 74, Neg. LLF: 73.34324456470375
Iteration: 12, Func. Count: 80, Neg. LLF: 73.33767467971363
Iteration: 13, Func. Count: 86, Neg. LLF: 73.3275408009475
Iteration: 14, Func. Count: 92, Neg. LLF: 73.3249990315064
Iteration: 15, Func. Count: 98, Neg. LLF: 73.32495751549529
Iteration: 16, Func. Count: 104, Neg. LLF: 73.32492356691291
Iteration: 17, Func. Count: 109, Neg. LLF: 73.32492356750646
Optimization terminated successfully (Exit mode 0)
Current function value: 73.32492356691291
Iterations: 17
Function evaluations: 109
Gradient evaluations: 17
Iteration: 1, Func. Count: 8, Neg. LLF: 22823290.7531491
Iteration: 2, Func. Count: 17, Neg. LLF: 73.74277615044977
Iteration: 3, Func. Count: 24, Neg. LLF: 73.51973590036732
Iteration: 4, Func. Count: 31, Neg. LLF: 95.1369229400017
Iteration: 5, Func. Count: 40, Neg. LLF: 73.36354339813815
Iteration: 6, Func. Count: 47, Neg. LLF: 73.34175275002647
Iteration: 7, Func. Count: 54, Neg. LLF: 73.33241759003153
Iteration: 8, Func. Count: 61, Neg. LLF: 73.3307602339874
Iteration: 9, Func. Count: 68, Neg. LLF: 73.32813166085216
Iteration: 10, Func. Count: 75, Neg. LLF: 73.327959958502
Iteration: 11, Func. Count: 82, Neg. LLF: 73.32783674457978
Iteration: 12, Func. Count: 89, Neg. LLF: 73.32783209094387
Iteration: 13, Func. Count: 95, Neg. LLF: 73.32783209108499
Optimization terminated successfully (Exit mode 0)
Current function value: 73.32783209094387
Iterations: 13
Function evaluations: 95
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 23621462.10536741
Iteration: 2, Func. Count: 19, Neg. LLF: 74.40098021076743
Iteration: 3, Func. Count: 28, Neg. LLF: 73.87757118221573
Iteration: 4, Func. Count: 36, Neg. LLF: 73.49574965894625
Iteration: 5, Func. Count: 44, Neg. LLF: 73.6558643477679
Iteration: 6, Func. Count: 53, Neg. LLF: 73.49982626051393
Iteration: 7, Func. Count: 62, Neg. LLF: 73.34430202501626
Iteration: 8, Func. Count: 70, Neg. LLF: 73.34273910705845
Iteration: 9, Func. Count: 78, Neg. LLF: 73.3423090157234
Iteration: 10, Func. Count: 86, Neg. LLF: 73.34225284803401
Iteration: 11, Func. Count: 94, Neg. LLF: 73.3422240981154
Iteration: 12, Func. Count: 102, Neg. LLF: 73.34222258586874
Iteration: 13, Func. Count: 109, Neg. LLF: 73.34222258579483
Optimization terminated successfully (Exit mode 0)
Current function value: 73.34222258586874
Iterations: 13
Function evaluations: 109
Gradient evaluations: 13
Iteration: 1, Func. Count: 6, Neg. LLF: 178.57159557515604
Iteration: 2, Func. Count: 14, Neg. LLF: 440.7024984290617
Iteration: 3, Func. Count: 21, Neg. LLF: 74.94768786434665
Iteration: 4, Func. Count: 26, Neg. LLF: 74.6155057267914
Iteration: 5, Func. Count: 31, Neg. LLF: 74.44470919264255
Iteration: 6, Func. Count: 36, Neg. LLF: 74.32285487722073
Iteration: 7, Func. Count: 41, Neg. LLF: 74.31027627761623
Iteration: 8, Func. Count: 46, Neg. LLF: 74.30980617418132
Iteration: 9, Func. Count: 51, Neg. LLF: 74.30980382806416
Iteration: 10, Func. Count: 55, Neg. LLF: 74.30980392742067
Optimization terminated successfully (Exit mode 0)
Current function value: 74.30980382806416
Iterations: 10
Function evaluations: 55
Gradient evaluations: 10
Iteration: 1, Func. Count: 7, Neg. LLF: 25978414.085985616
Iteration: 2, Func. Count: 15, Neg. LLF: 73.86856968774988
Iteration: 3, Func. Count: 21, Neg. LLF: 79.6450266541415
Iteration: 4, Func. Count: 28, Neg. LLF: 4710961.218505612
Iteration: 5, Func. Count: 36, Neg. LLF: 73.37827202051747
Iteration: 6, Func. Count: 42, Neg. LLF: 73.32866024702572
Iteration: 7, Func. Count: 48, Neg. LLF: 73.32503214596254
Iteration: 8, Func. Count: 54, Neg. LLF: 73.32492353106608
Iteration: 9, Func. Count: 59, Neg. LLF: 73.32492353193088
Optimization terminated successfully (Exit mode 0)
Current function value: 73.32492353106608
Iterations: 9
Function evaluations: 59
Gradient evaluations: 9
Iteration: 1, Func. Count: 8, Neg. LLF: 24448830.184990134
Iteration: 2, Func. Count: 17, Neg. LLF: 74.505513235949
Iteration: 3, Func. Count: 25, Neg. LLF: 73.70996381648646
Iteration: 4, Func. Count: 32, Neg. LLF: 73.48132375291543
Iteration: 5, Func. Count: 39, Neg. LLF: 74.10652352083268
Iteration: 6, Func. Count: 49, Neg. LLF: 73.7327597745229
Iteration: 7, Func. Count: 57, Neg. LLF: 73.3551941139743
Iteration: 8, Func. Count: 64, Neg. LLF: 73.3513836160283
Iteration: 9, Func. Count: 71, Neg. LLF: 73.34869756236932
Iteration: 10, Func. Count: 78, Neg. LLF: 73.34613596293254
Iteration: 11, Func. Count: 85, Neg. LLF: 73.34400058413182
Iteration: 12, Func. Count: 92, Neg. LLF: 73.33984779019107
Iteration: 13, Func. Count: 99, Neg. LLF: 73.3339484411282
Iteration: 14, Func. Count: 106, Neg. LLF: 73.32520629571536
Iteration: 15, Func. Count: 113, Neg. LLF: 73.32492401905823
Iteration: 16, Func. Count: 119, Neg. LLF: 73.32492402108083
Optimization terminated successfully (Exit mode 0)
Current function value: 73.32492401905823
Iterations: 16
Function evaluations: 119
Gradient evaluations: 16
Iteration: 1, Func. Count: 9, Neg. LLF: 24597398.92220899
Iteration: 2, Func. Count: 19, Neg. LLF: 74.90841346993943
Iteration: 3, Func. Count: 28, Neg. LLF: 73.53768447707506
Iteration: 4, Func. Count: 36, Neg. LLF: 73.38896331763229
Iteration: 5, Func. Count: 44, Neg. LLF: 73.47049228913956
Iteration: 6, Func. Count: 53, Neg. LLF: 73.34442053911211
Iteration: 7, Func. Count: 61, Neg. LLF: 73.34484776597466
Iteration: 8, Func. Count: 70, Neg. LLF: 73.33637485544025
Iteration: 9, Func. Count: 78, Neg. LLF: 73.33573504683199
Iteration: 10, Func. Count: 86, Neg. LLF: 73.33566656472013
Iteration: 11, Func. Count: 94, Neg. LLF: 73.33562367982805
Iteration: 12, Func. Count: 102, Neg. LLF: 73.3355521322401
Iteration: 13, Func. Count: 110, Neg. LLF: 73.33536824626243
Iteration: 14, Func. Count: 118, Neg. LLF: 73.3349959642341
Iteration: 15, Func. Count: 126, Neg. LLF: 73.33415514525514
Iteration: 16, Func. Count: 134, Neg. LLF: 73.33189462387645
Iteration: 17, Func. Count: 142, Neg. LLF: 73.32791981849066
Iteration: 18, Func. Count: 150, Neg. LLF: 73.32787186319852
Iteration: 19, Func. Count: 158, Neg. LLF: 73.32783209997251
Iteration: 20, Func. Count: 165, Neg. LLF: 73.32783210000817
Optimization terminated successfully (Exit mode 0)
Current function value: 73.32783209997251
Iterations: 20
Function evaluations: 165
Gradient evaluations: 20
Iteration: 1, Func. Count: 10, Neg. LLF: 24224611.6650394
Iteration: 2, Func. Count: 21, Neg. LLF: 74.8683360910309
Iteration: 3, Func. Count: 31, Neg. LLF: 73.40262978045803
Iteration: 4, Func. Count: 40, Neg. LLF: 73.37677853099075
Iteration: 5, Func. Count: 49, Neg. LLF: 73.56786332795879
Iteration: 6, Func. Count: 60, Neg. LLF: 73.36252896699118
Iteration: 7, Func. Count: 69, Neg. LLF: 73.34598986889584
Iteration: 8, Func. Count: 78, Neg. LLF: 73.34584599475043
Iteration: 9, Func. Count: 87, Neg. LLF: 73.34570991255619
Iteration: 10, Func. Count: 96, Neg. LLF: 73.34562011051469
Iteration: 11, Func. Count: 105, Neg. LLF: 73.34557674712424
Iteration: 12, Func. Count: 114, Neg. LLF: 73.345506417301
Iteration: 13, Func. Count: 123, Neg. LLF: 73.34639694771086
Iteration: 14, Func. Count: 133, Neg. LLF: 73.34675373845779
Iteration: 15, Func. Count: 143, Neg. LLF: 73.3469680973192
Iteration: 16, Func. Count: 153, Neg. LLF: 73.34601106949737
Iteration: 17, Func. Count: 163, Neg. LLF: 73.34507205022719
Iteration: 18, Func. Count: 173, Neg. LLF: 73.34422161097389
Iteration: 19, Func. Count: 182, Neg. LLF: 73.34353562384226
Iteration: 20, Func. Count: 191, Neg. LLF: 73.34262088677919
Iteration: 21, Func. Count: 200, Neg. LLF: 73.34228996664456
Iteration: 22, Func. Count: 209, Neg. LLF: 73.34222543350737
Iteration: 23, Func. Count: 218, Neg. LLF: 73.34222266084126
Iteration: 24, Func. Count: 226, Neg. LLF: 73.34222266080715
Optimization terminated successfully (Exit mode 0)
Current function value: 73.34222266084126
Iterations: 24
Function evaluations: 226
Gradient evaluations: 24
Iteration: 1, Func. Count: 7, Neg. LLF: 130.8168616802197
Iteration: 2, Func. Count: 17, Neg. LLF: 289.1318700276479
Iteration: 3, Func. Count: 25, Neg. LLF: 74.16452372692102
Iteration: 4, Func. Count: 31, Neg. LLF: 73.94160859224118
Iteration: 5, Func. Count: 37, Neg. LLF: 74.0383614835726
Iteration: 6, Func. Count: 44, Neg. LLF: 73.86153146538814
Iteration: 7, Func. Count: 50, Neg. LLF: 73.85969515472078
Iteration: 8, Func. Count: 56, Neg. LLF: 73.85961618201874
Iteration: 9, Func. Count: 62, Neg. LLF: 73.85958536227292
Iteration: 10, Func. Count: 67, Neg. LLF: 73.85958536222077
Optimization terminated successfully (Exit mode 0)
Current function value: 73.85958536227292
Iterations: 10
Function evaluations: 67
Gradient evaluations: 10
Iteration: 1, Func. Count: 8, Neg. LLF: 26108181.479780547
Iteration: 2, Func. Count: 17, Neg. LLF: 73.8668963162287
Iteration: 3, Func. Count: 24, Neg. LLF: 79.513140002322
Iteration: 4, Func. Count: 32, Neg. LLF: 22620352.388246037
Iteration: 5, Func. Count: 41, Neg. LLF: 73.37862651526052
Iteration: 6, Func. Count: 48, Neg. LLF: 73.32891994351695
Iteration: 7, Func. Count: 55, Neg. LLF: 73.32502813584945
Iteration: 8, Func. Count: 62, Neg. LLF: 73.32492352065005
Iteration: 9, Func. Count: 68, Neg. LLF: 73.32492352146652
Optimization terminated successfully (Exit mode 0)
Current function value: 73.32492352065005
Iterations: 9
Function evaluations: 68
Gradient evaluations: 9
Iteration: 1, Func. Count: 9, Neg. LLF: 24889039.478489593
Iteration: 2, Func. Count: 19, Neg. LLF: 74.51565106175968
Iteration: 3, Func. Count: 28, Neg. LLF: 73.72627147465788
Iteration: 4, Func. Count: 36, Neg. LLF: 73.5113129432224
Iteration: 5, Func. Count: 44, Neg. LLF: 74.14106340893443
Iteration: 6, Func. Count: 55, Neg. LLF: 74.34226991781622
Iteration: 7, Func. Count: 64, Neg. LLF: 73.35572019631641
Iteration: 8, Func. Count: 72, Neg. LLF: 73.35109975385357
Iteration: 9, Func. Count: 80, Neg. LLF: 73.34852937626151
Iteration: 10, Func. Count: 88, Neg. LLF: 73.34600560303636
Iteration: 11, Func. Count: 96, Neg. LLF: 73.34384272655498
Iteration: 12, Func. Count: 104, Neg. LLF: 73.33933674144532
Iteration: 13, Func. Count: 112, Neg. LLF: 73.33699822341337
Iteration: 14, Func. Count: 120, Neg. LLF: 73.32500281132805
Iteration: 15, Func. Count: 128, Neg. LLF: 73.32492674428958
Iteration: 16, Func. Count: 136, Neg. LLF: 73.32492353738475
Iteration: 17, Func. Count: 143, Neg. LLF: 73.32492353765788
Optimization terminated successfully (Exit mode 0)
Current function value: 73.32492353738475
Iterations: 17
Function evaluations: 143
Gradient evaluations: 17
Iteration: 1, Func. Count: 10, Neg. LLF: 25175022.10785398
Iteration: 2, Func. Count: 21, Neg. LLF: 86.9765519589545
Iteration: 3, Func. Count: 32, Neg. LLF: 77.49487954275492
Iteration: 4, Func. Count: 42, Neg. LLF: 72.96056872134682
Iteration: 5, Func. Count: 51, Neg. LLF: 73.01147291906535
Iteration: 6, Func. Count: 61, Neg. LLF: 76.18327890243401
Iteration: 7, Func. Count: 72, Neg. LLF: 72.7845424401998
Iteration: 8, Func. Count: 81, Neg. LLF: 72.76705591177966
Iteration: 9, Func. Count: 90, Neg. LLF: 72.76258916025121
Iteration: 10, Func. Count: 99, Neg. LLF: 72.76246361504788
Iteration: 11, Func. Count: 108, Neg. LLF: 72.76245075562801
Iteration: 12, Func. Count: 116, Neg. LLF: 72.76245075579668
Optimization terminated successfully (Exit mode 0)
Current function value: 72.76245075562801
Iterations: 12
Function evaluations: 116
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 11963590.76776377
Iteration: 2, Func. Count: 23, Neg. LLF: 3220597.5763133136
Iteration: 3, Func. Count: 35, Neg. LLF: 76.64195562945869
Iteration: 4, Func. Count: 46, Neg. LLF: 73.03865198920133
Iteration: 5, Func. Count: 56, Neg. LLF: 73.63461861484143
Iteration: 6, Func. Count: 68, Neg. LLF: 73.7503365711312
Iteration: 7, Func. Count: 79, Neg. LLF: 72.81525661598589
Iteration: 8, Func. Count: 90, Neg. LLF: 72.7632529237714
Iteration: 9, Func. Count: 100, Neg. LLF: 72.76261138535958
Iteration: 10, Func. Count: 110, Neg. LLF: 72.76245978545835
Iteration: 11, Func. Count: 120, Neg. LLF: 72.76245123440259
Iteration: 12, Func. Count: 130, Neg. LLF: 72.76245065828444
Optimization terminated successfully (Exit mode 0)
Current function value: 72.76245065828444
Iterations: 12
Function evaluations: 130
Gradient evaluations: 12
Iteration: 1, Func. Count: 8, Neg. LLF: 118.06558890461426
Iteration: 2, Func. Count: 19, Neg. LLF: 288.35478900287
Iteration: 3, Func. Count: 28, Neg. LLF: 78.98934355873338
Iteration: 4, Func. Count: 36, Neg. LLF: 73.90876207352001
Iteration: 5, Func. Count: 43, Neg. LLF: 73.8892320873296
Iteration: 6, Func. Count: 50, Neg. LLF: 73.86242988013927
Iteration: 7, Func. Count: 57, Neg. LLF: 73.85976772046237
Iteration: 8, Func. Count: 64, Neg. LLF: 73.85959442609709
Iteration: 9, Func. Count: 71, Neg. LLF: 73.85958512446248
Iteration: 10, Func. Count: 77, Neg. LLF: 73.85958513600666
Optimization terminated successfully (Exit mode 0)
Current function value: 73.85958512446248
Iterations: 10
Function evaluations: 77
Gradient evaluations: 10
Iteration: 1, Func. Count: 9, Neg. LLF: 25371287.0603809
Iteration: 2, Func. Count: 19, Neg. LLF: 73.95926114844075
Iteration: 3, Func. Count: 27, Neg. LLF: 78.81082108173452
Iteration: 4, Func. Count: 36, Neg. LLF: 33910377.486474484
Iteration: 5, Func. Count: 46, Neg. LLF: 73.37408633921373
Iteration: 6, Func. Count: 54, Neg. LLF: 73.32940469843479
Iteration: 7, Func. Count: 62, Neg. LLF: 73.32496047381437
Iteration: 8, Func. Count: 70, Neg. LLF: 73.32492346275626
Iteration: 9, Func. Count: 77, Neg. LLF: 73.32492346234666
Optimization terminated successfully (Exit mode 0)
Current function value: 73.32492346275626
Iterations: 9
Function evaluations: 77
Gradient evaluations: 9
Iteration: 1, Func. Count: 10, Neg. LLF: 24507723.428131193
Iteration: 2, Func. Count: 21, Neg. LLF: 74.60038150744532
Iteration: 3, Func. Count: 31, Neg. LLF: 73.6505689538798
Iteration: 4, Func. Count: 40, Neg. LLF: 73.47167658086599
Iteration: 5, Func. Count: 49, Neg. LLF: 75.24601147734943
Iteration: 6, Func. Count: 60, Neg. LLF: 73.5225834367554
Iteration: 7, Func. Count: 70, Neg. LLF: 73.35218987791188
Iteration: 8, Func. Count: 79, Neg. LLF: 73.35265034411931
Iteration: 9, Func. Count: 89, Neg. LLF: 73.35081630493536
Iteration: 10, Func. Count: 98, Neg. LLF: 73.34885970247828
Iteration: 11, Func. Count: 107, Neg. LLF: 73.34716486163944
Iteration: 12, Func. Count: 116, Neg. LLF: 73.34475493465476
Iteration: 13, Func. Count: 125, Neg. LLF: 73.34187537154773
Iteration: 14, Func. Count: 134, Neg. LLF: 73.3335749513287
Iteration: 15, Func. Count: 143, Neg. LLF: 73.3266917427309
Iteration: 16, Func. Count: 152, Neg. LLF: 73.32493603944165
Iteration: 17, Func. Count: 161, Neg. LLF: 74.88584535677045
Iteration: 18, Func. Count: 173, Neg. LLF: 85.16327111832958
Optimization terminated successfully (Exit mode 0)
Current function value: 73.32493458560123
Iterations: 19
Function evaluations: 178
Gradient evaluations: 18
Iteration: 1, Func. Count: 11, Neg. LLF: 24851374.768106
Iteration: 2, Func. Count: 23, Neg. LLF: 92.76036254997318
Iteration: 3, Func. Count: 35, Neg. LLF: 77.85031628264227
Iteration: 4, Func. Count: 46, Neg. LLF: 73.07756603978025
Iteration: 5, Func. Count: 56, Neg. LLF: 73.06552813216256
Iteration: 6, Func. Count: 67, Neg. LLF: 73.01535944384555
Iteration: 7, Func. Count: 78, Neg. LLF: 76.29154644831445
Iteration: 8, Func. Count: 90, Neg. LLF: 72.77048834931564
Iteration: 9, Func. Count: 100, Neg. LLF: 72.76295161532511
Iteration: 10, Func. Count: 110, Neg. LLF: 72.76247188909245
Iteration: 11, Func. Count: 120, Neg. LLF: 72.76245141394486
Iteration: 12, Func. Count: 130, Neg. LLF: 72.76245067556482
Optimization terminated successfully (Exit mode 0)
Current function value: 72.76245067556482
Iterations: 12
Function evaluations: 130
Gradient evaluations: 12
Iteration: 1, Func. Count: 12, Neg. LLF: 24662009.609394643
Iteration: 2, Func. Count: 25, Neg. LLF: 85.17219178205295
Iteration: 3, Func. Count: 38, Neg. LLF: 78.87580570950558
Iteration: 4, Func. Count: 50, Neg. LLF: 73.43761506412801
Iteration: 5, Func. Count: 61, Neg. LLF: 73.34638720176224
Iteration: 6, Func. Count: 72, Neg. LLF: 73.33883995066071
Iteration: 7, Func. Count: 83, Neg. LLF: 73.31008866725568
Iteration: 8, Func. Count: 94, Neg. LLF: 72.97078595487076
Iteration: 9, Func. Count: 105, Neg. LLF: 73.46415737195589
Iteration: 10, Func. Count: 118, Neg. LLF: 73.26830107256292
Iteration: 11, Func. Count: 130, Neg. LLF: 72.80948219926005
Iteration: 12, Func. Count: 141, Neg. LLF: 72.76947146919537
Iteration: 13, Func. Count: 152, Neg. LLF: 72.76275081446535
Iteration: 14, Func. Count: 163, Neg. LLF: 73.13064437299326
Iteration: 15, Func. Count: 176, Neg. LLF: 80.53013819229422
Iteration: 16, Func. Count: 190, Neg. LLF: 73.47373136727889
Iteration: 17, Func. Count: 203, Neg. LLF: 72.7658839166075
Optimization terminated successfully (Exit mode 0)
Current function value: 72.76245171968769
Iterations: 18
Function evaluations: 205
Gradient evaluations: 17
Iteration: 1, Func. Count: 9, Neg. LLF: 131.1448785947414
Iteration: 2, Func. Count: 21, Neg. LLF: 378.2051906026716
Iteration: 3, Func. Count: 31, Neg. LLF: 102.09224736206498
Iteration: 4, Func. Count: 40, Neg. LLF: 73.88989468678798
Iteration: 5, Func. Count: 48, Neg. LLF: 73.87904733357749
Iteration: 6, Func. Count: 56, Neg. LLF: 73.86111194539988
Iteration: 7, Func. Count: 64, Neg. LLF: 73.85974131074968
Iteration: 8, Func. Count: 72, Neg. LLF: 73.85959895564382
Iteration: 9, Func. Count: 80, Neg. LLF: 73.85958508423856
Iteration: 10, Func. Count: 87, Neg. LLF: 73.85958517629909
Optimization terminated successfully (Exit mode 0)
Current function value: 73.85958508423856
Iterations: 10
Function evaluations: 87
Gradient evaluations: 10
Iteration: 1, Func. Count: 10, Neg. LLF: 24953431.643897697
Iteration: 2, Func. Count: 21, Neg. LLF: 74.04311852891291
Iteration: 3, Func. Count: 31, Neg. LLF: 75.2875467219482
Iteration: 4, Func. Count: 41, Neg. LLF: 82.98696909930702
Iteration: 5, Func. Count: 52, Neg. LLF: 73.51192266614434
Iteration: 6, Func. Count: 61, Neg. LLF: 73.37239717892403
Iteration: 7, Func. Count: 70, Neg. LLF: 73.32497949696348
Iteration: 8, Func. Count: 79, Neg. LLF: 73.32492369498685
Iteration: 9, Func. Count: 87, Neg. LLF: 73.32492369423015
Optimization terminated successfully (Exit mode 0)
Current function value: 73.32492369498685
Iterations: 9
Function evaluations: 87
Gradient evaluations: 9
Iteration: 1, Func. Count: 11, Neg. LLF: 24247421.146727845
Iteration: 2, Func. Count: 23, Neg. LLF: 74.6611976564369
Iteration: 3, Func. Count: 34, Neg. LLF: 73.69315652406331
Iteration: 4, Func. Count: 44, Neg. LLF: 73.4668713303555
Iteration: 5, Func. Count: 54, Neg. LLF: 74.11839266282837
Iteration: 6, Func. Count: 67, Neg. LLF: 73.69353271774425
Iteration: 7, Func. Count: 78, Neg. LLF: 73.46960946498832
Iteration: 8, Func. Count: 89, Neg. LLF: 73.35455324149534
Iteration: 9, Func. Count: 99, Neg. LLF: 73.35400909497838
Iteration: 10, Func. Count: 109, Neg. LLF: 73.35334717687056
Iteration: 11, Func. Count: 119, Neg. LLF: 73.35034680599199
Iteration: 12, Func. Count: 129, Neg. LLF: 73.34854147235433
Iteration: 13, Func. Count: 139, Neg. LLF: 73.34590493938323
Iteration: 14, Func. Count: 149, Neg. LLF: 73.3438486518292
Iteration: 15, Func. Count: 159, Neg. LLF: 73.33921067143693
Iteration: 16, Func. Count: 169, Neg. LLF: 73.33741362855092
Iteration: 17, Func. Count: 179, Neg. LLF: 73.32497660882545
Iteration: 18, Func. Count: 189, Neg. LLF: 230.66066171420607
Optimization terminated successfully (Exit mode 0)
Current function value: 73.32497609253781
Iterations: 19
Function evaluations: 193
Gradient evaluations: 18
Iteration: 1, Func. Count: 12, Neg. LLF: 24626420.781732332
Iteration: 2, Func. Count: 25, Neg. LLF: 96.49472548645922
Iteration: 3, Func. Count: 38, Neg. LLF: 77.93700426448824
Iteration: 4, Func. Count: 50, Neg. LLF: 73.00692431333647
Iteration: 5, Func. Count: 61, Neg. LLF: 73.02950385258968
Iteration: 6, Func. Count: 73, Neg. LLF: 74.31453776676582
Iteration: 7, Func. Count: 86, Neg. LLF: 72.80149976599927
Iteration: 8, Func. Count: 97, Neg. LLF: 72.7694807818762
Iteration: 9, Func. Count: 108, Neg. LLF: 72.76323058285281
Iteration: 10, Func. Count: 119, Neg. LLF: 72.76252414129007
Iteration: 11, Func. Count: 130, Neg. LLF: 72.76245591591055
Iteration: 12, Func. Count: 141, Neg. LLF: 72.76245074069949
Iteration: 13, Func. Count: 151, Neg. LLF: 72.76245074066397
Optimization terminated successfully (Exit mode 0)
Current function value: 72.76245074069949
Iterations: 13
Function evaluations: 151
Gradient evaluations: 13
Iteration: 1, Func. Count: 13, Neg. LLF: 24409062.81547299
Iteration: 2, Func. Count: 27, Neg. LLF: 87.21202051391707
Iteration: 3, Func. Count: 41, Neg. LLF: 78.69400580038766
Iteration: 4, Func. Count: 54, Neg. LLF: 73.43649678230175
Iteration: 5, Func. Count: 66, Neg. LLF: 73.34335961357779
Iteration: 6, Func. Count: 78, Neg. LLF: 73.33461359990945
Iteration: 7, Func. Count: 90, Neg. LLF: 73.29045399271207
Iteration: 8, Func. Count: 102, Neg. LLF: 73.12742689134889
Iteration: 9, Func. Count: 114, Neg. LLF: 72.99487745702301
Iteration: 10, Func. Count: 126, Neg. LLF: 77.67849999579862
Iteration: 11, Func. Count: 139, Neg. LLF: 72.80482341204645
Iteration: 12, Func. Count: 151, Neg. LLF: 72.76462591419802
Iteration: 13, Func. Count: 163, Neg. LLF: 72.76349867745265
Iteration: 14, Func. Count: 175, Neg. LLF: 72.76260815626615
Iteration: 15, Func. Count: 187, Neg. LLF: 72.7624786242433
Iteration: 16, Func. Count: 199, Neg. LLF: 72.76245126903763
Iteration: 17, Func. Count: 211, Neg. LLF: 73.72445615403379
Optimization terminated successfully (Exit mode 0)
Current function value: 72.76245120316415
Iterations: 18
Function evaluations: 215
Gradient evaluations: 17
Iteration: 1, Func. Count: 6, Neg. LLF: 168.20694125524167
Iteration: 2, Func. Count: 15, Neg. LLF: 153.44355594937838
Iteration: 3, Func. Count: 22, Neg. LLF: 91.18532675015585
Iteration: 4, Func. Count: 28, Neg. LLF: 73.60981431725385
Iteration: 5, Func. Count: 33, Neg. LLF: 73.60321727188588
Iteration: 6, Func. Count: 38, Neg. LLF: 73.60188178998781
Iteration: 7, Func. Count: 43, Neg. LLF: 73.60141424541371
Iteration: 8, Func. Count: 48, Neg. LLF: 73.60139715020327
Iteration: 9, Func. Count: 53, Neg. LLF: 73.6013929655513
Iteration: 10, Func. Count: 57, Neg. LLF: 73.6013929655499
Optimization terminated successfully (Exit mode 0)
Current function value: 73.6013929655513
Iterations: 10
Function evaluations: 57
Gradient evaluations: 10
Iteration: 1, Func. Count: 7, Neg. LLF: 23012205.527541626
Iteration: 2, Func. Count: 15, Neg. LLF: 74.16953616051268
Iteration: 3, Func. Count: 22, Neg. LLF: 73.72335671518955
Iteration: 4, Func. Count: 28, Neg. LLF: 77.58011720022762
Iteration: 5, Func. Count: 36, Neg. LLF: 74.01851176523475
Iteration: 6, Func. Count: 43, Neg. LLF: 73.3249490207552
Iteration: 7, Func. Count: 49, Neg. LLF: 73.32492349985125
Iteration: 8, Func. Count: 54, Neg. LLF: 73.32492349955413
Optimization terminated successfully (Exit mode 0)
Current function value: 73.32492349985125
Iterations: 8
Function evaluations: 54
Gradient evaluations: 8
Iteration: 1, Func. Count: 8, Neg. LLF: 23126445.49828987
Iteration: 2, Func. Count: 17, Neg. LLF: 73.8997721587013
Iteration: 3, Func. Count: 25, Neg. LLF: 73.51409528287056
Iteration: 4, Func. Count: 32, Neg. LLF: 73.73639436628049
Iteration: 5, Func. Count: 40, Neg. LLF: 83.33692678624375
Iteration: 6, Func. Count: 48, Neg. LLF: 73.3405568293359
Iteration: 7, Func. Count: 55, Neg. LLF: 73.3386421744123
Iteration: 8, Func. Count: 62, Neg. LLF: 73.33392115135486
Iteration: 9, Func. Count: 69, Neg. LLF: 73.32908399611017
Iteration: 10, Func. Count: 76, Neg. LLF: 73.32501167286277
Iteration: 11, Func. Count: 83, Neg. LLF: 73.32498510447239
Iteration: 12, Func. Count: 90, Neg. LLF: 73.32494324952138
Iteration: 13, Func. Count: 97, Neg. LLF: 73.3249238341935
Iteration: 14, Func. Count: 103, Neg. LLF: 73.32492383514123
Optimization terminated successfully (Exit mode 0)
Current function value: 73.3249238341935
Iterations: 14
Function evaluations: 103
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 23266042.686500832
Iteration: 2, Func. Count: 19, Neg. LLF: 1235.0784690954545
Iteration: 3, Func. Count: 29, Neg. LLF: 87.06240182398793
Iteration: 4, Func. Count: 39, Neg. LLF: 72.53810973835328
Iteration: 5, Func. Count: 47, Neg. LLF: 72.28243832138217
Iteration: 6, Func. Count: 55, Neg. LLF: 72.25139753793353
Iteration: 7, Func. Count: 63, Neg. LLF: 72.24612770555186
Iteration: 8, Func. Count: 71, Neg. LLF: 72.24481744941927
Iteration: 9, Func. Count: 79, Neg. LLF: 72.24481312018743
Iteration: 10, Func. Count: 86, Neg. LLF: 72.24481312054888
Optimization terminated successfully (Exit mode 0)
Current function value: 72.24481312018743
Iterations: 10
Function evaluations: 86
Gradient evaluations: 10
Iteration: 1, Func. Count: 10, Neg. LLF: 22818657.316517964
Iteration: 2, Func. Count: 21, Neg. LLF: 23414.67433385002
Iteration: 3, Func. Count: 31, Neg. LLF: 2009.02247401084
Iteration: 4, Func. Count: 42, Neg. LLF: 73.23302523514006
Iteration: 5, Func. Count: 51, Neg. LLF: 72.50235843643789
Iteration: 6, Func. Count: 60, Neg. LLF: 72.29931381498355
Iteration: 7, Func. Count: 69, Neg. LLF: 72.30567327920839
Iteration: 8, Func. Count: 79, Neg. LLF: 72.2472496036524
Iteration: 9, Func. Count: 88, Neg. LLF: 72.2448235041799
Iteration: 10, Func. Count: 97, Neg. LLF: 72.24481274988835
Iteration: 11, Func. Count: 105, Neg. LLF: 72.24481287498584
Optimization terminated successfully (Exit mode 0)
Current function value: 72.24481274988835
Iterations: 11
Function evaluations: 105
Gradient evaluations: 11
Iteration: 1, Func. Count: 7, Neg. LLF: 166.99949291256902
Iteration: 2, Func. Count: 16, Neg. LLF: 165.64939891069932
Iteration: 3, Func. Count: 24, Neg. LLF: 75.12645875766613
Iteration: 4, Func. Count: 30, Neg. LLF: 74.11318686636643
Iteration: 5, Func. Count: 36, Neg. LLF: 84.51852452580451
Iteration: 6, Func. Count: 43, Neg. LLF: 73.6228813565047
Iteration: 7, Func. Count: 49, Neg. LLF: 73.64611232183482
Iteration: 8, Func. Count: 56, Neg. LLF: 73.59864626343204
Iteration: 9, Func. Count: 62, Neg. LLF: 73.59588949441888
Iteration: 10, Func. Count: 68, Neg. LLF: 73.59519933456683
Iteration: 11, Func. Count: 74, Neg. LLF: 73.59514384216577
Iteration: 12, Func. Count: 80, Neg. LLF: 73.59514293437798
Optimization terminated successfully (Exit mode 0)
Current function value: 73.59514293437798
Iterations: 12
Function evaluations: 80
Gradient evaluations: 12
Iteration: 1, Func. Count: 8, Neg. LLF: 26805376.8161288
Iteration: 2, Func. Count: 17, Neg. LLF: 73.85231485189442
Iteration: 3, Func. Count: 24, Neg. LLF: 78.66025802162851
Iteration: 4, Func. Count: 32, Neg. LLF: 112277.16027897118
Iteration: 5, Func. Count: 41, Neg. LLF: 73.36846949141069
Iteration: 6, Func. Count: 48, Neg. LLF: 73.32739622357558
Iteration: 7, Func. Count: 55, Neg. LLF: 73.32498187058046
Iteration: 8, Func. Count: 62, Neg. LLF: 73.32492347502033
Iteration: 9, Func. Count: 68, Neg. LLF: 73.32492347552369
Optimization terminated successfully (Exit mode 0)
Current function value: 73.32492347502033
Iterations: 9
Function evaluations: 68
Gradient evaluations: 9
Iteration: 1, Func. Count: 9, Neg. LLF: 26397124.163046308
Iteration: 2, Func. Count: 19, Neg. LLF: 74.12672442803326
Iteration: 3, Func. Count: 28, Neg. LLF: 73.74545437551144
Iteration: 4, Func. Count: 36, Neg. LLF: 73.24220816840344
Iteration: 5, Func. Count: 44, Neg. LLF: 83.96416505492536
Iteration: 6, Func. Count: 53, Neg. LLF: 72.9216563784444
Iteration: 7, Func. Count: 61, Neg. LLF: 72.91728598408703
Iteration: 8, Func. Count: 69, Neg. LLF: 24366595.172775876
Iteration: 9, Func. Count: 80, Neg. LLF: 101.40382452852127
Iteration: 10, Func. Count: 91, Neg. LLF: 73.20483838494023
Iteration: 11, Func. Count: 101, Neg. LLF: 72.91075265222813
Iteration: 12, Func. Count: 108, Neg. LLF: 72.91075265224201
Optimization terminated successfully (Exit mode 0)
Current function value: 72.91075265222813
Iterations: 13
Function evaluations: 108
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 26492298.632054016
Iteration: 2, Func. Count: 21, Neg. LLF: 296.54592526488307
Iteration: 3, Func. Count: 32, Neg. LLF: 86.51420543592576
Iteration: 4, Func. Count: 43, Neg. LLF: 72.30388276481926
Iteration: 5, Func. Count: 52, Neg. LLF: 72.25089398929164
Iteration: 6, Func. Count: 61, Neg. LLF: 72.24900690642112
Iteration: 7, Func. Count: 70, Neg. LLF: 72.24491560909249
Iteration: 8, Func. Count: 79, Neg. LLF: 72.24481569260094
Iteration: 9, Func. Count: 88, Neg. LLF: 72.24481273260626
Iteration: 10, Func. Count: 96, Neg. LLF: 72.24481273252103
Optimization terminated successfully (Exit mode 0)
Current function value: 72.24481273260626
Iterations: 10
Function evaluations: 96
Gradient evaluations: 10
Iteration: 1, Func. Count: 11, Neg. LLF: 130214.964318227
Iteration: 2, Func. Count: 23, Neg. LLF: 5502.829542585627
Iteration: 3, Func. Count: 34, Neg. LLF: 141.8997563348614
Iteration: 4, Func. Count: 46, Neg. LLF: 73.27700454423503
Iteration: 5, Func. Count: 56, Neg. LLF: 72.39801685142872
Iteration: 6, Func. Count: 66, Neg. LLF: 72.39986180177164
Iteration: 7, Func. Count: 77, Neg. LLF: 72.24743433742215
Iteration: 8, Func. Count: 87, Neg. LLF: 72.24485232337649
Iteration: 9, Func. Count: 97, Neg. LLF: 72.24480933096744
Iteration: 10, Func. Count: 107, Neg. LLF: 72.24481040014228
Iteration: 11, Func. Count: 117, Neg. LLF: 72.24481177126725
Iteration: 12, Func. Count: 127, Neg. LLF: 72.38400922255919
Optimization terminated successfully (Exit mode 0)
Current function value: 72.24481173932705
Iterations: 13
Function evaluations: 131
Gradient evaluations: 12
Iteration: 1, Func. Count: 8, Neg. LLF: 178.89637106277894
Iteration: 2, Func. Count: 18, Neg. LLF: 152.499155665294
Iteration: 3, Func. Count: 27, Neg. LLF: 74.38722001342782
Iteration: 4, Func. Count: 34, Neg. LLF: 18354321.995814364
Iteration: 5, Func. Count: 42, Neg. LLF: 1088.8027709016167
Iteration: 6, Func. Count: 50, Neg. LLF: 74.22534626912426
Iteration: 7, Func. Count: 58, Neg. LLF: 73.75132308779669
Iteration: 8, Func. Count: 66, Neg. LLF: 73.58879709296563
Iteration: 9, Func. Count: 73, Neg. LLF: 73.57349132563212
Iteration: 10, Func. Count: 80, Neg. LLF: 73.57161378849841
Iteration: 11, Func. Count: 87, Neg. LLF: 73.57081374148547
Iteration: 12, Func. Count: 94, Neg. LLF: 73.57073993297128
Iteration: 13, Func. Count: 101, Neg. LLF: 73.57073708400061
Iteration: 14, Func. Count: 107, Neg. LLF: 73.57073708396001
Optimization terminated successfully (Exit mode 0)
Current function value: 73.57073708400061
Iterations: 14
Function evaluations: 107
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 26942958.0364278
Iteration: 2, Func. Count: 19, Neg. LLF: 73.79045647777896
Iteration: 3, Func. Count: 27, Neg. LLF: 73.5630876352455
Iteration: 4, Func. Count: 35, Neg. LLF: 163.69533455149184
Iteration: 5, Func. Count: 46, Neg. LLF: 73.9324866800527
Iteration: 6, Func. Count: 55, Neg. LLF: 73.32955555547481
Iteration: 7, Func. Count: 63, Neg. LLF: 73.32520768638764
Iteration: 8, Func. Count: 71, Neg. LLF: 73.32492349386563
Iteration: 9, Func. Count: 78, Neg. LLF: 73.32492349445974
Optimization terminated successfully (Exit mode 0)
Current function value: 73.32492349386563
Iterations: 9
Function evaluations: 78
Gradient evaluations: 9
Iteration: 1, Func. Count: 10, Neg. LLF: 27022280.900942076
Iteration: 2, Func. Count: 21, Neg. LLF: 77.68158132592343
Iteration: 3, Func. Count: 32, Neg. LLF: 73.88598005870168
Iteration: 4, Func. Count: 42, Neg. LLF: 73.60879347994234
Iteration: 5, Func. Count: 51, Neg. LLF: 73.32049907154232
Iteration: 6, Func. Count: 60, Neg. LLF: 99.81820104464896
Iteration: 7, Func. Count: 71, Neg. LLF: 75.53494581855158
Iteration: 8, Func. Count: 81, Neg. LLF: 72.62903659355828
Iteration: 9, Func. Count: 90, Neg. LLF: 72.62526999919422
Iteration: 10, Func. Count: 99, Neg. LLF: 72.59897874214685
Iteration: 11, Func. Count: 108, Neg. LLF: 72.57777600881442
Iteration: 12, Func. Count: 117, Neg. LLF: 72.5760668280864
Iteration: 13, Func. Count: 126, Neg. LLF: 5196759.372518777
Iteration: 14, Func. Count: 139, Neg. LLF: 77.94440615868768
Iteration: 15, Func. Count: 151, Neg. LLF: 72.61075033263862
Iteration: 16, Func. Count: 162, Neg. LLF: 72.57551950450278
Iteration: 17, Func. Count: 170, Neg. LLF: 72.57551950450208
Optimization terminated successfully (Exit mode 0)
Current function value: 72.57551950450278
Iterations: 18
Function evaluations: 170
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 27288537.82732196
Iteration: 2, Func. Count: 23, Neg. LLF: 310.64639546901986
Iteration: 3, Func. Count: 35, Neg. LLF: 98.70797771033875
Iteration: 4, Func. Count: 47, Neg. LLF: 75.41411284442721
Iteration: 5, Func. Count: 58, Neg. LLF: 72.3156100894341
Iteration: 6, Func. Count: 68, Neg. LLF: 72.10930988142708
Iteration: 7, Func. Count: 78, Neg. LLF: 72.08774457463672
Iteration: 8, Func. Count: 88, Neg. LLF: 72.08619701359406
Iteration: 9, Func. Count: 98, Neg. LLF: 72.08313951817954
Iteration: 10, Func. Count: 108, Neg. LLF: 72.08277967987283
Iteration: 11, Func. Count: 118, Neg. LLF: 72.08276834128964
Iteration: 12, Func. Count: 128, Neg. LLF: 72.08276624175075
Iteration: 13, Func. Count: 137, Neg. LLF: 72.08276624165023
Optimization terminated successfully (Exit mode 0)
Current function value: 72.08276624175075
Iterations: 13
Function evaluations: 137
Gradient evaluations: 13
Iteration: 1, Func. Count: 12, Neg. LLF: 14750714.67726156
Iteration: 2, Func. Count: 25, Neg. LLF: 93.0236248108336
Iteration: 3, Func. Count: 37, Neg. LLF: 9182377.948434861
Iteration: 4, Func. Count: 50, Neg. LLF: 77.74649464214654
Iteration: 5, Func. Count: 62, Neg. LLF: 72.52152489847451
Iteration: 6, Func. Count: 73, Neg. LLF: 73.80025204338176
Iteration: 7, Func. Count: 85, Neg. LLF: 72.14132693056995
Iteration: 8, Func. Count: 97, Neg. LLF: 72.09434170805812
Iteration: 9, Func. Count: 108, Neg. LLF: 72.08317329352134
Iteration: 10, Func. Count: 119, Neg. LLF: 72.08277198213393
Iteration: 11, Func. Count: 130, Neg. LLF: 72.08276617228898
Iteration: 12, Func. Count: 140, Neg. LLF: 72.08276632339539
Optimization terminated successfully (Exit mode 0)
Current function value: 72.08276617228898
Iterations: 12
Function evaluations: 140
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 171.8587297773668
Iteration: 2, Func. Count: 20, Neg. LLF: 146.87095391531
Iteration: 3, Func. Count: 30, Neg. LLF: 74.45275398153011
Iteration: 4, Func. Count: 38, Neg. LLF: 74.10847071802311
Iteration: 5, Func. Count: 46, Neg. LLF: 77.9342398972267
Iteration: 6, Func. Count: 56, Neg. LLF: 78.209713100394
Iteration: 7, Func. Count: 66, Neg. LLF: 73.66561555623635
Iteration: 8, Func. Count: 75, Neg. LLF: 73.58569828395629
Iteration: 9, Func. Count: 83, Neg. LLF: 73.57293120852982
Iteration: 10, Func. Count: 91, Neg. LLF: 73.57114425743002
Iteration: 11, Func. Count: 99, Neg. LLF: 73.57077993828143
Iteration: 12, Func. Count: 107, Neg. LLF: 73.57074608314717
Iteration: 13, Func. Count: 115, Neg. LLF: 73.5707360824007
Iteration: 14, Func. Count: 122, Neg. LLF: 73.57073608768998
Optimization terminated successfully (Exit mode 0)
Current function value: 73.5707360824007
Iterations: 14
Function evaluations: 122
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 26114263.79838846
Iteration: 2, Func. Count: 21, Neg. LLF: 73.87602050366276
Iteration: 3, Func. Count: 30, Neg. LLF: 77.18848913198059
Iteration: 4, Func. Count: 40, Neg. LLF: 448.29265032891726
Iteration: 5, Func. Count: 51, Neg. LLF: 73.40081800892325
Iteration: 6, Func. Count: 60, Neg. LLF: 73.33843658694238
Iteration: 7, Func. Count: 69, Neg. LLF: 73.32553995901961
Iteration: 8, Func. Count: 78, Neg. LLF: 73.32492388018662
Iteration: 9, Func. Count: 86, Neg. LLF: 73.32492387814355
Optimization terminated successfully (Exit mode 0)
Current function value: 73.32492388018662
Iterations: 9
Function evaluations: 86
Gradient evaluations: 9
Iteration: 1, Func. Count: 11, Neg. LLF: 26470447.159408525
Iteration: 2, Func. Count: 23, Neg. LLF: 77.37674406198256
Iteration: 3, Func. Count: 34, Neg. LLF: 73.77206694849464
Iteration: 4, Func. Count: 44, Neg. LLF: 76.94463785929824
Iteration: 5, Func. Count: 55, Neg. LLF: 110.62259828312432
Iteration: 6, Func. Count: 67, Neg. LLF: 73.37113324722255
Iteration: 7, Func. Count: 77, Neg. LLF: 73.34581425042109
Iteration: 8, Func. Count: 87, Neg. LLF: 73.34258710051279
Iteration: 9, Func. Count: 97, Neg. LLF: 73.3414296246878
Iteration: 10, Func. Count: 107, Neg. LLF: 73.33646859002963
Iteration: 11, Func. Count: 117, Neg. LLF: 73.33239701276034
Iteration: 12, Func. Count: 127, Neg. LLF: 73.32519411074831
Iteration: 13, Func. Count: 137, Neg. LLF: 73.32516566530714
Iteration: 14, Func. Count: 148, Neg. LLF: 73.32496424532663
Iteration: 15, Func. Count: 158, Neg. LLF: 73.32492344769585
Iteration: 16, Func. Count: 167, Neg. LLF: 73.32492344806555
Optimization terminated successfully (Exit mode 0)
Current function value: 73.32492344769585
Iterations: 16
Function evaluations: 167
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 26838548.696095683
Iteration: 2, Func. Count: 25, Neg. LLF: 230.13931424359563
Iteration: 3, Func. Count: 38, Neg. LLF: 100.12260709442276
Iteration: 4, Func. Count: 51, Neg. LLF: 76.00630173294965
Iteration: 5, Func. Count: 63, Neg. LLF: 72.30599785770416
Iteration: 6, Func. Count: 74, Neg. LLF: 72.10650893737156
Iteration: 7, Func. Count: 85, Neg. LLF: 72.11204009507155
Iteration: 8, Func. Count: 97, Neg. LLF: 72.08372061585644
Iteration: 9, Func. Count: 108, Neg. LLF: 72.08289451674216
Iteration: 10, Func. Count: 119, Neg. LLF: 72.08277646670076
Iteration: 11, Func. Count: 130, Neg. LLF: 72.08276663515744
Iteration: 12, Func. Count: 140, Neg. LLF: 72.08276663474068
Optimization terminated successfully (Exit mode 0)
Current function value: 72.08276663515744
Iterations: 12
Function evaluations: 140
Gradient evaluations: 12
Iteration: 1, Func. Count: 13, Neg. LLF: 14743601.317661056
Iteration: 2, Func. Count: 27, Neg. LLF: 92.31477341026401
Iteration: 3, Func. Count: 40, Neg. LLF: 104.7813648345949
Iteration: 4, Func. Count: 54, Neg. LLF: 82.46097922272602
Iteration: 5, Func. Count: 67, Neg. LLF: 72.74365406155236
Iteration: 6, Func. Count: 79, Neg. LLF: 74.15920869556567
Iteration: 7, Func. Count: 92, Neg. LLF: 72.17310087441582
Iteration: 8, Func. Count: 105, Neg. LLF: 72.10274101276477
Iteration: 9, Func. Count: 118, Neg. LLF: 72.08386514993194
Iteration: 10, Func. Count: 130, Neg. LLF: 72.08277120236625
Iteration: 11, Func. Count: 142, Neg. LLF: 72.08276617900519
Iteration: 12, Func. Count: 153, Neg. LLF: 72.08276633029429
Optimization terminated successfully (Exit mode 0)
Current function value: 72.08276617900519
Iterations: 12
Function evaluations: 153
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 166.10582264145825
Iteration: 2, Func. Count: 22, Neg. LLF: 145.3876926196697
Iteration: 3, Func. Count: 33, Neg. LLF: 75.10477210744763
Iteration: 4, Func. Count: 42, Neg. LLF: 73.90977958086941
Iteration: 5, Func. Count: 51, Neg. LLF: 94.78860265302636
Iteration: 6, Func. Count: 61, Neg. LLF: 73.59829658548311
Iteration: 7, Func. Count: 70, Neg. LLF: 73.82833281719871
Iteration: 8, Func. Count: 80, Neg. LLF: 73.6253769888568
Iteration: 9, Func. Count: 90, Neg. LLF: 73.57176621576686
Iteration: 10, Func. Count: 99, Neg. LLF: 73.57087106479312
Iteration: 11, Func. Count: 108, Neg. LLF: 73.57073919665525
Iteration: 12, Func. Count: 117, Neg. LLF: 73.57073592400677
Iteration: 13, Func. Count: 125, Neg. LLF: 73.57073598968749
Optimization terminated successfully (Exit mode 0)
Current function value: 73.57073592400677
Iterations: 13
Function evaluations: 125
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 25634951.143457763
Iteration: 2, Func. Count: 23, Neg. LLF: 73.93277073374139
Iteration: 3, Func. Count: 33, Neg. LLF: 76.57554483133333
Iteration: 4, Func. Count: 44, Neg. LLF: 397.1487644564229
Iteration: 5, Func. Count: 56, Neg. LLF: 73.45155658593825
Iteration: 6, Func. Count: 66, Neg. LLF: 73.38326308162823
Iteration: 7, Func. Count: 76, Neg. LLF: 73.32892943920282
Iteration: 8, Func. Count: 86, Neg. LLF: 73.32499268654686
Iteration: 9, Func. Count: 96, Neg. LLF: 73.32492345285569
Iteration: 10, Func. Count: 105, Neg. LLF: 73.32492345259139
Optimization terminated successfully (Exit mode 0)
Current function value: 73.32492345285569
Iterations: 10
Function evaluations: 105
Gradient evaluations: 10
Iteration: 1, Func. Count: 12, Neg. LLF: 26077345.63374756
Iteration: 2, Func. Count: 25, Neg. LLF: 77.24719745675013
Iteration: 3, Func. Count: 37, Neg. LLF: 73.73668044362734
Iteration: 4, Func. Count: 48, Neg. LLF: 80.14999469226854
Iteration: 5, Func. Count: 60, Neg. LLF: 98.42976369637758
Iteration: 6, Func. Count: 73, Neg. LLF: 73.36557276117279
Iteration: 7, Func. Count: 84, Neg. LLF: 73.3435954121511
Iteration: 8, Func. Count: 95, Neg. LLF: 73.3420022776795
Iteration: 9, Func. Count: 106, Neg. LLF: 73.34021162749546
Iteration: 10, Func. Count: 117, Neg. LLF: 73.33715261772019
Iteration: 11, Func. Count: 128, Neg. LLF: 73.33320740312651
Iteration: 12, Func. Count: 139, Neg. LLF: 73.32546279258995
Iteration: 13, Func. Count: 150, Neg. LLF: 73.32522968671452
Iteration: 14, Func. Count: 161, Neg. LLF: 73.3249314651411
Iteration: 15, Func. Count: 172, Neg. LLF: 73.32492344543839
Iteration: 16, Func. Count: 182, Neg. LLF: 73.32492344582732
Optimization terminated successfully (Exit mode 0)
Current function value: 73.32492344543839
Iterations: 16
Function evaluations: 182
Gradient evaluations: 16
Iteration: 1, Func. Count: 13, Neg. LLF: 26514248.91401682
Iteration: 2, Func. Count: 27, Neg. LLF: 212.72553098026552
Iteration: 3, Func. Count: 41, Neg. LLF: 100.0102556127378
Iteration: 4, Func. Count: 55, Neg. LLF: 76.07256844918004
Iteration: 5, Func. Count: 68, Neg. LLF: 72.30315408055019
Iteration: 6, Func. Count: 80, Neg. LLF: 72.10577562547556
Iteration: 7, Func. Count: 92, Neg. LLF: 72.11204592183171
Iteration: 8, Func. Count: 105, Neg. LLF: 72.08369517799915
Iteration: 9, Func. Count: 117, Neg. LLF: 72.08289976001583
Iteration: 10, Func. Count: 129, Neg. LLF: 72.08277472675117
Iteration: 11, Func. Count: 141, Neg. LLF: 72.08276655323868
Iteration: 12, Func. Count: 152, Neg. LLF: 72.08276655288299
Optimization terminated successfully (Exit mode 0)
Current function value: 72.08276655323868
Iterations: 12
Function evaluations: 152
Gradient evaluations: 12
Iteration: 1, Func. Count: 14, Neg. LLF: 14743357.311166292
Iteration: 2, Func. Count: 29, Neg. LLF: 104.01653558754602
Iteration: 3, Func. Count: 43, Neg. LLF: 81.35710508905862
Iteration: 4, Func. Count: 57, Neg. LLF: 72.92325488503118
Iteration: 5, Func. Count: 70, Neg. LLF: 104.25109915679748
Iteration: 6, Func. Count: 85, Neg. LLF: 72.97510781735818
Iteration: 7, Func. Count: 99, Neg. LLF: 72.10544712115492
Iteration: 8, Func. Count: 112, Neg. LLF: 72.09203556693954
Iteration: 9, Func. Count: 125, Neg. LLF: 72.08578352045883
Iteration: 10, Func. Count: 138, Neg. LLF: 72.0827741201061
Iteration: 11, Func. Count: 151, Neg. LLF: 72.08276782557876
Iteration: 12, Func. Count: 164, Neg. LLF: 72.08276668889066
Iteration: 13, Func. Count: 177, Neg. LLF: 72.08280497877352
Optimization terminated successfully (Exit mode 0)
Current function value: 72.08276667908464
Iterations: 14
Function evaluations: 179
Gradient evaluations: 13
Iteration: 1, Func. Count: 7, Neg. LLF: 140.96395356961787
Iteration: 2, Func. Count: 17, Neg. LLF: 135.39656051779653
Iteration: 3, Func. Count: 25, Neg. LLF: 213.96125950862165
Iteration: 4, Func. Count: 32, Neg. LLF: 73.85547228544453
Iteration: 5, Func. Count: 38, Neg. LLF: 73.5455685733369
Iteration: 6, Func. Count: 44, Neg. LLF: 73.53858056822061
Iteration: 7, Func. Count: 51, Neg. LLF: 73.5239990066868
Iteration: 8, Func. Count: 57, Neg. LLF: 73.52379543334429
Iteration: 9, Func. Count: 63, Neg. LLF: 73.52377404180055
Iteration: 10, Func. Count: 69, Neg. LLF: 73.52376150911687
Iteration: 11, Func. Count: 74, Neg. LLF: 73.52376150912903
Optimization terminated successfully (Exit mode 0)
Current function value: 73.52376150911687
Iterations: 11
Function evaluations: 74
Gradient evaluations: 11
Iteration: 1, Func. Count: 8, Neg. LLF: 22808453.790511884
Iteration: 2, Func. Count: 17, Neg. LLF: 74.31996879348748
Iteration: 3, Func. Count: 25, Neg. LLF: 73.59633945564319
Iteration: 4, Func. Count: 32, Neg. LLF: 74.52818824300049
Iteration: 5, Func. Count: 41, Neg. LLF: 73.60505541842925
Iteration: 6, Func. Count: 49, Neg. LLF: 73.55079414555507
Iteration: 7, Func. Count: 56, Neg. LLF: 503260760.34676844
Iteration: 8, Func. Count: 66, Neg. LLF: 5846.524354064227
Iteration: 9, Func. Count: 76, Neg. LLF: 73.32506665982481
Iteration: 10, Func. Count: 83, Neg. LLF: 73.32492413188481
Iteration: 11, Func. Count: 90, Neg. LLF: 73.3249234456961
Optimization terminated successfully (Exit mode 0)
Current function value: 73.3249234456961
Iterations: 12
Function evaluations: 90
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 22844710.07155796
Iteration: 2, Func. Count: 19, Neg. LLF: 73.89387846549995
Iteration: 3, Func. Count: 28, Neg. LLF: 73.64373986299725
Iteration: 4, Func. Count: 36, Neg. LLF: 73.48735277162662
Iteration: 5, Func. Count: 44, Neg. LLF: 157.23107664497894
Iteration: 6, Func. Count: 55, Neg. LLF: 73.10759592273665
Iteration: 7, Func. Count: 63, Neg. LLF: 73.00534543692058
Iteration: 8, Func. Count: 71, Neg. LLF: 72.9151354708058
Iteration: 9, Func. Count: 79, Neg. LLF: 72.91087355258003
Iteration: 10, Func. Count: 87, Neg. LLF: 72.91076742361818
Iteration: 11, Func. Count: 95, Neg. LLF: 72.91075940821031
Iteration: 12, Func. Count: 103, Neg. LLF: 72.91075274473661
Iteration: 13, Func. Count: 110, Neg. LLF: 72.91075274444171
Optimization terminated successfully (Exit mode 0)
Current function value: 72.91075274473661
Iterations: 13
Function evaluations: 110
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 22952314.04756274
Iteration: 2, Func. Count: 21, Neg. LLF: 2365.501196600359
Iteration: 3, Func. Count: 32, Neg. LLF: 89.12696050688541
Iteration: 4, Func. Count: 43, Neg. LLF: 72.82528965658541
Iteration: 5, Func. Count: 52, Neg. LLF: 72.34217173168352
Iteration: 6, Func. Count: 61, Neg. LLF: 72.2628272786086
Iteration: 7, Func. Count: 70, Neg. LLF: 72.24489164383584
Iteration: 8, Func. Count: 79, Neg. LLF: 72.24484764698387
Iteration: 9, Func. Count: 88, Neg. LLF: 72.24481284030418
Iteration: 10, Func. Count: 96, Neg. LLF: 72.24481284046959
Optimization terminated successfully (Exit mode 0)
Current function value: 72.24481284030418
Iterations: 10
Function evaluations: 96
Gradient evaluations: 10
Iteration: 1, Func. Count: 11, Neg. LLF: 22976422.60320784
Iteration: 2, Func. Count: 23, Neg. LLF: 36709.26012315096
Iteration: 3, Func. Count: 34, Neg. LLF: 494.98360431898215
Iteration: 4, Func. Count: 46, Neg. LLF: 73.24126935942819
Iteration: 5, Func. Count: 56, Neg. LLF: 72.25842915733091
Iteration: 6, Func. Count: 66, Neg. LLF: 72.29352727578883
Iteration: 7, Func. Count: 77, Neg. LLF: 72.2455419491518
Iteration: 8, Func. Count: 87, Neg. LLF: 72.24490645473223
Iteration: 9, Func. Count: 97, Neg. LLF: 72.24481280393051
Iteration: 10, Func. Count: 106, Neg. LLF: 72.24481292900671
Optimization terminated successfully (Exit mode 0)
Current function value: 72.24481280393051
Iterations: 10
Function evaluations: 106
Gradient evaluations: 10
Iteration: 1, Func. Count: 8, Neg. LLF: 139.75150562074768
Iteration: 2, Func. Count: 19, Neg. LLF: 133.61964663822724
Iteration: 3, Func. Count: 28, Neg. LLF: 202.10950711715628
Iteration: 4, Func. Count: 36, Neg. LLF: 73.72030009617497
Iteration: 5, Func. Count: 43, Neg. LLF: 73.55898242336049
Iteration: 6, Func. Count: 50, Neg. LLF: 74.83114689422142
Iteration: 7, Func. Count: 59, Neg. LLF: 73.56505016617768
Iteration: 8, Func. Count: 67, Neg. LLF: 73.51873599764103
Iteration: 9, Func. Count: 74, Neg. LLF: 73.51851667444528
Iteration: 10, Func. Count: 81, Neg. LLF: 73.51843521414821
Iteration: 11, Func. Count: 88, Neg. LLF: 73.51842163823656
Iteration: 12, Func. Count: 94, Neg. LLF: 73.51842151752552
Optimization terminated successfully (Exit mode 0)
Current function value: 73.51842163823656
Iterations: 12
Function evaluations: 94
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 25215260.466365255
Iteration: 2, Func. Count: 19, Neg. LLF: 73.94563076054479
Iteration: 3, Func. Count: 27, Neg. LLF: 78.09414543124561
Iteration: 4, Func. Count: 36, Neg. LLF: 216.66388438979044
Iteration: 5, Func. Count: 46, Neg. LLF: 73.38302944126016
Iteration: 6, Func. Count: 54, Neg. LLF: 73.33320115222642
Iteration: 7, Func. Count: 62, Neg. LLF: 73.32550978398285
Iteration: 8, Func. Count: 70, Neg. LLF: 73.32492344767911
Iteration: 9, Func. Count: 77, Neg. LLF: 73.3249234477847
Optimization terminated successfully (Exit mode 0)
Current function value: 73.32492344767911
Iterations: 9
Function evaluations: 77
Gradient evaluations: 9
Iteration: 1, Func. Count: 10, Neg. LLF: 25083820.444445144
Iteration: 2, Func. Count: 21, Neg. LLF: 74.37983653876663
Iteration: 3, Func. Count: 31, Neg. LLF: 73.60468660749979
Iteration: 4, Func. Count: 40, Neg. LLF: 73.1739218530321
Iteration: 5, Func. Count: 49, Neg. LLF: 86.09860143166063
Iteration: 6, Func. Count: 59, Neg. LLF: 72.94225070668185
Iteration: 7, Func. Count: 68, Neg. LLF: 72.93647944276202
Iteration: 8, Func. Count: 77, Neg. LLF: 72.92991391523947
Iteration: 9, Func. Count: 86, Neg. LLF: 72.91167509577002
Iteration: 10, Func. Count: 95, Neg. LLF: 72.9118785687201
Iteration: 11, Func. Count: 105, Neg. LLF: 72.91075480161828
Iteration: 12, Func. Count: 114, Neg. LLF: 105.63147460679554
Optimization terminated successfully (Exit mode 0)
Current function value: 72.91075451578601
Iterations: 13
Function evaluations: 118
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 25405998.737508237
Iteration: 2, Func. Count: 23, Neg. LLF: 682.0664161550042
Iteration: 3, Func. Count: 35, Neg. LLF: 89.95244069188544
Iteration: 4, Func. Count: 47, Neg. LLF: 72.52969510715393
Iteration: 5, Func. Count: 57, Neg. LLF: 72.28196822188676
Iteration: 6, Func. Count: 67, Neg. LLF: 72.25008406224593
Iteration: 7, Func. Count: 77, Neg. LLF: 72.24619884759409
Iteration: 8, Func. Count: 87, Neg. LLF: 72.24481523402862
Iteration: 9, Func. Count: 97, Neg. LLF: 72.24481288868878
Iteration: 10, Func. Count: 106, Neg. LLF: 72.24481288891889
Optimization terminated successfully (Exit mode 0)
Current function value: 72.24481288868878
Iterations: 10
Function evaluations: 106
Gradient evaluations: 10
Iteration: 1, Func. Count: 12, Neg. LLF: 6471.356836237556
Iteration: 2, Func. Count: 24, Neg. LLF: 102.77413432491514
Iteration: 3, Func. Count: 36, Neg. LLF: 108.0187804783541
Iteration: 4, Func. Count: 49, Neg. LLF: 73.14431895521267
Iteration: 5, Func. Count: 60, Neg. LLF: 72.36148510481306
Iteration: 6, Func. Count: 71, Neg. LLF: 72.57035093572316
Iteration: 7, Func. Count: 83, Neg. LLF: 72.24495327817385
Iteration: 8, Func. Count: 94, Neg. LLF: 72.2448314470647
Iteration: 9, Func. Count: 105, Neg. LLF: 72.24481265305306
Iteration: 10, Func. Count: 115, Neg. LLF: 72.24481277807132
Optimization terminated successfully (Exit mode 0)
Current function value: 72.24481265305306
Iterations: 11
Function evaluations: 115
Gradient evaluations: 10
Iteration: 1, Func. Count: 9, Neg. LLF: 160.2779633717799
Iteration: 2, Func. Count: 20, Neg. LLF: 142.90774697978864
Iteration: 3, Func. Count: 30, Neg. LLF: 81.06846236567145
Iteration: 4, Func. Count: 39, Neg. LLF: 73.6467593703806
Iteration: 5, Func. Count: 47, Neg. LLF: 130.48160549710695
Iteration: 6, Func. Count: 56, Neg. LLF: 73.56999224094358
Iteration: 7, Func. Count: 65, Neg. LLF: 73.5959629698429
Iteration: 8, Func. Count: 74, Neg. LLF: 73.64404179187174
Iteration: 9, Func. Count: 83, Neg. LLF: 73.49132735656292
Iteration: 10, Func. Count: 92, Neg. LLF: 73.48806227195371
Iteration: 11, Func. Count: 100, Neg. LLF: 73.48805290399335
Iteration: 12, Func. Count: 107, Neg. LLF: 73.4880529039684
Optimization terminated successfully (Exit mode 0)
Current function value: 73.48805290399335
Iterations: 12
Function evaluations: 107
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 25322330.71046242
Iteration: 2, Func. Count: 21, Neg. LLF: 74.01410024244608
Iteration: 3, Func. Count: 31, Neg. LLF: 73.59858804545513
Iteration: 4, Func. Count: 40, Neg. LLF: 83.24309503119471
Iteration: 5, Func. Count: 51, Neg. LLF: 77.38965248893402
Iteration: 6, Func. Count: 62, Neg. LLF: 73.3750560030333
Iteration: 7, Func. Count: 71, Neg. LLF: 73.32668828547092
Iteration: 8, Func. Count: 80, Neg. LLF: 73.32492883095651
Iteration: 9, Func. Count: 89, Neg. LLF: 73.32492351994547
Iteration: 10, Func. Count: 97, Neg. LLF: 73.32492352044471
Optimization terminated successfully (Exit mode 0)
Current function value: 73.32492351994547
Iterations: 10
Function evaluations: 97
Gradient evaluations: 10
Iteration: 1, Func. Count: 11, Neg. LLF: 25583204.96232119
Iteration: 2, Func. Count: 23, Neg. LLF: 79.94413338919583
Iteration: 3, Func. Count: 35, Neg. LLF: 73.69971727028165
Iteration: 4, Func. Count: 45, Neg. LLF: 78.14469325845872
Iteration: 5, Func. Count: 56, Neg. LLF: 91.8411588484723
Iteration: 6, Func. Count: 68, Neg. LLF: 73.35897347030675
Iteration: 7, Func. Count: 78, Neg. LLF: 73.34480957353198
Iteration: 8, Func. Count: 88, Neg. LLF: 73.34249274995962
Iteration: 9, Func. Count: 98, Neg. LLF: 73.33978675982318
Iteration: 10, Func. Count: 108, Neg. LLF: 73.33596483971924
Iteration: 11, Func. Count: 118, Neg. LLF: 73.33153746080819
Iteration: 12, Func. Count: 128, Neg. LLF: 73.32514925758582
Iteration: 13, Func. Count: 138, Neg. LLF: 73.3250557059475
Iteration: 14, Func. Count: 148, Neg. LLF: 73.32493543402774
Iteration: 15, Func. Count: 158, Neg. LLF: 73.32492345040797
Iteration: 16, Func. Count: 167, Neg. LLF: 73.32492345090928
Optimization terminated successfully (Exit mode 0)
Current function value: 73.32492345040797
Iterations: 16
Function evaluations: 167
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 26078822.828858472
Iteration: 2, Func. Count: 25, Neg. LLF: 374.9813501309553
Iteration: 3, Func. Count: 38, Neg. LLF: 98.38161667935503
Iteration: 4, Func. Count: 51, Neg. LLF: 74.93998391773097
Iteration: 5, Func. Count: 63, Neg. LLF: 72.31488700489444
Iteration: 6, Func. Count: 74, Neg. LLF: 72.11940966092239
Iteration: 7, Func. Count: 85, Neg. LLF: 72.09708033853356
Iteration: 8, Func. Count: 96, Neg. LLF: 72.09069308207219
Iteration: 9, Func. Count: 107, Neg. LLF: 72.08287153388467
Iteration: 10, Func. Count: 118, Neg. LLF: 72.08278070438138
Iteration: 11, Func. Count: 129, Neg. LLF: 72.08276742939344
Iteration: 12, Func. Count: 140, Neg. LLF: 72.08276614724122
Iteration: 13, Func. Count: 150, Neg. LLF: 72.08276614713976
Optimization terminated successfully (Exit mode 0)
Current function value: 72.08276614724122
Iterations: 13
Function evaluations: 150
Gradient evaluations: 13
Iteration: 1, Func. Count: 13, Neg. LLF: 13809448.380664937
Iteration: 2, Func. Count: 27, Neg. LLF: 93.17930646469894
Iteration: 3, Func. Count: 40, Neg. LLF: 108.57341490770364
Iteration: 4, Func. Count: 54, Neg. LLF: 81.60417041103122
Iteration: 5, Func. Count: 67, Neg. LLF: 72.7837939596687
Iteration: 6, Func. Count: 79, Neg. LLF: 74.20815312409016
Iteration: 7, Func. Count: 92, Neg. LLF: 72.20070020309035
Iteration: 8, Func. Count: 105, Neg. LLF: 72.09305471680746
Iteration: 9, Func. Count: 117, Neg. LLF: 72.08335856943079
Iteration: 10, Func. Count: 129, Neg. LLF: 72.08293192762132
Iteration: 11, Func. Count: 141, Neg. LLF: 72.08276632197658
Iteration: 12, Func. Count: 152, Neg. LLF: 72.08276647315594
Optimization terminated successfully (Exit mode 0)
Current function value: 72.08276632197658
Iterations: 12
Function evaluations: 152
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 157.62265449989343
Iteration: 2, Func. Count: 22, Neg. LLF: 137.1329642662852
Iteration: 3, Func. Count: 33, Neg. LLF: 85.52386487258742
Iteration: 4, Func. Count: 43, Neg. LLF: 73.63672716694187
Iteration: 5, Func. Count: 52, Neg. LLF: 137.7523524377354
Iteration: 6, Func. Count: 62, Neg. LLF: 148.90959714456602
Iteration: 7, Func. Count: 73, Neg. LLF: 73.51730610017727
Iteration: 8, Func. Count: 83, Neg. LLF: 73.47937723134328
Iteration: 9, Func. Count: 93, Neg. LLF: 73.38343814026344
Iteration: 10, Func. Count: 102, Neg. LLF: 73.33869134228968
Iteration: 11, Func. Count: 111, Neg. LLF: 73.33550583860016
Iteration: 12, Func. Count: 120, Neg. LLF: 73.33496371443408
Iteration: 13, Func. Count: 129, Neg. LLF: 73.33490913504039
Iteration: 14, Func. Count: 138, Neg. LLF: 73.33490649773104
Iteration: 15, Func. Count: 146, Neg. LLF: 73.33490649773054
Optimization terminated successfully (Exit mode 0)
Current function value: 73.33490649773104
Iterations: 15
Function evaluations: 146
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 24690753.072437286
Iteration: 2, Func. Count: 23, Neg. LLF: 73.93082447520541
Iteration: 3, Func. Count: 33, Neg. LLF: 76.08958994519071
Iteration: 4, Func. Count: 44, Neg. LLF: 115.01761057597574
Iteration: 5, Func. Count: 56, Neg. LLF: 73.52224462775739
Iteration: 6, Func. Count: 66, Neg. LLF: 73.51040831971251
Iteration: 7, Func. Count: 77, Neg. LLF: 73.33531493625657
Iteration: 8, Func. Count: 87, Neg. LLF: 73.32520666551005
Iteration: 9, Func. Count: 97, Neg. LLF: 73.32495015201663
Iteration: 10, Func. Count: 107, Neg. LLF: 73.32492353929383
Iteration: 11, Func. Count: 116, Neg. LLF: 73.32492353853164
Optimization terminated successfully (Exit mode 0)
Current function value: 73.32492353929383
Iterations: 11
Function evaluations: 116
Gradient evaluations: 11
Iteration: 1, Func. Count: 12, Neg. LLF: 25142015.330230907
Iteration: 2, Func. Count: 25, Neg. LLF: 79.65931754444114
Iteration: 3, Func. Count: 38, Neg. LLF: 73.65930062600613
Iteration: 4, Func. Count: 49, Neg. LLF: 74.89708751269461
Iteration: 5, Func. Count: 61, Neg. LLF: 96.44301991848187
Iteration: 6, Func. Count: 73, Neg. LLF: 73.36256197952096
Iteration: 7, Func. Count: 84, Neg. LLF: 73.72848450232723
Iteration: 8, Func. Count: 96, Neg. LLF: 72.7176614920558
Iteration: 9, Func. Count: 107, Neg. LLF: 72.69915952070457
Iteration: 10, Func. Count: 118, Neg. LLF: 72.63864446366162
Iteration: 11, Func. Count: 129, Neg. LLF: 72.60098232638371
Iteration: 12, Func. Count: 140, Neg. LLF: 72.58089548318895
Iteration: 13, Func. Count: 151, Neg. LLF: 72.57606235651956
Iteration: 14, Func. Count: 162, Neg. LLF: 72.5756199690078
Iteration: 15, Func. Count: 173, Neg. LLF: 72.57552100738658
Iteration: 16, Func. Count: 184, Neg. LLF: 72.91683840931191
Optimization terminated successfully (Exit mode 0)
Current function value: 72.5755209264755
Iterations: 17
Function evaluations: 188
Gradient evaluations: 16
Iteration: 1, Func. Count: 13, Neg. LLF: 25695662.057055246
Iteration: 2, Func. Count: 27, Neg. LLF: 256.8462915780178
Iteration: 3, Func. Count: 41, Neg. LLF: 99.44716746553893
Iteration: 4, Func. Count: 55, Neg. LLF: 75.40416418106497
Iteration: 5, Func. Count: 68, Neg. LLF: 72.30605635449426
Iteration: 6, Func. Count: 80, Neg. LLF: 72.10362788290578
Iteration: 7, Func. Count: 92, Neg. LLF: 72.09149841234985
Iteration: 8, Func. Count: 104, Neg. LLF: 72.08707647605709
Iteration: 9, Func. Count: 116, Neg. LLF: 72.08285922959452
Iteration: 10, Func. Count: 128, Neg. LLF: 72.08278239705395
Iteration: 11, Func. Count: 140, Neg. LLF: 72.08276671412094
Iteration: 12, Func. Count: 151, Neg. LLF: 72.08276671384192
Optimization terminated successfully (Exit mode 0)
Current function value: 72.08276671412094
Iterations: 12
Function evaluations: 151
Gradient evaluations: 12
Iteration: 1, Func. Count: 14, Neg. LLF: 34847.407187048884
Iteration: 2, Func. Count: 29, Neg. LLF: 234.5344672113826
Iteration: 3, Func. Count: 43, Neg. LLF: 76.56505709661307
Iteration: 4, Func. Count: 59, Neg. LLF: 74.9644790053811
Iteration: 5, Func. Count: 73, Neg. LLF: 72.23709567847064
Iteration: 6, Func. Count: 86, Neg. LLF: 73.6284551824049
Iteration: 7, Func. Count: 100, Neg. LLF: 72.13441790814517
Iteration: 8, Func. Count: 114, Neg. LLF: 72.09123770855886
Iteration: 9, Func. Count: 127, Neg. LLF: 72.08362655386331
Iteration: 10, Func. Count: 140, Neg. LLF: 72.08276820681333
Iteration: 11, Func. Count: 153, Neg. LLF: 72.082766112628
Iteration: 12, Func. Count: 165, Neg. LLF: 72.08276626386484
Optimization terminated successfully (Exit mode 0)
Current function value: 72.082766112628
Iterations: 12
Function evaluations: 165
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 148.60051745863458
Iteration: 2, Func. Count: 24, Neg. LLF: 134.47811538831118
Iteration: 3, Func. Count: 36, Neg. LLF: 87.09466214028389
Iteration: 4, Func. Count: 47, Neg. LLF: 73.70382316565576
Iteration: 5, Func. Count: 57, Neg. LLF: 141.78215684030167
Iteration: 6, Func. Count: 68, Neg. LLF: 144.76823365283448
Iteration: 7, Func. Count: 80, Neg. LLF: 73.97827470156172
Iteration: 8, Func. Count: 91, Neg. LLF: 73.42277863799016
Iteration: 9, Func. Count: 101, Neg. LLF: 73.4577486221314
Iteration: 10, Func. Count: 112, Neg. LLF: 73.36744083820312
Iteration: 11, Func. Count: 122, Neg. LLF: 73.34370568562821
Iteration: 12, Func. Count: 132, Neg. LLF: 73.33623145602756
Iteration: 13, Func. Count: 142, Neg. LLF: 73.33502137634298
Iteration: 14, Func. Count: 152, Neg. LLF: 73.33491375112305
Iteration: 15, Func. Count: 162, Neg. LLF: 73.33490663204468
Iteration: 16, Func. Count: 171, Neg. LLF: 73.334906729948
Optimization terminated successfully (Exit mode 0)
Current function value: 73.33490663204468
Iterations: 16
Function evaluations: 171
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 24337133.157261625
Iteration: 2, Func. Count: 25, Neg. LLF: 74.2183632039987
Iteration: 3, Func. Count: 37, Neg. LLF: 78.03347985245699
Iteration: 4, Func. Count: 49, Neg. LLF: 73.34275013087691
Iteration: 5, Func. Count: 60, Neg. LLF: 73.87645891859832
Iteration: 6, Func. Count: 72, Neg. LLF: 73.32608927869425
Iteration: 7, Func. Count: 83, Neg. LLF: 73.32512639342413
Iteration: 8, Func. Count: 94, Neg. LLF: 74.87628726534378
Iteration: 9, Func. Count: 108, Neg. LLF: 73.74774944841128
Iteration: 10, Func. Count: 122, Neg. LLF: 73.3249234455729
Iteration: 11, Func. Count: 132, Neg. LLF: 73.32492344557815
Optimization terminated successfully (Exit mode 0)
Current function value: 73.3249234455729
Iterations: 12
Function evaluations: 132
Gradient evaluations: 11
Iteration: 1, Func. Count: 13, Neg. LLF: 24832846.371809423
Iteration: 2, Func. Count: 27, Neg. LLF: 79.5279673044756
Iteration: 3, Func. Count: 41, Neg. LLF: 73.66729580623893
Iteration: 4, Func. Count: 53, Neg. LLF: 74.1485042807514
Iteration: 5, Func. Count: 66, Neg. LLF: 95.29722966600382
Iteration: 6, Func. Count: 79, Neg. LLF: 73.36884795429576
Iteration: 7, Func. Count: 91, Neg. LLF: 73.93028561362543
Iteration: 8, Func. Count: 104, Neg. LLF: 72.7428100430827
Iteration: 9, Func. Count: 116, Neg. LLF: 72.6956079278463
Iteration: 10, Func. Count: 128, Neg. LLF: 72.62462222861144
Iteration: 11, Func. Count: 140, Neg. LLF: 72.58943058464101
Iteration: 12, Func. Count: 152, Neg. LLF: 72.57989212775462
Iteration: 13, Func. Count: 164, Neg. LLF: 72.57631527887074
Iteration: 14, Func. Count: 176, Neg. LLF: 72.57552063623761
Iteration: 15, Func. Count: 188, Neg. LLF: 92.62016742755821
Optimization terminated successfully (Exit mode 0)
Current function value: 72.5755198255508
Iterations: 16
Function evaluations: 192
Gradient evaluations: 15
Iteration: 1, Func. Count: 14, Neg. LLF: 25424763.37640449
Iteration: 2, Func. Count: 29, Neg. LLF: 234.32673311563383
Iteration: 3, Func. Count: 44, Neg. LLF: 99.28497453406669
Iteration: 4, Func. Count: 59, Neg. LLF: 75.44003475741381
Iteration: 5, Func. Count: 73, Neg. LLF: 72.30314186459941
Iteration: 6, Func. Count: 86, Neg. LLF: 72.10210736543657
Iteration: 7, Func. Count: 99, Neg. LLF: 72.09090852452194
Iteration: 8, Func. Count: 112, Neg. LLF: 72.0868570014781
Iteration: 9, Func. Count: 125, Neg. LLF: 72.08286170998059
Iteration: 10, Func. Count: 138, Neg. LLF: 72.08278157359155
Iteration: 11, Func. Count: 151, Neg. LLF: 72.08276670591563
Iteration: 12, Func. Count: 163, Neg. LLF: 72.0827667056551
Optimization terminated successfully (Exit mode 0)
Current function value: 72.08276670591563
Iterations: 12
Function evaluations: 163
Gradient evaluations: 12
Iteration: 1, Func. Count: 15, Neg. LLF: 5373.607622506859
Iteration: 2, Func. Count: 31, Neg. LLF: 10649188.70462386
Iteration: 3, Func. Count: 47, Neg. LLF: 119.09075413845095
Iteration: 4, Func. Count: 63, Neg. LLF: 320.7701903043286
Iteration: 5, Func. Count: 79, Neg. LLF: 73.14638025356494
Iteration: 6, Func. Count: 93, Neg. LLF: 72.70556840123285
Iteration: 7, Func. Count: 107, Neg. LLF: 72.14687908416713
Iteration: 8, Func. Count: 121, Neg. LLF: 72.08577189189198
Iteration: 9, Func. Count: 135, Neg. LLF: 72.10550849882131
Iteration: 10, Func. Count: 150, Neg. LLF: 72.0829114615191
Iteration: 11, Func. Count: 164, Neg. LLF: 72.08276690307652
Iteration: 12, Func. Count: 177, Neg. LLF: 72.08276705412048
Optimization terminated successfully (Exit mode 0)
Current function value: 72.08276690307652
Iterations: 12
Function evaluations: 177
Gradient evaluations: 12
Iteration: 1, Func. Count: 8, Neg. LLF: 137.92375734077046
Iteration: 2, Func. Count: 19, Neg. LLF: 134.17941863181318
Iteration: 3, Func. Count: 28, Neg. LLF: 347.7430622469084
Iteration: 4, Func. Count: 36, Neg. LLF: 84.87167751080091
Iteration: 5, Func. Count: 44, Neg. LLF: 73.52478512873495
Iteration: 6, Func. Count: 51, Neg. LLF: 73.52401371232769
Iteration: 7, Func. Count: 58, Neg. LLF: 73.52384456351602
Iteration: 8, Func. Count: 65, Neg. LLF: 73.52377356262562
Iteration: 9, Func. Count: 72, Neg. LLF: 73.52376520941539
Iteration: 10, Func. Count: 79, Neg. LLF: 73.52376151870396
Iteration: 11, Func. Count: 85, Neg. LLF: 73.52376162740656
Optimization terminated successfully (Exit mode 0)
Current function value: 73.52376151870396
Iterations: 11
Function evaluations: 85
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 22823680.075720243
Iteration: 2, Func. Count: 19, Neg. LLF: 74.41151854215397
Iteration: 3, Func. Count: 28, Neg. LLF: 73.36901593591286
Iteration: 4, Func. Count: 36, Neg. LLF: 80.97111652995336
Iteration: 5, Func. Count: 46, Neg. LLF: 73.32857038152034
Iteration: 6, Func. Count: 54, Neg. LLF: 73.32493993044784
Iteration: 7, Func. Count: 62, Neg. LLF: 73.32493785605394
Iteration: 8, Func. Count: 70, Neg. LLF: 73.32492347558451
Iteration: 9, Func. Count: 78, Neg. LLF: 100.0699971679998
Optimization terminated successfully (Exit mode 0)
Current function value: 73.32492344532228
Iterations: 10
Function evaluations: 83
Gradient evaluations: 9
Iteration: 1, Func. Count: 10, Neg. LLF: 22829886.717578728
Iteration: 2, Func. Count: 21, Neg. LLF: 73.91219284670824
Iteration: 3, Func. Count: 31, Neg. LLF: 73.61570197172574
Iteration: 4, Func. Count: 40, Neg. LLF: 73.47570021538488
Iteration: 5, Func. Count: 49, Neg. LLF: 133.68910456763598
Iteration: 6, Func. Count: 60, Neg. LLF: 73.14084322563639
Iteration: 7, Func. Count: 69, Neg. LLF: 73.02670508084347
Iteration: 8, Func. Count: 78, Neg. LLF: 72.92343239055427
Iteration: 9, Func. Count: 87, Neg. LLF: 72.91479856685457
Iteration: 10, Func. Count: 96, Neg. LLF: 72.9115127591671
Iteration: 11, Func. Count: 105, Neg. LLF: 72.91079143877099
Iteration: 12, Func. Count: 114, Neg. LLF: 72.91075647057443
Iteration: 13, Func. Count: 123, Neg. LLF: 72.91075329655047
Iteration: 14, Func. Count: 132, Neg. LLF: 72.91075265905776
Optimization terminated successfully (Exit mode 0)
Current function value: 72.91075265905776
Iterations: 14
Function evaluations: 132
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 22924358.423634887
Iteration: 2, Func. Count: 23, Neg. LLF: 1580.6435712013724
Iteration: 3, Func. Count: 35, Neg. LLF: 90.20102244810883
Iteration: 4, Func. Count: 47, Neg. LLF: 72.7395410587653
Iteration: 5, Func. Count: 57, Neg. LLF: 72.32346443951762
Iteration: 6, Func. Count: 67, Neg. LLF: 72.25399114449534
Iteration: 7, Func. Count: 77, Neg. LLF: 72.24492243014434
Iteration: 8, Func. Count: 87, Neg. LLF: 72.24487594389083
Iteration: 9, Func. Count: 97, Neg. LLF: 72.24481305714005
Iteration: 10, Func. Count: 106, Neg. LLF: 72.2448130573668
Optimization terminated successfully (Exit mode 0)
Current function value: 72.24481305714005
Iterations: 10
Function evaluations: 106
Gradient evaluations: 10
Iteration: 1, Func. Count: 12, Neg. LLF: 13298.761890958349
Iteration: 2, Func. Count: 25, Neg. LLF: 1358.2496158607462
Iteration: 3, Func. Count: 37, Neg. LLF: 417.9333788793393
Iteration: 4, Func. Count: 50, Neg. LLF: 73.23934260562967
Iteration: 5, Func. Count: 61, Neg. LLF: 72.26092826825605
Iteration: 6, Func. Count: 72, Neg. LLF: 72.33229729057732
Iteration: 7, Func. Count: 84, Neg. LLF: 72.24526237970953
Iteration: 8, Func. Count: 95, Neg. LLF: 72.24484628547843
Iteration: 9, Func. Count: 106, Neg. LLF: 72.24482808052136
Iteration: 10, Func. Count: 117, Neg. LLF: 72.24481278085105
Iteration: 11, Func. Count: 127, Neg. LLF: 72.24481290593967
Optimization terminated successfully (Exit mode 0)
Current function value: 72.24481278085105
Iterations: 11
Function evaluations: 127
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 136.60711946287176
Iteration: 2, Func. Count: 21, Neg. LLF: 132.52773498348043
Iteration: 3, Func. Count: 31, Neg. LLF: 299.0384243337772
Iteration: 4, Func. Count: 40, Neg. LLF: 84.31864875563912
Iteration: 5, Func. Count: 49, Neg. LLF: 73.52477717470634
Iteration: 6, Func. Count: 57, Neg. LLF: 73.9199588762459
Iteration: 7, Func. Count: 66, Neg. LLF: 73.52037159959964
Iteration: 8, Func. Count: 74, Neg. LLF: 73.51935469611315
Iteration: 9, Func. Count: 82, Neg. LLF: 73.51860764964093
Iteration: 10, Func. Count: 90, Neg. LLF: 73.51851813103212
Iteration: 11, Func. Count: 98, Neg. LLF: 73.51844295070352
Iteration: 12, Func. Count: 106, Neg. LLF: 73.51842384982433
Iteration: 13, Func. Count: 114, Neg. LLF: 73.51842124824995
Iteration: 14, Func. Count: 121, Neg. LLF: 73.51842112754079
Optimization terminated successfully (Exit mode 0)
Current function value: 73.51842124824995
Iterations: 14
Function evaluations: 121
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 24752331.191054385
Iteration: 2, Func. Count: 21, Neg. LLF: 74.04746924582342
Iteration: 3, Func. Count: 31, Neg. LLF: 76.32031138395091
Iteration: 4, Func. Count: 41, Neg. LLF: 81.5749272110651
Iteration: 5, Func. Count: 51, Neg. LLF: 73.39021683320023
Iteration: 6, Func. Count: 60, Neg. LLF: 121.77587823545264
Iteration: 7, Func. Count: 71, Neg. LLF: 73.32495196379972
Iteration: 8, Func. Count: 80, Neg. LLF: 73.32492278366465
Iteration: 9, Func. Count: 88, Neg. LLF: 73.32492278395283
Optimization terminated successfully (Exit mode 0)
Current function value: 73.32492278366465
Iterations: 9
Function evaluations: 88
Gradient evaluations: 9
Iteration: 1, Func. Count: 11, Neg. LLF: 24950936.387666505
Iteration: 2, Func. Count: 23, Neg. LLF: 74.38946624863036
Iteration: 3, Func. Count: 34, Neg. LLF: 73.62521866657806
Iteration: 4, Func. Count: 44, Neg. LLF: 73.20750807892985
Iteration: 5, Func. Count: 54, Neg. LLF: 94.20004930156706
Iteration: 6, Func. Count: 65, Neg. LLF: 72.96151697047887
Iteration: 7, Func. Count: 75, Neg. LLF: 72.95174318157204
Iteration: 8, Func. Count: 85, Neg. LLF: 72.94337655953164
Iteration: 9, Func. Count: 95, Neg. LLF: 72.92571438785862
Iteration: 10, Func. Count: 105, Neg. LLF: 72.9141347733098
Iteration: 11, Func. Count: 115, Neg. LLF: 72.91127031751556
Iteration: 12, Func. Count: 125, Neg. LLF: 72.91093822779563
Iteration: 13, Func. Count: 135, Neg. LLF: 74.25215551757752
Iteration: 14, Func. Count: 148, Neg. LLF: 73.43291271188352
Iteration: 15, Func. Count: 161, Neg. LLF: 72.91080848688037
Iteration: 16, Func. Count: 171, Neg. LLF: 72.91075265176306
Iteration: 17, Func. Count: 180, Neg. LLF: 72.91075265176062
Optimization terminated successfully (Exit mode 0)
Current function value: 72.91075265176306
Iterations: 18
Function evaluations: 180
Gradient evaluations: 17
Iteration: 1, Func. Count: 12, Neg. LLF: 25278579.663950697
Iteration: 2, Func. Count: 25, Neg. LLF: 688.4629393451362
Iteration: 3, Func. Count: 38, Neg. LLF: 90.7843774889827
Iteration: 4, Func. Count: 51, Neg. LLF: 72.41664499395526
Iteration: 5, Func. Count: 62, Neg. LLF: 72.26844028072655
Iteration: 6, Func. Count: 73, Neg. LLF: 72.25229800497316
Iteration: 7, Func. Count: 84, Neg. LLF: 72.24531633045143
Iteration: 8, Func. Count: 95, Neg. LLF: 72.24481660745576
Iteration: 9, Func. Count: 106, Neg. LLF: 72.24481274200028
Iteration: 10, Func. Count: 116, Neg. LLF: 72.24481274204608
Optimization terminated successfully (Exit mode 0)
Current function value: 72.24481274200028
Iterations: 10
Function evaluations: 116
Gradient evaluations: 10
Iteration: 1, Func. Count: 13, Neg. LLF: 25290937.96395509
Iteration: 2, Func. Count: 27, Neg. LLF: 359594.01974959456
Iteration: 3, Func. Count: 41, Neg. LLF: 107.69561868821482
Iteration: 4, Func. Count: 55, Neg. LLF: 73.29020385560185
Iteration: 5, Func. Count: 67, Neg. LLF: 73.21615146203094
Iteration: 6, Func. Count: 79, Neg. LLF: 72.97582695413341
Iteration: 7, Func. Count: 91, Neg. LLF: 79.876860326198
Iteration: 8, Func. Count: 105, Neg. LLF: 72.82133868719015
Iteration: 9, Func. Count: 118, Neg. LLF: 72.62002176458387
Iteration: 10, Func. Count: 130, Neg. LLF: 72.61420104887972
Iteration: 11, Func. Count: 142, Neg. LLF: 72.61129341507011
Iteration: 12, Func. Count: 154, Neg. LLF: 72.60975579395749
Iteration: 13, Func. Count: 166, Neg. LLF: 72.60910291101916
Iteration: 14, Func. Count: 178, Neg. LLF: 72.60903413105041
Iteration: 15, Func. Count: 189, Neg. LLF: 72.60903413037724
Optimization terminated successfully (Exit mode 0)
Current function value: 72.60903413105041
Iterations: 15
Function evaluations: 189
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 157.91272484405613
Iteration: 2, Func. Count: 22, Neg. LLF: 142.34904357209336
Iteration: 3, Func. Count: 33, Neg. LLF: 82.84284946318088
Iteration: 4, Func. Count: 43, Neg. LLF: 73.69847429836926
Iteration: 5, Func. Count: 52, Neg. LLF: 152.62820848531044
Iteration: 6, Func. Count: 62, Neg. LLF: 76.21178371526153
Iteration: 7, Func. Count: 72, Neg. LLF: 74.40489265387325
Iteration: 8, Func. Count: 82, Neg. LLF: 73.66707970164072
Iteration: 9, Func. Count: 92, Neg. LLF: 73.48833176361946
Iteration: 10, Func. Count: 101, Neg. LLF: 73.4880696902725
Iteration: 11, Func. Count: 110, Neg. LLF: 73.48805323295252
Iteration: 12, Func. Count: 119, Neg. LLF: 73.48805267649139
Optimization terminated successfully (Exit mode 0)
Current function value: 73.48805267649139
Iterations: 12
Function evaluations: 119
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 24848751.369636122
Iteration: 2, Func. Count: 23, Neg. LLF: 74.24795688394168
Iteration: 3, Func. Count: 34, Neg. LLF: 73.63075127134516
Iteration: 4, Func. Count: 44, Neg. LLF: 73.3877196630587
Iteration: 5, Func. Count: 54, Neg. LLF: 84.29860605368515
Iteration: 6, Func. Count: 66, Neg. LLF: 73.32495089380683
Iteration: 7, Func. Count: 76, Neg. LLF: 73.324923532673
Iteration: 8, Func. Count: 85, Neg. LLF: 73.32492353359243
Optimization terminated successfully (Exit mode 0)
Current function value: 73.324923532673
Iterations: 8
Function evaluations: 85
Gradient evaluations: 8
Iteration: 1, Func. Count: 12, Neg. LLF: 25433964.619545
Iteration: 2, Func. Count: 25, Neg. LLF: 79.82824261746018
Iteration: 3, Func. Count: 38, Neg. LLF: 73.71461895132703
Iteration: 4, Func. Count: 49, Neg. LLF: 78.60076766944441
Iteration: 5, Func. Count: 61, Neg. LLF: 92.56978837981677
Iteration: 6, Func. Count: 74, Neg. LLF: 73.36039032438283
Iteration: 7, Func. Count: 85, Neg. LLF: 73.3444457237272
Iteration: 8, Func. Count: 96, Neg. LLF: 73.34229021866415
Iteration: 9, Func. Count: 107, Neg. LLF: 73.33988161925099
Iteration: 10, Func. Count: 118, Neg. LLF: 73.3364793324049
Iteration: 11, Func. Count: 129, Neg. LLF: 73.33220976360799
Iteration: 12, Func. Count: 140, Neg. LLF: 73.32520845803272
Iteration: 13, Func. Count: 151, Neg. LLF: 73.3250871187576
Iteration: 14, Func. Count: 162, Neg. LLF: 73.32492367027844
Iteration: 15, Func. Count: 172, Neg. LLF: 73.32492367161386
Optimization terminated successfully (Exit mode 0)
Current function value: 73.32492367027844
Iterations: 15
Function evaluations: 172
Gradient evaluations: 15
Iteration: 1, Func. Count: 13, Neg. LLF: 25933562.217515096
Iteration: 2, Func. Count: 27, Neg. LLF: 320.04208498578976
Iteration: 3, Func. Count: 41, Neg. LLF: 99.36372663653007
Iteration: 4, Func. Count: 55, Neg. LLF: 75.16133970569149
Iteration: 5, Func. Count: 68, Neg. LLF: 72.31063126388472
Iteration: 6, Func. Count: 80, Neg. LLF: 72.11100549324091
Iteration: 7, Func. Count: 92, Neg. LLF: 72.09030729890635
Iteration: 8, Func. Count: 104, Neg. LLF: 72.09093217090593
Iteration: 9, Func. Count: 117, Neg. LLF: 72.08283849705397
Iteration: 10, Func. Count: 129, Neg. LLF: 72.08277737965432
Iteration: 11, Func. Count: 141, Neg. LLF: 72.08276654053101
Iteration: 12, Func. Count: 152, Neg. LLF: 72.0827665401193
Optimization terminated successfully (Exit mode 0)
Current function value: 72.08276654053101
Iterations: 12
Function evaluations: 152
Gradient evaluations: 12
Iteration: 1, Func. Count: 14, Neg. LLF: 12928.596470695635
Iteration: 2, Func. Count: 29, Neg. LLF: 263.8126726989083
Iteration: 3, Func. Count: 43, Neg. LLF: 78.0135545881208
Iteration: 4, Func. Count: 58, Neg. LLF: 76.96035000377194
Iteration: 5, Func. Count: 72, Neg. LLF: 72.43080981265005
Iteration: 6, Func. Count: 85, Neg. LLF: 74.61566723668145
Iteration: 7, Func. Count: 99, Neg. LLF: 72.17385142448204
Iteration: 8, Func. Count: 112, Neg. LLF: 72.09378647327584
Iteration: 9, Func. Count: 125, Neg. LLF: 72.08482584374904
Iteration: 10, Func. Count: 138, Neg. LLF: 72.08286296207615
Iteration: 11, Func. Count: 151, Neg. LLF: 72.08278037893061
Iteration: 12, Func. Count: 164, Neg. LLF: 72.08276622230458
Iteration: 13, Func. Count: 176, Neg. LLF: 72.08276637341379
Optimization terminated successfully (Exit mode 0)
Current function value: 72.08276622230458
Iterations: 13
Function evaluations: 176
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 155.3971745734481
Iteration: 2, Func. Count: 24, Neg. LLF: 137.15932092514043
Iteration: 3, Func. Count: 36, Neg. LLF: 89.43321814319164
Iteration: 4, Func. Count: 47, Neg. LLF: 73.70438446033522
Iteration: 5, Func. Count: 57, Neg. LLF: 1223.5729925550916
Iteration: 6, Func. Count: 68, Neg. LLF: 73.56233265117139
Iteration: 7, Func. Count: 78, Neg. LLF: 77.70063236295388
Iteration: 8, Func. Count: 89, Neg. LLF: 75.88399602645808
Iteration: 9, Func. Count: 100, Neg. LLF: 73.35087778258355
Iteration: 10, Func. Count: 110, Neg. LLF: 73.33815836382158
Iteration: 11, Func. Count: 120, Neg. LLF: 73.33544921470401
Iteration: 12, Func. Count: 130, Neg. LLF: 73.33491184497304
Iteration: 13, Func. Count: 140, Neg. LLF: 73.33490650410508
Iteration: 14, Func. Count: 149, Neg. LLF: 73.33490650410214
Optimization terminated successfully (Exit mode 0)
Current function value: 73.33490650410508
Iterations: 14
Function evaluations: 149
Gradient evaluations: 14
Iteration: 1, Func. Count: 12, Neg. LLF: 24288109.959211733
Iteration: 2, Func. Count: 25, Neg. LLF: 73.98343713527365
Iteration: 3, Func. Count: 36, Neg. LLF: 76.2419674156304
Iteration: 4, Func. Count: 48, Neg. LLF: 78.88472631117588
Iteration: 5, Func. Count: 60, Neg. LLF: 73.37871129494371
Iteration: 6, Func. Count: 71, Neg. LLF: 73.33292969890914
Iteration: 7, Func. Count: 82, Neg. LLF: 73.32494010889033
Iteration: 8, Func. Count: 93, Neg. LLF: 73.32492345868722
Iteration: 9, Func. Count: 103, Neg. LLF: 73.32492345834163
Optimization terminated successfully (Exit mode 0)
Current function value: 73.32492345868722
Iterations: 9
Function evaluations: 103
Gradient evaluations: 9
Iteration: 1, Func. Count: 13, Neg. LLF: 25008134.302066904
Iteration: 2, Func. Count: 27, Neg. LLF: 79.52626937601123
Iteration: 3, Func. Count: 41, Neg. LLF: 73.67191532346108
Iteration: 4, Func. Count: 53, Neg. LLF: 75.67812293304648
Iteration: 5, Func. Count: 67, Neg. LLF: 96.57115855604476
Iteration: 6, Func. Count: 80, Neg. LLF: 73.35167090697772
Iteration: 7, Func. Count: 92, Neg. LLF: 73.34694086010883
Iteration: 8, Func. Count: 104, Neg. LLF: 73.34223513255888
Iteration: 9, Func. Count: 116, Neg. LLF: 73.34049929018569
Iteration: 10, Func. Count: 128, Neg. LLF: 73.335870773229
Iteration: 11, Func. Count: 140, Neg. LLF: 73.33172469036239
Iteration: 12, Func. Count: 152, Neg. LLF: 73.32515622335592
Iteration: 13, Func. Count: 164, Neg. LLF: 73.32507557116031
Iteration: 14, Func. Count: 176, Neg. LLF: 73.32493282451141
Iteration: 15, Func. Count: 188, Neg. LLF: 73.32492344686257
Iteration: 16, Func. Count: 199, Neg. LLF: 73.32492344736734
Optimization terminated successfully (Exit mode 0)
Current function value: 73.32492344686257
Iterations: 16
Function evaluations: 199
Gradient evaluations: 16
Iteration: 1, Func. Count: 14, Neg. LLF: 25563296.38284784
Iteration: 2, Func. Count: 29, Neg. LLF: 236.94302034252186
Iteration: 3, Func. Count: 44, Neg. LLF: 100.44249152831983
Iteration: 4, Func. Count: 59, Neg. LLF: 75.51313724715322
Iteration: 5, Func. Count: 73, Neg. LLF: 72.30240263628485
Iteration: 6, Func. Count: 86, Neg. LLF: 72.10308701982126
Iteration: 7, Func. Count: 99, Neg. LLF: 72.09637680844978
Iteration: 8, Func. Count: 112, Neg. LLF: 72.08501550907266
Iteration: 9, Func. Count: 125, Neg. LLF: 72.08289130033718
Iteration: 10, Func. Count: 138, Neg. LLF: 72.08278564308866
Iteration: 11, Func. Count: 151, Neg. LLF: 72.08276680654618
Iteration: 12, Func. Count: 163, Neg. LLF: 72.0827668062938
Optimization terminated successfully (Exit mode 0)
Current function value: 72.08276680654618
Iterations: 12
Function evaluations: 163
Gradient evaluations: 12
Iteration: 1, Func. Count: 15, Neg. LLF: 3645.510835621533
Iteration: 2, Func. Count: 31, Neg. LLF: 10752576.15168689
Iteration: 3, Func. Count: 47, Neg. LLF: 118.15250199541006
Iteration: 4, Func. Count: 63, Neg. LLF: 340.04838137969335
Iteration: 5, Func. Count: 79, Neg. LLF: 73.15671446751084
Iteration: 6, Func. Count: 93, Neg. LLF: 72.68438228857919
Iteration: 7, Func. Count: 107, Neg. LLF: 72.14319776787192
Iteration: 8, Func. Count: 121, Neg. LLF: 72.08686313869354
Iteration: 9, Func. Count: 135, Neg. LLF: 72.12452874421243
Iteration: 10, Func. Count: 150, Neg. LLF: 72.08281012143676
Iteration: 11, Func. Count: 164, Neg. LLF: 72.08276682777795
Iteration: 12, Func. Count: 178, Neg. LLF: 72.08276629121731
Optimization terminated successfully (Exit mode 0)
Current function value: 72.08276629121731
Iterations: 12
Function evaluations: 178
Gradient evaluations: 12
Iteration: 1, Func. Count: 12, Neg. LLF: 145.3432699977356
Iteration: 2, Func. Count: 26, Neg. LLF: 135.55431914101163
Iteration: 3, Func. Count: 39, Neg. LLF: 95.67022636284307
Iteration: 4, Func. Count: 51, Neg. LLF: 73.78715224334088
Iteration: 5, Func. Count: 62, Neg. LLF: 2516.3859844546864
Iteration: 6, Func. Count: 74, Neg. LLF: 75.24477999194552
Iteration: 7, Func. Count: 86, Neg. LLF: 73.68127962914379
Iteration: 8, Func. Count: 98, Neg. LLF: 73.59397987661366
Iteration: 9, Func. Count: 110, Neg. LLF: 73.49926516658199
Iteration: 10, Func. Count: 121, Neg. LLF: 73.49664611371654
Iteration: 11, Func. Count: 132, Neg. LLF: 73.49635565913294
Iteration: 12, Func. Count: 143, Neg. LLF: 73.49633600200069
Iteration: 13, Func. Count: 154, Neg. LLF: 73.49633386074815
Iteration: 14, Func. Count: 164, Neg. LLF: 73.49633379261068
Optimization terminated successfully (Exit mode 0)
Current function value: 73.49633386074815
Iterations: 14
Function evaluations: 164
Gradient evaluations: 14
Iteration: 1, Func. Count: 13, Neg. LLF: 23978038.909922898
Iteration: 2, Func. Count: 27, Neg. LLF: 74.29516104849769
Iteration: 3, Func. Count: 40, Neg. LLF: 74.04186490206895
Iteration: 4, Func. Count: 53, Neg. LLF: 73.5620622021371
Iteration: 5, Func. Count: 65, Neg. LLF: 74.07295492702197
Iteration: 6, Func. Count: 78, Neg. LLF: 73.40411991925723
Iteration: 7, Func. Count: 91, Neg. LLF: 73.32492343059846
Iteration: 8, Func. Count: 102, Neg. LLF: 73.32492343003777
Optimization terminated successfully (Exit mode 0)
Current function value: 73.32492343059846
Iterations: 8
Function evaluations: 102
Gradient evaluations: 8
Iteration: 1, Func. Count: 14, Neg. LLF: 24708076.207818557
Iteration: 2, Func. Count: 29, Neg. LLF: 79.39485906486084
Iteration: 3, Func. Count: 44, Neg. LLF: 73.67867361471481
Iteration: 4, Func. Count: 57, Neg. LLF: 75.03007467835981
Iteration: 5, Func. Count: 72, Neg. LLF: 97.0459847297692
Iteration: 6, Func. Count: 87, Neg. LLF: 73.3525715837996
Iteration: 7, Func. Count: 100, Neg. LLF: 73.34368421479554
Iteration: 8, Func. Count: 113, Neg. LLF: 73.34144678363492
Iteration: 9, Func. Count: 126, Neg. LLF: 73.33933171565923
Iteration: 10, Func. Count: 139, Neg. LLF: 73.33596921753055
Iteration: 11, Func. Count: 152, Neg. LLF: 73.33164413109289
Iteration: 12, Func. Count: 165, Neg. LLF: 73.32521573327172
Iteration: 13, Func. Count: 178, Neg. LLF: 73.3250945761232
Iteration: 14, Func. Count: 191, Neg. LLF: 73.32493748579947
Iteration: 15, Func. Count: 204, Neg. LLF: 73.3249234583428
Iteration: 16, Func. Count: 216, Neg. LLF: 73.32492345865099
Optimization terminated successfully (Exit mode 0)
Current function value: 73.3249234583428
Iterations: 16
Function evaluations: 216
Gradient evaluations: 16
Iteration: 1, Func. Count: 15, Neg. LLF: 25297364.268149372
Iteration: 2, Func. Count: 31, Neg. LLF: 219.10985934444807
Iteration: 3, Func. Count: 47, Neg. LLF: 100.23947112084413
Iteration: 4, Func. Count: 63, Neg. LLF: 75.56760727241516
Iteration: 5, Func. Count: 78, Neg. LLF: 72.29972640034512
Iteration: 6, Func. Count: 92, Neg. LLF: 72.10178011353821
Iteration: 7, Func. Count: 106, Neg. LLF: 72.09629279026333
Iteration: 8, Func. Count: 120, Neg. LLF: 72.08483952502849
Iteration: 9, Func. Count: 134, Neg. LLF: 72.08289882835479
Iteration: 10, Func. Count: 148, Neg. LLF: 72.08278594156751
Iteration: 11, Func. Count: 162, Neg. LLF: 72.08276670911405
Iteration: 12, Func. Count: 175, Neg. LLF: 72.0827667089098
Optimization terminated successfully (Exit mode 0)
Current function value: 72.08276670911405
Iterations: 12
Function evaluations: 175
Gradient evaluations: 12
Iteration: 1, Func. Count: 16, Neg. LLF: 3409.4824776402065
Iteration: 2, Func. Count: 33, Neg. LLF: 22948400.942799427
Iteration: 3, Func. Count: 50, Neg. LLF: 132.54832349159264
Iteration: 4, Func. Count: 67, Neg. LLF: 295.0955379442876
Iteration: 5, Func. Count: 84, Neg. LLF: 73.15603418507897
Iteration: 6, Func. Count: 99, Neg. LLF: 72.36672086552363
Iteration: 7, Func. Count: 114, Neg. LLF: 72.17420607573604
Iteration: 8, Func. Count: 129, Neg. LLF: 72.22171881015458
Iteration: 9, Func. Count: 145, Neg. LLF: 72.12880414710729
Iteration: 10, Func. Count: 161, Neg. LLF: 72.08280015950423
Iteration: 11, Func. Count: 176, Neg. LLF: 72.08281301629798
Iteration: 12, Func. Count: 192, Neg. LLF: 72.08277276027769
Iteration: 13, Func. Count: 207, Neg. LLF: 72.08276544233178
Iteration: 14, Func. Count: 222, Neg. LLF: 72.08803469703281
Optimization terminated successfully (Exit mode 0)
Current function value: 72.08276544134651
Iterations: 15
Function evaluations: 226
Gradient evaluations: 14
Iteration: 1, Func. Count: 5, Neg. LLF: 175.34833784826762
Iteration: 2, Func. Count: 12, Neg. LLF: 444.75634052444224
Iteration: 3, Func. Count: 18, Neg. LLF: 74.96619044293018
Iteration: 4, Func. Count: 22, Neg. LLF: 74.61671041104155
Iteration: 5, Func. Count: 26, Neg. LLF: 74.4573058226464
Iteration: 6, Func. Count: 30, Neg. LLF: 74.32408088988154
Iteration: 7, Func. Count: 34, Neg. LLF: 74.31034194127827
Iteration: 8, Func. Count: 38, Neg. LLF: 74.30980650589437
Iteration: 9, Func. Count: 42, Neg. LLF: 74.3098038166496
Iteration: 10, Func. Count: 45, Neg. LLF: 74.30980393757278
Optimization terminated successfully (Exit mode 0)
Current function value: 74.3098038166496
Iterations: 10
Function evaluations: 45
Gradient evaluations: 10
Iteration: 1, Func. Count: 5, Neg. LLF: 126.42419387718215
Iteration: 2, Func. Count: 13, Neg. LLF: 555.5949372424674
Iteration: 3, Func. Count: 19, Neg. LLF: 71.20241470593984
Iteration: 4, Func. Count: 23, Neg. LLF: 71.1967761734656
Iteration: 5, Func. Count: 27, Neg. LLF: 71.18607746825079
Iteration: 6, Func. Count: 31, Neg. LLF: 71.18553446723143
Iteration: 7, Func. Count: 35, Neg. LLF: 71.18548068239404
Iteration: 8, Func. Count: 38, Neg. LLF: 71.18548074780172
Optimization terminated successfully (Exit mode 0)
Current function value: 71.18548068239404
Iterations: 8
Function evaluations: 38
Gradient evaluations: 8
Iteration: 1, Func. Count: 6, Neg. LLF: 26902179.940483883
Iteration: 2, Func. Count: 14, Neg. LLF: 72.32366816242157
Iteration: 3, Func. Count: 20, Neg. LLF: 70.76233403592941
Iteration: 4, Func. Count: 25, Neg. LLF: 70.86340442664616
Iteration: 5, Func. Count: 31, Neg. LLF: 70.66941622348534
Iteration: 6, Func. Count: 36, Neg. LLF: 70.6674699512166
Iteration: 7, Func. Count: 41, Neg. LLF: 70.66746484802039
Iteration: 8, Func. Count: 45, Neg. LLF: 70.66746484796245
Optimization terminated successfully (Exit mode 0)
Current function value: 70.66746484802039
Iterations: 8
Function evaluations: 45
Gradient evaluations: 8
Iteration: 1, Func. Count: 7, Neg. LLF: 27724656.588980585
Iteration: 2, Func. Count: 15, Neg. LLF: 73.451117487128
Iteration: 3, Func. Count: 22, Neg. LLF: 70.7680813669669
Iteration: 4, Func. Count: 28, Neg. LLF: 71.27117894262751
Iteration: 5, Func. Count: 35, Neg. LLF: 70.68456808166172
Iteration: 6, Func. Count: 41, Neg. LLF: 70.67493146290415
Iteration: 7, Func. Count: 47, Neg. LLF: 70.67473295714944
Iteration: 8, Func. Count: 53, Neg. LLF: 70.67384754951146
Iteration: 9, Func. Count: 59, Neg. LLF: 70.67115591650926
Iteration: 10, Func. Count: 65, Neg. LLF: 70.66746564416836
Iteration: 11, Func. Count: 71, Neg. LLF: 70.66746607439806
Optimization terminated successfully (Exit mode 0)
Current function value: 70.66746492353103
Iterations: 11
Function evaluations: 72
Gradient evaluations: 11
Iteration: 1, Func. Count: 8, Neg. LLF: 28205819.74777342
Iteration: 2, Func. Count: 17, Neg. LLF: 75.04212929874852
Iteration: 3, Func. Count: 26, Neg. LLF: 70.77392946526508
Iteration: 4, Func. Count: 33, Neg. LLF: 70.68261709503231
Iteration: 5, Func. Count: 40, Neg. LLF: 70.6692529642388
Iteration: 6, Func. Count: 47, Neg. LLF: 70.6652867495167
Iteration: 7, Func. Count: 54, Neg. LLF: 70.66189718813905
Iteration: 8, Func. Count: 61, Neg. LLF: 70.6964036653512
Iteration: 9, Func. Count: 69, Neg. LLF: 70.69500876126594
Iteration: 10, Func. Count: 77, Neg. LLF: 70.69192375167296
Iteration: 11, Func. Count: 85, Neg. LLF: 70.66013820712942
Iteration: 12, Func. Count: 93, Neg. LLF: 70.65411283895186
Iteration: 13, Func. Count: 100, Neg. LLF: 70.65410287899998
Iteration: 14, Func. Count: 107, Neg. LLF: 70.65410165240648
Iteration: 15, Func. Count: 113, Neg. LLF: 70.65410165212396
Optimization terminated successfully (Exit mode 0)
Current function value: 70.65410165240648
Iterations: 15
Function evaluations: 113
Gradient evaluations: 15
Iteration: 1, Func. Count: 9, Neg. LLF: 28398288.227411333
Iteration: 2, Func. Count: 19, Neg. LLF: 76.57651881317909
Iteration: 3, Func. Count: 29, Neg. LLF: 70.75734160714181
Iteration: 4, Func. Count: 37, Neg. LLF: 70.69238341667732
Iteration: 5, Func. Count: 45, Neg. LLF: 70.68755203736386
Iteration: 6, Func. Count: 53, Neg. LLF: 70.68669873940436
Iteration: 7, Func. Count: 61, Neg. LLF: 70.68622741367832
Iteration: 8, Func. Count: 69, Neg. LLF: 70.68405626249425
Iteration: 9, Func. Count: 77, Neg. LLF: 70.68341275020715
Iteration: 10, Func. Count: 85, Neg. LLF: 70.68056560360758
Iteration: 11, Func. Count: 93, Neg. LLF: 70.67779909100672
Iteration: 12, Func. Count: 101, Neg. LLF: 70.67539966461376
Iteration: 13, Func. Count: 109, Neg. LLF: 70.67417496662956
Iteration: 14, Func. Count: 117, Neg. LLF: 70.67241904207845
Iteration: 15, Func. Count: 125, Neg. LLF: 70.67089439644954
Iteration: 16, Func. Count: 133, Neg. LLF: 70.66598842013491
Iteration: 17, Func. Count: 141, Neg. LLF: 70.6929059298347
Iteration: 18, Func. Count: 150, Neg. LLF: 70.6921651404141
Iteration: 19, Func. Count: 159, Neg. LLF: 70.69086325995941
Iteration: 20, Func. Count: 168, Neg. LLF: 24177677.127151817
Iteration: 21, Func. Count: 179, Neg. LLF: 70.68543942353911
Iteration: 22, Func. Count: 188, Neg. LLF: 70.69084416160467
Iteration: 23, Func. Count: 197, Neg. LLF: 70.69097902842813
Iteration: 24, Func. Count: 206, Neg. LLF: 70.65465820359717
Iteration: 25, Func. Count: 215, Neg. LLF: 70.65410191862503
Iteration: 26, Func. Count: 222, Neg. LLF: 70.65410192180354
Optimization terminated successfully (Exit mode 0)
Current function value: 70.65410191862503
Iterations: 27
Function evaluations: 222
Gradient evaluations: 26
Iteration: 1, Func. Count: 6, Neg. LLF: 108.57972171684997
Iteration: 2, Func. Count: 15, Neg. LLF: 184.38605371604152
Iteration: 3, Func. Count: 22, Neg. LLF: 71.2170343784522
Iteration: 4, Func. Count: 27, Neg. LLF: 71.09979139766041
Iteration: 5, Func. Count: 32, Neg. LLF: 71.07145048227981
Iteration: 6, Func. Count: 37, Neg. LLF: 71.06573924302548
Iteration: 7, Func. Count: 42, Neg. LLF: 71.06547082639148
Iteration: 8, Func. Count: 47, Neg. LLF: 71.06546822303433
Iteration: 9, Func. Count: 51, Neg. LLF: 71.06546822303939
Optimization terminated successfully (Exit mode 0)
Current function value: 71.06546822303433
Iterations: 9
Function evaluations: 51
Gradient evaluations: 9
Iteration: 1, Func. Count: 7, Neg. LLF: 27014242.58662962
Iteration: 2, Func. Count: 16, Neg. LLF: 72.39702285278786
Iteration: 3, Func. Count: 23, Neg. LLF: 70.76299400183292
Iteration: 4, Func. Count: 29, Neg. LLF: 70.88142781867441
Iteration: 5, Func. Count: 36, Neg. LLF: 70.67166186797607
Iteration: 6, Func. Count: 42, Neg. LLF: 70.66747566797716
Iteration: 7, Func. Count: 48, Neg. LLF: 70.6674648499412
Iteration: 8, Func. Count: 53, Neg. LLF: 70.66746484982227
Optimization terminated successfully (Exit mode 0)
Current function value: 70.6674648499412
Iterations: 8
Function evaluations: 53
Gradient evaluations: 8
Iteration: 1, Func. Count: 8, Neg. LLF: 28349577.348809984
Iteration: 2, Func. Count: 17, Neg. LLF: 74.24961996398675
Iteration: 3, Func. Count: 26, Neg. LLF: 70.77854944796394
Iteration: 4, Func. Count: 33, Neg. LLF: 70.73850148735994
Iteration: 5, Func. Count: 40, Neg. LLF: 70.68604898596527
Iteration: 6, Func. Count: 47, Neg. LLF: 70.66457309067374
Iteration: 7, Func. Count: 54, Neg. LLF: 70.57649348978941
Iteration: 8, Func. Count: 61, Neg. LLF: 70.56709176269617
Iteration: 9, Func. Count: 68, Neg. LLF: 70.54347272170214
Iteration: 10, Func. Count: 75, Neg. LLF: 70.52453194093454
Iteration: 11, Func. Count: 82, Neg. LLF: 70.45026955627819
Iteration: 12, Func. Count: 89, Neg. LLF: 77.30543664235306
Iteration: 13, Func. Count: 98, Neg. LLF: 79.00426477910385
Iteration: 14, Func. Count: 107, Neg. LLF: 23303590.987134315
Iteration: 15, Func. Count: 118, Neg. LLF: 70.67899883565428
Iteration: 16, Func. Count: 126, Neg. LLF: 70.43526486514656
Optimization terminated successfully (Exit mode 0)
Current function value: 70.43526486542632
Iterations: 17
Function evaluations: 126
Gradient evaluations: 16
Iteration: 1, Func. Count: 9, Neg. LLF: 29132753.938701514
Iteration: 2, Func. Count: 19, Neg. LLF: 76.57966685093706
Iteration: 3, Func. Count: 29, Neg. LLF: 70.7712597304086
Iteration: 4, Func. Count: 37, Neg. LLF: 70.67258779838099
Iteration: 5, Func. Count: 45, Neg. LLF: 70.660440189327
Iteration: 6, Func. Count: 53, Neg. LLF: 70.65488637584266
Iteration: 7, Func. Count: 61, Neg. LLF: 70.63268106751379
Iteration: 8, Func. Count: 69, Neg. LLF: 870.564991758371
Iteration: 9, Func. Count: 79, Neg. LLF: 70.423203405977
Iteration: 10, Func. Count: 87, Neg. LLF: 70.13375476854912
Iteration: 11, Func. Count: 95, Neg. LLF: 70.09635499359639
Iteration: 12, Func. Count: 103, Neg. LLF: 70.09377265323035
Iteration: 13, Func. Count: 111, Neg. LLF: 70.09374897829548
Iteration: 14, Func. Count: 119, Neg. LLF: 70.09312281532546
Iteration: 15, Func. Count: 127, Neg. LLF: 70.89262526414669
Iteration: 16, Func. Count: 138, Neg. LLF: 70.72675409510849
Iteration: 17, Func. Count: 149, Neg. LLF: 70.09473619967058
Iteration: 18, Func. Count: 159, Neg. LLF: 70.09308131328743
Iteration: 19, Func. Count: 166, Neg. LLF: 70.09308131328753
Optimization terminated successfully (Exit mode 0)
Current function value: 70.09308131328743
Iterations: 20
Function evaluations: 166
Gradient evaluations: 19
Iteration: 1, Func. Count: 10, Neg. LLF: 29252840.087893646
Iteration: 2, Func. Count: 21, Neg. LLF: 78.13174977147227
Iteration: 3, Func. Count: 32, Neg. LLF: 70.75632104883411
Iteration: 4, Func. Count: 41, Neg. LLF: 70.68913182693447
Iteration: 5, Func. Count: 50, Neg. LLF: 70.6851463219308
Iteration: 6, Func. Count: 59, Neg. LLF: 70.68460686524126
Iteration: 7, Func. Count: 68, Neg. LLF: 70.6845605306995
Iteration: 8, Func. Count: 77, Neg. LLF: 70.68447803886393
Iteration: 9, Func. Count: 86, Neg. LLF: 70.6844695092707
Iteration: 10, Func. Count: 95, Neg. LLF: 70.68446887690263
Optimization terminated successfully (Exit mode 0)
Current function value: 70.68446887690263
Iterations: 10
Function evaluations: 95
Gradient evaluations: 10
Iteration: 1, Func. Count: 7, Neg. LLF: 117.31785952331379
Iteration: 2, Func. Count: 17, Neg. LLF: 414.4357527587007
Iteration: 3, Func. Count: 25, Neg. LLF: 77.49049355203027
Iteration: 4, Func. Count: 32, Neg. LLF: 72.1035834961531
Iteration: 5, Func. Count: 39, Neg. LLF: 70.82710544675734
Iteration: 6, Func. Count: 45, Neg. LLF: 70.8128167262469
Iteration: 7, Func. Count: 51, Neg. LLF: 70.80476047674387
Iteration: 8, Func. Count: 57, Neg. LLF: 70.80253126444548
Iteration: 9, Func. Count: 63, Neg. LLF: 70.80206301408735
Iteration: 10, Func. Count: 69, Neg. LLF: 70.80199652471369
Iteration: 11, Func. Count: 74, Neg. LLF: 70.80199652471836
Optimization terminated successfully (Exit mode 0)
Current function value: 70.80199652471369
Iterations: 11
Function evaluations: 74
Gradient evaluations: 11
Iteration: 1, Func. Count: 8, Neg. LLF: 26431316.187871635
Iteration: 2, Func. Count: 18, Neg. LLF: 71.94476035384655
Iteration: 3, Func. Count: 26, Neg. LLF: 70.76345889311315
Iteration: 4, Func. Count: 33, Neg. LLF: 71.20955717096611
Iteration: 5, Func. Count: 41, Neg. LLF: 70.66746677295413
Iteration: 6, Func. Count: 48, Neg. LLF: 70.66746485490107
Iteration: 7, Func. Count: 54, Neg. LLF: 70.6674648548324
Optimization terminated successfully (Exit mode 0)
Current function value: 70.66746485490107
Iterations: 7
Function evaluations: 54
Gradient evaluations: 7
Iteration: 1, Func. Count: 9, Neg. LLF: 27803101.21120286
Iteration: 2, Func. Count: 19, Neg. LLF: 73.53740985523886
Iteration: 3, Func. Count: 28, Neg. LLF: 70.77374020152651
Iteration: 4, Func. Count: 36, Neg. LLF: 71.22339879653376
Iteration: 5, Func. Count: 45, Neg. LLF: 70.6953960543962
Iteration: 6, Func. Count: 53, Neg. LLF: 70.67499112749816
Iteration: 7, Func. Count: 61, Neg. LLF: 70.6747807712119
Iteration: 8, Func. Count: 69, Neg. LLF: 70.67379371110972
Iteration: 9, Func. Count: 77, Neg. LLF: 70.6708283004533
Iteration: 10, Func. Count: 85, Neg. LLF: 70.6674650669584
Iteration: 11, Func. Count: 92, Neg. LLF: 70.66746506620602
Optimization terminated successfully (Exit mode 0)
Current function value: 70.6674650669584
Iterations: 11
Function evaluations: 92
Gradient evaluations: 11
Iteration: 1, Func. Count: 10, Neg. LLF: 28450704.096623972
Iteration: 2, Func. Count: 21, Neg. LLF: 75.32370353832893
Iteration: 3, Func. Count: 32, Neg. LLF: 70.7610792356454
Iteration: 4, Func. Count: 41, Neg. LLF: 70.67244754303283
Iteration: 5, Func. Count: 50, Neg. LLF: 70.73751222058249
Iteration: 6, Func. Count: 60, Neg. LLF: 71.0934043880686
Iteration: 7, Func. Count: 70, Neg. LLF: 73.41096542913063
Iteration: 8, Func. Count: 80, Neg. LLF: 70.66278355434636
Iteration: 9, Func. Count: 90, Neg. LLF: 70.13142599091313
Iteration: 10, Func. Count: 99, Neg. LLF: 70.0813530517645
Iteration: 11, Func. Count: 108, Neg. LLF: 70.12622485340488
Iteration: 12, Func. Count: 118, Neg. LLF: 70.04547898120775
Iteration: 13, Func. Count: 127, Neg. LLF: 70.0223210116536
Iteration: 14, Func. Count: 136, Neg. LLF: 70.017779150652
Iteration: 15, Func. Count: 145, Neg. LLF: 70.01746231634284
Iteration: 16, Func. Count: 154, Neg. LLF: 70.01744510102482
Iteration: 17, Func. Count: 162, Neg. LLF: 70.01744507195048
Optimization terminated successfully (Exit mode 0)
Current function value: 70.01744510102482
Iterations: 17
Function evaluations: 162
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 28621204.52806711
Iteration: 2, Func. Count: 23, Neg. LLF: 76.80656760607319
Iteration: 3, Func. Count: 35, Neg. LLF: 70.74838226442603
Iteration: 4, Func. Count: 45, Neg. LLF: 70.68935075807757
Iteration: 5, Func. Count: 55, Neg. LLF: 70.68552518931718
Iteration: 6, Func. Count: 65, Neg. LLF: 70.68461007161503
Iteration: 7, Func. Count: 75, Neg. LLF: 70.68456495457097
Iteration: 8, Func. Count: 85, Neg. LLF: 70.68447061259415
Iteration: 9, Func. Count: 95, Neg. LLF: 70.68446899538996
Iteration: 10, Func. Count: 104, Neg. LLF: 70.68446899543137
Optimization terminated successfully (Exit mode 0)
Current function value: 70.68446899538996
Iterations: 10
Function evaluations: 104
Gradient evaluations: 10
Iteration: 1, Func. Count: 8, Neg. LLF: 129.87410097591058
Iteration: 2, Func. Count: 19, Neg. LLF: 536.2249734107785
Iteration: 3, Func. Count: 28, Neg. LLF: 98.01005263918971
Iteration: 4, Func. Count: 36, Neg. LLF: 71.83304440751476
Iteration: 5, Func. Count: 44, Neg. LLF: 70.8224018701241
Iteration: 6, Func. Count: 51, Neg. LLF: 70.812111204923
Iteration: 7, Func. Count: 58, Neg. LLF: 70.8039100653301
Iteration: 8, Func. Count: 65, Neg. LLF: 70.80212863889109
Iteration: 9, Func. Count: 72, Neg. LLF: 70.80200289613038
Iteration: 10, Func. Count: 79, Neg. LLF: 70.80199642416272
Iteration: 11, Func. Count: 85, Neg. LLF: 70.80199654318828
Optimization terminated successfully (Exit mode 0)
Current function value: 70.80199642416272
Iterations: 11
Function evaluations: 85
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 26283502.948175468
Iteration: 2, Func. Count: 20, Neg. LLF: 71.88344770805944
Iteration: 3, Func. Count: 29, Neg. LLF: 70.76645068057971
Iteration: 4, Func. Count: 37, Neg. LLF: 71.63283880639865
Iteration: 5, Func. Count: 46, Neg. LLF: 70.66857609664774
Iteration: 6, Func. Count: 54, Neg. LLF: 70.66746812979208
Iteration: 7, Func. Count: 62, Neg. LLF: 70.6674648477147
Iteration: 8, Func. Count: 69, Neg. LLF: 70.66746484767225
Optimization terminated successfully (Exit mode 0)
Current function value: 70.6674648477147
Iterations: 8
Function evaluations: 69
Gradient evaluations: 8
Iteration: 1, Func. Count: 10, Neg. LLF: 27573150.78766009
Iteration: 2, Func. Count: 21, Neg. LLF: 73.35057666006638
Iteration: 3, Func. Count: 31, Neg. LLF: 70.7697940985338
Iteration: 4, Func. Count: 40, Neg. LLF: 71.1878989350024
Iteration: 5, Func. Count: 50, Neg. LLF: 70.69024258755624
Iteration: 6, Func. Count: 59, Neg. LLF: 70.67501098326927
Iteration: 7, Func. Count: 68, Neg. LLF: 70.67479773732201
Iteration: 8, Func. Count: 77, Neg. LLF: 70.67384216983548
Iteration: 9, Func. Count: 86, Neg. LLF: 70.67100016839387
Iteration: 10, Func. Count: 95, Neg. LLF: 70.66746555740289
Iteration: 11, Func. Count: 104, Neg. LLF: 70.66746587570218
Optimization terminated successfully (Exit mode 0)
Current function value: 70.66746489605168
Iterations: 11
Function evaluations: 105
Gradient evaluations: 11
Iteration: 1, Func. Count: 11, Neg. LLF: 28242304.55727017
Iteration: 2, Func. Count: 23, Neg. LLF: 75.14843957848912
Iteration: 3, Func. Count: 35, Neg. LLF: 70.76054471492081
Iteration: 4, Func. Count: 45, Neg. LLF: 70.67396831961284
Iteration: 5, Func. Count: 55, Neg. LLF: 70.58178430680232
Iteration: 6, Func. Count: 65, Neg. LLF: 70.47554377572324
Iteration: 7, Func. Count: 75, Neg. LLF: 71.02663588687835
Iteration: 8, Func. Count: 86, Neg. LLF: 70.73978900193026
Iteration: 9, Func. Count: 97, Neg. LLF: 70.08210870156435
Iteration: 10, Func. Count: 107, Neg. LLF: 70.02125273971744
Iteration: 11, Func. Count: 117, Neg. LLF: 70.01935414445893
Iteration: 12, Func. Count: 127, Neg. LLF: 70.01749160992318
Iteration: 13, Func. Count: 137, Neg. LLF: 70.0174499570893
Iteration: 14, Func. Count: 147, Neg. LLF: 70.01744472801069
Iteration: 15, Func. Count: 156, Neg. LLF: 70.01744469874365
Optimization terminated successfully (Exit mode 0)
Current function value: 70.01744472801069
Iterations: 15
Function evaluations: 156
Gradient evaluations: 15
Iteration: 1, Func. Count: 12, Neg. LLF: 28350077.760369867
Iteration: 2, Func. Count: 25, Neg. LLF: 76.54969526966256
Iteration: 3, Func. Count: 38, Neg. LLF: 70.74640600985532
Iteration: 4, Func. Count: 49, Neg. LLF: 70.68934378380156
Iteration: 5, Func. Count: 60, Neg. LLF: 70.68505415258386
Iteration: 6, Func. Count: 71, Neg. LLF: 70.68454406512717
Iteration: 7, Func. Count: 82, Neg. LLF: 70.68452189746526
Iteration: 8, Func. Count: 93, Neg. LLF: 70.68447161614634
Iteration: 9, Func. Count: 104, Neg. LLF: 70.68446897723774
Iteration: 10, Func. Count: 114, Neg. LLF: 70.6844689772365
Optimization terminated successfully (Exit mode 0)
Current function value: 70.68446897723774
Iterations: 10
Function evaluations: 114
Gradient evaluations: 10
Iteration: 1, Func. Count: 5, Neg. LLF: 146.5642690640392
Iteration: 2, Func. Count: 13, Neg. LLF: 387.38933531850864
Iteration: 3, Func. Count: 19, Neg. LLF: 71.19756923533797
Iteration: 4, Func. Count: 23, Neg. LLF: 71.18997020244029
Iteration: 5, Func. Count: 27, Neg. LLF: 71.18553213785879
Iteration: 6, Func. Count: 31, Neg. LLF: 71.18548072803671
Iteration: 7, Func. Count: 34, Neg. LLF: 71.18548076337794
Optimization terminated successfully (Exit mode 0)
Current function value: 71.18548072803671
Iterations: 7
Function evaluations: 34
Gradient evaluations: 7
Iteration: 1, Func. Count: 6, Neg. LLF: 27051276.32260085
Iteration: 2, Func. Count: 13, Neg. LLF: 73.55811125139277
Iteration: 3, Func. Count: 20, Neg. LLF: 70.67672156466125
Iteration: 4, Func. Count: 25, Neg. LLF: 71.09789650394964
Iteration: 5, Func. Count: 31, Neg. LLF: 70.66788224065967
Iteration: 6, Func. Count: 36, Neg. LLF: 70.66746514594077
Iteration: 7, Func. Count: 40, Neg. LLF: 70.66746514432421
Optimization terminated successfully (Exit mode 0)
Current function value: 70.66746514594077
Iterations: 7
Function evaluations: 40
Gradient evaluations: 7
Iteration: 1, Func. Count: 7, Neg. LLF: 25384304.154192448
Iteration: 2, Func. Count: 15, Neg. LLF: 73.3081360693533
Iteration: 3, Func. Count: 22, Neg. LLF: 70.8748599191817
Iteration: 4, Func. Count: 28, Neg. LLF: 71.50573821109784
Iteration: 5, Func. Count: 35, Neg. LLF: 70.84048089352476
Iteration: 6, Func. Count: 42, Neg. LLF: 70.6742247511047
Iteration: 7, Func. Count: 48, Neg. LLF: 70.67409212825605
Iteration: 8, Func. Count: 54, Neg. LLF: 70.67361152284153
Iteration: 9, Func. Count: 60, Neg. LLF: 70.6728619339777
Iteration: 10, Func. Count: 66, Neg. LLF: 70.67092253903516
Iteration: 11, Func. Count: 72, Neg. LLF: 70.66757367635076
Iteration: 12, Func. Count: 78, Neg. LLF: 70.66750154625883
Iteration: 13, Func. Count: 84, Neg. LLF: 70.66747144677895
Iteration: 14, Func. Count: 90, Neg. LLF: 70.66746496754367
Iteration: 15, Func. Count: 95, Neg. LLF: 70.66746496699098
Optimization terminated successfully (Exit mode 0)
Current function value: 70.66746496754367
Iterations: 15
Function evaluations: 95
Gradient evaluations: 15
Iteration: 1, Func. Count: 8, Neg. LLF: 25509588.194017395
Iteration: 2, Func. Count: 17, Neg. LLF: 75.40792819896086
Iteration: 3, Func. Count: 26, Neg. LLF: 70.83288219810504
Iteration: 4, Func. Count: 33, Neg. LLF: 70.68798807205293
Iteration: 5, Func. Count: 40, Neg. LLF: 70.65963759030424
Iteration: 6, Func. Count: 47, Neg. LLF: 70.65504009131844
Iteration: 7, Func. Count: 54, Neg. LLF: 70.65451976924795
Iteration: 8, Func. Count: 61, Neg. LLF: 70.65411544896416
Iteration: 9, Func. Count: 68, Neg. LLF: 70.65410225684217
Iteration: 10, Func. Count: 75, Neg. LLF: 70.65410158559591
Optimization terminated successfully (Exit mode 0)
Current function value: 70.65410158559591
Iterations: 10
Function evaluations: 75
Gradient evaluations: 10
Iteration: 1, Func. Count: 9, Neg. LLF: 24984777.3758397
Iteration: 2, Func. Count: 19, Neg. LLF: 76.30551038541064
Iteration: 3, Func. Count: 29, Neg. LLF: 70.8049204906098
Iteration: 4, Func. Count: 37, Neg. LLF: 70.69743035962885
Iteration: 5, Func. Count: 45, Neg. LLF: 70.68656576198266
Iteration: 6, Func. Count: 53, Neg. LLF: 70.68466719703665
Iteration: 7, Func. Count: 61, Neg. LLF: 70.68455908010574
Iteration: 8, Func. Count: 69, Neg. LLF: 70.68451722550473
Iteration: 9, Func. Count: 77, Neg. LLF: 70.68448649435814
Iteration: 10, Func. Count: 85, Neg. LLF: 70.68447086037796
Iteration: 11, Func. Count: 93, Neg. LLF: 70.68446906982632
Iteration: 12, Func. Count: 100, Neg. LLF: 70.68446906963187
Optimization terminated successfully (Exit mode 0)
Current function value: 70.68446906982632
Iterations: 12
Function evaluations: 100
Gradient evaluations: 12
Iteration: 1, Func. Count: 6, Neg. LLF: 147.00427126778374
Iteration: 2, Func. Count: 15, Neg. LLF: 365.4680203136054
Iteration: 3, Func. Count: 22, Neg. LLF: 71.19842512579376
Iteration: 4, Func. Count: 27, Neg. LLF: 71.1432908076423
Iteration: 5, Func. Count: 32, Neg. LLF: 71.13013786266099
Iteration: 6, Func. Count: 37, Neg. LLF: 71.12758337539293
Iteration: 7, Func. Count: 42, Neg. LLF: 71.12735989767805
Iteration: 8, Func. Count: 47, Neg. LLF: 71.12734757678963
Iteration: 9, Func. Count: 52, Neg. LLF: 71.12733962122752
Iteration: 10, Func. Count: 56, Neg. LLF: 71.1273395579653
Optimization terminated successfully (Exit mode 0)
Current function value: 71.12733962122752
Iterations: 10
Function evaluations: 56
Gradient evaluations: 10
Iteration: 1, Func. Count: 7, Neg. LLF: 81.65791857704052
Iteration: 2, Func. Count: 15, Neg. LLF: 11738906.770053552
Iteration: 3, Func. Count: 22, Neg. LLF: 76.69167061406507
Iteration: 4, Func. Count: 30, Neg. LLF: 71.07859843450332
Iteration: 5, Func. Count: 36, Neg. LLF: 71.04948761768081
Iteration: 6, Func. Count: 42, Neg. LLF: 71.04706562519235
Iteration: 7, Func. Count: 49, Neg. LLF: 71.03974824055427
Iteration: 8, Func. Count: 55, Neg. LLF: 71.03973234449526
Iteration: 9, Func. Count: 61, Neg. LLF: 71.0397293705189
Iteration: 10, Func. Count: 66, Neg. LLF: 71.03972937047179
Optimization terminated successfully (Exit mode 0)
Current function value: 71.0397293705189
Iterations: 10
Function evaluations: 66
Gradient evaluations: 10
Iteration: 1, Func. Count: 8, Neg. LLF: 29054507.300596863
Iteration: 2, Func. Count: 17, Neg. LLF: 85.74794197421555
Iteration: 3, Func. Count: 26, Neg. LLF: 80.95549016071435
Iteration: 4, Func. Count: 34, Neg. LLF: 70.84287195989289
Iteration: 5, Func. Count: 41, Neg. LLF: 70.72240988146613
Iteration: 6, Func. Count: 48, Neg. LLF: 70.6733390719808
Iteration: 7, Func. Count: 55, Neg. LLF: 70.67305599767253
Iteration: 8, Func. Count: 62, Neg. LLF: 70.67298070338909
Iteration: 9, Func. Count: 69, Neg. LLF: 70.67282033763395
Iteration: 10, Func. Count: 76, Neg. LLF: 70.67242356008867
Iteration: 11, Func. Count: 83, Neg. LLF: 70.67154115214471
Iteration: 12, Func. Count: 90, Neg. LLF: 70.66843463928882
Iteration: 13, Func. Count: 97, Neg. LLF: 70.66780776268006
Iteration: 14, Func. Count: 104, Neg. LLF: 70.66747562558426
Iteration: 15, Func. Count: 111, Neg. LLF: 70.66746490100411
Iteration: 16, Func. Count: 117, Neg. LLF: 70.66746490054285
Optimization terminated successfully (Exit mode 0)
Current function value: 70.66746490100411
Iterations: 16
Function evaluations: 117
Gradient evaluations: 16
Iteration: 1, Func. Count: 9, Neg. LLF: 29089114.90386064
Iteration: 2, Func. Count: 19, Neg. LLF: 89.7480518000961
Iteration: 3, Func. Count: 29, Neg. LLF: 386.35604089482854
Iteration: 4, Func. Count: 39, Neg. LLF: 70.80397296292966
Iteration: 5, Func. Count: 47, Neg. LLF: 70.69701383683119
Iteration: 6, Func. Count: 55, Neg. LLF: 70.67042502802043
Iteration: 7, Func. Count: 63, Neg. LLF: 70.6675711013319
Iteration: 8, Func. Count: 71, Neg. LLF: 70.65619818606854
Iteration: 9, Func. Count: 79, Neg. LLF: 70.65938070912242
Iteration: 10, Func. Count: 88, Neg. LLF: 70.65421203893922
Iteration: 11, Func. Count: 96, Neg. LLF: 70.65410318627693
Iteration: 12, Func. Count: 104, Neg. LLF: 70.65410161032243
Iteration: 13, Func. Count: 111, Neg. LLF: 70.65410161040168
Optimization terminated successfully (Exit mode 0)
Current function value: 70.65410161032243
Iterations: 13
Function evaluations: 111
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 28093962.84565604
Iteration: 2, Func. Count: 21, Neg. LLF: 83.25152807002515
Iteration: 3, Func. Count: 32, Neg. LLF: 86.31548678647319
Iteration: 4, Func. Count: 43, Neg. LLF: 70.77754828767776
Iteration: 5, Func. Count: 52, Neg. LLF: 70.68416238841833
Iteration: 6, Func. Count: 61, Neg. LLF: 70.67895633207394
Iteration: 7, Func. Count: 70, Neg. LLF: 70.71096256797134
Iteration: 8, Func. Count: 80, Neg. LLF: 70.67272470710866
Iteration: 9, Func. Count: 89, Neg. LLF: 70.6686345650604
Iteration: 10, Func. Count: 98, Neg. LLF: 70.66455158752414
Iteration: 11, Func. Count: 107, Neg. LLF: 70.65186476605827
Iteration: 12, Func. Count: 116, Neg. LLF: 70.67014106403394
Iteration: 13, Func. Count: 126, Neg. LLF: 70.64603365885044
Iteration: 14, Func. Count: 135, Neg. LLF: 70.6408861134977
Iteration: 15, Func. Count: 144, Neg. LLF: 70.63961110105413
Iteration: 16, Func. Count: 153, Neg. LLF: 70.63954503095734
Iteration: 17, Func. Count: 162, Neg. LLF: 70.6395389407768
Iteration: 18, Func. Count: 170, Neg. LLF: 70.63953894105394
Optimization terminated successfully (Exit mode 0)
Current function value: 70.6395389407768
Iterations: 18
Function evaluations: 170
Gradient evaluations: 18
Iteration: 1, Func. Count: 7, Neg. LLF: 125.36583152736722
Iteration: 2, Func. Count: 17, Neg. LLF: 270.6304921057191
Iteration: 3, Func. Count: 25, Neg. LLF: 71.19829101535137
Iteration: 4, Func. Count: 31, Neg. LLF: 71.2203715649925
Iteration: 5, Func. Count: 38, Neg. LLF: 74.23967055117093
Iteration: 6, Func. Count: 46, Neg. LLF: 70.96857286558271
Iteration: 7, Func. Count: 52, Neg. LLF: 70.96633995787857
Iteration: 8, Func. Count: 58, Neg. LLF: 70.96626470196698
Iteration: 9, Func. Count: 64, Neg. LLF: 70.96624915490219
Iteration: 10, Func. Count: 69, Neg. LLF: 70.96624915493548
Optimization terminated successfully (Exit mode 0)
Current function value: 70.96624915490219
Iterations: 10
Function evaluations: 69
Gradient evaluations: 10
Iteration: 1, Func. Count: 8, Neg. LLF: 75.96210111943026
Iteration: 2, Func. Count: 17, Neg. LLF: 4297317.063618379
Iteration: 3, Func. Count: 25, Neg. LLF: 2933646.9015883417
Iteration: 4, Func. Count: 34, Neg. LLF: 71.19923072298113
Iteration: 5, Func. Count: 42, Neg. LLF: 70.87328750691553
Iteration: 6, Func. Count: 49, Neg. LLF: 71.24222111218917
Iteration: 7, Func. Count: 57, Neg. LLF: 70.84471928567369
Iteration: 8, Func. Count: 65, Neg. LLF: 70.82396055822927
Iteration: 9, Func. Count: 72, Neg. LLF: 70.82380809107684
Iteration: 10, Func. Count: 79, Neg. LLF: 70.82380645098557
Iteration: 11, Func. Count: 85, Neg. LLF: 70.82380645096428
Optimization terminated successfully (Exit mode 0)
Current function value: 70.82380645098557
Iterations: 11
Function evaluations: 85
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 29809316.32341316
Iteration: 2, Func. Count: 19, Neg. LLF: 87.73866242997258
Iteration: 3, Func. Count: 29, Neg. LLF: 86.2239848261043
Iteration: 4, Func. Count: 39, Neg. LLF: 70.85507549820204
Iteration: 5, Func. Count: 47, Neg. LLF: 70.70245979355398
Iteration: 6, Func. Count: 55, Neg. LLF: 70.67313705407273
Iteration: 7, Func. Count: 63, Neg. LLF: 70.67296697715923
Iteration: 8, Func. Count: 71, Neg. LLF: 70.67290032041322
Iteration: 9, Func. Count: 79, Neg. LLF: 70.67249237756712
Iteration: 10, Func. Count: 87, Neg. LLF: 70.67051737272078
Iteration: 11, Func. Count: 95, Neg. LLF: 70.66747482545422
Iteration: 12, Func. Count: 103, Neg. LLF: 70.66746611386247
Iteration: 13, Func. Count: 111, Neg. LLF: 70.66746485309979
Iteration: 14, Func. Count: 118, Neg. LLF: 70.66746485360783
Optimization terminated successfully (Exit mode 0)
Current function value: 70.66746485309979
Iterations: 14
Function evaluations: 118
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 30119468.24473942
Iteration: 2, Func. Count: 21, Neg. LLF: 91.9631340906448
Iteration: 3, Func. Count: 32, Neg. LLF: 732.3738562122127
Iteration: 4, Func. Count: 43, Neg. LLF: 70.79940874589782
Iteration: 5, Func. Count: 52, Neg. LLF: 70.71080495173979
Iteration: 6, Func. Count: 61, Neg. LLF: 70.43615327335574
Iteration: 7, Func. Count: 70, Neg. LLF: 70.2142157697321
Iteration: 8, Func. Count: 79, Neg. LLF: 70.13570413047684
Iteration: 9, Func. Count: 88, Neg. LLF: 70.10716832858257
Iteration: 10, Func. Count: 97, Neg. LLF: 70.09495727714587
Iteration: 11, Func. Count: 106, Neg. LLF: 70.09391062292502
Iteration: 12, Func. Count: 115, Neg. LLF: 70.09329956150074
Iteration: 13, Func. Count: 124, Neg. LLF: 70.09576241347231
Iteration: 14, Func. Count: 135, Neg. LLF: 70.1268276675397
Optimization terminated successfully (Exit mode 0)
Current function value: 70.09329341561129
Iterations: 15
Function evaluations: 138
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 28930821.456301194
Iteration: 2, Func. Count: 23, Neg. LLF: 85.2549802285627
Iteration: 3, Func. Count: 35, Neg. LLF: 95.89905965548093
Iteration: 4, Func. Count: 47, Neg. LLF: 70.77003828148138
Iteration: 5, Func. Count: 57, Neg. LLF: 70.68351495267281
Iteration: 6, Func. Count: 67, Neg. LLF: 70.67764052097837
Iteration: 7, Func. Count: 77, Neg. LLF: 70.73939867101532
Iteration: 8, Func. Count: 88, Neg. LLF: 70.6772992467044
Iteration: 9, Func. Count: 99, Neg. LLF: 70.6695062479172
Iteration: 10, Func. Count: 109, Neg. LLF: 70.66496056493493
Iteration: 11, Func. Count: 119, Neg. LLF: 70.65284048861177
Iteration: 12, Func. Count: 129, Neg. LLF: 71.29996600451874
Iteration: 13, Func. Count: 140, Neg. LLF: 70.65609115769126
Iteration: 14, Func. Count: 151, Neg. LLF: 70.63993524770864
Iteration: 15, Func. Count: 161, Neg. LLF: 70.6395934274565
Iteration: 16, Func. Count: 171, Neg. LLF: 70.63954565311803
Iteration: 17, Func. Count: 181, Neg. LLF: 70.63953889490864
Iteration: 18, Func. Count: 190, Neg. LLF: 70.63953889500638
Optimization terminated successfully (Exit mode 0)
Current function value: 70.63953889490864
Iterations: 18
Function evaluations: 190
Gradient evaluations: 18
Iteration: 1, Func. Count: 8, Neg. LLF: 139.8654785466061
Iteration: 2, Func. Count: 19, Neg. LLF: 285.1312751862707
Iteration: 3, Func. Count: 28, Neg. LLF: 70.9450004160569
Iteration: 4, Func. Count: 35, Neg. LLF: 70.99796875924038
Iteration: 5, Func. Count: 43, Neg. LLF: 71.09756490015344
Iteration: 6, Func. Count: 51, Neg. LLF: 70.82305349887295
Iteration: 7, Func. Count: 59, Neg. LLF: 70.80454270823608
Iteration: 8, Func. Count: 66, Neg. LLF: 70.80220060197618
Iteration: 9, Func. Count: 73, Neg. LLF: 70.80200444261449
Iteration: 10, Func. Count: 80, Neg. LLF: 70.8019965352385
Iteration: 11, Func. Count: 86, Neg. LLF: 70.80199653523532
Optimization terminated successfully (Exit mode 0)
Current function value: 70.8019965352385
Iterations: 11
Function evaluations: 86
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 75.71270847260132
Iteration: 2, Func. Count: 19, Neg. LLF: 4388206.125719105
Iteration: 3, Func. Count: 28, Neg. LLF: 2915110.507750221
Iteration: 4, Func. Count: 38, Neg. LLF: 71.21784500817962
Iteration: 5, Func. Count: 47, Neg. LLF: 71.03114953922868
Iteration: 6, Func. Count: 56, Neg. LLF: 70.87326423569493
Iteration: 7, Func. Count: 65, Neg. LLF: 70.82497951583727
Iteration: 8, Func. Count: 73, Neg. LLF: 70.82390562346691
Iteration: 9, Func. Count: 81, Neg. LLF: 70.82381031694426
Iteration: 10, Func. Count: 89, Neg. LLF: 70.82380642739923
Iteration: 11, Func. Count: 96, Neg. LLF: 70.82380642738474
Optimization terminated successfully (Exit mode 0)
Current function value: 70.82380642739923
Iterations: 11
Function evaluations: 96
Gradient evaluations: 11
Iteration: 1, Func. Count: 10, Neg. LLF: 29143502.101248756
Iteration: 2, Func. Count: 21, Neg. LLF: 85.42297088663382
Iteration: 3, Func. Count: 32, Neg. LLF: 80.04953856375376
Iteration: 4, Func. Count: 42, Neg. LLF: 70.84916017350034
Iteration: 5, Func. Count: 51, Neg. LLF: 70.72450680953474
Iteration: 6, Func. Count: 60, Neg. LLF: 70.67351616672097
Iteration: 7, Func. Count: 69, Neg. LLF: 70.67328889060617
Iteration: 8, Func. Count: 78, Neg. LLF: 70.67321267349487
Iteration: 9, Func. Count: 87, Neg. LLF: 70.67295459093015
Iteration: 10, Func. Count: 96, Neg. LLF: 70.672458350784
Iteration: 11, Func. Count: 105, Neg. LLF: 70.67122410099358
Iteration: 12, Func. Count: 114, Neg. LLF: 70.66814860833632
Iteration: 13, Func. Count: 123, Neg. LLF: 70.66784723629887
Iteration: 14, Func. Count: 132, Neg. LLF: 70.66747746868448
Iteration: 15, Func. Count: 141, Neg. LLF: 70.66746563545261
Iteration: 16, Func. Count: 150, Neg. LLF: 70.66746484832491
Optimization terminated successfully (Exit mode 0)
Current function value: 70.66746484832491
Iterations: 16
Function evaluations: 150
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 29342789.92682289
Iteration: 2, Func. Count: 23, Neg. LLF: 89.70147789238119
Iteration: 3, Func. Count: 35, Neg. LLF: 396.3683086031357
Iteration: 4, Func. Count: 47, Neg. LLF: 70.79458060688408
Iteration: 5, Func. Count: 57, Neg. LLF: 70.75292157786497
Iteration: 6, Func. Count: 67, Neg. LLF: 70.58575553319172
Iteration: 7, Func. Count: 77, Neg. LLF: 70.22572769674375
Iteration: 8, Func. Count: 87, Neg. LLF: 70.09892043862136
Iteration: 9, Func. Count: 97, Neg. LLF: 70.09342544885065
Iteration: 10, Func. Count: 107, Neg. LLF: 70.09310266594298
Iteration: 11, Func. Count: 117, Neg. LLF: 70.093082114805
Iteration: 12, Func. Count: 127, Neg. LLF: 70.09308136636088
Optimization terminated successfully (Exit mode 0)
Current function value: 70.09308136636088
Iterations: 12
Function evaluations: 127
Gradient evaluations: 12
Iteration: 1, Func. Count: 12, Neg. LLF: 28291004.256730102
Iteration: 2, Func. Count: 25, Neg. LLF: 83.23107411266659
Iteration: 3, Func. Count: 38, Neg. LLF: 86.3214398438552
Iteration: 4, Func. Count: 51, Neg. LLF: 70.76735556627398
Iteration: 5, Func. Count: 62, Neg. LLF: 70.6859908351417
Iteration: 6, Func. Count: 73, Neg. LLF: 70.6828277116053
Iteration: 7, Func. Count: 84, Neg. LLF: 70.68909361749826
Iteration: 8, Func. Count: 96, Neg. LLF: 70.76064713200196
Iteration: 9, Func. Count: 108, Neg. LLF: 70.67233272064674
Iteration: 10, Func. Count: 119, Neg. LLF: 70.67026587390943
Iteration: 11, Func. Count: 130, Neg. LLF: 70.66323645295788
Iteration: 12, Func. Count: 141, Neg. LLF: 70.71491504845147
Iteration: 13, Func. Count: 153, Neg. LLF: 70.68073647635784
Iteration: 14, Func. Count: 165, Neg. LLF: 70.65666767516217
Iteration: 15, Func. Count: 177, Neg. LLF: 70.64646425742903
Iteration: 16, Func. Count: 188, Neg. LLF: 70.66120410384327
Iteration: 17, Func. Count: 200, Neg. LLF: 70.63615092628599
Iteration: 18, Func. Count: 211, Neg. LLF: 70.61504946290107
Iteration: 19, Func. Count: 222, Neg. LLF: 70.51386864950365
Iteration: 20, Func. Count: 233, Neg. LLF: 70.36569244343582
Iteration: 21, Func. Count: 244, Neg. LLF: 70.12846849399152
Iteration: 22, Func. Count: 255, Neg. LLF: 70.56978917348326
Iteration: 23, Func. Count: 267, Neg. LLF: 164.30875021778039
Iteration: 24, Func. Count: 280, Neg. LLF: 88.4586625155462
Iteration: 25, Func. Count: 293, Neg. LLF: 18870956.700673915
Iteration: 26, Func. Count: 306, Neg. LLF: 70.20946174284562
Iteration: 27, Func. Count: 318, Neg. LLF: 69.81924344152621
Iteration: 28, Func. Count: 329, Neg. LLF: 69.81777882005551
Iteration: 29, Func. Count: 340, Neg. LLF: 69.81775165273373
Iteration: 30, Func. Count: 351, Neg. LLF: 69.81775077819775
Optimization terminated successfully (Exit mode 0)
Current function value: 69.81775077819775
Iterations: 31
Function evaluations: 351
Gradient evaluations: 30
Iteration: 1, Func. Count: 9, Neg. LLF: 144.3676115346347
Iteration: 2, Func. Count: 21, Neg. LLF: 307.2835268568431
Iteration: 3, Func. Count: 31, Neg. LLF: 71.7181077015473
Iteration: 4, Func. Count: 39, Neg. LLF: 70.9422475709088
Iteration: 5, Func. Count: 47, Neg. LLF: 82.41936671504807
Iteration: 6, Func. Count: 56, Neg. LLF: 70.80360394941876
Iteration: 7, Func. Count: 64, Neg. LLF: 70.80294667575856
Iteration: 8, Func. Count: 72, Neg. LLF: 70.80203424284802
Iteration: 9, Func. Count: 80, Neg. LLF: 70.80200844974678
Iteration: 10, Func. Count: 88, Neg. LLF: 70.80199672996464
Iteration: 11, Func. Count: 95, Neg. LLF: 70.80199684898298
Optimization terminated successfully (Exit mode 0)
Current function value: 70.80199672996464
Iterations: 11
Function evaluations: 95
Gradient evaluations: 11
Iteration: 1, Func. Count: 10, Neg. LLF: 75.77363552732696
Iteration: 2, Func. Count: 22, Neg. LLF: 4296904.610324261
Iteration: 3, Func. Count: 32, Neg. LLF: 4310421.291354942
Iteration: 4, Func. Count: 43, Neg. LLF: 71.25854746518137
Iteration: 5, Func. Count: 53, Neg. LLF: 71.37660036786416
Iteration: 6, Func. Count: 63, Neg. LLF: 70.82435726124814
Iteration: 7, Func. Count: 72, Neg. LLF: 70.82391346296548
Iteration: 8, Func. Count: 81, Neg. LLF: 70.82383584175633
Iteration: 9, Func. Count: 90, Neg. LLF: 70.82380774494393
Iteration: 10, Func. Count: 99, Neg. LLF: 70.82380640513419
Iteration: 11, Func. Count: 107, Neg. LLF: 70.82380640512103
Optimization terminated successfully (Exit mode 0)
Current function value: 70.82380640513419
Iterations: 11
Function evaluations: 107
Gradient evaluations: 11
Iteration: 1, Func. Count: 11, Neg. LLF: 28885490.373951018
Iteration: 2, Func. Count: 23, Neg. LLF: 84.56521525525514
Iteration: 3, Func. Count: 35, Neg. LLF: 78.0918490962161
Iteration: 4, Func. Count: 46, Neg. LLF: 70.84548271033437
Iteration: 5, Func. Count: 56, Neg. LLF: 70.70937030263404
Iteration: 6, Func. Count: 66, Neg. LLF: 70.67329955381793
Iteration: 7, Func. Count: 76, Neg. LLF: 70.67321854276146
Iteration: 8, Func. Count: 86, Neg. LLF: 70.67311285486586
Iteration: 9, Func. Count: 96, Neg. LLF: 70.67247621863925
Iteration: 10, Func. Count: 106, Neg. LLF: 70.6698298539872
Iteration: 11, Func. Count: 116, Neg. LLF: 70.66769787154415
Iteration: 12, Func. Count: 126, Neg. LLF: 70.66761763897455
Iteration: 13, Func. Count: 136, Neg. LLF: 70.66750710494468
Iteration: 14, Func. Count: 146, Neg. LLF: 70.6674649608943
Iteration: 15, Func. Count: 155, Neg. LLF: 70.66746496116173
Optimization terminated successfully (Exit mode 0)
Current function value: 70.6674649608943
Iterations: 15
Function evaluations: 155
Gradient evaluations: 15
Iteration: 1, Func. Count: 12, Neg. LLF: 29123924.80537916
Iteration: 2, Func. Count: 25, Neg. LLF: 89.03392403066685
Iteration: 3, Func. Count: 38, Neg. LLF: 314.18793219675143
Iteration: 4, Func. Count: 51, Neg. LLF: 70.79371788667748
Iteration: 5, Func. Count: 62, Neg. LLF: 70.77465388521433
Iteration: 6, Func. Count: 74, Neg. LLF: 70.86907680937311
Iteration: 7, Func. Count: 86, Neg. LLF: 70.66204226337251
Iteration: 8, Func. Count: 97, Neg. LLF: 70.64777758751652
Iteration: 9, Func. Count: 108, Neg. LLF: 70.6577621156465
Iteration: 10, Func. Count: 120, Neg. LLF: 70.6521754427919
Iteration: 11, Func. Count: 132, Neg. LLF: 71.58438873614666
Iteration: 12, Func. Count: 145, Neg. LLF: 70.58839923686479
Iteration: 13, Func. Count: 156, Neg. LLF: 70.49957036353133
Iteration: 14, Func. Count: 167, Neg. LLF: 71.08699880782768
Iteration: 15, Func. Count: 179, Neg. LLF: 33662403.45127012
Iteration: 16, Func. Count: 192, Neg. LLF: 130.1263221775085
Iteration: 17, Func. Count: 205, Neg. LLF: 83.83883164067254
Iteration: 18, Func. Count: 217, Neg. LLF: 240.8678254894094
Iteration: 19, Func. Count: 230, Neg. LLF: 70.8036854919915
Iteration: 20, Func. Count: 242, Neg. LLF: 70.08187519813771
Iteration: 21, Func. Count: 253, Neg. LLF: 70.02027506696975
Iteration: 22, Func. Count: 264, Neg. LLF: 70.01850284717625
Iteration: 23, Func. Count: 275, Neg. LLF: 70.01793864244415
Iteration: 24, Func. Count: 286, Neg. LLF: 70.01685749057678
Iteration: 25, Func. Count: 297, Neg. LLF: 70.01684685454504
Iteration: 26, Func. Count: 308, Neg. LLF: 70.0168448752172
Iteration: 27, Func. Count: 318, Neg. LLF: 70.01684484664797
Optimization terminated successfully (Exit mode 0)
Current function value: 70.0168448752172
Iterations: 28
Function evaluations: 318
Gradient evaluations: 27
Iteration: 1, Func. Count: 13, Neg. LLF: 28041249.684172794
Iteration: 2, Func. Count: 27, Neg. LLF: 82.6141454353514
Iteration: 3, Func. Count: 41, Neg. LLF: 82.84631762865469
Iteration: 4, Func. Count: 54, Neg. LLF: 70.76042581017303
Iteration: 5, Func. Count: 66, Neg. LLF: 70.69596177779205
Iteration: 6, Func. Count: 78, Neg. LLF: 70.68480227766587
Iteration: 7, Func. Count: 90, Neg. LLF: 70.68269891684103
Iteration: 8, Func. Count: 102, Neg. LLF: 71.33663872717044
Iteration: 9, Func. Count: 115, Neg. LLF: 70.68716696431271
Iteration: 10, Func. Count: 128, Neg. LLF: 70.67584631836777
Iteration: 11, Func. Count: 140, Neg. LLF: 70.67335475538327
Iteration: 12, Func. Count: 152, Neg. LLF: 70.67147790446698
Iteration: 13, Func. Count: 164, Neg. LLF: 70.66093553875918
Iteration: 14, Func. Count: 176, Neg. LLF: 71.04613591324187
Iteration: 15, Func. Count: 189, Neg. LLF: 70.69714678777883
Iteration: 16, Func. Count: 202, Neg. LLF: 70.64997431446793
Iteration: 17, Func. Count: 214, Neg. LLF: 70.64321198383978
Iteration: 18, Func. Count: 226, Neg. LLF: 70.662938639934
Iteration: 19, Func. Count: 239, Neg. LLF: 70.63308261953992
Iteration: 20, Func. Count: 251, Neg. LLF: 70.59711456954746
Iteration: 21, Func. Count: 263, Neg. LLF: 70.55338368713757
Iteration: 22, Func. Count: 275, Neg. LLF: 70.0933911800009
Iteration: 23, Func. Count: 287, Neg. LLF: 70.12332542621816
Iteration: 24, Func. Count: 300, Neg. LLF: 69.91722623643915
Iteration: 25, Func. Count: 312, Neg. LLF: 69.86396443566474
Iteration: 26, Func. Count: 324, Neg. LLF: 69.83598436797045
Iteration: 27, Func. Count: 336, Neg. LLF: 69.82752726686027
Iteration: 28, Func. Count: 348, Neg. LLF: 69.82491951558684
Iteration: 29, Func. Count: 360, Neg. LLF: 69.82039715465382
Iteration: 30, Func. Count: 372, Neg. LLF: 69.818553929122
Iteration: 31, Func. Count: 384, Neg. LLF: 69.81795049411117
Iteration: 32, Func. Count: 396, Neg. LLF: 69.81783217822158
Iteration: 33, Func. Count: 408, Neg. LLF: 69.81775211895255
Iteration: 34, Func. Count: 420, Neg. LLF: 69.82301350988325
Optimization terminated successfully (Exit mode 0)
Current function value: 69.81775202241728
Iterations: 35
Function evaluations: 423
Gradient evaluations: 34
Iteration: 1, Func. Count: 6, Neg. LLF: 167.3979872815179
Iteration: 2, Func. Count: 14, Neg. LLF: 160.84464981887479
Iteration: 3, Func. Count: 21, Neg. LLF: 82.68556254677537
Iteration: 4, Func. Count: 27, Neg. LLF: 70.72484367628466
Iteration: 5, Func. Count: 32, Neg. LLF: 159.3076026027358
Iteration: 6, Func. Count: 39, Neg. LLF: 71.21635079843813
Iteration: 7, Func. Count: 45, Neg. LLF: 70.57927306138475
Iteration: 8, Func. Count: 50, Neg. LLF: 70.57926636409239
Iteration: 9, Func. Count: 56, Neg. LLF: 70.57913621120079
Iteration: 10, Func. Count: 60, Neg. LLF: 70.57913621120231
Optimization terminated successfully (Exit mode 0)
Current function value: 70.57913621120079
Iterations: 10
Function evaluations: 60
Gradient evaluations: 10
Iteration: 1, Func. Count: 7, Neg. LLF: 133.37780007294322
Iteration: 2, Func. Count: 15, Neg. LLF: 12985.678131251261
Iteration: 3, Func. Count: 23, Neg. LLF: 100.15982744370176
Iteration: 4, Func. Count: 31, Neg. LLF: 70.63969654995907
Iteration: 5, Func. Count: 37, Neg. LLF: 70.64021385396549
Iteration: 6, Func. Count: 44, Neg. LLF: 70.58217862111299
Iteration: 7, Func. Count: 50, Neg. LLF: 70.57934615461232
Iteration: 8, Func. Count: 56, Neg. LLF: 70.57917725567752
Iteration: 9, Func. Count: 62, Neg. LLF: 70.57913991118542
Iteration: 10, Func. Count: 68, Neg. LLF: 70.5791364804138
Iteration: 11, Func. Count: 73, Neg. LLF: 70.57913648743329
Optimization terminated successfully (Exit mode 0)
Current function value: 70.5791364804138
Iterations: 11
Function evaluations: 73
Gradient evaluations: 11
Iteration: 1, Func. Count: 8, Neg. LLF: 27693408.69620405
Iteration: 2, Func. Count: 17, Neg. LLF: 77.38876139339719
Iteration: 3, Func. Count: 26, Neg. LLF: 70.86742702158088
Iteration: 4, Func. Count: 33, Neg. LLF: 70.72635980051162
Iteration: 5, Func. Count: 40, Neg. LLF: 70.68247439567716
Iteration: 6, Func. Count: 47, Neg. LLF: 70.6785166194163
Iteration: 7, Func. Count: 54, Neg. LLF: 70.67824728996851
Iteration: 8, Func. Count: 61, Neg. LLF: 70.67713349395397
Iteration: 9, Func. Count: 68, Neg. LLF: 70.67582864490535
Iteration: 10, Func. Count: 75, Neg. LLF: 70.67363858932242
Iteration: 11, Func. Count: 82, Neg. LLF: 70.67170975259111
Iteration: 12, Func. Count: 89, Neg. LLF: 70.66772453536989
Iteration: 13, Func. Count: 96, Neg. LLF: 70.66748922004582
Iteration: 14, Func. Count: 103, Neg. LLF: 70.66746741910652
Iteration: 15, Func. Count: 110, Neg. LLF: 70.66746484904276
Iteration: 16, Func. Count: 116, Neg. LLF: 70.66746484922149
Optimization terminated successfully (Exit mode 0)
Current function value: 70.66746484904276
Iterations: 16
Function evaluations: 116
Gradient evaluations: 16
Iteration: 1, Func. Count: 9, Neg. LLF: 27588829.290974703
Iteration: 2, Func. Count: 19, Neg. LLF: 80.78804676643836
Iteration: 3, Func. Count: 29, Neg. LLF: 70.82376815558155
Iteration: 4, Func. Count: 37, Neg. LLF: 70.66879529241075
Iteration: 5, Func. Count: 45, Neg. LLF: 70.65711485725039
Iteration: 6, Func. Count: 53, Neg. LLF: 70.66448116226856
Iteration: 7, Func. Count: 62, Neg. LLF: 70.61773988627353
Iteration: 8, Func. Count: 70, Neg. LLF: 70.47592259520577
Iteration: 9, Func. Count: 78, Neg. LLF: 70.30504506519459
Iteration: 10, Func. Count: 86, Neg. LLF: 70.2654634088428
Iteration: 11, Func. Count: 94, Neg. LLF: 70.222234250835
Iteration: 12, Func. Count: 102, Neg. LLF: 70.17812600505067
Iteration: 13, Func. Count: 110, Neg. LLF: 70.16043179844736
Iteration: 14, Func. Count: 118, Neg. LLF: 73.09988473510457
Iteration: 15, Func. Count: 128, Neg. LLF: 71.39791113971776
Iteration: 16, Func. Count: 138, Neg. LLF: 71.64107720558604
Iteration: 17, Func. Count: 148, Neg. LLF: 70.15561255784338
Iteration: 18, Func. Count: 155, Neg. LLF: 70.15561255757206
Optimization terminated successfully (Exit mode 0)
Current function value: 70.15561255784338
Iterations: 19
Function evaluations: 155
Gradient evaluations: 18
Iteration: 1, Func. Count: 10, Neg. LLF: 27303160.088530667
Iteration: 2, Func. Count: 21, Neg. LLF: 102.9038936527505
Iteration: 3, Func. Count: 32, Neg. LLF: 74.08239091712812
Iteration: 4, Func. Count: 43, Neg. LLF: 70.40141173173923
Iteration: 5, Func. Count: 52, Neg. LLF: 70.80407139373764
Iteration: 6, Func. Count: 62, Neg. LLF: 70.36936763827983
Iteration: 7, Func. Count: 72, Neg. LLF: 70.3392472674917
Iteration: 8, Func. Count: 81, Neg. LLF: 70.33864038502878
Iteration: 9, Func. Count: 90, Neg. LLF: 70.33860832622011
Iteration: 10, Func. Count: 99, Neg. LLF: 70.33860751734704
Optimization terminated successfully (Exit mode 0)
Current function value: 70.33860751734704
Iterations: 10
Function evaluations: 99
Gradient evaluations: 10
Iteration: 1, Func. Count: 7, Neg. LLF: 166.9528375831653
Iteration: 2, Func. Count: 16, Neg. LLF: 161.0517797823121
Iteration: 3, Func. Count: 24, Neg. LLF: 83.20459156385057
Iteration: 4, Func. Count: 31, Neg. LLF: 70.51355696107395
Iteration: 5, Func. Count: 37, Neg. LLF: 70.72848511065776
Iteration: 6, Func. Count: 44, Neg. LLF: 70.65968146131169
Iteration: 7, Func. Count: 51, Neg. LLF: 70.32436734727133
Iteration: 8, Func. Count: 57, Neg. LLF: 70.32316399039892
Iteration: 9, Func. Count: 63, Neg. LLF: 70.3230228822973
Iteration: 10, Func. Count: 69, Neg. LLF: 70.32300665204323
Iteration: 11, Func. Count: 74, Neg. LLF: 70.32300659104956
Optimization terminated successfully (Exit mode 0)
Current function value: 70.32300665204323
Iterations: 11
Function evaluations: 74
Gradient evaluations: 11
Iteration: 1, Func. Count: 8, Neg. LLF: 121.11357774781942
Iteration: 2, Func. Count: 17, Neg. LLF: 302.52376770184435
Iteration: 3, Func. Count: 25, Neg. LLF: 76.83006113503838
Iteration: 4, Func. Count: 34, Neg. LLF: 70.48347570414627
Iteration: 5, Func. Count: 41, Neg. LLF: 70.42266212205362
Iteration: 6, Func. Count: 48, Neg. LLF: 70.34882122693911
Iteration: 7, Func. Count: 55, Neg. LLF: 70.32872560147511
Iteration: 8, Func. Count: 62, Neg. LLF: 70.3237348161516
Iteration: 9, Func. Count: 69, Neg. LLF: 70.32309149339912
Iteration: 10, Func. Count: 76, Neg. LLF: 70.32301969721127
Iteration: 11, Func. Count: 83, Neg. LLF: 70.32300656408033
Iteration: 12, Func. Count: 89, Neg. LLF: 70.32300657589293
Optimization terminated successfully (Exit mode 0)
Current function value: 70.32300656408033
Iterations: 12
Function evaluations: 89
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 91.78391675768096
Iteration: 2, Func. Count: 18, Neg. LLF: 1005.6044958890446
Iteration: 3, Func. Count: 27, Neg. LLF: 126.52173745177343
Iteration: 4, Func. Count: 37, Neg. LLF: 78.3681083464191
Iteration: 5, Func. Count: 46, Neg. LLF: 70.34303225536337
Iteration: 6, Func. Count: 54, Neg. LLF: 70.32540719750871
Iteration: 7, Func. Count: 62, Neg. LLF: 70.32346322352615
Iteration: 8, Func. Count: 70, Neg. LLF: 70.32302634375164
Iteration: 9, Func. Count: 78, Neg. LLF: 70.32300680130126
Iteration: 10, Func. Count: 85, Neg. LLF: 70.32300682772829
Optimization terminated successfully (Exit mode 0)
Current function value: 70.32300680130126
Iterations: 10
Function evaluations: 85
Gradient evaluations: 10
Iteration: 1, Func. Count: 10, Neg. LLF: 32626779.179407734
Iteration: 2, Func. Count: 21, Neg. LLF: 99.07704704764559
Iteration: 3, Func. Count: 32, Neg. LLF: 1748.421788839253
Iteration: 4, Func. Count: 43, Neg. LLF: 70.79797004239407
Iteration: 5, Func. Count: 52, Neg. LLF: 70.76846794591728
Iteration: 6, Func. Count: 62, Neg. LLF: 71.15279186101596
Iteration: 7, Func. Count: 72, Neg. LLF: 70.65862287166117
Iteration: 8, Func. Count: 81, Neg. LLF: 70.65558482604797
Iteration: 9, Func. Count: 90, Neg. LLF: 70.65458723613047
Iteration: 10, Func. Count: 99, Neg. LLF: 70.6542681792386
Iteration: 11, Func. Count: 108, Neg. LLF: 70.64041714106779
Iteration: 12, Func. Count: 117, Neg. LLF: 70.56516924659877
Iteration: 13, Func. Count: 126, Neg. LLF: 74.56341508321951
Iteration: 14, Func. Count: 138, Neg. LLF: 70.51316587781231
Iteration: 15, Func. Count: 147, Neg. LLF: 70.48987699900596
Iteration: 16, Func. Count: 156, Neg. LLF: 70.46461629520252
Iteration: 17, Func. Count: 165, Neg. LLF: 70.41772819233915
Iteration: 18, Func. Count: 174, Neg. LLF: 58304391.2375241
Iteration: 19, Func. Count: 185, Neg. LLF: 6144.709379600904
Iteration: 20, Func. Count: 196, Neg. LLF: 92.9860747157114
Iteration: 21, Func. Count: 207, Neg. LLF: 70.15592593232361
Iteration: 22, Func. Count: 216, Neg. LLF: 70.1556134395975
Iteration: 23, Func. Count: 225, Neg. LLF: 70.15561278784736
Optimization terminated successfully (Exit mode 0)
Current function value: 70.15561278784736
Iterations: 24
Function evaluations: 225
Gradient evaluations: 23
Iteration: 1, Func. Count: 11, Neg. LLF: 32172655.111179102
Iteration: 2, Func. Count: 23, Neg. LLF: 197.4114154522749
Iteration: 3, Func. Count: 35, Neg. LLF: 284.6327015376166
Iteration: 4, Func. Count: 47, Neg. LLF: 71.16818372655057
Iteration: 5, Func. Count: 58, Neg. LLF: 70.34103287037665
Iteration: 6, Func. Count: 68, Neg. LLF: 70.54923003489775
Iteration: 7, Func. Count: 79, Neg. LLF: 70.33073399111554
Iteration: 8, Func. Count: 89, Neg. LLF: 70.33030733524625
Iteration: 9, Func. Count: 99, Neg. LLF: 70.3301299668061
Iteration: 10, Func. Count: 109, Neg. LLF: 70.33010166304737
Iteration: 11, Func. Count: 118, Neg. LLF: 70.33010166311145
Optimization terminated successfully (Exit mode 0)
Current function value: 70.33010166304737
Iterations: 11
Function evaluations: 118
Gradient evaluations: 11
Iteration: 1, Func. Count: 8, Neg. LLF: 175.56595233139487
Iteration: 2, Func. Count: 18, Neg. LLF: 151.52749423306437
Iteration: 3, Func. Count: 27, Neg. LLF: 80.89570653417546
Iteration: 4, Func. Count: 35, Neg. LLF: 71.90441141625858
Iteration: 5, Func. Count: 43, Neg. LLF: 85.76769602736502
Iteration: 6, Func. Count: 51, Neg. LLF: 70.90095659248526
Iteration: 7, Func. Count: 59, Neg. LLF: 74.0692027952539
Iteration: 8, Func. Count: 67, Neg. LLF: 70.32312805971736
Iteration: 9, Func. Count: 74, Neg. LLF: 70.32295169051292
Iteration: 10, Func. Count: 81, Neg. LLF: 70.32292689235652
Iteration: 11, Func. Count: 88, Neg. LLF: 70.3229183826318
Iteration: 12, Func. Count: 94, Neg. LLF: 70.32291838264204
Optimization terminated successfully (Exit mode 0)
Current function value: 70.3229183826318
Iterations: 12
Function evaluations: 94
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 121.53063122529618
Iteration: 2, Func. Count: 19, Neg. LLF: 295.488444407293
Iteration: 3, Func. Count: 28, Neg. LLF: 229.33432912851504
Iteration: 4, Func. Count: 38, Neg. LLF: 70.64196728187339
Iteration: 5, Func. Count: 46, Neg. LLF: 70.42116699265027
Iteration: 6, Func. Count: 54, Neg. LLF: 70.78302721887911
Iteration: 7, Func. Count: 63, Neg. LLF: 70.40077174661194
Iteration: 8, Func. Count: 72, Neg. LLF: 70.32611087030072
Iteration: 9, Func. Count: 80, Neg. LLF: 70.32329045270785
Iteration: 10, Func. Count: 88, Neg. LLF: 70.32295555478295
Iteration: 11, Func. Count: 96, Neg. LLF: 70.3229181012471
Iteration: 12, Func. Count: 103, Neg. LLF: 70.32291811330579
Optimization terminated successfully (Exit mode 0)
Current function value: 70.3229181012471
Iterations: 12
Function evaluations: 103
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 96.96925998876323
Iteration: 2, Func. Count: 21, Neg. LLF: 967.9776642200634
Iteration: 3, Func. Count: 31, Neg. LLF: 137.94852973937586
Iteration: 4, Func. Count: 42, Neg. LLF: 74.09145900508592
Iteration: 5, Func. Count: 52, Neg. LLF: 70.37979479528437
Iteration: 6, Func. Count: 61, Neg. LLF: 70.85502586758521
Iteration: 7, Func. Count: 71, Neg. LLF: 70.32522505490303
Iteration: 8, Func. Count: 80, Neg. LLF: 70.32326630953759
Iteration: 9, Func. Count: 89, Neg. LLF: 70.32296624901018
Iteration: 10, Func. Count: 98, Neg. LLF: 70.32292561493709
Iteration: 11, Func. Count: 107, Neg. LLF: 70.32291998406664
Iteration: 12, Func. Count: 116, Neg. LLF: 70.3229180830553
Iteration: 13, Func. Count: 124, Neg. LLF: 70.3229181094182
Optimization terminated successfully (Exit mode 0)
Current function value: 70.3229180830553
Iterations: 13
Function evaluations: 124
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 33957242.04937674
Iteration: 2, Func. Count: 23, Neg. LLF: 135.05081586171536
Iteration: 3, Func. Count: 35, Neg. LLF: 27494838.522581443
Iteration: 4, Func. Count: 47, Neg. LLF: 70.78533305167285
Iteration: 5, Func. Count: 57, Neg. LLF: 70.7283468990655
Iteration: 6, Func. Count: 67, Neg. LLF: 70.78657887694209
Iteration: 7, Func. Count: 78, Neg. LLF: 70.6634182371612
Iteration: 8, Func. Count: 88, Neg. LLF: 70.65762253374818
Iteration: 9, Func. Count: 98, Neg. LLF: 70.65432123052611
Iteration: 10, Func. Count: 108, Neg. LLF: 70.6390669449863
Iteration: 11, Func. Count: 118, Neg. LLF: 70.22811614113917
Iteration: 12, Func. Count: 128, Neg. LLF: 70.21535543405437
Iteration: 13, Func. Count: 138, Neg. LLF: 70.19305893143847
Iteration: 14, Func. Count: 148, Neg. LLF: 35148779.36942401
Iteration: 15, Func. Count: 161, Neg. LLF: 879.6517432871735
Iteration: 16, Func. Count: 173, Neg. LLF: 71.07324468371903
Iteration: 17, Func. Count: 185, Neg. LLF: 70.210558892181
Iteration: 18, Func. Count: 196, Neg. LLF: 70.23394789981246
Iteration: 19, Func. Count: 207, Neg. LLF: 70.18355294866481
Iteration: 20, Func. Count: 216, Neg. LLF: 70.1835529975043
Optimization terminated successfully (Exit mode 0)
Current function value: 70.18355294866481
Iterations: 21
Function evaluations: 216
Gradient evaluations: 20
Iteration: 1, Func. Count: 12, Neg. LLF: 33345780.004277237
Iteration: 2, Func. Count: 25, Neg. LLF: 151.61317447854552
Iteration: 3, Func. Count: 38, Neg. LLF: 9802108.207313364
Iteration: 4, Func. Count: 51, Neg. LLF: 70.33866521707294
Iteration: 5, Func. Count: 62, Neg. LLF: 69.83826888043293
Iteration: 6, Func. Count: 73, Neg. LLF: 69.9927773168154
Iteration: 7, Func. Count: 85, Neg. LLF: 69.6467503885975
Iteration: 8, Func. Count: 96, Neg. LLF: 69.62342776596165
Iteration: 9, Func. Count: 107, Neg. LLF: 69.61699870193718
Iteration: 10, Func. Count: 118, Neg. LLF: 69.61666772149331
Iteration: 11, Func. Count: 129, Neg. LLF: 69.61659113963603
Iteration: 12, Func. Count: 140, Neg. LLF: 69.61658644817973
Iteration: 13, Func. Count: 150, Neg. LLF: 69.6165864484315
Optimization terminated successfully (Exit mode 0)
Current function value: 69.61658644817973
Iterations: 13
Function evaluations: 150
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 166.68749816229968
Iteration: 2, Func. Count: 20, Neg. LLF: 132.02674536832782
Iteration: 3, Func. Count: 30, Neg. LLF: 78.19404266365015
Iteration: 4, Func. Count: 39, Neg. LLF: 2959124.6361757726
Iteration: 5, Func. Count: 48, Neg. LLF: 84.59412308688029
Iteration: 6, Func. Count: 57, Neg. LLF: 70.37803258877908
Iteration: 7, Func. Count: 65, Neg. LLF: 70.12182749240289
Iteration: 8, Func. Count: 73, Neg. LLF: 71.40566105482229
Iteration: 9, Func. Count: 82, Neg. LLF: 70.08654929030521
Iteration: 10, Func. Count: 90, Neg. LLF: 70.0846283752797
Iteration: 11, Func. Count: 98, Neg. LLF: 70.08439375084858
Iteration: 12, Func. Count: 106, Neg. LLF: 70.08438760341842
Iteration: 13, Func. Count: 113, Neg. LLF: 70.08438760341744
Optimization terminated successfully (Exit mode 0)
Current function value: 70.08438760341842
Iterations: 13
Function evaluations: 113
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 120.89378850069495
Iteration: 2, Func. Count: 21, Neg. LLF: 293.8563041091024
Iteration: 3, Func. Count: 31, Neg. LLF: 285.896667185218
Iteration: 4, Func. Count: 42, Neg. LLF: 70.62712445330538
Iteration: 5, Func. Count: 51, Neg. LLF: 70.4159043772923
Iteration: 6, Func. Count: 60, Neg. LLF: 70.19211503859547
Iteration: 7, Func. Count: 69, Neg. LLF: 73.28482615571927
Iteration: 8, Func. Count: 79, Neg. LLF: 70.1177985817015
Iteration: 9, Func. Count: 89, Neg. LLF: 70.10518264086018
Iteration: 10, Func. Count: 99, Neg. LLF: 70.08522947121267
Iteration: 11, Func. Count: 108, Neg. LLF: 70.08460185019966
Iteration: 12, Func. Count: 117, Neg. LLF: 70.08440040348572
Iteration: 13, Func. Count: 126, Neg. LLF: 70.08438756164271
Iteration: 14, Func. Count: 134, Neg. LLF: 70.0843876151443
Optimization terminated successfully (Exit mode 0)
Current function value: 70.08438756164271
Iterations: 14
Function evaluations: 134
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 95.55454121219068
Iteration: 2, Func. Count: 22, Neg. LLF: 229.92075269955495
Iteration: 3, Func. Count: 33, Neg. LLF: 3001617.919755588
Iteration: 4, Func. Count: 45, Neg. LLF: 71.14076255205093
Iteration: 5, Func. Count: 56, Neg. LLF: 71.12130947889621
Iteration: 6, Func. Count: 67, Neg. LLF: 70.97668276328314
Iteration: 7, Func. Count: 78, Neg. LLF: 70.3502772821608
Iteration: 8, Func. Count: 88, Neg. LLF: 70.15987415655754
Iteration: 9, Func. Count: 98, Neg. LLF: 70.10519171392068
Iteration: 10, Func. Count: 108, Neg. LLF: 70.0900842931121
Iteration: 11, Func. Count: 118, Neg. LLF: 70.1821170028243
Iteration: 12, Func. Count: 129, Neg. LLF: 70.08472634913315
Iteration: 13, Func. Count: 139, Neg. LLF: 70.0845029412136
Iteration: 14, Func. Count: 149, Neg. LLF: 70.08441597186888
Iteration: 15, Func. Count: 159, Neg. LLF: 70.0843915578912
Iteration: 16, Func. Count: 169, Neg. LLF: 70.08438818663377
Iteration: 17, Func. Count: 179, Neg. LLF: 70.08438736345535
Optimization terminated successfully (Exit mode 0)
Current function value: 70.08438736345535
Iterations: 17
Function evaluations: 179
Gradient evaluations: 17
Iteration: 1, Func. Count: 12, Neg. LLF: 32972940.05999601
Iteration: 2, Func. Count: 25, Neg. LLF: 159.68329362030477
Iteration: 3, Func. Count: 38, Neg. LLF: 7477407.331290876
Iteration: 4, Func. Count: 51, Neg. LLF: 70.78080344483982
Iteration: 5, Func. Count: 62, Neg. LLF: 70.73070616354923
Iteration: 6, Func. Count: 73, Neg. LLF: 70.78176942099172
Iteration: 7, Func. Count: 85, Neg. LLF: 70.66225403001928
Iteration: 8, Func. Count: 96, Neg. LLF: 70.65734856104962
Iteration: 9, Func. Count: 107, Neg. LLF: 70.6542870906675
Iteration: 10, Func. Count: 118, Neg. LLF: 70.63311413159433
Iteration: 11, Func. Count: 129, Neg. LLF: 70.22473365826423
Iteration: 12, Func. Count: 140, Neg. LLF: 70.18011747908521
Iteration: 13, Func. Count: 151, Neg. LLF: 71.6225543501336
Iteration: 14, Func. Count: 165, Neg. LLF: 70.1351522661509
Iteration: 15, Func. Count: 176, Neg. LLF: 70.11155189856207
Iteration: 16, Func. Count: 187, Neg. LLF: 70.08392841322225
Iteration: 17, Func. Count: 198, Neg. LLF: 70.07871925921245
Iteration: 18, Func. Count: 209, Neg. LLF: 70.07859360189319
Iteration: 19, Func. Count: 220, Neg. LLF: 70.07858688680903
Iteration: 20, Func. Count: 230, Neg. LLF: 70.07858697878972
Optimization terminated successfully (Exit mode 0)
Current function value: 70.07858688680903
Iterations: 20
Function evaluations: 230
Gradient evaluations: 20
Iteration: 1, Func. Count: 13, Neg. LLF: 32470929.493894886
Iteration: 2, Func. Count: 27, Neg. LLF: 159.72587389744467
Iteration: 3, Func. Count: 41, Neg. LLF: 7288962.365604578
Iteration: 4, Func. Count: 55, Neg. LLF: 70.32249810915117
Iteration: 5, Func. Count: 67, Neg. LLF: 69.428090364129
Iteration: 6, Func. Count: 79, Neg. LLF: 69.76841697436797
Iteration: 7, Func. Count: 92, Neg. LLF: 113.78837269460146
Iteration: 8, Func. Count: 106, Neg. LLF: 69.03972545895219
Iteration: 9, Func. Count: 118, Neg. LLF: 68.93960671048026
Iteration: 10, Func. Count: 130, Neg. LLF: 68.8605923443937
Iteration: 11, Func. Count: 142, Neg. LLF: 68.84581039309106
Iteration: 12, Func. Count: 154, Neg. LLF: 68.84132949863826
Iteration: 13, Func. Count: 166, Neg. LLF: 68.83216202723234
Iteration: 14, Func. Count: 178, Neg. LLF: 68.81857797410026
Iteration: 15, Func. Count: 190, Neg. LLF: 68.8016164936706
Iteration: 16, Func. Count: 202, Neg. LLF: 68.7909827102289
Iteration: 17, Func. Count: 214, Neg. LLF: 68.78359279261925
Iteration: 18, Func. Count: 226, Neg. LLF: 68.78148942406202
Iteration: 19, Func. Count: 238, Neg. LLF: 68.78030328989625
Iteration: 20, Func. Count: 250, Neg. LLF: 68.78023453662584
Iteration: 21, Func. Count: 262, Neg. LLF: 68.78022427480894
Iteration: 22, Func. Count: 273, Neg. LLF: 68.78022425886222
Optimization terminated successfully (Exit mode 0)
Current function value: 68.78022427480894
Iterations: 22
Function evaluations: 273
Gradient evaluations: 22
Iteration: 1, Func. Count: 10, Neg. LLF: 162.67714166274394
Iteration: 2, Func. Count: 22, Neg. LLF: 135.31414826189007
Iteration: 3, Func. Count: 33, Neg. LLF: 79.82938313321074
Iteration: 4, Func. Count: 43, Neg. LLF: 2900628.794624779
Iteration: 5, Func. Count: 53, Neg. LLF: 96.16617210655335
Iteration: 6, Func. Count: 63, Neg. LLF: 70.44287290781033
Iteration: 7, Func. Count: 72, Neg. LLF: 70.14729997447343
Iteration: 8, Func. Count: 81, Neg. LLF: 73.29788487952105
Iteration: 9, Func. Count: 91, Neg. LLF: 70.09120571475076
Iteration: 10, Func. Count: 100, Neg. LLF: 70.08765145364777
Iteration: 11, Func. Count: 109, Neg. LLF: 70.08446702579914
Iteration: 12, Func. Count: 118, Neg. LLF: 70.08439248189218
Iteration: 13, Func. Count: 127, Neg. LLF: 70.08438756319121
Iteration: 14, Func. Count: 135, Neg. LLF: 70.08438765589979
Optimization terminated successfully (Exit mode 0)
Current function value: 70.08438756319121
Iterations: 14
Function evaluations: 135
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 120.59872278629794
Iteration: 2, Func. Count: 23, Neg. LLF: 295.54173717348436
Iteration: 3, Func. Count: 34, Neg. LLF: 481.93420571360036
Iteration: 4, Func. Count: 46, Neg. LLF: 70.62794552653536
Iteration: 5, Func. Count: 56, Neg. LLF: 70.41743074211264
Iteration: 6, Func. Count: 66, Neg. LLF: 70.18519012980694
Iteration: 7, Func. Count: 76, Neg. LLF: 73.30972800704076
Iteration: 8, Func. Count: 87, Neg. LLF: 70.10964667283278
Iteration: 9, Func. Count: 98, Neg. LLF: 70.10284808720135
Iteration: 10, Func. Count: 109, Neg. LLF: 70.08513590588733
Iteration: 11, Func. Count: 119, Neg. LLF: 70.0845796905667
Iteration: 12, Func. Count: 129, Neg. LLF: 70.08439792245697
Iteration: 13, Func. Count: 139, Neg. LLF: 70.08438752601026
Iteration: 14, Func. Count: 148, Neg. LLF: 70.08438757950854
Optimization terminated successfully (Exit mode 0)
Current function value: 70.08438752601026
Iterations: 14
Function evaluations: 148
Gradient evaluations: 14
Iteration: 1, Func. Count: 12, Neg. LLF: 32859095.511787668
Iteration: 2, Func. Count: 25, Neg. LLF: 156.66993817408212
Iteration: 3, Func. Count: 38, Neg. LLF: 5019.2011421066545
Iteration: 4, Func. Count: 51, Neg. LLF: 70.79910596184298
Iteration: 5, Func. Count: 62, Neg. LLF: 70.24080597046415
Iteration: 6, Func. Count: 73, Neg. LLF: 71.33998355509553
Iteration: 7, Func. Count: 86, Neg. LLF: 70.1455619844957
Iteration: 8, Func. Count: 97, Neg. LLF: 70.13097729878014
Iteration: 9, Func. Count: 108, Neg. LLF: 70.10903315522486
Iteration: 10, Func. Count: 119, Neg. LLF: 70.0798713904439
Iteration: 11, Func. Count: 130, Neg. LLF: 70.07865368704219
Iteration: 12, Func. Count: 141, Neg. LLF: 70.07858885770767
Iteration: 13, Func. Count: 152, Neg. LLF: 70.63164117386611
Iteration: 14, Func. Count: 166, Neg. LLF: 70.08709389360172
Iteration: 15, Func. Count: 179, Neg. LLF: 70.08227044022608
Optimization terminated successfully (Exit mode 0)
Current function value: 70.0785863219055
Iterations: 16
Function evaluations: 181
Gradient evaluations: 15
Iteration: 1, Func. Count: 13, Neg. LLF: 32676858.516034905
Iteration: 2, Func. Count: 27, Neg. LLF: 169.38488225018892
Iteration: 3, Func. Count: 41, Neg. LLF: 1998950.5244049781
Iteration: 4, Func. Count: 55, Neg. LLF: 70.77967693029575
Iteration: 5, Func. Count: 67, Neg. LLF: 70.72810050389904
Iteration: 6, Func. Count: 79, Neg. LLF: 70.77750054863594
Iteration: 7, Func. Count: 92, Neg. LLF: 70.66179848267863
Iteration: 8, Func. Count: 104, Neg. LLF: 70.65740263423409
Iteration: 9, Func. Count: 116, Neg. LLF: 70.65423879510182
Iteration: 10, Func. Count: 128, Neg. LLF: 70.62726182690686
Iteration: 11, Func. Count: 140, Neg. LLF: 70.2245637936507
Iteration: 12, Func. Count: 152, Neg. LLF: 70.19476581315989
Iteration: 13, Func. Count: 164, Neg. LLF: 72.67370322072553
Iteration: 14, Func. Count: 179, Neg. LLF: 70.1254518123849
Iteration: 15, Func. Count: 191, Neg. LLF: 70.10521010443327
Iteration: 16, Func. Count: 203, Neg. LLF: 70.08470766372864
Iteration: 17, Func. Count: 215, Neg. LLF: 70.07966301157164
Iteration: 18, Func. Count: 227, Neg. LLF: 70.07870260523602
Iteration: 19, Func. Count: 239, Neg. LLF: 70.07858695453206
Iteration: 20, Func. Count: 250, Neg. LLF: 70.0785870461325
Optimization terminated successfully (Exit mode 0)
Current function value: 70.07858695453206
Iterations: 20
Function evaluations: 250
Gradient evaluations: 20
Iteration: 1, Func. Count: 14, Neg. LLF: 32107209.16498071
Iteration: 2, Func. Count: 29, Neg. LLF: 142.34122476068382
Iteration: 3, Func. Count: 44, Neg. LLF: 2278585.594113135
Iteration: 4, Func. Count: 59, Neg. LLF: 70.32350748974358
Iteration: 5, Func. Count: 72, Neg. LLF: 69.47018505385117
Iteration: 6, Func. Count: 85, Neg. LLF: 69.58792665207694
Iteration: 7, Func. Count: 99, Neg. LLF: 111.81646691389115
Iteration: 8, Func. Count: 114, Neg. LLF: 69.03302510079573
Iteration: 9, Func. Count: 127, Neg. LLF: 68.92816569686997
Iteration: 10, Func. Count: 140, Neg. LLF: 68.87442471791101
Iteration: 11, Func. Count: 153, Neg. LLF: 68.84676187795692
Iteration: 12, Func. Count: 166, Neg. LLF: 68.84226732833275
Iteration: 13, Func. Count: 179, Neg. LLF: 68.8317759787601
Iteration: 14, Func. Count: 192, Neg. LLF: 68.82160196645505
Iteration: 15, Func. Count: 205, Neg. LLF: 68.80112531054488
Iteration: 16, Func. Count: 218, Neg. LLF: 68.79188065562165
Iteration: 17, Func. Count: 231, Neg. LLF: 68.78289823432742
Iteration: 18, Func. Count: 244, Neg. LLF: 68.78085767875616
Iteration: 19, Func. Count: 257, Neg. LLF: 68.78027618208395
Iteration: 20, Func. Count: 270, Neg. LLF: 68.78023869833976
Iteration: 21, Func. Count: 283, Neg. LLF: 68.78022413060626
Iteration: 22, Func. Count: 295, Neg. LLF: 68.78022411466188
Optimization terminated successfully (Exit mode 0)
Current function value: 68.78022413060626
Iterations: 22
Function evaluations: 295
Gradient evaluations: 22
Iteration: 1, Func. Count: 7, Neg. LLF: 133.76826110201262
Iteration: 2, Func. Count: 17, Neg. LLF: 129.79119728454137
Iteration: 3, Func. Count: 25, Neg. LLF: 279.5479540531841
Iteration: 4, Func. Count: 32, Neg. LLF: 70.59733911747506
Iteration: 5, Func. Count: 38, Neg. LLF: 70.58425986838725
Iteration: 6, Func. Count: 44, Neg. LLF: 70.5795978359389
Iteration: 7, Func. Count: 50, Neg. LLF: 70.58002348037753
Iteration: 8, Func. Count: 57, Neg. LLF: 70.5791396663956
Iteration: 9, Func. Count: 63, Neg. LLF: 70.57913635739324
Iteration: 10, Func. Count: 68, Neg. LLF: 70.57913638884277
Optimization terminated successfully (Exit mode 0)
Current function value: 70.57913635739324
Iterations: 10
Function evaluations: 68
Gradient evaluations: 10
Iteration: 1, Func. Count: 8, Neg. LLF: 26085809.515132207
Iteration: 2, Func. Count: 17, Neg. LLF: 72.68024485735369
Iteration: 3, Func. Count: 25, Neg. LLF: 70.67012596195602
Iteration: 4, Func. Count: 32, Neg. LLF: 70.66886328126591
Iteration: 5, Func. Count: 39, Neg. LLF: 70.70362241574676
Iteration: 6, Func. Count: 47, Neg. LLF: 70.66746579316921
Iteration: 7, Func. Count: 54, Neg. LLF: 70.66746493794331
Optimization terminated successfully (Exit mode 0)
Current function value: 70.66746493794331
Iterations: 7
Function evaluations: 54
Gradient evaluations: 7
Iteration: 1, Func. Count: 9, Neg. LLF: 25954418.316032693
Iteration: 2, Func. Count: 19, Neg. LLF: 74.26967632355003
Iteration: 3, Func. Count: 29, Neg. LLF: 70.85893073959849
Iteration: 4, Func. Count: 37, Neg. LLF: 70.76404207224122
Iteration: 5, Func. Count: 45, Neg. LLF: 70.66687794988268
Iteration: 6, Func. Count: 53, Neg. LLF: 70.64766202298294
Iteration: 7, Func. Count: 61, Neg. LLF: 70.64743549285076
Iteration: 8, Func. Count: 69, Neg. LLF: 70.64743495307488
Optimization terminated successfully (Exit mode 0)
Current function value: 70.64743495307488
Iterations: 8
Function evaluations: 69
Gradient evaluations: 8
Iteration: 1, Func. Count: 10, Neg. LLF: 26063617.886863586
Iteration: 2, Func. Count: 21, Neg. LLF: 76.76368455249973
Iteration: 3, Func. Count: 32, Neg. LLF: 70.80789652099539
Iteration: 4, Func. Count: 41, Neg. LLF: 70.67034613820219
Iteration: 5, Func. Count: 50, Neg. LLF: 70.6561775488436
Iteration: 6, Func. Count: 59, Neg. LLF: 71.11669234937597
Iteration: 7, Func. Count: 69, Neg. LLF: 71.98156708995018
Iteration: 8, Func. Count: 80, Neg. LLF: 70.7339227606618
Iteration: 9, Func. Count: 90, Neg. LLF: 70.73818610059104
Iteration: 10, Func. Count: 100, Neg. LLF: 79.90013206779467
Iteration: 11, Func. Count: 111, Neg. LLF: 70.74618153347852
Iteration: 12, Func. Count: 121, Neg. LLF: 70.62353069291115
Iteration: 13, Func. Count: 130, Neg. LLF: 70.62225838493265
Iteration: 14, Func. Count: 139, Neg. LLF: 70.62036242197863
Iteration: 15, Func. Count: 148, Neg. LLF: 70.61715402857203
Iteration: 16, Func. Count: 157, Neg. LLF: 70.55523909353603
Iteration: 17, Func. Count: 166, Neg. LLF: 70.36459606761468
Iteration: 18, Func. Count: 175, Neg. LLF: 70.26932325148233
Iteration: 19, Func. Count: 184, Neg. LLF: 70.19912835149161
Iteration: 20, Func. Count: 193, Neg. LLF: 70.16419353906858
Iteration: 21, Func. Count: 202, Neg. LLF: 70.15686048258434
Iteration: 22, Func. Count: 211, Neg. LLF: 70.15601068613981
Iteration: 23, Func. Count: 220, Neg. LLF: 70.15565236973829
Iteration: 24, Func. Count: 229, Neg. LLF: 70.15561917902768
Iteration: 25, Func. Count: 238, Neg. LLF: 82.21140873999252
Optimization terminated successfully (Exit mode 0)
Current function value: 70.15561878894978
Iterations: 26
Function evaluations: 242
Gradient evaluations: 25
Iteration: 1, Func. Count: 11, Neg. LLF: 25861171.98319442
Iteration: 2, Func. Count: 23, Neg. LLF: 101.16504644453966
Iteration: 3, Func. Count: 35, Neg. LLF: 70.68462724631861
Iteration: 4, Func. Count: 45, Neg. LLF: 70.446186547127
Iteration: 5, Func. Count: 55, Neg. LLF: 70.84690499661333
Iteration: 6, Func. Count: 66, Neg. LLF: 70.82284362670127
Iteration: 7, Func. Count: 77, Neg. LLF: 70.36274033845547
Iteration: 8, Func. Count: 87, Neg. LLF: 70.34502397127652
Iteration: 9, Func. Count: 97, Neg. LLF: 70.34074618568943
Iteration: 10, Func. Count: 107, Neg. LLF: 70.3386089703135
Iteration: 11, Func. Count: 117, Neg. LLF: 70.33860753546821
Iteration: 12, Func. Count: 126, Neg. LLF: 70.33860753543945
Optimization terminated successfully (Exit mode 0)
Current function value: 70.33860753546821
Iterations: 12
Function evaluations: 126
Gradient evaluations: 12
Iteration: 1, Func. Count: 8, Neg. LLF: 132.64026380536782
Iteration: 2, Func. Count: 19, Neg. LLF: 127.31105958116437
Iteration: 3, Func. Count: 28, Neg. LLF: 298.16834002941465
Iteration: 4, Func. Count: 36, Neg. LLF: 72.45200414945373
Iteration: 5, Func. Count: 44, Neg. LLF: 70.32883127509005
Iteration: 6, Func. Count: 51, Neg. LLF: 70.32462369792215
Iteration: 7, Func. Count: 58, Neg. LLF: 70.3231832599704
Iteration: 8, Func. Count: 65, Neg. LLF: 70.32300672595511
Iteration: 9, Func. Count: 71, Neg. LLF: 70.32300666496211
Optimization terminated successfully (Exit mode 0)
Current function value: 70.32300672595511
Iterations: 9
Function evaluations: 71
Gradient evaluations: 9
Iteration: 1, Func. Count: 9, Neg. LLF: 75.0519583649661
Iteration: 2, Func. Count: 20, Neg. LLF: 511.68954045964256
Iteration: 3, Func. Count: 29, Neg. LLF: 7457.981405091067
Iteration: 4, Func. Count: 38, Neg. LLF: 70.815648584767
Iteration: 5, Func. Count: 46, Neg. LLF: 70.50959872256888
Iteration: 6, Func. Count: 54, Neg. LLF: 70.35743291750565
Iteration: 7, Func. Count: 62, Neg. LLF: 70.33742002524603
Iteration: 8, Func. Count: 70, Neg. LLF: 70.3291858106787
Iteration: 9, Func. Count: 78, Neg. LLF: 70.32457342209521
Iteration: 10, Func. Count: 86, Neg. LLF: 70.32369128247501
Iteration: 11, Func. Count: 94, Neg. LLF: 70.32300993346011
Iteration: 12, Func. Count: 102, Neg. LLF: 70.32300657900122
Iteration: 13, Func. Count: 109, Neg. LLF: 70.32300659082303
Optimization terminated successfully (Exit mode 0)
Current function value: 70.32300657900122
Iterations: 13
Function evaluations: 109
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 30117386.64374851
Iteration: 2, Func. Count: 21, Neg. LLF: 89.70297098077836
Iteration: 3, Func. Count: 32, Neg. LLF: 91.84268972283049
Iteration: 4, Func. Count: 43, Neg. LLF: 70.84798817356639
Iteration: 5, Func. Count: 52, Neg. LLF: 70.69633771124373
Iteration: 6, Func. Count: 61, Neg. LLF: 70.67402141968563
Iteration: 7, Func. Count: 70, Neg. LLF: 70.67387440060783
Iteration: 8, Func. Count: 79, Neg. LLF: 70.67376104660416
Iteration: 9, Func. Count: 88, Neg. LLF: 70.67323150208723
Iteration: 10, Func. Count: 97, Neg. LLF: 70.67242812859608
Iteration: 11, Func. Count: 106, Neg. LLF: 70.66949956206568
Iteration: 12, Func. Count: 115, Neg. LLF: 70.66762956314399
Iteration: 13, Func. Count: 124, Neg. LLF: 70.66747536564728
Iteration: 14, Func. Count: 133, Neg. LLF: 70.6674663597141
Iteration: 15, Func. Count: 142, Neg. LLF: 70.66746489060152
Iteration: 16, Func. Count: 150, Neg. LLF: 70.66746489145062
Optimization terminated successfully (Exit mode 0)
Current function value: 70.66746489060152
Iterations: 16
Function evaluations: 150
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 30085850.47476015
Iteration: 2, Func. Count: 23, Neg. LLF: 94.0116175608369
Iteration: 3, Func. Count: 35, Neg. LLF: 1081.034831281392
Iteration: 4, Func. Count: 47, Neg. LLF: 70.7916167533613
Iteration: 5, Func. Count: 57, Neg. LLF: 70.8891808858824
Iteration: 6, Func. Count: 68, Neg. LLF: 70.6693090704574
Iteration: 7, Func. Count: 78, Neg. LLF: 70.66650841574597
Iteration: 8, Func. Count: 88, Neg. LLF: 70.6617231009285
Iteration: 9, Func. Count: 98, Neg. LLF: 70.66214346438966
Iteration: 10, Func. Count: 109, Neg. LLF: 70.65814880318241
Iteration: 11, Func. Count: 119, Neg. LLF: 70.65219362292916
Iteration: 12, Func. Count: 129, Neg. LLF: 70.65197088229596
Iteration: 13, Func. Count: 139, Neg. LLF: 70.65077485450212
Iteration: 14, Func. Count: 149, Neg. LLF: 70.66673632651462
Iteration: 15, Func. Count: 160, Neg. LLF: 70.70416882952334
Iteration: 16, Func. Count: 171, Neg. LLF: 75.01751289793006
Iteration: 17, Func. Count: 183, Neg. LLF: 70.6236802327871
Iteration: 18, Func. Count: 193, Neg. LLF: 70.62370606567231
Iteration: 19, Func. Count: 204, Neg. LLF: 70.62294092677732
Iteration: 20, Func. Count: 214, Neg. LLF: 70.62287621537418
Iteration: 21, Func. Count: 224, Neg. LLF: 70.6223985128207
Iteration: 22, Func. Count: 234, Neg. LLF: 70.6207381943661
Iteration: 23, Func. Count: 244, Neg. LLF: 70.56007948040227
Iteration: 24, Func. Count: 254, Neg. LLF: 725.8678290069877
Iteration: 25, Func. Count: 266, Neg. LLF: 521012.3296763924
Iteration: 26, Func. Count: 278, Neg. LLF: 91.14101198050068
Iteration: 27, Func. Count: 290, Neg. LLF: 70.15938978460368
Iteration: 28, Func. Count: 300, Neg. LLF: 70.15582387786802
Iteration: 29, Func. Count: 310, Neg. LLF: 70.15561271015775
Iteration: 30, Func. Count: 319, Neg. LLF: 70.15561270999223
Optimization terminated successfully (Exit mode 0)
Current function value: 70.15561271015775
Iterations: 31
Function evaluations: 319
Gradient evaluations: 30
Iteration: 1, Func. Count: 12, Neg. LLF: 29736624.73856177
Iteration: 2, Func. Count: 25, Neg. LLF: 160.230500701056
Iteration: 3, Func. Count: 38, Neg. LLF: 99720.49978451878
Iteration: 4, Func. Count: 51, Neg. LLF: 71.35447818013579
Iteration: 5, Func. Count: 63, Neg. LLF: 70.35478507659387
Iteration: 6, Func. Count: 74, Neg. LLF: 70.60917970376663
Iteration: 7, Func. Count: 86, Neg. LLF: 70.33251889741499
Iteration: 8, Func. Count: 97, Neg. LLF: 70.33051776720927
Iteration: 9, Func. Count: 108, Neg. LLF: 70.33021631434676
Iteration: 10, Func. Count: 119, Neg. LLF: 70.33010227207676
Iteration: 11, Func. Count: 130, Neg. LLF: 70.33010131343615
Optimization terminated successfully (Exit mode 0)
Current function value: 70.33010131343615
Iterations: 11
Function evaluations: 130
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 155.1150142814346
Iteration: 2, Func. Count: 20, Neg. LLF: 135.830371714257
Iteration: 3, Func. Count: 30, Neg. LLF: 77.16664591972618
Iteration: 4, Func. Count: 39, Neg. LLF: 72.28644058039033
Iteration: 5, Func. Count: 48, Neg. LLF: 78.90742894868058
Iteration: 6, Func. Count: 57, Neg. LLF: 70.971573335061
Iteration: 7, Func. Count: 66, Neg. LLF: 70.38243138595165
Iteration: 8, Func. Count: 74, Neg. LLF: 70.32652615942403
Iteration: 9, Func. Count: 82, Neg. LLF: 70.3232296119996
Iteration: 10, Func. Count: 90, Neg. LLF: 70.32296311196069
Iteration: 11, Func. Count: 98, Neg. LLF: 70.32292123381497
Iteration: 12, Func. Count: 106, Neg. LLF: 70.32291813958275
Iteration: 13, Func. Count: 113, Neg. LLF: 70.3229181395853
Optimization terminated successfully (Exit mode 0)
Current function value: 70.32291813958275
Iterations: 13
Function evaluations: 113
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 75.20897792047187
Iteration: 2, Func. Count: 22, Neg. LLF: 1418.3111330019217
Iteration: 3, Func. Count: 32, Neg. LLF: 113.62479887926301
Iteration: 4, Func. Count: 43, Neg. LLF: 70.63398568575366
Iteration: 5, Func. Count: 52, Neg. LLF: 70.71365267700651
Iteration: 6, Func. Count: 62, Neg. LLF: 71.03372659909897
Iteration: 7, Func. Count: 72, Neg. LLF: 70.32538201150344
Iteration: 8, Func. Count: 81, Neg. LLF: 70.32319130074956
Iteration: 9, Func. Count: 90, Neg. LLF: 70.3229809606482
Iteration: 10, Func. Count: 99, Neg. LLF: 70.3229411734189
Iteration: 11, Func. Count: 108, Neg. LLF: 70.32292342612877
Iteration: 12, Func. Count: 117, Neg. LLF: 70.32291849514307
Iteration: 13, Func. Count: 125, Neg. LLF: 70.32291850718566
Optimization terminated successfully (Exit mode 0)
Current function value: 70.32291849514307
Iterations: 13
Function evaluations: 125
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 30949223.364840787
Iteration: 2, Func. Count: 23, Neg. LLF: 9698.04421065658
Iteration: 3, Func. Count: 35, Neg. LLF: 1173.3533922146637
Iteration: 4, Func. Count: 47, Neg. LLF: 70.79812769579411
Iteration: 5, Func. Count: 57, Neg. LLF: 70.24728781813567
Iteration: 6, Func. Count: 67, Neg. LLF: 71.76145520231714
Iteration: 7, Func. Count: 79, Neg. LLF: 70.20593305146433
Iteration: 8, Func. Count: 89, Neg. LLF: 70.19817661194814
Iteration: 9, Func. Count: 99, Neg. LLF: 70.19446528149639
Iteration: 10, Func. Count: 109, Neg. LLF: 70.18538395106758
Iteration: 11, Func. Count: 119, Neg. LLF: 70.18367256573848
Iteration: 12, Func. Count: 129, Neg. LLF: 70.18355604492822
Iteration: 13, Func. Count: 139, Neg. LLF: 70.18355412533661
Iteration: 14, Func. Count: 149, Neg. LLF: 70.183553696375
Optimization terminated successfully (Exit mode 0)
Current function value: 70.183553696375
Iterations: 14
Function evaluations: 149
Gradient evaluations: 14
Iteration: 1, Func. Count: 12, Neg. LLF: 31216220.96463943
Iteration: 2, Func. Count: 25, Neg. LLF: 349.47674367695674
Iteration: 3, Func. Count: 38, Neg. LLF: 307192.0887213509
Iteration: 4, Func. Count: 51, Neg. LLF: 70.78021074608277
Iteration: 5, Func. Count: 62, Neg. LLF: 70.73916873229668
Iteration: 6, Func. Count: 73, Neg. LLF: 70.78064445827208
Iteration: 7, Func. Count: 85, Neg. LLF: 70.66399143796386
Iteration: 8, Func. Count: 96, Neg. LLF: 70.65899282477797
Iteration: 9, Func. Count: 107, Neg. LLF: 70.65699348178167
Iteration: 10, Func. Count: 118, Neg. LLF: 70.64349908876915
Iteration: 11, Func. Count: 129, Neg. LLF: 70.21997085809437
Iteration: 12, Func. Count: 140, Neg. LLF: 70.20142412826048
Iteration: 13, Func. Count: 151, Neg. LLF: 72.74325656880646
Iteration: 14, Func. Count: 165, Neg. LLF: 70.19432437524111
Iteration: 15, Func. Count: 176, Neg. LLF: 70.19219485685936
Iteration: 16, Func. Count: 187, Neg. LLF: 70.1900738048267
Iteration: 17, Func. Count: 198, Neg. LLF: 70.18658443955616
Iteration: 18, Func. Count: 209, Neg. LLF: 70.1843505538275
Iteration: 19, Func. Count: 220, Neg. LLF: 70.18361902704481
Iteration: 20, Func. Count: 231, Neg. LLF: 70.1835545526866
Iteration: 21, Func. Count: 242, Neg. LLF: 70.18355291860846
Iteration: 22, Func. Count: 252, Neg. LLF: 70.18355296752443
Optimization terminated successfully (Exit mode 0)
Current function value: 70.18355291860846
Iterations: 22
Function evaluations: 252
Gradient evaluations: 22
Iteration: 1, Func. Count: 13, Neg. LLF: 30729949.1890682
Iteration: 2, Func. Count: 27, Neg. LLF: 920.1832023776416
Iteration: 3, Func. Count: 41, Neg. LLF: 1812845.898249256
Iteration: 4, Func. Count: 55, Neg. LLF: 70.3421814887016
Iteration: 5, Func. Count: 67, Neg. LLF: 69.75092880936498
Iteration: 6, Func. Count: 79, Neg. LLF: 69.96581722658938
Iteration: 7, Func. Count: 92, Neg. LLF: 69.63029199231578
Iteration: 8, Func. Count: 104, Neg. LLF: 69.62250972233043
Iteration: 9, Func. Count: 116, Neg. LLF: 69.61710398663334
Iteration: 10, Func. Count: 128, Neg. LLF: 69.61664638223736
Iteration: 11, Func. Count: 140, Neg. LLF: 69.61659219529149
Iteration: 12, Func. Count: 152, Neg. LLF: 69.6165865935108
Iteration: 13, Func. Count: 163, Neg. LLF: 69.6165865937623
Optimization terminated successfully (Exit mode 0)
Current function value: 69.6165865935108
Iterations: 13
Function evaluations: 163
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 141.8677983959007
Iteration: 2, Func. Count: 22, Neg. LLF: 124.54273630438477
Iteration: 3, Func. Count: 33, Neg. LLF: 86.34105108353481
Iteration: 4, Func. Count: 43, Neg. LLF: 2897325.5267094085
Iteration: 5, Func. Count: 53, Neg. LLF: 101.47734652880516
Iteration: 6, Func. Count: 63, Neg. LLF: 70.66103832486039
Iteration: 7, Func. Count: 72, Neg. LLF: 70.17054726161716
Iteration: 8, Func. Count: 81, Neg. LLF: 70.1138347216071
Iteration: 9, Func. Count: 90, Neg. LLF: 70.15302712116495
Iteration: 10, Func. Count: 100, Neg. LLF: 70.10064335506867
Iteration: 11, Func. Count: 110, Neg. LLF: 70.08570976264663
Iteration: 12, Func. Count: 120, Neg. LLF: 70.08455851221527
Iteration: 13, Func. Count: 129, Neg. LLF: 70.08438837523353
Iteration: 14, Func. Count: 138, Neg. LLF: 70.08438750569454
Optimization terminated successfully (Exit mode 0)
Current function value: 70.08438750569454
Iterations: 14
Function evaluations: 138
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 74.88472324623388
Iteration: 2, Func. Count: 24, Neg. LLF: 667200.9879023943
Iteration: 3, Func. Count: 35, Neg. LLF: 2440.0241390123233
Iteration: 4, Func. Count: 47, Neg. LLF: 71.05765718718295
Iteration: 5, Func. Count: 58, Neg. LLF: 70.56077120771246
Iteration: 6, Func. Count: 68, Neg. LLF: 70.89980989679373
Iteration: 7, Func. Count: 79, Neg. LLF: 70.26046003417093
Iteration: 8, Func. Count: 89, Neg. LLF: 70.11390915344735
Iteration: 9, Func. Count: 99, Neg. LLF: 70.10105197216072
Iteration: 10, Func. Count: 109, Neg. LLF: 70.08904732718578
Iteration: 11, Func. Count: 119, Neg. LLF: 70.09020938929078
Iteration: 12, Func. Count: 130, Neg. LLF: 70.08534239458658
Iteration: 13, Func. Count: 140, Neg. LLF: 70.08473924248361
Iteration: 14, Func. Count: 150, Neg. LLF: 70.084535754463
Iteration: 15, Func. Count: 160, Neg. LLF: 70.08440285534921
Iteration: 16, Func. Count: 170, Neg. LLF: 70.08438823520606
Iteration: 17, Func. Count: 180, Neg. LLF: 70.08438731132726
Optimization terminated successfully (Exit mode 0)
Current function value: 70.08438731132726
Iterations: 17
Function evaluations: 180
Gradient evaluations: 17
Iteration: 1, Func. Count: 12, Neg. LLF: 30233584.78794839
Iteration: 2, Func. Count: 25, Neg. LLF: 1481.0625469254262
Iteration: 3, Func. Count: 38, Neg. LLF: 418.75646252640905
Iteration: 4, Func. Count: 51, Neg. LLF: 70.79313690036754
Iteration: 5, Func. Count: 62, Neg. LLF: 70.24495207340532
Iteration: 6, Func. Count: 73, Neg. LLF: 72.33028020270281
Iteration: 7, Func. Count: 86, Neg. LLF: 70.12010948359335
Iteration: 8, Func. Count: 97, Neg. LLF: 70.11149782234035
Iteration: 9, Func. Count: 108, Neg. LLF: 70.09963669056508
Iteration: 10, Func. Count: 119, Neg. LLF: 70.08133688717294
Iteration: 11, Func. Count: 130, Neg. LLF: 70.07885044181485
Iteration: 12, Func. Count: 141, Neg. LLF: 70.07858974202883
Iteration: 13, Func. Count: 152, Neg. LLF: 70.07858650501217
Iteration: 14, Func. Count: 162, Neg. LLF: 70.07858650488052
Optimization terminated successfully (Exit mode 0)
Current function value: 70.07858650501217
Iterations: 14
Function evaluations: 162
Gradient evaluations: 14
Iteration: 1, Func. Count: 13, Neg. LLF: 30386223.925825056
Iteration: 2, Func. Count: 27, Neg. LLF: 19303.398746022278
Iteration: 3, Func. Count: 41, Neg. LLF: 21998.60832046759
Iteration: 4, Func. Count: 55, Neg. LLF: 70.77546005711532
Iteration: 5, Func. Count: 67, Neg. LLF: 70.74306327449541
Iteration: 6, Func. Count: 79, Neg. LLF: 70.78034102443736
Iteration: 7, Func. Count: 92, Neg. LLF: 70.66301253994797
Iteration: 8, Func. Count: 104, Neg. LLF: 70.65900194070579
Iteration: 9, Func. Count: 116, Neg. LLF: 70.6571827840831
Iteration: 10, Func. Count: 128, Neg. LLF: 70.6381048434503
Iteration: 11, Func. Count: 140, Neg. LLF: 70.21706166015503
Iteration: 12, Func. Count: 152, Neg. LLF: 70.20103956152018
Iteration: 13, Func. Count: 164, Neg. LLF: 72.80994331465673
Iteration: 14, Func. Count: 179, Neg. LLF: 70.17918889499246
Iteration: 15, Func. Count: 191, Neg. LLF: 70.15604692871588
Iteration: 16, Func. Count: 203, Neg. LLF: 70.10895392397464
Iteration: 17, Func. Count: 215, Neg. LLF: 70.08536025044957
Iteration: 18, Func. Count: 227, Neg. LLF: 70.07936171414083
Iteration: 19, Func. Count: 239, Neg. LLF: 70.07864409580026
Iteration: 20, Func. Count: 251, Neg. LLF: 70.0785888959138
Iteration: 21, Func. Count: 263, Neg. LLF: 70.07858660135005
Iteration: 22, Func. Count: 274, Neg. LLF: 70.07858669384805
Optimization terminated successfully (Exit mode 0)
Current function value: 70.07858660135005
Iterations: 22
Function evaluations: 274
Gradient evaluations: 22
Iteration: 1, Func. Count: 14, Neg. LLF: 29995937.29583498
Iteration: 2, Func. Count: 29, Neg. LLF: 2568016.371894618
Iteration: 3, Func. Count: 44, Neg. LLF: 1157876.8387071684
Iteration: 4, Func. Count: 59, Neg. LLF: 70.33085876480233
Iteration: 5, Func. Count: 72, Neg. LLF: 69.76503575770317
Iteration: 6, Func. Count: 85, Neg. LLF: 69.39545767095272
Iteration: 7, Func. Count: 98, Neg. LLF: 92.85036359710563
Iteration: 8, Func. Count: 113, Neg. LLF: 69.90263867325001
Iteration: 9, Func. Count: 127, Neg. LLF: 68.90858732007557
Iteration: 10, Func. Count: 140, Neg. LLF: 68.84781219463127
Iteration: 11, Func. Count: 153, Neg. LLF: 68.83261866713664
Iteration: 12, Func. Count: 166, Neg. LLF: 68.82896191017565
Iteration: 13, Func. Count: 179, Neg. LLF: 68.81681073298398
Iteration: 14, Func. Count: 192, Neg. LLF: 68.79275084968768
Iteration: 15, Func. Count: 205, Neg. LLF: 68.78626662593337
Iteration: 16, Func. Count: 218, Neg. LLF: 68.7829130136157
Iteration: 17, Func. Count: 231, Neg. LLF: 68.78101378748674
Iteration: 18, Func. Count: 244, Neg. LLF: 68.78039087352347
Iteration: 19, Func. Count: 257, Neg. LLF: 68.78026162687226
Iteration: 20, Func. Count: 270, Neg. LLF: 68.78022731409315
Iteration: 21, Func. Count: 283, Neg. LLF: 68.7802243167547
Iteration: 22, Func. Count: 295, Neg. LLF: 68.78022430074873
Optimization terminated successfully (Exit mode 0)
Current function value: 68.7802243167547
Iterations: 22
Function evaluations: 295
Gradient evaluations: 22
Iteration: 1, Func. Count: 11, Neg. LLF: 136.80034001508312
Iteration: 2, Func. Count: 24, Neg. LLF: 124.64097928603634
Iteration: 3, Func. Count: 36, Neg. LLF: 90.85916024791665
Iteration: 4, Func. Count: 47, Neg. LLF: 522.0837480991796
Iteration: 5, Func. Count: 58, Neg. LLF: 328.2439481849532
Iteration: 6, Func. Count: 69, Neg. LLF: 71.20999651123972
Iteration: 7, Func. Count: 80, Neg. LLF: 70.10420650059578
Iteration: 8, Func. Count: 90, Neg. LLF: 71.31231388405378
Iteration: 9, Func. Count: 101, Neg. LLF: 70.10447927023353
Iteration: 10, Func. Count: 112, Neg. LLF: 70.0855348461304
Iteration: 11, Func. Count: 122, Neg. LLF: 70.08441178684737
Iteration: 12, Func. Count: 132, Neg. LLF: 70.08439502506346
Iteration: 13, Func. Count: 142, Neg. LLF: 70.08438730173506
Iteration: 14, Func. Count: 151, Neg. LLF: 70.0843873944332
Optimization terminated successfully (Exit mode 0)
Current function value: 70.08438730173506
Iterations: 14
Function evaluations: 151
Gradient evaluations: 14
Iteration: 1, Func. Count: 12, Neg. LLF: 75.26478199252097
Iteration: 2, Func. Count: 26, Neg. LLF: 18772.293965665995
Iteration: 3, Func. Count: 38, Neg. LLF: 666.499166838082
Iteration: 4, Func. Count: 51, Neg. LLF: 70.98202845634994
Iteration: 5, Func. Count: 63, Neg. LLF: 70.5112949936959
Iteration: 6, Func. Count: 74, Neg. LLF: 70.89425072879351
Iteration: 7, Func. Count: 86, Neg. LLF: 70.25631565561656
Iteration: 8, Func. Count: 97, Neg. LLF: 70.12136782013832
Iteration: 9, Func. Count: 108, Neg. LLF: 70.09769352333572
Iteration: 10, Func. Count: 119, Neg. LLF: 70.09493362398989
Iteration: 11, Func. Count: 130, Neg. LLF: 70.08799172451693
Iteration: 12, Func. Count: 141, Neg. LLF: 70.08546792847577
Iteration: 13, Func. Count: 152, Neg. LLF: 70.08499126124553
Iteration: 14, Func. Count: 163, Neg. LLF: 70.08451342105597
Iteration: 15, Func. Count: 174, Neg. LLF: 70.08441621098328
Iteration: 16, Func. Count: 185, Neg. LLF: 70.08438790496348
Iteration: 17, Func. Count: 196, Neg. LLF: 70.08438731611504
Optimization terminated successfully (Exit mode 0)
Current function value: 70.08438731611504
Iterations: 17
Function evaluations: 196
Gradient evaluations: 17
Iteration: 1, Func. Count: 13, Neg. LLF: 29941302.20417375
Iteration: 2, Func. Count: 27, Neg. LLF: 281.0445924861638
Iteration: 3, Func. Count: 41, Neg. LLF: 274.42428481266364
Iteration: 4, Func. Count: 55, Neg. LLF: 70.78919700209846
Iteration: 5, Func. Count: 67, Neg. LLF: 70.24498512749452
Iteration: 6, Func. Count: 79, Neg. LLF: 72.6594030066772
Iteration: 7, Func. Count: 93, Neg. LLF: 70.11479268727754
Iteration: 8, Func. Count: 105, Neg. LLF: 70.107398482272
Iteration: 9, Func. Count: 117, Neg. LLF: 70.09713163316862
Iteration: 10, Func. Count: 129, Neg. LLF: 70.08336973928675
Iteration: 11, Func. Count: 141, Neg. LLF: 70.07922249265982
Iteration: 12, Func. Count: 153, Neg. LLF: 70.07860102571715
Iteration: 13, Func. Count: 165, Neg. LLF: 70.07858675903628
Iteration: 14, Func. Count: 176, Neg. LLF: 70.07858675860258
Optimization terminated successfully (Exit mode 0)
Current function value: 70.07858675903628
Iterations: 14
Function evaluations: 176
Gradient evaluations: 14
Iteration: 1, Func. Count: 14, Neg. LLF: 30140587.74151403
Iteration: 2, Func. Count: 29, Neg. LLF: 2616729.667054343
Iteration: 3, Func. Count: 44, Neg. LLF: 9974.50353422888
Iteration: 4, Func. Count: 59, Neg. LLF: 70.77424204777773
Iteration: 5, Func. Count: 72, Neg. LLF: 70.74084588575278
Iteration: 6, Func. Count: 85, Neg. LLF: 70.77746081829204
Iteration: 7, Func. Count: 99, Neg. LLF: 70.66264053138418
Iteration: 8, Func. Count: 112, Neg. LLF: 70.65912673244047
Iteration: 9, Func. Count: 125, Neg. LLF: 70.65729434780496
Iteration: 10, Func. Count: 138, Neg. LLF: 70.63822274823521
Iteration: 11, Func. Count: 151, Neg. LLF: 70.21750436338708
Iteration: 12, Func. Count: 164, Neg. LLF: 70.20256700688749
Iteration: 13, Func. Count: 177, Neg. LLF: 73.2464599242252
Iteration: 14, Func. Count: 193, Neg. LLF: 70.1833191022056
Iteration: 15, Func. Count: 206, Neg. LLF: 70.16237185395362
Iteration: 16, Func. Count: 219, Neg. LLF: 70.1158024814759
Iteration: 17, Func. Count: 232, Neg. LLF: 70.0891866012246
Iteration: 18, Func. Count: 245, Neg. LLF: 70.08019151700137
Iteration: 19, Func. Count: 258, Neg. LLF: 70.07870131370802
Iteration: 20, Func. Count: 271, Neg. LLF: 70.07858973008945
Iteration: 21, Func. Count: 284, Neg. LLF: 70.07858660769062
Iteration: 22, Func. Count: 296, Neg. LLF: 70.07858670016772
Optimization terminated successfully (Exit mode 0)
Current function value: 70.07858660769062
Iterations: 22
Function evaluations: 296
Gradient evaluations: 22
Iteration: 1, Func. Count: 15, Neg. LLF: 29693389.747831322
Iteration: 2, Func. Count: 31, Neg. LLF: 201.9853033702619
Iteration: 3, Func. Count: 47, Neg. LLF: 1832804.9845026075
Iteration: 4, Func. Count: 63, Neg. LLF: 70.33356051778702
Iteration: 5, Func. Count: 77, Neg. LLF: 69.72789033563565
Iteration: 6, Func. Count: 91, Neg. LLF: 69.28983287203573
Iteration: 7, Func. Count: 105, Neg. LLF: 94.01299196738317
Iteration: 8, Func. Count: 121, Neg. LLF: 69.40505146564331
Iteration: 9, Func. Count: 136, Neg. LLF: 68.90398366698828
Iteration: 10, Func. Count: 150, Neg. LLF: 68.8446957759568
Iteration: 11, Func. Count: 164, Neg. LLF: 68.83628516740907
Iteration: 12, Func. Count: 178, Neg. LLF: 68.83236357738964
Iteration: 13, Func. Count: 192, Neg. LLF: 68.8193362503619
Iteration: 14, Func. Count: 206, Neg. LLF: 68.79254602305346
Iteration: 15, Func. Count: 220, Neg. LLF: 68.78738656360878
Iteration: 16, Func. Count: 234, Neg. LLF: 68.78341790033687
Iteration: 17, Func. Count: 248, Neg. LLF: 68.7805707520353
Iteration: 18, Func. Count: 262, Neg. LLF: 68.7802415286556
Iteration: 19, Func. Count: 276, Neg. LLF: 68.78022458112845
Iteration: 20, Func. Count: 289, Neg. LLF: 68.78022456510814
Optimization terminated successfully (Exit mode 0)
Current function value: 68.78022458112845
Iterations: 20
Function evaluations: 289
Gradient evaluations: 20
Iteration: 1, Func. Count: 8, Neg. LLF: 140.93355262412945
Iteration: 2, Func. Count: 19, Neg. LLF: 137.57922165551548
Iteration: 3, Func. Count: 28, Neg. LLF: 1552.7616344896778
Iteration: 4, Func. Count: 36, Neg. LLF: 70.59453602442504
Iteration: 5, Func. Count: 43, Neg. LLF: 70.58661706366884
Iteration: 6, Func. Count: 50, Neg. LLF: 70.58912410614741
Iteration: 7, Func. Count: 58, Neg. LLF: 70.57930043969152
Iteration: 8, Func. Count: 65, Neg. LLF: 70.57916782713906
Iteration: 9, Func. Count: 72, Neg. LLF: 70.5791430833434
Iteration: 10, Func. Count: 79, Neg. LLF: 70.57913623815409
Iteration: 11, Func. Count: 85, Neg. LLF: 70.57913632497453
Optimization terminated successfully (Exit mode 0)
Current function value: 70.57913623815409
Iterations: 11
Function evaluations: 85
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 25766339.124852616
Iteration: 2, Func. Count: 19, Neg. LLF: 72.4082649424246
Iteration: 3, Func. Count: 28, Neg. LLF: 70.67101354033989
Iteration: 4, Func. Count: 36, Neg. LLF: 70.76421851268832
Iteration: 5, Func. Count: 45, Neg. LLF: 70.66840416642766
Iteration: 6, Func. Count: 53, Neg. LLF: 70.66746490592332
Iteration: 7, Func. Count: 60, Neg. LLF: 70.6674649053934
Optimization terminated successfully (Exit mode 0)
Current function value: 70.66746490592332
Iterations: 7
Function evaluations: 60
Gradient evaluations: 7
Iteration: 1, Func. Count: 10, Neg. LLF: 26009790.929973446
Iteration: 2, Func. Count: 21, Neg. LLF: 74.43901423060949
Iteration: 3, Func. Count: 32, Neg. LLF: 70.85879838200498
Iteration: 4, Func. Count: 41, Neg. LLF: 70.75822993892432
Iteration: 5, Func. Count: 50, Neg. LLF: 70.67210553527549
Iteration: 6, Func. Count: 59, Neg. LLF: 70.64828597841404
Iteration: 7, Func. Count: 68, Neg. LLF: 70.64743577582662
Iteration: 8, Func. Count: 77, Neg. LLF: 70.64743495072028
Optimization terminated successfully (Exit mode 0)
Current function value: 70.64743495072028
Iterations: 8
Function evaluations: 77
Gradient evaluations: 8
Iteration: 1, Func. Count: 11, Neg. LLF: 26119265.810898837
Iteration: 2, Func. Count: 23, Neg. LLF: 77.02329148403146
Iteration: 3, Func. Count: 35, Neg. LLF: 70.80835257579113
Iteration: 4, Func. Count: 45, Neg. LLF: 70.67343598553778
Iteration: 5, Func. Count: 55, Neg. LLF: 70.65984161952737
Iteration: 6, Func. Count: 65, Neg. LLF: 70.66878972058619
Iteration: 7, Func. Count: 76, Neg. LLF: 70.84228993885817
Iteration: 8, Func. Count: 87, Neg. LLF: 72.15760136519995
Iteration: 9, Func. Count: 99, Neg. LLF: 70.8278677049128
Iteration: 10, Func. Count: 110, Neg. LLF: 70.67447015120011
Iteration: 11, Func. Count: 121, Neg. LLF: 70.64854302470084
Iteration: 12, Func. Count: 132, Neg. LLF: 70.64691112079917
Iteration: 13, Func. Count: 142, Neg. LLF: 70.64539353725084
Iteration: 14, Func. Count: 152, Neg. LLF: 70.64378116123066
Iteration: 15, Func. Count: 162, Neg. LLF: 70.63709344936248
Iteration: 16, Func. Count: 172, Neg. LLF: 70.63350731697285
Iteration: 17, Func. Count: 182, Neg. LLF: 70.63251553656998
Iteration: 18, Func. Count: 192, Neg. LLF: 70.64877675746689
Iteration: 19, Func. Count: 204, Neg. LLF: 70.63239841985106
Iteration: 20, Func. Count: 214, Neg. LLF: 70.63229097220199
Iteration: 21, Func. Count: 224, Neg. LLF: 70.56148893196237
Iteration: 22, Func. Count: 234, Neg. LLF: 70.26854903366362
Iteration: 23, Func. Count: 244, Neg. LLF: 81.12244631510174
Iteration: 24, Func. Count: 256, Neg. LLF: 217.41407511004184
Iteration: 25, Func. Count: 268, Neg. LLF: 23890683.906445146
Iteration: 26, Func. Count: 281, Neg. LLF: 70.8783736542721
Iteration: 27, Func. Count: 293, Neg. LLF: 70.15763371937014
Iteration: 28, Func. Count: 303, Neg. LLF: 70.15561676105649
Iteration: 29, Func. Count: 313, Neg. LLF: 70.1556123757624
Iteration: 30, Func. Count: 322, Neg. LLF: 70.15561237576446
Optimization terminated successfully (Exit mode 0)
Current function value: 70.1556123757624
Iterations: 31
Function evaluations: 322
Gradient evaluations: 30
Iteration: 1, Func. Count: 12, Neg. LLF: 25986175.92702997
Iteration: 2, Func. Count: 25, Neg. LLF: 120.88975220515705
Iteration: 3, Func. Count: 38, Neg. LLF: 70.66110180270665
Iteration: 4, Func. Count: 49, Neg. LLF: 70.46555797867417
Iteration: 5, Func. Count: 60, Neg. LLF: 70.43965708082828
Iteration: 6, Func. Count: 72, Neg. LLF: 70.98124371171313
Iteration: 7, Func. Count: 84, Neg. LLF: 70.35118330265061
Iteration: 8, Func. Count: 95, Neg. LLF: 70.34266843910265
Iteration: 9, Func. Count: 106, Neg. LLF: 70.33903020308095
Iteration: 10, Func. Count: 117, Neg. LLF: 70.33861339756332
Iteration: 11, Func. Count: 128, Neg. LLF: 70.33860762109754
Iteration: 12, Func. Count: 138, Neg. LLF: 70.33860762120155
Optimization terminated successfully (Exit mode 0)
Current function value: 70.33860762109754
Iterations: 12
Function evaluations: 138
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 139.50204616430344
Iteration: 2, Func. Count: 21, Neg. LLF: 134.96054513925384
Iteration: 3, Func. Count: 31, Neg. LLF: 1022.1774411334338
Iteration: 4, Func. Count: 40, Neg. LLF: 72.81746685684806
Iteration: 5, Func. Count: 49, Neg. LLF: 70.32784840851086
Iteration: 6, Func. Count: 57, Neg. LLF: 70.32570098900445
Iteration: 7, Func. Count: 65, Neg. LLF: 70.32312447843543
Iteration: 8, Func. Count: 73, Neg. LLF: 70.32304065068082
Iteration: 9, Func. Count: 81, Neg. LLF: 70.32300741934942
Iteration: 10, Func. Count: 89, Neg. LLF: 70.32300658744623
Optimization terminated successfully (Exit mode 0)
Current function value: 70.32300658744623
Iterations: 10
Function evaluations: 89
Gradient evaluations: 10
Iteration: 1, Func. Count: 10, Neg. LLF: 75.53051457844866
Iteration: 2, Func. Count: 22, Neg. LLF: 587.5682281599813
Iteration: 3, Func. Count: 32, Neg. LLF: 2223.8448267970302
Iteration: 4, Func. Count: 42, Neg. LLF: 70.79822872777402
Iteration: 5, Func. Count: 51, Neg. LLF: 70.4913291515661
Iteration: 6, Func. Count: 60, Neg. LLF: 70.34873496020992
Iteration: 7, Func. Count: 69, Neg. LLF: 70.3346733636733
Iteration: 8, Func. Count: 78, Neg. LLF: 70.32760500509099
Iteration: 9, Func. Count: 87, Neg. LLF: 70.32443385808074
Iteration: 10, Func. Count: 96, Neg. LLF: 70.32360713096391
Iteration: 11, Func. Count: 105, Neg. LLF: 70.32302543569874
Iteration: 12, Func. Count: 114, Neg. LLF: 70.32300715196132
Iteration: 13, Func. Count: 123, Neg. LLF: 70.3230065618147
Optimization terminated successfully (Exit mode 0)
Current function value: 70.3230065618147
Iterations: 13
Function evaluations: 123
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 30210163.92210784
Iteration: 2, Func. Count: 23, Neg. LLF: 90.13767785611026
Iteration: 3, Func. Count: 35, Neg. LLF: 92.26434350571296
Iteration: 4, Func. Count: 47, Neg. LLF: 70.84806901237708
Iteration: 5, Func. Count: 57, Neg. LLF: 70.69991616989721
Iteration: 6, Func. Count: 67, Neg. LLF: 70.67431830518443
Iteration: 7, Func. Count: 77, Neg. LLF: 70.6741096175884
Iteration: 8, Func. Count: 87, Neg. LLF: 70.6739992421049
Iteration: 9, Func. Count: 97, Neg. LLF: 70.67337611347152
Iteration: 10, Func. Count: 107, Neg. LLF: 70.67249020778958
Iteration: 11, Func. Count: 117, Neg. LLF: 70.66932153677584
Iteration: 12, Func. Count: 127, Neg. LLF: 70.66752076525478
Iteration: 13, Func. Count: 137, Neg. LLF: 70.66746601475685
Iteration: 14, Func. Count: 147, Neg. LLF: 70.66746496140748
Iteration: 15, Func. Count: 156, Neg. LLF: 70.66746496080876
Optimization terminated successfully (Exit mode 0)
Current function value: 70.66746496140748
Iterations: 15
Function evaluations: 156
Gradient evaluations: 15
Iteration: 1, Func. Count: 12, Neg. LLF: 30170433.604484364
Iteration: 2, Func. Count: 25, Neg. LLF: 94.3865361533783
Iteration: 3, Func. Count: 38, Neg. LLF: 1013.5238950369977
Iteration: 4, Func. Count: 51, Neg. LLF: 70.79302241954427
Iteration: 5, Func. Count: 62, Neg. LLF: 70.87610184258561
Iteration: 6, Func. Count: 74, Neg. LLF: 70.66801379750883
Iteration: 7, Func. Count: 85, Neg. LLF: 70.66420067857567
Iteration: 8, Func. Count: 96, Neg. LLF: 70.65779620093589
Iteration: 9, Func. Count: 107, Neg. LLF: 70.65816588628036
Iteration: 10, Func. Count: 119, Neg. LLF: 70.65739424146713
Iteration: 11, Func. Count: 130, Neg. LLF: 70.6569855072114
Iteration: 12, Func. Count: 141, Neg. LLF: 70.70887985982984
Iteration: 13, Func. Count: 153, Neg. LLF: 70.65645218403371
Iteration: 14, Func. Count: 164, Neg. LLF: 70.65620221583963
Iteration: 15, Func. Count: 175, Neg. LLF: 70.65614248949164
Iteration: 16, Func. Count: 186, Neg. LLF: 70.65612707718095
Iteration: 17, Func. Count: 197, Neg. LLF: 70.65612630680525
Optimization terminated successfully (Exit mode 0)
Current function value: 70.65612630680525
Iterations: 17
Function evaluations: 197
Gradient evaluations: 17
Iteration: 1, Func. Count: 13, Neg. LLF: 29945942.93676604
Iteration: 2, Func. Count: 27, Neg. LLF: 159.01542860784383
Iteration: 3, Func. Count: 41, Neg. LLF: 1496.2481136858223
Iteration: 4, Func. Count: 55, Neg. LLF: 71.46427774430092
Iteration: 5, Func. Count: 68, Neg. LLF: 70.34591992364702
Iteration: 6, Func. Count: 80, Neg. LLF: 70.58165742495537
Iteration: 7, Func. Count: 93, Neg. LLF: 70.3312654976188
Iteration: 8, Func. Count: 105, Neg. LLF: 70.33035117520225
Iteration: 9, Func. Count: 117, Neg. LLF: 70.33013053066217
Iteration: 10, Func. Count: 129, Neg. LLF: 70.3301024501522
Iteration: 11, Func. Count: 141, Neg. LLF: 70.33010127095262
Iteration: 12, Func. Count: 152, Neg. LLF: 70.33010127090341
Optimization terminated successfully (Exit mode 0)
Current function value: 70.33010127095262
Iterations: 12
Function evaluations: 152
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 159.5907916224821
Iteration: 2, Func. Count: 22, Neg. LLF: 134.40200080503146
Iteration: 3, Func. Count: 33, Neg. LLF: 85.52612600302184
Iteration: 4, Func. Count: 43, Neg. LLF: 77.47017554368921
Iteration: 5, Func. Count: 53, Neg. LLF: 70.92706703712986
Iteration: 6, Func. Count: 62, Neg. LLF: 71.02463735713056
Iteration: 7, Func. Count: 72, Neg. LLF: 72.21822731497703
Iteration: 8, Func. Count: 82, Neg. LLF: 70.32800051586798
Iteration: 9, Func. Count: 91, Neg. LLF: 70.32396904149932
Iteration: 10, Func. Count: 100, Neg. LLF: 70.32321757580276
Iteration: 11, Func. Count: 109, Neg. LLF: 70.32298928322408
Iteration: 12, Func. Count: 118, Neg. LLF: 70.32291923001331
Iteration: 13, Func. Count: 127, Neg. LLF: 70.32291809927686
Iteration: 14, Func. Count: 135, Neg. LLF: 70.3229180992831
Optimization terminated successfully (Exit mode 0)
Current function value: 70.32291809927686
Iterations: 14
Function evaluations: 135
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 75.55316104587469
Iteration: 2, Func. Count: 24, Neg. LLF: 923.923269464284
Iteration: 3, Func. Count: 35, Neg. LLF: 213.2300289803038
Iteration: 4, Func. Count: 47, Neg. LLF: 70.6268100938746
Iteration: 5, Func. Count: 57, Neg. LLF: 70.60583079230625
Iteration: 6, Func. Count: 68, Neg. LLF: 71.04652852957541
Iteration: 7, Func. Count: 79, Neg. LLF: 70.32531398493208
Iteration: 8, Func. Count: 89, Neg. LLF: 70.32315575466947
Iteration: 9, Func. Count: 99, Neg. LLF: 70.3229855439548
Iteration: 10, Func. Count: 109, Neg. LLF: 70.32294433728788
Iteration: 11, Func. Count: 119, Neg. LLF: 70.32292376423007
Iteration: 12, Func. Count: 129, Neg. LLF: 70.32291848856696
Iteration: 13, Func. Count: 138, Neg. LLF: 70.32291850061993
Optimization terminated successfully (Exit mode 0)
Current function value: 70.32291848856696
Iterations: 13
Function evaluations: 138
Gradient evaluations: 13
Iteration: 1, Func. Count: 12, Neg. LLF: 31044912.54938454
Iteration: 2, Func. Count: 25, Neg. LLF: 2519.494222922249
Iteration: 3, Func. Count: 38, Neg. LLF: 1207.9673140781535
Iteration: 4, Func. Count: 51, Neg. LLF: 70.79539108926367
Iteration: 5, Func. Count: 62, Neg. LLF: 70.24910769105767
Iteration: 6, Func. Count: 73, Neg. LLF: 72.13148562285565
Iteration: 7, Func. Count: 86, Neg. LLF: 70.20861010504008
Iteration: 8, Func. Count: 97, Neg. LLF: 70.19881350063854
Iteration: 9, Func. Count: 108, Neg. LLF: 70.19506046660935
Iteration: 10, Func. Count: 119, Neg. LLF: 70.18537286031244
Iteration: 11, Func. Count: 130, Neg. LLF: 70.18368431067935
Iteration: 12, Func. Count: 141, Neg. LLF: 70.18355560169377
Iteration: 13, Func. Count: 152, Neg. LLF: 70.18355292941924
Iteration: 14, Func. Count: 162, Neg. LLF: 70.18355292930079
Optimization terminated successfully (Exit mode 0)
Current function value: 70.18355292941924
Iterations: 14
Function evaluations: 162
Gradient evaluations: 14
Iteration: 1, Func. Count: 13, Neg. LLF: 31306596.790716983
Iteration: 2, Func. Count: 27, Neg. LLF: 287.2836020953164
Iteration: 3, Func. Count: 41, Neg. LLF: 380570.28725385165
Iteration: 4, Func. Count: 55, Neg. LLF: 70.77859903392374
Iteration: 5, Func. Count: 67, Neg. LLF: 70.7304089568795
Iteration: 6, Func. Count: 79, Neg. LLF: 70.77346091410536
Iteration: 7, Func. Count: 92, Neg. LLF: 70.6615375740736
Iteration: 8, Func. Count: 104, Neg. LLF: 70.65754991519441
Iteration: 9, Func. Count: 116, Neg. LLF: 70.65481741654807
Iteration: 10, Func. Count: 128, Neg. LLF: 70.62871905734484
Iteration: 11, Func. Count: 140, Neg. LLF: 70.22290530778133
Iteration: 12, Func. Count: 152, Neg. LLF: 70.56864562628559
Iteration: 13, Func. Count: 166, Neg. LLF: 70.32032850093533
Iteration: 14, Func. Count: 179, Neg. LLF: 70.18758569139318
Iteration: 15, Func. Count: 191, Neg. LLF: 70.18372138823354
Iteration: 16, Func. Count: 203, Neg. LLF: 70.1835660917606
Iteration: 17, Func. Count: 215, Neg. LLF: 70.18355446180774
Iteration: 18, Func. Count: 227, Neg. LLF: 70.18355297155846
Iteration: 19, Func. Count: 238, Neg. LLF: 70.18355302049527
Optimization terminated successfully (Exit mode 0)
Current function value: 70.18355297155846
Iterations: 19
Function evaluations: 238
Gradient evaluations: 19
Iteration: 1, Func. Count: 14, Neg. LLF: 30955495.263800066
Iteration: 2, Func. Count: 29, Neg. LLF: 434.7501963795508
Iteration: 3, Func. Count: 44, Neg. LLF: 2484897.515076084
Iteration: 4, Func. Count: 59, Neg. LLF: 70.34614556406552
Iteration: 5, Func. Count: 72, Neg. LLF: 69.78094444440661
Iteration: 6, Func. Count: 85, Neg. LLF: 69.95996926826354
Iteration: 7, Func. Count: 99, Neg. LLF: 69.63249876363538
Iteration: 8, Func. Count: 112, Neg. LLF: 69.62119501598589
Iteration: 9, Func. Count: 125, Neg. LLF: 69.61694710888624
Iteration: 10, Func. Count: 138, Neg. LLF: 69.61663827116583
Iteration: 11, Func. Count: 151, Neg. LLF: 69.61659039212216
Iteration: 12, Func. Count: 164, Neg. LLF: 69.61658631600547
Iteration: 13, Func. Count: 176, Neg. LLF: 69.61658631616828
Optimization terminated successfully (Exit mode 0)
Current function value: 69.61658631600547
Iterations: 13
Function evaluations: 176
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 150.24561410519436
Iteration: 2, Func. Count: 24, Neg. LLF: 126.83638618244144
Iteration: 3, Func. Count: 36, Neg. LLF: 93.09970237124618
Iteration: 4, Func. Count: 47, Neg. LLF: 247.45238556783423
Iteration: 5, Func. Count: 58, Neg. LLF: 93.41257673692556
Iteration: 6, Func. Count: 69, Neg. LLF: 70.8575072542521
Iteration: 7, Func. Count: 80, Neg. LLF: 70.09131884749956
Iteration: 8, Func. Count: 90, Neg. LLF: 70.17601065546687
Iteration: 9, Func. Count: 101, Neg. LLF: 70.08776297481043
Iteration: 10, Func. Count: 111, Neg. LLF: 70.08468068375737
Iteration: 11, Func. Count: 121, Neg. LLF: 70.08441761807741
Iteration: 12, Func. Count: 131, Neg. LLF: 70.08438766501816
Iteration: 13, Func. Count: 140, Neg. LLF: 70.08438766502553
Optimization terminated successfully (Exit mode 0)
Current function value: 70.08438766501816
Iterations: 13
Function evaluations: 140
Gradient evaluations: 13
Iteration: 1, Func. Count: 12, Neg. LLF: 75.28008635707116
Iteration: 2, Func. Count: 26, Neg. LLF: 109306.06276803112
Iteration: 3, Func. Count: 38, Neg. LLF: 3369.074991873002
Iteration: 4, Func. Count: 51, Neg. LLF: 71.07022650026678
Iteration: 5, Func. Count: 63, Neg. LLF: 70.51193052036254
Iteration: 6, Func. Count: 74, Neg. LLF: 70.91400697893104
Iteration: 7, Func. Count: 86, Neg. LLF: 70.24331032886207
Iteration: 8, Func. Count: 97, Neg. LLF: 70.12293574185324
Iteration: 9, Func. Count: 108, Neg. LLF: 70.0990932446279
Iteration: 10, Func. Count: 119, Neg. LLF: 70.1077196327682
Iteration: 11, Func. Count: 131, Neg. LLF: 70.08690981685572
Iteration: 12, Func. Count: 142, Neg. LLF: 70.08549714994084
Iteration: 13, Func. Count: 153, Neg. LLF: 70.08483385861373
Iteration: 14, Func. Count: 164, Neg. LLF: 70.08458449970189
Iteration: 15, Func. Count: 175, Neg. LLF: 70.08439947062955
Iteration: 16, Func. Count: 186, Neg. LLF: 70.08438777007542
Iteration: 17, Func. Count: 196, Neg. LLF: 70.08438782356893
Optimization terminated successfully (Exit mode 0)
Current function value: 70.08438777007542
Iterations: 17
Function evaluations: 196
Gradient evaluations: 17
Iteration: 1, Func. Count: 13, Neg. LLF: 30329144.393882
Iteration: 2, Func. Count: 27, Neg. LLF: 2516417.852663494
Iteration: 3, Func. Count: 41, Neg. LLF: 432.53450903260483
Iteration: 4, Func. Count: 55, Neg. LLF: 70.78989543243792
Iteration: 5, Func. Count: 67, Neg. LLF: 70.24685401157834
Iteration: 6, Func. Count: 79, Neg. LLF: 72.70304120938395
Iteration: 7, Func. Count: 93, Neg. LLF: 70.12126885620924
Iteration: 8, Func. Count: 105, Neg. LLF: 70.11300507464678
Iteration: 9, Func. Count: 117, Neg. LLF: 70.10084303362557
Iteration: 10, Func. Count: 129, Neg. LLF: 70.08602269117021
Iteration: 11, Func. Count: 141, Neg. LLF: 70.07962385992388
Iteration: 12, Func. Count: 153, Neg. LLF: 70.07864121062661
Iteration: 13, Func. Count: 165, Neg. LLF: 70.07858716129743
Iteration: 14, Func. Count: 177, Neg. LLF: 70.69251383065792
Optimization terminated successfully (Exit mode 0)
Current function value: 70.07858685278737
Iterations: 15
Function evaluations: 180
Gradient evaluations: 14
Iteration: 1, Func. Count: 14, Neg. LLF: 30476814.935450993
Iteration: 2, Func. Count: 29, Neg. LLF: 2996.1910613616924
Iteration: 3, Func. Count: 44, Neg. LLF: 25790.846278200963
Iteration: 4, Func. Count: 59, Neg. LLF: 70.77367924829112
Iteration: 5, Func. Count: 72, Neg. LLF: 70.73497022989936
Iteration: 6, Func. Count: 85, Neg. LLF: 70.77333911286463
Iteration: 7, Func. Count: 99, Neg. LLF: 70.66063799036004
Iteration: 8, Func. Count: 112, Neg. LLF: 70.65766131496716
Iteration: 9, Func. Count: 125, Neg. LLF: 70.65517026520277
Iteration: 10, Func. Count: 138, Neg. LLF: 70.61210973552663
Iteration: 11, Func. Count: 151, Neg. LLF: 70.22112552314799
Iteration: 12, Func. Count: 164, Neg. LLF: 71.7562715330118
Iteration: 13, Func. Count: 178, Neg. LLF: 75.01508590919804
Iteration: 14, Func. Count: 194, Neg. LLF: 70.1247046431056
Iteration: 15, Func. Count: 207, Neg. LLF: 70.09584072412378
Iteration: 16, Func. Count: 220, Neg. LLF: 70.0822390236315
Iteration: 17, Func. Count: 233, Neg. LLF: 70.07891507523202
Iteration: 18, Func. Count: 246, Neg. LLF: 70.07864417542747
Iteration: 19, Func. Count: 259, Neg. LLF: 70.07859329503988
Iteration: 20, Func. Count: 272, Neg. LLF: 70.07858701052258
Iteration: 21, Func. Count: 284, Neg. LLF: 70.07858710316097
Optimization terminated successfully (Exit mode 0)
Current function value: 70.07858701052258
Iterations: 21
Function evaluations: 284
Gradient evaluations: 21
Iteration: 1, Func. Count: 15, Neg. LLF: 30213166.621119756
Iteration: 2, Func. Count: 31, Neg. LLF: 57650.83812551433
Iteration: 3, Func. Count: 47, Neg. LLF: 782721.3104861015
Iteration: 4, Func. Count: 63, Neg. LLF: 70.33413468450054
Iteration: 5, Func. Count: 77, Neg. LLF: 69.79829349080958
Iteration: 6, Func. Count: 91, Neg. LLF: 69.41768918203823
Iteration: 7, Func. Count: 105, Neg. LLF: 92.76466043463407
Iteration: 8, Func. Count: 121, Neg. LLF: 70.00100218435219
Iteration: 9, Func. Count: 136, Neg. LLF: 68.90737802235617
Iteration: 10, Func. Count: 150, Neg. LLF: 68.84752334955347
Iteration: 11, Func. Count: 164, Neg. LLF: 68.83189367809223
Iteration: 12, Func. Count: 178, Neg. LLF: 68.82821559593128
Iteration: 13, Func. Count: 192, Neg. LLF: 68.81303570058022
Iteration: 14, Func. Count: 206, Neg. LLF: 68.79151843223403
Iteration: 15, Func. Count: 220, Neg. LLF: 68.78535258268683
Iteration: 16, Func. Count: 234, Neg. LLF: 68.78225842298654
Iteration: 17, Func. Count: 248, Neg. LLF: 68.78077725684723
Iteration: 18, Func. Count: 262, Neg. LLF: 68.78035939106151
Iteration: 19, Func. Count: 276, Neg. LLF: 68.78024784420327
Iteration: 20, Func. Count: 290, Neg. LLF: 68.78022554308312
Iteration: 21, Func. Count: 304, Neg. LLF: 68.7802244417147
Iteration: 22, Func. Count: 317, Neg. LLF: 68.78022442574971
Optimization terminated successfully (Exit mode 0)
Current function value: 68.7802244417147
Iterations: 22
Function evaluations: 317
Gradient evaluations: 22
Iteration: 1, Func. Count: 12, Neg. LLF: 144.97120042963422
Iteration: 2, Func. Count: 26, Neg. LLF: 124.39638456450724
Iteration: 3, Func. Count: 39, Neg. LLF: 104.92767029104668
Iteration: 4, Func. Count: 51, Neg. LLF: 117.54932927201912
Iteration: 5, Func. Count: 63, Neg. LLF: 477.36273897963076
Iteration: 6, Func. Count: 75, Neg. LLF: 34377.02896475251
Iteration: 7, Func. Count: 87, Neg. LLF: 94.15948154866358
Iteration: 8, Func. Count: 99, Neg. LLF: 71.40982432194355
Iteration: 9, Func. Count: 111, Neg. LLF: 70.0637692199351
Iteration: 10, Func. Count: 122, Neg. LLF: 70.61397056880047
Iteration: 11, Func. Count: 134, Neg. LLF: 70.22314640875983
Iteration: 12, Func. Count: 146, Neg. LLF: 70.0036248373167
Iteration: 13, Func. Count: 157, Neg. LLF: 70.00321677287839
Iteration: 14, Func. Count: 168, Neg. LLF: 70.00314887488018
Iteration: 15, Func. Count: 179, Neg. LLF: 70.0031421580492
Iteration: 16, Func. Count: 190, Neg. LLF: 70.0031409848582
Iteration: 17, Func. Count: 200, Neg. LLF: 70.0031408739327
Optimization terminated successfully (Exit mode 0)
Current function value: 70.0031409848582
Iterations: 17
Function evaluations: 200
Gradient evaluations: 17
Iteration: 1, Func. Count: 13, Neg. LLF: 75.71190783075278
Iteration: 2, Func. Count: 28, Neg. LLF: 12768.296496135341
Iteration: 3, Func. Count: 41, Neg. LLF: 5295.175204881504
Iteration: 4, Func. Count: 55, Neg. LLF: 70.96861402067941
Iteration: 5, Func. Count: 68, Neg. LLF: 70.51124246370556
Iteration: 6, Func. Count: 80, Neg. LLF: 73.12228020421016
Iteration: 7, Func. Count: 93, Neg. LLF: 70.23752638035566
Iteration: 8, Func. Count: 105, Neg. LLF: 70.1835180917539
Iteration: 9, Func. Count: 117, Neg. LLF: 70.05427975255097
Iteration: 10, Func. Count: 129, Neg. LLF: 70.17388635956871
Iteration: 11, Func. Count: 142, Neg. LLF: 70.03691409540494
Iteration: 12, Func. Count: 155, Neg. LLF: 70.0111873220317
Iteration: 13, Func. Count: 168, Neg. LLF: 70.00377337761692
Iteration: 14, Func. Count: 180, Neg. LLF: 70.00327308209283
Iteration: 15, Func. Count: 192, Neg. LLF: 70.00315897569395
Iteration: 16, Func. Count: 204, Neg. LLF: 70.0031522693784
Iteration: 17, Func. Count: 216, Neg. LLF: 70.00314363433914
Iteration: 18, Func. Count: 228, Neg. LLF: 70.00314130233824
Iteration: 19, Func. Count: 239, Neg. LLF: 70.00314135718436
Optimization terminated successfully (Exit mode 0)
Current function value: 70.00314130233824
Iterations: 19
Function evaluations: 239
Gradient evaluations: 19
Iteration: 1, Func. Count: 14, Neg. LLF: 30036099.54718516
Iteration: 2, Func. Count: 29, Neg. LLF: 122.37240621992984
Iteration: 3, Func. Count: 44, Neg. LLF: 239.7238426536023
Iteration: 4, Func. Count: 59, Neg. LLF: 70.75970102217815
Iteration: 5, Func. Count: 72, Neg. LLF: 70.2250659491032
Iteration: 6, Func. Count: 85, Neg. LLF: 70.97741665203804
Iteration: 7, Func. Count: 101, Neg. LLF: 70.17876261956056
Iteration: 8, Func. Count: 114, Neg. LLF: 70.15365654571389
Iteration: 9, Func. Count: 127, Neg. LLF: 70.13967991706369
Iteration: 10, Func. Count: 140, Neg. LLF: 70.11056758132074
Iteration: 11, Func. Count: 153, Neg. LLF: 70.08473020545608
Iteration: 12, Func. Count: 166, Neg. LLF: 70.0792164813214
Iteration: 13, Func. Count: 179, Neg. LLF: 70.07870257454213
Iteration: 14, Func. Count: 192, Neg. LLF: 70.07862190369049
Iteration: 15, Func. Count: 205, Neg. LLF: 484.46146942182577
Iteration: 16, Func. Count: 222, Neg. LLF: 70.1751030539366
Iteration: 17, Func. Count: 237, Neg. LLF: 70.08399633989
Iteration: 18, Func. Count: 252, Neg. LLF: 70.07875354757793
Iteration: 19, Func. Count: 266, Neg. LLF: 70.07858671923113
Iteration: 20, Func. Count: 278, Neg. LLF: 70.07858671919122
Optimization terminated successfully (Exit mode 0)
Current function value: 70.07858671923113
Iterations: 21
Function evaluations: 278
Gradient evaluations: 20
Iteration: 1, Func. Count: 15, Neg. LLF: 30227761.302622877
Iteration: 2, Func. Count: 31, Neg. LLF: 56924.83462407578
Iteration: 3, Func. Count: 47, Neg. LLF: 11093.587300979449
Iteration: 4, Func. Count: 63, Neg. LLF: 70.77235059754075
Iteration: 5, Func. Count: 77, Neg. LLF: 70.73295705121764
Iteration: 6, Func. Count: 91, Neg. LLF: 70.77017052835801
Iteration: 7, Func. Count: 106, Neg. LLF: 70.66033848580541
Iteration: 8, Func. Count: 120, Neg. LLF: 70.65781511912999
Iteration: 9, Func. Count: 134, Neg. LLF: 70.65515174753111
Iteration: 10, Func. Count: 148, Neg. LLF: 70.60410682485134
Iteration: 11, Func. Count: 162, Neg. LLF: 70.22246343810538
Iteration: 12, Func. Count: 176, Neg. LLF: 130.75344471256238
Iteration: 13, Func. Count: 193, Neg. LLF: 75.72654304107738
Iteration: 14, Func. Count: 210, Neg. LLF: 70.13582508923272
Iteration: 15, Func. Count: 224, Neg. LLF: 70.09489124169127
Iteration: 16, Func. Count: 238, Neg. LLF: 70.08234844318592
Iteration: 17, Func. Count: 252, Neg. LLF: 70.0790592104701
Iteration: 18, Func. Count: 266, Neg. LLF: 70.07871521716895
Iteration: 19, Func. Count: 280, Neg. LLF: 70.07860588610744
Iteration: 20, Func. Count: 294, Neg. LLF: 70.07858711056244
Iteration: 21, Func. Count: 308, Neg. LLF: 70.07858655308227
Optimization terminated successfully (Exit mode 0)
Current function value: 70.07858655308227
Iterations: 21
Function evaluations: 308
Gradient evaluations: 21
Iteration: 1, Func. Count: 16, Neg. LLF: 29902380.97899599
Iteration: 2, Func. Count: 33, Neg. LLF: 155.7786034529313
Iteration: 3, Func. Count: 50, Neg. LLF: 1946540.7871067838
Iteration: 4, Func. Count: 67, Neg. LLF: 70.34411232027067
Iteration: 5, Func. Count: 82, Neg. LLF: 69.47700778853982
Iteration: 6, Func. Count: 97, Neg. LLF: 69.42125529873694
Iteration: 7, Func. Count: 113, Neg. LLF: 77.89307150288309
Iteration: 8, Func. Count: 130, Neg. LLF: 69.06069729451893
Iteration: 9, Func. Count: 145, Neg. LLF: 68.95122253997322
Iteration: 10, Func. Count: 160, Neg. LLF: 68.86237137949519
Iteration: 11, Func. Count: 175, Neg. LLF: 68.84428353816524
Iteration: 12, Func. Count: 190, Neg. LLF: 68.84017281391779
Iteration: 13, Func. Count: 205, Neg. LLF: 68.83008759835278
Iteration: 14, Func. Count: 220, Neg. LLF: 68.81632126444408
Iteration: 15, Func. Count: 235, Neg. LLF: 68.79791514003887
Iteration: 16, Func. Count: 250, Neg. LLF: 68.78800587084264
Iteration: 17, Func. Count: 265, Neg. LLF: 68.78200784294953
Iteration: 18, Func. Count: 280, Neg. LLF: 68.7809200678461
Iteration: 19, Func. Count: 295, Neg. LLF: 68.7802376393137
Iteration: 20, Func. Count: 310, Neg. LLF: 68.78022382789379
Iteration: 21, Func. Count: 325, Neg. LLF: 68.78984633504672
Optimization terminated successfully (Exit mode 0)
Current function value: 68.78022363969612
Iterations: 22
Function evaluations: 327
Gradient evaluations: 21
Iteration: 1, Func. Count: 5, Neg. LLF: 126.42419387718215
Iteration: 2, Func. Count: 13, Neg. LLF: 555.5949372424674
Iteration: 3, Func. Count: 19, Neg. LLF: 71.20241470593984
Iteration: 4, Func. Count: 23, Neg. LLF: 71.1967761734656
Iteration: 5, Func. Count: 27, Neg. LLF: 71.18607746825079
Iteration: 6, Func. Count: 31, Neg. LLF: 71.18553446723143
Iteration: 7, Func. Count: 35, Neg. LLF: 71.18548068239404
Iteration: 8, Func. Count: 38, Neg. LLF: 71.18548074780172
Optimization terminated successfully (Exit mode 0)
Current function value: 71.18548068239404
Iterations: 8
Function evaluations: 38
Gradient evaluations: 8
Iteration: 1, Func. Count: 5, Neg. LLF: 126.7478514411258
Iteration: 2, Func. Count: 12, Neg. LLF: 98.82039525355594
Iteration: 3, Func. Count: 16, Neg. LLF: 120.1679369449123
Iteration: 4, Func. Count: 21, Neg. LLF: 98.31847989534232
Iteration: 5, Func. Count: 25, Neg. LLF: 98.21768690663605
Iteration: 6, Func. Count: 29, Neg. LLF: 98.20889946080136
Iteration: 7, Func. Count: 33, Neg. LLF: 98.20864567392958
Iteration: 8, Func. Count: 37, Neg. LLF: 98.20864326831531
Iteration: 9, Func. Count: 40, Neg. LLF: 98.20864350744675
Optimization terminated successfully (Exit mode 0)
Current function value: 98.20864326831531
Iterations: 9
Function evaluations: 40
Gradient evaluations: 9
Iteration: 1, Func. Count: 6, Neg. LLF: 188.45126576863055
Iteration: 2, Func. Count: 15, Neg. LLF: 101.94649942737445
Iteration: 3, Func. Count: 21, Neg. LLF: 93.02838120228981
Iteration: 4, Func. Count: 26, Neg. LLF: 95.44592085924242
Iteration: 5, Func. Count: 32, Neg. LLF: 92.80331300771063
Iteration: 6, Func. Count: 37, Neg. LLF: 92.72799165102636
Iteration: 7, Func. Count: 42, Neg. LLF: 92.713468828693
Iteration: 8, Func. Count: 47, Neg. LLF: 92.7117610935206
Iteration: 9, Func. Count: 52, Neg. LLF: 92.71175986025825
Iteration: 10, Func. Count: 57, Neg. LLF: 92.71175722147244
Iteration: 11, Func. Count: 61, Neg. LLF: 92.71175813205946
Optimization terminated successfully (Exit mode 0)
Current function value: 92.71175722147244
Iterations: 11
Function evaluations: 61
Gradient evaluations: 11
Iteration: 1, Func. Count: 7, Neg. LLF: 180.73354796423172
Iteration: 2, Func. Count: 18, Neg. LLF: 106.0723754695777
Iteration: 3, Func. Count: 25, Neg. LLF: 92.78084793092572
Iteration: 4, Func. Count: 31, Neg. LLF: 92.71595664866473
Iteration: 5, Func. Count: 37, Neg. LLF: 92.6788411999633
Iteration: 6, Func. Count: 43, Neg. LLF: 92.66854179132405
Iteration: 7, Func. Count: 49, Neg. LLF: 92.66853528372879
Iteration: 8, Func. Count: 54, Neg. LLF: 92.66853575771003
Optimization terminated successfully (Exit mode 0)
Current function value: 92.66853528372879
Iterations: 8
Function evaluations: 54
Gradient evaluations: 8
Iteration: 1, Func. Count: 8, Neg. LLF: 178.67982668270815
Iteration: 2, Func. Count: 20, Neg. LLF: 108.84444503423032
Iteration: 3, Func. Count: 28, Neg. LLF: 92.804429409476
Iteration: 4, Func. Count: 35, Neg. LLF: 92.77313262793855
Iteration: 5, Func. Count: 42, Neg. LLF: 92.76167591313461
Iteration: 6, Func. Count: 49, Neg. LLF: 92.7611237526795
Iteration: 7, Func. Count: 56, Neg. LLF: 92.76112104820322
Iteration: 8, Func. Count: 62, Neg. LLF: 92.76112137406535
Optimization terminated successfully (Exit mode 0)
Current function value: 92.76112104820322
Iterations: 8
Function evaluations: 62
Gradient evaluations: 8
Iteration: 1, Func. Count: 9, Neg. LLF: 182.19239908811625
Iteration: 2, Func. Count: 22, Neg. LLF: 109.86385178826063
Iteration: 3, Func. Count: 31, Neg. LLF: 92.69612604645205
Iteration: 4, Func. Count: 39, Neg. LLF: 92.67400284594817
Iteration: 5, Func. Count: 47, Neg. LLF: 92.66533249390228
Iteration: 6, Func. Count: 55, Neg. LLF: 92.664068748174
Iteration: 7, Func. Count: 63, Neg. LLF: 92.66406373108038
Iteration: 8, Func. Count: 70, Neg. LLF: 92.66406398490182
Optimization terminated successfully (Exit mode 0)
Current function value: 92.66406373108038
Iterations: 8
Function evaluations: 70
Gradient evaluations: 8
Iteration: 1, Func. Count: 6, Neg. LLF: 128.8287529093503
Iteration: 2, Func. Count: 14, Neg. LLF: 104.39356967476688
Iteration: 3, Func. Count: 20, Neg. LLF: 98.67446900391121
Iteration: 4, Func. Count: 25, Neg. LLF: 98.54624057665056
Iteration: 5, Func. Count: 30, Neg. LLF: 98.27381305434643
Iteration: 6, Func. Count: 35, Neg. LLF: 98.21577577837604
Iteration: 7, Func. Count: 40, Neg. LLF: 98.20874554918505
Iteration: 8, Func. Count: 45, Neg. LLF: 98.20864331777884
Iteration: 9, Func. Count: 49, Neg. LLF: 98.2086433831773
Optimization terminated successfully (Exit mode 0)
Current function value: 98.20864331777884
Iterations: 9
Function evaluations: 49
Gradient evaluations: 9
Iteration: 1, Func. Count: 7, Neg. LLF: 187.96139384584865
Iteration: 2, Func. Count: 17, Neg. LLF: 102.25372422322516
Iteration: 3, Func. Count: 24, Neg. LLF: 92.96984388171641
Iteration: 4, Func. Count: 30, Neg. LLF: 94.52054981424334
Iteration: 5, Func. Count: 37, Neg. LLF: 92.80466886298494
Iteration: 6, Func. Count: 43, Neg. LLF: 92.71895049862285
Iteration: 7, Func. Count: 49, Neg. LLF: 92.71198473973185
Iteration: 8, Func. Count: 55, Neg. LLF: 92.7117575838922
Iteration: 9, Func. Count: 60, Neg. LLF: 92.71175849586996
Optimization terminated successfully (Exit mode 0)
Current function value: 92.7117575838922
Iterations: 9
Function evaluations: 60
Gradient evaluations: 9
Iteration: 1, Func. Count: 8, Neg. LLF: 180.6073463272262
Iteration: 2, Func. Count: 20, Neg. LLF: 106.67241237752299
Iteration: 3, Func. Count: 28, Neg. LLF: 92.7792290181174
Iteration: 4, Func. Count: 35, Neg. LLF: 92.71782388513782
Iteration: 5, Func. Count: 42, Neg. LLF: 92.67287902566909
Iteration: 6, Func. Count: 49, Neg. LLF: 92.668540948436
Iteration: 7, Func. Count: 56, Neg. LLF: 92.66853540298092
Iteration: 8, Func. Count: 62, Neg. LLF: 92.66853587692198
Optimization terminated successfully (Exit mode 0)
Current function value: 92.66853540298092
Iterations: 8
Function evaluations: 62
Gradient evaluations: 8
Iteration: 1, Func. Count: 9, Neg. LLF: 178.07122548076072
Iteration: 2, Func. Count: 22, Neg. LLF: 109.8583533597687
Iteration: 3, Func. Count: 31, Neg. LLF: 92.80258234519256
Iteration: 4, Func. Count: 39, Neg. LLF: 92.77223752496704
Iteration: 5, Func. Count: 47, Neg. LLF: 92.76154786771869
Iteration: 6, Func. Count: 55, Neg. LLF: 92.7611228596853
Iteration: 7, Func. Count: 63, Neg. LLF: 92.76112114186421
Iteration: 8, Func. Count: 70, Neg. LLF: 92.76112146773167
Optimization terminated successfully (Exit mode 0)
Current function value: 92.76112114186421
Iterations: 8
Function evaluations: 70
Gradient evaluations: 8
Iteration: 1, Func. Count: 10, Neg. LLF: 182.3788157287302
Iteration: 2, Func. Count: 24, Neg. LLF: 110.58469150417663
Iteration: 3, Func. Count: 34, Neg. LLF: 92.6967032399284
Iteration: 4, Func. Count: 43, Neg. LLF: 92.67402803895118
Iteration: 5, Func. Count: 52, Neg. LLF: 92.6650612116639
Iteration: 6, Func. Count: 61, Neg. LLF: 92.6640674738191
Iteration: 7, Func. Count: 70, Neg. LLF: 92.66406372243144
Iteration: 8, Func. Count: 78, Neg. LLF: 92.66406397626052
Optimization terminated successfully (Exit mode 0)
Current function value: 92.66406372243144
Iterations: 8
Function evaluations: 78
Gradient evaluations: 8
Iteration: 1, Func. Count: 7, Neg. LLF: 128.6803524283687
Iteration: 2, Func. Count: 16, Neg. LLF: 103.16387105461516
Iteration: 3, Func. Count: 23, Neg. LLF: 98.71014895082091
Iteration: 4, Func. Count: 29, Neg. LLF: 98.5599321296
Iteration: 5, Func. Count: 35, Neg. LLF: 98.28793509089482
Iteration: 6, Func. Count: 41, Neg. LLF: 98.2166384460481
Iteration: 7, Func. Count: 47, Neg. LLF: 98.20888508916906
Iteration: 8, Func. Count: 53, Neg. LLF: 98.20864368808137
Iteration: 9, Func. Count: 58, Neg. LLF: 98.20864371421024
Optimization terminated successfully (Exit mode 0)
Current function value: 98.20864368808137
Iterations: 9
Function evaluations: 58
Gradient evaluations: 9
Iteration: 1, Func. Count: 8, Neg. LLF: 187.74666256824216
Iteration: 2, Func. Count: 19, Neg. LLF: 102.08342268330541
Iteration: 3, Func. Count: 27, Neg. LLF: 92.95877898394723
Iteration: 4, Func. Count: 34, Neg. LLF: 94.12435901377025
Iteration: 5, Func. Count: 42, Neg. LLF: 92.80583314291064
Iteration: 6, Func. Count: 49, Neg. LLF: 92.71570463686943
Iteration: 7, Func. Count: 56, Neg. LLF: 92.71179636112188
Iteration: 8, Func. Count: 63, Neg. LLF: 92.71175817628892
Iteration: 9, Func. Count: 70, Neg. LLF: 92.71175722146062
Optimization terminated successfully (Exit mode 0)
Current function value: 92.71175722146062
Iterations: 9
Function evaluations: 70
Gradient evaluations: 9
Iteration: 1, Func. Count: 9, Neg. LLF: 180.45616491086324
Iteration: 2, Func. Count: 22, Neg. LLF: 106.56570272207483
Iteration: 3, Func. Count: 31, Neg. LLF: 92.78055381450234
Iteration: 4, Func. Count: 39, Neg. LLF: 92.71912499901374
Iteration: 5, Func. Count: 47, Neg. LLF: 92.6719714797062
Iteration: 6, Func. Count: 55, Neg. LLF: 92.6685406247893
Iteration: 7, Func. Count: 63, Neg. LLF: 92.66853526854813
Iteration: 8, Func. Count: 70, Neg. LLF: 92.66853574247432
Optimization terminated successfully (Exit mode 0)
Current function value: 92.66853526854813
Iterations: 8
Function evaluations: 70
Gradient evaluations: 8
Iteration: 1, Func. Count: 10, Neg. LLF: 178.2262768436203
Iteration: 2, Func. Count: 24, Neg. LLF: 109.56188191064415
Iteration: 3, Func. Count: 34, Neg. LLF: 92.80270844210023
Iteration: 4, Func. Count: 43, Neg. LLF: 92.77223586489009
Iteration: 5, Func. Count: 52, Neg. LLF: 92.76139094116208
Iteration: 6, Func. Count: 61, Neg. LLF: 92.76112217107749
Iteration: 7, Func. Count: 70, Neg. LLF: 92.76112104582266
Iteration: 8, Func. Count: 78, Neg. LLF: 92.76112137169582
Optimization terminated successfully (Exit mode 0)
Current function value: 92.76112104582266
Iterations: 8
Function evaluations: 78
Gradient evaluations: 8
Iteration: 1, Func. Count: 11, Neg. LLF: 182.49093702039065
Iteration: 2, Func. Count: 26, Neg. LLF: 110.3947033393664
Iteration: 3, Func. Count: 37, Neg. LLF: 92.69562530060057
Iteration: 4, Func. Count: 47, Neg. LLF: 92.67368474830654
Iteration: 5, Func. Count: 57, Neg. LLF: 92.66511959370362
Iteration: 6, Func. Count: 67, Neg. LLF: 92.6640676000988
Iteration: 7, Func. Count: 77, Neg. LLF: 92.6640637206025
Iteration: 8, Func. Count: 86, Neg. LLF: 92.66406397443048
Optimization terminated successfully (Exit mode 0)
Current function value: 92.6640637206025
Iterations: 8
Function evaluations: 86
Gradient evaluations: 8
Iteration: 1, Func. Count: 8, Neg. LLF: 128.60508877430678
Iteration: 2, Func. Count: 18, Neg. LLF: 102.46324882138363
Iteration: 3, Func. Count: 26, Neg. LLF: 98.72796280363305
Iteration: 4, Func. Count: 33, Neg. LLF: 98.56083201446431
Iteration: 5, Func. Count: 40, Neg. LLF: 98.30035810531268
Iteration: 6, Func. Count: 47, Neg. LLF: 98.21770445778365
Iteration: 7, Func. Count: 54, Neg. LLF: 98.20892514974746
Iteration: 8, Func. Count: 61, Neg. LLF: 98.20864402783104
Iteration: 9, Func. Count: 68, Neg. LLF: 98.20864323785541
Optimization terminated successfully (Exit mode 0)
Current function value: 98.20864323785541
Iterations: 9
Function evaluations: 68
Gradient evaluations: 9
Iteration: 1, Func. Count: 9, Neg. LLF: 187.5657650269136
Iteration: 2, Func. Count: 21, Neg. LLF: 102.16498377091092
Iteration: 3, Func. Count: 30, Neg. LLF: 92.94606816233687
Iteration: 4, Func. Count: 38, Neg. LLF: 93.76573551668577
Iteration: 5, Func. Count: 47, Neg. LLF: 92.80074610737613
Iteration: 6, Func. Count: 55, Neg. LLF: 92.7138433631897
Iteration: 7, Func. Count: 63, Neg. LLF: 92.7117650304053
Iteration: 8, Func. Count: 71, Neg. LLF: 92.7117572250799
Iteration: 9, Func. Count: 78, Neg. LLF: 92.71175813556802
Optimization terminated successfully (Exit mode 0)
Current function value: 92.7117572250799
Iterations: 9
Function evaluations: 78
Gradient evaluations: 9
Iteration: 1, Func. Count: 10, Neg. LLF: 180.5321001029978
Iteration: 2, Func. Count: 24, Neg. LLF: 106.45930035155276
Iteration: 3, Func. Count: 34, Neg. LLF: 92.78299398190882
Iteration: 4, Func. Count: 43, Neg. LLF: 92.72207597547512
Iteration: 5, Func. Count: 52, Neg. LLF: 92.6705160656399
Iteration: 6, Func. Count: 61, Neg. LLF: 92.66853912260856
Iteration: 7, Func. Count: 70, Neg. LLF: 92.6685353514427
Iteration: 8, Func. Count: 78, Neg. LLF: 92.66853582533385
Optimization terminated successfully (Exit mode 0)
Current function value: 92.6685353514427
Iterations: 8
Function evaluations: 78
Gradient evaluations: 8
Iteration: 1, Func. Count: 11, Neg. LLF: 178.33309795945763
Iteration: 2, Func. Count: 26, Neg. LLF: 109.48286436183652
Iteration: 3, Func. Count: 37, Neg. LLF: 92.80275909285568
Iteration: 4, Func. Count: 47, Neg. LLF: 94.54850591635244
Iteration: 5, Func. Count: 58, Neg. LLF: 92.55635454163148
Iteration: 6, Func. Count: 68, Neg. LLF: 92.53416568613332
Iteration: 7, Func. Count: 78, Neg. LLF: 92.52895012827194
Iteration: 8, Func. Count: 88, Neg. LLF: 92.52813170525334
Iteration: 9, Func. Count: 98, Neg. LLF: 92.5279229566319
Iteration: 10, Func. Count: 108, Neg. LLF: 92.52774961486806
Iteration: 11, Func. Count: 118, Neg. LLF: 92.52788362291707
Iteration: 12, Func. Count: 138, Neg. LLF: 92.52787297402762
Iteration: 13, Func. Count: 158, Neg. LLF: 92.52835747053396
Iteration: 14, Func. Count: 170, Neg. LLF: 92.52793792136909
Iteration: 15, Func. Count: 182, Neg. LLF: 92.52789835850085
Iteration: 16, Func. Count: 193, Neg. LLF: 92.52789569161347
Iteration: 17, Func. Count: 202, Neg. LLF: 92.52789528395603
Optimization terminated successfully (Exit mode 0)
Current function value: 92.52789569161347
Iterations: 18
Function evaluations: 202
Gradient evaluations: 17
Iteration: 1, Func. Count: 12, Neg. LLF: 182.45016659327757
Iteration: 2, Func. Count: 28, Neg. LLF: 110.35884219366423
Iteration: 3, Func. Count: 40, Neg. LLF: 92.6953298380906
Iteration: 4, Func. Count: 51, Neg. LLF: 92.67356982231908
Iteration: 5, Func. Count: 62, Neg. LLF: 92.66517604593099
Iteration: 6, Func. Count: 73, Neg. LLF: 92.66406779743254
Iteration: 7, Func. Count: 84, Neg. LLF: 92.66406372010599
Iteration: 8, Func. Count: 94, Neg. LLF: 92.66406397393253
Optimization terminated successfully (Exit mode 0)
Current function value: 92.66406372010599
Iterations: 8
Function evaluations: 94
Gradient evaluations: 8
Iteration: 1, Func. Count: 5, Neg. LLF: 139.89633766879487
Iteration: 2, Func. Count: 11, Neg. LLF: 111.74214964769656
Iteration: 3, Func. Count: 16, Neg. LLF: 544415.2612927897
Iteration: 4, Func. Count: 21, Neg. LLF: 4351.793633476101
Iteration: 5, Func. Count: 26, Neg. LLF: 15368.517410792298
Iteration: 6, Func. Count: 31, Neg. LLF: 586.8357358555378
Iteration: 7, Func. Count: 36, Neg. LLF: 89.44578751006031
Iteration: 8, Func. Count: 41, Neg. LLF: 86.03401277696115
Iteration: 9, Func. Count: 45, Neg. LLF: 85.89865573797898
Iteration: 10, Func. Count: 49, Neg. LLF: 85.89603136481016
Iteration: 11, Func. Count: 54, Neg. LLF: 85.87741934449986
Iteration: 12, Func. Count: 58, Neg. LLF: 85.87740749496149
Iteration: 13, Func. Count: 61, Neg. LLF: 85.87740751833388
Optimization terminated successfully (Exit mode 0)
Current function value: 85.87740749496149
Iterations: 13
Function evaluations: 61
Gradient evaluations: 13
Iteration: 1, Func. Count: 6, Neg. LLF: 145.90568781961022
Iteration: 2, Func. Count: 14, Neg. LLF: 306487.8271889464
Iteration: 3, Func. Count: 20, Neg. LLF: 115.1432453416876
Iteration: 4, Func. Count: 26, Neg. LLF: 1544.788239389167
Iteration: 5, Func. Count: 32, Neg. LLF: 87.11588400768444
Iteration: 6, Func. Count: 37, Neg. LLF: 87.15064252464576
Iteration: 7, Func. Count: 43, Neg. LLF: 87.11985241893315
Iteration: 8, Func. Count: 49, Neg. LLF: 86.04729643417855
Iteration: 9, Func. Count: 54, Neg. LLF: 85.77763130453285
Iteration: 10, Func. Count: 59, Neg. LLF: 85.66576298650725
Iteration: 11, Func. Count: 64, Neg. LLF: 85.57583893523636
Iteration: 12, Func. Count: 69, Neg. LLF: 85.55821098380355
Iteration: 13, Func. Count: 74, Neg. LLF: 85.54497964017246
Iteration: 14, Func. Count: 79, Neg. LLF: 85.5368804303572
Iteration: 15, Func. Count: 84, Neg. LLF: 85.5340511879858
Iteration: 16, Func. Count: 89, Neg. LLF: 85.53135145714393
Iteration: 17, Func. Count: 94, Neg. LLF: 85.53087512445641
Iteration: 18, Func. Count: 99, Neg. LLF: 85.53079967663051
Iteration: 19, Func. Count: 104, Neg. LLF: 85.53079692010806
Iteration: 20, Func. Count: 109, Neg. LLF: 85.53079635578194
Optimization terminated successfully (Exit mode 0)
Current function value: 85.53079635578194
Iterations: 20
Function evaluations: 109
Gradient evaluations: 20
Iteration: 1, Func. Count: 7, Neg. LLF: 174.40798814304134
Iteration: 2, Func. Count: 14, Neg. LLF: 334.63406004393545
Iteration: 3, Func. Count: 21, Neg. LLF: 122.6290795698244
Iteration: 4, Func. Count: 28, Neg. LLF: 89.10552180617759
Iteration: 5, Func. Count: 35, Neg. LLF: 541437.6703551165
Iteration: 6, Func. Count: 42, Neg. LLF: 306.7141373863483
Iteration: 7, Func. Count: 49, Neg. LLF: 146.48011852967934
Iteration: 8, Func. Count: 56, Neg. LLF: 87.2175147651122
Iteration: 9, Func. Count: 63, Neg. LLF: 85.61405803724567
Iteration: 10, Func. Count: 69, Neg. LLF: 85.9278145813048
Iteration: 11, Func. Count: 76, Neg. LLF: 85.55101759964421
Iteration: 12, Func. Count: 82, Neg. LLF: 85.54904648906853
Iteration: 13, Func. Count: 89, Neg. LLF: 85.53333967105621
Iteration: 14, Func. Count: 96, Neg. LLF: 85.53095518909349
Iteration: 15, Func. Count: 102, Neg. LLF: 85.53080287800594
Iteration: 16, Func. Count: 108, Neg. LLF: 85.53079639941596
Iteration: 17, Func. Count: 113, Neg. LLF: 85.53079642270433
Optimization terminated successfully (Exit mode 0)
Current function value: 85.53079639941596
Iterations: 17
Function evaluations: 113
Gradient evaluations: 17
Iteration: 1, Func. Count: 8, Neg. LLF: 165.09170106390118
Iteration: 2, Func. Count: 16, Neg. LLF: 4450.2209258369885
Iteration: 3, Func. Count: 24, Neg. LLF: 119.5820716537948
Iteration: 4, Func. Count: 32, Neg. LLF: 90.10792448527837
Iteration: 5, Func. Count: 40, Neg. LLF: 4996.784509654819
Iteration: 6, Func. Count: 48, Neg. LLF: 549.4337142665441
Iteration: 7, Func. Count: 56, Neg. LLF: 266.81164333228975
Iteration: 8, Func. Count: 64, Neg. LLF: 89.3683074109939
Iteration: 9, Func. Count: 72, Neg. LLF: 85.71665907701384
Iteration: 10, Func. Count: 79, Neg. LLF: 85.97949095494009
Iteration: 11, Func. Count: 87, Neg. LLF: 85.58235883512646
Iteration: 12, Func. Count: 94, Neg. LLF: 85.5564268089525
Iteration: 13, Func. Count: 101, Neg. LLF: 85.58766021888448
Iteration: 14, Func. Count: 109, Neg. LLF: 85.53208731342097
Iteration: 15, Func. Count: 116, Neg. LLF: 85.53095301953559
Iteration: 16, Func. Count: 123, Neg. LLF: 85.53084323735641
Iteration: 17, Func. Count: 130, Neg. LLF: 85.53079690244539
Iteration: 18, Func. Count: 136, Neg. LLF: 85.53079688493985
Optimization terminated successfully (Exit mode 0)
Current function value: 85.53079690244539
Iterations: 18
Function evaluations: 136
Gradient evaluations: 18
Iteration: 1, Func. Count: 9, Neg. LLF: 436.37402503328525
Iteration: 2, Func. Count: 18, Neg. LLF: 677.2437077149865
Iteration: 3, Func. Count: 27, Neg. LLF: 157.4545273441236
Iteration: 4, Func. Count: 36, Neg. LLF: 91.5580912470443
Iteration: 5, Func. Count: 45, Neg. LLF: 109.01644690714652
Iteration: 6, Func. Count: 54, Neg. LLF: 451.25445665598585
Iteration: 7, Func. Count: 63, Neg. LLF: 107.05001628181078
Iteration: 8, Func. Count: 72, Neg. LLF: 87.28411660484359
Iteration: 9, Func. Count: 81, Neg. LLF: 85.62395447225263
Iteration: 10, Func. Count: 89, Neg. LLF: 85.62494950356671
Iteration: 11, Func. Count: 98, Neg. LLF: 85.54832890731855
Iteration: 12, Func. Count: 106, Neg. LLF: 85.5490743005696
Iteration: 13, Func. Count: 115, Neg. LLF: 85.53419896481198
Iteration: 14, Func. Count: 123, Neg. LLF: 85.53085445646302
Iteration: 15, Func. Count: 131, Neg. LLF: 85.53080847181117
Iteration: 16, Func. Count: 139, Neg. LLF: 85.5307963976637
Iteration: 17, Func. Count: 146, Neg. LLF: 85.5307964801506
Optimization terminated successfully (Exit mode 0)
Current function value: 85.5307963976637
Iterations: 17
Function evaluations: 146
Gradient evaluations: 17
Iteration: 1, Func. Count: 6, Neg. LLF: 140.47590624315916
Iteration: 2, Func. Count: 13, Neg. LLF: 107.94417474495631
Iteration: 3, Func. Count: 19, Neg. LLF: 11705932.609215502
Iteration: 4, Func. Count: 25, Neg. LLF: 10540945.845675895
Iteration: 5, Func. Count: 31, Neg. LLF: 10928821.36200592
Iteration: 6, Func. Count: 37, Neg. LLF: 249.20331594666305
Iteration: 7, Func. Count: 43, Neg. LLF: 86.48732189197644
Iteration: 8, Func. Count: 49, Neg. LLF: 81.95779551091364
Iteration: 9, Func. Count: 54, Neg. LLF: 81.82502699041767
Iteration: 10, Func. Count: 59, Neg. LLF: 81.78734455877515
Iteration: 11, Func. Count: 64, Neg. LLF: 81.78588468048687
Iteration: 12, Func. Count: 69, Neg. LLF: 81.78587322229691
Iteration: 13, Func. Count: 73, Neg. LLF: 81.78587358551641
Optimization terminated successfully (Exit mode 0)
Current function value: 81.78587322229691
Iterations: 14
Function evaluations: 73
Gradient evaluations: 13
Iteration: 1, Func. Count: 7, Neg. LLF: 153.46177350174196
Iteration: 2, Func. Count: 16, Neg. LLF: 10524746.712753518
Iteration: 3, Func. Count: 23, Neg. LLF: 399.9981035385756
Iteration: 4, Func. Count: 30, Neg. LLF: 200.23118282771065
Iteration: 5, Func. Count: 37, Neg. LLF: 83.08393990151855
Iteration: 6, Func. Count: 43, Neg. LLF: 162.1186149601066
Iteration: 7, Func. Count: 50, Neg. LLF: 81.6766753331721
Iteration: 8, Func. Count: 56, Neg. LLF: 80.77854085388331
Iteration: 9, Func. Count: 62, Neg. LLF: 81.76526523670847
Iteration: 10, Func. Count: 69, Neg. LLF: 80.9848638574182
Iteration: 11, Func. Count: 76, Neg. LLF: 80.52600492745874
Iteration: 12, Func. Count: 82, Neg. LLF: 80.48178771526065
Iteration: 13, Func. Count: 88, Neg. LLF: 80.47230142674101
Iteration: 14, Func. Count: 94, Neg. LLF: 80.47202323118611
Iteration: 15, Func. Count: 100, Neg. LLF: 80.47199935231836
Iteration: 16, Func. Count: 105, Neg. LLF: 80.47199935235112
Optimization terminated successfully (Exit mode 0)
Current function value: 80.47199935231836
Iterations: 16
Function evaluations: 105
Gradient evaluations: 16
Iteration: 1, Func. Count: 8, Neg. LLF: 1105337.5559781587
Iteration: 2, Func. Count: 16, Neg. LLF: 12841184.975359285
Iteration: 3, Func. Count: 24, Neg. LLF: 421.3363854123361
Iteration: 4, Func. Count: 32, Neg. LLF: 12296005.066132879
Iteration: 5, Func. Count: 40, Neg. LLF: 89.75704088671793
Iteration: 6, Func. Count: 48, Neg. LLF: 81.38979450772754
Iteration: 7, Func. Count: 55, Neg. LLF: 86.88918496989928
Iteration: 8, Func. Count: 63, Neg. LLF: 110.33344143298608
Iteration: 9, Func. Count: 71, Neg. LLF: 225.0850669481181
Iteration: 10, Func. Count: 79, Neg. LLF: 80.84638620586348
Iteration: 11, Func. Count: 87, Neg. LLF: 80.48037000105951
Iteration: 12, Func. Count: 94, Neg. LLF: 80.47257968891743
Iteration: 13, Func. Count: 101, Neg. LLF: 80.47202413903314
Iteration: 14, Func. Count: 108, Neg. LLF: 80.47199961083336
Iteration: 15, Func. Count: 114, Neg. LLF: 80.47199962379263
Optimization terminated successfully (Exit mode 0)
Current function value: 80.47199961083336
Iterations: 15
Function evaluations: 114
Gradient evaluations: 15
Iteration: 1, Func. Count: 9, Neg. LLF: 1027971.2781468432
Iteration: 2, Func. Count: 18, Neg. LLF: 12242399.627192851
Iteration: 3, Func. Count: 27, Neg. LLF: 436.27547785145157
Iteration: 4, Func. Count: 36, Neg. LLF: 12272018.095800677
Iteration: 5, Func. Count: 45, Neg. LLF: 104.10823294746368
Iteration: 6, Func. Count: 54, Neg. LLF: 197.45873565244426
Iteration: 7, Func. Count: 63, Neg. LLF: 81.1145928536888
Iteration: 8, Func. Count: 71, Neg. LLF: 80.57903764971678
Iteration: 9, Func. Count: 79, Neg. LLF: 80.57777520418912
Iteration: 10, Func. Count: 88, Neg. LLF: 80.48527394579702
Iteration: 11, Func. Count: 96, Neg. LLF: 80.47263905175197
Iteration: 12, Func. Count: 104, Neg. LLF: 80.47203537236463
Iteration: 13, Func. Count: 112, Neg. LLF: 80.47200070330169
Iteration: 14, Func. Count: 120, Neg. LLF: 80.47199930695965
Iteration: 15, Func. Count: 127, Neg. LLF: 80.47199932022261
Optimization terminated successfully (Exit mode 0)
Current function value: 80.47199930695965
Iterations: 15
Function evaluations: 127
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 450471.1139979453
Iteration: 2, Func. Count: 20, Neg. LLF: 12209694.905170228
Iteration: 3, Func. Count: 30, Neg. LLF: 258.45066487153736
Iteration: 4, Func. Count: 40, Neg. LLF: 12210183.93416589
Iteration: 5, Func. Count: 50, Neg. LLF: 173.54940234013674
Iteration: 6, Func. Count: 60, Neg. LLF: 202.30504245272562
Iteration: 7, Func. Count: 70, Neg. LLF: 82.13322476256248
Iteration: 8, Func. Count: 79, Neg. LLF: 80.57088895363847
Iteration: 9, Func. Count: 88, Neg. LLF: 80.50008620837635
Iteration: 10, Func. Count: 97, Neg. LLF: 80.5495980987216
Iteration: 11, Func. Count: 107, Neg. LLF: 80.47241124566573
Iteration: 12, Func. Count: 116, Neg. LLF: 80.47199988315549
Iteration: 13, Func. Count: 125, Neg. LLF: 80.47199931690452
Optimization terminated successfully (Exit mode 0)
Current function value: 80.47199931690452
Iterations: 13
Function evaluations: 125
Gradient evaluations: 13
Iteration: 1, Func. Count: 7, Neg. LLF: 138.21164483892468
Iteration: 2, Func. Count: 15, Neg. LLF: 114.39748080166348
Iteration: 3, Func. Count: 22, Neg. LLF: 11762314.678009823
Iteration: 4, Func. Count: 29, Neg. LLF: 11071912.082778644
Iteration: 5, Func. Count: 36, Neg. LLF: 10865885.407841928
Iteration: 6, Func. Count: 43, Neg. LLF: 10849402.921545234
Iteration: 7, Func. Count: 50, Neg. LLF: 87.0753586120294
Iteration: 8, Func. Count: 57, Neg. LLF: 82.30347546978285
Iteration: 9, Func. Count: 63, Neg. LLF: 81.48829657369987
Iteration: 10, Func. Count: 70, Neg. LLF: 82.97899575749561
Iteration: 11, Func. Count: 77, Neg. LLF: 81.30812078486753
Iteration: 12, Func. Count: 83, Neg. LLF: 81.30389305678142
Iteration: 13, Func. Count: 89, Neg. LLF: 81.30047264737813
Iteration: 14, Func. Count: 95, Neg. LLF: 81.29455666574776
Iteration: 15, Func. Count: 101, Neg. LLF: 81.2920417354704
Iteration: 16, Func. Count: 107, Neg. LLF: 81.29130279695337
Iteration: 17, Func. Count: 113, Neg. LLF: 81.29126477582541
Iteration: 18, Func. Count: 118, Neg. LLF: 81.29126477600275
Optimization terminated successfully (Exit mode 0)
Current function value: 81.29126477582541
Iterations: 18
Function evaluations: 118
Gradient evaluations: 18
Iteration: 1, Func. Count: 8, Neg. LLF: 153.22182354522616
Iteration: 2, Func. Count: 18, Neg. LLF: 10522225.476049718
Iteration: 3, Func. Count: 26, Neg. LLF: 396.3818140945971
Iteration: 4, Func. Count: 34, Neg. LLF: 199.49751697578753
Iteration: 5, Func. Count: 42, Neg. LLF: 83.08348526937606
Iteration: 6, Func. Count: 49, Neg. LLF: 85.8502539367795
Iteration: 7, Func. Count: 58, Neg. LLF: 93.12555465256077
Iteration: 8, Func. Count: 66, Neg. LLF: 84.98126065217906
Iteration: 9, Func. Count: 74, Neg. LLF: 93.93717147345899
Iteration: 10, Func. Count: 82, Neg. LLF: 80.48190324452683
Iteration: 11, Func. Count: 89, Neg. LLF: 80.28815947373522
Iteration: 12, Func. Count: 96, Neg. LLF: 80.24099321720361
Iteration: 13, Func. Count: 103, Neg. LLF: 80.22695905430524
Iteration: 14, Func. Count: 110, Neg. LLF: 80.21890813101413
Iteration: 15, Func. Count: 117, Neg. LLF: 80.2132647210723
Iteration: 16, Func. Count: 124, Neg. LLF: 80.2119992533497
Iteration: 17, Func. Count: 131, Neg. LLF: 80.21157372670712
Iteration: 18, Func. Count: 138, Neg. LLF: 80.21152332922605
Iteration: 19, Func. Count: 145, Neg. LLF: 80.21151458858238
Iteration: 20, Func. Count: 151, Neg. LLF: 80.21151458853751
Optimization terminated successfully (Exit mode 0)
Current function value: 80.21151458858238
Iterations: 20
Function evaluations: 151
Gradient evaluations: 20
Iteration: 1, Func. Count: 9, Neg. LLF: 1097149.2210420943
Iteration: 2, Func. Count: 18, Neg. LLF: 12838021.575197574
Iteration: 3, Func. Count: 27, Neg. LLF: 419.45888578504605
Iteration: 4, Func. Count: 36, Neg. LLF: 12294223.3364433
Iteration: 5, Func. Count: 45, Neg. LLF: 89.58395201050865
Iteration: 6, Func. Count: 54, Neg. LLF: 81.43596899515558
Iteration: 7, Func. Count: 62, Neg. LLF: 80.73826193231314
Iteration: 8, Func. Count: 70, Neg. LLF: 82.79471334177299
Iteration: 9, Func. Count: 79, Neg. LLF: 80.3566394957786
Iteration: 10, Func. Count: 87, Neg. LLF: 80.22509316949052
Iteration: 11, Func. Count: 95, Neg. LLF: 80.21647172511884
Iteration: 12, Func. Count: 103, Neg. LLF: 80.21266062620887
Iteration: 13, Func. Count: 111, Neg. LLF: 80.211523080686
Iteration: 14, Func. Count: 119, Neg. LLF: 80.21151532946224
Iteration: 15, Func. Count: 127, Neg. LLF: 80.2115145256887
Optimization terminated successfully (Exit mode 0)
Current function value: 80.2115145256887
Iterations: 15
Function evaluations: 127
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 1001070.9277865052
Iteration: 2, Func. Count: 20, Neg. LLF: 12240225.659866568
Iteration: 3, Func. Count: 30, Neg. LLF: 425.27161336092286
Iteration: 4, Func. Count: 40, Neg. LLF: 12256388.484041937
Iteration: 5, Func. Count: 50, Neg. LLF: 102.0755510928667
Iteration: 6, Func. Count: 60, Neg. LLF: 193.6282975805466
Iteration: 7, Func. Count: 70, Neg. LLF: 81.04292882164091
Iteration: 8, Func. Count: 79, Neg. LLF: 80.73335283555616
Iteration: 9, Func. Count: 89, Neg. LLF: 80.4967225835602
Iteration: 10, Func. Count: 99, Neg. LLF: 80.24534475916548
Iteration: 11, Func. Count: 108, Neg. LLF: 80.22042352797544
Iteration: 12, Func. Count: 117, Neg. LLF: 80.21796047407007
Iteration: 13, Func. Count: 126, Neg. LLF: 80.21293152574434
Iteration: 14, Func. Count: 135, Neg. LLF: 80.21181052118494
Iteration: 15, Func. Count: 144, Neg. LLF: 80.21151675416726
Iteration: 16, Func. Count: 153, Neg. LLF: 80.21151452265907
Iteration: 17, Func. Count: 161, Neg. LLF: 80.21151452511853
Optimization terminated successfully (Exit mode 0)
Current function value: 80.21151452265907
Iterations: 17
Function evaluations: 161
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 436657.738128286
Iteration: 2, Func. Count: 22, Neg. LLF: 12208470.590555355
Iteration: 3, Func. Count: 33, Neg. LLF: 255.75072642649718
Iteration: 4, Func. Count: 44, Neg. LLF: 12184427.51656629
Iteration: 5, Func. Count: 55, Neg. LLF: 173.69436122182046
Iteration: 6, Func. Count: 66, Neg. LLF: 200.65720808466503
Iteration: 7, Func. Count: 77, Neg. LLF: 82.1479965268246
Iteration: 8, Func. Count: 87, Neg. LLF: 82.41250051945421
Iteration: 9, Func. Count: 99, Neg. LLF: 131097.97034180432
Iteration: 10, Func. Count: 110, Neg. LLF: 80.24203056869794
Iteration: 11, Func. Count: 120, Neg. LLF: 80.34580092893252
Iteration: 12, Func. Count: 131, Neg. LLF: 80.21297328328681
Iteration: 13, Func. Count: 141, Neg. LLF: 80.21249436082162
Iteration: 14, Func. Count: 151, Neg. LLF: 80.2119674109152
Iteration: 15, Func. Count: 161, Neg. LLF: 80.21160126650317
Iteration: 16, Func. Count: 171, Neg. LLF: 80.21152220352994
Iteration: 17, Func. Count: 181, Neg. LLF: 80.21151454834984
Iteration: 18, Func. Count: 190, Neg. LLF: 80.21151462694391
Optimization terminated successfully (Exit mode 0)
Current function value: 80.21151454834984
Iterations: 18
Function evaluations: 190
Gradient evaluations: 18
Iteration: 1, Func. Count: 8, Neg. LLF: 138.8889846096763
Iteration: 2, Func. Count: 17, Neg. LLF: 150.54674760930132
Iteration: 3, Func. Count: 25, Neg. LLF: 10870894.141898062
Iteration: 4, Func. Count: 33, Neg. LLF: 10929696.123539068
Iteration: 5, Func. Count: 41, Neg. LLF: 5372576.1714905575
Iteration: 6, Func. Count: 49, Neg. LLF: 5030107.760961862
Iteration: 7, Func. Count: 57, Neg. LLF: 5299994.780339913
Iteration: 8, Func. Count: 65, Neg. LLF: 85.2577811495169
Iteration: 9, Func. Count: 73, Neg. LLF: 81.8765196652636
Iteration: 10, Func. Count: 80, Neg. LLF: 82.19851478953758
Iteration: 11, Func. Count: 89, Neg. LLF: 82.62229758410699
Iteration: 12, Func. Count: 97, Neg. LLF: 81.28278479088195
Iteration: 13, Func. Count: 105, Neg. LLF: 81.27357622104158
Iteration: 14, Func. Count: 113, Neg. LLF: 81.26257928652961
Iteration: 15, Func. Count: 120, Neg. LLF: 81.26257719584086
Iteration: 16, Func. Count: 127, Neg. LLF: 81.2625751859459
Iteration: 17, Func. Count: 134, Neg. LLF: 81.26257343866001
Iteration: 18, Func. Count: 140, Neg. LLF: 81.26257343868463
Optimization terminated successfully (Exit mode 0)
Current function value: 81.26257343866001
Iterations: 18
Function evaluations: 140
Gradient evaluations: 18
Iteration: 1, Func. Count: 9, Neg. LLF: 152.78826567182122
Iteration: 2, Func. Count: 20, Neg. LLF: 10519170.343643926
Iteration: 3, Func. Count: 29, Neg. LLF: 397.1219164102974
Iteration: 4, Func. Count: 38, Neg. LLF: 198.75437051874536
Iteration: 5, Func. Count: 47, Neg. LLF: 83.08368366911378
Iteration: 6, Func. Count: 55, Neg. LLF: 85.9393263297532
Iteration: 7, Func. Count: 65, Neg. LLF: 93.05893566451927
Iteration: 8, Func. Count: 74, Neg. LLF: 84.40662173156096
Iteration: 9, Func. Count: 83, Neg. LLF: 96.52503043808689
Iteration: 10, Func. Count: 92, Neg. LLF: 80.64218648757954
Iteration: 11, Func. Count: 100, Neg. LLF: 80.30744017551731
Iteration: 12, Func. Count: 108, Neg. LLF: 80.27520733878397
Iteration: 13, Func. Count: 116, Neg. LLF: 80.23553531996603
Iteration: 14, Func. Count: 124, Neg. LLF: 80.2250300695938
Iteration: 15, Func. Count: 132, Neg. LLF: 80.21337937747408
Iteration: 16, Func. Count: 140, Neg. LLF: 80.21237151532588
Iteration: 17, Func. Count: 148, Neg. LLF: 80.21154109184347
Iteration: 18, Func. Count: 156, Neg. LLF: 80.21151480131367
Iteration: 19, Func. Count: 163, Neg. LLF: 80.21151480139581
Optimization terminated successfully (Exit mode 0)
Current function value: 80.21151480131367
Iterations: 19
Function evaluations: 163
Gradient evaluations: 19
Iteration: 1, Func. Count: 10, Neg. LLF: 1074977.5595207436
Iteration: 2, Func. Count: 20, Neg. LLF: 12840087.819709387
Iteration: 3, Func. Count: 30, Neg. LLF: 411.3870744508951
Iteration: 4, Func. Count: 40, Neg. LLF: 12280889.372105928
Iteration: 5, Func. Count: 50, Neg. LLF: 89.84054499750296
Iteration: 6, Func. Count: 60, Neg. LLF: 81.36965346550434
Iteration: 7, Func. Count: 69, Neg. LLF: 81.0002984792901
Iteration: 8, Func. Count: 78, Neg. LLF: 83.15621808148798
Iteration: 9, Func. Count: 89, Neg. LLF: 80.34431515594078
Iteration: 10, Func. Count: 98, Neg. LLF: 80.23761340327347
Iteration: 11, Func. Count: 107, Neg. LLF: 80.21905014218541
Iteration: 12, Func. Count: 116, Neg. LLF: 80.213325532724
Iteration: 13, Func. Count: 125, Neg. LLF: 80.21183491927043
Iteration: 14, Func. Count: 134, Neg. LLF: 80.21152089290143
Iteration: 15, Func. Count: 143, Neg. LLF: 80.21151452114496
Iteration: 16, Func. Count: 151, Neg. LLF: 80.21151457012765
Optimization terminated successfully (Exit mode 0)
Current function value: 80.21151452114496
Iterations: 16
Function evaluations: 151
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 993961.729196016
Iteration: 2, Func. Count: 22, Neg. LLF: 12241032.5938177
Iteration: 3, Func. Count: 33, Neg. LLF: 423.00513418786977
Iteration: 4, Func. Count: 44, Neg. LLF: 12253436.79975606
Iteration: 5, Func. Count: 55, Neg. LLF: 103.63050914499867
Iteration: 6, Func. Count: 66, Neg. LLF: 122.49874614890997
Iteration: 7, Func. Count: 77, Neg. LLF: 81.7802000031839
Iteration: 8, Func. Count: 87, Neg. LLF: 80.62146604801436
Iteration: 9, Func. Count: 97, Neg. LLF: 81.54333375965803
Iteration: 10, Func. Count: 108, Neg. LLF: 80.26957454434621
Iteration: 11, Func. Count: 118, Neg. LLF: 80.3469381823701
Iteration: 12, Func. Count: 129, Neg. LLF: 80.29042283831953
Iteration: 13, Func. Count: 140, Neg. LLF: 80.24142871435915
Iteration: 14, Func. Count: 150, Neg. LLF: 80.24884903977863
Iteration: 15, Func. Count: 161, Neg. LLF: 80.22084579978466
Iteration: 16, Func. Count: 171, Neg. LLF: 80.21401184364835
Iteration: 17, Func. Count: 181, Neg. LLF: 80.21158131126906
Iteration: 18, Func. Count: 191, Neg. LLF: 80.21151645960286
Iteration: 19, Func. Count: 201, Neg. LLF: 80.21151453947205
Iteration: 20, Func. Count: 210, Neg. LLF: 80.21151454193112
Optimization terminated successfully (Exit mode 0)
Current function value: 80.21151453947205
Iterations: 20
Function evaluations: 210
Gradient evaluations: 20
Iteration: 1, Func. Count: 12, Neg. LLF: 434574.5632965543
Iteration: 2, Func. Count: 24, Neg. LLF: 12210095.034630012
Iteration: 3, Func. Count: 36, Neg. LLF: 255.30461483373927
Iteration: 4, Func. Count: 48, Neg. LLF: 12184813.508159395
Iteration: 5, Func. Count: 60, Neg. LLF: 173.7966159088569
Iteration: 6, Func. Count: 72, Neg. LLF: 123.81235524606647
Iteration: 7, Func. Count: 84, Neg. LLF: 83.2079496480351
Iteration: 8, Func. Count: 95, Neg. LLF: 81.91435155972228
Iteration: 9, Func. Count: 106, Neg. LLF: 82.96670171700734
Iteration: 10, Func. Count: 118, Neg. LLF: 87.17818768759217
Iteration: 11, Func. Count: 130, Neg. LLF: 80.46989954327151
Iteration: 12, Func. Count: 141, Neg. LLF: 80.61171268520864
Iteration: 13, Func. Count: 153, Neg. LLF: 81.58243808688829
Iteration: 14, Func. Count: 165, Neg. LLF: 80.34354380776176
Iteration: 15, Func. Count: 176, Neg. LLF: 80.37930631945025
Iteration: 16, Func. Count: 188, Neg. LLF: 80.27904869153123
Iteration: 17, Func. Count: 199, Neg. LLF: 80.23491603323896
Iteration: 18, Func. Count: 210, Neg. LLF: 80.2156611084103
Iteration: 19, Func. Count: 221, Neg. LLF: 80.21193871863184
Iteration: 20, Func. Count: 232, Neg. LLF: 80.21163575154284
Iteration: 21, Func. Count: 243, Neg. LLF: 80.21153047299826
Iteration: 22, Func. Count: 254, Neg. LLF: 80.21151492725333
Iteration: 23, Func. Count: 264, Neg. LLF: 80.2115150058106
Optimization terminated successfully (Exit mode 0)
Current function value: 80.21151492725333
Iterations: 23
Function evaluations: 264
Gradient evaluations: 23
Iteration: 1, Func. Count: 9, Neg. LLF: 139.32468111514723
Iteration: 2, Func. Count: 19, Neg. LLF: 154.42532574476843
Iteration: 3, Func. Count: 28, Neg. LLF: 10846751.622656643
Iteration: 4, Func. Count: 37, Neg. LLF: 10955673.875139385
Iteration: 5, Func. Count: 46, Neg. LLF: 5359161.360294263
Iteration: 6, Func. Count: 55, Neg. LLF: 5010591.702725289
Iteration: 7, Func. Count: 64, Neg. LLF: 5297832.063604899
Iteration: 8, Func. Count: 73, Neg. LLF: 84.8232824581614
Iteration: 9, Func. Count: 81, Neg. LLF: 2049119.1495070432
Iteration: 10, Func. Count: 90, Neg. LLF: 109.38559477017998
Iteration: 11, Func. Count: 102, Neg. LLF: 81.89647157353555
Iteration: 12, Func. Count: 110, Neg. LLF: 81.53872999464139
Iteration: 13, Func. Count: 118, Neg. LLF: 81.36757965818995
Iteration: 14, Func. Count: 126, Neg. LLF: 81.37105843854758
Iteration: 15, Func. Count: 135, Neg. LLF: 81.26989111947073
Iteration: 16, Func. Count: 143, Neg. LLF: 81.26535183668032
Iteration: 17, Func. Count: 151, Neg. LLF: 81.2631888874333
Iteration: 18, Func. Count: 159, Neg. LLF: 81.26260106671535
Iteration: 19, Func. Count: 167, Neg. LLF: 81.26259427195714
Iteration: 20, Func. Count: 175, Neg. LLF: 81.26259241894984
Iteration: 21, Func. Count: 183, Neg. LLF: 81.26258483857683
Iteration: 22, Func. Count: 191, Neg. LLF: 81.26257808654096
Iteration: 23, Func. Count: 199, Neg. LLF: 81.26257381209322
Iteration: 24, Func. Count: 207, Neg. LLF: 81.26257303700729
Optimization terminated successfully (Exit mode 0)
Current function value: 81.26257303700729
Iterations: 24
Function evaluations: 207
Gradient evaluations: 24
Iteration: 1, Func. Count: 10, Neg. LLF: 152.36484834160547
Iteration: 2, Func. Count: 22, Neg. LLF: 10531937.580694403
Iteration: 3, Func. Count: 32, Neg. LLF: 406.0626157482081
Iteration: 4, Func. Count: 42, Neg. LLF: 196.56939309433258
Iteration: 5, Func. Count: 52, Neg. LLF: 83.06809315231166
Iteration: 6, Func. Count: 61, Neg. LLF: 85.82330798605668
Iteration: 7, Func. Count: 72, Neg. LLF: 93.06485032883023
Iteration: 8, Func. Count: 82, Neg. LLF: 83.86479445953933
Iteration: 9, Func. Count: 92, Neg. LLF: 98.51846683735842
Iteration: 10, Func. Count: 102, Neg. LLF: 80.64959371072564
Iteration: 11, Func. Count: 111, Neg. LLF: 80.30479968589847
Iteration: 12, Func. Count: 120, Neg. LLF: 80.2677159389892
Iteration: 13, Func. Count: 129, Neg. LLF: 80.23450831715702
Iteration: 14, Func. Count: 138, Neg. LLF: 80.22394025387534
Iteration: 15, Func. Count: 147, Neg. LLF: 80.21312413408582
Iteration: 16, Func. Count: 156, Neg. LLF: 80.21226384585661
Iteration: 17, Func. Count: 165, Neg. LLF: 80.21152311938526
Iteration: 18, Func. Count: 174, Neg. LLF: 80.21151455374432
Iteration: 19, Func. Count: 182, Neg. LLF: 80.21151455376194
Optimization terminated successfully (Exit mode 0)
Current function value: 80.21151455374432
Iterations: 19
Function evaluations: 182
Gradient evaluations: 19
Iteration: 1, Func. Count: 11, Neg. LLF: 1063886.6153124932
Iteration: 2, Func. Count: 22, Neg. LLF: 12842020.47967026
Iteration: 3, Func. Count: 33, Neg. LLF: 407.2098876851482
Iteration: 4, Func. Count: 44, Neg. LLF: 12272404.739643447
Iteration: 5, Func. Count: 55, Neg. LLF: 89.7760493121798
Iteration: 6, Func. Count: 66, Neg. LLF: 81.39225342647138
Iteration: 7, Func. Count: 76, Neg. LLF: 80.8937171896796
Iteration: 8, Func. Count: 86, Neg. LLF: 83.09933706914225
Iteration: 9, Func. Count: 98, Neg. LLF: 80.34550950889779
Iteration: 10, Func. Count: 108, Neg. LLF: 80.23267176302156
Iteration: 11, Func. Count: 118, Neg. LLF: 80.21765808781711
Iteration: 12, Func. Count: 128, Neg. LLF: 80.2126289768966
Iteration: 13, Func. Count: 138, Neg. LLF: 80.21169810166222
Iteration: 14, Func. Count: 148, Neg. LLF: 80.2115153781516
Iteration: 15, Func. Count: 158, Neg. LLF: 80.21151453766151
Optimization terminated successfully (Exit mode 0)
Current function value: 80.21151453766151
Iterations: 15
Function evaluations: 158
Gradient evaluations: 15
Iteration: 1, Func. Count: 12, Neg. LLF: 986166.7318287402
Iteration: 2, Func. Count: 24, Neg. LLF: 12241751.734415203
Iteration: 3, Func. Count: 36, Neg. LLF: 419.59861955568715
Iteration: 4, Func. Count: 48, Neg. LLF: 12247632.669140156
Iteration: 5, Func. Count: 60, Neg. LLF: 103.38678343881075
Iteration: 6, Func. Count: 72, Neg. LLF: 122.42471904879329
Iteration: 7, Func. Count: 84, Neg. LLF: 81.77218097736511
Iteration: 8, Func. Count: 95, Neg. LLF: 80.61424082478109
Iteration: 9, Func. Count: 106, Neg. LLF: 81.4742382412142
Iteration: 10, Func. Count: 118, Neg. LLF: 80.26394446353986
Iteration: 11, Func. Count: 129, Neg. LLF: 80.37045833152004
Iteration: 12, Func. Count: 141, Neg. LLF: 80.26329029677363
Iteration: 13, Func. Count: 153, Neg. LLF: 80.23855967474404
Iteration: 14, Func. Count: 164, Neg. LLF: 80.26287444885604
Iteration: 15, Func. Count: 176, Neg. LLF: 80.22206758355996
Iteration: 16, Func. Count: 187, Neg. LLF: 80.21395313380731
Iteration: 17, Func. Count: 198, Neg. LLF: 80.21162976334391
Iteration: 18, Func. Count: 209, Neg. LLF: 80.21151506468689
Iteration: 19, Func. Count: 220, Neg. LLF: 80.21151453082616
Optimization terminated successfully (Exit mode 0)
Current function value: 80.21151453082616
Iterations: 19
Function evaluations: 220
Gradient evaluations: 19
Iteration: 1, Func. Count: 13, Neg. LLF: 431217.7131678304
Iteration: 2, Func. Count: 26, Neg. LLF: 12212110.414279694
Iteration: 3, Func. Count: 39, Neg. LLF: 254.08692212715525
Iteration: 4, Func. Count: 52, Neg. LLF: 12181302.365346868
Iteration: 5, Func. Count: 65, Neg. LLF: 173.93541701576305
Iteration: 6, Func. Count: 78, Neg. LLF: 115.84906091069936
Iteration: 7, Func. Count: 91, Neg. LLF: 83.1305403807174
Iteration: 8, Func. Count: 103, Neg. LLF: 81.91932345778181
Iteration: 9, Func. Count: 115, Neg. LLF: 83.35895819156244
Iteration: 10, Func. Count: 128, Neg. LLF: 89.45760961759102
Iteration: 11, Func. Count: 141, Neg. LLF: 80.47654169786529
Iteration: 12, Func. Count: 153, Neg. LLF: 82.81417415911822
Iteration: 13, Func. Count: 166, Neg. LLF: 80.96837988776592
Iteration: 14, Func. Count: 179, Neg. LLF: 80.75245444021752
Iteration: 15, Func. Count: 192, Neg. LLF: 80.29280020147914
Iteration: 16, Func. Count: 204, Neg. LLF: 80.2528419861184
Iteration: 17, Func. Count: 216, Neg. LLF: 80.2262495436957
Iteration: 18, Func. Count: 228, Neg. LLF: 80.21217706056082
Iteration: 19, Func. Count: 240, Neg. LLF: 80.21153546721514
Iteration: 20, Func. Count: 252, Neg. LLF: 80.211516611637
Iteration: 21, Func. Count: 264, Neg. LLF: 80.21151454019495
Iteration: 22, Func. Count: 275, Neg. LLF: 80.211514618786
Optimization terminated successfully (Exit mode 0)
Current function value: 80.21151454019495
Iterations: 22
Function evaluations: 275
Gradient evaluations: 22
Iteration: 1, Func. Count: 6, Neg. LLF: 156.74596295525652
Iteration: 2, Func. Count: 13, Neg. LLF: 111.86695449187194
Iteration: 3, Func. Count: 19, Neg. LLF: 1445.2083231132815
Iteration: 4, Func. Count: 25, Neg. LLF: 2644.77725276965
Iteration: 5, Func. Count: 31, Neg. LLF: 1859.8850071988854
Iteration: 6, Func. Count: 37, Neg. LLF: 4505.070128755426
Iteration: 7, Func. Count: 43, Neg. LLF: 1227.094570182019
Iteration: 8, Func. Count: 49, Neg. LLF: 101.18303931929292
Iteration: 9, Func. Count: 55, Neg. LLF: 94.04009551718538
Iteration: 10, Func. Count: 61, Neg. LLF: 87.90782344486406
Iteration: 11, Func. Count: 67, Neg. LLF: 85.76413269315229
Iteration: 12, Func. Count: 72, Neg. LLF: 85.76863957102472
Iteration: 13, Func. Count: 78, Neg. LLF: 85.89823179181354
Iteration: 14, Func. Count: 84, Neg. LLF: 85.53108776763074
Iteration: 15, Func. Count: 89, Neg. LLF: 85.52940274604512
Iteration: 16, Func. Count: 95, Neg. LLF: 85.52505258087557
Iteration: 17, Func. Count: 100, Neg. LLF: 85.52502861378075
Iteration: 18, Func. Count: 105, Neg. LLF: 85.5250247955607
Iteration: 19, Func. Count: 109, Neg. LLF: 85.52502477354105
Optimization terminated successfully (Exit mode 0)
Current function value: 85.5250247955607
Iterations: 19
Function evaluations: 109
Gradient evaluations: 19
Iteration: 1, Func. Count: 7, Neg. LLF: 149.5435486403178
Iteration: 2, Func. Count: 15, Neg. LLF: 330.2706884549502
Iteration: 3, Func. Count: 22, Neg. LLF: 4175.339654663556
Iteration: 4, Func. Count: 29, Neg. LLF: 118.37856396329246
Iteration: 5, Func. Count: 36, Neg. LLF: 87.4610674871788
Iteration: 6, Func. Count: 42, Neg. LLF: 86.90064389689911
Iteration: 7, Func. Count: 49, Neg. LLF: 86.12042398857656
Iteration: 8, Func. Count: 56, Neg. LLF: 86.37999099919584
Iteration: 9, Func. Count: 63, Neg. LLF: 85.54639570687252
Iteration: 10, Func. Count: 69, Neg. LLF: 85.5365884220131
Iteration: 11, Func. Count: 75, Neg. LLF: 85.52739865970409
Iteration: 12, Func. Count: 81, Neg. LLF: 85.52506971098184
Iteration: 13, Func. Count: 87, Neg. LLF: 85.5250682052105
Iteration: 14, Func. Count: 94, Neg. LLF: 85.52502478672338
Iteration: 15, Func. Count: 99, Neg. LLF: 85.52502476681018
Optimization terminated successfully (Exit mode 0)
Current function value: 85.52502478672338
Iterations: 15
Function evaluations: 99
Gradient evaluations: 15
Iteration: 1, Func. Count: 8, Neg. LLF: 142.69148539520177
Iteration: 2, Func. Count: 17, Neg. LLF: 803.9438575025237
Iteration: 3, Func. Count: 25, Neg. LLF: 115.2012805792805
Iteration: 4, Func. Count: 33, Neg. LLF: 158.70478316250222
Iteration: 5, Func. Count: 41, Neg. LLF: 92.27863090710069
Iteration: 6, Func. Count: 49, Neg. LLF: 86.53472374761867
Iteration: 7, Func. Count: 56, Neg. LLF: 240.51887046768923
Iteration: 8, Func. Count: 64, Neg. LLF: 98.71898767377313
Iteration: 9, Func. Count: 73, Neg. LLF: 85.54832578074169
Iteration: 10, Func. Count: 80, Neg. LLF: 85.5410419996294
Iteration: 11, Func. Count: 87, Neg. LLF: 85.53424153503961
Iteration: 12, Func. Count: 94, Neg. LLF: 85.53311692792262
Iteration: 13, Func. Count: 101, Neg. LLF: 85.53255500689035
Iteration: 14, Func. Count: 108, Neg. LLF: 85.53216042471625
Iteration: 15, Func. Count: 115, Neg. LLF: 85.53048395644446
Iteration: 16, Func. Count: 122, Neg. LLF: 85.52757226115932
Iteration: 17, Func. Count: 129, Neg. LLF: 85.52513505813093
Iteration: 18, Func. Count: 136, Neg. LLF: 85.5250402280265
Iteration: 19, Func. Count: 143, Neg. LLF: 85.52503068465212
Iteration: 20, Func. Count: 150, Neg. LLF: 85.52502663254215
Iteration: 21, Func. Count: 157, Neg. LLF: 85.52502490947985
Iteration: 22, Func. Count: 163, Neg. LLF: 85.52502493316814
Optimization terminated successfully (Exit mode 0)
Current function value: 85.52502490947985
Iterations: 22
Function evaluations: 163
Gradient evaluations: 22
Iteration: 1, Func. Count: 9, Neg. LLF: 136.65112455177317
Iteration: 2, Func. Count: 18, Neg. LLF: 102.1507583822033
Iteration: 3, Func. Count: 27, Neg. LLF: 86.88190055236497
Iteration: 4, Func. Count: 35, Neg. LLF: 99.5183086518428
Iteration: 5, Func. Count: 45, Neg. LLF: 87.79478843405295
Iteration: 6, Func. Count: 54, Neg. LLF: 85.60309017750525
Iteration: 7, Func. Count: 63, Neg. LLF: 85.53561829381589
Iteration: 8, Func. Count: 71, Neg. LLF: 85.52619838426277
Iteration: 9, Func. Count: 79, Neg. LLF: 85.52502710417438
Iteration: 10, Func. Count: 87, Neg. LLF: 85.52502501665212
Iteration: 11, Func. Count: 94, Neg. LLF: 85.5250249999191
Optimization terminated successfully (Exit mode 0)
Current function value: 85.52502501665212
Iterations: 11
Function evaluations: 94
Gradient evaluations: 11
Iteration: 1, Func. Count: 10, Neg. LLF: 133.90354386662844
Iteration: 2, Func. Count: 20, Neg. LLF: 95.9166447351175
Iteration: 3, Func. Count: 30, Neg. LLF: 91.33893748952386
Iteration: 4, Func. Count: 40, Neg. LLF: 85.9945023489617
Iteration: 5, Func. Count: 49, Neg. LLF: 86.84600871859296
Iteration: 6, Func. Count: 60, Neg. LLF: 124.73482153846722
Iteration: 7, Func. Count: 70, Neg. LLF: 85.6188365274807
Iteration: 8, Func. Count: 79, Neg. LLF: 85.52706627238089
Iteration: 9, Func. Count: 88, Neg. LLF: 85.65149522611735
Iteration: 10, Func. Count: 99, Neg. LLF: 85.52679347833553
Iteration: 11, Func. Count: 108, Neg. LLF: 85.5264277363555
Iteration: 12, Func. Count: 117, Neg. LLF: 85.52624134223359
Iteration: 13, Func. Count: 126, Neg. LLF: 85.52558926104889
Iteration: 14, Func. Count: 135, Neg. LLF: 85.52519049234523
Iteration: 15, Func. Count: 144, Neg. LLF: 85.52503321302699
Iteration: 16, Func. Count: 153, Neg. LLF: 85.52502501248593
Iteration: 17, Func. Count: 161, Neg. LLF: 85.52502509463625
Optimization terminated successfully (Exit mode 0)
Current function value: 85.52502501248593
Iterations: 17
Function evaluations: 161
Gradient evaluations: 17
Iteration: 1, Func. Count: 7, Neg. LLF: 158.494331645552
Iteration: 2, Func. Count: 15, Neg. LLF: 136.245998769604
Iteration: 3, Func. Count: 22, Neg. LLF: 11704277.556224002
Iteration: 4, Func. Count: 29, Neg. LLF: 11034499.080846736
Iteration: 5, Func. Count: 36, Neg. LLF: 11006542.09350529
Iteration: 6, Func. Count: 43, Neg. LLF: 10903424.755124994
Iteration: 7, Func. Count: 50, Neg. LLF: 61096.386535564816
Iteration: 8, Func. Count: 57, Neg. LLF: 84.85235319138988
Iteration: 9, Func. Count: 64, Neg. LLF: 85.45025977765192
Iteration: 10, Func. Count: 71, Neg. LLF: 84.98451567876059
Iteration: 11, Func. Count: 78, Neg. LLF: 80.94540751077393
Iteration: 12, Func. Count: 84, Neg. LLF: 80.90833831950981
Iteration: 13, Func. Count: 90, Neg. LLF: 80.90544729804016
Iteration: 14, Func. Count: 96, Neg. LLF: 80.90516429546182
Iteration: 15, Func. Count: 102, Neg. LLF: 80.9051618662636
Iteration: 16, Func. Count: 107, Neg. LLF: 80.90516223439482
Optimization terminated successfully (Exit mode 0)
Current function value: 80.9051618662636
Iterations: 16
Function evaluations: 107
Gradient evaluations: 16
Iteration: 1, Func. Count: 8, Neg. LLF: 146.87459827088827
Iteration: 2, Func. Count: 17, Neg. LLF: 1097.9094746821202
Iteration: 3, Func. Count: 25, Neg. LLF: 11706029.647796707
Iteration: 4, Func. Count: 33, Neg. LLF: 532.9964208301782
Iteration: 5, Func. Count: 41, Neg. LLF: 1123.1993833594242
Iteration: 6, Func. Count: 49, Neg. LLF: 80.66550795403928
Iteration: 7, Func. Count: 56, Neg. LLF: 83.58586639724612
Iteration: 8, Func. Count: 66, Neg. LLF: 81.41782543057191
Iteration: 9, Func. Count: 74, Neg. LLF: 80.26204936022634
Iteration: 10, Func. Count: 81, Neg. LLF: 80.20560610287446
Iteration: 11, Func. Count: 88, Neg. LLF: 80.20288579301089
Iteration: 12, Func. Count: 95, Neg. LLF: 80.1995113444719
Iteration: 13, Func. Count: 102, Neg. LLF: 80.19798601407639
Iteration: 14, Func. Count: 109, Neg. LLF: 80.19771012232957
Iteration: 15, Func. Count: 116, Neg. LLF: 80.19769124961202
Iteration: 16, Func. Count: 122, Neg. LLF: 80.19769124961672
Optimization terminated successfully (Exit mode 0)
Current function value: 80.19769124961202
Iterations: 16
Function evaluations: 122
Gradient evaluations: 16
Iteration: 1, Func. Count: 9, Neg. LLF: 138.46621310006623
Iteration: 2, Func. Count: 19, Neg. LLF: 567.6832292148723
Iteration: 3, Func. Count: 28, Neg. LLF: 12045727.898339812
Iteration: 4, Func. Count: 37, Neg. LLF: 152479.50875298347
Iteration: 5, Func. Count: 46, Neg. LLF: 1030.5942023845917
Iteration: 6, Func. Count: 55, Neg. LLF: 171.42943721354848
Iteration: 7, Func. Count: 64, Neg. LLF: 80.83207265819944
Iteration: 8, Func. Count: 72, Neg. LLF: 140.81306211782584
Iteration: 9, Func. Count: 82, Neg. LLF: 83.7823640233573
Iteration: 10, Func. Count: 92, Neg. LLF: 80.21337520172193
Iteration: 11, Func. Count: 100, Neg. LLF: 80.20001898330382
Iteration: 12, Func. Count: 108, Neg. LLF: 80.19871242573758
Iteration: 13, Func. Count: 116, Neg. LLF: 80.1983433262218
Iteration: 14, Func. Count: 124, Neg. LLF: 80.19799319810166
Iteration: 15, Func. Count: 132, Neg. LLF: 80.19770570958606
Iteration: 16, Func. Count: 140, Neg. LLF: 80.19769152497145
Iteration: 17, Func. Count: 147, Neg. LLF: 80.1976915741434
Optimization terminated successfully (Exit mode 0)
Current function value: 80.19769152497145
Iterations: 17
Function evaluations: 147
Gradient evaluations: 17
Iteration: 1, Func. Count: 10, Neg. LLF: 132.21851660559884
Iteration: 2, Func. Count: 21, Neg. LLF: 538.4925484709672
Iteration: 3, Func. Count: 31, Neg. LLF: 12048109.269544005
Iteration: 4, Func. Count: 41, Neg. LLF: 566.317065636589
Iteration: 5, Func. Count: 51, Neg. LLF: 3651.401411674784
Iteration: 6, Func. Count: 61, Neg. LLF: 204.96432961933186
Iteration: 7, Func. Count: 71, Neg. LLF: 81.75050590635884
Iteration: 8, Func. Count: 80, Neg. LLF: 93.71017427796225
Iteration: 9, Func. Count: 92, Neg. LLF: 97.68044445098587
Iteration: 10, Func. Count: 104, Neg. LLF: 80.22042516165483
Iteration: 11, Func. Count: 113, Neg. LLF: 80.20790171805177
Iteration: 12, Func. Count: 122, Neg. LLF: 80.20298335042371
Iteration: 13, Func. Count: 131, Neg. LLF: 80.19952083581924
Iteration: 14, Func. Count: 140, Neg. LLF: 80.19874094023024
Iteration: 15, Func. Count: 149, Neg. LLF: 80.19808755476042
Iteration: 16, Func. Count: 158, Neg. LLF: 80.19777079108499
Iteration: 17, Func. Count: 167, Neg. LLF: 80.19769509469367
Iteration: 18, Func. Count: 176, Neg. LLF: 80.19769124433306
Iteration: 19, Func. Count: 184, Neg. LLF: 80.197691245511
Optimization terminated successfully (Exit mode 0)
Current function value: 80.19769124433306
Iterations: 19
Function evaluations: 184
Gradient evaluations: 19
Iteration: 1, Func. Count: 11, Neg. LLF: 130.13601586256175
Iteration: 2, Func. Count: 23, Neg. LLF: 515.821233887314
Iteration: 3, Func. Count: 34, Neg. LLF: 12088992.233942118
Iteration: 4, Func. Count: 45, Neg. LLF: 320.81898849650327
Iteration: 5, Func. Count: 56, Neg. LLF: 3463.004796676324
Iteration: 6, Func. Count: 67, Neg. LLF: 245.39429190493618
Iteration: 7, Func. Count: 78, Neg. LLF: 83.37712427549187
Iteration: 8, Func. Count: 88, Neg. LLF: 84.13254062897788
Iteration: 9, Func. Count: 101, Neg. LLF: 98.67665438644785
Iteration: 10, Func. Count: 113, Neg. LLF: 81.3191803580667
Iteration: 11, Func. Count: 124, Neg. LLF: 80.31010706008448
Iteration: 12, Func. Count: 134, Neg. LLF: 80.25976714611782
Iteration: 13, Func. Count: 144, Neg. LLF: 80.36215989310611
Iteration: 14, Func. Count: 155, Neg. LLF: 80.19846724816094
Iteration: 15, Func. Count: 165, Neg. LLF: 80.19775652797175
Iteration: 16, Func. Count: 175, Neg. LLF: 80.19769802774292
Iteration: 17, Func. Count: 185, Neg. LLF: 80.19769220144408
Iteration: 18, Func. Count: 195, Neg. LLF: 80.19769126020412
Optimization terminated successfully (Exit mode 0)
Current function value: 80.19769126020412
Iterations: 18
Function evaluations: 195
Gradient evaluations: 18
Iteration: 1, Func. Count: 8, Neg. LLF: 161.26503867900706
Iteration: 2, Func. Count: 17, Neg. LLF: 213.13460452283917
Iteration: 3, Func. Count: 25, Neg. LLF: 8280769.282856179
Iteration: 4, Func. Count: 33, Neg. LLF: 7988464.250968648
Iteration: 5, Func. Count: 41, Neg. LLF: 7908287.791076102
Iteration: 6, Func. Count: 49, Neg. LLF: 7911473.986873126
Iteration: 7, Func. Count: 57, Neg. LLF: 7906671.988159884
Iteration: 8, Func. Count: 65, Neg. LLF: 173.35758285630425
Iteration: 9, Func. Count: 73, Neg. LLF: 82.43390520940592
Iteration: 10, Func. Count: 81, Neg. LLF: 81.70481349324048
Iteration: 11, Func. Count: 89, Neg. LLF: 88.63197924759797
Iteration: 12, Func. Count: 97, Neg. LLF: 79.94253276400592
Iteration: 13, Func. Count: 104, Neg. LLF: 79.93760638927218
Iteration: 14, Func. Count: 111, Neg. LLF: 79.93751423236306
Iteration: 15, Func. Count: 118, Neg. LLF: 79.93749968433373
Iteration: 16, Func. Count: 125, Neg. LLF: 79.9374942267875
Iteration: 17, Func. Count: 131, Neg. LLF: 79.93749422664877
Optimization terminated successfully (Exit mode 0)
Current function value: 79.9374942267875
Iterations: 17
Function evaluations: 131
Gradient evaluations: 17
Iteration: 1, Func. Count: 9, Neg. LLF: 148.59597763423886
Iteration: 2, Func. Count: 19, Neg. LLF: 61076388.67531648
Iteration: 3, Func. Count: 28, Neg. LLF: 12061578.324100744
Iteration: 4, Func. Count: 37, Neg. LLF: 216495.8675181302
Iteration: 5, Func. Count: 46, Neg. LLF: 2523.754714254211
Iteration: 6, Func. Count: 55, Neg. LLF: 81.84428532834389
Iteration: 7, Func. Count: 63, Neg. LLF: 93.14426083382125
Iteration: 8, Func. Count: 72, Neg. LLF: 80.71649537889934
Iteration: 9, Func. Count: 81, Neg. LLF: 105.84486798744972
Iteration: 10, Func. Count: 90, Neg. LLF: 79.97342840972978
Iteration: 11, Func. Count: 98, Neg. LLF: 79.94403551016686
Iteration: 12, Func. Count: 106, Neg. LLF: 79.94098193718419
Iteration: 13, Func. Count: 114, Neg. LLF: 79.9397468792367
Iteration: 14, Func. Count: 122, Neg. LLF: 79.93805938875204
Iteration: 15, Func. Count: 130, Neg. LLF: 79.93755085320713
Iteration: 16, Func. Count: 138, Neg. LLF: 79.93749480603186
Iteration: 17, Func. Count: 146, Neg. LLF: 79.93749397516001
Optimization terminated successfully (Exit mode 0)
Current function value: 79.93749397516001
Iterations: 17
Function evaluations: 146
Gradient evaluations: 17
Iteration: 1, Func. Count: 10, Neg. LLF: 140.05710478530136
Iteration: 2, Func. Count: 21, Neg. LLF: 59726581.007422976
Iteration: 3, Func. Count: 31, Neg. LLF: 8345758.038465755
Iteration: 4, Func. Count: 41, Neg. LLF: 907697.0846484381
Iteration: 5, Func. Count: 51, Neg. LLF: 7904149.573742093
Iteration: 6, Func. Count: 61, Neg. LLF: 81.56569737597032
Iteration: 7, Func. Count: 70, Neg. LLF: 258.01581777501923
Iteration: 8, Func. Count: 80, Neg. LLF: 88.5997605138252
Iteration: 9, Func. Count: 90, Neg. LLF: 80.04563027255138
Iteration: 10, Func. Count: 99, Neg. LLF: 141.24581627590206
Iteration: 11, Func. Count: 109, Neg. LLF: 79.95917464417961
Iteration: 12, Func. Count: 118, Neg. LLF: 79.94953531041757
Iteration: 13, Func. Count: 127, Neg. LLF: 79.94404376016354
Iteration: 14, Func. Count: 136, Neg. LLF: 79.94192318081902
Iteration: 15, Func. Count: 145, Neg. LLF: 79.93964337217601
Iteration: 16, Func. Count: 154, Neg. LLF: 79.93806065448067
Iteration: 17, Func. Count: 163, Neg. LLF: 79.93753210473598
Iteration: 18, Func. Count: 172, Neg. LLF: 79.93749625434982
Iteration: 19, Func. Count: 181, Neg. LLF: 79.93749409962614
Iteration: 20, Func. Count: 189, Neg. LLF: 79.93749414253514
Optimization terminated successfully (Exit mode 0)
Current function value: 79.93749409962614
Iterations: 20
Function evaluations: 189
Gradient evaluations: 20
Iteration: 1, Func. Count: 11, Neg. LLF: 133.39903382737086
Iteration: 2, Func. Count: 23, Neg. LLF: 61812129.72037853
Iteration: 3, Func. Count: 34, Neg. LLF: 8322181.696911671
Iteration: 4, Func. Count: 45, Neg. LLF: 125078.9101968833
Iteration: 5, Func. Count: 56, Neg. LLF: 7904222.099255805
Iteration: 6, Func. Count: 67, Neg. LLF: 92.98649370903713
Iteration: 7, Func. Count: 78, Neg. LLF: 80.9455510976674
Iteration: 8, Func. Count: 88, Neg. LLF: 80.40838311380101
Iteration: 9, Func. Count: 99, Neg. LLF: 79.98076904523957
Iteration: 10, Func. Count: 109, Neg. LLF: 79.96666992676478
Iteration: 11, Func. Count: 119, Neg. LLF: 79.95597261156128
Iteration: 12, Func. Count: 129, Neg. LLF: 79.94957426875959
Iteration: 13, Func. Count: 139, Neg. LLF: 79.94073945497738
Iteration: 14, Func. Count: 149, Neg. LLF: 79.93807004799731
Iteration: 15, Func. Count: 159, Neg. LLF: 79.93749739722068
Iteration: 16, Func. Count: 169, Neg. LLF: 79.9374940963028
Iteration: 17, Func. Count: 178, Neg. LLF: 79.93749410138
Optimization terminated successfully (Exit mode 0)
Current function value: 79.9374940963028
Iterations: 17
Function evaluations: 178
Gradient evaluations: 17
Iteration: 1, Func. Count: 12, Neg. LLF: 131.49618254987269
Iteration: 2, Func. Count: 25, Neg. LLF: 63545861.9384836
Iteration: 3, Func. Count: 37, Neg. LLF: 8442109.174458573
Iteration: 4, Func. Count: 49, Neg. LLF: 81356.59036051677
Iteration: 5, Func. Count: 61, Neg. LLF: 7903465.938405436
Iteration: 6, Func. Count: 73, Neg. LLF: 399.14968302436205
Iteration: 7, Func. Count: 85, Neg. LLF: 80.90722340664627
Iteration: 8, Func. Count: 96, Neg. LLF: 86.05451963394971
Iteration: 9, Func. Count: 108, Neg. LLF: 80.69850906250939
Iteration: 10, Func. Count: 120, Neg. LLF: 79.96815858985443
Iteration: 11, Func. Count: 131, Neg. LLF: 79.95681186314229
Iteration: 12, Func. Count: 142, Neg. LLF: 79.95046105497546
Iteration: 13, Func. Count: 153, Neg. LLF: 79.94561318469644
Iteration: 14, Func. Count: 164, Neg. LLF: 79.94198575193579
Iteration: 15, Func. Count: 175, Neg. LLF: 79.939224948866
Iteration: 16, Func. Count: 186, Neg. LLF: 79.93764456565525
Iteration: 17, Func. Count: 197, Neg. LLF: 79.93749891779439
Iteration: 18, Func. Count: 208, Neg. LLF: 79.93749416210392
Iteration: 19, Func. Count: 218, Neg. LLF: 79.93749422024865
Optimization terminated successfully (Exit mode 0)
Current function value: 79.93749416210392
Iterations: 19
Function evaluations: 218
Gradient evaluations: 19
Iteration: 1, Func. Count: 9, Neg. LLF: 161.16190424013266
Iteration: 2, Func. Count: 19, Neg. LLF: 213.7464108692999
Iteration: 3, Func. Count: 28, Neg. LLF: 8282985.1365249045
Iteration: 4, Func. Count: 37, Neg. LLF: 7985911.75641644
Iteration: 5, Func. Count: 46, Neg. LLF: 7908419.169725208
Iteration: 6, Func. Count: 55, Neg. LLF: 3912280.2233776553
Iteration: 7, Func. Count: 64, Neg. LLF: 3669091.2911254205
Iteration: 8, Func. Count: 73, Neg. LLF: 3773891.3503167043
Iteration: 9, Func. Count: 82, Neg. LLF: 100.02031073159844
Iteration: 10, Func. Count: 91, Neg. LLF: 102.47781236486519
Iteration: 11, Func. Count: 100, Neg. LLF: 80.88351436438747
Iteration: 12, Func. Count: 108, Neg. LLF: 80.7417209716307
Iteration: 13, Func. Count: 117, Neg. LLF: 83.96258554377175
Iteration: 14, Func. Count: 127, Neg. LLF: 92.32034406977508
Iteration: 15, Func. Count: 136, Neg. LLF: 79.82409874910573
Iteration: 16, Func. Count: 144, Neg. LLF: 79.81695683841285
Iteration: 17, Func. Count: 152, Neg. LLF: 79.8134573534373
Iteration: 18, Func. Count: 160, Neg. LLF: 79.81448063590452
Iteration: 19, Func. Count: 169, Neg. LLF: 79.8130319913085
Iteration: 20, Func. Count: 177, Neg. LLF: 79.81301283127934
Iteration: 21, Func. Count: 185, Neg. LLF: 79.81300673368594
Iteration: 22, Func. Count: 192, Neg. LLF: 79.81300673368992
Optimization terminated successfully (Exit mode 0)
Current function value: 79.81300673368594
Iterations: 22
Function evaluations: 192
Gradient evaluations: 22
Iteration: 1, Func. Count: 10, Neg. LLF: 148.28561227644036
Iteration: 2, Func. Count: 21, Neg. LLF: 61240360.398128405
Iteration: 3, Func. Count: 31, Neg. LLF: 12061626.519633451
Iteration: 4, Func. Count: 41, Neg. LLF: 215391.92385223325
Iteration: 5, Func. Count: 51, Neg. LLF: 2557.9073506865634
Iteration: 6, Func. Count: 61, Neg. LLF: 82.15162899401948
Iteration: 7, Func. Count: 70, Neg. LLF: 96.06673331618772
Iteration: 8, Func. Count: 80, Neg. LLF: 81.16110056317791
Iteration: 9, Func. Count: 90, Neg. LLF: 80.75957181574658
Iteration: 10, Func. Count: 100, Neg. LLF: 79.89625714902583
Iteration: 11, Func. Count: 109, Neg. LLF: 79.81610705153024
Iteration: 12, Func. Count: 118, Neg. LLF: 79.8132568185299
Iteration: 13, Func. Count: 127, Neg. LLF: 79.81301846539411
Iteration: 14, Func. Count: 136, Neg. LLF: 79.8130127351144
Iteration: 15, Func. Count: 145, Neg. LLF: 79.81301083880841
Iteration: 16, Func. Count: 154, Neg. LLF: 79.81300858204511
Iteration: 17, Func. Count: 163, Neg. LLF: 79.81300714288953
Iteration: 18, Func. Count: 171, Neg. LLF: 79.81300717888381
Optimization terminated successfully (Exit mode 0)
Current function value: 79.81300714288953
Iterations: 18
Function evaluations: 171
Gradient evaluations: 18
Iteration: 1, Func. Count: 11, Neg. LLF: 139.72743485263078
Iteration: 2, Func. Count: 23, Neg. LLF: 59806944.87311258
Iteration: 3, Func. Count: 34, Neg. LLF: 8345589.15226436
Iteration: 4, Func. Count: 45, Neg. LLF: 900502.7318834044
Iteration: 5, Func. Count: 56, Neg. LLF: 7904163.33947154
Iteration: 6, Func. Count: 67, Neg. LLF: 84.38451343431963
Iteration: 7, Func. Count: 78, Neg. LLF: 81.11467735666282
Iteration: 8, Func. Count: 88, Neg. LLF: 96.52858214354546
Iteration: 9, Func. Count: 99, Neg. LLF: 84.57854915393779
Iteration: 10, Func. Count: 111, Neg. LLF: 80.01198437247585
Iteration: 11, Func. Count: 121, Neg. LLF: 79.83263101540123
Iteration: 12, Func. Count: 131, Neg. LLF: 79.82561310317574
Iteration: 13, Func. Count: 141, Neg. LLF: 79.82297925950904
Iteration: 14, Func. Count: 151, Neg. LLF: 79.81812634783473
Iteration: 15, Func. Count: 161, Neg. LLF: 79.81501490865546
Iteration: 16, Func. Count: 171, Neg. LLF: 79.81326311667448
Iteration: 17, Func. Count: 181, Neg. LLF: 79.81303834086697
Iteration: 18, Func. Count: 191, Neg. LLF: 79.81301407766405
Iteration: 19, Func. Count: 201, Neg. LLF: 79.81300706635788
Iteration: 20, Func. Count: 210, Neg. LLF: 79.8130071152607
Optimization terminated successfully (Exit mode 0)
Current function value: 79.81300706635788
Iterations: 20
Function evaluations: 210
Gradient evaluations: 20
Iteration: 1, Func. Count: 12, Neg. LLF: 133.20465721645155
Iteration: 2, Func. Count: 25, Neg. LLF: 61869381.896129355
Iteration: 3, Func. Count: 37, Neg. LLF: 8323258.363422411
Iteration: 4, Func. Count: 49, Neg. LLF: 115211.80634225633
Iteration: 5, Func. Count: 61, Neg. LLF: 7904317.847997963
Iteration: 6, Func. Count: 73, Neg. LLF: 86.0759351609193
Iteration: 7, Func. Count: 85, Neg. LLF: 81.05056478111224
Iteration: 8, Func. Count: 96, Neg. LLF: 589.5392208545683
Iteration: 9, Func. Count: 108, Neg. LLF: 86.08724409005578
Iteration: 10, Func. Count: 121, Neg. LLF: 79.97303219242075
Iteration: 11, Func. Count: 132, Neg. LLF: 79.96237774868503
Iteration: 12, Func. Count: 144, Neg. LLF: 80.35509461161169
Iteration: 13, Func. Count: 156, Neg. LLF: 79.87395648267953
Iteration: 14, Func. Count: 167, Neg. LLF: 79.84556681064194
Iteration: 15, Func. Count: 178, Neg. LLF: 79.82780093770499
Iteration: 16, Func. Count: 189, Neg. LLF: 79.8148814736307
Iteration: 17, Func. Count: 200, Neg. LLF: 79.81214617185243
Iteration: 18, Func. Count: 211, Neg. LLF: 79.81189060745771
Iteration: 19, Func. Count: 222, Neg. LLF: 79.81187325813025
Iteration: 20, Func. Count: 233, Neg. LLF: 79.81187089958298
Iteration: 21, Func. Count: 243, Neg. LLF: 79.81187089956268
Optimization terminated successfully (Exit mode 0)
Current function value: 79.81187089958298
Iterations: 21
Function evaluations: 243
Gradient evaluations: 21
Iteration: 1, Func. Count: 13, Neg. LLF: 131.2966766239815
Iteration: 2, Func. Count: 27, Neg. LLF: 63608610.224863134
Iteration: 3, Func. Count: 40, Neg. LLF: 8442890.062898386
Iteration: 4, Func. Count: 53, Neg. LLF: 76757.6809046648
Iteration: 5, Func. Count: 66, Neg. LLF: 7903504.289975757
Iteration: 6, Func. Count: 79, Neg. LLF: 87.13074379459425
Iteration: 7, Func. Count: 92, Neg. LLF: 81.34960253252967
Iteration: 8, Func. Count: 104, Neg. LLF: 1441.5759962294953
Iteration: 9, Func. Count: 117, Neg. LLF: 100.31722296796401
Iteration: 10, Func. Count: 131, Neg. LLF: 80.0425291538906
Iteration: 11, Func. Count: 143, Neg. LLF: 80.28484272287204
Iteration: 12, Func. Count: 156, Neg. LLF: 80.48485956960756
Iteration: 13, Func. Count: 169, Neg. LLF: 79.95402031929335
Iteration: 14, Func. Count: 182, Neg. LLF: 79.8757152435612
Iteration: 15, Func. Count: 194, Neg. LLF: 79.83273867910664
Iteration: 16, Func. Count: 206, Neg. LLF: 79.82244889692515
Iteration: 17, Func. Count: 218, Neg. LLF: 79.81359201907534
Iteration: 18, Func. Count: 230, Neg. LLF: 79.81219897221698
Iteration: 19, Func. Count: 242, Neg. LLF: 79.81191425786977
Iteration: 20, Func. Count: 254, Neg. LLF: 79.81187708033937
Iteration: 21, Func. Count: 266, Neg. LLF: 79.81187124681753
Iteration: 22, Func. Count: 278, Neg. LLF: 79.81187062361225
Optimization terminated successfully (Exit mode 0)
Current function value: 79.81187062361225
Iterations: 22
Function evaluations: 278
Gradient evaluations: 22
Iteration: 1, Func. Count: 10, Neg. LLF: 161.14077368301918
Iteration: 2, Func. Count: 21, Neg. LLF: 213.88044716583565
Iteration: 3, Func. Count: 31, Neg. LLF: 8282620.297770578
Iteration: 4, Func. Count: 41, Neg. LLF: 7983860.717618099
Iteration: 5, Func. Count: 51, Neg. LLF: 7908330.007700749
Iteration: 6, Func. Count: 61, Neg. LLF: 3909656.631004149
Iteration: 7, Func. Count: 71, Neg. LLF: 3669865.315951211
Iteration: 8, Func. Count: 81, Neg. LLF: 3772038.885307034
Iteration: 9, Func. Count: 91, Neg. LLF: 99.9553373853482
Iteration: 10, Func. Count: 101, Neg. LLF: 101.97205145544811
Iteration: 11, Func. Count: 111, Neg. LLF: 80.96176275841155
Iteration: 12, Func. Count: 120, Neg. LLF: 80.74733947131833
Iteration: 13, Func. Count: 130, Neg. LLF: 84.0607679168525
Iteration: 14, Func. Count: 140, Neg. LLF: 87.54342650968785
Iteration: 15, Func. Count: 150, Neg. LLF: 80.98716132485495
Iteration: 16, Func. Count: 160, Neg. LLF: 80.8736829645967
Iteration: 17, Func. Count: 170, Neg. LLF: 80.89942976841179
Iteration: 18, Func. Count: 180, Neg. LLF: 79.84144059636097
Iteration: 19, Func. Count: 190, Neg. LLF: 79.81449081054173
Iteration: 20, Func. Count: 199, Neg. LLF: 79.81326492197526
Iteration: 21, Func. Count: 208, Neg. LLF: 79.81310298175264
Iteration: 22, Func. Count: 217, Neg. LLF: 79.81302673004535
Iteration: 23, Func. Count: 226, Neg. LLF: 79.81301003021268
Iteration: 24, Func. Count: 235, Neg. LLF: 79.81300678371102
Iteration: 25, Func. Count: 243, Neg. LLF: 79.81300688821413
Optimization terminated successfully (Exit mode 0)
Current function value: 79.81300678371102
Iterations: 25
Function evaluations: 243
Gradient evaluations: 25
Iteration: 1, Func. Count: 11, Neg. LLF: 147.93209136828287
Iteration: 2, Func. Count: 23, Neg. LLF: 61398852.79847706
Iteration: 3, Func. Count: 34, Neg. LLF: 12060495.087553238
Iteration: 4, Func. Count: 45, Neg. LLF: 213679.084165062
Iteration: 5, Func. Count: 56, Neg. LLF: 2449.03597260567
Iteration: 6, Func. Count: 67, Neg. LLF: 82.1608964855841
Iteration: 7, Func. Count: 77, Neg. LLF: 95.47818845703581
Iteration: 8, Func. Count: 88, Neg. LLF: 81.09548339659601
Iteration: 9, Func. Count: 99, Neg. LLF: 80.8154899536461
Iteration: 10, Func. Count: 110, Neg. LLF: 79.89866569045667
Iteration: 11, Func. Count: 120, Neg. LLF: 79.81664204150005
Iteration: 12, Func. Count: 130, Neg. LLF: 79.81334932426007
Iteration: 13, Func. Count: 140, Neg. LLF: 79.81302397541756
Iteration: 14, Func. Count: 150, Neg. LLF: 79.81301706762491
Iteration: 15, Func. Count: 160, Neg. LLF: 79.81301318548903
Iteration: 16, Func. Count: 170, Neg. LLF: 79.81300987082584
Iteration: 17, Func. Count: 180, Neg. LLF: 79.81300729463304
Iteration: 18, Func. Count: 189, Neg. LLF: 79.81300733060979
Optimization terminated successfully (Exit mode 0)
Current function value: 79.81300729463304
Iterations: 18
Function evaluations: 189
Gradient evaluations: 18
Iteration: 1, Func. Count: 12, Neg. LLF: 139.54895078082313
Iteration: 2, Func. Count: 25, Neg. LLF: 59873389.51757353
Iteration: 3, Func. Count: 37, Neg. LLF: 8342958.926147623
Iteration: 4, Func. Count: 49, Neg. LLF: 896531.6542638915
Iteration: 5, Func. Count: 61, Neg. LLF: 7904244.705989001
Iteration: 6, Func. Count: 73, Neg. LLF: 84.37070044002547
Iteration: 7, Func. Count: 85, Neg. LLF: 81.09727231408233
Iteration: 8, Func. Count: 96, Neg. LLF: 95.82838946332951
Iteration: 9, Func. Count: 108, Neg. LLF: 84.37369660054098
Iteration: 10, Func. Count: 121, Neg. LLF: 79.99336258062105
Iteration: 11, Func. Count: 132, Neg. LLF: 79.83198319534993
Iteration: 12, Func. Count: 143, Neg. LLF: 79.82509722251768
Iteration: 13, Func. Count: 154, Neg. LLF: 79.82253202941908
Iteration: 14, Func. Count: 165, Neg. LLF: 79.81772895219666
Iteration: 15, Func. Count: 176, Neg. LLF: 79.81475488255563
Iteration: 16, Func. Count: 187, Neg. LLF: 79.81321523805168
Iteration: 17, Func. Count: 198, Neg. LLF: 79.81303533636932
Iteration: 18, Func. Count: 209, Neg. LLF: 79.81301308499893
Iteration: 19, Func. Count: 220, Neg. LLF: 79.81300697566444
Iteration: 20, Func. Count: 230, Neg. LLF: 79.81300702456303
Optimization terminated successfully (Exit mode 0)
Current function value: 79.81300697566444
Iterations: 20
Function evaluations: 230
Gradient evaluations: 20
Iteration: 1, Func. Count: 13, Neg. LLF: 133.03840161014793
Iteration: 2, Func. Count: 27, Neg. LLF: 61949079.21712573
Iteration: 3, Func. Count: 40, Neg. LLF: 8321137.8433133345
Iteration: 4, Func. Count: 53, Neg. LLF: 109818.7324677499
Iteration: 5, Func. Count: 66, Neg. LLF: 7904433.751437643
Iteration: 6, Func. Count: 79, Neg. LLF: 86.03526664129738
Iteration: 7, Func. Count: 92, Neg. LLF: 81.04159947670773
Iteration: 8, Func. Count: 104, Neg. LLF: 382.8705901413003
Iteration: 9, Func. Count: 117, Neg. LLF: 85.68940054623768
Iteration: 10, Func. Count: 131, Neg. LLF: 79.97518297580052
Iteration: 11, Func. Count: 143, Neg. LLF: 79.93902732692037
Iteration: 12, Func. Count: 155, Neg. LLF: 80.14119179265151
Iteration: 13, Func. Count: 168, Neg. LLF: 79.87207410195256
Iteration: 14, Func. Count: 180, Neg. LLF: 79.85383672272049
Iteration: 15, Func. Count: 192, Neg. LLF: 79.83168851976481
Iteration: 16, Func. Count: 204, Neg. LLF: 79.817894637862
Iteration: 17, Func. Count: 216, Neg. LLF: 79.81251315053508
Iteration: 18, Func. Count: 228, Neg. LLF: 79.8119197158958
Iteration: 19, Func. Count: 240, Neg. LLF: 79.81187736713149
Iteration: 20, Func. Count: 252, Neg. LLF: 79.81187152247988
Iteration: 21, Func. Count: 264, Neg. LLF: 79.8118706469902
Optimization terminated successfully (Exit mode 0)
Current function value: 79.8118706469902
Iterations: 21
Function evaluations: 264
Gradient evaluations: 21
Iteration: 1, Func. Count: 14, Neg. LLF: 131.1339501241018
Iteration: 2, Func. Count: 29, Neg. LLF: 63688635.055398986
Iteration: 3, Func. Count: 43, Neg. LLF: 8440396.779409302
Iteration: 4, Func. Count: 57, Neg. LLF: 74083.79687462196
Iteration: 5, Func. Count: 71, Neg. LLF: 7903555.005148094
Iteration: 6, Func. Count: 85, Neg. LLF: 87.07643851561296
Iteration: 7, Func. Count: 99, Neg. LLF: 81.31970105056539
Iteration: 8, Func. Count: 112, Neg. LLF: 1459.7411999243243
Iteration: 9, Func. Count: 126, Neg. LLF: 98.18288915430206
Iteration: 10, Func. Count: 141, Neg. LLF: 80.0461864038151
Iteration: 11, Func. Count: 154, Neg. LLF: 80.18092114923813
Iteration: 12, Func. Count: 168, Neg. LLF: 80.45306559130704
Iteration: 13, Func. Count: 182, Neg. LLF: 79.94705416545953
Iteration: 14, Func. Count: 196, Neg. LLF: 79.87442638140212
Iteration: 15, Func. Count: 209, Neg. LLF: 79.83380078080458
Iteration: 16, Func. Count: 222, Neg. LLF: 79.82320820842752
Iteration: 17, Func. Count: 235, Neg. LLF: 79.81354999079889
Iteration: 18, Func. Count: 248, Neg. LLF: 79.8122125086401
Iteration: 19, Func. Count: 261, Neg. LLF: 79.8119119298733
Iteration: 20, Func. Count: 274, Neg. LLF: 79.8118759541717
Iteration: 21, Func. Count: 287, Neg. LLF: 79.81187118207748
Iteration: 22, Func. Count: 299, Neg. LLF: 79.81187122552464
Optimization terminated successfully (Exit mode 0)
Current function value: 79.81187118207748
Iterations: 22
Function evaluations: 299
Gradient evaluations: 22
Iteration: 1, Func. Count: 7, Neg. LLF: 145.91862026011893
Iteration: 2, Func. Count: 15, Neg. LLF: 152.5089417229448
Iteration: 3, Func. Count: 22, Neg. LLF: 2051.4319013856198
Iteration: 4, Func. Count: 29, Neg. LLF: 3462.436180115055
Iteration: 5, Func. Count: 36, Neg. LLF: 3661.123125429025
Iteration: 6, Func. Count: 43, Neg. LLF: 2635.822030600206
Iteration: 7, Func. Count: 50, Neg. LLF: 2818.4247569369677
Iteration: 8, Func. Count: 57, Neg. LLF: 18240.436173603
Iteration: 9, Func. Count: 64, Neg. LLF: 1771.7924331458291
Iteration: 10, Func. Count: 71, Neg. LLF: 2120.588080777011
Iteration: 11, Func. Count: 78, Neg. LLF: 86.91661881099002
Iteration: 12, Func. Count: 85, Neg. LLF: 85.98597031232325
Iteration: 13, Func. Count: 92, Neg. LLF: 85.65770458151911
Iteration: 14, Func. Count: 98, Neg. LLF: 85.53063758718376
Iteration: 15, Func. Count: 104, Neg. LLF: 85.5267107398575
Iteration: 16, Func. Count: 110, Neg. LLF: 85.5267232003927
Iteration: 17, Func. Count: 117, Neg. LLF: 85.52524441783919
Iteration: 18, Func. Count: 123, Neg. LLF: 85.52506648578968
Iteration: 19, Func. Count: 129, Neg. LLF: 85.52502488756747
Iteration: 20, Func. Count: 134, Neg. LLF: 85.5250249162521
Optimization terminated successfully (Exit mode 0)
Current function value: 85.52502488756747
Iterations: 20
Function evaluations: 134
Gradient evaluations: 20
Iteration: 1, Func. Count: 8, Neg. LLF: 125.42876360897756
Iteration: 2, Func. Count: 16, Neg. LLF: 111.05830418106892
Iteration: 3, Func. Count: 24, Neg. LLF: 662.6369245507923
Iteration: 4, Func. Count: 32, Neg. LLF: 994.9304434906704
Iteration: 5, Func. Count: 40, Neg. LLF: 177.99773787984208
Iteration: 6, Func. Count: 48, Neg. LLF: 126.3975403163285
Iteration: 7, Func. Count: 56, Neg. LLF: 86.97147904801274
Iteration: 8, Func. Count: 64, Neg. LLF: 85.59952493326169
Iteration: 9, Func. Count: 71, Neg. LLF: 85.53467801878118
Iteration: 10, Func. Count: 78, Neg. LLF: 85.53563220327761
Iteration: 11, Func. Count: 86, Neg. LLF: 85.53081122229764
Iteration: 12, Func. Count: 94, Neg. LLF: 85.52515347120467
Iteration: 13, Func. Count: 101, Neg. LLF: 85.5250342607526
Iteration: 14, Func. Count: 108, Neg. LLF: 85.5250248219579
Iteration: 15, Func. Count: 114, Neg. LLF: 85.52502480202276
Optimization terminated successfully (Exit mode 0)
Current function value: 85.5250248219579
Iterations: 15
Function evaluations: 114
Gradient evaluations: 15
Iteration: 1, Func. Count: 9, Neg. LLF: 118.29521684929328
Iteration: 2, Func. Count: 18, Neg. LLF: 108.43642853246776
Iteration: 3, Func. Count: 27, Neg. LLF: 760.0671860296478
Iteration: 4, Func. Count: 36, Neg. LLF: 3656.689967363466
Iteration: 5, Func. Count: 45, Neg. LLF: 215.80516658711892
Iteration: 6, Func. Count: 54, Neg. LLF: 234.1995688992081
Iteration: 7, Func. Count: 63, Neg. LLF: 90.04380949203345
Iteration: 8, Func. Count: 72, Neg. LLF: 85.66799978682911
Iteration: 9, Func. Count: 80, Neg. LLF: 85.59211970112767
Iteration: 10, Func. Count: 88, Neg. LLF: 85.67215746599537
Iteration: 11, Func. Count: 97, Neg. LLF: 85.53751545632343
Iteration: 12, Func. Count: 105, Neg. LLF: 85.53529565336056
Iteration: 13, Func. Count: 114, Neg. LLF: 85.5253028695897
Iteration: 14, Func. Count: 122, Neg. LLF: 85.52505169692438
Iteration: 15, Func. Count: 130, Neg. LLF: 85.5250259907598
Iteration: 16, Func. Count: 138, Neg. LLF: 85.5250248291546
Iteration: 17, Func. Count: 145, Neg. LLF: 85.52502485278644
Optimization terminated successfully (Exit mode 0)
Current function value: 85.5250248291546
Iterations: 17
Function evaluations: 145
Gradient evaluations: 17
Iteration: 1, Func. Count: 10, Neg. LLF: 178.32973416238954
Iteration: 2, Func. Count: 24, Neg. LLF: 108.74472152860342
Iteration: 3, Func. Count: 34, Neg. LLF: 92.82215948827516
Iteration: 4, Func. Count: 43, Neg. LLF: 92.77614453794038
Iteration: 5, Func. Count: 52, Neg. LLF: 92.76148180914488
Iteration: 6, Func. Count: 61, Neg. LLF: 92.76112290367615
Iteration: 7, Func. Count: 70, Neg. LLF: 92.76112106859921
Iteration: 8, Func. Count: 78, Neg. LLF: 92.76112139446992
Optimization terminated successfully (Exit mode 0)
Current function value: 92.76112106859921
Iterations: 8
Function evaluations: 78
Gradient evaluations: 8
Iteration: 1, Func. Count: 11, Neg. LLF: 180.23867154326035
Iteration: 2, Func. Count: 26, Neg. LLF: 109.75088396133278
Iteration: 3, Func. Count: 37, Neg. LLF: 92.70589311520162
Iteration: 4, Func. Count: 47, Neg. LLF: 92.67675840160518
Iteration: 5, Func. Count: 57, Neg. LLF: 92.66427931963678
Iteration: 6, Func. Count: 67, Neg. LLF: 92.66406450463654
Iteration: 7, Func. Count: 77, Neg. LLF: 92.66406370493443
Optimization terminated successfully (Exit mode 0)
Current function value: 92.66406370493443
Iterations: 7
Function evaluations: 77
Gradient evaluations: 7
Iteration: 1, Func. Count: 8, Neg. LLF: 148.52157450775758
Iteration: 2, Func. Count: 17, Neg. LLF: 167.3075178049762
Iteration: 3, Func. Count: 25, Neg. LLF: 10911561.014705643
Iteration: 4, Func. Count: 33, Neg. LLF: 10410157.775159176
Iteration: 5, Func. Count: 41, Neg. LLF: 10412564.053048847
Iteration: 6, Func. Count: 49, Neg. LLF: 10374888.747221611
Iteration: 7, Func. Count: 57, Neg. LLF: 10398905.130363036
Iteration: 8, Func. Count: 65, Neg. LLF: 10409982.435743222
Iteration: 9, Func. Count: 73, Neg. LLF: 10392752.114410276
Iteration: 10, Func. Count: 81, Neg. LLF: 107.11700801807194
Iteration: 11, Func. Count: 89, Neg. LLF: 10423030.762535961
Iteration: 12, Func. Count: 97, Neg. LLF: 83.01129154264282
Iteration: 13, Func. Count: 105, Neg. LLF: 81.95713370407262
Iteration: 14, Func. Count: 113, Neg. LLF: 82.24399829581182
Iteration: 15, Func. Count: 121, Neg. LLF: 80.90894354733963
Iteration: 16, Func. Count: 128, Neg. LLF: 80.90606584665043
Iteration: 17, Func. Count: 135, Neg. LLF: 80.90517339173904
Iteration: 18, Func. Count: 142, Neg. LLF: 80.90516204640699
Iteration: 19, Func. Count: 148, Neg. LLF: 80.90516241458579
Optimization terminated successfully (Exit mode 0)
Current function value: 80.90516204640699
Iterations: 19
Function evaluations: 148
Gradient evaluations: 19
Iteration: 1, Func. Count: 9, Neg. LLF: 125.40766154595198
Iteration: 2, Func. Count: 19, Neg. LLF: 289.8172252309477
Iteration: 3, Func. Count: 28, Neg. LLF: 12234497.496701997
Iteration: 4, Func. Count: 37, Neg. LLF: 22874.56713907651
Iteration: 5, Func. Count: 46, Neg. LLF: 11775214.38541761
Iteration: 6, Func. Count: 55, Neg. LLF: 1826.9751815583352
Iteration: 7, Func. Count: 64, Neg. LLF: 5880.773177734988
Iteration: 8, Func. Count: 73, Neg. LLF: 570.589333814715
Iteration: 9, Func. Count: 82, Neg. LLF: 84.00965519032826
Iteration: 10, Func. Count: 91, Neg. LLF: 80.8464711736038
Iteration: 11, Func. Count: 99, Neg. LLF: 80.78626411646783
Iteration: 12, Func. Count: 108, Neg. LLF: 80.91126094082443
Iteration: 13, Func. Count: 117, Neg. LLF: 80.26530261904942
Iteration: 14, Func. Count: 126, Neg. LLF: 80.2206212445603
Iteration: 15, Func. Count: 134, Neg. LLF: 80.20136131393343
Iteration: 16, Func. Count: 142, Neg. LLF: 80.19837036711509
Iteration: 17, Func. Count: 150, Neg. LLF: 80.19779188124194
Iteration: 18, Func. Count: 158, Neg. LLF: 80.19771531880217
Iteration: 19, Func. Count: 166, Neg. LLF: 80.19769366772216
Iteration: 20, Func. Count: 174, Neg. LLF: 80.19769122652204
Iteration: 21, Func. Count: 181, Neg. LLF: 80.19769122651707
Optimization terminated successfully (Exit mode 0)
Current function value: 80.19769122652204
Iterations: 21
Function evaluations: 181
Gradient evaluations: 21
Iteration: 1, Func. Count: 10, Neg. LLF: 119.21370742194244
Iteration: 2, Func. Count: 20, Neg. LLF: 155.33468136278833
Iteration: 3, Func. Count: 30, Neg. LLF: 13577956.418614008
Iteration: 4, Func. Count: 40, Neg. LLF: 12119161.060146187
Iteration: 5, Func. Count: 50, Neg. LLF: 44413.473519141015
Iteration: 6, Func. Count: 60, Neg. LLF: 26181.656279000814
Iteration: 7, Func. Count: 70, Neg. LLF: 1901.0857135567576
Iteration: 8, Func. Count: 80, Neg. LLF: 10371376.777533885
Iteration: 9, Func. Count: 90, Neg. LLF: 860.1515493902722
Iteration: 10, Func. Count: 100, Neg. LLF: 82.03792939596265
Iteration: 11, Func. Count: 109, Neg. LLF: 227.83195150774287
Iteration: 12, Func. Count: 119, Neg. LLF: 98.24342148321877
Iteration: 13, Func. Count: 130, Neg. LLF: 80.43304247886437
Iteration: 14, Func. Count: 139, Neg. LLF: 80.54633163129195
Iteration: 15, Func. Count: 149, Neg. LLF: 80.23184720837739
Iteration: 16, Func. Count: 158, Neg. LLF: 80.20163567813653
Iteration: 17, Func. Count: 167, Neg. LLF: 80.19789530113835
Iteration: 18, Func. Count: 176, Neg. LLF: 80.19784427581439
Iteration: 19, Func. Count: 185, Neg. LLF: 80.19782426333175
Iteration: 20, Func. Count: 194, Neg. LLF: 80.19777023227805
Iteration: 21, Func. Count: 203, Neg. LLF: 80.19772869274159
Iteration: 22, Func. Count: 212, Neg. LLF: 80.19769720496085
Iteration: 23, Func. Count: 221, Neg. LLF: 80.19769160525682
Iteration: 24, Func. Count: 229, Neg. LLF: 80.19769165454497
Optimization terminated successfully (Exit mode 0)
Current function value: 80.19769160525682
Iterations: 24
Function evaluations: 229
Gradient evaluations: 24
Iteration: 1, Func. Count: 11, Neg. LLF: 117.54392359485179
Iteration: 2, Func. Count: 22, Neg. LLF: 155.17086680666523
Iteration: 3, Func. Count: 33, Neg. LLF: 13314543.830259047
Iteration: 4, Func. Count: 44, Neg. LLF: 12104567.355222732
Iteration: 5, Func. Count: 55, Neg. LLF: 123596.98019763765
Iteration: 6, Func. Count: 66, Neg. LLF: 16699.775880301186
Iteration: 7, Func. Count: 77, Neg. LLF: 3909.7381971416985
Iteration: 8, Func. Count: 88, Neg. LLF: 5755.134123428229
Iteration: 9, Func. Count: 99, Neg. LLF: 895.4205359839607
Iteration: 10, Func. Count: 110, Neg. LLF: 91.51679679743918
Iteration: 11, Func. Count: 121, Neg. LLF: 81.36912036577466
Iteration: 12, Func. Count: 131, Neg. LLF: 81.65769051072971
Iteration: 13, Func. Count: 143, Neg. LLF: 81.29591537564121
Iteration: 14, Func. Count: 154, Neg. LLF: 80.34033833665177
Iteration: 15, Func. Count: 164, Neg. LLF: 80.25780245083585
Iteration: 16, Func. Count: 174, Neg. LLF: 80.2227753215202
Iteration: 17, Func. Count: 184, Neg. LLF: 80.21291235678706
Iteration: 18, Func. Count: 194, Neg. LLF: 80.21053404869002
Iteration: 19, Func. Count: 204, Neg. LLF: 80.2071291262167
Iteration: 20, Func. Count: 214, Neg. LLF: 80.20026137258563
Iteration: 21, Func. Count: 224, Neg. LLF: 80.19824324962349
Iteration: 22, Func. Count: 234, Neg. LLF: 80.19769530258564
Iteration: 23, Func. Count: 244, Neg. LLF: 80.1976912283915
Iteration: 24, Func. Count: 253, Neg. LLF: 80.19769122954534
Optimization terminated successfully (Exit mode 0)
Current function value: 80.1976912283915
Iterations: 24
Function evaluations: 253
Gradient evaluations: 24
Iteration: 1, Func. Count: 12, Neg. LLF: 114.71230210585108
Iteration: 2, Func. Count: 24, Neg. LLF: 157.14903443104458
Iteration: 3, Func. Count: 36, Neg. LLF: 13177090.799692092
Iteration: 4, Func. Count: 48, Neg. LLF: 12106763.428340271
Iteration: 5, Func. Count: 60, Neg. LLF: 177888.7603809345
Iteration: 6, Func. Count: 72, Neg. LLF: 18229.68985133622
Iteration: 7, Func. Count: 84, Neg. LLF: 6019.967774292948
Iteration: 8, Func. Count: 96, Neg. LLF: 1710.2317035872288
Iteration: 9, Func. Count: 108, Neg. LLF: 125.8397989486749
Iteration: 10, Func. Count: 120, Neg. LLF: 748.3085073313097
Iteration: 11, Func. Count: 132, Neg. LLF: 81.58750898025333
Iteration: 12, Func. Count: 143, Neg. LLF: 84.67593842876974
Iteration: 13, Func. Count: 156, Neg. LLF: 98.69186159898162
Iteration: 14, Func. Count: 169, Neg. LLF: 80.36619591114872
Iteration: 15, Func. Count: 180, Neg. LLF: 80.27571581584321
Iteration: 16, Func. Count: 191, Neg. LLF: 80.24086314281809
Iteration: 17, Func. Count: 202, Neg. LLF: 80.34163990728943
Iteration: 18, Func. Count: 214, Neg. LLF: 80.22493340393808
Iteration: 19, Func. Count: 225, Neg. LLF: 80.21024343241073
Iteration: 20, Func. Count: 236, Neg. LLF: 80.20850620875048
Iteration: 21, Func. Count: 247, Neg. LLF: 80.20242491979667
Iteration: 22, Func. Count: 258, Neg. LLF: 80.19935976373536
Iteration: 23, Func. Count: 269, Neg. LLF: 80.1978616910132
Iteration: 24, Func. Count: 280, Neg. LLF: 80.19769128292073
Iteration: 25, Func. Count: 290, Neg. LLF: 80.19769135950388
Optimization terminated successfully (Exit mode 0)
Current function value: 80.19769128292073
Iterations: 25
Function evaluations: 290
Gradient evaluations: 25
Iteration: 1, Func. Count: 9, Neg. LLF: 151.15048818545827
Iteration: 2, Func. Count: 19, Neg. LLF: 489.4851936027911
Iteration: 3, Func. Count: 28, Neg. LLF: 8632855.52829148
Iteration: 4, Func. Count: 37, Neg. LLF: 8320406.650556524
Iteration: 5, Func. Count: 46, Neg. LLF: 8161953.187986938
Iteration: 6, Func. Count: 55, Neg. LLF: 2030877.985765007
Iteration: 7, Func. Count: 64, Neg. LLF: 50464.03867634605
Iteration: 8, Func. Count: 73, Neg. LLF: 7926300.368118063
Iteration: 9, Func. Count: 82, Neg. LLF: 8025119.201074291
Iteration: 10, Func. Count: 91, Neg. LLF: 7569656.978081368
Iteration: 11, Func. Count: 100, Neg. LLF: 696.0061580549169
Iteration: 12, Func. Count: 109, Neg. LLF: 85.55515072047234
Iteration: 13, Func. Count: 118, Neg. LLF: 81.31545938964118
Iteration: 14, Func. Count: 127, Neg. LLF: 85.46448798662787
Iteration: 15, Func. Count: 136, Neg. LLF: 80.32533977138894
Iteration: 16, Func. Count: 144, Neg. LLF: 81.2443161227451
Iteration: 17, Func. Count: 153, Neg. LLF: 80.04141278099043
Iteration: 18, Func. Count: 161, Neg. LLF: 79.94960646438659
Iteration: 19, Func. Count: 169, Neg. LLF: 79.94133235164428
Iteration: 20, Func. Count: 177, Neg. LLF: 79.93849932384828
Iteration: 21, Func. Count: 185, Neg. LLF: 79.93754208921234
Iteration: 22, Func. Count: 193, Neg. LLF: 79.93749424895255
Iteration: 23, Func. Count: 200, Neg. LLF: 79.9374942488048
Optimization terminated successfully (Exit mode 0)
Current function value: 79.93749424895255
Iterations: 23
Function evaluations: 200
Gradient evaluations: 23
Iteration: 1, Func. Count: 10, Neg. LLF: 126.77780619289163
Iteration: 2, Func. Count: 21, Neg. LLF: 208896738.11787567
Iteration: 3, Func. Count: 31, Neg. LLF: 12416447.513068674
Iteration: 4, Func. Count: 41, Neg. LLF: 8059952.081473995
Iteration: 5, Func. Count: 51, Neg. LLF: 17352.705281138078
Iteration: 6, Func. Count: 61, Neg. LLF: 16199.104989304982
Iteration: 7, Func. Count: 71, Neg. LLF: 1173.498645277364
Iteration: 8, Func. Count: 81, Neg. LLF: 89.21949499067041
Iteration: 9, Func. Count: 91, Neg. LLF: 105.82007489415614
Iteration: 10, Func. Count: 101, Neg. LLF: 80.76910462818879
Iteration: 11, Func. Count: 110, Neg. LLF: 80.4712303138671
Iteration: 12, Func. Count: 120, Neg. LLF: 79.98338568703873
Iteration: 13, Func. Count: 129, Neg. LLF: 79.94981614019181
Iteration: 14, Func. Count: 138, Neg. LLF: 79.93968699230453
Iteration: 15, Func. Count: 147, Neg. LLF: 79.9381992282052
Iteration: 16, Func. Count: 156, Neg. LLF: 79.93806516195272
Iteration: 17, Func. Count: 165, Neg. LLF: 79.93774945418635
Iteration: 18, Func. Count: 174, Neg. LLF: 79.9375465023784
Iteration: 19, Func. Count: 183, Neg. LLF: 79.93749697633214
Iteration: 20, Func. Count: 192, Neg. LLF: 79.93749405761287
Iteration: 21, Func. Count: 200, Neg. LLF: 79.93749407605002
Optimization terminated successfully (Exit mode 0)
Current function value: 79.93749405761287
Iterations: 21
Function evaluations: 200
Gradient evaluations: 21
Iteration: 1, Func. Count: 11, Neg. LLF: 120.45793605477668
Iteration: 2, Func. Count: 23, Neg. LLF: 209819703.11607626
Iteration: 3, Func. Count: 34, Neg. LLF: 8645916.634542733
Iteration: 4, Func. Count: 45, Neg. LLF: 8090094.507774043
Iteration: 5, Func. Count: 56, Neg. LLF: 656771.608959731
Iteration: 6, Func. Count: 67, Neg. LLF: 16167.234532470042
Iteration: 7, Func. Count: 78, Neg. LLF: 5002.958648480347
Iteration: 8, Func. Count: 89, Neg. LLF: 109.87116546227332
Iteration: 9, Func. Count: 100, Neg. LLF: 81.97866683224748
Iteration: 10, Func. Count: 110, Neg. LLF: 10948.17669233519
Iteration: 11, Func. Count: 121, Neg. LLF: 105.02005905900724
Iteration: 12, Func. Count: 133, Neg. LLF: 80.05998159755376
Iteration: 13, Func. Count: 143, Neg. LLF: 91.56870033283441
Iteration: 14, Func. Count: 155, Neg. LLF: 80.00434131867858
Iteration: 15, Func. Count: 165, Neg. LLF: 79.9918386467908
Iteration: 16, Func. Count: 175, Neg. LLF: 79.97068693899473
Iteration: 17, Func. Count: 185, Neg. LLF: 79.95366964177751
Iteration: 18, Func. Count: 195, Neg. LLF: 79.94158829328549
Iteration: 19, Func. Count: 205, Neg. LLF: 79.93805242247592
Iteration: 20, Func. Count: 215, Neg. LLF: 79.93754049855553
Iteration: 21, Func. Count: 225, Neg. LLF: 79.93749672407569
Iteration: 22, Func. Count: 235, Neg. LLF: 79.93749421875631
Iteration: 23, Func. Count: 244, Neg. LLF: 79.93749426165247
Optimization terminated successfully (Exit mode 0)
Current function value: 79.93749421875631
Iterations: 23
Function evaluations: 244
Gradient evaluations: 23
Iteration: 1, Func. Count: 12, Neg. LLF: 118.62380522792735
Iteration: 2, Func. Count: 25, Neg. LLF: 206260974.025018
Iteration: 3, Func. Count: 37, Neg. LLF: 8604362.808960486
Iteration: 4, Func. Count: 49, Neg. LLF: 8084463.680483433
Iteration: 5, Func. Count: 61, Neg. LLF: 7945427.04606518
Iteration: 6, Func. Count: 73, Neg. LLF: 24802.396469321717
Iteration: 7, Func. Count: 85, Neg. LLF: 10731.0367116373
Iteration: 8, Func. Count: 97, Neg. LLF: 1195.0359667453824
Iteration: 9, Func. Count: 109, Neg. LLF: 85.43174335203734
Iteration: 10, Func. Count: 121, Neg. LLF: 82.92661060994658
Iteration: 11, Func. Count: 133, Neg. LLF: 81.54613141938538
Iteration: 12, Func. Count: 145, Neg. LLF: 80.81689308975727
Iteration: 13, Func. Count: 157, Neg. LLF: 80.76938891540487
Iteration: 14, Func. Count: 169, Neg. LLF: 80.03445692780754
Iteration: 15, Func. Count: 180, Neg. LLF: 79.95112555809402
Iteration: 16, Func. Count: 191, Neg. LLF: 79.96749276667398
Iteration: 17, Func. Count: 203, Neg. LLF: 79.93809834480362
Iteration: 18, Func. Count: 214, Neg. LLF: 79.93758381034442
Iteration: 19, Func. Count: 225, Neg. LLF: 79.93750505383447
Iteration: 20, Func. Count: 236, Neg. LLF: 79.93749397715905
Iteration: 21, Func. Count: 246, Neg. LLF: 79.93749398223103
Optimization terminated successfully (Exit mode 0)
Current function value: 79.93749397715905
Iterations: 21
Function evaluations: 246
Gradient evaluations: 21
Iteration: 1, Func. Count: 13, Neg. LLF: 115.88596233461928
Iteration: 2, Func. Count: 26, Neg. LLF: 312.5270472573132
Iteration: 3, Func. Count: 39, Neg. LLF: 22913843.327467635
Iteration: 4, Func. Count: 52, Neg. LLF: 11118293.883225044
Iteration: 5, Func. Count: 65, Neg. LLF: 8780699.802652659
Iteration: 6, Func. Count: 78, Neg. LLF: 8256689.980542172
Iteration: 7, Func. Count: 91, Neg. LLF: 464681.1360244256
Iteration: 8, Func. Count: 104, Neg. LLF: 1274.6197054126387
Iteration: 9, Func. Count: 117, Neg. LLF: 118.0814847266906
Iteration: 10, Func. Count: 130, Neg. LLF: 151.68824596021733
Iteration: 11, Func. Count: 143, Neg. LLF: 83.5829889684298
Iteration: 12, Func. Count: 156, Neg. LLF: 80.79213108050166
Iteration: 13, Func. Count: 169, Neg. LLF: 79.954249850253
Iteration: 14, Func. Count: 181, Neg. LLF: 79.93879126481653
Iteration: 15, Func. Count: 193, Neg. LLF: 79.93794482798788
Iteration: 16, Func. Count: 205, Neg. LLF: 79.93756019046961
Iteration: 17, Func. Count: 217, Neg. LLF: 79.93750453301138
Iteration: 18, Func. Count: 229, Neg. LLF: 79.93749401151838
Iteration: 19, Func. Count: 240, Neg. LLF: 79.93749406962628
Optimization terminated successfully (Exit mode 0)
Current function value: 79.93749401151838
Iterations: 19
Function evaluations: 240
Gradient evaluations: 19
Iteration: 1, Func. Count: 10, Neg. LLF: 151.02528635120433
Iteration: 2, Func. Count: 21, Neg. LLF: 493.8460068761451
Iteration: 3, Func. Count: 31, Neg. LLF: 8626463.631997446
Iteration: 4, Func. Count: 41, Neg. LLF: 8314562.757878626
Iteration: 5, Func. Count: 51, Neg. LLF: 8156580.401703731
Iteration: 6, Func. Count: 61, Neg. LLF: 2034447.2595881296
Iteration: 7, Func. Count: 71, Neg. LLF: 7905210.701869115
Iteration: 8, Func. Count: 81, Neg. LLF: 7925818.345383203
Iteration: 9, Func. Count: 91, Neg. LLF: 4146797.422236958
Iteration: 10, Func. Count: 101, Neg. LLF: 2977381.72719771
Iteration: 11, Func. Count: 111, Neg. LLF: 3653589.406367118
Iteration: 12, Func. Count: 121, Neg. LLF: 15098.836071207215
Iteration: 13, Func. Count: 131, Neg. LLF: 20538.064837355123
Iteration: 14, Func. Count: 141, Neg. LLF: 82.18012539918065
Iteration: 15, Func. Count: 151, Neg. LLF: 81.11331113897067
Iteration: 16, Func. Count: 161, Neg. LLF: 80.70767986251477
Iteration: 17, Func. Count: 171, Neg. LLF: 80.019525784289
Iteration: 18, Func. Count: 180, Neg. LLF: 79.98843059213634
Iteration: 19, Func. Count: 189, Neg. LLF: 79.86599249185444
Iteration: 20, Func. Count: 198, Neg. LLF: 79.82365846140796
Iteration: 21, Func. Count: 207, Neg. LLF: 79.81551613230421
Iteration: 22, Func. Count: 216, Neg. LLF: 79.81332414119038
Iteration: 23, Func. Count: 225, Neg. LLF: 79.81302908135676
Iteration: 24, Func. Count: 234, Neg. LLF: 79.81301091663376
Iteration: 25, Func. Count: 243, Neg. LLF: 79.81300711799553
Iteration: 26, Func. Count: 251, Neg. LLF: 79.81300711799491
Optimization terminated successfully (Exit mode 0)
Current function value: 79.81300711799553
Iterations: 26
Function evaluations: 251
Gradient evaluations: 26
Iteration: 1, Func. Count: 11, Neg. LLF: 126.59447824451391
Iteration: 2, Func. Count: 23, Neg. LLF: 209129198.41666958
Iteration: 3, Func. Count: 34, Neg. LLF: 12413000.683423234
Iteration: 4, Func. Count: 45, Neg. LLF: 8058176.8636974655
Iteration: 5, Func. Count: 56, Neg. LLF: 17175.31299978448
Iteration: 6, Func. Count: 67, Neg. LLF: 15924.107879313848
Iteration: 7, Func. Count: 78, Neg. LLF: 1165.9278708837041
Iteration: 8, Func. Count: 89, Neg. LLF: 89.1424424105446
Iteration: 9, Func. Count: 100, Neg. LLF: 84.58354785170387
Iteration: 10, Func. Count: 111, Neg. LLF: 81.37854090887642
Iteration: 11, Func. Count: 122, Neg. LLF: 80.7937482385724
Iteration: 12, Func. Count: 133, Neg. LLF: 81.2152892335818
Iteration: 13, Func. Count: 144, Neg. LLF: 80.80581827727924
Iteration: 14, Func. Count: 155, Neg. LLF: 79.82123914718287
Iteration: 15, Func. Count: 165, Neg. LLF: 79.8147285582232
Iteration: 16, Func. Count: 175, Neg. LLF: 79.81394273452665
Iteration: 17, Func. Count: 185, Neg. LLF: 79.81302294438382
Iteration: 18, Func. Count: 195, Neg. LLF: 79.81300727135016
Iteration: 19, Func. Count: 205, Neg. LLF: 79.81300671791895
Optimization terminated successfully (Exit mode 0)
Current function value: 79.81300671791895
Iterations: 19
Function evaluations: 205
Gradient evaluations: 19
Iteration: 1, Func. Count: 12, Neg. LLF: 120.18095843996029
Iteration: 2, Func. Count: 25, Neg. LLF: 210114333.04317853
Iteration: 3, Func. Count: 37, Neg. LLF: 8638957.605010098
Iteration: 4, Func. Count: 49, Neg. LLF: 8086932.4592625
Iteration: 5, Func. Count: 61, Neg. LLF: 624500.5829742615
Iteration: 6, Func. Count: 73, Neg. LLF: 15851.730827171294
Iteration: 7, Func. Count: 85, Neg. LLF: 950.759396437719
Iteration: 8, Func. Count: 97, Neg. LLF: 179.244064879814
Iteration: 9, Func. Count: 109, Neg. LLF: 86.8295466404672
Iteration: 10, Func. Count: 121, Neg. LLF: 92.83153906003425
Iteration: 11, Func. Count: 133, Neg. LLF: 82.0829951163587
Iteration: 12, Func. Count: 145, Neg. LLF: 81.14340827860025
Iteration: 13, Func. Count: 157, Neg. LLF: 80.73066851816684
Iteration: 14, Func. Count: 169, Neg. LLF: 79.87495829488455
Iteration: 15, Func. Count: 180, Neg. LLF: 79.81832679738939
Iteration: 16, Func. Count: 191, Neg. LLF: 79.81379551701735
Iteration: 17, Func. Count: 202, Neg. LLF: 79.81305483663789
Iteration: 18, Func. Count: 213, Neg. LLF: 79.81301127414557
Iteration: 19, Func. Count: 224, Neg. LLF: 79.81300678853262
Iteration: 20, Func. Count: 234, Neg. LLF: 79.81300683742774
Optimization terminated successfully (Exit mode 0)
Current function value: 79.81300678853262
Iterations: 20
Function evaluations: 234
Gradient evaluations: 20
Iteration: 1, Func. Count: 13, Neg. LLF: 118.44588090561957
Iteration: 2, Func. Count: 26, Neg. LLF: 305.54398925171057
Iteration: 3, Func. Count: 39, Neg. LLF: 28262817.80771359
Iteration: 4, Func. Count: 52, Neg. LLF: 11427382.2576342
Iteration: 5, Func. Count: 65, Neg. LLF: 9636845.375792794
Iteration: 6, Func. Count: 78, Neg. LLF: 8270376.6877355175
Iteration: 7, Func. Count: 91, Neg. LLF: 74169.62391054437
Iteration: 8, Func. Count: 104, Neg. LLF: 3926181.301983589
Iteration: 9, Func. Count: 117, Neg. LLF: 303.5993195307919
Iteration: 10, Func. Count: 130, Neg. LLF: 113.88289616198259
Iteration: 11, Func. Count: 143, Neg. LLF: 81.40600836964632
Iteration: 12, Func. Count: 156, Neg. LLF: 84.88251904139675
Iteration: 13, Func. Count: 169, Neg. LLF: 79.83366948669054
Iteration: 14, Func. Count: 181, Neg. LLF: 79.89815070825912
Iteration: 15, Func. Count: 194, Neg. LLF: 79.81771372711421
Iteration: 16, Func. Count: 207, Neg. LLF: 79.81689635057587
Iteration: 17, Func. Count: 220, Neg. LLF: 79.8177135045594
Iteration: 18, Func. Count: 233, Neg. LLF: 79.81191327953299
Iteration: 19, Func. Count: 245, Neg. LLF: 79.81187067590201
Iteration: 20, Func. Count: 256, Neg. LLF: 79.81187067589346
Optimization terminated successfully (Exit mode 0)
Current function value: 79.81187067590201
Iterations: 20
Function evaluations: 256
Gradient evaluations: 20
Iteration: 1, Func. Count: 14, Neg. LLF: 115.68979745766268
Iteration: 2, Func. Count: 28, Neg. LLF: 314.6423650990372
Iteration: 3, Func. Count: 42, Neg. LLF: 22780702.92983944
Iteration: 4, Func. Count: 56, Neg. LLF: 11079118.26816218
Iteration: 5, Func. Count: 70, Neg. LLF: 8746603.206380483
Iteration: 6, Func. Count: 84, Neg. LLF: 8250340.136987131
Iteration: 7, Func. Count: 98, Neg. LLF: 8711.446579136198
Iteration: 8, Func. Count: 112, Neg. LLF: 3962437.5909615224
Iteration: 9, Func. Count: 126, Neg. LLF: 174.68233942867846
Iteration: 10, Func. Count: 140, Neg. LLF: 3813881.2948424323
Iteration: 11, Func. Count: 154, Neg. LLF: 81.96975085940988
Iteration: 12, Func. Count: 168, Neg. LLF: 81.18443625831902
Iteration: 13, Func. Count: 182, Neg. LLF: 80.77560691367133
Iteration: 14, Func. Count: 196, Neg. LLF: 79.82633285862319
Iteration: 15, Func. Count: 209, Neg. LLF: 79.81768881338269
Iteration: 16, Func. Count: 222, Neg. LLF: 79.81421690031667
Iteration: 17, Func. Count: 235, Neg. LLF: 79.83312046341555
Iteration: 18, Func. Count: 249, Neg. LLF: 79.8122814169246
Iteration: 19, Func. Count: 262, Neg. LLF: 79.8119756364566
Iteration: 20, Func. Count: 275, Neg. LLF: 79.81188095364529
Iteration: 21, Func. Count: 288, Neg. LLF: 79.81187141501483
Iteration: 22, Func. Count: 301, Neg. LLF: 79.811870580643
Optimization terminated successfully (Exit mode 0)
Current function value: 79.811870580643
Iterations: 22
Function evaluations: 301
Gradient evaluations: 22
Iteration: 1, Func. Count: 11, Neg. LLF: 151.00597929808856
Iteration: 2, Func. Count: 23, Neg. LLF: 494.60996618854256
Iteration: 3, Func. Count: 34, Neg. LLF: 8624319.823891046
Iteration: 4, Func. Count: 45, Neg. LLF: 8312695.252330458
Iteration: 5, Func. Count: 56, Neg. LLF: 8155044.38884972
Iteration: 6, Func. Count: 67, Neg. LLF: 67915.76676246877
Iteration: 7, Func. Count: 78, Neg. LLF: 214985.78835513993
Iteration: 8, Func. Count: 89, Neg. LLF: 7926262.955655106
Iteration: 9, Func. Count: 100, Neg. LLF: 4144104.4733068454
Iteration: 10, Func. Count: 111, Neg. LLF: 2977520.6115719434
Iteration: 11, Func. Count: 122, Neg. LLF: 3655034.1941201026
Iteration: 12, Func. Count: 133, Neg. LLF: 6346.492446265257
Iteration: 13, Func. Count: 144, Neg. LLF: 9955.90757248846
Iteration: 14, Func. Count: 155, Neg. LLF: 82.29948963136826
Iteration: 15, Func. Count: 166, Neg. LLF: 81.11347859035364
Iteration: 16, Func. Count: 177, Neg. LLF: 80.56618400490444
Iteration: 17, Func. Count: 188, Neg. LLF: 80.0167933501482
Iteration: 18, Func. Count: 198, Neg. LLF: 79.94532166261476
Iteration: 19, Func. Count: 208, Neg. LLF: 79.85075974798218
Iteration: 20, Func. Count: 218, Neg. LLF: 79.82222918296657
Iteration: 21, Func. Count: 228, Neg. LLF: 79.81515975951548
Iteration: 22, Func. Count: 238, Neg. LLF: 79.81323150994265
Iteration: 23, Func. Count: 248, Neg. LLF: 79.81302765889703
Iteration: 24, Func. Count: 258, Neg. LLF: 79.81300868766071
Iteration: 25, Func. Count: 268, Neg. LLF: 79.8130067987886
Iteration: 26, Func. Count: 277, Neg. LLF: 79.81300690329323
Optimization terminated successfully (Exit mode 0)
Current function value: 79.8130067987886
Iterations: 26
Function evaluations: 277
Gradient evaluations: 26
Iteration: 1, Func. Count: 12, Neg. LLF: 126.37376764438046
Iteration: 2, Func. Count: 25, Neg. LLF: 209372994.41527784
Iteration: 3, Func. Count: 37, Neg. LLF: 12408063.750450691
Iteration: 4, Func. Count: 49, Neg. LLF: 8056086.390519655
Iteration: 5, Func. Count: 61, Neg. LLF: 16738.747210039935
Iteration: 6, Func. Count: 73, Neg. LLF: 15634.661291889463
Iteration: 7, Func. Count: 85, Neg. LLF: 1156.2864055594257
Iteration: 8, Func. Count: 97, Neg. LLF: 88.99978182134625
Iteration: 9, Func. Count: 109, Neg. LLF: 84.40120568316023
Iteration: 10, Func. Count: 121, Neg. LLF: 81.4656778018328
Iteration: 11, Func. Count: 133, Neg. LLF: 80.78973216087823
Iteration: 12, Func. Count: 145, Neg. LLF: 81.24429226191806
Iteration: 13, Func. Count: 157, Neg. LLF: 80.80106121877252
Iteration: 14, Func. Count: 169, Neg. LLF: 79.81935327831219
Iteration: 15, Func. Count: 180, Neg. LLF: 79.81409204043797
Iteration: 16, Func. Count: 191, Neg. LLF: 79.81315179643597
Iteration: 17, Func. Count: 202, Neg. LLF: 79.81310577008401
Iteration: 18, Func. Count: 213, Neg. LLF: 79.81300732138459
Iteration: 19, Func. Count: 224, Neg. LLF: 79.81300673372488
Optimization terminated successfully (Exit mode 0)
Current function value: 79.81300673372488
Iterations: 19
Function evaluations: 224
Gradient evaluations: 19
Iteration: 1, Func. Count: 13, Neg. LLF: 120.0584083857682
Iteration: 2, Func. Count: 27, Neg. LLF: 210267007.16280898
Iteration: 3, Func. Count: 40, Neg. LLF: 8634177.501000058
Iteration: 4, Func. Count: 53, Neg. LLF: 8084885.392527008
Iteration: 5, Func. Count: 66, Neg. LLF: 596635.9506902293
Iteration: 6, Func. Count: 79, Neg. LLF: 15639.73549518793
Iteration: 7, Func. Count: 92, Neg. LLF: 918.1318537510992
Iteration: 8, Func. Count: 105, Neg. LLF: 157.25456938238543
Iteration: 9, Func. Count: 118, Neg. LLF: 87.34277841141983
Iteration: 10, Func. Count: 131, Neg. LLF: 94.94166525543342
Iteration: 11, Func. Count: 144, Neg. LLF: 81.9886114607388
Iteration: 12, Func. Count: 157, Neg. LLF: 81.24609058079628
Iteration: 13, Func. Count: 170, Neg. LLF: 80.71357058786715
Iteration: 14, Func. Count: 183, Neg. LLF: 79.88500430343943
Iteration: 15, Func. Count: 195, Neg. LLF: 79.81872554141631
Iteration: 16, Func. Count: 207, Neg. LLF: 79.81397280758812
Iteration: 17, Func. Count: 219, Neg. LLF: 79.81305048746339
Iteration: 18, Func. Count: 231, Neg. LLF: 79.8130111829021
Iteration: 19, Func. Count: 243, Neg. LLF: 79.81300676674721
Iteration: 20, Func. Count: 254, Neg. LLF: 79.81300681563637
Optimization terminated successfully (Exit mode 0)
Current function value: 79.81300676674721
Iterations: 20
Function evaluations: 254
Gradient evaluations: 20
Iteration: 1, Func. Count: 14, Neg. LLF: 118.3183932032594
Iteration: 2, Func. Count: 28, Neg. LLF: 306.55106922405355
Iteration: 3, Func. Count: 42, Neg. LLF: 28126821.954919547
Iteration: 4, Func. Count: 56, Neg. LLF: 11396976.562344568
Iteration: 5, Func. Count: 70, Neg. LLF: 9625459.860297717
Iteration: 6, Func. Count: 84, Neg. LLF: 8266396.363077266
Iteration: 7, Func. Count: 98, Neg. LLF: 7027.696075713233
Iteration: 8, Func. Count: 112, Neg. LLF: 3916103.4542602967
Iteration: 9, Func. Count: 126, Neg. LLF: 268.1462229065606
Iteration: 10, Func. Count: 140, Neg. LLF: 131.772880265977
Iteration: 11, Func. Count: 154, Neg. LLF: 81.44892092426704
Iteration: 12, Func. Count: 168, Neg. LLF: 82.58937486099452
Iteration: 13, Func. Count: 182, Neg. LLF: 80.12170400778535
Iteration: 14, Func. Count: 195, Neg. LLF: 79.89912877793631
Iteration: 15, Func. Count: 208, Neg. LLF: 80.03917057625748
Iteration: 16, Func. Count: 222, Neg. LLF: 79.83673989085611
Iteration: 17, Func. Count: 235, Neg. LLF: 81.1564530172323
Iteration: 18, Func. Count: 249, Neg. LLF: 79.8137866007032
Iteration: 19, Func. Count: 262, Neg. LLF: 79.8120197133018
Iteration: 20, Func. Count: 275, Neg. LLF: 79.81187871170052
Iteration: 21, Func. Count: 288, Neg. LLF: 79.81187358015985
Iteration: 22, Func. Count: 301, Neg. LLF: 79.81187104118345
Iteration: 23, Func. Count: 313, Neg. LLF: 79.81187104112864
Optimization terminated successfully (Exit mode 0)
Current function value: 79.81187104118345
Iterations: 23
Function evaluations: 313
Gradient evaluations: 23
Iteration: 1, Func. Count: 15, Neg. LLF: 115.55621273543886
Iteration: 2, Func. Count: 30, Neg. LLF: 315.70951756438274
Iteration: 3, Func. Count: 45, Neg. LLF: 22681804.009323236
Iteration: 4, Func. Count: 60, Neg. LLF: 11053499.470878506
Iteration: 5, Func. Count: 75, Neg. LLF: 8732335.772445407
Iteration: 6, Func. Count: 90, Neg. LLF: 8246544.709605905
Iteration: 7, Func. Count: 105, Neg. LLF: 6640.203801053723
Iteration: 8, Func. Count: 120, Neg. LLF: 3952981.7856165776
Iteration: 9, Func. Count: 135, Neg. LLF: 168.71298065446103
Iteration: 10, Func. Count: 150, Neg. LLF: 3832268.786967014
Iteration: 11, Func. Count: 165, Neg. LLF: 81.98073884139153
Iteration: 12, Func. Count: 180, Neg. LLF: 81.18886594882942
Iteration: 13, Func. Count: 195, Neg. LLF: 80.40309959901312
Iteration: 14, Func. Count: 210, Neg. LLF: 79.83178315427085
Iteration: 15, Func. Count: 224, Neg. LLF: 79.8222458448347
Iteration: 16, Func. Count: 238, Neg. LLF: 79.87111878183228
Iteration: 17, Func. Count: 253, Neg. LLF: 80.038528365047
Iteration: 18, Func. Count: 268, Neg. LLF: 79.81233362535538
Iteration: 19, Func. Count: 282, Neg. LLF: 79.81204712246328
Iteration: 20, Func. Count: 296, Neg. LLF: 79.81188155315832
Iteration: 21, Func. Count: 310, Neg. LLF: 79.81187106791597
Iteration: 22, Func. Count: 323, Neg. LLF: 79.81187111132834
Optimization terminated successfully (Exit mode 0)
Current function value: 79.81187106791597
Iterations: 22
Function evaluations: 323
Gradient evaluations: 22
Iteration: 1, Func. Count: 8, Neg. LLF: 147.15496410843187
Iteration: 2, Func. Count: 17, Neg. LLF: 158.73359731011817
Iteration: 3, Func. Count: 26, Neg. LLF: 3198.6656946791136
Iteration: 4, Func. Count: 34, Neg. LLF: 1130.9487743992993
Iteration: 5, Func. Count: 42, Neg. LLF: 993.2901205107441
Iteration: 6, Func. Count: 50, Neg. LLF: 1191.832768944796
Iteration: 7, Func. Count: 58, Neg. LLF: 1953.9255082803095
Iteration: 8, Func. Count: 66, Neg. LLF: 135109.03138661696
Iteration: 9, Func. Count: 74, Neg. LLF: 171.4627212731925
Iteration: 10, Func. Count: 82, Neg. LLF: 1180.3823325072178
Iteration: 11, Func. Count: 90, Neg. LLF: 173.95776835757974
Iteration: 12, Func. Count: 99, Neg. LLF: 53972.261679151416
Iteration: 13, Func. Count: 107, Neg. LLF: 91.24903408367004
Iteration: 14, Func. Count: 115, Neg. LLF: 86.88751805704379
Iteration: 15, Func. Count: 123, Neg. LLF: 86.08182964551978
Iteration: 16, Func. Count: 130, Neg. LLF: 86.03686616282276
Iteration: 17, Func. Count: 137, Neg. LLF: 85.88562264055491
Iteration: 18, Func. Count: 144, Neg. LLF: 85.77450859194306
Iteration: 19, Func. Count: 151, Neg. LLF: 85.71084732534281
Iteration: 20, Func. Count: 158, Neg. LLF: 85.64323012664684
Iteration: 21, Func. Count: 165, Neg. LLF: 86.01871835295091
Iteration: 22, Func. Count: 173, Neg. LLF: 85.98292862497341
Iteration: 23, Func. Count: 181, Neg. LLF: 85.86655340542175
Iteration: 24, Func. Count: 189, Neg. LLF: 85.64748270371142
Iteration: 25, Func. Count: 197, Neg. LLF: 85.90118443560351
Iteration: 26, Func. Count: 205, Neg. LLF: 85.88507841817483
Iteration: 27, Func. Count: 213, Neg. LLF: 85.87542024265042
Iteration: 28, Func. Count: 221, Neg. LLF: 85.86870461491235
Iteration: 29, Func. Count: 229, Neg. LLF: 85.55805574200785
Iteration: 30, Func. Count: 237, Neg. LLF: 85.52575481636921
Iteration: 31, Func. Count: 244, Neg. LLF: 85.62580215866382
Iteration: 32, Func. Count: 252, Neg. LLF: 85.52516162140176
Iteration: 33, Func. Count: 259, Neg. LLF: 85.52507588487013
Iteration: 34, Func. Count: 266, Neg. LLF: 85.52506043921957
Iteration: 35, Func. Count: 273, Neg. LLF: 85.5250267013489
Iteration: 36, Func. Count: 280, Neg. LLF: 85.52502122251029
Iteration: 37, Func. Count: 287, Neg. LLF: 85.5250203803999
Optimization terminated successfully (Exit mode 0)
Current function value: 85.5250203803999
Iterations: 37
Function evaluations: 287
Gradient evaluations: 37
Iteration: 1, Func. Count: 9, Neg. LLF: 191.00761188910894
Iteration: 2, Func. Count: 22, Neg. LLF: 101.69361274822668
Iteration: 3, Func. Count: 31, Neg. LLF: 93.42474719724217
Iteration: 4, Func. Count: 39, Neg. LLF: 109.1309652838478
Iteration: 5, Func. Count: 48, Neg. LLF: 93.00865448565077
Iteration: 6, Func. Count: 56, Neg. LLF: 92.78873740661666
Iteration: 7, Func. Count: 64, Neg. LLF: 92.74720838160634
Iteration: 8, Func. Count: 72, Neg. LLF: 92.71868597434884
Iteration: 9, Func. Count: 80, Neg. LLF: 92.71327238332941
Iteration: 10, Func. Count: 88, Neg. LLF: 92.71175970222913
Iteration: 11, Func. Count: 96, Neg. LLF: 92.7117588055832
Optimization terminated successfully (Exit mode 0)
Current function value: 92.7117588055832
Iterations: 11
Function evaluations: 96
Gradient evaluations: 11
Iteration: 1, Func. Count: 10, Neg. LLF: 182.45437047365246
Iteration: 2, Func. Count: 24, Neg. LLF: 106.09613321455089
Iteration: 3, Func. Count: 34, Neg. LLF: 92.84267005863022
Iteration: 4, Func. Count: 43, Neg. LLF: 92.75828747369556
Iteration: 5, Func. Count: 52, Neg. LLF: 92.6690768226736
Iteration: 6, Func. Count: 61, Neg. LLF: 92.66854232096101
Iteration: 7, Func. Count: 70, Neg. LLF: 92.6685379165676
Iteration: 8, Func. Count: 79, Neg. LLF: 92.6685355360567
Iteration: 9, Func. Count: 87, Neg. LLF: 92.6685350623274
Optimization terminated successfully (Exit mode 0)
Current function value: 92.6685355360567
Iterations: 9
Function evaluations: 87
Gradient evaluations: 9
Iteration: 1, Func. Count: 11, Neg. LLF: 178.78891655505177
Iteration: 2, Func. Count: 26, Neg. LLF: 108.83315276071525
Iteration: 3, Func. Count: 37, Neg. LLF: 92.82470349710837
Iteration: 4, Func. Count: 47, Neg. LLF: 92.7767833468048
Iteration: 5, Func. Count: 57, Neg. LLF: 92.7611333261986
Iteration: 6, Func. Count: 67, Neg. LLF: 92.7611210780721
Iteration: 7, Func. Count: 76, Neg. LLF: 92.76112140410919
Optimization terminated successfully (Exit mode 0)
Current function value: 92.7611210780721
Iterations: 7
Function evaluations: 76
Gradient evaluations: 7
Iteration: 1, Func. Count: 12, Neg. LLF: 180.60103203709096
Iteration: 2, Func. Count: 28, Neg. LLF: 109.73248385631015
Iteration: 3, Func. Count: 40, Neg. LLF: 92.7076978146559
Iteration: 4, Func. Count: 51, Neg. LLF: 92.67694063144107
Iteration: 5, Func. Count: 62, Neg. LLF: 92.66463293830478
Iteration: 6, Func. Count: 73, Neg. LLF: 92.66406614455468
Iteration: 7, Func. Count: 84, Neg. LLF: 92.6640637191311
Iteration: 8, Func. Count: 94, Neg. LLF: 92.66406397297106
Optimization terminated successfully (Exit mode 0)
Current function value: 92.6640637191311
Iterations: 8
Function evaluations: 94
Gradient evaluations: 8
Iteration: 1, Func. Count: 9, Neg. LLF: 149.95959284047953
Iteration: 2, Func. Count: 19, Neg. LLF: 174.52596998337245
Iteration: 3, Func. Count: 29, Neg. LLF: 12164582.070727479
Iteration: 4, Func. Count: 38, Neg. LLF: 11712898.917993749
Iteration: 5, Func. Count: 47, Neg. LLF: 11709424.037392752
Iteration: 6, Func. Count: 56, Neg. LLF: 12654.118618650939
Iteration: 7, Func. Count: 65, Neg. LLF: 2003.8144127452633
Iteration: 8, Func. Count: 74, Neg. LLF: 314930.7511264964
Iteration: 9, Func. Count: 83, Neg. LLF: 11706802.508043556
Iteration: 10, Func. Count: 92, Neg. LLF: 1409.0101403927563
Iteration: 11, Func. Count: 101, Neg. LLF: 12109700.880463833
Iteration: 12, Func. Count: 110, Neg. LLF: 639.1137793981484
Iteration: 13, Func. Count: 119, Neg. LLF: 90.08895966924013
Iteration: 14, Func. Count: 128, Neg. LLF: 80.9689170293691
Iteration: 15, Func. Count: 136, Neg. LLF: 80.93652622891452
Iteration: 16, Func. Count: 144, Neg. LLF: 80.92190330215362
Iteration: 17, Func. Count: 152, Neg. LLF: 80.94547123312275
Iteration: 18, Func. Count: 161, Neg. LLF: 80.90568007149868
Iteration: 19, Func. Count: 169, Neg. LLF: 80.90516445554687
Iteration: 20, Func. Count: 177, Neg. LLF: 80.90516198374202
Iteration: 21, Func. Count: 184, Neg. LLF: 80.90516235186632
Optimization terminated successfully (Exit mode 0)
Current function value: 80.90516198374202
Iterations: 22
Function evaluations: 184
Gradient evaluations: 21
Iteration: 1, Func. Count: 10, Neg. LLF: 118.70736769399902
Iteration: 2, Func. Count: 21, Neg. LLF: 659.4681945205779
Iteration: 3, Func. Count: 31, Neg. LLF: 12063351.999966232
Iteration: 4, Func. Count: 41, Neg. LLF: 11708430.995391196
Iteration: 5, Func. Count: 51, Neg. LLF: 2711097.1376303066
Iteration: 6, Func. Count: 61, Neg. LLF: 47087.067028029094
Iteration: 7, Func. Count: 71, Neg. LLF: 14104.40309139009
Iteration: 8, Func. Count: 81, Neg. LLF: 3413.0034434781533
Iteration: 9, Func. Count: 91, Neg. LLF: 84.19991299996303
Iteration: 10, Func. Count: 101, Neg. LLF: 1311.625187754999
Iteration: 11, Func. Count: 111, Neg. LLF: 80.96300346740692
Iteration: 12, Func. Count: 120, Neg. LLF: 82.96793688082167
Iteration: 13, Func. Count: 131, Neg. LLF: 82.51578699725161
Iteration: 14, Func. Count: 141, Neg. LLF: 80.26262458118829
Iteration: 15, Func. Count: 150, Neg. LLF: 80.21925587849707
Iteration: 16, Func. Count: 159, Neg. LLF: 80.19947453911044
Iteration: 17, Func. Count: 168, Neg. LLF: 80.19782000855874
Iteration: 18, Func. Count: 177, Neg. LLF: 80.19777733742825
Iteration: 19, Func. Count: 186, Neg. LLF: 80.19775922766442
Iteration: 20, Func. Count: 195, Neg. LLF: 80.1977133329412
Iteration: 21, Func. Count: 204, Neg. LLF: 80.19769528178757
Iteration: 22, Func. Count: 213, Neg. LLF: 80.19769139737592
Iteration: 23, Func. Count: 221, Neg. LLF: 80.19769139740423
Optimization terminated successfully (Exit mode 0)
Current function value: 80.19769139737592
Iterations: 23
Function evaluations: 221
Gradient evaluations: 23
Iteration: 1, Func. Count: 11, Neg. LLF: 143.60731729788924
Iteration: 2, Func. Count: 27, Neg. LLF: 341.62292947018415
Iteration: 3, Func. Count: 38, Neg. LLF: 256.91078067731524
Iteration: 4, Func. Count: 49, Neg. LLF: 253.07239901359517
Iteration: 5, Func. Count: 60, Neg. LLF: 1493.3521270245394
Iteration: 6, Func. Count: 71, Neg. LLF: 435.890129988481
Iteration: 7, Func. Count: 82, Neg. LLF: 91.74961673170655
Iteration: 8, Func. Count: 93, Neg. LLF: 85.18844781577086
Iteration: 9, Func. Count: 104, Neg. LLF: 85.91073646734279
Iteration: 10, Func. Count: 118, Neg. LLF: 102.8256478514221
Iteration: 11, Func. Count: 129, Neg. LLF: 80.45373845229945
Iteration: 12, Func. Count: 139, Neg. LLF: 80.24822656832872
Iteration: 13, Func. Count: 149, Neg. LLF: 80.23278340187838
Iteration: 14, Func. Count: 159, Neg. LLF: 80.20829818411663
Iteration: 15, Func. Count: 169, Neg. LLF: 80.2055014052198
Iteration: 16, Func. Count: 179, Neg. LLF: 80.20116854972036
Iteration: 17, Func. Count: 189, Neg. LLF: 80.19884485722696
Iteration: 18, Func. Count: 199, Neg. LLF: 80.19775764395315
Iteration: 19, Func. Count: 209, Neg. LLF: 80.19769370840345
Iteration: 20, Func. Count: 219, Neg. LLF: 80.19769124382462
Iteration: 21, Func. Count: 228, Neg. LLF: 80.19769129307528
Optimization terminated successfully (Exit mode 0)
Current function value: 80.19769124382462
Iterations: 21
Function evaluations: 228
Gradient evaluations: 21
Iteration: 1, Func. Count: 12, Neg. LLF: 146.47342699910848
Iteration: 2, Func. Count: 29, Neg. LLF: 455.128324213648
Iteration: 3, Func. Count: 41, Neg. LLF: 482.86673023913426
Iteration: 4, Func. Count: 53, Neg. LLF: 157.93984992359657
Iteration: 5, Func. Count: 65, Neg. LLF: 154.75384853998082
Iteration: 6, Func. Count: 77, Neg. LLF: 403.7308681118835
Iteration: 7, Func. Count: 89, Neg. LLF: 103.3395059537098
Iteration: 8, Func. Count: 101, Neg. LLF: 95.36883917270502
Iteration: 9, Func. Count: 113, Neg. LLF: 94.78730014550494
Iteration: 10, Func. Count: 125, Neg. LLF: 82.6753039593242
Iteration: 11, Func. Count: 136, Neg. LLF: 88.47062877568901
Iteration: 12, Func. Count: 149, Neg. LLF: 81.22103177154642
Iteration: 13, Func. Count: 160, Neg. LLF: 81.8769079100748
Iteration: 14, Func. Count: 173, Neg. LLF: 80.65538146570437
Iteration: 15, Func. Count: 184, Neg. LLF: 80.30411015635048
Iteration: 16, Func. Count: 195, Neg. LLF: 80.24066176308364
Iteration: 17, Func. Count: 206, Neg. LLF: 80.22075804958689
Iteration: 18, Func. Count: 217, Neg. LLF: 80.20631390892734
Iteration: 19, Func. Count: 228, Neg. LLF: 80.2010671972445
Iteration: 20, Func. Count: 239, Neg. LLF: 80.19770680123453
Iteration: 21, Func. Count: 250, Neg. LLF: 80.19769178251092
Iteration: 22, Func. Count: 261, Neg. LLF: 80.19769125064641
Optimization terminated successfully (Exit mode 0)
Current function value: 80.19769125064641
Iterations: 22
Function evaluations: 261
Gradient evaluations: 22
Iteration: 1, Func. Count: 13, Neg. LLF: 148.6264692776492
Iteration: 2, Func. Count: 31, Neg. LLF: 743.3483985159652
Iteration: 3, Func. Count: 44, Neg. LLF: 607.6250785975901
Iteration: 4, Func. Count: 57, Neg. LLF: 1926.8368279564916
Iteration: 5, Func. Count: 70, Neg. LLF: 196.00155274860344
Iteration: 6, Func. Count: 83, Neg. LLF: 3046.7793665822846
Iteration: 7, Func. Count: 96, Neg. LLF: 104.67073012049299
Iteration: 8, Func. Count: 109, Neg. LLF: 92.32499574438991
Iteration: 9, Func. Count: 122, Neg. LLF: 102.84678562174165
Iteration: 10, Func. Count: 135, Neg. LLF: 82.69115963351794
Iteration: 11, Func. Count: 147, Neg. LLF: 81.4040242040802
Iteration: 12, Func. Count: 159, Neg. LLF: 90.13318692532741
Iteration: 13, Func. Count: 172, Neg. LLF: 80.80412886533394
Iteration: 14, Func. Count: 184, Neg. LLF: 89.74217268390011
Iteration: 15, Func. Count: 197, Neg. LLF: 80.51291710183061
Iteration: 16, Func. Count: 209, Neg. LLF: 80.39747145115862
Iteration: 17, Func. Count: 221, Neg. LLF: 80.80760719646138
Iteration: 18, Func. Count: 234, Neg. LLF: 80.76663832968649
Iteration: 19, Func. Count: 247, Neg. LLF: 80.37724744315541
Iteration: 20, Func. Count: 260, Neg. LLF: 80.23073005627147
Iteration: 21, Func. Count: 272, Neg. LLF: 80.21886200643301
Iteration: 22, Func. Count: 284, Neg. LLF: 80.20888448995586
Iteration: 23, Func. Count: 296, Neg. LLF: 80.20399988563315
Iteration: 24, Func. Count: 308, Neg. LLF: 80.19911431020596
Iteration: 25, Func. Count: 320, Neg. LLF: 80.19781693312405
Iteration: 26, Func. Count: 332, Neg. LLF: 80.19769820765835
Iteration: 27, Func. Count: 344, Neg. LLF: 80.19769133661093
Iteration: 28, Func. Count: 355, Neg. LLF: 80.19769141318689
Optimization terminated successfully (Exit mode 0)
Current function value: 80.19769133661093
Iterations: 28
Function evaluations: 355
Gradient evaluations: 28
Iteration: 1, Func. Count: 10, Neg. LLF: 152.61384443974504
Iteration: 2, Func. Count: 22, Neg. LLF: 789342900.3340536
Iteration: 3, Func. Count: 32, Neg. LLF: 7982067.159692551
Iteration: 4, Func. Count: 42, Neg. LLF: 7558210.621116043
Iteration: 5, Func. Count: 52, Neg. LLF: 7227726.668475611
Iteration: 6, Func. Count: 62, Neg. LLF: 3097002.3335908824
Iteration: 7, Func. Count: 72, Neg. LLF: 7530154.036899968
Iteration: 8, Func. Count: 82, Neg. LLF: 464.36707596094664
Iteration: 9, Func. Count: 92, Neg. LLF: 7931210.014387249
Iteration: 10, Func. Count: 102, Neg. LLF: 81.94278070709905
Iteration: 11, Func. Count: 111, Neg. LLF: 91.9355815749958
Iteration: 12, Func. Count: 122, Neg. LLF: 47040454.14992271
Iteration: 13, Func. Count: 132, Neg. LLF: 86.32137362335762
Iteration: 14, Func. Count: 142, Neg. LLF: 80.45239019045087
Iteration: 15, Func. Count: 152, Neg. LLF: 80.10857160357418
Iteration: 16, Func. Count: 162, Neg. LLF: 79.94449844197281
Iteration: 17, Func. Count: 171, Neg. LLF: 79.94233601723501
Iteration: 18, Func. Count: 180, Neg. LLF: 79.9394601957147
Iteration: 19, Func. Count: 189, Neg. LLF: 79.93759754320735
Iteration: 20, Func. Count: 198, Neg. LLF: 79.93749681305661
Iteration: 21, Func. Count: 207, Neg. LLF: 79.93749397857104
Iteration: 22, Func. Count: 215, Neg. LLF: 79.93749397860645
Optimization terminated successfully (Exit mode 0)
Current function value: 79.93749397857104
Iterations: 22
Function evaluations: 215
Gradient evaluations: 22
Iteration: 1, Func. Count: 11, Neg. LLF: 120.10025358791421
Iteration: 2, Func. Count: 23, Neg. LLF: 339173407.5230355
Iteration: 3, Func. Count: 34, Neg. LLF: 12072735.40647409
Iteration: 4, Func. Count: 45, Neg. LLF: 11785457.054384774
Iteration: 5, Func. Count: 56, Neg. LLF: 7908035.013144219
Iteration: 6, Func. Count: 67, Neg. LLF: 408124.5269789767
Iteration: 7, Func. Count: 78, Neg. LLF: 34458.86766322043
Iteration: 8, Func. Count: 89, Neg. LLF: 6833.047326523893
Iteration: 9, Func. Count: 100, Neg. LLF: 196.481649359591
Iteration: 10, Func. Count: 111, Neg. LLF: 1763.061294644605
Iteration: 11, Func. Count: 122, Neg. LLF: 81.74036651680014
Iteration: 12, Func. Count: 133, Neg. LLF: 80.71720561630136
Iteration: 13, Func. Count: 144, Neg. LLF: 80.84999619410004
Iteration: 14, Func. Count: 155, Neg. LLF: 79.97987881714187
Iteration: 15, Func. Count: 165, Neg. LLF: 79.94485633908315
Iteration: 16, Func. Count: 175, Neg. LLF: 79.93879850243638
Iteration: 17, Func. Count: 185, Neg. LLF: 79.93766458553608
Iteration: 18, Func. Count: 195, Neg. LLF: 79.93749461013394
Iteration: 19, Func. Count: 205, Neg. LLF: 79.93749397630694
Optimization terminated successfully (Exit mode 0)
Current function value: 79.93749397630694
Iterations: 19
Function evaluations: 205
Gradient evaluations: 19
Iteration: 1, Func. Count: 12, Neg. LLF: 143.42058175646756
Iteration: 2, Func. Count: 29, Neg. LLF: 363.124837563129
Iteration: 3, Func. Count: 41, Neg. LLF: 277.16204515597184
Iteration: 4, Func. Count: 53, Neg. LLF: 285.4759632011268
Iteration: 5, Func. Count: 65, Neg. LLF: 429.07642051556064
Iteration: 6, Func. Count: 77, Neg. LLF: 215.75453977133745
Iteration: 7, Func. Count: 89, Neg. LLF: 87.259125083324
Iteration: 8, Func. Count: 100, Neg. LLF: 108.32568861429063
Iteration: 9, Func. Count: 112, Neg. LLF: 103.69491865492947
Iteration: 10, Func. Count: 124, Neg. LLF: 83.27955635386442
Iteration: 11, Func. Count: 136, Neg. LLF: 80.28647629417028
Iteration: 12, Func. Count: 147, Neg. LLF: 80.05369495632857
Iteration: 13, Func. Count: 158, Neg. LLF: 80.03274645868339
Iteration: 14, Func. Count: 169, Neg. LLF: 79.9840907620583
Iteration: 15, Func. Count: 180, Neg. LLF: 79.96675399708356
Iteration: 16, Func. Count: 191, Neg. LLF: 79.9507757550381
Iteration: 17, Func. Count: 202, Neg. LLF: 79.94888648146747
Iteration: 18, Func. Count: 213, Neg. LLF: 79.9468623856764
Iteration: 19, Func. Count: 224, Neg. LLF: 79.93998284523461
Iteration: 20, Func. Count: 235, Neg. LLF: 79.9375602073888
Iteration: 21, Func. Count: 246, Neg. LLF: 79.93749478388327
Iteration: 22, Func. Count: 257, Neg. LLF: 79.93749398089744
Optimization terminated successfully (Exit mode 0)
Current function value: 79.93749398089744
Iterations: 22
Function evaluations: 257
Gradient evaluations: 22
Iteration: 1, Func. Count: 13, Neg. LLF: 146.2745205171842
Iteration: 2, Func. Count: 31, Neg. LLF: 514.2119074595241
Iteration: 3, Func. Count: 44, Neg. LLF: 567.5583862032098
Iteration: 4, Func. Count: 57, Neg. LLF: 96.20482316849125
Iteration: 5, Func. Count: 70, Neg. LLF: 105.6779299834414
Iteration: 6, Func. Count: 83, Neg. LLF: 96.47670762924609
Iteration: 7, Func. Count: 96, Neg. LLF: 91.89584885812481
Iteration: 8, Func. Count: 109, Neg. LLF: 95.5542710964789
Iteration: 9, Func. Count: 122, Neg. LLF: 82.68685002800835
Iteration: 10, Func. Count: 134, Neg. LLF: 100.7535588018788
Iteration: 11, Func. Count: 147, Neg. LLF: 87.05822430635776
Iteration: 12, Func. Count: 160, Neg. LLF: 81.40080022527086
Iteration: 13, Func. Count: 173, Neg. LLF: 80.70129679289784
Iteration: 14, Func. Count: 186, Neg. LLF: 80.42711703835211
Iteration: 15, Func. Count: 199, Neg. LLF: 80.1622692637196
Iteration: 16, Func. Count: 211, Neg. LLF: 80.08082683395095
Iteration: 17, Func. Count: 223, Neg. LLF: 80.00786964191886
Iteration: 18, Func. Count: 235, Neg. LLF: 79.98933449829984
Iteration: 19, Func. Count: 247, Neg. LLF: 79.9654299573451
Iteration: 20, Func. Count: 259, Neg. LLF: 79.95014200724334
Iteration: 21, Func. Count: 271, Neg. LLF: 79.94166824416872
Iteration: 22, Func. Count: 283, Neg. LLF: 79.93794169650735
Iteration: 23, Func. Count: 295, Neg. LLF: 79.93752062238508
Iteration: 24, Func. Count: 307, Neg. LLF: 79.93749673161139
Iteration: 25, Func. Count: 319, Neg. LLF: 79.93749409585133
Iteration: 26, Func. Count: 330, Neg. LLF: 79.93749410093977
Optimization terminated successfully (Exit mode 0)
Current function value: 79.93749409585133
Iterations: 26
Function evaluations: 330
Gradient evaluations: 26
Iteration: 1, Func. Count: 14, Neg. LLF: 148.53654329855814
Iteration: 2, Func. Count: 33, Neg. LLF: 872.5940805325794
Iteration: 3, Func. Count: 47, Neg. LLF: 701.4924950320227
Iteration: 4, Func. Count: 61, Neg. LLF: 6415.194651108934
Iteration: 5, Func. Count: 75, Neg. LLF: 202.50588337055441
Iteration: 6, Func. Count: 89, Neg. LLF: 1659.631534483502
Iteration: 7, Func. Count: 103, Neg. LLF: 104.3417545864368
Iteration: 8, Func. Count: 117, Neg. LLF: 115.99550588108673
Iteration: 9, Func. Count: 131, Neg. LLF: 92.91488728606794
Iteration: 10, Func. Count: 145, Neg. LLF: 96.96031953201505
Iteration: 11, Func. Count: 159, Neg. LLF: 80.97007125283746
Iteration: 12, Func. Count: 172, Neg. LLF: 97.54266072677501
Iteration: 13, Func. Count: 189, Neg. LLF: 80.70412122789163
Iteration: 14, Func. Count: 203, Neg. LLF: 80.05723747679954
Iteration: 15, Func. Count: 216, Neg. LLF: 80.00117459842488
Iteration: 16, Func. Count: 229, Neg. LLF: 79.97190285664098
Iteration: 17, Func. Count: 242, Neg. LLF: 79.96447597344546
Iteration: 18, Func. Count: 255, Neg. LLF: 79.9595488403186
Iteration: 19, Func. Count: 268, Neg. LLF: 79.9448599326113
Iteration: 20, Func. Count: 281, Neg. LLF: 79.93958239704473
Iteration: 21, Func. Count: 294, Neg. LLF: 79.93810670518234
Iteration: 22, Func. Count: 307, Neg. LLF: 79.93758815192821
Iteration: 23, Func. Count: 320, Neg. LLF: 79.93750659025203
Iteration: 24, Func. Count: 333, Neg. LLF: 79.9374959608829
Iteration: 25, Func. Count: 346, Neg. LLF: 79.93749434430636
Iteration: 26, Func. Count: 358, Neg. LLF: 79.93749440241758
Optimization terminated successfully (Exit mode 0)
Current function value: 79.93749434430636
Iterations: 26
Function evaluations: 358
Gradient evaluations: 26
Iteration: 1, Func. Count: 11, Neg. LLF: 152.50000746546962
Iteration: 2, Func. Count: 24, Neg. LLF: 791868904.9215478
Iteration: 3, Func. Count: 35, Neg. LLF: 7983373.015949086
Iteration: 4, Func. Count: 46, Neg. LLF: 7559052.766244715
Iteration: 5, Func. Count: 57, Neg. LLF: 7557877.489221891
Iteration: 6, Func. Count: 68, Neg. LLF: 3344055.563819613
Iteration: 7, Func. Count: 79, Neg. LLF: 7533359.079380309
Iteration: 8, Func. Count: 90, Neg. LLF: 373.7363274645715
Iteration: 9, Func. Count: 101, Neg. LLF: 3542638.143572974
Iteration: 10, Func. Count: 112, Neg. LLF: 82.09959290729438
Iteration: 11, Func. Count: 122, Neg. LLF: 467744.40384464565
Iteration: 12, Func. Count: 133, Neg. LLF: 114.60562074519514
Iteration: 13, Func. Count: 146, Neg. LLF: 95.40787975892655
Iteration: 14, Func. Count: 157, Neg. LLF: 80.31371061164424
Iteration: 15, Func. Count: 167, Neg. LLF: 96.60413332286831
Iteration: 16, Func. Count: 178, Neg. LLF: 79.95488413100779
Iteration: 17, Func. Count: 188, Neg. LLF: 79.88022373145046
Iteration: 18, Func. Count: 198, Neg. LLF: 79.85477243838024
Iteration: 19, Func. Count: 208, Neg. LLF: 79.8467901719571
Iteration: 20, Func. Count: 218, Neg. LLF: 79.8364929910243
Iteration: 21, Func. Count: 228, Neg. LLF: 79.82895700638694
Iteration: 22, Func. Count: 238, Neg. LLF: 79.81876317843272
Iteration: 23, Func. Count: 248, Neg. LLF: 79.8138479717065
Iteration: 24, Func. Count: 258, Neg. LLF: 79.8131192471349
Iteration: 25, Func. Count: 268, Neg. LLF: 79.81304064185768
Iteration: 26, Func. Count: 278, Neg. LLF: 79.81300963450039
Iteration: 27, Func. Count: 288, Neg. LLF: 79.81300688358984
Iteration: 28, Func. Count: 297, Neg. LLF: 79.81300688358237
Optimization terminated successfully (Exit mode 0)
Current function value: 79.81300688358984
Iterations: 28
Function evaluations: 297
Gradient evaluations: 28
Iteration: 1, Func. Count: 12, Neg. LLF: 119.90030486928978
Iteration: 2, Func. Count: 25, Neg. LLF: 339766466.30152094
Iteration: 3, Func. Count: 37, Neg. LLF: 12070735.082022151
Iteration: 4, Func. Count: 49, Neg. LLF: 11789320.799412563
Iteration: 5, Func. Count: 61, Neg. LLF: 7908612.060058428
Iteration: 6, Func. Count: 73, Neg. LLF: 380773.741375688
Iteration: 7, Func. Count: 85, Neg. LLF: 33873.38114726706
Iteration: 8, Func. Count: 97, Neg. LLF: 3062475.7254218124
Iteration: 9, Func. Count: 109, Neg. LLF: 313.43136738308925
Iteration: 10, Func. Count: 121, Neg. LLF: 85.32107673910481
Iteration: 11, Func. Count: 133, Neg. LLF: 87.99015712003879
Iteration: 12, Func. Count: 145, Neg. LLF: 84.99324004642288
Iteration: 13, Func. Count: 157, Neg. LLF: 80.77123952433192
Iteration: 14, Func. Count: 169, Neg. LLF: 80.26055622024622
Iteration: 15, Func. Count: 181, Neg. LLF: 79.87304845955147
Iteration: 16, Func. Count: 192, Neg. LLF: 79.82966180318414
Iteration: 17, Func. Count: 203, Neg. LLF: 79.81370943648588
Iteration: 18, Func. Count: 214, Neg. LLF: 79.81311145263264
Iteration: 19, Func. Count: 225, Neg. LLF: 79.81302406050418
Iteration: 20, Func. Count: 236, Neg. LLF: 79.81300719628774
Iteration: 21, Func. Count: 247, Neg. LLF: 79.81300673276262
Optimization terminated successfully (Exit mode 0)
Current function value: 79.81300673276262
Iterations: 21
Function evaluations: 247
Gradient evaluations: 21
Iteration: 1, Func. Count: 13, Neg. LLF: 143.29691078676092
Iteration: 2, Func. Count: 31, Neg. LLF: 364.8456786262329
Iteration: 3, Func. Count: 44, Neg. LLF: 278.26560289642475
Iteration: 4, Func. Count: 57, Neg. LLF: 283.1219486164779
Iteration: 5, Func. Count: 70, Neg. LLF: 171.6746003533796
Iteration: 6, Func. Count: 83, Neg. LLF: 214.1642054231916
Iteration: 7, Func. Count: 96, Neg. LLF: 89.61699066006304
Iteration: 8, Func. Count: 109, Neg. LLF: 90.15285343162917
Iteration: 9, Func. Count: 122, Neg. LLF: 119.19021743850676
Iteration: 10, Func. Count: 135, Neg. LLF: 83.55919183915624
Iteration: 11, Func. Count: 148, Neg. LLF: 86.23612591734708
Iteration: 12, Func. Count: 161, Neg. LLF: 80.14484207092364
Iteration: 13, Func. Count: 173, Neg. LLF: 82.85210970136406
Iteration: 14, Func. Count: 186, Neg. LLF: 81.28755942469436
Iteration: 15, Func. Count: 199, Neg. LLF: 81.01882125640272
Iteration: 16, Func. Count: 212, Neg. LLF: 80.93966875755041
Iteration: 17, Func. Count: 225, Neg. LLF: 80.82098329145101
Iteration: 18, Func. Count: 238, Neg. LLF: 79.91028345624426
Iteration: 19, Func. Count: 251, Neg. LLF: 79.8331977223059
Iteration: 20, Func. Count: 263, Neg. LLF: 79.83105161903781
Iteration: 21, Func. Count: 275, Neg. LLF: 79.82350886386284
Iteration: 22, Func. Count: 287, Neg. LLF: 79.81837254460507
Iteration: 23, Func. Count: 299, Neg. LLF: 79.81432404856355
Iteration: 24, Func. Count: 311, Neg. LLF: 79.8130881703433
Iteration: 25, Func. Count: 323, Neg. LLF: 79.81301221943396
Iteration: 26, Func. Count: 335, Neg. LLF: 79.8130070648786
Iteration: 27, Func. Count: 346, Neg. LLF: 79.81300711374044
Optimization terminated successfully (Exit mode 0)
Current function value: 79.8130070648786
Iterations: 27
Function evaluations: 346
Gradient evaluations: 27
Iteration: 1, Func. Count: 14, Neg. LLF: 146.21501478033676
Iteration: 2, Func. Count: 33, Neg. LLF: 505.8191069210866
Iteration: 3, Func. Count: 47, Neg. LLF: 553.3185591582902
Iteration: 4, Func. Count: 61, Neg. LLF: 96.4768693911483
Iteration: 5, Func. Count: 75, Neg. LLF: 111.27201793677574
Iteration: 6, Func. Count: 89, Neg. LLF: 96.17624394356926
Iteration: 7, Func. Count: 103, Neg. LLF: 91.82344521837027
Iteration: 8, Func. Count: 117, Neg. LLF: 102.17393654067735
Iteration: 9, Func. Count: 131, Neg. LLF: 143.5233647209894
Iteration: 10, Func. Count: 145, Neg. LLF: 81.89183933943927
Iteration: 11, Func. Count: 158, Neg. LLF: 81.53321466988425
Iteration: 12, Func. Count: 172, Neg. LLF: 80.0241587008013
Iteration: 13, Func. Count: 185, Neg. LLF: 79.93007890451146
Iteration: 14, Func. Count: 198, Neg. LLF: 79.85833824440063
Iteration: 15, Func. Count: 211, Neg. LLF: 79.8266774665863
Iteration: 16, Func. Count: 224, Neg. LLF: 79.82414710828948
Iteration: 17, Func. Count: 237, Neg. LLF: 79.81714741926315
Iteration: 18, Func. Count: 250, Neg. LLF: 79.81498139955463
Iteration: 19, Func. Count: 263, Neg. LLF: 79.81258693541989
Iteration: 20, Func. Count: 276, Neg. LLF: 79.81189189021909
Iteration: 21, Func. Count: 289, Neg. LLF: 79.81187985383266
Iteration: 22, Func. Count: 302, Neg. LLF: 79.81187797706056
Iteration: 23, Func. Count: 315, Neg. LLF: 79.81187566018781
Iteration: 24, Func. Count: 328, Neg. LLF: 79.81187253609285
Iteration: 25, Func. Count: 341, Neg. LLF: 79.81187093166501
Iteration: 26, Func. Count: 353, Neg. LLF: 79.81187093169218
Optimization terminated successfully (Exit mode 0)
Current function value: 79.81187093166501
Iterations: 26
Function evaluations: 353
Gradient evaluations: 26
Iteration: 1, Func. Count: 15, Neg. LLF: 148.4865994085747
Iteration: 2, Func. Count: 35, Neg. LLF: 864.7191053641579
Iteration: 3, Func. Count: 50, Neg. LLF: 701.8820558368167
Iteration: 4, Func. Count: 65, Neg. LLF: 4652.260373778314
Iteration: 5, Func. Count: 80, Neg. LLF: 200.81355802501213
Iteration: 6, Func. Count: 95, Neg. LLF: 4031.7952003906294
Iteration: 7, Func. Count: 110, Neg. LLF: 105.58221894919946
Iteration: 8, Func. Count: 125, Neg. LLF: 178.18044321309532
Iteration: 9, Func. Count: 140, Neg. LLF: 110.60757203640726
Iteration: 10, Func. Count: 155, Neg. LLF: 151.98830863821306
Iteration: 11, Func. Count: 170, Neg. LLF: 83.92420155790312
Iteration: 12, Func. Count: 184, Neg. LLF: 128.09933828984697
Iteration: 13, Func. Count: 201, Neg. LLF: 82.78900213649764
Iteration: 14, Func. Count: 216, Neg. LLF: 146.85932534322637
Iteration: 15, Func. Count: 232, Neg. LLF: 80.13570307618059
Iteration: 16, Func. Count: 246, Neg. LLF: 79.99870268806018
Iteration: 17, Func. Count: 260, Neg. LLF: 80.43384659053326
Iteration: 18, Func. Count: 275, Neg. LLF: 79.85579793248696
Iteration: 19, Func. Count: 289, Neg. LLF: 79.83874747912279
Iteration: 20, Func. Count: 303, Neg. LLF: 79.82904550337635
Iteration: 21, Func. Count: 317, Neg. LLF: 79.82183440373703
Iteration: 22, Func. Count: 331, Neg. LLF: 79.81922203283341
Iteration: 23, Func. Count: 345, Neg. LLF: 79.81771424699944
Iteration: 24, Func. Count: 359, Neg. LLF: 79.81610633944466
Iteration: 25, Func. Count: 373, Neg. LLF: 79.81416690244143
Iteration: 26, Func. Count: 387, Neg. LLF: 79.81269750470531
Iteration: 27, Func. Count: 401, Neg. LLF: 79.81223494060687
Iteration: 28, Func. Count: 415, Neg. LLF: 79.8121374535635
Iteration: 29, Func. Count: 429, Neg. LLF: 79.81206858825114
Iteration: 30, Func. Count: 443, Neg. LLF: 79.81197861216357
Iteration: 31, Func. Count: 457, Neg. LLF: 79.81190280632721
Iteration: 32, Func. Count: 471, Neg. LLF: 79.81187451594018
Iteration: 33, Func. Count: 485, Neg. LLF: 79.81187074119043
Iteration: 34, Func. Count: 498, Neg. LLF: 79.81187078461967
Optimization terminated successfully (Exit mode 0)
Current function value: 79.81187074119043
Iterations: 34
Function evaluations: 498
Gradient evaluations: 34
Iteration: 1, Func. Count: 12, Neg. LLF: 152.47450697159337
Iteration: 2, Func. Count: 26, Neg. LLF: 792511143.7810693
Iteration: 3, Func. Count: 38, Neg. LLF: 7983824.408738866
Iteration: 4, Func. Count: 50, Neg. LLF: 7559549.7761560595
Iteration: 5, Func. Count: 62, Neg. LLF: 7558617.331487359
Iteration: 6, Func. Count: 74, Neg. LLF: 1182524.6342975618
Iteration: 7, Func. Count: 86, Neg. LLF: 10375921.80885983
Iteration: 8, Func. Count: 98, Neg. LLF: 846738.8912587477
Iteration: 9, Func. Count: 110, Neg. LLF: 527125.1640202409
Iteration: 10, Func. Count: 122, Neg. LLF: 63466.39485464535
Iteration: 11, Func. Count: 134, Neg. LLF: 470052.7198255208
Iteration: 12, Func. Count: 146, Neg. LLF: 80.24533025809936
Iteration: 13, Func. Count: 157, Neg. LLF: 489.20485317518734
Iteration: 14, Func. Count: 169, Neg. LLF: 81.00859296889686
Iteration: 15, Func. Count: 181, Neg. LLF: 80.01279455216701
Iteration: 16, Func. Count: 193, Neg. LLF: 79.83034601621743
Iteration: 17, Func. Count: 205, Neg. LLF: 79.84648243384676
Iteration: 18, Func. Count: 217, Neg. LLF: 79.74653522839952
Iteration: 19, Func. Count: 228, Neg. LLF: 79.7457619293528
Iteration: 20, Func. Count: 239, Neg. LLF: 79.74563828786424
Iteration: 21, Func. Count: 250, Neg. LLF: 79.74563386588487
Iteration: 22, Func. Count: 260, Neg. LLF: 79.74563375379094
Optimization terminated successfully (Exit mode 0)
Current function value: 79.74563386588487
Iterations: 22
Function evaluations: 260
Gradient evaluations: 22
Iteration: 1, Func. Count: 13, Neg. LLF: 119.64029880726372
Iteration: 2, Func. Count: 27, Neg. LLF: 340464669.61836165
Iteration: 3, Func. Count: 40, Neg. LLF: 12068413.385477874
Iteration: 4, Func. Count: 53, Neg. LLF: 11794170.976227693
Iteration: 5, Func. Count: 66, Neg. LLF: 7909276.926412043
Iteration: 6, Func. Count: 79, Neg. LLF: 356248.9503064452
Iteration: 7, Func. Count: 92, Neg. LLF: 1278.619513867658
Iteration: 8, Func. Count: 105, Neg. LLF: 1902635.3515642444
Iteration: 9, Func. Count: 118, Neg. LLF: 449.7675810275394
Iteration: 10, Func. Count: 131, Neg. LLF: 442.1983015597194
Iteration: 11, Func. Count: 144, Neg. LLF: 91.1501353670025
Iteration: 12, Func. Count: 157, Neg. LLF: 79.92982945806926
Iteration: 13, Func. Count: 169, Neg. LLF: 82.80416321591444
Iteration: 14, Func. Count: 182, Neg. LLF: 80.24204142844911
Iteration: 15, Func. Count: 195, Neg. LLF: 79.77559606314018
Iteration: 16, Func. Count: 207, Neg. LLF: 79.76241444150368
Iteration: 17, Func. Count: 219, Neg. LLF: 79.76513413439403
Iteration: 18, Func. Count: 232, Neg. LLF: 79.74661279111344
Iteration: 19, Func. Count: 244, Neg. LLF: 79.74585475126305
Iteration: 20, Func. Count: 256, Neg. LLF: 79.74563823622755
Iteration: 21, Func. Count: 268, Neg. LLF: 79.74563469097015
Iteration: 22, Func. Count: 280, Neg. LLF: 79.74563392047892
Optimization terminated successfully (Exit mode 0)
Current function value: 79.74563392047892
Iterations: 22
Function evaluations: 280
Gradient evaluations: 22
Iteration: 1, Func. Count: 14, Neg. LLF: 143.23806011823464
Iteration: 2, Func. Count: 33, Neg. LLF: 363.7575723732494
Iteration: 3, Func. Count: 47, Neg. LLF: 277.38475925888986
Iteration: 4, Func. Count: 61, Neg. LLF: 279.7072755352598
Iteration: 5, Func. Count: 75, Neg. LLF: 174.2475077400546
Iteration: 6, Func. Count: 89, Neg. LLF: 485.04254817078214
Iteration: 7, Func. Count: 103, Neg. LLF: 89.87346785574135
Iteration: 8, Func. Count: 117, Neg. LLF: 90.52026472195975
Iteration: 9, Func. Count: 131, Neg. LLF: 120.0807362520918
Iteration: 10, Func. Count: 145, Neg. LLF: 83.13879366274381
Iteration: 11, Func. Count: 159, Neg. LLF: 86.22105812881723
Iteration: 12, Func. Count: 173, Neg. LLF: 79.92461167890137
Iteration: 13, Func. Count: 186, Neg. LLF: 79.8596504272098
Iteration: 14, Func. Count: 199, Neg. LLF: 79.94996330143947
Iteration: 15, Func. Count: 213, Neg. LLF: 79.81785635004371
Iteration: 16, Func. Count: 227, Neg. LLF: 79.8065061550389
Iteration: 17, Func. Count: 241, Neg. LLF: 79.74720846040158
Iteration: 18, Func. Count: 254, Neg. LLF: 79.74678746227421
Iteration: 19, Func. Count: 267, Neg. LLF: 79.74668143046198
Iteration: 20, Func. Count: 280, Neg. LLF: 79.7465434671574
Iteration: 21, Func. Count: 293, Neg. LLF: 79.7461692667079
Iteration: 22, Func. Count: 306, Neg. LLF: 79.74583388553957
Iteration: 23, Func. Count: 319, Neg. LLF: 79.74566196753536
Iteration: 24, Func. Count: 332, Neg. LLF: 79.74563492158647
Iteration: 25, Func. Count: 345, Neg. LLF: 79.74563386928774
Iteration: 26, Func. Count: 357, Neg. LLF: 79.74563392456999
Optimization terminated successfully (Exit mode 0)
Current function value: 79.74563386928774
Iterations: 26
Function evaluations: 357
Gradient evaluations: 26
Iteration: 1, Func. Count: 15, Neg. LLF: 146.1603782738095
Iteration: 2, Func. Count: 35, Neg. LLF: 503.95474087146766
Iteration: 3, Func. Count: 50, Neg. LLF: 550.5409959571059
Iteration: 4, Func. Count: 65, Neg. LLF: 96.42372324883972
Iteration: 5, Func. Count: 80, Neg. LLF: 112.01504161604085
Iteration: 6, Func. Count: 95, Neg. LLF: 94.15085117753019
Iteration: 7, Func. Count: 110, Neg. LLF: 90.75985944354343
Iteration: 8, Func. Count: 124, Neg. LLF: 106.23967921899337
Iteration: 9, Func. Count: 139, Neg. LLF: 114.30969904054191
Iteration: 10, Func. Count: 155, Neg. LLF: 86.28897921938537
Iteration: 11, Func. Count: 169, Neg. LLF: 110.9603107988489
Iteration: 12, Func. Count: 184, Neg. LLF: 103.80382318980648
Iteration: 13, Func. Count: 199, Neg. LLF: 81.23630464101932
Iteration: 14, Func. Count: 213, Neg. LLF: 80.6410237717962
Iteration: 15, Func. Count: 227, Neg. LLF: 80.71907313436503
Iteration: 16, Func. Count: 242, Neg. LLF: 79.83783864344325
Iteration: 17, Func. Count: 256, Neg. LLF: 79.77212738377925
Iteration: 18, Func. Count: 270, Neg. LLF: 79.76328428543384
Iteration: 19, Func. Count: 284, Neg. LLF: 79.75000341775231
Iteration: 20, Func. Count: 298, Neg. LLF: 79.74753334053078
Iteration: 21, Func. Count: 312, Neg. LLF: 79.74643660369432
Iteration: 22, Func. Count: 326, Neg. LLF: 79.74633621233798
Iteration: 23, Func. Count: 340, Neg. LLF: 79.74626543817165
Iteration: 24, Func. Count: 354, Neg. LLF: 79.74617515200116
Iteration: 25, Func. Count: 368, Neg. LLF: 79.74600344211139
Iteration: 26, Func. Count: 382, Neg. LLF: 79.74579941422151
Iteration: 27, Func. Count: 396, Neg. LLF: 79.74566818494928
Iteration: 28, Func. Count: 410, Neg. LLF: 79.74563606826965
Iteration: 29, Func. Count: 424, Neg. LLF: 79.74563390234437
Iteration: 30, Func. Count: 437, Neg. LLF: 79.74563391459932
Optimization terminated successfully (Exit mode 0)
Current function value: 79.74563390234437
Iterations: 30
Function evaluations: 437
Gradient evaluations: 30
Iteration: 1, Func. Count: 16, Neg. LLF: 148.4429285475837
Iteration: 2, Func. Count: 37, Neg. LLF: 861.2140161320738
Iteration: 3, Func. Count: 53, Neg. LLF: 692.7207840006323
Iteration: 4, Func. Count: 69, Neg. LLF: 5004.639133631252
Iteration: 5, Func. Count: 85, Neg. LLF: 200.4747372066623
Iteration: 6, Func. Count: 101, Neg. LLF: 5562.717870042236
Iteration: 7, Func. Count: 117, Neg. LLF: 106.18688710114566
Iteration: 8, Func. Count: 133, Neg. LLF: 273.24661752694414
Iteration: 9, Func. Count: 149, Neg. LLF: 99.77945229968495
Iteration: 10, Func. Count: 165, Neg. LLF: 265.6596142244244
Iteration: 11, Func. Count: 181, Neg. LLF: 85.41664573638195
Iteration: 12, Func. Count: 196, Neg. LLF: 126.79391945829457
Iteration: 13, Func. Count: 215, Neg. LLF: 83.3215929927428
Iteration: 14, Func. Count: 231, Neg. LLF: 150.82677393311673
Iteration: 15, Func. Count: 248, Neg. LLF: 79.94604016202823
Iteration: 16, Func. Count: 263, Neg. LLF: 80.030299484606
Iteration: 17, Func. Count: 279, Neg. LLF: 79.80454093950371
Iteration: 18, Func. Count: 294, Neg. LLF: 79.77971162707445
Iteration: 19, Func. Count: 309, Neg. LLF: 79.75848633044377
Iteration: 20, Func. Count: 324, Neg. LLF: 79.75347458843599
Iteration: 21, Func. Count: 339, Neg. LLF: 79.75103508077527
Iteration: 22, Func. Count: 354, Neg. LLF: 79.74976074486469
Iteration: 23, Func. Count: 369, Neg. LLF: 79.74817551480213
Iteration: 24, Func. Count: 384, Neg. LLF: 79.7470399027524
Iteration: 25, Func. Count: 399, Neg. LLF: 79.74648260456975
Iteration: 26, Func. Count: 414, Neg. LLF: 79.7462629497435
Iteration: 27, Func. Count: 429, Neg. LLF: 79.74612224822441
Iteration: 28, Func. Count: 444, Neg. LLF: 79.74593909365728
Iteration: 29, Func. Count: 459, Neg. LLF: 79.74575320503516
Iteration: 30, Func. Count: 474, Neg. LLF: 79.74565556976086
Iteration: 31, Func. Count: 489, Neg. LLF: 79.74563576462118
Iteration: 32, Func. Count: 504, Neg. LLF: 79.74563402860956
Iteration: 33, Func. Count: 518, Neg. LLF: 79.74563407926891
Optimization terminated successfully (Exit mode 0)
Current function value: 79.74563402860956
Iterations: 33
Function evaluations: 518
Gradient evaluations: 33
Iteration: 1, Func. Count: 7, Neg. LLF: 153.46177350174196
Iteration: 2, Func. Count: 16, Neg. LLF: 10524746.712753518
Iteration: 3, Func. Count: 23, Neg. LLF: 399.9981035385756
Iteration: 4, Func. Count: 30, Neg. LLF: 200.23118282771065
Iteration: 5, Func. Count: 37, Neg. LLF: 83.08393990151855
Iteration: 6, Func. Count: 43, Neg. LLF: 162.1186149601066
Iteration: 7, Func. Count: 50, Neg. LLF: 81.6766753331721
Iteration: 8, Func. Count: 56, Neg. LLF: 80.77854085388331
Iteration: 9, Func. Count: 62, Neg. LLF: 81.76526523670847
Iteration: 10, Func. Count: 69, Neg. LLF: 80.9848638574182
Iteration: 11, Func. Count: 76, Neg. LLF: 80.52600492745874
Iteration: 12, Func. Count: 82, Neg. LLF: 80.48178771526065
Iteration: 13, Func. Count: 88, Neg. LLF: 80.47230142674101
Iteration: 14, Func. Count: 94, Neg. LLF: 80.47202323118611
Iteration: 15, Func. Count: 100, Neg. LLF: 80.47199935231836
Iteration: 16, Func. Count: 105, Neg. LLF: 80.47199935235112
Optimization terminated successfully (Exit mode 0)
Current function value: 80.47199935231836
Iterations: 16
Function evaluations: 105
Gradient evaluations: 16
Iteration: 1, Func. Count: 5, Neg. LLF: 126.39716588859325
Iteration: 2, Func. Count: 12, Neg. LLF: 99.31962857215373
Iteration: 3, Func. Count: 16, Neg. LLF: 117.8072038325566
Iteration: 4, Func. Count: 21, Neg. LLF: 98.87598711142743
Iteration: 5, Func. Count: 25, Neg. LLF: 98.81810674459375
Iteration: 6, Func. Count: 29, Neg. LLF: 98.81416193488175
Iteration: 7, Func. Count: 33, Neg. LLF: 98.81409572372219
Iteration: 8, Func. Count: 36, Neg. LLF: 98.81409596411017
Optimization terminated successfully (Exit mode 0)
Current function value: 98.81409572372219
Iterations: 8
Function evaluations: 36
Gradient evaluations: 8
Iteration: 1, Func. Count: 6, Neg. LLF: 188.19421373770547
Iteration: 2, Func. Count: 15, Neg. LLF: 96.40385664379733
Iteration: 3, Func. Count: 20, Neg. LLF: 97.0499863721502
Iteration: 4, Func. Count: 26, Neg. LLF: 95.86143540375488
Iteration: 5, Func. Count: 31, Neg. LLF: 94.91406874070161
Iteration: 6, Func. Count: 36, Neg. LLF: 94.9010554130334
Iteration: 7, Func. Count: 41, Neg. LLF: 94.90044332674154
Iteration: 8, Func. Count: 46, Neg. LLF: 94.90043543575007
Iteration: 9, Func. Count: 51, Neg. LLF: 94.90038596169714
Iteration: 10, Func. Count: 55, Neg. LLF: 94.90038653980086
Optimization terminated successfully (Exit mode 0)
Current function value: 94.90038596169714
Iterations: 10
Function evaluations: 55
Gradient evaluations: 10
Iteration: 1, Func. Count: 7, Neg. LLF: 180.7451881313468
Iteration: 2, Func. Count: 18, Neg. LLF: 99.07619443510924
Iteration: 3, Func. Count: 25, Neg. LLF: 95.16251452209255
Iteration: 4, Func. Count: 31, Neg. LLF: 97.50586463151014
Iteration: 5, Func. Count: 38, Neg. LLF: 94.99106687746013
Iteration: 6, Func. Count: 44, Neg. LLF: 94.98191393300417
Iteration: 7, Func. Count: 50, Neg. LLF: 94.97431376564612
Iteration: 8, Func. Count: 56, Neg. LLF: 94.96797722015806
Iteration: 9, Func. Count: 62, Neg. LLF: 94.96676363647566
Iteration: 10, Func. Count: 68, Neg. LLF: 94.96100215558039
Iteration: 11, Func. Count: 74, Neg. LLF: 94.95212977335997
Iteration: 12, Func. Count: 80, Neg. LLF: 94.94357236207922
Iteration: 13, Func. Count: 86, Neg. LLF: 94.90367584481623
Iteration: 14, Func. Count: 92, Neg. LLF: 94.9004238930459
Iteration: 15, Func. Count: 98, Neg. LLF: 94.90042030566569
Iteration: 16, Func. Count: 104, Neg. LLF: 107.9578658487448
Iteration: 17, Func. Count: 114, Neg. LLF: 94.90697198192218
Iteration: 18, Func. Count: 121, Neg. LLF: 94.90038537472908
Optimization terminated successfully (Exit mode 0)
Current function value: 94.90038595079129
Iterations: 19
Function evaluations: 121
Gradient evaluations: 18
Iteration: 1, Func. Count: 8, Neg. LLF: 179.32571923473753
Iteration: 2, Func. Count: 20, Neg. LLF: 100.84962505808798
Iteration: 3, Func. Count: 28, Neg. LLF: 94.99672078731629
Iteration: 4, Func. Count: 35, Neg. LLF: 95.09150558510736
Iteration: 5, Func. Count: 43, Neg. LLF: 94.96934484059123
Iteration: 6, Func. Count: 50, Neg. LLF: 94.96483991602331
Iteration: 7, Func. Count: 57, Neg. LLF: 94.9637931181082
Iteration: 8, Func. Count: 64, Neg. LLF: 94.96356772242817
Iteration: 9, Func. Count: 71, Neg. LLF: 94.96356542800343
Iteration: 10, Func. Count: 77, Neg. LLF: 94.96356522278539
Optimization terminated successfully (Exit mode 0)
Current function value: 94.96356542800343
Iterations: 10
Function evaluations: 77
Gradient evaluations: 10
Iteration: 1, Func. Count: 9, Neg. LLF: 180.40861026853645
Iteration: 2, Func. Count: 22, Neg. LLF: 102.13303423121904
Iteration: 3, Func. Count: 31, Neg. LLF: 95.27010357310384
Iteration: 4, Func. Count: 39, Neg. LLF: 95.11696619151833
Iteration: 5, Func. Count: 48, Neg. LLF: 95.09203610792261
Iteration: 6, Func. Count: 57, Neg. LLF: 95.06269321516851
Iteration: 7, Func. Count: 65, Neg. LLF: 95.06155806104749
Iteration: 8, Func. Count: 73, Neg. LLF: 95.06074641138677
Iteration: 9, Func. Count: 81, Neg. LLF: 95.05007525209945
Iteration: 10, Func. Count: 89, Neg. LLF: 95.01885832020497
Iteration: 11, Func. Count: 97, Neg. LLF: 95.00165869090598
Iteration: 12, Func. Count: 105, Neg. LLF: 94.9859881767152
Iteration: 13, Func. Count: 113, Neg. LLF: 94.98454710555471
Iteration: 14, Func. Count: 121, Neg. LLF: 94.98314065351056
Iteration: 15, Func. Count: 129, Neg. LLF: 94.97656050684685
Iteration: 16, Func. Count: 137, Neg. LLF: 94.96107550445721
Iteration: 17, Func. Count: 145, Neg. LLF: 94.94797282467832
Iteration: 18, Func. Count: 153, Neg. LLF: 94.9319608836174
Iteration: 19, Func. Count: 161, Neg. LLF: 94.93118464336878
Iteration: 20, Func. Count: 169, Neg. LLF: 94.92721105100169
Iteration: 21, Func. Count: 177, Neg. LLF: 94.91570825882918
Iteration: 22, Func. Count: 185, Neg. LLF: 94.91079535023411
Iteration: 23, Func. Count: 193, Neg. LLF: 94.90194955777513
Iteration: 24, Func. Count: 201, Neg. LLF: 94.90047866646997
Iteration: 25, Func. Count: 209, Neg. LLF: 94.90046448687825
Iteration: 26, Func. Count: 217, Neg. LLF: 94.90038854736959
Iteration: 27, Func. Count: 225, Neg. LLF: 98.75501617880272
Iteration: 28, Func. Count: 237, Neg. LLF: 94.90039292468768
Optimization terminated successfully (Exit mode 0)
Current function value: 94.90038683334645
Iterations: 29
Function evaluations: 238
Gradient evaluations: 28
Iteration: 1, Func. Count: 6, Neg. LLF: 128.57487264913823
Iteration: 2, Func. Count: 14, Neg. LLF: 105.43382748486468
Iteration: 3, Func. Count: 20, Neg. LLF: 99.19355663966458
Iteration: 4, Func. Count: 25, Neg. LLF: 99.09939181961794
Iteration: 5, Func. Count: 30, Neg. LLF: 98.87011305499037
Iteration: 6, Func. Count: 35, Neg. LLF: 98.82432434582559
Iteration: 7, Func. Count: 40, Neg. LLF: 98.81422370321152
Iteration: 8, Func. Count: 45, Neg. LLF: 98.81409568175344
Iteration: 9, Func. Count: 49, Neg. LLF: 98.81409576095004
Optimization terminated successfully (Exit mode 0)
Current function value: 98.81409568175344
Iterations: 9
Function evaluations: 49
Gradient evaluations: 9
Iteration: 1, Func. Count: 7, Neg. LLF: 187.73292757045573
Iteration: 2, Func. Count: 17, Neg. LLF: 96.46765984990157
Iteration: 3, Func. Count: 23, Neg. LLF: 96.62126474170674
Iteration: 4, Func. Count: 30, Neg. LLF: 95.07432633700708
Iteration: 5, Func. Count: 36, Neg. LLF: 94.900692675828
Iteration: 6, Func. Count: 42, Neg. LLF: 94.90039861265808
Iteration: 7, Func. Count: 48, Neg. LLF: 94.9003859513385
Iteration: 8, Func. Count: 54, Neg. LLF: 94.90336877462778
Optimization terminated successfully (Exit mode 0)
Current function value: 94.90038595086081
Iterations: 9
Function evaluations: 58
Gradient evaluations: 8
Iteration: 1, Func. Count: 8, Neg. LLF: 180.59578475747352
Iteration: 2, Func. Count: 20, Neg. LLF: 99.26398635575163
Iteration: 3, Func. Count: 28, Neg. LLF: 95.16144973949795
Iteration: 4, Func. Count: 35, Neg. LLF: 96.65104770748314
Iteration: 5, Func. Count: 43, Neg. LLF: 94.99568809590333
Iteration: 6, Func. Count: 50, Neg. LLF: 94.98531530823374
Iteration: 7, Func. Count: 57, Neg. LLF: 94.97416271440977
Iteration: 8, Func. Count: 64, Neg. LLF: 94.96715132887388
Iteration: 9, Func. Count: 71, Neg. LLF: 94.96605519285046
Iteration: 10, Func. Count: 78, Neg. LLF: 94.96049688582056
Iteration: 11, Func. Count: 85, Neg. LLF: 94.95157736252149
Iteration: 12, Func. Count: 92, Neg. LLF: 94.94276177373199
Iteration: 13, Func. Count: 99, Neg. LLF: 94.90042731269396
Iteration: 14, Func. Count: 106, Neg. LLF: 94.90039676956194
Iteration: 15, Func. Count: 113, Neg. LLF: 94.90039303292853
Iteration: 16, Func. Count: 120, Neg. LLF: 94.90038595439161
Iteration: 17, Func. Count: 126, Neg. LLF: 94.90038537825421
Optimization terminated successfully (Exit mode 0)
Current function value: 94.90038595439161
Iterations: 17
Function evaluations: 126
Gradient evaluations: 17
Iteration: 1, Func. Count: 9, Neg. LLF: 177.4592767315197
Iteration: 2, Func. Count: 22, Neg. LLF: 101.2695694433508
Iteration: 3, Func. Count: 31, Neg. LLF: 94.99392247494252
Iteration: 4, Func. Count: 39, Neg. LLF: 95.06477017550583
Iteration: 5, Func. Count: 48, Neg. LLF: 94.96818101944399
Iteration: 6, Func. Count: 56, Neg. LLF: 94.96427957585534
Iteration: 7, Func. Count: 64, Neg. LLF: 94.96364609786919
Iteration: 8, Func. Count: 72, Neg. LLF: 94.96356742813761
Iteration: 9, Func. Count: 80, Neg. LLF: 94.96356541553918
Iteration: 10, Func. Count: 87, Neg. LLF: 94.96356521037596
Optimization terminated successfully (Exit mode 0)
Current function value: 94.96356541553918
Iterations: 10
Function evaluations: 87
Gradient evaluations: 10
Iteration: 1, Func. Count: 10, Neg. LLF: 181.03548622841635
Iteration: 2, Func. Count: 24, Neg. LLF: 102.49991602134783
Iteration: 3, Func. Count: 34, Neg. LLF: 95.07093511334263
Iteration: 4, Func. Count: 43, Neg. LLF: 95.06567364578699
Iteration: 5, Func. Count: 53, Neg. LLF: 95.05897165497166
Iteration: 6, Func. Count: 62, Neg. LLF: 95.05722010831764
Iteration: 7, Func. Count: 71, Neg. LLF: 95.0569757088426
Iteration: 8, Func. Count: 80, Neg. LLF: 95.05697043077123
Iteration: 9, Func. Count: 88, Neg. LLF: 95.05697027118869
Optimization terminated successfully (Exit mode 0)
Current function value: 95.05697043077123
Iterations: 9
Function evaluations: 88
Gradient evaluations: 9
Iteration: 1, Func. Count: 7, Neg. LLF: 128.5451362792693
Iteration: 2, Func. Count: 16, Neg. LLF: 104.72419259034346
Iteration: 3, Func. Count: 23, Neg. LLF: 99.23853183374452
Iteration: 4, Func. Count: 29, Neg. LLF: 99.12828754830598
Iteration: 5, Func. Count: 35, Neg. LLF: 98.87789257023094
Iteration: 6, Func. Count: 41, Neg. LLF: 98.82499328602633
Iteration: 7, Func. Count: 47, Neg. LLF: 98.81412081355126
Iteration: 8, Func. Count: 53, Neg. LLF: 98.81409542064027
Iteration: 9, Func. Count: 58, Neg. LLF: 98.81409565900843
Optimization terminated successfully (Exit mode 0)
Current function value: 98.81409542064027
Iterations: 9
Function evaluations: 58
Gradient evaluations: 9
Iteration: 1, Func. Count: 8, Neg. LLF: 187.5341345438839
Iteration: 2, Func. Count: 19, Neg. LLF: 96.4016770128217
Iteration: 3, Func. Count: 26, Neg. LLF: 96.78997966271889
Iteration: 4, Func. Count: 34, Neg. LLF: 95.79556072353245
Iteration: 5, Func. Count: 41, Neg. LLF: 94.91474561274156
Iteration: 6, Func. Count: 48, Neg. LLF: 94.90125135806332
Iteration: 7, Func. Count: 55, Neg. LLF: 94.9004113854264
Iteration: 8, Func. Count: 62, Neg. LLF: 94.90038891845929
Iteration: 9, Func. Count: 69, Neg. LLF: 94.9003859526303
Iteration: 10, Func. Count: 76, Neg. LLF: 94.9103234014693
Optimization terminated successfully (Exit mode 0)
Current function value: 94.90038595086564
Iterations: 11
Function evaluations: 80
Gradient evaluations: 10
Iteration: 1, Func. Count: 9, Neg. LLF: 180.24260591835724
Iteration: 2, Func. Count: 22, Neg. LLF: 99.21910012589586
Iteration: 3, Func. Count: 31, Neg. LLF: 95.15910570796954
Iteration: 4, Func. Count: 39, Neg. LLF: 96.62010108111583
Iteration: 5, Func. Count: 48, Neg. LLF: 94.99667138480285
Iteration: 6, Func. Count: 56, Neg. LLF: 94.9856017445847
Iteration: 7, Func. Count: 64, Neg. LLF: 94.97429270881271
Iteration: 8, Func. Count: 72, Neg. LLF: 94.96699196163074
Iteration: 9, Func. Count: 80, Neg. LLF: 94.96592175237711
Iteration: 10, Func. Count: 88, Neg. LLF: 94.96046026965513
Iteration: 11, Func. Count: 96, Neg. LLF: 94.95151170638908
Iteration: 12, Func. Count: 104, Neg. LLF: 94.94267622517968
Iteration: 13, Func. Count: 112, Neg. LLF: 94.90042236455432
Iteration: 14, Func. Count: 120, Neg. LLF: 94.9003913893068
Iteration: 15, Func. Count: 128, Neg. LLF: 94.90039179935178
Iteration: 16, Func. Count: 136, Neg. LLF: 94.90038591915282
Optimization terminated successfully (Exit mode 0)
Current function value: 94.9003864955623
Iterations: 16
Function evaluations: 136
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 178.12658296190725
Iteration: 2, Func. Count: 24, Neg. LLF: 101.12951553188684
Iteration: 3, Func. Count: 34, Neg. LLF: 94.99691741261452
Iteration: 4, Func. Count: 43, Neg. LLF: 95.06628955234326
Iteration: 5, Func. Count: 53, Neg. LLF: 94.96667815107043
Iteration: 6, Func. Count: 62, Neg. LLF: 94.96406497353789
Iteration: 7, Func. Count: 71, Neg. LLF: 94.96361467775934
Iteration: 8, Func. Count: 80, Neg. LLF: 94.96356533712509
Iteration: 9, Func. Count: 88, Neg. LLF: 94.96356513170402
Optimization terminated successfully (Exit mode 0)
Current function value: 94.96356533712509
Iterations: 9
Function evaluations: 88
Gradient evaluations: 9
Iteration: 1, Func. Count: 11, Neg. LLF: 181.8143715839509
Iteration: 2, Func. Count: 26, Neg. LLF: 102.52465304616719
Iteration: 3, Func. Count: 37, Neg. LLF: 95.09126652353426
Iteration: 4, Func. Count: 47, Neg. LLF: 95.06487105931011
Iteration: 5, Func. Count: 58, Neg. LLF: 95.06331884780354
Iteration: 6, Func. Count: 68, Neg. LLF: 95.06117855669183
Iteration: 7, Func. Count: 78, Neg. LLF: 95.18922531453491
Iteration: 8, Func. Count: 89, Neg. LLF: 95.15218324797159
Iteration: 9, Func. Count: 100, Neg. LLF: 95.05756082053016
Iteration: 10, Func. Count: 110, Neg. LLF: 95.05699479896403
Iteration: 11, Func. Count: 120, Neg. LLF: 95.05697094070113
Iteration: 12, Func. Count: 130, Neg. LLF: 95.05697017630746
Optimization terminated successfully (Exit mode 0)
Current function value: 95.05697017630746
Iterations: 12
Function evaluations: 130
Gradient evaluations: 12
Iteration: 1, Func. Count: 8, Neg. LLF: 128.31473217959447
Iteration: 2, Func. Count: 18, Neg. LLF: 102.7790253782553
Iteration: 3, Func. Count: 26, Neg. LLF: 99.24595849516932
Iteration: 4, Func. Count: 33, Neg. LLF: 99.11261703413783
Iteration: 5, Func. Count: 40, Neg. LLF: 98.87713135113131
Iteration: 6, Func. Count: 47, Neg. LLF: 98.82308027417173
Iteration: 7, Func. Count: 54, Neg. LLF: 98.8142837214263
Iteration: 8, Func. Count: 61, Neg. LLF: 98.81409550584371
Iteration: 9, Func. Count: 67, Neg. LLF: 98.81409573327502
Optimization terminated successfully (Exit mode 0)
Current function value: 98.81409550584371
Iterations: 9
Function evaluations: 67
Gradient evaluations: 9
Iteration: 1, Func. Count: 9, Neg. LLF: 187.20089100721557
Iteration: 2, Func. Count: 21, Neg. LLF: 96.38713204238955
Iteration: 3, Func. Count: 29, Neg. LLF: 96.74608580671506
Iteration: 4, Func. Count: 38, Neg. LLF: 95.9247799645307
Iteration: 5, Func. Count: 46, Neg. LLF: 94.92651556709447
Iteration: 6, Func. Count: 54, Neg. LLF: 94.90050185861969
Iteration: 7, Func. Count: 62, Neg. LLF: 94.90038853060177
Iteration: 8, Func. Count: 70, Neg. LLF: 94.9003859532516
Iteration: 9, Func. Count: 78, Neg. LLF: 94.91367414693688
Optimization terminated successfully (Exit mode 0)
Current function value: 94.90038595088224
Iterations: 10
Function evaluations: 82
Gradient evaluations: 9
Iteration: 1, Func. Count: 10, Neg. LLF: 180.581889447997
Iteration: 2, Func. Count: 24, Neg. LLF: 99.10001755762491
Iteration: 3, Func. Count: 34, Neg. LLF: 95.16538651339255
Iteration: 4, Func. Count: 43, Neg. LLF: 96.81276988670179
Iteration: 5, Func. Count: 53, Neg. LLF: 94.99951914082284
Iteration: 6, Func. Count: 62, Neg. LLF: 94.9879174418322
Iteration: 7, Func. Count: 71, Neg. LLF: 94.97467130633613
Iteration: 8, Func. Count: 80, Neg. LLF: 94.96732874447281
Iteration: 9, Func. Count: 89, Neg. LLF: 94.96621715451634
Iteration: 10, Func. Count: 98, Neg. LLF: 94.96058290557971
Iteration: 11, Func. Count: 107, Neg. LLF: 94.951711258802
Iteration: 12, Func. Count: 116, Neg. LLF: 94.94293028876051
Iteration: 13, Func. Count: 125, Neg. LLF: 94.90042738375605
Iteration: 14, Func. Count: 134, Neg. LLF: 94.90038927011013
Iteration: 15, Func. Count: 143, Neg. LLF: 94.90039992699049
Optimization terminated successfully (Exit mode 0)
Current function value: 94.90038858450922
Iterations: 15
Function evaluations: 144
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 178.51111928845884
Iteration: 2, Func. Count: 26, Neg. LLF: 101.04868930859286
Iteration: 3, Func. Count: 37, Neg. LLF: 94.99702714758187
Iteration: 4, Func. Count: 47, Neg. LLF: 95.06745663645275
Iteration: 5, Func. Count: 58, Neg. LLF: 94.96717422605961
Iteration: 6, Func. Count: 68, Neg. LLF: 94.96424144674195
Iteration: 7, Func. Count: 78, Neg. LLF: 94.96364171225798
Iteration: 8, Func. Count: 88, Neg. LLF: 94.96356597246121
Iteration: 9, Func. Count: 98, Neg. LLF: 94.96356534372877
Optimization terminated successfully (Exit mode 0)
Current function value: 94.96356534372877
Iterations: 9
Function evaluations: 98
Gradient evaluations: 9
Iteration: 1, Func. Count: 12, Neg. LLF: 182.32195395333525
Iteration: 2, Func. Count: 28, Neg. LLF: 102.3848658764188
Iteration: 3, Func. Count: 40, Neg. LLF: 95.08619983386309
Iteration: 4, Func. Count: 51, Neg. LLF: 95.0640501989973
Iteration: 5, Func. Count: 63, Neg. LLF: 95.06278350251729
Iteration: 6, Func. Count: 74, Neg. LLF: 95.05978081664101
Iteration: 7, Func. Count: 85, Neg. LLF: 95.35425146849734
Iteration: 8, Func. Count: 97, Neg. LLF: 95.05749057817928
Iteration: 9, Func. Count: 108, Neg. LLF: 95.05700389573911
Iteration: 10, Func. Count: 119, Neg. LLF: 95.05697179523257
Iteration: 11, Func. Count: 130, Neg. LLF: 95.05697017000062
Iteration: 12, Func. Count: 140, Neg. LLF: 95.05697001040492
Optimization terminated successfully (Exit mode 0)
Current function value: 95.05697017000062
Iterations: 12
Function evaluations: 140
Gradient evaluations: 12
Iteration: 1, Func. Count: 5, Neg. LLF: 139.44154673776256
Iteration: 2, Func. Count: 11, Neg. LLF: 115.33698425578272
Iteration: 3, Func. Count: 16, Neg. LLF: 1400.8450522359296
Iteration: 4, Func. Count: 21, Neg. LLF: 3457.290221740148
Iteration: 5, Func. Count: 26, Neg. LLF: 1731.9517902367484
Iteration: 6, Func. Count: 31, Neg. LLF: 98.85119483722625
Iteration: 7, Func. Count: 36, Neg. LLF: 88.83336996231215
Iteration: 8, Func. Count: 40, Neg. LLF: 88.44999057206057
Iteration: 9, Func. Count: 44, Neg. LLF: 88.25395305235321
Iteration: 10, Func. Count: 48, Neg. LLF: 88.16940013594414
Iteration: 11, Func. Count: 52, Neg. LLF: 88.16871395569811
Iteration: 12, Func. Count: 56, Neg. LLF: 88.16868940661111
Iteration: 13, Func. Count: 59, Neg. LLF: 88.16868941860784
Optimization terminated successfully (Exit mode 0)
Current function value: 88.16868940661111
Iterations: 13
Function evaluations: 59
Gradient evaluations: 13
Iteration: 1, Func. Count: 6, Neg. LLF: 144.3724719733614
Iteration: 2, Func. Count: 13, Neg. LLF: 16078.93377928
Iteration: 3, Func. Count: 19, Neg. LLF: 124.17504902943
Iteration: 4, Func. Count: 25, Neg. LLF: 89.13212635326532
Iteration: 5, Func. Count: 30, Neg. LLF: 1457.1818322756653
Iteration: 6, Func. Count: 36, Neg. LLF: 88.74762941970546
Iteration: 7, Func. Count: 42, Neg. LLF: 88.30979052876155
Iteration: 8, Func. Count: 48, Neg. LLF: 87.8040484787401
Iteration: 9, Func. Count: 53, Neg. LLF: 87.79979704791968
Iteration: 10, Func. Count: 58, Neg. LLF: 87.79947909372305
Iteration: 11, Func. Count: 63, Neg. LLF: 87.7990872122298
Iteration: 12, Func. Count: 68, Neg. LLF: 87.79907589570323
Iteration: 13, Func. Count: 72, Neg. LLF: 87.79907587986243
Optimization terminated successfully (Exit mode 0)
Current function value: 87.79907589570323
Iterations: 13
Function evaluations: 72
Gradient evaluations: 13
Iteration: 1, Func. Count: 7, Neg. LLF: 331.4221118876317
Iteration: 2, Func. Count: 14, Neg. LLF: 1147.1276785290036
Iteration: 3, Func. Count: 21, Neg. LLF: 6350.574509745552
Iteration: 4, Func. Count: 28, Neg. LLF: 91.68133801944552
Iteration: 5, Func. Count: 35, Neg. LLF: 1634.4123569692442
Iteration: 6, Func. Count: 42, Neg. LLF: 88.49302086829915
Iteration: 7, Func. Count: 48, Neg. LLF: 88.33434956309164
Iteration: 8, Func. Count: 55, Neg. LLF: 90.72234533105195
Iteration: 9, Func. Count: 62, Neg. LLF: 87.80536309212088
Iteration: 10, Func. Count: 68, Neg. LLF: 87.79932124135763
Iteration: 11, Func. Count: 74, Neg. LLF: 87.79908400092826
Iteration: 12, Func. Count: 80, Neg. LLF: 87.79907595883584
Iteration: 13, Func. Count: 85, Neg. LLF: 87.79907617452513
Optimization terminated successfully (Exit mode 0)
Current function value: 87.79907595883584
Iterations: 13
Function evaluations: 85
Gradient evaluations: 13
Iteration: 1, Func. Count: 8, Neg. LLF: 186.14117455722652
Iteration: 2, Func. Count: 16, Neg. LLF: 3596.1409057987044
Iteration: 3, Func. Count: 24, Neg. LLF: 137.15169253551795
Iteration: 4, Func. Count: 32, Neg. LLF: 222.488933389414
Iteration: 5, Func. Count: 40, Neg. LLF: 172.56985648205605
Iteration: 6, Func. Count: 48, Neg. LLF: 88.55078422647168
Iteration: 7, Func. Count: 55, Neg. LLF: 1795.9722134741316
Iteration: 8, Func. Count: 63, Neg. LLF: 92.07067537335038
Iteration: 9, Func. Count: 71, Neg. LLF: 88.26541359814445
Iteration: 10, Func. Count: 79, Neg. LLF: 87.80336323393554
Iteration: 11, Func. Count: 86, Neg. LLF: 87.7991404347047
Iteration: 12, Func. Count: 93, Neg. LLF: 87.7990871552717
Iteration: 13, Func. Count: 100, Neg. LLF: 87.79907620388018
Iteration: 14, Func. Count: 107, Neg. LLF: 87.79907567764575
Optimization terminated successfully (Exit mode 0)
Current function value: 87.79907567764575
Iterations: 14
Function evaluations: 107
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 495.2732760424431
Iteration: 2, Func. Count: 18, Neg. LLF: 1949.2903757759266
Iteration: 3, Func. Count: 27, Neg. LLF: 7428.607337335562
Iteration: 4, Func. Count: 36, Neg. LLF: 92.00045178625471
Iteration: 5, Func. Count: 45, Neg. LLF: 194.45769026266998
Iteration: 6, Func. Count: 54, Neg. LLF: 88.80730186479755
Iteration: 7, Func. Count: 63, Neg. LLF: 88.82476341103852
Iteration: 8, Func. Count: 72, Neg. LLF: 117.49881084751067
Iteration: 9, Func. Count: 81, Neg. LLF: 87.51681364440445
Iteration: 10, Func. Count: 89, Neg. LLF: 87.51453968453231
Iteration: 11, Func. Count: 97, Neg. LLF: 87.51301537451019
Iteration: 12, Func. Count: 105, Neg. LLF: 87.51326475849181
Iteration: 13, Func. Count: 114, Neg. LLF: 87.5126099395715
Iteration: 14, Func. Count: 121, Neg. LLF: 87.51260992196787
Optimization terminated successfully (Exit mode 0)
Current function value: 87.5126099395715
Iterations: 14
Function evaluations: 121
Gradient evaluations: 14
Iteration: 1, Func. Count: 6, Neg. LLF: 139.62195196420518
Iteration: 2, Func. Count: 13, Neg. LLF: 111.33074635512116
Iteration: 3, Func. Count: 19, Neg. LLF: 9889599.344863702
Iteration: 4, Func. Count: 25, Neg. LLF: 4798477.242631434
Iteration: 5, Func. Count: 31, Neg. LLF: 8838948.948588425
Iteration: 6, Func. Count: 37, Neg. LLF: 198.50058823946316
Iteration: 7, Func. Count: 43, Neg. LLF: 89.01446298207705
Iteration: 8, Func. Count: 49, Neg. LLF: 83.61507330274881
Iteration: 9, Func. Count: 54, Neg. LLF: 83.47468531648086
Iteration: 10, Func. Count: 59, Neg. LLF: 83.40892870501993
Iteration: 11, Func. Count: 64, Neg. LLF: 83.39873017975478
Iteration: 12, Func. Count: 69, Neg. LLF: 83.39872029312144
Iteration: 13, Func. Count: 74, Neg. LLF: 83.398756255201
Optimization terminated successfully (Exit mode 0)
Current function value: 83.39872024433627
Iterations: 14
Function evaluations: 76
Gradient evaluations: 13
Iteration: 1, Func. Count: 7, Neg. LLF: 576894.3981355882
Iteration: 2, Func. Count: 14, Neg. LLF: 13315911.45340064
Iteration: 3, Func. Count: 21, Neg. LLF: 918.0502493648639
Iteration: 4, Func. Count: 28, Neg. LLF: 11159328.347768126
Iteration: 5, Func. Count: 35, Neg. LLF: 88.65393331072296
Iteration: 6, Func. Count: 42, Neg. LLF: 154.38698939052514
Iteration: 7, Func. Count: 49, Neg. LLF: 83.93124027361578
Iteration: 8, Func. Count: 56, Neg. LLF: 81.72977528562761
Iteration: 9, Func. Count: 62, Neg. LLF: 81.73190315784022
Iteration: 10, Func. Count: 69, Neg. LLF: 81.7187380943883
Iteration: 11, Func. Count: 75, Neg. LLF: 81.7182663667647
Iteration: 12, Func. Count: 80, Neg. LLF: 81.71826636682442
Optimization terminated successfully (Exit mode 0)
Current function value: 81.7182663667647
Iterations: 12
Function evaluations: 80
Gradient evaluations: 12
Iteration: 1, Func. Count: 8, Neg. LLF: 217486.42608254685
Iteration: 2, Func. Count: 16, Neg. LLF: 10328896.334821343
Iteration: 3, Func. Count: 24, Neg. LLF: 267.19840992777023
Iteration: 4, Func. Count: 32, Neg. LLF: 10887262.531192092
Iteration: 5, Func. Count: 40, Neg. LLF: 362.49224141886685
Iteration: 6, Func. Count: 48, Neg. LLF: 432.8040281024144
Iteration: 7, Func. Count: 56, Neg. LLF: 242.76213202774207
Iteration: 8, Func. Count: 64, Neg. LLF: 213.55072019979355
Iteration: 9, Func. Count: 72, Neg. LLF: 82.1634820643009
Iteration: 10, Func. Count: 79, Neg. LLF: 82.60956712210381
Iteration: 11, Func. Count: 87, Neg. LLF: 81.8368282084544
Iteration: 12, Func. Count: 95, Neg. LLF: 81.72136947035435
Iteration: 13, Func. Count: 102, Neg. LLF: 81.7183476730089
Iteration: 14, Func. Count: 109, Neg. LLF: 81.71826625589503
Iteration: 15, Func. Count: 115, Neg. LLF: 81.71826629913777
Optimization terminated successfully (Exit mode 0)
Current function value: 81.71826625589503
Iterations: 15
Function evaluations: 115
Gradient evaluations: 15
Iteration: 1, Func. Count: 9, Neg. LLF: 243883.17695504846
Iteration: 2, Func. Count: 18, Neg. LLF: 10192953.029367235
Iteration: 3, Func. Count: 27, Neg. LLF: 283.39163435378873
Iteration: 4, Func. Count: 36, Neg. LLF: 11198519.17205691
Iteration: 5, Func. Count: 45, Neg. LLF: 446.348190304403
Iteration: 6, Func. Count: 54, Neg. LLF: 466.9613004052884
Iteration: 7, Func. Count: 63, Neg. LLF: 269.6743538186455
Iteration: 8, Func. Count: 72, Neg. LLF: 235.5244286445229
Iteration: 9, Func. Count: 81, Neg. LLF: 82.21931685468243
Iteration: 10, Func. Count: 89, Neg. LLF: 82.67047747175285
Iteration: 11, Func. Count: 98, Neg. LLF: 81.91529234499815
Iteration: 12, Func. Count: 107, Neg. LLF: 81.72136352801851
Iteration: 13, Func. Count: 115, Neg. LLF: 81.7183672041949
Iteration: 14, Func. Count: 123, Neg. LLF: 81.71826668384968
Iteration: 15, Func. Count: 131, Neg. LLF: 81.71826616903398
Optimization terminated successfully (Exit mode 0)
Current function value: 81.71826616903398
Iterations: 15
Function evaluations: 131
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 211212.74741508553
Iteration: 2, Func. Count: 20, Neg. LLF: 10173697.73365351
Iteration: 3, Func. Count: 30, Neg. LLF: 278.2271293816866
Iteration: 4, Func. Count: 40, Neg. LLF: 11553613.75009702
Iteration: 5, Func. Count: 50, Neg. LLF: 480.95993396703847
Iteration: 6, Func. Count: 60, Neg. LLF: 392.65890915171053
Iteration: 7, Func. Count: 70, Neg. LLF: 279.5551162392714
Iteration: 8, Func. Count: 80, Neg. LLF: 228.6289636592174
Iteration: 9, Func. Count: 90, Neg. LLF: 82.41473065304483
Iteration: 10, Func. Count: 99, Neg. LLF: 82.69851709088266
Iteration: 11, Func. Count: 109, Neg. LLF: 81.89322300625935
Iteration: 12, Func. Count: 119, Neg. LLF: 81.72222604732558
Iteration: 13, Func. Count: 128, Neg. LLF: 81.71873673030944
Iteration: 14, Func. Count: 137, Neg. LLF: 81.71827228601232
Iteration: 15, Func. Count: 146, Neg. LLF: 81.71826619896491
Iteration: 16, Func. Count: 154, Neg. LLF: 81.71826631452888
Optimization terminated successfully (Exit mode 0)
Current function value: 81.71826619896491
Iterations: 16
Function evaluations: 154
Gradient evaluations: 16
Iteration: 1, Func. Count: 7, Neg. LLF: 137.83975610027457
Iteration: 2, Func. Count: 15, Neg. LLF: 111.84985118825779
Iteration: 3, Func. Count: 22, Neg. LLF: 9147728.318060191
Iteration: 4, Func. Count: 29, Neg. LLF: 9028380.148263628
Iteration: 5, Func. Count: 36, Neg. LLF: 9421890.65097674
Iteration: 6, Func. Count: 43, Neg. LLF: 9395404.168166911
Iteration: 7, Func. Count: 50, Neg. LLF: 91.27708097540997
Iteration: 8, Func. Count: 57, Neg. LLF: 84.08339612247904
Iteration: 9, Func. Count: 63, Neg. LLF: 83.66691157936553
Iteration: 10, Func. Count: 70, Neg. LLF: 83.54497447756829
Iteration: 11, Func. Count: 77, Neg. LLF: 83.85896612756903
Iteration: 12, Func. Count: 84, Neg. LLF: 83.0456128700021
Iteration: 13, Func. Count: 90, Neg. LLF: 83.04515730764766
Iteration: 14, Func. Count: 96, Neg. LLF: 83.04491509838276
Iteration: 15, Func. Count: 102, Neg. LLF: 83.0445296883812
Iteration: 16, Func. Count: 108, Neg. LLF: 83.0444696120526
Iteration: 17, Func. Count: 114, Neg. LLF: 83.04446204982486
Iteration: 18, Func. Count: 119, Neg. LLF: 83.0444620497264
Optimization terminated successfully (Exit mode 0)
Current function value: 83.04446204982486
Iterations: 18
Function evaluations: 119
Gradient evaluations: 18
Iteration: 1, Func. Count: 8, Neg. LLF: 578238.3190344361
Iteration: 2, Func. Count: 16, Neg. LLF: 13309423.891990105
Iteration: 3, Func. Count: 24, Neg. LLF: 935.6182904816152
Iteration: 4, Func. Count: 32, Neg. LLF: 11166666.232875254
Iteration: 5, Func. Count: 40, Neg. LLF: 88.67936033372261
Iteration: 6, Func. Count: 48, Neg. LLF: 154.7897636945663
Iteration: 7, Func. Count: 56, Neg. LLF: 83.91409039142845
Iteration: 8, Func. Count: 64, Neg. LLF: 82.75013708120781
Iteration: 9, Func. Count: 72, Neg. LLF: 90.08366088055942
Iteration: 10, Func. Count: 80, Neg. LLF: 87.28365991561164
Iteration: 11, Func. Count: 88, Neg. LLF: 82.06872885510512
Iteration: 12, Func. Count: 95, Neg. LLF: 81.77528043850863
Iteration: 13, Func. Count: 102, Neg. LLF: 81.69209781424617
Iteration: 14, Func. Count: 109, Neg. LLF: 81.80950647685616
Iteration: 15, Func. Count: 117, Neg. LLF: 81.64162154691574
Iteration: 16, Func. Count: 125, Neg. LLF: 81.61082108066513
Iteration: 17, Func. Count: 132, Neg. LLF: 81.61057629693204
Iteration: 18, Func. Count: 139, Neg. LLF: 81.61057117217518
Iteration: 19, Func. Count: 145, Neg. LLF: 81.61057117215957
Optimization terminated successfully (Exit mode 0)
Current function value: 81.61057117217518
Iterations: 19
Function evaluations: 145
Gradient evaluations: 19
Iteration: 1, Func. Count: 9, Neg. LLF: 216648.12746171508
Iteration: 2, Func. Count: 18, Neg. LLF: 10327863.624512406
Iteration: 3, Func. Count: 27, Neg. LLF: 265.8292792556665
Iteration: 4, Func. Count: 36, Neg. LLF: 10875741.965834208
Iteration: 5, Func. Count: 45, Neg. LLF: 364.5389601708079
Iteration: 6, Func. Count: 54, Neg. LLF: 443.09917403892206
Iteration: 7, Func. Count: 63, Neg. LLF: 242.96253484896457
Iteration: 8, Func. Count: 72, Neg. LLF: 214.3003254138489
Iteration: 9, Func. Count: 81, Neg. LLF: 82.16760010839599
Iteration: 10, Func. Count: 89, Neg. LLF: 83.99056556001906
Iteration: 11, Func. Count: 100, Neg. LLF: 89.592350361687
Iteration: 12, Func. Count: 111, Neg. LLF: 81.66759584879009
Iteration: 13, Func. Count: 119, Neg. LLF: 81.61514502680525
Iteration: 14, Func. Count: 127, Neg. LLF: 81.6107621270771
Iteration: 15, Func. Count: 135, Neg. LLF: 81.61058174043016
Iteration: 16, Func. Count: 143, Neg. LLF: 81.61057314938259
Iteration: 17, Func. Count: 151, Neg. LLF: 81.61057106106355
Iteration: 18, Func. Count: 158, Neg. LLF: 81.61057112743104
Optimization terminated successfully (Exit mode 0)
Current function value: 81.61057106106355
Iterations: 18
Function evaluations: 158
Gradient evaluations: 18
Iteration: 1, Func. Count: 10, Neg. LLF: 239172.13992663883
Iteration: 2, Func. Count: 20, Neg. LLF: 10193632.44612486
Iteration: 3, Func. Count: 30, Neg. LLF: 277.7191183525662
Iteration: 4, Func. Count: 40, Neg. LLF: 11121457.018513247
Iteration: 5, Func. Count: 50, Neg. LLF: 442.3426741201062
Iteration: 6, Func. Count: 60, Neg. LLF: 477.1688458342643
Iteration: 7, Func. Count: 70, Neg. LLF: 267.6250032688205
Iteration: 8, Func. Count: 80, Neg. LLF: 235.93453060018413
Iteration: 9, Func. Count: 90, Neg. LLF: 82.26107782094176
Iteration: 10, Func. Count: 99, Neg. LLF: 117.3859847406187
Iteration: 11, Func. Count: 110, Neg. LLF: 88.9324892719876
Iteration: 12, Func. Count: 122, Neg. LLF: 81.76132167731656
Iteration: 13, Func. Count: 132, Neg. LLF: 81.61271054573645
Iteration: 14, Func. Count: 141, Neg. LLF: 81.61126136065302
Iteration: 15, Func. Count: 150, Neg. LLF: 81.610590181988
Iteration: 16, Func. Count: 159, Neg. LLF: 81.61057218913155
Iteration: 17, Func. Count: 168, Neg. LLF: 81.6105711626092
Iteration: 18, Func. Count: 176, Neg. LLF: 81.61057118936813
Optimization terminated successfully (Exit mode 0)
Current function value: 81.6105711626092
Iterations: 18
Function evaluations: 176
Gradient evaluations: 18
Iteration: 1, Func. Count: 11, Neg. LLF: 204689.93220073867
Iteration: 2, Func. Count: 22, Neg. LLF: 10174818.68125533
Iteration: 3, Func. Count: 33, Neg. LLF: 269.4994037415721
Iteration: 4, Func. Count: 44, Neg. LLF: 11355127.401966104
Iteration: 5, Func. Count: 55, Neg. LLF: 470.11693739825085
Iteration: 6, Func. Count: 66, Neg. LLF: 394.44690807510506
Iteration: 7, Func. Count: 77, Neg. LLF: 275.65606142084215
Iteration: 8, Func. Count: 88, Neg. LLF: 228.51771201950842
Iteration: 9, Func. Count: 99, Neg. LLF: 82.4873294437459
Iteration: 10, Func. Count: 109, Neg. LLF: 82.5782619253682
Iteration: 11, Func. Count: 120, Neg. LLF: 81.97797911326151
Iteration: 12, Func. Count: 131, Neg. LLF: 81.70138919900198
Iteration: 13, Func. Count: 142, Neg. LLF: 82.0841606990794
Iteration: 14, Func. Count: 153, Neg. LLF: 81.61672503640474
Iteration: 15, Func. Count: 163, Neg. LLF: 81.62884470327866
Iteration: 16, Func. Count: 174, Neg. LLF: 81.61065055012034
Iteration: 17, Func. Count: 184, Neg. LLF: 81.61057263823443
Iteration: 18, Func. Count: 194, Neg. LLF: 81.61057103562034
Iteration: 19, Func. Count: 203, Neg. LLF: 81.61057114857607
Optimization terminated successfully (Exit mode 0)
Current function value: 81.61057103562034
Iterations: 19
Function evaluations: 203
Gradient evaluations: 19
Iteration: 1, Func. Count: 8, Neg. LLF: 137.96646274613366
Iteration: 2, Func. Count: 17, Neg. LLF: 124.85756889403379
Iteration: 3, Func. Count: 25, Neg. LLF: 9226655.521852054
Iteration: 4, Func. Count: 33, Neg. LLF: 8903296.048550384
Iteration: 5, Func. Count: 41, Neg. LLF: 9382568.987538917
Iteration: 6, Func. Count: 49, Neg. LLF: 182.31695617022228
Iteration: 7, Func. Count: 57, Neg. LLF: 87.3806910550411
Iteration: 8, Func. Count: 65, Neg. LLF: 83.53940258984466
Iteration: 9, Func. Count: 72, Neg. LLF: 84.90412019373598
Iteration: 10, Func. Count: 81, Neg. LLF: 84.34219544799284
Iteration: 11, Func. Count: 89, Neg. LLF: 83.04549070302448
Iteration: 12, Func. Count: 96, Neg. LLF: 83.04503606158133
Iteration: 13, Func. Count: 103, Neg. LLF: 83.04465774643339
Iteration: 14, Func. Count: 110, Neg. LLF: 83.04447768753668
Iteration: 15, Func. Count: 117, Neg. LLF: 83.04446236163808
Iteration: 16, Func. Count: 123, Neg. LLF: 83.04446281288945
Optimization terminated successfully (Exit mode 0)
Current function value: 83.04446236163808
Iterations: 16
Function evaluations: 123
Gradient evaluations: 16
Iteration: 1, Func. Count: 9, Neg. LLF: 577036.8795120242
Iteration: 2, Func. Count: 18, Neg. LLF: 13303999.747239133
Iteration: 3, Func. Count: 27, Neg. LLF: 952.471084097667
Iteration: 4, Func. Count: 36, Neg. LLF: 11167918.32309586
Iteration: 5, Func. Count: 45, Neg. LLF: 88.74294711567369
Iteration: 6, Func. Count: 54, Neg. LLF: 154.5937968682445
Iteration: 7, Func. Count: 63, Neg. LLF: 83.88862500124564
Iteration: 8, Func. Count: 72, Neg. LLF: 83.34505793452426
Iteration: 9, Func. Count: 82, Neg. LLF: 88.12146078422187
Iteration: 10, Func. Count: 91, Neg. LLF: 82.1351059875151
Iteration: 11, Func. Count: 99, Neg. LLF: 81.68451250540177
Iteration: 12, Func. Count: 107, Neg. LLF: 81.66196151499985
Iteration: 13, Func. Count: 115, Neg. LLF: 81.61994472722816
Iteration: 14, Func. Count: 123, Neg. LLF: 81.61142310653472
Iteration: 15, Func. Count: 131, Neg. LLF: 81.61058648099471
Iteration: 16, Func. Count: 139, Neg. LLF: 81.61057669010137
Iteration: 17, Func. Count: 147, Neg. LLF: 81.61057107321587
Iteration: 18, Func. Count: 154, Neg. LLF: 81.61057107318851
Optimization terminated successfully (Exit mode 0)
Current function value: 81.61057107321587
Iterations: 18
Function evaluations: 154
Gradient evaluations: 18
Iteration: 1, Func. Count: 10, Neg. LLF: 217010.11961420104
Iteration: 2, Func. Count: 20, Neg. LLF: 10328217.31494959
Iteration: 3, Func. Count: 30, Neg. LLF: 266.6556289841507
Iteration: 4, Func. Count: 40, Neg. LLF: 10878448.375115754
Iteration: 5, Func. Count: 50, Neg. LLF: 362.3494996426141
Iteration: 6, Func. Count: 60, Neg. LLF: 435.9973406590067
Iteration: 7, Func. Count: 70, Neg. LLF: 242.054428241768
Iteration: 8, Func. Count: 80, Neg. LLF: 213.3875996126626
Iteration: 9, Func. Count: 90, Neg. LLF: 82.26173372551425
Iteration: 10, Func. Count: 99, Neg. LLF: 82.48483277912823
Iteration: 11, Func. Count: 109, Neg. LLF: 82.33715178486477
Iteration: 12, Func. Count: 119, Neg. LLF: 82.3522912468496
Iteration: 13, Func. Count: 129, Neg. LLF: 81.6491452930963
Iteration: 14, Func. Count: 138, Neg. LLF: 81.62487477805671
Iteration: 15, Func. Count: 147, Neg. LLF: 81.61158595237691
Iteration: 16, Func. Count: 156, Neg. LLF: 81.61081099081173
Iteration: 17, Func. Count: 165, Neg. LLF: 81.61057235293536
Iteration: 18, Func. Count: 174, Neg. LLF: 81.61057108994095
Iteration: 19, Func. Count: 182, Neg. LLF: 81.61057115626622
Optimization terminated successfully (Exit mode 0)
Current function value: 81.61057108994095
Iterations: 19
Function evaluations: 182
Gradient evaluations: 19
Iteration: 1, Func. Count: 11, Neg. LLF: 239768.26026369174
Iteration: 2, Func. Count: 22, Neg. LLF: 10193763.294258364
Iteration: 3, Func. Count: 33, Neg. LLF: 279.69974957726293
Iteration: 4, Func. Count: 44, Neg. LLF: 11132634.871932803
Iteration: 5, Func. Count: 55, Neg. LLF: 438.85948412386216
Iteration: 6, Func. Count: 66, Neg. LLF: 470.41553895148473
Iteration: 7, Func. Count: 77, Neg. LLF: 266.7840467289395
Iteration: 8, Func. Count: 88, Neg. LLF: 234.75550352862288
Iteration: 9, Func. Count: 99, Neg. LLF: 82.32781035667082
Iteration: 10, Func. Count: 109, Neg. LLF: 118.2593263422052
Iteration: 11, Func. Count: 121, Neg. LLF: 89.87738517723605
Iteration: 12, Func. Count: 134, Neg. LLF: 81.74619161730179
Iteration: 13, Func. Count: 144, Neg. LLF: 81.61281529999836
Iteration: 14, Func. Count: 154, Neg. LLF: 81.61141743614637
Iteration: 15, Func. Count: 164, Neg. LLF: 81.61058112109441
Iteration: 16, Func. Count: 174, Neg. LLF: 81.61057131924282
Iteration: 17, Func. Count: 183, Neg. LLF: 81.61057134589718
Optimization terminated successfully (Exit mode 0)
Current function value: 81.61057131924282
Iterations: 17
Function evaluations: 183
Gradient evaluations: 17
Iteration: 1, Func. Count: 12, Neg. LLF: 203482.08610914077
Iteration: 2, Func. Count: 24, Neg. LLF: 10175304.359617047
Iteration: 3, Func. Count: 36, Neg. LLF: 270.25373536939924
Iteration: 4, Func. Count: 48, Neg. LLF: 11375177.799421852
Iteration: 5, Func. Count: 60, Neg. LLF: 470.44914963870434
Iteration: 6, Func. Count: 72, Neg. LLF: 390.47410151715644
Iteration: 7, Func. Count: 84, Neg. LLF: 275.18349827025884
Iteration: 8, Func. Count: 96, Neg. LLF: 227.29039065101182
Iteration: 9, Func. Count: 108, Neg. LLF: 82.56166776452402
Iteration: 10, Func. Count: 119, Neg. LLF: 82.52385500014454
Iteration: 11, Func. Count: 131, Neg. LLF: 81.86036255050345
Iteration: 12, Func. Count: 143, Neg. LLF: 202.22348711846087
Iteration: 13, Func. Count: 156, Neg. LLF: 81.61689185711077
Iteration: 14, Func. Count: 167, Neg. LLF: 81.61143317916125
Iteration: 15, Func. Count: 178, Neg. LLF: 81.61069836332793
Iteration: 16, Func. Count: 189, Neg. LLF: 81.61057185606582
Iteration: 17, Func. Count: 200, Neg. LLF: 81.61057104829581
Optimization terminated successfully (Exit mode 0)
Current function value: 81.61057104829581
Iterations: 17
Function evaluations: 200
Gradient evaluations: 17
Iteration: 1, Func. Count: 9, Neg. LLF: 139.3721296031637
Iteration: 2, Func. Count: 19, Neg. LLF: 149.6588947732857
Iteration: 3, Func. Count: 28, Neg. LLF: 9310632.169381864
Iteration: 4, Func. Count: 37, Neg. LLF: 8838864.560745163
Iteration: 5, Func. Count: 46, Neg. LLF: 9371309.475324094
Iteration: 6, Func. Count: 55, Neg. LLF: 94.06571013844012
Iteration: 7, Func. Count: 64, Neg. LLF: 83.4984379346718
Iteration: 8, Func. Count: 72, Neg. LLF: 83.91149529536193
Iteration: 9, Func. Count: 82, Neg. LLF: 83.1209520879347
Iteration: 10, Func. Count: 90, Neg. LLF: 83.11681256726219
Iteration: 11, Func. Count: 99, Neg. LLF: 83.07252797488718
Iteration: 12, Func. Count: 107, Neg. LLF: 83.05990315030341
Iteration: 13, Func. Count: 115, Neg. LLF: 83.05822537103992
Iteration: 14, Func. Count: 124, Neg. LLF: 83.0445050074961
Iteration: 15, Func. Count: 132, Neg. LLF: 83.04446402226428
Iteration: 16, Func. Count: 140, Neg. LLF: 83.04446200239641
Iteration: 17, Func. Count: 147, Neg. LLF: 83.04446257445747
Optimization terminated successfully (Exit mode 0)
Current function value: 83.04446200239641
Iterations: 17
Function evaluations: 147
Gradient evaluations: 17
Iteration: 1, Func. Count: 10, Neg. LLF: 578963.1170149806
Iteration: 2, Func. Count: 20, Neg. LLF: 13272638.583076812
Iteration: 3, Func. Count: 30, Neg. LLF: 965.1366754920138
Iteration: 4, Func. Count: 40, Neg. LLF: 11145821.657049065
Iteration: 5, Func. Count: 50, Neg. LLF: 88.86809748330042
Iteration: 6, Func. Count: 60, Neg. LLF: 156.18775045569993
Iteration: 7, Func. Count: 70, Neg. LLF: 83.8647615998751
Iteration: 8, Func. Count: 80, Neg. LLF: 83.47760570198601
Iteration: 9, Func. Count: 91, Neg. LLF: 86.84460729832405
Iteration: 10, Func. Count: 101, Neg. LLF: 81.85549381822506
Iteration: 11, Func. Count: 110, Neg. LLF: 81.64073598987191
Iteration: 12, Func. Count: 119, Neg. LLF: 81.62205246403467
Iteration: 13, Func. Count: 128, Neg. LLF: 81.61176929866718
Iteration: 14, Func. Count: 137, Neg. LLF: 81.61107641806883
Iteration: 15, Func. Count: 146, Neg. LLF: 81.61057276668646
Iteration: 16, Func. Count: 155, Neg. LLF: 81.61057105109444
Iteration: 17, Func. Count: 163, Neg. LLF: 81.61057105107653
Optimization terminated successfully (Exit mode 0)
Current function value: 81.61057105109444
Iterations: 17
Function evaluations: 163
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 222231.3811837396
Iteration: 2, Func. Count: 22, Neg. LLF: 10320307.85732782
Iteration: 3, Func. Count: 33, Neg. LLF: 269.81270837119115
Iteration: 4, Func. Count: 44, Neg. LLF: 10905240.827898413
Iteration: 5, Func. Count: 55, Neg. LLF: 363.77157076138514
Iteration: 6, Func. Count: 66, Neg. LLF: 435.54818652307756
Iteration: 7, Func. Count: 77, Neg. LLF: 243.0676887236264
Iteration: 8, Func. Count: 88, Neg. LLF: 214.51000787607074
Iteration: 9, Func. Count: 99, Neg. LLF: 82.29645955962741
Iteration: 10, Func. Count: 109, Neg. LLF: 82.41262728379222
Iteration: 11, Func. Count: 120, Neg. LLF: 81.92963454632084
Iteration: 12, Func. Count: 131, Neg. LLF: 90.44418287322931
Iteration: 13, Func. Count: 143, Neg. LLF: 81.6299496938065
Iteration: 14, Func. Count: 153, Neg. LLF: 81.61406351154595
Iteration: 15, Func. Count: 163, Neg. LLF: 81.61070341260222
Iteration: 16, Func. Count: 173, Neg. LLF: 81.6105725597252
Iteration: 17, Func. Count: 183, Neg. LLF: 81.61057106001134
Iteration: 18, Func. Count: 192, Neg. LLF: 81.610571126378
Optimization terminated successfully (Exit mode 0)
Current function value: 81.61057106001134
Iterations: 18
Function evaluations: 192
Gradient evaluations: 18
Iteration: 1, Func. Count: 12, Neg. LLF: 241597.8993186199
Iteration: 2, Func. Count: 24, Neg. LLF: 10192089.619638333
Iteration: 3, Func. Count: 36, Neg. LLF: 280.1037106256241
Iteration: 4, Func. Count: 48, Neg. LLF: 11160536.768545005
Iteration: 5, Func. Count: 60, Neg. LLF: 442.7979269754208
Iteration: 6, Func. Count: 72, Neg. LLF: 465.4722996696378
Iteration: 7, Func. Count: 84, Neg. LLF: 267.3692327271335
Iteration: 8, Func. Count: 96, Neg. LLF: 234.92527166494915
Iteration: 9, Func. Count: 108, Neg. LLF: 82.34783389345496
Iteration: 10, Func. Count: 119, Neg. LLF: 105.75137033797273
Iteration: 11, Func. Count: 132, Neg. LLF: 93.17498356571991
Iteration: 12, Func. Count: 146, Neg. LLF: 81.7832707210889
Iteration: 13, Func. Count: 157, Neg. LLF: 81.61574415762546
Iteration: 14, Func. Count: 168, Neg. LLF: 81.61159119590207
Iteration: 15, Func. Count: 179, Neg. LLF: 81.61080410487324
Iteration: 16, Func. Count: 190, Neg. LLF: 81.6105772443525
Iteration: 17, Func. Count: 201, Neg. LLF: 81.61057161866569
Iteration: 18, Func. Count: 211, Neg. LLF: 81.6105716452745
Optimization terminated successfully (Exit mode 0)
Current function value: 81.61057161866569
Iterations: 18
Function evaluations: 211
Gradient evaluations: 18
Iteration: 1, Func. Count: 13, Neg. LLF: 206923.4831732745
Iteration: 2, Func. Count: 26, Neg. LLF: 10173423.400649993
Iteration: 3, Func. Count: 39, Neg. LLF: 272.01154940305116
Iteration: 4, Func. Count: 52, Neg. LLF: 11421234.75905682
Iteration: 5, Func. Count: 65, Neg. LLF: 471.38529811895023
Iteration: 6, Func. Count: 78, Neg. LLF: 388.76899736574984
Iteration: 7, Func. Count: 91, Neg. LLF: 275.3651407666712
Iteration: 8, Func. Count: 104, Neg. LLF: 227.09993343638112
Iteration: 9, Func. Count: 117, Neg. LLF: 82.58906590544338
Iteration: 10, Func. Count: 129, Neg. LLF: 82.71763476007193
Iteration: 11, Func. Count: 142, Neg. LLF: 2379109.432240928
Iteration: 12, Func. Count: 158, Neg. LLF: 81.76568136590751
Iteration: 13, Func. Count: 170, Neg. LLF: 81.61411948727007
Iteration: 14, Func. Count: 182, Neg. LLF: 81.61097992090934
Iteration: 15, Func. Count: 194, Neg. LLF: 81.61057781040331
Iteration: 16, Func. Count: 206, Neg. LLF: 81.61057135488794
Iteration: 17, Func. Count: 217, Neg. LLF: 81.61057146779736
Optimization terminated successfully (Exit mode 0)
Current function value: 81.61057135488794
Iterations: 17
Function evaluations: 217
Gradient evaluations: 17
Iteration: 1, Func. Count: 6, Neg. LLF: 152.09809819134722
Iteration: 2, Func. Count: 13, Neg. LLF: 114.82073952319642
Iteration: 3, Func. Count: 19, Neg. LLF: 3169.9750228681623
Iteration: 4, Func. Count: 25, Neg. LLF: 5241.60456592394
Iteration: 5, Func. Count: 31, Neg. LLF: 3232.8268731042895
Iteration: 6, Func. Count: 37, Neg. LLF: 622.9273892674241
Iteration: 7, Func. Count: 43, Neg. LLF: 250.12532882964175
Iteration: 8, Func. Count: 49, Neg. LLF: 280.3214834682538
Iteration: 9, Func. Count: 55, Neg. LLF: 90.96869027900519
Iteration: 10, Func. Count: 61, Neg. LLF: 87.93081126455398
Iteration: 11, Func. Count: 66, Neg. LLF: 87.73876331663149
Iteration: 12, Func. Count: 71, Neg. LLF: 87.74326747679932
Iteration: 13, Func. Count: 77, Neg. LLF: 87.65010356478047
Iteration: 14, Func. Count: 82, Neg. LLF: 87.6351538455112
Iteration: 15, Func. Count: 87, Neg. LLF: 87.63417798997142
Iteration: 16, Func. Count: 92, Neg. LLF: 87.63406239837809
Iteration: 17, Func. Count: 97, Neg. LLF: 87.63406139479477
Iteration: 18, Func. Count: 101, Neg. LLF: 87.63406137909078
Optimization terminated successfully (Exit mode 0)
Current function value: 87.63406139479477
Iterations: 18
Function evaluations: 101
Gradient evaluations: 18
Iteration: 1, Func. Count: 7, Neg. LLF: 143.28579456697457
Iteration: 2, Func. Count: 14, Neg. LLF: 342.293449591411
Iteration: 3, Func. Count: 21, Neg. LLF: 6208.080005222994
Iteration: 4, Func. Count: 28, Neg. LLF: 93.58682421768431
Iteration: 5, Func. Count: 35, Neg. LLF: 13454.706381384794
Iteration: 6, Func. Count: 42, Neg. LLF: 87.84701041627739
Iteration: 7, Func. Count: 48, Neg. LLF: 87.64560055537575
Iteration: 8, Func. Count: 54, Neg. LLF: 87.63631846684741
Iteration: 9, Func. Count: 60, Neg. LLF: 87.63428478411448
Iteration: 10, Func. Count: 66, Neg. LLF: 87.63407189007596
Iteration: 11, Func. Count: 72, Neg. LLF: 87.63406165238514
Iteration: 12, Func. Count: 77, Neg. LLF: 87.6340616811594
Optimization terminated successfully (Exit mode 0)
Current function value: 87.63406165238514
Iterations: 12
Function evaluations: 77
Gradient evaluations: 12
Iteration: 1, Func. Count: 8, Neg. LLF: 142.15696129863588
Iteration: 2, Func. Count: 16, Neg. LLF: 4643.615993867247
Iteration: 3, Func. Count: 24, Neg. LLF: 161.2556879216118
Iteration: 4, Func. Count: 32, Neg. LLF: 160.67444880772973
Iteration: 5, Func. Count: 40, Neg. LLF: 88.86150268235343
Iteration: 6, Func. Count: 47, Neg. LLF: 1311.6416488764626
Iteration: 7, Func. Count: 55, Neg. LLF: 91.45651461394873
Iteration: 8, Func. Count: 63, Neg. LLF: 87.74085644164361
Iteration: 9, Func. Count: 71, Neg. LLF: 87.63988177237007
Iteration: 10, Func. Count: 78, Neg. LLF: 87.63435717114743
Iteration: 11, Func. Count: 85, Neg. LLF: 87.63406710883041
Iteration: 12, Func. Count: 92, Neg. LLF: 87.63406142600883
Iteration: 13, Func. Count: 98, Neg. LLF: 87.63406168078774
Optimization terminated successfully (Exit mode 0)
Current function value: 87.63406142600883
Iterations: 13
Function evaluations: 98
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 142.1832670549163
Iteration: 2, Func. Count: 18, Neg. LLF: 1109.2209220644006
Iteration: 3, Func. Count: 27, Neg. LLF: 196.34902977842512
Iteration: 4, Func. Count: 36, Neg. LLF: 152.8143882059999
Iteration: 5, Func. Count: 45, Neg. LLF: 1379.0480426253212
Iteration: 6, Func. Count: 54, Neg. LLF: 88.6259992344735
Iteration: 7, Func. Count: 62, Neg. LLF: 180.3123904451671
Iteration: 8, Func. Count: 71, Neg. LLF: 98.52306543902526
Iteration: 9, Func. Count: 80, Neg. LLF: 95.37482841114887
Iteration: 10, Func. Count: 89, Neg. LLF: 87.65130901987408
Iteration: 11, Func. Count: 97, Neg. LLF: 87.71052046186907
Iteration: 12, Func. Count: 106, Neg. LLF: 87.64024805024484
Iteration: 13, Func. Count: 114, Neg. LLF: 87.63985338973944
Iteration: 14, Func. Count: 122, Neg. LLF: 87.63984698771823
Iteration: 15, Func. Count: 129, Neg. LLF: 87.63984697217072
Optimization terminated successfully (Exit mode 0)
Current function value: 87.63984698771823
Iterations: 15
Function evaluations: 129
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 142.03089154806875
Iteration: 2, Func. Count: 20, Neg. LLF: 1078.8096425478748
Iteration: 3, Func. Count: 30, Neg. LLF: 300.2530912863284
Iteration: 4, Func. Count: 40, Neg. LLF: 137.35175703929397
Iteration: 5, Func. Count: 50, Neg. LLF: 807.7149248030715
Iteration: 6, Func. Count: 60, Neg. LLF: 89.2188173814634
Iteration: 7, Func. Count: 69, Neg. LLF: 164.4761798606621
Iteration: 8, Func. Count: 79, Neg. LLF: 593.4213905040406
Iteration: 9, Func. Count: 89, Neg. LLF: 438.45289851834673
Iteration: 10, Func. Count: 99, Neg. LLF: 105.646276725166
Iteration: 11, Func. Count: 109, Neg. LLF: 87.31262964048268
Iteration: 12, Func. Count: 118, Neg. LLF: 87.29472694935589
Iteration: 13, Func. Count: 127, Neg. LLF: 87.29204074585145
Iteration: 14, Func. Count: 136, Neg. LLF: 87.29109617347072
Iteration: 15, Func. Count: 145, Neg. LLF: 87.29105909857074
Iteration: 16, Func. Count: 153, Neg. LLF: 87.29105908159445
Optimization terminated successfully (Exit mode 0)
Current function value: 87.29105909857074
Iterations: 16
Function evaluations: 153
Gradient evaluations: 16
Iteration: 1, Func. Count: 7, Neg. LLF: 153.91354176042674
Iteration: 2, Func. Count: 15, Neg. LLF: 140.91306937350035
Iteration: 3, Func. Count: 22, Neg. LLF: 9831728.890234487
Iteration: 4, Func. Count: 29, Neg. LLF: 8863703.691998487
Iteration: 5, Func. Count: 36, Neg. LLF: 8850388.770675117
Iteration: 6, Func. Count: 43, Neg. LLF: 9400767.896390392
Iteration: 7, Func. Count: 50, Neg. LLF: 25402.79245883288
Iteration: 8, Func. Count: 57, Neg. LLF: 1002.4600639216951
Iteration: 9, Func. Count: 64, Neg. LLF: 127.94813956520731
Iteration: 10, Func. Count: 71, Neg. LLF: 85.2218141452583
Iteration: 11, Func. Count: 78, Neg. LLF: 84.66245703181099
Iteration: 12, Func. Count: 85, Neg. LLF: 82.48664527428453
Iteration: 13, Func. Count: 91, Neg. LLF: 82.44919268071479
Iteration: 14, Func. Count: 97, Neg. LLF: 82.44785855553123
Iteration: 15, Func. Count: 103, Neg. LLF: 82.44760381917426
Iteration: 16, Func. Count: 109, Neg. LLF: 82.44760316668177
Optimization terminated successfully (Exit mode 0)
Current function value: 82.44760316668177
Iterations: 16
Function evaluations: 109
Gradient evaluations: 16
Iteration: 1, Func. Count: 8, Neg. LLF: 136.96450461394693
Iteration: 2, Func. Count: 17, Neg. LLF: 5131.325959867332
Iteration: 3, Func. Count: 25, Neg. LLF: 10208330.86364193
Iteration: 4, Func. Count: 33, Neg. LLF: 17264.598498475614
Iteration: 5, Func. Count: 41, Neg. LLF: 9767901.18346562
Iteration: 6, Func. Count: 49, Neg. LLF: 658.1676356758777
Iteration: 7, Func. Count: 57, Neg. LLF: 355.673082569324
Iteration: 8, Func. Count: 65, Neg. LLF: 223.93195053174188
Iteration: 9, Func. Count: 73, Neg. LLF: 81.9213362468961
Iteration: 10, Func. Count: 80, Neg. LLF: 89.51290773386702
Iteration: 11, Func. Count: 89, Neg. LLF: 83.92417398724463
Iteration: 12, Func. Count: 98, Neg. LLF: 81.62372025533244
Iteration: 13, Func. Count: 105, Neg. LLF: 81.60783684389457
Iteration: 14, Func. Count: 112, Neg. LLF: 81.5989447534931
Iteration: 15, Func. Count: 119, Neg. LLF: 81.59710246691172
Iteration: 16, Func. Count: 126, Neg. LLF: 81.59685427404558
Iteration: 17, Func. Count: 133, Neg. LLF: 81.5968309141034
Iteration: 18, Func. Count: 139, Neg. LLF: 81.59683091410118
Optimization terminated successfully (Exit mode 0)
Current function value: 81.5968309141034
Iterations: 18
Function evaluations: 139
Gradient evaluations: 18
Iteration: 1, Func. Count: 9, Neg. LLF: 137.28575241792626
Iteration: 2, Func. Count: 19, Neg. LLF: 1920.7299571680826
Iteration: 3, Func. Count: 28, Neg. LLF: 10278448.571896508
Iteration: 4, Func. Count: 37, Neg. LLF: 490516.03948605544
Iteration: 5, Func. Count: 46, Neg. LLF: 10158219.179647028
Iteration: 6, Func. Count: 55, Neg. LLF: 748.1266458160518
Iteration: 7, Func. Count: 64, Neg. LLF: 403.32731858186986
Iteration: 8, Func. Count: 73, Neg. LLF: 260.718192962746
Iteration: 9, Func. Count: 82, Neg. LLF: 82.86511263591665
Iteration: 10, Func. Count: 90, Neg. LLF: 85.83859753270336
Iteration: 11, Func. Count: 101, Neg. LLF: 88.0928827383484
Iteration: 12, Func. Count: 111, Neg. LLF: 82.0137606759209
Iteration: 13, Func. Count: 120, Neg. LLF: 81.66216167531228
Iteration: 14, Func. Count: 128, Neg. LLF: 81.62236049903086
Iteration: 15, Func. Count: 136, Neg. LLF: 81.59990980851848
Iteration: 16, Func. Count: 144, Neg. LLF: 81.59759755258973
Iteration: 17, Func. Count: 152, Neg. LLF: 81.59689915756937
Iteration: 18, Func. Count: 160, Neg. LLF: 81.59683757262682
Iteration: 19, Func. Count: 168, Neg. LLF: 81.59683089313044
Iteration: 20, Func. Count: 175, Neg. LLF: 81.59683096061643
Optimization terminated successfully (Exit mode 0)
Current function value: 81.59683089313044
Iterations: 20
Function evaluations: 175
Gradient evaluations: 20
Iteration: 1, Func. Count: 10, Neg. LLF: 136.25997377725596
Iteration: 2, Func. Count: 21, Neg. LLF: 25755.144801332313
Iteration: 3, Func. Count: 31, Neg. LLF: 10313227.030300198
Iteration: 4, Func. Count: 41, Neg. LLF: 6945.952809431799
Iteration: 5, Func. Count: 51, Neg. LLF: 9854768.287808841
Iteration: 6, Func. Count: 61, Neg. LLF: 9369.453526189485
Iteration: 7, Func. Count: 71, Neg. LLF: 1057.8090298460181
Iteration: 8, Func. Count: 81, Neg. LLF: 272.1885709526168
Iteration: 9, Func. Count: 91, Neg. LLF: 85.30506968673369
Iteration: 10, Func. Count: 101, Neg. LLF: 82.09597690993043
Iteration: 11, Func. Count: 110, Neg. LLF: 83.298974272634
Iteration: 12, Func. Count: 121, Neg. LLF: 84.79500594625091
Iteration: 13, Func. Count: 131, Neg. LLF: 81.78001725079737
Iteration: 14, Func. Count: 141, Neg. LLF: 81.60836227633547
Iteration: 15, Func. Count: 150, Neg. LLF: 81.60042566356768
Iteration: 16, Func. Count: 159, Neg. LLF: 81.59778817554702
Iteration: 17, Func. Count: 168, Neg. LLF: 81.59692038030536
Iteration: 18, Func. Count: 177, Neg. LLF: 81.59683214700271
Iteration: 19, Func. Count: 186, Neg. LLF: 81.59683089065183
Iteration: 20, Func. Count: 194, Neg. LLF: 81.5968309148502
Optimization terminated successfully (Exit mode 0)
Current function value: 81.59683089065183
Iterations: 20
Function evaluations: 194
Gradient evaluations: 20
Iteration: 1, Func. Count: 11, Neg. LLF: 135.75507837041937
Iteration: 2, Func. Count: 23, Neg. LLF: 1104.5981570767947
Iteration: 3, Func. Count: 34, Neg. LLF: 10345897.280337943
Iteration: 4, Func. Count: 45, Neg. LLF: 8379.25224324579
Iteration: 5, Func. Count: 56, Neg. LLF: 9846113.919946989
Iteration: 6, Func. Count: 67, Neg. LLF: 554.6529162780939
Iteration: 7, Func. Count: 78, Neg. LLF: 668.1280273464458
Iteration: 8, Func. Count: 89, Neg. LLF: 1196.0938323093894
Iteration: 9, Func. Count: 100, Neg. LLF: 315.7058507905064
Iteration: 10, Func. Count: 111, Neg. LLF: 82.1888804776615
Iteration: 11, Func. Count: 121, Neg. LLF: 82.70252171960013
Iteration: 12, Func. Count: 133, Neg. LLF: 82.60928533687294
Iteration: 13, Func. Count: 144, Neg. LLF: 81.68897848893127
Iteration: 14, Func. Count: 154, Neg. LLF: 81.655519456648
Iteration: 15, Func. Count: 164, Neg. LLF: 81.62235352506622
Iteration: 16, Func. Count: 174, Neg. LLF: 81.60354015656866
Iteration: 17, Func. Count: 184, Neg. LLF: 81.59819373898108
Iteration: 18, Func. Count: 194, Neg. LLF: 81.59703825587329
Iteration: 19, Func. Count: 204, Neg. LLF: 81.59683205277196
Iteration: 20, Func. Count: 214, Neg. LLF: 81.59683089261958
Iteration: 21, Func. Count: 223, Neg. LLF: 81.59683100525845
Optimization terminated successfully (Exit mode 0)
Current function value: 81.59683089261958
Iterations: 21
Function evaluations: 223
Gradient evaluations: 21
Iteration: 1, Func. Count: 8, Neg. LLF: 156.63102627517813
Iteration: 2, Func. Count: 17, Neg. LLF: 215.33615773298283
Iteration: 3, Func. Count: 25, Neg. LLF: 6713505.570859338
Iteration: 4, Func. Count: 33, Neg. LLF: 6587661.016269038
Iteration: 5, Func. Count: 41, Neg. LLF: 6604002.781455646
Iteration: 6, Func. Count: 49, Neg. LLF: 6593075.468146485
Iteration: 7, Func. Count: 57, Neg. LLF: 6629139.456649097
Iteration: 8, Func. Count: 65, Neg. LLF: 6588807.837820073
Iteration: 9, Func. Count: 73, Neg. LLF: 85.11521605975136
Iteration: 10, Func. Count: 81, Neg. LLF: 82.5670693978374
Iteration: 11, Func. Count: 89, Neg. LLF: 81.84578644081934
Iteration: 12, Func. Count: 97, Neg. LLF: 80.98235808995622
Iteration: 13, Func. Count: 104, Neg. LLF: 80.96260817789806
Iteration: 14, Func. Count: 111, Neg. LLF: 80.95499510337301
Iteration: 15, Func. Count: 118, Neg. LLF: 80.95439332289085
Iteration: 16, Func. Count: 125, Neg. LLF: 80.95435623983518
Iteration: 17, Func. Count: 131, Neg. LLF: 80.95435624011367
Optimization terminated successfully (Exit mode 0)
Current function value: 80.95435623983518
Iterations: 17
Function evaluations: 131
Gradient evaluations: 17
Iteration: 1, Func. Count: 9, Neg. LLF: 138.56343460033833
Iteration: 2, Func. Count: 19, Neg. LLF: 44120649.04001583
Iteration: 3, Func. Count: 28, Neg. LLF: 10489446.905142222
Iteration: 4, Func. Count: 37, Neg. LLF: 16243.982910239882
Iteration: 5, Func. Count: 46, Neg. LLF: 6586326.600501284
Iteration: 6, Func. Count: 55, Neg. LLF: 1240.0912319862193
Iteration: 7, Func. Count: 64, Neg. LLF: 87.22245594554951
Iteration: 8, Func. Count: 73, Neg. LLF: 82.13565048367451
Iteration: 9, Func. Count: 81, Neg. LLF: 82.74298519829473
Iteration: 10, Func. Count: 91, Neg. LLF: 98.61793434351883
Iteration: 11, Func. Count: 100, Neg. LLF: 81.00791605075234
Iteration: 12, Func. Count: 108, Neg. LLF: 80.97583222151056
Iteration: 13, Func. Count: 116, Neg. LLF: 80.96017369069031
Iteration: 14, Func. Count: 124, Neg. LLF: 80.95806148678038
Iteration: 15, Func. Count: 132, Neg. LLF: 80.95696040677612
Iteration: 16, Func. Count: 140, Neg. LLF: 80.95461964955332
Iteration: 17, Func. Count: 148, Neg. LLF: 80.95437401986945
Iteration: 18, Func. Count: 156, Neg. LLF: 80.95435661721629
Iteration: 19, Func. Count: 164, Neg. LLF: 80.95435600694607
Optimization terminated successfully (Exit mode 0)
Current function value: 80.95435600694607
Iterations: 19
Function evaluations: 164
Gradient evaluations: 19
Iteration: 1, Func. Count: 10, Neg. LLF: 139.00086736597547
Iteration: 2, Func. Count: 21, Neg. LLF: 35166695.90129371
Iteration: 3, Func. Count: 31, Neg. LLF: 7790826.238508713
Iteration: 4, Func. Count: 41, Neg. LLF: 19466.71420585882
Iteration: 5, Func. Count: 51, Neg. LLF: 6588968.142382223
Iteration: 6, Func. Count: 61, Neg. LLF: 1431.083698580239
Iteration: 7, Func. Count: 71, Neg. LLF: 442.26615812276333
Iteration: 8, Func. Count: 81, Neg. LLF: 82.359936185314
Iteration: 9, Func. Count: 90, Neg. LLF: 107.48086812652708
Iteration: 10, Func. Count: 100, Neg. LLF: 105.3334811393573
Iteration: 11, Func. Count: 110, Neg. LLF: 80.99044045414263
Iteration: 12, Func. Count: 119, Neg. LLF: 81.09852829384812
Iteration: 13, Func. Count: 129, Neg. LLF: 80.95548347665209
Iteration: 14, Func. Count: 138, Neg. LLF: 80.95451704090186
Iteration: 15, Func. Count: 147, Neg. LLF: 80.95446395807596
Iteration: 16, Func. Count: 156, Neg. LLF: 80.9544409953264
Iteration: 17, Func. Count: 165, Neg. LLF: 80.95440762340627
Iteration: 18, Func. Count: 174, Neg. LLF: 80.95437443594106
Iteration: 19, Func. Count: 183, Neg. LLF: 80.95435876357851
Iteration: 20, Func. Count: 192, Neg. LLF: 80.954356103477
Iteration: 21, Func. Count: 200, Neg. LLF: 80.95435618135376
Optimization terminated successfully (Exit mode 0)
Current function value: 80.954356103477
Iterations: 21
Function evaluations: 200
Gradient evaluations: 21
Iteration: 1, Func. Count: 11, Neg. LLF: 137.8432275962413
Iteration: 2, Func. Count: 23, Neg. LLF: 33777468.34764545
Iteration: 3, Func. Count: 34, Neg. LLF: 7105900.049707994
Iteration: 4, Func. Count: 45, Neg. LLF: 110984.53231550306
Iteration: 5, Func. Count: 56, Neg. LLF: 6602795.643696127
Iteration: 6, Func. Count: 67, Neg. LLF: 983.6273970635245
Iteration: 7, Func. Count: 78, Neg. LLF: 6630032.882759018
Iteration: 8, Func. Count: 89, Neg. LLF: 82.66177941850916
Iteration: 9, Func. Count: 99, Neg. LLF: 528.3886084972436
Iteration: 10, Func. Count: 110, Neg. LLF: 103.58243873158939
Iteration: 11, Func. Count: 122, Neg. LLF: 80.99565833628624
Iteration: 12, Func. Count: 132, Neg. LLF: 80.97737996786148
Iteration: 13, Func. Count: 142, Neg. LLF: 80.96950384756731
Iteration: 14, Func. Count: 152, Neg. LLF: 80.9650347355398
Iteration: 15, Func. Count: 162, Neg. LLF: 80.95811345957125
Iteration: 16, Func. Count: 172, Neg. LLF: 80.95516644385683
Iteration: 17, Func. Count: 182, Neg. LLF: 80.95441433956601
Iteration: 18, Func. Count: 192, Neg. LLF: 80.95436113708216
Iteration: 19, Func. Count: 202, Neg. LLF: 80.95435616143116
Iteration: 20, Func. Count: 211, Neg. LLF: 80.95435620144697
Optimization terminated successfully (Exit mode 0)
Current function value: 80.95435616143116
Iterations: 20
Function evaluations: 211
Gradient evaluations: 20
Iteration: 1, Func. Count: 12, Neg. LLF: 137.332853241161
Iteration: 2, Func. Count: 25, Neg. LLF: 33428671.370192487
Iteration: 3, Func. Count: 37, Neg. LLF: 7261150.202959602
Iteration: 4, Func. Count: 49, Neg. LLF: 600276.8585165342
Iteration: 5, Func. Count: 61, Neg. LLF: 455059.95568169316
Iteration: 6, Func. Count: 73, Neg. LLF: 2044.5381156334915
Iteration: 7, Func. Count: 85, Neg. LLF: 6685313.497187342
Iteration: 8, Func. Count: 97, Neg. LLF: 85.43592364216413
Iteration: 9, Func. Count: 109, Neg. LLF: 81.18899625616346
Iteration: 10, Func. Count: 120, Neg. LLF: 82.01552758817056
Iteration: 11, Func. Count: 132, Neg. LLF: 81.7153859438707
Iteration: 12, Func. Count: 144, Neg. LLF: 81.81872686977412
Iteration: 13, Func. Count: 156, Neg. LLF: 81.79018148402022
Iteration: 14, Func. Count: 168, Neg. LLF: 81.08044735474408
Iteration: 15, Func. Count: 180, Neg. LLF: 80.95898005510331
Iteration: 16, Func. Count: 191, Neg. LLF: 80.9546950513766
Iteration: 17, Func. Count: 202, Neg. LLF: 80.95438284122385
Iteration: 18, Func. Count: 213, Neg. LLF: 80.95435914390626
Iteration: 19, Func. Count: 224, Neg. LLF: 80.95435668596946
Iteration: 20, Func. Count: 235, Neg. LLF: 80.95435597515618
Optimization terminated successfully (Exit mode 0)
Current function value: 80.95435597515618
Iterations: 20
Function evaluations: 235
Gradient evaluations: 20
Iteration: 1, Func. Count: 9, Neg. LLF: 156.1496704398424
Iteration: 2, Func. Count: 19, Neg. LLF: 217.6158524937582
Iteration: 3, Func. Count: 28, Neg. LLF: 6720300.7371434765
Iteration: 4, Func. Count: 37, Neg. LLF: 6589032.723911604
Iteration: 5, Func. Count: 46, Neg. LLF: 6601246.0599910645
Iteration: 6, Func. Count: 55, Neg. LLF: 6591522.471392995
Iteration: 7, Func. Count: 64, Neg. LLF: 6626650.815859894
Iteration: 8, Func. Count: 73, Neg. LLF: 6588058.781409371
Iteration: 9, Func. Count: 82, Neg. LLF: 85.32231433321817
Iteration: 10, Func. Count: 91, Neg. LLF: 82.56851722561188
Iteration: 11, Func. Count: 100, Neg. LLF: 81.96716946830362
Iteration: 12, Func. Count: 109, Neg. LLF: 80.97433068319377
Iteration: 13, Func. Count: 117, Neg. LLF: 80.95996134355067
Iteration: 14, Func. Count: 125, Neg. LLF: 80.95479386681296
Iteration: 15, Func. Count: 133, Neg. LLF: 80.95438034214216
Iteration: 16, Func. Count: 141, Neg. LLF: 80.95435621524965
Iteration: 17, Func. Count: 148, Neg. LLF: 80.95435661538875
Optimization terminated successfully (Exit mode 0)
Current function value: 80.95435621524965
Iterations: 17
Function evaluations: 148
Gradient evaluations: 17
Iteration: 1, Func. Count: 10, Neg. LLF: 138.58996897853677
Iteration: 2, Func. Count: 21, Neg. LLF: 44137836.807976514
Iteration: 3, Func. Count: 31, Neg. LLF: 10491468.402572175
Iteration: 4, Func. Count: 41, Neg. LLF: 13619.135523466428
Iteration: 5, Func. Count: 51, Neg. LLF: 6586090.002952364
Iteration: 6, Func. Count: 61, Neg. LLF: 1199.1038675158804
Iteration: 7, Func. Count: 71, Neg. LLF: 87.03827688361488
Iteration: 8, Func. Count: 81, Neg. LLF: 82.1249897034032
Iteration: 9, Func. Count: 90, Neg. LLF: 82.70753868417856
Iteration: 10, Func. Count: 101, Neg. LLF: 98.81471354554061
Iteration: 11, Func. Count: 111, Neg. LLF: 81.00606586511269
Iteration: 12, Func. Count: 120, Neg. LLF: 80.97437880034562
Iteration: 13, Func. Count: 129, Neg. LLF: 80.96066697122032
Iteration: 14, Func. Count: 138, Neg. LLF: 80.95849609681812
Iteration: 15, Func. Count: 147, Neg. LLF: 80.9571605860569
Iteration: 16, Func. Count: 156, Neg. LLF: 80.95470111392625
Iteration: 17, Func. Count: 165, Neg. LLF: 80.95437700068388
Iteration: 18, Func. Count: 174, Neg. LLF: 80.95435656308923
Iteration: 19, Func. Count: 182, Neg. LLF: 80.9543566053754
Optimization terminated successfully (Exit mode 0)
Current function value: 80.95435656308923
Iterations: 19
Function evaluations: 182
Gradient evaluations: 19
Iteration: 1, Func. Count: 11, Neg. LLF: 138.9332599045054
Iteration: 2, Func. Count: 23, Neg. LLF: 35182273.205970086
Iteration: 3, Func. Count: 34, Neg. LLF: 7812634.41974701
Iteration: 4, Func. Count: 45, Neg. LLF: 18194.323167511473
Iteration: 5, Func. Count: 56, Neg. LLF: 6588958.287705429
Iteration: 6, Func. Count: 67, Neg. LLF: 1421.1926064983193
Iteration: 7, Func. Count: 78, Neg. LLF: 372.4527669661367
Iteration: 8, Func. Count: 89, Neg. LLF: 82.3599665184486
Iteration: 9, Func. Count: 99, Neg. LLF: 110.05006068223976
Iteration: 10, Func. Count: 110, Neg. LLF: 103.0650183388559
Iteration: 11, Func. Count: 127, Neg. LLF: 83.73555257822724
Iteration: 12, Func. Count: 138, Neg. LLF: 80.98306334786481
Iteration: 13, Func. Count: 148, Neg. LLF: 80.95609574777701
Iteration: 14, Func. Count: 158, Neg. LLF: 80.95467441791665
Iteration: 15, Func. Count: 168, Neg. LLF: 80.95448728012074
Iteration: 16, Func. Count: 178, Neg. LLF: 80.95443934948538
Iteration: 17, Func. Count: 188, Neg. LLF: 80.95442387443293
Iteration: 18, Func. Count: 198, Neg. LLF: 80.95438159448075
Iteration: 19, Func. Count: 208, Neg. LLF: 80.95436174956488
Iteration: 20, Func. Count: 218, Neg. LLF: 80.95435630468492
Iteration: 21, Func. Count: 227, Neg. LLF: 80.95435638261347
Optimization terminated successfully (Exit mode 0)
Current function value: 80.95435630468492
Iterations: 21
Function evaluations: 227
Gradient evaluations: 21
Iteration: 1, Func. Count: 12, Neg. LLF: 137.737922465503
Iteration: 2, Func. Count: 25, Neg. LLF: 33873167.258218125
Iteration: 3, Func. Count: 37, Neg. LLF: 7112808.479909905
Iteration: 4, Func. Count: 49, Neg. LLF: 92965.73683198658
Iteration: 5, Func. Count: 61, Neg. LLF: 6600136.547382561
Iteration: 6, Func. Count: 73, Neg. LLF: 1703.1254158461059
Iteration: 7, Func. Count: 85, Neg. LLF: 6629006.359952297
Iteration: 8, Func. Count: 97, Neg. LLF: 83.13105383605617
Iteration: 9, Func. Count: 108, Neg. LLF: 340.7067202328115
Iteration: 10, Func. Count: 120, Neg. LLF: 102.83809217648638
Iteration: 11, Func. Count: 133, Neg. LLF: 80.96642867510245
Iteration: 12, Func. Count: 144, Neg. LLF: 80.9618714338007
Iteration: 13, Func. Count: 155, Neg. LLF: 80.95817215514029
Iteration: 14, Func. Count: 166, Neg. LLF: 80.95725952436025
Iteration: 15, Func. Count: 177, Neg. LLF: 80.95572619452106
Iteration: 16, Func. Count: 188, Neg. LLF: 80.95474589053242
Iteration: 17, Func. Count: 199, Neg. LLF: 80.95438403311336
Iteration: 18, Func. Count: 210, Neg. LLF: 80.95435727285569
Iteration: 19, Func. Count: 221, Neg. LLF: 80.95435605464402
Iteration: 20, Func. Count: 231, Neg. LLF: 80.95435609468042
Optimization terminated successfully (Exit mode 0)
Current function value: 80.95435605464402
Iterations: 20
Function evaluations: 231
Gradient evaluations: 20
Iteration: 1, Func. Count: 13, Neg. LLF: 137.10320399803638
Iteration: 2, Func. Count: 27, Neg. LLF: 33596033.932292365
Iteration: 3, Func. Count: 40, Neg. LLF: 7393206.688426906
Iteration: 4, Func. Count: 53, Neg. LLF: 486059.24043569627
Iteration: 5, Func. Count: 66, Neg. LLF: 709007.926017379
Iteration: 6, Func. Count: 79, Neg. LLF: 1894.2399343469122
Iteration: 7, Func. Count: 92, Neg. LLF: 6663744.2055071825
Iteration: 8, Func. Count: 105, Neg. LLF: 82.86441819056212
Iteration: 9, Func. Count: 117, Neg. LLF: 124.11593812375185
Iteration: 10, Func. Count: 130, Neg. LLF: 110.67200446253915
Iteration: 11, Func. Count: 145, Neg. LLF: 81.27620756036083
Iteration: 12, Func. Count: 157, Neg. LLF: 81.0036934745709
Iteration: 13, Func. Count: 169, Neg. LLF: 80.95958327083981
Iteration: 14, Func. Count: 181, Neg. LLF: 80.95621543736226
Iteration: 15, Func. Count: 193, Neg. LLF: 80.95503696768678
Iteration: 16, Func. Count: 205, Neg. LLF: 80.95480246138575
Iteration: 17, Func. Count: 217, Neg. LLF: 80.95469265410561
Iteration: 18, Func. Count: 229, Neg. LLF: 80.95457132063808
Iteration: 19, Func. Count: 241, Neg. LLF: 80.95445852473573
Iteration: 20, Func. Count: 253, Neg. LLF: 80.95439595948382
Iteration: 21, Func. Count: 265, Neg. LLF: 80.95437387847984
Iteration: 22, Func. Count: 277, Neg. LLF: 80.95436083058404
Iteration: 23, Func. Count: 289, Neg. LLF: 80.95435681052375
Iteration: 24, Func. Count: 301, Neg. LLF: 80.95435608164927
Optimization terminated successfully (Exit mode 0)
Current function value: 80.95435608164927
Iterations: 24
Function evaluations: 301
Gradient evaluations: 24
Iteration: 1, Func. Count: 10, Neg. LLF: 156.75958489060366
Iteration: 2, Func. Count: 21, Neg. LLF: 215.58666986305025
Iteration: 3, Func. Count: 31, Neg. LLF: 6716088.247512299
Iteration: 4, Func. Count: 41, Neg. LLF: 6587708.808134294
Iteration: 5, Func. Count: 51, Neg. LLF: 6605908.0291952435
Iteration: 6, Func. Count: 61, Neg. LLF: 6593201.42657084
Iteration: 7, Func. Count: 71, Neg. LLF: 6631469.67105151
Iteration: 8, Func. Count: 81, Neg. LLF: 6588369.395403544
Iteration: 9, Func. Count: 91, Neg. LLF: 85.49805363003804
Iteration: 10, Func. Count: 101, Neg. LLF: 82.60538515638183
Iteration: 11, Func. Count: 111, Neg. LLF: 82.07165700623646
Iteration: 12, Func. Count: 121, Neg. LLF: 80.97459574315394
Iteration: 13, Func. Count: 130, Neg. LLF: 80.959696382847
Iteration: 14, Func. Count: 139, Neg. LLF: 80.95480312070119
Iteration: 15, Func. Count: 148, Neg. LLF: 80.95438074800204
Iteration: 16, Func. Count: 157, Neg. LLF: 80.9543562269507
Iteration: 17, Func. Count: 165, Neg. LLF: 80.95435690331286
Optimization terminated successfully (Exit mode 0)
Current function value: 80.9543562269507
Iterations: 17
Function evaluations: 165
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 138.87533318383691
Iteration: 2, Func. Count: 23, Neg. LLF: 43961153.18667367
Iteration: 3, Func. Count: 34, Neg. LLF: 10483708.779216664
Iteration: 4, Func. Count: 45, Neg. LLF: 12011.97554708268
Iteration: 5, Func. Count: 56, Neg. LLF: 6585698.498892091
Iteration: 6, Func. Count: 67, Neg. LLF: 1171.3853725631664
Iteration: 7, Func. Count: 78, Neg. LLF: 87.44711872866128
Iteration: 8, Func. Count: 89, Neg. LLF: 82.10830839847955
Iteration: 9, Func. Count: 99, Neg. LLF: 82.60682942197961
Iteration: 10, Func. Count: 110, Neg. LLF: 96.39736743456525
Iteration: 11, Func. Count: 121, Neg. LLF: 80.97718165842072
Iteration: 12, Func. Count: 131, Neg. LLF: 80.96702054979347
Iteration: 13, Func. Count: 141, Neg. LLF: 80.96432047626227
Iteration: 14, Func. Count: 151, Neg. LLF: 80.96090091841815
Iteration: 15, Func. Count: 161, Neg. LLF: 80.9551850804593
Iteration: 16, Func. Count: 171, Neg. LLF: 80.95456674016332
Iteration: 17, Func. Count: 181, Neg. LLF: 80.95435702009706
Iteration: 18, Func. Count: 191, Neg. LLF: 80.9543559793245
Iteration: 19, Func. Count: 200, Neg. LLF: 80.95435602153003
Optimization terminated successfully (Exit mode 0)
Current function value: 80.9543559793245
Iterations: 19
Function evaluations: 200
Gradient evaluations: 19
Iteration: 1, Func. Count: 12, Neg. LLF: 139.0502865555641
Iteration: 2, Func. Count: 25, Neg. LLF: 35128556.084351555
Iteration: 3, Func. Count: 37, Neg. LLF: 7689422.6741173025
Iteration: 4, Func. Count: 49, Neg. LLF: 15855.855870725809
Iteration: 5, Func. Count: 61, Neg. LLF: 6588231.528031633
Iteration: 6, Func. Count: 73, Neg. LLF: 1383.7044509143022
Iteration: 7, Func. Count: 85, Neg. LLF: 419.6353854102363
Iteration: 8, Func. Count: 97, Neg. LLF: 82.32369362532422
Iteration: 9, Func. Count: 108, Neg. LLF: 111.68237404846346
Iteration: 10, Func. Count: 120, Neg. LLF: 100.60885089846485
Iteration: 11, Func. Count: 137, Neg. LLF: 83.71811276497642
Iteration: 12, Func. Count: 149, Neg. LLF: 80.98264967465003
Iteration: 13, Func. Count: 160, Neg. LLF: 80.95705817116325
Iteration: 14, Func. Count: 171, Neg. LLF: 80.95547310479502
Iteration: 15, Func. Count: 182, Neg. LLF: 80.9550970880282
Iteration: 16, Func. Count: 193, Neg. LLF: 80.95488531971152
Iteration: 17, Func. Count: 204, Neg. LLF: 80.95471657102807
Iteration: 18, Func. Count: 215, Neg. LLF: 80.9544854266571
Iteration: 19, Func. Count: 226, Neg. LLF: 80.95437634530853
Iteration: 20, Func. Count: 237, Neg. LLF: 80.9543570764604
Iteration: 21, Func. Count: 248, Neg. LLF: 80.95435601670123
Iteration: 22, Func. Count: 258, Neg. LLF: 80.95435609459042
Optimization terminated successfully (Exit mode 0)
Current function value: 80.95435601670123
Iterations: 22
Function evaluations: 258
Gradient evaluations: 22
Iteration: 1, Func. Count: 13, Neg. LLF: 137.7587270317259
Iteration: 2, Func. Count: 27, Neg. LLF: 33863265.91287436
Iteration: 3, Func. Count: 40, Neg. LLF: 7106008.123564049
Iteration: 4, Func. Count: 53, Neg. LLF: 70863.37829946817
Iteration: 5, Func. Count: 66, Neg. LLF: 6595697.446065035
Iteration: 6, Func. Count: 79, Neg. LLF: 1687.1497296871228
Iteration: 7, Func. Count: 92, Neg. LLF: 6625827.360341521
Iteration: 8, Func. Count: 105, Neg. LLF: 82.82836033800643
Iteration: 9, Func. Count: 117, Neg. LLF: 618.8823621178165
Iteration: 10, Func. Count: 130, Neg. LLF: 103.10845381670892
Iteration: 11, Func. Count: 144, Neg. LLF: 80.97994330077071
Iteration: 12, Func. Count: 156, Neg. LLF: 80.9683645749927
Iteration: 13, Func. Count: 168, Neg. LLF: 80.96314525665186
Iteration: 14, Func. Count: 180, Neg. LLF: 80.96082229509882
Iteration: 15, Func. Count: 192, Neg. LLF: 80.95607262709372
Iteration: 16, Func. Count: 204, Neg. LLF: 80.95461203712966
Iteration: 17, Func. Count: 216, Neg. LLF: 80.95436648118977
Iteration: 18, Func. Count: 228, Neg. LLF: 80.95435703842122
Iteration: 19, Func. Count: 240, Neg. LLF: 80.9543560099339
Iteration: 20, Func. Count: 251, Neg. LLF: 80.9543560499879
Optimization terminated successfully (Exit mode 0)
Current function value: 80.9543560099339
Iterations: 20
Function evaluations: 251
Gradient evaluations: 20
Iteration: 1, Func. Count: 14, Neg. LLF: 137.177651545383
Iteration: 2, Func. Count: 29, Neg. LLF: 33561290.31956194
Iteration: 3, Func. Count: 43, Neg. LLF: 7275024.91699275
Iteration: 4, Func. Count: 57, Neg. LLF: 393614.0797007158
Iteration: 5, Func. Count: 71, Neg. LLF: 6672845.09374077
Iteration: 6, Func. Count: 85, Neg. LLF: 1865.9142699020615
Iteration: 7, Func. Count: 99, Neg. LLF: 6641757.180233602
Iteration: 8, Func. Count: 113, Neg. LLF: 82.53095167322766
Iteration: 9, Func. Count: 126, Neg. LLF: 181.2996286414952
Iteration: 10, Func. Count: 140, Neg. LLF: 101.64518804859559
Iteration: 11, Func. Count: 156, Neg. LLF: 81.07723805633209
Iteration: 12, Func. Count: 169, Neg. LLF: 81.02208741187907
Iteration: 13, Func. Count: 182, Neg. LLF: 80.99931532955894
Iteration: 14, Func. Count: 195, Neg. LLF: 80.98563635835417
Iteration: 15, Func. Count: 208, Neg. LLF: 80.97232082166109
Iteration: 16, Func. Count: 221, Neg. LLF: 80.96003405630029
Iteration: 17, Func. Count: 234, Neg. LLF: 80.95515637946798
Iteration: 18, Func. Count: 247, Neg. LLF: 80.954497311174
Iteration: 19, Func. Count: 260, Neg. LLF: 80.95438946965254
Iteration: 20, Func. Count: 273, Neg. LLF: 80.95435759858624
Iteration: 21, Func. Count: 286, Neg. LLF: 80.95435613083657
Iteration: 22, Func. Count: 298, Neg. LLF: 80.95435623909056
Optimization terminated successfully (Exit mode 0)
Current function value: 80.95435613083657
Iterations: 22
Function evaluations: 298
Gradient evaluations: 22
Iteration: 1, Func. Count: 7, Neg. LLF: 142.10266919717077
Iteration: 2, Func. Count: 15, Neg. LLF: 155.32958691608388
Iteration: 3, Func. Count: 22, Neg. LLF: 2381.6291148463965
Iteration: 4, Func. Count: 29, Neg. LLF: 39171.05630198461
Iteration: 5, Func. Count: 36, Neg. LLF: 17946.47829827744
Iteration: 6, Func. Count: 43, Neg. LLF: 275.213667444726
Iteration: 7, Func. Count: 50, Neg. LLF: 5838.659752156886
Iteration: 8, Func. Count: 57, Neg. LLF: 576.3997736702489
Iteration: 9, Func. Count: 64, Neg. LLF: 1678.3874131830473
Iteration: 10, Func. Count: 71, Neg. LLF: 241.3610906692305
Iteration: 11, Func. Count: 78, Neg. LLF: 274.34386214322103
Iteration: 12, Func. Count: 85, Neg. LLF: 89.01679764171023
Iteration: 13, Func. Count: 92, Neg. LLF: 12172.15983219975
Iteration: 14, Func. Count: 99, Neg. LLF: 87.94181214628203
Iteration: 15, Func. Count: 105, Neg. LLF: 87.66742145368387
Iteration: 16, Func. Count: 111, Neg. LLF: 87.63619834147195
Iteration: 17, Func. Count: 117, Neg. LLF: 87.63407003938761
Iteration: 18, Func. Count: 123, Neg. LLF: 87.63406290451816
Iteration: 19, Func. Count: 129, Neg. LLF: 87.63406170014544
Iteration: 20, Func. Count: 134, Neg. LLF: 87.63406193959266
Optimization terminated successfully (Exit mode 0)
Current function value: 87.63406170014544
Iterations: 20
Function evaluations: 134
Gradient evaluations: 20
Iteration: 1, Func. Count: 8, Neg. LLF: 130.94411984872832
Iteration: 2, Func. Count: 17, Neg. LLF: 109.21123584781843
Iteration: 3, Func. Count: 25, Neg. LLF: 4880.302344558577
Iteration: 4, Func. Count: 33, Neg. LLF: 471.5110668231294
Iteration: 5, Func. Count: 41, Neg. LLF: 288.23915256150616
Iteration: 6, Func. Count: 49, Neg. LLF: 89.96687379569374
Iteration: 7, Func. Count: 57, Neg. LLF: 87.69549368415096
Iteration: 8, Func. Count: 64, Neg. LLF: 87.83989758100253
Iteration: 9, Func. Count: 72, Neg. LLF: 87.6343753044426
Iteration: 10, Func. Count: 79, Neg. LLF: 87.63412208458985
Iteration: 11, Func. Count: 86, Neg. LLF: 87.63406145694182
Iteration: 12, Func. Count: 92, Neg. LLF: 87.63406148570354
Optimization terminated successfully (Exit mode 0)
Current function value: 87.63406145694182
Iterations: 12
Function evaluations: 92
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 181.78904363093145
Iteration: 2, Func. Count: 22, Neg. LLF: 99.28763124427616
Iteration: 3, Func. Count: 31, Neg. LLF: 95.22592058328347
Iteration: 4, Func. Count: 39, Neg. LLF: 98.38823008779448
Iteration: 5, Func. Count: 48, Neg. LLF: 94.9986731354701
Iteration: 6, Func. Count: 57, Neg. LLF: 94.98769574284633
Iteration: 7, Func. Count: 66, Neg. LLF: 94.97469837693414
Iteration: 8, Func. Count: 74, Neg. LLF: 94.96571579501088
Iteration: 9, Func. Count: 82, Neg. LLF: 94.95928098822841
Iteration: 10, Func. Count: 90, Neg. LLF: 94.950839306336
Iteration: 11, Func. Count: 98, Neg. LLF: 94.94127782227335
Iteration: 12, Func. Count: 106, Neg. LLF: 94.90038882568948
Iteration: 13, Func. Count: 114, Neg. LLF: 104.92164036223878
Iteration: 14, Func. Count: 124, Neg. LLF: 94.90038557622377
Optimization terminated successfully (Exit mode 0)
Current function value: 94.90038615272813
Iterations: 15
Function evaluations: 124
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 177.9418323170017
Iteration: 2, Func. Count: 24, Neg. LLF: 101.03155174809613
Iteration: 3, Func. Count: 34, Neg. LLF: 95.007389225396
Iteration: 4, Func. Count: 43, Neg. LLF: 95.1338608664118
Iteration: 5, Func. Count: 53, Neg. LLF: 94.96571038799671
Iteration: 6, Func. Count: 62, Neg. LLF: 94.96388281475767
Iteration: 7, Func. Count: 71, Neg. LLF: 94.96360353616708
Iteration: 8, Func. Count: 80, Neg. LLF: 94.96356897046395
Iteration: 9, Func. Count: 89, Neg. LLF: 94.96356582867914
Iteration: 10, Func. Count: 98, Neg. LLF: 94.96356522790782
Optimization terminated successfully (Exit mode 0)
Current function value: 94.96356522790782
Iterations: 10
Function evaluations: 98
Gradient evaluations: 10
Iteration: 1, Func. Count: 11, Neg. LLF: 179.58995328438917
Iteration: 2, Func. Count: 26, Neg. LLF: 102.39150234734225
Iteration: 3, Func. Count: 37, Neg. LLF: 95.15806811656137
Iteration: 4, Func. Count: 47, Neg. LLF: 95.10609741422986
Iteration: 5, Func. Count: 58, Neg. LLF: 95.06520542256251
Iteration: 6, Func. Count: 68, Neg. LLF: 95.06302130174674
Iteration: 7, Func. Count: 78, Neg. LLF: 95.06229177581255
Iteration: 8, Func. Count: 88, Neg. LLF: 95.05974936132057
Iteration: 9, Func. Count: 98, Neg. LLF: 95.04574844915042
Iteration: 10, Func. Count: 108, Neg. LLF: 94.98328176106592
Iteration: 11, Func. Count: 118, Neg. LLF: 94.98692397283018
Iteration: 12, Func. Count: 129, Neg. LLF: 94.97377420092376
Iteration: 13, Func. Count: 139, Neg. LLF: 94.96619492272997
Iteration: 14, Func. Count: 149, Neg. LLF: 94.95846324025484
Iteration: 15, Func. Count: 159, Neg. LLF: 94.93578438242203
Iteration: 16, Func. Count: 169, Neg. LLF: 143.175643725733
Iteration: 17, Func. Count: 182, Neg. LLF: 98.07277475011146
Iteration: 18, Func. Count: 194, Neg. LLF: 94.92303566569497
Iteration: 19, Func. Count: 204, Neg. LLF: 94.90413638361645
Iteration: 20, Func. Count: 214, Neg. LLF: 94.90186692409796
Iteration: 21, Func. Count: 224, Neg. LLF: 94.90038798564969
Iteration: 22, Func. Count: 234, Neg. LLF: 94.90038612375437
Iteration: 23, Func. Count: 243, Neg. LLF: 94.90038555627929
Optimization terminated successfully (Exit mode 0)
Current function value: 94.90038612375437
Iterations: 24
Function evaluations: 243
Gradient evaluations: 23
Iteration: 1, Func. Count: 8, Neg. LLF: 144.77346668737164
Iteration: 2, Func. Count: 17, Neg. LLF: 171.92064280479445
Iteration: 3, Func. Count: 25, Neg. LLF: 9340110.505869227
Iteration: 4, Func. Count: 33, Neg. LLF: 8989945.996935198
Iteration: 5, Func. Count: 41, Neg. LLF: 8991441.114331659
Iteration: 6, Func. Count: 49, Neg. LLF: 129985.62610243243
Iteration: 7, Func. Count: 57, Neg. LLF: 8989707.520240132
Iteration: 8, Func. Count: 65, Neg. LLF: 9006759.884606738
Iteration: 9, Func. Count: 73, Neg. LLF: 357977.3868226205
Iteration: 10, Func. Count: 81, Neg. LLF: 31445.479980889457
Iteration: 11, Func. Count: 89, Neg. LLF: 88.57015203093682
Iteration: 12, Func. Count: 97, Neg. LLF: 84.41790519959147
Iteration: 13, Func. Count: 105, Neg. LLF: 82.46921830685727
Iteration: 14, Func. Count: 112, Neg. LLF: 83.72086269012006
Iteration: 15, Func. Count: 120, Neg. LLF: 82.45186991780652
Iteration: 16, Func. Count: 127, Neg. LLF: 82.44916995229053
Iteration: 17, Func. Count: 134, Neg. LLF: 82.44761488684641
Iteration: 18, Func. Count: 141, Neg. LLF: 82.44761866012604
Optimization terminated successfully (Exit mode 0)
Current function value: 82.44761482937949
Iterations: 18
Function evaluations: 142
Gradient evaluations: 18
Iteration: 1, Func. Count: 9, Neg. LLF: 131.5341836178346
Iteration: 2, Func. Count: 19, Neg. LLF: 231.2704690605076
Iteration: 3, Func. Count: 28, Neg. LLF: 10254574.189547367
Iteration: 4, Func. Count: 37, Neg. LLF: 45449.61635975264
Iteration: 5, Func. Count: 46, Neg. LLF: 569837.9234142799
Iteration: 6, Func. Count: 55, Neg. LLF: 2423.1768687981703
Iteration: 7, Func. Count: 64, Neg. LLF: 3053.054741185199
Iteration: 8, Func. Count: 73, Neg. LLF: 639.5084071733221
Iteration: 9, Func. Count: 82, Neg. LLF: 107.47500020602979
Iteration: 10, Func. Count: 91, Neg. LLF: 83.36867435808738
Iteration: 11, Func. Count: 99, Neg. LLF: 93.12803436893992
Iteration: 12, Func. Count: 110, Neg. LLF: 99.85237842737969
Iteration: 13, Func. Count: 121, Neg. LLF: 81.89103883269239
Iteration: 14, Func. Count: 129, Neg. LLF: 81.60833038859751
Iteration: 15, Func. Count: 137, Neg. LLF: 81.60117661778249
Iteration: 16, Func. Count: 145, Neg. LLF: 81.59864807410464
Iteration: 17, Func. Count: 153, Neg. LLF: 81.59747168459688
Iteration: 18, Func. Count: 161, Neg. LLF: 81.59697575486814
Iteration: 19, Func. Count: 169, Neg. LLF: 81.59689172245888
Iteration: 20, Func. Count: 177, Neg. LLF: 81.5968520384087
Iteration: 21, Func. Count: 185, Neg. LLF: 81.59683419218639
Iteration: 22, Func. Count: 193, Neg. LLF: 81.5968310614648
Iteration: 23, Func. Count: 200, Neg. LLF: 81.59683106153841
Optimization terminated successfully (Exit mode 0)
Current function value: 81.5968310614648
Iterations: 23
Function evaluations: 200
Gradient evaluations: 23
Iteration: 1, Func. Count: 10, Neg. LLF: 128.36708956165924
Iteration: 2, Func. Count: 21, Neg. LLF: 205.0865830858112
Iteration: 3, Func. Count: 31, Neg. LLF: 10280335.64539216
Iteration: 4, Func. Count: 41, Neg. LLF: 125663.60186101198
Iteration: 5, Func. Count: 51, Neg. LLF: 16800.80243416128
Iteration: 6, Func. Count: 61, Neg. LLF: 3228.2506858915763
Iteration: 7, Func. Count: 71, Neg. LLF: 2237.911756613241
Iteration: 8, Func. Count: 81, Neg. LLF: 790.7949588614061
Iteration: 9, Func. Count: 91, Neg. LLF: 99.37452086901084
Iteration: 10, Func. Count: 101, Neg. LLF: 103.44372291254277
Iteration: 11, Func. Count: 111, Neg. LLF: 82.09149299166629
Iteration: 12, Func. Count: 120, Neg. LLF: 82.75365160465549
Iteration: 13, Func. Count: 131, Neg. LLF: 82.09911026197602
Iteration: 14, Func. Count: 141, Neg. LLF: 81.64149858017399
Iteration: 15, Func. Count: 150, Neg. LLF: 81.61593952544574
Iteration: 16, Func. Count: 159, Neg. LLF: 81.60254166462745
Iteration: 17, Func. Count: 168, Neg. LLF: 81.5972054918479
Iteration: 18, Func. Count: 177, Neg. LLF: 81.59694813628825
Iteration: 19, Func. Count: 186, Neg. LLF: 81.5968588303255
Iteration: 20, Func. Count: 195, Neg. LLF: 81.59683274930242
Iteration: 21, Func. Count: 204, Neg. LLF: 81.59683093112822
Iteration: 22, Func. Count: 212, Neg. LLF: 81.59683099862387
Optimization terminated successfully (Exit mode 0)
Current function value: 81.59683093112822
Iterations: 22
Function evaluations: 212
Gradient evaluations: 22
Iteration: 1, Func. Count: 11, Neg. LLF: 143.6990227879541
Iteration: 2, Func. Count: 27, Neg. LLF: 227.56947320032876
Iteration: 3, Func. Count: 38, Neg. LLF: 135.55087801930497
Iteration: 4, Func. Count: 49, Neg. LLF: 172.61429019502006
Iteration: 5, Func. Count: 60, Neg. LLF: 388.95510203090276
Iteration: 6, Func. Count: 71, Neg. LLF: 155.63926045405222
Iteration: 7, Func. Count: 82, Neg. LLF: 85.47710126566702
Iteration: 8, Func. Count: 92, Neg. LLF: 83.88361074869636
Iteration: 9, Func. Count: 103, Neg. LLF: 96.99180272401651
Iteration: 10, Func. Count: 115, Neg. LLF: 82.35576872108913
Iteration: 11, Func. Count: 125, Neg. LLF: 82.21979361454733
Iteration: 12, Func. Count: 135, Neg. LLF: 82.12736424393051
Iteration: 13, Func. Count: 145, Neg. LLF: 81.98149940237917
Iteration: 14, Func. Count: 155, Neg. LLF: 82.68229353440299
Iteration: 15, Func. Count: 166, Neg. LLF: 82.62751777881734
Iteration: 16, Func. Count: 177, Neg. LLF: 82.60322238193172
Iteration: 17, Func. Count: 188, Neg. LLF: 82.13677694499623
Iteration: 18, Func. Count: 199, Neg. LLF: 81.94699625591872
Iteration: 19, Func. Count: 210, Neg. LLF: 82.45851245107725
Iteration: 20, Func. Count: 221, Neg. LLF: 81.82755913784798
Iteration: 21, Func. Count: 231, Neg. LLF: 81.8143051236743
Iteration: 22, Func. Count: 241, Neg. LLF: 81.80449335770903
Iteration: 23, Func. Count: 251, Neg. LLF: 81.76405600746759
Iteration: 24, Func. Count: 261, Neg. LLF: 81.80716770478743
Iteration: 25, Func. Count: 272, Neg. LLF: 81.68081708249845
Iteration: 26, Func. Count: 282, Neg. LLF: 81.79223197417619
Iteration: 27, Func. Count: 293, Neg. LLF: 81.6138395052351
Iteration: 28, Func. Count: 303, Neg. LLF: 81.60561513858336
Iteration: 29, Func. Count: 313, Neg. LLF: 81.60195209991679
Iteration: 30, Func. Count: 323, Neg. LLF: 81.60065835087542
Iteration: 31, Func. Count: 333, Neg. LLF: 81.59823562554507
Iteration: 32, Func. Count: 343, Neg. LLF: 81.5971083694615
Iteration: 33, Func. Count: 353, Neg. LLF: 81.59684551753318
Iteration: 34, Func. Count: 363, Neg. LLF: 81.596831230463
Iteration: 35, Func. Count: 372, Neg. LLF: 81.5968312545894
Optimization terminated successfully (Exit mode 0)
Current function value: 81.596831230463
Iterations: 35
Function evaluations: 372
Gradient evaluations: 35
Iteration: 1, Func. Count: 12, Neg. LLF: 145.04351597942028
Iteration: 2, Func. Count: 29, Neg. LLF: 782.3878077264707
Iteration: 3, Func. Count: 41, Neg. LLF: 1539.1997470910749
Iteration: 4, Func. Count: 53, Neg. LLF: 1377.455421413434
Iteration: 5, Func. Count: 65, Neg. LLF: 892.2354015771958
Iteration: 6, Func. Count: 77, Neg. LLF: 110.70147644304294
Iteration: 7, Func. Count: 89, Neg. LLF: 103.85213554128926
Iteration: 8, Func. Count: 101, Neg. LLF: 102.5973558972188
Iteration: 9, Func. Count: 114, Neg. LLF: 84.15677169827983
Iteration: 10, Func. Count: 125, Neg. LLF: 81.89293028450284
Iteration: 11, Func. Count: 136, Neg. LLF: 82.14015861599664
Iteration: 12, Func. Count: 149, Neg. LLF: 81.62426363085682
Iteration: 13, Func. Count: 160, Neg. LLF: 81.60025629821725
Iteration: 14, Func. Count: 171, Neg. LLF: 81.59892184095875
Iteration: 15, Func. Count: 182, Neg. LLF: 81.59841581501128
Iteration: 16, Func. Count: 193, Neg. LLF: 81.59778220824529
Iteration: 17, Func. Count: 204, Neg. LLF: 81.59734889744298
Iteration: 18, Func. Count: 215, Neg. LLF: 81.59690477630843
Iteration: 19, Func. Count: 226, Neg. LLF: 81.59683769053149
Iteration: 20, Func. Count: 237, Neg. LLF: 81.59683097113617
Iteration: 21, Func. Count: 247, Neg. LLF: 81.59683108375442
Optimization terminated successfully (Exit mode 0)
Current function value: 81.59683097113617
Iterations: 21
Function evaluations: 247
Gradient evaluations: 21
Iteration: 1, Func. Count: 9, Neg. LLF: 147.32723951767633
Iteration: 2, Func. Count: 19, Neg. LLF: 530.9961007825688
Iteration: 3, Func. Count: 28, Neg. LLF: 6917715.298314974
Iteration: 4, Func. Count: 37, Neg. LLF: 6722857.66331549
Iteration: 5, Func. Count: 46, Neg. LLF: 1869668.419258959
Iteration: 6, Func. Count: 55, Neg. LLF: 5643.85477889826
Iteration: 7, Func. Count: 64, Neg. LLF: 126100.38173729501
Iteration: 8, Func. Count: 73, Neg. LLF: 6597818.801275887
Iteration: 9, Func. Count: 82, Neg. LLF: 1983384.902767384
Iteration: 10, Func. Count: 91, Neg. LLF: 6612877.760650839
Iteration: 11, Func. Count: 100, Neg. LLF: 116.548455146934
Iteration: 12, Func. Count: 109, Neg. LLF: 2418.705642450678
Iteration: 13, Func. Count: 118, Neg. LLF: 95.38498111290048
Iteration: 14, Func. Count: 127, Neg. LLF: 82.73621889547758
Iteration: 15, Func. Count: 136, Neg. LLF: 110.57706427432723
Iteration: 16, Func. Count: 145, Neg. LLF: 81.68630304169335
Iteration: 17, Func. Count: 153, Neg. LLF: 81.40817835178517
Iteration: 18, Func. Count: 161, Neg. LLF: 81.15932485165706
Iteration: 19, Func. Count: 169, Neg. LLF: 81.00720515958248
Iteration: 20, Func. Count: 177, Neg. LLF: 80.96795320400024
Iteration: 21, Func. Count: 185, Neg. LLF: 80.95950809699808
Iteration: 22, Func. Count: 193, Neg. LLF: 80.95480550196997
Iteration: 23, Func. Count: 201, Neg. LLF: 80.95436601857017
Iteration: 24, Func. Count: 209, Neg. LLF: 80.95435601255036
Iteration: 25, Func. Count: 216, Neg. LLF: 80.9543560124531
Optimization terminated successfully (Exit mode 0)
Current function value: 80.95435601255036
Iterations: 25
Function evaluations: 216
Gradient evaluations: 25
Iteration: 1, Func. Count: 10, Neg. LLF: 133.36284203466468
Iteration: 2, Func. Count: 21, Neg. LLF: 2839.5490733149845
Iteration: 3, Func. Count: 31, Neg. LLF: 10550968.81029166
Iteration: 4, Func. Count: 41, Neg. LLF: 6719811.946204559
Iteration: 5, Func. Count: 51, Neg. LLF: 246657.29621120016
Iteration: 6, Func. Count: 61, Neg. LLF: 70542.8548166182
Iteration: 7, Func. Count: 71, Neg. LLF: 2929.5515527276234
Iteration: 8, Func. Count: 81, Neg. LLF: 86.59572269832294
Iteration: 9, Func. Count: 91, Neg. LLF: 81.98747340335669
Iteration: 10, Func. Count: 100, Neg. LLF: 82.88530897297134
Iteration: 11, Func. Count: 110, Neg. LLF: 112.56058431303823
Iteration: 12, Func. Count: 120, Neg. LLF: 80.96547774659878
Iteration: 13, Func. Count: 129, Neg. LLF: 80.9569790217965
Iteration: 14, Func. Count: 138, Neg. LLF: 80.95484533757063
Iteration: 15, Func. Count: 147, Neg. LLF: 80.954694554717
Iteration: 16, Func. Count: 156, Neg. LLF: 80.95461249439066
Iteration: 17, Func. Count: 165, Neg. LLF: 80.95447985100881
Iteration: 18, Func. Count: 174, Neg. LLF: 80.9543779138505
Iteration: 19, Func. Count: 183, Neg. LLF: 80.95435728925496
Iteration: 20, Func. Count: 192, Neg. LLF: 80.9543560127692
Iteration: 21, Func. Count: 200, Neg. LLF: 80.95435605498201
Optimization terminated successfully (Exit mode 0)
Current function value: 80.9543560127692
Iterations: 21
Function evaluations: 200
Gradient evaluations: 21
Iteration: 1, Func. Count: 11, Neg. LLF: 130.12511777739405
Iteration: 2, Func. Count: 23, Neg. LLF: 4217.456313054538
Iteration: 3, Func. Count: 34, Neg. LLF: 7916851.47283581
Iteration: 4, Func. Count: 45, Neg. LLF: 6755097.568584637
Iteration: 5, Func. Count: 56, Neg. LLF: 6672862.804520216
Iteration: 6, Func. Count: 67, Neg. LLF: 6595990.802374119
Iteration: 7, Func. Count: 78, Neg. LLF: 17370.77461247533
Iteration: 8, Func. Count: 89, Neg. LLF: 90.50822759658126
Iteration: 9, Func. Count: 100, Neg. LLF: 82.03208591690456
Iteration: 10, Func. Count: 110, Neg. LLF: 87.21414213845136
Iteration: 11, Func. Count: 121, Neg. LLF: 102.46960139719445
Iteration: 12, Func. Count: 132, Neg. LLF: 80.98517520492085
Iteration: 13, Func. Count: 142, Neg. LLF: 80.95883432345188
Iteration: 14, Func. Count: 152, Neg. LLF: 80.95728651805905
Iteration: 15, Func. Count: 162, Neg. LLF: 80.9567619677881
Iteration: 16, Func. Count: 172, Neg. LLF: 80.95501102966344
Iteration: 17, Func. Count: 182, Neg. LLF: 80.95446429317332
Iteration: 18, Func. Count: 192, Neg. LLF: 80.95436470751187
Iteration: 19, Func. Count: 202, Neg. LLF: 80.95435625530256
Iteration: 20, Func. Count: 211, Neg. LLF: 80.9543563331744
Optimization terminated successfully (Exit mode 0)
Current function value: 80.95435625530256
Iterations: 20
Function evaluations: 211
Gradient evaluations: 20
Iteration: 1, Func. Count: 12, Neg. LLF: 143.3573350920281
Iteration: 2, Func. Count: 29, Neg. LLF: 255.5194600981054
Iteration: 3, Func. Count: 41, Neg. LLF: 190.0872954549286
Iteration: 4, Func. Count: 53, Neg. LLF: 90.51667571062092
Iteration: 5, Func. Count: 64, Neg. LLF: 134.9760793037133
Iteration: 6, Func. Count: 77, Neg. LLF: 189.60638627682394
Iteration: 7, Func. Count: 91, Neg. LLF: 82.70600976784262
Iteration: 8, Func. Count: 102, Neg. LLF: 94.08040344699292
Iteration: 9, Func. Count: 115, Neg. LLF: 97.21807070304106
Iteration: 10, Func. Count: 128, Neg. LLF: 81.56536941476651
Iteration: 11, Func. Count: 139, Neg. LLF: 81.3247561703022
Iteration: 12, Func. Count: 150, Neg. LLF: 81.18335304701411
Iteration: 13, Func. Count: 161, Neg. LLF: 81.05257455084737
Iteration: 14, Func. Count: 172, Neg. LLF: 81.02017921250837
Iteration: 15, Func. Count: 183, Neg. LLF: 81.00164585862261
Iteration: 16, Func. Count: 194, Neg. LLF: 80.9887456223596
Iteration: 17, Func. Count: 205, Neg. LLF: 80.97628074977904
Iteration: 18, Func. Count: 216, Neg. LLF: 80.96916909181805
Iteration: 19, Func. Count: 227, Neg. LLF: 80.96713854155547
Iteration: 20, Func. Count: 238, Neg. LLF: 80.9652143697655
Iteration: 21, Func. Count: 249, Neg. LLF: 80.96362414044223
Iteration: 22, Func. Count: 260, Neg. LLF: 80.95913612776283
Iteration: 23, Func. Count: 271, Neg. LLF: 80.955713775901
Iteration: 24, Func. Count: 282, Neg. LLF: 80.9545172252762
Iteration: 25, Func. Count: 293, Neg. LLF: 80.95437165053747
Iteration: 26, Func. Count: 304, Neg. LLF: 80.95435644836662
Iteration: 27, Func. Count: 314, Neg. LLF: 80.95435648854888
Optimization terminated successfully (Exit mode 0)
Current function value: 80.95435644836662
Iterations: 27
Function evaluations: 314
Gradient evaluations: 27
Iteration: 1, Func. Count: 13, Neg. LLF: 145.06030930139949
Iteration: 2, Func. Count: 31, Neg. LLF: 409.8505447899343
Iteration: 3, Func. Count: 44, Neg. LLF: 613.8880444701717
Iteration: 4, Func. Count: 57, Neg. LLF: 644.93950137543
Iteration: 5, Func. Count: 70, Neg. LLF: 6708660.216655568
Iteration: 6, Func. Count: 83, Neg. LLF: 227.32935807960146
Iteration: 7, Func. Count: 96, Neg. LLF: 89.68181331088017
Iteration: 8, Func. Count: 109, Neg. LLF: 84.51135215978859
Iteration: 9, Func. Count: 122, Neg. LLF: 84.71555305157628
Iteration: 10, Func. Count: 135, Neg. LLF: 95.89923611131215
Iteration: 11, Func. Count: 148, Neg. LLF: 84.05830926355266
Iteration: 12, Func. Count: 161, Neg. LLF: 81.53083651955816
Iteration: 13, Func. Count: 173, Neg. LLF: 81.43375993459048
Iteration: 14, Func. Count: 185, Neg. LLF: 81.3017868057306
Iteration: 15, Func. Count: 197, Neg. LLF: 81.18134064207015
Iteration: 16, Func. Count: 209, Neg. LLF: 81.05149851483911
Iteration: 17, Func. Count: 221, Neg. LLF: 80.98430681118612
Iteration: 18, Func. Count: 233, Neg. LLF: 80.961452825907
Iteration: 19, Func. Count: 245, Neg. LLF: 80.95489969260434
Iteration: 20, Func. Count: 257, Neg. LLF: 80.95436208658131
Iteration: 21, Func. Count: 269, Neg. LLF: 80.95435606660762
Iteration: 22, Func. Count: 280, Neg. LLF: 80.95435617484662
Optimization terminated successfully (Exit mode 0)
Current function value: 80.95435606660762
Iterations: 22
Function evaluations: 280
Gradient evaluations: 22
Iteration: 1, Func. Count: 10, Neg. LLF: 147.2127386913932
Iteration: 2, Func. Count: 21, Neg. LLF: 535.3484963161155
Iteration: 3, Func. Count: 31, Neg. LLF: 6915406.076032205
Iteration: 4, Func. Count: 41, Neg. LLF: 6720705.410128815
Iteration: 5, Func. Count: 51, Neg. LLF: 6657270.590930742
Iteration: 6, Func. Count: 61, Neg. LLF: 6587294.473892597
Iteration: 7, Func. Count: 71, Neg. LLF: 287023.79012359295
Iteration: 8, Func. Count: 81, Neg. LLF: 6598665.72896282
Iteration: 9, Func. Count: 91, Neg. LLF: 2579238.92497848
Iteration: 10, Func. Count: 101, Neg. LLF: 6613886.468278528
Iteration: 11, Func. Count: 111, Neg. LLF: 119.17434619719822
Iteration: 12, Func. Count: 121, Neg. LLF: 2187.3782133064396
Iteration: 13, Func. Count: 131, Neg. LLF: 95.34919360941927
Iteration: 14, Func. Count: 141, Neg. LLF: 82.77903225604733
Iteration: 15, Func. Count: 151, Neg. LLF: 84.04530836482591
Iteration: 16, Func. Count: 161, Neg. LLF: 81.76924191543637
Iteration: 17, Func. Count: 170, Neg. LLF: 81.44693772206453
Iteration: 18, Func. Count: 179, Neg. LLF: 81.14170320526569
Iteration: 19, Func. Count: 188, Neg. LLF: 81.04625373702972
Iteration: 20, Func. Count: 197, Neg. LLF: 80.99772705537873
Iteration: 21, Func. Count: 206, Neg. LLF: 80.99397803833968
Iteration: 22, Func. Count: 216, Neg. LLF: 80.96082954671493
Iteration: 23, Func. Count: 225, Neg. LLF: 80.95637166940625
Iteration: 24, Func. Count: 234, Neg. LLF: 80.95491988648762
Iteration: 25, Func. Count: 243, Neg. LLF: 80.95442124791268
Iteration: 26, Func. Count: 252, Neg. LLF: 80.95435637354879
Iteration: 27, Func. Count: 260, Neg. LLF: 80.95435677366653
Optimization terminated successfully (Exit mode 0)
Current function value: 80.95435637354879
Iterations: 27
Function evaluations: 260
Gradient evaluations: 27
Iteration: 1, Func. Count: 11, Neg. LLF: 133.3466335093341
Iteration: 2, Func. Count: 23, Neg. LLF: 2907.299706410086
Iteration: 3, Func. Count: 34, Neg. LLF: 10550819.798936665
Iteration: 4, Func. Count: 45, Neg. LLF: 6719583.97503418
Iteration: 5, Func. Count: 56, Neg. LLF: 229869.93309357308
Iteration: 6, Func. Count: 67, Neg. LLF: 69480.56770791841
Iteration: 7, Func. Count: 78, Neg. LLF: 2864.3325695216536
Iteration: 8, Func. Count: 89, Neg. LLF: 86.65838310858489
Iteration: 9, Func. Count: 100, Neg. LLF: 81.9868816654102
Iteration: 10, Func. Count: 110, Neg. LLF: 82.9293288983724
Iteration: 11, Func. Count: 121, Neg. LLF: 110.9283172052152
Iteration: 12, Func. Count: 132, Neg. LLF: 80.96588929066851
Iteration: 13, Func. Count: 142, Neg. LLF: 80.95718627547564
Iteration: 14, Func. Count: 152, Neg. LLF: 80.95497210360931
Iteration: 15, Func. Count: 162, Neg. LLF: 80.95479097015955
Iteration: 16, Func. Count: 172, Neg. LLF: 80.9546702524626
Iteration: 17, Func. Count: 182, Neg. LLF: 80.95450481359835
Iteration: 18, Func. Count: 192, Neg. LLF: 80.95439109440764
Iteration: 19, Func. Count: 202, Neg. LLF: 80.95435854107926
Iteration: 20, Func. Count: 212, Neg. LLF: 80.9543560799256
Iteration: 21, Func. Count: 221, Neg. LLF: 80.9543561221399
Optimization terminated successfully (Exit mode 0)
Current function value: 80.9543560799256
Iterations: 21
Function evaluations: 221
Gradient evaluations: 21
Iteration: 1, Func. Count: 12, Neg. LLF: 130.00226980446956
Iteration: 2, Func. Count: 25, Neg. LLF: 4531.294205559132
Iteration: 3, Func. Count: 37, Neg. LLF: 7916203.655928492
Iteration: 4, Func. Count: 49, Neg. LLF: 6754375.2272471385
Iteration: 5, Func. Count: 61, Neg. LLF: 6672659.285972325
Iteration: 6, Func. Count: 73, Neg. LLF: 6595943.636366222
Iteration: 7, Func. Count: 85, Neg. LLF: 17937.763344913667
Iteration: 8, Func. Count: 97, Neg. LLF: 90.42964596392423
Iteration: 9, Func. Count: 109, Neg. LLF: 82.02627006034902
Iteration: 10, Func. Count: 120, Neg. LLF: 87.2423331171126
Iteration: 11, Func. Count: 132, Neg. LLF: 100.79496896103421
Iteration: 12, Func. Count: 144, Neg. LLF: 80.98773587874508
Iteration: 13, Func. Count: 155, Neg. LLF: 80.95967400358302
Iteration: 14, Func. Count: 166, Neg. LLF: 80.95806966167376
Iteration: 15, Func. Count: 177, Neg. LLF: 80.95738154322777
Iteration: 16, Func. Count: 188, Neg. LLF: 80.95516492532313
Iteration: 17, Func. Count: 199, Neg. LLF: 80.95441077499156
Iteration: 18, Func. Count: 210, Neg. LLF: 80.95435957757263
Iteration: 19, Func. Count: 221, Neg. LLF: 80.95435609249284
Iteration: 20, Func. Count: 231, Neg. LLF: 80.95435617035463
Optimization terminated successfully (Exit mode 0)
Current function value: 80.95435609249284
Iterations: 20
Function evaluations: 231
Gradient evaluations: 20
Iteration: 1, Func. Count: 13, Neg. LLF: 143.425263367451
Iteration: 2, Func. Count: 31, Neg. LLF: 249.5840277335989
Iteration: 3, Func. Count: 44, Neg. LLF: 186.57803802022096
Iteration: 4, Func. Count: 57, Neg. LLF: 90.37996382800723
Iteration: 5, Func. Count: 69, Neg. LLF: 134.21188344954143
Iteration: 6, Func. Count: 83, Neg. LLF: 187.11902769794483
Iteration: 7, Func. Count: 98, Neg. LLF: 90.4411333375848
Iteration: 8, Func. Count: 111, Neg. LLF: 82.40298326059764
Iteration: 9, Func. Count: 123, Neg. LLF: 122.68960650067935
Iteration: 10, Func. Count: 138, Neg. LLF: 81.86318409196792
Iteration: 11, Func. Count: 150, Neg. LLF: 81.38783163683351
Iteration: 12, Func. Count: 162, Neg. LLF: 81.28303022405912
Iteration: 13, Func. Count: 174, Neg. LLF: 81.11171793606644
Iteration: 14, Func. Count: 186, Neg. LLF: 81.02754727594245
Iteration: 15, Func. Count: 198, Neg. LLF: 80.99495787297035
Iteration: 16, Func. Count: 210, Neg. LLF: 80.97720291913218
Iteration: 17, Func. Count: 222, Neg. LLF: 80.97429635380507
Iteration: 18, Func. Count: 234, Neg. LLF: 80.97195188217525
Iteration: 19, Func. Count: 246, Neg. LLF: 80.96796604262265
Iteration: 20, Func. Count: 258, Neg. LLF: 80.96344393280208
Iteration: 21, Func. Count: 270, Neg. LLF: 80.95922768085232
Iteration: 22, Func. Count: 282, Neg. LLF: 80.95691505839741
Iteration: 23, Func. Count: 294, Neg. LLF: 80.95561937968586
Iteration: 24, Func. Count: 306, Neg. LLF: 80.95469057734208
Iteration: 25, Func. Count: 318, Neg. LLF: 80.95439322743647
Iteration: 26, Func. Count: 330, Neg. LLF: 80.95435780015583
Iteration: 27, Func. Count: 342, Neg. LLF: 80.95435602850135
Iteration: 28, Func. Count: 353, Neg. LLF: 80.9543560685813
Optimization terminated successfully (Exit mode 0)
Current function value: 80.95435602850135
Iterations: 28
Function evaluations: 353
Gradient evaluations: 28
Iteration: 1, Func. Count: 14, Neg. LLF: 145.13219603205076
Iteration: 2, Func. Count: 33, Neg. LLF: 419.9610641626721
Iteration: 3, Func. Count: 47, Neg. LLF: 645.5439467233125
Iteration: 4, Func. Count: 61, Neg. LLF: 688.3848907117718
Iteration: 5, Func. Count: 75, Neg. LLF: 361.2142556879859
Iteration: 6, Func. Count: 89, Neg. LLF: 17020.25564702463
Iteration: 7, Func. Count: 103, Neg. LLF: 104.09538640211038
Iteration: 8, Func. Count: 117, Neg. LLF: 41535.20115632449
Iteration: 9, Func. Count: 131, Neg. LLF: 85.9923550835589
Iteration: 10, Func. Count: 144, Neg. LLF: 93.19121539474762
Iteration: 11, Func. Count: 158, Neg. LLF: 83.84836444657603
Iteration: 12, Func. Count: 171, Neg. LLF: 87.30461771549182
Iteration: 13, Func. Count: 186, Neg. LLF: 85.832987862581
Iteration: 14, Func. Count: 200, Neg. LLF: 82.609788607753
Iteration: 15, Func. Count: 213, Neg. LLF: 82.59927394460772
Iteration: 16, Func. Count: 227, Neg. LLF: 82.31654155732429
Iteration: 17, Func. Count: 241, Neg. LLF: 81.30724724656878
Iteration: 18, Func. Count: 254, Neg. LLF: 81.10125069452891
Iteration: 19, Func. Count: 267, Neg. LLF: 81.01822630851458
Iteration: 20, Func. Count: 280, Neg. LLF: 81.00089445667986
Iteration: 21, Func. Count: 293, Neg. LLF: 80.98961034678318
Iteration: 22, Func. Count: 306, Neg. LLF: 80.9769435185942
Iteration: 23, Func. Count: 319, Neg. LLF: 80.96305767509634
Iteration: 24, Func. Count: 332, Neg. LLF: 80.95550910802946
Iteration: 25, Func. Count: 345, Neg. LLF: 80.95443522919926
Iteration: 26, Func. Count: 358, Neg. LLF: 80.95436526983194
Iteration: 27, Func. Count: 371, Neg. LLF: 80.95435626117039
Iteration: 28, Func. Count: 383, Neg. LLF: 80.95435636941981
Optimization terminated successfully (Exit mode 0)
Current function value: 80.95435626117039
Iterations: 28
Function evaluations: 383
Gradient evaluations: 28
Iteration: 1, Func. Count: 11, Neg. LLF: 147.8537799285026
Iteration: 2, Func. Count: 23, Neg. LLF: 517.7936216145844
Iteration: 3, Func. Count: 34, Neg. LLF: 6927297.184882469
Iteration: 4, Func. Count: 45, Neg. LLF: 6732543.299246478
Iteration: 5, Func. Count: 56, Neg. LLF: 93077.62846571689
Iteration: 6, Func. Count: 67, Neg. LLF: 197.46993290978938
Iteration: 7, Func. Count: 78, Neg. LLF: 2019785.70691305
Iteration: 8, Func. Count: 89, Neg. LLF: 6600155.106546183
Iteration: 9, Func. Count: 100, Neg. LLF: 1953304.5047752582
Iteration: 10, Func. Count: 111, Neg. LLF: 6611429.513184189
Iteration: 11, Func. Count: 122, Neg. LLF: 133.90083127577068
Iteration: 12, Func. Count: 133, Neg. LLF: 10890.789743889332
Iteration: 13, Func. Count: 144, Neg. LLF: 97.1920608930695
Iteration: 14, Func. Count: 155, Neg. LLF: 82.73639355349187
Iteration: 15, Func. Count: 166, Neg. LLF: 87.37056755201087
Iteration: 16, Func. Count: 177, Neg. LLF: 81.69832408693922
Iteration: 17, Func. Count: 187, Neg. LLF: 81.49958823988113
Iteration: 18, Func. Count: 197, Neg. LLF: 81.12100039825945
Iteration: 19, Func. Count: 207, Neg. LLF: 80.97846999055842
Iteration: 20, Func. Count: 217, Neg. LLF: 80.96404058894183
Iteration: 21, Func. Count: 227, Neg. LLF: 80.95852404391898
Iteration: 22, Func. Count: 237, Neg. LLF: 80.95545468056854
Iteration: 23, Func. Count: 247, Neg. LLF: 80.95448563610094
Iteration: 24, Func. Count: 257, Neg. LLF: 80.95439263733552
Iteration: 25, Func. Count: 267, Neg. LLF: 80.95436311321073
Iteration: 26, Func. Count: 277, Neg. LLF: 80.95435674332069
Iteration: 27, Func. Count: 287, Neg. LLF: 80.95435599419488
Optimization terminated successfully (Exit mode 0)
Current function value: 80.95435599419488
Iterations: 27
Function evaluations: 287
Gradient evaluations: 27
Iteration: 1, Func. Count: 12, Neg. LLF: 133.47442503604165
Iteration: 2, Func. Count: 25, Neg. LLF: 3020.3894347144187
Iteration: 3, Func. Count: 37, Neg. LLF: 10544599.392721387
Iteration: 4, Func. Count: 49, Neg. LLF: 6718007.263376034
Iteration: 5, Func. Count: 61, Neg. LLF: 139921.1291308922
Iteration: 6, Func. Count: 73, Neg. LLF: 58685.12384264376
Iteration: 7, Func. Count: 85, Neg. LLF: 2491.0841959232057
Iteration: 8, Func. Count: 97, Neg. LLF: 87.21569254238842
Iteration: 9, Func. Count: 109, Neg. LLF: 81.98281737821392
Iteration: 10, Func. Count: 120, Neg. LLF: 83.11095783868416
Iteration: 11, Func. Count: 132, Neg. LLF: 111.6272521523062
Iteration: 12, Func. Count: 144, Neg. LLF: 80.96644400134234
Iteration: 13, Func. Count: 155, Neg. LLF: 80.95722250443033
Iteration: 14, Func. Count: 166, Neg. LLF: 80.95505654827028
Iteration: 15, Func. Count: 177, Neg. LLF: 80.95477126101669
Iteration: 16, Func. Count: 188, Neg. LLF: 80.95468277269302
Iteration: 17, Func. Count: 199, Neg. LLF: 80.95449547698003
Iteration: 18, Func. Count: 210, Neg. LLF: 80.95439454857765
Iteration: 19, Func. Count: 221, Neg. LLF: 80.95435851339408
Iteration: 20, Func. Count: 232, Neg. LLF: 80.95435606403343
Iteration: 21, Func. Count: 242, Neg. LLF: 80.95435610624298
Optimization terminated successfully (Exit mode 0)
Current function value: 80.95435606403343
Iterations: 21
Function evaluations: 242
Gradient evaluations: 21
Iteration: 1, Func. Count: 13, Neg. LLF: 130.0913957630667
Iteration: 2, Func. Count: 27, Neg. LLF: 4498.095307863685
Iteration: 3, Func. Count: 40, Neg. LLF: 7909107.127741569
Iteration: 4, Func. Count: 53, Neg. LLF: 6751699.2139267735
Iteration: 5, Func. Count: 66, Neg. LLF: 6671090.867816401
Iteration: 6, Func. Count: 79, Neg. LLF: 6595392.884035028
Iteration: 7, Func. Count: 92, Neg. LLF: 13827.626431075736
Iteration: 8, Func. Count: 105, Neg. LLF: 90.63119059388201
Iteration: 9, Func. Count: 118, Neg. LLF: 82.03262715261833
Iteration: 10, Func. Count: 130, Neg. LLF: 87.50956451228917
Iteration: 11, Func. Count: 143, Neg. LLF: 102.41741433077402
Iteration: 12, Func. Count: 156, Neg. LLF: 80.98748222363741
Iteration: 13, Func. Count: 168, Neg. LLF: 80.96014415387945
Iteration: 14, Func. Count: 180, Neg. LLF: 80.95834619943207
Iteration: 15, Func. Count: 192, Neg. LLF: 80.95760356454561
Iteration: 16, Func. Count: 204, Neg. LLF: 80.95521908148979
Iteration: 17, Func. Count: 216, Neg. LLF: 80.95444427304834
Iteration: 18, Func. Count: 228, Neg. LLF: 80.95436251706579
Iteration: 19, Func. Count: 240, Neg. LLF: 80.95435618761276
Iteration: 20, Func. Count: 251, Neg. LLF: 80.95435626547537
Optimization terminated successfully (Exit mode 0)
Current function value: 80.95435618761276
Iterations: 20
Function evaluations: 251
Gradient evaluations: 20
Iteration: 1, Func. Count: 14, Neg. LLF: 143.35853155307308
Iteration: 2, Func. Count: 33, Neg. LLF: 247.1254479683968
Iteration: 3, Func. Count: 47, Neg. LLF: 183.51637844962505
Iteration: 4, Func. Count: 61, Neg. LLF: 90.36743890656247
Iteration: 5, Func. Count: 74, Neg. LLF: 133.6375330952477
Iteration: 6, Func. Count: 89, Neg. LLF: 186.06204722976136
Iteration: 7, Func. Count: 105, Neg. LLF: 91.71378922183757
Iteration: 8, Func. Count: 119, Neg. LLF: 82.23668808106781
Iteration: 9, Func. Count: 132, Neg. LLF: 116.20029306045053
Iteration: 10, Func. Count: 148, Neg. LLF: 81.39337077399239
Iteration: 11, Func. Count: 161, Neg. LLF: 81.23111493981135
Iteration: 12, Func. Count: 174, Neg. LLF: 81.06441610804595
Iteration: 13, Func. Count: 187, Neg. LLF: 81.0432537499239
Iteration: 14, Func. Count: 200, Neg. LLF: 80.99485152581104
Iteration: 15, Func. Count: 213, Neg. LLF: 80.98374981975209
Iteration: 16, Func. Count: 226, Neg. LLF: 80.97092533240128
Iteration: 17, Func. Count: 239, Neg. LLF: 80.96528694538466
Iteration: 18, Func. Count: 252, Neg. LLF: 80.96445159802359
Iteration: 19, Func. Count: 265, Neg. LLF: 80.96113071885515
Iteration: 20, Func. Count: 278, Neg. LLF: 80.95822220121603
Iteration: 21, Func. Count: 291, Neg. LLF: 80.95519248036884
Iteration: 22, Func. Count: 304, Neg. LLF: 80.95442026543326
Iteration: 23, Func. Count: 317, Neg. LLF: 80.95435885900585
Iteration: 24, Func. Count: 330, Neg. LLF: 80.954356066829
Iteration: 25, Func. Count: 342, Neg. LLF: 80.95435610695257
Optimization terminated successfully (Exit mode 0)
Current function value: 80.954356066829
Iterations: 25
Function evaluations: 342
Gradient evaluations: 25
Iteration: 1, Func. Count: 15, Neg. LLF: 145.12000224424125
Iteration: 2, Func. Count: 35, Neg. LLF: 410.8736086135554
Iteration: 3, Func. Count: 50, Neg. LLF: 647.4389025010483
Iteration: 4, Func. Count: 65, Neg. LLF: 688.4589901828771
Iteration: 5, Func. Count: 80, Neg. LLF: 97.79929294504137
Iteration: 6, Func. Count: 95, Neg. LLF: 2881295.756601381
Iteration: 7, Func. Count: 110, Neg. LLF: 89.75606921423709
Iteration: 8, Func. Count: 124, Neg. LLF: 2440378.8168497807
Iteration: 9, Func. Count: 139, Neg. LLF: 1985.1249864323604
Iteration: 10, Func. Count: 155, Neg. LLF: 89.38550361153295
Iteration: 11, Func. Count: 170, Neg. LLF: 120.7436157820062
Iteration: 12, Func. Count: 186, Neg. LLF: 84.63852846050193
Iteration: 13, Func. Count: 200, Neg. LLF: 83.30516365010092
Iteration: 14, Func. Count: 214, Neg. LLF: 81.94436030121591
Iteration: 15, Func. Count: 228, Neg. LLF: 81.19864612155192
Iteration: 16, Func. Count: 242, Neg. LLF: 81.0837272374029
Iteration: 17, Func. Count: 256, Neg. LLF: 81.05661514757445
Iteration: 18, Func. Count: 270, Neg. LLF: 81.0316841318393
Iteration: 19, Func. Count: 284, Neg. LLF: 81.01858148816272
Iteration: 20, Func. Count: 298, Neg. LLF: 80.99654285275635
Iteration: 21, Func. Count: 312, Neg. LLF: 80.97899286367846
Iteration: 22, Func. Count: 326, Neg. LLF: 80.96449979021644
Iteration: 23, Func. Count: 340, Neg. LLF: 80.9575306688198
Iteration: 24, Func. Count: 354, Neg. LLF: 80.95699542481314
Iteration: 25, Func. Count: 368, Neg. LLF: 80.95660500247335
Iteration: 26, Func. Count: 382, Neg. LLF: 80.9550153008731
Iteration: 27, Func. Count: 396, Neg. LLF: 80.95445739495608
Iteration: 28, Func. Count: 410, Neg. LLF: 80.95435981259965
Iteration: 29, Func. Count: 424, Neg. LLF: 80.9543561582654
Iteration: 30, Func. Count: 437, Neg. LLF: 80.95435626652821
Optimization terminated successfully (Exit mode 0)
Current function value: 80.9543561582654
Iterations: 30
Function evaluations: 437
Gradient evaluations: 30
Iteration: 1, Func. Count: 8, Neg. LLF: 148.39319845712814
Iteration: 2, Func. Count: 17, Neg. LLF: 159.71626547324146
Iteration: 3, Func. Count: 26, Neg. LLF: 28450.102198109525
Iteration: 4, Func. Count: 34, Neg. LLF: 1166.857311594856
Iteration: 5, Func. Count: 42, Neg. LLF: 10374.036052670186
Iteration: 6, Func. Count: 50, Neg. LLF: 692.3383530703074
Iteration: 7, Func. Count: 58, Neg. LLF: 143.2956222401789
Iteration: 8, Func. Count: 67, Neg. LLF: 2796.801056295306
Iteration: 9, Func. Count: 75, Neg. LLF: 1900.2193712786764
Iteration: 10, Func. Count: 83, Neg. LLF: 56441.3369771597
Iteration: 11, Func. Count: 91, Neg. LLF: 116.04775581720645
Iteration: 12, Func. Count: 99, Neg. LLF: 99.34873778722394
Iteration: 13, Func. Count: 107, Neg. LLF: 93.15863902831337
Iteration: 14, Func. Count: 115, Neg. LLF: 89.9088599566849
Iteration: 15, Func. Count: 123, Neg. LLF: 89.3831940747411
Iteration: 16, Func. Count: 131, Neg. LLF: 87.92968123030553
Iteration: 17, Func. Count: 138, Neg. LLF: 87.91499486345934
Iteration: 18, Func. Count: 145, Neg. LLF: 87.88523492282
Iteration: 19, Func. Count: 152, Neg. LLF: 87.84669479794124
Iteration: 20, Func. Count: 159, Neg. LLF: 87.78301954713376
Iteration: 21, Func. Count: 166, Neg. LLF: 87.73648300803657
Iteration: 22, Func. Count: 173, Neg. LLF: 87.69694868657409
Iteration: 23, Func. Count: 180, Neg. LLF: 87.65487263307944
Iteration: 24, Func. Count: 187, Neg. LLF: 87.64271702687076
Iteration: 25, Func. Count: 194, Neg. LLF: 87.63416682843294
Iteration: 26, Func. Count: 201, Neg. LLF: 87.63406553516198
Iteration: 27, Func. Count: 208, Neg. LLF: 87.63406153349437
Iteration: 28, Func. Count: 214, Neg. LLF: 87.63406187382246
Optimization terminated successfully (Exit mode 0)
Current function value: 87.63406153349437
Iterations: 28
Function evaluations: 214
Gradient evaluations: 28
Iteration: 1, Func. Count: 9, Neg. LLF: 190.48185583951974
Iteration: 2, Func. Count: 21, Neg. LLF: 96.6841619334178
Iteration: 3, Func. Count: 29, Neg. LLF: 109.60960215952358
Iteration: 4, Func. Count: 38, Neg. LLF: 96.21077755703809
Iteration: 5, Func. Count: 46, Neg. LLF: 94.9833011624942
Iteration: 6, Func. Count: 54, Neg. LLF: 94.90047380588678
Iteration: 7, Func. Count: 62, Neg. LLF: 94.90041807697862
Iteration: 8, Func. Count: 70, Neg. LLF: 104.91762825342867
Optimization terminated successfully (Exit mode 0)
Current function value: 94.90041760121936
Iterations: 9
Function evaluations: 73
Gradient evaluations: 8
Iteration: 1, Func. Count: 10, Neg. LLF: 182.4340693475469
Iteration: 2, Func. Count: 24, Neg. LLF: 99.25181359660615
Iteration: 3, Func. Count: 34, Neg. LLF: 95.21900901110845
Iteration: 4, Func. Count: 43, Neg. LLF: 99.039133649205
Iteration: 5, Func. Count: 53, Neg. LLF: 94.99135600585146
Iteration: 6, Func. Count: 62, Neg. LLF: 94.98626552465505
Iteration: 7, Func. Count: 71, Neg. LLF: 94.97513214052401
Iteration: 8, Func. Count: 80, Neg. LLF: 94.97101415722531
Iteration: 9, Func. Count: 89, Neg. LLF: 94.96597936209106
Iteration: 10, Func. Count: 98, Neg. LLF: 94.95873220530456
Iteration: 11, Func. Count: 107, Neg. LLF: 94.95009924651039
Iteration: 12, Func. Count: 116, Neg. LLF: 94.94011229973806
Iteration: 13, Func. Count: 125, Neg. LLF: 94.9008858273072
Iteration: 14, Func. Count: 134, Neg. LLF: 94.90063572082306
Iteration: 15, Func. Count: 143, Neg. LLF: 94.9006154745969
Iteration: 16, Func. Count: 153, Neg. LLF: 94.90040558673556
Iteration: 17, Func. Count: 162, Neg. LLF: 94.90120955703433
Optimization terminated successfully (Exit mode 0)
Current function value: 94.90040546030684
Iterations: 18
Function evaluations: 164
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 178.71084440772006
Iteration: 2, Func. Count: 26, Neg. LLF: 101.05732184888637
Iteration: 3, Func. Count: 37, Neg. LLF: 95.0071506198585
Iteration: 4, Func. Count: 47, Neg. LLF: 95.15267719610327
Iteration: 5, Func. Count: 58, Neg. LLF: 94.96651121983264
Iteration: 6, Func. Count: 68, Neg. LLF: 94.96431150007689
Iteration: 7, Func. Count: 78, Neg. LLF: 94.96360383182747
Iteration: 8, Func. Count: 88, Neg. LLF: 94.96356588131006
Iteration: 9, Func. Count: 98, Neg. LLF: 94.96356531027682
Optimization terminated successfully (Exit mode 0)
Current function value: 94.96356531027682
Iterations: 9
Function evaluations: 98
Gradient evaluations: 9
Iteration: 1, Func. Count: 12, Neg. LLF: 180.45694279782154
Iteration: 2, Func. Count: 28, Neg. LLF: 102.32304779457394
Iteration: 3, Func. Count: 40, Neg. LLF: 95.19637967983272
Iteration: 4, Func. Count: 51, Neg. LLF: 95.12782141062355
Iteration: 5, Func. Count: 63, Neg. LLF: 95.07269724316018
Iteration: 6, Func. Count: 75, Neg. LLF: 95.06257339371788
Iteration: 7, Func. Count: 86, Neg. LLF: 95.06152798885785
Iteration: 8, Func. Count: 97, Neg. LLF: 95.04475526965365
Iteration: 9, Func. Count: 108, Neg. LLF: 95.00227669519019
Iteration: 10, Func. Count: 119, Neg. LLF: 94.97506384731466
Iteration: 11, Func. Count: 130, Neg. LLF: 94.9715383341861
Iteration: 12, Func. Count: 141, Neg. LLF: 94.96923779747999
Iteration: 13, Func. Count: 152, Neg. LLF: 94.95029275890016
Iteration: 14, Func. Count: 163, Neg. LLF: 94.93262444247745
Iteration: 15, Func. Count: 174, Neg. LLF: 96.13224351455766
Iteration: 16, Func. Count: 195, Neg. LLF: 127.6364281228209
Iteration: 17, Func. Count: 209, Neg. LLF: 96.3384272619932
Iteration: 18, Func. Count: 222, Neg. LLF: 94.92619166470601
Iteration: 19, Func. Count: 233, Neg. LLF: 94.90856001883233
Iteration: 20, Func. Count: 244, Neg. LLF: 94.90038821421557
Iteration: 21, Func. Count: 255, Neg. LLF: 104.92868597423306
Iteration: 22, Func. Count: 269, Neg. LLF: 94.90041653183377
Optimization terminated successfully (Exit mode 0)
Current function value: 94.9003867702205
Iterations: 24
Function evaluations: 270
Gradient evaluations: 22
Iteration: 1, Func. Count: 9, Neg. LLF: 151.1423153373914
Iteration: 2, Func. Count: 19, Neg. LLF: 175.8934820881315
Iteration: 3, Func. Count: 29, Neg. LLF: 10194676.843525428
Iteration: 4, Func. Count: 38, Neg. LLF: 9773346.747830234
Iteration: 5, Func. Count: 47, Neg. LLF: 9835899.210665183
Iteration: 6, Func. Count: 56, Neg. LLF: 9871155.094617723
Iteration: 7, Func. Count: 65, Neg. LLF: 223129.3291072886
Iteration: 8, Func. Count: 74, Neg. LLF: 9153578.508285236
Iteration: 9, Func. Count: 83, Neg. LLF: 227.30798569455203
Iteration: 10, Func. Count: 92, Neg. LLF: 467.1664250628707
Iteration: 11, Func. Count: 101, Neg. LLF: 365.5847833942216
Iteration: 12, Func. Count: 110, Neg. LLF: 110.15145500595332
Iteration: 13, Func. Count: 119, Neg. LLF: 105.45106435198053
Iteration: 14, Func. Count: 128, Neg. LLF: 83.28653900660768
Iteration: 15, Func. Count: 136, Neg. LLF: 82.50449645477389
Iteration: 16, Func. Count: 144, Neg. LLF: 82.54996746522752
Iteration: 17, Func. Count: 153, Neg. LLF: 82.44784008645892
Iteration: 18, Func. Count: 161, Neg. LLF: 82.44765618841201
Iteration: 19, Func. Count: 169, Neg. LLF: 82.4476081210345
Iteration: 20, Func. Count: 177, Neg. LLF: 82.44760343007248
Iteration: 21, Func. Count: 184, Neg. LLF: 82.4476038153695
Optimization terminated successfully (Exit mode 0)
Current function value: 82.44760343007248
Iterations: 22
Function evaluations: 184
Gradient evaluations: 21
Iteration: 1, Func. Count: 10, Neg. LLF: 138.62491750665757
Iteration: 2, Func. Count: 24, Neg. LLF: 208.0140559040281
Iteration: 3, Func. Count: 34, Neg. LLF: 84.06177473307555
Iteration: 4, Func. Count: 43, Neg. LLF: 130.82949875536772
Iteration: 5, Func. Count: 54, Neg. LLF: 114.02216989639567
Iteration: 6, Func. Count: 64, Neg. LLF: 117.03703075429904
Iteration: 7, Func. Count: 74, Neg. LLF: 128.0962400592898
Iteration: 8, Func. Count: 84, Neg. LLF: 138.24727880986322
Iteration: 9, Func. Count: 94, Neg. LLF: 148.84314337750556
Iteration: 10, Func. Count: 104, Neg. LLF: 108.05718846244673
Iteration: 11, Func. Count: 114, Neg. LLF: 82.79903802316993
Iteration: 12, Func. Count: 124, Neg. LLF: 81.66787258912734
Iteration: 13, Func. Count: 134, Neg. LLF: 81.6226129271172
Iteration: 14, Func. Count: 143, Neg. LLF: 81.61547725363488
Iteration: 15, Func. Count: 152, Neg. LLF: 81.60294464827858
Iteration: 16, Func. Count: 161, Neg. LLF: 81.59772938012138
Iteration: 17, Func. Count: 170, Neg. LLF: 81.59688055821064
Iteration: 18, Func. Count: 179, Neg. LLF: 81.59683114921167
Iteration: 19, Func. Count: 187, Neg. LLF: 81.59683114918141
Optimization terminated successfully (Exit mode 0)
Current function value: 81.59683114921167
Iterations: 19
Function evaluations: 187
Gradient evaluations: 19
Iteration: 1, Func. Count: 11, Neg. LLF: 141.8193986183629
Iteration: 2, Func. Count: 26, Neg. LLF: 109.87583596375143
Iteration: 3, Func. Count: 37, Neg. LLF: 93.03044293046918
Iteration: 4, Func. Count: 48, Neg. LLF: 515.1031913607684
Iteration: 5, Func. Count: 61, Neg. LLF: 84.14239382943556
Iteration: 6, Func. Count: 71, Neg. LLF: 83.54939106972647
Iteration: 7, Func. Count: 82, Neg. LLF: 109.32734823907974
Iteration: 8, Func. Count: 93, Neg. LLF: 97.07920562312253
Iteration: 9, Func. Count: 104, Neg. LLF: 126.05183235413384
Iteration: 10, Func. Count: 115, Neg. LLF: 142.51393077952278
Iteration: 11, Func. Count: 126, Neg. LLF: 94.42025361584784
Iteration: 12, Func. Count: 137, Neg. LLF: 83.85357513759082
Iteration: 13, Func. Count: 148, Neg. LLF: 82.04958695957559
Iteration: 14, Func. Count: 159, Neg. LLF: 81.68018941019547
Iteration: 15, Func. Count: 170, Neg. LLF: 81.61597069652974
Iteration: 16, Func. Count: 180, Neg. LLF: 81.60847513892432
Iteration: 17, Func. Count: 190, Neg. LLF: 81.6066072360958
Iteration: 18, Func. Count: 200, Neg. LLF: 81.6054282932886
Iteration: 19, Func. Count: 210, Neg. LLF: 81.60012495564042
Iteration: 20, Func. Count: 220, Neg. LLF: 81.59760133832299
Iteration: 21, Func. Count: 230, Neg. LLF: 81.59688386752735
Iteration: 22, Func. Count: 240, Neg. LLF: 81.59683188563585
Iteration: 23, Func. Count: 250, Neg. LLF: 81.59683089383357
Optimization terminated successfully (Exit mode 0)
Current function value: 81.59683089383357
Iterations: 23
Function evaluations: 250
Gradient evaluations: 23
Iteration: 1, Func. Count: 12, Neg. LLF: 144.06839819270277
Iteration: 2, Func. Count: 29, Neg. LLF: 222.0908033863587
Iteration: 3, Func. Count: 41, Neg. LLF: 134.79780529038737
Iteration: 4, Func. Count: 53, Neg. LLF: 167.46085305226148
Iteration: 5, Func. Count: 65, Neg. LLF: 420.7197292344859
Iteration: 6, Func. Count: 77, Neg. LLF: 163.42813918501176
Iteration: 7, Func. Count: 89, Neg. LLF: 86.0850427816486
Iteration: 8, Func. Count: 100, Neg. LLF: 84.38264734173956
Iteration: 9, Func. Count: 112, Neg. LLF: 97.25610620556321
Iteration: 10, Func. Count: 125, Neg. LLF: 82.42668377212264
Iteration: 11, Func. Count: 136, Neg. LLF: 82.20235549780232
Iteration: 12, Func. Count: 147, Neg. LLF: 82.12325568134163
Iteration: 13, Func. Count: 158, Neg. LLF: 82.0350005948527
Iteration: 14, Func. Count: 169, Neg. LLF: 81.93522230673327
Iteration: 15, Func. Count: 180, Neg. LLF: 81.88133181752792
Iteration: 16, Func. Count: 191, Neg. LLF: 82.0734453019135
Iteration: 17, Func. Count: 203, Neg. LLF: 82.53516483560487
Iteration: 18, Func. Count: 215, Neg. LLF: 82.47470089732654
Iteration: 19, Func. Count: 227, Neg. LLF: 81.87438609776214
Iteration: 20, Func. Count: 239, Neg. LLF: 81.8588714573841
Iteration: 21, Func. Count: 251, Neg. LLF: 81.83216825909176
Iteration: 22, Func. Count: 262, Neg. LLF: 81.8209566892531
Iteration: 23, Func. Count: 273, Neg. LLF: 81.7959383198445
Iteration: 24, Func. Count: 284, Neg. LLF: 81.74753866583704
Iteration: 25, Func. Count: 295, Neg. LLF: 81.96478203309361
Iteration: 26, Func. Count: 307, Neg. LLF: 81.90721083585119
Iteration: 27, Func. Count: 319, Neg. LLF: 81.64324085047562
Iteration: 28, Func. Count: 330, Neg. LLF: 81.67445235216475
Iteration: 29, Func. Count: 342, Neg. LLF: 81.613747930907
Iteration: 30, Func. Count: 353, Neg. LLF: 81.60226532005998
Iteration: 31, Func. Count: 364, Neg. LLF: 81.6006132612948
Iteration: 32, Func. Count: 375, Neg. LLF: 81.59818199228313
Iteration: 33, Func. Count: 386, Neg. LLF: 81.59734756353566
Iteration: 34, Func. Count: 397, Neg. LLF: 81.59687310103075
Iteration: 35, Func. Count: 408, Neg. LLF: 81.59683247172498
Iteration: 36, Func. Count: 419, Neg. LLF: 81.59683091442903
Iteration: 37, Func. Count: 429, Neg. LLF: 81.59683093866187
Optimization terminated successfully (Exit mode 0)
Current function value: 81.59683091442903
Iterations: 37
Function evaluations: 429
Gradient evaluations: 37
Iteration: 1, Func. Count: 13, Neg. LLF: 145.4037140595647
Iteration: 2, Func. Count: 31, Neg. LLF: 620.6039628776849
Iteration: 3, Func. Count: 44, Neg. LLF: 1532.8075677316626
Iteration: 4, Func. Count: 57, Neg. LLF: 1376.8673297943594
Iteration: 5, Func. Count: 70, Neg. LLF: 923.8398691023491
Iteration: 6, Func. Count: 83, Neg. LLF: 117.74060266419261
Iteration: 7, Func. Count: 96, Neg. LLF: 114.84260357425
Iteration: 8, Func. Count: 109, Neg. LLF: 98.9293546166684
Iteration: 9, Func. Count: 122, Neg. LLF: 84.20325357131708
Iteration: 10, Func. Count: 134, Neg. LLF: 81.83633247221661
Iteration: 11, Func. Count: 146, Neg. LLF: 89.42388497447584
Iteration: 12, Func. Count: 161, Neg. LLF: 81.84326745647517
Iteration: 13, Func. Count: 174, Neg. LLF: 81.62209797132209
Iteration: 14, Func. Count: 186, Neg. LLF: 81.60045336177393
Iteration: 15, Func. Count: 198, Neg. LLF: 81.59809549087254
Iteration: 16, Func. Count: 210, Neg. LLF: 81.59699531828701
Iteration: 17, Func. Count: 222, Neg. LLF: 81.5968348063902
Iteration: 18, Func. Count: 234, Neg. LLF: 81.59683140740975
Iteration: 19, Func. Count: 245, Neg. LLF: 81.59683151999684
Optimization terminated successfully (Exit mode 0)
Current function value: 81.59683140740975
Iterations: 19
Function evaluations: 245
Gradient evaluations: 19
Iteration: 1, Func. Count: 10, Neg. LLF: 153.78457237507237
Iteration: 2, Func. Count: 22, Neg. LLF: 636512420.4401913
Iteration: 3, Func. Count: 32, Neg. LLF: 6732305.765976771
Iteration: 4, Func. Count: 42, Neg. LLF: 6108693.339033434
Iteration: 5, Func. Count: 52, Neg. LLF: 1165440.5409334623
Iteration: 6, Func. Count: 62, Neg. LLF: 1999865.6140321137
Iteration: 7, Func. Count: 72, Neg. LLF: 6317441.051137392
Iteration: 8, Func. Count: 82, Neg. LLF: 3128.8007524580053
Iteration: 9, Func. Count: 92, Neg. LLF: 6675348.236522932
Iteration: 10, Func. Count: 102, Neg. LLF: 83.55885298438142
Iteration: 11, Func. Count: 111, Neg. LLF: 83.64745265642249
Iteration: 12, Func. Count: 121, Neg. LLF: 3052636.5019716057
Iteration: 13, Func. Count: 131, Neg. LLF: 93.18199496748494
Iteration: 14, Func. Count: 141, Neg. LLF: 81.14095520021394
Iteration: 15, Func. Count: 150, Neg. LLF: 81.08883264521671
Iteration: 16, Func. Count: 159, Neg. LLF: 80.99095520255653
Iteration: 17, Func. Count: 168, Neg. LLF: 81.16603181167068
Iteration: 18, Func. Count: 178, Neg. LLF: 80.95653279072863
Iteration: 19, Func. Count: 187, Neg. LLF: 80.95471814745106
Iteration: 20, Func. Count: 196, Neg. LLF: 80.95437910825133
Iteration: 21, Func. Count: 205, Neg. LLF: 80.95435722221808
Iteration: 22, Func. Count: 214, Neg. LLF: 80.9543559768239
Iteration: 23, Func. Count: 222, Neg. LLF: 80.95435597681163
Optimization terminated successfully (Exit mode 0)
Current function value: 80.9543559768239
Iterations: 23
Function evaluations: 222
Gradient evaluations: 23
Iteration: 1, Func. Count: 11, Neg. LLF: 138.33752951641557
Iteration: 2, Func. Count: 26, Neg. LLF: 247.56171807855168
Iteration: 3, Func. Count: 37, Neg. LLF: 84.70333172250051
Iteration: 4, Func. Count: 47, Neg. LLF: 117.91534995018066
Iteration: 5, Func. Count: 58, Neg. LLF: 186.97669147644902
Iteration: 6, Func. Count: 71, Neg. LLF: 81.53496885841025
Iteration: 7, Func. Count: 82, Neg. LLF: 81.30176428305407
Iteration: 8, Func. Count: 93, Neg. LLF: 81.17821404654173
Iteration: 9, Func. Count: 103, Neg. LLF: 81.3780445756998
Iteration: 10, Func. Count: 114, Neg. LLF: 81.84524300915405
Iteration: 11, Func. Count: 125, Neg. LLF: 81.56705035645265
Iteration: 12, Func. Count: 136, Neg. LLF: 81.03540823000021
Iteration: 13, Func. Count: 147, Neg. LLF: 80.99052143926978
Iteration: 14, Func. Count: 157, Neg. LLF: 80.98865136049882
Iteration: 15, Func. Count: 167, Neg. LLF: 80.98172114537122
Iteration: 16, Func. Count: 177, Neg. LLF: 80.96768538191041
Iteration: 17, Func. Count: 187, Neg. LLF: 80.95954255673354
Iteration: 18, Func. Count: 197, Neg. LLF: 80.95529733737558
Iteration: 19, Func. Count: 207, Neg. LLF: 80.95436911805542
Iteration: 20, Func. Count: 217, Neg. LLF: 80.95435612151478
Iteration: 21, Func. Count: 226, Neg. LLF: 80.954356163682
Optimization terminated successfully (Exit mode 0)
Current function value: 80.95435612151478
Iterations: 21
Function evaluations: 226
Gradient evaluations: 21
Iteration: 1, Func. Count: 12, Neg. LLF: 141.58676156512394
Iteration: 2, Func. Count: 28, Neg. LLF: 111.76894507117596
Iteration: 3, Func. Count: 40, Neg. LLF: 158.26643034140733
Iteration: 4, Func. Count: 52, Neg. LLF: 93.71075949249624
Iteration: 5, Func. Count: 64, Neg. LLF: 85.28599609205682
Iteration: 6, Func. Count: 76, Neg. LLF: 81.60593457599553
Iteration: 7, Func. Count: 87, Neg. LLF: 82.05340157453811
Iteration: 8, Func. Count: 99, Neg. LLF: 82.21034907338532
Iteration: 9, Func. Count: 111, Neg. LLF: 81.85362829524925
Iteration: 10, Func. Count: 123, Neg. LLF: 88.28177831886957
Iteration: 11, Func. Count: 135, Neg. LLF: 81.82774284609036
Iteration: 12, Func. Count: 147, Neg. LLF: 81.50098892119718
Iteration: 13, Func. Count: 159, Neg. LLF: 81.00118408670393
Iteration: 14, Func. Count: 171, Neg. LLF: 80.95507502207356
Iteration: 15, Func. Count: 182, Neg. LLF: 80.95440758737688
Iteration: 16, Func. Count: 193, Neg. LLF: 80.95439552852932
Iteration: 17, Func. Count: 204, Neg. LLF: 80.95439391527967
Iteration: 18, Func. Count: 215, Neg. LLF: 80.9543875440382
Iteration: 19, Func. Count: 226, Neg. LLF: 80.95437755149906
Iteration: 20, Func. Count: 237, Neg. LLF: 80.95436458494774
Iteration: 21, Func. Count: 248, Neg. LLF: 80.95435754486769
Iteration: 22, Func. Count: 259, Neg. LLF: 80.95435606922004
Iteration: 23, Func. Count: 269, Neg. LLF: 80.95435614705603
Optimization terminated successfully (Exit mode 0)
Current function value: 80.95435606922004
Iterations: 23
Function evaluations: 269
Gradient evaluations: 23
Iteration: 1, Func. Count: 13, Neg. LLF: 143.71997504248597
Iteration: 2, Func. Count: 31, Neg. LLF: 249.34723173445866
Iteration: 3, Func. Count: 44, Neg. LLF: 188.2322064570448
Iteration: 4, Func. Count: 57, Neg. LLF: 90.90713209631119
Iteration: 5, Func. Count: 69, Neg. LLF: 132.6986089794376
Iteration: 6, Func. Count: 83, Neg. LLF: 190.24694050188106
Iteration: 7, Func. Count: 98, Neg. LLF: 92.22967385665257
Iteration: 8, Func. Count: 111, Neg. LLF: 82.26526772971226
Iteration: 9, Func. Count: 123, Neg. LLF: 112.99311692351877
Iteration: 10, Func. Count: 138, Neg. LLF: 81.34629331408216
Iteration: 11, Func. Count: 150, Neg. LLF: 81.2036553857819
Iteration: 12, Func. Count: 162, Neg. LLF: 81.07212854709427
Iteration: 13, Func. Count: 174, Neg. LLF: 81.0445646730034
Iteration: 14, Func. Count: 186, Neg. LLF: 81.00892578956498
Iteration: 15, Func. Count: 198, Neg. LLF: 80.98694303793998
Iteration: 16, Func. Count: 210, Neg. LLF: 80.97508169718981
Iteration: 17, Func. Count: 222, Neg. LLF: 80.96334908086165
Iteration: 18, Func. Count: 234, Neg. LLF: 80.962205272421
Iteration: 19, Func. Count: 246, Neg. LLF: 80.9616208489678
Iteration: 20, Func. Count: 258, Neg. LLF: 80.95816898987333
Iteration: 21, Func. Count: 270, Neg. LLF: 80.95527454971082
Iteration: 22, Func. Count: 282, Neg. LLF: 80.95447610334624
Iteration: 23, Func. Count: 294, Neg. LLF: 80.9543592057972
Iteration: 24, Func. Count: 306, Neg. LLF: 80.95435607571807
Iteration: 25, Func. Count: 317, Neg. LLF: 80.954356115848
Optimization terminated successfully (Exit mode 0)
Current function value: 80.95435607571807
Iterations: 25
Function evaluations: 317
Gradient evaluations: 25
Iteration: 1, Func. Count: 14, Neg. LLF: 145.4030358189424
Iteration: 2, Func. Count: 33, Neg. LLF: 380.3086343262888
Iteration: 3, Func. Count: 47, Neg. LLF: 600.7669919134461
Iteration: 4, Func. Count: 61, Neg. LLF: 638.803362878372
Iteration: 5, Func. Count: 75, Neg. LLF: 6673527.092825285
Iteration: 6, Func. Count: 89, Neg. LLF: 229.04566142923323
Iteration: 7, Func. Count: 103, Neg. LLF: 88.49969162882971
Iteration: 8, Func. Count: 117, Neg. LLF: 359.4874347791398
Iteration: 9, Func. Count: 132, Neg. LLF: 83.01876292779806
Iteration: 10, Func. Count: 145, Neg. LLF: 85.37003475779852
Iteration: 11, Func. Count: 159, Neg. LLF: 84.79131613941648
Iteration: 12, Func. Count: 173, Neg. LLF: 81.75862665150365
Iteration: 13, Func. Count: 186, Neg. LLF: 81.5806400608656
Iteration: 14, Func. Count: 199, Neg. LLF: 81.45156661839593
Iteration: 15, Func. Count: 212, Neg. LLF: 81.31195888539358
Iteration: 16, Func. Count: 225, Neg. LLF: 81.03642455029144
Iteration: 17, Func. Count: 238, Neg. LLF: 80.98167564361837
Iteration: 18, Func. Count: 251, Neg. LLF: 80.96067453642026
Iteration: 19, Func. Count: 264, Neg. LLF: 80.95514372910309
Iteration: 20, Func. Count: 277, Neg. LLF: 80.95439140956557
Iteration: 21, Func. Count: 290, Neg. LLF: 80.95435864121164
Iteration: 22, Func. Count: 303, Neg. LLF: 80.95435619158283
Iteration: 23, Func. Count: 315, Neg. LLF: 80.9543562998501
Optimization terminated successfully (Exit mode 0)
Current function value: 80.95435619158283
Iterations: 23
Function evaluations: 315
Gradient evaluations: 23
Iteration: 1, Func. Count: 11, Neg. LLF: 153.70619237790228
Iteration: 2, Func. Count: 24, Neg. LLF: 637902506.3847632
Iteration: 3, Func. Count: 35, Neg. LLF: 6732953.276677446
Iteration: 4, Func. Count: 46, Neg. LLF: 6101203.920595772
Iteration: 5, Func. Count: 57, Neg. LLF: 4470641.575467188
Iteration: 6, Func. Count: 68, Neg. LLF: 2001569.4587776852
Iteration: 7, Func. Count: 79, Neg. LLF: 6317706.138932523
Iteration: 8, Func. Count: 90, Neg. LLF: 1880.3422316160802
Iteration: 9, Func. Count: 101, Neg. LLF: 6679790.907399954
Iteration: 10, Func. Count: 112, Neg. LLF: 83.67680720036834
Iteration: 11, Func. Count: 122, Neg. LLF: 83.85701108443348
Iteration: 12, Func. Count: 133, Neg. LLF: 1875308.4631714053
Iteration: 13, Func. Count: 144, Neg. LLF: 84.55431878029862
Iteration: 14, Func. Count: 155, Neg. LLF: 81.1856887354308
Iteration: 15, Func. Count: 165, Neg. LLF: 81.06197790882379
Iteration: 16, Func. Count: 175, Neg. LLF: 80.9860080228274
Iteration: 17, Func. Count: 185, Neg. LLF: 81.32571283121914
Iteration: 18, Func. Count: 196, Neg. LLF: 80.96322005976405
Iteration: 19, Func. Count: 206, Neg. LLF: 80.95522026917669
Iteration: 20, Func. Count: 216, Neg. LLF: 80.9544162710119
Iteration: 21, Func. Count: 226, Neg. LLF: 80.95435670858923
Iteration: 22, Func. Count: 236, Neg. LLF: 80.95435598269994
Optimization terminated successfully (Exit mode 0)
Current function value: 80.95435598269994
Iterations: 22
Function evaluations: 236
Gradient evaluations: 22
Iteration: 1, Func. Count: 12, Neg. LLF: 138.18351952579988
Iteration: 2, Func. Count: 28, Neg. LLF: 259.102845228817
Iteration: 3, Func. Count: 40, Neg. LLF: 84.56368835499555
Iteration: 4, Func. Count: 51, Neg. LLF: 118.27004349209207
Iteration: 5, Func. Count: 63, Neg. LLF: 187.04659390576504
Iteration: 6, Func. Count: 77, Neg. LLF: 81.5463647771926
Iteration: 7, Func. Count: 88, Neg. LLF: 81.42883689752455
Iteration: 8, Func. Count: 100, Neg. LLF: 81.23557156267053
Iteration: 9, Func. Count: 112, Neg. LLF: 81.14692057530817
Iteration: 10, Func. Count: 123, Neg. LLF: 80.99495798706506
Iteration: 11, Func. Count: 134, Neg. LLF: 80.99726538157758
Iteration: 12, Func. Count: 146, Neg. LLF: 80.99082642295205
Iteration: 13, Func. Count: 157, Neg. LLF: 80.98675090866702
Iteration: 14, Func. Count: 168, Neg. LLF: 80.97834010468902
Iteration: 15, Func. Count: 179, Neg. LLF: 80.9650743556381
Iteration: 16, Func. Count: 190, Neg. LLF: 80.95685423169306
Iteration: 17, Func. Count: 201, Neg. LLF: 80.95457260625452
Iteration: 18, Func. Count: 212, Neg. LLF: 80.95435655377234
Iteration: 19, Func. Count: 223, Neg. LLF: 80.95435597759449
Optimization terminated successfully (Exit mode 0)
Current function value: 80.95435597759449
Iterations: 19
Function evaluations: 223
Gradient evaluations: 19
Iteration: 1, Func. Count: 13, Neg. LLF: 141.46706297674407
Iteration: 2, Func. Count: 30, Neg. LLF: 112.06011179683853
Iteration: 3, Func. Count: 43, Neg. LLF: 157.2746559090889
Iteration: 4, Func. Count: 56, Neg. LLF: 92.69127334801398
Iteration: 5, Func. Count: 69, Neg. LLF: 85.31673016242651
Iteration: 6, Func. Count: 82, Neg. LLF: 81.70138062873973
Iteration: 7, Func. Count: 94, Neg. LLF: 82.29824939186759
Iteration: 8, Func. Count: 107, Neg. LLF: 82.9774426807068
Iteration: 9, Func. Count: 120, Neg. LLF: 81.9582640413829
Iteration: 10, Func. Count: 133, Neg. LLF: 81.94859891301311
Iteration: 11, Func. Count: 146, Neg. LLF: 81.84131958182007
Iteration: 12, Func. Count: 159, Neg. LLF: 82.17737200619696
Iteration: 13, Func. Count: 172, Neg. LLF: 81.09929473776032
Iteration: 14, Func. Count: 185, Neg. LLF: 80.9555247467149
Iteration: 15, Func. Count: 197, Neg. LLF: 80.95454165238877
Iteration: 16, Func. Count: 209, Neg. LLF: 80.9544686299518
Iteration: 17, Func. Count: 221, Neg. LLF: 80.95446260036303
Iteration: 18, Func. Count: 233, Neg. LLF: 80.95445522011069
Iteration: 19, Func. Count: 245, Neg. LLF: 80.9544310904823
Iteration: 20, Func. Count: 257, Neg. LLF: 80.95440134100869
Iteration: 21, Func. Count: 269, Neg. LLF: 80.95437011051126
Iteration: 22, Func. Count: 281, Neg. LLF: 80.95435787069707
Iteration: 23, Func. Count: 293, Neg. LLF: 80.95435604310512
Iteration: 24, Func. Count: 304, Neg. LLF: 80.9543561209766
Optimization terminated successfully (Exit mode 0)
Current function value: 80.95435604310512
Iterations: 24
Function evaluations: 304
Gradient evaluations: 24
Iteration: 1, Func. Count: 14, Neg. LLF: 143.7935842987357
Iteration: 2, Func. Count: 33, Neg. LLF: 242.97841802049047
Iteration: 3, Func. Count: 47, Neg. LLF: 184.3855181135551
Iteration: 4, Func. Count: 61, Neg. LLF: 90.72760481635072
Iteration: 5, Func. Count: 74, Neg. LLF: 131.87665281917018
Iteration: 6, Func. Count: 89, Neg. LLF: 187.29504598234882
Iteration: 7, Func. Count: 105, Neg. LLF: 92.3805957838993
Iteration: 8, Func. Count: 119, Neg. LLF: 82.2315813812561
Iteration: 9, Func. Count: 132, Neg. LLF: 96.79719508231844
Iteration: 10, Func. Count: 148, Neg. LLF: 81.53427483765161
Iteration: 11, Func. Count: 161, Neg. LLF: 81.21152546344881
Iteration: 12, Func. Count: 174, Neg. LLF: 81.11906345266043
Iteration: 13, Func. Count: 187, Neg. LLF: 81.0573835706866
Iteration: 14, Func. Count: 200, Neg. LLF: 81.0313167250764
Iteration: 15, Func. Count: 213, Neg. LLF: 80.99853706431193
Iteration: 16, Func. Count: 226, Neg. LLF: 80.98038140267718
Iteration: 17, Func. Count: 239, Neg. LLF: 80.96654991695777
Iteration: 18, Func. Count: 252, Neg. LLF: 80.96063503059224
Iteration: 19, Func. Count: 265, Neg. LLF: 80.96005347367688
Iteration: 20, Func. Count: 278, Neg. LLF: 80.95954632835392
Iteration: 21, Func. Count: 291, Neg. LLF: 80.95725472691129
Iteration: 22, Func. Count: 304, Neg. LLF: 80.95556026942536
Iteration: 23, Func. Count: 317, Neg. LLF: 80.95453351108165
Iteration: 24, Func. Count: 330, Neg. LLF: 80.95436458838167
Iteration: 25, Func. Count: 343, Neg. LLF: 80.95435630020803
Iteration: 26, Func. Count: 355, Neg. LLF: 80.95435634037361
Optimization terminated successfully (Exit mode 0)
Current function value: 80.95435630020803
Iterations: 26
Function evaluations: 355
Gradient evaluations: 26
Iteration: 1, Func. Count: 15, Neg. LLF: 145.49798685699903
Iteration: 2, Func. Count: 35, Neg. LLF: 387.17687542766976
Iteration: 3, Func. Count: 50, Neg. LLF: 631.894025135979
Iteration: 4, Func. Count: 65, Neg. LLF: 674.678685667831
Iteration: 5, Func. Count: 80, Neg. LLF: 99.84973793005157
Iteration: 6, Func. Count: 95, Neg. LLF: 3398111.6810394786
Iteration: 7, Func. Count: 110, Neg. LLF: 90.01056635346407
Iteration: 8, Func. Count: 124, Neg. LLF: 2271777.762472406
Iteration: 9, Func. Count: 139, Neg. LLF: 160.92926467266412
Iteration: 10, Func. Count: 157, Neg. LLF: 89.28095590571877
Iteration: 11, Func. Count: 172, Neg. LLF: 91.40863677814694
Iteration: 12, Func. Count: 187, Neg. LLF: 84.02424138978765
Iteration: 13, Func. Count: 201, Neg. LLF: 82.57214050063686
Iteration: 14, Func. Count: 215, Neg. LLF: 81.6563743461508
Iteration: 15, Func. Count: 229, Neg. LLF: 81.18379249849949
Iteration: 16, Func. Count: 243, Neg. LLF: 81.1341767544558
Iteration: 17, Func. Count: 257, Neg. LLF: 81.1169806916533
Iteration: 18, Func. Count: 271, Neg. LLF: 81.09412036299732
Iteration: 19, Func. Count: 285, Neg. LLF: 81.08721086099048
Iteration: 20, Func. Count: 299, Neg. LLF: 81.07445920903761
Iteration: 21, Func. Count: 313, Neg. LLF: 81.05132458609789
Iteration: 22, Func. Count: 327, Neg. LLF: 80.98680225881313
Iteration: 23, Func. Count: 341, Neg. LLF: 80.97098730669259
Iteration: 24, Func. Count: 355, Neg. LLF: 80.95826601710642
Iteration: 25, Func. Count: 369, Neg. LLF: 80.95619828847303
Iteration: 26, Func. Count: 383, Neg. LLF: 80.95603290058654
Iteration: 27, Func. Count: 397, Neg. LLF: 80.95569686573415
Iteration: 28, Func. Count: 411, Neg. LLF: 80.95505158110237
Iteration: 29, Func. Count: 425, Neg. LLF: 80.95457740930819
Iteration: 30, Func. Count: 439, Neg. LLF: 80.95438277272771
Iteration: 31, Func. Count: 453, Neg. LLF: 80.95435702754729
Iteration: 32, Func. Count: 467, Neg. LLF: 80.95435599579461
Iteration: 33, Func. Count: 480, Neg. LLF: 80.9543561040459
Optimization terminated successfully (Exit mode 0)
Current function value: 80.95435599579461
Iterations: 33
Function evaluations: 480
Gradient evaluations: 33
Iteration: 1, Func. Count: 12, Neg. LLF: 153.7594682037736
Iteration: 2, Func. Count: 26, Neg. LLF: 637339523.4632796
Iteration: 3, Func. Count: 38, Neg. LLF: 6733054.07725661
Iteration: 4, Func. Count: 50, Neg. LLF: 6097192.342842488
Iteration: 5, Func. Count: 62, Neg. LLF: 377921.5678646096
Iteration: 6, Func. Count: 74, Neg. LLF: 2000358.721755535
Iteration: 7, Func. Count: 86, Neg. LLF: 6317713.493950812
Iteration: 8, Func. Count: 98, Neg. LLF: 816849.7905469311
Iteration: 9, Func. Count: 110, Neg. LLF: 6667949.916725565
Iteration: 10, Func. Count: 122, Neg. LLF: 84.08909795352922
Iteration: 11, Func. Count: 133, Neg. LLF: 84.64601468873627
Iteration: 12, Func. Count: 145, Neg. LLF: 81.85606582266685
Iteration: 13, Func. Count: 156, Neg. LLF: 111.87379575951783
Iteration: 14, Func. Count: 170, Neg. LLF: 83.12528771097278
Iteration: 15, Func. Count: 182, Neg. LLF: 81.00371507577351
Iteration: 16, Func. Count: 193, Neg. LLF: 80.98137586659082
Iteration: 17, Func. Count: 204, Neg. LLF: 80.97258806612327
Iteration: 18, Func. Count: 215, Neg. LLF: 80.96558884813037
Iteration: 19, Func. Count: 226, Neg. LLF: 80.95660730624779
Iteration: 20, Func. Count: 237, Neg. LLF: 80.95451732540796
Iteration: 21, Func. Count: 248, Neg. LLF: 80.95435733292724
Iteration: 22, Func. Count: 259, Neg. LLF: 80.95435600979232
Iteration: 23, Func. Count: 269, Neg. LLF: 80.95435668613098
Optimization terminated successfully (Exit mode 0)
Current function value: 80.95435600979232
Iterations: 23
Function evaluations: 269
Gradient evaluations: 23
Iteration: 1, Func. Count: 13, Neg. LLF: 137.97291066228115
Iteration: 2, Func. Count: 30, Neg. LLF: 304.61621614131104
Iteration: 3, Func. Count: 43, Neg. LLF: 84.58112706483173
Iteration: 4, Func. Count: 55, Neg. LLF: 118.07754639637277
Iteration: 5, Func. Count: 68, Neg. LLF: 186.22073318195203
Iteration: 6, Func. Count: 83, Neg. LLF: 81.56658817193771
Iteration: 7, Func. Count: 96, Neg. LLF: 81.28109475145163
Iteration: 8, Func. Count: 109, Neg. LLF: 81.16937324979894
Iteration: 9, Func. Count: 121, Neg. LLF: 81.98209406694548
Iteration: 10, Func. Count: 134, Neg. LLF: 81.87033308380029
Iteration: 11, Func. Count: 147, Neg. LLF: 81.8351485201099
Iteration: 12, Func. Count: 160, Neg. LLF: 81.71581362098803
Iteration: 13, Func. Count: 173, Neg. LLF: 81.04796312358123
Iteration: 14, Func. Count: 186, Neg. LLF: 80.98806254301468
Iteration: 15, Func. Count: 198, Neg. LLF: 80.98594262033657
Iteration: 16, Func. Count: 210, Neg. LLF: 80.98278805047471
Iteration: 17, Func. Count: 222, Neg. LLF: 80.97170631690379
Iteration: 18, Func. Count: 234, Neg. LLF: 80.96295954039779
Iteration: 19, Func. Count: 246, Neg. LLF: 80.95717339143913
Iteration: 20, Func. Count: 258, Neg. LLF: 80.95451395344017
Iteration: 21, Func. Count: 270, Neg. LLF: 80.95436029737034
Iteration: 22, Func. Count: 282, Neg. LLF: 80.95435600735938
Iteration: 23, Func. Count: 293, Neg. LLF: 80.95435604955603
Optimization terminated successfully (Exit mode 0)
Current function value: 80.95435600735938
Iterations: 23
Function evaluations: 293
Gradient evaluations: 23
Iteration: 1, Func. Count: 14, Neg. LLF: 141.3983601949637
Iteration: 2, Func. Count: 32, Neg. LLF: 111.71981826293057
Iteration: 3, Func. Count: 46, Neg. LLF: 153.49184205223543
Iteration: 4, Func. Count: 60, Neg. LLF: 93.78120644616111
Iteration: 5, Func. Count: 74, Neg. LLF: 85.2812457439218
Iteration: 6, Func. Count: 88, Neg. LLF: 81.78609363641208
Iteration: 7, Func. Count: 101, Neg. LLF: 82.55283874529913
Iteration: 8, Func. Count: 115, Neg. LLF: 82.2018944793338
Iteration: 9, Func. Count: 129, Neg. LLF: 81.94086580941273
Iteration: 10, Func. Count: 143, Neg. LLF: 81.86295598940902
Iteration: 11, Func. Count: 157, Neg. LLF: 81.82526525136193
Iteration: 12, Func. Count: 171, Neg. LLF: 81.10546611299117
Iteration: 13, Func. Count: 185, Neg. LLF: 81.80963018230504
Iteration: 14, Func. Count: 199, Neg. LLF: 80.9566862773269
Iteration: 15, Func. Count: 212, Neg. LLF: 80.95476963207938
Iteration: 16, Func. Count: 225, Neg. LLF: 80.95453486839207
Iteration: 17, Func. Count: 238, Neg. LLF: 80.95451836764417
Iteration: 18, Func. Count: 251, Neg. LLF: 80.95451001136628
Iteration: 19, Func. Count: 264, Neg. LLF: 80.95448203385214
Iteration: 20, Func. Count: 277, Neg. LLF: 80.95444451094262
Iteration: 21, Func. Count: 290, Neg. LLF: 80.95439264942213
Iteration: 22, Func. Count: 303, Neg. LLF: 80.95436325147993
Iteration: 23, Func. Count: 316, Neg. LLF: 80.95435639052869
Iteration: 24, Func. Count: 328, Neg. LLF: 80.95435646842245
Optimization terminated successfully (Exit mode 0)
Current function value: 80.95435639052869
Iterations: 24
Function evaluations: 328
Gradient evaluations: 24
Iteration: 1, Func. Count: 15, Neg. LLF: 143.7240550816298
Iteration: 2, Func. Count: 35, Neg. LLF: 240.75272828671308
Iteration: 3, Func. Count: 50, Neg. LLF: 181.40489012235457
Iteration: 4, Func. Count: 65, Neg. LLF: 90.74463898304145
Iteration: 5, Func. Count: 79, Neg. LLF: 131.27286195717397
Iteration: 6, Func. Count: 95, Neg. LLF: 186.29810803159617
Iteration: 7, Func. Count: 112, Neg. LLF: 93.53664613955569
Iteration: 8, Func. Count: 127, Neg. LLF: 81.95456901486735
Iteration: 9, Func. Count: 141, Neg. LLF: 82.94250139244008
Iteration: 10, Func. Count: 156, Neg. LLF: 81.45306176569545
Iteration: 11, Func. Count: 170, Neg. LLF: 81.27215188248795
Iteration: 12, Func. Count: 184, Neg. LLF: 81.38630451435975
Iteration: 13, Func. Count: 199, Neg. LLF: 81.17193582398318
Iteration: 14, Func. Count: 213, Neg. LLF: 81.10712883571328
Iteration: 15, Func. Count: 227, Neg. LLF: 81.04883511494995
Iteration: 16, Func. Count: 241, Neg. LLF: 81.0274725274283
Iteration: 17, Func. Count: 255, Neg. LLF: 81.01906597249871
Iteration: 18, Func. Count: 269, Neg. LLF: 81.01449395418474
Iteration: 19, Func. Count: 283, Neg. LLF: 81.00571249292923
Iteration: 20, Func. Count: 297, Neg. LLF: 80.97277406516847
Iteration: 21, Func. Count: 311, Neg. LLF: 80.95572519700414
Iteration: 22, Func. Count: 325, Neg. LLF: 80.95443428012832
Iteration: 23, Func. Count: 339, Neg. LLF: 80.95435774238281
Iteration: 24, Func. Count: 353, Neg. LLF: 80.9543562884884
Iteration: 25, Func. Count: 366, Neg. LLF: 80.95435632856478
Optimization terminated successfully (Exit mode 0)
Current function value: 80.9543562884884
Iterations: 25
Function evaluations: 366
Gradient evaluations: 25
Iteration: 1, Func. Count: 16, Neg. LLF: 145.51568866984115
Iteration: 2, Func. Count: 37, Neg. LLF: 380.8688128624607
Iteration: 3, Func. Count: 53, Neg. LLF: 636.8752581146379
Iteration: 4, Func. Count: 69, Neg. LLF: 680.1777377545873
Iteration: 5, Func. Count: 85, Neg. LLF: 92.3827829192224
Iteration: 6, Func. Count: 100, Neg. LLF: 93.24900981350633
Iteration: 7, Func. Count: 116, Neg. LLF: 97.82449393596727
Iteration: 8, Func. Count: 132, Neg. LLF: 132.56753189576892
Iteration: 9, Func. Count: 148, Neg. LLF: 91.01877088886296
Iteration: 10, Func. Count: 163, Neg. LLF: 91.17529562033454
Iteration: 11, Func. Count: 179, Neg. LLF: 90.83083437738337
Iteration: 12, Func. Count: 195, Neg. LLF: 90.52182951708548
Iteration: 13, Func. Count: 210, Neg. LLF: 89.42176438412213
Iteration: 14, Func. Count: 225, Neg. LLF: 87.81267775271904
Iteration: 15, Func. Count: 240, Neg. LLF: 99.00250393669249
Iteration: 16, Func. Count: 256, Neg. LLF: 93.39648583771364
Iteration: 17, Func. Count: 272, Neg. LLF: 85.01626628120385
Iteration: 18, Func. Count: 287, Neg. LLF: 82.84864107428491
Iteration: 19, Func. Count: 302, Neg. LLF: 82.34950758138373
Iteration: 20, Func. Count: 317, Neg. LLF: 81.25418271849445
Iteration: 21, Func. Count: 332, Neg. LLF: 81.19813334559454
Iteration: 22, Func. Count: 347, Neg. LLF: 81.13516700291913
Iteration: 23, Func. Count: 362, Neg. LLF: 81.12832194862062
Iteration: 24, Func. Count: 377, Neg. LLF: 81.08348168970237
Iteration: 25, Func. Count: 392, Neg. LLF: 81.49529897589855
Iteration: 26, Func. Count: 408, Neg. LLF: 81.23651512881645
Iteration: 27, Func. Count: 424, Neg. LLF: 81.08329555692775
Iteration: 28, Func. Count: 440, Neg. LLF: 81.01631203226783
Iteration: 29, Func. Count: 455, Neg. LLF: 80.99629286713362
Iteration: 30, Func. Count: 470, Neg. LLF: 80.97687736369711
Iteration: 31, Func. Count: 485, Neg. LLF: 80.9631597658965
Iteration: 32, Func. Count: 500, Neg. LLF: 80.95739305497521
Iteration: 33, Func. Count: 515, Neg. LLF: 80.95497152038482
Iteration: 34, Func. Count: 530, Neg. LLF: 80.95454091677851
Iteration: 35, Func. Count: 545, Neg. LLF: 80.95446982535097
Iteration: 36, Func. Count: 560, Neg. LLF: 80.95440151252929
Iteration: 37, Func. Count: 575, Neg. LLF: 80.95436759187007
Iteration: 38, Func. Count: 590, Neg. LLF: 80.95435677957677
Iteration: 39, Func. Count: 605, Neg. LLF: 80.95435600742464
Optimization terminated successfully (Exit mode 0)
Current function value: 80.95435600742464
Iterations: 39
Function evaluations: 605
Gradient evaluations: 39
Iteration: 1, Func. Count: 7, Neg. LLF: 576894.3981355882
Iteration: 2, Func. Count: 14, Neg. LLF: 13315911.45340064
Iteration: 3, Func. Count: 21, Neg. LLF: 918.0502493648639
Iteration: 4, Func. Count: 28, Neg. LLF: 11159328.347768126
Iteration: 5, Func. Count: 35, Neg. LLF: 88.65393331072296
Iteration: 6, Func. Count: 42, Neg. LLF: 154.38698939052514
Iteration: 7, Func. Count: 49, Neg. LLF: 83.93124027361578
Iteration: 8, Func. Count: 56, Neg. LLF: 81.72977528562761
Iteration: 9, Func. Count: 62, Neg. LLF: 81.73190315784022
Iteration: 10, Func. Count: 69, Neg. LLF: 81.7187380943883
Iteration: 11, Func. Count: 75, Neg. LLF: 81.7182663667647
Iteration: 12, Func. Count: 80, Neg. LLF: 81.71826636682442
Optimization terminated successfully (Exit mode 0)
Current function value: 81.7182663667647
Iterations: 12
Function evaluations: 80
Gradient evaluations: 12
Iteration: 1, Func. Count: 5, Neg. LLF: 125.06588748864752
Iteration: 2, Func. Count: 12, Neg. LLF: 101.50324817461403
Iteration: 3, Func. Count: 17, Neg. LLF: 101.12788826289896
Iteration: 4, Func. Count: 21, Neg. LLF: 101.12624336648759
Iteration: 5, Func. Count: 25, Neg. LLF: 101.126167881295
Iteration: 6, Func. Count: 28, Neg. LLF: 101.12616808711536
Optimization terminated successfully (Exit mode 0)
Current function value: 101.126167881295
Iterations: 6
Function evaluations: 28
Gradient evaluations: 6
Iteration: 1, Func. Count: 6, Neg. LLF: 181.6746307039358
Iteration: 2, Func. Count: 15, Neg. LLF: 102.88728365052317
Iteration: 3, Func. Count: 21, Neg. LLF: 98.85371241658757
Iteration: 4, Func. Count: 26, Neg. LLF: 107.96327556145623
Iteration: 5, Func. Count: 32, Neg. LLF: 98.64763842556223
Iteration: 6, Func. Count: 37, Neg. LLF: 98.61628485848144
Iteration: 7, Func. Count: 42, Neg. LLF: 98.59016532455313
Iteration: 8, Func. Count: 47, Neg. LLF: 98.59007082003448
Iteration: 9, Func. Count: 52, Neg. LLF: 98.59007008279538
Optimization terminated successfully (Exit mode 0)
Current function value: 98.59007008279538
Iterations: 9
Function evaluations: 52
Gradient evaluations: 9
Iteration: 1, Func. Count: 7, Neg. LLF: 174.89454497537403
Iteration: 2, Func. Count: 17, Neg. LLF: 105.54593292312876
Iteration: 3, Func. Count: 24, Neg. LLF: 98.57639310598994
Iteration: 4, Func. Count: 30, Neg. LLF: 98.56041260855099
Iteration: 5, Func. Count: 36, Neg. LLF: 98.52518436757957
Iteration: 6, Func. Count: 42, Neg. LLF: 98.52243317388962
Iteration: 7, Func. Count: 48, Neg. LLF: 98.5223707319723
Iteration: 8, Func. Count: 53, Neg. LLF: 98.5223709294068
Optimization terminated successfully (Exit mode 0)
Current function value: 98.5223707319723
Iterations: 8
Function evaluations: 53
Gradient evaluations: 8
Iteration: 1, Func. Count: 8, Neg. LLF: 173.35148514118634
Iteration: 2, Func. Count: 20, Neg. LLF: 107.3419800695222
Iteration: 3, Func. Count: 28, Neg. LLF: 98.72242321132177
Iteration: 4, Func. Count: 35, Neg. LLF: 98.84663259528028
Iteration: 5, Func. Count: 43, Neg. LLF: 98.68422644517747
Iteration: 6, Func. Count: 50, Neg. LLF: 98.68331399430053
Iteration: 7, Func. Count: 58, Neg. LLF: 98.6783357159751
Iteration: 8, Func. Count: 65, Neg. LLF: 98.6782342572838
Iteration: 9, Func. Count: 71, Neg. LLF: 98.67823412318052
Optimization terminated successfully (Exit mode 0)
Current function value: 98.6782342572838
Iterations: 9
Function evaluations: 71
Gradient evaluations: 9
Iteration: 1, Func. Count: 9, Neg. LLF: 172.27364209149766
Iteration: 2, Func. Count: 22, Neg. LLF: 108.53414119990335
Iteration: 3, Func. Count: 31, Neg. LLF: 98.72118486176743
Iteration: 4, Func. Count: 39, Neg. LLF: 98.70358241298602
Iteration: 5, Func. Count: 47, Neg. LLF: 98.70194002016414
Iteration: 6, Func. Count: 55, Neg. LLF: 98.7010195489652
Iteration: 7, Func. Count: 63, Neg. LLF: 98.70100651094367
Iteration: 8, Func. Count: 70, Neg. LLF: 98.70100640669588
Optimization terminated successfully (Exit mode 0)
Current function value: 98.70100651094367
Iterations: 8
Function evaluations: 70
Gradient evaluations: 8
Iteration: 1, Func. Count: 6, Neg. LLF: 125.00325287994252
Iteration: 2, Func. Count: 14, Neg. LLF: 101.96850008480628
Iteration: 3, Func. Count: 20, Neg. LLF: 101.20755401381614
Iteration: 4, Func. Count: 25, Neg. LLF: 101.13503085098122
Iteration: 5, Func. Count: 30, Neg. LLF: 101.12642084558814
Iteration: 6, Func. Count: 35, Neg. LLF: 101.12616833595689
Iteration: 7, Func. Count: 40, Neg. LLF: 101.12616766192035
Optimization terminated successfully (Exit mode 0)
Current function value: 101.12616766192035
Iterations: 7
Function evaluations: 40
Gradient evaluations: 7
Iteration: 1, Func. Count: 7, Neg. LLF: 181.18163923578072
Iteration: 2, Func. Count: 17, Neg. LLF: 102.91978681606852
Iteration: 3, Func. Count: 24, Neg. LLF: 98.852971368516
Iteration: 4, Func. Count: 30, Neg. LLF: 108.92462701048811
Iteration: 5, Func. Count: 37, Neg. LLF: 98.6428146741659
Iteration: 6, Func. Count: 43, Neg. LLF: 98.6147665524484
Iteration: 7, Func. Count: 49, Neg. LLF: 98.59010772659033
Iteration: 8, Func. Count: 55, Neg. LLF: 98.59007158146937
Iteration: 9, Func. Count: 61, Neg. LLF: 98.59007008279418
Iteration: 10, Func. Count: 66, Neg. LLF: 98.59007045460437
Optimization terminated successfully (Exit mode 0)
Current function value: 98.59007008279418
Iterations: 10
Function evaluations: 66
Gradient evaluations: 10
Iteration: 1, Func. Count: 8, Neg. LLF: 174.79433607656046
Iteration: 2, Func. Count: 19, Neg. LLF: 105.66567029368348
Iteration: 3, Func. Count: 27, Neg. LLF: 98.5706575312064
Iteration: 4, Func. Count: 34, Neg. LLF: 98.54723067130607
Iteration: 5, Func. Count: 41, Neg. LLF: 98.52259150787148
Iteration: 6, Func. Count: 48, Neg. LLF: 98.5223722635084
Iteration: 7, Func. Count: 55, Neg. LLF: 98.52237037727284
Iteration: 8, Func. Count: 61, Neg. LLF: 98.52237057435707
Optimization terminated successfully (Exit mode 0)
Current function value: 98.52237037727284
Iterations: 8
Function evaluations: 61
Gradient evaluations: 8
Iteration: 1, Func. Count: 9, Neg. LLF: 171.9533090840813
Iteration: 2, Func. Count: 22, Neg. LLF: 107.64583911328408
Iteration: 3, Func. Count: 31, Neg. LLF: 98.71634602675255
Iteration: 4, Func. Count: 39, Neg. LLF: 98.84140346634835
Iteration: 5, Func. Count: 48, Neg. LLF: 98.68147412612427
Iteration: 6, Func. Count: 56, Neg. LLF: 98.68154286089433
Iteration: 7, Func. Count: 65, Neg. LLF: 98.67825877020707
Iteration: 8, Func. Count: 73, Neg. LLF: 98.67823551527462
Iteration: 9, Func. Count: 81, Neg. LLF: 98.67823454060236
Optimization terminated successfully (Exit mode 0)
Current function value: 98.67823454060236
Iterations: 9
Function evaluations: 81
Gradient evaluations: 9
Iteration: 1, Func. Count: 10, Neg. LLF: 173.0501512151679
Iteration: 2, Func. Count: 24, Neg. LLF: 108.73363693009604
Iteration: 3, Func. Count: 34, Neg. LLF: 98.7197023560931
Iteration: 4, Func. Count: 43, Neg. LLF: 98.70811613911934
Iteration: 5, Func. Count: 52, Neg. LLF: 98.70296968073647
Iteration: 6, Func. Count: 61, Neg. LLF: 98.70124316238564
Iteration: 7, Func. Count: 70, Neg. LLF: 98.70101111447129
Iteration: 8, Func. Count: 79, Neg. LLF: 98.701006365748
Iteration: 9, Func. Count: 87, Neg. LLF: 98.7010062614854
Optimization terminated successfully (Exit mode 0)
Current function value: 98.701006365748
Iterations: 9
Function evaluations: 87
Gradient evaluations: 9
Iteration: 1, Func. Count: 7, Neg. LLF: 125.02594772771113
Iteration: 2, Func. Count: 16, Neg. LLF: 101.70711346953557
Iteration: 3, Func. Count: 23, Neg. LLF: 101.16886559079671
Iteration: 4, Func. Count: 29, Neg. LLF: 101.13116685643774
Iteration: 5, Func. Count: 35, Neg. LLF: 101.12624022703505
Iteration: 6, Func. Count: 41, Neg. LLF: 101.1261677894686
Iteration: 7, Func. Count: 46, Neg. LLF: 101.12616800358327
Optimization terminated successfully (Exit mode 0)
Current function value: 101.1261677894686
Iterations: 7
Function evaluations: 46
Gradient evaluations: 7
Iteration: 1, Func. Count: 8, Neg. LLF: 180.8610894502965
Iteration: 2, Func. Count: 19, Neg. LLF: 102.8310971857113
Iteration: 3, Func. Count: 27, Neg. LLF: 98.85794584123529
Iteration: 4, Func. Count: 34, Neg. LLF: 110.14983063927706
Iteration: 5, Func. Count: 42, Neg. LLF: 98.64050531803224
Iteration: 6, Func. Count: 49, Neg. LLF: 98.61374301027334
Iteration: 7, Func. Count: 56, Neg. LLF: 98.59009385801772
Iteration: 8, Func. Count: 63, Neg. LLF: 98.59007009391827
Iteration: 9, Func. Count: 69, Neg. LLF: 98.59007046599173
Optimization terminated successfully (Exit mode 0)
Current function value: 98.59007009391827
Iterations: 9
Function evaluations: 69
Gradient evaluations: 9
Iteration: 1, Func. Count: 9, Neg. LLF: 174.40638499687006
Iteration: 2, Func. Count: 21, Neg. LLF: 105.61359190116467
Iteration: 3, Func. Count: 30, Neg. LLF: 98.56821613196637
Iteration: 4, Func. Count: 38, Neg. LLF: 98.54427409055118
Iteration: 5, Func. Count: 46, Neg. LLF: 98.52237657118926
Iteration: 6, Func. Count: 54, Neg. LLF: 98.52237041381409
Iteration: 7, Func. Count: 61, Neg. LLF: 98.52237061120378
Optimization terminated successfully (Exit mode 0)
Current function value: 98.52237041381409
Iterations: 7
Function evaluations: 61
Gradient evaluations: 7
Iteration: 1, Func. Count: 10, Neg. LLF: 172.4710128025924
Iteration: 2, Func. Count: 24, Neg. LLF: 107.49404230274719
Iteration: 3, Func. Count: 34, Neg. LLF: 98.72384698247795
Iteration: 4, Func. Count: 43, Neg. LLF: 98.72229561135572
Iteration: 5, Func. Count: 53, Neg. LLF: 98.67887903472885
Iteration: 6, Func. Count: 62, Neg. LLF: 98.67847715663612
Iteration: 7, Func. Count: 71, Neg. LLF: 98.67826638041237
Iteration: 8, Func. Count: 80, Neg. LLF: 98.67823528192126
Iteration: 9, Func. Count: 89, Neg. LLF: 98.67823419014013
Iteration: 10, Func. Count: 97, Neg. LLF: 98.67823405576044
Optimization terminated successfully (Exit mode 0)
Current function value: 98.67823419014013
Iterations: 10
Function evaluations: 97
Gradient evaluations: 10
Iteration: 1, Func. Count: 11, Neg. LLF: 173.92782233647011
Iteration: 2, Func. Count: 26, Neg. LLF: 108.70239858590895
Iteration: 3, Func. Count: 37, Neg. LLF: 98.71937602906787
Iteration: 4, Func. Count: 47, Neg. LLF: 98.70492486719503
Iteration: 5, Func. Count: 57, Neg. LLF: 98.70324227503785
Iteration: 6, Func. Count: 67, Neg. LLF: 98.70122034443774
Iteration: 7, Func. Count: 77, Neg. LLF: 98.70102404049885
Iteration: 8, Func. Count: 87, Neg. LLF: 98.70100652025353
Iteration: 9, Func. Count: 96, Neg. LLF: 98.70100641606547
Optimization terminated successfully (Exit mode 0)
Current function value: 98.70100652025353
Iterations: 9
Function evaluations: 96
Gradient evaluations: 9
Iteration: 1, Func. Count: 8, Neg. LLF: 124.99910235387141
Iteration: 2, Func. Count: 18, Neg. LLF: 101.3589497413129
Iteration: 3, Func. Count: 25, Neg. LLF: 102.40116763387523
Iteration: 4, Func. Count: 33, Neg. LLF: 101.12736587439332
Iteration: 5, Func. Count: 40, Neg. LLF: 101.12618120731753
Iteration: 6, Func. Count: 47, Neg. LLF: 101.12616790275526
Iteration: 7, Func. Count: 53, Neg. LLF: 101.12616808690599
Optimization terminated successfully (Exit mode 0)
Current function value: 101.12616790275526
Iterations: 7
Function evaluations: 53
Gradient evaluations: 7
Iteration: 1, Func. Count: 9, Neg. LLF: 180.39751332334927
Iteration: 2, Func. Count: 21, Neg. LLF: 102.84082501664372
Iteration: 3, Func. Count: 30, Neg. LLF: 98.86076205441731
Iteration: 4, Func. Count: 38, Neg. LLF: 111.40394517466557
Iteration: 5, Func. Count: 47, Neg. LLF: 98.6367673205485
Iteration: 6, Func. Count: 55, Neg. LLF: 98.6121723668658
Iteration: 7, Func. Count: 63, Neg. LLF: 98.59041264897328
Iteration: 8, Func. Count: 71, Neg. LLF: 98.59007348913889
Iteration: 9, Func. Count: 79, Neg. LLF: 98.59007011899529
Iteration: 10, Func. Count: 86, Neg. LLF: 98.59007049032742
Optimization terminated successfully (Exit mode 0)
Current function value: 98.59007011899529
Iterations: 10
Function evaluations: 86
Gradient evaluations: 10
Iteration: 1, Func. Count: 10, Neg. LLF: 174.62128357854058
Iteration: 2, Func. Count: 23, Neg. LLF: 105.50103008053468
Iteration: 3, Func. Count: 33, Neg. LLF: 98.56960691132619
Iteration: 4, Func. Count: 42, Neg. LLF: 98.53995534659379
Iteration: 5, Func. Count: 51, Neg. LLF: 98.524705196926
Iteration: 6, Func. Count: 60, Neg. LLF: 98.52238240559386
Iteration: 7, Func. Count: 69, Neg. LLF: 98.52237040193111
Iteration: 8, Func. Count: 77, Neg. LLF: 98.52237059892782
Optimization terminated successfully (Exit mode 0)
Current function value: 98.52237040193111
Iterations: 8
Function evaluations: 77
Gradient evaluations: 8
Iteration: 1, Func. Count: 11, Neg. LLF: 172.7030538457443
Iteration: 2, Func. Count: 25, Neg. LLF: 107.19984024082156
Iteration: 3, Func. Count: 36, Neg. LLF: 98.74691401809896
Iteration: 4, Func. Count: 46, Neg. LLF: 98.67536421411556
Iteration: 5, Func. Count: 56, Neg. LLF: 98.67436525935467
Iteration: 6, Func. Count: 67, Neg. LLF: 98.66422514821329
Iteration: 7, Func. Count: 77, Neg. LLF: 98.61695404590816
Iteration: 8, Func. Count: 87, Neg. LLF: 98.61649909120166
Iteration: 9, Func. Count: 97, Neg. LLF: 98.61642483995631
Iteration: 10, Func. Count: 107, Neg. LLF: 98.61630877466568
Iteration: 11, Func. Count: 117, Neg. LLF: 98.61599663293974
Iteration: 12, Func. Count: 127, Neg. LLF: 98.61461044786992
Iteration: 13, Func. Count: 137, Neg. LLF: 98.61353585091985
Iteration: 14, Func. Count: 147, Neg. LLF: 98.60529529666836
Iteration: 15, Func. Count: 157, Neg. LLF: 98.59439867165091
Iteration: 16, Func. Count: 167, Neg. LLF: 98.59004043946015
Iteration: 17, Func. Count: 177, Neg. LLF: 98.59001717370202
Iteration: 18, Func. Count: 188, Neg. LLF: 98.5900468251593
Iteration: 19, Func. Count: 208, Neg. LLF: 98.59006124278159
Iteration: 20, Func. Count: 218, Neg. LLF: 98.59003533638426
Optimization terminated successfully (Exit mode 0)
Current function value: 98.5900612252505
Iterations: 20
Function evaluations: 228
Gradient evaluations: 20
Iteration: 1, Func. Count: 12, Neg. LLF: 174.22556332167696
Iteration: 2, Func. Count: 28, Neg. LLF: 108.57614315819406
Iteration: 3, Func. Count: 40, Neg. LLF: 98.71877964133122
Iteration: 4, Func. Count: 51, Neg. LLF: 98.70427155156288
Iteration: 5, Func. Count: 62, Neg. LLF: 98.70314909322332
Iteration: 6, Func. Count: 74, Neg. LLF: 98.70101252725145
Iteration: 7, Func. Count: 85, Neg. LLF: 98.7010063864642
Iteration: 8, Func. Count: 95, Neg. LLF: 98.70100628222846
Optimization terminated successfully (Exit mode 0)
Current function value: 98.7010063864642
Iterations: 8
Function evaluations: 95
Gradient evaluations: 8
Iteration: 1, Func. Count: 5, Neg. LLF: 120.63914522799422
Iteration: 2, Func. Count: 11, Neg. LLF: 138.6967408518858
Iteration: 3, Func. Count: 16, Neg. LLF: 1064.9991209987056
Iteration: 4, Func. Count: 21, Neg. LLF: 648.1246917799651
Iteration: 5, Func. Count: 26, Neg. LLF: 15431.708317299697
Iteration: 6, Func. Count: 31, Neg. LLF: 101.36333104072054
Iteration: 7, Func. Count: 36, Neg. LLF: 91.67943541526945
Iteration: 8, Func. Count: 40, Neg. LLF: 90.95054645947648
Iteration: 9, Func. Count: 44, Neg. LLF: 90.81635729531766
Iteration: 10, Func. Count: 48, Neg. LLF: 90.75013981529754
Iteration: 11, Func. Count: 52, Neg. LLF: 90.74311855161734
Iteration: 12, Func. Count: 56, Neg. LLF: 90.74296394635365
Iteration: 13, Func. Count: 60, Neg. LLF: 90.74296325611571
Optimization terminated successfully (Exit mode 0)
Current function value: 90.74296325611571
Iterations: 13
Function evaluations: 60
Gradient evaluations: 13
Iteration: 1, Func. Count: 6, Neg. LLF: 102859.01051332166
Iteration: 2, Func. Count: 12, Neg. LLF: 228458.14012510705
Iteration: 3, Func. Count: 18, Neg. LLF: 1181.257729174571
Iteration: 4, Func. Count: 24, Neg. LLF: 92.43698614351727
Iteration: 5, Func. Count: 29, Neg. LLF: 137.22784780467217
Iteration: 6, Func. Count: 35, Neg. LLF: 122.86882249877944
Iteration: 7, Func. Count: 41, Neg. LLF: 91.28163461780227
Iteration: 8, Func. Count: 47, Neg. LLF: 90.53881343304018
Iteration: 9, Func. Count: 52, Neg. LLF: 90.4980773266459
Iteration: 10, Func. Count: 57, Neg. LLF: 90.49591267402458
Iteration: 11, Func. Count: 62, Neg. LLF: 90.49531516074096
Iteration: 12, Func. Count: 67, Neg. LLF: 90.49379537486264
Iteration: 13, Func. Count: 72, Neg. LLF: 90.49354563289873
Iteration: 14, Func. Count: 77, Neg. LLF: 90.49351778634957
Iteration: 15, Func. Count: 81, Neg. LLF: 90.49351775510465
Optimization terminated successfully (Exit mode 0)
Current function value: 90.49351778634957
Iterations: 15
Function evaluations: 81
Gradient evaluations: 15
Iteration: 1, Func. Count: 7, Neg. LLF: 191.25421285546525
Iteration: 2, Func. Count: 14, Neg. LLF: 266994.1597038477
Iteration: 3, Func. Count: 21, Neg. LLF: 906.6445491071527
Iteration: 4, Func. Count: 28, Neg. LLF: 1366.4868754780741
Iteration: 5, Func. Count: 35, Neg. LLF: 92.94029706401005
Iteration: 6, Func. Count: 41, Neg. LLF: 288.41709408424765
Iteration: 7, Func. Count: 48, Neg. LLF: 75874124.25415468
Iteration: 8, Func. Count: 55, Neg. LLF: 128.34441860025677
Iteration: 9, Func. Count: 63, Neg. LLF: 90.59843341686233
Iteration: 10, Func. Count: 69, Neg. LLF: 90.50188572055937
Iteration: 11, Func. Count: 75, Neg. LLF: 90.49390706702715
Iteration: 12, Func. Count: 81, Neg. LLF: 90.49358085982595
Iteration: 13, Func. Count: 87, Neg. LLF: 90.49355963622946
Iteration: 14, Func. Count: 93, Neg. LLF: 90.49351760726502
Iteration: 15, Func. Count: 98, Neg. LLF: 90.49351781920015
Optimization terminated successfully (Exit mode 0)
Current function value: 90.49351760726502
Iterations: 15
Function evaluations: 98
Gradient evaluations: 15
Iteration: 1, Func. Count: 8, Neg. LLF: 156.0411044528756
Iteration: 2, Func. Count: 16, Neg. LLF: 1750.2037738138106
Iteration: 3, Func. Count: 24, Neg. LLF: 371.3045046304463
Iteration: 4, Func. Count: 32, Neg. LLF: 498.0683589189626
Iteration: 5, Func. Count: 40, Neg. LLF: 92.85525613239538
Iteration: 6, Func. Count: 47, Neg. LLF: 219.9161000276727
Iteration: 7, Func. Count: 55, Neg. LLF: 108.00195163597375
Iteration: 8, Func. Count: 64, Neg. LLF: 91.93256098229612
Iteration: 9, Func. Count: 72, Neg. LLF: 90.53167356130461
Iteration: 10, Func. Count: 79, Neg. LLF: 90.50002694240722
Iteration: 11, Func. Count: 86, Neg. LLF: 90.49473149805434
Iteration: 12, Func. Count: 93, Neg. LLF: 90.49362265434867
Iteration: 13, Func. Count: 100, Neg. LLF: 90.49352353516609
Iteration: 14, Func. Count: 107, Neg. LLF: 90.49351754544507
Iteration: 15, Func. Count: 113, Neg. LLF: 90.49351775266052
Optimization terminated successfully (Exit mode 0)
Current function value: 90.49351754544507
Iterations: 15
Function evaluations: 113
Gradient evaluations: 15
Iteration: 1, Func. Count: 9, Neg. LLF: 192.35810780587582
Iteration: 2, Func. Count: 18, Neg. LLF: 2455.348739691652
Iteration: 3, Func. Count: 27, Neg. LLF: 781.8909805967497
Iteration: 4, Func. Count: 36, Neg. LLF: 9013.698831316116
Iteration: 5, Func. Count: 45, Neg. LLF: 92.8790722629258
Iteration: 6, Func. Count: 53, Neg. LLF: 470.66871071183556
Iteration: 7, Func. Count: 62, Neg. LLF: 132.88759415258028
Iteration: 8, Func. Count: 72, Neg. LLF: 148.75805425378684
Iteration: 9, Func. Count: 82, Neg. LLF: 92.51212555939163
Iteration: 10, Func. Count: 91, Neg. LLF: 90.33896028674617
Iteration: 11, Func. Count: 99, Neg. LLF: 90.2657109454053
Iteration: 12, Func. Count: 107, Neg. LLF: 90.25565902421745
Iteration: 13, Func. Count: 115, Neg. LLF: 90.2518328915416
Iteration: 14, Func. Count: 123, Neg. LLF: 90.24831162783534
Iteration: 15, Func. Count: 131, Neg. LLF: 90.24807672529762
Iteration: 16, Func. Count: 139, Neg. LLF: 90.2480491146037
Iteration: 17, Func. Count: 146, Neg. LLF: 90.24804908201261
Optimization terminated successfully (Exit mode 0)
Current function value: 90.2480491146037
Iterations: 17
Function evaluations: 146
Gradient evaluations: 17
Iteration: 1, Func. Count: 6, Neg. LLF: 119.54563467895858
Iteration: 2, Func. Count: 13, Neg. LLF: 138.9213715200712
Iteration: 3, Func. Count: 19, Neg. LLF: 9431616.141696291
Iteration: 4, Func. Count: 25, Neg. LLF: 5744806.726075333
Iteration: 5, Func. Count: 31, Neg. LLF: 103.00181605580114
Iteration: 6, Func. Count: 37, Neg. LLF: 90.51298459177588
Iteration: 7, Func. Count: 42, Neg. LLF: 89.67565180202759
Iteration: 8, Func. Count: 47, Neg. LLF: 89.52797773645332
Iteration: 9, Func. Count: 52, Neg. LLF: 89.51971055823088
Iteration: 10, Func. Count: 57, Neg. LLF: 89.51918630799005
Iteration: 11, Func. Count: 62, Neg. LLF: 89.51912009616991
Iteration: 12, Func. Count: 66, Neg. LLF: 89.51912041881926
Optimization terminated successfully (Exit mode 0)
Current function value: 89.51912009616991
Iterations: 12
Function evaluations: 66
Gradient evaluations: 12
Iteration: 1, Func. Count: 7, Neg. LLF: 1378328.1177610524
Iteration: 2, Func. Count: 14, Neg. LLF: 12778590.496870432
Iteration: 3, Func. Count: 21, Neg. LLF: 172.73155985492718
Iteration: 4, Func. Count: 28, Neg. LLF: 9090159.35565199
Iteration: 5, Func. Count: 35, Neg. LLF: 93.12431440482838
Iteration: 6, Func. Count: 42, Neg. LLF: 89.89718293332214
Iteration: 7, Func. Count: 48, Neg. LLF: 88.9911552241903
Iteration: 8, Func. Count: 54, Neg. LLF: 89.10087264209773
Iteration: 9, Func. Count: 61, Neg. LLF: 88.89055777018989
Iteration: 10, Func. Count: 67, Neg. LLF: 88.88835401679242
Iteration: 11, Func. Count: 73, Neg. LLF: 88.88833842889045
Iteration: 12, Func. Count: 79, Neg. LLF: 88.88833581430575
Iteration: 13, Func. Count: 84, Neg. LLF: 88.8883358143077
Optimization terminated successfully (Exit mode 0)
Current function value: 88.88833581430575
Iterations: 13
Function evaluations: 84
Gradient evaluations: 13
Iteration: 1, Func. Count: 8, Neg. LLF: 172.852353274567
Iteration: 2, Func. Count: 16, Neg. LLF: 12019736.487931302
Iteration: 3, Func. Count: 24, Neg. LLF: 203.71253091954685
Iteration: 4, Func. Count: 32, Neg. LLF: 9082405.300443456
Iteration: 5, Func. Count: 40, Neg. LLF: 104.66149969462748
Iteration: 6, Func. Count: 48, Neg. LLF: 89.4970380085984
Iteration: 7, Func. Count: 55, Neg. LLF: 94.3657304790213
Iteration: 8, Func. Count: 63, Neg. LLF: 88.9996890445667
Iteration: 9, Func. Count: 70, Neg. LLF: 88.88895574680848
Iteration: 10, Func. Count: 77, Neg. LLF: 88.88837955351899
Iteration: 11, Func. Count: 84, Neg. LLF: 88.88837816899553
Iteration: 12, Func. Count: 92, Neg. LLF: 88.88833581753029
Iteration: 13, Func. Count: 98, Neg. LLF: 88.888335903892
Optimization terminated successfully (Exit mode 0)
Current function value: 88.88833581753029
Iterations: 13
Function evaluations: 98
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 147.89944523315523
Iteration: 2, Func. Count: 18, Neg. LLF: 11809973.16144791
Iteration: 3, Func. Count: 27, Neg. LLF: 143.80592946991405
Iteration: 4, Func. Count: 36, Neg. LLF: 10077890.854143523
Iteration: 5, Func. Count: 45, Neg. LLF: 113.97490215709058
Iteration: 6, Func. Count: 54, Neg. LLF: 89.48676331065212
Iteration: 7, Func. Count: 62, Neg. LLF: 121.99058484781422
Iteration: 8, Func. Count: 71, Neg. LLF: 89.03885844140231
Iteration: 9, Func. Count: 79, Neg. LLF: 88.89096773853635
Iteration: 10, Func. Count: 87, Neg. LLF: 88.89003611464966
Iteration: 11, Func. Count: 95, Neg. LLF: 88.88834345783684
Iteration: 12, Func. Count: 103, Neg. LLF: 88.88833584447252
Iteration: 13, Func. Count: 110, Neg. LLF: 88.88833593165492
Optimization terminated successfully (Exit mode 0)
Current function value: 88.88833584447252
Iterations: 13
Function evaluations: 110
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 176.73274282461614
Iteration: 2, Func. Count: 20, Neg. LLF: 11366870.264388
Iteration: 3, Func. Count: 30, Neg. LLF: 200.73525952116344
Iteration: 4, Func. Count: 40, Neg. LLF: 9082617.477814704
Iteration: 5, Func. Count: 50, Neg. LLF: 179.75792478499258
Iteration: 6, Func. Count: 60, Neg. LLF: 109.68747260349973
Iteration: 7, Func. Count: 70, Neg. LLF: 89.52587186011849
Iteration: 8, Func. Count: 79, Neg. LLF: 89.13061309581776
Iteration: 9, Func. Count: 88, Neg. LLF: 89.05715681180207
Iteration: 10, Func. Count: 98, Neg. LLF: 88.90457435757708
Iteration: 11, Func. Count: 107, Neg. LLF: 88.88848616769404
Iteration: 12, Func. Count: 116, Neg. LLF: 88.88834832627938
Iteration: 13, Func. Count: 125, Neg. LLF: 88.88833581534732
Iteration: 14, Func. Count: 133, Neg. LLF: 88.88833591633868
Optimization terminated successfully (Exit mode 0)
Current function value: 88.88833581534732
Iterations: 14
Function evaluations: 133
Gradient evaluations: 14
Iteration: 1, Func. Count: 7, Neg. LLF: 117.43623066661885
Iteration: 2, Func. Count: 15, Neg. LLF: 142.48279999311185
Iteration: 3, Func. Count: 22, Neg. LLF: 9425416.14387266
Iteration: 4, Func. Count: 29, Neg. LLF: 3508898.8094408745
Iteration: 5, Func. Count: 36, Neg. LLF: 5780403.279301549
Iteration: 6, Func. Count: 43, Neg. LLF: 91.95910092188377
Iteration: 7, Func. Count: 50, Neg. LLF: 89.53189068231443
Iteration: 8, Func. Count: 56, Neg. LLF: 89.78363794489863
Iteration: 9, Func. Count: 63, Neg. LLF: 89.4702780955301
Iteration: 10, Func. Count: 69, Neg. LLF: 89.4662547730513
Iteration: 11, Func. Count: 75, Neg. LLF: 89.46611917152238
Iteration: 12, Func. Count: 81, Neg. LLF: 89.46607525518263
Iteration: 13, Func. Count: 87, Neg. LLF: 89.46606681446735
Iteration: 14, Func. Count: 92, Neg. LLF: 89.46606681430706
Optimization terminated successfully (Exit mode 0)
Current function value: 89.46606681446735
Iterations: 14
Function evaluations: 92
Gradient evaluations: 14
Iteration: 1, Func. Count: 8, Neg. LLF: 1385298.4217839153
Iteration: 2, Func. Count: 16, Neg. LLF: 12741222.47902216
Iteration: 3, Func. Count: 24, Neg. LLF: 172.46617127312325
Iteration: 4, Func. Count: 32, Neg. LLF: 9088878.115891548
Iteration: 5, Func. Count: 40, Neg. LLF: 92.67087832474691
Iteration: 6, Func. Count: 48, Neg. LLF: 89.91567161163306
Iteration: 7, Func. Count: 55, Neg. LLF: 89.02330066324174
Iteration: 8, Func. Count: 62, Neg. LLF: 89.28180690729077
Iteration: 9, Func. Count: 71, Neg. LLF: 250.2128562479856
Iteration: 10, Func. Count: 79, Neg. LLF: 88.88070425079886
Iteration: 11, Func. Count: 86, Neg. LLF: 88.87871454955585
Iteration: 12, Func. Count: 93, Neg. LLF: 88.87830259048856
Iteration: 13, Func. Count: 100, Neg. LLF: 88.87827492282906
Iteration: 14, Func. Count: 107, Neg. LLF: 88.8782745097636
Optimization terminated successfully (Exit mode 0)
Current function value: 88.8782745097636
Iterations: 14
Function evaluations: 107
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 168.51690729716177
Iteration: 2, Func. Count: 18, Neg. LLF: 12044588.882418988
Iteration: 3, Func. Count: 27, Neg. LLF: 207.27583747882323
Iteration: 4, Func. Count: 36, Neg. LLF: 9147388.436308771
Iteration: 5, Func. Count: 45, Neg. LLF: 101.83834980277601
Iteration: 6, Func. Count: 54, Neg. LLF: 89.83232865513769
Iteration: 7, Func. Count: 62, Neg. LLF: 89.40323150180136
Iteration: 8, Func. Count: 70, Neg. LLF: 90.24818654742964
Iteration: 9, Func. Count: 80, Neg. LLF: 88.91757406754223
Iteration: 10, Func. Count: 88, Neg. LLF: 88.91561055361194
Iteration: 11, Func. Count: 97, Neg. LLF: 88.87990758168054
Iteration: 12, Func. Count: 105, Neg. LLF: 88.87839377185705
Iteration: 13, Func. Count: 113, Neg. LLF: 88.8782970325914
Iteration: 14, Func. Count: 121, Neg. LLF: 88.87827452447439
Iteration: 15, Func. Count: 128, Neg. LLF: 88.8782746184856
Optimization terminated successfully (Exit mode 0)
Current function value: 88.87827452447439
Iterations: 15
Function evaluations: 128
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 147.7507344566644
Iteration: 2, Func. Count: 20, Neg. LLF: 11814573.503834952
Iteration: 3, Func. Count: 30, Neg. LLF: 130.1732877484402
Iteration: 4, Func. Count: 40, Neg. LLF: 10076887.648283025
Iteration: 5, Func. Count: 50, Neg. LLF: 109.89760073312875
Iteration: 6, Func. Count: 60, Neg. LLF: 89.77508069871413
Iteration: 7, Func. Count: 69, Neg. LLF: 90.67552961796892
Iteration: 8, Func. Count: 79, Neg. LLF: 100.00598010903569
Iteration: 9, Func. Count: 90, Neg. LLF: 89.03164510579039
Iteration: 10, Func. Count: 99, Neg. LLF: 88.87858050586048
Iteration: 11, Func. Count: 108, Neg. LLF: 88.87830351334146
Iteration: 12, Func. Count: 117, Neg. LLF: 88.87830129241978
Iteration: 13, Func. Count: 127, Neg. LLF: 88.87827455459797
Iteration: 14, Func. Count: 135, Neg. LLF: 88.87827464066348
Optimization terminated successfully (Exit mode 0)
Current function value: 88.87827455459797
Iterations: 14
Function evaluations: 135
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 173.99263687837612
Iteration: 2, Func. Count: 22, Neg. LLF: 11405315.41283208
Iteration: 3, Func. Count: 33, Neg. LLF: 200.3060336195284
Iteration: 4, Func. Count: 44, Neg. LLF: 9082459.423045477
Iteration: 5, Func. Count: 55, Neg. LLF: 179.72336483404274
Iteration: 6, Func. Count: 66, Neg. LLF: 100.05623076917293
Iteration: 7, Func. Count: 77, Neg. LLF: 89.60832059891365
Iteration: 8, Func. Count: 87, Neg. LLF: 89.08153655728411
Iteration: 9, Func. Count: 97, Neg. LLF: 89.0196244685707
Iteration: 10, Func. Count: 107, Neg. LLF: 88.98109276079612
Iteration: 11, Func. Count: 118, Neg. LLF: 88.90698879872423
Iteration: 12, Func. Count: 129, Neg. LLF: 88.88153093072881
Iteration: 13, Func. Count: 140, Neg. LLF: 88.87844240671252
Iteration: 14, Func. Count: 151, Neg. LLF: 88.87827485529058
Iteration: 15, Func. Count: 160, Neg. LLF: 88.87827495718207
Optimization terminated successfully (Exit mode 0)
Current function value: 88.87827485529058
Iterations: 15
Function evaluations: 160
Gradient evaluations: 15
Iteration: 1, Func. Count: 8, Neg. LLF: 117.81672334718712
Iteration: 2, Func. Count: 17, Neg. LLF: 142.26532744903977
Iteration: 3, Func. Count: 25, Neg. LLF: 9426720.561218042
Iteration: 4, Func. Count: 33, Neg. LLF: 3523353.1606038013
Iteration: 5, Func. Count: 41, Neg. LLF: 174.54818812352903
Iteration: 6, Func. Count: 49, Neg. LLF: 92.55554905398016
Iteration: 7, Func. Count: 57, Neg. LLF: 89.52511370601079
Iteration: 8, Func. Count: 64, Neg. LLF: 89.68548890005201
Iteration: 9, Func. Count: 72, Neg. LLF: 89.46851514876921
Iteration: 10, Func. Count: 79, Neg. LLF: 89.46611083221873
Iteration: 11, Func. Count: 86, Neg. LLF: 89.46607817496609
Iteration: 12, Func. Count: 93, Neg. LLF: 89.466067064241
Iteration: 13, Func. Count: 99, Neg. LLF: 89.46606748464121
Optimization terminated successfully (Exit mode 0)
Current function value: 89.466067064241
Iterations: 13
Function evaluations: 99
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 715017.5741684707
Iteration: 2, Func. Count: 18, Neg. LLF: 12729645.22978548
Iteration: 3, Func. Count: 27, Neg. LLF: 172.59540524308883
Iteration: 4, Func. Count: 36, Neg. LLF: 9087529.487635925
Iteration: 5, Func. Count: 45, Neg. LLF: 93.35905829429842
Iteration: 6, Func. Count: 54, Neg. LLF: 89.90746716558368
Iteration: 7, Func. Count: 62, Neg. LLF: 88.97586333055814
Iteration: 8, Func. Count: 70, Neg. LLF: 89.71620484625834
Iteration: 9, Func. Count: 80, Neg. LLF: 90.2404847720898
Iteration: 10, Func. Count: 89, Neg. LLF: 88.87989815427132
Iteration: 11, Func. Count: 97, Neg. LLF: 88.87828091043333
Iteration: 12, Func. Count: 105, Neg. LLF: 88.87827470823302
Iteration: 13, Func. Count: 112, Neg. LLF: 88.87827470825691
Optimization terminated successfully (Exit mode 0)
Current function value: 88.87827470823302
Iterations: 13
Function evaluations: 112
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 169.74976007574963
Iteration: 2, Func. Count: 20, Neg. LLF: 12019356.784754211
Iteration: 3, Func. Count: 30, Neg. LLF: 206.4626265792459
Iteration: 4, Func. Count: 40, Neg. LLF: 9096372.98355482
Iteration: 5, Func. Count: 50, Neg. LLF: 102.6522558591871
Iteration: 6, Func. Count: 60, Neg. LLF: 89.7348097251422
Iteration: 7, Func. Count: 69, Neg. LLF: 89.87553057716163
Iteration: 8, Func. Count: 79, Neg. LLF: 95.25803365061533
Iteration: 9, Func. Count: 91, Neg. LLF: 88.96148838292477
Iteration: 10, Func. Count: 100, Neg. LLF: 88.88051076042994
Iteration: 11, Func. Count: 109, Neg. LLF: 88.881436900304
Iteration: 12, Func. Count: 119, Neg. LLF: 88.8782940324135
Iteration: 13, Func. Count: 128, Neg. LLF: 88.8782745062939
Iteration: 14, Func. Count: 136, Neg. LLF: 88.8782746002733
Optimization terminated successfully (Exit mode 0)
Current function value: 88.8782745062939
Iterations: 14
Function evaluations: 136
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 147.03652408493417
Iteration: 2, Func. Count: 22, Neg. LLF: 11820228.096679743
Iteration: 3, Func. Count: 33, Neg. LLF: 113.87525917420237
Iteration: 4, Func. Count: 44, Neg. LLF: 10077039.283775348
Iteration: 5, Func. Count: 55, Neg. LLF: 105.94967310229636
Iteration: 6, Func. Count: 66, Neg. LLF: 89.83922699201601
Iteration: 7, Func. Count: 76, Neg. LLF: 88.99327630267996
Iteration: 8, Func. Count: 86, Neg. LLF: 89.02788211212768
Iteration: 9, Func. Count: 97, Neg. LLF: 88.89722190779159
Iteration: 10, Func. Count: 108, Neg. LLF: 88.88067602563153
Iteration: 11, Func. Count: 119, Neg. LLF: 88.87885900310505
Iteration: 12, Func. Count: 130, Neg. LLF: 88.87827460707977
Iteration: 13, Func. Count: 139, Neg. LLF: 88.87827469315877
Optimization terminated successfully (Exit mode 0)
Current function value: 88.87827460707977
Iterations: 13
Function evaluations: 139
Gradient evaluations: 13
Iteration: 1, Func. Count: 12, Neg. LLF: 171.20271266415347
Iteration: 2, Func. Count: 24, Neg. LLF: 11433798.717271402
Iteration: 3, Func. Count: 36, Neg. LLF: 203.75087684214256
Iteration: 4, Func. Count: 48, Neg. LLF: 9082900.457928315
Iteration: 5, Func. Count: 60, Neg. LLF: 180.10680184350065
Iteration: 6, Func. Count: 72, Neg. LLF: 95.75325746706267
Iteration: 7, Func. Count: 84, Neg. LLF: 89.64286931734173
Iteration: 8, Func. Count: 95, Neg. LLF: 89.10891073795688
Iteration: 9, Func. Count: 106, Neg. LLF: 89.31969964821205
Iteration: 10, Func. Count: 118, Neg. LLF: 88.8919088183514
Iteration: 11, Func. Count: 129, Neg. LLF: 88.9954038978361
Iteration: 12, Func. Count: 141, Neg. LLF: 88.88022153978666
Iteration: 13, Func. Count: 152, Neg. LLF: 88.87828262469873
Iteration: 14, Func. Count: 163, Neg. LLF: 88.87827615735536
Iteration: 15, Func. Count: 174, Neg. LLF: 88.87827450086874
Iteration: 16, Func. Count: 184, Neg. LLF: 88.87827460270148
Optimization terminated successfully (Exit mode 0)
Current function value: 88.87827450086874
Iterations: 16
Function evaluations: 184
Gradient evaluations: 16
Iteration: 1, Func. Count: 9, Neg. LLF: 119.37864392001828
Iteration: 2, Func. Count: 19, Neg. LLF: 139.249711137675
Iteration: 3, Func. Count: 28, Neg. LLF: 9429796.457172314
Iteration: 4, Func. Count: 37, Neg. LLF: 3514912.801872286
Iteration: 5, Func. Count: 46, Neg. LLF: 135.58026246731112
Iteration: 6, Func. Count: 55, Neg. LLF: 93.60003249551329
Iteration: 7, Func. Count: 64, Neg. LLF: 89.53392482352426
Iteration: 8, Func. Count: 72, Neg. LLF: 89.56869883030099
Iteration: 9, Func. Count: 81, Neg. LLF: 89.46613282917345
Iteration: 10, Func. Count: 89, Neg. LLF: 89.46607358175855
Iteration: 11, Func. Count: 97, Neg. LLF: 89.46606826460335
Iteration: 12, Func. Count: 105, Neg. LLF: 89.4660662248943
Iteration: 13, Func. Count: 112, Neg. LLF: 89.46606655926743
Optimization terminated successfully (Exit mode 0)
Current function value: 89.4660662248943
Iterations: 13
Function evaluations: 112
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 721992.6742916735
Iteration: 2, Func. Count: 20, Neg. LLF: 12153544.220516428
Iteration: 3, Func. Count: 30, Neg. LLF: 173.7469002225585
Iteration: 4, Func. Count: 40, Neg. LLF: 9086201.435529444
Iteration: 5, Func. Count: 50, Neg. LLF: 94.35714848688217
Iteration: 6, Func. Count: 60, Neg. LLF: 89.87263628192552
Iteration: 7, Func. Count: 69, Neg. LLF: 88.92399671915567
Iteration: 8, Func. Count: 78, Neg. LLF: 90.25242621317871
Iteration: 9, Func. Count: 90, Neg. LLF: 88.90630114531348
Iteration: 10, Func. Count: 100, Neg. LLF: 88.88086689591256
Iteration: 11, Func. Count: 109, Neg. LLF: 88.87828386834626
Iteration: 12, Func. Count: 118, Neg. LLF: 88.87827510528808
Iteration: 13, Func. Count: 127, Neg. LLF: 88.87827449180865
Optimization terminated successfully (Exit mode 0)
Current function value: 88.87827449180865
Iterations: 13
Function evaluations: 127
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 167.39924106613034
Iteration: 2, Func. Count: 22, Neg. LLF: 11986958.563606467
Iteration: 3, Func. Count: 33, Neg. LLF: 210.4183145374933
Iteration: 4, Func. Count: 44, Neg. LLF: 9440396.856396634
Iteration: 5, Func. Count: 55, Neg. LLF: 102.43591146833704
Iteration: 6, Func. Count: 66, Neg. LLF: 89.75884610960055
Iteration: 7, Func. Count: 76, Neg. LLF: 89.65087312893459
Iteration: 8, Func. Count: 87, Neg. LLF: 94.35289125733374
Iteration: 9, Func. Count: 100, Neg. LLF: 88.96079775573816
Iteration: 10, Func. Count: 110, Neg. LLF: 88.8806298551162
Iteration: 11, Func. Count: 120, Neg. LLF: 88.88090663605074
Iteration: 12, Func. Count: 131, Neg. LLF: 88.87829847764002
Iteration: 13, Func. Count: 141, Neg. LLF: 88.8782745185883
Iteration: 14, Func. Count: 150, Neg. LLF: 88.87827461256408
Optimization terminated successfully (Exit mode 0)
Current function value: 88.8782745185883
Iterations: 14
Function evaluations: 150
Gradient evaluations: 14
Iteration: 1, Func. Count: 12, Neg. LLF: 146.79472984809175
Iteration: 2, Func. Count: 24, Neg. LLF: 11806317.80588686
Iteration: 3, Func. Count: 36, Neg. LLF: 110.59098939111564
Iteration: 4, Func. Count: 48, Neg. LLF: 10077863.87581373
Iteration: 5, Func. Count: 60, Neg. LLF: 96.72840366257323
Iteration: 6, Func. Count: 72, Neg. LLF: 89.72031699924362
Iteration: 7, Func. Count: 83, Neg. LLF: 89.17890983916153
Iteration: 8, Func. Count: 94, Neg. LLF: 90.17679350411034
Iteration: 9, Func. Count: 106, Neg. LLF: 88.89404337875938
Iteration: 10, Func. Count: 117, Neg. LLF: 88.89445316555036
Iteration: 11, Func. Count: 129, Neg. LLF: 88.8838679863726
Iteration: 12, Func. Count: 141, Neg. LLF: 88.87828937912815
Iteration: 13, Func. Count: 152, Neg. LLF: 88.87827473421174
Iteration: 14, Func. Count: 162, Neg. LLF: 88.87827482026037
Optimization terminated successfully (Exit mode 0)
Current function value: 88.87827473421174
Iterations: 14
Function evaluations: 162
Gradient evaluations: 14
Iteration: 1, Func. Count: 13, Neg. LLF: 169.55923661640213
Iteration: 2, Func. Count: 26, Neg. LLF: 11423877.127449222
Iteration: 3, Func. Count: 39, Neg. LLF: 206.41334901935807
Iteration: 4, Func. Count: 52, Neg. LLF: 9105884.546072388
Iteration: 5, Func. Count: 65, Neg. LLF: 180.12025608883653
Iteration: 6, Func. Count: 78, Neg. LLF: 93.91927449110709
Iteration: 7, Func. Count: 91, Neg. LLF: 89.65588112709536
Iteration: 8, Func. Count: 103, Neg. LLF: 89.1740987921472
Iteration: 9, Func. Count: 115, Neg. LLF: 89.40842134829623
Iteration: 10, Func. Count: 128, Neg. LLF: 88.89571497185159
Iteration: 11, Func. Count: 140, Neg. LLF: 89.05437660152873
Iteration: 12, Func. Count: 153, Neg. LLF: 88.88681706148523
Iteration: 13, Func. Count: 166, Neg. LLF: 88.87828771479154
Iteration: 14, Func. Count: 178, Neg. LLF: 88.87827512878583
Iteration: 15, Func. Count: 190, Neg. LLF: 88.87827449766868
Optimization terminated successfully (Exit mode 0)
Current function value: 88.87827449766868
Iterations: 15
Function evaluations: 190
Gradient evaluations: 15
Iteration: 1, Func. Count: 6, Neg. LLF: 142.1822742914156
Iteration: 2, Func. Count: 13, Neg. LLF: 128.09906082741546
Iteration: 3, Func. Count: 19, Neg. LLF: 1212.0760944203819
Iteration: 4, Func. Count: 25, Neg. LLF: 383.35275427988097
Iteration: 5, Func. Count: 31, Neg. LLF: 2814.998821417063
Iteration: 6, Func. Count: 37, Neg. LLF: 3437.538098882627
Iteration: 7, Func. Count: 43, Neg. LLF: 112.7662801843004
Iteration: 8, Func. Count: 49, Neg. LLF: 94.35168126048694
Iteration: 9, Func. Count: 55, Neg. LLF: 91.91907887568293
Iteration: 10, Func. Count: 61, Neg. LLF: 90.64648076050966
Iteration: 11, Func. Count: 66, Neg. LLF: 90.47768614219723
Iteration: 12, Func. Count: 71, Neg. LLF: 90.8573288537131
Iteration: 13, Func. Count: 77, Neg. LLF: 90.46310460428096
Iteration: 14, Func. Count: 82, Neg. LLF: 90.46308416360755
Iteration: 15, Func. Count: 86, Neg. LLF: 90.46308413226447
Optimization terminated successfully (Exit mode 0)
Current function value: 90.46308416360755
Iterations: 15
Function evaluations: 86
Gradient evaluations: 15
Iteration: 1, Func. Count: 7, Neg. LLF: 131.86955689601908
Iteration: 2, Func. Count: 14, Neg. LLF: 103.14255295332133
Iteration: 3, Func. Count: 21, Neg. LLF: 911.2538591119184
Iteration: 4, Func. Count: 28, Neg. LLF: 91.12241255605599
Iteration: 5, Func. Count: 34, Neg. LLF: 91.9397599427
Iteration: 6, Func. Count: 42, Neg. LLF: 117.8777305282019
Iteration: 7, Func. Count: 49, Neg. LLF: 90.49085929886729
Iteration: 8, Func. Count: 55, Neg. LLF: 90.46481510584404
Iteration: 9, Func. Count: 61, Neg. LLF: 90.46460158022661
Iteration: 10, Func. Count: 68, Neg. LLF: 90.46414706229824
Iteration: 11, Func. Count: 75, Neg. LLF: 90.46383056448974
Iteration: 12, Func. Count: 81, Neg. LLF: 90.46355701918493
Iteration: 13, Func. Count: 87, Neg. LLF: 90.46308570416456
Iteration: 14, Func. Count: 93, Neg. LLF: 90.4630841202516
Iteration: 15, Func. Count: 98, Neg. LLF: 90.4630841039376
Optimization terminated successfully (Exit mode 0)
Current function value: 90.4630841202516
Iterations: 15
Function evaluations: 98
Gradient evaluations: 15
Iteration: 1, Func. Count: 8, Neg. LLF: 131.0335721144111
Iteration: 2, Func. Count: 16, Neg. LLF: 96.95931241382713
Iteration: 3, Func. Count: 24, Neg. LLF: 3843.5873710106193
Iteration: 4, Func. Count: 32, Neg. LLF: 90.78524171041728
Iteration: 5, Func. Count: 39, Neg. LLF: 90.50605510752622
Iteration: 6, Func. Count: 47, Neg. LLF: 90.51877218199876
Iteration: 7, Func. Count: 55, Neg. LLF: 90.46567204981396
Iteration: 8, Func. Count: 62, Neg. LLF: 90.46467097709342
Iteration: 9, Func. Count: 69, Neg. LLF: 90.46357684692961
Iteration: 10, Func. Count: 76, Neg. LLF: 90.46313912823489
Iteration: 11, Func. Count: 83, Neg. LLF: 90.46308528312457
Iteration: 12, Func. Count: 90, Neg. LLF: 90.46308413768939
Iteration: 13, Func. Count: 96, Neg. LLF: 90.46308435801001
Optimization terminated successfully (Exit mode 0)
Current function value: 90.46308413768939
Iterations: 13
Function evaluations: 96
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 130.69533555695907
Iteration: 2, Func. Count: 18, Neg. LLF: 100.66000150297975
Iteration: 3, Func. Count: 27, Neg. LLF: 169.57136618697353
Iteration: 4, Func. Count: 36, Neg. LLF: 92.91128858762485
Iteration: 5, Func. Count: 45, Neg. LLF: 93.48924704784892
Iteration: 6, Func. Count: 54, Neg. LLF: 92.53650845080047
Iteration: 7, Func. Count: 63, Neg. LLF: 90.4761008157214
Iteration: 8, Func. Count: 71, Neg. LLF: 90.4644415789194
Iteration: 9, Func. Count: 79, Neg. LLF: 90.46309531472231
Iteration: 10, Func. Count: 87, Neg. LLF: 90.46308458588861
Iteration: 11, Func. Count: 94, Neg. LLF: 90.463084787009
Optimization terminated successfully (Exit mode 0)
Current function value: 90.46308458588861
Iterations: 11
Function evaluations: 94
Gradient evaluations: 11
Iteration: 1, Func. Count: 10, Neg. LLF: 130.50770379007088
Iteration: 2, Func. Count: 20, Neg. LLF: 106.19555765184501
Iteration: 3, Func. Count: 30, Neg. LLF: 2097.8761980354307
Iteration: 4, Func. Count: 40, Neg. LLF: 93.24981885455078
Iteration: 5, Func. Count: 50, Neg. LLF: 91.14441845165888
Iteration: 6, Func. Count: 60, Neg. LLF: 90.94779586470727
Iteration: 7, Func. Count: 70, Neg. LLF: 1528.1414357236895
Iteration: 8, Func. Count: 80, Neg. LLF: 93.49164222136626
Iteration: 9, Func. Count: 90, Neg. LLF: 90.22046501026573
Iteration: 10, Func. Count: 99, Neg. LLF: 90.19848553530275
Iteration: 11, Func. Count: 108, Neg. LLF: 90.19377189972879
Iteration: 12, Func. Count: 117, Neg. LLF: 90.19340700392894
Iteration: 13, Func. Count: 127, Neg. LLF: 90.19257857655334
Iteration: 14, Func. Count: 136, Neg. LLF: 90.19257750174289
Iteration: 15, Func. Count: 144, Neg. LLF: 90.19257746867876
Optimization terminated successfully (Exit mode 0)
Current function value: 90.19257750174289
Iterations: 15
Function evaluations: 144
Gradient evaluations: 15
Iteration: 1, Func. Count: 7, Neg. LLF: 143.90094152202167
Iteration: 2, Func. Count: 15, Neg. LLF: 152.80537314984107
Iteration: 3, Func. Count: 22, Neg. LLF: 9082569.68266224
Iteration: 4, Func. Count: 29, Neg. LLF: 5927330.0728728715
Iteration: 5, Func. Count: 36, Neg. LLF: 155.5463459033668
Iteration: 6, Func. Count: 43, Neg. LLF: 95.24134042358564
Iteration: 7, Func. Count: 50, Neg. LLF: 90.16471483952566
Iteration: 8, Func. Count: 56, Neg. LLF: 90.95023357262184
Iteration: 9, Func. Count: 64, Neg. LLF: 102.90288169133265
Iteration: 10, Func. Count: 71, Neg. LLF: 89.39693263127032
Iteration: 11, Func. Count: 77, Neg. LLF: 89.39234367963874
Iteration: 12, Func. Count: 83, Neg. LLF: 89.38252670287903
Iteration: 13, Func. Count: 89, Neg. LLF: 89.38098123113943
Iteration: 14, Func. Count: 95, Neg. LLF: 89.37585541444346
Iteration: 15, Func. Count: 101, Neg. LLF: 89.37543060044382
Iteration: 16, Func. Count: 107, Neg. LLF: 89.37535725918707
Iteration: 17, Func. Count: 113, Neg. LLF: 89.37535602858972
Iteration: 18, Func. Count: 118, Neg. LLF: 89.37535632601333
Optimization terminated successfully (Exit mode 0)
Current function value: 89.37535602858972
Iterations: 18
Function evaluations: 118
Gradient evaluations: 18
Iteration: 1, Func. Count: 8, Neg. LLF: 127.61388035052366
Iteration: 2, Func. Count: 17, Neg. LLF: 272.4907616881662
Iteration: 3, Func. Count: 25, Neg. LLF: 9083188.193751423
Iteration: 4, Func. Count: 33, Neg. LLF: 919.4360953711476
Iteration: 5, Func. Count: 41, Neg. LLF: 133.82938826573513
Iteration: 6, Func. Count: 49, Neg. LLF: 89.83013600900199
Iteration: 7, Func. Count: 56, Neg. LLF: 90.05450256737963
Iteration: 8, Func. Count: 66, Neg. LLF: 100.0126792426145
Iteration: 9, Func. Count: 74, Neg. LLF: 89.29139466135157
Iteration: 10, Func. Count: 82, Neg. LLF: 88.9736169712362
Iteration: 11, Func. Count: 89, Neg. LLF: 88.88050400693226
Iteration: 12, Func. Count: 96, Neg. LLF: 88.87531627138269
Iteration: 13, Func. Count: 103, Neg. LLF: 88.87550474805478
Iteration: 14, Func. Count: 111, Neg. LLF: 88.87410370041889
Iteration: 15, Func. Count: 118, Neg. LLF: 88.87409947755634
Iteration: 16, Func. Count: 124, Neg. LLF: 88.87409947756842
Optimization terminated successfully (Exit mode 0)
Current function value: 88.87409947755634
Iterations: 16
Function evaluations: 124
Gradient evaluations: 16
Iteration: 1, Func. Count: 9, Neg. LLF: 127.95877815111544
Iteration: 2, Func. Count: 18, Neg. LLF: 123.73952345715095
Iteration: 3, Func. Count: 27, Neg. LLF: 10129943.966648795
Iteration: 4, Func. Count: 36, Neg. LLF: 96.98806135768618
Iteration: 5, Func. Count: 45, Neg. LLF: 90.2472575618228
Iteration: 6, Func. Count: 53, Neg. LLF: 90.13151795780212
Iteration: 7, Func. Count: 63, Neg. LLF: 95.24743361889605
Iteration: 8, Func. Count: 72, Neg. LLF: 89.22945302597564
Iteration: 9, Func. Count: 80, Neg. LLF: 90.4988597649304
Iteration: 10, Func. Count: 89, Neg. LLF: 88.8999835811465
Iteration: 11, Func. Count: 97, Neg. LLF: 88.90137681094573
Iteration: 12, Func. Count: 106, Neg. LLF: 88.87747994756555
Iteration: 13, Func. Count: 115, Neg. LLF: 88.8741055987879
Iteration: 14, Func. Count: 123, Neg. LLF: 88.87409956863998
Iteration: 15, Func. Count: 130, Neg. LLF: 88.87409966392099
Optimization terminated successfully (Exit mode 0)
Current function value: 88.87409956863998
Iterations: 15
Function evaluations: 130
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 126.8935535505909
Iteration: 2, Func. Count: 20, Neg. LLF: 131.51915273807066
Iteration: 3, Func. Count: 30, Neg. LLF: 10218135.806022197
Iteration: 4, Func. Count: 40, Neg. LLF: 446.81599087041076
Iteration: 5, Func. Count: 50, Neg. LLF: 109.58649615916967
Iteration: 6, Func. Count: 60, Neg. LLF: 89.76392631617247
Iteration: 7, Func. Count: 69, Neg. LLF: 90.67543755968914
Iteration: 8, Func. Count: 81, Neg. LLF: 108.38750219406421
Iteration: 9, Func. Count: 91, Neg. LLF: 89.34476298947048
Iteration: 10, Func. Count: 101, Neg. LLF: 88.88948327567657
Iteration: 11, Func. Count: 110, Neg. LLF: 88.88992890646188
Iteration: 12, Func. Count: 120, Neg. LLF: 88.8744436346956
Iteration: 13, Func. Count: 129, Neg. LLF: 88.8741221833085
Iteration: 14, Func. Count: 138, Neg. LLF: 88.87411280881929
Iteration: 15, Func. Count: 147, Neg. LLF: 88.87409975940992
Iteration: 16, Func. Count: 155, Neg. LLF: 88.87409984517244
Optimization terminated successfully (Exit mode 0)
Current function value: 88.87409975940992
Iterations: 16
Function evaluations: 155
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 126.2045199988005
Iteration: 2, Func. Count: 22, Neg. LLF: 136.79706408718164
Iteration: 3, Func. Count: 33, Neg. LLF: 10635854.066502906
Iteration: 4, Func. Count: 44, Neg. LLF: 137.7666226831741
Iteration: 5, Func. Count: 55, Neg. LLF: 164.44859384969703
Iteration: 6, Func. Count: 66, Neg. LLF: 89.79018313614893
Iteration: 7, Func. Count: 76, Neg. LLF: 91.38714425854651
Iteration: 8, Func. Count: 89, Neg. LLF: 93.64171521052545
Iteration: 9, Func. Count: 100, Neg. LLF: 89.97404122239905
Iteration: 10, Func. Count: 111, Neg. LLF: 88.92421212090346
Iteration: 11, Func. Count: 121, Neg. LLF: 88.900046614467
Iteration: 12, Func. Count: 131, Neg. LLF: 88.88351733147158
Iteration: 13, Func. Count: 141, Neg. LLF: 88.876144011569
Iteration: 14, Func. Count: 151, Neg. LLF: 88.87472959111456
Iteration: 15, Func. Count: 161, Neg. LLF: 88.87411937377132
Iteration: 16, Func. Count: 171, Neg. LLF: 88.8741025230892
Iteration: 17, Func. Count: 181, Neg. LLF: 88.87409977968888
Iteration: 18, Func. Count: 190, Neg. LLF: 88.87409988201672
Optimization terminated successfully (Exit mode 0)
Current function value: 88.87409977968888
Iterations: 18
Function evaluations: 190
Gradient evaluations: 18
Iteration: 1, Func. Count: 8, Neg. LLF: 146.9564956680535
Iteration: 2, Func. Count: 17, Neg. LLF: 251.1519036900507
Iteration: 3, Func. Count: 25, Neg. LLF: 5881379.882587311
Iteration: 4, Func. Count: 33, Neg. LLF: 5680283.167709153
Iteration: 5, Func. Count: 41, Neg. LLF: 5724906.71475679
Iteration: 6, Func. Count: 49, Neg. LLF: 101.41298500997357
Iteration: 7, Func. Count: 57, Neg. LLF: 90.17293034418114
Iteration: 8, Func. Count: 65, Neg. LLF: 88.87602312586492
Iteration: 9, Func. Count: 72, Neg. LLF: 88.76814380104305
Iteration: 10, Func. Count: 80, Neg. LLF: 88.35872052846995
Iteration: 11, Func. Count: 87, Neg. LLF: 88.32435710154397
Iteration: 12, Func. Count: 94, Neg. LLF: 88.31644526414637
Iteration: 13, Func. Count: 101, Neg. LLF: 88.31024442493651
Iteration: 14, Func. Count: 108, Neg. LLF: 88.3094781978732
Iteration: 15, Func. Count: 115, Neg. LLF: 88.30940342787419
Iteration: 16, Func. Count: 122, Neg. LLF: 88.30940169849798
Iteration: 17, Func. Count: 128, Neg. LLF: 88.30940169851657
Optimization terminated successfully (Exit mode 0)
Current function value: 88.30940169849798
Iterations: 17
Function evaluations: 128
Gradient evaluations: 17
Iteration: 1, Func. Count: 9, Neg. LLF: 129.38238196386362
Iteration: 2, Func. Count: 19, Neg. LLF: 44953795.99655195
Iteration: 3, Func. Count: 28, Neg. LLF: 5883444.657804507
Iteration: 4, Func. Count: 37, Neg. LLF: 1085.089955967491
Iteration: 5, Func. Count: 46, Neg. LLF: 95.1696576005296
Iteration: 6, Func. Count: 55, Neg. LLF: 89.33017224489551
Iteration: 7, Func. Count: 63, Neg. LLF: 90.02337903524898
Iteration: 8, Func. Count: 73, Neg. LLF: 91.86200900488865
Iteration: 9, Func. Count: 82, Neg. LLF: 88.70365655432299
Iteration: 10, Func. Count: 90, Neg. LLF: 88.40343450548102
Iteration: 11, Func. Count: 98, Neg. LLF: 88.34308885860432
Iteration: 12, Func. Count: 106, Neg. LLF: 88.31735445062692
Iteration: 13, Func. Count: 114, Neg. LLF: 88.31340541716898
Iteration: 14, Func. Count: 122, Neg. LLF: 88.3103551657801
Iteration: 15, Func. Count: 130, Neg. LLF: 88.30944225668773
Iteration: 16, Func. Count: 138, Neg. LLF: 88.30940185053342
Iteration: 17, Func. Count: 145, Neg. LLF: 88.3094019068041
Optimization terminated successfully (Exit mode 0)
Current function value: 88.30940185053342
Iterations: 17
Function evaluations: 145
Gradient evaluations: 17
Iteration: 1, Func. Count: 10, Neg. LLF: 129.83021262290603
Iteration: 2, Func. Count: 21, Neg. LLF: 42579858.04463929
Iteration: 3, Func. Count: 31, Neg. LLF: 5860794.617903983
Iteration: 4, Func. Count: 41, Neg. LLF: 1520.7014086181257
Iteration: 5, Func. Count: 51, Neg. LLF: 104.1769375258776
Iteration: 6, Func. Count: 61, Neg. LLF: 89.37568716484654
Iteration: 7, Func. Count: 70, Neg. LLF: 91.90210067530803
Iteration: 8, Func. Count: 81, Neg. LLF: 93.60718530185767
Iteration: 9, Func. Count: 91, Neg. LLF: 88.47459813577021
Iteration: 10, Func. Count: 100, Neg. LLF: 88.34760274542298
Iteration: 11, Func. Count: 109, Neg. LLF: 88.32189870033935
Iteration: 12, Func. Count: 118, Neg. LLF: 88.31159974379288
Iteration: 13, Func. Count: 127, Neg. LLF: 88.31039160177501
Iteration: 14, Func. Count: 136, Neg. LLF: 88.30960148803914
Iteration: 15, Func. Count: 145, Neg. LLF: 88.30941082378585
Iteration: 16, Func. Count: 154, Neg. LLF: 88.30940178578041
Iteration: 17, Func. Count: 162, Neg. LLF: 88.30940190940365
Optimization terminated successfully (Exit mode 0)
Current function value: 88.30940178578041
Iterations: 17
Function evaluations: 162
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 128.59160564362136
Iteration: 2, Func. Count: 23, Neg. LLF: 41658242.65255158
Iteration: 3, Func. Count: 34, Neg. LLF: 5865725.377591845
Iteration: 4, Func. Count: 45, Neg. LLF: 1622.910881540035
Iteration: 5, Func. Count: 56, Neg. LLF: 118.35576999115412
Iteration: 6, Func. Count: 67, Neg. LLF: 89.38494593948518
Iteration: 7, Func. Count: 77, Neg. LLF: 103.79543050754091
Iteration: 8, Func. Count: 89, Neg. LLF: 92.82172401300002
Iteration: 9, Func. Count: 100, Neg. LLF: 88.45271960606664
Iteration: 10, Func. Count: 110, Neg. LLF: 88.36987475666216
Iteration: 11, Func. Count: 120, Neg. LLF: 88.31518799836671
Iteration: 12, Func. Count: 130, Neg. LLF: 88.31038771364597
Iteration: 13, Func. Count: 140, Neg. LLF: 88.30975494133803
Iteration: 14, Func. Count: 150, Neg. LLF: 88.30950180493986
Iteration: 15, Func. Count: 160, Neg. LLF: 88.30941417754745
Iteration: 16, Func. Count: 170, Neg. LLF: 88.30940402887956
Iteration: 17, Func. Count: 180, Neg. LLF: 88.30940184242557
Iteration: 18, Func. Count: 189, Neg. LLF: 88.30940199314287
Optimization terminated successfully (Exit mode 0)
Current function value: 88.30940184242557
Iterations: 18
Function evaluations: 189
Gradient evaluations: 18
Iteration: 1, Func. Count: 12, Neg. LLF: 127.85473401547694
Iteration: 2, Func. Count: 25, Neg. LLF: 41379183.73985081
Iteration: 3, Func. Count: 37, Neg. LLF: 5862309.76690944
Iteration: 4, Func. Count: 49, Neg. LLF: 2050.8815011470324
Iteration: 5, Func. Count: 61, Neg. LLF: 157.9047992751266
Iteration: 6, Func. Count: 73, Neg. LLF: 89.28668533956497
Iteration: 7, Func. Count: 84, Neg. LLF: 108.85911517678088
Iteration: 8, Func. Count: 97, Neg. LLF: 113.49656168832173
Iteration: 9, Func. Count: 109, Neg. LLF: 163.18003868573706
Iteration: 10, Func. Count: 122, Neg. LLF: 88.47270063393731
Iteration: 11, Func. Count: 134, Neg. LLF: 89.62883781422155
Iteration: 12, Func. Count: 146, Neg. LLF: 87.82904584567802
Iteration: 13, Func. Count: 157, Neg. LLF: 87.73263848403104
Iteration: 14, Func. Count: 168, Neg. LLF: 87.72487816118533
Iteration: 15, Func. Count: 179, Neg. LLF: 87.72391774896704
Iteration: 16, Func. Count: 190, Neg. LLF: 87.72372434130405
Iteration: 17, Func. Count: 201, Neg. LLF: 87.72370019233088
Iteration: 18, Func. Count: 212, Neg. LLF: 87.7236721238687
Iteration: 19, Func. Count: 223, Neg. LLF: 87.72366953521684
Iteration: 20, Func. Count: 233, Neg. LLF: 87.72366951630038
Optimization terminated successfully (Exit mode 0)
Current function value: 87.72366953521684
Iterations: 20
Function evaluations: 233
Gradient evaluations: 20
Iteration: 1, Func. Count: 9, Neg. LLF: 146.73112123403615
Iteration: 2, Func. Count: 19, Neg. LLF: 252.72040522987555
Iteration: 3, Func. Count: 28, Neg. LLF: 5878536.74697897
Iteration: 4, Func. Count: 37, Neg. LLF: 5676366.092680043
Iteration: 5, Func. Count: 46, Neg. LLF: 5720791.950910577
Iteration: 6, Func. Count: 55, Neg. LLF: 101.6297675208194
Iteration: 7, Func. Count: 64, Neg. LLF: 90.20077644659628
Iteration: 8, Func. Count: 73, Neg. LLF: 88.87806408132994
Iteration: 9, Func. Count: 81, Neg. LLF: 88.77442340989926
Iteration: 10, Func. Count: 90, Neg. LLF: 88.35601300710725
Iteration: 11, Func. Count: 98, Neg. LLF: 88.32301355801395
Iteration: 12, Func. Count: 106, Neg. LLF: 88.31530623054347
Iteration: 13, Func. Count: 114, Neg. LLF: 88.31080549143995
Iteration: 14, Func. Count: 122, Neg. LLF: 88.30949566677906
Iteration: 15, Func. Count: 130, Neg. LLF: 88.30940741009925
Iteration: 16, Func. Count: 138, Neg. LLF: 88.30940170513908
Iteration: 17, Func. Count: 145, Neg. LLF: 88.30940222014347
Optimization terminated successfully (Exit mode 0)
Current function value: 88.30940170513908
Iterations: 17
Function evaluations: 145
Gradient evaluations: 17
Iteration: 1, Func. Count: 10, Neg. LLF: 129.52128334312252
Iteration: 2, Func. Count: 21, Neg. LLF: 44921147.99662209
Iteration: 3, Func. Count: 31, Neg. LLF: 5884171.740495147
Iteration: 4, Func. Count: 41, Neg. LLF: 1072.08385044041
Iteration: 5, Func. Count: 51, Neg. LLF: 95.20743022158337
Iteration: 6, Func. Count: 61, Neg. LLF: 89.33651573483444
Iteration: 7, Func. Count: 70, Neg. LLF: 90.01433805664054
Iteration: 8, Func. Count: 81, Neg. LLF: 91.62205193585194
Iteration: 9, Func. Count: 91, Neg. LLF: 88.68107717764332
Iteration: 10, Func. Count: 100, Neg. LLF: 88.39239011009238
Iteration: 11, Func. Count: 109, Neg. LLF: 88.33777041399652
Iteration: 12, Func. Count: 118, Neg. LLF: 88.31704510174396
Iteration: 13, Func. Count: 127, Neg. LLF: 88.31320178172396
Iteration: 14, Func. Count: 136, Neg. LLF: 88.31019860810022
Iteration: 15, Func. Count: 145, Neg. LLF: 88.30943534735768
Iteration: 16, Func. Count: 154, Neg. LLF: 88.30940181522527
Iteration: 17, Func. Count: 162, Neg. LLF: 88.30940187150884
Optimization terminated successfully (Exit mode 0)
Current function value: 88.30940181522527
Iterations: 17
Function evaluations: 162
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 129.87812294368428
Iteration: 2, Func. Count: 23, Neg. LLF: 42567255.71409999
Iteration: 3, Func. Count: 34, Neg. LLF: 5861121.626346918
Iteration: 4, Func. Count: 45, Neg. LLF: 1528.4077714878883
Iteration: 5, Func. Count: 56, Neg. LLF: 104.00685625329713
Iteration: 6, Func. Count: 67, Neg. LLF: 89.37707810351999
Iteration: 7, Func. Count: 77, Neg. LLF: 91.85128880182673
Iteration: 8, Func. Count: 89, Neg. LLF: 93.62658320057736
Iteration: 9, Func. Count: 100, Neg. LLF: 88.47630682259692
Iteration: 10, Func. Count: 110, Neg. LLF: 88.34866601322196
Iteration: 11, Func. Count: 120, Neg. LLF: 88.32242916357545
Iteration: 12, Func. Count: 130, Neg. LLF: 88.31165713442891
Iteration: 13, Func. Count: 140, Neg. LLF: 88.31039981385848
Iteration: 14, Func. Count: 150, Neg. LLF: 88.30962040108953
Iteration: 15, Func. Count: 160, Neg. LLF: 88.30941191019201
Iteration: 16, Func. Count: 170, Neg. LLF: 88.30940183946173
Iteration: 17, Func. Count: 179, Neg. LLF: 88.30940196308062
Optimization terminated successfully (Exit mode 0)
Current function value: 88.30940183946173
Iterations: 17
Function evaluations: 179
Gradient evaluations: 17
Iteration: 1, Func. Count: 12, Neg. LLF: 128.6131137197063
Iteration: 2, Func. Count: 25, Neg. LLF: 41698676.031136155
Iteration: 3, Func. Count: 37, Neg. LLF: 5865667.023205344
Iteration: 4, Func. Count: 49, Neg. LLF: 1615.4655936166205
Iteration: 5, Func. Count: 61, Neg. LLF: 118.47177584276875
Iteration: 6, Func. Count: 73, Neg. LLF: 89.38475754278872
Iteration: 7, Func. Count: 84, Neg. LLF: 103.92918016360298
Iteration: 8, Func. Count: 97, Neg. LLF: 92.80843388487479
Iteration: 9, Func. Count: 109, Neg. LLF: 88.45611673815793
Iteration: 10, Func. Count: 120, Neg. LLF: 88.3762380769516
Iteration: 11, Func. Count: 131, Neg. LLF: 88.31504290748235
Iteration: 12, Func. Count: 142, Neg. LLF: 88.31034841561
Iteration: 13, Func. Count: 153, Neg. LLF: 88.30974373653046
Iteration: 14, Func. Count: 164, Neg. LLF: 88.30950073258501
Iteration: 15, Func. Count: 175, Neg. LLF: 88.30941263810422
Iteration: 16, Func. Count: 186, Neg. LLF: 88.30940371088366
Iteration: 17, Func. Count: 197, Neg. LLF: 88.309401846675
Iteration: 18, Func. Count: 207, Neg. LLF: 88.30940199739189
Optimization terminated successfully (Exit mode 0)
Current function value: 88.309401846675
Iterations: 18
Function evaluations: 207
Gradient evaluations: 18
Iteration: 1, Func. Count: 13, Neg. LLF: 127.77151359575771
Iteration: 2, Func. Count: 27, Neg. LLF: 41485653.050547905
Iteration: 3, Func. Count: 40, Neg. LLF: 5862121.952787927
Iteration: 4, Func. Count: 53, Neg. LLF: 2020.8583931927524
Iteration: 5, Func. Count: 66, Neg. LLF: 156.67723604827012
Iteration: 6, Func. Count: 79, Neg. LLF: 89.27376782462646
Iteration: 7, Func. Count: 91, Neg. LLF: 108.98398994932263
Iteration: 8, Func. Count: 105, Neg. LLF: 113.61368522615145
Iteration: 9, Func. Count: 118, Neg. LLF: 166.25222589211165
Iteration: 10, Func. Count: 132, Neg. LLF: 88.50665562279687
Iteration: 11, Func. Count: 145, Neg. LLF: 89.73834927894315
Iteration: 12, Func. Count: 158, Neg. LLF: 87.81307796464503
Iteration: 13, Func. Count: 170, Neg. LLF: 87.73256069539843
Iteration: 14, Func. Count: 182, Neg. LLF: 87.72480578477717
Iteration: 15, Func. Count: 194, Neg. LLF: 87.72386781420505
Iteration: 16, Func. Count: 206, Neg. LLF: 87.7237113645833
Iteration: 17, Func. Count: 218, Neg. LLF: 87.72369278463744
Iteration: 18, Func. Count: 230, Neg. LLF: 87.72367231683452
Iteration: 19, Func. Count: 242, Neg. LLF: 87.72366959004803
Iteration: 20, Func. Count: 253, Neg. LLF: 87.72366957115405
Optimization terminated successfully (Exit mode 0)
Current function value: 87.72366959004803
Iterations: 20
Function evaluations: 253
Gradient evaluations: 20
Iteration: 1, Func. Count: 10, Neg. LLF: 147.47743368005132
Iteration: 2, Func. Count: 21, Neg. LLF: 248.85345850888294
Iteration: 3, Func. Count: 31, Neg. LLF: 5882092.990782474
Iteration: 4, Func. Count: 41, Neg. LLF: 5682398.617441952
Iteration: 5, Func. Count: 51, Neg. LLF: 5727717.119030413
Iteration: 6, Func. Count: 61, Neg. LLF: 101.40082621149051
Iteration: 7, Func. Count: 71, Neg. LLF: 90.16839257891758
Iteration: 8, Func. Count: 81, Neg. LLF: 88.87115560934105
Iteration: 9, Func. Count: 90, Neg. LLF: 88.8259615679692
Iteration: 10, Func. Count: 100, Neg. LLF: 88.3540725651487
Iteration: 11, Func. Count: 109, Neg. LLF: 88.3220287116411
Iteration: 12, Func. Count: 118, Neg. LLF: 88.3147774026496
Iteration: 13, Func. Count: 127, Neg. LLF: 88.31110743198975
Iteration: 14, Func. Count: 136, Neg. LLF: 88.30947583936056
Iteration: 15, Func. Count: 145, Neg. LLF: 88.30940813925346
Iteration: 16, Func. Count: 154, Neg. LLF: 88.30940169698152
Iteration: 17, Func. Count: 162, Neg. LLF: 88.30940203619976
Optimization terminated successfully (Exit mode 0)
Current function value: 88.30940169698152
Iterations: 17
Function evaluations: 162
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 129.87746492126084
Iteration: 2, Func. Count: 23, Neg. LLF: 44694894.8832253
Iteration: 3, Func. Count: 34, Neg. LLF: 5886455.6871864805
Iteration: 4, Func. Count: 45, Neg. LLF: 1071.9328624122763
Iteration: 5, Func. Count: 56, Neg. LLF: 95.35884690620802
Iteration: 6, Func. Count: 67, Neg. LLF: 89.33524367048982
Iteration: 7, Func. Count: 77, Neg. LLF: 90.00443722131502
Iteration: 8, Func. Count: 89, Neg. LLF: 91.28626323902391
Iteration: 9, Func. Count: 100, Neg. LLF: 88.62010691883819
Iteration: 10, Func. Count: 110, Neg. LLF: 88.39323931938691
Iteration: 11, Func. Count: 120, Neg. LLF: 88.32964048597724
Iteration: 12, Func. Count: 130, Neg. LLF: 88.31566719266519
Iteration: 13, Func. Count: 140, Neg. LLF: 88.31234798869262
Iteration: 14, Func. Count: 150, Neg. LLF: 88.30996315319173
Iteration: 15, Func. Count: 160, Neg. LLF: 88.30942158853296
Iteration: 16, Func. Count: 170, Neg. LLF: 88.30940173558142
Iteration: 17, Func. Count: 179, Neg. LLF: 88.30940179187884
Optimization terminated successfully (Exit mode 0)
Current function value: 88.30940173558142
Iterations: 17
Function evaluations: 179
Gradient evaluations: 17
Iteration: 1, Func. Count: 12, Neg. LLF: 130.06349952483504
Iteration: 2, Func. Count: 25, Neg. LLF: 42472672.757050574
Iteration: 3, Func. Count: 37, Neg. LLF: 5862281.40414324
Iteration: 4, Func. Count: 49, Neg. LLF: 1513.955169525442
Iteration: 5, Func. Count: 61, Neg. LLF: 104.37353987391849
Iteration: 6, Func. Count: 73, Neg. LLF: 89.37121681392046
Iteration: 7, Func. Count: 84, Neg. LLF: 91.91414113931069
Iteration: 8, Func. Count: 97, Neg. LLF: 93.5700529507238
Iteration: 9, Func. Count: 109, Neg. LLF: 88.47791122204424
Iteration: 10, Func. Count: 120, Neg. LLF: 88.35155462705168
Iteration: 11, Func. Count: 131, Neg. LLF: 88.32325987016665
Iteration: 12, Func. Count: 142, Neg. LLF: 88.31161249547444
Iteration: 13, Func. Count: 153, Neg. LLF: 88.31036414551733
Iteration: 14, Func. Count: 164, Neg. LLF: 88.30965159159773
Iteration: 15, Func. Count: 175, Neg. LLF: 88.30941372077137
Iteration: 16, Func. Count: 186, Neg. LLF: 88.30940191457178
Iteration: 17, Func. Count: 196, Neg. LLF: 88.30940203818058
Optimization terminated successfully (Exit mode 0)
Current function value: 88.30940191457178
Iterations: 17
Function evaluations: 196
Gradient evaluations: 17
Iteration: 1, Func. Count: 13, Neg. LLF: 128.70162572806416
Iteration: 2, Func. Count: 27, Neg. LLF: 41653361.33424091
Iteration: 3, Func. Count: 40, Neg. LLF: 5866920.64023452
Iteration: 4, Func. Count: 53, Neg. LLF: 1600.7192069398088
Iteration: 5, Func. Count: 66, Neg. LLF: 118.57806844185754
Iteration: 6, Func. Count: 79, Neg. LLF: 89.37767646788501
Iteration: 7, Func. Count: 91, Neg. LLF: 104.11429652474511
Iteration: 8, Func. Count: 105, Neg. LLF: 92.78513839576455
Iteration: 9, Func. Count: 118, Neg. LLF: 88.45937022942243
Iteration: 10, Func. Count: 130, Neg. LLF: 88.38689160927603
Iteration: 11, Func. Count: 142, Neg. LLF: 88.31456515426426
Iteration: 12, Func. Count: 154, Neg. LLF: 88.31026297371265
Iteration: 13, Func. Count: 166, Neg. LLF: 88.30971645854558
Iteration: 14, Func. Count: 178, Neg. LLF: 88.30949589778452
Iteration: 15, Func. Count: 190, Neg. LLF: 88.30941011614071
Iteration: 16, Func. Count: 202, Neg. LLF: 88.30940306608025
Iteration: 17, Func. Count: 214, Neg. LLF: 88.30940180681377
Iteration: 18, Func. Count: 225, Neg. LLF: 88.30940195752271
Optimization terminated successfully (Exit mode 0)
Current function value: 88.30940180681377
Iterations: 18
Function evaluations: 225
Gradient evaluations: 18
Iteration: 1, Func. Count: 14, Neg. LLF: 127.89963864685147
Iteration: 2, Func. Count: 29, Neg. LLF: 41418256.87593621
Iteration: 3, Func. Count: 43, Neg. LLF: 5863296.867841174
Iteration: 4, Func. Count: 57, Neg. LLF: 2003.1377509098147
Iteration: 5, Func. Count: 71, Neg. LLF: 157.15481991941726
Iteration: 6, Func. Count: 85, Neg. LLF: 89.32661394343332
Iteration: 7, Func. Count: 98, Neg. LLF: 108.22025856483393
Iteration: 8, Func. Count: 113, Neg. LLF: 112.68386209603071
Iteration: 9, Func. Count: 127, Neg. LLF: 164.23577071500125
Iteration: 10, Func. Count: 142, Neg. LLF: 88.59263607227572
Iteration: 11, Func. Count: 156, Neg. LLF: 89.21776443284047
Iteration: 12, Func. Count: 170, Neg. LLF: 87.80457688385255
Iteration: 13, Func. Count: 183, Neg. LLF: 87.73090694310774
Iteration: 14, Func. Count: 196, Neg. LLF: 87.72458473381722
Iteration: 15, Func. Count: 209, Neg. LLF: 87.72389391204574
Iteration: 16, Func. Count: 222, Neg. LLF: 87.72372681394545
Iteration: 17, Func. Count: 235, Neg. LLF: 87.72369838594875
Iteration: 18, Func. Count: 248, Neg. LLF: 87.7236738689614
Iteration: 19, Func. Count: 261, Neg. LLF: 87.7236696834118
Iteration: 20, Func. Count: 274, Neg. LLF: 87.72366913587956
Optimization terminated successfully (Exit mode 0)
Current function value: 87.72366913587956
Iterations: 20
Function evaluations: 274
Gradient evaluations: 20
Iteration: 1, Func. Count: 7, Neg. LLF: 136.06334324399538
Iteration: 2, Func. Count: 15, Neg. LLF: 157.8835800596673
Iteration: 3, Func. Count: 22, Neg. LLF: 135113.3350105433
Iteration: 4, Func. Count: 29, Neg. LLF: 826.4385512985115
Iteration: 5, Func. Count: 36, Neg. LLF: 691.2075349175603
Iteration: 6, Func. Count: 43, Neg. LLF: 436.890706422719
Iteration: 7, Func. Count: 50, Neg. LLF: 471.2923685711492
Iteration: 8, Func. Count: 57, Neg. LLF: 696.6870977965008
Iteration: 9, Func. Count: 64, Neg. LLF: 347.4766133799254
Iteration: 10, Func. Count: 71, Neg. LLF: 98.82290213611697
Iteration: 11, Func. Count: 78, Neg. LLF: 2046.9833492933155
Iteration: 12, Func. Count: 85, Neg. LLF: 101.44488471266331
Iteration: 13, Func. Count: 92, Neg. LLF: 91.90072217083194
Iteration: 14, Func. Count: 99, Neg. LLF: 91.11282089406515
Iteration: 15, Func. Count: 106, Neg. LLF: 90.48138236186253
Iteration: 16, Func. Count: 112, Neg. LLF: 90.51203399789082
Iteration: 17, Func. Count: 119, Neg. LLF: 90.46309904650786
Iteration: 18, Func. Count: 125, Neg. LLF: 90.46308420774373
Iteration: 19, Func. Count: 130, Neg. LLF: 90.46308442994875
Optimization terminated successfully (Exit mode 0)
Current function value: 90.46308420774373
Iterations: 19
Function evaluations: 130
Gradient evaluations: 19
Iteration: 1, Func. Count: 8, Neg. LLF: 123.12376276352464
Iteration: 2, Func. Count: 16, Neg. LLF: 113.52852117368485
Iteration: 3, Func. Count: 24, Neg. LLF: 972.8007277272801
Iteration: 4, Func. Count: 32, Neg. LLF: 1145.2449427279182
Iteration: 5, Func. Count: 40, Neg. LLF: 7002.903331872975
Iteration: 6, Func. Count: 48, Neg. LLF: 2887.998863212713
Iteration: 7, Func. Count: 56, Neg. LLF: 94.2643200007104
Iteration: 8, Func. Count: 64, Neg. LLF: 90.90515814598557
Iteration: 9, Func. Count: 71, Neg. LLF: 90.71537593526888
Iteration: 10, Func. Count: 79, Neg. LLF: 90.7170543456171
Iteration: 11, Func. Count: 87, Neg. LLF: 90.46521094453642
Iteration: 12, Func. Count: 94, Neg. LLF: 90.46491007591085
Iteration: 13, Func. Count: 101, Neg. LLF: 90.46477949775527
Iteration: 14, Func. Count: 108, Neg. LLF: 90.46399619744012
Iteration: 15, Func. Count: 115, Neg. LLF: 90.46338187839442
Iteration: 16, Func. Count: 122, Neg. LLF: 90.4631118539562
Iteration: 17, Func. Count: 129, Neg. LLF: 90.46308480021088
Iteration: 18, Func. Count: 136, Neg. LLF: 90.4630841288539
Optimization terminated successfully (Exit mode 0)
Current function value: 90.4630841288539
Iterations: 18
Function evaluations: 136
Gradient evaluations: 18
Iteration: 1, Func. Count: 9, Neg. LLF: 175.94231278937403
Iteration: 2, Func. Count: 21, Neg. LLF: 105.42766136924178
Iteration: 3, Func. Count: 30, Neg. LLF: 98.59975776329817
Iteration: 4, Func. Count: 38, Neg. LLF: 98.55370203663514
Iteration: 5, Func. Count: 46, Neg. LLF: 98.52260904954896
Iteration: 6, Func. Count: 54, Neg. LLF: 98.52237273174961
Iteration: 7, Func. Count: 62, Neg. LLF: 98.52237374549821
Optimization terminated successfully (Exit mode 0)
Current function value: 98.52237254155602
Iterations: 7
Function evaluations: 63
Gradient evaluations: 7
Iteration: 1, Func. Count: 10, Neg. LLF: 172.29251172116844
Iteration: 2, Func. Count: 24, Neg. LLF: 107.17173915344372
Iteration: 3, Func. Count: 34, Neg. LLF: 98.74100824465451
Iteration: 4, Func. Count: 43, Neg. LLF: 98.859155297071
Iteration: 5, Func. Count: 53, Neg. LLF: 98.67854564245934
Iteration: 6, Func. Count: 62, Neg. LLF: 98.67823742463025
Iteration: 7, Func. Count: 71, Neg. LLF: 98.6782348002537
Iteration: 8, Func. Count: 80, Neg. LLF: 98.67823418138114
Optimization terminated successfully (Exit mode 0)
Current function value: 98.67823418138114
Iterations: 8
Function evaluations: 80
Gradient evaluations: 8
Iteration: 1, Func. Count: 11, Neg. LLF: 171.91648338976523
Iteration: 2, Func. Count: 26, Neg. LLF: 108.31927270726061
Iteration: 3, Func. Count: 37, Neg. LLF: 98.72779352174669
Iteration: 4, Func. Count: 47, Neg. LLF: 98.70195519560188
Iteration: 5, Func. Count: 57, Neg. LLF: 98.70183908117303
Iteration: 6, Func. Count: 68, Neg. LLF: 98.70100720815016
Iteration: 7, Func. Count: 78, Neg. LLF: 98.70100636688178
Optimization terminated successfully (Exit mode 0)
Current function value: 98.70100636688178
Iterations: 7
Function evaluations: 78
Gradient evaluations: 7
Iteration: 1, Func. Count: 8, Neg. LLF: 138.28267433078875
Iteration: 2, Func. Count: 17, Neg. LLF: 175.84421565065983
Iteration: 3, Func. Count: 25, Neg. LLF: 8175944.7954125535
Iteration: 4, Func. Count: 33, Neg. LLF: 5666079.4734476525
Iteration: 5, Func. Count: 41, Neg. LLF: 5988594.38899947
Iteration: 6, Func. Count: 49, Neg. LLF: 5965141.864634005
Iteration: 7, Func. Count: 57, Neg. LLF: 95.42941568583434
Iteration: 8, Func. Count: 65, Neg. LLF: 94.76536357947272
Iteration: 9, Func. Count: 73, Neg. LLF: 90.01107867741838
Iteration: 10, Func. Count: 80, Neg. LLF: 90.21765107762006
Iteration: 11, Func. Count: 89, Neg. LLF: 108.35671949596684
Iteration: 12, Func. Count: 97, Neg. LLF: 89.37949490321236
Iteration: 13, Func. Count: 104, Neg. LLF: 89.37638267367954
Iteration: 14, Func. Count: 111, Neg. LLF: 89.37607957639499
Iteration: 15, Func. Count: 118, Neg. LLF: 89.37555084017713
Iteration: 16, Func. Count: 125, Neg. LLF: 89.37538722349846
Iteration: 17, Func. Count: 132, Neg. LLF: 89.37535682202872
Iteration: 18, Func. Count: 139, Neg. LLF: 89.37535578671167
Iteration: 19, Func. Count: 145, Neg. LLF: 89.3753560840896
Optimization terminated successfully (Exit mode 0)
Current function value: 89.37535578671167
Iterations: 19
Function evaluations: 145
Gradient evaluations: 19
Iteration: 1, Func. Count: 9, Neg. LLF: 124.46502837592702
Iteration: 2, Func. Count: 19, Neg. LLF: 224.88617548583096
Iteration: 3, Func. Count: 28, Neg. LLF: 9420942.726108119
Iteration: 4, Func. Count: 37, Neg. LLF: 1689.9186571300138
Iteration: 5, Func. Count: 46, Neg. LLF: 891.086027563041
Iteration: 6, Func. Count: 55, Neg. LLF: 384.87775879230253
Iteration: 7, Func. Count: 64, Neg. LLF: 89.73383058761203
Iteration: 8, Func. Count: 72, Neg. LLF: 91.15343611409263
Iteration: 9, Func. Count: 82, Neg. LLF: 92.87777874856
Iteration: 10, Func. Count: 91, Neg. LLF: 91.06795082657098
Iteration: 11, Func. Count: 100, Neg. LLF: 88.9258091744142
Iteration: 12, Func. Count: 108, Neg. LLF: 88.89409472201118
Iteration: 13, Func. Count: 116, Neg. LLF: 88.88232019240456
Iteration: 14, Func. Count: 124, Neg. LLF: 88.87527840888269
Iteration: 15, Func. Count: 132, Neg. LLF: 88.87426764731406
Iteration: 16, Func. Count: 140, Neg. LLF: 88.87410767961462
Iteration: 17, Func. Count: 148, Neg. LLF: 88.8741016811191
Iteration: 18, Func. Count: 156, Neg. LLF: 88.8740995057796
Iteration: 19, Func. Count: 163, Neg. LLF: 88.87409950579026
Optimization terminated successfully (Exit mode 0)
Current function value: 88.8740995057796
Iterations: 19
Function evaluations: 163
Gradient evaluations: 19
Iteration: 1, Func. Count: 10, Neg. LLF: 122.12435536129084
Iteration: 2, Func. Count: 21, Neg. LLF: 206.18378522445192
Iteration: 3, Func. Count: 31, Neg. LLF: 9418500.045223778
Iteration: 4, Func. Count: 41, Neg. LLF: 1837.8192118884815
Iteration: 5, Func. Count: 51, Neg. LLF: 962.5873031507391
Iteration: 6, Func. Count: 61, Neg. LLF: 414.7260690512533
Iteration: 7, Func. Count: 71, Neg. LLF: 89.78667353153173
Iteration: 8, Func. Count: 80, Neg. LLF: 93.91458457950745
Iteration: 9, Func. Count: 91, Neg. LLF: 90.59909322167474
Iteration: 10, Func. Count: 101, Neg. LLF: 91.61056308801741
Iteration: 11, Func. Count: 112, Neg. LLF: 88.89564599429795
Iteration: 12, Func. Count: 121, Neg. LLF: 88.89032060933461
Iteration: 13, Func. Count: 131, Neg. LLF: 88.87413577370813
Iteration: 14, Func. Count: 140, Neg. LLF: 88.87410798549115
Iteration: 15, Func. Count: 149, Neg. LLF: 88.87410015134655
Iteration: 16, Func. Count: 158, Neg. LLF: 88.87409946398448
Optimization terminated successfully (Exit mode 0)
Current function value: 88.87409946398448
Iterations: 16
Function evaluations: 158
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 120.87433409521593
Iteration: 2, Func. Count: 23, Neg. LLF: 203.02741184483938
Iteration: 3, Func. Count: 34, Neg. LLF: 9422065.278212033
Iteration: 4, Func. Count: 45, Neg. LLF: 2547.832706203727
Iteration: 5, Func. Count: 56, Neg. LLF: 1056.9456633955256
Iteration: 6, Func. Count: 67, Neg. LLF: 458.9177348769308
Iteration: 7, Func. Count: 78, Neg. LLF: 89.9933448712096
Iteration: 8, Func. Count: 88, Neg. LLF: 96.16861420734234
Iteration: 9, Func. Count: 100, Neg. LLF: 91.62016380606943
Iteration: 10, Func. Count: 111, Neg. LLF: 89.65555074055398
Iteration: 11, Func. Count: 122, Neg. LLF: 88.8966821609345
Iteration: 12, Func. Count: 132, Neg. LLF: 88.90975473112032
Iteration: 13, Func. Count: 143, Neg. LLF: 88.87431823902375
Iteration: 14, Func. Count: 153, Neg. LLF: 88.87410623781412
Iteration: 15, Func. Count: 163, Neg. LLF: 88.8740996196936
Iteration: 16, Func. Count: 172, Neg. LLF: 88.87409970540197
Optimization terminated successfully (Exit mode 0)
Current function value: 88.8740996196936
Iterations: 16
Function evaluations: 172
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 117.75367116504306
Iteration: 2, Func. Count: 24, Neg. LLF: 146.95764295828405
Iteration: 3, Func. Count: 36, Neg. LLF: 10184621.050555063
Iteration: 4, Func. Count: 48, Neg. LLF: 503544.9911701305
Iteration: 5, Func. Count: 60, Neg. LLF: 2374.451734880471
Iteration: 6, Func. Count: 72, Neg. LLF: 7366.2492960176005
Iteration: 7, Func. Count: 84, Neg. LLF: 95.10846483170178
Iteration: 8, Func. Count: 96, Neg. LLF: 213.2413841850482
Iteration: 9, Func. Count: 108, Neg. LLF: 89.70937668181044
Iteration: 10, Func. Count: 119, Neg. LLF: 89.63064608594226
Iteration: 11, Func. Count: 131, Neg. LLF: 89.16854619368516
Iteration: 12, Func. Count: 142, Neg. LLF: 88.96437725170632
Iteration: 13, Func. Count: 153, Neg. LLF: 88.98573857021978
Iteration: 14, Func. Count: 165, Neg. LLF: 88.88750784755689
Iteration: 15, Func. Count: 176, Neg. LLF: 88.87879200634825
Iteration: 16, Func. Count: 187, Neg. LLF: 88.87597242832216
Iteration: 17, Func. Count: 198, Neg. LLF: 88.8741210622009
Iteration: 18, Func. Count: 209, Neg. LLF: 88.8741006045739
Iteration: 19, Func. Count: 220, Neg. LLF: 88.87409949217226
Iteration: 20, Func. Count: 230, Neg. LLF: 88.87409959444403
Optimization terminated successfully (Exit mode 0)
Current function value: 88.87409949217226
Iterations: 20
Function evaluations: 230
Gradient evaluations: 20
Iteration: 1, Func. Count: 9, Neg. LLF: 141.1677145895296
Iteration: 2, Func. Count: 19, Neg. LLF: 631.6849135388209
Iteration: 3, Func. Count: 28, Neg. LLF: 5851223.68233034
Iteration: 4, Func. Count: 37, Neg. LLF: 5632603.7482899055
Iteration: 5, Func. Count: 46, Neg. LLF: 5698349.563407926
Iteration: 6, Func. Count: 55, Neg. LLF: 5731494.103402306
Iteration: 7, Func. Count: 64, Neg. LLF: 4071577.9439918054
Iteration: 8, Func. Count: 73, Neg. LLF: 94.70323738666644
Iteration: 9, Func. Count: 82, Neg. LLF: 89.18276507324387
Iteration: 10, Func. Count: 90, Neg. LLF: 103.89277819044365
Iteration: 11, Func. Count: 99, Neg. LLF: 93.19015743278045
Iteration: 12, Func. Count: 108, Neg. LLF: 88.54675156291349
Iteration: 13, Func. Count: 116, Neg. LLF: 88.3383019683126
Iteration: 14, Func. Count: 124, Neg. LLF: 88.31633556922486
Iteration: 15, Func. Count: 132, Neg. LLF: 88.31177325507684
Iteration: 16, Func. Count: 140, Neg. LLF: 88.3095161805379
Iteration: 17, Func. Count: 148, Neg. LLF: 88.30940575979298
Iteration: 18, Func. Count: 156, Neg. LLF: 88.30940244862147
Iteration: 19, Func. Count: 163, Neg. LLF: 88.30940244800176
Optimization terminated successfully (Exit mode 0)
Current function value: 88.30940244862147
Iterations: 19
Function evaluations: 163
Gradient evaluations: 19
Iteration: 1, Func. Count: 10, Neg. LLF: 126.54219775214386
Iteration: 2, Func. Count: 21, Neg. LLF: 881.8572098925483
Iteration: 3, Func. Count: 31, Neg. LLF: 5874162.438125105
Iteration: 4, Func. Count: 41, Neg. LLF: 2210.444094140791
Iteration: 5, Func. Count: 51, Neg. LLF: 884.2754134867204
Iteration: 6, Func. Count: 61, Neg. LLF: 112.4047885229257
Iteration: 7, Func. Count: 71, Neg. LLF: 89.98469003976896
Iteration: 8, Func. Count: 80, Neg. LLF: 101.94390986360479
Iteration: 9, Func. Count: 90, Neg. LLF: 92.06214266294805
Iteration: 10, Func. Count: 103, Neg. LLF: 98.04426270696928
Iteration: 11, Func. Count: 114, Neg. LLF: 88.59342189820427
Iteration: 12, Func. Count: 123, Neg. LLF: 88.46732255720816
Iteration: 13, Func. Count: 132, Neg. LLF: 88.39860618068809
Iteration: 14, Func. Count: 141, Neg. LLF: 88.35268151265873
Iteration: 15, Func. Count: 150, Neg. LLF: 88.3181091700699
Iteration: 16, Func. Count: 159, Neg. LLF: 88.31112166335996
Iteration: 17, Func. Count: 168, Neg. LLF: 88.3101236611855
Iteration: 18, Func. Count: 177, Neg. LLF: 88.3095027854046
Iteration: 19, Func. Count: 186, Neg. LLF: 88.3094115932566
Iteration: 20, Func. Count: 195, Neg. LLF: 88.30940285763374
Iteration: 21, Func. Count: 204, Neg. LLF: 88.30940176574582
Iteration: 22, Func. Count: 212, Neg. LLF: 88.30940182209375
Optimization terminated successfully (Exit mode 0)
Current function value: 88.30940176574582
Iterations: 22
Function evaluations: 212
Gradient evaluations: 22
Iteration: 1, Func. Count: 11, Neg. LLF: 124.12725897383639
Iteration: 2, Func. Count: 23, Neg. LLF: 943.2768798264517
Iteration: 3, Func. Count: 34, Neg. LLF: 5855817.480929828
Iteration: 4, Func. Count: 45, Neg. LLF: 2795.641079864132
Iteration: 5, Func. Count: 56, Neg. LLF: 918.5387994937128
Iteration: 6, Func. Count: 67, Neg. LLF: 404.34872956120984
Iteration: 7, Func. Count: 78, Neg. LLF: 90.24299171112257
Iteration: 8, Func. Count: 88, Neg. LLF: 95.96562908947779
Iteration: 9, Func. Count: 99, Neg. LLF: 91.51119361073881
Iteration: 10, Func. Count: 110, Neg. LLF: 88.82926958282681
Iteration: 11, Func. Count: 121, Neg. LLF: 88.52844356423415
Iteration: 12, Func. Count: 131, Neg. LLF: 88.18131549124024
Iteration: 13, Func. Count: 141, Neg. LLF: 88.04085110854132
Iteration: 14, Func. Count: 151, Neg. LLF: 88.05423185611538
Iteration: 15, Func. Count: 162, Neg. LLF: 88.0271075013204
Iteration: 16, Func. Count: 173, Neg. LLF: 87.94388099518419
Iteration: 17, Func. Count: 183, Neg. LLF: 87.93689365552945
Iteration: 18, Func. Count: 193, Neg. LLF: 87.92394404636995
Iteration: 19, Func. Count: 203, Neg. LLF: 87.90163112991438
Iteration: 20, Func. Count: 213, Neg. LLF: 87.88886118463648
Iteration: 21, Func. Count: 223, Neg. LLF: 87.88632403437477
Iteration: 22, Func. Count: 233, Neg. LLF: 87.88612189010063
Iteration: 23, Func. Count: 243, Neg. LLF: 87.88610929164476
Iteration: 24, Func. Count: 253, Neg. LLF: 87.88610811074201
Iteration: 25, Func. Count: 262, Neg. LLF: 87.8861082916456
Optimization terminated successfully (Exit mode 0)
Current function value: 87.88610811074201
Iterations: 25
Function evaluations: 262
Gradient evaluations: 25
Iteration: 1, Func. Count: 12, Neg. LLF: 122.73319237640945
Iteration: 2, Func. Count: 25, Neg. LLF: 967.7525728161281
Iteration: 3, Func. Count: 37, Neg. LLF: 5857875.04247598
Iteration: 4, Func. Count: 49, Neg. LLF: 3790.5563826266275
Iteration: 5, Func. Count: 61, Neg. LLF: 953.9719311394148
Iteration: 6, Func. Count: 73, Neg. LLF: 420.93202632800956
Iteration: 7, Func. Count: 85, Neg. LLF: 90.18903729476293
Iteration: 8, Func. Count: 96, Neg. LLF: 101.5188015269864
Iteration: 9, Func. Count: 108, Neg. LLF: 91.52842653680423
Iteration: 10, Func. Count: 120, Neg. LLF: 88.92564014556471
Iteration: 11, Func. Count: 132, Neg. LLF: 88.8289194286702
Iteration: 12, Func. Count: 144, Neg. LLF: 88.23879342236029
Iteration: 13, Func. Count: 155, Neg. LLF: 88.07137595344017
Iteration: 14, Func. Count: 166, Neg. LLF: 88.01577857206182
Iteration: 15, Func. Count: 177, Neg. LLF: 88.21687848903039
Iteration: 16, Func. Count: 189, Neg. LLF: 87.98910330304265
Iteration: 17, Func. Count: 201, Neg. LLF: 87.95057072465492
Iteration: 18, Func. Count: 212, Neg. LLF: 87.93781669709401
Iteration: 19, Func. Count: 223, Neg. LLF: 87.90870797740291
Iteration: 20, Func. Count: 234, Neg. LLF: 87.89040432791644
Iteration: 21, Func. Count: 245, Neg. LLF: 87.88663865564955
Iteration: 22, Func. Count: 256, Neg. LLF: 87.88617063363579
Iteration: 23, Func. Count: 267, Neg. LLF: 87.88611325912194
Iteration: 24, Func. Count: 278, Neg. LLF: 87.88610857287111
Iteration: 25, Func. Count: 289, Neg. LLF: 87.8861080654361
Optimization terminated successfully (Exit mode 0)
Current function value: 87.8861080654361
Iterations: 25
Function evaluations: 289
Gradient evaluations: 25
Iteration: 1, Func. Count: 13, Neg. LLF: 119.51536620792952
Iteration: 2, Func. Count: 27, Neg. LLF: 1202.1365021064423
Iteration: 3, Func. Count: 40, Neg. LLF: 5862988.519118133
Iteration: 4, Func. Count: 53, Neg. LLF: 4192.443132314683
Iteration: 5, Func. Count: 66, Neg. LLF: 971.7551260594836
Iteration: 6, Func. Count: 79, Neg. LLF: 423.47589933960916
Iteration: 7, Func. Count: 92, Neg. LLF: 89.90240251577359
Iteration: 8, Func. Count: 104, Neg. LLF: 104.70144930033173
Iteration: 9, Func. Count: 117, Neg. LLF: 90.43139346013336
Iteration: 10, Func. Count: 130, Neg. LLF: 88.87308989493316
Iteration: 11, Func. Count: 143, Neg. LLF: 88.82330971864403
Iteration: 12, Func. Count: 156, Neg. LLF: 88.42631805965148
Iteration: 13, Func. Count: 168, Neg. LLF: 88.32945978885303
Iteration: 14, Func. Count: 180, Neg. LLF: 90.09592053618185
Iteration: 15, Func. Count: 193, Neg. LLF: 88.180079932622
Iteration: 16, Func. Count: 205, Neg. LLF: 88.11689477478636
Iteration: 17, Func. Count: 217, Neg. LLF: 88.01111372721378
Iteration: 18, Func. Count: 229, Neg. LLF: 87.84627559587592
Iteration: 19, Func. Count: 241, Neg. LLF: 87.80074450717636
Iteration: 20, Func. Count: 253, Neg. LLF: 87.75894150253009
Iteration: 21, Func. Count: 265, Neg. LLF: 87.73014739880445
Iteration: 22, Func. Count: 277, Neg. LLF: 87.72425096077987
Iteration: 23, Func. Count: 289, Neg. LLF: 87.7237525330186
Iteration: 24, Func. Count: 301, Neg. LLF: 87.72367107399408
Iteration: 25, Func. Count: 313, Neg. LLF: 87.72366939912328
Iteration: 26, Func. Count: 324, Neg. LLF: 87.7236693800093
Optimization terminated successfully (Exit mode 0)
Current function value: 87.72366939912328
Iterations: 26
Function evaluations: 324
Gradient evaluations: 26
Iteration: 1, Func. Count: 10, Neg. LLF: 141.2044581947631
Iteration: 2, Func. Count: 21, Neg. LLF: 630.0203279990118
Iteration: 3, Func. Count: 31, Neg. LLF: 5851186.06768241
Iteration: 4, Func. Count: 41, Neg. LLF: 5632923.6663393555
Iteration: 5, Func. Count: 51, Neg. LLF: 5698640.029347116
Iteration: 6, Func. Count: 61, Neg. LLF: 5731488.053223808
Iteration: 7, Func. Count: 71, Neg. LLF: 4071535.961548567
Iteration: 8, Func. Count: 81, Neg. LLF: 94.59887272762849
Iteration: 9, Func. Count: 91, Neg. LLF: 89.17250058543043
Iteration: 10, Func. Count: 100, Neg. LLF: 103.83560365372418
Iteration: 11, Func. Count: 110, Neg. LLF: 92.86112382937534
Iteration: 12, Func. Count: 120, Neg. LLF: 88.54523146971499
Iteration: 13, Func. Count: 129, Neg. LLF: 88.33765160654794
Iteration: 14, Func. Count: 138, Neg. LLF: 88.31565239642491
Iteration: 15, Func. Count: 147, Neg. LLF: 88.31149332368007
Iteration: 16, Func. Count: 156, Neg. LLF: 88.3094642367963
Iteration: 17, Func. Count: 165, Neg. LLF: 88.30940345578632
Iteration: 18, Func. Count: 174, Neg. LLF: 88.3094017490864
Iteration: 19, Func. Count: 182, Neg. LLF: 88.3094012340959
Optimization terminated successfully (Exit mode 0)
Current function value: 88.3094017490864
Iterations: 19
Function evaluations: 182
Gradient evaluations: 19
Iteration: 1, Func. Count: 11, Neg. LLF: 126.63510840967196
Iteration: 2, Func. Count: 23, Neg. LLF: 881.243517395462
Iteration: 3, Func. Count: 34, Neg. LLF: 5874597.6116575515
Iteration: 4, Func. Count: 45, Neg. LLF: 2169.9410084511564
Iteration: 5, Func. Count: 56, Neg. LLF: 874.4808772004988
Iteration: 6, Func. Count: 67, Neg. LLF: 114.30267549300603
Iteration: 7, Func. Count: 78, Neg. LLF: 89.99364562590374
Iteration: 8, Func. Count: 88, Neg. LLF: 101.90687915761131
Iteration: 9, Func. Count: 99, Neg. LLF: 92.05471079605178
Iteration: 10, Func. Count: 112, Neg. LLF: 97.97318034232893
Iteration: 11, Func. Count: 124, Neg. LLF: 88.63835286414944
Iteration: 12, Func. Count: 134, Neg. LLF: 88.50880378245633
Iteration: 13, Func. Count: 144, Neg. LLF: 88.40230741914027
Iteration: 14, Func. Count: 154, Neg. LLF: 88.36255494866316
Iteration: 15, Func. Count: 164, Neg. LLF: 88.34045727331088
Iteration: 16, Func. Count: 174, Neg. LLF: 88.32235267755857
Iteration: 17, Func. Count: 184, Neg. LLF: 88.31702891622385
Iteration: 18, Func. Count: 194, Neg. LLF: 88.30963359443926
Iteration: 19, Func. Count: 204, Neg. LLF: 88.30940699852064
Iteration: 20, Func. Count: 214, Neg. LLF: 88.30940164666886
Iteration: 21, Func. Count: 223, Neg. LLF: 88.30940170297237
Optimization terminated successfully (Exit mode 0)
Current function value: 88.30940164666886
Iterations: 21
Function evaluations: 223
Gradient evaluations: 21
Iteration: 1, Func. Count: 12, Neg. LLF: 124.12900084793552
Iteration: 2, Func. Count: 25, Neg. LLF: 947.6702283379591
Iteration: 3, Func. Count: 37, Neg. LLF: 5856194.968847211
Iteration: 4, Func. Count: 49, Neg. LLF: 2779.2367726579505
Iteration: 5, Func. Count: 61, Neg. LLF: 911.9612631204812
Iteration: 6, Func. Count: 73, Neg. LLF: 402.56145747430634
Iteration: 7, Func. Count: 85, Neg. LLF: 90.25421808750811
Iteration: 8, Func. Count: 96, Neg. LLF: 95.75502523717462
Iteration: 9, Func. Count: 108, Neg. LLF: 91.47382119934197
Iteration: 10, Func. Count: 120, Neg. LLF: 88.82993660723422
Iteration: 11, Func. Count: 132, Neg. LLF: 88.54516481429897
Iteration: 12, Func. Count: 143, Neg. LLF: 88.16894685447963
Iteration: 13, Func. Count: 154, Neg. LLF: 88.02806524307852
Iteration: 14, Func. Count: 165, Neg. LLF: 88.18119206824821
Iteration: 15, Func. Count: 177, Neg. LLF: 88.24978784274835
Iteration: 16, Func. Count: 189, Neg. LLF: 87.95332194217382
Iteration: 17, Func. Count: 200, Neg. LLF: 87.9393245176902
Iteration: 18, Func. Count: 211, Neg. LLF: 87.93452247607081
Iteration: 19, Func. Count: 222, Neg. LLF: 87.91416968203377
Iteration: 20, Func. Count: 233, Neg. LLF: 87.89289671161958
Iteration: 21, Func. Count: 244, Neg. LLF: 87.88678095279076
Iteration: 22, Func. Count: 255, Neg. LLF: 87.88614105576771
Iteration: 23, Func. Count: 266, Neg. LLF: 87.8861094104298
Iteration: 24, Func. Count: 277, Neg. LLF: 87.88610822281643
Iteration: 25, Func. Count: 287, Neg. LLF: 87.88610840375253
Optimization terminated successfully (Exit mode 0)
Current function value: 87.88610822281643
Iterations: 25
Function evaluations: 287
Gradient evaluations: 25
Iteration: 1, Func. Count: 13, Neg. LLF: 122.75791848359226
Iteration: 2, Func. Count: 27, Neg. LLF: 968.0281890997085
Iteration: 3, Func. Count: 40, Neg. LLF: 5858101.566335349
Iteration: 4, Func. Count: 53, Neg. LLF: 3779.582289514014
Iteration: 5, Func. Count: 66, Neg. LLF: 948.0992959373241
Iteration: 6, Func. Count: 79, Neg. LLF: 419.3763077760217
Iteration: 7, Func. Count: 92, Neg. LLF: 90.19839671346061
Iteration: 8, Func. Count: 104, Neg. LLF: 101.06622642202265
Iteration: 9, Func. Count: 117, Neg. LLF: 91.49934105669064
Iteration: 10, Func. Count: 130, Neg. LLF: 88.91356528643735
Iteration: 11, Func. Count: 143, Neg. LLF: 88.86881314097911
Iteration: 12, Func. Count: 156, Neg. LLF: 88.22850259106175
Iteration: 13, Func. Count: 168, Neg. LLF: 88.07224958004225
Iteration: 14, Func. Count: 180, Neg. LLF: 88.03607092302963
Iteration: 15, Func. Count: 192, Neg. LLF: 87.96795274761774
Iteration: 16, Func. Count: 204, Neg. LLF: 87.95451588765854
Iteration: 17, Func. Count: 216, Neg. LLF: 87.9464148799587
Iteration: 18, Func. Count: 228, Neg. LLF: 87.90789924172
Iteration: 19, Func. Count: 240, Neg. LLF: 87.89415380806939
Iteration: 20, Func. Count: 252, Neg. LLF: 87.88868544168535
Iteration: 21, Func. Count: 264, Neg. LLF: 87.88628842088046
Iteration: 22, Func. Count: 276, Neg. LLF: 87.88612143181582
Iteration: 23, Func. Count: 288, Neg. LLF: 87.88610929637782
Iteration: 24, Func. Count: 300, Neg. LLF: 87.88610807488259
Iteration: 25, Func. Count: 311, Neg. LLF: 87.88610831232798
Optimization terminated successfully (Exit mode 0)
Current function value: 87.88610807488259
Iterations: 25
Function evaluations: 311
Gradient evaluations: 25
Iteration: 1, Func. Count: 14, Neg. LLF: 119.45761046031264
Iteration: 2, Func. Count: 29, Neg. LLF: 1208.414354696978
Iteration: 3, Func. Count: 43, Neg. LLF: 5863453.77415615
Iteration: 4, Func. Count: 57, Neg. LLF: 4189.629908650517
Iteration: 5, Func. Count: 71, Neg. LLF: 960.2801732085575
Iteration: 6, Func. Count: 85, Neg. LLF: 421.48611524492026
Iteration: 7, Func. Count: 99, Neg. LLF: 89.90726416996775
Iteration: 8, Func. Count: 112, Neg. LLF: 104.01007680516483
Iteration: 9, Func. Count: 126, Neg. LLF: 90.41596930177994
Iteration: 10, Func. Count: 140, Neg. LLF: 88.88364361955473
Iteration: 11, Func. Count: 154, Neg. LLF: 88.89542854161176
Iteration: 12, Func. Count: 168, Neg. LLF: 88.34337933087994
Iteration: 13, Func. Count: 181, Neg. LLF: 89.69138449407885
Iteration: 14, Func. Count: 196, Neg. LLF: 90.53641015080264
Iteration: 15, Func. Count: 210, Neg. LLF: 88.13990812261551
Iteration: 16, Func. Count: 223, Neg. LLF: 87.93986867431897
Iteration: 17, Func. Count: 236, Neg. LLF: 88.18160609131685
Iteration: 18, Func. Count: 250, Neg. LLF: 87.81237397873119
Iteration: 19, Func. Count: 263, Neg. LLF: 87.74716359314311
Iteration: 20, Func. Count: 276, Neg. LLF: 87.72907751478466
Iteration: 21, Func. Count: 289, Neg. LLF: 87.72391921590895
Iteration: 22, Func. Count: 302, Neg. LLF: 87.72369552078949
Iteration: 23, Func. Count: 315, Neg. LLF: 87.72367290802502
Iteration: 24, Func. Count: 328, Neg. LLF: 87.72366920636972
Iteration: 25, Func. Count: 340, Neg. LLF: 87.72366918740175
Optimization terminated successfully (Exit mode 0)
Current function value: 87.72366920636972
Iterations: 25
Function evaluations: 340
Gradient evaluations: 25
Iteration: 1, Func. Count: 11, Neg. LLF: 141.97478321237637
Iteration: 2, Func. Count: 23, Neg. LLF: 597.5733564766978
Iteration: 3, Func. Count: 34, Neg. LLF: 5849304.898842979
Iteration: 4, Func. Count: 45, Neg. LLF: 5629260.080114055
Iteration: 5, Func. Count: 56, Neg. LLF: 5691243.352994405
Iteration: 6, Func. Count: 67, Neg. LLF: 5725565.544757644
Iteration: 7, Func. Count: 78, Neg. LLF: 4086526.476228679
Iteration: 8, Func. Count: 89, Neg. LLF: 94.72156265382655
Iteration: 9, Func. Count: 100, Neg. LLF: 89.19599388061786
Iteration: 10, Func. Count: 110, Neg. LLF: 105.87426359937159
Iteration: 11, Func. Count: 121, Neg. LLF: 93.21094785757883
Iteration: 12, Func. Count: 132, Neg. LLF: 88.54130781561055
Iteration: 13, Func. Count: 142, Neg. LLF: 88.33871672183655
Iteration: 14, Func. Count: 152, Neg. LLF: 88.31628568206001
Iteration: 15, Func. Count: 162, Neg. LLF: 88.31178382434841
Iteration: 16, Func. Count: 172, Neg. LLF: 88.30947530904042
Iteration: 17, Func. Count: 182, Neg. LLF: 88.30940345922184
Iteration: 18, Func. Count: 192, Neg. LLF: 88.30940169918594
Iteration: 19, Func. Count: 201, Neg. LLF: 88.3094020383718
Optimization terminated successfully (Exit mode 0)
Current function value: 88.30940169918594
Iterations: 19
Function evaluations: 201
Gradient evaluations: 19
Iteration: 1, Func. Count: 12, Neg. LLF: 126.82686744795475
Iteration: 2, Func. Count: 25, Neg. LLF: 882.492127468241
Iteration: 3, Func. Count: 37, Neg. LLF: 5875696.872461088
Iteration: 4, Func. Count: 49, Neg. LLF: 2081.403278611423
Iteration: 5, Func. Count: 61, Neg. LLF: 863.6916014832245
Iteration: 6, Func. Count: 73, Neg. LLF: 122.2700499192196
Iteration: 7, Func. Count: 85, Neg. LLF: 90.03055666913744
Iteration: 8, Func. Count: 96, Neg. LLF: 100.35871168789191
Iteration: 9, Func. Count: 108, Neg. LLF: 91.66120643128939
Iteration: 10, Func. Count: 123, Neg. LLF: 98.20663035655456
Iteration: 11, Func. Count: 136, Neg. LLF: 88.5866377497639
Iteration: 12, Func. Count: 147, Neg. LLF: 88.4670080068378
Iteration: 13, Func. Count: 158, Neg. LLF: 88.39478086175728
Iteration: 14, Func. Count: 169, Neg. LLF: 88.35388761146204
Iteration: 15, Func. Count: 180, Neg. LLF: 88.319015185085
Iteration: 16, Func. Count: 191, Neg. LLF: 88.31156514811212
Iteration: 17, Func. Count: 202, Neg. LLF: 88.31033627617622
Iteration: 18, Func. Count: 213, Neg. LLF: 88.3095377463974
Iteration: 19, Func. Count: 224, Neg. LLF: 88.30940944537332
Iteration: 20, Func. Count: 235, Neg. LLF: 88.3094019222494
Iteration: 21, Func. Count: 245, Neg. LLF: 88.3094019786142
Optimization terminated successfully (Exit mode 0)
Current function value: 88.3094019222494
Iterations: 21
Function evaluations: 245
Gradient evaluations: 21
Iteration: 1, Func. Count: 13, Neg. LLF: 124.29261651199143
Iteration: 2, Func. Count: 27, Neg. LLF: 944.433302950791
Iteration: 3, Func. Count: 40, Neg. LLF: 5856815.824159715
Iteration: 4, Func. Count: 53, Neg. LLF: 2679.6070542562557
Iteration: 5, Func. Count: 66, Neg. LLF: 902.2928987346817
Iteration: 6, Func. Count: 79, Neg. LLF: 401.33255596955615
Iteration: 7, Func. Count: 92, Neg. LLF: 90.27062765306319
Iteration: 8, Func. Count: 104, Neg. LLF: 95.97246371657225
Iteration: 9, Func. Count: 117, Neg. LLF: 91.51511243920281
Iteration: 10, Func. Count: 130, Neg. LLF: 88.82859734167091
Iteration: 11, Func. Count: 143, Neg. LLF: 88.55281973534031
Iteration: 12, Func. Count: 156, Neg. LLF: 88.16031868573101
Iteration: 13, Func. Count: 168, Neg. LLF: 88.01049575252902
Iteration: 14, Func. Count: 180, Neg. LLF: 88.01675851447149
Iteration: 15, Func. Count: 193, Neg. LLF: 87.94542250480842
Iteration: 16, Func. Count: 205, Neg. LLF: 87.93812540684459
Iteration: 17, Func. Count: 217, Neg. LLF: 87.93273700572468
Iteration: 18, Func. Count: 229, Neg. LLF: 87.90941143005932
Iteration: 19, Func. Count: 241, Neg. LLF: 87.88856157031431
Iteration: 20, Func. Count: 253, Neg. LLF: 87.88650094976508
Iteration: 21, Func. Count: 265, Neg. LLF: 87.8861371851325
Iteration: 22, Func. Count: 277, Neg. LLF: 87.88610855110007
Iteration: 23, Func. Count: 288, Neg. LLF: 87.88610873198266
Optimization terminated successfully (Exit mode 0)
Current function value: 87.88610855110007
Iterations: 23
Function evaluations: 288
Gradient evaluations: 23
Iteration: 1, Func. Count: 14, Neg. LLF: 122.85108272000409
Iteration: 2, Func. Count: 29, Neg. LLF: 967.6226074250742
Iteration: 3, Func. Count: 43, Neg. LLF: 5858865.215328033
Iteration: 4, Func. Count: 57, Neg. LLF: 3614.773055586804
Iteration: 5, Func. Count: 71, Neg. LLF: 936.7937855501585
Iteration: 6, Func. Count: 85, Neg. LLF: 417.44960654652306
Iteration: 7, Func. Count: 99, Neg. LLF: 90.2216991985596
Iteration: 8, Func. Count: 112, Neg. LLF: 101.22622351159961
Iteration: 9, Func. Count: 126, Neg. LLF: 91.56714556585959
Iteration: 10, Func. Count: 140, Neg. LLF: 88.90495531289999
Iteration: 11, Func. Count: 153, Neg. LLF: 88.98505078500126
Iteration: 12, Func. Count: 167, Neg. LLF: 93.54028501713235
Iteration: 13, Func. Count: 181, Neg. LLF: 88.10016578299758
Iteration: 14, Func. Count: 194, Neg. LLF: 88.05370285600556
Iteration: 15, Func. Count: 207, Neg. LLF: 88.01947291180923
Iteration: 16, Func. Count: 220, Neg. LLF: 87.98584845502134
Iteration: 17, Func. Count: 233, Neg. LLF: 87.95833001576001
Iteration: 18, Func. Count: 246, Neg. LLF: 87.93369818402462
Iteration: 19, Func. Count: 259, Neg. LLF: 87.91976324752757
Iteration: 20, Func. Count: 272, Neg. LLF: 87.90893886074787
Iteration: 21, Func. Count: 285, Neg. LLF: 87.90485742152848
Iteration: 22, Func. Count: 298, Neg. LLF: 87.89059801626394
Iteration: 23, Func. Count: 311, Neg. LLF: 87.88615809149493
Iteration: 24, Func. Count: 324, Neg. LLF: 87.88610836577938
Iteration: 25, Func. Count: 336, Neg. LLF: 87.88610860318
Optimization terminated successfully (Exit mode 0)
Current function value: 87.88610836577938
Iterations: 25
Function evaluations: 336
Gradient evaluations: 25
Iteration: 1, Func. Count: 15, Neg. LLF: 119.61402500133721
Iteration: 2, Func. Count: 31, Neg. LLF: 1202.1202593382473
Iteration: 3, Func. Count: 46, Neg. LLF: 5864047.2406298
Iteration: 4, Func. Count: 61, Neg. LLF: 3993.7751402193967
Iteration: 5, Func. Count: 76, Neg. LLF: 948.6962597468472
Iteration: 6, Func. Count: 91, Neg. LLF: 419.53857050115033
Iteration: 7, Func. Count: 106, Neg. LLF: 89.92758933696612
Iteration: 8, Func. Count: 120, Neg. LLF: 104.24656547458902
Iteration: 9, Func. Count: 135, Neg. LLF: 90.46148545970865
Iteration: 10, Func. Count: 150, Neg. LLF: 88.88441719583679
Iteration: 11, Func. Count: 165, Neg. LLF: 88.89654099383054
Iteration: 12, Func. Count: 180, Neg. LLF: 88.34128351149947
Iteration: 13, Func. Count: 194, Neg. LLF: 89.92882697866786
Iteration: 14, Func. Count: 210, Neg. LLF: 89.86346715542346
Iteration: 15, Func. Count: 225, Neg. LLF: 88.1362705837843
Iteration: 16, Func. Count: 239, Neg. LLF: 87.94294489971708
Iteration: 17, Func. Count: 253, Neg. LLF: 87.96612934440033
Iteration: 18, Func. Count: 268, Neg. LLF: 87.80264188785728
Iteration: 19, Func. Count: 282, Neg. LLF: 87.74050729024925
Iteration: 20, Func. Count: 296, Neg. LLF: 87.72588150035858
Iteration: 21, Func. Count: 310, Neg. LLF: 87.72386061133611
Iteration: 22, Func. Count: 324, Neg. LLF: 87.72370771022476
Iteration: 23, Func. Count: 338, Neg. LLF: 87.72367246693875
Iteration: 24, Func. Count: 352, Neg. LLF: 87.72366928241233
Iteration: 25, Func. Count: 365, Neg. LLF: 87.72366926330965
Optimization terminated successfully (Exit mode 0)
Current function value: 87.72366928241233
Iterations: 25
Function evaluations: 365
Gradient evaluations: 25
Iteration: 1, Func. Count: 8, Neg. LLF: 142.60339522770988
Iteration: 2, Func. Count: 17, Neg. LLF: 160.45431846012175
Iteration: 3, Func. Count: 25, Neg. LLF: 1252.8414960637115
Iteration: 4, Func. Count: 33, Neg. LLF: 393.95257769595446
Iteration: 5, Func. Count: 41, Neg. LLF: 386.49655190464586
Iteration: 6, Func. Count: 49, Neg. LLF: 371.05017724979143
Iteration: 7, Func. Count: 57, Neg. LLF: 423.0964031231005
Iteration: 8, Func. Count: 65, Neg. LLF: 402.34206198335187
Iteration: 9, Func. Count: 73, Neg. LLF: 189.29564117864487
Iteration: 10, Func. Count: 81, Neg. LLF: 438.85584228442764
Iteration: 11, Func. Count: 89, Neg. LLF: 91.92474150602045
Iteration: 12, Func. Count: 96, Neg. LLF: 91.53342500603495
Iteration: 13, Func. Count: 104, Neg. LLF: 113.72015160703597
Iteration: 14, Func. Count: 112, Neg. LLF: 90.5170994803605
Iteration: 15, Func. Count: 119, Neg. LLF: 90.90723686517306
Iteration: 16, Func. Count: 127, Neg. LLF: 90.46346321265001
Iteration: 17, Func. Count: 134, Neg. LLF: 90.46310343038215
Iteration: 18, Func. Count: 141, Neg. LLF: 90.46308609272369
Iteration: 19, Func. Count: 148, Neg. LLF: 90.4630845328915
Iteration: 20, Func. Count: 154, Neg. LLF: 90.46308479016413
Optimization terminated successfully (Exit mode 0)
Current function value: 90.4630845328915
Iterations: 20
Function evaluations: 154
Gradient evaluations: 20
Iteration: 1, Func. Count: 9, Neg. LLF: 183.93742402324014
Iteration: 2, Func. Count: 21, Neg. LLF: 103.18189913263429
Iteration: 3, Func. Count: 30, Neg. LLF: 99.02530955693152
Iteration: 4, Func. Count: 38, Neg. LLF: 197.60194626814285
Iteration: 5, Func. Count: 47, Neg. LLF: 98.64962536234668
Iteration: 6, Func. Count: 55, Neg. LLF: 98.60800754215488
Iteration: 7, Func. Count: 63, Neg. LLF: 98.59013536568138
Iteration: 8, Func. Count: 71, Neg. LLF: 98.59007057508481
Iteration: 9, Func. Count: 79, Neg. LLF: 100.45097692154967
Optimization terminated successfully (Exit mode 0)
Current function value: 98.59007028696756
Iterations: 10
Function evaluations: 83
Gradient evaluations: 9
Iteration: 1, Func. Count: 10, Neg. LLF: 176.5231523461457
Iteration: 2, Func. Count: 23, Neg. LLF: 105.49932831382274
Iteration: 3, Func. Count: 33, Neg. LLF: 98.60115466146637
Iteration: 4, Func. Count: 42, Neg. LLF: 98.56203904885169
Iteration: 5, Func. Count: 51, Neg. LLF: 98.52325571208152
Iteration: 6, Func. Count: 60, Neg. LLF: 98.52238829574472
Iteration: 7, Func. Count: 69, Neg. LLF: 98.52237236361897
Iteration: 8, Func. Count: 78, Neg. LLF: 98.52321542741416
Optimization terminated successfully (Exit mode 0)
Current function value: 98.52237235529543
Iterations: 9
Function evaluations: 81
Gradient evaluations: 8
Iteration: 1, Func. Count: 11, Neg. LLF: 172.90198964525385
Iteration: 2, Func. Count: 26, Neg. LLF: 107.30647853063752
Iteration: 3, Func. Count: 37, Neg. LLF: 98.73887675869369
Iteration: 4, Func. Count: 47, Neg. LLF: 98.85997446581746
Iteration: 5, Func. Count: 58, Neg. LLF: 98.67869248013442
Iteration: 6, Func. Count: 68, Neg. LLF: 98.67825232309245
Iteration: 7, Func. Count: 78, Neg. LLF: 98.67823895547916
Iteration: 8, Func. Count: 88, Neg. LLF: 98.67823422494065
Iteration: 9, Func. Count: 97, Neg. LLF: 98.67823409065751
Optimization terminated successfully (Exit mode 0)
Current function value: 98.67823422494065
Iterations: 9
Function evaluations: 97
Gradient evaluations: 9
Iteration: 1, Func. Count: 12, Neg. LLF: 172.62837972601017
Iteration: 2, Func. Count: 28, Neg. LLF: 108.40644809168545
Iteration: 3, Func. Count: 40, Neg. LLF: 98.72769750753771
Iteration: 4, Func. Count: 51, Neg. LLF: 98.70139353738858
Iteration: 5, Func. Count: 62, Neg. LLF: 98.70119520886276
Iteration: 6, Func. Count: 73, Neg. LLF: 98.70101092666793
Iteration: 7, Func. Count: 84, Neg. LLF: 98.70100664781968
Iteration: 8, Func. Count: 94, Neg. LLF: 98.70100654383612
Optimization terminated successfully (Exit mode 0)
Current function value: 98.70100664781968
Iterations: 8
Function evaluations: 94
Gradient evaluations: 8
Iteration: 1, Func. Count: 9, Neg. LLF: 144.89493816737303
Iteration: 2, Func. Count: 19, Neg. LLF: 177.42702294999833
Iteration: 3, Func. Count: 28, Neg. LLF: 5756198.911696371
Iteration: 4, Func. Count: 37, Neg. LLF: 6121212.2543211505
Iteration: 5, Func. Count: 46, Neg. LLF: 5608728.198494729
Iteration: 6, Func. Count: 55, Neg. LLF: 6008558.925666185
Iteration: 7, Func. Count: 64, Neg. LLF: 5996571.994987714
Iteration: 8, Func. Count: 73, Neg. LLF: 97.8976290896938
Iteration: 9, Func. Count: 82, Neg. LLF: 11130.06610685322
Iteration: 10, Func. Count: 91, Neg. LLF: 91.01567584315588
Iteration: 11, Func. Count: 99, Neg. LLF: 696.5189733164174
Iteration: 12, Func. Count: 109, Neg. LLF: 109.36384534067697
Iteration: 13, Func. Count: 120, Neg. LLF: 89.44212655382101
Iteration: 14, Func. Count: 128, Neg. LLF: 89.38031959742001
Iteration: 15, Func. Count: 136, Neg. LLF: 89.37948096383242
Iteration: 16, Func. Count: 144, Neg. LLF: 89.37656092161981
Iteration: 17, Func. Count: 152, Neg. LLF: 89.37562111740672
Iteration: 18, Func. Count: 160, Neg. LLF: 89.37537119532166
Iteration: 19, Func. Count: 168, Neg. LLF: 89.37535717929707
Iteration: 20, Func. Count: 176, Neg. LLF: 89.37535591718463
Iteration: 21, Func. Count: 183, Neg. LLF: 89.37535621452894
Optimization terminated successfully (Exit mode 0)
Current function value: 89.37535591718463
Iterations: 21
Function evaluations: 183
Gradient evaluations: 21
Iteration: 1, Func. Count: 10, Neg. LLF: 100.71471539591747
Iteration: 2, Func. Count: 20, Neg. LLF: 1675.558741207802
Iteration: 3, Func. Count: 30, Neg. LLF: 2285002.8991784556
Iteration: 4, Func. Count: 40, Neg. LLF: 3973.744990045391
Iteration: 5, Func. Count: 50, Neg. LLF: 932.9281380524501
Iteration: 6, Func. Count: 60, Neg. LLF: 509.3731494545024
Iteration: 7, Func. Count: 70, Neg. LLF: 338.1911572784529
Iteration: 8, Func. Count: 80, Neg. LLF: 90.26822327030193
Iteration: 9, Func. Count: 90, Neg. LLF: 88.94478473335681
Iteration: 10, Func. Count: 99, Neg. LLF: 89.17161021581778
Iteration: 11, Func. Count: 110, Neg. LLF: 88.92548963447153
Iteration: 12, Func. Count: 120, Neg. LLF: 88.87913031395114
Iteration: 13, Func. Count: 129, Neg. LLF: 88.87435095512012
Iteration: 14, Func. Count: 138, Neg. LLF: 88.87410177771311
Iteration: 15, Func. Count: 147, Neg. LLF: 88.87409947744355
Iteration: 16, Func. Count: 155, Neg. LLF: 88.87409947745681
Optimization terminated successfully (Exit mode 0)
Current function value: 88.87409947744355
Iterations: 16
Function evaluations: 155
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 101.23729572144926
Iteration: 2, Func. Count: 22, Neg. LLF: 134.62348084148354
Iteration: 3, Func. Count: 33, Neg. LLF: 2314264.042529656
Iteration: 4, Func. Count: 44, Neg. LLF: 1479.4756974434424
Iteration: 5, Func. Count: 55, Neg. LLF: 527.069123266236
Iteration: 6, Func. Count: 66, Neg. LLF: 336.46670327278656
Iteration: 7, Func. Count: 77, Neg. LLF: 95.62670669695557
Iteration: 8, Func. Count: 88, Neg. LLF: 88.926510075781
Iteration: 9, Func. Count: 98, Neg. LLF: 88.94370035266577
Iteration: 10, Func. Count: 109, Neg. LLF: 90.16298810517212
Iteration: 11, Func. Count: 120, Neg. LLF: 88.88122408793868
Iteration: 12, Func. Count: 130, Neg. LLF: 88.87448458330695
Iteration: 13, Func. Count: 140, Neg. LLF: 88.87417333638122
Iteration: 14, Func. Count: 150, Neg. LLF: 88.874099511579
Iteration: 15, Func. Count: 159, Neg. LLF: 88.87409960686593
Optimization terminated successfully (Exit mode 0)
Current function value: 88.874099511579
Iterations: 15
Function evaluations: 159
Gradient evaluations: 15
Iteration: 1, Func. Count: 12, Neg. LLF: 138.1529520202109
Iteration: 2, Func. Count: 28, Neg. LLF: 242.99303364959954
Iteration: 3, Func. Count: 40, Neg. LLF: 256.74433187863065
Iteration: 4, Func. Count: 52, Neg. LLF: 4742.512347778346
Iteration: 5, Func. Count: 64, Neg. LLF: 115.23338066045487
Iteration: 6, Func. Count: 76, Neg. LLF: 105.23676067745005
Iteration: 7, Func. Count: 88, Neg. LLF: 93.15661651864379
Iteration: 8, Func. Count: 99, Neg. LLF: 91.85623199322112
Iteration: 9, Func. Count: 110, Neg. LLF: 138.1458280580431
Iteration: 10, Func. Count: 122, Neg. LLF: 91.55999550170506
Iteration: 11, Func. Count: 133, Neg. LLF: 90.97255882197189
Iteration: 12, Func. Count: 144, Neg. LLF: 90.3984326428484
Iteration: 13, Func. Count: 155, Neg. LLF: 89.5805065979825
Iteration: 14, Func. Count: 166, Neg. LLF: 89.10270370025374
Iteration: 15, Func. Count: 177, Neg. LLF: 88.88848348108544
Iteration: 16, Func. Count: 188, Neg. LLF: 88.87775330380413
Iteration: 17, Func. Count: 199, Neg. LLF: 88.87482337641724
Iteration: 18, Func. Count: 210, Neg. LLF: 88.87415004812084
Iteration: 19, Func. Count: 221, Neg. LLF: 88.87410152378956
Iteration: 20, Func. Count: 232, Neg. LLF: 88.87409955086584
Iteration: 21, Func. Count: 242, Neg. LLF: 88.87409963658057
Optimization terminated successfully (Exit mode 0)
Current function value: 88.87409955086584
Iterations: 21
Function evaluations: 242
Gradient evaluations: 21
Iteration: 1, Func. Count: 13, Neg. LLF: 139.00902649786286
Iteration: 2, Func. Count: 30, Neg. LLF: 349.74765955266855
Iteration: 3, Func. Count: 43, Neg. LLF: 478.4749930254888
Iteration: 4, Func. Count: 56, Neg. LLF: 7556.3234145182805
Iteration: 5, Func. Count: 69, Neg. LLF: 106.91321605986928
Iteration: 6, Func. Count: 82, Neg. LLF: 134.8557266067908
Iteration: 7, Func. Count: 95, Neg. LLF: 92.16512596430434
Iteration: 8, Func. Count: 107, Neg. LLF: 198.40704349556148
Iteration: 9, Func. Count: 121, Neg. LLF: 108.43815835104732
Iteration: 10, Func. Count: 134, Neg. LLF: 91.48895743273397
Iteration: 11, Func. Count: 146, Neg. LLF: 91.14934978869377
Iteration: 12, Func. Count: 158, Neg. LLF: 90.09805888100261
Iteration: 13, Func. Count: 170, Neg. LLF: 89.46212180400647
Iteration: 14, Func. Count: 182, Neg. LLF: 88.97110828878307
Iteration: 15, Func. Count: 194, Neg. LLF: 88.88191282563824
Iteration: 16, Func. Count: 206, Neg. LLF: 88.87417359535428
Iteration: 17, Func. Count: 218, Neg. LLF: 88.87412459536154
Iteration: 18, Func. Count: 230, Neg. LLF: 88.874100787803
Iteration: 19, Func. Count: 242, Neg. LLF: 88.87409961636635
Iteration: 20, Func. Count: 253, Neg. LLF: 88.87409971864447
Optimization terminated successfully (Exit mode 0)
Current function value: 88.87409961636635
Iterations: 20
Function evaluations: 253
Gradient evaluations: 20
Iteration: 1, Func. Count: 10, Neg. LLF: 147.89555592455386
Iteration: 2, Func. Count: 21, Neg. LLF: 689.8950928430775
Iteration: 3, Func. Count: 31, Neg. LLF: 5842204.378796681
Iteration: 4, Func. Count: 41, Neg. LLF: 5851504.354673588
Iteration: 5, Func. Count: 51, Neg. LLF: 5898217.119833965
Iteration: 6, Func. Count: 61, Neg. LLF: 5971477.765561331
Iteration: 7, Func. Count: 71, Neg. LLF: 5647086.493309835
Iteration: 8, Func. Count: 81, Neg. LLF: 5687579.349787138
Iteration: 9, Func. Count: 91, Neg. LLF: 93.69687707899207
Iteration: 10, Func. Count: 101, Neg. LLF: 96.43276284746102
Iteration: 11, Func. Count: 111, Neg. LLF: 97.31632734489042
Iteration: 12, Func. Count: 121, Neg. LLF: 90.4544580316086
Iteration: 13, Func. Count: 131, Neg. LLF: 90.04797879011821
Iteration: 14, Func. Count: 142, Neg. LLF: 90.87917233083887
Iteration: 15, Func. Count: 153, Neg. LLF: 88.03045140294508
Iteration: 16, Func. Count: 162, Neg. LLF: 87.93975272116631
Iteration: 17, Func. Count: 171, Neg. LLF: 87.9202107476872
Iteration: 18, Func. Count: 180, Neg. LLF: 87.91521816113182
Iteration: 19, Func. Count: 189, Neg. LLF: 87.90332187452509
Iteration: 20, Func. Count: 198, Neg. LLF: 87.89467365286825
Iteration: 21, Func. Count: 207, Neg. LLF: 87.88648145944757
Iteration: 22, Func. Count: 216, Neg. LLF: 87.88614805928384
Iteration: 23, Func. Count: 225, Neg. LLF: 87.88610822939947
Iteration: 24, Func. Count: 233, Neg. LLF: 87.88610823463867
Optimization terminated successfully (Exit mode 0)
Current function value: 87.88610822939947
Iterations: 24
Function evaluations: 233
Gradient evaluations: 24
Iteration: 1, Func. Count: 11, Neg. LLF: 92.15435921234746
Iteration: 2, Func. Count: 21, Neg. LLF: 766.6283485777275
Iteration: 3, Func. Count: 32, Neg. LLF: 2391.149336349509
Iteration: 4, Func. Count: 43, Neg. LLF: 3971082.4388772203
Iteration: 5, Func. Count: 54, Neg. LLF: 1362207.2493669498
Iteration: 6, Func. Count: 65, Neg. LLF: 92.8376172467182
Iteration: 7, Func. Count: 76, Neg. LLF: 399.5582321435454
Iteration: 8, Func. Count: 87, Neg. LLF: 88.56114900156223
Iteration: 9, Func. Count: 98, Neg. LLF: 88.41358357950739
Iteration: 10, Func. Count: 109, Neg. LLF: 88.3104422502017
Iteration: 11, Func. Count: 119, Neg. LLF: 88.30947877747512
Iteration: 12, Func. Count: 129, Neg. LLF: 88.30940348102268
Iteration: 13, Func. Count: 139, Neg. LLF: 88.30940176511966
Iteration: 14, Func. Count: 148, Neg. LLF: 88.30940182141819
Optimization terminated successfully (Exit mode 0)
Current function value: 88.30940176511966
Iterations: 14
Function evaluations: 148
Gradient evaluations: 14
Iteration: 1, Func. Count: 12, Neg. LLF: 92.04767157936814
Iteration: 2, Func. Count: 23, Neg. LLF: 30680.933974621777
Iteration: 3, Func. Count: 35, Neg. LLF: 6980.815816529719
Iteration: 4, Func. Count: 47, Neg. LLF: 3904856.1541011245
Iteration: 5, Func. Count: 59, Neg. LLF: 7688.626647166652
Iteration: 6, Func. Count: 71, Neg. LLF: 219.61618122111346
Iteration: 7, Func. Count: 83, Neg. LLF: 941.776578895177
Iteration: 8, Func. Count: 95, Neg. LLF: 300.4043632889029
Iteration: 9, Func. Count: 107, Neg. LLF: 89.97303047294322
Iteration: 10, Func. Count: 119, Neg. LLF: 88.47633573696656
Iteration: 11, Func. Count: 131, Neg. LLF: 88.42674140630099
Iteration: 12, Func. Count: 143, Neg. LLF: 88.02344504735328
Iteration: 13, Func. Count: 154, Neg. LLF: 87.99555598420177
Iteration: 14, Func. Count: 165, Neg. LLF: 87.90911658707695
Iteration: 15, Func. Count: 176, Neg. LLF: 87.8864205433036
Iteration: 16, Func. Count: 187, Neg. LLF: 87.88615178084784
Iteration: 17, Func. Count: 198, Neg. LLF: 87.88611475097693
Iteration: 18, Func. Count: 209, Neg. LLF: 87.8861080829367
Iteration: 19, Func. Count: 219, Neg. LLF: 87.88610826382545
Optimization terminated successfully (Exit mode 0)
Current function value: 87.8861080829367
Iterations: 19
Function evaluations: 219
Gradient evaluations: 19
Iteration: 1, Func. Count: 13, Neg. LLF: 137.86251297687707
Iteration: 2, Func. Count: 30, Neg. LLF: 258.84823688010295
Iteration: 3, Func. Count: 43, Neg. LLF: 377.374253275326
Iteration: 4, Func. Count: 56, Neg. LLF: 203.79190335588592
Iteration: 5, Func. Count: 69, Neg. LLF: 140.8015103852839
Iteration: 6, Func. Count: 82, Neg. LLF: 141.73406415951553
Iteration: 7, Func. Count: 95, Neg. LLF: 365.30251020142146
Iteration: 8, Func. Count: 108, Neg. LLF: 92.39006879692809
Iteration: 9, Func. Count: 120, Neg. LLF: 1168.2670589980298
Iteration: 10, Func. Count: 133, Neg. LLF: 93.47525427848973
Iteration: 11, Func. Count: 146, Neg. LLF: 95.27454667804433
Iteration: 12, Func. Count: 160, Neg. LLF: 90.09694022999969
Iteration: 13, Func. Count: 173, Neg. LLF: 89.30713977982818
Iteration: 14, Func. Count: 185, Neg. LLF: 89.25805076391997
Iteration: 15, Func. Count: 197, Neg. LLF: 89.26215592311024
Iteration: 16, Func. Count: 210, Neg. LLF: 89.12286699245182
Iteration: 17, Func. Count: 222, Neg. LLF: 88.92774284661773
Iteration: 18, Func. Count: 234, Neg. LLF: 88.55746917620134
Iteration: 19, Func. Count: 246, Neg. LLF: 88.39580196484721
Iteration: 20, Func. Count: 258, Neg. LLF: 88.33875947700444
Iteration: 21, Func. Count: 270, Neg. LLF: 88.31918415550517
Iteration: 22, Func. Count: 282, Neg. LLF: 88.31398057153018
Iteration: 23, Func. Count: 294, Neg. LLF: 88.31163130189829
Iteration: 24, Func. Count: 306, Neg. LLF: 88.31053614741455
Iteration: 25, Func. Count: 318, Neg. LLF: 88.30970109764414
Iteration: 26, Func. Count: 330, Neg. LLF: 88.30945096090127
Iteration: 27, Func. Count: 342, Neg. LLF: 88.30941171802365
Iteration: 28, Func. Count: 354, Neg. LLF: 88.3094037968768
Iteration: 29, Func. Count: 366, Neg. LLF: 88.30940245963325
Iteration: 30, Func. Count: 378, Neg. LLF: 88.30940162623678
Optimization terminated successfully (Exit mode 0)
Current function value: 88.30940162623678
Iterations: 30
Function evaluations: 378
Gradient evaluations: 30
Iteration: 1, Func. Count: 14, Neg. LLF: 139.0432801675
Iteration: 2, Func. Count: 32, Neg. LLF: 277.52887735997484
Iteration: 3, Func. Count: 46, Neg. LLF: 205.75095770749368
Iteration: 4, Func. Count: 60, Neg. LLF: 139.37830693562947
Iteration: 5, Func. Count: 74, Neg. LLF: 170.68452629766944
Iteration: 6, Func. Count: 89, Neg. LLF: 167.42752039403481
Iteration: 7, Func. Count: 103, Neg. LLF: 90.202725960965
Iteration: 8, Func. Count: 116, Neg. LLF: 95.01202448536002
Iteration: 9, Func. Count: 132, Neg. LLF: 95.04499426394048
Iteration: 10, Func. Count: 146, Neg. LLF: 88.77600804880255
Iteration: 11, Func. Count: 159, Neg. LLF: 88.92580085750622
Iteration: 12, Func. Count: 173, Neg. LLF: 88.58678696015738
Iteration: 13, Func. Count: 186, Neg. LLF: 88.57899419717901
Iteration: 14, Func. Count: 199, Neg. LLF: 88.53320984258247
Iteration: 15, Func. Count: 212, Neg. LLF: 88.4243799038145
Iteration: 16, Func. Count: 225, Neg. LLF: 88.35939250737516
Iteration: 17, Func. Count: 238, Neg. LLF: 88.32952336119538
Iteration: 18, Func. Count: 251, Neg. LLF: 88.32439409912242
Iteration: 19, Func. Count: 264, Neg. LLF: 88.31914604565745
Iteration: 20, Func. Count: 277, Neg. LLF: 88.31409513615716
Iteration: 21, Func. Count: 290, Neg. LLF: 88.30978024286951
Iteration: 22, Func. Count: 303, Neg. LLF: 88.3095204652154
Iteration: 23, Func. Count: 316, Neg. LLF: 88.30940423333882
Iteration: 24, Func. Count: 329, Neg. LLF: 88.30940203570952
Iteration: 25, Func. Count: 341, Neg. LLF: 88.30940216874183
Optimization terminated successfully (Exit mode 0)
Current function value: 88.30940203570952
Iterations: 25
Function evaluations: 341
Gradient evaluations: 25
Iteration: 1, Func. Count: 11, Neg. LLF: 147.9649358774801
Iteration: 2, Func. Count: 23, Neg. LLF: 686.4673534286865
Iteration: 3, Func. Count: 34, Neg. LLF: 5842269.746627265
Iteration: 4, Func. Count: 45, Neg. LLF: 5851035.296637344
Iteration: 5, Func. Count: 56, Neg. LLF: 5896340.572915299
Iteration: 6, Func. Count: 67, Neg. LLF: 5967745.252173995
Iteration: 7, Func. Count: 78, Neg. LLF: 5644816.57700674
Iteration: 8, Func. Count: 89, Neg. LLF: 5684748.222275209
Iteration: 9, Func. Count: 100, Neg. LLF: 93.5869972774712
Iteration: 10, Func. Count: 111, Neg. LLF: 96.71402246072677
Iteration: 11, Func. Count: 122, Neg. LLF: 97.46194449709944
Iteration: 12, Func. Count: 133, Neg. LLF: 90.11940507563676
Iteration: 13, Func. Count: 144, Neg. LLF: 90.20923771635144
Iteration: 14, Func. Count: 156, Neg. LLF: 88.44983723979142
Iteration: 15, Func. Count: 166, Neg. LLF: 88.00307081042762
Iteration: 16, Func. Count: 176, Neg. LLF: 87.94761712332036
Iteration: 17, Func. Count: 186, Neg. LLF: 87.92382269190725
Iteration: 18, Func. Count: 196, Neg. LLF: 87.91937153459278
Iteration: 19, Func. Count: 206, Neg. LLF: 87.89842109688293
Iteration: 20, Func. Count: 216, Neg. LLF: 87.88627270906659
Iteration: 21, Func. Count: 226, Neg. LLF: 87.88611151488551
Iteration: 22, Func. Count: 236, Neg. LLF: 87.88610806658077
Iteration: 23, Func. Count: 245, Neg. LLF: 87.88610776105455
Optimization terminated successfully (Exit mode 0)
Current function value: 87.88610806658077
Iterations: 23
Function evaluations: 245
Gradient evaluations: 23
Iteration: 1, Func. Count: 12, Neg. LLF: 92.29140824875239
Iteration: 2, Func. Count: 23, Neg. LLF: 553.9494552105488
Iteration: 3, Func. Count: 35, Neg. LLF: 5687.934190322949
Iteration: 4, Func. Count: 47, Neg. LLF: 3978828.785867148
Iteration: 5, Func. Count: 59, Neg. LLF: 472000.0450981301
Iteration: 6, Func. Count: 71, Neg. LLF: 93.42445029587009
Iteration: 7, Func. Count: 83, Neg. LLF: 89.13868267250766
Iteration: 8, Func. Count: 95, Neg. LLF: 88.6105064765716
Iteration: 9, Func. Count: 107, Neg. LLF: 88.34636630128415
Iteration: 10, Func. Count: 119, Neg. LLF: 88.32418485317665
Iteration: 11, Func. Count: 131, Neg. LLF: 88.30954927122535
Iteration: 12, Func. Count: 142, Neg. LLF: 88.30940304697492
Iteration: 13, Func. Count: 153, Neg. LLF: 88.30940161666133
Iteration: 14, Func. Count: 163, Neg. LLF: 88.30940167296724
Optimization terminated successfully (Exit mode 0)
Current function value: 88.30940161666133
Iterations: 14
Function evaluations: 163
Gradient evaluations: 14
Iteration: 1, Func. Count: 13, Neg. LLF: 135.98901967588182
Iteration: 2, Func. Count: 30, Neg. LLF: 211.64609829617808
Iteration: 3, Func. Count: 43, Neg. LLF: 244.31014733109075
Iteration: 4, Func. Count: 56, Neg. LLF: 162.10445644381235
Iteration: 5, Func. Count: 69, Neg. LLF: 137.90575318671134
Iteration: 6, Func. Count: 82, Neg. LLF: 97.81963690303043
Iteration: 7, Func. Count: 95, Neg. LLF: 100.75155656193283
Iteration: 8, Func. Count: 108, Neg. LLF: 90.16926901841005
Iteration: 9, Func. Count: 120, Neg. LLF: 89.78158569746802
Iteration: 10, Func. Count: 133, Neg. LLF: 98.70694123374413
Iteration: 11, Func. Count: 150, Neg. LLF: 89.04257474749556
Iteration: 12, Func. Count: 162, Neg. LLF: 88.746843090443
Iteration: 13, Func. Count: 174, Neg. LLF: 88.64779989475517
Iteration: 14, Func. Count: 186, Neg. LLF: 88.6300012323429
Iteration: 15, Func. Count: 198, Neg. LLF: 88.602548180304
Iteration: 16, Func. Count: 210, Neg. LLF: 88.560907324681
Iteration: 17, Func. Count: 222, Neg. LLF: 88.47350366878794
Iteration: 18, Func. Count: 234, Neg. LLF: 88.38858014351797
Iteration: 19, Func. Count: 246, Neg. LLF: 88.3551789837835
Iteration: 20, Func. Count: 258, Neg. LLF: 88.35070816302215
Iteration: 21, Func. Count: 270, Neg. LLF: 88.34848390536945
Iteration: 22, Func. Count: 282, Neg. LLF: 88.34701176461034
Iteration: 23, Func. Count: 294, Neg. LLF: 88.3436770792305
Iteration: 24, Func. Count: 306, Neg. LLF: 88.33028225631804
Iteration: 25, Func. Count: 318, Neg. LLF: 88.3254241278953
Iteration: 26, Func. Count: 330, Neg. LLF: 88.31106971962872
Iteration: 27, Func. Count: 342, Neg. LLF: 88.30973008761097
Iteration: 28, Func. Count: 354, Neg. LLF: 88.30946073305729
Iteration: 29, Func. Count: 366, Neg. LLF: 88.30940165958103
Iteration: 30, Func. Count: 377, Neg. LLF: 88.30940178320817
Optimization terminated successfully (Exit mode 0)
Current function value: 88.30940165958103
Iterations: 30
Function evaluations: 377
Gradient evaluations: 30
Iteration: 1, Func. Count: 14, Neg. LLF: 137.88618705267984
Iteration: 2, Func. Count: 32, Neg. LLF: 255.97483707945338
Iteration: 3, Func. Count: 46, Neg. LLF: 370.96883245144306
Iteration: 4, Func. Count: 60, Neg. LLF: 234.16831908133915
Iteration: 5, Func. Count: 74, Neg. LLF: 142.83774263381838
Iteration: 6, Func. Count: 88, Neg. LLF: 138.9418480503807
Iteration: 7, Func. Count: 102, Neg. LLF: 329.93539631437693
Iteration: 8, Func. Count: 116, Neg. LLF: 92.27445096934763
Iteration: 9, Func. Count: 129, Neg. LLF: 1121.4758797396905
Iteration: 10, Func. Count: 143, Neg. LLF: 100.81890809896673
Iteration: 11, Func. Count: 157, Neg. LLF: 92.92710342477324
Iteration: 12, Func. Count: 171, Neg. LLF: 91.01016596019176
Iteration: 13, Func. Count: 185, Neg. LLF: 89.26871941802216
Iteration: 14, Func. Count: 198, Neg. LLF: 89.18541719026334
Iteration: 15, Func. Count: 211, Neg. LLF: 89.15173935725339
Iteration: 16, Func. Count: 224, Neg. LLF: 89.03158382594037
Iteration: 17, Func. Count: 237, Neg. LLF: 88.75898743802207
Iteration: 18, Func. Count: 250, Neg. LLF: 88.5209902548612
Iteration: 19, Func. Count: 263, Neg. LLF: 88.44581047996783
Iteration: 20, Func. Count: 276, Neg. LLF: 88.36931767250866
Iteration: 21, Func. Count: 289, Neg. LLF: 88.35457646131685
Iteration: 22, Func. Count: 302, Neg. LLF: 88.34442494182227
Iteration: 23, Func. Count: 315, Neg. LLF: 88.33894031712363
Iteration: 24, Func. Count: 328, Neg. LLF: 88.32951762784649
Iteration: 25, Func. Count: 341, Neg. LLF: 88.31923642391486
Iteration: 26, Func. Count: 354, Neg. LLF: 88.31082887286559
Iteration: 27, Func. Count: 367, Neg. LLF: 88.30996786713418
Iteration: 28, Func. Count: 380, Neg. LLF: 88.30945949014871
Iteration: 29, Func. Count: 393, Neg. LLF: 88.30940394453883
Iteration: 30, Func. Count: 406, Neg. LLF: 88.30940212896462
Iteration: 31, Func. Count: 418, Neg. LLF: 88.30940227960906
Optimization terminated successfully (Exit mode 0)
Current function value: 88.30940212896462
Iterations: 31
Function evaluations: 418
Gradient evaluations: 31
Iteration: 1, Func. Count: 15, Neg. LLF: 139.1152617980839
Iteration: 2, Func. Count: 34, Neg. LLF: 275.94843610079863
Iteration: 3, Func. Count: 49, Neg. LLF: 206.8998106684419
Iteration: 4, Func. Count: 64, Neg. LLF: 139.87950674710171
Iteration: 5, Func. Count: 79, Neg. LLF: 167.75703738378402
Iteration: 6, Func. Count: 95, Neg. LLF: 168.13102096607506
Iteration: 7, Func. Count: 110, Neg. LLF: 90.20821169770826
Iteration: 8, Func. Count: 124, Neg. LLF: 95.70600509897707
Iteration: 9, Func. Count: 141, Neg. LLF: 95.03753658760851
Iteration: 10, Func. Count: 156, Neg. LLF: 88.7884263865347
Iteration: 11, Func. Count: 170, Neg. LLF: 89.00906284313477
Iteration: 12, Func. Count: 185, Neg. LLF: 88.58782731915429
Iteration: 13, Func. Count: 199, Neg. LLF: 88.58013521112525
Iteration: 14, Func. Count: 213, Neg. LLF: 88.53482971460505
Iteration: 15, Func. Count: 227, Neg. LLF: 88.42579728796775
Iteration: 16, Func. Count: 241, Neg. LLF: 88.36061768319499
Iteration: 17, Func. Count: 255, Neg. LLF: 88.33052146952171
Iteration: 18, Func. Count: 269, Neg. LLF: 88.32564029150154
Iteration: 19, Func. Count: 283, Neg. LLF: 88.32068895238643
Iteration: 20, Func. Count: 297, Neg. LLF: 88.31461774104253
Iteration: 21, Func. Count: 311, Neg. LLF: 88.30989441114532
Iteration: 22, Func. Count: 325, Neg. LLF: 88.30949966326288
Iteration: 23, Func. Count: 339, Neg. LLF: 88.30942024221767
Iteration: 24, Func. Count: 353, Neg. LLF: 88.30940192365235
Iteration: 25, Func. Count: 366, Neg. LLF: 88.30940205668236
Optimization terminated successfully (Exit mode 0)
Current function value: 88.30940192365235
Iterations: 25
Function evaluations: 366
Gradient evaluations: 25
Iteration: 1, Func. Count: 12, Neg. LLF: 148.07260655820633
Iteration: 2, Func. Count: 25, Neg. LLF: 681.8226908870457
Iteration: 3, Func. Count: 37, Neg. LLF: 5842363.85141828
Iteration: 4, Func. Count: 49, Neg. LLF: 5850584.199468558
Iteration: 5, Func. Count: 61, Neg. LLF: 5894632.841167458
Iteration: 6, Func. Count: 73, Neg. LLF: 5964430.837379367
Iteration: 7, Func. Count: 85, Neg. LLF: 5642870.330269839
Iteration: 8, Func. Count: 97, Neg. LLF: 5682352.005406123
Iteration: 9, Func. Count: 109, Neg. LLF: 93.54986441237003
Iteration: 10, Func. Count: 121, Neg. LLF: 96.77786335561628
Iteration: 11, Func. Count: 133, Neg. LLF: 97.4631551087304
Iteration: 12, Func. Count: 145, Neg. LLF: 90.09549873465174
Iteration: 13, Func. Count: 157, Neg. LLF: 88.51544861247476
Iteration: 14, Func. Count: 168, Neg. LLF: 88.15908666457733
Iteration: 15, Func. Count: 179, Neg. LLF: 87.9853369773592
Iteration: 16, Func. Count: 190, Neg. LLF: 87.94006408262722
Iteration: 17, Func. Count: 201, Neg. LLF: 87.92574646889055
Iteration: 18, Func. Count: 212, Neg. LLF: 87.91597320295385
Iteration: 19, Func. Count: 223, Neg. LLF: 87.89993124980957
Iteration: 20, Func. Count: 234, Neg. LLF: 87.89650254031321
Iteration: 21, Func. Count: 245, Neg. LLF: 87.8887437848212
Iteration: 22, Func. Count: 256, Neg. LLF: 87.8862344340159
Iteration: 23, Func. Count: 267, Neg. LLF: 87.88612039502178
Iteration: 24, Func. Count: 278, Neg. LLF: 87.8861090084827
Iteration: 25, Func. Count: 289, Neg. LLF: 87.88610807044299
Optimization terminated successfully (Exit mode 0)
Current function value: 87.88610807044299
Iterations: 25
Function evaluations: 289
Gradient evaluations: 25
Iteration: 1, Func. Count: 13, Neg. LLF: 92.35726203544829
Iteration: 2, Func. Count: 25, Neg. LLF: 470.6627075244178
Iteration: 3, Func. Count: 38, Neg. LLF: 18016.62216458642
Iteration: 4, Func. Count: 51, Neg. LLF: 5894139.660825621
Iteration: 5, Func. Count: 64, Neg. LLF: 468833.50504219293
Iteration: 6, Func. Count: 77, Neg. LLF: 93.9565417556414
Iteration: 7, Func. Count: 90, Neg. LLF: 88.74230127181005
Iteration: 8, Func. Count: 103, Neg. LLF: 88.4753625367878
Iteration: 9, Func. Count: 116, Neg. LLF: 88.4225837168314
Iteration: 10, Func. Count: 129, Neg. LLF: 88.31105972625066
Iteration: 11, Func. Count: 141, Neg. LLF: 88.30948740774313
Iteration: 12, Func. Count: 153, Neg. LLF: 88.30943487145467
Iteration: 13, Func. Count: 165, Neg. LLF: 88.30940180466075
Iteration: 14, Func. Count: 176, Neg. LLF: 88.30940186091594
Optimization terminated successfully (Exit mode 0)
Current function value: 88.30940180466075
Iterations: 14
Function evaluations: 176
Gradient evaluations: 14
Iteration: 1, Func. Count: 14, Neg. LLF: 135.88331268047827
Iteration: 2, Func. Count: 32, Neg. LLF: 211.656278364415
Iteration: 3, Func. Count: 46, Neg. LLF: 241.39302120952328
Iteration: 4, Func. Count: 60, Neg. LLF: 167.44324757602027
Iteration: 5, Func. Count: 74, Neg. LLF: 173.88781012188417
Iteration: 6, Func. Count: 88, Neg. LLF: 97.94245139862805
Iteration: 7, Func. Count: 102, Neg. LLF: 100.66036469715432
Iteration: 8, Func. Count: 116, Neg. LLF: 90.15611082899615
Iteration: 9, Func. Count: 129, Neg. LLF: 89.58814310184778
Iteration: 10, Func. Count: 142, Neg. LLF: 94.65399211605114
Iteration: 11, Func. Count: 160, Neg. LLF: 89.0442283765479
Iteration: 12, Func. Count: 173, Neg. LLF: 91.14165392304501
Iteration: 13, Func. Count: 187, Neg. LLF: 91.02979024990259
Iteration: 14, Func. Count: 201, Neg. LLF: 93.0061613891866
Iteration: 15, Func. Count: 215, Neg. LLF: 90.92867220805736
Iteration: 16, Func. Count: 229, Neg. LLF: 88.62540155903996
Iteration: 17, Func. Count: 242, Neg. LLF: 88.57445933246606
Iteration: 18, Func. Count: 255, Neg. LLF: 88.54203863611536
Iteration: 19, Func. Count: 268, Neg. LLF: 88.35483224951123
Iteration: 20, Func. Count: 281, Neg. LLF: 88.12780277696389
Iteration: 21, Func. Count: 294, Neg. LLF: 88.01380747456248
Iteration: 22, Func. Count: 307, Neg. LLF: 87.91539324876747
Iteration: 23, Func. Count: 320, Neg. LLF: 87.9130718342636
Iteration: 24, Func. Count: 333, Neg. LLF: 87.91233858508454
Iteration: 25, Func. Count: 346, Neg. LLF: 87.910488727777
Iteration: 26, Func. Count: 359, Neg. LLF: 87.90688084015201
Iteration: 27, Func. Count: 372, Neg. LLF: 87.90020834532669
Iteration: 28, Func. Count: 385, Neg. LLF: 87.89220562898718
Iteration: 29, Func. Count: 398, Neg. LLF: 87.8870997719728
Iteration: 30, Func. Count: 411, Neg. LLF: 87.8861512475409
Iteration: 31, Func. Count: 424, Neg. LLF: 87.8861105167692
Iteration: 32, Func. Count: 437, Neg. LLF: 87.88610834433395
Iteration: 33, Func. Count: 449, Neg. LLF: 87.88610852520176
Optimization terminated successfully (Exit mode 0)
Current function value: 87.88610834433395
Iterations: 33
Function evaluations: 449
Gradient evaluations: 33
Iteration: 1, Func. Count: 15, Neg. LLF: 137.7919777206927
Iteration: 2, Func. Count: 34, Neg. LLF: 256.38123082655443
Iteration: 3, Func. Count: 49, Neg. LLF: 367.2485336549157
Iteration: 4, Func. Count: 64, Neg. LLF: 252.43208749595973
Iteration: 5, Func. Count: 79, Neg. LLF: 142.08713430390867
Iteration: 6, Func. Count: 94, Neg. LLF: 137.7081498839986
Iteration: 7, Func. Count: 109, Neg. LLF: 316.244173522559
Iteration: 8, Func. Count: 124, Neg. LLF: 92.17191791328065
Iteration: 9, Func. Count: 138, Neg. LLF: 892.0724352052839
Iteration: 10, Func. Count: 153, Neg. LLF: 102.61568185711539
Iteration: 11, Func. Count: 168, Neg. LLF: 92.32493394782333
Iteration: 12, Func. Count: 183, Neg. LLF: 94.46652138435371
Iteration: 13, Func. Count: 198, Neg. LLF: 89.2333956174287
Iteration: 14, Func. Count: 212, Neg. LLF: 89.16401495695463
Iteration: 15, Func. Count: 226, Neg. LLF: 89.11800928257439
Iteration: 16, Func. Count: 240, Neg. LLF: 89.02353575133907
Iteration: 17, Func. Count: 254, Neg. LLF: 88.84593901155793
Iteration: 18, Func. Count: 268, Neg. LLF: 88.65876670846643
Iteration: 19, Func. Count: 282, Neg. LLF: 88.55605262139657
Iteration: 20, Func. Count: 296, Neg. LLF: 88.42868842279503
Iteration: 21, Func. Count: 310, Neg. LLF: 88.40344046243386
Iteration: 22, Func. Count: 324, Neg. LLF: 88.34996475430643
Iteration: 23, Func. Count: 338, Neg. LLF: 88.33848012280538
Iteration: 24, Func. Count: 352, Neg. LLF: 88.32768101258334
Iteration: 25, Func. Count: 366, Neg. LLF: 88.31909326640798
Iteration: 26, Func. Count: 380, Neg. LLF: 88.3102752236237
Iteration: 27, Func. Count: 394, Neg. LLF: 88.30967687870772
Iteration: 28, Func. Count: 408, Neg. LLF: 88.3094485287298
Iteration: 29, Func. Count: 422, Neg. LLF: 88.30940209116093
Iteration: 30, Func. Count: 435, Neg. LLF: 88.30940224188834
Optimization terminated successfully (Exit mode 0)
Current function value: 88.30940209116093
Iterations: 30
Function evaluations: 435
Gradient evaluations: 30
Iteration: 1, Func. Count: 16, Neg. LLF: 139.0317269384
Iteration: 2, Func. Count: 36, Neg. LLF: 274.9361447785431
Iteration: 3, Func. Count: 52, Neg. LLF: 207.6361268358856
Iteration: 4, Func. Count: 68, Neg. LLF: 141.2727095210757
Iteration: 5, Func. Count: 84, Neg. LLF: 163.11393417045505
Iteration: 6, Func. Count: 101, Neg. LLF: 170.1569201090302
Iteration: 7, Func. Count: 117, Neg. LLF: 90.21697644972059
Iteration: 8, Func. Count: 132, Neg. LLF: 95.93676971860701
Iteration: 9, Func. Count: 150, Neg. LLF: 94.98409104204543
Iteration: 10, Func. Count: 166, Neg. LLF: 88.76284731226362
Iteration: 11, Func. Count: 181, Neg. LLF: 89.01926608994654
Iteration: 12, Func. Count: 197, Neg. LLF: 88.58782808697613
Iteration: 13, Func. Count: 212, Neg. LLF: 88.58036118563442
Iteration: 14, Func. Count: 227, Neg. LLF: 88.54258626908674
Iteration: 15, Func. Count: 242, Neg. LLF: 88.41885094598656
Iteration: 16, Func. Count: 257, Neg. LLF: 88.33912333433447
Iteration: 17, Func. Count: 272, Neg. LLF: 88.32086239026602
Iteration: 18, Func. Count: 287, Neg. LLF: 88.31482229227186
Iteration: 19, Func. Count: 302, Neg. LLF: 88.31297111636101
Iteration: 20, Func. Count: 317, Neg. LLF: 88.30951992651835
Iteration: 21, Func. Count: 332, Neg. LLF: 88.30941228710566
Iteration: 22, Func. Count: 347, Neg. LLF: 88.30940163287124
Iteration: 23, Func. Count: 361, Neg. LLF: 88.30940176590555
Optimization terminated successfully (Exit mode 0)
Current function value: 88.30940163287124
Iterations: 23
Function evaluations: 361
Gradient evaluations: 23
Iteration: 1, Func. Count: 6, Neg. LLF: 119.54563467895858
Iteration: 2, Func. Count: 13, Neg. LLF: 138.9213715200712
Iteration: 3, Func. Count: 19, Neg. LLF: 9431616.141696291
Iteration: 4, Func. Count: 25, Neg. LLF: 5744806.726075333
Iteration: 5, Func. Count: 31, Neg. LLF: 103.00181605580114
Iteration: 6, Func. Count: 37, Neg. LLF: 90.51298459177588
Iteration: 7, Func. Count: 42, Neg. LLF: 89.67565180202759
Iteration: 8, Func. Count: 47, Neg. LLF: 89.52797773645332
Iteration: 9, Func. Count: 52, Neg. LLF: 89.51971055823088
Iteration: 10, Func. Count: 57, Neg. LLF: 89.51918630799005
Iteration: 11, Func. Count: 62, Neg. LLF: 89.51912009616991
Iteration: 12, Func. Count: 66, Neg. LLF: 89.51912041881926
Optimization terminated successfully (Exit mode 0)
Current function value: 89.51912009616991
Iterations: 12
Function evaluations: 66
Gradient evaluations: 12
Iteration: 1, Func. Count: 5, Neg. LLF: 126.89030187658571
Iteration: 2, Func. Count: 11, Neg. LLF: 130.95473529243137
Iteration: 3, Func. Count: 16, Neg. LLF: 105.66522332166736
Iteration: 4, Func. Count: 20, Neg. LLF: 105.5524484643676
Iteration: 5, Func. Count: 24, Neg. LLF: 105.12413502326973
Iteration: 6, Func. Count: 28, Neg. LLF: 105.02938716921011
Iteration: 7, Func. Count: 32, Neg. LLF: 105.01407117404085
Iteration: 8, Func. Count: 36, Neg. LLF: 105.01367256715028
Iteration: 9, Func. Count: 40, Neg. LLF: 105.01365375612099
Iteration: 10, Func. Count: 43, Neg. LLF: 105.01365389225782
Optimization terminated successfully (Exit mode 0)
Current function value: 105.01365375612099
Iterations: 10
Function evaluations: 43
Gradient evaluations: 10
Iteration: 1, Func. Count: 6, Neg. LLF: 177.58941655909268
Iteration: 2, Func. Count: 14, Neg. LLF: 103.71460548946023
Iteration: 3, Func. Count: 19, Neg. LLF: 101.40070253745988
Iteration: 4, Func. Count: 24, Neg. LLF: 107.23825537605171
Iteration: 5, Func. Count: 30, Neg. LLF: 101.23329330936932
Iteration: 6, Func. Count: 35, Neg. LLF: 101.22954017275428
Iteration: 7, Func. Count: 40, Neg. LLF: 101.22937893295686
Iteration: 8, Func. Count: 44, Neg. LLF: 101.22937935585901
Optimization terminated successfully (Exit mode 0)
Current function value: 101.22937893295686
Iterations: 8
Function evaluations: 44
Gradient evaluations: 8
Iteration: 1, Func. Count: 7, Neg. LLF: 172.84929264500437
Iteration: 2, Func. Count: 17, Neg. LLF: 105.1263677015979
Iteration: 3, Func. Count: 24, Neg. LLF: 101.4026370564504
Iteration: 4, Func. Count: 30, Neg. LLF: 101.53918138002143
Iteration: 5, Func. Count: 37, Neg. LLF: 101.31384678183429
Iteration: 6, Func. Count: 43, Neg. LLF: 101.3086353431676
Iteration: 7, Func. Count: 49, Neg. LLF: 101.30389461187639
Iteration: 8, Func. Count: 55, Neg. LLF: 101.30158188721691
Iteration: 9, Func. Count: 61, Neg. LLF: 101.30064214980622
Iteration: 10, Func. Count: 67, Neg. LLF: 101.29467286757888
Iteration: 11, Func. Count: 73, Neg. LLF: 101.26990405868592
Iteration: 12, Func. Count: 79, Neg. LLF: 101.23400894756001
Iteration: 13, Func. Count: 85, Neg. LLF: 101.23189744121996
Iteration: 14, Func. Count: 91, Neg. LLF: 101.22942817988329
Iteration: 15, Func. Count: 97, Neg. LLF: 101.22938524204643
Iteration: 16, Func. Count: 103, Neg. LLF: 101.22937860927334
Iteration: 17, Func. Count: 108, Neg. LLF: 101.22937818731901
Optimization terminated successfully (Exit mode 0)
Current function value: 101.22937860927334
Iterations: 18
Function evaluations: 108
Gradient evaluations: 17
Iteration: 1, Func. Count: 8, Neg. LLF: 173.60617743925633
Iteration: 2, Func. Count: 19, Neg. LLF: 105.76478065602781
Iteration: 3, Func. Count: 27, Neg. LLF: 101.24502328092085
Iteration: 4, Func. Count: 34, Neg. LLF: 101.24034017006376
Iteration: 5, Func. Count: 41, Neg. LLF: 101.23449359216823
Iteration: 6, Func. Count: 48, Neg. LLF: 101.23432341979675
Iteration: 7, Func. Count: 55, Neg. LLF: 101.234196522105
Iteration: 8, Func. Count: 62, Neg. LLF: 101.23419227138362
Iteration: 9, Func. Count: 68, Neg. LLF: 101.23419243199497
Optimization terminated successfully (Exit mode 0)
Current function value: 101.23419227138362
Iterations: 9
Function evaluations: 68
Gradient evaluations: 9
Iteration: 1, Func. Count: 9, Neg. LLF: 179.04228812692125
Iteration: 2, Func. Count: 22, Neg. LLF: 106.69894414573024
Iteration: 3, Func. Count: 31, Neg. LLF: 101.48066542576133
Iteration: 4, Func. Count: 39, Neg. LLF: 101.42395199543115
Iteration: 5, Func. Count: 47, Neg. LLF: 101.40456429978174
Iteration: 6, Func. Count: 55, Neg. LLF: 101.3944993538949
Iteration: 7, Func. Count: 63, Neg. LLF: 101.34297160363332
Iteration: 8, Func. Count: 71, Neg. LLF: 101.33376439535226
Iteration: 9, Func. Count: 79, Neg. LLF: 101.30908501491596
Iteration: 10, Func. Count: 87, Neg. LLF: 101.27669280614727
Iteration: 11, Func. Count: 95, Neg. LLF: 101.26647332572742
Iteration: 12, Func. Count: 103, Neg. LLF: 101.23308600848348
Iteration: 13, Func. Count: 111, Neg. LLF: 101.22952148379896
Iteration: 14, Func. Count: 119, Neg. LLF: 101.23299820235049
Iteration: 15, Func. Count: 128, Neg. LLF: 102.0556596414569
Iteration: 16, Func. Count: 139, Neg. LLF: 101.25023191038622
Iteration: 17, Func. Count: 148, Neg. LLF: 101.22937819658421
Optimization terminated successfully (Exit mode 0)
Current function value: 101.22937860915508
Iterations: 18
Function evaluations: 148
Gradient evaluations: 17
Iteration: 1, Func. Count: 6, Neg. LLF: 136.105394292632
Iteration: 2, Func. Count: 13, Neg. LLF: 165.56304281555379
Iteration: 3, Func. Count: 19, Neg. LLF: 105.40301622538861
Iteration: 4, Func. Count: 24, Neg. LLF: 105.19545746621647
Iteration: 5, Func. Count: 29, Neg. LLF: 105.05339123641741
Iteration: 6, Func. Count: 34, Neg. LLF: 105.01684615522558
Iteration: 7, Func. Count: 39, Neg. LLF: 105.014310864465
Iteration: 8, Func. Count: 44, Neg. LLF: 105.01389380999056
Iteration: 9, Func. Count: 49, Neg. LLF: 105.01368249743652
Iteration: 10, Func. Count: 54, Neg. LLF: 105.01365446113948
Iteration: 11, Func. Count: 59, Neg. LLF: 105.01365337602822
Iteration: 12, Func. Count: 63, Neg. LLF: 105.01365341102834
Optimization terminated successfully (Exit mode 0)
Current function value: 105.01365337602822
Iterations: 12
Function evaluations: 63
Gradient evaluations: 12
Iteration: 1, Func. Count: 7, Neg. LLF: 177.2596670900325
Iteration: 2, Func. Count: 16, Neg. LLF: 103.6544321095746
Iteration: 3, Func. Count: 22, Neg. LLF: 101.36014113318953
Iteration: 4, Func. Count: 28, Neg. LLF: 107.8628515478497
Iteration: 5, Func. Count: 35, Neg. LLF: 101.2307571627985
Iteration: 6, Func. Count: 41, Neg. LLF: 101.22942640581961
Iteration: 7, Func. Count: 47, Neg. LLF: 101.22937863851745
Iteration: 8, Func. Count: 52, Neg. LLF: 101.22937906205078
Optimization terminated successfully (Exit mode 0)
Current function value: 101.22937863851745
Iterations: 8
Function evaluations: 52
Gradient evaluations: 8
Iteration: 1, Func. Count: 8, Neg. LLF: 172.46919798899697
Iteration: 2, Func. Count: 19, Neg. LLF: 105.17434607070544
Iteration: 3, Func. Count: 27, Neg. LLF: 101.39939575934514
Iteration: 4, Func. Count: 34, Neg. LLF: 101.50611584065553
Iteration: 5, Func. Count: 42, Neg. LLF: 101.30957560061138
Iteration: 6, Func. Count: 49, Neg. LLF: 101.3073645182459
Iteration: 7, Func. Count: 56, Neg. LLF: 101.30388023900632
Iteration: 8, Func. Count: 63, Neg. LLF: 101.3022579559955
Iteration: 9, Func. Count: 70, Neg. LLF: 101.30109312708404
Iteration: 10, Func. Count: 77, Neg. LLF: 101.29430350521045
Iteration: 11, Func. Count: 84, Neg. LLF: 101.27561612215682
Iteration: 12, Func. Count: 91, Neg. LLF: 101.23588959140476
Iteration: 13, Func. Count: 98, Neg. LLF: 101.23326421861296
Iteration: 14, Func. Count: 105, Neg. LLF: 101.22951311350808
Iteration: 15, Func. Count: 112, Neg. LLF: 101.22940325219513
Iteration: 16, Func. Count: 119, Neg. LLF: 101.22937909129418
Iteration: 17, Func. Count: 125, Neg. LLF: 101.22937866935644
Optimization terminated successfully (Exit mode 0)
Current function value: 101.22937909129418
Iterations: 18
Function evaluations: 125
Gradient evaluations: 17
Iteration: 1, Func. Count: 9, Neg. LLF: 172.25049481337257
Iteration: 2, Func. Count: 21, Neg. LLF: 105.92717940790791
Iteration: 3, Func. Count: 30, Neg. LLF: 101.24259730670613
Iteration: 4, Func. Count: 38, Neg. LLF: 101.23890520241721
Iteration: 5, Func. Count: 46, Neg. LLF: 101.23447559573455
Iteration: 6, Func. Count: 54, Neg. LLF: 101.23431185713105
Iteration: 7, Func. Count: 62, Neg. LLF: 101.23419511270147
Iteration: 8, Func. Count: 70, Neg. LLF: 101.23419221916511
Iteration: 9, Func. Count: 77, Neg. LLF: 101.2341923797209
Optimization terminated successfully (Exit mode 0)
Current function value: 101.23419221916511
Iterations: 9
Function evaluations: 77
Gradient evaluations: 9
Iteration: 1, Func. Count: 10, Neg. LLF: 179.6850359489715
Iteration: 2, Func. Count: 23, Neg. LLF: 106.26554600714068
Iteration: 3, Func. Count: 33, Neg. LLF: 101.46279909003691
Iteration: 4, Func. Count: 42, Neg. LLF: 101.48063619238197
Iteration: 5, Func. Count: 52, Neg. LLF: 101.38255868905351
Iteration: 6, Func. Count: 61, Neg. LLF: 101.35140111545509
Iteration: 7, Func. Count: 70, Neg. LLF: 101.33582874281944
Iteration: 8, Func. Count: 79, Neg. LLF: 101.40339252516918
Iteration: 9, Func. Count: 89, Neg. LLF: 101.33188773124944
Iteration: 10, Func. Count: 99, Neg. LLF: 101.32516431312854
Iteration: 11, Func. Count: 108, Neg. LLF: 101.32509333559
Iteration: 12, Func. Count: 117, Neg. LLF: 101.32509223275193
Iteration: 13, Func. Count: 125, Neg. LLF: 101.32509211690748
Optimization terminated successfully (Exit mode 0)
Current function value: 101.32509223275193
Iterations: 13
Function evaluations: 125
Gradient evaluations: 13
Iteration: 1, Func. Count: 7, Neg. LLF: 134.8477940288047
Iteration: 2, Func. Count: 15, Neg. LLF: 163.6115955075497
Iteration: 3, Func. Count: 22, Neg. LLF: 105.5681543848927
Iteration: 4, Func. Count: 28, Neg. LLF: 105.30774001537033
Iteration: 5, Func. Count: 34, Neg. LLF: 105.09961970144487
Iteration: 6, Func. Count: 40, Neg. LLF: 105.0333019341338
Iteration: 7, Func. Count: 46, Neg. LLF: 105.02096900592534
Iteration: 8, Func. Count: 52, Neg. LLF: 105.01378096114428
Iteration: 9, Func. Count: 58, Neg. LLF: 105.01365738159582
Iteration: 10, Func. Count: 64, Neg. LLF: 105.01365336619057
Iteration: 11, Func. Count: 69, Neg. LLF: 105.01365354992983
Optimization terminated successfully (Exit mode 0)
Current function value: 105.01365336619057
Iterations: 11
Function evaluations: 69
Gradient evaluations: 11
Iteration: 1, Func. Count: 8, Neg. LLF: 177.16819984345636
Iteration: 2, Func. Count: 18, Neg. LLF: 103.51747963024121
Iteration: 3, Func. Count: 25, Neg. LLF: 101.31746197121291
Iteration: 4, Func. Count: 32, Neg. LLF: 107.1547550909257
Iteration: 5, Func. Count: 40, Neg. LLF: 101.22978300273815
Iteration: 6, Func. Count: 47, Neg. LLF: 101.2293885464168
Iteration: 7, Func. Count: 54, Neg. LLF: 101.22937861059427
Iteration: 8, Func. Count: 60, Neg. LLF: 101.2293790344252
Optimization terminated successfully (Exit mode 0)
Current function value: 101.22937861059427
Iterations: 8
Function evaluations: 60
Gradient evaluations: 8
Iteration: 1, Func. Count: 9, Neg. LLF: 172.37717116376126
Iteration: 2, Func. Count: 21, Neg. LLF: 105.10091092589019
Iteration: 3, Func. Count: 30, Neg. LLF: 101.39876098193102
Iteration: 4, Func. Count: 38, Neg. LLF: 101.51868617551102
Iteration: 5, Func. Count: 47, Neg. LLF: 101.31013899580434
Iteration: 6, Func. Count: 55, Neg. LLF: 101.30730351648253
Iteration: 7, Func. Count: 63, Neg. LLF: 101.30387341694976
Iteration: 8, Func. Count: 71, Neg. LLF: 101.30194181893562
Iteration: 9, Func. Count: 79, Neg. LLF: 101.30090486359633
Iteration: 10, Func. Count: 87, Neg. LLF: 101.29453685372019
Iteration: 11, Func. Count: 95, Neg. LLF: 101.27328137822464
Iteration: 12, Func. Count: 103, Neg. LLF: 101.23493198352331
Iteration: 13, Func. Count: 111, Neg. LLF: 101.23251601526617
Iteration: 14, Func. Count: 119, Neg. LLF: 101.22945178320107
Iteration: 15, Func. Count: 127, Neg. LLF: 101.22944882949066
Iteration: 16, Func. Count: 136, Neg. LLF: 101.22937869569391
Iteration: 17, Func. Count: 143, Neg. LLF: 101.22937827321005
Optimization terminated successfully (Exit mode 0)
Current function value: 101.22937869569391
Iterations: 17
Function evaluations: 143
Gradient evaluations: 17
Iteration: 1, Func. Count: 10, Neg. LLF: 173.0613523309068
Iteration: 2, Func. Count: 23, Neg. LLF: 105.83454101884641
Iteration: 3, Func. Count: 33, Neg. LLF: 101.24373985288415
Iteration: 4, Func. Count: 42, Neg. LLF: 101.23957748276148
Iteration: 5, Func. Count: 51, Neg. LLF: 101.23430050197689
Iteration: 6, Func. Count: 60, Neg. LLF: 101.23423628250468
Iteration: 7, Func. Count: 69, Neg. LLF: 101.2341944207332
Iteration: 8, Func. Count: 78, Neg. LLF: 101.23419221892708
Iteration: 9, Func. Count: 86, Neg. LLF: 101.23419237948944
Optimization terminated successfully (Exit mode 0)
Current function value: 101.23419221892708
Iterations: 9
Function evaluations: 86
Gradient evaluations: 9
Iteration: 1, Func. Count: 11, Neg. LLF: 181.28276830152623
Iteration: 2, Func. Count: 25, Neg. LLF: 106.21986412118032
Iteration: 3, Func. Count: 36, Neg. LLF: 101.44370068601707
Iteration: 4, Func. Count: 46, Neg. LLF: 101.49593393906379
Iteration: 5, Func. Count: 57, Neg. LLF: 101.37083231229526
Iteration: 6, Func. Count: 67, Neg. LLF: 101.34208658052253
Iteration: 7, Func. Count: 77, Neg. LLF: 101.43082081705671
Iteration: 8, Func. Count: 88, Neg. LLF: 101.32714678318366
Iteration: 9, Func. Count: 98, Neg. LLF: 101.32523448994262
Iteration: 10, Func. Count: 108, Neg. LLF: 101.32515441454491
Iteration: 11, Func. Count: 118, Neg. LLF: 101.32509224895938
Iteration: 12, Func. Count: 127, Neg. LLF: 101.32509213314515
Optimization terminated successfully (Exit mode 0)
Current function value: 101.32509224895938
Iterations: 12
Function evaluations: 127
Gradient evaluations: 12
Iteration: 1, Func. Count: 8, Neg. LLF: 126.64953263161628
Iteration: 2, Func. Count: 17, Neg. LLF: 132.4502171012917
Iteration: 3, Func. Count: 25, Neg. LLF: 105.41732444557454
Iteration: 4, Func. Count: 32, Neg. LLF: 105.32683064583587
Iteration: 5, Func. Count: 39, Neg. LLF: 105.10517492776046
Iteration: 6, Func. Count: 46, Neg. LLF: 105.03815944458229
Iteration: 7, Func. Count: 53, Neg. LLF: 105.01386903780856
Iteration: 8, Func. Count: 60, Neg. LLF: 105.01365367355139
Iteration: 9, Func. Count: 66, Neg. LLF: 105.01365372475533
Optimization terminated successfully (Exit mode 0)
Current function value: 105.01365367355139
Iterations: 9
Function evaluations: 66
Gradient evaluations: 9
Iteration: 1, Func. Count: 9, Neg. LLF: 176.79419808355112
Iteration: 2, Func. Count: 20, Neg. LLF: 103.46364919098055
Iteration: 3, Func. Count: 28, Neg. LLF: 101.29261622041865
Iteration: 4, Func. Count: 36, Neg. LLF: 107.74551315404837
Iteration: 5, Func. Count: 45, Neg. LLF: 101.22952326119189
Iteration: 6, Func. Count: 53, Neg. LLF: 101.22938047596685
Iteration: 7, Func. Count: 61, Neg. LLF: 101.22937860930419
Iteration: 8, Func. Count: 68, Neg. LLF: 101.22937903322003
Optimization terminated successfully (Exit mode 0)
Current function value: 101.22937860930419
Iterations: 8
Function evaluations: 68
Gradient evaluations: 8
Iteration: 1, Func. Count: 10, Neg. LLF: 172.50636710837603
Iteration: 2, Func. Count: 23, Neg. LLF: 104.98911269732112
Iteration: 3, Func. Count: 33, Neg. LLF: 101.4005756689141
Iteration: 4, Func. Count: 42, Neg. LLF: 101.5147083347655
Iteration: 5, Func. Count: 52, Neg. LLF: 101.30842915315671
Iteration: 6, Func. Count: 61, Neg. LLF: 101.3061110494001
Iteration: 7, Func. Count: 70, Neg. LLF: 101.30385569990342
Iteration: 8, Func. Count: 79, Neg. LLF: 101.30205807367884
Iteration: 9, Func. Count: 88, Neg. LLF: 101.3008764248987
Iteration: 10, Func. Count: 97, Neg. LLF: 101.29443250011082
Iteration: 11, Func. Count: 106, Neg. LLF: 101.27748506915741
Iteration: 12, Func. Count: 115, Neg. LLF: 101.236887064475
Iteration: 13, Func. Count: 124, Neg. LLF: 101.23364042144809
Iteration: 14, Func. Count: 133, Neg. LLF: 101.22976737261712
Iteration: 15, Func. Count: 142, Neg. LLF: 101.22969686465557
Iteration: 16, Func. Count: 152, Neg. LLF: 101.22942502180813
Iteration: 17, Func. Count: 161, Neg. LLF: 101.22938316056162
Iteration: 18, Func. Count: 170, Neg. LLF: 101.22938035105932
Iteration: 19, Func. Count: 179, Neg. LLF: 103.02132556370756
Iteration: 20, Func. Count: 191, Neg. LLF: 101.22938307585359
Optimization terminated successfully (Exit mode 0)
Current function value: 101.22937891543359
Iterations: 21
Function evaluations: 192
Gradient evaluations: 20
Iteration: 1, Func. Count: 11, Neg. LLF: 173.2467740063138
Iteration: 2, Func. Count: 25, Neg. LLF: 105.75388658419088
Iteration: 3, Func. Count: 36, Neg. LLF: 101.24261206875407
Iteration: 4, Func. Count: 46, Neg. LLF: 101.23891548142774
Iteration: 5, Func. Count: 56, Neg. LLF: 101.23427779860552
Iteration: 6, Func. Count: 66, Neg. LLF: 101.23422713903577
Iteration: 7, Func. Count: 76, Neg. LLF: 101.23419392546747
Iteration: 8, Func. Count: 86, Neg. LLF: 101.23419220478767
Iteration: 9, Func. Count: 95, Neg. LLF: 101.23419236533107
Optimization terminated successfully (Exit mode 0)
Current function value: 101.23419220478767
Iterations: 9
Function evaluations: 95
Gradient evaluations: 9
Iteration: 1, Func. Count: 12, Neg. LLF: 181.86474568350698
Iteration: 2, Func. Count: 27, Neg. LLF: 106.12581852793204
Iteration: 3, Func. Count: 39, Neg. LLF: 101.4431244766909
Iteration: 4, Func. Count: 50, Neg. LLF: 101.4963897306072
Iteration: 5, Func. Count: 62, Neg. LLF: 101.3691517864943
Iteration: 6, Func. Count: 73, Neg. LLF: 101.3424916610082
Iteration: 7, Func. Count: 84, Neg. LLF: 101.41991306766879
Iteration: 8, Func. Count: 96, Neg. LLF: 101.3274126470212
Iteration: 9, Func. Count: 107, Neg. LLF: 101.3252740996149
Iteration: 10, Func. Count: 118, Neg. LLF: 101.32514201029312
Iteration: 11, Func. Count: 129, Neg. LLF: 101.32509226606804
Iteration: 12, Func. Count: 139, Neg. LLF: 101.32509215022293
Optimization terminated successfully (Exit mode 0)
Current function value: 101.32509226606804
Iterations: 12
Function evaluations: 139
Gradient evaluations: 12
Iteration: 1, Func. Count: 5, Neg. LLF: 109.61263238034016
Iteration: 2, Func. Count: 11, Neg. LLF: 161.57010803547726
Iteration: 3, Func. Count: 16, Neg. LLF: 6022.846733987802
Iteration: 4, Func. Count: 21, Neg. LLF: 100.23491286109397
Iteration: 5, Func. Count: 26, Neg. LLF: 98.53293642149664
Iteration: 6, Func. Count: 30, Neg. LLF: 98.3786953547883
Iteration: 7, Func. Count: 34, Neg. LLF: 98.33710071156953
Iteration: 8, Func. Count: 38, Neg. LLF: 98.33392868308798
Iteration: 9, Func. Count: 42, Neg. LLF: 98.33383671695614
Iteration: 10, Func. Count: 45, Neg. LLF: 98.3338367169535
Optimization terminated successfully (Exit mode 0)
Current function value: 98.33383671695614
Iterations: 10
Function evaluations: 45
Gradient evaluations: 10
Iteration: 1, Func. Count: 6, Neg. LLF: 18007.14391179901
Iteration: 2, Func. Count: 12, Neg. LLF: 2829.612414002788
Iteration: 3, Func. Count: 18, Neg. LLF: 2019.582904033581
Iteration: 4, Func. Count: 24, Neg. LLF: 146.75285541318607
Iteration: 5, Func. Count: 30, Neg. LLF: 97.33891554608674
Iteration: 6, Func. Count: 36, Neg. LLF: 123.13192171214948
Iteration: 7, Func. Count: 42, Neg. LLF: 135.6639904657281
Iteration: 8, Func. Count: 48, Neg. LLF: 102.66229529635203
Iteration: 9, Func. Count: 54, Neg. LLF: 95.47819561211524
Iteration: 10, Func. Count: 60, Neg. LLF: 94.73311484782703
Iteration: 11, Func. Count: 65, Neg. LLF: 94.73091703021863
Iteration: 12, Func. Count: 70, Neg. LLF: 94.73088130177274
Iteration: 13, Func. Count: 75, Neg. LLF: 94.73083949494723
Iteration: 14, Func. Count: 80, Neg. LLF: 94.73085663019762
Iteration: 15, Func. Count: 86, Neg. LLF: 94.7308331686171
Optimization terminated successfully (Exit mode 0)
Current function value: 94.7308331686171
Iterations: 15
Function evaluations: 86
Gradient evaluations: 15
Iteration: 1, Func. Count: 7, Neg. LLF: 965.6995138429227
Iteration: 2, Func. Count: 14, Neg. LLF: 1475.8196714518251
Iteration: 3, Func. Count: 21, Neg. LLF: 245.82744121066455
Iteration: 4, Func. Count: 28, Neg. LLF: 105.40936684454225
Iteration: 5, Func. Count: 35, Neg. LLF: 95.8616597776974
Iteration: 6, Func. Count: 41, Neg. LLF: 95.69856245104278
Iteration: 7, Func. Count: 48, Neg. LLF: 95.55607965823883
Iteration: 8, Func. Count: 55, Neg. LLF: 94.73105267672749
Iteration: 9, Func. Count: 62, Neg. LLF: 94.73083509528999
Iteration: 10, Func. Count: 68, Neg. LLF: 94.73083318983444
Iteration: 11, Func. Count: 73, Neg. LLF: 94.73083320869173
Optimization terminated successfully (Exit mode 0)
Current function value: 94.73083318983444
Iterations: 11
Function evaluations: 73
Gradient evaluations: 11
Iteration: 1, Func. Count: 8, Neg. LLF: 767.8544150989227
Iteration: 2, Func. Count: 16, Neg. LLF: 43203.84430505877
Iteration: 3, Func. Count: 24, Neg. LLF: 244.8591774578675
Iteration: 4, Func. Count: 32, Neg. LLF: 113.7053095129064
Iteration: 5, Func. Count: 40, Neg. LLF: 206.49030814406782
Iteration: 6, Func. Count: 48, Neg. LLF: 95.51633035130634
Iteration: 7, Func. Count: 55, Neg. LLF: 95.87078921498981
Iteration: 8, Func. Count: 63, Neg. LLF: 111.7720676090837
Iteration: 9, Func. Count: 71, Neg. LLF: 94.62120227590711
Iteration: 10, Func. Count: 78, Neg. LLF: 94.58892776314808
Iteration: 11, Func. Count: 85, Neg. LLF: 94.58748857891335
Iteration: 12, Func. Count: 92, Neg. LLF: 94.58712537152472
Iteration: 13, Func. Count: 99, Neg. LLF: 94.5871208220141
Iteration: 14, Func. Count: 106, Neg. LLF: 94.58711812809086
Iteration: 15, Func. Count: 112, Neg. LLF: 94.58711806100432
Optimization terminated successfully (Exit mode 0)
Current function value: 94.58711812809086
Iterations: 15
Function evaluations: 112
Gradient evaluations: 15
Iteration: 1, Func. Count: 9, Neg. LLF: 19180.315180320995
Iteration: 2, Func. Count: 18, Neg. LLF: 20849.68048634017
Iteration: 3, Func. Count: 27, Neg. LLF: 183.12162904604557
Iteration: 4, Func. Count: 36, Neg. LLF: 114.9216060013733
Iteration: 5, Func. Count: 45, Neg. LLF: 206.12916287536555
Iteration: 6, Func. Count: 54, Neg. LLF: 95.5872109902082
Iteration: 7, Func. Count: 62, Neg. LLF: 111.86538789603729
Iteration: 8, Func. Count: 72, Neg. LLF: 108.9560278460572
Iteration: 9, Func. Count: 83, Neg. LLF: 94.45876145242417
Iteration: 10, Func. Count: 91, Neg. LLF: 98.68330845236208
Iteration: 11, Func. Count: 100, Neg. LLF: 94.37482083972371
Iteration: 12, Func. Count: 108, Neg. LLF: 94.37377485531944
Iteration: 13, Func. Count: 116, Neg. LLF: 94.37235200737308
Iteration: 14, Func. Count: 124, Neg. LLF: 94.37191227854152
Iteration: 15, Func. Count: 132, Neg. LLF: 94.3716911908362
Iteration: 16, Func. Count: 140, Neg. LLF: 94.37161135141497
Iteration: 17, Func. Count: 148, Neg. LLF: 94.37159831218744
Iteration: 18, Func. Count: 156, Neg. LLF: 94.37159751354365
Optimization terminated successfully (Exit mode 0)
Current function value: 94.37159751354365
Iterations: 18
Function evaluations: 156
Gradient evaluations: 18
Iteration: 1, Func. Count: 6, Neg. LLF: 107.39446540894048
Iteration: 2, Func. Count: 12, Neg. LLF: 158.54598786469765
Iteration: 3, Func. Count: 18, Neg. LLF: 219.60346047847082
Iteration: 4, Func. Count: 24, Neg. LLF: 4664.346093725309
Iteration: 5, Func. Count: 30, Neg. LLF: 113247.33899402697
Iteration: 6, Func. Count: 36, Neg. LLF: 106.83257815610153
Iteration: 7, Func. Count: 42, Neg. LLF: 98.70281352338591
Iteration: 8, Func. Count: 48, Neg. LLF: 97.20943383862264
Iteration: 9, Func. Count: 54, Neg. LLF: 96.58394564305529
Iteration: 10, Func. Count: 59, Neg. LLF: 96.56009297664241
Iteration: 11, Func. Count: 64, Neg. LLF: 96.55971374057451
Iteration: 12, Func. Count: 69, Neg. LLF: 96.55968935287476
Iteration: 13, Func. Count: 73, Neg. LLF: 96.55968935289312
Optimization terminated successfully (Exit mode 0)
Current function value: 96.55968935287476
Iterations: 13
Function evaluations: 73
Gradient evaluations: 13
Iteration: 1, Func. Count: 7, Neg. LLF: 8004861.1879318645
Iteration: 2, Func. Count: 14, Neg. LLF: 1127.8812010398085
Iteration: 3, Func. Count: 21, Neg. LLF: 105.50579777733913
Iteration: 4, Func. Count: 28, Neg. LLF: 119.03022730225675
Iteration: 5, Func. Count: 35, Neg. LLF: 179.0044981139219
Iteration: 6, Func. Count: 42, Neg. LLF: 94.55020302542866
Iteration: 7, Func. Count: 48, Neg. LLF: 93.95277195951965
Iteration: 8, Func. Count: 54, Neg. LLF: 93.88025066767409
Iteration: 9, Func. Count: 60, Neg. LLF: 93.80004997109837
Iteration: 10, Func. Count: 66, Neg. LLF: 93.79544743128554
Iteration: 11, Func. Count: 72, Neg. LLF: 93.79473813460706
Iteration: 12, Func. Count: 78, Neg. LLF: 93.79472687743788
Iteration: 13, Func. Count: 83, Neg. LLF: 93.79472681497697
Optimization terminated successfully (Exit mode 0)
Current function value: 93.79472687743788
Iterations: 13
Function evaluations: 83
Gradient evaluations: 13
Iteration: 1, Func. Count: 8, Neg. LLF: 7040154.304458356
Iteration: 2, Func. Count: 16, Neg. LLF: 136.82524192459744
Iteration: 3, Func. Count: 24, Neg. LLF: 103.88223074912071
Iteration: 4, Func. Count: 32, Neg. LLF: 112.88604939590712
Iteration: 5, Func. Count: 40, Neg. LLF: 162.96022850694342
Iteration: 6, Func. Count: 48, Neg. LLF: 95.71519614987683
Iteration: 7, Func. Count: 56, Neg. LLF: 93.96538100841707
Iteration: 8, Func. Count: 63, Neg. LLF: 93.86032534533447
Iteration: 9, Func. Count: 70, Neg. LLF: 93.79709866430125
Iteration: 10, Func. Count: 77, Neg. LLF: 93.7954879448873
Iteration: 11, Func. Count: 84, Neg. LLF: 93.79473104069758
Iteration: 12, Func. Count: 91, Neg. LLF: 93.79472715585612
Iteration: 13, Func. Count: 97, Neg. LLF: 93.79472718578904
Optimization terminated successfully (Exit mode 0)
Current function value: 93.79472715585612
Iterations: 13
Function evaluations: 97
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 634.5091070531223
Iteration: 2, Func. Count: 18, Neg. LLF: 168.01590353087997
Iteration: 3, Func. Count: 27, Neg. LLF: 118.16542292706707
Iteration: 4, Func. Count: 36, Neg. LLF: 130.46167598039423
Iteration: 5, Func. Count: 45, Neg. LLF: 250.5059280977985
Iteration: 6, Func. Count: 54, Neg. LLF: 93.95517320798531
Iteration: 7, Func. Count: 62, Neg. LLF: 94.37857756266233
Iteration: 8, Func. Count: 71, Neg. LLF: 116.66114711403546
Iteration: 9, Func. Count: 80, Neg. LLF: 93.85668171669764
Iteration: 10, Func. Count: 89, Neg. LLF: 93.72509880295834
Iteration: 11, Func. Count: 97, Neg. LLF: 93.72197641509497
Iteration: 12, Func. Count: 105, Neg. LLF: 93.72197573600602
Optimization terminated successfully (Exit mode 0)
Current function value: 93.72197573600602
Iterations: 12
Function evaluations: 105
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 808.6427838614004
Iteration: 2, Func. Count: 20, Neg. LLF: 136.3039392005924
Iteration: 3, Func. Count: 30, Neg. LLF: 152.82683066060238
Iteration: 4, Func. Count: 40, Neg. LLF: 113.76377985289012
Iteration: 5, Func. Count: 50, Neg. LLF: 543.1807276426238
Iteration: 6, Func. Count: 60, Neg. LLF: 94.24340420071562
Iteration: 7, Func. Count: 69, Neg. LLF: 94.68873089505232
Iteration: 8, Func. Count: 80, Neg. LLF: 117.43947580413631
Iteration: 9, Func. Count: 90, Neg. LLF: 94.61828087723501
Iteration: 10, Func. Count: 100, Neg. LLF: 93.71232907728375
Iteration: 11, Func. Count: 110, Neg. LLF: 93.58925387122773
Iteration: 12, Func. Count: 119, Neg. LLF: 93.58636400836295
Iteration: 13, Func. Count: 128, Neg. LLF: 93.5861516447231
Iteration: 14, Func. Count: 137, Neg. LLF: 93.58611122925595
Iteration: 15, Func. Count: 146, Neg. LLF: 93.58611052160492
Optimization terminated successfully (Exit mode 0)
Current function value: 93.58611052160492
Iterations: 15
Function evaluations: 146
Gradient evaluations: 15
Iteration: 1, Func. Count: 7, Neg. LLF: 99.48355751411985
Iteration: 2, Func. Count: 14, Neg. LLF: 178.20366010158722
Iteration: 3, Func. Count: 21, Neg. LLF: 3099660.399757604
Iteration: 4, Func. Count: 28, Neg. LLF: 253269.67925639095
Iteration: 5, Func. Count: 35, Neg. LLF: 10369.15136282067
Iteration: 6, Func. Count: 42, Neg. LLF: 19167.497301301442
Iteration: 7, Func. Count: 49, Neg. LLF: 571.3282793393618
Iteration: 8, Func. Count: 56, Neg. LLF: 507.73594469327463
Iteration: 9, Func. Count: 63, Neg. LLF: 97.8251032833767
Iteration: 10, Func. Count: 70, Neg. LLF: 93.19924427916004
Iteration: 11, Func. Count: 76, Neg. LLF: 93.16345712119525
Iteration: 12, Func. Count: 83, Neg. LLF: 93.52375053846905
Iteration: 13, Func. Count: 90, Neg. LLF: 92.98205535183766
Iteration: 14, Func. Count: 96, Neg. LLF: 92.97942263372842
Iteration: 15, Func. Count: 102, Neg. LLF: 92.97899147460215
Iteration: 16, Func. Count: 108, Neg. LLF: 92.9788299399183
Iteration: 17, Func. Count: 114, Neg. LLF: 92.9788181909586
Iteration: 18, Func. Count: 120, Neg. LLF: 92.97881734714515
Optimization terminated successfully (Exit mode 0)
Current function value: 92.97881734714515
Iterations: 18
Function evaluations: 120
Gradient evaluations: 18
Iteration: 1, Func. Count: 8, Neg. LLF: 7029970.909084041
Iteration: 2, Func. Count: 16, Neg. LLF: 1708401.906678553
Iteration: 3, Func. Count: 24, Neg. LLF: 105.27334900131851
Iteration: 4, Func. Count: 32, Neg. LLF: 135.2778564086883
Iteration: 5, Func. Count: 40, Neg. LLF: 96.67676035369423
Iteration: 6, Func. Count: 48, Neg. LLF: 122.21076729859764
Iteration: 7, Func. Count: 56, Neg. LLF: 94.08806813485363
Iteration: 8, Func. Count: 63, Neg. LLF: 93.23279287462789
Iteration: 9, Func. Count: 70, Neg. LLF: 93.11115699973794
Iteration: 10, Func. Count: 77, Neg. LLF: 93.00746456195237
Iteration: 11, Func. Count: 84, Neg. LLF: 92.98498836006958
Iteration: 12, Func. Count: 91, Neg. LLF: 92.97908041609023
Iteration: 13, Func. Count: 98, Neg. LLF: 92.97884802029047
Iteration: 14, Func. Count: 105, Neg. LLF: 92.97882036149286
Iteration: 15, Func. Count: 112, Neg. LLF: 92.97881750208474
Iteration: 16, Func. Count: 118, Neg. LLF: 92.9788175677899
Optimization terminated successfully (Exit mode 0)
Current function value: 92.97881750208474
Iterations: 16
Function evaluations: 118
Gradient evaluations: 16
Iteration: 1, Func. Count: 9, Neg. LLF: 7057023.388363227
Iteration: 2, Func. Count: 18, Neg. LLF: 3071890.5752853393
Iteration: 3, Func. Count: 27, Neg. LLF: 118.77623711036199
Iteration: 4, Func. Count: 36, Neg. LLF: 362.8056158875863
Iteration: 5, Func. Count: 45, Neg. LLF: 94.57948776910983
Iteration: 6, Func. Count: 53, Neg. LLF: 343.29520180637144
Iteration: 7, Func. Count: 62, Neg. LLF: 96.56751177668167
Iteration: 8, Func. Count: 71, Neg. LLF: 93.35435122341816
Iteration: 9, Func. Count: 79, Neg. LLF: 93.11511352348633
Iteration: 10, Func. Count: 87, Neg. LLF: 93.03268925705162
Iteration: 11, Func. Count: 95, Neg. LLF: 93.01871834218916
Iteration: 12, Func. Count: 103, Neg. LLF: 92.99629285397424
Iteration: 13, Func. Count: 111, Neg. LLF: 92.98080097349214
Iteration: 14, Func. Count: 119, Neg. LLF: 92.97961711119063
Iteration: 15, Func. Count: 127, Neg. LLF: 92.97924804541985
Iteration: 16, Func. Count: 135, Neg. LLF: 92.97893159301586
Iteration: 17, Func. Count: 143, Neg. LLF: 92.97883290579975
Iteration: 18, Func. Count: 151, Neg. LLF: 92.97881783096341
Iteration: 19, Func. Count: 158, Neg. LLF: 92.97881809887214
Optimization terminated successfully (Exit mode 0)
Current function value: 92.97881783096341
Iterations: 19
Function evaluations: 158
Gradient evaluations: 19
Iteration: 1, Func. Count: 10, Neg. LLF: 111.40456197824236
Iteration: 2, Func. Count: 20, Neg. LLF: 2965077.4077960323
Iteration: 3, Func. Count: 30, Neg. LLF: 88826386.38139609
Iteration: 4, Func. Count: 40, Neg. LLF: 1010.968755200478
Iteration: 5, Func. Count: 50, Neg. LLF: 102.56331010684966
Iteration: 6, Func. Count: 60, Neg. LLF: 93.67576921113141
Iteration: 7, Func. Count: 69, Neg. LLF: 96.56229388668393
Iteration: 8, Func. Count: 79, Neg. LLF: 94.43968524683518
Iteration: 9, Func. Count: 89, Neg. LLF: 92.88190688949392
Iteration: 10, Func. Count: 99, Neg. LLF: 92.87088447142544
Iteration: 11, Func. Count: 109, Neg. LLF: 92.76194251996901
Iteration: 12, Func. Count: 118, Neg. LLF: 92.75987827539711
Iteration: 13, Func. Count: 127, Neg. LLF: 92.75958436249442
Iteration: 14, Func. Count: 136, Neg. LLF: 92.75950575256967
Iteration: 15, Func. Count: 144, Neg. LLF: 92.75950575269778
Optimization terminated successfully (Exit mode 0)
Current function value: 92.75950575256967
Iterations: 15
Function evaluations: 144
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 6426967.177139704
Iteration: 2, Func. Count: 22, Neg. LLF: 2197.6790380412804
Iteration: 3, Func. Count: 33, Neg. LLF: 240.33412157129132
Iteration: 4, Func. Count: 44, Neg. LLF: 579.8191786655003
Iteration: 5, Func. Count: 55, Neg. LLF: 1576.3244017400878
Iteration: 6, Func. Count: 66, Neg. LLF: 94.95714035031224
Iteration: 7, Func. Count: 76, Neg. LLF: 93.68182362236944
Iteration: 8, Func. Count: 86, Neg. LLF: 94.35393487975655
Iteration: 9, Func. Count: 97, Neg. LLF: 94.53883568461546
Iteration: 10, Func. Count: 108, Neg. LLF: 93.0990471285468
Iteration: 11, Func. Count: 118, Neg. LLF: 94.36732149606476
Iteration: 12, Func. Count: 129, Neg. LLF: 92.98821033251748
Iteration: 13, Func. Count: 140, Neg. LLF: 92.82536300842727
Iteration: 14, Func. Count: 150, Neg. LLF: 92.81965312161918
Iteration: 15, Func. Count: 160, Neg. LLF: 92.81653016144375
Iteration: 16, Func. Count: 170, Neg. LLF: 92.81499574516623
Iteration: 17, Func. Count: 180, Neg. LLF: 92.81482958465782
Iteration: 18, Func. Count: 190, Neg. LLF: 92.81479476685291
Iteration: 19, Func. Count: 200, Neg. LLF: 92.81478195401522
Iteration: 20, Func. Count: 210, Neg. LLF: 92.81477771573299
Iteration: 21, Func. Count: 220, Neg. LLF: 92.81477712761394
Optimization terminated successfully (Exit mode 0)
Current function value: 92.81477712761394
Iterations: 21
Function evaluations: 220
Gradient evaluations: 21
Iteration: 1, Func. Count: 8, Neg. LLF: 101.53081540281534
Iteration: 2, Func. Count: 16, Neg. LLF: 136.0248467070987
Iteration: 3, Func. Count: 24, Neg. LLF: 3085744.508386587
Iteration: 4, Func. Count: 32, Neg. LLF: 3679.9296122949027
Iteration: 5, Func. Count: 40, Neg. LLF: 21784.809638492694
Iteration: 6, Func. Count: 48, Neg. LLF: 1414270.44267146
Iteration: 7, Func. Count: 56, Neg. LLF: 6883.635823456191
Iteration: 8, Func. Count: 64, Neg. LLF: 1188.834868368459
Iteration: 9, Func. Count: 72, Neg. LLF: 2166.7641670295716
Iteration: 10, Func. Count: 80, Neg. LLF: 93.95926247176028
Iteration: 11, Func. Count: 88, Neg. LLF: 93.07678260304277
Iteration: 12, Func. Count: 95, Neg. LLF: 93.70509039886682
Iteration: 13, Func. Count: 103, Neg. LLF: 92.98484106218766
Iteration: 14, Func. Count: 110, Neg. LLF: 92.98083786756958
Iteration: 15, Func. Count: 117, Neg. LLF: 92.97928361797804
Iteration: 16, Func. Count: 124, Neg. LLF: 92.97882656460823
Iteration: 17, Func. Count: 131, Neg. LLF: 92.97881852600227
Iteration: 18, Func. Count: 138, Neg. LLF: 92.9788173189513
Iteration: 19, Func. Count: 144, Neg. LLF: 92.97881767969496
Optimization terminated successfully (Exit mode 0)
Current function value: 92.9788173189513
Iterations: 19
Function evaluations: 144
Gradient evaluations: 19
Iteration: 1, Func. Count: 9, Neg. LLF: 6993845.81329934
Iteration: 2, Func. Count: 18, Neg. LLF: 1686070.6706868873
Iteration: 3, Func. Count: 27, Neg. LLF: 102.19852328097508
Iteration: 4, Func. Count: 36, Neg. LLF: 120.38550037674617
Iteration: 5, Func. Count: 45, Neg. LLF: 96.34562466661748
Iteration: 6, Func. Count: 54, Neg. LLF: 118.77304257323821
Iteration: 7, Func. Count: 63, Neg. LLF: 93.75161729424694
Iteration: 8, Func. Count: 71, Neg. LLF: 93.17444286845131
Iteration: 9, Func. Count: 79, Neg. LLF: 93.18740575435243
Iteration: 10, Func. Count: 88, Neg. LLF: 92.9912368729895
Iteration: 11, Func. Count: 96, Neg. LLF: 92.97953583334991
Iteration: 12, Func. Count: 104, Neg. LLF: 92.97887440602116
Iteration: 13, Func. Count: 112, Neg. LLF: 92.97882840267103
Iteration: 14, Func. Count: 120, Neg. LLF: 92.97881751859073
Iteration: 15, Func. Count: 127, Neg. LLF: 92.97881758422422
Optimization terminated successfully (Exit mode 0)
Current function value: 92.97881751859073
Iterations: 15
Function evaluations: 127
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 7063477.857850354
Iteration: 2, Func. Count: 20, Neg. LLF: 3059595.0675633573
Iteration: 3, Func. Count: 30, Neg. LLF: 121.61122301768037
Iteration: 4, Func. Count: 40, Neg. LLF: 132853.04817929098
Iteration: 5, Func. Count: 50, Neg. LLF: 102.34358316716592
Iteration: 6, Func. Count: 60, Neg. LLF: 95.33838970204036
Iteration: 7, Func. Count: 69, Neg. LLF: 93.58458517115758
Iteration: 8, Func. Count: 78, Neg. LLF: 93.27635301673762
Iteration: 9, Func. Count: 87, Neg. LLF: 93.43573494234732
Iteration: 10, Func. Count: 97, Neg. LLF: 92.98936594501802
Iteration: 11, Func. Count: 106, Neg. LLF: 92.98094575009222
Iteration: 12, Func. Count: 115, Neg. LLF: 92.97919948601286
Iteration: 13, Func. Count: 124, Neg. LLF: 92.97905480446025
Iteration: 14, Func. Count: 133, Neg. LLF: 92.97886240653875
Iteration: 15, Func. Count: 142, Neg. LLF: 92.97882895758892
Iteration: 16, Func. Count: 151, Neg. LLF: 92.97881769191152
Iteration: 17, Func. Count: 159, Neg. LLF: 92.97881795991827
Optimization terminated successfully (Exit mode 0)
Current function value: 92.97881769191152
Iterations: 17
Function evaluations: 159
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 1193.5225623308625
Iteration: 2, Func. Count: 22, Neg. LLF: 2939647.305136824
Iteration: 3, Func. Count: 33, Neg. LLF: 1710955.5225457277
Iteration: 4, Func. Count: 44, Neg. LLF: 1838.658926685894
Iteration: 5, Func. Count: 55, Neg. LLF: 115.35407747997095
Iteration: 6, Func. Count: 66, Neg. LLF: 96.73105088270819
Iteration: 7, Func. Count: 77, Neg. LLF: 93.95246471015206
Iteration: 8, Func. Count: 87, Neg. LLF: 93.23064304237272
Iteration: 9, Func. Count: 97, Neg. LLF: 96.42135672355667
Iteration: 10, Func. Count: 109, Neg. LLF: 92.8672523049396
Iteration: 11, Func. Count: 119, Neg. LLF: 92.89756318119953
Iteration: 12, Func. Count: 130, Neg. LLF: 92.79387782811804
Iteration: 13, Func. Count: 140, Neg. LLF: 92.78917880187706
Iteration: 14, Func. Count: 151, Neg. LLF: 92.76617350888628
Iteration: 15, Func. Count: 161, Neg. LLF: 92.76165074214242
Iteration: 16, Func. Count: 171, Neg. LLF: 92.75991838443821
Iteration: 17, Func. Count: 181, Neg. LLF: 92.75958855892065
Iteration: 18, Func. Count: 191, Neg. LLF: 92.75954296053334
Iteration: 19, Func. Count: 201, Neg. LLF: 92.75951461542846
Iteration: 20, Func. Count: 211, Neg. LLF: 92.75950665342593
Iteration: 21, Func. Count: 221, Neg. LLF: 92.75950543419172
Iteration: 22, Func. Count: 230, Neg. LLF: 92.7595054341462
Optimization terminated successfully (Exit mode 0)
Current function value: 92.75950543419172
Iterations: 22
Function evaluations: 230
Gradient evaluations: 22
Iteration: 1, Func. Count: 12, Neg. LLF: 1554.9760200832725
Iteration: 2, Func. Count: 24, Neg. LLF: 686.8861476140271
Iteration: 3, Func. Count: 36, Neg. LLF: 288.41314844221193
Iteration: 4, Func. Count: 48, Neg. LLF: 845.7273270769147
Iteration: 5, Func. Count: 60, Neg. LLF: 2679961.666224167
Iteration: 6, Func. Count: 72, Neg. LLF: 98.06404866635425
Iteration: 7, Func. Count: 84, Neg. LLF: 95.22101079194681
Iteration: 8, Func. Count: 95, Neg. LLF: 107.62496725040195
Iteration: 9, Func. Count: 108, Neg. LLF: 105.28069254983703
Iteration: 10, Func. Count: 121, Neg. LLF: 129.1580808763469
Iteration: 11, Func. Count: 133, Neg. LLF: 92.94009583752639
Iteration: 12, Func. Count: 144, Neg. LLF: 92.86666819490858
Iteration: 13, Func. Count: 155, Neg. LLF: 92.8206877509498
Iteration: 14, Func. Count: 166, Neg. LLF: 92.81530985533172
Iteration: 15, Func. Count: 177, Neg. LLF: 92.81483605692691
Iteration: 16, Func. Count: 188, Neg. LLF: 92.81480024423777
Iteration: 17, Func. Count: 199, Neg. LLF: 92.81478463507432
Iteration: 18, Func. Count: 210, Neg. LLF: 92.81478174457754
Iteration: 19, Func. Count: 221, Neg. LLF: 92.8147779161868
Iteration: 20, Func. Count: 231, Neg. LLF: 92.81477791651196
Optimization terminated successfully (Exit mode 0)
Current function value: 92.8147779161868
Iterations: 20
Function evaluations: 231
Gradient evaluations: 20
Iteration: 1, Func. Count: 9, Neg. LLF: 102.52724827921813
Iteration: 2, Func. Count: 18, Neg. LLF: 147.27487497817418
Iteration: 3, Func. Count: 27, Neg. LLF: 13719.29438939635
Iteration: 4, Func. Count: 36, Neg. LLF: 32863.789110765865
Iteration: 5, Func. Count: 45, Neg. LLF: 2316.7983031324115
Iteration: 6, Func. Count: 54, Neg. LLF: 3788.938662359723
Iteration: 7, Func. Count: 63, Neg. LLF: 716.5561276554602
Iteration: 8, Func. Count: 72, Neg. LLF: 101.03664550413602
Iteration: 9, Func. Count: 81, Neg. LLF: 1123.442394189325
Iteration: 10, Func. Count: 90, Neg. LLF: 94.12234622677322
Iteration: 11, Func. Count: 98, Neg. LLF: 93.23607620304078
Iteration: 12, Func. Count: 106, Neg. LLF: 93.08326248948661
Iteration: 13, Func. Count: 114, Neg. LLF: 92.99367544976211
Iteration: 14, Func. Count: 122, Neg. LLF: 92.98167946856033
Iteration: 15, Func. Count: 130, Neg. LLF: 92.97914922458638
Iteration: 16, Func. Count: 138, Neg. LLF: 92.97900674776903
Iteration: 17, Func. Count: 146, Neg. LLF: 92.9788626039079
Iteration: 18, Func. Count: 154, Neg. LLF: 92.97881741099042
Iteration: 19, Func. Count: 161, Neg. LLF: 92.97881762801569
Optimization terminated successfully (Exit mode 0)
Current function value: 92.97881741099042
Iterations: 19
Function evaluations: 161
Gradient evaluations: 19
Iteration: 1, Func. Count: 10, Neg. LLF: 6994118.676998966
Iteration: 2, Func. Count: 20, Neg. LLF: 3919384.646967681
Iteration: 3, Func. Count: 30, Neg. LLF: 238.78327695320655
Iteration: 4, Func. Count: 40, Neg. LLF: 1249.639366482443
Iteration: 5, Func. Count: 50, Neg. LLF: 130.46517048055586
Iteration: 6, Func. Count: 60, Neg. LLF: 95.18228640231193
Iteration: 7, Func. Count: 69, Neg. LLF: 93.41341096005374
Iteration: 8, Func. Count: 78, Neg. LLF: 94.19381709698564
Iteration: 9, Func. Count: 88, Neg. LLF: 92.99934206958213
Iteration: 10, Func. Count: 97, Neg. LLF: 92.98776939653207
Iteration: 11, Func. Count: 106, Neg. LLF: 92.98059572253865
Iteration: 12, Func. Count: 115, Neg. LLF: 92.9789462668349
Iteration: 13, Func. Count: 124, Neg. LLF: 92.97881789991273
Iteration: 14, Func. Count: 133, Neg. LLF: 92.97881730545035
Optimization terminated successfully (Exit mode 0)
Current function value: 92.97881730545035
Iterations: 14
Function evaluations: 133
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 6931973.327840211
Iteration: 2, Func. Count: 22, Neg. LLF: 3035179.524559351
Iteration: 3, Func. Count: 33, Neg. LLF: 131.4247180473603
Iteration: 4, Func. Count: 44, Neg. LLF: 704.4992583188666
Iteration: 5, Func. Count: 55, Neg. LLF: 135.04123427578992
Iteration: 6, Func. Count: 66, Neg. LLF: 95.89668121205497
Iteration: 7, Func. Count: 76, Neg. LLF: 93.99904726762233
Iteration: 8, Func. Count: 86, Neg. LLF: 93.24171377516532
Iteration: 9, Func. Count: 96, Neg. LLF: 93.10931169256888
Iteration: 10, Func. Count: 106, Neg. LLF: 93.0607482447833
Iteration: 11, Func. Count: 116, Neg. LLF: 92.98518348729391
Iteration: 12, Func. Count: 126, Neg. LLF: 92.98143327994416
Iteration: 13, Func. Count: 136, Neg. LLF: 92.98062718846175
Iteration: 14, Func. Count: 146, Neg. LLF: 92.97968749468623
Iteration: 15, Func. Count: 156, Neg. LLF: 92.97892972714783
Iteration: 16, Func. Count: 166, Neg. LLF: 92.97882252003077
Iteration: 17, Func. Count: 176, Neg. LLF: 92.97881789592122
Iteration: 18, Func. Count: 186, Neg. LLF: 92.97889296699219
Optimization terminated successfully (Exit mode 0)
Current function value: 92.97881778286377
Iterations: 19
Function evaluations: 188
Gradient evaluations: 18
Iteration: 1, Func. Count: 12, Neg. LLF: 1713.6112783191393
Iteration: 2, Func. Count: 24, Neg. LLF: 2928538.427688181
Iteration: 3, Func. Count: 36, Neg. LLF: 1643969.7790562836
Iteration: 4, Func. Count: 48, Neg. LLF: 1423.6538116068464
Iteration: 5, Func. Count: 60, Neg. LLF: 116.50586533063591
Iteration: 6, Func. Count: 72, Neg. LLF: 96.53448618785309
Iteration: 7, Func. Count: 84, Neg. LLF: 93.99626953844573
Iteration: 8, Func. Count: 95, Neg. LLF: 93.28931350179661
Iteration: 9, Func. Count: 106, Neg. LLF: 96.74557371701863
Iteration: 10, Func. Count: 119, Neg. LLF: 92.88997659455507
Iteration: 11, Func. Count: 130, Neg. LLF: 92.9943573305283
Iteration: 12, Func. Count: 142, Neg. LLF: 92.80216870295182
Iteration: 13, Func. Count: 153, Neg. LLF: 92.8119373613871
Iteration: 14, Func. Count: 165, Neg. LLF: 92.7675187449042
Iteration: 15, Func. Count: 176, Neg. LLF: 92.76236641404405
Iteration: 16, Func. Count: 187, Neg. LLF: 92.76020834146898
Iteration: 17, Func. Count: 198, Neg. LLF: 92.75966273518104
Iteration: 18, Func. Count: 209, Neg. LLF: 92.75957537337689
Iteration: 19, Func. Count: 220, Neg. LLF: 92.75952193387371
Iteration: 20, Func. Count: 231, Neg. LLF: 92.75950734030766
Iteration: 21, Func. Count: 242, Neg. LLF: 92.75950545438367
Iteration: 22, Func. Count: 252, Neg. LLF: 92.75950545434557
Optimization terminated successfully (Exit mode 0)
Current function value: 92.75950545438367
Iterations: 22
Function evaluations: 252
Gradient evaluations: 22
Iteration: 1, Func. Count: 13, Neg. LLF: 3009.5782979328305
Iteration: 2, Func. Count: 26, Neg. LLF: 506.43296190382506
Iteration: 3, Func. Count: 39, Neg. LLF: 1806484.7311806337
Iteration: 4, Func. Count: 52, Neg. LLF: 2188.7495469694018
Iteration: 5, Func. Count: 65, Neg. LLF: 2615009.5490155574
Iteration: 6, Func. Count: 78, Neg. LLF: 103.83117183141141
Iteration: 7, Func. Count: 92, Neg. LLF: 95.8756457376929
Iteration: 8, Func. Count: 105, Neg. LLF: 93.36631625672175
Iteration: 9, Func. Count: 117, Neg. LLF: 93.21754333155206
Iteration: 10, Func. Count: 129, Neg. LLF: 98.72489531630326
Iteration: 11, Func. Count: 143, Neg. LLF: 92.83031627703865
Iteration: 12, Func. Count: 155, Neg. LLF: 92.82117579931104
Iteration: 13, Func. Count: 167, Neg. LLF: 92.81646439457519
Iteration: 14, Func. Count: 179, Neg. LLF: 92.81561794650503
Iteration: 15, Func. Count: 191, Neg. LLF: 92.81512505120774
Iteration: 16, Func. Count: 203, Neg. LLF: 92.81489483903914
Iteration: 17, Func. Count: 215, Neg. LLF: 92.81479882041648
Iteration: 18, Func. Count: 227, Neg. LLF: 92.81478008420156
Iteration: 19, Func. Count: 239, Neg. LLF: 92.81477725035981
Iteration: 20, Func. Count: 250, Neg. LLF: 92.81477725031354
Optimization terminated successfully (Exit mode 0)
Current function value: 92.81477725035981
Iterations: 20
Function evaluations: 250
Gradient evaluations: 20
Iteration: 1, Func. Count: 6, Neg. LLF: 103.90537511231527
Iteration: 2, Func. Count: 12, Neg. LLF: 215341.00177066188
Iteration: 3, Func. Count: 18, Neg. LLF: 2167.697933250532
Iteration: 4, Func. Count: 24, Neg. LLF: 906.825396462396
Iteration: 5, Func. Count: 30, Neg. LLF: 20930.71591801469
Iteration: 6, Func. Count: 36, Neg. LLF: 360.9397920428084
Iteration: 7, Func. Count: 42, Neg. LLF: 4048.7636885295105
Iteration: 8, Func. Count: 48, Neg. LLF: 207.87707997980192
Iteration: 9, Func. Count: 54, Neg. LLF: 169.57835647872923
Iteration: 10, Func. Count: 60, Neg. LLF: 99.39121542444234
Iteration: 11, Func. Count: 66, Neg. LLF: 94.83651551357977
Iteration: 12, Func. Count: 71, Neg. LLF: 94.7217201459276
Iteration: 13, Func. Count: 76, Neg. LLF: 96.02711811480303
Iteration: 14, Func. Count: 82, Neg. LLF: 94.62722455480542
Iteration: 15, Func. Count: 87, Neg. LLF: 94.56061014881867
Iteration: 16, Func. Count: 92, Neg. LLF: 94.39147158136447
Iteration: 17, Func. Count: 97, Neg. LLF: 94.06730290868315
Iteration: 18, Func. Count: 102, Neg. LLF: 93.8833774762426
Iteration: 19, Func. Count: 107, Neg. LLF: 93.84975938254422
Iteration: 20, Func. Count: 112, Neg. LLF: 93.83987231674381
Iteration: 21, Func. Count: 117, Neg. LLF: 93.8395315371854
Iteration: 22, Func. Count: 122, Neg. LLF: 93.83952787301327
Iteration: 23, Func. Count: 126, Neg. LLF: 93.83952783289935
Optimization terminated successfully (Exit mode 0)
Current function value: 93.83952787301327
Iterations: 23
Function evaluations: 126
Gradient evaluations: 23
Iteration: 1, Func. Count: 7, Neg. LLF: 104.20615574816276
Iteration: 2, Func. Count: 14, Neg. LLF: 3650.0717364211196
Iteration: 3, Func. Count: 21, Neg. LLF: 10112.838603487406
Iteration: 4, Func. Count: 28, Neg. LLF: 2689.654271151622
Iteration: 5, Func. Count: 35, Neg. LLF: 94.34939599991593
Iteration: 6, Func. Count: 41, Neg. LLF: 93.99941336593665
Iteration: 7, Func. Count: 47, Neg. LLF: 93.87115319761462
Iteration: 8, Func. Count: 53, Neg. LLF: 93.84066692648696
Iteration: 9, Func. Count: 59, Neg. LLF: 93.83958926415086
Iteration: 10, Func. Count: 65, Neg. LLF: 93.8395306177311
Iteration: 11, Func. Count: 71, Neg. LLF: 93.83952784721929
Iteration: 12, Func. Count: 76, Neg. LLF: 93.83952791344294
Optimization terminated successfully (Exit mode 0)
Current function value: 93.83952784721929
Iterations: 12
Function evaluations: 76
Gradient evaluations: 12
Iteration: 1, Func. Count: 8, Neg. LLF: 103.76389737264394
Iteration: 2, Func. Count: 16, Neg. LLF: 1168.8127929712414
Iteration: 3, Func. Count: 24, Neg. LLF: 164.111472116313
Iteration: 4, Func. Count: 32, Neg. LLF: 742.4309920320218
Iteration: 5, Func. Count: 40, Neg. LLF: 94.43546395591366
Iteration: 6, Func. Count: 47, Neg. LLF: 94.0924065249456
Iteration: 7, Func. Count: 54, Neg. LLF: 93.93911248253657
Iteration: 8, Func. Count: 61, Neg. LLF: 93.84105181817986
Iteration: 9, Func. Count: 68, Neg. LLF: 93.83954498887476
Iteration: 10, Func. Count: 75, Neg. LLF: 93.8395300977034
Iteration: 11, Func. Count: 82, Neg. LLF: 93.83952795130807
Iteration: 12, Func. Count: 88, Neg. LLF: 93.83952823127555
Optimization terminated successfully (Exit mode 0)
Current function value: 93.83952795130807
Iterations: 12
Function evaluations: 88
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 104.77716521252255
Iteration: 2, Func. Count: 18, Neg. LLF: 1169.148784556244
Iteration: 3, Func. Count: 27, Neg. LLF: 154.57973253314572
Iteration: 4, Func. Count: 36, Neg. LLF: 716.8441636336233
Iteration: 5, Func. Count: 45, Neg. LLF: 98.04933375596643
Iteration: 6, Func. Count: 54, Neg. LLF: 93.89468779636421
Iteration: 7, Func. Count: 62, Neg. LLF: 95.379018724173
Iteration: 8, Func. Count: 71, Neg. LLF: 93.78304012208736
Iteration: 9, Func. Count: 79, Neg. LLF: 93.84313724092911
Iteration: 10, Func. Count: 88, Neg. LLF: 93.72076777298165
Iteration: 11, Func. Count: 96, Neg. LLF: 93.70606639790535
Iteration: 12, Func. Count: 104, Neg. LLF: 93.70597180340937
Iteration: 13, Func. Count: 112, Neg. LLF: 93.70594020383578
Iteration: 14, Func. Count: 119, Neg. LLF: 93.70594016275925
Optimization terminated successfully (Exit mode 0)
Current function value: 93.70594020383578
Iterations: 14
Function evaluations: 119
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 104.4171722224543
Iteration: 2, Func. Count: 20, Neg. LLF: 1273.9926570977248
Iteration: 3, Func. Count: 30, Neg. LLF: 149.88416820444286
Iteration: 4, Func. Count: 40, Neg. LLF: 676.6800207621899
Iteration: 5, Func. Count: 50, Neg. LLF: 103.84824726711281
Iteration: 6, Func. Count: 60, Neg. LLF: 93.91768146344103
Iteration: 7, Func. Count: 69, Neg. LLF: 93.94386334389627
Iteration: 8, Func. Count: 79, Neg. LLF: 97.95941119780845
Iteration: 9, Func. Count: 90, Neg. LLF: 93.57842241463507
Iteration: 10, Func. Count: 100, Neg. LLF: 93.41624529369837
Iteration: 11, Func. Count: 109, Neg. LLF: 93.4160565594315
Iteration: 12, Func. Count: 118, Neg. LLF: 93.41604239693528
Iteration: 13, Func. Count: 127, Neg. LLF: 93.41604112154806
Iteration: 14, Func. Count: 135, Neg. LLF: 93.41604107827115
Optimization terminated successfully (Exit mode 0)
Current function value: 93.41604112154806
Iterations: 14
Function evaluations: 135
Gradient evaluations: 14
Iteration: 1, Func. Count: 7, Neg. LLF: 102.46472877152353
Iteration: 2, Func. Count: 14, Neg. LLF: 13358.124286060118
Iteration: 3, Func. Count: 21, Neg. LLF: 15390.526440371857
Iteration: 4, Func. Count: 28, Neg. LLF: 8969.713177904172
Iteration: 5, Func. Count: 35, Neg. LLF: 430.2298703378559
Iteration: 6, Func. Count: 42, Neg. LLF: 903.2341377081422
Iteration: 7, Func. Count: 49, Neg. LLF: 391.85133648139004
Iteration: 8, Func. Count: 56, Neg. LLF: 2119.7981340935567
Iteration: 9, Func. Count: 63, Neg. LLF: 54816.94188406836
Iteration: 10, Func. Count: 70, Neg. LLF: 96.65886880505406
Iteration: 11, Func. Count: 77, Neg. LLF: 93.06661558769243
Iteration: 12, Func. Count: 83, Neg. LLF: 92.83244348061767
Iteration: 13, Func. Count: 89, Neg. LLF: 92.70971763429515
Iteration: 14, Func. Count: 95, Neg. LLF: 92.62829448867926
Iteration: 15, Func. Count: 101, Neg. LLF: 92.52483280077631
Iteration: 16, Func. Count: 107, Neg. LLF: 92.43034381258246
Iteration: 17, Func. Count: 113, Neg. LLF: 92.42682394712543
Iteration: 18, Func. Count: 119, Neg. LLF: 92.42664727901816
Iteration: 19, Func. Count: 125, Neg. LLF: 92.42663990404868
Iteration: 20, Func. Count: 130, Neg. LLF: 92.4266399077141
Optimization terminated successfully (Exit mode 0)
Current function value: 92.42663990404868
Iterations: 20
Function evaluations: 130
Gradient evaluations: 20
Iteration: 1, Func. Count: 8, Neg. LLF: 97.36536075415943
Iteration: 2, Func. Count: 15, Neg. LLF: 154.33979758960538
Iteration: 3, Func. Count: 23, Neg. LLF: 111.86904077801107
Iteration: 4, Func. Count: 33, Neg. LLF: 12824.093603664298
Iteration: 5, Func. Count: 41, Neg. LLF: 92.78253937417655
Iteration: 6, Func. Count: 48, Neg. LLF: 99.62183028660701
Iteration: 7, Func. Count: 56, Neg. LLF: 92.85519331490585
Iteration: 8, Func. Count: 64, Neg. LLF: 92.46265262975959
Iteration: 9, Func. Count: 71, Neg. LLF: 92.43002351888683
Iteration: 10, Func. Count: 78, Neg. LLF: 92.42693541038074
Iteration: 11, Func. Count: 85, Neg. LLF: 92.42664420839542
Iteration: 12, Func. Count: 92, Neg. LLF: 92.4266399391578
Iteration: 13, Func. Count: 98, Neg. LLF: 92.42664005895354
Optimization terminated successfully (Exit mode 0)
Current function value: 92.4266399391578
Iterations: 13
Function evaluations: 98
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 99.57077755165612
Iteration: 2, Func. Count: 17, Neg. LLF: 145.71317963161147
Iteration: 3, Func. Count: 26, Neg. LLF: 110.64127618951109
Iteration: 4, Func. Count: 37, Neg. LLF: 154.09692128818105
Iteration: 5, Func. Count: 46, Neg. LLF: 109.69772419629115
Iteration: 6, Func. Count: 55, Neg. LLF: 101.92264387152129
Iteration: 7, Func. Count: 64, Neg. LLF: 93.09913787205792
Iteration: 8, Func. Count: 73, Neg. LLF: 93.02072146269109
Iteration: 9, Func. Count: 82, Neg. LLF: 92.46973032897903
Iteration: 10, Func. Count: 90, Neg. LLF: 92.44666507023602
Iteration: 11, Func. Count: 98, Neg. LLF: 92.42922041779447
Iteration: 12, Func. Count: 106, Neg. LLF: 92.42674014050903
Iteration: 13, Func. Count: 114, Neg. LLF: 92.42664051774025
Iteration: 14, Func. Count: 122, Neg. LLF: 92.42663989458377
Optimization terminated successfully (Exit mode 0)
Current function value: 92.42663989458377
Iterations: 14
Function evaluations: 122
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 100.84194511456782
Iteration: 2, Func. Count: 20, Neg. LLF: 1929.7032104593236
Iteration: 3, Func. Count: 30, Neg. LLF: 14485.594106385359
Iteration: 4, Func. Count: 40, Neg. LLF: 1080.9382531647955
Iteration: 5, Func. Count: 50, Neg. LLF: 130.40902226026694
Iteration: 6, Func. Count: 60, Neg. LLF: 93.17826258547649
Iteration: 7, Func. Count: 69, Neg. LLF: 93.84575423492673
Iteration: 8, Func. Count: 79, Neg. LLF: 95.60737544926519
Iteration: 9, Func. Count: 89, Neg. LLF: 92.34076803699247
Iteration: 10, Func. Count: 98, Neg. LLF: 92.32632312224938
Iteration: 11, Func. Count: 107, Neg. LLF: 92.31731262443392
Iteration: 12, Func. Count: 116, Neg. LLF: 92.31672054170193
Iteration: 13, Func. Count: 125, Neg. LLF: 92.31660903184668
Iteration: 14, Func. Count: 133, Neg. LLF: 92.3166090143354
Optimization terminated successfully (Exit mode 0)
Current function value: 92.31660903184668
Iterations: 14
Function evaluations: 133
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 100.19519744481039
Iteration: 2, Func. Count: 21, Neg. LLF: 145.3929461342663
Iteration: 3, Func. Count: 32, Neg. LLF: 113.59969370385883
Iteration: 4, Func. Count: 45, Neg. LLF: 679.3988394947374
Iteration: 5, Func. Count: 56, Neg. LLF: 386.71251358146145
Iteration: 6, Func. Count: 67, Neg. LLF: 93.42728571803713
Iteration: 7, Func. Count: 78, Neg. LLF: 92.47587960037247
Iteration: 8, Func. Count: 89, Neg. LLF: 92.44068949298097
Iteration: 9, Func. Count: 100, Neg. LLF: 92.31889111382081
Iteration: 10, Func. Count: 110, Neg. LLF: 92.31731763405665
Iteration: 11, Func. Count: 120, Neg. LLF: 92.31669267510779
Iteration: 12, Func. Count: 130, Neg. LLF: 92.31661163171479
Iteration: 13, Func. Count: 140, Neg. LLF: 92.3166086361905
Iteration: 14, Func. Count: 149, Neg. LLF: 92.31660861939822
Optimization terminated successfully (Exit mode 0)
Current function value: 92.3166086361905
Iterations: 14
Function evaluations: 149
Gradient evaluations: 14
Iteration: 1, Func. Count: 8, Neg. LLF: 102.38849648428726
Iteration: 2, Func. Count: 16, Neg. LLF: 373.02704093030144
Iteration: 3, Func. Count: 24, Neg. LLF: 3353.796146490695
Iteration: 4, Func. Count: 32, Neg. LLF: 8900.544048447646
Iteration: 5, Func. Count: 40, Neg. LLF: 156.41296703716952
Iteration: 6, Func. Count: 48, Neg. LLF: 3050.6512052463654
Iteration: 7, Func. Count: 56, Neg. LLF: 237.71282630139112
Iteration: 8, Func. Count: 64, Neg. LLF: 24599.91342423368
Iteration: 9, Func. Count: 72, Neg. LLF: 100.48830800053106
Iteration: 10, Func. Count: 80, Neg. LLF: 93.17991913961777
Iteration: 11, Func. Count: 88, Neg. LLF: 92.5252203943504
Iteration: 12, Func. Count: 95, Neg. LLF: 92.49154354588741
Iteration: 13, Func. Count: 102, Neg. LLF: 92.46548695743824
Iteration: 14, Func. Count: 109, Neg. LLF: 92.43609761570094
Iteration: 15, Func. Count: 116, Neg. LLF: 92.41596747293637
Iteration: 16, Func. Count: 123, Neg. LLF: 92.40248403810774
Iteration: 17, Func. Count: 130, Neg. LLF: 92.40019076965696
Iteration: 18, Func. Count: 137, Neg. LLF: 92.39999023041078
Iteration: 19, Func. Count: 144, Neg. LLF: 92.39998537594472
Iteration: 20, Func. Count: 150, Neg. LLF: 92.39998538497325
Optimization terminated successfully (Exit mode 0)
Current function value: 92.39998537594472
Iterations: 20
Function evaluations: 150
Gradient evaluations: 20
Iteration: 1, Func. Count: 9, Neg. LLF: 109.41906011857692
Iteration: 2, Func. Count: 18, Neg. LLF: 160114397.65551823
Iteration: 3, Func. Count: 27, Neg. LLF: 120.25351540096551
Iteration: 4, Func. Count: 36, Neg. LLF: 2411.504346812456
Iteration: 5, Func. Count: 45, Neg. LLF: 4333.318701852112
Iteration: 6, Func. Count: 54, Neg. LLF: 93.51300969268289
Iteration: 7, Func. Count: 62, Neg. LLF: 92.5600033133651
Iteration: 8, Func. Count: 70, Neg. LLF: 92.49289174806675
Iteration: 9, Func. Count: 78, Neg. LLF: 92.41562258428647
Iteration: 10, Func. Count: 86, Neg. LLF: 92.40718820539857
Iteration: 11, Func. Count: 94, Neg. LLF: 92.40113122618368
Iteration: 12, Func. Count: 102, Neg. LLF: 92.40013246868408
Iteration: 13, Func. Count: 110, Neg. LLF: 92.39999090644329
Iteration: 14, Func. Count: 118, Neg. LLF: 92.39998707642093
Iteration: 15, Func. Count: 126, Neg. LLF: 92.3999855290245
Iteration: 16, Func. Count: 133, Neg. LLF: 92.39998563757055
Optimization terminated successfully (Exit mode 0)
Current function value: 92.3999855290245
Iterations: 16
Function evaluations: 133
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 108.09495670111133
Iteration: 2, Func. Count: 20, Neg. LLF: 86800672.22935739
Iteration: 3, Func. Count: 30, Neg. LLF: 126.80729709063357
Iteration: 4, Func. Count: 40, Neg. LLF: 293.84406096550566
Iteration: 5, Func. Count: 50, Neg. LLF: 884.6080010030043
Iteration: 6, Func. Count: 60, Neg. LLF: 92.55767620395477
Iteration: 7, Func. Count: 69, Neg. LLF: 92.46175776533724
Iteration: 8, Func. Count: 78, Neg. LLF: 92.43422892383758
Iteration: 9, Func. Count: 87, Neg. LLF: 92.41124329035158
Iteration: 10, Func. Count: 96, Neg. LLF: 92.40067743435374
Iteration: 11, Func. Count: 105, Neg. LLF: 92.40013457218558
Iteration: 12, Func. Count: 114, Neg. LLF: 92.40001157101094
Iteration: 13, Func. Count: 123, Neg. LLF: 92.39998681927595
Iteration: 14, Func. Count: 132, Neg. LLF: 92.3999852688116
Iteration: 15, Func. Count: 140, Neg. LLF: 92.39998552628407
Optimization terminated successfully (Exit mode 0)
Current function value: 92.3999852688116
Iterations: 15
Function evaluations: 140
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 109.39473497431054
Iteration: 2, Func. Count: 22, Neg. LLF: 83950289.7782665
Iteration: 3, Func. Count: 33, Neg. LLF: 194.8796170079983
Iteration: 4, Func. Count: 44, Neg. LLF: 186.67874659556307
Iteration: 5, Func. Count: 55, Neg. LLF: 5480.714317145231
Iteration: 6, Func. Count: 66, Neg. LLF: 92.52273015224401
Iteration: 7, Func. Count: 76, Neg. LLF: 104.141724236043
Iteration: 8, Func. Count: 87, Neg. LLF: 92.80733470800538
Iteration: 9, Func. Count: 98, Neg. LLF: 92.363464220739
Iteration: 10, Func. Count: 108, Neg. LLF: 92.32007191828741
Iteration: 11, Func. Count: 118, Neg. LLF: 92.31580309380588
Iteration: 12, Func. Count: 128, Neg. LLF: 92.31549088795525
Iteration: 13, Func. Count: 138, Neg. LLF: 92.31547212186375
Iteration: 14, Func. Count: 148, Neg. LLF: 92.3154690296019
Iteration: 15, Func. Count: 157, Neg. LLF: 92.31546900996588
Optimization terminated successfully (Exit mode 0)
Current function value: 92.3154690296019
Iterations: 15
Function evaluations: 157
Gradient evaluations: 15
Iteration: 1, Func. Count: 12, Neg. LLF: 109.12606938803636
Iteration: 2, Func. Count: 24, Neg. LLF: 87279503.20828892
Iteration: 3, Func. Count: 36, Neg. LLF: 178.26968585642788
Iteration: 4, Func. Count: 48, Neg. LLF: 193.8328651233824
Iteration: 5, Func. Count: 60, Neg. LLF: 94527.38265080588
Iteration: 6, Func. Count: 72, Neg. LLF: 92.63160519111499
Iteration: 7, Func. Count: 83, Neg. LLF: 110.35511941829978
Iteration: 8, Func. Count: 95, Neg. LLF: 96.2872254699949
Iteration: 9, Func. Count: 108, Neg. LLF: 92.33213223663243
Iteration: 10, Func. Count: 119, Neg. LLF: 92.26138327534503
Iteration: 11, Func. Count: 130, Neg. LLF: 92.25674212389899
Iteration: 12, Func. Count: 141, Neg. LLF: 92.2562217269811
Iteration: 13, Func. Count: 152, Neg. LLF: 92.25620693889185
Iteration: 14, Func. Count: 163, Neg. LLF: 92.25620338077252
Iteration: 15, Func. Count: 173, Neg. LLF: 92.25620335437084
Optimization terminated successfully (Exit mode 0)
Current function value: 92.25620338077252
Iterations: 15
Function evaluations: 173
Gradient evaluations: 15
Iteration: 1, Func. Count: 9, Neg. LLF: 102.12977134502827
Iteration: 2, Func. Count: 18, Neg. LLF: 1887.534721094132
Iteration: 3, Func. Count: 27, Neg. LLF: 759.5879041958958
Iteration: 4, Func. Count: 36, Neg. LLF: 1194.7625819507402
Iteration: 5, Func. Count: 45, Neg. LLF: 258.43728444711616
Iteration: 6, Func. Count: 54, Neg. LLF: 156.8824705647194
Iteration: 7, Func. Count: 63, Neg. LLF: 7144.845100335259
Iteration: 8, Func. Count: 72, Neg. LLF: 167.8709613084219
Iteration: 9, Func. Count: 82, Neg. LLF: 401.2039280659845
Iteration: 10, Func. Count: 91, Neg. LLF: 715.5944893056095
Iteration: 11, Func. Count: 100, Neg. LLF: 94.69535909705148
Iteration: 12, Func. Count: 109, Neg. LLF: 92.97636364853831
Iteration: 13, Func. Count: 117, Neg. LLF: 92.7152551025928
Iteration: 14, Func. Count: 125, Neg. LLF: 92.63395194031517
Iteration: 15, Func. Count: 133, Neg. LLF: 92.52697118243825
Iteration: 16, Func. Count: 141, Neg. LLF: 92.47481475095127
Iteration: 17, Func. Count: 149, Neg. LLF: 92.41032590175782
Iteration: 18, Func. Count: 157, Neg. LLF: 92.40027573068369
Iteration: 19, Func. Count: 165, Neg. LLF: 92.39998785748848
Iteration: 20, Func. Count: 173, Neg. LLF: 92.39998524649205
Iteration: 21, Func. Count: 180, Neg. LLF: 92.39998560258488
Optimization terminated successfully (Exit mode 0)
Current function value: 92.39998524649205
Iterations: 21
Function evaluations: 180
Gradient evaluations: 21
Iteration: 1, Func. Count: 10, Neg. LLF: 109.17863696879095
Iteration: 2, Func. Count: 20, Neg. LLF: 156707544.48390642
Iteration: 3, Func. Count: 30, Neg. LLF: 119.92254171069848
Iteration: 4, Func. Count: 40, Neg. LLF: 1248.5752571307219
Iteration: 5, Func. Count: 50, Neg. LLF: 8092.878975387283
Iteration: 6, Func. Count: 60, Neg. LLF: 94.0080800192468
Iteration: 7, Func. Count: 69, Neg. LLF: 92.6210839439713
Iteration: 8, Func. Count: 78, Neg. LLF: 92.55410025039627
Iteration: 9, Func. Count: 87, Neg. LLF: 92.42125769850917
Iteration: 10, Func. Count: 96, Neg. LLF: 92.40818739683951
Iteration: 11, Func. Count: 105, Neg. LLF: 92.40244651133138
Iteration: 12, Func. Count: 114, Neg. LLF: 92.40049404903934
Iteration: 13, Func. Count: 123, Neg. LLF: 92.39999636543047
Iteration: 14, Func. Count: 132, Neg. LLF: 92.39998681643102
Iteration: 15, Func. Count: 141, Neg. LLF: 92.39998571246723
Iteration: 16, Func. Count: 149, Neg. LLF: 92.39998582103935
Optimization terminated successfully (Exit mode 0)
Current function value: 92.39998571246723
Iterations: 16
Function evaluations: 149
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 108.00937147463709
Iteration: 2, Func. Count: 22, Neg. LLF: 85719931.6159153
Iteration: 3, Func. Count: 33, Neg. LLF: 127.90877443969426
Iteration: 4, Func. Count: 44, Neg. LLF: 352.35186783620696
Iteration: 5, Func. Count: 55, Neg. LLF: 981.8474134113452
Iteration: 6, Func. Count: 66, Neg. LLF: 92.5644570223429
Iteration: 7, Func. Count: 76, Neg. LLF: 92.4647391698211
Iteration: 8, Func. Count: 86, Neg. LLF: 92.43598173219671
Iteration: 9, Func. Count: 96, Neg. LLF: 92.4125728443124
Iteration: 10, Func. Count: 106, Neg. LLF: 92.40075154482595
Iteration: 11, Func. Count: 116, Neg. LLF: 92.40013514662355
Iteration: 12, Func. Count: 126, Neg. LLF: 92.4000142860402
Iteration: 13, Func. Count: 136, Neg. LLF: 92.39998707798722
Iteration: 14, Func. Count: 146, Neg. LLF: 92.39998527891315
Iteration: 15, Func. Count: 155, Neg. LLF: 92.39998553638821
Optimization terminated successfully (Exit mode 0)
Current function value: 92.39998527891315
Iterations: 15
Function evaluations: 155
Gradient evaluations: 15
Iteration: 1, Func. Count: 12, Neg. LLF: 109.10544253549536
Iteration: 2, Func. Count: 24, Neg. LLF: 83046239.36141638
Iteration: 3, Func. Count: 36, Neg. LLF: 186.21447600465066
Iteration: 4, Func. Count: 48, Neg. LLF: 192.60040513019118
Iteration: 5, Func. Count: 60, Neg. LLF: 27618.55936246432
Iteration: 6, Func. Count: 72, Neg. LLF: 92.53545526185721
Iteration: 7, Func. Count: 83, Neg. LLF: 104.02128905251352
Iteration: 8, Func. Count: 95, Neg. LLF: 92.97984318706516
Iteration: 9, Func. Count: 107, Neg. LLF: 92.3681349642842
Iteration: 10, Func. Count: 118, Neg. LLF: 92.3215131372987
Iteration: 11, Func. Count: 129, Neg. LLF: 92.31601234275342
Iteration: 12, Func. Count: 140, Neg. LLF: 92.31548947902638
Iteration: 13, Func. Count: 151, Neg. LLF: 92.31547101250403
Iteration: 14, Func. Count: 162, Neg. LLF: 92.31546838109277
Iteration: 15, Func. Count: 172, Neg. LLF: 92.31546836150426
Optimization terminated successfully (Exit mode 0)
Current function value: 92.31546838109277
Iterations: 15
Function evaluations: 172
Gradient evaluations: 15
Iteration: 1, Func. Count: 13, Neg. LLF: 108.74361055093223
Iteration: 2, Func. Count: 26, Neg. LLF: 86631709.04656413
Iteration: 3, Func. Count: 39, Neg. LLF: 166.74818359190436
Iteration: 4, Func. Count: 52, Neg. LLF: 205.7191550715703
Iteration: 5, Func. Count: 65, Neg. LLF: 15114.658106723702
Iteration: 6, Func. Count: 78, Neg. LLF: 92.68254800183932
Iteration: 7, Func. Count: 90, Neg. LLF: 106.07674143483153
Iteration: 8, Func. Count: 103, Neg. LLF: 98.21866219997133
Iteration: 9, Func. Count: 117, Neg. LLF: 92.33805172997629
Iteration: 10, Func. Count: 129, Neg. LLF: 92.26829852490057
Iteration: 11, Func. Count: 141, Neg. LLF: 92.25855199299218
Iteration: 12, Func. Count: 153, Neg. LLF: 92.25626128489199
Iteration: 13, Func. Count: 165, Neg. LLF: 92.25621580523766
Iteration: 14, Func. Count: 177, Neg. LLF: 92.25620535036843
Iteration: 15, Func. Count: 189, Neg. LLF: 92.25620308014446
Iteration: 16, Func. Count: 200, Neg. LLF: 92.2562030536777
Optimization terminated successfully (Exit mode 0)
Current function value: 92.25620308014446
Iterations: 16
Function evaluations: 200
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 102.47113375890223
Iteration: 2, Func. Count: 20, Neg. LLF: 649.3001349265018
Iteration: 3, Func. Count: 30, Neg. LLF: 475.42634929676825
Iteration: 4, Func. Count: 40, Neg. LLF: 1253.964031414514
Iteration: 5, Func. Count: 50, Neg. LLF: 2840.2831106191024
Iteration: 6, Func. Count: 60, Neg. LLF: 190.03776222970023
Iteration: 7, Func. Count: 70, Neg. LLF: 1070.7167405148782
Iteration: 8, Func. Count: 80, Neg. LLF: 151.52185145078622
Iteration: 9, Func. Count: 90, Neg. LLF: 2404740.8553108135
Iteration: 10, Func. Count: 100, Neg. LLF: 154.54497660935056
Iteration: 11, Func. Count: 110, Neg. LLF: 93.48902476652464
Iteration: 12, Func. Count: 120, Neg. LLF: 92.51443582614482
Iteration: 13, Func. Count: 129, Neg. LLF: 92.48237499248592
Iteration: 14, Func. Count: 138, Neg. LLF: 92.42847974207861
Iteration: 15, Func. Count: 147, Neg. LLF: 92.40786095165511
Iteration: 16, Func. Count: 156, Neg. LLF: 92.40333751565434
Iteration: 17, Func. Count: 165, Neg. LLF: 92.40059401892393
Iteration: 18, Func. Count: 174, Neg. LLF: 92.40005598315183
Iteration: 19, Func. Count: 183, Neg. LLF: 92.39998700343057
Iteration: 20, Func. Count: 192, Neg. LLF: 92.39998525853984
Iteration: 21, Func. Count: 200, Neg. LLF: 92.39998549159257
Optimization terminated successfully (Exit mode 0)
Current function value: 92.39998525853984
Iterations: 21
Function evaluations: 200
Gradient evaluations: 21
Iteration: 1, Func. Count: 11, Neg. LLF: 109.60211962375814
Iteration: 2, Func. Count: 22, Neg. LLF: 700050.1035271061
Iteration: 3, Func. Count: 33, Neg. LLF: 125.7082710199553
Iteration: 4, Func. Count: 44, Neg. LLF: 191.120636514593
Iteration: 5, Func. Count: 55, Neg. LLF: 838.4869199381428
Iteration: 6, Func. Count: 66, Neg. LLF: 119.2041167948835
Iteration: 7, Func. Count: 77, Neg. LLF: 94.63820814608651
Iteration: 8, Func. Count: 88, Neg. LLF: 100.09941719312015
Iteration: 9, Func. Count: 99, Neg. LLF: 94.26034744622186
Iteration: 10, Func. Count: 110, Neg. LLF: 93.08553539090757
Iteration: 11, Func. Count: 120, Neg. LLF: 92.68435703398075
Iteration: 12, Func. Count: 130, Neg. LLF: 92.60177234008788
Iteration: 13, Func. Count: 140, Neg. LLF: 92.42116635117901
Iteration: 14, Func. Count: 150, Neg. LLF: 92.40584572318296
Iteration: 15, Func. Count: 160, Neg. LLF: 92.4006303655493
Iteration: 16, Func. Count: 170, Neg. LLF: 92.4001589551076
Iteration: 17, Func. Count: 180, Neg. LLF: 92.40002080095266
Iteration: 18, Func. Count: 190, Neg. LLF: 92.39999549481368
Iteration: 19, Func. Count: 200, Neg. LLF: 92.39999239262329
Iteration: 20, Func. Count: 210, Neg. LLF: 92.39998488992593
Iteration: 21, Func. Count: 219, Neg. LLF: 92.39998499838234
Optimization terminated successfully (Exit mode 0)
Current function value: 92.39998488992593
Iterations: 21
Function evaluations: 219
Gradient evaluations: 21
Iteration: 1, Func. Count: 12, Neg. LLF: 108.26258117822374
Iteration: 2, Func. Count: 24, Neg. LLF: 83620778.29968463
Iteration: 3, Func. Count: 36, Neg. LLF: 130.76350764723867
Iteration: 4, Func. Count: 48, Neg. LLF: 302.8332779539279
Iteration: 5, Func. Count: 60, Neg. LLF: 1170.0697258905507
Iteration: 6, Func. Count: 72, Neg. LLF: 92.51674088913893
Iteration: 7, Func. Count: 83, Neg. LLF: 92.4567460097473
Iteration: 8, Func. Count: 94, Neg. LLF: 92.42644098773116
Iteration: 9, Func. Count: 105, Neg. LLF: 92.40546413881418
Iteration: 10, Func. Count: 116, Neg. LLF: 92.40043669645563
Iteration: 11, Func. Count: 127, Neg. LLF: 92.40010151861989
Iteration: 12, Func. Count: 138, Neg. LLF: 92.40000052734871
Iteration: 13, Func. Count: 149, Neg. LLF: 92.39998595251174
Iteration: 14, Func. Count: 160, Neg. LLF: 92.39998524565742
Optimization terminated successfully (Exit mode 0)
Current function value: 92.39998524565742
Iterations: 14
Function evaluations: 160
Gradient evaluations: 14
Iteration: 1, Func. Count: 13, Neg. LLF: 109.31836501687272
Iteration: 2, Func. Count: 26, Neg. LLF: 81505551.48742536
Iteration: 3, Func. Count: 39, Neg. LLF: 197.9150505049103
Iteration: 4, Func. Count: 52, Neg. LLF: 191.2849074357623
Iteration: 5, Func. Count: 65, Neg. LLF: 21330.762268768078
Iteration: 6, Func. Count: 78, Neg. LLF: 92.52509343336823
Iteration: 7, Func. Count: 90, Neg. LLF: 104.4768813612345
Iteration: 8, Func. Count: 103, Neg. LLF: 92.88522853929193
Iteration: 9, Func. Count: 116, Neg. LLF: 92.363639073209
Iteration: 10, Func. Count: 128, Neg. LLF: 92.3205670905959
Iteration: 11, Func. Count: 140, Neg. LLF: 92.31589192648383
Iteration: 12, Func. Count: 152, Neg. LLF: 92.3154892003481
Iteration: 13, Func. Count: 164, Neg. LLF: 92.31547082034594
Iteration: 14, Func. Count: 176, Neg. LLF: 92.31546823324467
Iteration: 15, Func. Count: 187, Neg. LLF: 92.31546821362596
Optimization terminated successfully (Exit mode 0)
Current function value: 92.31546823324467
Iterations: 15
Function evaluations: 187
Gradient evaluations: 15
Iteration: 1, Func. Count: 14, Neg. LLF: 108.964086421293
Iteration: 2, Func. Count: 28, Neg. LLF: 84679568.02506083
Iteration: 3, Func. Count: 42, Neg. LLF: 176.19306386279447
Iteration: 4, Func. Count: 56, Neg. LLF: 205.64979167936775
Iteration: 5, Func. Count: 70, Neg. LLF: 14375.727750282353
Iteration: 6, Func. Count: 84, Neg. LLF: 92.64761076865592
Iteration: 7, Func. Count: 97, Neg. LLF: 110.39289046701278
Iteration: 8, Func. Count: 111, Neg. LLF: 96.84923829607789
Iteration: 9, Func. Count: 126, Neg. LLF: 92.33379927495696
Iteration: 10, Func. Count: 139, Neg. LLF: 92.2631053343557
Iteration: 11, Func. Count: 152, Neg. LLF: 92.2570769177954
Iteration: 12, Func. Count: 165, Neg. LLF: 92.25622227425077
Iteration: 13, Func. Count: 178, Neg. LLF: 92.25620664619937
Iteration: 14, Func. Count: 191, Neg. LLF: 92.25620318053909
Iteration: 15, Func. Count: 203, Neg. LLF: 92.25620315415955
Optimization terminated successfully (Exit mode 0)
Current function value: 92.25620318053909
Iterations: 15
Function evaluations: 203
Gradient evaluations: 15
Iteration: 1, Func. Count: 7, Neg. LLF: 109.8222799545969
Iteration: 2, Func. Count: 15, Neg. LLF: 188.85109718324046
Iteration: 3, Func. Count: 22, Neg. LLF: 148.06620645085076
Iteration: 4, Func. Count: 29, Neg. LLF: 1114.108912460891
Iteration: 5, Func. Count: 36, Neg. LLF: 1276.512154158451
Iteration: 6, Func. Count: 43, Neg. LLF: 1969.211286639171
Iteration: 7, Func. Count: 50, Neg. LLF: 95.46686272100865
Iteration: 8, Func. Count: 56, Neg. LLF: 109.77921313265655
Iteration: 9, Func. Count: 63, Neg. LLF: 101.15113771810142
Iteration: 10, Func. Count: 71, Neg. LLF: 104.43564180289256
Iteration: 11, Func. Count: 78, Neg. LLF: 94.60713907420813
Iteration: 12, Func. Count: 84, Neg. LLF: 94.53955313073801
Iteration: 13, Func. Count: 90, Neg. LLF: 94.29172833350698
Iteration: 14, Func. Count: 96, Neg. LLF: 94.10720597671698
Iteration: 15, Func. Count: 102, Neg. LLF: 93.95387712829518
Iteration: 16, Func. Count: 108, Neg. LLF: 93.89627717010427
Iteration: 17, Func. Count: 114, Neg. LLF: 93.84720112432487
Iteration: 18, Func. Count: 120, Neg. LLF: 93.84082510046572
Iteration: 19, Func. Count: 126, Neg. LLF: 93.83962960500392
Iteration: 20, Func. Count: 132, Neg. LLF: 93.83955611251986
Iteration: 21, Func. Count: 138, Neg. LLF: 93.83953607851112
Iteration: 22, Func. Count: 144, Neg. LLF: 93.8395319603596
Iteration: 23, Func. Count: 150, Neg. LLF: 93.83953089034196
Optimization terminated successfully (Exit mode 0)
Current function value: 93.83953160678796
Iterations: 23
Function evaluations: 151
Gradient evaluations: 23
Iteration: 1, Func. Count: 8, Neg. LLF: 179.96295881023107
Iteration: 2, Func. Count: 19, Neg. LLF: 103.49539158896154
Iteration: 3, Func. Count: 26, Neg. LLF: 101.6330157991849
Iteration: 4, Func. Count: 33, Neg. LLF: 111.51156422327547
Iteration: 5, Func. Count: 41, Neg. LLF: 101.29477561002703
Iteration: 6, Func. Count: 48, Neg. LLF: 101.22955386232044
Iteration: 7, Func. Count: 55, Neg. LLF: 101.22937950107539
Iteration: 8, Func. Count: 62, Neg. LLF: 101.22937884989112
Optimization terminated successfully (Exit mode 0)
Current function value: 101.22937884989112
Iterations: 8
Function evaluations: 62
Gradient evaluations: 8
Iteration: 1, Func. Count: 9, Neg. LLF: 173.8409500728607
Iteration: 2, Func. Count: 21, Neg. LLF: 104.96163349020637
Iteration: 3, Func. Count: 30, Neg. LLF: 101.41443008306383
Iteration: 4, Func. Count: 38, Neg. LLF: 101.95764413674337
Iteration: 5, Func. Count: 47, Neg. LLF: 101.33662724737432
Iteration: 6, Func. Count: 56, Neg. LLF: 101.30968398320063
Iteration: 7, Func. Count: 64, Neg. LLF: 101.30614929173933
Iteration: 8, Func. Count: 72, Neg. LLF: 101.3048613298662
Iteration: 9, Func. Count: 80, Neg. LLF: 101.29930395680034
Iteration: 10, Func. Count: 88, Neg. LLF: 101.2870821126287
Iteration: 11, Func. Count: 96, Neg. LLF: 101.23297457456634
Iteration: 12, Func. Count: 104, Neg. LLF: 101.23041755989527
Iteration: 13, Func. Count: 112, Neg. LLF: 101.23073699759718
Iteration: 14, Func. Count: 121, Neg. LLF: 101.22938667113216
Iteration: 15, Func. Count: 129, Neg. LLF: 101.22937863799095
Iteration: 16, Func. Count: 136, Neg. LLF: 101.22937821605528
Optimization terminated successfully (Exit mode 0)
Current function value: 101.22937863799095
Iterations: 16
Function evaluations: 136
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 173.0686567689715
Iteration: 2, Func. Count: 23, Neg. LLF: 105.64460884509964
Iteration: 3, Func. Count: 33, Neg. LLF: 101.24528253731442
Iteration: 4, Func. Count: 42, Neg. LLF: 101.24040660502787
Iteration: 5, Func. Count: 51, Neg. LLF: 101.23421961695631
Iteration: 6, Func. Count: 60, Neg. LLF: 101.23420098783387
Iteration: 7, Func. Count: 69, Neg. LLF: 101.23419408531156
Iteration: 8, Func. Count: 78, Neg. LLF: 101.23419221748772
Iteration: 9, Func. Count: 86, Neg. LLF: 101.23419237806011
Optimization terminated successfully (Exit mode 0)
Current function value: 101.23419221748772
Iterations: 9
Function evaluations: 86
Gradient evaluations: 9
Iteration: 1, Func. Count: 11, Neg. LLF: 179.41971128069957
Iteration: 2, Func. Count: 26, Neg. LLF: 106.57696777037714
Iteration: 3, Func. Count: 37, Neg. LLF: 101.4779812603823
Iteration: 4, Func. Count: 47, Neg. LLF: 101.42066651382117
Iteration: 5, Func. Count: 57, Neg. LLF: 101.41004028490634
Iteration: 6, Func. Count: 67, Neg. LLF: 101.3978835928937
Iteration: 7, Func. Count: 77, Neg. LLF: 101.37748892938737
Iteration: 8, Func. Count: 87, Neg. LLF: 101.34930165217463
Iteration: 9, Func. Count: 97, Neg. LLF: 101.33565017686146
Iteration: 10, Func. Count: 107, Neg. LLF: 101.33097178646467
Iteration: 11, Func. Count: 117, Neg. LLF: 101.30358995676188
Iteration: 12, Func. Count: 127, Neg. LLF: 101.27305681759987
Iteration: 13, Func. Count: 137, Neg. LLF: 101.24138546199728
Iteration: 14, Func. Count: 147, Neg. LLF: 101.85876524664715
Iteration: 15, Func. Count: 158, Neg. LLF: 105.25108256720245
Iteration: 16, Func. Count: 178, Neg. LLF: 117.48318010964957
Iteration: 17, Func. Count: 190, Neg. LLF: 304.07930178001817
Iteration: 18, Func. Count: 203, Neg. LLF: 101.23002169278458
Iteration: 19, Func. Count: 213, Neg. LLF: 101.22937881071552
Iteration: 20, Func. Count: 222, Neg. LLF: 101.22937839714919
Optimization terminated successfully (Exit mode 0)
Current function value: 101.22937881071552
Iterations: 21
Function evaluations: 222
Gradient evaluations: 20
Iteration: 1, Func. Count: 8, Neg. LLF: 107.20330492127519
Iteration: 2, Func. Count: 16, Neg. LLF: 479.44121082509344
Iteration: 3, Func. Count: 24, Neg. LLF: 32563.55205236977
Iteration: 4, Func. Count: 32, Neg. LLF: 561.222773297306
Iteration: 5, Func. Count: 40, Neg. LLF: 4392.348154058891
Iteration: 6, Func. Count: 48, Neg. LLF: 6992803.423063714
Iteration: 7, Func. Count: 56, Neg. LLF: 214.35208780839366
Iteration: 8, Func. Count: 64, Neg. LLF: 107289.23320594837
Iteration: 9, Func. Count: 72, Neg. LLF: 192.50596166324223
Iteration: 10, Func. Count: 80, Neg. LLF: 4933.641950268491
Iteration: 11, Func. Count: 88, Neg. LLF: 2167.2711236802033
Iteration: 12, Func. Count: 96, Neg. LLF: 134.45341536167973
Iteration: 13, Func. Count: 104, Neg. LLF: 93.93102023799365
Iteration: 14, Func. Count: 111, Neg. LLF: 93.56540605108631
Iteration: 15, Func. Count: 118, Neg. LLF: 93.21127653786917
Iteration: 16, Func. Count: 125, Neg. LLF: 92.72165101686075
Iteration: 17, Func. Count: 132, Neg. LLF: 92.53529070476453
Iteration: 18, Func. Count: 139, Neg. LLF: 92.44651398315834
Iteration: 19, Func. Count: 146, Neg. LLF: 92.42974649446295
Iteration: 20, Func. Count: 153, Neg. LLF: 92.42668682996326
Iteration: 21, Func. Count: 160, Neg. LLF: 92.42664002583338
Iteration: 22, Func. Count: 166, Neg. LLF: 92.42664002951396
Optimization terminated successfully (Exit mode 0)
Current function value: 92.42664002583338
Iterations: 22
Function evaluations: 166
Gradient evaluations: 22
Iteration: 1, Func. Count: 9, Neg. LLF: 102.20626806594666
Iteration: 2, Func. Count: 18, Neg. LLF: 159.9756527891475
Iteration: 3, Func. Count: 27, Neg. LLF: 25827.19228881837
Iteration: 4, Func. Count: 36, Neg. LLF: 231188.8766436066
Iteration: 5, Func. Count: 45, Neg. LLF: 622.3160351510331
Iteration: 6, Func. Count: 54, Neg. LLF: 1358.7068650010174
Iteration: 7, Func. Count: 63, Neg. LLF: 1735.1970321583854
Iteration: 8, Func. Count: 72, Neg. LLF: 95.02415949720846
Iteration: 9, Func. Count: 81, Neg. LLF: 92.4954348828296
Iteration: 10, Func. Count: 89, Neg. LLF: 92.45294174831278
Iteration: 11, Func. Count: 97, Neg. LLF: 92.43341729692511
Iteration: 12, Func. Count: 105, Neg. LLF: 92.42672185515208
Iteration: 13, Func. Count: 113, Neg. LLF: 92.42664014825796
Iteration: 14, Func. Count: 120, Neg. LLF: 92.42664026814175
Optimization terminated successfully (Exit mode 0)
Current function value: 92.42664014825796
Iterations: 14
Function evaluations: 120
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 132.29747308282836
Iteration: 2, Func. Count: 24, Neg. LLF: 175.25973884852746
Iteration: 3, Func. Count: 34, Neg. LLF: 130.6713919652847
Iteration: 4, Func. Count: 44, Neg. LLF: 200.6979717557855
Iteration: 5, Func. Count: 54, Neg. LLF: 108.97758516014332
Iteration: 6, Func. Count: 64, Neg. LLF: 99.58302621416506
Iteration: 7, Func. Count: 73, Neg. LLF: 100.84884659776438
Iteration: 8, Func. Count: 83, Neg. LLF: 96.3726850441269
Iteration: 9, Func. Count: 92, Neg. LLF: 100.60692978608628
Iteration: 10, Func. Count: 102, Neg. LLF: 95.09104829106407
Iteration: 11, Func. Count: 111, Neg. LLF: 94.29239707038082
Iteration: 12, Func. Count: 120, Neg. LLF: 94.12913348882789
Iteration: 13, Func. Count: 129, Neg. LLF: 93.92374449787141
Iteration: 14, Func. Count: 138, Neg. LLF: 93.67968065013831
Iteration: 15, Func. Count: 147, Neg. LLF: 93.36275196218575
Iteration: 16, Func. Count: 156, Neg. LLF: 93.01650400929843
Iteration: 17, Func. Count: 165, Neg. LLF: 92.79628968098785
Iteration: 18, Func. Count: 174, Neg. LLF: 92.69775437822562
Iteration: 19, Func. Count: 183, Neg. LLF: 92.44948381504234
Iteration: 20, Func. Count: 192, Neg. LLF: 92.43409161535791
Iteration: 21, Func. Count: 201, Neg. LLF: 92.43142363630295
Iteration: 22, Func. Count: 210, Neg. LLF: 92.42948471886034
Iteration: 23, Func. Count: 219, Neg. LLF: 92.42859535766641
Iteration: 24, Func. Count: 228, Neg. LLF: 92.42769578500639
Iteration: 25, Func. Count: 237, Neg. LLF: 92.42684391690246
Iteration: 26, Func. Count: 246, Neg. LLF: 92.42675457612427
Iteration: 27, Func. Count: 255, Neg. LLF: 92.42663377197717
Iteration: 28, Func. Count: 264, Neg. LLF: 92.42699235071198
Iteration: 29, Func. Count: 275, Neg. LLF: 92.42669444092624
Iteration: 30, Func. Count: 285, Neg. LLF: 92.42664038697914
Iteration: 31, Func. Count: 295, Neg. LLF: 92.42664074527355
Iteration: 32, Func. Count: 305, Neg. LLF: 92.42663988721849
Iteration: 33, Func. Count: 315, Neg. LLF: 92.42663988746553
Iteration: 34, Func. Count: 326, Neg. LLF: 92.42663988830064
Iteration: 35, Func. Count: 336, Neg. LLF: 92.42663989336
Iteration: 36, Func. Count: 346, Neg. LLF: 92.42663988763164
Iteration: 37, Func. Count: 356, Neg. LLF: 92.42663988737159
Iteration: 38, Func. Count: 367, Neg. LLF: 92.42663988739395
Iteration: 39, Func. Count: 377, Neg. LLF: 92.42663988696614
Iteration: 40, Func. Count: 386, Neg. LLF: 92.42663889594618
Optimization terminated successfully (Exit mode 0)
Current function value: 92.42663862138279
Iterations: 44
Function evaluations: 386
Gradient evaluations: 40
Iteration: 1, Func. Count: 11, Neg. LLF: 135.49389306288427
Iteration: 2, Func. Count: 26, Neg. LLF: 171.08048653284635
Iteration: 3, Func. Count: 37, Neg. LLF: 119.26827422873784
Iteration: 4, Func. Count: 48, Neg. LLF: 119.32219246405674
Iteration: 5, Func. Count: 59, Neg. LLF: 108.93926775565001
Iteration: 6, Func. Count: 70, Neg. LLF: 99.05500150122931
Iteration: 7, Func. Count: 81, Neg. LLF: 460.57398942121586
Iteration: 8, Func. Count: 93, Neg. LLF: 94.70779447057521
Iteration: 9, Func. Count: 103, Neg. LLF: 94.11771547621261
Iteration: 10, Func. Count: 113, Neg. LLF: 93.79561819884688
Iteration: 11, Func. Count: 123, Neg. LLF: 93.26891820961774
Iteration: 12, Func. Count: 133, Neg. LLF: 92.89793885030176
Iteration: 13, Func. Count: 143, Neg. LLF: 93.37157474065673
Iteration: 14, Func. Count: 154, Neg. LLF: 92.67050530076162
Iteration: 15, Func. Count: 164, Neg. LLF: 92.52652176015033
Iteration: 16, Func. Count: 174, Neg. LLF: 92.3968131170062
Iteration: 17, Func. Count: 184, Neg. LLF: 92.35471938366732
Iteration: 18, Func. Count: 194, Neg. LLF: 92.33235308689147
Iteration: 19, Func. Count: 204, Neg. LLF: 92.32577374058302
Iteration: 20, Func. Count: 214, Neg. LLF: 92.31724957147775
Iteration: 21, Func. Count: 224, Neg. LLF: 92.31668634362744
Iteration: 22, Func. Count: 234, Neg. LLF: 92.31660890098003
Iteration: 23, Func. Count: 243, Neg. LLF: 92.31660888347677
Optimization terminated successfully (Exit mode 0)
Current function value: 92.31660890098003
Iterations: 23
Function evaluations: 243
Gradient evaluations: 23
Iteration: 1, Func. Count: 12, Neg. LLF: 138.09137876162808
Iteration: 2, Func. Count: 28, Neg. LLF: 206.14115166660554
Iteration: 3, Func. Count: 40, Neg. LLF: 116.3680429505405
Iteration: 4, Func. Count: 52, Neg. LLF: 109.35940189312994
Iteration: 5, Func. Count: 64, Neg. LLF: 150.90390623942255
Iteration: 6, Func. Count: 76, Neg. LLF: 97.11617829262632
Iteration: 7, Func. Count: 88, Neg. LLF: 107.26170948904895
Iteration: 8, Func. Count: 100, Neg. LLF: 96.26217122083582
Iteration: 9, Func. Count: 112, Neg. LLF: 98.8149508409213
Iteration: 10, Func. Count: 124, Neg. LLF: 93.9257310455579
Iteration: 11, Func. Count: 135, Neg. LLF: 93.76228433016298
Iteration: 12, Func. Count: 146, Neg. LLF: 93.08786641513872
Iteration: 13, Func. Count: 157, Neg. LLF: 92.87326198707905
Iteration: 14, Func. Count: 168, Neg. LLF: 92.78345257169633
Iteration: 15, Func. Count: 179, Neg. LLF: 92.62199369483847
Iteration: 16, Func. Count: 190, Neg. LLF: 92.4061448420234
Iteration: 17, Func. Count: 201, Neg. LLF: 92.31648287876561
Iteration: 18, Func. Count: 212, Neg. LLF: 92.2686420979565
Iteration: 19, Func. Count: 223, Neg. LLF: 92.26627395246864
Iteration: 20, Func. Count: 234, Neg. LLF: 92.26616912646958
Iteration: 21, Func. Count: 245, Neg. LLF: 92.26615979244615
Iteration: 22, Func. Count: 256, Neg. LLF: 92.26615360305125
Iteration: 23, Func. Count: 267, Neg. LLF: 92.26615129655502
Iteration: 24, Func. Count: 277, Neg. LLF: 92.26615127647973
Optimization terminated successfully (Exit mode 0)
Current function value: 92.26615129655502
Iterations: 24
Function evaluations: 277
Gradient evaluations: 24
Iteration: 1, Func. Count: 9, Neg. LLF: 106.4624724797733
Iteration: 2, Func. Count: 18, Neg. LLF: 261566772.12623772
Iteration: 3, Func. Count: 27, Neg. LLF: 10483179.175005008
Iteration: 4, Func. Count: 36, Neg. LLF: 68225.13999341546
Iteration: 5, Func. Count: 45, Neg. LLF: 185.81000795170362
Iteration: 6, Func. Count: 54, Neg. LLF: 3819.7028129509804
Iteration: 7, Func. Count: 63, Neg. LLF: 496.28594349517164
Iteration: 8, Func. Count: 72, Neg. LLF: 1818892.0746745383
Iteration: 9, Func. Count: 81, Neg. LLF: 821.8621122413102
Iteration: 10, Func. Count: 90, Neg. LLF: 101323.95745726957
Iteration: 11, Func. Count: 99, Neg. LLF: 107.16194143958666
Iteration: 12, Func. Count: 108, Neg. LLF: 94.41249712196883
Iteration: 13, Func. Count: 116, Neg. LLF: 94.01452285329404
Iteration: 14, Func. Count: 124, Neg. LLF: 93.78386326280007
Iteration: 15, Func. Count: 132, Neg. LLF: 93.33900299073238
Iteration: 16, Func. Count: 140, Neg. LLF: 93.10954069592785
Iteration: 17, Func. Count: 148, Neg. LLF: 92.59009869574699
Iteration: 18, Func. Count: 156, Neg. LLF: 92.46506615062138
Iteration: 19, Func. Count: 164, Neg. LLF: 92.40942404809007
Iteration: 20, Func. Count: 172, Neg. LLF: 92.40081930095437
Iteration: 21, Func. Count: 180, Neg. LLF: 92.400161660725
Iteration: 22, Func. Count: 188, Neg. LLF: 92.40004455988557
Iteration: 23, Func. Count: 196, Neg. LLF: 92.39998991899105
Iteration: 24, Func. Count: 204, Neg. LLF: 92.39998540084662
Iteration: 25, Func. Count: 211, Neg. LLF: 92.39998540988705
Optimization terminated successfully (Exit mode 0)
Current function value: 92.39998540084662
Iterations: 25
Function evaluations: 211
Gradient evaluations: 25
Iteration: 1, Func. Count: 10, Neg. LLF: 104.31462134236531
Iteration: 2, Func. Count: 20, Neg. LLF: 244.79458979976073
Iteration: 3, Func. Count: 30, Neg. LLF: 3302.7121477308574
Iteration: 4, Func. Count: 40, Neg. LLF: 163.4021309948789
Iteration: 5, Func. Count: 50, Neg. LLF: 171.52219835958886
Iteration: 6, Func. Count: 60, Neg. LLF: 808.7676598075357
Iteration: 7, Func. Count: 70, Neg. LLF: 4346.390057500553
Iteration: 8, Func. Count: 80, Neg. LLF: 96.14457685974727
Iteration: 9, Func. Count: 90, Neg. LLF: 92.43830140582011
Iteration: 10, Func. Count: 99, Neg. LLF: 92.41772513109952
Iteration: 11, Func. Count: 108, Neg. LLF: 92.40364152227089
Iteration: 12, Func. Count: 117, Neg. LLF: 92.40011116337357
Iteration: 13, Func. Count: 126, Neg. LLF: 92.4000130106864
Iteration: 14, Func. Count: 135, Neg. LLF: 92.39998685552928
Iteration: 15, Func. Count: 144, Neg. LLF: 92.39998526952334
Iteration: 16, Func. Count: 152, Neg. LLF: 92.39998537795745
Optimization terminated successfully (Exit mode 0)
Current function value: 92.39998526952334
Iterations: 16
Function evaluations: 152
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 132.0848734405751
Iteration: 2, Func. Count: 26, Neg. LLF: 177.48617135995232
Iteration: 3, Func. Count: 37, Neg. LLF: 132.11217234695027
Iteration: 4, Func. Count: 48, Neg. LLF: 170.07976503634592
Iteration: 5, Func. Count: 59, Neg. LLF: 107.97501119516474
Iteration: 6, Func. Count: 70, Neg. LLF: 100.08036598848656
Iteration: 7, Func. Count: 81, Neg. LLF: 100.727329869627
Iteration: 8, Func. Count: 92, Neg. LLF: 97.56011080592626
Iteration: 9, Func. Count: 102, Neg. LLF: 97.58607398976055
Iteration: 10, Func. Count: 113, Neg. LLF: 94.22887706419617
Iteration: 11, Func. Count: 123, Neg. LLF: 94.0384482118668
Iteration: 12, Func. Count: 133, Neg. LLF: 93.9136420558317
Iteration: 13, Func. Count: 143, Neg. LLF: 92.83006673255919
Iteration: 14, Func. Count: 153, Neg. LLF: 92.59011854775525
Iteration: 15, Func. Count: 163, Neg. LLF: 92.43974219438961
Iteration: 16, Func. Count: 173, Neg. LLF: 92.43598725855644
Iteration: 17, Func. Count: 183, Neg. LLF: 92.42143318886497
Iteration: 18, Func. Count: 193, Neg. LLF: 92.41214139135946
Iteration: 19, Func. Count: 203, Neg. LLF: 92.40873354767032
Iteration: 20, Func. Count: 213, Neg. LLF: 92.40365224112078
Iteration: 21, Func. Count: 223, Neg. LLF: 92.40242773583934
Iteration: 22, Func. Count: 233, Neg. LLF: 92.40065658592677
Iteration: 23, Func. Count: 243, Neg. LLF: 92.40009414186386
Iteration: 24, Func. Count: 253, Neg. LLF: 92.39999855126035
Iteration: 25, Func. Count: 263, Neg. LLF: 92.39998849299201
Iteration: 26, Func. Count: 273, Neg. LLF: 92.39998416983508
Iteration: 27, Func. Count: 283, Neg. LLF: 92.39998557597218
Optimization terminated successfully (Exit mode 0)
Current function value: 92.39998421691031
Iterations: 28
Function evaluations: 285
Gradient evaluations: 27
Iteration: 1, Func. Count: 12, Neg. LLF: 135.18173504332935
Iteration: 2, Func. Count: 28, Neg. LLF: 175.59090926708836
Iteration: 3, Func. Count: 40, Neg. LLF: 124.28452657793704
Iteration: 4, Func. Count: 52, Neg. LLF: 118.1675332494947
Iteration: 5, Func. Count: 64, Neg. LLF: 108.50101479876976
Iteration: 6, Func. Count: 76, Neg. LLF: 97.68877455161827
Iteration: 7, Func. Count: 88, Neg. LLF: 903.2351776583114
Iteration: 8, Func. Count: 100, Neg. LLF: 95.04524716990514
Iteration: 9, Func. Count: 112, Neg. LLF: 94.35816624380799
Iteration: 10, Func. Count: 124, Neg. LLF: 93.37496472321325
Iteration: 11, Func. Count: 135, Neg. LLF: 95.94711437538193
Iteration: 12, Func. Count: 147, Neg. LLF: 93.12986912261769
Iteration: 13, Func. Count: 158, Neg. LLF: 92.96425555852046
Iteration: 14, Func. Count: 169, Neg. LLF: 92.82647207261276
Iteration: 15, Func. Count: 180, Neg. LLF: 92.70143949731916
Iteration: 16, Func. Count: 191, Neg. LLF: 92.78223358274386
Iteration: 17, Func. Count: 203, Neg. LLF: 92.47793165633527
Iteration: 18, Func. Count: 214, Neg. LLF: 92.37583397210533
Iteration: 19, Func. Count: 225, Neg. LLF: 92.33343226533574
Iteration: 20, Func. Count: 236, Neg. LLF: 92.31921466617554
Iteration: 21, Func. Count: 247, Neg. LLF: 92.31692799058874
Iteration: 22, Func. Count: 258, Neg. LLF: 92.31604903102318
Iteration: 23, Func. Count: 269, Neg. LLF: 92.31583394798406
Iteration: 24, Func. Count: 280, Neg. LLF: 92.31561027644983
Iteration: 25, Func. Count: 291, Neg. LLF: 92.31551874675353
Iteration: 26, Func. Count: 302, Neg. LLF: 92.31548765602214
Iteration: 27, Func. Count: 313, Neg. LLF: 92.31548176371294
Iteration: 28, Func. Count: 324, Neg. LLF: 92.31547669050084
Iteration: 29, Func. Count: 335, Neg. LLF: 92.31547097766061
Iteration: 30, Func. Count: 346, Neg. LLF: 92.31546822411121
Iteration: 31, Func. Count: 356, Neg. LLF: 92.315468204303
Optimization terminated successfully (Exit mode 0)
Current function value: 92.31546822411121
Iterations: 31
Function evaluations: 356
Gradient evaluations: 31
Iteration: 1, Func. Count: 13, Neg. LLF: 138.0801452012426
Iteration: 2, Func. Count: 30, Neg. LLF: 200.0231169338898
Iteration: 3, Func. Count: 43, Neg. LLF: 168.03253863981658
Iteration: 4, Func. Count: 56, Neg. LLF: 284.3197976745814
Iteration: 5, Func. Count: 70, Neg. LLF: 119.6266648249402
Iteration: 6, Func. Count: 83, Neg. LLF: 112.76492003669541
Iteration: 7, Func. Count: 96, Neg. LLF: 108.05187284231148
Iteration: 8, Func. Count: 109, Neg. LLF: 106.38844123581828
Iteration: 9, Func. Count: 122, Neg. LLF: 106.38359884983122
Iteration: 10, Func. Count: 135, Neg. LLF: 93.83828805386787
Iteration: 11, Func. Count: 147, Neg. LLF: 108.69284641979766
Iteration: 12, Func. Count: 160, Neg. LLF: 92.71257735971545
Iteration: 13, Func. Count: 172, Neg. LLF: 92.51677380226339
Iteration: 14, Func. Count: 184, Neg. LLF: 92.28427447795806
Iteration: 15, Func. Count: 196, Neg. LLF: 92.23896180658967
Iteration: 16, Func. Count: 208, Neg. LLF: 92.15372727162037
Iteration: 17, Func. Count: 220, Neg. LLF: 92.13284124498173
Iteration: 18, Func. Count: 232, Neg. LLF: 92.12710163312437
Iteration: 19, Func. Count: 244, Neg. LLF: 92.12575634168115
Iteration: 20, Func. Count: 256, Neg. LLF: 92.1251733135799
Iteration: 21, Func. Count: 268, Neg. LLF: 92.12511912616858
Iteration: 22, Func. Count: 280, Neg. LLF: 92.12511818478526
Optimization terminated successfully (Exit mode 0)
Current function value: 92.12511818478526
Iterations: 22
Function evaluations: 280
Gradient evaluations: 22
Iteration: 1, Func. Count: 10, Neg. LLF: 107.34935400349771
Iteration: 2, Func. Count: 21, Neg. LLF: 5175.783619433975
Iteration: 3, Func. Count: 31, Neg. LLF: 4110.229252891836
Iteration: 4, Func. Count: 41, Neg. LLF: 852.3205351736609
Iteration: 5, Func. Count: 51, Neg. LLF: 148.7192524571633
Iteration: 6, Func. Count: 61, Neg. LLF: 316.91572254709877
Iteration: 7, Func. Count: 71, Neg. LLF: 189.2044281203599
Iteration: 8, Func. Count: 81, Neg. LLF: 587.9279126571138
Iteration: 9, Func. Count: 91, Neg. LLF: 12744.87983124166
Iteration: 10, Func. Count: 101, Neg. LLF: 93.52136551248752
Iteration: 11, Func. Count: 110, Neg. LLF: 93.44111202901993
Iteration: 12, Func. Count: 120, Neg. LLF: 94.5003979347227
Iteration: 13, Func. Count: 130, Neg. LLF: 92.48722526481835
Iteration: 14, Func. Count: 139, Neg. LLF: 92.43180235465888
Iteration: 15, Func. Count: 148, Neg. LLF: 92.42424766614639
Iteration: 16, Func. Count: 157, Neg. LLF: 92.41608983269285
Iteration: 17, Func. Count: 166, Neg. LLF: 92.40737016545263
Iteration: 18, Func. Count: 175, Neg. LLF: 92.4017855326661
Iteration: 19, Func. Count: 184, Neg. LLF: 92.40023183879984
Iteration: 20, Func. Count: 193, Neg. LLF: 92.40000513206
Iteration: 21, Func. Count: 202, Neg. LLF: 92.39998611410266
Iteration: 22, Func. Count: 211, Neg. LLF: 92.39998524683556
Optimization terminated successfully (Exit mode 0)
Current function value: 92.39998524683556
Iterations: 22
Function evaluations: 211
Gradient evaluations: 22
Iteration: 1, Func. Count: 11, Neg. LLF: 104.57447435570087
Iteration: 2, Func. Count: 22, Neg. LLF: 241.97614643393698
Iteration: 3, Func. Count: 33, Neg. LLF: 5703.259187689392
Iteration: 4, Func. Count: 44, Neg. LLF: 163.80663395183177
Iteration: 5, Func. Count: 55, Neg. LLF: 168.35061583878044
Iteration: 6, Func. Count: 66, Neg. LLF: 761.2105010667059
Iteration: 7, Func. Count: 77, Neg. LLF: 3542.8910721933507
Iteration: 8, Func. Count: 88, Neg. LLF: 96.51492111798049
Iteration: 9, Func. Count: 99, Neg. LLF: 92.44893610167207
Iteration: 10, Func. Count: 109, Neg. LLF: 92.42065805201257
Iteration: 11, Func. Count: 119, Neg. LLF: 92.40606228798718
Iteration: 12, Func. Count: 129, Neg. LLF: 92.40008641821983
Iteration: 13, Func. Count: 139, Neg. LLF: 92.39999168666145
Iteration: 14, Func. Count: 149, Neg. LLF: 92.39998680514798
Iteration: 15, Func. Count: 159, Neg. LLF: 92.3999852306788
Iteration: 16, Func. Count: 168, Neg. LLF: 92.39998533913212
Optimization terminated successfully (Exit mode 0)
Current function value: 92.3999852306788
Iterations: 16
Function evaluations: 168
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 132.05489116038223
Iteration: 2, Func. Count: 28, Neg. LLF: 175.91059571119914
Iteration: 3, Func. Count: 40, Neg. LLF: 131.46064467440715
Iteration: 4, Func. Count: 52, Neg. LLF: 170.84210174380522
Iteration: 5, Func. Count: 64, Neg. LLF: 107.66926323896892
Iteration: 6, Func. Count: 76, Neg. LLF: 99.50420583972652
Iteration: 7, Func. Count: 88, Neg. LLF: 103.23514526500696
Iteration: 8, Func. Count: 100, Neg. LLF: 96.00277618913832
Iteration: 9, Func. Count: 111, Neg. LLF: 101.11838501155361
Iteration: 10, Func. Count: 123, Neg. LLF: 94.89346044829274
Iteration: 11, Func. Count: 134, Neg. LLF: 94.01358628235064
Iteration: 12, Func. Count: 145, Neg. LLF: 93.59851866947857
Iteration: 13, Func. Count: 156, Neg. LLF: 92.92282877871932
Iteration: 14, Func. Count: 167, Neg. LLF: 92.83089621225614
Iteration: 15, Func. Count: 178, Neg. LLF: 92.65221111661985
Iteration: 16, Func. Count: 189, Neg. LLF: 92.61950524753283
Iteration: 17, Func. Count: 200, Neg. LLF: 92.58810135578429
Iteration: 18, Func. Count: 211, Neg. LLF: 92.55935024963829
Iteration: 19, Func. Count: 222, Neg. LLF: 92.52800106243296
Iteration: 20, Func. Count: 233, Neg. LLF: 92.4833628085199
Iteration: 21, Func. Count: 244, Neg. LLF: 92.45007659406562
Iteration: 22, Func. Count: 255, Neg. LLF: 92.43308301227961
Iteration: 23, Func. Count: 266, Neg. LLF: 92.42330967515662
Iteration: 24, Func. Count: 277, Neg. LLF: 92.41133258914138
Iteration: 25, Func. Count: 288, Neg. LLF: 92.40830860827597
Iteration: 26, Func. Count: 299, Neg. LLF: 92.39993560165516
Iteration: 27, Func. Count: 310, Neg. LLF: 93.28559583560993
Iteration: 28, Func. Count: 323, Neg. LLF: 92.40080426758408
Iteration: 29, Func. Count: 335, Neg. LLF: 92.40055526840682
Iteration: 30, Func. Count: 347, Neg. LLF: 92.40000136702578
Iteration: 31, Func. Count: 359, Neg. LLF: 92.39998524262903
Iteration: 32, Func. Count: 369, Neg. LLF: 92.39998550009335
Optimization terminated successfully (Exit mode 0)
Current function value: 92.39998524262903
Iterations: 33
Function evaluations: 369
Gradient evaluations: 32
Iteration: 1, Func. Count: 13, Neg. LLF: 135.31491148183787
Iteration: 2, Func. Count: 30, Neg. LLF: 172.79195968435923
Iteration: 3, Func. Count: 43, Neg. LLF: 123.04274179957962
Iteration: 4, Func. Count: 56, Neg. LLF: 118.71070560207608
Iteration: 5, Func. Count: 69, Neg. LLF: 112.7875459407563
Iteration: 6, Func. Count: 82, Neg. LLF: 96.6995572616333
Iteration: 7, Func. Count: 94, Neg. LLF: 408.04089609844306
Iteration: 8, Func. Count: 107, Neg. LLF: 98.20869035519459
Iteration: 9, Func. Count: 120, Neg. LLF: 111.2846824220548
Iteration: 10, Func. Count: 134, Neg. LLF: 94.4150864062363
Iteration: 11, Func. Count: 147, Neg. LLF: 95.80528928929915
Iteration: 12, Func. Count: 160, Neg. LLF: 93.41260079224799
Iteration: 13, Func. Count: 172, Neg. LLF: 93.16018880895342
Iteration: 14, Func. Count: 184, Neg. LLF: 92.8415309064068
Iteration: 15, Func. Count: 196, Neg. LLF: 92.75140200336982
Iteration: 16, Func. Count: 208, Neg. LLF: 92.55510308503307
Iteration: 17, Func. Count: 220, Neg. LLF: 92.53910205401651
Iteration: 18, Func. Count: 233, Neg. LLF: 92.45936810023156
Iteration: 19, Func. Count: 245, Neg. LLF: 92.33941403032001
Iteration: 20, Func. Count: 257, Neg. LLF: 92.32710462355011
Iteration: 21, Func. Count: 269, Neg. LLF: 92.3204229106882
Iteration: 22, Func. Count: 281, Neg. LLF: 92.31944960669507
Iteration: 23, Func. Count: 293, Neg. LLF: 92.31815399462447
Iteration: 24, Func. Count: 305, Neg. LLF: 92.31713060873476
Iteration: 25, Func. Count: 317, Neg. LLF: 92.31605582261442
Iteration: 26, Func. Count: 329, Neg. LLF: 92.31556630843932
Iteration: 27, Func. Count: 341, Neg. LLF: 92.31547221087004
Iteration: 28, Func. Count: 353, Neg. LLF: 92.31546791525943
Iteration: 29, Func. Count: 364, Neg. LLF: 92.31546789555452
Optimization terminated successfully (Exit mode 0)
Current function value: 92.31546791525943
Iterations: 29
Function evaluations: 364
Gradient evaluations: 29
Iteration: 1, Func. Count: 14, Neg. LLF: 138.31696753716528
Iteration: 2, Func. Count: 32, Neg. LLF: 197.20253979408008
Iteration: 3, Func. Count: 46, Neg. LLF: 164.60800639417752
Iteration: 4, Func. Count: 60, Neg. LLF: 296.7155232412748
Iteration: 5, Func. Count: 75, Neg. LLF: 117.58962126204746
Iteration: 6, Func. Count: 89, Neg. LLF: 112.2563772332456
Iteration: 7, Func. Count: 103, Neg. LLF: 107.3344843778128
Iteration: 8, Func. Count: 117, Neg. LLF: 106.57585559638098
Iteration: 9, Func. Count: 131, Neg. LLF: 100.26806415912628
Iteration: 10, Func. Count: 145, Neg. LLF: 93.314644266088
Iteration: 11, Func. Count: 158, Neg. LLF: 99.56262211209398
Iteration: 12, Func. Count: 172, Neg. LLF: 92.96283288360807
Iteration: 13, Func. Count: 185, Neg. LLF: 92.69457791105872
Iteration: 14, Func. Count: 198, Neg. LLF: 92.59244763132723
Iteration: 15, Func. Count: 211, Neg. LLF: 92.46199020032297
Iteration: 16, Func. Count: 224, Neg. LLF: 92.29736790677293
Iteration: 17, Func. Count: 237, Neg. LLF: 92.15922795731029
Iteration: 18, Func. Count: 250, Neg. LLF: 92.1273634903497
Iteration: 19, Func. Count: 263, Neg. LLF: 92.12632801837049
Iteration: 20, Func. Count: 276, Neg. LLF: 92.12533116606348
Iteration: 21, Func. Count: 289, Neg. LLF: 92.12528997244651
Iteration: 22, Func. Count: 302, Neg. LLF: 92.12504900367483
Iteration: 23, Func. Count: 315, Neg. LLF: 92.12503350591098
Iteration: 24, Func. Count: 338, Neg. LLF: 92.12510745699404
Iteration: 25, Func. Count: 351, Neg. LLF: 92.12508227342545
Optimization terminated successfully (Exit mode 0)
Current function value: 92.12510743055626
Iterations: 25
Function evaluations: 361
Gradient evaluations: 25
Iteration: 1, Func. Count: 11, Neg. LLF: 112.07285949512242
Iteration: 2, Func. Count: 23, Neg. LLF: 372.1867981029319
Iteration: 3, Func. Count: 34, Neg. LLF: 3137.9037359813647
Iteration: 4, Func. Count: 45, Neg. LLF: 13908.429865251392
Iteration: 5, Func. Count: 56, Neg. LLF: 496.10161259827913
Iteration: 6, Func. Count: 67, Neg. LLF: 212.52062005161125
Iteration: 7, Func. Count: 78, Neg. LLF: 186.02217510491857
Iteration: 8, Func. Count: 89, Neg. LLF: 563.3954001092177
Iteration: 9, Func. Count: 100, Neg. LLF: 1348.7023005197964
Iteration: 10, Func. Count: 111, Neg. LLF: 96.10578400981936
Iteration: 11, Func. Count: 122, Neg. LLF: 92.72283971305353
Iteration: 12, Func. Count: 132, Neg. LLF: 93.00765826351973
Iteration: 13, Func. Count: 143, Neg. LLF: 92.47454508729851
Iteration: 14, Func. Count: 153, Neg. LLF: 92.42239449433869
Iteration: 15, Func. Count: 163, Neg. LLF: 92.4092245166749
Iteration: 16, Func. Count: 173, Neg. LLF: 92.40096414968477
Iteration: 17, Func. Count: 183, Neg. LLF: 92.40003244126252
Iteration: 18, Func. Count: 193, Neg. LLF: 92.39998570982968
Iteration: 19, Func. Count: 202, Neg. LLF: 92.39998594285488
Optimization terminated successfully (Exit mode 0)
Current function value: 92.39998570982968
Iterations: 19
Function evaluations: 202
Gradient evaluations: 19
Iteration: 1, Func. Count: 12, Neg. LLF: 105.00453640727804
Iteration: 2, Func. Count: 24, Neg. LLF: 240.1862349414236
Iteration: 3, Func. Count: 36, Neg. LLF: 24095.995129535073
Iteration: 4, Func. Count: 48, Neg. LLF: 165.3644307346172
Iteration: 5, Func. Count: 60, Neg. LLF: 166.91347249966603
Iteration: 6, Func. Count: 72, Neg. LLF: 739.7128953130912
Iteration: 7, Func. Count: 84, Neg. LLF: 2969.66857312184
Iteration: 8, Func. Count: 96, Neg. LLF: 96.11537225909275
Iteration: 9, Func. Count: 108, Neg. LLF: 92.44104664742439
Iteration: 10, Func. Count: 119, Neg. LLF: 92.42056828904084
Iteration: 11, Func. Count: 130, Neg. LLF: 92.40219907359149
Iteration: 12, Func. Count: 141, Neg. LLF: 92.40010507032234
Iteration: 13, Func. Count: 152, Neg. LLF: 92.40000363588152
Iteration: 14, Func. Count: 163, Neg. LLF: 92.39998729796633
Iteration: 15, Func. Count: 174, Neg. LLF: 92.39998527957265
Iteration: 16, Func. Count: 184, Neg. LLF: 92.39998538800832
Optimization terminated successfully (Exit mode 0)
Current function value: 92.39998527957265
Iterations: 16
Function evaluations: 184
Gradient evaluations: 16
Iteration: 1, Func. Count: 13, Neg. LLF: 131.9440081292706
Iteration: 2, Func. Count: 30, Neg. LLF: 175.45864641697543
Iteration: 3, Func. Count: 43, Neg. LLF: 131.81162276133665
Iteration: 4, Func. Count: 56, Neg. LLF: 164.09625741278336
Iteration: 5, Func. Count: 69, Neg. LLF: 104.85730519054042
Iteration: 6, Func. Count: 82, Neg. LLF: 99.69752124459283
Iteration: 7, Func. Count: 95, Neg. LLF: 102.34008385997811
Iteration: 8, Func. Count: 108, Neg. LLF: 99.27522597611517
Iteration: 9, Func. Count: 121, Neg. LLF: 100.93470284926083
Iteration: 10, Func. Count: 134, Neg. LLF: 94.40931009459742
Iteration: 11, Func. Count: 146, Neg. LLF: 93.04238780442338
Iteration: 12, Func. Count: 158, Neg. LLF: 92.83645823016178
Iteration: 13, Func. Count: 170, Neg. LLF: 92.63279670656455
Iteration: 14, Func. Count: 182, Neg. LLF: 92.56211825952882
Iteration: 15, Func. Count: 194, Neg. LLF: 92.52244174795113
Iteration: 16, Func. Count: 206, Neg. LLF: 92.49305851128666
Iteration: 17, Func. Count: 218, Neg. LLF: 92.4651586090799
Iteration: 18, Func. Count: 230, Neg. LLF: 92.44642727260495
Iteration: 19, Func. Count: 242, Neg. LLF: 92.43541487158332
Iteration: 20, Func. Count: 254, Neg. LLF: 92.42722996516503
Iteration: 21, Func. Count: 266, Neg. LLF: 92.4158044433778
Iteration: 22, Func. Count: 278, Neg. LLF: 92.40490168896739
Iteration: 23, Func. Count: 290, Neg. LLF: 92.40081923344556
Iteration: 24, Func. Count: 302, Neg. LLF: 92.40040086804794
Iteration: 25, Func. Count: 314, Neg. LLF: 92.40011114038184
Iteration: 26, Func. Count: 326, Neg. LLF: 92.4001230722178
Optimization terminated successfully (Exit mode 0)
Current function value: 92.40011056920733
Iterations: 26
Function evaluations: 327
Gradient evaluations: 26
Iteration: 1, Func. Count: 14, Neg. LLF: 135.24476364343062
Iteration: 2, Func. Count: 32, Neg. LLF: 172.35780538978236
Iteration: 3, Func. Count: 46, Neg. LLF: 123.1969474280377
Iteration: 4, Func. Count: 60, Neg. LLF: 119.40889426281484
Iteration: 5, Func. Count: 74, Neg. LLF: 112.74205786592576
Iteration: 6, Func. Count: 88, Neg. LLF: 96.58243118745125
Iteration: 7, Func. Count: 101, Neg. LLF: 4971.788279998355
Iteration: 8, Func. Count: 115, Neg. LLF: 97.6962917587983
Iteration: 9, Func. Count: 129, Neg. LLF: 111.14280101964562
Iteration: 10, Func. Count: 143, Neg. LLF: 94.22757886233698
Iteration: 11, Func. Count: 156, Neg. LLF: 94.14006457339711
Iteration: 12, Func. Count: 170, Neg. LLF: 94.24799302592048
Iteration: 13, Func. Count: 185, Neg. LLF: 93.3353464116464
Iteration: 14, Func. Count: 198, Neg. LLF: 93.03652971488364
Iteration: 15, Func. Count: 211, Neg. LLF: 92.86574502653554
Iteration: 16, Func. Count: 224, Neg. LLF: 92.59094552786024
Iteration: 17, Func. Count: 237, Neg. LLF: 92.50002779661695
Iteration: 18, Func. Count: 250, Neg. LLF: 92.43771230348851
Iteration: 19, Func. Count: 263, Neg. LLF: 92.3704191811958
Iteration: 20, Func. Count: 276, Neg. LLF: 92.33657848191527
Iteration: 21, Func. Count: 289, Neg. LLF: 92.31861193083384
Iteration: 22, Func. Count: 302, Neg. LLF: 92.31754292021154
Iteration: 23, Func. Count: 315, Neg. LLF: 92.31715174977438
Iteration: 24, Func. Count: 328, Neg. LLF: 92.31675634341701
Iteration: 25, Func. Count: 341, Neg. LLF: 92.31615582025957
Iteration: 26, Func. Count: 354, Neg. LLF: 92.31565563666193
Iteration: 27, Func. Count: 367, Neg. LLF: 92.31548832258369
Iteration: 28, Func. Count: 380, Neg. LLF: 92.31546846609304
Iteration: 29, Func. Count: 393, Neg. LLF: 92.31546772751845
Optimization terminated successfully (Exit mode 0)
Current function value: 92.31546772751845
Iterations: 29
Function evaluations: 393
Gradient evaluations: 29
Iteration: 1, Func. Count: 15, Neg. LLF: 138.27648740799887
Iteration: 2, Func. Count: 34, Neg. LLF: 196.73537018215387
Iteration: 3, Func. Count: 49, Neg. LLF: 166.2645318835676
Iteration: 4, Func. Count: 64, Neg. LLF: 175.60738374071687
Iteration: 5, Func. Count: 80, Neg. LLF: 113.13204411753024
Iteration: 6, Func. Count: 95, Neg. LLF: 99.22964438194401
Iteration: 7, Func. Count: 110, Neg. LLF: 95.89645358488548
Iteration: 8, Func. Count: 124, Neg. LLF: 108.61402093636738
Iteration: 9, Func. Count: 140, Neg. LLF: 94.83512204797273
Iteration: 10, Func. Count: 154, Neg. LLF: 93.9912435147585
Iteration: 11, Func. Count: 168, Neg. LLF: 93.19556429040458
Iteration: 12, Func. Count: 182, Neg. LLF: 92.82033862506857
Iteration: 13, Func. Count: 196, Neg. LLF: 92.52360467031336
Iteration: 14, Func. Count: 210, Neg. LLF: 92.33508802735479
Iteration: 15, Func. Count: 224, Neg. LLF: 92.15620988675465
Iteration: 16, Func. Count: 238, Neg. LLF: 92.1287597916626
Iteration: 17, Func. Count: 252, Neg. LLF: 92.1254011396876
Iteration: 18, Func. Count: 266, Neg. LLF: 92.12514254702432
Iteration: 19, Func. Count: 280, Neg. LLF: 92.12513356788023
Iteration: 20, Func. Count: 294, Neg. LLF: 92.12512005634325
Iteration: 21, Func. Count: 308, Neg. LLF: 92.12511842874042
Iteration: 22, Func. Count: 321, Neg. LLF: 92.12511824033523
Optimization terminated successfully (Exit mode 0)
Current function value: 92.12511842874042
Iterations: 22
Function evaluations: 321
Gradient evaluations: 22
Iteration: 1, Func. Count: 8, Neg. LLF: 118.18209012796008
Iteration: 2, Func. Count: 17, Neg. LLF: 338.85339509943697
Iteration: 3, Func. Count: 25, Neg. LLF: 330.36268129810543
Iteration: 4, Func. Count: 33, Neg. LLF: 891.3840043495285
Iteration: 5, Func. Count: 41, Neg. LLF: 634.8904231248432
Iteration: 6, Func. Count: 49, Neg. LLF: 192.72067110713996
Iteration: 7, Func. Count: 57, Neg. LLF: 279.70817380185895
Iteration: 8, Func. Count: 65, Neg. LLF: 131.31063227754754
Iteration: 9, Func. Count: 73, Neg. LLF: 317418.2522888432
Iteration: 10, Func. Count: 81, Neg. LLF: 1651.4803726405323
Iteration: 11, Func. Count: 89, Neg. LLF: 107.36767474225704
Iteration: 12, Func. Count: 97, Neg. LLF: 95.56576344917683
Iteration: 13, Func. Count: 105, Neg. LLF: 94.32536104485325
Iteration: 14, Func. Count: 112, Neg. LLF: 94.01935340818315
Iteration: 15, Func. Count: 119, Neg. LLF: 93.85176194247087
Iteration: 16, Func. Count: 126, Neg. LLF: 93.83976310868441
Iteration: 17, Func. Count: 133, Neg. LLF: 93.83959387937732
Iteration: 18, Func. Count: 140, Neg. LLF: 93.83953031465207
Iteration: 19, Func. Count: 147, Neg. LLF: 93.8395277739505
Iteration: 20, Func. Count: 153, Neg. LLF: 93.83952797345775
Optimization terminated successfully (Exit mode 0)
Current function value: 93.8395277739505
Iterations: 20
Function evaluations: 153
Gradient evaluations: 20
Iteration: 1, Func. Count: 9, Neg. LLF: 180.21692584644217
Iteration: 2, Func. Count: 21, Neg. LLF: 103.50645572136057
Iteration: 3, Func. Count: 29, Neg. LLF: 101.62669079823466
Iteration: 4, Func. Count: 37, Neg. LLF: 111.50980257383068
Iteration: 5, Func. Count: 46, Neg. LLF: 101.29153308655084
Iteration: 6, Func. Count: 54, Neg. LLF: 101.22953261409141
Iteration: 7, Func. Count: 62, Neg. LLF: 101.2293794159235
Iteration: 8, Func. Count: 70, Neg. LLF: 101.2293788048638
Optimization terminated successfully (Exit mode 0)
Current function value: 101.2293788048638
Iterations: 8
Function evaluations: 70
Gradient evaluations: 8
Iteration: 1, Func. Count: 10, Neg. LLF: 174.26892678149753
Iteration: 2, Func. Count: 23, Neg. LLF: 104.91658242625674
Iteration: 3, Func. Count: 33, Neg. LLF: 101.41400493323933
Iteration: 4, Func. Count: 42, Neg. LLF: 101.97481746066795
Iteration: 5, Func. Count: 52, Neg. LLF: 101.34306211183488
Iteration: 6, Func. Count: 62, Neg. LLF: 101.30900819971629
Iteration: 7, Func. Count: 71, Neg. LLF: 101.30602827477836
Iteration: 8, Func. Count: 80, Neg. LLF: 101.30469748757747
Iteration: 9, Func. Count: 89, Neg. LLF: 101.29960241850353
Iteration: 10, Func. Count: 98, Neg. LLF: 101.28828787266006
Iteration: 11, Func. Count: 107, Neg. LLF: 101.23409983602745
Iteration: 12, Func. Count: 116, Neg. LLF: 101.23086041255627
Iteration: 13, Func. Count: 125, Neg. LLF: 101.2312215679051
Iteration: 14, Func. Count: 135, Neg. LLF: 101.2293881915323
Iteration: 15, Func. Count: 144, Neg. LLF: 101.22937916686693
Iteration: 16, Func. Count: 153, Neg. LLF: 101.22941246882785
Optimization terminated successfully (Exit mode 0)
Current function value: 101.22937916419352
Iterations: 17
Function evaluations: 155
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 173.64999953912007
Iteration: 2, Func. Count: 25, Neg. LLF: 105.61925812774425
Iteration: 3, Func. Count: 36, Neg. LLF: 101.24892442020509
Iteration: 4, Func. Count: 46, Neg. LLF: 101.24217926173982
Iteration: 5, Func. Count: 56, Neg. LLF: 101.2342904935896
Iteration: 6, Func. Count: 66, Neg. LLF: 101.23423035563285
Iteration: 7, Func. Count: 76, Neg. LLF: 101.23419605112156
Iteration: 8, Func. Count: 86, Neg. LLF: 101.23419235399733
Iteration: 9, Func. Count: 95, Neg. LLF: 101.23419251464465
Optimization terminated successfully (Exit mode 0)
Current function value: 101.23419235399733
Iterations: 9
Function evaluations: 95
Gradient evaluations: 9
Iteration: 1, Func. Count: 12, Neg. LLF: 180.5318047225588
Iteration: 2, Func. Count: 28, Neg. LLF: 106.53964897585236
Iteration: 3, Func. Count: 40, Neg. LLF: 101.47940898372231
Iteration: 4, Func. Count: 51, Neg. LLF: 101.42160012051794
Iteration: 5, Func. Count: 62, Neg. LLF: 101.41034798043131
Iteration: 6, Func. Count: 73, Neg. LLF: 101.39784805768156
Iteration: 7, Func. Count: 84, Neg. LLF: 101.37762322056912
Iteration: 8, Func. Count: 95, Neg. LLF: 101.34823905483567
Iteration: 9, Func. Count: 106, Neg. LLF: 101.33430057854622
Iteration: 10, Func. Count: 117, Neg. LLF: 101.32923991441766
Iteration: 11, Func. Count: 128, Neg. LLF: 101.29733678096572
Iteration: 12, Func. Count: 139, Neg. LLF: 101.26546277806384
Iteration: 13, Func. Count: 150, Neg. LLF: 105.89203041770054
Iteration: 14, Func. Count: 171, Neg. LLF: 101.2683902875016
Iteration: 15, Func. Count: 185, Neg. LLF: 101.25491224057541
Iteration: 16, Func. Count: 196, Neg. LLF: 101.24841473428769
Iteration: 17, Func. Count: 207, Neg. LLF: 101.23248809774255
Iteration: 18, Func. Count: 218, Neg. LLF: 151.8346998139758
Iteration: 19, Func. Count: 232, Neg. LLF: 101.34626873378957
Iteration: 20, Func. Count: 244, Neg. LLF: 101.22937873449015
Iteration: 21, Func. Count: 254, Neg. LLF: 101.22937832113156
Optimization terminated successfully (Exit mode 0)
Current function value: 101.22937873449015
Iterations: 22
Function evaluations: 254
Gradient evaluations: 21
Iteration: 1, Func. Count: 9, Neg. LLF: 113.73824272078612
Iteration: 2, Func. Count: 19, Neg. LLF: 270.0104556340713
Iteration: 3, Func. Count: 28, Neg. LLF: 8069612.73445318
Iteration: 4, Func. Count: 37, Neg. LLF: 156527.790972498
Iteration: 5, Func. Count: 46, Neg. LLF: 167.46334651554398
Iteration: 6, Func. Count: 55, Neg. LLF: 173.48441319056525
Iteration: 7, Func. Count: 64, Neg. LLF: 260.18938391128916
Iteration: 8, Func. Count: 73, Neg. LLF: 165.85177445403033
Iteration: 9, Func. Count: 82, Neg. LLF: 6395.461089356058
Iteration: 10, Func. Count: 91, Neg. LLF: 95.40698589121213
Iteration: 11, Func. Count: 100, Neg. LLF: 92.78753999443519
Iteration: 12, Func. Count: 108, Neg. LLF: 93.2639887059072
Iteration: 13, Func. Count: 117, Neg. LLF: 92.462600516523
Iteration: 14, Func. Count: 125, Neg. LLF: 92.43538249959882
Iteration: 15, Func. Count: 133, Neg. LLF: 92.42880842958506
Iteration: 16, Func. Count: 141, Neg. LLF: 92.42664989427543
Iteration: 17, Func. Count: 149, Neg. LLF: 92.42663990434161
Iteration: 18, Func. Count: 156, Neg. LLF: 92.42663990801142
Optimization terminated successfully (Exit mode 0)
Current function value: 92.42663990434161
Iterations: 18
Function evaluations: 156
Gradient evaluations: 18
Iteration: 1, Func. Count: 10, Neg. LLF: 128.14839668091284
Iteration: 2, Func. Count: 24, Neg. LLF: 302.84147355635594
Iteration: 3, Func. Count: 34, Neg. LLF: 143.49432750555314
Iteration: 4, Func. Count: 44, Neg. LLF: 200.8223208389778
Iteration: 5, Func. Count: 55, Neg. LLF: 111.97544627816376
Iteration: 6, Func. Count: 65, Neg. LLF: 99.04683337436079
Iteration: 7, Func. Count: 74, Neg. LLF: 98.59600912187962
Iteration: 8, Func. Count: 84, Neg. LLF: 95.3028011366933
Iteration: 9, Func. Count: 93, Neg. LLF: 95.108321245687
Iteration: 10, Func. Count: 102, Neg. LLF: 95.00663042726
Iteration: 11, Func. Count: 111, Neg. LLF: 94.56908244795251
Iteration: 12, Func. Count: 120, Neg. LLF: 94.35492349108561
Iteration: 13, Func. Count: 129, Neg. LLF: 95.11396524232961
Iteration: 14, Func. Count: 139, Neg. LLF: 93.27264526153473
Iteration: 15, Func. Count: 148, Neg. LLF: 92.98475132017661
Iteration: 16, Func. Count: 157, Neg. LLF: 92.94671101333239
Iteration: 17, Func. Count: 166, Neg. LLF: 92.86346124404292
Iteration: 18, Func. Count: 175, Neg. LLF: 92.68218874283511
Iteration: 19, Func. Count: 184, Neg. LLF: 92.5375208692682
Iteration: 20, Func. Count: 193, Neg. LLF: 92.45085524544169
Iteration: 21, Func. Count: 202, Neg. LLF: 92.42979672156923
Iteration: 22, Func. Count: 211, Neg. LLF: 92.42669174660915
Iteration: 23, Func. Count: 220, Neg. LLF: 92.42666215439378
Iteration: 24, Func. Count: 229, Neg. LLF: 92.42664962723406
Iteration: 25, Func. Count: 238, Neg. LLF: 92.42664430446845
Iteration: 26, Func. Count: 247, Neg. LLF: 92.42664026345292
Iteration: 27, Func. Count: 255, Neg. LLF: 92.42664038320413
Optimization terminated successfully (Exit mode 0)
Current function value: 92.42664026345292
Iterations: 27
Function evaluations: 255
Gradient evaluations: 27
Iteration: 1, Func. Count: 11, Neg. LLF: 132.55741348077217
Iteration: 2, Func. Count: 26, Neg. LLF: 175.3327853798676
Iteration: 3, Func. Count: 37, Neg. LLF: 131.2083119861141
Iteration: 4, Func. Count: 48, Neg. LLF: 201.06507739266894
Iteration: 5, Func. Count: 59, Neg. LLF: 115.35559007702575
Iteration: 6, Func. Count: 70, Neg. LLF: 99.69257637294888
Iteration: 7, Func. Count: 80, Neg. LLF: 99.57184613123502
Iteration: 8, Func. Count: 91, Neg. LLF: 97.02658555877193
Iteration: 9, Func. Count: 101, Neg. LLF: 98.38825454419592
Iteration: 10, Func. Count: 112, Neg. LLF: 94.8640554504297
Iteration: 11, Func. Count: 122, Neg. LLF: 94.58195173592233
Iteration: 12, Func. Count: 132, Neg. LLF: 97.7942908540528
Iteration: 13, Func. Count: 143, Neg. LLF: 94.20834162103526
Iteration: 14, Func. Count: 153, Neg. LLF: 93.98859774654431
Iteration: 15, Func. Count: 163, Neg. LLF: 93.57983966900487
Iteration: 16, Func. Count: 173, Neg. LLF: 93.30160474772718
Iteration: 17, Func. Count: 183, Neg. LLF: 93.12407494699043
Iteration: 18, Func. Count: 193, Neg. LLF: 92.91821340200791
Iteration: 19, Func. Count: 203, Neg. LLF: 92.75871590674805
Iteration: 20, Func. Count: 213, Neg. LLF: 92.44954665197606
Iteration: 21, Func. Count: 223, Neg. LLF: 92.42781634154417
Iteration: 22, Func. Count: 233, Neg. LLF: 92.4271190577795
Iteration: 23, Func. Count: 243, Neg. LLF: 92.42700854110416
Iteration: 24, Func. Count: 253, Neg. LLF: 92.42671764247591
Iteration: 25, Func. Count: 263, Neg. LLF: 92.42665167295891
Iteration: 26, Func. Count: 273, Neg. LLF: 92.42664016234913
Iteration: 27, Func. Count: 282, Neg. LLF: 92.42664043690618
Optimization terminated successfully (Exit mode 0)
Current function value: 92.42664016234913
Iterations: 27
Function evaluations: 282
Gradient evaluations: 27
Iteration: 1, Func. Count: 12, Neg. LLF: 135.77212723750293
Iteration: 2, Func. Count: 28, Neg. LLF: 171.02168283761165
Iteration: 3, Func. Count: 40, Neg. LLF: 119.34522832816323
Iteration: 4, Func. Count: 52, Neg. LLF: 118.88823810321509
Iteration: 5, Func. Count: 64, Neg. LLF: 109.54832573146096
Iteration: 6, Func. Count: 76, Neg. LLF: 98.85734639003198
Iteration: 7, Func. Count: 88, Neg. LLF: 747.1753021035097
Iteration: 8, Func. Count: 101, Neg. LLF: 94.77523666284118
Iteration: 9, Func. Count: 112, Neg. LLF: 94.32962384616843
Iteration: 10, Func. Count: 123, Neg. LLF: 93.72698895780566
Iteration: 11, Func. Count: 134, Neg. LLF: 93.11971466328517
Iteration: 12, Func. Count: 145, Neg. LLF: 92.85497462462209
Iteration: 13, Func. Count: 156, Neg. LLF: 93.33970437608482
Iteration: 14, Func. Count: 168, Neg. LLF: 92.60315408631193
Iteration: 15, Func. Count: 179, Neg. LLF: 92.4803936288162
Iteration: 16, Func. Count: 190, Neg. LLF: 92.36899743870056
Iteration: 17, Func. Count: 201, Neg. LLF: 92.34164278971356
Iteration: 18, Func. Count: 212, Neg. LLF: 92.33216551210184
Iteration: 19, Func. Count: 223, Neg. LLF: 92.31809284504959
Iteration: 20, Func. Count: 234, Neg. LLF: 92.31707605409743
Iteration: 21, Func. Count: 245, Neg. LLF: 92.31665128355267
Iteration: 22, Func. Count: 256, Neg. LLF: 92.31661271808868
Iteration: 23, Func. Count: 267, Neg. LLF: 92.31660869725444
Iteration: 24, Func. Count: 277, Neg. LLF: 92.31660867968259
Optimization terminated successfully (Exit mode 0)
Current function value: 92.31660869725444
Iterations: 24
Function evaluations: 277
Gradient evaluations: 24
Iteration: 1, Func. Count: 13, Neg. LLF: 138.38680883602993
Iteration: 2, Func. Count: 30, Neg. LLF: 205.57696001667253
Iteration: 3, Func. Count: 43, Neg. LLF: 116.37661078688171
Iteration: 4, Func. Count: 56, Neg. LLF: 109.1911312911181
Iteration: 5, Func. Count: 69, Neg. LLF: 151.99322877988342
Iteration: 6, Func. Count: 82, Neg. LLF: 97.11637416945872
Iteration: 7, Func. Count: 95, Neg. LLF: 106.24510251951082
Iteration: 8, Func. Count: 108, Neg. LLF: 96.28652385638793
Iteration: 9, Func. Count: 121, Neg. LLF: 99.32448374104538
Iteration: 10, Func. Count: 134, Neg. LLF: 93.94103164313142
Iteration: 11, Func. Count: 146, Neg. LLF: 93.79446031019562
Iteration: 12, Func. Count: 158, Neg. LLF: 93.1187349829854
Iteration: 13, Func. Count: 170, Neg. LLF: 92.88052040956744
Iteration: 14, Func. Count: 182, Neg. LLF: 92.7878691243038
Iteration: 15, Func. Count: 194, Neg. LLF: 92.63479302783918
Iteration: 16, Func. Count: 206, Neg. LLF: 92.40716281047575
Iteration: 17, Func. Count: 218, Neg. LLF: 92.32435229402984
Iteration: 18, Func. Count: 230, Neg. LLF: 92.26886256690374
Iteration: 19, Func. Count: 242, Neg. LLF: 92.26628993936627
Iteration: 20, Func. Count: 254, Neg. LLF: 92.26616539891052
Iteration: 21, Func. Count: 266, Neg. LLF: 92.26615685374841
Iteration: 22, Func. Count: 278, Neg. LLF: 92.26615313755612
Iteration: 23, Func. Count: 290, Neg. LLF: 92.26615137433814
Iteration: 24, Func. Count: 301, Neg. LLF: 92.26615135426415
Optimization terminated successfully (Exit mode 0)
Current function value: 92.26615137433814
Iterations: 24
Function evaluations: 301
Gradient evaluations: 24
Iteration: 1, Func. Count: 10, Neg. LLF: 116.81980652679619
Iteration: 2, Func. Count: 21, Neg. LLF: 725.7868159035459
Iteration: 3, Func. Count: 31, Neg. LLF: 4907131.663333958
Iteration: 4, Func. Count: 41, Neg. LLF: 676.984220326081
Iteration: 5, Func. Count: 51, Neg. LLF: 1785.9286317512347
Iteration: 6, Func. Count: 61, Neg. LLF: 158.36362570865987
Iteration: 7, Func. Count: 71, Neg. LLF: 283.84902646473995
Iteration: 8, Func. Count: 81, Neg. LLF: 147.53900483345535
Iteration: 9, Func. Count: 91, Neg. LLF: 729.1942365187629
Iteration: 10, Func. Count: 101, Neg. LLF: 94.41657479890452
Iteration: 11, Func. Count: 110, Neg. LLF: 93.93960038436201
Iteration: 12, Func. Count: 120, Neg. LLF: 93.08076889558728
Iteration: 13, Func. Count: 130, Neg. LLF: 92.53220212255748
Iteration: 14, Func. Count: 139, Neg. LLF: 92.4024782093079
Iteration: 15, Func. Count: 148, Neg. LLF: 92.40128212312527
Iteration: 16, Func. Count: 157, Neg. LLF: 92.40071538063357
Iteration: 17, Func. Count: 166, Neg. LLF: 92.40020275087203
Iteration: 18, Func. Count: 175, Neg. LLF: 92.40004537796219
Iteration: 19, Func. Count: 184, Neg. LLF: 92.39999708578799
Iteration: 20, Func. Count: 193, Neg. LLF: 92.39998659047205
Iteration: 21, Func. Count: 202, Neg. LLF: 92.39998528935227
Iteration: 22, Func. Count: 210, Neg. LLF: 92.39998529838145
Optimization terminated successfully (Exit mode 0)
Current function value: 92.39998528935227
Iterations: 22
Function evaluations: 210
Gradient evaluations: 22
Iteration: 1, Func. Count: 11, Neg. LLF: 127.9449745217408
Iteration: 2, Func. Count: 26, Neg. LLF: 301.15290877142274
Iteration: 3, Func. Count: 37, Neg. LLF: 142.39783963630535
Iteration: 4, Func. Count: 48, Neg. LLF: 212.96071146700453
Iteration: 5, Func. Count: 59, Neg. LLF: 120.61029268188658
Iteration: 6, Func. Count: 70, Neg. LLF: 98.97869767045724
Iteration: 7, Func. Count: 80, Neg. LLF: 99.11971147213744
Iteration: 8, Func. Count: 91, Neg. LLF: 96.45205670346833
Iteration: 9, Func. Count: 101, Neg. LLF: 95.1397727284041
Iteration: 10, Func. Count: 111, Neg. LLF: 94.83756583773952
Iteration: 11, Func. Count: 121, Neg. LLF: 94.8222517703511
Iteration: 12, Func. Count: 132, Neg. LLF: 94.44064009377172
Iteration: 13, Func. Count: 142, Neg. LLF: 93.88790988248213
Iteration: 14, Func. Count: 152, Neg. LLF: 93.85481519435587
Iteration: 15, Func. Count: 163, Neg. LLF: 104.83302173294179
Iteration: 16, Func. Count: 174, Neg. LLF: 93.18104981888428
Iteration: 17, Func. Count: 184, Neg. LLF: 92.55611003243695
Iteration: 18, Func. Count: 194, Neg. LLF: 92.51630840718082
Iteration: 19, Func. Count: 204, Neg. LLF: 92.4332772407844
Iteration: 20, Func. Count: 214, Neg. LLF: 92.42021131633122
Iteration: 21, Func. Count: 224, Neg. LLF: 92.40782668454884
Iteration: 22, Func. Count: 234, Neg. LLF: 92.40269590560536
Iteration: 23, Func. Count: 244, Neg. LLF: 92.40175200013424
Iteration: 24, Func. Count: 254, Neg. LLF: 92.40161516881949
Iteration: 25, Func. Count: 264, Neg. LLF: 92.4013551469086
Iteration: 26, Func. Count: 274, Neg. LLF: 92.40093571695435
Iteration: 27, Func. Count: 284, Neg. LLF: 92.40049309522374
Iteration: 28, Func. Count: 294, Neg. LLF: 92.40007628255351
Iteration: 29, Func. Count: 304, Neg. LLF: 92.40000823025098
Iteration: 30, Func. Count: 314, Neg. LLF: 92.39998370094034
Iteration: 31, Func. Count: 324, Neg. LLF: 92.39998188435672
Iteration: 32, Func. Count: 344, Neg. LLF: 92.3999808163377
Iteration: 33, Func. Count: 364, Neg. LLF: 92.39999068504363
Iteration: 34, Func. Count: 375, Neg. LLF: 92.39999173621126
Iteration: 35, Func. Count: 387, Neg. LLF: 92.39998633139012
Iteration: 36, Func. Count: 398, Neg. LLF: 92.39998641136755
Optimization terminated successfully (Exit mode 0)
Current function value: 92.39998414776754
Iterations: 37
Function evaluations: 399
Gradient evaluations: 36
Iteration: 1, Func. Count: 12, Neg. LLF: 132.33879068492416
Iteration: 2, Func. Count: 28, Neg. LLF: 177.74886405259778
Iteration: 3, Func. Count: 40, Neg. LLF: 132.68363732134426
Iteration: 4, Func. Count: 52, Neg. LLF: 170.09765389266406
Iteration: 5, Func. Count: 64, Neg. LLF: 108.66894258135952
Iteration: 6, Func. Count: 76, Neg. LLF: 100.1672797233028
Iteration: 7, Func. Count: 88, Neg. LLF: 100.3520566959259
Iteration: 8, Func. Count: 100, Neg. LLF: 97.68610481787078
Iteration: 9, Func. Count: 111, Neg. LLF: 97.4033135440626
Iteration: 10, Func. Count: 123, Neg. LLF: 94.2520671314747
Iteration: 11, Func. Count: 134, Neg. LLF: 94.34708245625534
Iteration: 12, Func. Count: 146, Neg. LLF: 94.01348565015678
Iteration: 13, Func. Count: 157, Neg. LLF: 92.9071415906361
Iteration: 14, Func. Count: 168, Neg. LLF: 92.52356801139697
Iteration: 15, Func. Count: 179, Neg. LLF: 92.46530542340999
Iteration: 16, Func. Count: 190, Neg. LLF: 92.44826240709563
Iteration: 17, Func. Count: 201, Neg. LLF: 92.43475487132248
Iteration: 18, Func. Count: 212, Neg. LLF: 92.42216309182459
Iteration: 19, Func. Count: 223, Neg. LLF: 92.41714748195946
Iteration: 20, Func. Count: 234, Neg. LLF: 92.41379521269025
Iteration: 21, Func. Count: 245, Neg. LLF: 92.40904498971392
Iteration: 22, Func. Count: 256, Neg. LLF: 92.40381037569414
Iteration: 23, Func. Count: 267, Neg. LLF: 92.4008284466358
Iteration: 24, Func. Count: 278, Neg. LLF: 92.40009180698482
Iteration: 25, Func. Count: 289, Neg. LLF: 92.39998988426784
Iteration: 26, Func. Count: 300, Neg. LLF: 92.39998534957968
Iteration: 27, Func. Count: 310, Neg. LLF: 92.39998560701298
Optimization terminated successfully (Exit mode 0)
Current function value: 92.39998534957968
Iterations: 27
Function evaluations: 310
Gradient evaluations: 27
Iteration: 1, Func. Count: 13, Neg. LLF: 135.44174729277435
Iteration: 2, Func. Count: 30, Neg. LLF: 175.69373789505184
Iteration: 3, Func. Count: 43, Neg. LLF: 124.56581498370225
Iteration: 4, Func. Count: 56, Neg. LLF: 117.67488886790701
Iteration: 5, Func. Count: 69, Neg. LLF: 109.30595927655044
Iteration: 6, Func. Count: 82, Neg. LLF: 98.48323689761374
Iteration: 7, Func. Count: 95, Neg. LLF: 700.4182182023945
Iteration: 8, Func. Count: 108, Neg. LLF: 95.32184392954278
Iteration: 9, Func. Count: 121, Neg. LLF: 94.14430243593392
Iteration: 10, Func. Count: 133, Neg. LLF: 96.73349776167235
Iteration: 11, Func. Count: 146, Neg. LLF: 93.3515088545129
Iteration: 12, Func. Count: 158, Neg. LLF: 93.14783857159405
Iteration: 13, Func. Count: 170, Neg. LLF: 94.4728854894009
Iteration: 14, Func. Count: 183, Neg. LLF: 92.85315148760294
Iteration: 15, Func. Count: 195, Neg. LLF: 92.65833402235201
Iteration: 16, Func. Count: 207, Neg. LLF: 92.54367752692451
Iteration: 17, Func. Count: 219, Neg. LLF: 92.41783885599199
Iteration: 18, Func. Count: 231, Neg. LLF: 92.33233071411838
Iteration: 19, Func. Count: 243, Neg. LLF: 92.3260839053351
Iteration: 20, Func. Count: 255, Neg. LLF: 92.31924821212833
Iteration: 21, Func. Count: 267, Neg. LLF: 92.31584245216007
Iteration: 22, Func. Count: 279, Neg. LLF: 92.31550079188119
Iteration: 23, Func. Count: 291, Neg. LLF: 92.3154719386918
Iteration: 24, Func. Count: 302, Neg. LLF: 92.31547191903944
Optimization terminated successfully (Exit mode 0)
Current function value: 92.3154719386918
Iterations: 24
Function evaluations: 302
Gradient evaluations: 24
Iteration: 1, Func. Count: 14, Neg. LLF: 138.3741574581567
Iteration: 2, Func. Count: 32, Neg. LLF: 199.55608054306947
Iteration: 3, Func. Count: 46, Neg. LLF: 168.05506127624227
Iteration: 4, Func. Count: 60, Neg. LLF: 279.15619704529513
Iteration: 5, Func. Count: 75, Neg. LLF: 108.23822854537904
Iteration: 6, Func. Count: 89, Neg. LLF: 108.96258315656999
Iteration: 7, Func. Count: 103, Neg. LLF: 94.07026066519475
Iteration: 8, Func. Count: 116, Neg. LLF: 102.36373412711268
Iteration: 9, Func. Count: 130, Neg. LLF: 94.89348104935485
Iteration: 10, Func. Count: 144, Neg. LLF: 93.3014180689363
Iteration: 11, Func. Count: 157, Neg. LLF: 93.10756340918971
Iteration: 12, Func. Count: 170, Neg. LLF: 92.89401830362544
Iteration: 13, Func. Count: 183, Neg. LLF: 92.65673655190783
Iteration: 14, Func. Count: 196, Neg. LLF: 92.37217156547531
Iteration: 15, Func. Count: 209, Neg. LLF: 92.18707110697338
Iteration: 16, Func. Count: 222, Neg. LLF: 92.13180163686238
Iteration: 17, Func. Count: 235, Neg. LLF: 92.12576239396098
Iteration: 18, Func. Count: 248, Neg. LLF: 92.12517161388546
Iteration: 19, Func. Count: 261, Neg. LLF: 92.1251746539352
Iteration: 20, Func. Count: 274, Neg. LLF: 92.1250819090995
Iteration: 21, Func. Count: 287, Neg. LLF: 92.12496682693596
Iteration: 22, Func. Count: 304, Neg. LLF: 92.13911996589779
Iteration: 23, Func. Count: 319, Neg. LLF: 92.1298677869248
Iteration: 24, Func. Count: 334, Neg. LLF: 92.12639838357104
Iteration: 25, Func. Count: 349, Neg. LLF: 92.12549141821576
Iteration: 26, Func. Count: 364, Neg. LLF: 92.12515298008658
Iteration: 27, Func. Count: 379, Neg. LLF: 92.12511823788135
Iteration: 28, Func. Count: 391, Neg. LLF: 92.12511804960369
Optimization terminated successfully (Exit mode 0)
Current function value: 92.12511823788135
Iterations: 30
Function evaluations: 391
Gradient evaluations: 28
Iteration: 1, Func. Count: 11, Neg. LLF: 120.33187911302714
Iteration: 2, Func. Count: 23, Neg. LLF: 435792404.9134127
Iteration: 3, Func. Count: 34, Neg. LLF: 27227.91511804255
Iteration: 4, Func. Count: 45, Neg. LLF: 1992.8638173248867
Iteration: 5, Func. Count: 56, Neg. LLF: 1119572.2367648697
Iteration: 6, Func. Count: 67, Neg. LLF: 454.9555139406767
Iteration: 7, Func. Count: 78, Neg. LLF: 209.81106078383672
Iteration: 8, Func. Count: 89, Neg. LLF: 176.60585075503036
Iteration: 9, Func. Count: 100, Neg. LLF: 3122.5771729059043
Iteration: 10, Func. Count: 111, Neg. LLF: 108.03547932470721
Iteration: 11, Func. Count: 122, Neg. LLF: 94.90035021773943
Iteration: 12, Func. Count: 133, Neg. LLF: 92.48058319747624
Iteration: 13, Func. Count: 143, Neg. LLF: 92.4414250847455
Iteration: 14, Func. Count: 153, Neg. LLF: 92.4151429302379
Iteration: 15, Func. Count: 163, Neg. LLF: 92.41166903771465
Iteration: 16, Func. Count: 173, Neg. LLF: 92.40838525335904
Iteration: 17, Func. Count: 183, Neg. LLF: 92.40141962840154
Iteration: 18, Func. Count: 193, Neg. LLF: 92.40009668820986
Iteration: 19, Func. Count: 203, Neg. LLF: 92.39998818314248
Iteration: 20, Func. Count: 213, Neg. LLF: 92.39998561428216
Iteration: 21, Func. Count: 222, Neg. LLF: 92.39998597044762
Optimization terminated successfully (Exit mode 0)
Current function value: 92.39998561428216
Iterations: 21
Function evaluations: 222
Gradient evaluations: 21
Iteration: 1, Func. Count: 12, Neg. LLF: 127.86251992423007
Iteration: 2, Func. Count: 27, Neg. LLF: 162.3625900142579
Iteration: 3, Func. Count: 39, Neg. LLF: 108.81304902580374
Iteration: 4, Func. Count: 51, Neg. LLF: 137.7718712783737
Iteration: 5, Func. Count: 63, Neg. LLF: 110.39975292979139
Iteration: 6, Func. Count: 76, Neg. LLF: 99.99255257424609
Iteration: 7, Func. Count: 88, Neg. LLF: 99.74780467982981
Iteration: 8, Func. Count: 100, Neg. LLF: 94.3726660331199
Iteration: 9, Func. Count: 111, Neg. LLF: 93.05317747447
Iteration: 10, Func. Count: 122, Neg. LLF: 92.57262789714866
Iteration: 11, Func. Count: 133, Neg. LLF: 92.48923731132786
Iteration: 12, Func. Count: 144, Neg. LLF: 92.47201737059618
Iteration: 13, Func. Count: 155, Neg. LLF: 92.45989368479502
Iteration: 14, Func. Count: 166, Neg. LLF: 92.4417658575017
Iteration: 15, Func. Count: 177, Neg. LLF: 92.42298495540328
Iteration: 16, Func. Count: 188, Neg. LLF: 92.41066076299087
Iteration: 17, Func. Count: 199, Neg. LLF: 92.40375268069326
Iteration: 18, Func. Count: 210, Neg. LLF: 92.40097143264903
Iteration: 19, Func. Count: 221, Neg. LLF: 92.40028860736133
Iteration: 20, Func. Count: 232, Neg. LLF: 92.40003108473347
Iteration: 21, Func. Count: 243, Neg. LLF: 92.39998883015788
Iteration: 22, Func. Count: 254, Neg. LLF: 92.39998539885107
Iteration: 23, Func. Count: 264, Neg. LLF: 92.39998550727745
Optimization terminated successfully (Exit mode 0)
Current function value: 92.39998539885107
Iterations: 23
Function evaluations: 264
Gradient evaluations: 23
Iteration: 1, Func. Count: 13, Neg. LLF: 132.30771754964212
Iteration: 2, Func. Count: 30, Neg. LLF: 176.0939379526563
Iteration: 3, Func. Count: 43, Neg. LLF: 132.0348429967611
Iteration: 4, Func. Count: 56, Neg. LLF: 171.0023284663995
Iteration: 5, Func. Count: 69, Neg. LLF: 108.368423582569
Iteration: 6, Func. Count: 82, Neg. LLF: 100.14626209901466
Iteration: 7, Func. Count: 95, Neg. LLF: 100.49464001313042
Iteration: 8, Func. Count: 108, Neg. LLF: 97.68903387713178
Iteration: 9, Func. Count: 120, Neg. LLF: 98.18743128112062
Iteration: 10, Func. Count: 133, Neg. LLF: 94.47404093044598
Iteration: 11, Func. Count: 145, Neg. LLF: 94.40628204672697
Iteration: 12, Func. Count: 158, Neg. LLF: 93.99240326478512
Iteration: 13, Func. Count: 170, Neg. LLF: 93.44812296793712
Iteration: 14, Func. Count: 182, Neg. LLF: 92.74554795246416
Iteration: 15, Func. Count: 194, Neg. LLF: 92.66063731661197
Iteration: 16, Func. Count: 206, Neg. LLF: 92.53132015858833
Iteration: 17, Func. Count: 218, Neg. LLF: 92.52250844547939
Iteration: 18, Func. Count: 230, Neg. LLF: 92.4939570262297
Iteration: 19, Func. Count: 242, Neg. LLF: 92.45986499115737
Iteration: 20, Func. Count: 254, Neg. LLF: 92.42559545206025
Iteration: 21, Func. Count: 266, Neg. LLF: 92.40663334353957
Iteration: 22, Func. Count: 278, Neg. LLF: 92.40256252250671
Iteration: 23, Func. Count: 290, Neg. LLF: 92.40172725062071
Iteration: 24, Func. Count: 302, Neg. LLF: 92.40070248605261
Iteration: 25, Func. Count: 314, Neg. LLF: 92.40014092197147
Iteration: 26, Func. Count: 326, Neg. LLF: 92.39999896880558
Iteration: 27, Func. Count: 338, Neg. LLF: 92.39998794864037
Iteration: 28, Func. Count: 350, Neg. LLF: 92.40007104185187
Optimization terminated successfully (Exit mode 0)
Current function value: 92.39998766560339
Iterations: 29
Function evaluations: 352
Gradient evaluations: 28
Iteration: 1, Func. Count: 14, Neg. LLF: 135.58823833396116
Iteration: 2, Func. Count: 32, Neg. LLF: 172.818121869017
Iteration: 3, Func. Count: 46, Neg. LLF: 123.32168553095994
Iteration: 4, Func. Count: 60, Neg. LLF: 118.28461119967024
Iteration: 5, Func. Count: 74, Neg. LLF: 112.8642794671337
Iteration: 6, Func. Count: 88, Neg. LLF: 96.75880881816708
Iteration: 7, Func. Count: 101, Neg. LLF: 535.1373771495851
Iteration: 8, Func. Count: 115, Neg. LLF: 97.71428159431001
Iteration: 9, Func. Count: 129, Neg. LLF: 112.2941310949907
Iteration: 10, Func. Count: 143, Neg. LLF: 94.43592327922464
Iteration: 11, Func. Count: 156, Neg. LLF: 95.42816710010992
Iteration: 12, Func. Count: 170, Neg. LLF: 98.81657453037828
Iteration: 13, Func. Count: 185, Neg. LLF: 93.50585115077072
Iteration: 14, Func. Count: 198, Neg. LLF: 93.24115307837766
Iteration: 15, Func. Count: 211, Neg. LLF: 92.99082848137778
Iteration: 16, Func. Count: 224, Neg. LLF: 92.81899726585769
Iteration: 17, Func. Count: 237, Neg. LLF: 92.56952040231339
Iteration: 18, Func. Count: 250, Neg. LLF: 92.48655815300751
Iteration: 19, Func. Count: 263, Neg. LLF: 92.41935669307044
Iteration: 20, Func. Count: 276, Neg. LLF: 92.35647468622042
Iteration: 21, Func. Count: 289, Neg. LLF: 92.32688472492615
Iteration: 22, Func. Count: 302, Neg. LLF: 92.31795430665802
Iteration: 23, Func. Count: 315, Neg. LLF: 92.31696816425593
Iteration: 24, Func. Count: 328, Neg. LLF: 92.31673226321043
Iteration: 25, Func. Count: 341, Neg. LLF: 92.31641952853309
Iteration: 26, Func. Count: 354, Neg. LLF: 92.31603054425304
Iteration: 27, Func. Count: 367, Neg. LLF: 92.31566614675899
Iteration: 28, Func. Count: 380, Neg. LLF: 92.31549966998804
Iteration: 29, Func. Count: 393, Neg. LLF: 92.31546961133066
Iteration: 30, Func. Count: 406, Neg. LLF: 92.31546777765205
Iteration: 31, Func. Count: 418, Neg. LLF: 92.31546775798898
Optimization terminated successfully (Exit mode 0)
Current function value: 92.31546777765205
Iterations: 31
Function evaluations: 418
Gradient evaluations: 31
Iteration: 1, Func. Count: 15, Neg. LLF: 138.59058085725843
Iteration: 2, Func. Count: 34, Neg. LLF: 196.62484739701023
Iteration: 3, Func. Count: 49, Neg. LLF: 164.52727005163
Iteration: 4, Func. Count: 64, Neg. LLF: 291.2003107266755
Iteration: 5, Func. Count: 80, Neg. LLF: 118.71134034517493
Iteration: 6, Func. Count: 95, Neg. LLF: 112.2758280144878
Iteration: 7, Func. Count: 110, Neg. LLF: 107.59740323560814
Iteration: 8, Func. Count: 125, Neg. LLF: 106.54537661646596
Iteration: 9, Func. Count: 140, Neg. LLF: 100.16126985433247
Iteration: 10, Func. Count: 155, Neg. LLF: 93.35696309308544
Iteration: 11, Func. Count: 169, Neg. LLF: 99.33405360542778
Iteration: 12, Func. Count: 184, Neg. LLF: 92.97245266802291
Iteration: 13, Func. Count: 198, Neg. LLF: 92.71053851630667
Iteration: 14, Func. Count: 212, Neg. LLF: 92.61200088659818
Iteration: 15, Func. Count: 226, Neg. LLF: 92.46304314506939
Iteration: 16, Func. Count: 240, Neg. LLF: 92.29416184467578
Iteration: 17, Func. Count: 254, Neg. LLF: 92.15405381667662
Iteration: 18, Func. Count: 268, Neg. LLF: 92.12727370113276
Iteration: 19, Func. Count: 282, Neg. LLF: 92.12650499668257
Iteration: 20, Func. Count: 296, Neg. LLF: 92.12534007504588
Iteration: 21, Func. Count: 310, Neg. LLF: 92.12519010557666
Iteration: 22, Func. Count: 324, Neg. LLF: 92.12518553972272
Iteration: 23, Func. Count: 338, Neg. LLF: 92.12491193010767
Iteration: 24, Func. Count: 352, Neg. LLF: 92.12599469226596
Iteration: 25, Func. Count: 368, Neg. LLF: 92.12523384261652
Iteration: 26, Func. Count: 384, Neg. LLF: 92.12514608769541
Iteration: 27, Func. Count: 400, Neg. LLF: 92.12512181658943
Iteration: 28, Func. Count: 416, Neg. LLF: 92.12511825803388
Iteration: 29, Func. Count: 432, Neg. LLF: 92.12511833239921
Iteration: 30, Func. Count: 448, Neg. LLF: 92.12511833265975
Iteration: 31, Func. Count: 463, Neg. LLF: 92.12512067716064
Iteration: 32, Func. Count: 479, Neg. LLF: 92.12511834434335
Iteration: 33, Func. Count: 495, Neg. LLF: 92.12511837363509
Iteration: 34, Func. Count: 513, Neg. LLF: 92.12511825881046
Iteration: 35, Func. Count: 536, Neg. LLF: 92.12498579281635
Optimization terminated successfully (Exit mode 0)
Current function value: 92.12498598109103
Iterations: 39
Function evaluations: 536
Gradient evaluations: 35
Iteration: 1, Func. Count: 12, Neg. LLF: 121.00439996625988
Iteration: 2, Func. Count: 25, Neg. LLF: 441296814.94721484
Iteration: 3, Func. Count: 37, Neg. LLF: 10628.504301689485
Iteration: 4, Func. Count: 49, Neg. LLF: 3596273.0659566717
Iteration: 5, Func. Count: 61, Neg. LLF: 686.3856292828222
Iteration: 6, Func. Count: 73, Neg. LLF: 3362.994647459231
Iteration: 7, Func. Count: 85, Neg. LLF: 151.1111248744333
Iteration: 8, Func. Count: 97, Neg. LLF: 1019.4354996727684
Iteration: 9, Func. Count: 109, Neg. LLF: 133753.46720779847
Iteration: 10, Func. Count: 121, Neg. LLF: 112.68636910027519
Iteration: 11, Func. Count: 133, Neg. LLF: 96.41467622381926
Iteration: 12, Func. Count: 145, Neg. LLF: 92.7314572464718
Iteration: 13, Func. Count: 156, Neg. LLF: 92.4929808576082
Iteration: 14, Func. Count: 167, Neg. LLF: 92.44785645406002
Iteration: 15, Func. Count: 178, Neg. LLF: 92.43535418898989
Iteration: 16, Func. Count: 189, Neg. LLF: 92.41084244636569
Iteration: 17, Func. Count: 200, Neg. LLF: 92.40263672119677
Iteration: 18, Func. Count: 211, Neg. LLF: 92.40010255642635
Iteration: 19, Func. Count: 222, Neg. LLF: 92.39999141735329
Iteration: 20, Func. Count: 233, Neg. LLF: 92.39998559052763
Iteration: 21, Func. Count: 243, Neg. LLF: 92.39998582363849
Optimization terminated successfully (Exit mode 0)
Current function value: 92.39998559052763
Iterations: 21
Function evaluations: 243
Gradient evaluations: 21
Iteration: 1, Func. Count: 13, Neg. LLF: 127.64297522728836
Iteration: 2, Func. Count: 29, Neg. LLF: 163.85968898683223
Iteration: 3, Func. Count: 42, Neg. LLF: 112.82403432629754
Iteration: 4, Func. Count: 55, Neg. LLF: 163.79081164559932
Iteration: 5, Func. Count: 69, Neg. LLF: 97.47518075270355
Iteration: 6, Func. Count: 81, Neg. LLF: 106.34244411659658
Iteration: 7, Func. Count: 94, Neg. LLF: 108.37258514242527
Iteration: 8, Func. Count: 108, Neg. LLF: 94.98684413652428
Iteration: 9, Func. Count: 120, Neg. LLF: 93.72645456557788
Iteration: 10, Func. Count: 132, Neg. LLF: 93.20794268518758
Iteration: 11, Func. Count: 144, Neg. LLF: 92.89694676335071
Iteration: 12, Func. Count: 156, Neg. LLF: 92.83621765572212
Iteration: 13, Func. Count: 168, Neg. LLF: 92.69125788668399
Iteration: 14, Func. Count: 180, Neg. LLF: 92.63734828708218
Iteration: 15, Func. Count: 192, Neg. LLF: 92.46987031284876
Iteration: 16, Func. Count: 204, Neg. LLF: 92.42655551650019
Iteration: 17, Func. Count: 216, Neg. LLF: 92.41121358233124
Iteration: 18, Func. Count: 228, Neg. LLF: 92.40562164125136
Iteration: 19, Func. Count: 240, Neg. LLF: 92.40235735125785
Iteration: 20, Func. Count: 252, Neg. LLF: 92.40114002064045
Iteration: 21, Func. Count: 264, Neg. LLF: 92.40071242539251
Iteration: 22, Func. Count: 276, Neg. LLF: 92.40046076654744
Iteration: 23, Func. Count: 288, Neg. LLF: 92.40020142130705
Iteration: 24, Func. Count: 300, Neg. LLF: 92.4000306474828
Iteration: 25, Func. Count: 312, Neg. LLF: 92.39998873810897
Iteration: 26, Func. Count: 324, Neg. LLF: 92.3999854067268
Iteration: 27, Func. Count: 335, Neg. LLF: 92.39998551522112
Optimization terminated successfully (Exit mode 0)
Current function value: 92.3999854067268
Iterations: 27
Function evaluations: 335
Gradient evaluations: 27
Iteration: 1, Func. Count: 14, Neg. LLF: 132.19440208097922
Iteration: 2, Func. Count: 32, Neg. LLF: 175.66264525207876
Iteration: 3, Func. Count: 46, Neg. LLF: 132.3792208310461
Iteration: 4, Func. Count: 60, Neg. LLF: 164.17910948321222
Iteration: 5, Func. Count: 74, Neg. LLF: 105.95215818120558
Iteration: 6, Func. Count: 88, Neg. LLF: 100.318719605152
Iteration: 7, Func. Count: 102, Neg. LLF: 102.65006803079358
Iteration: 8, Func. Count: 116, Neg. LLF: 99.30459921410727
Iteration: 9, Func. Count: 130, Neg. LLF: 98.17281326074934
Iteration: 10, Func. Count: 144, Neg. LLF: 93.88499886741312
Iteration: 11, Func. Count: 157, Neg. LLF: 93.147299389847
Iteration: 12, Func. Count: 170, Neg. LLF: 92.82674004255996
Iteration: 13, Func. Count: 183, Neg. LLF: 92.69443890688989
Iteration: 14, Func. Count: 196, Neg. LLF: 92.63232584081486
Iteration: 15, Func. Count: 209, Neg. LLF: 92.5632234810545
Iteration: 16, Func. Count: 222, Neg. LLF: 92.5148821166522
Iteration: 17, Func. Count: 235, Neg. LLF: 92.48116450885188
Iteration: 18, Func. Count: 248, Neg. LLF: 92.47095274001981
Iteration: 19, Func. Count: 261, Neg. LLF: 92.4541862099636
Iteration: 20, Func. Count: 274, Neg. LLF: 92.43148836784282
Iteration: 21, Func. Count: 287, Neg. LLF: 92.40970391464903
Iteration: 22, Func. Count: 300, Neg. LLF: 92.40286833335618
Iteration: 23, Func. Count: 313, Neg. LLF: 92.40190618351853
Iteration: 24, Func. Count: 326, Neg. LLF: 92.40118467540766
Iteration: 25, Func. Count: 339, Neg. LLF: 92.40019524130463
Iteration: 26, Func. Count: 352, Neg. LLF: 92.40006864168099
Iteration: 27, Func. Count: 365, Neg. LLF: 92.3999469063322
Iteration: 28, Func. Count: 378, Neg. LLF: 92.40255463668397
Iteration: 29, Func. Count: 393, Neg. LLF: 92.40006265845885
Iteration: 30, Func. Count: 407, Neg. LLF: 92.40005149178101
Iteration: 31, Func. Count: 421, Neg. LLF: 92.3999908779748
Iteration: 32, Func. Count: 435, Neg. LLF: 92.39998523039432
Iteration: 33, Func. Count: 447, Neg. LLF: 92.39998548785304
Optimization terminated successfully (Exit mode 0)
Current function value: 92.39998523039432
Iterations: 34
Function evaluations: 447
Gradient evaluations: 33
Iteration: 1, Func. Count: 15, Neg. LLF: 135.51791749730185
Iteration: 2, Func. Count: 34, Neg. LLF: 172.42018443311719
Iteration: 3, Func. Count: 49, Neg. LLF: 123.45711602648272
Iteration: 4, Func. Count: 64, Neg. LLF: 118.96060274561657
Iteration: 5, Func. Count: 79, Neg. LLF: 113.18143362135459
Iteration: 6, Func. Count: 94, Neg. LLF: 96.7957035827
Iteration: 7, Func. Count: 108, Neg. LLF: 56174.16242548829
Iteration: 8, Func. Count: 123, Neg. LLF: 98.30676964161916
Iteration: 9, Func. Count: 139, Neg. LLF: 110.37573541074788
Iteration: 10, Func. Count: 154, Neg. LLF: 93.98188268790662
Iteration: 11, Func. Count: 168, Neg. LLF: 93.62754595303426
Iteration: 12, Func. Count: 182, Neg. LLF: 93.67753799926865
Iteration: 13, Func. Count: 197, Neg. LLF: 93.37535416654202
Iteration: 14, Func. Count: 211, Neg. LLF: 93.34237936172003
Iteration: 15, Func. Count: 226, Neg. LLF: 92.85720141506603
Iteration: 16, Func. Count: 241, Neg. LLF: 92.59414899173218
Iteration: 17, Func. Count: 255, Neg. LLF: 92.43358969049797
Iteration: 18, Func. Count: 269, Neg. LLF: 92.40751362758503
Iteration: 19, Func. Count: 283, Neg. LLF: 92.38750200670945
Iteration: 20, Func. Count: 297, Neg. LLF: 92.3632694018826
Iteration: 21, Func. Count: 311, Neg. LLF: 92.35259936946802
Iteration: 22, Func. Count: 325, Neg. LLF: 92.33413320213411
Iteration: 23, Func. Count: 339, Neg. LLF: 92.32344138545243
Iteration: 24, Func. Count: 353, Neg. LLF: 92.32166795325712
Iteration: 25, Func. Count: 367, Neg. LLF: 92.32017739137349
Iteration: 26, Func. Count: 381, Neg. LLF: 92.31882527489834
Iteration: 27, Func. Count: 395, Neg. LLF: 92.31708217668077
Iteration: 28, Func. Count: 409, Neg. LLF: 92.31598398704828
Iteration: 29, Func. Count: 423, Neg. LLF: 92.3155485916179
Iteration: 30, Func. Count: 437, Neg. LLF: 92.31548360782936
Iteration: 31, Func. Count: 451, Neg. LLF: 92.31547046741245
Iteration: 32, Func. Count: 465, Neg. LLF: 92.31546791780431
Iteration: 33, Func. Count: 478, Neg. LLF: 92.31546789803996
Optimization terminated successfully (Exit mode 0)
Current function value: 92.31546791780431
Iterations: 33
Function evaluations: 478
Gradient evaluations: 33
Iteration: 1, Func. Count: 16, Neg. LLF: 138.5483810574774
Iteration: 2, Func. Count: 36, Neg. LLF: 196.19009858162357
Iteration: 3, Func. Count: 52, Neg. LLF: 166.1029365479986
Iteration: 4, Func. Count: 68, Neg. LLF: 173.68392075621952
Iteration: 5, Func. Count: 85, Neg. LLF: 115.80944392775739
Iteration: 6, Func. Count: 101, Neg. LLF: 100.04941952794584
Iteration: 7, Func. Count: 117, Neg. LLF: 106.42996250538812
Iteration: 8, Func. Count: 133, Neg. LLF: 98.15585990415049
Iteration: 9, Func. Count: 149, Neg. LLF: 96.71535078021041
Iteration: 10, Func. Count: 165, Neg. LLF: 95.29933368264531
Iteration: 11, Func. Count: 180, Neg. LLF: 94.7526302543926
Iteration: 12, Func. Count: 195, Neg. LLF: 97.9483767003731
Iteration: 13, Func. Count: 213, Neg. LLF: 92.62885103084123
Iteration: 14, Func. Count: 228, Neg. LLF: 92.58384324877457
Iteration: 15, Func. Count: 244, Neg. LLF: 92.23099759407458
Iteration: 16, Func. Count: 259, Neg. LLF: 92.18221156554095
Iteration: 17, Func. Count: 274, Neg. LLF: 92.13215312313521
Iteration: 18, Func. Count: 289, Neg. LLF: 92.12559817989536
Iteration: 19, Func. Count: 304, Neg. LLF: 92.12530996291304
Iteration: 20, Func. Count: 319, Neg. LLF: 92.12520472723315
Iteration: 21, Func. Count: 334, Neg. LLF: 92.1251242249166
Iteration: 22, Func. Count: 349, Neg. LLF: 92.1251185168182
Iteration: 23, Func. Count: 363, Neg. LLF: 92.12511832858267
Optimization terminated successfully (Exit mode 0)
Current function value: 92.1251185168182
Iterations: 23
Function evaluations: 363
Gradient evaluations: 23
Iteration: 1, Func. Count: 7, Neg. LLF: 102.46472877152353
Iteration: 2, Func. Count: 14, Neg. LLF: 13358.124286060118
Iteration: 3, Func. Count: 21, Neg. LLF: 15390.526440371857
Iteration: 4, Func. Count: 28, Neg. LLF: 8969.713177904172
Iteration: 5, Func. Count: 35, Neg. LLF: 430.2298703378559
Iteration: 6, Func. Count: 42, Neg. LLF: 903.2341377081422
Iteration: 7, Func. Count: 49, Neg. LLF: 391.85133648139004
Iteration: 8, Func. Count: 56, Neg. LLF: 2119.7981340935567
Iteration: 9, Func. Count: 63, Neg. LLF: 54816.94188406836
Iteration: 10, Func. Count: 70, Neg. LLF: 96.65886880505406
Iteration: 11, Func. Count: 77, Neg. LLF: 93.06661558769243
Iteration: 12, Func. Count: 83, Neg. LLF: 92.83244348061767
Iteration: 13, Func. Count: 89, Neg. LLF: 92.70971763429515
Iteration: 14, Func. Count: 95, Neg. LLF: 92.62829448867926
Iteration: 15, Func. Count: 101, Neg. LLF: 92.52483280077631
Iteration: 16, Func. Count: 107, Neg. LLF: 92.43034381258246
Iteration: 17, Func. Count: 113, Neg. LLF: 92.42682394712543
Iteration: 18, Func. Count: 119, Neg. LLF: 92.42664727901816
Iteration: 19, Func. Count: 125, Neg. LLF: 92.42663990404868
Iteration: 20, Func. Count: 130, Neg. LLF: 92.4266399077141
Optimization terminated successfully (Exit mode 0)
Current function value: 92.42663990404868
Iterations: 20
Function evaluations: 130
Gradient evaluations: 20
Iteration: 1, Func. Count: 5, Neg. LLF: 153.69208498444834
Iteration: 2, Func. Count: 11, Neg. LLF: 151.46837001712908
Iteration: 3, Func. Count: 16, Neg. LLF: 114.89775839232945
Iteration: 4, Func. Count: 20, Neg. LLF: 114.77448644446142
Iteration: 5, Func. Count: 24, Neg. LLF: 114.76193420018748
Iteration: 6, Func. Count: 28, Neg. LLF: 114.76044284095819
Iteration: 7, Func. Count: 32, Neg. LLF: 114.75913007450114
Iteration: 8, Func. Count: 36, Neg. LLF: 114.75912333895945
Iteration: 9, Func. Count: 39, Neg. LLF: 114.75912333895438
Optimization terminated successfully (Exit mode 0)
Current function value: 114.75912333895945
Iterations: 9
Function evaluations: 39
Gradient evaluations: 9
Iteration: 1, Func. Count: 6, Neg. LLF: 167.55865522417864
Iteration: 2, Func. Count: 14, Neg. LLF: 112.70295428212305
Iteration: 3, Func. Count: 19, Neg. LLF: 136.36871254399813
Iteration: 4, Func. Count: 26, Neg. LLF: 118.99959518113384
Iteration: 5, Func. Count: 32, Neg. LLF: 111.51583999055855
Iteration: 6, Func. Count: 38, Neg. LLF: 110.94185393954268
Iteration: 7, Func. Count: 43, Neg. LLF: 110.94148313566602
Iteration: 8, Func. Count: 48, Neg. LLF: 110.94147961996103
Iteration: 9, Func. Count: 52, Neg. LLF: 110.94148027440798
Optimization terminated successfully (Exit mode 0)
Current function value: 110.94147961996103
Iterations: 9
Function evaluations: 52
Gradient evaluations: 9
Iteration: 1, Func. Count: 7, Neg. LLF: 164.01362671089296
Iteration: 2, Func. Count: 16, Neg. LLF: 113.8523589190954
Iteration: 3, Func. Count: 23, Neg. LLF: 111.04555886347785
Iteration: 4, Func. Count: 29, Neg. LLF: 111.23895778954233
Iteration: 5, Func. Count: 36, Neg. LLF: 110.96333880584622
Iteration: 6, Func. Count: 42, Neg. LLF: 110.95624369196618
Iteration: 7, Func. Count: 48, Neg. LLF: 110.95608324365294
Iteration: 8, Func. Count: 54, Neg. LLF: 110.95607643219606
Iteration: 9, Func. Count: 59, Neg. LLF: 110.95607677614372
Optimization terminated successfully (Exit mode 0)
Current function value: 110.95607643219606
Iterations: 9
Function evaluations: 59
Gradient evaluations: 9
Iteration: 1, Func. Count: 8, Neg. LLF: 164.6701881717817
Iteration: 2, Func. Count: 18, Neg. LLF: 114.56667068992611
Iteration: 3, Func. Count: 26, Neg. LLF: 111.25959823409927
Iteration: 4, Func. Count: 33, Neg. LLF: 164.66093665364625
Iteration: 5, Func. Count: 41, Neg. LLF: 110.89565541719412
Iteration: 6, Func. Count: 48, Neg. LLF: 110.80712303523873
Iteration: 7, Func. Count: 55, Neg. LLF: 110.79909757317047
Iteration: 8, Func. Count: 62, Neg. LLF: 110.79743356882581
Iteration: 9, Func. Count: 69, Neg. LLF: 110.79719070204082
Iteration: 10, Func. Count: 76, Neg. LLF: 110.79713374083545
Iteration: 11, Func. Count: 82, Neg. LLF: 110.79713353662642
Optimization terminated successfully (Exit mode 0)
Current function value: 110.79713374083545
Iterations: 11
Function evaluations: 82
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 173.55393874790815
Iteration: 2, Func. Count: 21, Neg. LLF: 115.61336331653041
Iteration: 3, Func. Count: 30, Neg. LLF: 111.1889623855116
Iteration: 4, Func. Count: 38, Neg. LLF: 111.04963656662986
Iteration: 5, Func. Count: 46, Neg. LLF: 112.29307001192029
Iteration: 6, Func. Count: 55, Neg. LLF: 110.96696778129503
Iteration: 7, Func. Count: 63, Neg. LLF: 110.96744228926973
Iteration: 8, Func. Count: 72, Neg. LLF: 110.95941608305736
Iteration: 9, Func. Count: 81, Neg. LLF: 110.93153835277081
Iteration: 10, Func. Count: 89, Neg. LLF: 110.9273486349119
Iteration: 11, Func. Count: 97, Neg. LLF: 110.92712843160773
Iteration: 12, Func. Count: 105, Neg. LLF: 110.92711738014181
Iteration: 13, Func. Count: 112, Neg. LLF: 110.92711721700356
Optimization terminated successfully (Exit mode 0)
Current function value: 110.92711738014181
Iterations: 13
Function evaluations: 112
Gradient evaluations: 13
Iteration: 1, Func. Count: 6, Neg. LLF: 159.3702797326987
Iteration: 2, Func. Count: 13, Neg. LLF: 172.44059869724492
Iteration: 3, Func. Count: 19, Neg. LLF: 112.52535382629335
Iteration: 4, Func. Count: 24, Neg. LLF: 112.5078123314102
Iteration: 5, Func. Count: 29, Neg. LLF: 112.42082072295466
Iteration: 6, Func. Count: 34, Neg. LLF: 112.38222207860561
Iteration: 7, Func. Count: 39, Neg. LLF: 112.36987492874273
Iteration: 8, Func. Count: 44, Neg. LLF: 112.36700213879459
Iteration: 9, Func. Count: 49, Neg. LLF: 112.36647354045805
Iteration: 10, Func. Count: 54, Neg. LLF: 112.366286339785
Iteration: 11, Func. Count: 59, Neg. LLF: 112.36620830659187
Iteration: 12, Func. Count: 64, Neg. LLF: 112.36619935048694
Iteration: 13, Func. Count: 68, Neg. LLF: 112.36619935049333
Optimization terminated successfully (Exit mode 0)
Current function value: 112.36619935048694
Iterations: 13
Function evaluations: 68
Gradient evaluations: 13
Iteration: 1, Func. Count: 7, Neg. LLF: 167.62311995293672
Iteration: 2, Func. Count: 16, Neg. LLF: 123.81162180176426
Iteration: 3, Func. Count: 23, Neg. LLF: 119.93199271356791
Iteration: 4, Func. Count: 30, Neg. LLF: 111.08971777837326
Iteration: 5, Func. Count: 36, Neg. LLF: 111.00894476286939
Iteration: 6, Func. Count: 42, Neg. LLF: 113.26986913675269
Iteration: 7, Func. Count: 49, Neg. LLF: 110.94160997292833
Iteration: 8, Func. Count: 55, Neg. LLF: 110.94148016941755
Iteration: 9, Func. Count: 60, Neg. LLF: 110.94148082385777
Optimization terminated successfully (Exit mode 0)
Current function value: 110.94148016941755
Iterations: 9
Function evaluations: 60
Gradient evaluations: 9
Iteration: 1, Func. Count: 8, Neg. LLF: 123.8812672507526
Iteration: 2, Func. Count: 19, Neg. LLF: 115.70224140237896
Iteration: 3, Func. Count: 27, Neg. LLF: 157.04948338489686
Iteration: 4, Func. Count: 35, Neg. LLF: 112.08938716039503
Iteration: 5, Func. Count: 42, Neg. LLF: 111.32165901262363
Iteration: 6, Func. Count: 49, Neg. LLF: 111.26383897822015
Iteration: 7, Func. Count: 57, Neg. LLF: 110.9208582579151
Iteration: 8, Func. Count: 64, Neg. LLF: 110.90007023382927
Iteration: 9, Func. Count: 71, Neg. LLF: 110.88177881173411
Iteration: 10, Func. Count: 78, Neg. LLF: 110.88363131504185
Iteration: 11, Func. Count: 86, Neg. LLF: 110.87934235569624
Iteration: 12, Func. Count: 93, Neg. LLF: 110.87933505504077
Iteration: 13, Func. Count: 99, Neg. LLF: 110.87933473059343
Optimization terminated successfully (Exit mode 0)
Current function value: 110.87933505504077
Iterations: 13
Function evaluations: 99
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 127.07266521414225
Iteration: 2, Func. Count: 21, Neg. LLF: 124.99223224637652
Iteration: 3, Func. Count: 31, Neg. LLF: 123.39569009748425
Iteration: 4, Func. Count: 40, Neg. LLF: 112.00895998392691
Iteration: 5, Func. Count: 48, Neg. LLF: 111.19254424863308
Iteration: 6, Func. Count: 56, Neg. LLF: 111.27958506181105
Iteration: 7, Func. Count: 65, Neg. LLF: 111.08575895385178
Iteration: 8, Func. Count: 73, Neg. LLF: 111.059766299656
Iteration: 9, Func. Count: 81, Neg. LLF: 111.05924410878274
Iteration: 10, Func. Count: 89, Neg. LLF: 111.05922192828098
Iteration: 11, Func. Count: 97, Neg. LLF: 111.05920533596154
Iteration: 12, Func. Count: 105, Neg. LLF: 111.0591180234446
Iteration: 13, Func. Count: 113, Neg. LLF: 111.058878982787
Iteration: 14, Func. Count: 121, Neg. LLF: 111.05861477834576
Iteration: 15, Func. Count: 129, Neg. LLF: 111.05794787888938
Iteration: 16, Func. Count: 137, Neg. LLF: 111.05723589865569
Iteration: 17, Func. Count: 145, Neg. LLF: 111.0563352398059
Iteration: 18, Func. Count: 153, Neg. LLF: 111.0560026971457
Iteration: 19, Func. Count: 161, Neg. LLF: 111.05598413121258
Iteration: 20, Func. Count: 168, Neg. LLF: 111.05598390072042
Optimization terminated successfully (Exit mode 0)
Current function value: 111.05598413121258
Iterations: 20
Function evaluations: 168
Gradient evaluations: 20
Iteration: 1, Func. Count: 10, Neg. LLF: 129.29174677084217
Iteration: 2, Func. Count: 23, Neg. LLF: 299.06888445891343
Iteration: 3, Func. Count: 33, Neg. LLF: 120.90361094493117
Iteration: 4, Func. Count: 43, Neg. LLF: 111.19660635881185
Iteration: 5, Func. Count: 52, Neg. LLF: 110.65551414704673
Iteration: 6, Func. Count: 61, Neg. LLF: 112.00632574470623
Iteration: 7, Func. Count: 71, Neg. LLF: 166.48503301856437
Iteration: 8, Func. Count: 82, Neg. LLF: 110.48116109980735
Iteration: 9, Func. Count: 91, Neg. LLF: 110.47405487087471
Iteration: 10, Func. Count: 100, Neg. LLF: 110.46770362007904
Iteration: 11, Func. Count: 109, Neg. LLF: 110.46680346143495
Iteration: 12, Func. Count: 118, Neg. LLF: 110.46674549076091
Iteration: 13, Func. Count: 127, Neg. LLF: 110.46674418316061
Iteration: 14, Func. Count: 135, Neg. LLF: 110.46674401436101
Optimization terminated successfully (Exit mode 0)
Current function value: 110.46674418316061
Iterations: 14
Function evaluations: 135
Gradient evaluations: 14
Iteration: 1, Func. Count: 7, Neg. LLF: 153.71018356741138
Iteration: 2, Func. Count: 15, Neg. LLF: 237.90882874149997
Iteration: 3, Func. Count: 22, Neg. LLF: 112.56701367615297
Iteration: 4, Func. Count: 28, Neg. LLF: 112.46322418127224
Iteration: 5, Func. Count: 34, Neg. LLF: 112.4437390016591
Iteration: 6, Func. Count: 40, Neg. LLF: 112.43044230517575
Iteration: 7, Func. Count: 46, Neg. LLF: 112.40385546970128
Iteration: 8, Func. Count: 52, Neg. LLF: 112.37886571426353
Iteration: 9, Func. Count: 58, Neg. LLF: 112.36713302913942
Iteration: 10, Func. Count: 64, Neg. LLF: 112.36621349291572
Iteration: 11, Func. Count: 70, Neg. LLF: 112.36619960992044
Iteration: 12, Func. Count: 76, Neg. LLF: 112.36619893713645
Optimization terminated successfully (Exit mode 0)
Current function value: 112.36619893713645
Iterations: 12
Function evaluations: 76
Gradient evaluations: 12
Iteration: 1, Func. Count: 8, Neg. LLF: 168.15171955077477
Iteration: 2, Func. Count: 18, Neg. LLF: 127.32864433639347
Iteration: 3, Func. Count: 26, Neg. LLF: 160.79185497281472
Iteration: 4, Func. Count: 34, Neg. LLF: 111.03460232869313
Iteration: 5, Func. Count: 41, Neg. LLF: 112.29227230923536
Iteration: 6, Func. Count: 49, Neg. LLF: 110.95995391494586
Iteration: 7, Func. Count: 56, Neg. LLF: 110.9467379336639
Iteration: 8, Func. Count: 63, Neg. LLF: 110.94148056751497
Iteration: 9, Func. Count: 70, Neg. LLF: 110.94147970407435
Optimization terminated successfully (Exit mode 0)
Current function value: 110.94147970407435
Iterations: 9
Function evaluations: 70
Gradient evaluations: 9
Iteration: 1, Func. Count: 9, Neg. LLF: 123.60429433944397
Iteration: 2, Func. Count: 21, Neg. LLF: 115.49203760934684
Iteration: 3, Func. Count: 30, Neg. LLF: 158.08482159804603
Iteration: 4, Func. Count: 39, Neg. LLF: 111.95930548791064
Iteration: 5, Func. Count: 47, Neg. LLF: 111.30352428688849
Iteration: 6, Func. Count: 55, Neg. LLF: 111.23248668969246
Iteration: 7, Func. Count: 64, Neg. LLF: 110.90917553868755
Iteration: 8, Func. Count: 72, Neg. LLF: 110.89127291008438
Iteration: 9, Func. Count: 80, Neg. LLF: 110.88031971628517
Iteration: 10, Func. Count: 88, Neg. LLF: 110.8815110356275
Iteration: 11, Func. Count: 97, Neg. LLF: 110.879338284538
Iteration: 12, Func. Count: 105, Neg. LLF: 110.87933504829915
Iteration: 13, Func. Count: 112, Neg. LLF: 110.87933472379402
Optimization terminated successfully (Exit mode 0)
Current function value: 110.87933504829915
Iterations: 13
Function evaluations: 112
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 126.81939035802363
Iteration: 2, Func. Count: 23, Neg. LLF: 125.98002350922147
Iteration: 3, Func. Count: 34, Neg. LLF: 124.52844600034128
Iteration: 4, Func. Count: 44, Neg. LLF: 112.01718829695301
Iteration: 5, Func. Count: 53, Neg. LLF: 111.17968235604135
Iteration: 6, Func. Count: 62, Neg. LLF: 111.2474060477601
Iteration: 7, Func. Count: 72, Neg. LLF: 111.08048804996298
Iteration: 8, Func. Count: 81, Neg. LLF: 111.05961216818847
Iteration: 9, Func. Count: 90, Neg. LLF: 111.05932364731501
Iteration: 10, Func. Count: 99, Neg. LLF: 111.05930010914763
Iteration: 11, Func. Count: 108, Neg. LLF: 111.05928649813464
Iteration: 12, Func. Count: 117, Neg. LLF: 111.05919150388823
Iteration: 13, Func. Count: 126, Neg. LLF: 111.05854762326489
Iteration: 14, Func. Count: 135, Neg. LLF: 111.06295027300207
Iteration: 15, Func. Count: 145, Neg. LLF: 111.05789324601332
Iteration: 16, Func. Count: 154, Neg. LLF: 111.05705574371784
Iteration: 17, Func. Count: 163, Neg. LLF: 111.05612832507455
Iteration: 18, Func. Count: 172, Neg. LLF: 111.05598537288841
Iteration: 19, Func. Count: 181, Neg. LLF: 111.05598391771457
Iteration: 20, Func. Count: 189, Neg. LLF: 111.0559836871918
Optimization terminated successfully (Exit mode 0)
Current function value: 111.05598391771457
Iterations: 20
Function evaluations: 189
Gradient evaluations: 20
Iteration: 1, Func. Count: 11, Neg. LLF: 129.08946642087042
Iteration: 2, Func. Count: 25, Neg. LLF: 346.6606725157647
Iteration: 3, Func. Count: 36, Neg. LLF: 120.91135442298295
Iteration: 4, Func. Count: 47, Neg. LLF: 111.20985457662323
Iteration: 5, Func. Count: 57, Neg. LLF: 110.64796532360931
Iteration: 6, Func. Count: 67, Neg. LLF: 112.36561587762262
Iteration: 7, Func. Count: 78, Neg. LLF: 142.77484274407527
Iteration: 8, Func. Count: 90, Neg. LLF: 110.47259219070312
Iteration: 9, Func. Count: 100, Neg. LLF: 110.4691139010293
Iteration: 10, Func. Count: 110, Neg. LLF: 110.46754920508528
Iteration: 11, Func. Count: 120, Neg. LLF: 110.46679863950605
Iteration: 12, Func. Count: 130, Neg. LLF: 110.46674618151188
Iteration: 13, Func. Count: 140, Neg. LLF: 110.46674420875053
Iteration: 14, Func. Count: 149, Neg. LLF: 110.46674403995891
Optimization terminated successfully (Exit mode 0)
Current function value: 110.46674420875053
Iterations: 14
Function evaluations: 149
Gradient evaluations: 14
Iteration: 1, Func. Count: 8, Neg. LLF: 145.51640855564358
Iteration: 2, Func. Count: 17, Neg. LLF: 276.16594750728115
Iteration: 3, Func. Count: 25, Neg. LLF: 112.50520743806652
Iteration: 4, Func. Count: 32, Neg. LLF: 112.49801207901389
Iteration: 5, Func. Count: 40, Neg. LLF: 112.45542279680316
Iteration: 6, Func. Count: 47, Neg. LLF: 112.42107776784445
Iteration: 7, Func. Count: 54, Neg. LLF: 112.39166783713706
Iteration: 8, Func. Count: 61, Neg. LLF: 112.36955829982855
Iteration: 9, Func. Count: 68, Neg. LLF: 112.36633128458843
Iteration: 10, Func. Count: 75, Neg. LLF: 112.36621560247089
Iteration: 11, Func. Count: 82, Neg. LLF: 112.3661999311928
Iteration: 12, Func. Count: 89, Neg. LLF: 112.3661988941448
Iteration: 13, Func. Count: 95, Neg. LLF: 112.3661989947214
Optimization terminated successfully (Exit mode 0)
Current function value: 112.3661988941448
Iterations: 13
Function evaluations: 95
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 168.11149119348255
Iteration: 2, Func. Count: 20, Neg. LLF: 126.13618329616529
Iteration: 3, Func. Count: 29, Neg. LLF: 250.84175734301564
Iteration: 4, Func. Count: 39, Neg. LLF: 111.02129969742417
Iteration: 5, Func. Count: 47, Neg. LLF: 112.42534123936255
Iteration: 6, Func. Count: 56, Neg. LLF: 110.94485812482468
Iteration: 7, Func. Count: 64, Neg. LLF: 110.94203657509246
Iteration: 8, Func. Count: 72, Neg. LLF: 110.94148001623007
Iteration: 9, Func. Count: 79, Neg. LLF: 110.94148066958878
Optimization terminated successfully (Exit mode 0)
Current function value: 110.94148001623007
Iterations: 9
Function evaluations: 79
Gradient evaluations: 9
Iteration: 1, Func. Count: 10, Neg. LLF: 123.4769623457685
Iteration: 2, Func. Count: 23, Neg. LLF: 115.45869122349544
Iteration: 3, Func. Count: 33, Neg. LLF: 157.63855657146902
Iteration: 4, Func. Count: 43, Neg. LLF: 111.94161609234295
Iteration: 5, Func. Count: 52, Neg. LLF: 111.29889322272813
Iteration: 6, Func. Count: 61, Neg. LLF: 111.22014236053435
Iteration: 7, Func. Count: 71, Neg. LLF: 110.9071714308475
Iteration: 8, Func. Count: 80, Neg. LLF: 110.89373752877002
Iteration: 9, Func. Count: 89, Neg. LLF: 110.8822382252236
Iteration: 10, Func. Count: 98, Neg. LLF: 110.8832957154684
Iteration: 11, Func. Count: 108, Neg. LLF: 110.87934271442701
Iteration: 12, Func. Count: 117, Neg. LLF: 110.87933505332578
Iteration: 13, Func. Count: 125, Neg. LLF: 110.87933472885717
Optimization terminated successfully (Exit mode 0)
Current function value: 110.87933505332578
Iterations: 13
Function evaluations: 125
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 126.71031008832419
Iteration: 2, Func. Count: 25, Neg. LLF: 125.9660209735948
Iteration: 3, Func. Count: 37, Neg. LLF: 124.55286788718014
Iteration: 4, Func. Count: 48, Neg. LLF: 112.0161463402534
Iteration: 5, Func. Count: 58, Neg. LLF: 111.1796598606739
Iteration: 6, Func. Count: 68, Neg. LLF: 111.24518485441877
Iteration: 7, Func. Count: 79, Neg. LLF: 111.08055252742948
Iteration: 8, Func. Count: 89, Neg. LLF: 111.05953793811491
Iteration: 9, Func. Count: 99, Neg. LLF: 111.05926784135195
Iteration: 10, Func. Count: 109, Neg. LLF: 111.05924352559755
Iteration: 11, Func. Count: 119, Neg. LLF: 111.05922863113881
Iteration: 12, Func. Count: 129, Neg. LLF: 111.05912507135837
Iteration: 13, Func. Count: 139, Neg. LLF: 111.05834603851383
Iteration: 14, Func. Count: 149, Neg. LLF: 111.06735961667177
Iteration: 15, Func. Count: 160, Neg. LLF: 111.070682028783
Iteration: 16, Func. Count: 171, Neg. LLF: 111.05612667415974
Iteration: 17, Func. Count: 181, Neg. LLF: 111.05598588637312
Iteration: 18, Func. Count: 191, Neg. LLF: 111.05598392647916
Iteration: 19, Func. Count: 200, Neg. LLF: 111.05598369594343
Optimization terminated successfully (Exit mode 0)
Current function value: 111.05598392647916
Iterations: 19
Function evaluations: 200
Gradient evaluations: 19
Iteration: 1, Func. Count: 12, Neg. LLF: 128.94953089056176
Iteration: 2, Func. Count: 27, Neg. LLF: 358.6709337253171
Iteration: 3, Func. Count: 39, Neg. LLF: 120.97232932969558
Iteration: 4, Func. Count: 51, Neg. LLF: 111.21800788048529
Iteration: 5, Func. Count: 62, Neg. LLF: 110.64706369750498
Iteration: 6, Func. Count: 73, Neg. LLF: 112.27238696995018
Iteration: 7, Func. Count: 85, Neg. LLF: 155.67045311834352
Iteration: 8, Func. Count: 98, Neg. LLF: 110.47047356377509
Iteration: 9, Func. Count: 109, Neg. LLF: 110.46799802546364
Iteration: 10, Func. Count: 120, Neg. LLF: 110.46725844068864
Iteration: 11, Func. Count: 131, Neg. LLF: 110.4667696968042
Iteration: 12, Func. Count: 142, Neg. LLF: 110.4667450351642
Iteration: 13, Func. Count: 153, Neg. LLF: 110.4667441744428
Optimization terminated successfully (Exit mode 0)
Current function value: 110.4667441744428
Iterations: 13
Function evaluations: 153
Gradient evaluations: 13
Iteration: 1, Func. Count: 5, Neg. LLF: 147.64539492665577
Iteration: 2, Func. Count: 10, Neg. LLF: 120.04084714103713
Iteration: 3, Func. Count: 15, Neg. LLF: 106.66998646425883
Iteration: 4, Func. Count: 19, Neg. LLF: 106.99731768386711
Iteration: 5, Func. Count: 24, Neg. LLF: 105.88060839823099
Iteration: 6, Func. Count: 28, Neg. LLF: 105.86121140332632
Iteration: 7, Func. Count: 32, Neg. LLF: 105.86091313281487
Iteration: 8, Func. Count: 36, Neg. LLF: 105.86091233597134
Optimization terminated successfully (Exit mode 0)
Current function value: 105.86091233597134
Iterations: 8
Function evaluations: 36
Gradient evaluations: 8
Iteration: 1, Func. Count: 6, Neg. LLF: 208.19949635772028
Iteration: 2, Func. Count: 12, Neg. LLF: 301.70287679144207
Iteration: 3, Func. Count: 18, Neg. LLF: 112.401313862977
Iteration: 4, Func. Count: 24, Neg. LLF: 106.24934713485428
Iteration: 5, Func. Count: 31, Neg. LLF: 122.8579645170141
Iteration: 6, Func. Count: 37, Neg. LLF: 103.00305048433363
Iteration: 7, Func. Count: 42, Neg. LLF: 102.95158797215451
Iteration: 8, Func. Count: 47, Neg. LLF: 102.94771934154694
Iteration: 9, Func. Count: 52, Neg. LLF: 102.9476865739798
Iteration: 10, Func. Count: 56, Neg. LLF: 102.94768646064867
Optimization terminated successfully (Exit mode 0)
Current function value: 102.9476865739798
Iterations: 10
Function evaluations: 56
Gradient evaluations: 10
Iteration: 1, Func. Count: 7, Neg. LLF: 180.49884784453866
Iteration: 2, Func. Count: 14, Neg. LLF: 111.74302355892881
Iteration: 3, Func. Count: 21, Neg. LLF: 1312.384692265827
Iteration: 4, Func. Count: 28, Neg. LLF: 109.4819620570316
Iteration: 5, Func. Count: 35, Neg. LLF: 102.96701671049635
Iteration: 6, Func. Count: 41, Neg. LLF: 102.95555813093031
Iteration: 7, Func. Count: 47, Neg. LLF: 102.94788530479612
Iteration: 8, Func. Count: 53, Neg. LLF: 102.94769872467509
Iteration: 9, Func. Count: 59, Neg. LLF: 102.94768634846936
Iteration: 10, Func. Count: 64, Neg. LLF: 102.94768633685598
Optimization terminated successfully (Exit mode 0)
Current function value: 102.94768634846936
Iterations: 10
Function evaluations: 64
Gradient evaluations: 10
Iteration: 1, Func. Count: 8, Neg. LLF: 171.53413135017686
Iteration: 2, Func. Count: 16, Neg. LLF: 108.38647705911302
Iteration: 3, Func. Count: 23, Neg. LLF: 127.47327844689713
Iteration: 4, Func. Count: 33, Neg. LLF: 249.38941282196876
Iteration: 5, Func. Count: 41, Neg. LLF: 144.71436202693877
Iteration: 6, Func. Count: 49, Neg. LLF: 104.62623823565441
Iteration: 7, Func. Count: 57, Neg. LLF: 103.12230879196119
Iteration: 8, Func. Count: 64, Neg. LLF: 115.55001250115788
Iteration: 9, Func. Count: 73, Neg. LLF: 102.93612756096745
Iteration: 10, Func. Count: 80, Neg. LLF: 102.8828368095067
Iteration: 11, Func. Count: 87, Neg. LLF: 102.85462600002381
Iteration: 12, Func. Count: 94, Neg. LLF: 102.8528211386493
Iteration: 13, Func. Count: 101, Neg. LLF: 102.85266527275607
Iteration: 14, Func. Count: 108, Neg. LLF: 102.85265668798968
Iteration: 15, Func. Count: 115, Neg. LLF: 102.85265427485163
Iteration: 16, Func. Count: 121, Neg. LLF: 102.85265415840153
Optimization terminated successfully (Exit mode 0)
Current function value: 102.85265427485163
Iterations: 16
Function evaluations: 121
Gradient evaluations: 16
Iteration: 1, Func. Count: 9, Neg. LLF: 166.65561654133037
Iteration: 2, Func. Count: 18, Neg. LLF: 109.17593739554192
Iteration: 3, Func. Count: 27, Neg. LLF: 1909.0428010439716
Iteration: 4, Func. Count: 36, Neg. LLF: 140.4502523067162
Iteration: 5, Func. Count: 45, Neg. LLF: 110.7601550068876
Iteration: 6, Func. Count: 54, Neg. LLF: 103.3385565510315
Iteration: 7, Func. Count: 62, Neg. LLF: 139.55972694482102
Iteration: 8, Func. Count: 72, Neg. LLF: 107.79508552006133
Iteration: 9, Func. Count: 81, Neg. LLF: 102.68619492464846
Iteration: 10, Func. Count: 89, Neg. LLF: 102.69584887364229
Iteration: 11, Func. Count: 98, Neg. LLF: 102.64901304029928
Iteration: 12, Func. Count: 106, Neg. LLF: 102.63735327567832
Iteration: 13, Func. Count: 114, Neg. LLF: 102.62975725570404
Iteration: 14, Func. Count: 122, Neg. LLF: 102.6291393145286
Iteration: 15, Func. Count: 130, Neg. LLF: 102.6291232740452
Iteration: 16, Func. Count: 137, Neg. LLF: 102.62912315996128
Optimization terminated successfully (Exit mode 0)
Current function value: 102.6291232740452
Iterations: 16
Function evaluations: 137
Gradient evaluations: 16
Iteration: 1, Func. Count: 6, Neg. LLF: 158.58790880925704
Iteration: 2, Func. Count: 12, Neg. LLF: 112.5703468349561
Iteration: 3, Func. Count: 18, Neg. LLF: 106.2141039287562
Iteration: 4, Func. Count: 23, Neg. LLF: 106.3088527584341
Iteration: 5, Func. Count: 29, Neg. LLF: 105.93117449634234
Iteration: 6, Func. Count: 35, Neg. LLF: 105.86247129018275
Iteration: 7, Func. Count: 40, Neg. LLF: 105.85886261704354
Iteration: 8, Func. Count: 45, Neg. LLF: 105.85882007256593
Iteration: 9, Func. Count: 49, Neg. LLF: 105.85882007258164
Optimization terminated successfully (Exit mode 0)
Current function value: 105.85882007256593
Iterations: 9
Function evaluations: 49
Gradient evaluations: 9
Iteration: 1, Func. Count: 7, Neg. LLF: 173.1061156666569
Iteration: 2, Func. Count: 15, Neg. LLF: 120.88974280259853
Iteration: 3, Func. Count: 22, Neg. LLF: 1412.3931616863854
Iteration: 4, Func. Count: 29, Neg. LLF: 133.32331090825036
Iteration: 5, Func. Count: 36, Neg. LLF: 107.11142522900214
Iteration: 6, Func. Count: 43, Neg. LLF: 102.81626725930228
Iteration: 7, Func. Count: 49, Neg. LLF: 102.7676367808134
Iteration: 8, Func. Count: 55, Neg. LLF: 102.76530807154263
Iteration: 9, Func. Count: 61, Neg. LLF: 102.76468280444074
Iteration: 10, Func. Count: 67, Neg. LLF: 102.76465671770434
Iteration: 11, Func. Count: 73, Neg. LLF: 102.76465255972366
Iteration: 12, Func. Count: 78, Neg. LLF: 102.76465244007895
Optimization terminated successfully (Exit mode 0)
Current function value: 102.76465255972366
Iterations: 12
Function evaluations: 78
Gradient evaluations: 12
Iteration: 1, Func. Count: 8, Neg. LLF: 218.90329881292388
Iteration: 2, Func. Count: 16, Neg. LLF: 149.64137789181387
Iteration: 3, Func. Count: 24, Neg. LLF: 126.05523019125023
Iteration: 4, Func. Count: 32, Neg. LLF: 7225.664930727385
Iteration: 5, Func. Count: 40, Neg. LLF: 142.9818949601823
Iteration: 6, Func. Count: 48, Neg. LLF: 137.9451606864625
Iteration: 7, Func. Count: 56, Neg. LLF: 103.31175086347132
Iteration: 8, Func. Count: 63, Neg. LLF: 103.93444433103502
Iteration: 9, Func. Count: 71, Neg. LLF: 106.27540581049107
Iteration: 10, Func. Count: 79, Neg. LLF: 102.7759577942387
Iteration: 11, Func. Count: 86, Neg. LLF: 102.76523633971878
Iteration: 12, Func. Count: 93, Neg. LLF: 102.76473039605285
Iteration: 13, Func. Count: 100, Neg. LLF: 102.76465358192215
Iteration: 14, Func. Count: 107, Neg. LLF: 102.76465249337141
Iteration: 15, Func. Count: 113, Neg. LLF: 102.76465247521512
Optimization terminated successfully (Exit mode 0)
Current function value: 102.76465249337141
Iterations: 15
Function evaluations: 113
Gradient evaluations: 15
Iteration: 1, Func. Count: 9, Neg. LLF: 206.16883794135848
Iteration: 2, Func. Count: 18, Neg. LLF: 122.52353032456979
Iteration: 3, Func. Count: 27, Neg. LLF: 147.93828150205044
Iteration: 4, Func. Count: 36, Neg. LLF: 291.3408274016822
Iteration: 5, Func. Count: 45, Neg. LLF: 149.71384595795215
Iteration: 6, Func. Count: 54, Neg. LLF: 148.8023190213833
Iteration: 7, Func. Count: 63, Neg. LLF: 104.56993453878744
Iteration: 8, Func. Count: 71, Neg. LLF: 104.07904250246433
Iteration: 9, Func. Count: 80, Neg. LLF: 111.90022401065733
Iteration: 10, Func. Count: 89, Neg. LLF: 104.2534535063017
Iteration: 11, Func. Count: 98, Neg. LLF: 102.72173663107235
Iteration: 12, Func. Count: 106, Neg. LLF: 102.70416733261786
Iteration: 13, Func. Count: 114, Neg. LLF: 102.69503141458367
Iteration: 14, Func. Count: 122, Neg. LLF: 102.69205029934263
Iteration: 15, Func. Count: 130, Neg. LLF: 102.69149606251115
Iteration: 16, Func. Count: 138, Neg. LLF: 102.69144182036334
Iteration: 17, Func. Count: 146, Neg. LLF: 102.69143499309939
Iteration: 18, Func. Count: 153, Neg. LLF: 102.69143487032895
Optimization terminated successfully (Exit mode 0)
Current function value: 102.69143499309939
Iterations: 18
Function evaluations: 153
Gradient evaluations: 18
Iteration: 1, Func. Count: 10, Neg. LLF: 163.18860154544834
Iteration: 2, Func. Count: 20, Neg. LLF: 108.8338249511095
Iteration: 3, Func. Count: 29, Neg. LLF: 128.0980107178768
Iteration: 4, Func. Count: 41, Neg. LLF: 1129.879326888758
Iteration: 5, Func. Count: 51, Neg. LLF: 332.6042471290472
Iteration: 6, Func. Count: 62, Neg. LLF: 104.22087178639825
Iteration: 7, Func. Count: 72, Neg. LLF: 103.44156461046946
Iteration: 8, Func. Count: 82, Neg. LLF: 102.81570658309897
Iteration: 9, Func. Count: 91, Neg. LLF: 102.72714049029953
Iteration: 10, Func. Count: 100, Neg. LLF: 102.53552653933876
Iteration: 11, Func. Count: 109, Neg. LLF: 102.50896349938094
Iteration: 12, Func. Count: 118, Neg. LLF: 102.49822661434959
Iteration: 13, Func. Count: 127, Neg. LLF: 102.4960917678783
Iteration: 14, Func. Count: 136, Neg. LLF: 102.49603760515781
Iteration: 15, Func. Count: 145, Neg. LLF: 102.4960281604218
Iteration: 16, Func. Count: 153, Neg. LLF: 102.49602804124446
Optimization terminated successfully (Exit mode 0)
Current function value: 102.4960281604218
Iterations: 16
Function evaluations: 153
Gradient evaluations: 16
Iteration: 1, Func. Count: 7, Neg. LLF: 165.5978264480493
Iteration: 2, Func. Count: 14, Neg. LLF: 110.2491379972872
Iteration: 3, Func. Count: 21, Neg. LLF: 106.83460390562944
Iteration: 4, Func. Count: 28, Neg. LLF: 239.0519980751197
Iteration: 5, Func. Count: 35, Neg. LLF: 17158.367518789957
Iteration: 6, Func. Count: 42, Neg. LLF: 174.4331029441787
Iteration: 7, Func. Count: 49, Neg. LLF: 161.92078099790012
Iteration: 8, Func. Count: 56, Neg. LLF: 103.85476106126121
Iteration: 9, Func. Count: 63, Neg. LLF: 100.3682072772433
Iteration: 10, Func. Count: 69, Neg. LLF: 100.30134536337053
Iteration: 11, Func. Count: 75, Neg. LLF: 100.29855076440597
Iteration: 12, Func. Count: 81, Neg. LLF: 100.29760884885658
Iteration: 13, Func. Count: 87, Neg. LLF: 100.29760734885079
Iteration: 14, Func. Count: 92, Neg. LLF: 100.29760733670116
Optimization terminated successfully (Exit mode 0)
Current function value: 100.29760734885079
Iterations: 14
Function evaluations: 92
Gradient evaluations: 14
Iteration: 1, Func. Count: 8, Neg. LLF: 172.11612216429552
Iteration: 2, Func. Count: 17, Neg. LLF: 115.04546918249187
Iteration: 3, Func. Count: 25, Neg. LLF: 519.1468133084567
Iteration: 4, Func. Count: 33, Neg. LLF: 106.64894168137133
Iteration: 5, Func. Count: 41, Neg. LLF: 102.3112115113725
Iteration: 6, Func. Count: 48, Neg. LLF: 100.39590024859933
Iteration: 7, Func. Count: 55, Neg. LLF: 100.34368582117517
Iteration: 8, Func. Count: 62, Neg. LLF: 100.29816149094259
Iteration: 9, Func. Count: 69, Neg. LLF: 100.29767980638785
Iteration: 10, Func. Count: 76, Neg. LLF: 100.29761373234555
Iteration: 11, Func. Count: 83, Neg. LLF: 100.29760720239246
Iteration: 12, Func. Count: 89, Neg. LLF: 100.29760738285856
Optimization terminated successfully (Exit mode 0)
Current function value: 100.29760720239246
Iterations: 12
Function evaluations: 89
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 222.74999860152278
Iteration: 2, Func. Count: 18, Neg. LLF: 3331933.9824286685
Iteration: 3, Func. Count: 27, Neg. LLF: 530.0503471640752
Iteration: 4, Func. Count: 36, Neg. LLF: 230.61052979948045
Iteration: 5, Func. Count: 45, Neg. LLF: 942.4269819499568
Iteration: 6, Func. Count: 54, Neg. LLF: 265.6794592105209
Iteration: 7, Func. Count: 63, Neg. LLF: 100.60779110625053
Iteration: 8, Func. Count: 71, Neg. LLF: 148.7504580910768
Iteration: 9, Func. Count: 80, Neg. LLF: 100.43676298376437
Iteration: 10, Func. Count: 88, Neg. LLF: 100.31590400673662
Iteration: 11, Func. Count: 96, Neg. LLF: 100.2979237860618
Iteration: 12, Func. Count: 104, Neg. LLF: 100.2976120218591
Iteration: 13, Func. Count: 112, Neg. LLF: 100.2976071959313
Iteration: 14, Func. Count: 119, Neg. LLF: 100.29760752689742
Optimization terminated successfully (Exit mode 0)
Current function value: 100.2976071959313
Iterations: 14
Function evaluations: 119
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 219.8290653608434
Iteration: 2, Func. Count: 20, Neg. LLF: 3391293.207397057
Iteration: 3, Func. Count: 30, Neg. LLF: 3682560.230022352
Iteration: 4, Func. Count: 40, Neg. LLF: 390.2013911040958
Iteration: 5, Func. Count: 50, Neg. LLF: 1449.1970074504604
Iteration: 6, Func. Count: 60, Neg. LLF: 2151.0956319644247
Iteration: 7, Func. Count: 70, Neg. LLF: 101.09334601627535
Iteration: 8, Func. Count: 79, Neg. LLF: 100.85261237517213
Iteration: 9, Func. Count: 89, Neg. LLF: 101.28378536293373
Iteration: 10, Func. Count: 99, Neg. LLF: 100.785086083523
Iteration: 11, Func. Count: 109, Neg. LLF: 100.18975160262247
Iteration: 12, Func. Count: 118, Neg. LLF: 100.13847093962909
Iteration: 13, Func. Count: 127, Neg. LLF: 100.13384174130643
Iteration: 14, Func. Count: 136, Neg. LLF: 100.13368708156824
Iteration: 15, Func. Count: 145, Neg. LLF: 100.13368035503925
Iteration: 16, Func. Count: 153, Neg. LLF: 100.13368031657751
Optimization terminated successfully (Exit mode 0)
Current function value: 100.13368035503925
Iterations: 16
Function evaluations: 153
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 220.1558502271208
Iteration: 2, Func. Count: 22, Neg. LLF: 3435070.3071913524
Iteration: 3, Func. Count: 33, Neg. LLF: 3752549.197266228
Iteration: 4, Func. Count: 44, Neg. LLF: 1019.1274223450092
Iteration: 5, Func. Count: 55, Neg. LLF: 831.4860190263089
Iteration: 6, Func. Count: 66, Neg. LLF: 2667.031620182713
Iteration: 7, Func. Count: 77, Neg. LLF: 102.68345186958001
Iteration: 8, Func. Count: 87, Neg. LLF: 102.59040201486297
Iteration: 9, Func. Count: 98, Neg. LLF: 107.7664756433937
Iteration: 10, Func. Count: 110, Neg. LLF: 100.49332865117474
Iteration: 11, Func. Count: 120, Neg. LLF: 100.29743370345118
Iteration: 12, Func. Count: 130, Neg. LLF: 100.25051429687011
Iteration: 13, Func. Count: 140, Neg. LLF: 100.189786201103
Iteration: 14, Func. Count: 150, Neg. LLF: 100.18285014232504
Iteration: 15, Func. Count: 160, Neg. LLF: 100.17928736719477
Iteration: 16, Func. Count: 170, Neg. LLF: 100.17911957832543
Iteration: 17, Func. Count: 180, Neg. LLF: 100.17910963851513
Iteration: 18, Func. Count: 190, Neg. LLF: 100.17910830649652
Iteration: 19, Func. Count: 199, Neg. LLF: 100.17910826918131
Optimization terminated successfully (Exit mode 0)
Current function value: 100.17910830649652
Iterations: 19
Function evaluations: 199
Gradient evaluations: 19
Iteration: 1, Func. Count: 8, Neg. LLF: 161.52825278223762
Iteration: 2, Func. Count: 16, Neg. LLF: 113.4496655752661
Iteration: 3, Func. Count: 24, Neg. LLF: 101.93742704893633
Iteration: 4, Func. Count: 31, Neg. LLF: 101.551181533708
Iteration: 5, Func. Count: 39, Neg. LLF: 100.32829291866
Iteration: 6, Func. Count: 47, Neg. LLF: 100.29951462779962
Iteration: 7, Func. Count: 54, Neg. LLF: 100.29761220210388
Iteration: 8, Func. Count: 61, Neg. LLF: 100.29760716973199
Iteration: 9, Func. Count: 67, Neg. LLF: 100.29760756014542
Optimization terminated successfully (Exit mode 0)
Current function value: 100.29760716973199
Iterations: 9
Function evaluations: 67
Gradient evaluations: 9
Iteration: 1, Func. Count: 9, Neg. LLF: 204.04594556522673
Iteration: 2, Func. Count: 18, Neg. LLF: 164.18721059525797
Iteration: 3, Func. Count: 27, Neg. LLF: 21174.894063410433
Iteration: 4, Func. Count: 36, Neg. LLF: 102.94295152693277
Iteration: 5, Func. Count: 44, Neg. LLF: 101.33168909856033
Iteration: 6, Func. Count: 52, Neg. LLF: 103.43533689393664
Iteration: 7, Func. Count: 61, Neg. LLF: 100.67952799122082
Iteration: 8, Func. Count: 70, Neg. LLF: 100.30986341237622
Iteration: 9, Func. Count: 78, Neg. LLF: 100.29856635731183
Iteration: 10, Func. Count: 86, Neg. LLF: 100.29761114131294
Iteration: 11, Func. Count: 94, Neg. LLF: 100.29760721030313
Iteration: 12, Func. Count: 101, Neg. LLF: 100.29760739074048
Optimization terminated successfully (Exit mode 0)
Current function value: 100.29760721030313
Iterations: 12
Function evaluations: 101
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 170.71967806480362
Iteration: 2, Func. Count: 20, Neg. LLF: 110.44582700487635
Iteration: 3, Func. Count: 30, Neg. LLF: 199.07497835252119
Iteration: 4, Func. Count: 40, Neg. LLF: 1166.5943807456663
Iteration: 5, Func. Count: 50, Neg. LLF: 103.23663277787561
Iteration: 6, Func. Count: 60, Neg. LLF: 100.44140257338546
Iteration: 7, Func. Count: 69, Neg. LLF: 100.72641139123665
Iteration: 8, Func. Count: 79, Neg. LLF: 100.31864584565534
Iteration: 9, Func. Count: 88, Neg. LLF: 100.30161092352174
Iteration: 10, Func. Count: 97, Neg. LLF: 100.2982390025105
Iteration: 11, Func. Count: 106, Neg. LLF: 100.29761499868803
Iteration: 12, Func. Count: 115, Neg. LLF: 100.29760718507706
Iteration: 13, Func. Count: 123, Neg. LLF: 100.29760751606598
Optimization terminated successfully (Exit mode 0)
Current function value: 100.29760718507706
Iterations: 13
Function evaluations: 123
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 165.58583937788055
Iteration: 2, Func. Count: 22, Neg. LLF: 110.03835977311203
Iteration: 3, Func. Count: 33, Neg. LLF: 795.6858491413
Iteration: 4, Func. Count: 44, Neg. LLF: 3511.778383640935
Iteration: 5, Func. Count: 55, Neg. LLF: 122.12353932326603
Iteration: 6, Func. Count: 66, Neg. LLF: 115.77018210551968
Iteration: 7, Func. Count: 77, Neg. LLF: 100.42420471061399
Iteration: 8, Func. Count: 87, Neg. LLF: 103.22975382093352
Iteration: 9, Func. Count: 98, Neg. LLF: 100.20288955870744
Iteration: 10, Func. Count: 108, Neg. LLF: 100.13953982222682
Iteration: 11, Func. Count: 118, Neg. LLF: 100.13484294293863
Iteration: 12, Func. Count: 128, Neg. LLF: 100.1342329883452
Iteration: 13, Func. Count: 138, Neg. LLF: 100.13371625328728
Iteration: 14, Func. Count: 148, Neg. LLF: 100.13368157454754
Iteration: 15, Func. Count: 158, Neg. LLF: 100.13368032853425
Iteration: 16, Func. Count: 167, Neg. LLF: 100.1336802900802
Optimization terminated successfully (Exit mode 0)
Current function value: 100.13368032853425
Iterations: 16
Function evaluations: 167
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 162.846511759256
Iteration: 2, Func. Count: 24, Neg. LLF: 109.20124741683749
Iteration: 3, Func. Count: 36, Neg. LLF: 121002.07364411287
Iteration: 4, Func. Count: 48, Neg. LLF: 808.0283762074059
Iteration: 5, Func. Count: 60, Neg. LLF: 122.38333089925342
Iteration: 6, Func. Count: 72, Neg. LLF: 123.81903474629075
Iteration: 7, Func. Count: 84, Neg. LLF: 101.77737489941751
Iteration: 8, Func. Count: 95, Neg. LLF: 119.23570242266182
Iteration: 9, Func. Count: 107, Neg. LLF: 117.43643405664794
Iteration: 10, Func. Count: 121, Neg. LLF: 106.56891559553685
Iteration: 11, Func. Count: 133, Neg. LLF: 100.19711795710766
Iteration: 12, Func. Count: 144, Neg. LLF: 100.18224416414853
Iteration: 13, Func. Count: 155, Neg. LLF: 100.18031773223755
Iteration: 14, Func. Count: 166, Neg. LLF: 100.17961404965263
Iteration: 15, Func. Count: 177, Neg. LLF: 100.17925019209429
Iteration: 16, Func. Count: 188, Neg. LLF: 100.17914388538102
Iteration: 17, Func. Count: 199, Neg. LLF: 100.17911258761887
Iteration: 18, Func. Count: 210, Neg. LLF: 100.17910858158865
Iteration: 19, Func. Count: 220, Neg. LLF: 100.17910854426111
Optimization terminated successfully (Exit mode 0)
Current function value: 100.17910858158865
Iterations: 19
Function evaluations: 220
Gradient evaluations: 19
Iteration: 1, Func. Count: 9, Neg. LLF: 158.1893567678822
Iteration: 2, Func. Count: 18, Neg. LLF: 113.85380603382669
Iteration: 3, Func. Count: 27, Neg. LLF: 101.88321125986927
Iteration: 4, Func. Count: 35, Neg. LLF: 102.89703502464488
Iteration: 5, Func. Count: 44, Neg. LLF: 100.46369994008214
Iteration: 6, Func. Count: 53, Neg. LLF: 100.30354624771725
Iteration: 7, Func. Count: 61, Neg. LLF: 100.3037710636662
Iteration: 8, Func. Count: 70, Neg. LLF: 100.2978415829811
Iteration: 9, Func. Count: 78, Neg. LLF: 100.29760760424071
Iteration: 10, Func. Count: 86, Neg. LLF: 100.2976071899594
Optimization terminated successfully (Exit mode 0)
Current function value: 100.2976071899594
Iterations: 10
Function evaluations: 86
Gradient evaluations: 10
Iteration: 1, Func. Count: 10, Neg. LLF: 204.4737425701751
Iteration: 2, Func. Count: 20, Neg. LLF: 171.94658106870065
Iteration: 3, Func. Count: 30, Neg. LLF: 2457.2513197669537
Iteration: 4, Func. Count: 40, Neg. LLF: 103.72710606082244
Iteration: 5, Func. Count: 49, Neg. LLF: 100.50664128053978
Iteration: 6, Func. Count: 58, Neg. LLF: 101.19283328452005
Iteration: 7, Func. Count: 68, Neg. LLF: 100.39175546900778
Iteration: 8, Func. Count: 78, Neg. LLF: 100.30041375483619
Iteration: 9, Func. Count: 87, Neg. LLF: 100.2976144399047
Iteration: 10, Func. Count: 96, Neg. LLF: 100.29760719398116
Iteration: 11, Func. Count: 104, Neg. LLF: 100.29760737437726
Optimization terminated successfully (Exit mode 0)
Current function value: 100.29760719398116
Iterations: 11
Function evaluations: 104
Gradient evaluations: 11
Iteration: 1, Func. Count: 11, Neg. LLF: 170.77442084070205
Iteration: 2, Func. Count: 22, Neg. LLF: 110.5214667493754
Iteration: 3, Func. Count: 33, Neg. LLF: 189.59661801139035
Iteration: 4, Func. Count: 44, Neg. LLF: 1140.9734880699684
Iteration: 5, Func. Count: 55, Neg. LLF: 103.06221350726001
Iteration: 6, Func. Count: 65, Neg. LLF: 100.32102058312937
Iteration: 7, Func. Count: 75, Neg. LLF: 100.31172202540817
Iteration: 8, Func. Count: 85, Neg. LLF: 100.29826498655085
Iteration: 9, Func. Count: 95, Neg. LLF: 100.29761823280796
Iteration: 10, Func. Count: 105, Neg. LLF: 100.29760722864151
Iteration: 11, Func. Count: 114, Neg. LLF: 100.2976075595947
Optimization terminated successfully (Exit mode 0)
Current function value: 100.29760722864151
Iterations: 11
Function evaluations: 114
Gradient evaluations: 11
Iteration: 1, Func. Count: 12, Neg. LLF: 165.59325309659363
Iteration: 2, Func. Count: 24, Neg. LLF: 110.00412270562799
Iteration: 3, Func. Count: 36, Neg. LLF: 822.418331962187
Iteration: 4, Func. Count: 48, Neg. LLF: 4136.103966033474
Iteration: 5, Func. Count: 60, Neg. LLF: 201.97415356846514
Iteration: 6, Func. Count: 72, Neg. LLF: 121.08601976949375
Iteration: 7, Func. Count: 84, Neg. LLF: 100.46527031607752
Iteration: 8, Func. Count: 95, Neg. LLF: 102.46979257538943
Iteration: 9, Func. Count: 107, Neg. LLF: 100.25079484586544
Iteration: 10, Func. Count: 118, Neg. LLF: 100.14309718759907
Iteration: 11, Func. Count: 129, Neg. LLF: 100.13463449866578
Iteration: 12, Func. Count: 140, Neg. LLF: 100.13386334685677
Iteration: 13, Func. Count: 151, Neg. LLF: 100.13376628844567
Iteration: 14, Func. Count: 162, Neg. LLF: 100.13369896004502
Iteration: 15, Func. Count: 173, Neg. LLF: 100.13368034347964
Iteration: 16, Func. Count: 183, Neg. LLF: 100.1336803049931
Optimization terminated successfully (Exit mode 0)
Current function value: 100.13368034347964
Iterations: 16
Function evaluations: 183
Gradient evaluations: 16
Iteration: 1, Func. Count: 13, Neg. LLF: 162.8006439491809
Iteration: 2, Func. Count: 26, Neg. LLF: 109.13886600199066
Iteration: 3, Func. Count: 39, Neg. LLF: 57942.36967662838
Iteration: 4, Func. Count: 52, Neg. LLF: 803.7199230671622
Iteration: 5, Func. Count: 65, Neg. LLF: 112.91813044304484
Iteration: 6, Func. Count: 78, Neg. LLF: 122.47241952279157
Iteration: 7, Func. Count: 91, Neg. LLF: 101.2442802819129
Iteration: 8, Func. Count: 103, Neg. LLF: 104.23621913468803
Iteration: 9, Func. Count: 117, Neg. LLF: 109.33338773762624
Iteration: 10, Func. Count: 131, Neg. LLF: 100.42925380990846
Iteration: 11, Func. Count: 143, Neg. LLF: 100.14128705268553
Iteration: 12, Func. Count: 155, Neg. LLF: 100.13524489656555
Iteration: 13, Func. Count: 167, Neg. LLF: 100.1339801629518
Iteration: 14, Func. Count: 179, Neg. LLF: 100.13370574543092
Iteration: 15, Func. Count: 191, Neg. LLF: 100.13369124259003
Iteration: 16, Func. Count: 203, Neg. LLF: 100.13368479392443
Iteration: 17, Func. Count: 215, Neg. LLF: 100.1336810703259
Iteration: 18, Func. Count: 227, Neg. LLF: 100.13368036958222
Optimization terminated successfully (Exit mode 0)
Current function value: 100.13368036958222
Iterations: 18
Function evaluations: 227
Gradient evaluations: 18
Iteration: 1, Func. Count: 6, Neg. LLF: 155.75385581172299
Iteration: 2, Func. Count: 12, Neg. LLF: 119.11585686291302
Iteration: 3, Func. Count: 18, Neg. LLF: 107.58268278763165
Iteration: 4, Func. Count: 23, Neg. LLF: 372.96110296224845
Iteration: 5, Func. Count: 29, Neg. LLF: 163.107609544572
Iteration: 6, Func. Count: 35, Neg. LLF: 301.78335859808914
Iteration: 7, Func. Count: 41, Neg. LLF: 104.57666898844545
Iteration: 8, Func. Count: 47, Neg. LLF: 106.89308717677248
Iteration: 9, Func. Count: 53, Neg. LLF: 102.43246745155614
Iteration: 10, Func. Count: 58, Neg. LLF: 102.14191406323914
Iteration: 11, Func. Count: 63, Neg. LLF: 101.93186310536733
Iteration: 12, Func. Count: 68, Neg. LLF: 101.87372877414771
Iteration: 13, Func. Count: 73, Neg. LLF: 101.86243007016866
Iteration: 14, Func. Count: 78, Neg. LLF: 101.86170813082944
Iteration: 15, Func. Count: 83, Neg. LLF: 101.86169863766061
Iteration: 16, Func. Count: 87, Neg. LLF: 101.86169856892421
Optimization terminated successfully (Exit mode 0)
Current function value: 101.86169863766061
Iterations: 16
Function evaluations: 87
Gradient evaluations: 16
Iteration: 1, Func. Count: 7, Neg. LLF: 158.43819214848008
Iteration: 2, Func. Count: 14, Neg. LLF: 113.53760043520136
Iteration: 3, Func. Count: 21, Neg. LLF: 687.9111260422158
Iteration: 4, Func. Count: 28, Neg. LLF: 117.22731578224803
Iteration: 5, Func. Count: 35, Neg. LLF: 102.61446931395554
Iteration: 6, Func. Count: 41, Neg. LLF: 102.07851803822886
Iteration: 7, Func. Count: 47, Neg. LLF: 102.24503955876882
Iteration: 8, Func. Count: 54, Neg. LLF: 101.86633337064146
Iteration: 9, Func. Count: 60, Neg. LLF: 101.86303053080049
Iteration: 10, Func. Count: 66, Neg. LLF: 101.86170376329191
Iteration: 11, Func. Count: 72, Neg. LLF: 101.86169862623197
Iteration: 12, Func. Count: 77, Neg. LLF: 101.86169869771109
Optimization terminated successfully (Exit mode 0)
Current function value: 101.86169862623197
Iterations: 12
Function evaluations: 77
Gradient evaluations: 12
Iteration: 1, Func. Count: 8, Neg. LLF: 152.4631661571442
Iteration: 2, Func. Count: 16, Neg. LLF: 113.62343167455559
Iteration: 3, Func. Count: 24, Neg. LLF: 1887.5167533583058
Iteration: 4, Func. Count: 32, Neg. LLF: 140.82747908608806
Iteration: 5, Func. Count: 40, Neg. LLF: 777.8197347331866
Iteration: 6, Func. Count: 48, Neg. LLF: 116.2160397727833
Iteration: 7, Func. Count: 56, Neg. LLF: 102.41347419379098
Iteration: 8, Func. Count: 63, Neg. LLF: 101.9662116327991
Iteration: 9, Func. Count: 70, Neg. LLF: 101.93095912097581
Iteration: 10, Func. Count: 78, Neg. LLF: 101.86259449423052
Iteration: 11, Func. Count: 85, Neg. LLF: 101.86170438896444
Iteration: 12, Func. Count: 92, Neg. LLF: 101.86169864743692
Iteration: 13, Func. Count: 98, Neg. LLF: 101.86169891623942
Optimization terminated successfully (Exit mode 0)
Current function value: 101.86169864743692
Iterations: 13
Function evaluations: 98
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 152.01584248204463
Iteration: 2, Func. Count: 18, Neg. LLF: 113.23348704460477
Iteration: 3, Func. Count: 27, Neg. LLF: 7352.85975448089
Iteration: 4, Func. Count: 36, Neg. LLF: 147.7109750494272
Iteration: 5, Func. Count: 45, Neg. LLF: 686.7645946581127
Iteration: 6, Func. Count: 54, Neg. LLF: 8334.32191080429
Iteration: 7, Func. Count: 63, Neg. LLF: 109.1144276138441
Iteration: 8, Func. Count: 72, Neg. LLF: 102.0833568737175
Iteration: 9, Func. Count: 80, Neg. LLF: 136.5162061423799
Iteration: 10, Func. Count: 89, Neg. LLF: 103.52491082594176
Iteration: 11, Func. Count: 98, Neg. LLF: 101.74255664765568
Iteration: 12, Func. Count: 106, Neg. LLF: 101.72742549520714
Iteration: 13, Func. Count: 114, Neg. LLF: 101.72286017417946
Iteration: 14, Func. Count: 122, Neg. LLF: 101.72276667112519
Iteration: 15, Func. Count: 130, Neg. LLF: 101.7226942111978
Iteration: 16, Func. Count: 138, Neg. LLF: 101.72268740676269
Iteration: 17, Func. Count: 145, Neg. LLF: 101.72268733623471
Optimization terminated successfully (Exit mode 0)
Current function value: 101.72268740676269
Iterations: 17
Function evaluations: 145
Gradient evaluations: 17
Iteration: 1, Func. Count: 10, Neg. LLF: 151.54109845989308
Iteration: 2, Func. Count: 21, Neg. LLF: 114.13649805452276
Iteration: 3, Func. Count: 31, Neg. LLF: 618.7915414004771
Iteration: 4, Func. Count: 41, Neg. LLF: 106.31271728927841
Iteration: 5, Func. Count: 51, Neg. LLF: 102.05869111648066
Iteration: 6, Func. Count: 60, Neg. LLF: 101.9839393976205
Iteration: 7, Func. Count: 70, Neg. LLF: 102.0579518161394
Iteration: 8, Func. Count: 80, Neg. LLF: 101.51369789994698
Iteration: 9, Func. Count: 89, Neg. LLF: 101.5100276799352
Iteration: 10, Func. Count: 98, Neg. LLF: 101.50826919995045
Iteration: 11, Func. Count: 107, Neg. LLF: 101.5078543082468
Iteration: 12, Func. Count: 116, Neg. LLF: 101.50782628071504
Iteration: 13, Func. Count: 125, Neg. LLF: 101.50782567485963
Optimization terminated successfully (Exit mode 0)
Current function value: 101.50782567485963
Iterations: 13
Function evaluations: 125
Gradient evaluations: 13
Iteration: 1, Func. Count: 7, Neg. LLF: 168.407622870873
Iteration: 2, Func. Count: 14, Neg. LLF: 115.07505872155943
Iteration: 3, Func. Count: 21, Neg. LLF: 102.89098962387425
Iteration: 4, Func. Count: 27, Neg. LLF: 566.2023838635015
Iteration: 5, Func. Count: 34, Neg. LLF: 109.0463072884363
Iteration: 6, Func. Count: 42, Neg. LLF: 101.41115686491004
Iteration: 7, Func. Count: 48, Neg. LLF: 101.11014964103042
Iteration: 8, Func. Count: 54, Neg. LLF: 101.025564519339
Iteration: 9, Func. Count: 60, Neg. LLF: 100.98558348326183
Iteration: 10, Func. Count: 66, Neg. LLF: 100.97864694908168
Iteration: 11, Func. Count: 72, Neg. LLF: 100.97780780992224
Iteration: 12, Func. Count: 78, Neg. LLF: 100.97780595796577
Iteration: 13, Func. Count: 83, Neg. LLF: 100.97780599495287
Optimization terminated successfully (Exit mode 0)
Current function value: 100.97780595796577
Iterations: 13
Function evaluations: 83
Gradient evaluations: 13
Iteration: 1, Func. Count: 8, Neg. LLF: 217.86392986739403
Iteration: 2, Func. Count: 16, Neg. LLF: 497.22341164944595
Iteration: 3, Func. Count: 24, Neg. LLF: 251444.96893998559
Iteration: 4, Func. Count: 32, Neg. LLF: 2353.200435757051
Iteration: 5, Func. Count: 40, Neg. LLF: 130.68082821307186
Iteration: 6, Func. Count: 48, Neg. LLF: 136.29492220001083
Iteration: 7, Func. Count: 56, Neg. LLF: 102.42134631062527
Iteration: 8, Func. Count: 63, Neg. LLF: 101.14854182398192
Iteration: 9, Func. Count: 70, Neg. LLF: 101.33684831734178
Iteration: 10, Func. Count: 78, Neg. LLF: 101.00903090785633
Iteration: 11, Func. Count: 85, Neg. LLF: 100.98286093021832
Iteration: 12, Func. Count: 92, Neg. LLF: 100.9780887584407
Iteration: 13, Func. Count: 99, Neg. LLF: 100.97780691076213
Iteration: 14, Func. Count: 106, Neg. LLF: 100.9778059341631
Optimization terminated successfully (Exit mode 0)
Current function value: 100.9778059341631
Iterations: 14
Function evaluations: 106
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 198.8714978186566
Iteration: 2, Func. Count: 18, Neg. LLF: 125.75523302626601
Iteration: 3, Func. Count: 27, Neg. LLF: 2635.1407571231052
Iteration: 4, Func. Count: 36, Neg. LLF: 314.12827076029225
Iteration: 5, Func. Count: 45, Neg. LLF: 117.1215366197334
Iteration: 6, Func. Count: 54, Neg. LLF: 101.7366030003594
Iteration: 7, Func. Count: 62, Neg. LLF: 101.30840094106662
Iteration: 8, Func. Count: 70, Neg. LLF: 101.01268706258918
Iteration: 9, Func. Count: 78, Neg. LLF: 100.98010791230037
Iteration: 10, Func. Count: 86, Neg. LLF: 100.97885685837174
Iteration: 11, Func. Count: 94, Neg. LLF: 100.97781062383902
Iteration: 12, Func. Count: 102, Neg. LLF: 100.97780632727604
Iteration: 13, Func. Count: 109, Neg. LLF: 100.97780655998037
Optimization terminated successfully (Exit mode 0)
Current function value: 100.97780632727604
Iterations: 13
Function evaluations: 109
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 191.5392642930456
Iteration: 2, Func. Count: 20, Neg. LLF: 124.16755957834155
Iteration: 3, Func. Count: 30, Neg. LLF: 3465.2276495861365
Iteration: 4, Func. Count: 40, Neg. LLF: 420.80680168537015
Iteration: 5, Func. Count: 50, Neg. LLF: 110.6988802703313
Iteration: 6, Func. Count: 60, Neg. LLF: 101.43480447876168
Iteration: 7, Func. Count: 69, Neg. LLF: 105.58274992619548
Iteration: 8, Func. Count: 79, Neg. LLF: 104.92688131046845
Iteration: 9, Func. Count: 89, Neg. LLF: 101.00800854873528
Iteration: 10, Func. Count: 98, Neg. LLF: 101.06232397491956
Iteration: 11, Func. Count: 108, Neg. LLF: 100.9148928291013
Iteration: 12, Func. Count: 117, Neg. LLF: 100.9137932402887
Iteration: 13, Func. Count: 126, Neg. LLF: 100.91366070418113
Iteration: 14, Func. Count: 135, Neg. LLF: 100.91362405763974
Iteration: 15, Func. Count: 143, Neg. LLF: 100.91362398318522
Optimization terminated successfully (Exit mode 0)
Current function value: 100.91362405763974
Iterations: 15
Function evaluations: 143
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 192.01100713442855
Iteration: 2, Func. Count: 22, Neg. LLF: 121.27213785763024
Iteration: 3, Func. Count: 33, Neg. LLF: 45726.680820590766
Iteration: 4, Func. Count: 44, Neg. LLF: 517.218182166421
Iteration: 5, Func. Count: 55, Neg. LLF: 112.67411645522975
Iteration: 6, Func. Count: 66, Neg. LLF: 101.7463670663338
Iteration: 7, Func. Count: 76, Neg. LLF: 105.44104002305609
Iteration: 8, Func. Count: 88, Neg. LLF: 136.26286048667225
Iteration: 9, Func. Count: 99, Neg. LLF: 100.93795481323356
Iteration: 10, Func. Count: 109, Neg. LLF: 101.00998682357147
Iteration: 11, Func. Count: 120, Neg. LLF: 100.87857143578074
Iteration: 12, Func. Count: 130, Neg. LLF: 100.86770329772122
Iteration: 13, Func. Count: 140, Neg. LLF: 100.8674436791121
Iteration: 14, Func. Count: 150, Neg. LLF: 100.8674269725505
Iteration: 15, Func. Count: 160, Neg. LLF: 100.86742218662683
Iteration: 16, Func. Count: 170, Neg. LLF: 100.8674195002342
Iteration: 17, Func. Count: 179, Neg. LLF: 100.86741942195279
Optimization terminated successfully (Exit mode 0)
Current function value: 100.8674195002342
Iterations: 17
Function evaluations: 179
Gradient evaluations: 17
Iteration: 1, Func. Count: 8, Neg. LLF: 168.30120241526848
Iteration: 2, Func. Count: 16, Neg. LLF: 111.58729674099258
Iteration: 3, Func. Count: 24, Neg. LLF: 114.5010319994238
Iteration: 4, Func. Count: 32, Neg. LLF: 226.89527791613335
Iteration: 5, Func. Count: 40, Neg. LLF: 318.2169708696862
Iteration: 6, Func. Count: 48, Neg. LLF: 254.83436027701643
Iteration: 7, Func. Count: 56, Neg. LLF: 15659.552886785106
Iteration: 8, Func. Count: 64, Neg. LLF: 204.27169509250317
Iteration: 9, Func. Count: 72, Neg. LLF: 107.2376839848674
Iteration: 10, Func. Count: 80, Neg. LLF: 101.12310194373755
Iteration: 11, Func. Count: 87, Neg. LLF: 100.72854414655151
Iteration: 12, Func. Count: 94, Neg. LLF: 100.6374103001422
Iteration: 13, Func. Count: 101, Neg. LLF: 100.55992947843038
Iteration: 14, Func. Count: 108, Neg. LLF: 100.45385464296139
Iteration: 15, Func. Count: 115, Neg. LLF: 100.36503514460513
Iteration: 16, Func. Count: 122, Neg. LLF: 100.29867347368423
Iteration: 17, Func. Count: 129, Neg. LLF: 100.28206103549472
Iteration: 18, Func. Count: 136, Neg. LLF: 100.28094475954316
Iteration: 19, Func. Count: 143, Neg. LLF: 100.28081823530226
Iteration: 20, Func. Count: 150, Neg. LLF: 100.28081668292583
Iteration: 21, Func. Count: 156, Neg. LLF: 100.28081666770782
Optimization terminated successfully (Exit mode 0)
Current function value: 100.28081668292583
Iterations: 21
Function evaluations: 156
Gradient evaluations: 21
Iteration: 1, Func. Count: 9, Neg. LLF: 427.7199917132085
Iteration: 2, Func. Count: 18, Neg. LLF: 327.4517630860971
Iteration: 3, Func. Count: 27, Neg. LLF: 4913.5679516701975
Iteration: 4, Func. Count: 36, Neg. LLF: 1623.0350197002942
Iteration: 5, Func. Count: 45, Neg. LLF: 1318.9327947019822
Iteration: 6, Func. Count: 54, Neg. LLF: 925.8351309476191
Iteration: 7, Func. Count: 63, Neg. LLF: 100.75478738811248
Iteration: 8, Func. Count: 71, Neg. LLF: 102.97891776415933
Iteration: 9, Func. Count: 80, Neg. LLF: 102.56184173523631
Iteration: 10, Func. Count: 89, Neg. LLF: 100.28205465288357
Iteration: 11, Func. Count: 97, Neg. LLF: 100.28084552079474
Iteration: 12, Func. Count: 105, Neg. LLF: 100.28081720250242
Iteration: 13, Func. Count: 112, Neg. LLF: 100.28081739093061
Optimization terminated successfully (Exit mode 0)
Current function value: 100.28081720250242
Iterations: 13
Function evaluations: 112
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 333.3898168126244
Iteration: 2, Func. Count: 20, Neg. LLF: 230.57449566610444
Iteration: 3, Func. Count: 30, Neg. LLF: 3488978.459648836
Iteration: 4, Func. Count: 40, Neg. LLF: 76203.20715922998
Iteration: 5, Func. Count: 50, Neg. LLF: 1023.948675825729
Iteration: 6, Func. Count: 60, Neg. LLF: 116.07078819927438
Iteration: 7, Func. Count: 70, Neg. LLF: 100.96176341797216
Iteration: 8, Func. Count: 79, Neg. LLF: 101.6208736781738
Iteration: 9, Func. Count: 89, Neg. LLF: 103.25736350867741
Iteration: 10, Func. Count: 99, Neg. LLF: 100.29058377916255
Iteration: 11, Func. Count: 108, Neg. LLF: 100.28534588682399
Iteration: 12, Func. Count: 117, Neg. LLF: 100.2809773879861
Iteration: 13, Func. Count: 126, Neg. LLF: 100.2808269770069
Iteration: 14, Func. Count: 135, Neg. LLF: 100.28081675699234
Iteration: 15, Func. Count: 143, Neg. LLF: 100.28081708003575
Optimization terminated successfully (Exit mode 0)
Current function value: 100.28081675699234
Iterations: 15
Function evaluations: 143
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 326.9511875829757
Iteration: 2, Func. Count: 22, Neg. LLF: 242.51616972090312
Iteration: 3, Func. Count: 33, Neg. LLF: 3649960.68526746
Iteration: 4, Func. Count: 44, Neg. LLF: 1349.0799043517115
Iteration: 5, Func. Count: 55, Neg. LLF: 1624526.2581373756
Iteration: 6, Func. Count: 66, Neg. LLF: 1737.517604496564
Iteration: 7, Func. Count: 77, Neg. LLF: 103.47860974073613
Iteration: 8, Func. Count: 87, Neg. LLF: 101.54463280245919
Iteration: 9, Func. Count: 97, Neg. LLF: 139.024153360113
Iteration: 10, Func. Count: 108, Neg. LLF: 109.63646652266928
Iteration: 11, Func. Count: 119, Neg. LLF: 101.23751692975331
Iteration: 12, Func. Count: 130, Neg. LLF: 100.37190053669528
Iteration: 13, Func. Count: 140, Neg. LLF: 100.1958385123716
Iteration: 14, Func. Count: 150, Neg. LLF: 100.15023084309271
Iteration: 15, Func. Count: 160, Neg. LLF: 100.12704999391477
Iteration: 16, Func. Count: 170, Neg. LLF: 100.12661052541732
Iteration: 17, Func. Count: 180, Neg. LLF: 100.12658840708747
Iteration: 18, Func. Count: 190, Neg. LLF: 100.12658570776858
Iteration: 19, Func. Count: 199, Neg. LLF: 100.12658566546591
Optimization terminated successfully (Exit mode 0)
Current function value: 100.12658570776858
Iterations: 19
Function evaluations: 199
Gradient evaluations: 19
Iteration: 1, Func. Count: 12, Neg. LLF: 329.2879834834828
Iteration: 2, Func. Count: 24, Neg. LLF: 267.1889123175258
Iteration: 3, Func. Count: 36, Neg. LLF: 3837034.5840444397
Iteration: 4, Func. Count: 48, Neg. LLF: 546.7653167168788
Iteration: 5, Func. Count: 60, Neg. LLF: 7751.438784811248
Iteration: 6, Func. Count: 72, Neg. LLF: 999.0186939068863
Iteration: 7, Func. Count: 84, Neg. LLF: 107.77549327236709
Iteration: 8, Func. Count: 96, Neg. LLF: 100.7079224935611
Iteration: 9, Func. Count: 107, Neg. LLF: 102.86499764573108
Iteration: 10, Func. Count: 119, Neg. LLF: 103.8799732328804
Iteration: 11, Func. Count: 132, Neg. LLF: 100.24059397068254
Iteration: 12, Func. Count: 143, Neg. LLF: 100.1878492298703
Iteration: 13, Func. Count: 154, Neg. LLF: 100.3218988213175
Iteration: 14, Func. Count: 166, Neg. LLF: 100.15415322334832
Iteration: 15, Func. Count: 177, Neg. LLF: 100.14971198468203
Iteration: 16, Func. Count: 188, Neg. LLF: 100.14435617265886
Iteration: 17, Func. Count: 199, Neg. LLF: 100.13428319726637
Iteration: 18, Func. Count: 210, Neg. LLF: 100.12838391981147
Iteration: 19, Func. Count: 221, Neg. LLF: 100.12662893814135
Iteration: 20, Func. Count: 232, Neg. LLF: 100.12658650337634
Iteration: 21, Func. Count: 243, Neg. LLF: 100.1265857014352
Optimization terminated successfully (Exit mode 0)
Current function value: 100.1265857014352
Iterations: 21
Function evaluations: 243
Gradient evaluations: 21
Iteration: 1, Func. Count: 9, Neg. LLF: 162.6993387381486
Iteration: 2, Func. Count: 18, Neg. LLF: 113.18764815223692
Iteration: 3, Func. Count: 27, Neg. LLF: 103.89160208286117
Iteration: 4, Func. Count: 35, Neg. LLF: 483.0046936362861
Iteration: 5, Func. Count: 44, Neg. LLF: 117.74722214452535
Iteration: 6, Func. Count: 55, Neg. LLF: 101.78796157969707
Iteration: 7, Func. Count: 64, Neg. LLF: 100.73311614696345
Iteration: 8, Func. Count: 72, Neg. LLF: 100.4878197988728
Iteration: 9, Func. Count: 80, Neg. LLF: 100.66583571174456
Iteration: 10, Func. Count: 89, Neg. LLF: 100.29783351308063
Iteration: 11, Func. Count: 97, Neg. LLF: 100.28523078241801
Iteration: 12, Func. Count: 105, Neg. LLF: 100.28085702986628
Iteration: 13, Func. Count: 113, Neg. LLF: 100.28081702547273
Iteration: 14, Func. Count: 120, Neg. LLF: 100.28081742163391
Optimization terminated successfully (Exit mode 0)
Current function value: 100.28081702547273
Iterations: 14
Function evaluations: 120
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 335.70652669525407
Iteration: 2, Func. Count: 20, Neg. LLF: 143.07257630246315
Iteration: 3, Func. Count: 30, Neg. LLF: 1660.225618364095
Iteration: 4, Func. Count: 40, Neg. LLF: 998.9596683953878
Iteration: 5, Func. Count: 50, Neg. LLF: 111.67050377748872
Iteration: 6, Func. Count: 60, Neg. LLF: 138.60508569793438
Iteration: 7, Func. Count: 70, Neg. LLF: 100.87608899108194
Iteration: 8, Func. Count: 79, Neg. LLF: 100.45055529649423
Iteration: 9, Func. Count: 88, Neg. LLF: 100.33709557457465
Iteration: 10, Func. Count: 97, Neg. LLF: 100.28098342184131
Iteration: 11, Func. Count: 106, Neg. LLF: 100.28082270213923
Iteration: 12, Func. Count: 115, Neg. LLF: 100.28081706699454
Iteration: 13, Func. Count: 123, Neg. LLF: 100.28081725554297
Optimization terminated successfully (Exit mode 0)
Current function value: 100.28081706699454
Iterations: 13
Function evaluations: 123
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 273.03464364021045
Iteration: 2, Func. Count: 22, Neg. LLF: 136.44132207982176
Iteration: 3, Func. Count: 33, Neg. LLF: 5035673.003496896
Iteration: 4, Func. Count: 44, Neg. LLF: 4075.3065731544602
Iteration: 5, Func. Count: 55, Neg. LLF: 1264.68965340009
Iteration: 6, Func. Count: 66, Neg. LLF: 101.8207518578811
Iteration: 7, Func. Count: 76, Neg. LLF: 100.5950258199288
Iteration: 8, Func. Count: 86, Neg. LLF: 100.96648192362267
Iteration: 9, Func. Count: 97, Neg. LLF: 100.31479554549486
Iteration: 10, Func. Count: 107, Neg. LLF: 100.28408038953017
Iteration: 11, Func. Count: 117, Neg. LLF: 100.28201686157622
Iteration: 12, Func. Count: 127, Neg. LLF: 100.28083711222759
Iteration: 13, Func. Count: 137, Neg. LLF: 100.28081980990785
Iteration: 14, Func. Count: 147, Neg. LLF: 100.28081666724529
Iteration: 15, Func. Count: 156, Neg. LLF: 100.28081699028152
Optimization terminated successfully (Exit mode 0)
Current function value: 100.28081666724529
Iterations: 15
Function evaluations: 156
Gradient evaluations: 15
Iteration: 1, Func. Count: 12, Neg. LLF: 263.763612390712
Iteration: 2, Func. Count: 24, Neg. LLF: 123.53622780836403
Iteration: 3, Func. Count: 36, Neg. LLF: 4951574.904342195
Iteration: 4, Func. Count: 48, Neg. LLF: 1960.5155195055486
Iteration: 5, Func. Count: 60, Neg. LLF: 1921.4412334999013
Iteration: 6, Func. Count: 72, Neg. LLF: 101.70729853853838
Iteration: 7, Func. Count: 83, Neg. LLF: 105.16864864462147
Iteration: 8, Func. Count: 95, Neg. LLF: 118.9968095572738
Iteration: 9, Func. Count: 108, Neg. LLF: 100.81166726165526
Iteration: 10, Func. Count: 120, Neg. LLF: 100.15019769536153
Iteration: 11, Func. Count: 131, Neg. LLF: 100.64388939273165
Iteration: 12, Func. Count: 143, Neg. LLF: 100.12799432635623
Iteration: 13, Func. Count: 154, Neg. LLF: 100.12666964507292
Iteration: 14, Func. Count: 165, Neg. LLF: 100.12658654388878
Iteration: 15, Func. Count: 176, Neg. LLF: 100.12658581240629
Optimization terminated successfully (Exit mode 0)
Current function value: 100.12658581240629
Iterations: 15
Function evaluations: 176
Gradient evaluations: 15
Iteration: 1, Func. Count: 13, Neg. LLF: 172.0993230542437
Iteration: 2, Func. Count: 26, Neg. LLF: 123.70559333625953
Iteration: 3, Func. Count: 39, Neg. LLF: 3585870.957071177
Iteration: 4, Func. Count: 52, Neg. LLF: 1030.5989633230438
Iteration: 5, Func. Count: 65, Neg. LLF: 1118.2687198695814
Iteration: 6, Func. Count: 78, Neg. LLF: 47674.082162982624
Iteration: 7, Func. Count: 91, Neg. LLF: 101.95029668896247
Iteration: 8, Func. Count: 103, Neg. LLF: 110.52593894037986
Iteration: 9, Func. Count: 118, Neg. LLF: 125.01629655096646
Iteration: 10, Func. Count: 133, Neg. LLF: 100.56424175150966
Iteration: 11, Func. Count: 145, Neg. LLF: 100.23081869177769
Iteration: 12, Func. Count: 157, Neg. LLF: 100.23707162407295
Iteration: 13, Func. Count: 170, Neg. LLF: 100.17660157492453
Iteration: 14, Func. Count: 182, Neg. LLF: 100.14593782899755
Iteration: 15, Func. Count: 194, Neg. LLF: 100.13956254215645
Iteration: 16, Func. Count: 206, Neg. LLF: 100.13394324725118
Iteration: 17, Func. Count: 218, Neg. LLF: 100.12938076074863
Iteration: 18, Func. Count: 230, Neg. LLF: 100.12820834129724
Iteration: 19, Func. Count: 242, Neg. LLF: 100.12746699848435
Iteration: 20, Func. Count: 254, Neg. LLF: 100.12687949055868
Iteration: 21, Func. Count: 266, Neg. LLF: 100.12663439061956
Iteration: 22, Func. Count: 278, Neg. LLF: 100.12658857240399
Iteration: 23, Func. Count: 290, Neg. LLF: 100.12658569283613
Iteration: 24, Func. Count: 301, Neg. LLF: 100.12658571411325
Optimization terminated successfully (Exit mode 0)
Current function value: 100.12658569283613
Iterations: 24
Function evaluations: 301
Gradient evaluations: 24
Iteration: 1, Func. Count: 10, Neg. LLF: 158.33598072363142
Iteration: 2, Func. Count: 20, Neg. LLF: 114.780412265275
Iteration: 3, Func. Count: 30, Neg. LLF: 102.95626427598599
Iteration: 4, Func. Count: 39, Neg. LLF: 104.35740493897208
Iteration: 5, Func. Count: 49, Neg. LLF: 113.95357256325741
Iteration: 6, Func. Count: 60, Neg. LLF: 100.28509195792999
Iteration: 7, Func. Count: 69, Neg. LLF: 100.28756494743715
Iteration: 8, Func. Count: 79, Neg. LLF: 100.28086360715189
Iteration: 9, Func. Count: 88, Neg. LLF: 100.28155129850599
Iteration: 10, Func. Count: 98, Neg. LLF: 100.28081733334972
Iteration: 11, Func. Count: 106, Neg. LLF: 100.28081754067638
Optimization terminated successfully (Exit mode 0)
Current function value: 100.28081733334972
Iterations: 11
Function evaluations: 106
Gradient evaluations: 11
Iteration: 1, Func. Count: 11, Neg. LLF: 296.38790478462545
Iteration: 2, Func. Count: 22, Neg. LLF: 473.9400923057037
Iteration: 3, Func. Count: 33, Neg. LLF: 358.329981309572
Iteration: 4, Func. Count: 44, Neg. LLF: 3519532.2449044036
Iteration: 5, Func. Count: 55, Neg. LLF: 333.1742688008834
Iteration: 6, Func. Count: 66, Neg. LLF: 2912.895153183383
Iteration: 7, Func. Count: 77, Neg. LLF: 100.90109022740829
Iteration: 8, Func. Count: 87, Neg. LLF: 109.1734576625355
Iteration: 9, Func. Count: 98, Neg. LLF: 101.50725096218686
Iteration: 10, Func. Count: 109, Neg. LLF: 100.28160676180389
Iteration: 11, Func. Count: 119, Neg. LLF: 100.28086560960868
Iteration: 12, Func. Count: 129, Neg. LLF: 100.28081997572035
Iteration: 13, Func. Count: 139, Neg. LLF: 100.28081687178386
Iteration: 14, Func. Count: 148, Neg. LLF: 100.28081706027993
Optimization terminated successfully (Exit mode 0)
Current function value: 100.28081687178386
Iterations: 14
Function evaluations: 148
Gradient evaluations: 14
Iteration: 1, Func. Count: 12, Neg. LLF: 241.77173709272148
Iteration: 2, Func. Count: 24, Neg. LLF: 177.67173274117624
Iteration: 3, Func. Count: 36, Neg. LLF: 2871932.0521523105
Iteration: 4, Func. Count: 48, Neg. LLF: 9506.76652890588
Iteration: 5, Func. Count: 60, Neg. LLF: 515.6664467850231
Iteration: 6, Func. Count: 72, Neg. LLF: 109.97422377428006
Iteration: 7, Func. Count: 84, Neg. LLF: 109.13843507616319
Iteration: 8, Func. Count: 96, Neg. LLF: 100.61773505234343
Iteration: 9, Func. Count: 107, Neg. LLF: 100.58976488187434
Iteration: 10, Func. Count: 119, Neg. LLF: 100.41404934498742
Iteration: 11, Func. Count: 130, Neg. LLF: 100.29228253054278
Iteration: 12, Func. Count: 141, Neg. LLF: 100.28231744783781
Iteration: 13, Func. Count: 152, Neg. LLF: 100.28083074308309
Iteration: 14, Func. Count: 163, Neg. LLF: 100.29383300193716
Iteration: 15, Func. Count: 176, Neg. LLF: 100.28098511612608
Iteration: 16, Func. Count: 188, Neg. LLF: 100.28083015278635
Optimization terminated successfully (Exit mode 0)
Current function value: 100.28081840538432
Iterations: 17
Function evaluations: 189
Gradient evaluations: 16
Iteration: 1, Func. Count: 13, Neg. LLF: 240.5960433909509
Iteration: 2, Func. Count: 26, Neg. LLF: 128.35349563878225
Iteration: 3, Func. Count: 39, Neg. LLF: 4915110.833701292
Iteration: 4, Func. Count: 52, Neg. LLF: 1358.4550526193857
Iteration: 5, Func. Count: 65, Neg. LLF: 10816.567002892789
Iteration: 6, Func. Count: 78, Neg. LLF: 102.04190145463531
Iteration: 7, Func. Count: 90, Neg. LLF: 100.99407516751172
Iteration: 8, Func. Count: 102, Neg. LLF: 101.97627218194027
Iteration: 9, Func. Count: 115, Neg. LLF: 103.28271538588845
Iteration: 10, Func. Count: 128, Neg. LLF: 100.25563926635058
Iteration: 11, Func. Count: 140, Neg. LLF: 100.32254573533956
Iteration: 12, Func. Count: 153, Neg. LLF: 100.15901015233341
Iteration: 13, Func. Count: 166, Neg. LLF: 100.13034990149771
Iteration: 14, Func. Count: 178, Neg. LLF: 100.12676623046814
Iteration: 15, Func. Count: 190, Neg. LLF: 100.12658840537642
Iteration: 16, Func. Count: 202, Neg. LLF: 100.12658569244023
Iteration: 17, Func. Count: 213, Neg. LLF: 100.12658565015283
Optimization terminated successfully (Exit mode 0)
Current function value: 100.12658569244023
Iterations: 17
Function evaluations: 213
Gradient evaluations: 17
Iteration: 1, Func. Count: 14, Neg. LLF: 171.74564271487793
Iteration: 2, Func. Count: 28, Neg. LLF: 123.74165889465677
Iteration: 3, Func. Count: 42, Neg. LLF: 3588773.4806420933
Iteration: 4, Func. Count: 56, Neg. LLF: 1084.4176606534577
Iteration: 5, Func. Count: 70, Neg. LLF: 1183.3986347073335
Iteration: 6, Func. Count: 84, Neg. LLF: 46602.1738836997
Iteration: 7, Func. Count: 98, Neg. LLF: 101.92542199142572
Iteration: 8, Func. Count: 111, Neg. LLF: 110.50814070933808
Iteration: 9, Func. Count: 127, Neg. LLF: 124.62791205301625
Iteration: 10, Func. Count: 143, Neg. LLF: 100.5633565568319
Iteration: 11, Func. Count: 156, Neg. LLF: 100.2291165236386
Iteration: 12, Func. Count: 169, Neg. LLF: 100.23577885811774
Iteration: 13, Func. Count: 183, Neg. LLF: 100.17658983835801
Iteration: 14, Func. Count: 196, Neg. LLF: 100.1458842690996
Iteration: 15, Func. Count: 209, Neg. LLF: 100.1394637081747
Iteration: 16, Func. Count: 222, Neg. LLF: 100.13368817600103
Iteration: 17, Func. Count: 235, Neg. LLF: 100.12935663230849
Iteration: 18, Func. Count: 248, Neg. LLF: 100.12818434709676
Iteration: 19, Func. Count: 261, Neg. LLF: 100.12746323208636
Iteration: 20, Func. Count: 274, Neg. LLF: 100.12688108245761
Iteration: 21, Func. Count: 287, Neg. LLF: 100.12663578131773
Iteration: 22, Func. Count: 300, Neg. LLF: 100.12658874008574
Iteration: 23, Func. Count: 313, Neg. LLF: 100.12658569694584
Iteration: 24, Func. Count: 325, Neg. LLF: 100.12658571822075
Optimization terminated successfully (Exit mode 0)
Current function value: 100.12658569694584
Iterations: 24
Function evaluations: 325
Gradient evaluations: 24
Iteration: 1, Func. Count: 7, Neg. LLF: 132.98702136701363
Iteration: 2, Func. Count: 14, Neg. LLF: 133.37321325488665
Iteration: 3, Func. Count: 21, Neg. LLF: 103.86376450437652
Iteration: 4, Func. Count: 27, Neg. LLF: 1959.891771236052
Iteration: 5, Func. Count: 34, Neg. LLF: 231.97881888978415
Iteration: 6, Func. Count: 41, Neg. LLF: 102.70887566600533
Iteration: 7, Func. Count: 48, Neg. LLF: 101.94335207212457
Iteration: 8, Func. Count: 54, Neg. LLF: 101.8722350264424
Iteration: 9, Func. Count: 60, Neg. LLF: 101.86466916096472
Iteration: 10, Func. Count: 66, Neg. LLF: 101.8618600365719
Iteration: 11, Func. Count: 72, Neg. LLF: 101.8616998476494
Iteration: 12, Func. Count: 78, Neg. LLF: 101.86169862271338
Iteration: 13, Func. Count: 83, Neg. LLF: 101.86169894957456
Optimization terminated successfully (Exit mode 0)
Current function value: 101.86169862271338
Iterations: 13
Function evaluations: 83
Gradient evaluations: 13
Iteration: 1, Func. Count: 8, Neg. LLF: 125.05603403360583
Iteration: 2, Func. Count: 16, Neg. LLF: 123.05531726042533
Iteration: 3, Func. Count: 24, Neg. LLF: 887.6112102254767
Iteration: 4, Func. Count: 32, Neg. LLF: 18692.851420236348
Iteration: 5, Func. Count: 40, Neg. LLF: 112.49648935499962
Iteration: 6, Func. Count: 48, Neg. LLF: 102.39635607010383
Iteration: 7, Func. Count: 55, Neg. LLF: 101.98663347916545
Iteration: 8, Func. Count: 62, Neg. LLF: 101.92066913716299
Iteration: 9, Func. Count: 69, Neg. LLF: 101.86190546083725
Iteration: 10, Func. Count: 76, Neg. LLF: 101.86173112239831
Iteration: 11, Func. Count: 83, Neg. LLF: 101.86170060353811
Iteration: 12, Func. Count: 90, Neg. LLF: 101.86169862505099
Iteration: 13, Func. Count: 96, Neg. LLF: 101.86169869651687
Optimization terminated successfully (Exit mode 0)
Current function value: 101.86169862505099
Iterations: 13
Function evaluations: 96
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 121.53052890331256
Iteration: 2, Func. Count: 18, Neg. LLF: 112.79843631089061
Iteration: 3, Func. Count: 27, Neg. LLF: 1448.0053380492732
Iteration: 4, Func. Count: 36, Neg. LLF: 218.2051747182141
Iteration: 5, Func. Count: 45, Neg. LLF: 150.96532839368953
Iteration: 6, Func. Count: 54, Neg. LLF: 195.50634205016524
Iteration: 7, Func. Count: 63, Neg. LLF: 102.8184480450468
Iteration: 8, Func. Count: 71, Neg. LLF: 101.88885116223646
Iteration: 9, Func. Count: 79, Neg. LLF: 101.88951317711566
Iteration: 10, Func. Count: 88, Neg. LLF: 101.86170730416391
Iteration: 11, Func. Count: 96, Neg. LLF: 101.86169998942223
Iteration: 12, Func. Count: 104, Neg. LLF: 101.8616986199417
Iteration: 13, Func. Count: 111, Neg. LLF: 101.86169888875418
Optimization terminated successfully (Exit mode 0)
Current function value: 101.8616986199417
Iterations: 13
Function evaluations: 111
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 123.37866603878214
Iteration: 2, Func. Count: 20, Neg. LLF: 109.74002162411313
Iteration: 3, Func. Count: 30, Neg. LLF: 311.70753119339525
Iteration: 4, Func. Count: 40, Neg. LLF: 236.83982346913717
Iteration: 5, Func. Count: 50, Neg. LLF: 387.57525296667353
Iteration: 6, Func. Count: 60, Neg. LLF: 244.72044713979602
Iteration: 7, Func. Count: 70, Neg. LLF: 108.12591163500264
Iteration: 8, Func. Count: 80, Neg. LLF: 102.09806922310831
Iteration: 9, Func. Count: 89, Neg. LLF: 103.06165832180538
Iteration: 10, Func. Count: 100, Neg. LLF: 123.38189687603882
Iteration: 11, Func. Count: 110, Neg. LLF: 101.74260595424438
Iteration: 12, Func. Count: 119, Neg. LLF: 101.72801819539427
Iteration: 13, Func. Count: 128, Neg. LLF: 101.7248030717185
Iteration: 14, Func. Count: 137, Neg. LLF: 101.72314111914056
Iteration: 15, Func. Count: 146, Neg. LLF: 101.72270594425243
Iteration: 16, Func. Count: 155, Neg. LLF: 101.7226873174527
Iteration: 17, Func. Count: 163, Neg. LLF: 101.72268724690481
Optimization terminated successfully (Exit mode 0)
Current function value: 101.7226873174527
Iterations: 17
Function evaluations: 163
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 126.52153670290784
Iteration: 2, Func. Count: 22, Neg. LLF: 110.09783618557094
Iteration: 3, Func. Count: 33, Neg. LLF: 28035.384632771944
Iteration: 4, Func. Count: 44, Neg. LLF: 138.98107616042392
Iteration: 5, Func. Count: 55, Neg. LLF: 12973.354470328166
Iteration: 6, Func. Count: 66, Neg. LLF: 569.0263161002032
Iteration: 7, Func. Count: 77, Neg. LLF: 297.13674850592537
Iteration: 8, Func. Count: 88, Neg. LLF: 107.26614384806737
Iteration: 9, Func. Count: 99, Neg. LLF: 101.88460364293644
Iteration: 10, Func. Count: 109, Neg. LLF: 102.20902258200576
Iteration: 11, Func. Count: 120, Neg. LLF: 105.30186368082414
Iteration: 12, Func. Count: 132, Neg. LLF: 101.62826583479722
Iteration: 13, Func. Count: 142, Neg. LLF: 101.55387562884769
Iteration: 14, Func. Count: 152, Neg. LLF: 101.52175596687725
Iteration: 15, Func. Count: 162, Neg. LLF: 101.5084030897135
Iteration: 16, Func. Count: 172, Neg. LLF: 101.50783304599366
Iteration: 17, Func. Count: 182, Neg. LLF: 101.50782571955044
Iteration: 18, Func. Count: 191, Neg. LLF: 101.50782564408253
Optimization terminated successfully (Exit mode 0)
Current function value: 101.50782571955044
Iterations: 18
Function evaluations: 191
Gradient evaluations: 18
Iteration: 1, Func. Count: 8, Neg. LLF: 154.00409675936965
Iteration: 2, Func. Count: 16, Neg. LLF: 124.5518003793346
Iteration: 3, Func. Count: 24, Neg. LLF: 103.05201208907623
Iteration: 4, Func. Count: 31, Neg. LLF: 890.0250870494352
Iteration: 5, Func. Count: 39, Neg. LLF: 174.84397580343273
Iteration: 6, Func. Count: 47, Neg. LLF: 102.49890108798562
Iteration: 7, Func. Count: 55, Neg. LLF: 101.01054776052574
Iteration: 8, Func. Count: 62, Neg. LLF: 101.00412751012225
Iteration: 9, Func. Count: 70, Neg. LLF: 100.98000242799057
Iteration: 10, Func. Count: 77, Neg. LLF: 100.97805304723754
Iteration: 11, Func. Count: 84, Neg. LLF: 100.97781328314575
Iteration: 12, Func. Count: 91, Neg. LLF: 100.9778059953473
Iteration: 13, Func. Count: 97, Neg. LLF: 100.97780603232735
Optimization terminated successfully (Exit mode 0)
Current function value: 100.9778059953473
Iterations: 13
Function evaluations: 97
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 162.59838661865317
Iteration: 2, Func. Count: 18, Neg. LLF: 125.37612806300032
Iteration: 3, Func. Count: 27, Neg. LLF: 15278.17719334025
Iteration: 4, Func. Count: 36, Neg. LLF: 133.56628546838576
Iteration: 5, Func. Count: 45, Neg. LLF: 274.188350347887
Iteration: 6, Func. Count: 54, Neg. LLF: 106.69508917229317
Iteration: 7, Func. Count: 63, Neg. LLF: 1742.663013281441
Iteration: 8, Func. Count: 72, Neg. LLF: 101.43651308317786
Iteration: 9, Func. Count: 80, Neg. LLF: 101.15649146944676
Iteration: 10, Func. Count: 88, Neg. LLF: 100.99754490760664
Iteration: 11, Func. Count: 96, Neg. LLF: 100.97828248528937
Iteration: 12, Func. Count: 104, Neg. LLF: 100.97819390397717
Iteration: 13, Func. Count: 113, Neg. LLF: 100.97781500125913
Iteration: 14, Func. Count: 121, Neg. LLF: 100.97780647554472
Iteration: 15, Func. Count: 128, Neg. LLF: 100.97780659266536
Optimization terminated successfully (Exit mode 0)
Current function value: 100.97780647554472
Iterations: 15
Function evaluations: 128
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 147.77499220872232
Iteration: 2, Func. Count: 20, Neg. LLF: 124.44110132088773
Iteration: 3, Func. Count: 30, Neg. LLF: 375.6818821574627
Iteration: 4, Func. Count: 40, Neg. LLF: 134.8232115155365
Iteration: 5, Func. Count: 50, Neg. LLF: 3543.8916637098546
Iteration: 6, Func. Count: 60, Neg. LLF: 106.85346214815014
Iteration: 7, Func. Count: 70, Neg. LLF: 607.8112412624042
Iteration: 8, Func. Count: 80, Neg. LLF: 101.31005918892316
Iteration: 9, Func. Count: 89, Neg. LLF: 101.13863938144792
Iteration: 10, Func. Count: 98, Neg. LLF: 101.03987665883031
Iteration: 11, Func. Count: 107, Neg. LLF: 101.00659838745833
Iteration: 12, Func. Count: 116, Neg. LLF: 100.98375482954934
Iteration: 13, Func. Count: 125, Neg. LLF: 100.97801854419369
Iteration: 14, Func. Count: 134, Neg. LLF: 100.97780502062588
Iteration: 15, Func. Count: 143, Neg. LLF: 100.9778033706278
Iteration: 16, Func. Count: 152, Neg. LLF: 100.97780640286237
Optimization terminated successfully (Exit mode 0)
Current function value: 100.97780351042188
Iterations: 17
Function evaluations: 154
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 144.18575307030147
Iteration: 2, Func. Count: 22, Neg. LLF: 123.59447170622609
Iteration: 3, Func. Count: 33, Neg. LLF: 285.08683744265625
Iteration: 4, Func. Count: 44, Neg. LLF: 144.55546974626873
Iteration: 5, Func. Count: 55, Neg. LLF: 6071.634174103365
Iteration: 6, Func. Count: 66, Neg. LLF: 1462.698589160105
Iteration: 7, Func. Count: 77, Neg. LLF: 103.68664788844578
Iteration: 8, Func. Count: 88, Neg. LLF: 150.63327591750328
Iteration: 9, Func. Count: 99, Neg. LLF: 101.26157894157735
Iteration: 10, Func. Count: 109, Neg. LLF: 116.96017403910123
Iteration: 11, Func. Count: 121, Neg. LLF: 100.99528572748497
Iteration: 12, Func. Count: 131, Neg. LLF: 100.92175142427877
Iteration: 13, Func. Count: 141, Neg. LLF: 100.91648479619946
Iteration: 14, Func. Count: 151, Neg. LLF: 100.91414872400216
Iteration: 15, Func. Count: 161, Neg. LLF: 100.91365004166383
Iteration: 16, Func. Count: 171, Neg. LLF: 100.91362388347946
Iteration: 17, Func. Count: 180, Neg. LLF: 100.91362380905274
Optimization terminated successfully (Exit mode 0)
Current function value: 100.91362388347946
Iterations: 17
Function evaluations: 180
Gradient evaluations: 17
Iteration: 1, Func. Count: 12, Neg. LLF: 136.2916522520601
Iteration: 2, Func. Count: 24, Neg. LLF: 117.30425157330842
Iteration: 3, Func. Count: 36, Neg. LLF: 305.47738438700964
Iteration: 4, Func. Count: 48, Neg. LLF: 2836.655780808765
Iteration: 5, Func. Count: 60, Neg. LLF: 166.02709932847128
Iteration: 6, Func. Count: 72, Neg. LLF: 698.8175786186413
Iteration: 7, Func. Count: 84, Neg. LLF: 223.0598030618622
Iteration: 8, Func. Count: 96, Neg. LLF: 240.1886292810534
Iteration: 9, Func. Count: 108, Neg. LLF: 151.67427292136492
Iteration: 10, Func. Count: 120, Neg. LLF: 151.93750301869613
Iteration: 11, Func. Count: 132, Neg. LLF: 101.98186606361841
Iteration: 12, Func. Count: 143, Neg. LLF: 124.32158873586476
Iteration: 13, Func. Count: 156, Neg. LLF: 117.10761573301103
Iteration: 14, Func. Count: 170, Neg. LLF: 101.40664555508279
Iteration: 15, Func. Count: 181, Neg. LLF: 100.98552270314413
Iteration: 16, Func. Count: 192, Neg. LLF: 100.88593351663823
Iteration: 17, Func. Count: 203, Neg. LLF: 100.87201053858244
Iteration: 18, Func. Count: 214, Neg. LLF: 100.86872349557798
Iteration: 19, Func. Count: 225, Neg. LLF: 100.86810491550716
Iteration: 20, Func. Count: 236, Neg. LLF: 100.867588623484
Iteration: 21, Func. Count: 247, Neg. LLF: 100.86745292661377
Iteration: 22, Func. Count: 258, Neg. LLF: 100.86742183242838
Iteration: 23, Func. Count: 269, Neg. LLF: 100.86741948532512
Iteration: 24, Func. Count: 279, Neg. LLF: 100.86741940694228
Optimization terminated successfully (Exit mode 0)
Current function value: 100.86741948532512
Iterations: 24
Function evaluations: 279
Gradient evaluations: 24
Iteration: 1, Func. Count: 9, Neg. LLF: 189.64853935270415
Iteration: 2, Func. Count: 18, Neg. LLF: 114.57450509279583
Iteration: 3, Func. Count: 27, Neg. LLF: 124.3193329897206
Iteration: 4, Func. Count: 36, Neg. LLF: 1208.2166105382366
Iteration: 5, Func. Count: 45, Neg. LLF: 1727.706473182042
Iteration: 6, Func. Count: 54, Neg. LLF: 1776.7999254386757
Iteration: 7, Func. Count: 63, Neg. LLF: 1073.6315974375377
Iteration: 8, Func. Count: 72, Neg. LLF: 185.29223743451465
Iteration: 9, Func. Count: 81, Neg. LLF: 425.40417233529826
Iteration: 10, Func. Count: 90, Neg. LLF: 193.3898475589603
Iteration: 11, Func. Count: 99, Neg. LLF: 248.50191629381916
Iteration: 12, Func. Count: 108, Neg. LLF: 101.95590347956077
Iteration: 13, Func. Count: 117, Neg. LLF: 100.31745884127314
Iteration: 14, Func. Count: 125, Neg. LLF: 100.28806974448071
Iteration: 15, Func. Count: 133, Neg. LLF: 100.28388642214023
Iteration: 16, Func. Count: 141, Neg. LLF: 100.28306964238702
Iteration: 17, Func. Count: 149, Neg. LLF: 100.28243960063251
Iteration: 18, Func. Count: 157, Neg. LLF: 100.28141468241458
Iteration: 19, Func. Count: 165, Neg. LLF: 100.28086137325059
Iteration: 20, Func. Count: 173, Neg. LLF: 100.28081857343412
Iteration: 21, Func. Count: 181, Neg. LLF: 100.28081665305534
Iteration: 22, Func. Count: 188, Neg. LLF: 100.28081663784018
Optimization terminated successfully (Exit mode 0)
Current function value: 100.28081665305534
Iterations: 22
Function evaluations: 188
Gradient evaluations: 22
Iteration: 1, Func. Count: 10, Neg. LLF: 201.51523908411835
Iteration: 2, Func. Count: 20, Neg. LLF: 128.87043864893184
Iteration: 3, Func. Count: 30, Neg. LLF: 32927.34411026907
Iteration: 4, Func. Count: 40, Neg. LLF: 207.31344192486947
Iteration: 5, Func. Count: 50, Neg. LLF: 4055244.529030367
Iteration: 6, Func. Count: 60, Neg. LLF: 1198.6156882917253
Iteration: 7, Func. Count: 70, Neg. LLF: 102.8677604765192
Iteration: 8, Func. Count: 79, Neg. LLF: 105.27036204010491
Iteration: 9, Func. Count: 89, Neg. LLF: 106.75778699801826
Iteration: 10, Func. Count: 99, Neg. LLF: 100.42896909700909
Iteration: 11, Func. Count: 108, Neg. LLF: 100.31367995654375
Iteration: 12, Func. Count: 117, Neg. LLF: 100.3628249566627
Iteration: 13, Func. Count: 127, Neg. LLF: 100.28727486184259
Iteration: 14, Func. Count: 136, Neg. LLF: 100.28103219913875
Iteration: 15, Func. Count: 145, Neg. LLF: 100.28082868366204
Iteration: 16, Func. Count: 154, Neg. LLF: 100.28081761032522
Iteration: 17, Func. Count: 163, Neg. LLF: 100.28081664497994
Optimization terminated successfully (Exit mode 0)
Current function value: 100.28081664497994
Iterations: 17
Function evaluations: 163
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 159.12673804799732
Iteration: 2, Func. Count: 22, Neg. LLF: 108.78564116138462
Iteration: 3, Func. Count: 32, Neg. LLF: 114.89156326493485
Iteration: 4, Func. Count: 43, Neg. LLF: 141.12756375893414
Iteration: 5, Func. Count: 54, Neg. LLF: 148.8669039842097
Iteration: 6, Func. Count: 65, Neg. LLF: 120.35079399450424
Iteration: 7, Func. Count: 76, Neg. LLF: 104.47571569444638
Iteration: 8, Func. Count: 87, Neg. LLF: 100.30864483358963
Iteration: 9, Func. Count: 97, Neg. LLF: 100.2881168085671
Iteration: 10, Func. Count: 107, Neg. LLF: 100.2828072467876
Iteration: 11, Func. Count: 117, Neg. LLF: 100.28159398966017
Iteration: 12, Func. Count: 127, Neg. LLF: 100.28117738482443
Iteration: 13, Func. Count: 137, Neg. LLF: 100.28084930887232
Iteration: 14, Func. Count: 147, Neg. LLF: 100.28081899208219
Iteration: 15, Func. Count: 157, Neg. LLF: 100.28081670081782
Iteration: 16, Func. Count: 166, Neg. LLF: 100.28081702386059
Optimization terminated successfully (Exit mode 0)
Current function value: 100.28081670081782
Iterations: 16
Function evaluations: 166
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 153.58592587682855
Iteration: 2, Func. Count: 24, Neg. LLF: 108.34344737845574
Iteration: 3, Func. Count: 35, Neg. LLF: 158.1528047804809
Iteration: 4, Func. Count: 47, Neg. LLF: 148.31319788007184
Iteration: 5, Func. Count: 60, Neg. LLF: 349.23100917186434
Iteration: 6, Func. Count: 72, Neg. LLF: 4197.1935866629165
Iteration: 7, Func. Count: 84, Neg. LLF: 108.11070206935068
Iteration: 8, Func. Count: 96, Neg. LLF: 100.33497748795237
Iteration: 9, Func. Count: 107, Neg. LLF: 120.96871345094439
Iteration: 10, Func. Count: 119, Neg. LLF: 102.60336932423637
Iteration: 11, Func. Count: 132, Neg. LLF: 100.14428686191872
Iteration: 12, Func. Count: 143, Neg. LLF: 100.13052306124861
Iteration: 13, Func. Count: 154, Neg. LLF: 100.12672158194589
Iteration: 14, Func. Count: 165, Neg. LLF: 100.12659453825127
Iteration: 15, Func. Count: 176, Neg. LLF: 100.12658939702679
Iteration: 16, Func. Count: 187, Neg. LLF: 100.12658598341703
Iteration: 17, Func. Count: 197, Neg. LLF: 100.12658594104946
Optimization terminated successfully (Exit mode 0)
Current function value: 100.12658598341703
Iterations: 17
Function evaluations: 197
Gradient evaluations: 17
Iteration: 1, Func. Count: 13, Neg. LLF: 166.70370738206518
Iteration: 2, Func. Count: 26, Neg. LLF: 108.81228210160864
Iteration: 3, Func. Count: 38, Neg. LLF: 120.59778588376027
Iteration: 4, Func. Count: 51, Neg. LLF: 145.23843336352513
Iteration: 5, Func. Count: 65, Neg. LLF: 178.59333316362608
Iteration: 6, Func. Count: 78, Neg. LLF: 119.32548758993161
Iteration: 7, Func. Count: 91, Neg. LLF: 101.3092876797696
Iteration: 8, Func. Count: 103, Neg. LLF: 101.82278235877394
Iteration: 9, Func. Count: 116, Neg. LLF: 100.41464413347771
Iteration: 10, Func. Count: 128, Neg. LLF: 100.26877036360511
Iteration: 11, Func. Count: 140, Neg. LLF: 100.16779553413255
Iteration: 12, Func. Count: 152, Neg. LLF: 100.13906519737299
Iteration: 13, Func. Count: 164, Neg. LLF: 100.12837591195157
Iteration: 14, Func. Count: 176, Neg. LLF: 100.12688146443536
Iteration: 15, Func. Count: 188, Neg. LLF: 100.12659592138927
Iteration: 16, Func. Count: 200, Neg. LLF: 100.12658593166444
Iteration: 17, Func. Count: 211, Neg. LLF: 100.12658595293779
Optimization terminated successfully (Exit mode 0)
Current function value: 100.12658593166444
Iterations: 17
Function evaluations: 211
Gradient evaluations: 17
Iteration: 1, Func. Count: 10, Neg. LLF: 153.0035102663604
Iteration: 2, Func. Count: 20, Neg. LLF: 121.23167424910639
Iteration: 3, Func. Count: 30, Neg. LLF: 107.61952639250805
Iteration: 4, Func. Count: 40, Neg. LLF: 284.64333355861766
Iteration: 5, Func. Count: 50, Neg. LLF: 1478.2749722964531
Iteration: 6, Func. Count: 60, Neg. LLF: 389.9127471361561
Iteration: 7, Func. Count: 70, Neg. LLF: 1908.2262130295458
Iteration: 8, Func. Count: 80, Neg. LLF: 458.1956619124288
Iteration: 9, Func. Count: 90, Neg. LLF: 216.71549892508642
Iteration: 10, Func. Count: 100, Neg. LLF: 102.79989389456742
Iteration: 11, Func. Count: 110, Neg. LLF: 100.50643069510636
Iteration: 12, Func. Count: 119, Neg. LLF: 100.40135873321402
Iteration: 13, Func. Count: 128, Neg. LLF: 100.37227266593338
Iteration: 14, Func. Count: 137, Neg. LLF: 100.32268145277591
Iteration: 15, Func. Count: 146, Neg. LLF: 100.28584214539725
Iteration: 16, Func. Count: 155, Neg. LLF: 100.2813039617737
Iteration: 17, Func. Count: 164, Neg. LLF: 100.28089376710028
Iteration: 18, Func. Count: 173, Neg. LLF: 100.28081669793676
Iteration: 19, Func. Count: 181, Neg. LLF: 100.28081709414643
Optimization terminated successfully (Exit mode 0)
Current function value: 100.28081669793676
Iterations: 19
Function evaluations: 181
Gradient evaluations: 19
Iteration: 1, Func. Count: 11, Neg. LLF: 170.51752583007783
Iteration: 2, Func. Count: 22, Neg. LLF: 122.2180980471561
Iteration: 3, Func. Count: 33, Neg. LLF: 1013.7136072244075
Iteration: 4, Func. Count: 44, Neg. LLF: 266.1207671320918
Iteration: 5, Func. Count: 55, Neg. LLF: 385.495068173313
Iteration: 6, Func. Count: 66, Neg. LLF: 1239.8661086698025
Iteration: 7, Func. Count: 77, Neg. LLF: 102.31966941837085
Iteration: 8, Func. Count: 87, Neg. LLF: 100.9380500463473
Iteration: 9, Func. Count: 97, Neg. LLF: 108.76304648268666
Iteration: 10, Func. Count: 109, Neg. LLF: 100.31996733139768
Iteration: 11, Func. Count: 119, Neg. LLF: 100.29313855342652
Iteration: 12, Func. Count: 129, Neg. LLF: 100.2815445748211
Iteration: 13, Func. Count: 139, Neg. LLF: 100.28084825128809
Iteration: 14, Func. Count: 149, Neg. LLF: 100.28082035700584
Iteration: 15, Func. Count: 159, Neg. LLF: 100.28081678692517
Iteration: 16, Func. Count: 168, Neg. LLF: 100.28081697545595
Optimization terminated successfully (Exit mode 0)
Current function value: 100.28081678692517
Iterations: 16
Function evaluations: 168
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 158.0096397666884
Iteration: 2, Func. Count: 24, Neg. LLF: 120.73126749975992
Iteration: 3, Func. Count: 36, Neg. LLF: 4067620.4335459913
Iteration: 4, Func. Count: 48, Neg. LLF: 179.5317539036752
Iteration: 5, Func. Count: 60, Neg. LLF: 1363.3991620949582
Iteration: 6, Func. Count: 72, Neg. LLF: 118.1889787321539
Iteration: 7, Func. Count: 84, Neg. LLF: 101.33193890690521
Iteration: 8, Func. Count: 95, Neg. LLF: 100.65625612886875
Iteration: 9, Func. Count: 106, Neg. LLF: 101.03331104745874
Iteration: 10, Func. Count: 118, Neg. LLF: 100.28694625042728
Iteration: 11, Func. Count: 129, Neg. LLF: 100.28164512964827
Iteration: 12, Func. Count: 140, Neg. LLF: 100.28101235660338
Iteration: 13, Func. Count: 151, Neg. LLF: 100.28081699698534
Iteration: 14, Func. Count: 161, Neg. LLF: 100.28081732006092
Optimization terminated successfully (Exit mode 0)
Current function value: 100.28081699698534
Iterations: 14
Function evaluations: 161
Gradient evaluations: 14
Iteration: 1, Func. Count: 13, Neg. LLF: 130.61102292344694
Iteration: 2, Func. Count: 26, Neg. LLF: 111.71848132631612
Iteration: 3, Func. Count: 39, Neg. LLF: 5072024.050080918
Iteration: 4, Func. Count: 52, Neg. LLF: 343.4940302523937
Iteration: 5, Func. Count: 65, Neg. LLF: 384.9980488650782
Iteration: 6, Func. Count: 78, Neg. LLF: 855.7205103337564
Iteration: 7, Func. Count: 91, Neg. LLF: 127.65790480898404
Iteration: 8, Func. Count: 104, Neg. LLF: 92621.86215969667
Iteration: 9, Func. Count: 117, Neg. LLF: 139.58499547747238
Iteration: 10, Func. Count: 130, Neg. LLF: 121.92244143244572
Iteration: 11, Func. Count: 143, Neg. LLF: 101.41034065161455
Iteration: 12, Func. Count: 155, Neg. LLF: 100.80261211459182
Iteration: 13, Func. Count: 167, Neg. LLF: 140.45491393511327
Iteration: 14, Func. Count: 180, Neg. LLF: 100.3856994526429
Iteration: 15, Func. Count: 192, Neg. LLF: 100.181692495457
Iteration: 16, Func. Count: 204, Neg. LLF: 100.98675266545443
Iteration: 17, Func. Count: 217, Neg. LLF: 100.13071036862847
Iteration: 18, Func. Count: 229, Neg. LLF: 100.12752342807528
Iteration: 19, Func. Count: 241, Neg. LLF: 100.12669616556734
Iteration: 20, Func. Count: 253, Neg. LLF: 100.12659103461195
Iteration: 21, Func. Count: 265, Neg. LLF: 100.12658575605255
Iteration: 22, Func. Count: 276, Neg. LLF: 100.12658571385961
Optimization terminated successfully (Exit mode 0)
Current function value: 100.12658575605255
Iterations: 22
Function evaluations: 276
Gradient evaluations: 22
Iteration: 1, Func. Count: 14, Neg. LLF: 132.7820068252409
Iteration: 2, Func. Count: 28, Neg. LLF: 111.21119094508155
Iteration: 3, Func. Count: 42, Neg. LLF: 841.6355629334247
Iteration: 4, Func. Count: 56, Neg. LLF: 414.4956218888941
Iteration: 5, Func. Count: 70, Neg. LLF: 412.0211365220796
Iteration: 6, Func. Count: 84, Neg. LLF: 912.7545173825698
Iteration: 7, Func. Count: 98, Neg. LLF: 126.00148430227027
Iteration: 8, Func. Count: 112, Neg. LLF: 2017.6903765499756
Iteration: 9, Func. Count: 126, Neg. LLF: 148.05902455545058
Iteration: 10, Func. Count: 140, Neg. LLF: 109.0671662209258
Iteration: 11, Func. Count: 154, Neg. LLF: 102.09313118918426
Iteration: 12, Func. Count: 168, Neg. LLF: 100.5956334965802
Iteration: 13, Func. Count: 181, Neg. LLF: 100.30360219332363
Iteration: 14, Func. Count: 194, Neg. LLF: 100.4180826266869
Iteration: 15, Func. Count: 208, Neg. LLF: 101.88239608242888
Iteration: 16, Func. Count: 222, Neg. LLF: 100.1292055639577
Iteration: 17, Func. Count: 235, Neg. LLF: 100.12697370397332
Iteration: 18, Func. Count: 248, Neg. LLF: 100.1265919648965
Iteration: 19, Func. Count: 261, Neg. LLF: 100.12658652843686
Iteration: 20, Func. Count: 274, Neg. LLF: 100.12658577672069
Optimization terminated successfully (Exit mode 0)
Current function value: 100.12658577672069
Iterations: 20
Function evaluations: 274
Gradient evaluations: 20
Iteration: 1, Func. Count: 11, Neg. LLF: 142.15363808469738
Iteration: 2, Func. Count: 22, Neg. LLF: 122.0513270637091
Iteration: 3, Func. Count: 33, Neg. LLF: 110.53748323632333
Iteration: 4, Func. Count: 44, Neg. LLF: 3496584.5566940266
Iteration: 5, Func. Count: 55, Neg. LLF: 446.17985132596664
Iteration: 6, Func. Count: 66, Neg. LLF: 660.4699133833835
Iteration: 7, Func. Count: 77, Neg. LLF: 427.15018061834184
Iteration: 8, Func. Count: 88, Neg. LLF: 1023.570185634888
Iteration: 9, Func. Count: 99, Neg. LLF: 263.83726638046807
Iteration: 10, Func. Count: 110, Neg. LLF: 30334.851723304284
Iteration: 11, Func. Count: 121, Neg. LLF: 125.99686015662594
Iteration: 12, Func. Count: 132, Neg. LLF: 101.18527727240428
Iteration: 13, Func. Count: 142, Neg. LLF: 100.40812509060166
Iteration: 14, Func. Count: 152, Neg. LLF: 100.33875718490063
Iteration: 15, Func. Count: 162, Neg. LLF: 100.29968067593168
Iteration: 16, Func. Count: 172, Neg. LLF: 100.29500752549086
Iteration: 17, Func. Count: 182, Neg. LLF: 100.28470858569713
Iteration: 18, Func. Count: 192, Neg. LLF: 100.28151220272841
Iteration: 19, Func. Count: 202, Neg. LLF: 100.28085834113193
Iteration: 20, Func. Count: 212, Neg. LLF: 100.28082119864285
Iteration: 21, Func. Count: 222, Neg. LLF: 100.28081664980292
Iteration: 22, Func. Count: 231, Neg. LLF: 100.28081685708321
Optimization terminated successfully (Exit mode 0)
Current function value: 100.28081664980292
Iterations: 22
Function evaluations: 231
Gradient evaluations: 22
Iteration: 1, Func. Count: 12, Neg. LLF: 153.27621501032388
Iteration: 2, Func. Count: 24, Neg. LLF: 121.02563071446664
Iteration: 3, Func. Count: 36, Neg. LLF: 285.5654857226231
Iteration: 4, Func. Count: 48, Neg. LLF: 590.5171708626043
Iteration: 5, Func. Count: 60, Neg. LLF: 3515284.1882740716
Iteration: 6, Func. Count: 72, Neg. LLF: 421.97556771071504
Iteration: 7, Func. Count: 84, Neg. LLF: 234.81513509456056
Iteration: 8, Func. Count: 96, Neg. LLF: 101.63520809924917
Iteration: 9, Func. Count: 107, Neg. LLF: 100.46871305590707
Iteration: 10, Func. Count: 118, Neg. LLF: 100.9607535586693
Iteration: 11, Func. Count: 130, Neg. LLF: 100.28754582964282
Iteration: 12, Func. Count: 141, Neg. LLF: 100.28399406062249
Iteration: 13, Func. Count: 152, Neg. LLF: 100.28125364967251
Iteration: 14, Func. Count: 163, Neg. LLF: 100.2809087327552
Iteration: 15, Func. Count: 174, Neg. LLF: 100.28081901176738
Iteration: 16, Func. Count: 185, Neg. LLF: 100.28081664801452
Iteration: 17, Func. Count: 195, Neg. LLF: 100.28081683652641
Optimization terminated successfully (Exit mode 0)
Current function value: 100.28081664801452
Iterations: 17
Function evaluations: 195
Gradient evaluations: 17
Iteration: 1, Func. Count: 13, Neg. LLF: 145.08076208124226
Iteration: 2, Func. Count: 26, Neg. LLF: 106.60876731601795
Iteration: 3, Func. Count: 38, Neg. LLF: 113.53058578227008
Iteration: 4, Func. Count: 51, Neg. LLF: 147.90012107089078
Iteration: 5, Func. Count: 65, Neg. LLF: 200.261588553644
Iteration: 6, Func. Count: 78, Neg. LLF: 100.63423039694204
Iteration: 7, Func. Count: 90, Neg. LLF: 100.3708240574723
Iteration: 8, Func. Count: 102, Neg. LLF: 100.30553402473248
Iteration: 9, Func. Count: 114, Neg. LLF: 100.2917204027415
Iteration: 10, Func. Count: 126, Neg. LLF: 100.28534095998403
Iteration: 11, Func. Count: 138, Neg. LLF: 100.28358389302586
Iteration: 12, Func. Count: 150, Neg. LLF: 100.28096583026696
Iteration: 13, Func. Count: 162, Neg. LLF: 100.28082818295542
Iteration: 14, Func. Count: 174, Neg. LLF: 100.28081672555258
Iteration: 15, Func. Count: 185, Neg. LLF: 100.28081704857313
Optimization terminated successfully (Exit mode 0)
Current function value: 100.28081672555258
Iterations: 15
Function evaluations: 185
Gradient evaluations: 15
Iteration: 1, Func. Count: 14, Neg. LLF: 123.122242675444
Iteration: 2, Func. Count: 28, Neg. LLF: 110.92834125042337
Iteration: 3, Func. Count: 42, Neg. LLF: 353.22942322821297
Iteration: 4, Func. Count: 56, Neg. LLF: 1175.518567244245
Iteration: 5, Func. Count: 70, Neg. LLF: 727.8356218653794
Iteration: 6, Func. Count: 84, Neg. LLF: 1062.0725567683353
Iteration: 7, Func. Count: 98, Neg. LLF: 116.8587454759753
Iteration: 8, Func. Count: 112, Neg. LLF: 810.9284128168094
Iteration: 9, Func. Count: 126, Neg. LLF: 140.93978091360552
Iteration: 10, Func. Count: 140, Neg. LLF: 104.52909151418925
Iteration: 11, Func. Count: 154, Neg. LLF: 100.61964462562986
Iteration: 12, Func. Count: 167, Neg. LLF: 100.413738285045
Iteration: 13, Func. Count: 180, Neg. LLF: 103.72874535595123
Iteration: 14, Func. Count: 195, Neg. LLF: 100.66731544490227
Iteration: 15, Func. Count: 209, Neg. LLF: 100.17925665750882
Iteration: 16, Func. Count: 222, Neg. LLF: 100.13445629957143
Iteration: 17, Func. Count: 235, Neg. LLF: 100.1274013449123
Iteration: 18, Func. Count: 248, Neg. LLF: 100.12677109275107
Iteration: 19, Func. Count: 261, Neg. LLF: 100.12663073822148
Iteration: 20, Func. Count: 274, Neg. LLF: 100.12658662691231
Iteration: 21, Func. Count: 287, Neg. LLF: 100.1265856915372
Optimization terminated successfully (Exit mode 0)
Current function value: 100.1265856915372
Iterations: 21
Function evaluations: 287
Gradient evaluations: 21
Iteration: 1, Func. Count: 15, Neg. LLF: 125.14062383896356
Iteration: 2, Func. Count: 30, Neg. LLF: 108.22402960036351
Iteration: 3, Func. Count: 45, Neg. LLF: 4666465.277775782
Iteration: 4, Func. Count: 60, Neg. LLF: 404.222483112641
Iteration: 5, Func. Count: 75, Neg. LLF: 775.9367485184326
Iteration: 6, Func. Count: 90, Neg. LLF: 1074.851582316668
Iteration: 7, Func. Count: 105, Neg. LLF: 103.9130738189725
Iteration: 8, Func. Count: 120, Neg. LLF: 100.42587416782953
Iteration: 9, Func. Count: 134, Neg. LLF: 101.2226113586978
Iteration: 10, Func. Count: 150, Neg. LLF: 103.46128627812448
Iteration: 11, Func. Count: 166, Neg. LLF: 100.49085523529911
Iteration: 12, Func. Count: 181, Neg. LLF: 100.13147285352389
Iteration: 13, Func. Count: 195, Neg. LLF: 100.12775591465295
Iteration: 14, Func. Count: 209, Neg. LLF: 100.12685076794361
Iteration: 15, Func. Count: 223, Neg. LLF: 100.1266431873998
Iteration: 16, Func. Count: 237, Neg. LLF: 100.1265899284746
Iteration: 17, Func. Count: 251, Neg. LLF: 100.12658579887135
Iteration: 18, Func. Count: 264, Neg. LLF: 100.12658582025719
Optimization terminated successfully (Exit mode 0)
Current function value: 100.12658579887135
Iterations: 18
Function evaluations: 264
Gradient evaluations: 18
Iteration: 1, Func. Count: 8, Neg. LLF: 122.9791793826258
Iteration: 2, Func. Count: 16, Neg. LLF: 138.45766347147068
Iteration: 3, Func. Count: 24, Neg. LLF: 104.69982060411
Iteration: 4, Func. Count: 31, Neg. LLF: 108.01105070739104
Iteration: 5, Func. Count: 40, Neg. LLF: 112.06062107023592
Iteration: 6, Func. Count: 48, Neg. LLF: 102.32338906342352
Iteration: 7, Func. Count: 56, Neg. LLF: 101.90419844037967
Iteration: 8, Func. Count: 63, Neg. LLF: 101.8716219690478
Iteration: 9, Func. Count: 70, Neg. LLF: 101.86203366360917
Iteration: 10, Func. Count: 77, Neg. LLF: 101.86170053720085
Iteration: 11, Func. Count: 84, Neg. LLF: 101.86169865256036
Iteration: 12, Func. Count: 90, Neg. LLF: 101.86169882992726
Optimization terminated successfully (Exit mode 0)
Current function value: 101.86169865256036
Iterations: 12
Function evaluations: 90
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 112.00899040075902
Iteration: 2, Func. Count: 18, Neg. LLF: 128.68940626209059
Iteration: 3, Func. Count: 27, Neg. LLF: 496.19657279272485
Iteration: 4, Func. Count: 36, Neg. LLF: 667.2555087937899
Iteration: 5, Func. Count: 45, Neg. LLF: 1175118.4471407447
Iteration: 6, Func. Count: 54, Neg. LLF: 11448.900828798216
Iteration: 7, Func. Count: 63, Neg. LLF: 104.22269408548279
Iteration: 8, Func. Count: 72, Neg. LLF: 101.89890798435378
Iteration: 9, Func. Count: 80, Neg. LLF: 101.87481348753032
Iteration: 10, Func. Count: 88, Neg. LLF: 101.86205532709637
Iteration: 11, Func. Count: 96, Neg. LLF: 101.86171599373459
Iteration: 12, Func. Count: 104, Neg. LLF: 101.86169879014126
Iteration: 13, Func. Count: 111, Neg. LLF: 101.86169886160954
Optimization terminated successfully (Exit mode 0)
Current function value: 101.86169879014126
Iterations: 13
Function evaluations: 111
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 120.31970093298914
Iteration: 2, Func. Count: 23, Neg. LLF: 121.50516576738328
Iteration: 3, Func. Count: 33, Neg. LLF: 113.64458785434772
Iteration: 4, Func. Count: 43, Neg. LLF: 151.49131741909986
Iteration: 5, Func. Count: 54, Neg. LLF: 102.25453172691843
Iteration: 6, Func. Count: 63, Neg. LLF: 102.34418269912952
Iteration: 7, Func. Count: 73, Neg. LLF: 102.15301441730566
Iteration: 8, Func. Count: 82, Neg. LLF: 101.95832862183963
Iteration: 9, Func. Count: 91, Neg. LLF: 101.89393888253983
Iteration: 10, Func. Count: 100, Neg. LLF: 101.86045088528427
Iteration: 11, Func. Count: 109, Neg. LLF: 103.32671277728282
Iteration: 12, Func. Count: 120, Neg. LLF: 101.91220198006035
Iteration: 13, Func. Count: 130, Neg. LLF: 101.8626912560866
Iteration: 14, Func. Count: 140, Neg. LLF: 101.86169879373928
Iteration: 15, Func. Count: 148, Neg. LLF: 101.86169906251092
Optimization terminated successfully (Exit mode 0)
Current function value: 101.86169879373928
Iterations: 16
Function evaluations: 148
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 123.30022730276386
Iteration: 2, Func. Count: 25, Neg. LLF: 139.4693256922656
Iteration: 3, Func. Count: 36, Neg. LLF: 106.95908328459163
Iteration: 4, Func. Count: 46, Neg. LLF: 118.07773597477113
Iteration: 5, Func. Count: 57, Neg. LLF: 240.2201727563374
Iteration: 6, Func. Count: 70, Neg. LLF: 109.84430896727494
Iteration: 7, Func. Count: 82, Neg. LLF: 110.3245640411567
Iteration: 8, Func. Count: 93, Neg. LLF: 101.82198441552282
Iteration: 9, Func. Count: 103, Neg. LLF: 101.77771278131482
Iteration: 10, Func. Count: 113, Neg. LLF: 101.739678137547
Iteration: 11, Func. Count: 123, Neg. LLF: 101.72415813160517
Iteration: 12, Func. Count: 133, Neg. LLF: 101.72328182850269
Iteration: 13, Func. Count: 143, Neg. LLF: 101.72296284574084
Iteration: 14, Func. Count: 153, Neg. LLF: 101.72274177197409
Iteration: 15, Func. Count: 163, Neg. LLF: 101.72269156408862
Iteration: 16, Func. Count: 173, Neg. LLF: 101.7226870141204
Iteration: 17, Func. Count: 182, Neg. LLF: 101.72268694374449
Optimization terminated successfully (Exit mode 0)
Current function value: 101.7226870141204
Iterations: 17
Function evaluations: 182
Gradient evaluations: 17
Iteration: 1, Func. Count: 12, Neg. LLF: 125.85062416684396
Iteration: 2, Func. Count: 27, Neg. LLF: 127.93656108751982
Iteration: 3, Func. Count: 39, Neg. LLF: 123.39265618980747
Iteration: 4, Func. Count: 51, Neg. LLF: 135.48117259704165
Iteration: 5, Func. Count: 63, Neg. LLF: 1233.8119500336174
Iteration: 6, Func. Count: 76, Neg. LLF: 14031.78651977158
Iteration: 7, Func. Count: 88, Neg. LLF: 666.0365206292214
Iteration: 8, Func. Count: 100, Neg. LLF: 120.04884433259066
Iteration: 9, Func. Count: 112, Neg. LLF: 111.3218727327996
Iteration: 10, Func. Count: 124, Neg. LLF: 103.22424232379588
Iteration: 11, Func. Count: 135, Neg. LLF: 103.15054663221038
Iteration: 12, Func. Count: 147, Neg. LLF: 108.82926596702659
Iteration: 13, Func. Count: 159, Neg. LLF: 101.94284154294647
Iteration: 14, Func. Count: 170, Neg. LLF: 101.63065871261554
Iteration: 15, Func. Count: 181, Neg. LLF: 101.55666356473243
Iteration: 16, Func. Count: 192, Neg. LLF: 101.51825840779675
Iteration: 17, Func. Count: 203, Neg. LLF: 101.51123982107828
Iteration: 18, Func. Count: 214, Neg. LLF: 101.5092734163033
Iteration: 19, Func. Count: 225, Neg. LLF: 101.50800689736661
Iteration: 20, Func. Count: 236, Neg. LLF: 101.50782855525917
Iteration: 21, Func. Count: 247, Neg. LLF: 101.50782562953877
Iteration: 22, Func. Count: 257, Neg. LLF: 101.50782555413966
Optimization terminated successfully (Exit mode 0)
Current function value: 101.50782562953877
Iterations: 22
Function evaluations: 257
Gradient evaluations: 22
Iteration: 1, Func. Count: 9, Neg. LLF: 141.60978583129906
Iteration: 2, Func. Count: 18, Neg. LLF: 132.2693155448157
Iteration: 3, Func. Count: 27, Neg. LLF: 102.9650934876483
Iteration: 4, Func. Count: 35, Neg. LLF: 179.41287162077796
Iteration: 5, Func. Count: 44, Neg. LLF: 189.27143961087998
Iteration: 6, Func. Count: 53, Neg. LLF: 102.09516021871188
Iteration: 7, Func. Count: 62, Neg. LLF: 101.00197932212882
Iteration: 8, Func. Count: 70, Neg. LLF: 100.9881121313241
Iteration: 9, Func. Count: 78, Neg. LLF: 100.97983943519395
Iteration: 10, Func. Count: 86, Neg. LLF: 100.97834582654636
Iteration: 11, Func. Count: 94, Neg. LLF: 100.97784649034323
Iteration: 12, Func. Count: 102, Neg. LLF: 100.97780618247212
Iteration: 13, Func. Count: 109, Neg. LLF: 100.97780621946882
Optimization terminated successfully (Exit mode 0)
Current function value: 100.97780618247212
Iterations: 13
Function evaluations: 109
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 134.76493261381475
Iteration: 2, Func. Count: 20, Neg. LLF: 131.89312759359188
Iteration: 3, Func. Count: 30, Neg. LLF: 2264.3773801669904
Iteration: 4, Func. Count: 40, Neg. LLF: 136.5420134229577
Iteration: 5, Func. Count: 50, Neg. LLF: 1086.092798132083
Iteration: 6, Func. Count: 60, Neg. LLF: 992.4149314177549
Iteration: 7, Func. Count: 70, Neg. LLF: 104.35634373881123
Iteration: 8, Func. Count: 80, Neg. LLF: 373.7157428935303
Iteration: 9, Func. Count: 90, Neg. LLF: 101.1550753133803
Iteration: 10, Func. Count: 99, Neg. LLF: 101.0634279596072
Iteration: 11, Func. Count: 108, Neg. LLF: 100.99752195538949
Iteration: 12, Func. Count: 117, Neg. LLF: 100.98681224532803
Iteration: 13, Func. Count: 126, Neg. LLF: 100.98180684049133
Iteration: 14, Func. Count: 135, Neg. LLF: 100.97808375753485
Iteration: 15, Func. Count: 144, Neg. LLF: 100.97780889675614
Iteration: 16, Func. Count: 153, Neg. LLF: 100.9778049965705
Iteration: 17, Func. Count: 162, Neg. LLF: 100.97780465733314
Optimization terminated successfully (Exit mode 0)
Current function value: 100.97780499577021
Iterations: 17
Function evaluations: 172
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 127.38603807804981
Iteration: 2, Func. Count: 22, Neg. LLF: 123.0375987221964
Iteration: 3, Func. Count: 33, Neg. LLF: 138.78168367478034
Iteration: 4, Func. Count: 44, Neg. LLF: 683.8310283989033
Iteration: 5, Func. Count: 55, Neg. LLF: 195.08609179964878
Iteration: 6, Func. Count: 66, Neg. LLF: 1923.8387933471438
Iteration: 7, Func. Count: 77, Neg. LLF: 643.2903471270035
Iteration: 8, Func. Count: 88, Neg. LLF: 573.5022715244073
Iteration: 9, Func. Count: 99, Neg. LLF: 163.38390500515996
Iteration: 10, Func. Count: 110, Neg. LLF: 190.56298985754265
Iteration: 11, Func. Count: 121, Neg. LLF: 105.81163610884641
Iteration: 12, Func. Count: 132, Neg. LLF: 101.33038857725553
Iteration: 13, Func. Count: 142, Neg. LLF: 101.29259495225762
Iteration: 14, Func. Count: 152, Neg. LLF: 101.06535723521694
Iteration: 15, Func. Count: 162, Neg. LLF: 100.9843261179775
Iteration: 16, Func. Count: 172, Neg. LLF: 100.98191169118792
Iteration: 17, Func. Count: 182, Neg. LLF: 100.97789086978895
Iteration: 18, Func. Count: 192, Neg. LLF: 100.97780861388536
Iteration: 19, Func. Count: 202, Neg. LLF: 100.9778060007723
Iteration: 20, Func. Count: 211, Neg. LLF: 100.97780623350059
Optimization terminated successfully (Exit mode 0)
Current function value: 100.9778060007723
Iterations: 20
Function evaluations: 211
Gradient evaluations: 20
Iteration: 1, Func. Count: 12, Neg. LLF: 123.23681634188381
Iteration: 2, Func. Count: 27, Neg. LLF: 122.68750950465318
Iteration: 3, Func. Count: 39, Neg. LLF: 115.72695875634601
Iteration: 4, Func. Count: 51, Neg. LLF: 1025.9266250053377
Iteration: 5, Func. Count: 63, Neg. LLF: 165.04125203708077
Iteration: 6, Func. Count: 75, Neg. LLF: 2527.0960274215954
Iteration: 7, Func. Count: 87, Neg. LLF: 102.82603625708163
Iteration: 8, Func. Count: 98, Neg. LLF: 117.57909571318726
Iteration: 9, Func. Count: 110, Neg. LLF: 102.08843240844108
Iteration: 10, Func. Count: 121, Neg. LLF: 102.16087514444023
Iteration: 11, Func. Count: 133, Neg. LLF: 108.91734896109986
Iteration: 12, Func. Count: 145, Neg. LLF: 101.24385840650034
Iteration: 13, Func. Count: 156, Neg. LLF: 101.12550328825776
Iteration: 14, Func. Count: 167, Neg. LLF: 101.01618155612871
Iteration: 15, Func. Count: 178, Neg. LLF: 100.98840949782736
Iteration: 16, Func. Count: 189, Neg. LLF: 100.93381087965194
Iteration: 17, Func. Count: 200, Neg. LLF: 100.92047931122073
Iteration: 18, Func. Count: 211, Neg. LLF: 100.91517055160745
Iteration: 19, Func. Count: 222, Neg. LLF: 100.91433625289456
Iteration: 20, Func. Count: 233, Neg. LLF: 100.91365240519315
Iteration: 21, Func. Count: 244, Neg. LLF: 100.91362838654622
Iteration: 22, Func. Count: 255, Neg. LLF: 100.91362379430393
Iteration: 23, Func. Count: 265, Neg. LLF: 100.9136237198091
Optimization terminated successfully (Exit mode 0)
Current function value: 100.91362379430393
Iterations: 23
Function evaluations: 265
Gradient evaluations: 23
Iteration: 1, Func. Count: 13, Neg. LLF: 125.3383278248047
Iteration: 2, Func. Count: 29, Neg. LLF: 126.22817843802584
Iteration: 3, Func. Count: 42, Neg. LLF: 118.7105826956465
Iteration: 4, Func. Count: 55, Neg. LLF: 217.67923101929097
Iteration: 5, Func. Count: 68, Neg. LLF: 153.61852095814092
Iteration: 6, Func. Count: 81, Neg. LLF: 111.48564539151346
Iteration: 7, Func. Count: 94, Neg. LLF: 103.09028846524681
Iteration: 8, Func. Count: 106, Neg. LLF: 107.77670078621642
Iteration: 9, Func. Count: 119, Neg. LLF: 114.81038268368445
Iteration: 10, Func. Count: 132, Neg. LLF: 101.9949655728019
Iteration: 11, Func. Count: 145, Neg. LLF: 104.3947023230802
Iteration: 12, Func. Count: 158, Neg. LLF: 101.32144331146579
Iteration: 13, Func. Count: 170, Neg. LLF: 101.17581171073562
Iteration: 14, Func. Count: 182, Neg. LLF: 100.95560994541351
Iteration: 15, Func. Count: 194, Neg. LLF: 100.87579252534597
Iteration: 16, Func. Count: 206, Neg. LLF: 100.87045041678981
Iteration: 17, Func. Count: 218, Neg. LLF: 100.86808271778115
Iteration: 18, Func. Count: 230, Neg. LLF: 100.86750307606212
Iteration: 19, Func. Count: 242, Neg. LLF: 100.86742366563676
Iteration: 20, Func. Count: 254, Neg. LLF: 100.86741948977382
Iteration: 21, Func. Count: 265, Neg. LLF: 100.8674194114638
Optimization terminated successfully (Exit mode 0)
Current function value: 100.86741948977382
Iterations: 21
Function evaluations: 265
Gradient evaluations: 21
Iteration: 1, Func. Count: 10, Neg. LLF: 164.80558976207527
Iteration: 2, Func. Count: 20, Neg. LLF: 121.90199701894095
Iteration: 3, Func. Count: 30, Neg. LLF: 119.90296872198522
Iteration: 4, Func. Count: 40, Neg. LLF: 3654458.1363398307
Iteration: 5, Func. Count: 50, Neg. LLF: 403.688669796632
Iteration: 6, Func. Count: 60, Neg. LLF: 269.92974694931746
Iteration: 7, Func. Count: 70, Neg. LLF: 314.03916922800994
Iteration: 8, Func. Count: 80, Neg. LLF: 576.9121809090261
Iteration: 9, Func. Count: 90, Neg. LLF: 120378.02903121062
Iteration: 10, Func. Count: 100, Neg. LLF: 1830.1595729056783
Iteration: 11, Func. Count: 110, Neg. LLF: 772.1797835152844
Iteration: 12, Func. Count: 120, Neg. LLF: 101.50513237671187
Iteration: 13, Func. Count: 129, Neg. LLF: 101.36612305579078
Iteration: 14, Func. Count: 138, Neg. LLF: 101.27687166837231
Iteration: 15, Func. Count: 147, Neg. LLF: 100.9373018791516
Iteration: 16, Func. Count: 156, Neg. LLF: 100.50221158530634
Iteration: 17, Func. Count: 165, Neg. LLF: 100.3371477682041
Iteration: 18, Func. Count: 174, Neg. LLF: 100.28560188695064
Iteration: 19, Func. Count: 183, Neg. LLF: 100.28110130551286
Iteration: 20, Func. Count: 192, Neg. LLF: 100.28090817234379
Iteration: 21, Func. Count: 201, Neg. LLF: 100.28081665547566
Iteration: 22, Func. Count: 209, Neg. LLF: 100.28081664026097
Optimization terminated successfully (Exit mode 0)
Current function value: 100.28081665547566
Iterations: 22
Function evaluations: 209
Gradient evaluations: 22
Iteration: 1, Func. Count: 11, Neg. LLF: 151.55534875476278
Iteration: 2, Func. Count: 22, Neg. LLF: 135.57397471031769
Iteration: 3, Func. Count: 33, Neg. LLF: 83627.78599547694
Iteration: 4, Func. Count: 44, Neg. LLF: 238.9127524471608
Iteration: 5, Func. Count: 55, Neg. LLF: 4020062.166537051
Iteration: 6, Func. Count: 66, Neg. LLF: 2128.4121390424866
Iteration: 7, Func. Count: 77, Neg. LLF: 108.09207658856744
Iteration: 8, Func. Count: 88, Neg. LLF: 102.32500701398128
Iteration: 9, Func. Count: 99, Neg. LLF: 100.64639260455397
Iteration: 10, Func. Count: 109, Neg. LLF: 100.51530286688205
Iteration: 11, Func. Count: 119, Neg. LLF: 100.30520183930423
Iteration: 12, Func. Count: 129, Neg. LLF: 100.28256943736245
Iteration: 13, Func. Count: 139, Neg. LLF: 100.28160650453128
Iteration: 14, Func. Count: 149, Neg. LLF: 100.280888623794
Iteration: 15, Func. Count: 159, Neg. LLF: 100.28083832909095
Iteration: 16, Func. Count: 169, Neg. LLF: 100.28081667978103
Iteration: 17, Func. Count: 178, Neg. LLF: 100.28081686826161
Optimization terminated successfully (Exit mode 0)
Current function value: 100.28081667978103
Iterations: 17
Function evaluations: 178
Gradient evaluations: 17
Iteration: 1, Func. Count: 12, Neg. LLF: 148.46522271749524
Iteration: 2, Func. Count: 24, Neg. LLF: 113.05111382237534
Iteration: 3, Func. Count: 36, Neg. LLF: 318.55366362869825
Iteration: 4, Func. Count: 48, Neg. LLF: 782.3612750874729
Iteration: 5, Func. Count: 60, Neg. LLF: 310.10271859503854
Iteration: 6, Func. Count: 72, Neg. LLF: 1180.7408869495214
Iteration: 7, Func. Count: 84, Neg. LLF: 786.4133373902384
Iteration: 8, Func. Count: 96, Neg. LLF: 50297.97842594381
Iteration: 9, Func. Count: 108, Neg. LLF: 131.9789113099672
Iteration: 10, Func. Count: 120, Neg. LLF: 102.38424046871357
Iteration: 11, Func. Count: 132, Neg. LLF: 100.52236173222417
Iteration: 12, Func. Count: 143, Neg. LLF: 100.44016576446415
Iteration: 13, Func. Count: 154, Neg. LLF: 100.34826807927055
Iteration: 14, Func. Count: 165, Neg. LLF: 100.28626427423171
Iteration: 15, Func. Count: 176, Neg. LLF: 100.28181095998445
Iteration: 16, Func. Count: 187, Neg. LLF: 100.28083626094843
Iteration: 17, Func. Count: 198, Neg. LLF: 100.28081679198257
Iteration: 18, Func. Count: 208, Neg. LLF: 100.28081711499267
Optimization terminated successfully (Exit mode 0)
Current function value: 100.28081679198257
Iterations: 18
Function evaluations: 208
Gradient evaluations: 18
Iteration: 1, Func. Count: 13, Neg. LLF: 148.28624880242256
Iteration: 2, Func. Count: 26, Neg. LLF: 112.88038491885678
Iteration: 3, Func. Count: 39, Neg. LLF: 275.0506954886479
Iteration: 4, Func. Count: 52, Neg. LLF: 6085.358148729547
Iteration: 5, Func. Count: 65, Neg. LLF: 344.6990667015909
Iteration: 6, Func. Count: 78, Neg. LLF: 1017.640181133699
Iteration: 7, Func. Count: 91, Neg. LLF: 186.17751119897085
Iteration: 8, Func. Count: 104, Neg. LLF: 24087.2307007169
Iteration: 9, Func. Count: 117, Neg. LLF: 123.81500113330492
Iteration: 10, Func. Count: 130, Neg. LLF: 1931.5668188144316
Iteration: 11, Func. Count: 143, Neg. LLF: 101.3915095620341
Iteration: 12, Func. Count: 155, Neg. LLF: 100.87583065422648
Iteration: 13, Func. Count: 167, Neg. LLF: 130.14088027855337
Iteration: 14, Func. Count: 180, Neg. LLF: 100.4438507351899
Iteration: 15, Func. Count: 192, Neg. LLF: 100.1825840230685
Iteration: 16, Func. Count: 204, Neg. LLF: 100.17032709072484
Iteration: 17, Func. Count: 216, Neg. LLF: 100.14048648446207
Iteration: 18, Func. Count: 228, Neg. LLF: 100.12771147201401
Iteration: 19, Func. Count: 240, Neg. LLF: 100.12675433673742
Iteration: 20, Func. Count: 252, Neg. LLF: 100.12661636065697
Iteration: 21, Func. Count: 264, Neg. LLF: 100.126585878578
Iteration: 22, Func. Count: 275, Neg. LLF: 100.12658583638478
Optimization terminated successfully (Exit mode 0)
Current function value: 100.126585878578
Iterations: 22
Function evaluations: 275
Gradient evaluations: 22
Iteration: 1, Func. Count: 14, Neg. LLF: 148.64598899999956
Iteration: 2, Func. Count: 28, Neg. LLF: 112.94370078963827
Iteration: 3, Func. Count: 42, Neg. LLF: 217.7905300863969
Iteration: 4, Func. Count: 56, Neg. LLF: 374805.15795126505
Iteration: 5, Func. Count: 70, Neg. LLF: 553.3466567601328
Iteration: 6, Func. Count: 84, Neg. LLF: 858.642632062169
Iteration: 7, Func. Count: 98, Neg. LLF: 191.70528500376167
Iteration: 8, Func. Count: 112, Neg. LLF: 11191.258070508284
Iteration: 9, Func. Count: 126, Neg. LLF: 128.01027421512083
Iteration: 10, Func. Count: 140, Neg. LLF: 3524.1587342086036
Iteration: 11, Func. Count: 154, Neg. LLF: 101.87434879559238
Iteration: 12, Func. Count: 168, Neg. LLF: 100.59251525709081
Iteration: 13, Func. Count: 181, Neg. LLF: 100.30031413466133
Iteration: 14, Func. Count: 194, Neg. LLF: 100.94983321087595
Iteration: 15, Func. Count: 208, Neg. LLF: 100.15335551305445
Iteration: 16, Func. Count: 221, Neg. LLF: 100.1693571185773
Iteration: 17, Func. Count: 235, Neg. LLF: 100.12946015571721
Iteration: 18, Func. Count: 248, Neg. LLF: 100.1267651147229
Iteration: 19, Func. Count: 261, Neg. LLF: 100.12662703982295
Iteration: 20, Func. Count: 274, Neg. LLF: 100.1265874205564
Iteration: 21, Func. Count: 287, Neg. LLF: 100.12658592104454
Iteration: 22, Func. Count: 299, Neg. LLF: 100.12658594249598
Optimization terminated successfully (Exit mode 0)
Current function value: 100.12658592104454
Iterations: 22
Function evaluations: 299
Gradient evaluations: 22
Iteration: 1, Func. Count: 11, Neg. LLF: 149.41538720019645
Iteration: 2, Func. Count: 22, Neg. LLF: 119.56619598732574
Iteration: 3, Func. Count: 33, Neg. LLF: 132.93013802338345
Iteration: 4, Func. Count: 44, Neg. LLF: 3719157.284286703
Iteration: 5, Func. Count: 55, Neg. LLF: 370.84391565618085
Iteration: 6, Func. Count: 66, Neg. LLF: 305.5290214109672
Iteration: 7, Func. Count: 77, Neg. LLF: 393.7764828976247
Iteration: 8, Func. Count: 88, Neg. LLF: 89470.22693824484
Iteration: 9, Func. Count: 99, Neg. LLF: 570.2612847421967
Iteration: 10, Func. Count: 110, Neg. LLF: 898.2716162930471
Iteration: 11, Func. Count: 121, Neg. LLF: 218.6237392625386
Iteration: 12, Func. Count: 132, Neg. LLF: 104.34415637012077
Iteration: 13, Func. Count: 143, Neg. LLF: 101.45588080039819
Iteration: 14, Func. Count: 153, Neg. LLF: 101.18330298979079
Iteration: 15, Func. Count: 163, Neg. LLF: 100.82566363322032
Iteration: 16, Func. Count: 173, Neg. LLF: 100.5315174782468
Iteration: 17, Func. Count: 183, Neg. LLF: 100.33915715118495
Iteration: 18, Func. Count: 193, Neg. LLF: 100.28401522231454
Iteration: 19, Func. Count: 203, Neg. LLF: 100.28170828494352
Iteration: 20, Func. Count: 213, Neg. LLF: 100.2809181419875
Iteration: 21, Func. Count: 223, Neg. LLF: 100.28082248089105
Iteration: 22, Func. Count: 233, Neg. LLF: 100.28081667365288
Iteration: 23, Func. Count: 242, Neg. LLF: 100.28081627748111
Optimization terminated successfully (Exit mode 0)
Current function value: 100.28081667365288
Iterations: 23
Function evaluations: 242
Gradient evaluations: 23
Iteration: 1, Func. Count: 12, Neg. LLF: 129.76813499315247
Iteration: 2, Func. Count: 24, Neg. LLF: 107.26751114202177
Iteration: 3, Func. Count: 35, Neg. LLF: 147.0941867131612
Iteration: 4, Func. Count: 47, Neg. LLF: 859439.7751791489
Iteration: 5, Func. Count: 59, Neg. LLF: 3600308.039910327
Iteration: 6, Func. Count: 71, Neg. LLF: 102.56861222790053
Iteration: 7, Func. Count: 83, Neg. LLF: 101.00222311060635
Iteration: 8, Func. Count: 95, Neg. LLF: 100.41899141573042
Iteration: 9, Func. Count: 107, Neg. LLF: 100.28318823025381
Iteration: 10, Func. Count: 118, Neg. LLF: 100.28139769596903
Iteration: 11, Func. Count: 129, Neg. LLF: 100.28081905257311
Iteration: 12, Func. Count: 140, Neg. LLF: 100.28081694575842
Iteration: 13, Func. Count: 150, Neg. LLF: 100.28081713429482
Optimization terminated successfully (Exit mode 0)
Current function value: 100.28081694575842
Iterations: 13
Function evaluations: 150
Gradient evaluations: 13
Iteration: 1, Func. Count: 13, Neg. LLF: 120.81183808252356
Iteration: 2, Func. Count: 29, Neg. LLF: 121.18107888946044
Iteration: 3, Func. Count: 42, Neg. LLF: 103.7190414372318
Iteration: 4, Func. Count: 54, Neg. LLF: 127.98190235031792
Iteration: 5, Func. Count: 67, Neg. LLF: 103.37815007763126
Iteration: 6, Func. Count: 80, Neg. LLF: 111.18853159645558
Iteration: 7, Func. Count: 93, Neg. LLF: 102.13594456563118
Iteration: 8, Func. Count: 106, Neg. LLF: 116.79707089446403
Iteration: 9, Func. Count: 119, Neg. LLF: 100.81395249866733
Iteration: 10, Func. Count: 131, Neg. LLF: 101.11717773394203
Iteration: 11, Func. Count: 144, Neg. LLF: 100.66757362925608
Iteration: 12, Func. Count: 156, Neg. LLF: 100.53775675355485
Iteration: 13, Func. Count: 168, Neg. LLF: 100.39086614504629
Iteration: 14, Func. Count: 180, Neg. LLF: 100.3093119036007
Iteration: 15, Func. Count: 192, Neg. LLF: 100.2842315169034
Iteration: 16, Func. Count: 204, Neg. LLF: 100.28106061267833
Iteration: 17, Func. Count: 216, Neg. LLF: 100.28082076283073
Iteration: 18, Func. Count: 228, Neg. LLF: 100.28702348246462
Iteration: 19, Func. Count: 241, Neg. LLF: 100.2849617948979
Iteration: 20, Func. Count: 255, Neg. LLF: 100.28099535659864
Iteration: 21, Func. Count: 268, Neg. LLF: 100.2808255072071
Iteration: 22, Func. Count: 280, Neg. LLF: 100.2808437648255
Iteration: 23, Func. Count: 293, Neg. LLF: 100.28081676385528
Iteration: 24, Func. Count: 304, Neg. LLF: 100.2808170868991
Optimization terminated successfully (Exit mode 0)
Current function value: 100.28081676385528
Iterations: 25
Function evaluations: 304
Gradient evaluations: 24
Iteration: 1, Func. Count: 14, Neg. LLF: 124.25291447322421
Iteration: 2, Func. Count: 31, Neg. LLF: 129.13649269135777
Iteration: 3, Func. Count: 45, Neg. LLF: 121.13721408201195
Iteration: 4, Func. Count: 59, Neg. LLF: 1433.1658343305623
Iteration: 5, Func. Count: 73, Neg. LLF: 101.95975811261907
Iteration: 6, Func. Count: 86, Neg. LLF: 101.21567836142526
Iteration: 7, Func. Count: 100, Neg. LLF: 101.10446761599756
Iteration: 8, Func. Count: 114, Neg. LLF: 113.82843729499709
Iteration: 9, Func. Count: 129, Neg. LLF: 100.37792811393523
Iteration: 10, Func. Count: 142, Neg. LLF: 100.6681986128359
Iteration: 11, Func. Count: 156, Neg. LLF: 100.3899286914636
Iteration: 12, Func. Count: 170, Neg. LLF: 100.1649119225631
Iteration: 13, Func. Count: 183, Neg. LLF: 100.16653831040679
Iteration: 14, Func. Count: 197, Neg. LLF: 100.12981066069499
Iteration: 15, Func. Count: 210, Neg. LLF: 100.12683589801694
Iteration: 16, Func. Count: 223, Neg. LLF: 100.12662220205297
Iteration: 17, Func. Count: 236, Neg. LLF: 100.1265910234941
Iteration: 18, Func. Count: 249, Neg. LLF: 100.1265858079348
Iteration: 19, Func. Count: 261, Neg. LLF: 100.12658576572254
Optimization terminated successfully (Exit mode 0)
Current function value: 100.1265858079348
Iterations: 19
Function evaluations: 261
Gradient evaluations: 19
Iteration: 1, Func. Count: 15, Neg. LLF: 126.30827385339829
Iteration: 2, Func. Count: 33, Neg. LLF: 141.37638866376082
Iteration: 3, Func. Count: 48, Neg. LLF: 124.09016799659206
Iteration: 4, Func. Count: 63, Neg. LLF: 276.5206707267912
Iteration: 5, Func. Count: 78, Neg. LLF: 109.6742155277776
Iteration: 6, Func. Count: 93, Neg. LLF: 110.2325219102397
Iteration: 7, Func. Count: 108, Neg. LLF: 113.05227205457581
Iteration: 8, Func. Count: 123, Neg. LLF: 101.1791840556554
Iteration: 9, Func. Count: 137, Neg. LLF: 101.19486108589749
Iteration: 10, Func. Count: 152, Neg. LLF: 101.05331853625478
Iteration: 11, Func. Count: 166, Neg. LLF: 100.91438458399429
Iteration: 12, Func. Count: 180, Neg. LLF: 100.78436554544375
Iteration: 13, Func. Count: 194, Neg. LLF: 100.72457115977687
Iteration: 14, Func. Count: 208, Neg. LLF: 151.16149573058763
Iteration: 15, Func. Count: 224, Neg. LLF: 101.47494252359172
Iteration: 16, Func. Count: 240, Neg. LLF: 101.39068077251557
Iteration: 17, Func. Count: 256, Neg. LLF: 100.76683837803083
Iteration: 18, Func. Count: 272, Neg. LLF: 100.73067746186213
Iteration: 19, Func. Count: 287, Neg. LLF: 100.72883402169958
Iteration: 20, Func. Count: 300, Neg. LLF: 100.72883378246428
Optimization terminated successfully (Exit mode 0)
Current function value: 100.72883402169958
Iterations: 21
Function evaluations: 300
Gradient evaluations: 20
Iteration: 1, Func. Count: 12, Neg. LLF: 142.49138641138487
Iteration: 2, Func. Count: 24, Neg. LLF: 120.07789710470067
Iteration: 3, Func. Count: 36, Neg. LLF: 135.78050602151347
Iteration: 4, Func. Count: 48, Neg. LLF: 3725464.0326986313
Iteration: 5, Func. Count: 60, Neg. LLF: 338.87726113921707
Iteration: 6, Func. Count: 72, Neg. LLF: 282.7746745973164
Iteration: 7, Func. Count: 84, Neg. LLF: 366.93418880464515
Iteration: 8, Func. Count: 96, Neg. LLF: 55832.244454113206
Iteration: 9, Func. Count: 108, Neg. LLF: 276.72164470100375
Iteration: 10, Func. Count: 120, Neg. LLF: 472.653573384308
Iteration: 11, Func. Count: 132, Neg. LLF: 145.86001104474448
Iteration: 12, Func. Count: 144, Neg. LLF: 103.70143621618216
Iteration: 13, Func. Count: 156, Neg. LLF: 101.6106369425516
Iteration: 14, Func. Count: 167, Neg. LLF: 101.40439922110097
Iteration: 15, Func. Count: 178, Neg. LLF: 101.02175082454085
Iteration: 16, Func. Count: 189, Neg. LLF: 106.04002483779723
Iteration: 17, Func. Count: 202, Neg. LLF: 100.45762644317877
Iteration: 18, Func. Count: 213, Neg. LLF: 100.33575003632471
Iteration: 19, Func. Count: 224, Neg. LLF: 100.3002420499711
Iteration: 20, Func. Count: 235, Neg. LLF: 100.28172780366326
Iteration: 21, Func. Count: 246, Neg. LLF: 100.28089997888262
Iteration: 22, Func. Count: 257, Neg. LLF: 100.28082694572377
Iteration: 23, Func. Count: 268, Neg. LLF: 100.2808168264602
Iteration: 24, Func. Count: 278, Neg. LLF: 100.2808170337065
Optimization terminated successfully (Exit mode 0)
Current function value: 100.2808168264602
Iterations: 24
Function evaluations: 278
Gradient evaluations: 24
Iteration: 1, Func. Count: 13, Neg. LLF: 127.66910332023275
Iteration: 2, Func. Count: 26, Neg. LLF: 102.62391056726744
Iteration: 3, Func. Count: 38, Neg. LLF: 353.0381754117255
Iteration: 4, Func. Count: 51, Neg. LLF: 3361043.3102452415
Iteration: 5, Func. Count: 64, Neg. LLF: 1157.523484430055
Iteration: 6, Func. Count: 77, Neg. LLF: 101.65436186267867
Iteration: 7, Func. Count: 90, Neg. LLF: 100.31906324227455
Iteration: 8, Func. Count: 102, Neg. LLF: 100.28466342756585
Iteration: 9, Func. Count: 114, Neg. LLF: 100.28580124209203
Iteration: 10, Func. Count: 127, Neg. LLF: 100.28083227132998
Iteration: 11, Func. Count: 139, Neg. LLF: 100.28082589342151
Iteration: 12, Func. Count: 151, Neg. LLF: 100.28081664535209
Iteration: 13, Func. Count: 162, Neg. LLF: 100.28081683387713
Optimization terminated successfully (Exit mode 0)
Current function value: 100.28081664535209
Iterations: 13
Function evaluations: 162
Gradient evaluations: 13
Iteration: 1, Func. Count: 14, Neg. LLF: 120.70053769723849
Iteration: 2, Func. Count: 31, Neg. LLF: 121.01449493043695
Iteration: 3, Func. Count: 45, Neg. LLF: 103.81405152958575
Iteration: 4, Func. Count: 58, Neg. LLF: 124.56145162891615
Iteration: 5, Func. Count: 72, Neg. LLF: 103.82538618930266
Iteration: 6, Func. Count: 86, Neg. LLF: 108.12518515230367
Iteration: 7, Func. Count: 100, Neg. LLF: 102.48229892920826
Iteration: 8, Func. Count: 114, Neg. LLF: 125.68008285740179
Iteration: 9, Func. Count: 128, Neg. LLF: 100.97801177664074
Iteration: 10, Func. Count: 141, Neg. LLF: 100.81021533012024
Iteration: 11, Func. Count: 154, Neg. LLF: 100.71965652396355
Iteration: 12, Func. Count: 167, Neg. LLF: 100.65728480477291
Iteration: 13, Func. Count: 180, Neg. LLF: 100.47116877014514
Iteration: 14, Func. Count: 193, Neg. LLF: 100.3434561133105
Iteration: 15, Func. Count: 206, Neg. LLF: 100.29846096761702
Iteration: 16, Func. Count: 219, Neg. LLF: 100.28815494180024
Iteration: 17, Func. Count: 232, Neg. LLF: 100.28174681079295
Iteration: 18, Func. Count: 245, Neg. LLF: 100.280163247018
Iteration: 19, Func. Count: 258, Neg. LLF: 100.28094717430557
Iteration: 20, Func. Count: 272, Neg. LLF: 100.28133568087856
Iteration: 21, Func. Count: 287, Neg. LLF: 100.28083895898912
Iteration: 22, Func. Count: 301, Neg. LLF: 100.28081824386373
Iteration: 23, Func. Count: 315, Neg. LLF: 100.280816766715
Iteration: 24, Func. Count: 330, Neg. LLF: 100.2808166436887
Iteration: 25, Func. Count: 342, Neg. LLF: 100.28081696672616
Optimization terminated successfully (Exit mode 0)
Current function value: 100.2808166436887
Iterations: 26
Function evaluations: 342
Gradient evaluations: 25
Iteration: 1, Func. Count: 15, Neg. LLF: 124.14559068954284
Iteration: 2, Func. Count: 33, Neg. LLF: 129.03344660982944
Iteration: 3, Func. Count: 48, Neg. LLF: 121.34956568508812
Iteration: 4, Func. Count: 63, Neg. LLF: 1110.6807471999116
Iteration: 5, Func. Count: 78, Neg. LLF: 101.8905009461223
Iteration: 6, Func. Count: 92, Neg. LLF: 101.19463213581882
Iteration: 7, Func. Count: 107, Neg. LLF: 101.1470500695837
Iteration: 8, Func. Count: 122, Neg. LLF: 115.61917768797363
Iteration: 9, Func. Count: 138, Neg. LLF: 100.38322259046673
Iteration: 10, Func. Count: 152, Neg. LLF: 100.75230939712026
Iteration: 11, Func. Count: 167, Neg. LLF: 100.39366964051126
Iteration: 12, Func. Count: 182, Neg. LLF: 100.1668272378813
Iteration: 13, Func. Count: 196, Neg. LLF: 100.14063465713875
Iteration: 14, Func. Count: 210, Neg. LLF: 100.12831454200665
Iteration: 15, Func. Count: 224, Neg. LLF: 100.12674288860929
Iteration: 16, Func. Count: 238, Neg. LLF: 100.126613008714
Iteration: 17, Func. Count: 252, Neg. LLF: 100.12658661818982
Iteration: 18, Func. Count: 266, Neg. LLF: 100.12658574742562
Optimization terminated successfully (Exit mode 0)
Current function value: 100.12658574742562
Iterations: 18
Function evaluations: 266
Gradient evaluations: 18
Iteration: 1, Func. Count: 16, Neg. LLF: 126.19043664632287
Iteration: 2, Func. Count: 35, Neg. LLF: 141.27764661547056
Iteration: 3, Func. Count: 51, Neg. LLF: 124.02954192033087
Iteration: 4, Func. Count: 67, Neg. LLF: 272.76821113931203
Iteration: 5, Func. Count: 83, Neg. LLF: 107.85539589665476
Iteration: 6, Func. Count: 99, Neg. LLF: 105.71867814745806
Iteration: 7, Func. Count: 115, Neg. LLF: 108.71010121832275
Iteration: 8, Func. Count: 131, Neg. LLF: 102.27548635801118
Iteration: 9, Func. Count: 146, Neg. LLF: 100.84553615038509
Iteration: 10, Func. Count: 161, Neg. LLF: 100.77697783719805
Iteration: 11, Func. Count: 176, Neg. LLF: 100.74248990886304
Iteration: 12, Func. Count: 191, Neg. LLF: 100.7293221664718
Iteration: 13, Func. Count: 206, Neg. LLF: 100.72900001543945
Iteration: 14, Func. Count: 221, Neg. LLF: 100.72883927121265
Iteration: 15, Func. Count: 236, Neg. LLF: 100.72883412153332
Iteration: 16, Func. Count: 250, Neg. LLF: 100.72883388248611
Optimization terminated successfully (Exit mode 0)
Current function value: 100.72883412153332
Iterations: 16
Function evaluations: 250
Gradient evaluations: 16
Iteration: 1, Func. Count: 7, Neg. LLF: 165.5978264480493
Iteration: 2, Func. Count: 14, Neg. LLF: 110.2491379972872
Iteration: 3, Func. Count: 21, Neg. LLF: 106.83460390562944
Iteration: 4, Func. Count: 28, Neg. LLF: 239.0519980751197
Iteration: 5, Func. Count: 35, Neg. LLF: 17158.367518789957
Iteration: 6, Func. Count: 42, Neg. LLF: 174.4331029441787
Iteration: 7, Func. Count: 49, Neg. LLF: 161.92078099790012
Iteration: 8, Func. Count: 56, Neg. LLF: 103.85476106126121
Iteration: 9, Func. Count: 63, Neg. LLF: 100.3682072772433
Iteration: 10, Func. Count: 69, Neg. LLF: 100.30134536337053
Iteration: 11, Func. Count: 75, Neg. LLF: 100.29855076440597
Iteration: 12, Func. Count: 81, Neg. LLF: 100.29760884885658
Iteration: 13, Func. Count: 87, Neg. LLF: 100.29760734885079
Iteration: 14, Func. Count: 92, Neg. LLF: 100.29760733670116
Optimization terminated successfully (Exit mode 0)
Current function value: 100.29760734885079
Iterations: 14
Function evaluations: 92
Gradient evaluations: 14
Iteration: 1, Func. Count: 5, Neg. LLF: 132.17532501219387
Iteration: 2, Func. Count: 10, Neg. LLF: 139.53356228798648
Iteration: 3, Func. Count: 15, Neg. LLF: 130.17700616339056
Iteration: 4, Func. Count: 19, Neg. LLF: 130.15215918506
Iteration: 5, Func. Count: 23, Neg. LLF: 130.1061033751145
Iteration: 6, Func. Count: 27, Neg. LLF: 130.09806189603586
Iteration: 7, Func. Count: 31, Neg. LLF: 130.09373537053014
Iteration: 8, Func. Count: 35, Neg. LLF: 130.09365694593404
Iteration: 9, Func. Count: 39, Neg. LLF: 130.09365327655806
Iteration: 10, Func. Count: 42, Neg. LLF: 130.09365327656397
Optimization terminated successfully (Exit mode 0)
Current function value: 130.09365327655806
Iterations: 10
Function evaluations: 42
Gradient evaluations: 10
Iteration: 1, Func. Count: 6, Neg. LLF: 322.7806384023625
Iteration: 2, Func. Count: 12, Neg. LLF: 146.68204199344441
Iteration: 3, Func. Count: 19, Neg. LLF: 180.49340405071445
Iteration: 4, Func. Count: 26, Neg. LLF: 125.2475467615697
Iteration: 5, Func. Count: 32, Neg. LLF: 124.13325873582185
Iteration: 6, Func. Count: 37, Neg. LLF: 124.09137811146364
Iteration: 7, Func. Count: 42, Neg. LLF: 124.07928259515081
Iteration: 8, Func. Count: 47, Neg. LLF: 124.07851001986862
Iteration: 9, Func. Count: 52, Neg. LLF: 124.07849606558914
Iteration: 10, Func. Count: 57, Neg. LLF: 124.07849324965153
Iteration: 11, Func. Count: 62, Neg. LLF: 124.07848971627185
Iteration: 12, Func. Count: 66, Neg. LLF: 124.0784897163328
Optimization terminated successfully (Exit mode 0)
Current function value: 124.07848971627185
Iterations: 12
Function evaluations: 66
Gradient evaluations: 12
Iteration: 1, Func. Count: 7, Neg. LLF: 226.703091578251
Iteration: 2, Func. Count: 14, Neg. LLF: 162.275433883624
Iteration: 3, Func. Count: 22, Neg. LLF: 148.6177897720575
Iteration: 4, Func. Count: 30, Neg. LLF: 124.23387295518177
Iteration: 5, Func. Count: 36, Neg. LLF: 124.14810165515348
Iteration: 6, Func. Count: 42, Neg. LLF: 124.11555804572376
Iteration: 7, Func. Count: 48, Neg. LLF: 124.08560611134844
Iteration: 8, Func. Count: 54, Neg. LLF: 124.08153410453585
Iteration: 9, Func. Count: 60, Neg. LLF: 124.08005754905712
Iteration: 10, Func. Count: 66, Neg. LLF: 124.07915988802955
Iteration: 11, Func. Count: 72, Neg. LLF: 124.07859345640502
Iteration: 12, Func. Count: 78, Neg. LLF: 124.07849775783643
Iteration: 13, Func. Count: 84, Neg. LLF: 124.07848957461853
Iteration: 14, Func. Count: 89, Neg. LLF: 124.07848962537143
Optimization terminated successfully (Exit mode 0)
Current function value: 124.07848957461853
Iterations: 14
Function evaluations: 89
Gradient evaluations: 14
Iteration: 1, Func. Count: 8, Neg. LLF: 201.48368421130587
Iteration: 2, Func. Count: 16, Neg. LLF: 157.37586535902
Iteration: 3, Func. Count: 24, Neg. LLF: 125.22146184181669
Iteration: 4, Func. Count: 31, Neg. LLF: 124.71648563483915
Iteration: 5, Func. Count: 38, Neg. LLF: 124.58173746086894
Iteration: 6, Func. Count: 46, Neg. LLF: 124.12048573657641
Iteration: 7, Func. Count: 53, Neg. LLF: 124.09239719694587
Iteration: 8, Func. Count: 60, Neg. LLF: 124.08483002135665
Iteration: 9, Func. Count: 67, Neg. LLF: 124.08162035045765
Iteration: 10, Func. Count: 74, Neg. LLF: 124.07981106700599
Iteration: 11, Func. Count: 81, Neg. LLF: 124.0786858915176
Iteration: 12, Func. Count: 88, Neg. LLF: 124.07850399084816
Iteration: 13, Func. Count: 95, Neg. LLF: 124.07848996891502
Iteration: 14, Func. Count: 102, Neg. LLF: 124.07848931273307
Optimization terminated successfully (Exit mode 0)
Current function value: 124.07848931273307
Iterations: 14
Function evaluations: 102
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 194.84171568980955
Iteration: 2, Func. Count: 18, Neg. LLF: 143.5505648287404
Iteration: 3, Func. Count: 27, Neg. LLF: 125.36278247085589
Iteration: 4, Func. Count: 36, Neg. LLF: 123.92045504835333
Iteration: 5, Func. Count: 44, Neg. LLF: 125.00900998165075
Iteration: 6, Func. Count: 54, Neg. LLF: 123.82805851985255
Iteration: 7, Func. Count: 62, Neg. LLF: 123.82077584453448
Iteration: 8, Func. Count: 70, Neg. LLF: 123.89546948793998
Iteration: 9, Func. Count: 79, Neg. LLF: 123.80407758968626
Iteration: 10, Func. Count: 88, Neg. LLF: 123.7898409252588
Iteration: 11, Func. Count: 96, Neg. LLF: 123.78512132913653
Iteration: 12, Func. Count: 104, Neg. LLF: 123.78496842955082
Iteration: 13, Func. Count: 112, Neg. LLF: 123.78495231413673
Iteration: 14, Func. Count: 119, Neg. LLF: 123.78495226935654
Optimization terminated successfully (Exit mode 0)
Current function value: 123.78495231413673
Iterations: 14
Function evaluations: 119
Gradient evaluations: 14
Iteration: 1, Func. Count: 6, Neg. LLF: 154.98238829411633
Iteration: 2, Func. Count: 12, Neg. LLF: 131.4368793747971
Iteration: 3, Func. Count: 18, Neg. LLF: 196.80239943557763
Iteration: 4, Func. Count: 24, Neg. LLF: 123.3998849123623
Iteration: 5, Func. Count: 29, Neg. LLF: 123.50379850737963
Iteration: 6, Func. Count: 35, Neg. LLF: 123.09115794041644
Iteration: 7, Func. Count: 40, Neg. LLF: 123.01235387006113
Iteration: 8, Func. Count: 45, Neg. LLF: 122.99473692246987
Iteration: 9, Func. Count: 50, Neg. LLF: 122.99272909800096
Iteration: 10, Func. Count: 55, Neg. LLF: 122.99264225046963
Iteration: 11, Func. Count: 60, Neg. LLF: 122.9926398613581
Iteration: 12, Func. Count: 64, Neg. LLF: 122.99263986134723
Optimization terminated successfully (Exit mode 0)
Current function value: 122.9926398613581
Iterations: 12
Function evaluations: 64
Gradient evaluations: 12
Iteration: 1, Func. Count: 7, Neg. LLF: 294.8818839046882
Iteration: 2, Func. Count: 14, Neg. LLF: 143.69176807448713
Iteration: 3, Func. Count: 22, Neg. LLF: 175.8434112995842
Iteration: 4, Func. Count: 29, Neg. LLF: 123.9087175514859
Iteration: 5, Func. Count: 35, Neg. LLF: 124.66848280417533
Iteration: 6, Func. Count: 42, Neg. LLF: 125.28676792227256
Iteration: 7, Func. Count: 49, Neg. LLF: 123.20684360251886
Iteration: 8, Func. Count: 55, Neg. LLF: 123.11854374883632
Iteration: 9, Func. Count: 61, Neg. LLF: 123.070680799542
Iteration: 10, Func. Count: 67, Neg. LLF: 123.0186267561078
Iteration: 11, Func. Count: 73, Neg. LLF: 123.00143412178494
Iteration: 12, Func. Count: 79, Neg. LLF: 122.99716331708044
Iteration: 13, Func. Count: 85, Neg. LLF: 122.99551799440823
Iteration: 14, Func. Count: 91, Neg. LLF: 122.99391422613132
Iteration: 15, Func. Count: 97, Neg. LLF: 122.993220748491
Iteration: 16, Func. Count: 103, Neg. LLF: 122.99297191936833
Iteration: 17, Func. Count: 109, Neg. LLF: 122.99285638005706
Iteration: 18, Func. Count: 115, Neg. LLF: 122.99275163634118
Iteration: 19, Func. Count: 121, Neg. LLF: 122.99267338723344
Iteration: 20, Func. Count: 127, Neg. LLF: 122.9926438293206
Iteration: 21, Func. Count: 133, Neg. LLF: 122.99263969839205
Iteration: 22, Func. Count: 138, Neg. LLF: 122.9926397425733
Optimization terminated successfully (Exit mode 0)
Current function value: 122.99263969839205
Iterations: 22
Function evaluations: 138
Gradient evaluations: 22
Iteration: 1, Func. Count: 8, Neg. LLF: 238.14246868714855
Iteration: 2, Func. Count: 16, Neg. LLF: 159.28329667153017
Iteration: 3, Func. Count: 25, Neg. LLF: 174.69839615865772
Iteration: 4, Func. Count: 34, Neg. LLF: 128.39348945640037
Iteration: 5, Func. Count: 42, Neg. LLF: 128.44241278427617
Iteration: 6, Func. Count: 50, Neg. LLF: 129.1908917100439
Iteration: 7, Func. Count: 58, Neg. LLF: 123.79436830066156
Iteration: 8, Func. Count: 65, Neg. LLF: 123.43899473725118
Iteration: 9, Func. Count: 72, Neg. LLF: 123.35377814350483
Iteration: 10, Func. Count: 79, Neg. LLF: 123.26308585383009
Iteration: 11, Func. Count: 86, Neg. LLF: 123.206384275068
Iteration: 12, Func. Count: 93, Neg. LLF: 123.13569849539704
Iteration: 13, Func. Count: 100, Neg. LLF: 123.02178030614687
Iteration: 14, Func. Count: 107, Neg. LLF: 123.01843069008679
Iteration: 15, Func. Count: 114, Neg. LLF: 123.00626279721618
Iteration: 16, Func. Count: 121, Neg. LLF: 122.99703909851713
Iteration: 17, Func. Count: 128, Neg. LLF: 122.99603161898965
Iteration: 18, Func. Count: 135, Neg. LLF: 122.99377958560322
Iteration: 19, Func. Count: 142, Neg. LLF: 122.99311148068367
Iteration: 20, Func. Count: 149, Neg. LLF: 122.99283405976675
Iteration: 21, Func. Count: 156, Neg. LLF: 122.99273296983765
Iteration: 22, Func. Count: 163, Neg. LLF: 122.99266787984591
Iteration: 23, Func. Count: 170, Neg. LLF: 122.99264519653906
Iteration: 24, Func. Count: 177, Neg. LLF: 122.99264000173706
Iteration: 25, Func. Count: 183, Neg. LLF: 122.99264009240298
Optimization terminated successfully (Exit mode 0)
Current function value: 122.99264000173706
Iterations: 25
Function evaluations: 183
Gradient evaluations: 25
Iteration: 1, Func. Count: 9, Neg. LLF: 170.26350713263548
Iteration: 2, Func. Count: 18, Neg. LLF: 132.49110885698752
Iteration: 3, Func. Count: 28, Neg. LLF: 139.50103181999674
Iteration: 4, Func. Count: 37, Neg. LLF: 125.52578549458511
Iteration: 5, Func. Count: 46, Neg. LLF: 123.63290681579066
Iteration: 6, Func. Count: 54, Neg. LLF: 123.78137759111839
Iteration: 7, Func. Count: 63, Neg. LLF: 131.12073804605217
Iteration: 8, Func. Count: 72, Neg. LLF: 123.08617018793188
Iteration: 9, Func. Count: 80, Neg. LLF: 123.02253493230633
Iteration: 10, Func. Count: 88, Neg. LLF: 122.98874533335385
Iteration: 11, Func. Count: 96, Neg. LLF: 122.97262843892665
Iteration: 12, Func. Count: 104, Neg. LLF: 122.96434753256501
Iteration: 13, Func. Count: 112, Neg. LLF: 122.95916626575358
Iteration: 14, Func. Count: 120, Neg. LLF: 122.95742091075064
Iteration: 15, Func. Count: 128, Neg. LLF: 122.95715802613152
Iteration: 16, Func. Count: 136, Neg. LLF: 122.95714260941233
Iteration: 17, Func. Count: 143, Neg. LLF: 122.9571426095275
Optimization terminated successfully (Exit mode 0)
Current function value: 122.95714260941233
Iterations: 17
Function evaluations: 143
Gradient evaluations: 17
Iteration: 1, Func. Count: 10, Neg. LLF: 210.4297914869931
Iteration: 2, Func. Count: 20, Neg. LLF: 135.74477517097066
Iteration: 3, Func. Count: 30, Neg. LLF: 132.42448459180764
Iteration: 4, Func. Count: 40, Neg. LLF: 129.4544799768655
Iteration: 5, Func. Count: 50, Neg. LLF: 125.58426473996406
Iteration: 6, Func. Count: 60, Neg. LLF: 124.39618336769831
Iteration: 7, Func. Count: 69, Neg. LLF: 137.21329290008762
Iteration: 8, Func. Count: 79, Neg. LLF: 124.03409125058582
Iteration: 9, Func. Count: 89, Neg. LLF: 123.63469968550285
Iteration: 10, Func. Count: 98, Neg. LLF: 123.53796966987441
Iteration: 11, Func. Count: 107, Neg. LLF: 123.29297682980904
Iteration: 12, Func. Count: 116, Neg. LLF: 123.19876427271143
Iteration: 13, Func. Count: 125, Neg. LLF: 123.08565197673337
Iteration: 14, Func. Count: 134, Neg. LLF: 123.00012756930825
Iteration: 15, Func. Count: 143, Neg. LLF: 122.97805274520253
Iteration: 16, Func. Count: 152, Neg. LLF: 122.96588466977576
Iteration: 17, Func. Count: 161, Neg. LLF: 122.95922363462597
Iteration: 18, Func. Count: 170, Neg. LLF: 122.95750081688843
Iteration: 19, Func. Count: 179, Neg. LLF: 122.95726754726665
Iteration: 20, Func. Count: 188, Neg. LLF: 122.95719634277083
Iteration: 21, Func. Count: 197, Neg. LLF: 122.95715448595735
Iteration: 22, Func. Count: 206, Neg. LLF: 122.9571433291038
Iteration: 23, Func. Count: 215, Neg. LLF: 122.95714213303486
Iteration: 24, Func. Count: 223, Neg. LLF: 122.95714219582939
Optimization terminated successfully (Exit mode 0)
Current function value: 122.95714213303486
Iterations: 24
Function evaluations: 223
Gradient evaluations: 24
Iteration: 1, Func. Count: 7, Neg. LLF: 157.64960982508637
Iteration: 2, Func. Count: 14, Neg. LLF: 131.88108136362814
Iteration: 3, Func. Count: 21, Neg. LLF: 137.18923616185148
Iteration: 4, Func. Count: 28, Neg. LLF: 123.38117555256096
Iteration: 5, Func. Count: 34, Neg. LLF: 123.30237000428951
Iteration: 6, Func. Count: 40, Neg. LLF: 123.16815462126148
Iteration: 7, Func. Count: 46, Neg. LLF: 123.11535821255163
Iteration: 8, Func. Count: 52, Neg. LLF: 123.10552908944358
Iteration: 9, Func. Count: 59, Neg. LLF: 123.06726662092196
Iteration: 10, Func. Count: 65, Neg. LLF: 123.06716361229329
Iteration: 11, Func. Count: 71, Neg. LLF: 123.06715895695575
Iteration: 12, Func. Count: 77, Neg. LLF: 123.06715358408708
Iteration: 13, Func. Count: 82, Neg. LLF: 123.06715358410021
Optimization terminated successfully (Exit mode 0)
Current function value: 123.06715358408708
Iterations: 13
Function evaluations: 82
Gradient evaluations: 13
Iteration: 1, Func. Count: 8, Neg. LLF: 248.10022222654973
Iteration: 2, Func. Count: 16, Neg. LLF: 146.6370120904993
Iteration: 3, Func. Count: 24, Neg. LLF: 132.1354367973405
Iteration: 4, Func. Count: 34, Neg. LLF: 127.24387618315137
Iteration: 5, Func. Count: 42, Neg. LLF: 126.97619665541885
Iteration: 6, Func. Count: 50, Neg. LLF: 123.85259276955061
Iteration: 7, Func. Count: 58, Neg. LLF: 123.31793542798172
Iteration: 8, Func. Count: 66, Neg. LLF: 123.17843371858349
Iteration: 9, Func. Count: 73, Neg. LLF: 123.14899141967393
Iteration: 10, Func. Count: 80, Neg. LLF: 123.14331271861664
Iteration: 11, Func. Count: 87, Neg. LLF: 123.13842110206835
Iteration: 12, Func. Count: 94, Neg. LLF: 123.13656880299683
Iteration: 13, Func. Count: 101, Neg. LLF: 123.13477039984079
Iteration: 14, Func. Count: 108, Neg. LLF: 123.1328900479462
Iteration: 15, Func. Count: 115, Neg. LLF: 123.13070555358375
Iteration: 16, Func. Count: 122, Neg. LLF: 123.12900498597634
Iteration: 17, Func. Count: 129, Neg. LLF: 123.12818695180923
Iteration: 18, Func. Count: 136, Neg. LLF: 123.12773182844177
Iteration: 19, Func. Count: 143, Neg. LLF: 123.12643735995647
Iteration: 20, Func. Count: 150, Neg. LLF: 123.01327610479686
Iteration: 21, Func. Count: 157, Neg. LLF: 123.00375343112562
Iteration: 22, Func. Count: 164, Neg. LLF: 122.99586577057369
Iteration: 23, Func. Count: 171, Neg. LLF: 122.99555975400294
Iteration: 24, Func. Count: 178, Neg. LLF: 122.99363039511402
Iteration: 25, Func. Count: 185, Neg. LLF: 122.99372551662171
Iteration: 26, Func. Count: 193, Neg. LLF: 122.9926768308138
Iteration: 27, Func. Count: 200, Neg. LLF: 122.99265348842646
Iteration: 28, Func. Count: 207, Neg. LLF: 122.99286484461835
Iteration: 29, Func. Count: 215, Neg. LLF: 122.99264104779499
Iteration: 30, Func. Count: 222, Neg. LLF: 122.99263947745963
Iteration: 31, Func. Count: 228, Neg. LLF: 122.99263952158708
Optimization terminated successfully (Exit mode 0)
Current function value: 122.99263947745963
Iterations: 32
Function evaluations: 228
Gradient evaluations: 31
Iteration: 1, Func. Count: 9, Neg. LLF: 221.485286929107
Iteration: 2, Func. Count: 18, Neg. LLF: 155.56201285218677
Iteration: 3, Func. Count: 28, Neg. LLF: 133.1387041880054
Iteration: 4, Func. Count: 37, Neg. LLF: 131.50554383964587
Iteration: 5, Func. Count: 46, Neg. LLF: 125.39756909911033
Iteration: 6, Func. Count: 55, Neg. LLF: 123.39374221981384
Iteration: 7, Func. Count: 63, Neg. LLF: 123.36397483907338
Iteration: 8, Func. Count: 71, Neg. LLF: 123.35564551274197
Iteration: 9, Func. Count: 80, Neg. LLF: 123.2129905369822
Iteration: 10, Func. Count: 88, Neg. LLF: 123.15959442943964
Iteration: 11, Func. Count: 96, Neg. LLF: 123.06466718705381
Iteration: 12, Func. Count: 104, Neg. LLF: 123.0563619537366
Iteration: 13, Func. Count: 112, Neg. LLF: 123.02487661071127
Iteration: 14, Func. Count: 120, Neg. LLF: 122.99440529817429
Iteration: 15, Func. Count: 128, Neg. LLF: 122.99296456541157
Iteration: 16, Func. Count: 136, Neg. LLF: 122.99281292452693
Iteration: 17, Func. Count: 144, Neg. LLF: 122.99273211444819
Iteration: 18, Func. Count: 152, Neg. LLF: 122.99267772829863
Iteration: 19, Func. Count: 160, Neg. LLF: 122.99265684490838
Iteration: 20, Func. Count: 168, Neg. LLF: 122.99264570700436
Iteration: 21, Func. Count: 176, Neg. LLF: 122.99264072612745
Iteration: 22, Func. Count: 184, Neg. LLF: 122.99263956104232
Iteration: 23, Func. Count: 191, Neg. LLF: 122.99263965168323
Optimization terminated successfully (Exit mode 0)
Current function value: 122.99263956104232
Iterations: 23
Function evaluations: 191
Gradient evaluations: 23
Iteration: 1, Func. Count: 10, Neg. LLF: 165.90365937225985
Iteration: 2, Func. Count: 20, Neg. LLF: 136.1652434281674
Iteration: 3, Func. Count: 30, Neg. LLF: 127.75312015531448
Iteration: 4, Func. Count: 40, Neg. LLF: 125.50359424867695
Iteration: 5, Func. Count: 50, Neg. LLF: 308.30826375665265
Iteration: 6, Func. Count: 60, Neg. LLF: 126.97568803333306
Iteration: 7, Func. Count: 70, Neg. LLF: 123.20190110481659
Iteration: 8, Func. Count: 79, Neg. LLF: 123.05212288436803
Iteration: 9, Func. Count: 88, Neg. LLF: 123.03317394156005
Iteration: 10, Func. Count: 97, Neg. LLF: 123.00911265539193
Iteration: 11, Func. Count: 106, Neg. LLF: 122.97469341815652
Iteration: 12, Func. Count: 115, Neg. LLF: 122.96043350934741
Iteration: 13, Func. Count: 124, Neg. LLF: 122.95785465676262
Iteration: 14, Func. Count: 133, Neg. LLF: 122.95731672888994
Iteration: 15, Func. Count: 142, Neg. LLF: 122.95720571618777
Iteration: 16, Func. Count: 151, Neg. LLF: 122.95716560142799
Iteration: 17, Func. Count: 160, Neg. LLF: 122.95714539165684
Iteration: 18, Func. Count: 169, Neg. LLF: 122.95714229641763
Iteration: 19, Func. Count: 177, Neg. LLF: 122.95714229641369
Optimization terminated successfully (Exit mode 0)
Current function value: 122.95714229641763
Iterations: 19
Function evaluations: 177
Gradient evaluations: 19
Iteration: 1, Func. Count: 11, Neg. LLF: 172.4955616282709
Iteration: 2, Func. Count: 22, Neg. LLF: 162.83740035355328
Iteration: 3, Func. Count: 33, Neg. LLF: 133.3979914984085
Iteration: 4, Func. Count: 45, Neg. LLF: 124.68407168085746
Iteration: 5, Func. Count: 55, Neg. LLF: 125.6803809147629
Iteration: 6, Func. Count: 66, Neg. LLF: 128.96710837967856
Iteration: 7, Func. Count: 78, Neg. LLF: 123.60291956037926
Iteration: 8, Func. Count: 88, Neg. LLF: 123.06576899355865
Iteration: 9, Func. Count: 98, Neg. LLF: 122.99591103462323
Iteration: 10, Func. Count: 108, Neg. LLF: 122.96492017322174
Iteration: 11, Func. Count: 118, Neg. LLF: 122.95970352873834
Iteration: 12, Func. Count: 128, Neg. LLF: 122.95829321925122
Iteration: 13, Func. Count: 138, Neg. LLF: 122.9572313495011
Iteration: 14, Func. Count: 148, Neg. LLF: 122.95719143785952
Iteration: 15, Func. Count: 158, Neg. LLF: 122.9571508684142
Iteration: 16, Func. Count: 168, Neg. LLF: 122.95714336127098
Iteration: 17, Func. Count: 178, Neg. LLF: 122.95714211938048
Iteration: 18, Func. Count: 187, Neg. LLF: 122.95714218216065
Optimization terminated successfully (Exit mode 0)
Current function value: 122.95714211938048
Iterations: 18
Function evaluations: 187
Gradient evaluations: 18
Iteration: 1, Func. Count: 8, Neg. LLF: 151.03447082255403
Iteration: 2, Func. Count: 17, Neg. LLF: 130.7752980289915
Iteration: 3, Func. Count: 26, Neg. LLF: 267.399871177738
Iteration: 4, Func. Count: 34, Neg. LLF: 123.72274994331516
Iteration: 5, Func. Count: 41, Neg. LLF: 123.3815246839378
Iteration: 6, Func. Count: 48, Neg. LLF: 123.09672797120767
Iteration: 7, Func. Count: 55, Neg. LLF: 123.0476351120381
Iteration: 8, Func. Count: 62, Neg. LLF: 122.99817587607751
Iteration: 9, Func. Count: 69, Neg. LLF: 122.99626871583648
Iteration: 10, Func. Count: 76, Neg. LLF: 122.99453612705788
Iteration: 11, Func. Count: 83, Neg. LLF: 122.99277950434991
Iteration: 12, Func. Count: 90, Neg. LLF: 122.99264476036981
Iteration: 13, Func. Count: 97, Neg. LLF: 122.99263954366953
Iteration: 14, Func. Count: 103, Neg. LLF: 122.99263962203283
Optimization terminated successfully (Exit mode 0)
Current function value: 122.99263954366953
Iterations: 14
Function evaluations: 103
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 228.33378479079497
Iteration: 2, Func. Count: 18, Neg. LLF: 148.53108073502096
Iteration: 3, Func. Count: 27, Neg. LLF: 149.87979885023773
Iteration: 4, Func. Count: 38, Neg. LLF: 135.8181245226167
Iteration: 5, Func. Count: 47, Neg. LLF: 126.17924390994372
Iteration: 6, Func. Count: 56, Neg. LLF: 124.77315438688288
Iteration: 7, Func. Count: 65, Neg. LLF: 123.53897267491304
Iteration: 8, Func. Count: 74, Neg. LLF: 123.2416855042298
Iteration: 9, Func. Count: 82, Neg. LLF: 123.17689497699534
Iteration: 10, Func. Count: 90, Neg. LLF: 123.15746668397045
Iteration: 11, Func. Count: 98, Neg. LLF: 123.14712033182168
Iteration: 12, Func. Count: 106, Neg. LLF: 123.136301112938
Iteration: 13, Func. Count: 114, Neg. LLF: 123.13101905222173
Iteration: 14, Func. Count: 122, Neg. LLF: 123.13008374581919
Iteration: 15, Func. Count: 130, Neg. LLF: 123.12962627708794
Iteration: 16, Func. Count: 138, Neg. LLF: 123.12896022763255
Iteration: 17, Func. Count: 146, Neg. LLF: 123.12821630004969
Iteration: 18, Func. Count: 154, Neg. LLF: 123.1275327990207
Iteration: 19, Func. Count: 162, Neg. LLF: 123.12703719716151
Iteration: 20, Func. Count: 170, Neg. LLF: 123.12286495049179
Iteration: 21, Func. Count: 178, Neg. LLF: 122.99969894316601
Iteration: 22, Func. Count: 186, Neg. LLF: 122.99486221867832
Iteration: 23, Func. Count: 194, Neg. LLF: 122.99385554798033
Iteration: 24, Func. Count: 202, Neg. LLF: 122.99268028495203
Iteration: 25, Func. Count: 210, Neg. LLF: 122.99278254278414
Iteration: 26, Func. Count: 219, Neg. LLF: 122.99278067911774
Iteration: 27, Func. Count: 228, Neg. LLF: 122.99264017719659
Iteration: 28, Func. Count: 236, Neg. LLF: 122.99264165083329
Optimization terminated successfully (Exit mode 0)
Current function value: 122.99263981510882
Iterations: 29
Function evaluations: 237
Gradient evaluations: 28
Iteration: 1, Func. Count: 10, Neg. LLF: 209.5439481551936
Iteration: 2, Func. Count: 20, Neg. LLF: 127.58041886991933
Iteration: 3, Func. Count: 30, Neg. LLF: 124.17850781985206
Iteration: 4, Func. Count: 39, Neg. LLF: 138.95794900579904
Iteration: 5, Func. Count: 49, Neg. LLF: 140.1751837521379
Iteration: 6, Func. Count: 59, Neg. LLF: 123.16460466174976
Iteration: 7, Func. Count: 68, Neg. LLF: 123.11910412152842
Iteration: 8, Func. Count: 77, Neg. LLF: 123.10233038851035
Iteration: 9, Func. Count: 86, Neg. LLF: 123.090530290221
Iteration: 10, Func. Count: 95, Neg. LLF: 123.07740686847768
Iteration: 11, Func. Count: 104, Neg. LLF: 123.07215383688415
Iteration: 12, Func. Count: 113, Neg. LLF: 123.06977136482526
Iteration: 13, Func. Count: 122, Neg. LLF: 123.06820414472564
Iteration: 14, Func. Count: 131, Neg. LLF: 123.06736574965929
Iteration: 15, Func. Count: 140, Neg. LLF: 123.06718719088941
Iteration: 16, Func. Count: 149, Neg. LLF: 123.06716323943898
Iteration: 17, Func. Count: 158, Neg. LLF: 123.06715654816033
Iteration: 18, Func. Count: 167, Neg. LLF: 123.06715391324869
Iteration: 19, Func. Count: 175, Neg. LLF: 123.06715397641382
Optimization terminated successfully (Exit mode 0)
Current function value: 123.06715391324869
Iterations: 19
Function evaluations: 175
Gradient evaluations: 19
Iteration: 1, Func. Count: 11, Neg. LLF: 165.58420448553284
Iteration: 2, Func. Count: 23, Neg. LLF: 145.06442571318505
Iteration: 3, Func. Count: 34, Neg. LLF: 125.55439360275294
Iteration: 4, Func. Count: 45, Neg. LLF: 127.52581692553878
Iteration: 5, Func. Count: 56, Neg. LLF: 123.62567433718577
Iteration: 6, Func. Count: 66, Neg. LLF: 124.47037017503133
Iteration: 7, Func. Count: 77, Neg. LLF: 124.54554898448204
Iteration: 8, Func. Count: 88, Neg. LLF: 123.15592677466296
Iteration: 9, Func. Count: 98, Neg. LLF: 123.0722974388057
Iteration: 10, Func. Count: 108, Neg. LLF: 123.05151617280514
Iteration: 11, Func. Count: 118, Neg. LLF: 123.03112435475215
Iteration: 12, Func. Count: 128, Neg. LLF: 123.00521913683386
Iteration: 13, Func. Count: 138, Neg. LLF: 122.97959131631492
Iteration: 14, Func. Count: 148, Neg. LLF: 122.96587195355845
Iteration: 15, Func. Count: 158, Neg. LLF: 122.9599431036733
Iteration: 16, Func. Count: 168, Neg. LLF: 122.95846898070143
Iteration: 17, Func. Count: 178, Neg. LLF: 122.95787552590289
Iteration: 18, Func. Count: 188, Neg. LLF: 122.95753733624227
Iteration: 19, Func. Count: 198, Neg. LLF: 122.95720863417009
Iteration: 20, Func. Count: 208, Neg. LLF: 122.95714676785026
Iteration: 21, Func. Count: 218, Neg. LLF: 122.95714215232923
Iteration: 22, Func. Count: 227, Neg. LLF: 122.95714215231374
Optimization terminated successfully (Exit mode 0)
Current function value: 122.95714215232923
Iterations: 22
Function evaluations: 227
Gradient evaluations: 22
Iteration: 1, Func. Count: 12, Neg. LLF: 196.7951921554985
Iteration: 2, Func. Count: 24, Neg. LLF: 254.89225553202246
Iteration: 3, Func. Count: 36, Neg. LLF: 131.33475166127332
Iteration: 4, Func. Count: 48, Neg. LLF: 125.49992411020582
Iteration: 5, Func. Count: 60, Neg. LLF: 123.32405749336502
Iteration: 6, Func. Count: 71, Neg. LLF: 124.85834867054517
Iteration: 7, Func. Count: 83, Neg. LLF: 127.36121748221346
Iteration: 8, Func. Count: 96, Neg. LLF: 123.12044761503738
Iteration: 9, Func. Count: 107, Neg. LLF: 123.07751382454587
Iteration: 10, Func. Count: 118, Neg. LLF: 122.99730116399307
Iteration: 11, Func. Count: 129, Neg. LLF: 122.98133835421852
Iteration: 12, Func. Count: 140, Neg. LLF: 122.96518375235365
Iteration: 13, Func. Count: 151, Neg. LLF: 122.961537437806
Iteration: 14, Func. Count: 162, Neg. LLF: 122.95884410219185
Iteration: 15, Func. Count: 173, Neg. LLF: 122.95743517869079
Iteration: 16, Func. Count: 184, Neg. LLF: 122.95730157730131
Iteration: 17, Func. Count: 195, Neg. LLF: 122.95719592425469
Iteration: 18, Func. Count: 206, Neg. LLF: 122.95715774050612
Iteration: 19, Func. Count: 217, Neg. LLF: 122.95714365054843
Iteration: 20, Func. Count: 228, Neg. LLF: 122.95714217321007
Iteration: 21, Func. Count: 238, Neg. LLF: 122.9571422360217
Optimization terminated successfully (Exit mode 0)
Current function value: 122.95714217321007
Iterations: 21
Function evaluations: 238
Gradient evaluations: 21
Iteration: 1, Func. Count: 5, Neg. LLF: 129.783067709301
Iteration: 2, Func. Count: 10, Neg. LLF: 141.3064463407164
Iteration: 3, Func. Count: 15, Neg. LLF: 119.53097851745271
Iteration: 4, Func. Count: 19, Neg. LLF: 600.4321035265332
Iteration: 5, Func. Count: 24, Neg. LLF: 876.2411148118181
Iteration: 6, Func. Count: 29, Neg. LLF: 1396.0051817602398
Iteration: 7, Func. Count: 34, Neg. LLF: 2864.7618528223607
Iteration: 8, Func. Count: 39, Neg. LLF: 119.56033794948655
Iteration: 9, Func. Count: 44, Neg. LLF: 116.65746407094001
Iteration: 10, Func. Count: 48, Neg. LLF: 116.55216255531694
Iteration: 11, Func. Count: 52, Neg. LLF: 116.5471663643789
Iteration: 12, Func. Count: 56, Neg. LLF: 116.54685422530439
Iteration: 13, Func. Count: 60, Neg. LLF: 116.5468522146282
Iteration: 14, Func. Count: 63, Neg. LLF: 116.54685225740205
Optimization terminated successfully (Exit mode 0)
Current function value: 116.5468522146282
Iterations: 14
Function evaluations: 63
Gradient evaluations: 14
Iteration: 1, Func. Count: 6, Neg. LLF: 454.0730625507519
Iteration: 2, Func. Count: 12, Neg. LLF: 3003.099328200592
Iteration: 3, Func. Count: 18, Neg. LLF: 140.70691673572298
Iteration: 4, Func. Count: 24, Neg. LLF: 114.76221373608688
Iteration: 5, Func. Count: 29, Neg. LLF: 114.64742367587236
Iteration: 6, Func. Count: 35, Neg. LLF: 128.14673072231187
Iteration: 7, Func. Count: 41, Neg. LLF: 114.10739324677955
Iteration: 8, Func. Count: 46, Neg. LLF: 114.08780842036714
Iteration: 9, Func. Count: 51, Neg. LLF: 114.08730905890828
Iteration: 10, Func. Count: 56, Neg. LLF: 114.08730321295793
Iteration: 11, Func. Count: 61, Neg. LLF: 114.08730267733901
Optimization terminated successfully (Exit mode 0)
Current function value: 114.08730267733901
Iterations: 11
Function evaluations: 61
Gradient evaluations: 11
Iteration: 1, Func. Count: 7, Neg. LLF: 32711.532571848256
Iteration: 2, Func. Count: 14, Neg. LLF: 40648.66801155595
Iteration: 3, Func. Count: 21, Neg. LLF: 143.85744193836635
Iteration: 4, Func. Count: 28, Neg. LLF: 115.17731572927475
Iteration: 5, Func. Count: 34, Neg. LLF: 116.10342116890965
Iteration: 6, Func. Count: 41, Neg. LLF: 115.62888878902814
Iteration: 7, Func. Count: 48, Neg. LLF: 114.08789220032905
Iteration: 8, Func. Count: 54, Neg. LLF: 114.0873816737973
Iteration: 9, Func. Count: 60, Neg. LLF: 114.08730416895841
Iteration: 10, Func. Count: 66, Neg. LLF: 114.0873027713007
Iteration: 11, Func. Count: 71, Neg. LLF: 114.08730274249095
Optimization terminated successfully (Exit mode 0)
Current function value: 114.0873027713007
Iterations: 11
Function evaluations: 71
Gradient evaluations: 11
Iteration: 1, Func. Count: 8, Neg. LLF: 307.78005741612435
Iteration: 2, Func. Count: 16, Neg. LLF: 1988.6330677556275
Iteration: 3, Func. Count: 24, Neg. LLF: 182.6832668450796
Iteration: 4, Func. Count: 32, Neg. LLF: 189.93484188021495
Iteration: 5, Func. Count: 40, Neg. LLF: 114.69226363794976
Iteration: 6, Func. Count: 47, Neg. LLF: 116.04882924849983
Iteration: 7, Func. Count: 55, Neg. LLF: 117.91769594360746
Iteration: 8, Func. Count: 63, Neg. LLF: 122.94934849586353
Iteration: 9, Func. Count: 71, Neg. LLF: 114.08065636463951
Iteration: 10, Func. Count: 78, Neg. LLF: 114.05658752766104
Iteration: 11, Func. Count: 85, Neg. LLF: 114.05393159719517
Iteration: 12, Func. Count: 92, Neg. LLF: 114.05349880871012
Iteration: 13, Func. Count: 99, Neg. LLF: 114.0534281843499
Iteration: 14, Func. Count: 106, Neg. LLF: 114.05342752692069
Optimization terminated successfully (Exit mode 0)
Current function value: 114.05342752692069
Iterations: 14
Function evaluations: 106
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 262.32901403761224
Iteration: 2, Func. Count: 18, Neg. LLF: 607.9110266270764
Iteration: 3, Func. Count: 27, Neg. LLF: 723.7089659617179
Iteration: 4, Func. Count: 36, Neg. LLF: 119.90187603289237
Iteration: 5, Func. Count: 45, Neg. LLF: 166.64325051900792
Iteration: 6, Func. Count: 54, Neg. LLF: 142.1313785413033
Iteration: 7, Func. Count: 63, Neg. LLF: 115.46966749846375
Iteration: 8, Func. Count: 72, Neg. LLF: 114.22162419814634
Iteration: 9, Func. Count: 80, Neg. LLF: 114.64445493404003
Iteration: 10, Func. Count: 89, Neg. LLF: 114.42191489799484
Iteration: 11, Func. Count: 98, Neg. LLF: 113.98564451869638
Iteration: 12, Func. Count: 107, Neg. LLF: 113.91265454473731
Iteration: 13, Func. Count: 115, Neg. LLF: 113.91189093990582
Iteration: 14, Func. Count: 123, Neg. LLF: 113.91185206667252
Iteration: 15, Func. Count: 131, Neg. LLF: 113.91183076895635
Iteration: 16, Func. Count: 139, Neg. LLF: 113.91182937625928
Iteration: 17, Func. Count: 146, Neg. LLF: 113.91182925109553
Optimization terminated successfully (Exit mode 0)
Current function value: 113.91182937625928
Iterations: 17
Function evaluations: 146
Gradient evaluations: 17
Iteration: 1, Func. Count: 6, Neg. LLF: 128.75652058382002
Iteration: 2, Func. Count: 12, Neg. LLF: 130.8035683183093
Iteration: 3, Func. Count: 18, Neg. LLF: 119.00752901757077
Iteration: 4, Func. Count: 23, Neg. LLF: 680.8764708011015
Iteration: 5, Func. Count: 29, Neg. LLF: 5586.097404865177
Iteration: 6, Func. Count: 35, Neg. LLF: 117.52453506003269
Iteration: 7, Func. Count: 40, Neg. LLF: 117.708160314943
Iteration: 8, Func. Count: 46, Neg. LLF: 117.01154647955538
Iteration: 9, Func. Count: 52, Neg. LLF: 116.54862174392116
Iteration: 10, Func. Count: 57, Neg. LLF: 116.5471307725646
Iteration: 11, Func. Count: 62, Neg. LLF: 116.5468526613032
Iteration: 12, Func. Count: 66, Neg. LLF: 116.54685265637318
Optimization terminated successfully (Exit mode 0)
Current function value: 116.5468526613032
Iterations: 12
Function evaluations: 66
Gradient evaluations: 12
Iteration: 1, Func. Count: 7, Neg. LLF: 368.01319408915396
Iteration: 2, Func. Count: 14, Neg. LLF: 40822.825995757914
Iteration: 3, Func. Count: 21, Neg. LLF: 143.88190754358675
Iteration: 4, Func. Count: 28, Neg. LLF: 17955.95218173786
Iteration: 5, Func. Count: 35, Neg. LLF: 114.2022643082593
Iteration: 6, Func. Count: 41, Neg. LLF: 141.99548569923238
Iteration: 7, Func. Count: 48, Neg. LLF: 113.99815454276595
Iteration: 8, Func. Count: 54, Neg. LLF: 113.96492008535465
Iteration: 9, Func. Count: 60, Neg. LLF: 113.93211648556691
Iteration: 10, Func. Count: 66, Neg. LLF: 113.92663166761116
Iteration: 11, Func. Count: 72, Neg. LLF: 113.9261062139766
Iteration: 12, Func. Count: 78, Neg. LLF: 113.92588649567523
Iteration: 13, Func. Count: 84, Neg. LLF: 113.92588176419282
Iteration: 14, Func. Count: 89, Neg. LLF: 113.9258816300512
Optimization terminated successfully (Exit mode 0)
Current function value: 113.92588176419282
Iterations: 14
Function evaluations: 89
Gradient evaluations: 14
Iteration: 1, Func. Count: 8, Neg. LLF: 242.49294753728856
Iteration: 2, Func. Count: 16, Neg. LLF: 9749.656065809917
Iteration: 3, Func. Count: 24, Neg. LLF: 157.38563471105797
Iteration: 4, Func. Count: 32, Neg. LLF: 1018.0528216827706
Iteration: 5, Func. Count: 40, Neg. LLF: 120.34404953367257
Iteration: 6, Func. Count: 48, Neg. LLF: 117.10995626432279
Iteration: 7, Func. Count: 56, Neg. LLF: 114.02161954742715
Iteration: 8, Func. Count: 63, Neg. LLF: 113.99077246067333
Iteration: 9, Func. Count: 71, Neg. LLF: 113.92877741751727
Iteration: 10, Func. Count: 78, Neg. LLF: 113.92651443286938
Iteration: 11, Func. Count: 85, Neg. LLF: 113.92588221328188
Iteration: 12, Func. Count: 92, Neg. LLF: 113.92588169686735
Optimization terminated successfully (Exit mode 0)
Current function value: 113.92588169686735
Iterations: 12
Function evaluations: 92
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 228.23974755164238
Iteration: 2, Func. Count: 18, Neg. LLF: 384.32893520604534
Iteration: 3, Func. Count: 27, Neg. LLF: 157.28510313406687
Iteration: 4, Func. Count: 36, Neg. LLF: 795.5901217876421
Iteration: 5, Func. Count: 45, Neg. LLF: 160.70846943033925
Iteration: 6, Func. Count: 54, Neg. LLF: 115.60220922084179
Iteration: 7, Func. Count: 62, Neg. LLF: 129.19992762322252
Iteration: 8, Func. Count: 71, Neg. LLF: 127.75375305936838
Iteration: 9, Func. Count: 80, Neg. LLF: 129.99212704581703
Iteration: 10, Func. Count: 89, Neg. LLF: 114.50035684475615
Iteration: 11, Func. Count: 98, Neg. LLF: 113.92311669051017
Iteration: 12, Func. Count: 106, Neg. LLF: 113.91420358888718
Iteration: 13, Func. Count: 114, Neg. LLF: 113.90887150846716
Iteration: 14, Func. Count: 122, Neg. LLF: 113.90745784325436
Iteration: 15, Func. Count: 130, Neg. LLF: 113.90742648965708
Iteration: 16, Func. Count: 138, Neg. LLF: 113.90742588910689
Optimization terminated successfully (Exit mode 0)
Current function value: 113.90742588910689
Iterations: 16
Function evaluations: 138
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 222.93227342624112
Iteration: 2, Func. Count: 20, Neg. LLF: 190.33139456568895
Iteration: 3, Func. Count: 30, Neg. LLF: 162.015982765843
Iteration: 4, Func. Count: 40, Neg. LLF: 1414.869377082779
Iteration: 5, Func. Count: 50, Neg. LLF: 166.22107606081454
Iteration: 6, Func. Count: 60, Neg. LLF: 114.88591567063703
Iteration: 7, Func. Count: 69, Neg. LLF: 123.98437870746501
Iteration: 8, Func. Count: 80, Neg. LLF: 132.99330081449506
Iteration: 9, Func. Count: 92, Neg. LLF: 114.00515396283893
Iteration: 10, Func. Count: 102, Neg. LLF: 114.27171238493369
Iteration: 11, Func. Count: 112, Neg. LLF: 113.82160712224166
Iteration: 12, Func. Count: 121, Neg. LLF: 113.79558176809148
Iteration: 13, Func. Count: 130, Neg. LLF: 113.79443076915379
Iteration: 14, Func. Count: 139, Neg. LLF: 113.79410861756953
Iteration: 15, Func. Count: 148, Neg. LLF: 113.79379512089393
Iteration: 16, Func. Count: 157, Neg. LLF: 113.79374106511105
Iteration: 17, Func. Count: 166, Neg. LLF: 113.79373716017705
Iteration: 18, Func. Count: 174, Neg. LLF: 113.79373702771083
Optimization terminated successfully (Exit mode 0)
Current function value: 113.79373716017705
Iterations: 18
Function evaluations: 174
Gradient evaluations: 18
Iteration: 1, Func. Count: 7, Neg. LLF: 158.23502244302747
Iteration: 2, Func. Count: 14, Neg. LLF: 120.38166250917423
Iteration: 3, Func. Count: 20, Neg. LLF: 118.84942461975473
Iteration: 4, Func. Count: 26, Neg. LLF: 119.14458073953668
Iteration: 5, Func. Count: 33, Neg. LLF: 196.32070382707215
Iteration: 6, Func. Count: 41, Neg. LLF: 115.26486068972727
Iteration: 7, Func. Count: 47, Neg. LLF: 120.25022522026502
Iteration: 8, Func. Count: 54, Neg. LLF: 113.9950208591741
Iteration: 9, Func. Count: 61, Neg. LLF: 112.88891304312219
Iteration: 10, Func. Count: 67, Neg. LLF: 112.45353503073677
Iteration: 11, Func. Count: 73, Neg. LLF: 112.29614350208388
Iteration: 12, Func. Count: 79, Neg. LLF: 112.26333616194327
Iteration: 13, Func. Count: 85, Neg. LLF: 112.2599925752591
Iteration: 14, Func. Count: 91, Neg. LLF: 112.25998183591184
Iteration: 15, Func. Count: 96, Neg. LLF: 112.25998179983851
Optimization terminated successfully (Exit mode 0)
Current function value: 112.25998183591184
Iterations: 15
Function evaluations: 96
Gradient evaluations: 15
Iteration: 1, Func. Count: 8, Neg. LLF: 380.885715885499
Iteration: 2, Func. Count: 16, Neg. LLF: 11227.907887962456
Iteration: 3, Func. Count: 24, Neg. LLF: 6631835.408324829
Iteration: 4, Func. Count: 32, Neg. LLF: 112.89582574442132
Iteration: 5, Func. Count: 39, Neg. LLF: 115.5174705679855
Iteration: 6, Func. Count: 47, Neg. LLF: 112.36681061486152
Iteration: 7, Func. Count: 54, Neg. LLF: 112.27496947938859
Iteration: 8, Func. Count: 61, Neg. LLF: 112.30430408634334
Iteration: 9, Func. Count: 69, Neg. LLF: 112.25999131769743
Iteration: 10, Func. Count: 76, Neg. LLF: 112.25998176343514
Iteration: 11, Func. Count: 82, Neg. LLF: 112.25998174551538
Optimization terminated successfully (Exit mode 0)
Current function value: 112.25998176343514
Iterations: 11
Function evaluations: 82
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 209.26583924118282
Iteration: 2, Func. Count: 18, Neg. LLF: 2176.1150589326467
Iteration: 3, Func. Count: 27, Neg. LLF: 461.04927096035294
Iteration: 4, Func. Count: 36, Neg. LLF: 6370166.742988083
Iteration: 5, Func. Count: 45, Neg. LLF: 112.97416502011944
Iteration: 6, Func. Count: 53, Neg. LLF: 115.23638760270536
Iteration: 7, Func. Count: 62, Neg. LLF: 113.31105769223548
Iteration: 8, Func. Count: 71, Neg. LLF: 112.47457425850826
Iteration: 9, Func. Count: 80, Neg. LLF: 112.26010749215891
Iteration: 10, Func. Count: 88, Neg. LLF: 112.26002156124159
Iteration: 11, Func. Count: 96, Neg. LLF: 112.25999876655044
Iteration: 12, Func. Count: 104, Neg. LLF: 112.25998185046757
Iteration: 13, Func. Count: 111, Neg. LLF: 112.25998206901755
Optimization terminated successfully (Exit mode 0)
Current function value: 112.25998185046757
Iterations: 13
Function evaluations: 111
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 193.2901368816221
Iteration: 2, Func. Count: 20, Neg. LLF: 187.0674125049756
Iteration: 3, Func. Count: 30, Neg. LLF: 277.0022272175966
Iteration: 4, Func. Count: 40, Neg. LLF: 219.80874277428998
Iteration: 5, Func. Count: 50, Neg. LLF: 113.02209360200885
Iteration: 6, Func. Count: 59, Neg. LLF: 113.91926028989887
Iteration: 7, Func. Count: 69, Neg. LLF: 139.09746002624286
Iteration: 8, Func. Count: 79, Neg. LLF: 112.98180386089034
Iteration: 9, Func. Count: 89, Neg. LLF: 112.22221894591706
Iteration: 10, Func. Count: 98, Neg. LLF: 112.21721981460965
Iteration: 11, Func. Count: 107, Neg. LLF: 112.21783571665516
Iteration: 12, Func. Count: 117, Neg. LLF: 112.21587233297294
Iteration: 13, Func. Count: 126, Neg. LLF: 112.21584370264469
Iteration: 14, Func. Count: 134, Neg. LLF: 112.21584361907333
Optimization terminated successfully (Exit mode 0)
Current function value: 112.21584370264469
Iterations: 14
Function evaluations: 134
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 230.22234291621353
Iteration: 2, Func. Count: 22, Neg. LLF: 171.80143901914633
Iteration: 3, Func. Count: 33, Neg. LLF: 281.6302734723017
Iteration: 4, Func. Count: 44, Neg. LLF: 1412.435537226722
Iteration: 5, Func. Count: 55, Neg. LLF: 349.37432836183893
Iteration: 6, Func. Count: 66, Neg. LLF: 112.74884234541462
Iteration: 7, Func. Count: 76, Neg. LLF: 266.9183849760266
Iteration: 8, Func. Count: 87, Neg. LLF: 132.6838133677789
Iteration: 9, Func. Count: 98, Neg. LLF: 112.30952440157967
Iteration: 10, Func. Count: 109, Neg. LLF: 112.22664185674068
Iteration: 11, Func. Count: 120, Neg. LLF: 112.15256022022558
Iteration: 12, Func. Count: 130, Neg. LLF: 112.14281722516655
Iteration: 13, Func. Count: 140, Neg. LLF: 112.14251966240829
Iteration: 14, Func. Count: 150, Neg. LLF: 112.14250793274606
Iteration: 15, Func. Count: 160, Neg. LLF: 112.14250719027183
Optimization terminated successfully (Exit mode 0)
Current function value: 112.14250719027183
Iterations: 15
Function evaluations: 160
Gradient evaluations: 15
Iteration: 1, Func. Count: 8, Neg. LLF: 155.26581605095913
Iteration: 2, Func. Count: 16, Neg. LLF: 121.47090462474208
Iteration: 3, Func. Count: 23, Neg. LLF: 141.62631855630272
Iteration: 4, Func. Count: 31, Neg. LLF: 589.3355016775001
Iteration: 5, Func. Count: 39, Neg. LLF: 1480.2015455712988
Iteration: 6, Func. Count: 47, Neg. LLF: 7108695.965763431
Iteration: 7, Func. Count: 55, Neg. LLF: 513.0051465961874
Iteration: 8, Func. Count: 63, Neg. LLF: 266.78281235242844
Iteration: 9, Func. Count: 71, Neg. LLF: 324.7299433283162
Iteration: 10, Func. Count: 79, Neg. LLF: 36971.67390889164
Iteration: 11, Func. Count: 87, Neg. LLF: 754.0414016583737
Iteration: 12, Func. Count: 95, Neg. LLF: 712.1953334635398
Iteration: 13, Func. Count: 103, Neg. LLF: 1139.0754945780534
Iteration: 14, Func. Count: 111, Neg. LLF: 3508.511545471085
Iteration: 15, Func. Count: 119, Neg. LLF: 127.23491029462447
Iteration: 16, Func. Count: 127, Neg. LLF: 114.20199125827831
Iteration: 17, Func. Count: 135, Neg. LLF: 112.65137163749375
Iteration: 18, Func. Count: 142, Neg. LLF: 112.66005843430209
Iteration: 19, Func. Count: 150, Neg. LLF: 112.69490685674188
Iteration: 20, Func. Count: 158, Neg. LLF: 112.4571759524928
Iteration: 21, Func. Count: 165, Neg. LLF: 112.40568970350968
Iteration: 22, Func. Count: 172, Neg. LLF: 112.2685568193838
Iteration: 23, Func. Count: 179, Neg. LLF: 112.26010512755357
Iteration: 24, Func. Count: 186, Neg. LLF: 112.25998181865138
Iteration: 25, Func. Count: 192, Neg. LLF: 112.25998203620979
Optimization terminated successfully (Exit mode 0)
Current function value: 112.25998181865138
Iterations: 25
Function evaluations: 192
Gradient evaluations: 25
Iteration: 1, Func. Count: 9, Neg. LLF: 300.9130821845344
Iteration: 2, Func. Count: 18, Neg. LLF: 6734.211580905319
Iteration: 3, Func. Count: 27, Neg. LLF: 6844048.753556106
Iteration: 4, Func. Count: 36, Neg. LLF: 113.14127755044656
Iteration: 5, Func. Count: 44, Neg. LLF: 114.43027566671444
Iteration: 6, Func. Count: 53, Neg. LLF: 112.28561527923355
Iteration: 7, Func. Count: 61, Neg. LLF: 112.26067032782427
Iteration: 8, Func. Count: 69, Neg. LLF: 112.26145397913953
Iteration: 9, Func. Count: 78, Neg. LLF: 112.26000322280338
Iteration: 10, Func. Count: 86, Neg. LLF: 112.25998175093746
Iteration: 11, Func. Count: 93, Neg. LLF: 112.25998173299885
Optimization terminated successfully (Exit mode 0)
Current function value: 112.25998175093746
Iterations: 11
Function evaluations: 93
Gradient evaluations: 11
Iteration: 1, Func. Count: 10, Neg. LLF: 204.37032271641203
Iteration: 2, Func. Count: 20, Neg. LLF: 1659.6090730251096
Iteration: 3, Func. Count: 30, Neg. LLF: 1259.1076602596797
Iteration: 4, Func. Count: 40, Neg. LLF: 6368701.481190425
Iteration: 5, Func. Count: 50, Neg. LLF: 112.6311600538789
Iteration: 6, Func. Count: 59, Neg. LLF: 125.71704062614145
Iteration: 7, Func. Count: 69, Neg. LLF: 113.67752794844293
Iteration: 8, Func. Count: 79, Neg. LLF: 112.29811496254354
Iteration: 9, Func. Count: 89, Neg. LLF: 112.26062901929251
Iteration: 10, Func. Count: 99, Neg. LLF: 112.25998173917176
Iteration: 11, Func. Count: 107, Neg. LLF: 112.25998195772306
Optimization terminated successfully (Exit mode 0)
Current function value: 112.25998173917176
Iterations: 11
Function evaluations: 107
Gradient evaluations: 11
Iteration: 1, Func. Count: 11, Neg. LLF: 187.6764296934157
Iteration: 2, Func. Count: 22, Neg. LLF: 132.92356206773542
Iteration: 3, Func. Count: 33, Neg. LLF: 3880.1659244207062
Iteration: 4, Func. Count: 44, Neg. LLF: 1044.9908500722472
Iteration: 5, Func. Count: 55, Neg. LLF: 112.63782267969272
Iteration: 6, Func. Count: 65, Neg. LLF: 113.13341959910677
Iteration: 7, Func. Count: 76, Neg. LLF: 116.98378084822514
Iteration: 8, Func. Count: 87, Neg. LLF: 117.15333508653283
Iteration: 9, Func. Count: 98, Neg. LLF: 112.21806332443258
Iteration: 10, Func. Count: 108, Neg. LLF: 112.21733622049412
Iteration: 11, Func. Count: 119, Neg. LLF: 112.21584889074703
Iteration: 12, Func. Count: 129, Neg. LLF: 112.21584348899786
Iteration: 13, Func. Count: 138, Neg. LLF: 112.21584340558577
Optimization terminated successfully (Exit mode 0)
Current function value: 112.21584348899786
Iterations: 13
Function evaluations: 138
Gradient evaluations: 13
Iteration: 1, Func. Count: 12, Neg. LLF: 195.72181192718645
Iteration: 2, Func. Count: 24, Neg. LLF: 121.527841097125
Iteration: 3, Func. Count: 36, Neg. LLF: 157.38268696750967
Iteration: 4, Func. Count: 48, Neg. LLF: 112.75448552956468
Iteration: 5, Func. Count: 59, Neg. LLF: 112.76716531891421
Iteration: 6, Func. Count: 71, Neg. LLF: 570040.4372032091
Iteration: 7, Func. Count: 83, Neg. LLF: 112.49973064263628
Iteration: 8, Func. Count: 95, Neg. LLF: 112.15393919206414
Iteration: 9, Func. Count: 106, Neg. LLF: 112.14364001637266
Iteration: 10, Func. Count: 117, Neg. LLF: 112.14275773604487
Iteration: 11, Func. Count: 128, Neg. LLF: 112.1425074961553
Iteration: 12, Func. Count: 138, Neg. LLF: 112.14250741068794
Optimization terminated successfully (Exit mode 0)
Current function value: 112.1425074961553
Iterations: 12
Function evaluations: 138
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 150.0303853369502
Iteration: 2, Func. Count: 18, Neg. LLF: 122.18945184096279
Iteration: 3, Func. Count: 26, Neg. LLF: 119.35191390894852
Iteration: 4, Func. Count: 34, Neg. LLF: 18656066.786862463
Iteration: 5, Func. Count: 43, Neg. LLF: 6505914.50832429
Iteration: 6, Func. Count: 52, Neg. LLF: 7149148.856258095
Iteration: 7, Func. Count: 61, Neg. LLF: 310.6818604904209
Iteration: 8, Func. Count: 70, Neg. LLF: 454.09149611060394
Iteration: 9, Func. Count: 79, Neg. LLF: 705.1517087027879
Iteration: 10, Func. Count: 88, Neg. LLF: 1666.4586816087285
Iteration: 11, Func. Count: 97, Neg. LLF: 21892.389102121684
Iteration: 12, Func. Count: 106, Neg. LLF: 1230.0863904892756
Iteration: 13, Func. Count: 115, Neg. LLF: 547.5930284187062
Iteration: 14, Func. Count: 124, Neg. LLF: 117.00004682384659
Iteration: 15, Func. Count: 133, Neg. LLF: 112.63559396969494
Iteration: 16, Func. Count: 142, Neg. LLF: 112.30073029116944
Iteration: 17, Func. Count: 150, Neg. LLF: 112.2952398316242
Iteration: 18, Func. Count: 159, Neg. LLF: 112.25999032984777
Iteration: 19, Func. Count: 167, Neg. LLF: 112.25998181390429
Iteration: 20, Func. Count: 174, Neg. LLF: 112.25998196524898
Optimization terminated successfully (Exit mode 0)
Current function value: 112.25998181390429
Iterations: 20
Function evaluations: 174
Gradient evaluations: 20
Iteration: 1, Func. Count: 10, Neg. LLF: 292.7824967230909
Iteration: 2, Func. Count: 20, Neg. LLF: 13970.233526051321
Iteration: 3, Func. Count: 30, Neg. LLF: 7015609.087208434
Iteration: 4, Func. Count: 40, Neg. LLF: 115.42756757380204
Iteration: 5, Func. Count: 49, Neg. LLF: 113.69007252199539
Iteration: 6, Func. Count: 59, Neg. LLF: 112.36592368114124
Iteration: 7, Func. Count: 69, Neg. LLF: 112.26815544892423
Iteration: 8, Func. Count: 78, Neg. LLF: 112.26139526523524
Iteration: 9, Func. Count: 87, Neg. LLF: 112.26011127052952
Iteration: 10, Func. Count: 96, Neg. LLF: 112.25998568422808
Iteration: 11, Func. Count: 105, Neg. LLF: 112.25998175046306
Iteration: 12, Func. Count: 113, Neg. LLF: 112.25998173254284
Optimization terminated successfully (Exit mode 0)
Current function value: 112.25998175046306
Iterations: 12
Function evaluations: 113
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 220.71982079509752
Iteration: 2, Func. Count: 22, Neg. LLF: 11870.958291728177
Iteration: 3, Func. Count: 33, Neg. LLF: 10882.373094428996
Iteration: 4, Func. Count: 44, Neg. LLF: 7093026.723533605
Iteration: 5, Func. Count: 55, Neg. LLF: 112.71852611148199
Iteration: 6, Func. Count: 65, Neg. LLF: 122.92856699266171
Iteration: 7, Func. Count: 76, Neg. LLF: 114.16440252034845
Iteration: 8, Func. Count: 87, Neg. LLF: 112.30746541289697
Iteration: 9, Func. Count: 98, Neg. LLF: 112.26028482234425
Iteration: 10, Func. Count: 108, Neg. LLF: 112.2599832948393
Iteration: 11, Func. Count: 118, Neg. LLF: 112.25998362981545
Iteration: 12, Func. Count: 128, Neg. LLF: 112.25998196254511
Optimization terminated successfully (Exit mode 0)
Current function value: 112.25998174399537
Iterations: 12
Function evaluations: 128
Gradient evaluations: 12
Iteration: 1, Func. Count: 12, Neg. LLF: 191.6615839182927
Iteration: 2, Func. Count: 24, Neg. LLF: 132.3274762949404
Iteration: 3, Func. Count: 36, Neg. LLF: 668.4340248163043
Iteration: 4, Func. Count: 48, Neg. LLF: 809.8086826975999
Iteration: 5, Func. Count: 60, Neg. LLF: 112.6895609626839
Iteration: 6, Func. Count: 71, Neg. LLF: 112.49786583894206
Iteration: 7, Func. Count: 82, Neg. LLF: 121.4945614413374
Iteration: 8, Func. Count: 95, Neg. LLF: 115.26636799266134
Iteration: 9, Func. Count: 107, Neg. LLF: 112.22491021482004
Iteration: 10, Func. Count: 118, Neg. LLF: 112.22389628031186
Iteration: 11, Func. Count: 130, Neg. LLF: 112.21588161688516
Iteration: 12, Func. Count: 141, Neg. LLF: 112.21584884069573
Iteration: 13, Func. Count: 152, Neg. LLF: 112.21584411283729
Iteration: 14, Func. Count: 163, Neg. LLF: 112.21584349425565
Optimization terminated successfully (Exit mode 0)
Current function value: 112.21584349425565
Iterations: 14
Function evaluations: 163
Gradient evaluations: 14
Iteration: 1, Func. Count: 13, Neg. LLF: 219.1743054178069
Iteration: 2, Func. Count: 26, Neg. LLF: 124.41546888712638
Iteration: 3, Func. Count: 39, Neg. LLF: 1592.0865543264772
Iteration: 4, Func. Count: 52, Neg. LLF: 115.77833814292418
Iteration: 5, Func. Count: 65, Neg. LLF: 113.24918283496318
Iteration: 6, Func. Count: 77, Neg. LLF: 115.20622436285477
Iteration: 7, Func. Count: 91, Neg. LLF: 203.6794182451183
Iteration: 8, Func. Count: 104, Neg. LLF: 113.6479569920887
Iteration: 9, Func. Count: 117, Neg. LLF: 112.20858193763753
Iteration: 10, Func. Count: 130, Neg. LLF: 112.14396991102807
Iteration: 11, Func. Count: 142, Neg. LLF: 112.14263843638882
Iteration: 12, Func. Count: 154, Neg. LLF: 112.14250796815197
Iteration: 13, Func. Count: 166, Neg. LLF: 112.14250730792523
Optimization terminated successfully (Exit mode 0)
Current function value: 112.14250730792523
Iterations: 13
Function evaluations: 166
Gradient evaluations: 13
Iteration: 1, Func. Count: 6, Neg. LLF: 142.64617900748752
Iteration: 2, Func. Count: 12, Neg. LLF: 138.89943651319035
Iteration: 3, Func. Count: 18, Neg. LLF: 118.86560650408144
Iteration: 4, Func. Count: 23, Neg. LLF: 277.8478044588575
Iteration: 5, Func. Count: 29, Neg. LLF: 802.0276458992512
Iteration: 6, Func. Count: 35, Neg. LLF: 522.8860353009172
Iteration: 7, Func. Count: 41, Neg. LLF: 399.43798169573364
Iteration: 8, Func. Count: 47, Neg. LLF: 338.67025489505136
Iteration: 9, Func. Count: 53, Neg. LLF: 2525.2032802827944
Iteration: 10, Func. Count: 59, Neg. LLF: 1864.4030093964511
Iteration: 11, Func. Count: 65, Neg. LLF: 766.4552259589689
Iteration: 12, Func. Count: 71, Neg. LLF: 18123.577556085544
Iteration: 13, Func. Count: 77, Neg. LLF: 380.37394464305095
Iteration: 14, Func. Count: 83, Neg. LLF: 113.97537434182622
Iteration: 15, Func. Count: 89, Neg. LLF: 112.75621003880887
Iteration: 16, Func. Count: 94, Neg. LLF: 112.72336391548005
Iteration: 17, Func. Count: 99, Neg. LLF: 112.66894271791718
Iteration: 18, Func. Count: 104, Neg. LLF: 112.66268563272585
Iteration: 19, Func. Count: 109, Neg. LLF: 112.66247791723131
Iteration: 20, Func. Count: 114, Neg. LLF: 112.66246650505751
Iteration: 21, Func. Count: 118, Neg. LLF: 112.6624664365237
Optimization terminated successfully (Exit mode 0)
Current function value: 112.66246650505751
Iterations: 21
Function evaluations: 118
Gradient evaluations: 21
Iteration: 1, Func. Count: 7, Neg. LLF: 1194.1121888525934
Iteration: 2, Func. Count: 14, Neg. LLF: 569.9280905717565
Iteration: 3, Func. Count: 21, Neg. LLF: 1388.2646539623986
Iteration: 4, Func. Count: 28, Neg. LLF: 128.98924911117868
Iteration: 5, Func. Count: 35, Neg. LLF: 115.91447186864491
Iteration: 6, Func. Count: 42, Neg. LLF: 113.14341241906061
Iteration: 7, Func. Count: 48, Neg. LLF: 112.73538018039916
Iteration: 8, Func. Count: 54, Neg. LLF: 112.67562148424805
Iteration: 9, Func. Count: 60, Neg. LLF: 112.66311290864718
Iteration: 10, Func. Count: 66, Neg. LLF: 112.66256516774891
Iteration: 11, Func. Count: 72, Neg. LLF: 112.66246685936356
Iteration: 12, Func. Count: 77, Neg. LLF: 112.66246698334619
Optimization terminated successfully (Exit mode 0)
Current function value: 112.66246685936356
Iterations: 12
Function evaluations: 77
Gradient evaluations: 12
Iteration: 1, Func. Count: 8, Neg. LLF: 320.70634855210795
Iteration: 2, Func. Count: 16, Neg. LLF: 4445.807756442285
Iteration: 3, Func. Count: 24, Neg. LLF: 238.49081398731693
Iteration: 4, Func. Count: 32, Neg. LLF: 119.15633100363385
Iteration: 5, Func. Count: 40, Neg. LLF: 112.92961572231859
Iteration: 6, Func. Count: 47, Neg. LLF: 113.58696143987736
Iteration: 7, Func. Count: 55, Neg. LLF: 112.6680668080426
Iteration: 8, Func. Count: 62, Neg. LLF: 112.66305634512497
Iteration: 9, Func. Count: 69, Neg. LLF: 112.66248592105474
Iteration: 10, Func. Count: 76, Neg. LLF: 112.66246689165445
Iteration: 11, Func. Count: 82, Neg. LLF: 112.66246715688948
Optimization terminated successfully (Exit mode 0)
Current function value: 112.66246689165445
Iterations: 11
Function evaluations: 82
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 255.19922073498887
Iteration: 2, Func. Count: 18, Neg. LLF: 6298.39453770065
Iteration: 3, Func. Count: 27, Neg. LLF: 3474.647134511763
Iteration: 4, Func. Count: 36, Neg. LLF: 730.3821822061068
Iteration: 5, Func. Count: 45, Neg. LLF: 113.17144458394488
Iteration: 6, Func. Count: 53, Neg. LLF: 117.2425315030609
Iteration: 7, Func. Count: 62, Neg. LLF: 114.26212465276085
Iteration: 8, Func. Count: 71, Neg. LLF: 112.76663546732806
Iteration: 9, Func. Count: 80, Neg. LLF: 112.4529400494846
Iteration: 10, Func. Count: 88, Neg. LLF: 112.45257907767751
Iteration: 11, Func. Count: 96, Neg. LLF: 112.45256766167034
Iteration: 12, Func. Count: 104, Neg. LLF: 112.45256487523372
Iteration: 13, Func. Count: 111, Neg. LLF: 112.45256480335439
Optimization terminated successfully (Exit mode 0)
Current function value: 112.45256487523372
Iterations: 13
Function evaluations: 111
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 230.03498583871124
Iteration: 2, Func. Count: 20, Neg. LLF: 2026.915386045282
Iteration: 3, Func. Count: 30, Neg. LLF: 1698.2135536943904
Iteration: 4, Func. Count: 40, Neg. LLF: 8826.387833244455
Iteration: 5, Func. Count: 50, Neg. LLF: 114.42079276166004
Iteration: 6, Func. Count: 59, Neg. LLF: 132.7590090111933
Iteration: 7, Func. Count: 70, Neg. LLF: 135.5538967669664
Iteration: 8, Func. Count: 82, Neg. LLF: 112.91071809484345
Iteration: 9, Func. Count: 91, Neg. LLF: 112.52703955947156
Iteration: 10, Func. Count: 100, Neg. LLF: 112.46799425339918
Iteration: 11, Func. Count: 109, Neg. LLF: 112.45647895858595
Iteration: 12, Func. Count: 118, Neg. LLF: 112.45390665073988
Iteration: 13, Func. Count: 127, Neg. LLF: 112.45339674546756
Iteration: 14, Func. Count: 136, Neg. LLF: 112.45257454142715
Iteration: 15, Func. Count: 145, Neg. LLF: 112.45256489819867
Iteration: 16, Func. Count: 153, Neg. LLF: 112.45256487303992
Optimization terminated successfully (Exit mode 0)
Current function value: 112.45256489819867
Iterations: 16
Function evaluations: 153
Gradient evaluations: 16
Iteration: 1, Func. Count: 7, Neg. LLF: 138.3909189124077
Iteration: 2, Func. Count: 14, Neg. LLF: 133.6319659374491
Iteration: 3, Func. Count: 21, Neg. LLF: 117.48241096634321
Iteration: 4, Func. Count: 27, Neg. LLF: 268.4295126584803
Iteration: 5, Func. Count: 34, Neg. LLF: 320.259365172823
Iteration: 6, Func. Count: 41, Neg. LLF: 1298.4224568078714
Iteration: 7, Func. Count: 48, Neg. LLF: 314.38051764544406
Iteration: 8, Func. Count: 55, Neg. LLF: 965.347482380937
Iteration: 9, Func. Count: 62, Neg. LLF: 1924.5338963103882
Iteration: 10, Func. Count: 69, Neg. LLF: 966.146118449641
Iteration: 11, Func. Count: 76, Neg. LLF: 125.12989983236443
Iteration: 12, Func. Count: 83, Neg. LLF: 206.45480535459336
Iteration: 13, Func. Count: 90, Neg. LLF: 115.85442017519883
Iteration: 14, Func. Count: 97, Neg. LLF: 112.38517880871564
Iteration: 15, Func. Count: 104, Neg. LLF: 112.06139872887549
Iteration: 16, Func. Count: 110, Neg. LLF: 112.04130748575356
Iteration: 17, Func. Count: 116, Neg. LLF: 112.03739672556124
Iteration: 18, Func. Count: 122, Neg. LLF: 112.03723323565957
Iteration: 19, Func. Count: 128, Neg. LLF: 112.0371186920284
Iteration: 20, Func. Count: 133, Neg. LLF: 112.03711873150678
Optimization terminated successfully (Exit mode 0)
Current function value: 112.0371186920284
Iterations: 20
Function evaluations: 133
Gradient evaluations: 20
Iteration: 1, Func. Count: 8, Neg. LLF: 239.26843320568727
Iteration: 2, Func. Count: 16, Neg. LLF: 157.75327216792263
Iteration: 3, Func. Count: 24, Neg. LLF: 911.261244198698
Iteration: 4, Func. Count: 32, Neg. LLF: 176.5444387059184
Iteration: 5, Func. Count: 40, Neg. LLF: 117.60175901526084
Iteration: 6, Func. Count: 48, Neg. LLF: 114.64715230349215
Iteration: 7, Func. Count: 56, Neg. LLF: 112.1611834513904
Iteration: 8, Func. Count: 63, Neg. LLF: 112.14217540291637
Iteration: 9, Func. Count: 70, Neg. LLF: 112.08776474192084
Iteration: 10, Func. Count: 77, Neg. LLF: 112.0574276107238
Iteration: 11, Func. Count: 84, Neg. LLF: 112.0412051005317
Iteration: 12, Func. Count: 91, Neg. LLF: 112.03717512228957
Iteration: 13, Func. Count: 98, Neg. LLF: 112.03712000054468
Iteration: 14, Func. Count: 105, Neg. LLF: 112.03711871005366
Iteration: 15, Func. Count: 111, Neg. LLF: 112.03711883503503
Optimization terminated successfully (Exit mode 0)
Current function value: 112.03711871005366
Iterations: 15
Function evaluations: 111
Gradient evaluations: 15
Iteration: 1, Func. Count: 9, Neg. LLF: 214.02949434784483
Iteration: 2, Func. Count: 18, Neg. LLF: 155.40685595587476
Iteration: 3, Func. Count: 27, Neg. LLF: 65169.03666484809
Iteration: 4, Func. Count: 36, Neg. LLF: 331.99658572222387
Iteration: 5, Func. Count: 45, Neg. LLF: 112.97342398276982
Iteration: 6, Func. Count: 53, Neg. LLF: 112.13064133682593
Iteration: 7, Func. Count: 61, Neg. LLF: 112.06854153510075
Iteration: 8, Func. Count: 69, Neg. LLF: 112.04348740464769
Iteration: 9, Func. Count: 77, Neg. LLF: 112.03753412703844
Iteration: 10, Func. Count: 85, Neg. LLF: 112.03712733415462
Iteration: 11, Func. Count: 93, Neg. LLF: 112.03712018275637
Iteration: 12, Func. Count: 101, Neg. LLF: 112.0371188282827
Iteration: 13, Func. Count: 108, Neg. LLF: 112.03711905765127
Optimization terminated successfully (Exit mode 0)
Current function value: 112.0371188282827
Iterations: 13
Function evaluations: 108
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 204.55109368098823
Iteration: 2, Func. Count: 20, Neg. LLF: 153.2355540016482
Iteration: 3, Func. Count: 30, Neg. LLF: 9899.702613725674
Iteration: 4, Func. Count: 40, Neg. LLF: 305.97735595634504
Iteration: 5, Func. Count: 50, Neg. LLF: 112.41743001105063
Iteration: 6, Func. Count: 59, Neg. LLF: 119.18021766247801
Iteration: 7, Func. Count: 69, Neg. LLF: 116.70880860403321
Iteration: 8, Func. Count: 80, Neg. LLF: 111.97706967694398
Iteration: 9, Func. Count: 89, Neg. LLF: 111.95279232603284
Iteration: 10, Func. Count: 98, Neg. LLF: 111.94598181212922
Iteration: 11, Func. Count: 107, Neg. LLF: 111.94499421535521
Iteration: 12, Func. Count: 116, Neg. LLF: 111.94469945461344
Iteration: 13, Func. Count: 125, Neg. LLF: 111.94469022142015
Iteration: 14, Func. Count: 134, Neg. LLF: 111.9446896473548
Optimization terminated successfully (Exit mode 0)
Current function value: 111.9446896473548
Iterations: 14
Function evaluations: 134
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 200.291629206098
Iteration: 2, Func. Count: 22, Neg. LLF: 139.2481394802632
Iteration: 3, Func. Count: 33, Neg. LLF: 21458.509748360044
Iteration: 4, Func. Count: 44, Neg. LLF: 4187.565608908196
Iteration: 5, Func. Count: 55, Neg. LLF: 112.25288591807268
Iteration: 6, Func. Count: 65, Neg. LLF: 123.62843008332868
Iteration: 7, Func. Count: 76, Neg. LLF: 112.91439334547945
Iteration: 8, Func. Count: 87, Neg. LLF: 111.99552280040248
Iteration: 9, Func. Count: 97, Neg. LLF: 111.9473393580397
Iteration: 10, Func. Count: 107, Neg. LLF: 111.9448749630307
Iteration: 11, Func. Count: 117, Neg. LLF: 111.94469705861908
Iteration: 12, Func. Count: 127, Neg. LLF: 111.94469226029673
Iteration: 13, Func. Count: 137, Neg. LLF: 111.94468963578267
Iteration: 14, Func. Count: 146, Neg. LLF: 111.94468962388252
Optimization terminated successfully (Exit mode 0)
Current function value: 111.94468963578267
Iterations: 14
Function evaluations: 146
Gradient evaluations: 14
Iteration: 1, Func. Count: 8, Neg. LLF: 197.35425225857833
Iteration: 2, Func. Count: 16, Neg. LLF: 122.3622780142076
Iteration: 3, Func. Count: 24, Neg. LLF: 118.97301925109689
Iteration: 4, Func. Count: 32, Neg. LLF: 367.6761258813662
Iteration: 5, Func. Count: 40, Neg. LLF: 670.0880318062923
Iteration: 6, Func. Count: 48, Neg. LLF: 871.6546470303075
Iteration: 7, Func. Count: 56, Neg. LLF: 72395.46051876975
Iteration: 8, Func. Count: 64, Neg. LLF: 971695.4199315821
Iteration: 9, Func. Count: 72, Neg. LLF: 1736.6690881885536
Iteration: 10, Func. Count: 80, Neg. LLF: 386.465962607716
Iteration: 11, Func. Count: 88, Neg. LLF: 122.173884102699
Iteration: 12, Func. Count: 96, Neg. LLF: 238.4240864163511
Iteration: 13, Func. Count: 104, Neg. LLF: 113.66633983964613
Iteration: 14, Func. Count: 112, Neg. LLF: 111.9809050950705
Iteration: 15, Func. Count: 119, Neg. LLF: 111.93870701022374
Iteration: 16, Func. Count: 126, Neg. LLF: 111.94026367122356
Iteration: 17, Func. Count: 134, Neg. LLF: 111.93250822331677
Iteration: 18, Func. Count: 141, Neg. LLF: 111.93221893704359
Iteration: 19, Func. Count: 148, Neg. LLF: 111.9321840086232
Iteration: 20, Func. Count: 154, Neg. LLF: 111.9321839697805
Optimization terminated successfully (Exit mode 0)
Current function value: 111.9321840086232
Iterations: 20
Function evaluations: 154
Gradient evaluations: 20
Iteration: 1, Func. Count: 9, Neg. LLF: 617.3351043594276
Iteration: 2, Func. Count: 18, Neg. LLF: 542.3569030004309
Iteration: 3, Func. Count: 27, Neg. LLF: 176.78881209081072
Iteration: 4, Func. Count: 36, Neg. LLF: 533.8879176976278
Iteration: 5, Func. Count: 45, Neg. LLF: 124.73602753222472
Iteration: 6, Func. Count: 54, Neg. LLF: 112.99171560639793
Iteration: 7, Func. Count: 62, Neg. LLF: 278.09459148147295
Iteration: 8, Func. Count: 71, Neg. LLF: 112.22332327342266
Iteration: 9, Func. Count: 79, Neg. LLF: 111.95481938835516
Iteration: 10, Func. Count: 87, Neg. LLF: 111.93762167932147
Iteration: 11, Func. Count: 95, Neg. LLF: 111.93335322345004
Iteration: 12, Func. Count: 103, Neg. LLF: 111.93250902610619
Iteration: 13, Func. Count: 111, Neg. LLF: 111.9323264229754
Iteration: 14, Func. Count: 119, Neg. LLF: 111.9322266888153
Iteration: 15, Func. Count: 127, Neg. LLF: 111.9321836661375
Iteration: 16, Func. Count: 134, Neg. LLF: 111.9321837701166
Optimization terminated successfully (Exit mode 0)
Current function value: 111.9321836661375
Iterations: 16
Function evaluations: 134
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 415.5334220401908
Iteration: 2, Func. Count: 20, Neg. LLF: 15344.138164145652
Iteration: 3, Func. Count: 30, Neg. LLF: 7059179.996180141
Iteration: 4, Func. Count: 40, Neg. LLF: 191.2707173953207
Iteration: 5, Func. Count: 50, Neg. LLF: 212.46617875145392
Iteration: 6, Func. Count: 60, Neg. LLF: 112.79982232268888
Iteration: 7, Func. Count: 69, Neg. LLF: 112.29882646739301
Iteration: 8, Func. Count: 78, Neg. LLF: 112.0062561740297
Iteration: 9, Func. Count: 87, Neg. LLF: 111.93899836201092
Iteration: 10, Func. Count: 96, Neg. LLF: 111.93337109742208
Iteration: 11, Func. Count: 105, Neg. LLF: 111.93240827172093
Iteration: 12, Func. Count: 114, Neg. LLF: 111.93221237172897
Iteration: 13, Func. Count: 123, Neg. LLF: 111.93218397383697
Iteration: 14, Func. Count: 131, Neg. LLF: 111.93218421518456
Optimization terminated successfully (Exit mode 0)
Current function value: 111.93218397383697
Iterations: 14
Function evaluations: 131
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 376.66598501769687
Iteration: 2, Func. Count: 22, Neg. LLF: 169.51810643675134
Iteration: 3, Func. Count: 33, Neg. LLF: 404.2117531858719
Iteration: 4, Func. Count: 44, Neg. LLF: 557.2798170575464
Iteration: 5, Func. Count: 55, Neg. LLF: 236.90290242337213
Iteration: 6, Func. Count: 66, Neg. LLF: 112.723987119628
Iteration: 7, Func. Count: 76, Neg. LLF: 115.0008386168153
Iteration: 8, Func. Count: 87, Neg. LLF: 135.50942267318976
Iteration: 9, Func. Count: 98, Neg. LLF: 112.99327990251324
Iteration: 10, Func. Count: 109, Neg. LLF: 112.7868363190145
Iteration: 11, Func. Count: 120, Neg. LLF: 111.86414058891285
Iteration: 12, Func. Count: 130, Neg. LLF: 111.851875530278
Iteration: 13, Func. Count: 140, Neg. LLF: 111.85100076452251
Iteration: 14, Func. Count: 150, Neg. LLF: 111.85089388501359
Iteration: 15, Func. Count: 160, Neg. LLF: 111.85086390034537
Iteration: 16, Func. Count: 170, Neg. LLF: 111.85086151829982
Iteration: 17, Func. Count: 179, Neg. LLF: 111.8508614401794
Optimization terminated successfully (Exit mode 0)
Current function value: 111.85086151829982
Iterations: 17
Function evaluations: 179
Gradient evaluations: 17
Iteration: 1, Func. Count: 12, Neg. LLF: 357.0068616130074
Iteration: 2, Func. Count: 24, Neg. LLF: 169.55175378029475
Iteration: 3, Func. Count: 36, Neg. LLF: 231.81805677844
Iteration: 4, Func. Count: 48, Neg. LLF: 986652.9454163669
Iteration: 5, Func. Count: 60, Neg. LLF: 3369.174438681217
Iteration: 6, Func. Count: 72, Neg. LLF: 112.41693774401183
Iteration: 7, Func. Count: 83, Neg. LLF: 121.60469747493201
Iteration: 8, Func. Count: 95, Neg. LLF: 157.19514394167325
Iteration: 9, Func. Count: 107, Neg. LLF: 112.10671961261284
Iteration: 10, Func. Count: 119, Neg. LLF: 113.62282328336433
Iteration: 11, Func. Count: 131, Neg. LLF: 111.89051063135423
Iteration: 12, Func. Count: 142, Neg. LLF: 111.88057512505843
Iteration: 13, Func. Count: 153, Neg. LLF: 111.87971306613174
Iteration: 14, Func. Count: 164, Neg. LLF: 111.87952820778216
Iteration: 15, Func. Count: 175, Neg. LLF: 111.87951055935818
Iteration: 16, Func. Count: 186, Neg. LLF: 111.87950738844944
Iteration: 17, Func. Count: 196, Neg. LLF: 111.8795073070885
Optimization terminated successfully (Exit mode 0)
Current function value: 111.87950738844944
Iterations: 17
Function evaluations: 196
Gradient evaluations: 17
Iteration: 1, Func. Count: 9, Neg. LLF: 163.419438966661
Iteration: 2, Func. Count: 18, Neg. LLF: 120.32395081331765
Iteration: 3, Func. Count: 26, Neg. LLF: 119.8201719345632
Iteration: 4, Func. Count: 35, Neg. LLF: 590.5267047434506
Iteration: 5, Func. Count: 44, Neg. LLF: 872.3017651377673
Iteration: 6, Func. Count: 53, Neg. LLF: 206.63238238329185
Iteration: 7, Func. Count: 62, Neg. LLF: 219.03984726031155
Iteration: 8, Func. Count: 71, Neg. LLF: 206.80759933554606
Iteration: 9, Func. Count: 80, Neg. LLF: 202.5160636690361
Iteration: 10, Func. Count: 89, Neg. LLF: 190.30080912449034
Iteration: 11, Func. Count: 98, Neg. LLF: 196.24511242586948
Iteration: 12, Func. Count: 107, Neg. LLF: 204.52772216048226
Iteration: 13, Func. Count: 116, Neg. LLF: 202.66063168357508
Iteration: 14, Func. Count: 125, Neg. LLF: 113.13270003553205
Iteration: 15, Func. Count: 134, Neg. LLF: 112.3517759690753
Iteration: 16, Func. Count: 143, Neg. LLF: 112.33814938854003
Iteration: 17, Func. Count: 152, Neg. LLF: 111.99021982164933
Iteration: 18, Func. Count: 160, Neg. LLF: 111.9443136862128
Iteration: 19, Func. Count: 168, Neg. LLF: 111.93398544264141
Iteration: 20, Func. Count: 176, Neg. LLF: 111.93276397972213
Iteration: 21, Func. Count: 184, Neg. LLF: 111.93248372265467
Iteration: 22, Func. Count: 192, Neg. LLF: 111.93222855506531
Iteration: 23, Func. Count: 200, Neg. LLF: 111.93218513604499
Iteration: 24, Func. Count: 208, Neg. LLF: 111.93218364283226
Iteration: 25, Func. Count: 215, Neg. LLF: 111.9321839669801
Optimization terminated successfully (Exit mode 0)
Current function value: 111.93218364283226
Iterations: 25
Function evaluations: 215
Gradient evaluations: 25
Iteration: 1, Func. Count: 10, Neg. LLF: 280.4191481103788
Iteration: 2, Func. Count: 20, Neg. LLF: 301919.8705708509
Iteration: 3, Func. Count: 30, Neg. LLF: 172.71584221005338
Iteration: 4, Func. Count: 40, Neg. LLF: 243794.12320604295
Iteration: 5, Func. Count: 50, Neg. LLF: 126.42102240468395
Iteration: 6, Func. Count: 60, Neg. LLF: 113.12029409272417
Iteration: 7, Func. Count: 69, Neg. LLF: 1802.9809564934492
Iteration: 8, Func. Count: 79, Neg. LLF: 112.45189707709422
Iteration: 9, Func. Count: 88, Neg. LLF: 111.99564071423707
Iteration: 10, Func. Count: 97, Neg. LLF: 111.97565571545172
Iteration: 11, Func. Count: 106, Neg. LLF: 111.93544763051538
Iteration: 12, Func. Count: 115, Neg. LLF: 111.93284033071042
Iteration: 13, Func. Count: 124, Neg. LLF: 111.9323617266298
Iteration: 14, Func. Count: 133, Neg. LLF: 111.93226170859768
Iteration: 15, Func. Count: 142, Neg. LLF: 111.93220206512582
Iteration: 16, Func. Count: 151, Neg. LLF: 111.93218780134043
Iteration: 17, Func. Count: 160, Neg. LLF: 111.93218378637579
Iteration: 18, Func. Count: 168, Neg. LLF: 111.93218389038249
Optimization terminated successfully (Exit mode 0)
Current function value: 111.93218378637579
Iterations: 18
Function evaluations: 168
Gradient evaluations: 18
Iteration: 1, Func. Count: 11, Neg. LLF: 365.54884397925485
Iteration: 2, Func. Count: 22, Neg. LLF: 549.1339082821333
Iteration: 3, Func. Count: 33, Neg. LLF: 6856078.649141574
Iteration: 4, Func. Count: 44, Neg. LLF: 240.73861342226692
Iteration: 5, Func. Count: 55, Neg. LLF: 177.7464681384789
Iteration: 6, Func. Count: 66, Neg. LLF: 112.56038664626688
Iteration: 7, Func. Count: 76, Neg. LLF: 115.406646422668
Iteration: 8, Func. Count: 87, Neg. LLF: 111.99194145374652
Iteration: 9, Func. Count: 97, Neg. LLF: 111.94201712601958
Iteration: 10, Func. Count: 107, Neg. LLF: 111.93824015074449
Iteration: 11, Func. Count: 117, Neg. LLF: 111.93223335177375
Iteration: 12, Func. Count: 127, Neg. LLF: 111.93218627720313
Iteration: 13, Func. Count: 137, Neg. LLF: 111.93218451734971
Iteration: 14, Func. Count: 147, Neg. LLF: 111.9321836765244
Optimization terminated successfully (Exit mode 0)
Current function value: 111.9321836765244
Iterations: 14
Function evaluations: 147
Gradient evaluations: 14
Iteration: 1, Func. Count: 12, Neg. LLF: 335.2728716328572
Iteration: 2, Func. Count: 24, Neg. LLF: 1856.0398903594871
Iteration: 3, Func. Count: 36, Neg. LLF: 285.6822126143851
Iteration: 4, Func. Count: 48, Neg. LLF: 319.12171387961035
Iteration: 5, Func. Count: 60, Neg. LLF: 128.0013232620959
Iteration: 6, Func. Count: 72, Neg. LLF: 261.8560138875547
Iteration: 7, Func. Count: 84, Neg. LLF: 112.90144751457198
Iteration: 8, Func. Count: 95, Neg. LLF: 112.19647934033395
Iteration: 9, Func. Count: 106, Neg. LLF: 138.591782464963
Iteration: 10, Func. Count: 119, Neg. LLF: 112.80809059290635
Iteration: 11, Func. Count: 131, Neg. LLF: 111.99375582384927
Iteration: 12, Func. Count: 143, Neg. LLF: 111.8575636917101
Iteration: 13, Func. Count: 154, Neg. LLF: 111.8532490103337
Iteration: 14, Func. Count: 165, Neg. LLF: 111.85102404726952
Iteration: 15, Func. Count: 176, Neg. LLF: 111.85090179711669
Iteration: 16, Func. Count: 187, Neg. LLF: 111.85086308024523
Iteration: 17, Func. Count: 198, Neg. LLF: 111.85086178096806
Iteration: 18, Func. Count: 208, Neg. LLF: 111.8508617031915
Optimization terminated successfully (Exit mode 0)
Current function value: 111.85086178096806
Iterations: 18
Function evaluations: 208
Gradient evaluations: 18
Iteration: 1, Func. Count: 13, Neg. LLF: 323.4785390170452
Iteration: 2, Func. Count: 26, Neg. LLF: 688.9219373974776
Iteration: 3, Func. Count: 39, Neg. LLF: 184.46917447884823
Iteration: 4, Func. Count: 52, Neg. LLF: 92778.27675447031
Iteration: 5, Func. Count: 65, Neg. LLF: 2096.5937024230675
Iteration: 6, Func. Count: 78, Neg. LLF: 112.06929019772414
Iteration: 7, Func. Count: 90, Neg. LLF: 116.64803536672517
Iteration: 8, Func. Count: 103, Neg. LLF: 114.58370609924303
Iteration: 9, Func. Count: 116, Neg. LLF: 111.96102383260946
Iteration: 10, Func. Count: 129, Neg. LLF: 111.86227384205576
Iteration: 11, Func. Count: 141, Neg. LLF: 111.85240214952614
Iteration: 12, Func. Count: 153, Neg. LLF: 111.85102015063448
Iteration: 13, Func. Count: 165, Neg. LLF: 111.85087543226093
Iteration: 14, Func. Count: 177, Neg. LLF: 111.85086194962155
Iteration: 15, Func. Count: 188, Neg. LLF: 111.85086193557048
Optimization terminated successfully (Exit mode 0)
Current function value: 111.85086194962155
Iterations: 15
Function evaluations: 188
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 158.83944639099033
Iteration: 2, Func. Count: 20, Neg. LLF: 120.39352767019679
Iteration: 3, Func. Count: 29, Neg. LLF: 121.37088160813883
Iteration: 4, Func. Count: 39, Neg. LLF: 188.2456386099326
Iteration: 5, Func. Count: 49, Neg. LLF: 285.48681051327287
Iteration: 6, Func. Count: 59, Neg. LLF: 196.8835590160332
Iteration: 7, Func. Count: 69, Neg. LLF: 223.2023697974305
Iteration: 8, Func. Count: 79, Neg. LLF: 224.7295683189535
Iteration: 9, Func. Count: 89, Neg. LLF: 198.7785301167536
Iteration: 10, Func. Count: 99, Neg. LLF: 221.7458339376999
Iteration: 11, Func. Count: 109, Neg. LLF: 202.66698851894319
Iteration: 12, Func. Count: 119, Neg. LLF: 214.25940234800737
Iteration: 13, Func. Count: 129, Neg. LLF: 493.4185132176552
Iteration: 14, Func. Count: 139, Neg. LLF: 214.04014405428768
Iteration: 15, Func. Count: 149, Neg. LLF: 113.86680649991223
Iteration: 16, Func. Count: 159, Neg. LLF: 214.24872396059945
Iteration: 17, Func. Count: 169, Neg. LLF: 112.2168142773326
Iteration: 18, Func. Count: 178, Neg. LLF: 112.16897520073341
Iteration: 19, Func. Count: 187, Neg. LLF: 112.09800578800672
Iteration: 20, Func. Count: 196, Neg. LLF: 111.99711935302449
Iteration: 21, Func. Count: 205, Neg. LLF: 111.9669217074506
Iteration: 22, Func. Count: 214, Neg. LLF: 111.94546227777248
Iteration: 23, Func. Count: 223, Neg. LLF: 111.93816059695028
Iteration: 24, Func. Count: 232, Neg. LLF: 111.9322870771686
Iteration: 25, Func. Count: 241, Neg. LLF: 111.93218902540193
Iteration: 26, Func. Count: 250, Neg. LLF: 111.9321838372079
Iteration: 27, Func. Count: 258, Neg. LLF: 111.93218401651477
Optimization terminated successfully (Exit mode 0)
Current function value: 111.9321838372079
Iterations: 27
Function evaluations: 258
Gradient evaluations: 27
Iteration: 1, Func. Count: 11, Neg. LLF: 250.47565618697044
Iteration: 2, Func. Count: 22, Neg. LLF: 1599.9338908900427
Iteration: 3, Func. Count: 33, Neg. LLF: 245.95697312918657
Iteration: 4, Func. Count: 44, Neg. LLF: 2298.2654315000336
Iteration: 5, Func. Count: 55, Neg. LLF: 127.70317089056422
Iteration: 6, Func. Count: 66, Neg. LLF: 113.16758671770724
Iteration: 7, Func. Count: 76, Neg. LLF: 139.12958913880192
Iteration: 8, Func. Count: 87, Neg. LLF: 112.9050571559134
Iteration: 9, Func. Count: 98, Neg. LLF: 112.00172498721021
Iteration: 10, Func. Count: 108, Neg. LLF: 111.94359411571683
Iteration: 11, Func. Count: 118, Neg. LLF: 111.93388544889326
Iteration: 12, Func. Count: 128, Neg. LLF: 111.93250927027367
Iteration: 13, Func. Count: 138, Neg. LLF: 111.93234431868255
Iteration: 14, Func. Count: 148, Neg. LLF: 111.932255726361
Iteration: 15, Func. Count: 158, Neg. LLF: 111.93218723067521
Iteration: 16, Func. Count: 168, Neg. LLF: 111.93218373396398
Iteration: 17, Func. Count: 177, Neg. LLF: 111.93218383790806
Optimization terminated successfully (Exit mode 0)
Current function value: 111.93218373396398
Iterations: 17
Function evaluations: 177
Gradient evaluations: 17
Iteration: 1, Func. Count: 12, Neg. LLF: 342.4300142178021
Iteration: 2, Func. Count: 24, Neg. LLF: 4557.28088900266
Iteration: 3, Func. Count: 36, Neg. LLF: 6928851.436893437
Iteration: 4, Func. Count: 48, Neg. LLF: 298.06689625529424
Iteration: 5, Func. Count: 60, Neg. LLF: 166.9615244618288
Iteration: 6, Func. Count: 72, Neg. LLF: 112.64524888645323
Iteration: 7, Func. Count: 83, Neg. LLF: 112.01409014896323
Iteration: 8, Func. Count: 94, Neg. LLF: 111.95674604094394
Iteration: 9, Func. Count: 105, Neg. LLF: 111.93976783027884
Iteration: 10, Func. Count: 116, Neg. LLF: 111.93357287076248
Iteration: 11, Func. Count: 127, Neg. LLF: 111.93227976533318
Iteration: 12, Func. Count: 138, Neg. LLF: 111.93221699714323
Iteration: 13, Func. Count: 149, Neg. LLF: 111.93218510192439
Iteration: 14, Func. Count: 160, Neg. LLF: 111.93218366222843
Iteration: 15, Func. Count: 170, Neg. LLF: 111.93218390359506
Optimization terminated successfully (Exit mode 0)
Current function value: 111.93218366222843
Iterations: 15
Function evaluations: 170
Gradient evaluations: 15
Iteration: 1, Func. Count: 13, Neg. LLF: 319.6554985570855
Iteration: 2, Func. Count: 26, Neg. LLF: 258.6741224301271
Iteration: 3, Func. Count: 39, Neg. LLF: 7021820.862011621
Iteration: 4, Func. Count: 52, Neg. LLF: 151.62312086208215
Iteration: 5, Func. Count: 65, Neg. LLF: 148.46214126859752
Iteration: 6, Func. Count: 78, Neg. LLF: 113.03919411176828
Iteration: 7, Func. Count: 90, Neg. LLF: 112.30462430445809
Iteration: 8, Func. Count: 102, Neg. LLF: 132.12723728003596
Iteration: 9, Func. Count: 115, Neg. LLF: 125.76951654978151
Iteration: 10, Func. Count: 129, Neg. LLF: 111.88222017809028
Iteration: 11, Func. Count: 141, Neg. LLF: 111.8646701244833
Iteration: 12, Func. Count: 153, Neg. LLF: 111.85412631071856
Iteration: 13, Func. Count: 165, Neg. LLF: 111.85189323812064
Iteration: 14, Func. Count: 177, Neg. LLF: 111.85088241065569
Iteration: 15, Func. Count: 189, Neg. LLF: 111.85086516183924
Iteration: 16, Func. Count: 201, Neg. LLF: 111.85086185405447
Iteration: 17, Func. Count: 212, Neg. LLF: 111.85086177580584
Optimization terminated successfully (Exit mode 0)
Current function value: 111.85086185405447
Iterations: 17
Function evaluations: 212
Gradient evaluations: 17
Iteration: 1, Func. Count: 14, Neg. LLF: 306.69859575065726
Iteration: 2, Func. Count: 28, Neg. LLF: 987.9159197978169
Iteration: 3, Func. Count: 42, Neg. LLF: 2581.082135112704
Iteration: 4, Func. Count: 56, Neg. LLF: 157.55122346858738
Iteration: 5, Func. Count: 70, Neg. LLF: 165.1134914194951
Iteration: 6, Func. Count: 84, Neg. LLF: 112.5528423819938
Iteration: 7, Func. Count: 97, Neg. LLF: 208.4982354814338
Iteration: 8, Func. Count: 111, Neg. LLF: 126.1594503505539
Iteration: 9, Func. Count: 125, Neg. LLF: 115.07110904998765
Iteration: 10, Func. Count: 140, Neg. LLF: 112.1385223944973
Iteration: 11, Func. Count: 154, Neg. LLF: 111.85992449118064
Iteration: 12, Func. Count: 167, Neg. LLF: 111.8518235152821
Iteration: 13, Func. Count: 180, Neg. LLF: 111.8509643346741
Iteration: 14, Func. Count: 193, Neg. LLF: 111.85089388199123
Iteration: 15, Func. Count: 206, Neg. LLF: 111.85086722599311
Iteration: 16, Func. Count: 219, Neg. LLF: 111.85086176302737
Iteration: 17, Func. Count: 231, Neg. LLF: 111.8508617489201
Optimization terminated successfully (Exit mode 0)
Current function value: 111.85086176302737
Iterations: 17
Function evaluations: 231
Gradient evaluations: 17
Iteration: 1, Func. Count: 7, Neg. LLF: 140.98833250064087
Iteration: 2, Func. Count: 14, Neg. LLF: 136.97147633465516
Iteration: 3, Func. Count: 21, Neg. LLF: 120.59246922433935
Iteration: 4, Func. Count: 27, Neg. LLF: 114.2226343797683
Iteration: 5, Func. Count: 33, Neg. LLF: 151.48959605904824
Iteration: 6, Func. Count: 40, Neg. LLF: 162.13825950241127
Iteration: 7, Func. Count: 47, Neg. LLF: 182.71214252350828
Iteration: 8, Func. Count: 54, Neg. LLF: 135.81416358754655
Iteration: 9, Func. Count: 61, Neg. LLF: 113.74135603116879
Iteration: 10, Func. Count: 68, Neg. LLF: 112.6959391195908
Iteration: 11, Func. Count: 74, Neg. LLF: 112.66395725038986
Iteration: 12, Func. Count: 80, Neg. LLF: 112.66251851259679
Iteration: 13, Func. Count: 86, Neg. LLF: 112.66246727296551
Iteration: 14, Func. Count: 92, Neg. LLF: 112.66246654915967
Optimization terminated successfully (Exit mode 0)
Current function value: 112.66246654915967
Iterations: 14
Function evaluations: 92
Gradient evaluations: 14
Iteration: 1, Func. Count: 8, Neg. LLF: 228.24677422249982
Iteration: 2, Func. Count: 16, Neg. LLF: 237.79157540349226
Iteration: 3, Func. Count: 24, Neg. LLF: 6232.18447386233
Iteration: 4, Func. Count: 32, Neg. LLF: 152.93085721709508
Iteration: 5, Func. Count: 40, Neg. LLF: 122.84814231305556
Iteration: 6, Func. Count: 48, Neg. LLF: 123.7670328331836
Iteration: 7, Func. Count: 56, Neg. LLF: 112.77749121830375
Iteration: 8, Func. Count: 63, Neg. LLF: 112.70078060567471
Iteration: 9, Func. Count: 70, Neg. LLF: 112.66278184040235
Iteration: 10, Func. Count: 77, Neg. LLF: 112.6625106537487
Iteration: 11, Func. Count: 84, Neg. LLF: 112.66248628718898
Iteration: 12, Func. Count: 91, Neg. LLF: 112.66246653564397
Iteration: 13, Func. Count: 97, Neg. LLF: 112.66246665966472
Optimization terminated successfully (Exit mode 0)
Current function value: 112.66246653564397
Iterations: 13
Function evaluations: 97
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 189.63441100450916
Iteration: 2, Func. Count: 18, Neg. LLF: 239.94616271844313
Iteration: 3, Func. Count: 27, Neg. LLF: 779.4065486972592
Iteration: 4, Func. Count: 36, Neg. LLF: 119.04817019441197
Iteration: 5, Func. Count: 45, Neg. LLF: 112.92896667855169
Iteration: 6, Func. Count: 53, Neg. LLF: 112.9577610783968
Iteration: 7, Func. Count: 62, Neg. LLF: 112.68999575488984
Iteration: 8, Func. Count: 70, Neg. LLF: 112.66694359544775
Iteration: 9, Func. Count: 78, Neg. LLF: 112.66248076208888
Iteration: 10, Func. Count: 86, Neg. LLF: 112.66246648418955
Iteration: 11, Func. Count: 93, Neg. LLF: 112.66246674944554
Optimization terminated successfully (Exit mode 0)
Current function value: 112.66246648418955
Iterations: 11
Function evaluations: 93
Gradient evaluations: 11
Iteration: 1, Func. Count: 10, Neg. LLF: 177.07476654785904
Iteration: 2, Func. Count: 20, Neg. LLF: 141.93358180903024
Iteration: 3, Func. Count: 30, Neg. LLF: 9316.393985949246
Iteration: 4, Func. Count: 40, Neg. LLF: 125.45120104113516
Iteration: 5, Func. Count: 50, Neg. LLF: 113.24121282293356
Iteration: 6, Func. Count: 59, Neg. LLF: 113.1834343417015
Iteration: 7, Func. Count: 69, Neg. LLF: 117.91078722497821
Iteration: 8, Func. Count: 80, Neg. LLF: 112.52276404703991
Iteration: 9, Func. Count: 89, Neg. LLF: 112.46586958712547
Iteration: 10, Func. Count: 98, Neg. LLF: 112.45793341590013
Iteration: 11, Func. Count: 107, Neg. LLF: 112.45373563659263
Iteration: 12, Func. Count: 116, Neg. LLF: 112.45269415504579
Iteration: 13, Func. Count: 125, Neg. LLF: 112.45256623786878
Iteration: 14, Func. Count: 134, Neg. LLF: 112.45256471382065
Iteration: 15, Func. Count: 142, Neg. LLF: 112.45256464179441
Optimization terminated successfully (Exit mode 0)
Current function value: 112.45256471382065
Iterations: 15
Function evaluations: 142
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 172.56216536480903
Iteration: 2, Func. Count: 22, Neg. LLF: 138.0684082217028
Iteration: 3, Func. Count: 33, Neg. LLF: 980.8819801298301
Iteration: 4, Func. Count: 44, Neg. LLF: 146.449340342282
Iteration: 5, Func. Count: 55, Neg. LLF: 127.34773484204291
Iteration: 6, Func. Count: 66, Neg. LLF: 116.99162505376229
Iteration: 7, Func. Count: 77, Neg. LLF: 113.17373925154129
Iteration: 8, Func. Count: 87, Neg. LLF: 133.0799085285286
Iteration: 9, Func. Count: 99, Neg. LLF: 112.78449903457728
Iteration: 10, Func. Count: 109, Neg. LLF: 112.44450180188326
Iteration: 11, Func. Count: 119, Neg. LLF: 112.43445832583329
Iteration: 12, Func. Count: 129, Neg. LLF: 112.43167021668839
Iteration: 13, Func. Count: 139, Neg. LLF: 112.4301550580061
Iteration: 14, Func. Count: 149, Neg. LLF: 112.42980841194351
Iteration: 15, Func. Count: 159, Neg. LLF: 112.42977938857265
Iteration: 16, Func. Count: 169, Neg. LLF: 112.42977580496918
Iteration: 17, Func. Count: 179, Neg. LLF: 112.42977422765684
Iteration: 18, Func. Count: 188, Neg. LLF: 112.42977415094484
Optimization terminated successfully (Exit mode 0)
Current function value: 112.42977422765684
Iterations: 18
Function evaluations: 188
Gradient evaluations: 18
Iteration: 1, Func. Count: 8, Neg. LLF: 133.0054000364941
Iteration: 2, Func. Count: 16, Neg. LLF: 140.92112660278408
Iteration: 3, Func. Count: 24, Neg. LLF: 118.68400563473648
Iteration: 4, Func. Count: 31, Neg. LLF: 615.7197509214986
Iteration: 5, Func. Count: 39, Neg. LLF: 5918.480501402476
Iteration: 6, Func. Count: 47, Neg. LLF: 321.38233321412434
Iteration: 7, Func. Count: 55, Neg. LLF: 330.36285668357834
Iteration: 8, Func. Count: 63, Neg. LLF: 344.46967012970185
Iteration: 9, Func. Count: 71, Neg. LLF: 773.5926571227664
Iteration: 10, Func. Count: 79, Neg. LLF: 451.1003829075935
Iteration: 11, Func. Count: 87, Neg. LLF: 47825.02790894432
Iteration: 12, Func. Count: 95, Neg. LLF: 415.6356208429646
Iteration: 13, Func. Count: 103, Neg. LLF: 347.02727343650974
Iteration: 14, Func. Count: 111, Neg. LLF: 129.58425123879695
Iteration: 15, Func. Count: 119, Neg. LLF: 145.736977702792
Iteration: 16, Func. Count: 127, Neg. LLF: 112.59356559862395
Iteration: 17, Func. Count: 134, Neg. LLF: 112.19894041596255
Iteration: 18, Func. Count: 141, Neg. LLF: 112.10286513007007
Iteration: 19, Func. Count: 148, Neg. LLF: 112.04094966817631
Iteration: 20, Func. Count: 155, Neg. LLF: 112.03740579274043
Iteration: 21, Func. Count: 162, Neg. LLF: 112.03713017459832
Iteration: 22, Func. Count: 169, Neg. LLF: 112.03711946508751
Iteration: 23, Func. Count: 176, Neg. LLF: 112.03711866749082
Optimization terminated successfully (Exit mode 0)
Current function value: 112.03711866749082
Iterations: 23
Function evaluations: 176
Gradient evaluations: 23
Iteration: 1, Func. Count: 9, Neg. LLF: 188.06042487597767
Iteration: 2, Func. Count: 18, Neg. LLF: 145.21032445014245
Iteration: 3, Func. Count: 27, Neg. LLF: 1177.497137807439
Iteration: 4, Func. Count: 36, Neg. LLF: 180.52099333166117
Iteration: 5, Func. Count: 45, Neg. LLF: 120.73311067547903
Iteration: 6, Func. Count: 54, Neg. LLF: 112.56216719398445
Iteration: 7, Func. Count: 62, Neg. LLF: 112.16513177132227
Iteration: 8, Func. Count: 70, Neg. LLF: 112.05139450705231
Iteration: 9, Func. Count: 78, Neg. LLF: 112.03757386423237
Iteration: 10, Func. Count: 86, Neg. LLF: 112.03712640418573
Iteration: 11, Func. Count: 94, Neg. LLF: 112.03711918495775
Iteration: 12, Func. Count: 101, Neg. LLF: 112.03711930984413
Optimization terminated successfully (Exit mode 0)
Current function value: 112.03711918495775
Iterations: 12
Function evaluations: 101
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 168.41400730372004
Iteration: 2, Func. Count: 20, Neg. LLF: 148.99312255850296
Iteration: 3, Func. Count: 30, Neg. LLF: 765.6369467125076
Iteration: 4, Func. Count: 40, Neg. LLF: 256.5955525923671
Iteration: 5, Func. Count: 50, Neg. LLF: 113.48790721705817
Iteration: 6, Func. Count: 59, Neg. LLF: 112.45201191964789
Iteration: 7, Func. Count: 68, Neg. LLF: 113.30044985986576
Iteration: 8, Func. Count: 78, Neg. LLF: 112.0678349852869
Iteration: 9, Func. Count: 87, Neg. LLF: 112.03773275637461
Iteration: 10, Func. Count: 96, Neg. LLF: 112.037184610988
Iteration: 11, Func. Count: 105, Neg. LLF: 112.03712131510153
Iteration: 12, Func. Count: 114, Neg. LLF: 112.03711867067858
Iteration: 13, Func. Count: 122, Neg. LLF: 112.03711890003875
Optimization terminated successfully (Exit mode 0)
Current function value: 112.03711867067858
Iterations: 13
Function evaluations: 122
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 161.89099747828942
Iteration: 2, Func. Count: 22, Neg. LLF: 146.58372091903473
Iteration: 3, Func. Count: 33, Neg. LLF: 196.55825649171635
Iteration: 4, Func. Count: 44, Neg. LLF: 764.0688058237017
Iteration: 5, Func. Count: 55, Neg. LLF: 1135.4142980714053
Iteration: 6, Func. Count: 66, Neg. LLF: 112.96476494537352
Iteration: 7, Func. Count: 76, Neg. LLF: 133.6999510432733
Iteration: 8, Func. Count: 87, Neg. LLF: 122.9347784733609
Iteration: 9, Func. Count: 100, Neg. LLF: 113.2886564785868
Iteration: 10, Func. Count: 111, Neg. LLF: 111.96286324725916
Iteration: 11, Func. Count: 121, Neg. LLF: 111.94937205684386
Iteration: 12, Func. Count: 131, Neg. LLF: 111.94519264341925
Iteration: 13, Func. Count: 141, Neg. LLF: 111.94490330629009
Iteration: 14, Func. Count: 151, Neg. LLF: 111.94473636571406
Iteration: 15, Func. Count: 161, Neg. LLF: 111.94471075855259
Iteration: 16, Func. Count: 171, Neg. LLF: 111.94469073743126
Iteration: 17, Func. Count: 181, Neg. LLF: 111.94468969092836
Iteration: 18, Func. Count: 190, Neg. LLF: 111.9446896111288
Optimization terminated successfully (Exit mode 0)
Current function value: 111.94468969092836
Iterations: 18
Function evaluations: 190
Gradient evaluations: 18
Iteration: 1, Func. Count: 12, Neg. LLF: 160.78491625089157
Iteration: 2, Func. Count: 24, Neg. LLF: 144.6273473551654
Iteration: 3, Func. Count: 36, Neg. LLF: 177.81236515796004
Iteration: 4, Func. Count: 48, Neg. LLF: 713.16819980498
Iteration: 5, Func. Count: 60, Neg. LLF: 870.6043272743251
Iteration: 6, Func. Count: 72, Neg. LLF: 113.95647454301293
Iteration: 7, Func. Count: 83, Neg. LLF: 115.42781885930711
Iteration: 8, Func. Count: 96, Neg. LLF: 122.93974229456322
Iteration: 9, Func. Count: 109, Neg. LLF: 111.9998906783087
Iteration: 10, Func. Count: 120, Neg. LLF: 113.34481679357333
Iteration: 11, Func. Count: 132, Neg. LLF: 111.94561201819721
Iteration: 12, Func. Count: 143, Neg. LLF: 111.94481713632658
Iteration: 13, Func. Count: 154, Neg. LLF: 111.94469479454611
Iteration: 14, Func. Count: 165, Neg. LLF: 111.94469105030049
Iteration: 15, Func. Count: 176, Neg. LLF: 111.94468963508038
Iteration: 16, Func. Count: 186, Neg. LLF: 111.9446896231643
Optimization terminated successfully (Exit mode 0)
Current function value: 111.94468963508038
Iterations: 16
Function evaluations: 186
Gradient evaluations: 16
Iteration: 1, Func. Count: 9, Neg. LLF: 151.62035198221716
Iteration: 2, Func. Count: 18, Neg. LLF: 125.16686267245153
Iteration: 3, Func. Count: 27, Neg. LLF: 119.38808352748293
Iteration: 4, Func. Count: 35, Neg. LLF: 4512.712137310761
Iteration: 5, Func. Count: 44, Neg. LLF: 2024.922221335083
Iteration: 6, Func. Count: 53, Neg. LLF: 1940.54082023221
Iteration: 7, Func. Count: 62, Neg. LLF: 49291.660636639346
Iteration: 8, Func. Count: 71, Neg. LLF: 969046.8111244069
Iteration: 9, Func. Count: 80, Neg. LLF: 2174.556315299534
Iteration: 10, Func. Count: 89, Neg. LLF: 1908.890688098918
Iteration: 11, Func. Count: 98, Neg. LLF: 291.7434763297979
Iteration: 12, Func. Count: 107, Neg. LLF: 882.9967791434352
Iteration: 13, Func. Count: 116, Neg. LLF: 198.14825627653963
Iteration: 14, Func. Count: 125, Neg. LLF: 128.44218724245667
Iteration: 15, Func. Count: 134, Neg. LLF: 112.1643231132925
Iteration: 16, Func. Count: 142, Neg. LLF: 112.1574352523587
Iteration: 17, Func. Count: 151, Neg. LLF: 112.06808114840297
Iteration: 18, Func. Count: 160, Neg. LLF: 112.00960668710387
Iteration: 19, Func. Count: 168, Neg. LLF: 111.93614430922182
Iteration: 20, Func. Count: 176, Neg. LLF: 111.93224529895947
Iteration: 21, Func. Count: 184, Neg. LLF: 111.93218791638989
Iteration: 22, Func. Count: 192, Neg. LLF: 111.93218371812554
Iteration: 23, Func. Count: 199, Neg. LLF: 111.93218367932539
Optimization terminated successfully (Exit mode 0)
Current function value: 111.93218371812554
Iterations: 23
Function evaluations: 199
Gradient evaluations: 23
Iteration: 1, Func. Count: 10, Neg. LLF: 263.50028524952717
Iteration: 2, Func. Count: 20, Neg. LLF: 1291.5917734296072
Iteration: 3, Func. Count: 30, Neg. LLF: 411.80449116848996
Iteration: 4, Func. Count: 40, Neg. LLF: 2284.7540306263854
Iteration: 5, Func. Count: 50, Neg. LLF: 189.51703007400033
Iteration: 6, Func. Count: 60, Neg. LLF: 113.16551561461769
Iteration: 7, Func. Count: 69, Neg. LLF: 212.4161229162032
Iteration: 8, Func. Count: 79, Neg. LLF: 112.47692497186726
Iteration: 9, Func. Count: 88, Neg. LLF: 112.23131946519027
Iteration: 10, Func. Count: 97, Neg. LLF: 112.03952163146663
Iteration: 11, Func. Count: 106, Neg. LLF: 111.94481883797938
Iteration: 12, Func. Count: 115, Neg. LLF: 111.93565961599994
Iteration: 13, Func. Count: 124, Neg. LLF: 111.93379044928902
Iteration: 14, Func. Count: 133, Neg. LLF: 111.93265438039599
Iteration: 15, Func. Count: 142, Neg. LLF: 111.93227312494787
Iteration: 16, Func. Count: 151, Neg. LLF: 111.93219305640102
Iteration: 17, Func. Count: 160, Neg. LLF: 111.93218391727657
Iteration: 18, Func. Count: 168, Neg. LLF: 111.93218402123162
Optimization terminated successfully (Exit mode 0)
Current function value: 111.93218391727657
Iterations: 18
Function evaluations: 168
Gradient evaluations: 18
Iteration: 1, Func. Count: 11, Neg. LLF: 227.2493166249416
Iteration: 2, Func. Count: 22, Neg. LLF: 222.2577115502843
Iteration: 3, Func. Count: 33, Neg. LLF: 274.29207634965184
Iteration: 4, Func. Count: 44, Neg. LLF: 840.0572666627594
Iteration: 5, Func. Count: 55, Neg. LLF: 113.3053289478813
Iteration: 6, Func. Count: 65, Neg. LLF: 124.84629040963569
Iteration: 7, Func. Count: 76, Neg. LLF: 115.23672134798377
Iteration: 8, Func. Count: 87, Neg. LLF: 112.18113540699365
Iteration: 9, Func. Count: 97, Neg. LLF: 112.04728728737393
Iteration: 10, Func. Count: 107, Neg. LLF: 111.95192500094973
Iteration: 11, Func. Count: 117, Neg. LLF: 111.93728627408998
Iteration: 12, Func. Count: 127, Neg. LLF: 111.9328887457026
Iteration: 13, Func. Count: 137, Neg. LLF: 111.93228879922763
Iteration: 14, Func. Count: 147, Neg. LLF: 111.9321846412396
Iteration: 15, Func. Count: 157, Neg. LLF: 111.93218376743586
Optimization terminated successfully (Exit mode 0)
Current function value: 111.93218376743586
Iterations: 15
Function evaluations: 157
Gradient evaluations: 15
Iteration: 1, Func. Count: 12, Neg. LLF: 220.39641198280026
Iteration: 2, Func. Count: 24, Neg. LLF: 174.17366184409062
Iteration: 3, Func. Count: 36, Neg. LLF: 345.38828824718746
Iteration: 4, Func. Count: 48, Neg. LLF: 8489.155508415175
Iteration: 5, Func. Count: 60, Neg. LLF: 755.4446919035405
Iteration: 6, Func. Count: 72, Neg. LLF: 112.42855399359637
Iteration: 7, Func. Count: 83, Neg. LLF: 134.48519109267218
Iteration: 8, Func. Count: 95, Neg. LLF: 115.5073571198947
Iteration: 9, Func. Count: 107, Neg. LLF: 112.71147621709753
Iteration: 10, Func. Count: 119, Neg. LLF: 111.8872295347478
Iteration: 11, Func. Count: 130, Neg. LLF: 111.8670941696234
Iteration: 12, Func. Count: 141, Neg. LLF: 111.85547950286245
Iteration: 13, Func. Count: 152, Neg. LLF: 111.8512030288177
Iteration: 14, Func. Count: 163, Neg. LLF: 111.85092509681155
Iteration: 15, Func. Count: 174, Neg. LLF: 111.85087468173276
Iteration: 16, Func. Count: 185, Neg. LLF: 111.8508634246836
Iteration: 17, Func. Count: 196, Neg. LLF: 111.85086163735525
Iteration: 18, Func. Count: 206, Neg. LLF: 111.85086155947612
Optimization terminated successfully (Exit mode 0)
Current function value: 111.85086163735525
Iterations: 18
Function evaluations: 206
Gradient evaluations: 18
Iteration: 1, Func. Count: 13, Neg. LLF: 218.16921555506408
Iteration: 2, Func. Count: 26, Neg. LLF: 131.25316704602574
Iteration: 3, Func. Count: 39, Neg. LLF: 1549.2690618290158
Iteration: 4, Func. Count: 52, Neg. LLF: 1976.2704306743963
Iteration: 5, Func. Count: 65, Neg. LLF: 181.04975393253963
Iteration: 6, Func. Count: 78, Neg. LLF: 113.4033191480768
Iteration: 7, Func. Count: 90, Neg. LLF: 112.62034596219218
Iteration: 8, Func. Count: 102, Neg. LLF: 135.4678921541342
Iteration: 9, Func. Count: 117, Neg. LLF: 116.19048437571216
Iteration: 10, Func. Count: 131, Neg. LLF: 111.90056521277945
Iteration: 11, Func. Count: 143, Neg. LLF: 111.8655140963973
Iteration: 12, Func. Count: 155, Neg. LLF: 111.85631478746282
Iteration: 13, Func. Count: 167, Neg. LLF: 111.85115792856816
Iteration: 14, Func. Count: 179, Neg. LLF: 111.85089397881966
Iteration: 15, Func. Count: 191, Neg. LLF: 111.85086803632431
Iteration: 16, Func. Count: 203, Neg. LLF: 111.85086275635767
Iteration: 17, Func. Count: 215, Neg. LLF: 111.8508616321521
Iteration: 18, Func. Count: 226, Neg. LLF: 111.85086161810358
Optimization terminated successfully (Exit mode 0)
Current function value: 111.8508616321521
Iterations: 18
Function evaluations: 226
Gradient evaluations: 18
Iteration: 1, Func. Count: 10, Neg. LLF: 157.8365559414076
Iteration: 2, Func. Count: 20, Neg. LLF: 125.15452220382518
Iteration: 3, Func. Count: 30, Neg. LLF: 119.1473075606093
Iteration: 4, Func. Count: 39, Neg. LLF: 850.2177079650995
Iteration: 5, Func. Count: 49, Neg. LLF: 231.0693427203276
Iteration: 6, Func. Count: 59, Neg. LLF: 309.8057234096055
Iteration: 7, Func. Count: 69, Neg. LLF: 233.50558811724292
Iteration: 8, Func. Count: 79, Neg. LLF: 445.01965851089335
Iteration: 9, Func. Count: 89, Neg. LLF: 319.37215616754264
Iteration: 10, Func. Count: 99, Neg. LLF: 331.08847685355124
Iteration: 11, Func. Count: 109, Neg. LLF: 333.58474947721487
Iteration: 12, Func. Count: 119, Neg. LLF: 172.51193511512048
Iteration: 13, Func. Count: 129, Neg. LLF: 150.93507711958733
Iteration: 14, Func. Count: 139, Neg. LLF: 170.90799652861884
Iteration: 15, Func. Count: 149, Neg. LLF: 120.36856487495413
Iteration: 16, Func. Count: 159, Neg. LLF: 112.01489721424464
Iteration: 17, Func. Count: 168, Neg. LLF: 111.98258585158152
Iteration: 18, Func. Count: 177, Neg. LLF: 111.96668368472218
Iteration: 19, Func. Count: 186, Neg. LLF: 111.94352279474843
Iteration: 20, Func. Count: 195, Neg. LLF: 111.93394970636153
Iteration: 21, Func. Count: 204, Neg. LLF: 111.93239673940606
Iteration: 22, Func. Count: 213, Neg. LLF: 111.9321862060136
Iteration: 23, Func. Count: 222, Neg. LLF: 111.93218399423735
Iteration: 24, Func. Count: 230, Neg. LLF: 111.93218431837833
Optimization terminated successfully (Exit mode 0)
Current function value: 111.93218399423735
Iterations: 24
Function evaluations: 230
Gradient evaluations: 24
Iteration: 1, Func. Count: 11, Neg. LLF: 236.6963311788357
Iteration: 2, Func. Count: 22, Neg. LLF: 994.0509219654136
Iteration: 3, Func. Count: 33, Neg. LLF: 343.8970971893095
Iteration: 4, Func. Count: 44, Neg. LLF: 302.87979247600043
Iteration: 5, Func. Count: 55, Neg. LLF: 192.58882598247357
Iteration: 6, Func. Count: 66, Neg. LLF: 113.28570496179822
Iteration: 7, Func. Count: 76, Neg. LLF: 2073.0373335507925
Iteration: 8, Func. Count: 87, Neg. LLF: 113.51293595035159
Iteration: 9, Func. Count: 98, Neg. LLF: 112.17660134369514
Iteration: 10, Func. Count: 108, Neg. LLF: 111.98673493781433
Iteration: 11, Func. Count: 118, Neg. LLF: 111.96001690884522
Iteration: 12, Func. Count: 128, Neg. LLF: 111.94463370943441
Iteration: 13, Func. Count: 138, Neg. LLF: 111.9352982973799
Iteration: 14, Func. Count: 148, Neg. LLF: 111.93351834180102
Iteration: 15, Func. Count: 158, Neg. LLF: 111.93221159427505
Iteration: 16, Func. Count: 168, Neg. LLF: 111.93218479397403
Iteration: 17, Func. Count: 178, Neg. LLF: 111.9321836412471
Iteration: 18, Func. Count: 187, Neg. LLF: 111.93218374522422
Optimization terminated successfully (Exit mode 0)
Current function value: 111.9321836412471
Iterations: 18
Function evaluations: 187
Gradient evaluations: 18
Iteration: 1, Func. Count: 12, Neg. LLF: 213.08348843654977
Iteration: 2, Func. Count: 24, Neg. LLF: 136.08342432222318
Iteration: 3, Func. Count: 36, Neg. LLF: 495.25768653792846
Iteration: 4, Func. Count: 48, Neg. LLF: 79629.58984010716
Iteration: 5, Func. Count: 60, Neg. LLF: 254.28441640594772
Iteration: 6, Func. Count: 72, Neg. LLF: 113.3887188252393
Iteration: 7, Func. Count: 83, Neg. LLF: 112.4828481376625
Iteration: 8, Func. Count: 94, Neg. LLF: 112.4834853926404
Iteration: 9, Func. Count: 106, Neg. LLF: 111.98838720588654
Iteration: 10, Func. Count: 117, Neg. LLF: 111.94453369672988
Iteration: 11, Func. Count: 128, Neg. LLF: 111.93418022300487
Iteration: 12, Func. Count: 139, Neg. LLF: 111.93232696614513
Iteration: 13, Func. Count: 150, Neg. LLF: 111.93218701432849
Iteration: 14, Func. Count: 161, Neg. LLF: 111.93218374892975
Iteration: 15, Func. Count: 171, Neg. LLF: 111.9321839902958
Optimization terminated successfully (Exit mode 0)
Current function value: 111.93218374892975
Iterations: 15
Function evaluations: 171
Gradient evaluations: 15
Iteration: 1, Func. Count: 13, Neg. LLF: 208.46149307059815
Iteration: 2, Func. Count: 26, Neg. LLF: 121.6083115649467
Iteration: 3, Func. Count: 39, Neg. LLF: 7194811.721709462
Iteration: 4, Func. Count: 52, Neg. LLF: 241.77904869312624
Iteration: 5, Func. Count: 65, Neg. LLF: 2118.129370046948
Iteration: 6, Func. Count: 78, Neg. LLF: 114.16335055549304
Iteration: 7, Func. Count: 91, Neg. LLF: 112.13549101658069
Iteration: 8, Func. Count: 103, Neg. LLF: 143.35605880699893
Iteration: 9, Func. Count: 116, Neg. LLF: 111.94264087415088
Iteration: 10, Func. Count: 128, Neg. LLF: 111.95952567908904
Iteration: 11, Func. Count: 141, Neg. LLF: 111.86476660532053
Iteration: 12, Func. Count: 153, Neg. LLF: 111.8526399380513
Iteration: 13, Func. Count: 165, Neg. LLF: 111.8510446434953
Iteration: 14, Func. Count: 177, Neg. LLF: 111.85088508023853
Iteration: 15, Func. Count: 189, Neg. LLF: 111.85087396142107
Iteration: 16, Func. Count: 201, Neg. LLF: 111.85086404344642
Iteration: 17, Func. Count: 213, Neg. LLF: 111.85086160951285
Iteration: 18, Func. Count: 224, Neg. LLF: 111.8508615315759
Optimization terminated successfully (Exit mode 0)
Current function value: 111.85086160951285
Iterations: 18
Function evaluations: 224
Gradient evaluations: 18
Iteration: 1, Func. Count: 14, Neg. LLF: 208.81065733816143
Iteration: 2, Func. Count: 28, Neg. LLF: 118.52483897703718
Iteration: 3, Func. Count: 41, Neg. LLF: 243.3851004216501
Iteration: 4, Func. Count: 55, Neg. LLF: 46596.43030659099
Iteration: 5, Func. Count: 69, Neg. LLF: 141.71897260544796
Iteration: 6, Func. Count: 84, Neg. LLF: 124.19620921535994
Iteration: 7, Func. Count: 99, Neg. LLF: 117.17522730236733
Iteration: 8, Func. Count: 113, Neg. LLF: 112.67939429532899
Iteration: 9, Func. Count: 126, Neg. LLF: 112.24854415598135
Iteration: 10, Func. Count: 139, Neg. LLF: 115.01789399925764
Iteration: 11, Func. Count: 154, Neg. LLF: 111.92930484452285
Iteration: 12, Func. Count: 167, Neg. LLF: 111.88814796759672
Iteration: 13, Func. Count: 180, Neg. LLF: 111.87078056996073
Iteration: 14, Func. Count: 193, Neg. LLF: 111.85391607762055
Iteration: 15, Func. Count: 206, Neg. LLF: 111.85215127123229
Iteration: 16, Func. Count: 219, Neg. LLF: 111.85092348569856
Iteration: 17, Func. Count: 232, Neg. LLF: 111.85087562912025
Iteration: 18, Func. Count: 245, Neg. LLF: 111.85086278616346
Iteration: 19, Func. Count: 258, Neg. LLF: 111.85086148356534
Iteration: 20, Func. Count: 270, Neg. LLF: 111.85086146936925
Optimization terminated successfully (Exit mode 0)
Current function value: 111.85086148356534
Iterations: 20
Function evaluations: 270
Gradient evaluations: 20
Iteration: 1, Func. Count: 11, Neg. LLF: 153.9870205525138
Iteration: 2, Func. Count: 22, Neg. LLF: 125.94050401687541
Iteration: 3, Func. Count: 33, Neg. LLF: 119.71214231871203
Iteration: 4, Func. Count: 43, Neg. LLF: 294.2896202300559
Iteration: 5, Func. Count: 54, Neg. LLF: 164.55146135839334
Iteration: 6, Func. Count: 65, Neg. LLF: 693.6623139028134
Iteration: 7, Func. Count: 76, Neg. LLF: 2339.136801733726
Iteration: 8, Func. Count: 87, Neg. LLF: 1641.893853178364
Iteration: 9, Func. Count: 98, Neg. LLF: 994.4783077204477
Iteration: 10, Func. Count: 109, Neg. LLF: 658.6880779807799
Iteration: 11, Func. Count: 120, Neg. LLF: 465.2768896218369
Iteration: 12, Func. Count: 131, Neg. LLF: 204.52343644957762
Iteration: 13, Func. Count: 142, Neg. LLF: 254.1048454288229
Iteration: 14, Func. Count: 153, Neg. LLF: 183.3526937808644
Iteration: 15, Func. Count: 164, Neg. LLF: 1382.9480279451677
Iteration: 16, Func. Count: 175, Neg. LLF: 112.0887866218542
Iteration: 17, Func. Count: 185, Neg. LLF: 112.62167106738998
Iteration: 18, Func. Count: 196, Neg. LLF: 112.03713158334656
Iteration: 19, Func. Count: 207, Neg. LLF: 111.97365957348057
Iteration: 20, Func. Count: 217, Neg. LLF: 111.93918287251489
Iteration: 21, Func. Count: 227, Neg. LLF: 111.93409499998924
Iteration: 22, Func. Count: 237, Neg. LLF: 111.93225748663725
Iteration: 23, Func. Count: 247, Neg. LLF: 111.93219044608745
Iteration: 24, Func. Count: 257, Neg. LLF: 111.93218370705645
Iteration: 25, Func. Count: 266, Neg. LLF: 111.93218388632171
Optimization terminated successfully (Exit mode 0)
Current function value: 111.93218370705645
Iterations: 25
Function evaluations: 266
Gradient evaluations: 25
Iteration: 1, Func. Count: 12, Neg. LLF: 222.83982947745037
Iteration: 2, Func. Count: 24, Neg. LLF: 219.45950646049957
Iteration: 3, Func. Count: 36, Neg. LLF: 175.05961981813783
Iteration: 4, Func. Count: 48, Neg. LLF: 1001.8170949167393
Iteration: 5, Func. Count: 60, Neg. LLF: 2411.9967257791027
Iteration: 6, Func. Count: 72, Neg. LLF: 112.6895432400496
Iteration: 7, Func. Count: 83, Neg. LLF: 113.28288131611907
Iteration: 8, Func. Count: 95, Neg. LLF: 112.02524394052203
Iteration: 9, Func. Count: 106, Neg. LLF: 111.97323239815627
Iteration: 10, Func. Count: 117, Neg. LLF: 111.96348799050662
Iteration: 11, Func. Count: 128, Neg. LLF: 111.94136205363446
Iteration: 12, Func. Count: 139, Neg. LLF: 111.9362746832055
Iteration: 13, Func. Count: 150, Neg. LLF: 111.93221584696218
Iteration: 14, Func. Count: 161, Neg. LLF: 111.93218462684573
Iteration: 15, Func. Count: 172, Neg. LLF: 111.93218364164261
Optimization terminated successfully (Exit mode 0)
Current function value: 111.93218364164261
Iterations: 15
Function evaluations: 172
Gradient evaluations: 15
Iteration: 1, Func. Count: 13, Neg. LLF: 204.169224420424
Iteration: 2, Func. Count: 26, Neg. LLF: 131.25942097794731
Iteration: 3, Func. Count: 39, Neg. LLF: 166.9381144074582
Iteration: 4, Func. Count: 52, Neg. LLF: 6298209.0658372855
Iteration: 5, Func. Count: 65, Neg. LLF: 9998.166070897365
Iteration: 6, Func. Count: 78, Neg. LLF: 113.85171905127986
Iteration: 7, Func. Count: 90, Neg. LLF: 112.35859199792307
Iteration: 8, Func. Count: 102, Neg. LLF: 112.47815624188688
Iteration: 9, Func. Count: 115, Neg. LLF: 111.99700119043587
Iteration: 10, Func. Count: 127, Neg. LLF: 111.95539556957966
Iteration: 11, Func. Count: 139, Neg. LLF: 111.93470721828365
Iteration: 12, Func. Count: 151, Neg. LLF: 111.93224671079933
Iteration: 13, Func. Count: 163, Neg. LLF: 111.93219318415775
Iteration: 14, Func. Count: 175, Neg. LLF: 111.9321837401341
Iteration: 15, Func. Count: 186, Neg. LLF: 111.93218398149241
Optimization terminated successfully (Exit mode 0)
Current function value: 111.9321837401341
Iterations: 15
Function evaluations: 186
Gradient evaluations: 15
Iteration: 1, Func. Count: 14, Neg. LLF: 201.79230529787483
Iteration: 2, Func. Count: 28, Neg. LLF: 125.45306245270183
Iteration: 3, Func. Count: 42, Neg. LLF: 462.7464104957865
Iteration: 4, Func. Count: 56, Neg. LLF: 138.08552311329257
Iteration: 5, Func. Count: 70, Neg. LLF: 3284.6742061170667
Iteration: 6, Func. Count: 84, Neg. LLF: 113.94259700668341
Iteration: 7, Func. Count: 97, Neg. LLF: 112.23628646336658
Iteration: 8, Func. Count: 110, Neg. LLF: 142.31200201193752
Iteration: 9, Func. Count: 126, Neg. LLF: 113.32712777100396
Iteration: 10, Func. Count: 140, Neg. LLF: 111.89709149160348
Iteration: 11, Func. Count: 153, Neg. LLF: 112.08920492426871
Iteration: 12, Func. Count: 167, Neg. LLF: 111.86097668798811
Iteration: 13, Func. Count: 180, Neg. LLF: 111.85432413847712
Iteration: 14, Func. Count: 193, Neg. LLF: 111.85119452805407
Iteration: 15, Func. Count: 206, Neg. LLF: 111.8508699419632
Iteration: 16, Func. Count: 219, Neg. LLF: 111.85086173788292
Iteration: 17, Func. Count: 231, Neg. LLF: 111.85086166002672
Optimization terminated successfully (Exit mode 0)
Current function value: 111.85086173788292
Iterations: 17
Function evaluations: 231
Gradient evaluations: 17
Iteration: 1, Func. Count: 15, Neg. LLF: 201.3681412086073
Iteration: 2, Func. Count: 30, Neg. LLF: 123.23896752753325
Iteration: 3, Func. Count: 45, Neg. LLF: 62245.79149561114
Iteration: 4, Func. Count: 60, Neg. LLF: 9253.241396104653
Iteration: 5, Func. Count: 75, Neg. LLF: 149.42538698305336
Iteration: 6, Func. Count: 90, Neg. LLF: 801.1980749348468
Iteration: 7, Func. Count: 105, Neg. LLF: 114.49988445891513
Iteration: 8, Func. Count: 120, Neg. LLF: 112.28436234939993
Iteration: 9, Func. Count: 134, Neg. LLF: 124.82442675755742
Iteration: 10, Func. Count: 149, Neg. LLF: 113.88585365752405
Iteration: 11, Func. Count: 164, Neg. LLF: 111.91944650652414
Iteration: 12, Func. Count: 178, Neg. LLF: 111.86566239697946
Iteration: 13, Func. Count: 192, Neg. LLF: 111.85449362244334
Iteration: 14, Func. Count: 206, Neg. LLF: 111.85175998378813
Iteration: 15, Func. Count: 220, Neg. LLF: 111.85107410734675
Iteration: 16, Func. Count: 234, Neg. LLF: 111.85090120279706
Iteration: 17, Func. Count: 248, Neg. LLF: 111.8508722236781
Iteration: 18, Func. Count: 262, Neg. LLF: 111.85086223002183
Iteration: 19, Func. Count: 276, Neg. LLF: 111.85086146019239
Optimization terminated successfully (Exit mode 0)
Current function value: 111.85086146019239
Iterations: 19
Function evaluations: 276
Gradient evaluations: 19
Iteration: 1, Func. Count: 8, Neg. LLF: 134.44116776556186
Iteration: 2, Func. Count: 16, Neg. LLF: 146.25081635714233
Iteration: 3, Func. Count: 24, Neg. LLF: 119.9840336642198
Iteration: 4, Func. Count: 31, Neg. LLF: 114.08811653834157
Iteration: 5, Func. Count: 38, Neg. LLF: 161.16618472160917
Iteration: 6, Func. Count: 46, Neg. LLF: 168.37583079790454
Iteration: 7, Func. Count: 54, Neg. LLF: 191.18761439478394
Iteration: 8, Func. Count: 62, Neg. LLF: 118.24066807233139
Iteration: 9, Func. Count: 70, Neg. LLF: 113.11299426029093
Iteration: 10, Func. Count: 78, Neg. LLF: 112.66807829789998
Iteration: 11, Func. Count: 85, Neg. LLF: 112.66255401844053
Iteration: 12, Func. Count: 92, Neg. LLF: 112.66246761549053
Iteration: 13, Func. Count: 99, Neg. LLF: 112.66246655192536
Iteration: 14, Func. Count: 105, Neg. LLF: 112.6624667335085
Optimization terminated successfully (Exit mode 0)
Current function value: 112.66246655192536
Iterations: 14
Function evaluations: 105
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 172.84113353490181
Iteration: 2, Func. Count: 18, Neg. LLF: 192.05258999944022
Iteration: 3, Func. Count: 27, Neg. LLF: 91628.46904002856
Iteration: 4, Func. Count: 36, Neg. LLF: 134.00835106670456
Iteration: 5, Func. Count: 45, Neg. LLF: 116.52614382295233
Iteration: 6, Func. Count: 54, Neg. LLF: 112.93950346606891
Iteration: 7, Func. Count: 62, Neg. LLF: 112.81660793853062
Iteration: 8, Func. Count: 70, Neg. LLF: 112.66572738801499
Iteration: 9, Func. Count: 78, Neg. LLF: 112.66296153970856
Iteration: 10, Func. Count: 86, Neg. LLF: 112.66246769256807
Iteration: 11, Func. Count: 94, Neg. LLF: 112.66246648594843
Iteration: 12, Func. Count: 101, Neg. LLF: 112.6624666099732
Optimization terminated successfully (Exit mode 0)
Current function value: 112.66246648594843
Iterations: 12
Function evaluations: 101
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 158.50918470498624
Iteration: 2, Func. Count: 20, Neg. LLF: 153.32830007795354
Iteration: 3, Func. Count: 30, Neg. LLF: 543.0749977307947
Iteration: 4, Func. Count: 40, Neg. LLF: 134.5807657129905
Iteration: 5, Func. Count: 50, Neg. LLF: 115.09524542712836
Iteration: 6, Func. Count: 59, Neg. LLF: 113.2454581080685
Iteration: 7, Func. Count: 68, Neg. LLF: 113.60618818973926
Iteration: 8, Func. Count: 78, Neg. LLF: 112.66792839198624
Iteration: 9, Func. Count: 87, Neg. LLF: 112.66498155677326
Iteration: 10, Func. Count: 96, Neg. LLF: 112.66258306965224
Iteration: 11, Func. Count: 105, Neg. LLF: 112.6624742373678
Iteration: 12, Func. Count: 114, Neg. LLF: 112.66246649421846
Iteration: 13, Func. Count: 122, Neg. LLF: 112.66246675948237
Optimization terminated successfully (Exit mode 0)
Current function value: 112.66246649421846
Iterations: 13
Function evaluations: 122
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 154.3803254869376
Iteration: 2, Func. Count: 22, Neg. LLF: 143.33800514903547
Iteration: 3, Func. Count: 33, Neg. LLF: 327.38142495556986
Iteration: 4, Func. Count: 44, Neg. LLF: 176.79142443822246
Iteration: 5, Func. Count: 55, Neg. LLF: 1067.367418612495
Iteration: 6, Func. Count: 66, Neg. LLF: 115.96762473374044
Iteration: 7, Func. Count: 77, Neg. LLF: 112.7175780147191
Iteration: 8, Func. Count: 87, Neg. LLF: 113.48340734797947
Iteration: 9, Func. Count: 98, Neg. LLF: 112.49249913114927
Iteration: 10, Func. Count: 108, Neg. LLF: 112.4799989232367
Iteration: 11, Func. Count: 118, Neg. LLF: 112.45629165012394
Iteration: 12, Func. Count: 128, Neg. LLF: 112.45378124660098
Iteration: 13, Func. Count: 138, Neg. LLF: 112.45265560026174
Iteration: 14, Func. Count: 148, Neg. LLF: 112.45256513552982
Iteration: 15, Func. Count: 157, Neg. LLF: 112.45256506337219
Optimization terminated successfully (Exit mode 0)
Current function value: 112.45256513552982
Iterations: 15
Function evaluations: 157
Gradient evaluations: 15
Iteration: 1, Func. Count: 12, Neg. LLF: 152.07116745459874
Iteration: 2, Func. Count: 24, Neg. LLF: 142.63647396169424
Iteration: 3, Func. Count: 36, Neg. LLF: 237.02938294322428
Iteration: 4, Func. Count: 48, Neg. LLF: 496.5288301406491
Iteration: 5, Func. Count: 60, Neg. LLF: 1169.0288974564726
Iteration: 6, Func. Count: 72, Neg. LLF: 12746.144389515885
Iteration: 7, Func. Count: 84, Neg. LLF: 116.17127609723995
Iteration: 8, Func. Count: 96, Neg. LLF: 113.56242181475262
Iteration: 9, Func. Count: 107, Neg. LLF: 113.61393806662883
Iteration: 10, Func. Count: 119, Neg. LLF: 114.12596850534689
Iteration: 11, Func. Count: 131, Neg. LLF: 112.89476253705942
Iteration: 12, Func. Count: 143, Neg. LLF: 112.43916901119549
Iteration: 13, Func. Count: 154, Neg. LLF: 112.43316736660782
Iteration: 14, Func. Count: 165, Neg. LLF: 112.43009838222234
Iteration: 15, Func. Count: 176, Neg. LLF: 112.42984671337678
Iteration: 16, Func. Count: 187, Neg. LLF: 112.42977638816083
Iteration: 17, Func. Count: 198, Neg. LLF: 112.42977403253113
Iteration: 18, Func. Count: 208, Neg. LLF: 112.42977395569731
Optimization terminated successfully (Exit mode 0)
Current function value: 112.42977403253113
Iterations: 18
Function evaluations: 208
Gradient evaluations: 18
Iteration: 1, Func. Count: 9, Neg. LLF: 128.14841789829842
Iteration: 2, Func. Count: 18, Neg. LLF: 143.00640480947982
Iteration: 3, Func. Count: 27, Neg. LLF: 118.78480090562148
Iteration: 4, Func. Count: 35, Neg. LLF: 298.37700390058984
Iteration: 5, Func. Count: 44, Neg. LLF: 1115.5368693716518
Iteration: 6, Func. Count: 53, Neg. LLF: 285.07913282101674
Iteration: 7, Func. Count: 62, Neg. LLF: 401.55210140204406
Iteration: 8, Func. Count: 71, Neg. LLF: 427.7876680513728
Iteration: 9, Func. Count: 80, Neg. LLF: 1310.8672516364284
Iteration: 10, Func. Count: 89, Neg. LLF: 2676.8236315107056
Iteration: 11, Func. Count: 98, Neg. LLF: 2799.0419752245607
Iteration: 12, Func. Count: 107, Neg. LLF: 373.8500276846109
Iteration: 13, Func. Count: 116, Neg. LLF: 426.5314431878917
Iteration: 14, Func. Count: 125, Neg. LLF: 137.35095490091842
Iteration: 15, Func. Count: 134, Neg. LLF: 539.7848742367122
Iteration: 16, Func. Count: 143, Neg. LLF: 113.24278596765173
Iteration: 17, Func. Count: 152, Neg. LLF: 112.19351033869332
Iteration: 18, Func. Count: 160, Neg. LLF: 112.07963431443724
Iteration: 19, Func. Count: 168, Neg. LLF: 112.03726318950274
Iteration: 20, Func. Count: 176, Neg. LLF: 112.03712181140482
Iteration: 21, Func. Count: 184, Neg. LLF: 112.03711868425675
Iteration: 22, Func. Count: 191, Neg. LLF: 112.0371187237563
Optimization terminated successfully (Exit mode 0)
Current function value: 112.03711868425675
Iterations: 22
Function evaluations: 191
Gradient evaluations: 22
Iteration: 1, Func. Count: 10, Neg. LLF: 160.16580907918305
Iteration: 2, Func. Count: 20, Neg. LLF: 174.18589947392815
Iteration: 3, Func. Count: 30, Neg. LLF: 1967.770856806857
Iteration: 4, Func. Count: 40, Neg. LLF: 1061.262274960327
Iteration: 5, Func. Count: 50, Neg. LLF: 122.91435604248987
Iteration: 6, Func. Count: 60, Neg. LLF: 112.35014184862399
Iteration: 7, Func. Count: 69, Neg. LLF: 112.25871199134514
Iteration: 8, Func. Count: 78, Neg. LLF: 112.17383089214931
Iteration: 9, Func. Count: 87, Neg. LLF: 112.05419602771225
Iteration: 10, Func. Count: 96, Neg. LLF: 112.03833634289714
Iteration: 11, Func. Count: 105, Neg. LLF: 112.0372787520868
Iteration: 12, Func. Count: 114, Neg. LLF: 112.03718012682423
Iteration: 13, Func. Count: 123, Neg. LLF: 112.03713092220912
Iteration: 14, Func. Count: 132, Neg. LLF: 112.03712011381094
Iteration: 15, Func. Count: 141, Neg. LLF: 112.03711951728124
Optimization terminated successfully (Exit mode 0)
Current function value: 112.03711951728124
Iterations: 15
Function evaluations: 141
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 149.23876718689675
Iteration: 2, Func. Count: 22, Neg. LLF: 158.68367190424533
Iteration: 3, Func. Count: 33, Neg. LLF: 23196.983301724053
Iteration: 4, Func. Count: 44, Neg. LLF: 34387.21887563131
Iteration: 5, Func. Count: 55, Neg. LLF: 3776.215499226984
Iteration: 6, Func. Count: 66, Neg. LLF: 129.4260471631273
Iteration: 7, Func. Count: 77, Neg. LLF: 112.60316674045083
Iteration: 8, Func. Count: 87, Neg. LLF: 112.2840124286353
Iteration: 9, Func. Count: 97, Neg. LLF: 112.10968875296426
Iteration: 10, Func. Count: 107, Neg. LLF: 112.10250920177211
Iteration: 11, Func. Count: 118, Neg. LLF: 112.03782464916691
Iteration: 12, Func. Count: 128, Neg. LLF: 112.03712482666174
Iteration: 13, Func. Count: 138, Neg. LLF: 112.03711911522927
Iteration: 14, Func. Count: 147, Neg. LLF: 112.03711934459884
Optimization terminated successfully (Exit mode 0)
Current function value: 112.03711911522927
Iterations: 14
Function evaluations: 147
Gradient evaluations: 14
Iteration: 1, Func. Count: 12, Neg. LLF: 132.8202510397233
Iteration: 2, Func. Count: 24, Neg. LLF: 128.86215573766202
Iteration: 3, Func. Count: 36, Neg. LLF: 238.38635256655215
Iteration: 4, Func. Count: 48, Neg. LLF: 350.6746956163143
Iteration: 5, Func. Count: 60, Neg. LLF: 64347.23068049989
Iteration: 6, Func. Count: 72, Neg. LLF: 972.4874488294545
Iteration: 7, Func. Count: 84, Neg. LLF: 651.5960667478405
Iteration: 8, Func. Count: 96, Neg. LLF: 392.242994013517
Iteration: 9, Func. Count: 108, Neg. LLF: 165.47297086721224
Iteration: 10, Func. Count: 120, Neg. LLF: 114.11755427557327
Iteration: 11, Func. Count: 132, Neg. LLF: 112.53027252320416
Iteration: 12, Func. Count: 143, Neg. LLF: 117.69061409851868
Iteration: 13, Func. Count: 156, Neg. LLF: 113.78076034249908
Iteration: 14, Func. Count: 168, Neg. LLF: 111.94627237670252
Iteration: 15, Func. Count: 179, Neg. LLF: 111.94502615307978
Iteration: 16, Func. Count: 190, Neg. LLF: 111.94472792035442
Iteration: 17, Func. Count: 201, Neg. LLF: 111.94469525144764
Iteration: 18, Func. Count: 212, Neg. LLF: 111.9446896676643
Iteration: 19, Func. Count: 222, Neg. LLF: 111.94468958785885
Optimization terminated successfully (Exit mode 0)
Current function value: 111.9446896676643
Iterations: 19
Function evaluations: 222
Gradient evaluations: 19
Iteration: 1, Func. Count: 13, Neg. LLF: 132.8774539501917
Iteration: 2, Func. Count: 26, Neg. LLF: 128.38089977632401
Iteration: 3, Func. Count: 39, Neg. LLF: 227.03604870531848
Iteration: 4, Func. Count: 52, Neg. LLF: 306.40389984137346
Iteration: 5, Func. Count: 65, Neg. LLF: 2642.077393298337
Iteration: 6, Func. Count: 78, Neg. LLF: 1035.736638495056
Iteration: 7, Func. Count: 91, Neg. LLF: 713.0617001937197
Iteration: 8, Func. Count: 104, Neg. LLF: 377.30241448724064
Iteration: 9, Func. Count: 117, Neg. LLF: 689.6910448759893
Iteration: 10, Func. Count: 130, Neg. LLF: 113.47174769153273
Iteration: 11, Func. Count: 142, Neg. LLF: 113.32111756529196
Iteration: 12, Func. Count: 155, Neg. LLF: 117.26167447837578
Iteration: 13, Func. Count: 168, Neg. LLF: 112.12451637940411
Iteration: 14, Func. Count: 181, Neg. LLF: 112.43078042914244
Iteration: 15, Func. Count: 194, Neg. LLF: 111.94847659926126
Iteration: 16, Func. Count: 206, Neg. LLF: 111.94503075512887
Iteration: 17, Func. Count: 218, Neg. LLF: 111.9447610127682
Iteration: 18, Func. Count: 230, Neg. LLF: 111.94469735351059
Iteration: 19, Func. Count: 242, Neg. LLF: 111.9446911539648
Iteration: 20, Func. Count: 254, Neg. LLF: 111.94468965097008
Iteration: 21, Func. Count: 265, Neg. LLF: 111.9446896390765
Optimization terminated successfully (Exit mode 0)
Current function value: 111.94468965097008
Iterations: 21
Function evaluations: 265
Gradient evaluations: 21
Iteration: 1, Func. Count: 10, Neg. LLF: 142.40311835847692
Iteration: 2, Func. Count: 20, Neg. LLF: 131.6370075042397
Iteration: 3, Func. Count: 30, Neg. LLF: 119.99692876604523
Iteration: 4, Func. Count: 39, Neg. LLF: 5561.5191882671925
Iteration: 5, Func. Count: 49, Neg. LLF: 290.05202265152013
Iteration: 6, Func. Count: 59, Neg. LLF: 2686.95274660303
Iteration: 7, Func. Count: 69, Neg. LLF: 3381.4618911595185
Iteration: 8, Func. Count: 79, Neg. LLF: 167.98117079000895
Iteration: 9, Func. Count: 89, Neg. LLF: 157.57299140201235
Iteration: 10, Func. Count: 99, Neg. LLF: 311.72776166504514
Iteration: 11, Func. Count: 109, Neg. LLF: 184.311138575215
Iteration: 12, Func. Count: 119, Neg. LLF: 176.34435382794447
Iteration: 13, Func. Count: 129, Neg. LLF: 179.1514993618962
Iteration: 14, Func. Count: 139, Neg. LLF: 114.83279458342433
Iteration: 15, Func. Count: 149, Neg. LLF: 114.12457858016936
Iteration: 16, Func. Count: 159, Neg. LLF: 113.09805769361108
Iteration: 17, Func. Count: 168, Neg. LLF: 112.52216788239004
Iteration: 18, Func. Count: 177, Neg. LLF: 112.2611821989256
Iteration: 19, Func. Count: 186, Neg. LLF: 112.13749617800329
Iteration: 20, Func. Count: 195, Neg. LLF: 112.03754251922312
Iteration: 21, Func. Count: 204, Neg. LLF: 112.00854279186888
Iteration: 22, Func. Count: 213, Neg. LLF: 111.96756719129165
Iteration: 23, Func. Count: 222, Neg. LLF: 111.93816690741996
Iteration: 24, Func. Count: 231, Neg. LLF: 111.93255989299146
Iteration: 25, Func. Count: 240, Neg. LLF: 111.93220430208332
Iteration: 26, Func. Count: 249, Neg. LLF: 111.93218404820516
Iteration: 27, Func. Count: 257, Neg. LLF: 111.93218400935943
Optimization terminated successfully (Exit mode 0)
Current function value: 111.93218404820516
Iterations: 27
Function evaluations: 257
Gradient evaluations: 27
Iteration: 1, Func. Count: 11, Neg. LLF: 198.5016162571625
Iteration: 2, Func. Count: 22, Neg. LLF: 234.37426645929818
Iteration: 3, Func. Count: 33, Neg. LLF: 300.06562378567423
Iteration: 4, Func. Count: 44, Neg. LLF: 282.180455825644
Iteration: 5, Func. Count: 55, Neg. LLF: 432.4888555778886
Iteration: 6, Func. Count: 66, Neg. LLF: 113.07725315107105
Iteration: 7, Func. Count: 76, Neg. LLF: 112.07066200586941
Iteration: 8, Func. Count: 86, Neg. LLF: 112.0226231690012
Iteration: 9, Func. Count: 96, Neg. LLF: 111.9791414113328
Iteration: 10, Func. Count: 106, Neg. LLF: 111.94181351547235
Iteration: 11, Func. Count: 116, Neg. LLF: 111.93281937807384
Iteration: 12, Func. Count: 126, Neg. LLF: 111.9322302849362
Iteration: 13, Func. Count: 136, Neg. LLF: 111.93219700416536
Iteration: 14, Func. Count: 146, Neg. LLF: 111.93218726847454
Iteration: 15, Func. Count: 156, Neg. LLF: 111.93218364386621
Iteration: 16, Func. Count: 165, Neg. LLF: 111.93218374784593
Optimization terminated successfully (Exit mode 0)
Current function value: 111.93218364386621
Iterations: 16
Function evaluations: 165
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 184.43519980233495
Iteration: 2, Func. Count: 24, Neg. LLF: 135.04864259698834
Iteration: 3, Func. Count: 36, Neg. LLF: 358.8847106658103
Iteration: 4, Func. Count: 48, Neg. LLF: 3019.9997354181837
Iteration: 5, Func. Count: 60, Neg. LLF: 298.0512627393693
Iteration: 6, Func. Count: 72, Neg. LLF: 215939.42092428403
Iteration: 7, Func. Count: 84, Neg. LLF: 113.20470217616366
Iteration: 8, Func. Count: 95, Neg. LLF: 112.16326207338766
Iteration: 9, Func. Count: 106, Neg. LLF: 112.06071929552877
Iteration: 10, Func. Count: 117, Neg. LLF: 111.9750383725656
Iteration: 11, Func. Count: 128, Neg. LLF: 111.96417368943297
Iteration: 12, Func. Count: 139, Neg. LLF: 111.93722907270887
Iteration: 13, Func. Count: 150, Neg. LLF: 111.93323331522569
Iteration: 14, Func. Count: 161, Neg. LLF: 111.93227030360752
Iteration: 15, Func. Count: 172, Neg. LLF: 111.93218782677528
Iteration: 16, Func. Count: 183, Neg. LLF: 111.93218369207196
Iteration: 17, Func. Count: 193, Neg. LLF: 111.93218393341651
Optimization terminated successfully (Exit mode 0)
Current function value: 111.93218369207196
Iterations: 17
Function evaluations: 193
Gradient evaluations: 17
Iteration: 1, Func. Count: 13, Neg. LLF: 140.56987863701215
Iteration: 2, Func. Count: 26, Neg. LLF: 118.00872291124384
Iteration: 3, Func. Count: 38, Neg. LLF: 181.12495953335085
Iteration: 4, Func. Count: 51, Neg. LLF: 25878775.555428557
Iteration: 5, Func. Count: 64, Neg. LLF: 136.06323451210267
Iteration: 6, Func. Count: 79, Neg. LLF: 113.89211074912846
Iteration: 7, Func. Count: 92, Neg. LLF: 162.52337185666582
Iteration: 8, Func. Count: 105, Neg. LLF: 112.36684935186021
Iteration: 9, Func. Count: 117, Neg. LLF: 112.4463931063372
Iteration: 10, Func. Count: 130, Neg. LLF: 112.42021209743261
Iteration: 11, Func. Count: 143, Neg. LLF: 111.9819536383534
Iteration: 12, Func. Count: 155, Neg. LLF: 111.87804957931446
Iteration: 13, Func. Count: 167, Neg. LLF: 111.85608517546375
Iteration: 14, Func. Count: 179, Neg. LLF: 111.85138978503427
Iteration: 15, Func. Count: 191, Neg. LLF: 111.85089695386631
Iteration: 16, Func. Count: 203, Neg. LLF: 111.85086280942006
Iteration: 17, Func. Count: 215, Neg. LLF: 111.85086143899926
Iteration: 18, Func. Count: 226, Neg. LLF: 111.85086136095225
Optimization terminated successfully (Exit mode 0)
Current function value: 111.85086143899926
Iterations: 18
Function evaluations: 226
Gradient evaluations: 18
Iteration: 1, Func. Count: 14, Neg. LLF: 148.14891250768446
Iteration: 2, Func. Count: 28, Neg. LLF: 116.08199156210233
Iteration: 3, Func. Count: 41, Neg. LLF: 205.49769321352252
Iteration: 4, Func. Count: 55, Neg. LLF: 163.58153155128446
Iteration: 5, Func. Count: 69, Neg. LLF: 194.29300212173123
Iteration: 6, Func. Count: 83, Neg. LLF: 120.8389738137296
Iteration: 7, Func. Count: 97, Neg. LLF: 324.26812868053963
Iteration: 8, Func. Count: 111, Neg. LLF: 115.1571856951668
Iteration: 9, Func. Count: 125, Neg. LLF: 112.21431273066331
Iteration: 10, Func. Count: 138, Neg. LLF: 112.0842346024351
Iteration: 11, Func. Count: 151, Neg. LLF: 111.95709821671106
Iteration: 12, Func. Count: 164, Neg. LLF: 111.88314420149152
Iteration: 13, Func. Count: 177, Neg. LLF: 111.88313434886594
Iteration: 14, Func. Count: 191, Neg. LLF: 111.8546061733644
Iteration: 15, Func. Count: 204, Neg. LLF: 111.8513514219958
Iteration: 16, Func. Count: 217, Neg. LLF: 111.85088820947982
Iteration: 17, Func. Count: 230, Neg. LLF: 111.85086170654235
Iteration: 18, Func. Count: 242, Neg. LLF: 111.8508616923243
Optimization terminated successfully (Exit mode 0)
Current function value: 111.85086170654235
Iterations: 18
Function evaluations: 242
Gradient evaluations: 18
Iteration: 1, Func. Count: 11, Neg. LLF: 151.42539171061443
Iteration: 2, Func. Count: 22, Neg. LLF: 124.40514132549531
Iteration: 3, Func. Count: 33, Neg. LLF: 122.30970868058422
Iteration: 4, Func. Count: 44, Neg. LLF: 162.62605032799578
Iteration: 5, Func. Count: 55, Neg. LLF: 5598.41854583991
Iteration: 6, Func. Count: 66, Neg. LLF: 555.8577488498296
Iteration: 7, Func. Count: 77, Neg. LLF: 215.03138727044183
Iteration: 8, Func. Count: 88, Neg. LLF: 225.53078505983927
Iteration: 9, Func. Count: 99, Neg. LLF: 195.1328186086603
Iteration: 10, Func. Count: 110, Neg. LLF: 209.6091068567334
Iteration: 11, Func. Count: 121, Neg. LLF: 420.98335562414127
Iteration: 12, Func. Count: 132, Neg. LLF: 946854.0550043191
Iteration: 13, Func. Count: 143, Neg. LLF: 230.4454760159162
Iteration: 14, Func. Count: 154, Neg. LLF: 119.80392111739418
Iteration: 15, Func. Count: 165, Neg. LLF: 113.07032679755122
Iteration: 16, Func. Count: 176, Neg. LLF: 112.26045748222813
Iteration: 17, Func. Count: 186, Neg. LLF: 112.17468316543092
Iteration: 18, Func. Count: 196, Neg. LLF: 112.12639609657508
Iteration: 19, Func. Count: 206, Neg. LLF: 112.05220913780038
Iteration: 20, Func. Count: 216, Neg. LLF: 111.96572548765526
Iteration: 21, Func. Count: 226, Neg. LLF: 111.93501695058985
Iteration: 22, Func. Count: 236, Neg. LLF: 111.93224297495266
Iteration: 23, Func. Count: 246, Neg. LLF: 111.93218484015905
Iteration: 24, Func. Count: 256, Neg. LLF: 111.93218364841653
Iteration: 25, Func. Count: 265, Neg. LLF: 111.93218397255563
Optimization terminated successfully (Exit mode 0)
Current function value: 111.93218364841653
Iterations: 25
Function evaluations: 265
Gradient evaluations: 25
Iteration: 1, Func. Count: 12, Neg. LLF: 183.81942730193487
Iteration: 2, Func. Count: 24, Neg. LLF: 136.34365208765945
Iteration: 3, Func. Count: 36, Neg. LLF: 1308.5305619056287
Iteration: 4, Func. Count: 48, Neg. LLF: 1285.5638282722816
Iteration: 5, Func. Count: 60, Neg. LLF: 879.268930327123
Iteration: 6, Func. Count: 72, Neg. LLF: 114.20505303236583
Iteration: 7, Func. Count: 83, Neg. LLF: 112.16213729282396
Iteration: 8, Func. Count: 94, Neg. LLF: 112.18289734732035
Iteration: 9, Func. Count: 106, Neg. LLF: 112.01381944364353
Iteration: 10, Func. Count: 117, Neg. LLF: 111.94870991034308
Iteration: 11, Func. Count: 128, Neg. LLF: 111.9322575719861
Iteration: 12, Func. Count: 139, Neg. LLF: 111.93219326469337
Iteration: 13, Func. Count: 150, Neg. LLF: 111.93218471759238
Iteration: 14, Func. Count: 161, Neg. LLF: 111.93218381264991
Optimization terminated successfully (Exit mode 0)
Current function value: 111.93218381264991
Iterations: 14
Function evaluations: 161
Gradient evaluations: 14
Iteration: 1, Func. Count: 13, Neg. LLF: 147.17595835835382
Iteration: 2, Func. Count: 26, Neg. LLF: 115.74060401426827
Iteration: 3, Func. Count: 38, Neg. LLF: 174.62326200602362
Iteration: 4, Func. Count: 51, Neg. LLF: 194.05423376671453
Iteration: 5, Func. Count: 64, Neg. LLF: 115.56499844227827
Iteration: 6, Func. Count: 78, Neg. LLF: 123.42957978455249
Iteration: 7, Func. Count: 91, Neg. LLF: 113.29812047786743
Iteration: 8, Func. Count: 104, Neg. LLF: 112.2455461937159
Iteration: 9, Func. Count: 116, Neg. LLF: 112.0819456239198
Iteration: 10, Func. Count: 128, Neg. LLF: 111.95500633688316
Iteration: 11, Func. Count: 140, Neg. LLF: 111.93549592270666
Iteration: 12, Func. Count: 152, Neg. LLF: 111.93231719988069
Iteration: 13, Func. Count: 164, Neg. LLF: 111.93219794534058
Iteration: 14, Func. Count: 176, Neg. LLF: 111.93218388044666
Iteration: 15, Func. Count: 187, Neg. LLF: 111.93218412183245
Optimization terminated successfully (Exit mode 0)
Current function value: 111.93218388044666
Iterations: 15
Function evaluations: 187
Gradient evaluations: 15
Iteration: 1, Func. Count: 14, Neg. LLF: 139.47259965108566
Iteration: 2, Func. Count: 28, Neg. LLF: 117.62334471995841
Iteration: 3, Func. Count: 41, Neg. LLF: 246.2757468273097
Iteration: 4, Func. Count: 55, Neg. LLF: 30418011.128064446
Iteration: 5, Func. Count: 69, Neg. LLF: 131.71561198155158
Iteration: 6, Func. Count: 84, Neg. LLF: 126.86534763848454
Iteration: 7, Func. Count: 98, Neg. LLF: 2263.354443934852
Iteration: 8, Func. Count: 112, Neg. LLF: 112.46066022796923
Iteration: 9, Func. Count: 125, Neg. LLF: 114.33289687867708
Iteration: 10, Func. Count: 139, Neg. LLF: 112.045105403773
Iteration: 11, Func. Count: 152, Neg. LLF: 112.01554726865443
Iteration: 12, Func. Count: 165, Neg. LLF: 111.88346164650439
Iteration: 13, Func. Count: 178, Neg. LLF: 111.86362787022928
Iteration: 14, Func. Count: 191, Neg. LLF: 111.854183631885
Iteration: 15, Func. Count: 204, Neg. LLF: 111.8512039375582
Iteration: 16, Func. Count: 217, Neg. LLF: 111.85086820620855
Iteration: 17, Func. Count: 230, Neg. LLF: 111.85086201898491
Iteration: 18, Func. Count: 243, Neg. LLF: 111.8508614336327
Optimization terminated successfully (Exit mode 0)
Current function value: 111.8508614336327
Iterations: 18
Function evaluations: 243
Gradient evaluations: 18
Iteration: 1, Func. Count: 15, Neg. LLF: 144.1821685447385
Iteration: 2, Func. Count: 30, Neg. LLF: 117.22982500380493
Iteration: 3, Func. Count: 44, Neg. LLF: 161.1231926736127
Iteration: 4, Func. Count: 59, Neg. LLF: 11674511.779339587
Iteration: 5, Func. Count: 74, Neg. LLF: 142.19261675874895
Iteration: 6, Func. Count: 90, Neg. LLF: 263.88311452413143
Iteration: 7, Func. Count: 105, Neg. LLF: 112.27277463402577
Iteration: 8, Func. Count: 119, Neg. LLF: 113.2509554934742
Iteration: 9, Func. Count: 134, Neg. LLF: 112.26539187617746
Iteration: 10, Func. Count: 149, Neg. LLF: 112.29179641291311
Iteration: 11, Func. Count: 164, Neg. LLF: 111.96105776615474
Iteration: 12, Func. Count: 178, Neg. LLF: 111.86990932693888
Iteration: 13, Func. Count: 192, Neg. LLF: 111.85309363115395
Iteration: 14, Func. Count: 206, Neg. LLF: 111.85100869636712
Iteration: 15, Func. Count: 220, Neg. LLF: 111.8508721114439
Iteration: 16, Func. Count: 234, Neg. LLF: 111.85086178723189
Iteration: 17, Func. Count: 247, Neg. LLF: 111.85086177295153
Optimization terminated successfully (Exit mode 0)
Current function value: 111.85086178723189
Iterations: 17
Function evaluations: 247
Gradient evaluations: 17
Iteration: 1, Func. Count: 12, Neg. LLF: 148.65141855680787
Iteration: 2, Func. Count: 24, Neg. LLF: 124.11654560184557
Iteration: 3, Func. Count: 36, Neg. LLF: 126.28594742928371
Iteration: 4, Func. Count: 48, Neg. LLF: 146.21217672533257
Iteration: 5, Func. Count: 60, Neg. LLF: 793.7618773290999
Iteration: 6, Func. Count: 72, Neg. LLF: 276.10042156353205
Iteration: 7, Func. Count: 84, Neg. LLF: 191.23260727304088
Iteration: 8, Func. Count: 96, Neg. LLF: 199.6281426404797
Iteration: 9, Func. Count: 108, Neg. LLF: 313.7145400826059
Iteration: 10, Func. Count: 120, Neg. LLF: 205.32947981929502
Iteration: 11, Func. Count: 132, Neg. LLF: 858.2557916451625
Iteration: 12, Func. Count: 144, Neg. LLF: 289.2902546371454
Iteration: 13, Func. Count: 156, Neg. LLF: 605.4319861632837
Iteration: 14, Func. Count: 168, Neg. LLF: 239.84227106744163
Iteration: 15, Func. Count: 180, Neg. LLF: 119.27952019000746
Iteration: 16, Func. Count: 192, Neg. LLF: 112.53371745425757
Iteration: 17, Func. Count: 203, Neg. LLF: 112.40535343096346
Iteration: 18, Func. Count: 214, Neg. LLF: 112.40915472718663
Iteration: 19, Func. Count: 226, Neg. LLF: 112.2799652970637
Iteration: 20, Func. Count: 237, Neg. LLF: 112.16345083575341
Iteration: 21, Func. Count: 248, Neg. LLF: 112.04324511210515
Iteration: 22, Func. Count: 259, Neg. LLF: 111.93876973578737
Iteration: 23, Func. Count: 270, Neg. LLF: 111.93268669671562
Iteration: 24, Func. Count: 281, Neg. LLF: 111.93220510468541
Iteration: 25, Func. Count: 292, Neg. LLF: 111.93218463725823
Iteration: 26, Func. Count: 303, Neg. LLF: 111.93218365807628
Optimization terminated successfully (Exit mode 0)
Current function value: 111.93218365807628
Iterations: 26
Function evaluations: 303
Gradient evaluations: 26
Iteration: 1, Func. Count: 13, Neg. LLF: 175.78019486449696
Iteration: 2, Func. Count: 26, Neg. LLF: 131.0806269743102
Iteration: 3, Func. Count: 39, Neg. LLF: 212.25915866176442
Iteration: 4, Func. Count: 52, Neg. LLF: 2559.089909380812
Iteration: 5, Func. Count: 65, Neg. LLF: 2588.1769985368073
Iteration: 6, Func. Count: 78, Neg. LLF: 113.8878854422893
Iteration: 7, Func. Count: 90, Neg. LLF: 112.24062813977208
Iteration: 8, Func. Count: 102, Neg. LLF: 112.83996933213417
Iteration: 9, Func. Count: 115, Neg. LLF: 112.02109903260558
Iteration: 10, Func. Count: 127, Neg. LLF: 111.9618538743348
Iteration: 11, Func. Count: 139, Neg. LLF: 111.93475776686847
Iteration: 12, Func. Count: 151, Neg. LLF: 111.93249983098279
Iteration: 13, Func. Count: 163, Neg. LLF: 111.93222247760568
Iteration: 14, Func. Count: 175, Neg. LLF: 111.93219502292067
Iteration: 15, Func. Count: 187, Neg. LLF: 111.93218366431742
Iteration: 16, Func. Count: 198, Neg. LLF: 111.93218376828897
Optimization terminated successfully (Exit mode 0)
Current function value: 111.93218366431742
Iterations: 16
Function evaluations: 198
Gradient evaluations: 16
Iteration: 1, Func. Count: 14, Neg. LLF: 143.35564662579915
Iteration: 2, Func. Count: 28, Neg. LLF: 116.4315353212253
Iteration: 3, Func. Count: 41, Neg. LLF: 2609.2986758969605
Iteration: 4, Func. Count: 55, Neg. LLF: 30511368.865242198
Iteration: 5, Func. Count: 69, Neg. LLF: 115.41883877649606
Iteration: 6, Func. Count: 83, Neg. LLF: 674.0149648317984
Iteration: 7, Func. Count: 97, Neg. LLF: 113.34167513541495
Iteration: 8, Func. Count: 111, Neg. LLF: 113.3956804465249
Iteration: 9, Func. Count: 125, Neg. LLF: 112.11851679663064
Iteration: 10, Func. Count: 138, Neg. LLF: 111.97264626089924
Iteration: 11, Func. Count: 151, Neg. LLF: 111.94160067265624
Iteration: 12, Func. Count: 164, Neg. LLF: 111.93289621986735
Iteration: 13, Func. Count: 177, Neg. LLF: 111.93227160226792
Iteration: 14, Func. Count: 190, Neg. LLF: 111.932183907035
Iteration: 15, Func. Count: 202, Neg. LLF: 111.93218414842686
Optimization terminated successfully (Exit mode 0)
Current function value: 111.932183907035
Iterations: 15
Function evaluations: 202
Gradient evaluations: 15
Iteration: 1, Func. Count: 15, Neg. LLF: 140.59827639320508
Iteration: 2, Func. Count: 30, Neg. LLF: 117.49018700742815
Iteration: 3, Func. Count: 44, Neg. LLF: 346.09702940441457
Iteration: 4, Func. Count: 59, Neg. LLF: 31511538.943456642
Iteration: 5, Func. Count: 74, Neg. LLF: 196.98891329802183
Iteration: 6, Func. Count: 90, Neg. LLF: 325.64620074829065
Iteration: 7, Func. Count: 105, Neg. LLF: 164.1089341548302
Iteration: 8, Func. Count: 120, Neg. LLF: 113.53009150155738
Iteration: 9, Func. Count: 135, Neg. LLF: 112.67645433890091
Iteration: 10, Func. Count: 150, Neg. LLF: 112.12900388818437
Iteration: 11, Func. Count: 164, Neg. LLF: 111.98732206220524
Iteration: 12, Func. Count: 178, Neg. LLF: 111.90387962743304
Iteration: 13, Func. Count: 192, Neg. LLF: 111.86472202829287
Iteration: 14, Func. Count: 206, Neg. LLF: 111.8515940196974
Iteration: 15, Func. Count: 220, Neg. LLF: 111.85092352799553
Iteration: 16, Func. Count: 234, Neg. LLF: 111.85086210230112
Iteration: 17, Func. Count: 248, Neg. LLF: 111.85086142565511
Optimization terminated successfully (Exit mode 0)
Current function value: 111.85086142565511
Iterations: 17
Function evaluations: 248
Gradient evaluations: 17
Iteration: 1, Func. Count: 16, Neg. LLF: 145.35411427403753
Iteration: 2, Func. Count: 32, Neg. LLF: 117.99379593671212
Iteration: 3, Func. Count: 47, Neg. LLF: 78884.51653458594
Iteration: 4, Func. Count: 63, Neg. LLF: 10710999.880392198
Iteration: 5, Func. Count: 79, Neg. LLF: 145.7289290229399
Iteration: 6, Func. Count: 95, Neg. LLF: 855.6306446819273
Iteration: 7, Func. Count: 111, Neg. LLF: 590.3176749965875
Iteration: 8, Func. Count: 127, Neg. LLF: 116.03236815877585
Iteration: 9, Func. Count: 143, Neg. LLF: 112.45135597554277
Iteration: 10, Func. Count: 158, Neg. LLF: 112.9003815740603
Iteration: 11, Func. Count: 174, Neg. LLF: 112.06990332715435
Iteration: 12, Func. Count: 189, Neg. LLF: 111.9731863188953
Iteration: 13, Func. Count: 204, Neg. LLF: 111.91554951806343
Iteration: 14, Func. Count: 219, Neg. LLF: 111.8604089665945
Iteration: 15, Func. Count: 234, Neg. LLF: 111.85248904829497
Iteration: 16, Func. Count: 249, Neg. LLF: 111.85090740948293
Iteration: 17, Func. Count: 264, Neg. LLF: 111.85086397170068
Iteration: 18, Func. Count: 279, Neg. LLF: 111.8508614672018
Iteration: 19, Func. Count: 293, Neg. LLF: 111.85086145289097
Optimization terminated successfully (Exit mode 0)
Current function value: 111.8508614672018
Iterations: 19
Function evaluations: 293
Gradient evaluations: 19
Iteration: 1, Func. Count: 6, Neg. LLF: 142.64617900748752
Iteration: 2, Func. Count: 12, Neg. LLF: 138.89943651319035
Iteration: 3, Func. Count: 18, Neg. LLF: 118.86560650408144
Iteration: 4, Func. Count: 23, Neg. LLF: 277.8478044588575
Iteration: 5, Func. Count: 29, Neg. LLF: 802.0276458992512
Iteration: 6, Func. Count: 35, Neg. LLF: 522.8860353009172
Iteration: 7, Func. Count: 41, Neg. LLF: 399.43798169573364
Iteration: 8, Func. Count: 47, Neg. LLF: 338.67025489505136
Iteration: 9, Func. Count: 53, Neg. LLF: 2525.2032802827944
Iteration: 10, Func. Count: 59, Neg. LLF: 1864.4030093964511
Iteration: 11, Func. Count: 65, Neg. LLF: 766.4552259589689
Iteration: 12, Func. Count: 71, Neg. LLF: 18123.577556085544
Iteration: 13, Func. Count: 77, Neg. LLF: 380.37394464305095
Iteration: 14, Func. Count: 83, Neg. LLF: 113.97537434182622
Iteration: 15, Func. Count: 89, Neg. LLF: 112.75621003880887
Iteration: 16, Func. Count: 94, Neg. LLF: 112.72336391548005
Iteration: 17, Func. Count: 99, Neg. LLF: 112.66894271791718
Iteration: 18, Func. Count: 104, Neg. LLF: 112.66268563272585
Iteration: 19, Func. Count: 109, Neg. LLF: 112.66247791723131
Iteration: 20, Func. Count: 114, Neg. LLF: 112.66246650505751
Iteration: 21, Func. Count: 118, Neg. LLF: 112.6624664365237
Optimization terminated successfully (Exit mode 0)
Current function value: 112.66246650505751
Iterations: 21
Function evaluations: 118
Gradient evaluations: 21
Iteration: 1, Func. Count: 5, Neg. LLF: 138.93309681976217
Iteration: 2, Func. Count: 9, Neg. LLF: 138.47503476958607
Iteration: 3, Func. Count: 13, Neg. LLF: 137.8210030243167
Iteration: 4, Func. Count: 17, Neg. LLF: 138.1949878872544
Iteration: 5, Func. Count: 23, Neg. LLF: 137.1162921893405
Iteration: 6, Func. Count: 27, Neg. LLF: 137.04485730116784
Iteration: 7, Func. Count: 31, Neg. LLF: 137.00552554847212
Iteration: 8, Func. Count: 35, Neg. LLF: 136.98875010481385
Iteration: 9, Func. Count: 39, Neg. LLF: 136.9878141653067
Iteration: 10, Func. Count: 43, Neg. LLF: 136.9877476763498
Iteration: 11, Func. Count: 47, Neg. LLF: 136.98773261251574
Iteration: 12, Func. Count: 51, Neg. LLF: 136.98772668247636
Iteration: 13, Func. Count: 54, Neg. LLF: 136.98772668247818
Optimization terminated successfully (Exit mode 0)
Current function value: 136.98772668247636
Iterations: 13
Function evaluations: 54
Gradient evaluations: 13
Iteration: 1, Func. Count: 6, Neg. LLF: 250.9834239327941
Iteration: 2, Func. Count: 12, Neg. LLF: 355.2629796985161
Iteration: 3, Func. Count: 18, Neg. LLF: 139.5411452428732
Iteration: 4, Func. Count: 25, Neg. LLF: 147.32642083059093
Iteration: 5, Func. Count: 31, Neg. LLF: 130.7608569694994
Iteration: 6, Func. Count: 36, Neg. LLF: 130.7271413479341
Iteration: 7, Func. Count: 41, Neg. LLF: 130.7215052820974
Iteration: 8, Func. Count: 46, Neg. LLF: 130.71983059661707
Iteration: 9, Func. Count: 51, Neg. LLF: 130.71963722009326
Iteration: 10, Func. Count: 56, Neg. LLF: 130.71961025849393
Iteration: 11, Func. Count: 61, Neg. LLF: 130.71959765104995
Iteration: 12, Func. Count: 66, Neg. LLF: 130.71959666597795
Optimization terminated successfully (Exit mode 0)
Current function value: 130.71959666597795
Iterations: 12
Function evaluations: 66
Gradient evaluations: 12
Iteration: 1, Func. Count: 7, Neg. LLF: 153.64688607120382
Iteration: 2, Func. Count: 14, Neg. LLF: 158.79844910129466
Iteration: 3, Func. Count: 21, Neg. LLF: 137.68484991585086
Iteration: 4, Func. Count: 28, Neg. LLF: 130.85981182501743
Iteration: 5, Func. Count: 34, Neg. LLF: 130.74252712980294
Iteration: 6, Func. Count: 40, Neg. LLF: 130.7201921676079
Iteration: 7, Func. Count: 46, Neg. LLF: 130.71961931043396
Iteration: 8, Func. Count: 52, Neg. LLF: 130.7195977049196
Iteration: 9, Func. Count: 58, Neg. LLF: 130.7195969142859
Optimization terminated successfully (Exit mode 0)
Current function value: 130.7195969142859
Iterations: 9
Function evaluations: 58
Gradient evaluations: 9
Iteration: 1, Func. Count: 8, Neg. LLF: 147.70686611757978
Iteration: 2, Func. Count: 16, Neg. LLF: 136.94956387571108
Iteration: 3, Func. Count: 24, Neg. LLF: 147.5270926036138
Iteration: 4, Func. Count: 32, Neg. LLF: 147.5021645860741
Iteration: 5, Func. Count: 40, Neg. LLF: 130.85782227228214
Iteration: 6, Func. Count: 47, Neg. LLF: 130.79005773087843
Iteration: 7, Func. Count: 54, Neg. LLF: 130.73690096494744
Iteration: 8, Func. Count: 61, Neg. LLF: 130.72301532699376
Iteration: 9, Func. Count: 68, Neg. LLF: 130.7199758267106
Iteration: 10, Func. Count: 75, Neg. LLF: 130.71960982613575
Iteration: 11, Func. Count: 82, Neg. LLF: 130.7195980637767
Iteration: 12, Func. Count: 89, Neg. LLF: 130.71959672678346
Iteration: 13, Func. Count: 95, Neg. LLF: 130.71959678153374
Optimization terminated successfully (Exit mode 0)
Current function value: 130.71959672678346
Iterations: 13
Function evaluations: 95
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 152.20288999527978
Iteration: 2, Func. Count: 18, Neg. LLF: 152.880460533536
Iteration: 3, Func. Count: 27, Neg. LLF: 130.80469272901848
Iteration: 4, Func. Count: 35, Neg. LLF: 162.58983608520293
Iteration: 5, Func. Count: 44, Neg. LLF: 130.7222226273405
Iteration: 6, Func. Count: 52, Neg. LLF: 130.72059294886975
Iteration: 7, Func. Count: 60, Neg. LLF: 130.72016531581346
Iteration: 8, Func. Count: 68, Neg. LLF: 130.71997358942915
Iteration: 9, Func. Count: 76, Neg. LLF: 130.71964966811882
Iteration: 10, Func. Count: 84, Neg. LLF: 130.7196011380391
Iteration: 11, Func. Count: 92, Neg. LLF: 130.71959670986126
Iteration: 12, Func. Count: 99, Neg. LLF: 130.71959678501642
Optimization terminated successfully (Exit mode 0)
Current function value: 130.71959670986126
Iterations: 12
Function evaluations: 99
Gradient evaluations: 12
Iteration: 1, Func. Count: 6, Neg. LLF: 149.73207798535412
Iteration: 2, Func. Count: 12, Neg. LLF: 156.74737185452085
Iteration: 3, Func. Count: 18, Neg. LLF: 139.64755200704099
Iteration: 4, Func. Count: 24, Neg. LLF: 131.20276399548834
Iteration: 5, Func. Count: 29, Neg. LLF: 131.26982462670983
Iteration: 6, Func. Count: 35, Neg. LLF: 130.87699874403262
Iteration: 7, Func. Count: 40, Neg. LLF: 130.87023864338676
Iteration: 8, Func. Count: 45, Neg. LLF: 130.86637952577405
Iteration: 9, Func. Count: 50, Neg. LLF: 130.8662309228361
Iteration: 10, Func. Count: 55, Neg. LLF: 130.8662224446822
Iteration: 11, Func. Count: 60, Neg. LLF: 130.86622066963474
Iteration: 12, Func. Count: 64, Neg. LLF: 130.866220669628
Optimization terminated successfully (Exit mode 0)
Current function value: 130.86622066963474
Iterations: 12
Function evaluations: 64
Gradient evaluations: 12
Iteration: 1, Func. Count: 7, Neg. LLF: 245.71276520765178
Iteration: 2, Func. Count: 14, Neg. LLF: 329.60199940373514
Iteration: 3, Func. Count: 21, Neg. LLF: 143.543596836509
Iteration: 4, Func. Count: 29, Neg. LLF: 135.01450583899825
Iteration: 5, Func. Count: 36, Neg. LLF: 134.49873565170398
Iteration: 6, Func. Count: 43, Neg. LLF: 130.02819289717397
Iteration: 7, Func. Count: 49, Neg. LLF: 129.8504609837909
Iteration: 8, Func. Count: 56, Neg. LLF: 129.4541118601733
Iteration: 9, Func. Count: 62, Neg. LLF: 129.38811733773304
Iteration: 10, Func. Count: 68, Neg. LLF: 129.3306160802809
Iteration: 11, Func. Count: 74, Neg. LLF: 129.32119014499582
Iteration: 12, Func. Count: 80, Neg. LLF: 129.31688365871392
Iteration: 13, Func. Count: 86, Neg. LLF: 129.31239970124284
Iteration: 14, Func. Count: 92, Neg. LLF: 129.30876913214667
Iteration: 15, Func. Count: 98, Neg. LLF: 129.3072251368385
Iteration: 16, Func. Count: 104, Neg. LLF: 129.30697380182676
Iteration: 17, Func. Count: 110, Neg. LLF: 129.3069484950754
Iteration: 18, Func. Count: 116, Neg. LLF: 129.3069474183684
Iteration: 19, Func. Count: 121, Neg. LLF: 129.30694741836962
Optimization terminated successfully (Exit mode 0)
Current function value: 129.3069474183684
Iterations: 19
Function evaluations: 121
Gradient evaluations: 19
Iteration: 1, Func. Count: 8, Neg. LLF: 169.06062007533504
Iteration: 2, Func. Count: 16, Neg. LLF: 182.71374618125026
Iteration: 3, Func. Count: 24, Neg. LLF: 130.94101023274106
Iteration: 4, Func. Count: 31, Neg. LLF: 134.4614865441668
Iteration: 5, Func. Count: 39, Neg. LLF: 129.4054045258005
Iteration: 6, Func. Count: 46, Neg. LLF: 129.33042957927387
Iteration: 7, Func. Count: 53, Neg. LLF: 129.32140794191477
Iteration: 8, Func. Count: 60, Neg. LLF: 129.31111792261692
Iteration: 9, Func. Count: 67, Neg. LLF: 129.30776049696524
Iteration: 10, Func. Count: 74, Neg. LLF: 129.3074090681457
Iteration: 11, Func. Count: 81, Neg. LLF: 129.3071267798686
Iteration: 12, Func. Count: 88, Neg. LLF: 129.30698162703993
Iteration: 13, Func. Count: 95, Neg. LLF: 129.3069491725097
Iteration: 14, Func. Count: 102, Neg. LLF: 129.30694742872552
Iteration: 15, Func. Count: 108, Neg. LLF: 129.3069474811349
Optimization terminated successfully (Exit mode 0)
Current function value: 129.30694742872552
Iterations: 15
Function evaluations: 108
Gradient evaluations: 15
Iteration: 1, Func. Count: 9, Neg. LLF: 165.8230946022827
Iteration: 2, Func. Count: 18, Neg. LLF: 183.35970285910426
Iteration: 3, Func. Count: 27, Neg. LLF: 134.62237280284648
Iteration: 4, Func. Count: 36, Neg. LLF: 135.14461275690326
Iteration: 5, Func. Count: 45, Neg. LLF: 132.04272581171324
Iteration: 6, Func. Count: 54, Neg. LLF: 130.84324190431084
Iteration: 7, Func. Count: 63, Neg. LLF: 129.5586278856506
Iteration: 8, Func. Count: 71, Neg. LLF: 129.46444311432785
Iteration: 9, Func. Count: 79, Neg. LLF: 129.37186137060334
Iteration: 10, Func. Count: 87, Neg. LLF: 129.34040999387906
Iteration: 11, Func. Count: 95, Neg. LLF: 129.32262895253908
Iteration: 12, Func. Count: 103, Neg. LLF: 129.30939555701323
Iteration: 13, Func. Count: 111, Neg. LLF: 129.3070942034645
Iteration: 14, Func. Count: 119, Neg. LLF: 129.30700394635775
Iteration: 15, Func. Count: 127, Neg. LLF: 129.30696449432295
Iteration: 16, Func. Count: 135, Neg. LLF: 129.30694897872826
Iteration: 17, Func. Count: 143, Neg. LLF: 129.30694747662602
Iteration: 18, Func. Count: 150, Neg. LLF: 129.30694748003958
Optimization terminated successfully (Exit mode 0)
Current function value: 129.30694747662602
Iterations: 18
Function evaluations: 150
Gradient evaluations: 18
Iteration: 1, Func. Count: 10, Neg. LLF: 164.85359613334774
Iteration: 2, Func. Count: 20, Neg. LLF: 141.24427887235262
Iteration: 3, Func. Count: 30, Neg. LLF: 153.43440209126783
Iteration: 4, Func. Count: 40, Neg. LLF: 135.40777984200932
Iteration: 5, Func. Count: 50, Neg. LLF: 132.68948892529383
Iteration: 6, Func. Count: 60, Neg. LLF: 130.7663479556208
Iteration: 7, Func. Count: 70, Neg. LLF: 129.6276826075977
Iteration: 8, Func. Count: 79, Neg. LLF: 130.04568491061636
Iteration: 9, Func. Count: 89, Neg. LLF: 129.47864426993488
Iteration: 10, Func. Count: 98, Neg. LLF: 129.41628567090777
Iteration: 11, Func. Count: 107, Neg. LLF: 129.32505961153564
Iteration: 12, Func. Count: 116, Neg. LLF: 129.31499240197783
Iteration: 13, Func. Count: 125, Neg. LLF: 129.30953292666226
Iteration: 14, Func. Count: 134, Neg. LLF: 129.30784145275263
Iteration: 15, Func. Count: 143, Neg. LLF: 129.30717268055645
Iteration: 16, Func. Count: 152, Neg. LLF: 129.30707135012568
Iteration: 17, Func. Count: 161, Neg. LLF: 129.30698155580453
Iteration: 18, Func. Count: 170, Neg. LLF: 129.30695207297396
Iteration: 19, Func. Count: 179, Neg. LLF: 129.30694753285667
Iteration: 20, Func. Count: 188, Neg. LLF: 129.3070762528246
Optimization terminated successfully (Exit mode 0)
Current function value: 129.3069474993373
Iterations: 21
Function evaluations: 190
Gradient evaluations: 20
Iteration: 1, Func. Count: 7, Neg. LLF: 155.05970223695442
Iteration: 2, Func. Count: 14, Neg. LLF: 133.55531564172145
Iteration: 3, Func. Count: 22, Neg. LLF: 226.12699225811033
Iteration: 4, Func. Count: 29, Neg. LLF: 129.66159655486481
Iteration: 5, Func. Count: 35, Neg. LLF: 129.29931786068826
Iteration: 6, Func. Count: 41, Neg. LLF: 129.18744211903055
Iteration: 7, Func. Count: 47, Neg. LLF: 129.1611921037507
Iteration: 8, Func. Count: 53, Neg. LLF: 129.15222990789084
Iteration: 9, Func. Count: 59, Neg. LLF: 129.15100020248065
Iteration: 10, Func. Count: 65, Neg. LLF: 129.15084697363883
Iteration: 11, Func. Count: 71, Neg. LLF: 129.15084519808633
Iteration: 12, Func. Count: 77, Neg. LLF: 129.15084463808225
Optimization terminated successfully (Exit mode 0)
Current function value: 129.15084463808225
Iterations: 12
Function evaluations: 77
Gradient evaluations: 12
Iteration: 1, Func. Count: 8, Neg. LLF: 226.80527730968728
Iteration: 2, Func. Count: 16, Neg. LLF: 273.24382204230426
Iteration: 3, Func. Count: 24, Neg. LLF: 143.8666253241681
Iteration: 4, Func. Count: 32, Neg. LLF: 145.53264917704172
Iteration: 5, Func. Count: 40, Neg. LLF: 134.30653543745538
Iteration: 6, Func. Count: 48, Neg. LLF: 131.22983180416958
Iteration: 7, Func. Count: 56, Neg. LLF: 129.87388131620241
Iteration: 8, Func. Count: 64, Neg. LLF: 129.39607041720674
Iteration: 9, Func. Count: 71, Neg. LLF: 129.27778755706186
Iteration: 10, Func. Count: 78, Neg. LLF: 129.19659714276054
Iteration: 11, Func. Count: 85, Neg. LLF: 129.15847458638888
Iteration: 12, Func. Count: 92, Neg. LLF: 129.15402374688594
Iteration: 13, Func. Count: 99, Neg. LLF: 129.15251264870466
Iteration: 14, Func. Count: 106, Neg. LLF: 129.1517088206504
Iteration: 15, Func. Count: 113, Neg. LLF: 129.15133169006967
Iteration: 16, Func. Count: 120, Neg. LLF: 129.15121360916936
Iteration: 17, Func. Count: 127, Neg. LLF: 129.15113529740987
Iteration: 18, Func. Count: 134, Neg. LLF: 129.1510145149277
Iteration: 19, Func. Count: 141, Neg. LLF: 129.15090196659105
Iteration: 20, Func. Count: 148, Neg. LLF: 129.150852247549
Iteration: 21, Func. Count: 155, Neg. LLF: 129.15084499221098
Iteration: 22, Func. Count: 161, Neg. LLF: 129.15084500763095
Optimization terminated successfully (Exit mode 0)
Current function value: 129.15084499221098
Iterations: 22
Function evaluations: 161
Gradient evaluations: 22
Iteration: 1, Func. Count: 9, Neg. LLF: 168.68109409662932
Iteration: 2, Func. Count: 18, Neg. LLF: 151.06264063452733
Iteration: 3, Func. Count: 27, Neg. LLF: 144.63426714722627
Iteration: 4, Func. Count: 36, Neg. LLF: 135.32126420661473
Iteration: 5, Func. Count: 45, Neg. LLF: 129.68921916670988
Iteration: 6, Func. Count: 53, Neg. LLF: 129.32137127237613
Iteration: 7, Func. Count: 61, Neg. LLF: 129.30831465624772
Iteration: 8, Func. Count: 69, Neg. LLF: 129.19196376817195
Iteration: 9, Func. Count: 77, Neg. LLF: 129.1751509774431
Iteration: 10, Func. Count: 85, Neg. LLF: 129.15705119400724
Iteration: 11, Func. Count: 93, Neg. LLF: 129.15366073037356
Iteration: 12, Func. Count: 101, Neg. LLF: 129.15201533356426
Iteration: 13, Func. Count: 109, Neg. LLF: 129.15152202724425
Iteration: 14, Func. Count: 117, Neg. LLF: 129.151109282509
Iteration: 15, Func. Count: 125, Neg. LLF: 129.15089721481007
Iteration: 16, Func. Count: 133, Neg. LLF: 129.15084862127532
Iteration: 17, Func. Count: 141, Neg. LLF: 129.15084473659545
Iteration: 18, Func. Count: 148, Neg. LLF: 129.15084479017634
Optimization terminated successfully (Exit mode 0)
Current function value: 129.15084473659545
Iterations: 18
Function evaluations: 148
Gradient evaluations: 18
Iteration: 1, Func. Count: 10, Neg. LLF: 164.67849905171573
Iteration: 2, Func. Count: 20, Neg. LLF: 133.90930996636715
Iteration: 3, Func. Count: 30, Neg. LLF: 139.51184854505303
Iteration: 4, Func. Count: 40, Neg. LLF: 135.3169328835753
Iteration: 5, Func. Count: 50, Neg. LLF: 130.44568926937066
Iteration: 6, Func. Count: 60, Neg. LLF: 133.8204842359254
Iteration: 7, Func. Count: 70, Neg. LLF: 129.24378731824075
Iteration: 8, Func. Count: 79, Neg. LLF: 129.56945787326188
Iteration: 9, Func. Count: 89, Neg. LLF: 129.21604690231152
Iteration: 10, Func. Count: 98, Neg. LLF: 129.17390235724216
Iteration: 11, Func. Count: 107, Neg. LLF: 129.14800409921122
Iteration: 12, Func. Count: 116, Neg. LLF: 129.1430809258835
Iteration: 13, Func. Count: 125, Neg. LLF: 129.14044220079123
Iteration: 14, Func. Count: 134, Neg. LLF: 129.13881752277535
Iteration: 15, Func. Count: 143, Neg. LLF: 129.13781641520688
Iteration: 16, Func. Count: 152, Neg. LLF: 129.13745160030257
Iteration: 17, Func. Count: 161, Neg. LLF: 129.13739012671022
Iteration: 18, Func. Count: 170, Neg. LLF: 129.13738521956503
Iteration: 19, Func. Count: 178, Neg. LLF: 129.13738521957546
Optimization terminated successfully (Exit mode 0)
Current function value: 129.13738521956503
Iterations: 19
Function evaluations: 178
Gradient evaluations: 19
Iteration: 1, Func. Count: 11, Neg. LLF: 164.42259870347607
Iteration: 2, Func. Count: 22, Neg. LLF: 136.97697799667128
Iteration: 3, Func. Count: 33, Neg. LLF: 135.299787791609
Iteration: 4, Func. Count: 44, Neg. LLF: 221.9227538751795
Iteration: 5, Func. Count: 55, Neg. LLF: 130.28302152123553
Iteration: 6, Func. Count: 65, Neg. LLF: 129.66513317084176
Iteration: 7, Func. Count: 75, Neg. LLF: 129.2165170349556
Iteration: 8, Func. Count: 85, Neg. LLF: 129.2998298023494
Iteration: 9, Func. Count: 96, Neg. LLF: 129.18780970343252
Iteration: 10, Func. Count: 107, Neg. LLF: 129.15871420193946
Iteration: 11, Func. Count: 117, Neg. LLF: 129.1426454566831
Iteration: 12, Func. Count: 127, Neg. LLF: 129.13990254355645
Iteration: 13, Func. Count: 137, Neg. LLF: 129.1384007890381
Iteration: 14, Func. Count: 147, Neg. LLF: 129.1375950124627
Iteration: 15, Func. Count: 157, Neg. LLF: 129.1374013020985
Iteration: 16, Func. Count: 167, Neg. LLF: 129.1373854637258
Iteration: 17, Func. Count: 176, Neg. LLF: 129.13738559872343
Optimization terminated successfully (Exit mode 0)
Current function value: 129.1373854637258
Iterations: 17
Function evaluations: 176
Gradient evaluations: 17
Iteration: 1, Func. Count: 8, Neg. LLF: 151.66749020181544
Iteration: 2, Func. Count: 16, Neg. LLF: 135.00680462742844
Iteration: 3, Func. Count: 26, Neg. LLF: 334.21433662571735
Iteration: 4, Func. Count: 34, Neg. LLF: 129.56860739542014
Iteration: 5, Func. Count: 41, Neg. LLF: 129.5540458544312
Iteration: 6, Func. Count: 49, Neg. LLF: 129.15485874305986
Iteration: 7, Func. Count: 56, Neg. LLF: 129.1509404329436
Iteration: 8, Func. Count: 63, Neg. LLF: 129.15085750413814
Iteration: 9, Func. Count: 70, Neg. LLF: 129.15084936660764
Iteration: 10, Func. Count: 77, Neg. LLF: 129.1508471550659
Iteration: 11, Func. Count: 84, Neg. LLF: 129.15084478040035
Iteration: 12, Func. Count: 90, Neg. LLF: 129.1508448583367
Optimization terminated successfully (Exit mode 0)
Current function value: 129.15084478040035
Iterations: 12
Function evaluations: 90
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 216.12706099890238
Iteration: 2, Func. Count: 18, Neg. LLF: 212.88644624641302
Iteration: 3, Func. Count: 27, Neg. LLF: 134.18799566413082
Iteration: 4, Func. Count: 37, Neg. LLF: 142.10556112194988
Iteration: 5, Func. Count: 46, Neg. LLF: 135.43188703309278
Iteration: 6, Func. Count: 55, Neg. LLF: 131.39345500646613
Iteration: 7, Func. Count: 64, Neg. LLF: 129.58530158334145
Iteration: 8, Func. Count: 72, Neg. LLF: 129.3468950702096
Iteration: 9, Func. Count: 80, Neg. LLF: 129.23976330441144
Iteration: 10, Func. Count: 88, Neg. LLF: 129.1662087789768
Iteration: 11, Func. Count: 96, Neg. LLF: 129.15755317064944
Iteration: 12, Func. Count: 104, Neg. LLF: 129.15268871244976
Iteration: 13, Func. Count: 112, Neg. LLF: 129.1516873699137
Iteration: 14, Func. Count: 120, Neg. LLF: 129.1508972603945
Iteration: 15, Func. Count: 128, Neg. LLF: 129.15087769162272
Iteration: 16, Func. Count: 136, Neg. LLF: 129.1508723886582
Iteration: 17, Func. Count: 144, Neg. LLF: 129.15086397573157
Iteration: 18, Func. Count: 152, Neg. LLF: 129.15085307682497
Iteration: 19, Func. Count: 160, Neg. LLF: 129.15084632663633
Iteration: 20, Func. Count: 168, Neg. LLF: 129.15084474908096
Iteration: 21, Func. Count: 175, Neg. LLF: 129.15084476458358
Optimization terminated successfully (Exit mode 0)
Current function value: 129.15084474908096
Iterations: 21
Function evaluations: 175
Gradient evaluations: 21
Iteration: 1, Func. Count: 10, Neg. LLF: 206.03677836341762
Iteration: 2, Func. Count: 20, Neg. LLF: 149.11495864466062
Iteration: 3, Func. Count: 30, Neg. LLF: 145.0201940958536
Iteration: 4, Func. Count: 40, Neg. LLF: 134.53970082175297
Iteration: 5, Func. Count: 50, Neg. LLF: 131.27862392375962
Iteration: 6, Func. Count: 60, Neg. LLF: 129.44506987760462
Iteration: 7, Func. Count: 69, Neg. LLF: 129.3044599633796
Iteration: 8, Func. Count: 78, Neg. LLF: 129.15970461042784
Iteration: 9, Func. Count: 87, Neg. LLF: 129.15605453981644
Iteration: 10, Func. Count: 96, Neg. LLF: 129.15290882231167
Iteration: 11, Func. Count: 105, Neg. LLF: 129.15095338631184
Iteration: 12, Func. Count: 114, Neg. LLF: 129.150851579618
Iteration: 13, Func. Count: 123, Neg. LLF: 129.15084788555586
Iteration: 14, Func. Count: 132, Neg. LLF: 129.15084692261718
Optimization terminated successfully (Exit mode 0)
Current function value: 129.15084692261718
Iterations: 14
Function evaluations: 132
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 162.53654487109725
Iteration: 2, Func. Count: 22, Neg. LLF: 131.08927417931284
Iteration: 3, Func. Count: 32, Neg. LLF: 136.89138375295926
Iteration: 4, Func. Count: 43, Neg. LLF: 137.08495499757888
Iteration: 5, Func. Count: 55, Neg. LLF: 129.2917200468927
Iteration: 6, Func. Count: 65, Neg. LLF: 129.25800762686268
Iteration: 7, Func. Count: 76, Neg. LLF: 129.19214622707494
Iteration: 8, Func. Count: 87, Neg. LLF: 129.13791554076408
Iteration: 9, Func. Count: 97, Neg. LLF: 129.13743667320776
Iteration: 10, Func. Count: 107, Neg. LLF: 129.13739841252195
Iteration: 11, Func. Count: 117, Neg. LLF: 129.13738511521302
Iteration: 12, Func. Count: 126, Neg. LLF: 129.13738511520077
Optimization terminated successfully (Exit mode 0)
Current function value: 129.13738511521302
Iterations: 12
Function evaluations: 126
Gradient evaluations: 12
Iteration: 1, Func. Count: 12, Neg. LLF: 162.23466117963946
Iteration: 2, Func. Count: 24, Neg. LLF: 135.1647401527129
Iteration: 3, Func. Count: 36, Neg. LLF: 134.1674019361675
Iteration: 4, Func. Count: 48, Neg. LLF: 139.29726930785202
Iteration: 5, Func. Count: 60, Neg. LLF: 129.60206101380106
Iteration: 6, Func. Count: 71, Neg. LLF: 129.25267094962933
Iteration: 7, Func. Count: 82, Neg. LLF: 129.18908122543274
Iteration: 8, Func. Count: 93, Neg. LLF: 129.1567560681931
Iteration: 9, Func. Count: 104, Neg. LLF: 129.15331881231623
Iteration: 10, Func. Count: 115, Neg. LLF: 129.14592538700782
Iteration: 11, Func. Count: 126, Neg. LLF: 129.13877977502776
Iteration: 12, Func. Count: 137, Neg. LLF: 129.13755645888648
Iteration: 13, Func. Count: 148, Neg. LLF: 129.13739418247556
Iteration: 14, Func. Count: 159, Neg. LLF: 129.1373858423891
Iteration: 15, Func. Count: 170, Neg. LLF: 129.1373851242377
Optimization terminated successfully (Exit mode 0)
Current function value: 129.1373851242377
Iterations: 15
Function evaluations: 170
Gradient evaluations: 15
Iteration: 1, Func. Count: 5, Neg. LLF: 133.59993723298072
Iteration: 2, Func. Count: 9, Neg. LLF: 135.2692394187787
Iteration: 3, Func. Count: 14, Neg. LLF: 132.83306175507263
Iteration: 4, Func. Count: 18, Neg. LLF: 132.7797508818054
Iteration: 5, Func. Count: 22, Neg. LLF: 132.65566867585017
Iteration: 6, Func. Count: 26, Neg. LLF: 132.63763891444395
Iteration: 7, Func. Count: 30, Neg. LLF: 132.63670411450127
Iteration: 8, Func. Count: 34, Neg. LLF: 132.6366822915248
Iteration: 9, Func. Count: 37, Neg. LLF: 132.63668230112896
Optimization terminated successfully (Exit mode 0)
Current function value: 132.6366822915248
Iterations: 9
Function evaluations: 37
Gradient evaluations: 9
Iteration: 1, Func. Count: 6, Neg. LLF: 387.90869237632324
Iteration: 2, Func. Count: 12, Neg. LLF: 795.3499390193233
Iteration: 3, Func. Count: 18, Neg. LLF: 204.06030631320675
Iteration: 4, Func. Count: 24, Neg. LLF: 124.82000600540883
Iteration: 5, Func. Count: 30, Neg. LLF: 139.11614651319468
Iteration: 6, Func. Count: 36, Neg. LLF: 123.43135073139074
Iteration: 7, Func. Count: 41, Neg. LLF: 123.39876100160828
Iteration: 8, Func. Count: 46, Neg. LLF: 123.39559965846873
Iteration: 9, Func. Count: 51, Neg. LLF: 123.39553252624576
Iteration: 10, Func. Count: 56, Neg. LLF: 123.39552477221655
Iteration: 11, Func. Count: 61, Neg. LLF: 123.39552395689205
Optimization terminated successfully (Exit mode 0)
Current function value: 123.39552395689205
Iterations: 11
Function evaluations: 61
Gradient evaluations: 11
Iteration: 1, Func. Count: 7, Neg. LLF: 257.89302079292094
Iteration: 2, Func. Count: 14, Neg. LLF: 302.59891653809706
Iteration: 3, Func. Count: 21, Neg. LLF: 171.94784414750717
Iteration: 4, Func. Count: 28, Neg. LLF: 126.23286178705301
Iteration: 5, Func. Count: 35, Neg. LLF: 125.3029723870984
Iteration: 6, Func. Count: 42, Neg. LLF: 123.65448113520856
Iteration: 7, Func. Count: 48, Neg. LLF: 123.44365111943702
Iteration: 8, Func. Count: 54, Neg. LLF: 123.41455805734522
Iteration: 9, Func. Count: 60, Neg. LLF: 123.3959669848447
Iteration: 10, Func. Count: 66, Neg. LLF: 123.39556498626477
Iteration: 11, Func. Count: 72, Neg. LLF: 123.39552533177606
Iteration: 12, Func. Count: 78, Neg. LLF: 123.3955239948682
Iteration: 13, Func. Count: 83, Neg. LLF: 123.39552392426403
Optimization terminated successfully (Exit mode 0)
Current function value: 123.3955239948682
Iterations: 13
Function evaluations: 83
Gradient evaluations: 13
Iteration: 1, Func. Count: 8, Neg. LLF: 216.40322118796325
Iteration: 2, Func. Count: 16, Neg. LLF: 221.56469648680874
Iteration: 3, Func. Count: 24, Neg. LLF: 180.31852138472757
Iteration: 4, Func. Count: 32, Neg. LLF: 124.41330569192205
Iteration: 5, Func. Count: 39, Neg. LLF: 124.10088687053235
Iteration: 6, Func. Count: 47, Neg. LLF: 123.69886915209185
Iteration: 7, Func. Count: 55, Neg. LLF: 123.4517355152683
Iteration: 8, Func. Count: 63, Neg. LLF: 123.39562838802318
Iteration: 9, Func. Count: 70, Neg. LLF: 123.39552418689776
Iteration: 10, Func. Count: 76, Neg. LLF: 123.39552407673324
Optimization terminated successfully (Exit mode 0)
Current function value: 123.39552418689776
Iterations: 10
Function evaluations: 76
Gradient evaluations: 10
Iteration: 1, Func. Count: 9, Neg. LLF: 204.74898413953343
Iteration: 2, Func. Count: 18, Neg. LLF: 179.0667109596468
Iteration: 3, Func. Count: 27, Neg. LLF: 513.0048889475645
Iteration: 4, Func. Count: 36, Neg. LLF: 124.90259898424318
Iteration: 5, Func. Count: 44, Neg. LLF: 127.33831523976991
Iteration: 6, Func. Count: 54, Neg. LLF: 150.5480056387522
Iteration: 7, Func. Count: 63, Neg. LLF: 123.66581074940869
Iteration: 8, Func. Count: 71, Neg. LLF: 124.50832208475909
Iteration: 9, Func. Count: 80, Neg. LLF: 123.43162067247061
Iteration: 10, Func. Count: 88, Neg. LLF: 123.38347625825638
Iteration: 11, Func. Count: 96, Neg. LLF: 123.37951074569199
Iteration: 12, Func. Count: 104, Neg. LLF: 123.37717111751267
Iteration: 13, Func. Count: 112, Neg. LLF: 123.3759699666997
Iteration: 14, Func. Count: 120, Neg. LLF: 123.37595221751523
Iteration: 15, Func. Count: 127, Neg. LLF: 123.37595208886279
Optimization terminated successfully (Exit mode 0)
Current function value: 123.37595221751523
Iterations: 15
Function evaluations: 127
Gradient evaluations: 15
Iteration: 1, Func. Count: 6, Neg. LLF: 133.4403881338365
Iteration: 2, Func. Count: 11, Neg. LLF: 135.04047195843407
Iteration: 3, Func. Count: 17, Neg. LLF: 133.42821907346183
Iteration: 4, Func. Count: 23, Neg. LLF: 132.79065316096063
Iteration: 5, Func. Count: 28, Neg. LLF: 132.69972705678316
Iteration: 6, Func. Count: 33, Neg. LLF: 132.6392681409329
Iteration: 7, Func. Count: 38, Neg. LLF: 132.63678384779178
Iteration: 8, Func. Count: 43, Neg. LLF: 132.63660764298214
Iteration: 9, Func. Count: 48, Neg. LLF: 132.63660497230973
Iteration: 10, Func. Count: 52, Neg. LLF: 132.63660497231749
Optimization terminated successfully (Exit mode 0)
Current function value: 132.63660497230973
Iterations: 10
Function evaluations: 52
Gradient evaluations: 10
Iteration: 1, Func. Count: 7, Neg. LLF: 237.27400285271742
Iteration: 2, Func. Count: 14, Neg. LLF: 12981.362055955655
Iteration: 3, Func. Count: 21, Neg. LLF: 712.0692273333492
Iteration: 4, Func. Count: 28, Neg. LLF: 174.4063580189695
Iteration: 5, Func. Count: 35, Neg. LLF: 125.43170306709095
Iteration: 6, Func. Count: 42, Neg. LLF: 141.25652884779467
Iteration: 7, Func. Count: 49, Neg. LLF: 123.38444125048103
Iteration: 8, Func. Count: 55, Neg. LLF: 123.34717374672515
Iteration: 9, Func. Count: 61, Neg. LLF: 123.33840392062609
Iteration: 10, Func. Count: 67, Neg. LLF: 123.33509936557186
Iteration: 11, Func. Count: 73, Neg. LLF: 123.33458781054733
Iteration: 12, Func. Count: 79, Neg. LLF: 123.33458295580004
Iteration: 13, Func. Count: 84, Neg. LLF: 123.33458281793693
Optimization terminated successfully (Exit mode 0)
Current function value: 123.33458295580004
Iterations: 13
Function evaluations: 84
Gradient evaluations: 13
Iteration: 1, Func. Count: 8, Neg. LLF: 179.22511088811314
Iteration: 2, Func. Count: 16, Neg. LLF: 245.89095966876684
Iteration: 3, Func. Count: 24, Neg. LLF: 171.06889060546024
Iteration: 4, Func. Count: 32, Neg. LLF: 207.63841585684418
Iteration: 5, Func. Count: 40, Neg. LLF: 123.63865965438266
Iteration: 6, Func. Count: 47, Neg. LLF: 123.45261567905754
Iteration: 7, Func. Count: 54, Neg. LLF: 125.20037998216957
Iteration: 8, Func. Count: 62, Neg. LLF: 123.3505779574034
Iteration: 9, Func. Count: 69, Neg. LLF: 123.3376770405908
Iteration: 10, Func. Count: 76, Neg. LLF: 123.33564865822115
Iteration: 11, Func. Count: 83, Neg. LLF: 123.33464242264313
Iteration: 12, Func. Count: 90, Neg. LLF: 123.33458540401537
Iteration: 13, Func. Count: 97, Neg. LLF: 123.3345829188654
Iteration: 14, Func. Count: 103, Neg. LLF: 123.33458283771775
Optimization terminated successfully (Exit mode 0)
Current function value: 123.3345829188654
Iterations: 14
Function evaluations: 103
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 227.5019876500909
Iteration: 2, Func. Count: 18, Neg. LLF: 415.79529391386296
Iteration: 3, Func. Count: 27, Neg. LLF: 145.36480595471798
Iteration: 4, Func. Count: 36, Neg. LLF: 153.92813268000194
Iteration: 5, Func. Count: 45, Neg. LLF: 126.32325057988206
Iteration: 6, Func. Count: 54, Neg. LLF: 126.02630145835107
Iteration: 7, Func. Count: 63, Neg. LLF: 123.36629344936993
Iteration: 8, Func. Count: 71, Neg. LLF: 124.66205016260483
Iteration: 9, Func. Count: 80, Neg. LLF: 123.35478309147561
Iteration: 10, Func. Count: 89, Neg. LLF: 123.33460300973331
Iteration: 11, Func. Count: 97, Neg. LLF: 123.33459715231392
Iteration: 12, Func. Count: 106, Neg. LLF: 123.33458290290463
Iteration: 13, Func. Count: 113, Neg. LLF: 123.33458279141465
Optimization terminated successfully (Exit mode 0)
Current function value: 123.33458290290463
Iterations: 13
Function evaluations: 113
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 173.52600279254958
Iteration: 2, Func. Count: 20, Neg. LLF: 181.95078025777602
Iteration: 3, Func. Count: 30, Neg. LLF: 142.46751482405253
Iteration: 4, Func. Count: 40, Neg. LLF: 217.4021224749396
Iteration: 5, Func. Count: 50, Neg. LLF: 124.03140613643845
Iteration: 6, Func. Count: 59, Neg. LLF: 124.22592617351573
Iteration: 7, Func. Count: 69, Neg. LLF: 124.50607728107413
Iteration: 8, Func. Count: 79, Neg. LLF: 123.43194366547779
Iteration: 9, Func. Count: 88, Neg. LLF: 123.34832616780767
Iteration: 10, Func. Count: 97, Neg. LLF: 123.33780052206265
Iteration: 11, Func. Count: 106, Neg. LLF: 123.33990487171235
Iteration: 12, Func. Count: 116, Neg. LLF: 123.33114692457201
Iteration: 13, Func. Count: 125, Neg. LLF: 123.33063296554343
Iteration: 14, Func. Count: 134, Neg. LLF: 123.33052884143638
Iteration: 15, Func. Count: 143, Neg. LLF: 123.33052281611894
Iteration: 16, Func. Count: 151, Neg. LLF: 123.3305226799013
Optimization terminated successfully (Exit mode 0)
Current function value: 123.33052281611894
Iterations: 16
Function evaluations: 151
Gradient evaluations: 16
Iteration: 1, Func. Count: 7, Neg. LLF: 149.64577635140904
Iteration: 2, Func. Count: 14, Neg. LLF: 133.05891532299668
Iteration: 3, Func. Count: 21, Neg. LLF: 130.7667199978111
Iteration: 4, Func. Count: 28, Neg. LLF: 138.36214729257114
Iteration: 5, Func. Count: 35, Neg. LLF: 938.430818408954
Iteration: 6, Func. Count: 42, Neg. LLF: 222.07851846229727
Iteration: 7, Func. Count: 49, Neg. LLF: 203.4971831064576
Iteration: 8, Func. Count: 56, Neg. LLF: 205.09709571121306
Iteration: 9, Func. Count: 63, Neg. LLF: 202.08687381530106
Iteration: 10, Func. Count: 70, Neg. LLF: 198.07485191371902
Iteration: 11, Func. Count: 77, Neg. LLF: 197.44479326923607
Iteration: 12, Func. Count: 84, Neg. LLF: 6492543.919075384
Iteration: 13, Func. Count: 91, Neg. LLF: 253.67237564415345
Iteration: 14, Func. Count: 98, Neg. LLF: 196.6265492580212
Iteration: 15, Func. Count: 105, Neg. LLF: 201.6817054383969
Iteration: 16, Func. Count: 112, Neg. LLF: 126.3250634130543
Iteration: 17, Func. Count: 119, Neg. LLF: 123.73746798124108
Iteration: 18, Func. Count: 125, Neg. LLF: 123.52055689665269
Iteration: 19, Func. Count: 131, Neg. LLF: 123.45008738297916
Iteration: 20, Func. Count: 137, Neg. LLF: 123.36836851697359
Iteration: 21, Func. Count: 143, Neg. LLF: 123.2967451629247
Iteration: 22, Func. Count: 149, Neg. LLF: 123.2707658809413
Iteration: 23, Func. Count: 155, Neg. LLF: 123.26743166002524
Iteration: 24, Func. Count: 161, Neg. LLF: 123.26738684564862
Iteration: 25, Func. Count: 166, Neg. LLF: 123.26738679473907
Optimization terminated successfully (Exit mode 0)
Current function value: 123.26738684564862
Iterations: 25
Function evaluations: 166
Gradient evaluations: 25
Iteration: 1, Func. Count: 8, Neg. LLF: 239.56475504673656
Iteration: 2, Func. Count: 16, Neg. LLF: 1533.6198802618628
Iteration: 3, Func. Count: 24, Neg. LLF: 7132374.559131617
Iteration: 4, Func. Count: 32, Neg. LLF: 124.96522250657074
Iteration: 5, Func. Count: 40, Neg. LLF: 123.6086158961443
Iteration: 6, Func. Count: 48, Neg. LLF: 122.61430003460987
Iteration: 7, Func. Count: 56, Neg. LLF: 122.05137273476664
Iteration: 8, Func. Count: 63, Neg. LLF: 121.98586136680844
Iteration: 9, Func. Count: 70, Neg. LLF: 121.98517466114126
Iteration: 10, Func. Count: 77, Neg. LLF: 121.98413335938187
Iteration: 11, Func. Count: 84, Neg. LLF: 121.98412081703816
Iteration: 12, Func. Count: 92, Neg. LLF: 121.9840849362597
Iteration: 13, Func. Count: 98, Neg. LLF: 121.98408485720476
Optimization terminated successfully (Exit mode 0)
Current function value: 121.9840849362597
Iterations: 13
Function evaluations: 98
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 184.60556006477623
Iteration: 2, Func. Count: 18, Neg. LLF: 282.7096613333769
Iteration: 3, Func. Count: 27, Neg. LLF: 156.42045344464648
Iteration: 4, Func. Count: 36, Neg. LLF: 180.22233802902977
Iteration: 5, Func. Count: 45, Neg. LLF: 149.98788591905867
Iteration: 6, Func. Count: 54, Neg. LLF: 123.98059779924397
Iteration: 7, Func. Count: 63, Neg. LLF: 123.45836276137724
Iteration: 8, Func. Count: 72, Neg. LLF: 122.28019788455225
Iteration: 9, Func. Count: 80, Neg. LLF: 122.01534481112573
Iteration: 10, Func. Count: 88, Neg. LLF: 121.98790315386864
Iteration: 11, Func. Count: 96, Neg. LLF: 121.98431869605552
Iteration: 12, Func. Count: 104, Neg. LLF: 121.98409203456764
Iteration: 13, Func. Count: 112, Neg. LLF: 121.98408588059009
Iteration: 14, Func. Count: 120, Neg. LLF: 121.9840849001604
Optimization terminated successfully (Exit mode 0)
Current function value: 121.9840849001604
Iterations: 14
Function evaluations: 120
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 193.43218416181296
Iteration: 2, Func. Count: 20, Neg. LLF: 260.7306531709685
Iteration: 3, Func. Count: 30, Neg. LLF: 146.77507338266759
Iteration: 4, Func. Count: 40, Neg. LLF: 198.7301794010024
Iteration: 5, Func. Count: 50, Neg. LLF: 124.31298896187862
Iteration: 6, Func. Count: 60, Neg. LLF: 190.84953300860536
Iteration: 7, Func. Count: 70, Neg. LLF: 160.50157003468559
Iteration: 8, Func. Count: 80, Neg. LLF: 123.02767324285699
Iteration: 9, Func. Count: 90, Neg. LLF: 122.01298741167446
Iteration: 10, Func. Count: 99, Neg. LLF: 122.24702433743845
Iteration: 11, Func. Count: 109, Neg. LLF: 122.01270040216485
Iteration: 12, Func. Count: 119, Neg. LLF: 121.9037302758297
Iteration: 13, Func. Count: 128, Neg. LLF: 121.90233286057334
Iteration: 14, Func. Count: 137, Neg. LLF: 121.90223748413416
Iteration: 15, Func. Count: 146, Neg. LLF: 121.90221475177434
Iteration: 16, Func. Count: 155, Neg. LLF: 121.90221358573055
Iteration: 17, Func. Count: 163, Neg. LLF: 121.90221350339021
Optimization terminated successfully (Exit mode 0)
Current function value: 121.90221358573055
Iterations: 17
Function evaluations: 163
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 182.10865092084836
Iteration: 2, Func. Count: 22, Neg. LLF: 211.43115607452475
Iteration: 3, Func. Count: 33, Neg. LLF: 2832.714620141851
Iteration: 4, Func. Count: 44, Neg. LLF: 141.80294982844106
Iteration: 5, Func. Count: 55, Neg. LLF: 978.9102446073456
Iteration: 6, Func. Count: 66, Neg. LLF: 123.79839114715475
Iteration: 7, Func. Count: 76, Neg. LLF: 124.13715036683602
Iteration: 8, Func. Count: 87, Neg. LLF: 135.44567236832225
Iteration: 9, Func. Count: 99, Neg. LLF: 122.56053715870763
Iteration: 10, Func. Count: 110, Neg. LLF: 122.20122390165903
Iteration: 11, Func. Count: 121, Neg. LLF: 122.0685204712244
Iteration: 12, Func. Count: 131, Neg. LLF: 122.05235623994413
Iteration: 13, Func. Count: 141, Neg. LLF: 122.04650535865936
Iteration: 14, Func. Count: 151, Neg. LLF: 122.0343396275326
Iteration: 15, Func. Count: 161, Neg. LLF: 122.01619774127704
Iteration: 16, Func. Count: 171, Neg. LLF: 121.96175810476899
Iteration: 17, Func. Count: 181, Neg. LLF: 121.93455485817077
Iteration: 18, Func. Count: 191, Neg. LLF: 121.92000207646294
Iteration: 19, Func. Count: 201, Neg. LLF: 121.91182026832162
Iteration: 20, Func. Count: 211, Neg. LLF: 121.90936191035442
Iteration: 21, Func. Count: 221, Neg. LLF: 121.90493996154567
Iteration: 22, Func. Count: 231, Neg. LLF: 121.90293806523283
Iteration: 23, Func. Count: 241, Neg. LLF: 121.90224764317543
Iteration: 24, Func. Count: 251, Neg. LLF: 121.90221518150786
Iteration: 25, Func. Count: 261, Neg. LLF: 121.90221340393396
Iteration: 26, Func. Count: 270, Neg. LLF: 121.90221341689812
Optimization terminated successfully (Exit mode 0)
Current function value: 121.90221340393396
Iterations: 26
Function evaluations: 270
Gradient evaluations: 26
Iteration: 1, Func. Count: 8, Neg. LLF: 148.62016490393165
Iteration: 2, Func. Count: 16, Neg. LLF: 133.83236041318867
Iteration: 3, Func. Count: 25, Neg. LLF: 152.58224755761682
Iteration: 4, Func. Count: 33, Neg. LLF: 127.36222065338649
Iteration: 5, Func. Count: 40, Neg. LLF: 125.12203910324924
Iteration: 6, Func. Count: 47, Neg. LLF: 1500442.6222750368
Iteration: 7, Func. Count: 55, Neg. LLF: 167.2415661772304
Iteration: 8, Func. Count: 63, Neg. LLF: 171.36495027111016
Iteration: 9, Func. Count: 71, Neg. LLF: 3723.460693556953
Iteration: 10, Func. Count: 79, Neg. LLF: 260.46416196619214
Iteration: 11, Func. Count: 87, Neg. LLF: 169.74288558649158
Iteration: 12, Func. Count: 95, Neg. LLF: 163.70500710048114
Iteration: 13, Func. Count: 103, Neg. LLF: 131.30354203823785
Iteration: 14, Func. Count: 111, Neg. LLF: 122.67999511753038
Iteration: 15, Func. Count: 119, Neg. LLF: 121.89059972284416
Iteration: 16, Func. Count: 126, Neg. LLF: 121.84366734629415
Iteration: 17, Func. Count: 133, Neg. LLF: 121.84807602453645
Iteration: 18, Func. Count: 141, Neg. LLF: 121.8209669207792
Iteration: 19, Func. Count: 148, Neg. LLF: 121.82085532551379
Iteration: 20, Func. Count: 155, Neg. LLF: 121.82084258354337
Iteration: 21, Func. Count: 161, Neg. LLF: 121.82084255586327
Optimization terminated successfully (Exit mode 0)
Current function value: 121.82084258354337
Iterations: 21
Function evaluations: 161
Gradient evaluations: 21
Iteration: 1, Func. Count: 9, Neg. LLF: 234.3873911988904
Iteration: 2, Func. Count: 18, Neg. LLF: 1518.2620749701337
Iteration: 3, Func. Count: 27, Neg. LLF: 754.5388500137018
Iteration: 4, Func. Count: 36, Neg. LLF: 125.61622768973241
Iteration: 5, Func. Count: 45, Neg. LLF: 163.86828969376148
Iteration: 6, Func. Count: 54, Neg. LLF: 124.61169167037578
Iteration: 7, Func. Count: 63, Neg. LLF: 128.6640824888619
Iteration: 8, Func. Count: 72, Neg. LLF: 122.38271813992354
Iteration: 9, Func. Count: 81, Neg. LLF: 122.15914363843149
Iteration: 10, Func. Count: 90, Neg. LLF: 121.86129032556063
Iteration: 11, Func. Count: 98, Neg. LLF: 121.85395514822754
Iteration: 12, Func. Count: 107, Neg. LLF: 121.82174024489191
Iteration: 13, Func. Count: 115, Neg. LLF: 121.81334192713322
Iteration: 14, Func. Count: 123, Neg. LLF: 121.81324701312354
Iteration: 15, Func. Count: 131, Neg. LLF: 121.8132450132446
Iteration: 16, Func. Count: 138, Neg. LLF: 121.81324495151952
Optimization terminated successfully (Exit mode 0)
Current function value: 121.8132450132446
Iterations: 16
Function evaluations: 138
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 183.55645599963236
Iteration: 2, Func. Count: 20, Neg. LLF: 250.5043238477677
Iteration: 3, Func. Count: 30, Neg. LLF: 200.40909844771352
Iteration: 4, Func. Count: 40, Neg. LLF: 316.1989405347903
Iteration: 5, Func. Count: 50, Neg. LLF: 122.27041712890647
Iteration: 6, Func. Count: 59, Neg. LLF: 123.36988596187021
Iteration: 7, Func. Count: 69, Neg. LLF: 140.25911069350678
Iteration: 8, Func. Count: 79, Neg. LLF: 122.33551885355568
Iteration: 9, Func. Count: 89, Neg. LLF: 121.84655159197078
Iteration: 10, Func. Count: 98, Neg. LLF: 121.82718417277994
Iteration: 11, Func. Count: 107, Neg. LLF: 121.81527440719977
Iteration: 12, Func. Count: 116, Neg. LLF: 121.81332023284074
Iteration: 13, Func. Count: 125, Neg. LLF: 121.81326036439154
Iteration: 14, Func. Count: 134, Neg. LLF: 121.8132471198691
Iteration: 15, Func. Count: 143, Neg. LLF: 121.81324507396326
Iteration: 16, Func. Count: 151, Neg. LLF: 121.81324509431293
Optimization terminated successfully (Exit mode 0)
Current function value: 121.81324507396326
Iterations: 16
Function evaluations: 151
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 218.2861058019526
Iteration: 2, Func. Count: 22, Neg. LLF: 331.8050459229828
Iteration: 3, Func. Count: 33, Neg. LLF: 139.1551564465917
Iteration: 4, Func. Count: 44, Neg. LLF: 234.90192902803133
Iteration: 5, Func. Count: 55, Neg. LLF: 123.75442617505567
Iteration: 6, Func. Count: 65, Neg. LLF: 157.34280120726433
Iteration: 7, Func. Count: 76, Neg. LLF: 125.57601551804842
Iteration: 8, Func. Count: 87, Neg. LLF: 126.78375540444343
Iteration: 9, Func. Count: 98, Neg. LLF: 123.33277745456536
Iteration: 10, Func. Count: 109, Neg. LLF: 124.35443475970602
Iteration: 11, Func. Count: 120, Neg. LLF: 121.86276503503427
Iteration: 12, Func. Count: 130, Neg. LLF: 122.0649530313017
Iteration: 13, Func. Count: 141, Neg. LLF: 122.01861111113699
Iteration: 14, Func. Count: 152, Neg. LLF: 121.81341036236279
Iteration: 15, Func. Count: 162, Neg. LLF: 121.80677180593757
Iteration: 16, Func. Count: 172, Neg. LLF: 121.79589701330234
Iteration: 17, Func. Count: 182, Neg. LLF: 121.79379057509104
Iteration: 18, Func. Count: 192, Neg. LLF: 121.79347147541358
Iteration: 19, Func. Count: 202, Neg. LLF: 121.79346401990453
Iteration: 20, Func. Count: 211, Neg. LLF: 121.79346394930879
Optimization terminated successfully (Exit mode 0)
Current function value: 121.79346401990453
Iterations: 20
Function evaluations: 211
Gradient evaluations: 20
Iteration: 1, Func. Count: 12, Neg. LLF: 187.53598503250356
Iteration: 2, Func. Count: 24, Neg. LLF: 221.72894807790658
Iteration: 3, Func. Count: 36, Neg. LLF: 458.71935637459967
Iteration: 4, Func. Count: 48, Neg. LLF: 151.00889968775164
Iteration: 5, Func. Count: 60, Neg. LLF: 129.47426822457876
Iteration: 6, Func. Count: 72, Neg. LLF: 124.92322200584765
Iteration: 7, Func. Count: 84, Neg. LLF: 123.65037496047863
Iteration: 8, Func. Count: 96, Neg. LLF: 122.13489031218941
Iteration: 9, Func. Count: 107, Neg. LLF: 122.37440234074673
Iteration: 10, Func. Count: 119, Neg. LLF: 122.79054158099747
Iteration: 11, Func. Count: 131, Neg. LLF: 122.56451374036406
Iteration: 12, Func. Count: 143, Neg. LLF: 121.83992775311452
Iteration: 13, Func. Count: 154, Neg. LLF: 121.86109042144484
Iteration: 14, Func. Count: 166, Neg. LLF: 121.80391810250666
Iteration: 15, Func. Count: 177, Neg. LLF: 121.79398495138842
Iteration: 16, Func. Count: 188, Neg. LLF: 121.7935484196265
Iteration: 17, Func. Count: 199, Neg. LLF: 121.79346579193619
Iteration: 18, Func. Count: 210, Neg. LLF: 121.7934643118007
Iteration: 19, Func. Count: 221, Neg. LLF: 121.79346383862536
Optimization terminated successfully (Exit mode 0)
Current function value: 121.79346383862536
Iterations: 19
Function evaluations: 221
Gradient evaluations: 19
Iteration: 1, Func. Count: 9, Neg. LLF: 147.25475620723793
Iteration: 2, Func. Count: 18, Neg. LLF: 143.07090585400144
Iteration: 3, Func. Count: 29, Neg. LLF: 141.40950471589892
Iteration: 4, Func. Count: 38, Neg. LLF: 131.68913990772
Iteration: 5, Func. Count: 47, Neg. LLF: 127.34333929154133
Iteration: 6, Func. Count: 55, Neg. LLF: 127.61711032545284
Iteration: 7, Func. Count: 64, Neg. LLF: 129.3618865122499
Iteration: 8, Func. Count: 74, Neg. LLF: 3539.5102647503973
Iteration: 9, Func. Count: 83, Neg. LLF: 129.73823138282748
Iteration: 10, Func. Count: 92, Neg. LLF: 123.33796723129386
Iteration: 11, Func. Count: 101, Neg. LLF: 121.91337693197445
Iteration: 12, Func. Count: 109, Neg. LLF: 121.82923322883504
Iteration: 13, Func. Count: 117, Neg. LLF: 121.82101463235098
Iteration: 14, Func. Count: 125, Neg. LLF: 121.82087359533217
Iteration: 15, Func. Count: 133, Neg. LLF: 121.82085263020399
Iteration: 16, Func. Count: 141, Neg. LLF: 121.82084296755464
Iteration: 17, Func. Count: 148, Neg. LLF: 121.82084310464393
Optimization terminated successfully (Exit mode 0)
Current function value: 121.82084296755464
Iterations: 17
Function evaluations: 148
Gradient evaluations: 17
Iteration: 1, Func. Count: 10, Neg. LLF: 233.89478730073478
Iteration: 2, Func. Count: 20, Neg. LLF: 251877.80489536014
Iteration: 3, Func. Count: 30, Neg. LLF: 7460633.9229870485
Iteration: 4, Func. Count: 40, Neg. LLF: 125.51029851901717
Iteration: 5, Func. Count: 50, Neg. LLF: 140.0222097464324
Iteration: 6, Func. Count: 60, Neg. LLF: 126.01283959780896
Iteration: 7, Func. Count: 70, Neg. LLF: 122.64935523585683
Iteration: 8, Func. Count: 80, Neg. LLF: 121.89753195702654
Iteration: 9, Func. Count: 89, Neg. LLF: 121.84030100740864
Iteration: 10, Func. Count: 98, Neg. LLF: 121.84229207116991
Iteration: 11, Func. Count: 108, Neg. LLF: 121.82702942275432
Iteration: 12, Func. Count: 118, Neg. LLF: 121.8134491798269
Iteration: 13, Func. Count: 127, Neg. LLF: 121.81324560821625
Iteration: 14, Func. Count: 136, Neg. LLF: 121.81324497398748
Optimization terminated successfully (Exit mode 0)
Current function value: 121.81324497398748
Iterations: 14
Function evaluations: 136
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 184.56590101778258
Iteration: 2, Func. Count: 22, Neg. LLF: 253.67165475103366
Iteration: 3, Func. Count: 33, Neg. LLF: 194.20452336701152
Iteration: 4, Func. Count: 44, Neg. LLF: 974.9366769504052
Iteration: 5, Func. Count: 55, Neg. LLF: 123.51427781457107
Iteration: 6, Func. Count: 65, Neg. LLF: 123.0413474471155
Iteration: 7, Func. Count: 76, Neg. LLF: 139.87668653569827
Iteration: 8, Func. Count: 87, Neg. LLF: 122.38644053082811
Iteration: 9, Func. Count: 98, Neg. LLF: 121.85720670878504
Iteration: 10, Func. Count: 108, Neg. LLF: 121.83393623081993
Iteration: 11, Func. Count: 118, Neg. LLF: 121.83591645367835
Iteration: 12, Func. Count: 129, Neg. LLF: 121.81570841591217
Iteration: 13, Func. Count: 139, Neg. LLF: 121.81470090112927
Iteration: 14, Func. Count: 149, Neg. LLF: 121.81326444523702
Iteration: 15, Func. Count: 159, Neg. LLF: 121.8132451277704
Iteration: 16, Func. Count: 168, Neg. LLF: 121.81324514812583
Optimization terminated successfully (Exit mode 0)
Current function value: 121.8132451277704
Iterations: 16
Function evaluations: 168
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 207.22446935323796
Iteration: 2, Func. Count: 24, Neg. LLF: 294.45347296722326
Iteration: 3, Func. Count: 36, Neg. LLF: 975.7868321374707
Iteration: 4, Func. Count: 48, Neg. LLF: 172.9334257266889
Iteration: 5, Func. Count: 60, Neg. LLF: 124.4451320831289
Iteration: 6, Func. Count: 71, Neg. LLF: 190.4898961430172
Iteration: 7, Func. Count: 83, Neg. LLF: 5880604.340253134
Iteration: 8, Func. Count: 95, Neg. LLF: 134.02421204478085
Iteration: 9, Func. Count: 107, Neg. LLF: 124.2865905442701
Iteration: 10, Func. Count: 119, Neg. LLF: 122.33561206366613
Iteration: 11, Func. Count: 131, Neg. LLF: 129.7055999066001
Iteration: 12, Func. Count: 143, Neg. LLF: 121.86197095550362
Iteration: 13, Func. Count: 154, Neg. LLF: 124.24824719967782
Iteration: 14, Func. Count: 166, Neg. LLF: 121.81191860840896
Iteration: 15, Func. Count: 177, Neg. LLF: 121.80071363288702
Iteration: 16, Func. Count: 188, Neg. LLF: 121.7969417389855
Iteration: 17, Func. Count: 199, Neg. LLF: 121.79493625362834
Iteration: 18, Func. Count: 210, Neg. LLF: 121.79385954117937
Iteration: 19, Func. Count: 221, Neg. LLF: 121.79350806636711
Iteration: 20, Func. Count: 232, Neg. LLF: 121.79346740896456
Iteration: 21, Func. Count: 243, Neg. LLF: 121.79346396082813
Iteration: 22, Func. Count: 253, Neg. LLF: 121.79346389020209
Optimization terminated successfully (Exit mode 0)
Current function value: 121.79346396082813
Iterations: 22
Function evaluations: 253
Gradient evaluations: 22
Iteration: 1, Func. Count: 13, Neg. LLF: 179.6352806709169
Iteration: 2, Func. Count: 26, Neg. LLF: 201.73853281096598
Iteration: 3, Func. Count: 39, Neg. LLF: 8642.068502903805
Iteration: 4, Func. Count: 52, Neg. LLF: 145.96908622179052
Iteration: 5, Func. Count: 65, Neg. LLF: 222274.44735238596
Iteration: 6, Func. Count: 78, Neg. LLF: 124.16050373899253
Iteration: 7, Func. Count: 91, Neg. LLF: 123.52664046159214
Iteration: 8, Func. Count: 104, Neg. LLF: 122.59115547482813
Iteration: 9, Func. Count: 117, Neg. LLF: 123.98921357116586
Iteration: 10, Func. Count: 130, Neg. LLF: 121.86786704808453
Iteration: 11, Func. Count: 142, Neg. LLF: 123.71744468290545
Iteration: 12, Func. Count: 155, Neg. LLF: 122.18185681648941
Iteration: 13, Func. Count: 168, Neg. LLF: 121.81962154896499
Iteration: 14, Func. Count: 181, Neg. LLF: 121.7938729290725
Iteration: 15, Func. Count: 193, Neg. LLF: 121.79353048138013
Iteration: 16, Func. Count: 205, Neg. LLF: 121.79346462105009
Iteration: 17, Func. Count: 217, Neg. LLF: 121.79346385120432
Optimization terminated successfully (Exit mode 0)
Current function value: 121.79346385120432
Iterations: 17
Function evaluations: 217
Gradient evaluations: 17
Iteration: 1, Func. Count: 6, Neg. LLF: 141.81095761958977
Iteration: 2, Func. Count: 12, Neg. LLF: 155.30808379812072
Iteration: 3, Func. Count: 18, Neg. LLF: 132.84145039062687
Iteration: 4, Func. Count: 24, Neg. LLF: 127.81564576359149
Iteration: 5, Func. Count: 29, Neg. LLF: 201.3499661494214
Iteration: 6, Func. Count: 35, Neg. LLF: 193.6448917159341
Iteration: 7, Func. Count: 41, Neg. LLF: 194.8221820895694
Iteration: 8, Func. Count: 47, Neg. LLF: 195.429112683559
Iteration: 9, Func. Count: 53, Neg. LLF: 194.1756156264483
Iteration: 10, Func. Count: 59, Neg. LLF: 195.39870077938141
Iteration: 11, Func. Count: 65, Neg. LLF: 264.8997301373934
Iteration: 12, Func. Count: 71, Neg. LLF: 178.51620088416257
Iteration: 13, Func. Count: 77, Neg. LLF: 135.6120862036138
Iteration: 14, Func. Count: 83, Neg. LLF: 124.90718809612781
Iteration: 15, Func. Count: 89, Neg. LLF: 123.73317200043552
Iteration: 16, Func. Count: 94, Neg. LLF: 123.87094858710816
Iteration: 17, Func. Count: 100, Neg. LLF: 123.7334215811483
Iteration: 18, Func. Count: 106, Neg. LLF: 123.73125369525056
Iteration: 19, Func. Count: 111, Neg. LLF: 123.73100878577665
Iteration: 20, Func. Count: 116, Neg. LLF: 123.730645007583
Iteration: 21, Func. Count: 121, Neg. LLF: 123.73047865780613
Iteration: 22, Func. Count: 126, Neg. LLF: 123.73044440955407
Iteration: 23, Func. Count: 131, Neg. LLF: 123.73044248763611
Iteration: 24, Func. Count: 135, Neg. LLF: 123.73044239093277
Optimization terminated successfully (Exit mode 0)
Current function value: 123.73044248763611
Iterations: 24
Function evaluations: 135
Gradient evaluations: 24
Iteration: 1, Func. Count: 7, Neg. LLF: 289.91906901689634
Iteration: 2, Func. Count: 14, Neg. LLF: 343.011995723604
Iteration: 3, Func. Count: 21, Neg. LLF: 170.4222134100214
Iteration: 4, Func. Count: 28, Neg. LLF: 126.37787892824
Iteration: 5, Func. Count: 35, Neg. LLF: 126.5160416383018
Iteration: 6, Func. Count: 42, Neg. LLF: 123.38830371617945
Iteration: 7, Func. Count: 49, Neg. LLF: 123.10673228815733
Iteration: 8, Func. Count: 56, Neg. LLF: 122.96276382077636
Iteration: 9, Func. Count: 62, Neg. LLF: 122.96234394150753
Iteration: 10, Func. Count: 68, Neg. LLF: 122.96229664402262
Iteration: 11, Func. Count: 74, Neg. LLF: 122.96229436003924
Iteration: 12, Func. Count: 79, Neg. LLF: 122.9622942848859
Optimization terminated successfully (Exit mode 0)
Current function value: 122.96229436003924
Iterations: 12
Function evaluations: 79
Gradient evaluations: 12
Iteration: 1, Func. Count: 8, Neg. LLF: 241.25901286057896
Iteration: 2, Func. Count: 16, Neg. LLF: 177.1031125749375
Iteration: 3, Func. Count: 24, Neg. LLF: 3921.1341548760156
Iteration: 4, Func. Count: 32, Neg. LLF: 140.52424959551783
Iteration: 5, Func. Count: 40, Neg. LLF: 125.0099322397392
Iteration: 6, Func. Count: 48, Neg. LLF: 123.19540531025427
Iteration: 7, Func. Count: 55, Neg. LLF: 123.02615027987432
Iteration: 8, Func. Count: 62, Neg. LLF: 123.29888778431786
Iteration: 9, Func. Count: 70, Neg. LLF: 122.96932940660243
Iteration: 10, Func. Count: 77, Neg. LLF: 122.96297680601585
Iteration: 11, Func. Count: 84, Neg. LLF: 122.96251913412047
Iteration: 12, Func. Count: 91, Neg. LLF: 122.96229480522035
Iteration: 13, Func. Count: 98, Neg. LLF: 122.96229433178047
Optimization terminated successfully (Exit mode 0)
Current function value: 122.96229433178047
Iterations: 13
Function evaluations: 98
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 223.88306578657452
Iteration: 2, Func. Count: 18, Neg. LLF: 190.417047791206
Iteration: 3, Func. Count: 27, Neg. LLF: 144.54364815116114
Iteration: 4, Func. Count: 36, Neg. LLF: 126.79808514644267
Iteration: 5, Func. Count: 45, Neg. LLF: 126.0371828541485
Iteration: 6, Func. Count: 54, Neg. LLF: 123.23419186992982
Iteration: 7, Func. Count: 63, Neg. LLF: 122.14006522545017
Iteration: 8, Func. Count: 71, Neg. LLF: 122.05871043638112
Iteration: 9, Func. Count: 79, Neg. LLF: 122.02706494323776
Iteration: 10, Func. Count: 87, Neg. LLF: 122.02102409027981
Iteration: 11, Func. Count: 95, Neg. LLF: 122.01048651599481
Iteration: 12, Func. Count: 103, Neg. LLF: 122.00789650270315
Iteration: 13, Func. Count: 111, Neg. LLF: 122.00770311160605
Iteration: 14, Func. Count: 119, Neg. LLF: 122.00770245394065
Optimization terminated successfully (Exit mode 0)
Current function value: 122.00770245394065
Iterations: 14
Function evaluations: 119
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 213.14559270387454
Iteration: 2, Func. Count: 20, Neg. LLF: 169.91829074969058
Iteration: 3, Func. Count: 30, Neg. LLF: 135.2432260855269
Iteration: 4, Func. Count: 40, Neg. LLF: 165.27870374115972
Iteration: 5, Func. Count: 50, Neg. LLF: 124.52007193183887
Iteration: 6, Func. Count: 59, Neg. LLF: 123.43641727807672
Iteration: 7, Func. Count: 69, Neg. LLF: 123.39004680477757
Iteration: 8, Func. Count: 79, Neg. LLF: 122.21330923951454
Iteration: 9, Func. Count: 88, Neg. LLF: 122.14812303083947
Iteration: 10, Func. Count: 97, Neg. LLF: 122.13234587012127
Iteration: 11, Func. Count: 106, Neg. LLF: 122.13041801494354
Iteration: 12, Func. Count: 115, Neg. LLF: 122.13005873255176
Iteration: 13, Func. Count: 124, Neg. LLF: 122.13005764021995
Iteration: 14, Func. Count: 132, Neg. LLF: 122.13005755725297
Optimization terminated successfully (Exit mode 0)
Current function value: 122.13005764021995
Iterations: 14
Function evaluations: 132
Gradient evaluations: 14
Iteration: 1, Func. Count: 7, Neg. LLF: 138.05997748196705
Iteration: 2, Func. Count: 14, Neg. LLF: 150.686585974587
Iteration: 3, Func. Count: 21, Neg. LLF: 128.85791706482775
Iteration: 4, Func. Count: 27, Neg. LLF: 125.19637481207714
Iteration: 5, Func. Count: 33, Neg. LLF: 8972.960905419655
Iteration: 6, Func. Count: 40, Neg. LLF: 177.90560279652462
Iteration: 7, Func. Count: 47, Neg. LLF: 229.70220433004815
Iteration: 8, Func. Count: 54, Neg. LLF: 186.45888274191415
Iteration: 9, Func. Count: 61, Neg. LLF: 125.32252529856554
Iteration: 10, Func. Count: 68, Neg. LLF: 123.73725640356436
Iteration: 11, Func. Count: 74, Neg. LLF: 123.68943587690468
Iteration: 12, Func. Count: 80, Neg. LLF: 123.6814873837619
Iteration: 13, Func. Count: 86, Neg. LLF: 123.68017150133568
Iteration: 14, Func. Count: 92, Neg. LLF: 123.68013910196738
Iteration: 15, Func. Count: 98, Neg. LLF: 123.68013181029764
Iteration: 16, Func. Count: 104, Neg. LLF: 123.68013087999218
Optimization terminated successfully (Exit mode 0)
Current function value: 123.68013087999218
Iterations: 16
Function evaluations: 104
Gradient evaluations: 16
Iteration: 1, Func. Count: 8, Neg. LLF: 215.7695669553016
Iteration: 2, Func. Count: 16, Neg. LLF: 393.57839466073585
Iteration: 3, Func. Count: 24, Neg. LLF: 1160.5616878148005
Iteration: 4, Func. Count: 32, Neg. LLF: 150.76102537976584
Iteration: 5, Func. Count: 40, Neg. LLF: 126.89576141035386
Iteration: 6, Func. Count: 48, Neg. LLF: 126.7358001489661
Iteration: 7, Func. Count: 56, Neg. LLF: 125.20025835614094
Iteration: 8, Func. Count: 64, Neg. LLF: 123.30425542973165
Iteration: 9, Func. Count: 72, Neg. LLF: 122.52552535008417
Iteration: 10, Func. Count: 79, Neg. LLF: 122.51513320887727
Iteration: 11, Func. Count: 86, Neg. LLF: 122.51433240663023
Iteration: 12, Func. Count: 93, Neg. LLF: 122.51410642114445
Iteration: 13, Func. Count: 100, Neg. LLF: 122.5140894555499
Iteration: 14, Func. Count: 107, Neg. LLF: 122.51408801421864
Iteration: 15, Func. Count: 113, Neg. LLF: 122.5140879291641
Optimization terminated successfully (Exit mode 0)
Current function value: 122.51408801421864
Iterations: 15
Function evaluations: 113
Gradient evaluations: 15
Iteration: 1, Func. Count: 9, Neg. LLF: 202.4138602295592
Iteration: 2, Func. Count: 18, Neg. LLF: 415.55088902118956
Iteration: 3, Func. Count: 27, Neg. LLF: 158.06170961295408
Iteration: 4, Func. Count: 36, Neg. LLF: 227.7864428772034
Iteration: 5, Func. Count: 45, Neg. LLF: 206.23616229251488
Iteration: 6, Func. Count: 54, Neg. LLF: 124.96912933832415
Iteration: 7, Func. Count: 63, Neg. LLF: 124.390217080544
Iteration: 8, Func. Count: 72, Neg. LLF: 122.56157670711363
Iteration: 9, Func. Count: 80, Neg. LLF: 123.31387908827274
Iteration: 10, Func. Count: 89, Neg. LLF: 122.51562866486594
Iteration: 11, Func. Count: 97, Neg. LLF: 122.51413233285255
Iteration: 12, Func. Count: 105, Neg. LLF: 122.51409247602581
Iteration: 13, Func. Count: 113, Neg. LLF: 122.51408813321399
Iteration: 14, Func. Count: 120, Neg. LLF: 122.51408807968488
Optimization terminated successfully (Exit mode 0)
Current function value: 122.51408813321399
Iterations: 14
Function evaluations: 120
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 196.51335996269296
Iteration: 2, Func. Count: 20, Neg. LLF: 243.39853999114047
Iteration: 3, Func. Count: 30, Neg. LLF: 615.0215190108083
Iteration: 4, Func. Count: 40, Neg. LLF: 1005.3109272342107
Iteration: 5, Func. Count: 50, Neg. LLF: 186.73491360501902
Iteration: 6, Func. Count: 60, Neg. LLF: 124.98641375274558
Iteration: 7, Func. Count: 70, Neg. LLF: 163.01269783668988
Iteration: 8, Func. Count: 80, Neg. LLF: 121.63603569572567
Iteration: 9, Func. Count: 89, Neg. LLF: 121.63772650662476
Iteration: 10, Func. Count: 99, Neg. LLF: 121.61936395821874
Iteration: 11, Func. Count: 109, Neg. LLF: 121.60837940163933
Iteration: 12, Func. Count: 118, Neg. LLF: 121.60618409046982
Iteration: 13, Func. Count: 127, Neg. LLF: 121.60600586933947
Iteration: 14, Func. Count: 136, Neg. LLF: 121.60600182651012
Iteration: 15, Func. Count: 144, Neg. LLF: 121.60600173883964
Optimization terminated successfully (Exit mode 0)
Current function value: 121.60600182651012
Iterations: 15
Function evaluations: 144
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 193.67223340592633
Iteration: 2, Func. Count: 22, Neg. LLF: 202.59878902919002
Iteration: 3, Func. Count: 33, Neg. LLF: 643.9262746932493
Iteration: 4, Func. Count: 44, Neg. LLF: 601451.1506833626
Iteration: 5, Func. Count: 55, Neg. LLF: 205.24925651021033
Iteration: 6, Func. Count: 66, Neg. LLF: 124.69483474578867
Iteration: 7, Func. Count: 77, Neg. LLF: 156.3336698224628
Iteration: 8, Func. Count: 88, Neg. LLF: 121.73990365066282
Iteration: 9, Func. Count: 98, Neg. LLF: 122.08278245268939
Iteration: 10, Func. Count: 109, Neg. LLF: 121.64034615208992
Iteration: 11, Func. Count: 119, Neg. LLF: 121.62020532629182
Iteration: 12, Func. Count: 129, Neg. LLF: 121.6067294498612
Iteration: 13, Func. Count: 139, Neg. LLF: 121.60622905700787
Iteration: 14, Func. Count: 149, Neg. LLF: 121.6060026120901
Iteration: 15, Func. Count: 159, Neg. LLF: 121.60600183574601
Optimization terminated successfully (Exit mode 0)
Current function value: 121.60600183574601
Iterations: 15
Function evaluations: 159
Gradient evaluations: 15
Iteration: 1, Func. Count: 8, Neg. LLF: 149.7221293358835
Iteration: 2, Func. Count: 16, Neg. LLF: 131.6360399140295
Iteration: 3, Func. Count: 24, Neg. LLF: 145.2418388470927
Iteration: 4, Func. Count: 32, Neg. LLF: 137.72520799443947
Iteration: 5, Func. Count: 40, Neg. LLF: 171.4754928227551
Iteration: 6, Func. Count: 48, Neg. LLF: 22703.948791510476
Iteration: 7, Func. Count: 56, Neg. LLF: 521.1599867922778
Iteration: 8, Func. Count: 64, Neg. LLF: 379.15539879974136
Iteration: 9, Func. Count: 72, Neg. LLF: 387.6048133781199
Iteration: 10, Func. Count: 80, Neg. LLF: 407.2411252759041
Iteration: 11, Func. Count: 88, Neg. LLF: 471.06396898527703
Iteration: 12, Func. Count: 96, Neg. LLF: 138.37906452894862
Iteration: 13, Func. Count: 104, Neg. LLF: 128.16385612145336
Iteration: 14, Func. Count: 112, Neg. LLF: 244.47370096512032
Iteration: 15, Func. Count: 120, Neg. LLF: 194.37307328499188
Iteration: 16, Func. Count: 128, Neg. LLF: 190.38911797124933
Iteration: 17, Func. Count: 136, Neg. LLF: 146.47322559789148
Iteration: 18, Func. Count: 144, Neg. LLF: 124.14182386296827
Iteration: 19, Func. Count: 152, Neg. LLF: 123.27332173519585
Iteration: 20, Func. Count: 159, Neg. LLF: 123.29802123674787
Iteration: 21, Func. Count: 167, Neg. LLF: 123.26560364706658
Iteration: 22, Func. Count: 174, Neg. LLF: 123.2645501580656
Iteration: 23, Func. Count: 181, Neg. LLF: 123.26460812710165
Iteration: 24, Func. Count: 188, Neg. LLF: 123.26450629833306
Optimization terminated successfully (Exit mode 0)
Current function value: 123.26450634906317
Iterations: 25
Function evaluations: 188
Gradient evaluations: 24
Iteration: 1, Func. Count: 9, Neg. LLF: 517.9936809976748
Iteration: 2, Func. Count: 18, Neg. LLF: 191.55149638677076
Iteration: 3, Func. Count: 27, Neg. LLF: 9227.425369088456
Iteration: 4, Func. Count: 36, Neg. LLF: 236.82406143763532
Iteration: 5, Func. Count: 45, Neg. LLF: 124.30894422610676
Iteration: 6, Func. Count: 54, Neg. LLF: 126.24233945618823
Iteration: 7, Func. Count: 63, Neg. LLF: 122.08151931203534
Iteration: 8, Func. Count: 71, Neg. LLF: 121.99296654815313
Iteration: 9, Func. Count: 79, Neg. LLF: 121.98637949640197
Iteration: 10, Func. Count: 87, Neg. LLF: 121.9841992224815
Iteration: 11, Func. Count: 95, Neg. LLF: 121.984086576158
Iteration: 12, Func. Count: 103, Neg. LLF: 121.98408501865909
Iteration: 13, Func. Count: 110, Neg. LLF: 121.98408493959823
Optimization terminated successfully (Exit mode 0)
Current function value: 121.98408501865909
Iterations: 13
Function evaluations: 110
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 406.00599721566755
Iteration: 2, Func. Count: 20, Neg. LLF: 402.7452388403999
Iteration: 3, Func. Count: 30, Neg. LLF: 310.80384105239534
Iteration: 4, Func. Count: 40, Neg. LLF: 1257838.4683220345
Iteration: 5, Func. Count: 50, Neg. LLF: 128.00028336672358
Iteration: 6, Func. Count: 60, Neg. LLF: 125.41441759860493
Iteration: 7, Func. Count: 70, Neg. LLF: 122.52658041530566
Iteration: 8, Func. Count: 79, Neg. LLF: 122.05726150672466
Iteration: 9, Func. Count: 88, Neg. LLF: 122.00476803777461
Iteration: 10, Func. Count: 97, Neg. LLF: 121.98893597527835
Iteration: 11, Func. Count: 106, Neg. LLF: 121.9841924417301
Iteration: 12, Func. Count: 115, Neg. LLF: 121.98409370469395
Iteration: 13, Func. Count: 124, Neg. LLF: 121.98408621564542
Iteration: 14, Func. Count: 133, Neg. LLF: 121.98408492180351
Iteration: 15, Func. Count: 141, Neg. LLF: 121.98408491591923
Optimization terminated successfully (Exit mode 0)
Current function value: 121.98408492180351
Iterations: 15
Function evaluations: 141
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 377.9580914540131
Iteration: 2, Func. Count: 22, Neg. LLF: 517.7541347420143
Iteration: 3, Func. Count: 33, Neg. LLF: 1060.9022652053472
Iteration: 4, Func. Count: 44, Neg. LLF: 784.2177984933603
Iteration: 5, Func. Count: 55, Neg. LLF: 128.51465740746815
Iteration: 6, Func. Count: 66, Neg. LLF: 125.07133159136914
Iteration: 7, Func. Count: 77, Neg. LLF: 133.99314294096496
Iteration: 8, Func. Count: 88, Neg. LLF: 121.55856292775908
Iteration: 9, Func. Count: 98, Neg. LLF: 121.89462694073056
Iteration: 10, Func. Count: 109, Neg. LLF: 121.46902461459166
Iteration: 11, Func. Count: 119, Neg. LLF: 121.44419590489282
Iteration: 12, Func. Count: 129, Neg. LLF: 121.43057121660677
Iteration: 13, Func. Count: 139, Neg. LLF: 121.41588196737492
Iteration: 14, Func. Count: 149, Neg. LLF: 121.41533515094916
Iteration: 15, Func. Count: 159, Neg. LLF: 121.4153151467336
Iteration: 16, Func. Count: 169, Neg. LLF: 121.41531413447984
Iteration: 17, Func. Count: 178, Neg. LLF: 121.41531405386206
Optimization terminated successfully (Exit mode 0)
Current function value: 121.41531413447984
Iterations: 17
Function evaluations: 178
Gradient evaluations: 17
Iteration: 1, Func. Count: 12, Neg. LLF: 361.45166282280314
Iteration: 2, Func. Count: 24, Neg. LLF: 289.33831624576567
Iteration: 3, Func. Count: 36, Neg. LLF: 2899.713685350598
Iteration: 4, Func. Count: 48, Neg. LLF: 20393.000303330122
Iteration: 5, Func. Count: 60, Neg. LLF: 128.60831985004958
Iteration: 6, Func. Count: 72, Neg. LLF: 125.02088475847876
Iteration: 7, Func. Count: 84, Neg. LLF: 140.6135036384121
Iteration: 8, Func. Count: 96, Neg. LLF: 125.90367065265742
Iteration: 9, Func. Count: 108, Neg. LLF: 121.62222385030978
Iteration: 10, Func. Count: 119, Neg. LLF: 121.58200231206888
Iteration: 11, Func. Count: 130, Neg. LLF: 121.54726982188177
Iteration: 12, Func. Count: 141, Neg. LLF: 121.49012525264737
Iteration: 13, Func. Count: 152, Neg. LLF: 121.44272855195186
Iteration: 14, Func. Count: 163, Neg. LLF: 121.42013479073483
Iteration: 15, Func. Count: 174, Neg. LLF: 121.41552690892517
Iteration: 16, Func. Count: 185, Neg. LLF: 121.41532881200368
Iteration: 17, Func. Count: 196, Neg. LLF: 121.415315131351
Iteration: 18, Func. Count: 207, Neg. LLF: 121.41531420706501
Optimization terminated successfully (Exit mode 0)
Current function value: 121.41531420706501
Iterations: 18
Function evaluations: 207
Gradient evaluations: 18
Iteration: 1, Func. Count: 9, Neg. LLF: 159.68190110130442
Iteration: 2, Func. Count: 18, Neg. LLF: 148.22720039266252
Iteration: 3, Func. Count: 28, Neg. LLF: 129.5878837003008
Iteration: 4, Func. Count: 37, Neg. LLF: 148.23113233265883
Iteration: 5, Func. Count: 46, Neg. LLF: 288.78229287313314
Iteration: 6, Func. Count: 55, Neg. LLF: 183.45355371168355
Iteration: 7, Func. Count: 64, Neg. LLF: 189.29359420854786
Iteration: 8, Func. Count: 73, Neg. LLF: 174.81547174437125
Iteration: 9, Func. Count: 82, Neg. LLF: 168.18231233176488
Iteration: 10, Func. Count: 91, Neg. LLF: 158.21721956421453
Iteration: 11, Func. Count: 100, Neg. LLF: 169.65175897776277
Iteration: 12, Func. Count: 109, Neg. LLF: 5761.354865305431
Iteration: 13, Func. Count: 118, Neg. LLF: 163.64349045140995
Iteration: 14, Func. Count: 127, Neg. LLF: 166.56430751699608
Iteration: 15, Func. Count: 136, Neg. LLF: 134.97418608461984
Iteration: 16, Func. Count: 145, Neg. LLF: 142.8605547579442
Iteration: 17, Func. Count: 154, Neg. LLF: 157.0585936046426
Iteration: 18, Func. Count: 163, Neg. LLF: 121.94324429331368
Iteration: 19, Func. Count: 171, Neg. LLF: 121.90354898074614
Iteration: 20, Func. Count: 179, Neg. LLF: 121.88140226838429
Iteration: 21, Func. Count: 187, Neg. LLF: 121.8158917665396
Iteration: 22, Func. Count: 195, Neg. LLF: 121.76360911208415
Iteration: 23, Func. Count: 203, Neg. LLF: 121.71536509332084
Iteration: 24, Func. Count: 211, Neg. LLF: 121.69041644201464
Iteration: 25, Func. Count: 219, Neg. LLF: 121.68842511716439
Iteration: 26, Func. Count: 227, Neg. LLF: 121.68797879067333
Iteration: 27, Func. Count: 235, Neg. LLF: 121.68793615417484
Iteration: 28, Func. Count: 243, Neg. LLF: 121.68793468323206
Iteration: 29, Func. Count: 250, Neg. LLF: 121.68793465149417
Optimization terminated successfully (Exit mode 0)
Current function value: 121.68793468323206
Iterations: 29
Function evaluations: 250
Gradient evaluations: 29
Iteration: 1, Func. Count: 10, Neg. LLF: 467.9573314874433
Iteration: 2, Func. Count: 20, Neg. LLF: 290.5080999080458
Iteration: 3, Func. Count: 30, Neg. LLF: 397.21788706483954
Iteration: 4, Func. Count: 40, Neg. LLF: 139.06345861341168
Iteration: 5, Func. Count: 50, Neg. LLF: 125.44831275700034
Iteration: 6, Func. Count: 60, Neg. LLF: 125.68671526452792
Iteration: 7, Func. Count: 70, Neg. LLF: 128.49539695885605
Iteration: 8, Func. Count: 80, Neg. LLF: 121.92074753941928
Iteration: 9, Func. Count: 89, Neg. LLF: 130.92158781946208
Iteration: 10, Func. Count: 99, Neg. LLF: 121.70903162247161
Iteration: 11, Func. Count: 108, Neg. LLF: 121.69246298113273
Iteration: 12, Func. Count: 117, Neg. LLF: 121.69217701510901
Iteration: 13, Func. Count: 127, Neg. LLF: 121.68802534254523
Iteration: 14, Func. Count: 136, Neg. LLF: 121.68794570118872
Iteration: 15, Func. Count: 145, Neg. LLF: 121.68793516601531
Iteration: 16, Func. Count: 153, Neg. LLF: 121.68793513423701
Optimization terminated successfully (Exit mode 0)
Current function value: 121.68793516601531
Iterations: 16
Function evaluations: 153
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 375.18572532558477
Iteration: 2, Func. Count: 22, Neg. LLF: 201.36528055277623
Iteration: 3, Func. Count: 33, Neg. LLF: 400.54575489250595
Iteration: 4, Func. Count: 44, Neg. LLF: 8495.162997526551
Iteration: 5, Func. Count: 55, Neg. LLF: 126.91975421302692
Iteration: 6, Func. Count: 66, Neg. LLF: 126.12052105913754
Iteration: 7, Func. Count: 77, Neg. LLF: 122.14772991953116
Iteration: 8, Func. Count: 87, Neg. LLF: 121.95971540005412
Iteration: 9, Func. Count: 97, Neg. LLF: 122.22537825865895
Iteration: 10, Func. Count: 108, Neg. LLF: 121.72910721243909
Iteration: 11, Func. Count: 118, Neg. LLF: 121.69566118070146
Iteration: 12, Func. Count: 128, Neg. LLF: 121.68849504572493
Iteration: 13, Func. Count: 138, Neg. LLF: 121.68800768936634
Iteration: 14, Func. Count: 148, Neg. LLF: 121.68794726964452
Iteration: 15, Func. Count: 158, Neg. LLF: 121.68793612619443
Iteration: 16, Func. Count: 168, Neg. LLF: 121.68793471077781
Iteration: 17, Func. Count: 177, Neg. LLF: 121.68793474594786
Optimization terminated successfully (Exit mode 0)
Current function value: 121.68793471077781
Iterations: 17
Function evaluations: 177
Gradient evaluations: 17
Iteration: 1, Func. Count: 12, Neg. LLF: 348.28950838913846
Iteration: 2, Func. Count: 24, Neg. LLF: 350.7122076835319
Iteration: 3, Func. Count: 36, Neg. LLF: 1100.3929172062308
Iteration: 4, Func. Count: 48, Neg. LLF: 49394.0041518761
Iteration: 5, Func. Count: 60, Neg. LLF: 126.59182175304056
Iteration: 6, Func. Count: 72, Neg. LLF: 128.57719775990296
Iteration: 7, Func. Count: 84, Neg. LLF: 125.33499702843156
Iteration: 8, Func. Count: 96, Neg. LLF: 122.80263426879813
Iteration: 9, Func. Count: 108, Neg. LLF: 121.84761374746735
Iteration: 10, Func. Count: 119, Neg. LLF: 122.22626294630514
Iteration: 11, Func. Count: 131, Neg. LLF: 122.69872777856234
Iteration: 12, Func. Count: 143, Neg. LLF: 121.59585977308055
Iteration: 13, Func. Count: 154, Neg. LLF: 121.59181894238813
Iteration: 14, Func. Count: 165, Neg. LLF: 121.59136850098514
Iteration: 15, Func. Count: 176, Neg. LLF: 121.59122683497526
Iteration: 16, Func. Count: 187, Neg. LLF: 121.59120111128729
Iteration: 17, Func. Count: 198, Neg. LLF: 121.59117420480447
Iteration: 18, Func. Count: 209, Neg. LLF: 121.5911516265387
Iteration: 19, Func. Count: 220, Neg. LLF: 121.59114665657124
Iteration: 20, Func. Count: 231, Neg. LLF: 121.59114610467674
Optimization terminated successfully (Exit mode 0)
Current function value: 121.59114610467674
Iterations: 20
Function evaluations: 231
Gradient evaluations: 20
Iteration: 1, Func. Count: 13, Neg. LLF: 336.48186112822475
Iteration: 2, Func. Count: 26, Neg. LLF: 308.2141737071271
Iteration: 3, Func. Count: 39, Neg. LLF: 4020.525781439318
Iteration: 4, Func. Count: 52, Neg. LLF: 5445.649649469544
Iteration: 5, Func. Count: 65, Neg. LLF: 127.2318445928114
Iteration: 6, Func. Count: 78, Neg. LLF: 125.77871950159584
Iteration: 7, Func. Count: 91, Neg. LLF: 126.38075875305704
Iteration: 8, Func. Count: 104, Neg. LLF: 124.43238029627241
Iteration: 9, Func. Count: 117, Neg. LLF: 121.83105963549251
Iteration: 10, Func. Count: 129, Neg. LLF: 123.94519287313156
Iteration: 11, Func. Count: 142, Neg. LLF: 122.20476316305722
Iteration: 12, Func. Count: 155, Neg. LLF: 121.59934722717006
Iteration: 13, Func. Count: 167, Neg. LLF: 121.59324235731866
Iteration: 14, Func. Count: 179, Neg. LLF: 121.59182820236485
Iteration: 15, Func. Count: 191, Neg. LLF: 121.59144684155842
Iteration: 16, Func. Count: 203, Neg. LLF: 121.59130155810738
Iteration: 17, Func. Count: 215, Neg. LLF: 121.59117554143934
Iteration: 18, Func. Count: 227, Neg. LLF: 121.59115127360329
Iteration: 19, Func. Count: 239, Neg. LLF: 121.59114663272135
Iteration: 20, Func. Count: 250, Neg. LLF: 121.5911466950672
Optimization terminated successfully (Exit mode 0)
Current function value: 121.59114663272135
Iterations: 20
Function evaluations: 250
Gradient evaluations: 20
Iteration: 1, Func. Count: 10, Neg. LLF: 156.61643322387584
Iteration: 2, Func. Count: 20, Neg. LLF: 167.37973158841854
Iteration: 3, Func. Count: 31, Neg. LLF: 129.9244248477378
Iteration: 4, Func. Count: 41, Neg. LLF: 145.12902246827852
Iteration: 5, Func. Count: 51, Neg. LLF: 132.239157944935
Iteration: 6, Func. Count: 61, Neg. LLF: 247.21972146276744
Iteration: 7, Func. Count: 71, Neg. LLF: 173.51934555043698
Iteration: 8, Func. Count: 81, Neg. LLF: 187.60161999485132
Iteration: 9, Func. Count: 91, Neg. LLF: 178.855195881324
Iteration: 10, Func. Count: 101, Neg. LLF: 164.00393235487778
Iteration: 11, Func. Count: 111, Neg. LLF: 10143444.79646446
Iteration: 12, Func. Count: 121, Neg. LLF: 156.38107811107454
Iteration: 13, Func. Count: 131, Neg. LLF: 153.97140837031304
Iteration: 14, Func. Count: 141, Neg. LLF: 124.20405408816504
Iteration: 15, Func. Count: 151, Neg. LLF: 121.89811691974714
Iteration: 16, Func. Count: 160, Neg. LLF: 121.75414959401357
Iteration: 17, Func. Count: 169, Neg. LLF: 121.71592498653337
Iteration: 18, Func. Count: 178, Neg. LLF: 121.72790761955761
Iteration: 19, Func. Count: 188, Neg. LLF: 121.68894965613507
Iteration: 20, Func. Count: 197, Neg. LLF: 121.68799751785691
Iteration: 21, Func. Count: 206, Neg. LLF: 121.68794717471971
Iteration: 22, Func. Count: 215, Neg. LLF: 121.68793674300234
Iteration: 23, Func. Count: 224, Neg. LLF: 121.68793482976102
Iteration: 24, Func. Count: 232, Neg. LLF: 121.6879349737406
Optimization terminated successfully (Exit mode 0)
Current function value: 121.68793482976102
Iterations: 24
Function evaluations: 232
Gradient evaluations: 24
Iteration: 1, Func. Count: 11, Neg. LLF: 446.3571859127936
Iteration: 2, Func. Count: 22, Neg. LLF: 495.8251415547109
Iteration: 3, Func. Count: 33, Neg. LLF: 210.70860362523672
Iteration: 4, Func. Count: 44, Neg. LLF: 6248088.516149237
Iteration: 5, Func. Count: 55, Neg. LLF: 123.67266224335664
Iteration: 6, Func. Count: 65, Neg. LLF: 128.60726594128386
Iteration: 7, Func. Count: 76, Neg. LLF: 126.23352166515143
Iteration: 8, Func. Count: 87, Neg. LLF: 121.8523574485811
Iteration: 9, Func. Count: 97, Neg. LLF: 121.84021408196887
Iteration: 10, Func. Count: 108, Neg. LLF: 121.71875696172893
Iteration: 11, Func. Count: 118, Neg. LLF: 121.69225469121098
Iteration: 12, Func. Count: 128, Neg. LLF: 121.69070338334242
Iteration: 13, Func. Count: 138, Neg. LLF: 121.68858261191507
Iteration: 14, Func. Count: 148, Neg. LLF: 121.6879622997821
Iteration: 15, Func. Count: 158, Neg. LLF: 121.68793629698267
Iteration: 16, Func. Count: 168, Neg. LLF: 121.6879347883733
Iteration: 17, Func. Count: 177, Neg. LLF: 121.6879347565348
Optimization terminated successfully (Exit mode 0)
Current function value: 121.6879347883733
Iterations: 17
Function evaluations: 177
Gradient evaluations: 17
Iteration: 1, Func. Count: 12, Neg. LLF: 262.5404051768072
Iteration: 2, Func. Count: 24, Neg. LLF: 6965982.963685424
Iteration: 3, Func. Count: 36, Neg. LLF: 190.2038288289961
Iteration: 4, Func. Count: 48, Neg. LLF: 146.54783390154387
Iteration: 5, Func. Count: 60, Neg. LLF: 7648.233240355726
Iteration: 6, Func. Count: 72, Neg. LLF: 125.42471831583266
Iteration: 7, Func. Count: 84, Neg. LLF: 122.23046667096378
Iteration: 8, Func. Count: 95, Neg. LLF: 122.53404293101366
Iteration: 9, Func. Count: 107, Neg. LLF: 123.54425607550623
Iteration: 10, Func. Count: 119, Neg. LLF: 121.77809035043596
Iteration: 11, Func. Count: 130, Neg. LLF: 121.70118731460877
Iteration: 12, Func. Count: 141, Neg. LLF: 121.69110855530069
Iteration: 13, Func. Count: 152, Neg. LLF: 121.68867748365946
Iteration: 14, Func. Count: 163, Neg. LLF: 121.68797534873232
Iteration: 15, Func. Count: 174, Neg. LLF: 121.68794094000611
Iteration: 16, Func. Count: 185, Neg. LLF: 121.68793476233495
Iteration: 17, Func. Count: 195, Neg. LLF: 121.68793479749094
Optimization terminated successfully (Exit mode 0)
Current function value: 121.68793476233495
Iterations: 17
Function evaluations: 195
Gradient evaluations: 17
Iteration: 1, Func. Count: 13, Neg. LLF: 281.6169850242088
Iteration: 2, Func. Count: 26, Neg. LLF: 449.1990243256548
Iteration: 3, Func. Count: 39, Neg. LLF: 234.69489443729313
Iteration: 4, Func. Count: 52, Neg. LLF: 203.07393404758764
Iteration: 5, Func. Count: 65, Neg. LLF: 126.6551330750892
Iteration: 6, Func. Count: 78, Neg. LLF: 126.53178939189304
Iteration: 7, Func. Count: 91, Neg. LLF: 125.4719442733504
Iteration: 8, Func. Count: 104, Neg. LLF: 121.91508089394576
Iteration: 9, Func. Count: 116, Neg. LLF: 122.61140569188944
Iteration: 10, Func. Count: 129, Neg. LLF: 122.81770709231377
Iteration: 11, Func. Count: 142, Neg. LLF: 121.62883867485178
Iteration: 12, Func. Count: 154, Neg. LLF: 121.5937348697674
Iteration: 13, Func. Count: 166, Neg. LLF: 121.5920434334623
Iteration: 14, Func. Count: 178, Neg. LLF: 121.59163206082688
Iteration: 15, Func. Count: 190, Neg. LLF: 121.59148604932489
Iteration: 16, Func. Count: 202, Neg. LLF: 121.59134486944683
Iteration: 17, Func. Count: 214, Neg. LLF: 121.59121533448813
Iteration: 18, Func. Count: 226, Neg. LLF: 121.59116288102648
Iteration: 19, Func. Count: 238, Neg. LLF: 121.59114663698514
Iteration: 20, Func. Count: 249, Neg. LLF: 121.59114657074254
Optimization terminated successfully (Exit mode 0)
Current function value: 121.59114663698514
Iterations: 20
Function evaluations: 249
Gradient evaluations: 20
Iteration: 1, Func. Count: 14, Neg. LLF: 246.700459553009
Iteration: 2, Func. Count: 28, Neg. LLF: 339.0076925779685
Iteration: 3, Func. Count: 42, Neg. LLF: 277.2415245993169
Iteration: 4, Func. Count: 56, Neg. LLF: 332.9020863804365
Iteration: 5, Func. Count: 70, Neg. LLF: 127.5229242677659
Iteration: 6, Func. Count: 84, Neg. LLF: 127.95255564315988
Iteration: 7, Func. Count: 98, Neg. LLF: 124.95844113388488
Iteration: 8, Func. Count: 112, Neg. LLF: 121.7963903477166
Iteration: 9, Func. Count: 125, Neg. LLF: 122.00361465379147
Iteration: 10, Func. Count: 139, Neg. LLF: 122.43970771309162
Iteration: 11, Func. Count: 153, Neg. LLF: 121.60635311610133
Iteration: 12, Func. Count: 166, Neg. LLF: 121.59502096240601
Iteration: 13, Func. Count: 179, Neg. LLF: 121.59206443473394
Iteration: 14, Func. Count: 192, Neg. LLF: 121.59121034351266
Iteration: 15, Func. Count: 205, Neg. LLF: 121.59116099809725
Iteration: 16, Func. Count: 218, Neg. LLF: 121.5911544273751
Iteration: 17, Func. Count: 231, Neg. LLF: 121.59114779441131
Iteration: 18, Func. Count: 244, Neg. LLF: 121.59114622235441
Iteration: 19, Func. Count: 256, Neg. LLF: 121.59114628473048
Optimization terminated successfully (Exit mode 0)
Current function value: 121.59114622235441
Iterations: 19
Function evaluations: 256
Gradient evaluations: 19
Iteration: 1, Func. Count: 7, Neg. LLF: 140.39434769112754
Iteration: 2, Func. Count: 14, Neg. LLF: 142.7199550946758
Iteration: 3, Func. Count: 21, Neg. LLF: 133.4298552827687
Iteration: 4, Func. Count: 29, Neg. LLF: 134.35699173336297
Iteration: 5, Func. Count: 36, Neg. LLF: 3519.940463263098
Iteration: 6, Func. Count: 43, Neg. LLF: 2302.826887595051
Iteration: 7, Func. Count: 50, Neg. LLF: 416.63032488881373
Iteration: 8, Func. Count: 57, Neg. LLF: 391488.77327111666
Iteration: 9, Func. Count: 64, Neg. LLF: 307.90776822988073
Iteration: 10, Func. Count: 71, Neg. LLF: 334.2588137533616
Iteration: 11, Func. Count: 78, Neg. LLF: 196.5500767152136
Iteration: 12, Func. Count: 85, Neg. LLF: 172.98167911696817
Iteration: 13, Func. Count: 92, Neg. LLF: 171.00276097038824
Iteration: 14, Func. Count: 99, Neg. LLF: 128.31359411502373
Iteration: 15, Func. Count: 106, Neg. LLF: 125.72340801046288
Iteration: 16, Func. Count: 113, Neg. LLF: 123.9386951495356
Iteration: 17, Func. Count: 120, Neg. LLF: 123.32414462542607
Iteration: 18, Func. Count: 126, Neg. LLF: 123.06323483194909
Iteration: 19, Func. Count: 132, Neg. LLF: 122.9183373254352
Iteration: 20, Func. Count: 138, Neg. LLF: 122.90814766873729
Iteration: 21, Func. Count: 144, Neg. LLF: 122.90730169564749
Iteration: 22, Func. Count: 150, Neg. LLF: 122.90726303902404
Iteration: 23, Func. Count: 155, Neg. LLF: 122.90726297728928
Optimization terminated successfully (Exit mode 0)
Current function value: 122.90726303902404
Iterations: 23
Function evaluations: 155
Gradient evaluations: 23
Iteration: 1, Func. Count: 8, Neg. LLF: 226.33921453681705
Iteration: 2, Func. Count: 16, Neg. LLF: 262.0862150757982
Iteration: 3, Func. Count: 24, Neg. LLF: 188.26103562898317
Iteration: 4, Func. Count: 32, Neg. LLF: 129.739226438723
Iteration: 5, Func. Count: 40, Neg. LLF: 124.37620723130284
Iteration: 6, Func. Count: 48, Neg. LLF: 123.08171775889014
Iteration: 7, Func. Count: 55, Neg. LLF: 124.48491966216521
Iteration: 8, Func. Count: 63, Neg. LLF: 123.01976256917192
Iteration: 9, Func. Count: 71, Neg. LLF: 122.91123860806964
Iteration: 10, Func. Count: 78, Neg. LLF: 122.90815596133655
Iteration: 11, Func. Count: 85, Neg. LLF: 122.9073976111322
Iteration: 12, Func. Count: 92, Neg. LLF: 122.90729278860591
Iteration: 13, Func. Count: 99, Neg. LLF: 122.90726759085959
Iteration: 14, Func. Count: 106, Neg. LLF: 122.90726271023938
Iteration: 15, Func. Count: 112, Neg. LLF: 122.90726266176199
Optimization terminated successfully (Exit mode 0)
Current function value: 122.90726271023938
Iterations: 15
Function evaluations: 112
Gradient evaluations: 15
Iteration: 1, Func. Count: 9, Neg. LLF: 200.1699162759553
Iteration: 2, Func. Count: 18, Neg. LLF: 131.5731754623705
Iteration: 3, Func. Count: 27, Neg. LLF: 169.40268754596104
Iteration: 4, Func. Count: 36, Neg. LLF: 126.82171881413453
Iteration: 5, Func. Count: 45, Neg. LLF: 127.21634698266597
Iteration: 6, Func. Count: 54, Neg. LLF: 122.99024352141717
Iteration: 7, Func. Count: 62, Neg. LLF: 123.26701782061258
Iteration: 8, Func. Count: 71, Neg. LLF: 123.02493193489158
Iteration: 9, Func. Count: 80, Neg. LLF: 122.962436453785
Iteration: 10, Func. Count: 88, Neg. LLF: 122.96229604481883
Iteration: 11, Func. Count: 96, Neg. LLF: 122.96229433401962
Iteration: 12, Func. Count: 103, Neg. LLF: 122.9622942608353
Optimization terminated successfully (Exit mode 0)
Current function value: 122.96229433401962
Iterations: 12
Function evaluations: 103
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 188.87172072582572
Iteration: 2, Func. Count: 20, Neg. LLF: 152.44163993603357
Iteration: 3, Func. Count: 30, Neg. LLF: 130.47984460782988
Iteration: 4, Func. Count: 40, Neg. LLF: 1416.6057958549861
Iteration: 5, Func. Count: 50, Neg. LLF: 125.88312419499675
Iteration: 6, Func. Count: 60, Neg. LLF: 123.11413035323953
Iteration: 7, Func. Count: 70, Neg. LLF: 122.09818669911598
Iteration: 8, Func. Count: 79, Neg. LLF: 122.03701792525344
Iteration: 9, Func. Count: 88, Neg. LLF: 122.0163962302159
Iteration: 10, Func. Count: 97, Neg. LLF: 122.01359132771435
Iteration: 11, Func. Count: 106, Neg. LLF: 122.00911997763974
Iteration: 12, Func. Count: 115, Neg. LLF: 122.00782617001181
Iteration: 13, Func. Count: 124, Neg. LLF: 122.00770391455966
Iteration: 14, Func. Count: 133, Neg. LLF: 122.00770246768612
Iteration: 15, Func. Count: 141, Neg. LLF: 122.00770239211539
Optimization terminated successfully (Exit mode 0)
Current function value: 122.00770246768612
Iterations: 15
Function evaluations: 141
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 183.78999815984548
Iteration: 2, Func. Count: 22, Neg. LLF: 135.31486500493085
Iteration: 3, Func. Count: 33, Neg. LLF: 132.84871436512947
Iteration: 4, Func. Count: 44, Neg. LLF: 5922.223643721737
Iteration: 5, Func. Count: 55, Neg. LLF: 125.43190814996818
Iteration: 6, Func. Count: 66, Neg. LLF: 122.82209401076446
Iteration: 7, Func. Count: 76, Neg. LLF: 122.15743015039007
Iteration: 8, Func. Count: 86, Neg. LLF: 122.05302229521098
Iteration: 9, Func. Count: 96, Neg. LLF: 122.0147146636749
Iteration: 10, Func. Count: 106, Neg. LLF: 122.00883239121747
Iteration: 11, Func. Count: 116, Neg. LLF: 122.00771425657733
Iteration: 12, Func. Count: 126, Neg. LLF: 122.00770403342752
Iteration: 13, Func. Count: 136, Neg. LLF: 122.00770246326417
Iteration: 14, Func. Count: 145, Neg. LLF: 122.00770250576956
Optimization terminated successfully (Exit mode 0)
Current function value: 122.00770246326417
Iterations: 14
Function evaluations: 145
Gradient evaluations: 14
Iteration: 1, Func. Count: 8, Neg. LLF: 135.2559038977869
Iteration: 2, Func. Count: 16, Neg. LLF: 140.0957281424027
Iteration: 3, Func. Count: 24, Neg. LLF: 133.13185633464636
Iteration: 4, Func. Count: 32, Neg. LLF: 146.98837162614538
Iteration: 5, Func. Count: 40, Neg. LLF: 188.05481044812615
Iteration: 6, Func. Count: 48, Neg. LLF: 209.5271917569694
Iteration: 7, Func. Count: 56, Neg. LLF: 522.8516081697948
Iteration: 8, Func. Count: 64, Neg. LLF: 508.97784761300835
Iteration: 9, Func. Count: 72, Neg. LLF: 600617.4378880747
Iteration: 10, Func. Count: 80, Neg. LLF: 186.54224217541588
Iteration: 11, Func. Count: 88, Neg. LLF: 9665.735224623162
Iteration: 12, Func. Count: 96, Neg. LLF: 171.71858110728303
Iteration: 13, Func. Count: 104, Neg. LLF: 186.26507328904026
Iteration: 14, Func. Count: 112, Neg. LLF: 161.83324975110372
Iteration: 15, Func. Count: 120, Neg. LLF: 129.26218953888235
Iteration: 16, Func. Count: 128, Neg. LLF: 123.06375758687048
Iteration: 17, Func. Count: 135, Neg. LLF: 122.65803360462786
Iteration: 18, Func. Count: 142, Neg. LLF: 122.49010710814363
Iteration: 19, Func. Count: 149, Neg. LLF: 122.34162848528791
Iteration: 20, Func. Count: 156, Neg. LLF: 122.30667249373616
Iteration: 21, Func. Count: 163, Neg. LLF: 122.28813627038392
Iteration: 22, Func. Count: 170, Neg. LLF: 122.28563144195883
Iteration: 23, Func. Count: 177, Neg. LLF: 122.28560029866445
Iteration: 24, Func. Count: 184, Neg. LLF: 122.28559956242889
Optimization terminated successfully (Exit mode 0)
Current function value: 122.28559956242889
Iterations: 24
Function evaluations: 184
Gradient evaluations: 24
Iteration: 1, Func. Count: 9, Neg. LLF: 194.92751593199662
Iteration: 2, Func. Count: 18, Neg. LLF: 180.46309468920805
Iteration: 3, Func. Count: 27, Neg. LLF: 1342.9553815094873
Iteration: 4, Func. Count: 36, Neg. LLF: 1925.20385972801
Iteration: 5, Func. Count: 45, Neg. LLF: 123.92298425565697
Iteration: 6, Func. Count: 54, Neg. LLF: 128.99128651878942
Iteration: 7, Func. Count: 63, Neg. LLF: 125.49472486220476
Iteration: 8, Func. Count: 72, Neg. LLF: 122.79774946989414
Iteration: 9, Func. Count: 81, Neg. LLF: 122.32238000725846
Iteration: 10, Func. Count: 89, Neg. LLF: 122.4527070210024
Iteration: 11, Func. Count: 98, Neg. LLF: 122.28788937834182
Iteration: 12, Func. Count: 106, Neg. LLF: 122.28602972233091
Iteration: 13, Func. Count: 114, Neg. LLF: 122.28561539316088
Iteration: 14, Func. Count: 122, Neg. LLF: 122.28559987089668
Iteration: 15, Func. Count: 129, Neg. LLF: 122.28559982613233
Optimization terminated successfully (Exit mode 0)
Current function value: 122.28559987089668
Iterations: 15
Function evaluations: 129
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 177.1620145945052
Iteration: 2, Func. Count: 20, Neg. LLF: 177.07331735864545
Iteration: 3, Func. Count: 30, Neg. LLF: 39243.28290236394
Iteration: 4, Func. Count: 40, Neg. LLF: 144.37478812106835
Iteration: 5, Func. Count: 50, Neg. LLF: 194.55212145001096
Iteration: 6, Func. Count: 60, Neg. LLF: 125.10614006631273
Iteration: 7, Func. Count: 70, Neg. LLF: 160.55371768671813
Iteration: 8, Func. Count: 80, Neg. LLF: 122.69408248837217
Iteration: 9, Func. Count: 89, Neg. LLF: 122.36362683320637
Iteration: 10, Func. Count: 98, Neg. LLF: 122.30116910252069
Iteration: 11, Func. Count: 107, Neg. LLF: 122.287772017545
Iteration: 12, Func. Count: 116, Neg. LLF: 122.28575439632438
Iteration: 13, Func. Count: 125, Neg. LLF: 122.2856156207439
Iteration: 14, Func. Count: 134, Neg. LLF: 122.28559970604866
Iteration: 15, Func. Count: 142, Neg. LLF: 122.28559970959643
Optimization terminated successfully (Exit mode 0)
Current function value: 122.28559970604866
Iterations: 15
Function evaluations: 142
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 172.25501267829804
Iteration: 2, Func. Count: 22, Neg. LLF: 198.06576279205734
Iteration: 3, Func. Count: 33, Neg. LLF: 412.0603498695642
Iteration: 4, Func. Count: 44, Neg. LLF: 204.27888878821284
Iteration: 5, Func. Count: 55, Neg. LLF: 134.01766382618263
Iteration: 6, Func. Count: 66, Neg. LLF: 125.50375101085777
Iteration: 7, Func. Count: 77, Neg. LLF: 127.61081129627692
Iteration: 8, Func. Count: 88, Neg. LLF: 121.7067781099041
Iteration: 9, Func. Count: 98, Neg. LLF: 121.62431680885476
Iteration: 10, Func. Count: 108, Neg. LLF: 121.61310252869596
Iteration: 11, Func. Count: 118, Neg. LLF: 121.60984960207277
Iteration: 12, Func. Count: 128, Neg. LLF: 121.60653856253812
Iteration: 13, Func. Count: 138, Neg. LLF: 121.60629629301457
Iteration: 14, Func. Count: 148, Neg. LLF: 121.60600229193489
Iteration: 15, Func. Count: 158, Neg. LLF: 121.60600183730304
Optimization terminated successfully (Exit mode 0)
Current function value: 121.60600183730304
Iterations: 15
Function evaluations: 158
Gradient evaluations: 15
Iteration: 1, Func. Count: 12, Neg. LLF: 141.82801823712995
Iteration: 2, Func. Count: 24, Neg. LLF: 129.76837940450685
Iteration: 3, Func. Count: 36, Neg. LLF: 838.8846214035542
Iteration: 4, Func. Count: 48, Neg. LLF: 294.50545168236096
Iteration: 5, Func. Count: 60, Neg. LLF: 156.77372725352913
Iteration: 6, Func. Count: 72, Neg. LLF: 146.39109954255605
Iteration: 7, Func. Count: 84, Neg. LLF: 159.44936269745708
Iteration: 8, Func. Count: 96, Neg. LLF: 134.21604512700455
Iteration: 9, Func. Count: 108, Neg. LLF: 136.52877902625033
Iteration: 10, Func. Count: 120, Neg. LLF: 123.14059842127848
Iteration: 11, Func. Count: 132, Neg. LLF: 121.64440362780965
Iteration: 12, Func. Count: 143, Neg. LLF: 121.61856890451335
Iteration: 13, Func. Count: 154, Neg. LLF: 121.61060668694385
Iteration: 14, Func. Count: 165, Neg. LLF: 121.60728252242298
Iteration: 15, Func. Count: 176, Neg. LLF: 121.60627092409253
Iteration: 16, Func. Count: 187, Neg. LLF: 121.60606250402996
Iteration: 17, Func. Count: 198, Neg. LLF: 121.6060067884594
Iteration: 18, Func. Count: 209, Neg. LLF: 121.6060019054243
Iteration: 19, Func. Count: 219, Neg. LLF: 121.60600193849146
Optimization terminated successfully (Exit mode 0)
Current function value: 121.6060019054243
Iterations: 19
Function evaluations: 219
Gradient evaluations: 19
Iteration: 1, Func. Count: 9, Neg. LLF: 152.89124818743485
Iteration: 2, Func. Count: 18, Neg. LLF: 130.51514672215652
Iteration: 3, Func. Count: 27, Neg. LLF: 133.90928378090422
Iteration: 4, Func. Count: 36, Neg. LLF: 153.17827220653948
Iteration: 5, Func. Count: 45, Neg. LLF: 197.53539942236483
Iteration: 6, Func. Count: 54, Neg. LLF: 640.2953696064994
Iteration: 7, Func. Count: 63, Neg. LLF: 339.65677014123725
Iteration: 8, Func. Count: 72, Neg. LLF: 181.17756063205633
Iteration: 9, Func. Count: 81, Neg. LLF: 303.90409534974765
Iteration: 10, Func. Count: 90, Neg. LLF: 176.5893438220308
Iteration: 11, Func. Count: 99, Neg. LLF: 301.57928997958714
Iteration: 12, Func. Count: 108, Neg. LLF: 170.91696579178165
Iteration: 13, Func. Count: 117, Neg. LLF: 167.23240066313295
Iteration: 14, Func. Count: 126, Neg. LLF: 156.83202532269564
Iteration: 15, Func. Count: 135, Neg. LLF: 123.95498993202699
Iteration: 16, Func. Count: 144, Neg. LLF: 122.29304875853742
Iteration: 17, Func. Count: 152, Neg. LLF: 122.19136338377386
Iteration: 18, Func. Count: 160, Neg. LLF: 122.16631250814535
Iteration: 19, Func. Count: 168, Neg. LLF: 122.13643120259675
Iteration: 20, Func. Count: 176, Neg. LLF: 122.13388678548183
Iteration: 21, Func. Count: 184, Neg. LLF: 122.13291553915906
Iteration: 22, Func. Count: 192, Neg. LLF: 122.13276497453951
Iteration: 23, Func. Count: 200, Neg. LLF: 122.13275578132466
Iteration: 24, Func. Count: 208, Neg. LLF: 122.13275480506368
Optimization terminated successfully (Exit mode 0)
Current function value: 122.13275480506368
Iterations: 24
Function evaluations: 208
Gradient evaluations: 24
Iteration: 1, Func. Count: 10, Neg. LLF: 337.9955108159358
Iteration: 2, Func. Count: 20, Neg. LLF: 511.02327168606945
Iteration: 3, Func. Count: 30, Neg. LLF: 210.83230901481463
Iteration: 4, Func. Count: 40, Neg. LLF: 7169191.138850613
Iteration: 5, Func. Count: 50, Neg. LLF: 124.4477151724286
Iteration: 6, Func. Count: 60, Neg. LLF: 131.17520325090823
Iteration: 7, Func. Count: 70, Neg. LLF: 122.09683298583509
Iteration: 8, Func. Count: 79, Neg. LLF: 122.19596944998354
Iteration: 9, Func. Count: 89, Neg. LLF: 121.99253405351315
Iteration: 10, Func. Count: 99, Neg. LLF: 121.98415047474815
Iteration: 11, Func. Count: 108, Neg. LLF: 121.98408991906042
Iteration: 12, Func. Count: 117, Neg. LLF: 121.98408515306494
Iteration: 13, Func. Count: 125, Neg. LLF: 121.98408507396378
Optimization terminated successfully (Exit mode 0)
Current function value: 121.98408515306494
Iterations: 13
Function evaluations: 125
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 285.68247991683194
Iteration: 2, Func. Count: 22, Neg. LLF: 225.75499886702565
Iteration: 3, Func. Count: 33, Neg. LLF: 877.7375577672885
Iteration: 4, Func. Count: 44, Neg. LLF: 867.2186539783087
Iteration: 5, Func. Count: 55, Neg. LLF: 139.12390178508258
Iteration: 6, Func. Count: 66, Neg. LLF: 125.13504042970995
Iteration: 7, Func. Count: 77, Neg. LLF: 122.30644833760967
Iteration: 8, Func. Count: 87, Neg. LLF: 122.03151235623504
Iteration: 9, Func. Count: 97, Neg. LLF: 121.99642761807053
Iteration: 10, Func. Count: 107, Neg. LLF: 121.98671347198477
Iteration: 11, Func. Count: 117, Neg. LLF: 121.98416331573809
Iteration: 12, Func. Count: 127, Neg. LLF: 121.9840922988671
Iteration: 13, Func. Count: 137, Neg. LLF: 121.98408524925534
Iteration: 14, Func. Count: 146, Neg. LLF: 121.98408524343317
Optimization terminated successfully (Exit mode 0)
Current function value: 121.98408524925534
Iterations: 14
Function evaluations: 146
Gradient evaluations: 14
Iteration: 1, Func. Count: 12, Neg. LLF: 152.69187141022599
Iteration: 2, Func. Count: 24, Neg. LLF: 129.84879348850427
Iteration: 3, Func. Count: 36, Neg. LLF: 297.8477205294825
Iteration: 4, Func. Count: 48, Neg. LLF: 201.74198729322174
Iteration: 5, Func. Count: 60, Neg. LLF: 206.21132897142206
Iteration: 6, Func. Count: 72, Neg. LLF: 141.20452315266903
Iteration: 7, Func. Count: 84, Neg. LLF: 193.95986206585368
Iteration: 8, Func. Count: 96, Neg. LLF: 134.55744521559745
Iteration: 9, Func. Count: 108, Neg. LLF: 134.0958078929261
Iteration: 10, Func. Count: 120, Neg. LLF: 122.79738916153889
Iteration: 11, Func. Count: 132, Neg. LLF: 121.4768860888791
Iteration: 12, Func. Count: 143, Neg. LLF: 121.44310791544399
Iteration: 13, Func. Count: 154, Neg. LLF: 121.41922479196484
Iteration: 14, Func. Count: 165, Neg. LLF: 121.41779399179138
Iteration: 15, Func. Count: 176, Neg. LLF: 121.41648371291977
Iteration: 16, Func. Count: 187, Neg. LLF: 121.41555662804846
Iteration: 17, Func. Count: 198, Neg. LLF: 121.41532643414764
Iteration: 18, Func. Count: 209, Neg. LLF: 121.41531436718927
Iteration: 19, Func. Count: 219, Neg. LLF: 121.41531428661605
Optimization terminated successfully (Exit mode 0)
Current function value: 121.41531436718927
Iterations: 19
Function evaluations: 219
Gradient evaluations: 19
Iteration: 1, Func. Count: 13, Neg. LLF: 151.89106900341676
Iteration: 2, Func. Count: 26, Neg. LLF: 129.04137393886626
Iteration: 3, Func. Count: 39, Neg. LLF: 162.5523352607791
Iteration: 4, Func. Count: 52, Neg. LLF: 174.1472978785375
Iteration: 5, Func. Count: 65, Neg. LLF: 150.5802099323903
Iteration: 6, Func. Count: 78, Neg. LLF: 246.7004410184236
Iteration: 7, Func. Count: 91, Neg. LLF: 135.4422646785573
Iteration: 8, Func. Count: 104, Neg. LLF: 143.00389585219477
Iteration: 9, Func. Count: 117, Neg. LLF: 131.01302611161233
Iteration: 10, Func. Count: 130, Neg. LLF: 122.57317833303809
Iteration: 11, Func. Count: 143, Neg. LLF: 121.49820414113088
Iteration: 12, Func. Count: 155, Neg. LLF: 121.45868808972237
Iteration: 13, Func. Count: 167, Neg. LLF: 121.43561409443308
Iteration: 14, Func. Count: 179, Neg. LLF: 121.42841805447905
Iteration: 15, Func. Count: 191, Neg. LLF: 121.42032852924552
Iteration: 16, Func. Count: 203, Neg. LLF: 121.41612120001872
Iteration: 17, Func. Count: 215, Neg. LLF: 121.41546539094334
Iteration: 18, Func. Count: 227, Neg. LLF: 121.41531461235942
Iteration: 19, Func. Count: 239, Neg. LLF: 121.41531428462659
Optimization terminated successfully (Exit mode 0)
Current function value: 121.41531428462659
Iterations: 19
Function evaluations: 239
Gradient evaluations: 19
Iteration: 1, Func. Count: 10, Neg. LLF: 156.2710062807826
Iteration: 2, Func. Count: 20, Neg. LLF: 130.05732022571868
Iteration: 3, Func. Count: 30, Neg. LLF: 146.74269025584246
Iteration: 4, Func. Count: 40, Neg. LLF: 157.6102206595204
Iteration: 5, Func. Count: 50, Neg. LLF: 176.73060162599532
Iteration: 6, Func. Count: 60, Neg. LLF: 292.43846550220223
Iteration: 7, Func. Count: 70, Neg. LLF: 178.19767672549992
Iteration: 8, Func. Count: 80, Neg. LLF: 205.10393184878984
Iteration: 9, Func. Count: 90, Neg. LLF: 172.0909085771257
Iteration: 10, Func. Count: 100, Neg. LLF: 161.69366115248917
Iteration: 11, Func. Count: 110, Neg. LLF: 157.41874885332894
Iteration: 12, Func. Count: 120, Neg. LLF: 180.77773340675859
Iteration: 13, Func. Count: 130, Neg. LLF: 1128.0788791780492
Iteration: 14, Func. Count: 140, Neg. LLF: 156.67619170539965
Iteration: 15, Func. Count: 150, Neg. LLF: 123.87808335432881
Iteration: 16, Func. Count: 160, Neg. LLF: 122.18112733581145
Iteration: 17, Func. Count: 169, Neg. LLF: 122.06886868010157
Iteration: 18, Func. Count: 178, Neg. LLF: 121.95368722232975
Iteration: 19, Func. Count: 187, Neg. LLF: 121.7778465334556
Iteration: 20, Func. Count: 196, Neg. LLF: 121.70984577545042
Iteration: 21, Func. Count: 205, Neg. LLF: 121.69121296522606
Iteration: 22, Func. Count: 214, Neg. LLF: 121.68848179608942
Iteration: 23, Func. Count: 223, Neg. LLF: 121.6880806291101
Iteration: 24, Func. Count: 232, Neg. LLF: 121.68794080291198
Iteration: 25, Func. Count: 241, Neg. LLF: 121.68793469724181
Iteration: 26, Func. Count: 249, Neg. LLF: 121.68793466546148
Optimization terminated successfully (Exit mode 0)
Current function value: 121.68793469724181
Iterations: 26
Function evaluations: 249
Gradient evaluations: 26
Iteration: 1, Func. Count: 11, Neg. LLF: 312.1974357654871
Iteration: 2, Func. Count: 22, Neg. LLF: 446.83285270151424
Iteration: 3, Func. Count: 33, Neg. LLF: 701.1455335353298
Iteration: 4, Func. Count: 44, Neg. LLF: 7296083.960991933
Iteration: 5, Func. Count: 55, Neg. LLF: 125.46235144755434
Iteration: 6, Func. Count: 66, Neg. LLF: 168.67002970506553
Iteration: 7, Func. Count: 77, Neg. LLF: 122.48847531454447
Iteration: 8, Func. Count: 87, Neg. LLF: 122.13508722958338
Iteration: 9, Func. Count: 97, Neg. LLF: 126.25299716316005
Iteration: 10, Func. Count: 109, Neg. LLF: 121.86926763930589
Iteration: 11, Func. Count: 119, Neg. LLF: 121.7383939427999
Iteration: 12, Func. Count: 129, Neg. LLF: 121.70755372069134
Iteration: 13, Func. Count: 139, Neg. LLF: 121.69039403366602
Iteration: 14, Func. Count: 149, Neg. LLF: 121.68846349914539
Iteration: 15, Func. Count: 159, Neg. LLF: 121.68800726102278
Iteration: 16, Func. Count: 169, Neg. LLF: 121.68794155621916
Iteration: 17, Func. Count: 179, Neg. LLF: 121.68793552656601
Iteration: 18, Func. Count: 189, Neg. LLF: 121.6879347397463
Optimization terminated successfully (Exit mode 0)
Current function value: 121.6879347397463
Iterations: 18
Function evaluations: 189
Gradient evaluations: 18
Iteration: 1, Func. Count: 12, Neg. LLF: 148.04787483900023
Iteration: 2, Func. Count: 24, Neg. LLF: 129.70210402102416
Iteration: 3, Func. Count: 36, Neg. LLF: 564.177175700868
Iteration: 4, Func. Count: 48, Neg. LLF: 194.7616154083788
Iteration: 5, Func. Count: 60, Neg. LLF: 156.6761933462619
Iteration: 6, Func. Count: 72, Neg. LLF: 157.9262143632096
Iteration: 7, Func. Count: 84, Neg. LLF: 153.0654602465126
Iteration: 8, Func. Count: 96, Neg. LLF: 153.88713402964808
Iteration: 9, Func. Count: 108, Neg. LLF: 122.2452184261394
Iteration: 10, Func. Count: 119, Neg. LLF: 121.7834662457784
Iteration: 11, Func. Count: 130, Neg. LLF: 121.72097755220325
Iteration: 12, Func. Count: 141, Neg. LLF: 121.74906818962826
Iteration: 13, Func. Count: 153, Neg. LLF: 121.68946829154574
Iteration: 14, Func. Count: 164, Neg. LLF: 121.68795298479901
Iteration: 15, Func. Count: 175, Neg. LLF: 121.68793717510513
Iteration: 16, Func. Count: 186, Neg. LLF: 121.68793486376147
Iteration: 17, Func. Count: 196, Neg. LLF: 121.6879348989356
Optimization terminated successfully (Exit mode 0)
Current function value: 121.68793486376147
Iterations: 17
Function evaluations: 196
Gradient evaluations: 17
Iteration: 1, Func. Count: 13, Neg. LLF: 155.37372132977862
Iteration: 2, Func. Count: 26, Neg. LLF: 131.02611515560687
Iteration: 3, Func. Count: 39, Neg. LLF: 168.86340341740535
Iteration: 4, Func. Count: 52, Neg. LLF: 980.6266900816879
Iteration: 5, Func. Count: 65, Neg. LLF: 232.56111220317732
Iteration: 6, Func. Count: 78, Neg. LLF: 160.79473738542822
Iteration: 7, Func. Count: 91, Neg. LLF: 156.98561908038795
Iteration: 8, Func. Count: 104, Neg. LLF: 181.0269067197873
Iteration: 9, Func. Count: 117, Neg. LLF: 136.65741794033136
Iteration: 10, Func. Count: 130, Neg. LLF: 122.35029514311255
Iteration: 11, Func. Count: 142, Neg. LLF: 121.89354427308547
Iteration: 12, Func. Count: 154, Neg. LLF: 126.40826056245015
Iteration: 13, Func. Count: 168, Neg. LLF: 121.48036595120422
Iteration: 14, Func. Count: 180, Neg. LLF: 121.42885167986272
Iteration: 15, Func. Count: 192, Neg. LLF: 121.41867353462473
Iteration: 16, Func. Count: 204, Neg. LLF: 121.41600404861437
Iteration: 17, Func. Count: 216, Neg. LLF: 121.41532285653642
Iteration: 18, Func. Count: 228, Neg. LLF: 121.41531439653946
Iteration: 19, Func. Count: 239, Neg. LLF: 121.41531431586235
Optimization terminated successfully (Exit mode 0)
Current function value: 121.41531439653946
Iterations: 19
Function evaluations: 239
Gradient evaluations: 19
Iteration: 1, Func. Count: 14, Neg. LLF: 149.6364181654381
Iteration: 2, Func. Count: 28, Neg. LLF: 130.37666058845036
Iteration: 3, Func. Count: 42, Neg. LLF: 196.9490363799722
Iteration: 4, Func. Count: 56, Neg. LLF: 187.26898478345444
Iteration: 5, Func. Count: 70, Neg. LLF: 236.9597490640681
Iteration: 6, Func. Count: 84, Neg. LLF: 170.7690842719635
Iteration: 7, Func. Count: 98, Neg. LLF: 199.11845308799073
Iteration: 8, Func. Count: 112, Neg. LLF: 148.9557662416145
Iteration: 9, Func. Count: 126, Neg. LLF: 155.3981928766949
Iteration: 10, Func. Count: 140, Neg. LLF: 133.40463330246246
Iteration: 11, Func. Count: 154, Neg. LLF: 122.53115389616723
Iteration: 12, Func. Count: 168, Neg. LLF: 121.63235406659899
Iteration: 13, Func. Count: 181, Neg. LLF: 121.73747154631486
Iteration: 14, Func. Count: 195, Neg. LLF: 121.59509090459952
Iteration: 15, Func. Count: 208, Neg. LLF: 121.60977119762542
Iteration: 16, Func. Count: 222, Neg. LLF: 121.5913584405076
Iteration: 17, Func. Count: 235, Neg. LLF: 121.59115629067836
Iteration: 18, Func. Count: 248, Neg. LLF: 121.5911497909979
Iteration: 19, Func. Count: 261, Neg. LLF: 121.59114808320554
Iteration: 20, Func. Count: 274, Neg. LLF: 121.59114612558267
Iteration: 21, Func. Count: 286, Neg. LLF: 121.59114618797018
Optimization terminated successfully (Exit mode 0)
Current function value: 121.59114612558267
Iterations: 21
Function evaluations: 286
Gradient evaluations: 21
Iteration: 1, Func. Count: 11, Neg. LLF: 154.3647841360425
Iteration: 2, Func. Count: 22, Neg. LLF: 129.07686353184323
Iteration: 3, Func. Count: 33, Neg. LLF: 150.6883321077532
Iteration: 4, Func. Count: 44, Neg. LLF: 125.71818222305681
Iteration: 5, Func. Count: 54, Neg. LLF: 190.23019211476256
Iteration: 6, Func. Count: 65, Neg. LLF: 1507381.1433547398
Iteration: 7, Func. Count: 76, Neg. LLF: 151.07899910321493
Iteration: 8, Func. Count: 87, Neg. LLF: 130.74606179410318
Iteration: 9, Func. Count: 98, Neg. LLF: 143.76729279867024
Iteration: 10, Func. Count: 109, Neg. LLF: 203.10740012989447
Iteration: 11, Func. Count: 120, Neg. LLF: 168.34779305169917
Iteration: 12, Func. Count: 131, Neg. LLF: 122.92553419565724
Iteration: 13, Func. Count: 142, Neg. LLF: 121.87771235859726
Iteration: 14, Func. Count: 152, Neg. LLF: 121.78711064879795
Iteration: 15, Func. Count: 162, Neg. LLF: 121.76622154101672
Iteration: 16, Func. Count: 172, Neg. LLF: 121.72138064138292
Iteration: 17, Func. Count: 182, Neg. LLF: 121.698950904282
Iteration: 18, Func. Count: 192, Neg. LLF: 121.69008187511629
Iteration: 19, Func. Count: 202, Neg. LLF: 121.68798058687625
Iteration: 20, Func. Count: 212, Neg. LLF: 121.68793506146682
Iteration: 21, Func. Count: 221, Neg. LLF: 121.68793520542306
Optimization terminated successfully (Exit mode 0)
Current function value: 121.68793506146682
Iterations: 21
Function evaluations: 221
Gradient evaluations: 21
Iteration: 1, Func. Count: 12, Neg. LLF: 247.71108962763014
Iteration: 2, Func. Count: 24, Neg. LLF: 27920.931271815443
Iteration: 3, Func. Count: 36, Neg. LLF: 938.3514053084849
Iteration: 4, Func. Count: 48, Neg. LLF: 5795719.256732596
Iteration: 5, Func. Count: 60, Neg. LLF: 126.28720068639687
Iteration: 6, Func. Count: 72, Neg. LLF: 217.54162226407172
Iteration: 7, Func. Count: 84, Neg. LLF: 122.241577949863
Iteration: 8, Func. Count: 95, Neg. LLF: 122.13725140052921
Iteration: 9, Func. Count: 107, Neg. LLF: 122.56845420014731
Iteration: 10, Func. Count: 119, Neg. LLF: 121.74660934510788
Iteration: 11, Func. Count: 130, Neg. LLF: 121.69851435961947
Iteration: 12, Func. Count: 141, Neg. LLF: 121.68994968109148
Iteration: 13, Func. Count: 152, Neg. LLF: 121.688059994389
Iteration: 14, Func. Count: 163, Neg. LLF: 121.68794966168963
Iteration: 15, Func. Count: 174, Neg. LLF: 121.6879348045179
Iteration: 16, Func. Count: 184, Neg. LLF: 121.6879347726724
Optimization terminated successfully (Exit mode 0)
Current function value: 121.6879348045179
Iterations: 16
Function evaluations: 184
Gradient evaluations: 16
Iteration: 1, Func. Count: 13, Neg. LLF: 146.37214275555985
Iteration: 2, Func. Count: 26, Neg. LLF: 129.2781041699199
Iteration: 3, Func. Count: 39, Neg. LLF: 251.1957891816085
Iteration: 4, Func. Count: 52, Neg. LLF: 189.02678921574545
Iteration: 5, Func. Count: 65, Neg. LLF: 141.71475935924215
Iteration: 6, Func. Count: 78, Neg. LLF: 182.9313933738571
Iteration: 7, Func. Count: 91, Neg. LLF: 184.76004473103322
Iteration: 8, Func. Count: 104, Neg. LLF: 165.4508245834319
Iteration: 9, Func. Count: 117, Neg. LLF: 122.35134649718607
Iteration: 10, Func. Count: 129, Neg. LLF: 121.76897969128473
Iteration: 11, Func. Count: 141, Neg. LLF: 121.71641375408652
Iteration: 12, Func. Count: 153, Neg. LLF: 121.73176647852985
Iteration: 13, Func. Count: 166, Neg. LLF: 121.69276449130153
Iteration: 14, Func. Count: 178, Neg. LLF: 121.68798688508683
Iteration: 15, Func. Count: 190, Neg. LLF: 121.68793940258959
Iteration: 16, Func. Count: 202, Neg. LLF: 121.687936282612
Iteration: 17, Func. Count: 214, Neg. LLF: 121.6879346723139
Iteration: 18, Func. Count: 225, Neg. LLF: 121.68793470749888
Optimization terminated successfully (Exit mode 0)
Current function value: 121.6879346723139
Iterations: 18
Function evaluations: 225
Gradient evaluations: 18
Iteration: 1, Func. Count: 14, Neg. LLF: 148.94432665525508
Iteration: 2, Func. Count: 28, Neg. LLF: 130.44764332935887
Iteration: 3, Func. Count: 42, Neg. LLF: 211.33380630314605
Iteration: 4, Func. Count: 56, Neg. LLF: 201.1058511572858
Iteration: 5, Func. Count: 70, Neg. LLF: 236.7011298780749
Iteration: 6, Func. Count: 84, Neg. LLF: 187.3945328012183
Iteration: 7, Func. Count: 98, Neg. LLF: 161.01158783336606
Iteration: 8, Func. Count: 112, Neg. LLF: 145.09435368344487
Iteration: 9, Func. Count: 126, Neg. LLF: 224.56877696270976
Iteration: 10, Func. Count: 140, Neg. LLF: 133.3368995303491
Iteration: 11, Func. Count: 154, Neg. LLF: 122.45029593731068
Iteration: 12, Func. Count: 168, Neg. LLF: 121.64063106996512
Iteration: 13, Func. Count: 181, Neg. LLF: 121.76044769760405
Iteration: 14, Func. Count: 195, Neg. LLF: 121.46500396918378
Iteration: 15, Func. Count: 208, Neg. LLF: 121.43939520034382
Iteration: 16, Func. Count: 221, Neg. LLF: 121.42322816032292
Iteration: 17, Func. Count: 234, Neg. LLF: 121.41539370506452
Iteration: 18, Func. Count: 247, Neg. LLF: 121.41531505527206
Iteration: 19, Func. Count: 260, Neg. LLF: 121.41531415087292
Optimization terminated successfully (Exit mode 0)
Current function value: 121.41531415087292
Iterations: 19
Function evaluations: 260
Gradient evaluations: 19
Iteration: 1, Func. Count: 15, Neg. LLF: 145.80549937213354
Iteration: 2, Func. Count: 30, Neg. LLF: 130.21461771557296
Iteration: 3, Func. Count: 45, Neg. LLF: 1108.737318146605
Iteration: 4, Func. Count: 60, Neg. LLF: 190.88075054597903
Iteration: 5, Func. Count: 75, Neg. LLF: 227.2118239612724
Iteration: 6, Func. Count: 90, Neg. LLF: 172.56604346044656
Iteration: 7, Func. Count: 105, Neg. LLF: 145.9404950986812
Iteration: 8, Func. Count: 120, Neg. LLF: 171.87957116780234
Iteration: 9, Func. Count: 135, Neg. LLF: 137.44222124499345
Iteration: 10, Func. Count: 150, Neg. LLF: 122.64229916808789
Iteration: 11, Func. Count: 165, Neg. LLF: 122.92169746197322
Iteration: 12, Func. Count: 180, Neg. LLF: 121.68983726329984
Iteration: 13, Func. Count: 194, Neg. LLF: 121.59477588067958
Iteration: 14, Func. Count: 208, Neg. LLF: 121.59193509375788
Iteration: 15, Func. Count: 222, Neg. LLF: 121.59131417560067
Iteration: 16, Func. Count: 236, Neg. LLF: 121.59119787685871
Iteration: 17, Func. Count: 250, Neg. LLF: 121.5911541839614
Iteration: 18, Func. Count: 264, Neg. LLF: 121.59114620969814
Iteration: 19, Func. Count: 277, Neg. LLF: 121.59114627211322
Optimization terminated successfully (Exit mode 0)
Current function value: 121.59114620969814
Iterations: 19
Function evaluations: 277
Gradient evaluations: 19
Iteration: 1, Func. Count: 8, Neg. LLF: 137.817178257585
Iteration: 2, Func. Count: 16, Neg. LLF: 133.04596601323462
Iteration: 3, Func. Count: 26, Neg. LLF: 146.77997331972338
Iteration: 4, Func. Count: 34, Neg. LLF: 127.56716919421767
Iteration: 5, Func. Count: 41, Neg. LLF: 153.16587675569332
Iteration: 6, Func. Count: 49, Neg. LLF: 157.40881151164797
Iteration: 7, Func. Count: 57, Neg. LLF: 163.49663766721358
Iteration: 8, Func. Count: 65, Neg. LLF: 192.16809418494734
Iteration: 9, Func. Count: 73, Neg. LLF: 189.97338319987986
Iteration: 10, Func. Count: 81, Neg. LLF: 163.4178441609186
Iteration: 11, Func. Count: 89, Neg. LLF: 203.93955760277223
Iteration: 12, Func. Count: 97, Neg. LLF: 151.61236539244828
Iteration: 13, Func. Count: 105, Neg. LLF: 191.03977432782057
Iteration: 14, Func. Count: 113, Neg. LLF: 128.02305581429707
Iteration: 15, Func. Count: 121, Neg. LLF: 123.50157951512863
Iteration: 16, Func. Count: 128, Neg. LLF: 123.2146762247044
Iteration: 17, Func. Count: 135, Neg. LLF: 123.07471831677871
Iteration: 18, Func. Count: 142, Neg. LLF: 122.97798550494913
Iteration: 19, Func. Count: 149, Neg. LLF: 122.92561517171059
Iteration: 20, Func. Count: 156, Neg. LLF: 122.91190372561655
Iteration: 21, Func. Count: 163, Neg. LLF: 122.90755552885507
Iteration: 22, Func. Count: 170, Neg. LLF: 122.90726852790965
Iteration: 23, Func. Count: 177, Neg. LLF: 122.9072644533277
Iteration: 24, Func. Count: 184, Neg. LLF: 122.90726261752408
Iteration: 25, Func. Count: 190, Neg. LLF: 122.90726275896363
Optimization terminated successfully (Exit mode 0)
Current function value: 122.90726261752408
Iterations: 25
Function evaluations: 190
Gradient evaluations: 25
Iteration: 1, Func. Count: 9, Neg. LLF: 197.1315936703102
Iteration: 2, Func. Count: 18, Neg. LLF: 157.53645461214182
Iteration: 3, Func. Count: 27, Neg. LLF: 65383.58717651468
Iteration: 4, Func. Count: 36, Neg. LLF: 143.13508070408352
Iteration: 5, Func. Count: 45, Neg. LLF: 125.53670266551033
Iteration: 6, Func. Count: 54, Neg. LLF: 124.91497582133759
Iteration: 7, Func. Count: 63, Neg. LLF: 123.06080715071724
Iteration: 8, Func. Count: 71, Neg. LLF: 123.0116149062645
Iteration: 9, Func. Count: 79, Neg. LLF: 122.97168435867476
Iteration: 10, Func. Count: 87, Neg. LLF: 122.96269455024286
Iteration: 11, Func. Count: 95, Neg. LLF: 122.96229925510367
Iteration: 12, Func. Count: 103, Neg. LLF: 122.9622943692754
Iteration: 13, Func. Count: 110, Neg. LLF: 122.96229429411227
Optimization terminated successfully (Exit mode 0)
Current function value: 122.9622943692754
Iterations: 13
Function evaluations: 110
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 179.69950539760305
Iteration: 2, Func. Count: 20, Neg. LLF: 145.3506628077549
Iteration: 3, Func. Count: 30, Neg. LLF: 178.90813752656427
Iteration: 4, Func. Count: 40, Neg. LLF: 130.41823035986982
Iteration: 5, Func. Count: 50, Neg. LLF: 141.52175957888846
Iteration: 6, Func. Count: 60, Neg. LLF: 125.87670948101272
Iteration: 7, Func. Count: 70, Neg. LLF: 123.08390934358927
Iteration: 8, Func. Count: 79, Neg. LLF: 123.47570888437586
Iteration: 9, Func. Count: 89, Neg. LLF: 123.2017591174087
Iteration: 10, Func. Count: 99, Neg. LLF: 123.01148426866544
Iteration: 11, Func. Count: 109, Neg. LLF: 122.94790076086313
Iteration: 12, Func. Count: 118, Neg. LLF: 122.91597378144165
Iteration: 13, Func. Count: 127, Neg. LLF: 122.91286900793725
Iteration: 14, Func. Count: 136, Neg. LLF: 122.9096791474378
Iteration: 15, Func. Count: 145, Neg. LLF: 122.90835140168605
Iteration: 16, Func. Count: 154, Neg. LLF: 122.90737437178922
Iteration: 17, Func. Count: 163, Neg. LLF: 122.90726806718394
Iteration: 18, Func. Count: 172, Neg. LLF: 122.9072626435707
Iteration: 19, Func. Count: 180, Neg. LLF: 122.90726261930571
Optimization terminated successfully (Exit mode 0)
Current function value: 122.9072626435707
Iterations: 19
Function evaluations: 180
Gradient evaluations: 19
Iteration: 1, Func. Count: 11, Neg. LLF: 173.26988122745703
Iteration: 2, Func. Count: 22, Neg. LLF: 129.60557956298143
Iteration: 3, Func. Count: 33, Neg. LLF: 372.62651097608443
Iteration: 4, Func. Count: 44, Neg. LLF: 175.12050125919455
Iteration: 5, Func. Count: 55, Neg. LLF: 126.53743038294466
Iteration: 6, Func. Count: 66, Neg. LLF: 122.13146683559094
Iteration: 7, Func. Count: 76, Neg. LLF: 122.10625235975641
Iteration: 8, Func. Count: 86, Neg. LLF: 122.07635869346575
Iteration: 9, Func. Count: 96, Neg. LLF: 122.01907283923465
Iteration: 10, Func. Count: 106, Neg. LLF: 122.00839867114493
Iteration: 11, Func. Count: 116, Neg. LLF: 122.00771965946609
Iteration: 12, Func. Count: 126, Neg. LLF: 122.0077034858941
Iteration: 13, Func. Count: 136, Neg. LLF: 122.00770236695126
Iteration: 14, Func. Count: 145, Neg. LLF: 122.00770229137844
Optimization terminated successfully (Exit mode 0)
Current function value: 122.00770236695126
Iterations: 14
Function evaluations: 145
Gradient evaluations: 14
Iteration: 1, Func. Count: 12, Neg. LLF: 169.78499720792016
Iteration: 2, Func. Count: 24, Neg. LLF: 130.99642678944352
Iteration: 3, Func. Count: 36, Neg. LLF: 316.163432168362
Iteration: 4, Func. Count: 48, Neg. LLF: 214.13908303248715
Iteration: 5, Func. Count: 60, Neg. LLF: 127.56798619546176
Iteration: 6, Func. Count: 72, Neg. LLF: 124.10164156728165
Iteration: 7, Func. Count: 84, Neg. LLF: 122.38837612542946
Iteration: 8, Func. Count: 95, Neg. LLF: 122.16967183130808
Iteration: 9, Func. Count: 106, Neg. LLF: 122.04070392513506
Iteration: 10, Func. Count: 117, Neg. LLF: 122.00829132937088
Iteration: 11, Func. Count: 128, Neg. LLF: 122.00771681898509
Iteration: 12, Func. Count: 139, Neg. LLF: 122.00770720289995
Iteration: 13, Func. Count: 150, Neg. LLF: 122.00770246940063
Iteration: 14, Func. Count: 160, Neg. LLF: 122.00770251188669
Optimization terminated successfully (Exit mode 0)
Current function value: 122.00770246940063
Iterations: 14
Function evaluations: 160
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 133.88884681698303
Iteration: 2, Func. Count: 18, Neg. LLF: 131.10564075068496
Iteration: 3, Func. Count: 28, Neg. LLF: 143.6275470520124
Iteration: 4, Func. Count: 37, Neg. LLF: 134.24199755302777
Iteration: 5, Func. Count: 46, Neg. LLF: 147.98284869469825
Iteration: 6, Func. Count: 55, Neg. LLF: 253.6982309292791
Iteration: 7, Func. Count: 64, Neg. LLF: 275.06757234953614
Iteration: 8, Func. Count: 73, Neg. LLF: 286.00122162139985
Iteration: 9, Func. Count: 82, Neg. LLF: 260.7832915203141
Iteration: 10, Func. Count: 91, Neg. LLF: 246.61015224219778
Iteration: 11, Func. Count: 100, Neg. LLF: 395.10698858834763
Iteration: 12, Func. Count: 109, Neg. LLF: 229.1879660969393
Iteration: 13, Func. Count: 118, Neg. LLF: 168.15699091360688
Iteration: 14, Func. Count: 127, Neg. LLF: 136.25631410737176
Iteration: 15, Func. Count: 136, Neg. LLF: 123.33148518865201
Iteration: 16, Func. Count: 145, Neg. LLF: 122.44329123470001
Iteration: 17, Func. Count: 153, Neg. LLF: 122.45961894560438
Iteration: 18, Func. Count: 162, Neg. LLF: 122.31061691262414
Iteration: 19, Func. Count: 170, Neg. LLF: 122.28985501251253
Iteration: 20, Func. Count: 178, Neg. LLF: 122.28605281419296
Iteration: 21, Func. Count: 186, Neg. LLF: 122.28563118869332
Iteration: 22, Func. Count: 194, Neg. LLF: 122.28560038211559
Iteration: 23, Func. Count: 202, Neg. LLF: 122.28559956037336
Optimization terminated successfully (Exit mode 0)
Current function value: 122.28559956037336
Iterations: 23
Function evaluations: 202
Gradient evaluations: 23
Iteration: 1, Func. Count: 10, Neg. LLF: 179.0052588918733
Iteration: 2, Func. Count: 20, Neg. LLF: 150.515547881558
Iteration: 3, Func. Count: 30, Neg. LLF: 23297.376813627052
Iteration: 4, Func. Count: 40, Neg. LLF: 633.8731362393678
Iteration: 5, Func. Count: 50, Neg. LLF: 125.52643709415297
Iteration: 6, Func. Count: 60, Neg. LLF: 123.77074604131015
Iteration: 7, Func. Count: 70, Neg. LLF: 123.62524625324495
Iteration: 8, Func. Count: 80, Neg. LLF: 122.39505421440607
Iteration: 9, Func. Count: 89, Neg. LLF: 122.42452543051459
Iteration: 10, Func. Count: 99, Neg. LLF: 122.30644285282588
Iteration: 11, Func. Count: 108, Neg. LLF: 122.29001636418269
Iteration: 12, Func. Count: 117, Neg. LLF: 122.28756318142499
Iteration: 13, Func. Count: 126, Neg. LLF: 122.28562290349645
Iteration: 14, Func. Count: 135, Neg. LLF: 122.2856008799876
Iteration: 15, Func. Count: 144, Neg. LLF: 122.28559956472857
Iteration: 16, Func. Count: 152, Neg. LLF: 122.28559951999321
Optimization terminated successfully (Exit mode 0)
Current function value: 122.28559956472857
Iterations: 16
Function evaluations: 152
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 141.5040497066875
Iteration: 2, Func. Count: 22, Neg. LLF: 130.33221183440187
Iteration: 3, Func. Count: 33, Neg. LLF: 799.8811198148228
Iteration: 4, Func. Count: 44, Neg. LLF: 157.26922815398984
Iteration: 5, Func. Count: 55, Neg. LLF: 363.38713825757003
Iteration: 6, Func. Count: 66, Neg. LLF: 151.1485953146137
Iteration: 7, Func. Count: 77, Neg. LLF: 158.8882643131987
Iteration: 8, Func. Count: 88, Neg. LLF: 151.0496727780869
Iteration: 9, Func. Count: 99, Neg. LLF: 123.0267588862617
Iteration: 10, Func. Count: 109, Neg. LLF: 122.43204992558908
Iteration: 11, Func. Count: 119, Neg. LLF: 122.32749678410688
Iteration: 12, Func. Count: 129, Neg. LLF: 122.29191321794936
Iteration: 13, Func. Count: 139, Neg. LLF: 122.28658765168453
Iteration: 14, Func. Count: 149, Neg. LLF: 122.28588507325605
Iteration: 15, Func. Count: 159, Neg. LLF: 122.28560116446934
Iteration: 16, Func. Count: 169, Neg. LLF: 122.28559966750078
Iteration: 17, Func. Count: 178, Neg. LLF: 122.2855996710493
Optimization terminated successfully (Exit mode 0)
Current function value: 122.28559966750078
Iterations: 17
Function evaluations: 178
Gradient evaluations: 17
Iteration: 1, Func. Count: 12, Neg. LLF: 139.7060282644955
Iteration: 2, Func. Count: 24, Neg. LLF: 130.04954132085948
Iteration: 3, Func. Count: 36, Neg. LLF: 5083.3637360584835
Iteration: 4, Func. Count: 48, Neg. LLF: 234.3021610321431
Iteration: 5, Func. Count: 60, Neg. LLF: 155.90207859084003
Iteration: 6, Func. Count: 72, Neg. LLF: 152.66343833081694
Iteration: 7, Func. Count: 84, Neg. LLF: 138.73799103284702
Iteration: 8, Func. Count: 96, Neg. LLF: 135.27372566511585
Iteration: 9, Func. Count: 108, Neg. LLF: 132.6526264520114
Iteration: 10, Func. Count: 120, Neg. LLF: 123.87341484368079
Iteration: 11, Func. Count: 132, Neg. LLF: 121.68397364441175
Iteration: 12, Func. Count: 143, Neg. LLF: 121.66441530515759
Iteration: 13, Func. Count: 154, Neg. LLF: 121.64442104810132
Iteration: 14, Func. Count: 165, Neg. LLF: 121.62438373953023
Iteration: 15, Func. Count: 176, Neg. LLF: 121.60883171927085
Iteration: 16, Func. Count: 187, Neg. LLF: 121.60604522091795
Iteration: 17, Func. Count: 198, Neg. LLF: 121.60600339862972
Iteration: 18, Func. Count: 209, Neg. LLF: 121.60600300287203
Optimization terminated successfully (Exit mode 0)
Current function value: 121.60600300287203
Iterations: 18
Function evaluations: 209
Gradient evaluations: 18
Iteration: 1, Func. Count: 13, Neg. LLF: 139.26645171212846
Iteration: 2, Func. Count: 26, Neg. LLF: 130.62117289977715
Iteration: 3, Func. Count: 39, Neg. LLF: 7631.483176658497
Iteration: 4, Func. Count: 52, Neg. LLF: 306.25516884882217
Iteration: 5, Func. Count: 65, Neg. LLF: 160.1809697533873
Iteration: 6, Func. Count: 78, Neg. LLF: 148.27438806919739
Iteration: 7, Func. Count: 91, Neg. LLF: 149.61718792134008
Iteration: 8, Func. Count: 104, Neg. LLF: 135.94473241836832
Iteration: 9, Func. Count: 117, Neg. LLF: 135.19926122082987
Iteration: 10, Func. Count: 130, Neg. LLF: 124.95619590836402
Iteration: 11, Func. Count: 143, Neg. LLF: 121.8071198366846
Iteration: 12, Func. Count: 155, Neg. LLF: 121.65239022471448
Iteration: 13, Func. Count: 167, Neg. LLF: 121.64627619221191
Iteration: 14, Func. Count: 180, Neg. LLF: 121.61218108078354
Iteration: 15, Func. Count: 192, Neg. LLF: 121.60639172657594
Iteration: 16, Func. Count: 204, Neg. LLF: 121.60605857885164
Iteration: 17, Func. Count: 216, Neg. LLF: 121.60601007480095
Iteration: 18, Func. Count: 228, Neg. LLF: 121.60600306726253
Iteration: 19, Func. Count: 240, Neg. LLF: 121.60600182620524
Iteration: 20, Func. Count: 251, Neg. LLF: 121.60600185926106
Optimization terminated successfully (Exit mode 0)
Current function value: 121.60600182620524
Iterations: 20
Function evaluations: 251
Gradient evaluations: 20
Iteration: 1, Func. Count: 10, Neg. LLF: 145.92148168880243
Iteration: 2, Func. Count: 20, Neg. LLF: 132.42946003162282
Iteration: 3, Func. Count: 32, Neg. LLF: 138.90463845689408
Iteration: 4, Func. Count: 42, Neg. LLF: 134.50619307574996
Iteration: 5, Func. Count: 52, Neg. LLF: 283.2591237630558
Iteration: 6, Func. Count: 62, Neg. LLF: 166.59148154598935
Iteration: 7, Func. Count: 72, Neg. LLF: 273.9403216249942
Iteration: 8, Func. Count: 82, Neg. LLF: 178.68332397979324
Iteration: 9, Func. Count: 92, Neg. LLF: 172.68858286809785
Iteration: 10, Func. Count: 102, Neg. LLF: 424.07314278753165
Iteration: 11, Func. Count: 112, Neg. LLF: 165.99021544260404
Iteration: 12, Func. Count: 122, Neg. LLF: 162.79042271203838
Iteration: 13, Func. Count: 132, Neg. LLF: 162.77113132061646
Iteration: 14, Func. Count: 142, Neg. LLF: 157.32149140381367
Iteration: 15, Func. Count: 152, Neg. LLF: 166.41959539222222
Iteration: 16, Func. Count: 162, Neg. LLF: 125.07833527204848
Iteration: 17, Func. Count: 172, Neg. LLF: 122.44449595664268
Iteration: 18, Func. Count: 181, Neg. LLF: 122.24402177583072
Iteration: 19, Func. Count: 190, Neg. LLF: 122.18109275499457
Iteration: 20, Func. Count: 199, Neg. LLF: 122.16008189435567
Iteration: 21, Func. Count: 208, Neg. LLF: 122.15506595858983
Iteration: 22, Func. Count: 217, Neg. LLF: 122.1484313606153
Iteration: 23, Func. Count: 226, Neg. LLF: 122.14497240659107
Iteration: 24, Func. Count: 235, Neg. LLF: 122.13782575288552
Iteration: 25, Func. Count: 244, Neg. LLF: 122.13397707088996
Iteration: 26, Func. Count: 253, Neg. LLF: 122.13287312402414
Iteration: 27, Func. Count: 262, Neg. LLF: 122.13275799899851
Iteration: 28, Func. Count: 271, Neg. LLF: 122.13275489394192
Iteration: 29, Func. Count: 279, Neg. LLF: 122.13275486018716
Optimization terminated successfully (Exit mode 0)
Current function value: 122.13275489394192
Iterations: 29
Function evaluations: 279
Gradient evaluations: 29
Iteration: 1, Func. Count: 11, Neg. LLF: 275.42226693015857
Iteration: 2, Func. Count: 22, Neg. LLF: 411.8130861974516
Iteration: 3, Func. Count: 33, Neg. LLF: 192.9267475921916
Iteration: 4, Func. Count: 44, Neg. LLF: 7073102.497577663
Iteration: 5, Func. Count: 55, Neg. LLF: 126.02155044036715
Iteration: 6, Func. Count: 66, Neg. LLF: 129.6901387580682
Iteration: 7, Func. Count: 77, Neg. LLF: 123.28393923868668
Iteration: 8, Func. Count: 88, Neg. LLF: 122.02794674397644
Iteration: 9, Func. Count: 98, Neg. LLF: 121.98634101063689
Iteration: 10, Func. Count: 108, Neg. LLF: 121.98460802328162
Iteration: 11, Func. Count: 118, Neg. LLF: 121.98410277136774
Iteration: 12, Func. Count: 128, Neg. LLF: 121.98408784275843
Iteration: 13, Func. Count: 138, Neg. LLF: 121.98408489713282
Iteration: 14, Func. Count: 147, Neg. LLF: 121.98408481806331
Optimization terminated successfully (Exit mode 0)
Current function value: 121.98408489713282
Iterations: 14
Function evaluations: 147
Gradient evaluations: 14
Iteration: 1, Func. Count: 12, Neg. LLF: 150.30143434809057
Iteration: 2, Func. Count: 24, Neg. LLF: 130.33085091693366
Iteration: 3, Func. Count: 36, Neg. LLF: 1361.166440048367
Iteration: 4, Func. Count: 48, Neg. LLF: 186.25504386471908
Iteration: 5, Func. Count: 60, Neg. LLF: 144.3108070960601
Iteration: 6, Func. Count: 72, Neg. LLF: 174.50061759760607
Iteration: 7, Func. Count: 84, Neg. LLF: 155.60385687003298
Iteration: 8, Func. Count: 96, Neg. LLF: 151.15496583015175
Iteration: 9, Func. Count: 108, Neg. LLF: 129.77144358821636
Iteration: 10, Func. Count: 120, Neg. LLF: 122.90014000779719
Iteration: 11, Func. Count: 132, Neg. LLF: 122.07331832728093
Iteration: 12, Func. Count: 143, Neg. LLF: 122.052080354867
Iteration: 13, Func. Count: 154, Neg. LLF: 121.99220792352835
Iteration: 14, Func. Count: 165, Neg. LLF: 121.99312755986486
Iteration: 15, Func. Count: 177, Neg. LLF: 121.98425044326373
Iteration: 16, Func. Count: 188, Neg. LLF: 121.98409362381345
Iteration: 17, Func. Count: 199, Neg. LLF: 121.98408580528005
Iteration: 18, Func. Count: 210, Neg. LLF: 121.98408489373396
Optimization terminated successfully (Exit mode 0)
Current function value: 121.98408489373396
Iterations: 18
Function evaluations: 210
Gradient evaluations: 18
Iteration: 1, Func. Count: 13, Neg. LLF: 149.34638488806547
Iteration: 2, Func. Count: 26, Neg. LLF: 129.71332766299628
Iteration: 3, Func. Count: 39, Neg. LLF: 742.7803082052325
Iteration: 4, Func. Count: 52, Neg. LLF: 176.68548476162397
Iteration: 5, Func. Count: 65, Neg. LLF: 145.91624879945053
Iteration: 6, Func. Count: 78, Neg. LLF: 145.99740819874148
Iteration: 7, Func. Count: 91, Neg. LLF: 153.00554885070858
Iteration: 8, Func. Count: 104, Neg. LLF: 133.2381050421623
Iteration: 9, Func. Count: 117, Neg. LLF: 139.99602841347556
Iteration: 10, Func. Count: 130, Neg. LLF: 122.30577846163824
Iteration: 11, Func. Count: 142, Neg. LLF: 121.51903454373303
Iteration: 12, Func. Count: 154, Neg. LLF: 121.49126573843962
Iteration: 13, Func. Count: 166, Neg. LLF: 121.42560283850946
Iteration: 14, Func. Count: 178, Neg. LLF: 121.41774213006565
Iteration: 15, Func. Count: 190, Neg. LLF: 121.41552890269203
Iteration: 16, Func. Count: 202, Neg. LLF: 121.41532658748902
Iteration: 17, Func. Count: 214, Neg. LLF: 121.41531481102766
Iteration: 18, Func. Count: 226, Neg. LLF: 121.41531412319956
Optimization terminated successfully (Exit mode 0)
Current function value: 121.41531412319956
Iterations: 18
Function evaluations: 226
Gradient evaluations: 18
Iteration: 1, Func. Count: 14, Neg. LLF: 150.0229450196292
Iteration: 2, Func. Count: 28, Neg. LLF: 131.05875128417665
Iteration: 3, Func. Count: 42, Neg. LLF: 309.1695079201395
Iteration: 4, Func. Count: 56, Neg. LLF: 203.17834343301618
Iteration: 5, Func. Count: 70, Neg. LLF: 143.05152701472844
Iteration: 6, Func. Count: 84, Neg. LLF: 148.58851076368845
Iteration: 7, Func. Count: 98, Neg. LLF: 138.3172457641794
Iteration: 8, Func. Count: 112, Neg. LLF: 161.82029312819583
Iteration: 9, Func. Count: 126, Neg. LLF: 132.18475630899053
Iteration: 10, Func. Count: 140, Neg. LLF: 124.88458172339465
Iteration: 11, Func. Count: 154, Neg. LLF: 121.70394999540858
Iteration: 12, Func. Count: 167, Neg. LLF: 121.49891122070679
Iteration: 13, Func. Count: 180, Neg. LLF: 121.4515289748151
Iteration: 14, Func. Count: 193, Neg. LLF: 121.42299706968919
Iteration: 15, Func. Count: 206, Neg. LLF: 121.41582706705621
Iteration: 16, Func. Count: 219, Neg. LLF: 121.41536574156342
Iteration: 17, Func. Count: 232, Neg. LLF: 121.41532785702678
Iteration: 18, Func. Count: 245, Neg. LLF: 121.41531426827623
Iteration: 19, Func. Count: 257, Neg. LLF: 121.41531435265692
Optimization terminated successfully (Exit mode 0)
Current function value: 121.41531426827623
Iterations: 19
Function evaluations: 257
Gradient evaluations: 19
Iteration: 1, Func. Count: 11, Neg. LLF: 154.06112208843723
Iteration: 2, Func. Count: 22, Neg. LLF: 128.6968313137834
Iteration: 3, Func. Count: 32, Neg. LLF: 134.97894488614267
Iteration: 4, Func. Count: 43, Neg. LLF: 168.30076462438473
Iteration: 5, Func. Count: 54, Neg. LLF: 942.1122130718287
Iteration: 6, Func. Count: 65, Neg. LLF: 1262.702748827079
Iteration: 7, Func. Count: 76, Neg. LLF: 373.36603311336074
Iteration: 8, Func. Count: 87, Neg. LLF: 491.12966732346
Iteration: 9, Func. Count: 98, Neg. LLF: 5777.4155881243705
Iteration: 10, Func. Count: 109, Neg. LLF: 412.540301818926
Iteration: 11, Func. Count: 120, Neg. LLF: 160.44380185033785
Iteration: 12, Func. Count: 131, Neg. LLF: 153.3788188103121
Iteration: 13, Func. Count: 142, Neg. LLF: 151.2290636765126
Iteration: 14, Func. Count: 153, Neg. LLF: 150.52455804090653
Iteration: 15, Func. Count: 164, Neg. LLF: 129.30953593838
Iteration: 16, Func. Count: 175, Neg. LLF: 122.64700226967281
Iteration: 17, Func. Count: 186, Neg. LLF: 121.77065321427003
Iteration: 18, Func. Count: 196, Neg. LLF: 121.7149485815248
Iteration: 19, Func. Count: 206, Neg. LLF: 121.70987267467278
Iteration: 20, Func. Count: 217, Neg. LLF: 121.68986577584276
Iteration: 21, Func. Count: 227, Neg. LLF: 121.68880093208128
Iteration: 22, Func. Count: 237, Neg. LLF: 121.6883285635111
Iteration: 23, Func. Count: 247, Neg. LLF: 121.68801730752054
Iteration: 24, Func. Count: 257, Neg. LLF: 121.68794148403687
Iteration: 25, Func. Count: 267, Neg. LLF: 121.6879346519689
Iteration: 26, Func. Count: 276, Neg. LLF: 121.68793462020011
Optimization terminated successfully (Exit mode 0)
Current function value: 121.6879346519689
Iterations: 26
Function evaluations: 276
Gradient evaluations: 26
Iteration: 1, Func. Count: 12, Neg. LLF: 256.9305874584106
Iteration: 2, Func. Count: 24, Neg. LLF: 250.48974613914993
Iteration: 3, Func. Count: 36, Neg. LLF: 1525.6222847479744
Iteration: 4, Func. Count: 48, Neg. LLF: 1038.814910969431
Iteration: 5, Func. Count: 60, Neg. LLF: 129.4037527419716
Iteration: 6, Func. Count: 72, Neg. LLF: 126.06844579537162
Iteration: 7, Func. Count: 84, Neg. LLF: 126.78937220021058
Iteration: 8, Func. Count: 96, Neg. LLF: 122.07095185592622
Iteration: 9, Func. Count: 107, Neg. LLF: 124.49540004489116
Iteration: 10, Func. Count: 119, Neg. LLF: 122.07746630359348
Iteration: 11, Func. Count: 131, Neg. LLF: 121.71898530103869
Iteration: 12, Func. Count: 142, Neg. LLF: 121.69081728820885
Iteration: 13, Func. Count: 153, Neg. LLF: 121.6883680057624
Iteration: 14, Func. Count: 164, Neg. LLF: 121.68804401930727
Iteration: 15, Func. Count: 175, Neg. LLF: 121.68795650167377
Iteration: 16, Func. Count: 186, Neg. LLF: 121.68793655949209
Iteration: 17, Func. Count: 197, Neg. LLF: 121.6879346417026
Iteration: 18, Func. Count: 207, Neg. LLF: 121.68793460987916
Optimization terminated successfully (Exit mode 0)
Current function value: 121.6879346417026
Iterations: 18
Function evaluations: 207
Gradient evaluations: 18
Iteration: 1, Func. Count: 13, Neg. LLF: 144.5376450778678
Iteration: 2, Func. Count: 26, Neg. LLF: 129.36168800619654
Iteration: 3, Func. Count: 39, Neg. LLF: 291056.560478399
Iteration: 4, Func. Count: 52, Neg. LLF: 165.79637575244877
Iteration: 5, Func. Count: 65, Neg. LLF: 167.40773315824066
Iteration: 6, Func. Count: 78, Neg. LLF: 171.68343232199504
Iteration: 7, Func. Count: 91, Neg. LLF: 159.14866861448382
Iteration: 8, Func. Count: 104, Neg. LLF: 423.49856225944626
Iteration: 9, Func. Count: 117, Neg. LLF: 144.03495783513944
Iteration: 10, Func. Count: 130, Neg. LLF: 121.87634822466417
Iteration: 11, Func. Count: 142, Neg. LLF: 121.70374458826704
Iteration: 12, Func. Count: 154, Neg. LLF: 121.69157762254747
Iteration: 13, Func. Count: 166, Neg. LLF: 121.68970204727539
Iteration: 14, Func. Count: 178, Neg. LLF: 121.68807616491314
Iteration: 15, Func. Count: 190, Neg. LLF: 121.68794970211499
Iteration: 16, Func. Count: 202, Neg. LLF: 121.68793557707897
Iteration: 17, Func. Count: 214, Neg. LLF: 121.687934657528
Optimization terminated successfully (Exit mode 0)
Current function value: 121.687934657528
Iterations: 17
Function evaluations: 214
Gradient evaluations: 17
Iteration: 1, Func. Count: 14, Neg. LLF: 148.9328678243669
Iteration: 2, Func. Count: 28, Neg. LLF: 128.79908720978048
Iteration: 3, Func. Count: 42, Neg. LLF: 2119.9212277489955
Iteration: 4, Func. Count: 56, Neg. LLF: 206.36954568285196
Iteration: 5, Func. Count: 70, Neg. LLF: 163.44422939138906
Iteration: 6, Func. Count: 84, Neg. LLF: 152.77689793602832
Iteration: 7, Func. Count: 98, Neg. LLF: 163.5965662071013
Iteration: 8, Func. Count: 112, Neg. LLF: 137.55541709879756
Iteration: 9, Func. Count: 126, Neg. LLF: 124.4690583463638
Iteration: 10, Func. Count: 140, Neg. LLF: 124.82160948786384
Iteration: 11, Func. Count: 154, Neg. LLF: 121.70843029351572
Iteration: 12, Func. Count: 167, Neg. LLF: 121.72171588391593
Iteration: 13, Func. Count: 181, Neg. LLF: 121.68412805180716
Iteration: 14, Func. Count: 195, Neg. LLF: 121.59159884783719
Iteration: 15, Func. Count: 208, Neg. LLF: 121.5912133625241
Iteration: 16, Func. Count: 221, Neg. LLF: 121.59115653012609
Iteration: 17, Func. Count: 234, Neg. LLF: 121.59115043037447
Iteration: 18, Func. Count: 247, Neg. LLF: 121.59114822977779
Iteration: 19, Func. Count: 260, Neg. LLF: 121.59114629414968
Iteration: 20, Func. Count: 272, Neg. LLF: 121.59114622781952
Optimization terminated successfully (Exit mode 0)
Current function value: 121.59114629414968
Iterations: 20
Function evaluations: 272
Gradient evaluations: 20
Iteration: 1, Func. Count: 15, Neg. LLF: 146.40805115539868
Iteration: 2, Func. Count: 30, Neg. LLF: 128.72028245776897
Iteration: 3, Func. Count: 45, Neg. LLF: 1383.6322544136506
Iteration: 4, Func. Count: 60, Neg. LLF: 159.04751851876816
Iteration: 5, Func. Count: 75, Neg. LLF: 224.0124376746861
Iteration: 6, Func. Count: 90, Neg. LLF: 150.853291209307
Iteration: 7, Func. Count: 105, Neg. LLF: 321.6368983898488
Iteration: 8, Func. Count: 120, Neg. LLF: 140.17613928370207
Iteration: 9, Func. Count: 135, Neg. LLF: 143.15853224377338
Iteration: 10, Func. Count: 150, Neg. LLF: 127.02884948347173
Iteration: 11, Func. Count: 165, Neg. LLF: 121.8718751029237
Iteration: 12, Func. Count: 179, Neg. LLF: 121.5900268809856
Iteration: 13, Func. Count: 193, Neg. LLF: 121.64841438366051
Iteration: 14, Func. Count: 208, Neg. LLF: 121.4189537001996
Iteration: 15, Func. Count: 222, Neg. LLF: 121.41592657113937
Iteration: 16, Func. Count: 236, Neg. LLF: 121.4153353036881
Iteration: 17, Func. Count: 250, Neg. LLF: 121.41531785336666
Iteration: 18, Func. Count: 264, Neg. LLF: 121.4153141990155
Iteration: 19, Func. Count: 277, Neg. LLF: 121.41531428341732
Optimization terminated successfully (Exit mode 0)
Current function value: 121.4153141990155
Iterations: 19
Function evaluations: 277
Gradient evaluations: 19
Iteration: 1, Func. Count: 12, Neg. LLF: 151.91832952912446
Iteration: 2, Func. Count: 24, Neg. LLF: 136.37611650060052
Iteration: 3, Func. Count: 37, Neg. LLF: 136.8810724508106
Iteration: 4, Func. Count: 49, Neg. LLF: 145.5608867176104
Iteration: 5, Func. Count: 61, Neg. LLF: 128.48504953067624
Iteration: 6, Func. Count: 73, Neg. LLF: 361.07630665120985
Iteration: 7, Func. Count: 85, Neg. LLF: 30341.49645926701
Iteration: 8, Func. Count: 97, Neg. LLF: 168.65984813505895
Iteration: 9, Func. Count: 109, Neg. LLF: 154.34153468759058
Iteration: 10, Func. Count: 121, Neg. LLF: 143.96426821725237
Iteration: 11, Func. Count: 133, Neg. LLF: 159.6474734778063
Iteration: 12, Func. Count: 145, Neg. LLF: 177.23901554916895
Iteration: 13, Func. Count: 157, Neg. LLF: 163.92434391975507
Iteration: 14, Func. Count: 169, Neg. LLF: 121.86068324463601
Iteration: 15, Func. Count: 180, Neg. LLF: 121.75347286270743
Iteration: 16, Func. Count: 191, Neg. LLF: 121.70698432953023
Iteration: 17, Func. Count: 202, Neg. LLF: 121.69189243803906
Iteration: 18, Func. Count: 213, Neg. LLF: 121.68887954840172
Iteration: 19, Func. Count: 224, Neg. LLF: 121.68796826525885
Iteration: 20, Func. Count: 235, Neg. LLF: 121.68793859990085
Iteration: 21, Func. Count: 246, Neg. LLF: 121.68793471081665
Iteration: 22, Func. Count: 256, Neg. LLF: 121.68793456683339
Optimization terminated successfully (Exit mode 0)
Current function value: 121.68793471081665
Iterations: 22
Function evaluations: 256
Gradient evaluations: 22
Iteration: 1, Func. Count: 13, Neg. LLF: 163.42009852950906
Iteration: 2, Func. Count: 26, Neg. LLF: 131.02605035622787
Iteration: 3, Func. Count: 39, Neg. LLF: 5833441.9083700795
Iteration: 4, Func. Count: 52, Neg. LLF: 186.15683916301816
Iteration: 5, Func. Count: 65, Neg. LLF: 205.7845839524643
Iteration: 6, Func. Count: 78, Neg. LLF: 307.80185399369356
Iteration: 7, Func. Count: 91, Neg. LLF: 152.34709552256882
Iteration: 8, Func. Count: 104, Neg. LLF: 158.34644139292917
Iteration: 9, Func. Count: 117, Neg. LLF: 142.22243979380568
Iteration: 10, Func. Count: 130, Neg. LLF: 122.4775047124178
Iteration: 11, Func. Count: 142, Neg. LLF: 121.84979561269333
Iteration: 12, Func. Count: 154, Neg. LLF: 121.89447451619138
Iteration: 13, Func. Count: 167, Neg. LLF: 121.69655597961943
Iteration: 14, Func. Count: 179, Neg. LLF: 121.69249121415757
Iteration: 15, Func. Count: 191, Neg. LLF: 121.68829358903781
Iteration: 16, Func. Count: 203, Neg. LLF: 121.68805857864454
Iteration: 17, Func. Count: 215, Neg. LLF: 121.68794606057902
Iteration: 18, Func. Count: 227, Neg. LLF: 121.68793643579136
Iteration: 19, Func. Count: 239, Neg. LLF: 121.68793468048324
Iteration: 20, Func. Count: 250, Neg. LLF: 121.68793464866876
Optimization terminated successfully (Exit mode 0)
Current function value: 121.68793468048324
Iterations: 20
Function evaluations: 250
Gradient evaluations: 20
Iteration: 1, Func. Count: 14, Neg. LLF: 143.93116417783258
Iteration: 2, Func. Count: 28, Neg. LLF: 129.02299682809942
Iteration: 3, Func. Count: 42, Neg. LLF: 331566.82327183645
Iteration: 4, Func. Count: 56, Neg. LLF: 233.26512050248607
Iteration: 5, Func. Count: 70, Neg. LLF: 145.08181090123355
Iteration: 6, Func. Count: 84, Neg. LLF: 147.36480500540128
Iteration: 7, Func. Count: 98, Neg. LLF: 319.2106143146363
Iteration: 8, Func. Count: 112, Neg. LLF: 147.03422502162545
Iteration: 9, Func. Count: 126, Neg. LLF: 132.8705429264324
Iteration: 10, Func. Count: 140, Neg. LLF: 122.05173066946256
Iteration: 11, Func. Count: 153, Neg. LLF: 121.74112495529027
Iteration: 12, Func. Count: 166, Neg. LLF: 121.70325380286982
Iteration: 13, Func. Count: 179, Neg. LLF: 121.68866987672646
Iteration: 14, Func. Count: 192, Neg. LLF: 121.6880017351377
Iteration: 15, Func. Count: 205, Neg. LLF: 121.68793640382749
Iteration: 16, Func. Count: 218, Neg. LLF: 121.68793474423863
Iteration: 17, Func. Count: 230, Neg. LLF: 121.68793477944817
Optimization terminated successfully (Exit mode 0)
Current function value: 121.68793474423863
Iterations: 17
Function evaluations: 230
Gradient evaluations: 17
Iteration: 1, Func. Count: 15, Neg. LLF: 143.85490989090198
Iteration: 2, Func. Count: 30, Neg. LLF: 129.4084578440901
Iteration: 3, Func. Count: 45, Neg. LLF: 1230.071902692605
Iteration: 4, Func. Count: 60, Neg. LLF: 420.5932285270959
Iteration: 5, Func. Count: 75, Neg. LLF: 165.15345511334604
Iteration: 6, Func. Count: 90, Neg. LLF: 155.40115959959502
Iteration: 7, Func. Count: 105, Neg. LLF: 161.05799856514926
Iteration: 8, Func. Count: 120, Neg. LLF: 140.11045992019854
Iteration: 9, Func. Count: 135, Neg. LLF: 187.49067257514886
Iteration: 10, Func. Count: 150, Neg. LLF: 123.42293219940635
Iteration: 11, Func. Count: 165, Neg. LLF: 121.95806253497504
Iteration: 12, Func. Count: 179, Neg. LLF: 122.27781466758633
Iteration: 13, Func. Count: 194, Neg. LLF: 122.42617438481109
Iteration: 14, Func. Count: 209, Neg. LLF: 121.59491039235436
Iteration: 15, Func. Count: 223, Neg. LLF: 121.59164832970625
Iteration: 16, Func. Count: 237, Neg. LLF: 121.59126961770554
Iteration: 17, Func. Count: 251, Neg. LLF: 121.59116792785636
Iteration: 18, Func. Count: 265, Neg. LLF: 121.59114908268965
Iteration: 19, Func. Count: 279, Neg. LLF: 121.59114826770173
Optimization terminated successfully (Exit mode 0)
Current function value: 121.59114826770173
Iterations: 19
Function evaluations: 279
Gradient evaluations: 19
Iteration: 1, Func. Count: 16, Neg. LLF: 142.6894351714824
Iteration: 2, Func. Count: 32, Neg. LLF: 129.21002802784133
Iteration: 3, Func. Count: 48, Neg. LLF: 499.04251579506723
Iteration: 4, Func. Count: 64, Neg. LLF: 266.3418378638382
Iteration: 5, Func. Count: 80, Neg. LLF: 39419.13329082748
Iteration: 6, Func. Count: 96, Neg. LLF: 158.94130260583574
Iteration: 7, Func. Count: 112, Neg. LLF: 144.7906742608933
Iteration: 8, Func. Count: 128, Neg. LLF: 168.09127353973687
Iteration: 9, Func. Count: 144, Neg. LLF: 144.4936151557143
Iteration: 10, Func. Count: 160, Neg. LLF: 130.54596368253775
Iteration: 11, Func. Count: 176, Neg. LLF: 128.21230906552327
Iteration: 12, Func. Count: 192, Neg. LLF: 121.62646875766278
Iteration: 13, Func. Count: 207, Neg. LLF: 121.61362168812866
Iteration: 14, Func. Count: 222, Neg. LLF: 121.62173697035641
Iteration: 15, Func. Count: 238, Neg. LLF: 121.60230644264534
Iteration: 16, Func. Count: 254, Neg. LLF: 121.591483662974
Iteration: 17, Func. Count: 269, Neg. LLF: 121.5912731162296
Iteration: 18, Func. Count: 284, Neg. LLF: 121.59116103677883
Iteration: 19, Func. Count: 299, Neg. LLF: 121.59114672167485
Iteration: 20, Func. Count: 314, Neg. LLF: 121.59114609598427
Optimization terminated successfully (Exit mode 0)
Current function value: 121.59114609598427
Iterations: 20
Function evaluations: 314
Gradient evaluations: 20
Iteration: 1, Func. Count: 6, Neg. LLF: 387.90869237632324
Iteration: 2, Func. Count: 12, Neg. LLF: 795.3499390193233
Iteration: 3, Func. Count: 18, Neg. LLF: 204.06030631320675
Iteration: 4, Func. Count: 24, Neg. LLF: 124.82000600540883
Iteration: 5, Func. Count: 30, Neg. LLF: 139.11614651319468
Iteration: 6, Func. Count: 36, Neg. LLF: 123.43135073139074
Iteration: 7, Func. Count: 41, Neg. LLF: 123.39876100160828
Iteration: 8, Func. Count: 46, Neg. LLF: 123.39559965846873
Iteration: 9, Func. Count: 51, Neg. LLF: 123.39553252624576
Iteration: 10, Func. Count: 56, Neg. LLF: 123.39552477221655
Iteration: 11, Func. Count: 61, Neg. LLF: 123.39552395689205
Optimization terminated successfully (Exit mode 0)
Current function value: 123.39552395689205
Iterations: 11
Function evaluations: 61
Gradient evaluations: 11
Iteration: 1, Func. Count: 5, Neg. LLF: 151.07465261117147
Iteration: 2, Func. Count: 9, Neg. LLF: 156.30344694028642
Iteration: 3, Func. Count: 14, Neg. LLF: 148.41806664369847
Iteration: 4, Func. Count: 18, Neg. LLF: 148.39079437291133
Iteration: 5, Func. Count: 22, Neg. LLF: 148.38217067584242
Iteration: 6, Func. Count: 26, Neg. LLF: 148.38039746934533
Iteration: 7, Func. Count: 30, Neg. LLF: 148.38035862916777
Iteration: 8, Func. Count: 33, Neg. LLF: 148.38035863091596
Optimization terminated successfully (Exit mode 0)
Current function value: 148.38035862916777
Iterations: 8
Function evaluations: 33
Gradient evaluations: 8
Iteration: 1, Func. Count: 6, Neg. LLF: 172.17720062696893
Iteration: 2, Func. Count: 13, Neg. LLF: 171.13654424884064
Iteration: 3, Func. Count: 19, Neg. LLF: 156.39914359793534
Iteration: 4, Func. Count: 25, Neg. LLF: 155.7222690249891
Iteration: 5, Func. Count: 31, Neg. LLF: 158.42038552927622
Iteration: 6, Func. Count: 37, Neg. LLF: 141.8006879186956
Iteration: 7, Func. Count: 42, Neg. LLF: 141.71393280975755
Iteration: 8, Func. Count: 47, Neg. LLF: 141.5649857264808
Iteration: 9, Func. Count: 52, Neg. LLF: 141.32629752022973
Iteration: 10, Func. Count: 57, Neg. LLF: 141.30640864415838
Iteration: 11, Func. Count: 62, Neg. LLF: 141.30576334734204
Iteration: 12, Func. Count: 67, Neg. LLF: 141.30520742759825
Iteration: 13, Func. Count: 72, Neg. LLF: 141.30349525388553
Iteration: 14, Func. Count: 77, Neg. LLF: 141.3029803720692
Iteration: 15, Func. Count: 82, Neg. LLF: 141.30287343367016
Iteration: 16, Func. Count: 87, Neg. LLF: 141.3028704770382
Iteration: 17, Func. Count: 91, Neg. LLF: 141.30287044275832
Optimization terminated successfully (Exit mode 0)
Current function value: 141.3028704770382
Iterations: 17
Function evaluations: 91
Gradient evaluations: 17
Iteration: 1, Func. Count: 7, Neg. LLF: 181.21715227223842
Iteration: 2, Func. Count: 14, Neg. LLF: 175.16861240276108
Iteration: 3, Func. Count: 22, Neg. LLF: 160.62072920727115
Iteration: 4, Func. Count: 29, Neg. LLF: 142.0924023008182
Iteration: 5, Func. Count: 35, Neg. LLF: 165.17964008501153
Iteration: 6, Func. Count: 42, Neg. LLF: 141.9694739604873
Iteration: 7, Func. Count: 48, Neg. LLF: 141.82338718487833
Iteration: 8, Func. Count: 54, Neg. LLF: 141.55271269187702
Iteration: 9, Func. Count: 60, Neg. LLF: 141.4407630830652
Iteration: 10, Func. Count: 66, Neg. LLF: 141.35847341440845
Iteration: 11, Func. Count: 72, Neg. LLF: 141.32088634435829
Iteration: 12, Func. Count: 78, Neg. LLF: 141.30463929753088
Iteration: 13, Func. Count: 84, Neg. LLF: 141.30291125894632
Iteration: 14, Func. Count: 90, Neg. LLF: 141.30287111606617
Iteration: 15, Func. Count: 96, Neg. LLF: 141.30287041339488
Optimization terminated successfully (Exit mode 0)
Current function value: 141.30287041339488
Iterations: 15
Function evaluations: 96
Gradient evaluations: 15
Iteration: 1, Func. Count: 8, Neg. LLF: 186.17211239545148
Iteration: 2, Func. Count: 16, Neg. LLF: 181.7004192118053
Iteration: 3, Func. Count: 25, Neg. LLF: 166.05791713910253
Iteration: 4, Func. Count: 33, Neg. LLF: 143.94261494997846
Iteration: 5, Func. Count: 41, Neg. LLF: 143.56314287957522
Iteration: 6, Func. Count: 49, Neg. LLF: 142.1311785695299
Iteration: 7, Func. Count: 56, Neg. LLF: 160.72576337026794
Iteration: 8, Func. Count: 65, Neg. LLF: 141.87334913131468
Iteration: 9, Func. Count: 72, Neg. LLF: 141.7491943708711
Iteration: 10, Func. Count: 79, Neg. LLF: 141.59685601241915
Iteration: 11, Func. Count: 86, Neg. LLF: 141.42121452953134
Iteration: 12, Func. Count: 93, Neg. LLF: 141.32608114393832
Iteration: 13, Func. Count: 100, Neg. LLF: 141.3114167492454
Iteration: 14, Func. Count: 107, Neg. LLF: 141.30297892610258
Iteration: 15, Func. Count: 114, Neg. LLF: 141.3004927723544
Iteration: 16, Func. Count: 121, Neg. LLF: 141.30047874304088
Iteration: 17, Func. Count: 127, Neg. LLF: 141.3004787100174
Optimization terminated successfully (Exit mode 0)
Current function value: 141.30047874304088
Iterations: 17
Function evaluations: 127
Gradient evaluations: 17
Iteration: 1, Func. Count: 9, Neg. LLF: 189.01999662614563
Iteration: 2, Func. Count: 18, Neg. LLF: 150.8122647604227
Iteration: 3, Func. Count: 27, Neg. LLF: 205.1856090152157
Iteration: 4, Func. Count: 36, Neg. LLF: 156.13457796697708
Iteration: 5, Func. Count: 45, Neg. LLF: 144.88138211246138
Iteration: 6, Func. Count: 54, Neg. LLF: 142.45751044407288
Iteration: 7, Func. Count: 62, Neg. LLF: 142.21692847571657
Iteration: 8, Func. Count: 70, Neg. LLF: 142.51326445107114
Iteration: 9, Func. Count: 79, Neg. LLF: 141.84515218984396
Iteration: 10, Func. Count: 87, Neg. LLF: 141.79856321685426
Iteration: 11, Func. Count: 95, Neg. LLF: 141.68735403836664
Iteration: 12, Func. Count: 103, Neg. LLF: 141.6226415009723
Iteration: 13, Func. Count: 111, Neg. LLF: 141.40043538302746
Iteration: 14, Func. Count: 119, Neg. LLF: 141.30107465202892
Iteration: 15, Func. Count: 127, Neg. LLF: 141.19880045251833
Iteration: 16, Func. Count: 135, Neg. LLF: 141.33649805514065
Iteration: 17, Func. Count: 144, Neg. LLF: 141.16602091188608
Iteration: 18, Func. Count: 152, Neg. LLF: 141.16346256694385
Iteration: 19, Func. Count: 160, Neg. LLF: 141.1628006758948
Iteration: 20, Func. Count: 168, Neg. LLF: 141.16261394064531
Iteration: 21, Func. Count: 176, Neg. LLF: 141.16256153812245
Iteration: 22, Func. Count: 183, Neg. LLF: 141.1625615039848
Optimization terminated successfully (Exit mode 0)
Current function value: 141.16256153812245
Iterations: 22
Function evaluations: 183
Gradient evaluations: 22
Iteration: 1, Func. Count: 6, Neg. LLF: 159.22780261221837
Iteration: 2, Func. Count: 12, Neg. LLF: 146.49360292243847
Iteration: 3, Func. Count: 18, Neg. LLF: 168.828093482967
Iteration: 4, Func. Count: 24, Neg. LLF: 144.4888077468671
Iteration: 5, Func. Count: 29, Neg. LLF: 143.81633022432447
Iteration: 6, Func. Count: 34, Neg. LLF: 141.22262426610737
Iteration: 7, Func. Count: 39, Neg. LLF: 141.87725298419414
Iteration: 8, Func. Count: 45, Neg. LLF: 140.84763473846044
Iteration: 9, Func. Count: 50, Neg. LLF: 140.75553668783184
Iteration: 10, Func. Count: 55, Neg. LLF: 140.7334576809355
Iteration: 11, Func. Count: 60, Neg. LLF: 140.72898619547195
Iteration: 12, Func. Count: 65, Neg. LLF: 140.72887785436933
Iteration: 13, Func. Count: 70, Neg. LLF: 140.7288767091757
Iteration: 14, Func. Count: 74, Neg. LLF: 140.72887669465234
Optimization terminated successfully (Exit mode 0)
Current function value: 140.7288767091757
Iterations: 14
Function evaluations: 74
Gradient evaluations: 14
Iteration: 1, Func. Count: 7, Neg. LLF: 172.48362032245265
Iteration: 2, Func. Count: 15, Neg. LLF: 177.9518734190139
Iteration: 3, Func. Count: 22, Neg. LLF: 156.75758534105114
Iteration: 4, Func. Count: 29, Neg. LLF: 198.69148088180842
Iteration: 5, Func. Count: 36, Neg. LLF: 158.96892088653559
Iteration: 6, Func. Count: 43, Neg. LLF: 141.98561146570447
Iteration: 7, Func. Count: 49, Neg. LLF: 141.63039041565136
Iteration: 8, Func. Count: 55, Neg. LLF: 141.85057131138325
Iteration: 9, Func. Count: 62, Neg. LLF: 141.34992844665805
Iteration: 10, Func. Count: 68, Neg. LLF: 141.25730815065782
Iteration: 11, Func. Count: 74, Neg. LLF: 141.03402116111445
Iteration: 12, Func. Count: 80, Neg. LLF: 140.79830511188993
Iteration: 13, Func. Count: 86, Neg. LLF: 140.74478932990453
Iteration: 14, Func. Count: 92, Neg. LLF: 140.73305172661958
Iteration: 15, Func. Count: 98, Neg. LLF: 140.7326630497492
Iteration: 16, Func. Count: 104, Neg. LLF: 140.7319632991156
Iteration: 17, Func. Count: 110, Neg. LLF: 140.7307496718684
Iteration: 18, Func. Count: 116, Neg. LLF: 140.729526147604
Iteration: 19, Func. Count: 122, Neg. LLF: 140.72896678653288
Iteration: 20, Func. Count: 128, Neg. LLF: 140.7288812193376
Iteration: 21, Func. Count: 134, Neg. LLF: 140.7288767727318
Iteration: 22, Func. Count: 139, Neg. LLF: 140.72887674987052
Optimization terminated successfully (Exit mode 0)
Current function value: 140.7288767727318
Iterations: 22
Function evaluations: 139
Gradient evaluations: 22
Iteration: 1, Func. Count: 8, Neg. LLF: 153.02409841935744
Iteration: 2, Func. Count: 17, Neg. LLF: 167.5872784908504
Iteration: 3, Func. Count: 26, Neg. LLF: 151.4446204745254
Iteration: 4, Func. Count: 34, Neg. LLF: 163.16524916994646
Iteration: 5, Func. Count: 42, Neg. LLF: 142.82890321520904
Iteration: 6, Func. Count: 50, Neg. LLF: 142.43655111658785
Iteration: 7, Func. Count: 58, Neg. LLF: 141.83526638075472
Iteration: 8, Func. Count: 65, Neg. LLF: 141.64864983344492
Iteration: 9, Func. Count: 72, Neg. LLF: 141.57342306577817
Iteration: 10, Func. Count: 79, Neg. LLF: 141.26169565858476
Iteration: 11, Func. Count: 86, Neg. LLF: 141.10241323931558
Iteration: 12, Func. Count: 93, Neg. LLF: 140.9447907305524
Iteration: 13, Func. Count: 100, Neg. LLF: 140.83611979038741
Iteration: 14, Func. Count: 107, Neg. LLF: 140.75316589786246
Iteration: 15, Func. Count: 114, Neg. LLF: 140.73471438701375
Iteration: 16, Func. Count: 121, Neg. LLF: 140.72905832707303
Iteration: 17, Func. Count: 128, Neg. LLF: 140.72888380168405
Iteration: 18, Func. Count: 135, Neg. LLF: 140.7288769518622
Iteration: 19, Func. Count: 141, Neg. LLF: 140.7288769676687
Optimization terminated successfully (Exit mode 0)
Current function value: 140.7288769518622
Iterations: 19
Function evaluations: 141
Gradient evaluations: 19
Iteration: 1, Func. Count: 9, Neg. LLF: 194.92849183848503
Iteration: 2, Func. Count: 19, Neg. LLF: 160.77555055296335
Iteration: 3, Func. Count: 29, Neg. LLF: 162.28876482258642
Iteration: 4, Func. Count: 38, Neg. LLF: 157.70038442128563
Iteration: 5, Func. Count: 47, Neg. LLF: 144.84021493139267
Iteration: 6, Func. Count: 56, Neg. LLF: 146.211366783399
Iteration: 7, Func. Count: 65, Neg. LLF: 142.28691105689498
Iteration: 8, Func. Count: 73, Neg. LLF: 141.97462805401642
Iteration: 9, Func. Count: 81, Neg. LLF: 141.85029930757185
Iteration: 10, Func. Count: 89, Neg. LLF: 141.72672611944512
Iteration: 11, Func. Count: 97, Neg. LLF: 141.2963881569423
Iteration: 12, Func. Count: 105, Neg. LLF: 141.21037418307458
Iteration: 13, Func. Count: 113, Neg. LLF: 140.97106284298303
Iteration: 14, Func. Count: 121, Neg. LLF: 140.84410164159945
Iteration: 15, Func. Count: 129, Neg. LLF: 140.70946454087473
Iteration: 16, Func. Count: 137, Neg. LLF: 140.59828842541435
Iteration: 17, Func. Count: 145, Neg. LLF: 140.5889891541791
Iteration: 18, Func. Count: 153, Neg. LLF: 140.58180114967243
Iteration: 19, Func. Count: 161, Neg. LLF: 140.5779497428505
Iteration: 20, Func. Count: 169, Neg. LLF: 140.57628238665126
Iteration: 21, Func. Count: 177, Neg. LLF: 140.57604474389066
Iteration: 22, Func. Count: 185, Neg. LLF: 140.57602881797112
Iteration: 23, Func. Count: 192, Neg. LLF: 140.57602879660027
Optimization terminated successfully (Exit mode 0)
Current function value: 140.57602881797112
Iterations: 23
Function evaluations: 192
Gradient evaluations: 23
Iteration: 1, Func. Count: 10, Neg. LLF: 198.07433246108474
Iteration: 2, Func. Count: 21, Neg. LLF: 155.00880852942555
Iteration: 3, Func. Count: 32, Neg. LLF: 188.22586445956696
Iteration: 4, Func. Count: 42, Neg. LLF: 155.82858706342168
Iteration: 5, Func. Count: 52, Neg. LLF: 142.86962864745374
Iteration: 6, Func. Count: 61, Neg. LLF: 142.72173153112178
Iteration: 7, Func. Count: 70, Neg. LLF: 142.79346589937578
Iteration: 8, Func. Count: 80, Neg. LLF: 141.92561991925305
Iteration: 9, Func. Count: 89, Neg. LLF: 142.19364791642744
Iteration: 10, Func. Count: 99, Neg. LLF: 141.15361159488248
Iteration: 11, Func. Count: 108, Neg. LLF: 140.8850739054176
Iteration: 12, Func. Count: 117, Neg. LLF: 140.7396956157573
Iteration: 13, Func. Count: 126, Neg. LLF: 140.69181224135588
Iteration: 14, Func. Count: 135, Neg. LLF: 140.5354913654559
Iteration: 15, Func. Count: 144, Neg. LLF: 140.50294106599603
Iteration: 16, Func. Count: 153, Neg. LLF: 140.46908959081907
Iteration: 17, Func. Count: 162, Neg. LLF: 140.4477213357519
Iteration: 18, Func. Count: 171, Neg. LLF: 140.43704967673278
Iteration: 19, Func. Count: 180, Neg. LLF: 140.43102821646076
Iteration: 20, Func. Count: 189, Neg. LLF: 140.42801768479316
Iteration: 21, Func. Count: 198, Neg. LLF: 140.42737437990087
Iteration: 22, Func. Count: 207, Neg. LLF: 140.42725309788432
Iteration: 23, Func. Count: 216, Neg. LLF: 140.427236371349
Iteration: 24, Func. Count: 225, Neg. LLF: 140.42723545837995
Optimization terminated successfully (Exit mode 0)
Current function value: 140.42723545837995
Iterations: 24
Function evaluations: 225
Gradient evaluations: 24
Iteration: 1, Func. Count: 7, Neg. LLF: 159.03662203604247
Iteration: 2, Func. Count: 14, Neg. LLF: 146.75927052444712
Iteration: 3, Func. Count: 21, Neg. LLF: 168.0607161906997
Iteration: 4, Func. Count: 28, Neg. LLF: 144.52630670729476
Iteration: 5, Func. Count: 34, Neg. LLF: 143.82626538760456
Iteration: 6, Func. Count: 40, Neg. LLF: 141.15652982138627
Iteration: 7, Func. Count: 46, Neg. LLF: 141.49379467113644
Iteration: 8, Func. Count: 53, Neg. LLF: 140.85277631568272
Iteration: 9, Func. Count: 59, Neg. LLF: 140.75183451728012
Iteration: 10, Func. Count: 65, Neg. LLF: 140.73127897680737
Iteration: 11, Func. Count: 71, Neg. LLF: 140.7289677737105
Iteration: 12, Func. Count: 77, Neg. LLF: 140.72887719716417
Iteration: 13, Func. Count: 82, Neg. LLF: 140.7288771971126
Optimization terminated successfully (Exit mode 0)
Current function value: 140.72887719716417
Iterations: 13
Function evaluations: 82
Gradient evaluations: 13
Iteration: 1, Func. Count: 8, Neg. LLF: 150.2857796669157
Iteration: 2, Func. Count: 17, Neg. LLF: 184.0800426710585
Iteration: 3, Func. Count: 25, Neg. LLF: 154.69317086439688
Iteration: 4, Func. Count: 33, Neg. LLF: 151.92285618228235
Iteration: 5, Func. Count: 41, Neg. LLF: 158.96867688330133
Iteration: 6, Func. Count: 49, Neg. LLF: 142.6988628887813
Iteration: 7, Func. Count: 57, Neg. LLF: 141.3933960698896
Iteration: 8, Func. Count: 64, Neg. LLF: 141.14417210392588
Iteration: 9, Func. Count: 71, Neg. LLF: 141.19819540535067
Iteration: 10, Func. Count: 79, Neg. LLF: 141.01873375550025
Iteration: 11, Func. Count: 86, Neg. LLF: 140.9264550681414
Iteration: 12, Func. Count: 93, Neg. LLF: 140.89243329228432
Iteration: 13, Func. Count: 100, Neg. LLF: 140.79360062727912
Iteration: 14, Func. Count: 107, Neg. LLF: 140.73403814161284
Iteration: 15, Func. Count: 114, Neg. LLF: 140.72908921544752
Iteration: 16, Func. Count: 121, Neg. LLF: 140.7288947420551
Iteration: 17, Func. Count: 128, Neg. LLF: 140.7288773342774
Iteration: 18, Func. Count: 135, Neg. LLF: 140.7288767047539
Optimization terminated successfully (Exit mode 0)
Current function value: 140.7288767047539
Iterations: 18
Function evaluations: 135
Gradient evaluations: 18
Iteration: 1, Func. Count: 9, Neg. LLF: 154.66692624784065
Iteration: 2, Func. Count: 19, Neg. LLF: 168.5919899306595
Iteration: 3, Func. Count: 29, Neg. LLF: 175.2563101063342
Iteration: 4, Func. Count: 38, Neg. LLF: 160.50861678102484
Iteration: 5, Func. Count: 47, Neg. LLF: 143.42708759131258
Iteration: 6, Func. Count: 56, Neg. LLF: 142.57223370901414
Iteration: 7, Func. Count: 64, Neg. LLF: 143.74457574007909
Iteration: 8, Func. Count: 73, Neg. LLF: 142.2788391011319
Iteration: 9, Func. Count: 82, Neg. LLF: 141.90572424554233
Iteration: 10, Func. Count: 90, Neg. LLF: 141.36304898150632
Iteration: 11, Func. Count: 98, Neg. LLF: 141.24026975952324
Iteration: 12, Func. Count: 106, Neg. LLF: 141.06305737219938
Iteration: 13, Func. Count: 114, Neg. LLF: 140.92180867523217
Iteration: 14, Func. Count: 122, Neg. LLF: 140.7965417589151
Iteration: 15, Func. Count: 130, Neg. LLF: 140.756451755069
Iteration: 16, Func. Count: 138, Neg. LLF: 140.73797828987514
Iteration: 17, Func. Count: 146, Neg. LLF: 140.72947245951852
Iteration: 18, Func. Count: 154, Neg. LLF: 140.72889898471402
Iteration: 19, Func. Count: 162, Neg. LLF: 140.72887752176746
Iteration: 20, Func. Count: 170, Neg. LLF: 140.72887669704488
Optimization terminated successfully (Exit mode 0)
Current function value: 140.72887669704488
Iterations: 20
Function evaluations: 170
Gradient evaluations: 20
Iteration: 1, Func. Count: 10, Neg. LLF: 191.43488604283465
Iteration: 2, Func. Count: 21, Neg. LLF: 161.24199523335162
Iteration: 3, Func. Count: 32, Neg. LLF: 194.32165772578517
Iteration: 4, Func. Count: 42, Neg. LLF: 156.89933344278435
Iteration: 5, Func. Count: 52, Neg. LLF: 144.43010026748553
Iteration: 6, Func. Count: 62, Neg. LLF: 146.43674608187456
Iteration: 7, Func. Count: 72, Neg. LLF: 142.44002437742702
Iteration: 8, Func. Count: 81, Neg. LLF: 142.01567005860514
Iteration: 9, Func. Count: 90, Neg. LLF: 141.33521419733574
Iteration: 10, Func. Count: 99, Neg. LLF: 141.04933999299357
Iteration: 11, Func. Count: 108, Neg. LLF: 140.9800467189892
Iteration: 12, Func. Count: 117, Neg. LLF: 140.829066032089
Iteration: 13, Func. Count: 126, Neg. LLF: 140.73935507103437
Iteration: 14, Func. Count: 135, Neg. LLF: 140.6036534482275
Iteration: 15, Func. Count: 144, Neg. LLF: 140.58430631784586
Iteration: 16, Func. Count: 153, Neg. LLF: 140.5810623758428
Iteration: 17, Func. Count: 162, Neg. LLF: 140.57946875675717
Iteration: 18, Func. Count: 171, Neg. LLF: 140.57737965347556
Iteration: 19, Func. Count: 180, Neg. LLF: 140.57631529037766
Iteration: 20, Func. Count: 189, Neg. LLF: 140.57604752590512
Iteration: 21, Func. Count: 198, Neg. LLF: 140.5760286547267
Iteration: 22, Func. Count: 206, Neg. LLF: 140.5760286332859
Optimization terminated successfully (Exit mode 0)
Current function value: 140.5760286547267
Iterations: 22
Function evaluations: 206
Gradient evaluations: 22
Iteration: 1, Func. Count: 11, Neg. LLF: 217.96396938039283
Iteration: 2, Func. Count: 22, Neg. LLF: 307.06628715286513
Iteration: 3, Func. Count: 33, Neg. LLF: 143.57919470182526
Iteration: 4, Func. Count: 44, Neg. LLF: 143.74549052469783
Iteration: 5, Func. Count: 55, Neg. LLF: 143.29991553785797
Iteration: 6, Func. Count: 66, Neg. LLF: 142.17326481690054
Iteration: 7, Func. Count: 76, Neg. LLF: 141.74966570515724
Iteration: 8, Func. Count: 86, Neg. LLF: 141.5575295175373
Iteration: 9, Func. Count: 96, Neg. LLF: 140.97691722968935
Iteration: 10, Func. Count: 106, Neg. LLF: 141.0335136342502
Iteration: 11, Func. Count: 117, Neg. LLF: 140.68461295487236
Iteration: 12, Func. Count: 127, Neg. LLF: 140.49223111948922
Iteration: 13, Func. Count: 137, Neg. LLF: 140.466226319061
Iteration: 14, Func. Count: 147, Neg. LLF: 140.4556956136857
Iteration: 15, Func. Count: 157, Neg. LLF: 140.43422142947333
Iteration: 16, Func. Count: 167, Neg. LLF: 140.42905523071997
Iteration: 17, Func. Count: 177, Neg. LLF: 140.4276845304172
Iteration: 18, Func. Count: 187, Neg. LLF: 140.42736603443933
Iteration: 19, Func. Count: 197, Neg. LLF: 140.42727297515452
Iteration: 20, Func. Count: 207, Neg. LLF: 140.42723757487983
Iteration: 21, Func. Count: 217, Neg. LLF: 140.42723548976022
Iteration: 22, Func. Count: 226, Neg. LLF: 140.42723546465947
Optimization terminated successfully (Exit mode 0)
Current function value: 140.42723548976022
Iterations: 22
Function evaluations: 226
Gradient evaluations: 22
Iteration: 1, Func. Count: 8, Neg. LLF: 154.04790190674282
Iteration: 2, Func. Count: 16, Neg. LLF: 150.3411444405842
Iteration: 3, Func. Count: 24, Neg. LLF: 153.61052613731044
Iteration: 4, Func. Count: 32, Neg. LLF: 144.8153104596419
Iteration: 5, Func. Count: 41, Neg. LLF: 143.00784590543003
Iteration: 6, Func. Count: 48, Neg. LLF: 141.57001077370558
Iteration: 7, Func. Count: 55, Neg. LLF: 141.75990529582128
Iteration: 8, Func. Count: 63, Neg. LLF: 140.63089849067148
Iteration: 9, Func. Count: 70, Neg. LLF: 140.59157581112774
Iteration: 10, Func. Count: 77, Neg. LLF: 140.55200744578153
Iteration: 11, Func. Count: 84, Neg. LLF: 140.54285437143017
Iteration: 12, Func. Count: 91, Neg. LLF: 140.5348061271996
Iteration: 13, Func. Count: 98, Neg. LLF: 140.53181752789502
Iteration: 14, Func. Count: 105, Neg. LLF: 140.52962772543174
Iteration: 15, Func. Count: 112, Neg. LLF: 140.52829353655127
Iteration: 16, Func. Count: 119, Neg. LLF: 140.52758324926594
Iteration: 17, Func. Count: 126, Neg. LLF: 140.52695243176046
Iteration: 18, Func. Count: 133, Neg. LLF: 140.52533262838233
Iteration: 19, Func. Count: 140, Neg. LLF: 140.5252894867024
Iteration: 20, Func. Count: 147, Neg. LLF: 140.52527955951342
Iteration: 21, Func. Count: 153, Neg. LLF: 140.52527955634324
Optimization terminated successfully (Exit mode 0)
Current function value: 140.52527955951342
Iterations: 21
Function evaluations: 153
Gradient evaluations: 21
Iteration: 1, Func. Count: 9, Neg. LLF: 170.13859075531536
Iteration: 2, Func. Count: 18, Neg. LLF: 155.9952223884556
Iteration: 3, Func. Count: 27, Neg. LLF: 170.05268988833896
Iteration: 4, Func. Count: 36, Neg. LLF: 155.53759481988584
Iteration: 5, Func. Count: 45, Neg. LLF: 156.98241861622827
Iteration: 6, Func. Count: 54, Neg. LLF: 146.0420401081581
Iteration: 7, Func. Count: 63, Neg. LLF: 145.00470305568328
Iteration: 8, Func. Count: 72, Neg. LLF: 143.89044253521874
Iteration: 9, Func. Count: 81, Neg. LLF: 143.24003473563346
Iteration: 10, Func. Count: 90, Neg. LLF: 142.82179890115404
Iteration: 11, Func. Count: 99, Neg. LLF: 142.5309720254831
Iteration: 12, Func. Count: 108, Neg. LLF: 142.09751565361407
Iteration: 13, Func. Count: 117, Neg. LLF: 140.77079758501188
Iteration: 14, Func. Count: 126, Neg. LLF: 141.78656763366516
Iteration: 15, Func. Count: 135, Neg. LLF: 140.34163459539937
Iteration: 16, Func. Count: 143, Neg. LLF: 140.33519702287177
Iteration: 17, Func. Count: 151, Neg. LLF: 140.30993847289596
Iteration: 18, Func. Count: 159, Neg. LLF: 140.30558218875515
Iteration: 19, Func. Count: 167, Neg. LLF: 140.30060979738687
Iteration: 20, Func. Count: 175, Neg. LLF: 140.2977529186823
Iteration: 21, Func. Count: 183, Neg. LLF: 140.29454807559216
Iteration: 22, Func. Count: 191, Neg. LLF: 140.2917645268949
Iteration: 23, Func. Count: 199, Neg. LLF: 140.2897843705768
Iteration: 24, Func. Count: 207, Neg. LLF: 140.28901223887314
Iteration: 25, Func. Count: 215, Neg. LLF: 140.28892426619737
Iteration: 26, Func. Count: 223, Neg. LLF: 140.2889074692853
Iteration: 27, Func. Count: 230, Neg. LLF: 140.28890746677408
Optimization terminated successfully (Exit mode 0)
Current function value: 140.2889074692853
Iterations: 27
Function evaluations: 230
Gradient evaluations: 27
Iteration: 1, Func. Count: 10, Neg. LLF: 154.65373056920737
Iteration: 2, Func. Count: 21, Neg. LLF: 177.172661961741
Iteration: 3, Func. Count: 31, Neg. LLF: 165.09230534264637
Iteration: 4, Func. Count: 41, Neg. LLF: 151.96563729481102
Iteration: 5, Func. Count: 51, Neg. LLF: 153.50401072781847
Iteration: 6, Func. Count: 61, Neg. LLF: 142.39047859369282
Iteration: 7, Func. Count: 71, Neg. LLF: 141.21354412702522
Iteration: 8, Func. Count: 80, Neg. LLF: 141.28686785974298
Iteration: 9, Func. Count: 90, Neg. LLF: 144.91244014008115
Iteration: 10, Func. Count: 102, Neg. LLF: 140.7364917630075
Iteration: 11, Func. Count: 111, Neg. LLF: 140.65795154638275
Iteration: 12, Func. Count: 120, Neg. LLF: 140.58581097848537
Iteration: 13, Func. Count: 129, Neg. LLF: 140.53893911570148
Iteration: 14, Func. Count: 138, Neg. LLF: 140.47869430363912
Iteration: 15, Func. Count: 147, Neg. LLF: 140.42515606557754
Iteration: 16, Func. Count: 156, Neg. LLF: 140.37579767419288
Iteration: 17, Func. Count: 165, Neg. LLF: 140.31967769416954
Iteration: 18, Func. Count: 174, Neg. LLF: 140.2988247177228
Iteration: 19, Func. Count: 183, Neg. LLF: 140.29093301317283
Iteration: 20, Func. Count: 192, Neg. LLF: 140.2896245676151
Iteration: 21, Func. Count: 201, Neg. LLF: 140.28900760719264
Iteration: 22, Func. Count: 210, Neg. LLF: 140.2889149351425
Iteration: 23, Func. Count: 219, Neg. LLF: 140.2889089389274
Iteration: 24, Func. Count: 228, Neg. LLF: 140.28890767589
Iteration: 25, Func. Count: 236, Neg. LLF: 140.2889077942196
Optimization terminated successfully (Exit mode 0)
Current function value: 140.28890767589
Iterations: 25
Function evaluations: 236
Gradient evaluations: 25
Iteration: 1, Func. Count: 11, Neg. LLF: 188.96918041212808
Iteration: 2, Func. Count: 23, Neg. LLF: 161.8934045782618
Iteration: 3, Func. Count: 35, Neg. LLF: 224.16653904900605
Iteration: 4, Func. Count: 46, Neg. LLF: 152.44045190834734
Iteration: 5, Func. Count: 57, Neg. LLF: 156.72761610616828
Iteration: 6, Func. Count: 68, Neg. LLF: 145.34903765432307
Iteration: 7, Func. Count: 79, Neg. LLF: 144.78555421181423
Iteration: 8, Func. Count: 90, Neg. LLF: 143.17528701703984
Iteration: 9, Func. Count: 101, Neg. LLF: 142.82967386884664
Iteration: 10, Func. Count: 112, Neg. LLF: 141.10642384253282
Iteration: 11, Func. Count: 122, Neg. LLF: 140.90053708182543
Iteration: 12, Func. Count: 132, Neg. LLF: 140.60422070505857
Iteration: 13, Func. Count: 142, Neg. LLF: 140.50313823690203
Iteration: 14, Func. Count: 152, Neg. LLF: 140.41582209767034
Iteration: 15, Func. Count: 162, Neg. LLF: 140.3288923786164
Iteration: 16, Func. Count: 172, Neg. LLF: 140.31007511163023
Iteration: 17, Func. Count: 182, Neg. LLF: 140.3020818458127
Iteration: 18, Func. Count: 192, Neg. LLF: 140.2931364431065
Iteration: 19, Func. Count: 202, Neg. LLF: 140.29009078682168
Iteration: 20, Func. Count: 212, Neg. LLF: 140.28923401531145
Iteration: 21, Func. Count: 222, Neg. LLF: 140.28893738635384
Iteration: 22, Func. Count: 232, Neg. LLF: 140.28891871142213
Iteration: 23, Func. Count: 242, Neg. LLF: 140.28891555811316
Iteration: 24, Func. Count: 252, Neg. LLF: 140.2889114307348
Iteration: 25, Func. Count: 262, Neg. LLF: 140.28890826005716
Iteration: 26, Func. Count: 272, Neg. LLF: 140.28890726428375
Optimization terminated successfully (Exit mode 0)
Current function value: 140.28890726428375
Iterations: 26
Function evaluations: 272
Gradient evaluations: 26
Iteration: 1, Func. Count: 12, Neg. LLF: 202.79173668112904
Iteration: 2, Func. Count: 24, Neg. LLF: 192.15976235200537
Iteration: 3, Func. Count: 36, Neg. LLF: 187.032114916047
Iteration: 4, Func. Count: 48, Neg. LLF: 143.85099384117376
Iteration: 5, Func. Count: 60, Neg. LLF: 142.08257941180273
Iteration: 6, Func. Count: 71, Neg. LLF: 149.16398520759006
Iteration: 7, Func. Count: 83, Neg. LLF: 141.450165297753
Iteration: 8, Func. Count: 94, Neg. LLF: 141.1095788594875
Iteration: 9, Func. Count: 105, Neg. LLF: 140.94130190588453
Iteration: 10, Func. Count: 116, Neg. LLF: 140.7633651680562
Iteration: 11, Func. Count: 127, Neg. LLF: 140.57470036468516
Iteration: 12, Func. Count: 138, Neg. LLF: 140.30757889524244
Iteration: 13, Func. Count: 149, Neg. LLF: 140.29244362259465
Iteration: 14, Func. Count: 160, Neg. LLF: 140.28959396944373
Iteration: 15, Func. Count: 171, Neg. LLF: 140.28917351619842
Iteration: 16, Func. Count: 182, Neg. LLF: 140.28900627840542
Iteration: 17, Func. Count: 193, Neg. LLF: 140.28895797272318
Iteration: 18, Func. Count: 204, Neg. LLF: 140.28892560368152
Iteration: 19, Func. Count: 215, Neg. LLF: 140.28891142085556
Iteration: 20, Func. Count: 226, Neg. LLF: 140.28890758588275
Iteration: 21, Func. Count: 236, Neg. LLF: 140.28890784771454
Optimization terminated successfully (Exit mode 0)
Current function value: 140.28890758588275
Iterations: 21
Function evaluations: 236
Gradient evaluations: 21
Iteration: 1, Func. Count: 5, Neg. LLF: 147.49381933036585
Iteration: 2, Func. Count: 9, Neg. LLF: 151.73532809875846
Iteration: 3, Func. Count: 14, Neg. LLF: 146.74011901758863
Iteration: 4, Func. Count: 18, Neg. LLF: 145.34213718423143
Iteration: 5, Func. Count: 22, Neg. LLF: 870.7958347682934
Iteration: 6, Func. Count: 27, Neg. LLF: 35724.36474514202
Iteration: 7, Func. Count: 32, Neg. LLF: 145.88857514453494
Iteration: 8, Func. Count: 37, Neg. LLF: 144.13649083312848
Iteration: 9, Func. Count: 41, Neg. LLF: 144.08710037271788
Iteration: 10, Func. Count: 45, Neg. LLF: 144.0847433252557
Iteration: 11, Func. Count: 49, Neg. LLF: 144.0846476449442
Iteration: 12, Func. Count: 53, Neg. LLF: 144.08459490322926
Iteration: 13, Func. Count: 56, Neg. LLF: 144.08459496748816
Optimization terminated successfully (Exit mode 0)
Current function value: 144.08459490322926
Iterations: 13
Function evaluations: 56
Gradient evaluations: 13
Iteration: 1, Func. Count: 6, Neg. LLF: 154.54535741909447
Iteration: 2, Func. Count: 12, Neg. LLF: 175.54615290730018
Iteration: 3, Func. Count: 18, Neg. LLF: 174.29123421831656
Iteration: 4, Func. Count: 24, Neg. LLF: 177.4979097505192
Iteration: 5, Func. Count: 30, Neg. LLF: 168.56715115691838
Iteration: 6, Func. Count: 36, Neg. LLF: 171.22247847229224
Iteration: 7, Func. Count: 42, Neg. LLF: 145.2457895733732
Iteration: 8, Func. Count: 48, Neg. LLF: 140.50648415606383
Iteration: 9, Func. Count: 54, Neg. LLF: 140.1352612556776
Iteration: 10, Func. Count: 59, Neg. LLF: 140.12978302216143
Iteration: 11, Func. Count: 64, Neg. LLF: 140.12836659571025
Iteration: 12, Func. Count: 69, Neg. LLF: 140.1282681272804
Iteration: 13, Func. Count: 74, Neg. LLF: 140.12825074052486
Iteration: 14, Func. Count: 78, Neg. LLF: 140.12825056590512
Optimization terminated successfully (Exit mode 0)
Current function value: 140.12825074052486
Iterations: 14
Function evaluations: 78
Gradient evaluations: 14
Iteration: 1, Func. Count: 7, Neg. LLF: 148.18288247669582
Iteration: 2, Func. Count: 14, Neg. LLF: 174.64055252967742
Iteration: 3, Func. Count: 21, Neg. LLF: 162.27687846194155
Iteration: 4, Func. Count: 28, Neg. LLF: 142.7696770232042
Iteration: 5, Func. Count: 35, Neg. LLF: 140.14434169964755
Iteration: 6, Func. Count: 41, Neg. LLF: 140.14377858405643
Iteration: 7, Func. Count: 48, Neg. LLF: 140.1297826727127
Iteration: 8, Func. Count: 54, Neg. LLF: 140.1284892782124
Iteration: 9, Func. Count: 60, Neg. LLF: 140.12826838831853
Iteration: 10, Func. Count: 66, Neg. LLF: 140.12825083956267
Iteration: 11, Func. Count: 71, Neg. LLF: 140.12825075853186
Optimization terminated successfully (Exit mode 0)
Current function value: 140.12825083956267
Iterations: 11
Function evaluations: 71
Gradient evaluations: 11
Iteration: 1, Func. Count: 8, Neg. LLF: 147.9071975473769
Iteration: 2, Func. Count: 16, Neg. LLF: 179.20276457352534
Iteration: 3, Func. Count: 24, Neg. LLF: 241.42071786128895
Iteration: 4, Func. Count: 32, Neg. LLF: 141.03365048405956
Iteration: 5, Func. Count: 39, Neg. LLF: 140.60293310138036
Iteration: 6, Func. Count: 47, Neg. LLF: 161.9924530856218
Iteration: 7, Func. Count: 56, Neg. LLF: 140.105306782508
Iteration: 8, Func. Count: 63, Neg. LLF: 140.10316783302602
Iteration: 9, Func. Count: 70, Neg. LLF: 140.10291602660774
Iteration: 10, Func. Count: 77, Neg. LLF: 140.1024676120978
Iteration: 11, Func. Count: 84, Neg. LLF: 140.10211447746792
Iteration: 12, Func. Count: 91, Neg. LLF: 140.10196854058557
Iteration: 13, Func. Count: 98, Neg. LLF: 140.1019523467406
Iteration: 14, Func. Count: 105, Neg. LLF: 140.1019516045969
Optimization terminated successfully (Exit mode 0)
Current function value: 140.1019516045969
Iterations: 14
Function evaluations: 105
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 161.38840168634994
Iteration: 2, Func. Count: 18, Neg. LLF: 166.66615470649052
Iteration: 3, Func. Count: 27, Neg. LLF: 140.57493147796959
Iteration: 4, Func. Count: 35, Neg. LLF: 143.40210611605164
Iteration: 5, Func. Count: 44, Neg. LLF: 142.34627361599695
Iteration: 6, Func. Count: 53, Neg. LLF: 140.09844219361614
Iteration: 7, Func. Count: 61, Neg. LLF: 143.26037369939755
Iteration: 8, Func. Count: 70, Neg. LLF: 140.10642088505625
Iteration: 9, Func. Count: 81, Neg. LLF: 139.83818540380386
Iteration: 10, Func. Count: 90, Neg. LLF: 139.68514089349966
Iteration: 11, Func. Count: 98, Neg. LLF: 139.67405858136792
Iteration: 12, Func. Count: 106, Neg. LLF: 139.67337965538533
Iteration: 13, Func. Count: 114, Neg. LLF: 139.6731775993311
Iteration: 14, Func. Count: 122, Neg. LLF: 139.67317101312736
Iteration: 15, Func. Count: 130, Neg. LLF: 139.6731703890598
Optimization terminated successfully (Exit mode 0)
Current function value: 139.6731703890598
Iterations: 15
Function evaluations: 130
Gradient evaluations: 15
Iteration: 1, Func. Count: 6, Neg. LLF: 149.14229548246863
Iteration: 2, Func. Count: 12, Neg. LLF: 148.05265117039326
Iteration: 3, Func. Count: 18, Neg. LLF: 146.05696191261427
Iteration: 4, Func. Count: 24, Neg. LLF: 144.7291585971066
Iteration: 5, Func. Count: 29, Neg. LLF: 144.766189772628
Iteration: 6, Func. Count: 35, Neg. LLF: 143.69273454581287
Iteration: 7, Func. Count: 40, Neg. LLF: 143.41808372998204
Iteration: 8, Func. Count: 45, Neg. LLF: 142.96980257214653
Iteration: 9, Func. Count: 50, Neg. LLF: 142.87406090182142
Iteration: 10, Func. Count: 55, Neg. LLF: 142.842269579592
Iteration: 11, Func. Count: 60, Neg. LLF: 142.83915625254832
Iteration: 12, Func. Count: 65, Neg. LLF: 142.83870748787606
Iteration: 13, Func. Count: 70, Neg. LLF: 142.83867372738843
Iteration: 14, Func. Count: 75, Neg. LLF: 142.8386732411071
Optimization terminated successfully (Exit mode 0)
Current function value: 142.8386732411071
Iterations: 14
Function evaluations: 75
Gradient evaluations: 14
Iteration: 1, Func. Count: 7, Neg. LLF: 148.08078258802578
Iteration: 2, Func. Count: 14, Neg. LLF: 183.93450891915663
Iteration: 3, Func. Count: 21, Neg. LLF: 148.08409017183624
Iteration: 4, Func. Count: 28, Neg. LLF: 151.40175469208512
Iteration: 5, Func. Count: 35, Neg. LLF: 140.01762987560872
Iteration: 6, Func. Count: 42, Neg. LLF: 138.8190350245372
Iteration: 7, Func. Count: 48, Neg. LLF: 138.827232983652
Iteration: 8, Func. Count: 55, Neg. LLF: 138.76066226631818
Iteration: 9, Func. Count: 61, Neg. LLF: 138.74864599092177
Iteration: 10, Func. Count: 67, Neg. LLF: 138.74584829401107
Iteration: 11, Func. Count: 73, Neg. LLF: 138.7457763852618
Iteration: 12, Func. Count: 79, Neg. LLF: 138.74577441956768
Iteration: 13, Func. Count: 84, Neg. LLF: 138.74577429817538
Optimization terminated successfully (Exit mode 0)
Current function value: 138.74577441956768
Iterations: 13
Function evaluations: 84
Gradient evaluations: 13
Iteration: 1, Func. Count: 8, Neg. LLF: 232.88766217709303
Iteration: 2, Func. Count: 16, Neg. LLF: 148.42270282827704
Iteration: 3, Func. Count: 24, Neg. LLF: 155.2422533977593
Iteration: 4, Func. Count: 32, Neg. LLF: 185.81797846843276
Iteration: 5, Func. Count: 40, Neg. LLF: 158.678408829762
Iteration: 6, Func. Count: 48, Neg. LLF: 172.86918689454305
Iteration: 7, Func. Count: 56, Neg. LLF: 139.09079250643077
Iteration: 8, Func. Count: 63, Neg. LLF: 139.25505604141514
Iteration: 9, Func. Count: 71, Neg. LLF: 138.77270579755046
Iteration: 10, Func. Count: 78, Neg. LLF: 138.75264926864023
Iteration: 11, Func. Count: 85, Neg. LLF: 138.74928885472153
Iteration: 12, Func. Count: 92, Neg. LLF: 138.74653666029468
Iteration: 13, Func. Count: 99, Neg. LLF: 138.74589389413086
Iteration: 14, Func. Count: 106, Neg. LLF: 138.7457765844999
Iteration: 15, Func. Count: 113, Neg. LLF: 138.74577449136257
Iteration: 16, Func. Count: 119, Neg. LLF: 138.74577447771287
Optimization terminated successfully (Exit mode 0)
Current function value: 138.74577449136257
Iterations: 16
Function evaluations: 119
Gradient evaluations: 16
Iteration: 1, Func. Count: 9, Neg. LLF: 220.71666127675206
Iteration: 2, Func. Count: 18, Neg. LLF: 148.06278418737344
Iteration: 3, Func. Count: 27, Neg. LLF: 153.26319800796162
Iteration: 4, Func. Count: 36, Neg. LLF: 156.66773041642554
Iteration: 5, Func. Count: 45, Neg. LLF: 139.33191839417873
Iteration: 6, Func. Count: 53, Neg. LLF: 906.0530256806387
Iteration: 7, Func. Count: 63, Neg. LLF: 167.0660214355156
Iteration: 8, Func. Count: 73, Neg. LLF: 139.0869131886369
Iteration: 9, Func. Count: 82, Neg. LLF: 138.88101329064068
Iteration: 10, Func. Count: 91, Neg. LLF: 138.7095324961322
Iteration: 11, Func. Count: 99, Neg. LLF: 138.70715191115903
Iteration: 12, Func. Count: 107, Neg. LLF: 138.70678886823043
Iteration: 13, Func. Count: 115, Neg. LLF: 138.7063589694468
Iteration: 14, Func. Count: 123, Neg. LLF: 138.70621768216927
Iteration: 15, Func. Count: 131, Neg. LLF: 138.70595845068337
Iteration: 16, Func. Count: 139, Neg. LLF: 138.70588902552433
Iteration: 17, Func. Count: 147, Neg. LLF: 138.70588150457473
Iteration: 18, Func. Count: 154, Neg. LLF: 138.70588138369712
Optimization terminated successfully (Exit mode 0)
Current function value: 138.70588150457473
Iterations: 18
Function evaluations: 154
Gradient evaluations: 18
Iteration: 1, Func. Count: 10, Neg. LLF: 216.87296221147284
Iteration: 2, Func. Count: 20, Neg. LLF: 147.88656329060964
Iteration: 3, Func. Count: 30, Neg. LLF: 152.32502034460754
Iteration: 4, Func. Count: 40, Neg. LLF: 156.1739717896889
Iteration: 5, Func. Count: 50, Neg. LLF: 139.4539059448245
Iteration: 6, Func. Count: 59, Neg. LLF: 695.8309557416189
Iteration: 7, Func. Count: 69, Neg. LLF: 159.91747411188433
Iteration: 8, Func. Count: 80, Neg. LLF: 141.55998456821544
Iteration: 9, Func. Count: 90, Neg. LLF: 138.38810010430484
Iteration: 10, Func. Count: 99, Neg. LLF: 139.12691001526355
Iteration: 11, Func. Count: 109, Neg. LLF: 138.33250989287325
Iteration: 12, Func. Count: 118, Neg. LLF: 138.32633385126434
Iteration: 13, Func. Count: 127, Neg. LLF: 138.32484892013002
Iteration: 14, Func. Count: 136, Neg. LLF: 138.3242687621638
Iteration: 15, Func. Count: 145, Neg. LLF: 138.3242192352448
Iteration: 16, Func. Count: 154, Neg. LLF: 138.32421479031245
Iteration: 17, Func. Count: 163, Neg. LLF: 138.32421358871355
Iteration: 18, Func. Count: 171, Neg. LLF: 138.3242134613423
Optimization terminated successfully (Exit mode 0)
Current function value: 138.32421358871355
Iterations: 18
Function evaluations: 171
Gradient evaluations: 18
Iteration: 1, Func. Count: 7, Neg. LLF: 154.36002505630756
Iteration: 2, Func. Count: 14, Neg. LLF: 145.20447230589184
Iteration: 3, Func. Count: 21, Neg. LLF: 151.72050115753768
Iteration: 4, Func. Count: 28, Neg. LLF: 144.41561001738216
Iteration: 5, Func. Count: 34, Neg. LLF: 142.7195845179986
Iteration: 6, Func. Count: 40, Neg. LLF: 141.20465790966318
Iteration: 7, Func. Count: 46, Neg. LLF: 398.6136575035207
Iteration: 8, Func. Count: 53, Neg. LLF: 425.0114590467431
Iteration: 9, Func. Count: 60, Neg. LLF: 715.7708745816795
Iteration: 10, Func. Count: 67, Neg. LLF: 10292.919714952215
Iteration: 11, Func. Count: 74, Neg. LLF: 362.4423737266951
Iteration: 12, Func. Count: 81, Neg. LLF: 148.43671992352878
Iteration: 13, Func. Count: 88, Neg. LLF: 139.96245221758835
Iteration: 14, Func. Count: 95, Neg. LLF: 138.29454152878031
Iteration: 15, Func. Count: 101, Neg. LLF: 138.07760895748243
Iteration: 16, Func. Count: 107, Neg. LLF: 137.93057273462384
Iteration: 17, Func. Count: 113, Neg. LLF: 137.723220295116
Iteration: 18, Func. Count: 119, Neg. LLF: 137.56150356339714
Iteration: 19, Func. Count: 125, Neg. LLF: 137.4733311678247
Iteration: 20, Func. Count: 131, Neg. LLF: 137.46194754419295
Iteration: 21, Func. Count: 137, Neg. LLF: 137.4610836679548
Iteration: 22, Func. Count: 143, Neg. LLF: 137.4610637122425
Iteration: 23, Func. Count: 149, Neg. LLF: 137.46106248083413
Iteration: 24, Func. Count: 154, Neg. LLF: 137.4610624226281
Optimization terminated successfully (Exit mode 0)
Current function value: 137.46106248083413
Iterations: 24
Function evaluations: 154
Gradient evaluations: 24
Iteration: 1, Func. Count: 8, Neg. LLF: 147.73705558296592
Iteration: 2, Func. Count: 16, Neg. LLF: 184.88773832009065
Iteration: 3, Func. Count: 24, Neg. LLF: 149.57878075064343
Iteration: 4, Func. Count: 32, Neg. LLF: 152.02154265111383
Iteration: 5, Func. Count: 40, Neg. LLF: 138.52226704565024
Iteration: 6, Func. Count: 47, Neg. LLF: 137.57848756182892
Iteration: 7, Func. Count: 54, Neg. LLF: 137.54069285386117
Iteration: 8, Func. Count: 61, Neg. LLF: 137.48281386543815
Iteration: 9, Func. Count: 68, Neg. LLF: 137.46326957659832
Iteration: 10, Func. Count: 75, Neg. LLF: 137.4613037505674
Iteration: 11, Func. Count: 82, Neg. LLF: 137.46109146655087
Iteration: 12, Func. Count: 89, Neg. LLF: 137.46106258140628
Iteration: 13, Func. Count: 95, Neg. LLF: 137.46106255758477
Optimization terminated successfully (Exit mode 0)
Current function value: 137.46106258140628
Iterations: 13
Function evaluations: 95
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 159.81076647038662
Iteration: 2, Func. Count: 18, Neg. LLF: 147.77029418562353
Iteration: 3, Func. Count: 27, Neg. LLF: 149.95008393069847
Iteration: 4, Func. Count: 36, Neg. LLF: 138.06620659726698
Iteration: 5, Func. Count: 44, Neg. LLF: 138.0635466059122
Iteration: 6, Func. Count: 53, Neg. LLF: 138.2772007979986
Iteration: 7, Func. Count: 62, Neg. LLF: 137.47756518582185
Iteration: 8, Func. Count: 70, Neg. LLF: 137.46190096104317
Iteration: 9, Func. Count: 78, Neg. LLF: 137.46122554253517
Iteration: 10, Func. Count: 86, Neg. LLF: 137.4610627696686
Iteration: 11, Func. Count: 93, Neg. LLF: 137.46106295973658
Optimization terminated successfully (Exit mode 0)
Current function value: 137.4610627696686
Iterations: 11
Function evaluations: 93
Gradient evaluations: 11
Iteration: 1, Func. Count: 10, Neg. LLF: 228.3105239166469
Iteration: 2, Func. Count: 20, Neg. LLF: 146.24667698270653
Iteration: 3, Func. Count: 30, Neg. LLF: 153.49366500326636
Iteration: 4, Func. Count: 40, Neg. LLF: 7569.717755156119
Iteration: 5, Func. Count: 50, Neg. LLF: 138.7391574344403
Iteration: 6, Func. Count: 59, Neg. LLF: 200.77201392729282
Iteration: 7, Func. Count: 71, Neg. LLF: 183.1317094068715
Iteration: 8, Func. Count: 83, Neg. LLF: 142.7282207276053
Iteration: 9, Func. Count: 93, Neg. LLF: 137.4055681898084
Iteration: 10, Func. Count: 102, Neg. LLF: 137.3505421589297
Iteration: 11, Func. Count: 111, Neg. LLF: 137.3466764201517
Iteration: 12, Func. Count: 120, Neg. LLF: 137.343102994875
Iteration: 13, Func. Count: 129, Neg. LLF: 137.33987159357855
Iteration: 14, Func. Count: 138, Neg. LLF: 137.33832198170296
Iteration: 15, Func. Count: 147, Neg. LLF: 137.33778000827402
Iteration: 16, Func. Count: 156, Neg. LLF: 137.33769038131544
Iteration: 17, Func. Count: 165, Neg. LLF: 137.33768011703728
Iteration: 18, Func. Count: 174, Neg. LLF: 137.33767848147585
Iteration: 19, Func. Count: 182, Neg. LLF: 137.3376783605181
Optimization terminated successfully (Exit mode 0)
Current function value: 137.33767848147585
Iterations: 19
Function evaluations: 182
Gradient evaluations: 19
Iteration: 1, Func. Count: 11, Neg. LLF: 224.5864582814594
Iteration: 2, Func. Count: 22, Neg. LLF: 147.14618241498283
Iteration: 3, Func. Count: 33, Neg. LLF: 151.3088650845488
Iteration: 4, Func. Count: 44, Neg. LLF: 7399.34690083395
Iteration: 5, Func. Count: 55, Neg. LLF: 155.87772588802108
Iteration: 6, Func. Count: 66, Neg. LLF: 152.12755027449387
Iteration: 7, Func. Count: 77, Neg. LLF: 138.95147214467315
Iteration: 8, Func. Count: 87, Neg. LLF: 155.8268024833822
Iteration: 9, Func. Count: 99, Neg. LLF: 5446.902043093189
Iteration: 10, Func. Count: 110, Neg. LLF: 137.93507209249674
Iteration: 11, Func. Count: 121, Neg. LLF: 137.49748555273752
Iteration: 12, Func. Count: 132, Neg. LLF: 138.1562108824357
Iteration: 13, Func. Count: 143, Neg. LLF: 136.81090714873784
Iteration: 14, Func. Count: 153, Neg. LLF: 136.76098527617614
Iteration: 15, Func. Count: 163, Neg. LLF: 136.73596025510267
Iteration: 16, Func. Count: 173, Neg. LLF: 136.7337738609934
Iteration: 17, Func. Count: 183, Neg. LLF: 136.73344423824483
Iteration: 18, Func. Count: 193, Neg. LLF: 136.73342203180093
Iteration: 19, Func. Count: 203, Neg. LLF: 136.7334087733679
Iteration: 20, Func. Count: 213, Neg. LLF: 136.73340728193378
Iteration: 21, Func. Count: 222, Neg. LLF: 136.73340715610382
Optimization terminated successfully (Exit mode 0)
Current function value: 136.73340728193378
Iterations: 21
Function evaluations: 222
Gradient evaluations: 21
Iteration: 1, Func. Count: 8, Neg. LLF: 154.37720490800064
Iteration: 2, Func. Count: 16, Neg. LLF: 145.6479878403618
Iteration: 3, Func. Count: 24, Neg. LLF: 153.6530935542757
Iteration: 4, Func. Count: 32, Neg. LLF: 144.36559049093808
Iteration: 5, Func. Count: 39, Neg. LLF: 143.21654865372167
Iteration: 6, Func. Count: 46, Neg. LLF: 141.97398774898102
Iteration: 7, Func. Count: 53, Neg. LLF: 199.03308753657637
Iteration: 8, Func. Count: 61, Neg. LLF: 2631.3134759568316
Iteration: 9, Func. Count: 69, Neg. LLF: 5292.510642983047
Iteration: 10, Func. Count: 77, Neg. LLF: 1579.2218853587485
Iteration: 11, Func. Count: 85, Neg. LLF: 190.6859851258424
Iteration: 12, Func. Count: 93, Neg. LLF: 337.7143015656325
Iteration: 13, Func. Count: 101, Neg. LLF: 181.23431402009516
Iteration: 14, Func. Count: 109, Neg. LLF: 865.7429818093997
Iteration: 15, Func. Count: 117, Neg. LLF: 139.77383318230153
Iteration: 16, Func. Count: 125, Neg. LLF: 138.28614867204854
Iteration: 17, Func. Count: 132, Neg. LLF: 138.06681110611808
Iteration: 18, Func. Count: 139, Neg. LLF: 137.90340759666128
Iteration: 19, Func. Count: 146, Neg. LLF: 138.1931261517647
Iteration: 20, Func. Count: 154, Neg. LLF: 137.9486406594153
Iteration: 21, Func. Count: 162, Neg. LLF: 137.39173445826583
Iteration: 22, Func. Count: 169, Neg. LLF: 137.3719136545053
Iteration: 23, Func. Count: 176, Neg. LLF: 137.3658010245194
Iteration: 24, Func. Count: 183, Neg. LLF: 137.3654084144288
Iteration: 25, Func. Count: 190, Neg. LLF: 137.36537252968293
Iteration: 26, Func. Count: 197, Neg. LLF: 137.36537194430062
Optimization terminated successfully (Exit mode 0)
Current function value: 137.36537194430062
Iterations: 26
Function evaluations: 197
Gradient evaluations: 26
Iteration: 1, Func. Count: 9, Neg. LLF: 145.43908654313464
Iteration: 2, Func. Count: 18, Neg. LLF: 185.1824326271902
Iteration: 3, Func. Count: 27, Neg. LLF: 147.91266005019355
Iteration: 4, Func. Count: 36, Neg. LLF: 138.05510790412086
Iteration: 5, Func. Count: 44, Neg. LLF: 146.81913144780663
Iteration: 6, Func. Count: 53, Neg. LLF: 150.22812745729382
Iteration: 7, Func. Count: 63, Neg. LLF: 137.48146286079137
Iteration: 8, Func. Count: 71, Neg. LLF: 137.37728373230442
Iteration: 9, Func. Count: 79, Neg. LLF: 137.368519653613
Iteration: 10, Func. Count: 87, Neg. LLF: 137.36614339330023
Iteration: 11, Func. Count: 95, Neg. LLF: 137.36550121841088
Iteration: 12, Func. Count: 103, Neg. LLF: 137.36537538182193
Iteration: 13, Func. Count: 111, Neg. LLF: 137.3653719501529
Iteration: 14, Func. Count: 118, Neg. LLF: 137.36537196210227
Optimization terminated successfully (Exit mode 0)
Current function value: 137.3653719501529
Iterations: 14
Function evaluations: 118
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 156.5985850715196
Iteration: 2, Func. Count: 20, Neg. LLF: 148.15932436467236
Iteration: 3, Func. Count: 30, Neg. LLF: 149.5579622457649
Iteration: 4, Func. Count: 40, Neg. LLF: 137.9542389925514
Iteration: 5, Func. Count: 49, Neg. LLF: 137.62890272597681
Iteration: 6, Func. Count: 58, Neg. LLF: 137.87883900252208
Iteration: 7, Func. Count: 68, Neg. LLF: 166.52560115090895
Iteration: 8, Func. Count: 79, Neg. LLF: 137.37373044266803
Iteration: 9, Func. Count: 88, Neg. LLF: 137.36657879276572
Iteration: 10, Func. Count: 97, Neg. LLF: 137.36571143007782
Iteration: 11, Func. Count: 106, Neg. LLF: 137.36537402612115
Iteration: 12, Func. Count: 115, Neg. LLF: 137.36537202214038
Iteration: 13, Func. Count: 123, Neg. LLF: 137.3653723126548
Optimization terminated successfully (Exit mode 0)
Current function value: 137.36537202214038
Iterations: 13
Function evaluations: 123
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 222.0773323176496
Iteration: 2, Func. Count: 22, Neg. LLF: 147.1427078055826
Iteration: 3, Func. Count: 33, Neg. LLF: 151.57115693248704
Iteration: 4, Func. Count: 44, Neg. LLF: 543.6987455583035
Iteration: 5, Func. Count: 55, Neg. LLF: 140.9749548763629
Iteration: 6, Func. Count: 66, Neg. LLF: 85717.75658756976
Iteration: 7, Func. Count: 77, Neg. LLF: 137.7216094152624
Iteration: 8, Func. Count: 87, Neg. LLF: 140.29237093845452
Iteration: 9, Func. Count: 99, Neg. LLF: 139.99127783771794
Iteration: 10, Func. Count: 111, Neg. LLF: 168.83806170540834
Iteration: 11, Func. Count: 122, Neg. LLF: 137.30008004853428
Iteration: 12, Func. Count: 132, Neg. LLF: 137.26490073418248
Iteration: 13, Func. Count: 142, Neg. LLF: 137.25912796783817
Iteration: 14, Func. Count: 152, Neg. LLF: 137.25793271661797
Iteration: 15, Func. Count: 162, Neg. LLF: 137.25768331361695
Iteration: 16, Func. Count: 172, Neg. LLF: 137.2576769134763
Iteration: 17, Func. Count: 182, Neg. LLF: 137.25767580109715
Iteration: 18, Func. Count: 191, Neg. LLF: 137.25767568431132
Optimization terminated successfully (Exit mode 0)
Current function value: 137.25767580109715
Iterations: 18
Function evaluations: 191
Gradient evaluations: 18
Iteration: 1, Func. Count: 12, Neg. LLF: 219.26884025579196
Iteration: 2, Func. Count: 24, Neg. LLF: 151.7321576944743
Iteration: 3, Func. Count: 36, Neg. LLF: 148.95679071825336
Iteration: 4, Func. Count: 48, Neg. LLF: 166.24376584379976
Iteration: 5, Func. Count: 60, Neg. LLF: 152.1612676268726
Iteration: 6, Func. Count: 72, Neg. LLF: 239.45336137118457
Iteration: 7, Func. Count: 84, Neg. LLF: 139.94581645191803
Iteration: 8, Func. Count: 96, Neg. LLF: 143.90792296281816
Iteration: 9, Func. Count: 108, Neg. LLF: 139.1358311811006
Iteration: 10, Func. Count: 120, Neg. LLF: 137.27283362747426
Iteration: 11, Func. Count: 131, Neg. LLF: 137.0800571689448
Iteration: 12, Func. Count: 142, Neg. LLF: 136.91412163151108
Iteration: 13, Func. Count: 153, Neg. LLF: 136.7743477842421
Iteration: 14, Func. Count: 164, Neg. LLF: 136.7398705532358
Iteration: 15, Func. Count: 175, Neg. LLF: 136.73376389222946
Iteration: 16, Func. Count: 186, Neg. LLF: 136.73343167296073
Iteration: 17, Func. Count: 197, Neg. LLF: 136.7334095194201
Iteration: 18, Func. Count: 208, Neg. LLF: 136.73340706542277
Iteration: 19, Func. Count: 218, Neg. LLF: 136.73340693960006
Optimization terminated successfully (Exit mode 0)
Current function value: 136.73340706542277
Iterations: 19
Function evaluations: 218
Gradient evaluations: 19
Iteration: 1, Func. Count: 9, Neg. LLF: 158.00131825656442
Iteration: 2, Func. Count: 18, Neg. LLF: 178.3342927752267
Iteration: 3, Func. Count: 27, Neg. LLF: 145.4409823537854
Iteration: 4, Func. Count: 37, Neg. LLF: 141.10968487896673
Iteration: 5, Func. Count: 47, Neg. LLF: 140.94740726673447
Iteration: 6, Func. Count: 56, Neg. LLF: 139.6892815845727
Iteration: 7, Func. Count: 64, Neg. LLF: 142.52114186978764
Iteration: 8, Func. Count: 73, Neg. LLF: 193.56468061356384
Iteration: 9, Func. Count: 82, Neg. LLF: 36359.77996311152
Iteration: 10, Func. Count: 91, Neg. LLF: 739.4442062225364
Iteration: 11, Func. Count: 100, Neg. LLF: 162.4552968538764
Iteration: 12, Func. Count: 109, Neg. LLF: 138.1363688206833
Iteration: 13, Func. Count: 118, Neg. LLF: 136.98518474419308
Iteration: 14, Func. Count: 126, Neg. LLF: 136.93182146141731
Iteration: 15, Func. Count: 134, Neg. LLF: 136.88449078588943
Iteration: 16, Func. Count: 142, Neg. LLF: 136.87304125033324
Iteration: 17, Func. Count: 150, Neg. LLF: 136.8717773569548
Iteration: 18, Func. Count: 158, Neg. LLF: 136.87148063255782
Iteration: 19, Func. Count: 166, Neg. LLF: 136.871396642058
Iteration: 20, Func. Count: 174, Neg. LLF: 136.8713895485673
Iteration: 21, Func. Count: 182, Neg. LLF: 136.87138671440377
Iteration: 22, Func. Count: 190, Neg. LLF: 136.87138580841253
Optimization terminated successfully (Exit mode 0)
Current function value: 136.87138580841253
Iterations: 22
Function evaluations: 190
Gradient evaluations: 22
Iteration: 1, Func. Count: 10, Neg. LLF: 224.82203096449956
Iteration: 2, Func. Count: 20, Neg. LLF: 149.21439606810978
Iteration: 3, Func. Count: 30, Neg. LLF: 138.77981612131362
Iteration: 4, Func. Count: 39, Neg. LLF: 148.8748766957944
Iteration: 5, Func. Count: 49, Neg. LLF: 147.265431430184
Iteration: 6, Func. Count: 61, Neg. LLF: 137.72114520626047
Iteration: 7, Func. Count: 71, Neg. LLF: 138.24207332737333
Iteration: 8, Func. Count: 81, Neg. LLF: 136.89038567193063
Iteration: 9, Func. Count: 90, Neg. LLF: 136.77729410572357
Iteration: 10, Func. Count: 99, Neg. LLF: 136.74855688062095
Iteration: 11, Func. Count: 108, Neg. LLF: 136.74123140577905
Iteration: 12, Func. Count: 117, Neg. LLF: 136.73616259182944
Iteration: 13, Func. Count: 126, Neg. LLF: 136.7338491186575
Iteration: 14, Func. Count: 135, Neg. LLF: 136.7328438131707
Iteration: 15, Func. Count: 144, Neg. LLF: 136.72023452922986
Iteration: 16, Func. Count: 153, Neg. LLF: 136.65943129108328
Iteration: 17, Func. Count: 162, Neg. LLF: 136.65851003855587
Iteration: 18, Func. Count: 171, Neg. LLF: 136.65825092112433
Iteration: 19, Func. Count: 180, Neg. LLF: 136.65807323305822
Iteration: 20, Func. Count: 189, Neg. LLF: 136.65816223602155
Iteration: 21, Func. Count: 198, Neg. LLF: 136.65815649302667
Iteration: 22, Func. Count: 207, Neg. LLF: 136.6587370376111
Iteration: 23, Func. Count: 218, Neg. LLF: 136.66193684257112
Iteration: 24, Func. Count: 229, Neg. LLF: 136.6582001618377
Iteration: 25, Func. Count: 239, Neg. LLF: 136.6581599445146
Iteration: 26, Func. Count: 247, Neg. LLF: 136.65815986976537
Optimization terminated successfully (Exit mode 0)
Current function value: 136.6581599445146
Iterations: 27
Function evaluations: 247
Gradient evaluations: 26
Iteration: 1, Func. Count: 11, Neg. LLF: 215.66120481299473
Iteration: 2, Func. Count: 22, Neg. LLF: 146.80596117954795
Iteration: 3, Func. Count: 33, Neg. LLF: 138.6439425784547
Iteration: 4, Func. Count: 43, Neg. LLF: 142.83808673958242
Iteration: 5, Func. Count: 54, Neg. LLF: 150.45881516664173
Iteration: 6, Func. Count: 68, Neg. LLF: 144.8288486915785
Iteration: 7, Func. Count: 79, Neg. LLF: 136.81704597823165
Iteration: 8, Func. Count: 89, Neg. LLF: 136.83104258135714
Iteration: 9, Func. Count: 100, Neg. LLF: 136.74647137312104
Iteration: 10, Func. Count: 110, Neg. LLF: 136.73253050194845
Iteration: 11, Func. Count: 120, Neg. LLF: 136.7315497531953
Iteration: 12, Func. Count: 130, Neg. LLF: 136.72969908553299
Iteration: 13, Func. Count: 140, Neg. LLF: 136.67068106829763
Iteration: 14, Func. Count: 150, Neg. LLF: 136.6664144609541
Iteration: 15, Func. Count: 160, Neg. LLF: 136.65918707908693
Iteration: 16, Func. Count: 170, Neg. LLF: 136.65841721367696
Iteration: 17, Func. Count: 180, Neg. LLF: 136.6582142710588
Iteration: 18, Func. Count: 190, Neg. LLF: 136.6581632645375
Iteration: 19, Func. Count: 200, Neg. LLF: 136.68603235399414
Iteration: 20, Func. Count: 212, Neg. LLF: 136.65818205212668
Iteration: 21, Func. Count: 223, Neg. LLF: 136.6582242204299
Optimization terminated successfully (Exit mode 0)
Current function value: 136.65815904531462
Iterations: 22
Function evaluations: 224
Gradient evaluations: 21
Iteration: 1, Func. Count: 12, Neg. LLF: 210.45328926201293
Iteration: 2, Func. Count: 24, Neg. LLF: 144.27825988768197
Iteration: 3, Func. Count: 36, Neg. LLF: 137.93470802048418
Iteration: 4, Func. Count: 47, Neg. LLF: 146.28867535688227
Iteration: 5, Func. Count: 62, Neg. LLF: 453.3626501260158
Iteration: 6, Func. Count: 75, Neg. LLF: 147.9236066608163
Iteration: 7, Func. Count: 87, Neg. LLF: 142.77945012026532
Iteration: 8, Func. Count: 99, Neg. LLF: 136.8281929656491
Iteration: 9, Func. Count: 110, Neg. LLF: 137.53223445742992
Iteration: 10, Func. Count: 122, Neg. LLF: 136.8279069752848
Iteration: 11, Func. Count: 134, Neg. LLF: 136.7574410236232
Iteration: 12, Func. Count: 145, Neg. LLF: 136.7440169489448
Iteration: 13, Func. Count: 156, Neg. LLF: 136.73924524549318
Iteration: 14, Func. Count: 167, Neg. LLF: 136.73709752265452
Iteration: 15, Func. Count: 178, Neg. LLF: 136.73452520828258
Iteration: 16, Func. Count: 189, Neg. LLF: 136.73306621877302
Iteration: 17, Func. Count: 200, Neg. LLF: 136.7301035675672
Iteration: 18, Func. Count: 211, Neg. LLF: 136.66216937547455
Iteration: 19, Func. Count: 222, Neg. LLF: 136.64594109399383
Iteration: 20, Func. Count: 234, Neg. LLF: 136.7477567885608
Iteration: 21, Func. Count: 246, Neg. LLF: 137.4783996143506
Iteration: 22, Func. Count: 259, Neg. LLF: 136.6626426806982
Iteration: 23, Func. Count: 271, Neg. LLF: 136.6583392104465
Iteration: 24, Func. Count: 282, Neg. LLF: 136.65832436522004
Iteration: 25, Func. Count: 294, Neg. LLF: 136.6581730179699
Iteration: 26, Func. Count: 305, Neg. LLF: 136.6581598170074
Iteration: 27, Func. Count: 315, Neg. LLF: 136.65816000840803
Optimization terminated successfully (Exit mode 0)
Current function value: 136.6581598170074
Iterations: 28
Function evaluations: 315
Gradient evaluations: 27
Iteration: 1, Func. Count: 13, Neg. LLF: 206.83027056757876
Iteration: 2, Func. Count: 26, Neg. LLF: 144.29664063197006
Iteration: 3, Func. Count: 39, Neg. LLF: 137.98635428482467
Iteration: 4, Func. Count: 51, Neg. LLF: 145.94392907522015
Iteration: 5, Func. Count: 67, Neg. LLF: 2564.48012331578
Iteration: 6, Func. Count: 81, Neg. LLF: 142.27913562025898
Iteration: 7, Func. Count: 94, Neg. LLF: 136.77850243372808
Iteration: 8, Func. Count: 106, Neg. LLF: 137.04214614091524
Iteration: 9, Func. Count: 119, Neg. LLF: 136.7281877294292
Iteration: 10, Func. Count: 131, Neg. LLF: 136.6469058550756
Iteration: 11, Func. Count: 143, Neg. LLF: 136.64093685608194
Iteration: 12, Func. Count: 155, Neg. LLF: 136.63423726944865
Iteration: 13, Func. Count: 167, Neg. LLF: 136.63322767349246
Iteration: 14, Func. Count: 179, Neg. LLF: 136.63267891585195
Iteration: 15, Func. Count: 191, Neg. LLF: 136.6324235783618
Iteration: 16, Func. Count: 203, Neg. LLF: 136.63236404673503
Iteration: 17, Func. Count: 215, Neg. LLF: 136.632353639719
Iteration: 18, Func. Count: 227, Neg. LLF: 136.6323810929549
Iteration: 19, Func. Count: 241, Neg. LLF: 136.6324003639324
Iteration: 20, Func. Count: 255, Neg. LLF: 136.63237213190794
Iteration: 21, Func. Count: 268, Neg. LLF: 136.63237108034195
Iteration: 22, Func. Count: 281, Neg. LLF: 136.63237058620643
Iteration: 23, Func. Count: 294, Neg. LLF: 136.6323705729714
Iteration: 24, Func. Count: 305, Neg. LLF: 136.63237048154303
Optimization terminated successfully (Exit mode 0)
Current function value: 136.6323705729714
Iterations: 25
Function evaluations: 305
Gradient evaluations: 24
Iteration: 1, Func. Count: 6, Neg. LLF: 152.69497737816187
Iteration: 2, Func. Count: 12, Neg. LLF: 176.7063413076545
Iteration: 3, Func. Count: 18, Neg. LLF: 148.11073839348774
Iteration: 4, Func. Count: 24, Neg. LLF: 145.66509970509412
Iteration: 5, Func. Count: 29, Neg. LLF: 144.6472665330959
Iteration: 6, Func. Count: 34, Neg. LLF: 142.0628634964557
Iteration: 7, Func. Count: 39, Neg. LLF: 196.05728799828097
Iteration: 8, Func. Count: 45, Neg. LLF: 218.66497679569503
Iteration: 9, Func. Count: 51, Neg. LLF: 191.00912595601784
Iteration: 10, Func. Count: 57, Neg. LLF: 188.86954200758814
Iteration: 11, Func. Count: 63, Neg. LLF: 196.87282692239592
Iteration: 12, Func. Count: 69, Neg. LLF: 146.39272284800447
Iteration: 13, Func. Count: 75, Neg. LLF: 140.72103049200913
Iteration: 14, Func. Count: 81, Neg. LLF: 140.14413704587912
Iteration: 15, Func. Count: 86, Neg. LLF: 140.12855394747257
Iteration: 16, Func. Count: 91, Neg. LLF: 140.12793107370666
Iteration: 17, Func. Count: 96, Neg. LLF: 140.12734817259297
Iteration: 18, Func. Count: 101, Neg. LLF: 140.12709091596957
Iteration: 19, Func. Count: 106, Neg. LLF: 140.12692793798044
Iteration: 20, Func. Count: 111, Neg. LLF: 140.12692683417842
Iteration: 21, Func. Count: 115, Neg. LLF: 140.1269266916688
Optimization terminated successfully (Exit mode 0)
Current function value: 140.12692683417842
Iterations: 21
Function evaluations: 115
Gradient evaluations: 21
Iteration: 1, Func. Count: 7, Neg. LLF: 146.58979591180122
Iteration: 2, Func. Count: 14, Neg. LLF: 167.0174586516804
Iteration: 3, Func. Count: 21, Neg. LLF: 155.11181777528572
Iteration: 4, Func. Count: 28, Neg. LLF: 164.53189745115336
Iteration: 5, Func. Count: 35, Neg. LLF: 179.16388658514728
Iteration: 6, Func. Count: 42, Neg. LLF: 141.81458878671666
Iteration: 7, Func. Count: 49, Neg. LLF: 140.19634642783325
Iteration: 8, Func. Count: 56, Neg. LLF: 141.08819104660054
Iteration: 9, Func. Count: 63, Neg. LLF: 140.03920569277236
Iteration: 10, Func. Count: 69, Neg. LLF: 140.03900500407786
Iteration: 11, Func. Count: 75, Neg. LLF: 140.03898385623634
Iteration: 12, Func. Count: 81, Neg. LLF: 140.03898260071233
Iteration: 13, Func. Count: 86, Neg. LLF: 140.03898244151867
Optimization terminated successfully (Exit mode 0)
Current function value: 140.03898260071233
Iterations: 13
Function evaluations: 86
Gradient evaluations: 13
Iteration: 1, Func. Count: 8, Neg. LLF: 147.55032589250186
Iteration: 2, Func. Count: 16, Neg. LLF: 162.2505255142924
Iteration: 3, Func. Count: 24, Neg. LLF: 167.14767836481096
Iteration: 4, Func. Count: 32, Neg. LLF: 147.669212121428
Iteration: 5, Func. Count: 40, Neg. LLF: 187.24708479416304
Iteration: 6, Func. Count: 48, Neg. LLF: 140.45393516682506
Iteration: 7, Func. Count: 55, Neg. LLF: 154.36245461460393
Iteration: 8, Func. Count: 64, Neg. LLF: 145.00751989999412
Iteration: 9, Func. Count: 73, Neg. LLF: 140.01754085863945
Iteration: 10, Func. Count: 80, Neg. LLF: 140.01519158078062
Iteration: 11, Func. Count: 87, Neg. LLF: 140.01499831062213
Iteration: 12, Func. Count: 94, Neg. LLF: 140.01497248743456
Iteration: 13, Func. Count: 101, Neg. LLF: 140.01496468732435
Iteration: 14, Func. Count: 108, Neg. LLF: 140.01496079044023
Iteration: 15, Func. Count: 115, Neg. LLF: 140.01495841107308
Iteration: 16, Func. Count: 121, Neg. LLF: 140.0149582629515
Optimization terminated successfully (Exit mode 0)
Current function value: 140.01495841107308
Iterations: 16
Function evaluations: 121
Gradient evaluations: 16
Iteration: 1, Func. Count: 9, Neg. LLF: 167.9309154816819
Iteration: 2, Func. Count: 18, Neg. LLF: 178.6119587052909
Iteration: 3, Func. Count: 27, Neg. LLF: 140.77147489837643
Iteration: 4, Func. Count: 35, Neg. LLF: 145.9592201963146
Iteration: 5, Func. Count: 44, Neg. LLF: 142.38976769289
Iteration: 6, Func. Count: 53, Neg. LLF: 142.62859540840535
Iteration: 7, Func. Count: 62, Neg. LLF: 140.1499347973456
Iteration: 8, Func. Count: 70, Neg. LLF: 140.67913987830448
Iteration: 9, Func. Count: 79, Neg. LLF: 140.2998071455665
Iteration: 10, Func. Count: 88, Neg. LLF: 139.9980542794319
Iteration: 11, Func. Count: 96, Neg. LLF: 139.97070647699624
Iteration: 12, Func. Count: 104, Neg. LLF: 140.09907313222243
Iteration: 13, Func. Count: 113, Neg. LLF: 140.10742999223086
Iteration: 14, Func. Count: 122, Neg. LLF: 140.1110003849281
Iteration: 15, Func. Count: 131, Neg. LLF: 140.10685259729632
Iteration: 16, Func. Count: 140, Neg. LLF: 140.14827050552768
Iteration: 17, Func. Count: 149, Neg. LLF: 140.14858696194307
Iteration: 18, Func. Count: 158, Neg. LLF: 140.2905382062217
Iteration: 19, Func. Count: 167, Neg. LLF: 140.03075522963994
Iteration: 20, Func. Count: 176, Neg. LLF: 139.91571097195768
Iteration: 21, Func. Count: 184, Neg. LLF: 139.91473947673887
Iteration: 22, Func. Count: 192, Neg. LLF: 139.91450998181062
Iteration: 23, Func. Count: 200, Neg. LLF: 139.91443811753817
Iteration: 24, Func. Count: 208, Neg. LLF: 139.9144314116611
Iteration: 25, Func. Count: 216, Neg. LLF: 139.91441872910812
Iteration: 26, Func. Count: 224, Neg. LLF: 139.91441722952635
Iteration: 27, Func. Count: 231, Neg. LLF: 139.9144170808687
Optimization terminated successfully (Exit mode 0)
Current function value: 139.91441722952635
Iterations: 27
Function evaluations: 231
Gradient evaluations: 27
Iteration: 1, Func. Count: 10, Neg. LLF: 166.19154174270278
Iteration: 2, Func. Count: 20, Neg. LLF: 176.41142181103532
Iteration: 3, Func. Count: 30, Neg. LLF: 140.7212988409416
Iteration: 4, Func. Count: 39, Neg. LLF: 148.4407430304437
Iteration: 5, Func. Count: 49, Neg. LLF: 140.20305599880086
Iteration: 6, Func. Count: 58, Neg. LLF: 145.1045797670911
Iteration: 7, Func. Count: 68, Neg. LLF: 139.67098623359556
Iteration: 8, Func. Count: 77, Neg. LLF: 144.11532853246075
Iteration: 9, Func. Count: 88, Neg. LLF: 139.41745739476485
Iteration: 10, Func. Count: 97, Neg. LLF: 141.8838384818462
Iteration: 11, Func. Count: 107, Neg. LLF: 139.82423783227324
Iteration: 12, Func. Count: 117, Neg. LLF: 139.15503276026868
Iteration: 13, Func. Count: 126, Neg. LLF: 139.15047574653133
Iteration: 14, Func. Count: 135, Neg. LLF: 139.14310617758755
Iteration: 15, Func. Count: 144, Neg. LLF: 139.14194498765258
Iteration: 16, Func. Count: 153, Neg. LLF: 139.14180287238483
Iteration: 17, Func. Count: 162, Neg. LLF: 139.14179501295268
Iteration: 18, Func. Count: 170, Neg. LLF: 139.14179485297686
Optimization terminated successfully (Exit mode 0)
Current function value: 139.14179501295268
Iterations: 18
Function evaluations: 170
Gradient evaluations: 18
Iteration: 1, Func. Count: 7, Neg. LLF: 154.72405983056981
Iteration: 2, Func. Count: 14, Neg. LLF: 147.99863030227138
Iteration: 3, Func. Count: 21, Neg. LLF: 146.20966885514
Iteration: 4, Func. Count: 28, Neg. LLF: 147.1595767723202
Iteration: 5, Func. Count: 35, Neg. LLF: 164.37603974477165
Iteration: 6, Func. Count: 42, Neg. LLF: 167.13454271959347
Iteration: 7, Func. Count: 49, Neg. LLF: 2228.4422093265157
Iteration: 8, Func. Count: 56, Neg. LLF: 316.3713204108939
Iteration: 9, Func. Count: 63, Neg. LLF: 247.06899201218556
Iteration: 10, Func. Count: 70, Neg. LLF: 265.6317751375991
Iteration: 11, Func. Count: 77, Neg. LLF: 231.18965674590106
Iteration: 12, Func. Count: 84, Neg. LLF: 239.89430862481598
Iteration: 13, Func. Count: 91, Neg. LLF: 238.57026429749604
Iteration: 14, Func. Count: 98, Neg. LLF: 224.67550818712465
Iteration: 15, Func. Count: 105, Neg. LLF: 149.6754452285574
Iteration: 16, Func. Count: 112, Neg. LLF: 141.3203871620243
Iteration: 17, Func. Count: 119, Neg. LLF: 139.6806822988926
Iteration: 18, Func. Count: 125, Neg. LLF: 139.45669615404867
Iteration: 19, Func. Count: 131, Neg. LLF: 139.50315230214846
Iteration: 20, Func. Count: 138, Neg. LLF: 139.35536914872424
Iteration: 21, Func. Count: 144, Neg. LLF: 139.3553107407785
Iteration: 22, Func. Count: 150, Neg. LLF: 139.35530806587627
Iteration: 23, Func. Count: 155, Neg. LLF: 139.35530800969488
Optimization terminated successfully (Exit mode 0)
Current function value: 139.35530806587627
Iterations: 23
Function evaluations: 155
Gradient evaluations: 23
Iteration: 1, Func. Count: 8, Neg. LLF: 174.18593888891473
Iteration: 2, Func. Count: 17, Neg. LLF: 168.62594298874006
Iteration: 3, Func. Count: 25, Neg. LLF: 156.39678276146068
Iteration: 4, Func. Count: 33, Neg. LLF: 155.07907958151404
Iteration: 5, Func. Count: 41, Neg. LLF: 148.18818489766988
Iteration: 6, Func. Count: 49, Neg. LLF: 148.5153821374207
Iteration: 7, Func. Count: 57, Neg. LLF: 148.23792163191882
Iteration: 8, Func. Count: 65, Neg. LLF: 140.39034909841982
Iteration: 9, Func. Count: 72, Neg. LLF: 139.9165356854164
Iteration: 10, Func. Count: 79, Neg. LLF: 139.70828575431102
Iteration: 11, Func. Count: 86, Neg. LLF: 139.80765236279836
Iteration: 12, Func. Count: 94, Neg. LLF: 139.2832960120093
Iteration: 13, Func. Count: 101, Neg. LLF: 139.08342093230186
Iteration: 14, Func. Count: 108, Neg. LLF: 138.99308134813666
Iteration: 15, Func. Count: 115, Neg. LLF: 138.93630656843143
Iteration: 16, Func. Count: 122, Neg. LLF: 138.83035605987206
Iteration: 17, Func. Count: 129, Neg. LLF: 138.80162224785917
Iteration: 18, Func. Count: 136, Neg. LLF: 138.764200728795
Iteration: 19, Func. Count: 143, Neg. LLF: 138.74829263822488
Iteration: 20, Func. Count: 150, Neg. LLF: 138.74603281713664
Iteration: 21, Func. Count: 157, Neg. LLF: 138.74577885971564
Iteration: 22, Func. Count: 164, Neg. LLF: 138.7457746999621
Iteration: 23, Func. Count: 170, Neg. LLF: 138.74577457856688
Optimization terminated successfully (Exit mode 0)
Current function value: 138.7457746999621
Iterations: 23
Function evaluations: 170
Gradient evaluations: 23
Iteration: 1, Func. Count: 9, Neg. LLF: 229.39362120109226
Iteration: 2, Func. Count: 18, Neg. LLF: 147.52793579386878
Iteration: 3, Func. Count: 27, Neg. LLF: 155.19557615904904
Iteration: 4, Func. Count: 36, Neg. LLF: 185.94391791254864
Iteration: 5, Func. Count: 45, Neg. LLF: 158.54439397296917
Iteration: 6, Func. Count: 54, Neg. LLF: 140.28166775765092
Iteration: 7, Func. Count: 62, Neg. LLF: 139.21293946340327
Iteration: 8, Func. Count: 70, Neg. LLF: 139.68607579054552
Iteration: 9, Func. Count: 79, Neg. LLF: 138.91215986487578
Iteration: 10, Func. Count: 87, Neg. LLF: 138.77630184493214
Iteration: 11, Func. Count: 95, Neg. LLF: 138.75439673809228
Iteration: 12, Func. Count: 103, Neg. LLF: 138.7483729476195
Iteration: 13, Func. Count: 111, Neg. LLF: 138.74693512794303
Iteration: 14, Func. Count: 119, Neg. LLF: 138.74596048624258
Iteration: 15, Func. Count: 127, Neg. LLF: 138.74578733499936
Iteration: 16, Func. Count: 135, Neg. LLF: 138.74577461138136
Iteration: 17, Func. Count: 142, Neg. LLF: 138.74577459779925
Optimization terminated successfully (Exit mode 0)
Current function value: 138.74577461138136
Iterations: 17
Function evaluations: 142
Gradient evaluations: 17
Iteration: 1, Func. Count: 10, Neg. LLF: 221.7572228365543
Iteration: 2, Func. Count: 20, Neg. LLF: 147.0172852444152
Iteration: 3, Func. Count: 30, Neg. LLF: 159.34952961831877
Iteration: 4, Func. Count: 40, Neg. LLF: 171.54452669401337
Iteration: 5, Func. Count: 50, Neg. LLF: 140.36084734919885
Iteration: 6, Func. Count: 59, Neg. LLF: 157.91150976908222
Iteration: 7, Func. Count: 71, Neg. LLF: 177.9316628321602
Iteration: 8, Func. Count: 82, Neg. LLF: 139.44955488361526
Iteration: 9, Func. Count: 92, Neg. LLF: 138.9442691378416
Iteration: 10, Func. Count: 102, Neg. LLF: 138.70695417535984
Iteration: 11, Func. Count: 111, Neg. LLF: 138.70609650317044
Iteration: 12, Func. Count: 120, Neg. LLF: 138.70593535606997
Iteration: 13, Func. Count: 129, Neg. LLF: 138.70588202942503
Iteration: 14, Func. Count: 137, Neg. LLF: 138.70588190857043
Optimization terminated successfully (Exit mode 0)
Current function value: 138.70588202942503
Iterations: 14
Function evaluations: 137
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 219.30063997780914
Iteration: 2, Func. Count: 22, Neg. LLF: 146.90634551687495
Iteration: 3, Func. Count: 33, Neg. LLF: 157.39066304814958
Iteration: 4, Func. Count: 44, Neg. LLF: 169.70804266738037
Iteration: 5, Func. Count: 55, Neg. LLF: 141.14723914138713
Iteration: 6, Func. Count: 66, Neg. LLF: 138.9545246781506
Iteration: 7, Func. Count: 76, Neg. LLF: 652.7496655211335
Iteration: 8, Func. Count: 87, Neg. LLF: 143.55656538458538
Iteration: 9, Func. Count: 99, Neg. LLF: 138.54671452687123
Iteration: 10, Func. Count: 109, Neg. LLF: 138.38784027633295
Iteration: 11, Func. Count: 119, Neg. LLF: 138.36290491842385
Iteration: 12, Func. Count: 129, Neg. LLF: 138.32720889355005
Iteration: 13, Func. Count: 139, Neg. LLF: 138.32579687800126
Iteration: 14, Func. Count: 149, Neg. LLF: 138.3242209387342
Iteration: 15, Func. Count: 159, Neg. LLF: 138.3242137927995
Iteration: 16, Func. Count: 168, Neg. LLF: 138.324213665543
Optimization terminated successfully (Exit mode 0)
Current function value: 138.3242137927995
Iterations: 16
Function evaluations: 168
Gradient evaluations: 16
Iteration: 1, Func. Count: 8, Neg. LLF: 159.77892076957002
Iteration: 2, Func. Count: 16, Neg. LLF: 147.47623000839081
Iteration: 3, Func. Count: 24, Neg. LLF: 148.53742556358316
Iteration: 4, Func. Count: 33, Neg. LLF: 146.77232475409653
Iteration: 5, Func. Count: 41, Neg. LLF: 143.61751413746447
Iteration: 6, Func. Count: 48, Neg. LLF: 143.33041929940666
Iteration: 7, Func. Count: 56, Neg. LLF: 148.10508373523336
Iteration: 8, Func. Count: 64, Neg. LLF: 150.6290955734604
Iteration: 9, Func. Count: 72, Neg. LLF: 140.2483745660193
Iteration: 10, Func. Count: 79, Neg. LLF: 138.99600368245203
Iteration: 11, Func. Count: 86, Neg. LLF: 138.4817011242074
Iteration: 12, Func. Count: 93, Neg. LLF: 742.5160949800526
Iteration: 13, Func. Count: 101, Neg. LLF: 223.12486846838317
Iteration: 14, Func. Count: 109, Neg. LLF: 148.3620769990166
Iteration: 15, Func. Count: 117, Neg. LLF: 138.5793615155558
Iteration: 16, Func. Count: 125, Neg. LLF: 137.57765291033522
Iteration: 17, Func. Count: 132, Neg. LLF: 137.48729733110028
Iteration: 18, Func. Count: 139, Neg. LLF: 137.47291103111274
Iteration: 19, Func. Count: 146, Neg. LLF: 137.46142607753632
Iteration: 20, Func. Count: 153, Neg. LLF: 137.46106599073156
Iteration: 21, Func. Count: 160, Neg. LLF: 137.46106254648552
Iteration: 22, Func. Count: 166, Neg. LLF: 137.46106248831126
Optimization terminated successfully (Exit mode 0)
Current function value: 137.46106254648552
Iterations: 22
Function evaluations: 166
Gradient evaluations: 22
Iteration: 1, Func. Count: 9, Neg. LLF: 174.3948242482148
Iteration: 2, Func. Count: 19, Neg. LLF: 174.50737631325003
Iteration: 3, Func. Count: 28, Neg. LLF: 156.50222445105723
Iteration: 4, Func. Count: 37, Neg. LLF: 156.7714952703732
Iteration: 5, Func. Count: 46, Neg. LLF: 147.5645725348662
Iteration: 6, Func. Count: 55, Neg. LLF: 146.81650019416324
Iteration: 7, Func. Count: 64, Neg. LLF: 146.68775397924793
Iteration: 8, Func. Count: 73, Neg. LLF: 140.5453973138322
Iteration: 9, Func. Count: 82, Neg. LLF: 138.91973834318762
Iteration: 10, Func. Count: 90, Neg. LLF: 138.72837130037303
Iteration: 11, Func. Count: 98, Neg. LLF: 138.41724432128112
Iteration: 12, Func. Count: 106, Neg. LLF: 138.2788255516306
Iteration: 13, Func. Count: 114, Neg. LLF: 137.90634699341837
Iteration: 14, Func. Count: 122, Neg. LLF: 137.6922801898112
Iteration: 15, Func. Count: 130, Neg. LLF: 137.5650022629511
Iteration: 16, Func. Count: 138, Neg. LLF: 137.5134540578153
Iteration: 17, Func. Count: 146, Neg. LLF: 137.4849921827685
Iteration: 18, Func. Count: 154, Neg. LLF: 137.47351489817007
Iteration: 19, Func. Count: 162, Neg. LLF: 137.46141364654616
Iteration: 20, Func. Count: 170, Neg. LLF: 137.46106472167745
Iteration: 21, Func. Count: 178, Neg. LLF: 137.46106265135117
Iteration: 22, Func. Count: 185, Neg. LLF: 137.46106262759187
Optimization terminated successfully (Exit mode 0)
Current function value: 137.46106265135117
Iterations: 22
Function evaluations: 185
Gradient evaluations: 22
Iteration: 1, Func. Count: 10, Neg. LLF: 170.83868294323887
Iteration: 2, Func. Count: 20, Neg. LLF: 147.52151058702978
Iteration: 3, Func. Count: 30, Neg. LLF: 151.35330051378497
Iteration: 4, Func. Count: 40, Neg. LLF: 138.07078852442862
Iteration: 5, Func. Count: 49, Neg. LLF: 137.77684284715426
Iteration: 6, Func. Count: 58, Neg. LLF: 137.85243720912575
Iteration: 7, Func. Count: 68, Neg. LLF: 137.50396513614976
Iteration: 8, Func. Count: 77, Neg. LLF: 137.47176281591797
Iteration: 9, Func. Count: 86, Neg. LLF: 137.4642093363698
Iteration: 10, Func. Count: 95, Neg. LLF: 137.46178421393532
Iteration: 11, Func. Count: 104, Neg. LLF: 137.4610667815698
Iteration: 12, Func. Count: 113, Neg. LLF: 137.46106295789272
Iteration: 13, Func. Count: 121, Neg. LLF: 137.4610631479346
Optimization terminated successfully (Exit mode 0)
Current function value: 137.46106295789272
Iterations: 13
Function evaluations: 121
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 226.9087734233345
Iteration: 2, Func. Count: 22, Neg. LLF: 147.77676810620073
Iteration: 3, Func. Count: 33, Neg. LLF: 156.19683596695236
Iteration: 4, Func. Count: 44, Neg. LLF: 140.93334220915727
Iteration: 5, Func. Count: 54, Neg. LLF: 180.98085220246975
Iteration: 6, Func. Count: 68, Neg. LLF: 194.310065651426
Iteration: 7, Func. Count: 81, Neg. LLF: 139.61163214882458
Iteration: 8, Func. Count: 92, Neg. LLF: 142.66850748613348
Iteration: 9, Func. Count: 103, Neg. LLF: 137.38748965936136
Iteration: 10, Func. Count: 113, Neg. LLF: 137.36498916268232
Iteration: 11, Func. Count: 123, Neg. LLF: 137.34706674014808
Iteration: 12, Func. Count: 133, Neg. LLF: 137.3424972348838
Iteration: 13, Func. Count: 143, Neg. LLF: 137.34169766158442
Iteration: 14, Func. Count: 153, Neg. LLF: 137.3398014935566
Iteration: 15, Func. Count: 163, Neg. LLF: 137.3386208194616
Iteration: 16, Func. Count: 173, Neg. LLF: 137.3377813783327
Iteration: 17, Func. Count: 183, Neg. LLF: 137.33768222802718
Iteration: 18, Func. Count: 193, Neg. LLF: 137.33767851248209
Iteration: 19, Func. Count: 202, Neg. LLF: 137.33767839184827
Optimization terminated successfully (Exit mode 0)
Current function value: 137.33767851248209
Iterations: 19
Function evaluations: 202
Gradient evaluations: 19
Iteration: 1, Func. Count: 12, Neg. LLF: 224.13074512968166
Iteration: 2, Func. Count: 24, Neg. LLF: 147.37144757962335
Iteration: 3, Func. Count: 36, Neg. LLF: 154.1601327041306
Iteration: 4, Func. Count: 48, Neg. LLF: 153.95785673337014
Iteration: 5, Func. Count: 60, Neg. LLF: 140.42103419721204
Iteration: 6, Func. Count: 72, Neg. LLF: 139.90227527342486
Iteration: 7, Func. Count: 84, Neg. LLF: 137.6642321239079
Iteration: 8, Func. Count: 95, Neg. LLF: 145.95818613501234
Iteration: 9, Func. Count: 108, Neg. LLF: 147.95363449930971
Iteration: 10, Func. Count: 120, Neg. LLF: 155.25009378343006
Iteration: 11, Func. Count: 132, Neg. LLF: 136.74843455937568
Iteration: 12, Func. Count: 143, Neg. LLF: 136.7361259476161
Iteration: 13, Func. Count: 154, Neg. LLF: 136.73381582956736
Iteration: 14, Func. Count: 165, Neg. LLF: 136.733517022018
Iteration: 15, Func. Count: 176, Neg. LLF: 136.73340818116822
Iteration: 16, Func. Count: 187, Neg. LLF: 136.73340718819355
Optimization terminated successfully (Exit mode 0)
Current function value: 136.73340718819355
Iterations: 16
Function evaluations: 187
Gradient evaluations: 16
Iteration: 1, Func. Count: 9, Neg. LLF: 160.7526195754592
Iteration: 2, Func. Count: 18, Neg. LLF: 148.17194754099705
Iteration: 3, Func. Count: 27, Neg. LLF: 149.02519984417825
Iteration: 4, Func. Count: 37, Neg. LLF: 147.90254504377725
Iteration: 5, Func. Count: 46, Neg. LLF: 143.77608587440474
Iteration: 6, Func. Count: 54, Neg. LLF: 148.6172343324384
Iteration: 7, Func. Count: 63, Neg. LLF: 9451694.596034454
Iteration: 8, Func. Count: 72, Neg. LLF: 1282.3135459739626
Iteration: 9, Func. Count: 81, Neg. LLF: 533.0840065773397
Iteration: 10, Func. Count: 90, Neg. LLF: 377.0678888327922
Iteration: 11, Func. Count: 99, Neg. LLF: 187.68091978056174
Iteration: 12, Func. Count: 108, Neg. LLF: 142.53243731780265
Iteration: 13, Func. Count: 117, Neg. LLF: 139.11753858968584
Iteration: 14, Func. Count: 125, Neg. LLF: 138.5331324069215
Iteration: 15, Func. Count: 133, Neg. LLF: 138.08280049366783
Iteration: 16, Func. Count: 141, Neg. LLF: 714.4366654563361
Iteration: 17, Func. Count: 150, Neg. LLF: 18782.746593012107
Iteration: 18, Func. Count: 159, Neg. LLF: 137.48395967929383
Iteration: 19, Func. Count: 167, Neg. LLF: 137.38466570860464
Iteration: 20, Func. Count: 175, Neg. LLF: 137.36750447180904
Iteration: 21, Func. Count: 183, Neg. LLF: 137.3663363632217
Iteration: 22, Func. Count: 191, Neg. LLF: 137.36538721823283
Iteration: 23, Func. Count: 199, Neg. LLF: 137.36537312633857
Iteration: 24, Func. Count: 207, Neg. LLF: 137.36537196543196
Iteration: 25, Func. Count: 214, Neg. LLF: 137.36537190899162
Optimization terminated successfully (Exit mode 0)
Current function value: 137.36537196543196
Iterations: 25
Function evaluations: 214
Gradient evaluations: 25
Iteration: 1, Func. Count: 10, Neg. LLF: 175.05960470282693
Iteration: 2, Func. Count: 21, Neg. LLF: 176.25203308944035
Iteration: 3, Func. Count: 31, Neg. LLF: 144.82920820158557
Iteration: 4, Func. Count: 41, Neg. LLF: 145.36900446635502
Iteration: 5, Func. Count: 51, Neg. LLF: 148.1301866852517
Iteration: 6, Func. Count: 61, Neg. LLF: 147.92712582299058
Iteration: 7, Func. Count: 71, Neg. LLF: 147.24131207650785
Iteration: 8, Func. Count: 81, Neg. LLF: 139.26350809667068
Iteration: 9, Func. Count: 90, Neg. LLF: 138.9319468730914
Iteration: 10, Func. Count: 99, Neg. LLF: 145.64288546953372
Iteration: 11, Func. Count: 110, Neg. LLF: 141.41583932497977
Iteration: 12, Func. Count: 120, Neg. LLF: 138.0110112919399
Iteration: 13, Func. Count: 129, Neg. LLF: 137.86209393838521
Iteration: 14, Func. Count: 138, Neg. LLF: 137.66259924793195
Iteration: 15, Func. Count: 147, Neg. LLF: 137.567547911184
Iteration: 16, Func. Count: 156, Neg. LLF: 137.39227386112157
Iteration: 17, Func. Count: 165, Neg. LLF: 137.3760705106542
Iteration: 18, Func. Count: 174, Neg. LLF: 137.36642320900975
Iteration: 19, Func. Count: 183, Neg. LLF: 137.36570287606636
Iteration: 20, Func. Count: 192, Neg. LLF: 137.3654864979042
Iteration: 21, Func. Count: 201, Neg. LLF: 137.36537326904875
Iteration: 22, Func. Count: 210, Neg. LLF: 137.36537203207195
Iteration: 23, Func. Count: 218, Neg. LLF: 137.3653720440576
Optimization terminated successfully (Exit mode 0)
Current function value: 137.36537203207195
Iterations: 23
Function evaluations: 218
Gradient evaluations: 23
Iteration: 1, Func. Count: 11, Neg. LLF: 177.22369773837625
Iteration: 2, Func. Count: 22, Neg. LLF: 147.17690815426909
Iteration: 3, Func. Count: 33, Neg. LLF: 150.87400778595702
Iteration: 4, Func. Count: 44, Neg. LLF: 139.48856666402267
Iteration: 5, Func. Count: 54, Neg. LLF: 137.49253547725115
Iteration: 6, Func. Count: 64, Neg. LLF: 210.92366598172597
Iteration: 7, Func. Count: 76, Neg. LLF: 137.74499106255004
Iteration: 8, Func. Count: 87, Neg. LLF: 137.36943067379812
Iteration: 9, Func. Count: 97, Neg. LLF: 137.36704955321514
Iteration: 10, Func. Count: 107, Neg. LLF: 137.36625531208767
Iteration: 11, Func. Count: 117, Neg. LLF: 137.36538019818508
Iteration: 12, Func. Count: 127, Neg. LLF: 137.3653730034886
Iteration: 13, Func. Count: 137, Neg. LLF: 137.36537209699114
Optimization terminated successfully (Exit mode 0)
Current function value: 137.36537209699114
Iterations: 13
Function evaluations: 137
Gradient evaluations: 13
Iteration: 1, Func. Count: 12, Neg. LLF: 222.24614646280077
Iteration: 2, Func. Count: 24, Neg. LLF: 147.8475225611096
Iteration: 3, Func. Count: 36, Neg. LLF: 155.0530229744796
Iteration: 4, Func. Count: 48, Neg. LLF: 140.79916226529267
Iteration: 5, Func. Count: 59, Neg. LLF: 184.99585389727707
Iteration: 6, Func. Count: 74, Neg. LLF: 198.492302237341
Iteration: 7, Func. Count: 88, Neg. LLF: 209.81711227117103
Iteration: 8, Func. Count: 101, Neg. LLF: 146.66221476921075
Iteration: 9, Func. Count: 113, Neg. LLF: 139.52083407901182
Iteration: 10, Func. Count: 125, Neg. LLF: 137.32453154609925
Iteration: 11, Func. Count: 136, Neg. LLF: 137.2790575420808
Iteration: 12, Func. Count: 147, Neg. LLF: 137.26842518546255
Iteration: 13, Func. Count: 158, Neg. LLF: 137.2617664812644
Iteration: 14, Func. Count: 169, Neg. LLF: 137.2603590730939
Iteration: 15, Func. Count: 180, Neg. LLF: 137.25829740277285
Iteration: 16, Func. Count: 191, Neg. LLF: 137.25803641235117
Iteration: 17, Func. Count: 202, Neg. LLF: 137.25778914269884
Iteration: 18, Func. Count: 213, Neg. LLF: 137.25769030619634
Iteration: 19, Func. Count: 224, Neg. LLF: 137.2576762424009
Iteration: 20, Func. Count: 235, Neg. LLF: 137.25767552134468
Optimization terminated successfully (Exit mode 0)
Current function value: 137.25767552134468
Iterations: 20
Function evaluations: 235
Gradient evaluations: 20
Iteration: 1, Func. Count: 13, Neg. LLF: 219.91009105321962
Iteration: 2, Func. Count: 26, Neg. LLF: 147.7096449027132
Iteration: 3, Func. Count: 39, Neg. LLF: 153.11969447636721
Iteration: 4, Func. Count: 52, Neg. LLF: 144.88051330023976
Iteration: 5, Func. Count: 65, Neg. LLF: 139.0118212710486
Iteration: 6, Func. Count: 77, Neg. LLF: 209.7706186670576
Iteration: 7, Func. Count: 91, Neg. LLF: 171.715939741116
Iteration: 8, Func. Count: 106, Neg. LLF: 204.3918022066041
Iteration: 9, Func. Count: 119, Neg. LLF: 139.71466919718472
Iteration: 10, Func. Count: 132, Neg. LLF: 168.02754573927234
Iteration: 11, Func. Count: 145, Neg. LLF: 137.11525274931103
Iteration: 12, Func. Count: 158, Neg. LLF: 136.82554743154213
Iteration: 13, Func. Count: 170, Neg. LLF: 136.75045214245378
Iteration: 14, Func. Count: 182, Neg. LLF: 136.73768161168155
Iteration: 15, Func. Count: 194, Neg. LLF: 136.73401628976754
Iteration: 16, Func. Count: 206, Neg. LLF: 136.73352997416
Iteration: 17, Func. Count: 218, Neg. LLF: 136.73342664629257
Iteration: 18, Func. Count: 230, Neg. LLF: 136.7334099431187
Iteration: 19, Func. Count: 242, Neg. LLF: 136.7334076594363
Iteration: 20, Func. Count: 254, Neg. LLF: 136.73340700239854
Optimization terminated successfully (Exit mode 0)
Current function value: 136.73340700239854
Iterations: 20
Function evaluations: 254
Gradient evaluations: 20
Iteration: 1, Func. Count: 10, Neg. LLF: 154.21418135689336
Iteration: 2, Func. Count: 20, Neg. LLF: 157.07189355328
Iteration: 3, Func. Count: 30, Neg. LLF: 144.8595567421922
Iteration: 4, Func. Count: 40, Neg. LLF: 143.1816630104227
Iteration: 5, Func. Count: 49, Neg. LLF: 142.9063937252421
Iteration: 6, Func. Count: 59, Neg. LLF: 2228232.682260067
Iteration: 7, Func. Count: 69, Neg. LLF: 203.1610937850243
Iteration: 8, Func. Count: 79, Neg. LLF: 275.70830824409643
Iteration: 9, Func. Count: 89, Neg. LLF: 1485329.9453918247
Iteration: 10, Func. Count: 99, Neg. LLF: 9095.934739655586
Iteration: 11, Func. Count: 109, Neg. LLF: 462.3186527111408
Iteration: 12, Func. Count: 119, Neg. LLF: 408.08934403688147
Iteration: 13, Func. Count: 129, Neg. LLF: 251.08282859193895
Iteration: 14, Func. Count: 139, Neg. LLF: 141.26355908657797
Iteration: 15, Func. Count: 149, Neg. LLF: 138.2044322063336
Iteration: 16, Func. Count: 159, Neg. LLF: 137.64187301601643
Iteration: 17, Func. Count: 168, Neg. LLF: 137.26213906699817
Iteration: 18, Func. Count: 177, Neg. LLF: 137.21534354134954
Iteration: 19, Func. Count: 186, Neg. LLF: 137.1328072885405
Iteration: 20, Func. Count: 195, Neg. LLF: 136.95024848906237
Iteration: 21, Func. Count: 204, Neg. LLF: 136.8992619639492
Iteration: 22, Func. Count: 213, Neg. LLF: 136.88724560194342
Iteration: 23, Func. Count: 222, Neg. LLF: 136.87756216815606
Iteration: 24, Func. Count: 231, Neg. LLF: 136.87498637186545
Iteration: 25, Func. Count: 240, Neg. LLF: 136.8715912521222
Iteration: 26, Func. Count: 249, Neg. LLF: 136.87141733892494
Iteration: 27, Func. Count: 258, Neg. LLF: 136.8713951579635
Iteration: 28, Func. Count: 267, Neg. LLF: 136.87138691480254
Iteration: 29, Func. Count: 276, Neg. LLF: 136.87138570514455
Iteration: 30, Func. Count: 284, Neg. LLF: 136.87138567445973
Optimization terminated successfully (Exit mode 0)
Current function value: 136.87138570514455
Iterations: 30
Function evaluations: 284
Gradient evaluations: 30
Iteration: 1, Func. Count: 11, Neg. LLF: 212.9665033147642
Iteration: 2, Func. Count: 22, Neg. LLF: 145.64904814305947
Iteration: 3, Func. Count: 33, Neg. LLF: 138.67467521990764
Iteration: 4, Func. Count: 43, Neg. LLF: 161.0652207804406
Iteration: 5, Func. Count: 55, Neg. LLF: 158.38569668758996
Iteration: 6, Func. Count: 66, Neg. LLF: 136.81799812462486
Iteration: 7, Func. Count: 76, Neg. LLF: 136.77429092324454
Iteration: 8, Func. Count: 86, Neg. LLF: 136.78246349779116
Iteration: 9, Func. Count: 97, Neg. LLF: 136.6851603301553
Iteration: 10, Func. Count: 107, Neg. LLF: 136.67173361137407
Iteration: 11, Func. Count: 117, Neg. LLF: 136.66510988690612
Iteration: 12, Func. Count: 127, Neg. LLF: 136.66023579282563
Iteration: 13, Func. Count: 137, Neg. LLF: 136.65829263851236
Iteration: 14, Func. Count: 147, Neg. LLF: 136.65817154609493
Iteration: 15, Func. Count: 157, Neg. LLF: 136.65816302042316
Iteration: 16, Func. Count: 167, Neg. LLF: 136.65816070216772
Iteration: 17, Func. Count: 177, Neg. LLF: 136.65815987165334
Optimization terminated successfully (Exit mode 0)
Current function value: 136.65815987165334
Iterations: 17
Function evaluations: 177
Gradient evaluations: 17
Iteration: 1, Func. Count: 12, Neg. LLF: 209.78051898508326
Iteration: 2, Func. Count: 24, Neg. LLF: 143.66896818321482
Iteration: 3, Func. Count: 36, Neg. LLF: 138.69048423008832
Iteration: 4, Func. Count: 47, Neg. LLF: 156.87935502237767
Iteration: 5, Func. Count: 60, Neg. LLF: 149.0529442109875
Iteration: 6, Func. Count: 74, Neg. LLF: 144.3699660477232
Iteration: 7, Func. Count: 86, Neg. LLF: 136.83536331793474
Iteration: 8, Func. Count: 97, Neg. LLF: 136.75141936742193
Iteration: 9, Func. Count: 108, Neg. LLF: 136.7111157137476
Iteration: 10, Func. Count: 119, Neg. LLF: 136.6792044770605
Iteration: 11, Func. Count: 130, Neg. LLF: 136.66672908604178
Iteration: 12, Func. Count: 141, Neg. LLF: 136.66068443099607
Iteration: 13, Func. Count: 152, Neg. LLF: 136.6590324959681
Iteration: 14, Func. Count: 163, Neg. LLF: 136.65826462214915
Iteration: 15, Func. Count: 174, Neg. LLF: 136.6581737916327
Iteration: 16, Func. Count: 185, Neg. LLF: 136.6581613110953
Iteration: 17, Func. Count: 196, Neg. LLF: 136.6581599686889
Iteration: 18, Func. Count: 206, Neg. LLF: 136.65816016174588
Optimization terminated successfully (Exit mode 0)
Current function value: 136.6581599686889
Iterations: 18
Function evaluations: 206
Gradient evaluations: 18
Iteration: 1, Func. Count: 13, Neg. LLF: 206.20688010153944
Iteration: 2, Func. Count: 26, Neg. LLF: 143.71957064945246
Iteration: 3, Func. Count: 39, Neg. LLF: 138.78640927122748
Iteration: 4, Func. Count: 51, Neg. LLF: 154.72244544168342
Iteration: 5, Func. Count: 67, Neg. LLF: 444.3961163108872
Iteration: 6, Func. Count: 80, Neg. LLF: 637.6024762154033
Iteration: 7, Func. Count: 94, Neg. LLF: 138.5739115134982
Iteration: 8, Func. Count: 107, Neg. LLF: 136.88017233356854
Iteration: 9, Func. Count: 119, Neg. LLF: 136.8673586204445
Iteration: 10, Func. Count: 132, Neg. LLF: 138.28980077159264
Iteration: 11, Func. Count: 145, Neg. LLF: 136.75532573885357
Iteration: 12, Func. Count: 157, Neg. LLF: 136.74728919098493
Iteration: 13, Func. Count: 169, Neg. LLF: 136.74149734489941
Iteration: 14, Func. Count: 181, Neg. LLF: 136.73603464599952
Iteration: 15, Func. Count: 193, Neg. LLF: 136.73405145771176
Iteration: 16, Func. Count: 205, Neg. LLF: 136.73333049698832
Iteration: 17, Func. Count: 217, Neg. LLF: 136.7317014516347
Iteration: 18, Func. Count: 229, Neg. LLF: 136.6607071403417
Iteration: 19, Func. Count: 241, Neg. LLF: 142.58587124102118
Iteration: 20, Func. Count: 255, Neg. LLF: 136.66762331396654
Iteration: 21, Func. Count: 268, Neg. LLF: 136.67343051255074
Iteration: 22, Func. Count: 281, Neg. LLF: 136.6583534455195
Iteration: 23, Func. Count: 293, Neg. LLF: 136.65820590725383
Iteration: 24, Func. Count: 305, Neg. LLF: 136.6585065317378
Iteration: 25, Func. Count: 318, Neg. LLF: 136.6581598393478
Iteration: 26, Func. Count: 329, Neg. LLF: 136.6581600307296
Optimization terminated successfully (Exit mode 0)
Current function value: 136.6581598393478
Iterations: 27
Function evaluations: 329
Gradient evaluations: 26
Iteration: 1, Func. Count: 14, Neg. LLF: 203.36317792699376
Iteration: 2, Func. Count: 28, Neg. LLF: 143.2770346099188
Iteration: 3, Func. Count: 42, Neg. LLF: 138.79920096057637
Iteration: 4, Func. Count: 55, Neg. LLF: 159.261532937291
Iteration: 5, Func. Count: 72, Neg. LLF: 645.8293109990215
Iteration: 6, Func. Count: 86, Neg. LLF: 776.327988572222
Iteration: 7, Func. Count: 101, Neg. LLF: 138.59216035903611
Iteration: 8, Func. Count: 115, Neg. LLF: 136.89068862396027
Iteration: 9, Func. Count: 128, Neg. LLF: 136.71227198010433
Iteration: 10, Func. Count: 141, Neg. LLF: 136.65929941017308
Iteration: 11, Func. Count: 154, Neg. LLF: 136.65822587173733
Iteration: 12, Func. Count: 167, Neg. LLF: 136.65817252872577
Iteration: 13, Func. Count: 180, Neg. LLF: 136.6581691687025
Iteration: 14, Func. Count: 193, Neg. LLF: 136.65816573069742
Iteration: 15, Func. Count: 206, Neg. LLF: 136.65816188892865
Iteration: 16, Func. Count: 219, Neg. LLF: 136.65816011095072
Iteration: 17, Func. Count: 231, Neg. LLF: 136.65816021621495
Optimization terminated successfully (Exit mode 0)
Current function value: 136.65816011095072
Iterations: 17
Function evaluations: 231
Gradient evaluations: 17
Iteration: 1, Func. Count: 7, Neg. LLF: 151.84975863072546
Iteration: 2, Func. Count: 13, Neg. LLF: 168.44419809884732
Iteration: 3, Func. Count: 20, Neg. LLF: 147.61704351830193
Iteration: 4, Func. Count: 27, Neg. LLF: 147.16104033177348
Iteration: 5, Func. Count: 34, Neg. LLF: 144.52716650609617
Iteration: 6, Func. Count: 40, Neg. LLF: 202.1938112448045
Iteration: 7, Func. Count: 47, Neg. LLF: 200.08326648816998
Iteration: 8, Func. Count: 54, Neg. LLF: 165.7414991347444
Iteration: 9, Func. Count: 61, Neg. LLF: 217.1197872438006
Iteration: 10, Func. Count: 68, Neg. LLF: 223.20167418403767
Iteration: 11, Func. Count: 75, Neg. LLF: 218.1332943571991
Iteration: 12, Func. Count: 82, Neg. LLF: 209.45669759782686
Iteration: 13, Func. Count: 89, Neg. LLF: 207.12423665287125
Iteration: 14, Func. Count: 96, Neg. LLF: 153.11261500089716
Iteration: 15, Func. Count: 103, Neg. LLF: 217.75262687857023
Iteration: 16, Func. Count: 110, Neg. LLF: 140.6090790834515
Iteration: 17, Func. Count: 117, Neg. LLF: 140.09404401616172
Iteration: 18, Func. Count: 123, Neg. LLF: 140.08057814174725
Iteration: 19, Func. Count: 129, Neg. LLF: 140.08089493327142
Iteration: 20, Func. Count: 136, Neg. LLF: 140.07524781038944
Iteration: 21, Func. Count: 142, Neg. LLF: 140.07523501729548
Iteration: 22, Func. Count: 147, Neg. LLF: 140.07523487248383
Optimization terminated successfully (Exit mode 0)
Current function value: 140.07523501729548
Iterations: 22
Function evaluations: 147
Gradient evaluations: 22
Iteration: 1, Func. Count: 8, Neg. LLF: 144.51974605706357
Iteration: 2, Func. Count: 17, Neg. LLF: 190.34322993658202
Iteration: 3, Func. Count: 25, Neg. LLF: 177.42070711382343
Iteration: 4, Func. Count: 33, Neg. LLF: 183.11263530511403
Iteration: 5, Func. Count: 41, Neg. LLF: 200.77789376666632
Iteration: 6, Func. Count: 49, Neg. LLF: 219.78910654709887
Iteration: 7, Func. Count: 57, Neg. LLF: 149.35271123178916
Iteration: 8, Func. Count: 65, Neg. LLF: 141.3674216684989
Iteration: 9, Func. Count: 73, Neg. LLF: 140.34666346379294
Iteration: 10, Func. Count: 80, Neg. LLF: 140.14697117182217
Iteration: 11, Func. Count: 87, Neg. LLF: 140.1772156406243
Iteration: 12, Func. Count: 95, Neg. LLF: 140.18327588999875
Iteration: 13, Func. Count: 103, Neg. LLF: 140.03991163363352
Iteration: 14, Func. Count: 110, Neg. LLF: 140.03941561921374
Iteration: 15, Func. Count: 117, Neg. LLF: 140.03898471391764
Iteration: 16, Func. Count: 124, Neg. LLF: 140.0389825451447
Iteration: 17, Func. Count: 130, Neg. LLF: 140.0389823859928
Optimization terminated successfully (Exit mode 0)
Current function value: 140.0389825451447
Iterations: 17
Function evaluations: 130
Gradient evaluations: 17
Iteration: 1, Func. Count: 9, Neg. LLF: 164.72636652999265
Iteration: 2, Func. Count: 18, Neg. LLF: 159.46771208807124
Iteration: 3, Func. Count: 27, Neg. LLF: 166.32383725619354
Iteration: 4, Func. Count: 36, Neg. LLF: 185.8220533804549
Iteration: 5, Func. Count: 45, Neg. LLF: 189.01479232927417
Iteration: 6, Func. Count: 54, Neg. LLF: 145.678179834353
Iteration: 7, Func. Count: 63, Neg. LLF: 141.79417127233393
Iteration: 8, Func. Count: 72, Neg. LLF: 140.77948612235042
Iteration: 9, Func. Count: 81, Neg. LLF: 140.27085562433336
Iteration: 10, Func. Count: 89, Neg. LLF: 141.71530619941623
Iteration: 11, Func. Count: 99, Neg. LLF: 140.16773157721846
Iteration: 12, Func. Count: 108, Neg. LLF: 140.0211583122276
Iteration: 13, Func. Count: 116, Neg. LLF: 140.01733800974998
Iteration: 14, Func. Count: 124, Neg. LLF: 140.01577753714034
Iteration: 15, Func. Count: 132, Neg. LLF: 140.0150645649731
Iteration: 16, Func. Count: 140, Neg. LLF: 140.0149625630931
Iteration: 17, Func. Count: 148, Neg. LLF: 140.0149583238776
Iteration: 18, Func. Count: 155, Neg. LLF: 140.01495817595344
Optimization terminated successfully (Exit mode 0)
Current function value: 140.0149583238776
Iterations: 18
Function evaluations: 155
Gradient evaluations: 18
Iteration: 1, Func. Count: 10, Neg. LLF: 162.533704246796
Iteration: 2, Func. Count: 20, Neg. LLF: 185.18363623638436
Iteration: 3, Func. Count: 30, Neg. LLF: 140.79008834719463
Iteration: 4, Func. Count: 39, Neg. LLF: 353.3441330051472
Iteration: 5, Func. Count: 49, Neg. LLF: 140.1739995277102
Iteration: 6, Func. Count: 58, Neg. LLF: 141.338635073332
Iteration: 7, Func. Count: 68, Neg. LLF: 140.02094121118998
Iteration: 8, Func. Count: 77, Neg. LLF: 140.00744736078866
Iteration: 9, Func. Count: 86, Neg. LLF: 140.0015790260465
Iteration: 10, Func. Count: 95, Neg. LLF: 139.98759000627325
Iteration: 11, Func. Count: 104, Neg. LLF: 139.98639050321987
Iteration: 12, Func. Count: 113, Neg. LLF: 139.98607694138732
Iteration: 13, Func. Count: 122, Neg. LLF: 139.96518405357392
Iteration: 14, Func. Count: 131, Neg. LLF: 140.165314793495
Iteration: 15, Func. Count: 141, Neg. LLF: 140.1614037284872
Iteration: 16, Func. Count: 151, Neg. LLF: 139.19440053181162
Iteration: 17, Func. Count: 170, Neg. LLF: 150.61635566980848
Iteration: 18, Func. Count: 189, Neg. LLF: 155.26506544992188
Iteration: 19, Func. Count: 208, Neg. LLF: 140.30474044260288
Iteration: 20, Func. Count: 218, Neg. LLF: 140.41702557456554
Iteration: 21, Func. Count: 228, Neg. LLF: 140.19129464723926
Iteration: 22, Func. Count: 238, Neg. LLF: 140.18151110494273
Iteration: 23, Func. Count: 248, Neg. LLF: 140.17767441649391
Iteration: 24, Func. Count: 258, Neg. LLF: 140.19452529414048
Iteration: 25, Func. Count: 268, Neg. LLF: 140.08457961621124
Iteration: 26, Func. Count: 278, Neg. LLF: 139.91681999050527
Iteration: 27, Func. Count: 287, Neg. LLF: 139.9149690676606
Iteration: 28, Func. Count: 296, Neg. LLF: 139.91460764199743
Iteration: 29, Func. Count: 305, Neg. LLF: 139.9144217186338
Iteration: 30, Func. Count: 314, Neg. LLF: 139.9144174585837
Iteration: 31, Func. Count: 322, Neg. LLF: 139.91441730944143
Optimization terminated successfully (Exit mode 0)
Current function value: 139.9144174585837
Iterations: 32
Function evaluations: 322
Gradient evaluations: 31
Iteration: 1, Func. Count: 11, Neg. LLF: 160.83800794203378
Iteration: 2, Func. Count: 22, Neg. LLF: 185.26780270320907
Iteration: 3, Func. Count: 33, Neg. LLF: 140.7899440656933
Iteration: 4, Func. Count: 43, Neg. LLF: 223.47890135932246
Iteration: 5, Func. Count: 54, Neg. LLF: 144.27933372831106
Iteration: 6, Func. Count: 65, Neg. LLF: 140.1894709112665
Iteration: 7, Func. Count: 75, Neg. LLF: 144.91082293368044
Iteration: 8, Func. Count: 86, Neg. LLF: 139.64076380338057
Iteration: 9, Func. Count: 96, Neg. LLF: 146.24491559249188
Iteration: 10, Func. Count: 109, Neg. LLF: 139.85029151050662
Iteration: 11, Func. Count: 120, Neg. LLF: 139.7048821803077
Iteration: 12, Func. Count: 131, Neg. LLF: 139.14361085348585
Iteration: 13, Func. Count: 141, Neg. LLF: 139.14215515564717
Iteration: 14, Func. Count: 151, Neg. LLF: 139.14181063442447
Iteration: 15, Func. Count: 161, Neg. LLF: 139.1418003237943
Iteration: 16, Func. Count: 171, Neg. LLF: 139.1417946529286
Iteration: 17, Func. Count: 180, Neg. LLF: 139.1417944928825
Optimization terminated successfully (Exit mode 0)
Current function value: 139.1417946529286
Iterations: 17
Function evaluations: 180
Gradient evaluations: 17
Iteration: 1, Func. Count: 8, Neg. LLF: 155.1033589185511
Iteration: 2, Func. Count: 16, Neg. LLF: 146.86510735060378
Iteration: 3, Func. Count: 24, Neg. LLF: 149.28078791726404
Iteration: 4, Func. Count: 33, Neg. LLF: 145.45909424328212
Iteration: 5, Func. Count: 40, Neg. LLF: 152.49082399725907
Iteration: 6, Func. Count: 48, Neg. LLF: 165.4585451362746
Iteration: 7, Func. Count: 56, Neg. LLF: 21748.452669874543
Iteration: 8, Func. Count: 64, Neg. LLF: 696.9880617078895
Iteration: 9, Func. Count: 72, Neg. LLF: 285.8820533305815
Iteration: 10, Func. Count: 80, Neg. LLF: 220.28328634192005
Iteration: 11, Func. Count: 88, Neg. LLF: 202.64237565927132
Iteration: 12, Func. Count: 96, Neg. LLF: 197.5474005580015
Iteration: 13, Func. Count: 104, Neg. LLF: 199.40204421535262
Iteration: 14, Func. Count: 112, Neg. LLF: 208.3845820704833
Iteration: 15, Func. Count: 120, Neg. LLF: 222.7920057960082
Iteration: 16, Func. Count: 128, Neg. LLF: 142.77198530601208
Iteration: 17, Func. Count: 136, Neg. LLF: 139.8665683765893
Iteration: 18, Func. Count: 143, Neg. LLF: 139.5143517453699
Iteration: 19, Func. Count: 150, Neg. LLF: 139.41215556610035
Iteration: 20, Func. Count: 157, Neg. LLF: 167.0475790665621
Iteration: 21, Func. Count: 166, Neg. LLF: 145.1172432935368
Iteration: 22, Func. Count: 174, Neg. LLF: 139.3554817605839
Iteration: 23, Func. Count: 181, Neg. LLF: 139.35535425248565
Iteration: 24, Func. Count: 188, Neg. LLF: 139.3553093893608
Iteration: 25, Func. Count: 195, Neg. LLF: 139.3553080325105
Iteration: 26, Func. Count: 201, Neg. LLF: 139.35530797632873
Optimization terminated successfully (Exit mode 0)
Current function value: 139.3553080325105
Iterations: 26
Function evaluations: 201
Gradient evaluations: 26
Iteration: 1, Func. Count: 9, Neg. LLF: 174.59501874573434
Iteration: 2, Func. Count: 19, Neg. LLF: 168.32384445116534
Iteration: 3, Func. Count: 28, Neg. LLF: 156.1886702510111
Iteration: 4, Func. Count: 37, Neg. LLF: 156.41150465612694
Iteration: 5, Func. Count: 46, Neg. LLF: 148.47428254845545
Iteration: 6, Func. Count: 55, Neg. LLF: 148.38794153589294
Iteration: 7, Func. Count: 64, Neg. LLF: 147.76977781296603
Iteration: 8, Func. Count: 73, Neg. LLF: 140.63281116652408
Iteration: 9, Func. Count: 82, Neg. LLF: 139.68557762091427
Iteration: 10, Func. Count: 90, Neg. LLF: 145.56040324041052
Iteration: 11, Func. Count: 99, Neg. LLF: 139.25642776702384
Iteration: 12, Func. Count: 107, Neg. LLF: 139.16196024180394
Iteration: 13, Func. Count: 115, Neg. LLF: 138.9015172263332
Iteration: 14, Func. Count: 123, Neg. LLF: 138.8646863289886
Iteration: 15, Func. Count: 131, Neg. LLF: 138.8364069417691
Iteration: 16, Func. Count: 139, Neg. LLF: 138.7503294822979
Iteration: 17, Func. Count: 147, Neg. LLF: 138.74628522036232
Iteration: 18, Func. Count: 155, Neg. LLF: 138.74586243452816
Iteration: 19, Func. Count: 163, Neg. LLF: 138.74577457168562
Iteration: 20, Func. Count: 170, Neg. LLF: 138.74577445035402
Optimization terminated successfully (Exit mode 0)
Current function value: 138.74577457168562
Iterations: 20
Function evaluations: 170
Gradient evaluations: 20
Iteration: 1, Func. Count: 10, Neg. LLF: 176.81078480127016
Iteration: 2, Func. Count: 20, Neg. LLF: 153.09574263816629
Iteration: 3, Func. Count: 31, Neg. LLF: 146.5115306946252
Iteration: 4, Func. Count: 41, Neg. LLF: 151.05943591588104
Iteration: 5, Func. Count: 51, Neg. LLF: 157.49354570602364
Iteration: 6, Func. Count: 61, Neg. LLF: 142.54531328279268
Iteration: 7, Func. Count: 71, Neg. LLF: 144.9268627449938
Iteration: 8, Func. Count: 81, Neg. LLF: 138.85630236379424
Iteration: 9, Func. Count: 90, Neg. LLF: 138.7781385848545
Iteration: 10, Func. Count: 99, Neg. LLF: 138.75866081453316
Iteration: 11, Func. Count: 108, Neg. LLF: 138.75201747498338
Iteration: 12, Func. Count: 117, Neg. LLF: 138.74849918020516
Iteration: 13, Func. Count: 126, Neg. LLF: 138.74578476731293
Iteration: 14, Func. Count: 135, Neg. LLF: 138.7457744386597
Iteration: 15, Func. Count: 143, Neg. LLF: 138.74577442502715
Optimization terminated successfully (Exit mode 0)
Current function value: 138.7457744386597
Iterations: 15
Function evaluations: 143
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 209.25366120633302
Iteration: 2, Func. Count: 22, Neg. LLF: 146.93237825120096
Iteration: 3, Func. Count: 33, Neg. LLF: 166.34573146056192
Iteration: 4, Func. Count: 44, Neg. LLF: 159.53597351475986
Iteration: 5, Func. Count: 55, Neg. LLF: 139.57052569777434
Iteration: 6, Func. Count: 65, Neg. LLF: 140.25235446174153
Iteration: 7, Func. Count: 77, Neg. LLF: 173.13761389782405
Iteration: 8, Func. Count: 89, Neg. LLF: 138.8011429413528
Iteration: 9, Func. Count: 99, Neg. LLF: 138.74313059523496
Iteration: 10, Func. Count: 109, Neg. LLF: 138.72798608139348
Iteration: 11, Func. Count: 119, Neg. LLF: 138.7225552116831
Iteration: 12, Func. Count: 129, Neg. LLF: 138.71792855581774
Iteration: 13, Func. Count: 139, Neg. LLF: 138.7098636632341
Iteration: 14, Func. Count: 149, Neg. LLF: 138.70728975478488
Iteration: 15, Func. Count: 159, Neg. LLF: 138.7060159441024
Iteration: 16, Func. Count: 169, Neg. LLF: 138.70589401348084
Iteration: 17, Func. Count: 179, Neg. LLF: 138.7058814865717
Iteration: 18, Func. Count: 188, Neg. LLF: 138.70588136567136
Optimization terminated successfully (Exit mode 0)
Current function value: 138.7058814865717
Iterations: 18
Function evaluations: 188
Gradient evaluations: 18
Iteration: 1, Func. Count: 12, Neg. LLF: 207.62373594471487
Iteration: 2, Func. Count: 24, Neg. LLF: 146.6865605737063
Iteration: 3, Func. Count: 36, Neg. LLF: 163.4675238862465
Iteration: 4, Func. Count: 48, Neg. LLF: 157.4104437902174
Iteration: 5, Func. Count: 60, Neg. LLF: 139.7362810541006
Iteration: 6, Func. Count: 71, Neg. LLF: 142.5343605681421
Iteration: 7, Func. Count: 84, Neg. LLF: 164.81774405127942
Iteration: 8, Func. Count: 97, Neg. LLF: 147.6434930829968
Iteration: 9, Func. Count: 109, Neg. LLF: 138.56190101620174
Iteration: 10, Func. Count: 120, Neg. LLF: 148.6717931759545
Iteration: 11, Func. Count: 132, Neg. LLF: 138.42541449986084
Iteration: 12, Func. Count: 143, Neg. LLF: 138.3512909936851
Iteration: 13, Func. Count: 154, Neg. LLF: 138.3254556691638
Iteration: 14, Func. Count: 165, Neg. LLF: 138.32440374298992
Iteration: 15, Func. Count: 176, Neg. LLF: 138.32422515673792
Iteration: 16, Func. Count: 187, Neg. LLF: 138.32421380391185
Iteration: 17, Func. Count: 197, Neg. LLF: 138.3242136766076
Optimization terminated successfully (Exit mode 0)
Current function value: 138.32421380391185
Iterations: 17
Function evaluations: 197
Gradient evaluations: 17
Iteration: 1, Func. Count: 9, Neg. LLF: 160.83383291952725
Iteration: 2, Func. Count: 18, Neg. LLF: 147.7913106659229
Iteration: 3, Func. Count: 27, Neg. LLF: 148.36611501794016
Iteration: 4, Func. Count: 38, Neg. LLF: 147.7795617917548
Iteration: 5, Func. Count: 47, Neg. LLF: 143.86333282586932
Iteration: 6, Func. Count: 55, Neg. LLF: 142.27444063496696
Iteration: 7, Func. Count: 63, Neg. LLF: 2329.898337796603
Iteration: 8, Func. Count: 72, Neg. LLF: 525.4041536862218
Iteration: 9, Func. Count: 81, Neg. LLF: 526.2344609669703
Iteration: 10, Func. Count: 90, Neg. LLF: 478.0038140689685
Iteration: 11, Func. Count: 99, Neg. LLF: 157.05853412621244
Iteration: 12, Func. Count: 108, Neg. LLF: 142.06774147943602
Iteration: 13, Func. Count: 117, Neg. LLF: 139.23232445223528
Iteration: 14, Func. Count: 125, Neg. LLF: 138.66454593312912
Iteration: 15, Func. Count: 133, Neg. LLF: 138.29178186447243
Iteration: 16, Func. Count: 141, Neg. LLF: 252.7929828153372
Iteration: 17, Func. Count: 150, Neg. LLF: 138.287347010011
Iteration: 18, Func. Count: 159, Neg. LLF: 137.50132001622973
Iteration: 19, Func. Count: 167, Neg. LLF: 137.46607847274615
Iteration: 20, Func. Count: 175, Neg. LLF: 137.46153924708258
Iteration: 21, Func. Count: 183, Neg. LLF: 137.46114252876637
Iteration: 22, Func. Count: 191, Neg. LLF: 137.46106275639383
Iteration: 23, Func. Count: 198, Neg. LLF: 137.46106269821325
Optimization terminated successfully (Exit mode 0)
Current function value: 137.46106275639383
Iterations: 23
Function evaluations: 198
Gradient evaluations: 23
Iteration: 1, Func. Count: 10, Neg. LLF: 174.7883910254702
Iteration: 2, Func. Count: 21, Neg. LLF: 174.11070619153776
Iteration: 3, Func. Count: 31, Neg. LLF: 156.2939625486156
Iteration: 4, Func. Count: 41, Neg. LLF: 157.51791487448
Iteration: 5, Func. Count: 51, Neg. LLF: 147.79835641101855
Iteration: 6, Func. Count: 61, Neg. LLF: 147.013982225767
Iteration: 7, Func. Count: 71, Neg. LLF: 146.57024540838933
Iteration: 8, Func. Count: 81, Neg. LLF: 139.02253247180303
Iteration: 9, Func. Count: 90, Neg. LLF: 138.9738991525706
Iteration: 10, Func. Count: 100, Neg. LLF: 138.67644768336876
Iteration: 11, Func. Count: 109, Neg. LLF: 138.37059285947072
Iteration: 12, Func. Count: 118, Neg. LLF: 138.23787155582207
Iteration: 13, Func. Count: 127, Neg. LLF: 137.85321387378653
Iteration: 14, Func. Count: 136, Neg. LLF: 137.65221703827225
Iteration: 15, Func. Count: 145, Neg. LLF: 137.56637689740805
Iteration: 16, Func. Count: 154, Neg. LLF: 137.54035184061294
Iteration: 17, Func. Count: 163, Neg. LLF: 137.49182482631235
Iteration: 18, Func. Count: 172, Neg. LLF: 137.46266098083905
Iteration: 19, Func. Count: 181, Neg. LLF: 137.46115125597873
Iteration: 20, Func. Count: 190, Neg. LLF: 137.46106268742815
Iteration: 21, Func. Count: 198, Neg. LLF: 137.46106266362665
Optimization terminated successfully (Exit mode 0)
Current function value: 137.46106268742815
Iterations: 21
Function evaluations: 198
Gradient evaluations: 21
Iteration: 1, Func. Count: 11, Neg. LLF: 151.25534657169052
Iteration: 2, Func. Count: 23, Neg. LLF: 159.272716733237
Iteration: 3, Func. Count: 36, Neg. LLF: 151.98110132865114
Iteration: 4, Func. Count: 47, Neg. LLF: 147.14708025154005
Iteration: 5, Func. Count: 58, Neg. LLF: 149.06638260386316
Iteration: 6, Func. Count: 69, Neg. LLF: 156.35195110742538
Iteration: 7, Func. Count: 80, Neg. LLF: 146.68950815908403
Iteration: 8, Func. Count: 91, Neg. LLF: 139.04240900703462
Iteration: 9, Func. Count: 101, Neg. LLF: 139.63820379869782
Iteration: 10, Func. Count: 112, Neg. LLF: 140.08464253943103
Iteration: 11, Func. Count: 123, Neg. LLF: 137.9898814031441
Iteration: 12, Func. Count: 133, Neg. LLF: 137.57979331860557
Iteration: 13, Func. Count: 143, Neg. LLF: 137.48302872611708
Iteration: 14, Func. Count: 153, Neg. LLF: 137.46652646189347
Iteration: 15, Func. Count: 163, Neg. LLF: 137.46236846554214
Iteration: 16, Func. Count: 173, Neg. LLF: 137.46155095743438
Iteration: 17, Func. Count: 183, Neg. LLF: 137.46121776143397
Iteration: 18, Func. Count: 193, Neg. LLF: 137.46110017202196
Iteration: 19, Func. Count: 203, Neg. LLF: 137.46106678710996
Iteration: 20, Func. Count: 213, Neg. LLF: 137.46106264325667
Iteration: 21, Func. Count: 222, Neg. LLF: 137.46106283335214
Optimization terminated successfully (Exit mode 0)
Current function value: 137.46106264325667
Iterations: 21
Function evaluations: 222
Gradient evaluations: 21
Iteration: 1, Func. Count: 12, Neg. LLF: 215.4425768903079
Iteration: 2, Func. Count: 24, Neg. LLF: 146.40298967945864
Iteration: 3, Func. Count: 36, Neg. LLF: 162.03095369019186
Iteration: 4, Func. Count: 48, Neg. LLF: 138.76738206360787
Iteration: 5, Func. Count: 59, Neg. LLF: 156.8241129267364
Iteration: 6, Func. Count: 73, Neg. LLF: 151.97896860427107
Iteration: 7, Func. Count: 85, Neg. LLF: 137.64269050537905
Iteration: 8, Func. Count: 96, Neg. LLF: 137.53775547728696
Iteration: 9, Func. Count: 107, Neg. LLF: 137.5248286426793
Iteration: 10, Func. Count: 119, Neg. LLF: 137.35528676355693
Iteration: 11, Func. Count: 130, Neg. LLF: 137.33909029834732
Iteration: 12, Func. Count: 141, Neg. LLF: 137.33797585453922
Iteration: 13, Func. Count: 152, Neg. LLF: 137.33777805023072
Iteration: 14, Func. Count: 163, Neg. LLF: 137.3377049546375
Iteration: 15, Func. Count: 174, Neg. LLF: 137.33769170959084
Iteration: 16, Func. Count: 185, Neg. LLF: 137.33767900170636
Iteration: 17, Func. Count: 196, Neg. LLF: 137.33767828385425
Optimization terminated successfully (Exit mode 0)
Current function value: 137.33767828385425
Iterations: 17
Function evaluations: 196
Gradient evaluations: 17
Iteration: 1, Func. Count: 13, Neg. LLF: 213.69639308505424
Iteration: 2, Func. Count: 26, Neg. LLF: 146.38658030917296
Iteration: 3, Func. Count: 39, Neg. LLF: 159.8395848534538
Iteration: 4, Func. Count: 52, Neg. LLF: 139.30906726477644
Iteration: 5, Func. Count: 64, Neg. LLF: 163.8327229474391
Iteration: 6, Func. Count: 79, Neg. LLF: 167.68831400178382
Iteration: 7, Func. Count: 92, Neg. LLF: 138.49780424096306
Iteration: 8, Func. Count: 105, Neg. LLF: 159.74487507118062
Iteration: 9, Func. Count: 118, Neg. LLF: 136.7663933456461
Iteration: 10, Func. Count: 130, Neg. LLF: 136.73936958408692
Iteration: 11, Func. Count: 142, Neg. LLF: 136.73894470972218
Iteration: 12, Func. Count: 155, Neg. LLF: 136.7348238259234
Iteration: 13, Func. Count: 167, Neg. LLF: 136.73347826242411
Iteration: 14, Func. Count: 179, Neg. LLF: 136.73341007613155
Iteration: 15, Func. Count: 191, Neg. LLF: 136.7334070216257
Iteration: 16, Func. Count: 202, Neg. LLF: 136.73340689576102
Optimization terminated successfully (Exit mode 0)
Current function value: 136.7334070216257
Iterations: 16
Function evaluations: 202
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 160.65339028281787
Iteration: 2, Func. Count: 20, Neg. LLF: 148.52491059967997
Iteration: 3, Func. Count: 30, Neg. LLF: 148.65581896711933
Iteration: 4, Func. Count: 42, Neg. LLF: 149.620189608754
Iteration: 5, Func. Count: 52, Neg. LLF: 144.02807595218513
Iteration: 6, Func. Count: 61, Neg. LLF: 142.79373851711748
Iteration: 7, Func. Count: 70, Neg. LLF: 163.53007608460067
Iteration: 8, Func. Count: 80, Neg. LLF: 488.3584169320492
Iteration: 9, Func. Count: 90, Neg. LLF: 454.79816413739024
Iteration: 10, Func. Count: 100, Neg. LLF: 435.0439589508401
Iteration: 11, Func. Count: 110, Neg. LLF: 413.4923213617317
Iteration: 12, Func. Count: 120, Neg. LLF: 144.02587899908121
Iteration: 13, Func. Count: 130, Neg. LLF: 139.6181857793685
Iteration: 14, Func. Count: 140, Neg. LLF: 138.7233919898651
Iteration: 15, Func. Count: 149, Neg. LLF: 138.09736805305383
Iteration: 16, Func. Count: 158, Neg. LLF: 137.53106226842496
Iteration: 17, Func. Count: 167, Neg. LLF: 193.9747414445794
Iteration: 18, Func. Count: 178, Neg. LLF: 137.5084597772848
Iteration: 19, Func. Count: 188, Neg. LLF: 137.3774587753594
Iteration: 20, Func. Count: 197, Neg. LLF: 137.3659625098455
Iteration: 21, Func. Count: 206, Neg. LLF: 137.3653904074284
Iteration: 22, Func. Count: 215, Neg. LLF: 137.36537199077884
Iteration: 23, Func. Count: 223, Neg. LLF: 137.36537193431047
Optimization terminated successfully (Exit mode 0)
Current function value: 137.36537199077884
Iterations: 23
Function evaluations: 223
Gradient evaluations: 23
Iteration: 1, Func. Count: 11, Neg. LLF: 175.44461308107552
Iteration: 2, Func. Count: 23, Neg. LLF: 175.86916963726878
Iteration: 3, Func. Count: 34, Neg. LLF: 144.8445107050099
Iteration: 4, Func. Count: 45, Neg. LLF: 148.1498080638497
Iteration: 5, Func. Count: 56, Neg. LLF: 152.92983191781215
Iteration: 6, Func. Count: 67, Neg. LLF: 151.01592236225176
Iteration: 7, Func. Count: 78, Neg. LLF: 139.63069635059313
Iteration: 8, Func. Count: 88, Neg. LLF: 147.3931205795183
Iteration: 9, Func. Count: 99, Neg. LLF: 143.079773488285
Iteration: 10, Func. Count: 110, Neg. LLF: 138.11187280671004
Iteration: 11, Func. Count: 120, Neg. LLF: 138.02830855972823
Iteration: 12, Func. Count: 130, Neg. LLF: 137.9004341521506
Iteration: 13, Func. Count: 140, Neg. LLF: 137.67770611795643
Iteration: 14, Func. Count: 150, Neg. LLF: 137.52162882114243
Iteration: 15, Func. Count: 160, Neg. LLF: 137.38560160866155
Iteration: 16, Func. Count: 170, Neg. LLF: 137.367694357036
Iteration: 17, Func. Count: 180, Neg. LLF: 137.36594531003527
Iteration: 18, Func. Count: 190, Neg. LLF: 137.3653958929578
Iteration: 19, Func. Count: 200, Neg. LLF: 137.36537504152176
Iteration: 20, Func. Count: 210, Neg. LLF: 137.36537202832002
Iteration: 21, Func. Count: 219, Neg. LLF: 137.36537204030864
Optimization terminated successfully (Exit mode 0)
Current function value: 137.36537202832002
Iterations: 21
Function evaluations: 219
Gradient evaluations: 21
Iteration: 1, Func. Count: 12, Neg. LLF: 152.88792029556805
Iteration: 2, Func. Count: 25, Neg. LLF: 155.15087870600647
Iteration: 3, Func. Count: 38, Neg. LLF: 156.69127904081256
Iteration: 4, Func. Count: 50, Neg. LLF: 149.76762238220158
Iteration: 5, Func. Count: 62, Neg. LLF: 154.14062088805363
Iteration: 6, Func. Count: 74, Neg. LLF: 154.93041237676357
Iteration: 7, Func. Count: 86, Neg. LLF: 154.9129387039417
Iteration: 8, Func. Count: 98, Neg. LLF: 1070.4455706525227
Iteration: 9, Func. Count: 110, Neg. LLF: 141.09068205389818
Iteration: 10, Func. Count: 122, Neg. LLF: 245.2782272806903
Iteration: 11, Func. Count: 134, Neg. LLF: 138.36245046733214
Iteration: 12, Func. Count: 145, Neg. LLF: 345.8525819928472
Iteration: 13, Func. Count: 157, Neg. LLF: 137.6589702083944
Iteration: 14, Func. Count: 168, Neg. LLF: 138.39874571378272
Iteration: 15, Func. Count: 180, Neg. LLF: 137.39769860744906
Iteration: 16, Func. Count: 191, Neg. LLF: 137.37463761369304
Iteration: 17, Func. Count: 202, Neg. LLF: 137.36793447925345
Iteration: 18, Func. Count: 213, Neg. LLF: 137.3657217147427
Iteration: 19, Func. Count: 224, Neg. LLF: 137.3655009750325
Iteration: 20, Func. Count: 235, Neg. LLF: 137.36539596053888
Iteration: 21, Func. Count: 246, Neg. LLF: 137.36537700936506
Iteration: 22, Func. Count: 257, Neg. LLF: 137.36537235855107
Iteration: 23, Func. Count: 267, Neg. LLF: 137.36537264886698
Optimization terminated successfully (Exit mode 0)
Current function value: 137.36537235855107
Iterations: 23
Function evaluations: 267
Gradient evaluations: 23
Iteration: 1, Func. Count: 13, Neg. LLF: 211.1047379591258
Iteration: 2, Func. Count: 26, Neg. LLF: 146.2414649041708
Iteration: 3, Func. Count: 39, Neg. LLF: 161.26860974803446
Iteration: 4, Func. Count: 52, Neg. LLF: 139.86787726100906
Iteration: 5, Func. Count: 64, Neg. LLF: 143.81246933979534
Iteration: 6, Func. Count: 80, Neg. LLF: 227.58626979837865
Iteration: 7, Func. Count: 93, Neg. LLF: 138.30520275153629
Iteration: 8, Func. Count: 106, Neg. LLF: 141.5012260325062
Iteration: 9, Func. Count: 119, Neg. LLF: 137.31202872130217
Iteration: 10, Func. Count: 131, Neg. LLF: 137.35583673578932
Iteration: 11, Func. Count: 144, Neg. LLF: 137.26220854636514
Iteration: 12, Func. Count: 156, Neg. LLF: 137.25800368417066
Iteration: 13, Func. Count: 168, Neg. LLF: 137.25770857563265
Iteration: 14, Func. Count: 180, Neg. LLF: 137.25767606314332
Iteration: 15, Func. Count: 192, Neg. LLF: 137.2576755287388
Optimization terminated successfully (Exit mode 0)
Current function value: 137.2576755287388
Iterations: 15
Function evaluations: 192
Gradient evaluations: 15
Iteration: 1, Func. Count: 14, Neg. LLF: 209.94401216470723
Iteration: 2, Func. Count: 28, Neg. LLF: 146.2851512365203
Iteration: 3, Func. Count: 42, Neg. LLF: 159.24199049551572
Iteration: 4, Func. Count: 56, Neg. LLF: 141.80877847216095
Iteration: 5, Func. Count: 70, Neg. LLF: 138.18592726371458
Iteration: 6, Func. Count: 83, Neg. LLF: 234.59988912796112
Iteration: 7, Func. Count: 97, Neg. LLF: 144.81115538307327
Iteration: 8, Func. Count: 113, Neg. LLF: 162.54593173844125
Iteration: 9, Func. Count: 127, Neg. LLF: 138.11634123217266
Iteration: 10, Func. Count: 141, Neg. LLF: 136.79317540219697
Iteration: 11, Func. Count: 154, Neg. LLF: 136.74457272367587
Iteration: 12, Func. Count: 167, Neg. LLF: 136.7345911873276
Iteration: 13, Func. Count: 180, Neg. LLF: 136.7337573057829
Iteration: 14, Func. Count: 193, Neg. LLF: 136.73349788837857
Iteration: 15, Func. Count: 206, Neg. LLF: 136.73341342435748
Iteration: 16, Func. Count: 219, Neg. LLF: 136.7334070956585
Iteration: 17, Func. Count: 231, Neg. LLF: 136.73340696980125
Optimization terminated successfully (Exit mode 0)
Current function value: 136.7334070956585
Iterations: 17
Function evaluations: 231
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 154.59914453382208
Iteration: 2, Func. Count: 22, Neg. LLF: 155.69838615460313
Iteration: 3, Func. Count: 33, Neg. LLF: 144.93308897997136
Iteration: 4, Func. Count: 44, Neg. LLF: 142.97021880713191
Iteration: 5, Func. Count: 54, Neg. LLF: 141.84388517234507
Iteration: 6, Func. Count: 64, Neg. LLF: 139.42568529721376
Iteration: 7, Func. Count: 74, Neg. LLF: 207.94397952898154
Iteration: 8, Func. Count: 85, Neg. LLF: 2205.049958679873
Iteration: 9, Func. Count: 96, Neg. LLF: 1366.520420154937
Iteration: 10, Func. Count: 107, Neg. LLF: 184.54698566275593
Iteration: 11, Func. Count: 118, Neg. LLF: 142.2787615192152
Iteration: 12, Func. Count: 129, Neg. LLF: 139.44718871550964
Iteration: 13, Func. Count: 140, Neg. LLF: 138.48053309440832
Iteration: 14, Func. Count: 151, Neg. LLF: 137.32791306915968
Iteration: 15, Func. Count: 162, Neg. LLF: 137.00565277231837
Iteration: 16, Func. Count: 172, Neg. LLF: 186.46738691674693
Iteration: 17, Func. Count: 184, Neg. LLF: 137.3409996074184
Iteration: 18, Func. Count: 195, Neg. LLF: 136.91859594424767
Iteration: 19, Func. Count: 206, Neg. LLF: 136.88057854885713
Iteration: 20, Func. Count: 216, Neg. LLF: 136.87213682561077
Iteration: 21, Func. Count: 226, Neg. LLF: 136.8670000051791
Iteration: 22, Func. Count: 236, Neg. LLF: 136.8665796477469
Iteration: 23, Func. Count: 246, Neg. LLF: 136.8665572115889
Iteration: 24, Func. Count: 255, Neg. LLF: 136.86655717974816
Optimization terminated successfully (Exit mode 0)
Current function value: 136.8665572115889
Iterations: 24
Function evaluations: 255
Gradient evaluations: 24
Iteration: 1, Func. Count: 12, Neg. LLF: 150.11753693942916
Iteration: 2, Func. Count: 25, Neg. LLF: 183.13571939249854
Iteration: 3, Func. Count: 37, Neg. LLF: 146.11133148814773
Iteration: 4, Func. Count: 49, Neg. LLF: 162.33758594004195
Iteration: 5, Func. Count: 61, Neg. LLF: 150.14857439486894
Iteration: 6, Func. Count: 73, Neg. LLF: 141.986922613759
Iteration: 7, Func. Count: 85, Neg. LLF: 139.36238543980036
Iteration: 8, Func. Count: 97, Neg. LLF: 137.7601338083428
Iteration: 9, Func. Count: 108, Neg. LLF: 137.56617137564263
Iteration: 10, Func. Count: 119, Neg. LLF: 138.76357816541335
Iteration: 11, Func. Count: 132, Neg. LLF: 137.23933005013646
Iteration: 12, Func. Count: 143, Neg. LLF: 137.05504330955202
Iteration: 13, Func. Count: 154, Neg. LLF: 136.82554427632886
Iteration: 14, Func. Count: 165, Neg. LLF: 136.68363954218142
Iteration: 15, Func. Count: 176, Neg. LLF: 136.66278684647145
Iteration: 16, Func. Count: 187, Neg. LLF: 136.65941427564132
Iteration: 17, Func. Count: 198, Neg. LLF: 136.65844777343844
Iteration: 18, Func. Count: 209, Neg. LLF: 136.65827894403643
Iteration: 19, Func. Count: 220, Neg. LLF: 136.65822568354588
Iteration: 20, Func. Count: 231, Neg. LLF: 136.65817112435718
Iteration: 21, Func. Count: 242, Neg. LLF: 136.6581607083091
Iteration: 22, Func. Count: 253, Neg. LLF: 136.65815983214137
Optimization terminated successfully (Exit mode 0)
Current function value: 136.65815983214137
Iterations: 22
Function evaluations: 253
Gradient evaluations: 22
Iteration: 1, Func. Count: 13, Neg. LLF: 201.18886703335855
Iteration: 2, Func. Count: 26, Neg. LLF: 142.43667091522664
Iteration: 3, Func. Count: 39, Neg. LLF: 138.07031772232713
Iteration: 4, Func. Count: 51, Neg. LLF: 165.97593879378172
Iteration: 5, Func. Count: 64, Neg. LLF: 151.1844845424516
Iteration: 6, Func. Count: 77, Neg. LLF: 137.71044123563053
Iteration: 7, Func. Count: 90, Neg. LLF: 139.3713475716485
Iteration: 8, Func. Count: 103, Neg. LLF: 139.71723191367448
Iteration: 9, Func. Count: 116, Neg. LLF: 136.76626719602558
Iteration: 10, Func. Count: 128, Neg. LLF: 136.75424310117182
Iteration: 11, Func. Count: 140, Neg. LLF: 136.74181013218598
Iteration: 12, Func. Count: 152, Neg. LLF: 136.7349865635532
Iteration: 13, Func. Count: 164, Neg. LLF: 136.7323108308633
Iteration: 14, Func. Count: 176, Neg. LLF: 136.72628669542283
Iteration: 15, Func. Count: 188, Neg. LLF: 136.66287274445273
Iteration: 16, Func. Count: 200, Neg. LLF: 136.66099968047453
Iteration: 17, Func. Count: 212, Neg. LLF: 136.65968098972508
Iteration: 18, Func. Count: 224, Neg. LLF: 136.65829994198498
Iteration: 19, Func. Count: 236, Neg. LLF: 136.658034042535
Iteration: 20, Func. Count: 248, Neg. LLF: 136.65776820805047
Iteration: 21, Func. Count: 270, Neg. LLF: 136.65734443061956
Iteration: 22, Func. Count: 292, Neg. LLF: 136.749553805692
Iteration: 23, Func. Count: 306, Neg. LLF: 136.65914182262145
Iteration: 24, Func. Count: 319, Neg. LLF: 136.65847299943954
Iteration: 25, Func. Count: 332, Neg. LLF: 136.65816094120513
Iteration: 26, Func. Count: 345, Neg. LLF: 136.65815982034928
Iteration: 27, Func. Count: 356, Neg. LLF: 136.65816001342006
Optimization terminated successfully (Exit mode 0)
Current function value: 136.65815982034928
Iterations: 28
Function evaluations: 356
Gradient evaluations: 27
Iteration: 1, Func. Count: 14, Neg. LLF: 198.57403598764665
Iteration: 2, Func. Count: 28, Neg. LLF: 140.46970796855044
Iteration: 3, Func. Count: 41, Neg. LLF: 138.23826566377613
Iteration: 4, Func. Count: 54, Neg. LLF: 172.807358784337
Iteration: 5, Func. Count: 72, Neg. LLF: 154.44462461714966
Iteration: 6, Func. Count: 86, Neg. LLF: 155.50956014391554
Iteration: 7, Func. Count: 100, Neg. LLF: 140.90235553258776
Iteration: 8, Func. Count: 114, Neg. LLF: 137.03206533183504
Iteration: 9, Func. Count: 127, Neg. LLF: 137.6782266452489
Iteration: 10, Func. Count: 142, Neg. LLF: 145.00425382560076
Iteration: 11, Func. Count: 157, Neg. LLF: 136.757645170916
Iteration: 12, Func. Count: 170, Neg. LLF: 136.74769056272945
Iteration: 13, Func. Count: 183, Neg. LLF: 136.74350259338271
Iteration: 14, Func. Count: 196, Neg. LLF: 136.73943007999105
Iteration: 15, Func. Count: 209, Neg. LLF: 136.73561404013776
Iteration: 16, Func. Count: 222, Neg. LLF: 136.73420522974646
Iteration: 17, Func. Count: 235, Neg. LLF: 136.73306517572078
Iteration: 18, Func. Count: 248, Neg. LLF: 136.728924463917
Iteration: 19, Func. Count: 261, Neg. LLF: 136.6612818493646
Iteration: 20, Func. Count: 274, Neg. LLF: 142.97774380715632
Iteration: 21, Func. Count: 289, Neg. LLF: 136.66379019819303
Iteration: 22, Func. Count: 303, Neg. LLF: 136.66434367671224
Iteration: 23, Func. Count: 317, Neg. LLF: 136.65844069952075
Iteration: 24, Func. Count: 331, Neg. LLF: 136.65825660458634
Iteration: 25, Func. Count: 344, Neg. LLF: 136.65816003371276
Optimization terminated successfully (Exit mode 0)
Current function value: 136.65815984235405
Iterations: 26
Function evaluations: 344
Gradient evaluations: 25
Iteration: 1, Func. Count: 15, Neg. LLF: 196.36450304459026
Iteration: 2, Func. Count: 30, Neg. LLF: 140.82261497286638
Iteration: 3, Func. Count: 44, Neg. LLF: 143.0787485820182
Iteration: 4, Func. Count: 60, Neg. LLF: 1044.5629609631478
Iteration: 5, Func. Count: 75, Neg. LLF: 151.2491872518718
Iteration: 6, Func. Count: 92, Neg. LLF: 57313057.668237746
Iteration: 7, Func. Count: 107, Neg. LLF: 138.00405942260332
Iteration: 8, Func. Count: 122, Neg. LLF: 136.9355705816578
Iteration: 9, Func. Count: 136, Neg. LLF: 136.81211189576973
Iteration: 10, Func. Count: 150, Neg. LLF: 138.1112405405267
Iteration: 11, Func. Count: 165, Neg. LLF: 136.7786720359864
Iteration: 12, Func. Count: 179, Neg. LLF: 136.75008725107318
Iteration: 13, Func. Count: 193, Neg. LLF: 136.7408369077212
Iteration: 14, Func. Count: 207, Neg. LLF: 136.73437902769822
Iteration: 15, Func. Count: 221, Neg. LLF: 136.73346568444381
Iteration: 16, Func. Count: 235, Neg. LLF: 136.73253188096572
Iteration: 17, Func. Count: 249, Neg. LLF: 136.66240590062105
Iteration: 18, Func. Count: 263, Neg. LLF: 136.95658252343003
Iteration: 19, Func. Count: 278, Neg. LLF: 140.24715028387686
Iteration: 20, Func. Count: 294, Neg. LLF: 136.67806984656553
Iteration: 21, Func. Count: 309, Neg. LLF: 136.65867616135856
Iteration: 22, Func. Count: 323, Neg. LLF: 136.65930378158737
Iteration: 23, Func. Count: 338, Neg. LLF: 136.65829651017077
Iteration: 24, Func. Count: 352, Neg. LLF: 136.65815983369575
Iteration: 25, Func. Count: 365, Neg. LLF: 136.65815993888793
Optimization terminated successfully (Exit mode 0)
Current function value: 136.65815983369575
Iterations: 26
Function evaluations: 365
Gradient evaluations: 25
Iteration: 1, Func. Count: 8, Neg. LLF: 151.0681960165525
Iteration: 2, Func. Count: 16, Neg. LLF: 149.4033692135246
Iteration: 3, Func. Count: 25, Neg. LLF: 162.36171381548178
Iteration: 4, Func. Count: 33, Neg. LLF: 146.0213198369636
Iteration: 5, Func. Count: 40, Neg. LLF: 145.11992184763102
Iteration: 6, Func. Count: 47, Neg. LLF: 144.31506068241612
Iteration: 7, Func. Count: 54, Neg. LLF: 143.76030996240746
Iteration: 8, Func. Count: 61, Neg. LLF: 150.44358350678766
Iteration: 9, Func. Count: 69, Neg. LLF: 167.2634276611898
Iteration: 10, Func. Count: 77, Neg. LLF: 143.08872500926228
Iteration: 11, Func. Count: 84, Neg. LLF: 142.37776204510283
Iteration: 12, Func. Count: 91, Neg. LLF: 141.7509317469495
Iteration: 13, Func. Count: 98, Neg. LLF: 155.62148707790303
Iteration: 14, Func. Count: 106, Neg. LLF: 176.3781756707687
Iteration: 15, Func. Count: 114, Neg. LLF: 209.4417234114457
Iteration: 16, Func. Count: 122, Neg. LLF: 142.66569693641193
Iteration: 17, Func. Count: 130, Neg. LLF: 140.96197125375852
Iteration: 18, Func. Count: 138, Neg. LLF: 140.83068911653803
Iteration: 19, Func. Count: 145, Neg. LLF: 140.81276017643523
Iteration: 20, Func. Count: 152, Neg. LLF: 140.81156325241443
Iteration: 21, Func. Count: 159, Neg. LLF: 140.8102931853925
Iteration: 22, Func. Count: 166, Neg. LLF: 140.8102879583444
Iteration: 23, Func. Count: 172, Neg. LLF: 140.81028785453407
Optimization terminated successfully (Exit mode 0)
Current function value: 140.8102879583444
Iterations: 23
Function evaluations: 172
Gradient evaluations: 23
Iteration: 1, Func. Count: 9, Neg. LLF: 185.1747607172299
Iteration: 2, Func. Count: 18, Neg. LLF: 152.39518062496973
Iteration: 3, Func. Count: 27, Neg. LLF: 146.2589263475763
Iteration: 4, Func. Count: 36, Neg. LLF: 143.23307035774158
Iteration: 5, Func. Count: 45, Neg. LLF: 140.63967077666462
Iteration: 6, Func. Count: 53, Neg. LLF: 140.33051749282296
Iteration: 7, Func. Count: 61, Neg. LLF: 140.30983318115022
Iteration: 8, Func. Count: 69, Neg. LLF: 140.27217013493046
Iteration: 9, Func. Count: 77, Neg. LLF: 140.26572972360663
Iteration: 10, Func. Count: 85, Neg. LLF: 140.26072698226758
Iteration: 11, Func. Count: 93, Neg. LLF: 140.25924858740703
Iteration: 12, Func. Count: 101, Neg. LLF: 140.2590523461073
Iteration: 13, Func. Count: 109, Neg. LLF: 140.2590000974689
Iteration: 14, Func. Count: 117, Neg. LLF: 140.25896814238098
Iteration: 15, Func. Count: 125, Neg. LLF: 140.2588684893383
Iteration: 16, Func. Count: 133, Neg. LLF: 140.1381894973511
Iteration: 17, Func. Count: 141, Neg. LLF: 140.2268246282981
Iteration: 18, Func. Count: 151, Neg. LLF: 140.9816774862664
Iteration: 19, Func. Count: 160, Neg. LLF: 140.1201182047553
Iteration: 20, Func. Count: 168, Neg. LLF: 140.0994290944239
Iteration: 21, Func. Count: 176, Neg. LLF: 140.00783481171402
Iteration: 22, Func. Count: 184, Neg. LLF: 139.99137501155596
Iteration: 23, Func. Count: 192, Neg. LLF: 139.99543484667583
Iteration: 24, Func. Count: 201, Neg. LLF: 139.97969749019833
Iteration: 25, Func. Count: 209, Neg. LLF: 139.97955093986826
Iteration: 26, Func. Count: 217, Neg. LLF: 139.9795500598197
Optimization terminated successfully (Exit mode 0)
Current function value: 139.9795500598197
Iterations: 26
Function evaluations: 217
Gradient evaluations: 26
Iteration: 1, Func. Count: 10, Neg. LLF: 180.32451601822666
Iteration: 2, Func. Count: 20, Neg. LLF: 146.53387866359185
Iteration: 3, Func. Count: 30, Neg. LLF: 170.54960676841674
Iteration: 4, Func. Count: 40, Neg. LLF: 142.36764367202147
Iteration: 5, Func. Count: 50, Neg. LLF: 140.33578061530298
Iteration: 6, Func. Count: 59, Neg. LLF: 140.2842684467428
Iteration: 7, Func. Count: 68, Neg. LLF: 140.26597798064853
Iteration: 8, Func. Count: 77, Neg. LLF: 140.261728643152
Iteration: 9, Func. Count: 86, Neg. LLF: 140.25965128552946
Iteration: 10, Func. Count: 95, Neg. LLF: 140.25911214770974
Iteration: 11, Func. Count: 104, Neg. LLF: 140.25901089303005
Iteration: 12, Func. Count: 113, Neg. LLF: 140.25897706871504
Iteration: 13, Func. Count: 122, Neg. LLF: 140.25893854350636
Iteration: 14, Func. Count: 131, Neg. LLF: 140.25118539138955
Iteration: 15, Func. Count: 140, Neg. LLF: 140.13501999572424
Iteration: 16, Func. Count: 149, Neg. LLF: 140.1417728303764
Iteration: 17, Func. Count: 159, Neg. LLF: 140.12784575171045
Iteration: 18, Func. Count: 168, Neg. LLF: 140.1275404678325
Iteration: 19, Func. Count: 177, Neg. LLF: 140.1255667740545
Iteration: 20, Func. Count: 186, Neg. LLF: 140.1146268971851
Iteration: 21, Func. Count: 195, Neg. LLF: 140.38804565916354
Iteration: 22, Func. Count: 205, Neg. LLF: 140.29635217748873
Iteration: 23, Func. Count: 215, Neg. LLF: 140.00994110289557
Iteration: 24, Func. Count: 224, Neg. LLF: 140.16071454771696
Iteration: 25, Func. Count: 234, Neg. LLF: 171.52231855423776
Iteration: 26, Func. Count: 245, Neg. LLF: 139.97969651758072
Iteration: 27, Func. Count: 254, Neg. LLF: 139.9795598981148
Iteration: 28, Func. Count: 263, Neg. LLF: 139.979550752149
Iteration: 29, Func. Count: 272, Neg. LLF: 139.9795500726508
Optimization terminated successfully (Exit mode 0)
Current function value: 139.9795500726508
Iterations: 29
Function evaluations: 272
Gradient evaluations: 29
Iteration: 1, Func. Count: 11, Neg. LLF: 159.12213158289
Iteration: 2, Func. Count: 22, Neg. LLF: 182.32500995285596
Iteration: 3, Func. Count: 33, Neg. LLF: 144.2491241335227
Iteration: 4, Func. Count: 44, Neg. LLF: 182.06380145848107
Iteration: 5, Func. Count: 55, Neg. LLF: 141.22715585383605
Iteration: 6, Func. Count: 65, Neg. LLF: 144.38336233929817
Iteration: 7, Func. Count: 79, Neg. LLF: 164.7246429069246
Iteration: 8, Func. Count: 90, Neg. LLF: 140.4786830193863
Iteration: 9, Func. Count: 101, Neg. LLF: 140.05092405356595
Iteration: 10, Func. Count: 111, Neg. LLF: 139.93552667867766
Iteration: 11, Func. Count: 121, Neg. LLF: 139.92566370789854
Iteration: 12, Func. Count: 131, Neg. LLF: 139.92329051535248
Iteration: 13, Func. Count: 141, Neg. LLF: 139.92223306463532
Iteration: 14, Func. Count: 151, Neg. LLF: 139.92048964913687
Iteration: 15, Func. Count: 161, Neg. LLF: 139.91742840859186
Iteration: 16, Func. Count: 171, Neg. LLF: 139.9156239109826
Iteration: 17, Func. Count: 181, Neg. LLF: 139.91442328399748
Iteration: 18, Func. Count: 191, Neg. LLF: 139.9144172082935
Iteration: 19, Func. Count: 200, Neg. LLF: 139.9144170594883
Optimization terminated successfully (Exit mode 0)
Current function value: 139.9144172082935
Iterations: 19
Function evaluations: 200
Gradient evaluations: 19
Iteration: 1, Func. Count: 12, Neg. LLF: 146.89704097590467
Iteration: 2, Func. Count: 24, Neg. LLF: 165.43512495077724
Iteration: 3, Func. Count: 36, Neg. LLF: 151.67044538801693
Iteration: 4, Func. Count: 48, Neg. LLF: 158.2913894283626
Iteration: 5, Func. Count: 60, Neg. LLF: 158.3340982562958
Iteration: 6, Func. Count: 72, Neg. LLF: 141.99068720469828
Iteration: 7, Func. Count: 84, Neg. LLF: 139.78530450725714
Iteration: 8, Func. Count: 95, Neg. LLF: 143.4825794545658
Iteration: 9, Func. Count: 110, Neg. LLF: 142.0487530898073
Iteration: 10, Func. Count: 122, Neg. LLF: 149.39495246546565
Iteration: 11, Func. Count: 135, Neg. LLF: 139.74290358592017
Iteration: 12, Func. Count: 147, Neg. LLF: 139.25823457887046
Iteration: 13, Func. Count: 159, Neg. LLF: 139.15109343137087
Iteration: 14, Func. Count: 170, Neg. LLF: 139.14613565618276
Iteration: 15, Func. Count: 181, Neg. LLF: 139.14331716688721
Iteration: 16, Func. Count: 192, Neg. LLF: 139.1416055144157
Iteration: 17, Func. Count: 203, Neg. LLF: 139.14141055993142
Iteration: 18, Func. Count: 214, Neg. LLF: 139.14138777855655
Iteration: 19, Func. Count: 225, Neg. LLF: 139.14138709320832
Optimization terminated successfully (Exit mode 0)
Current function value: 139.14138709320832
Iterations: 19
Function evaluations: 225
Gradient evaluations: 19
Iteration: 1, Func. Count: 9, Neg. LLF: 150.1930634734522
Iteration: 2, Func. Count: 18, Neg. LLF: 149.78860657014607
Iteration: 3, Func. Count: 29, Neg. LLF: 161.82888710784258
Iteration: 4, Func. Count: 38, Neg. LLF: 145.70293169115553
Iteration: 5, Func. Count: 46, Neg. LLF: 144.93265774700026
Iteration: 6, Func. Count: 54, Neg. LLF: 144.066420455296
Iteration: 7, Func. Count: 62, Neg. LLF: 142.89551478019234
Iteration: 8, Func. Count: 70, Neg. LLF: 158.8847770772927
Iteration: 9, Func. Count: 79, Neg. LLF: 222.29380952987134
Iteration: 10, Func. Count: 88, Neg. LLF: 166.0325963939294
Iteration: 11, Func. Count: 97, Neg. LLF: 210.0637088885871
Iteration: 12, Func. Count: 106, Neg. LLF: 141.0132742771384
Iteration: 13, Func. Count: 115, Neg. LLF: 140.8051745405369
Iteration: 14, Func. Count: 124, Neg. LLF: 142.29117357650128
Iteration: 15, Func. Count: 133, Neg. LLF: 139.47726546888765
Iteration: 16, Func. Count: 141, Neg. LLF: 144.71284706696346
Iteration: 17, Func. Count: 151, Neg. LLF: 139.32562579784053
Iteration: 18, Func. Count: 159, Neg. LLF: 139.29075488660652
Iteration: 19, Func. Count: 167, Neg. LLF: 139.27830635891328
Iteration: 20, Func. Count: 175, Neg. LLF: 139.27738870212497
Iteration: 21, Func. Count: 183, Neg. LLF: 139.27725859473335
Iteration: 22, Func. Count: 191, Neg. LLF: 139.2771672704287
Iteration: 23, Func. Count: 199, Neg. LLF: 139.2770594006514
Iteration: 24, Func. Count: 207, Neg. LLF: 139.2769933170727
Iteration: 25, Func. Count: 215, Neg. LLF: 139.2769580871151
Iteration: 26, Func. Count: 223, Neg. LLF: 139.27695748605862
Optimization terminated successfully (Exit mode 0)
Current function value: 139.27695748605862
Iterations: 26
Function evaluations: 223
Gradient evaluations: 26
Iteration: 1, Func. Count: 10, Neg. LLF: 174.7291838710486
Iteration: 2, Func. Count: 21, Neg. LLF: 168.10666619991844
Iteration: 3, Func. Count: 31, Neg. LLF: 156.1094670722087
Iteration: 4, Func. Count: 41, Neg. LLF: 156.68617007735676
Iteration: 5, Func. Count: 51, Neg. LLF: 148.51085304971042
Iteration: 6, Func. Count: 61, Neg. LLF: 148.37420928725598
Iteration: 7, Func. Count: 71, Neg. LLF: 147.71787118594017
Iteration: 8, Func. Count: 81, Neg. LLF: 140.69424678561106
Iteration: 9, Func. Count: 91, Neg. LLF: 139.69944757324518
Iteration: 10, Func. Count: 100, Neg. LLF: 145.67006982204646
Iteration: 11, Func. Count: 110, Neg. LLF: 139.266223488678
Iteration: 12, Func. Count: 119, Neg. LLF: 139.17139796645682
Iteration: 13, Func. Count: 128, Neg. LLF: 138.91289159608112
Iteration: 14, Func. Count: 137, Neg. LLF: 138.87012913126995
Iteration: 15, Func. Count: 146, Neg. LLF: 138.8436010417122
Iteration: 16, Func. Count: 155, Neg. LLF: 138.75790267853247
Iteration: 17, Func. Count: 164, Neg. LLF: 138.7472569092222
Iteration: 18, Func. Count: 173, Neg. LLF: 138.74598721399067
Iteration: 19, Func. Count: 182, Neg. LLF: 138.7457954634622
Iteration: 20, Func. Count: 191, Neg. LLF: 138.7457746928238
Iteration: 21, Func. Count: 199, Neg. LLF: 138.74577457139796
Optimization terminated successfully (Exit mode 0)
Current function value: 138.7457746928238
Iterations: 21
Function evaluations: 199
Gradient evaluations: 21
Iteration: 1, Func. Count: 11, Neg. LLF: 207.12880261206868
Iteration: 2, Func. Count: 22, Neg. LLF: 150.68482539590337
Iteration: 3, Func. Count: 33, Neg. LLF: 148.69138828035082
Iteration: 4, Func. Count: 44, Neg. LLF: 159.1289848272612
Iteration: 5, Func. Count: 55, Neg. LLF: 140.04446027653665
Iteration: 6, Func. Count: 65, Neg. LLF: 160.45237221263213
Iteration: 7, Func. Count: 78, Neg. LLF: 155.35799223776544
Iteration: 8, Func. Count: 90, Neg. LLF: 139.19459823036078
Iteration: 9, Func. Count: 101, Neg. LLF: 138.79181910151783
Iteration: 10, Func. Count: 111, Neg. LLF: 138.74701831124952
Iteration: 11, Func. Count: 121, Neg. LLF: 138.7461307509261
Iteration: 12, Func. Count: 131, Neg. LLF: 138.74583180017933
Iteration: 13, Func. Count: 141, Neg. LLF: 138.74578670202104
Iteration: 14, Func. Count: 151, Neg. LLF: 138.7457747906692
Iteration: 15, Func. Count: 160, Neg. LLF: 138.74577477712234
Optimization terminated successfully (Exit mode 0)
Current function value: 138.7457747906692
Iterations: 15
Function evaluations: 160
Gradient evaluations: 15
Iteration: 1, Func. Count: 12, Neg. LLF: 174.0824257485657
Iteration: 2, Func. Count: 24, Neg. LLF: 147.74768812025565
Iteration: 3, Func. Count: 36, Neg. LLF: 151.19712534839454
Iteration: 4, Func. Count: 48, Neg. LLF: 166.30463789971373
Iteration: 5, Func. Count: 60, Neg. LLF: 139.62451314917712
Iteration: 6, Func. Count: 71, Neg. LLF: 139.4505983456671
Iteration: 7, Func. Count: 84, Neg. LLF: 154.48330750551227
Iteration: 8, Func. Count: 97, Neg. LLF: 138.7545268882128
Iteration: 9, Func. Count: 108, Neg. LLF: 138.7361094320428
Iteration: 10, Func. Count: 119, Neg. LLF: 138.72478138561124
Iteration: 11, Func. Count: 130, Neg. LLF: 138.71312840011748
Iteration: 12, Func. Count: 141, Neg. LLF: 138.70829397347796
Iteration: 13, Func. Count: 152, Neg. LLF: 138.7066931314347
Iteration: 14, Func. Count: 163, Neg. LLF: 138.7060844769927
Iteration: 15, Func. Count: 174, Neg. LLF: 138.7058830766406
Iteration: 16, Func. Count: 185, Neg. LLF: 138.70588110633497
Iteration: 17, Func. Count: 195, Neg. LLF: 138.7058809852328
Optimization terminated successfully (Exit mode 0)
Current function value: 138.70588110633497
Iterations: 17
Function evaluations: 195
Gradient evaluations: 17
Iteration: 1, Func. Count: 13, Neg. LLF: 180.08524350396593
Iteration: 2, Func. Count: 26, Neg. LLF: 147.73861011339574
Iteration: 3, Func. Count: 39, Neg. LLF: 149.32695171153975
Iteration: 4, Func. Count: 52, Neg. LLF: 161.733380662687
Iteration: 5, Func. Count: 65, Neg. LLF: 139.41771936932307
Iteration: 6, Func. Count: 77, Neg. LLF: 139.64712650863513
Iteration: 7, Func. Count: 91, Neg. LLF: 150.58183251006471
Iteration: 8, Func. Count: 105, Neg. LLF: 146.17339394042514
Iteration: 9, Func. Count: 118, Neg. LLF: 139.1536011646027
Iteration: 10, Func. Count: 131, Neg. LLF: 138.57731689061498
Iteration: 11, Func. Count: 144, Neg. LLF: 138.35785513637026
Iteration: 12, Func. Count: 156, Neg. LLF: 138.32945806012995
Iteration: 13, Func. Count: 168, Neg. LLF: 138.32556435013615
Iteration: 14, Func. Count: 180, Neg. LLF: 138.32431138989594
Iteration: 15, Func. Count: 192, Neg. LLF: 138.32422232066088
Iteration: 16, Func. Count: 204, Neg. LLF: 138.3242137679813
Iteration: 17, Func. Count: 215, Neg. LLF: 138.3242136406755
Optimization terminated successfully (Exit mode 0)
Current function value: 138.3242137679813
Iterations: 17
Function evaluations: 215
Gradient evaluations: 17
Iteration: 1, Func. Count: 10, Neg. LLF: 155.83963909433353
Iteration: 2, Func. Count: 20, Neg. LLF: 146.73091922436453
Iteration: 3, Func. Count: 30, Neg. LLF: 149.51775967101574
Iteration: 4, Func. Count: 41, Neg. LLF: 145.1376335563453
Iteration: 5, Func. Count: 50, Neg. LLF: 142.26077636150467
Iteration: 6, Func. Count: 59, Neg. LLF: 141.5358203685531
Iteration: 7, Func. Count: 68, Neg. LLF: 140.187374640427
Iteration: 8, Func. Count: 77, Neg. LLF: 140.23387606026878
Iteration: 9, Func. Count: 87, Neg. LLF: 138.25110057418226
Iteration: 10, Func. Count: 96, Neg. LLF: 191.72096309398694
Iteration: 11, Func. Count: 106, Neg. LLF: 291.31028205927913
Iteration: 12, Func. Count: 116, Neg. LLF: 203.8212630358469
Iteration: 13, Func. Count: 126, Neg. LLF: 138.32675882562924
Iteration: 14, Func. Count: 136, Neg. LLF: 137.5137637869702
Iteration: 15, Func. Count: 146, Neg. LLF: 137.4234532244241
Iteration: 16, Func. Count: 155, Neg. LLF: 137.41245285509407
Iteration: 17, Func. Count: 164, Neg. LLF: 137.41167434964171
Iteration: 18, Func. Count: 173, Neg. LLF: 137.41158977377492
Iteration: 19, Func. Count: 182, Neg. LLF: 137.41158524584344
Iteration: 20, Func. Count: 190, Neg. LLF: 137.41158518609683
Optimization terminated successfully (Exit mode 0)
Current function value: 137.41158524584344
Iterations: 20
Function evaluations: 190
Gradient evaluations: 20
Iteration: 1, Func. Count: 11, Neg. LLF: 174.9212946720608
Iteration: 2, Func. Count: 23, Neg. LLF: 173.87756196189866
Iteration: 3, Func. Count: 34, Neg. LLF: 156.21896605087755
Iteration: 4, Func. Count: 45, Neg. LLF: 157.64811230344216
Iteration: 5, Func. Count: 56, Neg. LLF: 147.82215632424254
Iteration: 6, Func. Count: 67, Neg. LLF: 147.03599941232648
Iteration: 7, Func. Count: 78, Neg. LLF: 146.5765020112417
Iteration: 8, Func. Count: 89, Neg. LLF: 139.02724637833597
Iteration: 9, Func. Count: 99, Neg. LLF: 139.01187582230816
Iteration: 10, Func. Count: 110, Neg. LLF: 138.70155261558546
Iteration: 11, Func. Count: 120, Neg. LLF: 138.38522666709608
Iteration: 12, Func. Count: 130, Neg. LLF: 138.25045315204798
Iteration: 13, Func. Count: 140, Neg. LLF: 137.8587065223397
Iteration: 14, Func. Count: 150, Neg. LLF: 145.0704942322944
Iteration: 15, Func. Count: 162, Neg. LLF: 137.60856172873181
Iteration: 16, Func. Count: 172, Neg. LLF: 137.56378532722556
Iteration: 17, Func. Count: 182, Neg. LLF: 137.5073512146654
Iteration: 18, Func. Count: 192, Neg. LLF: 137.47255123279072
Iteration: 19, Func. Count: 202, Neg. LLF: 137.41403017316395
Iteration: 20, Func. Count: 212, Neg. LLF: 137.41176555126543
Iteration: 21, Func. Count: 222, Neg. LLF: 137.41158782986497
Iteration: 22, Func. Count: 232, Neg. LLF: 137.41158502366088
Iteration: 23, Func. Count: 241, Neg. LLF: 137.41158499654688
Optimization terminated successfully (Exit mode 0)
Current function value: 137.41158502366088
Iterations: 23
Function evaluations: 241
Gradient evaluations: 23
Iteration: 1, Func. Count: 12, Neg. LLF: 150.258613465296
Iteration: 2, Func. Count: 24, Neg. LLF: 152.53179436491394
Iteration: 3, Func. Count: 36, Neg. LLF: 165.45051377554964
Iteration: 4, Func. Count: 48, Neg. LLF: 139.1323526769201
Iteration: 5, Func. Count: 59, Neg. LLF: 138.0553299759336
Iteration: 6, Func. Count: 70, Neg. LLF: 141.99955120697467
Iteration: 7, Func. Count: 84, Neg. LLF: 152.28263881023858
Iteration: 8, Func. Count: 97, Neg. LLF: 137.66381452820502
Iteration: 9, Func. Count: 108, Neg. LLF: 137.59917323569792
Iteration: 10, Func. Count: 119, Neg. LLF: 137.44618854603203
Iteration: 11, Func. Count: 130, Neg. LLF: 137.4246790023297
Iteration: 12, Func. Count: 141, Neg. LLF: 137.4125909494435
Iteration: 13, Func. Count: 152, Neg. LLF: 137.4116747039511
Iteration: 14, Func. Count: 163, Neg. LLF: 137.41160047979415
Iteration: 15, Func. Count: 174, Neg. LLF: 137.41158702337603
Iteration: 16, Func. Count: 185, Neg. LLF: 137.41158504717885
Iteration: 17, Func. Count: 195, Neg. LLF: 137.41158529863696
Optimization terminated successfully (Exit mode 0)
Current function value: 137.41158504717885
Iterations: 17
Function evaluations: 195
Gradient evaluations: 17
Iteration: 1, Func. Count: 13, Neg. LLF: 208.5654493033507
Iteration: 2, Func. Count: 26, Neg. LLF: 147.31619747434507
Iteration: 3, Func. Count: 39, Neg. LLF: 137.9258615096599
Iteration: 4, Func. Count: 51, Neg. LLF: 143.63331876954445
Iteration: 5, Func. Count: 64, Neg. LLF: 152.58890224418178
Iteration: 6, Func. Count: 77, Neg. LLF: 140.2905682314367
Iteration: 7, Func. Count: 90, Neg. LLF: 137.40591866565964
Iteration: 8, Func. Count: 102, Neg. LLF: 137.35575259345708
Iteration: 9, Func. Count: 114, Neg. LLF: 137.33802220561313
Iteration: 10, Func. Count: 126, Neg. LLF: 137.33777180529782
Iteration: 11, Func. Count: 138, Neg. LLF: 137.33770122275428
Iteration: 12, Func. Count: 150, Neg. LLF: 137.3376807376582
Iteration: 13, Func. Count: 162, Neg. LLF: 137.33767839828207
Iteration: 14, Func. Count: 173, Neg. LLF: 137.33767827723895
Optimization terminated successfully (Exit mode 0)
Current function value: 137.33767839828207
Iterations: 14
Function evaluations: 173
Gradient evaluations: 14
Iteration: 1, Func. Count: 14, Neg. LLF: 208.0664667035966
Iteration: 2, Func. Count: 28, Neg. LLF: 147.43668701317685
Iteration: 3, Func. Count: 42, Neg. LLF: 138.6390386255813
Iteration: 4, Func. Count: 55, Neg. LLF: 140.95000258476156
Iteration: 5, Func. Count: 71, Neg. LLF: 149.9248771231378
Iteration: 6, Func. Count: 86, Neg. LLF: 149.12256862349076
Iteration: 7, Func. Count: 100, Neg. LLF: 140.2896847071812
Iteration: 8, Func. Count: 114, Neg. LLF: 172.0461163535575
Iteration: 9, Func. Count: 128, Neg. LLF: 136.91421100263096
Iteration: 10, Func. Count: 141, Neg. LLF: 136.8080388032407
Iteration: 11, Func. Count: 154, Neg. LLF: 136.76393310772582
Iteration: 12, Func. Count: 167, Neg. LLF: 136.73772724885248
Iteration: 13, Func. Count: 180, Neg. LLF: 136.7349788510063
Iteration: 14, Func. Count: 193, Neg. LLF: 136.73344709259024
Iteration: 15, Func. Count: 206, Neg. LLF: 136.73341083815941
Iteration: 16, Func. Count: 219, Neg. LLF: 136.73340695801093
Iteration: 17, Func. Count: 231, Neg. LLF: 136.73340683211134
Optimization terminated successfully (Exit mode 0)
Current function value: 136.73340695801093
Iterations: 17
Function evaluations: 231
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 155.08233614017942
Iteration: 2, Func. Count: 22, Neg. LLF: 148.59217784002968
Iteration: 3, Func. Count: 33, Neg. LLF: 145.39430729394002
Iteration: 4, Func. Count: 43, Neg. LLF: 144.78596266615466
Iteration: 5, Func. Count: 53, Neg. LLF: 192.50072575441672
Iteration: 6, Func. Count: 64, Neg. LLF: 244.03353452431804
Iteration: 7, Func. Count: 75, Neg. LLF: 1403.0090918016508
Iteration: 8, Func. Count: 86, Neg. LLF: 1188.2043708713263
Iteration: 9, Func. Count: 97, Neg. LLF: 942.7786409550273
Iteration: 10, Func. Count: 108, Neg. LLF: 3140.673761067562
Iteration: 11, Func. Count: 119, Neg. LLF: 719.3721526277083
Iteration: 12, Func. Count: 130, Neg. LLF: 140.53680523702363
Iteration: 13, Func. Count: 141, Neg. LLF: 138.90484525186093
Iteration: 14, Func. Count: 151, Neg. LLF: 138.42480434529872
Iteration: 15, Func. Count: 161, Neg. LLF: 192.94112244149858
Iteration: 16, Func. Count: 172, Neg. LLF: 178.91837164559962
Iteration: 17, Func. Count: 185, Neg. LLF: 140.92356738287435
Iteration: 18, Func. Count: 196, Neg. LLF: 173.83764252250842
Iteration: 19, Func. Count: 207, Neg. LLF: 137.5794661089854
Iteration: 20, Func. Count: 217, Neg. LLF: 137.41586808247737
Iteration: 21, Func. Count: 227, Neg. LLF: 137.69909071510762
Iteration: 22, Func. Count: 239, Neg. LLF: 137.31729726663494
Iteration: 23, Func. Count: 249, Neg. LLF: 137.30712057012045
Iteration: 24, Func. Count: 259, Neg. LLF: 137.30580591839401
Iteration: 25, Func. Count: 269, Neg. LLF: 137.3057772336029
Iteration: 26, Func. Count: 279, Neg. LLF: 137.30577489266634
Iteration: 27, Func. Count: 288, Neg. LLF: 137.30577483485493
Optimization terminated successfully (Exit mode 0)
Current function value: 137.30577489266634
Iterations: 27
Function evaluations: 288
Gradient evaluations: 27
Iteration: 1, Func. Count: 12, Neg. LLF: 175.582914336493
Iteration: 2, Func. Count: 25, Neg. LLF: 175.67509434474033
Iteration: 3, Func. Count: 37, Neg. LLF: 144.77282119704384
Iteration: 4, Func. Count: 49, Neg. LLF: 146.58542340817473
Iteration: 5, Func. Count: 61, Neg. LLF: 146.7412077173121
Iteration: 6, Func. Count: 73, Neg. LLF: 146.9525817207347
Iteration: 7, Func. Count: 85, Neg. LLF: 152.64286358836466
Iteration: 8, Func. Count: 97, Neg. LLF: 138.52685992382467
Iteration: 9, Func. Count: 108, Neg. LLF: 159.65068412652403
Iteration: 10, Func. Count: 120, Neg. LLF: 141.21343816967814
Iteration: 11, Func. Count: 132, Neg. LLF: 202.3611490419063
Iteration: 12, Func. Count: 145, Neg. LLF: 138.32055197392262
Iteration: 13, Func. Count: 157, Neg. LLF: 137.5338494706782
Iteration: 14, Func. Count: 168, Neg. LLF: 137.4428671561947
Iteration: 15, Func. Count: 179, Neg. LLF: 137.35184765419402
Iteration: 16, Func. Count: 190, Neg. LLF: 137.32971464036544
Iteration: 17, Func. Count: 201, Neg. LLF: 137.3068529038756
Iteration: 18, Func. Count: 212, Neg. LLF: 137.30588546006936
Iteration: 19, Func. Count: 223, Neg. LLF: 137.30578890355068
Iteration: 20, Func. Count: 234, Neg. LLF: 137.3057747879939
Iteration: 21, Func. Count: 244, Neg. LLF: 137.30577479829324
Optimization terminated successfully (Exit mode 0)
Current function value: 137.3057747879939
Iterations: 21
Function evaluations: 244
Gradient evaluations: 21
Iteration: 1, Func. Count: 13, Neg. LLF: 149.39688625580507
Iteration: 2, Func. Count: 26, Neg. LLF: 151.09590848828395
Iteration: 3, Func. Count: 39, Neg. LLF: 173.7745121179326
Iteration: 4, Func. Count: 52, Neg. LLF: 139.04242019104333
Iteration: 5, Func. Count: 64, Neg. LLF: 138.00697333993003
Iteration: 6, Func. Count: 76, Neg. LLF: 173.35215011973366
Iteration: 7, Func. Count: 90, Neg. LLF: 138.72894282927058
Iteration: 8, Func. Count: 103, Neg. LLF: 137.7481720757385
Iteration: 9, Func. Count: 116, Neg. LLF: 236.4106383961532
Iteration: 10, Func. Count: 129, Neg. LLF: 137.41311872318045
Iteration: 11, Func. Count: 141, Neg. LLF: 137.5238183458655
Iteration: 12, Func. Count: 154, Neg. LLF: 137.36194011790522
Iteration: 13, Func. Count: 167, Neg. LLF: 137.30785430188246
Iteration: 14, Func. Count: 179, Neg. LLF: 137.30580030519582
Iteration: 15, Func. Count: 191, Neg. LLF: 137.3057793845544
Iteration: 16, Func. Count: 203, Neg. LLF: 137.30577526637782
Iteration: 17, Func. Count: 214, Neg. LLF: 137.30577563529465
Optimization terminated successfully (Exit mode 0)
Current function value: 137.30577526637782
Iterations: 17
Function evaluations: 214
Gradient evaluations: 17
Iteration: 1, Func. Count: 14, Neg. LLF: 204.7238011503836
Iteration: 2, Func. Count: 28, Neg. LLF: 146.86335726475122
Iteration: 3, Func. Count: 42, Neg. LLF: 138.5294423416423
Iteration: 4, Func. Count: 55, Neg. LLF: 143.82919202516842
Iteration: 5, Func. Count: 69, Neg. LLF: 289.84583187693113
Iteration: 6, Func. Count: 83, Neg. LLF: 166.40717234333846
Iteration: 7, Func. Count: 97, Neg. LLF: 137.6752963892875
Iteration: 8, Func. Count: 111, Neg. LLF: 137.9834633158821
Iteration: 9, Func. Count: 125, Neg. LLF: 137.34206171437165
Iteration: 10, Func. Count: 139, Neg. LLF: 137.26330644968863
Iteration: 11, Func. Count: 152, Neg. LLF: 137.2618377215114
Iteration: 12, Func. Count: 166, Neg. LLF: 137.25788663236028
Iteration: 13, Func. Count: 179, Neg. LLF: 137.25769714298116
Iteration: 14, Func. Count: 192, Neg. LLF: 137.25767607885257
Iteration: 15, Func. Count: 205, Neg. LLF: 137.257675542931
Optimization terminated successfully (Exit mode 0)
Current function value: 137.257675542931
Iterations: 15
Function evaluations: 205
Gradient evaluations: 15
Iteration: 1, Func. Count: 15, Neg. LLF: 204.98229957833362
Iteration: 2, Func. Count: 30, Neg. LLF: 146.81233666076204
Iteration: 3, Func. Count: 45, Neg. LLF: 139.3260485009797
Iteration: 4, Func. Count: 59, Neg. LLF: 144.32471677423518
Iteration: 5, Func. Count: 74, Neg. LLF: 165.97908926246734
Iteration: 6, Func. Count: 89, Neg. LLF: 151.49757375351092
Iteration: 7, Func. Count: 104, Neg. LLF: 138.58284646947814
Iteration: 8, Func. Count: 119, Neg. LLF: 136.8930242809817
Iteration: 9, Func. Count: 133, Neg. LLF: 136.76403192356153
Iteration: 10, Func. Count: 147, Neg. LLF: 137.59126737415548
Iteration: 11, Func. Count: 163, Neg. LLF: 136.96620941795013
Iteration: 12, Func. Count: 178, Neg. LLF: 136.73423026546106
Iteration: 13, Func. Count: 192, Neg. LLF: 136.73349333844632
Iteration: 14, Func. Count: 206, Neg. LLF: 136.73340780109316
Iteration: 15, Func. Count: 220, Neg. LLF: 136.7334070911931
Optimization terminated successfully (Exit mode 0)
Current function value: 136.7334070911931
Iterations: 15
Function evaluations: 220
Gradient evaluations: 15
Iteration: 1, Func. Count: 12, Neg. LLF: 153.2988599690965
Iteration: 2, Func. Count: 24, Neg. LLF: 146.62327127356062
Iteration: 3, Func. Count: 36, Neg. LLF: 144.22648077762867
Iteration: 4, Func. Count: 49, Neg. LLF: 143.38850421988758
Iteration: 5, Func. Count: 60, Neg. LLF: 162.00470537388057
Iteration: 6, Func. Count: 72, Neg. LLF: 7788660.650579561
Iteration: 7, Func. Count: 84, Neg. LLF: 8133533.302144288
Iteration: 8, Func. Count: 96, Neg. LLF: 6282360.194923942
Iteration: 9, Func. Count: 108, Neg. LLF: 6451931.837046527
Iteration: 10, Func. Count: 120, Neg. LLF: 961659.2580056497
Iteration: 11, Func. Count: 132, Neg. LLF: 2213146.6438455437
Iteration: 12, Func. Count: 144, Neg. LLF: 2174182.260627892
Iteration: 13, Func. Count: 156, Neg. LLF: 2182075.7590694875
Iteration: 14, Func. Count: 168, Neg. LLF: 36872.345379571656
Iteration: 15, Func. Count: 180, Neg. LLF: 16400.875295160673
Iteration: 16, Func. Count: 192, Neg. LLF: 10176.719104536422
Iteration: 17, Func. Count: 204, Neg. LLF: 145.32358810387728
Iteration: 18, Func. Count: 216, Neg. LLF: 139.20588805517363
Iteration: 19, Func. Count: 228, Neg. LLF: 137.5358586346729
Iteration: 20, Func. Count: 240, Neg. LLF: 200.1941178282106
Iteration: 21, Func. Count: 253, Neg. LLF: 136.96897771749224
Iteration: 22, Func. Count: 264, Neg. LLF: 136.8104835104789
Iteration: 23, Func. Count: 275, Neg. LLF: 136.7696660973011
Iteration: 24, Func. Count: 286, Neg. LLF: 136.75337807149666
Iteration: 25, Func. Count: 297, Neg. LLF: 136.7498204042352
Iteration: 26, Func. Count: 308, Neg. LLF: 136.7493506895231
Iteration: 27, Func. Count: 319, Neg. LLF: 136.74927341657593
Iteration: 28, Func. Count: 330, Neg. LLF: 136.749265097276
Iteration: 29, Func. Count: 341, Neg. LLF: 136.7492643485605
Optimization terminated successfully (Exit mode 0)
Current function value: 136.7492643485605
Iterations: 29
Function evaluations: 341
Gradient evaluations: 29
Iteration: 1, Func. Count: 13, Neg. LLF: 202.9793264310871
Iteration: 2, Func. Count: 26, Neg. LLF: 139.77995388057897
Iteration: 3, Func. Count: 38, Neg. LLF: 146.56433788327394
Iteration: 4, Func. Count: 52, Neg. LLF: 193.8801490199516
Iteration: 5, Func. Count: 66, Neg. LLF: 137.69298102292464
Iteration: 6, Func. Count: 79, Neg. LLF: 137.0461112967824
Iteration: 7, Func. Count: 91, Neg. LLF: 137.14460526281357
Iteration: 8, Func. Count: 104, Neg. LLF: 136.84137946978032
Iteration: 9, Func. Count: 116, Neg. LLF: 136.76335061775808
Iteration: 10, Func. Count: 128, Neg. LLF: 136.69998236793077
Iteration: 11, Func. Count: 140, Neg. LLF: 136.6648793672616
Iteration: 12, Func. Count: 152, Neg. LLF: 136.66087130650743
Iteration: 13, Func. Count: 164, Neg. LLF: 136.65867348018335
Iteration: 14, Func. Count: 176, Neg. LLF: 136.658406825676
Iteration: 15, Func. Count: 188, Neg. LLF: 136.65816826835257
Iteration: 16, Func. Count: 200, Neg. LLF: 136.65816006863966
Iteration: 17, Func. Count: 211, Neg. LLF: 136.65815999397145
Optimization terminated successfully (Exit mode 0)
Current function value: 136.65816006863966
Iterations: 17
Function evaluations: 211
Gradient evaluations: 17
Iteration: 1, Func. Count: 14, Neg. LLF: 197.47486336433843
Iteration: 2, Func. Count: 28, Neg. LLF: 141.35620627117083
Iteration: 3, Func. Count: 41, Neg. LLF: 142.21185349622473
Iteration: 4, Func. Count: 56, Neg. LLF: 196.14956268002996
Iteration: 5, Func. Count: 71, Neg. LLF: 137.059730563248
Iteration: 6, Func. Count: 84, Neg. LLF: 166.76528976942427
Iteration: 7, Func. Count: 98, Neg. LLF: 159.89129337605652
Iteration: 8, Func. Count: 113, Neg. LLF: 214.40434974397647
Iteration: 9, Func. Count: 127, Neg. LLF: 136.83195225567164
Iteration: 10, Func. Count: 142, Neg. LLF: 136.74243537481723
Iteration: 11, Func. Count: 155, Neg. LLF: 136.7378398283338
Iteration: 12, Func. Count: 168, Neg. LLF: 136.73556138975783
Iteration: 13, Func. Count: 181, Neg. LLF: 136.73342481175115
Iteration: 14, Func. Count: 194, Neg. LLF: 136.73273467291583
Iteration: 15, Func. Count: 207, Neg. LLF: 136.73250530695734
Iteration: 16, Func. Count: 220, Neg. LLF: 136.73246657376222
Iteration: 17, Func. Count: 233, Neg. LLF: 136.7324396216073
Iteration: 18, Func. Count: 246, Neg. LLF: 136.73241077625457
Iteration: 19, Func. Count: 259, Neg. LLF: 136.73238609647552
Iteration: 20, Func. Count: 272, Neg. LLF: 136.73237695665838
Iteration: 21, Func. Count: 285, Neg. LLF: 136.7323756265831
Iteration: 22, Func. Count: 297, Neg. LLF: 136.73237573022806
Optimization terminated successfully (Exit mode 0)
Current function value: 136.7323756265831
Iterations: 22
Function evaluations: 297
Gradient evaluations: 22
Iteration: 1, Func. Count: 15, Neg. LLF: 195.27119303303243
Iteration: 2, Func. Count: 30, Neg. LLF: 138.4387147536551
Iteration: 3, Func. Count: 44, Neg. LLF: 140.7216562765745
Iteration: 4, Func. Count: 60, Neg. LLF: 184.23307298407985
Iteration: 5, Func. Count: 80, Neg. LLF: 177.8779972805591
Iteration: 6, Func. Count: 95, Neg. LLF: 140.75076055673784
Iteration: 7, Func. Count: 110, Neg. LLF: 136.88354276618716
Iteration: 8, Func. Count: 124, Neg. LLF: 136.76562016175808
Iteration: 9, Func. Count: 138, Neg. LLF: 137.83046840690017
Iteration: 10, Func. Count: 153, Neg. LLF: 136.75100518321747
Iteration: 11, Func. Count: 167, Neg. LLF: 136.73830558730162
Iteration: 12, Func. Count: 181, Neg. LLF: 136.73532176643772
Iteration: 13, Func. Count: 195, Neg. LLF: 136.73323938333138
Iteration: 14, Func. Count: 209, Neg. LLF: 136.73249295883906
Iteration: 15, Func. Count: 223, Neg. LLF: 136.73241770647584
Iteration: 16, Func. Count: 237, Neg. LLF: 136.73238881381923
Iteration: 17, Func. Count: 251, Neg. LLF: 136.73237760608498
Iteration: 18, Func. Count: 265, Neg. LLF: 136.73237579103716
Iteration: 19, Func. Count: 278, Neg. LLF: 136.73237581877748
Optimization terminated successfully (Exit mode 0)
Current function value: 136.73237579103716
Iterations: 19
Function evaluations: 278
Gradient evaluations: 19
Iteration: 1, Func. Count: 16, Neg. LLF: 194.01986550670944
Iteration: 2, Func. Count: 32, Neg. LLF: 138.91062763683902
Iteration: 3, Func. Count: 47, Neg. LLF: 141.55848140217722
Iteration: 4, Func. Count: 64, Neg. LLF: 159.7904885142552
Iteration: 5, Func. Count: 85, Neg. LLF: 186.98631046879774
Iteration: 6, Func. Count: 102, Neg. LLF: 139.43249065870017
Iteration: 7, Func. Count: 118, Neg. LLF: 136.90967579685525
Iteration: 8, Func. Count: 133, Neg. LLF: 136.77599442461775
Iteration: 9, Func. Count: 148, Neg. LLF: 136.75024870525277
Iteration: 10, Func. Count: 163, Neg. LLF: 136.96395963279082
Iteration: 11, Func. Count: 179, Neg. LLF: 136.743211832732
Iteration: 12, Func. Count: 195, Neg. LLF: 136.73432196866827
Iteration: 13, Func. Count: 210, Neg. LLF: 136.7325712269775
Iteration: 14, Func. Count: 225, Neg. LLF: 136.7324191319079
Iteration: 15, Func. Count: 240, Neg. LLF: 136.73238458128088
Iteration: 16, Func. Count: 255, Neg. LLF: 136.7323779757944
Iteration: 17, Func. Count: 270, Neg. LLF: 136.73237589171438
Iteration: 18, Func. Count: 284, Neg. LLF: 136.73237592662164
Optimization terminated successfully (Exit mode 0)
Current function value: 136.73237589171438
Iterations: 18
Function evaluations: 284
Gradient evaluations: 18
Iteration: 1, Func. Count: 7, Neg. LLF: 154.36002505630756
Iteration: 2, Func. Count: 14, Neg. LLF: 145.20447230589184
Iteration: 3, Func. Count: 21, Neg. LLF: 151.72050115753768
Iteration: 4, Func. Count: 28, Neg. LLF: 144.41561001738216
Iteration: 5, Func. Count: 34, Neg. LLF: 142.7195845179986
Iteration: 6, Func. Count: 40, Neg. LLF: 141.20465790966318
Iteration: 7, Func. Count: 46, Neg. LLF: 398.6136575035207
Iteration: 8, Func. Count: 53, Neg. LLF: 425.0114590467431
Iteration: 9, Func. Count: 60, Neg. LLF: 715.7708745816795
Iteration: 10, Func. Count: 67, Neg. LLF: 10292.919714952215
Iteration: 11, Func. Count: 74, Neg. LLF: 362.4423737266951
Iteration: 12, Func. Count: 81, Neg. LLF: 148.43671992352878
Iteration: 13, Func. Count: 88, Neg. LLF: 139.96245221758835
Iteration: 14, Func. Count: 95, Neg. LLF: 138.29454152878031
Iteration: 15, Func. Count: 101, Neg. LLF: 138.07760895748243
Iteration: 16, Func. Count: 107, Neg. LLF: 137.93057273462384
Iteration: 17, Func. Count: 113, Neg. LLF: 137.723220295116
Iteration: 18, Func. Count: 119, Neg. LLF: 137.56150356339714
Iteration: 19, Func. Count: 125, Neg. LLF: 137.4733311678247
Iteration: 20, Func. Count: 131, Neg. LLF: 137.46194754419295
Iteration: 21, Func. Count: 137, Neg. LLF: 137.4610836679548
Iteration: 22, Func. Count: 143, Neg. LLF: 137.4610637122425
Iteration: 23, Func. Count: 149, Neg. LLF: 137.46106248083413
Iteration: 24, Func. Count: 154, Neg. LLF: 137.4610624226281
Optimization terminated successfully (Exit mode 0)
Current function value: 137.46106248083413
Iterations: 24
Function evaluations: 154
Gradient evaluations: 24
Iteration: 1, Func. Count: 5, Neg. LLF: 155.0789131797236
Iteration: 2, Func. Count: 9, Neg. LLF: 158.18067952389194
Iteration: 3, Func. Count: 14, Neg. LLF: 152.98406530063733
Iteration: 4, Func. Count: 18, Neg. LLF: 152.98405310548733
Iteration: 5, Func. Count: 22, Neg. LLF: 152.98400174780627
Iteration: 6, Func. Count: 26, Neg. LLF: 152.98398365202328
Iteration: 7, Func. Count: 30, Neg. LLF: 152.98398245561984
Iteration: 8, Func. Count: 33, Neg. LLF: 152.98398245562555
Optimization terminated successfully (Exit mode 0)
Current function value: 152.98398245561984
Iterations: 8
Function evaluations: 33
Gradient evaluations: 8
Iteration: 1, Func. Count: 6, Neg. LLF: 214.0282373462404
Iteration: 2, Func. Count: 13, Neg. LLF: 157.26460393145595
Iteration: 3, Func. Count: 20, Neg. LLF: 149.70878281504886
Iteration: 4, Func. Count: 26, Neg. LLF: 149.15861405923735
Iteration: 5, Func. Count: 32, Neg. LLF: 150.49352264757877
Iteration: 6, Func. Count: 38, Neg. LLF: 149.02249169389086
Iteration: 7, Func. Count: 43, Neg. LLF: 148.99870815643976
Iteration: 8, Func. Count: 48, Neg. LLF: 148.98208228956628
Iteration: 9, Func. Count: 53, Neg. LLF: 148.94521063139499
Iteration: 10, Func. Count: 58, Neg. LLF: 148.6677792482913
Iteration: 11, Func. Count: 63, Neg. LLF: 157.60447093455792
Iteration: 12, Func. Count: 69, Neg. LLF: 158.22582647945208
Iteration: 13, Func. Count: 75, Neg. LLF: 148.65031929207615
Iteration: 14, Func. Count: 81, Neg. LLF: 148.32990702397365
Iteration: 15, Func. Count: 86, Neg. LLF: 148.32394567207024
Iteration: 16, Func. Count: 91, Neg. LLF: 148.31517996611393
Iteration: 17, Func. Count: 96, Neg. LLF: 148.30381990089302
Iteration: 18, Func. Count: 101, Neg. LLF: 148.30021526513164
Iteration: 19, Func. Count: 106, Neg. LLF: 148.29930479472185
Iteration: 20, Func. Count: 111, Neg. LLF: 148.2993023545456
Iteration: 21, Func. Count: 115, Neg. LLF: 148.29930232082876
Optimization terminated successfully (Exit mode 0)
Current function value: 148.2993023545456
Iterations: 21
Function evaluations: 115
Gradient evaluations: 21
Iteration: 1, Func. Count: 7, Neg. LLF: 216.77401917496647
Iteration: 2, Func. Count: 14, Neg. LLF: 160.42334696205654
Iteration: 3, Func. Count: 22, Neg. LLF: 151.64190080797533
Iteration: 4, Func. Count: 29, Neg. LLF: 150.71803973238758
Iteration: 5, Func. Count: 37, Neg. LLF: 148.98680592501023
Iteration: 6, Func. Count: 44, Neg. LLF: 148.95075957677594
Iteration: 7, Func. Count: 50, Neg. LLF: 148.9312650803936
Iteration: 8, Func. Count: 56, Neg. LLF: 148.86232535967673
Iteration: 9, Func. Count: 62, Neg. LLF: 148.70892018658807
Iteration: 10, Func. Count: 68, Neg. LLF: 150.92917301038182
Iteration: 11, Func. Count: 75, Neg. LLF: 148.65337854140927
Iteration: 12, Func. Count: 82, Neg. LLF: 148.33169649736016
Iteration: 13, Func. Count: 88, Neg. LLF: 148.50090760011173
Iteration: 14, Func. Count: 95, Neg. LLF: 148.30798571180534
Iteration: 15, Func. Count: 101, Neg. LLF: 148.3054626222583
Iteration: 16, Func. Count: 107, Neg. LLF: 148.30274066431912
Iteration: 17, Func. Count: 113, Neg. LLF: 148.30016644591288
Iteration: 18, Func. Count: 119, Neg. LLF: 148.29938008817462
Iteration: 19, Func. Count: 125, Neg. LLF: 148.29930475795635
Iteration: 20, Func. Count: 131, Neg. LLF: 148.2993023518398
Iteration: 21, Func. Count: 136, Neg. LLF: 148.29930233397621
Optimization terminated successfully (Exit mode 0)
Current function value: 148.2993023518398
Iterations: 21
Function evaluations: 136
Gradient evaluations: 21
Iteration: 1, Func. Count: 8, Neg. LLF: 210.6887001459889
Iteration: 2, Func. Count: 16, Neg. LLF: 154.32522780031212
Iteration: 3, Func. Count: 24, Neg. LLF: 159.10207623179136
Iteration: 4, Func. Count: 32, Neg. LLF: 150.94723635102756
Iteration: 5, Func. Count: 40, Neg. LLF: 149.64433247968026
Iteration: 6, Func. Count: 48, Neg. LLF: 148.42650612585172
Iteration: 7, Func. Count: 55, Neg. LLF: 149.1253192187068
Iteration: 8, Func. Count: 63, Neg. LLF: 148.3616468718229
Iteration: 9, Func. Count: 70, Neg. LLF: 148.32807800483428
Iteration: 10, Func. Count: 77, Neg. LLF: 148.25694810302184
Iteration: 11, Func. Count: 84, Neg. LLF: 148.23657304949143
Iteration: 12, Func. Count: 91, Neg. LLF: 148.23264019853693
Iteration: 13, Func. Count: 98, Neg. LLF: 148.23199443349375
Iteration: 14, Func. Count: 105, Neg. LLF: 148.23196463658616
Iteration: 15, Func. Count: 112, Neg. LLF: 148.23196259012744
Iteration: 16, Func. Count: 118, Neg. LLF: 148.23196256607733
Optimization terminated successfully (Exit mode 0)
Current function value: 148.23196259012744
Iterations: 16
Function evaluations: 118
Gradient evaluations: 16
Iteration: 1, Func. Count: 9, Neg. LLF: 199.60745762293678
Iteration: 2, Func. Count: 18, Neg. LLF: 163.9891200978031
Iteration: 3, Func. Count: 27, Neg. LLF: 150.27316909382748
Iteration: 4, Func. Count: 36, Neg. LLF: 148.87973094963658
Iteration: 5, Func. Count: 44, Neg. LLF: 148.99649101113707
Iteration: 6, Func. Count: 53, Neg. LLF: 148.40520918275175
Iteration: 7, Func. Count: 61, Neg. LLF: 148.30160792752014
Iteration: 8, Func. Count: 69, Neg. LLF: 148.2711455530981
Iteration: 9, Func. Count: 77, Neg. LLF: 148.2565277748567
Iteration: 10, Func. Count: 85, Neg. LLF: 148.24336021285575
Iteration: 11, Func. Count: 93, Neg. LLF: 148.23292565077733
Iteration: 12, Func. Count: 101, Neg. LLF: 148.23198750041766
Iteration: 13, Func. Count: 109, Neg. LLF: 148.2319638339075
Iteration: 14, Func. Count: 117, Neg. LLF: 148.2319626530698
Iteration: 15, Func. Count: 124, Neg. LLF: 148.23196267153483
Optimization terminated successfully (Exit mode 0)
Current function value: 148.2319626530698
Iterations: 15
Function evaluations: 124
Gradient evaluations: 15
Iteration: 1, Func. Count: 6, Neg. LLF: 160.36299032013144
Iteration: 2, Func. Count: 12, Neg. LLF: 152.21759498626275
Iteration: 3, Func. Count: 18, Neg. LLF: 155.53022458321357
Iteration: 4, Func. Count: 24, Neg. LLF: 150.55881687991183
Iteration: 5, Func. Count: 29, Neg. LLF: 150.26066721024148
Iteration: 6, Func. Count: 34, Neg. LLF: 149.48699509333792
Iteration: 7, Func. Count: 39, Neg. LLF: 149.22606542184408
Iteration: 8, Func. Count: 44, Neg. LLF: 148.710476965523
Iteration: 9, Func. Count: 49, Neg. LLF: 148.67252049093887
Iteration: 10, Func. Count: 54, Neg. LLF: 148.6480770717379
Iteration: 11, Func. Count: 59, Neg. LLF: 148.64753265415757
Iteration: 12, Func. Count: 64, Neg. LLF: 148.64734269266143
Iteration: 13, Func. Count: 69, Neg. LLF: 148.64733805073067
Iteration: 14, Func. Count: 74, Neg. LLF: 148.64733710928869
Optimization terminated successfully (Exit mode 0)
Current function value: 148.64733710928869
Iterations: 14
Function evaluations: 74
Gradient evaluations: 14
Iteration: 1, Func. Count: 7, Neg. LLF: 214.37209494007945
Iteration: 2, Func. Count: 15, Neg. LLF: 160.68608444110328
Iteration: 3, Func. Count: 23, Neg. LLF: 149.66291301722575
Iteration: 4, Func. Count: 30, Neg. LLF: 160.0068600498423
Iteration: 5, Func. Count: 38, Neg. LLF: 149.09154324534234
Iteration: 6, Func. Count: 44, Neg. LLF: 149.03317351974326
Iteration: 7, Func. Count: 50, Neg. LLF: 149.01064789615174
Iteration: 8, Func. Count: 56, Neg. LLF: 148.96835764693225
Iteration: 9, Func. Count: 62, Neg. LLF: 148.93563413296917
Iteration: 10, Func. Count: 68, Neg. LLF: 148.5113567958246
Iteration: 11, Func. Count: 74, Neg. LLF: 157.80813038231128
Iteration: 12, Func. Count: 81, Neg. LLF: 150.50467359858746
Iteration: 13, Func. Count: 88, Neg. LLF: 148.36354118068297
Iteration: 14, Func. Count: 94, Neg. LLF: 148.32620953333546
Iteration: 15, Func. Count: 100, Neg. LLF: 148.32171154201885
Iteration: 16, Func. Count: 106, Neg. LLF: 148.30367574217314
Iteration: 17, Func. Count: 112, Neg. LLF: 148.2958390813594
Iteration: 18, Func. Count: 118, Neg. LLF: 148.29502990671958
Iteration: 19, Func. Count: 124, Neg. LLF: 148.29495927149406
Iteration: 20, Func. Count: 129, Neg. LLF: 148.2949592397765
Optimization terminated successfully (Exit mode 0)
Current function value: 148.29495927149406
Iterations: 20
Function evaluations: 129
Gradient evaluations: 20
Iteration: 1, Func. Count: 8, Neg. LLF: 171.28800090874978
Iteration: 2, Func. Count: 17, Neg. LLF: 159.91112220840702
Iteration: 3, Func. Count: 26, Neg. LLF: 153.64969361287538
Iteration: 4, Func. Count: 34, Neg. LLF: 150.19035915772508
Iteration: 5, Func. Count: 42, Neg. LLF: 149.855357611853
Iteration: 6, Func. Count: 50, Neg. LLF: 149.01954242466957
Iteration: 7, Func. Count: 57, Neg. LLF: 148.9929195610126
Iteration: 8, Func. Count: 64, Neg. LLF: 148.97013449939618
Iteration: 9, Func. Count: 71, Neg. LLF: 148.9618669201658
Iteration: 10, Func. Count: 78, Neg. LLF: 148.9142168355017
Iteration: 11, Func. Count: 85, Neg. LLF: 148.9535524456581
Iteration: 12, Func. Count: 93, Neg. LLF: 151.0640495035501
Iteration: 13, Func. Count: 101, Neg. LLF: 153.83267706867272
Iteration: 14, Func. Count: 109, Neg. LLF: 158.09996630365882
Iteration: 15, Func. Count: 117, Neg. LLF: 149.57890889822156
Iteration: 16, Func. Count: 125, Neg. LLF: 148.61070144752722
Iteration: 17, Func. Count: 133, Neg. LLF: 148.44381021670765
Iteration: 18, Func. Count: 140, Neg. LLF: 148.32755404813145
Iteration: 19, Func. Count: 147, Neg. LLF: 148.32387359753258
Iteration: 20, Func. Count: 154, Neg. LLF: 148.30963519773715
Iteration: 21, Func. Count: 161, Neg. LLF: 148.2990491180646
Iteration: 22, Func. Count: 168, Neg. LLF: 148.29526818633803
Iteration: 23, Func. Count: 175, Neg. LLF: 148.29499451701545
Iteration: 24, Func. Count: 182, Neg. LLF: 148.2949605249458
Iteration: 25, Func. Count: 189, Neg. LLF: 148.2949585105831
Iteration: 26, Func. Count: 195, Neg. LLF: 148.29495848739847
Optimization terminated successfully (Exit mode 0)
Current function value: 148.2949585105831
Iterations: 26
Function evaluations: 195
Gradient evaluations: 26
Iteration: 1, Func. Count: 9, Neg. LLF: 216.74604083959866
Iteration: 2, Func. Count: 18, Neg. LLF: 150.8732704308797
Iteration: 3, Func. Count: 27, Neg. LLF: 251.732194765527
Iteration: 4, Func. Count: 36, Neg. LLF: 150.66062885079623
Iteration: 5, Func. Count: 45, Neg. LLF: 149.7153755731572
Iteration: 6, Func. Count: 54, Neg. LLF: 148.27538636075246
Iteration: 7, Func. Count: 62, Neg. LLF: 148.13045379225605
Iteration: 8, Func. Count: 70, Neg. LLF: 148.09993699899127
Iteration: 9, Func. Count: 78, Neg. LLF: 148.04385327971772
Iteration: 10, Func. Count: 86, Neg. LLF: 147.96276191822577
Iteration: 11, Func. Count: 94, Neg. LLF: 147.94182230422558
Iteration: 12, Func. Count: 102, Neg. LLF: 147.94106345712308
Iteration: 13, Func. Count: 110, Neg. LLF: 147.94100819430062
Iteration: 14, Func. Count: 118, Neg. LLF: 147.9410012727672
Iteration: 15, Func. Count: 125, Neg. LLF: 147.94100125464865
Optimization terminated successfully (Exit mode 0)
Current function value: 147.9410012727672
Iterations: 15
Function evaluations: 125
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 203.50649087496262
Iteration: 2, Func. Count: 20, Neg. LLF: 195.09783824646573
Iteration: 3, Func. Count: 30, Neg. LLF: 148.96585333072966
Iteration: 4, Func. Count: 39, Neg. LLF: 149.4689898201432
Iteration: 5, Func. Count: 49, Neg. LLF: 159.95090256611283
Iteration: 6, Func. Count: 59, Neg. LLF: 148.15334629590816
Iteration: 7, Func. Count: 68, Neg. LLF: 148.04216396512422
Iteration: 8, Func. Count: 77, Neg. LLF: 148.01482977992248
Iteration: 9, Func. Count: 86, Neg. LLF: 147.9693794100684
Iteration: 10, Func. Count: 95, Neg. LLF: 147.95019127973615
Iteration: 11, Func. Count: 104, Neg. LLF: 147.9421572651898
Iteration: 12, Func. Count: 113, Neg. LLF: 147.94104620082348
Iteration: 13, Func. Count: 122, Neg. LLF: 147.94100195639282
Iteration: 14, Func. Count: 131, Neg. LLF: 147.94100089584083
Iteration: 15, Func. Count: 139, Neg. LLF: 147.94100094917454
Optimization terminated successfully (Exit mode 0)
Current function value: 147.94100089584083
Iterations: 15
Function evaluations: 139
Gradient evaluations: 15
Iteration: 1, Func. Count: 7, Neg. LLF: 159.3429716723016
Iteration: 2, Func. Count: 14, Neg. LLF: 152.4522870122296
Iteration: 3, Func. Count: 21, Neg. LLF: 153.90724672825883
Iteration: 4, Func. Count: 28, Neg. LLF: 150.94755453139882
Iteration: 5, Func. Count: 34, Neg. LLF: 150.22297137079266
Iteration: 6, Func. Count: 40, Neg. LLF: 149.83629721644718
Iteration: 7, Func. Count: 46, Neg. LLF: 151.76773673010047
Iteration: 8, Func. Count: 53, Neg. LLF: 149.1437570583071
Iteration: 9, Func. Count: 59, Neg. LLF: 148.69269703586
Iteration: 10, Func. Count: 65, Neg. LLF: 148.38527939784055
Iteration: 11, Func. Count: 71, Neg. LLF: 148.34410094173222
Iteration: 12, Func. Count: 77, Neg. LLF: 148.3337902105379
Iteration: 13, Func. Count: 83, Neg. LLF: 148.33248060950706
Iteration: 14, Func. Count: 89, Neg. LLF: 148.33244960958086
Iteration: 15, Func. Count: 95, Neg. LLF: 148.3324474281444
Iteration: 16, Func. Count: 100, Neg. LLF: 148.33244741590687
Optimization terminated successfully (Exit mode 0)
Current function value: 148.3324474281444
Iterations: 16
Function evaluations: 100
Gradient evaluations: 16
Iteration: 1, Func. Count: 8, Neg. LLF: 207.0805390466285
Iteration: 2, Func. Count: 17, Neg. LLF: 163.23063964687594
Iteration: 3, Func. Count: 26, Neg. LLF: 150.43429532377047
Iteration: 4, Func. Count: 34, Neg. LLF: 149.3964019162328
Iteration: 5, Func. Count: 42, Neg. LLF: 149.1380786582773
Iteration: 6, Func. Count: 49, Neg. LLF: 149.10748202320815
Iteration: 7, Func. Count: 56, Neg. LLF: 149.0036408005721
Iteration: 8, Func. Count: 63, Neg. LLF: 148.9915834817643
Iteration: 9, Func. Count: 70, Neg. LLF: 148.96320728859706
Iteration: 10, Func. Count: 77, Neg. LLF: 148.9163751575558
Iteration: 11, Func. Count: 84, Neg. LLF: 149.0798212616077
Iteration: 12, Func. Count: 92, Neg. LLF: 157.96223258295478
Iteration: 13, Func. Count: 100, Neg. LLF: 149.7170779525372
Iteration: 14, Func. Count: 108, Neg. LLF: 148.62213635178492
Iteration: 15, Func. Count: 116, Neg. LLF: 148.30713887250477
Iteration: 16, Func. Count: 123, Neg. LLF: 148.30368449553268
Iteration: 17, Func. Count: 130, Neg. LLF: 148.3015262204919
Iteration: 18, Func. Count: 137, Neg. LLF: 148.2992011972795
Iteration: 19, Func. Count: 144, Neg. LLF: 148.29651083548958
Iteration: 20, Func. Count: 151, Neg. LLF: 148.2952509146187
Iteration: 21, Func. Count: 158, Neg. LLF: 148.295008161067
Iteration: 22, Func. Count: 165, Neg. LLF: 148.29498643465482
Iteration: 23, Func. Count: 172, Neg. LLF: 148.29496792997102
Iteration: 24, Func. Count: 179, Neg. LLF: 148.29495983947598
Iteration: 25, Func. Count: 186, Neg. LLF: 148.29495834267001
Iteration: 26, Func. Count: 192, Neg. LLF: 148.294958311058
Optimization terminated successfully (Exit mode 0)
Current function value: 148.29495834267001
Iterations: 26
Function evaluations: 192
Gradient evaluations: 26
Iteration: 1, Func. Count: 9, Neg. LLF: 191.19417818237744
Iteration: 2, Func. Count: 19, Neg. LLF: 164.35480598870723
Iteration: 3, Func. Count: 28, Neg. LLF: 155.24518341555302
Iteration: 4, Func. Count: 37, Neg. LLF: 151.96182089468738
Iteration: 5, Func. Count: 47, Neg. LLF: 152.77117601252382
Iteration: 6, Func. Count: 56, Neg. LLF: 149.09851350334114
Iteration: 7, Func. Count: 64, Neg. LLF: 148.9939435813757
Iteration: 8, Func. Count: 72, Neg. LLF: 148.98323971783566
Iteration: 9, Func. Count: 80, Neg. LLF: 148.9563893911503
Iteration: 10, Func. Count: 88, Neg. LLF: 148.9143741570158
Iteration: 11, Func. Count: 96, Neg. LLF: 148.78454950581275
Iteration: 12, Func. Count: 104, Neg. LLF: 156.70286327659406
Iteration: 13, Func. Count: 113, Neg. LLF: 156.8467479414519
Iteration: 14, Func. Count: 122, Neg. LLF: 149.06931069495027
Iteration: 15, Func. Count: 131, Neg. LLF: 148.56218011809005
Iteration: 16, Func. Count: 139, Neg. LLF: 148.53786908358367
Iteration: 17, Func. Count: 147, Neg. LLF: 148.46840934155458
Iteration: 18, Func. Count: 155, Neg. LLF: 148.36374160979906
Iteration: 19, Func. Count: 163, Neg. LLF: 148.3016343705442
Iteration: 20, Func. Count: 171, Neg. LLF: 148.299924518667
Iteration: 21, Func. Count: 179, Neg. LLF: 148.29672222136043
Iteration: 22, Func. Count: 187, Neg. LLF: 148.29536486736862
Iteration: 23, Func. Count: 195, Neg. LLF: 148.2950966401129
Iteration: 24, Func. Count: 203, Neg. LLF: 148.29500180926675
Iteration: 25, Func. Count: 211, Neg. LLF: 148.2949719256682
Iteration: 26, Func. Count: 219, Neg. LLF: 148.29495890645381
Iteration: 27, Func. Count: 227, Neg. LLF: 148.2949582898971
Optimization terminated successfully (Exit mode 0)
Current function value: 148.2949582898971
Iterations: 27
Function evaluations: 227
Gradient evaluations: 27
Iteration: 1, Func. Count: 10, Neg. LLF: 205.37269595807822
Iteration: 2, Func. Count: 20, Neg. LLF: 244.22111733865793
Iteration: 3, Func. Count: 31, Neg. LLF: 149.35149529700507
Iteration: 4, Func. Count: 41, Neg. LLF: 150.0224460232705
Iteration: 5, Func. Count: 51, Neg. LLF: 155.11342871219225
Iteration: 6, Func. Count: 61, Neg. LLF: 148.20730043597234
Iteration: 7, Func. Count: 70, Neg. LLF: 148.0347453449722
Iteration: 8, Func. Count: 79, Neg. LLF: 147.9845176317916
Iteration: 9, Func. Count: 88, Neg. LLF: 147.96710286664617
Iteration: 10, Func. Count: 97, Neg. LLF: 147.94883622483565
Iteration: 11, Func. Count: 106, Neg. LLF: 147.94274325944505
Iteration: 12, Func. Count: 115, Neg. LLF: 147.9413545807421
Iteration: 13, Func. Count: 124, Neg. LLF: 147.94104674269664
Iteration: 14, Func. Count: 133, Neg. LLF: 147.94100294707528
Iteration: 15, Func. Count: 142, Neg. LLF: 147.94100094453887
Iteration: 16, Func. Count: 150, Neg. LLF: 147.94100092627048
Optimization terminated successfully (Exit mode 0)
Current function value: 147.94100094453887
Iterations: 16
Function evaluations: 150
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 200.5458691888433
Iteration: 2, Func. Count: 22, Neg. LLF: 276.3629856134399
Iteration: 3, Func. Count: 33, Neg. LLF: 148.8628837195958
Iteration: 4, Func. Count: 43, Neg. LLF: 149.51090108870096
Iteration: 5, Func. Count: 54, Neg. LLF: 166.92047609321247
Iteration: 6, Func. Count: 65, Neg. LLF: 148.1019566140259
Iteration: 7, Func. Count: 75, Neg. LLF: 148.03324725016486
Iteration: 8, Func. Count: 85, Neg. LLF: 148.00255550811445
Iteration: 9, Func. Count: 95, Neg. LLF: 147.95248380947555
Iteration: 10, Func. Count: 105, Neg. LLF: 147.94132701962326
Iteration: 11, Func. Count: 115, Neg. LLF: 147.94100821295652
Iteration: 12, Func. Count: 125, Neg. LLF: 147.94100090754392
Iteration: 13, Func. Count: 134, Neg. LLF: 147.94100096083994
Optimization terminated successfully (Exit mode 0)
Current function value: 147.94100090754392
Iterations: 13
Function evaluations: 134
Gradient evaluations: 13
Iteration: 1, Func. Count: 8, Neg. LLF: 155.70058833898506
Iteration: 2, Func. Count: 16, Neg. LLF: 153.66889083095072
Iteration: 3, Func. Count: 24, Neg. LLF: 151.22536939589958
Iteration: 4, Func. Count: 32, Neg. LLF: 148.82265488463196
Iteration: 5, Func. Count: 40, Neg. LLF: 148.41375331075926
Iteration: 6, Func. Count: 47, Neg. LLF: 148.03805220155482
Iteration: 7, Func. Count: 54, Neg. LLF: 147.53552595175626
Iteration: 8, Func. Count: 61, Neg. LLF: 147.36058781726604
Iteration: 9, Func. Count: 68, Neg. LLF: 147.17667640897702
Iteration: 10, Func. Count: 75, Neg. LLF: 147.14300245381438
Iteration: 11, Func. Count: 82, Neg. LLF: 147.1249103276571
Iteration: 12, Func. Count: 89, Neg. LLF: 147.12311411017978
Iteration: 13, Func. Count: 96, Neg. LLF: 147.11961144807378
Iteration: 14, Func. Count: 103, Neg. LLF: 147.11917848093253
Iteration: 15, Func. Count: 110, Neg. LLF: 147.11914455894222
Iteration: 16, Func. Count: 117, Neg. LLF: 147.11914393481104
Optimization terminated successfully (Exit mode 0)
Current function value: 147.11914393481104
Iterations: 16
Function evaluations: 117
Gradient evaluations: 16
Iteration: 1, Func. Count: 9, Neg. LLF: 204.2766528554087
Iteration: 2, Func. Count: 19, Neg. LLF: 165.53565580650377
Iteration: 3, Func. Count: 29, Neg. LLF: 153.2875940519242
Iteration: 4, Func. Count: 38, Neg. LLF: 188.68010020781267
Iteration: 5, Func. Count: 47, Neg. LLF: 148.4227994087224
Iteration: 6, Func. Count: 55, Neg. LLF: 148.167285865102
Iteration: 7, Func. Count: 63, Neg. LLF: 148.64678985723495
Iteration: 8, Func. Count: 72, Neg. LLF: 147.86194644191832
Iteration: 9, Func. Count: 81, Neg. LLF: 147.42033390599303
Iteration: 10, Func. Count: 89, Neg. LLF: 149.74307696824835
Iteration: 11, Func. Count: 98, Neg. LLF: 147.2849970966045
Iteration: 12, Func. Count: 106, Neg. LLF: 147.2191089251914
Iteration: 13, Func. Count: 114, Neg. LLF: 147.18216710528628
Iteration: 14, Func. Count: 122, Neg. LLF: 147.1625571964207
Iteration: 15, Func. Count: 130, Neg. LLF: 147.17793878028633
Iteration: 16, Func. Count: 139, Neg. LLF: 147.1313128805179
Iteration: 17, Func. Count: 148, Neg. LLF: 147.10851244799522
Iteration: 18, Func. Count: 156, Neg. LLF: 147.1039984468116
Iteration: 19, Func. Count: 164, Neg. LLF: 147.10146491662928
Iteration: 20, Func. Count: 172, Neg. LLF: 147.09867051838015
Iteration: 21, Func. Count: 180, Neg. LLF: 147.09470360657374
Iteration: 22, Func. Count: 188, Neg. LLF: 147.09060021205553
Iteration: 23, Func. Count: 196, Neg. LLF: 147.08764198182914
Iteration: 24, Func. Count: 204, Neg. LLF: 147.086923236573
Iteration: 25, Func. Count: 212, Neg. LLF: 147.0868676143397
Iteration: 26, Func. Count: 220, Neg. LLF: 147.0868665884271
Iteration: 27, Func. Count: 227, Neg. LLF: 147.08686658415138
Optimization terminated successfully (Exit mode 0)
Current function value: 147.0868665884271
Iterations: 27
Function evaluations: 227
Gradient evaluations: 27
Iteration: 1, Func. Count: 10, Neg. LLF: 207.65550656065867
Iteration: 2, Func. Count: 21, Neg. LLF: 156.69675836915073
Iteration: 3, Func. Count: 31, Neg. LLF: 151.14773048312344
Iteration: 4, Func. Count: 41, Neg. LLF: 148.42799983946972
Iteration: 5, Func. Count: 50, Neg. LLF: 148.38248172003912
Iteration: 6, Func. Count: 60, Neg. LLF: 148.24079343935335
Iteration: 7, Func. Count: 70, Neg. LLF: 151.75577740079564
Iteration: 8, Func. Count: 80, Neg. LLF: 150.05720621842022
Iteration: 9, Func. Count: 90, Neg. LLF: 147.90587739245967
Iteration: 10, Func. Count: 100, Neg. LLF: 148.3320934829946
Iteration: 11, Func. Count: 110, Neg. LLF: 147.4177872453202
Iteration: 12, Func. Count: 119, Neg. LLF: 147.2193470571959
Iteration: 13, Func. Count: 128, Neg. LLF: 147.18251974603626
Iteration: 14, Func. Count: 137, Neg. LLF: 147.1641488279789
Iteration: 15, Func. Count: 146, Neg. LLF: 147.15701960985186
Iteration: 16, Func. Count: 155, Neg. LLF: 147.15045658081732
Iteration: 17, Func. Count: 164, Neg. LLF: 147.1500418050768
Iteration: 18, Func. Count: 173, Neg. LLF: 147.14987879969442
Iteration: 19, Func. Count: 182, Neg. LLF: 147.1497455980991
Iteration: 20, Func. Count: 191, Neg. LLF: 147.14974410869274
Iteration: 21, Func. Count: 199, Neg. LLF: 147.14974421495697
Optimization terminated successfully (Exit mode 0)
Current function value: 147.14974410869274
Iterations: 21
Function evaluations: 199
Gradient evaluations: 21
Iteration: 1, Func. Count: 11, Neg. LLF: 199.48014654717917
Iteration: 2, Func. Count: 22, Neg. LLF: 179.98691083035612
Iteration: 3, Func. Count: 33, Neg. LLF: 149.54573407112525
Iteration: 4, Func. Count: 44, Neg. LLF: 148.8256504471994
Iteration: 5, Func. Count: 55, Neg. LLF: 148.79883633534692
Iteration: 6, Func. Count: 66, Neg. LLF: 149.88635508083942
Iteration: 7, Func. Count: 77, Neg. LLF: 147.0857467748227
Iteration: 8, Func. Count: 87, Neg. LLF: 146.7948165079167
Iteration: 9, Func. Count: 97, Neg. LLF: 146.7188055993426
Iteration: 10, Func. Count: 107, Neg. LLF: 146.56474487229437
Iteration: 11, Func. Count: 117, Neg. LLF: 146.48250924015818
Iteration: 12, Func. Count: 127, Neg. LLF: 146.46473159230004
Iteration: 13, Func. Count: 137, Neg. LLF: 146.4602629217929
Iteration: 14, Func. Count: 147, Neg. LLF: 146.45711538405524
Iteration: 15, Func. Count: 157, Neg. LLF: 146.4558450096917
Iteration: 16, Func. Count: 167, Neg. LLF: 146.45532268537448
Iteration: 17, Func. Count: 177, Neg. LLF: 146.4552133163513
Iteration: 18, Func. Count: 187, Neg. LLF: 146.45520517806173
Iteration: 19, Func. Count: 196, Neg. LLF: 146.4552051672653
Optimization terminated successfully (Exit mode 0)
Current function value: 146.45520517806173
Iterations: 19
Function evaluations: 196
Gradient evaluations: 19
Iteration: 1, Func. Count: 12, Neg. LLF: 194.11070673559422
Iteration: 2, Func. Count: 24, Neg. LLF: 197.39483322151028
Iteration: 3, Func. Count: 36, Neg. LLF: 148.30736821979832
Iteration: 4, Func. Count: 47, Neg. LLF: 150.33393855117848
Iteration: 5, Func. Count: 59, Neg. LLF: 147.87179994837348
Iteration: 6, Func. Count: 70, Neg. LLF: 147.54926716055758
Iteration: 7, Func. Count: 81, Neg. LLF: 148.1803720079003
Iteration: 8, Func. Count: 93, Neg. LLF: 147.52463851339388
Iteration: 9, Func. Count: 105, Neg. LLF: 147.18606769318106
Iteration: 10, Func. Count: 117, Neg. LLF: 146.64091636040772
Iteration: 11, Func. Count: 128, Neg. LLF: 146.7760817354009
Iteration: 12, Func. Count: 140, Neg. LLF: 146.52041606691353
Iteration: 13, Func. Count: 151, Neg. LLF: 146.49093189337015
Iteration: 14, Func. Count: 162, Neg. LLF: 146.46837440235947
Iteration: 15, Func. Count: 173, Neg. LLF: 146.45962699070824
Iteration: 16, Func. Count: 184, Neg. LLF: 146.45525888693396
Iteration: 17, Func. Count: 195, Neg. LLF: 146.4552092004054
Iteration: 18, Func. Count: 206, Neg. LLF: 146.45520617804047
Iteration: 19, Func. Count: 217, Neg. LLF: 146.4552049956825
Iteration: 20, Func. Count: 227, Neg. LLF: 146.45520525648587
Optimization terminated successfully (Exit mode 0)
Current function value: 146.4552049956825
Iterations: 20
Function evaluations: 227
Gradient evaluations: 20
Iteration: 1, Func. Count: 5, Neg. LLF: 152.45566094355107
Iteration: 2, Func. Count: 9, Neg. LLF: 155.06780323713554
Iteration: 3, Func. Count: 14, Neg. LLF: 152.02232406963233
Iteration: 4, Func. Count: 18, Neg. LLF: 151.51649962521077
Iteration: 5, Func. Count: 22, Neg. LLF: 152.54048013062766
Iteration: 6, Func. Count: 27, Neg. LLF: 151.0262892211139
Iteration: 7, Func. Count: 32, Neg. LLF: 150.96530161014076
Iteration: 8, Func. Count: 36, Neg. LLF: 150.96529097871016
Iteration: 9, Func. Count: 39, Neg. LLF: 150.965291022433
Optimization terminated successfully (Exit mode 0)
Current function value: 150.96529097871016
Iterations: 9
Function evaluations: 39
Gradient evaluations: 9
Iteration: 1, Func. Count: 6, Neg. LLF: 153.8229233392031
Iteration: 2, Func. Count: 12, Neg. LLF: 158.89957711318806
Iteration: 3, Func. Count: 18, Neg. LLF: 150.46102115245637
Iteration: 4, Func. Count: 23, Neg. LLF: 151.04937347455638
Iteration: 5, Func. Count: 29, Neg. LLF: 150.28855861515615
Iteration: 6, Func. Count: 34, Neg. LLF: 150.42401638524709
Iteration: 7, Func. Count: 40, Neg. LLF: 150.0112970894178
Iteration: 8, Func. Count: 45, Neg. LLF: 149.99776077328121
Iteration: 9, Func. Count: 50, Neg. LLF: 149.99442452856306
Iteration: 10, Func. Count: 55, Neg. LLF: 149.99408923584718
Iteration: 11, Func. Count: 60, Neg. LLF: 149.9940634340573
Iteration: 12, Func. Count: 64, Neg. LLF: 149.99406332542338
Optimization terminated successfully (Exit mode 0)
Current function value: 149.9940634340573
Iterations: 12
Function evaluations: 64
Gradient evaluations: 12
Iteration: 1, Func. Count: 7, Neg. LLF: 162.67302561379063
Iteration: 2, Func. Count: 14, Neg. LLF: 152.6985769003292
Iteration: 3, Func. Count: 21, Neg. LLF: 152.87175792290745
Iteration: 4, Func. Count: 28, Neg. LLF: 150.15531842698132
Iteration: 5, Func. Count: 34, Neg. LLF: 150.55719606849178
Iteration: 6, Func. Count: 41, Neg. LLF: 150.06576999708486
Iteration: 7, Func. Count: 48, Neg. LLF: 149.8749297247656
Iteration: 8, Func. Count: 54, Neg. LLF: 149.85613586452695
Iteration: 9, Func. Count: 60, Neg. LLF: 149.85374576792833
Iteration: 10, Func. Count: 66, Neg. LLF: 149.85334817160893
Iteration: 11, Func. Count: 72, Neg. LLF: 149.85333593937042
Iteration: 12, Func. Count: 78, Neg. LLF: 149.85333447901365
Iteration: 13, Func. Count: 83, Neg. LLF: 149.85333435193064
Optimization terminated successfully (Exit mode 0)
Current function value: 149.85333447901365
Iterations: 13
Function evaluations: 83
Gradient evaluations: 13
Iteration: 1, Func. Count: 8, Neg. LLF: 163.99578726776986
Iteration: 2, Func. Count: 16, Neg. LLF: 149.37701261764525
Iteration: 3, Func. Count: 23, Neg. LLF: 148.89761763080125
Iteration: 4, Func. Count: 30, Neg. LLF: 162.764537613821
Iteration: 5, Func. Count: 38, Neg. LLF: 148.65426649854032
Iteration: 6, Func. Count: 45, Neg. LLF: 149.25964319694302
Iteration: 7, Func. Count: 53, Neg. LLF: 148.55527654862118
Iteration: 8, Func. Count: 60, Neg. LLF: 148.5418273023176
Iteration: 9, Func. Count: 67, Neg. LLF: 148.54094715877196
Iteration: 10, Func. Count: 74, Neg. LLF: 148.54078284511866
Iteration: 11, Func. Count: 81, Neg. LLF: 148.5407280778321
Iteration: 12, Func. Count: 88, Neg. LLF: 148.54071651638387
Iteration: 13, Func. Count: 94, Neg. LLF: 148.54071641266677
Optimization terminated successfully (Exit mode 0)
Current function value: 148.54071651638387
Iterations: 13
Function evaluations: 94
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 162.9031619732555
Iteration: 2, Func. Count: 18, Neg. LLF: 150.77213959299257
Iteration: 3, Func. Count: 27, Neg. LLF: 149.83542296515742
Iteration: 4, Func. Count: 36, Neg. LLF: 152.58018295925993
Iteration: 5, Func. Count: 45, Neg. LLF: 148.56467933476063
Iteration: 6, Func. Count: 53, Neg. LLF: 148.55325488460485
Iteration: 7, Func. Count: 61, Neg. LLF: 148.54972868302193
Iteration: 8, Func. Count: 69, Neg. LLF: 148.54303774857638
Iteration: 9, Func. Count: 77, Neg. LLF: 148.54202902622717
Iteration: 10, Func. Count: 85, Neg. LLF: 148.54092570317823
Iteration: 11, Func. Count: 93, Neg. LLF: 148.54083852390735
Iteration: 12, Func. Count: 101, Neg. LLF: 148.54071678747923
Iteration: 13, Func. Count: 109, Neg. LLF: 148.54071622754196
Optimization terminated successfully (Exit mode 0)
Current function value: 148.54071622754196
Iterations: 13
Function evaluations: 109
Gradient evaluations: 13
Iteration: 1, Func. Count: 6, Neg. LLF: 153.91789326148387
Iteration: 2, Func. Count: 12, Neg. LLF: 152.58152385787514
Iteration: 3, Func. Count: 18, Neg. LLF: 150.7311202386292
Iteration: 4, Func. Count: 23, Neg. LLF: 150.1193558701966
Iteration: 5, Func. Count: 28, Neg. LLF: 150.040439701043
Iteration: 6, Func. Count: 33, Neg. LLF: 149.6803419259113
Iteration: 7, Func. Count: 38, Neg. LLF: 149.60414918424362
Iteration: 8, Func. Count: 43, Neg. LLF: 149.4693073317877
Iteration: 9, Func. Count: 48, Neg. LLF: 149.4566783158777
Iteration: 10, Func. Count: 53, Neg. LLF: 149.4556736743013
Iteration: 11, Func. Count: 58, Neg. LLF: 149.45565704689088
Iteration: 12, Func. Count: 63, Neg. LLF: 149.45565642683562
Optimization terminated successfully (Exit mode 0)
Current function value: 149.45565642683562
Iterations: 12
Function evaluations: 63
Gradient evaluations: 12
Iteration: 1, Func. Count: 7, Neg. LLF: 207.93220923864254
Iteration: 2, Func. Count: 15, Neg. LLF: 157.29037882547243
Iteration: 3, Func. Count: 23, Neg. LLF: 161.18130742951968
Iteration: 4, Func. Count: 31, Neg. LLF: 182.74525279316225
Iteration: 5, Func. Count: 38, Neg. LLF: 149.0612032463586
Iteration: 6, Func. Count: 44, Neg. LLF: 149.0173771191047
Iteration: 7, Func. Count: 50, Neg. LLF: 149.0017067342014
Iteration: 8, Func. Count: 56, Neg. LLF: 148.97668998376665
Iteration: 9, Func. Count: 62, Neg. LLF: 148.9523074287965
Iteration: 10, Func. Count: 68, Neg. LLF: 152.06785552128906
Iteration: 11, Func. Count: 75, Neg. LLF: 152.1253767027012
Iteration: 12, Func. Count: 82, Neg. LLF: 152.15664157417476
Iteration: 13, Func. Count: 89, Neg. LLF: 152.136562981082
Iteration: 14, Func. Count: 96, Neg. LLF: 155.1858219815605
Iteration: 15, Func. Count: 105, Neg. LLF: 154.04669973707047
Iteration: 16, Func. Count: 112, Neg. LLF: 168.4203846585343
Iteration: 17, Func. Count: 119, Neg. LLF: 155.08671562412295
Iteration: 18, Func. Count: 126, Neg. LLF: 147.84017561555072
Iteration: 19, Func. Count: 132, Neg. LLF: 147.67061606896704
Iteration: 20, Func. Count: 138, Neg. LLF: 147.63224398079294
Iteration: 21, Func. Count: 144, Neg. LLF: 147.6156828233195
Iteration: 22, Func. Count: 150, Neg. LLF: 147.61222139625636
Iteration: 23, Func. Count: 156, Neg. LLF: 147.61030019379407
Iteration: 24, Func. Count: 162, Neg. LLF: 147.60995850798545
Iteration: 25, Func. Count: 168, Neg. LLF: 147.60988318779943
Iteration: 26, Func. Count: 174, Neg. LLF: 147.60977378970406
Iteration: 27, Func. Count: 180, Neg. LLF: 147.6096727294053
Iteration: 28, Func. Count: 186, Neg. LLF: 147.60963247010264
Iteration: 29, Func. Count: 192, Neg. LLF: 147.60962690635182
Iteration: 30, Func. Count: 197, Neg. LLF: 147.60962685742467
Optimization terminated successfully (Exit mode 0)
Current function value: 147.60962690635182
Iterations: 31
Function evaluations: 197
Gradient evaluations: 30
Iteration: 1, Func. Count: 8, Neg. LLF: 207.34033799251523
Iteration: 2, Func. Count: 16, Neg. LLF: 149.14884063015407
Iteration: 3, Func. Count: 23, Neg. LLF: 149.4023650762985
Iteration: 4, Func. Count: 31, Neg. LLF: 257.259935362432
Iteration: 5, Func. Count: 40, Neg. LLF: 168.45625251535586
Iteration: 6, Func. Count: 49, Neg. LLF: 150.60535167884115
Iteration: 7, Func. Count: 57, Neg. LLF: 150.19637048848836
Iteration: 8, Func. Count: 65, Neg. LLF: 149.91832604227844
Iteration: 9, Func. Count: 73, Neg. LLF: 148.82359579660232
Iteration: 10, Func. Count: 81, Neg. LLF: 148.38212329476607
Iteration: 11, Func. Count: 88, Neg. LLF: 148.02549527768105
Iteration: 12, Func. Count: 95, Neg. LLF: 147.99620466647252
Iteration: 13, Func. Count: 103, Neg. LLF: 147.72987896909962
Iteration: 14, Func. Count: 110, Neg. LLF: 147.60455383175687
Iteration: 15, Func. Count: 117, Neg. LLF: 147.5518568979292
Iteration: 16, Func. Count: 124, Neg. LLF: 147.51718406663227
Iteration: 17, Func. Count: 131, Neg. LLF: 147.51155362404344
Iteration: 18, Func. Count: 138, Neg. LLF: 147.50894876269606
Iteration: 19, Func. Count: 145, Neg. LLF: 147.50831712326894
Iteration: 20, Func. Count: 152, Neg. LLF: 147.5064425521799
Iteration: 21, Func. Count: 159, Neg. LLF: 147.50622023753255
Iteration: 22, Func. Count: 166, Neg. LLF: 147.50620643016632
Iteration: 23, Func. Count: 172, Neg. LLF: 147.5062063777204
Optimization terminated successfully (Exit mode 0)
Current function value: 147.50620643016632
Iterations: 23
Function evaluations: 172
Gradient evaluations: 23
Iteration: 1, Func. Count: 9, Neg. LLF: 203.45766946101205
Iteration: 2, Func. Count: 18, Neg. LLF: 149.52591903208545
Iteration: 3, Func. Count: 27, Neg. LLF: 161.25157995349628
Iteration: 4, Func. Count: 36, Neg. LLF: 147.68642967673776
Iteration: 5, Func. Count: 44, Neg. LLF: 160.66818343825437
Iteration: 6, Func. Count: 53, Neg. LLF: 147.40898372741472
Iteration: 7, Func. Count: 61, Neg. LLF: 147.36283640238233
Iteration: 8, Func. Count: 69, Neg. LLF: 147.35672932138618
Iteration: 9, Func. Count: 77, Neg. LLF: 147.3538582838267
Iteration: 10, Func. Count: 85, Neg. LLF: 147.35316023376996
Iteration: 11, Func. Count: 93, Neg. LLF: 147.3529288433876
Iteration: 12, Func. Count: 101, Neg. LLF: 147.3527870332283
Iteration: 13, Func. Count: 109, Neg. LLF: 147.3527350607368
Iteration: 14, Func. Count: 117, Neg. LLF: 147.35273067935864
Iteration: 15, Func. Count: 124, Neg. LLF: 147.3527306127931
Optimization terminated successfully (Exit mode 0)
Current function value: 147.35273067935864
Iterations: 15
Function evaluations: 124
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 202.91033693732717
Iteration: 2, Func. Count: 20, Neg. LLF: 149.57445332432474
Iteration: 3, Func. Count: 30, Neg. LLF: 162.23333822816565
Iteration: 4, Func. Count: 40, Neg. LLF: 147.4147849544486
Iteration: 5, Func. Count: 49, Neg. LLF: 150.57641152924447
Iteration: 6, Func. Count: 60, Neg. LLF: 147.36846707814703
Iteration: 7, Func. Count: 69, Neg. LLF: 147.35907433568997
Iteration: 8, Func. Count: 78, Neg. LLF: 147.35426582080717
Iteration: 9, Func. Count: 87, Neg. LLF: 147.35366397258213
Iteration: 10, Func. Count: 96, Neg. LLF: 147.35321417217284
Iteration: 11, Func. Count: 105, Neg. LLF: 147.35283226490867
Iteration: 12, Func. Count: 114, Neg. LLF: 147.35274458971867
Iteration: 13, Func. Count: 123, Neg. LLF: 147.35273101664504
Iteration: 14, Func. Count: 131, Neg. LLF: 147.35273101041548
Optimization terminated successfully (Exit mode 0)
Current function value: 147.35273101664504
Iterations: 14
Function evaluations: 131
Gradient evaluations: 14
Iteration: 1, Func. Count: 7, Neg. LLF: 157.65531127899445
Iteration: 2, Func. Count: 14, Neg. LLF: 151.21546097154842
Iteration: 3, Func. Count: 21, Neg. LLF: 153.4240191045331
Iteration: 4, Func. Count: 28, Neg. LLF: 151.30605161154102
Iteration: 5, Func. Count: 35, Neg. LLF: 152.2260762761169
Iteration: 6, Func. Count: 42, Neg. LLF: 150.03429633468446
Iteration: 7, Func. Count: 49, Neg. LLF: 148.96874302693163
Iteration: 8, Func. Count: 55, Neg. LLF: 148.4800130129109
Iteration: 9, Func. Count: 61, Neg. LLF: 148.64973748019275
Iteration: 10, Func. Count: 68, Neg. LLF: 147.7309538896932
Iteration: 11, Func. Count: 74, Neg. LLF: 147.58096406488735
Iteration: 12, Func. Count: 80, Neg. LLF: 147.5054523865028
Iteration: 13, Func. Count: 86, Neg. LLF: 147.45607542243033
Iteration: 14, Func. Count: 92, Neg. LLF: 147.42022850208858
Iteration: 15, Func. Count: 98, Neg. LLF: 147.39456611768847
Iteration: 16, Func. Count: 104, Neg. LLF: 147.3925142242226
Iteration: 17, Func. Count: 110, Neg. LLF: 147.3924868550167
Iteration: 18, Func. Count: 115, Neg. LLF: 147.39248682571179
Optimization terminated successfully (Exit mode 0)
Current function value: 147.3924868550167
Iterations: 18
Function evaluations: 115
Gradient evaluations: 18
Iteration: 1, Func. Count: 8, Neg. LLF: 209.01996280879058
Iteration: 2, Func. Count: 17, Neg. LLF: 160.7852149270313
Iteration: 3, Func. Count: 26, Neg. LLF: 149.9984173698256
Iteration: 4, Func. Count: 34, Neg. LLF: 149.22963295944535
Iteration: 5, Func. Count: 42, Neg. LLF: 149.08178121229517
Iteration: 6, Func. Count: 49, Neg. LLF: 149.1628721190334
Iteration: 7, Func. Count: 57, Neg. LLF: 149.00000094075375
Iteration: 8, Func. Count: 64, Neg. LLF: 148.97577219700673
Iteration: 9, Func. Count: 71, Neg. LLF: 148.95358294497854
Iteration: 10, Func. Count: 78, Neg. LLF: 150.55779623003207
Iteration: 11, Func. Count: 86, Neg. LLF: 150.55226111389146
Iteration: 12, Func. Count: 94, Neg. LLF: 150.53883670906146
Iteration: 13, Func. Count: 102, Neg. LLF: 150.50770254439277
Iteration: 14, Func. Count: 110, Neg. LLF: 150.1811181278392
Iteration: 15, Func. Count: 118, Neg. LLF: 150.53207139013952
Iteration: 16, Func. Count: 126, Neg. LLF: 149.20066269056423
Iteration: 17, Func. Count: 134, Neg. LLF: 148.0397478771626
Iteration: 18, Func. Count: 142, Neg. LLF: 147.83698803752029
Iteration: 19, Func. Count: 149, Neg. LLF: 147.6261194346119
Iteration: 20, Func. Count: 156, Neg. LLF: 147.59059534792942
Iteration: 21, Func. Count: 163, Neg. LLF: 147.5533217463019
Iteration: 22, Func. Count: 170, Neg. LLF: 147.48430639411296
Iteration: 23, Func. Count: 177, Neg. LLF: 147.4446060860846
Iteration: 24, Func. Count: 184, Neg. LLF: 147.4264453080777
Iteration: 25, Func. Count: 191, Neg. LLF: 147.42566783257422
Iteration: 26, Func. Count: 198, Neg. LLF: 147.42469369984764
Iteration: 27, Func. Count: 205, Neg. LLF: 147.4192388030425
Iteration: 28, Func. Count: 212, Neg. LLF: 147.41115959119364
Iteration: 29, Func. Count: 219, Neg. LLF: 147.39983950128016
Iteration: 30, Func. Count: 226, Neg. LLF: 147.39399853859578
Iteration: 31, Func. Count: 233, Neg. LLF: 147.39266200919013
Iteration: 32, Func. Count: 240, Neg. LLF: 147.3924886820721
Iteration: 33, Func. Count: 247, Neg. LLF: 147.39248678429016
Iteration: 34, Func. Count: 253, Neg. LLF: 147.39248674470613
Optimization terminated successfully (Exit mode 0)
Current function value: 147.39248678429016
Iterations: 34
Function evaluations: 253
Gradient evaluations: 34
Iteration: 1, Func. Count: 9, Neg. LLF: 159.58970080661862
Iteration: 2, Func. Count: 19, Neg. LLF: 159.1746808022265
Iteration: 3, Func. Count: 29, Neg. LLF: 152.9531895418358
Iteration: 4, Func. Count: 38, Neg. LLF: 162.2223233454735
Iteration: 5, Func. Count: 48, Neg. LLF: 150.23651907223132
Iteration: 6, Func. Count: 57, Neg. LLF: 149.041078948121
Iteration: 7, Func. Count: 65, Neg. LLF: 148.98540309921768
Iteration: 8, Func. Count: 73, Neg. LLF: 148.8637045406397
Iteration: 9, Func. Count: 81, Neg. LLF: 148.6952062410491
Iteration: 10, Func. Count: 89, Neg. LLF: 148.48641296072265
Iteration: 11, Func. Count: 97, Neg. LLF: 148.19849412560419
Iteration: 12, Func. Count: 106, Neg. LLF: 147.6045724369281
Iteration: 13, Func. Count: 114, Neg. LLF: 147.26460577365702
Iteration: 14, Func. Count: 122, Neg. LLF: 147.23459958066886
Iteration: 15, Func. Count: 130, Neg. LLF: 147.22364722926332
Iteration: 16, Func. Count: 138, Neg. LLF: 147.21624201368212
Iteration: 17, Func. Count: 146, Neg. LLF: 147.19244365156231
Iteration: 18, Func. Count: 154, Neg. LLF: 147.189585016827
Iteration: 19, Func. Count: 162, Neg. LLF: 147.18917413333804
Iteration: 20, Func. Count: 170, Neg. LLF: 147.18916046292875
Iteration: 21, Func. Count: 178, Neg. LLF: 147.189082746657
Iteration: 22, Func. Count: 186, Neg. LLF: 147.18892233147858
Iteration: 23, Func. Count: 194, Neg. LLF: 147.18891903785305
Iteration: 24, Func. Count: 201, Neg. LLF: 147.18891898339103
Optimization terminated successfully (Exit mode 0)
Current function value: 147.18891903785305
Iterations: 24
Function evaluations: 201
Gradient evaluations: 24
Iteration: 1, Func. Count: 10, Neg. LLF: 208.01181401444714
Iteration: 2, Func. Count: 20, Neg. LLF: 149.60241411912529
Iteration: 3, Func. Count: 30, Neg. LLF: 203.55050631680973
Iteration: 4, Func. Count: 40, Neg. LLF: 148.44544140834017
Iteration: 5, Func. Count: 50, Neg. LLF: 156.40436610861695
Iteration: 6, Func. Count: 60, Neg. LLF: 149.19571142221162
Iteration: 7, Func. Count: 70, Neg. LLF: 147.37751233671247
Iteration: 8, Func. Count: 79, Neg. LLF: 147.37404867060738
Iteration: 9, Func. Count: 89, Neg. LLF: 147.35654702920272
Iteration: 10, Func. Count: 98, Neg. LLF: 147.3532687130767
Iteration: 11, Func. Count: 107, Neg. LLF: 147.35303481858404
Iteration: 12, Func. Count: 116, Neg. LLF: 147.35291231084355
Iteration: 13, Func. Count: 125, Neg. LLF: 147.3528290382398
Iteration: 14, Func. Count: 134, Neg. LLF: 147.352757169717
Iteration: 15, Func. Count: 143, Neg. LLF: 147.3527337872433
Iteration: 16, Func. Count: 152, Neg. LLF: 147.35273065234236
Iteration: 17, Func. Count: 160, Neg. LLF: 147.35273058574592
Optimization terminated successfully (Exit mode 0)
Current function value: 147.35273065234236
Iterations: 17
Function evaluations: 160
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 207.66858440808423
Iteration: 2, Func. Count: 22, Neg. LLF: 149.60257397566983
Iteration: 3, Func. Count: 33, Neg. LLF: 200.77626204894972
Iteration: 4, Func. Count: 45, Neg. LLF: 148.8883743675723
Iteration: 5, Func. Count: 56, Neg. LLF: 155.8819101773303
Iteration: 6, Func. Count: 67, Neg. LLF: 148.42729120169102
Iteration: 7, Func. Count: 78, Neg. LLF: 147.59777900099368
Iteration: 8, Func. Count: 88, Neg. LLF: 147.38141419168795
Iteration: 9, Func. Count: 98, Neg. LLF: 147.36545144339473
Iteration: 10, Func. Count: 108, Neg. LLF: 147.3543170850457
Iteration: 11, Func. Count: 118, Neg. LLF: 147.35353558604373
Iteration: 12, Func. Count: 128, Neg. LLF: 147.35309523072104
Iteration: 13, Func. Count: 138, Neg. LLF: 147.35274476330636
Iteration: 14, Func. Count: 148, Neg. LLF: 147.35273123847554
Iteration: 15, Func. Count: 158, Neg. LLF: 147.35273054011137
Optimization terminated successfully (Exit mode 0)
Current function value: 147.35273054011137
Iterations: 15
Function evaluations: 158
Gradient evaluations: 15
Iteration: 1, Func. Count: 8, Neg. LLF: 156.97813318014104
Iteration: 2, Func. Count: 16, Neg. LLF: 151.33503260879377
Iteration: 3, Func. Count: 24, Neg. LLF: 152.57107080508408
Iteration: 4, Func. Count: 32, Neg. LLF: 151.7562252205641
Iteration: 5, Func. Count: 40, Neg. LLF: 149.3590047312095
Iteration: 6, Func. Count: 47, Neg. LLF: 150.86273677570625
Iteration: 7, Func. Count: 55, Neg. LLF: 161.436005116768
Iteration: 8, Func. Count: 63, Neg. LLF: 148.60234618552562
Iteration: 9, Func. Count: 70, Neg. LLF: 151.8029246882455
Iteration: 10, Func. Count: 78, Neg. LLF: 153.00734600865874
Iteration: 11, Func. Count: 86, Neg. LLF: 148.8987174927611
Iteration: 12, Func. Count: 94, Neg. LLF: 147.05352096304426
Iteration: 13, Func. Count: 101, Neg. LLF: 146.81441418244563
Iteration: 14, Func. Count: 108, Neg. LLF: 146.66330636875432
Iteration: 15, Func. Count: 115, Neg. LLF: 146.633524482186
Iteration: 16, Func. Count: 122, Neg. LLF: 146.6260765007479
Iteration: 17, Func. Count: 129, Neg. LLF: 146.62328865590788
Iteration: 18, Func. Count: 136, Neg. LLF: 146.62315296741875
Iteration: 19, Func. Count: 143, Neg. LLF: 146.62314913538907
Iteration: 20, Func. Count: 149, Neg. LLF: 146.62314910042048
Optimization terminated successfully (Exit mode 0)
Current function value: 146.62314913538907
Iterations: 20
Function evaluations: 149
Gradient evaluations: 20
Iteration: 1, Func. Count: 9, Neg. LLF: 203.16560508435455
Iteration: 2, Func. Count: 19, Neg. LLF: 162.93009398171392
Iteration: 3, Func. Count: 29, Neg. LLF: 161.46216408979788
Iteration: 4, Func. Count: 39, Neg. LLF: 193.09495403350584
Iteration: 5, Func. Count: 48, Neg. LLF: 149.11342815687445
Iteration: 6, Func. Count: 56, Neg. LLF: 149.0671283204779
Iteration: 7, Func. Count: 64, Neg. LLF: 149.01982762007546
Iteration: 8, Func. Count: 72, Neg. LLF: 148.9944433708248
Iteration: 9, Func. Count: 80, Neg. LLF: 148.97778116416848
Iteration: 10, Func. Count: 88, Neg. LLF: 148.95508420058346
Iteration: 11, Func. Count: 96, Neg. LLF: 153.1162961743833
Iteration: 12, Func. Count: 105, Neg. LLF: 153.17622460238647
Iteration: 13, Func. Count: 114, Neg. LLF: 153.22050832399898
Iteration: 14, Func. Count: 123, Neg. LLF: 153.21019933557812
Iteration: 15, Func. Count: 132, Neg. LLF: 152.2770451747077
Iteration: 16, Func. Count: 141, Neg. LLF: 169.40981797768163
Iteration: 17, Func. Count: 150, Neg. LLF: 152.2826947448336
Iteration: 18, Func. Count: 159, Neg. LLF: 152.65069760771698
Iteration: 19, Func. Count: 168, Neg. LLF: 155.10096150264707
Iteration: 20, Func. Count: 177, Neg. LLF: 151.27352334701547
Iteration: 21, Func. Count: 186, Neg. LLF: 146.97057186832336
Iteration: 22, Func. Count: 194, Neg. LLF: 146.884047819426
Iteration: 23, Func. Count: 202, Neg. LLF: 146.88474138663133
Iteration: 24, Func. Count: 211, Neg. LLF: 146.76211144367304
Iteration: 25, Func. Count: 219, Neg. LLF: 146.67527904524061
Iteration: 26, Func. Count: 227, Neg. LLF: 146.6389786786023
Iteration: 27, Func. Count: 235, Neg. LLF: 146.62645149875027
Iteration: 28, Func. Count: 243, Neg. LLF: 146.6238636461889
Iteration: 29, Func. Count: 251, Neg. LLF: 146.623154727201
Iteration: 30, Func. Count: 259, Neg. LLF: 146.6231489759519
Iteration: 31, Func. Count: 266, Neg. LLF: 146.62314898162737
Optimization terminated successfully (Exit mode 0)
Current function value: 146.6231489759519
Iterations: 32
Function evaluations: 266
Gradient evaluations: 31
Iteration: 1, Func. Count: 10, Neg. LLF: 168.69327323418997
Iteration: 2, Func. Count: 20, Neg. LLF: 161.109982547048
Iteration: 3, Func. Count: 30, Neg. LLF: 154.69828337993715
Iteration: 4, Func. Count: 40, Neg. LLF: 153.3296610163293
Iteration: 5, Func. Count: 50, Neg. LLF: 150.91046432215794
Iteration: 6, Func. Count: 60, Neg. LLF: 151.33967707087655
Iteration: 7, Func. Count: 70, Neg. LLF: 148.17928884044017
Iteration: 8, Func. Count: 80, Neg. LLF: 154.12896907549856
Iteration: 9, Func. Count: 90, Neg. LLF: 147.2020078368447
Iteration: 10, Func. Count: 99, Neg. LLF: 147.0870628429863
Iteration: 11, Func. Count: 108, Neg. LLF: 146.97987689840937
Iteration: 12, Func. Count: 117, Neg. LLF: 146.8358805485814
Iteration: 13, Func. Count: 126, Neg. LLF: 146.77720491674484
Iteration: 14, Func. Count: 135, Neg. LLF: 146.69746615692293
Iteration: 15, Func. Count: 144, Neg. LLF: 146.6630531568195
Iteration: 16, Func. Count: 153, Neg. LLF: 146.63124229446197
Iteration: 17, Func. Count: 162, Neg. LLF: 146.62439361028416
Iteration: 18, Func. Count: 171, Neg. LLF: 146.62319586758804
Iteration: 19, Func. Count: 180, Neg. LLF: 146.62315165797742
Iteration: 20, Func. Count: 189, Neg. LLF: 146.62314888337926
Iteration: 21, Func. Count: 197, Neg. LLF: 146.62314905173378
Optimization terminated successfully (Exit mode 0)
Current function value: 146.62314888337926
Iterations: 21
Function evaluations: 197
Gradient evaluations: 21
Iteration: 1, Func. Count: 11, Neg. LLF: 204.85171799970564
Iteration: 2, Func. Count: 22, Neg. LLF: 149.72769484840182
Iteration: 3, Func. Count: 33, Neg. LLF: 209.77350793152223
Iteration: 4, Func. Count: 45, Neg. LLF: 148.81452287948474
Iteration: 5, Func. Count: 56, Neg. LLF: 156.30284177736377
Iteration: 6, Func. Count: 67, Neg. LLF: 148.33473374310472
Iteration: 7, Func. Count: 78, Neg. LLF: 147.74951312456085
Iteration: 8, Func. Count: 89, Neg. LLF: 147.36336236215772
Iteration: 9, Func. Count: 99, Neg. LLF: 147.42628994138286
Iteration: 10, Func. Count: 110, Neg. LLF: 147.35490261749896
Iteration: 11, Func. Count: 120, Neg. LLF: 147.35303783010346
Iteration: 12, Func. Count: 130, Neg. LLF: 147.3528989673227
Iteration: 13, Func. Count: 140, Neg. LLF: 147.352821796172
Iteration: 14, Func. Count: 150, Neg. LLF: 147.35277170154066
Iteration: 15, Func. Count: 160, Neg. LLF: 147.35274859028488
Iteration: 16, Func. Count: 170, Neg. LLF: 147.3527334844663
Iteration: 17, Func. Count: 180, Neg. LLF: 147.35272716589824
Iteration: 18, Func. Count: 190, Neg. LLF: 147.35272049085097
Iteration: 19, Func. Count: 200, Neg. LLF: 147.35271555652594
Iteration: 20, Func. Count: 210, Neg. LLF: 147.3527131973444
Iteration: 21, Func. Count: 220, Neg. LLF: 147.35271263083817
Optimization terminated successfully (Exit mode 0)
Current function value: 147.35271263083817
Iterations: 21
Function evaluations: 220
Gradient evaluations: 21
Iteration: 1, Func. Count: 12, Neg. LLF: 204.88924186900545
Iteration: 2, Func. Count: 24, Neg. LLF: 149.78042442566388
Iteration: 3, Func. Count: 36, Neg. LLF: 205.42908707494234
Iteration: 4, Func. Count: 49, Neg. LLF: 149.88467454931336
Iteration: 5, Func. Count: 61, Neg. LLF: 155.38160555496006
Iteration: 6, Func. Count: 73, Neg. LLF: 148.13283642952868
Iteration: 7, Func. Count: 85, Neg. LLF: 148.9519470090897
Iteration: 8, Func. Count: 97, Neg. LLF: 147.38263109463364
Iteration: 9, Func. Count: 108, Neg. LLF: 147.3607793371917
Iteration: 10, Func. Count: 119, Neg. LLF: 147.35536083608545
Iteration: 11, Func. Count: 130, Neg. LLF: 147.35307454209763
Iteration: 12, Func. Count: 141, Neg. LLF: 147.35280497861595
Iteration: 13, Func. Count: 152, Neg. LLF: 147.35298153011314
Iteration: 14, Func. Count: 164, Neg. LLF: 147.35271431547653
Iteration: 15, Func. Count: 175, Neg. LLF: 147.35271362321578
Optimization terminated successfully (Exit mode 0)
Current function value: 147.35271362321578
Iterations: 15
Function evaluations: 175
Gradient evaluations: 15
Iteration: 1, Func. Count: 9, Neg. LLF: 153.29931640876745
Iteration: 2, Func. Count: 18, Neg. LLF: 152.60584053762568
Iteration: 3, Func. Count: 27, Neg. LLF: 148.30213475858076
Iteration: 4, Func. Count: 37, Neg. LLF: 147.5684847760112
Iteration: 5, Func. Count: 45, Neg. LLF: 149.86439928160178
Iteration: 6, Func. Count: 54, Neg. LLF: 150.0588932971381
Iteration: 7, Func. Count: 63, Neg. LLF: 158.92276464784786
Iteration: 8, Func. Count: 72, Neg. LLF: 151.0630486371541
Iteration: 9, Func. Count: 81, Neg. LLF: 146.34951208437855
Iteration: 10, Func. Count: 90, Neg. LLF: 145.459502865282
Iteration: 11, Func. Count: 98, Neg. LLF: 145.35475966935064
Iteration: 12, Func. Count: 106, Neg. LLF: 145.31377538366337
Iteration: 13, Func. Count: 114, Neg. LLF: 145.27267941073308
Iteration: 14, Func. Count: 122, Neg. LLF: 145.25222835779383
Iteration: 15, Func. Count: 130, Neg. LLF: 145.23518124164514
Iteration: 16, Func. Count: 138, Neg. LLF: 145.23107850761593
Iteration: 17, Func. Count: 146, Neg. LLF: 145.2277915691273
Iteration: 18, Func. Count: 154, Neg. LLF: 145.2271292554509
Iteration: 19, Func. Count: 162, Neg. LLF: 145.22710956615546
Iteration: 20, Func. Count: 169, Neg. LLF: 145.22710954708924
Optimization terminated successfully (Exit mode 0)
Current function value: 145.22710956615546
Iterations: 20
Function evaluations: 169
Gradient evaluations: 20
Iteration: 1, Func. Count: 10, Neg. LLF: 201.67616628674853
Iteration: 2, Func. Count: 21, Neg. LLF: 164.49160402787396
Iteration: 3, Func. Count: 32, Neg. LLF: 156.18488753294997
Iteration: 4, Func. Count: 42, Neg. LLF: 179.78119832152206
Iteration: 5, Func. Count: 52, Neg. LLF: 147.27222751323134
Iteration: 6, Func. Count: 61, Neg. LLF: 150.7526025802049
Iteration: 7, Func. Count: 71, Neg. LLF: 147.66201371440388
Iteration: 8, Func. Count: 81, Neg. LLF: 146.82631081331957
Iteration: 9, Func. Count: 91, Neg. LLF: 145.87352113286582
Iteration: 10, Func. Count: 100, Neg. LLF: 145.3008913007299
Iteration: 11, Func. Count: 109, Neg. LLF: 145.27762425488874
Iteration: 12, Func. Count: 118, Neg. LLF: 145.25980152522598
Iteration: 13, Func. Count: 127, Neg. LLF: 145.24593458914364
Iteration: 14, Func. Count: 136, Neg. LLF: 145.2352693695795
Iteration: 15, Func. Count: 145, Neg. LLF: 145.23019591758919
Iteration: 16, Func. Count: 154, Neg. LLF: 145.22968154166466
Iteration: 17, Func. Count: 163, Neg. LLF: 145.22960240527902
Iteration: 18, Func. Count: 172, Neg. LLF: 145.22940076676025
Iteration: 19, Func. Count: 181, Neg. LLF: 145.2290835391556
Iteration: 20, Func. Count: 190, Neg. LLF: 145.22847056178983
Iteration: 21, Func. Count: 199, Neg. LLF: 145.22784395016973
Iteration: 22, Func. Count: 208, Neg. LLF: 145.22747632815987
Iteration: 23, Func. Count: 217, Neg. LLF: 145.22735331647723
Iteration: 24, Func. Count: 226, Neg. LLF: 145.22727176191356
Iteration: 25, Func. Count: 235, Neg. LLF: 145.22717785903936
Iteration: 26, Func. Count: 244, Neg. LLF: 145.22712293178745
Iteration: 27, Func. Count: 253, Neg. LLF: 145.22711017436296
Iteration: 28, Func. Count: 262, Neg. LLF: 145.22710929661685
Optimization terminated successfully (Exit mode 0)
Current function value: 145.22710929661685
Iterations: 28
Function evaluations: 262
Gradient evaluations: 28
Iteration: 1, Func. Count: 11, Neg. LLF: 199.48002956127777
Iteration: 2, Func. Count: 22, Neg. LLF: 161.1516217400072
Iteration: 3, Func. Count: 33, Neg. LLF: 153.21007672825337
Iteration: 4, Func. Count: 44, Neg. LLF: 149.68796394532626
Iteration: 5, Func. Count: 55, Neg. LLF: 146.236744517321
Iteration: 6, Func. Count: 65, Neg. LLF: 145.48730102456656
Iteration: 7, Func. Count: 75, Neg. LLF: 145.3503470612108
Iteration: 8, Func. Count: 85, Neg. LLF: 145.2662842847355
Iteration: 9, Func. Count: 95, Neg. LLF: 145.24453263001223
Iteration: 10, Func. Count: 105, Neg. LLF: 145.23631259959282
Iteration: 11, Func. Count: 115, Neg. LLF: 145.2320195294713
Iteration: 12, Func. Count: 125, Neg. LLF: 145.22906594676004
Iteration: 13, Func. Count: 135, Neg. LLF: 145.2275539319171
Iteration: 14, Func. Count: 145, Neg. LLF: 145.22717603462692
Iteration: 15, Func. Count: 155, Neg. LLF: 145.2271243669591
Iteration: 16, Func. Count: 165, Neg. LLF: 145.22711575709647
Iteration: 17, Func. Count: 175, Neg. LLF: 145.22711145069172
Iteration: 18, Func. Count: 185, Neg. LLF: 145.2271095432519
Iteration: 19, Func. Count: 194, Neg. LLF: 145.22710965987602
Optimization terminated successfully (Exit mode 0)
Current function value: 145.2271095432519
Iterations: 19
Function evaluations: 194
Gradient evaluations: 19
Iteration: 1, Func. Count: 12, Neg. LLF: 198.4756056189508
Iteration: 2, Func. Count: 24, Neg. LLF: 159.31354783713292
Iteration: 3, Func. Count: 36, Neg. LLF: 150.36801801788414
Iteration: 4, Func. Count: 48, Neg. LLF: 149.5607135160632
Iteration: 5, Func. Count: 60, Neg. LLF: 146.21064882999818
Iteration: 6, Func. Count: 71, Neg. LLF: 147.04460916480227
Iteration: 7, Func. Count: 83, Neg. LLF: 148.24612244274672
Iteration: 8, Func. Count: 96, Neg. LLF: 146.380115967367
Iteration: 9, Func. Count: 109, Neg. LLF: 145.4043405568728
Iteration: 10, Func. Count: 120, Neg. LLF: 145.305993533925
Iteration: 11, Func. Count: 131, Neg. LLF: 145.23039113947223
Iteration: 12, Func. Count: 142, Neg. LLF: 145.22815210630347
Iteration: 13, Func. Count: 153, Neg. LLF: 145.22762100495655
Iteration: 14, Func. Count: 164, Neg. LLF: 145.22748079756022
Iteration: 15, Func. Count: 175, Neg. LLF: 145.22736559262464
Iteration: 16, Func. Count: 186, Neg. LLF: 145.2272612889387
Iteration: 17, Func. Count: 197, Neg. LLF: 145.22715999339508
Iteration: 18, Func. Count: 208, Neg. LLF: 145.22711760595652
Iteration: 19, Func. Count: 219, Neg. LLF: 145.2271102099287
Iteration: 20, Func. Count: 230, Neg. LLF: 145.22710943324404
Optimization terminated successfully (Exit mode 0)
Current function value: 145.22710943324404
Iterations: 20
Function evaluations: 230
Gradient evaluations: 20
Iteration: 1, Func. Count: 13, Neg. LLF: 197.83856468811842
Iteration: 2, Func. Count: 26, Neg. LLF: 160.44537568774678
Iteration: 3, Func. Count: 39, Neg. LLF: 152.65292948545624
Iteration: 4, Func. Count: 52, Neg. LLF: 151.72778312810675
Iteration: 5, Func. Count: 65, Neg. LLF: 146.51041914560238
Iteration: 6, Func. Count: 77, Neg. LLF: 145.86126035090535
Iteration: 7, Func. Count: 90, Neg. LLF: 151.69931595780125
Iteration: 8, Func. Count: 104, Neg. LLF: 146.41544532533413
Iteration: 9, Func. Count: 117, Neg. LLF: 145.0222140951317
Iteration: 10, Func. Count: 129, Neg. LLF: 144.97625228124107
Iteration: 11, Func. Count: 141, Neg. LLF: 144.95972587227817
Iteration: 12, Func. Count: 153, Neg. LLF: 144.93204818350128
Iteration: 13, Func. Count: 165, Neg. LLF: 144.89764897705786
Iteration: 14, Func. Count: 177, Neg. LLF: 144.84163737090836
Iteration: 15, Func. Count: 189, Neg. LLF: 144.77067248706788
Iteration: 16, Func. Count: 201, Neg. LLF: 144.6586788733905
Iteration: 17, Func. Count: 213, Neg. LLF: 144.57698167510551
Iteration: 18, Func. Count: 225, Neg. LLF: 144.55693847241955
Iteration: 19, Func. Count: 237, Neg. LLF: 144.55135714027102
Iteration: 20, Func. Count: 249, Neg. LLF: 144.54959830201037
Iteration: 21, Func. Count: 261, Neg. LLF: 144.5495638844673
Iteration: 22, Func. Count: 273, Neg. LLF: 144.54956335035706
Optimization terminated successfully (Exit mode 0)
Current function value: 144.54956335035706
Iterations: 22
Function evaluations: 273
Gradient evaluations: 22
Iteration: 1, Func. Count: 6, Neg. LLF: 155.34018295694727
Iteration: 2, Func. Count: 11, Neg. LLF: 162.85301549554967
Iteration: 3, Func. Count: 17, Neg. LLF: 152.03968816424793
Iteration: 4, Func. Count: 22, Neg. LLF: 151.55624942143197
Iteration: 5, Func. Count: 27, Neg. LLF: 527.0185235596626
Iteration: 6, Func. Count: 33, Neg. LLF: 173.91187819051447
Iteration: 7, Func. Count: 39, Neg. LLF: 199.9183259410428
Iteration: 8, Func. Count: 45, Neg. LLF: 151.4872452881869
Iteration: 9, Func. Count: 51, Neg. LLF: 150.08666951402313
Iteration: 10, Func. Count: 56, Neg. LLF: 150.04933465886896
Iteration: 11, Func. Count: 61, Neg. LLF: 150.04889923866278
Iteration: 12, Func. Count: 66, Neg. LLF: 150.04883893744102
Iteration: 13, Func. Count: 71, Neg. LLF: 150.04881122220087
Iteration: 14, Func. Count: 76, Neg. LLF: 150.04880951521892
Iteration: 15, Func. Count: 80, Neg. LLF: 150.0488094288808
Optimization terminated successfully (Exit mode 0)
Current function value: 150.04880951521892
Iterations: 15
Function evaluations: 80
Gradient evaluations: 15
Iteration: 1, Func. Count: 7, Neg. LLF: 161.22079133523786
Iteration: 2, Func. Count: 14, Neg. LLF: 153.9497882530653
Iteration: 3, Func. Count: 21, Neg. LLF: 150.8871841048784
Iteration: 4, Func. Count: 27, Neg. LLF: 150.66060021939614
Iteration: 5, Func. Count: 33, Neg. LLF: 150.91412369507225
Iteration: 6, Func. Count: 40, Neg. LLF: 157.91803347833374
Iteration: 7, Func. Count: 47, Neg. LLF: 150.2797336675903
Iteration: 8, Func. Count: 54, Neg. LLF: 154.73312541262055
Iteration: 9, Func. Count: 61, Neg. LLF: 150.07188029889687
Iteration: 10, Func. Count: 67, Neg. LLF: 150.0250868744392
Iteration: 11, Func. Count: 73, Neg. LLF: 150.0028817102824
Iteration: 12, Func. Count: 79, Neg. LLF: 149.99468227696048
Iteration: 13, Func. Count: 85, Neg. LLF: 149.99407982708865
Iteration: 14, Func. Count: 91, Neg. LLF: 149.99406345918916
Iteration: 15, Func. Count: 96, Neg. LLF: 149.99406335059885
Optimization terminated successfully (Exit mode 0)
Current function value: 149.99406345918916
Iterations: 15
Function evaluations: 96
Gradient evaluations: 15
Iteration: 1, Func. Count: 8, Neg. LLF: 169.30234506754954
Iteration: 2, Func. Count: 16, Neg. LLF: 151.3299123507711
Iteration: 3, Func. Count: 23, Neg. LLF: 164.3712466508623
Iteration: 4, Func. Count: 31, Neg. LLF: 159.58675802261527
Iteration: 5, Func. Count: 39, Neg. LLF: 150.87613919312372
Iteration: 6, Func. Count: 47, Neg. LLF: 150.7378491758214
Iteration: 7, Func. Count: 55, Neg. LLF: 149.88828057864592
Iteration: 8, Func. Count: 62, Neg. LLF: 149.8750519298957
Iteration: 9, Func. Count: 69, Neg. LLF: 149.858197103985
Iteration: 10, Func. Count: 76, Neg. LLF: 149.85353311786267
Iteration: 11, Func. Count: 83, Neg. LLF: 149.85334252665191
Iteration: 12, Func. Count: 90, Neg. LLF: 149.85333449684472
Iteration: 13, Func. Count: 96, Neg. LLF: 149.85333436976046
Optimization terminated successfully (Exit mode 0)
Current function value: 149.85333449684472
Iterations: 13
Function evaluations: 96
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 167.6759240156221
Iteration: 2, Func. Count: 18, Neg. LLF: 155.48879954802524
Iteration: 3, Func. Count: 27, Neg. LLF: 149.44758417017147
Iteration: 4, Func. Count: 35, Neg. LLF: 149.60632274035027
Iteration: 5, Func. Count: 44, Neg. LLF: 148.77589731580582
Iteration: 6, Func. Count: 53, Neg. LLF: 148.5599749593783
Iteration: 7, Func. Count: 61, Neg. LLF: 148.54470125019503
Iteration: 8, Func. Count: 69, Neg. LLF: 148.5422527499234
Iteration: 9, Func. Count: 77, Neg. LLF: 148.5407197386226
Iteration: 10, Func. Count: 85, Neg. LLF: 148.54071665791344
Iteration: 11, Func. Count: 92, Neg. LLF: 148.54071655423846
Optimization terminated successfully (Exit mode 0)
Current function value: 148.54071665791344
Iterations: 11
Function evaluations: 92
Gradient evaluations: 11
Iteration: 1, Func. Count: 10, Neg. LLF: 166.72178384683482
Iteration: 2, Func. Count: 20, Neg. LLF: 164.24909682422847
Iteration: 3, Func. Count: 30, Neg. LLF: 149.72235576320372
Iteration: 4, Func. Count: 39, Neg. LLF: 150.4592799529971
Iteration: 5, Func. Count: 49, Neg. LLF: 149.35357793586
Iteration: 6, Func. Count: 59, Neg. LLF: 148.56552582372248
Iteration: 7, Func. Count: 68, Neg. LLF: 148.546753980492
Iteration: 8, Func. Count: 77, Neg. LLF: 148.54205995066616
Iteration: 9, Func. Count: 86, Neg. LLF: 148.54073434944254
Iteration: 10, Func. Count: 95, Neg. LLF: 148.54072137196468
Iteration: 11, Func. Count: 104, Neg. LLF: 148.54071854741898
Iteration: 12, Func. Count: 113, Neg. LLF: 148.5407162946066
Iteration: 13, Func. Count: 121, Neg. LLF: 148.54071634768567
Optimization terminated successfully (Exit mode 0)
Current function value: 148.5407162946066
Iterations: 13
Function evaluations: 121
Gradient evaluations: 13
Iteration: 1, Func. Count: 7, Neg. LLF: 157.90003201719836
Iteration: 2, Func. Count: 14, Neg. LLF: 152.30115285573737
Iteration: 3, Func. Count: 21, Neg. LLF: 150.7219237420164
Iteration: 4, Func. Count: 27, Neg. LLF: 150.79892985163065
Iteration: 5, Func. Count: 34, Neg. LLF: 150.0397211414619
Iteration: 6, Func. Count: 40, Neg. LLF: 149.9166082389379
Iteration: 7, Func. Count: 46, Neg. LLF: 149.77307883655294
Iteration: 8, Func. Count: 52, Neg. LLF: 212.24216824812768
Iteration: 9, Func. Count: 59, Neg. LLF: 179.21781101998315
Iteration: 10, Func. Count: 66, Neg. LLF: 150.42368545997107
Iteration: 11, Func. Count: 73, Neg. LLF: 148.95740761120925
Iteration: 12, Func. Count: 79, Neg. LLF: 148.76565867383442
Iteration: 13, Func. Count: 85, Neg. LLF: 148.71536700146737
Iteration: 14, Func. Count: 91, Neg. LLF: 148.66205090074573
Iteration: 15, Func. Count: 97, Neg. LLF: 148.65497265227623
Iteration: 16, Func. Count: 103, Neg. LLF: 148.6542543000891
Iteration: 17, Func. Count: 109, Neg. LLF: 148.65424858129722
Iteration: 18, Func. Count: 114, Neg. LLF: 148.65424854963717
Optimization terminated successfully (Exit mode 0)
Current function value: 148.65424858129722
Iterations: 18
Function evaluations: 114
Gradient evaluations: 18
Iteration: 1, Func. Count: 8, Neg. LLF: 207.16764990526121
Iteration: 2, Func. Count: 17, Neg. LLF: 158.29236942691946
Iteration: 3, Func. Count: 26, Neg. LLF: 161.89717703782065
Iteration: 4, Func. Count: 35, Neg. LLF: 187.7952043218271
Iteration: 5, Func. Count: 43, Neg. LLF: 149.06247752456514
Iteration: 6, Func. Count: 50, Neg. LLF: 149.01766684481285
Iteration: 7, Func. Count: 57, Neg. LLF: 149.00317533994468
Iteration: 8, Func. Count: 64, Neg. LLF: 148.97231278580205
Iteration: 9, Func. Count: 71, Neg. LLF: 148.94110051296587
Iteration: 10, Func. Count: 78, Neg. LLF: 152.38831895609013
Iteration: 11, Func. Count: 86, Neg. LLF: 152.4116495643
Iteration: 12, Func. Count: 94, Neg. LLF: 152.423311610544
Iteration: 13, Func. Count: 102, Neg. LLF: 149.20201948980375
Iteration: 14, Func. Count: 110, Neg. LLF: 152.6040233115221
Iteration: 15, Func. Count: 118, Neg. LLF: 612.0686678441568
Iteration: 16, Func. Count: 127, Neg. LLF: 152.2180732898256
Iteration: 17, Func. Count: 135, Neg. LLF: 147.719659343916
Iteration: 18, Func. Count: 142, Neg. LLF: 147.66263291029256
Iteration: 19, Func. Count: 149, Neg. LLF: 147.62745432118064
Iteration: 20, Func. Count: 156, Neg. LLF: 147.62155139431803
Iteration: 21, Func. Count: 163, Neg. LLF: 147.6196931475421
Iteration: 22, Func. Count: 170, Neg. LLF: 147.61262116946497
Iteration: 23, Func. Count: 177, Neg. LLF: 147.6096613544834
Iteration: 24, Func. Count: 184, Neg. LLF: 147.6096360722618
Iteration: 25, Func. Count: 191, Neg. LLF: 147.6096353701871
Optimization terminated successfully (Exit mode 0)
Current function value: 147.6096353701871
Iterations: 25
Function evaluations: 191
Gradient evaluations: 25
Iteration: 1, Func. Count: 9, Neg. LLF: 215.66405681680246
Iteration: 2, Func. Count: 18, Neg. LLF: 160.0165396294396
Iteration: 3, Func. Count: 28, Neg. LLF: 160.0355544808619
Iteration: 4, Func. Count: 37, Neg. LLF: 159.46764134494111
Iteration: 5, Func. Count: 46, Neg. LLF: 151.5569176896892
Iteration: 6, Func. Count: 55, Neg. LLF: 149.28600640922264
Iteration: 7, Func. Count: 64, Neg. LLF: 148.968233970042
Iteration: 8, Func. Count: 72, Neg. LLF: 148.9244629546495
Iteration: 9, Func. Count: 80, Neg. LLF: 148.76838103993467
Iteration: 10, Func. Count: 88, Neg. LLF: 150.57228799184776
Iteration: 11, Func. Count: 97, Neg. LLF: 152.1160162196989
Iteration: 12, Func. Count: 106, Neg. LLF: 151.9763301218344
Iteration: 13, Func. Count: 115, Neg. LLF: 151.6373902757459
Iteration: 14, Func. Count: 124, Neg. LLF: 151.1985335211894
Iteration: 15, Func. Count: 133, Neg. LLF: 151.6756986565387
Iteration: 16, Func. Count: 142, Neg. LLF: 147.85484207574882
Iteration: 17, Func. Count: 150, Neg. LLF: 148.15803659899746
Iteration: 18, Func. Count: 159, Neg. LLF: 147.9634569128126
Iteration: 19, Func. Count: 168, Neg. LLF: 147.55943128166282
Iteration: 20, Func. Count: 176, Neg. LLF: 147.5511936545293
Iteration: 21, Func. Count: 184, Neg. LLF: 147.53718412956363
Iteration: 22, Func. Count: 192, Neg. LLF: 147.5265143852544
Iteration: 23, Func. Count: 200, Neg. LLF: 147.51637439462155
Iteration: 24, Func. Count: 208, Neg. LLF: 147.51327518720421
Iteration: 25, Func. Count: 216, Neg. LLF: 147.51058445048062
Iteration: 26, Func. Count: 224, Neg. LLF: 147.50892169004027
Iteration: 27, Func. Count: 232, Neg. LLF: 147.50744722076809
Iteration: 28, Func. Count: 240, Neg. LLF: 147.50654453439262
Iteration: 29, Func. Count: 248, Neg. LLF: 147.50625024220284
Iteration: 30, Func. Count: 256, Neg. LLF: 147.5062117059806
Iteration: 31, Func. Count: 264, Neg. LLF: 147.5062062751268
Iteration: 32, Func. Count: 271, Neg. LLF: 147.5062062225279
Optimization terminated successfully (Exit mode 0)
Current function value: 147.5062062751268
Iterations: 32
Function evaluations: 271
Gradient evaluations: 32
Iteration: 1, Func. Count: 10, Neg. LLF: 205.97118442219355
Iteration: 2, Func. Count: 20, Neg. LLF: 154.13055669983805
Iteration: 3, Func. Count: 30, Neg. LLF: 147.8012812949712
Iteration: 4, Func. Count: 39, Neg. LLF: 149.74514782939633
Iteration: 5, Func. Count: 49, Neg. LLF: 152.17684584153616
Iteration: 6, Func. Count: 59, Neg. LLF: 147.42826902637793
Iteration: 7, Func. Count: 68, Neg. LLF: 149.58649753846976
Iteration: 8, Func. Count: 78, Neg. LLF: 147.38738867937346
Iteration: 9, Func. Count: 88, Neg. LLF: 147.35486136416515
Iteration: 10, Func. Count: 97, Neg. LLF: 147.35298115696213
Iteration: 11, Func. Count: 106, Neg. LLF: 147.35285251310705
Iteration: 12, Func. Count: 115, Neg. LLF: 147.3527867974788
Iteration: 13, Func. Count: 124, Neg. LLF: 147.35276038428216
Iteration: 14, Func. Count: 133, Neg. LLF: 147.35273551616217
Iteration: 15, Func. Count: 142, Neg. LLF: 147.35273094419492
Iteration: 16, Func. Count: 150, Neg. LLF: 147.35273087749593
Optimization terminated successfully (Exit mode 0)
Current function value: 147.35273094419492
Iterations: 16
Function evaluations: 150
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 206.30734602833928
Iteration: 2, Func. Count: 22, Neg. LLF: 152.96164613630094
Iteration: 3, Func. Count: 33, Neg. LLF: 148.163081807838
Iteration: 4, Func. Count: 43, Neg. LLF: 147.66669429326032
Iteration: 5, Func. Count: 53, Neg. LLF: 150.84255271034033
Iteration: 6, Func. Count: 64, Neg. LLF: 147.86635836353787
Iteration: 7, Func. Count: 75, Neg. LLF: 150.95938582528257
Iteration: 8, Func. Count: 86, Neg. LLF: 147.3635731043047
Iteration: 9, Func. Count: 96, Neg. LLF: 147.35936482924666
Iteration: 10, Func. Count: 106, Neg. LLF: 147.35470515719726
Iteration: 11, Func. Count: 116, Neg. LLF: 147.35323736389776
Iteration: 12, Func. Count: 126, Neg. LLF: 147.3528495054705
Iteration: 13, Func. Count: 136, Neg. LLF: 147.35275215544056
Iteration: 14, Func. Count: 146, Neg. LLF: 147.352732014029
Iteration: 15, Func. Count: 156, Neg. LLF: 147.35273058250175
Iteration: 16, Func. Count: 165, Neg. LLF: 147.35273057635553
Optimization terminated successfully (Exit mode 0)
Current function value: 147.35273058250175
Iterations: 16
Function evaluations: 165
Gradient evaluations: 16
Iteration: 1, Func. Count: 8, Neg. LLF: 161.37754010179512
Iteration: 2, Func. Count: 16, Neg. LLF: 153.05502882763972
Iteration: 3, Func. Count: 24, Neg. LLF: 150.78797177971208
Iteration: 4, Func. Count: 32, Neg. LLF: 150.3360876369473
Iteration: 5, Func. Count: 39, Neg. LLF: 149.91049288739583
Iteration: 6, Func. Count: 46, Neg. LLF: 151.19228256568573
Iteration: 7, Func. Count: 55, Neg. LLF: 148.6762695932298
Iteration: 8, Func. Count: 62, Neg. LLF: 148.53899052862658
Iteration: 9, Func. Count: 69, Neg. LLF: 147.94802130725367
Iteration: 10, Func. Count: 76, Neg. LLF: 147.69078083540643
Iteration: 11, Func. Count: 83, Neg. LLF: 147.66881257063827
Iteration: 12, Func. Count: 90, Neg. LLF: 147.60652376959885
Iteration: 13, Func. Count: 97, Neg. LLF: 147.57684678984074
Iteration: 14, Func. Count: 104, Neg. LLF: 147.51705152560325
Iteration: 15, Func. Count: 111, Neg. LLF: 147.43372870921462
Iteration: 16, Func. Count: 118, Neg. LLF: 147.39723947867122
Iteration: 17, Func. Count: 125, Neg. LLF: 147.39354594844417
Iteration: 18, Func. Count: 132, Neg. LLF: 147.3926099364508
Iteration: 19, Func. Count: 139, Neg. LLF: 147.39249307895994
Iteration: 20, Func. Count: 146, Neg. LLF: 147.39248687568812
Iteration: 21, Func. Count: 152, Neg. LLF: 147.39248684639838
Optimization terminated successfully (Exit mode 0)
Current function value: 147.39248687568812
Iterations: 21
Function evaluations: 152
Gradient evaluations: 21
Iteration: 1, Func. Count: 9, Neg. LLF: 208.3956582200179
Iteration: 2, Func. Count: 19, Neg. LLF: 161.97518921950223
Iteration: 3, Func. Count: 29, Neg. LLF: 149.72901042264823
Iteration: 4, Func. Count: 38, Neg. LLF: 161.0490730454082
Iteration: 5, Func. Count: 48, Neg. LLF: 149.07589458525425
Iteration: 6, Func. Count: 56, Neg. LLF: 149.03005477503513
Iteration: 7, Func. Count: 64, Neg. LLF: 149.0127115784578
Iteration: 8, Func. Count: 72, Neg. LLF: 148.96914406313488
Iteration: 9, Func. Count: 80, Neg. LLF: 148.93938049264938
Iteration: 10, Func. Count: 88, Neg. LLF: 152.16849343204143
Iteration: 11, Func. Count: 97, Neg. LLF: 152.20052434352303
Iteration: 12, Func. Count: 106, Neg. LLF: 152.21686645343357
Iteration: 13, Func. Count: 115, Neg. LLF: 152.04014847704337
Iteration: 14, Func. Count: 124, Neg. LLF: 152.80522028447777
Iteration: 15, Func. Count: 133, Neg. LLF: 159.76182716279723
Iteration: 16, Func. Count: 142, Neg. LLF: 153.68240200566657
Iteration: 17, Func. Count: 151, Neg. LLF: 149.4396713723858
Iteration: 18, Func. Count: 160, Neg. LLF: 147.73423264236754
Iteration: 19, Func. Count: 169, Neg. LLF: 147.58220531521948
Iteration: 20, Func. Count: 177, Neg. LLF: 147.4979585444842
Iteration: 21, Func. Count: 185, Neg. LLF: 147.45653209429602
Iteration: 22, Func. Count: 193, Neg. LLF: 147.4058993501106
Iteration: 23, Func. Count: 201, Neg. LLF: 147.3960731481624
Iteration: 24, Func. Count: 209, Neg. LLF: 147.39469357938245
Iteration: 25, Func. Count: 217, Neg. LLF: 147.394182545326
Iteration: 26, Func. Count: 225, Neg. LLF: 147.39309046994808
Iteration: 27, Func. Count: 233, Neg. LLF: 147.39260616617872
Iteration: 28, Func. Count: 241, Neg. LLF: 147.39249359082538
Iteration: 29, Func. Count: 249, Neg. LLF: 147.39248690750492
Iteration: 30, Func. Count: 256, Neg. LLF: 147.39248686792342
Optimization terminated successfully (Exit mode 0)
Current function value: 147.39248690750492
Iterations: 31
Function evaluations: 256
Gradient evaluations: 30
Iteration: 1, Func. Count: 10, Neg. LLF: 171.1269089540234
Iteration: 2, Func. Count: 21, Neg. LLF: 159.81993527329342
Iteration: 3, Func. Count: 32, Neg. LLF: 153.2606768480375
Iteration: 4, Func. Count: 42, Neg. LLF: 151.2744783321679
Iteration: 5, Func. Count: 53, Neg. LLF: 151.16625294513904
Iteration: 6, Func. Count: 63, Neg. LLF: 149.50476034111236
Iteration: 7, Func. Count: 73, Neg. LLF: 149.08304884933952
Iteration: 8, Func. Count: 82, Neg. LLF: 148.9699716893001
Iteration: 9, Func. Count: 91, Neg. LLF: 148.89230566000532
Iteration: 10, Func. Count: 100, Neg. LLF: 148.83242107609325
Iteration: 11, Func. Count: 109, Neg. LLF: 148.2235337827463
Iteration: 12, Func. Count: 118, Neg. LLF: 149.50156245589355
Iteration: 13, Func. Count: 128, Neg. LLF: 150.67237415437916
Iteration: 14, Func. Count: 138, Neg. LLF: 147.3000652540117
Iteration: 15, Func. Count: 147, Neg. LLF: 147.31565271420408
Iteration: 16, Func. Count: 157, Neg. LLF: 147.26385244041856
Iteration: 17, Func. Count: 166, Neg. LLF: 147.2500590380869
Iteration: 18, Func. Count: 175, Neg. LLF: 147.22971424567234
Iteration: 19, Func. Count: 184, Neg. LLF: 147.20778919721278
Iteration: 20, Func. Count: 193, Neg. LLF: 147.19180283131942
Iteration: 21, Func. Count: 202, Neg. LLF: 147.18977940623853
Iteration: 22, Func. Count: 211, Neg. LLF: 147.1895872651839
Iteration: 23, Func. Count: 220, Neg. LLF: 147.1894498115528
Iteration: 24, Func. Count: 229, Neg. LLF: 147.18918511056683
Iteration: 25, Func. Count: 238, Neg. LLF: 147.1889937430728
Iteration: 26, Func. Count: 247, Neg. LLF: 147.18892564697708
Iteration: 27, Func. Count: 256, Neg. LLF: 147.1889189967236
Iteration: 28, Func. Count: 264, Neg. LLF: 147.18891894225703
Optimization terminated successfully (Exit mode 0)
Current function value: 147.1889189967236
Iterations: 28
Function evaluations: 264
Gradient evaluations: 28
Iteration: 1, Func. Count: 11, Neg. LLF: 210.64556791868222
Iteration: 2, Func. Count: 22, Neg. LLF: 151.3949357097399
Iteration: 3, Func. Count: 33, Neg. LLF: 149.31584705272306
Iteration: 4, Func. Count: 44, Neg. LLF: 147.7713802412687
Iteration: 5, Func. Count: 54, Neg. LLF: 152.29291449823464
Iteration: 6, Func. Count: 65, Neg. LLF: 147.4376125685603
Iteration: 7, Func. Count: 75, Neg. LLF: 147.37616701710635
Iteration: 8, Func. Count: 85, Neg. LLF: 147.36198113985535
Iteration: 9, Func. Count: 95, Neg. LLF: 147.35611677139087
Iteration: 10, Func. Count: 105, Neg. LLF: 147.35412107771836
Iteration: 11, Func. Count: 115, Neg. LLF: 147.35341319343425
Iteration: 12, Func. Count: 125, Neg. LLF: 147.3528903130772
Iteration: 13, Func. Count: 135, Neg. LLF: 147.35274338019124
Iteration: 14, Func. Count: 145, Neg. LLF: 147.35273092765289
Iteration: 15, Func. Count: 154, Neg. LLF: 147.35273086106125
Optimization terminated successfully (Exit mode 0)
Current function value: 147.35273092765289
Iterations: 15
Function evaluations: 154
Gradient evaluations: 15
Iteration: 1, Func. Count: 12, Neg. LLF: 210.85929572029158
Iteration: 2, Func. Count: 24, Neg. LLF: 150.71305612482854
Iteration: 3, Func. Count: 36, Neg. LLF: 149.3559848944239
Iteration: 4, Func. Count: 48, Neg. LLF: 147.88683774286756
Iteration: 5, Func. Count: 59, Neg. LLF: 152.88422317894282
Iteration: 6, Func. Count: 71, Neg. LLF: 149.73493642322813
Iteration: 7, Func. Count: 83, Neg. LLF: 147.54653982830038
Iteration: 8, Func. Count: 94, Neg. LLF: 147.46667408900146
Iteration: 9, Func. Count: 105, Neg. LLF: 148.1072343996181
Iteration: 10, Func. Count: 118, Neg. LLF: 150.61090676458392
Iteration: 11, Func. Count: 130, Neg. LLF: 147.42407624178153
Iteration: 12, Func. Count: 141, Neg. LLF: 147.40989537319993
Iteration: 13, Func. Count: 152, Neg. LLF: 147.40099578313428
Iteration: 14, Func. Count: 163, Neg. LLF: 147.38800025538674
Iteration: 15, Func. Count: 174, Neg. LLF: 147.37093671361816
Iteration: 16, Func. Count: 185, Neg. LLF: 147.35729658236653
Iteration: 17, Func. Count: 196, Neg. LLF: 147.35337423332052
Iteration: 18, Func. Count: 207, Neg. LLF: 147.35277852342944
Iteration: 19, Func. Count: 218, Neg. LLF: 147.3527373765727
Iteration: 20, Func. Count: 229, Neg. LLF: 147.35273144876004
Iteration: 21, Func. Count: 240, Neg. LLF: 147.3527305525815
Optimization terminated successfully (Exit mode 0)
Current function value: 147.3527305525815
Iterations: 21
Function evaluations: 240
Gradient evaluations: 21
Iteration: 1, Func. Count: 9, Neg. LLF: 161.18678371812663
Iteration: 2, Func. Count: 18, Neg. LLF: 153.41660874765512
Iteration: 3, Func. Count: 27, Neg. LLF: 153.41459254739146
Iteration: 4, Func. Count: 37, Neg. LLF: 152.8089610200435
Iteration: 5, Func. Count: 47, Neg. LLF: 150.94933026947402
Iteration: 6, Func. Count: 56, Neg. LLF: 150.91330236711985
Iteration: 7, Func. Count: 65, Neg. LLF: 149.5747503435812
Iteration: 8, Func. Count: 73, Neg. LLF: 148.65508837216257
Iteration: 9, Func. Count: 81, Neg. LLF: 148.26425166903792
Iteration: 10, Func. Count: 89, Neg. LLF: 147.44498163409202
Iteration: 11, Func. Count: 97, Neg. LLF: 147.05828199549356
Iteration: 12, Func. Count: 105, Neg. LLF: 146.96106065681874
Iteration: 13, Func. Count: 113, Neg. LLF: 146.8175634513381
Iteration: 14, Func. Count: 121, Neg. LLF: 146.71825649942127
Iteration: 15, Func. Count: 129, Neg. LLF: 146.65622273589128
Iteration: 16, Func. Count: 137, Neg. LLF: 146.62752764506692
Iteration: 17, Func. Count: 145, Neg. LLF: 146.6254496953318
Iteration: 18, Func. Count: 153, Neg. LLF: 146.62316141333733
Iteration: 19, Func. Count: 161, Neg. LLF: 146.62315142314543
Iteration: 20, Func. Count: 169, Neg. LLF: 146.62314878961465
Iteration: 21, Func. Count: 176, Neg. LLF: 146.6231487547154
Optimization terminated successfully (Exit mode 0)
Current function value: 146.62314878961465
Iterations: 21
Function evaluations: 176
Gradient evaluations: 21
Iteration: 1, Func. Count: 10, Neg. LLF: 202.66491171552335
Iteration: 2, Func. Count: 21, Neg. LLF: 164.39918623828027
Iteration: 3, Func. Count: 32, Neg. LLF: 162.0146596073644
Iteration: 4, Func. Count: 43, Neg. LLF: 203.3985895013054
Iteration: 5, Func. Count: 53, Neg. LLF: 149.10939950412103
Iteration: 6, Func. Count: 62, Neg. LLF: 149.06848322766174
Iteration: 7, Func. Count: 71, Neg. LLF: 149.02215811444313
Iteration: 8, Func. Count: 80, Neg. LLF: 148.9955356465104
Iteration: 9, Func. Count: 89, Neg. LLF: 148.98000735551793
Iteration: 10, Func. Count: 98, Neg. LLF: 148.9573738377189
Iteration: 11, Func. Count: 107, Neg. LLF: 153.0504798958521
Iteration: 12, Func. Count: 117, Neg. LLF: 153.1164147515208
Iteration: 13, Func. Count: 127, Neg. LLF: 153.16538182998707
Iteration: 14, Func. Count: 137, Neg. LLF: 153.14605850835105
Iteration: 15, Func. Count: 147, Neg. LLF: 153.5481714683929
Iteration: 16, Func. Count: 157, Neg. LLF: 157.83839284078914
Iteration: 17, Func. Count: 167, Neg. LLF: 157.79568491018557
Iteration: 18, Func. Count: 177, Neg. LLF: 154.63068429709915
Iteration: 19, Func. Count: 187, Neg. LLF: 154.35449985661927
Iteration: 20, Func. Count: 197, Neg. LLF: 150.84620883418094
Iteration: 21, Func. Count: 207, Neg. LLF: 152.56575904193733
Iteration: 22, Func. Count: 217, Neg. LLF: 147.02204722330046
Iteration: 23, Func. Count: 226, Neg. LLF: 146.9565749570968
Iteration: 24, Func. Count: 235, Neg. LLF: 146.8436005648736
Iteration: 25, Func. Count: 244, Neg. LLF: 146.68220613021572
Iteration: 26, Func. Count: 253, Neg. LLF: 146.66147456245957
Iteration: 27, Func. Count: 262, Neg. LLF: 146.64469637577096
Iteration: 28, Func. Count: 271, Neg. LLF: 146.6311025882799
Iteration: 29, Func. Count: 280, Neg. LLF: 146.62438038528535
Iteration: 30, Func. Count: 289, Neg. LLF: 146.62325303251012
Iteration: 31, Func. Count: 298, Neg. LLF: 146.6231491751784
Iteration: 32, Func. Count: 306, Neg. LLF: 146.62314918087947
Optimization terminated successfully (Exit mode 0)
Current function value: 146.6231491751784
Iterations: 33
Function evaluations: 306
Gradient evaluations: 32
Iteration: 1, Func. Count: 11, Neg. LLF: 212.18400581991546
Iteration: 2, Func. Count: 23, Neg. LLF: 165.88348692058364
Iteration: 3, Func. Count: 34, Neg. LLF: 153.26031391918218
Iteration: 4, Func. Count: 45, Neg. LLF: 151.44050353390497
Iteration: 5, Func. Count: 56, Neg. LLF: 152.8833072334247
Iteration: 6, Func. Count: 67, Neg. LLF: 149.19069560418458
Iteration: 7, Func. Count: 77, Neg. LLF: 149.00851889559183
Iteration: 8, Func. Count: 87, Neg. LLF: 148.99192613450083
Iteration: 9, Func. Count: 97, Neg. LLF: 148.96308403988292
Iteration: 10, Func. Count: 107, Neg. LLF: 148.83596324604142
Iteration: 11, Func. Count: 117, Neg. LLF: 149.3535418002639
Iteration: 12, Func. Count: 128, Neg. LLF: 149.26684789262498
Iteration: 13, Func. Count: 139, Neg. LLF: 151.01404036661296
Iteration: 14, Func. Count: 150, Neg. LLF: 151.46795882385572
Iteration: 15, Func. Count: 161, Neg. LLF: 149.4832365234623
Iteration: 16, Func. Count: 172, Neg. LLF: 149.4462195113426
Iteration: 17, Func. Count: 183, Neg. LLF: 147.59248882535178
Iteration: 18, Func. Count: 194, Neg. LLF: 147.20953445599721
Iteration: 19, Func. Count: 204, Neg. LLF: 146.9923668865183
Iteration: 20, Func. Count: 214, Neg. LLF: 147.17188290223035
Iteration: 21, Func. Count: 225, Neg. LLF: 146.7586574449961
Iteration: 22, Func. Count: 235, Neg. LLF: 146.7534159773134
Iteration: 23, Func. Count: 245, Neg. LLF: 146.72949325996157
Iteration: 24, Func. Count: 255, Neg. LLF: 146.70495506174046
Iteration: 25, Func. Count: 265, Neg. LLF: 146.66293025503902
Iteration: 26, Func. Count: 275, Neg. LLF: 146.63635442022326
Iteration: 27, Func. Count: 285, Neg. LLF: 146.62980592209482
Iteration: 28, Func. Count: 295, Neg. LLF: 146.62866459113795
Iteration: 29, Func. Count: 305, Neg. LLF: 146.62685197863277
Iteration: 30, Func. Count: 315, Neg. LLF: 146.62474058749996
Iteration: 31, Func. Count: 325, Neg. LLF: 146.6234617069126
Iteration: 32, Func. Count: 335, Neg. LLF: 146.62313057864725
Iteration: 33, Func. Count: 345, Neg. LLF: 146.62472125012337
Iteration: 34, Func. Count: 356, Neg. LLF: 146.62335494738355
Iteration: 35, Func. Count: 367, Neg. LLF: 146.62448916058975
Iteration: 36, Func. Count: 379, Neg. LLF: 146.62320386066918
Iteration: 37, Func. Count: 390, Neg. LLF: 146.62314997110826
Iteration: 38, Func. Count: 400, Neg. LLF: 146.62314933331837
Optimization terminated successfully (Exit mode 0)
Current function value: 146.62314933331837
Iterations: 39
Function evaluations: 400
Gradient evaluations: 38
Iteration: 1, Func. Count: 12, Neg. LLF: 207.97204045907964
Iteration: 2, Func. Count: 24, Neg. LLF: 154.80756726358277
Iteration: 3, Func. Count: 36, Neg. LLF: 149.41388189465087
Iteration: 4, Func. Count: 48, Neg. LLF: 147.9077236839113
Iteration: 5, Func. Count: 59, Neg. LLF: 150.97210709938147
Iteration: 6, Func. Count: 71, Neg. LLF: 150.9408840957957
Iteration: 7, Func. Count: 83, Neg. LLF: 147.40774926996744
Iteration: 8, Func. Count: 94, Neg. LLF: 147.3601716931841
Iteration: 9, Func. Count: 105, Neg. LLF: 147.3547334168329
Iteration: 10, Func. Count: 116, Neg. LLF: 147.35332751019587
Iteration: 11, Func. Count: 127, Neg. LLF: 147.35303345803538
Iteration: 12, Func. Count: 138, Neg. LLF: 147.35289344555693
Iteration: 13, Func. Count: 149, Neg. LLF: 147.35276863947493
Iteration: 14, Func. Count: 160, Neg. LLF: 147.35273423743232
Iteration: 15, Func. Count: 171, Neg. LLF: 147.35272881814728
Iteration: 16, Func. Count: 182, Neg. LLF: 147.3527238701256
Iteration: 17, Func. Count: 193, Neg. LLF: 147.35271625629085
Iteration: 18, Func. Count: 204, Neg. LLF: 147.3527134088574
Iteration: 19, Func. Count: 215, Neg. LLF: 147.35271264666625
Optimization terminated successfully (Exit mode 0)
Current function value: 147.35271264666625
Iterations: 19
Function evaluations: 215
Gradient evaluations: 19
Iteration: 1, Func. Count: 13, Neg. LLF: 208.69590367253446
Iteration: 2, Func. Count: 26, Neg. LLF: 152.63140127133838
Iteration: 3, Func. Count: 39, Neg. LLF: 149.3110265851543
Iteration: 4, Func. Count: 52, Neg. LLF: 147.97575082234948
Iteration: 5, Func. Count: 64, Neg. LLF: 151.1830277860395
Iteration: 6, Func. Count: 77, Neg. LLF: 148.29219378747658
Iteration: 7, Func. Count: 90, Neg. LLF: 147.64930462334632
Iteration: 8, Func. Count: 103, Neg. LLF: 147.37162821964355
Iteration: 9, Func. Count: 115, Neg. LLF: 147.35572919566556
Iteration: 10, Func. Count: 127, Neg. LLF: 147.35356452141298
Iteration: 11, Func. Count: 139, Neg. LLF: 147.35309642160917
Iteration: 12, Func. Count: 151, Neg. LLF: 147.35287355411768
Iteration: 13, Func. Count: 163, Neg. LLF: 147.35279716351832
Iteration: 14, Func. Count: 175, Neg. LLF: 147.3527389109328
Iteration: 15, Func. Count: 187, Neg. LLF: 147.3527300045538
Iteration: 16, Func. Count: 199, Neg. LLF: 147.35272593142741
Iteration: 17, Func. Count: 211, Neg. LLF: 147.35271857182582
Iteration: 18, Func. Count: 223, Neg. LLF: 147.3527139330929
Iteration: 19, Func. Count: 235, Neg. LLF: 147.35271277941442
Iteration: 20, Func. Count: 246, Neg. LLF: 147.35271277256953
Optimization terminated successfully (Exit mode 0)
Current function value: 147.35271277941442
Iterations: 20
Function evaluations: 246
Gradient evaluations: 20
Iteration: 1, Func. Count: 10, Neg. LLF: 156.2534901278529
Iteration: 2, Func. Count: 20, Neg. LLF: 157.025923412627
Iteration: 3, Func. Count: 30, Neg. LLF: 151.06754805713723
Iteration: 4, Func. Count: 40, Neg. LLF: 150.53334571146578
Iteration: 5, Func. Count: 50, Neg. LLF: 147.5827776094511
Iteration: 6, Func. Count: 59, Neg. LLF: 147.1859236388484
Iteration: 7, Func. Count: 68, Neg. LLF: 147.85317255927052
Iteration: 8, Func. Count: 79, Neg. LLF: 146.48083485849293
Iteration: 9, Func. Count: 88, Neg. LLF: 147.5653236719714
Iteration: 10, Func. Count: 98, Neg. LLF: 145.8419095598742
Iteration: 11, Func. Count: 108, Neg. LLF: 145.28399505520508
Iteration: 12, Func. Count: 117, Neg. LLF: 145.26334307041088
Iteration: 13, Func. Count: 126, Neg. LLF: 145.2539372363822
Iteration: 14, Func. Count: 135, Neg. LLF: 145.24664839363027
Iteration: 15, Func. Count: 144, Neg. LLF: 145.23033732260615
Iteration: 16, Func. Count: 153, Neg. LLF: 145.22903978807346
Iteration: 17, Func. Count: 162, Neg. LLF: 145.22784070855252
Iteration: 18, Func. Count: 171, Neg. LLF: 145.2272310283786
Iteration: 19, Func. Count: 180, Neg. LLF: 145.22711070879856
Iteration: 20, Func. Count: 189, Neg. LLF: 145.22710927942464
Iteration: 21, Func. Count: 197, Neg. LLF: 145.22710926035165
Optimization terminated successfully (Exit mode 0)
Current function value: 145.22710927942464
Iterations: 21
Function evaluations: 197
Gradient evaluations: 21
Iteration: 1, Func. Count: 11, Neg. LLF: 201.1337886543571
Iteration: 2, Func. Count: 23, Neg. LLF: 166.19145213400714
Iteration: 3, Func. Count: 35, Neg. LLF: 156.34619631439574
Iteration: 4, Func. Count: 46, Neg. LLF: 183.37784457243322
Iteration: 5, Func. Count: 57, Neg. LLF: 147.66977790267453
Iteration: 6, Func. Count: 67, Neg. LLF: 152.6915271691289
Iteration: 7, Func. Count: 78, Neg. LLF: 147.63364902471676
Iteration: 8, Func. Count: 89, Neg. LLF: 146.59280101606626
Iteration: 9, Func. Count: 100, Neg. LLF: 145.77960855097265
Iteration: 10, Func. Count: 110, Neg. LLF: 145.28253922932558
Iteration: 11, Func. Count: 120, Neg. LLF: 145.2709505092583
Iteration: 12, Func. Count: 130, Neg. LLF: 145.23554023443376
Iteration: 13, Func. Count: 140, Neg. LLF: 145.2298503563485
Iteration: 14, Func. Count: 150, Neg. LLF: 145.22934497658972
Iteration: 15, Func. Count: 160, Neg. LLF: 145.22896081547387
Iteration: 16, Func. Count: 170, Neg. LLF: 145.2284556035085
Iteration: 17, Func. Count: 180, Neg. LLF: 145.22815987959032
Iteration: 18, Func. Count: 190, Neg. LLF: 145.22805664084785
Iteration: 19, Func. Count: 200, Neg. LLF: 145.2280118178052
Iteration: 20, Func. Count: 210, Neg. LLF: 145.2279288009297
Iteration: 21, Func. Count: 220, Neg. LLF: 145.2277598568148
Iteration: 22, Func. Count: 230, Neg. LLF: 145.22749368111604
Iteration: 23, Func. Count: 240, Neg. LLF: 145.22723728527984
Iteration: 24, Func. Count: 250, Neg. LLF: 145.22712295424867
Iteration: 25, Func. Count: 260, Neg. LLF: 145.2271097190029
Iteration: 26, Func. Count: 269, Neg. LLF: 145.22710972839135
Optimization terminated successfully (Exit mode 0)
Current function value: 145.2271097190029
Iterations: 26
Function evaluations: 269
Gradient evaluations: 26
Iteration: 1, Func. Count: 12, Neg. LLF: 198.82036432792628
Iteration: 2, Func. Count: 24, Neg. LLF: 157.60099044897692
Iteration: 3, Func. Count: 36, Neg. LLF: 149.60648628335449
Iteration: 4, Func. Count: 48, Neg. LLF: 146.87975892161222
Iteration: 5, Func. Count: 59, Neg. LLF: 147.6990529909993
Iteration: 6, Func. Count: 71, Neg. LLF: 146.60625448366173
Iteration: 7, Func. Count: 83, Neg. LLF: 145.32416503734373
Iteration: 8, Func. Count: 94, Neg. LLF: 145.30380109369045
Iteration: 9, Func. Count: 105, Neg. LLF: 145.2691931654976
Iteration: 10, Func. Count: 116, Neg. LLF: 145.25064131401302
Iteration: 11, Func. Count: 127, Neg. LLF: 145.2383317088129
Iteration: 12, Func. Count: 138, Neg. LLF: 145.23059791389576
Iteration: 13, Func. Count: 149, Neg. LLF: 145.22863813806924
Iteration: 14, Func. Count: 160, Neg. LLF: 145.22762861716677
Iteration: 15, Func. Count: 171, Neg. LLF: 145.22721688083607
Iteration: 16, Func. Count: 182, Neg. LLF: 145.2271480634704
Iteration: 17, Func. Count: 193, Neg. LLF: 145.22712445114024
Iteration: 18, Func. Count: 204, Neg. LLF: 145.22711232638193
Iteration: 19, Func. Count: 215, Neg. LLF: 145.22710949537858
Iteration: 20, Func. Count: 225, Neg. LLF: 145.2271096119926
Optimization terminated successfully (Exit mode 0)
Current function value: 145.22710949537858
Iterations: 20
Function evaluations: 225
Gradient evaluations: 20
Iteration: 1, Func. Count: 13, Neg. LLF: 198.704320008096
Iteration: 2, Func. Count: 26, Neg. LLF: 159.19098648615775
Iteration: 3, Func. Count: 39, Neg. LLF: 154.81225474242632
Iteration: 4, Func. Count: 52, Neg. LLF: 147.61637252592553
Iteration: 5, Func. Count: 65, Neg. LLF: 147.99918730253393
Iteration: 6, Func. Count: 78, Neg. LLF: 146.34103933530565
Iteration: 7, Func. Count: 90, Neg. LLF: 148.59660024568188
Iteration: 8, Func. Count: 103, Neg. LLF: 145.81705776215608
Iteration: 9, Func. Count: 115, Neg. LLF: 145.33310112711825
Iteration: 10, Func. Count: 127, Neg. LLF: 145.25307983344481
Iteration: 11, Func. Count: 139, Neg. LLF: 145.22953362535284
Iteration: 12, Func. Count: 151, Neg. LLF: 145.22720532097907
Iteration: 13, Func. Count: 163, Neg. LLF: 145.22714151570324
Iteration: 14, Func. Count: 175, Neg. LLF: 145.22713006818358
Iteration: 15, Func. Count: 187, Neg. LLF: 145.22712342982905
Iteration: 16, Func. Count: 199, Neg. LLF: 145.22711729194617
Iteration: 17, Func. Count: 211, Neg. LLF: 145.22711140535202
Iteration: 18, Func. Count: 223, Neg. LLF: 145.2271094922987
Iteration: 19, Func. Count: 234, Neg. LLF: 145.22710957014
Optimization terminated successfully (Exit mode 0)
Current function value: 145.2271094922987
Iterations: 19
Function evaluations: 234
Gradient evaluations: 19
Iteration: 1, Func. Count: 14, Neg. LLF: 198.50584563914515
Iteration: 2, Func. Count: 28, Neg. LLF: 160.18419159386613
Iteration: 3, Func. Count: 42, Neg. LLF: 159.1670279030353
Iteration: 4, Func. Count: 56, Neg. LLF: 146.32211440467333
Iteration: 5, Func. Count: 69, Neg. LLF: 145.40557543619238
Iteration: 6, Func. Count: 83, Neg. LLF: 149.0938229897085
Iteration: 7, Func. Count: 98, Neg. LLF: 146.02223154841522
Iteration: 8, Func. Count: 112, Neg. LLF: 146.05906665744521
Iteration: 9, Func. Count: 126, Neg. LLF: 145.551918534475
Iteration: 10, Func. Count: 140, Neg. LLF: 144.91070687536896
Iteration: 11, Func. Count: 153, Neg. LLF: 144.8922732667445
Iteration: 12, Func. Count: 166, Neg. LLF: 144.8648330113441
Iteration: 13, Func. Count: 179, Neg. LLF: 144.8507512456376
Iteration: 14, Func. Count: 192, Neg. LLF: 144.83759321652533
Iteration: 15, Func. Count: 205, Neg. LLF: 144.80580702242702
Iteration: 16, Func. Count: 218, Neg. LLF: 144.75108260475875
Iteration: 17, Func. Count: 231, Neg. LLF: 144.68171539969342
Iteration: 18, Func. Count: 244, Neg. LLF: 144.5603335107257
Iteration: 19, Func. Count: 257, Neg. LLF: 144.52900817860862
Iteration: 20, Func. Count: 270, Neg. LLF: 144.5215218261501
Iteration: 21, Func. Count: 283, Neg. LLF: 144.52061586470617
Iteration: 22, Func. Count: 296, Neg. LLF: 144.520098182291
Iteration: 23, Func. Count: 309, Neg. LLF: 144.51993559869254
Iteration: 24, Func. Count: 322, Neg. LLF: 144.51993345264924
Iteration: 25, Func. Count: 334, Neg. LLF: 144.51993335358156
Optimization terminated successfully (Exit mode 0)
Current function value: 144.51993345264924
Iterations: 25
Function evaluations: 334
Gradient evaluations: 25
Iteration: 1, Func. Count: 7, Neg. LLF: 154.14350447431664
Iteration: 2, Func. Count: 13, Neg. LLF: 166.33003468866676
Iteration: 3, Func. Count: 20, Neg. LLF: 152.0547199788577
Iteration: 4, Func. Count: 26, Neg. LLF: 151.4636137232355
Iteration: 5, Func. Count: 32, Neg. LLF: 487.4507582326118
Iteration: 6, Func. Count: 39, Neg. LLF: 160.01634402372804
Iteration: 7, Func. Count: 46, Neg. LLF: 159.26418424287826
Iteration: 8, Func. Count: 53, Neg. LLF: 182.34750914006028
Iteration: 9, Func. Count: 60, Neg. LLF: 186.11352853334412
Iteration: 10, Func. Count: 67, Neg. LLF: 150.99679830219904
Iteration: 11, Func. Count: 74, Neg. LLF: 175.52910262607685
Iteration: 12, Func. Count: 81, Neg. LLF: 150.00606644678595
Iteration: 13, Func. Count: 87, Neg. LLF: 150.05203537877
Iteration: 14, Func. Count: 94, Neg. LLF: 149.99851531853574
Iteration: 15, Func. Count: 100, Neg. LLF: 149.99655465616843
Iteration: 16, Func. Count: 106, Neg. LLF: 149.9900980612794
Iteration: 17, Func. Count: 112, Neg. LLF: 149.98907709237685
Iteration: 18, Func. Count: 118, Neg. LLF: 149.98893982373667
Iteration: 19, Func. Count: 123, Neg. LLF: 149.988939724947
Optimization terminated successfully (Exit mode 0)
Current function value: 149.98893982373667
Iterations: 19
Function evaluations: 123
Gradient evaluations: 19
Iteration: 1, Func. Count: 8, Neg. LLF: 168.64588385308417
Iteration: 2, Func. Count: 16, Neg. LLF: 156.41668398255945
Iteration: 3, Func. Count: 24, Neg. LLF: 151.6483415570204
Iteration: 4, Func. Count: 31, Neg. LLF: 167.4530615464103
Iteration: 5, Func. Count: 39, Neg. LLF: 150.77490262326262
Iteration: 6, Func. Count: 46, Neg. LLF: 150.5886002143803
Iteration: 7, Func. Count: 53, Neg. LLF: 150.87655008871025
Iteration: 8, Func. Count: 61, Neg. LLF: 159.24090869021143
Iteration: 9, Func. Count: 69, Neg. LLF: 157.6040383593057
Iteration: 10, Func. Count: 77, Neg. LLF: 155.2353581022366
Iteration: 11, Func. Count: 85, Neg. LLF: 152.41146565614383
Iteration: 12, Func. Count: 93, Neg. LLF: 150.35349627635918
Iteration: 13, Func. Count: 101, Neg. LLF: 150.00615640553085
Iteration: 14, Func. Count: 108, Neg. LLF: 150.07736901682097
Iteration: 15, Func. Count: 116, Neg. LLF: 149.98208889047743
Iteration: 16, Func. Count: 123, Neg. LLF: 149.98066400066767
Iteration: 17, Func. Count: 130, Neg. LLF: 149.97969395644597
Iteration: 18, Func. Count: 137, Neg. LLF: 149.97947349482138
Iteration: 19, Func. Count: 144, Neg. LLF: 149.97931216072794
Iteration: 20, Func. Count: 150, Neg. LLF: 149.97931204884117
Optimization terminated successfully (Exit mode 0)
Current function value: 149.97931216072794
Iterations: 20
Function evaluations: 150
Gradient evaluations: 20
Iteration: 1, Func. Count: 9, Neg. LLF: 165.6940571772935
Iteration: 2, Func. Count: 18, Neg. LLF: 151.639104606622
Iteration: 3, Func. Count: 26, Neg. LLF: 150.7339661223554
Iteration: 4, Func. Count: 34, Neg. LLF: 151.25226901772814
Iteration: 5, Func. Count: 43, Neg. LLF: 151.87813481876512
Iteration: 6, Func. Count: 52, Neg. LLF: 150.37332208266065
Iteration: 7, Func. Count: 61, Neg. LLF: 149.92569507464833
Iteration: 8, Func. Count: 69, Neg. LLF: 149.8860881082965
Iteration: 9, Func. Count: 77, Neg. LLF: 149.86751521362564
Iteration: 10, Func. Count: 85, Neg. LLF: 149.85589677803063
Iteration: 11, Func. Count: 93, Neg. LLF: 149.85344882163764
Iteration: 12, Func. Count: 101, Neg. LLF: 149.85333786645356
Iteration: 13, Func. Count: 109, Neg. LLF: 149.85333480587096
Iteration: 14, Func. Count: 116, Neg. LLF: 149.8533346788023
Optimization terminated successfully (Exit mode 0)
Current function value: 149.85333480587096
Iterations: 14
Function evaluations: 116
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 164.34260592076237
Iteration: 2, Func. Count: 20, Neg. LLF: 154.1366590035062
Iteration: 3, Func. Count: 30, Neg. LLF: 149.37142363942712
Iteration: 4, Func. Count: 39, Neg. LLF: 149.2704169295196
Iteration: 5, Func. Count: 49, Neg. LLF: 148.78587622124363
Iteration: 6, Func. Count: 59, Neg. LLF: 148.5630698719117
Iteration: 7, Func. Count: 69, Neg. LLF: 148.54368600520803
Iteration: 8, Func. Count: 78, Neg. LLF: 148.54075416092837
Iteration: 9, Func. Count: 87, Neg. LLF: 148.5407165957497
Iteration: 10, Func. Count: 95, Neg. LLF: 148.54071649204167
Optimization terminated successfully (Exit mode 0)
Current function value: 148.5407165957497
Iterations: 10
Function evaluations: 95
Gradient evaluations: 10
Iteration: 1, Func. Count: 11, Neg. LLF: 162.97468496811368
Iteration: 2, Func. Count: 22, Neg. LLF: 157.334453788918
Iteration: 3, Func. Count: 33, Neg. LLF: 149.38917477786015
Iteration: 4, Func. Count: 43, Neg. LLF: 148.6984929179808
Iteration: 5, Func. Count: 53, Neg. LLF: 148.61692860625342
Iteration: 6, Func. Count: 63, Neg. LLF: 148.55261092142655
Iteration: 7, Func. Count: 73, Neg. LLF: 148.55159391427432
Iteration: 8, Func. Count: 84, Neg. LLF: 148.54265979078033
Iteration: 9, Func. Count: 94, Neg. LLF: 148.5407547192889
Iteration: 10, Func. Count: 104, Neg. LLF: 148.54073059266995
Iteration: 11, Func. Count: 114, Neg. LLF: 148.54072021362916
Iteration: 12, Func. Count: 124, Neg. LLF: 148.54071640975764
Iteration: 13, Func. Count: 133, Neg. LLF: 148.54071646283694
Optimization terminated successfully (Exit mode 0)
Current function value: 148.54071640975764
Iterations: 13
Function evaluations: 133
Gradient evaluations: 13
Iteration: 1, Func. Count: 8, Neg. LLF: 157.32149725607846
Iteration: 2, Func. Count: 16, Neg. LLF: 151.61370771962999
Iteration: 3, Func. Count: 24, Neg. LLF: 151.55310258410242
Iteration: 4, Func. Count: 32, Neg. LLF: 150.44536193700054
Iteration: 5, Func. Count: 39, Neg. LLF: 150.00227160271035
Iteration: 6, Func. Count: 46, Neg. LLF: 150.06437186792866
Iteration: 7, Func. Count: 54, Neg. LLF: 149.80844605623898
Iteration: 8, Func. Count: 61, Neg. LLF: 222.70361130245536
Iteration: 9, Func. Count: 69, Neg. LLF: 211.8564319058794
Iteration: 10, Func. Count: 77, Neg. LLF: 2975.3089970868614
Iteration: 11, Func. Count: 85, Neg. LLF: 226.25849443001414
Iteration: 12, Func. Count: 93, Neg. LLF: 148.84451902889904
Iteration: 13, Func. Count: 100, Neg. LLF: 148.69685077370193
Iteration: 14, Func. Count: 107, Neg. LLF: 148.65633784497916
Iteration: 15, Func. Count: 114, Neg. LLF: 148.65430413108356
Iteration: 16, Func. Count: 121, Neg. LLF: 148.6542495767148
Iteration: 17, Func. Count: 128, Neg. LLF: 148.6542482513625
Iteration: 18, Func. Count: 134, Neg. LLF: 148.65424821968676
Optimization terminated successfully (Exit mode 0)
Current function value: 148.6542482513625
Iterations: 18
Function evaluations: 134
Gradient evaluations: 18
Iteration: 1, Func. Count: 9, Neg. LLF: 206.4063267868443
Iteration: 2, Func. Count: 19, Neg. LLF: 158.61189000855612
Iteration: 3, Func. Count: 29, Neg. LLF: 161.91634365070232
Iteration: 4, Func. Count: 39, Neg. LLF: 188.29159131325036
Iteration: 5, Func. Count: 48, Neg. LLF: 149.06457854622312
Iteration: 6, Func. Count: 56, Neg. LLF: 149.01859517070852
Iteration: 7, Func. Count: 64, Neg. LLF: 149.00457003016786
Iteration: 8, Func. Count: 72, Neg. LLF: 148.97227692976475
Iteration: 9, Func. Count: 80, Neg. LLF: 148.9427127724727
Iteration: 10, Func. Count: 88, Neg. LLF: 152.3112725657116
Iteration: 11, Func. Count: 97, Neg. LLF: 152.34557054278363
Iteration: 12, Func. Count: 106, Neg. LLF: 152.36050204806247
Iteration: 13, Func. Count: 115, Neg. LLF: 151.43655400051057
Iteration: 14, Func. Count: 124, Neg. LLF: 153.84742502495118
Iteration: 15, Func. Count: 133, Neg. LLF: 160.26774678799669
Iteration: 16, Func. Count: 142, Neg. LLF: 153.60704753741675
Iteration: 17, Func. Count: 151, Neg. LLF: 148.16235511169762
Iteration: 18, Func. Count: 160, Neg. LLF: 147.63187348118757
Iteration: 19, Func. Count: 168, Neg. LLF: 147.62438623777925
Iteration: 20, Func. Count: 176, Neg. LLF: 147.61741410107706
Iteration: 21, Func. Count: 184, Neg. LLF: 147.61092806025792
Iteration: 22, Func. Count: 192, Neg. LLF: 147.61012446358782
Iteration: 23, Func. Count: 200, Neg. LLF: 147.6096471943131
Iteration: 24, Func. Count: 208, Neg. LLF: 147.60962956579465
Iteration: 25, Func. Count: 216, Neg. LLF: 147.60962665929208
Iteration: 26, Func. Count: 223, Neg. LLF: 147.60962661037735
Optimization terminated successfully (Exit mode 0)
Current function value: 147.60962665929208
Iterations: 27
Function evaluations: 223
Gradient evaluations: 26
Iteration: 1, Func. Count: 10, Neg. LLF: 214.82648946674223
Iteration: 2, Func. Count: 20, Neg. LLF: 160.4980946556914
Iteration: 3, Func. Count: 31, Neg. LLF: 164.331492356815
Iteration: 4, Func. Count: 41, Neg. LLF: 159.93697932091152
Iteration: 5, Func. Count: 51, Neg. LLF: 149.7413020070659
Iteration: 6, Func. Count: 61, Neg. LLF: 149.12506864702522
Iteration: 7, Func. Count: 71, Neg. LLF: 148.97374661405797
Iteration: 8, Func. Count: 81, Neg. LLF: 148.8895779580559
Iteration: 9, Func. Count: 90, Neg. LLF: 148.85910541292293
Iteration: 10, Func. Count: 100, Neg. LLF: 149.5971318617091
Iteration: 11, Func. Count: 110, Neg. LLF: 152.8519864565597
Iteration: 12, Func. Count: 120, Neg. LLF: 152.90121152097126
Iteration: 13, Func. Count: 130, Neg. LLF: 149.64512210306265
Iteration: 14, Func. Count: 140, Neg. LLF: 149.60016278478838
Iteration: 15, Func. Count: 150, Neg. LLF: 148.32136340722468
Iteration: 16, Func. Count: 160, Neg. LLF: 147.5974449052344
Iteration: 17, Func. Count: 169, Neg. LLF: 147.55622607247187
Iteration: 18, Func. Count: 178, Neg. LLF: 147.5227017829188
Iteration: 19, Func. Count: 187, Neg. LLF: 147.51261123893087
Iteration: 20, Func. Count: 196, Neg. LLF: 147.508871576248
Iteration: 21, Func. Count: 205, Neg. LLF: 147.50790909793125
Iteration: 22, Func. Count: 214, Neg. LLF: 147.50747172749607
Iteration: 23, Func. Count: 223, Neg. LLF: 147.5068595243862
Iteration: 24, Func. Count: 232, Neg. LLF: 147.5063875423198
Iteration: 25, Func. Count: 241, Neg. LLF: 147.50622582492
Iteration: 26, Func. Count: 250, Neg. LLF: 147.50620641907597
Iteration: 27, Func. Count: 258, Neg. LLF: 147.50620636650646
Optimization terminated successfully (Exit mode 0)
Current function value: 147.50620641907597
Iterations: 27
Function evaluations: 258
Gradient evaluations: 27
Iteration: 1, Func. Count: 11, Neg. LLF: 200.65867094817258
Iteration: 2, Func. Count: 22, Neg. LLF: 156.9907367005742
Iteration: 3, Func. Count: 33, Neg. LLF: 147.80997857242866
Iteration: 4, Func. Count: 43, Neg. LLF: 147.867964367036
Iteration: 5, Func. Count: 54, Neg. LLF: 187.57180119165662
Iteration: 6, Func. Count: 65, Neg. LLF: 147.49664669014302
Iteration: 7, Func. Count: 75, Neg. LLF: 147.41329969492983
Iteration: 8, Func. Count: 85, Neg. LLF: 147.4792560851714
Iteration: 9, Func. Count: 96, Neg. LLF: 147.36149268166744
Iteration: 10, Func. Count: 106, Neg. LLF: 147.3566475125535
Iteration: 11, Func. Count: 116, Neg. LLF: 147.3547336079109
Iteration: 12, Func. Count: 126, Neg. LLF: 147.3529029079999
Iteration: 13, Func. Count: 136, Neg. LLF: 147.35276626706056
Iteration: 14, Func. Count: 146, Neg. LLF: 147.35273153296606
Iteration: 15, Func. Count: 156, Neg. LLF: 147.35273056420877
Optimization terminated successfully (Exit mode 0)
Current function value: 147.35273056420877
Iterations: 15
Function evaluations: 156
Gradient evaluations: 15
Iteration: 1, Func. Count: 12, Neg. LLF: 200.63842617062932
Iteration: 2, Func. Count: 24, Neg. LLF: 157.76726434182984
Iteration: 3, Func. Count: 36, Neg. LLF: 147.84077829304786
Iteration: 4, Func. Count: 47, Neg. LLF: 147.62841260386304
Iteration: 5, Func. Count: 58, Neg. LLF: 147.8787700834223
Iteration: 6, Func. Count: 70, Neg. LLF: 147.55302591992185
Iteration: 7, Func. Count: 82, Neg. LLF: 147.4253863196
Iteration: 8, Func. Count: 93, Neg. LLF: 147.3682527501356
Iteration: 9, Func. Count: 104, Neg. LLF: 147.35699274541545
Iteration: 10, Func. Count: 115, Neg. LLF: 147.35473164487664
Iteration: 11, Func. Count: 126, Neg. LLF: 147.35395096086503
Iteration: 12, Func. Count: 137, Neg. LLF: 147.352763897515
Iteration: 13, Func. Count: 148, Neg. LLF: 147.3527314371638
Iteration: 14, Func. Count: 159, Neg. LLF: 147.35273054106918
Optimization terminated successfully (Exit mode 0)
Current function value: 147.35273054106918
Iterations: 14
Function evaluations: 159
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 161.02864867731208
Iteration: 2, Func. Count: 18, Neg. LLF: 154.11694766655668
Iteration: 3, Func. Count: 27, Neg. LLF: 151.60250287451495
Iteration: 4, Func. Count: 36, Neg. LLF: 151.27888830149234
Iteration: 5, Func. Count: 45, Neg. LLF: 149.6112855049803
Iteration: 6, Func. Count: 53, Neg. LLF: 150.12403946692248
Iteration: 7, Func. Count: 62, Neg. LLF: 149.99257766155506
Iteration: 8, Func. Count: 71, Neg. LLF: 148.48978018933883
Iteration: 9, Func. Count: 79, Neg. LLF: 148.16677421700948
Iteration: 10, Func. Count: 87, Neg. LLF: 147.6726743349723
Iteration: 11, Func. Count: 95, Neg. LLF: 147.5964729443193
Iteration: 12, Func. Count: 103, Neg. LLF: 147.52670958115192
Iteration: 13, Func. Count: 111, Neg. LLF: 147.4588887937092
Iteration: 14, Func. Count: 119, Neg. LLF: 147.40709569257098
Iteration: 15, Func. Count: 127, Neg. LLF: 147.39542625306078
Iteration: 16, Func. Count: 135, Neg. LLF: 147.39340462367798
Iteration: 17, Func. Count: 143, Neg. LLF: 147.39248950715466
Iteration: 18, Func. Count: 151, Neg. LLF: 147.39248683076391
Iteration: 19, Func. Count: 158, Neg. LLF: 147.3924868014804
Optimization terminated successfully (Exit mode 0)
Current function value: 147.39248683076391
Iterations: 19
Function evaluations: 158
Gradient evaluations: 19
Iteration: 1, Func. Count: 10, Neg. LLF: 207.66867240602122
Iteration: 2, Func. Count: 21, Neg. LLF: 162.3665917709807
Iteration: 3, Func. Count: 32, Neg. LLF: 149.73905923258343
Iteration: 4, Func. Count: 42, Neg. LLF: 161.18882977682526
Iteration: 5, Func. Count: 53, Neg. LLF: 149.07575192099162
Iteration: 6, Func. Count: 62, Neg. LLF: 149.03075152651192
Iteration: 7, Func. Count: 71, Neg. LLF: 149.01389625337777
Iteration: 8, Func. Count: 80, Neg. LLF: 148.96974380639315
Iteration: 9, Func. Count: 89, Neg. LLF: 148.94087150014272
Iteration: 10, Func. Count: 98, Neg. LLF: 152.13931548443503
Iteration: 11, Func. Count: 108, Neg. LLF: 152.17491493340646
Iteration: 12, Func. Count: 118, Neg. LLF: 152.1905251247332
Iteration: 13, Func. Count: 128, Neg. LLF: 149.93279144115985
Iteration: 14, Func. Count: 138, Neg. LLF: 152.18887401066655
Iteration: 15, Func. Count: 148, Neg. LLF: 157.0979194542601
Iteration: 16, Func. Count: 158, Neg. LLF: 148.60206910633642
Iteration: 17, Func. Count: 168, Neg. LLF: 147.89040802455312
Iteration: 18, Func. Count: 178, Neg. LLF: 147.5122562927081
Iteration: 19, Func. Count: 187, Neg. LLF: 147.42547215996856
Iteration: 20, Func. Count: 196, Neg. LLF: 147.39578550125086
Iteration: 21, Func. Count: 205, Neg. LLF: 147.3940422670389
Iteration: 22, Func. Count: 214, Neg. LLF: 147.3937013216573
Iteration: 23, Func. Count: 223, Neg. LLF: 147.39265677124715
Iteration: 24, Func. Count: 232, Neg. LLF: 147.3925082806073
Iteration: 25, Func. Count: 241, Neg. LLF: 147.39248710075765
Iteration: 26, Func. Count: 249, Neg. LLF: 147.39248706121467
Optimization terminated successfully (Exit mode 0)
Current function value: 147.39248710075765
Iterations: 27
Function evaluations: 249
Gradient evaluations: 26
Iteration: 1, Func. Count: 11, Neg. LLF: 170.01443034961207
Iteration: 2, Func. Count: 23, Neg. LLF: 160.3692332849922
Iteration: 3, Func. Count: 35, Neg. LLF: 153.39720888130003
Iteration: 4, Func. Count: 46, Neg. LLF: 150.99789067895296
Iteration: 5, Func. Count: 57, Neg. LLF: 152.2131669903972
Iteration: 6, Func. Count: 68, Neg. LLF: 149.10097516250178
Iteration: 7, Func. Count: 78, Neg. LLF: 151.34081854002156
Iteration: 8, Func. Count: 90, Neg. LLF: 148.9700266999143
Iteration: 9, Func. Count: 100, Neg. LLF: 148.91473147240504
Iteration: 10, Func. Count: 110, Neg. LLF: 148.77500683315452
Iteration: 11, Func. Count: 120, Neg. LLF: 151.0351389189299
Iteration: 12, Func. Count: 131, Neg. LLF: 153.00139873132935
Iteration: 13, Func. Count: 142, Neg. LLF: 152.96075423008486
Iteration: 14, Func. Count: 153, Neg. LLF: 152.90568085615337
Iteration: 15, Func. Count: 164, Neg. LLF: 150.6617986444292
Iteration: 16, Func. Count: 175, Neg. LLF: 159.42405525668528
Iteration: 17, Func. Count: 186, Neg. LLF: 151.603472536858
Iteration: 18, Func. Count: 197, Neg. LLF: 149.93880630950318
Iteration: 19, Func. Count: 208, Neg. LLF: 149.79479314280925
Iteration: 20, Func. Count: 219, Neg. LLF: 147.98011244494953
Iteration: 21, Func. Count: 229, Neg. LLF: 148.19971685355463
Iteration: 22, Func. Count: 240, Neg. LLF: 147.85872573405874
Iteration: 23, Func. Count: 250, Neg. LLF: 147.7102813275227
Iteration: 24, Func. Count: 260, Neg. LLF: 147.51331247603005
Iteration: 25, Func. Count: 270, Neg. LLF: 147.7910215644711
Iteration: 26, Func. Count: 281, Neg. LLF: 147.33208490704425
Iteration: 27, Func. Count: 291, Neg. LLF: 147.27499006385224
Iteration: 28, Func. Count: 301, Neg. LLF: 147.2512412719783
Iteration: 29, Func. Count: 311, Neg. LLF: 147.22213788879833
Iteration: 30, Func. Count: 321, Neg. LLF: 147.20896098559462
Iteration: 31, Func. Count: 331, Neg. LLF: 147.20608786037315
Iteration: 32, Func. Count: 341, Neg. LLF: 147.20439991460273
Iteration: 33, Func. Count: 351, Neg. LLF: 147.20109109067988
Iteration: 34, Func. Count: 361, Neg. LLF: 147.1964312814884
Iteration: 35, Func. Count: 371, Neg. LLF: 147.19171199121604
Iteration: 36, Func. Count: 381, Neg. LLF: 147.1894290223942
Iteration: 37, Func. Count: 391, Neg. LLF: 147.18894864561295
Iteration: 38, Func. Count: 401, Neg. LLF: 147.18891981227677
Iteration: 39, Func. Count: 411, Neg. LLF: 147.18891879872223
Iteration: 40, Func. Count: 420, Neg. LLF: 147.1889187442266
Optimization terminated successfully (Exit mode 0)
Current function value: 147.18891879872223
Iterations: 40
Function evaluations: 420
Gradient evaluations: 40
Iteration: 1, Func. Count: 12, Neg. LLF: 208.34232254833825
Iteration: 2, Func. Count: 24, Neg. LLF: 161.08062881459057
Iteration: 3, Func. Count: 36, Neg. LLF: 147.97192917923223
Iteration: 4, Func. Count: 47, Neg. LLF: 147.81731491659409
Iteration: 5, Func. Count: 58, Neg. LLF: 179.70729156299154
Iteration: 6, Func. Count: 71, Neg. LLF: 188.5891371579505
Iteration: 7, Func. Count: 84, Neg. LLF: 147.43817431043007
Iteration: 8, Func. Count: 95, Neg. LLF: 147.3891228635616
Iteration: 9, Func. Count: 106, Neg. LLF: 147.37448462088514
Iteration: 10, Func. Count: 117, Neg. LLF: 147.36396240906973
Iteration: 11, Func. Count: 128, Neg. LLF: 147.35850039488048
Iteration: 12, Func. Count: 139, Neg. LLF: 147.3542052691874
Iteration: 13, Func. Count: 150, Neg. LLF: 147.35319725014807
Iteration: 14, Func. Count: 161, Neg. LLF: 147.3527948482033
Iteration: 15, Func. Count: 172, Neg. LLF: 147.35273488152157
Iteration: 16, Func. Count: 183, Neg. LLF: 147.352730621419
Iteration: 17, Func. Count: 193, Neg. LLF: 147.35273055480798
Optimization terminated successfully (Exit mode 0)
Current function value: 147.352730621419
Iterations: 17
Function evaluations: 193
Gradient evaluations: 17
Iteration: 1, Func. Count: 13, Neg. LLF: 205.42091128244866
Iteration: 2, Func. Count: 26, Neg. LLF: 159.324675590428
Iteration: 3, Func. Count: 39, Neg. LLF: 147.82108166155368
Iteration: 4, Func. Count: 51, Neg. LLF: 147.7167138076485
Iteration: 5, Func. Count: 63, Neg. LLF: 148.78839770626232
Iteration: 6, Func. Count: 76, Neg. LLF: 147.9546927556198
Iteration: 7, Func. Count: 89, Neg. LLF: 147.37488810540572
Iteration: 8, Func. Count: 101, Neg. LLF: 147.36617923290848
Iteration: 9, Func. Count: 113, Neg. LLF: 147.35984259471334
Iteration: 10, Func. Count: 125, Neg. LLF: 147.3556424501837
Iteration: 11, Func. Count: 137, Neg. LLF: 147.35336862686108
Iteration: 12, Func. Count: 149, Neg. LLF: 147.35277275155403
Iteration: 13, Func. Count: 161, Neg. LLF: 147.35273644478767
Iteration: 14, Func. Count: 173, Neg. LLF: 147.35273278811434
Iteration: 15, Func. Count: 185, Neg. LLF: 147.35273125160316
Iteration: 16, Func. Count: 197, Neg. LLF: 147.35273062354415
Optimization terminated successfully (Exit mode 0)
Current function value: 147.35273062354415
Iterations: 16
Function evaluations: 197
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 160.06270243963078
Iteration: 2, Func. Count: 20, Neg. LLF: 154.9017285882974
Iteration: 3, Func. Count: 30, Neg. LLF: 152.0279675227341
Iteration: 4, Func. Count: 40, Neg. LLF: 152.63632902520825
Iteration: 5, Func. Count: 50, Neg. LLF: 151.56952054485606
Iteration: 6, Func. Count: 60, Neg. LLF: 150.06028618653264
Iteration: 7, Func. Count: 69, Neg. LLF: 149.65117040946586
Iteration: 8, Func. Count: 79, Neg. LLF: 148.5357376655263
Iteration: 9, Func. Count: 88, Neg. LLF: 148.1914342043172
Iteration: 10, Func. Count: 97, Neg. LLF: 147.09856506198656
Iteration: 11, Func. Count: 106, Neg. LLF: 147.19132175417127
Iteration: 12, Func. Count: 116, Neg. LLF: 146.80899379731278
Iteration: 13, Func. Count: 125, Neg. LLF: 146.71006090263603
Iteration: 14, Func. Count: 134, Neg. LLF: 146.6491520846821
Iteration: 15, Func. Count: 143, Neg. LLF: 146.63610691440127
Iteration: 16, Func. Count: 152, Neg. LLF: 146.6266295626176
Iteration: 17, Func. Count: 161, Neg. LLF: 146.62331020260103
Iteration: 18, Func. Count: 170, Neg. LLF: 146.6231532642467
Iteration: 19, Func. Count: 179, Neg. LLF: 146.62314888387718
Iteration: 20, Func. Count: 187, Neg. LLF: 146.6231488490064
Optimization terminated successfully (Exit mode 0)
Current function value: 146.62314888387718
Iterations: 20
Function evaluations: 187
Gradient evaluations: 20
Iteration: 1, Func. Count: 11, Neg. LLF: 201.9652326430305
Iteration: 2, Func. Count: 23, Neg. LLF: 164.94662274920145
Iteration: 3, Func. Count: 35, Neg. LLF: 162.00975802740354
Iteration: 4, Func. Count: 47, Neg. LLF: 204.64240094303446
Iteration: 5, Func. Count: 58, Neg. LLF: 149.1088824544736
Iteration: 6, Func. Count: 68, Neg. LLF: 149.0699490907831
Iteration: 7, Func. Count: 78, Neg. LLF: 149.0228615112243
Iteration: 8, Func. Count: 88, Neg. LLF: 148.99685160915814
Iteration: 9, Func. Count: 98, Neg. LLF: 148.98089629959838
Iteration: 10, Func. Count: 108, Neg. LLF: 148.95982002254357
Iteration: 11, Func. Count: 118, Neg. LLF: 148.9604664058221
Iteration: 12, Func. Count: 129, Neg. LLF: 153.1185055896661
Iteration: 13, Func. Count: 140, Neg. LLF: 153.03470110810065
Iteration: 14, Func. Count: 151, Neg. LLF: 151.54310521007312
Iteration: 15, Func. Count: 162, Neg. LLF: 150.16880146246783
Iteration: 16, Func. Count: 173, Neg. LLF: 150.91890278264506
Iteration: 17, Func. Count: 184, Neg. LLF: 147.55056967387713
Iteration: 18, Func. Count: 194, Neg. LLF: 147.34367823803137
Iteration: 19, Func. Count: 204, Neg. LLF: 147.14273124617992
Iteration: 20, Func. Count: 214, Neg. LLF: 146.98344333152318
Iteration: 21, Func. Count: 224, Neg. LLF: 146.94631903888535
Iteration: 22, Func. Count: 234, Neg. LLF: 146.83572953973635
Iteration: 23, Func. Count: 244, Neg. LLF: 146.73293350500268
Iteration: 24, Func. Count: 254, Neg. LLF: 146.6771267807671
Iteration: 25, Func. Count: 264, Neg. LLF: 146.6585342363276
Iteration: 26, Func. Count: 274, Neg. LLF: 146.64968971521677
Iteration: 27, Func. Count: 284, Neg. LLF: 146.64720019666927
Iteration: 28, Func. Count: 294, Neg. LLF: 146.6361266307475
Iteration: 29, Func. Count: 304, Neg. LLF: 146.62926924025004
Iteration: 30, Func. Count: 314, Neg. LLF: 146.62483001615342
Iteration: 31, Func. Count: 324, Neg. LLF: 146.6233333268307
Iteration: 32, Func. Count: 334, Neg. LLF: 146.62315902962695
Iteration: 33, Func. Count: 344, Neg. LLF: 146.62314904428092
Iteration: 34, Func. Count: 353, Neg. LLF: 146.62314905000878
Optimization terminated successfully (Exit mode 0)
Current function value: 146.62314904428092
Iterations: 34
Function evaluations: 353
Gradient evaluations: 34
Iteration: 1, Func. Count: 12, Neg. LLF: 211.44082153063155
Iteration: 2, Func. Count: 25, Neg. LLF: 166.9599608621486
Iteration: 3, Func. Count: 37, Neg. LLF: 153.31954753519548
Iteration: 4, Func. Count: 49, Neg. LLF: 151.4077498975735
Iteration: 5, Func. Count: 61, Neg. LLF: 152.87669962719661
Iteration: 6, Func. Count: 73, Neg. LLF: 149.23296443890433
Iteration: 7, Func. Count: 84, Neg. LLF: 149.00613114911394
Iteration: 8, Func. Count: 95, Neg. LLF: 148.98793298718257
Iteration: 9, Func. Count: 106, Neg. LLF: 148.96812930624952
Iteration: 10, Func. Count: 117, Neg. LLF: 148.94254051919336
Iteration: 11, Func. Count: 128, Neg. LLF: 149.41102944070698
Iteration: 12, Func. Count: 140, Neg. LLF: 149.32658385246268
Iteration: 13, Func. Count: 152, Neg. LLF: 149.39015271654304
Iteration: 14, Func. Count: 164, Neg. LLF: 149.64147120763627
Iteration: 15, Func. Count: 176, Neg. LLF: 149.60463133781454
Iteration: 16, Func. Count: 188, Neg. LLF: 151.14833390259693
Iteration: 17, Func. Count: 200, Neg. LLF: 148.29284160453585
Iteration: 18, Func. Count: 212, Neg. LLF: 150.80324925362274
Iteration: 19, Func. Count: 224, Neg. LLF: 148.15483596122402
Iteration: 20, Func. Count: 236, Neg. LLF: 147.28635819420722
Iteration: 21, Func. Count: 247, Neg. LLF: 147.03710162812465
Iteration: 22, Func. Count: 258, Neg. LLF: 146.90202911520817
Iteration: 23, Func. Count: 269, Neg. LLF: 146.8791059268382
Iteration: 24, Func. Count: 280, Neg. LLF: 146.8608729637399
Iteration: 25, Func. Count: 291, Neg. LLF: 146.81007504949554
Iteration: 26, Func. Count: 302, Neg. LLF: 151.06529327309198
Iteration: 27, Func. Count: 314, Neg. LLF: 151.87353315574012
Iteration: 28, Func. Count: 326, Neg. LLF: 146.7514581530803
Iteration: 29, Func. Count: 338, Neg. LLF: 146.70339914231022
Iteration: 30, Func. Count: 350, Neg. LLF: 146.8379688258848
Iteration: 31, Func. Count: 362, Neg. LLF: 146.64233366784768
Iteration: 32, Func. Count: 373, Neg. LLF: 146.62464262779633
Iteration: 33, Func. Count: 384, Neg. LLF: 146.62318799921528
Iteration: 34, Func. Count: 395, Neg. LLF: 146.62314904484413
Iteration: 35, Func. Count: 405, Neg. LLF: 146.62314921327138
Optimization terminated successfully (Exit mode 0)
Current function value: 146.62314904484413
Iterations: 36
Function evaluations: 405
Gradient evaluations: 35
Iteration: 1, Func. Count: 13, Neg. LLF: 205.58254296567105
Iteration: 2, Func. Count: 26, Neg. LLF: 161.476779755647
Iteration: 3, Func. Count: 39, Neg. LLF: 148.04499886013082
Iteration: 4, Func. Count: 51, Neg. LLF: 147.79889404723758
Iteration: 5, Func. Count: 63, Neg. LLF: 171.48616258737175
Iteration: 6, Func. Count: 77, Neg. LLF: 149.77978213568284
Iteration: 7, Func. Count: 90, Neg. LLF: 148.1449523407876
Iteration: 8, Func. Count: 103, Neg. LLF: 147.44337190382396
Iteration: 9, Func. Count: 115, Neg. LLF: 147.37794833779824
Iteration: 10, Func. Count: 127, Neg. LLF: 147.3587144228945
Iteration: 11, Func. Count: 139, Neg. LLF: 147.35739504385126
Iteration: 12, Func. Count: 151, Neg. LLF: 147.35710238347448
Iteration: 13, Func. Count: 163, Neg. LLF: 147.35708469878006
Iteration: 14, Func. Count: 175, Neg. LLF: 147.35708240373822
Iteration: 15, Func. Count: 186, Neg. LLF: 147.3570823386741
Optimization terminated successfully (Exit mode 0)
Current function value: 147.35708240373822
Iterations: 15
Function evaluations: 186
Gradient evaluations: 15
Iteration: 1, Func. Count: 14, Neg. LLF: 203.03214859147172
Iteration: 2, Func. Count: 28, Neg. LLF: 160.40342417972244
Iteration: 3, Func. Count: 42, Neg. LLF: 148.06278553165782
Iteration: 4, Func. Count: 55, Neg. LLF: 147.847726375519
Iteration: 5, Func. Count: 68, Neg. LLF: 151.76090616831493
Iteration: 6, Func. Count: 83, Neg. LLF: 168.79051367266314
Iteration: 7, Func. Count: 97, Neg. LLF: 149.5665564480536
Iteration: 8, Func. Count: 111, Neg. LLF: 147.36035528237073
Iteration: 9, Func. Count: 124, Neg. LLF: 147.35781233991386
Iteration: 10, Func. Count: 137, Neg. LLF: 147.3572871295206
Iteration: 11, Func. Count: 150, Neg. LLF: 147.35719473637863
Iteration: 12, Func. Count: 163, Neg. LLF: 147.35712289580835
Iteration: 13, Func. Count: 176, Neg. LLF: 147.3571073940121
Iteration: 14, Func. Count: 189, Neg. LLF: 147.35709013054577
Iteration: 15, Func. Count: 202, Neg. LLF: 147.357083228548
Iteration: 16, Func. Count: 215, Neg. LLF: 147.357081655513
Iteration: 17, Func. Count: 227, Neg. LLF: 147.3570816943587
Optimization terminated successfully (Exit mode 0)
Current function value: 147.357081655513
Iterations: 17
Function evaluations: 227
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 155.78380991118206
Iteration: 2, Func. Count: 22, Neg. LLF: 153.81450121525268
Iteration: 3, Func. Count: 33, Neg. LLF: 148.57064282334483
Iteration: 4, Func. Count: 44, Neg. LLF: 147.62292917056635
Iteration: 5, Func. Count: 54, Neg. LLF: 152.41908496206523
Iteration: 6, Func. Count: 65, Neg. LLF: 147.96190189318253
Iteration: 7, Func. Count: 76, Neg. LLF: 147.10516968590684
Iteration: 8, Func. Count: 86, Neg. LLF: 149.8317784134657
Iteration: 9, Func. Count: 97, Neg. LLF: 160.12587902129454
Iteration: 10, Func. Count: 108, Neg. LLF: 145.73181603261125
Iteration: 11, Func. Count: 118, Neg. LLF: 145.4329037483795
Iteration: 12, Func. Count: 128, Neg. LLF: 145.37660576156347
Iteration: 13, Func. Count: 138, Neg. LLF: 145.28081314738893
Iteration: 14, Func. Count: 148, Neg. LLF: 145.2611024289224
Iteration: 15, Func. Count: 158, Neg. LLF: 145.25226276536193
Iteration: 16, Func. Count: 168, Neg. LLF: 145.23783967872328
Iteration: 17, Func. Count: 178, Neg. LLF: 145.2341581924606
Iteration: 18, Func. Count: 188, Neg. LLF: 145.23092768683384
Iteration: 19, Func. Count: 198, Neg. LLF: 145.22820328530815
Iteration: 20, Func. Count: 208, Neg. LLF: 145.227206213722
Iteration: 21, Func. Count: 218, Neg. LLF: 145.2271113593529
Iteration: 22, Func. Count: 228, Neg. LLF: 145.22710933968335
Iteration: 23, Func. Count: 237, Neg. LLF: 145.22710932060062
Optimization terminated successfully (Exit mode 0)
Current function value: 145.22710933968335
Iterations: 23
Function evaluations: 237
Gradient evaluations: 23
Iteration: 1, Func. Count: 12, Neg. LLF: 200.3692935471322
Iteration: 2, Func. Count: 25, Neg. LLF: 166.9246241989279
Iteration: 3, Func. Count: 38, Neg. LLF: 156.3264966728526
Iteration: 4, Func. Count: 50, Neg. LLF: 184.32260886362857
Iteration: 5, Func. Count: 62, Neg. LLF: 147.84004693460807
Iteration: 6, Func. Count: 73, Neg. LLF: 153.6183077202011
Iteration: 7, Func. Count: 85, Neg. LLF: 148.14805252889147
Iteration: 8, Func. Count: 97, Neg. LLF: 146.35622617538954
Iteration: 9, Func. Count: 109, Neg. LLF: 145.62057958740726
Iteration: 10, Func. Count: 120, Neg. LLF: 145.32737245094077
Iteration: 11, Func. Count: 131, Neg. LLF: 145.27979589462265
Iteration: 12, Func. Count: 142, Neg. LLF: 145.23950585315305
Iteration: 13, Func. Count: 153, Neg. LLF: 145.23095693678948
Iteration: 14, Func. Count: 164, Neg. LLF: 145.22895932056275
Iteration: 15, Func. Count: 175, Neg. LLF: 145.2285126705333
Iteration: 16, Func. Count: 186, Neg. LLF: 145.22814776845107
Iteration: 17, Func. Count: 197, Neg. LLF: 145.22772979203828
Iteration: 18, Func. Count: 208, Neg. LLF: 145.22753914683764
Iteration: 19, Func. Count: 219, Neg. LLF: 145.2274960814108
Iteration: 20, Func. Count: 230, Neg. LLF: 145.22747969605808
Iteration: 21, Func. Count: 241, Neg. LLF: 145.22744347165263
Iteration: 22, Func. Count: 252, Neg. LLF: 145.22737228303706
Iteration: 23, Func. Count: 263, Neg. LLF: 145.22725785077776
Iteration: 24, Func. Count: 274, Neg. LLF: 145.22715382659203
Iteration: 25, Func. Count: 285, Neg. LLF: 145.22711394518322
Iteration: 26, Func. Count: 296, Neg. LLF: 145.2271094743491
Iteration: 27, Func. Count: 306, Neg. LLF: 145.22710948380208
Optimization terminated successfully (Exit mode 0)
Current function value: 145.2271094743491
Iterations: 27
Function evaluations: 306
Gradient evaluations: 27
Iteration: 1, Func. Count: 13, Neg. LLF: 200.970625093959
Iteration: 2, Func. Count: 26, Neg. LLF: 152.84182774232974
Iteration: 3, Func. Count: 39, Neg. LLF: 150.13092314353798
Iteration: 4, Func. Count: 52, Neg. LLF: 149.24320044552783
Iteration: 5, Func. Count: 65, Neg. LLF: 147.14001233903488
Iteration: 6, Func. Count: 78, Neg. LLF: 147.1358841002759
Iteration: 7, Func. Count: 91, Neg. LLF: 145.61807895586327
Iteration: 8, Func. Count: 103, Neg. LLF: 145.45571511144828
Iteration: 9, Func. Count: 115, Neg. LLF: 145.24904542301812
Iteration: 10, Func. Count: 127, Neg. LLF: 145.23662944723662
Iteration: 11, Func. Count: 139, Neg. LLF: 145.2307112594912
Iteration: 12, Func. Count: 151, Neg. LLF: 145.22942338217206
Iteration: 13, Func. Count: 163, Neg. LLF: 145.2277632188272
Iteration: 14, Func. Count: 175, Neg. LLF: 145.22760108557688
Iteration: 15, Func. Count: 187, Neg. LLF: 145.22735189767087
Iteration: 16, Func. Count: 199, Neg. LLF: 145.2272731341675
Iteration: 17, Func. Count: 211, Neg. LLF: 145.22713125166436
Iteration: 18, Func. Count: 223, Neg. LLF: 145.22711121767756
Iteration: 19, Func. Count: 235, Neg. LLF: 145.22710930443498
Iteration: 20, Func. Count: 246, Neg. LLF: 145.2271094210538
Optimization terminated successfully (Exit mode 0)
Current function value: 145.22710930443498
Iterations: 20
Function evaluations: 246
Gradient evaluations: 20
Iteration: 1, Func. Count: 14, Neg. LLF: 195.16414716431368
Iteration: 2, Func. Count: 28, Neg. LLF: 155.3142259609518
Iteration: 3, Func. Count: 42, Neg. LLF: 155.04364058592728
Iteration: 4, Func. Count: 56, Neg. LLF: 148.30043992256356
Iteration: 5, Func. Count: 70, Neg. LLF: 148.5236486452633
Iteration: 6, Func. Count: 84, Neg. LLF: 146.01346570131992
Iteration: 7, Func. Count: 97, Neg. LLF: 147.7393719934539
Iteration: 8, Func. Count: 111, Neg. LLF: 145.83412361709517
Iteration: 9, Func. Count: 124, Neg. LLF: 145.53657346815208
Iteration: 10, Func. Count: 137, Neg. LLF: 145.28274927155346
Iteration: 11, Func. Count: 150, Neg. LLF: 145.23670462899443
Iteration: 12, Func. Count: 163, Neg. LLF: 145.23226071995816
Iteration: 13, Func. Count: 176, Neg. LLF: 145.22736357266422
Iteration: 14, Func. Count: 189, Neg. LLF: 145.2271539856037
Iteration: 15, Func. Count: 202, Neg. LLF: 145.22711846237948
Iteration: 16, Func. Count: 215, Neg. LLF: 145.2271155194015
Iteration: 17, Func. Count: 228, Neg. LLF: 145.22711084640855
Iteration: 18, Func. Count: 241, Neg. LLF: 145.22710949478594
Iteration: 19, Func. Count: 253, Neg. LLF: 145.22710957283806
Optimization terminated successfully (Exit mode 0)
Current function value: 145.22710949478594
Iterations: 19
Function evaluations: 253
Gradient evaluations: 19
Iteration: 1, Func. Count: 15, Neg. LLF: 194.78652436608635
Iteration: 2, Func. Count: 30, Neg. LLF: 155.29022534269768
Iteration: 3, Func. Count: 45, Neg. LLF: 157.21927428335727
Iteration: 4, Func. Count: 60, Neg. LLF: 148.4809627709182
Iteration: 5, Func. Count: 75, Neg. LLF: 146.35177038545936
Iteration: 6, Func. Count: 89, Neg. LLF: 145.20632971020783
Iteration: 7, Func. Count: 103, Neg. LLF: 218.9203593242589
Iteration: 8, Func. Count: 118, Neg. LLF: 145.19176304160308
Iteration: 9, Func. Count: 133, Neg. LLF: 148.03659242816872
Iteration: 10, Func. Count: 148, Neg. LLF: 144.82275584810927
Iteration: 11, Func. Count: 162, Neg. LLF: 144.785141312157
Iteration: 12, Func. Count: 176, Neg. LLF: 144.7603787461297
Iteration: 13, Func. Count: 190, Neg. LLF: 144.6480938101059
Iteration: 14, Func. Count: 204, Neg. LLF: 144.58438584775496
Iteration: 15, Func. Count: 218, Neg. LLF: 144.52735784431104
Iteration: 16, Func. Count: 232, Neg. LLF: 144.52130889013424
Iteration: 17, Func. Count: 246, Neg. LLF: 144.5203672249637
Iteration: 18, Func. Count: 260, Neg. LLF: 144.52001793712995
Iteration: 19, Func. Count: 274, Neg. LLF: 144.51993654563046
Iteration: 20, Func. Count: 288, Neg. LLF: 144.51993326002204
Iteration: 21, Func. Count: 301, Neg. LLF: 144.51993316109954
Optimization terminated successfully (Exit mode 0)
Current function value: 144.51993326002204
Iterations: 21
Function evaluations: 301
Gradient evaluations: 21
Iteration: 1, Func. Count: 8, Neg. LLF: 154.757086036771
Iteration: 2, Func. Count: 16, Neg. LLF: 152.33724927969325
Iteration: 3, Func. Count: 26, Neg. LLF: 160.83560012983105
Iteration: 4, Func. Count: 34, Neg. LLF: 151.44496734553178
Iteration: 5, Func. Count: 41, Neg. LLF: 151.28057332524023
Iteration: 6, Func. Count: 48, Neg. LLF: 153.58410423874594
Iteration: 7, Func. Count: 56, Neg. LLF: 153.95130294048704
Iteration: 8, Func. Count: 64, Neg. LLF: 151.85576197284422
Iteration: 9, Func. Count: 72, Neg. LLF: 152.34037077762017
Iteration: 10, Func. Count: 80, Neg. LLF: 151.73358162131328
Iteration: 11, Func. Count: 88, Neg. LLF: 150.759473111882
Iteration: 12, Func. Count: 95, Neg. LLF: 150.68114765058607
Iteration: 13, Func. Count: 102, Neg. LLF: 150.61377697180131
Iteration: 14, Func. Count: 109, Neg. LLF: 150.57917534033606
Iteration: 15, Func. Count: 116, Neg. LLF: 150.54371540509135
Iteration: 16, Func. Count: 123, Neg. LLF: 150.43507897899826
Iteration: 17, Func. Count: 130, Neg. LLF: 152.52730726803102
Iteration: 18, Func. Count: 138, Neg. LLF: 152.52168941232551
Iteration: 19, Func. Count: 146, Neg. LLF: 152.52233102913547
Iteration: 20, Func. Count: 154, Neg. LLF: 152.42613021937828
Iteration: 21, Func. Count: 162, Neg. LLF: 153.26259391391793
Iteration: 22, Func. Count: 170, Neg. LLF: 153.58965131165021
Iteration: 23, Func. Count: 178, Neg. LLF: 150.23848644962067
Iteration: 24, Func. Count: 186, Neg. LLF: 152.27543730776628
Iteration: 25, Func. Count: 194, Neg. LLF: 149.9056920617755
Iteration: 26, Func. Count: 201, Neg. LLF: 149.9042237428627
Iteration: 27, Func. Count: 208, Neg. LLF: 149.90419184860923
Iteration: 28, Func. Count: 215, Neg. LLF: 149.90417876149198
Iteration: 29, Func. Count: 221, Neg. LLF: 149.90417869278846
Optimization terminated successfully (Exit mode 0)
Current function value: 149.90417876149198
Iterations: 29
Function evaluations: 221
Gradient evaluations: 29
Iteration: 1, Func. Count: 9, Neg. LLF: 182.73342322358727
Iteration: 2, Func. Count: 18, Neg. LLF: 160.47891568119243
Iteration: 3, Func. Count: 27, Neg. LLF: 154.82231852879937
Iteration: 4, Func. Count: 36, Neg. LLF: 149.82789562172516
Iteration: 5, Func. Count: 44, Neg. LLF: 150.56786337983849
Iteration: 6, Func. Count: 53, Neg. LLF: 150.04678364813745
Iteration: 7, Func. Count: 62, Neg. LLF: 149.72018586477094
Iteration: 8, Func. Count: 70, Neg. LLF: 149.6763492736053
Iteration: 9, Func. Count: 78, Neg. LLF: 149.60994255815223
Iteration: 10, Func. Count: 86, Neg. LLF: 149.58006878431286
Iteration: 11, Func. Count: 94, Neg. LLF: 149.56820534122548
Iteration: 12, Func. Count: 102, Neg. LLF: 149.56645197156962
Iteration: 13, Func. Count: 110, Neg. LLF: 149.56574986854386
Iteration: 14, Func. Count: 118, Neg. LLF: 149.56544743540218
Iteration: 15, Func. Count: 126, Neg. LLF: 149.56533846719196
Iteration: 16, Func. Count: 134, Neg. LLF: 149.56528373372936
Iteration: 17, Func. Count: 142, Neg. LLF: 149.56526974640923
Iteration: 18, Func. Count: 149, Neg. LLF: 149.5652697248257
Optimization terminated successfully (Exit mode 0)
Current function value: 149.56526974640923
Iterations: 18
Function evaluations: 149
Gradient evaluations: 18
Iteration: 1, Func. Count: 10, Neg. LLF: 180.80415771090273
Iteration: 2, Func. Count: 20, Neg. LLF: 156.74048463628705
Iteration: 3, Func. Count: 30, Neg. LLF: 149.74385255552252
Iteration: 4, Func. Count: 39, Neg. LLF: 151.98139585906787
Iteration: 5, Func. Count: 49, Neg. LLF: 151.52797931072715
Iteration: 6, Func. Count: 59, Neg. LLF: 151.01389528357925
Iteration: 7, Func. Count: 69, Neg. LLF: 149.10931009757354
Iteration: 8, Func. Count: 79, Neg. LLF: 148.85165203837408
Iteration: 9, Func. Count: 88, Neg. LLF: 148.82738673726428
Iteration: 10, Func. Count: 97, Neg. LLF: 148.82212787203832
Iteration: 11, Func. Count: 106, Neg. LLF: 148.8216577949135
Iteration: 12, Func. Count: 115, Neg. LLF: 148.82164112396862
Iteration: 13, Func. Count: 124, Neg. LLF: 148.82163452249853
Iteration: 14, Func. Count: 133, Neg. LLF: 148.82163132681725
Iteration: 15, Func. Count: 141, Neg. LLF: 148.8216312645974
Optimization terminated successfully (Exit mode 0)
Current function value: 148.82163132681725
Iterations: 15
Function evaluations: 141
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 153.3158334525994
Iteration: 2, Func. Count: 22, Neg. LLF: 182.1296983793797
Iteration: 3, Func. Count: 33, Neg. LLF: 149.93793349718217
Iteration: 4, Func. Count: 44, Neg. LLF: 149.07012537944647
Iteration: 5, Func. Count: 54, Neg. LLF: 149.1386260570399
Iteration: 6, Func. Count: 65, Neg. LLF: 148.9257895614528
Iteration: 7, Func. Count: 76, Neg. LLF: 148.6292604984007
Iteration: 8, Func. Count: 86, Neg. LLF: 148.5856387330368
Iteration: 9, Func. Count: 96, Neg. LLF: 148.55742533052083
Iteration: 10, Func. Count: 106, Neg. LLF: 148.54430943320617
Iteration: 11, Func. Count: 116, Neg. LLF: 148.54086804243116
Iteration: 12, Func. Count: 126, Neg. LLF: 148.54071847589694
Iteration: 13, Func. Count: 136, Neg. LLF: 148.54071623691823
Iteration: 14, Func. Count: 145, Neg. LLF: 148.54071613324484
Optimization terminated successfully (Exit mode 0)
Current function value: 148.54071623691823
Iterations: 14
Function evaluations: 145
Gradient evaluations: 14
Iteration: 1, Func. Count: 12, Neg. LLF: 157.72567483690935
Iteration: 2, Func. Count: 24, Neg. LLF: 187.8032837671896
Iteration: 3, Func. Count: 36, Neg. LLF: 151.44167158061313
Iteration: 4, Func. Count: 48, Neg. LLF: 154.54851112102392
Iteration: 5, Func. Count: 60, Neg. LLF: 150.75048065935346
Iteration: 6, Func. Count: 72, Neg. LLF: 149.96381716774476
Iteration: 7, Func. Count: 84, Neg. LLF: 148.71045957022434
Iteration: 8, Func. Count: 95, Neg. LLF: 148.65599709122787
Iteration: 9, Func. Count: 106, Neg. LLF: 148.5783040412847
Iteration: 10, Func. Count: 117, Neg. LLF: 148.56153369689162
Iteration: 11, Func. Count: 128, Neg. LLF: 148.5478248139155
Iteration: 12, Func. Count: 139, Neg. LLF: 148.54187953356276
Iteration: 13, Func. Count: 150, Neg. LLF: 148.54087718141244
Iteration: 14, Func. Count: 161, Neg. LLF: 148.540728769669
Iteration: 15, Func. Count: 172, Neg. LLF: 148.54071850648467
Iteration: 16, Func. Count: 183, Neg. LLF: 148.54071627615875
Iteration: 17, Func. Count: 193, Neg. LLF: 148.54071632925582
Optimization terminated successfully (Exit mode 0)
Current function value: 148.54071627615875
Iterations: 17
Function evaluations: 193
Gradient evaluations: 17
Iteration: 1, Func. Count: 9, Neg. LLF: 155.04813267432868
Iteration: 2, Func. Count: 18, Neg. LLF: 154.71855700264285
Iteration: 3, Func. Count: 29, Neg. LLF: 161.81872956471312
Iteration: 4, Func. Count: 38, Neg. LLF: 151.2074174572042
Iteration: 5, Func. Count: 46, Neg. LLF: 150.47171176528983
Iteration: 6, Func. Count: 54, Neg. LLF: 150.2314687794689
Iteration: 7, Func. Count: 62, Neg. LLF: 150.18873908433966
Iteration: 8, Func. Count: 70, Neg. LLF: 149.95280507101566
Iteration: 9, Func. Count: 78, Neg. LLF: 149.66139577437056
Iteration: 10, Func. Count: 86, Neg. LLF: 207.04874707783082
Iteration: 11, Func. Count: 95, Neg. LLF: 199.4547479819787
Iteration: 12, Func. Count: 104, Neg. LLF: 151.23214070396023
Iteration: 13, Func. Count: 113, Neg. LLF: 148.939446151566
Iteration: 14, Func. Count: 121, Neg. LLF: 148.81969333707588
Iteration: 15, Func. Count: 129, Neg. LLF: 148.8027980921027
Iteration: 16, Func. Count: 137, Neg. LLF: 148.75374004154813
Iteration: 17, Func. Count: 145, Neg. LLF: 148.7147217322156
Iteration: 18, Func. Count: 153, Neg. LLF: 148.6611500910011
Iteration: 19, Func. Count: 161, Neg. LLF: 148.65470011766524
Iteration: 20, Func. Count: 169, Neg. LLF: 148.6542512908714
Iteration: 21, Func. Count: 177, Neg. LLF: 148.6542500945709
Iteration: 22, Func. Count: 185, Neg. LLF: 148.6542457399472
Iteration: 23, Func. Count: 193, Neg. LLF: 148.65424805321072
Optimization terminated successfully (Exit mode 0)
Current function value: 148.65424574416997
Iterations: 23
Function evaluations: 203
Gradient evaluations: 23
Iteration: 1, Func. Count: 10, Neg. LLF: 206.40014929397626
Iteration: 2, Func. Count: 21, Neg. LLF: 158.5945968802735
Iteration: 3, Func. Count: 32, Neg. LLF: 161.91996861809653
Iteration: 4, Func. Count: 43, Neg. LLF: 186.955340788765
Iteration: 5, Func. Count: 53, Neg. LLF: 149.06564027535563
Iteration: 6, Func. Count: 62, Neg. LLF: 149.01972635430616
Iteration: 7, Func. Count: 71, Neg. LLF: 149.00509545392487
Iteration: 8, Func. Count: 80, Neg. LLF: 148.97575724284297
Iteration: 9, Func. Count: 89, Neg. LLF: 148.9506140400563
Iteration: 10, Func. Count: 98, Neg. LLF: 152.01653919577396
Iteration: 11, Func. Count: 108, Neg. LLF: 152.0792339307232
Iteration: 12, Func. Count: 118, Neg. LLF: 152.1069570767484
Iteration: 13, Func. Count: 128, Neg. LLF: 151.66828909093368
Iteration: 14, Func. Count: 138, Neg. LLF: 154.05567004416338
Iteration: 15, Func. Count: 148, Neg. LLF: 167.79051795513433
Iteration: 16, Func. Count: 158, Neg. LLF: 154.71209062105206
Iteration: 17, Func. Count: 168, Neg. LLF: 147.8081915324643
Iteration: 18, Func. Count: 177, Neg. LLF: 147.66092109579444
Iteration: 19, Func. Count: 186, Neg. LLF: 147.62807145206796
Iteration: 20, Func. Count: 195, Neg. LLF: 147.6152674422562
Iteration: 21, Func. Count: 204, Neg. LLF: 147.61259068621825
Iteration: 22, Func. Count: 213, Neg. LLF: 147.61052754586368
Iteration: 23, Func. Count: 222, Neg. LLF: 147.61021984180786
Iteration: 24, Func. Count: 231, Neg. LLF: 147.61002983730646
Iteration: 25, Func. Count: 240, Neg. LLF: 147.60979822328966
Iteration: 26, Func. Count: 249, Neg. LLF: 147.6096599685381
Iteration: 27, Func. Count: 258, Neg. LLF: 147.60962918192442
Iteration: 28, Func. Count: 267, Neg. LLF: 147.60962669038886
Iteration: 29, Func. Count: 275, Neg. LLF: 147.60962664147965
Optimization terminated successfully (Exit mode 0)
Current function value: 147.60962669038886
Iterations: 30
Function evaluations: 275
Gradient evaluations: 29
Iteration: 1, Func. Count: 11, Neg. LLF: 214.5369160037171
Iteration: 2, Func. Count: 22, Neg. LLF: 160.58599726401678
Iteration: 3, Func. Count: 34, Neg. LLF: 165.24510050776564
Iteration: 4, Func. Count: 45, Neg. LLF: 160.079832823868
Iteration: 5, Func. Count: 56, Neg. LLF: 149.62928600614464
Iteration: 6, Func. Count: 67, Neg. LLF: 149.1272634761289
Iteration: 7, Func. Count: 78, Neg. LLF: 148.9823259397125
Iteration: 8, Func. Count: 89, Neg. LLF: 148.88261796182704
Iteration: 9, Func. Count: 99, Neg. LLF: 149.18306013957653
Iteration: 10, Func. Count: 110, Neg. LLF: 149.5451426159089
Iteration: 11, Func. Count: 121, Neg. LLF: 150.8256862921213
Iteration: 12, Func. Count: 132, Neg. LLF: 151.5960904497936
Iteration: 13, Func. Count: 143, Neg. LLF: 151.53660082664965
Iteration: 14, Func. Count: 154, Neg. LLF: 151.74811942228757
Iteration: 15, Func. Count: 165, Neg. LLF: 147.9750572478713
Iteration: 16, Func. Count: 176, Neg. LLF: 147.71988221645393
Iteration: 17, Func. Count: 187, Neg. LLF: 147.59106207635102
Iteration: 18, Func. Count: 197, Neg. LLF: 147.584564875625
Iteration: 19, Func. Count: 207, Neg. LLF: 147.572686100828
Iteration: 20, Func. Count: 217, Neg. LLF: 147.53979963747818
Iteration: 21, Func. Count: 227, Neg. LLF: 147.5284247958856
Iteration: 22, Func. Count: 237, Neg. LLF: 147.52290104997186
Iteration: 23, Func. Count: 247, Neg. LLF: 147.51981710596144
Iteration: 24, Func. Count: 257, Neg. LLF: 147.5130364142411
Iteration: 25, Func. Count: 267, Neg. LLF: 147.50817675667162
Iteration: 26, Func. Count: 277, Neg. LLF: 147.50642997784598
Iteration: 27, Func. Count: 287, Neg. LLF: 147.50621649038587
Iteration: 28, Func. Count: 297, Neg. LLF: 147.5062044054582
Iteration: 29, Func. Count: 307, Neg. LLF: 147.50620561949216
Iteration: 30, Func. Count: 317, Neg. LLF: 147.50620435567984
Optimization terminated successfully (Exit mode 0)
Current function value: 147.5062056182646
Iterations: 30
Function evaluations: 327
Gradient evaluations: 30
Iteration: 1, Func. Count: 12, Neg. LLF: 198.24588828404342
Iteration: 2, Func. Count: 24, Neg. LLF: 156.39167076456752
Iteration: 3, Func. Count: 36, Neg. LLF: 147.81359076953194
Iteration: 4, Func. Count: 47, Neg. LLF: 147.5768458646999
Iteration: 5, Func. Count: 58, Neg. LLF: 181.77456555035843
Iteration: 6, Func. Count: 71, Neg. LLF: 147.38669865719268
Iteration: 7, Func. Count: 82, Neg. LLF: 147.3865588998679
Iteration: 8, Func. Count: 94, Neg. LLF: 147.3586383279398
Iteration: 9, Func. Count: 105, Neg. LLF: 147.35594735090731
Iteration: 10, Func. Count: 116, Neg. LLF: 147.35389621784898
Iteration: 11, Func. Count: 127, Neg. LLF: 147.35294924334056
Iteration: 12, Func. Count: 138, Neg. LLF: 147.35273512460023
Iteration: 13, Func. Count: 149, Neg. LLF: 147.35273082217276
Iteration: 14, Func. Count: 159, Neg. LLF: 147.3527307555104
Optimization terminated successfully (Exit mode 0)
Current function value: 147.35273082217276
Iterations: 14
Function evaluations: 159
Gradient evaluations: 14
Iteration: 1, Func. Count: 13, Neg. LLF: 198.29137456221983
Iteration: 2, Func. Count: 26, Neg. LLF: 156.82088468045592
Iteration: 3, Func. Count: 39, Neg. LLF: 147.81883500405763
Iteration: 4, Func. Count: 51, Neg. LLF: 147.5669803471211
Iteration: 5, Func. Count: 63, Neg. LLF: 147.93094179503018
Iteration: 6, Func. Count: 76, Neg. LLF: 147.54357366315517
Iteration: 7, Func. Count: 89, Neg. LLF: 147.40281778742445
Iteration: 8, Func. Count: 101, Neg. LLF: 147.35793711918228
Iteration: 9, Func. Count: 113, Neg. LLF: 147.35473346808635
Iteration: 10, Func. Count: 125, Neg. LLF: 147.35381128340975
Iteration: 11, Func. Count: 137, Neg. LLF: 147.35328320478027
Iteration: 12, Func. Count: 149, Neg. LLF: 147.3528941001171
Iteration: 13, Func. Count: 161, Neg. LLF: 147.35275644674405
Iteration: 14, Func. Count: 173, Neg. LLF: 147.35273621564792
Iteration: 15, Func. Count: 185, Neg. LLF: 147.35273175701752
Iteration: 16, Func. Count: 197, Neg. LLF: 147.35273076970893
Optimization terminated successfully (Exit mode 0)
Current function value: 147.35273076970893
Iterations: 16
Function evaluations: 197
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 158.1363222685937
Iteration: 2, Func. Count: 20, Neg. LLF: 151.72055168026023
Iteration: 3, Func. Count: 30, Neg. LLF: 155.1468169646296
Iteration: 4, Func. Count: 41, Neg. LLF: 150.47750208036229
Iteration: 5, Func. Count: 50, Neg. LLF: 149.89848321736554
Iteration: 6, Func. Count: 59, Neg. LLF: 150.58482537513027
Iteration: 7, Func. Count: 69, Neg. LLF: 150.01986936916325
Iteration: 8, Func. Count: 79, Neg. LLF: 149.33602424219617
Iteration: 9, Func. Count: 89, Neg. LLF: 148.06195687690854
Iteration: 10, Func. Count: 98, Neg. LLF: 147.7167901784876
Iteration: 11, Func. Count: 107, Neg. LLF: 147.58461664151076
Iteration: 12, Func. Count: 116, Neg. LLF: 147.4920706013325
Iteration: 13, Func. Count: 125, Neg. LLF: 147.44942313598634
Iteration: 14, Func. Count: 134, Neg. LLF: 147.41119492893208
Iteration: 15, Func. Count: 143, Neg. LLF: 147.398450740514
Iteration: 16, Func. Count: 152, Neg. LLF: 147.3925463410418
Iteration: 17, Func. Count: 161, Neg. LLF: 147.39248689749624
Iteration: 18, Func. Count: 169, Neg. LLF: 147.39248686821585
Optimization terminated successfully (Exit mode 0)
Current function value: 147.39248689749624
Iterations: 18
Function evaluations: 169
Gradient evaluations: 18
Iteration: 1, Func. Count: 11, Neg. LLF: 207.59373697909484
Iteration: 2, Func. Count: 23, Neg. LLF: 162.39207147015065
Iteration: 3, Func. Count: 35, Neg. LLF: 149.71371905027962
Iteration: 4, Func. Count: 46, Neg. LLF: 156.298233581536
Iteration: 5, Func. Count: 58, Neg. LLF: 149.07183566388292
Iteration: 6, Func. Count: 68, Neg. LLF: 149.02811453930667
Iteration: 7, Func. Count: 78, Neg. LLF: 149.01147282971644
Iteration: 8, Func. Count: 88, Neg. LLF: 148.96754739444964
Iteration: 9, Func. Count: 98, Neg. LLF: 148.93718914560606
Iteration: 10, Func. Count: 108, Neg. LLF: 152.05647787099676
Iteration: 11, Func. Count: 119, Neg. LLF: 152.0982578611126
Iteration: 12, Func. Count: 130, Neg. LLF: 152.10734623861035
Iteration: 13, Func. Count: 141, Neg. LLF: 149.21679485577963
Iteration: 14, Func. Count: 152, Neg. LLF: 152.29962608894007
Iteration: 15, Func. Count: 163, Neg. LLF: 148.79163058058558
Iteration: 16, Func. Count: 174, Neg. LLF: 151.4853400840115
Iteration: 17, Func. Count: 185, Neg. LLF: 147.7958044364676
Iteration: 18, Func. Count: 195, Neg. LLF: 147.7854209866285
Iteration: 19, Func. Count: 206, Neg. LLF: 148.0485947699439
Iteration: 20, Func. Count: 217, Neg. LLF: 147.76061579397538
Iteration: 21, Func. Count: 228, Neg. LLF: 147.50933613454148
Iteration: 22, Func. Count: 238, Neg. LLF: 147.47909040961898
Iteration: 23, Func. Count: 248, Neg. LLF: 147.47028812109133
Iteration: 24, Func. Count: 258, Neg. LLF: 147.44239907544755
Iteration: 25, Func. Count: 268, Neg. LLF: 147.43616862911836
Iteration: 26, Func. Count: 278, Neg. LLF: 147.43437418218528
Iteration: 27, Func. Count: 288, Neg. LLF: 147.43289769031352
Iteration: 28, Func. Count: 298, Neg. LLF: 147.42715830568775
Iteration: 29, Func. Count: 308, Neg. LLF: 147.41790534102395
Iteration: 30, Func. Count: 318, Neg. LLF: 147.40462244035336
Iteration: 31, Func. Count: 328, Neg. LLF: 147.39518587131457
Iteration: 32, Func. Count: 338, Neg. LLF: 147.39266549113225
Iteration: 33, Func. Count: 348, Neg. LLF: 147.392494489763
Iteration: 34, Func. Count: 358, Neg. LLF: 147.3924869313271
Iteration: 35, Func. Count: 367, Neg. LLF: 147.39248689177595
Optimization terminated successfully (Exit mode 0)
Current function value: 147.3924869313271
Iterations: 35
Function evaluations: 367
Gradient evaluations: 35
Iteration: 1, Func. Count: 12, Neg. LLF: 169.86283093484286
Iteration: 2, Func. Count: 25, Neg. LLF: 160.453395517204
Iteration: 3, Func. Count: 38, Neg. LLF: 153.38922835674765
Iteration: 4, Func. Count: 50, Neg. LLF: 152.47951177027767
Iteration: 5, Func. Count: 63, Neg. LLF: 152.46189714122946
Iteration: 6, Func. Count: 75, Neg. LLF: 151.01748668479863
Iteration: 7, Func. Count: 88, Neg. LLF: 149.09709181026875
Iteration: 8, Func. Count: 99, Neg. LLF: 148.9495051254553
Iteration: 9, Func. Count: 110, Neg. LLF: 149.71377310672864
Iteration: 10, Func. Count: 122, Neg. LLF: 149.56904365516544
Iteration: 11, Func. Count: 134, Neg. LLF: 150.29538051377173
Iteration: 12, Func. Count: 146, Neg. LLF: 148.69771544752567
Iteration: 13, Func. Count: 158, Neg. LLF: 148.47264513305726
Iteration: 14, Func. Count: 169, Neg. LLF: 148.4784666353511
Iteration: 15, Func. Count: 181, Neg. LLF: 148.42582363415977
Iteration: 16, Func. Count: 192, Neg. LLF: 148.41624694566693
Iteration: 17, Func. Count: 203, Neg. LLF: 148.41307807649864
Iteration: 18, Func. Count: 214, Neg. LLF: 148.4066823249145
Iteration: 19, Func. Count: 225, Neg. LLF: 148.40529516050572
Iteration: 20, Func. Count: 236, Neg. LLF: 148.40506354926848
Iteration: 21, Func. Count: 247, Neg. LLF: 148.4050430085819
Iteration: 22, Func. Count: 258, Neg. LLF: 148.40504104613063
Iteration: 23, Func. Count: 268, Neg. LLF: 148.40504104618202
Optimization terminated successfully (Exit mode 0)
Current function value: 148.40504104613063
Iterations: 23
Function evaluations: 268
Gradient evaluations: 23
Iteration: 1, Func. Count: 13, Neg. LLF: 202.24218832459826
Iteration: 2, Func. Count: 26, Neg. LLF: 156.67224888319737
Iteration: 3, Func. Count: 39, Neg. LLF: 147.77634851239043
Iteration: 4, Func. Count: 51, Neg. LLF: 147.7593906188111
Iteration: 5, Func. Count: 64, Neg. LLF: 187.94649733168245
Iteration: 6, Func. Count: 77, Neg. LLF: 147.38959823082735
Iteration: 7, Func. Count: 89, Neg. LLF: 147.40190863879647
Iteration: 8, Func. Count: 102, Neg. LLF: 147.36345988183513
Iteration: 9, Func. Count: 114, Neg. LLF: 147.3572881899568
Iteration: 10, Func. Count: 126, Neg. LLF: 147.3544010822875
Iteration: 11, Func. Count: 138, Neg. LLF: 147.35345433327706
Iteration: 12, Func. Count: 150, Neg. LLF: 147.3527717806937
Iteration: 13, Func. Count: 162, Neg. LLF: 147.35273234374995
Iteration: 14, Func. Count: 174, Neg. LLF: 147.35273059121408
Iteration: 15, Func. Count: 185, Neg. LLF: 147.35273052457768
Optimization terminated successfully (Exit mode 0)
Current function value: 147.35273059121408
Iterations: 15
Function evaluations: 185
Gradient evaluations: 15
Iteration: 1, Func. Count: 14, Neg. LLF: 202.70837563769248
Iteration: 2, Func. Count: 28, Neg. LLF: 157.2332954462404
Iteration: 3, Func. Count: 42, Neg. LLF: 147.7347177312633
Iteration: 4, Func. Count: 55, Neg. LLF: 147.644988006496
Iteration: 5, Func. Count: 68, Neg. LLF: 147.44296857365515
Iteration: 6, Func. Count: 81, Neg. LLF: 147.6715672440637
Iteration: 7, Func. Count: 95, Neg. LLF: 147.37144966695845
Iteration: 8, Func. Count: 108, Neg. LLF: 147.3616307223393
Iteration: 9, Func. Count: 121, Neg. LLF: 147.35441249310963
Iteration: 10, Func. Count: 134, Neg. LLF: 147.35370813045452
Iteration: 11, Func. Count: 147, Neg. LLF: 147.3530765351549
Iteration: 12, Func. Count: 160, Neg. LLF: 147.35292350745382
Iteration: 13, Func. Count: 173, Neg. LLF: 147.35277987948905
Iteration: 14, Func. Count: 186, Neg. LLF: 147.35273800991868
Iteration: 15, Func. Count: 199, Neg. LLF: 147.35273080887492
Iteration: 16, Func. Count: 211, Neg. LLF: 147.35273080266185
Optimization terminated successfully (Exit mode 0)
Current function value: 147.35273080887492
Iterations: 16
Function evaluations: 211
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 157.21361791200675
Iteration: 2, Func. Count: 22, Neg. LLF: 151.74482383420658
Iteration: 3, Func. Count: 33, Neg. LLF: 154.21863219049297
Iteration: 4, Func. Count: 44, Neg. LLF: 151.2728807420156
Iteration: 5, Func. Count: 54, Neg. LLF: 149.72721002396904
Iteration: 6, Func. Count: 64, Neg. LLF: 149.07653272670737
Iteration: 7, Func. Count: 74, Neg. LLF: 149.57839738806737
Iteration: 8, Func. Count: 85, Neg. LLF: 150.75128507576758
Iteration: 9, Func. Count: 97, Neg. LLF: 148.26150573806265
Iteration: 10, Func. Count: 107, Neg. LLF: 150.329689408102
Iteration: 11, Func. Count: 118, Neg. LLF: 149.8363375137578
Iteration: 12, Func. Count: 129, Neg. LLF: 147.04253261856834
Iteration: 13, Func. Count: 139, Neg. LLF: 146.87864749495557
Iteration: 14, Func. Count: 149, Neg. LLF: 146.79033175840536
Iteration: 15, Func. Count: 159, Neg. LLF: 146.64084384311516
Iteration: 16, Func. Count: 169, Neg. LLF: 146.62367319732678
Iteration: 17, Func. Count: 179, Neg. LLF: 146.6232496062418
Iteration: 18, Func. Count: 189, Neg. LLF: 146.6231514897331
Iteration: 19, Func. Count: 199, Neg. LLF: 146.62314902376278
Iteration: 20, Func. Count: 208, Neg. LLF: 146.62314898888573
Optimization terminated successfully (Exit mode 0)
Current function value: 146.62314902376278
Iterations: 20
Function evaluations: 208
Gradient evaluations: 20
Iteration: 1, Func. Count: 12, Neg. LLF: 201.80257229889023
Iteration: 2, Func. Count: 25, Neg. LLF: 165.08505936282756
Iteration: 3, Func. Count: 38, Neg. LLF: 162.01240427317717
Iteration: 4, Func. Count: 51, Neg. LLF: 203.86910787663675
Iteration: 5, Func. Count: 63, Neg. LLF: 149.10615829782887
Iteration: 6, Func. Count: 74, Neg. LLF: 149.06739832939385
Iteration: 7, Func. Count: 85, Neg. LLF: 149.0220272262598
Iteration: 8, Func. Count: 96, Neg. LLF: 148.99642381103723
Iteration: 9, Func. Count: 107, Neg. LLF: 148.98065453157872
Iteration: 10, Func. Count: 118, Neg. LLF: 148.9587294754735
Iteration: 11, Func. Count: 129, Neg. LLF: 152.71942128421813
Iteration: 12, Func. Count: 141, Neg. LLF: 152.87352122107117
Iteration: 13, Func. Count: 153, Neg. LLF: 152.94126710009272
Iteration: 14, Func. Count: 165, Neg. LLF: 148.57831029046156
Iteration: 15, Func. Count: 176, Neg. LLF: 693.9198645066648
Iteration: 16, Func. Count: 188, Neg. LLF: 154.52279914694864
Iteration: 17, Func. Count: 201, Neg. LLF: 148.02527500558463
Iteration: 18, Func. Count: 213, Neg. LLF: 147.66572407732062
Iteration: 19, Func. Count: 225, Neg. LLF: 146.95223071869665
Iteration: 20, Func. Count: 236, Neg. LLF: 146.8417143433333
Iteration: 21, Func. Count: 247, Neg. LLF: 146.82214558240304
Iteration: 22, Func. Count: 258, Neg. LLF: 146.79471200018295
Iteration: 23, Func. Count: 269, Neg. LLF: 146.7475141019948
Iteration: 24, Func. Count: 280, Neg. LLF: 146.71039324813734
Iteration: 25, Func. Count: 291, Neg. LLF: 146.6863691823866
Iteration: 26, Func. Count: 302, Neg. LLF: 146.675838266363
Iteration: 27, Func. Count: 313, Neg. LLF: 146.66933955128098
Iteration: 28, Func. Count: 324, Neg. LLF: 146.66342685447128
Iteration: 29, Func. Count: 335, Neg. LLF: 146.65240666955333
Iteration: 30, Func. Count: 346, Neg. LLF: 146.6366784744375
Iteration: 31, Func. Count: 357, Neg. LLF: 146.6258797385718
Iteration: 32, Func. Count: 368, Neg. LLF: 146.62336263118414
Iteration: 33, Func. Count: 379, Neg. LLF: 146.6231503014233
Iteration: 34, Func. Count: 390, Neg. LLF: 146.62314887557838
Iteration: 35, Func. Count: 400, Neg. LLF: 146.62314888126323
Optimization terminated successfully (Exit mode 0)
Current function value: 146.62314887557838
Iterations: 35
Function evaluations: 400
Gradient evaluations: 35
Iteration: 1, Func. Count: 13, Neg. LLF: 207.04193882457082
Iteration: 2, Func. Count: 27, Neg. LLF: 166.78450998652187
Iteration: 3, Func. Count: 40, Neg. LLF: 153.47825490075016
Iteration: 4, Func. Count: 53, Neg. LLF: 151.74509722765526
Iteration: 5, Func. Count: 67, Neg. LLF: 152.71717532449443
Iteration: 6, Func. Count: 80, Neg. LLF: 149.14779915603384
Iteration: 7, Func. Count: 92, Neg. LLF: 149.00339458409601
Iteration: 8, Func. Count: 104, Neg. LLF: 148.98869929584095
Iteration: 9, Func. Count: 116, Neg. LLF: 148.9696513519305
Iteration: 10, Func. Count: 128, Neg. LLF: 148.92488754418972
Iteration: 11, Func. Count: 140, Neg. LLF: 149.40627852318798
Iteration: 12, Func. Count: 153, Neg. LLF: 149.3107137036068
Iteration: 13, Func. Count: 166, Neg. LLF: 149.3596128290147
Iteration: 14, Func. Count: 179, Neg. LLF: 151.2628594505401
Iteration: 15, Func. Count: 192, Neg. LLF: 151.81287050809772
Iteration: 16, Func. Count: 205, Neg. LLF: 179.00370862669251
Iteration: 17, Func. Count: 219, Neg. LLF: 148.50063873607937
Iteration: 18, Func. Count: 232, Neg. LLF: 147.52428519790183
Iteration: 19, Func. Count: 244, Neg. LLF: 147.5625424000697
Iteration: 20, Func. Count: 257, Neg. LLF: 153.08628455853653
Iteration: 21, Func. Count: 271, Neg. LLF: 147.16096710010078
Iteration: 22, Func. Count: 283, Neg. LLF: 147.0928448602201
Iteration: 23, Func. Count: 295, Neg. LLF: 147.00852045919035
Iteration: 24, Func. Count: 307, Neg. LLF: 146.93855043378576
Iteration: 25, Func. Count: 319, Neg. LLF: 146.80945072038432
Iteration: 26, Func. Count: 331, Neg. LLF: 146.7167214607612
Iteration: 27, Func. Count: 343, Neg. LLF: 146.68751919979076
Iteration: 28, Func. Count: 355, Neg. LLF: 146.67543771243328
Iteration: 29, Func. Count: 367, Neg. LLF: 151.64604101985017
Iteration: 30, Func. Count: 380, Neg. LLF: 147.711783998873
Iteration: 31, Func. Count: 393, Neg. LLF: 149.96947639837833
Iteration: 32, Func. Count: 407, Neg. LLF: 146.6558448020992
Iteration: 33, Func. Count: 420, Neg. LLF: 146.62324687286713
Iteration: 34, Func. Count: 432, Neg. LLF: 146.6232009087609
Iteration: 35, Func. Count: 444, Neg. LLF: 146.623177120457
Iteration: 36, Func. Count: 456, Neg. LLF: 146.62315075149147
Iteration: 37, Func. Count: 468, Neg. LLF: 146.62314888901997
Iteration: 38, Func. Count: 479, Neg. LLF: 146.62314905750156
Optimization terminated successfully (Exit mode 0)
Current function value: 146.62314888901997
Iterations: 39
Function evaluations: 479
Gradient evaluations: 38
Iteration: 1, Func. Count: 14, Neg. LLF: 199.86951922623544
Iteration: 2, Func. Count: 28, Neg. LLF: 156.7607122056176
Iteration: 3, Func. Count: 42, Neg. LLF: 147.79059372817804
Iteration: 4, Func. Count: 55, Neg. LLF: 147.75744662627983
Iteration: 5, Func. Count: 69, Neg. LLF: 194.38876430611063
Iteration: 6, Func. Count: 83, Neg. LLF: 147.43682327215382
Iteration: 7, Func. Count: 96, Neg. LLF: 147.37592848921688
Iteration: 8, Func. Count: 109, Neg. LLF: 147.36345212910211
Iteration: 9, Func. Count: 122, Neg. LLF: 147.3629895881738
Iteration: 10, Func. Count: 136, Neg. LLF: 147.3590376135213
Iteration: 11, Func. Count: 149, Neg. LLF: 147.35710856184687
Iteration: 12, Func. Count: 162, Neg. LLF: 147.3570895599928
Iteration: 13, Func. Count: 175, Neg. LLF: 147.35708303606768
Iteration: 14, Func. Count: 188, Neg. LLF: 147.35708184208673
Iteration: 15, Func. Count: 200, Neg. LLF: 147.35708177707642
Optimization terminated successfully (Exit mode 0)
Current function value: 147.35708184208673
Iterations: 15
Function evaluations: 200
Gradient evaluations: 15
Iteration: 1, Func. Count: 15, Neg. LLF: 200.67548479085343
Iteration: 2, Func. Count: 30, Neg. LLF: 157.57405417568867
Iteration: 3, Func. Count: 45, Neg. LLF: 147.77627608137416
Iteration: 4, Func. Count: 59, Neg. LLF: 147.77320850705212
Iteration: 5, Func. Count: 74, Neg. LLF: 194.4823364620335
Iteration: 6, Func. Count: 90, Neg. LLF: 148.85964952152207
Iteration: 7, Func. Count: 105, Neg. LLF: 147.39584690440034
Iteration: 8, Func. Count: 119, Neg. LLF: 147.3781319823255
Iteration: 9, Func. Count: 133, Neg. LLF: 147.36836397836166
Iteration: 10, Func. Count: 147, Neg. LLF: 147.36237815535387
Iteration: 11, Func. Count: 161, Neg. LLF: 147.3583643728355
Iteration: 12, Func. Count: 175, Neg. LLF: 147.3573714043217
Iteration: 13, Func. Count: 189, Neg. LLF: 147.35718297094576
Iteration: 14, Func. Count: 203, Neg. LLF: 147.35709903250566
Iteration: 15, Func. Count: 217, Neg. LLF: 147.35708297920485
Iteration: 16, Func. Count: 231, Neg. LLF: 147.35708152721546
Iteration: 17, Func. Count: 244, Neg. LLF: 147.35708156600424
Optimization terminated successfully (Exit mode 0)
Current function value: 147.35708152721546
Iterations: 17
Function evaluations: 244
Gradient evaluations: 17
Iteration: 1, Func. Count: 12, Neg. LLF: 155.3197446697482
Iteration: 2, Func. Count: 24, Neg. LLF: 149.77111388866157
Iteration: 3, Func. Count: 36, Neg. LLF: 149.66762027296497
Iteration: 4, Func. Count: 49, Neg. LLF: 148.12278155282226
Iteration: 5, Func. Count: 60, Neg. LLF: 147.26079068898244
Iteration: 6, Func. Count: 71, Neg. LLF: 152.44059468540036
Iteration: 7, Func. Count: 83, Neg. LLF: 147.73955074988822
Iteration: 8, Func. Count: 95, Neg. LLF: 146.50289563241287
Iteration: 9, Func. Count: 106, Neg. LLF: 146.05864269319468
Iteration: 10, Func. Count: 117, Neg. LLF: 145.68693510194626
Iteration: 11, Func. Count: 128, Neg. LLF: 145.42721363851433
Iteration: 12, Func. Count: 139, Neg. LLF: 145.33860767629974
Iteration: 13, Func. Count: 150, Neg. LLF: 145.25328923251604
Iteration: 14, Func. Count: 161, Neg. LLF: 145.24354365362584
Iteration: 15, Func. Count: 172, Neg. LLF: 145.2378247608234
Iteration: 16, Func. Count: 183, Neg. LLF: 145.23102425535728
Iteration: 17, Func. Count: 194, Neg. LLF: 145.22752550281467
Iteration: 18, Func. Count: 205, Neg. LLF: 145.22713435309987
Iteration: 19, Func. Count: 216, Neg. LLF: 145.22712084983704
Iteration: 20, Func. Count: 227, Neg. LLF: 145.2271096679075
Iteration: 21, Func. Count: 237, Neg. LLF: 145.22710964885576
Optimization terminated successfully (Exit mode 0)
Current function value: 145.2271096679075
Iterations: 21
Function evaluations: 237
Gradient evaluations: 21
Iteration: 1, Func. Count: 13, Neg. LLF: 200.07666387927082
Iteration: 2, Func. Count: 27, Neg. LLF: 167.22268546334587
Iteration: 3, Func. Count: 41, Neg. LLF: 156.3397809799583
Iteration: 4, Func. Count: 54, Neg. LLF: 183.77556660496282
Iteration: 5, Func. Count: 67, Neg. LLF: 147.68388474274775
Iteration: 6, Func. Count: 79, Neg. LLF: 153.07253162134896
Iteration: 7, Func. Count: 92, Neg. LLF: 147.73426279745414
Iteration: 8, Func. Count: 105, Neg. LLF: 146.5307552038331
Iteration: 9, Func. Count: 118, Neg. LLF: 145.77419824516193
Iteration: 10, Func. Count: 130, Neg. LLF: 145.29773598575588
Iteration: 11, Func. Count: 142, Neg. LLF: 145.2777593180593
Iteration: 12, Func. Count: 154, Neg. LLF: 145.23752900340102
Iteration: 13, Func. Count: 166, Neg. LLF: 145.23022114626983
Iteration: 14, Func. Count: 178, Neg. LLF: 145.2295842703477
Iteration: 15, Func. Count: 190, Neg. LLF: 145.22920274167637
Iteration: 16, Func. Count: 202, Neg. LLF: 145.22863570229808
Iteration: 17, Func. Count: 214, Neg. LLF: 145.2282927215863
Iteration: 18, Func. Count: 226, Neg. LLF: 145.22816069711612
Iteration: 19, Func. Count: 238, Neg. LLF: 145.22810840336967
Iteration: 20, Func. Count: 250, Neg. LLF: 145.22802268845726
Iteration: 21, Func. Count: 262, Neg. LLF: 145.22784418666416
Iteration: 22, Func. Count: 274, Neg. LLF: 145.2275569664157
Iteration: 23, Func. Count: 286, Neg. LLF: 145.22726808450253
Iteration: 24, Func. Count: 298, Neg. LLF: 145.2271283475659
Iteration: 25, Func. Count: 310, Neg. LLF: 145.2271099013603
Iteration: 26, Func. Count: 322, Neg. LLF: 145.22710929081552
Optimization terminated successfully (Exit mode 0)
Current function value: 145.22710929081552
Iterations: 26
Function evaluations: 322
Gradient evaluations: 26
Iteration: 1, Func. Count: 14, Neg. LLF: 193.4517220581037
Iteration: 2, Func. Count: 28, Neg. LLF: 152.1860746930554
Iteration: 3, Func. Count: 42, Neg. LLF: 147.2783708621659
Iteration: 4, Func. Count: 56, Neg. LLF: 146.51003331787805
Iteration: 5, Func. Count: 69, Neg. LLF: 146.35270210198024
Iteration: 6, Func. Count: 82, Neg. LLF: 148.84641684691405
Iteration: 7, Func. Count: 98, Neg. LLF: 202.95338452552394
Iteration: 8, Func. Count: 112, Neg. LLF: 145.53565159482707
Iteration: 9, Func. Count: 126, Neg. LLF: 145.25793325683242
Iteration: 10, Func. Count: 139, Neg. LLF: 145.24661650903218
Iteration: 11, Func. Count: 152, Neg. LLF: 145.2403792542397
Iteration: 12, Func. Count: 165, Neg. LLF: 145.23667478341028
Iteration: 13, Func. Count: 178, Neg. LLF: 145.23123594087792
Iteration: 14, Func. Count: 191, Neg. LLF: 145.22753027630247
Iteration: 15, Func. Count: 204, Neg. LLF: 145.22728677371276
Iteration: 16, Func. Count: 217, Neg. LLF: 145.22719159014605
Iteration: 17, Func. Count: 230, Neg. LLF: 145.22712068755584
Iteration: 18, Func. Count: 243, Neg. LLF: 145.22711037437153
Iteration: 19, Func. Count: 256, Neg. LLF: 145.22710930356791
Iteration: 20, Func. Count: 268, Neg. LLF: 145.2271094201815
Optimization terminated successfully (Exit mode 0)
Current function value: 145.22710930356791
Iterations: 20
Function evaluations: 268
Gradient evaluations: 20
Iteration: 1, Func. Count: 15, Neg. LLF: 193.7289534684732
Iteration: 2, Func. Count: 30, Neg. LLF: 151.1531014742791
Iteration: 3, Func. Count: 45, Neg. LLF: 148.57357869165878
Iteration: 4, Func. Count: 60, Neg. LLF: 154.8754905102147
Iteration: 5, Func. Count: 75, Neg. LLF: 145.65376099040947
Iteration: 6, Func. Count: 89, Neg. LLF: 148.47972418911993
Iteration: 7, Func. Count: 104, Neg. LLF: 145.29342509802368
Iteration: 8, Func. Count: 118, Neg. LLF: 145.26019123147606
Iteration: 9, Func. Count: 132, Neg. LLF: 145.24902081203365
Iteration: 10, Func. Count: 146, Neg. LLF: 145.24271913649946
Iteration: 11, Func. Count: 160, Neg. LLF: 145.23974109433917
Iteration: 12, Func. Count: 174, Neg. LLF: 145.2365894617749
Iteration: 13, Func. Count: 188, Neg. LLF: 145.2332880623783
Iteration: 14, Func. Count: 202, Neg. LLF: 145.22992770706497
Iteration: 15, Func. Count: 216, Neg. LLF: 145.22792109355186
Iteration: 16, Func. Count: 230, Neg. LLF: 145.2271676708215
Iteration: 17, Func. Count: 244, Neg. LLF: 145.22711168976593
Iteration: 18, Func. Count: 258, Neg. LLF: 145.22710930755818
Iteration: 19, Func. Count: 271, Neg. LLF: 145.22710938552007
Optimization terminated successfully (Exit mode 0)
Current function value: 145.22710930755818
Iterations: 19
Function evaluations: 271
Gradient evaluations: 19
Iteration: 1, Func. Count: 16, Neg. LLF: 193.62765422014422
Iteration: 2, Func. Count: 32, Neg. LLF: 150.55645937977255
Iteration: 3, Func. Count: 48, Neg. LLF: 149.05818496182098
Iteration: 4, Func. Count: 64, Neg. LLF: 148.3881995826427
Iteration: 5, Func. Count: 80, Neg. LLF: 145.34282812572678
Iteration: 6, Func. Count: 95, Neg. LLF: 152.32843731913908
Iteration: 7, Func. Count: 111, Neg. LLF: 145.41023165804987
Iteration: 8, Func. Count: 127, Neg. LLF: 145.71425000837513
Iteration: 9, Func. Count: 143, Neg. LLF: 145.16068925819934
Iteration: 10, Func. Count: 158, Neg. LLF: 145.09239648236672
Iteration: 11, Func. Count: 173, Neg. LLF: 145.07627845009162
Iteration: 12, Func. Count: 188, Neg. LLF: 145.13460005721208
Iteration: 13, Func. Count: 204, Neg. LLF: 145.01839799248546
Iteration: 14, Func. Count: 219, Neg. LLF: 144.91024786254553
Iteration: 15, Func. Count: 234, Neg. LLF: 144.86995297139123
Iteration: 16, Func. Count: 249, Neg. LLF: 144.70009575376164
Iteration: 17, Func. Count: 264, Neg. LLF: 144.57366538139175
Iteration: 18, Func. Count: 279, Neg. LLF: 144.49025307277824
Iteration: 19, Func. Count: 295, Neg. LLF: 144.35957682644164
Iteration: 20, Func. Count: 310, Neg. LLF: 308.2595246538439
Iteration: 21, Func. Count: 335, Neg. LLF: 211.62713547875023
Iteration: 22, Func. Count: 360, Neg. LLF: 151.20055202223364
Iteration: 23, Func. Count: 377, Neg. LLF: 144.58477428256063
Iteration: 24, Func. Count: 392, Neg. LLF: 144.58029866064737
Iteration: 25, Func. Count: 408, Neg. LLF: 144.79411604121833
Iteration: 26, Func. Count: 424, Neg. LLF: 144.52911666984136
Iteration: 27, Func. Count: 440, Neg. LLF: 144.55709850702794
Iteration: 28, Func. Count: 456, Neg. LLF: 144.52600798818236
Iteration: 29, Func. Count: 472, Neg. LLF: 144.5199403377807
Iteration: 30, Func. Count: 487, Neg. LLF: 144.5199332076675
Iteration: 31, Func. Count: 501, Neg. LLF: 144.51993310868747
Optimization terminated successfully (Exit mode 0)
Current function value: 144.5199332076675
Iterations: 32
Function evaluations: 501
Gradient evaluations: 31
Iteration: 1, Func. Count: 9, Neg. LLF: 153.29931640876745
Iteration: 2, Func. Count: 18, Neg. LLF: 152.60584053762568
Iteration: 3, Func. Count: 27, Neg. LLF: 148.30213475858076
Iteration: 4, Func. Count: 37, Neg. LLF: 147.5684847760112
Iteration: 5, Func. Count: 45, Neg. LLF: 149.86439928160178
Iteration: 6, Func. Count: 54, Neg. LLF: 150.0588932971381
Iteration: 7, Func. Count: 63, Neg. LLF: 158.92276464784786
Iteration: 8, Func. Count: 72, Neg. LLF: 151.0630486371541
Iteration: 9, Func. Count: 81, Neg. LLF: 146.34951208437855
Iteration: 10, Func. Count: 90, Neg. LLF: 145.459502865282
Iteration: 11, Func. Count: 98, Neg. LLF: 145.35475966935064
Iteration: 12, Func. Count: 106, Neg. LLF: 145.31377538366337
Iteration: 13, Func. Count: 114, Neg. LLF: 145.27267941073308
Iteration: 14, Func. Count: 122, Neg. LLF: 145.25222835779383
Iteration: 15, Func. Count: 130, Neg. LLF: 145.23518124164514
Iteration: 16, Func. Count: 138, Neg. LLF: 145.23107850761593
Iteration: 17, Func. Count: 146, Neg. LLF: 145.2277915691273
Iteration: 18, Func. Count: 154, Neg. LLF: 145.2271292554509
Iteration: 19, Func. Count: 162, Neg. LLF: 145.22710956615546
Iteration: 20, Func. Count: 169, Neg. LLF: 145.22710954708924
Optimization terminated successfully (Exit mode 0)
Current function value: 145.22710956615546
Iterations: 20
Function evaluations: 169
Gradient evaluations: 20
Iteration: 1, Func. Count: 5, Neg. LLF: 160.2187546426511
Iteration: 2, Func. Count: 9, Neg. LLF: 161.5338936726121
Iteration: 3, Func. Count: 14, Neg. LLF: 158.4128024444555
Iteration: 4, Func. Count: 18, Neg. LLF: 158.22088445175973
Iteration: 5, Func. Count: 22, Neg. LLF: 158.0885931275478
Iteration: 6, Func. Count: 26, Neg. LLF: 158.0850623420866
Iteration: 7, Func. Count: 30, Neg. LLF: 158.080701307098
Iteration: 8, Func. Count: 34, Neg. LLF: 158.07794656875032
Iteration: 9, Func. Count: 38, Neg. LLF: 158.076837795466
Iteration: 10, Func. Count: 42, Neg. LLF: 158.0767325821002
Iteration: 11, Func. Count: 46, Neg. LLF: 158.07672832815786
Iteration: 12, Func. Count: 49, Neg. LLF: 158.07672832816309
Optimization terminated successfully (Exit mode 0)
Current function value: 158.07672832815786
Iterations: 12
Function evaluations: 49
Gradient evaluations: 12
Iteration: 1, Func. Count: 6, Neg. LLF: 575.5026741984275
Iteration: 2, Func. Count: 12, Neg. LLF: 153.75376431157378
Iteration: 3, Func. Count: 17, Neg. LLF: 153.81592947529865
Iteration: 4, Func. Count: 23, Neg. LLF: 153.6184250511366
Iteration: 5, Func. Count: 29, Neg. LLF: 153.53989451415111
Iteration: 6, Func. Count: 34, Neg. LLF: 153.5386937464049
Iteration: 7, Func. Count: 39, Neg. LLF: 153.53865871151044
Iteration: 8, Func. Count: 43, Neg. LLF: 153.5386585882645
Optimization terminated successfully (Exit mode 0)
Current function value: 153.53865871151044
Iterations: 8
Function evaluations: 43
Gradient evaluations: 8
Iteration: 1, Func. Count: 7, Neg. LLF: 347.26879805953774
Iteration: 2, Func. Count: 14, Neg. LLF: 153.69741319629853
Iteration: 3, Func. Count: 20, Neg. LLF: 153.97732970988943
Iteration: 4, Func. Count: 27, Neg. LLF: 153.56346035028048
Iteration: 5, Func. Count: 33, Neg. LLF: 153.54150264488513
Iteration: 6, Func. Count: 39, Neg. LLF: 153.5394815912176
Iteration: 7, Func. Count: 45, Neg. LLF: 153.53866491086956
Iteration: 8, Func. Count: 51, Neg. LLF: 153.5386586163295
Iteration: 9, Func. Count: 56, Neg. LLF: 153.53865849816148
Optimization terminated successfully (Exit mode 0)
Current function value: 153.5386586163295
Iterations: 9
Function evaluations: 56
Gradient evaluations: 9
Iteration: 1, Func. Count: 8, Neg. LLF: 293.8970556076323
Iteration: 2, Func. Count: 16, Neg. LLF: 156.19936326145753
Iteration: 3, Func. Count: 24, Neg. LLF: 153.8880040444877
Iteration: 4, Func. Count: 32, Neg. LLF: 153.5885990149455
Iteration: 5, Func. Count: 39, Neg. LLF: 153.53137646529493
Iteration: 6, Func. Count: 46, Neg. LLF: 153.46455068523437
Iteration: 7, Func. Count: 53, Neg. LLF: 153.42762656324115
Iteration: 8, Func. Count: 60, Neg. LLF: 153.39618304375625
Iteration: 9, Func. Count: 67, Neg. LLF: 153.37251787239995
Iteration: 10, Func. Count: 74, Neg. LLF: 153.3642533099888
Iteration: 11, Func. Count: 81, Neg. LLF: 153.36168909526083
Iteration: 12, Func. Count: 88, Neg. LLF: 153.3613262767039
Iteration: 13, Func. Count: 95, Neg. LLF: 153.3612622363268
Iteration: 14, Func. Count: 102, Neg. LLF: 153.36125498424852
Iteration: 15, Func. Count: 108, Neg. LLF: 153.36125489509942
Optimization terminated successfully (Exit mode 0)
Current function value: 153.36125498424852
Iterations: 15
Function evaluations: 108
Gradient evaluations: 15
Iteration: 1, Func. Count: 9, Neg. LLF: 213.41963390046325
Iteration: 2, Func. Count: 18, Neg. LLF: 231.7337220608466
Iteration: 3, Func. Count: 27, Neg. LLF: 157.6231964514661
Iteration: 4, Func. Count: 36, Neg. LLF: 154.94208712977263
Iteration: 5, Func. Count: 45, Neg. LLF: 154.74309586925756
Iteration: 6, Func. Count: 54, Neg. LLF: 153.46728386257345
Iteration: 7, Func. Count: 62, Neg. LLF: 153.4478106469216
Iteration: 8, Func. Count: 70, Neg. LLF: 153.41379966509288
Iteration: 9, Func. Count: 78, Neg. LLF: 153.8028066889963
Iteration: 10, Func. Count: 87, Neg. LLF: 153.51226356282663
Iteration: 11, Func. Count: 96, Neg. LLF: 153.36723421353452
Iteration: 12, Func. Count: 104, Neg. LLF: 153.36527641011332
Iteration: 13, Func. Count: 112, Neg. LLF: 153.36438302510555
Iteration: 14, Func. Count: 120, Neg. LLF: 153.3630919681873
Iteration: 15, Func. Count: 128, Neg. LLF: 153.36233340788664
Iteration: 16, Func. Count: 136, Neg. LLF: 153.36207324061533
Iteration: 17, Func. Count: 144, Neg. LLF: 153.36206855306912
Iteration: 18, Func. Count: 152, Neg. LLF: 153.3620675256265
Iteration: 19, Func. Count: 159, Neg. LLF: 153.36206743633468
Optimization terminated successfully (Exit mode 0)
Current function value: 153.3620675256265
Iterations: 19
Function evaluations: 159
Gradient evaluations: 19
Iteration: 1, Func. Count: 6, Neg. LLF: 164.2204853346831
Iteration: 2, Func. Count: 12, Neg. LLF: 158.13976503591869
Iteration: 3, Func. Count: 18, Neg. LLF: 160.08592323770202
Iteration: 4, Func. Count: 24, Neg. LLF: 156.5510231271894
Iteration: 5, Func. Count: 29, Neg. LLF: 156.40722148987567
Iteration: 6, Func. Count: 34, Neg. LLF: 156.32843235742325
Iteration: 7, Func. Count: 39, Neg. LLF: 156.30808348377371
Iteration: 8, Func. Count: 44, Neg. LLF: 156.25650577865554
Iteration: 9, Func. Count: 49, Neg. LLF: 156.24863717965405
Iteration: 10, Func. Count: 54, Neg. LLF: 156.22545673740268
Iteration: 11, Func. Count: 59, Neg. LLF: 156.21844607255355
Iteration: 12, Func. Count: 64, Neg. LLF: 156.21657625347632
Iteration: 13, Func. Count: 69, Neg. LLF: 156.2164529402674
Iteration: 14, Func. Count: 74, Neg. LLF: 156.21644966146806
Iteration: 15, Func. Count: 78, Neg. LLF: 156.2164496614585
Optimization terminated successfully (Exit mode 0)
Current function value: 156.21644966146806
Iterations: 15
Function evaluations: 78
Gradient evaluations: 15
Iteration: 1, Func. Count: 7, Neg. LLF: 301.95204499330487
Iteration: 2, Func. Count: 14, Neg. LLF: 153.52139819129388
Iteration: 3, Func. Count: 20, Neg. LLF: 153.63398429029448
Iteration: 4, Func. Count: 27, Neg. LLF: 153.50579639916322
Iteration: 5, Func. Count: 34, Neg. LLF: 153.43966863116617
Iteration: 6, Func. Count: 41, Neg. LLF: 153.4164016997182
Iteration: 7, Func. Count: 47, Neg. LLF: 153.41633271253184
Iteration: 8, Func. Count: 53, Neg. LLF: 153.41632965713194
Iteration: 9, Func. Count: 58, Neg. LLF: 153.41632954472425
Optimization terminated successfully (Exit mode 0)
Current function value: 153.41632965713194
Iterations: 9
Function evaluations: 58
Gradient evaluations: 9
Iteration: 1, Func. Count: 8, Neg. LLF: 225.04815451157813
Iteration: 2, Func. Count: 16, Neg. LLF: 155.5942250555527
Iteration: 3, Func. Count: 24, Neg. LLF: 153.88424008801147
Iteration: 4, Func. Count: 32, Neg. LLF: 155.61365697803885
Iteration: 5, Func. Count: 40, Neg. LLF: 153.75738603397983
Iteration: 6, Func. Count: 48, Neg. LLF: 209.3021544837074
Iteration: 7, Func. Count: 57, Neg. LLF: 152.98746972545763
Iteration: 8, Func. Count: 65, Neg. LLF: 152.80680854470344
Iteration: 9, Func. Count: 73, Neg. LLF: 152.7534634842513
Iteration: 10, Func. Count: 80, Neg. LLF: 152.74838740992283
Iteration: 11, Func. Count: 87, Neg. LLF: 152.74680476331116
Iteration: 12, Func. Count: 94, Neg. LLF: 152.74576281942552
Iteration: 13, Func. Count: 101, Neg. LLF: 152.7456768773237
Iteration: 14, Func. Count: 108, Neg. LLF: 152.74566304193272
Iteration: 15, Func. Count: 114, Neg. LLF: 152.74566296542287
Optimization terminated successfully (Exit mode 0)
Current function value: 152.74566304193272
Iterations: 15
Function evaluations: 114
Gradient evaluations: 15
Iteration: 1, Func. Count: 9, Neg. LLF: 305.03302461613214
Iteration: 2, Func. Count: 18, Neg. LLF: 17860.095020272118
Iteration: 3, Func. Count: 27, Neg. LLF: 154.00399231675206
Iteration: 4, Func. Count: 36, Neg. LLF: 152.94238958853717
Iteration: 5, Func. Count: 44, Neg. LLF: 154.18728234910157
Iteration: 6, Func. Count: 54, Neg. LLF: 152.85189933336218
Iteration: 7, Func. Count: 63, Neg. LLF: 152.7478074927885
Iteration: 8, Func. Count: 71, Neg. LLF: 152.74721885620167
Iteration: 9, Func. Count: 79, Neg. LLF: 152.7460638633393
Iteration: 10, Func. Count: 87, Neg. LLF: 152.74578774747758
Iteration: 11, Func. Count: 95, Neg. LLF: 152.74566547575648
Iteration: 12, Func. Count: 103, Neg. LLF: 152.74566296506688
Iteration: 13, Func. Count: 110, Neg. LLF: 152.74566290765662
Optimization terminated successfully (Exit mode 0)
Current function value: 152.74566296506688
Iterations: 13
Function evaluations: 110
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 174.53030137916474
Iteration: 2, Func. Count: 20, Neg. LLF: 182.57048126048795
Iteration: 3, Func. Count: 30, Neg. LLF: 155.24132971693766
Iteration: 4, Func. Count: 40, Neg. LLF: 155.86849577500843
Iteration: 5, Func. Count: 50, Neg. LLF: 153.54577219838262
Iteration: 6, Func. Count: 59, Neg. LLF: 153.43215741885618
Iteration: 7, Func. Count: 69, Neg. LLF: 153.19144749081406
Iteration: 8, Func. Count: 78, Neg. LLF: 153.16648717644594
Iteration: 9, Func. Count: 87, Neg. LLF: 153.14195617780396
Iteration: 10, Func. Count: 96, Neg. LLF: 153.11689444769604
Iteration: 11, Func. Count: 105, Neg. LLF: 153.11029979852609
Iteration: 12, Func. Count: 114, Neg. LLF: 153.10881884563383
Iteration: 13, Func. Count: 123, Neg. LLF: 153.10864291154897
Iteration: 14, Func. Count: 132, Neg. LLF: 153.1085466112055
Iteration: 15, Func. Count: 141, Neg. LLF: 153.10854519791778
Iteration: 16, Func. Count: 149, Neg. LLF: 153.10854514739356
Optimization terminated successfully (Exit mode 0)
Current function value: 153.10854519791778
Iterations: 16
Function evaluations: 149
Gradient evaluations: 16
Iteration: 1, Func. Count: 7, Neg. LLF: 163.6412844270598
Iteration: 2, Func. Count: 14, Neg. LLF: 158.16821613307133
Iteration: 3, Func. Count: 21, Neg. LLF: 159.32347001219088
Iteration: 4, Func. Count: 28, Neg. LLF: 157.33198685218431
Iteration: 5, Func. Count: 36, Neg. LLF: 156.45757662760585
Iteration: 6, Func. Count: 42, Neg. LLF: 156.35934926348926
Iteration: 7, Func. Count: 48, Neg. LLF: 156.30556908388175
Iteration: 8, Func. Count: 54, Neg. LLF: 156.2813203523876
Iteration: 9, Func. Count: 60, Neg. LLF: 156.23673300282746
Iteration: 10, Func. Count: 66, Neg. LLF: 156.22299755188038
Iteration: 11, Func. Count: 72, Neg. LLF: 156.21200058442582
Iteration: 12, Func. Count: 78, Neg. LLF: 156.18628650766905
Iteration: 13, Func. Count: 84, Neg. LLF: 156.18516006458813
Iteration: 14, Func. Count: 90, Neg. LLF: 156.18504859641286
Iteration: 15, Func. Count: 96, Neg. LLF: 156.18504678131717
Iteration: 16, Func. Count: 101, Neg. LLF: 156.18504678131768
Optimization terminated successfully (Exit mode 0)
Current function value: 156.18504678131717
Iterations: 16
Function evaluations: 101
Gradient evaluations: 16
Iteration: 1, Func. Count: 8, Neg. LLF: 419.5952372347448
Iteration: 2, Func. Count: 16, Neg. LLF: 153.90900169459363
Iteration: 3, Func. Count: 24, Neg. LLF: 153.3238543382954
Iteration: 4, Func. Count: 32, Neg. LLF: 153.23344230203224
Iteration: 5, Func. Count: 40, Neg. LLF: 153.08451665490293
Iteration: 6, Func. Count: 47, Neg. LLF: 153.07777603890196
Iteration: 7, Func. Count: 54, Neg. LLF: 153.0773457215345
Iteration: 8, Func. Count: 61, Neg. LLF: 153.07727357203663
Iteration: 9, Func. Count: 67, Neg. LLF: 153.0772734993779
Optimization terminated successfully (Exit mode 0)
Current function value: 153.07727357203663
Iterations: 9
Function evaluations: 67
Gradient evaluations: 9
Iteration: 1, Func. Count: 9, Neg. LLF: 209.13959430984184
Iteration: 2, Func. Count: 18, Neg. LLF: 155.8178649931072
Iteration: 3, Func. Count: 27, Neg. LLF: 154.97704164982298
Iteration: 4, Func. Count: 36, Neg. LLF: 154.9713438833618
Iteration: 5, Func. Count: 45, Neg. LLF: 154.98760958303885
Iteration: 6, Func. Count: 54, Neg. LLF: 153.61233916238433
Iteration: 7, Func. Count: 63, Neg. LLF: 1555.134664497413
Iteration: 8, Func. Count: 73, Neg. LLF: 153.04873670199993
Iteration: 9, Func. Count: 82, Neg. LLF: 152.87956638179088
Iteration: 10, Func. Count: 91, Neg. LLF: 152.69028212874238
Iteration: 11, Func. Count: 99, Neg. LLF: 152.69181177513468
Iteration: 12, Func. Count: 108, Neg. LLF: 152.66140417374422
Iteration: 13, Func. Count: 116, Neg. LLF: 152.65946521619207
Iteration: 14, Func. Count: 124, Neg. LLF: 152.65826796196606
Iteration: 15, Func. Count: 132, Neg. LLF: 152.65189873224736
Iteration: 16, Func. Count: 140, Neg. LLF: 152.64345448217145
Iteration: 17, Func. Count: 148, Neg. LLF: 152.6406541831384
Iteration: 18, Func. Count: 156, Neg. LLF: 152.6400023663575
Iteration: 19, Func. Count: 164, Neg. LLF: 152.63996128343553
Iteration: 20, Func. Count: 172, Neg. LLF: 152.63995885328302
Iteration: 21, Func. Count: 179, Neg. LLF: 152.63995879332543
Optimization terminated successfully (Exit mode 0)
Current function value: 152.63995885328302
Iterations: 21
Function evaluations: 179
Gradient evaluations: 21
Iteration: 1, Func. Count: 10, Neg. LLF: 281.42028753935955
Iteration: 2, Func. Count: 20, Neg. LLF: 10862045.28567606
Iteration: 3, Func. Count: 30, Neg. LLF: 154.60920028954297
Iteration: 4, Func. Count: 40, Neg. LLF: 153.4090140830847
Iteration: 5, Func. Count: 49, Neg. LLF: 153.0312651306584
Iteration: 6, Func. Count: 58, Neg. LLF: 152.86000834698746
Iteration: 7, Func. Count: 67, Neg. LLF: 161.93276414835688
Iteration: 8, Func. Count: 78, Neg. LLF: 153.55188452072716
Iteration: 9, Func. Count: 88, Neg. LLF: 152.7175496463412
Iteration: 10, Func. Count: 97, Neg. LLF: 152.66075272012407
Iteration: 11, Func. Count: 106, Neg. LLF: 152.64889799968347
Iteration: 12, Func. Count: 115, Neg. LLF: 152.64216212861052
Iteration: 13, Func. Count: 124, Neg. LLF: 152.6404979137037
Iteration: 14, Func. Count: 133, Neg. LLF: 152.64010308633803
Iteration: 15, Func. Count: 142, Neg. LLF: 152.63998379806716
Iteration: 16, Func. Count: 151, Neg. LLF: 152.63996041408342
Iteration: 17, Func. Count: 160, Neg. LLF: 152.63995881594232
Iteration: 18, Func. Count: 168, Neg. LLF: 152.6399587967743
Optimization terminated successfully (Exit mode 0)
Current function value: 152.63995881594232
Iterations: 18
Function evaluations: 168
Gradient evaluations: 18
Iteration: 1, Func. Count: 11, Neg. LLF: 172.92968245842448
Iteration: 2, Func. Count: 22, Neg. LLF: 159.14248849932522
Iteration: 3, Func. Count: 33, Neg. LLF: 155.37683867244948
Iteration: 4, Func. Count: 44, Neg. LLF: 165.0566937405329
Iteration: 5, Func. Count: 55, Neg. LLF: 153.3019345634937
Iteration: 6, Func. Count: 65, Neg. LLF: 153.1978898895422
Iteration: 7, Func. Count: 75, Neg. LLF: 153.18174984245508
Iteration: 8, Func. Count: 85, Neg. LLF: 153.14102068228357
Iteration: 9, Func. Count: 95, Neg. LLF: 153.12049621528448
Iteration: 10, Func. Count: 105, Neg. LLF: 153.11061413223473
Iteration: 11, Func. Count: 115, Neg. LLF: 153.10873727235165
Iteration: 12, Func. Count: 125, Neg. LLF: 153.10874288235863
Iteration: 13, Func. Count: 136, Neg. LLF: 153.1085452336477
Iteration: 14, Func. Count: 145, Neg. LLF: 153.10854518303367
Optimization terminated successfully (Exit mode 0)
Current function value: 153.1085452336477
Iterations: 14
Function evaluations: 145
Gradient evaluations: 14
Iteration: 1, Func. Count: 8, Neg. LLF: 158.97125012859394
Iteration: 2, Func. Count: 16, Neg. LLF: 156.12781076279285
Iteration: 3, Func. Count: 24, Neg. LLF: 155.11560722660747
Iteration: 4, Func. Count: 33, Neg. LLF: 153.66929412651268
Iteration: 5, Func. Count: 40, Neg. LLF: 155.30950329788143
Iteration: 6, Func. Count: 48, Neg. LLF: 153.4690567829727
Iteration: 7, Func. Count: 55, Neg. LLF: 153.34395105909493
Iteration: 8, Func. Count: 62, Neg. LLF: 153.24806599868583
Iteration: 9, Func. Count: 69, Neg. LLF: 152.87103074167314
Iteration: 10, Func. Count: 76, Neg. LLF: 152.8616323437487
Iteration: 11, Func. Count: 83, Neg. LLF: 152.85920328373368
Iteration: 12, Func. Count: 90, Neg. LLF: 152.85839519432514
Iteration: 13, Func. Count: 97, Neg. LLF: 152.8576783902715
Iteration: 14, Func. Count: 104, Neg. LLF: 152.8575437000136
Iteration: 15, Func. Count: 111, Neg. LLF: 152.85753021710977
Iteration: 16, Func. Count: 117, Neg. LLF: 152.85753021622793
Optimization terminated successfully (Exit mode 0)
Current function value: 152.85753021710977
Iterations: 16
Function evaluations: 117
Gradient evaluations: 16
Iteration: 1, Func. Count: 9, Neg. LLF: 378.12346145583126
Iteration: 2, Func. Count: 18, Neg. LLF: 182.97380761545614
Iteration: 3, Func. Count: 27, Neg. LLF: 151.4065583619239
Iteration: 4, Func. Count: 35, Neg. LLF: 189.19770155199217
Iteration: 5, Func. Count: 44, Neg. LLF: 152.01274358459284
Iteration: 6, Func. Count: 53, Neg. LLF: 151.92242968380867
Iteration: 7, Func. Count: 62, Neg. LLF: 150.35306144821763
Iteration: 8, Func. Count: 70, Neg. LLF: 150.22154103853885
Iteration: 9, Func. Count: 78, Neg. LLF: 150.21770765972715
Iteration: 10, Func. Count: 87, Neg. LLF: 150.20711309975187
Iteration: 11, Func. Count: 95, Neg. LLF: 150.20570699307476
Iteration: 12, Func. Count: 103, Neg. LLF: 150.20535495015832
Iteration: 13, Func. Count: 111, Neg. LLF: 150.2052394960027
Iteration: 14, Func. Count: 119, Neg. LLF: 150.2052343863589
Iteration: 15, Func. Count: 126, Neg. LLF: 150.2052343333628
Optimization terminated successfully (Exit mode 0)
Current function value: 150.2052343863589
Iterations: 15
Function evaluations: 126
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 204.82534258973334
Iteration: 2, Func. Count: 20, Neg. LLF: 493.8092965854976
Iteration: 3, Func. Count: 30, Neg. LLF: 153.03419377938073
Iteration: 4, Func. Count: 40, Neg. LLF: 151.47686239136294
Iteration: 5, Func. Count: 49, Neg. LLF: 151.41542906346024
Iteration: 6, Func. Count: 59, Neg. LLF: 234.1741401457369
Iteration: 7, Func. Count: 70, Neg. LLF: 150.63862262075574
Iteration: 8, Func. Count: 79, Neg. LLF: 150.38853392774124
Iteration: 9, Func. Count: 88, Neg. LLF: 150.22430210394373
Iteration: 10, Func. Count: 97, Neg. LLF: 150.208155215729
Iteration: 11, Func. Count: 106, Neg. LLF: 150.2057704313712
Iteration: 12, Func. Count: 115, Neg. LLF: 150.20537578197195
Iteration: 13, Func. Count: 124, Neg. LLF: 150.20528167397066
Iteration: 14, Func. Count: 133, Neg. LLF: 150.2052398111278
Iteration: 15, Func. Count: 142, Neg. LLF: 150.2052346537323
Iteration: 16, Func. Count: 150, Neg. LLF: 150.20523463154154
Optimization terminated successfully (Exit mode 0)
Current function value: 150.2052346537323
Iterations: 16
Function evaluations: 150
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 194.80281992061248
Iteration: 2, Func. Count: 22, Neg. LLF: 204.7007649925154
Iteration: 3, Func. Count: 33, Neg. LLF: 189.78706818672083
Iteration: 4, Func. Count: 44, Neg. LLF: 175.1497976401434
Iteration: 5, Func. Count: 55, Neg. LLF: 153.55050423634015
Iteration: 6, Func. Count: 66, Neg. LLF: 151.52924880206535
Iteration: 7, Func. Count: 76, Neg. LLF: 150.46749552098808
Iteration: 8, Func. Count: 86, Neg. LLF: 150.36014293523635
Iteration: 9, Func. Count: 96, Neg. LLF: 150.3422743484081
Iteration: 10, Func. Count: 107, Neg. LLF: 150.22827320402573
Iteration: 11, Func. Count: 117, Neg. LLF: 150.21934798274228
Iteration: 12, Func. Count: 127, Neg. LLF: 150.20842306854126
Iteration: 13, Func. Count: 137, Neg. LLF: 150.20538405782276
Iteration: 14, Func. Count: 147, Neg. LLF: 150.2052403604817
Iteration: 15, Func. Count: 157, Neg. LLF: 150.20523427821539
Iteration: 16, Func. Count: 166, Neg. LLF: 150.20523426229352
Optimization terminated successfully (Exit mode 0)
Current function value: 150.20523427821539
Iterations: 16
Function evaluations: 166
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 191.02328486471202
Iteration: 2, Func. Count: 24, Neg. LLF: 228.800971578842
Iteration: 3, Func. Count: 36, Neg. LLF: 194.64225517930956
Iteration: 4, Func. Count: 48, Neg. LLF: 153.96170449008787
Iteration: 5, Func. Count: 60, Neg. LLF: 152.48720203446788
Iteration: 6, Func. Count: 72, Neg. LLF: 151.0528467898902
Iteration: 7, Func. Count: 83, Neg. LLF: 151.30573098162486
Iteration: 8, Func. Count: 95, Neg. LLF: 150.62151487420493
Iteration: 9, Func. Count: 106, Neg. LLF: 150.40496982711943
Iteration: 10, Func. Count: 117, Neg. LLF: 150.300416678562
Iteration: 11, Func. Count: 128, Neg. LLF: 150.2635068686119
Iteration: 12, Func. Count: 139, Neg. LLF: 150.2123928748814
Iteration: 13, Func. Count: 150, Neg. LLF: 150.20559600846013
Iteration: 14, Func. Count: 161, Neg. LLF: 150.20524040874426
Iteration: 15, Func. Count: 172, Neg. LLF: 150.2052351628841
Iteration: 16, Func. Count: 183, Neg. LLF: 150.20523427290357
Optimization terminated successfully (Exit mode 0)
Current function value: 150.20523427290357
Iterations: 16
Function evaluations: 183
Gradient evaluations: 16
Iteration: 1, Func. Count: 5, Neg. LLF: 157.04796057284182
Iteration: 2, Func. Count: 9, Neg. LLF: 156.99565355447254
Iteration: 3, Func. Count: 13, Neg. LLF: 156.76820284937585
Iteration: 4, Func. Count: 17, Neg. LLF: 156.61067287219416
Iteration: 5, Func. Count: 21, Neg. LLF: 156.5034467465216
Iteration: 6, Func. Count: 25, Neg. LLF: 156.33264392476121
Iteration: 7, Func. Count: 29, Neg. LLF: 156.32971997717374
Iteration: 8, Func. Count: 33, Neg. LLF: 156.32959206611832
Iteration: 9, Func. Count: 36, Neg. LLF: 156.32959208565504
Optimization terminated successfully (Exit mode 0)
Current function value: 156.32959206611832
Iterations: 9
Function evaluations: 36
Gradient evaluations: 9
Iteration: 1, Func. Count: 6, Neg. LLF: 179.17913946615897
Iteration: 2, Func. Count: 12, Neg. LLF: 161.1803509460938
Iteration: 3, Func. Count: 18, Neg. LLF: 156.60981171058853
Iteration: 4, Func. Count: 23, Neg. LLF: 156.4075055207912
Iteration: 5, Func. Count: 28, Neg. LLF: 156.40700390140108
Iteration: 6, Func. Count: 33, Neg. LLF: 156.40678936914304
Iteration: 7, Func. Count: 38, Neg. LLF: 156.40672208023227
Iteration: 8, Func. Count: 42, Neg. LLF: 156.40672195531158
Optimization terminated successfully (Exit mode 0)
Current function value: 156.40672208023227
Iterations: 8
Function evaluations: 42
Gradient evaluations: 8
Iteration: 1, Func. Count: 7, Neg. LLF: 167.26300802540015
Iteration: 2, Func. Count: 14, Neg. LLF: 156.86085239355185
Iteration: 3, Func. Count: 21, Neg. LLF: 156.3894910153471
Iteration: 4, Func. Count: 27, Neg. LLF: 160.02570374964077
Iteration: 5, Func. Count: 34, Neg. LLF: 158.53033674345673
Iteration: 6, Func. Count: 41, Neg. LLF: 156.1528087196299
Iteration: 7, Func. Count: 48, Neg. LLF: 156.08384119382583
Iteration: 8, Func. Count: 54, Neg. LLF: 156.08288350381466
Iteration: 9, Func. Count: 60, Neg. LLF: 156.08269905465136
Iteration: 10, Func. Count: 66, Neg. LLF: 156.08180540603567
Iteration: 11, Func. Count: 72, Neg. LLF: 156.08100683388471
Iteration: 12, Func. Count: 78, Neg. LLF: 156.08045105930933
Iteration: 13, Func. Count: 84, Neg. LLF: 156.080241961281
Iteration: 14, Func. Count: 90, Neg. LLF: 156.08023894260734
Iteration: 15, Func. Count: 95, Neg. LLF: 156.0802388495406
Optimization terminated successfully (Exit mode 0)
Current function value: 156.08023894260734
Iterations: 15
Function evaluations: 95
Gradient evaluations: 15
Iteration: 1, Func. Count: 8, Neg. LLF: 165.40883137512557
Iteration: 2, Func. Count: 16, Neg. LLF: 155.09917676972216
Iteration: 3, Func. Count: 23, Neg. LLF: 154.85397691876554
Iteration: 4, Func. Count: 31, Neg. LLF: 154.976350862029
Iteration: 5, Func. Count: 39, Neg. LLF: 154.49544595260784
Iteration: 6, Func. Count: 46, Neg. LLF: 154.46696395833857
Iteration: 7, Func. Count: 53, Neg. LLF: 154.46511238562834
Iteration: 8, Func. Count: 60, Neg. LLF: 154.46393861704024
Iteration: 9, Func. Count: 67, Neg. LLF: 154.4639283866469
Iteration: 10, Func. Count: 74, Neg. LLF: 154.463926960143
Iteration: 11, Func. Count: 81, Neg. LLF: 154.4639246239284
Iteration: 12, Func. Count: 87, Neg. LLF: 154.46392455434835
Optimization terminated successfully (Exit mode 0)
Current function value: 154.4639246239284
Iterations: 12
Function evaluations: 87
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 164.67376938419267
Iteration: 2, Func. Count: 18, Neg. LLF: 155.12163183764903
Iteration: 3, Func. Count: 26, Neg. LLF: 154.6054662837574
Iteration: 4, Func. Count: 34, Neg. LLF: 155.17637042213755
Iteration: 5, Func. Count: 43, Neg. LLF: 154.50599887980277
Iteration: 6, Func. Count: 51, Neg. LLF: 154.4712845390258
Iteration: 7, Func. Count: 59, Neg. LLF: 154.4640286261027
Iteration: 8, Func. Count: 67, Neg. LLF: 154.46393202420674
Iteration: 9, Func. Count: 75, Neg. LLF: 154.46392812302415
Iteration: 10, Func. Count: 83, Neg. LLF: 154.46392640136872
Iteration: 11, Func. Count: 91, Neg. LLF: 154.46392481441288
Iteration: 12, Func. Count: 98, Neg. LLF: 154.4639248393534
Optimization terminated successfully (Exit mode 0)
Current function value: 154.46392481441288
Iterations: 12
Function evaluations: 98
Gradient evaluations: 12
Iteration: 1, Func. Count: 6, Neg. LLF: 158.66142877562905
Iteration: 2, Func. Count: 12, Neg. LLF: 156.59912656873084
Iteration: 3, Func. Count: 18, Neg. LLF: 155.76715506997658
Iteration: 4, Func. Count: 23, Neg. LLF: 155.46814028296905
Iteration: 5, Func. Count: 28, Neg. LLF: 155.42774196624796
Iteration: 6, Func. Count: 33, Neg. LLF: 155.33364372935355
Iteration: 7, Func. Count: 38, Neg. LLF: 155.16564146823785
Iteration: 8, Func. Count: 43, Neg. LLF: 155.05595145508826
Iteration: 9, Func. Count: 48, Neg. LLF: 155.0126852130892
Iteration: 10, Func. Count: 53, Neg. LLF: 155.01151948872462
Iteration: 11, Func. Count: 58, Neg. LLF: 155.01147354030073
Iteration: 12, Func. Count: 63, Neg. LLF: 155.01147240412215
Iteration: 13, Func. Count: 67, Neg. LLF: 155.01147239378466
Optimization terminated successfully (Exit mode 0)
Current function value: 155.01147240412215
Iterations: 13
Function evaluations: 67
Gradient evaluations: 13
Iteration: 1, Func. Count: 7, Neg. LLF: 576.6650864163319
Iteration: 2, Func. Count: 14, Neg. LLF: 153.68944049138076
Iteration: 3, Func. Count: 20, Neg. LLF: 153.77004783371083
Iteration: 4, Func. Count: 27, Neg. LLF: 153.60805079372636
Iteration: 5, Func. Count: 34, Neg. LLF: 153.59524298429739
Iteration: 6, Func. Count: 41, Neg. LLF: 153.5560530567013
Iteration: 7, Func. Count: 48, Neg. LLF: 153.53866893789203
Iteration: 8, Func. Count: 54, Neg. LLF: 153.53865922283043
Iteration: 9, Func. Count: 60, Neg. LLF: 153.5386586025079
Optimization terminated successfully (Exit mode 0)
Current function value: 153.5386586025079
Iterations: 9
Function evaluations: 60
Gradient evaluations: 9
Iteration: 1, Func. Count: 8, Neg. LLF: 349.4552304274515
Iteration: 2, Func. Count: 16, Neg. LLF: 153.83918637634784
Iteration: 3, Func. Count: 23, Neg. LLF: 154.0373880399175
Iteration: 4, Func. Count: 31, Neg. LLF: 153.68404361479054
Iteration: 5, Func. Count: 39, Neg. LLF: 153.7336602895271
Iteration: 6, Func. Count: 47, Neg. LLF: 155.03753668971547
Iteration: 7, Func. Count: 55, Neg. LLF: 153.55136200659953
Iteration: 8, Func. Count: 62, Neg. LLF: 153.53927964571292
Iteration: 9, Func. Count: 69, Neg. LLF: 153.53877378156432
Iteration: 10, Func. Count: 76, Neg. LLF: 153.53866509738884
Iteration: 11, Func. Count: 83, Neg. LLF: 153.53865860224846
Iteration: 12, Func. Count: 89, Neg. LLF: 153.5386584840815
Optimization terminated successfully (Exit mode 0)
Current function value: 153.53865860224846
Iterations: 12
Function evaluations: 89
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 318.1721032970803
Iteration: 2, Func. Count: 18, Neg. LLF: 156.4637775183315
Iteration: 3, Func. Count: 27, Neg. LLF: 153.92304459822859
Iteration: 4, Func. Count: 36, Neg. LLF: 153.22887363010508
Iteration: 5, Func. Count: 44, Neg. LLF: 154.088394810904
Iteration: 6, Func. Count: 53, Neg. LLF: 153.27719388387064
Iteration: 7, Func. Count: 62, Neg. LLF: 153.2460541128569
Iteration: 8, Func. Count: 71, Neg. LLF: 153.07094194249277
Iteration: 9, Func. Count: 79, Neg. LLF: 153.06927568327367
Iteration: 10, Func. Count: 87, Neg. LLF: 153.06775032219537
Iteration: 11, Func. Count: 95, Neg. LLF: 153.0675840418135
Iteration: 12, Func. Count: 103, Neg. LLF: 153.06756253293216
Iteration: 13, Func. Count: 111, Neg. LLF: 153.06756057162104
Iteration: 14, Func. Count: 118, Neg. LLF: 153.06756049929106
Optimization terminated successfully (Exit mode 0)
Current function value: 153.06756057162104
Iterations: 14
Function evaluations: 118
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 217.63138724613754
Iteration: 2, Func. Count: 20, Neg. LLF: 155.5866618461523
Iteration: 3, Func. Count: 30, Neg. LLF: 209.25624359492113
Iteration: 4, Func. Count: 41, Neg. LLF: 154.53148277703772
Iteration: 5, Func. Count: 51, Neg. LLF: 155.15875048189773
Iteration: 6, Func. Count: 61, Neg. LLF: 153.12687676070888
Iteration: 7, Func. Count: 71, Neg. LLF: 152.57637552302091
Iteration: 8, Func. Count: 80, Neg. LLF: 154.00339939939323
Iteration: 9, Func. Count: 91, Neg. LLF: 152.53928130247493
Iteration: 10, Func. Count: 100, Neg. LLF: 152.52720254147306
Iteration: 11, Func. Count: 109, Neg. LLF: 152.52014110535225
Iteration: 12, Func. Count: 118, Neg. LLF: 152.51554149966796
Iteration: 13, Func. Count: 127, Neg. LLF: 152.51318353303543
Iteration: 14, Func. Count: 136, Neg. LLF: 152.5127775755088
Iteration: 15, Func. Count: 145, Neg. LLF: 152.51232994501288
Iteration: 16, Func. Count: 154, Neg. LLF: 152.51219969592015
Iteration: 17, Func. Count: 163, Neg. LLF: 152.5121483384403
Iteration: 18, Func. Count: 172, Neg. LLF: 152.5121459877396
Iteration: 19, Func. Count: 180, Neg. LLF: 152.51214589728224
Optimization terminated successfully (Exit mode 0)
Current function value: 152.5121459877396
Iterations: 19
Function evaluations: 180
Gradient evaluations: 19
Iteration: 1, Func. Count: 7, Neg. LLF: 160.32656695563762
Iteration: 2, Func. Count: 14, Neg. LLF: 157.1667887682239
Iteration: 3, Func. Count: 22, Neg. LLF: 158.06737085085203
Iteration: 4, Func. Count: 29, Neg. LLF: 155.35938272353408
Iteration: 5, Func. Count: 35, Neg. LLF: 159.57438885986778
Iteration: 6, Func. Count: 42, Neg. LLF: 155.0314530422995
Iteration: 7, Func. Count: 48, Neg. LLF: 154.95065715167522
Iteration: 8, Func. Count: 54, Neg. LLF: 154.6016374026815
Iteration: 9, Func. Count: 60, Neg. LLF: 154.1143692438036
Iteration: 10, Func. Count: 66, Neg. LLF: 154.00572349254756
Iteration: 11, Func. Count: 72, Neg. LLF: 153.9370850456682
Iteration: 12, Func. Count: 78, Neg. LLF: 153.90608812068209
Iteration: 13, Func. Count: 84, Neg. LLF: 153.90111851925514
Iteration: 14, Func. Count: 90, Neg. LLF: 153.90053714168965
Iteration: 15, Func. Count: 96, Neg. LLF: 153.90051494800707
Iteration: 16, Func. Count: 102, Neg. LLF: 153.90051224424178
Iteration: 17, Func. Count: 107, Neg. LLF: 153.90051222431484
Optimization terminated successfully (Exit mode 0)
Current function value: 153.90051224424178
Iterations: 17
Function evaluations: 107
Gradient evaluations: 17
Iteration: 1, Func. Count: 8, Neg. LLF: 311.401985493919
Iteration: 2, Func. Count: 16, Neg. LLF: 153.53494942631315
Iteration: 3, Func. Count: 23, Neg. LLF: 153.71934045955936
Iteration: 4, Func. Count: 31, Neg. LLF: 153.45229916592817
Iteration: 5, Func. Count: 38, Neg. LLF: 153.4464752440527
Iteration: 6, Func. Count: 46, Neg. LLF: 153.42171954926235
Iteration: 7, Func. Count: 54, Neg. LLF: 153.4164651820948
Iteration: 8, Func. Count: 61, Neg. LLF: 153.41633000248117
Iteration: 9, Func. Count: 67, Neg. LLF: 153.4163298902163
Optimization terminated successfully (Exit mode 0)
Current function value: 153.41633000248117
Iterations: 9
Function evaluations: 67
Gradient evaluations: 9
Iteration: 1, Func. Count: 9, Neg. LLF: 237.47549164665475
Iteration: 2, Func. Count: 18, Neg. LLF: 155.7068814436977
Iteration: 3, Func. Count: 27, Neg. LLF: 155.4398836556852
Iteration: 4, Func. Count: 36, Neg. LLF: 153.97186395849664
Iteration: 5, Func. Count: 45, Neg. LLF: 153.81202809426745
Iteration: 6, Func. Count: 54, Neg. LLF: 153.36510619342548
Iteration: 7, Func. Count: 63, Neg. LLF: 153.46531823570905
Iteration: 8, Func. Count: 72, Neg. LLF: 152.66370167937018
Iteration: 9, Func. Count: 80, Neg. LLF: 152.66633592871162
Iteration: 10, Func. Count: 89, Neg. LLF: 152.66061037528019
Iteration: 11, Func. Count: 98, Neg. LLF: 152.64839065598866
Iteration: 12, Func. Count: 106, Neg. LLF: 152.6460762290699
Iteration: 13, Func. Count: 114, Neg. LLF: 152.64581926645755
Iteration: 14, Func. Count: 122, Neg. LLF: 152.64566624163822
Iteration: 15, Func. Count: 130, Neg. LLF: 152.64566355126905
Iteration: 16, Func. Count: 137, Neg. LLF: 152.6456634723921
Optimization terminated successfully (Exit mode 0)
Current function value: 152.64566355126905
Iterations: 16
Function evaluations: 137
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 253.44023783204764
Iteration: 2, Func. Count: 20, Neg. LLF: 160.82486353451867
Iteration: 3, Func. Count: 30, Neg. LLF: 155.66760408113504
Iteration: 4, Func. Count: 40, Neg. LLF: 154.29855215454702
Iteration: 5, Func. Count: 50, Neg. LLF: 153.37520459320405
Iteration: 6, Func. Count: 60, Neg. LLF: 153.18627794592658
Iteration: 7, Func. Count: 70, Neg. LLF: 152.8675738278569
Iteration: 8, Func. Count: 79, Neg. LLF: 152.86445126852234
Iteration: 9, Func. Count: 88, Neg. LLF: 152.86380772870734
Iteration: 10, Func. Count: 97, Neg. LLF: 152.8637235208987
Iteration: 11, Func. Count: 106, Neg. LLF: 152.8637081472158
Iteration: 12, Func. Count: 115, Neg. LLF: 152.86370364419727
Iteration: 13, Func. Count: 123, Neg. LLF: 152.86370358181972
Optimization terminated successfully (Exit mode 0)
Current function value: 152.86370364419727
Iterations: 13
Function evaluations: 123
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 225.61582726079556
Iteration: 2, Func. Count: 22, Neg. LLF: 157.93348751649265
Iteration: 3, Func. Count: 33, Neg. LLF: 157.10604634385405
Iteration: 4, Func. Count: 44, Neg. LLF: 155.88445197338643
Iteration: 5, Func. Count: 55, Neg. LLF: 153.40285819659064
Iteration: 6, Func. Count: 66, Neg. LLF: 153.3764556339824
Iteration: 7, Func. Count: 77, Neg. LLF: 153.03380651129342
Iteration: 8, Func. Count: 88, Neg. LLF: 152.88752716348026
Iteration: 9, Func. Count: 98, Neg. LLF: 152.86633380912812
Iteration: 10, Func. Count: 108, Neg. LLF: 152.8644661758128
Iteration: 11, Func. Count: 118, Neg. LLF: 152.86383518597174
Iteration: 12, Func. Count: 128, Neg. LLF: 152.86371980233523
Iteration: 13, Func. Count: 138, Neg. LLF: 152.86370406498867
Iteration: 14, Func. Count: 148, Neg. LLF: 152.86370336931992
Optimization terminated successfully (Exit mode 0)
Current function value: 152.86370336931992
Iterations: 14
Function evaluations: 148
Gradient evaluations: 14
Iteration: 1, Func. Count: 8, Neg. LLF: 160.0111853070385
Iteration: 2, Func. Count: 16, Neg. LLF: 157.35221130343908
Iteration: 3, Func. Count: 25, Neg. LLF: 158.14864126601955
Iteration: 4, Func. Count: 34, Neg. LLF: 156.46601804218278
Iteration: 5, Func. Count: 43, Neg. LLF: 156.30802261815492
Iteration: 6, Func. Count: 51, Neg. LLF: 155.04124504956053
Iteration: 7, Func. Count: 58, Neg. LLF: 154.95101801053042
Iteration: 8, Func. Count: 65, Neg. LLF: 154.53173493794824
Iteration: 9, Func. Count: 72, Neg. LLF: 154.06017715190768
Iteration: 10, Func. Count: 79, Neg. LLF: 153.64689696683863
Iteration: 11, Func. Count: 86, Neg. LLF: 153.44241830496654
Iteration: 12, Func. Count: 93, Neg. LLF: 153.38627298873635
Iteration: 13, Func. Count: 100, Neg. LLF: 153.38243426051932
Iteration: 14, Func. Count: 107, Neg. LLF: 153.38196205118192
Iteration: 15, Func. Count: 114, Neg. LLF: 153.38194595571107
Iteration: 16, Func. Count: 121, Neg. LLF: 153.38194564389877
Optimization terminated successfully (Exit mode 0)
Current function value: 153.38194564389877
Iterations: 16
Function evaluations: 121
Gradient evaluations: 16
Iteration: 1, Func. Count: 9, Neg. LLF: 392.59213620284
Iteration: 2, Func. Count: 18, Neg. LLF: 153.78780373057523
Iteration: 3, Func. Count: 27, Neg. LLF: 153.8698535484752
Iteration: 4, Func. Count: 36, Neg. LLF: 153.3232143264396
Iteration: 5, Func. Count: 45, Neg. LLF: 153.08323370462244
Iteration: 6, Func. Count: 53, Neg. LLF: 154.71809598753194
Iteration: 7, Func. Count: 63, Neg. LLF: 153.07736790016978
Iteration: 8, Func. Count: 71, Neg. LLF: 153.07615456902715
Iteration: 9, Func. Count: 79, Neg. LLF: 153.0761218525665
Iteration: 10, Func. Count: 87, Neg. LLF: 153.07611726990513
Iteration: 11, Func. Count: 94, Neg. LLF: 153.07611719749835
Optimization terminated successfully (Exit mode 0)
Current function value: 153.07611726990513
Iterations: 11
Function evaluations: 94
Gradient evaluations: 11
Iteration: 1, Func. Count: 10, Neg. LLF: 222.80424394034566
Iteration: 2, Func. Count: 20, Neg. LLF: 153.97349121675765
Iteration: 3, Func. Count: 30, Neg. LLF: 154.6433129207971
Iteration: 4, Func. Count: 40, Neg. LLF: 153.45573352217926
Iteration: 5, Func. Count: 50, Neg. LLF: 160.19918901741917
Iteration: 6, Func. Count: 60, Neg. LLF: 153.03644347160818
Iteration: 7, Func. Count: 70, Neg. LLF: 152.72928861643555
Iteration: 8, Func. Count: 79, Neg. LLF: 152.71185990875952
Iteration: 9, Func. Count: 89, Neg. LLF: 153.23343667015916
Iteration: 10, Func. Count: 99, Neg. LLF: 152.63409192843687
Iteration: 11, Func. Count: 108, Neg. LLF: 152.63158747929342
Iteration: 12, Func. Count: 117, Neg. LLF: 152.6310412694662
Iteration: 13, Func. Count: 126, Neg. LLF: 152.63103057223606
Iteration: 14, Func. Count: 134, Neg. LLF: 152.63103050569717
Optimization terminated successfully (Exit mode 0)
Current function value: 152.63103057223606
Iterations: 14
Function evaluations: 134
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 218.3460085141183
Iteration: 2, Func. Count: 22, Neg. LLF: 154.39719420439675
Iteration: 3, Func. Count: 33, Neg. LLF: 171.47102114089856
Iteration: 4, Func. Count: 44, Neg. LLF: 155.73296588586112
Iteration: 5, Func. Count: 55, Neg. LLF: 159.7894995490587
Iteration: 6, Func. Count: 66, Neg. LLF: 153.36387607108688
Iteration: 7, Func. Count: 77, Neg. LLF: 152.9741749965957
Iteration: 8, Func. Count: 87, Neg. LLF: 153.0677680246365
Iteration: 9, Func. Count: 98, Neg. LLF: 152.8937766344289
Iteration: 10, Func. Count: 108, Neg. LLF: 152.88424425308114
Iteration: 11, Func. Count: 118, Neg. LLF: 152.86811233411316
Iteration: 12, Func. Count: 128, Neg. LLF: 152.8641495679929
Iteration: 13, Func. Count: 138, Neg. LLF: 152.86370747933424
Iteration: 14, Func. Count: 148, Neg. LLF: 152.8637037315763
Iteration: 15, Func. Count: 157, Neg. LLF: 152.86370366911925
Optimization terminated successfully (Exit mode 0)
Current function value: 152.8637037315763
Iterations: 15
Function evaluations: 157
Gradient evaluations: 15
Iteration: 1, Func. Count: 12, Neg. LLF: 183.68323589314826
Iteration: 2, Func. Count: 24, Neg. LLF: 154.29508704382178
Iteration: 3, Func. Count: 36, Neg. LLF: 153.74571591051196
Iteration: 4, Func. Count: 48, Neg. LLF: 156.6489272426375
Iteration: 5, Func. Count: 60, Neg. LLF: 157.25768280318218
Iteration: 6, Func. Count: 72, Neg. LLF: 153.05487657014655
Iteration: 7, Func. Count: 83, Neg. LLF: 152.93862318151238
Iteration: 8, Func. Count: 94, Neg. LLF: 152.91349440514443
Iteration: 9, Func. Count: 105, Neg. LLF: 152.89791777917844
Iteration: 10, Func. Count: 116, Neg. LLF: 152.8762095052899
Iteration: 11, Func. Count: 127, Neg. LLF: 152.86559672531513
Iteration: 12, Func. Count: 138, Neg. LLF: 152.86386767105412
Iteration: 13, Func. Count: 149, Neg. LLF: 152.86370871448995
Iteration: 14, Func. Count: 160, Neg. LLF: 152.86370335748504
Iteration: 15, Func. Count: 170, Neg. LLF: 152.86370331980976
Optimization terminated successfully (Exit mode 0)
Current function value: 152.86370335748504
Iterations: 15
Function evaluations: 170
Gradient evaluations: 15
Iteration: 1, Func. Count: 9, Neg. LLF: 156.00884743380786
Iteration: 2, Func. Count: 18, Neg. LLF: 155.2060501286322
Iteration: 3, Func. Count: 27, Neg. LLF: 156.359390803309
Iteration: 4, Func. Count: 36, Neg. LLF: 156.5062671673689
Iteration: 5, Func. Count: 45, Neg. LLF: 152.32886427284956
Iteration: 6, Func. Count: 53, Neg. LLF: 152.19457528935214
Iteration: 7, Func. Count: 61, Neg. LLF: 151.4771955686328
Iteration: 8, Func. Count: 69, Neg. LLF: 151.30421505807814
Iteration: 9, Func. Count: 77, Neg. LLF: 152.33190242342474
Iteration: 10, Func. Count: 86, Neg. LLF: 150.94645074211027
Iteration: 11, Func. Count: 95, Neg. LLF: 150.44013777814956
Iteration: 12, Func. Count: 103, Neg. LLF: 150.42972645140782
Iteration: 13, Func. Count: 111, Neg. LLF: 150.4223881992493
Iteration: 14, Func. Count: 119, Neg. LLF: 150.42143579408898
Iteration: 15, Func. Count: 127, Neg. LLF: 150.42135632463769
Iteration: 16, Func. Count: 135, Neg. LLF: 150.42134965470896
Iteration: 17, Func. Count: 142, Neg. LLF: 150.42134964034173
Optimization terminated successfully (Exit mode 0)
Current function value: 150.42134965470896
Iterations: 17
Function evaluations: 142
Gradient evaluations: 17
Iteration: 1, Func. Count: 10, Neg. LLF: 287.5768781606989
Iteration: 2, Func. Count: 20, Neg. LLF: 167.49063088194657
Iteration: 3, Func. Count: 30, Neg. LLF: 165.38627881444793
Iteration: 4, Func. Count: 40, Neg. LLF: 151.36601232739184
Iteration: 5, Func. Count: 49, Neg. LLF: 159.06173227573132
Iteration: 6, Func. Count: 59, Neg. LLF: 150.3650209468789
Iteration: 7, Func. Count: 68, Neg. LLF: 160.04137307759743
Iteration: 8, Func. Count: 78, Neg. LLF: 153.48148483094712
Iteration: 9, Func. Count: 88, Neg. LLF: 153.39446380141808
Iteration: 10, Func. Count: 98, Neg. LLF: 152.78148685129662
Iteration: 11, Func. Count: 108, Neg. LLF: 150.002808009796
Iteration: 12, Func. Count: 118, Neg. LLF: 149.8133220082001
Iteration: 13, Func. Count: 127, Neg. LLF: 149.8056875976582
Iteration: 14, Func. Count: 136, Neg. LLF: 149.8038041581587
Iteration: 15, Func. Count: 145, Neg. LLF: 149.80351371254278
Iteration: 16, Func. Count: 154, Neg. LLF: 149.80336106990808
Iteration: 17, Func. Count: 163, Neg. LLF: 149.80321906666066
Iteration: 18, Func. Count: 172, Neg. LLF: 149.80317928836865
Iteration: 19, Func. Count: 181, Neg. LLF: 149.8031742496548
Iteration: 20, Func. Count: 189, Neg. LLF: 149.80317419582948
Optimization terminated successfully (Exit mode 0)
Current function value: 149.8031742496548
Iterations: 20
Function evaluations: 189
Gradient evaluations: 20
Iteration: 1, Func. Count: 11, Neg. LLF: 258.5942891837721
Iteration: 2, Func. Count: 22, Neg. LLF: 288.3183428693693
Iteration: 3, Func. Count: 33, Neg. LLF: 175.88959822747196
Iteration: 4, Func. Count: 44, Neg. LLF: 151.83467419264872
Iteration: 5, Func. Count: 54, Neg. LLF: 153.26634029518374
Iteration: 6, Func. Count: 65, Neg. LLF: 152.77042584224964
Iteration: 7, Func. Count: 76, Neg. LLF: 150.54446043710888
Iteration: 8, Func. Count: 86, Neg. LLF: 150.7379733317275
Iteration: 9, Func. Count: 97, Neg. LLF: 151.9269489824589
Iteration: 10, Func. Count: 108, Neg. LLF: 150.226704368451
Iteration: 11, Func. Count: 118, Neg. LLF: 150.07774476971093
Iteration: 12, Func. Count: 128, Neg. LLF: 149.87268318611498
Iteration: 13, Func. Count: 138, Neg. LLF: 149.83519435953443
Iteration: 14, Func. Count: 148, Neg. LLF: 149.82705699894188
Iteration: 15, Func. Count: 159, Neg. LLF: 149.80513288629027
Iteration: 16, Func. Count: 169, Neg. LLF: 149.80425496344034
Iteration: 17, Func. Count: 179, Neg. LLF: 149.80359052834385
Iteration: 18, Func. Count: 189, Neg. LLF: 149.80333469948332
Iteration: 19, Func. Count: 199, Neg. LLF: 149.8032311930976
Iteration: 20, Func. Count: 209, Neg. LLF: 149.80318661757656
Iteration: 21, Func. Count: 219, Neg. LLF: 149.80317532373792
Iteration: 22, Func. Count: 229, Neg. LLF: 149.803174122401
Iteration: 23, Func. Count: 238, Neg. LLF: 149.80317413106596
Optimization terminated successfully (Exit mode 0)
Current function value: 149.803174122401
Iterations: 23
Function evaluations: 238
Gradient evaluations: 23
Iteration: 1, Func. Count: 12, Neg. LLF: 196.02774184389258
Iteration: 2, Func. Count: 24, Neg. LLF: 221.7291158898684
Iteration: 3, Func. Count: 36, Neg. LLF: 211.91555519856163
Iteration: 4, Func. Count: 48, Neg. LLF: 158.60627719148252
Iteration: 5, Func. Count: 60, Neg. LLF: 152.19918532319122
Iteration: 6, Func. Count: 72, Neg. LLF: 151.01243101254263
Iteration: 7, Func. Count: 84, Neg. LLF: 152.1800231175232
Iteration: 8, Func. Count: 96, Neg. LLF: 150.65987918519355
Iteration: 9, Func. Count: 108, Neg. LLF: 149.90683226525158
Iteration: 10, Func. Count: 119, Neg. LLF: 149.83827483415516
Iteration: 11, Func. Count: 130, Neg. LLF: 149.83333490198527
Iteration: 12, Func. Count: 141, Neg. LLF: 149.82598897912635
Iteration: 13, Func. Count: 152, Neg. LLF: 149.8105821418829
Iteration: 14, Func. Count: 163, Neg. LLF: 149.80747316235713
Iteration: 15, Func. Count: 174, Neg. LLF: 149.8046284832862
Iteration: 16, Func. Count: 185, Neg. LLF: 149.80286892255015
Iteration: 17, Func. Count: 196, Neg. LLF: 149.80272295302063
Iteration: 18, Func. Count: 207, Neg. LLF: 149.8027197195895
Iteration: 19, Func. Count: 217, Neg. LLF: 149.80271966539027
Optimization terminated successfully (Exit mode 0)
Current function value: 149.8027197195895
Iterations: 19
Function evaluations: 217
Gradient evaluations: 19
Iteration: 1, Func. Count: 13, Neg. LLF: 194.95485694669074
Iteration: 2, Func. Count: 26, Neg. LLF: 194.39797646516408
Iteration: 3, Func. Count: 39, Neg. LLF: 164.17386369447829
Iteration: 4, Func. Count: 52, Neg. LLF: 154.76214555557024
Iteration: 5, Func. Count: 65, Neg. LLF: 153.66623981649352
Iteration: 6, Func. Count: 78, Neg. LLF: 152.13616548377786
Iteration: 7, Func. Count: 91, Neg. LLF: 151.08329645896873
Iteration: 8, Func. Count: 104, Neg. LLF: 150.9799140957649
Iteration: 9, Func. Count: 117, Neg. LLF: 152.24389333318118
Iteration: 10, Func. Count: 130, Neg. LLF: 149.91119597258566
Iteration: 11, Func. Count: 142, Neg. LLF: 149.8812399257887
Iteration: 12, Func. Count: 154, Neg. LLF: 149.8740001945105
Iteration: 13, Func. Count: 166, Neg. LLF: 149.8716650961721
Iteration: 14, Func. Count: 178, Neg. LLF: 149.871408341999
Iteration: 15, Func. Count: 190, Neg. LLF: 149.87110912362897
Iteration: 16, Func. Count: 202, Neg. LLF: 149.87110702019797
Iteration: 17, Func. Count: 213, Neg. LLF: 149.87110697003567
Optimization terminated successfully (Exit mode 0)
Current function value: 149.87110702019797
Iterations: 17
Function evaluations: 213
Gradient evaluations: 17
Iteration: 1, Func. Count: 6, Neg. LLF: 158.46837430761448
Iteration: 2, Func. Count: 11, Neg. LLF: 162.27737268908737
Iteration: 3, Func. Count: 17, Neg. LLF: 156.95540611550948
Iteration: 4, Func. Count: 22, Neg. LLF: 164.685293100747
Iteration: 5, Func. Count: 28, Neg. LLF: 157.2155660376789
Iteration: 6, Func. Count: 34, Neg. LLF: 156.5594580334177
Iteration: 7, Func. Count: 39, Neg. LLF: 156.1110431851782
Iteration: 8, Func. Count: 44, Neg. LLF: 156.03780937591299
Iteration: 9, Func. Count: 49, Neg. LLF: 155.93813124492524
Iteration: 10, Func. Count: 54, Neg. LLF: 155.93080625311327
Iteration: 11, Func. Count: 59, Neg. LLF: 155.93036106440374
Iteration: 12, Func. Count: 64, Neg. LLF: 155.9303477350586
Iteration: 13, Func. Count: 68, Neg. LLF: 155.93034769300235
Optimization terminated successfully (Exit mode 0)
Current function value: 155.9303477350586
Iterations: 13
Function evaluations: 68
Gradient evaluations: 13
Iteration: 1, Func. Count: 7, Neg. LLF: 177.77892862058945
Iteration: 2, Func. Count: 14, Neg. LLF: 163.68231269562497
Iteration: 3, Func. Count: 21, Neg. LLF: 156.70523827451746
Iteration: 4, Func. Count: 27, Neg. LLF: 156.40901676884337
Iteration: 5, Func. Count: 33, Neg. LLF: 156.4070461023552
Iteration: 6, Func. Count: 39, Neg. LLF: 156.40681912414942
Iteration: 7, Func. Count: 45, Neg. LLF: 156.40675603620667
Iteration: 8, Func. Count: 51, Neg. LLF: 156.4067228157322
Iteration: 9, Func. Count: 57, Neg. LLF: 156.40672169466941
Iteration: 10, Func. Count: 62, Neg. LLF: 156.40672156961
Optimization terminated successfully (Exit mode 0)
Current function value: 156.40672169466941
Iterations: 10
Function evaluations: 62
Gradient evaluations: 10
Iteration: 1, Func. Count: 8, Neg. LLF: 169.83864752775878
Iteration: 2, Func. Count: 16, Neg. LLF: 157.89171728000105
Iteration: 3, Func. Count: 24, Neg. LLF: 156.471346430085
Iteration: 4, Func. Count: 31, Neg. LLF: 158.81251835868906
Iteration: 5, Func. Count: 39, Neg. LLF: 156.38089469517467
Iteration: 6, Func. Count: 47, Neg. LLF: 156.7225890815183
Iteration: 7, Func. Count: 55, Neg. LLF: 156.08363917758004
Iteration: 8, Func. Count: 62, Neg. LLF: 156.0825089880654
Iteration: 9, Func. Count: 69, Neg. LLF: 156.08236062240508
Iteration: 10, Func. Count: 76, Neg. LLF: 156.08158657976315
Iteration: 11, Func. Count: 83, Neg. LLF: 156.08067148554323
Iteration: 12, Func. Count: 90, Neg. LLF: 156.080361643292
Iteration: 13, Func. Count: 97, Neg. LLF: 156.08024363773143
Iteration: 14, Func. Count: 104, Neg. LLF: 156.08023907497702
Iteration: 15, Func. Count: 110, Neg. LLF: 156.0802389819185
Optimization terminated successfully (Exit mode 0)
Current function value: 156.08023907497702
Iterations: 15
Function evaluations: 110
Gradient evaluations: 15
Iteration: 1, Func. Count: 9, Neg. LLF: 168.514850826752
Iteration: 2, Func. Count: 18, Neg. LLF: 155.22134719217425
Iteration: 3, Func. Count: 26, Neg. LLF: 154.88204353091544
Iteration: 4, Func. Count: 35, Neg. LLF: 168.88678129079648
Iteration: 5, Func. Count: 45, Neg. LLF: 156.41598062117694
Iteration: 6, Func. Count: 54, Neg. LLF: 154.47225073035287
Iteration: 7, Func. Count: 62, Neg. LLF: 154.46725876293286
Iteration: 8, Func. Count: 70, Neg. LLF: 154.46459398733796
Iteration: 9, Func. Count: 78, Neg. LLF: 154.46399148367587
Iteration: 10, Func. Count: 86, Neg. LLF: 154.46395825723792
Iteration: 11, Func. Count: 94, Neg. LLF: 154.4639395444554
Iteration: 12, Func. Count: 102, Neg. LLF: 154.4639284969454
Iteration: 13, Func. Count: 110, Neg. LLF: 154.4639249039679
Iteration: 14, Func. Count: 117, Neg. LLF: 154.4639248342887
Optimization terminated successfully (Exit mode 0)
Current function value: 154.4639249039679
Iterations: 14
Function evaluations: 117
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 167.6262383686228
Iteration: 2, Func. Count: 20, Neg. LLF: 155.5563821681358
Iteration: 3, Func. Count: 29, Neg. LLF: 155.25371682986778
Iteration: 4, Func. Count: 39, Neg. LLF: 165.25584431562595
Iteration: 5, Func. Count: 49, Neg. LLF: 154.4675524839331
Iteration: 6, Func. Count: 58, Neg. LLF: 154.46506168572446
Iteration: 7, Func. Count: 67, Neg. LLF: 154.46453641587487
Iteration: 8, Func. Count: 76, Neg. LLF: 154.46401842653134
Iteration: 9, Func. Count: 85, Neg. LLF: 154.4639330930528
Iteration: 10, Func. Count: 94, Neg. LLF: 154.46392545440838
Iteration: 11, Func. Count: 102, Neg. LLF: 154.46392547937901
Optimization terminated successfully (Exit mode 0)
Current function value: 154.46392545440838
Iterations: 11
Function evaluations: 102
Gradient evaluations: 11
Iteration: 1, Func. Count: 7, Neg. LLF: 160.55267225015328
Iteration: 2, Func. Count: 14, Neg. LLF: 156.49351457250003
Iteration: 3, Func. Count: 21, Neg. LLF: 156.41468589799487
Iteration: 4, Func. Count: 28, Neg. LLF: 155.57800356552698
Iteration: 5, Func. Count: 34, Neg. LLF: 155.4398416320545
Iteration: 6, Func. Count: 40, Neg. LLF: 155.37861108918466
Iteration: 7, Func. Count: 46, Neg. LLF: 155.32983642589213
Iteration: 8, Func. Count: 52, Neg. LLF: 155.22505372546703
Iteration: 9, Func. Count: 58, Neg. LLF: 178.7392162280983
Iteration: 10, Func. Count: 65, Neg. LLF: 155.10969172752806
Iteration: 11, Func. Count: 72, Neg. LLF: 154.80394689740132
Iteration: 12, Func. Count: 78, Neg. LLF: 154.7405306521215
Iteration: 13, Func. Count: 84, Neg. LLF: 154.68980740763064
Iteration: 14, Func. Count: 90, Neg. LLF: 154.6892682348682
Iteration: 15, Func. Count: 96, Neg. LLF: 154.68899858911163
Iteration: 16, Func. Count: 102, Neg. LLF: 154.68897659970486
Iteration: 17, Func. Count: 108, Neg. LLF: 154.6889732221207
Iteration: 18, Func. Count: 113, Neg. LLF: 154.6889732037755
Optimization terminated successfully (Exit mode 0)
Current function value: 154.6889732221207
Iterations: 18
Function evaluations: 113
Gradient evaluations: 18
Iteration: 1, Func. Count: 8, Neg. LLF: 565.3066777642345
Iteration: 2, Func. Count: 16, Neg. LLF: 153.71009870837705
Iteration: 3, Func. Count: 23, Neg. LLF: 153.80433848762203
Iteration: 4, Func. Count: 31, Neg. LLF: 153.81880864289963
Iteration: 5, Func. Count: 39, Neg. LLF: 153.66450776783
Iteration: 6, Func. Count: 47, Neg. LLF: 153.54201896694516
Iteration: 7, Func. Count: 54, Neg. LLF: 153.53871898819148
Iteration: 8, Func. Count: 61, Neg. LLF: 153.53866258094837
Iteration: 9, Func. Count: 68, Neg. LLF: 153.53865867116517
Iteration: 10, Func. Count: 74, Neg. LLF: 153.53865854797826
Optimization terminated successfully (Exit mode 0)
Current function value: 153.53865867116517
Iterations: 10
Function evaluations: 74
Gradient evaluations: 10
Iteration: 1, Func. Count: 9, Neg. LLF: 353.7908068666706
Iteration: 2, Func. Count: 18, Neg. LLF: 153.7257805090936
Iteration: 3, Func. Count: 26, Neg. LLF: 153.86312901149628
Iteration: 4, Func. Count: 35, Neg. LLF: 153.74319186526043
Iteration: 5, Func. Count: 44, Neg. LLF: 156.17623542033277
Iteration: 6, Func. Count: 53, Neg. LLF: 153.56978750913078
Iteration: 7, Func. Count: 61, Neg. LLF: 153.56555594185846
Iteration: 8, Func. Count: 69, Neg. LLF: 153.5533434297312
Iteration: 9, Func. Count: 77, Neg. LLF: 153.5396621943374
Iteration: 10, Func. Count: 85, Neg. LLF: 153.5386938045206
Iteration: 11, Func. Count: 93, Neg. LLF: 153.5386587329161
Iteration: 12, Func. Count: 100, Neg. LLF: 153.5386586149714
Optimization terminated successfully (Exit mode 0)
Current function value: 153.5386587329161
Iterations: 12
Function evaluations: 100
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 340.750812642212
Iteration: 2, Func. Count: 20, Neg. LLF: 156.66909244647766
Iteration: 3, Func. Count: 30, Neg. LLF: 157.9853083541718
Iteration: 4, Func. Count: 40, Neg. LLF: 153.39589736110406
Iteration: 5, Func. Count: 49, Neg. LLF: 153.37284895010058
Iteration: 6, Func. Count: 59, Neg. LLF: 155.60405599840598
Iteration: 7, Func. Count: 69, Neg. LLF: 153.88521691112163
Iteration: 8, Func. Count: 79, Neg. LLF: 153.07359583201054
Iteration: 9, Func. Count: 88, Neg. LLF: 153.06848309503047
Iteration: 10, Func. Count: 97, Neg. LLF: 153.0677202098991
Iteration: 11, Func. Count: 106, Neg. LLF: 153.0675685276745
Iteration: 12, Func. Count: 115, Neg. LLF: 153.06756096310033
Iteration: 13, Func. Count: 124, Neg. LLF: 153.06756044507068
Optimization terminated successfully (Exit mode 0)
Current function value: 153.06756044507068
Iterations: 13
Function evaluations: 124
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 346.38447565443005
Iteration: 2, Func. Count: 22, Neg. LLF: 157.24615455394186
Iteration: 3, Func. Count: 33, Neg. LLF: 161.74987128454646
Iteration: 4, Func. Count: 44, Neg. LLF: 154.2386052501498
Iteration: 5, Func. Count: 55, Neg. LLF: 153.37392979129626
Iteration: 6, Func. Count: 66, Neg. LLF: 152.76019426059264
Iteration: 7, Func. Count: 76, Neg. LLF: 153.53788730898492
Iteration: 8, Func. Count: 87, Neg. LLF: 152.72160696799176
Iteration: 9, Func. Count: 98, Neg. LLF: 152.6799337701262
Iteration: 10, Func. Count: 109, Neg. LLF: 152.52642505766931
Iteration: 11, Func. Count: 119, Neg. LLF: 152.51681963952547
Iteration: 12, Func. Count: 129, Neg. LLF: 152.51255441428995
Iteration: 13, Func. Count: 139, Neg. LLF: 152.51219352786768
Iteration: 14, Func. Count: 149, Neg. LLF: 152.5121536566854
Iteration: 15, Func. Count: 159, Neg. LLF: 152.5121463648074
Iteration: 16, Func. Count: 168, Neg. LLF: 152.51214627441237
Optimization terminated successfully (Exit mode 0)
Current function value: 152.5121463648074
Iterations: 16
Function evaluations: 168
Gradient evaluations: 16
Iteration: 1, Func. Count: 8, Neg. LLF: 162.60013072707812
Iteration: 2, Func. Count: 16, Neg. LLF: 156.96623129342996
Iteration: 3, Func. Count: 24, Neg. LLF: 157.0962334854394
Iteration: 4, Func. Count: 33, Neg. LLF: 155.63319598405403
Iteration: 5, Func. Count: 40, Neg. LLF: 155.13028130788058
Iteration: 6, Func. Count: 47, Neg. LLF: 155.01371505607923
Iteration: 7, Func. Count: 54, Neg. LLF: 154.87615495590438
Iteration: 8, Func. Count: 61, Neg. LLF: 154.6468258847916
Iteration: 9, Func. Count: 68, Neg. LLF: 154.46478821598004
Iteration: 10, Func. Count: 75, Neg. LLF: 154.12953111450895
Iteration: 11, Func. Count: 82, Neg. LLF: 153.93057457647473
Iteration: 12, Func. Count: 89, Neg. LLF: 153.90214541377225
Iteration: 13, Func. Count: 96, Neg. LLF: 153.90054322589899
Iteration: 14, Func. Count: 103, Neg. LLF: 153.90051379330566
Iteration: 15, Func. Count: 110, Neg. LLF: 153.90051239264156
Iteration: 16, Func. Count: 116, Neg. LLF: 153.90051237275563
Optimization terminated successfully (Exit mode 0)
Current function value: 153.90051239264156
Iterations: 16
Function evaluations: 116
Gradient evaluations: 16
Iteration: 1, Func. Count: 9, Neg. LLF: 309.28279995457285
Iteration: 2, Func. Count: 18, Neg. LLF: 153.530189329499
Iteration: 3, Func. Count: 26, Neg. LLF: 153.7090409807237
Iteration: 4, Func. Count: 35, Neg. LLF: 153.46437507115243
Iteration: 5, Func. Count: 43, Neg. LLF: 153.44495677575662
Iteration: 6, Func. Count: 51, Neg. LLF: 153.42633442474153
Iteration: 7, Func. Count: 59, Neg. LLF: 153.41661775402676
Iteration: 8, Func. Count: 67, Neg. LLF: 153.41637288104545
Iteration: 9, Func. Count: 75, Neg. LLF: 153.4163350572847
Iteration: 10, Func. Count: 83, Neg. LLF: 153.41632966356292
Iteration: 11, Func. Count: 90, Neg. LLF: 153.4163295512019
Optimization terminated successfully (Exit mode 0)
Current function value: 153.41632966356292
Iterations: 11
Function evaluations: 90
Gradient evaluations: 11
Iteration: 1, Func. Count: 10, Neg. LLF: 231.32823287734007
Iteration: 2, Func. Count: 20, Neg. LLF: 155.72421304367208
Iteration: 3, Func. Count: 30, Neg. LLF: 155.53659036854782
Iteration: 4, Func. Count: 40, Neg. LLF: 153.09630351809255
Iteration: 5, Func. Count: 49, Neg. LLF: 157.3771851180581
Iteration: 6, Func. Count: 59, Neg. LLF: 155.656644199607
Iteration: 7, Func. Count: 69, Neg. LLF: 182.7456568511134
Iteration: 8, Func. Count: 80, Neg. LLF: 152.68933992362247
Iteration: 9, Func. Count: 89, Neg. LLF: 152.66876099504054
Iteration: 10, Func. Count: 98, Neg. LLF: 152.65834881703896
Iteration: 11, Func. Count: 107, Neg. LLF: 152.65211244692736
Iteration: 12, Func. Count: 116, Neg. LLF: 152.65077242451196
Iteration: 13, Func. Count: 125, Neg. LLF: 152.64731114731725
Iteration: 14, Func. Count: 134, Neg. LLF: 152.6458749760221
Iteration: 15, Func. Count: 143, Neg. LLF: 152.64567007379353
Iteration: 16, Func. Count: 152, Neg. LLF: 152.64566352936373
Iteration: 17, Func. Count: 160, Neg. LLF: 152.64566345042505
Optimization terminated successfully (Exit mode 0)
Current function value: 152.64566352936373
Iterations: 17
Function evaluations: 160
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 353.5458806684608
Iteration: 2, Func. Count: 22, Neg. LLF: 155.589966725559
Iteration: 3, Func. Count: 33, Neg. LLF: 156.14343215278308
Iteration: 4, Func. Count: 44, Neg. LLF: 153.93121746780346
Iteration: 5, Func. Count: 55, Neg. LLF: 156.01311664154994
Iteration: 6, Func. Count: 66, Neg. LLF: 153.34927152054337
Iteration: 7, Func. Count: 77, Neg. LLF: 152.8819392194604
Iteration: 8, Func. Count: 87, Neg. LLF: 152.8666407414538
Iteration: 9, Func. Count: 97, Neg. LLF: 152.863950266573
Iteration: 10, Func. Count: 107, Neg. LLF: 152.8637584793094
Iteration: 11, Func. Count: 117, Neg. LLF: 152.86371317153683
Iteration: 12, Func. Count: 127, Neg. LLF: 152.86370421599946
Iteration: 13, Func. Count: 137, Neg. LLF: 152.86370335927757
Optimization terminated successfully (Exit mode 0)
Current function value: 152.86370335927757
Iterations: 13
Function evaluations: 137
Gradient evaluations: 13
Iteration: 1, Func. Count: 12, Neg. LLF: 361.5234218187026
Iteration: 2, Func. Count: 24, Neg. LLF: 180.25595984879814
Iteration: 3, Func. Count: 36, Neg. LLF: 157.185586827159
Iteration: 4, Func. Count: 48, Neg. LLF: 155.49115175714994
Iteration: 5, Func. Count: 60, Neg. LLF: 153.50544896214012
Iteration: 6, Func. Count: 72, Neg. LLF: 153.38074811743604
Iteration: 7, Func. Count: 84, Neg. LLF: 152.73377024881285
Iteration: 8, Func. Count: 95, Neg. LLF: 152.87153161591053
Iteration: 9, Func. Count: 107, Neg. LLF: 152.56833675408356
Iteration: 10, Func. Count: 118, Neg. LLF: 152.65404417537434
Iteration: 11, Func. Count: 130, Neg. LLF: 152.63368031868728
Iteration: 12, Func. Count: 142, Neg. LLF: 152.3992126614075
Iteration: 13, Func. Count: 153, Neg. LLF: 152.29909492232713
Iteration: 14, Func. Count: 164, Neg. LLF: 152.2716654286648
Iteration: 15, Func. Count: 175, Neg. LLF: 152.2473701663252
Iteration: 16, Func. Count: 186, Neg. LLF: 152.24712207654136
Iteration: 17, Func. Count: 197, Neg. LLF: 152.24711108443424
Iteration: 18, Func. Count: 208, Neg. LLF: 152.2471105467143
Optimization terminated successfully (Exit mode 0)
Current function value: 152.2471105467143
Iterations: 18
Function evaluations: 208
Gradient evaluations: 18
Iteration: 1, Func. Count: 9, Neg. LLF: 162.53464796030514
Iteration: 2, Func. Count: 18, Neg. LLF: 156.78470418189977
Iteration: 3, Func. Count: 27, Neg. LLF: 157.12872651573173
Iteration: 4, Func. Count: 36, Neg. LLF: 155.88867154729968
Iteration: 5, Func. Count: 45, Neg. LLF: 155.4137980191792
Iteration: 6, Func. Count: 53, Neg. LLF: 156.40912896672978
Iteration: 7, Func. Count: 62, Neg. LLF: 155.43216780186387
Iteration: 8, Func. Count: 71, Neg. LLF: 154.77000811949148
Iteration: 9, Func. Count: 79, Neg. LLF: 154.64835292846954
Iteration: 10, Func. Count: 87, Neg. LLF: 153.93053786764406
Iteration: 11, Func. Count: 95, Neg. LLF: 153.6482528072472
Iteration: 12, Func. Count: 103, Neg. LLF: 153.46676719807772
Iteration: 13, Func. Count: 111, Neg. LLF: 153.39856101355923
Iteration: 14, Func. Count: 119, Neg. LLF: 153.38808177381367
Iteration: 15, Func. Count: 127, Neg. LLF: 153.38293303487856
Iteration: 16, Func. Count: 135, Neg. LLF: 153.38217508137652
Iteration: 17, Func. Count: 143, Neg. LLF: 153.38195006338964
Iteration: 18, Func. Count: 151, Neg. LLF: 153.38194596549832
Iteration: 19, Func. Count: 158, Neg. LLF: 153.38194593723657
Optimization terminated successfully (Exit mode 0)
Current function value: 153.38194596549832
Iterations: 19
Function evaluations: 158
Gradient evaluations: 19
Iteration: 1, Func. Count: 10, Neg. LLF: 413.74131122467475
Iteration: 2, Func. Count: 20, Neg. LLF: 153.88526834666078
Iteration: 3, Func. Count: 30, Neg. LLF: 153.38134444329407
Iteration: 4, Func. Count: 40, Neg. LLF: 153.2473576437549
Iteration: 5, Func. Count: 50, Neg. LLF: 153.08239113781286
Iteration: 6, Func. Count: 59, Neg. LLF: 155.85076792084857
Iteration: 7, Func. Count: 70, Neg. LLF: 153.0765639539483
Iteration: 8, Func. Count: 79, Neg. LLF: 153.07617219583102
Iteration: 9, Func. Count: 88, Neg. LLF: 153.076116836849
Iteration: 10, Func. Count: 96, Neg. LLF: 153.07611676441044
Optimization terminated successfully (Exit mode 0)
Current function value: 153.076116836849
Iterations: 10
Function evaluations: 96
Gradient evaluations: 10
Iteration: 1, Func. Count: 11, Neg. LLF: 215.62799458477886
Iteration: 2, Func. Count: 22, Neg. LLF: 153.96494440363995
Iteration: 3, Func. Count: 32, Neg. LLF: 153.9727533608156
Iteration: 4, Func. Count: 43, Neg. LLF: 174.6761432041376
Iteration: 5, Func. Count: 55, Neg. LLF: 157.7949806700723
Iteration: 6, Func. Count: 66, Neg. LLF: 301.65197959264475
Iteration: 7, Func. Count: 78, Neg. LLF: 152.68900359446792
Iteration: 8, Func. Count: 88, Neg. LLF: 152.67930573712036
Iteration: 9, Func. Count: 99, Neg. LLF: 152.68305953138506
Iteration: 10, Func. Count: 110, Neg. LLF: 152.63777244603398
Iteration: 11, Func. Count: 120, Neg. LLF: 152.63287636719883
Iteration: 12, Func. Count: 130, Neg. LLF: 152.63219024408565
Iteration: 13, Func. Count: 140, Neg. LLF: 152.6313194577569
Iteration: 14, Func. Count: 150, Neg. LLF: 152.6310520169468
Iteration: 15, Func. Count: 160, Neg. LLF: 152.63102952481228
Iteration: 16, Func. Count: 169, Neg. LLF: 152.6310294579329
Optimization terminated successfully (Exit mode 0)
Current function value: 152.63102952481228
Iterations: 16
Function evaluations: 169
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 323.65023964566365
Iteration: 2, Func. Count: 24, Neg. LLF: 164.7725842276957
Iteration: 3, Func. Count: 36, Neg. LLF: 156.16882381797402
Iteration: 4, Func. Count: 48, Neg. LLF: 154.73683005670898
Iteration: 5, Func. Count: 60, Neg. LLF: 153.1731612529687
Iteration: 6, Func. Count: 71, Neg. LLF: 156.07437322328752
Iteration: 7, Func. Count: 83, Neg. LLF: 152.89169788942854
Iteration: 8, Func. Count: 94, Neg. LLF: 152.87028780222352
Iteration: 9, Func. Count: 105, Neg. LLF: 152.86529871951802
Iteration: 10, Func. Count: 116, Neg. LLF: 152.86410805431652
Iteration: 11, Func. Count: 127, Neg. LLF: 152.8638111816147
Iteration: 12, Func. Count: 138, Neg. LLF: 152.8637042612147
Iteration: 13, Func. Count: 149, Neg. LLF: 152.86370340095917
Optimization terminated successfully (Exit mode 0)
Current function value: 152.86370340095917
Iterations: 13
Function evaluations: 149
Gradient evaluations: 13
Iteration: 1, Func. Count: 13, Neg. LLF: 217.876628741357
Iteration: 2, Func. Count: 26, Neg. LLF: 155.84175247808216
Iteration: 3, Func. Count: 39, Neg. LLF: 153.9926412765877
Iteration: 4, Func. Count: 52, Neg. LLF: 155.70805187413114
Iteration: 5, Func. Count: 65, Neg. LLF: 158.3164121412048
Iteration: 6, Func. Count: 78, Neg. LLF: 153.33820126853243
Iteration: 7, Func. Count: 91, Neg. LLF: 152.92255782560835
Iteration: 8, Func. Count: 103, Neg. LLF: 152.89707361903638
Iteration: 9, Func. Count: 115, Neg. LLF: 152.88691960042578
Iteration: 10, Func. Count: 127, Neg. LLF: 152.8776078751513
Iteration: 11, Func. Count: 139, Neg. LLF: 152.8685582445693
Iteration: 12, Func. Count: 151, Neg. LLF: 152.86430292197986
Iteration: 13, Func. Count: 163, Neg. LLF: 152.86373495701895
Iteration: 14, Func. Count: 175, Neg. LLF: 152.86370341006787
Iteration: 15, Func. Count: 186, Neg. LLF: 152.86370337237534
Optimization terminated successfully (Exit mode 0)
Current function value: 152.86370341006787
Iterations: 15
Function evaluations: 186
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 157.61606217318362
Iteration: 2, Func. Count: 20, Neg. LLF: 155.27748198560562
Iteration: 3, Func. Count: 30, Neg. LLF: 154.02181883461498
Iteration: 4, Func. Count: 41, Neg. LLF: 157.02044706114245
Iteration: 5, Func. Count: 51, Neg. LLF: 152.3400143253953
Iteration: 6, Func. Count: 60, Neg. LLF: 152.20491205972598
Iteration: 7, Func. Count: 69, Neg. LLF: 151.87314055813368
Iteration: 8, Func. Count: 78, Neg. LLF: 151.17648392676008
Iteration: 9, Func. Count: 87, Neg. LLF: 150.84490741629355
Iteration: 10, Func. Count: 96, Neg. LLF: 262.2205966594115
Iteration: 11, Func. Count: 106, Neg. LLF: 150.50105067288646
Iteration: 12, Func. Count: 115, Neg. LLF: 150.48556533013084
Iteration: 13, Func. Count: 124, Neg. LLF: 150.5193867174412
Iteration: 14, Func. Count: 134, Neg. LLF: 150.42578756242182
Iteration: 15, Func. Count: 143, Neg. LLF: 150.42164497812362
Iteration: 16, Func. Count: 152, Neg. LLF: 150.41991150830702
Iteration: 17, Func. Count: 161, Neg. LLF: 150.41902927325282
Iteration: 18, Func. Count: 170, Neg. LLF: 150.41900697620906
Iteration: 19, Func. Count: 179, Neg. LLF: 150.4190059021533
Iteration: 20, Func. Count: 187, Neg. LLF: 150.4190058872488
Optimization terminated successfully (Exit mode 0)
Current function value: 150.4190059021533
Iterations: 20
Function evaluations: 187
Gradient evaluations: 20
Iteration: 1, Func. Count: 11, Neg. LLF: 377.59778685722955
Iteration: 2, Func. Count: 22, Neg. LLF: 238.1696934017648
Iteration: 3, Func. Count: 33, Neg. LLF: 154.23797450286904
Iteration: 4, Func. Count: 44, Neg. LLF: 153.08902894256806
Iteration: 5, Func. Count: 55, Neg. LLF: 153.58803351983443
Iteration: 6, Func. Count: 66, Neg. LLF: 158.40792327706947
Iteration: 7, Func. Count: 77, Neg. LLF: 155.20988054896142
Iteration: 8, Func. Count: 88, Neg. LLF: 150.1884919508079
Iteration: 9, Func. Count: 99, Neg. LLF: 149.82751568776084
Iteration: 10, Func. Count: 109, Neg. LLF: 149.8054042913705
Iteration: 11, Func. Count: 119, Neg. LLF: 149.80475785219747
Iteration: 12, Func. Count: 129, Neg. LLF: 149.80331663461607
Iteration: 13, Func. Count: 139, Neg. LLF: 149.80319173261108
Iteration: 14, Func. Count: 149, Neg. LLF: 149.80317575611178
Iteration: 15, Func. Count: 159, Neg. LLF: 149.8031743808916
Iteration: 16, Func. Count: 168, Neg. LLF: 149.80317432709205
Optimization terminated successfully (Exit mode 0)
Current function value: 149.8031743808916
Iterations: 16
Function evaluations: 168
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 258.749389916932
Iteration: 2, Func. Count: 24, Neg. LLF: 187.1881623373322
Iteration: 3, Func. Count: 36, Neg. LLF: 165.51493746736594
Iteration: 4, Func. Count: 48, Neg. LLF: 158.18155446069926
Iteration: 5, Func. Count: 60, Neg. LLF: 152.43517260962403
Iteration: 6, Func. Count: 72, Neg. LLF: 155.23642496512497
Iteration: 7, Func. Count: 84, Neg. LLF: 156.4732090033827
Iteration: 8, Func. Count: 96, Neg. LLF: 168.6229942887482
Iteration: 9, Func. Count: 108, Neg. LLF: 150.3237749118306
Iteration: 10, Func. Count: 119, Neg. LLF: 150.21839394772408
Iteration: 11, Func. Count: 130, Neg. LLF: 149.91214653469888
Iteration: 12, Func. Count: 141, Neg. LLF: 149.88026222328838
Iteration: 13, Func. Count: 152, Neg. LLF: 149.84184518893863
Iteration: 14, Func. Count: 163, Neg. LLF: 149.81932416415987
Iteration: 15, Func. Count: 174, Neg. LLF: 149.80708641257308
Iteration: 16, Func. Count: 185, Neg. LLF: 149.80404238788825
Iteration: 17, Func. Count: 196, Neg. LLF: 149.80321121443788
Iteration: 18, Func. Count: 207, Neg. LLF: 149.80317520937095
Iteration: 19, Func. Count: 218, Neg. LLF: 149.80317416184172
Iteration: 20, Func. Count: 228, Neg. LLF: 149.80317417046643
Optimization terminated successfully (Exit mode 0)
Current function value: 149.80317416184172
Iterations: 20
Function evaluations: 228
Gradient evaluations: 20
Iteration: 1, Func. Count: 13, Neg. LLF: 271.3822773421538
Iteration: 2, Func. Count: 26, Neg. LLF: 241.0800699047699
Iteration: 3, Func. Count: 39, Neg. LLF: 172.05459357442408
Iteration: 4, Func. Count: 52, Neg. LLF: 158.28139812873462
Iteration: 5, Func. Count: 65, Neg. LLF: 152.20553402726244
Iteration: 6, Func. Count: 78, Neg. LLF: 151.46090904005376
Iteration: 7, Func. Count: 91, Neg. LLF: 154.20367155873123
Iteration: 8, Func. Count: 104, Neg. LLF: 152.33018065063916
Iteration: 9, Func. Count: 117, Neg. LLF: 151.50775216813014
Iteration: 10, Func. Count: 130, Neg. LLF: 150.11676610980567
Iteration: 11, Func. Count: 142, Neg. LLF: 149.8844063944473
Iteration: 12, Func. Count: 154, Neg. LLF: 149.83011419449426
Iteration: 13, Func. Count: 166, Neg. LLF: 149.81112551910599
Iteration: 14, Func. Count: 178, Neg. LLF: 149.80767085290316
Iteration: 15, Func. Count: 190, Neg. LLF: 149.80428977840594
Iteration: 16, Func. Count: 202, Neg. LLF: 149.80316939913484
Iteration: 17, Func. Count: 214, Neg. LLF: 149.80273562521646
Iteration: 18, Func. Count: 226, Neg. LLF: 149.8027199637431
Iteration: 19, Func. Count: 237, Neg. LLF: 149.8027199094406
Optimization terminated successfully (Exit mode 0)
Current function value: 149.8027199637431
Iterations: 19
Function evaluations: 237
Gradient evaluations: 19
Iteration: 1, Func. Count: 14, Neg. LLF: 194.6191759904947
Iteration: 2, Func. Count: 28, Neg. LLF: 189.2746654687078
Iteration: 3, Func. Count: 42, Neg. LLF: 156.1884303383958
Iteration: 4, Func. Count: 56, Neg. LLF: 160.9118501414587
Iteration: 5, Func. Count: 70, Neg. LLF: 156.62995704344263
Iteration: 6, Func. Count: 84, Neg. LLF: 155.79017908554405
Iteration: 7, Func. Count: 98, Neg. LLF: 150.98188751033962
Iteration: 8, Func. Count: 111, Neg. LLF: 161.47651970763826
Iteration: 9, Func. Count: 125, Neg. LLF: 156.98411376269883
Iteration: 10, Func. Count: 139, Neg. LLF: 149.89425124992792
Iteration: 11, Func. Count: 152, Neg. LLF: 149.88599643834112
Iteration: 12, Func. Count: 165, Neg. LLF: 149.87994702669914
Iteration: 13, Func. Count: 178, Neg. LLF: 149.87555721925742
Iteration: 14, Func. Count: 191, Neg. LLF: 149.87345927783625
Iteration: 15, Func. Count: 204, Neg. LLF: 149.87148256522926
Iteration: 16, Func. Count: 217, Neg. LLF: 149.87112088713275
Iteration: 17, Func. Count: 230, Neg. LLF: 149.87111027638895
Iteration: 18, Func. Count: 243, Neg. LLF: 149.8711085222279
Iteration: 19, Func. Count: 256, Neg. LLF: 149.87110716334408
Iteration: 20, Func. Count: 269, Neg. LLF: 149.8711064061092
Optimization terminated successfully (Exit mode 0)
Current function value: 149.8711064061092
Iterations: 20
Function evaluations: 269
Gradient evaluations: 20
Iteration: 1, Func. Count: 7, Neg. LLF: 158.1471243859266
Iteration: 2, Func. Count: 13, Neg. LLF: 161.94984570210588
Iteration: 3, Func. Count: 20, Neg. LLF: 156.96842970099988
Iteration: 4, Func. Count: 26, Neg. LLF: 295.9050501793257
Iteration: 5, Func. Count: 33, Neg. LLF: 156.466568948822
Iteration: 6, Func. Count: 39, Neg. LLF: 156.23542441180524
Iteration: 7, Func. Count: 45, Neg. LLF: 155.96544224460453
Iteration: 8, Func. Count: 51, Neg. LLF: 155.9343212676253
Iteration: 9, Func. Count: 57, Neg. LLF: 155.93096356357958
Iteration: 10, Func. Count: 63, Neg. LLF: 155.93036923920667
Iteration: 11, Func. Count: 69, Neg. LLF: 155.9303477578437
Iteration: 12, Func. Count: 74, Neg. LLF: 155.93034781019884
Optimization terminated successfully (Exit mode 0)
Current function value: 155.9303477578437
Iterations: 12
Function evaluations: 74
Gradient evaluations: 12
Iteration: 1, Func. Count: 8, Neg. LLF: 171.5754319601741
Iteration: 2, Func. Count: 16, Neg. LLF: 161.7322355082354
Iteration: 3, Func. Count: 24, Neg. LLF: 156.6046861657427
Iteration: 4, Func. Count: 31, Neg. LLF: 156.41671176278422
Iteration: 5, Func. Count: 38, Neg. LLF: 156.41204821213586
Iteration: 6, Func. Count: 45, Neg. LLF: 156.40735577633075
Iteration: 7, Func. Count: 52, Neg. LLF: 156.40673605680098
Iteration: 8, Func. Count: 59, Neg. LLF: 156.4067218024556
Iteration: 9, Func. Count: 65, Neg. LLF: 156.40672167744574
Optimization terminated successfully (Exit mode 0)
Current function value: 156.4067218024556
Iterations: 9
Function evaluations: 65
Gradient evaluations: 9
Iteration: 1, Func. Count: 9, Neg. LLF: 168.21515758783573
Iteration: 2, Func. Count: 18, Neg. LLF: 156.98464107136132
Iteration: 3, Func. Count: 27, Neg. LLF: 156.7992519455787
Iteration: 4, Func. Count: 36, Neg. LLF: 158.51807604535256
Iteration: 5, Func. Count: 45, Neg. LLF: 156.3003187053424
Iteration: 6, Func. Count: 53, Neg. LLF: 156.29661565434455
Iteration: 7, Func. Count: 62, Neg. LLF: 156.27044177612996
Iteration: 8, Func. Count: 71, Neg. LLF: 156.08048634587303
Iteration: 9, Func. Count: 79, Neg. LLF: 156.08045358354659
Iteration: 10, Func. Count: 87, Neg. LLF: 156.08043059959476
Iteration: 11, Func. Count: 95, Neg. LLF: 156.08032448718842
Iteration: 12, Func. Count: 103, Neg. LLF: 156.08026403731068
Iteration: 13, Func. Count: 111, Neg. LLF: 156.08024198131116
Iteration: 14, Func. Count: 119, Neg. LLF: 156.0802390238423
Iteration: 15, Func. Count: 126, Neg. LLF: 156.08023893077066
Optimization terminated successfully (Exit mode 0)
Current function value: 156.0802390238423
Iterations: 15
Function evaluations: 126
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 166.8954981108909
Iteration: 2, Func. Count: 20, Neg. LLF: 155.25562194112564
Iteration: 3, Func. Count: 29, Neg. LLF: 155.0132617750236
Iteration: 4, Func. Count: 39, Neg. LLF: 167.72846747254206
Iteration: 5, Func. Count: 49, Neg. LLF: 155.04966528817226
Iteration: 6, Func. Count: 59, Neg. LLF: 154.69775427675563
Iteration: 7, Func. Count: 69, Neg. LLF: 154.46490148801504
Iteration: 8, Func. Count: 78, Neg. LLF: 154.4642010941613
Iteration: 9, Func. Count: 87, Neg. LLF: 154.46400906831084
Iteration: 10, Func. Count: 96, Neg. LLF: 154.46395437287973
Iteration: 11, Func. Count: 105, Neg. LLF: 154.46393856841826
Iteration: 12, Func. Count: 114, Neg. LLF: 154.4639278279373
Iteration: 13, Func. Count: 123, Neg. LLF: 154.46392494003362
Iteration: 14, Func. Count: 131, Neg. LLF: 154.46392487045193
Optimization terminated successfully (Exit mode 0)
Current function value: 154.46392494003362
Iterations: 14
Function evaluations: 131
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 165.86501438706267
Iteration: 2, Func. Count: 22, Neg. LLF: 155.36491207232584
Iteration: 3, Func. Count: 32, Neg. LLF: 154.86787915149887
Iteration: 4, Func. Count: 42, Neg. LLF: 169.30990136823854
Iteration: 5, Func. Count: 53, Neg. LLF: 154.88930331887744
Iteration: 6, Func. Count: 64, Neg. LLF: 158.1964787419157
Iteration: 7, Func. Count: 75, Neg. LLF: 154.47737423763326
Iteration: 8, Func. Count: 85, Neg. LLF: 154.4654863823349
Iteration: 9, Func. Count: 95, Neg. LLF: 154.46440772791996
Iteration: 10, Func. Count: 105, Neg. LLF: 154.4640081569799
Iteration: 11, Func. Count: 115, Neg. LLF: 154.4639752330081
Iteration: 12, Func. Count: 125, Neg. LLF: 154.46393176756743
Iteration: 13, Func. Count: 135, Neg. LLF: 154.4639251635311
Iteration: 14, Func. Count: 145, Neg. LLF: 154.4639246174069
Optimization terminated successfully (Exit mode 0)
Current function value: 154.4639246174069
Iterations: 14
Function evaluations: 145
Gradient evaluations: 14
Iteration: 1, Func. Count: 8, Neg. LLF: 160.53870227499849
Iteration: 2, Func. Count: 16, Neg. LLF: 156.6289633771596
Iteration: 3, Func. Count: 24, Neg. LLF: 159.0923507873384
Iteration: 4, Func. Count: 32, Neg. LLF: 155.65998885877275
Iteration: 5, Func. Count: 39, Neg. LLF: 155.50928343928788
Iteration: 6, Func. Count: 46, Neg. LLF: 155.36019565196375
Iteration: 7, Func. Count: 53, Neg. LLF: 155.31554782243055
Iteration: 8, Func. Count: 60, Neg. LLF: 155.2077491271196
Iteration: 9, Func. Count: 67, Neg. LLF: 155.07557936876492
Iteration: 10, Func. Count: 74, Neg. LLF: 156.08167610533795
Iteration: 11, Func. Count: 82, Neg. LLF: 154.80586853746144
Iteration: 12, Func. Count: 89, Neg. LLF: 154.69951000708102
Iteration: 13, Func. Count: 96, Neg. LLF: 154.69277031512763
Iteration: 14, Func. Count: 103, Neg. LLF: 154.68898896273816
Iteration: 15, Func. Count: 110, Neg. LLF: 154.68897526091337
Iteration: 16, Func. Count: 117, Neg. LLF: 154.68897320795207
Iteration: 17, Func. Count: 123, Neg. LLF: 154.6889731896091
Optimization terminated successfully (Exit mode 0)
Current function value: 154.68897320795207
Iterations: 17
Function evaluations: 123
Gradient evaluations: 17
Iteration: 1, Func. Count: 9, Neg. LLF: 560.6123236307888
Iteration: 2, Func. Count: 18, Neg. LLF: 153.71482105552758
Iteration: 3, Func. Count: 26, Neg. LLF: 153.80370107348978
Iteration: 4, Func. Count: 35, Neg. LLF: 153.80285319988695
Iteration: 5, Func. Count: 44, Neg. LLF: 153.6275081733865
Iteration: 6, Func. Count: 53, Neg. LLF: 153.54201764051726
Iteration: 7, Func. Count: 61, Neg. LLF: 153.53890601692652
Iteration: 8, Func. Count: 69, Neg. LLF: 153.5387045301351
Iteration: 9, Func. Count: 77, Neg. LLF: 153.53865870355673
Iteration: 10, Func. Count: 84, Neg. LLF: 153.53865858034465
Optimization terminated successfully (Exit mode 0)
Current function value: 153.53865870355673
Iterations: 10
Function evaluations: 84
Gradient evaluations: 10
Iteration: 1, Func. Count: 10, Neg. LLF: 353.82030546227986
Iteration: 2, Func. Count: 20, Neg. LLF: 173.34392688376028
Iteration: 3, Func. Count: 31, Neg. LLF: 153.98456012698966
Iteration: 4, Func. Count: 40, Neg. LLF: 153.97425747653884
Iteration: 5, Func. Count: 50, Neg. LLF: 153.60122620578795
Iteration: 6, Func. Count: 59, Neg. LLF: 153.5562862154522
Iteration: 7, Func. Count: 68, Neg. LLF: 153.5466715709121
Iteration: 8, Func. Count: 77, Neg. LLF: 153.54185202183672
Iteration: 9, Func. Count: 86, Neg. LLF: 153.5388836222881
Iteration: 10, Func. Count: 95, Neg. LLF: 153.5386610685299
Iteration: 11, Func. Count: 104, Neg. LLF: 153.53865860322412
Iteration: 12, Func. Count: 112, Neg. LLF: 153.53865848507326
Optimization terminated successfully (Exit mode 0)
Current function value: 153.53865860322412
Iterations: 12
Function evaluations: 112
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 318.7593979380465
Iteration: 2, Func. Count: 22, Neg. LLF: 156.41413610516247
Iteration: 3, Func. Count: 33, Neg. LLF: 161.55563787417708
Iteration: 4, Func. Count: 44, Neg. LLF: 153.30646235230606
Iteration: 5, Func. Count: 54, Neg. LLF: 153.72332384817335
Iteration: 6, Func. Count: 65, Neg. LLF: 153.97842264929395
Iteration: 7, Func. Count: 76, Neg. LLF: 154.4396575696254
Iteration: 8, Func. Count: 87, Neg. LLF: 153.09096246051223
Iteration: 9, Func. Count: 97, Neg. LLF: 153.06944979082985
Iteration: 10, Func. Count: 107, Neg. LLF: 153.06769228157293
Iteration: 11, Func. Count: 117, Neg. LLF: 153.06758271577377
Iteration: 12, Func. Count: 127, Neg. LLF: 153.06756783802012
Iteration: 13, Func. Count: 137, Neg. LLF: 153.06756106018506
Iteration: 14, Func. Count: 147, Neg. LLF: 153.06756046859707
Optimization terminated successfully (Exit mode 0)
Current function value: 153.06756046859707
Iterations: 14
Function evaluations: 147
Gradient evaluations: 14
Iteration: 1, Func. Count: 12, Neg. LLF: 216.077204487252
Iteration: 2, Func. Count: 24, Neg. LLF: 154.83874516532103
Iteration: 3, Func. Count: 36, Neg. LLF: 155.27697362925755
Iteration: 4, Func. Count: 48, Neg. LLF: 186.52758322192278
Iteration: 5, Func. Count: 60, Neg. LLF: 155.94862209793405
Iteration: 6, Func. Count: 72, Neg. LLF: 153.3010376171345
Iteration: 7, Func. Count: 84, Neg. LLF: 153.14222935350205
Iteration: 8, Func. Count: 96, Neg. LLF: 152.83987079521972
Iteration: 9, Func. Count: 108, Neg. LLF: 152.5357203406269
Iteration: 10, Func. Count: 119, Neg. LLF: 152.52258946359063
Iteration: 11, Func. Count: 130, Neg. LLF: 152.51864852741988
Iteration: 12, Func. Count: 141, Neg. LLF: 152.51248084154093
Iteration: 13, Func. Count: 152, Neg. LLF: 152.5122116728333
Iteration: 14, Func. Count: 163, Neg. LLF: 152.5121821112967
Iteration: 15, Func. Count: 174, Neg. LLF: 152.5121704551734
Iteration: 16, Func. Count: 185, Neg. LLF: 152.51215019226217
Iteration: 17, Func. Count: 196, Neg. LLF: 152.51214663636625
Iteration: 18, Func. Count: 207, Neg. LLF: 152.512145953459
Optimization terminated successfully (Exit mode 0)
Current function value: 152.512145953459
Iterations: 18
Function evaluations: 207
Gradient evaluations: 18
Iteration: 1, Func. Count: 9, Neg. LLF: 162.89130077933882
Iteration: 2, Func. Count: 18, Neg. LLF: 156.90400960595443
Iteration: 3, Func. Count: 27, Neg. LLF: 158.5375464845812
Iteration: 4, Func. Count: 37, Neg. LLF: 155.52283470051353
Iteration: 5, Func. Count: 45, Neg. LLF: 157.05650341163377
Iteration: 6, Func. Count: 54, Neg. LLF: 155.0480663333839
Iteration: 7, Func. Count: 62, Neg. LLF: 154.86992140198294
Iteration: 8, Func. Count: 70, Neg. LLF: 154.7112185581929
Iteration: 9, Func. Count: 78, Neg. LLF: 154.48690696301023
Iteration: 10, Func. Count: 86, Neg. LLF: 154.22498600654785
Iteration: 11, Func. Count: 94, Neg. LLF: 153.97430191934228
Iteration: 12, Func. Count: 102, Neg. LLF: 153.90613288981874
Iteration: 13, Func. Count: 110, Neg. LLF: 153.90065030944737
Iteration: 14, Func. Count: 118, Neg. LLF: 153.90052974632476
Iteration: 15, Func. Count: 126, Neg. LLF: 153.90051234697037
Iteration: 16, Func. Count: 133, Neg. LLF: 153.90051232703527
Optimization terminated successfully (Exit mode 0)
Current function value: 153.90051234697037
Iterations: 16
Function evaluations: 133
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 310.11958353391304
Iteration: 2, Func. Count: 20, Neg. LLF: 153.53004727125312
Iteration: 3, Func. Count: 29, Neg. LLF: 153.70603202469542
Iteration: 4, Func. Count: 39, Neg. LLF: 153.46570131475337
Iteration: 5, Func. Count: 49, Neg. LLF: 153.44550680337173
Iteration: 6, Func. Count: 59, Neg. LLF: 153.41649049061965
Iteration: 7, Func. Count: 68, Neg. LLF: 153.41633016126968
Iteration: 8, Func. Count: 76, Neg. LLF: 153.4163300490058
Optimization terminated successfully (Exit mode 0)
Current function value: 153.41633016126968
Iterations: 8
Function evaluations: 76
Gradient evaluations: 8
Iteration: 1, Func. Count: 11, Neg. LLF: 227.59895393734274
Iteration: 2, Func. Count: 22, Neg. LLF: 155.72510565639877
Iteration: 3, Func. Count: 33, Neg. LLF: 156.03969226524507
Iteration: 4, Func. Count: 44, Neg. LLF: 155.4462517072881
Iteration: 5, Func. Count: 55, Neg. LLF: 155.13284661264487
Iteration: 6, Func. Count: 66, Neg. LLF: 155.01218805675606
Iteration: 7, Func. Count: 77, Neg. LLF: 191.94000748092066
Iteration: 8, Func. Count: 89, Neg. LLF: 153.55362604323204
Iteration: 9, Func. Count: 100, Neg. LLF: 152.76428662442945
Iteration: 10, Func. Count: 110, Neg. LLF: 152.7435653882906
Iteration: 11, Func. Count: 121, Neg. LLF: 152.6751986854028
Iteration: 12, Func. Count: 132, Neg. LLF: 152.64906896517633
Iteration: 13, Func. Count: 142, Neg. LLF: 152.6482802787617
Iteration: 14, Func. Count: 152, Neg. LLF: 152.64788224580872
Iteration: 15, Func. Count: 162, Neg. LLF: 152.64697010385112
Iteration: 16, Func. Count: 172, Neg. LLF: 152.64613010251603
Iteration: 17, Func. Count: 182, Neg. LLF: 152.64572327128823
Iteration: 18, Func. Count: 192, Neg. LLF: 152.645665983543
Iteration: 19, Func. Count: 202, Neg. LLF: 152.64566352608097
Iteration: 20, Func. Count: 211, Neg. LLF: 152.64566344716624
Optimization terminated successfully (Exit mode 0)
Current function value: 152.64566352608097
Iterations: 20
Function evaluations: 211
Gradient evaluations: 20
Iteration: 1, Func. Count: 12, Neg. LLF: 330.49068213664106
Iteration: 2, Func. Count: 24, Neg. LLF: 163.6459242928266
Iteration: 3, Func. Count: 36, Neg. LLF: 156.28088787166067
Iteration: 4, Func. Count: 48, Neg. LLF: 154.3618163758649
Iteration: 5, Func. Count: 60, Neg. LLF: 153.2413201226887
Iteration: 6, Func. Count: 71, Neg. LLF: 157.08572078292596
Iteration: 7, Func. Count: 83, Neg. LLF: 153.1565752746827
Iteration: 8, Func. Count: 95, Neg. LLF: 152.91726080976085
Iteration: 9, Func. Count: 107, Neg. LLF: 152.8770194532091
Iteration: 10, Func. Count: 119, Neg. LLF: 152.9197701491089
Iteration: 11, Func. Count: 131, Neg. LLF: 152.8788564719381
Iteration: 12, Func. Count: 143, Neg. LLF: 152.8574414076012
Iteration: 13, Func. Count: 154, Neg. LLF: 152.85337820837077
Iteration: 14, Func. Count: 165, Neg. LLF: 152.84829812991848
Iteration: 15, Func. Count: 176, Neg. LLF: 152.83965038793238
Iteration: 16, Func. Count: 187, Neg. LLF: 152.83774787945782
Iteration: 17, Func. Count: 198, Neg. LLF: 152.83736390894643
Iteration: 18, Func. Count: 209, Neg. LLF: 152.83733125276598
Iteration: 19, Func. Count: 220, Neg. LLF: 152.83732646141655
Iteration: 20, Func. Count: 230, Neg. LLF: 152.83732639578093
Optimization terminated successfully (Exit mode 0)
Current function value: 152.83732646141655
Iterations: 20
Function evaluations: 230
Gradient evaluations: 20
Iteration: 1, Func. Count: 13, Neg. LLF: 217.4000465511379
Iteration: 2, Func. Count: 26, Neg. LLF: 154.62054177370513
Iteration: 3, Func. Count: 38, Neg. LLF: 156.35259654322633
Iteration: 4, Func. Count: 51, Neg. LLF: 177.3121138507871
Iteration: 5, Func. Count: 64, Neg. LLF: 222.49417231785247
Iteration: 6, Func. Count: 78, Neg. LLF: 153.9706191686944
Iteration: 7, Func. Count: 91, Neg. LLF: 157.13246497170505
Iteration: 8, Func. Count: 104, Neg. LLF: 158.61745447149283
Iteration: 9, Func. Count: 117, Neg. LLF: 152.86241431815537
Iteration: 10, Func. Count: 129, Neg. LLF: 152.85509027346893
Iteration: 11, Func. Count: 141, Neg. LLF: 152.8486704490625
Iteration: 12, Func. Count: 153, Neg. LLF: 152.8400821031569
Iteration: 13, Func. Count: 165, Neg. LLF: 152.83783891771327
Iteration: 14, Func. Count: 177, Neg. LLF: 152.83747820871662
Iteration: 15, Func. Count: 189, Neg. LLF: 152.8373588288166
Iteration: 16, Func. Count: 201, Neg. LLF: 152.83732924644391
Iteration: 17, Func. Count: 213, Neg. LLF: 152.837326327228
Iteration: 18, Func. Count: 224, Neg. LLF: 152.8373262755425
Optimization terminated successfully (Exit mode 0)
Current function value: 152.837326327228
Iterations: 18
Function evaluations: 224
Gradient evaluations: 18
Iteration: 1, Func. Count: 10, Neg. LLF: 162.39531081137173
Iteration: 2, Func. Count: 20, Neg. LLF: 157.11364218450677
Iteration: 3, Func. Count: 30, Neg. LLF: 158.07819231733762
Iteration: 4, Func. Count: 41, Neg. LLF: 155.93055170222073
Iteration: 5, Func. Count: 50, Neg. LLF: 155.30657478796235
Iteration: 6, Func. Count: 59, Neg. LLF: 155.87571879835278
Iteration: 7, Func. Count: 69, Neg. LLF: 154.89055912760014
Iteration: 8, Func. Count: 78, Neg. LLF: 154.75423099042916
Iteration: 9, Func. Count: 87, Neg. LLF: 154.5250552670551
Iteration: 10, Func. Count: 96, Neg. LLF: 154.03470504163127
Iteration: 11, Func. Count: 105, Neg. LLF: 153.74866877191744
Iteration: 12, Func. Count: 114, Neg. LLF: 153.4311445602226
Iteration: 13, Func. Count: 123, Neg. LLF: 153.38607559519247
Iteration: 14, Func. Count: 132, Neg. LLF: 153.3825565358258
Iteration: 15, Func. Count: 141, Neg. LLF: 153.38195336350807
Iteration: 16, Func. Count: 150, Neg. LLF: 153.3819460175813
Iteration: 17, Func. Count: 159, Neg. LLF: 153.3819455337593
Optimization terminated successfully (Exit mode 0)
Current function value: 153.3819455337593
Iterations: 17
Function evaluations: 159
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 409.39535321707774
Iteration: 2, Func. Count: 22, Neg. LLF: 153.89128744587967
Iteration: 3, Func. Count: 33, Neg. LLF: 153.37873859216666
Iteration: 4, Func. Count: 44, Neg. LLF: 153.25022181617484
Iteration: 5, Func. Count: 55, Neg. LLF: 153.08389444771387
Iteration: 6, Func. Count: 65, Neg. LLF: 155.73296885736713
Iteration: 7, Func. Count: 77, Neg. LLF: 153.07659973958908
Iteration: 8, Func. Count: 87, Neg. LLF: 153.07618577757398
Iteration: 9, Func. Count: 97, Neg. LLF: 153.0761171035178
Iteration: 10, Func. Count: 106, Neg. LLF: 153.076117031166
Optimization terminated successfully (Exit mode 0)
Current function value: 153.0761171035178
Iterations: 10
Function evaluations: 106
Gradient evaluations: 10
Iteration: 1, Func. Count: 12, Neg. LLF: 210.419327320872
Iteration: 2, Func. Count: 24, Neg. LLF: 155.39411043657128
Iteration: 3, Func. Count: 36, Neg. LLF: 156.76764968256037
Iteration: 4, Func. Count: 48, Neg. LLF: 154.26083818253272
Iteration: 5, Func. Count: 60, Neg. LLF: 154.20399153463117
Iteration: 6, Func. Count: 72, Neg. LLF: 152.89326403808275
Iteration: 7, Func. Count: 83, Neg. LLF: 152.940426018251
Iteration: 8, Func. Count: 95, Neg. LLF: 156.0545150389369
Iteration: 9, Func. Count: 108, Neg. LLF: 152.76120708443742
Iteration: 10, Func. Count: 119, Neg. LLF: 152.6835751410189
Iteration: 11, Func. Count: 130, Neg. LLF: 152.67392923163538
Iteration: 12, Func. Count: 141, Neg. LLF: 152.6722486221671
Iteration: 13, Func. Count: 152, Neg. LLF: 152.66883125177068
Iteration: 14, Func. Count: 163, Neg. LLF: 152.66008251637567
Iteration: 15, Func. Count: 174, Neg. LLF: 152.64664615346567
Iteration: 16, Func. Count: 185, Neg. LLF: 152.63708354019613
Iteration: 17, Func. Count: 196, Neg. LLF: 152.6320823853124
Iteration: 18, Func. Count: 207, Neg. LLF: 152.63112825392534
Iteration: 19, Func. Count: 218, Neg. LLF: 152.63103058238582
Iteration: 20, Func. Count: 229, Neg. LLF: 152.63102903646208
Iteration: 21, Func. Count: 239, Neg. LLF: 152.63102896970594
Optimization terminated successfully (Exit mode 0)
Current function value: 152.63102903646208
Iterations: 21
Function evaluations: 239
Gradient evaluations: 21
Iteration: 1, Func. Count: 13, Neg. LLF: 216.8943834550077
Iteration: 2, Func. Count: 26, Neg. LLF: 154.13734304552196
Iteration: 3, Func. Count: 38, Neg. LLF: 158.01834114023742
Iteration: 4, Func. Count: 51, Neg. LLF: 174.36222043822767
Iteration: 5, Func. Count: 64, Neg. LLF: 272.75286645276185
Iteration: 6, Func. Count: 77, Neg. LLF: 153.34210700469757
Iteration: 7, Func. Count: 90, Neg. LLF: 203.99427272669868
Iteration: 8, Func. Count: 103, Neg. LLF: 153.09101586137015
Iteration: 9, Func. Count: 116, Neg. LLF: 152.64074054052224
Iteration: 10, Func. Count: 128, Neg. LLF: 152.6317485479727
Iteration: 11, Func. Count: 140, Neg. LLF: 152.62321579051417
Iteration: 12, Func. Count: 152, Neg. LLF: 152.62144588722006
Iteration: 13, Func. Count: 164, Neg. LLF: 152.62101560399006
Iteration: 14, Func. Count: 176, Neg. LLF: 152.62087043639607
Iteration: 15, Func. Count: 188, Neg. LLF: 152.6207896813862
Iteration: 16, Func. Count: 200, Neg. LLF: 152.6207461951921
Iteration: 17, Func. Count: 212, Neg. LLF: 152.62074450793907
Iteration: 18, Func. Count: 223, Neg. LLF: 152.62074443606627
Optimization terminated successfully (Exit mode 0)
Current function value: 152.62074450793907
Iterations: 18
Function evaluations: 223
Gradient evaluations: 18
Iteration: 1, Func. Count: 14, Neg. LLF: 215.27808258933152
Iteration: 2, Func. Count: 28, Neg. LLF: 156.83278230232565
Iteration: 3, Func. Count: 42, Neg. LLF: 153.69091712814475
Iteration: 4, Func. Count: 55, Neg. LLF: 156.51809521333098
Iteration: 5, Func. Count: 69, Neg. LLF: 157.293137926305
Iteration: 6, Func. Count: 84, Neg. LLF: 155.1983403216374
Iteration: 7, Func. Count: 98, Neg. LLF: 153.6601218279693
Iteration: 8, Func. Count: 112, Neg. LLF: 152.9950864210361
Iteration: 9, Func. Count: 126, Neg. LLF: 152.91520584195646
Iteration: 10, Func. Count: 139, Neg. LLF: 152.8929680269126
Iteration: 11, Func. Count: 152, Neg. LLF: 152.68038214044935
Iteration: 12, Func. Count: 165, Neg. LLF: 152.65793567016826
Iteration: 13, Func. Count: 178, Neg. LLF: 152.6507119641746
Iteration: 14, Func. Count: 191, Neg. LLF: 152.63507732249573
Iteration: 15, Func. Count: 204, Neg. LLF: 152.62782047973658
Iteration: 16, Func. Count: 217, Neg. LLF: 152.62449018167024
Iteration: 17, Func. Count: 230, Neg. LLF: 152.62181843780337
Iteration: 18, Func. Count: 243, Neg. LLF: 152.62118238833492
Iteration: 19, Func. Count: 256, Neg. LLF: 152.62078307389558
Iteration: 20, Func. Count: 269, Neg. LLF: 152.6207464314899
Iteration: 21, Func. Count: 282, Neg. LLF: 152.6207444602631
Iteration: 22, Func. Count: 294, Neg. LLF: 152.62074439801324
Optimization terminated successfully (Exit mode 0)
Current function value: 152.6207444602631
Iterations: 22
Function evaluations: 294
Gradient evaluations: 22
Iteration: 1, Func. Count: 11, Neg. LLF: 157.67704181968554
Iteration: 2, Func. Count: 22, Neg. LLF: 154.63951957623306
Iteration: 3, Func. Count: 33, Neg. LLF: 153.54373838388005
Iteration: 4, Func. Count: 44, Neg. LLF: 153.24521859107236
Iteration: 5, Func. Count: 55, Neg. LLF: 152.3243072340471
Iteration: 6, Func. Count: 65, Neg. LLF: 152.12403251791991
Iteration: 7, Func. Count: 75, Neg. LLF: 151.98634663660712
Iteration: 8, Func. Count: 85, Neg. LLF: 151.80223233376498
Iteration: 9, Func. Count: 95, Neg. LLF: 150.91855072920356
Iteration: 10, Func. Count: 105, Neg. LLF: 165.30347697362507
Iteration: 11, Func. Count: 117, Neg. LLF: 150.49581487029596
Iteration: 12, Func. Count: 127, Neg. LLF: 150.45698998213888
Iteration: 13, Func. Count: 137, Neg. LLF: 150.45025494050572
Iteration: 14, Func. Count: 147, Neg. LLF: 150.43017548930234
Iteration: 15, Func. Count: 157, Neg. LLF: 150.42056870489063
Iteration: 16, Func. Count: 167, Neg. LLF: 150.4194788756409
Iteration: 17, Func. Count: 177, Neg. LLF: 150.41917193033203
Iteration: 18, Func. Count: 187, Neg. LLF: 150.4190402528373
Iteration: 19, Func. Count: 197, Neg. LLF: 150.41900902514226
Iteration: 20, Func. Count: 207, Neg. LLF: 150.4190059910198
Iteration: 21, Func. Count: 216, Neg. LLF: 150.41900597610672
Optimization terminated successfully (Exit mode 0)
Current function value: 150.4190059910198
Iterations: 21
Function evaluations: 216
Gradient evaluations: 21
Iteration: 1, Func. Count: 12, Neg. LLF: 372.97649630271195
Iteration: 2, Func. Count: 24, Neg. LLF: 241.5936003912464
Iteration: 3, Func. Count: 36, Neg. LLF: 154.2064550293719
Iteration: 4, Func. Count: 48, Neg. LLF: 153.32022894567532
Iteration: 5, Func. Count: 60, Neg. LLF: 167.00586967563467
Iteration: 6, Func. Count: 72, Neg. LLF: 163.75600239564446
Iteration: 7, Func. Count: 84, Neg. LLF: 168.4446790873498
Iteration: 8, Func. Count: 96, Neg. LLF: 150.2480150725628
Iteration: 9, Func. Count: 107, Neg. LLF: 149.95876536001822
Iteration: 10, Func. Count: 118, Neg. LLF: 149.88424387793475
Iteration: 11, Func. Count: 129, Neg. LLF: 149.96715301360157
Iteration: 12, Func. Count: 141, Neg. LLF: 149.81107658559222
Iteration: 13, Func. Count: 152, Neg. LLF: 149.80711888810123
Iteration: 14, Func. Count: 163, Neg. LLF: 149.80559834176708
Iteration: 15, Func. Count: 174, Neg. LLF: 149.80379242131525
Iteration: 16, Func. Count: 185, Neg. LLF: 149.8033363637841
Iteration: 17, Func. Count: 196, Neg. LLF: 149.8031847677298
Iteration: 18, Func. Count: 207, Neg. LLF: 149.80317464796786
Iteration: 19, Func. Count: 217, Neg. LLF: 149.80317459414732
Optimization terminated successfully (Exit mode 0)
Current function value: 149.80317464796786
Iterations: 19
Function evaluations: 217
Gradient evaluations: 19
Iteration: 1, Func. Count: 13, Neg. LLF: 234.78670814614298
Iteration: 2, Func. Count: 26, Neg. LLF: 218.40563701064153
Iteration: 3, Func. Count: 39, Neg. LLF: 183.86012206964372
Iteration: 4, Func. Count: 52, Neg. LLF: 152.1928470492436
Iteration: 5, Func. Count: 64, Neg. LLF: 172.70735463164263
Iteration: 6, Func. Count: 77, Neg. LLF: 152.21208886890918
Iteration: 7, Func. Count: 90, Neg. LLF: 151.22010331388165
Iteration: 8, Func. Count: 103, Neg. LLF: 150.52376087585395
Iteration: 9, Func. Count: 115, Neg. LLF: 150.60478384879175
Iteration: 10, Func. Count: 128, Neg. LLF: 151.16974178093207
Iteration: 11, Func. Count: 141, Neg. LLF: 149.9194293557467
Iteration: 12, Func. Count: 153, Neg. LLF: 149.83608699659098
Iteration: 13, Func. Count: 165, Neg. LLF: 149.81708872890698
Iteration: 14, Func. Count: 177, Neg. LLF: 149.8128016984713
Iteration: 15, Func. Count: 189, Neg. LLF: 149.80782617830747
Iteration: 16, Func. Count: 201, Neg. LLF: 149.80489236277077
Iteration: 17, Func. Count: 213, Neg. LLF: 149.80351451805782
Iteration: 18, Func. Count: 225, Neg. LLF: 149.8031882711624
Iteration: 19, Func. Count: 237, Neg. LLF: 149.80317505926166
Iteration: 20, Func. Count: 249, Neg. LLF: 149.80317411912878
Optimization terminated successfully (Exit mode 0)
Current function value: 149.80317411912878
Iterations: 20
Function evaluations: 249
Gradient evaluations: 20
Iteration: 1, Func. Count: 14, Neg. LLF: 194.29760493405576
Iteration: 2, Func. Count: 28, Neg. LLF: 169.5992222002371
Iteration: 3, Func. Count: 42, Neg. LLF: 154.15687639609814
Iteration: 4, Func. Count: 56, Neg. LLF: 159.66745649637906
Iteration: 5, Func. Count: 70, Neg. LLF: 155.73662697723765
Iteration: 6, Func. Count: 84, Neg. LLF: 160.15635892192796
Iteration: 7, Func. Count: 98, Neg. LLF: 151.05702086560922
Iteration: 8, Func. Count: 112, Neg. LLF: 155.84306018449695
Iteration: 9, Func. Count: 126, Neg. LLF: 155.28450147004241
Iteration: 10, Func. Count: 140, Neg. LLF: 151.47933572526517
Iteration: 11, Func. Count: 154, Neg. LLF: 149.95040684123018
Iteration: 12, Func. Count: 167, Neg. LLF: 149.83673636116163
Iteration: 13, Func. Count: 180, Neg. LLF: 149.82628572484293
Iteration: 14, Func. Count: 193, Neg. LLF: 149.81393444748434
Iteration: 15, Func. Count: 206, Neg. LLF: 149.8047748600969
Iteration: 16, Func. Count: 219, Neg. LLF: 149.80326713945394
Iteration: 17, Func. Count: 232, Neg. LLF: 149.80288392880865
Iteration: 18, Func. Count: 245, Neg. LLF: 149.80273402229193
Iteration: 19, Func. Count: 258, Neg. LLF: 149.80272044577737
Iteration: 20, Func. Count: 271, Neg. LLF: 149.80271964434522
Optimization terminated successfully (Exit mode 0)
Current function value: 149.80271964434522
Iterations: 20
Function evaluations: 271
Gradient evaluations: 20
Iteration: 1, Func. Count: 15, Neg. LLF: 193.0718079661518
Iteration: 2, Func. Count: 30, Neg. LLF: 165.1101760124826
Iteration: 3, Func. Count: 45, Neg. LLF: 218.72641681155517
Iteration: 4, Func. Count: 60, Neg. LLF: 169.1685010430385
Iteration: 5, Func. Count: 75, Neg. LLF: 156.83259679888747
Iteration: 6, Func. Count: 90, Neg. LLF: 151.48391946349153
Iteration: 7, Func. Count: 104, Neg. LLF: 151.3501108398796
Iteration: 8, Func. Count: 119, Neg. LLF: 153.91894987949146
Iteration: 9, Func. Count: 134, Neg. LLF: 152.31264683437098
Iteration: 10, Func. Count: 149, Neg. LLF: 149.96392958362497
Iteration: 11, Func. Count: 163, Neg. LLF: 149.90165898528687
Iteration: 12, Func. Count: 177, Neg. LLF: 149.88477513585948
Iteration: 13, Func. Count: 191, Neg. LLF: 149.8781170983449
Iteration: 14, Func. Count: 205, Neg. LLF: 149.87559135119633
Iteration: 15, Func. Count: 219, Neg. LLF: 149.87295073115158
Iteration: 16, Func. Count: 233, Neg. LLF: 149.87244136598727
Iteration: 17, Func. Count: 247, Neg. LLF: 149.87192555714907
Iteration: 18, Func. Count: 261, Neg. LLF: 149.87138539361823
Iteration: 19, Func. Count: 275, Neg. LLF: 149.87114930423857
Iteration: 20, Func. Count: 289, Neg. LLF: 149.87111124115174
Iteration: 21, Func. Count: 303, Neg. LLF: 149.87110724806553
Iteration: 22, Func. Count: 317, Neg. LLF: 149.87110655617678
Optimization terminated successfully (Exit mode 0)
Current function value: 149.87110655617678
Iterations: 22
Function evaluations: 317
Gradient evaluations: 22
Iteration: 1, Func. Count: 8, Neg. LLF: 158.1287621720956
Iteration: 2, Func. Count: 15, Neg. LLF: 158.85880047645924
Iteration: 3, Func. Count: 25, Neg. LLF: 166.82014470189844
Iteration: 4, Func. Count: 33, Neg. LLF: 164.1557043602465
Iteration: 5, Func. Count: 41, Neg. LLF: 156.33101022415352
Iteration: 6, Func. Count: 49, Neg. LLF: 156.09477619730998
Iteration: 7, Func. Count: 56, Neg. LLF: 156.02774953396045
Iteration: 8, Func. Count: 63, Neg. LLF: 155.7558801772611
Iteration: 9, Func. Count: 70, Neg. LLF: 172.38133366623464
Iteration: 10, Func. Count: 78, Neg. LLF: 155.80001513338235
Iteration: 11, Func. Count: 86, Neg. LLF: 155.44306996404163
Iteration: 12, Func. Count: 93, Neg. LLF: 155.41585673304317
Iteration: 13, Func. Count: 100, Neg. LLF: 155.41155875202728
Iteration: 14, Func. Count: 107, Neg. LLF: 155.407435149306
Iteration: 15, Func. Count: 114, Neg. LLF: 155.393399760226
Iteration: 16, Func. Count: 121, Neg. LLF: 155.3667431516677
Iteration: 17, Func. Count: 128, Neg. LLF: 155.3282000213162
Iteration: 18, Func. Count: 135, Neg. LLF: 155.2977908613654
Iteration: 19, Func. Count: 142, Neg. LLF: 155.28994631394266
Iteration: 20, Func. Count: 149, Neg. LLF: 155.28943491788854
Iteration: 21, Func. Count: 156, Neg. LLF: 155.28942857185064
Iteration: 22, Func. Count: 162, Neg. LLF: 155.28942855013872
Optimization terminated successfully (Exit mode 0)
Current function value: 155.28942857185064
Iterations: 22
Function evaluations: 162
Gradient evaluations: 22
Iteration: 1, Func. Count: 9, Neg. LLF: 180.47481471628458
Iteration: 2, Func. Count: 18, Neg. LLF: 157.3007608399145
Iteration: 3, Func. Count: 27, Neg. LLF: 154.5839592932548
Iteration: 4, Func. Count: 35, Neg. LLF: 154.63984188434353
Iteration: 5, Func. Count: 44, Neg. LLF: 170.92803337813987
Iteration: 6, Func. Count: 53, Neg. LLF: 154.37738397349347
Iteration: 7, Func. Count: 62, Neg. LLF: 153.61530776333618
Iteration: 8, Func. Count: 70, Neg. LLF: 153.58404380582664
Iteration: 9, Func. Count: 78, Neg. LLF: 153.570163367649
Iteration: 10, Func. Count: 86, Neg. LLF: 153.56138068662835
Iteration: 11, Func. Count: 94, Neg. LLF: 153.56106997070168
Iteration: 12, Func. Count: 102, Neg. LLF: 153.56104691526224
Iteration: 13, Func. Count: 109, Neg. LLF: 153.5610468709341
Optimization terminated successfully (Exit mode 0)
Current function value: 153.56104691526224
Iterations: 13
Function evaluations: 109
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 180.29203991701522
Iteration: 2, Func. Count: 20, Neg. LLF: 158.99147976696653
Iteration: 3, Func. Count: 30, Neg. LLF: 154.40452453355653
Iteration: 4, Func. Count: 39, Neg. LLF: 153.83309175986972
Iteration: 5, Func. Count: 48, Neg. LLF: 156.12846676748947
Iteration: 6, Func. Count: 58, Neg. LLF: 153.63622415224285
Iteration: 7, Func. Count: 67, Neg. LLF: 153.63994189557673
Iteration: 8, Func. Count: 77, Neg. LLF: 153.58306111676916
Iteration: 9, Func. Count: 86, Neg. LLF: 153.56524393623516
Iteration: 10, Func. Count: 95, Neg. LLF: 153.56149712698954
Iteration: 11, Func. Count: 104, Neg. LLF: 153.56106851870035
Iteration: 12, Func. Count: 113, Neg. LLF: 153.56104772087284
Iteration: 13, Func. Count: 122, Neg. LLF: 153.56104690309618
Optimization terminated successfully (Exit mode 0)
Current function value: 153.56104690309618
Iterations: 13
Function evaluations: 122
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 173.71832732621476
Iteration: 2, Func. Count: 22, Neg. LLF: 163.7635961934016
Iteration: 3, Func. Count: 33, Neg. LLF: 154.46580850745636
Iteration: 4, Func. Count: 43, Neg. LLF: 163.01909736452305
Iteration: 5, Func. Count: 54, Neg. LLF: 156.06784082132668
Iteration: 6, Func. Count: 65, Neg. LLF: 153.83102765737638
Iteration: 7, Func. Count: 75, Neg. LLF: 153.72424785761595
Iteration: 8, Func. Count: 85, Neg. LLF: 153.65950397611368
Iteration: 9, Func. Count: 95, Neg. LLF: 153.6021240260471
Iteration: 10, Func. Count: 105, Neg. LLF: 153.67094501592285
Iteration: 11, Func. Count: 116, Neg. LLF: 153.5684282877759
Iteration: 12, Func. Count: 126, Neg. LLF: 153.56257860477993
Iteration: 13, Func. Count: 136, Neg. LLF: 153.5612462650953
Iteration: 14, Func. Count: 146, Neg. LLF: 153.5611458048991
Iteration: 15, Func. Count: 156, Neg. LLF: 153.56111671631524
Iteration: 16, Func. Count: 166, Neg. LLF: 153.5610583078199
Iteration: 17, Func. Count: 176, Neg. LLF: 153.56104804224358
Iteration: 18, Func. Count: 186, Neg. LLF: 153.561046946205
Iteration: 19, Func. Count: 195, Neg. LLF: 153.56104713017132
Optimization terminated successfully (Exit mode 0)
Current function value: 153.561046946205
Iterations: 19
Function evaluations: 195
Gradient evaluations: 19
Iteration: 1, Func. Count: 12, Neg. LLF: 177.63061856122374
Iteration: 2, Func. Count: 24, Neg. LLF: 163.70202659781555
Iteration: 3, Func. Count: 36, Neg. LLF: 162.76370623721698
Iteration: 4, Func. Count: 48, Neg. LLF: 157.11976842331762
Iteration: 5, Func. Count: 60, Neg. LLF: 154.04588669176306
Iteration: 6, Func. Count: 71, Neg. LLF: 153.7474570865816
Iteration: 7, Func. Count: 82, Neg. LLF: 158.73853626035086
Iteration: 8, Func. Count: 95, Neg. LLF: 153.54871954366365
Iteration: 9, Func. Count: 106, Neg. LLF: 153.52901396727202
Iteration: 10, Func. Count: 117, Neg. LLF: 153.52640822308564
Iteration: 11, Func. Count: 128, Neg. LLF: 153.52505502467193
Iteration: 12, Func. Count: 139, Neg. LLF: 153.52489879388506
Iteration: 13, Func. Count: 150, Neg. LLF: 153.52480736639203
Iteration: 14, Func. Count: 161, Neg. LLF: 153.5247011593835
Iteration: 15, Func. Count: 172, Neg. LLF: 153.5246488610176
Iteration: 16, Func. Count: 183, Neg. LLF: 153.52464179031
Iteration: 17, Func. Count: 193, Neg. LLF: 153.5246417502471
Optimization terminated successfully (Exit mode 0)
Current function value: 153.52464179031
Iterations: 17
Function evaluations: 193
Gradient evaluations: 17
Iteration: 1, Func. Count: 9, Neg. LLF: 157.02585210396916
Iteration: 2, Func. Count: 17, Neg. LLF: 158.08888218618853
Iteration: 3, Func. Count: 26, Neg. LLF: 156.12620011162826
Iteration: 4, Func. Count: 34, Neg. LLF: 157.55456758946457
Iteration: 5, Func. Count: 43, Neg. LLF: 161.53574615176703
Iteration: 6, Func. Count: 52, Neg. LLF: 157.81786536572346
Iteration: 7, Func. Count: 61, Neg. LLF: 155.86217011650862
Iteration: 8, Func. Count: 69, Neg. LLF: 155.84120592243266
Iteration: 9, Func. Count: 77, Neg. LLF: 155.80254312275503
Iteration: 10, Func. Count: 85, Neg. LLF: 155.74959555211925
Iteration: 11, Func. Count: 93, Neg. LLF: 155.61811180039098
Iteration: 12, Func. Count: 101, Neg. LLF: 155.49908482618304
Iteration: 13, Func. Count: 109, Neg. LLF: 155.44457900896566
Iteration: 14, Func. Count: 117, Neg. LLF: 155.41528456787628
Iteration: 15, Func. Count: 125, Neg. LLF: 155.40125241365016
Iteration: 16, Func. Count: 133, Neg. LLF: 155.3985445513959
Iteration: 17, Func. Count: 141, Neg. LLF: 155.39840972162335
Iteration: 18, Func. Count: 149, Neg. LLF: 155.3984064888491
Iteration: 19, Func. Count: 156, Neg. LLF: 155.39840648804437
Optimization terminated successfully (Exit mode 0)
Current function value: 155.3984064888491
Iterations: 19
Function evaluations: 156
Gradient evaluations: 19
Iteration: 1, Func. Count: 10, Neg. LLF: 563.1952529118104
Iteration: 2, Func. Count: 20, Neg. LLF: 238.30641663004704
Iteration: 3, Func. Count: 31, Neg. LLF: 153.6707302714774
Iteration: 4, Func. Count: 41, Neg. LLF: 153.5229756092514
Iteration: 5, Func. Count: 51, Neg. LLF: 153.4211793140862
Iteration: 6, Func. Count: 60, Neg. LLF: 153.419974762861
Iteration: 7, Func. Count: 69, Neg. LLF: 153.41980521674654
Iteration: 8, Func. Count: 78, Neg. LLF: 153.41980352583542
Iteration: 9, Func. Count: 87, Neg. LLF: 153.41980223870263
Iteration: 10, Func. Count: 95, Neg. LLF: 153.41980214435728
Optimization terminated successfully (Exit mode 0)
Current function value: 153.41980223870263
Iterations: 10
Function evaluations: 95
Gradient evaluations: 10
Iteration: 1, Func. Count: 11, Neg. LLF: 335.1493381353012
Iteration: 2, Func. Count: 22, Neg. LLF: 153.70178720331126
Iteration: 3, Func. Count: 32, Neg. LLF: 155.4881488078323
Iteration: 4, Func. Count: 44, Neg. LLF: 153.585530381701
Iteration: 5, Func. Count: 54, Neg. LLF: 153.63689241571677
Iteration: 6, Func. Count: 65, Neg. LLF: 153.85088968035757
Iteration: 7, Func. Count: 76, Neg. LLF: 153.43888923890748
Iteration: 8, Func. Count: 86, Neg. LLF: 153.42425828013242
Iteration: 9, Func. Count: 96, Neg. LLF: 153.42027548613686
Iteration: 10, Func. Count: 106, Neg. LLF: 153.41993585018443
Iteration: 11, Func. Count: 116, Neg. LLF: 153.4198207873516
Iteration: 12, Func. Count: 126, Neg. LLF: 153.4198031362121
Iteration: 13, Func. Count: 136, Neg. LLF: 153.4198022095446
Optimization terminated successfully (Exit mode 0)
Current function value: 153.4198022095446
Iterations: 13
Function evaluations: 136
Gradient evaluations: 13
Iteration: 1, Func. Count: 12, Neg. LLF: 218.41544493393795
Iteration: 2, Func. Count: 24, Neg. LLF: 163.95092929030866
Iteration: 3, Func. Count: 36, Neg. LLF: 153.7450291116587
Iteration: 4, Func. Count: 47, Neg. LLF: 153.92391585437446
Iteration: 5, Func. Count: 59, Neg. LLF: 155.3762640203762
Iteration: 6, Func. Count: 72, Neg. LLF: 153.20183305768177
Iteration: 7, Func. Count: 83, Neg. LLF: 155.8701581591238
Iteration: 8, Func. Count: 95, Neg. LLF: 153.109046938852
Iteration: 9, Func. Count: 106, Neg. LLF: 153.09467655070077
Iteration: 10, Func. Count: 117, Neg. LLF: 153.08576528629115
Iteration: 11, Func. Count: 128, Neg. LLF: 153.07576186266007
Iteration: 12, Func. Count: 139, Neg. LLF: 153.0686687042289
Iteration: 13, Func. Count: 150, Neg. LLF: 153.067788931288
Iteration: 14, Func. Count: 161, Neg. LLF: 153.06756361435848
Iteration: 15, Func. Count: 172, Neg. LLF: 153.06756076260396
Iteration: 16, Func. Count: 182, Neg. LLF: 153.06756069040523
Optimization terminated successfully (Exit mode 0)
Current function value: 153.06756076260396
Iterations: 16
Function evaluations: 182
Gradient evaluations: 16
Iteration: 1, Func. Count: 13, Neg. LLF: 216.62626030577238
Iteration: 2, Func. Count: 26, Neg. LLF: 164.07193418497135
Iteration: 3, Func. Count: 39, Neg. LLF: 153.95246349874554
Iteration: 4, Func. Count: 51, Neg. LLF: 154.0381974428138
Iteration: 5, Func. Count: 64, Neg. LLF: 156.98707236432412
Iteration: 6, Func. Count: 78, Neg. LLF: 153.28688213031637
Iteration: 7, Func. Count: 91, Neg. LLF: 152.5876773200684
Iteration: 8, Func. Count: 103, Neg. LLF: 152.8282170514166
Iteration: 9, Func. Count: 116, Neg. LLF: 152.54122697820173
Iteration: 10, Func. Count: 128, Neg. LLF: 152.52737383170827
Iteration: 11, Func. Count: 140, Neg. LLF: 152.51263349969108
Iteration: 12, Func. Count: 152, Neg. LLF: 152.51236041520943
Iteration: 13, Func. Count: 164, Neg. LLF: 152.51226684351855
Iteration: 14, Func. Count: 176, Neg. LLF: 152.51218470840206
Iteration: 15, Func. Count: 188, Neg. LLF: 152.51216536902047
Iteration: 16, Func. Count: 200, Neg. LLF: 152.51214839197684
Iteration: 17, Func. Count: 212, Neg. LLF: 152.51214634606407
Iteration: 18, Func. Count: 224, Neg. LLF: 152.51214543941722
Optimization terminated successfully (Exit mode 0)
Current function value: 152.51214543941722
Iterations: 18
Function evaluations: 224
Gradient evaluations: 18
Iteration: 1, Func. Count: 10, Neg. LLF: 159.98174006255348
Iteration: 2, Func. Count: 20, Neg. LLF: 157.67214186993024
Iteration: 3, Func. Count: 31, Neg. LLF: 165.91742629002007
Iteration: 4, Func. Count: 41, Neg. LLF: 156.27180788107276
Iteration: 5, Func. Count: 50, Neg. LLF: 156.09377039199916
Iteration: 6, Func. Count: 59, Neg. LLF: 158.04869514266116
Iteration: 7, Func. Count: 69, Neg. LLF: 156.06598283065443
Iteration: 8, Func. Count: 79, Neg. LLF: 155.8200465114118
Iteration: 9, Func. Count: 88, Neg. LLF: 155.7074897062554
Iteration: 10, Func. Count: 97, Neg. LLF: 155.61956717009434
Iteration: 11, Func. Count: 106, Neg. LLF: 155.51206040133684
Iteration: 12, Func. Count: 115, Neg. LLF: 155.41567065727173
Iteration: 13, Func. Count: 124, Neg. LLF: 155.4028706180293
Iteration: 14, Func. Count: 133, Neg. LLF: 155.3989670530262
Iteration: 15, Func. Count: 142, Neg. LLF: 155.39854531535028
Iteration: 16, Func. Count: 151, Neg. LLF: 155.39846675452443
Iteration: 17, Func. Count: 160, Neg. LLF: 155.3984097427685
Iteration: 18, Func. Count: 169, Neg. LLF: 155.39840663104036
Iteration: 19, Func. Count: 177, Neg. LLF: 155.39840660669122
Optimization terminated successfully (Exit mode 0)
Current function value: 155.39840663104036
Iterations: 19
Function evaluations: 177
Gradient evaluations: 19
Iteration: 1, Func. Count: 11, Neg. LLF: 316.9615929911425
Iteration: 2, Func. Count: 22, Neg. LLF: 235.195357484198
Iteration: 3, Func. Count: 34, Neg. LLF: 153.49772730160768
Iteration: 4, Func. Count: 44, Neg. LLF: 153.36877140641423
Iteration: 5, Func. Count: 54, Neg. LLF: 153.3779717117024
Iteration: 6, Func. Count: 65, Neg. LLF: 153.36788217291536
Iteration: 7, Func. Count: 76, Neg. LLF: 153.362429532887
Iteration: 8, Func. Count: 86, Neg. LLF: 153.36230313728393
Iteration: 9, Func. Count: 96, Neg. LLF: 153.36227332143696
Iteration: 10, Func. Count: 105, Neg. LLF: 153.36227322556115
Optimization terminated successfully (Exit mode 0)
Current function value: 153.36227332143696
Iterations: 10
Function evaluations: 105
Gradient evaluations: 10
Iteration: 1, Func. Count: 12, Neg. LLF: 223.6520421078626
Iteration: 2, Func. Count: 24, Neg. LLF: 154.49927276444643
Iteration: 3, Func. Count: 36, Neg. LLF: 155.15458618693972
Iteration: 4, Func. Count: 48, Neg. LLF: 153.97017191651915
Iteration: 5, Func. Count: 60, Neg. LLF: 167.03565699307927
Iteration: 6, Func. Count: 72, Neg. LLF: 154.21602423959405
Iteration: 7, Func. Count: 84, Neg. LLF: 153.9034791135232
Iteration: 8, Func. Count: 96, Neg. LLF: 152.69357714034302
Iteration: 9, Func. Count: 107, Neg. LLF: 152.65771775774462
Iteration: 10, Func. Count: 118, Neg. LLF: 153.0854388621249
Iteration: 11, Func. Count: 131, Neg. LLF: 152.64923674200932
Iteration: 12, Func. Count: 142, Neg. LLF: 152.64196425744737
Iteration: 13, Func. Count: 153, Neg. LLF: 152.63666226439025
Iteration: 14, Func. Count: 164, Neg. LLF: 152.6342526692465
Iteration: 15, Func. Count: 175, Neg. LLF: 152.63412701270434
Iteration: 16, Func. Count: 186, Neg. LLF: 152.63412333864665
Iteration: 17, Func. Count: 196, Neg. LLF: 152.6341232642957
Optimization terminated successfully (Exit mode 0)
Current function value: 152.63412333864665
Iterations: 17
Function evaluations: 196
Gradient evaluations: 17
Iteration: 1, Func. Count: 13, Neg. LLF: 330.4704758302679
Iteration: 2, Func. Count: 26, Neg. LLF: 171.98064715908802
Iteration: 3, Func. Count: 39, Neg. LLF: 153.94717345900656
Iteration: 4, Func. Count: 51, Neg. LLF: 153.13549450097076
Iteration: 5, Func. Count: 63, Neg. LLF: 153.07953766765664
Iteration: 6, Func. Count: 75, Neg. LLF: 154.22977909132734
Iteration: 7, Func. Count: 88, Neg. LLF: 154.384830026572
Iteration: 8, Func. Count: 101, Neg. LLF: 152.98499796178268
Iteration: 9, Func. Count: 114, Neg. LLF: 152.87235153939358
Iteration: 10, Func. Count: 126, Neg. LLF: 152.86477379642272
Iteration: 11, Func. Count: 138, Neg. LLF: 152.86382112846962
Iteration: 12, Func. Count: 150, Neg. LLF: 152.86375445297298
Iteration: 13, Func. Count: 162, Neg. LLF: 152.863709984863
Iteration: 14, Func. Count: 174, Neg. LLF: 152.86370402947986
Iteration: 15, Func. Count: 186, Neg. LLF: 152.86370334194746
Optimization terminated successfully (Exit mode 0)
Current function value: 152.86370334194746
Iterations: 15
Function evaluations: 186
Gradient evaluations: 15
Iteration: 1, Func. Count: 14, Neg. LLF: 217.9609269285003
Iteration: 2, Func. Count: 28, Neg. LLF: 168.4229493797091
Iteration: 3, Func. Count: 42, Neg. LLF: 153.99031262241505
Iteration: 4, Func. Count: 55, Neg. LLF: 154.24335180634318
Iteration: 5, Func. Count: 69, Neg. LLF: 162.702389572462
Iteration: 6, Func. Count: 84, Neg. LLF: 153.02739346631728
Iteration: 7, Func. Count: 98, Neg. LLF: 155.43793139906396
Iteration: 8, Func. Count: 112, Neg. LLF: 152.86982061319958
Iteration: 9, Func. Count: 125, Neg. LLF: 152.85352394614773
Iteration: 10, Func. Count: 138, Neg. LLF: 152.84569787513752
Iteration: 11, Func. Count: 151, Neg. LLF: 152.8402206166007
Iteration: 12, Func. Count: 164, Neg. LLF: 152.8385790281294
Iteration: 13, Func. Count: 177, Neg. LLF: 152.83737628764823
Iteration: 14, Func. Count: 190, Neg. LLF: 152.8373281399851
Iteration: 15, Func. Count: 203, Neg. LLF: 152.83732626433095
Iteration: 16, Func. Count: 215, Neg. LLF: 152.83732621268553
Optimization terminated successfully (Exit mode 0)
Current function value: 152.83732626433095
Iterations: 16
Function evaluations: 215
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 159.4949325110796
Iteration: 2, Func. Count: 22, Neg. LLF: 157.58830515766496
Iteration: 3, Func. Count: 35, Neg. LLF: 163.66705154386509
Iteration: 4, Func. Count: 46, Neg. LLF: 156.0029720375182
Iteration: 5, Func. Count: 56, Neg. LLF: 155.7641660620551
Iteration: 6, Func. Count: 66, Neg. LLF: 155.60745101756956
Iteration: 7, Func. Count: 76, Neg. LLF: 155.54239896936951
Iteration: 8, Func. Count: 86, Neg. LLF: 155.2575345481413
Iteration: 9, Func. Count: 96, Neg. LLF: 155.22184007077408
Iteration: 10, Func. Count: 107, Neg. LLF: 154.90662536039082
Iteration: 11, Func. Count: 117, Neg. LLF: 154.8134775145537
Iteration: 12, Func. Count: 127, Neg. LLF: 154.7931790612032
Iteration: 13, Func. Count: 137, Neg. LLF: 154.78901215120672
Iteration: 14, Func. Count: 147, Neg. LLF: 154.7849727723967
Iteration: 15, Func. Count: 157, Neg. LLF: 154.78489275645157
Iteration: 16, Func. Count: 167, Neg. LLF: 154.78488951922085
Iteration: 17, Func. Count: 176, Neg. LLF: 154.78488951643624
Optimization terminated successfully (Exit mode 0)
Current function value: 154.78488951922085
Iterations: 17
Function evaluations: 176
Gradient evaluations: 17
Iteration: 1, Func. Count: 12, Neg. LLF: 408.40921774113167
Iteration: 2, Func. Count: 24, Neg. LLF: 201.84460249118655
Iteration: 3, Func. Count: 37, Neg. LLF: 153.38814619624847
Iteration: 4, Func. Count: 48, Neg. LLF: 153.99447402406983
Iteration: 5, Func. Count: 60, Neg. LLF: 153.74096428867938
Iteration: 6, Func. Count: 72, Neg. LLF: 153.0929555531078
Iteration: 7, Func. Count: 83, Neg. LLF: 153.0965301160183
Iteration: 8, Func. Count: 95, Neg. LLF: 153.23077937816922
Iteration: 9, Func. Count: 107, Neg. LLF: 153.0747088974139
Iteration: 10, Func. Count: 118, Neg. LLF: 153.07439445425797
Iteration: 11, Func. Count: 129, Neg. LLF: 153.0738334952539
Iteration: 12, Func. Count: 140, Neg. LLF: 153.0738103381899
Iteration: 13, Func. Count: 151, Neg. LLF: 153.07380916433323
Iteration: 14, Func. Count: 161, Neg. LLF: 153.07380909271572
Optimization terminated successfully (Exit mode 0)
Current function value: 153.07380916433323
Iterations: 14
Function evaluations: 161
Gradient evaluations: 14
Iteration: 1, Func. Count: 13, Neg. LLF: 203.04123061249666
Iteration: 2, Func. Count: 26, Neg. LLF: 153.33762828664433
Iteration: 3, Func. Count: 38, Neg. LLF: 154.75948353167516
Iteration: 4, Func. Count: 53, Neg. LLF: 185.1186598163044
Iteration: 5, Func. Count: 67, Neg. LLF: 238.7770996167763
Iteration: 6, Func. Count: 80, Neg. LLF: 155.43663906224086
Iteration: 7, Func. Count: 93, Neg. LLF: 152.6647556473328
Iteration: 8, Func. Count: 105, Neg. LLF: 153.3656670612059
Iteration: 9, Func. Count: 118, Neg. LLF: 152.6671400795131
Iteration: 10, Func. Count: 131, Neg. LLF: 152.60982352416303
Iteration: 11, Func. Count: 143, Neg. LLF: 152.60236573866638
Iteration: 12, Func. Count: 155, Neg. LLF: 152.59887805687907
Iteration: 13, Func. Count: 167, Neg. LLF: 152.59795897256396
Iteration: 14, Func. Count: 179, Neg. LLF: 152.59780303008586
Iteration: 15, Func. Count: 191, Neg. LLF: 152.59779479056687
Iteration: 16, Func. Count: 202, Neg. LLF: 152.5977947359156
Optimization terminated successfully (Exit mode 0)
Current function value: 152.59779479056687
Iterations: 16
Function evaluations: 202
Gradient evaluations: 16
Iteration: 1, Func. Count: 14, Neg. LLF: 217.63507042440938
Iteration: 2, Func. Count: 28, Neg. LLF: 165.24013571827763
Iteration: 3, Func. Count: 42, Neg. LLF: 153.95530466911737
Iteration: 4, Func. Count: 55, Neg. LLF: 161.0240560050186
Iteration: 5, Func. Count: 69, Neg. LLF: 164.23657823031374
Iteration: 6, Func. Count: 83, Neg. LLF: 214.67936786420054
Iteration: 7, Func. Count: 98, Neg. LLF: 153.18997778544187
Iteration: 8, Func. Count: 112, Neg. LLF: 152.7720831698639
Iteration: 9, Func. Count: 126, Neg. LLF: 152.93345603468026
Iteration: 10, Func. Count: 140, Neg. LLF: 152.63175376041534
Iteration: 11, Func. Count: 153, Neg. LLF: 152.6226118177703
Iteration: 12, Func. Count: 166, Neg. LLF: 152.62188802302433
Iteration: 13, Func. Count: 179, Neg. LLF: 152.6211033067948
Iteration: 14, Func. Count: 192, Neg. LLF: 152.62078413095074
Iteration: 15, Func. Count: 205, Neg. LLF: 152.62074567394035
Iteration: 16, Func. Count: 218, Neg. LLF: 152.62074447838202
Iteration: 17, Func. Count: 230, Neg. LLF: 152.6207444064784
Optimization terminated successfully (Exit mode 0)
Current function value: 152.62074447838202
Iterations: 17
Function evaluations: 230
Gradient evaluations: 17
Iteration: 1, Func. Count: 15, Neg. LLF: 211.88150469237334
Iteration: 2, Func. Count: 30, Neg. LLF: 175.7577245466878
Iteration: 3, Func. Count: 45, Neg. LLF: 153.80240029308578
Iteration: 4, Func. Count: 59, Neg. LLF: 156.7969007494965
Iteration: 5, Func. Count: 74, Neg. LLF: 162.48018062676576
Iteration: 6, Func. Count: 89, Neg. LLF: 182.8993709453264
Iteration: 7, Func. Count: 105, Neg. LLF: 153.1342015911717
Iteration: 8, Func. Count: 120, Neg. LLF: 154.22711275594148
Iteration: 9, Func. Count: 135, Neg. LLF: 152.74485627752142
Iteration: 10, Func. Count: 149, Neg. LLF: 152.65168222760096
Iteration: 11, Func. Count: 163, Neg. LLF: 152.63446949126975
Iteration: 12, Func. Count: 177, Neg. LLF: 152.62314399293464
Iteration: 13, Func. Count: 191, Neg. LLF: 152.6215271550875
Iteration: 14, Func. Count: 205, Neg. LLF: 152.6210936208253
Iteration: 15, Func. Count: 219, Neg. LLF: 152.62088275865182
Iteration: 16, Func. Count: 233, Neg. LLF: 152.62079087791298
Iteration: 17, Func. Count: 247, Neg. LLF: 152.62074777654843
Iteration: 18, Func. Count: 261, Neg. LLF: 152.62074457064398
Iteration: 19, Func. Count: 274, Neg. LLF: 152.62074450841652
Optimization terminated successfully (Exit mode 0)
Current function value: 152.62074457064398
Iterations: 19
Function evaluations: 274
Gradient evaluations: 19
Iteration: 1, Func. Count: 12, Neg. LLF: 157.7075013610455
Iteration: 2, Func. Count: 24, Neg. LLF: 153.78904552199836
Iteration: 3, Func. Count: 36, Neg. LLF: 154.74448580145713
Iteration: 4, Func. Count: 48, Neg. LLF: 153.04756580421704
Iteration: 5, Func. Count: 59, Neg. LLF: 152.1785133648152
Iteration: 6, Func. Count: 70, Neg. LLF: 151.97076703115943
Iteration: 7, Func. Count: 81, Neg. LLF: 151.81395237160638
Iteration: 8, Func. Count: 92, Neg. LLF: 151.18191038680163
Iteration: 9, Func. Count: 103, Neg. LLF: 150.89357184593456
Iteration: 10, Func. Count: 114, Neg. LLF: 24775.489373194654
Iteration: 11, Func. Count: 126, Neg. LLF: 1148.8194394880754
Iteration: 12, Func. Count: 138, Neg. LLF: 150.54144237408465
Iteration: 13, Func. Count: 149, Neg. LLF: 150.4329279592833
Iteration: 14, Func. Count: 160, Neg. LLF: 150.42071263614247
Iteration: 15, Func. Count: 171, Neg. LLF: 150.4193540981746
Iteration: 16, Func. Count: 182, Neg. LLF: 150.41909325996224
Iteration: 17, Func. Count: 193, Neg. LLF: 150.41902966983227
Iteration: 18, Func. Count: 204, Neg. LLF: 150.41900708851924
Iteration: 19, Func. Count: 215, Neg. LLF: 150.41900598550433
Iteration: 20, Func. Count: 225, Neg. LLF: 150.41900597060098
Optimization terminated successfully (Exit mode 0)
Current function value: 150.41900598550433
Iterations: 20
Function evaluations: 225
Gradient evaluations: 20
Iteration: 1, Func. Count: 13, Neg. LLF: 370.85742683363964
Iteration: 2, Func. Count: 26, Neg. LLF: 267.33385003424854
Iteration: 3, Func. Count: 39, Neg. LLF: 152.3264296266268
Iteration: 4, Func. Count: 52, Neg. LLF: 155.4139506272679
Iteration: 5, Func. Count: 65, Neg. LLF: 160.39097209273805
Iteration: 6, Func. Count: 78, Neg. LLF: 152.9421758532651
Iteration: 7, Func. Count: 91, Neg. LLF: 157.6311344470089
Iteration: 8, Func. Count: 104, Neg. LLF: 150.11226243221725
Iteration: 9, Func. Count: 116, Neg. LLF: 149.96590269575285
Iteration: 10, Func. Count: 128, Neg. LLF: 149.85044946058485
Iteration: 11, Func. Count: 140, Neg. LLF: 149.830110317767
Iteration: 12, Func. Count: 152, Neg. LLF: 149.81623171917127
Iteration: 13, Func. Count: 164, Neg. LLF: 149.80808974566037
Iteration: 14, Func. Count: 176, Neg. LLF: 149.80509471466834
Iteration: 15, Func. Count: 188, Neg. LLF: 149.80361862422754
Iteration: 16, Func. Count: 200, Neg. LLF: 149.80323050104764
Iteration: 17, Func. Count: 212, Neg. LLF: 149.8031771358946
Iteration: 18, Func. Count: 224, Neg. LLF: 149.80317421103075
Iteration: 19, Func. Count: 235, Neg. LLF: 149.80317415729007
Optimization terminated successfully (Exit mode 0)
Current function value: 149.80317421103075
Iterations: 19
Function evaluations: 235
Gradient evaluations: 19
Iteration: 1, Func. Count: 14, Neg. LLF: 195.78989362662324
Iteration: 2, Func. Count: 28, Neg. LLF: 157.79228568649637
Iteration: 3, Func. Count: 42, Neg. LLF: 217.36100786748088
Iteration: 4, Func. Count: 56, Neg. LLF: 157.40987873793378
Iteration: 5, Func. Count: 70, Neg. LLF: 152.37037519000583
Iteration: 6, Func. Count: 84, Neg. LLF: 156.6207511463447
Iteration: 7, Func. Count: 98, Neg. LLF: 150.99197464998622
Iteration: 8, Func. Count: 112, Neg. LLF: 150.45142457237847
Iteration: 9, Func. Count: 126, Neg. LLF: 149.98954600392818
Iteration: 10, Func. Count: 139, Neg. LLF: 149.91290999688673
Iteration: 11, Func. Count: 152, Neg. LLF: 152.9192484975979
Iteration: 12, Func. Count: 166, Neg. LLF: 149.8522921660355
Iteration: 13, Func. Count: 179, Neg. LLF: 149.83200418411857
Iteration: 14, Func. Count: 192, Neg. LLF: 149.8068832669901
Iteration: 15, Func. Count: 205, Neg. LLF: 149.80335256873053
Iteration: 16, Func. Count: 218, Neg. LLF: 149.80317494636614
Iteration: 17, Func. Count: 231, Neg. LLF: 149.80317416983974
Optimization terminated successfully (Exit mode 0)
Current function value: 149.80317416983974
Iterations: 17
Function evaluations: 231
Gradient evaluations: 17
Iteration: 1, Func. Count: 15, Neg. LLF: 194.68288010928782
Iteration: 2, Func. Count: 30, Neg. LLF: 159.47041889207208
Iteration: 3, Func. Count: 45, Neg. LLF: 227.49661732649352
Iteration: 4, Func. Count: 60, Neg. LLF: 158.67026738125378
Iteration: 5, Func. Count: 75, Neg. LLF: 160.92818872729774
Iteration: 6, Func. Count: 90, Neg. LLF: 152.7141556873533
Iteration: 7, Func. Count: 105, Neg. LLF: 150.3964191711438
Iteration: 8, Func. Count: 119, Neg. LLF: 151.544202975334
Iteration: 9, Func. Count: 134, Neg. LLF: 151.2632535578365
Iteration: 10, Func. Count: 149, Neg. LLF: 149.914447272606
Iteration: 11, Func. Count: 163, Neg. LLF: 149.85908543010498
Iteration: 12, Func. Count: 177, Neg. LLF: 149.82862947902416
Iteration: 13, Func. Count: 191, Neg. LLF: 149.81558709882597
Iteration: 14, Func. Count: 205, Neg. LLF: 149.80921534374446
Iteration: 15, Func. Count: 219, Neg. LLF: 149.8042422592225
Iteration: 16, Func. Count: 233, Neg. LLF: 149.80303298382105
Iteration: 17, Func. Count: 247, Neg. LLF: 149.80276583876193
Iteration: 18, Func. Count: 261, Neg. LLF: 149.80272213107975
Iteration: 19, Func. Count: 275, Neg. LLF: 149.8027196812441
Iteration: 20, Func. Count: 288, Neg. LLF: 149.8027196270396
Optimization terminated successfully (Exit mode 0)
Current function value: 149.8027196812441
Iterations: 20
Function evaluations: 288
Gradient evaluations: 20
Iteration: 1, Func. Count: 16, Neg. LLF: 193.4669809642284
Iteration: 2, Func. Count: 32, Neg. LLF: 159.95594858901302
Iteration: 3, Func. Count: 48, Neg. LLF: 175.86458679806162
Iteration: 4, Func. Count: 64, Neg. LLF: 156.39143354516477
Iteration: 5, Func. Count: 80, Neg. LLF: 157.43796269493728
Iteration: 6, Func. Count: 96, Neg. LLF: 152.1723893721424
Iteration: 7, Func. Count: 112, Neg. LLF: 150.50771919083974
Iteration: 8, Func. Count: 127, Neg. LLF: 151.08953394161327
Iteration: 9, Func. Count: 143, Neg. LLF: 151.5553997655052
Iteration: 10, Func. Count: 159, Neg. LLF: 149.90663793353357
Iteration: 11, Func. Count: 174, Neg. LLF: 149.89833967879386
Iteration: 12, Func. Count: 189, Neg. LLF: 149.8766433539527
Iteration: 13, Func. Count: 204, Neg. LLF: 149.87434767612476
Iteration: 14, Func. Count: 219, Neg. LLF: 149.87322661309477
Iteration: 15, Func. Count: 234, Neg. LLF: 149.8720103381594
Iteration: 16, Func. Count: 249, Neg. LLF: 149.8716034782583
Iteration: 17, Func. Count: 264, Neg. LLF: 149.8712580135589
Iteration: 18, Func. Count: 279, Neg. LLF: 149.87114390887078
Iteration: 19, Func. Count: 294, Neg. LLF: 149.87111326623426
Iteration: 20, Func. Count: 309, Neg. LLF: 149.8711075239644
Iteration: 21, Func. Count: 324, Neg. LLF: 149.8711064683186
Iteration: 22, Func. Count: 338, Neg. LLF: 149.87110641823836
Optimization terminated successfully (Exit mode 0)
Current function value: 149.8711064683186
Iterations: 22
Function evaluations: 338
Gradient evaluations: 22
Iteration: 1, Func. Count: 9, Neg. LLF: 378.12346145583126
Iteration: 2, Func. Count: 18, Neg. LLF: 182.97380761545614
Iteration: 3, Func. Count: 27, Neg. LLF: 151.4065583619239
Iteration: 4, Func. Count: 35, Neg. LLF: 189.19770155199217
Iteration: 5, Func. Count: 44, Neg. LLF: 152.01274358459284
Iteration: 6, Func. Count: 53, Neg. LLF: 151.92242968380867
Iteration: 7, Func. Count: 62, Neg. LLF: 150.35306144821763
Iteration: 8, Func. Count: 70, Neg. LLF: 150.22154103853885
Iteration: 9, Func. Count: 78, Neg. LLF: 150.21770765972715
Iteration: 10, Func. Count: 87, Neg. LLF: 150.20711309975187
Iteration: 11, Func. Count: 95, Neg. LLF: 150.20570699307476
Iteration: 12, Func. Count: 103, Neg. LLF: 150.20535495015832
Iteration: 13, Func. Count: 111, Neg. LLF: 150.2052394960027
Iteration: 14, Func. Count: 119, Neg. LLF: 150.2052343863589
Iteration: 15, Func. Count: 126, Neg. LLF: 150.2052343333628
Optimization terminated successfully (Exit mode 0)
Current function value: 150.2052343863589
Iterations: 15
Function evaluations: 126
Gradient evaluations: 15
Iteration: 1, Func. Count: 5, Neg. LLF: 158.6947109512854
Iteration: 2, Func. Count: 9, Neg. LLF: 160.41247921125205
Iteration: 3, Func. Count: 14, Neg. LLF: 156.6943242788987
Iteration: 4, Func. Count: 18, Neg. LLF: 156.58950798582592
Iteration: 5, Func. Count: 22, Neg. LLF: 156.5199974129395
Iteration: 6, Func. Count: 26, Neg. LLF: 156.51902932093688
Iteration: 7, Func. Count: 30, Neg. LLF: 156.51864155512374
Iteration: 8, Func. Count: 34, Neg. LLF: 156.5180920854582
Iteration: 9, Func. Count: 38, Neg. LLF: 156.5178483996645
Iteration: 10, Func. Count: 42, Neg. LLF: 156.51779749109667
Iteration: 11, Func. Count: 46, Neg. LLF: 156.517794813823
Iteration: 12, Func. Count: 49, Neg. LLF: 156.51779481382607
Optimization terminated successfully (Exit mode 0)
Current function value: 156.517794813823
Iterations: 12
Function evaluations: 49
Gradient evaluations: 12
Iteration: 1, Func. Count: 6, Neg. LLF: 638.6149054870458
Iteration: 2, Func. Count: 12, Neg. LLF: 149.7827013313632
Iteration: 3, Func. Count: 18, Neg. LLF: 148.9742798811676
Iteration: 4, Func. Count: 23, Neg. LLF: 148.96766442322368
Iteration: 5, Func. Count: 28, Neg. LLF: 148.9538279059983
Iteration: 6, Func. Count: 33, Neg. LLF: 148.95366198606538
Iteration: 7, Func. Count: 38, Neg. LLF: 148.95366115197277
Optimization terminated successfully (Exit mode 0)
Current function value: 148.95366115197277
Iterations: 7
Function evaluations: 38
Gradient evaluations: 7
Iteration: 1, Func. Count: 7, Neg. LLF: 314.82232603950575
Iteration: 2, Func. Count: 14, Neg. LLF: 149.81234730409622
Iteration: 3, Func. Count: 20, Neg. LLF: 149.93848460021664
Iteration: 4, Func. Count: 27, Neg. LLF: 149.0149323897582
Iteration: 5, Func. Count: 34, Neg. LLF: 148.9558125550213
Iteration: 6, Func. Count: 40, Neg. LLF: 148.95379047911297
Iteration: 7, Func. Count: 46, Neg. LLF: 148.95366260959983
Iteration: 8, Func. Count: 52, Neg. LLF: 148.95366131535957
Iteration: 9, Func. Count: 57, Neg. LLF: 148.953661063422
Optimization terminated successfully (Exit mode 0)
Current function value: 148.95366131535957
Iterations: 9
Function evaluations: 57
Gradient evaluations: 9
Iteration: 1, Func. Count: 8, Neg. LLF: 270.08514017262166
Iteration: 2, Func. Count: 16, Neg. LLF: 298.0282015824101
Iteration: 3, Func. Count: 24, Neg. LLF: 149.44762017548086
Iteration: 4, Func. Count: 31, Neg. LLF: 149.29238982191467
Iteration: 5, Func. Count: 39, Neg. LLF: 148.9714501905268
Iteration: 6, Func. Count: 47, Neg. LLF: 148.9165069747814
Iteration: 7, Func. Count: 54, Neg. LLF: 148.91461096069875
Iteration: 8, Func. Count: 61, Neg. LLF: 148.9142977495622
Iteration: 9, Func. Count: 68, Neg. LLF: 148.91415521126177
Iteration: 10, Func. Count: 75, Neg. LLF: 148.91414767871413
Iteration: 11, Func. Count: 82, Neg. LLF: 148.9141469555963
Optimization terminated successfully (Exit mode 0)
Current function value: 148.9141469555963
Iterations: 11
Function evaluations: 82
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 207.74935890236182
Iteration: 2, Func. Count: 18, Neg. LLF: 235.18849907001726
Iteration: 3, Func. Count: 27, Neg. LLF: 152.797934986677
Iteration: 4, Func. Count: 36, Neg. LLF: 151.27433940686262
Iteration: 5, Func. Count: 45, Neg. LLF: 149.28971718259328
Iteration: 6, Func. Count: 53, Neg. LLF: 149.1416422696484
Iteration: 7, Func. Count: 61, Neg. LLF: 149.253085260428
Iteration: 8, Func. Count: 70, Neg. LLF: 149.05744953470932
Iteration: 9, Func. Count: 78, Neg. LLF: 148.99370368582314
Iteration: 10, Func. Count: 86, Neg. LLF: 148.97867896306062
Iteration: 11, Func. Count: 94, Neg. LLF: 148.96161236482084
Iteration: 12, Func. Count: 102, Neg. LLF: 148.93180086422862
Iteration: 13, Func. Count: 110, Neg. LLF: 148.91913243895058
Iteration: 14, Func. Count: 118, Neg. LLF: 148.9145466420708
Iteration: 15, Func. Count: 126, Neg. LLF: 148.9141698210122
Iteration: 16, Func. Count: 134, Neg. LLF: 148.91414938570045
Iteration: 17, Func. Count: 142, Neg. LLF: 148.91414762311726
Iteration: 18, Func. Count: 150, Neg. LLF: 148.91414694856022
Optimization terminated successfully (Exit mode 0)
Current function value: 148.91414694856022
Iterations: 18
Function evaluations: 150
Gradient evaluations: 18
Iteration: 1, Func. Count: 6, Neg. LLF: 163.02311878399246
Iteration: 2, Func. Count: 12, Neg. LLF: 156.0504670969588
Iteration: 3, Func. Count: 18, Neg. LLF: 159.29960517148027
Iteration: 4, Func. Count: 24, Neg. LLF: 154.1670668138472
Iteration: 5, Func. Count: 29, Neg. LLF: 154.02524162553692
Iteration: 6, Func. Count: 34, Neg. LLF: 153.7454467697814
Iteration: 7, Func. Count: 39, Neg. LLF: 153.67314587471915
Iteration: 8, Func. Count: 44, Neg. LLF: 153.59240986475777
Iteration: 9, Func. Count: 49, Neg. LLF: 153.38760928771663
Iteration: 10, Func. Count: 54, Neg. LLF: 153.37582966460718
Iteration: 11, Func. Count: 59, Neg. LLF: 153.37452933412314
Iteration: 12, Func. Count: 64, Neg. LLF: 153.37449643766172
Iteration: 13, Func. Count: 68, Neg. LLF: 153.37449643635617
Optimization terminated successfully (Exit mode 0)
Current function value: 153.37449643766172
Iterations: 13
Function evaluations: 68
Gradient evaluations: 13
Iteration: 1, Func. Count: 7, Neg. LLF: 510.5805563546527
Iteration: 2, Func. Count: 14, Neg. LLF: 149.35104172040738
Iteration: 3, Func. Count: 20, Neg. LLF: 148.9924474431083
Iteration: 4, Func. Count: 26, Neg. LLF: 150.2558649036857
Iteration: 5, Func. Count: 33, Neg. LLF: 148.98901523932943
Iteration: 6, Func. Count: 40, Neg. LLF: 148.93680042780255
Iteration: 7, Func. Count: 46, Neg. LLF: 148.9364390564323
Iteration: 8, Func. Count: 52, Neg. LLF: 148.93643594740013
Iteration: 9, Func. Count: 57, Neg. LLF: 148.9364357057937
Optimization terminated successfully (Exit mode 0)
Current function value: 148.93643594740013
Iterations: 9
Function evaluations: 57
Gradient evaluations: 9
Iteration: 1, Func. Count: 8, Neg. LLF: 208.73488266624733
Iteration: 2, Func. Count: 16, Neg. LLF: 158.8167391592815
Iteration: 3, Func. Count: 24, Neg. LLF: 149.94859070830213
Iteration: 4, Func. Count: 32, Neg. LLF: 152.40319250308443
Iteration: 5, Func. Count: 40, Neg. LLF: 153.543107771691
Iteration: 6, Func. Count: 48, Neg. LLF: 152.81737550632675
Iteration: 7, Func. Count: 56, Neg. LLF: 150.15902804072857
Iteration: 8, Func. Count: 64, Neg. LLF: 153.2038173577806
Iteration: 9, Func. Count: 72, Neg. LLF: 149.22700429104952
Iteration: 10, Func. Count: 80, Neg. LLF: 148.9654609423878
Iteration: 11, Func. Count: 88, Neg. LLF: 148.52721299105372
Iteration: 12, Func. Count: 96, Neg. LLF: 150.22936595889692
Iteration: 13, Func. Count: 104, Neg. LLF: 148.44964431981202
Iteration: 14, Func. Count: 111, Neg. LLF: 148.44900458901526
Iteration: 15, Func. Count: 118, Neg. LLF: 148.4484813997092
Iteration: 16, Func. Count: 125, Neg. LLF: 148.4472898552053
Iteration: 17, Func. Count: 132, Neg. LLF: 148.44562045752596
Iteration: 18, Func. Count: 139, Neg. LLF: 148.44373971514824
Iteration: 19, Func. Count: 146, Neg. LLF: 148.44267704714167
Iteration: 20, Func. Count: 153, Neg. LLF: 148.4423821249049
Iteration: 21, Func. Count: 160, Neg. LLF: 148.44234820651403
Iteration: 22, Func. Count: 167, Neg. LLF: 148.4423463262158
Iteration: 23, Func. Count: 173, Neg. LLF: 148.4423461899194
Optimization terminated successfully (Exit mode 0)
Current function value: 148.4423463262158
Iterations: 23
Function evaluations: 173
Gradient evaluations: 23
Iteration: 1, Func. Count: 9, Neg. LLF: 277.9683525761999
Iteration: 2, Func. Count: 18, Neg. LLF: 9056390.898767825
Iteration: 3, Func. Count: 27, Neg. LLF: 151.98153741145566
Iteration: 4, Func. Count: 36, Neg. LLF: 148.9389914356936
Iteration: 5, Func. Count: 44, Neg. LLF: 148.6338238029328
Iteration: 6, Func. Count: 52, Neg. LLF: 148.80396835547666
Iteration: 7, Func. Count: 61, Neg. LLF: 148.62992692940853
Iteration: 8, Func. Count: 70, Neg. LLF: 150.16463051579368
Iteration: 9, Func. Count: 79, Neg. LLF: 148.45901405662946
Iteration: 10, Func. Count: 87, Neg. LLF: 148.44644595326898
Iteration: 11, Func. Count: 95, Neg. LLF: 148.44361052459956
Iteration: 12, Func. Count: 103, Neg. LLF: 148.4427615464549
Iteration: 13, Func. Count: 111, Neg. LLF: 148.44236680880778
Iteration: 14, Func. Count: 119, Neg. LLF: 148.44234686464827
Iteration: 15, Func. Count: 127, Neg. LLF: 148.44234624238337
Optimization terminated successfully (Exit mode 0)
Current function value: 148.44234624238337
Iterations: 15
Function evaluations: 127
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 210.2531170044007
Iteration: 2, Func. Count: 20, Neg. LLF: 269.4569701289114
Iteration: 3, Func. Count: 30, Neg. LLF: 151.8507163230887
Iteration: 4, Func. Count: 40, Neg. LLF: 480.8925282273373
Iteration: 5, Func. Count: 50, Neg. LLF: 149.3931984478334
Iteration: 6, Func. Count: 59, Neg. LLF: 148.956357087008
Iteration: 7, Func. Count: 68, Neg. LLF: 149.58378535396446
Iteration: 8, Func. Count: 79, Neg. LLF: 148.66817591688695
Iteration: 9, Func. Count: 88, Neg. LLF: 148.6614621797913
Iteration: 10, Func. Count: 97, Neg. LLF: 148.7036422533194
Iteration: 11, Func. Count: 107, Neg. LLF: 148.65199634168744
Iteration: 12, Func. Count: 116, Neg. LLF: 148.64940685189268
Iteration: 13, Func. Count: 125, Neg. LLF: 148.64795615080075
Iteration: 14, Func. Count: 134, Neg. LLF: 148.6456682818254
Iteration: 15, Func. Count: 143, Neg. LLF: 148.63878479724966
Iteration: 16, Func. Count: 152, Neg. LLF: 148.6649721474612
Iteration: 17, Func. Count: 162, Neg. LLF: 148.61169449257488
Iteration: 18, Func. Count: 171, Neg. LLF: 148.56823366777942
Iteration: 19, Func. Count: 180, Neg. LLF: 148.72202289928188
Iteration: 20, Func. Count: 190, Neg. LLF: 148.46134910969639
Iteration: 21, Func. Count: 199, Neg. LLF: 148.4496917421948
Iteration: 22, Func. Count: 208, Neg. LLF: 148.44255976854404
Iteration: 23, Func. Count: 217, Neg. LLF: 148.44237545897752
Iteration: 24, Func. Count: 226, Neg. LLF: 148.44234729294473
Iteration: 25, Func. Count: 235, Neg. LLF: 148.44234646082833
Optimization terminated successfully (Exit mode 0)
Current function value: 148.44234646082833
Iterations: 25
Function evaluations: 235
Gradient evaluations: 25
Iteration: 1, Func. Count: 7, Neg. LLF: 162.4869388716722
Iteration: 2, Func. Count: 14, Neg. LLF: 156.0543908695138
Iteration: 3, Func. Count: 21, Neg. LLF: 159.03119943978598
Iteration: 4, Func. Count: 28, Neg. LLF: 154.55834275104368
Iteration: 5, Func. Count: 35, Neg. LLF: 153.96470827531382
Iteration: 6, Func. Count: 41, Neg. LLF: 153.75891635834418
Iteration: 7, Func. Count: 47, Neg. LLF: 153.58646533970492
Iteration: 8, Func. Count: 53, Neg. LLF: 153.46643394994538
Iteration: 9, Func. Count: 59, Neg. LLF: 153.3031880922889
Iteration: 10, Func. Count: 65, Neg. LLF: 153.17532144703512
Iteration: 11, Func. Count: 71, Neg. LLF: 153.1056877495721
Iteration: 12, Func. Count: 77, Neg. LLF: 153.0870557269226
Iteration: 13, Func. Count: 83, Neg. LLF: 153.0869374366684
Iteration: 14, Func. Count: 89, Neg. LLF: 153.08692077204404
Iteration: 15, Func. Count: 94, Neg. LLF: 153.0869207699491
Optimization terminated successfully (Exit mode 0)
Current function value: 153.08692077204404
Iterations: 15
Function evaluations: 94
Gradient evaluations: 15
Iteration: 1, Func. Count: 8, Neg. LLF: 377.41997584087085
Iteration: 2, Func. Count: 16, Neg. LLF: 150.6191808710018
Iteration: 3, Func. Count: 24, Neg. LLF: 149.02535008422888
Iteration: 4, Func. Count: 31, Neg. LLF: 149.36403305802338
Iteration: 5, Func. Count: 39, Neg. LLF: 148.969267730427
Iteration: 6, Func. Count: 47, Neg. LLF: 148.93646423521864
Iteration: 7, Func. Count: 54, Neg. LLF: 148.93643740052062
Iteration: 8, Func. Count: 61, Neg. LLF: 148.93643581846794
Iteration: 9, Func. Count: 67, Neg. LLF: 148.93643557692636
Optimization terminated successfully (Exit mode 0)
Current function value: 148.93643581846794
Iterations: 9
Function evaluations: 67
Gradient evaluations: 9
Iteration: 1, Func. Count: 9, Neg. LLF: 189.43372951582026
Iteration: 2, Func. Count: 18, Neg. LLF: 162.20460548560445
Iteration: 3, Func. Count: 27, Neg. LLF: 149.5013923839185
Iteration: 4, Func. Count: 36, Neg. LLF: 152.95858162987554
Iteration: 5, Func. Count: 45, Neg. LLF: 153.4774393426197
Iteration: 6, Func. Count: 54, Neg. LLF: 150.3476162471955
Iteration: 7, Func. Count: 63, Neg. LLF: 149.3487535625803
Iteration: 8, Func. Count: 72, Neg. LLF: 154.3800373032895
Iteration: 9, Func. Count: 81, Neg. LLF: 148.63497899959225
Iteration: 10, Func. Count: 90, Neg. LLF: 148.44960551273573
Iteration: 11, Func. Count: 98, Neg. LLF: 148.44665662475657
Iteration: 12, Func. Count: 106, Neg. LLF: 148.44399578398122
Iteration: 13, Func. Count: 114, Neg. LLF: 148.47271766831082
Iteration: 14, Func. Count: 123, Neg. LLF: 148.44170178101047
Iteration: 15, Func. Count: 131, Neg. LLF: 148.4387783279892
Iteration: 16, Func. Count: 139, Neg. LLF: 148.43865818186572
Iteration: 17, Func. Count: 147, Neg. LLF: 148.43865460070222
Iteration: 18, Func. Count: 154, Neg. LLF: 148.43865447171174
Optimization terminated successfully (Exit mode 0)
Current function value: 148.43865460070222
Iterations: 18
Function evaluations: 154
Gradient evaluations: 18
Iteration: 1, Func. Count: 10, Neg. LLF: 213.0970496272406
Iteration: 2, Func. Count: 20, Neg. LLF: 269.9749242577825
Iteration: 3, Func. Count: 30, Neg. LLF: 153.8170441381059
Iteration: 4, Func. Count: 40, Neg. LLF: 148.7324758224628
Iteration: 5, Func. Count: 49, Neg. LLF: 148.91133322335128
Iteration: 6, Func. Count: 59, Neg. LLF: 148.55009845078368
Iteration: 7, Func. Count: 68, Neg. LLF: 149.6606804612483
Iteration: 8, Func. Count: 78, Neg. LLF: 148.50025924004922
Iteration: 9, Func. Count: 88, Neg. LLF: 150.37380852260864
Iteration: 10, Func. Count: 98, Neg. LLF: 148.4450957569525
Iteration: 11, Func. Count: 107, Neg. LLF: 148.44149333062404
Iteration: 12, Func. Count: 116, Neg. LLF: 148.43898324960793
Iteration: 13, Func. Count: 125, Neg. LLF: 148.438705665753
Iteration: 14, Func. Count: 134, Neg. LLF: 148.4386655848372
Iteration: 15, Func. Count: 143, Neg. LLF: 148.4386572896076
Iteration: 16, Func. Count: 152, Neg. LLF: 148.43865475699312
Iteration: 17, Func. Count: 160, Neg. LLF: 148.4386546320068
Optimization terminated successfully (Exit mode 0)
Current function value: 148.43865475699312
Iterations: 17
Function evaluations: 160
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 207.58541921960628
Iteration: 2, Func. Count: 22, Neg. LLF: 282.010076859337
Iteration: 3, Func. Count: 33, Neg. LLF: 152.765784725659
Iteration: 4, Func. Count: 44, Neg. LLF: 161.86542944038533
Iteration: 5, Func. Count: 55, Neg. LLF: 149.297572228708
Iteration: 6, Func. Count: 65, Neg. LLF: 148.92271243046952
Iteration: 7, Func. Count: 75, Neg. LLF: 153.45683815520513
Iteration: 8, Func. Count: 87, Neg. LLF: 148.71524439884112
Iteration: 9, Func. Count: 97, Neg. LLF: 148.7231206880549
Iteration: 10, Func. Count: 108, Neg. LLF: 148.6647403231296
Iteration: 11, Func. Count: 118, Neg. LLF: 148.66409372412792
Iteration: 12, Func. Count: 129, Neg. LLF: 148.64996250464912
Iteration: 13, Func. Count: 139, Neg. LLF: 148.6478968862953
Iteration: 14, Func. Count: 149, Neg. LLF: 148.64618521055027
Iteration: 15, Func. Count: 159, Neg. LLF: 148.6432659019706
Iteration: 16, Func. Count: 169, Neg. LLF: 148.70048967031323
Iteration: 17, Func. Count: 180, Neg. LLF: 148.66330423200847
Iteration: 18, Func. Count: 191, Neg. LLF: 148.57076861601138
Iteration: 19, Func. Count: 201, Neg. LLF: 148.48110936713252
Iteration: 20, Func. Count: 211, Neg. LLF: 148.46849787526767
Iteration: 21, Func. Count: 221, Neg. LLF: 148.4501904601355
Iteration: 22, Func. Count: 231, Neg. LLF: 148.44782686350197
Iteration: 23, Func. Count: 241, Neg. LLF: 148.4438120565527
Iteration: 24, Func. Count: 251, Neg. LLF: 148.4388019151299
Iteration: 25, Func. Count: 261, Neg. LLF: 148.43868944929392
Iteration: 26, Func. Count: 271, Neg. LLF: 148.43865614818796
Iteration: 27, Func. Count: 281, Neg. LLF: 148.43865496115464
Iteration: 28, Func. Count: 290, Neg. LLF: 148.4386548632599
Optimization terminated successfully (Exit mode 0)
Current function value: 148.43865496115464
Iterations: 28
Function evaluations: 290
Gradient evaluations: 28
Iteration: 1, Func. Count: 8, Neg. LLF: 158.98728463099016
Iteration: 2, Func. Count: 16, Neg. LLF: 154.53245366104724
Iteration: 3, Func. Count: 24, Neg. LLF: 153.5399654725444
Iteration: 4, Func. Count: 33, Neg. LLF: 152.26327519641828
Iteration: 5, Func. Count: 41, Neg. LLF: 151.88065701412606
Iteration: 6, Func. Count: 48, Neg. LLF: 151.61841695698735
Iteration: 7, Func. Count: 55, Neg. LLF: 151.40525949484692
Iteration: 8, Func. Count: 62, Neg. LLF: 151.06428370171014
Iteration: 9, Func. Count: 69, Neg. LLF: 150.97197524202545
Iteration: 10, Func. Count: 76, Neg. LLF: 150.93767179774952
Iteration: 11, Func. Count: 83, Neg. LLF: 150.93598624398996
Iteration: 12, Func. Count: 91, Neg. LLF: 150.92251779018252
Iteration: 13, Func. Count: 98, Neg. LLF: 150.92134786676
Iteration: 14, Func. Count: 105, Neg. LLF: 150.92063001647617
Iteration: 15, Func. Count: 112, Neg. LLF: 150.9206189114521
Iteration: 16, Func. Count: 118, Neg. LLF: 150.9206189112649
Optimization terminated successfully (Exit mode 0)
Current function value: 150.9206189114521
Iterations: 16
Function evaluations: 118
Gradient evaluations: 16
Iteration: 1, Func. Count: 9, Neg. LLF: 328.59253376887295
Iteration: 2, Func. Count: 18, Neg. LLF: 291.08854987829903
Iteration: 3, Func. Count: 27, Neg. LLF: 148.42398822098576
Iteration: 4, Func. Count: 35, Neg. LLF: 180.7799306654583
Iteration: 5, Func. Count: 44, Neg. LLF: 148.06220735117114
Iteration: 6, Func. Count: 52, Neg. LLF: 149.0972510815927
Iteration: 7, Func. Count: 61, Neg. LLF: 147.9044858965342
Iteration: 8, Func. Count: 70, Neg. LLF: 147.78659529887062
Iteration: 9, Func. Count: 78, Neg. LLF: 147.7853305064151
Iteration: 10, Func. Count: 86, Neg. LLF: 147.78484520871223
Iteration: 11, Func. Count: 94, Neg. LLF: 147.78481027611411
Iteration: 12, Func. Count: 102, Neg. LLF: 147.7848057801365
Iteration: 13, Func. Count: 109, Neg. LLF: 147.78480568214005
Optimization terminated successfully (Exit mode 0)
Current function value: 147.7848057801365
Iterations: 13
Function evaluations: 109
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 268.4287196353325
Iteration: 2, Func. Count: 20, Neg. LLF: 320.97734794992573
Iteration: 3, Func. Count: 30, Neg. LLF: 149.83319038988267
Iteration: 4, Func. Count: 40, Neg. LLF: 148.0508939425424
Iteration: 5, Func. Count: 49, Neg. LLF: 148.07855215447012
Iteration: 6, Func. Count: 59, Neg. LLF: 148.4586401352156
Iteration: 7, Func. Count: 69, Neg. LLF: 147.78986659470476
Iteration: 8, Func. Count: 78, Neg. LLF: 147.78128658683647
Iteration: 9, Func. Count: 87, Neg. LLF: 147.79149294026314
Iteration: 10, Func. Count: 97, Neg. LLF: 147.7692454331374
Iteration: 11, Func. Count: 106, Neg. LLF: 147.76604333976402
Iteration: 12, Func. Count: 115, Neg. LLF: 147.76464657383457
Iteration: 13, Func. Count: 124, Neg. LLF: 147.76454114003667
Iteration: 14, Func. Count: 133, Neg. LLF: 147.76453521013784
Iteration: 15, Func. Count: 142, Neg. LLF: 147.76453409774302
Iteration: 16, Func. Count: 150, Neg. LLF: 147.76453400739302
Optimization terminated successfully (Exit mode 0)
Current function value: 147.76453409774302
Iterations: 16
Function evaluations: 150
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 188.67277060766838
Iteration: 2, Func. Count: 22, Neg. LLF: 295.21496103832675
Iteration: 3, Func. Count: 33, Neg. LLF: 148.60714202157993
Iteration: 4, Func. Count: 43, Neg. LLF: 280.18660620042976
Iteration: 5, Func. Count: 54, Neg. LLF: 148.93235182458972
Iteration: 6, Func. Count: 65, Neg. LLF: 149.06540845749845
Iteration: 7, Func. Count: 76, Neg. LLF: 147.872768226416
Iteration: 8, Func. Count: 86, Neg. LLF: 147.83338749976915
Iteration: 9, Func. Count: 96, Neg. LLF: 147.85234437716377
Iteration: 10, Func. Count: 107, Neg. LLF: 147.77372316491412
Iteration: 11, Func. Count: 117, Neg. LLF: 147.77069304023192
Iteration: 12, Func. Count: 127, Neg. LLF: 147.76702621252426
Iteration: 13, Func. Count: 137, Neg. LLF: 147.76531980913612
Iteration: 14, Func. Count: 147, Neg. LLF: 147.7647306167251
Iteration: 15, Func. Count: 157, Neg. LLF: 147.76455148056297
Iteration: 16, Func. Count: 167, Neg. LLF: 147.76453464131794
Iteration: 17, Func. Count: 177, Neg. LLF: 147.76453395302272
Optimization terminated successfully (Exit mode 0)
Current function value: 147.76453395302272
Iterations: 17
Function evaluations: 177
Gradient evaluations: 17
Iteration: 1, Func. Count: 12, Neg. LLF: 194.37890467117458
Iteration: 2, Func. Count: 24, Neg. LLF: 214.4858938615754
Iteration: 3, Func. Count: 36, Neg. LLF: 188.79036774501589
Iteration: 4, Func. Count: 48, Neg. LLF: 179.2782880877553
Iteration: 5, Func. Count: 60, Neg. LLF: 151.65371956887242
Iteration: 6, Func. Count: 72, Neg. LLF: 148.76038851189816
Iteration: 7, Func. Count: 84, Neg. LLF: 148.09300971583693
Iteration: 8, Func. Count: 95, Neg. LLF: 147.95747627932053
Iteration: 9, Func. Count: 106, Neg. LLF: 147.79566687081416
Iteration: 10, Func. Count: 117, Neg. LLF: 147.78243857024867
Iteration: 11, Func. Count: 128, Neg. LLF: 147.76518054651348
Iteration: 12, Func. Count: 139, Neg. LLF: 147.76459813843204
Iteration: 13, Func. Count: 150, Neg. LLF: 147.764579150011
Iteration: 14, Func. Count: 161, Neg. LLF: 147.76456536841263
Iteration: 15, Func. Count: 172, Neg. LLF: 147.76453974442404
Iteration: 16, Func. Count: 183, Neg. LLF: 147.76453455061053
Iteration: 17, Func. Count: 194, Neg. LLF: 147.7645338999932
Optimization terminated successfully (Exit mode 0)
Current function value: 147.7645338999932
Iterations: 17
Function evaluations: 194
Gradient evaluations: 17
Iteration: 1, Func. Count: 5, Neg. LLF: 156.2190485931639
Iteration: 2, Func. Count: 9, Neg. LLF: 156.21805433139824
Iteration: 3, Func. Count: 14, Neg. LLF: 156.05642159280308
Iteration: 4, Func. Count: 18, Neg. LLF: 155.86547214699775
Iteration: 5, Func. Count: 22, Neg. LLF: 155.80481174650313
Iteration: 6, Func. Count: 26, Neg. LLF: 155.66897823604592
Iteration: 7, Func. Count: 30, Neg. LLF: 155.552398247381
Iteration: 8, Func. Count: 34, Neg. LLF: 155.54278401077607
Iteration: 9, Func. Count: 38, Neg. LLF: 155.54254833623764
Iteration: 10, Func. Count: 42, Neg. LLF: 155.5425470437324
Iteration: 11, Func. Count: 45, Neg. LLF: 155.54254705195876
Optimization terminated successfully (Exit mode 0)
Current function value: 155.5425470437324
Iterations: 11
Function evaluations: 45
Gradient evaluations: 11
Iteration: 1, Func. Count: 6, Neg. LLF: 187.78653434723844
Iteration: 2, Func. Count: 12, Neg. LLF: 169.38295894935624
Iteration: 3, Func. Count: 19, Neg. LLF: 154.01634979321324
Iteration: 4, Func. Count: 24, Neg. LLF: 153.9799387915868
Iteration: 5, Func. Count: 30, Neg. LLF: 153.89710526582988
Iteration: 6, Func. Count: 35, Neg. LLF: 153.89679938767463
Iteration: 7, Func. Count: 40, Neg. LLF: 153.89679233194934
Iteration: 8, Func. Count: 44, Neg. LLF: 153.89679218348616
Optimization terminated successfully (Exit mode 0)
Current function value: 153.89679233194934
Iterations: 8
Function evaluations: 44
Gradient evaluations: 8
Iteration: 1, Func. Count: 7, Neg. LLF: 170.34049849932236
Iteration: 2, Func. Count: 14, Neg. LLF: 155.9481885470537
Iteration: 3, Func. Count: 21, Neg. LLF: 154.26631848314224
Iteration: 4, Func. Count: 27, Neg. LLF: 157.59502389387353
Iteration: 5, Func. Count: 34, Neg. LLF: 153.70179007781584
Iteration: 6, Func. Count: 40, Neg. LLF: 153.7226894542468
Iteration: 7, Func. Count: 47, Neg. LLF: 153.66245353020108
Iteration: 8, Func. Count: 53, Neg. LLF: 153.64056981386662
Iteration: 9, Func. Count: 59, Neg. LLF: 153.63403048237896
Iteration: 10, Func. Count: 65, Neg. LLF: 153.6337825873507
Iteration: 11, Func. Count: 71, Neg. LLF: 153.63376501145822
Iteration: 12, Func. Count: 76, Neg. LLF: 153.63376488992108
Optimization terminated successfully (Exit mode 0)
Current function value: 153.63376501145822
Iterations: 12
Function evaluations: 76
Gradient evaluations: 12
Iteration: 1, Func. Count: 8, Neg. LLF: 167.76704957603584
Iteration: 2, Func. Count: 16, Neg. LLF: 154.66063878306954
Iteration: 3, Func. Count: 24, Neg. LLF: 155.3573383651998
Iteration: 4, Func. Count: 32, Neg. LLF: 156.26941047291828
Iteration: 5, Func. Count: 40, Neg. LLF: 153.1478476484693
Iteration: 6, Func. Count: 47, Neg. LLF: 153.11311601332238
Iteration: 7, Func. Count: 54, Neg. LLF: 153.1119438867675
Iteration: 8, Func. Count: 61, Neg. LLF: 153.11162095065959
Iteration: 9, Func. Count: 68, Neg. LLF: 153.11133677406576
Iteration: 10, Func. Count: 75, Neg. LLF: 153.1113295624105
Iteration: 11, Func. Count: 82, Neg. LLF: 153.11132840708623
Iteration: 12, Func. Count: 88, Neg. LLF: 153.11132833921573
Optimization terminated successfully (Exit mode 0)
Current function value: 153.11132840708623
Iterations: 12
Function evaluations: 88
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 166.34279514200279
Iteration: 2, Func. Count: 18, Neg. LLF: 154.15134455573923
Iteration: 3, Func. Count: 26, Neg. LLF: 158.3788565335125
Iteration: 4, Func. Count: 35, Neg. LLF: 163.4682567647629
Iteration: 5, Func. Count: 44, Neg. LLF: 153.26553626820748
Iteration: 6, Func. Count: 53, Neg. LLF: 153.19840682501587
Iteration: 7, Func. Count: 62, Neg. LLF: 153.11785861615647
Iteration: 8, Func. Count: 70, Neg. LLF: 153.11263340810024
Iteration: 9, Func. Count: 78, Neg. LLF: 153.11149530543014
Iteration: 10, Func. Count: 86, Neg. LLF: 153.11139023083192
Iteration: 11, Func. Count: 94, Neg. LLF: 153.11135886936674
Iteration: 12, Func. Count: 102, Neg. LLF: 153.11133063103904
Iteration: 13, Func. Count: 110, Neg. LLF: 153.11132851217693
Iteration: 14, Func. Count: 117, Neg. LLF: 153.11132852315095
Optimization terminated successfully (Exit mode 0)
Current function value: 153.11132851217693
Iterations: 14
Function evaluations: 117
Gradient evaluations: 14
Iteration: 1, Func. Count: 6, Neg. LLF: 157.0363435155173
Iteration: 2, Func. Count: 12, Neg. LLF: 155.54632628282698
Iteration: 3, Func. Count: 18, Neg. LLF: 154.14558295971548
Iteration: 4, Func. Count: 23, Neg. LLF: 154.12442963306623
Iteration: 5, Func. Count: 29, Neg. LLF: 154.3628786801297
Iteration: 6, Func. Count: 35, Neg. LLF: 153.81439392852215
Iteration: 7, Func. Count: 40, Neg. LLF: 153.76367635656555
Iteration: 8, Func. Count: 45, Neg. LLF: 153.54659297459352
Iteration: 9, Func. Count: 50, Neg. LLF: 153.48049262698575
Iteration: 10, Func. Count: 55, Neg. LLF: 153.46600894636975
Iteration: 11, Func. Count: 60, Neg. LLF: 153.46544739323414
Iteration: 12, Func. Count: 65, Neg. LLF: 153.46541205338502
Iteration: 13, Func. Count: 70, Neg. LLF: 153.4654113790073
Optimization terminated successfully (Exit mode 0)
Current function value: 153.4654113790073
Iterations: 13
Function evaluations: 70
Gradient evaluations: 13
Iteration: 1, Func. Count: 7, Neg. LLF: 655.3944581248459
Iteration: 2, Func. Count: 14, Neg. LLF: 149.3401454975537
Iteration: 3, Func. Count: 20, Neg. LLF: 149.04197240899492
Iteration: 4, Func. Count: 26, Neg. LLF: 148.96456265540095
Iteration: 5, Func. Count: 32, Neg. LLF: 148.95739529494844
Iteration: 6, Func. Count: 38, Neg. LLF: 148.9537194099674
Iteration: 7, Func. Count: 44, Neg. LLF: 148.95366156278627
Iteration: 8, Func. Count: 49, Neg. LLF: 148.95366130604896
Optimization terminated successfully (Exit mode 0)
Current function value: 148.95366156278627
Iterations: 8
Function evaluations: 49
Gradient evaluations: 8
Iteration: 1, Func. Count: 8, Neg. LLF: 318.9746302550135
Iteration: 2, Func. Count: 16, Neg. LLF: 149.55712689110416
Iteration: 3, Func. Count: 23, Neg. LLF: 152.45754142334744
Iteration: 4, Func. Count: 31, Neg. LLF: 149.91919251895294
Iteration: 5, Func. Count: 39, Neg. LLF: 173.1546552077268
Iteration: 6, Func. Count: 48, Neg. LLF: 149.02873584063906
Iteration: 7, Func. Count: 55, Neg. LLF: 148.98640929463858
Iteration: 8, Func. Count: 62, Neg. LLF: 148.95895039014135
Iteration: 9, Func. Count: 69, Neg. LLF: 148.9537032262981
Iteration: 10, Func. Count: 76, Neg. LLF: 148.95366244259228
Iteration: 11, Func. Count: 83, Neg. LLF: 148.95366114959833
Iteration: 12, Func. Count: 89, Neg. LLF: 148.95366089782559
Optimization terminated successfully (Exit mode 0)
Current function value: 148.95366114959833
Iterations: 12
Function evaluations: 89
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 316.9621774037837
Iteration: 2, Func. Count: 18, Neg. LLF: 149.4082706622872
Iteration: 3, Func. Count: 26, Neg. LLF: 150.68292077466464
Iteration: 4, Func. Count: 35, Neg. LLF: 158.78696303328144
Iteration: 5, Func. Count: 44, Neg. LLF: 170.1859181190474
Iteration: 6, Func. Count: 53, Neg. LLF: 148.8730387927065
Iteration: 7, Func. Count: 61, Neg. LLF: 148.85955347310363
Iteration: 8, Func. Count: 69, Neg. LLF: 148.8570613241332
Iteration: 9, Func. Count: 77, Neg. LLF: 148.8559797670482
Iteration: 10, Func. Count: 85, Neg. LLF: 148.85592652993367
Iteration: 11, Func. Count: 93, Neg. LLF: 148.85592568068347
Optimization terminated successfully (Exit mode 0)
Current function value: 148.85592568068347
Iterations: 11
Function evaluations: 93
Gradient evaluations: 11
Iteration: 1, Func. Count: 10, Neg. LLF: 214.88618366217167
Iteration: 2, Func. Count: 20, Neg. LLF: 150.95287680662318
Iteration: 3, Func. Count: 29, Neg. LLF: 152.35391190586085
Iteration: 4, Func. Count: 39, Neg. LLF: 150.5582690019046
Iteration: 5, Func. Count: 49, Neg. LLF: 163.0224561186483
Iteration: 6, Func. Count: 59, Neg. LLF: 151.9110035687235
Iteration: 7, Func. Count: 69, Neg. LLF: 149.0225271409372
Iteration: 8, Func. Count: 78, Neg. LLF: 150.0753153613679
Iteration: 9, Func. Count: 88, Neg. LLF: 148.87783830210762
Iteration: 10, Func. Count: 97, Neg. LLF: 148.85879156785762
Iteration: 11, Func. Count: 106, Neg. LLF: 148.85560256499966
Iteration: 12, Func. Count: 115, Neg. LLF: 148.85503682233502
Iteration: 13, Func. Count: 124, Neg. LLF: 148.8546668372589
Iteration: 14, Func. Count: 133, Neg. LLF: 148.85407439236485
Iteration: 15, Func. Count: 142, Neg. LLF: 148.854047120192
Iteration: 16, Func. Count: 151, Neg. LLF: 148.85404622592512
Optimization terminated successfully (Exit mode 0)
Current function value: 148.85404622592512
Iterations: 16
Function evaluations: 151
Gradient evaluations: 16
Iteration: 1, Func. Count: 7, Neg. LLF: 159.30454210240478
Iteration: 2, Func. Count: 14, Neg. LLF: 154.72273377126777
Iteration: 3, Func. Count: 21, Neg. LLF: 156.35439022303305
Iteration: 4, Func. Count: 28, Neg. LLF: 154.1196931365261
Iteration: 5, Func. Count: 35, Neg. LLF: 154.41433371117643
Iteration: 6, Func. Count: 42, Neg. LLF: 152.95296370807293
Iteration: 7, Func. Count: 48, Neg. LLF: 152.82787216703483
Iteration: 8, Func. Count: 54, Neg. LLF: 152.46632427553274
Iteration: 9, Func. Count: 60, Neg. LLF: 151.1684290996064
Iteration: 10, Func. Count: 66, Neg. LLF: 151.11700463595656
Iteration: 11, Func. Count: 73, Neg. LLF: 150.89353825807513
Iteration: 12, Func. Count: 79, Neg. LLF: 150.89213510395348
Iteration: 13, Func. Count: 85, Neg. LLF: 150.89131358811437
Iteration: 14, Func. Count: 91, Neg. LLF: 150.8912996156666
Iteration: 15, Func. Count: 97, Neg. LLF: 150.89129832148947
Iteration: 16, Func. Count: 102, Neg. LLF: 150.89129829277064
Optimization terminated successfully (Exit mode 0)
Current function value: 150.89129832148947
Iterations: 16
Function evaluations: 102
Gradient evaluations: 16
Iteration: 1, Func. Count: 8, Neg. LLF: 535.9247871722632
Iteration: 2, Func. Count: 16, Neg. LLF: 149.0786612302629
Iteration: 3, Func. Count: 23, Neg. LLF: 152.78297806151664
Iteration: 4, Func. Count: 31, Neg. LLF: 148.9701081736934
Iteration: 5, Func. Count: 39, Neg. LLF: 148.94344541417277
Iteration: 6, Func. Count: 47, Neg. LLF: 148.93661540408377
Iteration: 7, Func. Count: 54, Neg. LLF: 148.9364363931785
Iteration: 8, Func. Count: 61, Neg. LLF: 148.9364357787511
Optimization terminated successfully (Exit mode 0)
Current function value: 148.9364357787511
Iterations: 8
Function evaluations: 61
Gradient evaluations: 8
Iteration: 1, Func. Count: 9, Neg. LLF: 191.06183895092244
Iteration: 2, Func. Count: 18, Neg. LLF: 153.23906601724994
Iteration: 3, Func. Count: 27, Neg. LLF: 148.89953563695215
Iteration: 4, Func. Count: 35, Neg. LLF: 149.03418706472144
Iteration: 5, Func. Count: 44, Neg. LLF: 150.73510550121566
Iteration: 6, Func. Count: 53, Neg. LLF: 149.34867223082335
Iteration: 7, Func. Count: 62, Neg. LLF: 148.98755217746475
Iteration: 8, Func. Count: 71, Neg. LLF: 148.44274931014195
Iteration: 9, Func. Count: 79, Neg. LLF: 148.43307679204213
Iteration: 10, Func. Count: 87, Neg. LLF: 148.43247261925558
Iteration: 11, Func. Count: 95, Neg. LLF: 148.43212032016538
Iteration: 12, Func. Count: 103, Neg. LLF: 148.43211030625486
Iteration: 13, Func. Count: 111, Neg. LLF: 148.43210935437415
Optimization terminated successfully (Exit mode 0)
Current function value: 148.43210935437415
Iterations: 13
Function evaluations: 111
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 347.7926462881707
Iteration: 2, Func. Count: 20, Neg. LLF: 244.57318702183755
Iteration: 3, Func. Count: 30, Neg. LLF: 148.93024406725579
Iteration: 4, Func. Count: 39, Neg. LLF: 150.8198529238738
Iteration: 5, Func. Count: 49, Neg. LLF: 151.72096636715574
Iteration: 6, Func. Count: 59, Neg. LLF: 151.73809837006607
Iteration: 7, Func. Count: 69, Neg. LLF: 148.4728773113929
Iteration: 8, Func. Count: 78, Neg. LLF: 148.70517401713636
Iteration: 9, Func. Count: 88, Neg. LLF: 148.4529551810696
Iteration: 10, Func. Count: 97, Neg. LLF: 148.4457966065016
Iteration: 11, Func. Count: 106, Neg. LLF: 148.4521852414233
Iteration: 12, Func. Count: 116, Neg. LLF: 148.43761997132833
Iteration: 13, Func. Count: 125, Neg. LLF: 148.4365896392563
Iteration: 14, Func. Count: 134, Neg. LLF: 148.43332921623394
Iteration: 15, Func. Count: 143, Neg. LLF: 148.43269990854563
Iteration: 16, Func. Count: 152, Neg. LLF: 148.43239791490925
Iteration: 17, Func. Count: 161, Neg. LLF: 148.43215225476
Iteration: 18, Func. Count: 170, Neg. LLF: 148.4321131206907
Iteration: 19, Func. Count: 179, Neg. LLF: 148.43210937265832
Iteration: 20, Func. Count: 187, Neg. LLF: 148.43210924530882
Optimization terminated successfully (Exit mode 0)
Current function value: 148.43210937265832
Iterations: 20
Function evaluations: 187
Gradient evaluations: 20
Iteration: 1, Func. Count: 11, Neg. LLF: 193.96642719758373
Iteration: 2, Func. Count: 22, Neg. LLF: 283.6814406440121
Iteration: 3, Func. Count: 33, Neg. LLF: 148.99599055254836
Iteration: 4, Func. Count: 43, Neg. LLF: 151.44428677792942
Iteration: 5, Func. Count: 54, Neg. LLF: 164.59389960767194
Iteration: 6, Func. Count: 65, Neg. LLF: 149.8657130877651
Iteration: 7, Func. Count: 76, Neg. LLF: 148.69254962989518
Iteration: 8, Func. Count: 86, Neg. LLF: 148.5875592414206
Iteration: 9, Func. Count: 96, Neg. LLF: 148.5317667651048
Iteration: 10, Func. Count: 106, Neg. LLF: 148.48254738641836
Iteration: 11, Func. Count: 116, Neg. LLF: 148.472193180937
Iteration: 12, Func. Count: 126, Neg. LLF: 148.4687740697566
Iteration: 13, Func. Count: 136, Neg. LLF: 148.4678936443973
Iteration: 14, Func. Count: 146, Neg. LLF: 148.46759118475063
Iteration: 15, Func. Count: 156, Neg. LLF: 148.46754868765186
Iteration: 16, Func. Count: 165, Neg. LLF: 148.46754859179453
Optimization terminated successfully (Exit mode 0)
Current function value: 148.46754868765186
Iterations: 16
Function evaluations: 165
Gradient evaluations: 16
Iteration: 1, Func. Count: 8, Neg. LLF: 158.98639251226072
Iteration: 2, Func. Count: 16, Neg. LLF: 154.89897272969193
Iteration: 3, Func. Count: 24, Neg. LLF: 155.69438004613633
Iteration: 4, Func. Count: 32, Neg. LLF: 154.67879199330562
Iteration: 5, Func. Count: 40, Neg. LLF: 157.1457141095193
Iteration: 6, Func. Count: 48, Neg. LLF: 152.81049514033967
Iteration: 7, Func. Count: 55, Neg. LLF: 152.64276585435468
Iteration: 8, Func. Count: 62, Neg. LLF: 152.22780176331273
Iteration: 9, Func. Count: 69, Neg. LLF: 151.05228743548295
Iteration: 10, Func. Count: 76, Neg. LLF: 150.3645482095848
Iteration: 11, Func. Count: 83, Neg. LLF: 151.11591165809952
Iteration: 12, Func. Count: 91, Neg. LLF: 150.8646885375299
Iteration: 13, Func. Count: 99, Neg. LLF: 149.86793507170196
Iteration: 14, Func. Count: 107, Neg. LLF: 149.79564956584187
Iteration: 15, Func. Count: 114, Neg. LLF: 149.7949466157712
Iteration: 16, Func. Count: 121, Neg. LLF: 149.7948734887189
Iteration: 17, Func. Count: 128, Neg. LLF: 149.79487101869177
Iteration: 18, Func. Count: 134, Neg. LLF: 149.79487098196196
Optimization terminated successfully (Exit mode 0)
Current function value: 149.79487101869177
Iterations: 18
Function evaluations: 134
Gradient evaluations: 18
Iteration: 1, Func. Count: 9, Neg. LLF: 382.57561695789525
Iteration: 2, Func. Count: 18, Neg. LLF: 149.09688599513495
Iteration: 3, Func. Count: 26, Neg. LLF: 152.27987926374374
Iteration: 4, Func. Count: 35, Neg. LLF: 149.05000840413936
Iteration: 5, Func. Count: 44, Neg. LLF: 148.9403463230502
Iteration: 6, Func. Count: 52, Neg. LLF: 148.9364902172929
Iteration: 7, Func. Count: 60, Neg. LLF: 148.9364374830793
Iteration: 8, Func. Count: 68, Neg. LLF: 148.93643652210054
Optimization terminated successfully (Exit mode 0)
Current function value: 148.93643652210054
Iterations: 8
Function evaluations: 68
Gradient evaluations: 8
Iteration: 1, Func. Count: 10, Neg. LLF: 185.12358835516054
Iteration: 2, Func. Count: 20, Neg. LLF: 159.93267859322864
Iteration: 3, Func. Count: 30, Neg. LLF: 148.9399111535192
Iteration: 4, Func. Count: 39, Neg. LLF: 149.29888005388852
Iteration: 5, Func. Count: 49, Neg. LLF: 149.81213979461253
Iteration: 6, Func. Count: 60, Neg. LLF: 148.62584808834728
Iteration: 7, Func. Count: 70, Neg. LLF: 150.3571583515628
Iteration: 8, Func. Count: 80, Neg. LLF: 148.4714878671934
Iteration: 9, Func. Count: 89, Neg. LLF: 148.53832951370077
Iteration: 10, Func. Count: 99, Neg. LLF: 148.4338586622519
Iteration: 11, Func. Count: 108, Neg. LLF: 148.43236399845927
Iteration: 12, Func. Count: 117, Neg. LLF: 148.45282082430236
Iteration: 13, Func. Count: 127, Neg. LLF: 148.4303268898985
Iteration: 14, Func. Count: 136, Neg. LLF: 148.43030064824728
Iteration: 15, Func. Count: 145, Neg. LLF: 148.43028311093383
Iteration: 16, Func. Count: 153, Neg. LLF: 148.43028298508386
Optimization terminated successfully (Exit mode 0)
Current function value: 148.43028311093383
Iterations: 16
Function evaluations: 153
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 192.63314017604387
Iteration: 2, Func. Count: 22, Neg. LLF: 223.8619855455179
Iteration: 3, Func. Count: 33, Neg. LLF: 150.02372072261608
Iteration: 4, Func. Count: 44, Neg. LLF: 148.7533928987568
Iteration: 5, Func. Count: 54, Neg. LLF: 149.26758894496288
Iteration: 6, Func. Count: 65, Neg. LLF: 148.93917880171693
Iteration: 7, Func. Count: 76, Neg. LLF: 148.52768979597985
Iteration: 8, Func. Count: 86, Neg. LLF: 148.51436857182793
Iteration: 9, Func. Count: 96, Neg. LLF: 148.6933444242242
Iteration: 10, Func. Count: 107, Neg. LLF: 148.8457737493582
Iteration: 11, Func. Count: 118, Neg. LLF: 148.812561017467
Iteration: 12, Func. Count: 129, Neg. LLF: 148.50501123919244
Iteration: 13, Func. Count: 140, Neg. LLF: 148.4969041028272
Iteration: 14, Func. Count: 151, Neg. LLF: 148.47035086611902
Iteration: 15, Func. Count: 161, Neg. LLF: 148.45298526083695
Iteration: 16, Func. Count: 171, Neg. LLF: 149.15481950597615
Iteration: 17, Func. Count: 182, Neg. LLF: 148.43718013341217
Iteration: 18, Func. Count: 192, Neg. LLF: 148.4316989063276
Iteration: 19, Func. Count: 202, Neg. LLF: 148.43063280222222
Iteration: 20, Func. Count: 212, Neg. LLF: 148.4303016362879
Iteration: 21, Func. Count: 222, Neg. LLF: 148.430287365411
Iteration: 22, Func. Count: 232, Neg. LLF: 148.43028346401982
Iteration: 23, Func. Count: 241, Neg. LLF: 148.43028334020855
Optimization terminated successfully (Exit mode 0)
Current function value: 148.43028346401982
Iterations: 23
Function evaluations: 241
Gradient evaluations: 23
Iteration: 1, Func. Count: 12, Neg. LLF: 168.04759639944228
Iteration: 2, Func. Count: 24, Neg. LLF: 187.21401341739335
Iteration: 3, Func. Count: 36, Neg. LLF: 149.8511471924841
Iteration: 4, Func. Count: 48, Neg. LLF: 157.799817758032
Iteration: 5, Func. Count: 60, Neg. LLF: 149.14862533313442
Iteration: 6, Func. Count: 71, Neg. LLF: 149.03951082268532
Iteration: 7, Func. Count: 83, Neg. LLF: 150.14843832088445
Iteration: 8, Func. Count: 95, Neg. LLF: 148.53485310106487
Iteration: 9, Func. Count: 106, Neg. LLF: 148.47509968005744
Iteration: 10, Func. Count: 117, Neg. LLF: 148.47147679074138
Iteration: 11, Func. Count: 128, Neg. LLF: 148.46944133344175
Iteration: 12, Func. Count: 139, Neg. LLF: 148.47929230417776
Iteration: 13, Func. Count: 151, Neg. LLF: 148.467415787615
Iteration: 14, Func. Count: 162, Neg. LLF: 148.4672757633092
Iteration: 15, Func. Count: 173, Neg. LLF: 148.46726766911397
Iteration: 16, Func. Count: 184, Neg. LLF: 148.46726677119156
Optimization terminated successfully (Exit mode 0)
Current function value: 148.46726677119156
Iterations: 16
Function evaluations: 184
Gradient evaluations: 16
Iteration: 1, Func. Count: 9, Neg. LLF: 155.90173681043626
Iteration: 2, Func. Count: 18, Neg. LLF: 154.79911979515686
Iteration: 3, Func. Count: 27, Neg. LLF: 152.27943975403906
Iteration: 4, Func. Count: 37, Neg. LLF: 152.4260478116894
Iteration: 5, Func. Count: 46, Neg. LLF: 151.36942549977206
Iteration: 6, Func. Count: 55, Neg. LLF: 151.7059629679981
Iteration: 7, Func. Count: 64, Neg. LLF: 150.85401923703412
Iteration: 8, Func. Count: 72, Neg. LLF: 149.8674079852641
Iteration: 9, Func. Count: 80, Neg. LLF: 150.97850310657745
Iteration: 10, Func. Count: 89, Neg. LLF: 150.0872286392996
Iteration: 11, Func. Count: 98, Neg. LLF: 148.6700177849182
Iteration: 12, Func. Count: 106, Neg. LLF: 148.6371089458627
Iteration: 13, Func. Count: 114, Neg. LLF: 148.6252846072559
Iteration: 14, Func. Count: 122, Neg. LLF: 148.62494571567316
Iteration: 15, Func. Count: 130, Neg. LLF: 148.62436375911352
Iteration: 16, Func. Count: 138, Neg. LLF: 148.62432721228717
Iteration: 17, Func. Count: 146, Neg. LLF: 148.6242740013482
Iteration: 18, Func. Count: 154, Neg. LLF: 148.6242731104823
Optimization terminated successfully (Exit mode 0)
Current function value: 148.6242731104823
Iterations: 18
Function evaluations: 154
Gradient evaluations: 18
Iteration: 1, Func. Count: 10, Neg. LLF: 372.76180307596144
Iteration: 2, Func. Count: 20, Neg. LLF: 158.5424509783354
Iteration: 3, Func. Count: 30, Neg. LLF: 148.38037214613198
Iteration: 4, Func. Count: 39, Neg. LLF: 151.8255150501862
Iteration: 5, Func. Count: 49, Neg. LLF: 173.36462335536126
Iteration: 6, Func. Count: 60, Neg. LLF: 149.00470341500593
Iteration: 7, Func. Count: 70, Neg. LLF: 147.8161684671049
Iteration: 8, Func. Count: 79, Neg. LLF: 147.81478795683498
Iteration: 9, Func. Count: 89, Neg. LLF: 147.76930014190148
Iteration: 10, Func. Count: 98, Neg. LLF: 147.76707819338105
Iteration: 11, Func. Count: 107, Neg. LLF: 147.766606455325
Iteration: 12, Func. Count: 116, Neg. LLF: 147.76654011348765
Iteration: 13, Func. Count: 125, Neg. LLF: 147.76653506805943
Iteration: 14, Func. Count: 134, Neg. LLF: 147.76653437276843
Optimization terminated successfully (Exit mode 0)
Current function value: 147.76653437276843
Iterations: 14
Function evaluations: 134
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 269.7621364007097
Iteration: 2, Func. Count: 22, Neg. LLF: 409.91538898393344
Iteration: 3, Func. Count: 33, Neg. LLF: 149.1277055325236
Iteration: 4, Func. Count: 43, Neg. LLF: 155.07770221032158
Iteration: 5, Func. Count: 54, Neg. LLF: 154.7489536095636
Iteration: 6, Func. Count: 65, Neg. LLF: 157.31714090400706
Iteration: 7, Func. Count: 76, Neg. LLF: 149.07892487974132
Iteration: 8, Func. Count: 87, Neg. LLF: 152.52786378321613
Iteration: 9, Func. Count: 98, Neg. LLF: 147.9424870643431
Iteration: 10, Func. Count: 109, Neg. LLF: 147.7543962929393
Iteration: 11, Func. Count: 119, Neg. LLF: 147.8006186921547
Iteration: 12, Func. Count: 130, Neg. LLF: 147.69547486620976
Iteration: 13, Func. Count: 140, Neg. LLF: 147.68162026686005
Iteration: 14, Func. Count: 150, Neg. LLF: 147.68030521076213
Iteration: 15, Func. Count: 160, Neg. LLF: 147.6795673020638
Iteration: 16, Func. Count: 170, Neg. LLF: 147.67941447086918
Iteration: 17, Func. Count: 180, Neg. LLF: 147.67940963732605
Iteration: 18, Func. Count: 190, Neg. LLF: 147.67940910174676
Optimization terminated successfully (Exit mode 0)
Current function value: 147.67940910174676
Iterations: 18
Function evaluations: 190
Gradient evaluations: 18
Iteration: 1, Func. Count: 12, Neg. LLF: 238.40075942163298
Iteration: 2, Func. Count: 24, Neg. LLF: 10539197.21176053
Iteration: 3, Func. Count: 36, Neg. LLF: 150.12369905892444
Iteration: 4, Func. Count: 48, Neg. LLF: 151.13673029859
Iteration: 5, Func. Count: 60, Neg. LLF: 153.57104922300556
Iteration: 6, Func. Count: 72, Neg. LLF: 149.66879038490399
Iteration: 7, Func. Count: 84, Neg. LLF: 149.22073087712454
Iteration: 8, Func. Count: 96, Neg. LLF: 148.11295520719221
Iteration: 9, Func. Count: 108, Neg. LLF: 148.10983925348282
Iteration: 10, Func. Count: 120, Neg. LLF: 147.7055154890382
Iteration: 11, Func. Count: 131, Neg. LLF: 147.80069394035874
Iteration: 12, Func. Count: 143, Neg. LLF: 147.7022179133843
Iteration: 13, Func. Count: 155, Neg. LLF: 147.67976251932834
Iteration: 14, Func. Count: 166, Neg. LLF: 147.67943378675352
Iteration: 15, Func. Count: 177, Neg. LLF: 147.6793369041621
Iteration: 16, Func. Count: 188, Neg. LLF: 147.6793203355643
Iteration: 17, Func. Count: 199, Neg. LLF: 147.67931730911732
Iteration: 18, Func. Count: 209, Neg. LLF: 147.6793172305478
Optimization terminated successfully (Exit mode 0)
Current function value: 147.67931730911732
Iterations: 18
Function evaluations: 209
Gradient evaluations: 18
Iteration: 1, Func. Count: 13, Neg. LLF: 200.83661209970052
Iteration: 2, Func. Count: 26, Neg. LLF: 240.98371552347734
Iteration: 3, Func. Count: 39, Neg. LLF: 192.92970831904643
Iteration: 4, Func. Count: 52, Neg. LLF: 213.24272706798052
Iteration: 5, Func. Count: 65, Neg. LLF: 149.86937458429819
Iteration: 6, Func. Count: 78, Neg. LLF: 155.48905612741456
Iteration: 7, Func. Count: 91, Neg. LLF: 150.5788024900895
Iteration: 8, Func. Count: 104, Neg. LLF: 147.92862745683885
Iteration: 9, Func. Count: 116, Neg. LLF: 147.97548415410913
Iteration: 10, Func. Count: 129, Neg. LLF: 149.34460093731178
Iteration: 11, Func. Count: 142, Neg. LLF: 148.18253968170217
Iteration: 12, Func. Count: 155, Neg. LLF: 147.7681185878552
Iteration: 13, Func. Count: 168, Neg. LLF: 147.6817412760642
Iteration: 14, Func. Count: 180, Neg. LLF: 147.68045050603078
Iteration: 15, Func. Count: 192, Neg. LLF: 147.6797645038536
Iteration: 16, Func. Count: 204, Neg. LLF: 147.67968428835113
Iteration: 17, Func. Count: 216, Neg. LLF: 147.67952751141343
Iteration: 18, Func. Count: 228, Neg. LLF: 147.67936693452958
Iteration: 19, Func. Count: 240, Neg. LLF: 147.6793246477753
Iteration: 20, Func. Count: 252, Neg. LLF: 147.6793177032339
Iteration: 21, Func. Count: 264, Neg. LLF: 147.67931720637304
Optimization terminated successfully (Exit mode 0)
Current function value: 147.67931720637304
Iterations: 21
Function evaluations: 264
Gradient evaluations: 21
Iteration: 1, Func. Count: 6, Neg. LLF: 157.8304405253804
Iteration: 2, Func. Count: 11, Neg. LLF: 162.10783244065462
Iteration: 3, Func. Count: 17, Neg. LLF: 156.07223260763234
Iteration: 4, Func. Count: 22, Neg. LLF: 168.05542268835885
Iteration: 5, Func. Count: 28, Neg. LLF: 155.73857993675682
Iteration: 6, Func. Count: 33, Neg. LLF: 155.4317656046786
Iteration: 7, Func. Count: 38, Neg. LLF: 154.98216124866664
Iteration: 8, Func. Count: 43, Neg. LLF: 154.74708819600886
Iteration: 9, Func. Count: 48, Neg. LLF: 154.63020178504135
Iteration: 10, Func. Count: 53, Neg. LLF: 154.58949373008252
Iteration: 11, Func. Count: 58, Neg. LLF: 154.56045117013346
Iteration: 12, Func. Count: 63, Neg. LLF: 154.55807746466718
Iteration: 13, Func. Count: 68, Neg. LLF: 154.55799120680095
Iteration: 14, Func. Count: 72, Neg. LLF: 154.55799115890008
Optimization terminated successfully (Exit mode 0)
Current function value: 154.55799120680095
Iterations: 14
Function evaluations: 72
Gradient evaluations: 14
Iteration: 1, Func. Count: 7, Neg. LLF: 184.3230743949709
Iteration: 2, Func. Count: 14, Neg. LLF: 166.7148449027838
Iteration: 3, Func. Count: 22, Neg. LLF: 154.03779146379804
Iteration: 4, Func. Count: 28, Neg. LLF: 153.91532012297824
Iteration: 5, Func. Count: 34, Neg. LLF: 153.90015621386652
Iteration: 6, Func. Count: 40, Neg. LLF: 153.89692702796359
Iteration: 7, Func. Count: 46, Neg. LLF: 153.89679711767022
Iteration: 8, Func. Count: 52, Neg. LLF: 153.89679197987002
Iteration: 9, Func. Count: 57, Neg. LLF: 153.8967918313305
Optimization terminated successfully (Exit mode 0)
Current function value: 153.89679197987002
Iterations: 9
Function evaluations: 57
Gradient evaluations: 9
Iteration: 1, Func. Count: 8, Neg. LLF: 171.9704873205545
Iteration: 2, Func. Count: 16, Neg. LLF: 155.52993531306717
Iteration: 3, Func. Count: 24, Neg. LLF: 154.28324220386006
Iteration: 4, Func. Count: 31, Neg. LLF: 156.0119012241135
Iteration: 5, Func. Count: 39, Neg. LLF: 157.5013511552273
Iteration: 6, Func. Count: 47, Neg. LLF: 153.67603586390064
Iteration: 7, Func. Count: 54, Neg. LLF: 153.65770049701942
Iteration: 8, Func. Count: 61, Neg. LLF: 153.64644196412885
Iteration: 9, Func. Count: 68, Neg. LLF: 153.63457771455228
Iteration: 10, Func. Count: 75, Neg. LLF: 153.6338039861047
Iteration: 11, Func. Count: 82, Neg. LLF: 153.63376926307768
Iteration: 12, Func. Count: 89, Neg. LLF: 153.6337647423537
Iteration: 13, Func. Count: 95, Neg. LLF: 153.6337646208513
Optimization terminated successfully (Exit mode 0)
Current function value: 153.6337647423537
Iterations: 13
Function evaluations: 95
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 170.06989564146863
Iteration: 2, Func. Count: 18, Neg. LLF: 154.1261326671799
Iteration: 3, Func. Count: 26, Neg. LLF: 157.2157635483462
Iteration: 4, Func. Count: 35, Neg. LLF: 162.29172888681012
Iteration: 5, Func. Count: 44, Neg. LLF: 153.15045615227584
Iteration: 6, Func. Count: 53, Neg. LLF: 153.1453641839565
Iteration: 7, Func. Count: 62, Neg. LLF: 153.11177320812592
Iteration: 8, Func. Count: 71, Neg. LLF: 153.0791356894717
Iteration: 9, Func. Count: 79, Neg. LLF: 153.07851390312715
Iteration: 10, Func. Count: 87, Neg. LLF: 153.07835255576387
Iteration: 11, Func. Count: 95, Neg. LLF: 153.0781871312655
Iteration: 12, Func. Count: 103, Neg. LLF: 153.07816216689662
Iteration: 13, Func. Count: 111, Neg. LLF: 153.07815953340037
Iteration: 14, Func. Count: 118, Neg. LLF: 153.0781594596736
Optimization terminated successfully (Exit mode 0)
Current function value: 153.07815953340037
Iterations: 14
Function evaluations: 118
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 168.7990215073626
Iteration: 2, Func. Count: 20, Neg. LLF: 164.0403123538207
Iteration: 3, Func. Count: 30, Neg. LLF: 155.4622136028849
Iteration: 4, Func. Count: 40, Neg. LLF: 154.4873483740993
Iteration: 5, Func. Count: 50, Neg. LLF: 153.45133958857613
Iteration: 6, Func. Count: 60, Neg. LLF: 153.4105848686738
Iteration: 7, Func. Count: 70, Neg. LLF: 153.08457439802143
Iteration: 8, Func. Count: 79, Neg. LLF: 153.07925286796865
Iteration: 9, Func. Count: 88, Neg. LLF: 153.07855068671597
Iteration: 10, Func. Count: 97, Neg. LLF: 153.07832394776523
Iteration: 11, Func. Count: 106, Neg. LLF: 153.0781733968072
Iteration: 12, Func. Count: 115, Neg. LLF: 153.07816332232534
Iteration: 13, Func. Count: 124, Neg. LLF: 153.0781620548594
Iteration: 14, Func. Count: 133, Neg. LLF: 153.0781596367302
Iteration: 15, Func. Count: 141, Neg. LLF: 153.07815962638207
Optimization terminated successfully (Exit mode 0)
Current function value: 153.0781596367302
Iterations: 15
Function evaluations: 141
Gradient evaluations: 15
Iteration: 1, Func. Count: 7, Neg. LLF: 159.57486600144222
Iteration: 2, Func. Count: 14, Neg. LLF: 155.48197478305985
Iteration: 3, Func. Count: 21, Neg. LLF: 156.16204117951955
Iteration: 4, Func. Count: 28, Neg. LLF: 154.26440836989812
Iteration: 5, Func. Count: 34, Neg. LLF: 157.33715449145566
Iteration: 6, Func. Count: 41, Neg. LLF: 153.80536380595447
Iteration: 7, Func. Count: 47, Neg. LLF: 153.76283843378462
Iteration: 8, Func. Count: 53, Neg. LLF: 153.5648848961875
Iteration: 9, Func. Count: 59, Neg. LLF: 191.27022927628968
Iteration: 10, Func. Count: 66, Neg. LLF: 185.01855441724769
Iteration: 11, Func. Count: 73, Neg. LLF: 194.23166008682452
Iteration: 12, Func. Count: 80, Neg. LLF: 154.20811979987863
Iteration: 13, Func. Count: 87, Neg. LLF: 152.65537618337152
Iteration: 14, Func. Count: 93, Neg. LLF: 152.43792231925778
Iteration: 15, Func. Count: 99, Neg. LLF: 152.33588381677376
Iteration: 16, Func. Count: 105, Neg. LLF: 152.32386024974613
Iteration: 17, Func. Count: 111, Neg. LLF: 152.32378713084984
Iteration: 18, Func. Count: 117, Neg. LLF: 152.32378206439716
Iteration: 19, Func. Count: 122, Neg. LLF: 152.3237820386946
Optimization terminated successfully (Exit mode 0)
Current function value: 152.32378206439716
Iterations: 19
Function evaluations: 122
Gradient evaluations: 19
Iteration: 1, Func. Count: 8, Neg. LLF: 673.0437013878155
Iteration: 2, Func. Count: 16, Neg. LLF: 149.62690984197457
Iteration: 3, Func. Count: 24, Neg. LLF: 148.97431715676151
Iteration: 4, Func. Count: 31, Neg. LLF: 148.97337634256817
Iteration: 5, Func. Count: 39, Neg. LLF: 148.9537636173954
Iteration: 6, Func. Count: 46, Neg. LLF: 148.95366289908378
Iteration: 7, Func. Count: 53, Neg. LLF: 148.9536611553001
Iteration: 8, Func. Count: 59, Neg. LLF: 148.95366089823744
Optimization terminated successfully (Exit mode 0)
Current function value: 148.9536611553001
Iterations: 8
Function evaluations: 59
Gradient evaluations: 8
Iteration: 1, Func. Count: 9, Neg. LLF: 342.171738058899
Iteration: 2, Func. Count: 18, Neg. LLF: 149.2271972464509
Iteration: 3, Func. Count: 26, Neg. LLF: 151.76878193150665
Iteration: 4, Func. Count: 35, Neg. LLF: 149.2684837610974
Iteration: 5, Func. Count: 44, Neg. LLF: 149.02477209812946
Iteration: 6, Func. Count: 52, Neg. LLF: 149.91782653392983
Iteration: 7, Func. Count: 61, Neg. LLF: 148.99393841181202
Iteration: 8, Func. Count: 69, Neg. LLF: 148.95674470626173
Iteration: 9, Func. Count: 77, Neg. LLF: 148.9537851310477
Iteration: 10, Func. Count: 85, Neg. LLF: 148.95366510783677
Iteration: 11, Func. Count: 93, Neg. LLF: 148.95366115230095
Iteration: 12, Func. Count: 100, Neg. LLF: 148.95366090053795
Optimization terminated successfully (Exit mode 0)
Current function value: 148.95366115230095
Iterations: 12
Function evaluations: 100
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 351.59614231012415
Iteration: 2, Func. Count: 20, Neg. LLF: 150.0648906707878
Iteration: 3, Func. Count: 29, Neg. LLF: 150.48958251929622
Iteration: 4, Func. Count: 39, Neg. LLF: 156.09540091861433
Iteration: 5, Func. Count: 49, Neg. LLF: 150.92083413863736
Iteration: 6, Func. Count: 59, Neg. LLF: 148.9595835988519
Iteration: 7, Func. Count: 68, Neg. LLF: 148.90677850374755
Iteration: 8, Func. Count: 77, Neg. LLF: 148.8667093213161
Iteration: 9, Func. Count: 86, Neg. LLF: 148.85891764324373
Iteration: 10, Func. Count: 95, Neg. LLF: 148.856515593598
Iteration: 11, Func. Count: 104, Neg. LLF: 148.85603975522534
Iteration: 12, Func. Count: 113, Neg. LLF: 148.85592889384864
Iteration: 13, Func. Count: 122, Neg. LLF: 148.85592592672438
Iteration: 14, Func. Count: 130, Neg. LLF: 148.85592575667513
Optimization terminated successfully (Exit mode 0)
Current function value: 148.85592592672438
Iterations: 14
Function evaluations: 130
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 341.17111712988674
Iteration: 2, Func. Count: 22, Neg. LLF: 151.42344381471148
Iteration: 3, Func. Count: 33, Neg. LLF: 150.05141795194334
Iteration: 4, Func. Count: 44, Neg. LLF: 149.8494539354601
Iteration: 5, Func. Count: 55, Neg. LLF: 154.26627723283858
Iteration: 6, Func. Count: 66, Neg. LLF: 149.18046252372045
Iteration: 7, Func. Count: 77, Neg. LLF: 148.85697362558935
Iteration: 8, Func. Count: 87, Neg. LLF: 148.85612816709713
Iteration: 9, Func. Count: 97, Neg. LLF: 148.85599384757904
Iteration: 10, Func. Count: 107, Neg. LLF: 148.85592769195372
Iteration: 11, Func. Count: 117, Neg. LLF: 148.85592566637294
Iteration: 12, Func. Count: 126, Neg. LLF: 148.85592549994033
Optimization terminated successfully (Exit mode 0)
Current function value: 148.85592566637294
Iterations: 12
Function evaluations: 126
Gradient evaluations: 12
Iteration: 1, Func. Count: 8, Neg. LLF: 161.9376688076914
Iteration: 2, Func. Count: 16, Neg. LLF: 154.86874313292589
Iteration: 3, Func. Count: 24, Neg. LLF: 160.54604643906072
Iteration: 4, Func. Count: 33, Neg. LLF: 153.58473639285958
Iteration: 5, Func. Count: 40, Neg. LLF: 154.2459687281295
Iteration: 6, Func. Count: 48, Neg. LLF: 152.9212311522551
Iteration: 7, Func. Count: 55, Neg. LLF: 152.6579859293811
Iteration: 8, Func. Count: 62, Neg. LLF: 152.45494724226782
Iteration: 9, Func. Count: 69, Neg. LLF: 151.54391320772467
Iteration: 10, Func. Count: 76, Neg. LLF: 169.536291572898
Iteration: 11, Func. Count: 84, Neg. LLF: 152.0946083085843
Iteration: 12, Func. Count: 92, Neg. LLF: 150.9486398076556
Iteration: 13, Func. Count: 99, Neg. LLF: 150.8965094151358
Iteration: 14, Func. Count: 106, Neg. LLF: 150.8918828424904
Iteration: 15, Func. Count: 113, Neg. LLF: 150.89136806129576
Iteration: 16, Func. Count: 120, Neg. LLF: 150.89130010758757
Iteration: 17, Func. Count: 127, Neg. LLF: 150.8912984118757
Iteration: 18, Func. Count: 133, Neg. LLF: 150.89129838315992
Optimization terminated successfully (Exit mode 0)
Current function value: 150.8912984118757
Iterations: 18
Function evaluations: 133
Gradient evaluations: 18
Iteration: 1, Func. Count: 9, Neg. LLF: 524.748762476091
Iteration: 2, Func. Count: 18, Neg. LLF: 149.16999516139347
Iteration: 3, Func. Count: 26, Neg. LLF: 149.26837369180393
Iteration: 4, Func. Count: 35, Neg. LLF: 149.0695904653037
Iteration: 5, Func. Count: 44, Neg. LLF: 148.96010113387146
Iteration: 6, Func. Count: 53, Neg. LLF: 148.9365516413672
Iteration: 7, Func. Count: 61, Neg. LLF: 148.93643922513323
Iteration: 8, Func. Count: 69, Neg. LLF: 148.93643593606436
Iteration: 9, Func. Count: 76, Neg. LLF: 148.93643569460838
Optimization terminated successfully (Exit mode 0)
Current function value: 148.93643593606436
Iterations: 9
Function evaluations: 76
Gradient evaluations: 9
Iteration: 1, Func. Count: 10, Neg. LLF: 194.51988287450794
Iteration: 2, Func. Count: 20, Neg. LLF: 152.39732740200466
Iteration: 3, Func. Count: 30, Neg. LLF: 150.50958828658096
Iteration: 4, Func. Count: 40, Neg. LLF: 153.24171390433597
Iteration: 5, Func. Count: 50, Neg. LLF: 148.56602980024365
Iteration: 6, Func. Count: 59, Neg. LLF: 153.7434338185341
Iteration: 7, Func. Count: 69, Neg. LLF: 148.78778711651918
Iteration: 8, Func. Count: 79, Neg. LLF: 150.779130344195
Iteration: 9, Func. Count: 89, Neg. LLF: 148.43736906703614
Iteration: 10, Func. Count: 98, Neg. LLF: 148.4323808856849
Iteration: 11, Func. Count: 107, Neg. LLF: 148.4321438163214
Iteration: 12, Func. Count: 116, Neg. LLF: 148.43212073949348
Iteration: 13, Func. Count: 125, Neg. LLF: 148.43211258461383
Iteration: 14, Func. Count: 134, Neg. LLF: 148.43210937586016
Iteration: 15, Func. Count: 142, Neg. LLF: 148.43210924583846
Optimization terminated successfully (Exit mode 0)
Current function value: 148.43210937586016
Iterations: 15
Function evaluations: 142
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 356.8039425799492
Iteration: 2, Func. Count: 22, Neg. LLF: 366.86052769464214
Iteration: 3, Func. Count: 33, Neg. LLF: 148.80613530258245
Iteration: 4, Func. Count: 43, Neg. LLF: 151.22554891214122
Iteration: 5, Func. Count: 54, Neg. LLF: 182.41855033731596
Iteration: 6, Func. Count: 65, Neg. LLF: 148.56781312080997
Iteration: 7, Func. Count: 75, Neg. LLF: 148.51337717309485
Iteration: 8, Func. Count: 85, Neg. LLF: 148.5079527163705
Iteration: 9, Func. Count: 96, Neg. LLF: 148.4496647721698
Iteration: 10, Func. Count: 106, Neg. LLF: 148.44004546596426
Iteration: 11, Func. Count: 116, Neg. LLF: 148.43811600260946
Iteration: 12, Func. Count: 126, Neg. LLF: 148.44726835445988
Iteration: 13, Func. Count: 137, Neg. LLF: 148.43423888004293
Iteration: 14, Func. Count: 147, Neg. LLF: 148.43295007316542
Iteration: 15, Func. Count: 157, Neg. LLF: 148.43217338397358
Iteration: 16, Func. Count: 167, Neg. LLF: 148.43211390908655
Iteration: 17, Func. Count: 177, Neg. LLF: 148.43210935027864
Iteration: 18, Func. Count: 186, Neg. LLF: 148.4321092229659
Optimization terminated successfully (Exit mode 0)
Current function value: 148.43210935027864
Iterations: 18
Function evaluations: 186
Gradient evaluations: 18
Iteration: 1, Func. Count: 12, Neg. LLF: 348.07769637846576
Iteration: 2, Func. Count: 24, Neg. LLF: 8979730.410261473
Iteration: 3, Func. Count: 36, Neg. LLF: 151.1164855037547
Iteration: 4, Func. Count: 48, Neg. LLF: 152.51852059446844
Iteration: 5, Func. Count: 60, Neg. LLF: 149.8409974305542
Iteration: 6, Func. Count: 72, Neg. LLF: 151.54852144030403
Iteration: 7, Func. Count: 84, Neg. LLF: 148.81937369192278
Iteration: 8, Func. Count: 95, Neg. LLF: 148.70138247357906
Iteration: 9, Func. Count: 106, Neg. LLF: 148.65888874409612
Iteration: 10, Func. Count: 117, Neg. LLF: 148.62183360895307
Iteration: 11, Func. Count: 128, Neg. LLF: 148.6056512207188
Iteration: 12, Func. Count: 139, Neg. LLF: 148.55997704335178
Iteration: 13, Func. Count: 150, Neg. LLF: 148.5493673488035
Iteration: 14, Func. Count: 161, Neg. LLF: 148.5278794726609
Iteration: 15, Func. Count: 172, Neg. LLF: 148.50060912502155
Iteration: 16, Func. Count: 183, Neg. LLF: 148.96256088764935
Iteration: 17, Func. Count: 195, Neg. LLF: 148.47769428736342
Iteration: 18, Func. Count: 206, Neg. LLF: 148.44520837283767
Iteration: 19, Func. Count: 217, Neg. LLF: 148.4384028407743
Iteration: 20, Func. Count: 228, Neg. LLF: 148.4371589037949
Iteration: 21, Func. Count: 239, Neg. LLF: 148.43659429439288
Iteration: 22, Func. Count: 250, Neg. LLF: 148.43528943182798
Iteration: 23, Func. Count: 261, Neg. LLF: 148.43275802636308
Iteration: 24, Func. Count: 272, Neg. LLF: 148.43215473940467
Iteration: 25, Func. Count: 283, Neg. LLF: 148.43211553523463
Iteration: 26, Func. Count: 294, Neg. LLF: 148.43210813737642
Iteration: 27, Func. Count: 305, Neg. LLF: 148.4321094029424
Iteration: 28, Func. Count: 316, Neg. LLF: 148.43209855979796
Optimization terminated successfully (Exit mode 0)
Current function value: 148.4321093902031
Iterations: 28
Function evaluations: 326
Gradient evaluations: 28
Iteration: 1, Func. Count: 9, Neg. LLF: 161.97455355166562
Iteration: 2, Func. Count: 18, Neg. LLF: 155.0065620320135
Iteration: 3, Func. Count: 27, Neg. LLF: 161.13391137555325
Iteration: 4, Func. Count: 37, Neg. LLF: 159.37704919160996
Iteration: 5, Func. Count: 47, Neg. LLF: 153.9678805607427
Iteration: 6, Func. Count: 56, Neg. LLF: 153.1799019787396
Iteration: 7, Func. Count: 64, Neg. LLF: 152.80433820956688
Iteration: 8, Func. Count: 72, Neg. LLF: 152.50036341964176
Iteration: 9, Func. Count: 80, Neg. LLF: 151.91974899187903
Iteration: 10, Func. Count: 88, Neg. LLF: 151.43048707186045
Iteration: 11, Func. Count: 96, Neg. LLF: 154.29991014391388
Iteration: 12, Func. Count: 105, Neg. LLF: 159.17907041176062
Iteration: 13, Func. Count: 114, Neg. LLF: 152.68091948941955
Iteration: 14, Func. Count: 123, Neg. LLF: 149.86214014084732
Iteration: 15, Func. Count: 131, Neg. LLF: 149.8443604011775
Iteration: 16, Func. Count: 140, Neg. LLF: 149.80122447898998
Iteration: 17, Func. Count: 149, Neg. LLF: 149.79489978046846
Iteration: 18, Func. Count: 157, Neg. LLF: 149.794871758832
Iteration: 19, Func. Count: 165, Neg. LLF: 149.79487112870487
Optimization terminated successfully (Exit mode 0)
Current function value: 149.79487112870487
Iterations: 19
Function evaluations: 165
Gradient evaluations: 19
Iteration: 1, Func. Count: 10, Neg. LLF: 384.9346151243495
Iteration: 2, Func. Count: 20, Neg. LLF: 150.15799179819456
Iteration: 3, Func. Count: 30, Neg. LLF: 148.98435645938167
Iteration: 4, Func. Count: 39, Neg. LLF: 149.20173513592468
Iteration: 5, Func. Count: 49, Neg. LLF: 148.96241574367215
Iteration: 6, Func. Count: 59, Neg. LLF: 148.93644079199453
Iteration: 7, Func. Count: 68, Neg. LLF: 148.93643641085413
Iteration: 8, Func. Count: 77, Neg. LLF: 148.93643577403228
Optimization terminated successfully (Exit mode 0)
Current function value: 148.93643577403228
Iterations: 8
Function evaluations: 77
Gradient evaluations: 8
Iteration: 1, Func. Count: 11, Neg. LLF: 187.90285774217202
Iteration: 2, Func. Count: 22, Neg. LLF: 162.86545758113192
Iteration: 3, Func. Count: 33, Neg. LLF: 148.85334030038499
Iteration: 4, Func. Count: 43, Neg. LLF: 149.14524879524166
Iteration: 5, Func. Count: 55, Neg. LLF: 159.13820687092888
Iteration: 6, Func. Count: 66, Neg. LLF: 148.51181115891467
Iteration: 7, Func. Count: 77, Neg. LLF: 148.66104262056854
Iteration: 8, Func. Count: 88, Neg. LLF: 148.43624424901407
Iteration: 9, Func. Count: 98, Neg. LLF: 148.43667684418529
Iteration: 10, Func. Count: 109, Neg. LLF: 148.4354211437405
Iteration: 11, Func. Count: 120, Neg. LLF: 148.43029037820503
Iteration: 12, Func. Count: 130, Neg. LLF: 148.430284063414
Iteration: 13, Func. Count: 140, Neg. LLF: 148.43028317454883
Optimization terminated successfully (Exit mode 0)
Current function value: 148.43028317454883
Iterations: 13
Function evaluations: 140
Gradient evaluations: 13
Iteration: 1, Func. Count: 12, Neg. LLF: 321.11282263858783
Iteration: 2, Func. Count: 24, Neg. LLF: 805.0741300513481
Iteration: 3, Func. Count: 36, Neg. LLF: 149.0801384789116
Iteration: 4, Func. Count: 47, Neg. LLF: 156.2933346001877
Iteration: 5, Func. Count: 59, Neg. LLF: 165.60307887855353
Iteration: 6, Func. Count: 71, Neg. LLF: 148.75335478725196
Iteration: 7, Func. Count: 82, Neg. LLF: 148.65154691279633
Iteration: 8, Func. Count: 93, Neg. LLF: 148.59543283037735
Iteration: 9, Func. Count: 104, Neg. LLF: 148.50104948412286
Iteration: 10, Func. Count: 115, Neg. LLF: 148.4581897242665
Iteration: 11, Func. Count: 126, Neg. LLF: 148.44800843847435
Iteration: 12, Func. Count: 137, Neg. LLF: 148.49030160828673
Iteration: 13, Func. Count: 149, Neg. LLF: 148.45684652068695
Iteration: 14, Func. Count: 161, Neg. LLF: 148.4466324533663
Iteration: 15, Func. Count: 173, Neg. LLF: 148.43202121653195
Iteration: 16, Func. Count: 184, Neg. LLF: 148.43103403470187
Iteration: 17, Func. Count: 195, Neg. LLF: 148.4310077302346
Iteration: 18, Func. Count: 207, Neg. LLF: 148.43059177609774
Iteration: 19, Func. Count: 218, Neg. LLF: 148.430303021458
Iteration: 20, Func. Count: 229, Neg. LLF: 148.43028867368167
Iteration: 21, Func. Count: 240, Neg. LLF: 148.4302831743727
Iteration: 22, Func. Count: 250, Neg. LLF: 148.43028305047386
Optimization terminated successfully (Exit mode 0)
Current function value: 148.4302831743727
Iterations: 22
Function evaluations: 250
Gradient evaluations: 22
Iteration: 1, Func. Count: 13, Neg. LLF: 219.10929338064722
Iteration: 2, Func. Count: 26, Neg. LLF: 278.3671422782234
Iteration: 3, Func. Count: 39, Neg. LLF: 149.72246155147454
Iteration: 4, Func. Count: 51, Neg. LLF: 204.59920888197757
Iteration: 5, Func. Count: 64, Neg. LLF: 153.79419660173107
Iteration: 6, Func. Count: 77, Neg. LLF: 150.31804759585916
Iteration: 7, Func. Count: 90, Neg. LLF: 151.0902146120155
Iteration: 8, Func. Count: 103, Neg. LLF: 148.71565728839948
Iteration: 9, Func. Count: 115, Neg. LLF: 148.60574077951034
Iteration: 10, Func. Count: 127, Neg. LLF: 148.5603635303765
Iteration: 11, Func. Count: 139, Neg. LLF: 148.54285860593043
Iteration: 12, Func. Count: 151, Neg. LLF: 148.53600285316608
Iteration: 13, Func. Count: 163, Neg. LLF: 148.53051602137805
Iteration: 14, Func. Count: 175, Neg. LLF: 148.5259058306279
Iteration: 15, Func. Count: 187, Neg. LLF: 148.64824590649295
Iteration: 16, Func. Count: 200, Neg. LLF: 149.1675176793277
Iteration: 17, Func. Count: 213, Neg. LLF: 149.18174777049222
Iteration: 18, Func. Count: 226, Neg. LLF: 149.16124116399936
Iteration: 19, Func. Count: 239, Neg. LLF: 149.57197582288646
Iteration: 20, Func. Count: 261, Neg. LLF: 149.83634825261714
Iteration: 21, Func. Count: 283, Neg. LLF: 151.1164778358218
Iteration: 22, Func. Count: 305, Neg. LLF: 149.71487347050817
Iteration: 23, Func. Count: 327, Neg. LLF: 150.01850760097946
Iteration: 24, Func. Count: 349, Neg. LLF: 148.81059398451998
Iteration: 25, Func. Count: 362, Neg. LLF: 148.67475256389127
Iteration: 26, Func. Count: 375, Neg. LLF: 148.51457290240518
Iteration: 27, Func. Count: 388, Neg. LLF: 148.5077977793195
Iteration: 28, Func. Count: 401, Neg. LLF: 148.4899394386125
Iteration: 29, Func. Count: 414, Neg. LLF: 148.4906058163632
Iteration: 30, Func. Count: 427, Neg. LLF: 148.44140021488798
Iteration: 31, Func. Count: 440, Neg. LLF: 148.4432789258099
Iteration: 32, Func. Count: 453, Neg. LLF: 148.43199264783422
Iteration: 33, Func. Count: 465, Neg. LLF: 148.43077584294508
Iteration: 34, Func. Count: 477, Neg. LLF: 148.43033590268794
Iteration: 35, Func. Count: 489, Neg. LLF: 148.43029751042343
Iteration: 36, Func. Count: 501, Neg. LLF: 148.43028392126655
Iteration: 37, Func. Count: 513, Neg. LLF: 148.43028305250374
Optimization terminated successfully (Exit mode 0)
Current function value: 148.43028305250374
Iterations: 38
Function evaluations: 513
Gradient evaluations: 37
Iteration: 1, Func. Count: 10, Neg. LLF: 158.01129170451097
Iteration: 2, Func. Count: 20, Neg. LLF: 155.75428525567722
Iteration: 3, Func. Count: 30, Neg. LLF: 155.36655475934577
Iteration: 4, Func. Count: 40, Neg. LLF: 155.57761450709995
Iteration: 5, Func. Count: 50, Neg. LLF: 151.9889014774099
Iteration: 6, Func. Count: 60, Neg. LLF: 151.24066535580133
Iteration: 7, Func. Count: 69, Neg. LLF: 151.04959493109473
Iteration: 8, Func. Count: 78, Neg. LLF: 150.84903485845203
Iteration: 9, Func. Count: 87, Neg. LLF: 150.34248538325298
Iteration: 10, Func. Count: 96, Neg. LLF: 149.19614374552717
Iteration: 11, Func. Count: 105, Neg. LLF: 148.85274845758215
Iteration: 12, Func. Count: 114, Neg. LLF: 150.09444574730784
Iteration: 13, Func. Count: 124, Neg. LLF: 148.63819682045693
Iteration: 14, Func. Count: 133, Neg. LLF: 148.6655485224142
Iteration: 15, Func. Count: 143, Neg. LLF: 148.60826416316775
Iteration: 16, Func. Count: 152, Neg. LLF: 148.60410217356355
Iteration: 17, Func. Count: 161, Neg. LLF: 148.59845471001125
Iteration: 18, Func. Count: 170, Neg. LLF: 148.5979930636492
Iteration: 19, Func. Count: 179, Neg. LLF: 148.5979654695567
Iteration: 20, Func. Count: 188, Neg. LLF: 148.59795872168849
Iteration: 21, Func. Count: 196, Neg. LLF: 148.5979586994695
Optimization terminated successfully (Exit mode 0)
Current function value: 148.59795872168849
Iterations: 21
Function evaluations: 196
Gradient evaluations: 21
Iteration: 1, Func. Count: 11, Neg. LLF: 346.5469546847068
Iteration: 2, Func. Count: 22, Neg. LLF: 170.31740539387033
Iteration: 3, Func. Count: 33, Neg. LLF: 148.25576215928575
Iteration: 4, Func. Count: 43, Neg. LLF: 152.44139483897624
Iteration: 5, Func. Count: 54, Neg. LLF: 166.53635020069044
Iteration: 6, Func. Count: 66, Neg. LLF: 149.45381490978463
Iteration: 7, Func. Count: 77, Neg. LLF: 147.7842611834582
Iteration: 8, Func. Count: 87, Neg. LLF: 147.77426851618085
Iteration: 9, Func. Count: 97, Neg. LLF: 147.76752933637655
Iteration: 10, Func. Count: 107, Neg. LLF: 147.76686663509875
Iteration: 11, Func. Count: 117, Neg. LLF: 147.76655500967632
Iteration: 12, Func. Count: 127, Neg. LLF: 147.76653613742567
Iteration: 13, Func. Count: 137, Neg. LLF: 147.76653441821952
Iteration: 14, Func. Count: 146, Neg. LLF: 147.7665343264282
Optimization terminated successfully (Exit mode 0)
Current function value: 147.76653441821952
Iterations: 14
Function evaluations: 146
Gradient evaluations: 14
Iteration: 1, Func. Count: 12, Neg. LLF: 268.9236190448963
Iteration: 2, Func. Count: 24, Neg. LLF: 482.3730375932203
Iteration: 3, Func. Count: 36, Neg. LLF: 154.68408740513385
Iteration: 4, Func. Count: 48, Neg. LLF: 148.17241140733978
Iteration: 5, Func. Count: 59, Neg. LLF: 151.45718205812554
Iteration: 6, Func. Count: 72, Neg. LLF: 154.93639545341657
Iteration: 7, Func. Count: 84, Neg. LLF: 150.17119673135505
Iteration: 8, Func. Count: 96, Neg. LLF: 147.82682517051964
Iteration: 9, Func. Count: 107, Neg. LLF: 147.70100355328614
Iteration: 10, Func. Count: 118, Neg. LLF: 147.74606852221717
Iteration: 11, Func. Count: 130, Neg. LLF: 147.68125708287099
Iteration: 12, Func. Count: 141, Neg. LLF: 147.67964577346686
Iteration: 13, Func. Count: 152, Neg. LLF: 147.67946599814192
Iteration: 14, Func. Count: 163, Neg. LLF: 147.67941024164793
Iteration: 15, Func. Count: 174, Neg. LLF: 147.67940919882062
Iteration: 16, Func. Count: 184, Neg. LLF: 147.67940911997027
Optimization terminated successfully (Exit mode 0)
Current function value: 147.67940919882062
Iterations: 16
Function evaluations: 184
Gradient evaluations: 16
Iteration: 1, Func. Count: 13, Neg. LLF: 243.80895545274763
Iteration: 2, Func. Count: 26, Neg. LLF: 28815266.13562338
Iteration: 3, Func. Count: 39, Neg. LLF: 150.27216169608047
Iteration: 4, Func. Count: 52, Neg. LLF: 148.98161101309725
Iteration: 5, Func. Count: 65, Neg. LLF: 152.30385986292256
Iteration: 6, Func. Count: 78, Neg. LLF: 149.3875704673574
Iteration: 7, Func. Count: 91, Neg. LLF: 148.02920063325098
Iteration: 8, Func. Count: 104, Neg. LLF: 148.03379149558134
Iteration: 9, Func. Count: 117, Neg. LLF: 151.40739623779328
Iteration: 10, Func. Count: 130, Neg. LLF: 147.68920684086922
Iteration: 11, Func. Count: 142, Neg. LLF: 147.81597071655602
Iteration: 12, Func. Count: 155, Neg. LLF: 147.68120611418757
Iteration: 13, Func. Count: 167, Neg. LLF: 147.67944898653462
Iteration: 14, Func. Count: 179, Neg. LLF: 147.67934279991857
Iteration: 15, Func. Count: 191, Neg. LLF: 147.6793210813426
Iteration: 16, Func. Count: 203, Neg. LLF: 147.67931836871415
Iteration: 17, Func. Count: 215, Neg. LLF: 147.67931716664577
Iteration: 18, Func. Count: 226, Neg. LLF: 147.67931708807814
Optimization terminated successfully (Exit mode 0)
Current function value: 147.67931716664577
Iterations: 18
Function evaluations: 226
Gradient evaluations: 18
Iteration: 1, Func. Count: 14, Neg. LLF: 200.66948994480632
Iteration: 2, Func. Count: 28, Neg. LLF: 201.75428599397543
Iteration: 3, Func. Count: 42, Neg. LLF: 178.34222645136632
Iteration: 4, Func. Count: 56, Neg. LLF: 153.5588155348934
Iteration: 5, Func. Count: 70, Neg. LLF: 155.70895387144486
Iteration: 6, Func. Count: 84, Neg. LLF: 154.39711646223944
Iteration: 7, Func. Count: 98, Neg. LLF: 148.22723150023958
Iteration: 8, Func. Count: 111, Neg. LLF: 149.7352460347443
Iteration: 9, Func. Count: 125, Neg. LLF: 150.69589248672233
Iteration: 10, Func. Count: 139, Neg. LLF: 147.90924930446909
Iteration: 11, Func. Count: 153, Neg. LLF: 147.71552130675204
Iteration: 12, Func. Count: 166, Neg. LLF: 147.70564702499763
Iteration: 13, Func. Count: 179, Neg. LLF: 147.70241791175198
Iteration: 14, Func. Count: 192, Neg. LLF: 147.70177805463172
Iteration: 15, Func. Count: 205, Neg. LLF: 147.7014557078794
Iteration: 16, Func. Count: 218, Neg. LLF: 147.70123901028015
Iteration: 17, Func. Count: 231, Neg. LLF: 147.7011678639298
Iteration: 18, Func. Count: 244, Neg. LLF: 147.70114725777188
Iteration: 19, Func. Count: 257, Neg. LLF: 147.70114080721834
Iteration: 20, Func. Count: 270, Neg. LLF: 147.701138811636
Iteration: 21, Func. Count: 282, Neg. LLF: 147.7011387495678
Optimization terminated successfully (Exit mode 0)
Current function value: 147.701138811636
Iterations: 21
Function evaluations: 282
Gradient evaluations: 21
Iteration: 1, Func. Count: 7, Neg. LLF: 157.44158253590567
Iteration: 2, Func. Count: 13, Neg. LLF: 161.99688313594848
Iteration: 3, Func. Count: 20, Neg. LLF: 156.08889696723577
Iteration: 4, Func. Count: 26, Neg. LLF: 175.5676103063238
Iteration: 5, Func. Count: 33, Neg. LLF: 155.6185148729314
Iteration: 6, Func. Count: 39, Neg. LLF: 155.3881914284783
Iteration: 7, Func. Count: 45, Neg. LLF: 154.67791268439652
Iteration: 8, Func. Count: 51, Neg. LLF: 154.55026340289285
Iteration: 9, Func. Count: 57, Neg. LLF: 154.50700990188605
Iteration: 10, Func. Count: 63, Neg. LLF: 154.4530328956868
Iteration: 11, Func. Count: 69, Neg. LLF: 154.4342088088465
Iteration: 12, Func. Count: 75, Neg. LLF: 154.41940367249993
Iteration: 13, Func. Count: 81, Neg. LLF: 154.41917419148078
Iteration: 14, Func. Count: 87, Neg. LLF: 154.41916931665745
Iteration: 15, Func. Count: 92, Neg. LLF: 154.4191692501504
Optimization terminated successfully (Exit mode 0)
Current function value: 154.41916931665745
Iterations: 15
Function evaluations: 92
Gradient evaluations: 15
Iteration: 1, Func. Count: 8, Neg. LLF: 178.84301157099898
Iteration: 2, Func. Count: 16, Neg. LLF: 162.5872447672585
Iteration: 3, Func. Count: 24, Neg. LLF: 154.00605364886493
Iteration: 4, Func. Count: 31, Neg. LLF: 154.1656547910795
Iteration: 5, Func. Count: 39, Neg. LLF: 153.91175398171174
Iteration: 6, Func. Count: 46, Neg. LLF: 153.90409038314635
Iteration: 7, Func. Count: 53, Neg. LLF: 153.89693409242508
Iteration: 8, Func. Count: 60, Neg. LLF: 153.89679421357036
Iteration: 9, Func. Count: 67, Neg. LLF: 153.8967919736517
Iteration: 10, Func. Count: 73, Neg. LLF: 153.89679182511844
Optimization terminated successfully (Exit mode 0)
Current function value: 153.8967919736517
Iterations: 10
Function evaluations: 73
Gradient evaluations: 10
Iteration: 1, Func. Count: 9, Neg. LLF: 170.19616568021542
Iteration: 2, Func. Count: 18, Neg. LLF: 155.36634842799324
Iteration: 3, Func. Count: 27, Neg. LLF: 154.2635416441265
Iteration: 4, Func. Count: 35, Neg. LLF: 158.3312010788781
Iteration: 5, Func. Count: 44, Neg. LLF: 153.72590459382542
Iteration: 6, Func. Count: 52, Neg. LLF: 153.67451899179068
Iteration: 7, Func. Count: 60, Neg. LLF: 153.65723088017575
Iteration: 8, Func. Count: 68, Neg. LLF: 153.64812261489016
Iteration: 9, Func. Count: 76, Neg. LLF: 153.63772219842767
Iteration: 10, Func. Count: 84, Neg. LLF: 153.63395188720443
Iteration: 11, Func. Count: 92, Neg. LLF: 153.6337766329053
Iteration: 12, Func. Count: 100, Neg. LLF: 153.633764656538
Iteration: 13, Func. Count: 107, Neg. LLF: 153.63376453500948
Optimization terminated successfully (Exit mode 0)
Current function value: 153.633764656538
Iterations: 13
Function evaluations: 107
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 168.38708721040598
Iteration: 2, Func. Count: 20, Neg. LLF: 154.1698357795056
Iteration: 3, Func. Count: 30, Neg. LLF: 159.49080332714647
Iteration: 4, Func. Count: 40, Neg. LLF: 157.35461956013881
Iteration: 5, Func. Count: 50, Neg. LLF: 153.91500504776474
Iteration: 6, Func. Count: 60, Neg. LLF: 153.39028231575853
Iteration: 7, Func. Count: 70, Neg. LLF: 153.08315130812304
Iteration: 8, Func. Count: 79, Neg. LLF: 153.07895852956256
Iteration: 9, Func. Count: 88, Neg. LLF: 153.078181414506
Iteration: 10, Func. Count: 97, Neg. LLF: 153.0781704275434
Iteration: 11, Func. Count: 106, Neg. LLF: 153.07816487444927
Iteration: 12, Func. Count: 115, Neg. LLF: 153.07815980469664
Iteration: 13, Func. Count: 123, Neg. LLF: 153.078159731019
Optimization terminated successfully (Exit mode 0)
Current function value: 153.07815980469664
Iterations: 13
Function evaluations: 123
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 166.93254197301306
Iteration: 2, Func. Count: 22, Neg. LLF: 156.4392826706262
Iteration: 3, Func. Count: 33, Neg. LLF: 154.98492108564716
Iteration: 4, Func. Count: 44, Neg. LLF: 155.59572590000454
Iteration: 5, Func. Count: 55, Neg. LLF: 153.18132470898863
Iteration: 6, Func. Count: 65, Neg. LLF: 153.11491813203034
Iteration: 7, Func. Count: 75, Neg. LLF: 153.0867478247512
Iteration: 8, Func. Count: 85, Neg. LLF: 153.0800194305534
Iteration: 9, Func. Count: 95, Neg. LLF: 153.07915853060624
Iteration: 10, Func. Count: 105, Neg. LLF: 153.07828571488744
Iteration: 11, Func. Count: 115, Neg. LLF: 153.07823722239587
Iteration: 12, Func. Count: 125, Neg. LLF: 153.07815974026764
Iteration: 13, Func. Count: 134, Neg. LLF: 153.07815972985654
Optimization terminated successfully (Exit mode 0)
Current function value: 153.07815974026764
Iterations: 13
Function evaluations: 134
Gradient evaluations: 13
Iteration: 1, Func. Count: 8, Neg. LLF: 159.56869556698277
Iteration: 2, Func. Count: 16, Neg. LLF: 155.5212858372439
Iteration: 3, Func. Count: 24, Neg. LLF: 159.22084994750205
Iteration: 4, Func. Count: 33, Neg. LLF: 154.33439383565118
Iteration: 5, Func. Count: 40, Neg. LLF: 153.875071541812
Iteration: 6, Func. Count: 47, Neg. LLF: 153.84155545195964
Iteration: 7, Func. Count: 54, Neg. LLF: 153.77150612829405
Iteration: 8, Func. Count: 61, Neg. LLF: 153.71745758060763
Iteration: 9, Func. Count: 68, Neg. LLF: 153.3806029687814
Iteration: 10, Func. Count: 75, Neg. LLF: 158.85261976372945
Iteration: 11, Func. Count: 83, Neg. LLF: 153.09540909380684
Iteration: 12, Func. Count: 91, Neg. LLF: 152.4673641849098
Iteration: 13, Func. Count: 98, Neg. LLF: 160.22905684579112
Iteration: 14, Func. Count: 106, Neg. LLF: 168.59900602666517
Iteration: 15, Func. Count: 114, Neg. LLF: 163.50635833677944
Iteration: 16, Func. Count: 122, Neg. LLF: 152.01072979968947
Iteration: 17, Func. Count: 129, Neg. LLF: 151.99944549513359
Iteration: 18, Func. Count: 136, Neg. LLF: 151.99583761609082
Iteration: 19, Func. Count: 143, Neg. LLF: 151.99579487606957
Iteration: 20, Func. Count: 150, Neg. LLF: 151.99578903457623
Iteration: 21, Func. Count: 156, Neg. LLF: 151.99578900025926
Optimization terminated successfully (Exit mode 0)
Current function value: 151.99578903457623
Iterations: 21
Function evaluations: 156
Gradient evaluations: 21
Iteration: 1, Func. Count: 9, Neg. LLF: 661.2989222212188
Iteration: 2, Func. Count: 18, Neg. LLF: 149.61065031379349
Iteration: 3, Func. Count: 27, Neg. LLF: 148.9806637772189
Iteration: 4, Func. Count: 35, Neg. LLF: 148.9782051368056
Iteration: 5, Func. Count: 44, Neg. LLF: 148.95378621940168
Iteration: 6, Func. Count: 52, Neg. LLF: 148.95366554665486
Iteration: 7, Func. Count: 60, Neg. LLF: 148.9536611658735
Iteration: 8, Func. Count: 67, Neg. LLF: 148.95366090878906
Optimization terminated successfully (Exit mode 0)
Current function value: 148.9536611658735
Iterations: 8
Function evaluations: 67
Gradient evaluations: 8
Iteration: 1, Func. Count: 10, Neg. LLF: 324.7213922601565
Iteration: 2, Func. Count: 20, Neg. LLF: 149.36312615754068
Iteration: 3, Func. Count: 29, Neg. LLF: 151.72143598257628
Iteration: 4, Func. Count: 39, Neg. LLF: 154.05583586747355
Iteration: 5, Func. Count: 50, Neg. LLF: 157.91999244917153
Iteration: 6, Func. Count: 60, Neg. LLF: 149.01060440605977
Iteration: 7, Func. Count: 69, Neg. LLF: 148.97981844147077
Iteration: 8, Func. Count: 78, Neg. LLF: 148.95627188928816
Iteration: 9, Func. Count: 87, Neg. LLF: 148.95378230974146
Iteration: 10, Func. Count: 96, Neg. LLF: 148.95366274337758
Iteration: 11, Func. Count: 105, Neg. LLF: 148.9536611523723
Iteration: 12, Func. Count: 113, Neg. LLF: 148.95366090058843
Optimization terminated successfully (Exit mode 0)
Current function value: 148.9536611523723
Iterations: 12
Function evaluations: 113
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 326.04421984736916
Iteration: 2, Func. Count: 22, Neg. LLF: 149.75045261818812
Iteration: 3, Func. Count: 32, Neg. LLF: 151.06841006632638
Iteration: 4, Func. Count: 44, Neg. LLF: 155.96608164018937
Iteration: 5, Func. Count: 55, Neg. LLF: 149.38378013197644
Iteration: 6, Func. Count: 66, Neg. LLF: 148.86518510181895
Iteration: 7, Func. Count: 76, Neg. LLF: 148.85666787348703
Iteration: 8, Func. Count: 86, Neg. LLF: 148.85622977620358
Iteration: 9, Func. Count: 96, Neg. LLF: 148.85597212678886
Iteration: 10, Func. Count: 106, Neg. LLF: 148.85592847103712
Iteration: 11, Func. Count: 116, Neg. LLF: 148.85592654486047
Iteration: 12, Func. Count: 125, Neg. LLF: 148.85592637469273
Optimization terminated successfully (Exit mode 0)
Current function value: 148.85592654486047
Iterations: 12
Function evaluations: 125
Gradient evaluations: 12
Iteration: 1, Func. Count: 12, Neg. LLF: 215.66573741146078
Iteration: 2, Func. Count: 24, Neg. LLF: 150.61775617841457
Iteration: 3, Func. Count: 35, Neg. LLF: 179.01060570039024
Iteration: 4, Func. Count: 47, Neg. LLF: 165.5908713714589
Iteration: 5, Func. Count: 59, Neg. LLF: 153.01015913303263
Iteration: 6, Func. Count: 71, Neg. LLF: 152.64027601474513
Iteration: 7, Func. Count: 83, Neg. LLF: 151.8371224113688
Iteration: 8, Func. Count: 95, Neg. LLF: 149.82105760018536
Iteration: 9, Func. Count: 107, Neg. LLF: 149.08391213629324
Iteration: 10, Func. Count: 118, Neg. LLF: 148.9351225183475
Iteration: 11, Func. Count: 129, Neg. LLF: 148.880628060472
Iteration: 12, Func. Count: 140, Neg. LLF: 148.85761638266575
Iteration: 13, Func. Count: 151, Neg. LLF: 148.8551260284089
Iteration: 14, Func. Count: 162, Neg. LLF: 148.854488891085
Iteration: 15, Func. Count: 173, Neg. LLF: 148.8541185525397
Iteration: 16, Func. Count: 184, Neg. LLF: 148.85407705407317
Iteration: 17, Func. Count: 195, Neg. LLF: 148.85405400594763
Iteration: 18, Func. Count: 206, Neg. LLF: 148.85404791508827
Iteration: 19, Func. Count: 217, Neg. LLF: 148.85404631570083
Iteration: 20, Func. Count: 227, Neg. LLF: 148.85404616921733
Optimization terminated successfully (Exit mode 0)
Current function value: 148.85404631570083
Iterations: 20
Function evaluations: 227
Gradient evaluations: 20
Iteration: 1, Func. Count: 9, Neg. LLF: 162.26828763242747
Iteration: 2, Func. Count: 18, Neg. LLF: 155.18673299017314
Iteration: 3, Func. Count: 27, Neg. LLF: 154.17560048944074
Iteration: 4, Func. Count: 36, Neg. LLF: 156.145550710929
Iteration: 5, Func. Count: 45, Neg. LLF: 153.06782182484358
Iteration: 6, Func. Count: 53, Neg. LLF: 152.73742097222473
Iteration: 7, Func. Count: 61, Neg. LLF: 152.55099922098074
Iteration: 8, Func. Count: 69, Neg. LLF: 152.03543464271667
Iteration: 9, Func. Count: 77, Neg. LLF: 153.54668182603555
Iteration: 10, Func. Count: 86, Neg. LLF: 151.21268178011618
Iteration: 11, Func. Count: 94, Neg. LLF: 150.92289489484193
Iteration: 12, Func. Count: 102, Neg. LLF: 150.89414985756764
Iteration: 13, Func. Count: 110, Neg. LLF: 150.89163237732012
Iteration: 14, Func. Count: 118, Neg. LLF: 150.89132530617192
Iteration: 15, Func. Count: 126, Neg. LLF: 150.89129937900503
Iteration: 16, Func. Count: 134, Neg. LLF: 150.89129842852952
Optimization terminated successfully (Exit mode 0)
Current function value: 150.89129842852952
Iterations: 16
Function evaluations: 134
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 516.9958435486686
Iteration: 2, Func. Count: 20, Neg. LLF: 149.1810061910187
Iteration: 3, Func. Count: 29, Neg. LLF: 149.1417823663489
Iteration: 4, Func. Count: 39, Neg. LLF: 149.12344219099867
Iteration: 5, Func. Count: 49, Neg. LLF: 149.02189387179362
Iteration: 6, Func. Count: 59, Neg. LLF: 148.93654011311736
Iteration: 7, Func. Count: 68, Neg. LLF: 148.93643779879628
Iteration: 8, Func. Count: 77, Neg. LLF: 148.93643588710643
Iteration: 9, Func. Count: 85, Neg. LLF: 148.93643564552136
Optimization terminated successfully (Exit mode 0)
Current function value: 148.93643588710643
Iterations: 9
Function evaluations: 85
Gradient evaluations: 9
Iteration: 1, Func. Count: 11, Neg. LLF: 192.0888355881409
Iteration: 2, Func. Count: 22, Neg. LLF: 153.43600526911618
Iteration: 3, Func. Count: 33, Neg. LLF: 149.57850203972072
Iteration: 4, Func. Count: 43, Neg. LLF: 149.35317432943728
Iteration: 5, Func. Count: 54, Neg. LLF: 150.766517602616
Iteration: 6, Func. Count: 65, Neg. LLF: 150.90116230276146
Iteration: 7, Func. Count: 76, Neg. LLF: 150.4555501509844
Iteration: 8, Func. Count: 87, Neg. LLF: 148.5629787668953
Iteration: 9, Func. Count: 97, Neg. LLF: 148.5120288405749
Iteration: 10, Func. Count: 107, Neg. LLF: 148.455837329953
Iteration: 11, Func. Count: 117, Neg. LLF: 148.4627405438073
Iteration: 12, Func. Count: 128, Neg. LLF: 148.43256521483406
Iteration: 13, Func. Count: 138, Neg. LLF: 148.4321458769604
Iteration: 14, Func. Count: 148, Neg. LLF: 148.43211024413716
Iteration: 15, Func. Count: 158, Neg. LLF: 148.43210945467376
Optimization terminated successfully (Exit mode 0)
Current function value: 148.43210945467376
Iterations: 15
Function evaluations: 158
Gradient evaluations: 15
Iteration: 1, Func. Count: 12, Neg. LLF: 336.603084287646
Iteration: 2, Func. Count: 24, Neg. LLF: 299.8291059781908
Iteration: 3, Func. Count: 36, Neg. LLF: 149.52372141032083
Iteration: 4, Func. Count: 47, Neg. LLF: 162.63154187743487
Iteration: 5, Func. Count: 59, Neg. LLF: 165.52728965264623
Iteration: 6, Func. Count: 71, Neg. LLF: 158.96404657176802
Iteration: 7, Func. Count: 83, Neg. LLF: 150.4229580096282
Iteration: 8, Func. Count: 96, Neg. LLF: 148.57204121996529
Iteration: 9, Func. Count: 107, Neg. LLF: 148.63011816826793
Iteration: 10, Func. Count: 119, Neg. LLF: 148.54093631137496
Iteration: 11, Func. Count: 130, Neg. LLF: 148.5383089416601
Iteration: 12, Func. Count: 141, Neg. LLF: 148.53714218286913
Iteration: 13, Func. Count: 152, Neg. LLF: 148.5370821872446
Iteration: 14, Func. Count: 163, Neg. LLF: 148.53706104793133
Iteration: 15, Func. Count: 173, Neg. LLF: 148.53706094308149
Optimization terminated successfully (Exit mode 0)
Current function value: 148.53706104793133
Iterations: 15
Function evaluations: 173
Gradient evaluations: 15
Iteration: 1, Func. Count: 13, Neg. LLF: 218.70045463473693
Iteration: 2, Func. Count: 26, Neg. LLF: 269.4619228384203
Iteration: 3, Func. Count: 39, Neg. LLF: 149.71338017608457
Iteration: 4, Func. Count: 51, Neg. LLF: 164.0512928112782
Iteration: 5, Func. Count: 64, Neg. LLF: 152.1278994148498
Iteration: 6, Func. Count: 77, Neg. LLF: 152.57464268160015
Iteration: 7, Func. Count: 90, Neg. LLF: 148.9804579426866
Iteration: 8, Func. Count: 103, Neg. LLF: 148.7267576946771
Iteration: 9, Func. Count: 116, Neg. LLF: 148.60558365945153
Iteration: 10, Func. Count: 128, Neg. LLF: 150.00414379078302
Iteration: 11, Func. Count: 141, Neg. LLF: 148.56183300634805
Iteration: 12, Func. Count: 153, Neg. LLF: 148.54058178362786
Iteration: 13, Func. Count: 165, Neg. LLF: 148.53764016574866
Iteration: 14, Func. Count: 177, Neg. LLF: 148.53714599342794
Iteration: 15, Func. Count: 189, Neg. LLF: 148.53708852804655
Iteration: 16, Func. Count: 201, Neg. LLF: 148.5370620531931
Iteration: 17, Func. Count: 213, Neg. LLF: 148.53706105652296
Optimization terminated successfully (Exit mode 0)
Current function value: 148.53706105652296
Iterations: 17
Function evaluations: 213
Gradient evaluations: 17
Iteration: 1, Func. Count: 10, Neg. LLF: 161.74442060803958
Iteration: 2, Func. Count: 20, Neg. LLF: 154.8410332276882
Iteration: 3, Func. Count: 30, Neg. LLF: 158.2592417582721
Iteration: 4, Func. Count: 40, Neg. LLF: 153.66650459430497
Iteration: 5, Func. Count: 49, Neg. LLF: 154.12585435856704
Iteration: 6, Func. Count: 59, Neg. LLF: 153.58712641854174
Iteration: 7, Func. Count: 69, Neg. LLF: 154.68707539885906
Iteration: 8, Func. Count: 79, Neg. LLF: 152.28770794878895
Iteration: 9, Func. Count: 88, Neg. LLF: 151.87558574003572
Iteration: 10, Func. Count: 97, Neg. LLF: 150.95607902226294
Iteration: 11, Func. Count: 106, Neg. LLF: 149.9372867058792
Iteration: 12, Func. Count: 115, Neg. LLF: 149.88026377429517
Iteration: 13, Func. Count: 124, Neg. LLF: 149.80953078241632
Iteration: 14, Func. Count: 133, Neg. LLF: 149.7957259354786
Iteration: 15, Func. Count: 142, Neg. LLF: 149.79489405699488
Iteration: 16, Func. Count: 151, Neg. LLF: 149.79487934170282
Iteration: 17, Func. Count: 160, Neg. LLF: 149.7948717177474
Iteration: 18, Func. Count: 169, Neg. LLF: 149.7948709242315
Optimization terminated successfully (Exit mode 0)
Current function value: 149.7948709242315
Iterations: 18
Function evaluations: 169
Gradient evaluations: 18
Iteration: 1, Func. Count: 11, Neg. LLF: 379.9358543635938
Iteration: 2, Func. Count: 22, Neg. LLF: 150.42247377489258
Iteration: 3, Func. Count: 33, Neg. LLF: 148.98687484409035
Iteration: 4, Func. Count: 43, Neg. LLF: 149.20610494933277
Iteration: 5, Func. Count: 54, Neg. LLF: 148.96284686528907
Iteration: 6, Func. Count: 65, Neg. LLF: 148.93646437366675
Iteration: 7, Func. Count: 75, Neg. LLF: 148.93643693710777
Iteration: 8, Func. Count: 85, Neg. LLF: 148.93643580975544
Iteration: 9, Func. Count: 94, Neg. LLF: 148.9364355681995
Optimization terminated successfully (Exit mode 0)
Current function value: 148.93643580975544
Iterations: 9
Function evaluations: 94
Gradient evaluations: 9
Iteration: 1, Func. Count: 12, Neg. LLF: 188.80685131529694
Iteration: 2, Func. Count: 24, Neg. LLF: 156.6173759458732
Iteration: 3, Func. Count: 36, Neg. LLF: 148.58999127842134
Iteration: 4, Func. Count: 47, Neg. LLF: 149.11653782692687
Iteration: 5, Func. Count: 59, Neg. LLF: 154.00667493687203
Iteration: 6, Func. Count: 72, Neg. LLF: 148.5770020337114
Iteration: 7, Func. Count: 84, Neg. LLF: 148.5214140790662
Iteration: 8, Func. Count: 96, Neg. LLF: 148.45207914499971
Iteration: 9, Func. Count: 108, Neg. LLF: 148.44169481497326
Iteration: 10, Func. Count: 120, Neg. LLF: 148.43328473203647
Iteration: 11, Func. Count: 132, Neg. LLF: 148.4304429311673
Iteration: 12, Func. Count: 143, Neg. LLF: 148.43030964472194
Iteration: 13, Func. Count: 154, Neg. LLF: 148.43029254626072
Iteration: 14, Func. Count: 165, Neg. LLF: 148.43028317874217
Iteration: 15, Func. Count: 175, Neg. LLF: 148.4302830528279
Optimization terminated successfully (Exit mode 0)
Current function value: 148.43028317874217
Iterations: 15
Function evaluations: 175
Gradient evaluations: 15
Iteration: 1, Func. Count: 13, Neg. LLF: 301.84310678520916
Iteration: 2, Func. Count: 26, Neg. LLF: 2602.3352240785334
Iteration: 3, Func. Count: 39, Neg. LLF: 149.66564194211017
Iteration: 4, Func. Count: 51, Neg. LLF: 170.24744238766252
Iteration: 5, Func. Count: 64, Neg. LLF: 221.99957659268193
Iteration: 6, Func. Count: 77, Neg. LLF: 159.59449458308723
Iteration: 7, Func. Count: 90, Neg. LLF: 149.8092885787493
Iteration: 8, Func. Count: 103, Neg. LLF: 148.67803608986378
Iteration: 9, Func. Count: 115, Neg. LLF: 148.72128394718422
Iteration: 10, Func. Count: 128, Neg. LLF: 148.55098024749134
Iteration: 11, Func. Count: 140, Neg. LLF: 148.53722512948718
Iteration: 12, Func. Count: 152, Neg. LLF: 148.53081250068584
Iteration: 13, Func. Count: 164, Neg. LLF: 148.5288839448732
Iteration: 14, Func. Count: 176, Neg. LLF: 148.5256948219081
Iteration: 15, Func. Count: 188, Neg. LLF: 148.5844487052283
Iteration: 16, Func. Count: 201, Neg. LLF: 148.87668578964147
Iteration: 17, Func. Count: 214, Neg. LLF: 148.89494913475258
Iteration: 18, Func. Count: 227, Neg. LLF: 148.8666759371646
Iteration: 19, Func. Count: 240, Neg. LLF: 148.9093788966072
Iteration: 20, Func. Count: 253, Neg. LLF: 148.96682390107256
Iteration: 21, Func. Count: 266, Neg. LLF: 148.8740630388121
Iteration: 22, Func. Count: 279, Neg. LLF: 148.52515532705164
Iteration: 23, Func. Count: 292, Neg. LLF: 148.4483956919353
Iteration: 24, Func. Count: 304, Neg. LLF: 148.43736031566183
Iteration: 25, Func. Count: 316, Neg. LLF: 148.44305293795387
Iteration: 26, Func. Count: 329, Neg. LLF: 148.43535982186268
Iteration: 27, Func. Count: 341, Neg. LLF: 148.43439548117283
Iteration: 28, Func. Count: 353, Neg. LLF: 148.43167576236576
Iteration: 29, Func. Count: 365, Neg. LLF: 148.43030361676534
Iteration: 30, Func. Count: 377, Neg. LLF: 148.43028670520826
Iteration: 31, Func. Count: 389, Neg. LLF: 148.4302832125778
Iteration: 32, Func. Count: 400, Neg. LLF: 148.43028308874761
Optimization terminated successfully (Exit mode 0)
Current function value: 148.4302832125778
Iterations: 32
Function evaluations: 400
Gradient evaluations: 32
Iteration: 1, Func. Count: 14, Neg. LLF: 216.17227884072054
Iteration: 2, Func. Count: 28, Neg. LLF: 281.38211215068674
Iteration: 3, Func. Count: 42, Neg. LLF: 149.82561808329442
Iteration: 4, Func. Count: 55, Neg. LLF: 162.81281424585984
Iteration: 5, Func. Count: 69, Neg. LLF: 156.71216676888506
Iteration: 6, Func. Count: 83, Neg. LLF: 161.6116263079816
Iteration: 7, Func. Count: 97, Neg. LLF: 149.80407752334833
Iteration: 8, Func. Count: 111, Neg. LLF: 149.03553248912905
Iteration: 9, Func. Count: 125, Neg. LLF: 148.69502439309744
Iteration: 10, Func. Count: 139, Neg. LLF: 148.56522190756303
Iteration: 11, Func. Count: 152, Neg. LLF: 148.74332434011728
Iteration: 12, Func. Count: 166, Neg. LLF: 148.57233581673253
Iteration: 13, Func. Count: 180, Neg. LLF: 148.53796439935036
Iteration: 14, Func. Count: 193, Neg. LLF: 148.53629431152783
Iteration: 15, Func. Count: 206, Neg. LLF: 148.5358654526208
Iteration: 16, Func. Count: 219, Neg. LLF: 148.5357171438445
Iteration: 17, Func. Count: 232, Neg. LLF: 148.53568762457672
Iteration: 18, Func. Count: 245, Neg. LLF: 148.53568674612353
Optimization terminated successfully (Exit mode 0)
Current function value: 148.53568674612353
Iterations: 18
Function evaluations: 245
Gradient evaluations: 18
Iteration: 1, Func. Count: 11, Neg. LLF: 158.03902005946483
Iteration: 2, Func. Count: 22, Neg. LLF: 155.0305570027934
Iteration: 3, Func. Count: 33, Neg. LLF: 154.0245669577315
Iteration: 4, Func. Count: 44, Neg. LLF: 151.39835946272265
Iteration: 5, Func. Count: 54, Neg. LLF: 151.26919868382623
Iteration: 6, Func. Count: 64, Neg. LLF: 151.48383937019727
Iteration: 7, Func. Count: 75, Neg. LLF: 157.78952600161549
Iteration: 8, Func. Count: 86, Neg. LLF: 151.1131495861379
Iteration: 9, Func. Count: 97, Neg. LLF: 150.58693447764907
Iteration: 10, Func. Count: 107, Neg. LLF: 149.12748569995136
Iteration: 11, Func. Count: 117, Neg. LLF: 148.7640715493019
Iteration: 12, Func. Count: 127, Neg. LLF: 148.7467868647439
Iteration: 13, Func. Count: 138, Neg. LLF: 148.67261429701995
Iteration: 14, Func. Count: 149, Neg. LLF: 148.64031938516612
Iteration: 15, Func. Count: 159, Neg. LLF: 148.61178202054694
Iteration: 16, Func. Count: 169, Neg. LLF: 148.60661678144268
Iteration: 17, Func. Count: 179, Neg. LLF: 148.5983603851341
Iteration: 18, Func. Count: 189, Neg. LLF: 148.59807548092107
Iteration: 19, Func. Count: 199, Neg. LLF: 148.59798564654815
Iteration: 20, Func. Count: 209, Neg. LLF: 148.59795883594637
Iteration: 21, Func. Count: 218, Neg. LLF: 148.5979588137274
Optimization terminated successfully (Exit mode 0)
Current function value: 148.59795883594637
Iterations: 21
Function evaluations: 218
Gradient evaluations: 21
Iteration: 1, Func. Count: 12, Neg. LLF: 332.6787282269882
Iteration: 2, Func. Count: 24, Neg. LLF: 291.95464117179733
Iteration: 3, Func. Count: 36, Neg. LLF: 148.43915755128094
Iteration: 4, Func. Count: 47, Neg. LLF: 183.78295346353477
Iteration: 5, Func. Count: 59, Neg. LLF: 174.4934876115538
Iteration: 6, Func. Count: 71, Neg. LLF: 150.48441846130555
Iteration: 7, Func. Count: 83, Neg. LLF: 154.0282963608987
Iteration: 8, Func. Count: 95, Neg. LLF: 147.89191960509214
Iteration: 9, Func. Count: 107, Neg. LLF: 147.77855948184305
Iteration: 10, Func. Count: 118, Neg. LLF: 147.75136657063246
Iteration: 11, Func. Count: 129, Neg. LLF: 147.75062505375553
Iteration: 12, Func. Count: 140, Neg. LLF: 147.7504668643081
Iteration: 13, Func. Count: 151, Neg. LLF: 147.75044527824716
Iteration: 14, Func. Count: 162, Neg. LLF: 147.75044022154745
Iteration: 15, Func. Count: 173, Neg. LLF: 147.75043913857434
Iteration: 16, Func. Count: 183, Neg. LLF: 147.75043904786412
Optimization terminated successfully (Exit mode 0)
Current function value: 147.75043913857434
Iterations: 16
Function evaluations: 183
Gradient evaluations: 16
Iteration: 1, Func. Count: 13, Neg. LLF: 239.04896640469903
Iteration: 2, Func. Count: 26, Neg. LLF: 458.8419611518335
Iteration: 3, Func. Count: 39, Neg. LLF: 156.05428216809977
Iteration: 4, Func. Count: 52, Neg. LLF: 148.19241529713273
Iteration: 5, Func. Count: 64, Neg. LLF: 153.1062253874553
Iteration: 6, Func. Count: 77, Neg. LLF: 158.4023925392331
Iteration: 7, Func. Count: 91, Neg. LLF: 150.35861961846143
Iteration: 8, Func. Count: 104, Neg. LLF: 147.74948460438935
Iteration: 9, Func. Count: 116, Neg. LLF: 147.8114448574023
Iteration: 10, Func. Count: 129, Neg. LLF: 147.73570153681018
Iteration: 11, Func. Count: 142, Neg. LLF: 147.68219566406307
Iteration: 12, Func. Count: 154, Neg. LLF: 147.67964157644823
Iteration: 13, Func. Count: 166, Neg. LLF: 147.6794576131238
Iteration: 14, Func. Count: 178, Neg. LLF: 147.6794156037839
Iteration: 15, Func. Count: 190, Neg. LLF: 147.67940980152537
Iteration: 16, Func. Count: 202, Neg. LLF: 147.67940910832942
Optimization terminated successfully (Exit mode 0)
Current function value: 147.67940910832942
Iterations: 16
Function evaluations: 202
Gradient evaluations: 16
Iteration: 1, Func. Count: 14, Neg. LLF: 201.359429563193
Iteration: 2, Func. Count: 28, Neg. LLF: 200.13266249212612
Iteration: 3, Func. Count: 42, Neg. LLF: 225.04602708645237
Iteration: 4, Func. Count: 56, Neg. LLF: 157.4908813702078
Iteration: 5, Func. Count: 70, Neg. LLF: 166.89692685976286
Iteration: 6, Func. Count: 84, Neg. LLF: 152.0849495785059
Iteration: 7, Func. Count: 98, Neg. LLF: 148.47246107950048
Iteration: 8, Func. Count: 112, Neg. LLF: 148.81568145892868
Iteration: 9, Func. Count: 126, Neg. LLF: 150.03761810096978
Iteration: 10, Func. Count: 140, Neg. LLF: 148.03846550442796
Iteration: 11, Func. Count: 154, Neg. LLF: 148.74492616349323
Iteration: 12, Func. Count: 168, Neg. LLF: 147.70699230512446
Iteration: 13, Func. Count: 181, Neg. LLF: 147.7088839627567
Iteration: 14, Func. Count: 195, Neg. LLF: 147.69016471015644
Iteration: 15, Func. Count: 209, Neg. LLF: 147.68205632991393
Iteration: 16, Func. Count: 222, Neg. LLF: 147.6815114825419
Iteration: 17, Func. Count: 235, Neg. LLF: 147.67998343782142
Iteration: 18, Func. Count: 248, Neg. LLF: 147.6794314453378
Iteration: 19, Func. Count: 261, Neg. LLF: 147.67933086295415
Iteration: 20, Func. Count: 274, Neg. LLF: 147.67931815359586
Iteration: 21, Func. Count: 287, Neg. LLF: 147.6793171722426
Optimization terminated successfully (Exit mode 0)
Current function value: 147.6793171722426
Iterations: 21
Function evaluations: 287
Gradient evaluations: 21
Iteration: 1, Func. Count: 15, Neg. LLF: 199.0148488098123
Iteration: 2, Func. Count: 30, Neg. LLF: 198.94832164873563
Iteration: 3, Func. Count: 45, Neg. LLF: 186.54055177104885
Iteration: 4, Func. Count: 60, Neg. LLF: 167.56109707019013
Iteration: 5, Func. Count: 75, Neg. LLF: 157.60732665769268
Iteration: 6, Func. Count: 90, Neg. LLF: 160.13266269449136
Iteration: 7, Func. Count: 105, Neg. LLF: 154.65684757123896
Iteration: 8, Func. Count: 120, Neg. LLF: 148.0344049209201
Iteration: 9, Func. Count: 134, Neg. LLF: 148.9573097364034
Iteration: 10, Func. Count: 149, Neg. LLF: 148.00462528259544
Iteration: 11, Func. Count: 164, Neg. LLF: 149.77223039949308
Iteration: 12, Func. Count: 179, Neg. LLF: 147.7331838876947
Iteration: 13, Func. Count: 193, Neg. LLF: 147.68617966450623
Iteration: 14, Func. Count: 207, Neg. LLF: 147.69844320196833
Iteration: 15, Func. Count: 222, Neg. LLF: 147.6834030359644
Iteration: 16, Func. Count: 237, Neg. LLF: 147.68063657458654
Iteration: 17, Func. Count: 251, Neg. LLF: 147.6803255675705
Iteration: 18, Func. Count: 265, Neg. LLF: 147.68004275350594
Iteration: 19, Func. Count: 279, Neg. LLF: 147.67958294505868
Iteration: 20, Func. Count: 293, Neg. LLF: 147.67938214482137
Iteration: 21, Func. Count: 307, Neg. LLF: 147.67932238339435
Iteration: 22, Func. Count: 321, Neg. LLF: 147.67931763679968
Iteration: 23, Func. Count: 334, Neg. LLF: 147.67931758250853
Optimization terminated successfully (Exit mode 0)
Current function value: 147.67931763679968
Iterations: 23
Function evaluations: 334
Gradient evaluations: 23
Iteration: 1, Func. Count: 8, Neg. LLF: 158.64548942325376
Iteration: 2, Func. Count: 16, Neg. LLF: 156.601556199477
Iteration: 3, Func. Count: 26, Neg. LLF: 157.51746125399177
Iteration: 4, Func. Count: 34, Neg. LLF: 155.6696076041201
Iteration: 5, Func. Count: 41, Neg. LLF: 155.63703687187646
Iteration: 6, Func. Count: 48, Neg. LLF: 155.48854763679446
Iteration: 7, Func. Count: 55, Neg. LLF: 155.0931409423722
Iteration: 8, Func. Count: 62, Neg. LLF: 155.12804973066253
Iteration: 9, Func. Count: 70, Neg. LLF: 154.76961735602194
Iteration: 10, Func. Count: 77, Neg. LLF: 154.59481618907878
Iteration: 11, Func. Count: 84, Neg. LLF: 154.45835544429755
Iteration: 12, Func. Count: 91, Neg. LLF: 154.3543427476966
Iteration: 13, Func. Count: 98, Neg. LLF: 154.2907439500503
Iteration: 14, Func. Count: 105, Neg. LLF: 154.28481573523624
Iteration: 15, Func. Count: 112, Neg. LLF: 154.28104768547706
Iteration: 16, Func. Count: 119, Neg. LLF: 154.28062843746258
Iteration: 17, Func. Count: 126, Neg. LLF: 154.27945570494072
Iteration: 18, Func. Count: 133, Neg. LLF: 154.27930130313416
Iteration: 19, Func. Count: 140, Neg. LLF: 154.2792854391305
Iteration: 20, Func. Count: 147, Neg. LLF: 154.27928352042306
Iteration: 21, Func. Count: 153, Neg. LLF: 154.27928348233795
Optimization terminated successfully (Exit mode 0)
Current function value: 154.27928352042306
Iterations: 21
Function evaluations: 153
Gradient evaluations: 21
Iteration: 1, Func. Count: 9, Neg. LLF: 181.14672437749738
Iteration: 2, Func. Count: 18, Neg. LLF: 175.25709085607141
Iteration: 3, Func. Count: 27, Neg. LLF: 162.9556239892181
Iteration: 4, Func. Count: 36, Neg. LLF: 153.95933821328936
Iteration: 5, Func. Count: 45, Neg. LLF: 162.80927884351772
Iteration: 6, Func. Count: 54, Neg. LLF: 157.50609320174956
Iteration: 7, Func. Count: 63, Neg. LLF: 153.0279489257275
Iteration: 8, Func. Count: 71, Neg. LLF: 153.32683545313347
Iteration: 9, Func. Count: 80, Neg. LLF: 152.9761309962306
Iteration: 10, Func. Count: 88, Neg. LLF: 152.97423742212
Iteration: 11, Func. Count: 96, Neg. LLF: 152.9728860787978
Iteration: 12, Func. Count: 104, Neg. LLF: 152.97151275746566
Iteration: 13, Func. Count: 112, Neg. LLF: 152.97117352352922
Iteration: 14, Func. Count: 120, Neg. LLF: 152.97109102381413
Iteration: 15, Func. Count: 128, Neg. LLF: 152.971072494784
Iteration: 16, Func. Count: 136, Neg. LLF: 152.97106615768942
Iteration: 17, Func. Count: 144, Neg. LLF: 152.97106538517232
Optimization terminated successfully (Exit mode 0)
Current function value: 152.97106538517232
Iterations: 17
Function evaluations: 144
Gradient evaluations: 17
Iteration: 1, Func. Count: 10, Neg. LLF: 180.80322918887842
Iteration: 2, Func. Count: 20, Neg. LLF: 167.624057635031
Iteration: 3, Func. Count: 30, Neg. LLF: 163.73331536282404
Iteration: 4, Func. Count: 40, Neg. LLF: 154.6484454881597
Iteration: 5, Func. Count: 50, Neg. LLF: 154.52010475494552
Iteration: 6, Func. Count: 60, Neg. LLF: 153.70641068864097
Iteration: 7, Func. Count: 70, Neg. LLF: 152.9570819029261
Iteration: 8, Func. Count: 79, Neg. LLF: 152.94677171381636
Iteration: 9, Func. Count: 89, Neg. LLF: 152.9048597337414
Iteration: 10, Func. Count: 98, Neg. LLF: 152.90081527462402
Iteration: 11, Func. Count: 107, Neg. LLF: 152.8969132477393
Iteration: 12, Func. Count: 116, Neg. LLF: 152.89629150925677
Iteration: 13, Func. Count: 125, Neg. LLF: 152.89531390834387
Iteration: 14, Func. Count: 134, Neg. LLF: 152.89482584701432
Iteration: 15, Func. Count: 143, Neg. LLF: 152.89472745774356
Iteration: 16, Func. Count: 152, Neg. LLF: 152.89472141447985
Iteration: 17, Func. Count: 160, Neg. LLF: 152.89472137543345
Optimization terminated successfully (Exit mode 0)
Current function value: 152.89472141447985
Iterations: 17
Function evaluations: 160
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 167.49956615659076
Iteration: 2, Func. Count: 22, Neg. LLF: 166.20093304393745
Iteration: 3, Func. Count: 33, Neg. LLF: 161.3623761410126
Iteration: 4, Func. Count: 44, Neg. LLF: 153.50400146888387
Iteration: 5, Func. Count: 55, Neg. LLF: 153.7589510100155
Iteration: 6, Func. Count: 66, Neg. LLF: 152.92666318434368
Iteration: 7, Func. Count: 76, Neg. LLF: 153.285407309854
Iteration: 8, Func. Count: 87, Neg. LLF: 152.97112586552956
Iteration: 9, Func. Count: 98, Neg. LLF: 152.8774128943027
Iteration: 10, Func. Count: 109, Neg. LLF: 152.86281036390176
Iteration: 11, Func. Count: 119, Neg. LLF: 152.86258260974495
Iteration: 12, Func. Count: 129, Neg. LLF: 152.86255716732
Iteration: 13, Func. Count: 139, Neg. LLF: 152.86249770737507
Iteration: 14, Func. Count: 149, Neg. LLF: 152.86249610741334
Iteration: 15, Func. Count: 158, Neg. LLF: 152.86249606757218
Optimization terminated successfully (Exit mode 0)
Current function value: 152.86249610741334
Iterations: 15
Function evaluations: 158
Gradient evaluations: 15
Iteration: 1, Func. Count: 12, Neg. LLF: 166.36388109040018
Iteration: 2, Func. Count: 24, Neg. LLF: 170.24569759233248
Iteration: 3, Func. Count: 36, Neg. LLF: 159.7986897064334
Iteration: 4, Func. Count: 48, Neg. LLF: 154.5896431117987
Iteration: 5, Func. Count: 60, Neg. LLF: 155.28749190099816
Iteration: 6, Func. Count: 72, Neg. LLF: 153.27952847691384
Iteration: 7, Func. Count: 84, Neg. LLF: 152.94187039679272
Iteration: 8, Func. Count: 95, Neg. LLF: 152.8858667692386
Iteration: 9, Func. Count: 106, Neg. LLF: 152.8845503460877
Iteration: 10, Func. Count: 118, Neg. LLF: 152.86441452863116
Iteration: 11, Func. Count: 129, Neg. LLF: 152.86271198434466
Iteration: 12, Func. Count: 140, Neg. LLF: 152.86254561349546
Iteration: 13, Func. Count: 151, Neg. LLF: 152.86252777395984
Iteration: 14, Func. Count: 162, Neg. LLF: 152.86250475607926
Iteration: 15, Func. Count: 173, Neg. LLF: 152.86249880758098
Iteration: 16, Func. Count: 184, Neg. LLF: 152.86249694050267
Iteration: 17, Func. Count: 195, Neg. LLF: 152.8624961470949
Optimization terminated successfully (Exit mode 0)
Current function value: 152.8624961470949
Iterations: 17
Function evaluations: 195
Gradient evaluations: 17
Iteration: 1, Func. Count: 9, Neg. LLF: 156.81680677961643
Iteration: 2, Func. Count: 18, Neg. LLF: 157.8901390021299
Iteration: 3, Func. Count: 27, Neg. LLF: 157.30552417374432
Iteration: 4, Func. Count: 36, Neg. LLF: 155.82926080736917
Iteration: 5, Func. Count: 45, Neg. LLF: 154.0652783430691
Iteration: 6, Func. Count: 53, Neg. LLF: 153.77745212427146
Iteration: 7, Func. Count: 61, Neg. LLF: 153.68182063915327
Iteration: 8, Func. Count: 69, Neg. LLF: 153.48896555788664
Iteration: 9, Func. Count: 77, Neg. LLF: 153.36425955998018
Iteration: 10, Func. Count: 85, Neg. LLF: 153.2232755716966
Iteration: 11, Func. Count: 93, Neg. LLF: 152.94546708322724
Iteration: 12, Func. Count: 101, Neg. LLF: 152.72145915392508
Iteration: 13, Func. Count: 109, Neg. LLF: 158.42515778407775
Iteration: 14, Func. Count: 118, Neg. LLF: 157.68390995067853
Iteration: 15, Func. Count: 128, Neg. LLF: 152.68212492129226
Iteration: 16, Func. Count: 137, Neg. LLF: 152.0405319575068
Iteration: 17, Func. Count: 145, Neg. LLF: 152.00412549974146
Iteration: 18, Func. Count: 153, Neg. LLF: 151.99823531978467
Iteration: 19, Func. Count: 161, Neg. LLF: 151.99608613434623
Iteration: 20, Func. Count: 169, Neg. LLF: 151.99580969976088
Iteration: 21, Func. Count: 177, Neg. LLF: 151.99578935608486
Iteration: 22, Func. Count: 185, Neg. LLF: 151.99578861713195
Optimization terminated successfully (Exit mode 0)
Current function value: 151.99578861713195
Iterations: 22
Function evaluations: 185
Gradient evaluations: 22
Iteration: 1, Func. Count: 10, Neg. LLF: 659.1710839986322
Iteration: 2, Func. Count: 20, Neg. LLF: 149.59217045421002
Iteration: 3, Func. Count: 30, Neg. LLF: 148.98873655208553
Iteration: 4, Func. Count: 39, Neg. LLF: 148.9822125876683
Iteration: 5, Func. Count: 49, Neg. LLF: 148.95382396299877
Iteration: 6, Func. Count: 58, Neg. LLF: 148.95366672374973
Iteration: 7, Func. Count: 67, Neg. LLF: 148.95366127573286
Iteration: 8, Func. Count: 75, Neg. LLF: 148.95366101859597
Optimization terminated successfully (Exit mode 0)
Current function value: 148.95366127573286
Iterations: 8
Function evaluations: 75
Gradient evaluations: 8
Iteration: 1, Func. Count: 11, Neg. LLF: 317.3286239898577
Iteration: 2, Func. Count: 22, Neg. LLF: 149.4934800943205
Iteration: 3, Func. Count: 32, Neg. LLF: 151.16216391107747
Iteration: 4, Func. Count: 43, Neg. LLF: 401.0590526934199
Iteration: 5, Func. Count: 55, Neg. LLF: 156.10070836800202
Iteration: 6, Func. Count: 66, Neg. LLF: 149.03097758235282
Iteration: 7, Func. Count: 76, Neg. LLF: 149.00061373125055
Iteration: 8, Func. Count: 86, Neg. LLF: 148.97339976053047
Iteration: 9, Func. Count: 96, Neg. LLF: 148.9541623777127
Iteration: 10, Func. Count: 106, Neg. LLF: 148.95367040145592
Iteration: 11, Func. Count: 116, Neg. LLF: 148.95366115618305
Iteration: 12, Func. Count: 125, Neg. LLF: 148.95366090444668
Optimization terminated successfully (Exit mode 0)
Current function value: 148.95366115618305
Iterations: 12
Function evaluations: 125
Gradient evaluations: 12
Iteration: 1, Func. Count: 12, Neg. LLF: 315.1235501822097
Iteration: 2, Func. Count: 24, Neg. LLF: 149.4581888295874
Iteration: 3, Func. Count: 35, Neg. LLF: 152.90119526131593
Iteration: 4, Func. Count: 48, Neg. LLF: 155.28796855382376
Iteration: 5, Func. Count: 60, Neg. LLF: 149.77882386176964
Iteration: 6, Func. Count: 72, Neg. LLF: 148.87206112196154
Iteration: 7, Func. Count: 83, Neg. LLF: 148.8561737494936
Iteration: 8, Func. Count: 94, Neg. LLF: 148.8559299282524
Iteration: 9, Func. Count: 105, Neg. LLF: 148.8559257140506
Iteration: 10, Func. Count: 115, Neg. LLF: 148.85592554388194
Optimization terminated successfully (Exit mode 0)
Current function value: 148.8559257140506
Iterations: 10
Function evaluations: 115
Gradient evaluations: 10
Iteration: 1, Func. Count: 13, Neg. LLF: 214.8235863316121
Iteration: 2, Func. Count: 26, Neg. LLF: 166.34282188442418
Iteration: 3, Func. Count: 39, Neg. LLF: 153.45335648696934
Iteration: 4, Func. Count: 52, Neg. LLF: 152.6843696104228
Iteration: 5, Func. Count: 65, Neg. LLF: 152.36136266224014
Iteration: 6, Func. Count: 78, Neg. LLF: 149.11394511766184
Iteration: 7, Func. Count: 90, Neg. LLF: 149.7645500798566
Iteration: 8, Func. Count: 103, Neg. LLF: 149.10226942634606
Iteration: 9, Func. Count: 116, Neg. LLF: 148.89717678355262
Iteration: 10, Func. Count: 128, Neg. LLF: 148.86954530215573
Iteration: 11, Func. Count: 140, Neg. LLF: 148.8560617161442
Iteration: 12, Func. Count: 152, Neg. LLF: 148.8541412106992
Iteration: 13, Func. Count: 164, Neg. LLF: 148.8540667287339
Iteration: 14, Func. Count: 176, Neg. LLF: 148.85404626691513
Iteration: 15, Func. Count: 187, Neg. LLF: 148.85404612046386
Optimization terminated successfully (Exit mode 0)
Current function value: 148.85404626691513
Iterations: 15
Function evaluations: 187
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 162.11471300390247
Iteration: 2, Func. Count: 20, Neg. LLF: 155.97688915189008
Iteration: 3, Func. Count: 31, Neg. LLF: 158.40997246377285
Iteration: 4, Func. Count: 42, Neg. LLF: 153.39592897250807
Iteration: 5, Func. Count: 51, Neg. LLF: 153.1762295919658
Iteration: 6, Func. Count: 60, Neg. LLF: 154.88215386146706
Iteration: 7, Func. Count: 70, Neg. LLF: 152.7786524579253
Iteration: 8, Func. Count: 79, Neg. LLF: 152.52841239760704
Iteration: 9, Func. Count: 88, Neg. LLF: 151.08532480267291
Iteration: 10, Func. Count: 97, Neg. LLF: 152.21975060800787
Iteration: 11, Func. Count: 107, Neg. LLF: 150.9061480152311
Iteration: 12, Func. Count: 116, Neg. LLF: 150.89455381769932
Iteration: 13, Func. Count: 125, Neg. LLF: 150.89147891671308
Iteration: 14, Func. Count: 134, Neg. LLF: 150.89139692943556
Iteration: 15, Func. Count: 143, Neg. LLF: 150.89129836965984
Iteration: 16, Func. Count: 151, Neg. LLF: 150.89129834094567
Optimization terminated successfully (Exit mode 0)
Current function value: 150.89129836965984
Iterations: 16
Function evaluations: 151
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 514.3597934552773
Iteration: 2, Func. Count: 22, Neg. LLF: 149.19441780617151
Iteration: 3, Func. Count: 32, Neg. LLF: 149.0721328318528
Iteration: 4, Func. Count: 42, Neg. LLF: 149.19553229611049
Iteration: 5, Func. Count: 53, Neg. LLF: 149.2026190234403
Iteration: 6, Func. Count: 64, Neg. LLF: 148.93682278677483
Iteration: 7, Func. Count: 74, Neg. LLF: 148.936480641553
Iteration: 8, Func. Count: 84, Neg. LLF: 148.93643588050463
Iteration: 9, Func. Count: 93, Neg. LLF: 148.93643563887218
Optimization terminated successfully (Exit mode 0)
Current function value: 148.93643588050463
Iterations: 9
Function evaluations: 93
Gradient evaluations: 9
Iteration: 1, Func. Count: 12, Neg. LLF: 190.18716509054383
Iteration: 2, Func. Count: 24, Neg. LLF: 150.14771783753784
Iteration: 3, Func. Count: 36, Neg. LLF: 150.40058802052587
Iteration: 4, Func. Count: 48, Neg. LLF: 148.85843816249246
Iteration: 5, Func. Count: 59, Neg. LLF: 153.27396302280533
Iteration: 6, Func. Count: 72, Neg. LLF: 157.3299118256681
Iteration: 7, Func. Count: 85, Neg. LLF: 150.46128842053844
Iteration: 8, Func. Count: 97, Neg. LLF: 148.45302199302753
Iteration: 9, Func. Count: 108, Neg. LLF: 148.47462510412103
Iteration: 10, Func. Count: 120, Neg. LLF: 148.433788312977
Iteration: 11, Func. Count: 131, Neg. LLF: 148.4335815214297
Iteration: 12, Func. Count: 143, Neg. LLF: 148.43216698760043
Iteration: 13, Func. Count: 154, Neg. LLF: 148.43212160601283
Iteration: 14, Func. Count: 165, Neg. LLF: 148.43210934628587
Iteration: 15, Func. Count: 175, Neg. LLF: 148.4321092162595
Optimization terminated successfully (Exit mode 0)
Current function value: 148.43210934628587
Iterations: 15
Function evaluations: 175
Gradient evaluations: 15
Iteration: 1, Func. Count: 13, Neg. LLF: 330.0316862971787
Iteration: 2, Func. Count: 26, Neg. LLF: 426.7095366913419
Iteration: 3, Func. Count: 39, Neg. LLF: 148.74070376257328
Iteration: 4, Func. Count: 51, Neg. LLF: 150.92562290123504
Iteration: 5, Func. Count: 64, Neg. LLF: 160.16366865204355
Iteration: 6, Func. Count: 77, Neg. LLF: 150.39061131697645
Iteration: 7, Func. Count: 90, Neg. LLF: 148.48581074014265
Iteration: 8, Func. Count: 102, Neg. LLF: 148.6023075010425
Iteration: 9, Func. Count: 115, Neg. LLF: 148.54283545896115
Iteration: 10, Func. Count: 128, Neg. LLF: 148.44404502678586
Iteration: 11, Func. Count: 140, Neg. LLF: 148.440331525328
Iteration: 12, Func. Count: 152, Neg. LLF: 148.43760101978827
Iteration: 13, Func. Count: 164, Neg. LLF: 148.43559408367747
Iteration: 14, Func. Count: 176, Neg. LLF: 148.43312180561975
Iteration: 15, Func. Count: 188, Neg. LLF: 148.43455536776432
Iteration: 16, Func. Count: 201, Neg. LLF: 148.43235257207056
Iteration: 17, Func. Count: 213, Neg. LLF: 148.4321149566084
Iteration: 18, Func. Count: 225, Neg. LLF: 148.432109533119
Iteration: 19, Func. Count: 236, Neg. LLF: 148.43210940566283
Optimization terminated successfully (Exit mode 0)
Current function value: 148.432109533119
Iterations: 19
Function evaluations: 236
Gradient evaluations: 19
Iteration: 1, Func. Count: 14, Neg. LLF: 217.9092005519405
Iteration: 2, Func. Count: 28, Neg. LLF: 231.7910155182764
Iteration: 3, Func. Count: 42, Neg. LLF: 149.6296928937006
Iteration: 4, Func. Count: 55, Neg. LLF: 202.50010315602205
Iteration: 5, Func. Count: 69, Neg. LLF: 158.66359338318003
Iteration: 6, Func. Count: 83, Neg. LLF: 163.00408831340434
Iteration: 7, Func. Count: 97, Neg. LLF: 149.44768423485434
Iteration: 8, Func. Count: 111, Neg. LLF: 148.73283818783707
Iteration: 9, Func. Count: 125, Neg. LLF: 148.6340919053379
Iteration: 10, Func. Count: 138, Neg. LLF: 149.20381378718443
Iteration: 11, Func. Count: 152, Neg. LLF: 148.58918453316767
Iteration: 12, Func. Count: 165, Neg. LLF: 148.56534068502333
Iteration: 13, Func. Count: 178, Neg. LLF: 148.54184407224417
Iteration: 14, Func. Count: 191, Neg. LLF: 148.54016838499334
Iteration: 15, Func. Count: 204, Neg. LLF: 148.53778674200552
Iteration: 16, Func. Count: 217, Neg. LLF: 148.53708806839353
Iteration: 17, Func. Count: 230, Neg. LLF: 148.53707396182887
Iteration: 18, Func. Count: 243, Neg. LLF: 148.53706348403443
Iteration: 19, Func. Count: 256, Neg. LLF: 148.53706106301405
Iteration: 20, Func. Count: 268, Neg. LLF: 148.53706098002502
Optimization terminated successfully (Exit mode 0)
Current function value: 148.53706106301405
Iterations: 20
Function evaluations: 268
Gradient evaluations: 20
Iteration: 1, Func. Count: 11, Neg. LLF: 161.80822258903402
Iteration: 2, Func. Count: 22, Neg. LLF: 155.92303864421785
Iteration: 3, Func. Count: 34, Neg. LLF: 161.1832930646911
Iteration: 4, Func. Count: 46, Neg. LLF: 155.34503882248967
Iteration: 5, Func. Count: 58, Neg. LLF: 153.13188040250023
Iteration: 6, Func. Count: 68, Neg. LLF: 155.486069511526
Iteration: 7, Func. Count: 79, Neg. LLF: 152.71859624329144
Iteration: 8, Func. Count: 89, Neg. LLF: 152.50120273726293
Iteration: 9, Func. Count: 99, Neg. LLF: 151.3094948684894
Iteration: 10, Func. Count: 109, Neg. LLF: 150.67344721964162
Iteration: 11, Func. Count: 119, Neg. LLF: 169.16155444707394
Iteration: 12, Func. Count: 130, Neg. LLF: 162.61989602299371
Iteration: 13, Func. Count: 141, Neg. LLF: 149.80788340514695
Iteration: 14, Func. Count: 151, Neg. LLF: 149.79381427536686
Iteration: 15, Func. Count: 161, Neg. LLF: 149.79334282101607
Iteration: 16, Func. Count: 172, Neg. LLF: 149.79156431776033
Iteration: 17, Func. Count: 182, Neg. LLF: 149.79141614131842
Iteration: 18, Func. Count: 192, Neg. LLF: 149.79140805932204
Iteration: 19, Func. Count: 203, Neg. LLF: 149.7913878991019
Iteration: 20, Func. Count: 212, Neg. LLF: 149.79138786193067
Optimization terminated successfully (Exit mode 0)
Current function value: 149.7913878991019
Iterations: 20
Function evaluations: 212
Gradient evaluations: 20
Iteration: 1, Func. Count: 12, Neg. LLF: 377.6449442833741
Iteration: 2, Func. Count: 24, Neg. LLF: 150.70756793871806
Iteration: 3, Func. Count: 36, Neg. LLF: 148.99071483407113
Iteration: 4, Func. Count: 47, Neg. LLF: 149.21563024690795
Iteration: 5, Func. Count: 59, Neg. LLF: 148.9646278333753
Iteration: 6, Func. Count: 71, Neg. LLF: 148.9364872241967
Iteration: 7, Func. Count: 82, Neg. LLF: 148.93643688438365
Iteration: 8, Func. Count: 93, Neg. LLF: 148.9364358123128
Iteration: 9, Func. Count: 103, Neg. LLF: 148.93643557076115
Optimization terminated successfully (Exit mode 0)
Current function value: 148.9364358123128
Iterations: 9
Function evaluations: 103
Gradient evaluations: 9
Iteration: 1, Func. Count: 13, Neg. LLF: 185.93107562228755
Iteration: 2, Func. Count: 26, Neg. LLF: 154.08216675466875
Iteration: 3, Func. Count: 39, Neg. LLF: 149.80453647677928
Iteration: 4, Func. Count: 51, Neg. LLF: 149.7266810624895
Iteration: 5, Func. Count: 64, Neg. LLF: 200.37531406027452
Iteration: 6, Func. Count: 77, Neg. LLF: 152.09742873455787
Iteration: 7, Func. Count: 90, Neg. LLF: 149.7895145027327
Iteration: 8, Func. Count: 103, Neg. LLF: 148.57230207570404
Iteration: 9, Func. Count: 115, Neg. LLF: 148.5346627289413
Iteration: 10, Func. Count: 127, Neg. LLF: 148.55527027846233
Iteration: 11, Func. Count: 140, Neg. LLF: 148.46587298973054
Iteration: 12, Func. Count: 153, Neg. LLF: 148.4343257711644
Iteration: 13, Func. Count: 165, Neg. LLF: 148.43265135761231
Iteration: 14, Func. Count: 177, Neg. LLF: 148.43142363701716
Iteration: 15, Func. Count: 189, Neg. LLF: 148.43065008772842
Iteration: 16, Func. Count: 201, Neg. LLF: 148.43041094985117
Iteration: 17, Func. Count: 213, Neg. LLF: 148.4302906149069
Iteration: 18, Func. Count: 225, Neg. LLF: 148.4302830885958
Iteration: 19, Func. Count: 236, Neg. LLF: 148.43028296274846
Optimization terminated successfully (Exit mode 0)
Current function value: 148.4302830885958
Iterations: 19
Function evaluations: 236
Gradient evaluations: 19
Iteration: 1, Func. Count: 14, Neg. LLF: 218.49054632889565
Iteration: 2, Func. Count: 28, Neg. LLF: 220.12719295526003
Iteration: 3, Func. Count: 42, Neg. LLF: 149.77149955641391
Iteration: 4, Func. Count: 55, Neg. LLF: 157.92192582393113
Iteration: 5, Func. Count: 69, Neg. LLF: 159.5906643010853
Iteration: 6, Func. Count: 83, Neg. LLF: 151.45667742083688
Iteration: 7, Func. Count: 97, Neg. LLF: 148.77575284451663
Iteration: 8, Func. Count: 111, Neg. LLF: 149.34519434112354
Iteration: 9, Func. Count: 125, Neg. LLF: 148.69930711413866
Iteration: 10, Func. Count: 139, Neg. LLF: 148.5741523079794
Iteration: 11, Func. Count: 152, Neg. LLF: 148.76666112372084
Iteration: 12, Func. Count: 166, Neg. LLF: 148.54574781207435
Iteration: 13, Func. Count: 179, Neg. LLF: 148.53675414654205
Iteration: 14, Func. Count: 192, Neg. LLF: 148.53620974647
Iteration: 15, Func. Count: 205, Neg. LLF: 148.5357397728454
Iteration: 16, Func. Count: 218, Neg. LLF: 148.5357094785006
Iteration: 17, Func. Count: 231, Neg. LLF: 148.53568683048192
Iteration: 18, Func. Count: 243, Neg. LLF: 148.53568672488856
Optimization terminated successfully (Exit mode 0)
Current function value: 148.53568683048192
Iterations: 18
Function evaluations: 243
Gradient evaluations: 18
Iteration: 1, Func. Count: 15, Neg. LLF: 215.69833178024294
Iteration: 2, Func. Count: 30, Neg. LLF: 236.1171396002094
Iteration: 3, Func. Count: 45, Neg. LLF: 149.6799650457222
Iteration: 4, Func. Count: 59, Neg. LLF: 222.93888429397174
Iteration: 5, Func. Count: 74, Neg. LLF: 170.53522870415347
Iteration: 6, Func. Count: 89, Neg. LLF: 185.31572647829267
Iteration: 7, Func. Count: 104, Neg. LLF: 149.1374739223808
Iteration: 8, Func. Count: 119, Neg. LLF: 148.77403815930262
Iteration: 9, Func. Count: 134, Neg. LLF: 148.6802950019663
Iteration: 10, Func. Count: 149, Neg. LLF: 148.58890655289696
Iteration: 11, Func. Count: 164, Neg. LLF: 148.72673302799882
Iteration: 12, Func. Count: 180, Neg. LLF: 148.572124754485
Iteration: 13, Func. Count: 195, Neg. LLF: 148.53838854632684
Iteration: 14, Func. Count: 209, Neg. LLF: 148.5357503036095
Iteration: 15, Func. Count: 223, Neg. LLF: 148.53569119840452
Iteration: 16, Func. Count: 237, Neg. LLF: 148.53568794218182
Iteration: 17, Func. Count: 251, Neg. LLF: 148.53568683686476
Iteration: 18, Func. Count: 264, Neg. LLF: 148.53568675362033
Optimization terminated successfully (Exit mode 0)
Current function value: 148.53568683686476
Iterations: 18
Function evaluations: 264
Gradient evaluations: 18
Iteration: 1, Func. Count: 12, Neg. LLF: 158.14119652949955
Iteration: 2, Func. Count: 24, Neg. LLF: 153.4611650837789
Iteration: 3, Func. Count: 36, Neg. LLF: 155.12213694573802
Iteration: 4, Func. Count: 48, Neg. LLF: 151.66896351986807
Iteration: 5, Func. Count: 59, Neg. LLF: 154.02355848823998
Iteration: 6, Func. Count: 71, Neg. LLF: 151.60561509839636
Iteration: 7, Func. Count: 83, Neg. LLF: 151.23547851990847
Iteration: 8, Func. Count: 95, Neg. LLF: 153.81724561938282
Iteration: 9, Func. Count: 107, Neg. LLF: 150.35276159239706
Iteration: 10, Func. Count: 118, Neg. LLF: 149.6017894026806
Iteration: 11, Func. Count: 129, Neg. LLF: 149.00635436978538
Iteration: 12, Func. Count: 140, Neg. LLF: 150.02291148246107
Iteration: 13, Func. Count: 152, Neg. LLF: 148.75019469684722
Iteration: 14, Func. Count: 163, Neg. LLF: 148.62951561162595
Iteration: 15, Func. Count: 174, Neg. LLF: 148.631030888842
Iteration: 16, Func. Count: 186, Neg. LLF: 148.5998498870615
Iteration: 17, Func. Count: 197, Neg. LLF: 148.59874152053777
Iteration: 18, Func. Count: 208, Neg. LLF: 148.59804348694357
Iteration: 19, Func. Count: 219, Neg. LLF: 148.59799567515938
Iteration: 20, Func. Count: 230, Neg. LLF: 148.59796475833116
Iteration: 21, Func. Count: 241, Neg. LLF: 148.59795885234726
Iteration: 22, Func. Count: 251, Neg. LLF: 148.59795883014291
Optimization terminated successfully (Exit mode 0)
Current function value: 148.59795885234726
Iterations: 22
Function evaluations: 251
Gradient evaluations: 22
Iteration: 1, Func. Count: 13, Neg. LLF: 330.0341755484366
Iteration: 2, Func. Count: 26, Neg. LLF: 302.71637802188144
Iteration: 3, Func. Count: 39, Neg. LLF: 148.4316162346925
Iteration: 4, Func. Count: 51, Neg. LLF: 183.66714343876157
Iteration: 5, Func. Count: 64, Neg. LLF: 181.73926940663557
Iteration: 6, Func. Count: 77, Neg. LLF: 153.2623050451345
Iteration: 7, Func. Count: 90, Neg. LLF: 148.33313568184312
Iteration: 8, Func. Count: 103, Neg. LLF: 147.80342033477405
Iteration: 9, Func. Count: 115, Neg. LLF: 148.78700888659208
Iteration: 10, Func. Count: 128, Neg. LLF: 147.7469696312019
Iteration: 11, Func. Count: 140, Neg. LLF: 147.74469471130456
Iteration: 12, Func. Count: 152, Neg. LLF: 147.7445159560519
Iteration: 13, Func. Count: 164, Neg. LLF: 147.74445518116107
Iteration: 14, Func. Count: 176, Neg. LLF: 147.74444787833758
Iteration: 15, Func. Count: 188, Neg. LLF: 147.74444466620895
Iteration: 16, Func. Count: 199, Neg. LLF: 147.74444457834053
Optimization terminated successfully (Exit mode 0)
Current function value: 147.74444466620895
Iterations: 16
Function evaluations: 199
Gradient evaluations: 16
Iteration: 1, Func. Count: 14, Neg. LLF: 230.84637824311267
Iteration: 2, Func. Count: 28, Neg. LLF: 161.485081585682
Iteration: 3, Func. Count: 42, Neg. LLF: 151.31107841141633
Iteration: 4, Func. Count: 56, Neg. LLF: 149.36606682618478
Iteration: 5, Func. Count: 70, Neg. LLF: 156.8284537756816
Iteration: 6, Func. Count: 84, Neg. LLF: 148.01237540515808
Iteration: 7, Func. Count: 98, Neg. LLF: 148.1226704283943
Iteration: 8, Func. Count: 112, Neg. LLF: 148.36627259715323
Iteration: 9, Func. Count: 126, Neg. LLF: 147.7656872404257
Iteration: 10, Func. Count: 140, Neg. LLF: 147.6827334794782
Iteration: 11, Func. Count: 153, Neg. LLF: 147.67946447851108
Iteration: 12, Func. Count: 166, Neg. LLF: 147.6794210417618
Iteration: 13, Func. Count: 179, Neg. LLF: 147.6794117089818
Iteration: 14, Func. Count: 192, Neg. LLF: 147.67940937905692
Iteration: 15, Func. Count: 204, Neg. LLF: 147.67940930019302
Optimization terminated successfully (Exit mode 0)
Current function value: 147.67940937905692
Iterations: 15
Function evaluations: 204
Gradient evaluations: 15
Iteration: 1, Func. Count: 15, Neg. LLF: 201.2115401581477
Iteration: 2, Func. Count: 30, Neg. LLF: 195.32539653089853
Iteration: 3, Func. Count: 45, Neg. LLF: 160.5534562675839
Iteration: 4, Func. Count: 60, Neg. LLF: 150.7135002256799
Iteration: 5, Func. Count: 75, Neg. LLF: 159.70801984589107
Iteration: 6, Func. Count: 90, Neg. LLF: 151.1030425234097
Iteration: 7, Func. Count: 105, Neg. LLF: 148.59611309897153
Iteration: 8, Func. Count: 120, Neg. LLF: 148.08673910378891
Iteration: 9, Func. Count: 135, Neg. LLF: 148.19783625072253
Iteration: 10, Func. Count: 150, Neg. LLF: 147.69268718447086
Iteration: 11, Func. Count: 164, Neg. LLF: 147.91507959645878
Iteration: 12, Func. Count: 179, Neg. LLF: 148.23735564559124
Iteration: 13, Func. Count: 195, Neg. LLF: 147.6841413187789
Iteration: 14, Func. Count: 209, Neg. LLF: 147.68144369197262
Iteration: 15, Func. Count: 223, Neg. LLF: 147.68100293289262
Iteration: 16, Func. Count: 237, Neg. LLF: 147.68029056289296
Iteration: 17, Func. Count: 251, Neg. LLF: 147.67991295188398
Iteration: 18, Func. Count: 265, Neg. LLF: 147.6794226790272
Iteration: 19, Func. Count: 279, Neg. LLF: 147.67932783011307
Iteration: 20, Func. Count: 293, Neg. LLF: 147.67931752602098
Iteration: 21, Func. Count: 306, Neg. LLF: 147.67931744748057
Optimization terminated successfully (Exit mode 0)
Current function value: 147.67931752602098
Iterations: 21
Function evaluations: 306
Gradient evaluations: 21
Iteration: 1, Func. Count: 16, Neg. LLF: 198.9888285966676
Iteration: 2, Func. Count: 32, Neg. LLF: 193.89760009746357
Iteration: 3, Func. Count: 48, Neg. LLF: 150.41747297906807
Iteration: 4, Func. Count: 64, Neg. LLF: 164.82700969455448
Iteration: 5, Func. Count: 80, Neg. LLF: 152.5597590326497
Iteration: 6, Func. Count: 96, Neg. LLF: 151.85026099088316
Iteration: 7, Func. Count: 112, Neg. LLF: 148.3547993914222
Iteration: 8, Func. Count: 128, Neg. LLF: 148.00854190078465
Iteration: 9, Func. Count: 144, Neg. LLF: 148.88480523080824
Iteration: 10, Func. Count: 160, Neg. LLF: 148.18924871302613
Iteration: 11, Func. Count: 176, Neg. LLF: 147.70458524813537
Iteration: 12, Func. Count: 191, Neg. LLF: 147.83499040005083
Iteration: 13, Func. Count: 207, Neg. LLF: 147.68711520643097
Iteration: 14, Func. Count: 222, Neg. LLF: 147.68101724333667
Iteration: 15, Func. Count: 237, Neg. LLF: 147.68057823181266
Iteration: 16, Func. Count: 252, Neg. LLF: 147.68036608686535
Iteration: 17, Func. Count: 267, Neg. LLF: 147.67953735937127
Iteration: 18, Func. Count: 282, Neg. LLF: 147.67933720291964
Iteration: 19, Func. Count: 297, Neg. LLF: 147.6793211474392
Iteration: 20, Func. Count: 312, Neg. LLF: 147.67931751966563
Iteration: 21, Func. Count: 326, Neg. LLF: 147.67931746547154
Optimization terminated successfully (Exit mode 0)
Current function value: 147.67931751966563
Iterations: 21
Function evaluations: 326
Gradient evaluations: 21
Iteration: 1, Func. Count: 6, Neg. LLF: 638.6149054870458
Iteration: 2, Func. Count: 12, Neg. LLF: 149.7827013313632
Iteration: 3, Func. Count: 18, Neg. LLF: 148.9742798811676
Iteration: 4, Func. Count: 23, Neg. LLF: 148.96766442322368
Iteration: 5, Func. Count: 28, Neg. LLF: 148.9538279059983
Iteration: 6, Func. Count: 33, Neg. LLF: 148.95366198606538
Iteration: 7, Func. Count: 38, Neg. LLF: 148.95366115197277
Optimization terminated successfully (Exit mode 0)
Current function value: 148.95366115197277
Iterations: 7
Function evaluations: 38
Gradient evaluations: 7
Iteration: 1, Func. Count: 5, Neg. LLF: 161.35776493788265
Iteration: 2, Func. Count: 10, Neg. LLF: 160.84292801059635
Iteration: 3, Func. Count: 15, Neg. LLF: 159.31636070430548
Iteration: 4, Func. Count: 19, Neg. LLF: 159.02573476602484
Iteration: 5, Func. Count: 23, Neg. LLF: 158.88034639936797
Iteration: 6, Func. Count: 27, Neg. LLF: 158.86418569393464
Iteration: 7, Func. Count: 31, Neg. LLF: 158.86076243013835
Iteration: 8, Func. Count: 35, Neg. LLF: 158.85685550306312
Iteration: 9, Func. Count: 39, Neg. LLF: 158.85209927883204
Iteration: 10, Func. Count: 43, Neg. LLF: 158.8498868131707
Iteration: 11, Func. Count: 47, Neg. LLF: 158.84937571033538
Iteration: 12, Func. Count: 51, Neg. LLF: 158.84933188456975
Iteration: 13, Func. Count: 54, Neg. LLF: 158.84933188456125
Optimization terminated successfully (Exit mode 0)
Current function value: 158.84933188456975
Iterations: 13
Function evaluations: 54
Gradient evaluations: 13
Iteration: 1, Func. Count: 6, Neg. LLF: 439.10314218150353
Iteration: 2, Func. Count: 12, Neg. LLF: 158.2914664719939
Iteration: 3, Func. Count: 18, Neg. LLF: 154.57303353908878
Iteration: 4, Func. Count: 23, Neg. LLF: 154.5661062356168
Iteration: 5, Func. Count: 28, Neg. LLF: 154.5656266854637
Iteration: 6, Func. Count: 33, Neg. LLF: 154.56559373001096
Iteration: 7, Func. Count: 38, Neg. LLF: 154.56557583469993
Iteration: 8, Func. Count: 43, Neg. LLF: 154.5655740814764
Iteration: 9, Func. Count: 47, Neg. LLF: 154.56557402232085
Optimization terminated successfully (Exit mode 0)
Current function value: 154.5655740814764
Iterations: 9
Function evaluations: 47
Gradient evaluations: 9
Iteration: 1, Func. Count: 7, Neg. LLF: 417.2262037935291
Iteration: 2, Func. Count: 14, Neg. LLF: 156.4305763653366
Iteration: 3, Func. Count: 21, Neg. LLF: 154.638154691367
Iteration: 4, Func. Count: 27, Neg. LLF: 154.56593217393703
Iteration: 5, Func. Count: 33, Neg. LLF: 154.56557690518878
Iteration: 6, Func. Count: 39, Neg. LLF: 154.56557410963708
Iteration: 7, Func. Count: 44, Neg. LLF: 154.56557405597047
Optimization terminated successfully (Exit mode 0)
Current function value: 154.56557410963708
Iterations: 7
Function evaluations: 44
Gradient evaluations: 7
Iteration: 1, Func. Count: 8, Neg. LLF: 218.865654166812
Iteration: 2, Func. Count: 16, Neg. LLF: 155.0554164505608
Iteration: 3, Func. Count: 23, Neg. LLF: 161.1183710249273
Iteration: 4, Func. Count: 31, Neg. LLF: 157.78756051558838
Iteration: 5, Func. Count: 39, Neg. LLF: 158.59520534630036
Iteration: 6, Func. Count: 47, Neg. LLF: 155.62122274818302
Iteration: 7, Func. Count: 55, Neg. LLF: 154.51020357969298
Iteration: 8, Func. Count: 62, Neg. LLF: 154.48119709731216
Iteration: 9, Func. Count: 69, Neg. LLF: 154.4745690065289
Iteration: 10, Func. Count: 76, Neg. LLF: 154.4715636859837
Iteration: 11, Func. Count: 83, Neg. LLF: 154.47013856123854
Iteration: 12, Func. Count: 90, Neg. LLF: 154.46754647931476
Iteration: 13, Func. Count: 97, Neg. LLF: 154.4670686181283
Iteration: 14, Func. Count: 104, Neg. LLF: 154.4670071752774
Iteration: 15, Func. Count: 110, Neg. LLF: 154.46700712823647
Optimization terminated successfully (Exit mode 0)
Current function value: 154.4670071752774
Iterations: 15
Function evaluations: 110
Gradient evaluations: 15
Iteration: 1, Func. Count: 9, Neg. LLF: 215.60493061806034
Iteration: 2, Func. Count: 18, Neg. LLF: 154.99803405718052
Iteration: 3, Func. Count: 26, Neg. LLF: 154.6928013715723
Iteration: 4, Func. Count: 34, Neg. LLF: 163.97278772787573
Iteration: 5, Func. Count: 43, Neg. LLF: 155.64410487171918
Iteration: 6, Func. Count: 52, Neg. LLF: 159.8811170194144
Iteration: 7, Func. Count: 61, Neg. LLF: 154.47991729656752
Iteration: 8, Func. Count: 69, Neg. LLF: 154.47745616443126
Iteration: 9, Func. Count: 77, Neg. LLF: 154.4689646673899
Iteration: 10, Func. Count: 85, Neg. LLF: 154.46723913276233
Iteration: 11, Func. Count: 93, Neg. LLF: 154.4670103058843
Iteration: 12, Func. Count: 101, Neg. LLF: 154.46700680834186
Iteration: 13, Func. Count: 108, Neg. LLF: 154.46700677161695
Optimization terminated successfully (Exit mode 0)
Current function value: 154.46700680834186
Iterations: 13
Function evaluations: 108
Gradient evaluations: 13
Iteration: 1, Func. Count: 6, Neg. LLF: 165.02339082045918
Iteration: 2, Func. Count: 12, Neg. LLF: 159.4033049351327
Iteration: 3, Func. Count: 18, Neg. LLF: 160.5960913371874
Iteration: 4, Func. Count: 24, Neg. LLF: 157.11361714103984
Iteration: 5, Func. Count: 29, Neg. LLF: 157.00872430468644
Iteration: 6, Func. Count: 34, Neg. LLF: 156.91782960847704
Iteration: 7, Func. Count: 39, Neg. LLF: 156.88986703619668
Iteration: 8, Func. Count: 44, Neg. LLF: 156.85427507982365
Iteration: 9, Func. Count: 49, Neg. LLF: 156.84447056250383
Iteration: 10, Func. Count: 54, Neg. LLF: 156.83506664935004
Iteration: 11, Func. Count: 59, Neg. LLF: 156.80520427052625
Iteration: 12, Func. Count: 64, Neg. LLF: 156.80153511308345
Iteration: 13, Func. Count: 69, Neg. LLF: 156.80074158201148
Iteration: 14, Func. Count: 74, Neg. LLF: 156.8007332551115
Iteration: 15, Func. Count: 78, Neg. LLF: 156.8007332551219
Optimization terminated successfully (Exit mode 0)
Current function value: 156.8007332551115
Iterations: 15
Function evaluations: 78
Gradient evaluations: 15
Iteration: 1, Func. Count: 7, Neg. LLF: 449.5112366789555
Iteration: 2, Func. Count: 14, Neg. LLF: 157.8289305119438
Iteration: 3, Func. Count: 21, Neg. LLF: 154.63532985751394
Iteration: 4, Func. Count: 27, Neg. LLF: 154.5304821254222
Iteration: 5, Func. Count: 33, Neg. LLF: 154.50363709834846
Iteration: 6, Func. Count: 39, Neg. LLF: 154.49551005308152
Iteration: 7, Func. Count: 45, Neg. LLF: 154.4944720380511
Iteration: 8, Func. Count: 51, Neg. LLF: 154.4942815079082
Iteration: 9, Func. Count: 57, Neg. LLF: 154.49424743516036
Iteration: 10, Func. Count: 63, Neg. LLF: 154.4942405256946
Iteration: 11, Func. Count: 69, Neg. LLF: 154.494239020446
Iteration: 12, Func. Count: 74, Neg. LLF: 154.49423896650006
Optimization terminated successfully (Exit mode 0)
Current function value: 154.494239020446
Iterations: 12
Function evaluations: 74
Gradient evaluations: 12
Iteration: 1, Func. Count: 8, Neg. LLF: 241.27545179713155
Iteration: 2, Func. Count: 16, Neg. LLF: 156.53098910265672
Iteration: 3, Func. Count: 24, Neg. LLF: 154.47819191821856
Iteration: 4, Func. Count: 31, Neg. LLF: 154.42107195357818
Iteration: 5, Func. Count: 39, Neg. LLF: 161.27863561902603
Iteration: 6, Func. Count: 48, Neg. LLF: 154.48821090273924
Iteration: 7, Func. Count: 56, Neg. LLF: 158.57256305137128
Iteration: 8, Func. Count: 65, Neg. LLF: 153.8005659485145
Iteration: 9, Func. Count: 72, Neg. LLF: 153.79508884255864
Iteration: 10, Func. Count: 79, Neg. LLF: 153.7908955565878
Iteration: 11, Func. Count: 86, Neg. LLF: 153.78969226376174
Iteration: 12, Func. Count: 93, Neg. LLF: 153.78964560802999
Iteration: 13, Func. Count: 100, Neg. LLF: 153.78964123535042
Iteration: 14, Func. Count: 106, Neg. LLF: 153.78964119967074
Optimization terminated successfully (Exit mode 0)
Current function value: 153.78964123535042
Iterations: 14
Function evaluations: 106
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 220.12194342552925
Iteration: 2, Func. Count: 18, Neg. LLF: 232.70541982121713
Iteration: 3, Func. Count: 28, Neg. LLF: 160.95684799376323
Iteration: 4, Func. Count: 37, Neg. LLF: 155.38117857206817
Iteration: 5, Func. Count: 46, Neg. LLF: 154.23626765980896
Iteration: 6, Func. Count: 54, Neg. LLF: 153.97058144882564
Iteration: 7, Func. Count: 62, Neg. LLF: 156.01412247827213
Iteration: 8, Func. Count: 72, Neg. LLF: 153.8409401120452
Iteration: 9, Func. Count: 80, Neg. LLF: 153.81900060052052
Iteration: 10, Func. Count: 88, Neg. LLF: 153.80929041847247
Iteration: 11, Func. Count: 96, Neg. LLF: 153.80010344064846
Iteration: 12, Func. Count: 104, Neg. LLF: 153.79157864839533
Iteration: 13, Func. Count: 112, Neg. LLF: 153.789771027706
Iteration: 14, Func. Count: 120, Neg. LLF: 153.78964239534616
Iteration: 15, Func. Count: 128, Neg. LLF: 153.78964094258777
Iteration: 16, Func. Count: 135, Neg. LLF: 153.789640923932
Optimization terminated successfully (Exit mode 0)
Current function value: 153.78964094258777
Iterations: 16
Function evaluations: 135
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 173.07834424665683
Iteration: 2, Func. Count: 20, Neg. LLF: 158.31735556511813
Iteration: 3, Func. Count: 30, Neg. LLF: 154.79014088470657
Iteration: 4, Func. Count: 40, Neg. LLF: 154.9367923163772
Iteration: 5, Func. Count: 50, Neg. LLF: 154.43754403645522
Iteration: 6, Func. Count: 59, Neg. LLF: 154.28762311166875
Iteration: 7, Func. Count: 68, Neg. LLF: 154.23173177069185
Iteration: 8, Func. Count: 77, Neg. LLF: 159.12671545244692
Iteration: 9, Func. Count: 87, Neg. LLF: 171.91957591458555
Iteration: 10, Func. Count: 97, Neg. LLF: 153.93920945057596
Iteration: 11, Func. Count: 106, Neg. LLF: 154.00140878255522
Iteration: 12, Func. Count: 116, Neg. LLF: 153.8198416124672
Iteration: 13, Func. Count: 125, Neg. LLF: 153.80077045361543
Iteration: 14, Func. Count: 134, Neg. LLF: 153.79045001352623
Iteration: 15, Func. Count: 143, Neg. LLF: 153.78966500071112
Iteration: 16, Func. Count: 152, Neg. LLF: 153.78964255972204
Iteration: 17, Func. Count: 161, Neg. LLF: 153.78964120570396
Iteration: 18, Func. Count: 169, Neg. LLF: 153.78964120544316
Optimization terminated successfully (Exit mode 0)
Current function value: 153.78964120570396
Iterations: 18
Function evaluations: 169
Gradient evaluations: 18
Iteration: 1, Func. Count: 7, Neg. LLF: 164.63409150900725
Iteration: 2, Func. Count: 14, Neg. LLF: 159.3506171042626
Iteration: 3, Func. Count: 21, Neg. LLF: 160.37896242330174
Iteration: 4, Func. Count: 28, Neg. LLF: 158.48581827181098
Iteration: 5, Func. Count: 36, Neg. LLF: 157.10017139165348
Iteration: 6, Func. Count: 42, Neg. LLF: 156.94813338697813
Iteration: 7, Func. Count: 48, Neg. LLF: 156.87738757532776
Iteration: 8, Func. Count: 54, Neg. LLF: 156.8500472412448
Iteration: 9, Func. Count: 60, Neg. LLF: 156.81302490658192
Iteration: 10, Func. Count: 66, Neg. LLF: 156.802416341333
Iteration: 11, Func. Count: 72, Neg. LLF: 156.76568236159972
Iteration: 12, Func. Count: 78, Neg. LLF: 156.74858968948104
Iteration: 13, Func. Count: 84, Neg. LLF: 156.74468733557725
Iteration: 14, Func. Count: 90, Neg. LLF: 156.74420034278188
Iteration: 15, Func. Count: 96, Neg. LLF: 156.7441992886911
Iteration: 16, Func. Count: 101, Neg. LLF: 156.74419928869486
Optimization terminated successfully (Exit mode 0)
Current function value: 156.7441992886911
Iterations: 16
Function evaluations: 101
Gradient evaluations: 16
Iteration: 1, Func. Count: 8, Neg. LLF: 420.56948129513717
Iteration: 2, Func. Count: 16, Neg. LLF: 157.35393254417386
Iteration: 3, Func. Count: 24, Neg. LLF: 154.63657642071348
Iteration: 4, Func. Count: 32, Neg. LLF: 154.50547467197848
Iteration: 5, Func. Count: 39, Neg. LLF: 154.5179588709147
Iteration: 6, Func. Count: 47, Neg. LLF: 154.4899070398079
Iteration: 7, Func. Count: 54, Neg. LLF: 154.4894896053823
Iteration: 8, Func. Count: 61, Neg. LLF: 154.48928941621594
Iteration: 9, Func. Count: 68, Neg. LLF: 154.4892668525198
Iteration: 10, Func. Count: 75, Neg. LLF: 154.48926555290703
Iteration: 11, Func. Count: 81, Neg. LLF: 154.48926550441743
Optimization terminated successfully (Exit mode 0)
Current function value: 154.48926555290703
Iterations: 11
Function evaluations: 81
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 226.31021142452482
Iteration: 2, Func. Count: 18, Neg. LLF: 157.1051630247262
Iteration: 3, Func. Count: 27, Neg. LLF: 154.31098387521746
Iteration: 4, Func. Count: 35, Neg. LLF: 154.82910615979222
Iteration: 5, Func. Count: 44, Neg. LLF: 155.41583826757363
Iteration: 6, Func. Count: 53, Neg. LLF: 159.854118135588
Iteration: 7, Func. Count: 62, Neg. LLF: 154.36234361426332
Iteration: 8, Func. Count: 71, Neg. LLF: 153.83277981608688
Iteration: 9, Func. Count: 79, Neg. LLF: 153.77653748997014
Iteration: 10, Func. Count: 87, Neg. LLF: 153.7574985290187
Iteration: 11, Func. Count: 95, Neg. LLF: 153.7392071361439
Iteration: 12, Func. Count: 103, Neg. LLF: 153.73359357518953
Iteration: 13, Func. Count: 111, Neg. LLF: 153.7311354441676
Iteration: 14, Func. Count: 119, Neg. LLF: 153.73086655798718
Iteration: 15, Func. Count: 127, Neg. LLF: 153.7308643364163
Iteration: 16, Func. Count: 134, Neg. LLF: 153.7308643112832
Optimization terminated successfully (Exit mode 0)
Current function value: 153.7308643364163
Iterations: 16
Function evaluations: 134
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 218.45541086978182
Iteration: 2, Func. Count: 20, Neg. LLF: 157.20517234217914
Iteration: 3, Func. Count: 30, Neg. LLF: 154.70866811482784
Iteration: 4, Func. Count: 39, Neg. LLF: 158.25642044860803
Iteration: 5, Func. Count: 49, Neg. LLF: 153.96313880962137
Iteration: 6, Func. Count: 58, Neg. LLF: 159.18158068596054
Iteration: 7, Func. Count: 69, Neg. LLF: 154.79653098382352
Iteration: 8, Func. Count: 79, Neg. LLF: 153.7893464693079
Iteration: 9, Func. Count: 88, Neg. LLF: 153.79826836734586
Iteration: 10, Func. Count: 98, Neg. LLF: 153.7397403456894
Iteration: 11, Func. Count: 107, Neg. LLF: 153.73153243216666
Iteration: 12, Func. Count: 116, Neg. LLF: 153.73104480428165
Iteration: 13, Func. Count: 125, Neg. LLF: 153.73098909816423
Iteration: 14, Func. Count: 134, Neg. LLF: 153.73095595907654
Iteration: 15, Func. Count: 143, Neg. LLF: 153.7308827885588
Iteration: 16, Func. Count: 152, Neg. LLF: 153.7308666788499
Iteration: 17, Func. Count: 161, Neg. LLF: 153.73086418086837
Iteration: 18, Func. Count: 169, Neg. LLF: 153.73086416436996
Optimization terminated successfully (Exit mode 0)
Current function value: 153.73086418086837
Iterations: 18
Function evaluations: 169
Gradient evaluations: 18
Iteration: 1, Func. Count: 11, Neg. LLF: 171.4617288880949
Iteration: 2, Func. Count: 22, Neg. LLF: 157.87074794974305
Iteration: 3, Func. Count: 33, Neg. LLF: 155.38633566699517
Iteration: 4, Func. Count: 44, Neg. LLF: 155.1912555265778
Iteration: 5, Func. Count: 55, Neg. LLF: 154.41149022256167
Iteration: 6, Func. Count: 65, Neg. LLF: 154.39560605798636
Iteration: 7, Func. Count: 75, Neg. LLF: 154.35446544399755
Iteration: 8, Func. Count: 85, Neg. LLF: 154.34534493628405
Iteration: 9, Func. Count: 95, Neg. LLF: 154.21786573861291
Iteration: 10, Func. Count: 105, Neg. LLF: 156.56133316670744
Iteration: 11, Func. Count: 116, Neg. LLF: 156.64690142838043
Iteration: 12, Func. Count: 127, Neg. LLF: 156.61689573246443
Iteration: 13, Func. Count: 138, Neg. LLF: 179.8569258694984
Iteration: 14, Func. Count: 151, Neg. LLF: 163.37090037645112
Iteration: 15, Func. Count: 162, Neg. LLF: 155.78761487499676
Iteration: 16, Func. Count: 173, Neg. LLF: 154.10819648986643
Iteration: 17, Func. Count: 184, Neg. LLF: 153.89218995410738
Iteration: 18, Func. Count: 195, Neg. LLF: 153.79200239313926
Iteration: 19, Func. Count: 205, Neg. LLF: 153.86690026365724
Iteration: 20, Func. Count: 216, Neg. LLF: 154.05118711582435
Iteration: 21, Func. Count: 227, Neg. LLF: 153.76128163471893
Iteration: 22, Func. Count: 238, Neg. LLF: 153.7383468496289
Iteration: 23, Func. Count: 248, Neg. LLF: 153.73239854810205
Iteration: 24, Func. Count: 258, Neg. LLF: 153.7310363724302
Iteration: 25, Func. Count: 268, Neg. LLF: 153.73086895607236
Iteration: 26, Func. Count: 278, Neg. LLF: 153.73086460243894
Iteration: 27, Func. Count: 287, Neg. LLF: 153.73086461570762
Optimization terminated successfully (Exit mode 0)
Current function value: 153.73086460243894
Iterations: 28
Function evaluations: 287
Gradient evaluations: 27
Iteration: 1, Func. Count: 8, Neg. LLF: 161.57026642777916
Iteration: 2, Func. Count: 16, Neg. LLF: 156.92011022153986
Iteration: 3, Func. Count: 24, Neg. LLF: 156.68697928322166
Iteration: 4, Func. Count: 33, Neg. LLF: 155.09756279379098
Iteration: 5, Func. Count: 41, Neg. LLF: 154.72562371872493
Iteration: 6, Func. Count: 48, Neg. LLF: 154.65157918249454
Iteration: 7, Func. Count: 55, Neg. LLF: 154.61666988402166
Iteration: 8, Func. Count: 62, Neg. LLF: 154.5680943323806
Iteration: 9, Func. Count: 69, Neg. LLF: 154.42495436345934
Iteration: 10, Func. Count: 76, Neg. LLF: 154.40386323200528
Iteration: 11, Func. Count: 83, Neg. LLF: 154.3945731235187
Iteration: 12, Func. Count: 90, Neg. LLF: 154.39393822200788
Iteration: 13, Func. Count: 97, Neg. LLF: 154.39381418270426
Iteration: 14, Func. Count: 104, Neg. LLF: 154.393679731959
Iteration: 15, Func. Count: 111, Neg. LLF: 154.39360780344532
Iteration: 16, Func. Count: 118, Neg. LLF: 154.39359147007755
Iteration: 17, Func. Count: 125, Neg. LLF: 154.39359040500594
Iteration: 18, Func. Count: 131, Neg. LLF: 154.39359040501066
Optimization terminated successfully (Exit mode 0)
Current function value: 154.39359040500594
Iterations: 18
Function evaluations: 131
Gradient evaluations: 18
Iteration: 1, Func. Count: 9, Neg. LLF: 413.4327805052548
Iteration: 2, Func. Count: 18, Neg. LLF: 158.10938086551815
Iteration: 3, Func. Count: 27, Neg. LLF: 158.22476667318764
Iteration: 4, Func. Count: 36, Neg. LLF: 153.45449516583503
Iteration: 5, Func. Count: 44, Neg. LLF: 154.42510678009538
Iteration: 6, Func. Count: 53, Neg. LLF: 172.24443065297606
Iteration: 7, Func. Count: 62, Neg. LLF: 153.6524171326547
Iteration: 8, Func. Count: 71, Neg. LLF: 153.07831439707775
Iteration: 9, Func. Count: 79, Neg. LLF: 153.04243865306358
Iteration: 10, Func. Count: 87, Neg. LLF: 153.01076259212738
Iteration: 11, Func. Count: 95, Neg. LLF: 152.98285425994445
Iteration: 12, Func. Count: 103, Neg. LLF: 152.97297810085237
Iteration: 13, Func. Count: 111, Neg. LLF: 152.96936808183352
Iteration: 14, Func. Count: 119, Neg. LLF: 152.9683341157896
Iteration: 15, Func. Count: 127, Neg. LLF: 152.9679231416044
Iteration: 16, Func. Count: 135, Neg. LLF: 152.967816754766
Iteration: 17, Func. Count: 143, Neg. LLF: 152.96780308223376
Iteration: 18, Func. Count: 151, Neg. LLF: 152.96780219481408
Optimization terminated successfully (Exit mode 0)
Current function value: 152.96780219481408
Iterations: 18
Function evaluations: 151
Gradient evaluations: 18
Iteration: 1, Func. Count: 10, Neg. LLF: 178.963552251511
Iteration: 2, Func. Count: 20, Neg. LLF: 184.9542798573727
Iteration: 3, Func. Count: 30, Neg. LLF: 156.13904710918712
Iteration: 4, Func. Count: 40, Neg. LLF: 153.30288664309955
Iteration: 5, Func. Count: 50, Neg. LLF: 153.03450996481084
Iteration: 6, Func. Count: 59, Neg. LLF: 152.97821324269714
Iteration: 7, Func. Count: 68, Neg. LLF: 152.96310339339672
Iteration: 8, Func. Count: 78, Neg. LLF: 152.92691680463727
Iteration: 9, Func. Count: 87, Neg. LLF: 152.9250996728638
Iteration: 10, Func. Count: 96, Neg. LLF: 152.92425983613927
Iteration: 11, Func. Count: 105, Neg. LLF: 152.92299583986127
Iteration: 12, Func. Count: 114, Neg. LLF: 152.9212770450923
Iteration: 13, Func. Count: 123, Neg. LLF: 152.9203912425517
Iteration: 14, Func. Count: 132, Neg. LLF: 152.92027134185173
Iteration: 15, Func. Count: 141, Neg. LLF: 152.92026621189046
Iteration: 16, Func. Count: 149, Neg. LLF: 152.9202661993962
Optimization terminated successfully (Exit mode 0)
Current function value: 152.92026621189046
Iterations: 16
Function evaluations: 149
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 193.46241384602013
Iteration: 2, Func. Count: 22, Neg. LLF: 229.13127609088951
Iteration: 3, Func. Count: 33, Neg. LLF: 154.04569802724382
Iteration: 4, Func. Count: 44, Neg. LLF: 160.98520674642387
Iteration: 5, Func. Count: 55, Neg. LLF: 158.1141507748957
Iteration: 6, Func. Count: 66, Neg. LLF: 154.15835304498452
Iteration: 7, Func. Count: 77, Neg. LLF: 153.47150366077088
Iteration: 8, Func. Count: 88, Neg. LLF: 154.29488005152734
Iteration: 9, Func. Count: 99, Neg. LLF: 152.9483817405989
Iteration: 10, Func. Count: 109, Neg. LLF: 153.32842752193767
Iteration: 11, Func. Count: 120, Neg. LLF: 152.92486967052292
Iteration: 12, Func. Count: 130, Neg. LLF: 152.9222690220963
Iteration: 13, Func. Count: 140, Neg. LLF: 152.91947800980978
Iteration: 14, Func. Count: 150, Neg. LLF: 152.91363131228425
Iteration: 15, Func. Count: 160, Neg. LLF: 152.90987954828424
Iteration: 16, Func. Count: 170, Neg. LLF: 152.90889418490298
Iteration: 17, Func. Count: 180, Neg. LLF: 152.9087885646516
Iteration: 18, Func. Count: 190, Neg. LLF: 152.90877618426734
Iteration: 19, Func. Count: 199, Neg. LLF: 152.90877617066954
Optimization terminated successfully (Exit mode 0)
Current function value: 152.90877618426734
Iterations: 19
Function evaluations: 199
Gradient evaluations: 19
Iteration: 1, Func. Count: 12, Neg. LLF: 199.74869732226063
Iteration: 2, Func. Count: 24, Neg. LLF: 225.08371293522958
Iteration: 3, Func. Count: 36, Neg. LLF: 196.77989487025687
Iteration: 4, Func. Count: 48, Neg. LLF: 155.46065499486474
Iteration: 5, Func. Count: 60, Neg. LLF: 154.1581147594157
Iteration: 6, Func. Count: 72, Neg. LLF: 154.57063672278585
Iteration: 7, Func. Count: 84, Neg. LLF: 153.05450114910684
Iteration: 8, Func. Count: 95, Neg. LLF: 152.9739024225238
Iteration: 9, Func. Count: 106, Neg. LLF: 152.9462926486794
Iteration: 10, Func. Count: 117, Neg. LLF: 152.97850180780767
Iteration: 11, Func. Count: 129, Neg. LLF: 152.98536374920835
Iteration: 12, Func. Count: 141, Neg. LLF: 152.91932870061663
Iteration: 13, Func. Count: 152, Neg. LLF: 152.91662952981466
Iteration: 14, Func. Count: 163, Neg. LLF: 152.91544981510404
Iteration: 15, Func. Count: 174, Neg. LLF: 152.9109324633494
Iteration: 16, Func. Count: 185, Neg. LLF: 152.90909528572917
Iteration: 17, Func. Count: 196, Neg. LLF: 152.9087968027152
Iteration: 18, Func. Count: 207, Neg. LLF: 152.90877789544092
Iteration: 19, Func. Count: 218, Neg. LLF: 152.90877601503257
Iteration: 20, Func. Count: 228, Neg. LLF: 152.90877604791837
Optimization terminated successfully (Exit mode 0)
Current function value: 152.90877601503257
Iterations: 20
Function evaluations: 228
Gradient evaluations: 20
Iteration: 1, Func. Count: 5, Neg. LLF: 159.09172230411642
Iteration: 2, Func. Count: 9, Neg. LLF: 159.0211179980484
Iteration: 3, Func. Count: 13, Neg. LLF: 158.87102218981724
Iteration: 4, Func. Count: 17, Neg. LLF: 158.8286467715227
Iteration: 5, Func. Count: 21, Neg. LLF: 158.82199901166223
Iteration: 6, Func. Count: 25, Neg. LLF: 158.82063097497942
Iteration: 7, Func. Count: 29, Neg. LLF: 158.814558100481
Iteration: 8, Func. Count: 33, Neg. LLF: 158.8064369953559
Iteration: 9, Func. Count: 37, Neg. LLF: 158.8063312562203
Iteration: 10, Func. Count: 41, Neg. LLF: 158.80633039022047
Optimization terminated successfully (Exit mode 0)
Current function value: 158.80633039022047
Iterations: 10
Function evaluations: 41
Gradient evaluations: 10
Iteration: 1, Func. Count: 6, Neg. LLF: 176.03142777811755
Iteration: 2, Func. Count: 12, Neg. LLF: 163.59077437344027
Iteration: 3, Func. Count: 18, Neg. LLF: 159.05418887913473
Iteration: 4, Func. Count: 24, Neg. LLF: 180.98830673067977
Iteration: 5, Func. Count: 30, Neg. LLF: 158.71725939183534
Iteration: 6, Func. Count: 35, Neg. LLF: 158.6789700987507
Iteration: 7, Func. Count: 40, Neg. LLF: 158.67402266420893
Iteration: 8, Func. Count: 45, Neg. LLF: 158.65432884986504
Iteration: 9, Func. Count: 50, Neg. LLF: 158.6491030711261
Iteration: 10, Func. Count: 55, Neg. LLF: 158.64770819402446
Iteration: 11, Func. Count: 60, Neg. LLF: 158.64767732589593
Iteration: 12, Func. Count: 65, Neg. LLF: 158.647676186984
Iteration: 13, Func. Count: 69, Neg. LLF: 158.64767616209778
Optimization terminated successfully (Exit mode 0)
Current function value: 158.647676186984
Iterations: 13
Function evaluations: 69
Gradient evaluations: 13
Iteration: 1, Func. Count: 7, Neg. LLF: 174.83255889125007
Iteration: 2, Func. Count: 14, Neg. LLF: 160.07063748609502
Iteration: 3, Func. Count: 21, Neg. LLF: 159.10888196910227
Iteration: 4, Func. Count: 28, Neg. LLF: 159.17439702971186
Iteration: 5, Func. Count: 35, Neg. LLF: 159.04656990240096
Iteration: 6, Func. Count: 42, Neg. LLF: 158.53111802922427
Iteration: 7, Func. Count: 48, Neg. LLF: 158.52720960298294
Iteration: 8, Func. Count: 54, Neg. LLF: 158.52679191521676
Iteration: 9, Func. Count: 60, Neg. LLF: 158.52673032762985
Iteration: 10, Func. Count: 66, Neg. LLF: 158.52643011779082
Iteration: 11, Func. Count: 72, Neg. LLF: 158.5263221331746
Iteration: 12, Func. Count: 78, Neg. LLF: 158.52630829545726
Iteration: 13, Func. Count: 84, Neg. LLF: 158.52630754632105
Optimization terminated successfully (Exit mode 0)
Current function value: 158.52630754632105
Iterations: 13
Function evaluations: 84
Gradient evaluations: 13
Iteration: 1, Func. Count: 8, Neg. LLF: 174.1827300161588
Iteration: 2, Func. Count: 16, Neg. LLF: 158.95283750680787
Iteration: 3, Func. Count: 24, Neg. LLF: 158.99740130109325
Iteration: 4, Func. Count: 32, Neg. LLF: 159.2191965229012
Iteration: 5, Func. Count: 40, Neg. LLF: 158.165906242029
Iteration: 6, Func. Count: 48, Neg. LLF: 157.85452857667065
Iteration: 7, Func. Count: 55, Neg. LLF: 157.83447001415178
Iteration: 8, Func. Count: 62, Neg. LLF: 157.81613882534663
Iteration: 9, Func. Count: 69, Neg. LLF: 157.80284291170685
Iteration: 10, Func. Count: 76, Neg. LLF: 157.802232499972
Iteration: 11, Func. Count: 83, Neg. LLF: 157.80219024379332
Iteration: 12, Func. Count: 90, Neg. LLF: 157.80218365513267
Iteration: 13, Func. Count: 97, Neg. LLF: 157.80218254643898
Iteration: 14, Func. Count: 103, Neg. LLF: 157.80218254644296
Optimization terminated successfully (Exit mode 0)
Current function value: 157.80218254643898
Iterations: 14
Function evaluations: 103
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 160.16812010473555
Iteration: 2, Func. Count: 18, Neg. LLF: 159.93090325868627
Iteration: 3, Func. Count: 27, Neg. LLF: 158.374737772034
Iteration: 4, Func. Count: 35, Neg. LLF: 160.9334192118597
Iteration: 5, Func. Count: 44, Neg. LLF: 158.75371595682608
Iteration: 6, Func. Count: 53, Neg. LLF: 158.1838707536325
Iteration: 7, Func. Count: 62, Neg. LLF: 158.1389142524938
Iteration: 8, Func. Count: 70, Neg. LLF: 158.03560238918854
Iteration: 9, Func. Count: 78, Neg. LLF: 157.94875369904406
Iteration: 10, Func. Count: 86, Neg. LLF: 157.87421972530893
Iteration: 11, Func. Count: 94, Neg. LLF: 157.8261413585053
Iteration: 12, Func. Count: 102, Neg. LLF: 157.8043673148074
Iteration: 13, Func. Count: 110, Neg. LLF: 157.80229339115678
Iteration: 14, Func. Count: 118, Neg. LLF: 157.80218775344085
Iteration: 15, Func. Count: 126, Neg. LLF: 157.80218256582816
Iteration: 16, Func. Count: 133, Neg. LLF: 157.80218263598144
Optimization terminated successfully (Exit mode 0)
Current function value: 157.80218256582816
Iterations: 16
Function evaluations: 133
Gradient evaluations: 16
Iteration: 1, Func. Count: 6, Neg. LLF: 159.81441209834838
Iteration: 2, Func. Count: 12, Neg. LLF: 158.41248301879622
Iteration: 3, Func. Count: 18, Neg. LLF: 157.78986434420514
Iteration: 4, Func. Count: 24, Neg. LLF: 157.09685837576305
Iteration: 5, Func. Count: 29, Neg. LLF: 157.0642391430091
Iteration: 6, Func. Count: 34, Neg. LLF: 157.04543819598035
Iteration: 7, Func. Count: 39, Neg. LLF: 157.03515772189408
Iteration: 8, Func. Count: 44, Neg. LLF: 157.03069928359284
Iteration: 9, Func. Count: 49, Neg. LLF: 157.02286936701267
Iteration: 10, Func. Count: 54, Neg. LLF: 157.01233271350807
Iteration: 11, Func. Count: 59, Neg. LLF: 157.00305578699027
Iteration: 12, Func. Count: 64, Neg. LLF: 157.00192715683366
Iteration: 13, Func. Count: 69, Neg. LLF: 157.00182557833864
Iteration: 14, Func. Count: 73, Neg. LLF: 157.00182557833105
Optimization terminated successfully (Exit mode 0)
Current function value: 157.00182557833864
Iterations: 14
Function evaluations: 73
Gradient evaluations: 14
Iteration: 1, Func. Count: 7, Neg. LLF: 428.03552821588914
Iteration: 2, Func. Count: 14, Neg. LLF: 158.10146158559328
Iteration: 3, Func. Count: 21, Neg. LLF: 154.57432195608803
Iteration: 4, Func. Count: 27, Neg. LLF: 154.56615391481336
Iteration: 5, Func. Count: 33, Neg. LLF: 154.56560046644674
Iteration: 6, Func. Count: 39, Neg. LLF: 154.5655857772683
Iteration: 7, Func. Count: 45, Neg. LLF: 154.56557402859895
Iteration: 8, Func. Count: 50, Neg. LLF: 154.5655739695147
Optimization terminated successfully (Exit mode 0)
Current function value: 154.56557402859895
Iterations: 8
Function evaluations: 50
Gradient evaluations: 8
Iteration: 1, Func. Count: 8, Neg. LLF: 419.9596639273062
Iteration: 2, Func. Count: 16, Neg. LLF: 156.30784703653435
Iteration: 3, Func. Count: 24, Neg. LLF: 154.64597010127233
Iteration: 4, Func. Count: 31, Neg. LLF: 154.56592715226503
Iteration: 5, Func. Count: 38, Neg. LLF: 154.5655964359791
Iteration: 6, Func. Count: 45, Neg. LLF: 154.56558179136422
Iteration: 7, Func. Count: 52, Neg. LLF: 154.56557512237092
Iteration: 8, Func. Count: 59, Neg. LLF: 154.5655740511323
Iteration: 9, Func. Count: 65, Neg. LLF: 154.56557399736894
Optimization terminated successfully (Exit mode 0)
Current function value: 154.5655740511323
Iterations: 9
Function evaluations: 65
Gradient evaluations: 9
Iteration: 1, Func. Count: 9, Neg. LLF: 214.51947510799448
Iteration: 2, Func. Count: 18, Neg. LLF: 155.5098712154619
Iteration: 3, Func. Count: 26, Neg. LLF: 155.1603316083188
Iteration: 4, Func. Count: 34, Neg. LLF: 158.1603103684845
Iteration: 5, Func. Count: 44, Neg. LLF: 158.90600996767094
Iteration: 6, Func. Count: 53, Neg. LLF: 154.81848066063392
Iteration: 7, Func. Count: 62, Neg. LLF: 156.09858214061552
Iteration: 8, Func. Count: 71, Neg. LLF: 154.5636082202387
Iteration: 9, Func. Count: 79, Neg. LLF: 154.54370460080642
Iteration: 10, Func. Count: 87, Neg. LLF: 154.51790007626164
Iteration: 11, Func. Count: 95, Neg. LLF: 154.48060800353832
Iteration: 12, Func. Count: 103, Neg. LLF: 154.46760093614625
Iteration: 13, Func. Count: 111, Neg. LLF: 154.4671587638345
Iteration: 14, Func. Count: 119, Neg. LLF: 154.46701801601318
Iteration: 15, Func. Count: 127, Neg. LLF: 154.46700687668746
Iteration: 16, Func. Count: 134, Neg. LLF: 154.46700682973201
Optimization terminated successfully (Exit mode 0)
Current function value: 154.46700687668746
Iterations: 16
Function evaluations: 134
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 213.93943788137813
Iteration: 2, Func. Count: 20, Neg. LLF: 154.99238523797763
Iteration: 3, Func. Count: 29, Neg. LLF: 159.5669301654759
Iteration: 4, Func. Count: 39, Neg. LLF: 157.72646340719297
Iteration: 5, Func. Count: 49, Neg. LLF: 156.66185032095868
Iteration: 6, Func. Count: 59, Neg. LLF: 158.93614811615882
Iteration: 7, Func. Count: 69, Neg. LLF: 154.63756584106696
Iteration: 8, Func. Count: 79, Neg. LLF: 154.5704011229036
Iteration: 9, Func. Count: 88, Neg. LLF: 154.52796939598588
Iteration: 10, Func. Count: 97, Neg. LLF: 154.5183418412069
Iteration: 11, Func. Count: 106, Neg. LLF: 154.47365806606473
Iteration: 12, Func. Count: 115, Neg. LLF: 154.4683817305954
Iteration: 13, Func. Count: 124, Neg. LLF: 154.46754836489276
Iteration: 14, Func. Count: 133, Neg. LLF: 154.46703181514746
Iteration: 15, Func. Count: 142, Neg. LLF: 154.46700782254592
Iteration: 16, Func. Count: 151, Neg. LLF: 154.46700681479777
Iteration: 17, Func. Count: 159, Neg. LLF: 154.46700677804074
Optimization terminated successfully (Exit mode 0)
Current function value: 154.46700681479777
Iterations: 17
Function evaluations: 159
Gradient evaluations: 17
Iteration: 1, Func. Count: 7, Neg. LLF: 161.72320440066872
Iteration: 2, Func. Count: 14, Neg. LLF: 157.84667453543886
Iteration: 3, Func. Count: 21, Neg. LLF: 158.0980296922118
Iteration: 4, Func. Count: 28, Neg. LLF: 160.6366592381922
Iteration: 5, Func. Count: 35, Neg. LLF: 156.37732941489176
Iteration: 6, Func. Count: 41, Neg. LLF: 156.2412306362126
Iteration: 7, Func. Count: 47, Neg. LLF: 156.2062289720519
Iteration: 8, Func. Count: 53, Neg. LLF: 156.10035189530575
Iteration: 9, Func. Count: 59, Neg. LLF: 155.95956125491122
Iteration: 10, Func. Count: 65, Neg. LLF: 155.8290768197978
Iteration: 11, Func. Count: 71, Neg. LLF: 155.77174613715187
Iteration: 12, Func. Count: 77, Neg. LLF: 155.7598096006364
Iteration: 13, Func. Count: 83, Neg. LLF: 155.75855987793824
Iteration: 14, Func. Count: 89, Neg. LLF: 155.75851584818824
Iteration: 15, Func. Count: 95, Neg. LLF: 155.7585150252627
Optimization terminated successfully (Exit mode 0)
Current function value: 155.7585150252627
Iterations: 15
Function evaluations: 95
Gradient evaluations: 15
Iteration: 1, Func. Count: 8, Neg. LLF: 433.5148046755751
Iteration: 2, Func. Count: 16, Neg. LLF: 157.75890468309288
Iteration: 3, Func. Count: 24, Neg. LLF: 154.63295586756223
Iteration: 4, Func. Count: 31, Neg. LLF: 154.5319615967898
Iteration: 5, Func. Count: 38, Neg. LLF: 154.50411229960054
Iteration: 6, Func. Count: 45, Neg. LLF: 154.49549535765357
Iteration: 7, Func. Count: 52, Neg. LLF: 154.49450334992093
Iteration: 8, Func. Count: 59, Neg. LLF: 154.49427709833654
Iteration: 9, Func. Count: 66, Neg. LLF: 154.49424911546723
Iteration: 10, Func. Count: 73, Neg. LLF: 154.49423980609038
Iteration: 11, Func. Count: 80, Neg. LLF: 154.49423900173613
Optimization terminated successfully (Exit mode 0)
Current function value: 154.49423900173613
Iterations: 11
Function evaluations: 80
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 241.12301633268683
Iteration: 2, Func. Count: 18, Neg. LLF: 156.4229040563873
Iteration: 3, Func. Count: 27, Neg. LLF: 154.39528677257977
Iteration: 4, Func. Count: 35, Neg. LLF: 154.49522165283523
Iteration: 5, Func. Count: 44, Neg. LLF: 162.51498264381613
Iteration: 6, Func. Count: 53, Neg. LLF: 154.57010841910906
Iteration: 7, Func. Count: 62, Neg. LLF: 154.14452335862467
Iteration: 8, Func. Count: 71, Neg. LLF: 153.81370347785438
Iteration: 9, Func. Count: 79, Neg. LLF: 153.79783314087524
Iteration: 10, Func. Count: 87, Neg. LLF: 153.79484237728252
Iteration: 11, Func. Count: 95, Neg. LLF: 153.79066475590602
Iteration: 12, Func. Count: 103, Neg. LLF: 153.78981854818804
Iteration: 13, Func. Count: 111, Neg. LLF: 153.78965272049945
Iteration: 14, Func. Count: 119, Neg. LLF: 153.7896410536191
Iteration: 15, Func. Count: 126, Neg. LLF: 153.7896410178536
Optimization terminated successfully (Exit mode 0)
Current function value: 153.7896410536191
Iterations: 15
Function evaluations: 126
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 216.68188083560773
Iteration: 2, Func. Count: 20, Neg. LLF: 160.85797279795096
Iteration: 3, Func. Count: 30, Neg. LLF: 155.4436490798699
Iteration: 4, Func. Count: 40, Neg. LLF: 166.4362957464209
Iteration: 5, Func. Count: 50, Neg. LLF: 154.86645861207634
Iteration: 6, Func. Count: 60, Neg. LLF: 154.39173380037275
Iteration: 7, Func. Count: 69, Neg. LLF: 154.71273487951825
Iteration: 8, Func. Count: 79, Neg. LLF: 154.3196160737191
Iteration: 9, Func. Count: 88, Neg. LLF: 154.13007526100412
Iteration: 10, Func. Count: 97, Neg. LLF: 154.14073477662214
Iteration: 11, Func. Count: 107, Neg. LLF: 154.01264858943503
Iteration: 12, Func. Count: 117, Neg. LLF: 153.8167807636419
Iteration: 13, Func. Count: 126, Neg. LLF: 153.82305612210808
Iteration: 14, Func. Count: 136, Neg. LLF: 153.79120761541714
Iteration: 15, Func. Count: 145, Neg. LLF: 153.7903304495115
Iteration: 16, Func. Count: 154, Neg. LLF: 153.78997611832423
Iteration: 17, Func. Count: 163, Neg. LLF: 153.789688283706
Iteration: 18, Func. Count: 172, Neg. LLF: 153.78964426785754
Iteration: 19, Func. Count: 181, Neg. LLF: 153.78964083649387
Iteration: 20, Func. Count: 189, Neg. LLF: 153.78964081787586
Optimization terminated successfully (Exit mode 0)
Current function value: 153.78964083649387
Iterations: 20
Function evaluations: 189
Gradient evaluations: 20
Iteration: 1, Func. Count: 11, Neg. LLF: 170.63233979771942
Iteration: 2, Func. Count: 22, Neg. LLF: 155.14801823829222
Iteration: 3, Func. Count: 33, Neg. LLF: 156.369904430578
Iteration: 4, Func. Count: 44, Neg. LLF: 163.50897929790463
Iteration: 5, Func. Count: 55, Neg. LLF: 154.5064372198318
Iteration: 6, Func. Count: 66, Neg. LLF: 154.36611436733006
Iteration: 7, Func. Count: 76, Neg. LLF: 154.3790123170965
Iteration: 8, Func. Count: 87, Neg. LLF: 154.3372279673114
Iteration: 9, Func. Count: 97, Neg. LLF: 154.32537380902488
Iteration: 10, Func. Count: 107, Neg. LLF: 154.31459464060154
Iteration: 11, Func. Count: 117, Neg. LLF: 154.30123978627375
Iteration: 12, Func. Count: 127, Neg. LLF: 154.29566621897715
Iteration: 13, Func. Count: 137, Neg. LLF: 154.287257370952
Iteration: 14, Func. Count: 147, Neg. LLF: 153.96065051342117
Iteration: 15, Func. Count: 157, Neg. LLF: 154.2668818987501
Iteration: 16, Func. Count: 169, Neg. LLF: 153.87580732573406
Iteration: 17, Func. Count: 179, Neg. LLF: 153.81124611845328
Iteration: 18, Func. Count: 189, Neg. LLF: 153.79715040799843
Iteration: 19, Func. Count: 199, Neg. LLF: 153.7907828326054
Iteration: 20, Func. Count: 209, Neg. LLF: 153.7896554080787
Iteration: 21, Func. Count: 219, Neg. LLF: 153.78964117640953
Iteration: 22, Func. Count: 228, Neg. LLF: 153.78964117603545
Optimization terminated successfully (Exit mode 0)
Current function value: 153.78964117640953
Iterations: 22
Function evaluations: 228
Gradient evaluations: 22
Iteration: 1, Func. Count: 8, Neg. LLF: 161.45520466935346
Iteration: 2, Func. Count: 16, Neg. LLF: 158.0411571158839
Iteration: 3, Func. Count: 25, Neg. LLF: 157.9943241482742
Iteration: 4, Func. Count: 33, Neg. LLF: 162.56519434957056
Iteration: 5, Func. Count: 41, Neg. LLF: 156.81475876440823
Iteration: 6, Func. Count: 49, Neg. LLF: 157.46825239548878
Iteration: 7, Func. Count: 57, Neg. LLF: 156.1936235982565
Iteration: 8, Func. Count: 64, Neg. LLF: 156.09911506307122
Iteration: 9, Func. Count: 71, Neg. LLF: 155.99949422482064
Iteration: 10, Func. Count: 78, Neg. LLF: 155.8062665926847
Iteration: 11, Func. Count: 85, Neg. LLF: 155.60676083599685
Iteration: 12, Func. Count: 92, Neg. LLF: 155.52120091279613
Iteration: 13, Func. Count: 99, Neg. LLF: 155.50346877184526
Iteration: 14, Func. Count: 106, Neg. LLF: 155.50129698057668
Iteration: 15, Func. Count: 113, Neg. LLF: 155.50109700810088
Iteration: 16, Func. Count: 120, Neg. LLF: 155.50108677678034
Iteration: 17, Func. Count: 126, Neg. LLF: 155.50108677369585
Optimization terminated successfully (Exit mode 0)
Current function value: 155.50108677678034
Iterations: 17
Function evaluations: 126
Gradient evaluations: 17
Iteration: 1, Func. Count: 9, Neg. LLF: 405.916442534108
Iteration: 2, Func. Count: 18, Neg. LLF: 157.28475912970433
Iteration: 3, Func. Count: 27, Neg. LLF: 154.63508865361024
Iteration: 4, Func. Count: 35, Neg. LLF: 154.53085789215447
Iteration: 5, Func. Count: 43, Neg. LLF: 154.61386997499406
Iteration: 6, Func. Count: 52, Neg. LLF: 154.49339314511937
Iteration: 7, Func. Count: 60, Neg. LLF: 154.48983879216397
Iteration: 8, Func. Count: 68, Neg. LLF: 154.48931063215642
Iteration: 9, Func. Count: 76, Neg. LLF: 154.48926957772233
Iteration: 10, Func. Count: 84, Neg. LLF: 154.4892670522288
Iteration: 11, Func. Count: 92, Neg. LLF: 154.4892658484634
Iteration: 12, Func. Count: 99, Neg. LLF: 154.48926580002697
Optimization terminated successfully (Exit mode 0)
Current function value: 154.4892658484634
Iterations: 12
Function evaluations: 99
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 175.13700437142631
Iteration: 2, Func. Count: 20, Neg. LLF: 155.33720790141717
Iteration: 3, Func. Count: 30, Neg. LLF: 155.08208938244286
Iteration: 4, Func. Count: 40, Neg. LLF: 154.10725119148307
Iteration: 5, Func. Count: 50, Neg. LLF: 155.52217575632
Iteration: 6, Func. Count: 60, Neg. LLF: 154.03251002346704
Iteration: 7, Func. Count: 70, Neg. LLF: 153.77242776058364
Iteration: 8, Func. Count: 79, Neg. LLF: 153.73388196717167
Iteration: 9, Func. Count: 88, Neg. LLF: 154.11477812963693
Iteration: 10, Func. Count: 99, Neg. LLF: 153.73184625793536
Iteration: 11, Func. Count: 108, Neg. LLF: 153.7314971816428
Iteration: 12, Func. Count: 117, Neg. LLF: 153.73133244404326
Iteration: 13, Func. Count: 126, Neg. LLF: 153.73110072748193
Iteration: 14, Func. Count: 135, Neg. LLF: 153.73089503810874
Iteration: 15, Func. Count: 144, Neg. LLF: 153.7308664440364
Iteration: 16, Func. Count: 153, Neg. LLF: 153.73086413582624
Iteration: 17, Func. Count: 161, Neg. LLF: 153.73086411076855
Optimization terminated successfully (Exit mode 0)
Current function value: 153.73086413582624
Iterations: 17
Function evaluations: 161
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 175.8360865504275
Iteration: 2, Func. Count: 22, Neg. LLF: 160.90733167064533
Iteration: 3, Func. Count: 33, Neg. LLF: 156.1991183429066
Iteration: 4, Func. Count: 44, Neg. LLF: 154.52366999696864
Iteration: 5, Func. Count: 54, Neg. LLF: 154.40997904414047
Iteration: 6, Func. Count: 64, Neg. LLF: 154.10751268970031
Iteration: 7, Func. Count: 74, Neg. LLF: 155.0512830672532
Iteration: 8, Func. Count: 85, Neg. LLF: 155.7298541818028
Iteration: 9, Func. Count: 96, Neg. LLF: 154.29720295997421
Iteration: 10, Func. Count: 107, Neg. LLF: 153.97347811402057
Iteration: 11, Func. Count: 118, Neg. LLF: 153.77393769764097
Iteration: 12, Func. Count: 128, Neg. LLF: 153.73541303776523
Iteration: 13, Func. Count: 138, Neg. LLF: 153.73172193328267
Iteration: 14, Func. Count: 148, Neg. LLF: 153.73148142972568
Iteration: 15, Func. Count: 158, Neg. LLF: 153.73122024293463
Iteration: 16, Func. Count: 168, Neg. LLF: 153.73105806821786
Iteration: 17, Func. Count: 178, Neg. LLF: 153.73090686363187
Iteration: 18, Func. Count: 188, Neg. LLF: 153.730866339825
Iteration: 19, Func. Count: 198, Neg. LLF: 153.73086412445633
Iteration: 20, Func. Count: 207, Neg. LLF: 153.73086410799928
Optimization terminated successfully (Exit mode 0)
Current function value: 153.73086412445633
Iterations: 20
Function evaluations: 207
Gradient evaluations: 20
Iteration: 1, Func. Count: 12, Neg. LLF: 169.58427023928758
Iteration: 2, Func. Count: 24, Neg. LLF: 155.03262367922986
Iteration: 3, Func. Count: 36, Neg. LLF: 156.06452363499153
Iteration: 4, Func. Count: 48, Neg. LLF: 155.08635091204204
Iteration: 5, Func. Count: 60, Neg. LLF: 154.52270364807515
Iteration: 6, Func. Count: 72, Neg. LLF: 154.3865952753769
Iteration: 7, Func. Count: 83, Neg. LLF: 154.5219129103389
Iteration: 8, Func. Count: 95, Neg. LLF: 154.34148863068762
Iteration: 9, Func. Count: 106, Neg. LLF: 154.32727029956342
Iteration: 10, Func. Count: 117, Neg. LLF: 154.31639369905483
Iteration: 11, Func. Count: 128, Neg. LLF: 154.3051056246356
Iteration: 12, Func. Count: 139, Neg. LLF: 154.29815548139993
Iteration: 13, Func. Count: 150, Neg. LLF: 154.29272455202073
Iteration: 14, Func. Count: 161, Neg. LLF: 154.0231982276244
Iteration: 15, Func. Count: 172, Neg. LLF: 156.37510176614126
Iteration: 16, Func. Count: 184, Neg. LLF: 154.2512250164446
Iteration: 17, Func. Count: 196, Neg. LLF: 153.91254968470818
Iteration: 18, Func. Count: 208, Neg. LLF: 154.25160467452596
Iteration: 19, Func. Count: 220, Neg. LLF: 154.22052243754064
Iteration: 20, Func. Count: 232, Neg. LLF: 153.7624768552262
Iteration: 21, Func. Count: 243, Neg. LLF: 153.75545502562707
Iteration: 22, Func. Count: 254, Neg. LLF: 153.73947088751459
Iteration: 23, Func. Count: 265, Neg. LLF: 153.7356102251853
Iteration: 24, Func. Count: 276, Neg. LLF: 153.7315315110862
Iteration: 25, Func. Count: 287, Neg. LLF: 153.73128505553802
Iteration: 26, Func. Count: 298, Neg. LLF: 153.7308878555003
Iteration: 27, Func. Count: 309, Neg. LLF: 153.73086576853177
Iteration: 28, Func. Count: 320, Neg. LLF: 153.73086412062128
Iteration: 29, Func. Count: 330, Neg. LLF: 153.73086413372639
Optimization terminated successfully (Exit mode 0)
Current function value: 153.73086412062128
Iterations: 29
Function evaluations: 330
Gradient evaluations: 29
Iteration: 1, Func. Count: 9, Neg. LLF: 158.5025426707146
Iteration: 2, Func. Count: 18, Neg. LLF: 157.26481006958417
Iteration: 3, Func. Count: 27, Neg. LLF: 155.3649751728926
Iteration: 4, Func. Count: 37, Neg. LLF: 154.8916460221672
Iteration: 5, Func. Count: 46, Neg. LLF: 156.47384729676713
Iteration: 6, Func. Count: 55, Neg. LLF: 154.63316903251047
Iteration: 7, Func. Count: 64, Neg. LLF: 153.9397343607289
Iteration: 8, Func. Count: 72, Neg. LLF: 153.83964928577416
Iteration: 9, Func. Count: 80, Neg. LLF: 153.52926865399456
Iteration: 10, Func. Count: 88, Neg. LLF: 153.36941367042516
Iteration: 11, Func. Count: 96, Neg. LLF: 153.49456693379133
Iteration: 12, Func. Count: 105, Neg. LLF: 153.7565913188547
Iteration: 13, Func. Count: 114, Neg. LLF: 153.1945664905582
Iteration: 14, Func. Count: 122, Neg. LLF: 153.17303401742348
Iteration: 15, Func. Count: 130, Neg. LLF: 153.1483007260293
Iteration: 16, Func. Count: 138, Neg. LLF: 153.14360622465315
Iteration: 17, Func. Count: 146, Neg. LLF: 153.14290371189136
Iteration: 18, Func. Count: 154, Neg. LLF: 153.14286409003503
Iteration: 19, Func. Count: 162, Neg. LLF: 153.14286082808874
Iteration: 20, Func. Count: 169, Neg. LLF: 153.14286082764474
Optimization terminated successfully (Exit mode 0)
Current function value: 153.14286082808874
Iterations: 20
Function evaluations: 169
Gradient evaluations: 20
Iteration: 1, Func. Count: 10, Neg. LLF: 400.8761820945852
Iteration: 2, Func. Count: 20, Neg. LLF: 157.54432107373458
Iteration: 3, Func. Count: 30, Neg. LLF: 158.8088086006796
Iteration: 4, Func. Count: 40, Neg. LLF: 153.45574685020645
Iteration: 5, Func. Count: 49, Neg. LLF: 154.4762782583608
Iteration: 6, Func. Count: 59, Neg. LLF: 172.8539045797647
Iteration: 7, Func. Count: 69, Neg. LLF: 162.6687482030883
Iteration: 8, Func. Count: 79, Neg. LLF: 153.1420067428295
Iteration: 9, Func. Count: 88, Neg. LLF: 153.04614134113316
Iteration: 10, Func. Count: 97, Neg. LLF: 153.01941881546833
Iteration: 11, Func. Count: 106, Neg. LLF: 152.99507827912785
Iteration: 12, Func. Count: 115, Neg. LLF: 152.97852603354784
Iteration: 13, Func. Count: 124, Neg. LLF: 152.967726917714
Iteration: 14, Func. Count: 133, Neg. LLF: 152.94555873498356
Iteration: 15, Func. Count: 142, Neg. LLF: 154.56516721352767
Iteration: 16, Func. Count: 152, Neg. LLF: 154.37710039158543
Iteration: 17, Func. Count: 162, Neg. LLF: 153.15679513944653
Iteration: 18, Func. Count: 172, Neg. LLF: 152.90839925774776
Iteration: 19, Func. Count: 181, Neg. LLF: 152.91578600815947
Iteration: 20, Func. Count: 191, Neg. LLF: 152.9067497715288
Iteration: 21, Func. Count: 201, Neg. LLF: 152.95886458670714
Iteration: 22, Func. Count: 211, Neg. LLF: 152.89003636907447
Iteration: 23, Func. Count: 220, Neg. LLF: 152.8840337862157
Iteration: 24, Func. Count: 229, Neg. LLF: 152.88282870432013
Iteration: 25, Func. Count: 238, Neg. LLF: 152.88109285634894
Iteration: 26, Func. Count: 247, Neg. LLF: 152.88068303295577
Iteration: 27, Func. Count: 256, Neg. LLF: 152.8804254699703
Iteration: 28, Func. Count: 265, Neg. LLF: 152.88036685715562
Iteration: 29, Func. Count: 274, Neg. LLF: 152.88035407692868
Iteration: 30, Func. Count: 283, Neg. LLF: 152.88035332995514
Optimization terminated successfully (Exit mode 0)
Current function value: 152.88035332995514
Iterations: 30
Function evaluations: 283
Gradient evaluations: 30
Iteration: 1, Func. Count: 11, Neg. LLF: 202.18176602099942
Iteration: 2, Func. Count: 22, Neg. LLF: 235.34506395518815
Iteration: 3, Func. Count: 33, Neg. LLF: 153.56874754330238
Iteration: 4, Func. Count: 43, Neg. LLF: 173.30843050233128
Iteration: 5, Func. Count: 54, Neg. LLF: 157.23472299018417
Iteration: 6, Func. Count: 65, Neg. LLF: 162.60202945963223
Iteration: 7, Func. Count: 76, Neg. LLF: 155.0276372646264
Iteration: 8, Func. Count: 87, Neg. LLF: 153.65682304258905
Iteration: 9, Func. Count: 98, Neg. LLF: 152.89242058283793
Iteration: 10, Func. Count: 108, Neg. LLF: 152.87490756879143
Iteration: 11, Func. Count: 118, Neg. LLF: 152.87054551748463
Iteration: 12, Func. Count: 128, Neg. LLF: 152.86642008680093
Iteration: 13, Func. Count: 138, Neg. LLF: 152.85686265069157
Iteration: 14, Func. Count: 148, Neg. LLF: 152.84549806880977
Iteration: 15, Func. Count: 158, Neg. LLF: 153.1717656849026
Iteration: 16, Func. Count: 169, Neg. LLF: 152.83665690987618
Iteration: 17, Func. Count: 179, Neg. LLF: 152.8357362180663
Iteration: 18, Func. Count: 189, Neg. LLF: 152.83566010291963
Iteration: 19, Func. Count: 199, Neg. LLF: 152.8356534219809
Iteration: 20, Func. Count: 209, Neg. LLF: 152.8356526691662
Optimization terminated successfully (Exit mode 0)
Current function value: 152.8356526691662
Iterations: 20
Function evaluations: 209
Gradient evaluations: 20
Iteration: 1, Func. Count: 12, Neg. LLF: 198.66432471898895
Iteration: 2, Func. Count: 24, Neg. LLF: 219.82973935573855
Iteration: 3, Func. Count: 36, Neg. LLF: 207.11548783554596
Iteration: 4, Func. Count: 48, Neg. LLF: 168.75651986023334
Iteration: 5, Func. Count: 60, Neg. LLF: 159.58888319134886
Iteration: 6, Func. Count: 72, Neg. LLF: 153.61414926965298
Iteration: 7, Func. Count: 84, Neg. LLF: 153.45163868848442
Iteration: 8, Func. Count: 96, Neg. LLF: 155.05627053978125
Iteration: 9, Func. Count: 108, Neg. LLF: 152.99201754174572
Iteration: 10, Func. Count: 120, Neg. LLF: 152.9290435810331
Iteration: 11, Func. Count: 132, Neg. LLF: 152.92219392311296
Iteration: 12, Func. Count: 144, Neg. LLF: 152.85341433388712
Iteration: 13, Func. Count: 156, Neg. LLF: 152.80759260441573
Iteration: 14, Func. Count: 167, Neg. LLF: 152.80056777726477
Iteration: 15, Func. Count: 178, Neg. LLF: 152.78730127695144
Iteration: 16, Func. Count: 189, Neg. LLF: 152.778228291271
Iteration: 17, Func. Count: 200, Neg. LLF: 152.77631045733023
Iteration: 18, Func. Count: 211, Neg. LLF: 152.7761366531463
Iteration: 19, Func. Count: 222, Neg. LLF: 152.7760897386391
Iteration: 20, Func. Count: 233, Neg. LLF: 152.77608855672875
Iteration: 21, Func. Count: 243, Neg. LLF: 152.7760885429979
Optimization terminated successfully (Exit mode 0)
Current function value: 152.77608855672875
Iterations: 21
Function evaluations: 243
Gradient evaluations: 21
Iteration: 1, Func. Count: 13, Neg. LLF: 198.37567500933656
Iteration: 2, Func. Count: 26, Neg. LLF: 227.623366541441
Iteration: 3, Func. Count: 39, Neg. LLF: 178.8897396589505
Iteration: 4, Func. Count: 52, Neg. LLF: 154.67537543344784
Iteration: 5, Func. Count: 65, Neg. LLF: 155.4282849791228
Iteration: 6, Func. Count: 78, Neg. LLF: 154.4908027663012
Iteration: 7, Func. Count: 91, Neg. LLF: 154.30593036609244
Iteration: 8, Func. Count: 104, Neg. LLF: 153.44787185504194
Iteration: 9, Func. Count: 117, Neg. LLF: 152.9334244743261
Iteration: 10, Func. Count: 129, Neg. LLF: 152.98309185750747
Iteration: 11, Func. Count: 142, Neg. LLF: 154.25604569714105
Iteration: 12, Func. Count: 155, Neg. LLF: 152.8118743265115
Iteration: 13, Func. Count: 167, Neg. LLF: 152.80459975740655
Iteration: 14, Func. Count: 179, Neg. LLF: 152.80167402722546
Iteration: 15, Func. Count: 191, Neg. LLF: 152.79383092930408
Iteration: 16, Func. Count: 203, Neg. LLF: 152.7867107231074
Iteration: 17, Func. Count: 215, Neg. LLF: 152.78061886529875
Iteration: 18, Func. Count: 227, Neg. LLF: 152.77672532466067
Iteration: 19, Func. Count: 239, Neg. LLF: 152.77633501257836
Iteration: 20, Func. Count: 251, Neg. LLF: 152.77609502822688
Iteration: 21, Func. Count: 263, Neg. LLF: 152.77608865839838
Iteration: 22, Func. Count: 274, Neg. LLF: 152.7760886905912
Optimization terminated successfully (Exit mode 0)
Current function value: 152.77608865839838
Iterations: 22
Function evaluations: 274
Gradient evaluations: 22
Iteration: 1, Func. Count: 6, Neg. LLF: 160.39488659502757
Iteration: 2, Func. Count: 11, Neg. LLF: 161.17981786700716
Iteration: 3, Func. Count: 17, Neg. LLF: 158.96563286860314
Iteration: 4, Func. Count: 23, Neg. LLF: 166.61537803879057
Iteration: 5, Func. Count: 29, Neg. LLF: 158.73869126811906
Iteration: 6, Func. Count: 34, Neg. LLF: 158.7238292779855
Iteration: 7, Func. Count: 39, Neg. LLF: 158.68105211879816
Iteration: 8, Func. Count: 44, Neg. LLF: 158.60033844956277
Iteration: 9, Func. Count: 49, Neg. LLF: 158.49628116457762
Iteration: 10, Func. Count: 54, Neg. LLF: 158.44237330382248
Iteration: 11, Func. Count: 59, Neg. LLF: 158.41762744699327
Iteration: 12, Func. Count: 64, Neg. LLF: 158.41723169925038
Iteration: 13, Func. Count: 69, Neg. LLF: 158.41718011769723
Iteration: 14, Func. Count: 73, Neg. LLF: 158.41718011509596
Optimization terminated successfully (Exit mode 0)
Current function value: 158.41718011769723
Iterations: 14
Function evaluations: 73
Gradient evaluations: 14
Iteration: 1, Func. Count: 7, Neg. LLF: 176.2510049017229
Iteration: 2, Func. Count: 14, Neg. LLF: 166.63983038720022
Iteration: 3, Func. Count: 21, Neg. LLF: 159.21768978761352
Iteration: 4, Func. Count: 28, Neg. LLF: 158.99504166523468
Iteration: 5, Func. Count: 35, Neg. LLF: 158.7045139391806
Iteration: 6, Func. Count: 41, Neg. LLF: 158.67381256071002
Iteration: 7, Func. Count: 47, Neg. LLF: 158.66969796878624
Iteration: 8, Func. Count: 53, Neg. LLF: 158.65219999582644
Iteration: 9, Func. Count: 59, Neg. LLF: 158.64967038849386
Iteration: 10, Func. Count: 65, Neg. LLF: 158.64774289863874
Iteration: 11, Func. Count: 71, Neg. LLF: 158.6476776082761
Iteration: 12, Func. Count: 77, Neg. LLF: 158.64767619629455
Iteration: 13, Func. Count: 82, Neg. LLF: 158.64767617139086
Optimization terminated successfully (Exit mode 0)
Current function value: 158.64767619629455
Iterations: 13
Function evaluations: 82
Gradient evaluations: 13
Iteration: 1, Func. Count: 8, Neg. LLF: 175.64809698740905
Iteration: 2, Func. Count: 16, Neg. LLF: 160.82252550621916
Iteration: 3, Func. Count: 24, Neg. LLF: 158.7806151887948
Iteration: 4, Func. Count: 31, Neg. LLF: 158.64949672343923
Iteration: 5, Func. Count: 38, Neg. LLF: 217.68400064563227
Iteration: 6, Func. Count: 47, Neg. LLF: 158.60871654259435
Iteration: 7, Func. Count: 55, Neg. LLF: 158.52902210572483
Iteration: 8, Func. Count: 62, Neg. LLF: 158.52635006208536
Iteration: 9, Func. Count: 69, Neg. LLF: 158.52631742603393
Iteration: 10, Func. Count: 76, Neg. LLF: 158.52631618269822
Iteration: 11, Func. Count: 83, Neg. LLF: 158.52631082128556
Iteration: 12, Func. Count: 90, Neg. LLF: 158.5263084120639
Iteration: 13, Func. Count: 97, Neg. LLF: 158.52630760219364
Optimization terminated successfully (Exit mode 0)
Current function value: 158.52630760219364
Iterations: 13
Function evaluations: 97
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 174.9627251345491
Iteration: 2, Func. Count: 18, Neg. LLF: 159.32893225430766
Iteration: 3, Func. Count: 27, Neg. LLF: 158.97998344404596
Iteration: 4, Func. Count: 36, Neg. LLF: 159.46742563907335
Iteration: 5, Func. Count: 45, Neg. LLF: 158.036279130644
Iteration: 6, Func. Count: 53, Neg. LLF: 157.88629582802582
Iteration: 7, Func. Count: 61, Neg. LLF: 157.86703955365005
Iteration: 8, Func. Count: 69, Neg. LLF: 157.82753779925494
Iteration: 9, Func. Count: 77, Neg. LLF: 157.81581206279787
Iteration: 10, Func. Count: 85, Neg. LLF: 157.8050439154781
Iteration: 11, Func. Count: 93, Neg. LLF: 157.8023483085061
Iteration: 12, Func. Count: 101, Neg. LLF: 157.80221042163106
Iteration: 13, Func. Count: 109, Neg. LLF: 157.80219407054113
Iteration: 14, Func. Count: 117, Neg. LLF: 157.80218331519993
Iteration: 15, Func. Count: 125, Neg. LLF: 157.80218258101402
Optimization terminated successfully (Exit mode 0)
Current function value: 157.80218258101402
Iterations: 15
Function evaluations: 125
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 160.95600683315055
Iteration: 2, Func. Count: 20, Neg. LLF: 160.74930757845848
Iteration: 3, Func. Count: 30, Neg. LLF: 160.3720935101136
Iteration: 4, Func. Count: 40, Neg. LLF: 158.32841247139885
Iteration: 5, Func. Count: 49, Neg. LLF: 158.33527977250932
Iteration: 6, Func. Count: 59, Neg. LLF: 158.15756912261338
Iteration: 7, Func. Count: 68, Neg. LLF: 158.1129300204098
Iteration: 8, Func. Count: 77, Neg. LLF: 158.05434098285053
Iteration: 9, Func. Count: 86, Neg. LLF: 157.94066846189867
Iteration: 10, Func. Count: 95, Neg. LLF: 157.87251246099228
Iteration: 11, Func. Count: 104, Neg. LLF: 157.81870095463373
Iteration: 12, Func. Count: 113, Neg. LLF: 157.80555156988885
Iteration: 13, Func. Count: 122, Neg. LLF: 157.80273502633565
Iteration: 14, Func. Count: 131, Neg. LLF: 157.80219208727016
Iteration: 15, Func. Count: 140, Neg. LLF: 157.80218394082488
Iteration: 16, Func. Count: 149, Neg. LLF: 157.80218257228955
Iteration: 17, Func. Count: 157, Neg. LLF: 157.80218264242768
Optimization terminated successfully (Exit mode 0)
Current function value: 157.80218257228955
Iterations: 17
Function evaluations: 157
Gradient evaluations: 17
Iteration: 1, Func. Count: 7, Neg. LLF: 161.88900364046634
Iteration: 2, Func. Count: 14, Neg. LLF: 158.4383906281658
Iteration: 3, Func. Count: 21, Neg. LLF: 160.33808094702218
Iteration: 4, Func. Count: 28, Neg. LLF: 157.55055330130233
Iteration: 5, Func. Count: 35, Neg. LLF: 159.47178228105332
Iteration: 6, Func. Count: 42, Neg. LLF: 157.05897730144702
Iteration: 7, Func. Count: 48, Neg. LLF: 157.01653360516414
Iteration: 8, Func. Count: 54, Neg. LLF: 156.99132945856772
Iteration: 9, Func. Count: 60, Neg. LLF: 156.9504596442912
Iteration: 10, Func. Count: 66, Neg. LLF: 156.92110488952338
Iteration: 11, Func. Count: 72, Neg. LLF: 156.83755761963837
Iteration: 12, Func. Count: 78, Neg. LLF: 156.58951152423856
Iteration: 13, Func. Count: 84, Neg. LLF: 156.58101239162892
Iteration: 14, Func. Count: 90, Neg. LLF: 156.5778947132732
Iteration: 15, Func. Count: 96, Neg. LLF: 156.57781167237113
Iteration: 16, Func. Count: 102, Neg. LLF: 156.57780357884758
Iteration: 17, Func. Count: 107, Neg. LLF: 156.5778035734165
Optimization terminated successfully (Exit mode 0)
Current function value: 156.57780357884758
Iterations: 17
Function evaluations: 107
Gradient evaluations: 17
Iteration: 1, Func. Count: 8, Neg. LLF: 425.1721573275961
Iteration: 2, Func. Count: 16, Neg. LLF: 158.29908609250637
Iteration: 3, Func. Count: 24, Neg. LLF: 154.5743634782405
Iteration: 4, Func. Count: 31, Neg. LLF: 154.56625959955818
Iteration: 5, Func. Count: 38, Neg. LLF: 154.5656214972022
Iteration: 6, Func. Count: 45, Neg. LLF: 154.56559500062525
Iteration: 7, Func. Count: 52, Neg. LLF: 154.5655740286675
Iteration: 8, Func. Count: 58, Neg. LLF: 154.56557396962378
Optimization terminated successfully (Exit mode 0)
Current function value: 154.5655740286675
Iterations: 8
Function evaluations: 58
Gradient evaluations: 8
Iteration: 1, Func. Count: 9, Neg. LLF: 417.1922775935134
Iteration: 2, Func. Count: 18, Neg. LLF: 156.41086755365637
Iteration: 3, Func. Count: 27, Neg. LLF: 154.63443388294604
Iteration: 4, Func. Count: 35, Neg. LLF: 154.5659739135962
Iteration: 5, Func. Count: 43, Neg. LLF: 154.56558631009966
Iteration: 6, Func. Count: 51, Neg. LLF: 154.5655779564816
Iteration: 7, Func. Count: 59, Neg. LLF: 154.56557489404756
Iteration: 8, Func. Count: 67, Neg. LLF: 154.56557404012835
Optimization terminated successfully (Exit mode 0)
Current function value: 154.56557404012835
Iterations: 8
Function evaluations: 67
Gradient evaluations: 8
Iteration: 1, Func. Count: 10, Neg. LLF: 216.80080416917872
Iteration: 2, Func. Count: 20, Neg. LLF: 157.1301530561852
Iteration: 3, Func. Count: 30, Neg. LLF: 154.68373463807512
Iteration: 4, Func. Count: 39, Neg. LLF: 154.91488653647778
Iteration: 5, Func. Count: 49, Neg. LLF: 168.13035806439862
Iteration: 6, Func. Count: 59, Neg. LLF: 154.97316074524636
Iteration: 7, Func. Count: 69, Neg. LLF: 154.56053077146703
Iteration: 8, Func. Count: 78, Neg. LLF: 154.54460731300773
Iteration: 9, Func. Count: 87, Neg. LLF: 154.52221906163427
Iteration: 10, Func. Count: 96, Neg. LLF: 154.50531564268812
Iteration: 11, Func. Count: 105, Neg. LLF: 154.47381823074127
Iteration: 12, Func. Count: 114, Neg. LLF: 154.46826682789435
Iteration: 13, Func. Count: 123, Neg. LLF: 154.46703867689305
Iteration: 14, Func. Count: 132, Neg. LLF: 154.46700741616093
Iteration: 15, Func. Count: 141, Neg. LLF: 154.4670068163155
Optimization terminated successfully (Exit mode 0)
Current function value: 154.4670068163155
Iterations: 15
Function evaluations: 141
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 216.5151860400897
Iteration: 2, Func. Count: 22, Neg. LLF: 157.02686432042282
Iteration: 3, Func. Count: 33, Neg. LLF: 155.22219714355452
Iteration: 4, Func. Count: 43, Neg. LLF: 155.96632833450712
Iteration: 5, Func. Count: 54, Neg. LLF: 161.1290464275287
Iteration: 6, Func. Count: 65, Neg. LLF: 154.6424835015773
Iteration: 7, Func. Count: 75, Neg. LLF: 158.5267390710729
Iteration: 8, Func. Count: 86, Neg. LLF: 154.59254259039193
Iteration: 9, Func. Count: 96, Neg. LLF: 154.54521867932652
Iteration: 10, Func. Count: 106, Neg. LLF: 154.5344422324887
Iteration: 11, Func. Count: 116, Neg. LLF: 154.50820031763445
Iteration: 12, Func. Count: 126, Neg. LLF: 154.48688299525872
Iteration: 13, Func. Count: 136, Neg. LLF: 154.47081137369537
Iteration: 14, Func. Count: 146, Neg. LLF: 154.46756263293304
Iteration: 15, Func. Count: 156, Neg. LLF: 154.46700868647525
Iteration: 16, Func. Count: 166, Neg. LLF: 154.4670068972123
Iteration: 17, Func. Count: 175, Neg. LLF: 154.4670068605779
Optimization terminated successfully (Exit mode 0)
Current function value: 154.4670068972123
Iterations: 17
Function evaluations: 175
Gradient evaluations: 17
Iteration: 1, Func. Count: 8, Neg. LLF: 163.73253659447406
Iteration: 2, Func. Count: 16, Neg. LLF: 157.7225860728712
Iteration: 3, Func. Count: 24, Neg. LLF: 161.35272618045389
Iteration: 4, Func. Count: 33, Neg. LLF: 161.16335669078666
Iteration: 5, Func. Count: 41, Neg. LLF: 156.41035848526266
Iteration: 6, Func. Count: 48, Neg. LLF: 156.26265273606438
Iteration: 7, Func. Count: 55, Neg. LLF: 156.20958837862503
Iteration: 8, Func. Count: 62, Neg. LLF: 156.08303759157695
Iteration: 9, Func. Count: 69, Neg. LLF: 156.02840575004387
Iteration: 10, Func. Count: 76, Neg. LLF: 155.84440934652145
Iteration: 11, Func. Count: 83, Neg. LLF: 155.77534319683792
Iteration: 12, Func. Count: 90, Neg. LLF: 155.75961236192967
Iteration: 13, Func. Count: 97, Neg. LLF: 155.75857075722246
Iteration: 14, Func. Count: 104, Neg. LLF: 155.75851941963813
Iteration: 15, Func. Count: 111, Neg. LLF: 155.75851513612207
Iteration: 16, Func. Count: 117, Neg. LLF: 155.75851513535488
Optimization terminated successfully (Exit mode 0)
Current function value: 155.75851513612207
Iterations: 16
Function evaluations: 117
Gradient evaluations: 16
Iteration: 1, Func. Count: 9, Neg. LLF: 429.4556958019063
Iteration: 2, Func. Count: 18, Neg. LLF: 157.94176037343874
Iteration: 3, Func. Count: 27, Neg. LLF: 154.63015105778402
Iteration: 4, Func. Count: 35, Neg. LLF: 154.53154067661427
Iteration: 5, Func. Count: 43, Neg. LLF: 154.5037936237348
Iteration: 6, Func. Count: 51, Neg. LLF: 154.49538547796834
Iteration: 7, Func. Count: 59, Neg. LLF: 154.4944843056311
Iteration: 8, Func. Count: 67, Neg. LLF: 154.49427270220812
Iteration: 9, Func. Count: 75, Neg. LLF: 154.49424868693296
Iteration: 10, Func. Count: 83, Neg. LLF: 154.49423959339757
Iteration: 11, Func. Count: 91, Neg. LLF: 154.49423899401214
Optimization terminated successfully (Exit mode 0)
Current function value: 154.49423899401214
Iterations: 11
Function evaluations: 91
Gradient evaluations: 11
Iteration: 1, Func. Count: 10, Neg. LLF: 238.46365731057105
Iteration: 2, Func. Count: 20, Neg. LLF: 156.55951641131935
Iteration: 3, Func. Count: 30, Neg. LLF: 154.32272979504242
Iteration: 4, Func. Count: 39, Neg. LLF: 154.56312972088287
Iteration: 5, Func. Count: 49, Neg. LLF: 156.18056663029398
Iteration: 6, Func. Count: 59, Neg. LLF: 155.55372796249802
Iteration: 7, Func. Count: 70, Neg. LLF: 154.06379885012046
Iteration: 8, Func. Count: 80, Neg. LLF: 153.81210953793627
Iteration: 9, Func. Count: 89, Neg. LLF: 153.79617161600615
Iteration: 10, Func. Count: 98, Neg. LLF: 153.79246286534223
Iteration: 11, Func. Count: 107, Neg. LLF: 153.78988337102274
Iteration: 12, Func. Count: 116, Neg. LLF: 153.78965889457623
Iteration: 13, Func. Count: 125, Neg. LLF: 153.78964120030724
Iteration: 14, Func. Count: 133, Neg. LLF: 153.78964116450882
Optimization terminated successfully (Exit mode 0)
Current function value: 153.78964120030724
Iterations: 14
Function evaluations: 133
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 220.19848189475783
Iteration: 2, Func. Count: 22, Neg. LLF: 202.73712844648378
Iteration: 3, Func. Count: 33, Neg. LLF: 154.71768797210012
Iteration: 4, Func. Count: 43, Neg. LLF: 157.79852391247644
Iteration: 5, Func. Count: 54, Neg. LLF: 154.01307825281418
Iteration: 6, Func. Count: 64, Neg. LLF: 153.94483362950308
Iteration: 7, Func. Count: 74, Neg. LLF: 160.05521924600316
Iteration: 8, Func. Count: 86, Neg. LLF: 153.85533309256297
Iteration: 9, Func. Count: 96, Neg. LLF: 153.82445772006824
Iteration: 10, Func. Count: 106, Neg. LLF: 153.8127198751227
Iteration: 11, Func. Count: 116, Neg. LLF: 153.8000516322985
Iteration: 12, Func. Count: 126, Neg. LLF: 153.79223368675383
Iteration: 13, Func. Count: 136, Neg. LLF: 153.78970382436162
Iteration: 14, Func. Count: 146, Neg. LLF: 153.78964197926268
Iteration: 15, Func. Count: 156, Neg. LLF: 153.78964091257603
Iteration: 16, Func. Count: 165, Neg. LLF: 153.78964089398391
Optimization terminated successfully (Exit mode 0)
Current function value: 153.78964091257603
Iterations: 16
Function evaluations: 165
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 217.3249586615288
Iteration: 2, Func. Count: 24, Neg. LLF: 162.23776872816381
Iteration: 3, Func. Count: 36, Neg. LLF: 155.76694264055826
Iteration: 4, Func. Count: 48, Neg. LLF: 170.6254432780437
Iteration: 5, Func. Count: 60, Neg. LLF: 155.18341069279955
Iteration: 6, Func. Count: 72, Neg. LLF: 154.5187657036174
Iteration: 7, Func. Count: 83, Neg. LLF: 154.58095309089168
Iteration: 8, Func. Count: 95, Neg. LLF: 154.3932603788729
Iteration: 9, Func. Count: 106, Neg. LLF: 154.3901777413324
Iteration: 10, Func. Count: 118, Neg. LLF: 154.40868313239156
Iteration: 11, Func. Count: 130, Neg. LLF: 154.3303157104338
Iteration: 12, Func. Count: 141, Neg. LLF: 154.3209318500227
Iteration: 13, Func. Count: 152, Neg. LLF: 154.3103997716925
Iteration: 14, Func. Count: 163, Neg. LLF: 154.2973952254539
Iteration: 15, Func. Count: 174, Neg. LLF: 154.08634525059398
Iteration: 16, Func. Count: 185, Neg. LLF: 154.2628088292668
Iteration: 17, Func. Count: 198, Neg. LLF: 153.9320949206811
Iteration: 18, Func. Count: 209, Neg. LLF: 153.881809756469
Iteration: 19, Func. Count: 220, Neg. LLF: 153.83488753902301
Iteration: 20, Func. Count: 231, Neg. LLF: 153.81075667237013
Iteration: 21, Func. Count: 242, Neg. LLF: 153.7922359760201
Iteration: 22, Func. Count: 253, Neg. LLF: 153.7897730094531
Iteration: 23, Func. Count: 264, Neg. LLF: 153.78964152692944
Iteration: 24, Func. Count: 275, Neg. LLF: 153.78964082854162
Optimization terminated successfully (Exit mode 0)
Current function value: 153.78964082854162
Iterations: 24
Function evaluations: 275
Gradient evaluations: 24
Iteration: 1, Func. Count: 9, Neg. LLF: 163.7734242111561
Iteration: 2, Func. Count: 18, Neg. LLF: 157.80482446013264
Iteration: 3, Func. Count: 27, Neg. LLF: 162.1101398924278
Iteration: 4, Func. Count: 37, Neg. LLF: 162.18859686963043
Iteration: 5, Func. Count: 47, Neg. LLF: 158.07321046889578
Iteration: 6, Func. Count: 56, Neg. LLF: 156.25532226312097
Iteration: 7, Func. Count: 64, Neg. LLF: 156.1590044001781
Iteration: 8, Func. Count: 72, Neg. LLF: 156.08501264880695
Iteration: 9, Func. Count: 80, Neg. LLF: 155.94334482955747
Iteration: 10, Func. Count: 88, Neg. LLF: 155.8562151854907
Iteration: 11, Func. Count: 96, Neg. LLF: 155.56593889228523
Iteration: 12, Func. Count: 104, Neg. LLF: 155.5153249771315
Iteration: 13, Func. Count: 112, Neg. LLF: 155.50220906536737
Iteration: 14, Func. Count: 120, Neg. LLF: 155.50109989609496
Iteration: 15, Func. Count: 128, Neg. LLF: 155.50108741231062
Iteration: 16, Func. Count: 136, Neg. LLF: 155.50108644488637
Optimization terminated successfully (Exit mode 0)
Current function value: 155.50108644488637
Iterations: 16
Function evaluations: 136
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 401.559302701176
Iteration: 2, Func. Count: 20, Neg. LLF: 157.4368339637114
Iteration: 3, Func. Count: 30, Neg. LLF: 154.63231159903373
Iteration: 4, Func. Count: 39, Neg. LLF: 154.53035889645537
Iteration: 5, Func. Count: 48, Neg. LLF: 154.61029300158043
Iteration: 6, Func. Count: 58, Neg. LLF: 154.49330865475923
Iteration: 7, Func. Count: 67, Neg. LLF: 154.48982956723617
Iteration: 8, Func. Count: 76, Neg. LLF: 154.48931593889304
Iteration: 9, Func. Count: 85, Neg. LLF: 154.48927149319343
Iteration: 10, Func. Count: 94, Neg. LLF: 154.48926789078973
Iteration: 11, Func. Count: 103, Neg. LLF: 154.4892658764872
Iteration: 12, Func. Count: 111, Neg. LLF: 154.48926582807997
Optimization terminated successfully (Exit mode 0)
Current function value: 154.4892658764872
Iterations: 12
Function evaluations: 111
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 176.42689103120227
Iteration: 2, Func. Count: 22, Neg. LLF: 155.42946457441911
Iteration: 3, Func. Count: 33, Neg. LLF: 155.0957581314878
Iteration: 4, Func. Count: 44, Neg. LLF: 154.176393361304
Iteration: 5, Func. Count: 55, Neg. LLF: 154.0225545224842
Iteration: 6, Func. Count: 66, Neg. LLF: 153.8304605153304
Iteration: 7, Func. Count: 76, Neg. LLF: 153.9620331345024
Iteration: 8, Func. Count: 87, Neg. LLF: 155.28565600200125
Iteration: 9, Func. Count: 98, Neg. LLF: 153.77821744379992
Iteration: 10, Func. Count: 109, Neg. LLF: 153.7315342684755
Iteration: 11, Func. Count: 119, Neg. LLF: 153.7312113577626
Iteration: 12, Func. Count: 129, Neg. LLF: 153.73105659866326
Iteration: 13, Func. Count: 139, Neg. LLF: 153.73100946995018
Iteration: 14, Func. Count: 149, Neg. LLF: 153.73088927572238
Iteration: 15, Func. Count: 159, Neg. LLF: 153.73086713704845
Iteration: 16, Func. Count: 169, Neg. LLF: 153.7308641833571
Iteration: 17, Func. Count: 178, Neg. LLF: 153.73086415833149
Optimization terminated successfully (Exit mode 0)
Current function value: 153.7308641833571
Iterations: 17
Function evaluations: 178
Gradient evaluations: 17
Iteration: 1, Func. Count: 12, Neg. LLF: 216.3819188367759
Iteration: 2, Func. Count: 24, Neg. LLF: 161.77536932214284
Iteration: 3, Func. Count: 36, Neg. LLF: 155.8029034957755
Iteration: 4, Func. Count: 48, Neg. LLF: 159.2783586060917
Iteration: 5, Func. Count: 60, Neg. LLF: 155.5414030468035
Iteration: 6, Func. Count: 72, Neg. LLF: 154.91818664109772
Iteration: 7, Func. Count: 84, Neg. LLF: 156.04426182732928
Iteration: 8, Func. Count: 96, Neg. LLF: 154.32823801339333
Iteration: 9, Func. Count: 107, Neg. LLF: 154.32437092414102
Iteration: 10, Func. Count: 118, Neg. LLF: 154.30433580543402
Iteration: 11, Func. Count: 129, Neg. LLF: 154.29640969417264
Iteration: 12, Func. Count: 140, Neg. LLF: 154.29157867355877
Iteration: 13, Func. Count: 151, Neg. LLF: 154.00299944724188
Iteration: 14, Func. Count: 162, Neg. LLF: 154.27798448012962
Iteration: 15, Func. Count: 175, Neg. LLF: 153.844338385968
Iteration: 16, Func. Count: 186, Neg. LLF: 153.7848999592385
Iteration: 17, Func. Count: 197, Neg. LLF: 153.7427841093881
Iteration: 18, Func. Count: 208, Neg. LLF: 153.73514626590008
Iteration: 19, Func. Count: 219, Neg. LLF: 153.7316113050359
Iteration: 20, Func. Count: 230, Neg. LLF: 153.7309989087057
Iteration: 21, Func. Count: 241, Neg. LLF: 153.73108914624538
Iteration: 22, Func. Count: 253, Neg. LLF: 153.7308792663841
Iteration: 23, Func. Count: 264, Neg. LLF: 153.73086415154205
Iteration: 24, Func. Count: 274, Neg. LLF: 153.7308641350959
Optimization terminated successfully (Exit mode 0)
Current function value: 153.73086415154205
Iterations: 24
Function evaluations: 274
Gradient evaluations: 24
Iteration: 1, Func. Count: 13, Neg. LLF: 216.12133774558978
Iteration: 2, Func. Count: 26, Neg. LLF: 163.35829124498238
Iteration: 3, Func. Count: 39, Neg. LLF: 155.92384293622024
Iteration: 4, Func. Count: 52, Neg. LLF: 161.04934135926896
Iteration: 5, Func. Count: 65, Neg. LLF: 155.23394644211805
Iteration: 6, Func. Count: 78, Neg. LLF: 154.54964710791106
Iteration: 7, Func. Count: 90, Neg. LLF: 154.66556792088102
Iteration: 8, Func. Count: 103, Neg. LLF: 154.43207136073414
Iteration: 9, Func. Count: 116, Neg. LLF: 154.63085953054437
Iteration: 10, Func. Count: 129, Neg. LLF: 154.34390489756015
Iteration: 11, Func. Count: 141, Neg. LLF: 154.33278555443508
Iteration: 12, Func. Count: 153, Neg. LLF: 154.3155693007952
Iteration: 13, Func. Count: 165, Neg. LLF: 154.3002186997631
Iteration: 14, Func. Count: 177, Neg. LLF: 154.28805371748973
Iteration: 15, Func. Count: 189, Neg. LLF: 154.74632573063667
Iteration: 16, Func. Count: 202, Neg. LLF: 154.91605929164055
Iteration: 17, Func. Count: 215, Neg. LLF: 155.03519374888043
Iteration: 18, Func. Count: 228, Neg. LLF: 155.71804882172606
Iteration: 19, Func. Count: 241, Neg. LLF: 155.572998788571
Iteration: 20, Func. Count: 254, Neg. LLF: 155.58487514924866
Iteration: 21, Func. Count: 267, Neg. LLF: 154.68238209071322
Iteration: 22, Func. Count: 280, Neg. LLF: 154.47922358444052
Iteration: 23, Func. Count: 293, Neg. LLF: 154.69352340889844
Iteration: 24, Func. Count: 306, Neg. LLF: 180.5587163390372
Iteration: 25, Func. Count: 320, Neg. LLF: 153.93069126419897
Iteration: 26, Func. Count: 333, Neg. LLF: 153.8651848041886
Iteration: 27, Func. Count: 346, Neg. LLF: 153.77202077533533
Iteration: 28, Func. Count: 358, Neg. LLF: 153.74312727231128
Iteration: 29, Func. Count: 370, Neg. LLF: 153.73742359970677
Iteration: 30, Func. Count: 382, Neg. LLF: 153.73490403221524
Iteration: 31, Func. Count: 394, Neg. LLF: 153.7341573304217
Iteration: 32, Func. Count: 406, Neg. LLF: 153.73261253031092
Iteration: 33, Func. Count: 418, Neg. LLF: 153.73212924864055
Iteration: 34, Func. Count: 430, Neg. LLF: 153.73096277084997
Iteration: 35, Func. Count: 442, Neg. LLF: 153.73086843937406
Iteration: 36, Func. Count: 454, Neg. LLF: 153.73086413109382
Iteration: 37, Func. Count: 465, Neg. LLF: 153.73086414418518
Optimization terminated successfully (Exit mode 0)
Current function value: 153.73086413109382
Iterations: 38
Function evaluations: 465
Gradient evaluations: 37
Iteration: 1, Func. Count: 10, Neg. LLF: 160.32849985881592
Iteration: 2, Func. Count: 20, Neg. LLF: 157.11247631479526
Iteration: 3, Func. Count: 30, Neg. LLF: 158.39456863134356
Iteration: 4, Func. Count: 40, Neg. LLF: 159.1359608054088
Iteration: 5, Func. Count: 50, Neg. LLF: 154.12247734496998
Iteration: 6, Func. Count: 59, Neg. LLF: 154.25168938143702
Iteration: 7, Func. Count: 69, Neg. LLF: 154.00039723983963
Iteration: 8, Func. Count: 79, Neg. LLF: 153.89972319028308
Iteration: 9, Func. Count: 88, Neg. LLF: 153.58108542266723
Iteration: 10, Func. Count: 97, Neg. LLF: 180.8521024504165
Iteration: 11, Func. Count: 107, Neg. LLF: 153.59645565812994
Iteration: 12, Func. Count: 117, Neg. LLF: 153.24507881939198
Iteration: 13, Func. Count: 126, Neg. LLF: 153.2102945077817
Iteration: 14, Func. Count: 135, Neg. LLF: 153.16697895112463
Iteration: 15, Func. Count: 144, Neg. LLF: 153.15134135523996
Iteration: 16, Func. Count: 153, Neg. LLF: 153.14357112129548
Iteration: 17, Func. Count: 162, Neg. LLF: 153.14307446993848
Iteration: 18, Func. Count: 171, Neg. LLF: 153.14293663528417
Iteration: 19, Func. Count: 180, Neg. LLF: 153.14286224307182
Iteration: 20, Func. Count: 189, Neg. LLF: 153.14286078681593
Iteration: 21, Func. Count: 197, Neg. LLF: 153.14286078637056
Optimization terminated successfully (Exit mode 0)
Current function value: 153.14286078681593
Iterations: 21
Function evaluations: 197
Gradient evaluations: 21
Iteration: 1, Func. Count: 11, Neg. LLF: 395.87157009981286
Iteration: 2, Func. Count: 22, Neg. LLF: 157.5503798711078
Iteration: 3, Func. Count: 33, Neg. LLF: 158.83640238107955
Iteration: 4, Func. Count: 44, Neg. LLF: 153.45956129791085
Iteration: 5, Func. Count: 54, Neg. LLF: 154.45387701316628
Iteration: 6, Func. Count: 65, Neg. LLF: 173.23029249592543
Iteration: 7, Func. Count: 76, Neg. LLF: 163.20175039841462
Iteration: 8, Func. Count: 87, Neg. LLF: 153.146659184024
Iteration: 9, Func. Count: 97, Neg. LLF: 153.04702808308792
Iteration: 10, Func. Count: 107, Neg. LLF: 153.01953307489387
Iteration: 11, Func. Count: 117, Neg. LLF: 152.9947699254459
Iteration: 12, Func. Count: 127, Neg. LLF: 152.97830412985326
Iteration: 13, Func. Count: 137, Neg. LLF: 152.96759805386642
Iteration: 14, Func. Count: 147, Neg. LLF: 152.94547793821383
Iteration: 15, Func. Count: 157, Neg. LLF: 154.56663968074648
Iteration: 16, Func. Count: 168, Neg. LLF: 154.37943139887935
Iteration: 17, Func. Count: 179, Neg. LLF: 153.15728101628397
Iteration: 18, Func. Count: 190, Neg. LLF: 152.90902122119172
Iteration: 19, Func. Count: 200, Neg. LLF: 152.91509537086054
Iteration: 20, Func. Count: 211, Neg. LLF: 152.91038152149744
Iteration: 21, Func. Count: 222, Neg. LLF: 152.93122942287462
Iteration: 22, Func. Count: 233, Neg. LLF: 152.890398975634
Iteration: 23, Func. Count: 243, Neg. LLF: 152.88400825604793
Iteration: 24, Func. Count: 253, Neg. LLF: 152.8827867559512
Iteration: 25, Func. Count: 263, Neg. LLF: 152.88106634891722
Iteration: 26, Func. Count: 273, Neg. LLF: 152.8806882634361
Iteration: 27, Func. Count: 283, Neg. LLF: 152.88042824571582
Iteration: 28, Func. Count: 293, Neg. LLF: 152.8803671208405
Iteration: 29, Func. Count: 303, Neg. LLF: 152.8803540443182
Iteration: 30, Func. Count: 313, Neg. LLF: 152.88035332678908
Optimization terminated successfully (Exit mode 0)
Current function value: 152.88035332678908
Iterations: 30
Function evaluations: 313
Gradient evaluations: 30
Iteration: 1, Func. Count: 12, Neg. LLF: 205.1668830493626
Iteration: 2, Func. Count: 24, Neg. LLF: 194.5830673567331
Iteration: 3, Func. Count: 36, Neg. LLF: 162.4677304116783
Iteration: 4, Func. Count: 48, Neg. LLF: 153.523176220232
Iteration: 5, Func. Count: 59, Neg. LLF: 171.7897504008203
Iteration: 6, Func. Count: 71, Neg. LLF: 184.76800374265923
Iteration: 7, Func. Count: 83, Neg. LLF: 154.458738521134
Iteration: 8, Func. Count: 95, Neg. LLF: 155.63989091538951
Iteration: 9, Func. Count: 107, Neg. LLF: 153.1168016884247
Iteration: 10, Func. Count: 119, Neg. LLF: 152.88737009795176
Iteration: 11, Func. Count: 130, Neg. LLF: 152.87395328859412
Iteration: 12, Func. Count: 141, Neg. LLF: 152.86976531400026
Iteration: 13, Func. Count: 152, Neg. LLF: 152.85957330309893
Iteration: 14, Func. Count: 163, Neg. LLF: 152.8554876402283
Iteration: 15, Func. Count: 174, Neg. LLF: 152.87635038627675
Iteration: 16, Func. Count: 186, Neg. LLF: 152.83809083925144
Iteration: 17, Func. Count: 197, Neg. LLF: 152.83593002709847
Iteration: 18, Func. Count: 208, Neg. LLF: 152.83570115107406
Iteration: 19, Func. Count: 219, Neg. LLF: 152.83565477463154
Iteration: 20, Func. Count: 230, Neg. LLF: 152.83565278204335
Iteration: 21, Func. Count: 240, Neg. LLF: 152.83565277216073
Optimization terminated successfully (Exit mode 0)
Current function value: 152.83565278204335
Iterations: 21
Function evaluations: 240
Gradient evaluations: 21
Iteration: 1, Func. Count: 13, Neg. LLF: 198.64906880389557
Iteration: 2, Func. Count: 26, Neg. LLF: 196.28235852832162
Iteration: 3, Func. Count: 39, Neg. LLF: 205.6628965599499
Iteration: 4, Func. Count: 52, Neg. LLF: 158.43065412718244
Iteration: 5, Func. Count: 65, Neg. LLF: 156.9700479923483
Iteration: 6, Func. Count: 78, Neg. LLF: 156.19570357611124
Iteration: 7, Func. Count: 91, Neg. LLF: 154.90046638191413
Iteration: 8, Func. Count: 104, Neg. LLF: 154.16411550912898
Iteration: 9, Func. Count: 117, Neg. LLF: 153.1532211678273
Iteration: 10, Func. Count: 130, Neg. LLF: 153.40474603111122
Iteration: 11, Func. Count: 143, Neg. LLF: 152.82369331266295
Iteration: 12, Func. Count: 155, Neg. LLF: 152.87096819116786
Iteration: 13, Func. Count: 168, Neg. LLF: 152.80735683628524
Iteration: 14, Func. Count: 181, Neg. LLF: 152.78973485864648
Iteration: 15, Func. Count: 193, Neg. LLF: 152.7875644388131
Iteration: 16, Func. Count: 205, Neg. LLF: 152.78181807076234
Iteration: 17, Func. Count: 217, Neg. LLF: 152.77857405506668
Iteration: 18, Func. Count: 229, Neg. LLF: 152.77642895867524
Iteration: 19, Func. Count: 241, Neg. LLF: 152.77610301699696
Iteration: 20, Func. Count: 253, Neg. LLF: 152.776088827296
Iteration: 21, Func. Count: 264, Neg. LLF: 152.77608881353444
Optimization terminated successfully (Exit mode 0)
Current function value: 152.776088827296
Iterations: 21
Function evaluations: 264
Gradient evaluations: 21
Iteration: 1, Func. Count: 14, Neg. LLF: 198.65783959246346
Iteration: 2, Func. Count: 28, Neg. LLF: 207.4886180931302
Iteration: 3, Func. Count: 42, Neg. LLF: 207.92676830812303
Iteration: 4, Func. Count: 56, Neg. LLF: 166.8560051570478
Iteration: 5, Func. Count: 70, Neg. LLF: 159.0865971244442
Iteration: 6, Func. Count: 84, Neg. LLF: 153.67992162025533
Iteration: 7, Func. Count: 98, Neg. LLF: 153.75856236991643
Iteration: 8, Func. Count: 112, Neg. LLF: 154.24271625956558
Iteration: 9, Func. Count: 126, Neg. LLF: 153.89032652520626
Iteration: 10, Func. Count: 140, Neg. LLF: 153.33691563417455
Iteration: 11, Func. Count: 154, Neg. LLF: 152.86556940340185
Iteration: 12, Func. Count: 167, Neg. LLF: 152.8500135808349
Iteration: 13, Func. Count: 180, Neg. LLF: 152.84661042563002
Iteration: 14, Func. Count: 193, Neg. LLF: 152.84455402979424
Iteration: 15, Func. Count: 206, Neg. LLF: 152.84027261924197
Iteration: 16, Func. Count: 219, Neg. LLF: 152.8365650813652
Iteration: 17, Func. Count: 232, Neg. LLF: 152.83487183289083
Iteration: 18, Func. Count: 245, Neg. LLF: 152.83462118791996
Iteration: 19, Func. Count: 258, Neg. LLF: 152.83459159511276
Iteration: 20, Func. Count: 271, Neg. LLF: 152.83458099024537
Iteration: 21, Func. Count: 284, Neg. LLF: 152.83457681694117
Iteration: 22, Func. Count: 297, Neg. LLF: 152.83457582335998
Optimization terminated successfully (Exit mode 0)
Current function value: 152.83457582335998
Iterations: 22
Function evaluations: 297
Gradient evaluations: 22
Iteration: 1, Func. Count: 7, Neg. LLF: 160.26056020347437
Iteration: 2, Func. Count: 13, Neg. LLF: 161.66881879404508
Iteration: 3, Func. Count: 20, Neg. LLF: 158.93560189284034
Iteration: 4, Func. Count: 26, Neg. LLF: 167.5174190904455
Iteration: 5, Func. Count: 33, Neg. LLF: 158.73231917960777
Iteration: 6, Func. Count: 39, Neg. LLF: 158.71884102849398
Iteration: 7, Func. Count: 45, Neg. LLF: 158.66977094606918
Iteration: 8, Func. Count: 51, Neg. LLF: 158.58419053980853
Iteration: 9, Func. Count: 57, Neg. LLF: 158.4838394667141
Iteration: 10, Func. Count: 63, Neg. LLF: 158.42844412619215
Iteration: 11, Func. Count: 69, Neg. LLF: 158.4175610914693
Iteration: 12, Func. Count: 75, Neg. LLF: 158.41722171531097
Iteration: 13, Func. Count: 81, Neg. LLF: 158.4171801210178
Iteration: 14, Func. Count: 86, Neg. LLF: 158.41718020255797
Optimization terminated successfully (Exit mode 0)
Current function value: 158.4171801210178
Iterations: 14
Function evaluations: 86
Gradient evaluations: 14
Iteration: 1, Func. Count: 8, Neg. LLF: 175.8628922971818
Iteration: 2, Func. Count: 16, Neg. LLF: 163.48571816611698
Iteration: 3, Func. Count: 24, Neg. LLF: 159.22370076116772
Iteration: 4, Func. Count: 32, Neg. LLF: 158.87799957074938
Iteration: 5, Func. Count: 39, Neg. LLF: 158.7058852974037
Iteration: 6, Func. Count: 46, Neg. LLF: 158.67087955200802
Iteration: 7, Func. Count: 53, Neg. LLF: 158.66735102529623
Iteration: 8, Func. Count: 60, Neg. LLF: 158.6522597818309
Iteration: 9, Func. Count: 67, Neg. LLF: 158.64939748478338
Iteration: 10, Func. Count: 74, Neg. LLF: 158.64774870619803
Iteration: 11, Func. Count: 81, Neg. LLF: 158.64767889631023
Iteration: 12, Func. Count: 88, Neg. LLF: 158.6476762202683
Iteration: 13, Func. Count: 94, Neg. LLF: 158.64767619531833
Optimization terminated successfully (Exit mode 0)
Current function value: 158.6476762202683
Iterations: 13
Function evaluations: 94
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 174.84451019581735
Iteration: 2, Func. Count: 18, Neg. LLF: 160.74289365112665
Iteration: 3, Func. Count: 27, Neg. LLF: 159.1372109619335
Iteration: 4, Func. Count: 36, Neg. LLF: 159.06313322016533
Iteration: 5, Func. Count: 45, Neg. LLF: 161.75702714687526
Iteration: 6, Func. Count: 54, Neg. LLF: 158.54485610247178
Iteration: 7, Func. Count: 62, Neg. LLF: 158.52650492902862
Iteration: 8, Func. Count: 70, Neg. LLF: 158.5263405008429
Iteration: 9, Func. Count: 78, Neg. LLF: 158.52633418854816
Iteration: 10, Func. Count: 86, Neg. LLF: 158.52632915241355
Iteration: 11, Func. Count: 94, Neg. LLF: 158.52631680213236
Iteration: 12, Func. Count: 102, Neg. LLF: 158.5263098541779
Iteration: 13, Func. Count: 110, Neg. LLF: 158.52630770713785
Iteration: 14, Func. Count: 117, Neg. LLF: 158.52630769124895
Optimization terminated successfully (Exit mode 0)
Current function value: 158.52630770713785
Iterations: 14
Function evaluations: 117
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 161.01113226507482
Iteration: 2, Func. Count: 20, Neg. LLF: 159.82207068794074
Iteration: 3, Func. Count: 30, Neg. LLF: 158.68933285056852
Iteration: 4, Func. Count: 40, Neg. LLF: 158.47126176313571
Iteration: 5, Func. Count: 50, Neg. LLF: 160.3639930749735
Iteration: 6, Func. Count: 60, Neg. LLF: 158.16777425147984
Iteration: 7, Func. Count: 69, Neg. LLF: 158.13500011811885
Iteration: 8, Func. Count: 78, Neg. LLF: 157.99268614489998
Iteration: 9, Func. Count: 87, Neg. LLF: 157.90061520760398
Iteration: 10, Func. Count: 96, Neg. LLF: 157.81755100750334
Iteration: 11, Func. Count: 105, Neg. LLF: 157.80362504655542
Iteration: 12, Func. Count: 114, Neg. LLF: 157.80230040679388
Iteration: 13, Func. Count: 123, Neg. LLF: 157.8022068279374
Iteration: 14, Func. Count: 132, Neg. LLF: 157.8021832505156
Iteration: 15, Func. Count: 141, Neg. LLF: 157.80218258110222
Optimization terminated successfully (Exit mode 0)
Current function value: 157.80218258110222
Iterations: 15
Function evaluations: 141
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 160.77766048015167
Iteration: 2, Func. Count: 22, Neg. LLF: 159.65034955452728
Iteration: 3, Func. Count: 33, Neg. LLF: 158.4972955879065
Iteration: 4, Func. Count: 43, Neg. LLF: 160.82328982820903
Iteration: 5, Func. Count: 54, Neg. LLF: 181.53990148505778
Iteration: 6, Func. Count: 66, Neg. LLF: 158.21639093200153
Iteration: 7, Func. Count: 77, Neg. LLF: 158.15855779775674
Iteration: 8, Func. Count: 87, Neg. LLF: 158.0693993439319
Iteration: 9, Func. Count: 97, Neg. LLF: 157.82175456860634
Iteration: 10, Func. Count: 107, Neg. LLF: 157.81123275323998
Iteration: 11, Func. Count: 117, Neg. LLF: 157.80370204192621
Iteration: 12, Func. Count: 127, Neg. LLF: 157.8022713639306
Iteration: 13, Func. Count: 137, Neg. LLF: 157.80218904603666
Iteration: 14, Func. Count: 147, Neg. LLF: 157.80218278627927
Iteration: 15, Func. Count: 156, Neg. LLF: 157.80218285643528
Optimization terminated successfully (Exit mode 0)
Current function value: 157.80218278627927
Iterations: 15
Function evaluations: 156
Gradient evaluations: 15
Iteration: 1, Func. Count: 8, Neg. LLF: 162.05510381140002
Iteration: 2, Func. Count: 16, Neg. LLF: 158.56123345317212
Iteration: 3, Func. Count: 24, Neg. LLF: 162.9720371942085
Iteration: 4, Func. Count: 33, Neg. LLF: 157.74709951523084
Iteration: 5, Func. Count: 41, Neg. LLF: 157.33120735622964
Iteration: 6, Func. Count: 48, Neg. LLF: 157.05683801370944
Iteration: 7, Func. Count: 55, Neg. LLF: 157.0096028743587
Iteration: 8, Func. Count: 62, Neg. LLF: 156.98402592414752
Iteration: 9, Func. Count: 69, Neg. LLF: 156.96796571132774
Iteration: 10, Func. Count: 76, Neg. LLF: 156.878028056688
Iteration: 11, Func. Count: 83, Neg. LLF: 156.78426580047375
Iteration: 12, Func. Count: 90, Neg. LLF: 156.6597032560557
Iteration: 13, Func. Count: 97, Neg. LLF: 156.60108839530025
Iteration: 14, Func. Count: 104, Neg. LLF: 156.57963830614435
Iteration: 15, Func. Count: 111, Neg. LLF: 156.57783343891222
Iteration: 16, Func. Count: 118, Neg. LLF: 156.57780349052982
Iteration: 17, Func. Count: 124, Neg. LLF: 156.57780348510462
Optimization terminated successfully (Exit mode 0)
Current function value: 156.57780349052982
Iterations: 17
Function evaluations: 124
Gradient evaluations: 17
Iteration: 1, Func. Count: 9, Neg. LLF: 425.8996745512113
Iteration: 2, Func. Count: 18, Neg. LLF: 158.3122398300215
Iteration: 3, Func. Count: 27, Neg. LLF: 154.5744592912549
Iteration: 4, Func. Count: 35, Neg. LLF: 154.56631087439226
Iteration: 5, Func. Count: 43, Neg. LLF: 154.5656374906007
Iteration: 6, Func. Count: 51, Neg. LLF: 154.56560165214952
Iteration: 7, Func. Count: 59, Neg. LLF: 154.56557405322224
Iteration: 8, Func. Count: 66, Neg. LLF: 154.5655739941572
Optimization terminated successfully (Exit mode 0)
Current function value: 154.56557405322224
Iterations: 8
Function evaluations: 66
Gradient evaluations: 8
Iteration: 1, Func. Count: 10, Neg. LLF: 414.11082557847334
Iteration: 2, Func. Count: 20, Neg. LLF: 156.42416405273616
Iteration: 3, Func. Count: 30, Neg. LLF: 154.63768333818868
Iteration: 4, Func. Count: 39, Neg. LLF: 154.566063903323
Iteration: 5, Func. Count: 48, Neg. LLF: 154.56557845267798
Iteration: 6, Func. Count: 57, Neg. LLF: 154.5655743328796
Iteration: 7, Func. Count: 65, Neg. LLF: 154.56557427922328
Optimization terminated successfully (Exit mode 0)
Current function value: 154.5655743328796
Iterations: 7
Function evaluations: 65
Gradient evaluations: 7
Iteration: 1, Func. Count: 11, Neg. LLF: 218.93206205270488
Iteration: 2, Func. Count: 22, Neg. LLF: 173.97847195850355
Iteration: 3, Func. Count: 34, Neg. LLF: 155.00427286966394
Iteration: 4, Func. Count: 44, Neg. LLF: 154.8073942568859
Iteration: 5, Func. Count: 54, Neg. LLF: 161.22286472131336
Iteration: 6, Func. Count: 65, Neg. LLF: 154.56153160318695
Iteration: 7, Func. Count: 75, Neg. LLF: 157.44836094737198
Iteration: 8, Func. Count: 86, Neg. LLF: 167.05460954496544
Iteration: 9, Func. Count: 98, Neg. LLF: 154.4738457500907
Iteration: 10, Func. Count: 108, Neg. LLF: 154.47225656559831
Iteration: 11, Func. Count: 118, Neg. LLF: 154.4707842689292
Iteration: 12, Func. Count: 128, Neg. LLF: 154.4672003081893
Iteration: 13, Func. Count: 138, Neg. LLF: 154.467011136718
Iteration: 14, Func. Count: 148, Neg. LLF: 154.46700700893152
Iteration: 15, Func. Count: 157, Neg. LLF: 154.46700696191658
Optimization terminated successfully (Exit mode 0)
Current function value: 154.46700700893152
Iterations: 15
Function evaluations: 157
Gradient evaluations: 15
Iteration: 1, Func. Count: 12, Neg. LLF: 215.7780416441232
Iteration: 2, Func. Count: 24, Neg. LLF: 173.88870561900444
Iteration: 3, Func. Count: 37, Neg. LLF: 157.50350436987455
Iteration: 4, Func. Count: 49, Neg. LLF: 154.72744123466458
Iteration: 5, Func. Count: 60, Neg. LLF: 158.97658526011986
Iteration: 6, Func. Count: 72, Neg. LLF: 154.6386579079247
Iteration: 7, Func. Count: 84, Neg. LLF: 154.5385410334035
Iteration: 8, Func. Count: 95, Neg. LLF: 154.51749532675296
Iteration: 9, Func. Count: 106, Neg. LLF: 154.50768568287384
Iteration: 10, Func. Count: 117, Neg. LLF: 154.47725569455437
Iteration: 11, Func. Count: 128, Neg. LLF: 154.46844539591086
Iteration: 12, Func. Count: 139, Neg. LLF: 154.4672821911122
Iteration: 13, Func. Count: 150, Neg. LLF: 154.46701587965214
Iteration: 14, Func. Count: 161, Neg. LLF: 154.46700693308475
Iteration: 15, Func. Count: 171, Neg. LLF: 154.46700689640224
Optimization terminated successfully (Exit mode 0)
Current function value: 154.46700693308475
Iterations: 15
Function evaluations: 171
Gradient evaluations: 15
Iteration: 1, Func. Count: 9, Neg. LLF: 164.25556189003254
Iteration: 2, Func. Count: 18, Neg. LLF: 157.4841506341626
Iteration: 3, Func. Count: 27, Neg. LLF: 158.5309702872794
Iteration: 4, Func. Count: 36, Neg. LLF: 158.91655891098765
Iteration: 5, Func. Count: 45, Neg. LLF: 156.44689185930574
Iteration: 6, Func. Count: 53, Neg. LLF: 156.2378378901523
Iteration: 7, Func. Count: 61, Neg. LLF: 156.19957595657462
Iteration: 8, Func. Count: 69, Neg. LLF: 156.07808883520948
Iteration: 9, Func. Count: 77, Neg. LLF: 155.98490235265206
Iteration: 10, Func. Count: 85, Neg. LLF: 155.88572277939244
Iteration: 11, Func. Count: 93, Neg. LLF: 155.76481109626292
Iteration: 12, Func. Count: 101, Neg. LLF: 155.7587537102161
Iteration: 13, Func. Count: 109, Neg. LLF: 155.75852474672465
Iteration: 14, Func. Count: 117, Neg. LLF: 155.7585166788989
Iteration: 15, Func. Count: 125, Neg. LLF: 155.7585150806328
Iteration: 16, Func. Count: 132, Neg. LLF: 155.75851507985357
Optimization terminated successfully (Exit mode 0)
Current function value: 155.7585150806328
Iterations: 16
Function evaluations: 132
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 429.4654556387307
Iteration: 2, Func. Count: 20, Neg. LLF: 157.9504349063493
Iteration: 3, Func. Count: 30, Neg. LLF: 154.62896851182276
Iteration: 4, Func. Count: 39, Neg. LLF: 154.5309275332059
Iteration: 5, Func. Count: 48, Neg. LLF: 154.5035204421689
Iteration: 6, Func. Count: 57, Neg. LLF: 154.4953353194477
Iteration: 7, Func. Count: 66, Neg. LLF: 154.49446774139574
Iteration: 8, Func. Count: 75, Neg. LLF: 154.4942709763607
Iteration: 9, Func. Count: 84, Neg. LLF: 154.49424826850847
Iteration: 10, Func. Count: 93, Neg. LLF: 154.49423960384203
Iteration: 11, Func. Count: 102, Neg. LLF: 154.4942389946996
Optimization terminated successfully (Exit mode 0)
Current function value: 154.4942389946996
Iterations: 11
Function evaluations: 102
Gradient evaluations: 11
Iteration: 1, Func. Count: 11, Neg. LLF: 237.40729862254852
Iteration: 2, Func. Count: 22, Neg. LLF: 156.61663033263926
Iteration: 3, Func. Count: 33, Neg. LLF: 154.3216961044899
Iteration: 4, Func. Count: 43, Neg. LLF: 154.591069311039
Iteration: 5, Func. Count: 54, Neg. LLF: 154.1449465372861
Iteration: 6, Func. Count: 65, Neg. LLF: 154.26335114130669
Iteration: 7, Func. Count: 76, Neg. LLF: 153.96912078707624
Iteration: 8, Func. Count: 87, Neg. LLF: 153.80072058739432
Iteration: 9, Func. Count: 97, Neg. LLF: 153.79297560907702
Iteration: 10, Func. Count: 107, Neg. LLF: 153.79054052919642
Iteration: 11, Func. Count: 117, Neg. LLF: 153.7896574175183
Iteration: 12, Func. Count: 127, Neg. LLF: 153.78964116659512
Iteration: 13, Func. Count: 136, Neg. LLF: 153.78964113093005
Optimization terminated successfully (Exit mode 0)
Current function value: 153.78964116659512
Iterations: 13
Function evaluations: 136
Gradient evaluations: 13
Iteration: 1, Func. Count: 12, Neg. LLF: 220.10993529102691
Iteration: 2, Func. Count: 24, Neg. LLF: 202.76048814311835
Iteration: 3, Func. Count: 36, Neg. LLF: 155.44112477926285
Iteration: 4, Func. Count: 48, Neg. LLF: 155.77600228151607
Iteration: 5, Func. Count: 60, Neg. LLF: 154.32169103141848
Iteration: 6, Func. Count: 71, Neg. LLF: 154.02763400923303
Iteration: 7, Func. Count: 82, Neg. LLF: 153.95183182380154
Iteration: 8, Func. Count: 93, Neg. LLF: 159.79767882524285
Iteration: 9, Func. Count: 106, Neg. LLF: 153.8544783719863
Iteration: 10, Func. Count: 117, Neg. LLF: 153.8270518130484
Iteration: 11, Func. Count: 128, Neg. LLF: 153.81058772168518
Iteration: 12, Func. Count: 139, Neg. LLF: 153.79745740562768
Iteration: 13, Func. Count: 150, Neg. LLF: 153.7938637695369
Iteration: 14, Func. Count: 161, Neg. LLF: 153.7897124205076
Iteration: 15, Func. Count: 172, Neg. LLF: 153.78965101218196
Iteration: 16, Func. Count: 183, Neg. LLF: 153.78964134133415
Iteration: 17, Func. Count: 194, Neg. LLF: 153.78964080774273
Optimization terminated successfully (Exit mode 0)
Current function value: 153.78964080774273
Iterations: 17
Function evaluations: 194
Gradient evaluations: 17
Iteration: 1, Func. Count: 13, Neg. LLF: 173.67002220107952
Iteration: 2, Func. Count: 26, Neg. LLF: 172.22888697498632
Iteration: 3, Func. Count: 39, Neg. LLF: 155.2251786416365
Iteration: 4, Func. Count: 52, Neg. LLF: 155.5499159856072
Iteration: 5, Func. Count: 65, Neg. LLF: 157.46871138505563
Iteration: 6, Func. Count: 78, Neg. LLF: 154.54593560749484
Iteration: 7, Func. Count: 91, Neg. LLF: 154.3492828740204
Iteration: 8, Func. Count: 103, Neg. LLF: 154.33196358988366
Iteration: 9, Func. Count: 115, Neg. LLF: 154.32579055336998
Iteration: 10, Func. Count: 127, Neg. LLF: 154.3178097301557
Iteration: 11, Func. Count: 139, Neg. LLF: 154.30404958501387
Iteration: 12, Func. Count: 151, Neg. LLF: 154.29374132044342
Iteration: 13, Func. Count: 163, Neg. LLF: 154.2651723035662
Iteration: 14, Func. Count: 175, Neg. LLF: 154.68519873549357
Iteration: 15, Func. Count: 188, Neg. LLF: 156.70619754040234
Iteration: 16, Func. Count: 201, Neg. LLF: 157.30001039181948
Iteration: 17, Func. Count: 214, Neg. LLF: 161.5528589300971
Iteration: 18, Func. Count: 227, Neg. LLF: 158.9239994489341
Iteration: 19, Func. Count: 240, Neg. LLF: 156.3777256072094
Iteration: 20, Func. Count: 253, Neg. LLF: 154.19411830856814
Iteration: 21, Func. Count: 266, Neg. LLF: 153.90903332262198
Iteration: 22, Func. Count: 278, Neg. LLF: 153.8505279827152
Iteration: 23, Func. Count: 290, Neg. LLF: 153.8082704951083
Iteration: 24, Func. Count: 302, Neg. LLF: 153.79800845335885
Iteration: 25, Func. Count: 314, Neg. LLF: 153.79232542379071
Iteration: 26, Func. Count: 326, Neg. LLF: 153.7900404583643
Iteration: 27, Func. Count: 338, Neg. LLF: 153.7896790003173
Iteration: 28, Func. Count: 350, Neg. LLF: 153.78963565845956
Iteration: 29, Func. Count: 362, Neg. LLF: 153.78960753776255
Iteration: 30, Func. Count: 384, Neg. LLF: 153.7900232697237
Iteration: 31, Func. Count: 398, Neg. LLF: 153.78966829049978
Iteration: 32, Func. Count: 411, Neg. LLF: 153.7896892258359
Iteration: 33, Func. Count: 424, Neg. LLF: 153.78964177089534
Iteration: 34, Func. Count: 436, Neg. LLF: 153.78964127081832
Optimization terminated successfully (Exit mode 0)
Current function value: 153.78964127081832
Iterations: 35
Function evaluations: 436
Gradient evaluations: 34
Iteration: 1, Func. Count: 10, Neg. LLF: 163.8778115465089
Iteration: 2, Func. Count: 20, Neg. LLF: 157.851236950273
Iteration: 3, Func. Count: 30, Neg. LLF: 160.37844223378767
Iteration: 4, Func. Count: 41, Neg. LLF: 158.86023974786752
Iteration: 5, Func. Count: 51, Neg. LLF: 157.18175035085528
Iteration: 6, Func. Count: 61, Neg. LLF: 156.40086134290493
Iteration: 7, Func. Count: 70, Neg. LLF: 156.19272217143276
Iteration: 8, Func. Count: 79, Neg. LLF: 156.1080751780266
Iteration: 9, Func. Count: 88, Neg. LLF: 156.03937127545828
Iteration: 10, Func. Count: 97, Neg. LLF: 155.9490611478203
Iteration: 11, Func. Count: 106, Neg. LLF: 155.74519659505475
Iteration: 12, Func. Count: 115, Neg. LLF: 155.5985726419183
Iteration: 13, Func. Count: 124, Neg. LLF: 155.51271022855659
Iteration: 14, Func. Count: 133, Neg. LLF: 155.50173045984783
Iteration: 15, Func. Count: 142, Neg. LLF: 155.50111356747138
Iteration: 16, Func. Count: 151, Neg. LLF: 155.50108650453905
Iteration: 17, Func. Count: 159, Neg. LLF: 155.50108650147016
Optimization terminated successfully (Exit mode 0)
Current function value: 155.50108650453905
Iterations: 17
Function evaluations: 159
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 400.2777759329944
Iteration: 2, Func. Count: 22, Neg. LLF: 157.44610140321527
Iteration: 3, Func. Count: 33, Neg. LLF: 154.63193293126957
Iteration: 4, Func. Count: 43, Neg. LLF: 154.53022235687058
Iteration: 5, Func. Count: 53, Neg. LLF: 154.61159327823444
Iteration: 6, Func. Count: 64, Neg. LLF: 154.4932109279669
Iteration: 7, Func. Count: 74, Neg. LLF: 154.4898309352046
Iteration: 8, Func. Count: 84, Neg. LLF: 154.48931667419305
Iteration: 9, Func. Count: 94, Neg. LLF: 154.4892724642946
Iteration: 10, Func. Count: 104, Neg. LLF: 154.4892682642451
Iteration: 11, Func. Count: 114, Neg. LLF: 154.48926588637482
Iteration: 12, Func. Count: 123, Neg. LLF: 154.4892658379822
Optimization terminated successfully (Exit mode 0)
Current function value: 154.48926588637482
Iterations: 12
Function evaluations: 123
Gradient evaluations: 12
Iteration: 1, Func. Count: 12, Neg. LLF: 176.4851847034763
Iteration: 2, Func. Count: 24, Neg. LLF: 155.440938402103
Iteration: 3, Func. Count: 36, Neg. LLF: 155.0975791614922
Iteration: 4, Func. Count: 48, Neg. LLF: 154.13819229996855
Iteration: 5, Func. Count: 60, Neg. LLF: 154.06678977111272
Iteration: 6, Func. Count: 72, Neg. LLF: 153.83844916707665
Iteration: 7, Func. Count: 83, Neg. LLF: 154.06358314793118
Iteration: 8, Func. Count: 95, Neg. LLF: 153.90585381769574
Iteration: 9, Func. Count: 107, Neg. LLF: 153.74731361147138
Iteration: 10, Func. Count: 118, Neg. LLF: 153.73194528355754
Iteration: 11, Func. Count: 129, Neg. LLF: 153.73115535848584
Iteration: 12, Func. Count: 140, Neg. LLF: 153.73101408870747
Iteration: 13, Func. Count: 151, Neg. LLF: 153.73097724074438
Iteration: 14, Func. Count: 162, Neg. LLF: 153.73091352888417
Iteration: 15, Func. Count: 173, Neg. LLF: 153.73087439491408
Iteration: 16, Func. Count: 184, Neg. LLF: 153.73086496446408
Iteration: 17, Func. Count: 195, Neg. LLF: 153.73086414073646
Optimization terminated successfully (Exit mode 0)
Current function value: 153.73086414073646
Iterations: 17
Function evaluations: 195
Gradient evaluations: 17
Iteration: 1, Func. Count: 13, Neg. LLF: 218.4493469069095
Iteration: 2, Func. Count: 26, Neg. LLF: 203.27490267315656
Iteration: 3, Func. Count: 39, Neg. LLF: 160.27917365132421
Iteration: 4, Func. Count: 52, Neg. LLF: 155.06438622745907
Iteration: 5, Func. Count: 65, Neg. LLF: 154.8028099618598
Iteration: 6, Func. Count: 78, Neg. LLF: 154.66983172464313
Iteration: 7, Func. Count: 91, Neg. LLF: 155.0833504863322
Iteration: 8, Func. Count: 104, Neg. LLF: 154.3263050774666
Iteration: 9, Func. Count: 116, Neg. LLF: 154.31074450853893
Iteration: 10, Func. Count: 128, Neg. LLF: 154.30767246762412
Iteration: 11, Func. Count: 140, Neg. LLF: 154.3039061594212
Iteration: 12, Func. Count: 152, Neg. LLF: 154.29192127401285
Iteration: 13, Func. Count: 164, Neg. LLF: 154.1388850166061
Iteration: 14, Func. Count: 176, Neg. LLF: 157.41291894996644
Iteration: 15, Func. Count: 189, Neg. LLF: 154.10298972865
Iteration: 16, Func. Count: 202, Neg. LLF: 153.96607818132068
Iteration: 17, Func. Count: 215, Neg. LLF: 153.91877962575256
Iteration: 18, Func. Count: 228, Neg. LLF: 154.1941820546131
Iteration: 19, Func. Count: 241, Neg. LLF: 153.77859315678955
Iteration: 20, Func. Count: 253, Neg. LLF: 153.7398567734196
Iteration: 21, Func. Count: 265, Neg. LLF: 153.73467093543368
Iteration: 22, Func. Count: 277, Neg. LLF: 153.73123744377602
Iteration: 23, Func. Count: 289, Neg. LLF: 153.7309548972607
Iteration: 24, Func. Count: 301, Neg. LLF: 153.73089576964873
Iteration: 25, Func. Count: 313, Neg. LLF: 153.73087333977665
Iteration: 26, Func. Count: 325, Neg. LLF: 153.73086603845113
Iteration: 27, Func. Count: 337, Neg. LLF: 153.7308641728687
Iteration: 28, Func. Count: 348, Neg. LLF: 153.73086415644482
Optimization terminated successfully (Exit mode 0)
Current function value: 153.7308641728687
Iterations: 28
Function evaluations: 348
Gradient evaluations: 28
Iteration: 1, Func. Count: 14, Neg. LLF: 171.74854090863948
Iteration: 2, Func. Count: 28, Neg. LLF: 169.51260592465704
Iteration: 3, Func. Count: 43, Neg. LLF: 155.40673510028836
Iteration: 4, Func. Count: 57, Neg. LLF: 156.77552043735446
Iteration: 5, Func. Count: 71, Neg. LLF: 155.73990203231602
Iteration: 6, Func. Count: 85, Neg. LLF: 154.46901108184952
Iteration: 7, Func. Count: 98, Neg. LLF: 154.35247395310756
Iteration: 8, Func. Count: 111, Neg. LLF: 154.33455722462267
Iteration: 9, Func. Count: 124, Neg. LLF: 154.32650934212717
Iteration: 10, Func. Count: 137, Neg. LLF: 154.31871591715597
Iteration: 11, Func. Count: 150, Neg. LLF: 154.30386104911557
Iteration: 12, Func. Count: 163, Neg. LLF: 154.28074875112802
Iteration: 13, Func. Count: 176, Neg. LLF: 154.77993121954296
Iteration: 14, Func. Count: 190, Neg. LLF: 154.95832344413805
Iteration: 15, Func. Count: 204, Neg. LLF: 155.01627204553895
Iteration: 16, Func. Count: 218, Neg. LLF: 154.90310753968103
Iteration: 17, Func. Count: 232, Neg. LLF: 189.86676433042484
Optimization terminated successfully (Exit mode 0)
Current function value: 154.2237922337293
Iterations: 17
Function evaluations: 242
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 160.5807410571134
Iteration: 2, Func. Count: 22, Neg. LLF: 157.21297720025123
Iteration: 3, Func. Count: 33, Neg. LLF: 156.9880627262237
Iteration: 4, Func. Count: 44, Neg. LLF: 155.4501703379641
Iteration: 5, Func. Count: 55, Neg. LLF: 154.81878905357405
Iteration: 6, Func. Count: 66, Neg. LLF: 154.3968685306556
Iteration: 7, Func. Count: 77, Neg. LLF: 154.08684592708093
Iteration: 8, Func. Count: 88, Neg. LLF: 153.8934748328841
Iteration: 9, Func. Count: 98, Neg. LLF: 153.69130826395076
Iteration: 10, Func. Count: 108, Neg. LLF: 154.23590843671056
Iteration: 11, Func. Count: 119, Neg. LLF: 424925.63053660584
Iteration: 12, Func. Count: 130, Neg. LLF: 153.25864540919113
Iteration: 13, Func. Count: 140, Neg. LLF: 153.20281357900004
Iteration: 14, Func. Count: 150, Neg. LLF: 153.18474487852026
Iteration: 15, Func. Count: 160, Neg. LLF: 153.17086696216373
Iteration: 16, Func. Count: 170, Neg. LLF: 153.1529413964577
Iteration: 17, Func. Count: 180, Neg. LLF: 153.14549651131685
Iteration: 18, Func. Count: 190, Neg. LLF: 153.1430426449656
Iteration: 19, Func. Count: 200, Neg. LLF: 153.1428623882878
Iteration: 20, Func. Count: 210, Neg. LLF: 153.1428607866293
Iteration: 21, Func. Count: 219, Neg. LLF: 153.14286078618485
Optimization terminated successfully (Exit mode 0)
Current function value: 153.1428607866293
Iterations: 21
Function evaluations: 219
Gradient evaluations: 21
Iteration: 1, Func. Count: 12, Neg. LLF: 393.4856827265347
Iteration: 2, Func. Count: 24, Neg. LLF: 157.55331349198124
Iteration: 3, Func. Count: 36, Neg. LLF: 158.84750061087092
Iteration: 4, Func. Count: 48, Neg. LLF: 153.4585787333599
Iteration: 5, Func. Count: 59, Neg. LLF: 154.46988913197146
Iteration: 6, Func. Count: 71, Neg. LLF: 173.46516160388876
Iteration: 7, Func. Count: 83, Neg. LLF: 162.9939004732102
Iteration: 8, Func. Count: 95, Neg. LLF: 153.14824686905104
Iteration: 9, Func. Count: 106, Neg. LLF: 153.04709757876844
Iteration: 10, Func. Count: 117, Neg. LLF: 153.01946500699947
Iteration: 11, Func. Count: 128, Neg. LLF: 152.99425284609774
Iteration: 12, Func. Count: 139, Neg. LLF: 152.9779033802584
Iteration: 13, Func. Count: 150, Neg. LLF: 152.96733738413442
Iteration: 14, Func. Count: 161, Neg. LLF: 152.94469874017082
Iteration: 15, Func. Count: 172, Neg. LLF: 154.56436599196897
Iteration: 16, Func. Count: 184, Neg. LLF: 154.35937073363198
Iteration: 17, Func. Count: 196, Neg. LLF: 153.10847480607725
Iteration: 18, Func. Count: 208, Neg. LLF: 152.90635889105133
Iteration: 19, Func. Count: 219, Neg. LLF: 152.90924679021848
Iteration: 20, Func. Count: 231, Neg. LLF: 152.95314108951203
Iteration: 21, Func. Count: 243, Neg. LLF: 152.89314989728766
Iteration: 22, Func. Count: 254, Neg. LLF: 152.88636884910179
Iteration: 23, Func. Count: 265, Neg. LLF: 152.88282159242877
Iteration: 24, Func. Count: 276, Neg. LLF: 152.88188112043343
Iteration: 25, Func. Count: 287, Neg. LLF: 152.88087724808372
Iteration: 26, Func. Count: 298, Neg. LLF: 152.88057751724455
Iteration: 27, Func. Count: 309, Neg. LLF: 152.88040797374896
Iteration: 28, Func. Count: 320, Neg. LLF: 152.88036442742344
Iteration: 29, Func. Count: 331, Neg. LLF: 152.88035403950065
Iteration: 30, Func. Count: 342, Neg. LLF: 152.88035333208035
Optimization terminated successfully (Exit mode 0)
Current function value: 152.88035333208035
Iterations: 30
Function evaluations: 342
Gradient evaluations: 30
Iteration: 1, Func. Count: 13, Neg. LLF: 205.01122632305473
Iteration: 2, Func. Count: 26, Neg. LLF: 194.16271859564463
Iteration: 3, Func. Count: 39, Neg. LLF: 162.87935760604748
Iteration: 4, Func. Count: 52, Neg. LLF: 153.4955949038306
Iteration: 5, Func. Count: 64, Neg. LLF: 170.44987193915335
Iteration: 6, Func. Count: 77, Neg. LLF: 172.3693043136162
Iteration: 7, Func. Count: 90, Neg. LLF: 153.93929686599253
Iteration: 8, Func. Count: 103, Neg. LLF: 155.49856758227185
Iteration: 9, Func. Count: 116, Neg. LLF: 152.8895460346928
Iteration: 10, Func. Count: 128, Neg. LLF: 153.1093506828707
Iteration: 11, Func. Count: 141, Neg. LLF: 152.87530807704934
Iteration: 12, Func. Count: 153, Neg. LLF: 152.868685714798
Iteration: 13, Func. Count: 165, Neg. LLF: 152.86070789809511
Iteration: 14, Func. Count: 177, Neg. LLF: 152.8521816603763
Iteration: 15, Func. Count: 189, Neg. LLF: 152.85532410644876
Iteration: 16, Func. Count: 202, Neg. LLF: 152.83763479419414
Iteration: 17, Func. Count: 214, Neg. LLF: 152.83606551924757
Iteration: 18, Func. Count: 226, Neg. LLF: 152.8356863991237
Iteration: 19, Func. Count: 238, Neg. LLF: 152.83566067293958
Iteration: 20, Func. Count: 250, Neg. LLF: 152.83565326976688
Iteration: 21, Func. Count: 262, Neg. LLF: 152.8356526124739
Optimization terminated successfully (Exit mode 0)
Current function value: 152.8356526124739
Iterations: 21
Function evaluations: 262
Gradient evaluations: 21
Iteration: 1, Func. Count: 14, Neg. LLF: 193.4061167092928
Iteration: 2, Func. Count: 28, Neg. LLF: 229.4407177472684
Iteration: 3, Func. Count: 42, Neg. LLF: 163.73647833359828
Iteration: 4, Func. Count: 56, Neg. LLF: 169.3462864105654
Iteration: 5, Func. Count: 70, Neg. LLF: 162.24296243672322
Iteration: 6, Func. Count: 84, Neg. LLF: 157.82064123320933
Iteration: 7, Func. Count: 98, Neg. LLF: 160.35529736164315
Iteration: 8, Func. Count: 112, Neg. LLF: 153.86003279864084
Iteration: 9, Func. Count: 126, Neg. LLF: 152.98372377766088
Iteration: 10, Func. Count: 139, Neg. LLF: 152.89130317364646
Iteration: 11, Func. Count: 152, Neg. LLF: 153.16021682239042
Iteration: 12, Func. Count: 166, Neg. LLF: 152.82536579872053
Iteration: 13, Func. Count: 179, Neg. LLF: 153.2327405789921
Iteration: 14, Func. Count: 193, Neg. LLF: 152.81634480202428
Iteration: 15, Func. Count: 206, Neg. LLF: 152.80555285500645
Iteration: 16, Func. Count: 219, Neg. LLF: 152.79913190177047
Iteration: 17, Func. Count: 232, Neg. LLF: 152.78356385266568
Iteration: 18, Func. Count: 245, Neg. LLF: 152.77717767571565
Iteration: 19, Func. Count: 258, Neg. LLF: 152.77617382745066
Iteration: 20, Func. Count: 271, Neg. LLF: 152.77611305889803
Iteration: 21, Func. Count: 284, Neg. LLF: 152.77608908557616
Iteration: 22, Func. Count: 296, Neg. LLF: 152.77608907185967
Optimization terminated successfully (Exit mode 0)
Current function value: 152.77608908557616
Iterations: 22
Function evaluations: 296
Gradient evaluations: 22
Iteration: 1, Func. Count: 15, Neg. LLF: 199.73619524905848
Iteration: 2, Func. Count: 30, Neg. LLF: 209.78475893168851
Iteration: 3, Func. Count: 45, Neg. LLF: 210.66161748403277
Iteration: 4, Func. Count: 60, Neg. LLF: 160.04360465174554
Iteration: 5, Func. Count: 76, Neg. LLF: 154.71139827924745
Iteration: 6, Func. Count: 91, Neg. LLF: 153.78988147923144
Iteration: 7, Func. Count: 106, Neg. LLF: 153.12396105105884
Iteration: 8, Func. Count: 120, Neg. LLF: 153.0245750750465
Iteration: 9, Func. Count: 134, Neg. LLF: 153.6090266537844
Iteration: 10, Func. Count: 149, Neg. LLF: 153.79850848559295
Iteration: 11, Func. Count: 164, Neg. LLF: 152.93896003711245
Iteration: 12, Func. Count: 179, Neg. LLF: 152.94565009835048
Iteration: 13, Func. Count: 194, Neg. LLF: 153.04144666310927
Iteration: 14, Func. Count: 209, Neg. LLF: 152.81745587747142
Iteration: 15, Func. Count: 223, Neg. LLF: 152.81082180482417
Iteration: 16, Func. Count: 237, Neg. LLF: 152.8015049787747
Iteration: 17, Func. Count: 251, Neg. LLF: 152.78913294660836
Iteration: 18, Func. Count: 265, Neg. LLF: 152.78026971822808
Iteration: 19, Func. Count: 279, Neg. LLF: 152.77695483114724
Iteration: 20, Func. Count: 293, Neg. LLF: 152.77630886605579
Iteration: 21, Func. Count: 307, Neg. LLF: 152.77609570834252
Iteration: 22, Func. Count: 321, Neg. LLF: 152.77608882102874
Iteration: 23, Func. Count: 334, Neg. LLF: 152.77608885307492
Optimization terminated successfully (Exit mode 0)
Current function value: 152.77608882102874
Iterations: 23
Function evaluations: 334
Gradient evaluations: 23
Iteration: 1, Func. Count: 8, Neg. LLF: 160.8688491993832
Iteration: 2, Func. Count: 16, Neg. LLF: 159.37582060009294
Iteration: 3, Func. Count: 26, Neg. LLF: 158.91482168538093
Iteration: 4, Func. Count: 34, Neg. LLF: 158.05925119441207
Iteration: 5, Func. Count: 41, Neg. LLF: 158.05210992187816
Iteration: 6, Func. Count: 48, Neg. LLF: 158.0469621384207
Iteration: 7, Func. Count: 55, Neg. LLF: 158.0359432539598
Iteration: 8, Func. Count: 62, Neg. LLF: 158.0313740828238
Iteration: 9, Func. Count: 69, Neg. LLF: 158.02531543624784
Iteration: 10, Func. Count: 76, Neg. LLF: 158.02031393436863
Iteration: 11, Func. Count: 83, Neg. LLF: 158.01439195628487
Iteration: 12, Func. Count: 90, Neg. LLF: 158.01050344230748
Iteration: 13, Func. Count: 97, Neg. LLF: 158.00968561978382
Iteration: 14, Func. Count: 104, Neg. LLF: 158.0096599475499
Iteration: 15, Func. Count: 110, Neg. LLF: 158.0096599475239
Optimization terminated successfully (Exit mode 0)
Current function value: 158.0096599475499
Iterations: 15
Function evaluations: 110
Gradient evaluations: 15
Iteration: 1, Func. Count: 9, Neg. LLF: 179.48147755328156
Iteration: 2, Func. Count: 18, Neg. LLF: 177.51605117396
Iteration: 3, Func. Count: 27, Neg. LLF: 167.6449906272384
Iteration: 4, Func. Count: 36, Neg. LLF: 165.67989279959986
Iteration: 5, Func. Count: 45, Neg. LLF: 158.3237254779899
Iteration: 6, Func. Count: 54, Neg. LLF: 157.5028828890699
Iteration: 7, Func. Count: 62, Neg. LLF: 157.43381759715493
Iteration: 8, Func. Count: 70, Neg. LLF: 157.392096369898
Iteration: 9, Func. Count: 78, Neg. LLF: 157.36371042445805
Iteration: 10, Func. Count: 86, Neg. LLF: 157.32936024915153
Iteration: 11, Func. Count: 94, Neg. LLF: 157.29881856500091
Iteration: 12, Func. Count: 102, Neg. LLF: 157.2774700504666
Iteration: 13, Func. Count: 110, Neg. LLF: 157.26836864347283
Iteration: 14, Func. Count: 118, Neg. LLF: 157.26740974319296
Iteration: 15, Func. Count: 126, Neg. LLF: 157.26737261489902
Iteration: 16, Func. Count: 134, Neg. LLF: 157.2673683097681
Iteration: 17, Func. Count: 141, Neg. LLF: 157.26736830982088
Optimization terminated successfully (Exit mode 0)
Current function value: 157.2673683097681
Iterations: 17
Function evaluations: 141
Gradient evaluations: 17
Iteration: 1, Func. Count: 10, Neg. LLF: 180.49542514369492
Iteration: 2, Func. Count: 20, Neg. LLF: 175.0958009683743
Iteration: 3, Func. Count: 30, Neg. LLF: 169.33910706002885
Iteration: 4, Func. Count: 40, Neg. LLF: 161.11644481077275
Iteration: 5, Func. Count: 50, Neg. LLF: 158.29489595209336
Iteration: 6, Func. Count: 60, Neg. LLF: 163.01866251853315
Iteration: 7, Func. Count: 70, Neg. LLF: 157.40196020505826
Iteration: 8, Func. Count: 79, Neg. LLF: 157.44548393297487
Iteration: 9, Func. Count: 89, Neg. LLF: 157.3054383479764
Iteration: 10, Func. Count: 98, Neg. LLF: 157.29290980954295
Iteration: 11, Func. Count: 107, Neg. LLF: 157.28673698485534
Iteration: 12, Func. Count: 116, Neg. LLF: 157.2785425767452
Iteration: 13, Func. Count: 125, Neg. LLF: 157.2738582837645
Iteration: 14, Func. Count: 134, Neg. LLF: 157.26340928180605
Iteration: 15, Func. Count: 143, Neg. LLF: 157.25870909227035
Iteration: 16, Func. Count: 152, Neg. LLF: 157.25315239875553
Iteration: 17, Func. Count: 161, Neg. LLF: 157.24873610876844
Iteration: 18, Func. Count: 170, Neg. LLF: 157.20641182204952
Iteration: 19, Func. Count: 179, Neg. LLF: 157.19674796501897
Iteration: 20, Func. Count: 188, Neg. LLF: 157.1915813877166
Iteration: 21, Func. Count: 197, Neg. LLF: 157.19125507342164
Iteration: 22, Func. Count: 206, Neg. LLF: 157.1910598795102
Iteration: 23, Func. Count: 215, Neg. LLF: 157.1910317528328
Iteration: 24, Func. Count: 224, Neg. LLF: 157.19102920214218
Iteration: 25, Func. Count: 232, Neg. LLF: 157.19102920211066
Optimization terminated successfully (Exit mode 0)
Current function value: 157.19102920214218
Iterations: 25
Function evaluations: 232
Gradient evaluations: 25
Iteration: 1, Func. Count: 11, Neg. LLF: 162.8710562858005
Iteration: 2, Func. Count: 22, Neg. LLF: 160.4579791749317
Iteration: 3, Func. Count: 34, Neg. LLF: 158.98079575204025
Iteration: 4, Func. Count: 45, Neg. LLF: 179.9936359217509
Iteration: 5, Func. Count: 56, Neg. LLF: 157.24457192442145
Iteration: 6, Func. Count: 66, Neg. LLF: 157.28483350931933
Iteration: 7, Func. Count: 77, Neg. LLF: 157.20934039778774
Iteration: 8, Func. Count: 88, Neg. LLF: 157.20599416803537
Iteration: 9, Func. Count: 99, Neg. LLF: 157.203723978668
Iteration: 10, Func. Count: 109, Neg. LLF: 157.2031387525629
Iteration: 11, Func. Count: 119, Neg. LLF: 157.20205802379786
Iteration: 12, Func. Count: 129, Neg. LLF: 157.19984369560618
Iteration: 13, Func. Count: 139, Neg. LLF: 157.19630976849982
Iteration: 14, Func. Count: 149, Neg. LLF: 157.19339220954808
Iteration: 15, Func. Count: 159, Neg. LLF: 157.19143251602102
Iteration: 16, Func. Count: 169, Neg. LLF: 157.19103323154016
Iteration: 17, Func. Count: 179, Neg. LLF: 157.19102926102698
Iteration: 18, Func. Count: 188, Neg. LLF: 157.1910292888715
Optimization terminated successfully (Exit mode 0)
Current function value: 157.19102926102698
Iterations: 18
Function evaluations: 188
Gradient evaluations: 18
Iteration: 1, Func. Count: 12, Neg. LLF: 162.85693991184087
Iteration: 2, Func. Count: 24, Neg. LLF: 159.0788671895758
Iteration: 3, Func. Count: 37, Neg. LLF: 159.01838753471787
Iteration: 4, Func. Count: 49, Neg. LLF: 178.08788068004847
Iteration: 5, Func. Count: 61, Neg. LLF: 157.2198339979056
Iteration: 6, Func. Count: 72, Neg. LLF: 157.23350324536688
Iteration: 7, Func. Count: 84, Neg. LLF: 157.26387647242228
Iteration: 8, Func. Count: 96, Neg. LLF: 157.20886001518045
Iteration: 9, Func. Count: 108, Neg. LLF: 157.2039467210291
Iteration: 10, Func. Count: 119, Neg. LLF: 157.20330597965807
Iteration: 11, Func. Count: 130, Neg. LLF: 157.20152435698373
Iteration: 12, Func. Count: 141, Neg. LLF: 157.19850577206967
Iteration: 13, Func. Count: 152, Neg. LLF: 157.19484723955173
Iteration: 14, Func. Count: 163, Neg. LLF: 157.19243674303772
Iteration: 15, Func. Count: 174, Neg. LLF: 157.19136746592434
Iteration: 16, Func. Count: 185, Neg. LLF: 157.19116296409513
Iteration: 17, Func. Count: 196, Neg. LLF: 157.19105710505684
Iteration: 18, Func. Count: 207, Neg. LLF: 157.1910311678628
Iteration: 19, Func. Count: 218, Neg. LLF: 157.19102916198764
Iteration: 20, Func. Count: 228, Neg. LLF: 157.1910292002441
Optimization terminated successfully (Exit mode 0)
Current function value: 157.19102916198764
Iterations: 20
Function evaluations: 228
Gradient evaluations: 20
Iteration: 1, Func. Count: 9, Neg. LLF: 159.44016221524308
Iteration: 2, Func. Count: 18, Neg. LLF: 163.88843792122609
Iteration: 3, Func. Count: 27, Neg. LLF: 159.5925469735497
Iteration: 4, Func. Count: 36, Neg. LLF: 157.2247951015282
Iteration: 5, Func. Count: 44, Neg. LLF: 157.13600807871455
Iteration: 6, Func. Count: 52, Neg. LLF: 157.34470056118786
Iteration: 7, Func. Count: 61, Neg. LLF: 157.02104553771193
Iteration: 8, Func. Count: 69, Neg. LLF: 156.99530743587027
Iteration: 9, Func. Count: 77, Neg. LLF: 156.97672038259893
Iteration: 10, Func. Count: 85, Neg. LLF: 156.9393754210595
Iteration: 11, Func. Count: 93, Neg. LLF: 156.91324079336857
Iteration: 12, Func. Count: 101, Neg. LLF: 156.8285720972003
Iteration: 13, Func. Count: 109, Neg. LLF: 156.7800250540467
Iteration: 14, Func. Count: 117, Neg. LLF: 156.66622978740244
Iteration: 15, Func. Count: 125, Neg. LLF: 156.5887578298794
Iteration: 16, Func. Count: 133, Neg. LLF: 156.57842500445972
Iteration: 17, Func. Count: 141, Neg. LLF: 156.57783575964947
Iteration: 18, Func. Count: 149, Neg. LLF: 156.5778049095439
Iteration: 19, Func. Count: 157, Neg. LLF: 156.57780434935364
Optimization terminated successfully (Exit mode 0)
Current function value: 156.57780434935364
Iterations: 19
Function evaluations: 157
Gradient evaluations: 19
Iteration: 1, Func. Count: 10, Neg. LLF: 430.2159872093544
Iteration: 2, Func. Count: 20, Neg. LLF: 158.2575050007586
Iteration: 3, Func. Count: 30, Neg. LLF: 154.57408374688526
Iteration: 4, Func. Count: 39, Neg. LLF: 154.56632431744887
Iteration: 5, Func. Count: 48, Neg. LLF: 154.5656543014842
Iteration: 6, Func. Count: 57, Neg. LLF: 154.5656081272704
Iteration: 7, Func. Count: 66, Neg. LLF: 154.5655741149434
Iteration: 8, Func. Count: 74, Neg. LLF: 154.56557405582524
Optimization terminated successfully (Exit mode 0)
Current function value: 154.5655741149434
Iterations: 8
Function evaluations: 74
Gradient evaluations: 8
Iteration: 1, Func. Count: 11, Neg. LLF: 415.5112980053641
Iteration: 2, Func. Count: 22, Neg. LLF: 156.39662814893512
Iteration: 3, Func. Count: 33, Neg. LLF: 154.63761527925732
Iteration: 4, Func. Count: 43, Neg. LLF: 154.56610447132405
Iteration: 5, Func. Count: 53, Neg. LLF: 154.56558046947322
Iteration: 6, Func. Count: 63, Neg. LLF: 154.56557503942878
Iteration: 7, Func. Count: 72, Neg. LLF: 154.56557498576012
Optimization terminated successfully (Exit mode 0)
Current function value: 154.56557503942878
Iterations: 7
Function evaluations: 72
Gradient evaluations: 7
Iteration: 1, Func. Count: 12, Neg. LLF: 218.90524705837672
Iteration: 2, Func. Count: 24, Neg. LLF: 174.03143344235707
Iteration: 3, Func. Count: 37, Neg. LLF: 155.00357091775018
Iteration: 4, Func. Count: 48, Neg. LLF: 154.8050651507931
Iteration: 5, Func. Count: 59, Neg. LLF: 161.27500134746498
Iteration: 6, Func. Count: 71, Neg. LLF: 154.5512051353016
Iteration: 7, Func. Count: 82, Neg. LLF: 157.4408524036302
Iteration: 8, Func. Count: 94, Neg. LLF: 169.13344155280504
Iteration: 9, Func. Count: 107, Neg. LLF: 154.47301329931392
Iteration: 10, Func. Count: 118, Neg. LLF: 154.47175033304347
Iteration: 11, Func. Count: 129, Neg. LLF: 154.4700331960198
Iteration: 12, Func. Count: 140, Neg. LLF: 154.4670215444967
Iteration: 13, Func. Count: 151, Neg. LLF: 154.46700701081315
Iteration: 14, Func. Count: 161, Neg. LLF: 154.46700696387163
Optimization terminated successfully (Exit mode 0)
Current function value: 154.46700701081315
Iterations: 14
Function evaluations: 161
Gradient evaluations: 14
Iteration: 1, Func. Count: 13, Neg. LLF: 215.76066443136642
Iteration: 2, Func. Count: 26, Neg. LLF: 173.95476733867753
Iteration: 3, Func. Count: 40, Neg. LLF: 158.11235600600304
Iteration: 4, Func. Count: 53, Neg. LLF: 154.76696275007671
Iteration: 5, Func. Count: 65, Neg. LLF: 158.3566306274341
Iteration: 6, Func. Count: 78, Neg. LLF: 154.5839351178129
Iteration: 7, Func. Count: 90, Neg. LLF: 154.55488548969868
Iteration: 8, Func. Count: 102, Neg. LLF: 154.54674435141112
Iteration: 9, Func. Count: 115, Neg. LLF: 154.52029120704884
Iteration: 10, Func. Count: 127, Neg. LLF: 154.51040503146845
Iteration: 11, Func. Count: 139, Neg. LLF: 154.49055563683214
Iteration: 12, Func. Count: 151, Neg. LLF: 154.47017326345863
Iteration: 13, Func. Count: 163, Neg. LLF: 154.46734192759402
Iteration: 14, Func. Count: 175, Neg. LLF: 154.46703372120078
Iteration: 15, Func. Count: 187, Neg. LLF: 154.46701053387335
Iteration: 16, Func. Count: 199, Neg. LLF: 154.46700690815285
Iteration: 17, Func. Count: 210, Neg. LLF: 154.46700687134845
Optimization terminated successfully (Exit mode 0)
Current function value: 154.46700690815285
Iterations: 17
Function evaluations: 210
Gradient evaluations: 17
Iteration: 1, Func. Count: 10, Neg. LLF: 164.1844777880104
Iteration: 2, Func. Count: 20, Neg. LLF: 158.9932392533016
Iteration: 3, Func. Count: 31, Neg. LLF: 159.87716599276368
Iteration: 4, Func. Count: 42, Neg. LLF: 157.02122402462348
Iteration: 5, Func. Count: 51, Neg. LLF: 156.39502215346045
Iteration: 6, Func. Count: 60, Neg. LLF: 156.27719343500925
Iteration: 7, Func. Count: 69, Neg. LLF: 156.22347882349507
Iteration: 8, Func. Count: 78, Neg. LLF: 156.16118745353904
Iteration: 9, Func. Count: 87, Neg. LLF: 156.09825845130848
Iteration: 10, Func. Count: 96, Neg. LLF: 155.92860422577922
Iteration: 11, Func. Count: 105, Neg. LLF: 155.81891937970826
Iteration: 12, Func. Count: 114, Neg. LLF: 155.76044806447476
Iteration: 13, Func. Count: 123, Neg. LLF: 155.75863817149119
Iteration: 14, Func. Count: 132, Neg. LLF: 155.75851764153856
Iteration: 15, Func. Count: 141, Neg. LLF: 155.75851496597775
Iteration: 16, Func. Count: 149, Neg. LLF: 155.75851496521446
Optimization terminated successfully (Exit mode 0)
Current function value: 155.75851496597775
Iterations: 16
Function evaluations: 149
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 432.8996008616541
Iteration: 2, Func. Count: 22, Neg. LLF: 157.89221696225786
Iteration: 3, Func. Count: 33, Neg. LLF: 154.6278317548828
Iteration: 4, Func. Count: 43, Neg. LLF: 154.529031070829
Iteration: 5, Func. Count: 53, Neg. LLF: 154.50289827542005
Iteration: 6, Func. Count: 63, Neg. LLF: 154.4952581645788
Iteration: 7, Func. Count: 73, Neg. LLF: 154.49444410424937
Iteration: 8, Func. Count: 83, Neg. LLF: 154.49426834522995
Iteration: 9, Func. Count: 93, Neg. LLF: 154.49424733741583
Iteration: 10, Func. Count: 103, Neg. LLF: 154.49423963968476
Iteration: 11, Func. Count: 113, Neg. LLF: 154.4942389963603
Optimization terminated successfully (Exit mode 0)
Current function value: 154.4942389963603
Iterations: 11
Function evaluations: 113
Gradient evaluations: 11
Iteration: 1, Func. Count: 12, Neg. LLF: 238.07922970322474
Iteration: 2, Func. Count: 24, Neg. LLF: 156.58354183827925
Iteration: 3, Func. Count: 36, Neg. LLF: 154.33325077132545
Iteration: 4, Func. Count: 47, Neg. LLF: 154.59054675872488
Iteration: 5, Func. Count: 59, Neg. LLF: 159.04961640400364
Iteration: 6, Func. Count: 71, Neg. LLF: 158.55723907456886
Iteration: 7, Func. Count: 84, Neg. LLF: 154.0743686652404
Iteration: 8, Func. Count: 96, Neg. LLF: 153.8119168969495
Iteration: 9, Func. Count: 107, Neg. LLF: 153.79713571944654
Iteration: 10, Func. Count: 118, Neg. LLF: 153.79244842476933
Iteration: 11, Func. Count: 129, Neg. LLF: 153.7898082526847
Iteration: 12, Func. Count: 140, Neg. LLF: 153.78965878040123
Iteration: 13, Func. Count: 151, Neg. LLF: 153.7896416874559
Iteration: 14, Func. Count: 162, Neg. LLF: 153.78964082543897
Optimization terminated successfully (Exit mode 0)
Current function value: 153.78964082543897
Iterations: 14
Function evaluations: 162
Gradient evaluations: 14
Iteration: 1, Func. Count: 13, Neg. LLF: 220.13676062755403
Iteration: 2, Func. Count: 26, Neg. LLF: 202.64093234701636
Iteration: 3, Func. Count: 39, Neg. LLF: 160.31475597781227
Iteration: 4, Func. Count: 52, Neg. LLF: 156.61519730272363
Iteration: 5, Func. Count: 65, Neg. LLF: 154.5323702856444
Iteration: 6, Func. Count: 77, Neg. LLF: 155.32165953100446
Iteration: 7, Func. Count: 90, Neg. LLF: 154.68078443093884
Iteration: 8, Func. Count: 103, Neg. LLF: 154.2177463524526
Iteration: 9, Func. Count: 115, Neg. LLF: 153.95183552412678
Iteration: 10, Func. Count: 127, Neg. LLF: 156.26113084175896
Iteration: 11, Func. Count: 140, Neg. LLF: 153.92964929132023
Iteration: 12, Func. Count: 153, Neg. LLF: 153.82291519354067
Iteration: 13, Func. Count: 165, Neg. LLF: 153.80929170021597
Iteration: 14, Func. Count: 177, Neg. LLF: 153.80271247741297
Iteration: 15, Func. Count: 189, Neg. LLF: 153.79099426291862
Iteration: 16, Func. Count: 201, Neg. LLF: 153.78985607431497
Iteration: 17, Func. Count: 213, Neg. LLF: 153.78966645814276
Iteration: 18, Func. Count: 225, Neg. LLF: 153.78964590788343
Iteration: 19, Func. Count: 237, Neg. LLF: 153.78964087474932
Iteration: 20, Func. Count: 248, Neg. LLF: 153.78964085618836
Optimization terminated successfully (Exit mode 0)
Current function value: 153.78964087474932
Iterations: 20
Function evaluations: 248
Gradient evaluations: 20
Iteration: 1, Func. Count: 14, Neg. LLF: 173.25407420259864
Iteration: 2, Func. Count: 28, Neg. LLF: 170.42172118887197
Iteration: 3, Func. Count: 43, Neg. LLF: 155.31014549733763
Iteration: 4, Func. Count: 57, Neg. LLF: 156.02281774074257
Iteration: 5, Func. Count: 71, Neg. LLF: 155.7523827081159
Iteration: 6, Func. Count: 85, Neg. LLF: 154.46744351036182
Iteration: 7, Func. Count: 98, Neg. LLF: 154.3438336061472
Iteration: 8, Func. Count: 111, Neg. LLF: 154.33017248944995
Iteration: 9, Func. Count: 124, Neg. LLF: 154.32355197540187
Iteration: 10, Func. Count: 137, Neg. LLF: 154.31346881653445
Iteration: 11, Func. Count: 150, Neg. LLF: 154.30152166782372
Iteration: 12, Func. Count: 163, Neg. LLF: 154.28886903844233
Iteration: 13, Func. Count: 176, Neg. LLF: 154.19564576873677
Iteration: 14, Func. Count: 189, Neg. LLF: 157.08107854601556
Iteration: 15, Func. Count: 203, Neg. LLF: 154.9746604767245
Iteration: 16, Func. Count: 217, Neg. LLF: 154.53648197244692
Iteration: 17, Func. Count: 231, Neg. LLF: 153.96317516130742
Iteration: 18, Func. Count: 244, Neg. LLF: 154.0063893022614
Iteration: 19, Func. Count: 258, Neg. LLF: 153.82678282595126
Iteration: 20, Func. Count: 271, Neg. LLF: 153.82115853146192
Iteration: 21, Func. Count: 285, Neg. LLF: 153.79138973584165
Iteration: 22, Func. Count: 298, Neg. LLF: 153.79000831242237
Iteration: 23, Func. Count: 311, Neg. LLF: 153.7896558173284
Iteration: 24, Func. Count: 324, Neg. LLF: 153.78964113338273
Iteration: 25, Func. Count: 336, Neg. LLF: 153.78964113315672
Optimization terminated successfully (Exit mode 0)
Current function value: 153.78964113338273
Iterations: 25
Function evaluations: 336
Gradient evaluations: 25
Iteration: 1, Func. Count: 11, Neg. LLF: 163.57314012398896
Iteration: 2, Func. Count: 22, Neg. LLF: 158.93881438110702
Iteration: 3, Func. Count: 34, Neg. LLF: 162.28404124195066
Iteration: 4, Func. Count: 46, Neg. LLF: 157.13941548292848
Iteration: 5, Func. Count: 56, Neg. LLF: 156.97459117846472
Iteration: 6, Func. Count: 66, Neg. LLF: 156.40076679879462
Iteration: 7, Func. Count: 76, Neg. LLF: 156.1955651288304
Iteration: 8, Func. Count: 86, Neg. LLF: 156.15183574599376
Iteration: 9, Func. Count: 96, Neg. LLF: 156.10422756410182
Iteration: 10, Func. Count: 106, Neg. LLF: 156.03122830549592
Iteration: 11, Func. Count: 116, Neg. LLF: 155.7667855536266
Iteration: 12, Func. Count: 126, Neg. LLF: 155.57467442873553
Iteration: 13, Func. Count: 136, Neg. LLF: 155.5081500026656
Iteration: 14, Func. Count: 146, Neg. LLF: 155.50172794162933
Iteration: 15, Func. Count: 156, Neg. LLF: 155.5011295929987
Iteration: 16, Func. Count: 166, Neg. LLF: 155.5010905835877
Iteration: 17, Func. Count: 176, Neg. LLF: 155.50108655989771
Iteration: 18, Func. Count: 185, Neg. LLF: 155.5010865568348
Optimization terminated successfully (Exit mode 0)
Current function value: 155.50108655989771
Iterations: 18
Function evaluations: 185
Gradient evaluations: 18
Iteration: 1, Func. Count: 12, Neg. LLF: 402.023364841052
Iteration: 2, Func. Count: 24, Neg. LLF: 157.39912572203554
Iteration: 3, Func. Count: 36, Neg. LLF: 154.63134472203743
Iteration: 4, Func. Count: 47, Neg. LLF: 154.52882032227723
Iteration: 5, Func. Count: 58, Neg. LLF: 154.61261587538036
Iteration: 6, Func. Count: 70, Neg. LLF: 154.49291014494898
Iteration: 7, Func. Count: 81, Neg. LLF: 154.48981366940293
Iteration: 8, Func. Count: 92, Neg. LLF: 154.48931412101092
Iteration: 9, Func. Count: 103, Neg. LLF: 154.48927313180167
Iteration: 10, Func. Count: 114, Neg. LLF: 154.489268431593
Iteration: 11, Func. Count: 125, Neg. LLF: 154.4892658973661
Iteration: 12, Func. Count: 135, Neg. LLF: 154.48926584898743
Optimization terminated successfully (Exit mode 0)
Current function value: 154.4892658973661
Iterations: 12
Function evaluations: 135
Gradient evaluations: 12
Iteration: 1, Func. Count: 13, Neg. LLF: 176.65467586543664
Iteration: 2, Func. Count: 26, Neg. LLF: 155.44530185936662
Iteration: 3, Func. Count: 39, Neg. LLF: 155.0990155695174
Iteration: 4, Func. Count: 52, Neg. LLF: 154.15914484080352
Iteration: 5, Func. Count: 65, Neg. LLF: 154.06372427974765
Iteration: 6, Func. Count: 78, Neg. LLF: 153.78594388395305
Iteration: 7, Func. Count: 90, Neg. LLF: 153.90932011763726
Iteration: 8, Func. Count: 103, Neg. LLF: 153.84955973363063
Iteration: 9, Func. Count: 116, Neg. LLF: 153.74091031196943
Iteration: 10, Func. Count: 129, Neg. LLF: 153.73113972804248
Iteration: 11, Func. Count: 141, Neg. LLF: 153.731048438299
Iteration: 12, Func. Count: 153, Neg. LLF: 153.73100030645858
Iteration: 13, Func. Count: 165, Neg. LLF: 153.73089547749464
Iteration: 14, Func. Count: 177, Neg. LLF: 153.73086770477843
Iteration: 15, Func. Count: 189, Neg. LLF: 153.73086420614334
Iteration: 16, Func. Count: 200, Neg. LLF: 153.73086418114087
Optimization terminated successfully (Exit mode 0)
Current function value: 153.73086420614334
Iterations: 16
Function evaluations: 200
Gradient evaluations: 16
Iteration: 1, Func. Count: 14, Neg. LLF: 218.48055409724026
Iteration: 2, Func. Count: 28, Neg. LLF: 203.17835662421516
Iteration: 3, Func. Count: 42, Neg. LLF: 168.35403674080644
Iteration: 4, Func. Count: 57, Neg. LLF: 155.37530589371855
Iteration: 5, Func. Count: 71, Neg. LLF: 154.5089337810648
Iteration: 6, Func. Count: 84, Neg. LLF: 157.32485261938336
Iteration: 7, Func. Count: 98, Neg. LLF: 154.55497937102928
Iteration: 8, Func. Count: 112, Neg. LLF: 154.31549858894283
Iteration: 9, Func. Count: 125, Neg. LLF: 154.17807436888802
Iteration: 10, Func. Count: 138, Neg. LLF: 153.95967915822888
Iteration: 11, Func. Count: 151, Neg. LLF: 156.39613367568964
Iteration: 12, Func. Count: 165, Neg. LLF: 153.76722750834915
Iteration: 13, Func. Count: 178, Neg. LLF: 155.31811778237034
Iteration: 14, Func. Count: 193, Neg. LLF: 153.7446068825326
Iteration: 15, Func. Count: 206, Neg. LLF: 153.73613179392572
Iteration: 16, Func. Count: 219, Neg. LLF: 153.73485296310167
Iteration: 17, Func. Count: 232, Neg. LLF: 153.73245871118925
Iteration: 18, Func. Count: 245, Neg. LLF: 153.73131421695157
Iteration: 19, Func. Count: 258, Neg. LLF: 153.73093562155137
Iteration: 20, Func. Count: 271, Neg. LLF: 153.7308769938691
Iteration: 21, Func. Count: 284, Neg. LLF: 153.73086586629984
Iteration: 22, Func. Count: 297, Neg. LLF: 153.73086422077816
Iteration: 23, Func. Count: 309, Neg. LLF: 153.7308642043724
Optimization terminated successfully (Exit mode 0)
Current function value: 153.73086422077816
Iterations: 23
Function evaluations: 309
Gradient evaluations: 23
Iteration: 1, Func. Count: 15, Neg. LLF: 171.9752185127043
Iteration: 2, Func. Count: 30, Neg. LLF: 160.72059236600586
Iteration: 3, Func. Count: 45, Neg. LLF: 155.6046424094845
Iteration: 4, Func. Count: 60, Neg. LLF: 154.65865838555905
Iteration: 5, Func. Count: 74, Neg. LLF: 156.35033574639516
Iteration: 6, Func. Count: 90, Neg. LLF: 157.14106537126216
Iteration: 7, Func. Count: 106, Neg. LLF: 157.9268988606378
Iteration: 8, Func. Count: 121, Neg. LLF: 154.35203185527246
Iteration: 9, Func. Count: 135, Neg. LLF: 154.342405334597
Iteration: 10, Func. Count: 149, Neg. LLF: 154.3249387245722
Iteration: 11, Func. Count: 163, Neg. LLF: 154.31534629751783
Iteration: 12, Func. Count: 177, Neg. LLF: 154.29989945402264
Iteration: 13, Func. Count: 191, Neg. LLF: 154.29516609386746
Iteration: 14, Func. Count: 205, Neg. LLF: 154.29367219091444
Iteration: 15, Func. Count: 219, Neg. LLF: 154.2784048774658
Iteration: 16, Func. Count: 233, Neg. LLF: 154.1727722950708
Iteration: 17, Func. Count: 247, Neg. LLF: 156.5885295892165
Iteration: 18, Func. Count: 262, Neg. LLF: 173.08461332283025
Iteration: 19, Func. Count: 277, Neg. LLF: 156.289474837903
Iteration: 20, Func. Count: 292, Neg. LLF: 154.2962663660125
Iteration: 21, Func. Count: 307, Neg. LLF: 154.37215854595703
Iteration: 22, Func. Count: 322, Neg. LLF: 153.85569714439606
Iteration: 23, Func. Count: 336, Neg. LLF: 153.82871551865463
Iteration: 24, Func. Count: 350, Neg. LLF: 154.24123312457237
Iteration: 25, Func. Count: 365, Neg. LLF: 153.84360131758746
Iteration: 26, Func. Count: 380, Neg. LLF: 153.75541196466648
Iteration: 27, Func. Count: 394, Neg. LLF: 153.74074136400003
Iteration: 28, Func. Count: 408, Neg. LLF: 153.7363583028166
Iteration: 29, Func. Count: 422, Neg. LLF: 153.73175683217934
Iteration: 30, Func. Count: 436, Neg. LLF: 153.7310701604264
Iteration: 31, Func. Count: 450, Neg. LLF: 153.73089301835418
Iteration: 32, Func. Count: 464, Neg. LLF: 153.73086649439415
Iteration: 33, Func. Count: 478, Neg. LLF: 153.730864220747
Iteration: 34, Func. Count: 491, Neg. LLF: 153.73086423388523
Optimization terminated successfully (Exit mode 0)
Current function value: 153.730864220747
Iterations: 35
Function evaluations: 491
Gradient evaluations: 34
Iteration: 1, Func. Count: 12, Neg. LLF: 160.71301315190723
Iteration: 2, Func. Count: 24, Neg. LLF: 156.15499790043776
Iteration: 3, Func. Count: 36, Neg. LLF: 157.67580299526324
Iteration: 4, Func. Count: 48, Neg. LLF: 155.08340939050484
Iteration: 5, Func. Count: 60, Neg. LLF: 154.8733286289244
Iteration: 6, Func. Count: 72, Neg. LLF: 154.68879309676166
Iteration: 7, Func. Count: 84, Neg. LLF: 154.04128779937045
Iteration: 8, Func. Count: 96, Neg. LLF: 154.02853187204528
Iteration: 9, Func. Count: 108, Neg. LLF: 153.83019050007834
Iteration: 10, Func. Count: 119, Neg. LLF: 153.38379796711163
Iteration: 11, Func. Count: 130, Neg. LLF: 156.3771282293763
Iteration: 12, Func. Count: 142, Neg. LLF: 153.21339700431736
Iteration: 13, Func. Count: 153, Neg. LLF: 153.15472645647972
Iteration: 14, Func. Count: 164, Neg. LLF: 153.15022935725284
Iteration: 15, Func. Count: 175, Neg. LLF: 153.14328616480313
Iteration: 16, Func. Count: 186, Neg. LLF: 153.1430437867463
Iteration: 17, Func. Count: 197, Neg. LLF: 153.14292152833326
Iteration: 18, Func. Count: 208, Neg. LLF: 153.1428730647631
Iteration: 19, Func. Count: 219, Neg. LLF: 153.14286138724083
Iteration: 20, Func. Count: 230, Neg. LLF: 153.1428607724986
Optimization terminated successfully (Exit mode 0)
Current function value: 153.1428607724986
Iterations: 20
Function evaluations: 230
Gradient evaluations: 20
Iteration: 1, Func. Count: 13, Neg. LLF: 393.7593123596903
Iteration: 2, Func. Count: 26, Neg. LLF: 157.53619620745232
Iteration: 3, Func. Count: 39, Neg. LLF: 158.83533956195632
Iteration: 4, Func. Count: 52, Neg. LLF: 153.45573449027242
Iteration: 5, Func. Count: 64, Neg. LLF: 154.51564906268234
Iteration: 6, Func. Count: 77, Neg. LLF: 173.6598215895022
Iteration: 7, Func. Count: 90, Neg. LLF: 164.52951355322483
Iteration: 8, Func. Count: 103, Neg. LLF: 153.1051835302055
Iteration: 9, Func. Count: 115, Neg. LLF: 153.0460399876366
Iteration: 10, Func. Count: 127, Neg. LLF: 153.0136947733895
Iteration: 11, Func. Count: 139, Neg. LLF: 152.9916624233728
Iteration: 12, Func. Count: 151, Neg. LLF: 152.9748513793073
Iteration: 13, Func. Count: 163, Neg. LLF: 152.96275557282428
Iteration: 14, Func. Count: 175, Neg. LLF: 154.38085960033877
Iteration: 15, Func. Count: 188, Neg. LLF: 154.36598626283381
Iteration: 16, Func. Count: 201, Neg. LLF: 154.330584420775
Iteration: 17, Func. Count: 214, Neg. LLF: 154.279146735952
Iteration: 18, Func. Count: 227, Neg. LLF: 154.02112384705146
Iteration: 19, Func. Count: 240, Neg. LLF: 154.80178812435264
Iteration: 20, Func. Count: 253, Neg. LLF: 153.87391592331804
Iteration: 21, Func. Count: 266, Neg. LLF: 152.93914676112135
Iteration: 22, Func. Count: 279, Neg. LLF: 152.88297768959995
Iteration: 23, Func. Count: 291, Neg. LLF: 152.8812527708125
Iteration: 24, Func. Count: 303, Neg. LLF: 152.8806044266272
Iteration: 25, Func. Count: 315, Neg. LLF: 152.88042626163337
Iteration: 26, Func. Count: 327, Neg. LLF: 152.88036236509083
Iteration: 27, Func. Count: 339, Neg. LLF: 152.88035771079808
Iteration: 28, Func. Count: 350, Neg. LLF: 152.880357707516
Optimization terminated successfully (Exit mode 0)
Current function value: 152.88035771079808
Iterations: 28
Function evaluations: 350
Gradient evaluations: 28
Iteration: 1, Func. Count: 14, Neg. LLF: 185.96658992087353
Iteration: 2, Func. Count: 28, Neg. LLF: 164.40291424505054
Iteration: 3, Func. Count: 42, Neg. LLF: 154.38276566142693
Iteration: 4, Func. Count: 56, Neg. LLF: 155.15359401939415
Iteration: 5, Func. Count: 70, Neg. LLF: 153.6715120021101
Iteration: 6, Func. Count: 84, Neg. LLF: 153.06152959114067
Iteration: 7, Func. Count: 98, Neg. LLF: 152.9046335459156
Iteration: 8, Func. Count: 111, Neg. LLF: 152.8728478862126
Iteration: 9, Func. Count: 124, Neg. LLF: 152.87234087608311
Iteration: 10, Func. Count: 138, Neg. LLF: 152.8680081951581
Iteration: 11, Func. Count: 151, Neg. LLF: 152.86384873467773
Iteration: 12, Func. Count: 164, Neg. LLF: 152.85531211186668
Iteration: 13, Func. Count: 177, Neg. LLF: 152.84877720798002
Iteration: 14, Func. Count: 190, Neg. LLF: 152.83859880534627
Iteration: 15, Func. Count: 203, Neg. LLF: 152.83613531627745
Iteration: 16, Func. Count: 216, Neg. LLF: 152.8356961889501
Iteration: 17, Func. Count: 229, Neg. LLF: 152.83566418987374
Iteration: 18, Func. Count: 242, Neg. LLF: 152.8356531810857
Iteration: 19, Func. Count: 254, Neg. LLF: 152.83565317135594
Optimization terminated successfully (Exit mode 0)
Current function value: 152.8356531810857
Iterations: 19
Function evaluations: 254
Gradient evaluations: 19
Iteration: 1, Func. Count: 15, Neg. LLF: 193.33443331451167
Iteration: 2, Func. Count: 30, Neg. LLF: 229.5331205396909
Iteration: 3, Func. Count: 45, Neg. LLF: 163.740748181143
Iteration: 4, Func. Count: 60, Neg. LLF: 168.88309451301816
Iteration: 5, Func. Count: 75, Neg. LLF: 162.37099005249686
Iteration: 6, Func. Count: 90, Neg. LLF: 157.93605343022955
Iteration: 7, Func. Count: 105, Neg. LLF: 159.1771635805489
Iteration: 8, Func. Count: 120, Neg. LLF: 153.67748952793957
Iteration: 9, Func. Count: 135, Neg. LLF: 152.98452620938386
Iteration: 10, Func. Count: 149, Neg. LLF: 152.8571413146797
Iteration: 11, Func. Count: 163, Neg. LLF: 153.28741533121334
Iteration: 12, Func. Count: 178, Neg. LLF: 152.8567545217119
Iteration: 13, Func. Count: 193, Neg. LLF: 152.9997454109295
Iteration: 14, Func. Count: 208, Neg. LLF: 152.81131006481888
Iteration: 15, Func. Count: 222, Neg. LLF: 152.80462232245338
Iteration: 16, Func. Count: 236, Neg. LLF: 152.79377988564173
Iteration: 17, Func. Count: 250, Neg. LLF: 152.78101612813748
Iteration: 18, Func. Count: 264, Neg. LLF: 152.7768864488384
Iteration: 19, Func. Count: 278, Neg. LLF: 152.77620409205147
Iteration: 20, Func. Count: 292, Neg. LLF: 152.77610461917996
Iteration: 21, Func. Count: 306, Neg. LLF: 152.7760888108983
Iteration: 22, Func. Count: 319, Neg. LLF: 152.77608879716854
Optimization terminated successfully (Exit mode 0)
Current function value: 152.7760888108983
Iterations: 22
Function evaluations: 319
Gradient evaluations: 22
Iteration: 1, Func. Count: 16, Neg. LLF: 197.86525034206656
Iteration: 2, Func. Count: 32, Neg. LLF: 211.0580409829142
Iteration: 3, Func. Count: 48, Neg. LLF: 158.31236153087318
Iteration: 4, Func. Count: 64, Neg. LLF: 183.9647409384717
Iteration: 5, Func. Count: 80, Neg. LLF: 171.708794687074
Iteration: 6, Func. Count: 96, Neg. LLF: 154.3667055720489
Iteration: 7, Func. Count: 112, Neg. LLF: 153.90134909716073
Iteration: 8, Func. Count: 128, Neg. LLF: 152.98649910367124
Iteration: 9, Func. Count: 143, Neg. LLF: 153.64422787208613
Iteration: 10, Func. Count: 159, Neg. LLF: 153.0470790387054
Iteration: 11, Func. Count: 175, Neg. LLF: 153.5945588554655
Iteration: 12, Func. Count: 191, Neg. LLF: 152.8983878662726
Iteration: 13, Func. Count: 207, Neg. LLF: 152.82971942262958
Iteration: 14, Func. Count: 222, Neg. LLF: 152.80497474064285
Iteration: 15, Func. Count: 237, Neg. LLF: 152.8002408024562
Iteration: 16, Func. Count: 252, Neg. LLF: 152.79247752132378
Iteration: 17, Func. Count: 267, Neg. LLF: 152.7863617124666
Iteration: 18, Func. Count: 282, Neg. LLF: 152.77887657440633
Iteration: 19, Func. Count: 297, Neg. LLF: 152.77641505881215
Iteration: 20, Func. Count: 312, Neg. LLF: 152.77614081680204
Iteration: 21, Func. Count: 327, Neg. LLF: 152.77609131400934
Iteration: 22, Func. Count: 342, Neg. LLF: 152.77608850895405
Iteration: 23, Func. Count: 356, Neg. LLF: 152.7760885411381
Optimization terminated successfully (Exit mode 0)
Current function value: 152.77608850895405
Iterations: 23
Function evaluations: 356
Gradient evaluations: 23
Iteration: 1, Func. Count: 6, Neg. LLF: 439.10314218150353
Iteration: 2, Func. Count: 12, Neg. LLF: 158.2914664719939
Iteration: 3, Func. Count: 18, Neg. LLF: 154.57303353908878
Iteration: 4, Func. Count: 23, Neg. LLF: 154.5661062356168
Iteration: 5, Func. Count: 28, Neg. LLF: 154.5656266854637
Iteration: 6, Func. Count: 33, Neg. LLF: 154.56559373001096
Iteration: 7, Func. Count: 38, Neg. LLF: 154.56557583469993
Iteration: 8, Func. Count: 43, Neg. LLF: 154.5655740814764
Iteration: 9, Func. Count: 47, Neg. LLF: 154.56557402232085
Optimization terminated successfully (Exit mode 0)
Current function value: 154.5655740814764
Iterations: 9
Function evaluations: 47
Gradient evaluations: 9
Iteration: 1, Func. Count: 5, Neg. LLF: 162.1214802677855
Iteration: 2, Func. Count: 10, Neg. LLF: 161.36218827213725
Iteration: 3, Func. Count: 15, Neg. LLF: 160.0030622337417
Iteration: 4, Func. Count: 19, Neg. LLF: 159.66497125269495
Iteration: 5, Func. Count: 23, Neg. LLF: 159.48521662129946
Iteration: 6, Func. Count: 27, Neg. LLF: 159.463142436003
Iteration: 7, Func. Count: 31, Neg. LLF: 159.45916412676263
Iteration: 8, Func. Count: 35, Neg. LLF: 159.4557369069979
Iteration: 9, Func. Count: 39, Neg. LLF: 159.45117482823943
Iteration: 10, Func. Count: 43, Neg. LLF: 159.44903028329588
Iteration: 11, Func. Count: 47, Neg. LLF: 159.44849504256692
Iteration: 12, Func. Count: 51, Neg. LLF: 159.4484488353654
Iteration: 13, Func. Count: 54, Neg. LLF: 159.44844883535592
Optimization terminated successfully (Exit mode 0)
Current function value: 159.4484488353654
Iterations: 13
Function evaluations: 54
Gradient evaluations: 13
Iteration: 1, Func. Count: 6, Neg. LLF: 4439.299000643446
Iteration: 2, Func. Count: 12, Neg. LLF: 157.7478453711047
Iteration: 3, Func. Count: 18, Neg. LLF: 155.34604773018646
Iteration: 4, Func. Count: 23, Neg. LLF: 155.3347240461004
Iteration: 5, Func. Count: 28, Neg. LLF: 155.3297035852346
Iteration: 6, Func. Count: 33, Neg. LLF: 155.32890380250853
Iteration: 7, Func. Count: 38, Neg. LLF: 155.32878542077955
Iteration: 8, Func. Count: 43, Neg. LLF: 155.32878378384595
Iteration: 9, Func. Count: 47, Neg. LLF: 155.3287837008974
Optimization terminated successfully (Exit mode 0)
Current function value: 155.32878378384595
Iterations: 9
Function evaluations: 47
Gradient evaluations: 9
Iteration: 1, Func. Count: 7, Neg. LLF: 8596556.629105719
Iteration: 2, Func. Count: 14, Neg. LLF: 156.64048886813288
Iteration: 3, Func. Count: 21, Neg. LLF: 155.45918590483618
Iteration: 4, Func. Count: 27, Neg. LLF: 155.3489790495756
Iteration: 5, Func. Count: 33, Neg. LLF: 155.33463875347852
Iteration: 6, Func. Count: 39, Neg. LLF: 155.32981245425415
Iteration: 7, Func. Count: 45, Neg. LLF: 155.3288525155988
Iteration: 8, Func. Count: 51, Neg. LLF: 155.32879101369656
Iteration: 9, Func. Count: 57, Neg. LLF: 155.3287839853248
Iteration: 10, Func. Count: 62, Neg. LLF: 155.32878390951797
Optimization terminated successfully (Exit mode 0)
Current function value: 155.3287839853248
Iterations: 10
Function evaluations: 62
Gradient evaluations: 10
Iteration: 1, Func. Count: 8, Neg. LLF: 8583482.986308087
Iteration: 2, Func. Count: 16, Neg. LLF: 156.0559037170898
Iteration: 3, Func. Count: 24, Neg. LLF: 155.81538170628542
Iteration: 4, Func. Count: 32, Neg. LLF: 155.3745277382464
Iteration: 5, Func. Count: 39, Neg. LLF: 155.35448161648057
Iteration: 6, Func. Count: 46, Neg. LLF: 155.3306731475001
Iteration: 7, Func. Count: 53, Neg. LLF: 155.31652469254257
Iteration: 8, Func. Count: 60, Neg. LLF: 155.31127154776638
Iteration: 9, Func. Count: 67, Neg. LLF: 155.3107514742567
Iteration: 10, Func. Count: 74, Neg. LLF: 155.31070507556916
Iteration: 11, Func. Count: 81, Neg. LLF: 155.31069608753998
Iteration: 12, Func. Count: 88, Neg. LLF: 155.31068569943864
Iteration: 13, Func. Count: 94, Neg. LLF: 155.31068564111823
Optimization terminated successfully (Exit mode 0)
Current function value: 155.31068569943864
Iterations: 13
Function evaluations: 94
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 74648.79401178872
Iteration: 2, Func. Count: 18, Neg. LLF: 157.18785543410067
Iteration: 3, Func. Count: 27, Neg. LLF: 155.70126486471813
Iteration: 4, Func. Count: 36, Neg. LLF: 155.33635847049746
Iteration: 5, Func. Count: 44, Neg. LLF: 155.32851479629753
Iteration: 6, Func. Count: 52, Neg. LLF: 155.31530817234133
Iteration: 7, Func. Count: 60, Neg. LLF: 155.31321179148227
Iteration: 8, Func. Count: 68, Neg. LLF: 155.3110952017981
Iteration: 9, Func. Count: 76, Neg. LLF: 155.3107238850919
Iteration: 10, Func. Count: 84, Neg. LLF: 155.31068691585162
Iteration: 11, Func. Count: 92, Neg. LLF: 155.31068567296433
Iteration: 12, Func. Count: 99, Neg. LLF: 155.31068562743687
Optimization terminated successfully (Exit mode 0)
Current function value: 155.31068567296433
Iterations: 12
Function evaluations: 99
Gradient evaluations: 12
Iteration: 1, Func. Count: 6, Neg. LLF: 165.56577514890643
Iteration: 2, Func. Count: 12, Neg. LLF: 160.13513476603688
Iteration: 3, Func. Count: 18, Neg. LLF: 160.93157915228477
Iteration: 4, Func. Count: 24, Neg. LLF: 157.96985855929788
Iteration: 5, Func. Count: 29, Neg. LLF: 157.87953236839303
Iteration: 6, Func. Count: 34, Neg. LLF: 157.80807637223594
Iteration: 7, Func. Count: 39, Neg. LLF: 157.78773100289752
Iteration: 8, Func. Count: 44, Neg. LLF: 157.768267721274
Iteration: 9, Func. Count: 49, Neg. LLF: 157.76494839120983
Iteration: 10, Func. Count: 54, Neg. LLF: 157.76188405519738
Iteration: 11, Func. Count: 59, Neg. LLF: 157.74957565671505
Iteration: 12, Func. Count: 64, Neg. LLF: 157.74624404594925
Iteration: 13, Func. Count: 69, Neg. LLF: 157.74545813149754
Iteration: 14, Func. Count: 74, Neg. LLF: 157.74542191177238
Iteration: 15, Func. Count: 79, Neg. LLF: 157.74542110258608
Optimization terminated successfully (Exit mode 0)
Current function value: 157.74542110258608
Iterations: 15
Function evaluations: 79
Gradient evaluations: 15
Iteration: 1, Func. Count: 7, Neg. LLF: 2591074.328639403
Iteration: 2, Func. Count: 14, Neg. LLF: 157.4810183678558
Iteration: 3, Func. Count: 21, Neg. LLF: 155.1912154606056
Iteration: 4, Func. Count: 27, Neg. LLF: 155.14645208172976
Iteration: 5, Func. Count: 33, Neg. LLF: 155.11840922458947
Iteration: 6, Func. Count: 39, Neg. LLF: 155.1125894126033
Iteration: 7, Func. Count: 45, Neg. LLF: 155.11114021355996
Iteration: 8, Func. Count: 51, Neg. LLF: 155.11094605072734
Iteration: 9, Func. Count: 57, Neg. LLF: 155.11090804411091
Iteration: 10, Func. Count: 62, Neg. LLF: 155.11090796483117
Optimization terminated successfully (Exit mode 0)
Current function value: 155.11090804411091
Iterations: 10
Function evaluations: 62
Gradient evaluations: 10
Iteration: 1, Func. Count: 8, Neg. LLF: 2711302.449564015
Iteration: 2, Func. Count: 16, Neg. LLF: 156.23295943553555
Iteration: 3, Func. Count: 24, Neg. LLF: 154.67710916148502
Iteration: 4, Func. Count: 31, Neg. LLF: 154.8424692333478
Iteration: 5, Func. Count: 39, Neg. LLF: 154.59132738328643
Iteration: 6, Func. Count: 47, Neg. LLF: 154.61251640753125
Iteration: 7, Func. Count: 55, Neg. LLF: 154.4962087731717
Iteration: 8, Func. Count: 62, Neg. LLF: 154.49094148624454
Iteration: 9, Func. Count: 69, Neg. LLF: 154.49037106127645
Iteration: 10, Func. Count: 76, Neg. LLF: 154.49033809377084
Iteration: 11, Func. Count: 82, Neg. LLF: 154.49033804838072
Optimization terminated successfully (Exit mode 0)
Current function value: 154.49033809377084
Iterations: 11
Function evaluations: 82
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 8596666.69122547
Iteration: 2, Func. Count: 18, Neg. LLF: 156.8777874697699
Iteration: 3, Func. Count: 27, Neg. LLF: 155.19921260482707
Iteration: 4, Func. Count: 35, Neg. LLF: 154.74566598114086
Iteration: 5, Func. Count: 43, Neg. LLF: 163.2406519651044
Iteration: 6, Func. Count: 52, Neg. LLF: 154.549927060347
Iteration: 7, Func. Count: 60, Neg. LLF: 154.53718814215412
Iteration: 8, Func. Count: 68, Neg. LLF: 154.50635673691008
Iteration: 9, Func. Count: 76, Neg. LLF: 154.4950792099748
Iteration: 10, Func. Count: 84, Neg. LLF: 154.4925945077093
Iteration: 11, Func. Count: 92, Neg. LLF: 154.49078532839707
Iteration: 12, Func. Count: 100, Neg. LLF: 154.4903846448236
Iteration: 13, Func. Count: 108, Neg. LLF: 154.49033953148725
Iteration: 14, Func. Count: 116, Neg. LLF: 154.49033796747142
Iteration: 15, Func. Count: 123, Neg. LLF: 154.49033794486192
Optimization terminated successfully (Exit mode 0)
Current function value: 154.49033796747142
Iterations: 15
Function evaluations: 123
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 2727926.7483195923
Iteration: 2, Func. Count: 20, Neg. LLF: 158.1618347159688
Iteration: 3, Func. Count: 30, Neg. LLF: 155.78020532612524
Iteration: 4, Func. Count: 40, Neg. LLF: 155.1493987997628
Iteration: 5, Func. Count: 49, Neg. LLF: 155.86864898814486
Iteration: 6, Func. Count: 59, Neg. LLF: 156.25086433607387
Iteration: 7, Func. Count: 69, Neg. LLF: 154.5582493354221
Iteration: 8, Func. Count: 78, Neg. LLF: 154.5114608532396
Iteration: 9, Func. Count: 87, Neg. LLF: 154.49696208996474
Iteration: 10, Func. Count: 96, Neg. LLF: 154.49264266398495
Iteration: 11, Func. Count: 105, Neg. LLF: 154.4915888302292
Iteration: 12, Func. Count: 114, Neg. LLF: 154.4903796561996
Iteration: 13, Func. Count: 123, Neg. LLF: 154.49035257255048
Iteration: 14, Func. Count: 132, Neg. LLF: 154.49033814301228
Iteration: 15, Func. Count: 140, Neg. LLF: 154.49033813615506
Optimization terminated successfully (Exit mode 0)
Current function value: 154.49033814301228
Iterations: 15
Function evaluations: 140
Gradient evaluations: 15
Iteration: 1, Func. Count: 7, Neg. LLF: 165.2244620312288
Iteration: 2, Func. Count: 14, Neg. LLF: 160.1074730427953
Iteration: 3, Func. Count: 21, Neg. LLF: 160.63586277684266
Iteration: 4, Func. Count: 28, Neg. LLF: 158.02320460916113
Iteration: 5, Func. Count: 34, Neg. LLF: 158.03428639579116
Iteration: 6, Func. Count: 41, Neg. LLF: 157.7911921619636
Iteration: 7, Func. Count: 47, Neg. LLF: 157.74105566252135
Iteration: 8, Func. Count: 53, Neg. LLF: 157.72897034817626
Iteration: 9, Func. Count: 59, Neg. LLF: 157.72346033919456
Iteration: 10, Func. Count: 65, Neg. LLF: 157.70617242581739
Iteration: 11, Func. Count: 71, Neg. LLF: 157.69079077524313
Iteration: 12, Func. Count: 77, Neg. LLF: 157.6825780642657
Iteration: 13, Func. Count: 83, Neg. LLF: 157.68125428331462
Iteration: 14, Func. Count: 89, Neg. LLF: 157.68120772376628
Iteration: 15, Func. Count: 94, Neg. LLF: 157.68120772375514
Optimization terminated successfully (Exit mode 0)
Current function value: 157.68120772376628
Iterations: 15
Function evaluations: 94
Gradient evaluations: 15
Iteration: 1, Func. Count: 8, Neg. LLF: 2643452.893963535
Iteration: 2, Func. Count: 16, Neg. LLF: 158.76871466406186
Iteration: 3, Func. Count: 24, Neg. LLF: 155.10375157908172
Iteration: 4, Func. Count: 31, Neg. LLF: 155.08784893784033
Iteration: 5, Func. Count: 39, Neg. LLF: 155.34001377636318
Iteration: 6, Func. Count: 47, Neg. LLF: 155.03519375643754
Iteration: 7, Func. Count: 54, Neg. LLF: 155.03462570638436
Iteration: 8, Func. Count: 61, Neg. LLF: 155.03452940068445
Iteration: 9, Func. Count: 68, Neg. LLF: 155.0345131100908
Iteration: 10, Func. Count: 75, Neg. LLF: 155.0345092175149
Iteration: 11, Func. Count: 81, Neg. LLF: 155.03450915150043
Optimization terminated successfully (Exit mode 0)
Current function value: 155.0345092175149
Iterations: 11
Function evaluations: 81
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 2717134.7530022124
Iteration: 2, Func. Count: 18, Neg. LLF: 156.33524174105466
Iteration: 3, Func. Count: 27, Neg. LLF: 155.14410977722912
Iteration: 4, Func. Count: 35, Neg. LLF: 154.82502415758802
Iteration: 5, Func. Count: 43, Neg. LLF: 154.92166748863914
Iteration: 6, Func. Count: 52, Neg. LLF: 154.78014669573966
Iteration: 7, Func. Count: 61, Neg. LLF: 154.4599797854351
Iteration: 8, Func. Count: 69, Neg. LLF: 154.74543618963497
Iteration: 9, Func. Count: 78, Neg. LLF: 154.3938803184078
Iteration: 10, Func. Count: 86, Neg. LLF: 154.4543094162844
Iteration: 11, Func. Count: 95, Neg. LLF: 154.37817582991573
Iteration: 12, Func. Count: 103, Neg. LLF: 154.37597461220645
Iteration: 13, Func. Count: 111, Neg. LLF: 154.37481867930296
Iteration: 14, Func. Count: 119, Neg. LLF: 154.3746953283809
Iteration: 15, Func. Count: 127, Neg. LLF: 154.37469099277138
Iteration: 16, Func. Count: 134, Neg. LLF: 154.37469096186703
Optimization terminated successfully (Exit mode 0)
Current function value: 154.37469099277138
Iterations: 16
Function evaluations: 134
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 8621895.383831095
Iteration: 2, Func. Count: 20, Neg. LLF: 156.76160609372582
Iteration: 3, Func. Count: 30, Neg. LLF: 155.25880899715088
Iteration: 4, Func. Count: 39, Neg. LLF: 154.75504413827926
Iteration: 5, Func. Count: 48, Neg. LLF: 157.31515166932985
Iteration: 6, Func. Count: 58, Neg. LLF: 154.49380901188675
Iteration: 7, Func. Count: 67, Neg. LLF: 154.43893758656458
Iteration: 8, Func. Count: 76, Neg. LLF: 154.69807415679566
Iteration: 9, Func. Count: 86, Neg. LLF: 154.41869595120482
Iteration: 10, Func. Count: 95, Neg. LLF: 154.39506037871257
Iteration: 11, Func. Count: 104, Neg. LLF: 154.38426986750358
Iteration: 12, Func. Count: 113, Neg. LLF: 154.3773912828579
Iteration: 13, Func. Count: 122, Neg. LLF: 154.37495056674746
Iteration: 14, Func. Count: 131, Neg. LLF: 154.3747231474011
Iteration: 15, Func. Count: 140, Neg. LLF: 154.3746924805679
Iteration: 16, Func. Count: 149, Neg. LLF: 154.3746909780642
Iteration: 17, Func. Count: 157, Neg. LLF: 154.37469095924757
Optimization terminated successfully (Exit mode 0)
Current function value: 154.3746909780642
Iterations: 17
Function evaluations: 157
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 2190.528835270358
Iteration: 2, Func. Count: 22, Neg. LLF: 157.63131831298656
Iteration: 3, Func. Count: 33, Neg. LLF: 155.97666299591478
Iteration: 4, Func. Count: 44, Neg. LLF: 155.0927787089411
Iteration: 5, Func. Count: 54, Neg. LLF: 155.61433928556932
Iteration: 6, Func. Count: 66, Neg. LLF: 154.4928671836982
Iteration: 7, Func. Count: 76, Neg. LLF: 154.50332831812474
Iteration: 8, Func. Count: 87, Neg. LLF: 154.49779991112337
Iteration: 9, Func. Count: 98, Neg. LLF: 154.40452373800846
Iteration: 10, Func. Count: 108, Neg. LLF: 154.38155272990585
Iteration: 11, Func. Count: 118, Neg. LLF: 154.37698513922155
Iteration: 12, Func. Count: 128, Neg. LLF: 154.37484835364103
Iteration: 13, Func. Count: 138, Neg. LLF: 154.37471098088787
Iteration: 14, Func. Count: 148, Neg. LLF: 154.37469247289175
Iteration: 15, Func. Count: 158, Neg. LLF: 154.37469098401397
Iteration: 16, Func. Count: 167, Neg. LLF: 154.37469099486657
Optimization terminated successfully (Exit mode 0)
Current function value: 154.37469098401397
Iterations: 16
Function evaluations: 167
Gradient evaluations: 16
Iteration: 1, Func. Count: 8, Neg. LLF: 161.4629344161028
Iteration: 2, Func. Count: 16, Neg. LLF: 157.24065050380986
Iteration: 3, Func. Count: 24, Neg. LLF: 157.0343450779521
Iteration: 4, Func. Count: 33, Neg. LLF: 155.52530180644024
Iteration: 5, Func. Count: 41, Neg. LLF: 155.19117274327095
Iteration: 6, Func. Count: 48, Neg. LLF: 155.12573610069626
Iteration: 7, Func. Count: 55, Neg. LLF: 155.08994376782724
Iteration: 8, Func. Count: 62, Neg. LLF: 155.01807580194702
Iteration: 9, Func. Count: 69, Neg. LLF: 154.85900613742834
Iteration: 10, Func. Count: 76, Neg. LLF: 154.83237449026257
Iteration: 11, Func. Count: 83, Neg. LLF: 154.82021373663903
Iteration: 12, Func. Count: 90, Neg. LLF: 154.81854176304356
Iteration: 13, Func. Count: 97, Neg. LLF: 154.81829735230505
Iteration: 14, Func. Count: 104, Neg. LLF: 154.81784633579323
Iteration: 15, Func. Count: 111, Neg. LLF: 154.81775816746426
Iteration: 16, Func. Count: 118, Neg. LLF: 154.81774313288807
Iteration: 17, Func. Count: 124, Neg. LLF: 154.81774313290006
Optimization terminated successfully (Exit mode 0)
Current function value: 154.81774313288807
Iterations: 17
Function evaluations: 124
Gradient evaluations: 17
Iteration: 1, Func. Count: 9, Neg. LLF: 2700700.8056449974
Iteration: 2, Func. Count: 18, Neg. LLF: 160.044095542871
Iteration: 3, Func. Count: 27, Neg. LLF: 156.6479086511532
Iteration: 4, Func. Count: 36, Neg. LLF: 153.90737984919895
Iteration: 5, Func. Count: 44, Neg. LLF: 154.30975298731056
Iteration: 6, Func. Count: 53, Neg. LLF: 154.82906784224429
Iteration: 7, Func. Count: 62, Neg. LLF: 153.66444831656054
Iteration: 8, Func. Count: 70, Neg. LLF: 153.4722686417724
Iteration: 9, Func. Count: 78, Neg. LLF: 153.44676938253676
Iteration: 10, Func. Count: 86, Neg. LLF: 153.4140156224257
Iteration: 11, Func. Count: 94, Neg. LLF: 153.40316185867871
Iteration: 12, Func. Count: 102, Neg. LLF: 153.39027673272574
Iteration: 13, Func. Count: 110, Neg. LLF: 153.38254130806882
Iteration: 14, Func. Count: 118, Neg. LLF: 153.37865979723188
Iteration: 15, Func. Count: 126, Neg. LLF: 153.37792112017775
Iteration: 16, Func. Count: 134, Neg. LLF: 153.3778299986735
Iteration: 17, Func. Count: 142, Neg. LLF: 153.3778237032698
Iteration: 18, Func. Count: 149, Neg. LLF: 153.3778236920133
Optimization terminated successfully (Exit mode 0)
Current function value: 153.3778237032698
Iterations: 18
Function evaluations: 149
Gradient evaluations: 18
Iteration: 1, Func. Count: 10, Neg. LLF: 1273753.654199691
Iteration: 2, Func. Count: 20, Neg. LLF: 155.64974889485632
Iteration: 3, Func. Count: 30, Neg. LLF: 157.49928242090002
Iteration: 4, Func. Count: 40, Neg. LLF: 155.87657647814552
Iteration: 5, Func. Count: 50, Neg. LLF: 153.79057055099724
Iteration: 6, Func. Count: 59, Neg. LLF: 153.83866742687883
Iteration: 7, Func. Count: 69, Neg. LLF: 153.43820835096338
Iteration: 8, Func. Count: 78, Neg. LLF: 157.0128760806966
Iteration: 9, Func. Count: 88, Neg. LLF: 153.3756139990514
Iteration: 10, Func. Count: 97, Neg. LLF: 153.3565908283393
Iteration: 11, Func. Count: 106, Neg. LLF: 153.34258354417054
Iteration: 12, Func. Count: 115, Neg. LLF: 153.34054347566095
Iteration: 13, Func. Count: 124, Neg. LLF: 153.34027263369404
Iteration: 14, Func. Count: 133, Neg. LLF: 153.34023992068234
Iteration: 15, Func. Count: 142, Neg. LLF: 153.3402357422959
Iteration: 16, Func. Count: 150, Neg. LLF: 153.34023572544555
Optimization terminated successfully (Exit mode 0)
Current function value: 153.3402357422959
Iterations: 16
Function evaluations: 150
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 4461430.202789367
Iteration: 2, Func. Count: 22, Neg. LLF: 159.68551148292352
Iteration: 3, Func. Count: 33, Neg. LLF: 155.81249444813852
Iteration: 4, Func. Count: 44, Neg. LLF: 161.16186746099393
Iteration: 5, Func. Count: 55, Neg. LLF: 154.31831836572155
Iteration: 6, Func. Count: 66, Neg. LLF: 153.6380940348566
Iteration: 7, Func. Count: 76, Neg. LLF: 153.7000919692733
Iteration: 8, Func. Count: 87, Neg. LLF: 153.5605230144821
Iteration: 9, Func. Count: 98, Neg. LLF: 153.7152747738196
Iteration: 10, Func. Count: 109, Neg. LLF: 153.36442040040103
Iteration: 11, Func. Count: 119, Neg. LLF: 153.3352649836519
Iteration: 12, Func. Count: 129, Neg. LLF: 153.3191292538076
Iteration: 13, Func. Count: 139, Neg. LLF: 153.31326316918552
Iteration: 14, Func. Count: 149, Neg. LLF: 153.31261111261378
Iteration: 15, Func. Count: 159, Neg. LLF: 153.31248190373228
Iteration: 16, Func. Count: 169, Neg. LLF: 153.3124550495243
Iteration: 17, Func. Count: 179, Neg. LLF: 153.31245095398742
Iteration: 18, Func. Count: 188, Neg. LLF: 153.31245093409663
Optimization terminated successfully (Exit mode 0)
Current function value: 153.31245095398742
Iterations: 18
Function evaluations: 188
Gradient evaluations: 18
Iteration: 1, Func. Count: 12, Neg. LLF: 6763216.773477634
Iteration: 2, Func. Count: 24, Neg. LLF: 452.3455532300225
Iteration: 3, Func. Count: 36, Neg. LLF: 156.01891257399444
Iteration: 4, Func. Count: 48, Neg. LLF: 157.08072015004532
Iteration: 5, Func. Count: 60, Neg. LLF: 156.18660243364036
Iteration: 6, Func. Count: 72, Neg. LLF: 153.99191368634138
Iteration: 7, Func. Count: 84, Neg. LLF: 153.60338705397396
Iteration: 8, Func. Count: 95, Neg. LLF: 153.48296417765596
Iteration: 9, Func. Count: 106, Neg. LLF: 153.59660078726668
Iteration: 10, Func. Count: 118, Neg. LLF: 153.34866175865636
Iteration: 11, Func. Count: 129, Neg. LLF: 153.33946273941672
Iteration: 12, Func. Count: 140, Neg. LLF: 153.31754051620672
Iteration: 13, Func. Count: 151, Neg. LLF: 153.31390959632216
Iteration: 14, Func. Count: 162, Neg. LLF: 153.31265899702606
Iteration: 15, Func. Count: 173, Neg. LLF: 153.31251596669753
Iteration: 16, Func. Count: 184, Neg. LLF: 153.3124563230733
Iteration: 17, Func. Count: 195, Neg. LLF: 153.31245124121034
Iteration: 18, Func. Count: 205, Neg. LLF: 153.31245126850845
Optimization terminated successfully (Exit mode 0)
Current function value: 153.31245124121034
Iterations: 18
Function evaluations: 205
Gradient evaluations: 18
Iteration: 1, Func. Count: 5, Neg. LLF: 160.23144883127338
Iteration: 2, Func. Count: 9, Neg. LLF: 160.0979191027792
Iteration: 3, Func. Count: 13, Neg. LLF: 159.87755743068786
Iteration: 4, Func. Count: 17, Neg. LLF: 159.84257447495705
Iteration: 5, Func. Count: 21, Neg. LLF: 159.8342839063169
Iteration: 6, Func. Count: 25, Neg. LLF: 159.83382841191786
Iteration: 7, Func. Count: 29, Neg. LLF: 159.83341916326327
Iteration: 8, Func. Count: 33, Neg. LLF: 159.83249193624167
Iteration: 9, Func. Count: 37, Neg. LLF: 159.83151916769373
Iteration: 10, Func. Count: 41, Neg. LLF: 159.8309889446394
Iteration: 11, Func. Count: 45, Neg. LLF: 159.830906941748
Iteration: 12, Func. Count: 49, Neg. LLF: 159.83090256445348
Iteration: 13, Func. Count: 52, Neg. LLF: 159.8309025644462
Optimization terminated successfully (Exit mode 0)
Current function value: 159.83090256445348
Iterations: 13
Function evaluations: 52
Gradient evaluations: 13
Iteration: 1, Func. Count: 6, Neg. LLF: 161.4630385845436
Iteration: 2, Func. Count: 12, Neg. LLF: 217.32689919105079
Iteration: 3, Func. Count: 19, Neg. LLF: 160.51823730621615
Iteration: 4, Func. Count: 25, Neg. LLF: 160.24043759852273
Iteration: 5, Func. Count: 30, Neg. LLF: 160.22901307507067
Iteration: 6, Func. Count: 35, Neg. LLF: 160.19454139611508
Iteration: 7, Func. Count: 40, Neg. LLF: 160.17722619931823
Iteration: 8, Func. Count: 45, Neg. LLF: 160.17298639841422
Iteration: 9, Func. Count: 50, Neg. LLF: 160.1726606762561
Iteration: 10, Func. Count: 55, Neg. LLF: 160.1725861467253
Iteration: 11, Func. Count: 60, Neg. LLF: 160.17258537502198
Optimization terminated successfully (Exit mode 0)
Current function value: 160.17258537502198
Iterations: 11
Function evaluations: 60
Gradient evaluations: 11
Iteration: 1, Func. Count: 7, Neg. LLF: 177.75922893978364
Iteration: 2, Func. Count: 14, Neg. LLF: 165.7763801163151
Iteration: 3, Func. Count: 21, Neg. LLF: 160.4529123941055
Iteration: 4, Func. Count: 28, Neg. LLF: 161.20691349031236
Iteration: 5, Func. Count: 35, Neg. LLF: 162.7854636268416
Iteration: 6, Func. Count: 42, Neg. LLF: 160.08192331002616
Iteration: 7, Func. Count: 48, Neg. LLF: 160.08126948670832
Iteration: 8, Func. Count: 54, Neg. LLF: 160.0806235742849
Iteration: 9, Func. Count: 60, Neg. LLF: 160.07938545329972
Iteration: 10, Func. Count: 66, Neg. LLF: 160.0776569802443
Iteration: 11, Func. Count: 72, Neg. LLF: 160.07645638575946
Iteration: 12, Func. Count: 78, Neg. LLF: 160.0761230492379
Iteration: 13, Func. Count: 84, Neg. LLF: 160.07610248386274
Iteration: 14, Func. Count: 89, Neg. LLF: 160.07610248384785
Optimization terminated successfully (Exit mode 0)
Current function value: 160.07610248386274
Iterations: 14
Function evaluations: 89
Gradient evaluations: 14
Iteration: 1, Func. Count: 8, Neg. LLF: 161.93778235505619
Iteration: 2, Func. Count: 16, Neg. LLF: 161.95984107421728
Iteration: 3, Func. Count: 24, Neg. LLF: 160.43629402413026
Iteration: 4, Func. Count: 32, Neg. LLF: 159.6884997165143
Iteration: 5, Func. Count: 40, Neg. LLF: 161.06304004429654
Iteration: 6, Func. Count: 48, Neg. LLF: 159.46930018307592
Iteration: 7, Func. Count: 55, Neg. LLF: 159.46210665205547
Iteration: 8, Func. Count: 62, Neg. LLF: 159.4299034151557
Iteration: 9, Func. Count: 69, Neg. LLF: 159.38959307557357
Iteration: 10, Func. Count: 76, Neg. LLF: 159.33134586275506
Iteration: 11, Func. Count: 83, Neg. LLF: 159.29648787282596
Iteration: 12, Func. Count: 90, Neg. LLF: 159.28428370657454
Iteration: 13, Func. Count: 97, Neg. LLF: 159.283902944431
Iteration: 14, Func. Count: 104, Neg. LLF: 159.2837500328485
Iteration: 15, Func. Count: 111, Neg. LLF: 159.28369821429587
Iteration: 16, Func. Count: 118, Neg. LLF: 159.28369163571287
Iteration: 17, Func. Count: 125, Neg. LLF: 159.28369113341233
Optimization terminated successfully (Exit mode 0)
Current function value: 159.28369113341233
Iterations: 17
Function evaluations: 125
Gradient evaluations: 17
Iteration: 1, Func. Count: 9, Neg. LLF: 161.84184387183132
Iteration: 2, Func. Count: 18, Neg. LLF: 161.8810385944632
Iteration: 3, Func. Count: 27, Neg. LLF: 160.24845522474814
Iteration: 4, Func. Count: 36, Neg. LLF: 159.6700505643012
Iteration: 5, Func. Count: 44, Neg. LLF: 172.20832378194538
Iteration: 6, Func. Count: 54, Neg. LLF: 159.48893395677192
Iteration: 7, Func. Count: 62, Neg. LLF: 159.46519428120843
Iteration: 8, Func. Count: 70, Neg. LLF: 159.45670510554365
Iteration: 9, Func. Count: 78, Neg. LLF: 159.44271543253458
Iteration: 10, Func. Count: 86, Neg. LLF: 159.41464140918401
Iteration: 11, Func. Count: 94, Neg. LLF: 159.37039484412452
Iteration: 12, Func. Count: 102, Neg. LLF: 159.33467593967387
Iteration: 13, Func. Count: 110, Neg. LLF: 159.30180316654938
Iteration: 14, Func. Count: 118, Neg. LLF: 159.28446314594584
Iteration: 15, Func. Count: 126, Neg. LLF: 159.28376836764647
Iteration: 16, Func. Count: 134, Neg. LLF: 159.28370476788737
Iteration: 17, Func. Count: 142, Neg. LLF: 159.28369126618145
Iteration: 18, Func. Count: 149, Neg. LLF: 159.28369133072943
Optimization terminated successfully (Exit mode 0)
Current function value: 159.28369126618145
Iterations: 18
Function evaluations: 149
Gradient evaluations: 18
Iteration: 1, Func. Count: 6, Neg. LLF: 160.6399446377938
Iteration: 2, Func. Count: 12, Neg. LLF: 159.43315721639854
Iteration: 3, Func. Count: 18, Neg. LLF: 161.33168589560458
Iteration: 4, Func. Count: 24, Neg. LLF: 157.9631918752392
Iteration: 5, Func. Count: 29, Neg. LLF: 157.9339067302503
Iteration: 6, Func. Count: 34, Neg. LLF: 157.91651864082004
Iteration: 7, Func. Count: 39, Neg. LLF: 157.9111593571377
Iteration: 8, Func. Count: 44, Neg. LLF: 157.91052593485912
Iteration: 9, Func. Count: 49, Neg. LLF: 157.9103922393058
Iteration: 10, Func. Count: 54, Neg. LLF: 157.90975538820857
Iteration: 11, Func. Count: 59, Neg. LLF: 157.90928615134052
Iteration: 12, Func. Count: 64, Neg. LLF: 157.90901566542746
Iteration: 13, Func. Count: 69, Neg. LLF: 157.90896713438818
Iteration: 14, Func. Count: 74, Neg. LLF: 157.9089644805285
Iteration: 15, Func. Count: 78, Neg. LLF: 157.90896448052675
Optimization terminated successfully (Exit mode 0)
Current function value: 157.9089644805285
Iterations: 15
Function evaluations: 78
Gradient evaluations: 15
Iteration: 1, Func. Count: 7, Neg. LLF: 1859.0488281267405
Iteration: 2, Func. Count: 14, Neg. LLF: 157.70783325194714
Iteration: 3, Func. Count: 21, Neg. LLF: 155.34425041159085
Iteration: 4, Func. Count: 27, Neg. LLF: 155.3355539575733
Iteration: 5, Func. Count: 33, Neg. LLF: 155.32914049343165
Iteration: 6, Func. Count: 39, Neg. LLF: 155.32880927646787
Iteration: 7, Func. Count: 45, Neg. LLF: 155.3287838154071
Iteration: 8, Func. Count: 50, Neg. LLF: 155.32878373241923
Optimization terminated successfully (Exit mode 0)
Current function value: 155.3287838154071
Iterations: 8
Function evaluations: 50
Gradient evaluations: 8
Iteration: 1, Func. Count: 8, Neg. LLF: 8613925.025182238
Iteration: 2, Func. Count: 16, Neg. LLF: 156.51232743873982
Iteration: 3, Func. Count: 24, Neg. LLF: 155.45571569262202
Iteration: 4, Func. Count: 31, Neg. LLF: 155.34868125961057
Iteration: 5, Func. Count: 38, Neg. LLF: 155.33520251956034
Iteration: 6, Func. Count: 45, Neg. LLF: 155.32960559577535
Iteration: 7, Func. Count: 52, Neg. LLF: 155.32882449948215
Iteration: 8, Func. Count: 59, Neg. LLF: 155.32878887661298
Iteration: 9, Func. Count: 66, Neg. LLF: 155.32878387352673
Iteration: 10, Func. Count: 72, Neg. LLF: 155.32878379769068
Optimization terminated successfully (Exit mode 0)
Current function value: 155.32878387352673
Iterations: 10
Function evaluations: 72
Gradient evaluations: 10
Iteration: 1, Func. Count: 9, Neg. LLF: 8590740.499322275
Iteration: 2, Func. Count: 18, Neg. LLF: 155.93658711874423
Iteration: 3, Func. Count: 26, Neg. LLF: 155.4312768120544
Iteration: 4, Func. Count: 34, Neg. LLF: 155.80798297827764
Iteration: 5, Func. Count: 43, Neg. LLF: 155.33992765030274
Iteration: 6, Func. Count: 51, Neg. LLF: 155.3189464085554
Iteration: 7, Func. Count: 59, Neg. LLF: 155.31487660123634
Iteration: 8, Func. Count: 67, Neg. LLF: 155.31220624452868
Iteration: 9, Func. Count: 75, Neg. LLF: 155.3116009278791
Iteration: 10, Func. Count: 83, Neg. LLF: 155.3106894937253
Iteration: 11, Func. Count: 91, Neg. LLF: 155.3106856544807
Iteration: 12, Func. Count: 98, Neg. LLF: 155.31068559616722
Optimization terminated successfully (Exit mode 0)
Current function value: 155.3106856544807
Iterations: 12
Function evaluations: 98
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 218.61502090960406
Iteration: 2, Func. Count: 20, Neg. LLF: 157.07243287497926
Iteration: 3, Func. Count: 30, Neg. LLF: 156.3150682407627
Iteration: 4, Func. Count: 40, Neg. LLF: 161.87030689688743
Iteration: 5, Func. Count: 50, Neg. LLF: 155.6639895727177
Iteration: 6, Func. Count: 60, Neg. LLF: 155.5415510374496
Iteration: 7, Func. Count: 69, Neg. LLF: 155.4816941111005
Iteration: 8, Func. Count: 78, Neg. LLF: 155.4517562777543
Iteration: 9, Func. Count: 87, Neg. LLF: 155.3315509540492
Iteration: 10, Func. Count: 96, Neg. LLF: 155.3208076630129
Iteration: 11, Func. Count: 105, Neg. LLF: 155.31158062212177
Iteration: 12, Func. Count: 114, Neg. LLF: 155.31108208828462
Iteration: 13, Func. Count: 123, Neg. LLF: 155.3106869534654
Iteration: 14, Func. Count: 132, Neg. LLF: 155.31068573689544
Iteration: 15, Func. Count: 140, Neg. LLF: 155.31068569137224
Optimization terminated successfully (Exit mode 0)
Current function value: 155.31068573689544
Iterations: 15
Function evaluations: 140
Gradient evaluations: 15
Iteration: 1, Func. Count: 7, Neg. LLF: 162.55130608553682
Iteration: 2, Func. Count: 14, Neg. LLF: 158.70391552055574
Iteration: 3, Func. Count: 22, Neg. LLF: 157.8951850459772
Iteration: 4, Func. Count: 29, Neg. LLF: 158.4415615223718
Iteration: 5, Func. Count: 36, Neg. LLF: 157.2201272455023
Iteration: 6, Func. Count: 42, Neg. LLF: 157.19094162090312
Iteration: 7, Func. Count: 48, Neg. LLF: 157.16522435078713
Iteration: 8, Func. Count: 54, Neg. LLF: 157.14312707150336
Iteration: 9, Func. Count: 60, Neg. LLF: 157.0480904894309
Iteration: 10, Func. Count: 66, Neg. LLF: 156.97919543580784
Iteration: 11, Func. Count: 72, Neg. LLF: 156.96762440362932
Iteration: 12, Func. Count: 78, Neg. LLF: 156.96373710823556
Iteration: 13, Func. Count: 84, Neg. LLF: 156.96281067321084
Iteration: 14, Func. Count: 90, Neg. LLF: 156.96280477939763
Iteration: 15, Func. Count: 95, Neg. LLF: 156.96280477937898
Optimization terminated successfully (Exit mode 0)
Current function value: 156.96280477939763
Iterations: 15
Function evaluations: 95
Gradient evaluations: 15
Iteration: 1, Func. Count: 8, Neg. LLF: 1318.7598663512215
Iteration: 2, Func. Count: 16, Neg. LLF: 157.34273798248506
Iteration: 3, Func. Count: 24, Neg. LLF: 155.18416834895947
Iteration: 4, Func. Count: 31, Neg. LLF: 155.14700928678224
Iteration: 5, Func. Count: 38, Neg. LLF: 155.1186661927323
Iteration: 6, Func. Count: 45, Neg. LLF: 155.11280281921276
Iteration: 7, Func. Count: 52, Neg. LLF: 155.11121363124866
Iteration: 8, Func. Count: 59, Neg. LLF: 155.11095246132012
Iteration: 9, Func. Count: 66, Neg. LLF: 155.11090795993306
Iteration: 10, Func. Count: 72, Neg. LLF: 155.11090788051825
Optimization terminated successfully (Exit mode 0)
Current function value: 155.11090795993306
Iterations: 10
Function evaluations: 72
Gradient evaluations: 10
Iteration: 1, Func. Count: 9, Neg. LLF: 2663381.5524944654
Iteration: 2, Func. Count: 18, Neg. LLF: 156.07932596614884
Iteration: 3, Func. Count: 27, Neg. LLF: 154.76776685762277
Iteration: 4, Func. Count: 35, Neg. LLF: 155.49429366555307
Iteration: 5, Func. Count: 44, Neg. LLF: 154.78150577341117
Iteration: 6, Func. Count: 53, Neg. LLF: 154.5094652866531
Iteration: 7, Func. Count: 61, Neg. LLF: 154.49819497779004
Iteration: 8, Func. Count: 69, Neg. LLF: 154.49343745889396
Iteration: 9, Func. Count: 77, Neg. LLF: 154.4908361770991
Iteration: 10, Func. Count: 85, Neg. LLF: 154.49037257601663
Iteration: 11, Func. Count: 93, Neg. LLF: 154.4903378795216
Iteration: 12, Func. Count: 100, Neg. LLF: 154.49033783415598
Optimization terminated successfully (Exit mode 0)
Current function value: 154.4903378795216
Iterations: 12
Function evaluations: 100
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 8613450.162149811
Iteration: 2, Func. Count: 20, Neg. LLF: 156.6054377115694
Iteration: 3, Func. Count: 30, Neg. LLF: 155.30071047375588
Iteration: 4, Func. Count: 39, Neg. LLF: 154.82323216231944
Iteration: 5, Func. Count: 48, Neg. LLF: 171.44545636872303
Iteration: 6, Func. Count: 58, Neg. LLF: 154.60099935297345
Iteration: 7, Func. Count: 67, Neg. LLF: 154.5058347487922
Iteration: 8, Func. Count: 76, Neg. LLF: 154.4994284942357
Iteration: 9, Func. Count: 85, Neg. LLF: 154.4939774947195
Iteration: 10, Func. Count: 94, Neg. LLF: 154.49097837545304
Iteration: 11, Func. Count: 103, Neg. LLF: 154.49040417461856
Iteration: 12, Func. Count: 112, Neg. LLF: 154.49034089006736
Iteration: 13, Func. Count: 121, Neg. LLF: 154.49033802020375
Iteration: 14, Func. Count: 129, Neg. LLF: 154.49033799764675
Optimization terminated successfully (Exit mode 0)
Current function value: 154.49033802020375
Iterations: 14
Function evaluations: 129
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 173.23201894257485
Iteration: 2, Func. Count: 22, Neg. LLF: 156.37735595840985
Iteration: 3, Func. Count: 33, Neg. LLF: 157.3241405730241
Iteration: 4, Func. Count: 44, Neg. LLF: 168.0190900891365
Iteration: 5, Func. Count: 55, Neg. LLF: 155.3870528113483
Iteration: 6, Func. Count: 65, Neg. LLF: 154.87644467964296
Iteration: 7, Func. Count: 75, Neg. LLF: 154.92585349595774
Iteration: 8, Func. Count: 86, Neg. LLF: 158.0269103460568
Iteration: 9, Func. Count: 98, Neg. LLF: 154.62473217429516
Iteration: 10, Func. Count: 108, Neg. LLF: 154.57385349926275
Iteration: 11, Func. Count: 118, Neg. LLF: 154.53443689390573
Iteration: 12, Func. Count: 128, Neg. LLF: 154.51755216606918
Iteration: 13, Func. Count: 138, Neg. LLF: 154.49331249281602
Iteration: 14, Func. Count: 148, Neg. LLF: 154.49071366231965
Iteration: 15, Func. Count: 158, Neg. LLF: 154.4903588864375
Iteration: 16, Func. Count: 168, Neg. LLF: 154.49033960272055
Iteration: 17, Func. Count: 178, Neg. LLF: 154.49033788069258
Iteration: 18, Func. Count: 187, Neg. LLF: 154.4903378739925
Optimization terminated successfully (Exit mode 0)
Current function value: 154.49033788069258
Iterations: 18
Function evaluations: 187
Gradient evaluations: 18
Iteration: 1, Func. Count: 8, Neg. LLF: 162.32611660263035
Iteration: 2, Func. Count: 16, Neg. LLF: 158.89501618289228
Iteration: 3, Func. Count: 25, Neg. LLF: 158.29703850200866
Iteration: 4, Func. Count: 33, Neg. LLF: 164.5515863030108
Iteration: 5, Func. Count: 41, Neg. LLF: 158.06237071360516
Iteration: 6, Func. Count: 49, Neg. LLF: 157.3230339696966
Iteration: 7, Func. Count: 57, Neg. LLF: 157.09003811765115
Iteration: 8, Func. Count: 64, Neg. LLF: 157.03565429648972
Iteration: 9, Func. Count: 71, Neg. LLF: 156.9580779974722
Iteration: 10, Func. Count: 78, Neg. LLF: 156.8348981976821
Iteration: 11, Func. Count: 85, Neg. LLF: 156.73373855378418
Iteration: 12, Func. Count: 92, Neg. LLF: 156.70486721838915
Iteration: 13, Func. Count: 99, Neg. LLF: 156.69896394572777
Iteration: 14, Func. Count: 106, Neg. LLF: 156.69750005184616
Iteration: 15, Func. Count: 113, Neg. LLF: 156.6974944532837
Iteration: 16, Func. Count: 119, Neg. LLF: 156.69749445295847
Optimization terminated successfully (Exit mode 0)
Current function value: 156.6974944532837
Iterations: 16
Function evaluations: 119
Gradient evaluations: 16
Iteration: 1, Func. Count: 9, Neg. LLF: 2723.2927803927278
Iteration: 2, Func. Count: 18, Neg. LLF: 158.42131643281542
Iteration: 3, Func. Count: 27, Neg. LLF: 155.09285734665073
Iteration: 4, Func. Count: 35, Neg. LLF: 155.1192002840342
Iteration: 5, Func. Count: 44, Neg. LLF: 155.20929709985748
Iteration: 6, Func. Count: 53, Neg. LLF: 155.03545453310142
Iteration: 7, Func. Count: 61, Neg. LLF: 155.03469032828312
Iteration: 8, Func. Count: 69, Neg. LLF: 155.0345565420481
Iteration: 9, Func. Count: 77, Neg. LLF: 155.0345128876758
Iteration: 10, Func. Count: 85, Neg. LLF: 155.0345089867728
Iteration: 11, Func. Count: 92, Neg. LLF: 155.03450892057575
Optimization terminated successfully (Exit mode 0)
Current function value: 155.0345089867728
Iterations: 11
Function evaluations: 92
Gradient evaluations: 11
Iteration: 1, Func. Count: 10, Neg. LLF: 2666067.1737602632
Iteration: 2, Func. Count: 20, Neg. LLF: 156.217570484403
Iteration: 3, Func. Count: 30, Neg. LLF: 155.05648627753368
Iteration: 4, Func. Count: 39, Neg. LLF: 154.9638222592226
Iteration: 5, Func. Count: 48, Neg. LLF: 164.97260676285788
Iteration: 6, Func. Count: 58, Neg. LLF: 154.6157457252071
Iteration: 7, Func. Count: 67, Neg. LLF: 154.4546238686861
Iteration: 8, Func. Count: 76, Neg. LLF: 154.51477731306193
Iteration: 9, Func. Count: 86, Neg. LLF: 154.40558556750196
Iteration: 10, Func. Count: 95, Neg. LLF: 154.38963771626442
Iteration: 11, Func. Count: 104, Neg. LLF: 154.37957633068694
Iteration: 12, Func. Count: 113, Neg. LLF: 154.3763236039888
Iteration: 13, Func. Count: 122, Neg. LLF: 154.37506232205422
Iteration: 14, Func. Count: 131, Neg. LLF: 154.37469295248872
Iteration: 15, Func. Count: 140, Neg. LLF: 154.3746911061894
Iteration: 16, Func. Count: 148, Neg. LLF: 154.3746910751704
Optimization terminated successfully (Exit mode 0)
Current function value: 154.3746911061894
Iterations: 16
Function evaluations: 148
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 8605537.799692703
Iteration: 2, Func. Count: 22, Neg. LLF: 156.5346071594834
Iteration: 3, Func. Count: 33, Neg. LLF: 155.38599704844935
Iteration: 4, Func. Count: 43, Neg. LLF: 154.66545633778432
Iteration: 5, Func. Count: 53, Neg. LLF: 160.70066759679617
Iteration: 6, Func. Count: 64, Neg. LLF: 154.5116345805973
Iteration: 7, Func. Count: 74, Neg. LLF: 154.48165734983087
Iteration: 8, Func. Count: 85, Neg. LLF: 154.41917853606842
Iteration: 9, Func. Count: 95, Neg. LLF: 154.39562894222638
Iteration: 10, Func. Count: 105, Neg. LLF: 154.38297112679376
Iteration: 11, Func. Count: 115, Neg. LLF: 154.38127007543545
Iteration: 12, Func. Count: 125, Neg. LLF: 154.3751362449466
Iteration: 13, Func. Count: 135, Neg. LLF: 154.37475045110685
Iteration: 14, Func. Count: 145, Neg. LLF: 154.37469243590212
Iteration: 15, Func. Count: 155, Neg. LLF: 154.3746909710208
Iteration: 16, Func. Count: 164, Neg. LLF: 154.37469095221994
Optimization terminated successfully (Exit mode 0)
Current function value: 154.3746909710208
Iterations: 16
Function evaluations: 164
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 171.85057243394462
Iteration: 2, Func. Count: 24, Neg. LLF: 155.98213278716565
Iteration: 3, Func. Count: 35, Neg. LLF: 156.4555042381785
Iteration: 4, Func. Count: 47, Neg. LLF: 156.2326658999221
Iteration: 5, Func. Count: 59, Neg. LLF: 171.649946710327
Iteration: 6, Func. Count: 72, Neg. LLF: 155.4556819336045
Iteration: 7, Func. Count: 84, Neg. LLF: 155.28174928098719
Iteration: 8, Func. Count: 95, Neg. LLF: 155.32912541180187
Iteration: 9, Func. Count: 107, Neg. LLF: 155.24186165469234
Iteration: 10, Func. Count: 118, Neg. LLF: 155.14794878816988
Iteration: 11, Func. Count: 129, Neg. LLF: 155.38957186740475
Iteration: 12, Func. Count: 141, Neg. LLF: 156.08295967332512
Iteration: 13, Func. Count: 153, Neg. LLF: 156.6712299703878
Iteration: 14, Func. Count: 165, Neg. LLF: 156.70360881926425
Iteration: 15, Func. Count: 177, Neg. LLF: 156.08064916142033
Iteration: 16, Func. Count: 189, Neg. LLF: 155.6063545964148
Iteration: 17, Func. Count: 201, Neg. LLF: 154.68676686014865
Iteration: 18, Func. Count: 213, Neg. LLF: 154.51512645392177
Iteration: 19, Func. Count: 224, Neg. LLF: 154.55251248200113
Iteration: 20, Func. Count: 236, Neg. LLF: 154.42159184147283
Iteration: 21, Func. Count: 247, Neg. LLF: 154.41252813357275
Iteration: 22, Func. Count: 258, Neg. LLF: 154.3955439016148
Iteration: 23, Func. Count: 269, Neg. LLF: 154.38624746190348
Iteration: 24, Func. Count: 280, Neg. LLF: 154.37803472865545
Iteration: 25, Func. Count: 291, Neg. LLF: 154.37504891453708
Iteration: 26, Func. Count: 302, Neg. LLF: 154.37469538116704
Iteration: 27, Func. Count: 313, Neg. LLF: 154.37469108772018
Iteration: 28, Func. Count: 323, Neg. LLF: 154.37469109858742
Optimization terminated successfully (Exit mode 0)
Current function value: 154.37469108772018
Iterations: 28
Function evaluations: 323
Gradient evaluations: 28
Iteration: 1, Func. Count: 9, Neg. LLF: 158.70996949601178
Iteration: 2, Func. Count: 18, Neg. LLF: 157.43782767252685
Iteration: 3, Func. Count: 27, Neg. LLF: 156.03369184499113
Iteration: 4, Func. Count: 37, Neg. LLF: 155.78060437407206
Iteration: 5, Func. Count: 46, Neg. LLF: 155.72109306779348
Iteration: 6, Func. Count: 55, Neg. LLF: 155.16066962253146
Iteration: 7, Func. Count: 64, Neg. LLF: 154.53244262651404
Iteration: 8, Func. Count: 72, Neg. LLF: 154.41735955372977
Iteration: 9, Func. Count: 80, Neg. LLF: 154.18363404647644
Iteration: 10, Func. Count: 88, Neg. LLF: 153.9948658802732
Iteration: 11, Func. Count: 96, Neg. LLF: 154.38104225297235
Iteration: 12, Func. Count: 105, Neg. LLF: 154.07689098903154
Iteration: 13, Func. Count: 114, Neg. LLF: 153.82340231082006
Iteration: 14, Func. Count: 122, Neg. LLF: 153.76325812613
Iteration: 15, Func. Count: 130, Neg. LLF: 153.75410632714875
Iteration: 16, Func. Count: 138, Neg. LLF: 153.75313335824583
Iteration: 17, Func. Count: 146, Neg. LLF: 153.7531182439218
Iteration: 18, Func. Count: 154, Neg. LLF: 153.7531167489094
Iteration: 19, Func. Count: 161, Neg. LLF: 153.7531167487109
Optimization terminated successfully (Exit mode 0)
Current function value: 153.7531167489094
Iterations: 19
Function evaluations: 161
Gradient evaluations: 19
Iteration: 1, Func. Count: 10, Neg. LLF: 643881.8354042561
Iteration: 2, Func. Count: 20, Neg. LLF: 157.94783756780902
Iteration: 3, Func. Count: 30, Neg. LLF: 156.312511165743
Iteration: 4, Func. Count: 40, Neg. LLF: 154.0095518540011
Iteration: 5, Func. Count: 50, Neg. LLF: 154.03803614737882
Iteration: 6, Func. Count: 60, Neg. LLF: 160.55383470792773
Iteration: 7, Func. Count: 70, Neg. LLF: 153.4914852344399
Iteration: 8, Func. Count: 79, Neg. LLF: 153.45019145255694
Iteration: 9, Func. Count: 88, Neg. LLF: 153.4239015694324
Iteration: 10, Func. Count: 97, Neg. LLF: 153.40748421598425
Iteration: 11, Func. Count: 106, Neg. LLF: 153.39164228644918
Iteration: 12, Func. Count: 115, Neg. LLF: 153.3772447937662
Iteration: 13, Func. Count: 124, Neg. LLF: 155.43436875547496
Iteration: 14, Func. Count: 134, Neg. LLF: 155.2381528097721
Iteration: 15, Func. Count: 144, Neg. LLF: 153.3768268287647
Iteration: 16, Func. Count: 154, Neg. LLF: 153.35535977931704
Iteration: 17, Func. Count: 164, Neg. LLF: 153.34498358018365
Iteration: 18, Func. Count: 173, Neg. LLF: 153.34183459536231
Iteration: 19, Func. Count: 182, Neg. LLF: 153.3369829008136
Iteration: 20, Func. Count: 191, Neg. LLF: 153.33499706493035
Iteration: 21, Func. Count: 200, Neg. LLF: 153.33465495200394
Iteration: 22, Func. Count: 209, Neg. LLF: 153.33459395397549
Iteration: 23, Func. Count: 218, Neg. LLF: 153.33457571069366
Iteration: 24, Func. Count: 226, Neg. LLF: 153.33457570299694
Optimization terminated successfully (Exit mode 0)
Current function value: 153.33457571069366
Iterations: 24
Function evaluations: 226
Gradient evaluations: 24
Iteration: 1, Func. Count: 11, Neg. LLF: 1259412.6227287643
Iteration: 2, Func. Count: 22, Neg. LLF: 154.95673260401026
Iteration: 3, Func. Count: 32, Neg. LLF: 180.27615358576523
Iteration: 4, Func. Count: 44, Neg. LLF: 161.2840773574379
Iteration: 5, Func. Count: 55, Neg. LLF: 258.2392971516495
Iteration: 6, Func. Count: 66, Neg. LLF: 154.14843293829622
Iteration: 7, Func. Count: 77, Neg. LLF: 153.71356632175562
Iteration: 8, Func. Count: 87, Neg. LLF: 157.51684730043834
Iteration: 9, Func. Count: 98, Neg. LLF: 153.76682434826316
Iteration: 10, Func. Count: 109, Neg. LLF: 153.40519727940273
Iteration: 11, Func. Count: 119, Neg. LLF: 153.3716385185824
Iteration: 12, Func. Count: 129, Neg. LLF: 153.52164495763714
Iteration: 13, Func. Count: 140, Neg. LLF: 153.33511615973535
Iteration: 14, Func. Count: 150, Neg. LLF: 153.31015711442976
Iteration: 15, Func. Count: 160, Neg. LLF: 153.30280571895307
Iteration: 16, Func. Count: 170, Neg. LLF: 153.2997869596926
Iteration: 17, Func. Count: 180, Neg. LLF: 153.2987377940662
Iteration: 18, Func. Count: 190, Neg. LLF: 153.29827461406342
Iteration: 19, Func. Count: 200, Neg. LLF: 153.2981559246562
Iteration: 20, Func. Count: 210, Neg. LLF: 153.2981253452341
Iteration: 21, Func. Count: 220, Neg. LLF: 153.2981229446902
Iteration: 22, Func. Count: 229, Neg. LLF: 153.29812293138292
Optimization terminated successfully (Exit mode 0)
Current function value: 153.2981229446902
Iterations: 22
Function evaluations: 229
Gradient evaluations: 22
Iteration: 1, Func. Count: 12, Neg. LLF: 199.01027246476053
Iteration: 2, Func. Count: 24, Neg. LLF: 195.28253402623253
Iteration: 3, Func. Count: 36, Neg. LLF: 207.49288657902574
Iteration: 4, Func. Count: 48, Neg. LLF: 169.7854810938273
Iteration: 5, Func. Count: 60, Neg. LLF: 162.08254580859617
Iteration: 6, Func. Count: 72, Neg. LLF: 153.82659116524584
Iteration: 7, Func. Count: 83, Neg. LLF: 153.62021780088824
Iteration: 8, Func. Count: 94, Neg. LLF: 155.14055484648904
Iteration: 9, Func. Count: 106, Neg. LLF: 155.82961726040924
Iteration: 10, Func. Count: 118, Neg. LLF: 153.4152255616716
Iteration: 11, Func. Count: 129, Neg. LLF: 153.4871767167036
Iteration: 12, Func. Count: 141, Neg. LLF: 153.33877404121435
Iteration: 13, Func. Count: 153, Neg. LLF: 153.36729162700786
Iteration: 14, Func. Count: 165, Neg. LLF: 153.30105550739654
Iteration: 15, Func. Count: 177, Neg. LLF: 153.28836523540423
Iteration: 16, Func. Count: 188, Neg. LLF: 153.27794891730366
Iteration: 17, Func. Count: 199, Neg. LLF: 153.26722526473333
Iteration: 18, Func. Count: 210, Neg. LLF: 153.25989572717828
Iteration: 19, Func. Count: 221, Neg. LLF: 153.25706037490335
Iteration: 20, Func. Count: 232, Neg. LLF: 153.2567912893534
Iteration: 21, Func. Count: 243, Neg. LLF: 153.25674053505404
Iteration: 22, Func. Count: 254, Neg. LLF: 153.25673398535753
Iteration: 23, Func. Count: 264, Neg. LLF: 153.25673396779692
Optimization terminated successfully (Exit mode 0)
Current function value: 153.25673398535753
Iterations: 23
Function evaluations: 264
Gradient evaluations: 23
Iteration: 1, Func. Count: 13, Neg. LLF: 199.24343800097938
Iteration: 2, Func. Count: 26, Neg. LLF: 225.0076141844527
Iteration: 3, Func. Count: 39, Neg. LLF: 177.32477273333282
Iteration: 4, Func. Count: 52, Neg. LLF: 154.58360708302212
Iteration: 5, Func. Count: 65, Neg. LLF: 157.24882878596742
Iteration: 6, Func. Count: 78, Neg. LLF: 156.39007065677407
Iteration: 7, Func. Count: 91, Neg. LLF: 154.23391780586329
Iteration: 8, Func. Count: 104, Neg. LLF: 153.85423288316176
Iteration: 9, Func. Count: 117, Neg. LLF: 153.89755746526737
Iteration: 10, Func. Count: 130, Neg. LLF: 153.41876259313426
Iteration: 11, Func. Count: 143, Neg. LLF: 153.36713321688467
Iteration: 12, Func. Count: 156, Neg. LLF: 153.3074254305396
Iteration: 13, Func. Count: 168, Neg. LLF: 153.29186166874578
Iteration: 14, Func. Count: 180, Neg. LLF: 153.28679898851274
Iteration: 15, Func. Count: 192, Neg. LLF: 153.2788544043038
Iteration: 16, Func. Count: 204, Neg. LLF: 153.26116707583253
Iteration: 17, Func. Count: 216, Neg. LLF: 153.25812817463645
Iteration: 18, Func. Count: 228, Neg. LLF: 153.25676064266526
Iteration: 19, Func. Count: 240, Neg. LLF: 153.25673705741903
Iteration: 20, Func. Count: 252, Neg. LLF: 153.25673415401394
Iteration: 21, Func. Count: 263, Neg. LLF: 153.25673418629435
Optimization terminated successfully (Exit mode 0)
Current function value: 153.25673415401394
Iterations: 21
Function evaluations: 263
Gradient evaluations: 21
Iteration: 1, Func. Count: 6, Neg. LLF: 161.55825146500877
Iteration: 2, Func. Count: 11, Neg. LLF: 162.2769308168021
Iteration: 3, Func. Count: 17, Neg. LLF: 159.94807299278114
Iteration: 4, Func. Count: 22, Neg. LLF: 166.11092530392344
Iteration: 5, Func. Count: 28, Neg. LLF: 159.81708393439908
Iteration: 6, Func. Count: 33, Neg. LLF: 159.8047347394343
Iteration: 7, Func. Count: 38, Neg. LLF: 159.80415541688902
Iteration: 8, Func. Count: 43, Neg. LLF: 159.80229956166903
Iteration: 9, Func. Count: 48, Neg. LLF: 159.79742484525732
Iteration: 10, Func. Count: 53, Neg. LLF: 159.79105194758256
Iteration: 11, Func. Count: 58, Neg. LLF: 159.7864043266184
Iteration: 12, Func. Count: 63, Neg. LLF: 159.7836988134784
Iteration: 13, Func. Count: 68, Neg. LLF: 159.78329573373352
Iteration: 14, Func. Count: 73, Neg. LLF: 159.7832942643681
Iteration: 15, Func. Count: 77, Neg. LLF: 159.78329426437048
Optimization terminated successfully (Exit mode 0)
Current function value: 159.7832942643681
Iterations: 15
Function evaluations: 77
Gradient evaluations: 15
Iteration: 1, Func. Count: 7, Neg. LLF: 165.48634785456142
Iteration: 2, Func. Count: 14, Neg. LLF: 177.87516538137388
Iteration: 3, Func. Count: 21, Neg. LLF: 160.63342470078163
Iteration: 4, Func. Count: 28, Neg. LLF: 160.43302843135305
Iteration: 5, Func. Count: 35, Neg. LLF: 160.23939236868762
Iteration: 6, Func. Count: 41, Neg. LLF: 160.22880805071384
Iteration: 7, Func. Count: 47, Neg. LLF: 160.21668660781702
Iteration: 8, Func. Count: 53, Neg. LLF: 160.19766886110924
Iteration: 9, Func. Count: 59, Neg. LLF: 160.18053010299676
Iteration: 10, Func. Count: 65, Neg. LLF: 160.17525429285897
Iteration: 11, Func. Count: 71, Neg. LLF: 160.17271006101078
Iteration: 12, Func. Count: 77, Neg. LLF: 160.17258837936333
Iteration: 13, Func. Count: 83, Neg. LLF: 160.1725858037376
Iteration: 14, Func. Count: 88, Neg. LLF: 160.1725858035397
Optimization terminated successfully (Exit mode 0)
Current function value: 160.1725858037376
Iterations: 14
Function evaluations: 88
Gradient evaluations: 14
Iteration: 1, Func. Count: 8, Neg. LLF: 178.39848328093996
Iteration: 2, Func. Count: 16, Neg. LLF: 168.59157483059028
Iteration: 3, Func. Count: 24, Neg. LLF: 161.54194647577455
Iteration: 4, Func. Count: 32, Neg. LLF: 162.37052851945387
Iteration: 5, Func. Count: 40, Neg. LLF: 161.79879356108867
Iteration: 6, Func. Count: 48, Neg. LLF: 160.0897916577768
Iteration: 7, Func. Count: 55, Neg. LLF: 160.0810446330688
Iteration: 8, Func. Count: 62, Neg. LLF: 160.07970602425118
Iteration: 9, Func. Count: 69, Neg. LLF: 160.07922910281803
Iteration: 10, Func. Count: 76, Neg. LLF: 160.07875057571962
Iteration: 11, Func. Count: 83, Neg. LLF: 160.07781873985496
Iteration: 12, Func. Count: 90, Neg. LLF: 160.0767921881054
Iteration: 13, Func. Count: 97, Neg. LLF: 160.07626626392684
Iteration: 14, Func. Count: 104, Neg. LLF: 160.07611491525083
Iteration: 15, Func. Count: 111, Neg. LLF: 160.07610245547195
Iteration: 16, Func. Count: 117, Neg. LLF: 160.07610245548506
Optimization terminated successfully (Exit mode 0)
Current function value: 160.07610245547195
Iterations: 16
Function evaluations: 117
Gradient evaluations: 16
Iteration: 1, Func. Count: 9, Neg. LLF: 162.92937792303536
Iteration: 2, Func. Count: 18, Neg. LLF: 159.67990345112813
Iteration: 3, Func. Count: 26, Neg. LLF: 161.9127255978496
Iteration: 4, Func. Count: 35, Neg. LLF: 163.66331640465648
Iteration: 5, Func. Count: 44, Neg. LLF: 159.51874894990343
Iteration: 6, Func. Count: 53, Neg. LLF: 159.4629325953817
Iteration: 7, Func. Count: 61, Neg. LLF: 159.4539855067421
Iteration: 8, Func. Count: 69, Neg. LLF: 159.41319581772873
Iteration: 9, Func. Count: 77, Neg. LLF: 159.3474399003114
Iteration: 10, Func. Count: 85, Neg. LLF: 159.30300341890964
Iteration: 11, Func. Count: 93, Neg. LLF: 159.28469720447734
Iteration: 12, Func. Count: 101, Neg. LLF: 159.283703130743
Iteration: 13, Func. Count: 109, Neg. LLF: 159.28369229593434
Iteration: 14, Func. Count: 117, Neg. LLF: 159.2836911388998
Iteration: 15, Func. Count: 124, Neg. LLF: 159.2836911388984
Optimization terminated successfully (Exit mode 0)
Current function value: 159.2836911388998
Iterations: 15
Function evaluations: 124
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 162.6964613389434
Iteration: 2, Func. Count: 20, Neg. LLF: 163.29521995608295
Iteration: 3, Func. Count: 30, Neg. LLF: 159.82253514361219
Iteration: 4, Func. Count: 39, Neg. LLF: 159.81510377123615
Iteration: 5, Func. Count: 49, Neg. LLF: 162.9621339659656
Iteration: 6, Func. Count: 60, Neg. LLF: 159.4687544106024
Iteration: 7, Func. Count: 69, Neg. LLF: 159.45482202290125
Iteration: 8, Func. Count: 78, Neg. LLF: 159.44475691692864
Iteration: 9, Func. Count: 87, Neg. LLF: 159.38376635669366
Iteration: 10, Func. Count: 96, Neg. LLF: 159.32792475353662
Iteration: 11, Func. Count: 105, Neg. LLF: 159.29672840377796
Iteration: 12, Func. Count: 114, Neg. LLF: 159.28469207651324
Iteration: 13, Func. Count: 123, Neg. LLF: 159.28373941625404
Iteration: 14, Func. Count: 132, Neg. LLF: 159.28369609449254
Iteration: 15, Func. Count: 141, Neg. LLF: 159.2836912380667
Iteration: 16, Func. Count: 149, Neg. LLF: 159.28369130253506
Optimization terminated successfully (Exit mode 0)
Current function value: 159.2836912380667
Iterations: 16
Function evaluations: 149
Gradient evaluations: 16
Iteration: 1, Func. Count: 7, Neg. LLF: 162.90733882567045
Iteration: 2, Func. Count: 14, Neg. LLF: 159.51429500889415
Iteration: 3, Func. Count: 21, Neg. LLF: 160.27938509645
Iteration: 4, Func. Count: 28, Neg. LLF: 158.10456371995656
Iteration: 5, Func. Count: 34, Neg. LLF: 160.21524974351453
Iteration: 6, Func. Count: 41, Neg. LLF: 157.93000904193988
Iteration: 7, Func. Count: 47, Neg. LLF: 157.91587299575008
Iteration: 8, Func. Count: 53, Neg. LLF: 157.90933573941285
Iteration: 9, Func. Count: 59, Neg. LLF: 157.90902938370377
Iteration: 10, Func. Count: 65, Neg. LLF: 157.90898489140272
Iteration: 11, Func. Count: 71, Neg. LLF: 157.90898320077986
Iteration: 12, Func. Count: 77, Neg. LLF: 157.90897681261157
Iteration: 13, Func. Count: 83, Neg. LLF: 157.90897067820654
Iteration: 14, Func. Count: 89, Neg. LLF: 157.90896573244567
Iteration: 15, Func. Count: 95, Neg. LLF: 157.90896454879152
Iteration: 16, Func. Count: 100, Neg. LLF: 157.90896454879882
Optimization terminated successfully (Exit mode 0)
Current function value: 157.90896454879152
Iterations: 16
Function evaluations: 100
Gradient evaluations: 16
Iteration: 1, Func. Count: 8, Neg. LLF: 1810.0801579179629
Iteration: 2, Func. Count: 16, Neg. LLF: 157.83993105308966
Iteration: 3, Func. Count: 24, Neg. LLF: 155.3430518832838
Iteration: 4, Func. Count: 31, Neg. LLF: 155.33517623791508
Iteration: 5, Func. Count: 38, Neg. LLF: 155.3289983813155
Iteration: 6, Func. Count: 45, Neg. LLF: 155.32879659119686
Iteration: 7, Func. Count: 52, Neg. LLF: 155.32878380920468
Iteration: 8, Func. Count: 58, Neg. LLF: 155.32878372621337
Optimization terminated successfully (Exit mode 0)
Current function value: 155.32878380920468
Iterations: 8
Function evaluations: 58
Gradient evaluations: 8
Iteration: 1, Func. Count: 9, Neg. LLF: 44306.6754036834
Iteration: 2, Func. Count: 18, Neg. LLF: 156.57609085870175
Iteration: 3, Func. Count: 27, Neg. LLF: 155.44348455980483
Iteration: 4, Func. Count: 35, Neg. LLF: 155.34701161363813
Iteration: 5, Func. Count: 43, Neg. LLF: 155.33481655586135
Iteration: 6, Func. Count: 51, Neg. LLF: 155.3294586324918
Iteration: 7, Func. Count: 59, Neg. LLF: 155.32880780210806
Iteration: 8, Func. Count: 67, Neg. LLF: 155.32878719667897
Iteration: 9, Func. Count: 75, Neg. LLF: 155.32878378228293
Iteration: 10, Func. Count: 82, Neg. LLF: 155.3287837065065
Optimization terminated successfully (Exit mode 0)
Current function value: 155.32878378228293
Iterations: 10
Function evaluations: 82
Gradient evaluations: 10
Iteration: 1, Func. Count: 10, Neg. LLF: 8603003.11632069
Iteration: 2, Func. Count: 20, Neg. LLF: 155.9397664048937
Iteration: 3, Func. Count: 29, Neg. LLF: 155.41767038587847
Iteration: 4, Func. Count: 38, Neg. LLF: 155.61125422176482
Iteration: 5, Func. Count: 48, Neg. LLF: 155.33955990378612
Iteration: 6, Func. Count: 57, Neg. LLF: 155.3189701101424
Iteration: 7, Func. Count: 66, Neg. LLF: 155.31637250812847
Iteration: 8, Func. Count: 75, Neg. LLF: 155.31245670825464
Iteration: 9, Func. Count: 84, Neg. LLF: 155.31175359073387
Iteration: 10, Func. Count: 93, Neg. LLF: 155.31069429910798
Iteration: 11, Func. Count: 102, Neg. LLF: 155.31068571206768
Iteration: 12, Func. Count: 110, Neg. LLF: 155.3106856537326
Optimization terminated successfully (Exit mode 0)
Current function value: 155.31068571206768
Iterations: 12
Function evaluations: 110
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 6382.843338254251
Iteration: 2, Func. Count: 22, Neg. LLF: 157.09114864747653
Iteration: 3, Func. Count: 33, Neg. LLF: 155.80698481978192
Iteration: 4, Func. Count: 44, Neg. LLF: 155.34617632982415
Iteration: 5, Func. Count: 54, Neg. LLF: 155.33169305500445
Iteration: 6, Func. Count: 64, Neg. LLF: 155.31632510636985
Iteration: 7, Func. Count: 74, Neg. LLF: 155.31379138296123
Iteration: 8, Func. Count: 84, Neg. LLF: 155.31127217139857
Iteration: 9, Func. Count: 94, Neg. LLF: 155.31076184827492
Iteration: 10, Func. Count: 104, Neg. LLF: 155.3106888631603
Iteration: 11, Func. Count: 114, Neg. LLF: 155.31068572061383
Iteration: 12, Func. Count: 123, Neg. LLF: 155.31068567506804
Optimization terminated successfully (Exit mode 0)
Current function value: 155.31068572061383
Iterations: 12
Function evaluations: 123
Gradient evaluations: 12
Iteration: 1, Func. Count: 8, Neg. LLF: 164.74203530992045
Iteration: 2, Func. Count: 16, Neg. LLF: 158.5635326704634
Iteration: 3, Func. Count: 24, Neg. LLF: 162.41137479934952
Iteration: 4, Func. Count: 33, Neg. LLF: 167.33482480618846
Iteration: 5, Func. Count: 41, Neg. LLF: 157.3238618083175
Iteration: 6, Func. Count: 48, Neg. LLF: 157.20438248644766
Iteration: 7, Func. Count: 55, Neg. LLF: 157.16957650998424
Iteration: 8, Func. Count: 62, Neg. LLF: 157.13340084078533
Iteration: 9, Func. Count: 69, Neg. LLF: 157.09917872310612
Iteration: 10, Func. Count: 76, Neg. LLF: 157.07084713310795
Iteration: 11, Func. Count: 83, Neg. LLF: 157.0370224855445
Iteration: 12, Func. Count: 90, Neg. LLF: 156.98421399021336
Iteration: 13, Func. Count: 97, Neg. LLF: 156.96584110128526
Iteration: 14, Func. Count: 104, Neg. LLF: 156.96301129765797
Iteration: 15, Func. Count: 111, Neg. LLF: 156.96282008649547
Iteration: 16, Func. Count: 118, Neg. LLF: 156.96280448444764
Iteration: 17, Func. Count: 124, Neg. LLF: 156.96280448443176
Optimization terminated successfully (Exit mode 0)
Current function value: 156.96280448444764
Iterations: 17
Function evaluations: 124
Gradient evaluations: 17
Iteration: 1, Func. Count: 9, Neg. LLF: 1226.8492751778863
Iteration: 2, Func. Count: 18, Neg. LLF: 157.45026351151876
Iteration: 3, Func. Count: 27, Neg. LLF: 155.18095066638102
Iteration: 4, Func. Count: 35, Neg. LLF: 155.14640918226786
Iteration: 5, Func. Count: 43, Neg. LLF: 155.1184342219346
Iteration: 6, Func. Count: 51, Neg. LLF: 155.11271903990558
Iteration: 7, Func. Count: 59, Neg. LLF: 155.1112087414759
Iteration: 8, Func. Count: 67, Neg. LLF: 155.11095151571342
Iteration: 9, Func. Count: 75, Neg. LLF: 155.1109079592312
Iteration: 10, Func. Count: 82, Neg. LLF: 155.1109078798021
Optimization terminated successfully (Exit mode 0)
Current function value: 155.1109079592312
Iterations: 10
Function evaluations: 82
Gradient evaluations: 10
Iteration: 1, Func. Count: 10, Neg. LLF: 2644401.683295767
Iteration: 2, Func. Count: 20, Neg. LLF: 156.1221386687191
Iteration: 3, Func. Count: 30, Neg. LLF: 154.88934758187014
Iteration: 4, Func. Count: 39, Neg. LLF: 155.74622322505144
Iteration: 5, Func. Count: 49, Neg. LLF: 154.99843788352115
Iteration: 6, Func. Count: 59, Neg. LLF: 154.52270767867589
Iteration: 7, Func. Count: 68, Neg. LLF: 154.52265453552886
Iteration: 8, Func. Count: 78, Neg. LLF: 154.4948021429619
Iteration: 9, Func. Count: 87, Neg. LLF: 154.49159847181278
Iteration: 10, Func. Count: 96, Neg. LLF: 154.49039050277668
Iteration: 11, Func. Count: 105, Neg. LLF: 154.49034087515955
Iteration: 12, Func. Count: 114, Neg. LLF: 154.49033788532148
Iteration: 13, Func. Count: 122, Neg. LLF: 154.49033784000423
Optimization terminated successfully (Exit mode 0)
Current function value: 154.49033788532148
Iterations: 13
Function evaluations: 122
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 8628986.997671036
Iteration: 2, Func. Count: 22, Neg. LLF: 156.56972517138797
Iteration: 3, Func. Count: 33, Neg. LLF: 155.2962842294411
Iteration: 4, Func. Count: 43, Neg. LLF: 154.84336837235858
Iteration: 5, Func. Count: 53, Neg. LLF: 172.22648352226702
Iteration: 6, Func. Count: 64, Neg. LLF: 154.6201910489798
Iteration: 7, Func. Count: 75, Neg. LLF: 154.50698173964656
Iteration: 8, Func. Count: 85, Neg. LLF: 154.4980937125638
Iteration: 9, Func. Count: 95, Neg. LLF: 154.49311335615485
Iteration: 10, Func. Count: 105, Neg. LLF: 154.49108875788056
Iteration: 11, Func. Count: 115, Neg. LLF: 154.49039777005365
Iteration: 12, Func. Count: 125, Neg. LLF: 154.49033906321714
Iteration: 13, Func. Count: 135, Neg. LLF: 154.49033796598016
Iteration: 14, Func. Count: 144, Neg. LLF: 154.4903379434012
Optimization terminated successfully (Exit mode 0)
Current function value: 154.49033796598016
Iterations: 14
Function evaluations: 144
Gradient evaluations: 14
Iteration: 1, Func. Count: 12, Neg. LLF: 5267.768178349769
Iteration: 2, Func. Count: 24, Neg. LLF: 158.19968975617505
Iteration: 3, Func. Count: 36, Neg. LLF: 155.81595409544462
Iteration: 4, Func. Count: 48, Neg. LLF: 155.2920951207867
Iteration: 5, Func. Count: 59, Neg. LLF: 155.7883601885215
Iteration: 6, Func. Count: 71, Neg. LLF: 155.79446474967443
Iteration: 7, Func. Count: 83, Neg. LLF: 154.56595373673207
Iteration: 8, Func. Count: 94, Neg. LLF: 154.5136700756898
Iteration: 9, Func. Count: 105, Neg. LLF: 154.49750084683268
Iteration: 10, Func. Count: 116, Neg. LLF: 154.4920858127205
Iteration: 11, Func. Count: 127, Neg. LLF: 154.49125557741039
Iteration: 12, Func. Count: 138, Neg. LLF: 154.4905400558073
Iteration: 13, Func. Count: 149, Neg. LLF: 154.4903772225235
Iteration: 14, Func. Count: 160, Neg. LLF: 154.49034067652525
Iteration: 15, Func. Count: 171, Neg. LLF: 154.49033830672798
Iteration: 16, Func. Count: 181, Neg. LLF: 154.4903382997929
Optimization terminated successfully (Exit mode 0)
Current function value: 154.49033830672798
Iterations: 16
Function evaluations: 181
Gradient evaluations: 16
Iteration: 1, Func. Count: 9, Neg. LLF: 164.81671348224955
Iteration: 2, Func. Count: 18, Neg. LLF: 158.63819990687526
Iteration: 3, Func. Count: 27, Neg. LLF: 163.49524164439038
Iteration: 4, Func. Count: 37, Neg. LLF: 165.43096700976133
Iteration: 5, Func. Count: 47, Neg. LLF: 158.73937653790054
Iteration: 6, Func. Count: 56, Neg. LLF: 157.18606430557236
Iteration: 7, Func. Count: 64, Neg. LLF: 157.09073680416842
Iteration: 8, Func. Count: 72, Neg. LLF: 157.05517853593898
Iteration: 9, Func. Count: 80, Neg. LLF: 156.9652272381306
Iteration: 10, Func. Count: 88, Neg. LLF: 156.91012864001158
Iteration: 11, Func. Count: 96, Neg. LLF: 156.84813300330433
Iteration: 12, Func. Count: 104, Neg. LLF: 156.72365157291358
Iteration: 13, Func. Count: 112, Neg. LLF: 156.70394351924062
Iteration: 14, Func. Count: 120, Neg. LLF: 156.698075870716
Iteration: 15, Func. Count: 128, Neg. LLF: 156.69749712593253
Iteration: 16, Func. Count: 136, Neg. LLF: 156.6974944622817
Iteration: 17, Func. Count: 143, Neg. LLF: 156.69749446195
Optimization terminated successfully (Exit mode 0)
Current function value: 156.6974944622817
Iterations: 17
Function evaluations: 143
Gradient evaluations: 17
Iteration: 1, Func. Count: 10, Neg. LLF: 2248.982710812831
Iteration: 2, Func. Count: 20, Neg. LLF: 158.491859582097
Iteration: 3, Func. Count: 30, Neg. LLF: 155.09101542037337
Iteration: 4, Func. Count: 39, Neg. LLF: 155.11480418167787
Iteration: 5, Func. Count: 49, Neg. LLF: 155.2172084973744
Iteration: 6, Func. Count: 59, Neg. LLF: 155.0353829357842
Iteration: 7, Func. Count: 68, Neg. LLF: 155.0346709517894
Iteration: 8, Func. Count: 77, Neg. LLF: 155.03455443442846
Iteration: 9, Func. Count: 86, Neg. LLF: 155.03451216114408
Iteration: 10, Func. Count: 95, Neg. LLF: 155.03450891101747
Iteration: 11, Func. Count: 103, Neg. LLF: 155.0345088447736
Optimization terminated successfully (Exit mode 0)
Current function value: 155.03450891101747
Iterations: 11
Function evaluations: 103
Gradient evaluations: 11
Iteration: 1, Func. Count: 11, Neg. LLF: 2646472.4500332354
Iteration: 2, Func. Count: 22, Neg. LLF: 156.25891342011417
Iteration: 3, Func. Count: 33, Neg. LLF: 155.02503000947218
Iteration: 4, Func. Count: 43, Neg. LLF: 155.00452849682486
Iteration: 5, Func. Count: 54, Neg. LLF: 155.86912165385655
Iteration: 6, Func. Count: 65, Neg. LLF: 154.9348350708753
Iteration: 7, Func. Count: 76, Neg. LLF: 154.50846962717932
Iteration: 8, Func. Count: 87, Neg. LLF: 154.47854623419033
Iteration: 9, Func. Count: 98, Neg. LLF: 154.40663657856956
Iteration: 10, Func. Count: 108, Neg. LLF: 154.3905487562164
Iteration: 11, Func. Count: 118, Neg. LLF: 154.3775033356832
Iteration: 12, Func. Count: 128, Neg. LLF: 154.37503349501742
Iteration: 13, Func. Count: 138, Neg. LLF: 154.3747100807693
Iteration: 14, Func. Count: 148, Neg. LLF: 154.37469160106562
Iteration: 15, Func. Count: 157, Neg. LLF: 154.37469157034974
Optimization terminated successfully (Exit mode 0)
Current function value: 154.37469160106562
Iterations: 15
Function evaluations: 157
Gradient evaluations: 15
Iteration: 1, Func. Count: 12, Neg. LLF: 8621175.863544034
Iteration: 2, Func. Count: 24, Neg. LLF: 156.50628737439388
Iteration: 3, Func. Count: 36, Neg. LLF: 155.39500371484786
Iteration: 4, Func. Count: 47, Neg. LLF: 154.67500324879106
Iteration: 5, Func. Count: 58, Neg. LLF: 161.4153653583407
Iteration: 6, Func. Count: 70, Neg. LLF: 154.4918460592151
Iteration: 7, Func. Count: 81, Neg. LLF: 154.48229248272048
Iteration: 8, Func. Count: 93, Neg. LLF: 154.41182207789868
Iteration: 9, Func. Count: 104, Neg. LLF: 154.39283775410655
Iteration: 10, Func. Count: 115, Neg. LLF: 154.37932509721486
Iteration: 11, Func. Count: 126, Neg. LLF: 154.37611300896296
Iteration: 12, Func. Count: 137, Neg. LLF: 154.37497420081604
Iteration: 13, Func. Count: 148, Neg. LLF: 154.3746947210006
Iteration: 14, Func. Count: 159, Neg. LLF: 154.3746910477131
Iteration: 15, Func. Count: 169, Neg. LLF: 154.3746910288293
Optimization terminated successfully (Exit mode 0)
Current function value: 154.3746910477131
Iterations: 15
Function evaluations: 169
Gradient evaluations: 15
Iteration: 1, Func. Count: 13, Neg. LLF: 1162.1655188618695
Iteration: 2, Func. Count: 26, Neg. LLF: 157.79081966969147
Iteration: 3, Func. Count: 39, Neg. LLF: 156.03335544576845
Iteration: 4, Func. Count: 52, Neg. LLF: 155.1559147058317
Iteration: 5, Func. Count: 64, Neg. LLF: 155.59703422870652
Iteration: 6, Func. Count: 78, Neg. LLF: 154.47271583340262
Iteration: 7, Func. Count: 90, Neg. LLF: 154.430177443699
Iteration: 8, Func. Count: 102, Neg. LLF: 154.42435288583962
Iteration: 9, Func. Count: 114, Neg. LLF: 154.38959852969535
Iteration: 10, Func. Count: 126, Neg. LLF: 154.3795562461406
Iteration: 11, Func. Count: 138, Neg. LLF: 154.3759107911708
Iteration: 12, Func. Count: 150, Neg. LLF: 154.37489555586748
Iteration: 13, Func. Count: 162, Neg. LLF: 154.37471753945127
Iteration: 14, Func. Count: 174, Neg. LLF: 154.37469490238888
Iteration: 15, Func. Count: 186, Neg. LLF: 154.37469142273923
Iteration: 16, Func. Count: 197, Neg. LLF: 154.37469143358987
Optimization terminated successfully (Exit mode 0)
Current function value: 154.37469142273923
Iterations: 16
Function evaluations: 197
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 160.60862472519477
Iteration: 2, Func. Count: 20, Neg. LLF: 157.710556546554
Iteration: 3, Func. Count: 30, Neg. LLF: 158.74228933575583
Iteration: 4, Func. Count: 40, Neg. LLF: 159.30929707283025
Iteration: 5, Func. Count: 50, Neg. LLF: 155.28429132137626
Iteration: 6, Func. Count: 60, Neg. LLF: 154.84918840091285
Iteration: 7, Func. Count: 70, Neg. LLF: 154.53086508741083
Iteration: 8, Func. Count: 79, Neg. LLF: 154.42559053727294
Iteration: 9, Func. Count: 88, Neg. LLF: 154.18077211935295
Iteration: 10, Func. Count: 97, Neg. LLF: 153.99758678543262
Iteration: 11, Func. Count: 106, Neg. LLF: 153.96171385979696
Iteration: 12, Func. Count: 115, Neg. LLF: 154.77402829155557
Iteration: 13, Func. Count: 125, Neg. LLF: 153.84621095545157
Iteration: 14, Func. Count: 134, Neg. LLF: 153.8139323657155
Iteration: 15, Func. Count: 143, Neg. LLF: 153.77513606167886
Iteration: 16, Func. Count: 152, Neg. LLF: 153.7547832387587
Iteration: 17, Func. Count: 161, Neg. LLF: 153.7531430866466
Iteration: 18, Func. Count: 170, Neg. LLF: 153.75311779604112
Iteration: 19, Func. Count: 179, Neg. LLF: 153.75311673519468
Iteration: 20, Func. Count: 187, Neg. LLF: 153.75311673499752
Optimization terminated successfully (Exit mode 0)
Current function value: 153.75311673519468
Iterations: 20
Function evaluations: 187
Gradient evaluations: 20
Iteration: 1, Func. Count: 11, Neg. LLF: 645746.2747246544
Iteration: 2, Func. Count: 22, Neg. LLF: 157.9833927527176
Iteration: 3, Func. Count: 33, Neg. LLF: 156.27984107573664
Iteration: 4, Func. Count: 44, Neg. LLF: 154.01730383166057
Iteration: 5, Func. Count: 54, Neg. LLF: 154.1677285478404
Iteration: 6, Func. Count: 65, Neg. LLF: 162.44375858710762
Iteration: 7, Func. Count: 76, Neg. LLF: 153.6521886304402
Iteration: 8, Func. Count: 86, Neg. LLF: 153.58990121838318
Iteration: 9, Func. Count: 96, Neg. LLF: 153.4627440093182
Iteration: 10, Func. Count: 106, Neg. LLF: 153.43515866858718
Iteration: 11, Func. Count: 116, Neg. LLF: 153.40987651733082
Iteration: 12, Func. Count: 126, Neg. LLF: 153.3992907753204
Iteration: 13, Func. Count: 136, Neg. LLF: 153.38784899672953
Iteration: 14, Func. Count: 146, Neg. LLF: 153.3770768808128
Iteration: 15, Func. Count: 156, Neg. LLF: 153.36224476703165
Iteration: 16, Func. Count: 166, Neg. LLF: 153.48458002813337
Iteration: 17, Func. Count: 177, Neg. LLF: 153.3413240592357
Iteration: 18, Func. Count: 187, Neg. LLF: 153.33616532277784
Iteration: 19, Func. Count: 197, Neg. LLF: 153.3348697622606
Iteration: 20, Func. Count: 207, Neg. LLF: 153.3347702402939
Iteration: 21, Func. Count: 217, Neg. LLF: 153.3345891390758
Iteration: 22, Func. Count: 227, Neg. LLF: 153.33458044661228
Iteration: 23, Func. Count: 237, Neg. LLF: 153.33457596967708
Iteration: 24, Func. Count: 246, Neg. LLF: 153.33457596197843
Optimization terminated successfully (Exit mode 0)
Current function value: 153.33457596967708
Iterations: 24
Function evaluations: 246
Gradient evaluations: 24
Iteration: 1, Func. Count: 12, Neg. LLF: 645645.572269782
Iteration: 2, Func. Count: 24, Neg. LLF: 154.96349283807223
Iteration: 3, Func. Count: 35, Neg. LLF: 184.06275093368208
Iteration: 4, Func. Count: 48, Neg. LLF: 159.0628802843151
Iteration: 5, Func. Count: 60, Neg. LLF: 202.72825751337444
Iteration: 6, Func. Count: 72, Neg. LLF: 153.9605416524202
Iteration: 7, Func. Count: 83, Neg. LLF: 153.92077424659482
Iteration: 8, Func. Count: 95, Neg. LLF: 155.90237340507537
Iteration: 9, Func. Count: 107, Neg. LLF: 153.71772029028114
Iteration: 10, Func. Count: 119, Neg. LLF: 153.44966759859537
Iteration: 11, Func. Count: 130, Neg. LLF: 153.39357169838166
Iteration: 12, Func. Count: 141, Neg. LLF: 153.50711161191202
Iteration: 13, Func. Count: 153, Neg. LLF: 153.6636243262781
Iteration: 14, Func. Count: 165, Neg. LLF: 153.34405673923914
Iteration: 15, Func. Count: 176, Neg. LLF: 153.3348155764793
Iteration: 16, Func. Count: 187, Neg. LLF: 153.405926279778
Iteration: 17, Func. Count: 199, Neg. LLF: 153.30751533669869
Iteration: 18, Func. Count: 210, Neg. LLF: 153.30480011532978
Iteration: 19, Func. Count: 221, Neg. LLF: 153.30203593250627
Iteration: 20, Func. Count: 232, Neg. LLF: 153.29868594786657
Iteration: 21, Func. Count: 243, Neg. LLF: 153.29836426908528
Iteration: 22, Func. Count: 254, Neg. LLF: 153.29813917943667
Iteration: 23, Func. Count: 265, Neg. LLF: 153.29812388392736
Iteration: 24, Func. Count: 276, Neg. LLF: 153.2981228771176
Iteration: 25, Func. Count: 286, Neg. LLF: 153.2981228638006
Optimization terminated successfully (Exit mode 0)
Current function value: 153.2981228771176
Iterations: 25
Function evaluations: 286
Gradient evaluations: 25
Iteration: 1, Func. Count: 13, Neg. LLF: 4490703.904891374
Iteration: 2, Func. Count: 26, Neg. LLF: 183.30524124036103
Iteration: 3, Func. Count: 39, Neg. LLF: 154.56233270317492
Iteration: 4, Func. Count: 51, Neg. LLF: 155.54486583701933
Iteration: 5, Func. Count: 64, Neg. LLF: 199.41536094866467
Iteration: 6, Func. Count: 77, Neg. LLF: 153.86249480968547
Iteration: 7, Func. Count: 90, Neg. LLF: 154.16390517110926
Iteration: 8, Func. Count: 103, Neg. LLF: 153.68819202258112
Iteration: 9, Func. Count: 116, Neg. LLF: 153.53037620034215
Iteration: 10, Func. Count: 129, Neg. LLF: 153.360513493729
Iteration: 11, Func. Count: 141, Neg. LLF: 153.73324916042873
Iteration: 12, Func. Count: 154, Neg. LLF: 154.27924150892198
Iteration: 13, Func. Count: 167, Neg. LLF: 153.3170948945408
Iteration: 14, Func. Count: 180, Neg. LLF: 153.98273519455054
Iteration: 15, Func. Count: 193, Neg. LLF: 153.26539239063501
Iteration: 16, Func. Count: 205, Neg. LLF: 153.2606172251281
Iteration: 17, Func. Count: 217, Neg. LLF: 153.25853169360258
Iteration: 18, Func. Count: 229, Neg. LLF: 153.2572535121494
Iteration: 19, Func. Count: 241, Neg. LLF: 153.25679352976596
Iteration: 20, Func. Count: 253, Neg. LLF: 153.25673691368823
Iteration: 21, Func. Count: 265, Neg. LLF: 153.25673443320463
Iteration: 22, Func. Count: 276, Neg. LLF: 153.25673441577274
Optimization terminated successfully (Exit mode 0)
Current function value: 153.25673443320463
Iterations: 22
Function evaluations: 276
Gradient evaluations: 22
Iteration: 1, Func. Count: 14, Neg. LLF: 199.9560251474837
Iteration: 2, Func. Count: 28, Neg. LLF: 200.43507505351286
Iteration: 3, Func. Count: 42, Neg. LLF: 175.5628730701052
Iteration: 4, Func. Count: 56, Neg. LLF: 155.90163760468616
Iteration: 5, Func. Count: 70, Neg. LLF: 161.1433798663587
Iteration: 6, Func. Count: 84, Neg. LLF: 154.35597842429922
Iteration: 7, Func. Count: 98, Neg. LLF: 154.22326016760258
Iteration: 8, Func. Count: 112, Neg. LLF: 155.66326859548215
Iteration: 9, Func. Count: 126, Neg. LLF: 154.80013495139974
Iteration: 10, Func. Count: 140, Neg. LLF: 154.19362083995637
Iteration: 11, Func. Count: 154, Neg. LLF: 153.38746706547644
Iteration: 12, Func. Count: 167, Neg. LLF: 153.38492574796484
Iteration: 13, Func. Count: 180, Neg. LLF: 153.38362783175236
Iteration: 14, Func. Count: 193, Neg. LLF: 153.38041322669636
Iteration: 15, Func. Count: 206, Neg. LLF: 153.35003629545955
Iteration: 16, Func. Count: 219, Neg. LLF: 153.36226734473186
Iteration: 17, Func. Count: 233, Neg. LLF: 153.274608832048
Iteration: 18, Func. Count: 246, Neg. LLF: 153.26582256986936
Iteration: 19, Func. Count: 259, Neg. LLF: 153.26475065038983
Iteration: 20, Func. Count: 272, Neg. LLF: 153.26337365754802
Iteration: 21, Func. Count: 285, Neg. LLF: 153.25988360158584
Iteration: 22, Func. Count: 298, Neg. LLF: 153.25799505507516
Iteration: 23, Func. Count: 311, Neg. LLF: 153.2568923381711
Iteration: 24, Func. Count: 324, Neg. LLF: 153.25674877882847
Iteration: 25, Func. Count: 337, Neg. LLF: 153.2567341843254
Iteration: 26, Func. Count: 349, Neg. LLF: 153.2567342167151
Optimization terminated successfully (Exit mode 0)
Current function value: 153.2567341843254
Iterations: 26
Function evaluations: 349
Gradient evaluations: 26
Iteration: 1, Func. Count: 7, Neg. LLF: 161.50484209489557
Iteration: 2, Func. Count: 13, Neg. LLF: 162.89138098811864
Iteration: 3, Func. Count: 20, Neg. LLF: 159.9529383923243
Iteration: 4, Func. Count: 26, Neg. LLF: 166.6318228299594
Iteration: 5, Func. Count: 33, Neg. LLF: 159.8052142443209
Iteration: 6, Func. Count: 39, Neg. LLF: 159.80406007292635
Iteration: 7, Func. Count: 45, Neg. LLF: 159.80336420385225
Iteration: 8, Func. Count: 51, Neg. LLF: 159.79843995271054
Iteration: 9, Func. Count: 57, Neg. LLF: 159.79050992171912
Iteration: 10, Func. Count: 63, Neg. LLF: 159.78535509895104
Iteration: 11, Func. Count: 69, Neg. LLF: 159.78344896753475
Iteration: 12, Func. Count: 75, Neg. LLF: 159.78329450403237
Iteration: 13, Func. Count: 80, Neg. LLF: 159.78329465595837
Optimization terminated successfully (Exit mode 0)
Current function value: 159.78329450403237
Iterations: 13
Function evaluations: 80
Gradient evaluations: 13
Iteration: 1, Func. Count: 8, Neg. LLF: 178.5612052585303
Iteration: 2, Func. Count: 16, Neg. LLF: 178.09849600680064
Iteration: 3, Func. Count: 24, Neg. LLF: 161.01359432402495
Iteration: 4, Func. Count: 32, Neg. LLF: 160.7248658028662
Iteration: 5, Func. Count: 40, Neg. LLF: 160.23739704284446
Iteration: 6, Func. Count: 47, Neg. LLF: 160.22090874111564
Iteration: 7, Func. Count: 54, Neg. LLF: 160.21400874599678
Iteration: 8, Func. Count: 61, Neg. LLF: 160.19556649200004
Iteration: 9, Func. Count: 68, Neg. LLF: 160.18359190163918
Iteration: 10, Func. Count: 75, Neg. LLF: 160.17476633744022
Iteration: 11, Func. Count: 82, Neg. LLF: 160.1726685022882
Iteration: 12, Func. Count: 89, Neg. LLF: 160.17258610085193
Iteration: 13, Func. Count: 96, Neg. LLF: 160.1725854453436
Optimization terminated successfully (Exit mode 0)
Current function value: 160.1725854453436
Iterations: 13
Function evaluations: 96
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 177.8599790084513
Iteration: 2, Func. Count: 18, Neg. LLF: 167.4425583191575
Iteration: 3, Func. Count: 27, Neg. LLF: 160.5928037359818
Iteration: 4, Func. Count: 36, Neg. LLF: 160.92011109669417
Iteration: 5, Func. Count: 45, Neg. LLF: 162.92561715796768
Iteration: 6, Func. Count: 54, Neg. LLF: 160.08778004353275
Iteration: 7, Func. Count: 62, Neg. LLF: 160.08031452397836
Iteration: 8, Func. Count: 70, Neg. LLF: 160.0792955602376
Iteration: 9, Func. Count: 78, Neg. LLF: 160.07905211700864
Iteration: 10, Func. Count: 86, Neg. LLF: 160.07776198060435
Iteration: 11, Func. Count: 94, Neg. LLF: 160.07615675200915
Iteration: 12, Func. Count: 102, Neg. LLF: 160.07610390812536
Iteration: 13, Func. Count: 110, Neg. LLF: 160.07610246915965
Iteration: 14, Func. Count: 117, Neg. LLF: 160.07610246912483
Optimization terminated successfully (Exit mode 0)
Current function value: 160.07610246915965
Iterations: 14
Function evaluations: 117
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 162.82789603634677
Iteration: 2, Func. Count: 20, Neg. LLF: 162.08122192390786
Iteration: 3, Func. Count: 30, Neg. LLF: 159.69050783489834
Iteration: 4, Func. Count: 39, Neg. LLF: 162.297715307301
Iteration: 5, Func. Count: 49, Neg. LLF: 161.68537339702925
Iteration: 6, Func. Count: 59, Neg. LLF: 159.47899351408745
Iteration: 7, Func. Count: 69, Neg. LLF: 159.46213595380962
Iteration: 8, Func. Count: 78, Neg. LLF: 159.44164352607436
Iteration: 9, Func. Count: 87, Neg. LLF: 159.40595659624879
Iteration: 10, Func. Count: 96, Neg. LLF: 159.35762753295083
Iteration: 11, Func. Count: 105, Neg. LLF: 159.31995463175465
Iteration: 12, Func. Count: 114, Neg. LLF: 159.28699955652726
Iteration: 13, Func. Count: 123, Neg. LLF: 159.28401227797704
Iteration: 14, Func. Count: 132, Neg. LLF: 159.2837365742926
Iteration: 15, Func. Count: 141, Neg. LLF: 159.28369128844105
Iteration: 16, Func. Count: 149, Neg. LLF: 159.2836912885283
Optimization terminated successfully (Exit mode 0)
Current function value: 159.28369128844105
Iterations: 16
Function evaluations: 149
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 162.55544302743985
Iteration: 2, Func. Count: 22, Neg. LLF: 161.75550420129076
Iteration: 3, Func. Count: 33, Neg. LLF: 159.70668846341977
Iteration: 4, Func. Count: 43, Neg. LLF: 162.03391466319567
Iteration: 5, Func. Count: 54, Neg. LLF: 163.7246972143395
Iteration: 6, Func. Count: 65, Neg. LLF: 159.62775182368776
Iteration: 7, Func. Count: 76, Neg. LLF: 159.46548733511412
Iteration: 8, Func. Count: 86, Neg. LLF: 159.45427653838541
Iteration: 9, Func. Count: 96, Neg. LLF: 159.4285595547295
Iteration: 10, Func. Count: 106, Neg. LLF: 159.3807512781282
Iteration: 11, Func. Count: 116, Neg. LLF: 159.32460582227134
Iteration: 12, Func. Count: 126, Neg. LLF: 159.29016060829775
Iteration: 13, Func. Count: 136, Neg. LLF: 159.28424251591346
Iteration: 14, Func. Count: 146, Neg. LLF: 159.2837891344865
Iteration: 15, Func. Count: 156, Neg. LLF: 159.283696132635
Iteration: 16, Func. Count: 166, Neg. LLF: 159.28369145555362
Iteration: 17, Func. Count: 175, Neg. LLF: 159.28369152005496
Optimization terminated successfully (Exit mode 0)
Current function value: 159.28369145555362
Iterations: 17
Function evaluations: 175
Gradient evaluations: 17
Iteration: 1, Func. Count: 8, Neg. LLF: 163.21921106651578
Iteration: 2, Func. Count: 16, Neg. LLF: 159.6915821228124
Iteration: 3, Func. Count: 25, Neg. LLF: 165.36076772721344
Iteration: 4, Func. Count: 33, Neg. LLF: 158.29998206940053
Iteration: 5, Func. Count: 40, Neg. LLF: 157.94183123887123
Iteration: 6, Func. Count: 47, Neg. LLF: 157.91023053054357
Iteration: 7, Func. Count: 54, Neg. LLF: 157.90930415526665
Iteration: 8, Func. Count: 61, Neg. LLF: 157.90923470835014
Iteration: 9, Func. Count: 68, Neg. LLF: 157.9091959222882
Iteration: 10, Func. Count: 75, Neg. LLF: 157.90913892893866
Iteration: 11, Func. Count: 82, Neg. LLF: 157.9090822359533
Iteration: 12, Func. Count: 89, Neg. LLF: 157.90901508103784
Iteration: 13, Func. Count: 96, Neg. LLF: 157.90897551468214
Iteration: 14, Func. Count: 103, Neg. LLF: 157.90896526857762
Iteration: 15, Func. Count: 110, Neg. LLF: 157.9089644702781
Optimization terminated successfully (Exit mode 0)
Current function value: 157.9089644702781
Iterations: 15
Function evaluations: 110
Gradient evaluations: 15
Iteration: 1, Func. Count: 9, Neg. LLF: 1901.575004043968
Iteration: 2, Func. Count: 18, Neg. LLF: 157.84203962652606
Iteration: 3, Func. Count: 27, Neg. LLF: 155.34252043678467
Iteration: 4, Func. Count: 35, Neg. LLF: 155.33495599606698
Iteration: 5, Func. Count: 43, Neg. LLF: 155.32896633102098
Iteration: 6, Func. Count: 51, Neg. LLF: 155.32879401891782
Iteration: 7, Func. Count: 59, Neg. LLF: 155.3287838057389
Iteration: 8, Func. Count: 66, Neg. LLF: 155.32878372274996
Optimization terminated successfully (Exit mode 0)
Current function value: 155.3287838057389
Iterations: 8
Function evaluations: 66
Gradient evaluations: 8
Iteration: 1, Func. Count: 10, Neg. LLF: 27130.701127459593
Iteration: 2, Func. Count: 20, Neg. LLF: 156.5736633849948
Iteration: 3, Func. Count: 30, Neg. LLF: 155.44785369810987
Iteration: 4, Func. Count: 39, Neg. LLF: 155.34642228066969
Iteration: 5, Func. Count: 48, Neg. LLF: 155.3346983429791
Iteration: 6, Func. Count: 57, Neg. LLF: 155.32938355599944
Iteration: 7, Func. Count: 66, Neg. LLF: 155.32879701447922
Iteration: 8, Func. Count: 75, Neg. LLF: 155.32878584752788
Iteration: 9, Func. Count: 84, Neg. LLF: 155.32878378170034
Iteration: 10, Func. Count: 92, Neg. LLF: 155.32878370592772
Optimization terminated successfully (Exit mode 0)
Current function value: 155.32878378170034
Iterations: 10
Function evaluations: 92
Gradient evaluations: 10
Iteration: 1, Func. Count: 11, Neg. LLF: 8604344.842257353
Iteration: 2, Func. Count: 22, Neg. LLF: 155.93716049410696
Iteration: 3, Func. Count: 32, Neg. LLF: 155.42145486411707
Iteration: 4, Func. Count: 42, Neg. LLF: 155.6293839954501
Iteration: 5, Func. Count: 53, Neg. LLF: 155.3401917457373
Iteration: 6, Func. Count: 63, Neg. LLF: 155.31960124784044
Iteration: 7, Func. Count: 73, Neg. LLF: 155.31732612825706
Iteration: 8, Func. Count: 83, Neg. LLF: 155.31255872741752
Iteration: 9, Func. Count: 93, Neg. LLF: 155.31181751294866
Iteration: 10, Func. Count: 103, Neg. LLF: 155.31071572641144
Iteration: 11, Func. Count: 113, Neg. LLF: 155.31068658884314
Iteration: 12, Func. Count: 123, Neg. LLF: 155.31068564727434
Optimization terminated successfully (Exit mode 0)
Current function value: 155.31068564727434
Iterations: 12
Function evaluations: 123
Gradient evaluations: 12
Iteration: 1, Func. Count: 12, Neg. LLF: 5368.345385426753
Iteration: 2, Func. Count: 24, Neg. LLF: 157.07706650318693
Iteration: 3, Func. Count: 36, Neg. LLF: 155.8191781204298
Iteration: 4, Func. Count: 48, Neg. LLF: 155.34911163051493
Iteration: 5, Func. Count: 59, Neg. LLF: 155.33180960355833
Iteration: 6, Func. Count: 70, Neg. LLF: 155.3165957201662
Iteration: 7, Func. Count: 81, Neg. LLF: 155.3139218488542
Iteration: 8, Func. Count: 92, Neg. LLF: 155.31134427544632
Iteration: 9, Func. Count: 103, Neg. LLF: 155.31077557202693
Iteration: 10, Func. Count: 114, Neg. LLF: 155.31068962981948
Iteration: 11, Func. Count: 125, Neg. LLF: 155.31068573563095
Iteration: 12, Func. Count: 135, Neg. LLF: 155.31068569007692
Optimization terminated successfully (Exit mode 0)
Current function value: 155.31068573563095
Iterations: 12
Function evaluations: 135
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 165.41054567644218
Iteration: 2, Func. Count: 18, Neg. LLF: 158.34812078884266
Iteration: 3, Func. Count: 27, Neg. LLF: 160.0574299119613
Iteration: 4, Func. Count: 36, Neg. LLF: 158.39420148329577
Iteration: 5, Func. Count: 45, Neg. LLF: 157.2842442477548
Iteration: 6, Func. Count: 53, Neg. LLF: 157.25339531145573
Iteration: 7, Func. Count: 62, Neg. LLF: 157.22921515970913
Iteration: 8, Func. Count: 71, Neg. LLF: 157.1496600111786
Iteration: 9, Func. Count: 79, Neg. LLF: 157.08569469849735
Iteration: 10, Func. Count: 87, Neg. LLF: 157.03543411506706
Iteration: 11, Func. Count: 95, Neg. LLF: 157.00844072576095
Iteration: 12, Func. Count: 103, Neg. LLF: 156.98221301784125
Iteration: 13, Func. Count: 111, Neg. LLF: 156.96826103573582
Iteration: 14, Func. Count: 119, Neg. LLF: 156.9644151677326
Iteration: 15, Func. Count: 127, Neg. LLF: 156.96318415257105
Iteration: 16, Func. Count: 135, Neg. LLF: 156.9628206947226
Iteration: 17, Func. Count: 143, Neg. LLF: 156.96280607231338
Iteration: 18, Func. Count: 151, Neg. LLF: 156.96280442834762
Iteration: 19, Func. Count: 158, Neg. LLF: 156.96280442833927
Optimization terminated successfully (Exit mode 0)
Current function value: 156.96280442834762
Iterations: 19
Function evaluations: 158
Gradient evaluations: 19
Iteration: 1, Func. Count: 10, Neg. LLF: 1328.004547954075
Iteration: 2, Func. Count: 20, Neg. LLF: 157.45616208435746
Iteration: 3, Func. Count: 30, Neg. LLF: 155.17968520670402
Iteration: 4, Func. Count: 39, Neg. LLF: 155.14561849521994
Iteration: 5, Func. Count: 48, Neg. LLF: 155.1182184888604
Iteration: 6, Func. Count: 57, Neg. LLF: 155.11263687800928
Iteration: 7, Func. Count: 66, Neg. LLF: 155.11119762740336
Iteration: 8, Func. Count: 75, Neg. LLF: 155.11094927542567
Iteration: 9, Func. Count: 84, Neg. LLF: 155.11090795863325
Iteration: 10, Func. Count: 92, Neg. LLF: 155.1109078791995
Optimization terminated successfully (Exit mode 0)
Current function value: 155.11090795863325
Iterations: 10
Function evaluations: 92
Gradient evaluations: 10
Iteration: 1, Func. Count: 11, Neg. LLF: 2642347.412523162
Iteration: 2, Func. Count: 22, Neg. LLF: 156.14159355612196
Iteration: 3, Func. Count: 33, Neg. LLF: 154.7461908065225
Iteration: 4, Func. Count: 43, Neg. LLF: 155.4751705428842
Iteration: 5, Func. Count: 54, Neg. LLF: 154.7329845229614
Iteration: 6, Func. Count: 65, Neg. LLF: 154.5093096400263
Iteration: 7, Func. Count: 75, Neg. LLF: 154.4984200842539
Iteration: 8, Func. Count: 85, Neg. LLF: 154.49163556966002
Iteration: 9, Func. Count: 95, Neg. LLF: 154.49104685239092
Iteration: 10, Func. Count: 105, Neg. LLF: 154.49036225535286
Iteration: 11, Func. Count: 115, Neg. LLF: 154.4903396011321
Iteration: 12, Func. Count: 125, Neg. LLF: 154.49033785178207
Iteration: 13, Func. Count: 134, Neg. LLF: 154.49033780650052
Optimization terminated successfully (Exit mode 0)
Current function value: 154.49033785178207
Iterations: 13
Function evaluations: 134
Gradient evaluations: 13
Iteration: 1, Func. Count: 12, Neg. LLF: 8630110.41584194
Iteration: 2, Func. Count: 24, Neg. LLF: 156.5844385672657
Iteration: 3, Func. Count: 36, Neg. LLF: 155.2994285955076
Iteration: 4, Func. Count: 47, Neg. LLF: 154.85729652297266
Iteration: 5, Func. Count: 58, Neg. LLF: 174.3092806983713
Iteration: 6, Func. Count: 70, Neg. LLF: 154.63133011641892
Iteration: 7, Func. Count: 82, Neg. LLF: 154.5082308169067
Iteration: 8, Func. Count: 93, Neg. LLF: 154.4978987765366
Iteration: 9, Func. Count: 104, Neg. LLF: 154.4934284520508
Iteration: 10, Func. Count: 115, Neg. LLF: 154.49133078586908
Iteration: 11, Func. Count: 126, Neg. LLF: 154.49045367650595
Iteration: 12, Func. Count: 137, Neg. LLF: 154.49033994196247
Iteration: 13, Func. Count: 148, Neg. LLF: 154.49033794948593
Iteration: 14, Func. Count: 158, Neg. LLF: 154.49033792687717
Optimization terminated successfully (Exit mode 0)
Current function value: 154.49033794948593
Iterations: 14
Function evaluations: 158
Gradient evaluations: 14
Iteration: 1, Func. Count: 13, Neg. LLF: 3847.8651663762143
Iteration: 2, Func. Count: 26, Neg. LLF: 158.15163621867293
Iteration: 3, Func. Count: 39, Neg. LLF: 155.82777061845889
Iteration: 4, Func. Count: 52, Neg. LLF: 155.30189580645708
Iteration: 5, Func. Count: 64, Neg. LLF: 155.7980711676086
Iteration: 6, Func. Count: 77, Neg. LLF: 155.82608941410004
Iteration: 7, Func. Count: 90, Neg. LLF: 154.5677988546628
Iteration: 8, Func. Count: 102, Neg. LLF: 154.51514265233
Iteration: 9, Func. Count: 114, Neg. LLF: 154.49860177130185
Iteration: 10, Func. Count: 126, Neg. LLF: 154.49235271009132
Iteration: 11, Func. Count: 138, Neg. LLF: 154.4914072667982
Iteration: 12, Func. Count: 150, Neg. LLF: 154.49055561071495
Iteration: 13, Func. Count: 162, Neg. LLF: 154.4903889017335
Iteration: 14, Func. Count: 174, Neg. LLF: 154.4903435716085
Iteration: 15, Func. Count: 186, Neg. LLF: 154.49033891502305
Iteration: 16, Func. Count: 198, Neg. LLF: 154.49033791443915
Iteration: 17, Func. Count: 209, Neg. LLF: 154.49033790771975
Optimization terminated successfully (Exit mode 0)
Current function value: 154.49033791443915
Iterations: 17
Function evaluations: 209
Gradient evaluations: 17
Iteration: 1, Func. Count: 10, Neg. LLF: 165.0669114738901
Iteration: 2, Func. Count: 20, Neg. LLF: 158.6827325442324
Iteration: 3, Func. Count: 30, Neg. LLF: 161.870550469699
Iteration: 4, Func. Count: 41, Neg. LLF: 162.08165884331504
Iteration: 5, Func. Count: 51, Neg. LLF: 157.78082005684882
Iteration: 6, Func. Count: 60, Neg. LLF: 159.21499558337084
Iteration: 7, Func. Count: 70, Neg. LLF: 157.15743682404522
Iteration: 8, Func. Count: 79, Neg. LLF: 157.06166269719603
Iteration: 9, Func. Count: 88, Neg. LLF: 157.0254284256712
Iteration: 10, Func. Count: 97, Neg. LLF: 156.9929368583341
Iteration: 11, Func. Count: 106, Neg. LLF: 156.8365151029937
Iteration: 12, Func. Count: 115, Neg. LLF: 156.77919829819987
Iteration: 13, Func. Count: 124, Neg. LLF: 156.6990291978555
Iteration: 14, Func. Count: 133, Neg. LLF: 156.69765964057174
Iteration: 15, Func. Count: 142, Neg. LLF: 156.69750570106322
Iteration: 16, Func. Count: 151, Neg. LLF: 156.69749458125696
Iteration: 17, Func. Count: 159, Neg. LLF: 156.6974945808919
Optimization terminated successfully (Exit mode 0)
Current function value: 156.69749458125696
Iterations: 17
Function evaluations: 159
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 2466.7806287576896
Iteration: 2, Func. Count: 22, Neg. LLF: 158.48735262255542
Iteration: 3, Func. Count: 33, Neg. LLF: 155.09269760433062
Iteration: 4, Func. Count: 43, Neg. LLF: 155.09545669468898
Iteration: 5, Func. Count: 54, Neg. LLF: 155.29591583422004
Iteration: 6, Func. Count: 65, Neg. LLF: 155.03527860162487
Iteration: 7, Func. Count: 75, Neg. LLF: 155.034653025859
Iteration: 8, Func. Count: 85, Neg. LLF: 155.03455099214747
Iteration: 9, Func. Count: 95, Neg. LLF: 155.03451142429557
Iteration: 10, Func. Count: 105, Neg. LLF: 155.03450885571786
Iteration: 11, Func. Count: 114, Neg. LLF: 155.03450878947731
Optimization terminated successfully (Exit mode 0)
Current function value: 155.03450885571786
Iterations: 11
Function evaluations: 114
Gradient evaluations: 11
Iteration: 1, Func. Count: 12, Neg. LLF: 2644362.625069778
Iteration: 2, Func. Count: 24, Neg. LLF: 156.26830674025882
Iteration: 3, Func. Count: 36, Neg. LLF: 155.064713987411
Iteration: 4, Func. Count: 47, Neg. LLF: 154.9129314314765
Iteration: 5, Func. Count: 58, Neg. LLF: 163.28823381369068
Iteration: 6, Func. Count: 71, Neg. LLF: 154.60373780780048
Iteration: 7, Func. Count: 82, Neg. LLF: 154.4716202418455
Iteration: 8, Func. Count: 93, Neg. LLF: 154.4831391167311
Iteration: 9, Func. Count: 105, Neg. LLF: 154.41136726290992
Iteration: 10, Func. Count: 116, Neg. LLF: 154.3933719071946
Iteration: 11, Func. Count: 127, Neg. LLF: 154.3820656137779
Iteration: 12, Func. Count: 138, Neg. LLF: 154.3757152445304
Iteration: 13, Func. Count: 149, Neg. LLF: 154.37476614570326
Iteration: 14, Func. Count: 160, Neg. LLF: 154.3746959511226
Iteration: 15, Func. Count: 171, Neg. LLF: 154.37469116919894
Iteration: 16, Func. Count: 181, Neg. LLF: 154.3746911381884
Optimization terminated successfully (Exit mode 0)
Current function value: 154.37469116919894
Iterations: 16
Function evaluations: 181
Gradient evaluations: 16
Iteration: 1, Func. Count: 13, Neg. LLF: 101966.86223176643
Iteration: 2, Func. Count: 26, Neg. LLF: 156.51901813339893
Iteration: 3, Func. Count: 39, Neg. LLF: 155.40233324578662
Iteration: 4, Func. Count: 51, Neg. LLF: 154.7036050354048
Iteration: 5, Func. Count: 63, Neg. LLF: 162.45876879703022
Iteration: 6, Func. Count: 76, Neg. LLF: 154.45687868322182
Iteration: 7, Func. Count: 88, Neg. LLF: 154.5632081287246
Iteration: 8, Func. Count: 101, Neg. LLF: 154.40541696384656
Iteration: 9, Func. Count: 113, Neg. LLF: 154.38825523208584
Iteration: 10, Func. Count: 125, Neg. LLF: 154.37729622893627
Iteration: 11, Func. Count: 137, Neg. LLF: 154.37506657486796
Iteration: 12, Func. Count: 149, Neg. LLF: 154.3747013537805
Iteration: 13, Func. Count: 161, Neg. LLF: 154.37469141983766
Iteration: 14, Func. Count: 172, Neg. LLF: 154.37469140106336
Optimization terminated successfully (Exit mode 0)
Current function value: 154.37469141983766
Iterations: 14
Function evaluations: 172
Gradient evaluations: 14
Iteration: 1, Func. Count: 14, Neg. LLF: 1071.9286634672521
Iteration: 2, Func. Count: 28, Neg. LLF: 157.72696856876948
Iteration: 3, Func. Count: 42, Neg. LLF: 156.04920869991298
Iteration: 4, Func. Count: 56, Neg. LLF: 155.09711437988912
Iteration: 5, Func. Count: 69, Neg. LLF: 155.6009341496266
Iteration: 6, Func. Count: 84, Neg. LLF: 154.47359513689756
Iteration: 7, Func. Count: 97, Neg. LLF: 154.4288476418351
Iteration: 8, Func. Count: 110, Neg. LLF: 154.39758025833225
Iteration: 9, Func. Count: 123, Neg. LLF: 154.38289156994193
Iteration: 10, Func. Count: 136, Neg. LLF: 154.40563330066004
Iteration: 11, Func. Count: 150, Neg. LLF: 154.3753500763638
Iteration: 12, Func. Count: 163, Neg. LLF: 154.37484668234885
Iteration: 13, Func. Count: 176, Neg. LLF: 154.37469710596315
Iteration: 14, Func. Count: 189, Neg. LLF: 154.3746917473756
Iteration: 15, Func. Count: 202, Neg. LLF: 154.37469095484013
Optimization terminated successfully (Exit mode 0)
Current function value: 154.37469095484013
Iterations: 15
Function evaluations: 202
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 160.99885620255415
Iteration: 2, Func. Count: 22, Neg. LLF: 158.0147631708945
Iteration: 3, Func. Count: 33, Neg. LLF: 157.3547862196291
Iteration: 4, Func. Count: 44, Neg. LLF: 157.15504903965515
Iteration: 5, Func. Count: 55, Neg. LLF: 155.28097819451514
Iteration: 6, Func. Count: 66, Neg. LLF: 154.96212551950467
Iteration: 7, Func. Count: 77, Neg. LLF: 154.7588527791131
Iteration: 8, Func. Count: 88, Neg. LLF: 154.47723713741576
Iteration: 9, Func. Count: 98, Neg. LLF: 154.2101115130689
Iteration: 10, Func. Count: 108, Neg. LLF: 154.00717652094312
Iteration: 11, Func. Count: 118, Neg. LLF: 154.03328616602795
Iteration: 12, Func. Count: 129, Neg. LLF: 154.50232629669125
Iteration: 13, Func. Count: 140, Neg. LLF: 153.82212585366514
Iteration: 14, Func. Count: 150, Neg. LLF: 153.7872025800188
Iteration: 15, Func. Count: 160, Neg. LLF: 153.77009705059905
Iteration: 16, Func. Count: 170, Neg. LLF: 153.75376766661014
Iteration: 17, Func. Count: 180, Neg. LLF: 153.7531769119194
Iteration: 18, Func. Count: 190, Neg. LLF: 153.75312052334445
Iteration: 19, Func. Count: 200, Neg. LLF: 153.7531172899769
Iteration: 20, Func. Count: 210, Neg. LLF: 153.75311670305067
Optimization terminated successfully (Exit mode 0)
Current function value: 153.75311670305067
Iterations: 20
Function evaluations: 210
Gradient evaluations: 20
Iteration: 1, Func. Count: 12, Neg. LLF: 645946.069948656
Iteration: 2, Func. Count: 24, Neg. LLF: 158.15293693969127
Iteration: 3, Func. Count: 36, Neg. LLF: 156.36123364664763
Iteration: 4, Func. Count: 48, Neg. LLF: 153.9914111750039
Iteration: 5, Func. Count: 59, Neg. LLF: 154.19903255397392
Iteration: 6, Func. Count: 71, Neg. LLF: 160.1028040906506
Iteration: 7, Func. Count: 83, Neg. LLF: 153.659807866805
Iteration: 8, Func. Count: 94, Neg. LLF: 153.55862301667986
Iteration: 9, Func. Count: 105, Neg. LLF: 153.46034176540672
Iteration: 10, Func. Count: 116, Neg. LLF: 153.4336915595167
Iteration: 11, Func. Count: 127, Neg. LLF: 153.40814406477116
Iteration: 12, Func. Count: 138, Neg. LLF: 153.39805812972742
Iteration: 13, Func. Count: 149, Neg. LLF: 153.38701040343648
Iteration: 14, Func. Count: 160, Neg. LLF: 153.37884626569243
Iteration: 15, Func. Count: 171, Neg. LLF: 153.36824247893213
Iteration: 16, Func. Count: 182, Neg. LLF: 153.34895818276289
Iteration: 17, Func. Count: 193, Neg. LLF: 153.34212102713187
Iteration: 18, Func. Count: 204, Neg. LLF: 153.34610923611692
Iteration: 19, Func. Count: 216, Neg. LLF: 153.3347928060105
Iteration: 20, Func. Count: 227, Neg. LLF: 153.3345831233864
Iteration: 21, Func. Count: 238, Neg. LLF: 153.3345764800914
Iteration: 22, Func. Count: 248, Neg. LLF: 153.33457647239013
Optimization terminated successfully (Exit mode 0)
Current function value: 153.3345764800914
Iterations: 22
Function evaluations: 248
Gradient evaluations: 22
Iteration: 1, Func. Count: 13, Neg. LLF: 642940.3966826053
Iteration: 2, Func. Count: 26, Neg. LLF: 155.00995112449908
Iteration: 3, Func. Count: 38, Neg. LLF: 176.00578461800217
Iteration: 4, Func. Count: 52, Neg. LLF: 159.6384406135699
Iteration: 5, Func. Count: 65, Neg. LLF: 220.31088535850003
Iteration: 6, Func. Count: 78, Neg. LLF: 154.0617353724962
Iteration: 7, Func. Count: 91, Neg. LLF: 153.91629222404475
Iteration: 8, Func. Count: 104, Neg. LLF: 153.84226112970737
Iteration: 9, Func. Count: 117, Neg. LLF: 153.80413245676036
Iteration: 10, Func. Count: 130, Neg. LLF: 153.39830106873242
Iteration: 11, Func. Count: 142, Neg. LLF: 155.69980817664484
Iteration: 12, Func. Count: 155, Neg. LLF: 153.36917936694638
Iteration: 13, Func. Count: 167, Neg. LLF: 153.32121889530697
Iteration: 14, Func. Count: 179, Neg. LLF: 153.31487025524763
Iteration: 15, Func. Count: 191, Neg. LLF: 153.47464032427513
Iteration: 16, Func. Count: 204, Neg. LLF: 153.31388054747916
Iteration: 17, Func. Count: 217, Neg. LLF: 153.29941406722628
Iteration: 18, Func. Count: 229, Neg. LLF: 153.29830931507973
Iteration: 19, Func. Count: 241, Neg. LLF: 153.2981358674429
Iteration: 20, Func. Count: 253, Neg. LLF: 153.2981260948328
Iteration: 21, Func. Count: 265, Neg. LLF: 153.29812305783125
Iteration: 22, Func. Count: 276, Neg. LLF: 153.29812304450456
Optimization terminated successfully (Exit mode 0)
Current function value: 153.29812305783125
Iterations: 22
Function evaluations: 276
Gradient evaluations: 22
Iteration: 1, Func. Count: 14, Neg. LLF: 4492001.364204744
Iteration: 2, Func. Count: 28, Neg. LLF: 191.67109196391263
Iteration: 3, Func. Count: 42, Neg. LLF: 154.55304479696332
Iteration: 4, Func. Count: 55, Neg. LLF: 155.24956470201812
Iteration: 5, Func. Count: 69, Neg. LLF: 179.21665436206445
Iteration: 6, Func. Count: 83, Neg. LLF: 153.59982638950333
Iteration: 7, Func. Count: 96, Neg. LLF: 153.84865968597106
Iteration: 8, Func. Count: 110, Neg. LLF: 153.56090805168148
Iteration: 9, Func. Count: 124, Neg. LLF: 153.38004351107878
Iteration: 10, Func. Count: 137, Neg. LLF: 154.27849781120764
Iteration: 11, Func. Count: 151, Neg. LLF: 153.96388700682112
Iteration: 12, Func. Count: 165, Neg. LLF: 153.31134412463516
Iteration: 13, Func. Count: 179, Neg. LLF: 153.7618853623681
Iteration: 14, Func. Count: 193, Neg. LLF: 153.2654094949095
Iteration: 15, Func. Count: 206, Neg. LLF: 153.26683155372626
Iteration: 16, Func. Count: 220, Neg. LLF: 153.2590212588714
Iteration: 17, Func. Count: 233, Neg. LLF: 153.2577717148651
Iteration: 18, Func. Count: 246, Neg. LLF: 153.25678720304262
Iteration: 19, Func. Count: 259, Neg. LLF: 153.25674119841992
Iteration: 20, Func. Count: 272, Neg. LLF: 153.25673405976272
Iteration: 21, Func. Count: 284, Neg. LLF: 153.25673404225245
Optimization terminated successfully (Exit mode 0)
Current function value: 153.25673405976272
Iterations: 21
Function evaluations: 284
Gradient evaluations: 21
Iteration: 1, Func. Count: 15, Neg. LLF: 13695.29495421262
Iteration: 2, Func. Count: 30, Neg. LLF: 737.5218371398793
Iteration: 3, Func. Count: 45, Neg. LLF: 162.0287746253792
Iteration: 4, Func. Count: 60, Neg. LLF: 159.67839777766164
Iteration: 5, Func. Count: 75, Neg. LLF: 159.50060615184583
Iteration: 6, Func. Count: 90, Neg. LLF: 154.37488016497107
Iteration: 7, Func. Count: 105, Neg. LLF: 156.64659626308034
Iteration: 8, Func. Count: 120, Neg. LLF: 168.49951615107827
Iteration: 9, Func. Count: 135, Neg. LLF: 155.33011660176427
Iteration: 10, Func. Count: 150, Neg. LLF: 153.51500449735886
Iteration: 11, Func. Count: 164, Neg. LLF: 153.5673026445318
Iteration: 12, Func. Count: 179, Neg. LLF: 153.41494702450413
Iteration: 13, Func. Count: 194, Neg. LLF: 153.31862298546835
Iteration: 14, Func. Count: 209, Neg. LLF: 154.75659078406048
Iteration: 15, Func. Count: 224, Neg. LLF: 153.26799004444706
Iteration: 16, Func. Count: 238, Neg. LLF: 153.26065053537312
Iteration: 17, Func. Count: 252, Neg. LLF: 153.25854006814882
Iteration: 18, Func. Count: 266, Neg. LLF: 153.25725618253844
Iteration: 19, Func. Count: 280, Neg. LLF: 153.2567899288445
Iteration: 20, Func. Count: 294, Neg. LLF: 153.25673511537482
Iteration: 21, Func. Count: 308, Neg. LLF: 153.25673398647575
Iteration: 22, Func. Count: 321, Neg. LLF: 153.256734018797
Optimization terminated successfully (Exit mode 0)
Current function value: 153.25673398647575
Iterations: 22
Function evaluations: 321
Gradient evaluations: 22
Iteration: 1, Func. Count: 8, Neg. LLF: 161.87371754174467
Iteration: 2, Func. Count: 16, Neg. LLF: 161.46376126341553
Iteration: 3, Func. Count: 26, Neg. LLF: 159.44616835988785
Iteration: 4, Func. Count: 34, Neg. LLF: 159.1090787569252
Iteration: 5, Func. Count: 41, Neg. LLF: 159.0704052659346
Iteration: 6, Func. Count: 48, Neg. LLF: 159.06757470608989
Iteration: 7, Func. Count: 55, Neg. LLF: 159.06698475359417
Iteration: 8, Func. Count: 62, Neg. LLF: 159.06631556999105
Iteration: 9, Func. Count: 69, Neg. LLF: 159.06569191636038
Iteration: 10, Func. Count: 76, Neg. LLF: 159.06531968612117
Iteration: 11, Func. Count: 83, Neg. LLF: 159.06488312140706
Iteration: 12, Func. Count: 90, Neg. LLF: 159.06432371121045
Iteration: 13, Func. Count: 97, Neg. LLF: 159.06374612176484
Iteration: 14, Func. Count: 104, Neg. LLF: 159.0634508989903
Iteration: 15, Func. Count: 111, Neg. LLF: 159.06340075492392
Iteration: 16, Func. Count: 118, Neg. LLF: 159.063398568116
Iteration: 17, Func. Count: 124, Neg. LLF: 159.0633985681261
Optimization terminated successfully (Exit mode 0)
Current function value: 159.063398568116
Iterations: 17
Function evaluations: 124
Gradient evaluations: 17
Iteration: 1, Func. Count: 9, Neg. LLF: 176.4136855013221
Iteration: 2, Func. Count: 18, Neg. LLF: 200.6036972990942
Iteration: 3, Func. Count: 27, Neg. LLF: 183.53136202001969
Iteration: 4, Func. Count: 36, Neg. LLF: 165.509971208298
Iteration: 5, Func. Count: 45, Neg. LLF: 158.81546168578683
Iteration: 6, Func. Count: 53, Neg. LLF: 158.73092802730523
Iteration: 7, Func. Count: 61, Neg. LLF: 158.68598850520496
Iteration: 8, Func. Count: 69, Neg. LLF: 158.6479147798276
Iteration: 9, Func. Count: 77, Neg. LLF: 158.61335008332165
Iteration: 10, Func. Count: 85, Neg. LLF: 158.57995371270178
Iteration: 11, Func. Count: 93, Neg. LLF: 158.51739122871984
Iteration: 12, Func. Count: 101, Neg. LLF: 158.49251386723097
Iteration: 13, Func. Count: 109, Neg. LLF: 158.49179687223557
Iteration: 14, Func. Count: 117, Neg. LLF: 158.491698560577
Iteration: 15, Func. Count: 125, Neg. LLF: 158.49168718305924
Iteration: 16, Func. Count: 133, Neg. LLF: 158.4916865601782
Optimization terminated successfully (Exit mode 0)
Current function value: 158.4916865601782
Iterations: 16
Function evaluations: 133
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 163.63474377529334
Iteration: 2, Func. Count: 20, Neg. LLF: 162.68375236248357
Iteration: 3, Func. Count: 31, Neg. LLF: 167.03923332683127
Iteration: 4, Func. Count: 41, Neg. LLF: 160.691094676324
Iteration: 5, Func. Count: 51, Neg. LLF: 165.80416541860166
Iteration: 6, Func. Count: 61, Neg. LLF: 158.48310491686112
Iteration: 7, Func. Count: 70, Neg. LLF: 158.70315142699997
Iteration: 8, Func. Count: 80, Neg. LLF: 158.45806382233272
Iteration: 9, Func. Count: 90, Neg. LLF: 158.44148900804197
Iteration: 10, Func. Count: 99, Neg. LLF: 158.4408748326006
Iteration: 11, Func. Count: 108, Neg. LLF: 158.44054926780854
Iteration: 12, Func. Count: 117, Neg. LLF: 158.4403081353113
Iteration: 13, Func. Count: 126, Neg. LLF: 158.44002409892195
Iteration: 14, Func. Count: 135, Neg. LLF: 158.439316690664
Iteration: 15, Func. Count: 144, Neg. LLF: 158.43779575708382
Iteration: 16, Func. Count: 153, Neg. LLF: 158.4359020512665
Iteration: 17, Func. Count: 162, Neg. LLF: 158.4322302726846
Iteration: 18, Func. Count: 171, Neg. LLF: 158.4321345781556
Iteration: 19, Func. Count: 180, Neg. LLF: 158.43212334997705
Iteration: 20, Func. Count: 188, Neg. LLF: 158.43212334999413
Optimization terminated successfully (Exit mode 0)
Current function value: 158.43212334997705
Iterations: 20
Function evaluations: 188
Gradient evaluations: 20
Iteration: 1, Func. Count: 11, Neg. LLF: 163.66936052416895
Iteration: 2, Func. Count: 22, Neg. LLF: 163.00056872562124
Iteration: 3, Func. Count: 34, Neg. LLF: 163.50661017230965
Iteration: 4, Func. Count: 45, Neg. LLF: 160.56345913155675
Iteration: 5, Func. Count: 56, Neg. LLF: 172.2656976514084
Iteration: 6, Func. Count: 67, Neg. LLF: 158.4688615455008
Iteration: 7, Func. Count: 77, Neg. LLF: 158.4824598451098
Iteration: 8, Func. Count: 88, Neg. LLF: 158.4894551736937
Iteration: 9, Func. Count: 99, Neg. LLF: 158.441029700151
Iteration: 10, Func. Count: 109, Neg. LLF: 158.44085395144958
Iteration: 11, Func. Count: 119, Neg. LLF: 158.440443322078
Iteration: 12, Func. Count: 129, Neg. LLF: 158.43987493919465
Iteration: 13, Func. Count: 139, Neg. LLF: 158.43896623829616
Iteration: 14, Func. Count: 149, Neg. LLF: 158.4374425244834
Iteration: 15, Func. Count: 159, Neg. LLF: 158.43398604706476
Iteration: 16, Func. Count: 169, Neg. LLF: 158.43269479757322
Iteration: 17, Func. Count: 179, Neg. LLF: 158.43216791499117
Iteration: 18, Func. Count: 189, Neg. LLF: 158.43212575920847
Iteration: 19, Func. Count: 199, Neg. LLF: 158.43212336404255
Iteration: 20, Func. Count: 208, Neg. LLF: 158.43212339768752
Optimization terminated successfully (Exit mode 0)
Current function value: 158.43212336404255
Iterations: 20
Function evaluations: 208
Gradient evaluations: 20
Iteration: 1, Func. Count: 12, Neg. LLF: 163.7020645471742
Iteration: 2, Func. Count: 24, Neg. LLF: 161.52414432482968
Iteration: 3, Func. Count: 37, Neg. LLF: 163.793401142233
Iteration: 4, Func. Count: 49, Neg. LLF: 167.72772410408442
Iteration: 5, Func. Count: 61, Neg. LLF: 163.24022997283046
Iteration: 6, Func. Count: 73, Neg. LLF: 158.4601575278775
Iteration: 7, Func. Count: 84, Neg. LLF: 158.44221425026885
Iteration: 8, Func. Count: 95, Neg. LLF: 158.4414820731458
Iteration: 9, Func. Count: 106, Neg. LLF: 158.44121379148768
Iteration: 10, Func. Count: 117, Neg. LLF: 158.44083619305553
Iteration: 11, Func. Count: 128, Neg. LLF: 158.4406348067727
Iteration: 12, Func. Count: 139, Neg. LLF: 158.4401134696642
Iteration: 13, Func. Count: 150, Neg. LLF: 158.43936959264812
Iteration: 14, Func. Count: 161, Neg. LLF: 158.4373016940721
Iteration: 15, Func. Count: 172, Neg. LLF: 158.43312326121145
Iteration: 16, Func. Count: 183, Neg. LLF: 158.43234524516987
Iteration: 17, Func. Count: 194, Neg. LLF: 158.43214392212602
Iteration: 18, Func. Count: 205, Neg. LLF: 158.43212382957032
Iteration: 19, Func. Count: 215, Neg. LLF: 158.4321238889115
Optimization terminated successfully (Exit mode 0)
Current function value: 158.43212382957032
Iterations: 19
Function evaluations: 215
Gradient evaluations: 19
Iteration: 1, Func. Count: 9, Neg. LLF: 161.1749076043787
Iteration: 2, Func. Count: 18, Neg. LLF: 163.2945703915471
Iteration: 3, Func. Count: 27, Neg. LLF: 160.39726861478007
Iteration: 4, Func. Count: 36, Neg. LLF: 158.0831655715824
Iteration: 5, Func. Count: 44, Neg. LLF: 157.99891301713964
Iteration: 6, Func. Count: 52, Neg. LLF: 157.92642664798632
Iteration: 7, Func. Count: 60, Neg. LLF: 157.9130107225589
Iteration: 8, Func. Count: 68, Neg. LLF: 157.91084712777743
Iteration: 9, Func. Count: 76, Neg. LLF: 157.90998303590072
Iteration: 10, Func. Count: 84, Neg. LLF: 157.90926990665398
Iteration: 11, Func. Count: 92, Neg. LLF: 157.9091049757058
Iteration: 12, Func. Count: 100, Neg. LLF: 157.90908130899973
Iteration: 13, Func. Count: 108, Neg. LLF: 157.9090693219698
Iteration: 14, Func. Count: 116, Neg. LLF: 157.90904508999355
Iteration: 15, Func. Count: 124, Neg. LLF: 157.90900890776246
Iteration: 16, Func. Count: 132, Neg. LLF: 157.9089768593541
Iteration: 17, Func. Count: 140, Neg. LLF: 157.90896574025714
Iteration: 18, Func. Count: 148, Neg. LLF: 157.90896459868645
Iteration: 19, Func. Count: 155, Neg. LLF: 157.90896459868324
Optimization terminated successfully (Exit mode 0)
Current function value: 157.90896459868645
Iterations: 19
Function evaluations: 155
Gradient evaluations: 19
Iteration: 1, Func. Count: 10, Neg. LLF: 2103.644194111846
Iteration: 2, Func. Count: 20, Neg. LLF: 157.80185287490005
Iteration: 3, Func. Count: 30, Neg. LLF: 155.3421582734868
Iteration: 4, Func. Count: 39, Neg. LLF: 155.33475086851783
Iteration: 5, Func. Count: 48, Neg. LLF: 155.32897179117722
Iteration: 6, Func. Count: 57, Neg. LLF: 155.32879450683947
Iteration: 7, Func. Count: 66, Neg. LLF: 155.32878380013452
Iteration: 8, Func. Count: 74, Neg. LLF: 155.32878371714872
Optimization terminated successfully (Exit mode 0)
Current function value: 155.32878380013452
Iterations: 8
Function evaluations: 74
Gradient evaluations: 8
Iteration: 1, Func. Count: 11, Neg. LLF: 88042.67548191396
Iteration: 2, Func. Count: 22, Neg. LLF: 156.55677001585155
Iteration: 3, Func. Count: 33, Neg. LLF: 155.44869184601086
Iteration: 4, Func. Count: 43, Neg. LLF: 155.34667836550537
Iteration: 5, Func. Count: 53, Neg. LLF: 155.33477621690744
Iteration: 6, Func. Count: 63, Neg. LLF: 155.32939040047964
Iteration: 7, Func. Count: 73, Neg. LLF: 155.32879510168965
Iteration: 8, Func. Count: 83, Neg. LLF: 155.32878564227008
Iteration: 9, Func. Count: 93, Neg. LLF: 155.3287837821076
Iteration: 10, Func. Count: 102, Neg. LLF: 155.32878370633378
Optimization terminated successfully (Exit mode 0)
Current function value: 155.3287837821076
Iterations: 10
Function evaluations: 102
Gradient evaluations: 10
Iteration: 1, Func. Count: 12, Neg. LLF: 8604270.538165942
Iteration: 2, Func. Count: 24, Neg. LLF: 155.9492262773753
Iteration: 3, Func. Count: 35, Neg. LLF: 155.42172680441004
Iteration: 4, Func. Count: 46, Neg. LLF: 155.64076230339103
Iteration: 5, Func. Count: 58, Neg. LLF: 155.33994126132626
Iteration: 6, Func. Count: 69, Neg. LLF: 155.31945463280155
Iteration: 7, Func. Count: 80, Neg. LLF: 155.31689113625552
Iteration: 8, Func. Count: 91, Neg. LLF: 155.31253498904914
Iteration: 9, Func. Count: 102, Neg. LLF: 155.31180292218627
Iteration: 10, Func. Count: 113, Neg. LLF: 155.31070415120172
Iteration: 11, Func. Count: 124, Neg. LLF: 155.31068601151233
Iteration: 12, Func. Count: 134, Neg. LLF: 155.310685953143
Optimization terminated successfully (Exit mode 0)
Current function value: 155.31068601151233
Iterations: 12
Function evaluations: 134
Gradient evaluations: 12
Iteration: 1, Func. Count: 13, Neg. LLF: 5379.9259244687155
Iteration: 2, Func. Count: 26, Neg. LLF: 157.11039781619698
Iteration: 3, Func. Count: 39, Neg. LLF: 155.80474807048776
Iteration: 4, Func. Count: 52, Neg. LLF: 155.34457073192755
Iteration: 5, Func. Count: 64, Neg. LLF: 155.3306710978961
Iteration: 6, Func. Count: 76, Neg. LLF: 155.31642587888126
Iteration: 7, Func. Count: 88, Neg. LLF: 155.31384472761727
Iteration: 8, Func. Count: 100, Neg. LLF: 155.31121319210126
Iteration: 9, Func. Count: 112, Neg. LLF: 155.31074723840462
Iteration: 10, Func. Count: 124, Neg. LLF: 155.31068811659793
Iteration: 11, Func. Count: 136, Neg. LLF: 155.3106856991136
Iteration: 12, Func. Count: 147, Neg. LLF: 155.3106856535751
Optimization terminated successfully (Exit mode 0)
Current function value: 155.3106856991136
Iterations: 12
Function evaluations: 147
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 165.6098704372074
Iteration: 2, Func. Count: 20, Neg. LLF: 160.16962400662882
Iteration: 3, Func. Count: 31, Neg. LLF: 160.15990477828785
Iteration: 4, Func. Count: 42, Neg. LLF: 158.73640232129137
Iteration: 5, Func. Count: 52, Neg. LLF: 157.3117653869216
Iteration: 6, Func. Count: 61, Neg. LLF: 157.1875522851498
Iteration: 7, Func. Count: 70, Neg. LLF: 157.166003302852
Iteration: 8, Func. Count: 79, Neg. LLF: 157.13891521729795
Iteration: 9, Func. Count: 88, Neg. LLF: 157.09939938122594
Iteration: 10, Func. Count: 97, Neg. LLF: 157.0452583539841
Iteration: 11, Func. Count: 106, Neg. LLF: 156.98731851378275
Iteration: 12, Func. Count: 115, Neg. LLF: 156.96551454888916
Iteration: 13, Func. Count: 124, Neg. LLF: 156.9629192990425
Iteration: 14, Func. Count: 133, Neg. LLF: 156.9628115936338
Iteration: 15, Func. Count: 142, Neg. LLF: 156.96280474956444
Iteration: 16, Func. Count: 150, Neg. LLF: 156.96280474960116
Optimization terminated successfully (Exit mode 0)
Current function value: 156.96280474956444
Iterations: 16
Function evaluations: 150
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 1596.4560030830585
Iteration: 2, Func. Count: 22, Neg. LLF: 157.42865418321156
Iteration: 3, Func. Count: 33, Neg. LLF: 155.17905558202406
Iteration: 4, Func. Count: 43, Neg. LLF: 155.14446667344245
Iteration: 5, Func. Count: 53, Neg. LLF: 155.1179756593907
Iteration: 6, Func. Count: 63, Neg. LLF: 155.1125311274339
Iteration: 7, Func. Count: 73, Neg. LLF: 155.11118019831238
Iteration: 8, Func. Count: 83, Neg. LLF: 155.11094440142963
Iteration: 9, Func. Count: 93, Neg. LLF: 155.11090796047196
Iteration: 10, Func. Count: 102, Neg. LLF: 155.1109078810389
Optimization terminated successfully (Exit mode 0)
Current function value: 155.11090796047196
Iterations: 10
Function evaluations: 102
Gradient evaluations: 10
Iteration: 1, Func. Count: 12, Neg. LLF: 2646513.8692946746
Iteration: 2, Func. Count: 24, Neg. LLF: 156.12247660234
Iteration: 3, Func. Count: 36, Neg. LLF: 154.7691799027855
Iteration: 4, Func. Count: 47, Neg. LLF: 155.55204605182092
Iteration: 5, Func. Count: 59, Neg. LLF: 154.75976459169226
Iteration: 6, Func. Count: 71, Neg. LLF: 154.51073978868422
Iteration: 7, Func. Count: 82, Neg. LLF: 154.49915625874607
Iteration: 8, Func. Count: 93, Neg. LLF: 154.4933246444176
Iteration: 9, Func. Count: 104, Neg. LLF: 154.49077561156932
Iteration: 10, Func. Count: 115, Neg. LLF: 154.4903571825859
Iteration: 11, Func. Count: 126, Neg. LLF: 154.49033809310302
Iteration: 12, Func. Count: 136, Neg. LLF: 154.49033804765065
Optimization terminated successfully (Exit mode 0)
Current function value: 154.49033809310302
Iterations: 12
Function evaluations: 136
Gradient evaluations: 12
Iteration: 1, Func. Count: 13, Neg. LLF: 8629292.388725517
Iteration: 2, Func. Count: 26, Neg. LLF: 156.61383238987295
Iteration: 3, Func. Count: 39, Neg. LLF: 155.29205292841507
Iteration: 4, Func. Count: 51, Neg. LLF: 154.85374914029995
Iteration: 5, Func. Count: 63, Neg. LLF: 176.77618013575025
Iteration: 6, Func. Count: 76, Neg. LLF: 154.63881663801567
Iteration: 7, Func. Count: 89, Neg. LLF: 154.50901479090615
Iteration: 8, Func. Count: 101, Neg. LLF: 154.49803029514894
Iteration: 9, Func. Count: 113, Neg. LLF: 154.49361727928414
Iteration: 10, Func. Count: 125, Neg. LLF: 154.49140637199176
Iteration: 11, Func. Count: 137, Neg. LLF: 154.49046782822765
Iteration: 12, Func. Count: 149, Neg. LLF: 154.4903392132468
Iteration: 13, Func. Count: 161, Neg. LLF: 154.49033791243477
Iteration: 14, Func. Count: 172, Neg. LLF: 154.49033788979546
Optimization terminated successfully (Exit mode 0)
Current function value: 154.49033791243477
Iterations: 14
Function evaluations: 172
Gradient evaluations: 14
Iteration: 1, Func. Count: 14, Neg. LLF: 4106.027625474035
Iteration: 2, Func. Count: 28, Neg. LLF: 158.0842402873253
Iteration: 3, Func. Count: 42, Neg. LLF: 155.83647286563968
Iteration: 4, Func. Count: 56, Neg. LLF: 155.27936896181086
Iteration: 5, Func. Count: 69, Neg. LLF: 155.8034359510849
Iteration: 6, Func. Count: 83, Neg. LLF: 155.88164362329576
Iteration: 7, Func. Count: 97, Neg. LLF: 154.56831395757604
Iteration: 8, Func. Count: 110, Neg. LLF: 154.51459953460864
Iteration: 9, Func. Count: 123, Neg. LLF: 154.49862907021048
Iteration: 10, Func. Count: 136, Neg. LLF: 154.4923441080567
Iteration: 11, Func. Count: 149, Neg. LLF: 154.49142411220737
Iteration: 12, Func. Count: 162, Neg. LLF: 154.4905309000548
Iteration: 13, Func. Count: 175, Neg. LLF: 154.4903749437149
Iteration: 14, Func. Count: 188, Neg. LLF: 154.49034144045132
Iteration: 15, Func. Count: 201, Neg. LLF: 154.49033860397032
Iteration: 16, Func. Count: 214, Neg. LLF: 154.490337902136
Optimization terminated successfully (Exit mode 0)
Current function value: 154.490337902136
Iterations: 16
Function evaluations: 214
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 165.4249957816981
Iteration: 2, Func. Count: 22, Neg. LLF: 160.11460738523508
Iteration: 3, Func. Count: 34, Neg. LLF: 161.69561225424323
Iteration: 4, Func. Count: 46, Neg. LLF: 158.52100038802965
Iteration: 5, Func. Count: 57, Neg. LLF: 158.32806279126638
Iteration: 6, Func. Count: 68, Neg. LLF: 157.42002002229714
Iteration: 7, Func. Count: 78, Neg. LLF: 157.14778331249795
Iteration: 8, Func. Count: 88, Neg. LLF: 157.08219431587528
Iteration: 9, Func. Count: 98, Neg. LLF: 157.04123619760594
Iteration: 10, Func. Count: 108, Neg. LLF: 156.99175858628738
Iteration: 11, Func. Count: 118, Neg. LLF: 156.9426395977628
Iteration: 12, Func. Count: 128, Neg. LLF: 156.7614967266947
Iteration: 13, Func. Count: 138, Neg. LLF: 156.71428484434247
Iteration: 14, Func. Count: 148, Neg. LLF: 156.69813971109878
Iteration: 15, Func. Count: 158, Neg. LLF: 156.69752607612233
Iteration: 16, Func. Count: 168, Neg. LLF: 156.69749536015635
Iteration: 17, Func. Count: 178, Neg. LLF: 156.6974944091846
Optimization terminated successfully (Exit mode 0)
Current function value: 156.6974944091846
Iterations: 17
Function evaluations: 178
Gradient evaluations: 17
Iteration: 1, Func. Count: 12, Neg. LLF: 3385.2681384897505
Iteration: 2, Func. Count: 24, Neg. LLF: 158.45426636767908
Iteration: 3, Func. Count: 36, Neg. LLF: 155.09539143412522
Iteration: 4, Func. Count: 47, Neg. LLF: 155.07845811576158
Iteration: 5, Func. Count: 58, Neg. LLF: 155.31745157820365
Iteration: 6, Func. Count: 70, Neg. LLF: 155.03595839456585
Iteration: 7, Func. Count: 81, Neg. LLF: 155.0347151802509
Iteration: 8, Func. Count: 92, Neg. LLF: 155.0345777136279
Iteration: 9, Func. Count: 103, Neg. LLF: 155.03451425074746
Iteration: 10, Func. Count: 114, Neg. LLF: 155.03450924750882
Iteration: 11, Func. Count: 125, Neg. LLF: 155.03450871376057
Optimization terminated successfully (Exit mode 0)
Current function value: 155.03450871376057
Iterations: 11
Function evaluations: 125
Gradient evaluations: 11
Iteration: 1, Func. Count: 13, Neg. LLF: 2648442.071914001
Iteration: 2, Func. Count: 26, Neg. LLF: 156.24890279791273
Iteration: 3, Func. Count: 39, Neg. LLF: 155.04572351478114
Iteration: 4, Func. Count: 51, Neg. LLF: 154.93390717940426
Iteration: 5, Func. Count: 63, Neg. LLF: 165.44594597103114
Iteration: 6, Func. Count: 76, Neg. LLF: 154.62239000297848
Iteration: 7, Func. Count: 88, Neg. LLF: 154.4522075051158
Iteration: 8, Func. Count: 100, Neg. LLF: 154.49957761446777
Iteration: 9, Func. Count: 113, Neg. LLF: 154.40616381753378
Iteration: 10, Func. Count: 125, Neg. LLF: 154.39012473070457
Iteration: 11, Func. Count: 137, Neg. LLF: 154.37949996720616
Iteration: 12, Func. Count: 149, Neg. LLF: 154.3759827888725
Iteration: 13, Func. Count: 161, Neg. LLF: 154.37494344302596
Iteration: 14, Func. Count: 173, Neg. LLF: 154.37469230797905
Iteration: 15, Func. Count: 185, Neg. LLF: 154.37469107332203
Iteration: 16, Func. Count: 196, Neg. LLF: 154.37469104231815
Optimization terminated successfully (Exit mode 0)
Current function value: 154.37469107332203
Iterations: 16
Function evaluations: 196
Gradient evaluations: 16
Iteration: 1, Func. Count: 14, Neg. LLF: 532389.7047830689
Iteration: 2, Func. Count: 28, Neg. LLF: 156.54696248093532
Iteration: 3, Func. Count: 42, Neg. LLF: 155.39293111324693
Iteration: 4, Func. Count: 55, Neg. LLF: 154.79296431363093
Iteration: 5, Func. Count: 68, Neg. LLF: 162.9390861049045
Iteration: 6, Func. Count: 82, Neg. LLF: 154.46673133404934
Iteration: 7, Func. Count: 95, Neg. LLF: 154.431282622494
Iteration: 8, Func. Count: 108, Neg. LLF: 154.65073719054743
Iteration: 9, Func. Count: 122, Neg. LLF: 154.39742349302068
Iteration: 10, Func. Count: 135, Neg. LLF: 154.38251287662558
Iteration: 11, Func. Count: 148, Neg. LLF: 154.37591543354193
Iteration: 12, Func. Count: 161, Neg. LLF: 154.3747750546274
Iteration: 13, Func. Count: 174, Neg. LLF: 154.37469429891354
Iteration: 14, Func. Count: 187, Neg. LLF: 154.3746909944503
Iteration: 15, Func. Count: 199, Neg. LLF: 154.37469097563493
Optimization terminated successfully (Exit mode 0)
Current function value: 154.3746909944503
Iterations: 15
Function evaluations: 199
Gradient evaluations: 15
Iteration: 1, Func. Count: 15, Neg. LLF: 1093.0285821878
Iteration: 2, Func. Count: 30, Neg. LLF: 157.64363963518494
Iteration: 3, Func. Count: 45, Neg. LLF: 156.05448286001857
Iteration: 4, Func. Count: 60, Neg. LLF: 155.08818839031954
Iteration: 5, Func. Count: 74, Neg. LLF: 155.6006184182153
Iteration: 6, Func. Count: 90, Neg. LLF: 154.4782137106188
Iteration: 7, Func. Count: 104, Neg. LLF: 154.44724492046913
Iteration: 8, Func. Count: 118, Neg. LLF: 154.53799268646344
Iteration: 9, Func. Count: 133, Neg. LLF: 154.39301071743395
Iteration: 10, Func. Count: 147, Neg. LLF: 154.378944216284
Iteration: 11, Func. Count: 161, Neg. LLF: 154.37583097602257
Iteration: 12, Func. Count: 175, Neg. LLF: 154.37481398876062
Iteration: 13, Func. Count: 189, Neg. LLF: 154.3747074561713
Iteration: 14, Func. Count: 203, Neg. LLF: 154.37469217349843
Iteration: 15, Func. Count: 217, Neg. LLF: 154.3746910051518
Iteration: 16, Func. Count: 230, Neg. LLF: 154.37469101604233
Optimization terminated successfully (Exit mode 0)
Current function value: 154.3746910051518
Iterations: 16
Function evaluations: 230
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 161.35935671933765
Iteration: 2, Func. Count: 24, Neg. LLF: 157.00970233704146
Iteration: 3, Func. Count: 36, Neg. LLF: 157.85453168874147
Iteration: 4, Func. Count: 48, Neg. LLF: 155.70232502336896
Iteration: 5, Func. Count: 59, Neg. LLF: 155.12526576708268
Iteration: 6, Func. Count: 70, Neg. LLF: 168.44407084944288
Iteration: 7, Func. Count: 83, Neg. LLF: 154.74858399072113
Iteration: 8, Func. Count: 94, Neg. LLF: 154.8104823764326
Iteration: 9, Func. Count: 106, Neg. LLF: 154.52801348803635
Iteration: 10, Func. Count: 117, Neg. LLF: 154.4535702223842
Iteration: 11, Func. Count: 128, Neg. LLF: 154.39336275191826
Iteration: 12, Func. Count: 139, Neg. LLF: 154.20314072920925
Iteration: 13, Func. Count: 150, Neg. LLF: 154.00335637398234
Iteration: 14, Func. Count: 161, Neg. LLF: 155.02208064593492
Iteration: 15, Func. Count: 173, Neg. LLF: 154.3998257321255
Iteration: 16, Func. Count: 185, Neg. LLF: 153.7728031304712
Iteration: 17, Func. Count: 196, Neg. LLF: 153.7592136560521
Iteration: 18, Func. Count: 207, Neg. LLF: 153.75442317170817
Iteration: 19, Func. Count: 218, Neg. LLF: 153.7536087632885
Iteration: 20, Func. Count: 229, Neg. LLF: 153.75333112422499
Iteration: 21, Func. Count: 240, Neg. LLF: 153.75318071401074
Iteration: 22, Func. Count: 251, Neg. LLF: 153.75313268080242
Iteration: 23, Func. Count: 262, Neg. LLF: 153.75312320876773
Iteration: 24, Func. Count: 273, Neg. LLF: 153.75312121155292
Iteration: 25, Func. Count: 284, Neg. LLF: 153.75311908124468
Iteration: 26, Func. Count: 295, Neg. LLF: 153.75311737347923
Iteration: 27, Func. Count: 305, Neg. LLF: 153.75311737327485
Optimization terminated successfully (Exit mode 0)
Current function value: 153.75311737347923
Iterations: 27
Function evaluations: 305
Gradient evaluations: 27
Iteration: 1, Func. Count: 13, Neg. LLF: 646430.218260582
Iteration: 2, Func. Count: 26, Neg. LLF: 158.37752290476922
Iteration: 3, Func. Count: 39, Neg. LLF: 156.4802536240495
Iteration: 4, Func. Count: 52, Neg. LLF: 153.95880137580238
Iteration: 5, Func. Count: 64, Neg. LLF: 154.2506601499435
Iteration: 6, Func. Count: 77, Neg. LLF: 157.9473689706011
Iteration: 7, Func. Count: 90, Neg. LLF: 153.67018958351917
Iteration: 8, Func. Count: 102, Neg. LLF: 153.51419308907018
Iteration: 9, Func. Count: 114, Neg. LLF: 153.453991137091
Iteration: 10, Func. Count: 126, Neg. LLF: 153.42833808133912
Iteration: 11, Func. Count: 138, Neg. LLF: 153.40409637406117
Iteration: 12, Func. Count: 150, Neg. LLF: 153.39528099674274
Iteration: 13, Func. Count: 162, Neg. LLF: 153.38489902359103
Iteration: 14, Func. Count: 174, Neg. LLF: 153.40203300963447
Iteration: 15, Func. Count: 187, Neg. LLF: 155.62662744432438
Iteration: 16, Func. Count: 200, Neg. LLF: 155.3988481337245
Iteration: 17, Func. Count: 213, Neg. LLF: 154.05814867449098
Iteration: 18, Func. Count: 226, Neg. LLF: 153.79674490303725
Iteration: 19, Func. Count: 239, Neg. LLF: 153.36510678891474
Iteration: 20, Func. Count: 252, Neg. LLF: 153.3402945121605
Iteration: 21, Func. Count: 264, Neg. LLF: 153.33744058506718
Iteration: 22, Func. Count: 276, Neg. LLF: 153.33576021690894
Iteration: 23, Func. Count: 288, Neg. LLF: 153.33474815045994
Iteration: 24, Func. Count: 300, Neg. LLF: 153.33460240577017
Iteration: 25, Func. Count: 312, Neg. LLF: 153.33457966522104
Iteration: 26, Func. Count: 324, Neg. LLF: 153.33457608275586
Iteration: 27, Func. Count: 335, Neg. LLF: 153.33457607497652
Optimization terminated successfully (Exit mode 0)
Current function value: 153.33457608275586
Iterations: 27
Function evaluations: 335
Gradient evaluations: 27
Iteration: 1, Func. Count: 14, Neg. LLF: 648432.2462536343
Iteration: 2, Func. Count: 28, Neg. LLF: 155.23427894179548
Iteration: 3, Func. Count: 42, Neg. LLF: 171.14023672075461
Iteration: 4, Func. Count: 56, Neg. LLF: 155.93388279881538
Iteration: 5, Func. Count: 70, Neg. LLF: 171.22486509955093
Iteration: 6, Func. Count: 84, Neg. LLF: 154.17052767469232
Iteration: 7, Func. Count: 98, Neg. LLF: 154.30988697592036
Iteration: 8, Func. Count: 112, Neg. LLF: 157.260984890114
Iteration: 9, Func. Count: 126, Neg. LLF: 153.826646091112
Iteration: 10, Func. Count: 140, Neg. LLF: 156.24332152682052
Iteration: 11, Func. Count: 154, Neg. LLF: 153.36777961048023
Iteration: 12, Func. Count: 167, Neg. LLF: 153.3512486331377
Iteration: 13, Func. Count: 180, Neg. LLF: 153.34278637460093
Iteration: 14, Func. Count: 194, Neg. LLF: 153.30992515093834
Iteration: 15, Func. Count: 207, Neg. LLF: 153.30139857409054
Iteration: 16, Func. Count: 220, Neg. LLF: 153.29833971600738
Iteration: 17, Func. Count: 233, Neg. LLF: 153.29813415172447
Iteration: 18, Func. Count: 246, Neg. LLF: 153.29812376547272
Iteration: 19, Func. Count: 259, Neg. LLF: 153.29812296136362
Optimization terminated successfully (Exit mode 0)
Current function value: 153.29812296136362
Iterations: 19
Function evaluations: 259
Gradient evaluations: 19
Iteration: 1, Func. Count: 15, Neg. LLF: 4491663.384203146
Iteration: 2, Func. Count: 30, Neg. LLF: 195.12676885010777
Iteration: 3, Func. Count: 45, Neg. LLF: 154.58767957448373
Iteration: 4, Func. Count: 59, Neg. LLF: 155.10817619319099
Iteration: 5, Func. Count: 74, Neg. LLF: 168.08201536533414
Iteration: 6, Func. Count: 89, Neg. LLF: 153.70216805084812
Iteration: 7, Func. Count: 103, Neg. LLF: 154.01378335223345
Iteration: 8, Func. Count: 118, Neg. LLF: 153.64026193658322
Iteration: 9, Func. Count: 133, Neg. LLF: 153.69308164248486
Iteration: 10, Func. Count: 148, Neg. LLF: 153.40183556136827
Iteration: 11, Func. Count: 162, Neg. LLF: 155.60035973250226
Iteration: 12, Func. Count: 177, Neg. LLF: 154.2361615045543
Iteration: 13, Func. Count: 192, Neg. LLF: 153.99591934544367
Iteration: 14, Func. Count: 207, Neg. LLF: 153.38804480278367
Iteration: 15, Func. Count: 222, Neg. LLF: 153.91827418335336
Iteration: 16, Func. Count: 237, Neg. LLF: 153.26953377683722
Iteration: 17, Func. Count: 251, Neg. LLF: 153.26239730492466
Iteration: 18, Func. Count: 265, Neg. LLF: 153.25893021330114
Iteration: 19, Func. Count: 279, Neg. LLF: 153.25753322881158
Iteration: 20, Func. Count: 293, Neg. LLF: 153.25702753985797
Iteration: 21, Func. Count: 307, Neg. LLF: 153.2568085530128
Iteration: 22, Func. Count: 321, Neg. LLF: 153.2567441326397
Iteration: 23, Func. Count: 335, Neg. LLF: 153.25673473733906
Iteration: 24, Func. Count: 349, Neg. LLF: 153.25673385883886
Optimization terminated successfully (Exit mode 0)
Current function value: 153.25673385883886
Iterations: 24
Function evaluations: 349
Gradient evaluations: 24
Iteration: 1, Func. Count: 16, Neg. LLF: 14208.260135923385
Iteration: 2, Func. Count: 32, Neg. LLF: 701.6010285763723
Iteration: 3, Func. Count: 48, Neg. LLF: 158.53376471337273
Iteration: 4, Func. Count: 64, Neg. LLF: 161.24552399649286
Iteration: 5, Func. Count: 80, Neg. LLF: 160.4147912863616
Iteration: 6, Func. Count: 96, Neg. LLF: 154.26785140917934
Iteration: 7, Func. Count: 112, Neg. LLF: 160.04095106408872
Iteration: 8, Func. Count: 128, Neg. LLF: 154.48811970005022
Iteration: 9, Func. Count: 144, Neg. LLF: 153.77593346779022
Iteration: 10, Func. Count: 160, Neg. LLF: 153.50168837540704
Iteration: 11, Func. Count: 175, Neg. LLF: 153.4747492616125
Iteration: 12, Func. Count: 191, Neg. LLF: 154.01991286048184
Iteration: 13, Func. Count: 207, Neg. LLF: 153.327910005059
Iteration: 14, Func. Count: 222, Neg. LLF: 153.45293107338534
Iteration: 15, Func. Count: 238, Neg. LLF: 153.28397261097152
Iteration: 16, Func. Count: 253, Neg. LLF: 153.2664741414329
Iteration: 17, Func. Count: 268, Neg. LLF: 153.2614169200834
Iteration: 18, Func. Count: 283, Neg. LLF: 153.25892089285625
Iteration: 19, Func. Count: 298, Neg. LLF: 153.2570387795599
Iteration: 20, Func. Count: 313, Neg. LLF: 153.25675034643064
Iteration: 21, Func. Count: 328, Neg. LLF: 153.25673515024792
Iteration: 22, Func. Count: 343, Neg. LLF: 153.2567339332144
Iteration: 23, Func. Count: 357, Neg. LLF: 153.2567339655229
Optimization terminated successfully (Exit mode 0)
Current function value: 153.2567339332144
Iterations: 23
Function evaluations: 357
Gradient evaluations: 23
Iteration: 1, Func. Count: 6, Neg. LLF: 4439.299000643446
Iteration: 2, Func. Count: 12, Neg. LLF: 157.7478453711047
Iteration: 3, Func. Count: 18, Neg. LLF: 155.34604773018646
Iteration: 4, Func. Count: 23, Neg. LLF: 155.3347240461004
Iteration: 5, Func. Count: 28, Neg. LLF: 155.3297035852346
Iteration: 6, Func. Count: 33, Neg. LLF: 155.32890380250853
Iteration: 7, Func. Count: 38, Neg. LLF: 155.32878542077955
Iteration: 8, Func. Count: 43, Neg. LLF: 155.32878378384595
Iteration: 9, Func. Count: 47, Neg. LLF: 155.3287837008974
Optimization terminated successfully (Exit mode 0)
Current function value: 155.32878378384595
Iterations: 9
Function evaluations: 47
Gradient evaluations: 9
Iteration: 1, Func. Count: 5, Neg. LLF: 162.7819432403278
Iteration: 2, Func. Count: 10, Neg. LLF: 162.0084493378743
Iteration: 3, Func. Count: 15, Neg. LLF: 160.7331061741051
Iteration: 4, Func. Count: 19, Neg. LLF: 160.38309713668144
Iteration: 5, Func. Count: 23, Neg. LLF: 160.19434442473022
Iteration: 6, Func. Count: 27, Neg. LLF: 160.17030856365338
Iteration: 7, Func. Count: 31, Neg. LLF: 160.16532539407063
Iteration: 8, Func. Count: 35, Neg. LLF: 160.16049311346586
Iteration: 9, Func. Count: 39, Neg. LLF: 160.153844485347
Iteration: 10, Func. Count: 43, Neg. LLF: 160.1504586058014
Iteration: 11, Func. Count: 47, Neg. LLF: 160.14955914847576
Iteration: 12, Func. Count: 51, Neg. LLF: 160.1494571719035
Iteration: 13, Func. Count: 54, Neg. LLF: 160.1494571718929
Optimization terminated successfully (Exit mode 0)
Current function value: 160.1494571719035
Iterations: 13
Function evaluations: 54
Gradient evaluations: 13
Iteration: 1, Func. Count: 6, Neg. LLF: 2040.724280879911
Iteration: 2, Func. Count: 13, Neg. LLF: 157.65275294383437
Iteration: 3, Func. Count: 19, Neg. LLF: 156.4661176955969
Iteration: 4, Func. Count: 24, Neg. LLF: 168.02110816935192
Iteration: 5, Func. Count: 31, Neg. LLF: 156.43307110947896
Iteration: 6, Func. Count: 36, Neg. LLF: 156.43173795598943
Iteration: 7, Func. Count: 41, Neg. LLF: 156.4311049466807
Iteration: 8, Func. Count: 46, Neg. LLF: 156.431098885355
Iteration: 9, Func. Count: 50, Neg. LLF: 156.43109888529983
Optimization terminated successfully (Exit mode 0)
Current function value: 156.431098885355
Iterations: 9
Function evaluations: 50
Gradient evaluations: 9
Iteration: 1, Func. Count: 7, Neg. LLF: 22581862.86186389
Iteration: 2, Func. Count: 15, Neg. LLF: 169.46851042991378
Iteration: 3, Func. Count: 22, Neg. LLF: 157.16666725464074
Iteration: 4, Func. Count: 29, Neg. LLF: 156.78258586839522
Iteration: 5, Func. Count: 36, Neg. LLF: 156.5372906066654
Iteration: 6, Func. Count: 42, Neg. LLF: 156.44286295128157
Iteration: 7, Func. Count: 48, Neg. LLF: 156.43158338817287
Iteration: 8, Func. Count: 54, Neg. LLF: 156.43112545897648
Iteration: 9, Func. Count: 60, Neg. LLF: 156.43110735477
Iteration: 10, Func. Count: 66, Neg. LLF: 156.43109907204587
Iteration: 11, Func. Count: 71, Neg. LLF: 156.43109908011672
Optimization terminated successfully (Exit mode 0)
Current function value: 156.43109907204587
Iterations: 11
Function evaluations: 71
Gradient evaluations: 11
Iteration: 1, Func. Count: 8, Neg. LLF: 22825507.15443453
Iteration: 2, Func. Count: 17, Neg. LLF: 235.3871680698523
Iteration: 3, Func. Count: 25, Neg. LLF: 158.37980090640008
Iteration: 4, Func. Count: 33, Neg. LLF: 156.8030093485711
Iteration: 5, Func. Count: 41, Neg. LLF: 156.49386973560246
Iteration: 6, Func. Count: 48, Neg. LLF: 156.4792872895083
Iteration: 7, Func. Count: 55, Neg. LLF: 156.46845775031002
Iteration: 8, Func. Count: 62, Neg. LLF: 156.46091351022042
Iteration: 9, Func. Count: 69, Neg. LLF: 156.45967086293842
Iteration: 10, Func. Count: 76, Neg. LLF: 156.45941751944258
Iteration: 11, Func. Count: 83, Neg. LLF: 156.4592617755952
Iteration: 12, Func. Count: 90, Neg. LLF: 156.45924481443186
Iteration: 13, Func. Count: 97, Neg. LLF: 156.4592438998405
Optimization terminated successfully (Exit mode 0)
Current function value: 156.4592438998405
Iterations: 13
Function evaluations: 97
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 22877616.9989915
Iteration: 2, Func. Count: 19, Neg. LLF: 244.76855327894717
Iteration: 3, Func. Count: 28, Neg. LLF: 161.6769766916679
Iteration: 4, Func. Count: 37, Neg. LLF: 156.75196881040438
Iteration: 5, Func. Count: 45, Neg. LLF: 156.6242688539733
Iteration: 6, Func. Count: 53, Neg. LLF: 156.50805510213712
Iteration: 7, Func. Count: 61, Neg. LLF: 156.47086964946442
Iteration: 8, Func. Count: 69, Neg. LLF: 156.46511316862592
Iteration: 9, Func. Count: 77, Neg. LLF: 156.46154778026434
Iteration: 10, Func. Count: 85, Neg. LLF: 156.45978395728102
Iteration: 11, Func. Count: 93, Neg. LLF: 156.45930755761523
Iteration: 12, Func. Count: 101, Neg. LLF: 156.45925631077006
Iteration: 13, Func. Count: 109, Neg. LLF: 156.45924488920534
Iteration: 14, Func. Count: 117, Neg. LLF: 156.45924389768942
Optimization terminated successfully (Exit mode 0)
Current function value: 156.45924389768942
Iterations: 14
Function evaluations: 117
Gradient evaluations: 14
Iteration: 1, Func. Count: 6, Neg. LLF: 166.22662232390377
Iteration: 2, Func. Count: 12, Neg. LLF: 160.81590990807078
Iteration: 3, Func. Count: 18, Neg. LLF: 160.7568199220094
Iteration: 4, Func. Count: 24, Neg. LLF: 158.58341619926915
Iteration: 5, Func. Count: 29, Neg. LLF: 158.485471822316
Iteration: 6, Func. Count: 34, Neg. LLF: 158.41260008941944
Iteration: 7, Func. Count: 39, Neg. LLF: 158.3897446640835
Iteration: 8, Func. Count: 44, Neg. LLF: 158.37245968384158
Iteration: 9, Func. Count: 49, Neg. LLF: 158.36944205333947
Iteration: 10, Func. Count: 54, Neg. LLF: 158.36633378362498
Iteration: 11, Func. Count: 59, Neg. LLF: 158.35509666609008
Iteration: 12, Func. Count: 64, Neg. LLF: 158.35113156014245
Iteration: 13, Func. Count: 69, Neg. LLF: 158.34980114195744
Iteration: 14, Func. Count: 74, Neg. LLF: 158.34973492901432
Iteration: 15, Func. Count: 79, Neg. LLF: 158.3497341332833
Optimization terminated successfully (Exit mode 0)
Current function value: 158.3497341332833
Iterations: 15
Function evaluations: 79
Gradient evaluations: 15
Iteration: 1, Func. Count: 7, Neg. LLF: 2349390.864569498
Iteration: 2, Func. Count: 15, Neg. LLF: 160.76720736845562
Iteration: 3, Func. Count: 22, Neg. LLF: 156.24011602613444
Iteration: 4, Func. Count: 29, Neg. LLF: 156.0171776450486
Iteration: 5, Func. Count: 35, Neg. LLF: 155.99673009752317
Iteration: 6, Func. Count: 41, Neg. LLF: 155.98424790807863
Iteration: 7, Func. Count: 47, Neg. LLF: 155.9826703707289
Iteration: 8, Func. Count: 53, Neg. LLF: 155.98157583899928
Iteration: 9, Func. Count: 59, Neg. LLF: 155.98148831290166
Iteration: 10, Func. Count: 65, Neg. LLF: 155.98148438371632
Iteration: 11, Func. Count: 70, Neg. LLF: 155.98148438376114
Optimization terminated successfully (Exit mode 0)
Current function value: 155.98148438371632
Iterations: 11
Function evaluations: 70
Gradient evaluations: 11
Iteration: 1, Func. Count: 8, Neg. LLF: 22571863.36613512
Iteration: 2, Func. Count: 17, Neg. LLF: 205.2784140041222
Iteration: 3, Func. Count: 25, Neg. LLF: 158.0759210925449
Iteration: 4, Func. Count: 33, Neg. LLF: 157.09198925517475
Iteration: 5, Func. Count: 41, Neg. LLF: 156.95556085978447
Iteration: 6, Func. Count: 49, Neg. LLF: 156.85803851342007
Iteration: 7, Func. Count: 57, Neg. LLF: 155.37846260408114
Iteration: 8, Func. Count: 64, Neg. LLF: 155.36590029936994
Iteration: 9, Func. Count: 71, Neg. LLF: 155.4209250703318
Iteration: 10, Func. Count: 79, Neg. LLF: 155.32209764371703
Iteration: 11, Func. Count: 86, Neg. LLF: 155.31828686688715
Iteration: 12, Func. Count: 93, Neg. LLF: 155.30912718512633
Iteration: 13, Func. Count: 100, Neg. LLF: 155.3080574457813
Iteration: 14, Func. Count: 107, Neg. LLF: 155.30747016847087
Iteration: 15, Func. Count: 114, Neg. LLF: 155.30740129657352
Iteration: 16, Func. Count: 121, Neg. LLF: 155.3073920010031
Iteration: 17, Func. Count: 127, Neg. LLF: 155.30739200105833
Optimization terminated successfully (Exit mode 0)
Current function value: 155.3073920010031
Iterations: 17
Function evaluations: 127
Gradient evaluations: 17
Iteration: 1, Func. Count: 9, Neg. LLF: 22703750.52552613
Iteration: 2, Func. Count: 19, Neg. LLF: 183.3648335978622
Iteration: 3, Func. Count: 28, Neg. LLF: 157.93411466717075
Iteration: 4, Func. Count: 37, Neg. LLF: 156.97386284251075
Iteration: 5, Func. Count: 46, Neg. LLF: 156.87563759961304
Iteration: 6, Func. Count: 55, Neg. LLF: 156.8515289161637
Iteration: 7, Func. Count: 64, Neg. LLF: 156.88257243184685
Iteration: 8, Func. Count: 73, Neg. LLF: 160.0510396952798
Iteration: 9, Func. Count: 82, Neg. LLF: 156.68326407362315
Iteration: 10, Func. Count: 91, Neg. LLF: 155.39440156319418
Iteration: 11, Func. Count: 99, Neg. LLF: 155.35653871269605
Iteration: 12, Func. Count: 107, Neg. LLF: 155.33288298681444
Iteration: 13, Func. Count: 115, Neg. LLF: 155.32371143870895
Iteration: 14, Func. Count: 123, Neg. LLF: 155.31286313797804
Iteration: 15, Func. Count: 131, Neg. LLF: 155.3094439060228
Iteration: 16, Func. Count: 139, Neg. LLF: 155.30757193366225
Iteration: 17, Func. Count: 147, Neg. LLF: 155.30741055646496
Iteration: 18, Func. Count: 155, Neg. LLF: 155.30739296537524
Iteration: 19, Func. Count: 163, Neg. LLF: 155.30739169919897
Iteration: 20, Func. Count: 170, Neg. LLF: 155.3073917140772
Optimization terminated successfully (Exit mode 0)
Current function value: 155.30739169919897
Iterations: 20
Function evaluations: 170
Gradient evaluations: 20
Iteration: 1, Func. Count: 10, Neg. LLF: 22752525.58327534
Iteration: 2, Func. Count: 21, Neg. LLF: 181.74305422399505
Iteration: 3, Func. Count: 31, Neg. LLF: 159.8608964992839
Iteration: 4, Func. Count: 41, Neg. LLF: 157.6741740364321
Iteration: 5, Func. Count: 51, Neg. LLF: 157.49845704189187
Iteration: 6, Func. Count: 61, Neg. LLF: 157.3880156490028
Iteration: 7, Func. Count: 71, Neg. LLF: 156.7456259356421
Iteration: 8, Func. Count: 81, Neg. LLF: 155.4284047465874
Iteration: 9, Func. Count: 90, Neg. LLF: 155.65806184424858
Iteration: 10, Func. Count: 100, Neg. LLF: 157.15425107309363
Iteration: 11, Func. Count: 110, Neg. LLF: 155.32238590193026
Iteration: 12, Func. Count: 119, Neg. LLF: 155.3106520842245
Iteration: 13, Func. Count: 128, Neg. LLF: 155.30918482389617
Iteration: 14, Func. Count: 137, Neg. LLF: 155.30846995585784
Iteration: 15, Func. Count: 146, Neg. LLF: 155.30826447484628
Iteration: 16, Func. Count: 155, Neg. LLF: 155.30763831708012
Iteration: 17, Func. Count: 164, Neg. LLF: 155.30743619617897
Iteration: 18, Func. Count: 173, Neg. LLF: 155.30739399456695
Iteration: 19, Func. Count: 182, Neg. LLF: 155.30739175331263
Iteration: 20, Func. Count: 190, Neg. LLF: 155.30739179333688
Optimization terminated successfully (Exit mode 0)
Current function value: 155.30739175331263
Iterations: 20
Function evaluations: 190
Gradient evaluations: 20
Iteration: 1, Func. Count: 7, Neg. LLF: 165.93136714275653
Iteration: 2, Func. Count: 14, Neg. LLF: 160.74502236634996
Iteration: 3, Func. Count: 21, Neg. LLF: 160.75604640635302
Iteration: 4, Func. Count: 28, Neg. LLF: 159.85537628197156
Iteration: 5, Func. Count: 36, Neg. LLF: 158.58624274227918
Iteration: 6, Func. Count: 42, Neg. LLF: 158.46173920633174
Iteration: 7, Func. Count: 48, Neg. LLF: 158.3956217248462
Iteration: 8, Func. Count: 54, Neg. LLF: 158.37175912425198
Iteration: 9, Func. Count: 60, Neg. LLF: 158.35272545990588
Iteration: 10, Func. Count: 66, Neg. LLF: 158.34960022061017
Iteration: 11, Func. Count: 72, Neg. LLF: 158.34184438634017
Iteration: 12, Func. Count: 78, Neg. LLF: 158.33072467495217
Iteration: 13, Func. Count: 84, Neg. LLF: 158.32490937381738
Iteration: 14, Func. Count: 90, Neg. LLF: 158.32298946810516
Iteration: 15, Func. Count: 96, Neg. LLF: 158.32289490644476
Iteration: 16, Func. Count: 102, Neg. LLF: 158.32289427510918
Optimization terminated successfully (Exit mode 0)
Current function value: 158.32289427510918
Iterations: 16
Function evaluations: 102
Gradient evaluations: 16
Iteration: 1, Func. Count: 8, Neg. LLF: 22429800.4181509
Iteration: 2, Func. Count: 17, Neg. LLF: 167.63082264855765
Iteration: 3, Func. Count: 25, Neg. LLF: 156.3815973815962
Iteration: 4, Func. Count: 33, Neg. LLF: 156.447880390538
Iteration: 5, Func. Count: 41, Neg. LLF: 155.9151970297571
Iteration: 6, Func. Count: 49, Neg. LLF: 155.83481572922256
Iteration: 7, Func. Count: 56, Neg. LLF: 155.82968149621826
Iteration: 8, Func. Count: 63, Neg. LLF: 155.8240693182587
Iteration: 9, Func. Count: 70, Neg. LLF: 155.82374055319127
Iteration: 10, Func. Count: 77, Neg. LLF: 155.82373371104256
Iteration: 11, Func. Count: 83, Neg. LLF: 155.823733711088
Optimization terminated successfully (Exit mode 0)
Current function value: 155.82373371104256
Iterations: 11
Function evaluations: 83
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 22613821.108550772
Iteration: 2, Func. Count: 19, Neg. LLF: 207.9992476359428
Iteration: 3, Func. Count: 28, Neg. LLF: 158.42261578372913
Iteration: 4, Func. Count: 37, Neg. LLF: 157.18031617306352
Iteration: 5, Func. Count: 46, Neg. LLF: 157.0597200652483
Iteration: 6, Func. Count: 55, Neg. LLF: 156.6690188131717
Iteration: 7, Func. Count: 64, Neg. LLF: 155.47170240753312
Iteration: 8, Func. Count: 73, Neg. LLF: 155.40109939798023
Iteration: 9, Func. Count: 82, Neg. LLF: 155.31075555121407
Iteration: 10, Func. Count: 90, Neg. LLF: 155.2922863938403
Iteration: 11, Func. Count: 98, Neg. LLF: 155.2770509054857
Iteration: 12, Func. Count: 106, Neg. LLF: 155.2765364009977
Iteration: 13, Func. Count: 114, Neg. LLF: 155.27602413130256
Iteration: 14, Func. Count: 122, Neg. LLF: 155.27559029933013
Iteration: 15, Func. Count: 130, Neg. LLF: 155.27530451494744
Iteration: 16, Func. Count: 138, Neg. LLF: 155.27522592479332
Iteration: 17, Func. Count: 146, Neg. LLF: 155.27520532758658
Iteration: 18, Func. Count: 154, Neg. LLF: 155.27519939680278
Iteration: 19, Func. Count: 162, Neg. LLF: 155.2751977759898
Iteration: 20, Func. Count: 169, Neg. LLF: 155.27519777596055
Optimization terminated successfully (Exit mode 0)
Current function value: 155.2751977759898
Iterations: 20
Function evaluations: 169
Gradient evaluations: 20
Iteration: 1, Func. Count: 10, Neg. LLF: 22753439.821525265
Iteration: 2, Func. Count: 21, Neg. LLF: 183.09827103234687
Iteration: 3, Func. Count: 31, Neg. LLF: 158.93306457851702
Iteration: 4, Func. Count: 41, Neg. LLF: 156.69189822702955
Iteration: 5, Func. Count: 51, Neg. LLF: 156.9290279795335
Iteration: 6, Func. Count: 61, Neg. LLF: 156.86124750906149
Iteration: 7, Func. Count: 71, Neg. LLF: 156.87984104802956
Iteration: 8, Func. Count: 81, Neg. LLF: 164.36222078415008
Iteration: 9, Func. Count: 91, Neg. LLF: 155.6541608823421
Iteration: 10, Func. Count: 101, Neg. LLF: 155.30366531699997
Iteration: 11, Func. Count: 110, Neg. LLF: 155.30301482834025
Iteration: 12, Func. Count: 120, Neg. LLF: 155.28842532731386
Iteration: 13, Func. Count: 129, Neg. LLF: 155.28319959525612
Iteration: 14, Func. Count: 138, Neg. LLF: 155.27984126491071
Iteration: 15, Func. Count: 147, Neg. LLF: 155.2778413763329
Iteration: 16, Func. Count: 156, Neg. LLF: 155.2759977037297
Iteration: 17, Func. Count: 165, Neg. LLF: 155.27531274778
Iteration: 18, Func. Count: 174, Neg. LLF: 155.27523316874377
Iteration: 19, Func. Count: 183, Neg. LLF: 155.27520216044275
Iteration: 20, Func. Count: 192, Neg. LLF: 155.275198068628
Iteration: 21, Func. Count: 200, Neg. LLF: 155.2751980741019
Optimization terminated successfully (Exit mode 0)
Current function value: 155.275198068628
Iterations: 21
Function evaluations: 200
Gradient evaluations: 21
Iteration: 1, Func. Count: 11, Neg. LLF: 22767190.70728425
Iteration: 2, Func. Count: 23, Neg. LLF: 181.1850024203446
Iteration: 3, Func. Count: 34, Neg. LLF: 162.73849940424833
Iteration: 4, Func. Count: 45, Neg. LLF: 156.88856878927132
Iteration: 5, Func. Count: 56, Neg. LLF: 157.33456927024744
Iteration: 6, Func. Count: 67, Neg. LLF: 157.24435887941323
Iteration: 7, Func. Count: 78, Neg. LLF: 157.1829080964075
Iteration: 8, Func. Count: 89, Neg. LLF: 155.77086158036303
Iteration: 9, Func. Count: 100, Neg. LLF: 157.25730518839663
Iteration: 10, Func. Count: 111, Neg. LLF: 155.31605793035163
Iteration: 11, Func. Count: 121, Neg. LLF: 155.28007972664147
Iteration: 12, Func. Count: 131, Neg. LLF: 155.27772850073924
Iteration: 13, Func. Count: 141, Neg. LLF: 155.27699054375185
Iteration: 14, Func. Count: 151, Neg. LLF: 155.27613576193983
Iteration: 15, Func. Count: 161, Neg. LLF: 155.27584685268613
Iteration: 16, Func. Count: 171, Neg. LLF: 155.27550334770035
Iteration: 17, Func. Count: 181, Neg. LLF: 155.27531009959029
Iteration: 18, Func. Count: 191, Neg. LLF: 155.27522823542276
Iteration: 19, Func. Count: 201, Neg. LLF: 155.27520796827488
Iteration: 20, Func. Count: 211, Neg. LLF: 155.27520011916138
Iteration: 21, Func. Count: 221, Neg. LLF: 155.2751978781078
Iteration: 22, Func. Count: 230, Neg. LLF: 155.2751979186749
Optimization terminated successfully (Exit mode 0)
Current function value: 155.2751978781078
Iterations: 22
Function evaluations: 230
Gradient evaluations: 22
Iteration: 1, Func. Count: 8, Neg. LLF: 162.43681939425483
Iteration: 2, Func. Count: 16, Neg. LLF: 157.85970419975632
Iteration: 3, Func. Count: 24, Neg. LLF: 158.44735699576452
Iteration: 4, Func. Count: 33, Neg. LLF: 157.91449397572686
Iteration: 5, Func. Count: 41, Neg. LLF: 156.41165886139945
Iteration: 6, Func. Count: 48, Neg. LLF: 156.31148959787242
Iteration: 7, Func. Count: 55, Neg. LLF: 156.2520270984793
Iteration: 8, Func. Count: 62, Neg. LLF: 156.22988409046667
Iteration: 9, Func. Count: 69, Neg. LLF: 156.16621788924127
Iteration: 10, Func. Count: 76, Neg. LLF: 156.12099881935245
Iteration: 11, Func. Count: 83, Neg. LLF: 156.0699420622777
Iteration: 12, Func. Count: 90, Neg. LLF: 156.05832460535717
Iteration: 13, Func. Count: 97, Neg. LLF: 156.04836415700305
Iteration: 14, Func. Count: 104, Neg. LLF: 156.0462742472451
Iteration: 15, Func. Count: 111, Neg. LLF: 156.0457522062044
Iteration: 16, Func. Count: 118, Neg. LLF: 156.04570725114195
Iteration: 17, Func. Count: 125, Neg. LLF: 156.04570542229132
Iteration: 18, Func. Count: 131, Neg. LLF: 156.04570542229848
Optimization terminated successfully (Exit mode 0)
Current function value: 156.04570542229132
Iterations: 18
Function evaluations: 131
Gradient evaluations: 18
Iteration: 1, Func. Count: 9, Neg. LLF: 22479528.32970536
Iteration: 2, Func. Count: 19, Neg. LLF: 233.50627251616172
Iteration: 3, Func. Count: 28, Neg. LLF: 154.9373065392251
Iteration: 4, Func. Count: 37, Neg. LLF: 154.3713698807717
Iteration: 5, Func. Count: 45, Neg. LLF: 156.4773521259392
Iteration: 6, Func. Count: 54, Neg. LLF: 154.0933641887009
Iteration: 7, Func. Count: 62, Neg. LLF: 154.07634012370775
Iteration: 8, Func. Count: 70, Neg. LLF: 154.05817755996762
Iteration: 9, Func. Count: 79, Neg. LLF: 153.98837238310784
Iteration: 10, Func. Count: 87, Neg. LLF: 153.96556075432198
Iteration: 11, Func. Count: 95, Neg. LLF: 153.95436369454197
Iteration: 12, Func. Count: 103, Neg. LLF: 153.94460892404538
Iteration: 13, Func. Count: 111, Neg. LLF: 153.94385375362282
Iteration: 14, Func. Count: 119, Neg. LLF: 153.94383152534533
Iteration: 15, Func. Count: 126, Neg. LLF: 153.9438314997955
Optimization terminated successfully (Exit mode 0)
Current function value: 153.94383152534533
Iterations: 15
Function evaluations: 126
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 22733871.45727868
Iteration: 2, Func. Count: 21, Neg. LLF: 250.96639707494634
Iteration: 3, Func. Count: 31, Neg. LLF: 157.1779114862302
Iteration: 4, Func. Count: 41, Neg. LLF: 155.05472881494876
Iteration: 5, Func. Count: 50, Neg. LLF: 157.16166625708968
Iteration: 6, Func. Count: 60, Neg. LLF: 154.85393433330057
Iteration: 7, Func. Count: 70, Neg. LLF: 154.16631832044598
Iteration: 8, Func. Count: 79, Neg. LLF: 154.1083388317037
Iteration: 9, Func. Count: 88, Neg. LLF: 154.17907906248067
Iteration: 10, Func. Count: 98, Neg. LLF: 154.02915053141638
Iteration: 11, Func. Count: 107, Neg. LLF: 153.99090099824483
Iteration: 12, Func. Count: 116, Neg. LLF: 153.95195496534305
Iteration: 13, Func. Count: 125, Neg. LLF: 153.94926752792318
Iteration: 14, Func. Count: 134, Neg. LLF: 153.94515946716947
Iteration: 15, Func. Count: 143, Neg. LLF: 153.9443773816939
Iteration: 16, Func. Count: 152, Neg. LLF: 153.94386892336894
Iteration: 17, Func. Count: 161, Neg. LLF: 153.94383376019252
Iteration: 18, Func. Count: 170, Neg. LLF: 153.94383117206934
Iteration: 19, Func. Count: 178, Neg. LLF: 153.943831158252
Optimization terminated successfully (Exit mode 0)
Current function value: 153.94383117206934
Iterations: 19
Function evaluations: 178
Gradient evaluations: 19
Iteration: 1, Func. Count: 11, Neg. LLF: 22855858.664587956
Iteration: 2, Func. Count: 23, Neg. LLF: 275.4597833480663
Iteration: 3, Func. Count: 34, Neg. LLF: 158.47812467784368
Iteration: 4, Func. Count: 45, Neg. LLF: 155.1648897323325
Iteration: 5, Func. Count: 55, Neg. LLF: 163.97234182364366
Iteration: 6, Func. Count: 66, Neg. LLF: 155.75435113542292
Iteration: 7, Func. Count: 77, Neg. LLF: 154.19850583523674
Iteration: 8, Func. Count: 87, Neg. LLF: 154.12180746727267
Iteration: 9, Func. Count: 97, Neg. LLF: 154.16949514766821
Iteration: 10, Func. Count: 108, Neg. LLF: 154.09059600679606
Iteration: 11, Func. Count: 119, Neg. LLF: 154.0243631310547
Iteration: 12, Func. Count: 129, Neg. LLF: 153.96831604698056
Iteration: 13, Func. Count: 139, Neg. LLF: 153.9503256385889
Iteration: 14, Func. Count: 149, Neg. LLF: 153.94385564008644
Iteration: 15, Func. Count: 159, Neg. LLF: 153.94383410480353
Iteration: 16, Func. Count: 169, Neg. LLF: 153.94383247493224
Iteration: 17, Func. Count: 179, Neg. LLF: 153.94383125166533
Iteration: 18, Func. Count: 188, Neg. LLF: 153.94383124656477
Optimization terminated successfully (Exit mode 0)
Current function value: 153.94383125166533
Iterations: 18
Function evaluations: 188
Gradient evaluations: 18
Iteration: 1, Func. Count: 12, Neg. LLF: 220.9902568165898
Iteration: 2, Func. Count: 24, Neg. LLF: 352.0815082597226
Iteration: 3, Func. Count: 37, Neg. LLF: 182.3175382944288
Iteration: 4, Func. Count: 49, Neg. LLF: 163.42246865421532
Iteration: 5, Func. Count: 61, Neg. LLF: 161.74104529375376
Iteration: 6, Func. Count: 73, Neg. LLF: 154.62004224917914
Iteration: 7, Func. Count: 84, Neg. LLF: 154.25315225158857
Iteration: 8, Func. Count: 95, Neg. LLF: 154.06558610213574
Iteration: 9, Func. Count: 106, Neg. LLF: 154.18716431345823
Iteration: 10, Func. Count: 118, Neg. LLF: 154.01027196463744
Iteration: 11, Func. Count: 129, Neg. LLF: 153.9774870746905
Iteration: 12, Func. Count: 140, Neg. LLF: 153.95820837753465
Iteration: 13, Func. Count: 151, Neg. LLF: 153.94638644219916
Iteration: 14, Func. Count: 162, Neg. LLF: 153.94384604953623
Iteration: 15, Func. Count: 173, Neg. LLF: 153.9438313238734
Iteration: 16, Func. Count: 183, Neg. LLF: 153.9438313290358
Optimization terminated successfully (Exit mode 0)
Current function value: 153.9438313238734
Iterations: 16
Function evaluations: 183
Gradient evaluations: 16
Iteration: 1, Func. Count: 5, Neg. LLF: 161.94196260810222
Iteration: 2, Func. Count: 9, Neg. LLF: 161.70815864209314
Iteration: 3, Func. Count: 13, Neg. LLF: 161.38731585189606
Iteration: 4, Func. Count: 17, Neg. LLF: 161.3605348302268
Iteration: 5, Func. Count: 21, Neg. LLF: 161.35143336034668
Iteration: 6, Func. Count: 25, Neg. LLF: 161.30814363929596
Iteration: 7, Func. Count: 29, Neg. LLF: 161.274632722258
Iteration: 8, Func. Count: 33, Neg. LLF: 161.26486848844988
Iteration: 9, Func. Count: 37, Neg. LLF: 161.2642383583762
Iteration: 10, Func. Count: 41, Neg. LLF: 161.26421985211599
Iteration: 11, Func. Count: 45, Neg. LLF: 161.26421854162768
Iteration: 12, Func. Count: 48, Neg. LLF: 161.2642185416268
Optimization terminated successfully (Exit mode 0)
Current function value: 161.26421854162768
Iterations: 12
Function evaluations: 48
Gradient evaluations: 12
Iteration: 1, Func. Count: 6, Neg. LLF: 183.0344602714432
Iteration: 2, Func. Count: 12, Neg. LLF: 167.10279114188356
Iteration: 3, Func. Count: 18, Neg. LLF: 194.47978728833283
Iteration: 4, Func. Count: 25, Neg. LLF: 161.25707279067964
Iteration: 5, Func. Count: 30, Neg. LLF: 161.2244828310911
Iteration: 6, Func. Count: 35, Neg. LLF: 161.15238445354973
Iteration: 7, Func. Count: 40, Neg. LLF: 161.12065170398935
Iteration: 8, Func. Count: 45, Neg. LLF: 161.1185550187861
Iteration: 9, Func. Count: 50, Neg. LLF: 161.118323291336
Iteration: 10, Func. Count: 55, Neg. LLF: 161.11829429746837
Iteration: 11, Func. Count: 60, Neg. LLF: 161.11829409017014
Optimization terminated successfully (Exit mode 0)
Current function value: 161.11829371300988
Iterations: 11
Function evaluations: 61
Gradient evaluations: 11
Iteration: 1, Func. Count: 7, Neg. LLF: 178.47150504080764
Iteration: 2, Func. Count: 14, Neg. LLF: 365.7057205152951
Iteration: 3, Func. Count: 21, Neg. LLF: 166.79362232543826
Iteration: 4, Func. Count: 28, Neg. LLF: 161.42763332913094
Iteration: 5, Func. Count: 35, Neg. LLF: 168.10410029839838
Iteration: 6, Func. Count: 42, Neg. LLF: 161.1801541026537
Iteration: 7, Func. Count: 48, Neg. LLF: 161.1666126636757
Iteration: 8, Func. Count: 54, Neg. LLF: 161.15437273790604
Iteration: 9, Func. Count: 60, Neg. LLF: 161.13556919200667
Iteration: 10, Func. Count: 66, Neg. LLF: 161.12378648937977
Iteration: 11, Func. Count: 72, Neg. LLF: 161.11629226505957
Iteration: 12, Func. Count: 78, Neg. LLF: 161.11533184865553
Iteration: 13, Func. Count: 84, Neg. LLF: 161.11467693139284
Iteration: 14, Func. Count: 90, Neg. LLF: 161.11448558751172
Iteration: 15, Func. Count: 96, Neg. LLF: 161.11447331597648
Iteration: 16, Func. Count: 102, Neg. LLF: 161.11447159375706
Iteration: 17, Func. Count: 107, Neg. LLF: 161.11447159378451
Optimization terminated successfully (Exit mode 0)
Current function value: 161.11447159375706
Iterations: 17
Function evaluations: 107
Gradient evaluations: 17
Iteration: 1, Func. Count: 8, Neg. LLF: 347.81817007148226
Iteration: 2, Func. Count: 17, Neg. LLF: 229.6834493028508
Iteration: 3, Func. Count: 25, Neg. LLF: 164.69661714524213
Iteration: 4, Func. Count: 33, Neg. LLF: 161.79477642153722
Iteration: 5, Func. Count: 41, Neg. LLF: 160.5979501823858
Iteration: 6, Func. Count: 48, Neg. LLF: 160.59581105777127
Iteration: 7, Func. Count: 55, Neg. LLF: 160.5912750785819
Iteration: 8, Func. Count: 62, Neg. LLF: 160.58581540115395
Iteration: 9, Func. Count: 69, Neg. LLF: 160.57557105356057
Iteration: 10, Func. Count: 76, Neg. LLF: 160.56860511272652
Iteration: 11, Func. Count: 83, Neg. LLF: 160.56487557728684
Iteration: 12, Func. Count: 90, Neg. LLF: 160.56410013401032
Iteration: 13, Func. Count: 97, Neg. LLF: 160.5639022759308
Iteration: 14, Func. Count: 104, Neg. LLF: 160.56381919927526
Iteration: 15, Func. Count: 111, Neg. LLF: 160.5638049877667
Iteration: 16, Func. Count: 118, Neg. LLF: 160.5638032446946
Iteration: 17, Func. Count: 124, Neg. LLF: 160.56380324471303
Optimization terminated successfully (Exit mode 0)
Current function value: 160.5638032446946
Iterations: 17
Function evaluations: 124
Gradient evaluations: 17
Iteration: 1, Func. Count: 9, Neg. LLF: 162.0194906451215
Iteration: 2, Func. Count: 18, Neg. LLF: 161.40077861306816
Iteration: 3, Func. Count: 27, Neg. LLF: 166.77928731811033
Iteration: 4, Func. Count: 37, Neg. LLF: 161.17551265507075
Iteration: 5, Func. Count: 46, Neg. LLF: 165.0944233660374
Iteration: 6, Func. Count: 55, Neg. LLF: 160.77453381927444
Iteration: 7, Func. Count: 63, Neg. LLF: 160.76778806324256
Iteration: 8, Func. Count: 71, Neg. LLF: 160.7625617027258
Iteration: 9, Func. Count: 79, Neg. LLF: 160.73687957958683
Iteration: 10, Func. Count: 87, Neg. LLF: 160.69259614763402
Iteration: 11, Func. Count: 95, Neg. LLF: 160.62837962757845
Iteration: 12, Func. Count: 103, Neg. LLF: 160.59492051604613
Iteration: 13, Func. Count: 111, Neg. LLF: 160.57148011547693
Iteration: 14, Func. Count: 119, Neg. LLF: 160.5667352681134
Iteration: 15, Func. Count: 127, Neg. LLF: 160.56456889715676
Iteration: 16, Func. Count: 135, Neg. LLF: 160.563859564702
Iteration: 17, Func. Count: 143, Neg. LLF: 160.56381670081868
Iteration: 18, Func. Count: 151, Neg. LLF: 160.56380321425223
Iteration: 19, Func. Count: 158, Neg. LLF: 160.56380326502563
Optimization terminated successfully (Exit mode 0)
Current function value: 160.56380321425223
Iterations: 19
Function evaluations: 158
Gradient evaluations: 19
Iteration: 1, Func. Count: 6, Neg. LLF: 161.45890925268364
Iteration: 2, Func. Count: 12, Neg. LLF: 160.91563319403605
Iteration: 3, Func. Count: 18, Neg. LLF: 163.3425155505382
Iteration: 4, Func. Count: 24, Neg. LLF: 159.22061173851424
Iteration: 5, Func. Count: 29, Neg. LLF: 159.19048478658044
Iteration: 6, Func. Count: 34, Neg. LLF: 159.17078506637813
Iteration: 7, Func. Count: 39, Neg. LLF: 159.14841135101378
Iteration: 8, Func. Count: 44, Neg. LLF: 159.14503564692998
Iteration: 9, Func. Count: 49, Neg. LLF: 159.14261483202412
Iteration: 10, Func. Count: 54, Neg. LLF: 159.13913361258767
Iteration: 11, Func. Count: 59, Neg. LLF: 159.13400529122987
Iteration: 12, Func. Count: 64, Neg. LLF: 159.1302349578374
Iteration: 13, Func. Count: 69, Neg. LLF: 159.12925261771863
Iteration: 14, Func. Count: 74, Neg. LLF: 159.12916419449397
Iteration: 15, Func. Count: 79, Neg. LLF: 159.12915958474886
Iteration: 16, Func. Count: 83, Neg. LLF: 159.12915958474807
Optimization terminated successfully (Exit mode 0)
Current function value: 159.12915958474886
Iterations: 16
Function evaluations: 83
Gradient evaluations: 16
Iteration: 1, Func. Count: 7, Neg. LLF: 883.9883257005333
Iteration: 2, Func. Count: 15, Neg. LLF: 157.894787434796
Iteration: 3, Func. Count: 22, Neg. LLF: 156.44860645320293
Iteration: 4, Func. Count: 28, Neg. LLF: 173.5774923163858
Iteration: 5, Func. Count: 36, Neg. LLF: 156.43154726936064
Iteration: 6, Func. Count: 42, Neg. LLF: 156.43121121969506
Iteration: 7, Func. Count: 48, Neg. LLF: 156.43109960031393
Iteration: 8, Func. Count: 54, Neg. LLF: 156.43109892504677
Optimization terminated successfully (Exit mode 0)
Current function value: 156.43109892504677
Iterations: 8
Function evaluations: 54
Gradient evaluations: 8
Iteration: 1, Func. Count: 8, Neg. LLF: 22476979.106437705
Iteration: 2, Func. Count: 17, Neg. LLF: 165.142389894857
Iteration: 3, Func. Count: 25, Neg. LLF: 157.07634997569616
Iteration: 4, Func. Count: 33, Neg. LLF: 156.77144894408656
Iteration: 5, Func. Count: 41, Neg. LLF: 156.5532107799916
Iteration: 6, Func. Count: 48, Neg. LLF: 156.45815925719623
Iteration: 7, Func. Count: 55, Neg. LLF: 156.43186997159128
Iteration: 8, Func. Count: 62, Neg. LLF: 156.4312472238134
Iteration: 9, Func. Count: 69, Neg. LLF: 156.4311119433576
Iteration: 10, Func. Count: 76, Neg. LLF: 156.43110109078714
Iteration: 11, Func. Count: 83, Neg. LLF: 156.43109886923705
Iteration: 12, Func. Count: 89, Neg. LLF: 156.4310988771813
Optimization terminated successfully (Exit mode 0)
Current function value: 156.43109886923705
Iterations: 12
Function evaluations: 89
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 22689371.62951717
Iteration: 2, Func. Count: 19, Neg. LLF: 226.54966962654538
Iteration: 3, Func. Count: 28, Neg. LLF: 158.03137648325452
Iteration: 4, Func. Count: 37, Neg. LLF: 156.82941763106413
Iteration: 5, Func. Count: 46, Neg. LLF: 156.48574795097824
Iteration: 6, Func. Count: 54, Neg. LLF: 156.47489388140625
Iteration: 7, Func. Count: 62, Neg. LLF: 156.4622289831532
Iteration: 8, Func. Count: 70, Neg. LLF: 156.460003042971
Iteration: 9, Func. Count: 78, Neg. LLF: 156.45950824114627
Iteration: 10, Func. Count: 86, Neg. LLF: 156.4593067380234
Iteration: 11, Func. Count: 94, Neg. LLF: 156.45924877390158
Iteration: 12, Func. Count: 102, Neg. LLF: 156.45924421399192
Iteration: 13, Func. Count: 109, Neg. LLF: 156.4592442138295
Optimization terminated successfully (Exit mode 0)
Current function value: 156.45924421399192
Iterations: 13
Function evaluations: 109
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 22762125.21284997
Iteration: 2, Func. Count: 21, Neg. LLF: 236.24360726931533
Iteration: 3, Func. Count: 31, Neg. LLF: 160.9467158724487
Iteration: 4, Func. Count: 41, Neg. LLF: 156.68960078029622
Iteration: 5, Func. Count: 50, Neg. LLF: 156.57061988369236
Iteration: 6, Func. Count: 59, Neg. LLF: 156.4784122621149
Iteration: 7, Func. Count: 68, Neg. LLF: 156.4665277109522
Iteration: 8, Func. Count: 77, Neg. LLF: 156.46220253511
Iteration: 9, Func. Count: 86, Neg. LLF: 156.460356681039
Iteration: 10, Func. Count: 95, Neg. LLF: 156.45951884830157
Iteration: 11, Func. Count: 104, Neg. LLF: 156.45928630128614
Iteration: 12, Func. Count: 113, Neg. LLF: 156.4592492118787
Iteration: 13, Func. Count: 122, Neg. LLF: 156.4592442007377
Iteration: 14, Func. Count: 130, Neg. LLF: 156.45924420930064
Optimization terminated successfully (Exit mode 0)
Current function value: 156.4592442007377
Iterations: 14
Function evaluations: 130
Gradient evaluations: 14
Iteration: 1, Func. Count: 7, Neg. LLF: 163.7802728663687
Iteration: 2, Func. Count: 14, Neg. LLF: 159.52992558749776
Iteration: 3, Func. Count: 21, Neg. LLF: 158.94295270798114
Iteration: 4, Func. Count: 28, Neg. LLF: 161.7495291651981
Iteration: 5, Func. Count: 36, Neg. LLF: 158.22920279265063
Iteration: 6, Func. Count: 42, Neg. LLF: 158.14239491982252
Iteration: 7, Func. Count: 48, Neg. LLF: 158.12654501907397
Iteration: 8, Func. Count: 54, Neg. LLF: 158.11494933584808
Iteration: 9, Func. Count: 60, Neg. LLF: 158.10457820045147
Iteration: 10, Func. Count: 66, Neg. LLF: 158.0869821670815
Iteration: 11, Func. Count: 72, Neg. LLF: 158.0619345581772
Iteration: 12, Func. Count: 78, Neg. LLF: 158.0511929492068
Iteration: 13, Func. Count: 84, Neg. LLF: 158.049297987535
Iteration: 14, Func. Count: 90, Neg. LLF: 158.04920238184621
Iteration: 15, Func. Count: 95, Neg. LLF: 158.04920238181933
Optimization terminated successfully (Exit mode 0)
Current function value: 158.04920238184621
Iterations: 15
Function evaluations: 95
Gradient evaluations: 15
Iteration: 1, Func. Count: 8, Neg. LLF: 553.592246469857
Iteration: 2, Func. Count: 17, Neg. LLF: 158.18003075285037
Iteration: 3, Func. Count: 25, Neg. LLF: 155.99323177012076
Iteration: 4, Func. Count: 32, Neg. LLF: 155.9923170455753
Iteration: 5, Func. Count: 40, Neg. LLF: 155.98820055003551
Iteration: 6, Func. Count: 48, Neg. LLF: 155.98158936651348
Iteration: 7, Func. Count: 55, Neg. LLF: 155.98148579355947
Iteration: 8, Func. Count: 62, Neg. LLF: 155.98148463388412
Iteration: 9, Func. Count: 68, Neg. LLF: 155.98148463387227
Optimization terminated successfully (Exit mode 0)
Current function value: 155.98148463388412
Iterations: 9
Function evaluations: 68
Gradient evaluations: 9
Iteration: 1, Func. Count: 9, Neg. LLF: 22465544.38994901
Iteration: 2, Func. Count: 19, Neg. LLF: 196.55598315480523
Iteration: 3, Func. Count: 28, Neg. LLF: 157.86429330069595
Iteration: 4, Func. Count: 37, Neg. LLF: 157.0721764028109
Iteration: 5, Func. Count: 46, Neg. LLF: 156.856706315628
Iteration: 6, Func. Count: 55, Neg. LLF: 155.69351665867336
Iteration: 7, Func. Count: 64, Neg. LLF: 155.33314940988106
Iteration: 8, Func. Count: 72, Neg. LLF: 155.32374189233533
Iteration: 9, Func. Count: 80, Neg. LLF: 155.31464021748354
Iteration: 10, Func. Count: 88, Neg. LLF: 155.31043941927874
Iteration: 11, Func. Count: 96, Neg. LLF: 155.30831165191185
Iteration: 12, Func. Count: 104, Neg. LLF: 155.30756260904258
Iteration: 13, Func. Count: 112, Neg. LLF: 155.30741907965458
Iteration: 14, Func. Count: 120, Neg. LLF: 155.30739499944508
Iteration: 15, Func. Count: 128, Neg. LLF: 155.307391976287
Iteration: 16, Func. Count: 135, Neg. LLF: 155.30739197627685
Optimization terminated successfully (Exit mode 0)
Current function value: 155.307391976287
Iterations: 16
Function evaluations: 135
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 22581321.928436913
Iteration: 2, Func. Count: 21, Neg. LLF: 179.82550567225107
Iteration: 3, Func. Count: 31, Neg. LLF: 157.95814719547508
Iteration: 4, Func. Count: 41, Neg. LLF: 157.55379426964893
Iteration: 5, Func. Count: 51, Neg. LLF: 156.50049801683286
Iteration: 6, Func. Count: 61, Neg. LLF: 156.78514694277848
Iteration: 7, Func. Count: 71, Neg. LLF: 156.81770232246905
Iteration: 8, Func. Count: 81, Neg. LLF: 155.9025246088351
Iteration: 9, Func. Count: 91, Neg. LLF: 156.11215750259015
Iteration: 10, Func. Count: 101, Neg. LLF: 155.34574649865104
Iteration: 11, Func. Count: 110, Neg. LLF: 155.32688603431743
Iteration: 12, Func. Count: 119, Neg. LLF: 155.31548245234126
Iteration: 13, Func. Count: 128, Neg. LLF: 155.31081192721936
Iteration: 14, Func. Count: 137, Neg. LLF: 155.3086932541322
Iteration: 15, Func. Count: 146, Neg. LLF: 155.30751707623062
Iteration: 16, Func. Count: 155, Neg. LLF: 155.30739753987768
Iteration: 17, Func. Count: 164, Neg. LLF: 155.30739186328438
Iteration: 18, Func. Count: 172, Neg. LLF: 155.3073918782325
Optimization terminated successfully (Exit mode 0)
Current function value: 155.30739186328438
Iterations: 18
Function evaluations: 172
Gradient evaluations: 18
Iteration: 1, Func. Count: 11, Neg. LLF: 22647475.760486133
Iteration: 2, Func. Count: 23, Neg. LLF: 179.11802982395957
Iteration: 3, Func. Count: 34, Neg. LLF: 160.32120624205078
Iteration: 4, Func. Count: 45, Neg. LLF: 156.94784288176453
Iteration: 5, Func. Count: 56, Neg. LLF: 157.78416555676463
Iteration: 6, Func. Count: 67, Neg. LLF: 157.58971066684373
Iteration: 7, Func. Count: 78, Neg. LLF: 156.32216021526455
Iteration: 8, Func. Count: 89, Neg. LLF: 155.63102407908204
Iteration: 9, Func. Count: 100, Neg. LLF: 155.3256635547657
Iteration: 10, Func. Count: 110, Neg. LLF: 155.31024226001603
Iteration: 11, Func. Count: 120, Neg. LLF: 155.30790442849946
Iteration: 12, Func. Count: 130, Neg. LLF: 155.30773672001388
Iteration: 13, Func. Count: 140, Neg. LLF: 155.30759140604775
Iteration: 14, Func. Count: 150, Neg. LLF: 155.30752623789826
Iteration: 15, Func. Count: 160, Neg. LLF: 155.30745093833002
Iteration: 16, Func. Count: 170, Neg. LLF: 155.3074187777685
Iteration: 17, Func. Count: 180, Neg. LLF: 155.30739959421078
Iteration: 18, Func. Count: 190, Neg. LLF: 155.30739317078815
Iteration: 19, Func. Count: 200, Neg. LLF: 155.30739178692042
Iteration: 20, Func. Count: 209, Neg. LLF: 155.30739182692284
Optimization terminated successfully (Exit mode 0)
Current function value: 155.30739178692042
Iterations: 20
Function evaluations: 209
Gradient evaluations: 20
Iteration: 1, Func. Count: 8, Neg. LLF: 163.49311435159066
Iteration: 2, Func. Count: 16, Neg. LLF: 159.6976567703613
Iteration: 3, Func. Count: 25, Neg. LLF: 158.94635440080705
Iteration: 4, Func. Count: 33, Neg. LLF: 160.80744133397
Iteration: 5, Func. Count: 41, Neg. LLF: 158.59092443471943
Iteration: 6, Func. Count: 49, Neg. LLF: 158.32966782636998
Iteration: 7, Func. Count: 57, Neg. LLF: 158.1144319281143
Iteration: 8, Func. Count: 64, Neg. LLF: 158.089962198863
Iteration: 9, Func. Count: 71, Neg. LLF: 158.0607408715211
Iteration: 10, Func. Count: 78, Neg. LLF: 158.03446507003338
Iteration: 11, Func. Count: 85, Neg. LLF: 158.00436840102094
Iteration: 12, Func. Count: 92, Neg. LLF: 157.99111758367906
Iteration: 13, Func. Count: 99, Neg. LLF: 157.98556173223662
Iteration: 14, Func. Count: 106, Neg. LLF: 157.98474086104227
Iteration: 15, Func. Count: 113, Neg. LLF: 157.98471011668306
Iteration: 16, Func. Count: 120, Neg. LLF: 157.98470769418805
Iteration: 17, Func. Count: 126, Neg. LLF: 157.98470769416676
Optimization terminated successfully (Exit mode 0)
Current function value: 157.98470769418805
Iterations: 17
Function evaluations: 126
Gradient evaluations: 17
Iteration: 1, Func. Count: 9, Neg. LLF: 978.2838514674884
Iteration: 2, Func. Count: 18, Neg. LLF: 160.8321855354423
Iteration: 3, Func. Count: 27, Neg. LLF: 155.86540288252402
Iteration: 4, Func. Count: 35, Neg. LLF: 156.53786392870626
Iteration: 5, Func. Count: 44, Neg. LLF: 155.83656895686568
Iteration: 6, Func. Count: 52, Neg. LLF: 155.82631970598655
Iteration: 7, Func. Count: 60, Neg. LLF: 155.8242038333723
Iteration: 8, Func. Count: 68, Neg. LLF: 155.82385048331403
Iteration: 9, Func. Count: 76, Neg. LLF: 155.8237427570878
Iteration: 10, Func. Count: 84, Neg. LLF: 155.82373378285592
Iteration: 11, Func. Count: 91, Neg. LLF: 155.82373378284817
Optimization terminated successfully (Exit mode 0)
Current function value: 155.82373378285592
Iterations: 11
Function evaluations: 91
Gradient evaluations: 11
Iteration: 1, Func. Count: 10, Neg. LLF: 22489303.569577638
Iteration: 2, Func. Count: 21, Neg. LLF: 199.0210606333915
Iteration: 3, Func. Count: 31, Neg. LLF: 158.14594892020094
Iteration: 4, Func. Count: 41, Neg. LLF: 157.18459598755825
Iteration: 5, Func. Count: 51, Neg. LLF: 156.94556910311633
Iteration: 6, Func. Count: 61, Neg. LLF: 155.899605860867
Iteration: 7, Func. Count: 71, Neg. LLF: 155.32386830429812
Iteration: 8, Func. Count: 80, Neg. LLF: 155.3376102710251
Iteration: 9, Func. Count: 90, Neg. LLF: 155.39798916694016
Iteration: 10, Func. Count: 100, Neg. LLF: 155.28673257504173
Iteration: 11, Func. Count: 109, Neg. LLF: 155.2779999622283
Iteration: 12, Func. Count: 118, Neg. LLF: 155.27614564923118
Iteration: 13, Func. Count: 127, Neg. LLF: 155.27585949769764
Iteration: 14, Func. Count: 136, Neg. LLF: 155.27554441920526
Iteration: 15, Func. Count: 145, Neg. LLF: 155.27528514555007
Iteration: 16, Func. Count: 154, Neg. LLF: 155.27520718822979
Iteration: 17, Func. Count: 163, Neg. LLF: 155.27519806002462
Iteration: 18, Func. Count: 171, Neg. LLF: 155.27519806007288
Optimization terminated successfully (Exit mode 0)
Current function value: 155.27519806002462
Iterations: 18
Function evaluations: 171
Gradient evaluations: 18
Iteration: 1, Func. Count: 11, Neg. LLF: 22620691.49891749
Iteration: 2, Func. Count: 23, Neg. LLF: 179.6905024503729
Iteration: 3, Func. Count: 34, Neg. LLF: 158.59964513049835
Iteration: 4, Func. Count: 45, Neg. LLF: 157.26771159001325
Iteration: 5, Func. Count: 56, Neg. LLF: 156.42301789869808
Iteration: 6, Func. Count: 67, Neg. LLF: 156.81384887038587
Iteration: 7, Func. Count: 78, Neg. LLF: 156.28108249233685
Iteration: 8, Func. Count: 89, Neg. LLF: 156.19686099464207
Iteration: 9, Func. Count: 100, Neg. LLF: 155.78994785451357
Iteration: 10, Func. Count: 111, Neg. LLF: 155.3012445511942
Iteration: 11, Func. Count: 121, Neg. LLF: 155.28669851981792
Iteration: 12, Func. Count: 131, Neg. LLF: 155.27760782686886
Iteration: 13, Func. Count: 141, Neg. LLF: 155.27627801974245
Iteration: 14, Func. Count: 151, Neg. LLF: 155.27556802500877
Iteration: 15, Func. Count: 161, Neg. LLF: 155.2753837971278
Iteration: 16, Func. Count: 171, Neg. LLF: 155.27534630939996
Iteration: 17, Func. Count: 181, Neg. LLF: 155.27530742812684
Iteration: 18, Func. Count: 191, Neg. LLF: 155.2752564811414
Iteration: 19, Func. Count: 201, Neg. LLF: 155.27521369620996
Iteration: 20, Func. Count: 211, Neg. LLF: 155.27519934157814
Iteration: 21, Func. Count: 221, Neg. LLF: 155.27519764957444
Iteration: 22, Func. Count: 230, Neg. LLF: 155.2751976550009
Optimization terminated successfully (Exit mode 0)
Current function value: 155.27519764957444
Iterations: 22
Function evaluations: 230
Gradient evaluations: 22
Iteration: 1, Func. Count: 12, Neg. LLF: 22660187.546013456
Iteration: 2, Func. Count: 25, Neg. LLF: 178.6692514128903
Iteration: 3, Func. Count: 37, Neg. LLF: 163.28273588349984
Iteration: 4, Func. Count: 49, Neg. LLF: 156.96811870307084
Iteration: 5, Func. Count: 61, Neg. LLF: 158.10183469802104
Iteration: 6, Func. Count: 73, Neg. LLF: 157.56894563842513
Iteration: 7, Func. Count: 85, Neg. LLF: 157.3099835252049
Iteration: 8, Func. Count: 97, Neg. LLF: 159.80041804675352
Iteration: 9, Func. Count: 110, Neg. LLF: 156.75554664131286
Iteration: 10, Func. Count: 122, Neg. LLF: 155.34757187431777
Iteration: 11, Func. Count: 133, Neg. LLF: 155.28597840284047
Iteration: 12, Func. Count: 144, Neg. LLF: 155.2792251164631
Iteration: 13, Func. Count: 155, Neg. LLF: 155.27619725464675
Iteration: 14, Func. Count: 166, Neg. LLF: 155.27573433317693
Iteration: 15, Func. Count: 177, Neg. LLF: 155.2754671347874
Iteration: 16, Func. Count: 188, Neg. LLF: 155.27538086556922
Iteration: 17, Func. Count: 199, Neg. LLF: 155.27534161750114
Iteration: 18, Func. Count: 210, Neg. LLF: 155.27530922379606
Iteration: 19, Func. Count: 221, Neg. LLF: 155.27527226472296
Iteration: 20, Func. Count: 232, Neg. LLF: 155.27523410300475
Iteration: 21, Func. Count: 243, Neg. LLF: 155.27520784317053
Iteration: 22, Func. Count: 254, Neg. LLF: 155.27519897540253
Iteration: 23, Func. Count: 265, Neg. LLF: 155.27519767860534
Iteration: 24, Func. Count: 275, Neg. LLF: 155.27519771921465
Optimization terminated successfully (Exit mode 0)
Current function value: 155.27519767860534
Iterations: 24
Function evaluations: 275
Gradient evaluations: 24
Iteration: 1, Func. Count: 9, Neg. LLF: 160.22845369602356
Iteration: 2, Func. Count: 18, Neg. LLF: 157.89775896840203
Iteration: 3, Func. Count: 27, Neg. LLF: 158.57690540556464
Iteration: 4, Func. Count: 37, Neg. LLF: 157.0703222006708
Iteration: 5, Func. Count: 46, Neg. LLF: 156.8477465882056
Iteration: 6, Func. Count: 55, Neg. LLF: 156.3427388239846
Iteration: 7, Func. Count: 64, Neg. LLF: 156.02093427331647
Iteration: 8, Func. Count: 72, Neg. LLF: 155.9940713666706
Iteration: 9, Func. Count: 80, Neg. LLF: 155.92128824404801
Iteration: 10, Func. Count: 88, Neg. LLF: 155.8691686180748
Iteration: 11, Func. Count: 96, Neg. LLF: 155.8243303046592
Iteration: 12, Func. Count: 104, Neg. LLF: 155.7754090486569
Iteration: 13, Func. Count: 112, Neg. LLF: 155.7608265405992
Iteration: 14, Func. Count: 120, Neg. LLF: 155.7561834220953
Iteration: 15, Func. Count: 128, Neg. LLF: 155.75529848231938
Iteration: 16, Func. Count: 136, Neg. LLF: 155.75523365692104
Iteration: 17, Func. Count: 144, Neg. LLF: 155.75523063893274
Iteration: 18, Func. Count: 151, Neg. LLF: 155.75523063894494
Optimization terminated successfully (Exit mode 0)
Current function value: 155.75523063893274
Iterations: 18
Function evaluations: 151
Gradient evaluations: 18
Iteration: 1, Func. Count: 10, Neg. LLF: 4294060.608015642
Iteration: 2, Func. Count: 20, Neg. LLF: 242.5155715955762
Iteration: 3, Func. Count: 30, Neg. LLF: 155.01133516695737
Iteration: 4, Func. Count: 40, Neg. LLF: 154.8116307175714
Iteration: 5, Func. Count: 50, Neg. LLF: 158.51776287881273
Iteration: 6, Func. Count: 61, Neg. LLF: 154.09066719251015
Iteration: 7, Func. Count: 70, Neg. LLF: 153.99928309868704
Iteration: 8, Func. Count: 79, Neg. LLF: 153.96011862403705
Iteration: 9, Func. Count: 88, Neg. LLF: 153.94824423406232
Iteration: 10, Func. Count: 97, Neg. LLF: 153.94747154804529
Iteration: 11, Func. Count: 107, Neg. LLF: 153.9438392209444
Iteration: 12, Func. Count: 116, Neg. LLF: 153.94383113011594
Iteration: 13, Func. Count: 124, Neg. LLF: 153.94383110472148
Optimization terminated successfully (Exit mode 0)
Current function value: 153.94383113011594
Iterations: 13
Function evaluations: 124
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 22569764.890968345
Iteration: 2, Func. Count: 23, Neg. LLF: 243.261981753026
Iteration: 3, Func. Count: 34, Neg. LLF: 157.16170809322745
Iteration: 4, Func. Count: 45, Neg. LLF: 155.16083506185484
Iteration: 5, Func. Count: 56, Neg. LLF: 155.84732353249026
Iteration: 6, Func. Count: 67, Neg. LLF: 154.15886111999606
Iteration: 7, Func. Count: 77, Neg. LLF: 154.11017618969615
Iteration: 8, Func. Count: 87, Neg. LLF: 154.04192797306504
Iteration: 9, Func. Count: 97, Neg. LLF: 154.03028794749503
Iteration: 10, Func. Count: 108, Neg. LLF: 153.9845651355116
Iteration: 11, Func. Count: 118, Neg. LLF: 153.94926989339555
Iteration: 12, Func. Count: 128, Neg. LLF: 153.94531580233283
Iteration: 13, Func. Count: 138, Neg. LLF: 153.9442777493292
Iteration: 14, Func. Count: 148, Neg. LLF: 153.94390840614545
Iteration: 15, Func. Count: 158, Neg. LLF: 153.94384089770503
Iteration: 16, Func. Count: 168, Neg. LLF: 153.94383146412886
Iteration: 17, Func. Count: 177, Neg. LLF: 153.9438314502909
Optimization terminated successfully (Exit mode 0)
Current function value: 153.94383146412886
Iterations: 17
Function evaluations: 177
Gradient evaluations: 17
Iteration: 1, Func. Count: 12, Neg. LLF: 22704307.12640778
Iteration: 2, Func. Count: 25, Neg. LLF: 261.81425768877955
Iteration: 3, Func. Count: 37, Neg. LLF: 158.53340667567304
Iteration: 4, Func. Count: 49, Neg. LLF: 154.56934027082352
Iteration: 5, Func. Count: 60, Neg. LLF: 197.67150014399775
Iteration: 6, Func. Count: 72, Neg. LLF: 154.18036405696336
Iteration: 7, Func. Count: 83, Neg. LLF: 154.30116223447547
Iteration: 8, Func. Count: 95, Neg. LLF: 154.1352291480289
Iteration: 9, Func. Count: 106, Neg. LLF: 154.1291176411471
Iteration: 10, Func. Count: 118, Neg. LLF: 154.00561883822107
Iteration: 11, Func. Count: 129, Neg. LLF: 153.97128335029802
Iteration: 12, Func. Count: 140, Neg. LLF: 153.94488676608833
Iteration: 13, Func. Count: 151, Neg. LLF: 153.94402914971946
Iteration: 14, Func. Count: 162, Neg. LLF: 153.94388861594268
Iteration: 15, Func. Count: 173, Neg. LLF: 153.94384730956318
Iteration: 16, Func. Count: 184, Neg. LLF: 153.943832189178
Iteration: 17, Func. Count: 195, Neg. LLF: 153.94383115623347
Iteration: 18, Func. Count: 205, Neg. LLF: 153.94383115119535
Optimization terminated successfully (Exit mode 0)
Current function value: 153.94383115623347
Iterations: 18
Function evaluations: 205
Gradient evaluations: 18
Iteration: 1, Func. Count: 13, Neg. LLF: 211.80017857473823
Iteration: 2, Func. Count: 26, Neg. LLF: 360.4959727229084
Iteration: 3, Func. Count: 40, Neg. LLF: 175.657778454861
Iteration: 4, Func. Count: 53, Neg. LLF: 155.53815692447762
Iteration: 5, Func. Count: 65, Neg. LLF: 157.5033396034315
Iteration: 6, Func. Count: 78, Neg. LLF: 156.1270643771799
Iteration: 7, Func. Count: 91, Neg. LLF: 154.23451879570183
Iteration: 8, Func. Count: 103, Neg. LLF: 154.17568515420908
Iteration: 9, Func. Count: 115, Neg. LLF: 154.11765083181913
Iteration: 10, Func. Count: 127, Neg. LLF: 154.0640360301743
Iteration: 11, Func. Count: 139, Neg. LLF: 154.03722551047625
Iteration: 12, Func. Count: 151, Neg. LLF: 154.00368740851778
Iteration: 13, Func. Count: 163, Neg. LLF: 153.97786251860876
Iteration: 14, Func. Count: 175, Neg. LLF: 153.9473840579104
Iteration: 15, Func. Count: 187, Neg. LLF: 153.94408996426685
Iteration: 16, Func. Count: 199, Neg. LLF: 153.94383794023256
Iteration: 17, Func. Count: 211, Neg. LLF: 153.9438316699235
Iteration: 18, Func. Count: 222, Neg. LLF: 153.94383167527053
Optimization terminated successfully (Exit mode 0)
Current function value: 153.9438316699235
Iterations: 18
Function evaluations: 222
Gradient evaluations: 18
Iteration: 1, Func. Count: 6, Neg. LLF: 163.43673386123544
Iteration: 2, Func. Count: 12, Neg. LLF: 164.4604268655941
Iteration: 3, Func. Count: 18, Neg. LLF: 161.50956234655933
Iteration: 4, Func. Count: 24, Neg. LLF: 161.3485872551
Iteration: 5, Func. Count: 29, Neg. LLF: 161.3183859613655
Iteration: 6, Func. Count: 34, Neg. LLF: 161.31482346485527
Iteration: 7, Func. Count: 39, Neg. LLF: 161.3131711158118
Iteration: 8, Func. Count: 44, Neg. LLF: 161.311146566536
Iteration: 9, Func. Count: 49, Neg. LLF: 161.30544362734776
Iteration: 10, Func. Count: 54, Neg. LLF: 161.29816571456638
Iteration: 11, Func. Count: 59, Neg. LLF: 161.286935168605
Iteration: 12, Func. Count: 64, Neg. LLF: 161.2739396334812
Iteration: 13, Func. Count: 69, Neg. LLF: 161.26598639862473
Iteration: 14, Func. Count: 74, Neg. LLF: 161.2644229126372
Iteration: 15, Func. Count: 79, Neg. LLF: 161.26425856028104
Iteration: 16, Func. Count: 84, Neg. LLF: 161.2642185795609
Iteration: 17, Func. Count: 88, Neg. LLF: 161.26421858932932
Optimization terminated successfully (Exit mode 0)
Current function value: 161.2642185795609
Iterations: 17
Function evaluations: 88
Gradient evaluations: 17
Iteration: 1, Func. Count: 7, Neg. LLF: 182.8480923692267
Iteration: 2, Func. Count: 14, Neg. LLF: 168.47096785911512
Iteration: 3, Func. Count: 21, Neg. LLF: 213.14583240548635
Iteration: 4, Func. Count: 29, Neg. LLF: 161.26372800194736
Iteration: 5, Func. Count: 35, Neg. LLF: 161.23272651993494
Iteration: 6, Func. Count: 41, Neg. LLF: 161.12248692160009
Iteration: 7, Func. Count: 47, Neg. LLF: 161.11936619331095
Iteration: 8, Func. Count: 53, Neg. LLF: 161.11832596927388
Iteration: 9, Func. Count: 59, Neg. LLF: 161.1183031385498
Iteration: 10, Func. Count: 65, Neg. LLF: 161.11829372575463
Iteration: 11, Func. Count: 70, Neg. LLF: 161.11829372589816
Optimization terminated successfully (Exit mode 0)
Current function value: 161.11829372575463
Iterations: 11
Function evaluations: 70
Gradient evaluations: 11
Iteration: 1, Func. Count: 8, Neg. LLF: 164.63753122371418
Iteration: 2, Func. Count: 16, Neg. LLF: 669.2953765629529
Iteration: 3, Func. Count: 25, Neg. LLF: 169.82432460520343
Iteration: 4, Func. Count: 33, Neg. LLF: 160.40661774036957
Iteration: 5, Func. Count: 40, Neg. LLF: 160.9843334118455
Iteration: 6, Func. Count: 48, Neg. LLF: 160.07564204733822
Iteration: 7, Func. Count: 55, Neg. LLF: 159.93518200709386
Iteration: 8, Func. Count: 62, Neg. LLF: 204.41090791573083
Iteration: 9, Func. Count: 71, Neg. LLF: 159.8526380107443
Iteration: 10, Func. Count: 78, Neg. LLF: 159.8446757033907
Iteration: 11, Func. Count: 85, Neg. LLF: 159.84327427652943
Iteration: 12, Func. Count: 92, Neg. LLF: 159.84121605260708
Iteration: 13, Func. Count: 99, Neg. LLF: 159.83808134536415
Iteration: 14, Func. Count: 106, Neg. LLF: 159.83694329040287
Iteration: 15, Func. Count: 113, Neg. LLF: 159.83655566764628
Iteration: 16, Func. Count: 120, Neg. LLF: 159.8365392428702
Iteration: 17, Func. Count: 127, Neg. LLF: 159.83653873690477
Optimization terminated successfully (Exit mode 0)
Current function value: 159.83653873690477
Iterations: 17
Function evaluations: 127
Gradient evaluations: 17
Iteration: 1, Func. Count: 9, Neg. LLF: 182.705521771342
Iteration: 2, Func. Count: 18, Neg. LLF: 176.5517640257451
Iteration: 3, Func. Count: 27, Neg. LLF: 253.14347082496832
Iteration: 4, Func. Count: 37, Neg. LLF: 165.32103639219696
Iteration: 5, Func. Count: 46, Neg. LLF: 160.7012253687118
Iteration: 6, Func. Count: 54, Neg. LLF: 160.6317951401937
Iteration: 7, Func. Count: 62, Neg. LLF: 160.5981304643097
Iteration: 8, Func. Count: 70, Neg. LLF: 160.59025591388058
Iteration: 9, Func. Count: 78, Neg. LLF: 160.58783417547016
Iteration: 10, Func. Count: 86, Neg. LLF: 160.5815157051373
Iteration: 11, Func. Count: 94, Neg. LLF: 160.5703316698912
Iteration: 12, Func. Count: 102, Neg. LLF: 160.56448615741934
Iteration: 13, Func. Count: 110, Neg. LLF: 160.56386078437123
Iteration: 14, Func. Count: 118, Neg. LLF: 160.5638082104536
Iteration: 15, Func. Count: 126, Neg. LLF: 160.56380324136055
Iteration: 16, Func. Count: 133, Neg. LLF: 160.56380324136111
Optimization terminated successfully (Exit mode 0)
Current function value: 160.56380324136055
Iterations: 16
Function evaluations: 133
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 355.7999504631435
Iteration: 2, Func. Count: 21, Neg. LLF: 238.0175393009589
Iteration: 3, Func. Count: 32, Neg. LLF: 182.83704132092808
Iteration: 4, Func. Count: 42, Neg. LLF: 168.6796057584901
Iteration: 5, Func. Count: 52, Neg. LLF: 160.9444753350489
Iteration: 6, Func. Count: 61, Neg. LLF: 160.58924599345394
Iteration: 7, Func. Count: 70, Neg. LLF: 160.33896976528817
Iteration: 8, Func. Count: 79, Neg. LLF: 160.2762443782413
Iteration: 9, Func. Count: 88, Neg. LLF: 160.250168835373
Iteration: 10, Func. Count: 97, Neg. LLF: 160.50921300501884
Iteration: 11, Func. Count: 107, Neg. LLF: 160.25203238867667
Iteration: 12, Func. Count: 117, Neg. LLF: 160.23557126830528
Iteration: 13, Func. Count: 127, Neg. LLF: 160.19002951763414
Iteration: 14, Func. Count: 136, Neg. LLF: 160.18673424347077
Iteration: 15, Func. Count: 145, Neg. LLF: 160.1829324124428
Iteration: 16, Func. Count: 154, Neg. LLF: 160.18214614665413
Iteration: 17, Func. Count: 163, Neg. LLF: 160.17997360061304
Iteration: 18, Func. Count: 172, Neg. LLF: 160.1778512074881
Iteration: 19, Func. Count: 181, Neg. LLF: 160.17584517553922
Iteration: 20, Func. Count: 190, Neg. LLF: 160.17582799157165
Iteration: 21, Func. Count: 199, Neg. LLF: 160.1758274708537
Optimization terminated successfully (Exit mode 0)
Current function value: 160.1758274708537
Iterations: 21
Function evaluations: 199
Gradient evaluations: 21
Iteration: 1, Func. Count: 7, Neg. LLF: 164.33800834393327
Iteration: 2, Func. Count: 14, Neg. LLF: 161.04160065985445
Iteration: 3, Func. Count: 21, Neg. LLF: 164.42941469353704
Iteration: 4, Func. Count: 28, Neg. LLF: 159.33402675213102
Iteration: 5, Func. Count: 34, Neg. LLF: 159.26874446855513
Iteration: 6, Func. Count: 40, Neg. LLF: 159.21023832028072
Iteration: 7, Func. Count: 46, Neg. LLF: 159.17335800112915
Iteration: 8, Func. Count: 52, Neg. LLF: 159.15612451057947
Iteration: 9, Func. Count: 58, Neg. LLF: 159.1515481863028
Iteration: 10, Func. Count: 64, Neg. LLF: 159.14744560607403
Iteration: 11, Func. Count: 70, Neg. LLF: 159.14338565580735
Iteration: 12, Func. Count: 76, Neg. LLF: 159.1368316955398
Iteration: 13, Func. Count: 82, Neg. LLF: 159.13128552606707
Iteration: 14, Func. Count: 88, Neg. LLF: 159.1293354821833
Iteration: 15, Func. Count: 94, Neg. LLF: 159.12917172601934
Iteration: 16, Func. Count: 100, Neg. LLF: 159.12915963264336
Iteration: 17, Func. Count: 105, Neg. LLF: 159.12915963264027
Optimization terminated successfully (Exit mode 0)
Current function value: 159.12915963264336
Iterations: 17
Function evaluations: 105
Gradient evaluations: 17
Iteration: 1, Func. Count: 8, Neg. LLF: 920.5958354177108
Iteration: 2, Func. Count: 17, Neg. LLF: 157.93465804808605
Iteration: 3, Func. Count: 25, Neg. LLF: 156.4487336259958
Iteration: 4, Func. Count: 32, Neg. LLF: 173.4338849162107
Iteration: 5, Func. Count: 41, Neg. LLF: 156.43161969757384
Iteration: 6, Func. Count: 48, Neg. LLF: 156.43121537311947
Iteration: 7, Func. Count: 55, Neg. LLF: 156.4311003152039
Iteration: 8, Func. Count: 62, Neg. LLF: 156.4310990014516
Iteration: 9, Func. Count: 68, Neg. LLF: 156.43109900124645
Optimization terminated successfully (Exit mode 0)
Current function value: 156.4310990014516
Iterations: 9
Function evaluations: 68
Gradient evaluations: 9
Iteration: 1, Func. Count: 9, Neg. LLF: 22466121.8402116
Iteration: 2, Func. Count: 19, Neg. LLF: 165.0702231638462
Iteration: 3, Func. Count: 28, Neg. LLF: 157.06413631224595
Iteration: 4, Func. Count: 36, Neg. LLF: 156.94752172656155
Iteration: 5, Func. Count: 45, Neg. LLF: 156.55819388153287
Iteration: 6, Func. Count: 53, Neg. LLF: 156.45860180614153
Iteration: 7, Func. Count: 61, Neg. LLF: 156.439727659766
Iteration: 8, Func. Count: 69, Neg. LLF: 156.43148083218148
Iteration: 9, Func. Count: 77, Neg. LLF: 156.43110113635254
Iteration: 10, Func. Count: 85, Neg. LLF: 156.4310990184848
Iteration: 11, Func. Count: 92, Neg. LLF: 156.4310990265641
Optimization terminated successfully (Exit mode 0)
Current function value: 156.4310990184848
Iterations: 11
Function evaluations: 92
Gradient evaluations: 11
Iteration: 1, Func. Count: 10, Neg. LLF: 22659500.39315031
Iteration: 2, Func. Count: 21, Neg. LLF: 225.40490324446313
Iteration: 3, Func. Count: 31, Neg. LLF: 158.05277053621793
Iteration: 4, Func. Count: 41, Neg. LLF: 156.8272045295928
Iteration: 5, Func. Count: 51, Neg. LLF: 156.48744242555645
Iteration: 6, Func. Count: 60, Neg. LLF: 156.4758064050874
Iteration: 7, Func. Count: 69, Neg. LLF: 156.46294668941957
Iteration: 8, Func. Count: 78, Neg. LLF: 156.46015330619628
Iteration: 9, Func. Count: 87, Neg. LLF: 156.4595680324977
Iteration: 10, Func. Count: 96, Neg. LLF: 156.45932926506904
Iteration: 11, Func. Count: 105, Neg. LLF: 156.45925165712381
Iteration: 12, Func. Count: 114, Neg. LLF: 156.45924430586794
Iteration: 13, Func. Count: 122, Neg. LLF: 156.4592443056706
Optimization terminated successfully (Exit mode 0)
Current function value: 156.45924430586794
Iterations: 13
Function evaluations: 122
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 22730666.04575662
Iteration: 2, Func. Count: 23, Neg. LLF: 235.2220053683603
Iteration: 3, Func. Count: 34, Neg. LLF: 160.91196544747146
Iteration: 4, Func. Count: 45, Neg. LLF: 156.712681065057
Iteration: 5, Func. Count: 55, Neg. LLF: 156.55227291058546
Iteration: 6, Func. Count: 65, Neg. LLF: 156.4775498047525
Iteration: 7, Func. Count: 75, Neg. LLF: 156.4660998015553
Iteration: 8, Func. Count: 85, Neg. LLF: 156.46213288279245
Iteration: 9, Func. Count: 95, Neg. LLF: 156.46016074319027
Iteration: 10, Func. Count: 105, Neg. LLF: 156.45948695153976
Iteration: 11, Func. Count: 115, Neg. LLF: 156.45927673388132
Iteration: 12, Func. Count: 125, Neg. LLF: 156.45924761282083
Iteration: 13, Func. Count: 135, Neg. LLF: 156.45924404193352
Iteration: 14, Func. Count: 144, Neg. LLF: 156.45924405045355
Optimization terminated successfully (Exit mode 0)
Current function value: 156.45924404193352
Iterations: 14
Function evaluations: 144
Gradient evaluations: 14
Iteration: 1, Func. Count: 8, Neg. LLF: 166.27366092612664
Iteration: 2, Func. Count: 16, Neg. LLF: 159.27894012181795
Iteration: 3, Func. Count: 24, Neg. LLF: 159.28476574096098
Iteration: 4, Func. Count: 32, Neg. LLF: 158.45178193682685
Iteration: 5, Func. Count: 39, Neg. LLF: 160.61216549601318
Iteration: 6, Func. Count: 47, Neg. LLF: 158.15324424461227
Iteration: 7, Func. Count: 54, Neg. LLF: 158.22851987009383
Iteration: 8, Func. Count: 62, Neg. LLF: 158.11601761729798
Iteration: 9, Func. Count: 69, Neg. LLF: 158.10510362088235
Iteration: 10, Func. Count: 76, Neg. LLF: 158.08961856785547
Iteration: 11, Func. Count: 83, Neg. LLF: 158.0670791399732
Iteration: 12, Func. Count: 90, Neg. LLF: 158.05423399818048
Iteration: 13, Func. Count: 97, Neg. LLF: 158.05001969952758
Iteration: 14, Func. Count: 104, Neg. LLF: 158.0493615810062
Iteration: 15, Func. Count: 111, Neg. LLF: 158.04925542906597
Iteration: 16, Func. Count: 118, Neg. LLF: 158.0492077488101
Iteration: 17, Func. Count: 125, Neg. LLF: 158.04920280885392
Iteration: 18, Func. Count: 132, Neg. LLF: 158.04920212654574
Optimization terminated successfully (Exit mode 0)
Current function value: 158.04920212654574
Iterations: 18
Function evaluations: 132
Gradient evaluations: 18
Iteration: 1, Func. Count: 9, Neg. LLF: 586.0345534485581
Iteration: 2, Func. Count: 19, Neg. LLF: 158.22114285228002
Iteration: 3, Func. Count: 28, Neg. LLF: 155.99253792623063
Iteration: 4, Func. Count: 36, Neg. LLF: 155.9933600702784
Iteration: 5, Func. Count: 45, Neg. LLF: 155.98763378242984
Iteration: 6, Func. Count: 54, Neg. LLF: 155.98158229989534
Iteration: 7, Func. Count: 62, Neg. LLF: 155.98148573277658
Iteration: 8, Func. Count: 70, Neg. LLF: 155.9814846345895
Iteration: 9, Func. Count: 77, Neg. LLF: 155.9814846345817
Optimization terminated successfully (Exit mode 0)
Current function value: 155.9814846345895
Iterations: 9
Function evaluations: 77
Gradient evaluations: 9
Iteration: 1, Func. Count: 10, Neg. LLF: 22456807.1972064
Iteration: 2, Func. Count: 21, Neg. LLF: 196.46821892160537
Iteration: 3, Func. Count: 31, Neg. LLF: 157.85332662040204
Iteration: 4, Func. Count: 41, Neg. LLF: 157.0630383819124
Iteration: 5, Func. Count: 51, Neg. LLF: 156.84687716746296
Iteration: 6, Func. Count: 61, Neg. LLF: 155.6239094784786
Iteration: 7, Func. Count: 71, Neg. LLF: 155.33279682777209
Iteration: 8, Func. Count: 80, Neg. LLF: 155.3222008620314
Iteration: 9, Func. Count: 89, Neg. LLF: 155.31321086874124
Iteration: 10, Func. Count: 98, Neg. LLF: 155.30992903562318
Iteration: 11, Func. Count: 107, Neg. LLF: 155.30801628289734
Iteration: 12, Func. Count: 116, Neg. LLF: 155.30749018242884
Iteration: 13, Func. Count: 125, Neg. LLF: 155.30741055182222
Iteration: 14, Func. Count: 134, Neg. LLF: 155.30739359433636
Iteration: 15, Func. Count: 143, Neg. LLF: 155.30739184927924
Iteration: 16, Func. Count: 151, Neg. LLF: 155.30739184924522
Optimization terminated successfully (Exit mode 0)
Current function value: 155.30739184927924
Iterations: 16
Function evaluations: 151
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 22561252.97344112
Iteration: 2, Func. Count: 23, Neg. LLF: 179.1919949020697
Iteration: 3, Func. Count: 34, Neg. LLF: 158.00092885794555
Iteration: 4, Func. Count: 45, Neg. LLF: 157.44187258762983
Iteration: 5, Func. Count: 56, Neg. LLF: 156.4798803167479
Iteration: 6, Func. Count: 67, Neg. LLF: 156.7751578774548
Iteration: 7, Func. Count: 78, Neg. LLF: 156.8095035123542
Iteration: 8, Func. Count: 89, Neg. LLF: 155.9339221314967
Iteration: 9, Func. Count: 100, Neg. LLF: 156.349600184106
Iteration: 10, Func. Count: 111, Neg. LLF: 155.34370265142843
Iteration: 11, Func. Count: 121, Neg. LLF: 155.3268226719716
Iteration: 12, Func. Count: 131, Neg. LLF: 155.31565630126855
Iteration: 13, Func. Count: 141, Neg. LLF: 155.31035679876763
Iteration: 14, Func. Count: 151, Neg. LLF: 155.30866255887994
Iteration: 15, Func. Count: 161, Neg. LLF: 155.30748569875337
Iteration: 16, Func. Count: 171, Neg. LLF: 155.30739636014954
Iteration: 17, Func. Count: 181, Neg. LLF: 155.30739183304883
Iteration: 18, Func. Count: 190, Neg. LLF: 155.3073918479888
Optimization terminated successfully (Exit mode 0)
Current function value: 155.30739183304883
Iterations: 18
Function evaluations: 190
Gradient evaluations: 18
Iteration: 1, Func. Count: 12, Neg. LLF: 22624788.025925323
Iteration: 2, Func. Count: 25, Neg. LLF: 178.60891899518506
Iteration: 3, Func. Count: 37, Neg. LLF: 160.18258533364968
Iteration: 4, Func. Count: 49, Neg. LLF: 157.80117435686043
Iteration: 5, Func. Count: 61, Neg. LLF: 157.58627846552156
Iteration: 6, Func. Count: 73, Neg. LLF: 157.4587293874082
Iteration: 7, Func. Count: 85, Neg. LLF: 157.0868548121463
Iteration: 8, Func. Count: 97, Neg. LLF: 155.6886476920356
Iteration: 9, Func. Count: 109, Neg. LLF: 155.35262856080513
Iteration: 10, Func. Count: 120, Neg. LLF: 155.48720239870545
Iteration: 11, Func. Count: 132, Neg. LLF: 155.31672506746546
Iteration: 12, Func. Count: 143, Neg. LLF: 155.3141027205548
Iteration: 13, Func. Count: 154, Neg. LLF: 155.31156740407036
Iteration: 14, Func. Count: 165, Neg. LLF: 155.30888868470376
Iteration: 15, Func. Count: 176, Neg. LLF: 155.30771593738135
Iteration: 16, Func. Count: 187, Neg. LLF: 155.3074320841558
Iteration: 17, Func. Count: 198, Neg. LLF: 155.3073950929885
Iteration: 18, Func. Count: 209, Neg. LLF: 155.30739184363938
Iteration: 19, Func. Count: 219, Neg. LLF: 155.3073918837069
Optimization terminated successfully (Exit mode 0)
Current function value: 155.30739184363938
Iterations: 19
Function evaluations: 219
Gradient evaluations: 19
Iteration: 1, Func. Count: 9, Neg. LLF: 166.31659346309897
Iteration: 2, Func. Count: 18, Neg. LLF: 159.3198958724573
Iteration: 3, Func. Count: 27, Neg. LLF: 159.61320109516828
Iteration: 4, Func. Count: 36, Neg. LLF: 161.4080677225898
Iteration: 5, Func. Count: 46, Neg. LLF: 158.4357887494151
Iteration: 6, Func. Count: 54, Neg. LLF: 160.52132247603075
Iteration: 7, Func. Count: 63, Neg. LLF: 158.1212330579291
Iteration: 8, Func. Count: 71, Neg. LLF: 158.25993928051133
Iteration: 9, Func. Count: 80, Neg. LLF: 158.08032432148957
Iteration: 10, Func. Count: 88, Neg. LLF: 158.06392098759184
Iteration: 11, Func. Count: 96, Neg. LLF: 158.044516440713
Iteration: 12, Func. Count: 104, Neg. LLF: 158.0126841158644
Iteration: 13, Func. Count: 112, Neg. LLF: 157.99435156656736
Iteration: 14, Func. Count: 120, Neg. LLF: 157.98644268756098
Iteration: 15, Func. Count: 128, Neg. LLF: 157.98502835797314
Iteration: 16, Func. Count: 136, Neg. LLF: 157.98481043103018
Iteration: 17, Func. Count: 144, Neg. LLF: 157.98472238318004
Iteration: 18, Func. Count: 152, Neg. LLF: 157.98471100808123
Iteration: 19, Func. Count: 160, Neg. LLF: 157.98470776311814
Iteration: 20, Func. Count: 167, Neg. LLF: 157.98470776310955
Optimization terminated successfully (Exit mode 0)
Current function value: 157.98470776311814
Iterations: 20
Function evaluations: 167
Gradient evaluations: 20
Iteration: 1, Func. Count: 10, Neg. LLF: 1173.033332399697
Iteration: 2, Func. Count: 20, Neg. LLF: 160.84997208908104
Iteration: 3, Func. Count: 30, Neg. LLF: 155.862523848627
Iteration: 4, Func. Count: 39, Neg. LLF: 156.5004246606955
Iteration: 5, Func. Count: 49, Neg. LLF: 155.8344954286472
Iteration: 6, Func. Count: 58, Neg. LLF: 155.8259602430851
Iteration: 7, Func. Count: 67, Neg. LLF: 155.82414894907814
Iteration: 8, Func. Count: 76, Neg. LLF: 155.82382920148544
Iteration: 9, Func. Count: 85, Neg. LLF: 155.82373887532108
Iteration: 10, Func. Count: 94, Neg. LLF: 155.82373373067958
Iteration: 11, Func. Count: 102, Neg. LLF: 155.82373373065147
Optimization terminated successfully (Exit mode 0)
Current function value: 155.82373373067958
Iterations: 11
Function evaluations: 102
Gradient evaluations: 11
Iteration: 1, Func. Count: 11, Neg. LLF: 22478462.995858807
Iteration: 2, Func. Count: 23, Neg. LLF: 198.91963735779194
Iteration: 3, Func. Count: 34, Neg. LLF: 158.12234800307982
Iteration: 4, Func. Count: 45, Neg. LLF: 157.18035649133284
Iteration: 5, Func. Count: 56, Neg. LLF: 156.93460539156936
Iteration: 6, Func. Count: 67, Neg. LLF: 155.83619711443296
Iteration: 7, Func. Count: 78, Neg. LLF: 155.33839915139708
Iteration: 8, Func. Count: 88, Neg. LLF: 155.4119862264904
Iteration: 9, Func. Count: 99, Neg. LLF: 155.3326729880745
Iteration: 10, Func. Count: 110, Neg. LLF: 155.2874646857568
Iteration: 11, Func. Count: 120, Neg. LLF: 155.2786782989068
Iteration: 12, Func. Count: 130, Neg. LLF: 155.27600414272186
Iteration: 13, Func. Count: 140, Neg. LLF: 155.27576627870465
Iteration: 14, Func. Count: 150, Neg. LLF: 155.27549581472877
Iteration: 15, Func. Count: 160, Neg. LLF: 155.27528517850143
Iteration: 16, Func. Count: 170, Neg. LLF: 155.27520872496322
Iteration: 17, Func. Count: 180, Neg. LLF: 155.27519822790356
Iteration: 18, Func. Count: 190, Neg. LLF: 155.27519764163847
Optimization terminated successfully (Exit mode 0)
Current function value: 155.27519764163847
Iterations: 18
Function evaluations: 190
Gradient evaluations: 18
Iteration: 1, Func. Count: 12, Neg. LLF: 22597228.997048903
Iteration: 2, Func. Count: 25, Neg. LLF: 179.07925862327377
Iteration: 3, Func. Count: 37, Neg. LLF: 158.62622529795013
Iteration: 4, Func. Count: 49, Neg. LLF: 157.19189037715523
Iteration: 5, Func. Count: 61, Neg. LLF: 156.41074384431596
Iteration: 6, Func. Count: 73, Neg. LLF: 156.80151683183797
Iteration: 7, Func. Count: 85, Neg. LLF: 156.66932634890284
Iteration: 8, Func. Count: 97, Neg. LLF: 156.4620494760268
Iteration: 9, Func. Count: 109, Neg. LLF: 156.3174039653635
Iteration: 10, Func. Count: 121, Neg. LLF: 155.35515859771644
Iteration: 11, Func. Count: 132, Neg. LLF: 155.30597849094812
Iteration: 12, Func. Count: 143, Neg. LLF: 155.28721675423986
Iteration: 13, Func. Count: 154, Neg. LLF: 155.28290458998268
Iteration: 14, Func. Count: 165, Neg. LLF: 155.28130346245877
Iteration: 15, Func. Count: 176, Neg. LLF: 155.27879019447846
Iteration: 16, Func. Count: 187, Neg. LLF: 155.27627523726576
Iteration: 17, Func. Count: 198, Neg. LLF: 155.27546937006863
Iteration: 18, Func. Count: 209, Neg. LLF: 155.27525278276337
Iteration: 19, Func. Count: 220, Neg. LLF: 155.27521911627713
Iteration: 20, Func. Count: 231, Neg. LLF: 155.27520030203036
Iteration: 21, Func. Count: 242, Neg. LLF: 155.27519778403303
Iteration: 22, Func. Count: 252, Neg. LLF: 155.27519778952785
Optimization terminated successfully (Exit mode 0)
Current function value: 155.27519778403303
Iterations: 22
Function evaluations: 252
Gradient evaluations: 22
Iteration: 1, Func. Count: 13, Neg. LLF: 22635785.622303125
Iteration: 2, Func. Count: 27, Neg. LLF: 178.28092970200723
Iteration: 3, Func. Count: 40, Neg. LLF: 163.1341209680786
Iteration: 4, Func. Count: 53, Neg. LLF: 156.73445895826424
Iteration: 5, Func. Count: 66, Neg. LLF: 158.2557157408012
Iteration: 6, Func. Count: 79, Neg. LLF: 157.59032949904406
Iteration: 7, Func. Count: 92, Neg. LLF: 160.51757754528228
Iteration: 8, Func. Count: 106, Neg. LLF: 156.7220076263018
Iteration: 9, Func. Count: 119, Neg. LLF: 156.31822246120083
Iteration: 10, Func. Count: 132, Neg. LLF: 155.3908490411725
Iteration: 11, Func. Count: 144, Neg. LLF: 155.3506526331181
Iteration: 12, Func. Count: 156, Neg. LLF: 155.31624345170476
Iteration: 13, Func. Count: 168, Neg. LLF: 155.31188633923733
Iteration: 14, Func. Count: 180, Neg. LLF: 155.30366921485842
Iteration: 15, Func. Count: 192, Neg. LLF: 155.30012303847198
Iteration: 16, Func. Count: 204, Neg. LLF: 155.292863888302
Iteration: 17, Func. Count: 216, Neg. LLF: 155.28463122199042
Iteration: 18, Func. Count: 228, Neg. LLF: 155.27905793214137
Iteration: 19, Func. Count: 240, Neg. LLF: 155.27614272006767
Iteration: 20, Func. Count: 252, Neg. LLF: 155.27529455768587
Iteration: 21, Func. Count: 264, Neg. LLF: 155.2752217917483
Iteration: 22, Func. Count: 276, Neg. LLF: 155.2751986570626
Iteration: 23, Func. Count: 288, Neg. LLF: 155.2751976359563
Iteration: 24, Func. Count: 299, Neg. LLF: 155.2751976764943
Optimization terminated successfully (Exit mode 0)
Current function value: 155.2751976359563
Iterations: 24
Function evaluations: 299
Gradient evaluations: 24
Iteration: 1, Func. Count: 10, Neg. LLF: 162.35338714903392
Iteration: 2, Func. Count: 20, Neg. LLF: 158.08255530932033
Iteration: 3, Func. Count: 30, Neg. LLF: 158.031897238565
Iteration: 4, Func. Count: 41, Neg. LLF: 158.65466124972545
Iteration: 5, Func. Count: 51, Neg. LLF: 156.3146271391528
Iteration: 6, Func. Count: 60, Neg. LLF: 157.76780076776322
Iteration: 7, Func. Count: 70, Neg. LLF: 156.515310068648
Iteration: 8, Func. Count: 80, Neg. LLF: 156.0266256410219
Iteration: 9, Func. Count: 89, Neg. LLF: 155.9703721133429
Iteration: 10, Func. Count: 98, Neg. LLF: 155.92025608927267
Iteration: 11, Func. Count: 107, Neg. LLF: 155.85805035405534
Iteration: 12, Func. Count: 116, Neg. LLF: 155.82753898459
Iteration: 13, Func. Count: 125, Neg. LLF: 155.78377176717726
Iteration: 14, Func. Count: 134, Neg. LLF: 155.767118326828
Iteration: 15, Func. Count: 143, Neg. LLF: 155.75884199354923
Iteration: 16, Func. Count: 152, Neg. LLF: 155.75556859202445
Iteration: 17, Func. Count: 161, Neg. LLF: 155.75525235832217
Iteration: 18, Func. Count: 170, Neg. LLF: 155.75523117312287
Iteration: 19, Func. Count: 179, Neg. LLF: 155.7552305636248
Optimization terminated successfully (Exit mode 0)
Current function value: 155.7552305636248
Iterations: 19
Function evaluations: 179
Gradient evaluations: 19
Iteration: 1, Func. Count: 11, Neg. LLF: 4300510.784184954
Iteration: 2, Func. Count: 22, Neg. LLF: 206.5936080257648
Iteration: 3, Func. Count: 33, Neg. LLF: 154.67763200914118
Iteration: 4, Func. Count: 44, Neg. LLF: 154.0501269718825
Iteration: 5, Func. Count: 54, Neg. LLF: 154.1611585358972
Iteration: 6, Func. Count: 65, Neg. LLF: 153.96639343070922
Iteration: 7, Func. Count: 75, Neg. LLF: 153.95009470679724
Iteration: 8, Func. Count: 85, Neg. LLF: 153.95475815996622
Iteration: 9, Func. Count: 96, Neg. LLF: 153.94399765259936
Iteration: 10, Func. Count: 106, Neg. LLF: 153.9441405111342
Iteration: 11, Func. Count: 117, Neg. LLF: 153.94383139343907
Iteration: 12, Func. Count: 126, Neg. LLF: 153.94383136808548
Optimization terminated successfully (Exit mode 0)
Current function value: 153.94383139343907
Iterations: 12
Function evaluations: 126
Gradient evaluations: 12
Iteration: 1, Func. Count: 12, Neg. LLF: 22553807.034433313
Iteration: 2, Func. Count: 25, Neg. LLF: 244.79382618048106
Iteration: 3, Func. Count: 37, Neg. LLF: 157.13134044767963
Iteration: 4, Func. Count: 49, Neg. LLF: 155.30242329505842
Iteration: 5, Func. Count: 61, Neg. LLF: 155.42602594453902
Iteration: 6, Func. Count: 73, Neg. LLF: 154.15458619703588
Iteration: 7, Func. Count: 84, Neg. LLF: 154.1001891846094
Iteration: 8, Func. Count: 95, Neg. LLF: 153.9994090682325
Iteration: 9, Func. Count: 106, Neg. LLF: 154.0314038694127
Iteration: 10, Func. Count: 118, Neg. LLF: 153.96374121778132
Iteration: 11, Func. Count: 129, Neg. LLF: 153.9462289809017
Iteration: 12, Func. Count: 140, Neg. LLF: 153.94441644182567
Iteration: 13, Func. Count: 151, Neg. LLF: 153.94391273673835
Iteration: 14, Func. Count: 162, Neg. LLF: 153.9438455366658
Iteration: 15, Func. Count: 173, Neg. LLF: 153.94383161913697
Iteration: 16, Func. Count: 183, Neg. LLF: 153.94383160531586
Optimization terminated successfully (Exit mode 0)
Current function value: 153.94383161913697
Iterations: 16
Function evaluations: 183
Gradient evaluations: 16
Iteration: 1, Func. Count: 13, Neg. LLF: 22676576.15665938
Iteration: 2, Func. Count: 27, Neg. LLF: 265.59092421270674
Iteration: 3, Func. Count: 40, Neg. LLF: 158.39269933277384
Iteration: 4, Func. Count: 53, Neg. LLF: 155.17128242848898
Iteration: 5, Func. Count: 65, Neg. LLF: 161.56023096029688
Iteration: 6, Func. Count: 78, Neg. LLF: 155.64371000331906
Iteration: 7, Func. Count: 91, Neg. LLF: 154.2492856487916
Iteration: 8, Func. Count: 103, Neg. LLF: 154.14016759598678
Iteration: 9, Func. Count: 115, Neg. LLF: 154.0800354196582
Iteration: 10, Func. Count: 127, Neg. LLF: 154.07865827301887
Iteration: 11, Func. Count: 140, Neg. LLF: 154.02322107251157
Iteration: 12, Func. Count: 152, Neg. LLF: 153.97142658708117
Iteration: 13, Func. Count: 164, Neg. LLF: 153.94631058715493
Iteration: 14, Func. Count: 176, Neg. LLF: 153.9442070179116
Iteration: 15, Func. Count: 188, Neg. LLF: 153.94389081910003
Iteration: 16, Func. Count: 200, Neg. LLF: 153.9438568040241
Iteration: 17, Func. Count: 212, Neg. LLF: 153.94383149645006
Iteration: 18, Func. Count: 223, Neg. LLF: 153.94383149147512
Optimization terminated successfully (Exit mode 0)
Current function value: 153.94383149645006
Iterations: 18
Function evaluations: 223
Gradient evaluations: 18
Iteration: 1, Func. Count: 14, Neg. LLF: 218.67231889904173
Iteration: 2, Func. Count: 28, Neg. LLF: 337.72284728392185
Iteration: 3, Func. Count: 43, Neg. LLF: 180.25342344530102
Iteration: 4, Func. Count: 57, Neg. LLF: 161.70887139244002
Iteration: 5, Func. Count: 71, Neg. LLF: 159.05847552800935
Iteration: 6, Func. Count: 85, Neg. LLF: 154.56659759285841
Iteration: 7, Func. Count: 98, Neg. LLF: 154.20538423782318
Iteration: 8, Func. Count: 111, Neg. LLF: 154.05053570531047
Iteration: 9, Func. Count: 124, Neg. LLF: 154.21843945352518
Iteration: 10, Func. Count: 138, Neg. LLF: 154.00599623852233
Iteration: 11, Func. Count: 151, Neg. LLF: 153.97509294454608
Iteration: 12, Func. Count: 164, Neg. LLF: 153.95475431349
Iteration: 13, Func. Count: 177, Neg. LLF: 153.9457555359363
Iteration: 14, Func. Count: 190, Neg. LLF: 153.9438524649768
Iteration: 15, Func. Count: 203, Neg. LLF: 153.9438324023892
Iteration: 16, Func. Count: 216, Neg. LLF: 153.94383125929318
Iteration: 17, Func. Count: 228, Neg. LLF: 153.94383126456088
Optimization terminated successfully (Exit mode 0)
Current function value: 153.94383125929318
Iterations: 17
Function evaluations: 228
Gradient evaluations: 17
Iteration: 1, Func. Count: 7, Neg. LLF: 163.22092673397475
Iteration: 2, Func. Count: 13, Neg. LLF: 163.73755378792734
Iteration: 3, Func. Count: 20, Neg. LLF: 161.77515488128907
Iteration: 4, Func. Count: 27, Neg. LLF: 166.42396852549987
Iteration: 5, Func. Count: 34, Neg. LLF: 161.3122791754832
Iteration: 6, Func. Count: 40, Neg. LLF: 161.30796377920296
Iteration: 7, Func. Count: 46, Neg. LLF: 161.30714279101144
Iteration: 8, Func. Count: 52, Neg. LLF: 161.30206879609554
Iteration: 9, Func. Count: 58, Neg. LLF: 161.29396815882413
Iteration: 10, Func. Count: 64, Neg. LLF: 161.2800367915307
Iteration: 11, Func. Count: 70, Neg. LLF: 161.264810734958
Iteration: 12, Func. Count: 76, Neg. LLF: 161.26437418987874
Iteration: 13, Func. Count: 82, Neg. LLF: 161.26421898776468
Iteration: 14, Func. Count: 87, Neg. LLF: 161.26421916646748
Optimization terminated successfully (Exit mode 0)
Current function value: 161.26421898776468
Iterations: 14
Function evaluations: 87
Gradient evaluations: 14
Iteration: 1, Func. Count: 8, Neg. LLF: 183.27905169992368
Iteration: 2, Func. Count: 16, Neg. LLF: 166.9667381612813
Iteration: 3, Func. Count: 24, Neg. LLF: 217.147775391388
Iteration: 4, Func. Count: 33, Neg. LLF: 161.7126146044162
Iteration: 5, Func. Count: 41, Neg. LLF: 161.1615753615197
Iteration: 6, Func. Count: 48, Neg. LLF: 161.10778303299244
Iteration: 7, Func. Count: 55, Neg. LLF: 161.08393014936007
Iteration: 8, Func. Count: 62, Neg. LLF: 161.01580961400032
Iteration: 9, Func. Count: 69, Neg. LLF: 161.00074991197275
Iteration: 10, Func. Count: 76, Neg. LLF: 161.00012626744487
Iteration: 11, Func. Count: 83, Neg. LLF: 160.99987703083582
Iteration: 12, Func. Count: 90, Neg. LLF: 160.99987084227647
Iteration: 13, Func. Count: 96, Neg. LLF: 160.99987084220658
Optimization terminated successfully (Exit mode 0)
Current function value: 160.99987084227647
Iterations: 13
Function evaluations: 96
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 182.32586494088466
Iteration: 2, Func. Count: 18, Neg. LLF: 177.54682569508876
Iteration: 3, Func. Count: 27, Neg. LLF: 166.0076319611866
Iteration: 4, Func. Count: 36, Neg. LLF: 163.50048986206653
Iteration: 5, Func. Count: 45, Neg. LLF: 163.41396201973183
Iteration: 6, Func. Count: 54, Neg. LLF: 160.93648577235894
Iteration: 7, Func. Count: 62, Neg. LLF: 160.03370284472095
Iteration: 8, Func. Count: 70, Neg. LLF: 161.19009259322897
Iteration: 9, Func. Count: 80, Neg. LLF: 159.99814140697228
Iteration: 10, Func. Count: 89, Neg. LLF: 159.85286071375305
Iteration: 11, Func. Count: 97, Neg. LLF: 159.85921428448805
Iteration: 12, Func. Count: 106, Neg. LLF: 159.83952133421957
Iteration: 13, Func. Count: 114, Neg. LLF: 159.83919219910038
Iteration: 14, Func. Count: 122, Neg. LLF: 159.83863730972752
Iteration: 15, Func. Count: 130, Neg. LLF: 159.8380118054559
Iteration: 16, Func. Count: 138, Neg. LLF: 159.83714219537256
Iteration: 17, Func. Count: 146, Neg. LLF: 159.83666960329816
Iteration: 18, Func. Count: 154, Neg. LLF: 159.83654496285368
Iteration: 19, Func. Count: 162, Neg. LLF: 159.83653878668497
Iteration: 20, Func. Count: 169, Neg. LLF: 159.83653878666976
Optimization terminated successfully (Exit mode 0)
Current function value: 159.83653878668497
Iterations: 20
Function evaluations: 169
Gradient evaluations: 20
Iteration: 1, Func. Count: 10, Neg. LLF: 182.65132369392603
Iteration: 2, Func. Count: 20, Neg. LLF: 172.1063586566148
Iteration: 3, Func. Count: 30, Neg. LLF: 274.6809791707672
Iteration: 4, Func. Count: 41, Neg. LLF: 162.53256549106092
Iteration: 5, Func. Count: 51, Neg. LLF: 160.6372313429882
Iteration: 6, Func. Count: 60, Neg. LLF: 161.15439691236318
Iteration: 7, Func. Count: 70, Neg. LLF: 160.60493598017575
Iteration: 8, Func. Count: 79, Neg. LLF: 160.59211906708038
Iteration: 9, Func. Count: 88, Neg. LLF: 160.58880749624038
Iteration: 10, Func. Count: 97, Neg. LLF: 160.5815587511869
Iteration: 11, Func. Count: 106, Neg. LLF: 160.5767660131263
Iteration: 12, Func. Count: 115, Neg. LLF: 160.57072966864197
Iteration: 13, Func. Count: 124, Neg. LLF: 160.5662516910796
Iteration: 14, Func. Count: 133, Neg. LLF: 160.56432229112875
Iteration: 15, Func. Count: 142, Neg. LLF: 160.5638801993468
Iteration: 16, Func. Count: 151, Neg. LLF: 160.56380611559536
Iteration: 17, Func. Count: 160, Neg. LLF: 160.5638032251341
Iteration: 18, Func. Count: 168, Neg. LLF: 160.563803225135
Optimization terminated successfully (Exit mode 0)
Current function value: 160.5638032251341
Iterations: 18
Function evaluations: 168
Gradient evaluations: 18
Iteration: 1, Func. Count: 11, Neg. LLF: 182.95640668700162
Iteration: 2, Func. Count: 22, Neg. LLF: 169.83263447970847
Iteration: 3, Func. Count: 33, Neg. LLF: 253.86177912043948
Iteration: 4, Func. Count: 44, Neg. LLF: 163.08999070452316
Iteration: 5, Func. Count: 55, Neg. LLF: 161.6535430656555
Iteration: 6, Func. Count: 66, Neg. LLF: 160.60876918106155
Iteration: 7, Func. Count: 76, Neg. LLF: 160.59487187870874
Iteration: 8, Func. Count: 86, Neg. LLF: 160.59069465585375
Iteration: 9, Func. Count: 96, Neg. LLF: 160.58633155896132
Iteration: 10, Func. Count: 106, Neg. LLF: 160.58058269826927
Iteration: 11, Func. Count: 116, Neg. LLF: 160.5742186067611
Iteration: 12, Func. Count: 126, Neg. LLF: 160.56795558914564
Iteration: 13, Func. Count: 136, Neg. LLF: 160.56477989481385
Iteration: 14, Func. Count: 146, Neg. LLF: 160.56387790011394
Iteration: 15, Func. Count: 156, Neg. LLF: 160.5638056808411
Iteration: 16, Func. Count: 166, Neg. LLF: 160.5638032730151
Iteration: 17, Func. Count: 175, Neg. LLF: 160.56380332378774
Optimization terminated successfully (Exit mode 0)
Current function value: 160.5638032730151
Iterations: 17
Function evaluations: 175
Gradient evaluations: 17
Iteration: 1, Func. Count: 8, Neg. LLF: 164.3034863022027
Iteration: 2, Func. Count: 16, Neg. LLF: 161.16753014351337
Iteration: 3, Func. Count: 25, Neg. LLF: 166.50548293452272
Iteration: 4, Func. Count: 33, Neg. LLF: 159.50979354711296
Iteration: 5, Func. Count: 40, Neg. LLF: 160.12567877384785
Iteration: 6, Func. Count: 48, Neg. LLF: 159.2321524126687
Iteration: 7, Func. Count: 55, Neg. LLF: 159.18082872518434
Iteration: 8, Func. Count: 62, Neg. LLF: 159.16904355861257
Iteration: 9, Func. Count: 69, Neg. LLF: 159.1631944792506
Iteration: 10, Func. Count: 76, Neg. LLF: 159.15580151476135
Iteration: 11, Func. Count: 83, Neg. LLF: 159.14540422181176
Iteration: 12, Func. Count: 90, Neg. LLF: 159.13518741967272
Iteration: 13, Func. Count: 97, Neg. LLF: 159.12985146832472
Iteration: 14, Func. Count: 104, Neg. LLF: 159.12920147565538
Iteration: 15, Func. Count: 111, Neg. LLF: 159.12916114682463
Iteration: 16, Func. Count: 118, Neg. LLF: 159.12915956909237
Iteration: 17, Func. Count: 124, Neg. LLF: 159.12915956909245
Optimization terminated successfully (Exit mode 0)
Current function value: 159.12915956909237
Iterations: 17
Function evaluations: 124
Gradient evaluations: 17
Iteration: 1, Func. Count: 9, Neg. LLF: 979.0034097193594
Iteration: 2, Func. Count: 19, Neg. LLF: 157.86181815631775
Iteration: 3, Func. Count: 28, Neg. LLF: 156.44898851961312
Iteration: 4, Func. Count: 36, Neg. LLF: 173.14478286971345
Iteration: 5, Func. Count: 46, Neg. LLF: 156.431640161307
Iteration: 6, Func. Count: 54, Neg. LLF: 156.43121629436808
Iteration: 7, Func. Count: 62, Neg. LLF: 156.43110038866547
Iteration: 8, Func. Count: 70, Neg. LLF: 156.4310990184356
Iteration: 9, Func. Count: 77, Neg. LLF: 156.4310990182176
Optimization terminated successfully (Exit mode 0)
Current function value: 156.4310990184356
Iterations: 9
Function evaluations: 77
Gradient evaluations: 9
Iteration: 1, Func. Count: 10, Neg. LLF: 22470377.592751406
Iteration: 2, Func. Count: 21, Neg. LLF: 165.3473147495041
Iteration: 3, Func. Count: 31, Neg. LLF: 157.09186576213403
Iteration: 4, Func. Count: 41, Neg. LLF: 156.77997340924185
Iteration: 5, Func. Count: 51, Neg. LLF: 156.55389164129568
Iteration: 6, Func. Count: 60, Neg. LLF: 156.45724018252176
Iteration: 7, Func. Count: 69, Neg. LLF: 156.43183761549108
Iteration: 8, Func. Count: 78, Neg. LLF: 156.43123169921262
Iteration: 9, Func. Count: 87, Neg. LLF: 156.43110920348292
Iteration: 10, Func. Count: 96, Neg. LLF: 156.43110080526822
Iteration: 11, Func. Count: 105, Neg. LLF: 156.43109886836103
Iteration: 12, Func. Count: 113, Neg. LLF: 156.43109887626
Optimization terminated successfully (Exit mode 0)
Current function value: 156.43109886836103
Iterations: 12
Function evaluations: 113
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 22665624.58924581
Iteration: 2, Func. Count: 23, Neg. LLF: 225.85083090933827
Iteration: 3, Func. Count: 34, Neg. LLF: 158.11696654572398
Iteration: 4, Func. Count: 45, Neg. LLF: 156.8258237182945
Iteration: 5, Func. Count: 56, Neg. LLF: 156.487954278376
Iteration: 6, Func. Count: 66, Neg. LLF: 156.4761999379516
Iteration: 7, Func. Count: 76, Neg. LLF: 156.46323914544809
Iteration: 8, Func. Count: 86, Neg. LLF: 156.46024665974812
Iteration: 9, Func. Count: 96, Neg. LLF: 156.45960164919126
Iteration: 10, Func. Count: 106, Neg. LLF: 156.45933553788458
Iteration: 11, Func. Count: 116, Neg. LLF: 156.45925189851204
Iteration: 12, Func. Count: 126, Neg. LLF: 156.45924429035048
Iteration: 13, Func. Count: 135, Neg. LLF: 156.45924429016083
Optimization terminated successfully (Exit mode 0)
Current function value: 156.45924429035048
Iterations: 13
Function evaluations: 135
Gradient evaluations: 13
Iteration: 1, Func. Count: 12, Neg. LLF: 22732003.664640564
Iteration: 2, Func. Count: 25, Neg. LLF: 235.4669096250023
Iteration: 3, Func. Count: 37, Neg. LLF: 161.09326195565524
Iteration: 4, Func. Count: 49, Neg. LLF: 156.7169652189019
Iteration: 5, Func. Count: 60, Neg. LLF: 156.55356207140412
Iteration: 6, Func. Count: 71, Neg. LLF: 156.47758696622628
Iteration: 7, Func. Count: 82, Neg. LLF: 156.46663282550566
Iteration: 8, Func. Count: 93, Neg. LLF: 156.46238046424642
Iteration: 9, Func. Count: 104, Neg. LLF: 156.46024738688806
Iteration: 10, Func. Count: 115, Neg. LLF: 156.4595049986467
Iteration: 11, Func. Count: 126, Neg. LLF: 156.45927897677817
Iteration: 12, Func. Count: 137, Neg. LLF: 156.45924793559712
Iteration: 13, Func. Count: 148, Neg. LLF: 156.4592440493535
Iteration: 14, Func. Count: 158, Neg. LLF: 156.4592440578736
Optimization terminated successfully (Exit mode 0)
Current function value: 156.4592440493535
Iterations: 14
Function evaluations: 158
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 166.5560279137201
Iteration: 2, Func. Count: 18, Neg. LLF: 159.351359258081
Iteration: 3, Func. Count: 27, Neg. LLF: 161.1833141947644
Iteration: 4, Func. Count: 36, Neg. LLF: 159.92302717132654
Iteration: 5, Func. Count: 45, Neg. LLF: 158.41377017710784
Iteration: 6, Func. Count: 53, Neg. LLF: 158.1468181076324
Iteration: 7, Func. Count: 61, Neg. LLF: 158.1287271383532
Iteration: 8, Func. Count: 69, Neg. LLF: 158.1137089370205
Iteration: 9, Func. Count: 77, Neg. LLF: 158.10713863113043
Iteration: 10, Func. Count: 85, Neg. LLF: 158.07625794078794
Iteration: 11, Func. Count: 93, Neg. LLF: 158.05512735829228
Iteration: 12, Func. Count: 101, Neg. LLF: 158.05208024988508
Iteration: 13, Func. Count: 109, Neg. LLF: 158.0494927054499
Iteration: 14, Func. Count: 117, Neg. LLF: 158.04924403873696
Iteration: 15, Func. Count: 125, Neg. LLF: 158.04920237466567
Iteration: 16, Func. Count: 132, Neg. LLF: 158.0492023746352
Optimization terminated successfully (Exit mode 0)
Current function value: 158.04920237466567
Iterations: 16
Function evaluations: 132
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 651.832300275422
Iteration: 2, Func. Count: 21, Neg. LLF: 158.11993068599793
Iteration: 3, Func. Count: 31, Neg. LLF: 155.992689190561
Iteration: 4, Func. Count: 40, Neg. LLF: 155.99403431303978
Iteration: 5, Func. Count: 50, Neg. LLF: 155.98741843447638
Iteration: 6, Func. Count: 60, Neg. LLF: 155.98158607546827
Iteration: 7, Func. Count: 69, Neg. LLF: 155.98148578693613
Iteration: 8, Func. Count: 78, Neg. LLF: 155.98148464486846
Iteration: 9, Func. Count: 86, Neg. LLF: 155.98148464486158
Optimization terminated successfully (Exit mode 0)
Current function value: 155.98148464486846
Iterations: 9
Function evaluations: 86
Gradient evaluations: 9
Iteration: 1, Func. Count: 11, Neg. LLF: 22460616.951660696
Iteration: 2, Func. Count: 23, Neg. LLF: 196.8561824271182
Iteration: 3, Func. Count: 34, Neg. LLF: 157.8877924396957
Iteration: 4, Func. Count: 45, Neg. LLF: 157.0688393990875
Iteration: 5, Func. Count: 56, Neg. LLF: 156.85332072741107
Iteration: 6, Func. Count: 67, Neg. LLF: 155.65500647427442
Iteration: 7, Func. Count: 78, Neg. LLF: 155.33310658822336
Iteration: 8, Func. Count: 88, Neg. LLF: 155.32281201699288
Iteration: 9, Func. Count: 98, Neg. LLF: 155.31330215273806
Iteration: 10, Func. Count: 108, Neg. LLF: 155.31003253885876
Iteration: 11, Func. Count: 118, Neg. LLF: 155.30801805013152
Iteration: 12, Func. Count: 128, Neg. LLF: 155.307491949164
Iteration: 13, Func. Count: 138, Neg. LLF: 155.30741160520205
Iteration: 14, Func. Count: 148, Neg. LLF: 155.307393840109
Iteration: 15, Func. Count: 158, Neg. LLF: 155.30739187306628
Iteration: 16, Func. Count: 167, Neg. LLF: 155.30739187304061
Optimization terminated successfully (Exit mode 0)
Current function value: 155.30739187306628
Iterations: 16
Function evaluations: 167
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 22566552.333966445
Iteration: 2, Func. Count: 25, Neg. LLF: 179.18740300354963
Iteration: 3, Func. Count: 37, Neg. LLF: 158.11439320530243
Iteration: 4, Func. Count: 49, Neg. LLF: 157.50735585919014
Iteration: 5, Func. Count: 61, Neg. LLF: 156.3987166940392
Iteration: 6, Func. Count: 73, Neg. LLF: 156.79929946520832
Iteration: 7, Func. Count: 85, Neg. LLF: 156.8129737954738
Iteration: 8, Func. Count: 97, Neg. LLF: 156.08095518244676
Iteration: 9, Func. Count: 109, Neg. LLF: 155.79862701333747
Iteration: 10, Func. Count: 121, Neg. LLF: 155.33629829481978
Iteration: 11, Func. Count: 132, Neg. LLF: 155.32232005119187
Iteration: 12, Func. Count: 143, Neg. LLF: 155.3131703247616
Iteration: 13, Func. Count: 154, Neg. LLF: 155.30999261962938
Iteration: 14, Func. Count: 165, Neg. LLF: 155.3082147161257
Iteration: 15, Func. Count: 176, Neg. LLF: 155.30745703601679
Iteration: 16, Func. Count: 187, Neg. LLF: 155.30739477664665
Iteration: 17, Func. Count: 198, Neg. LLF: 155.3073918098372
Iteration: 18, Func. Count: 208, Neg. LLF: 155.30739182474937
Optimization terminated successfully (Exit mode 0)
Current function value: 155.3073918098372
Iterations: 18
Function evaluations: 208
Gradient evaluations: 18
Iteration: 1, Func. Count: 13, Neg. LLF: 22625803.93487049
Iteration: 2, Func. Count: 27, Neg. LLF: 178.5848234035871
Iteration: 3, Func. Count: 40, Neg. LLF: 160.51173915683603
Iteration: 4, Func. Count: 53, Neg. LLF: 157.32700657394102
Iteration: 5, Func. Count: 66, Neg. LLF: 157.5897008196908
Iteration: 6, Func. Count: 79, Neg. LLF: 157.45748343080828
Iteration: 7, Func. Count: 92, Neg. LLF: 156.54594154162152
Iteration: 8, Func. Count: 105, Neg. LLF: 155.36112650200843
Iteration: 9, Func. Count: 117, Neg. LLF: 155.35508924383126
Iteration: 10, Func. Count: 130, Neg. LLF: 155.31714859632024
Iteration: 11, Func. Count: 142, Neg. LLF: 155.3088806116342
Iteration: 12, Func. Count: 154, Neg. LLF: 155.30790958946528
Iteration: 13, Func. Count: 166, Neg. LLF: 155.307779043151
Iteration: 14, Func. Count: 178, Neg. LLF: 155.30769889118883
Iteration: 15, Func. Count: 190, Neg. LLF: 155.30756581936944
Iteration: 16, Func. Count: 202, Neg. LLF: 155.30745061008378
Iteration: 17, Func. Count: 214, Neg. LLF: 155.3074001767777
Iteration: 18, Func. Count: 226, Neg. LLF: 155.30739250290466
Iteration: 19, Func. Count: 238, Neg. LLF: 155.30739187695303
Optimization terminated successfully (Exit mode 0)
Current function value: 155.30739187695303
Iterations: 19
Function evaluations: 238
Gradient evaluations: 19
Iteration: 1, Func. Count: 10, Neg. LLF: 166.23820895463967
Iteration: 2, Func. Count: 20, Neg. LLF: 159.34391161338706
Iteration: 3, Func. Count: 30, Neg. LLF: 161.70759772988882
Iteration: 4, Func. Count: 41, Neg. LLF: 165.80107091875868
Iteration: 5, Func. Count: 51, Neg. LLF: 158.38573122618234
Iteration: 6, Func. Count: 60, Neg. LLF: 159.87666206892678
Iteration: 7, Func. Count: 70, Neg. LLF: 159.19805527582946
Iteration: 8, Func. Count: 80, Neg. LLF: 158.09796237461197
Iteration: 9, Func. Count: 89, Neg. LLF: 158.0844758912984
Iteration: 10, Func. Count: 98, Neg. LLF: 158.07472651111843
Iteration: 11, Func. Count: 107, Neg. LLF: 158.03857744892372
Iteration: 12, Func. Count: 116, Neg. LLF: 158.0088448698168
Iteration: 13, Func. Count: 125, Neg. LLF: 157.98944272685497
Iteration: 14, Func. Count: 134, Neg. LLF: 157.98572920693084
Iteration: 15, Func. Count: 143, Neg. LLF: 157.98498921786864
Iteration: 16, Func. Count: 152, Neg. LLF: 157.98477065292437
Iteration: 17, Func. Count: 161, Neg. LLF: 157.98471467905443
Iteration: 18, Func. Count: 170, Neg. LLF: 157.9847087570134
Iteration: 19, Func. Count: 179, Neg. LLF: 157.9847077363863
Iteration: 20, Func. Count: 187, Neg. LLF: 157.98470773636816
Optimization terminated successfully (Exit mode 0)
Current function value: 157.9847077363863
Iterations: 20
Function evaluations: 187
Gradient evaluations: 20
Iteration: 1, Func. Count: 11, Neg. LLF: 1703.095029017918
Iteration: 2, Func. Count: 22, Neg. LLF: 160.80717852701113
Iteration: 3, Func. Count: 33, Neg. LLF: 155.86322181733686
Iteration: 4, Func. Count: 43, Neg. LLF: 156.48277729096915
Iteration: 5, Func. Count: 54, Neg. LLF: 155.8342229711956
Iteration: 6, Func. Count: 64, Neg. LLF: 155.82603951675725
Iteration: 7, Func. Count: 74, Neg. LLF: 155.82415149718506
Iteration: 8, Func. Count: 84, Neg. LLF: 155.82383088145338
Iteration: 9, Func. Count: 94, Neg. LLF: 155.82373907578227
Iteration: 10, Func. Count: 104, Neg. LLF: 155.82373373123397
Iteration: 11, Func. Count: 113, Neg. LLF: 155.8237337312054
Optimization terminated successfully (Exit mode 0)
Current function value: 155.82373373123397
Iterations: 11
Function evaluations: 113
Gradient evaluations: 11
Iteration: 1, Func. Count: 12, Neg. LLF: 22482861.21753352
Iteration: 2, Func. Count: 25, Neg. LLF: 199.31445579454936
Iteration: 3, Func. Count: 37, Neg. LLF: 158.16854237849404
Iteration: 4, Func. Count: 49, Neg. LLF: 157.18528854039224
Iteration: 5, Func. Count: 61, Neg. LLF: 156.9450858864097
Iteration: 6, Func. Count: 73, Neg. LLF: 155.888435745855
Iteration: 7, Func. Count: 85, Neg. LLF: 155.32899008362952
Iteration: 8, Func. Count: 96, Neg. LLF: 155.41430332166874
Iteration: 9, Func. Count: 108, Neg. LLF: 155.33380629281388
Iteration: 10, Func. Count: 120, Neg. LLF: 155.28689084604756
Iteration: 11, Func. Count: 131, Neg. LLF: 155.27761499905452
Iteration: 12, Func. Count: 142, Neg. LLF: 155.27593482220186
Iteration: 13, Func. Count: 153, Neg. LLF: 155.27571034477262
Iteration: 14, Func. Count: 164, Neg. LLF: 155.27546917969602
Iteration: 15, Func. Count: 175, Neg. LLF: 155.275276208608
Iteration: 16, Func. Count: 186, Neg. LLF: 155.27520870551993
Iteration: 17, Func. Count: 197, Neg. LLF: 155.27519874988968
Iteration: 18, Func. Count: 208, Neg. LLF: 155.27519783571304
Optimization terminated successfully (Exit mode 0)
Current function value: 155.27519783571304
Iterations: 18
Function evaluations: 208
Gradient evaluations: 18
Iteration: 1, Func. Count: 13, Neg. LLF: 22602424.023591615
Iteration: 2, Func. Count: 27, Neg. LLF: 179.05706213027955
Iteration: 3, Func. Count: 40, Neg. LLF: 158.7920939719921
Iteration: 4, Func. Count: 53, Neg. LLF: 157.2382012076317
Iteration: 5, Func. Count: 66, Neg. LLF: 156.37772999209588
Iteration: 6, Func. Count: 79, Neg. LLF: 156.82041330510856
Iteration: 7, Func. Count: 92, Neg. LLF: 156.45709192768584
Iteration: 8, Func. Count: 105, Neg. LLF: 156.06408331045802
Iteration: 9, Func. Count: 118, Neg. LLF: 156.09987182500853
Iteration: 10, Func. Count: 131, Neg. LLF: 155.32009669132955
Iteration: 11, Func. Count: 143, Neg. LLF: 155.29012818031376
Iteration: 12, Func. Count: 155, Neg. LLF: 155.27871002613716
Iteration: 13, Func. Count: 167, Neg. LLF: 155.27638089078482
Iteration: 14, Func. Count: 179, Neg. LLF: 155.27547035835136
Iteration: 15, Func. Count: 191, Neg. LLF: 155.27537772300295
Iteration: 16, Func. Count: 203, Neg. LLF: 155.27526341908833
Iteration: 17, Func. Count: 215, Neg. LLF: 155.275231120993
Iteration: 18, Func. Count: 227, Neg. LLF: 155.2752115112397
Iteration: 19, Func. Count: 239, Neg. LLF: 155.27520334959897
Iteration: 20, Func. Count: 251, Neg. LLF: 155.27519851780113
Iteration: 21, Func. Count: 263, Neg. LLF: 155.27519766434622
Optimization terminated successfully (Exit mode 0)
Current function value: 155.27519766434622
Iterations: 21
Function evaluations: 263
Gradient evaluations: 21
Iteration: 1, Func. Count: 14, Neg. LLF: 22636827.521646854
Iteration: 2, Func. Count: 29, Neg. LLF: 178.28522646483054
Iteration: 3, Func. Count: 43, Neg. LLF: 163.4776317211906
Iteration: 4, Func. Count: 57, Neg. LLF: 156.7786717065126
Iteration: 5, Func. Count: 71, Neg. LLF: 158.22215143142213
Iteration: 6, Func. Count: 85, Neg. LLF: 157.56527062137812
Iteration: 7, Func. Count: 99, Neg. LLF: 156.38703062547677
Iteration: 8, Func. Count: 113, Neg. LLF: 163.8140499411655
Iteration: 9, Func. Count: 128, Neg. LLF: 155.6021967148492
Iteration: 10, Func. Count: 141, Neg. LLF: 155.31855619330602
Iteration: 11, Func. Count: 154, Neg. LLF: 155.2976427425955
Iteration: 12, Func. Count: 167, Neg. LLF: 155.28377868946328
Iteration: 13, Func. Count: 180, Neg. LLF: 155.28195167569942
Iteration: 14, Func. Count: 193, Neg. LLF: 155.28018547510027
Iteration: 15, Func. Count: 206, Neg. LLF: 155.27968368125198
Iteration: 16, Func. Count: 219, Neg. LLF: 155.27748195273415
Iteration: 17, Func. Count: 232, Neg. LLF: 155.27609033413503
Iteration: 18, Func. Count: 245, Neg. LLF: 155.27548246732692
Iteration: 19, Func. Count: 258, Neg. LLF: 155.27523957679205
Iteration: 20, Func. Count: 271, Neg. LLF: 155.27520541547509
Iteration: 21, Func. Count: 284, Neg. LLF: 155.27519935870632
Iteration: 22, Func. Count: 297, Neg. LLF: 155.27519787622242
Iteration: 23, Func. Count: 309, Neg. LLF: 155.27519791676886
Optimization terminated successfully (Exit mode 0)
Current function value: 155.27519787622242
Iterations: 23
Function evaluations: 309
Gradient evaluations: 23
Iteration: 1, Func. Count: 11, Neg. LLF: 162.41791471279132
Iteration: 2, Func. Count: 22, Neg. LLF: 157.84622222370726
Iteration: 3, Func. Count: 33, Neg. LLF: 158.56412525530462
Iteration: 4, Func. Count: 44, Neg. LLF: 157.44619158028118
Iteration: 5, Func. Count: 55, Neg. LLF: 156.52230559619628
Iteration: 6, Func. Count: 66, Neg. LLF: 156.4303525054128
Iteration: 7, Func. Count: 77, Neg. LLF: 156.0313396028698
Iteration: 8, Func. Count: 87, Neg. LLF: 155.98429221975977
Iteration: 9, Func. Count: 97, Neg. LLF: 155.8587187982437
Iteration: 10, Func. Count: 107, Neg. LLF: 155.83880556014267
Iteration: 11, Func. Count: 117, Neg. LLF: 155.79806214682282
Iteration: 12, Func. Count: 127, Neg. LLF: 155.7622587198488
Iteration: 13, Func. Count: 137, Neg. LLF: 155.75588508745776
Iteration: 14, Func. Count: 147, Neg. LLF: 155.7552522681489
Iteration: 15, Func. Count: 157, Neg. LLF: 155.7552317241673
Iteration: 16, Func. Count: 167, Neg. LLF: 155.75523063458414
Iteration: 17, Func. Count: 176, Neg. LLF: 155.7552306345843
Optimization terminated successfully (Exit mode 0)
Current function value: 155.75523063458414
Iterations: 17
Function evaluations: 176
Gradient evaluations: 17
Iteration: 1, Func. Count: 12, Neg. LLF: 4285584.126347762
Iteration: 2, Func. Count: 24, Neg. LLF: 246.37779672797706
Iteration: 3, Func. Count: 36, Neg. LLF: 155.29505371377277
Iteration: 4, Func. Count: 48, Neg. LLF: 154.84354804056878
Iteration: 5, Func. Count: 60, Neg. LLF: 156.94533734283254
Iteration: 6, Func. Count: 73, Neg. LLF: 154.12603853434013
Iteration: 7, Func. Count: 84, Neg. LLF: 154.01861174792427
Iteration: 8, Func. Count: 95, Neg. LLF: 153.95814892936212
Iteration: 9, Func. Count: 106, Neg. LLF: 153.94725605546364
Iteration: 10, Func. Count: 117, Neg. LLF: 153.94396091552434
Iteration: 11, Func. Count: 128, Neg. LLF: 153.94384371616522
Iteration: 12, Func. Count: 139, Neg. LLF: 153.94383138193507
Iteration: 13, Func. Count: 149, Neg. LLF: 153.94383135646999
Optimization terminated successfully (Exit mode 0)
Current function value: 153.94383138193507
Iterations: 13
Function evaluations: 149
Gradient evaluations: 13
Iteration: 1, Func. Count: 13, Neg. LLF: 22559656.902432412
Iteration: 2, Func. Count: 27, Neg. LLF: 245.69894006434208
Iteration: 3, Func. Count: 40, Neg. LLF: 157.130719883996
Iteration: 4, Func. Count: 53, Neg. LLF: 155.37229635020296
Iteration: 5, Func. Count: 66, Neg. LLF: 155.30144448282425
Iteration: 6, Func. Count: 79, Neg. LLF: 154.15555972485353
Iteration: 7, Func. Count: 91, Neg. LLF: 154.09947074733464
Iteration: 8, Func. Count: 103, Neg. LLF: 153.99836374454046
Iteration: 9, Func. Count: 115, Neg. LLF: 154.0255630263641
Iteration: 10, Func. Count: 128, Neg. LLF: 153.95423861060263
Iteration: 11, Func. Count: 140, Neg. LLF: 153.9454324240169
Iteration: 12, Func. Count: 152, Neg. LLF: 153.94434499367355
Iteration: 13, Func. Count: 164, Neg. LLF: 153.94390031471093
Iteration: 14, Func. Count: 176, Neg. LLF: 153.94383691904315
Iteration: 15, Func. Count: 188, Neg. LLF: 153.94383131898775
Iteration: 16, Func. Count: 199, Neg. LLF: 153.94383130515266
Optimization terminated successfully (Exit mode 0)
Current function value: 153.94383131898775
Iterations: 16
Function evaluations: 199
Gradient evaluations: 16
Iteration: 1, Func. Count: 14, Neg. LLF: 22682448.232732844
Iteration: 2, Func. Count: 29, Neg. LLF: 267.5236362510033
Iteration: 3, Func. Count: 43, Neg. LLF: 158.3762943872404
Iteration: 4, Func. Count: 57, Neg. LLF: 155.45732727638298
Iteration: 5, Func. Count: 70, Neg. LLF: 159.0461253651141
Iteration: 6, Func. Count: 84, Neg. LLF: 156.40049556196695
Iteration: 7, Func. Count: 98, Neg. LLF: 154.22512259150255
Iteration: 8, Func. Count: 111, Neg. LLF: 154.12141319570873
Iteration: 9, Func. Count: 124, Neg. LLF: 154.07514211802396
Iteration: 10, Func. Count: 137, Neg. LLF: 154.12329299098397
Iteration: 11, Func. Count: 151, Neg. LLF: 154.01414157431506
Iteration: 12, Func. Count: 164, Neg. LLF: 153.96965978561414
Iteration: 13, Func. Count: 177, Neg. LLF: 153.94718094049875
Iteration: 14, Func. Count: 190, Neg. LLF: 153.94423659390296
Iteration: 15, Func. Count: 203, Neg. LLF: 153.94391514650562
Iteration: 16, Func. Count: 216, Neg. LLF: 153.94385786119435
Iteration: 17, Func. Count: 229, Neg. LLF: 153.94383529899451
Iteration: 18, Func. Count: 242, Neg. LLF: 153.94383138609038
Iteration: 19, Func. Count: 254, Neg. LLF: 153.94383138097396
Optimization terminated successfully (Exit mode 0)
Current function value: 153.94383138609038
Iterations: 19
Function evaluations: 254
Gradient evaluations: 19
Iteration: 1, Func. Count: 15, Neg. LLF: 218.5659260310625
Iteration: 2, Func. Count: 30, Neg. LLF: 341.41582973141107
Iteration: 3, Func. Count: 46, Neg. LLF: 181.38300243920963
Iteration: 4, Func. Count: 61, Neg. LLF: 161.60203582934193
Iteration: 5, Func. Count: 76, Neg. LLF: 158.98875776546166
Iteration: 6, Func. Count: 91, Neg. LLF: 154.47465070889507
Iteration: 7, Func. Count: 105, Neg. LLF: 154.197023954137
Iteration: 8, Func. Count: 119, Neg. LLF: 154.04773212773725
Iteration: 9, Func. Count: 133, Neg. LLF: 154.26825012262046
Iteration: 10, Func. Count: 148, Neg. LLF: 154.00477999152935
Iteration: 11, Func. Count: 162, Neg. LLF: 153.97530751302355
Iteration: 12, Func. Count: 176, Neg. LLF: 153.95387894775422
Iteration: 13, Func. Count: 190, Neg. LLF: 153.94569959919315
Iteration: 14, Func. Count: 204, Neg. LLF: 153.9438440404595
Iteration: 15, Func. Count: 218, Neg. LLF: 153.94383260374406
Iteration: 16, Func. Count: 232, Neg. LLF: 153.94383125456525
Iteration: 17, Func. Count: 245, Neg. LLF: 153.9438312598512
Optimization terminated successfully (Exit mode 0)
Current function value: 153.94383125456525
Iterations: 17
Function evaluations: 245
Gradient evaluations: 17
Iteration: 1, Func. Count: 8, Neg. LLF: 162.51898993821735
Iteration: 2, Func. Count: 16, Neg. LLF: 163.27815880991412
Iteration: 3, Func. Count: 26, Neg. LLF: 160.1698409540644
Iteration: 4, Func. Count: 33, Neg. LLF: 160.74626628845192
Iteration: 5, Func. Count: 41, Neg. LLF: 160.1232520699895
Iteration: 6, Func. Count: 48, Neg. LLF: 160.12158247856658
Iteration: 7, Func. Count: 55, Neg. LLF: 160.11856427634
Iteration: 8, Func. Count: 62, Neg. LLF: 160.11750134329625
Iteration: 9, Func. Count: 69, Neg. LLF: 160.11299303353132
Iteration: 10, Func. Count: 76, Neg. LLF: 160.10891539582428
Iteration: 11, Func. Count: 83, Neg. LLF: 160.10890450883105
Iteration: 12, Func. Count: 89, Neg. LLF: 160.10890450882147
Optimization terminated successfully (Exit mode 0)
Current function value: 160.10890450883105
Iterations: 12
Function evaluations: 89
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 173.7247751915656
Iteration: 2, Func. Count: 18, Neg. LLF: 264.2937630872684
Iteration: 3, Func. Count: 27, Neg. LLF: 162.36161368872405
Iteration: 4, Func. Count: 36, Neg. LLF: 159.43079246044786
Iteration: 5, Func. Count: 44, Neg. LLF: 164.91344782076138
Iteration: 6, Func. Count: 53, Neg. LLF: 159.33801786927782
Iteration: 7, Func. Count: 61, Neg. LLF: 159.30883824536838
Iteration: 8, Func. Count: 69, Neg. LLF: 159.30549200074273
Iteration: 9, Func. Count: 77, Neg. LLF: 159.2992562896734
Iteration: 10, Func. Count: 85, Neg. LLF: 159.2909761424229
Iteration: 11, Func. Count: 93, Neg. LLF: 159.27801823950873
Iteration: 12, Func. Count: 101, Neg. LLF: 159.266251118685
Iteration: 13, Func. Count: 109, Neg. LLF: 159.26255495879008
Iteration: 14, Func. Count: 117, Neg. LLF: 159.2623822060211
Iteration: 15, Func. Count: 125, Neg. LLF: 159.2623654007859
Iteration: 16, Func. Count: 133, Neg. LLF: 159.26236257682254
Iteration: 17, Func. Count: 140, Neg. LLF: 159.26236257684383
Optimization terminated successfully (Exit mode 0)
Current function value: 159.26236257682254
Iterations: 17
Function evaluations: 140
Gradient evaluations: 17
Iteration: 1, Func. Count: 10, Neg. LLF: 175.21238940319327
Iteration: 2, Func. Count: 20, Neg. LLF: 246.807125019496
Iteration: 3, Func. Count: 30, Neg. LLF: 172.26139710083606
Iteration: 4, Func. Count: 41, Neg. LLF: 160.89115412715213
Iteration: 5, Func. Count: 51, Neg. LLF: 161.00418092766108
Iteration: 6, Func. Count: 61, Neg. LLF: 159.36814815002927
Iteration: 7, Func. Count: 71, Neg. LLF: 159.5325117402904
Iteration: 8, Func. Count: 81, Neg. LLF: 159.20381298033544
Iteration: 9, Func. Count: 90, Neg. LLF: 159.19873469514403
Iteration: 10, Func. Count: 99, Neg. LLF: 159.1907397490893
Iteration: 11, Func. Count: 108, Neg. LLF: 159.18514920431411
Iteration: 12, Func. Count: 117, Neg. LLF: 159.18021564701922
Iteration: 13, Func. Count: 126, Neg. LLF: 159.17557102902325
Iteration: 14, Func. Count: 135, Neg. LLF: 159.171532112988
Iteration: 15, Func. Count: 144, Neg. LLF: 159.17033484052794
Iteration: 16, Func. Count: 153, Neg. LLF: 159.17020359845776
Iteration: 17, Func. Count: 162, Neg. LLF: 159.1701845326496
Iteration: 18, Func. Count: 171, Neg. LLF: 159.17018361639256
Optimization terminated successfully (Exit mode 0)
Current function value: 159.17018361639256
Iterations: 18
Function evaluations: 171
Gradient evaluations: 18
Iteration: 1, Func. Count: 11, Neg. LLF: 176.8004426598398
Iteration: 2, Func. Count: 22, Neg. LLF: 427.03675486164616
Iteration: 3, Func. Count: 33, Neg. LLF: 230.66364102844162
Iteration: 4, Func. Count: 45, Neg. LLF: 161.5869943067684
Iteration: 5, Func. Count: 56, Neg. LLF: 160.84377900895905
Iteration: 6, Func. Count: 68, Neg. LLF: 159.6936391392351
Iteration: 7, Func. Count: 79, Neg. LLF: 159.51444665267476
Iteration: 8, Func. Count: 90, Neg. LLF: 159.20590811086674
Iteration: 9, Func. Count: 100, Neg. LLF: 159.1948352547528
Iteration: 10, Func. Count: 110, Neg. LLF: 159.1840823597388
Iteration: 11, Func. Count: 120, Neg. LLF: 159.1673555265967
Iteration: 12, Func. Count: 130, Neg. LLF: 159.16055653097268
Iteration: 13, Func. Count: 140, Neg. LLF: 159.15224400317916
Iteration: 14, Func. Count: 150, Neg. LLF: 159.14864379818948
Iteration: 15, Func. Count: 160, Neg. LLF: 159.1480069780097
Iteration: 16, Func. Count: 170, Neg. LLF: 159.14795059394012
Iteration: 17, Func. Count: 180, Neg. LLF: 159.1479455840241
Iteration: 18, Func. Count: 189, Neg. LLF: 159.14794558400055
Optimization terminated successfully (Exit mode 0)
Current function value: 159.1479455840241
Iterations: 18
Function evaluations: 189
Gradient evaluations: 18
Iteration: 1, Func. Count: 12, Neg. LLF: 178.2183420098463
Iteration: 2, Func. Count: 24, Neg. LLF: 396.22351216739077
Iteration: 3, Func. Count: 36, Neg. LLF: 261.14667736598136
Iteration: 4, Func. Count: 49, Neg. LLF: 164.47605693181526
Iteration: 5, Func. Count: 62, Neg. LLF: 161.83120376374163
Iteration: 6, Func. Count: 74, Neg. LLF: 159.82881076138642
Iteration: 7, Func. Count: 86, Neg. LLF: 159.2113441459155
Iteration: 8, Func. Count: 97, Neg. LLF: 159.20413648519562
Iteration: 9, Func. Count: 108, Neg. LLF: 159.20035647918024
Iteration: 10, Func. Count: 119, Neg. LLF: 159.19540048336762
Iteration: 11, Func. Count: 130, Neg. LLF: 159.18336650370375
Iteration: 12, Func. Count: 141, Neg. LLF: 159.17632936031913
Iteration: 13, Func. Count: 152, Neg. LLF: 159.1723462950814
Iteration: 14, Func. Count: 163, Neg. LLF: 159.17073805361386
Iteration: 15, Func. Count: 174, Neg. LLF: 159.17026637587207
Iteration: 16, Func. Count: 185, Neg. LLF: 159.1701927075963
Iteration: 17, Func. Count: 196, Neg. LLF: 159.1701839990206
Iteration: 18, Func. Count: 206, Neg. LLF: 159.17018400592724
Optimization terminated successfully (Exit mode 0)
Current function value: 159.1701839990206
Iterations: 18
Function evaluations: 206
Gradient evaluations: 18
Iteration: 1, Func. Count: 9, Neg. LLF: 163.00875785464697
Iteration: 2, Func. Count: 18, Neg. LLF: 162.07078234684423
Iteration: 3, Func. Count: 29, Neg. LLF: 164.45426495323
Iteration: 4, Func. Count: 38, Neg. LLF: 159.66292846159766
Iteration: 5, Func. Count: 46, Neg. LLF: 159.56624819621743
Iteration: 6, Func. Count: 54, Neg. LLF: 159.3278283523683
Iteration: 7, Func. Count: 62, Neg. LLF: 159.24352916585926
Iteration: 8, Func. Count: 70, Neg. LLF: 159.1782489082369
Iteration: 9, Func. Count: 78, Neg. LLF: 159.1649063687807
Iteration: 10, Func. Count: 86, Neg. LLF: 159.1598531985311
Iteration: 11, Func. Count: 94, Neg. LLF: 159.15377433121597
Iteration: 12, Func. Count: 102, Neg. LLF: 159.14475093076817
Iteration: 13, Func. Count: 110, Neg. LLF: 159.13578838360547
Iteration: 14, Func. Count: 118, Neg. LLF: 159.13087095208527
Iteration: 15, Func. Count: 126, Neg. LLF: 159.12953429443934
Iteration: 16, Func. Count: 134, Neg. LLF: 159.12921312485025
Iteration: 17, Func. Count: 142, Neg. LLF: 159.12916429300537
Iteration: 18, Func. Count: 150, Neg. LLF: 159.12915991770743
Iteration: 19, Func. Count: 157, Neg. LLF: 159.1291599177025
Optimization terminated successfully (Exit mode 0)
Current function value: 159.12915991770743
Iterations: 19
Function evaluations: 157
Gradient evaluations: 19
Iteration: 1, Func. Count: 10, Neg. LLF: 1045.96924786416
Iteration: 2, Func. Count: 21, Neg. LLF: 157.81047416840676
Iteration: 3, Func. Count: 31, Neg. LLF: 156.4490086566505
Iteration: 4, Func. Count: 40, Neg. LLF: 172.8870236166335
Iteration: 5, Func. Count: 51, Neg. LLF: 156.43166712837072
Iteration: 6, Func. Count: 60, Neg. LLF: 156.4312170362825
Iteration: 7, Func. Count: 69, Neg. LLF: 156.43110030411518
Iteration: 8, Func. Count: 78, Neg. LLF: 156.4310990005894
Iteration: 9, Func. Count: 86, Neg. LLF: 156.4310990003844
Optimization terminated successfully (Exit mode 0)
Current function value: 156.4310990005894
Iterations: 9
Function evaluations: 86
Gradient evaluations: 9
Iteration: 1, Func. Count: 11, Neg. LLF: 22474992.838791765
Iteration: 2, Func. Count: 23, Neg. LLF: 165.50319028121362
Iteration: 3, Func. Count: 34, Neg. LLF: 157.09029209199704
Iteration: 4, Func. Count: 45, Neg. LLF: 156.77571425811777
Iteration: 5, Func. Count: 56, Neg. LLF: 156.55202463094676
Iteration: 6, Func. Count: 66, Neg. LLF: 156.4554854296294
Iteration: 7, Func. Count: 76, Neg. LLF: 156.43180670922993
Iteration: 8, Func. Count: 86, Neg. LLF: 156.431223638376
Iteration: 9, Func. Count: 96, Neg. LLF: 156.43111070269916
Iteration: 10, Func. Count: 106, Neg. LLF: 156.43110063055838
Iteration: 11, Func. Count: 116, Neg. LLF: 156.43109887642333
Iteration: 12, Func. Count: 125, Neg. LLF: 156.43109888436786
Optimization terminated successfully (Exit mode 0)
Current function value: 156.43109887642333
Iterations: 12
Function evaluations: 125
Gradient evaluations: 12
Iteration: 1, Func. Count: 12, Neg. LLF: 22668366.860083252
Iteration: 2, Func. Count: 25, Neg. LLF: 226.08083010223785
Iteration: 3, Func. Count: 37, Neg. LLF: 158.12270515948526
Iteration: 4, Func. Count: 49, Neg. LLF: 156.8276984675426
Iteration: 5, Func. Count: 61, Neg. LLF: 156.48792072015792
Iteration: 6, Func. Count: 72, Neg. LLF: 156.47626049308218
Iteration: 7, Func. Count: 83, Neg. LLF: 156.46334349217403
Iteration: 8, Func. Count: 94, Neg. LLF: 156.46029480380975
Iteration: 9, Func. Count: 105, Neg. LLF: 156.45961190039623
Iteration: 10, Func. Count: 116, Neg. LLF: 156.45934117039894
Iteration: 11, Func. Count: 127, Neg. LLF: 156.45925256798725
Iteration: 12, Func. Count: 138, Neg. LLF: 156.45924514787947
Iteration: 13, Func. Count: 149, Neg. LLF: 156.4592438587433
Iteration: 14, Func. Count: 159, Neg. LLF: 156.4592438586854
Optimization terminated successfully (Exit mode 0)
Current function value: 156.4592438587433
Iterations: 14
Function evaluations: 159
Gradient evaluations: 14
Iteration: 1, Func. Count: 13, Neg. LLF: 22733624.58938073
Iteration: 2, Func. Count: 27, Neg. LLF: 235.60884720518607
Iteration: 3, Func. Count: 40, Neg. LLF: 161.0936874628845
Iteration: 4, Func. Count: 53, Neg. LLF: 156.75897195053503
Iteration: 5, Func. Count: 65, Neg. LLF: 156.54450262098015
Iteration: 6, Func. Count: 77, Neg. LLF: 156.479660590126
Iteration: 7, Func. Count: 89, Neg. LLF: 156.46670743933478
Iteration: 8, Func. Count: 101, Neg. LLF: 156.46262951219398
Iteration: 9, Func. Count: 113, Neg. LLF: 156.46024979275074
Iteration: 10, Func. Count: 125, Neg. LLF: 156.4595109516439
Iteration: 11, Func. Count: 137, Neg. LLF: 156.45927842975868
Iteration: 12, Func. Count: 149, Neg. LLF: 156.45924813561723
Iteration: 13, Func. Count: 161, Neg. LLF: 156.4592440439138
Iteration: 14, Func. Count: 172, Neg. LLF: 156.45924405243218
Optimization terminated successfully (Exit mode 0)
Current function value: 156.4592440439138
Iterations: 14
Function evaluations: 172
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 166.6643308528053
Iteration: 2, Func. Count: 20, Neg. LLF: 159.97633949781292
Iteration: 3, Func. Count: 30, Neg. LLF: 161.01745809410957
Iteration: 4, Func. Count: 40, Neg. LLF: 160.0774899494889
Iteration: 5, Func. Count: 50, Neg. LLF: 158.52660721273529
Iteration: 6, Func. Count: 59, Neg. LLF: 158.2460636151509
Iteration: 7, Func. Count: 68, Neg. LLF: 158.16993712659763
Iteration: 8, Func. Count: 77, Neg. LLF: 158.11959588200307
Iteration: 9, Func. Count: 86, Neg. LLF: 158.1086480381342
Iteration: 10, Func. Count: 95, Neg. LLF: 158.10210496306968
Iteration: 11, Func. Count: 104, Neg. LLF: 158.08025642352743
Iteration: 12, Func. Count: 113, Neg. LLF: 158.06405485893873
Iteration: 13, Func. Count: 122, Neg. LLF: 158.05339684549688
Iteration: 14, Func. Count: 131, Neg. LLF: 158.04948334190038
Iteration: 15, Func. Count: 140, Neg. LLF: 158.0492072093531
Iteration: 16, Func. Count: 149, Neg. LLF: 158.04920232271888
Iteration: 17, Func. Count: 157, Neg. LLF: 158.0492023226994
Optimization terminated successfully (Exit mode 0)
Current function value: 158.04920232271888
Iterations: 17
Function evaluations: 157
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 736.5329407500149
Iteration: 2, Func. Count: 23, Neg. LLF: 158.05376494493132
Iteration: 3, Func. Count: 34, Neg. LLF: 155.99224439435707
Iteration: 4, Func. Count: 44, Neg. LLF: 155.99537556283448
Iteration: 5, Func. Count: 55, Neg. LLF: 155.9865774875999
Iteration: 6, Func. Count: 66, Neg. LLF: 155.98158120993793
Iteration: 7, Func. Count: 76, Neg. LLF: 155.98148575608752
Iteration: 8, Func. Count: 86, Neg. LLF: 155.98148463084652
Iteration: 9, Func. Count: 95, Neg. LLF: 155.98148463083345
Optimization terminated successfully (Exit mode 0)
Current function value: 155.98148463084652
Iterations: 9
Function evaluations: 95
Gradient evaluations: 9
Iteration: 1, Func. Count: 12, Neg. LLF: 22464810.557887584
Iteration: 2, Func. Count: 25, Neg. LLF: 197.27305066730636
Iteration: 3, Func. Count: 37, Neg. LLF: 157.8977883331065
Iteration: 4, Func. Count: 49, Neg. LLF: 157.068198198216
Iteration: 5, Func. Count: 61, Neg. LLF: 156.85881885523096
Iteration: 6, Func. Count: 73, Neg. LLF: 155.68456988996948
Iteration: 7, Func. Count: 85, Neg. LLF: 155.33400248908242
Iteration: 8, Func. Count: 96, Neg. LLF: 155.32400279002073
Iteration: 9, Func. Count: 107, Neg. LLF: 155.3144126257917
Iteration: 10, Func. Count: 118, Neg. LLF: 155.31039945962883
Iteration: 11, Func. Count: 129, Neg. LLF: 155.30821779296193
Iteration: 12, Func. Count: 140, Neg. LLF: 155.3075311447629
Iteration: 13, Func. Count: 151, Neg. LLF: 155.30741669842462
Iteration: 14, Func. Count: 162, Neg. LLF: 155.30739501050147
Iteration: 15, Func. Count: 173, Neg. LLF: 155.30739200635554
Iteration: 16, Func. Count: 183, Neg. LLF: 155.3073920063324
Optimization terminated successfully (Exit mode 0)
Current function value: 155.30739200635554
Iterations: 16
Function evaluations: 183
Gradient evaluations: 16
Iteration: 1, Func. Count: 13, Neg. LLF: 22569475.641276516
Iteration: 2, Func. Count: 27, Neg. LLF: 179.1101568387958
Iteration: 3, Func. Count: 40, Neg. LLF: 158.07409518398296
Iteration: 4, Func. Count: 53, Neg. LLF: 157.47233369120386
Iteration: 5, Func. Count: 66, Neg. LLF: 156.4482022365875
Iteration: 6, Func. Count: 79, Neg. LLF: 156.80959756012186
Iteration: 7, Func. Count: 92, Neg. LLF: 156.8236068993502
Iteration: 8, Func. Count: 105, Neg. LLF: 156.55059366398424
Iteration: 9, Func. Count: 118, Neg. LLF: 155.9047453790657
Iteration: 10, Func. Count: 131, Neg. LLF: 155.34541152747775
Iteration: 11, Func. Count: 143, Neg. LLF: 155.32741870193522
Iteration: 12, Func. Count: 155, Neg. LLF: 155.31369798414946
Iteration: 13, Func. Count: 167, Neg. LLF: 155.31057832853708
Iteration: 14, Func. Count: 179, Neg. LLF: 155.30835991770525
Iteration: 15, Func. Count: 191, Neg. LLF: 155.30746678186804
Iteration: 16, Func. Count: 203, Neg. LLF: 155.30739612735985
Iteration: 17, Func. Count: 215, Neg. LLF: 155.30739211851107
Iteration: 18, Func. Count: 226, Neg. LLF: 155.30739213342665
Optimization terminated successfully (Exit mode 0)
Current function value: 155.30739211851107
Iterations: 18
Function evaluations: 226
Gradient evaluations: 18
Iteration: 1, Func. Count: 14, Neg. LLF: 22627674.43788938
Iteration: 2, Func. Count: 29, Neg. LLF: 178.65068733135698
Iteration: 3, Func. Count: 43, Neg. LLF: 160.02146289289894
Iteration: 4, Func. Count: 57, Neg. LLF: 157.75797798437867
Iteration: 5, Func. Count: 71, Neg. LLF: 157.54410991210577
Iteration: 6, Func. Count: 85, Neg. LLF: 157.41236270314366
Iteration: 7, Func. Count: 99, Neg. LLF: 156.6321356299298
Iteration: 8, Func. Count: 113, Neg. LLF: 155.36984621392986
Iteration: 9, Func. Count: 126, Neg. LLF: 155.3252126622838
Iteration: 10, Func. Count: 139, Neg. LLF: 155.3190786939132
Iteration: 11, Func. Count: 152, Neg. LLF: 155.35826722760473
Iteration: 12, Func. Count: 166, Neg. LLF: 155.3079522205876
Iteration: 13, Func. Count: 179, Neg. LLF: 155.30779524457938
Iteration: 14, Func. Count: 192, Neg. LLF: 155.30767163579713
Iteration: 15, Func. Count: 205, Neg. LLF: 155.30758595355854
Iteration: 16, Func. Count: 218, Neg. LLF: 155.30746330934082
Iteration: 17, Func. Count: 231, Neg. LLF: 155.30741368969302
Iteration: 18, Func. Count: 244, Neg. LLF: 155.3073964378585
Iteration: 19, Func. Count: 257, Neg. LLF: 155.30739256864078
Iteration: 20, Func. Count: 270, Neg. LLF: 155.3073917576082
Optimization terminated successfully (Exit mode 0)
Current function value: 155.3073917576082
Iterations: 20
Function evaluations: 270
Gradient evaluations: 20
Iteration: 1, Func. Count: 11, Neg. LLF: 166.47500952014937
Iteration: 2, Func. Count: 22, Neg. LLF: 159.9556570724073
Iteration: 3, Func. Count: 33, Neg. LLF: 161.35517030693984
Iteration: 4, Func. Count: 44, Neg. LLF: 161.5601451147283
Iteration: 5, Func. Count: 55, Neg. LLF: 158.8485201605841
Iteration: 6, Func. Count: 66, Neg. LLF: 158.6808718476236
Iteration: 7, Func. Count: 77, Neg. LLF: 158.516053969995
Iteration: 8, Func. Count: 88, Neg. LLF: 158.09000586540225
Iteration: 9, Func. Count: 98, Neg. LLF: 158.0788158909372
Iteration: 10, Func. Count: 108, Neg. LLF: 158.06785854305744
Iteration: 11, Func. Count: 118, Neg. LLF: 158.0153843122403
Iteration: 12, Func. Count: 128, Neg. LLF: 157.99304659469917
Iteration: 13, Func. Count: 138, Neg. LLF: 157.98636352342945
Iteration: 14, Func. Count: 148, Neg. LLF: 157.98476303602757
Iteration: 15, Func. Count: 158, Neg. LLF: 157.9847107819615
Iteration: 16, Func. Count: 168, Neg. LLF: 157.98470787070502
Iteration: 17, Func. Count: 177, Neg. LLF: 157.98470787070394
Optimization terminated successfully (Exit mode 0)
Current function value: 157.98470787070502
Iterations: 17
Function evaluations: 177
Gradient evaluations: 17
Iteration: 1, Func. Count: 12, Neg. LLF: 3274.2974793810813
Iteration: 2, Func. Count: 24, Neg. LLF: 160.8331585515148
Iteration: 3, Func. Count: 36, Neg. LLF: 155.86512031955542
Iteration: 4, Func. Count: 47, Neg. LLF: 156.49309174449527
Iteration: 5, Func. Count: 59, Neg. LLF: 155.83546099789694
Iteration: 6, Func. Count: 70, Neg. LLF: 155.8261356210039
Iteration: 7, Func. Count: 81, Neg. LLF: 155.82416354005636
Iteration: 8, Func. Count: 92, Neg. LLF: 155.82383426224953
Iteration: 9, Func. Count: 103, Neg. LLF: 155.8237399402009
Iteration: 10, Func. Count: 114, Neg. LLF: 155.82373374084375
Iteration: 11, Func. Count: 124, Neg. LLF: 155.82373374081428
Optimization terminated successfully (Exit mode 0)
Current function value: 155.82373374084375
Iterations: 11
Function evaluations: 124
Gradient evaluations: 11
Iteration: 1, Func. Count: 13, Neg. LLF: 22487696.00513398
Iteration: 2, Func. Count: 27, Neg. LLF: 199.73459123294373
Iteration: 3, Func. Count: 40, Neg. LLF: 158.18594034117072
Iteration: 4, Func. Count: 53, Neg. LLF: 157.18230453120466
Iteration: 5, Func. Count: 66, Neg. LLF: 156.95104666081164
Iteration: 6, Func. Count: 79, Neg. LLF: 155.91752231593279
Iteration: 7, Func. Count: 92, Neg. LLF: 155.32570555831737
Iteration: 8, Func. Count: 104, Neg. LLF: 155.35052979496174
Iteration: 9, Func. Count: 117, Neg. LLF: 155.38363120394763
Iteration: 10, Func. Count: 130, Neg. LLF: 155.2871570499876
Iteration: 11, Func. Count: 142, Neg. LLF: 155.27796575670533
Iteration: 12, Func. Count: 154, Neg. LLF: 155.2760703302227
Iteration: 13, Func. Count: 166, Neg. LLF: 155.27579644012425
Iteration: 14, Func. Count: 178, Neg. LLF: 155.27553296522905
Iteration: 15, Func. Count: 190, Neg. LLF: 155.27528979537988
Iteration: 16, Func. Count: 202, Neg. LLF: 155.2752099721957
Iteration: 17, Func. Count: 214, Neg. LLF: 155.27519859418877
Iteration: 18, Func. Count: 226, Neg. LLF: 155.27519777059172
Optimization terminated successfully (Exit mode 0)
Current function value: 155.27519777059172
Iterations: 18
Function evaluations: 226
Gradient evaluations: 18
Iteration: 1, Func. Count: 14, Neg. LLF: 22605315.349019866
Iteration: 2, Func. Count: 29, Neg. LLF: 179.0316794262258
Iteration: 3, Func. Count: 43, Neg. LLF: 158.7865287146248
Iteration: 4, Func. Count: 57, Neg. LLF: 157.20541613724512
Iteration: 5, Func. Count: 71, Neg. LLF: 156.41203244187582
Iteration: 6, Func. Count: 85, Neg. LLF: 156.82602901201074
Iteration: 7, Func. Count: 99, Neg. LLF: 156.66946073494518
Iteration: 8, Func. Count: 113, Neg. LLF: 156.34674610067702
Iteration: 9, Func. Count: 127, Neg. LLF: 156.55251802350148
Iteration: 10, Func. Count: 141, Neg. LLF: 155.33634125394082
Iteration: 11, Func. Count: 154, Neg. LLF: 155.30590565922017
Iteration: 12, Func. Count: 167, Neg. LLF: 155.2871638483294
Iteration: 13, Func. Count: 180, Neg. LLF: 155.2816116698796
Iteration: 14, Func. Count: 193, Neg. LLF: 155.2795298091735
Iteration: 15, Func. Count: 206, Neg. LLF: 155.27793121723772
Iteration: 16, Func. Count: 219, Neg. LLF: 155.2765036596321
Iteration: 17, Func. Count: 232, Neg. LLF: 155.2759610770374
Iteration: 18, Func. Count: 245, Neg. LLF: 155.27554636765115
Iteration: 19, Func. Count: 258, Neg. LLF: 155.27528612433463
Iteration: 20, Func. Count: 271, Neg. LLF: 155.2752087674396
Iteration: 21, Func. Count: 284, Neg. LLF: 155.27519831259764
Iteration: 22, Func. Count: 297, Neg. LLF: 155.27519763550504
Optimization terminated successfully (Exit mode 0)
Current function value: 155.27519763550504
Iterations: 22
Function evaluations: 297
Gradient evaluations: 22
Iteration: 1, Func. Count: 15, Neg. LLF: 22638526.718968634
Iteration: 2, Func. Count: 31, Neg. LLF: 178.36042591392803
Iteration: 3, Func. Count: 46, Neg. LLF: 162.95987880557993
Iteration: 4, Func. Count: 61, Neg. LLF: 156.40824386248644
Iteration: 5, Func. Count: 75, Neg. LLF: 156.38491457008809
Iteration: 6, Func. Count: 90, Neg. LLF: 155.73852587304842
Iteration: 7, Func. Count: 104, Neg. LLF: 155.6564225810646
Iteration: 8, Func. Count: 118, Neg. LLF: 155.57663066396387
Iteration: 9, Func. Count: 133, Neg. LLF: 155.30158603351686
Iteration: 10, Func. Count: 147, Neg. LLF: 155.27831664205482
Iteration: 11, Func. Count: 161, Neg. LLF: 155.2771562582755
Iteration: 12, Func. Count: 175, Neg. LLF: 155.27643278942764
Iteration: 13, Func. Count: 189, Neg. LLF: 155.2753417043133
Iteration: 14, Func. Count: 203, Neg. LLF: 155.2752216567396
Iteration: 15, Func. Count: 217, Neg. LLF: 155.2752000090387
Iteration: 16, Func. Count: 231, Neg. LLF: 155.2751981334527
Iteration: 17, Func. Count: 244, Neg. LLF: 155.27519817405965
Optimization terminated successfully (Exit mode 0)
Current function value: 155.2751981334527
Iterations: 17
Function evaluations: 244
Gradient evaluations: 17
Iteration: 1, Func. Count: 12, Neg. LLF: 162.69367336662444
Iteration: 2, Func. Count: 24, Neg. LLF: 158.68878490461805
Iteration: 3, Func. Count: 36, Neg. LLF: 159.7388487702057
Iteration: 4, Func. Count: 48, Neg. LLF: 158.23254318190882
Iteration: 5, Func. Count: 60, Neg. LLF: 156.3916203895685
Iteration: 6, Func. Count: 71, Neg. LLF: 156.73370764571507
Iteration: 7, Func. Count: 83, Neg. LLF: 156.44958010976362
Iteration: 8, Func. Count: 95, Neg. LLF: 156.01694942911618
Iteration: 9, Func. Count: 106, Neg. LLF: 155.9804496653297
Iteration: 10, Func. Count: 117, Neg. LLF: 155.95265671172064
Iteration: 11, Func. Count: 128, Neg. LLF: 155.88645299202923
Iteration: 12, Func. Count: 139, Neg. LLF: 155.8324090166081
Iteration: 13, Func. Count: 150, Neg. LLF: 155.79272550981204
Iteration: 14, Func. Count: 161, Neg. LLF: 155.76336869417068
Iteration: 15, Func. Count: 172, Neg. LLF: 155.75576634995932
Iteration: 16, Func. Count: 183, Neg. LLF: 155.75550186782056
Iteration: 17, Func. Count: 194, Neg. LLF: 155.75526002236776
Iteration: 18, Func. Count: 205, Neg. LLF: 155.7552335056309
Iteration: 19, Func. Count: 216, Neg. LLF: 155.7552306857793
Iteration: 20, Func. Count: 226, Neg. LLF: 155.75523068578443
Optimization terminated successfully (Exit mode 0)
Current function value: 155.7552306857793
Iterations: 20
Function evaluations: 226
Gradient evaluations: 20
Iteration: 1, Func. Count: 13, Neg. LLF: 4274357.694026399
Iteration: 2, Func. Count: 27, Neg. LLF: 237.62406589474728
Iteration: 3, Func. Count: 40, Neg. LLF: 155.67646962676193
Iteration: 4, Func. Count: 53, Neg. LLF: 155.1027468781179
Iteration: 5, Func. Count: 66, Neg. LLF: 156.91687457659748
Iteration: 6, Func. Count: 79, Neg. LLF: 154.13017499986282
Iteration: 7, Func. Count: 91, Neg. LLF: 154.06509221641934
Iteration: 8, Func. Count: 103, Neg. LLF: 153.98808801954993
Iteration: 9, Func. Count: 115, Neg. LLF: 153.96088208919235
Iteration: 10, Func. Count: 127, Neg. LLF: 153.94821822726018
Iteration: 11, Func. Count: 139, Neg. LLF: 153.94456975051193
Iteration: 12, Func. Count: 151, Neg. LLF: 153.94386042644507
Iteration: 13, Func. Count: 163, Neg. LLF: 153.9438329827086
Iteration: 14, Func. Count: 175, Neg. LLF: 153.9438311700683
Iteration: 15, Func. Count: 186, Neg. LLF: 153.9438311447029
Optimization terminated successfully (Exit mode 0)
Current function value: 153.9438311700683
Iterations: 15
Function evaluations: 186
Gradient evaluations: 15
Iteration: 1, Func. Count: 14, Neg. LLF: 22565859.8410405
Iteration: 2, Func. Count: 29, Neg. LLF: 244.94163324691573
Iteration: 3, Func. Count: 43, Neg. LLF: 157.1571393665735
Iteration: 4, Func. Count: 57, Neg. LLF: 155.2846643083855
Iteration: 5, Func. Count: 71, Neg. LLF: 155.482564003184
Iteration: 6, Func. Count: 85, Neg. LLF: 154.15639500986555
Iteration: 7, Func. Count: 98, Neg. LLF: 154.1029637070145
Iteration: 8, Func. Count: 111, Neg. LLF: 154.02172896875302
Iteration: 9, Func. Count: 124, Neg. LLF: 154.035850481018
Iteration: 10, Func. Count: 138, Neg. LLF: 153.96409703218242
Iteration: 11, Func. Count: 151, Neg. LLF: 153.94532374146038
Iteration: 12, Func. Count: 164, Neg. LLF: 153.94424551222681
Iteration: 13, Func. Count: 177, Neg. LLF: 153.94397516002064
Iteration: 14, Func. Count: 190, Neg. LLF: 153.94383329538775
Iteration: 15, Func. Count: 203, Neg. LLF: 153.94383117907708
Iteration: 16, Func. Count: 215, Neg. LLF: 153.94383116524347
Optimization terminated successfully (Exit mode 0)
Current function value: 153.94383117907708
Iterations: 16
Function evaluations: 215
Gradient evaluations: 16
Iteration: 1, Func. Count: 15, Neg. LLF: 22685379.870640595
Iteration: 2, Func. Count: 31, Neg. LLF: 266.59020147931784
Iteration: 3, Func. Count: 46, Neg. LLF: 158.3927078777739
Iteration: 4, Func. Count: 61, Neg. LLF: 155.49508928239243
Iteration: 5, Func. Count: 75, Neg. LLF: 158.83585880912767
Iteration: 6, Func. Count: 90, Neg. LLF: 156.5454984618171
Iteration: 7, Func. Count: 105, Neg. LLF: 154.22299588276223
Iteration: 8, Func. Count: 119, Neg. LLF: 154.12017117530328
Iteration: 9, Func. Count: 133, Neg. LLF: 154.08063312347952
Iteration: 10, Func. Count: 147, Neg. LLF: 154.1209405445432
Iteration: 11, Func. Count: 162, Neg. LLF: 154.04036577501572
Iteration: 12, Func. Count: 176, Neg. LLF: 153.98762263906846
Iteration: 13, Func. Count: 190, Neg. LLF: 153.9528079723294
Iteration: 14, Func. Count: 204, Neg. LLF: 153.9452266681526
Iteration: 15, Func. Count: 218, Neg. LLF: 153.94400937928134
Iteration: 16, Func. Count: 232, Neg. LLF: 153.94388847518272
Iteration: 17, Func. Count: 246, Neg. LLF: 153.94384398896509
Iteration: 18, Func. Count: 260, Neg. LLF: 153.94383237230818
Iteration: 19, Func. Count: 274, Neg. LLF: 153.94383116024602
Iteration: 20, Func. Count: 287, Neg. LLF: 153.94383115514907
Optimization terminated successfully (Exit mode 0)
Current function value: 153.94383116024602
Iterations: 20
Function evaluations: 287
Gradient evaluations: 20
Iteration: 1, Func. Count: 16, Neg. LLF: 218.61240824798458
Iteration: 2, Func. Count: 32, Neg. LLF: 333.90016581010593
Iteration: 3, Func. Count: 49, Neg. LLF: 180.93635680052353
Iteration: 4, Func. Count: 65, Neg. LLF: 161.6437815130744
Iteration: 5, Func. Count: 81, Neg. LLF: 158.92711411309574
Iteration: 6, Func. Count: 97, Neg. LLF: 154.4935405525805
Iteration: 7, Func. Count: 112, Neg. LLF: 154.19713807264358
Iteration: 8, Func. Count: 127, Neg. LLF: 154.04694230644023
Iteration: 9, Func. Count: 142, Neg. LLF: 154.2754377279407
Iteration: 10, Func. Count: 158, Neg. LLF: 154.00459216978464
Iteration: 11, Func. Count: 173, Neg. LLF: 153.97504601436907
Iteration: 12, Func. Count: 188, Neg. LLF: 153.95400288994924
Iteration: 13, Func. Count: 203, Neg. LLF: 153.94566148603096
Iteration: 14, Func. Count: 218, Neg. LLF: 153.94384947672685
Iteration: 15, Func. Count: 233, Neg. LLF: 153.94383280384037
Iteration: 16, Func. Count: 248, Neg. LLF: 153.94383128432227
Iteration: 17, Func. Count: 262, Neg. LLF: 153.9438312895974
Optimization terminated successfully (Exit mode 0)
Current function value: 153.94383128432227
Iterations: 17
Function evaluations: 262
Gradient evaluations: 17
Iteration: 1, Func. Count: 6, Neg. LLF: 2040.724280879911
Iteration: 2, Func. Count: 13, Neg. LLF: 157.65275294383437
Iteration: 3, Func. Count: 19, Neg. LLF: 156.4661176955969
Iteration: 4, Func. Count: 24, Neg. LLF: 168.02110816935192
Iteration: 5, Func. Count: 31, Neg. LLF: 156.43307110947896
Iteration: 6, Func. Count: 36, Neg. LLF: 156.43173795598943
Iteration: 7, Func. Count: 41, Neg. LLF: 156.4311049466807
Iteration: 8, Func. Count: 46, Neg. LLF: 156.431098885355
Iteration: 9, Func. Count: 50, Neg. LLF: 156.43109888529983
Optimization terminated successfully (Exit mode 0)
Current function value: 156.431098885355
Iterations: 9
Function evaluations: 50
Gradient evaluations: 9
Iteration: 1, Func. Count: 5, Neg. LLF: 163.81703263647867
Iteration: 2, Func. Count: 10, Neg. LLF: 162.7413050355665
Iteration: 3, Func. Count: 15, Neg. LLF: 161.81991587793343
Iteration: 4, Func. Count: 19, Neg. LLF: 161.44551330834787
Iteration: 5, Func. Count: 23, Neg. LLF: 161.20545211896697
Iteration: 6, Func. Count: 27, Neg. LLF: 161.17260683090737
Iteration: 7, Func. Count: 31, Neg. LLF: 161.16811874717186
Iteration: 8, Func. Count: 35, Neg. LLF: 161.1663972775432
Iteration: 9, Func. Count: 39, Neg. LLF: 161.16405795813762
Iteration: 10, Func. Count: 43, Neg. LLF: 161.16305820177828
Iteration: 11, Func. Count: 47, Neg. LLF: 161.16281567754686
Iteration: 12, Func. Count: 51, Neg. LLF: 161.16280105279554
Iteration: 13, Func. Count: 54, Neg. LLF: 161.16280105278736
Optimization terminated successfully (Exit mode 0)
Current function value: 161.16280105279554
Iterations: 13
Function evaluations: 54
Gradient evaluations: 13
Iteration: 1, Func. Count: 6, Neg. LLF: 2418.589616879197
Iteration: 2, Func. Count: 13, Neg. LLF: 159.1695550455245
Iteration: 3, Func. Count: 19, Neg. LLF: 158.0656974306487
Iteration: 4, Func. Count: 25, Neg. LLF: 157.18979543142274
Iteration: 5, Func. Count: 30, Neg. LLF: 157.15006571150548
Iteration: 6, Func. Count: 35, Neg. LLF: 157.14975677520817
Iteration: 7, Func. Count: 40, Neg. LLF: 157.14962573824454
Iteration: 8, Func. Count: 45, Neg. LLF: 157.1496114499392
Iteration: 9, Func. Count: 50, Neg. LLF: 157.14961057915787
Optimization terminated successfully (Exit mode 0)
Current function value: 157.14961057915787
Iterations: 9
Function evaluations: 50
Gradient evaluations: 9
Iteration: 1, Func. Count: 7, Neg. LLF: 20345912.181855492
Iteration: 2, Func. Count: 15, Neg. LLF: 166.40225182984838
Iteration: 3, Func. Count: 22, Neg. LLF: 157.49135844429114
Iteration: 4, Func. Count: 28, Neg. LLF: 158.2634887169964
Iteration: 5, Func. Count: 35, Neg. LLF: 157.16016639682266
Iteration: 6, Func. Count: 41, Neg. LLF: 157.15184151187356
Iteration: 7, Func. Count: 47, Neg. LLF: 157.14969762902206
Iteration: 8, Func. Count: 53, Neg. LLF: 157.14961737146837
Iteration: 9, Func. Count: 59, Neg. LLF: 157.14961150454758
Iteration: 10, Func. Count: 65, Neg. LLF: 157.14961049889936
Iteration: 11, Func. Count: 70, Neg. LLF: 157.14961050760544
Optimization terminated successfully (Exit mode 0)
Current function value: 157.14961049889936
Iterations: 11
Function evaluations: 70
Gradient evaluations: 11
Iteration: 1, Func. Count: 8, Neg. LLF: 423.95717152428927
Iteration: 2, Func. Count: 17, Neg. LLF: 190.3147436338667
Iteration: 3, Func. Count: 25, Neg. LLF: 159.77985046019296
Iteration: 4, Func. Count: 33, Neg. LLF: 157.45117032820738
Iteration: 5, Func. Count: 40, Neg. LLF: 157.3555655773031
Iteration: 6, Func. Count: 47, Neg. LLF: 157.26326774368266
Iteration: 7, Func. Count: 54, Neg. LLF: 157.2256178878366
Iteration: 8, Func. Count: 61, Neg. LLF: 157.16175637724064
Iteration: 9, Func. Count: 68, Neg. LLF: 157.15168230300998
Iteration: 10, Func. Count: 75, Neg. LLF: 157.15046462815866
Iteration: 11, Func. Count: 82, Neg. LLF: 157.14962161433886
Iteration: 12, Func. Count: 89, Neg. LLF: 157.14961385502312
Iteration: 13, Func. Count: 96, Neg. LLF: 157.14961054832116
Iteration: 14, Func. Count: 102, Neg. LLF: 157.1496105797396
Optimization terminated successfully (Exit mode 0)
Current function value: 157.14961054832116
Iterations: 14
Function evaluations: 102
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 424.1899723615423
Iteration: 2, Func. Count: 18, Neg. LLF: 201.05077869224044
Iteration: 3, Func. Count: 27, Neg. LLF: 157.82665266353123
Iteration: 4, Func. Count: 35, Neg. LLF: 157.51961565119979
Iteration: 5, Func. Count: 43, Neg. LLF: 157.33710827806127
Iteration: 6, Func. Count: 51, Neg. LLF: 157.29671569628545
Iteration: 7, Func. Count: 59, Neg. LLF: 157.26577852175436
Iteration: 8, Func. Count: 67, Neg. LLF: 157.22049558774827
Iteration: 9, Func. Count: 75, Neg. LLF: 157.16145691908915
Iteration: 10, Func. Count: 83, Neg. LLF: 157.15372960531812
Iteration: 11, Func. Count: 91, Neg. LLF: 157.15056110546192
Iteration: 12, Func. Count: 99, Neg. LLF: 157.14962211396906
Iteration: 13, Func. Count: 107, Neg. LLF: 157.1496114348856
Iteration: 14, Func. Count: 115, Neg. LLF: 157.14961053075325
Optimization terminated successfully (Exit mode 0)
Current function value: 157.14961053075325
Iterations: 14
Function evaluations: 115
Gradient evaluations: 14
Iteration: 1, Func. Count: 6, Neg. LLF: 166.39309012885207
Iteration: 2, Func. Count: 12, Neg. LLF: 162.35944181596201
Iteration: 3, Func. Count: 19, Neg. LLF: 160.7308975502619
Iteration: 4, Func. Count: 25, Neg. LLF: 159.59808094755215
Iteration: 5, Func. Count: 30, Neg. LLF: 159.5940862144086
Iteration: 6, Func. Count: 35, Neg. LLF: 159.5889818347589
Iteration: 7, Func. Count: 40, Neg. LLF: 159.58769237212752
Iteration: 8, Func. Count: 45, Neg. LLF: 159.58673249282762
Iteration: 9, Func. Count: 50, Neg. LLF: 159.58589604964658
Iteration: 10, Func. Count: 55, Neg. LLF: 159.58411170703343
Iteration: 11, Func. Count: 60, Neg. LLF: 159.58300558766146
Iteration: 12, Func. Count: 65, Neg. LLF: 159.58269032128584
Iteration: 13, Func. Count: 70, Neg. LLF: 159.58266502089566
Iteration: 14, Func. Count: 74, Neg. LLF: 159.58266502090768
Optimization terminated successfully (Exit mode 0)
Current function value: 159.58266502089566
Iterations: 14
Function evaluations: 74
Gradient evaluations: 14
Iteration: 1, Func. Count: 7, Neg. LLF: 4719.439728194966
Iteration: 2, Func. Count: 15, Neg. LLF: 161.03258873830333
Iteration: 3, Func. Count: 22, Neg. LLF: 156.84320314762294
Iteration: 4, Func. Count: 28, Neg. LLF: 156.96939554674532
Iteration: 5, Func. Count: 35, Neg. LLF: 156.66650577261754
Iteration: 6, Func. Count: 41, Neg. LLF: 156.6627189422387
Iteration: 7, Func. Count: 47, Neg. LLF: 156.6626811084538
Iteration: 8, Func. Count: 53, Neg. LLF: 156.6626568993751
Iteration: 9, Func. Count: 59, Neg. LLF: 156.66265081862753
Iteration: 10, Func. Count: 65, Neg. LLF: 156.66264999310428
Optimization terminated successfully (Exit mode 0)
Current function value: 156.66264999310428
Iterations: 10
Function evaluations: 65
Gradient evaluations: 10
Iteration: 1, Func. Count: 8, Neg. LLF: 20320732.031110287
Iteration: 2, Func. Count: 17, Neg. LLF: 168.66085087707168
Iteration: 3, Func. Count: 25, Neg. LLF: 156.9319348461179
Iteration: 4, Func. Count: 32, Neg. LLF: 156.97822558047866
Iteration: 5, Func. Count: 40, Neg. LLF: 156.7028412204885
Iteration: 6, Func. Count: 47, Neg. LLF: 156.66937435596768
Iteration: 7, Func. Count: 54, Neg. LLF: 156.6660300046916
Iteration: 8, Func. Count: 61, Neg. LLF: 156.66340558774235
Iteration: 9, Func. Count: 68, Neg. LLF: 156.6627378322892
Iteration: 10, Func. Count: 75, Neg. LLF: 156.66268369747584
Iteration: 11, Func. Count: 82, Neg. LLF: 156.66264997632388
Iteration: 12, Func. Count: 88, Neg. LLF: 156.66264999240656
Optimization terminated successfully (Exit mode 0)
Current function value: 156.66264997632388
Iterations: 12
Function evaluations: 88
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 423.79919728159456
Iteration: 2, Func. Count: 19, Neg. LLF: 171.2285435365519
Iteration: 3, Func. Count: 28, Neg. LLF: 161.43832865643992
Iteration: 4, Func. Count: 37, Neg. LLF: 157.1136414578856
Iteration: 5, Func. Count: 45, Neg. LLF: 157.03873333835045
Iteration: 6, Func. Count: 53, Neg. LLF: 157.96548440288242
Iteration: 7, Func. Count: 63, Neg. LLF: 157.25622274488867
Iteration: 8, Func. Count: 72, Neg. LLF: 156.77923253802115
Iteration: 9, Func. Count: 80, Neg. LLF: 156.70812999457382
Iteration: 10, Func. Count: 88, Neg. LLF: 156.64428909716244
Iteration: 11, Func. Count: 96, Neg. LLF: 156.60992249378143
Iteration: 12, Func. Count: 104, Neg. LLF: 156.60842092570374
Iteration: 13, Func. Count: 112, Neg. LLF: 156.6082869495847
Iteration: 14, Func. Count: 120, Neg. LLF: 156.60825093091847
Iteration: 15, Func. Count: 128, Neg. LLF: 156.60824556026952
Iteration: 16, Func. Count: 136, Neg. LLF: 156.608243929938
Iteration: 17, Func. Count: 144, Neg. LLF: 156.6082426411835
Iteration: 18, Func. Count: 151, Neg. LLF: 156.60824267788675
Optimization terminated successfully (Exit mode 0)
Current function value: 156.6082426411835
Iterations: 18
Function evaluations: 151
Gradient evaluations: 18
Iteration: 1, Func. Count: 10, Neg. LLF: 423.9170931884364
Iteration: 2, Func. Count: 20, Neg. LLF: 172.7907508343976
Iteration: 3, Func. Count: 30, Neg. LLF: 158.34528309687562
Iteration: 4, Func. Count: 40, Neg. LLF: 157.017007269302
Iteration: 5, Func. Count: 49, Neg. LLF: 157.09399615853275
Iteration: 6, Func. Count: 59, Neg. LLF: 156.79571755266653
Iteration: 7, Func. Count: 68, Neg. LLF: 156.63807165181984
Iteration: 8, Func. Count: 77, Neg. LLF: 156.61312681907037
Iteration: 9, Func. Count: 86, Neg. LLF: 156.60920229419406
Iteration: 10, Func. Count: 95, Neg. LLF: 156.60852326077188
Iteration: 11, Func. Count: 104, Neg. LLF: 156.60835062609044
Iteration: 12, Func. Count: 113, Neg. LLF: 156.60830066408857
Iteration: 13, Func. Count: 122, Neg. LLF: 156.6082511897096
Iteration: 14, Func. Count: 131, Neg. LLF: 156.60824325725343
Iteration: 15, Func. Count: 140, Neg. LLF: 156.6082424732081
Optimization terminated successfully (Exit mode 0)
Current function value: 156.6082424732081
Iterations: 15
Function evaluations: 140
Gradient evaluations: 15
Iteration: 1, Func. Count: 7, Neg. LLF: 166.466216239549
Iteration: 2, Func. Count: 14, Neg. LLF: 162.50974799426683
Iteration: 3, Func. Count: 22, Neg. LLF: 162.05310615483933
Iteration: 4, Func. Count: 29, Neg. LLF: 162.12685141808385
Iteration: 5, Func. Count: 36, Neg. LLF: 159.4366124333855
Iteration: 6, Func. Count: 42, Neg. LLF: 159.42175606989704
Iteration: 7, Func. Count: 48, Neg. LLF: 159.40962593942396
Iteration: 8, Func. Count: 54, Neg. LLF: 159.38760247307758
Iteration: 9, Func. Count: 60, Neg. LLF: 159.3718793014001
Iteration: 10, Func. Count: 66, Neg. LLF: 159.3584642516645
Iteration: 11, Func. Count: 72, Neg. LLF: 159.34762885844574
Iteration: 12, Func. Count: 78, Neg. LLF: 159.33857211594741
Iteration: 13, Func. Count: 84, Neg. LLF: 159.33236954454117
Iteration: 14, Func. Count: 90, Neg. LLF: 159.33111385121614
Iteration: 15, Func. Count: 96, Neg. LLF: 159.33104633943094
Iteration: 16, Func. Count: 102, Neg. LLF: 159.3310406854503
Iteration: 17, Func. Count: 107, Neg. LLF: 159.3310406854501
Optimization terminated successfully (Exit mode 0)
Current function value: 159.3310406854503
Iterations: 17
Function evaluations: 107
Gradient evaluations: 17
Iteration: 1, Func. Count: 8, Neg. LLF: 76700.37303758321
Iteration: 2, Func. Count: 17, Neg. LLF: 174.59321788801464
Iteration: 3, Func. Count: 25, Neg. LLF: 156.63180247156
Iteration: 4, Func. Count: 33, Neg. LLF: 156.34249936361067
Iteration: 5, Func. Count: 41, Neg. LLF: 155.91093195224855
Iteration: 6, Func. Count: 48, Neg. LLF: 155.90679466045538
Iteration: 7, Func. Count: 55, Neg. LLF: 155.90355884777534
Iteration: 8, Func. Count: 62, Neg. LLF: 155.90179657717033
Iteration: 9, Func. Count: 69, Neg. LLF: 155.90170412354328
Iteration: 10, Func. Count: 76, Neg. LLF: 155.90169779016264
Iteration: 11, Func. Count: 82, Neg. LLF: 155.9016977902857
Optimization terminated successfully (Exit mode 0)
Current function value: 155.90169779016264
Iterations: 11
Function evaluations: 82
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 20424345.928223755
Iteration: 2, Func. Count: 19, Neg. LLF: 176.14598111993982
Iteration: 3, Func. Count: 28, Neg. LLF: 156.49961585134977
Iteration: 4, Func. Count: 36, Neg. LLF: 163.93082602707912
Iteration: 5, Func. Count: 45, Neg. LLF: 155.92244595452348
Iteration: 6, Func. Count: 53, Neg. LLF: 155.9113462424238
Iteration: 7, Func. Count: 61, Neg. LLF: 155.90511055110005
Iteration: 8, Func. Count: 69, Neg. LLF: 155.90321374301666
Iteration: 9, Func. Count: 77, Neg. LLF: 155.90180913593633
Iteration: 10, Func. Count: 85, Neg. LLF: 155.9017062143294
Iteration: 11, Func. Count: 93, Neg. LLF: 155.90169822945364
Iteration: 12, Func. Count: 100, Neg. LLF: 155.90169826174287
Optimization terminated successfully (Exit mode 0)
Current function value: 155.90169822945364
Iterations: 12
Function evaluations: 100
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 427.67235555977857
Iteration: 2, Func. Count: 20, Neg. LLF: 189.44277452431098
Iteration: 3, Func. Count: 30, Neg. LLF: 159.12141318771305
Iteration: 4, Func. Count: 40, Neg. LLF: 157.96842863778858
Iteration: 5, Func. Count: 50, Neg. LLF: 157.68174832473113
Iteration: 6, Func. Count: 60, Neg. LLF: 157.0500192958064
Iteration: 7, Func. Count: 69, Neg. LLF: 157.0532629207743
Iteration: 8, Func. Count: 79, Neg. LLF: 157.20573824043524
Iteration: 9, Func. Count: 89, Neg. LLF: 157.00051670451387
Iteration: 10, Func. Count: 98, Neg. LLF: 156.9935656646003
Iteration: 11, Func. Count: 107, Neg. LLF: 156.99093157260938
Iteration: 12, Func. Count: 116, Neg. LLF: 156.98970192107006
Iteration: 13, Func. Count: 125, Neg. LLF: 156.98938204794666
Iteration: 14, Func. Count: 134, Neg. LLF: 156.98936514642435
Iteration: 15, Func. Count: 143, Neg. LLF: 156.98936448501993
Optimization terminated successfully (Exit mode 0)
Current function value: 156.98936448501993
Iterations: 15
Function evaluations: 143
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 425.92985722057506
Iteration: 2, Func. Count: 22, Neg. LLF: 176.1201349179612
Iteration: 3, Func. Count: 33, Neg. LLF: 163.8915052754443
Iteration: 4, Func. Count: 44, Neg. LLF: 157.31663715036882
Iteration: 5, Func. Count: 54, Neg. LLF: 157.19735338922376
Iteration: 6, Func. Count: 64, Neg. LLF: 157.53054699899815
Iteration: 7, Func. Count: 76, Neg. LLF: 157.72716222516672
Iteration: 8, Func. Count: 87, Neg. LLF: 157.2359544937949
Iteration: 9, Func. Count: 98, Neg. LLF: 157.00175607120767
Iteration: 10, Func. Count: 108, Neg. LLF: 156.99520699826178
Iteration: 11, Func. Count: 118, Neg. LLF: 156.99084648426037
Iteration: 12, Func. Count: 128, Neg. LLF: 156.99019746640127
Iteration: 13, Func. Count: 138, Neg. LLF: 156.98944617511768
Iteration: 14, Func. Count: 148, Neg. LLF: 156.98937433604686
Iteration: 15, Func. Count: 158, Neg. LLF: 156.98936662721763
Iteration: 16, Func. Count: 168, Neg. LLF: 156.9893653067613
Iteration: 17, Func. Count: 178, Neg. LLF: 156.9893645631299
Optimization terminated successfully (Exit mode 0)
Current function value: 156.9893645631299
Iterations: 17
Function evaluations: 178
Gradient evaluations: 17
Iteration: 1, Func. Count: 8, Neg. LLF: 163.11805472764064
Iteration: 2, Func. Count: 16, Neg. LLF: 159.33828203891525
Iteration: 3, Func. Count: 24, Neg. LLF: 158.74533872855417
Iteration: 4, Func. Count: 33, Neg. LLF: 158.1982746430839
Iteration: 5, Func. Count: 41, Neg. LLF: 156.9764007069931
Iteration: 6, Func. Count: 48, Neg. LLF: 156.96571217546727
Iteration: 7, Func. Count: 56, Neg. LLF: 156.81047813658287
Iteration: 8, Func. Count: 63, Neg. LLF: 156.7822070477754
Iteration: 9, Func. Count: 70, Neg. LLF: 156.688760934718
Iteration: 10, Func. Count: 77, Neg. LLF: 156.62367374169403
Iteration: 11, Func. Count: 84, Neg. LLF: 156.59920506787722
Iteration: 12, Func. Count: 91, Neg. LLF: 156.59364432426153
Iteration: 13, Func. Count: 98, Neg. LLF: 156.59117130726227
Iteration: 14, Func. Count: 105, Neg. LLF: 156.58813891854209
Iteration: 15, Func. Count: 112, Neg. LLF: 156.58767640639883
Iteration: 16, Func. Count: 119, Neg. LLF: 156.58765047889057
Iteration: 17, Func. Count: 125, Neg. LLF: 156.58765047890162
Optimization terminated successfully (Exit mode 0)
Current function value: 156.58765047889057
Iterations: 17
Function evaluations: 125
Gradient evaluations: 17
Iteration: 1, Func. Count: 9, Neg. LLF: 20052977.46998551
Iteration: 2, Func. Count: 19, Neg. LLF: 177.6915933450726
Iteration: 3, Func. Count: 28, Neg. LLF: 156.19003361576404
Iteration: 4, Func. Count: 37, Neg. LLF: 154.82927845693095
Iteration: 5, Func. Count: 45, Neg. LLF: 154.7900391510566
Iteration: 6, Func. Count: 53, Neg. LLF: 155.27300957381988
Iteration: 7, Func. Count: 62, Neg. LLF: 154.6110247028621
Iteration: 8, Func. Count: 70, Neg. LLF: 154.60073704875043
Iteration: 9, Func. Count: 78, Neg. LLF: 154.58653087546836
Iteration: 10, Func. Count: 86, Neg. LLF: 154.58417053067896
Iteration: 11, Func. Count: 94, Neg. LLF: 154.5808094503183
Iteration: 12, Func. Count: 102, Neg. LLF: 154.57567803306523
Iteration: 13, Func. Count: 110, Neg. LLF: 154.5702737378091
Iteration: 14, Func. Count: 118, Neg. LLF: 154.5679171183383
Iteration: 15, Func. Count: 126, Neg. LLF: 154.56750243628076
Iteration: 16, Func. Count: 134, Neg. LLF: 154.56744966693896
Iteration: 17, Func. Count: 142, Neg. LLF: 154.5674461858962
Iteration: 18, Func. Count: 149, Neg. LLF: 154.5674461859072
Optimization terminated successfully (Exit mode 0)
Current function value: 154.5674461858962
Iterations: 18
Function evaluations: 149
Gradient evaluations: 18
Iteration: 1, Func. Count: 10, Neg. LLF: 260.18855160695443
Iteration: 2, Func. Count: 20, Neg. LLF: 6307375.690381244
Iteration: 3, Func. Count: 30, Neg. LLF: 173.53412252423968
Iteration: 4, Func. Count: 40, Neg. LLF: 155.5783325701833
Iteration: 5, Func. Count: 49, Neg. LLF: 154.88238324615392
Iteration: 6, Func. Count: 58, Neg. LLF: 154.79615885444454
Iteration: 7, Func. Count: 67, Neg. LLF: 154.72611601750015
Iteration: 8, Func. Count: 76, Neg. LLF: 154.63619419825127
Iteration: 9, Func. Count: 85, Neg. LLF: 154.595009128295
Iteration: 10, Func. Count: 94, Neg. LLF: 154.57331625543358
Iteration: 11, Func. Count: 103, Neg. LLF: 154.56860781729387
Iteration: 12, Func. Count: 112, Neg. LLF: 154.56764635571446
Iteration: 13, Func. Count: 121, Neg. LLF: 154.56750982607045
Iteration: 14, Func. Count: 130, Neg. LLF: 154.56747060397214
Iteration: 15, Func. Count: 139, Neg. LLF: 154.56744834599206
Iteration: 16, Func. Count: 148, Neg. LLF: 154.5674461961956
Iteration: 17, Func. Count: 156, Neg. LLF: 154.56744620587403
Optimization terminated successfully (Exit mode 0)
Current function value: 154.5674461961956
Iterations: 17
Function evaluations: 156
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 431.9417397714895
Iteration: 2, Func. Count: 22, Neg. LLF: 6330642.680843821
Iteration: 3, Func. Count: 33, Neg. LLF: 189.10605561627696
Iteration: 4, Func. Count: 44, Neg. LLF: 155.5616298338523
Iteration: 5, Func. Count: 54, Neg. LLF: 154.916019504007
Iteration: 6, Func. Count: 64, Neg. LLF: 154.81845082844885
Iteration: 7, Func. Count: 74, Neg. LLF: 154.72163896070313
Iteration: 8, Func. Count: 84, Neg. LLF: 154.65795197745464
Iteration: 9, Func. Count: 94, Neg. LLF: 154.60543334149932
Iteration: 10, Func. Count: 104, Neg. LLF: 154.57764097025048
Iteration: 11, Func. Count: 114, Neg. LLF: 154.56974767836934
Iteration: 12, Func. Count: 124, Neg. LLF: 154.56779859983257
Iteration: 13, Func. Count: 134, Neg. LLF: 154.56749492406314
Iteration: 14, Func. Count: 144, Neg. LLF: 154.56745737016783
Iteration: 15, Func. Count: 154, Neg. LLF: 154.5674488667756
Iteration: 16, Func. Count: 164, Neg. LLF: 154.56744665984453
Iteration: 17, Func. Count: 173, Neg. LLF: 154.56744667782854
Optimization terminated successfully (Exit mode 0)
Current function value: 154.56744665984453
Iterations: 17
Function evaluations: 173
Gradient evaluations: 17
Iteration: 1, Func. Count: 12, Neg. LLF: 430.396199411057
Iteration: 2, Func. Count: 24, Neg. LLF: 6411313.142435443
Iteration: 3, Func. Count: 36, Neg. LLF: 174.60574358561465
Iteration: 4, Func. Count: 48, Neg. LLF: 155.50563494209024
Iteration: 5, Func. Count: 59, Neg. LLF: 154.95107355377084
Iteration: 6, Func. Count: 70, Neg. LLF: 154.83156730140257
Iteration: 7, Func. Count: 81, Neg. LLF: 154.71837788432524
Iteration: 8, Func. Count: 92, Neg. LLF: 154.6677328865603
Iteration: 9, Func. Count: 103, Neg. LLF: 154.62242823717216
Iteration: 10, Func. Count: 114, Neg. LLF: 154.59108681391015
Iteration: 11, Func. Count: 125, Neg. LLF: 154.577761993099
Iteration: 12, Func. Count: 136, Neg. LLF: 154.5707704952719
Iteration: 13, Func. Count: 147, Neg. LLF: 154.56821469635523
Iteration: 14, Func. Count: 158, Neg. LLF: 154.56762064859467
Iteration: 15, Func. Count: 169, Neg. LLF: 154.5674813935914
Iteration: 16, Func. Count: 180, Neg. LLF: 154.5674510677797
Iteration: 17, Func. Count: 191, Neg. LLF: 154.56744661903227
Iteration: 18, Func. Count: 201, Neg. LLF: 154.5674466671225
Optimization terminated successfully (Exit mode 0)
Current function value: 154.56744661903227
Iterations: 18
Function evaluations: 201
Gradient evaluations: 18
Iteration: 1, Func. Count: 5, Neg. LLF: 163.674605940144
Iteration: 2, Func. Count: 10, Neg. LLF: 162.84425436816673
Iteration: 3, Func. Count: 14, Neg. LLF: 162.73862885393993
Iteration: 4, Func. Count: 18, Neg. LLF: 162.6973561170925
Iteration: 5, Func. Count: 22, Neg. LLF: 162.56885396364723
Iteration: 6, Func. Count: 26, Neg. LLF: 162.512658248498
Iteration: 7, Func. Count: 30, Neg. LLF: 162.50811339907642
Iteration: 8, Func. Count: 34, Neg. LLF: 162.50793915398026
Iteration: 9, Func. Count: 38, Neg. LLF: 162.50793845099122
Optimization terminated successfully (Exit mode 0)
Current function value: 162.50793845099122
Iterations: 9
Function evaluations: 38
Gradient evaluations: 9
Iteration: 1, Func. Count: 6, Neg. LLF: 8836.369813945206
Iteration: 2, Func. Count: 13, Neg. LLF: 578.6027818839028
Iteration: 3, Func. Count: 19, Neg. LLF: 161.55050915944634
Iteration: 4, Func. Count: 25, Neg. LLF: 160.5702782619345
Iteration: 5, Func. Count: 31, Neg. LLF: 160.42165256140012
Iteration: 6, Func. Count: 37, Neg. LLF: 161.17311451253497
Iteration: 7, Func. Count: 43, Neg. LLF: 161.05648267561438
Iteration: 8, Func. Count: 49, Neg. LLF: 160.01583179421405
Iteration: 9, Func. Count: 54, Neg. LLF: 160.29024796628434
Iteration: 10, Func. Count: 60, Neg. LLF: 160.89994920637454
Iteration: 11, Func. Count: 66, Neg. LLF: 159.3303057148045
Iteration: 12, Func. Count: 71, Neg. LLF: 159.32495999883915
Iteration: 13, Func. Count: 76, Neg. LLF: 159.32492629228182
Iteration: 14, Func. Count: 81, Neg. LLF: 159.32492190304754
Iteration: 15, Func. Count: 85, Neg. LLF: 159.3249219036974
Optimization terminated successfully (Exit mode 0)
Current function value: 159.32492190304754
Iterations: 15
Function evaluations: 85
Gradient evaluations: 15
Iteration: 1, Func. Count: 7, Neg. LLF: 238.3663300577192
Iteration: 2, Func. Count: 15, Neg. LLF: 372.4248609788151
Iteration: 3, Func. Count: 23, Neg. LLF: 162.26075843458275
Iteration: 4, Func. Count: 30, Neg. LLF: 161.2286897967985
Iteration: 5, Func. Count: 37, Neg. LLF: 160.8943742463008
Iteration: 6, Func. Count: 43, Neg. LLF: 160.18888947245887
Iteration: 7, Func. Count: 49, Neg. LLF: 159.4235789964368
Iteration: 8, Func. Count: 55, Neg. LLF: 159.84405249550576
Iteration: 9, Func. Count: 62, Neg. LLF: 159.35601953910043
Iteration: 10, Func. Count: 68, Neg. LLF: 159.3550231773737
Iteration: 11, Func. Count: 74, Neg. LLF: 159.35366556912774
Iteration: 12, Func. Count: 80, Neg. LLF: 159.34737002491173
Iteration: 13, Func. Count: 86, Neg. LLF: 159.33609080079555
Iteration: 14, Func. Count: 92, Neg. LLF: 159.32959528071245
Iteration: 15, Func. Count: 98, Neg. LLF: 159.32492605362404
Iteration: 16, Func. Count: 104, Neg. LLF: 159.32492182351078
Iteration: 17, Func. Count: 109, Neg. LLF: 159.32492182522859
Optimization terminated successfully (Exit mode 0)
Current function value: 159.32492182351078
Iterations: 17
Function evaluations: 109
Gradient evaluations: 17
Iteration: 1, Func. Count: 8, Neg. LLF: 362.2974124393672
Iteration: 2, Func. Count: 17, Neg. LLF: 518.8419565583685
Iteration: 3, Func. Count: 26, Neg. LLF: 161.65066104636023
Iteration: 4, Func. Count: 34, Neg. LLF: 160.24380708789653
Iteration: 5, Func. Count: 41, Neg. LLF: 160.22725071063599
Iteration: 6, Func. Count: 49, Neg. LLF: 161.29593935385168
Iteration: 7, Func. Count: 57, Neg. LLF: 160.02423589108037
Iteration: 8, Func. Count: 64, Neg. LLF: 160.00178842160784
Iteration: 9, Func. Count: 72, Neg. LLF: 159.66413203203777
Iteration: 10, Func. Count: 79, Neg. LLF: 159.59595557635146
Iteration: 11, Func. Count: 86, Neg. LLF: 159.47617359793517
Iteration: 12, Func. Count: 93, Neg. LLF: 159.43350815624467
Iteration: 13, Func. Count: 100, Neg. LLF: 159.50950592658882
Iteration: 14, Func. Count: 108, Neg. LLF: 159.42940867346755
Iteration: 15, Func. Count: 115, Neg. LLF: 159.41727133373794
Iteration: 16, Func. Count: 122, Neg. LLF: 159.40484951184638
Iteration: 17, Func. Count: 129, Neg. LLF: 159.350538287476
Iteration: 18, Func. Count: 136, Neg. LLF: 159.35070919362144
Iteration: 19, Func. Count: 144, Neg. LLF: 159.34953042362605
Iteration: 20, Func. Count: 151, Neg. LLF: 159.346565077331
Iteration: 21, Func. Count: 158, Neg. LLF: 159.33338707637014
Iteration: 22, Func. Count: 165, Neg. LLF: 159.33093341570407
Iteration: 23, Func. Count: 172, Neg. LLF: 159.3251848930033
Iteration: 24, Func. Count: 179, Neg. LLF: 159.3249352539682
Iteration: 25, Func. Count: 186, Neg. LLF: 159.32492320241698
Iteration: 26, Func. Count: 193, Neg. LLF: 159.32492184387303
Iteration: 27, Func. Count: 199, Neg. LLF: 159.3249218492217
Optimization terminated successfully (Exit mode 0)
Current function value: 159.32492184387303
Iterations: 27
Function evaluations: 199
Gradient evaluations: 27
Iteration: 1, Func. Count: 9, Neg. LLF: 363.27012419580063
Iteration: 2, Func. Count: 19, Neg. LLF: 547.1587447017508
Iteration: 3, Func. Count: 28, Neg. LLF: 161.0091510261246
Iteration: 4, Func. Count: 37, Neg. LLF: 160.79006749689415
Iteration: 5, Func. Count: 46, Neg. LLF: 163.09394785996813
Iteration: 6, Func. Count: 56, Neg. LLF: 160.1765843233532
Iteration: 7, Func. Count: 64, Neg. LLF: 160.08805362576587
Iteration: 8, Func. Count: 72, Neg. LLF: 159.9945756188797
Iteration: 9, Func. Count: 80, Neg. LLF: 159.89132180122667
Iteration: 10, Func. Count: 88, Neg. LLF: 159.6918130342332
Iteration: 11, Func. Count: 96, Neg. LLF: 159.47206797290278
Iteration: 12, Func. Count: 104, Neg. LLF: 159.43701031203852
Iteration: 13, Func. Count: 112, Neg. LLF: 159.4337293020398
Iteration: 14, Func. Count: 120, Neg. LLF: 159.42467572374497
Iteration: 15, Func. Count: 128, Neg. LLF: 159.41924834976197
Iteration: 16, Func. Count: 136, Neg. LLF: 159.41243684836797
Iteration: 17, Func. Count: 144, Neg. LLF: 159.40837478874622
Iteration: 18, Func. Count: 152, Neg. LLF: 159.40516653626187
Iteration: 19, Func. Count: 160, Neg. LLF: 159.38956749146305
Iteration: 20, Func. Count: 168, Neg. LLF: 159.38604014986015
Iteration: 21, Func. Count: 176, Neg. LLF: 159.36489311516343
Iteration: 22, Func. Count: 184, Neg. LLF: 159.34188556625958
Iteration: 23, Func. Count: 192, Neg. LLF: 159.3300630888374
Iteration: 24, Func. Count: 200, Neg. LLF: 19928829.6418988
Iteration: 25, Func. Count: 212, Neg. LLF: 159.32562762547107
Iteration: 26, Func. Count: 220, Neg. LLF: 159.32492220501845
Iteration: 27, Func. Count: 227, Neg. LLF: 159.32492221397334
Optimization terminated successfully (Exit mode 0)
Current function value: 159.32492220501845
Iterations: 28
Function evaluations: 227
Gradient evaluations: 27
Iteration: 1, Func. Count: 6, Neg. LLF: 162.92218352877686
Iteration: 2, Func. Count: 12, Neg. LLF: 162.33794454519247
Iteration: 3, Func. Count: 18, Neg. LLF: 164.5429449582025
Iteration: 4, Func. Count: 25, Neg. LLF: 160.74540856509336
Iteration: 5, Func. Count: 30, Neg. LLF: 160.71348806341194
Iteration: 6, Func. Count: 35, Neg. LLF: 160.65286781214385
Iteration: 7, Func. Count: 40, Neg. LLF: 160.58966914421225
Iteration: 8, Func. Count: 45, Neg. LLF: 160.56576710033409
Iteration: 9, Func. Count: 50, Neg. LLF: 160.55330581787473
Iteration: 10, Func. Count: 55, Neg. LLF: 160.54798370185105
Iteration: 11, Func. Count: 60, Neg. LLF: 160.5473874588078
Iteration: 12, Func. Count: 65, Neg. LLF: 160.54731950973007
Iteration: 13, Func. Count: 70, Neg. LLF: 160.547318528991
Optimization terminated successfully (Exit mode 0)
Current function value: 160.547318528991
Iterations: 13
Function evaluations: 70
Gradient evaluations: 13
Iteration: 1, Func. Count: 7, Neg. LLF: 1468.8503370168921
Iteration: 2, Func. Count: 15, Neg. LLF: 160.28957017127925
Iteration: 3, Func. Count: 22, Neg. LLF: 157.50233574491713
Iteration: 4, Func. Count: 29, Neg. LLF: 157.3939498374045
Iteration: 5, Func. Count: 36, Neg. LLF: 157.1504386687918
Iteration: 6, Func. Count: 42, Neg. LLF: 157.1498236444673
Iteration: 7, Func. Count: 48, Neg. LLF: 157.14961227334504
Iteration: 8, Func. Count: 54, Neg. LLF: 157.14961055585633
Iteration: 9, Func. Count: 59, Neg. LLF: 157.14961055575176
Optimization terminated successfully (Exit mode 0)
Current function value: 157.14961055585633
Iterations: 9
Function evaluations: 59
Gradient evaluations: 9
Iteration: 1, Func. Count: 8, Neg. LLF: 20126332.405613624
Iteration: 2, Func. Count: 17, Neg. LLF: 163.095749489965
Iteration: 3, Func. Count: 25, Neg. LLF: 157.51837909895872
Iteration: 4, Func. Count: 32, Neg. LLF: 158.34788536475503
Iteration: 5, Func. Count: 40, Neg. LLF: 157.16714103996856
Iteration: 6, Func. Count: 47, Neg. LLF: 157.1527617829935
Iteration: 7, Func. Count: 54, Neg. LLF: 157.1501285872941
Iteration: 8, Func. Count: 61, Neg. LLF: 157.14961419004732
Iteration: 9, Func. Count: 68, Neg. LLF: 157.14961052103195
Iteration: 10, Func. Count: 74, Neg. LLF: 157.1496105298562
Optimization terminated successfully (Exit mode 0)
Current function value: 157.14961052103195
Iterations: 10
Function evaluations: 74
Gradient evaluations: 10
Iteration: 1, Func. Count: 9, Neg. LLF: 415.09654654714245
Iteration: 2, Func. Count: 19, Neg. LLF: 189.94745200132252
Iteration: 3, Func. Count: 28, Neg. LLF: 158.49377799402788
Iteration: 4, Func. Count: 37, Neg. LLF: 157.44850887620217
Iteration: 5, Func. Count: 45, Neg. LLF: 157.33735574489683
Iteration: 6, Func. Count: 53, Neg. LLF: 157.29537214752668
Iteration: 7, Func. Count: 61, Neg. LLF: 157.26297683972297
Iteration: 8, Func. Count: 69, Neg. LLF: 157.32805586528187
Iteration: 9, Func. Count: 78, Neg. LLF: 157.173412494678
Iteration: 10, Func. Count: 86, Neg. LLF: 157.1545439993296
Iteration: 11, Func. Count: 94, Neg. LLF: 157.15242021292596
Iteration: 12, Func. Count: 102, Neg. LLF: 157.14966567714052
Iteration: 13, Func. Count: 110, Neg. LLF: 157.14973105786288
Iteration: 14, Func. Count: 118, Neg. LLF: 157.14961056956218
Optimization terminated successfully (Exit mode 0)
Current function value: 157.14961053817646
Iterations: 14
Function evaluations: 118
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 388.614832471134
Iteration: 2, Func. Count: 20, Neg. LLF: 200.90966138753132
Iteration: 3, Func. Count: 30, Neg. LLF: 157.9884627216581
Iteration: 4, Func. Count: 39, Neg. LLF: 157.60946249671457
Iteration: 5, Func. Count: 48, Neg. LLF: 157.62456330625105
Iteration: 6, Func. Count: 58, Neg. LLF: 157.363386154774
Iteration: 7, Func. Count: 67, Neg. LLF: 157.33664562562325
Iteration: 8, Func. Count: 76, Neg. LLF: 157.29513004469013
Iteration: 9, Func. Count: 85, Neg. LLF: 157.27215029067756
Iteration: 10, Func. Count: 94, Neg. LLF: 157.23733839625797
Iteration: 11, Func. Count: 103, Neg. LLF: 157.19570918943026
Iteration: 12, Func. Count: 112, Neg. LLF: 157.15484353157566
Iteration: 13, Func. Count: 121, Neg. LLF: 157.15061499875483
Iteration: 14, Func. Count: 130, Neg. LLF: 157.1496598016101
Iteration: 15, Func. Count: 139, Neg. LLF: 157.14962363454026
Iteration: 16, Func. Count: 148, Neg. LLF: 157.14961147353557
Iteration: 17, Func. Count: 157, Neg. LLF: 157.14961049625077
Optimization terminated successfully (Exit mode 0)
Current function value: 157.14961049625077
Iterations: 17
Function evaluations: 157
Gradient evaluations: 17
Iteration: 1, Func. Count: 7, Neg. LLF: 165.01660739910568
Iteration: 2, Func. Count: 14, Neg. LLF: 161.42665091346854
Iteration: 3, Func. Count: 22, Neg. LLF: 159.93055396005815
Iteration: 4, Func. Count: 29, Neg. LLF: 159.60537528679666
Iteration: 5, Func. Count: 36, Neg. LLF: 160.12999339971626
Iteration: 6, Func. Count: 43, Neg. LLF: 159.49034996023812
Iteration: 7, Func. Count: 49, Neg. LLF: 159.48882533204386
Iteration: 8, Func. Count: 55, Neg. LLF: 159.48571468818892
Iteration: 9, Func. Count: 61, Neg. LLF: 159.4846863741097
Iteration: 10, Func. Count: 67, Neg. LLF: 159.48054225175795
Iteration: 11, Func. Count: 73, Neg. LLF: 159.47939113461882
Iteration: 12, Func. Count: 79, Neg. LLF: 159.47935252735755
Iteration: 13, Func. Count: 85, Neg. LLF: 159.4793496197099
Iteration: 14, Func. Count: 90, Neg. LLF: 159.47934961971035
Optimization terminated successfully (Exit mode 0)
Current function value: 159.4793496197099
Iterations: 14
Function evaluations: 90
Gradient evaluations: 14
Iteration: 1, Func. Count: 8, Neg. LLF: 2056.076114030833
Iteration: 2, Func. Count: 17, Neg. LLF: 162.3534630167012
Iteration: 3, Func. Count: 25, Neg. LLF: 156.9953230803601
Iteration: 4, Func. Count: 32, Neg. LLF: 156.8679353699114
Iteration: 5, Func. Count: 39, Neg. LLF: 156.69986085507836
Iteration: 6, Func. Count: 46, Neg. LLF: 156.6641222778764
Iteration: 7, Func. Count: 53, Neg. LLF: 156.66279026812137
Iteration: 8, Func. Count: 60, Neg. LLF: 156.6626817404892
Iteration: 9, Func. Count: 67, Neg. LLF: 156.66266330377462
Iteration: 10, Func. Count: 74, Neg. LLF: 156.6626503556995
Iteration: 11, Func. Count: 80, Neg. LLF: 156.6626503560052
Optimization terminated successfully (Exit mode 0)
Current function value: 156.6626503556995
Iterations: 11
Function evaluations: 80
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 20106016.679995637
Iteration: 2, Func. Count: 19, Neg. LLF: 164.22337373235567
Iteration: 3, Func. Count: 28, Neg. LLF: 156.97860293789262
Iteration: 4, Func. Count: 36, Neg. LLF: 156.90963046976623
Iteration: 5, Func. Count: 44, Neg. LLF: 156.75658677758395
Iteration: 6, Func. Count: 52, Neg. LLF: 157.6342528607953
Iteration: 7, Func. Count: 61, Neg. LLF: 157.53274967189398
Iteration: 8, Func. Count: 70, Neg. LLF: 157.4337414867469
Iteration: 9, Func. Count: 79, Neg. LLF: 156.78374601913677
Iteration: 10, Func. Count: 88, Neg. LLF: 156.6694385940699
Iteration: 11, Func. Count: 97, Neg. LLF: 156.6415164460494
Iteration: 12, Func. Count: 106, Neg. LLF: 156.61334953978889
Iteration: 13, Func. Count: 114, Neg. LLF: 156.60865019602656
Iteration: 14, Func. Count: 122, Neg. LLF: 156.60853952314986
Iteration: 15, Func. Count: 130, Neg. LLF: 156.6083318666629
Iteration: 16, Func. Count: 138, Neg. LLF: 156.60825868889285
Iteration: 17, Func. Count: 146, Neg. LLF: 156.6082430911025
Iteration: 18, Func. Count: 154, Neg. LLF: 156.60824247602662
Optimization terminated successfully (Exit mode 0)
Current function value: 156.60824247602662
Iterations: 18
Function evaluations: 154
Gradient evaluations: 18
Iteration: 1, Func. Count: 10, Neg. LLF: 414.8211587557738
Iteration: 2, Func. Count: 21, Neg. LLF: 177.03369586938786
Iteration: 3, Func. Count: 31, Neg. LLF: 160.17022744204223
Iteration: 4, Func. Count: 41, Neg. LLF: 157.02262988484415
Iteration: 5, Func. Count: 50, Neg. LLF: 157.05366608319468
Iteration: 6, Func. Count: 60, Neg. LLF: 157.14582230173573
Iteration: 7, Func. Count: 70, Neg. LLF: 156.7705266217029
Iteration: 8, Func. Count: 79, Neg. LLF: 156.67244707603106
Iteration: 9, Func. Count: 88, Neg. LLF: 156.63048655864338
Iteration: 10, Func. Count: 97, Neg. LLF: 156.61725601128052
Iteration: 11, Func. Count: 106, Neg. LLF: 156.61200852856697
Iteration: 12, Func. Count: 115, Neg. LLF: 156.60916085621895
Iteration: 13, Func. Count: 124, Neg. LLF: 156.60835024345593
Iteration: 14, Func. Count: 133, Neg. LLF: 156.60825334903805
Iteration: 15, Func. Count: 142, Neg. LLF: 156.60824331362136
Iteration: 16, Func. Count: 151, Neg. LLF: 156.6082424758256
Optimization terminated successfully (Exit mode 0)
Current function value: 156.6082424758256
Iterations: 16
Function evaluations: 151
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 388.72475087009065
Iteration: 2, Func. Count: 22, Neg. LLF: 174.45710724423893
Iteration: 3, Func. Count: 33, Neg. LLF: 157.8958647377092
Iteration: 4, Func. Count: 43, Neg. LLF: 157.13329058726254
Iteration: 5, Func. Count: 53, Neg. LLF: 157.3318445720391
Iteration: 6, Func. Count: 64, Neg. LLF: 157.30651588569233
Iteration: 7, Func. Count: 76, Neg. LLF: 156.6462607607236
Iteration: 8, Func. Count: 86, Neg. LLF: 156.61608444900912
Iteration: 9, Func. Count: 96, Neg. LLF: 156.60987504765654
Iteration: 10, Func. Count: 106, Neg. LLF: 156.60877920689254
Iteration: 11, Func. Count: 116, Neg. LLF: 156.60838564520108
Iteration: 12, Func. Count: 126, Neg. LLF: 156.60830789719247
Iteration: 13, Func. Count: 136, Neg. LLF: 156.6082483863911
Iteration: 14, Func. Count: 146, Neg. LLF: 156.60824279363015
Iteration: 15, Func. Count: 155, Neg. LLF: 156.60824283167054
Optimization terminated successfully (Exit mode 0)
Current function value: 156.60824279363015
Iterations: 15
Function evaluations: 155
Gradient evaluations: 15
Iteration: 1, Func. Count: 8, Neg. LLF: 161.36658452897404
Iteration: 2, Func. Count: 16, Neg. LLF: 165.45859202993628
Iteration: 3, Func. Count: 24, Neg. LLF: 160.33818849231108
Iteration: 4, Func. Count: 32, Neg. LLF: 162.26833121305478
Iteration: 5, Func. Count: 40, Neg. LLF: 159.4500201847198
Iteration: 6, Func. Count: 48, Neg. LLF: 160.77100020525225
Iteration: 7, Func. Count: 56, Neg. LLF: 159.3767014629141
Iteration: 8, Func. Count: 64, Neg. LLF: 159.2803271717227
Iteration: 9, Func. Count: 71, Neg. LLF: 159.26763302896023
Iteration: 10, Func. Count: 78, Neg. LLF: 159.25470431204832
Iteration: 11, Func. Count: 85, Neg. LLF: 159.20617306652665
Iteration: 12, Func. Count: 92, Neg. LLF: 159.18535433580848
Iteration: 13, Func. Count: 99, Neg. LLF: 159.17523209706712
Iteration: 14, Func. Count: 106, Neg. LLF: 159.17350897940972
Iteration: 15, Func. Count: 113, Neg. LLF: 159.17341652837243
Iteration: 16, Func. Count: 120, Neg. LLF: 159.1733720517451
Iteration: 17, Func. Count: 127, Neg. LLF: 159.17336078127553
Iteration: 18, Func. Count: 134, Neg. LLF: 159.173359418489
Iteration: 19, Func. Count: 140, Neg. LLF: 159.17335941848717
Optimization terminated successfully (Exit mode 0)
Current function value: 159.173359418489
Iterations: 19
Function evaluations: 140
Gradient evaluations: 19
Iteration: 1, Func. Count: 9, Neg. LLF: 3387.967745344665
Iteration: 2, Func. Count: 19, Neg. LLF: 176.5689236161511
Iteration: 3, Func. Count: 28, Neg. LLF: 156.79213705832316
Iteration: 4, Func. Count: 37, Neg. LLF: 156.10122779896886
Iteration: 5, Func. Count: 45, Neg. LLF: 155.91638151374607
Iteration: 6, Func. Count: 53, Neg. LLF: 155.91066067181006
Iteration: 7, Func. Count: 61, Neg. LLF: 155.90375401077128
Iteration: 8, Func. Count: 69, Neg. LLF: 155.90221351573527
Iteration: 9, Func. Count: 77, Neg. LLF: 155.90171146477022
Iteration: 10, Func. Count: 85, Neg. LLF: 155.90169802070812
Iteration: 11, Func. Count: 92, Neg. LLF: 155.90169802086612
Optimization terminated successfully (Exit mode 0)
Current function value: 155.90169802070812
Iterations: 11
Function evaluations: 92
Gradient evaluations: 11
Iteration: 1, Func. Count: 10, Neg. LLF: 20177135.68141524
Iteration: 2, Func. Count: 21, Neg. LLF: 170.67005930383107
Iteration: 3, Func. Count: 31, Neg. LLF: 156.6067129194757
Iteration: 4, Func. Count: 40, Neg. LLF: 160.57079908742037
Iteration: 5, Func. Count: 50, Neg. LLF: 155.91787035633615
Iteration: 6, Func. Count: 59, Neg. LLF: 155.91045075147073
Iteration: 7, Func. Count: 68, Neg. LLF: 155.9044813565843
Iteration: 8, Func. Count: 77, Neg. LLF: 155.90284295610363
Iteration: 9, Func. Count: 86, Neg. LLF: 155.90177744404414
Iteration: 10, Func. Count: 95, Neg. LLF: 155.901701673954
Iteration: 11, Func. Count: 104, Neg. LLF: 155.9016977490211
Iteration: 12, Func. Count: 112, Neg. LLF: 155.90169778120583
Optimization terminated successfully (Exit mode 0)
Current function value: 155.9016977490211
Iterations: 12
Function evaluations: 112
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 332.1811044173407
Iteration: 2, Func. Count: 23, Neg. LLF: 183.47952927651758
Iteration: 3, Func. Count: 34, Neg. LLF: 160.79560467832033
Iteration: 4, Func. Count: 45, Neg. LLF: 157.3705198300212
Iteration: 5, Func. Count: 55, Neg. LLF: 157.3513311702053
Iteration: 6, Func. Count: 66, Neg. LLF: 157.3747484061687
Iteration: 7, Func. Count: 77, Neg. LLF: 157.0227522848857
Iteration: 8, Func. Count: 88, Neg. LLF: 156.95653132040042
Iteration: 9, Func. Count: 98, Neg. LLF: 156.64816672919926
Iteration: 10, Func. Count: 108, Neg. LLF: 156.7304607282349
Iteration: 11, Func. Count: 119, Neg. LLF: 156.54167244317298
Iteration: 12, Func. Count: 129, Neg. LLF: 156.44734680595724
Iteration: 13, Func. Count: 139, Neg. LLF: 156.05991193292468
Iteration: 14, Func. Count: 149, Neg. LLF: 155.95210890048426
Iteration: 15, Func. Count: 159, Neg. LLF: 155.91122406084088
Iteration: 16, Func. Count: 169, Neg. LLF: 155.90323251371518
Iteration: 17, Func. Count: 179, Neg. LLF: 155.90173598162144
Iteration: 18, Func. Count: 189, Neg. LLF: 155.90169779911284
Iteration: 19, Func. Count: 198, Neg. LLF: 155.901697865501
Optimization terminated successfully (Exit mode 0)
Current function value: 155.90169779911284
Iterations: 19
Function evaluations: 198
Gradient evaluations: 19
Iteration: 1, Func. Count: 12, Neg. LLF: 390.9668656868924
Iteration: 2, Func. Count: 24, Neg. LLF: 178.20977001052285
Iteration: 3, Func. Count: 36, Neg. LLF: 165.02814600531457
Iteration: 4, Func. Count: 48, Neg. LLF: 157.4528207945063
Iteration: 5, Func. Count: 59, Neg. LLF: 157.0906522594377
Iteration: 6, Func. Count: 70, Neg. LLF: 157.92419738255822
Iteration: 7, Func. Count: 82, Neg. LLF: 157.03624988277068
Iteration: 8, Func. Count: 93, Neg. LLF: 157.1394006632292
Iteration: 9, Func. Count: 105, Neg. LLF: 156.99822890389868
Iteration: 10, Func. Count: 116, Neg. LLF: 156.99077902980065
Iteration: 11, Func. Count: 127, Neg. LLF: 156.98986871030647
Iteration: 12, Func. Count: 138, Neg. LLF: 156.989480574787
Iteration: 13, Func. Count: 149, Neg. LLF: 156.98942360604812
Iteration: 14, Func. Count: 160, Neg. LLF: 156.98936728310287
Iteration: 15, Func. Count: 171, Neg. LLF: 156.98936533231594
Iteration: 16, Func. Count: 182, Neg. LLF: 156.9893645928617
Optimization terminated successfully (Exit mode 0)
Current function value: 156.9893645928617
Iterations: 16
Function evaluations: 182
Gradient evaluations: 16
Iteration: 1, Func. Count: 9, Neg. LLF: 161.18052455835277
Iteration: 2, Func. Count: 18, Neg. LLF: 158.85452090794476
Iteration: 3, Func. Count: 27, Neg. LLF: 159.07650158598233
Iteration: 4, Func. Count: 37, Neg. LLF: 159.2576845439257
Iteration: 5, Func. Count: 46, Neg. LLF: 157.29614095373555
Iteration: 6, Func. Count: 55, Neg. LLF: 157.15908405870888
Iteration: 7, Func. Count: 64, Neg. LLF: 156.60651533345094
Iteration: 8, Func. Count: 72, Neg. LLF: 156.5382737400797
Iteration: 9, Func. Count: 80, Neg. LLF: 156.51395277576162
Iteration: 10, Func. Count: 88, Neg. LLF: 156.38917676530843
Iteration: 11, Func. Count: 96, Neg. LLF: 156.31673708145547
Iteration: 12, Func. Count: 104, Neg. LLF: 156.2834323784917
Iteration: 13, Func. Count: 112, Neg. LLF: 156.26135221289078
Iteration: 14, Func. Count: 120, Neg. LLF: 156.2521575447887
Iteration: 15, Func. Count: 128, Neg. LLF: 156.248837765171
Iteration: 16, Func. Count: 136, Neg. LLF: 156.24852188271433
Iteration: 17, Func. Count: 144, Neg. LLF: 156.24850576062636
Iteration: 18, Func. Count: 152, Neg. LLF: 156.24850409835736
Iteration: 19, Func. Count: 159, Neg. LLF: 156.24850409835437
Optimization terminated successfully (Exit mode 0)
Current function value: 156.24850409835736
Iterations: 19
Function evaluations: 159
Gradient evaluations: 19
Iteration: 1, Func. Count: 10, Neg. LLF: 3908.497571593854
Iteration: 2, Func. Count: 21, Neg. LLF: 181.2227841425939
Iteration: 3, Func. Count: 31, Neg. LLF: 157.16298057122637
Iteration: 4, Func. Count: 41, Neg. LLF: 154.77493499033937
Iteration: 5, Func. Count: 50, Neg. LLF: 156.8917747639611
Iteration: 6, Func. Count: 60, Neg. LLF: 154.6542458291013
Iteration: 7, Func. Count: 69, Neg. LLF: 154.62890188703346
Iteration: 8, Func. Count: 78, Neg. LLF: 154.61258967295183
Iteration: 9, Func. Count: 87, Neg. LLF: 154.60164908494855
Iteration: 10, Func. Count: 96, Neg. LLF: 154.5930283629883
Iteration: 11, Func. Count: 105, Neg. LLF: 154.58355183092846
Iteration: 12, Func. Count: 114, Neg. LLF: 154.57497092357423
Iteration: 13, Func. Count: 123, Neg. LLF: 154.5696865839005
Iteration: 14, Func. Count: 132, Neg. LLF: 154.5677725251157
Iteration: 15, Func. Count: 141, Neg. LLF: 154.56746745376978
Iteration: 16, Func. Count: 150, Neg. LLF: 154.56744719772962
Iteration: 17, Func. Count: 159, Neg. LLF: 154.56744616242355
Iteration: 18, Func. Count: 167, Neg. LLF: 154.56744616242017
Optimization terminated successfully (Exit mode 0)
Current function value: 154.56744616242355
Iterations: 18
Function evaluations: 167
Gradient evaluations: 18
Iteration: 1, Func. Count: 11, Neg. LLF: 219.8293808421434
Iteration: 2, Func. Count: 22, Neg. LLF: 156.34801704273727
Iteration: 3, Func. Count: 33, Neg. LLF: 157.320788793493
Iteration: 4, Func. Count: 44, Neg. LLF: 172.35825413866374
Iteration: 5, Func. Count: 55, Neg. LLF: 154.67788117777422
Iteration: 6, Func. Count: 65, Neg. LLF: 155.14403842338265
Iteration: 7, Func. Count: 76, Neg. LLF: 154.66408036573932
Iteration: 8, Func. Count: 87, Neg. LLF: 154.5937572077565
Iteration: 9, Func. Count: 97, Neg. LLF: 154.58745295869403
Iteration: 10, Func. Count: 107, Neg. LLF: 154.57024971758148
Iteration: 11, Func. Count: 117, Neg. LLF: 154.56783266654622
Iteration: 12, Func. Count: 127, Neg. LLF: 154.56754718525258
Iteration: 13, Func. Count: 137, Neg. LLF: 154.56748932343922
Iteration: 14, Func. Count: 147, Neg. LLF: 154.56745603207364
Iteration: 15, Func. Count: 157, Neg. LLF: 154.5674470879918
Iteration: 16, Func. Count: 167, Neg. LLF: 154.567446116542
Optimization terminated successfully (Exit mode 0)
Current function value: 154.567446116542
Iterations: 16
Function evaluations: 167
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 209.91945420280697
Iteration: 2, Func. Count: 24, Neg. LLF: 157.19723372921635
Iteration: 3, Func. Count: 36, Neg. LLF: 167.15782283823555
Iteration: 4, Func. Count: 48, Neg. LLF: 157.90921282190453
Iteration: 5, Func. Count: 60, Neg. LLF: 154.719019185809
Iteration: 6, Func. Count: 71, Neg. LLF: 154.68917904104478
Iteration: 7, Func. Count: 83, Neg. LLF: 154.6238196902596
Iteration: 8, Func. Count: 94, Neg. LLF: 154.59036829628386
Iteration: 9, Func. Count: 105, Neg. LLF: 154.58647486951912
Iteration: 10, Func. Count: 116, Neg. LLF: 154.57395943884003
Iteration: 11, Func. Count: 127, Neg. LLF: 154.56942038643683
Iteration: 12, Func. Count: 138, Neg. LLF: 154.56764620462445
Iteration: 13, Func. Count: 149, Neg. LLF: 154.56747751055178
Iteration: 14, Func. Count: 160, Neg. LLF: 154.5674586972112
Iteration: 15, Func. Count: 171, Neg. LLF: 154.5674479349498
Iteration: 16, Func. Count: 182, Neg. LLF: 154.56744620438116
Iteration: 17, Func. Count: 192, Neg. LLF: 154.56744622229934
Optimization terminated successfully (Exit mode 0)
Current function value: 154.56744620438116
Iterations: 17
Function evaluations: 192
Gradient evaluations: 17
Iteration: 1, Func. Count: 13, Neg. LLF: 229.63818479257557
Iteration: 2, Func. Count: 26, Neg. LLF: 298.1408705370303
Iteration: 3, Func. Count: 39, Neg. LLF: 166.0686608217009
Iteration: 4, Func. Count: 52, Neg. LLF: 155.27622873275098
Iteration: 5, Func. Count: 64, Neg. LLF: 154.7799827838184
Iteration: 6, Func. Count: 76, Neg. LLF: 154.72908189845796
Iteration: 7, Func. Count: 88, Neg. LLF: 154.65326780211035
Iteration: 8, Func. Count: 100, Neg. LLF: 154.61833291596878
Iteration: 9, Func. Count: 112, Neg. LLF: 154.5915430757066
Iteration: 10, Func. Count: 124, Neg. LLF: 154.57825028117452
Iteration: 11, Func. Count: 136, Neg. LLF: 154.57269380631323
Iteration: 12, Func. Count: 148, Neg. LLF: 154.570405155429
Iteration: 13, Func. Count: 160, Neg. LLF: 154.56855585045102
Iteration: 14, Func. Count: 172, Neg. LLF: 154.56772643468915
Iteration: 15, Func. Count: 184, Neg. LLF: 154.56748281383733
Iteration: 16, Func. Count: 196, Neg. LLF: 154.5674484534901
Iteration: 17, Func. Count: 208, Neg. LLF: 154.56744615673372
Iteration: 18, Func. Count: 219, Neg. LLF: 154.5674462047093
Optimization terminated successfully (Exit mode 0)
Current function value: 154.56744615673372
Iterations: 18
Function evaluations: 219
Gradient evaluations: 18
Iteration: 1, Func. Count: 6, Neg. LLF: 164.61943249831475
Iteration: 2, Func. Count: 12, Neg. LLF: 164.3439407181042
Iteration: 3, Func. Count: 19, Neg. LLF: 162.5240076511021
Iteration: 4, Func. Count: 25, Neg. LLF: 162.50207785900858
Iteration: 5, Func. Count: 30, Neg. LLF: 162.49715587351943
Iteration: 6, Func. Count: 35, Neg. LLF: 162.4963080144421
Iteration: 7, Func. Count: 40, Neg. LLF: 162.49173170547434
Iteration: 8, Func. Count: 45, Neg. LLF: 162.47921101358426
Iteration: 9, Func. Count: 50, Neg. LLF: 162.47374969652964
Iteration: 10, Func. Count: 55, Neg. LLF: 162.47112083139095
Iteration: 11, Func. Count: 60, Neg. LLF: 162.47101489503186
Iteration: 12, Func. Count: 65, Neg. LLF: 162.47100901646013
Iteration: 13, Func. Count: 69, Neg. LLF: 162.4710090164428
Optimization terminated successfully (Exit mode 0)
Current function value: 162.47100901646013
Iterations: 13
Function evaluations: 69
Gradient evaluations: 13
Iteration: 1, Func. Count: 7, Neg. LLF: 20721222.50884787
Iteration: 2, Func. Count: 15, Neg. LLF: 567.6679375495733
Iteration: 3, Func. Count: 22, Neg. LLF: 160.951237520006
Iteration: 4, Func. Count: 29, Neg. LLF: 161.0772380651378
Iteration: 5, Func. Count: 36, Neg. LLF: 160.76644273732634
Iteration: 6, Func. Count: 43, Neg. LLF: 160.49012403366794
Iteration: 7, Func. Count: 50, Neg. LLF: 160.48034441182625
Iteration: 8, Func. Count: 57, Neg. LLF: 160.46783317519413
Iteration: 9, Func. Count: 63, Neg. LLF: 160.46766879287622
Iteration: 10, Func. Count: 69, Neg. LLF: 160.46758214580964
Iteration: 11, Func. Count: 75, Neg. LLF: 160.46757054889213
Iteration: 12, Func. Count: 81, Neg. LLF: 160.46756959472867
Optimization terminated successfully (Exit mode 0)
Current function value: 160.46756959472867
Iterations: 12
Function evaluations: 81
Gradient evaluations: 12
Iteration: 1, Func. Count: 8, Neg. LLF: 367.09000119248634
Iteration: 2, Func. Count: 17, Neg. LLF: 2031.5276278944423
Iteration: 3, Func. Count: 26, Neg. LLF: 163.66704849612717
Iteration: 4, Func. Count: 34, Neg. LLF: 159.86771513669348
Iteration: 5, Func. Count: 41, Neg. LLF: 160.32097462619856
Iteration: 6, Func. Count: 49, Neg. LLF: 159.7238545141246
Iteration: 7, Func. Count: 57, Neg. LLF: 159.45714622856937
Iteration: 8, Func. Count: 64, Neg. LLF: 159.45632635158438
Iteration: 9, Func. Count: 72, Neg. LLF: 159.44582457788434
Iteration: 10, Func. Count: 80, Neg. LLF: 159.36945063961662
Iteration: 11, Func. Count: 87, Neg. LLF: 159.37405982622616
Iteration: 12, Func. Count: 95, Neg. LLF: 159.36449416273442
Iteration: 13, Func. Count: 102, Neg. LLF: 159.36445457127883
Iteration: 14, Func. Count: 109, Neg. LLF: 159.3644490317424
Iteration: 15, Func. Count: 116, Neg. LLF: 159.36444299033013
Iteration: 16, Func. Count: 123, Neg. LLF: 159.3644408656459
Iteration: 17, Func. Count: 129, Neg. LLF: 159.3644408656032
Optimization terminated successfully (Exit mode 0)
Current function value: 159.3644408656459
Iterations: 17
Function evaluations: 129
Gradient evaluations: 17
Iteration: 1, Func. Count: 9, Neg. LLF: 367.75300149746926
Iteration: 2, Func. Count: 19, Neg. LLF: 292.8728541055258
Iteration: 3, Func. Count: 29, Neg. LLF: 165.7292331359681
Iteration: 4, Func. Count: 38, Neg. LLF: 162.2074437594022
Iteration: 5, Func. Count: 47, Neg. LLF: 160.35909988342272
Iteration: 6, Func. Count: 55, Neg. LLF: 160.23568996830454
Iteration: 7, Func. Count: 63, Neg. LLF: 160.15244966524645
Iteration: 8, Func. Count: 71, Neg. LLF: 160.12507824743489
Iteration: 9, Func. Count: 79, Neg. LLF: 159.9316497359743
Iteration: 10, Func. Count: 87, Neg. LLF: 159.5824646079092
Iteration: 11, Func. Count: 95, Neg. LLF: 159.50924667745528
Iteration: 12, Func. Count: 103, Neg. LLF: 159.4266839483129
Iteration: 13, Func. Count: 111, Neg. LLF: 159.42265240246135
Iteration: 14, Func. Count: 119, Neg. LLF: 159.41984633949872
Iteration: 15, Func. Count: 127, Neg. LLF: 159.4054448553855
Iteration: 16, Func. Count: 135, Neg. LLF: 159.36380048126426
Iteration: 17, Func. Count: 143, Neg. LLF: 159.36379687356683
Iteration: 18, Func. Count: 152, Neg. LLF: 83434.55428040474
Optimization terminated successfully (Exit mode 0)
Current function value: 159.363769824762
Iterations: 19
Function evaluations: 157
Gradient evaluations: 18
Iteration: 1, Func. Count: 10, Neg. LLF: 370.8924860514459
Iteration: 2, Func. Count: 21, Neg. LLF: 4348.308039083137
Iteration: 3, Func. Count: 32, Neg. LLF: 159.91103285310228
Iteration: 4, Func. Count: 41, Neg. LLF: 160.592946325834
Iteration: 5, Func. Count: 52, Neg. LLF: 161.38466058401295
Iteration: 6, Func. Count: 62, Neg. LLF: 159.71294716206998
Iteration: 7, Func. Count: 71, Neg. LLF: 160.79834673540987
Iteration: 8, Func. Count: 81, Neg. LLF: 159.48301069589496
Iteration: 9, Func. Count: 90, Neg. LLF: 159.4126530008439
Iteration: 10, Func. Count: 99, Neg. LLF: 159.36722577822752
Iteration: 11, Func. Count: 108, Neg. LLF: 159.35893967089845
Iteration: 12, Func. Count: 117, Neg. LLF: 159.355771348466
Iteration: 13, Func. Count: 126, Neg. LLF: 159.35211196101966
Iteration: 14, Func. Count: 135, Neg. LLF: 159.3503417659975
Iteration: 15, Func. Count: 144, Neg. LLF: 159.34985153537133
Iteration: 16, Func. Count: 153, Neg. LLF: 159.34982853296438
Iteration: 17, Func. Count: 161, Neg. LLF: 159.34982856598475
Optimization terminated successfully (Exit mode 0)
Current function value: 159.34982853296438
Iterations: 17
Function evaluations: 161
Gradient evaluations: 17
Iteration: 1, Func. Count: 7, Neg. LLF: 165.11367335490482
Iteration: 2, Func. Count: 14, Neg. LLF: 161.78066471464476
Iteration: 3, Func. Count: 21, Neg. LLF: 163.67365672672443
Iteration: 4, Func. Count: 29, Neg. LLF: 164.448642036856
Iteration: 5, Func. Count: 36, Neg. LLF: 160.5596730766797
Iteration: 6, Func. Count: 42, Neg. LLF: 160.54277388458814
Iteration: 7, Func. Count: 48, Neg. LLF: 160.53756358708526
Iteration: 8, Func. Count: 54, Neg. LLF: 160.53694102549906
Iteration: 9, Func. Count: 60, Neg. LLF: 160.53650442769234
Iteration: 10, Func. Count: 66, Neg. LLF: 160.5364160331194
Iteration: 11, Func. Count: 72, Neg. LLF: 160.5358837139996
Iteration: 12, Func. Count: 78, Neg. LLF: 160.5345803539779
Iteration: 13, Func. Count: 84, Neg. LLF: 160.5339783273474
Iteration: 14, Func. Count: 90, Neg. LLF: 160.53367895759106
Iteration: 15, Func. Count: 96, Neg. LLF: 160.53365656076272
Iteration: 16, Func. Count: 101, Neg. LLF: 160.5336565607691
Optimization terminated successfully (Exit mode 0)
Current function value: 160.53365656076272
Iterations: 16
Function evaluations: 101
Gradient evaluations: 16
Iteration: 1, Func. Count: 8, Neg. LLF: 1553.5972172613206
Iteration: 2, Func. Count: 17, Neg. LLF: 160.19536999050493
Iteration: 3, Func. Count: 25, Neg. LLF: 157.43842251427984
Iteration: 4, Func. Count: 33, Neg. LLF: 157.41079785316407
Iteration: 5, Func. Count: 41, Neg. LLF: 157.1504423582639
Iteration: 6, Func. Count: 48, Neg. LLF: 157.14981742370813
Iteration: 7, Func. Count: 55, Neg. LLF: 157.14961267606606
Iteration: 8, Func. Count: 62, Neg. LLF: 157.14961064456543
Iteration: 9, Func. Count: 68, Neg. LLF: 157.14961064436068
Optimization terminated successfully (Exit mode 0)
Current function value: 157.14961064456543
Iterations: 9
Function evaluations: 68
Gradient evaluations: 9
Iteration: 1, Func. Count: 9, Neg. LLF: 20128458.710744243
Iteration: 2, Func. Count: 19, Neg. LLF: 163.18494106153045
Iteration: 3, Func. Count: 28, Neg. LLF: 157.5156217045548
Iteration: 4, Func. Count: 36, Neg. LLF: 158.25586513197462
Iteration: 5, Func. Count: 45, Neg. LLF: 157.1671677935337
Iteration: 6, Func. Count: 53, Neg. LLF: 157.15281078057814
Iteration: 7, Func. Count: 61, Neg. LLF: 157.1501625225447
Iteration: 8, Func. Count: 69, Neg. LLF: 157.14961396016452
Iteration: 9, Func. Count: 77, Neg. LLF: 157.149610565498
Iteration: 10, Func. Count: 84, Neg. LLF: 157.1496105743962
Optimization terminated successfully (Exit mode 0)
Current function value: 157.149610565498
Iterations: 10
Function evaluations: 84
Gradient evaluations: 10
Iteration: 1, Func. Count: 10, Neg. LLF: 414.82974041763777
Iteration: 2, Func. Count: 21, Neg. LLF: 190.22451132128677
Iteration: 3, Func. Count: 31, Neg. LLF: 158.34853524910795
Iteration: 4, Func. Count: 41, Neg. LLF: 157.43459098945797
Iteration: 5, Func. Count: 50, Neg. LLF: 157.35163883266674
Iteration: 6, Func. Count: 59, Neg. LLF: 157.30406461881347
Iteration: 7, Func. Count: 68, Neg. LLF: 157.27170235582616
Iteration: 8, Func. Count: 77, Neg. LLF: 157.22717996603325
Iteration: 9, Func. Count: 86, Neg. LLF: 157.16939773589496
Iteration: 10, Func. Count: 95, Neg. LLF: 157.16253629186437
Iteration: 11, Func. Count: 104, Neg. LLF: 157.15232183375207
Iteration: 12, Func. Count: 113, Neg. LLF: 157.15127841716878
Iteration: 13, Func. Count: 122, Neg. LLF: 157.14972569618203
Iteration: 14, Func. Count: 131, Neg. LLF: 157.14961963053707
Iteration: 15, Func. Count: 140, Neg. LLF: 157.14961053417406
Iteration: 16, Func. Count: 148, Neg. LLF: 157.1496105654519
Optimization terminated successfully (Exit mode 0)
Current function value: 157.14961053417406
Iterations: 16
Function evaluations: 148
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 390.6365044664582
Iteration: 2, Func. Count: 22, Neg. LLF: 202.96191077900878
Iteration: 3, Func. Count: 33, Neg. LLF: 158.05045015996424
Iteration: 4, Func. Count: 43, Neg. LLF: 157.6527449393425
Iteration: 5, Func. Count: 53, Neg. LLF: 157.91905797216526
Iteration: 6, Func. Count: 64, Neg. LLF: 157.3499867191093
Iteration: 7, Func. Count: 74, Neg. LLF: 157.4171281448775
Iteration: 8, Func. Count: 85, Neg. LLF: 157.28173518966
Iteration: 9, Func. Count: 95, Neg. LLF: 157.26178033428047
Iteration: 10, Func. Count: 105, Neg. LLF: 157.2072609979944
Iteration: 11, Func. Count: 115, Neg. LLF: 157.16344721181707
Iteration: 12, Func. Count: 125, Neg. LLF: 157.15694117006288
Iteration: 13, Func. Count: 135, Neg. LLF: 157.15028368556642
Iteration: 14, Func. Count: 145, Neg. LLF: 157.1508206322015
Iteration: 15, Func. Count: 156, Neg. LLF: 157.14966241759493
Iteration: 16, Func. Count: 166, Neg. LLF: 157.14961055322286
Iteration: 17, Func. Count: 175, Neg. LLF: 157.1496106202757
Optimization terminated successfully (Exit mode 0)
Current function value: 157.14961055322286
Iterations: 17
Function evaluations: 175
Gradient evaluations: 17
Iteration: 1, Func. Count: 8, Neg. LLF: 166.46189031004906
Iteration: 2, Func. Count: 16, Neg. LLF: 160.82610322254135
Iteration: 3, Func. Count: 24, Neg. LLF: 160.66302452828612
Iteration: 4, Func. Count: 32, Neg. LLF: 159.64651561850957
Iteration: 5, Func. Count: 39, Neg. LLF: 161.4149178873792
Iteration: 6, Func. Count: 47, Neg. LLF: 159.8573309328704
Iteration: 7, Func. Count: 55, Neg. LLF: 159.49010731640018
Iteration: 8, Func. Count: 62, Neg. LLF: 159.48668049848604
Iteration: 9, Func. Count: 69, Neg. LLF: 159.4860281351133
Iteration: 10, Func. Count: 76, Neg. LLF: 159.4840178937112
Iteration: 11, Func. Count: 83, Neg. LLF: 159.4822180549888
Iteration: 12, Func. Count: 90, Neg. LLF: 159.4803751397902
Iteration: 13, Func. Count: 97, Neg. LLF: 159.4796001697716
Iteration: 14, Func. Count: 104, Neg. LLF: 159.4793759896945
Iteration: 15, Func. Count: 111, Neg. LLF: 159.4793518395581
Iteration: 16, Func. Count: 118, Neg. LLF: 159.47934971776166
Iteration: 17, Func. Count: 124, Neg. LLF: 159.479349717782
Optimization terminated successfully (Exit mode 0)
Current function value: 159.47934971776166
Iterations: 17
Function evaluations: 124
Gradient evaluations: 17
Iteration: 1, Func. Count: 9, Neg. LLF: 2212.708312030191
Iteration: 2, Func. Count: 19, Neg. LLF: 162.2282992992976
Iteration: 3, Func. Count: 28, Neg. LLF: 156.99131362768586
Iteration: 4, Func. Count: 36, Neg. LLF: 156.85105936867
Iteration: 5, Func. Count: 44, Neg. LLF: 156.6970627992011
Iteration: 6, Func. Count: 52, Neg. LLF: 156.66388676048004
Iteration: 7, Func. Count: 60, Neg. LLF: 156.66276446016457
Iteration: 8, Func. Count: 68, Neg. LLF: 156.66267635394343
Iteration: 9, Func. Count: 76, Neg. LLF: 156.66266071077987
Iteration: 10, Func. Count: 84, Neg. LLF: 156.66265031532828
Iteration: 11, Func. Count: 91, Neg. LLF: 156.6626503156205
Optimization terminated successfully (Exit mode 0)
Current function value: 156.66265031532828
Iterations: 11
Function evaluations: 91
Gradient evaluations: 11
Iteration: 1, Func. Count: 10, Neg. LLF: 20109133.04638971
Iteration: 2, Func. Count: 21, Neg. LLF: 164.25025489734116
Iteration: 3, Func. Count: 31, Neg. LLF: 156.9759754104842
Iteration: 4, Func. Count: 40, Neg. LLF: 156.8899372926327
Iteration: 5, Func. Count: 49, Neg. LLF: 156.7293434578455
Iteration: 6, Func. Count: 58, Neg. LLF: 157.52579049592637
Iteration: 7, Func. Count: 68, Neg. LLF: 157.0163894071592
Iteration: 8, Func. Count: 78, Neg. LLF: 156.6398048816388
Iteration: 9, Func. Count: 87, Neg. LLF: 156.6451255347533
Iteration: 10, Func. Count: 97, Neg. LLF: 156.61086310952976
Iteration: 11, Func. Count: 106, Neg. LLF: 156.60854854191615
Iteration: 12, Func. Count: 115, Neg. LLF: 156.6083769964173
Iteration: 13, Func. Count: 124, Neg. LLF: 156.60832920081893
Iteration: 14, Func. Count: 133, Neg. LLF: 156.60827241381506
Iteration: 15, Func. Count: 142, Neg. LLF: 156.6082489117714
Iteration: 16, Func. Count: 151, Neg. LLF: 156.6082428383804
Iteration: 17, Func. Count: 159, Neg. LLF: 156.6082428383849
Optimization terminated successfully (Exit mode 0)
Current function value: 156.6082428383804
Iterations: 17
Function evaluations: 159
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 414.6463983653909
Iteration: 2, Func. Count: 23, Neg. LLF: 176.0011102455263
Iteration: 3, Func. Count: 34, Neg. LLF: 160.1895808785629
Iteration: 4, Func. Count: 45, Neg. LLF: 157.0132685607507
Iteration: 5, Func. Count: 55, Neg. LLF: 157.09859489696487
Iteration: 6, Func. Count: 66, Neg. LLF: 157.1028826986187
Iteration: 7, Func. Count: 77, Neg. LLF: 156.78428695978644
Iteration: 8, Func. Count: 87, Neg. LLF: 156.67531012595654
Iteration: 9, Func. Count: 97, Neg. LLF: 156.6323479731312
Iteration: 10, Func. Count: 107, Neg. LLF: 156.61778503959684
Iteration: 11, Func. Count: 117, Neg. LLF: 156.61202792274085
Iteration: 12, Func. Count: 127, Neg. LLF: 156.60924357889414
Iteration: 13, Func. Count: 137, Neg. LLF: 156.60837414150885
Iteration: 14, Func. Count: 147, Neg. LLF: 156.6082560707837
Iteration: 15, Func. Count: 157, Neg. LLF: 156.60824351861112
Iteration: 16, Func. Count: 167, Neg. LLF: 156.6082424800307
Iteration: 17, Func. Count: 176, Neg. LLF: 156.60824251671625
Optimization terminated successfully (Exit mode 0)
Current function value: 156.6082424800307
Iterations: 17
Function evaluations: 176
Gradient evaluations: 17
Iteration: 1, Func. Count: 12, Neg. LLF: 390.6625281984719
Iteration: 2, Func. Count: 24, Neg. LLF: 175.80007790450676
Iteration: 3, Func. Count: 36, Neg. LLF: 157.73741859879615
Iteration: 4, Func. Count: 47, Neg. LLF: 156.93725498586454
Iteration: 5, Func. Count: 58, Neg. LLF: 157.3491841426636
Iteration: 6, Func. Count: 71, Neg. LLF: 156.69218092061413
Iteration: 7, Func. Count: 82, Neg. LLF: 156.63316425061754
Iteration: 8, Func. Count: 93, Neg. LLF: 156.61151157446446
Iteration: 9, Func. Count: 104, Neg. LLF: 156.6090633865453
Iteration: 10, Func. Count: 115, Neg. LLF: 156.6084456148542
Iteration: 11, Func. Count: 126, Neg. LLF: 156.6083281487624
Iteration: 12, Func. Count: 137, Neg. LLF: 156.6082516587633
Iteration: 13, Func. Count: 148, Neg. LLF: 156.60824349359262
Iteration: 14, Func. Count: 159, Neg. LLF: 156.60824249137536
Iteration: 15, Func. Count: 169, Neg. LLF: 156.6082425293482
Optimization terminated successfully (Exit mode 0)
Current function value: 156.60824249137536
Iterations: 15
Function evaluations: 169
Gradient evaluations: 15
Iteration: 1, Func. Count: 9, Neg. LLF: 166.7277719396807
Iteration: 2, Func. Count: 18, Neg. LLF: 160.91505874955766
Iteration: 3, Func. Count: 27, Neg. LLF: 162.1805548883114
Iteration: 4, Func. Count: 36, Neg. LLF: 162.04022805986548
Iteration: 5, Func. Count: 45, Neg. LLF: 165.97699916082217
Iteration: 6, Func. Count: 55, Neg. LLF: 159.5172116855732
Iteration: 7, Func. Count: 63, Neg. LLF: 159.30767441761245
Iteration: 8, Func. Count: 71, Neg. LLF: 159.27096679115115
Iteration: 9, Func. Count: 79, Neg. LLF: 159.262521260501
Iteration: 10, Func. Count: 87, Neg. LLF: 159.24937234397908
Iteration: 11, Func. Count: 95, Neg. LLF: 159.22858905769183
Iteration: 12, Func. Count: 103, Neg. LLF: 159.19852881633705
Iteration: 13, Func. Count: 111, Neg. LLF: 159.17887353288552
Iteration: 14, Func. Count: 119, Neg. LLF: 159.1740816262551
Iteration: 15, Func. Count: 127, Neg. LLF: 159.1734107556331
Iteration: 16, Func. Count: 135, Neg. LLF: 159.17336395454768
Iteration: 17, Func. Count: 143, Neg. LLF: 159.17335967130035
Iteration: 18, Func. Count: 150, Neg. LLF: 159.17335967133894
Optimization terminated successfully (Exit mode 0)
Current function value: 159.17335967130035
Iterations: 18
Function evaluations: 150
Gradient evaluations: 18
Iteration: 1, Func. Count: 10, Neg. LLF: 3797.9534627022776
Iteration: 2, Func. Count: 21, Neg. LLF: 176.260457563567
Iteration: 3, Func. Count: 31, Neg. LLF: 156.77796745250006
Iteration: 4, Func. Count: 41, Neg. LLF: 156.09947833300518
Iteration: 5, Func. Count: 50, Neg. LLF: 155.9156557904451
Iteration: 6, Func. Count: 59, Neg. LLF: 155.91012700534
Iteration: 7, Func. Count: 68, Neg. LLF: 155.90381629587984
Iteration: 8, Func. Count: 77, Neg. LLF: 155.90223899509215
Iteration: 9, Func. Count: 86, Neg. LLF: 155.90171435825116
Iteration: 10, Func. Count: 95, Neg. LLF: 155.90169806848553
Iteration: 11, Func. Count: 103, Neg. LLF: 155.90169806866587
Optimization terminated successfully (Exit mode 0)
Current function value: 155.90169806848553
Iterations: 11
Function evaluations: 103
Gradient evaluations: 11
Iteration: 1, Func. Count: 11, Neg. LLF: 20179677.175336473
Iteration: 2, Func. Count: 23, Neg. LLF: 170.73020702878756
Iteration: 3, Func. Count: 34, Neg. LLF: 156.60576316374343
Iteration: 4, Func. Count: 44, Neg. LLF: 160.34598804687226
Iteration: 5, Func. Count: 55, Neg. LLF: 155.91791586564457
Iteration: 6, Func. Count: 65, Neg. LLF: 155.91052270955132
Iteration: 7, Func. Count: 75, Neg. LLF: 155.9044158773916
Iteration: 8, Func. Count: 85, Neg. LLF: 155.9028313107891
Iteration: 9, Func. Count: 95, Neg. LLF: 155.90177198235853
Iteration: 10, Func. Count: 105, Neg. LLF: 155.90170144505313
Iteration: 11, Func. Count: 115, Neg. LLF: 155.9016977472131
Iteration: 12, Func. Count: 124, Neg. LLF: 155.9016977793955
Optimization terminated successfully (Exit mode 0)
Current function value: 155.9016977472131
Iterations: 12
Function evaluations: 124
Gradient evaluations: 12
Iteration: 1, Func. Count: 12, Neg. LLF: 418.3283337049472
Iteration: 2, Func. Count: 24, Neg. LLF: 211.63849848457016
Iteration: 3, Func. Count: 36, Neg. LLF: 158.14670475433482
Iteration: 4, Func. Count: 48, Neg. LLF: 157.58509376730103
Iteration: 5, Func. Count: 60, Neg. LLF: 157.59388870893483
Iteration: 6, Func. Count: 72, Neg. LLF: 156.8666118058507
Iteration: 7, Func. Count: 83, Neg. LLF: 156.42374135480486
Iteration: 8, Func. Count: 94, Neg. LLF: 156.27186926401566
Iteration: 9, Func. Count: 105, Neg. LLF: 156.13759903731713
Iteration: 10, Func. Count: 116, Neg. LLF: 156.0135770687866
Iteration: 11, Func. Count: 127, Neg. LLF: 155.95598290305543
Iteration: 12, Func. Count: 138, Neg. LLF: 155.929268344656
Iteration: 13, Func. Count: 149, Neg. LLF: 155.91591256310738
Iteration: 14, Func. Count: 160, Neg. LLF: 155.90269212705962
Iteration: 15, Func. Count: 171, Neg. LLF: 155.9017426532208
Iteration: 16, Func. Count: 182, Neg. LLF: 155.90169849313
Iteration: 17, Func. Count: 193, Neg. LLF: 155.90169760319677
Optimization terminated successfully (Exit mode 0)
Current function value: 155.90169760319677
Iterations: 17
Function evaluations: 193
Gradient evaluations: 17
Iteration: 1, Func. Count: 13, Neg. LLF: 392.5942665833762
Iteration: 2, Func. Count: 26, Neg. LLF: 180.6060686797979
Iteration: 3, Func. Count: 39, Neg. LLF: 164.22979244597246
Iteration: 4, Func. Count: 52, Neg. LLF: 157.49226165977322
Iteration: 5, Func. Count: 64, Neg. LLF: 157.16239900669643
Iteration: 6, Func. Count: 76, Neg. LLF: 161.3649264202829
Iteration: 7, Func. Count: 89, Neg. LLF: 157.02151419690605
Iteration: 8, Func. Count: 101, Neg. LLF: 157.02570131710343
Iteration: 9, Func. Count: 114, Neg. LLF: 156.99668660655547
Iteration: 10, Func. Count: 126, Neg. LLF: 156.9898644483854
Iteration: 11, Func. Count: 138, Neg. LLF: 156.9895961456446
Iteration: 12, Func. Count: 150, Neg. LLF: 156.98948266869635
Iteration: 13, Func. Count: 162, Neg. LLF: 156.98937338199917
Iteration: 14, Func. Count: 174, Neg. LLF: 156.98936493800713
Iteration: 15, Func. Count: 185, Neg. LLF: 156.98936497858259
Optimization terminated successfully (Exit mode 0)
Current function value: 156.98936493800713
Iterations: 15
Function evaluations: 185
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 163.0516004919277
Iteration: 2, Func. Count: 20, Neg. LLF: 159.2062212069846
Iteration: 3, Func. Count: 30, Neg. LLF: 159.7915109645339
Iteration: 4, Func. Count: 41, Neg. LLF: 157.7193320791398
Iteration: 5, Func. Count: 51, Neg. LLF: 156.8853643933531
Iteration: 6, Func. Count: 60, Neg. LLF: 156.77510399809418
Iteration: 7, Func. Count: 69, Neg. LLF: 156.80091389576614
Iteration: 8, Func. Count: 79, Neg. LLF: 156.56707767066098
Iteration: 9, Func. Count: 88, Neg. LLF: 156.5199366088347
Iteration: 10, Func. Count: 97, Neg. LLF: 156.4831219522281
Iteration: 11, Func. Count: 106, Neg. LLF: 156.39002557781959
Iteration: 12, Func. Count: 115, Neg. LLF: 156.3252793068877
Iteration: 13, Func. Count: 124, Neg. LLF: 156.28742971920263
Iteration: 14, Func. Count: 133, Neg. LLF: 156.27004601880134
Iteration: 15, Func. Count: 142, Neg. LLF: 156.25901629780682
Iteration: 16, Func. Count: 151, Neg. LLF: 156.25092904302687
Iteration: 17, Func. Count: 160, Neg. LLF: 156.24875219450954
Iteration: 18, Func. Count: 169, Neg. LLF: 156.24852029868427
Iteration: 19, Func. Count: 178, Neg. LLF: 156.248504616847
Iteration: 20, Func. Count: 187, Neg. LLF: 156.2485039785754
Optimization terminated successfully (Exit mode 0)
Current function value: 156.2485039785754
Iterations: 20
Function evaluations: 187
Gradient evaluations: 20
Iteration: 1, Func. Count: 11, Neg. LLF: 4461.313442925808
Iteration: 2, Func. Count: 23, Neg. LLF: 180.95475447489596
Iteration: 3, Func. Count: 34, Neg. LLF: 157.20839626633716
Iteration: 4, Func. Count: 45, Neg. LLF: 154.76984609351572
Iteration: 5, Func. Count: 55, Neg. LLF: 157.19703929289818
Iteration: 6, Func. Count: 66, Neg. LLF: 154.6529622030981
Iteration: 7, Func. Count: 76, Neg. LLF: 154.6270966110018
Iteration: 8, Func. Count: 86, Neg. LLF: 154.61166387594398
Iteration: 9, Func. Count: 96, Neg. LLF: 154.60084233373954
Iteration: 10, Func. Count: 106, Neg. LLF: 154.59254929767505
Iteration: 11, Func. Count: 116, Neg. LLF: 154.5833596816647
Iteration: 12, Func. Count: 126, Neg. LLF: 154.57493954507123
Iteration: 13, Func. Count: 136, Neg. LLF: 154.56968337007459
Iteration: 14, Func. Count: 146, Neg. LLF: 154.567771392451
Iteration: 15, Func. Count: 156, Neg. LLF: 154.56746721930952
Iteration: 16, Func. Count: 166, Neg. LLF: 154.5674471750019
Iteration: 17, Func. Count: 176, Neg. LLF: 154.5674461574191
Iteration: 18, Func. Count: 185, Neg. LLF: 154.567446157415
Optimization terminated successfully (Exit mode 0)
Current function value: 154.5674461574191
Iterations: 18
Function evaluations: 185
Gradient evaluations: 18
Iteration: 1, Func. Count: 12, Neg. LLF: 219.1707678721254
Iteration: 2, Func. Count: 24, Neg. LLF: 156.09126034044448
Iteration: 3, Func. Count: 36, Neg. LLF: 156.4596128044595
Iteration: 4, Func. Count: 48, Neg. LLF: 208.31135913562304
Iteration: 5, Func. Count: 60, Neg. LLF: 154.65892171968065
Iteration: 6, Func. Count: 71, Neg. LLF: 154.6580920864958
Iteration: 7, Func. Count: 83, Neg. LLF: 154.6053407724178
Iteration: 8, Func. Count: 94, Neg. LLF: 154.59452440768754
Iteration: 9, Func. Count: 105, Neg. LLF: 154.58601817243132
Iteration: 10, Func. Count: 116, Neg. LLF: 154.5746024144851
Iteration: 11, Func. Count: 127, Neg. LLF: 154.56901958685862
Iteration: 12, Func. Count: 138, Neg. LLF: 154.5676345999109
Iteration: 13, Func. Count: 149, Neg. LLF: 154.5674893012817
Iteration: 14, Func. Count: 160, Neg. LLF: 154.56745743654113
Iteration: 15, Func. Count: 171, Neg. LLF: 154.56744697345061
Iteration: 16, Func. Count: 182, Neg. LLF: 154.56744611569783
Optimization terminated successfully (Exit mode 0)
Current function value: 154.56744611569783
Iterations: 16
Function evaluations: 182
Gradient evaluations: 16
Iteration: 1, Func. Count: 13, Neg. LLF: 422.2755315353946
Iteration: 2, Func. Count: 26, Neg. LLF: 4591757.974658351
Iteration: 3, Func. Count: 39, Neg. LLF: 178.04843217375344
Iteration: 4, Func. Count: 52, Neg. LLF: 155.6185494761001
Iteration: 5, Func. Count: 64, Neg. LLF: 154.85879565191277
Iteration: 6, Func. Count: 76, Neg. LLF: 154.7540789551564
Iteration: 7, Func. Count: 88, Neg. LLF: 154.68584817247552
Iteration: 8, Func. Count: 100, Neg. LLF: 154.60918812217474
Iteration: 9, Func. Count: 112, Neg. LLF: 154.58143666767074
Iteration: 10, Func. Count: 124, Neg. LLF: 154.5708202126446
Iteration: 11, Func. Count: 136, Neg. LLF: 154.567879928964
Iteration: 12, Func. Count: 148, Neg. LLF: 154.56749065386816
Iteration: 13, Func. Count: 160, Neg. LLF: 154.5674517318754
Iteration: 14, Func. Count: 172, Neg. LLF: 154.56744707248424
Iteration: 15, Func. Count: 184, Neg. LLF: 154.5674462837278
Optimization terminated successfully (Exit mode 0)
Current function value: 154.5674462837278
Iterations: 15
Function evaluations: 184
Gradient evaluations: 15
Iteration: 1, Func. Count: 14, Neg. LLF: 201.55150333778667
Iteration: 2, Func. Count: 28, Neg. LLF: 343.3309526051967
Iteration: 3, Func. Count: 42, Neg. LLF: 162.69317857033272
Iteration: 4, Func. Count: 56, Neg. LLF: 154.83635353440184
Iteration: 5, Func. Count: 69, Neg. LLF: 156.33865091173922
Iteration: 6, Func. Count: 83, Neg. LLF: 155.66321816456158
Iteration: 7, Func. Count: 98, Neg. LLF: 154.59464816107106
Iteration: 8, Func. Count: 111, Neg. LLF: 154.58902208699487
Iteration: 9, Func. Count: 124, Neg. LLF: 154.58386913040835
Iteration: 10, Func. Count: 137, Neg. LLF: 154.57931787825095
Iteration: 11, Func. Count: 150, Neg. LLF: 154.57130006482225
Iteration: 12, Func. Count: 163, Neg. LLF: 154.56821699357812
Iteration: 13, Func. Count: 176, Neg. LLF: 154.56753269498878
Iteration: 14, Func. Count: 189, Neg. LLF: 154.56744867701508
Iteration: 15, Func. Count: 202, Neg. LLF: 154.56744620734722
Iteration: 16, Func. Count: 214, Neg. LLF: 154.56744625532636
Optimization terminated successfully (Exit mode 0)
Current function value: 154.56744620734722
Iterations: 16
Function evaluations: 214
Gradient evaluations: 16
Iteration: 1, Func. Count: 7, Neg. LLF: 164.8301660102883
Iteration: 2, Func. Count: 14, Neg. LLF: 164.3757155760374
Iteration: 3, Func. Count: 22, Neg. LLF: 162.54525066522334
Iteration: 4, Func. Count: 28, Neg. LLF: 162.50545734196723
Iteration: 5, Func. Count: 34, Neg. LLF: 162.4977102189751
Iteration: 6, Func. Count: 40, Neg. LLF: 162.49649023631528
Iteration: 7, Func. Count: 46, Neg. LLF: 162.49457389406479
Iteration: 8, Func. Count: 52, Neg. LLF: 162.49171415830858
Iteration: 9, Func. Count: 58, Neg. LLF: 162.4846459229836
Iteration: 10, Func. Count: 64, Neg. LLF: 162.47617356352288
Iteration: 11, Func. Count: 70, Neg. LLF: 162.4715459068541
Iteration: 12, Func. Count: 76, Neg. LLF: 162.4710509901116
Iteration: 13, Func. Count: 82, Neg. LLF: 162.47101227425767
Iteration: 14, Func. Count: 88, Neg. LLF: 162.4710087833304
Iteration: 15, Func. Count: 93, Neg. LLF: 162.47100887216348
Optimization terminated successfully (Exit mode 0)
Current function value: 162.4710087833304
Iterations: 15
Function evaluations: 93
Gradient evaluations: 15
Iteration: 1, Func. Count: 8, Neg. LLF: 20615778.85998991
Iteration: 2, Func. Count: 17, Neg. LLF: 178.22532087587584
Iteration: 3, Func. Count: 25, Neg. LLF: 160.2977636456777
Iteration: 4, Func. Count: 33, Neg. LLF: 159.7810905165282
Iteration: 5, Func. Count: 40, Neg. LLF: 159.7560482637052
Iteration: 6, Func. Count: 47, Neg. LLF: 159.75380643896284
Iteration: 7, Func. Count: 54, Neg. LLF: 159.7535595932235
Iteration: 8, Func. Count: 61, Neg. LLF: 159.75344332241772
Iteration: 9, Func. Count: 68, Neg. LLF: 159.75342788875162
Iteration: 10, Func. Count: 74, Neg. LLF: 159.75342788878038
Optimization terminated successfully (Exit mode 0)
Current function value: 159.75342788875162
Iterations: 10
Function evaluations: 74
Gradient evaluations: 10
Iteration: 1, Func. Count: 9, Neg. LLF: 1342.309144290539
Iteration: 2, Func. Count: 19, Neg. LLF: 3832.5339813661562
Iteration: 3, Func. Count: 29, Neg. LLF: 161.16523046141754
Iteration: 4, Func. Count: 38, Neg. LLF: 159.77567325017054
Iteration: 5, Func. Count: 46, Neg. LLF: 160.2055330740046
Iteration: 6, Func. Count: 55, Neg. LLF: 159.75456831742417
Iteration: 7, Func. Count: 63, Neg. LLF: 159.75397997329114
Iteration: 8, Func. Count: 71, Neg. LLF: 159.75342985848394
Iteration: 9, Func. Count: 79, Neg. LLF: 159.75342761326215
Iteration: 10, Func. Count: 86, Neg. LLF: 159.75342763944673
Optimization terminated successfully (Exit mode 0)
Current function value: 159.75342761326215
Iterations: 10
Function evaluations: 86
Gradient evaluations: 10
Iteration: 1, Func. Count: 10, Neg. LLF: 373.1605722765428
Iteration: 2, Func. Count: 21, Neg. LLF: 233.29714563433285
Iteration: 3, Func. Count: 32, Neg. LLF: 161.44795106079957
Iteration: 4, Func. Count: 42, Neg. LLF: 160.4397103113986
Iteration: 5, Func. Count: 51, Neg. LLF: 159.77055952543407
Iteration: 6, Func. Count: 60, Neg. LLF: 160.57470191540733
Iteration: 7, Func. Count: 71, Neg. LLF: 160.10209428832104
Iteration: 8, Func. Count: 81, Neg. LLF: 159.224417000488
Iteration: 9, Func. Count: 90, Neg. LLF: 159.09556644074368
Iteration: 10, Func. Count: 99, Neg. LLF: 158.86297240261732
Iteration: 11, Func. Count: 108, Neg. LLF: 158.65883738072617
Iteration: 12, Func. Count: 117, Neg. LLF: 158.3995406123781
Iteration: 13, Func. Count: 126, Neg. LLF: 158.39012526232537
Iteration: 14, Func. Count: 136, Neg. LLF: 158.36674602193582
Iteration: 15, Func. Count: 145, Neg. LLF: 158.36665666445532
Iteration: 16, Func. Count: 154, Neg. LLF: 158.36665399758124
Iteration: 17, Func. Count: 162, Neg. LLF: 158.3666539975068
Optimization terminated successfully (Exit mode 0)
Current function value: 158.36665399758124
Iterations: 17
Function evaluations: 162
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 373.5433282558977
Iteration: 2, Func. Count: 23, Neg. LLF: 10348.156000727973
Iteration: 3, Func. Count: 35, Neg. LLF: 164.83815383001692
Iteration: 4, Func. Count: 46, Neg. LLF: 161.92309769140897
Iteration: 5, Func. Count: 57, Neg. LLF: 160.37650910440834
Iteration: 6, Func. Count: 67, Neg. LLF: 160.1436496608816
Iteration: 7, Func. Count: 77, Neg. LLF: 163.92757549425866
Iteration: 8, Func. Count: 89, Neg. LLF: 159.39167191279682
Iteration: 9, Func. Count: 99, Neg. LLF: 159.13360914513876
Iteration: 10, Func. Count: 109, Neg. LLF: 164.82563704118672
Iteration: 11, Func. Count: 120, Neg. LLF: 158.98328981285286
Iteration: 12, Func. Count: 130, Neg. LLF: 158.6489838032235
Iteration: 13, Func. Count: 140, Neg. LLF: 158.54983158052946
Iteration: 14, Func. Count: 150, Neg. LLF: 158.38218524736936
Iteration: 15, Func. Count: 160, Neg. LLF: 158.37379711270253
Iteration: 16, Func. Count: 170, Neg. LLF: 158.3711931406747
Iteration: 17, Func. Count: 180, Neg. LLF: 158.36732429332844
Iteration: 18, Func. Count: 190, Neg. LLF: 158.36673155129273
Iteration: 19, Func. Count: 200, Neg. LLF: 158.3666545831646
Iteration: 20, Func. Count: 210, Neg. LLF: 158.366653915396
Optimization terminated successfully (Exit mode 0)
Current function value: 158.366653915396
Iterations: 20
Function evaluations: 210
Gradient evaluations: 20
Iteration: 1, Func. Count: 8, Neg. LLF: 165.55335512368111
Iteration: 2, Func. Count: 16, Neg. LLF: 161.79345289426368
Iteration: 3, Func. Count: 24, Neg. LLF: 163.6048940040095
Iteration: 4, Func. Count: 34, Neg. LLF: 166.61728461752617
Iteration: 5, Func. Count: 42, Neg. LLF: 160.59009413231414
Iteration: 6, Func. Count: 49, Neg. LLF: 160.54894617744006
Iteration: 7, Func. Count: 56, Neg. LLF: 160.53753248258158
Iteration: 8, Func. Count: 63, Neg. LLF: 160.5366417514092
Iteration: 9, Func. Count: 70, Neg. LLF: 160.53644449762555
Iteration: 10, Func. Count: 77, Neg. LLF: 160.53630820258329
Iteration: 11, Func. Count: 84, Neg. LLF: 160.5360734636831
Iteration: 12, Func. Count: 91, Neg. LLF: 160.53564216800604
Iteration: 13, Func. Count: 98, Neg. LLF: 160.53488424182328
Iteration: 14, Func. Count: 105, Neg. LLF: 160.534112703124
Iteration: 15, Func. Count: 112, Neg. LLF: 160.53373033117643
Iteration: 16, Func. Count: 119, Neg. LLF: 160.5336584894227
Iteration: 17, Func. Count: 126, Neg. LLF: 160.53365610921458
Iteration: 18, Func. Count: 132, Neg. LLF: 160.53365610921287
Optimization terminated successfully (Exit mode 0)
Current function value: 160.53365610921458
Iterations: 18
Function evaluations: 132
Gradient evaluations: 18
Iteration: 1, Func. Count: 9, Neg. LLF: 1626.0993517613963
Iteration: 2, Func. Count: 19, Neg. LLF: 160.07035679262725
Iteration: 3, Func. Count: 28, Neg. LLF: 157.45303354988266
Iteration: 4, Func. Count: 37, Neg. LLF: 157.37844864957123
Iteration: 5, Func. Count: 46, Neg. LLF: 157.15042148901284
Iteration: 6, Func. Count: 54, Neg. LLF: 157.14980425383285
Iteration: 7, Func. Count: 62, Neg. LLF: 157.1496127065882
Iteration: 8, Func. Count: 70, Neg. LLF: 157.1496106192179
Iteration: 9, Func. Count: 77, Neg. LLF: 157.1496106190559
Optimization terminated successfully (Exit mode 0)
Current function value: 157.1496106192179
Iterations: 9
Function evaluations: 77
Gradient evaluations: 9
Iteration: 1, Func. Count: 10, Neg. LLF: 20135663.385663867
Iteration: 2, Func. Count: 21, Neg. LLF: 163.35931664210872
Iteration: 3, Func. Count: 31, Neg. LLF: 157.5202926748926
Iteration: 4, Func. Count: 40, Neg. LLF: 158.21845875040833
Iteration: 5, Func. Count: 50, Neg. LLF: 157.1651674880839
Iteration: 6, Func. Count: 59, Neg. LLF: 157.15216478471135
Iteration: 7, Func. Count: 68, Neg. LLF: 157.15007387645653
Iteration: 8, Func. Count: 77, Neg. LLF: 157.1496130169288
Iteration: 9, Func. Count: 86, Neg. LLF: 157.14961051865757
Iteration: 10, Func. Count: 94, Neg. LLF: 157.14961052732735
Optimization terminated successfully (Exit mode 0)
Current function value: 157.14961051865757
Iterations: 10
Function evaluations: 94
Gradient evaluations: 10
Iteration: 1, Func. Count: 11, Neg. LLF: 415.35203304123297
Iteration: 2, Func. Count: 23, Neg. LLF: 190.3086534077608
Iteration: 3, Func. Count: 34, Neg. LLF: 158.41546024082461
Iteration: 4, Func. Count: 45, Neg. LLF: 157.4319616412451
Iteration: 5, Func. Count: 55, Neg. LLF: 157.3470553243855
Iteration: 6, Func. Count: 65, Neg. LLF: 157.29948542375672
Iteration: 7, Func. Count: 75, Neg. LLF: 157.26839706145844
Iteration: 8, Func. Count: 85, Neg. LLF: 157.21691737597573
Iteration: 9, Func. Count: 95, Neg. LLF: 157.16224558803438
Iteration: 10, Func. Count: 105, Neg. LLF: 157.1586660525149
Iteration: 11, Func. Count: 115, Neg. LLF: 157.1509075168099
Iteration: 12, Func. Count: 125, Neg. LLF: 157.15122672958287
Iteration: 13, Func. Count: 136, Neg. LLF: 157.14966790106257
Iteration: 14, Func. Count: 146, Neg. LLF: 157.14961128243596
Iteration: 15, Func. Count: 156, Neg. LLF: 157.1496106476816
Optimization terminated successfully (Exit mode 0)
Current function value: 157.1496106476816
Iterations: 15
Function evaluations: 156
Gradient evaluations: 15
Iteration: 1, Func. Count: 12, Neg. LLF: 416.22543388339375
Iteration: 2, Func. Count: 24, Neg. LLF: 200.2764656252167
Iteration: 3, Func. Count: 36, Neg. LLF: 157.8273026480096
Iteration: 4, Func. Count: 47, Neg. LLF: 157.51917334670617
Iteration: 5, Func. Count: 58, Neg. LLF: 157.3424255464436
Iteration: 6, Func. Count: 69, Neg. LLF: 157.30788258091752
Iteration: 7, Func. Count: 80, Neg. LLF: 157.27889077026228
Iteration: 8, Func. Count: 91, Neg. LLF: 157.23024882289977
Iteration: 9, Func. Count: 102, Neg. LLF: 157.17183492977165
Iteration: 10, Func. Count: 113, Neg. LLF: 157.15972949285361
Iteration: 11, Func. Count: 124, Neg. LLF: 157.15144275102585
Iteration: 12, Func. Count: 135, Neg. LLF: 157.14969693593372
Iteration: 13, Func. Count: 146, Neg. LLF: 157.14965906430422
Iteration: 14, Func. Count: 157, Neg. LLF: 157.14961049278395
Iteration: 15, Func. Count: 167, Neg. LLF: 157.1496105598766
Optimization terminated successfully (Exit mode 0)
Current function value: 157.14961049278395
Iterations: 15
Function evaluations: 167
Gradient evaluations: 15
Iteration: 1, Func. Count: 9, Neg. LLF: 167.2395463436609
Iteration: 2, Func. Count: 18, Neg. LLF: 161.02758196077593
Iteration: 3, Func. Count: 27, Neg. LLF: 161.2088950762877
Iteration: 4, Func. Count: 36, Neg. LLF: 159.92453932816952
Iteration: 5, Func. Count: 44, Neg. LLF: 161.520695386391
Iteration: 6, Func. Count: 53, Neg. LLF: 159.7958897367884
Iteration: 7, Func. Count: 62, Neg. LLF: 159.59967907731362
Iteration: 8, Func. Count: 71, Neg. LLF: 159.48661786231224
Iteration: 9, Func. Count: 79, Neg. LLF: 159.48519353110748
Iteration: 10, Func. Count: 87, Neg. LLF: 159.48467947902915
Iteration: 11, Func. Count: 95, Neg. LLF: 159.48203185276793
Iteration: 12, Func. Count: 103, Neg. LLF: 159.48006280552536
Iteration: 13, Func. Count: 111, Neg. LLF: 159.47961224947278
Iteration: 14, Func. Count: 119, Neg. LLF: 159.47935541391553
Iteration: 15, Func. Count: 127, Neg. LLF: 159.47934980280723
Iteration: 16, Func. Count: 134, Neg. LLF: 159.47934980280823
Optimization terminated successfully (Exit mode 0)
Current function value: 159.47934980280723
Iterations: 16
Function evaluations: 134
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 2353.4088504989154
Iteration: 2, Func. Count: 21, Neg. LLF: 162.06785757266127
Iteration: 3, Func. Count: 31, Neg. LLF: 156.98934241512413
Iteration: 4, Func. Count: 40, Neg. LLF: 156.84782914908618
Iteration: 5, Func. Count: 49, Neg. LLF: 156.69619714341684
Iteration: 6, Func. Count: 58, Neg. LLF: 156.66384149713298
Iteration: 7, Func. Count: 67, Neg. LLF: 156.6627680549137
Iteration: 8, Func. Count: 76, Neg. LLF: 156.66267835154048
Iteration: 9, Func. Count: 85, Neg. LLF: 156.66266113227053
Iteration: 10, Func. Count: 94, Neg. LLF: 156.6626503548332
Iteration: 11, Func. Count: 102, Neg. LLF: 156.66265035513842
Optimization terminated successfully (Exit mode 0)
Current function value: 156.6626503548332
Iterations: 11
Function evaluations: 102
Gradient evaluations: 11
Iteration: 1, Func. Count: 11, Neg. LLF: 20115684.317598503
Iteration: 2, Func. Count: 23, Neg. LLF: 164.68462733557917
Iteration: 3, Func. Count: 34, Neg. LLF: 156.9827847026003
Iteration: 4, Func. Count: 44, Neg. LLF: 156.90792628380046
Iteration: 5, Func. Count: 54, Neg. LLF: 156.77644663502986
Iteration: 6, Func. Count: 64, Neg. LLF: 156.82665853521164
Iteration: 7, Func. Count: 75, Neg. LLF: 157.59701263700305
Iteration: 8, Func. Count: 86, Neg. LLF: 156.76028847954194
Iteration: 9, Func. Count: 97, Neg. LLF: 156.86323929806656
Iteration: 10, Func. Count: 108, Neg. LLF: 156.63513407657786
Iteration: 11, Func. Count: 118, Neg. LLF: 156.61192647929377
Iteration: 12, Func. Count: 128, Neg. LLF: 156.61002893542246
Iteration: 13, Func. Count: 138, Neg. LLF: 156.60909793869263
Iteration: 14, Func. Count: 148, Neg. LLF: 156.60869615480797
Iteration: 15, Func. Count: 158, Neg. LLF: 156.60844083888085
Iteration: 16, Func. Count: 168, Neg. LLF: 156.60827683284134
Iteration: 17, Func. Count: 178, Neg. LLF: 156.60824530214822
Iteration: 18, Func. Count: 188, Neg. LLF: 156.60824254321244
Iteration: 19, Func. Count: 197, Neg. LLF: 156.60824254322955
Optimization terminated successfully (Exit mode 0)
Current function value: 156.60824254321244
Iterations: 19
Function evaluations: 197
Gradient evaluations: 19
Iteration: 1, Func. Count: 12, Neg. LLF: 415.2240962868563
Iteration: 2, Func. Count: 25, Neg. LLF: 174.64083431988584
Iteration: 3, Func. Count: 37, Neg. LLF: 160.60989623192032
Iteration: 4, Func. Count: 49, Neg. LLF: 157.05862392835047
Iteration: 5, Func. Count: 60, Neg. LLF: 157.20652306099802
Iteration: 6, Func. Count: 72, Neg. LLF: 156.9708678414691
Iteration: 7, Func. Count: 84, Neg. LLF: 156.75798574402174
Iteration: 8, Func. Count: 95, Neg. LLF: 156.65098231084133
Iteration: 9, Func. Count: 106, Neg. LLF: 156.62560801817298
Iteration: 10, Func. Count: 117, Neg. LLF: 156.61508694669922
Iteration: 11, Func. Count: 128, Neg. LLF: 156.61150644753187
Iteration: 12, Func. Count: 139, Neg. LLF: 156.60896866013982
Iteration: 13, Func. Count: 150, Neg. LLF: 156.6084590106369
Iteration: 14, Func. Count: 161, Neg. LLF: 156.6082543375858
Iteration: 15, Func. Count: 172, Neg. LLF: 156.60824374849605
Iteration: 16, Func. Count: 183, Neg. LLF: 156.60824249604013
Iteration: 17, Func. Count: 193, Neg. LLF: 156.6082425327435
Optimization terminated successfully (Exit mode 0)
Current function value: 156.60824249604013
Iterations: 17
Function evaluations: 193
Gradient evaluations: 17
Iteration: 1, Func. Count: 13, Neg. LLF: 415.9786086888206
Iteration: 2, Func. Count: 26, Neg. LLF: 172.7943499898618
Iteration: 3, Func. Count: 39, Neg. LLF: 158.0471747392046
Iteration: 4, Func. Count: 52, Neg. LLF: 157.15283683156727
Iteration: 5, Func. Count: 64, Neg. LLF: 157.59390245028882
Iteration: 6, Func. Count: 77, Neg. LLF: 156.99897360942182
Iteration: 7, Func. Count: 90, Neg. LLF: 156.6936287522527
Iteration: 8, Func. Count: 102, Neg. LLF: 156.63080042158768
Iteration: 9, Func. Count: 114, Neg. LLF: 156.61716254749993
Iteration: 10, Func. Count: 126, Neg. LLF: 156.61277873854544
Iteration: 11, Func. Count: 138, Neg. LLF: 156.610805115111
Iteration: 12, Func. Count: 150, Neg. LLF: 156.60928257460844
Iteration: 13, Func. Count: 162, Neg. LLF: 156.60847868819252
Iteration: 14, Func. Count: 174, Neg. LLF: 156.60825474054593
Iteration: 15, Func. Count: 186, Neg. LLF: 156.60824267452384
Iteration: 16, Func. Count: 197, Neg. LLF: 156.60824271245238
Optimization terminated successfully (Exit mode 0)
Current function value: 156.60824267452384
Iterations: 16
Function evaluations: 197
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 167.2231153528592
Iteration: 2, Func. Count: 20, Neg. LLF: 161.03300770510657
Iteration: 3, Func. Count: 30, Neg. LLF: 161.7767668295437
Iteration: 4, Func. Count: 40, Neg. LLF: 162.40961883724847
Iteration: 5, Func. Count: 50, Neg. LLF: 159.92113506743576
Iteration: 6, Func. Count: 60, Neg. LLF: 160.7790655349343
Iteration: 7, Func. Count: 70, Neg. LLF: 159.4301525594941
Iteration: 8, Func. Count: 79, Neg. LLF: 159.2862985527924
Iteration: 9, Func. Count: 88, Neg. LLF: 159.2716661660398
Iteration: 10, Func. Count: 97, Neg. LLF: 159.25403682078843
Iteration: 11, Func. Count: 106, Neg. LLF: 159.2474975632066
Iteration: 12, Func. Count: 115, Neg. LLF: 159.22115109573178
Iteration: 13, Func. Count: 124, Neg. LLF: 159.19629852973407
Iteration: 14, Func. Count: 133, Neg. LLF: 159.17890587117975
Iteration: 15, Func. Count: 142, Neg. LLF: 159.17385730480024
Iteration: 16, Func. Count: 151, Neg. LLF: 159.1733877207055
Iteration: 17, Func. Count: 160, Neg. LLF: 159.17336518342032
Iteration: 18, Func. Count: 169, Neg. LLF: 159.17335940350412
Iteration: 19, Func. Count: 177, Neg. LLF: 159.17335940349707
Optimization terminated successfully (Exit mode 0)
Current function value: 159.17335940350412
Iterations: 19
Function evaluations: 177
Gradient evaluations: 19
Iteration: 1, Func. Count: 11, Neg. LLF: 4206.63321680593
Iteration: 2, Func. Count: 23, Neg. LLF: 175.98132716614697
Iteration: 3, Func. Count: 34, Neg. LLF: 156.7729366976692
Iteration: 4, Func. Count: 45, Neg. LLF: 156.10413119953174
Iteration: 5, Func. Count: 55, Neg. LLF: 155.91533157134617
Iteration: 6, Func. Count: 65, Neg. LLF: 155.90981277717592
Iteration: 7, Func. Count: 75, Neg. LLF: 155.903911627934
Iteration: 8, Func. Count: 85, Neg. LLF: 155.90230655210124
Iteration: 9, Func. Count: 95, Neg. LLF: 155.90171661654827
Iteration: 10, Func. Count: 105, Neg. LLF: 155.90169808389155
Iteration: 11, Func. Count: 114, Neg. LLF: 155.90169808408373
Optimization terminated successfully (Exit mode 0)
Current function value: 155.90169808389155
Iterations: 11
Function evaluations: 114
Gradient evaluations: 11
Iteration: 1, Func. Count: 12, Neg. LLF: 20186963.779611822
Iteration: 2, Func. Count: 25, Neg. LLF: 170.94888626344246
Iteration: 3, Func. Count: 37, Neg. LLF: 156.61336378310764
Iteration: 4, Func. Count: 48, Neg. LLF: 160.697679586395
Iteration: 5, Func. Count: 60, Neg. LLF: 155.91797598879182
Iteration: 6, Func. Count: 71, Neg. LLF: 155.91055556659117
Iteration: 7, Func. Count: 82, Neg. LLF: 155.9045152489733
Iteration: 8, Func. Count: 93, Neg. LLF: 155.9027867018406
Iteration: 9, Func. Count: 104, Neg. LLF: 155.9017756831289
Iteration: 10, Func. Count: 115, Neg. LLF: 155.9017014932695
Iteration: 11, Func. Count: 126, Neg. LLF: 155.90169775355469
Iteration: 12, Func. Count: 136, Neg. LLF: 155.90169778574216
Optimization terminated successfully (Exit mode 0)
Current function value: 155.90169775355469
Iterations: 12
Function evaluations: 136
Gradient evaluations: 12
Iteration: 1, Func. Count: 13, Neg. LLF: 418.8244382631216
Iteration: 2, Func. Count: 26, Neg. LLF: 202.68305274686722
Iteration: 3, Func. Count: 39, Neg. LLF: 158.2160830186686
Iteration: 4, Func. Count: 52, Neg. LLF: 157.2647491737072
Iteration: 5, Func. Count: 64, Neg. LLF: 157.58524175287803
Iteration: 6, Func. Count: 77, Neg. LLF: 158.79820917990634
Iteration: 7, Func. Count: 90, Neg. LLF: 157.01425014421835
Iteration: 8, Func. Count: 102, Neg. LLF: 157.968169895274
Iteration: 9, Func. Count: 115, Neg. LLF: 156.80901953505722
Iteration: 10, Func. Count: 127, Neg. LLF: 156.76031868966152
Iteration: 11, Func. Count: 139, Neg. LLF: 156.73517666609484
Iteration: 12, Func. Count: 151, Neg. LLF: 156.72470407307685
Iteration: 13, Func. Count: 163, Neg. LLF: 156.71671671531087
Iteration: 14, Func. Count: 175, Neg. LLF: 156.71094970027403
Iteration: 15, Func. Count: 187, Neg. LLF: 156.70887174821922
Iteration: 16, Func. Count: 199, Neg. LLF: 156.7079295997675
Iteration: 17, Func. Count: 211, Neg. LLF: 156.7077696890561
Iteration: 18, Func. Count: 223, Neg. LLF: 156.70768341284554
Iteration: 19, Func. Count: 235, Neg. LLF: 156.7076027077742
Iteration: 20, Func. Count: 247, Neg. LLF: 156.70757415282844
Iteration: 21, Func. Count: 259, Neg. LLF: 156.70757031220714
Iteration: 22, Func. Count: 270, Neg. LLF: 156.70757031220862
Optimization terminated successfully (Exit mode 0)
Current function value: 156.70757031220714
Iterations: 22
Function evaluations: 270
Gradient evaluations: 22
Iteration: 1, Func. Count: 14, Neg. LLF: 417.9102116835195
Iteration: 2, Func. Count: 28, Neg. LLF: 176.3842677994224
Iteration: 3, Func. Count: 42, Neg. LLF: 164.08315520111972
Iteration: 4, Func. Count: 56, Neg. LLF: 157.37415793991437
Iteration: 5, Func. Count: 69, Neg. LLF: 157.1003165137556
Iteration: 6, Func. Count: 82, Neg. LLF: 157.80117977751888
Iteration: 7, Func. Count: 96, Neg. LLF: 156.83860137482927
Iteration: 8, Func. Count: 109, Neg. LLF: 156.7925017167117
Iteration: 9, Func. Count: 122, Neg. LLF: 157.16012230425372
Iteration: 10, Func. Count: 136, Neg. LLF: 156.73207114045152
Iteration: 11, Func. Count: 149, Neg. LLF: 156.7130326424416
Iteration: 12, Func. Count: 162, Neg. LLF: 156.71077119902827
Iteration: 13, Func. Count: 175, Neg. LLF: 156.7091706938981
Iteration: 14, Func. Count: 188, Neg. LLF: 156.7082545769651
Iteration: 15, Func. Count: 201, Neg. LLF: 156.70772216585348
Iteration: 16, Func. Count: 214, Neg. LLF: 156.70758244886642
Iteration: 17, Func. Count: 227, Neg. LLF: 156.70757550376675
Iteration: 18, Func. Count: 240, Neg. LLF: 156.70757298858243
Iteration: 19, Func. Count: 253, Neg. LLF: 156.70757099301932
Iteration: 20, Func. Count: 266, Neg. LLF: 156.70757031006485
Optimization terminated successfully (Exit mode 0)
Current function value: 156.70757031006485
Iterations: 20
Function evaluations: 266
Gradient evaluations: 20
Iteration: 1, Func. Count: 11, Neg. LLF: 163.75919393306057
Iteration: 2, Func. Count: 22, Neg. LLF: 159.65349413967692
Iteration: 3, Func. Count: 33, Neg. LLF: 159.168201646728
Iteration: 4, Func. Count: 46, Neg. LLF: 157.3336640720088
Iteration: 5, Func. Count: 57, Neg. LLF: 156.70659521526076
Iteration: 6, Func. Count: 67, Neg. LLF: 162.08891305064333
Iteration: 7, Func. Count: 78, Neg. LLF: 156.59540908076926
Iteration: 8, Func. Count: 88, Neg. LLF: 156.54898905826488
Iteration: 9, Func. Count: 98, Neg. LLF: 156.5046829522545
Iteration: 10, Func. Count: 108, Neg. LLF: 156.44242701318143
Iteration: 11, Func. Count: 118, Neg. LLF: 156.31517051560442
Iteration: 12, Func. Count: 128, Neg. LLF: 156.29044777234324
Iteration: 13, Func. Count: 138, Neg. LLF: 156.27342847237267
Iteration: 14, Func. Count: 148, Neg. LLF: 156.25901684981645
Iteration: 15, Func. Count: 158, Neg. LLF: 156.251258375272
Iteration: 16, Func. Count: 168, Neg. LLF: 156.24879515002564
Iteration: 17, Func. Count: 178, Neg. LLF: 156.24851586475086
Iteration: 18, Func. Count: 188, Neg. LLF: 156.24850450087987
Iteration: 19, Func. Count: 198, Neg. LLF: 156.24850397383054
Optimization terminated successfully (Exit mode 0)
Current function value: 156.24850397383054
Iterations: 19
Function evaluations: 198
Gradient evaluations: 19
Iteration: 1, Func. Count: 12, Neg. LLF: 5004.827312906877
Iteration: 2, Func. Count: 25, Neg. LLF: 180.5272015608255
Iteration: 3, Func. Count: 37, Neg. LLF: 157.20904345443446
Iteration: 4, Func. Count: 49, Neg. LLF: 186.54283388904892
Iteration: 5, Func. Count: 61, Neg. LLF: 154.76117264403726
Iteration: 6, Func. Count: 72, Neg. LLF: 154.73433376479153
Iteration: 7, Func. Count: 84, Neg. LLF: 156.98373270127843
Iteration: 8, Func. Count: 96, Neg. LLF: 154.66381396438567
Iteration: 9, Func. Count: 107, Neg. LLF: 154.64670665749418
Iteration: 10, Func. Count: 118, Neg. LLF: 154.62541305271301
Iteration: 11, Func. Count: 129, Neg. LLF: 154.59535847114032
Iteration: 12, Func. Count: 140, Neg. LLF: 154.59098444849
Iteration: 13, Func. Count: 151, Neg. LLF: 154.5835915198381
Iteration: 14, Func. Count: 162, Neg. LLF: 154.57801721049205
Iteration: 15, Func. Count: 173, Neg. LLF: 154.57128211170158
Iteration: 16, Func. Count: 184, Neg. LLF: 154.56820721360228
Iteration: 17, Func. Count: 195, Neg. LLF: 154.5675223688784
Iteration: 18, Func. Count: 206, Neg. LLF: 154.567462505219
Iteration: 19, Func. Count: 217, Neg. LLF: 154.5674508081446
Iteration: 20, Func. Count: 228, Neg. LLF: 154.567447131821
Iteration: 21, Func. Count: 239, Neg. LLF: 154.5674462283255
Optimization terminated successfully (Exit mode 0)
Current function value: 154.5674462283255
Iterations: 21
Function evaluations: 239
Gradient evaluations: 21
Iteration: 1, Func. Count: 13, Neg. LLF: 219.097043095796
Iteration: 2, Func. Count: 26, Neg. LLF: 156.02797891251
Iteration: 3, Func. Count: 39, Neg. LLF: 155.5080977945664
Iteration: 4, Func. Count: 52, Neg. LLF: 180.2525127659063
Iteration: 5, Func. Count: 65, Neg. LLF: 154.65501449727995
Iteration: 6, Func. Count: 77, Neg. LLF: 154.81401679954706
Iteration: 7, Func. Count: 90, Neg. LLF: 154.6567393911646
Iteration: 8, Func. Count: 103, Neg. LLF: 154.6030882063421
Iteration: 9, Func. Count: 115, Neg. LLF: 154.59741110341793
Iteration: 10, Func. Count: 127, Neg. LLF: 154.57887876479768
Iteration: 11, Func. Count: 139, Neg. LLF: 154.57194426524288
Iteration: 12, Func. Count: 151, Neg. LLF: 154.56860323331972
Iteration: 13, Func. Count: 163, Neg. LLF: 154.567676102507
Iteration: 14, Func. Count: 175, Neg. LLF: 154.56748679940523
Iteration: 15, Func. Count: 187, Neg. LLF: 154.56744872516097
Iteration: 16, Func. Count: 199, Neg. LLF: 154.56744613417465
Iteration: 17, Func. Count: 210, Neg. LLF: 154.56744614381563
Optimization terminated successfully (Exit mode 0)
Current function value: 154.56744613417465
Iterations: 17
Function evaluations: 210
Gradient evaluations: 17
Iteration: 1, Func. Count: 14, Neg. LLF: 422.79146896271095
Iteration: 2, Func. Count: 28, Neg. LLF: 4590736.633852541
Iteration: 3, Func. Count: 42, Neg. LLF: 177.31840089880498
Iteration: 4, Func. Count: 56, Neg. LLF: 155.61651588316352
Iteration: 5, Func. Count: 69, Neg. LLF: 154.8552274433322
Iteration: 6, Func. Count: 82, Neg. LLF: 154.7536463439546
Iteration: 7, Func. Count: 95, Neg. LLF: 154.6852442901099
Iteration: 8, Func. Count: 108, Neg. LLF: 154.60780456262938
Iteration: 9, Func. Count: 121, Neg. LLF: 154.58060124790188
Iteration: 10, Func. Count: 134, Neg. LLF: 154.57040723118055
Iteration: 11, Func. Count: 147, Neg. LLF: 154.56784654173308
Iteration: 12, Func. Count: 160, Neg. LLF: 154.5674902268175
Iteration: 13, Func. Count: 173, Neg. LLF: 154.56745203490567
Iteration: 14, Func. Count: 186, Neg. LLF: 154.56744710794487
Iteration: 15, Func. Count: 199, Neg. LLF: 154.5674462936495
Optimization terminated successfully (Exit mode 0)
Current function value: 154.5674462936495
Iterations: 15
Function evaluations: 199
Gradient evaluations: 15
Iteration: 1, Func. Count: 15, Neg. LLF: 202.07586449735146
Iteration: 2, Func. Count: 30, Neg. LLF: 348.32517302988623
Iteration: 3, Func. Count: 45, Neg. LLF: 159.8083671796864
Iteration: 4, Func. Count: 60, Neg. LLF: 154.82754894094094
Iteration: 5, Func. Count: 74, Neg. LLF: 155.62818179012714
Iteration: 6, Func. Count: 89, Neg. LLF: 155.01605648439866
Iteration: 7, Func. Count: 104, Neg. LLF: 154.63069464481683
Iteration: 8, Func. Count: 119, Neg. LLF: 154.60533239646256
Iteration: 9, Func. Count: 133, Neg. LLF: 154.60186727328184
Iteration: 10, Func. Count: 147, Neg. LLF: 154.5955197450691
Iteration: 11, Func. Count: 161, Neg. LLF: 154.5854879671108
Iteration: 12, Func. Count: 175, Neg. LLF: 154.58113929817466
Iteration: 13, Func. Count: 189, Neg. LLF: 154.57271784021188
Iteration: 14, Func. Count: 203, Neg. LLF: 154.57012080495147
Iteration: 15, Func. Count: 217, Neg. LLF: 154.56777661888546
Iteration: 16, Func. Count: 231, Neg. LLF: 154.56748338976524
Iteration: 17, Func. Count: 245, Neg. LLF: 154.56744751337803
Iteration: 18, Func. Count: 259, Neg. LLF: 154.56744614807303
Iteration: 19, Func. Count: 272, Neg. LLF: 154.5674461959538
Optimization terminated successfully (Exit mode 0)
Current function value: 154.56744614807303
Iterations: 19
Function evaluations: 272
Gradient evaluations: 19
Iteration: 1, Func. Count: 8, Neg. LLF: 162.64721629566017
Iteration: 2, Func. Count: 16, Neg. LLF: 163.30331321914068
Iteration: 3, Func. Count: 26, Neg. LLF: 160.81912989740502
Iteration: 4, Func. Count: 34, Neg. LLF: 160.07707065189715
Iteration: 5, Func. Count: 41, Neg. LLF: 160.07216316955248
Iteration: 6, Func. Count: 48, Neg. LLF: 160.07167721078474
Iteration: 7, Func. Count: 55, Neg. LLF: 160.07032974209451
Iteration: 8, Func. Count: 62, Neg. LLF: 160.06852981289921
Iteration: 9, Func. Count: 69, Neg. LLF: 160.0668048862438
Iteration: 10, Func. Count: 76, Neg. LLF: 160.06604247196813
Iteration: 11, Func. Count: 83, Neg. LLF: 160.06572024577804
Iteration: 12, Func. Count: 90, Neg. LLF: 162.9069421492448
Iteration: 13, Func. Count: 99, Neg. LLF: 160.13160991282112
Iteration: 14, Func. Count: 107, Neg. LLF: 160.06334248538013
Iteration: 15, Func. Count: 114, Neg. LLF: 160.06201925550766
Iteration: 16, Func. Count: 121, Neg. LLF: 160.06059560781785
Iteration: 17, Func. Count: 128, Neg. LLF: 160.0601085044081
Iteration: 18, Func. Count: 135, Neg. LLF: 160.0599602779296
Iteration: 19, Func. Count: 142, Neg. LLF: 160.05994817517532
Iteration: 20, Func. Count: 148, Neg. LLF: 160.0599481751638
Optimization terminated successfully (Exit mode 0)
Current function value: 160.05994817517532
Iterations: 20
Function evaluations: 148
Gradient evaluations: 20
Iteration: 1, Func. Count: 9, Neg. LLF: 192.46439686598103
Iteration: 2, Func. Count: 18, Neg. LLF: 186.30804227848446
Iteration: 3, Func. Count: 28, Neg. LLF: 755.6621696124038
Iteration: 4, Func. Count: 38, Neg. LLF: 166.7757089693596
Iteration: 5, Func. Count: 47, Neg. LLF: 159.92111376949717
Iteration: 6, Func. Count: 56, Neg. LLF: 158.75159957998025
Iteration: 7, Func. Count: 64, Neg. LLF: 158.68060922875765
Iteration: 8, Func. Count: 72, Neg. LLF: 158.59441893020033
Iteration: 9, Func. Count: 80, Neg. LLF: 158.52223416265878
Iteration: 10, Func. Count: 88, Neg. LLF: 158.51066115545683
Iteration: 11, Func. Count: 96, Neg. LLF: 158.5081889259346
Iteration: 12, Func. Count: 104, Neg. LLF: 158.5068532228704
Iteration: 13, Func. Count: 112, Neg. LLF: 158.50632145041416
Iteration: 14, Func. Count: 120, Neg. LLF: 158.5060736611463
Iteration: 15, Func. Count: 128, Neg. LLF: 158.50605182262663
Iteration: 16, Func. Count: 136, Neg. LLF: 158.5060482246027
Iteration: 17, Func. Count: 144, Neg. LLF: 158.50604757287832
Optimization terminated successfully (Exit mode 0)
Current function value: 158.50604757287832
Iterations: 17
Function evaluations: 144
Gradient evaluations: 17
Iteration: 1, Func. Count: 10, Neg. LLF: 173.79750916163084
Iteration: 2, Func. Count: 20, Neg. LLF: 417.7020428259285
Iteration: 3, Func. Count: 30, Neg. LLF: 211.5005795481049
Iteration: 4, Func. Count: 41, Neg. LLF: 159.46218259055908
Iteration: 5, Func. Count: 51, Neg. LLF: 158.37434443017906
Iteration: 6, Func. Count: 61, Neg. LLF: 158.88365629645816
Iteration: 7, Func. Count: 71, Neg. LLF: 158.11047244410656
Iteration: 8, Func. Count: 80, Neg. LLF: 158.2451461676912
Iteration: 9, Func. Count: 90, Neg. LLF: 158.78782581439546
Iteration: 10, Func. Count: 101, Neg. LLF: 158.07306160606558
Iteration: 11, Func. Count: 110, Neg. LLF: 158.07265063312792
Iteration: 12, Func. Count: 119, Neg. LLF: 158.07216487920482
Iteration: 13, Func. Count: 128, Neg. LLF: 158.07103023818573
Iteration: 14, Func. Count: 137, Neg. LLF: 158.07096664656277
Iteration: 15, Func. Count: 146, Neg. LLF: 158.07096257458704
Iteration: 16, Func. Count: 154, Neg. LLF: 158.07096257457758
Optimization terminated successfully (Exit mode 0)
Current function value: 158.07096257458704
Iterations: 16
Function evaluations: 154
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 376.8866439200076
Iteration: 2, Func. Count: 22, Neg. LLF: 250.11847624186078
Iteration: 3, Func. Count: 34, Neg. LLF: 189.99926770149685
Iteration: 4, Func. Count: 45, Neg. LLF: 158.92366583969172
Iteration: 5, Func. Count: 55, Neg. LLF: 160.45605193590222
Iteration: 6, Func. Count: 67, Neg. LLF: 164.22435935917412
Iteration: 7, Func. Count: 78, Neg. LLF: 158.3711867803852
Iteration: 8, Func. Count: 89, Neg. LLF: 158.1617743470652
Iteration: 9, Func. Count: 100, Neg. LLF: 158.01514265394638
Iteration: 10, Func. Count: 110, Neg. LLF: 158.01424649709753
Iteration: 11, Func. Count: 120, Neg. LLF: 158.01289582959265
Iteration: 12, Func. Count: 130, Neg. LLF: 158.01237807655264
Iteration: 13, Func. Count: 140, Neg. LLF: 158.01212218520075
Iteration: 14, Func. Count: 150, Neg. LLF: 158.01198109565908
Iteration: 15, Func. Count: 160, Neg. LLF: 158.01191947256444
Iteration: 16, Func. Count: 170, Neg. LLF: 158.01190182983177
Iteration: 17, Func. Count: 180, Neg. LLF: 158.01189736167936
Iteration: 18, Func. Count: 190, Neg. LLF: 158.0118961680619
Iteration: 19, Func. Count: 199, Neg. LLF: 158.01189616813681
Optimization terminated successfully (Exit mode 0)
Current function value: 158.0118961680619
Iterations: 19
Function evaluations: 199
Gradient evaluations: 19
Iteration: 1, Func. Count: 12, Neg. LLF: 377.6798940399527
Iteration: 2, Func. Count: 24, Neg. LLF: 265.9968996400279
Iteration: 3, Func. Count: 36, Neg. LLF: 193.04762200278086
Iteration: 4, Func. Count: 48, Neg. LLF: 159.10100726164973
Iteration: 5, Func. Count: 59, Neg. LLF: 165.383296017355
Iteration: 6, Func. Count: 72, Neg. LLF: 169.57150241194046
Iteration: 7, Func. Count: 84, Neg. LLF: 158.77827197841492
Iteration: 8, Func. Count: 96, Neg. LLF: 158.04805430349347
Iteration: 9, Func. Count: 107, Neg. LLF: 158.0148019891474
Iteration: 10, Func. Count: 118, Neg. LLF: 158.01314897675786
Iteration: 11, Func. Count: 129, Neg. LLF: 158.0127962670471
Iteration: 12, Func. Count: 140, Neg. LLF: 158.0124396422135
Iteration: 13, Func. Count: 151, Neg. LLF: 158.01210090435478
Iteration: 14, Func. Count: 162, Neg. LLF: 158.01194423516057
Iteration: 15, Func. Count: 173, Neg. LLF: 158.01190504469787
Iteration: 16, Func. Count: 184, Neg. LLF: 158.01189788874606
Iteration: 17, Func. Count: 195, Neg. LLF: 158.01189650828275
Iteration: 18, Func. Count: 205, Neg. LLF: 158.01189655721527
Optimization terminated successfully (Exit mode 0)
Current function value: 158.01189650828275
Iterations: 18
Function evaluations: 205
Gradient evaluations: 18
Iteration: 1, Func. Count: 9, Neg. LLF: 162.5901182059318
Iteration: 2, Func. Count: 18, Neg. LLF: 162.943122887774
Iteration: 3, Func. Count: 29, Neg. LLF: 159.95999324813474
Iteration: 4, Func. Count: 37, Neg. LLF: 160.03262279970122
Iteration: 5, Func. Count: 46, Neg. LLF: 159.9415317183089
Iteration: 6, Func. Count: 54, Neg. LLF: 159.93563637223025
Iteration: 7, Func. Count: 62, Neg. LLF: 159.93466016674446
Iteration: 8, Func. Count: 70, Neg. LLF: 159.93275804392164
Iteration: 9, Func. Count: 78, Neg. LLF: 159.931374607267
Iteration: 10, Func. Count: 86, Neg. LLF: 159.92858404170718
Iteration: 11, Func. Count: 94, Neg. LLF: 159.92647723224658
Iteration: 12, Func. Count: 102, Neg. LLF: 159.99528449368898
Iteration: 13, Func. Count: 111, Neg. LLF: 160.67471835177508
Iteration: 14, Func. Count: 120, Neg. LLF: 159.91781399270963
Iteration: 15, Func. Count: 128, Neg. LLF: 159.9098556469477
Iteration: 16, Func. Count: 136, Neg. LLF: 159.90862267355615
Iteration: 17, Func. Count: 144, Neg. LLF: 159.90854052732206
Iteration: 18, Func. Count: 151, Neg. LLF: 159.90854048287895
Optimization terminated successfully (Exit mode 0)
Current function value: 159.90854052732206
Iterations: 18
Function evaluations: 151
Gradient evaluations: 18
Iteration: 1, Func. Count: 10, Neg. LLF: 1651.851459801847
Iteration: 2, Func. Count: 21, Neg. LLF: 159.98845384166663
Iteration: 3, Func. Count: 31, Neg. LLF: 157.5380290574057
Iteration: 4, Func. Count: 41, Neg. LLF: 157.32913287811988
Iteration: 5, Func. Count: 51, Neg. LLF: 157.15044111071896
Iteration: 6, Func. Count: 60, Neg. LLF: 157.14980407377
Iteration: 7, Func. Count: 69, Neg. LLF: 157.149613470654
Iteration: 8, Func. Count: 78, Neg. LLF: 157.14961057316157
Iteration: 9, Func. Count: 86, Neg. LLF: 157.14961057311922
Optimization terminated successfully (Exit mode 0)
Current function value: 157.14961057316157
Iterations: 9
Function evaluations: 86
Gradient evaluations: 9
Iteration: 1, Func. Count: 11, Neg. LLF: 20144969.574269053
Iteration: 2, Func. Count: 23, Neg. LLF: 163.47667813403868
Iteration: 3, Func. Count: 34, Neg. LLF: 157.5157456479963
Iteration: 4, Func. Count: 44, Neg. LLF: 158.24932312224962
Iteration: 5, Func. Count: 55, Neg. LLF: 157.1665406291371
Iteration: 6, Func. Count: 65, Neg. LLF: 157.15269882074608
Iteration: 7, Func. Count: 75, Neg. LLF: 157.1500928664174
Iteration: 8, Func. Count: 85, Neg. LLF: 157.14961372128212
Iteration: 9, Func. Count: 95, Neg. LLF: 157.14961051660842
Iteration: 10, Func. Count: 104, Neg. LLF: 157.14961052542836
Optimization terminated successfully (Exit mode 0)
Current function value: 157.14961051660842
Iterations: 10
Function evaluations: 104
Gradient evaluations: 10
Iteration: 1, Func. Count: 12, Neg. LLF: 415.4702195546332
Iteration: 2, Func. Count: 25, Neg. LLF: 190.1527032922292
Iteration: 3, Func. Count: 37, Neg. LLF: 158.41331815983173
Iteration: 4, Func. Count: 49, Neg. LLF: 157.43501475279726
Iteration: 5, Func. Count: 60, Neg. LLF: 157.34751763140494
Iteration: 6, Func. Count: 71, Neg. LLF: 157.29884280823316
Iteration: 7, Func. Count: 82, Neg. LLF: 157.2655829673285
Iteration: 8, Func. Count: 93, Neg. LLF: 157.21674438775253
Iteration: 9, Func. Count: 104, Neg. LLF: 157.16280232855166
Iteration: 10, Func. Count: 115, Neg. LLF: 157.1588867081111
Iteration: 11, Func. Count: 126, Neg. LLF: 157.15110408802303
Iteration: 12, Func. Count: 137, Neg. LLF: 157.15140786748705
Iteration: 13, Func. Count: 149, Neg. LLF: 157.14970041753486
Iteration: 14, Func. Count: 160, Neg. LLF: 157.14961058165056
Iteration: 15, Func. Count: 170, Neg. LLF: 157.14961061294565
Optimization terminated successfully (Exit mode 0)
Current function value: 157.14961058165056
Iterations: 15
Function evaluations: 170
Gradient evaluations: 15
Iteration: 1, Func. Count: 13, Neg. LLF: 392.30068771786193
Iteration: 2, Func. Count: 26, Neg. LLF: 201.22945881288445
Iteration: 3, Func. Count: 39, Neg. LLF: 158.04837187532476
Iteration: 4, Func. Count: 51, Neg. LLF: 157.6704147028999
Iteration: 5, Func. Count: 63, Neg. LLF: 158.0385350490579
Iteration: 6, Func. Count: 76, Neg. LLF: 157.33830101250186
Iteration: 7, Func. Count: 88, Neg. LLF: 157.4138019073756
Iteration: 8, Func. Count: 101, Neg. LLF: 157.27725161744277
Iteration: 9, Func. Count: 113, Neg. LLF: 157.26034892959578
Iteration: 10, Func. Count: 125, Neg. LLF: 157.2161885963711
Iteration: 11, Func. Count: 137, Neg. LLF: 157.16630524754893
Iteration: 12, Func. Count: 149, Neg. LLF: 157.15967342089058
Iteration: 13, Func. Count: 161, Neg. LLF: 157.15265772959117
Iteration: 14, Func. Count: 173, Neg. LLF: 157.15074155572512
Iteration: 15, Func. Count: 185, Neg. LLF: 157.14994985515673
Iteration: 16, Func. Count: 197, Neg. LLF: 157.14965385759965
Iteration: 17, Func. Count: 209, Neg. LLF: 157.14961054497218
Iteration: 18, Func. Count: 220, Neg. LLF: 157.14961061209982
Optimization terminated successfully (Exit mode 0)
Current function value: 157.14961054497218
Iterations: 18
Function evaluations: 220
Gradient evaluations: 18
Iteration: 1, Func. Count: 10, Neg. LLF: 164.33507791615648
Iteration: 2, Func. Count: 20, Neg. LLF: 162.9178263496264
Iteration: 3, Func. Count: 31, Neg. LLF: 161.8732792286917
Iteration: 4, Func. Count: 41, Neg. LLF: 160.43110148707075
Iteration: 5, Func. Count: 50, Neg. LLF: 160.41319378745138
Iteration: 6, Func. Count: 60, Neg. LLF: 160.6850422937666
Iteration: 7, Func. Count: 70, Neg. LLF: 159.6211364365594
Iteration: 8, Func. Count: 79, Neg. LLF: 159.50987671428345
Iteration: 9, Func. Count: 88, Neg. LLF: 159.48880082221112
Iteration: 10, Func. Count: 97, Neg. LLF: 159.48463650858267
Iteration: 11, Func. Count: 106, Neg. LLF: 159.4837773357217
Iteration: 12, Func. Count: 115, Neg. LLF: 159.48328701468688
Iteration: 13, Func. Count: 124, Neg. LLF: 159.48207444623372
Iteration: 14, Func. Count: 133, Neg. LLF: 159.4806859265872
Iteration: 15, Func. Count: 142, Neg. LLF: 159.4796549039212
Iteration: 16, Func. Count: 151, Neg. LLF: 159.47937214022798
Iteration: 17, Func. Count: 160, Neg. LLF: 159.47935000762814
Iteration: 18, Func. Count: 168, Neg. LLF: 159.47935000763383
Optimization terminated successfully (Exit mode 0)
Current function value: 159.47935000762814
Iterations: 18
Function evaluations: 168
Gradient evaluations: 18
Iteration: 1, Func. Count: 11, Neg. LLF: 2395.002411650847
Iteration: 2, Func. Count: 23, Neg. LLF: 161.95118466889755
Iteration: 3, Func. Count: 34, Neg. LLF: 156.9867296803141
Iteration: 4, Func. Count: 45, Neg. LLF: 156.79460577736458
Iteration: 5, Func. Count: 55, Neg. LLF: 156.66641805153466
Iteration: 6, Func. Count: 65, Neg. LLF: 156.66292025949383
Iteration: 7, Func. Count: 75, Neg. LLF: 156.66265530168442
Iteration: 8, Func. Count: 85, Neg. LLF: 156.66265216348003
Iteration: 9, Func. Count: 95, Neg. LLF: 156.66265026391153
Iteration: 10, Func. Count: 104, Neg. LLF: 156.6626502638006
Optimization terminated successfully (Exit mode 0)
Current function value: 156.66265026391153
Iterations: 10
Function evaluations: 104
Gradient evaluations: 10
Iteration: 1, Func. Count: 12, Neg. LLF: 20124547.5910142
Iteration: 2, Func. Count: 25, Neg. LLF: 164.67797492998784
Iteration: 3, Func. Count: 37, Neg. LLF: 156.97642998296038
Iteration: 4, Func. Count: 48, Neg. LLF: 156.90290318103865
Iteration: 5, Func. Count: 59, Neg. LLF: 156.7541999929722
Iteration: 6, Func. Count: 70, Neg. LLF: 157.63150078817756
Iteration: 7, Func. Count: 82, Neg. LLF: 157.5220296884866
Iteration: 8, Func. Count: 94, Neg. LLF: 157.41699260760907
Iteration: 9, Func. Count: 106, Neg. LLF: 156.76058084878358
Iteration: 10, Func. Count: 118, Neg. LLF: 156.65411576916654
Iteration: 11, Func. Count: 130, Neg. LLF: 156.63304377000938
Iteration: 12, Func. Count: 141, Neg. LLF: 156.61154482215142
Iteration: 13, Func. Count: 152, Neg. LLF: 156.6087592773654
Iteration: 14, Func. Count: 163, Neg. LLF: 156.6084604042206
Iteration: 15, Func. Count: 174, Neg. LLF: 156.6083917294672
Iteration: 16, Func. Count: 185, Neg. LLF: 156.60827984953437
Iteration: 17, Func. Count: 196, Neg. LLF: 156.60824988691834
Iteration: 18, Func. Count: 207, Neg. LLF: 156.60824293402436
Iteration: 19, Func. Count: 217, Neg. LLF: 156.60824293414626
Optimization terminated successfully (Exit mode 0)
Current function value: 156.60824293402436
Iterations: 19
Function evaluations: 217
Gradient evaluations: 19
Iteration: 1, Func. Count: 13, Neg. LLF: 415.4153973694172
Iteration: 2, Func. Count: 27, Neg. LLF: 172.66884849149915
Iteration: 3, Func. Count: 40, Neg. LLF: 160.33754738664905
Iteration: 4, Func. Count: 53, Neg. LLF: 157.03648737013495
Iteration: 5, Func. Count: 65, Neg. LLF: 157.1792271717158
Iteration: 6, Func. Count: 78, Neg. LLF: 157.14343185910224
Iteration: 7, Func. Count: 91, Neg. LLF: 156.76440932456822
Iteration: 8, Func. Count: 103, Neg. LLF: 156.6820615852267
Iteration: 9, Func. Count: 115, Neg. LLF: 156.63248761148972
Iteration: 10, Func. Count: 127, Neg. LLF: 156.6189811721178
Iteration: 11, Func. Count: 139, Neg. LLF: 156.61141482134715
Iteration: 12, Func. Count: 151, Neg. LLF: 156.6091229201451
Iteration: 13, Func. Count: 163, Neg. LLF: 156.60832791755368
Iteration: 14, Func. Count: 175, Neg. LLF: 156.60825467777738
Iteration: 15, Func. Count: 187, Neg. LLF: 156.60824315543346
Iteration: 16, Func. Count: 199, Neg. LLF: 156.60824249422106
Optimization terminated successfully (Exit mode 0)
Current function value: 156.60824249422106
Iterations: 16
Function evaluations: 199
Gradient evaluations: 16
Iteration: 1, Func. Count: 14, Neg. LLF: 392.5225376146309
Iteration: 2, Func. Count: 28, Neg. LLF: 174.63836727451715
Iteration: 3, Func. Count: 42, Neg. LLF: 157.68694548156483
Iteration: 4, Func. Count: 55, Neg. LLF: 156.94119662145212
Iteration: 5, Func. Count: 68, Neg. LLF: 161.2854310972051
Iteration: 6, Func. Count: 83, Neg. LLF: 156.62970730916862
Iteration: 7, Func. Count: 96, Neg. LLF: 156.6159759436916
Iteration: 8, Func. Count: 109, Neg. LLF: 156.6096629251855
Iteration: 9, Func. Count: 122, Neg. LLF: 156.608535928505
Iteration: 10, Func. Count: 135, Neg. LLF: 156.608299480724
Iteration: 11, Func. Count: 148, Neg. LLF: 156.60824372074285
Iteration: 12, Func. Count: 161, Neg. LLF: 156.60824253504677
Iteration: 13, Func. Count: 173, Neg. LLF: 156.60824257310114
Optimization terminated successfully (Exit mode 0)
Current function value: 156.60824253504677
Iterations: 13
Function evaluations: 173
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 164.25602144834266
Iteration: 2, Func. Count: 22, Neg. LLF: 163.54108838510268
Iteration: 3, Func. Count: 34, Neg. LLF: 163.59764608140404
Iteration: 4, Func. Count: 46, Neg. LLF: 161.9813420283115
Iteration: 5, Func. Count: 57, Neg. LLF: 160.17060747140232
Iteration: 6, Func. Count: 67, Neg. LLF: 159.77530680003252
Iteration: 7, Func. Count: 77, Neg. LLF: 160.31167073006185
Iteration: 8, Func. Count: 88, Neg. LLF: 159.68632256144832
Iteration: 9, Func. Count: 98, Neg. LLF: 159.6732855763143
Iteration: 10, Func. Count: 108, Neg. LLF: 159.65591451713922
Iteration: 11, Func. Count: 118, Neg. LLF: 159.57891866374337
Iteration: 12, Func. Count: 128, Neg. LLF: 159.5277077574688
Iteration: 13, Func. Count: 138, Neg. LLF: 159.5101785380142
Iteration: 14, Func. Count: 148, Neg. LLF: 159.50796810624848
Iteration: 15, Func. Count: 158, Neg. LLF: 159.5079395158398
Iteration: 16, Func. Count: 168, Neg. LLF: 159.50793783810542
Iteration: 17, Func. Count: 177, Neg. LLF: 159.50793783811753
Optimization terminated successfully (Exit mode 0)
Current function value: 159.50793783810542
Iterations: 17
Function evaluations: 177
Gradient evaluations: 17
Iteration: 1, Func. Count: 12, Neg. LLF: 4307.439990832048
Iteration: 2, Func. Count: 25, Neg. LLF: 175.57824510366018
Iteration: 3, Func. Count: 37, Neg. LLF: 156.75708666982635
Iteration: 4, Func. Count: 49, Neg. LLF: 156.11814644628285
Iteration: 5, Func. Count: 60, Neg. LLF: 155.9152446080595
Iteration: 6, Func. Count: 71, Neg. LLF: 155.9095642672392
Iteration: 7, Func. Count: 82, Neg. LLF: 155.9041252272338
Iteration: 8, Func. Count: 93, Neg. LLF: 155.90243050319185
Iteration: 9, Func. Count: 104, Neg. LLF: 155.9017236349447
Iteration: 10, Func. Count: 115, Neg. LLF: 155.90169819185044
Iteration: 11, Func. Count: 125, Neg. LLF: 155.9016981920842
Optimization terminated successfully (Exit mode 0)
Current function value: 155.90169819185044
Iterations: 11
Function evaluations: 125
Gradient evaluations: 11
Iteration: 1, Func. Count: 13, Neg. LLF: 20196922.674811956
Iteration: 2, Func. Count: 27, Neg. LLF: 171.14308062429296
Iteration: 3, Func. Count: 40, Neg. LLF: 156.6059668195224
Iteration: 4, Func. Count: 52, Neg. LLF: 160.85123859967152
Iteration: 5, Func. Count: 65, Neg. LLF: 155.91915167364894
Iteration: 6, Func. Count: 77, Neg. LLF: 155.9112023909444
Iteration: 7, Func. Count: 89, Neg. LLF: 155.9045399559331
Iteration: 8, Func. Count: 101, Neg. LLF: 155.90286812743378
Iteration: 9, Func. Count: 113, Neg. LLF: 155.90177596346615
Iteration: 10, Func. Count: 125, Neg. LLF: 155.90170179414838
Iteration: 11, Func. Count: 137, Neg. LLF: 155.90169775879687
Iteration: 12, Func. Count: 148, Neg. LLF: 155.9016977909872
Optimization terminated successfully (Exit mode 0)
Current function value: 155.90169775879687
Iterations: 12
Function evaluations: 148
Gradient evaluations: 12
Iteration: 1, Func. Count: 14, Neg. LLF: 419.0285072708544
Iteration: 2, Func. Count: 28, Neg. LLF: 192.0273641102836
Iteration: 3, Func. Count: 42, Neg. LLF: 158.2933567392827
Iteration: 4, Func. Count: 56, Neg. LLF: 157.14893611156637
Iteration: 5, Func. Count: 69, Neg. LLF: 157.2530879963702
Iteration: 6, Func. Count: 83, Neg. LLF: 159.243878218599
Iteration: 7, Func. Count: 98, Neg. LLF: 158.60745155334604
Iteration: 8, Func. Count: 112, Neg. LLF: 156.9154627560361
Iteration: 9, Func. Count: 126, Neg. LLF: 156.76965268809957
Iteration: 10, Func. Count: 139, Neg. LLF: 156.7314224456311
Iteration: 11, Func. Count: 152, Neg. LLF: 156.72487442031385
Iteration: 12, Func. Count: 165, Neg. LLF: 156.71690454936592
Iteration: 13, Func. Count: 178, Neg. LLF: 156.70978816345973
Iteration: 14, Func. Count: 191, Neg. LLF: 156.70797457218222
Iteration: 15, Func. Count: 204, Neg. LLF: 156.70762336861333
Iteration: 16, Func. Count: 217, Neg. LLF: 156.70758591519052
Iteration: 17, Func. Count: 230, Neg. LLF: 156.70757873734274
Iteration: 18, Func. Count: 243, Neg. LLF: 156.70757473267156
Iteration: 19, Func. Count: 256, Neg. LLF: 156.70757060438876
Iteration: 20, Func. Count: 268, Neg. LLF: 156.70757060433058
Optimization terminated successfully (Exit mode 0)
Current function value: 156.70757060438876
Iterations: 20
Function evaluations: 268
Gradient evaluations: 20
Iteration: 1, Func. Count: 15, Neg. LLF: 206.68848272658846
Iteration: 2, Func. Count: 30, Neg. LLF: 175.2221545155677
Iteration: 3, Func. Count: 45, Neg. LLF: 158.92822947913177
Iteration: 4, Func. Count: 60, Neg. LLF: 157.36951035404155
Iteration: 5, Func. Count: 74, Neg. LLF: 157.0818475630776
Iteration: 6, Func. Count: 88, Neg. LLF: 157.34363593011233
Iteration: 7, Func. Count: 103, Neg. LLF: 157.04626456931177
Iteration: 8, Func. Count: 117, Neg. LLF: 157.0350329930559
Iteration: 9, Func. Count: 131, Neg. LLF: 157.0052304081284
Iteration: 10, Func. Count: 145, Neg. LLF: 156.8841713855053
Iteration: 11, Func. Count: 159, Neg. LLF: 156.26938984075875
Iteration: 12, Func. Count: 173, Neg. LLF: 155.94389137207108
Iteration: 13, Func. Count: 187, Neg. LLF: 155.91300558161277
Iteration: 14, Func. Count: 201, Neg. LLF: 155.90415269071454
Iteration: 15, Func. Count: 215, Neg. LLF: 155.90189654974608
Iteration: 16, Func. Count: 229, Neg. LLF: 155.9017906845215
Iteration: 17, Func. Count: 243, Neg. LLF: 155.90167484667083
Iteration: 18, Func. Count: 257, Neg. LLF: 155.91420267298233
Iteration: 19, Func. Count: 274, Neg. LLF: 155.9016981090881
Iteration: 20, Func. Count: 289, Neg. LLF: 155.90169789723893
Iteration: 21, Func. Count: 304, Neg. LLF: 155.901697706536
Iteration: 22, Func. Count: 317, Neg. LLF: 155.90169781594568
Optimization terminated successfully (Exit mode 0)
Current function value: 155.901697706536
Iterations: 23
Function evaluations: 317
Gradient evaluations: 22
Iteration: 1, Func. Count: 12, Neg. LLF: 163.73407280728756
Iteration: 2, Func. Count: 24, Neg. LLF: 158.93177299004228
Iteration: 3, Func. Count: 36, Neg. LLF: 161.84199283095072
Iteration: 4, Func. Count: 48, Neg. LLF: 157.18800663408936
Iteration: 5, Func. Count: 59, Neg. LLF: 156.8541547841182
Iteration: 6, Func. Count: 70, Neg. LLF: 158.53622865025557
Iteration: 7, Func. Count: 83, Neg. LLF: 156.7819711228288
Iteration: 8, Func. Count: 95, Neg. LLF: 156.54492531898765
Iteration: 9, Func. Count: 106, Neg. LLF: 156.63271721041633
Iteration: 10, Func. Count: 118, Neg. LLF: 156.4664278988977
Iteration: 11, Func. Count: 129, Neg. LLF: 156.43014874881126
Iteration: 12, Func. Count: 140, Neg. LLF: 156.31016420658864
Iteration: 13, Func. Count: 151, Neg. LLF: 156.26772847014726
Iteration: 14, Func. Count: 162, Neg. LLF: 156.25083567893984
Iteration: 15, Func. Count: 173, Neg. LLF: 156.2495231884665
Iteration: 16, Func. Count: 184, Neg. LLF: 156.2489854172722
Iteration: 17, Func. Count: 195, Neg. LLF: 156.2486170370776
Iteration: 18, Func. Count: 206, Neg. LLF: 156.24852777682074
Iteration: 19, Func. Count: 217, Neg. LLF: 156.24850634430243
Iteration: 20, Func. Count: 228, Neg. LLF: 156.24850409166297
Iteration: 21, Func. Count: 238, Neg. LLF: 156.24850409166703
Optimization terminated successfully (Exit mode 0)
Current function value: 156.24850409166297
Iterations: 21
Function evaluations: 238
Gradient evaluations: 21
Iteration: 1, Func. Count: 13, Neg. LLF: 5089.333159496813
Iteration: 2, Func. Count: 27, Neg. LLF: 180.16190608720947
Iteration: 3, Func. Count: 40, Neg. LLF: 157.11387795427518
Iteration: 4, Func. Count: 53, Neg. LLF: 185.88083211311283
Iteration: 5, Func. Count: 66, Neg. LLF: 154.7486260540756
Iteration: 6, Func. Count: 78, Neg. LLF: 154.73312175376697
Iteration: 7, Func. Count: 91, Neg. LLF: 156.91933199707086
Iteration: 8, Func. Count: 104, Neg. LLF: 154.66133320635143
Iteration: 9, Func. Count: 116, Neg. LLF: 154.6452379292229
Iteration: 10, Func. Count: 128, Neg. LLF: 154.62525715620927
Iteration: 11, Func. Count: 140, Neg. LLF: 154.59463102611653
Iteration: 12, Func. Count: 152, Neg. LLF: 154.59061945291674
Iteration: 13, Func. Count: 164, Neg. LLF: 154.58267886570542
Iteration: 14, Func. Count: 176, Neg. LLF: 154.57695426824648
Iteration: 15, Func. Count: 188, Neg. LLF: 154.5706670358868
Iteration: 16, Func. Count: 200, Neg. LLF: 154.5680388578347
Iteration: 17, Func. Count: 212, Neg. LLF: 154.5675139457723
Iteration: 18, Func. Count: 224, Neg. LLF: 154.56746452140308
Iteration: 19, Func. Count: 236, Neg. LLF: 154.56745122340243
Iteration: 20, Func. Count: 248, Neg. LLF: 154.56744699977608
Iteration: 21, Func. Count: 260, Neg. LLF: 154.56744616159915
Optimization terminated successfully (Exit mode 0)
Current function value: 154.56744616159915
Iterations: 21
Function evaluations: 260
Gradient evaluations: 21
Iteration: 1, Func. Count: 14, Neg. LLF: 220.62342637344634
Iteration: 2, Func. Count: 28, Neg. LLF: 156.8080301921058
Iteration: 3, Func. Count: 42, Neg. LLF: 155.41626043416417
Iteration: 4, Func. Count: 55, Neg. LLF: 155.6970371991239
Iteration: 5, Func. Count: 69, Neg. LLF: 159.53292780982892
Iteration: 6, Func. Count: 83, Neg. LLF: 154.6383225635906
Iteration: 7, Func. Count: 96, Neg. LLF: 154.77421621693264
Iteration: 8, Func. Count: 110, Neg. LLF: 154.62500612554118
Iteration: 9, Func. Count: 124, Neg. LLF: 154.5959385628935
Iteration: 10, Func. Count: 137, Neg. LLF: 154.57749034728934
Iteration: 11, Func. Count: 150, Neg. LLF: 154.571046694718
Iteration: 12, Func. Count: 163, Neg. LLF: 154.56757270272666
Iteration: 13, Func. Count: 176, Neg. LLF: 154.56748150490068
Iteration: 14, Func. Count: 189, Neg. LLF: 154.567463631293
Iteration: 15, Func. Count: 202, Neg. LLF: 154.56744850033422
Iteration: 16, Func. Count: 215, Neg. LLF: 154.56744630134807
Iteration: 17, Func. Count: 227, Neg. LLF: 154.56744631098832
Optimization terminated successfully (Exit mode 0)
Current function value: 154.56744630134807
Iterations: 17
Function evaluations: 227
Gradient evaluations: 17
Iteration: 1, Func. Count: 15, Neg. LLF: 210.43447191483176
Iteration: 2, Func. Count: 30, Neg. LLF: 156.8939882133807
Iteration: 3, Func. Count: 45, Neg. LLF: 168.80701037206808
Iteration: 4, Func. Count: 60, Neg. LLF: 156.28255008122335
Iteration: 5, Func. Count: 75, Neg. LLF: 154.77070155849663
Iteration: 6, Func. Count: 89, Neg. LLF: 155.0231220751805
Iteration: 7, Func. Count: 104, Neg. LLF: 157.4355471055855
Iteration: 8, Func. Count: 119, Neg. LLF: 154.60451374107922
Iteration: 9, Func. Count: 133, Neg. LLF: 154.59915780800284
Iteration: 10, Func. Count: 147, Neg. LLF: 154.5936476924731
Iteration: 11, Func. Count: 161, Neg. LLF: 154.58937706880388
Iteration: 12, Func. Count: 175, Neg. LLF: 154.57917271728513
Iteration: 13, Func. Count: 189, Neg. LLF: 154.5721803584993
Iteration: 14, Func. Count: 203, Neg. LLF: 154.5677982289694
Iteration: 15, Func. Count: 217, Neg. LLF: 154.56747569912704
Iteration: 16, Func. Count: 231, Neg. LLF: 154.5674487110596
Iteration: 17, Func. Count: 245, Neg. LLF: 154.56744632243536
Iteration: 18, Func. Count: 258, Neg. LLF: 154.56744634022974
Optimization terminated successfully (Exit mode 0)
Current function value: 154.56744632243536
Iterations: 18
Function evaluations: 258
Gradient evaluations: 18
Iteration: 1, Func. Count: 16, Neg. LLF: 202.36862094752934
Iteration: 2, Func. Count: 32, Neg. LLF: 341.3051048133517
Iteration: 3, Func. Count: 48, Neg. LLF: 159.93267771893463
Iteration: 4, Func. Count: 64, Neg. LLF: 155.4663851156958
Iteration: 5, Func. Count: 79, Neg. LLF: 156.1136694192438
Iteration: 6, Func. Count: 95, Neg. LLF: 156.6993727490733
Iteration: 7, Func. Count: 111, Neg. LLF: 154.63970530496834
Iteration: 8, Func. Count: 126, Neg. LLF: 154.7684655919567
Iteration: 9, Func. Count: 142, Neg. LLF: 154.65431454977485
Iteration: 10, Func. Count: 158, Neg. LLF: 154.59435356049005
Iteration: 11, Func. Count: 173, Neg. LLF: 154.59150810688323
Iteration: 12, Func. Count: 188, Neg. LLF: 154.58114132171278
Iteration: 13, Func. Count: 203, Neg. LLF: 154.5773232019893
Iteration: 14, Func. Count: 218, Neg. LLF: 154.57201100210733
Iteration: 15, Func. Count: 233, Neg. LLF: 154.57016699343154
Iteration: 16, Func. Count: 248, Neg. LLF: 154.56803738777128
Iteration: 17, Func. Count: 263, Neg. LLF: 154.5675376862269
Iteration: 18, Func. Count: 278, Neg. LLF: 154.56745108365917
Iteration: 19, Func. Count: 293, Neg. LLF: 154.56744638121526
Iteration: 20, Func. Count: 307, Neg. LLF: 154.56744642907933
Optimization terminated successfully (Exit mode 0)
Current function value: 154.56744638121526
Iterations: 20
Function evaluations: 307
Gradient evaluations: 20
Iteration: 1, Func. Count: 6, Neg. LLF: 2418.589616879197
Iteration: 2, Func. Count: 13, Neg. LLF: 159.1695550455245
Iteration: 3, Func. Count: 19, Neg. LLF: 158.0656974306487
Iteration: 4, Func. Count: 25, Neg. LLF: 157.18979543142274
Iteration: 5, Func. Count: 30, Neg. LLF: 157.15006571150548
Iteration: 6, Func. Count: 35, Neg. LLF: 157.14975677520817
Iteration: 7, Func. Count: 40, Neg. LLF: 157.14962573824454
Iteration: 8, Func. Count: 45, Neg. LLF: 157.1496114499392
Iteration: 9, Func. Count: 50, Neg. LLF: 157.14961057915787
Optimization terminated successfully (Exit mode 0)
Current function value: 157.14961057915787
Iterations: 9
Function evaluations: 50
Gradient evaluations: 9
Iteration: 1, Func. Count: 5, Neg. LLF: 158.23051911515276
Iteration: 2, Func. Count: 10, Neg. LLF: 156.7353133617549
Iteration: 3, Func. Count: 15, Neg. LLF: 156.4435034645804
Iteration: 4, Func. Count: 19, Neg. LLF: 156.2807731789089
Iteration: 5, Func. Count: 23, Neg. LLF: 156.2012019359808
Iteration: 6, Func. Count: 27, Neg. LLF: 156.19624066045142
Iteration: 7, Func. Count: 31, Neg. LLF: 156.1959198426609
Iteration: 8, Func. Count: 35, Neg. LLF: 156.19574025795387
Iteration: 9, Func. Count: 39, Neg. LLF: 156.19554030485114
Iteration: 10, Func. Count: 43, Neg. LLF: 156.19548631521164
Iteration: 11, Func. Count: 47, Neg. LLF: 156.1954799578814
Iteration: 12, Func. Count: 50, Neg. LLF: 156.1954799578885
Optimization terminated successfully (Exit mode 0)
Current function value: 156.1954799578814
Iterations: 12
Function evaluations: 50
Gradient evaluations: 12
Iteration: 1, Func. Count: 6, Neg. LLF: 18387850.53814616
Iteration: 2, Func. Count: 13, Neg. LLF: 157.69779728614333
Iteration: 3, Func. Count: 19, Neg. LLF: 152.11000499125655
Iteration: 4, Func. Count: 24, Neg. LLF: 160.0231624300523
Iteration: 5, Func. Count: 30, Neg. LLF: 152.08955009539173
Iteration: 6, Func. Count: 35, Neg. LLF: 152.08481237677756
Iteration: 7, Func. Count: 40, Neg. LLF: 152.08438716447
Iteration: 8, Func. Count: 45, Neg. LLF: 152.0843533241701
Iteration: 9, Func. Count: 50, Neg. LLF: 152.08435259986334
Optimization terminated successfully (Exit mode 0)
Current function value: 152.08435259986334
Iterations: 9
Function evaluations: 50
Gradient evaluations: 9
Iteration: 1, Func. Count: 7, Neg. LLF: 19199003.740172807
Iteration: 2, Func. Count: 15, Neg. LLF: 194.05397214958927
Iteration: 3, Func. Count: 23, Neg. LLF: 152.44361117568388
Iteration: 4, Func. Count: 30, Neg. LLF: 152.40238873061648
Iteration: 5, Func. Count: 37, Neg. LLF: 152.10236944391826
Iteration: 6, Func. Count: 43, Neg. LLF: 152.09332255548586
Iteration: 7, Func. Count: 49, Neg. LLF: 152.08586580901837
Iteration: 8, Func. Count: 55, Neg. LLF: 152.08468654123035
Iteration: 9, Func. Count: 61, Neg. LLF: 152.08436107822706
Iteration: 10, Func. Count: 67, Neg. LLF: 152.08435269495064
Iteration: 11, Func. Count: 72, Neg. LLF: 152.0843526993504
Optimization terminated successfully (Exit mode 0)
Current function value: 152.08435269495064
Iterations: 11
Function evaluations: 72
Gradient evaluations: 11
Iteration: 1, Func. Count: 8, Neg. LLF: 537.7435841925377
Iteration: 2, Func. Count: 16, Neg. LLF: 172.58594300708987
Iteration: 3, Func. Count: 24, Neg. LLF: 158.23424688687692
Iteration: 4, Func. Count: 32, Neg. LLF: 152.35578815340037
Iteration: 5, Func. Count: 39, Neg. LLF: 152.61271331062383
Iteration: 6, Func. Count: 47, Neg. LLF: 152.18682846624284
Iteration: 7, Func. Count: 54, Neg. LLF: 152.16759244261732
Iteration: 8, Func. Count: 61, Neg. LLF: 152.15670624127097
Iteration: 9, Func. Count: 68, Neg. LLF: 152.13716105849628
Iteration: 10, Func. Count: 75, Neg. LLF: 152.11000314374317
Iteration: 11, Func. Count: 82, Neg. LLF: 152.08766904863162
Iteration: 12, Func. Count: 89, Neg. LLF: 152.08497309781825
Iteration: 13, Func. Count: 96, Neg. LLF: 152.08438759626182
Iteration: 14, Func. Count: 103, Neg. LLF: 152.08435304388155
Iteration: 15, Func. Count: 109, Neg. LLF: 152.08435306303505
Optimization terminated successfully (Exit mode 0)
Current function value: 152.08435304388155
Iterations: 15
Function evaluations: 109
Gradient evaluations: 15
Iteration: 1, Func. Count: 9, Neg. LLF: 532.3211480434655
Iteration: 2, Func. Count: 18, Neg. LLF: 171.47413745376022
Iteration: 3, Func. Count: 27, Neg. LLF: 165.4951450625701
Iteration: 4, Func. Count: 36, Neg. LLF: 152.68512581485837
Iteration: 5, Func. Count: 45, Neg. LLF: 152.42084407254163
Iteration: 6, Func. Count: 53, Neg. LLF: 152.29575641963342
Iteration: 7, Func. Count: 61, Neg. LLF: 152.21998102152844
Iteration: 8, Func. Count: 69, Neg. LLF: 152.19029596740353
Iteration: 9, Func. Count: 77, Neg. LLF: 152.16486135005803
Iteration: 10, Func. Count: 85, Neg. LLF: 152.14968983894482
Iteration: 11, Func. Count: 93, Neg. LLF: 152.13809264377934
Iteration: 12, Func. Count: 101, Neg. LLF: 152.12523995494732
Iteration: 13, Func. Count: 109, Neg. LLF: 152.0927489384352
Iteration: 14, Func. Count: 117, Neg. LLF: 152.08627614589238
Iteration: 15, Func. Count: 125, Neg. LLF: 152.08485248549624
Iteration: 16, Func. Count: 133, Neg. LLF: 152.0845284337899
Iteration: 17, Func. Count: 141, Neg. LLF: 152.08438527262203
Iteration: 18, Func. Count: 149, Neg. LLF: 152.08435758533
Iteration: 19, Func. Count: 157, Neg. LLF: 152.0843526404395
Iteration: 20, Func. Count: 164, Neg. LLF: 152.0843526863604
Optimization terminated successfully (Exit mode 0)
Current function value: 152.0843526404395
Iterations: 20
Function evaluations: 164
Gradient evaluations: 20
Iteration: 1, Func. Count: 6, Neg. LLF: 159.78286844175432
Iteration: 2, Func. Count: 12, Neg. LLF: 156.7520654591516
Iteration: 3, Func. Count: 19, Neg. LLF: 157.14551426472082
Iteration: 4, Func. Count: 25, Neg. LLF: 154.77718649999852
Iteration: 5, Func. Count: 30, Neg. LLF: 154.7193519153733
Iteration: 6, Func. Count: 35, Neg. LLF: 154.70119090171065
Iteration: 7, Func. Count: 40, Neg. LLF: 154.6947865436437
Iteration: 8, Func. Count: 45, Neg. LLF: 154.6806056478963
Iteration: 9, Func. Count: 50, Neg. LLF: 154.673031790234
Iteration: 10, Func. Count: 55, Neg. LLF: 154.66354571755954
Iteration: 11, Func. Count: 60, Neg. LLF: 154.66185335955433
Iteration: 12, Func. Count: 65, Neg. LLF: 154.66157546280905
Iteration: 13, Func. Count: 70, Neg. LLF: 154.66156792739704
Iteration: 14, Func. Count: 75, Neg. LLF: 154.66156735157068
Optimization terminated successfully (Exit mode 0)
Current function value: 154.66156735157068
Iterations: 14
Function evaluations: 75
Gradient evaluations: 14
Iteration: 1, Func. Count: 7, Neg. LLF: 18615223.926208366
Iteration: 2, Func. Count: 15, Neg. LLF: 161.77419935781592
Iteration: 3, Func. Count: 23, Neg. LLF: 152.24741253894368
Iteration: 4, Func. Count: 30, Neg. LLF: 151.92148265411092
Iteration: 5, Func. Count: 36, Neg. LLF: 151.91852397301489
Iteration: 6, Func. Count: 42, Neg. LLF: 151.91833744839224
Iteration: 7, Func. Count: 48, Neg. LLF: 151.91832427184687
Iteration: 8, Func. Count: 54, Neg. LLF: 151.91832205564444
Iteration: 9, Func. Count: 59, Neg. LLF: 151.91832205558296
Optimization terminated successfully (Exit mode 0)
Current function value: 151.91832205564444
Iterations: 9
Function evaluations: 59
Gradient evaluations: 9
Iteration: 1, Func. Count: 8, Neg. LLF: 19241896.180965636
Iteration: 2, Func. Count: 17, Neg. LLF: 203.32273502709805
Iteration: 3, Func. Count: 26, Neg. LLF: 152.25154123208725
Iteration: 4, Func. Count: 34, Neg. LLF: 152.0827311273573
Iteration: 5, Func. Count: 41, Neg. LLF: 151.95575624904964
Iteration: 6, Func. Count: 48, Neg. LLF: 151.9525062397403
Iteration: 7, Func. Count: 56, Neg. LLF: 151.91873023105563
Iteration: 8, Func. Count: 63, Neg. LLF: 151.9183389406345
Iteration: 9, Func. Count: 70, Neg. LLF: 151.9183226157629
Iteration: 10, Func. Count: 77, Neg. LLF: 151.91832204573677
Optimization terminated successfully (Exit mode 0)
Current function value: 151.91832204573677
Iterations: 10
Function evaluations: 77
Gradient evaluations: 10
Iteration: 1, Func. Count: 9, Neg. LLF: 534.8729775876051
Iteration: 2, Func. Count: 18, Neg. LLF: 176.8134280097569
Iteration: 3, Func. Count: 27, Neg. LLF: 156.380860928439
Iteration: 4, Func. Count: 36, Neg. LLF: 152.25200150648902
Iteration: 5, Func. Count: 44, Neg. LLF: 152.53740790127392
Iteration: 6, Func. Count: 53, Neg. LLF: 152.0783190041517
Iteration: 7, Func. Count: 61, Neg. LLF: 152.02634548301742
Iteration: 8, Func. Count: 69, Neg. LLF: 154.845055273371
Iteration: 9, Func. Count: 78, Neg. LLF: 151.91166240522256
Iteration: 10, Func. Count: 86, Neg. LLF: 151.77294305690796
Iteration: 11, Func. Count: 94, Neg. LLF: 151.74786460945654
Iteration: 12, Func. Count: 102, Neg. LLF: 151.74176440035848
Iteration: 13, Func. Count: 110, Neg. LLF: 151.74087732916206
Iteration: 14, Func. Count: 118, Neg. LLF: 151.74028932020528
Iteration: 15, Func. Count: 126, Neg. LLF: 151.74017952157195
Iteration: 16, Func. Count: 134, Neg. LLF: 151.7401662536717
Iteration: 17, Func. Count: 142, Neg. LLF: 151.74016544460727
Optimization terminated successfully (Exit mode 0)
Current function value: 151.74016544460727
Iterations: 17
Function evaluations: 142
Gradient evaluations: 17
Iteration: 1, Func. Count: 10, Neg. LLF: 529.2633996194819
Iteration: 2, Func. Count: 20, Neg. LLF: 163.8888629852037
Iteration: 3, Func. Count: 30, Neg. LLF: 163.570617164043
Iteration: 4, Func. Count: 40, Neg. LLF: 152.35358086799687
Iteration: 5, Func. Count: 49, Neg. LLF: 152.16684278446033
Iteration: 6, Func. Count: 58, Neg. LLF: 152.60423438138366
Iteration: 7, Func. Count: 68, Neg. LLF: 152.5614839800677
Iteration: 8, Func. Count: 78, Neg. LLF: 151.86778862963877
Iteration: 9, Func. Count: 87, Neg. LLF: 151.7923986559581
Iteration: 10, Func. Count: 96, Neg. LLF: 151.75304636973524
Iteration: 11, Func. Count: 105, Neg. LLF: 151.74959458204142
Iteration: 12, Func. Count: 114, Neg. LLF: 151.7409553127615
Iteration: 13, Func. Count: 123, Neg. LLF: 151.7403379770248
Iteration: 14, Func. Count: 132, Neg. LLF: 151.74018268291093
Iteration: 15, Func. Count: 141, Neg. LLF: 151.7401676152024
Iteration: 16, Func. Count: 150, Neg. LLF: 151.74016599026402
Iteration: 17, Func. Count: 159, Neg. LLF: 151.7401653375345
Optimization terminated successfully (Exit mode 0)
Current function value: 151.7401653375345
Iterations: 17
Function evaluations: 159
Gradient evaluations: 17
Iteration: 1, Func. Count: 7, Neg. LLF: 159.69902670660494
Iteration: 2, Func. Count: 14, Neg. LLF: 156.7445916717986
Iteration: 3, Func. Count: 22, Neg. LLF: 157.95196536165932
Iteration: 4, Func. Count: 29, Neg. LLF: 156.41805414087446
Iteration: 5, Func. Count: 36, Neg. LLF: 154.59048758868192
Iteration: 6, Func. Count: 42, Neg. LLF: 154.5341672181163
Iteration: 7, Func. Count: 48, Neg. LLF: 154.46681061548193
Iteration: 8, Func. Count: 54, Neg. LLF: 154.43204290930862
Iteration: 9, Func. Count: 60, Neg. LLF: 154.39393285345417
Iteration: 10, Func. Count: 66, Neg. LLF: 154.34839722935584
Iteration: 11, Func. Count: 72, Neg. LLF: 154.31870987915588
Iteration: 12, Func. Count: 78, Neg. LLF: 154.2951289614056
Iteration: 13, Func. Count: 84, Neg. LLF: 154.29312937594614
Iteration: 14, Func. Count: 90, Neg. LLF: 154.29303824946996
Iteration: 15, Func. Count: 96, Neg. LLF: 154.29302422561074
Iteration: 16, Func. Count: 101, Neg. LLF: 154.29302422562304
Optimization terminated successfully (Exit mode 0)
Current function value: 154.29302422561074
Iterations: 16
Function evaluations: 101
Gradient evaluations: 16
Iteration: 1, Func. Count: 8, Neg. LLF: 18940929.459687546
Iteration: 2, Func. Count: 17, Neg. LLF: 202.84683816488524
Iteration: 3, Func. Count: 25, Neg. LLF: 152.50871125243472
Iteration: 4, Func. Count: 33, Neg. LLF: 151.4710526945298
Iteration: 5, Func. Count: 40, Neg. LLF: 151.45671686565362
Iteration: 6, Func. Count: 47, Neg. LLF: 151.4555297509245
Iteration: 7, Func. Count: 54, Neg. LLF: 151.45526447513527
Iteration: 8, Func. Count: 61, Neg. LLF: 151.4552594457388
Iteration: 9, Func. Count: 68, Neg. LLF: 151.4552566695297
Iteration: 10, Func. Count: 75, Neg. LLF: 151.4552556946528
Optimization terminated successfully (Exit mode 0)
Current function value: 151.4552556946528
Iterations: 10
Function evaluations: 75
Gradient evaluations: 10
Iteration: 1, Func. Count: 9, Neg. LLF: 19535971.074428268
Iteration: 2, Func. Count: 19, Neg. LLF: 185.6876526555127
Iteration: 3, Func. Count: 29, Neg. LLF: 152.26012036729006
Iteration: 4, Func. Count: 38, Neg. LLF: 152.2810062023186
Iteration: 5, Func. Count: 47, Neg. LLF: 151.67948411445215
Iteration: 6, Func. Count: 55, Neg. LLF: 151.49530225774362
Iteration: 7, Func. Count: 63, Neg. LLF: 151.4600968702897
Iteration: 8, Func. Count: 71, Neg. LLF: 151.4561473133557
Iteration: 9, Func. Count: 79, Neg. LLF: 151.4552952419073
Iteration: 10, Func. Count: 87, Neg. LLF: 151.4552570497242
Iteration: 11, Func. Count: 95, Neg. LLF: 151.45525604097503
Iteration: 12, Func. Count: 102, Neg. LLF: 151.45525606826146
Optimization terminated successfully (Exit mode 0)
Current function value: 151.45525604097503
Iterations: 12
Function evaluations: 102
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 544.0566771051762
Iteration: 2, Func. Count: 20, Neg. LLF: 168.91380105325987
Iteration: 3, Func. Count: 30, Neg. LLF: 159.93199661459448
Iteration: 4, Func. Count: 40, Neg. LLF: 152.20244820884773
Iteration: 5, Func. Count: 49, Neg. LLF: 153.50869074244062
Iteration: 6, Func. Count: 59, Neg. LLF: 152.57220233128916
Iteration: 7, Func. Count: 70, Neg. LLF: 152.01673764545944
Iteration: 8, Func. Count: 79, Neg. LLF: 152.06745001901757
Iteration: 9, Func. Count: 89, Neg. LLF: 151.99787762641776
Iteration: 10, Func. Count: 98, Neg. LLF: 151.9955053479691
Iteration: 11, Func. Count: 107, Neg. LLF: 151.9954624402853
Iteration: 12, Func. Count: 116, Neg. LLF: 151.9954338010686
Iteration: 13, Func. Count: 125, Neg. LLF: 151.99541906237627
Iteration: 14, Func. Count: 134, Neg. LLF: 151.99541688587666
Iteration: 15, Func. Count: 142, Neg. LLF: 151.9954168857573
Optimization terminated successfully (Exit mode 0)
Current function value: 151.99541688587666
Iterations: 15
Function evaluations: 142
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 535.5857471867184
Iteration: 2, Func. Count: 22, Neg. LLF: 165.34572987053315
Iteration: 3, Func. Count: 33, Neg. LLF: 181.45965941467693
Iteration: 4, Func. Count: 44, Neg. LLF: 157.62276023045825
Iteration: 5, Func. Count: 55, Neg. LLF: 152.47379040108052
Iteration: 6, Func. Count: 66, Neg. LLF: 152.62749608598935
Iteration: 7, Func. Count: 77, Neg. LLF: 152.14761213431862
Iteration: 8, Func. Count: 88, Neg. LLF: 152.09345560107096
Iteration: 9, Func. Count: 99, Neg. LLF: 152.00805688437742
Iteration: 10, Func. Count: 109, Neg. LLF: 151.9997502344705
Iteration: 11, Func. Count: 119, Neg. LLF: 151.99752268327504
Iteration: 12, Func. Count: 129, Neg. LLF: 151.9967747912726
Iteration: 13, Func. Count: 139, Neg. LLF: 151.9959146536725
Iteration: 14, Func. Count: 149, Neg. LLF: 151.99551968219737
Iteration: 15, Func. Count: 159, Neg. LLF: 151.9954523262963
Iteration: 16, Func. Count: 169, Neg. LLF: 151.99542409200905
Iteration: 17, Func. Count: 179, Neg. LLF: 151.99541723927564
Iteration: 18, Func. Count: 189, Neg. LLF: 151.99541610337772
Iteration: 19, Func. Count: 198, Neg. LLF: 151.99541611722685
Optimization terminated successfully (Exit mode 0)
Current function value: 151.99541610337772
Iterations: 19
Function evaluations: 198
Gradient evaluations: 19
Iteration: 1, Func. Count: 8, Neg. LLF: 157.7069111607998
Iteration: 2, Func. Count: 16, Neg. LLF: 157.43225381570235
Iteration: 3, Func. Count: 24, Neg. LLF: 153.2136973034107
Iteration: 4, Func. Count: 32, Neg. LLF: 152.92040628595566
Iteration: 5, Func. Count: 40, Neg. LLF: 152.93660180093795
Iteration: 6, Func. Count: 48, Neg. LLF: 152.46408813159283
Iteration: 7, Func. Count: 55, Neg. LLF: 152.26976967301817
Iteration: 8, Func. Count: 62, Neg. LLF: 152.1756170127367
Iteration: 9, Func. Count: 69, Neg. LLF: 152.14647219769904
Iteration: 10, Func. Count: 76, Neg. LLF: 152.14035843228476
Iteration: 11, Func. Count: 83, Neg. LLF: 152.13480897339488
Iteration: 12, Func. Count: 90, Neg. LLF: 152.1266053319808
Iteration: 13, Func. Count: 97, Neg. LLF: 152.1238200330213
Iteration: 14, Func. Count: 104, Neg. LLF: 152.12350722769
Iteration: 15, Func. Count: 111, Neg. LLF: 152.123494974174
Iteration: 16, Func. Count: 118, Neg. LLF: 152.12349448182388
Optimization terminated successfully (Exit mode 0)
Current function value: 152.12349448182388
Iterations: 16
Function evaluations: 118
Gradient evaluations: 16
Iteration: 1, Func. Count: 9, Neg. LLF: 19075631.651680697
Iteration: 2, Func. Count: 19, Neg. LLF: 197.00315970351517
Iteration: 3, Func. Count: 28, Neg. LLF: 152.5236693026909
Iteration: 4, Func. Count: 37, Neg. LLF: 150.41456470114
Iteration: 5, Func. Count: 45, Neg. LLF: 154.73477524712496
Iteration: 6, Func. Count: 54, Neg. LLF: 150.29880520425877
Iteration: 7, Func. Count: 62, Neg. LLF: 150.2740486675738
Iteration: 8, Func. Count: 70, Neg. LLF: 150.2674038313014
Iteration: 9, Func. Count: 78, Neg. LLF: 150.26493901612236
Iteration: 10, Func. Count: 86, Neg. LLF: 150.26231056859865
Iteration: 11, Func. Count: 94, Neg. LLF: 150.2588086105925
Iteration: 12, Func. Count: 102, Neg. LLF: 150.25568937359915
Iteration: 13, Func. Count: 110, Neg. LLF: 150.2543297752424
Iteration: 14, Func. Count: 118, Neg. LLF: 150.2540818108975
Iteration: 15, Func. Count: 126, Neg. LLF: 150.25404846511853
Iteration: 16, Func. Count: 134, Neg. LLF: 150.25404555512804
Iteration: 17, Func. Count: 141, Neg. LLF: 150.25404555516124
Optimization terminated successfully (Exit mode 0)
Current function value: 150.25404555512804
Iterations: 17
Function evaluations: 141
Gradient evaluations: 17
Iteration: 1, Func. Count: 10, Neg. LLF: 554.9968783666519
Iteration: 2, Func. Count: 20, Neg. LLF: 7431202.832859036
Iteration: 3, Func. Count: 30, Neg. LLF: 174.498617443929
Iteration: 4, Func. Count: 40, Neg. LLF: 150.77015946455217
Iteration: 5, Func. Count: 49, Neg. LLF: 151.1484018155804
Iteration: 6, Func. Count: 59, Neg. LLF: 150.39071272462712
Iteration: 7, Func. Count: 68, Neg. LLF: 150.31232348563157
Iteration: 8, Func. Count: 77, Neg. LLF: 150.28721475084203
Iteration: 9, Func. Count: 86, Neg. LLF: 150.30599904403496
Iteration: 10, Func. Count: 96, Neg. LLF: 150.26043662374292
Iteration: 11, Func. Count: 105, Neg. LLF: 150.24749239610114
Iteration: 12, Func. Count: 114, Neg. LLF: 150.24008128021975
Iteration: 13, Func. Count: 123, Neg. LLF: 150.23715976749048
Iteration: 14, Func. Count: 132, Neg. LLF: 150.23676979109973
Iteration: 15, Func. Count: 141, Neg. LLF: 150.23675739165782
Iteration: 16, Func. Count: 150, Neg. LLF: 150.236754337545
Iteration: 17, Func. Count: 159, Neg. LLF: 150.23675309594827
Iteration: 18, Func. Count: 167, Neg. LLF: 150.23675309593395
Optimization terminated successfully (Exit mode 0)
Current function value: 150.23675309594827
Iterations: 18
Function evaluations: 167
Gradient evaluations: 18
Iteration: 1, Func. Count: 11, Neg. LLF: 550.6790173247626
Iteration: 2, Func. Count: 22, Neg. LLF: 4055413.608328152
Iteration: 3, Func. Count: 33, Neg. LLF: 175.52983667586665
Iteration: 4, Func. Count: 44, Neg. LLF: 150.6190650244312
Iteration: 5, Func. Count: 54, Neg. LLF: 156.91588387048168
Iteration: 6, Func. Count: 65, Neg. LLF: 150.4281531880375
Iteration: 7, Func. Count: 75, Neg. LLF: 150.34338615381517
Iteration: 8, Func. Count: 85, Neg. LLF: 151.05255003270477
Iteration: 9, Func. Count: 97, Neg. LLF: 150.2746714304193
Iteration: 10, Func. Count: 107, Neg. LLF: 150.24347168943387
Iteration: 11, Func. Count: 117, Neg. LLF: 150.22844283566604
Iteration: 12, Func. Count: 127, Neg. LLF: 150.226172699269
Iteration: 13, Func. Count: 137, Neg. LLF: 150.22558753966115
Iteration: 14, Func. Count: 147, Neg. LLF: 150.22521917821854
Iteration: 15, Func. Count: 157, Neg. LLF: 150.22485089034075
Iteration: 16, Func. Count: 167, Neg. LLF: 150.224805942963
Iteration: 17, Func. Count: 177, Neg. LLF: 150.22480178574253
Iteration: 18, Func. Count: 187, Neg. LLF: 150.22480080631806
Optimization terminated successfully (Exit mode 0)
Current function value: 150.22480080631806
Iterations: 18
Function evaluations: 187
Gradient evaluations: 18
Iteration: 1, Func. Count: 12, Neg. LLF: 540.9969126435985
Iteration: 2, Func. Count: 24, Neg. LLF: 234.65243025260338
Iteration: 3, Func. Count: 36, Neg. LLF: 158.99517802054274
Iteration: 4, Func. Count: 48, Neg. LLF: 150.67560388651003
Iteration: 5, Func. Count: 59, Neg. LLF: 157.1982835706916
Iteration: 6, Func. Count: 71, Neg. LLF: 150.41941084326444
Iteration: 7, Func. Count: 82, Neg. LLF: 150.60318128626622
Iteration: 8, Func. Count: 94, Neg. LLF: 150.30163910523498
Iteration: 9, Func. Count: 105, Neg. LLF: 150.27583860866037
Iteration: 10, Func. Count: 116, Neg. LLF: 150.25046616230503
Iteration: 11, Func. Count: 127, Neg. LLF: 150.23078876734618
Iteration: 12, Func. Count: 138, Neg. LLF: 150.23367270319136
Iteration: 13, Func. Count: 150, Neg. LLF: 150.22636775573605
Iteration: 14, Func. Count: 161, Neg. LLF: 150.2257327675474
Iteration: 15, Func. Count: 172, Neg. LLF: 150.22513182408574
Iteration: 16, Func. Count: 183, Neg. LLF: 150.22491897342672
Iteration: 17, Func. Count: 194, Neg. LLF: 150.2248201769515
Iteration: 18, Func. Count: 205, Neg. LLF: 150.2248017618179
Iteration: 19, Func. Count: 216, Neg. LLF: 150.22480058250807
Iteration: 20, Func. Count: 226, Neg. LLF: 150.22480060069014
Optimization terminated successfully (Exit mode 0)
Current function value: 150.22480058250807
Iterations: 20
Function evaluations: 226
Gradient evaluations: 20
Iteration: 1, Func. Count: 5, Neg. LLF: 159.14730198202454
Iteration: 2, Func. Count: 10, Neg. LLF: 158.2346157163574
Iteration: 3, Func. Count: 14, Neg. LLF: 158.16655368757603
Iteration: 4, Func. Count: 18, Neg. LLF: 158.13366447323273
Iteration: 5, Func. Count: 22, Neg. LLF: 158.10988147555696
Iteration: 6, Func. Count: 26, Neg. LLF: 158.04975098024934
Iteration: 7, Func. Count: 30, Neg. LLF: 158.03642988145236
Iteration: 8, Func. Count: 34, Neg. LLF: 158.03515786307105
Iteration: 9, Func. Count: 38, Neg. LLF: 158.03513723736495
Iteration: 10, Func. Count: 42, Neg. LLF: 158.0351364384621
Optimization terminated successfully (Exit mode 0)
Current function value: 158.0351364384621
Iterations: 10
Function evaluations: 42
Gradient evaluations: 10
Iteration: 1, Func. Count: 6, Neg. LLF: 18513345.75424912
Iteration: 2, Func. Count: 13, Neg. LLF: 1122.1898958340307
Iteration: 3, Func. Count: 19, Neg. LLF: 155.6462590150732
Iteration: 4, Func. Count: 25, Neg. LLF: 162.43763802502832
Iteration: 5, Func. Count: 32, Neg. LLF: 154.95643009903495
Iteration: 6, Func. Count: 38, Neg. LLF: 156.18636132865163
Iteration: 7, Func. Count: 44, Neg. LLF: 154.84218301507144
Iteration: 8, Func. Count: 50, Neg. LLF: 155.44471930645267
Iteration: 9, Func. Count: 56, Neg. LLF: 154.0217333979112
Iteration: 10, Func. Count: 61, Neg. LLF: 153.46034592311864
Iteration: 11, Func. Count: 66, Neg. LLF: 153.45826868999498
Iteration: 12, Func. Count: 71, Neg. LLF: 153.46297790052904
Iteration: 13, Func. Count: 77, Neg. LLF: 153.4581862144938
Iteration: 14, Func. Count: 82, Neg. LLF: 153.45818416367453
Iteration: 15, Func. Count: 86, Neg. LLF: 153.45818416369193
Optimization terminated successfully (Exit mode 0)
Current function value: 153.45818416367453
Iterations: 15
Function evaluations: 86
Gradient evaluations: 15
Iteration: 1, Func. Count: 7, Neg. LLF: 398.2101398452506
Iteration: 2, Func. Count: 15, Neg. LLF: 68362.53074559048
Iteration: 3, Func. Count: 23, Neg. LLF: 156.59762336311363
Iteration: 4, Func. Count: 30, Neg. LLF: 155.13628209446915
Iteration: 5, Func. Count: 36, Neg. LLF: 155.64540033764172
Iteration: 6, Func. Count: 43, Neg. LLF: 153.92713536707325
Iteration: 7, Func. Count: 49, Neg. LLF: 153.7799454057804
Iteration: 8, Func. Count: 56, Neg. LLF: 153.48318617709285
Iteration: 9, Func. Count: 62, Neg. LLF: 153.4807138365995
Iteration: 10, Func. Count: 68, Neg. LLF: 153.4614209624643
Iteration: 11, Func. Count: 74, Neg. LLF: 153.45917798709473
Iteration: 12, Func. Count: 80, Neg. LLF: 153.45826550105204
Iteration: 13, Func. Count: 86, Neg. LLF: 153.4668428637698
Iteration: 14, Func. Count: 93, Neg. LLF: 153.4581883424349
Iteration: 15, Func. Count: 99, Neg. LLF: 153.45818427040413
Iteration: 16, Func. Count: 104, Neg. LLF: 153.45818427265428
Optimization terminated successfully (Exit mode 0)
Current function value: 153.45818427040413
Iterations: 16
Function evaluations: 104
Gradient evaluations: 16
Iteration: 1, Func. Count: 8, Neg. LLF: 404.16666167998574
Iteration: 2, Func. Count: 16, Neg. LLF: 2426.5607154080767
Iteration: 3, Func. Count: 25, Neg. LLF: 155.61935590492618
Iteration: 4, Func. Count: 33, Neg. LLF: 156.21803341458542
Iteration: 5, Func. Count: 41, Neg. LLF: 154.56328786406903
Iteration: 6, Func. Count: 49, Neg. LLF: 154.13995011468685
Iteration: 7, Func. Count: 56, Neg. LLF: 155.2889158793883
Iteration: 8, Func. Count: 64, Neg. LLF: 153.6675908442571
Iteration: 9, Func. Count: 71, Neg. LLF: 153.63744979441884
Iteration: 10, Func. Count: 78, Neg. LLF: 153.6050470940615
Iteration: 11, Func. Count: 85, Neg. LLF: 153.59385448448458
Iteration: 12, Func. Count: 92, Neg. LLF: 153.58830283984202
Iteration: 13, Func. Count: 99, Neg. LLF: 153.57066279826591
Iteration: 14, Func. Count: 106, Neg. LLF: 153.53654793385016
Iteration: 15, Func. Count: 113, Neg. LLF: 153.5286601148732
Iteration: 16, Func. Count: 120, Neg. LLF: 153.5250961882803
Iteration: 17, Func. Count: 127, Neg. LLF: 153.5176663071442
Iteration: 18, Func. Count: 134, Neg. LLF: 153.5028411618477
Iteration: 19, Func. Count: 141, Neg. LLF: 153.46317448889644
Iteration: 20, Func. Count: 148, Neg. LLF: 153.46111209874576
Iteration: 21, Func. Count: 155, Neg. LLF: 153.4586287005149
Iteration: 22, Func. Count: 162, Neg. LLF: 153.4584439873211
Iteration: 23, Func. Count: 169, Neg. LLF: 153.45818453609536
Iteration: 24, Func. Count: 175, Neg. LLF: 153.45818454065477
Optimization terminated successfully (Exit mode 0)
Current function value: 153.45818453609536
Iterations: 24
Function evaluations: 175
Gradient evaluations: 24
Iteration: 1, Func. Count: 9, Neg. LLF: 406.11970874288596
Iteration: 2, Func. Count: 18, Neg. LLF: 1721.6300345319266
Iteration: 3, Func. Count: 27, Neg. LLF: 155.93349689612756
Iteration: 4, Func. Count: 36, Neg. LLF: 154.7730734415
Iteration: 5, Func. Count: 44, Neg. LLF: 158.55546153899542
Iteration: 6, Func. Count: 54, Neg. LLF: 156.15845997027998
Iteration: 7, Func. Count: 63, Neg. LLF: 154.1190130620515
Iteration: 8, Func. Count: 71, Neg. LLF: 153.63862221510072
Iteration: 9, Func. Count: 79, Neg. LLF: 153.6709003510749
Iteration: 10, Func. Count: 88, Neg. LLF: 153.6091638852957
Iteration: 11, Func. Count: 96, Neg. LLF: 153.58612615937895
Iteration: 12, Func. Count: 104, Neg. LLF: 153.56582605798866
Iteration: 13, Func. Count: 112, Neg. LLF: 153.542462248562
Iteration: 14, Func. Count: 120, Neg. LLF: 153.54088415973567
Iteration: 15, Func. Count: 128, Neg. LLF: 153.53366830146484
Iteration: 16, Func. Count: 136, Neg. LLF: 153.51166228094627
Iteration: 17, Func. Count: 144, Neg. LLF: 153.48049846021107
Iteration: 18, Func. Count: 152, Neg. LLF: 153.45841826811977
Iteration: 19, Func. Count: 160, Neg. LLF: 153.4583318795325
Iteration: 20, Func. Count: 168, Neg. LLF: 17815056.205951165
Iteration: 21, Func. Count: 180, Neg. LLF: 153.45820206899836
Iteration: 22, Func. Count: 188, Neg. LLF: 153.4581848315924
Iteration: 23, Func. Count: 196, Neg. LLF: 153.45818417349753
Optimization terminated successfully (Exit mode 0)
Current function value: 153.45818417349753
Iterations: 24
Function evaluations: 196
Gradient evaluations: 23
Iteration: 1, Func. Count: 6, Neg. LLF: 157.77684008176814
Iteration: 2, Func. Count: 12, Neg. LLF: 156.73363911381045
Iteration: 3, Func. Count: 18, Neg. LLF: 163.3916225245131
Iteration: 4, Func. Count: 25, Neg. LLF: 155.80173069135083
Iteration: 5, Func. Count: 31, Neg. LLF: 155.63768775750077
Iteration: 6, Func. Count: 36, Neg. LLF: 155.62271765602145
Iteration: 7, Func. Count: 41, Neg. LLF: 155.59226874853883
Iteration: 8, Func. Count: 46, Neg. LLF: 155.58085967480787
Iteration: 9, Func. Count: 51, Neg. LLF: 155.5780711414627
Iteration: 10, Func. Count: 56, Neg. LLF: 155.57713892474848
Iteration: 11, Func. Count: 61, Neg. LLF: 155.5766735527352
Iteration: 12, Func. Count: 66, Neg. LLF: 155.5766126201629
Iteration: 13, Func. Count: 71, Neg. LLF: 155.57660889856618
Iteration: 14, Func. Count: 75, Neg. LLF: 155.57660889857482
Optimization terminated successfully (Exit mode 0)
Current function value: 155.57660889856618
Iterations: 14
Function evaluations: 75
Gradient evaluations: 14
Iteration: 1, Func. Count: 7, Neg. LLF: 18054828.71102813
Iteration: 2, Func. Count: 15, Neg. LLF: 156.20200578834476
Iteration: 3, Func. Count: 22, Neg. LLF: 152.1042702136379
Iteration: 4, Func. Count: 28, Neg. LLF: 152.09393218484053
Iteration: 5, Func. Count: 34, Neg. LLF: 152.08555044254211
Iteration: 6, Func. Count: 40, Neg. LLF: 152.1006884153869
Iteration: 7, Func. Count: 47, Neg. LLF: 152.08439565151505
Iteration: 8, Func. Count: 53, Neg. LLF: 152.0843543870564
Iteration: 9, Func. Count: 59, Neg. LLF: 152.08435285242334
Iteration: 10, Func. Count: 64, Neg. LLF: 152.08435285211135
Optimization terminated successfully (Exit mode 0)
Current function value: 152.08435285242334
Iterations: 10
Function evaluations: 64
Gradient evaluations: 10
Iteration: 1, Func. Count: 8, Neg. LLF: 17824024.172575925
Iteration: 2, Func. Count: 17, Neg. LLF: 157.22306149673824
Iteration: 3, Func. Count: 25, Neg. LLF: 152.72159804050887
Iteration: 4, Func. Count: 33, Neg. LLF: 152.18514902323355
Iteration: 5, Func. Count: 40, Neg. LLF: 152.1625087978411
Iteration: 6, Func. Count: 47, Neg. LLF: 152.1337040406273
Iteration: 7, Func. Count: 54, Neg. LLF: 152.12506937780515
Iteration: 8, Func. Count: 61, Neg. LLF: 152.11419805183343
Iteration: 9, Func. Count: 68, Neg. LLF: 152.09010964878112
Iteration: 10, Func. Count: 75, Neg. LLF: 152.085649445404
Iteration: 11, Func. Count: 82, Neg. LLF: 152.08467426855609
Iteration: 12, Func. Count: 89, Neg. LLF: 152.08435948954025
Iteration: 13, Func. Count: 96, Neg. LLF: 152.08435287914818
Iteration: 14, Func. Count: 102, Neg. LLF: 152.08435288347502
Optimization terminated successfully (Exit mode 0)
Current function value: 152.08435287914818
Iterations: 14
Function evaluations: 102
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 403.0419185143152
Iteration: 2, Func. Count: 18, Neg. LLF: 191.67669376577658
Iteration: 3, Func. Count: 27, Neg. LLF: 154.28960069042276
Iteration: 4, Func. Count: 36, Neg. LLF: 152.52773515099088
Iteration: 5, Func. Count: 44, Neg. LLF: 152.5905015919211
Iteration: 6, Func. Count: 53, Neg. LLF: 152.30598147719857
Iteration: 7, Func. Count: 61, Neg. LLF: 152.20750742569086
Iteration: 8, Func. Count: 69, Neg. LLF: 152.21828584202984
Iteration: 9, Func. Count: 78, Neg. LLF: 152.17787140161101
Iteration: 10, Func. Count: 86, Neg. LLF: 152.17214585916355
Iteration: 11, Func. Count: 94, Neg. LLF: 152.15880390290346
Iteration: 12, Func. Count: 102, Neg. LLF: 152.14221589556726
Iteration: 13, Func. Count: 110, Neg. LLF: 152.12234765874047
Iteration: 14, Func. Count: 118, Neg. LLF: 152.0943834629424
Iteration: 15, Func. Count: 126, Neg. LLF: 152.0876589874661
Iteration: 16, Func. Count: 134, Neg. LLF: 152.0845969439688
Iteration: 17, Func. Count: 142, Neg. LLF: 152.0843558330641
Iteration: 18, Func. Count: 150, Neg. LLF: 152.08435271241336
Iteration: 19, Func. Count: 157, Neg. LLF: 152.08435273114654
Optimization terminated successfully (Exit mode 0)
Current function value: 152.08435271241336
Iterations: 19
Function evaluations: 157
Gradient evaluations: 19
Iteration: 1, Func. Count: 10, Neg. LLF: 407.20422699682064
Iteration: 2, Func. Count: 20, Neg. LLF: 173.99506860230946
Iteration: 3, Func. Count: 30, Neg. LLF: 152.8342302778806
Iteration: 4, Func. Count: 39, Neg. LLF: 152.47233761155903
Iteration: 5, Func. Count: 48, Neg. LLF: 152.39054402443313
Iteration: 6, Func. Count: 57, Neg. LLF: 152.4047191265349
Iteration: 7, Func. Count: 67, Neg. LLF: 152.19635288751834
Iteration: 8, Func. Count: 76, Neg. LLF: 152.17205931759807
Iteration: 9, Func. Count: 85, Neg. LLF: 152.14885392895454
Iteration: 10, Func. Count: 94, Neg. LLF: 152.14087546162096
Iteration: 11, Func. Count: 103, Neg. LLF: 152.13144271048623
Iteration: 12, Func. Count: 112, Neg. LLF: 152.1277234026709
Iteration: 13, Func. Count: 121, Neg. LLF: 152.1201816048686
Iteration: 14, Func. Count: 130, Neg. LLF: 152.08937818467146
Iteration: 15, Func. Count: 139, Neg. LLF: 152.0864081632025
Iteration: 16, Func. Count: 148, Neg. LLF: 152.08466197218445
Iteration: 17, Func. Count: 157, Neg. LLF: 152.08440177275128
Iteration: 18, Func. Count: 166, Neg. LLF: 152.0843558111791
Iteration: 19, Func. Count: 175, Neg. LLF: 152.08435289235558
Iteration: 20, Func. Count: 183, Neg. LLF: 152.08435293812082
Optimization terminated successfully (Exit mode 0)
Current function value: 152.08435289235558
Iterations: 20
Function evaluations: 183
Gradient evaluations: 20
Iteration: 1, Func. Count: 7, Neg. LLF: 159.05948402223055
Iteration: 2, Func. Count: 14, Neg. LLF: 157.0678188136777
Iteration: 3, Func. Count: 22, Neg. LLF: 155.2237486523853
Iteration: 4, Func. Count: 29, Neg. LLF: 154.71172996595698
Iteration: 5, Func. Count: 36, Neg. LLF: 156.0034939213169
Iteration: 6, Func. Count: 43, Neg. LLF: 154.56592934002663
Iteration: 7, Func. Count: 49, Neg. LLF: 154.5554880270719
Iteration: 8, Func. Count: 55, Neg. LLF: 154.54652483380983
Iteration: 9, Func. Count: 61, Neg. LLF: 154.51249032703015
Iteration: 10, Func. Count: 67, Neg. LLF: 154.50393351106362
Iteration: 11, Func. Count: 73, Neg. LLF: 154.50311323478115
Iteration: 12, Func. Count: 79, Neg. LLF: 154.5030224159088
Iteration: 13, Func. Count: 84, Neg. LLF: 154.50302241591393
Optimization terminated successfully (Exit mode 0)
Current function value: 154.5030224159088
Iterations: 13
Function evaluations: 84
Gradient evaluations: 13
Iteration: 1, Func. Count: 8, Neg. LLF: 18211722.923915625
Iteration: 2, Func. Count: 17, Neg. LLF: 159.30771584061853
Iteration: 3, Func. Count: 25, Neg. LLF: 152.26490913693596
Iteration: 4, Func. Count: 32, Neg. LLF: 152.20987946522692
Iteration: 5, Func. Count: 40, Neg. LLF: 151.9234396060336
Iteration: 6, Func. Count: 47, Neg. LLF: 151.9183871239343
Iteration: 7, Func. Count: 54, Neg. LLF: 151.91832978465666
Iteration: 8, Func. Count: 61, Neg. LLF: 151.91832263499336
Iteration: 9, Func. Count: 67, Neg. LLF: 151.91832263454694
Optimization terminated successfully (Exit mode 0)
Current function value: 151.91832263499336
Iterations: 9
Function evaluations: 67
Gradient evaluations: 9
Iteration: 1, Func. Count: 9, Neg. LLF: 17832681.490194976
Iteration: 2, Func. Count: 19, Neg. LLF: 158.72274927607916
Iteration: 3, Func. Count: 28, Neg. LLF: 152.38078958838537
Iteration: 4, Func. Count: 36, Neg. LLF: 152.05798937697844
Iteration: 5, Func. Count: 44, Neg. LLF: 166.89858928902908
Iteration: 6, Func. Count: 53, Neg. LLF: 151.97521187254705
Iteration: 7, Func. Count: 62, Neg. LLF: 151.74615879269484
Iteration: 8, Func. Count: 70, Neg. LLF: 151.7420105183732
Iteration: 9, Func. Count: 78, Neg. LLF: 151.74100240313945
Iteration: 10, Func. Count: 86, Neg. LLF: 151.74029709952094
Iteration: 11, Func. Count: 94, Neg. LLF: 151.7401850635111
Iteration: 12, Func. Count: 102, Neg. LLF: 151.7401689212528
Iteration: 13, Func. Count: 110, Neg. LLF: 151.74016683555027
Iteration: 14, Func. Count: 118, Neg. LLF: 151.74016542551283
Iteration: 15, Func. Count: 125, Neg. LLF: 151.74016542548196
Optimization terminated successfully (Exit mode 0)
Current function value: 151.74016542551283
Iterations: 15
Function evaluations: 125
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 403.8059061949831
Iteration: 2, Func. Count: 20, Neg. LLF: 283.20828006887
Iteration: 3, Func. Count: 30, Neg. LLF: 153.27795457443062
Iteration: 4, Func. Count: 40, Neg. LLF: 152.27764883223102
Iteration: 5, Func. Count: 49, Neg. LLF: 153.90094685166162
Iteration: 6, Func. Count: 59, Neg. LLF: 152.05259674457224
Iteration: 7, Func. Count: 68, Neg. LLF: 152.0133454925916
Iteration: 8, Func. Count: 77, Neg. LLF: 152.7683443892844
Iteration: 9, Func. Count: 87, Neg. LLF: 151.90346039306013
Iteration: 10, Func. Count: 96, Neg. LLF: 151.82302073078858
Iteration: 11, Func. Count: 105, Neg. LLF: 151.7737550613782
Iteration: 12, Func. Count: 114, Neg. LLF: 151.74875751376928
Iteration: 13, Func. Count: 123, Neg. LLF: 151.74067539158062
Iteration: 14, Func. Count: 132, Neg. LLF: 151.74020232862497
Iteration: 15, Func. Count: 141, Neg. LLF: 151.74016671830785
Iteration: 16, Func. Count: 150, Neg. LLF: 151.7401655266183
Iteration: 17, Func. Count: 158, Neg. LLF: 151.74016556098235
Optimization terminated successfully (Exit mode 0)
Current function value: 151.7401655266183
Iterations: 17
Function evaluations: 158
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 406.82602932990784
Iteration: 2, Func. Count: 22, Neg. LLF: 213.4971868182807
Iteration: 3, Func. Count: 33, Neg. LLF: 152.93605329849046
Iteration: 4, Func. Count: 43, Neg. LLF: 155.55424608624577
Iteration: 5, Func. Count: 55, Neg. LLF: 162.00987702012904
Iteration: 6, Func. Count: 66, Neg. LLF: 152.2876092717854
Iteration: 7, Func. Count: 77, Neg. LLF: 152.17096927479284
Iteration: 8, Func. Count: 87, Neg. LLF: 152.14089280707665
Iteration: 9, Func. Count: 97, Neg. LLF: 152.13219962894144
Iteration: 10, Func. Count: 107, Neg. LLF: 152.06862107267514
Iteration: 11, Func. Count: 117, Neg. LLF: 152.03354166144575
Iteration: 12, Func. Count: 127, Neg. LLF: 152.33240099580672
Iteration: 13, Func. Count: 138, Neg. LLF: 152.1717072815533
Iteration: 14, Func. Count: 149, Neg. LLF: 151.8947184267177
Iteration: 15, Func. Count: 159, Neg. LLF: 151.8060493077162
Iteration: 16, Func. Count: 169, Neg. LLF: 151.77358314778314
Iteration: 17, Func. Count: 179, Neg. LLF: 151.74282050392287
Iteration: 18, Func. Count: 189, Neg. LLF: 151.7402741942808
Iteration: 19, Func. Count: 199, Neg. LLF: 151.74017986127973
Iteration: 20, Func. Count: 209, Neg. LLF: 151.74016764693766
Iteration: 21, Func. Count: 219, Neg. LLF: 151.7401654079089
Iteration: 22, Func. Count: 228, Neg. LLF: 151.74016544556184
Optimization terminated successfully (Exit mode 0)
Current function value: 151.7401654079089
Iterations: 22
Function evaluations: 228
Gradient evaluations: 22
Iteration: 1, Func. Count: 8, Neg. LLF: 158.86586483017177
Iteration: 2, Func. Count: 16, Neg. LLF: 157.25682232088482
Iteration: 3, Func. Count: 25, Neg. LLF: 156.5989025382007
Iteration: 4, Func. Count: 34, Neg. LLF: 158.94486028039697
Iteration: 5, Func. Count: 42, Neg. LLF: 154.5156351030979
Iteration: 6, Func. Count: 50, Neg. LLF: 154.7872461553277
Iteration: 7, Func. Count: 58, Neg. LLF: 154.3057250607972
Iteration: 8, Func. Count: 65, Neg. LLF: 154.27403971889044
Iteration: 9, Func. Count: 72, Neg. LLF: 154.21887302179093
Iteration: 10, Func. Count: 79, Neg. LLF: 154.1398360681383
Iteration: 11, Func. Count: 86, Neg. LLF: 154.09896968359564
Iteration: 12, Func. Count: 93, Neg. LLF: 154.0901972988872
Iteration: 13, Func. Count: 100, Neg. LLF: 154.0898168298592
Iteration: 14, Func. Count: 107, Neg. LLF: 154.08981355526672
Iteration: 15, Func. Count: 113, Neg. LLF: 154.08981355523017
Optimization terminated successfully (Exit mode 0)
Current function value: 154.08981355526672
Iterations: 15
Function evaluations: 113
Gradient evaluations: 15
Iteration: 1, Func. Count: 9, Neg. LLF: 18456184.307434514
Iteration: 2, Func. Count: 19, Neg. LLF: 192.71330388991743
Iteration: 3, Func. Count: 28, Neg. LLF: 152.63512414884318
Iteration: 4, Func. Count: 37, Neg. LLF: 151.47776575119929
Iteration: 5, Func. Count: 45, Neg. LLF: 151.45688569299435
Iteration: 6, Func. Count: 53, Neg. LLF: 151.4556365082571
Iteration: 7, Func. Count: 61, Neg. LLF: 151.45530160221736
Iteration: 8, Func. Count: 69, Neg. LLF: 151.45527170605268
Iteration: 9, Func. Count: 77, Neg. LLF: 151.4552569940743
Iteration: 10, Func. Count: 85, Neg. LLF: 151.45525574473027
Iteration: 11, Func. Count: 92, Neg. LLF: 151.45525574467814
Optimization terminated successfully (Exit mode 0)
Current function value: 151.45525574473027
Iterations: 11
Function evaluations: 92
Gradient evaluations: 11
Iteration: 1, Func. Count: 10, Neg. LLF: 17897148.165962506
Iteration: 2, Func. Count: 21, Neg. LLF: 164.9565732965578
Iteration: 3, Func. Count: 31, Neg. LLF: 152.8970056187885
Iteration: 4, Func. Count: 41, Neg. LLF: 152.3262263663883
Iteration: 5, Func. Count: 51, Neg. LLF: 152.2993946857011
Iteration: 6, Func. Count: 61, Neg. LLF: 151.6057795095437
Iteration: 7, Func. Count: 70, Neg. LLF: 151.47618804836367
Iteration: 8, Func. Count: 79, Neg. LLF: 151.46377430029176
Iteration: 9, Func. Count: 88, Neg. LLF: 151.45801970373594
Iteration: 10, Func. Count: 97, Neg. LLF: 151.45564750590668
Iteration: 11, Func. Count: 106, Neg. LLF: 151.4552657787108
Iteration: 12, Func. Count: 115, Neg. LLF: 151.45525575152567
Iteration: 13, Func. Count: 123, Neg. LLF: 151.4552557788065
Optimization terminated successfully (Exit mode 0)
Current function value: 151.45525575152567
Iterations: 13
Function evaluations: 123
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 408.18008195188105
Iteration: 2, Func. Count: 22, Neg. LLF: 200.1467263499059
Iteration: 3, Func. Count: 33, Neg. LLF: 153.34185256437942
Iteration: 4, Func. Count: 44, Neg. LLF: 152.29914826667698
Iteration: 5, Func. Count: 54, Neg. LLF: 154.98006680546652
Iteration: 6, Func. Count: 65, Neg. LLF: 152.36777462946696
Iteration: 7, Func. Count: 76, Neg. LLF: 152.04836192684652
Iteration: 8, Func. Count: 86, Neg. LLF: 152.01767954834148
Iteration: 9, Func. Count: 96, Neg. LLF: 151.9992532233576
Iteration: 10, Func. Count: 106, Neg. LLF: 151.99707381567654
Iteration: 11, Func. Count: 116, Neg. LLF: 151.9961837756218
Iteration: 12, Func. Count: 126, Neg. LLF: 151.99574893296383
Iteration: 13, Func. Count: 136, Neg. LLF: 151.99553127339195
Iteration: 14, Func. Count: 146, Neg. LLF: 151.9954393244048
Iteration: 15, Func. Count: 156, Neg. LLF: 151.99541802442224
Iteration: 16, Func. Count: 166, Neg. LLF: 151.9954161558338
Iteration: 17, Func. Count: 175, Neg. LLF: 151.99541615587412
Optimization terminated successfully (Exit mode 0)
Current function value: 151.9954161558338
Iterations: 17
Function evaluations: 175
Gradient evaluations: 17
Iteration: 1, Func. Count: 12, Neg. LLF: 411.0241109793296
Iteration: 2, Func. Count: 24, Neg. LLF: 203.15635997636028
Iteration: 3, Func. Count: 36, Neg. LLF: 154.1207105181834
Iteration: 4, Func. Count: 48, Neg. LLF: 152.4364721802188
Iteration: 5, Func. Count: 59, Neg. LLF: 154.4375041762096
Iteration: 6, Func. Count: 71, Neg. LLF: 173.69864800352784
Iteration: 7, Func. Count: 83, Neg. LLF: 152.48168425860575
Iteration: 8, Func. Count: 95, Neg. LLF: 152.0137286573708
Iteration: 9, Func. Count: 106, Neg. LLF: 152.00547660505683
Iteration: 10, Func. Count: 117, Neg. LLF: 152.00108435862606
Iteration: 11, Func. Count: 128, Neg. LLF: 151.997148554839
Iteration: 12, Func. Count: 139, Neg. LLF: 151.9959793145623
Iteration: 13, Func. Count: 150, Neg. LLF: 151.99557197520545
Iteration: 14, Func. Count: 161, Neg. LLF: 151.99547140927655
Iteration: 15, Func. Count: 172, Neg. LLF: 151.99542040510357
Iteration: 16, Func. Count: 183, Neg. LLF: 151.99541709951987
Iteration: 17, Func. Count: 194, Neg. LLF: 151.9954162132332
Optimization terminated successfully (Exit mode 0)
Current function value: 151.9954162132332
Iterations: 17
Function evaluations: 194
Gradient evaluations: 17
Iteration: 1, Func. Count: 9, Neg. LLF: 156.62329730419276
Iteration: 2, Func. Count: 18, Neg. LLF: 155.80383656030583
Iteration: 3, Func. Count: 27, Neg. LLF: 157.0825178720355
Iteration: 4, Func. Count: 36, Neg. LLF: 160.15458755853393
Iteration: 5, Func. Count: 46, Neg. LLF: 152.09395919121684
Iteration: 6, Func. Count: 54, Neg. LLF: 152.03398470170418
Iteration: 7, Func. Count: 62, Neg. LLF: 151.9796267021955
Iteration: 8, Func. Count: 70, Neg. LLF: 151.91396701513534
Iteration: 9, Func. Count: 78, Neg. LLF: 151.75065331964618
Iteration: 10, Func. Count: 86, Neg. LLF: 151.73411346177534
Iteration: 11, Func. Count: 94, Neg. LLF: 151.73187989511632
Iteration: 12, Func. Count: 103, Neg. LLF: 151.70115278692873
Iteration: 13, Func. Count: 111, Neg. LLF: 151.69264890927641
Iteration: 14, Func. Count: 119, Neg. LLF: 151.69169961249693
Iteration: 15, Func. Count: 127, Neg. LLF: 151.69161529096868
Iteration: 16, Func. Count: 134, Neg. LLF: 151.6916152909712
Optimization terminated successfully (Exit mode 0)
Current function value: 151.69161529096868
Iterations: 16
Function evaluations: 134
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 18565477.248334523
Iteration: 2, Func. Count: 21, Neg. LLF: 189.71644876210578
Iteration: 3, Func. Count: 31, Neg. LLF: 153.43883225780073
Iteration: 4, Func. Count: 41, Neg. LLF: 150.42018288454236
Iteration: 5, Func. Count: 50, Neg. LLF: 155.69823038014337
Iteration: 6, Func. Count: 60, Neg. LLF: 150.30340340990278
Iteration: 7, Func. Count: 69, Neg. LLF: 150.2779886672913
Iteration: 8, Func. Count: 78, Neg. LLF: 150.2695777159534
Iteration: 9, Func. Count: 87, Neg. LLF: 150.26634216816146
Iteration: 10, Func. Count: 96, Neg. LLF: 150.26300856193484
Iteration: 11, Func. Count: 105, Neg. LLF: 150.25894910225958
Iteration: 12, Func. Count: 114, Neg. LLF: 150.2556262830808
Iteration: 13, Func. Count: 123, Neg. LLF: 150.2543222606001
Iteration: 14, Func. Count: 132, Neg. LLF: 150.254085371881
Iteration: 15, Func. Count: 141, Neg. LLF: 150.2540484676995
Iteration: 16, Func. Count: 150, Neg. LLF: 150.25404554629768
Iteration: 17, Func. Count: 158, Neg. LLF: 150.25404554633326
Optimization terminated successfully (Exit mode 0)
Current function value: 150.25404554629768
Iterations: 17
Function evaluations: 158
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 17938534.727658015
Iteration: 2, Func. Count: 23, Neg. LLF: 209.04545948639162
Iteration: 3, Func. Count: 34, Neg. LLF: 152.6138455951259
Iteration: 4, Func. Count: 45, Neg. LLF: 150.62859914975462
Iteration: 5, Func. Count: 55, Neg. LLF: 151.39430495141832
Iteration: 6, Func. Count: 66, Neg. LLF: 152.25934321553171
Iteration: 7, Func. Count: 77, Neg. LLF: 150.27316215444873
Iteration: 8, Func. Count: 87, Neg. LLF: 150.26582140158771
Iteration: 9, Func. Count: 97, Neg. LLF: 150.25254408268432
Iteration: 10, Func. Count: 107, Neg. LLF: 150.2447382081363
Iteration: 11, Func. Count: 117, Neg. LLF: 150.23931117074025
Iteration: 12, Func. Count: 127, Neg. LLF: 150.2374151897562
Iteration: 13, Func. Count: 137, Neg. LLF: 150.23692571923957
Iteration: 14, Func. Count: 147, Neg. LLF: 150.23678525122716
Iteration: 15, Func. Count: 157, Neg. LLF: 150.2367553312677
Iteration: 16, Func. Count: 167, Neg. LLF: 150.23675312509107
Iteration: 17, Func. Count: 176, Neg. LLF: 150.2367531250336
Optimization terminated successfully (Exit mode 0)
Current function value: 150.23675312509107
Iterations: 17
Function evaluations: 176
Gradient evaluations: 17
Iteration: 1, Func. Count: 12, Neg. LLF: 236.4501012509917
Iteration: 2, Func. Count: 24, Neg. LLF: 2806890.996220014
Iteration: 3, Func. Count: 36, Neg. LLF: 153.37299063601762
Iteration: 4, Func. Count: 48, Neg. LLF: 154.18225821631236
Iteration: 5, Func. Count: 60, Neg. LLF: 150.74787240828167
Iteration: 6, Func. Count: 71, Neg. LLF: 150.47675378157865
Iteration: 7, Func. Count: 82, Neg. LLF: 151.20059566618488
Iteration: 8, Func. Count: 94, Neg. LLF: 150.29672146451307
Iteration: 9, Func. Count: 106, Neg. LLF: 150.24574314651127
Iteration: 10, Func. Count: 117, Neg. LLF: 150.24658099332257
Iteration: 11, Func. Count: 129, Neg. LLF: 150.23356264025279
Iteration: 12, Func. Count: 140, Neg. LLF: 150.22787008504366
Iteration: 13, Func. Count: 151, Neg. LLF: 150.22653416683872
Iteration: 14, Func. Count: 162, Neg. LLF: 150.22519347697363
Iteration: 15, Func. Count: 173, Neg. LLF: 150.2248867420405
Iteration: 16, Func. Count: 184, Neg. LLF: 150.22480938949553
Iteration: 17, Func. Count: 195, Neg. LLF: 150.2248010576542
Iteration: 18, Func. Count: 205, Neg. LLF: 150.2248010578263
Optimization terminated successfully (Exit mode 0)
Current function value: 150.2248010576542
Iterations: 18
Function evaluations: 205
Gradient evaluations: 18
Iteration: 1, Func. Count: 13, Neg. LLF: 413.7253530145854
Iteration: 2, Func. Count: 26, Neg. LLF: 2573701.691960297
Iteration: 3, Func. Count: 39, Neg. LLF: 155.17793380530884
Iteration: 4, Func. Count: 52, Neg. LLF: 152.82048230610013
Iteration: 5, Func. Count: 65, Neg. LLF: 155.25451463703087
Iteration: 6, Func. Count: 78, Neg. LLF: 150.56705463346836
Iteration: 7, Func. Count: 90, Neg. LLF: 150.378675000051
Iteration: 8, Func. Count: 102, Neg. LLF: 150.54931724317248
Iteration: 9, Func. Count: 115, Neg. LLF: 150.27430056443816
Iteration: 10, Func. Count: 127, Neg. LLF: 150.25003975173345
Iteration: 11, Func. Count: 139, Neg. LLF: 150.2376362292789
Iteration: 12, Func. Count: 151, Neg. LLF: 150.2330284949669
Iteration: 13, Func. Count: 163, Neg. LLF: 150.22846770124542
Iteration: 14, Func. Count: 175, Neg. LLF: 150.22560874072684
Iteration: 15, Func. Count: 187, Neg. LLF: 150.22488017357293
Iteration: 16, Func. Count: 199, Neg. LLF: 150.22480514158624
Iteration: 17, Func. Count: 211, Neg. LLF: 150.22480162428334
Iteration: 18, Func. Count: 223, Neg. LLF: 150.22480062633434
Optimization terminated successfully (Exit mode 0)
Current function value: 150.22480062633434
Iterations: 18
Function evaluations: 223
Gradient evaluations: 18
Iteration: 1, Func. Count: 6, Neg. LLF: 159.89640903195618
Iteration: 2, Func. Count: 12, Neg. LLF: 159.2211342226248
Iteration: 3, Func. Count: 19, Neg. LLF: 157.6679738786843
Iteration: 4, Func. Count: 25, Neg. LLF: 157.54598006244314
Iteration: 5, Func. Count: 30, Neg. LLF: 157.5324667137703
Iteration: 6, Func. Count: 35, Neg. LLF: 157.52576075730997
Iteration: 7, Func. Count: 40, Neg. LLF: 157.4959148764977
Iteration: 8, Func. Count: 45, Neg. LLF: 157.46134077625624
Iteration: 9, Func. Count: 50, Neg. LLF: 157.43144562617042
Iteration: 10, Func. Count: 55, Neg. LLF: 157.41909170853518
Iteration: 11, Func. Count: 60, Neg. LLF: 157.41574735059586
Iteration: 12, Func. Count: 65, Neg. LLF: 157.41573473610845
Iteration: 13, Func. Count: 69, Neg. LLF: 157.41573473600988
Optimization terminated successfully (Exit mode 0)
Current function value: 157.41573473610845
Iterations: 13
Function evaluations: 69
Gradient evaluations: 13
Iteration: 1, Func. Count: 7, Neg. LLF: 1258.0441772252796
Iteration: 2, Func. Count: 15, Neg. LLF: 4435.375771047296
Iteration: 3, Func. Count: 23, Neg. LLF: 159.171392194475
Iteration: 4, Func. Count: 30, Neg. LLF: 155.8660719024004
Iteration: 5, Func. Count: 37, Neg. LLF: 155.06552278961084
Iteration: 6, Func. Count: 43, Neg. LLF: 166.26303388089983
Iteration: 7, Func. Count: 50, Neg. LLF: 154.11595463117146
Iteration: 8, Func. Count: 57, Neg. LLF: 153.4960205051051
Iteration: 9, Func. Count: 63, Neg. LLF: 153.4596128483378
Iteration: 10, Func. Count: 69, Neg. LLF: 153.45837411373154
Iteration: 11, Func. Count: 75, Neg. LLF: 153.45818546988409
Iteration: 12, Func. Count: 81, Neg. LLF: 153.45818423584754
Iteration: 13, Func. Count: 86, Neg. LLF: 153.45818423491244
Optimization terminated successfully (Exit mode 0)
Current function value: 153.45818423584754
Iterations: 13
Function evaluations: 86
Gradient evaluations: 13
Iteration: 1, Func. Count: 8, Neg. LLF: 3704.679465790999
Iteration: 2, Func. Count: 17, Neg. LLF: 2115837.382775931
Iteration: 3, Func. Count: 26, Neg. LLF: 157.97054978979455
Iteration: 4, Func. Count: 34, Neg. LLF: 156.58320702306838
Iteration: 5, Func. Count: 42, Neg. LLF: 155.6081610092974
Iteration: 6, Func. Count: 50, Neg. LLF: 154.8222515891975
Iteration: 7, Func. Count: 58, Neg. LLF: 154.96348310624086
Iteration: 8, Func. Count: 66, Neg. LLF: 154.49645664443543
Iteration: 9, Func. Count: 73, Neg. LLF: 154.8978753500742
Iteration: 10, Func. Count: 81, Neg. LLF: 154.0463758402628
Iteration: 11, Func. Count: 88, Neg. LLF: 153.7177303523013
Iteration: 12, Func. Count: 95, Neg. LLF: 153.71413923171625
Iteration: 13, Func. Count: 103, Neg. LLF: 153.63315181429272
Iteration: 14, Func. Count: 110, Neg. LLF: 153.6161795349198
Iteration: 15, Func. Count: 117, Neg. LLF: 153.59243365745684
Iteration: 16, Func. Count: 124, Neg. LLF: 153.5759096590308
Iteration: 17, Func. Count: 131, Neg. LLF: 153.55360197447243
Iteration: 18, Func. Count: 138, Neg. LLF: 153.53085426855375
Iteration: 19, Func. Count: 145, Neg. LLF: 153.5083965844745
Iteration: 20, Func. Count: 152, Neg. LLF: 153.47054460261984
Iteration: 21, Func. Count: 159, Neg. LLF: 153.45849376944216
Iteration: 22, Func. Count: 166, Neg. LLF: 153.45834796628566
Iteration: 23, Func. Count: 173, Neg. LLF: 153.45828810295603
Iteration: 24, Func. Count: 180, Neg. LLF: 17813061.996217567
Iteration: 25, Func. Count: 191, Neg. LLF: 153.4583285155081
Iteration: 26, Func. Count: 199, Neg. LLF: 153.45818415173676
Iteration: 27, Func. Count: 205, Neg. LLF: 153.45818415419686
Optimization terminated successfully (Exit mode 0)
Current function value: 153.45818415173676
Iterations: 28
Function evaluations: 205
Gradient evaluations: 27
Iteration: 1, Func. Count: 9, Neg. LLF: 408.47462979771916
Iteration: 2, Func. Count: 18, Neg. LLF: 7285.644419850966
Iteration: 3, Func. Count: 28, Neg. LLF: 159.85502161737514
Iteration: 4, Func. Count: 37, Neg. LLF: 154.74179752852362
Iteration: 5, Func. Count: 45, Neg. LLF: 154.44694133157898
Iteration: 6, Func. Count: 53, Neg. LLF: 154.0812034071609
Iteration: 7, Func. Count: 61, Neg. LLF: 156.70594650863427
Iteration: 8, Func. Count: 71, Neg. LLF: 153.76985920738085
Iteration: 9, Func. Count: 79, Neg. LLF: 153.6665076117248
Iteration: 10, Func. Count: 87, Neg. LLF: 153.6075693438227
Iteration: 11, Func. Count: 95, Neg. LLF: 153.58997587137213
Iteration: 12, Func. Count: 103, Neg. LLF: 153.58243343767685
Iteration: 13, Func. Count: 111, Neg. LLF: 153.6072229174335
Iteration: 14, Func. Count: 120, Neg. LLF: 153.49405603479522
Iteration: 15, Func. Count: 128, Neg. LLF: 153.49200308022895
Iteration: 16, Func. Count: 137, Neg. LLF: 153.46250560741763
Iteration: 17, Func. Count: 145, Neg. LLF: 153.46140766022305
Iteration: 18, Func. Count: 153, Neg. LLF: 153.4592554906217
Iteration: 19, Func. Count: 161, Neg. LLF: 153.45856805249318
Iteration: 20, Func. Count: 169, Neg. LLF: 153.45818429873478
Iteration: 21, Func. Count: 176, Neg. LLF: 153.45818430529346
Optimization terminated successfully (Exit mode 0)
Current function value: 153.45818429873478
Iterations: 21
Function evaluations: 176
Gradient evaluations: 21
Iteration: 1, Func. Count: 10, Neg. LLF: 414.0721486313241
Iteration: 2, Func. Count: 20, Neg. LLF: 714.2164775159379
Iteration: 3, Func. Count: 30, Neg. LLF: 155.02538638344237
Iteration: 4, Func. Count: 39, Neg. LLF: 154.7978918260844
Iteration: 5, Func. Count: 49, Neg. LLF: 155.89276392582784
Iteration: 6, Func. Count: 60, Neg. LLF: 154.22145289532554
Iteration: 7, Func. Count: 70, Neg. LLF: 153.86349696726526
Iteration: 8, Func. Count: 79, Neg. LLF: 153.58990762519238
Iteration: 9, Func. Count: 88, Neg. LLF: 153.56582017867845
Iteration: 10, Func. Count: 97, Neg. LLF: 153.54888186214606
Iteration: 11, Func. Count: 106, Neg. LLF: 153.54732958227396
Iteration: 12, Func. Count: 115, Neg. LLF: 153.5472690615788
Iteration: 13, Func. Count: 123, Neg. LLF: 153.54726906127627
Optimization terminated successfully (Exit mode 0)
Current function value: 153.5472690615788
Iterations: 13
Function evaluations: 123
Gradient evaluations: 13
Iteration: 1, Func. Count: 7, Neg. LLF: 159.13020395108387
Iteration: 2, Func. Count: 14, Neg. LLF: 156.85725027047704
Iteration: 3, Func. Count: 22, Neg. LLF: 162.39346780229897
Iteration: 4, Func. Count: 29, Neg. LLF: 162.1093428473724
Iteration: 5, Func. Count: 37, Neg. LLF: 155.32139444771028
Iteration: 6, Func. Count: 43, Neg. LLF: 155.31461600802413
Iteration: 7, Func. Count: 49, Neg. LLF: 155.2997528325508
Iteration: 8, Func. Count: 55, Neg. LLF: 155.26069915482734
Iteration: 9, Func. Count: 61, Neg. LLF: 155.22766388345687
Iteration: 10, Func. Count: 67, Neg. LLF: 155.21293529636594
Iteration: 11, Func. Count: 73, Neg. LLF: 155.2086790552559
Iteration: 12, Func. Count: 79, Neg. LLF: 155.20855942468847
Iteration: 13, Func. Count: 85, Neg. LLF: 155.20855630144212
Iteration: 14, Func. Count: 91, Neg. LLF: 155.20855551920667
Optimization terminated successfully (Exit mode 0)
Current function value: 155.20855551920667
Iterations: 14
Function evaluations: 91
Gradient evaluations: 14
Iteration: 1, Func. Count: 8, Neg. LLF: 18071362.376421515
Iteration: 2, Func. Count: 17, Neg. LLF: 156.24804638178455
Iteration: 3, Func. Count: 25, Neg. LLF: 152.1043231988052
Iteration: 4, Func. Count: 32, Neg. LLF: 152.52872688179235
Iteration: 5, Func. Count: 40, Neg. LLF: 152.12421588837609
Iteration: 6, Func. Count: 48, Neg. LLF: 152.08465836266595
Iteration: 7, Func. Count: 55, Neg. LLF: 152.08436051910556
Iteration: 8, Func. Count: 62, Neg. LLF: 152.084353273848
Iteration: 9, Func. Count: 68, Neg. LLF: 152.08435327347172
Optimization terminated successfully (Exit mode 0)
Current function value: 152.084353273848
Iterations: 9
Function evaluations: 68
Gradient evaluations: 9
Iteration: 1, Func. Count: 9, Neg. LLF: 17840236.35841629
Iteration: 2, Func. Count: 19, Neg. LLF: 157.1045392446186
Iteration: 3, Func. Count: 28, Neg. LLF: 152.67809894235364
Iteration: 4, Func. Count: 37, Neg. LLF: 152.17677169320086
Iteration: 5, Func. Count: 45, Neg. LLF: 152.1560344753281
Iteration: 6, Func. Count: 53, Neg. LLF: 152.13203888987547
Iteration: 7, Func. Count: 61, Neg. LLF: 152.1223034155525
Iteration: 8, Func. Count: 69, Neg. LLF: 152.110771756011
Iteration: 9, Func. Count: 77, Neg. LLF: 152.0880145250519
Iteration: 10, Func. Count: 85, Neg. LLF: 152.08603128370336
Iteration: 11, Func. Count: 93, Neg. LLF: 152.08436873117478
Iteration: 12, Func. Count: 101, Neg. LLF: 152.0843536780351
Iteration: 13, Func. Count: 109, Neg. LLF: 152.08435258120892
Iteration: 14, Func. Count: 116, Neg. LLF: 152.08435258551367
Optimization terminated successfully (Exit mode 0)
Current function value: 152.08435258120892
Iterations: 14
Function evaluations: 116
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 451.52062324410497
Iteration: 2, Func. Count: 20, Neg. LLF: 174.57686440213774
Iteration: 3, Func. Count: 30, Neg. LLF: 152.54889736345405
Iteration: 4, Func. Count: 39, Neg. LLF: 152.5578753578934
Iteration: 5, Func. Count: 49, Neg. LLF: 152.31703297024634
Iteration: 6, Func. Count: 58, Neg. LLF: 152.42154526504007
Iteration: 7, Func. Count: 68, Neg. LLF: 152.24500965639456
Iteration: 8, Func. Count: 78, Neg. LLF: 152.19263551758473
Iteration: 9, Func. Count: 87, Neg. LLF: 152.17904498433288
Iteration: 10, Func. Count: 96, Neg. LLF: 152.17274987072713
Iteration: 11, Func. Count: 105, Neg. LLF: 152.15752232263807
Iteration: 12, Func. Count: 114, Neg. LLF: 152.12403757742305
Iteration: 13, Func. Count: 123, Neg. LLF: 152.10301024906119
Iteration: 14, Func. Count: 132, Neg. LLF: 152.0857279728069
Iteration: 15, Func. Count: 141, Neg. LLF: 152.08542749302495
Iteration: 16, Func. Count: 150, Neg. LLF: 152.0845787097216
Iteration: 17, Func. Count: 159, Neg. LLF: 152.08435745937487
Iteration: 18, Func. Count: 168, Neg. LLF: 152.08435730420234
Iteration: 19, Func. Count: 178, Neg. LLF: 152.08435486769193
Iteration: 20, Func. Count: 187, Neg. LLF: 152.0843547503129
Optimization terminated successfully (Exit mode 0)
Current function value: 152.0843547503129
Iterations: 20
Function evaluations: 187
Gradient evaluations: 20
Iteration: 1, Func. Count: 11, Neg. LLF: 413.2078407315874
Iteration: 2, Func. Count: 22, Neg. LLF: 178.16532965968855
Iteration: 3, Func. Count: 33, Neg. LLF: 152.8195914526214
Iteration: 4, Func. Count: 43, Neg. LLF: 152.81085769958145
Iteration: 5, Func. Count: 54, Neg. LLF: 153.05628826653145
Iteration: 6, Func. Count: 65, Neg. LLF: 152.3294874220234
Iteration: 7, Func. Count: 75, Neg. LLF: 152.22459680719498
Iteration: 8, Func. Count: 85, Neg. LLF: 152.1990550098084
Iteration: 9, Func. Count: 95, Neg. LLF: 152.18921925086914
Iteration: 10, Func. Count: 105, Neg. LLF: 152.17241481708083
Iteration: 11, Func. Count: 115, Neg. LLF: 152.13819368084725
Iteration: 12, Func. Count: 125, Neg. LLF: 152.12905390547795
Iteration: 13, Func. Count: 135, Neg. LLF: 152.1209330706694
Iteration: 14, Func. Count: 145, Neg. LLF: 152.08817579541372
Iteration: 15, Func. Count: 155, Neg. LLF: 152.08715178144385
Iteration: 16, Func. Count: 165, Neg. LLF: 152.0854061856163
Iteration: 17, Func. Count: 175, Neg. LLF: 152.08456616015576
Iteration: 18, Func. Count: 185, Neg. LLF: 152.08437135103122
Iteration: 19, Func. Count: 195, Neg. LLF: 152.08435273571374
Iteration: 20, Func. Count: 204, Neg. LLF: 152.0843527818807
Optimization terminated successfully (Exit mode 0)
Current function value: 152.08435273571374
Iterations: 20
Function evaluations: 204
Gradient evaluations: 20
Iteration: 1, Func. Count: 8, Neg. LLF: 160.09292760793818
Iteration: 2, Func. Count: 16, Neg. LLF: 155.86034298692576
Iteration: 3, Func. Count: 25, Neg. LLF: 158.2615338646725
Iteration: 4, Func. Count: 33, Neg. LLF: 154.71284572364414
Iteration: 5, Func. Count: 40, Neg. LLF: 155.84527964073473
Iteration: 6, Func. Count: 48, Neg. LLF: 154.70035248871054
Iteration: 7, Func. Count: 56, Neg. LLF: 154.55726532266956
Iteration: 8, Func. Count: 63, Neg. LLF: 154.54950325807445
Iteration: 9, Func. Count: 70, Neg. LLF: 154.53288356133922
Iteration: 10, Func. Count: 77, Neg. LLF: 154.5197031855116
Iteration: 11, Func. Count: 84, Neg. LLF: 154.5102936789855
Iteration: 12, Func. Count: 91, Neg. LLF: 154.50525395342856
Iteration: 13, Func. Count: 98, Neg. LLF: 154.50311192126253
Iteration: 14, Func. Count: 105, Neg. LLF: 154.50302572076563
Iteration: 15, Func. Count: 112, Neg. LLF: 154.50302288041016
Iteration: 16, Func. Count: 118, Neg. LLF: 154.50302288041
Optimization terminated successfully (Exit mode 0)
Current function value: 154.50302288041016
Iterations: 16
Function evaluations: 118
Gradient evaluations: 16
Iteration: 1, Func. Count: 9, Neg. LLF: 18230943.41038524
Iteration: 2, Func. Count: 19, Neg. LLF: 159.3927533681651
Iteration: 3, Func. Count: 28, Neg. LLF: 152.26316204236926
Iteration: 4, Func. Count: 37, Neg. LLF: 152.07545517101147
Iteration: 5, Func. Count: 46, Neg. LLF: 151.91862843474686
Iteration: 6, Func. Count: 54, Neg. LLF: 151.91834974280465
Iteration: 7, Func. Count: 62, Neg. LLF: 151.9183232876564
Iteration: 8, Func. Count: 70, Neg. LLF: 151.91832222287456
Iteration: 9, Func. Count: 77, Neg. LLF: 151.9183222231104
Optimization terminated successfully (Exit mode 0)
Current function value: 151.91832222287456
Iterations: 9
Function evaluations: 77
Gradient evaluations: 9
Iteration: 1, Func. Count: 10, Neg. LLF: 17851716.583099842
Iteration: 2, Func. Count: 21, Neg. LLF: 158.52258143593414
Iteration: 3, Func. Count: 31, Neg. LLF: 152.38555742458266
Iteration: 4, Func. Count: 40, Neg. LLF: 151.90403216329398
Iteration: 5, Func. Count: 49, Neg. LLF: 152.0307329889037
Iteration: 6, Func. Count: 59, Neg. LLF: 152.4711740661284
Iteration: 7, Func. Count: 69, Neg. LLF: 151.75098984546662
Iteration: 8, Func. Count: 78, Neg. LLF: 151.75424944236073
Iteration: 9, Func. Count: 88, Neg. LLF: 151.74529331219898
Iteration: 10, Func. Count: 98, Neg. LLF: 151.74049101220936
Iteration: 11, Func. Count: 107, Neg. LLF: 151.74017310391866
Iteration: 12, Func. Count: 116, Neg. LLF: 151.7401683738099
Iteration: 13, Func. Count: 125, Neg. LLF: 151.74016566133176
Iteration: 14, Func. Count: 133, Neg. LLF: 151.7401656612968
Optimization terminated successfully (Exit mode 0)
Current function value: 151.74016566133176
Iterations: 14
Function evaluations: 133
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 449.918448310418
Iteration: 2, Func. Count: 22, Neg. LLF: 188.0419687333432
Iteration: 3, Func. Count: 33, Neg. LLF: 152.57420658896464
Iteration: 4, Func. Count: 43, Neg. LLF: 152.52262043577656
Iteration: 5, Func. Count: 54, Neg. LLF: 162.37720168324358
Iteration: 6, Func. Count: 65, Neg. LLF: 152.14738315806682
Iteration: 7, Func. Count: 75, Neg. LLF: 152.04036117570354
Iteration: 8, Func. Count: 85, Neg. LLF: 152.01662547875705
Iteration: 9, Func. Count: 95, Neg. LLF: 153.2953947003291
Iteration: 10, Func. Count: 107, Neg. LLF: 151.98152210827885
Iteration: 11, Func. Count: 117, Neg. LLF: 151.8684213940364
Iteration: 12, Func. Count: 127, Neg. LLF: 151.74880432619386
Iteration: 13, Func. Count: 137, Neg. LLF: 151.7419455275408
Iteration: 14, Func. Count: 147, Neg. LLF: 151.74088410178612
Iteration: 15, Func. Count: 157, Neg. LLF: 151.74046637711555
Iteration: 16, Func. Count: 167, Neg. LLF: 151.74023587176833
Iteration: 17, Func. Count: 177, Neg. LLF: 151.74017870442356
Iteration: 18, Func. Count: 187, Neg. LLF: 151.74016619380967
Iteration: 19, Func. Count: 197, Neg. LLF: 151.74016532659127
Optimization terminated successfully (Exit mode 0)
Current function value: 151.74016532659127
Iterations: 19
Function evaluations: 197
Gradient evaluations: 19
Iteration: 1, Func. Count: 12, Neg. LLF: 412.31688669928997
Iteration: 2, Func. Count: 24, Neg. LLF: 211.17861440068364
Iteration: 3, Func. Count: 36, Neg. LLF: 153.24694266215675
Iteration: 4, Func. Count: 48, Neg. LLF: 152.7242052278998
Iteration: 5, Func. Count: 59, Neg. LLF: 154.21784861440247
Iteration: 6, Func. Count: 71, Neg. LLF: 152.33273213957162
Iteration: 7, Func. Count: 82, Neg. LLF: 152.03507745616062
Iteration: 8, Func. Count: 93, Neg. LLF: 152.09830161521182
Iteration: 9, Func. Count: 105, Neg. LLF: 152.12381568029218
Iteration: 10, Func. Count: 117, Neg. LLF: 151.8468329659666
Iteration: 11, Func. Count: 128, Neg. LLF: 151.77383320062054
Iteration: 12, Func. Count: 139, Neg. LLF: 151.74989306822926
Iteration: 13, Func. Count: 150, Neg. LLF: 151.7428740109138
Iteration: 14, Func. Count: 161, Neg. LLF: 151.74120806461698
Iteration: 15, Func. Count: 172, Neg. LLF: 151.74045755579027
Iteration: 16, Func. Count: 183, Neg. LLF: 151.74018724533522
Iteration: 17, Func. Count: 194, Neg. LLF: 151.74016591088122
Iteration: 18, Func. Count: 205, Neg. LLF: 151.74016533078608
Optimization terminated successfully (Exit mode 0)
Current function value: 151.74016533078608
Iterations: 18
Function evaluations: 205
Gradient evaluations: 18
Iteration: 1, Func. Count: 9, Neg. LLF: 160.1698883876756
Iteration: 2, Func. Count: 18, Neg. LLF: 155.92995670708453
Iteration: 3, Func. Count: 28, Neg. LLF: 159.19618520216167
Iteration: 4, Func. Count: 37, Neg. LLF: 155.8589786488848
Iteration: 5, Func. Count: 46, Neg. LLF: 154.54917367242928
Iteration: 6, Func. Count: 54, Neg. LLF: 156.26133452860986
Iteration: 7, Func. Count: 63, Neg. LLF: 155.62200352232736
Iteration: 8, Func. Count: 73, Neg. LLF: 154.3157559702965
Iteration: 9, Func. Count: 81, Neg. LLF: 154.2509089833394
Iteration: 10, Func. Count: 89, Neg. LLF: 154.19697685280912
Iteration: 11, Func. Count: 97, Neg. LLF: 154.14529165594863
Iteration: 12, Func. Count: 105, Neg. LLF: 154.12739542359304
Iteration: 13, Func. Count: 113, Neg. LLF: 154.11213196331727
Iteration: 14, Func. Count: 121, Neg. LLF: 154.09479374637405
Iteration: 15, Func. Count: 129, Neg. LLF: 154.09064892345816
Iteration: 16, Func. Count: 137, Neg. LLF: 154.08989190111174
Iteration: 17, Func. Count: 145, Neg. LLF: 154.08983084796608
Iteration: 18, Func. Count: 153, Neg. LLF: 154.089818569187
Iteration: 19, Func. Count: 161, Neg. LLF: 154.0898132960817
Iteration: 20, Func. Count: 168, Neg. LLF: 154.08981329605936
Optimization terminated successfully (Exit mode 0)
Current function value: 154.0898132960817
Iterations: 20
Function evaluations: 168
Gradient evaluations: 20
Iteration: 1, Func. Count: 10, Neg. LLF: 18477207.54803076
Iteration: 2, Func. Count: 21, Neg. LLF: 192.5017533411397
Iteration: 3, Func. Count: 31, Neg. LLF: 152.64122660873585
Iteration: 4, Func. Count: 41, Neg. LLF: 151.47683119545238
Iteration: 5, Func. Count: 50, Neg. LLF: 151.45686846377066
Iteration: 6, Func. Count: 59, Neg. LLF: 151.45563273114394
Iteration: 7, Func. Count: 68, Neg. LLF: 151.4552978048666
Iteration: 8, Func. Count: 77, Neg. LLF: 151.45527039658734
Iteration: 9, Func. Count: 86, Neg. LLF: 151.45525676952815
Iteration: 10, Func. Count: 95, Neg. LLF: 151.4552557307231
Iteration: 11, Func. Count: 103, Neg. LLF: 151.45525573068028
Optimization terminated successfully (Exit mode 0)
Current function value: 151.4552557307231
Iterations: 11
Function evaluations: 103
Gradient evaluations: 11
Iteration: 1, Func. Count: 11, Neg. LLF: 17923359.36488186
Iteration: 2, Func. Count: 23, Neg. LLF: 163.55647830633887
Iteration: 3, Func. Count: 35, Neg. LLF: 152.6802337837683
Iteration: 4, Func. Count: 46, Neg. LLF: 151.8753330487015
Iteration: 5, Func. Count: 56, Neg. LLF: 151.8240480911953
Iteration: 6, Func. Count: 66, Neg. LLF: 151.73407102924253
Iteration: 7, Func. Count: 76, Neg. LLF: 151.5763234231627
Iteration: 8, Func. Count: 86, Neg. LLF: 151.50141727767732
Iteration: 9, Func. Count: 96, Neg. LLF: 151.4562617841725
Iteration: 10, Func. Count: 106, Neg. LLF: 151.45531283266274
Iteration: 11, Func. Count: 116, Neg. LLF: 151.4552706761183
Iteration: 12, Func. Count: 126, Neg. LLF: 151.45525954508733
Iteration: 13, Func. Count: 136, Neg. LLF: 151.4552558218912
Iteration: 14, Func. Count: 145, Neg. LLF: 151.4552558495345
Optimization terminated successfully (Exit mode 0)
Current function value: 151.4552558218912
Iterations: 14
Function evaluations: 145
Gradient evaluations: 14
Iteration: 1, Func. Count: 12, Neg. LLF: 17815295.623645414
Iteration: 2, Func. Count: 25, Neg. LLF: 189.88625814721064
Iteration: 3, Func. Count: 37, Neg. LLF: 154.3973972323537
Iteration: 4, Func. Count: 49, Neg. LLF: 152.48621238426546
Iteration: 5, Func. Count: 60, Neg. LLF: 152.04836016087185
Iteration: 6, Func. Count: 71, Neg. LLF: 152.0549113891354
Iteration: 7, Func. Count: 83, Neg. LLF: 152.0096109878517
Iteration: 8, Func. Count: 94, Neg. LLF: 152.00414438134237
Iteration: 9, Func. Count: 105, Neg. LLF: 152.005565426623
Iteration: 10, Func. Count: 117, Neg. LLF: 151.99713757283504
Iteration: 11, Func. Count: 128, Neg. LLF: 151.99639974111432
Iteration: 12, Func. Count: 139, Neg. LLF: 151.99562348326756
Iteration: 13, Func. Count: 150, Neg. LLF: 151.995471003466
Iteration: 14, Func. Count: 161, Neg. LLF: 151.99541988367787
Iteration: 15, Func. Count: 172, Neg. LLF: 151.99541679043
Iteration: 16, Func. Count: 182, Neg. LLF: 151.9954167904645
Optimization terminated successfully (Exit mode 0)
Current function value: 151.99541679043
Iterations: 16
Function evaluations: 182
Gradient evaluations: 16
Iteration: 1, Func. Count: 13, Neg. LLF: 415.7802877166434
Iteration: 2, Func. Count: 26, Neg. LLF: 213.97526015015845
Iteration: 3, Func. Count: 39, Neg. LLF: 154.13921169426925
Iteration: 4, Func. Count: 52, Neg. LLF: 152.4987696091309
Iteration: 5, Func. Count: 64, Neg. LLF: 156.22146610870738
Iteration: 6, Func. Count: 77, Neg. LLF: 158.99918382698857
Iteration: 7, Func. Count: 90, Neg. LLF: 152.9417905489127
Iteration: 8, Func. Count: 103, Neg. LLF: 152.01761240788937
Iteration: 9, Func. Count: 115, Neg. LLF: 152.029392806195
Iteration: 10, Func. Count: 128, Neg. LLF: 152.00055836901112
Iteration: 11, Func. Count: 140, Neg. LLF: 151.99743586416295
Iteration: 12, Func. Count: 152, Neg. LLF: 151.99662234940303
Iteration: 13, Func. Count: 164, Neg. LLF: 151.9957145334881
Iteration: 14, Func. Count: 176, Neg. LLF: 151.99557204018623
Iteration: 15, Func. Count: 188, Neg. LLF: 151.99545979083985
Iteration: 16, Func. Count: 200, Neg. LLF: 151.99542583474553
Iteration: 17, Func. Count: 212, Neg. LLF: 151.99541638978206
Iteration: 18, Func. Count: 223, Neg. LLF: 151.9954164036285
Optimization terminated successfully (Exit mode 0)
Current function value: 151.99541638978206
Iterations: 18
Function evaluations: 223
Gradient evaluations: 18
Iteration: 1, Func. Count: 10, Neg. LLF: 158.23618021895015
Iteration: 2, Func. Count: 20, Neg. LLF: 157.09454554239082
Iteration: 3, Func. Count: 30, Neg. LLF: 163.15575408187692
Iteration: 4, Func. Count: 41, Neg. LLF: 153.77269513424682
Iteration: 5, Func. Count: 51, Neg. LLF: 152.07496719485948
Iteration: 6, Func. Count: 60, Neg. LLF: 151.98935029602956
Iteration: 7, Func. Count: 69, Neg. LLF: 151.94609234685862
Iteration: 8, Func. Count: 78, Neg. LLF: 151.83283212713687
Iteration: 9, Func. Count: 87, Neg. LLF: 151.74510687370318
Iteration: 10, Func. Count: 96, Neg. LLF: 151.7553239846785
Iteration: 11, Func. Count: 106, Neg. LLF: 151.71788056201643
Iteration: 12, Func. Count: 115, Neg. LLF: 151.70548242101228
Iteration: 13, Func. Count: 124, Neg. LLF: 151.69838300579156
Iteration: 14, Func. Count: 133, Neg. LLF: 151.69282577389998
Iteration: 15, Func. Count: 142, Neg. LLF: 151.69168347367403
Iteration: 16, Func. Count: 151, Neg. LLF: 151.6916154210553
Iteration: 17, Func. Count: 160, Neg. LLF: 151.69161481461066
Optimization terminated successfully (Exit mode 0)
Current function value: 151.69161481461066
Iterations: 17
Function evaluations: 160
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 18587697.34402216
Iteration: 2, Func. Count: 23, Neg. LLF: 190.26996457260694
Iteration: 3, Func. Count: 34, Neg. LLF: 153.50805647113833
Iteration: 4, Func. Count: 45, Neg. LLF: 150.42198991096922
Iteration: 5, Func. Count: 55, Neg. LLF: 156.6613799552571
Iteration: 6, Func. Count: 66, Neg. LLF: 150.30295563484665
Iteration: 7, Func. Count: 76, Neg. LLF: 150.27926252576526
Iteration: 8, Func. Count: 86, Neg. LLF: 150.2699344764572
Iteration: 9, Func. Count: 96, Neg. LLF: 150.26661482208752
Iteration: 10, Func. Count: 106, Neg. LLF: 150.26323239308084
Iteration: 11, Func. Count: 116, Neg. LLF: 150.25907147843154
Iteration: 12, Func. Count: 126, Neg. LLF: 150.25563853179509
Iteration: 13, Func. Count: 136, Neg. LLF: 150.25431643706963
Iteration: 14, Func. Count: 146, Neg. LLF: 150.25408634203956
Iteration: 15, Func. Count: 156, Neg. LLF: 150.25404865489213
Iteration: 16, Func. Count: 166, Neg. LLF: 150.25404554263105
Iteration: 17, Func. Count: 175, Neg. LLF: 150.25404554267823
Optimization terminated successfully (Exit mode 0)
Current function value: 150.25404554263105
Iterations: 17
Function evaluations: 175
Gradient evaluations: 17
Iteration: 1, Func. Count: 12, Neg. LLF: 40954.14803123191
Iteration: 2, Func. Count: 25, Neg. LLF: 3162893.7720552185
Iteration: 3, Func. Count: 37, Neg. LLF: 152.7568321816246
Iteration: 4, Func. Count: 49, Neg. LLF: 150.63928498774214
Iteration: 5, Func. Count: 60, Neg. LLF: 152.7312755293801
Iteration: 6, Func. Count: 72, Neg. LLF: 150.83225304040423
Iteration: 7, Func. Count: 84, Neg. LLF: 150.69125847493632
Iteration: 8, Func. Count: 96, Neg. LLF: 150.27735622166807
Iteration: 9, Func. Count: 107, Neg. LLF: 150.25934422532978
Iteration: 10, Func. Count: 118, Neg. LLF: 150.248647335986
Iteration: 11, Func. Count: 129, Neg. LLF: 150.24088268165528
Iteration: 12, Func. Count: 140, Neg. LLF: 150.23858107612818
Iteration: 13, Func. Count: 151, Neg. LLF: 150.23761114929312
Iteration: 14, Func. Count: 162, Neg. LLF: 150.23707048034848
Iteration: 15, Func. Count: 173, Neg. LLF: 150.23681741366715
Iteration: 16, Func. Count: 184, Neg. LLF: 150.23676128774653
Iteration: 17, Func. Count: 195, Neg. LLF: 150.23675388926404
Iteration: 18, Func. Count: 206, Neg. LLF: 150.2367531547533
Optimization terminated successfully (Exit mode 0)
Current function value: 150.2367531547533
Iterations: 18
Function evaluations: 206
Gradient evaluations: 18
Iteration: 1, Func. Count: 13, Neg. LLF: 195.9540855520357
Iteration: 2, Func. Count: 26, Neg. LLF: 156.6686628352591
Iteration: 3, Func. Count: 39, Neg. LLF: 150.7788566315821
Iteration: 4, Func. Count: 51, Neg. LLF: 153.78277094247588
Iteration: 5, Func. Count: 64, Neg. LLF: 151.26776845963923
Iteration: 6, Func. Count: 77, Neg. LLF: 150.55112885863386
Iteration: 7, Func. Count: 90, Neg. LLF: 150.24517145693827
Iteration: 8, Func. Count: 102, Neg. LLF: 150.24155749865216
Iteration: 9, Func. Count: 114, Neg. LLF: 150.24824864161295
Iteration: 10, Func. Count: 127, Neg. LLF: 150.23243597891533
Iteration: 11, Func. Count: 139, Neg. LLF: 150.22612128355166
Iteration: 12, Func. Count: 151, Neg. LLF: 150.22524899357427
Iteration: 13, Func. Count: 163, Neg. LLF: 150.22487786582238
Iteration: 14, Func. Count: 175, Neg. LLF: 150.22480979680572
Iteration: 15, Func. Count: 187, Neg. LLF: 150.2248010797079
Iteration: 16, Func. Count: 198, Neg. LLF: 150.22480107975736
Optimization terminated successfully (Exit mode 0)
Current function value: 150.2248010797079
Iterations: 16
Function evaluations: 198
Gradient evaluations: 16
Iteration: 1, Func. Count: 14, Neg. LLF: 179.84390326050385
Iteration: 2, Func. Count: 28, Neg. LLF: 215.63049678607172
Iteration: 3, Func. Count: 42, Neg. LLF: 153.73330530166288
Iteration: 4, Func. Count: 56, Neg. LLF: 150.6291088657724
Iteration: 5, Func. Count: 69, Neg. LLF: 152.46449466347636
Iteration: 6, Func. Count: 83, Neg. LLF: 151.1765734712678
Iteration: 7, Func. Count: 97, Neg. LLF: 150.25453352058338
Iteration: 8, Func. Count: 110, Neg. LLF: 150.23589061657225
Iteration: 9, Func. Count: 123, Neg. LLF: 150.23660933379887
Iteration: 10, Func. Count: 137, Neg. LLF: 150.23082724949396
Iteration: 11, Func. Count: 150, Neg. LLF: 150.22847645017995
Iteration: 12, Func. Count: 163, Neg. LLF: 150.22602575973158
Iteration: 13, Func. Count: 176, Neg. LLF: 150.22509636764528
Iteration: 14, Func. Count: 189, Neg. LLF: 150.2248347234703
Iteration: 15, Func. Count: 202, Neg. LLF: 150.22480318602803
Iteration: 16, Func. Count: 215, Neg. LLF: 150.22480058057718
Iteration: 17, Func. Count: 227, Neg. LLF: 150.22480059878603
Optimization terminated successfully (Exit mode 0)
Current function value: 150.22480058057718
Iterations: 17
Function evaluations: 227
Gradient evaluations: 17
Iteration: 1, Func. Count: 7, Neg. LLF: 160.07319940267445
Iteration: 2, Func. Count: 14, Neg. LLF: 159.28402186927931
Iteration: 3, Func. Count: 22, Neg. LLF: 157.80678909969595
Iteration: 4, Func. Count: 29, Neg. LLF: 157.54173356812524
Iteration: 5, Func. Count: 35, Neg. LLF: 157.53085070912454
Iteration: 6, Func. Count: 41, Neg. LLF: 157.52032074543214
Iteration: 7, Func. Count: 47, Neg. LLF: 157.50480736486503
Iteration: 8, Func. Count: 53, Neg. LLF: 157.46877979773387
Iteration: 9, Func. Count: 59, Neg. LLF: 157.42824588035603
Iteration: 10, Func. Count: 65, Neg. LLF: 157.4166850966517
Iteration: 11, Func. Count: 72, Neg. LLF: 159.7418591246244
Iteration: 12, Func. Count: 79, Neg. LLF: 157.31088744520483
Iteration: 13, Func. Count: 85, Neg. LLF: 157.26842508240807
Iteration: 14, Func. Count: 91, Neg. LLF: 157.26238253878344
Iteration: 15, Func. Count: 97, Neg. LLF: 157.2611323786624
Iteration: 16, Func. Count: 103, Neg. LLF: 157.26099274352757
Iteration: 17, Func. Count: 109, Neg. LLF: 157.26099107862402
Iteration: 18, Func. Count: 114, Neg. LLF: 157.26099107862356
Optimization terminated successfully (Exit mode 0)
Current function value: 157.26099107862402
Iterations: 18
Function evaluations: 114
Gradient evaluations: 18
Iteration: 1, Func. Count: 8, Neg. LLF: 1925.7752398307966
Iteration: 2, Func. Count: 17, Neg. LLF: 354.5553206721549
Iteration: 3, Func. Count: 26, Neg. LLF: 160.8453479384911
Iteration: 4, Func. Count: 34, Neg. LLF: 154.61061513553952
Iteration: 5, Func. Count: 41, Neg. LLF: 154.35794636096315
Iteration: 6, Func. Count: 48, Neg. LLF: 153.6862170091749
Iteration: 7, Func. Count: 55, Neg. LLF: 153.51788009913983
Iteration: 8, Func. Count: 62, Neg. LLF: 153.54593194535107
Iteration: 9, Func. Count: 70, Neg. LLF: 153.47466473522283
Iteration: 10, Func. Count: 77, Neg. LLF: 153.4590503206019
Iteration: 11, Func. Count: 84, Neg. LLF: 153.4582701510737
Iteration: 12, Func. Count: 91, Neg. LLF: 153.45818420071873
Iteration: 13, Func. Count: 97, Neg. LLF: 153.4581842011981
Optimization terminated successfully (Exit mode 0)
Current function value: 153.45818420071873
Iterations: 13
Function evaluations: 97
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 21096.286514708732
Iteration: 2, Func. Count: 19, Neg. LLF: 193747.70707794698
Iteration: 3, Func. Count: 28, Neg. LLF: 158.44708911466324
Iteration: 4, Func. Count: 37, Neg. LLF: 168.28612345220972
Iteration: 5, Func. Count: 46, Neg. LLF: 154.52507399365103
Iteration: 6, Func. Count: 54, Neg. LLF: 155.9794984687784
Iteration: 7, Func. Count: 63, Neg. LLF: 155.75296509206967
Iteration: 8, Func. Count: 72, Neg. LLF: 154.5870899316354
Iteration: 9, Func. Count: 81, Neg. LLF: 153.69053725024094
Iteration: 10, Func. Count: 89, Neg. LLF: 153.8372834522603
Iteration: 11, Func. Count: 98, Neg. LLF: 153.67595658194853
Iteration: 12, Func. Count: 107, Neg. LLF: 153.5147708248082
Iteration: 13, Func. Count: 115, Neg. LLF: 17821965.979454875
Iteration: 14, Func. Count: 127, Neg. LLF: 153.73640970248772
Iteration: 15, Func. Count: 136, Neg. LLF: 153.45825277531827
Iteration: 16, Func. Count: 144, Neg. LLF: 153.45818617910098
Iteration: 17, Func. Count: 152, Neg. LLF: 153.45818414642184
Iteration: 18, Func. Count: 159, Neg. LLF: 153.45818414843197
Optimization terminated successfully (Exit mode 0)
Current function value: 153.45818414642184
Iterations: 19
Function evaluations: 159
Gradient evaluations: 18
Iteration: 1, Func. Count: 10, Neg. LLF: 417.3459795542313
Iteration: 2, Func. Count: 20, Neg. LLF: 198.2832233002492
Iteration: 3, Func. Count: 30, Neg. LLF: 160.68018021693646
Iteration: 4, Func. Count: 40, Neg. LLF: 155.81693575021725
Iteration: 5, Func. Count: 50, Neg. LLF: 156.6601576678068
Iteration: 6, Func. Count: 60, Neg. LLF: 153.74252240762394
Iteration: 7, Func. Count: 69, Neg. LLF: 177.79079490172847
Iteration: 8, Func. Count: 79, Neg. LLF: 153.6937245279328
Iteration: 9, Func. Count: 89, Neg. LLF: 153.8960386049453
Iteration: 10, Func. Count: 99, Neg. LLF: 153.12340433793946
Iteration: 11, Func. Count: 108, Neg. LLF: 153.01766126858672
Iteration: 12, Func. Count: 117, Neg. LLF: 152.9610403206759
Iteration: 13, Func. Count: 126, Neg. LLF: 152.96042715366002
Iteration: 14, Func. Count: 136, Neg. LLF: 152.95650777311857
Iteration: 15, Func. Count: 145, Neg. LLF: 152.95642712266394
Iteration: 16, Func. Count: 154, Neg. LLF: 152.956423175541
Iteration: 17, Func. Count: 162, Neg. LLF: 152.9564231753687
Optimization terminated successfully (Exit mode 0)
Current function value: 152.956423175541
Iterations: 17
Function evaluations: 162
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 420.083686768294
Iteration: 2, Func. Count: 22, Neg. LLF: 1017.3891529412356
Iteration: 3, Func. Count: 33, Neg. LLF: 155.98441268419182
Iteration: 4, Func. Count: 44, Neg. LLF: 153.80005160231175
Iteration: 5, Func. Count: 54, Neg. LLF: 160.0341590293452
Iteration: 6, Func. Count: 65, Neg. LLF: 153.32951822387787
Iteration: 7, Func. Count: 75, Neg. LLF: 153.17400800799211
Iteration: 8, Func. Count: 85, Neg. LLF: 153.04495811127563
Iteration: 9, Func. Count: 95, Neg. LLF: 152.96407610658332
Iteration: 10, Func. Count: 105, Neg. LLF: 152.957985159047
Iteration: 11, Func. Count: 115, Neg. LLF: 152.956699052234
Iteration: 12, Func. Count: 125, Neg. LLF: 152.9565454488245
Iteration: 13, Func. Count: 135, Neg. LLF: 152.95642403970226
Iteration: 14, Func. Count: 145, Neg. LLF: 152.95642317491433
Optimization terminated successfully (Exit mode 0)
Current function value: 152.95642317491433
Iterations: 14
Function evaluations: 145
Gradient evaluations: 14
Iteration: 1, Func. Count: 8, Neg. LLF: 159.41464115202126
Iteration: 2, Func. Count: 16, Neg. LLF: 157.2020365132383
Iteration: 3, Func. Count: 24, Neg. LLF: 163.30328968938252
Iteration: 4, Func. Count: 32, Neg. LLF: 155.71246355500563
Iteration: 5, Func. Count: 40, Neg. LLF: 156.37769445097848
Iteration: 6, Func. Count: 48, Neg. LLF: 155.31324597783987
Iteration: 7, Func. Count: 55, Neg. LLF: 155.3087949263714
Iteration: 8, Func. Count: 62, Neg. LLF: 155.3041295773839
Iteration: 9, Func. Count: 69, Neg. LLF: 155.28890813564354
Iteration: 10, Func. Count: 76, Neg. LLF: 155.25641993472001
Iteration: 11, Func. Count: 83, Neg. LLF: 155.22891984617962
Iteration: 12, Func. Count: 90, Neg. LLF: 155.21064866418996
Iteration: 13, Func. Count: 97, Neg. LLF: 155.20880029913704
Iteration: 14, Func. Count: 104, Neg. LLF: 155.20858740936646
Iteration: 15, Func. Count: 111, Neg. LLF: 155.20856414086475
Iteration: 16, Func. Count: 118, Neg. LLF: 155.20855576045815
Iteration: 17, Func. Count: 124, Neg. LLF: 155.20855576046722
Optimization terminated successfully (Exit mode 0)
Current function value: 155.20855576045815
Iterations: 17
Function evaluations: 124
Gradient evaluations: 17
Iteration: 1, Func. Count: 9, Neg. LLF: 18088409.27286446
Iteration: 2, Func. Count: 19, Neg. LLF: 156.31598522869743
Iteration: 3, Func. Count: 28, Neg. LLF: 152.10364157731635
Iteration: 4, Func. Count: 36, Neg. LLF: 152.30985615067746
Iteration: 5, Func. Count: 45, Neg. LLF: 152.15792222192752
Iteration: 6, Func. Count: 54, Neg. LLF: 152.08470732329778
Iteration: 7, Func. Count: 62, Neg. LLF: 152.08437056894704
Iteration: 8, Func. Count: 70, Neg. LLF: 152.0843534377162
Iteration: 9, Func. Count: 77, Neg. LLF: 152.08435343730153
Optimization terminated successfully (Exit mode 0)
Current function value: 152.0843534377162
Iterations: 9
Function evaluations: 77
Gradient evaluations: 9
Iteration: 1, Func. Count: 10, Neg. LLF: 17865817.608182605
Iteration: 2, Func. Count: 21, Neg. LLF: 157.18984168630445
Iteration: 3, Func. Count: 31, Neg. LLF: 152.67348698761094
Iteration: 4, Func. Count: 41, Neg. LLF: 152.17806089491168
Iteration: 5, Func. Count: 50, Neg. LLF: 152.16023259322853
Iteration: 6, Func. Count: 59, Neg. LLF: 152.13315617428563
Iteration: 7, Func. Count: 68, Neg. LLF: 152.12382809656896
Iteration: 8, Func. Count: 77, Neg. LLF: 152.1133726523799
Iteration: 9, Func. Count: 86, Neg. LLF: 152.08888187564352
Iteration: 10, Func. Count: 95, Neg. LLF: 152.08604803547922
Iteration: 11, Func. Count: 104, Neg. LLF: 152.0851139843926
Iteration: 12, Func. Count: 113, Neg. LLF: 152.08435759031818
Iteration: 13, Func. Count: 122, Neg. LLF: 152.08435302825063
Iteration: 14, Func. Count: 130, Neg. LLF: 152.08435303264432
Optimization terminated successfully (Exit mode 0)
Current function value: 152.08435302825063
Iterations: 14
Function evaluations: 130
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 17809057.485310722
Iteration: 2, Func. Count: 23, Neg. LLF: 163.40882018481182
Iteration: 3, Func. Count: 34, Neg. LLF: 152.84763018424647
Iteration: 4, Func. Count: 45, Neg. LLF: 152.2694708975607
Iteration: 5, Func. Count: 55, Neg. LLF: 152.35956680057149
Iteration: 6, Func. Count: 66, Neg. LLF: 152.2039813434154
Iteration: 7, Func. Count: 76, Neg. LLF: 152.180709074813
Iteration: 8, Func. Count: 86, Neg. LLF: 152.16730295957808
Iteration: 9, Func. Count: 96, Neg. LLF: 152.14763900556684
Iteration: 10, Func. Count: 106, Neg. LLF: 152.13254481258295
Iteration: 11, Func. Count: 116, Neg. LLF: 152.1221106219739
Iteration: 12, Func. Count: 126, Neg. LLF: 152.0973239524834
Iteration: 13, Func. Count: 136, Neg. LLF: 152.08463064988564
Iteration: 14, Func. Count: 146, Neg. LLF: 152.0844883270305
Iteration: 15, Func. Count: 156, Neg. LLF: 152.08449028246963
Iteration: 16, Func. Count: 167, Neg. LLF: 152.08441987427062
Iteration: 17, Func. Count: 177, Neg. LLF: 152.08435654194292
Iteration: 18, Func. Count: 187, Neg. LLF: 152.08435370103604
Iteration: 19, Func. Count: 196, Neg. LLF: 152.08435372089522
Optimization terminated successfully (Exit mode 0)
Current function value: 152.08435370103604
Iterations: 19
Function evaluations: 196
Gradient evaluations: 19
Iteration: 1, Func. Count: 12, Neg. LLF: 417.9550253125356
Iteration: 2, Func. Count: 24, Neg. LLF: 176.0810907782184
Iteration: 3, Func. Count: 36, Neg. LLF: 152.85835511622992
Iteration: 4, Func. Count: 47, Neg. LLF: 152.67304560531457
Iteration: 5, Func. Count: 59, Neg. LLF: 156.98295057518087
Iteration: 6, Func. Count: 71, Neg. LLF: 152.12215213522396
Iteration: 7, Func. Count: 82, Neg. LLF: 153.03693263235948
Iteration: 8, Func. Count: 94, Neg. LLF: 152.04414373900272
Iteration: 9, Func. Count: 106, Neg. LLF: 151.9873080326889
Iteration: 10, Func. Count: 118, Neg. LLF: 151.97787823101103
Iteration: 11, Func. Count: 129, Neg. LLF: 151.97680477913454
Iteration: 12, Func. Count: 140, Neg. LLF: 151.97674553456562
Iteration: 13, Func. Count: 151, Neg. LLF: 151.9767414806889
Iteration: 14, Func. Count: 161, Neg. LLF: 151.9767415522631
Optimization terminated successfully (Exit mode 0)
Current function value: 151.9767414806889
Iterations: 14
Function evaluations: 161
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 160.66142094284444
Iteration: 2, Func. Count: 18, Neg. LLF: 155.93069758191382
Iteration: 3, Func. Count: 27, Neg. LLF: 157.06588964926766
Iteration: 4, Func. Count: 36, Neg. LLF: 157.47971768033574
Iteration: 5, Func. Count: 45, Neg. LLF: 155.29336913417927
Iteration: 6, Func. Count: 54, Neg. LLF: 154.75185652881478
Iteration: 7, Func. Count: 63, Neg. LLF: 154.58358519797227
Iteration: 8, Func. Count: 71, Neg. LLF: 154.55657675420076
Iteration: 9, Func. Count: 79, Neg. LLF: 154.54999845573607
Iteration: 10, Func. Count: 87, Neg. LLF: 154.53657215745397
Iteration: 11, Func. Count: 95, Neg. LLF: 154.51202994665763
Iteration: 12, Func. Count: 103, Neg. LLF: 154.50494296436415
Iteration: 13, Func. Count: 111, Neg. LLF: 154.50336250919491
Iteration: 14, Func. Count: 119, Neg. LLF: 154.50316214333657
Iteration: 15, Func. Count: 127, Neg. LLF: 154.5030523827513
Iteration: 16, Func. Count: 135, Neg. LLF: 154.50302554019714
Iteration: 17, Func. Count: 143, Neg. LLF: 154.50302239630793
Iteration: 18, Func. Count: 150, Neg. LLF: 154.50302239632208
Optimization terminated successfully (Exit mode 0)
Current function value: 154.50302239630793
Iterations: 18
Function evaluations: 150
Gradient evaluations: 18
Iteration: 1, Func. Count: 10, Neg. LLF: 18251041.46332862
Iteration: 2, Func. Count: 21, Neg. LLF: 159.4984709472784
Iteration: 3, Func. Count: 32, Neg. LLF: 152.1653283089894
Iteration: 4, Func. Count: 42, Neg. LLF: 151.92082714998966
Iteration: 5, Func. Count: 51, Neg. LLF: 151.91853289772664
Iteration: 6, Func. Count: 60, Neg. LLF: 151.91832860340816
Iteration: 7, Func. Count: 69, Neg. LLF: 151.91832258044488
Iteration: 8, Func. Count: 78, Neg. LLF: 151.91832204597918
Optimization terminated successfully (Exit mode 0)
Current function value: 151.91832204597918
Iterations: 8
Function evaluations: 78
Gradient evaluations: 8
Iteration: 1, Func. Count: 11, Neg. LLF: 17878870.864093788
Iteration: 2, Func. Count: 23, Neg. LLF: 158.62872661089378
Iteration: 3, Func. Count: 34, Neg. LLF: 152.30091941073067
Iteration: 4, Func. Count: 44, Neg. LLF: 151.95652807337254
Iteration: 5, Func. Count: 54, Neg. LLF: 166.014937411985
Iteration: 6, Func. Count: 65, Neg. LLF: 151.81082679978738
Iteration: 7, Func. Count: 75, Neg. LLF: 151.74732331326493
Iteration: 8, Func. Count: 85, Neg. LLF: 151.74238934649026
Iteration: 9, Func. Count: 95, Neg. LLF: 151.7410144925912
Iteration: 10, Func. Count: 105, Neg. LLF: 151.74024252597508
Iteration: 11, Func. Count: 115, Neg. LLF: 151.74018732471578
Iteration: 12, Func. Count: 125, Neg. LLF: 151.74016767441117
Iteration: 13, Func. Count: 135, Neg. LLF: 151.74016593523814
Iteration: 14, Func. Count: 144, Neg. LLF: 151.7401659351404
Optimization terminated successfully (Exit mode 0)
Current function value: 151.74016593523814
Iterations: 14
Function evaluations: 144
Gradient evaluations: 14
Iteration: 1, Func. Count: 12, Neg. LLF: 17812086.912932124
Iteration: 2, Func. Count: 25, Neg. LLF: 168.5265086098121
Iteration: 3, Func. Count: 37, Neg. LLF: 154.60137930232972
Iteration: 4, Func. Count: 49, Neg. LLF: 152.18612633282916
Iteration: 5, Func. Count: 60, Neg. LLF: 152.20111401874178
Iteration: 6, Func. Count: 72, Neg. LLF: 151.9970410107808
Iteration: 7, Func. Count: 83, Neg. LLF: 152.02400802502072
Iteration: 8, Func. Count: 95, Neg. LLF: 151.80102833645086
Iteration: 9, Func. Count: 106, Neg. LLF: 151.7488872490267
Iteration: 10, Func. Count: 117, Neg. LLF: 151.74179103719874
Iteration: 11, Func. Count: 128, Neg. LLF: 151.7403136793974
Iteration: 12, Func. Count: 139, Neg. LLF: 151.74016714298602
Iteration: 13, Func. Count: 150, Neg. LLF: 151.74016561146857
Iteration: 14, Func. Count: 160, Neg. LLF: 151.74016564600862
Optimization terminated successfully (Exit mode 0)
Current function value: 151.74016561146857
Iterations: 14
Function evaluations: 160
Gradient evaluations: 14
Iteration: 1, Func. Count: 13, Neg. LLF: 416.9201786897777
Iteration: 2, Func. Count: 26, Neg. LLF: 211.0823811370231
Iteration: 3, Func. Count: 39, Neg. LLF: 153.20996014027193
Iteration: 4, Func. Count: 52, Neg. LLF: 153.64929520642517
Iteration: 5, Func. Count: 65, Neg. LLF: 152.7305343867448
Iteration: 6, Func. Count: 78, Neg. LLF: 153.0738285551233
Iteration: 7, Func. Count: 91, Neg. LLF: 151.95737485697782
Iteration: 8, Func. Count: 103, Neg. LLF: 158.52772130953076
Iteration: 9, Func. Count: 116, Neg. LLF: 151.88872547733072
Iteration: 10, Func. Count: 129, Neg. LLF: 151.83000594566138
Iteration: 11, Func. Count: 141, Neg. LLF: 151.83884525576892
Iteration: 12, Func. Count: 154, Neg. LLF: 151.82852117905858
Iteration: 13, Func. Count: 166, Neg. LLF: 151.8283933465961
Iteration: 14, Func. Count: 178, Neg. LLF: 151.82839004291952
Iteration: 15, Func. Count: 190, Neg. LLF: 151.82838930615966
Optimization terminated successfully (Exit mode 0)
Current function value: 151.82838930615966
Iterations: 15
Function evaluations: 190
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 160.61465734417362
Iteration: 2, Func. Count: 20, Neg. LLF: 156.0518469675971
Iteration: 3, Func. Count: 30, Neg. LLF: 157.5486819811011
Iteration: 4, Func. Count: 40, Neg. LLF: 156.19827919886785
Iteration: 5, Func. Count: 50, Neg. LLF: 155.45887116061368
Iteration: 6, Func. Count: 60, Neg. LLF: 155.89623252644023
Iteration: 7, Func. Count: 70, Neg. LLF: 155.04581776553752
Iteration: 8, Func. Count: 80, Neg. LLF: 154.51348292264805
Iteration: 9, Func. Count: 90, Neg. LLF: 154.29699288627955
Iteration: 10, Func. Count: 99, Neg. LLF: 154.21170102680574
Iteration: 11, Func. Count: 108, Neg. LLF: 154.1178681540747
Iteration: 12, Func. Count: 117, Neg. LLF: 154.0967989180204
Iteration: 13, Func. Count: 126, Neg. LLF: 154.09081785086929
Iteration: 14, Func. Count: 135, Neg. LLF: 154.08995874977947
Iteration: 15, Func. Count: 144, Neg. LLF: 154.08981861344748
Iteration: 16, Func. Count: 153, Neg. LLF: 154.0898156884381
Iteration: 17, Func. Count: 162, Neg. LLF: 154.08981348794106
Iteration: 18, Func. Count: 170, Neg. LLF: 154.08981348793932
Optimization terminated successfully (Exit mode 0)
Current function value: 154.08981348794106
Iterations: 18
Function evaluations: 170
Gradient evaluations: 18
Iteration: 1, Func. Count: 11, Neg. LLF: 18500426.874836013
Iteration: 2, Func. Count: 23, Neg. LLF: 192.7995923330095
Iteration: 3, Func. Count: 34, Neg. LLF: 152.64786076889317
Iteration: 4, Func. Count: 45, Neg. LLF: 151.47584768628187
Iteration: 5, Func. Count: 55, Neg. LLF: 151.45681870740592
Iteration: 6, Func. Count: 65, Neg. LLF: 151.45563027758135
Iteration: 7, Func. Count: 75, Neg. LLF: 151.45530000015415
Iteration: 8, Func. Count: 85, Neg. LLF: 151.4552701004963
Iteration: 9, Func. Count: 95, Neg. LLF: 151.45525695032802
Iteration: 10, Func. Count: 105, Neg. LLF: 151.45525574450346
Iteration: 11, Func. Count: 114, Neg. LLF: 151.45525574445347
Optimization terminated successfully (Exit mode 0)
Current function value: 151.45525574450346
Iterations: 11
Function evaluations: 114
Gradient evaluations: 11
Iteration: 1, Func. Count: 12, Neg. LLF: 17962894.746916816
Iteration: 2, Func. Count: 25, Neg. LLF: 164.28899875112887
Iteration: 3, Func. Count: 37, Neg. LLF: 152.8671079311229
Iteration: 4, Func. Count: 49, Neg. LLF: 152.14595762779092
Iteration: 5, Func. Count: 60, Neg. LLF: 153.37281689813267
Iteration: 6, Func. Count: 72, Neg. LLF: 151.91999418206098
Iteration: 7, Func. Count: 83, Neg. LLF: 151.51079365104934
Iteration: 8, Func. Count: 94, Neg. LLF: 151.46684989054194
Iteration: 9, Func. Count: 105, Neg. LLF: 151.45556947510173
Iteration: 10, Func. Count: 116, Neg. LLF: 151.45533469541326
Iteration: 11, Func. Count: 127, Neg. LLF: 151.45525654816032
Iteration: 12, Func. Count: 138, Neg. LLF: 151.45525570180084
Optimization terminated successfully (Exit mode 0)
Current function value: 151.45525570180084
Iterations: 12
Function evaluations: 138
Gradient evaluations: 12
Iteration: 1, Func. Count: 13, Neg. LLF: 17803409.874682337
Iteration: 2, Func. Count: 27, Neg. LLF: 164.56782695030685
Iteration: 3, Func. Count: 40, Neg. LLF: 157.64080828174892
Iteration: 4, Func. Count: 53, Neg. LLF: 152.68984955526489
Iteration: 5, Func. Count: 66, Neg. LLF: 152.36238723756645
Iteration: 6, Func. Count: 79, Neg. LLF: 152.69248912320347
Iteration: 7, Func. Count: 92, Neg. LLF: 151.97849500062205
Iteration: 8, Func. Count: 104, Neg. LLF: 156.49762415908765
Iteration: 9, Func. Count: 117, Neg. LLF: 151.88278593719207
Iteration: 10, Func. Count: 129, Neg. LLF: 152.24229269884856
Iteration: 11, Func. Count: 142, Neg. LLF: 151.88639989002547
Iteration: 12, Func. Count: 155, Neg. LLF: 151.80536909425606
Iteration: 13, Func. Count: 167, Neg. LLF: 151.8015942029821
Iteration: 14, Func. Count: 179, Neg. LLF: 151.8002030222876
Iteration: 15, Func. Count: 191, Neg. LLF: 151.7996989134995
Iteration: 16, Func. Count: 203, Neg. LLF: 151.79969372589687
Iteration: 17, Func. Count: 215, Neg. LLF: 151.79969282040074
Optimization terminated successfully (Exit mode 0)
Current function value: 151.79969282040074
Iterations: 17
Function evaluations: 215
Gradient evaluations: 17
Iteration: 1, Func. Count: 14, Neg. LLF: 813.2888677439956
Iteration: 2, Func. Count: 28, Neg. LLF: 805154.7690833649
Iteration: 3, Func. Count: 42, Neg. LLF: 163.56490478555588
Iteration: 4, Func. Count: 56, Neg. LLF: 158.85544760108826
Iteration: 5, Func. Count: 70, Neg. LLF: 152.18152073544803
Iteration: 6, Func. Count: 83, Neg. LLF: 151.90698034482722
Iteration: 7, Func. Count: 96, Neg. LLF: 153.76161900310075
Iteration: 8, Func. Count: 110, Neg. LLF: 151.9163699122992
Iteration: 9, Func. Count: 124, Neg. LLF: 151.80386035797557
Iteration: 10, Func. Count: 137, Neg. LLF: 151.79992499051886
Iteration: 11, Func. Count: 150, Neg. LLF: 151.79976071567953
Iteration: 12, Func. Count: 163, Neg. LLF: 151.79971415611598
Iteration: 13, Func. Count: 176, Neg. LLF: 151.7997022492764
Iteration: 14, Func. Count: 189, Neg. LLF: 151.79969653730038
Iteration: 15, Func. Count: 202, Neg. LLF: 151.79969317022002
Iteration: 16, Func. Count: 215, Neg. LLF: 151.79969256373843
Optimization terminated successfully (Exit mode 0)
Current function value: 151.79969256373843
Iterations: 16
Function evaluations: 215
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 158.77539100625805
Iteration: 2, Func. Count: 22, Neg. LLF: 158.01087483584448
Iteration: 3, Func. Count: 33, Neg. LLF: 153.97850347959437
Iteration: 4, Func. Count: 44, Neg. LLF: 153.1038479324304
Iteration: 5, Func. Count: 55, Neg. LLF: 153.14836992779863
Iteration: 6, Func. Count: 66, Neg. LLF: 151.89922105218207
Iteration: 7, Func. Count: 76, Neg. LLF: 151.78678768951883
Iteration: 8, Func. Count: 86, Neg. LLF: 151.73935282499372
Iteration: 9, Func. Count: 96, Neg. LLF: 151.72308114794305
Iteration: 10, Func. Count: 106, Neg. LLF: 151.71700994086027
Iteration: 11, Func. Count: 116, Neg. LLF: 151.70838415796882
Iteration: 12, Func. Count: 126, Neg. LLF: 151.70199373094948
Iteration: 13, Func. Count: 136, Neg. LLF: 151.6933652593809
Iteration: 14, Func. Count: 146, Neg. LLF: 151.6917002446572
Iteration: 15, Func. Count: 156, Neg. LLF: 151.69161501313442
Iteration: 16, Func. Count: 165, Neg. LLF: 151.6916150131218
Optimization terminated successfully (Exit mode 0)
Current function value: 151.69161501313442
Iterations: 16
Function evaluations: 165
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 18611245.52321438
Iteration: 2, Func. Count: 25, Neg. LLF: 190.6218073352232
Iteration: 3, Func. Count: 37, Neg. LLF: 153.54427158327607
Iteration: 4, Func. Count: 49, Neg. LLF: 151.88717624914992
Iteration: 5, Func. Count: 61, Neg. LLF: 181.40206713146233
Iteration: 6, Func. Count: 73, Neg. LLF: 150.71465120735235
Iteration: 7, Func. Count: 85, Neg. LLF: 150.16944259258753
Iteration: 8, Func. Count: 96, Neg. LLF: 150.1480651724098
Iteration: 9, Func. Count: 107, Neg. LLF: 150.14465073229843
Iteration: 10, Func. Count: 118, Neg. LLF: 150.14357137267194
Iteration: 11, Func. Count: 129, Neg. LLF: 150.14206678466263
Iteration: 12, Func. Count: 140, Neg. LLF: 150.1394092277299
Iteration: 13, Func. Count: 151, Neg. LLF: 150.13676029748504
Iteration: 14, Func. Count: 162, Neg. LLF: 150.1353032395361
Iteration: 15, Func. Count: 173, Neg. LLF: 150.13506530307365
Iteration: 16, Func. Count: 184, Neg. LLF: 150.13504399992274
Iteration: 17, Func. Count: 195, Neg. LLF: 150.13503887377126
Iteration: 18, Func. Count: 206, Neg. LLF: 150.13503210376538
Iteration: 19, Func. Count: 217, Neg. LLF: 150.13502271402282
Iteration: 20, Func. Count: 228, Neg. LLF: 150.13501614555537
Iteration: 21, Func. Count: 239, Neg. LLF: 150.13501436520454
Iteration: 22, Func. Count: 249, Neg. LLF: 150.1350143652
Optimization terminated successfully (Exit mode 0)
Current function value: 150.13501436520454
Iterations: 22
Function evaluations: 249
Gradient evaluations: 22
Iteration: 1, Func. Count: 13, Neg. LLF: 17827272.554235864
Iteration: 2, Func. Count: 27, Neg. LLF: 3272008.077027123
Iteration: 3, Func. Count: 40, Neg. LLF: 151.07069679953392
Iteration: 4, Func. Count: 52, Neg. LLF: 151.99513334153073
Iteration: 5, Func. Count: 65, Neg. LLF: 156.00494888791596
Iteration: 6, Func. Count: 78, Neg. LLF: 150.24975089477897
Iteration: 7, Func. Count: 90, Neg. LLF: 150.41078861507896
Iteration: 8, Func. Count: 103, Neg. LLF: 154.07075646068088
Iteration: 9, Func. Count: 117, Neg. LLF: 150.19506402237488
Iteration: 10, Func. Count: 129, Neg. LLF: 150.15486510042
Iteration: 11, Func. Count: 141, Neg. LLF: 150.1396701477211
Iteration: 12, Func. Count: 153, Neg. LLF: 150.1332070532501
Iteration: 13, Func. Count: 165, Neg. LLF: 150.13065604719458
Iteration: 14, Func. Count: 177, Neg. LLF: 150.12762875268322
Iteration: 15, Func. Count: 189, Neg. LLF: 150.1258565773009
Iteration: 16, Func. Count: 201, Neg. LLF: 150.12549754973685
Iteration: 17, Func. Count: 213, Neg. LLF: 150.1254481061819
Iteration: 18, Func. Count: 225, Neg. LLF: 150.12543788709803
Iteration: 19, Func. Count: 237, Neg. LLF: 150.12543231033698
Iteration: 20, Func. Count: 249, Neg. LLF: 150.12542916178342
Iteration: 21, Func. Count: 260, Neg. LLF: 150.12542916171586
Optimization terminated successfully (Exit mode 0)
Current function value: 150.12542916178342
Iterations: 21
Function evaluations: 260
Gradient evaluations: 21
Iteration: 1, Func. Count: 14, Neg. LLF: 418.95067209659476
Iteration: 2, Func. Count: 28, Neg. LLF: 1239.3690314073624
Iteration: 3, Func. Count: 42, Neg. LLF: 177.79374372864544
Iteration: 4, Func. Count: 56, Neg. LLF: 224.3841513636894
Iteration: 5, Func. Count: 70, Neg. LLF: 153.2955388228789
Iteration: 6, Func. Count: 84, Neg. LLF: 153.3946663958312
Iteration: 7, Func. Count: 98, Neg. LLF: 151.98122878179046
Iteration: 8, Func. Count: 112, Neg. LLF: 153.8199504907089
Iteration: 9, Func. Count: 126, Neg. LLF: 150.6868835034531
Iteration: 10, Func. Count: 139, Neg. LLF: 150.8696600213358
Iteration: 11, Func. Count: 153, Neg. LLF: 150.55618456176697
Iteration: 12, Func. Count: 166, Neg. LLF: 150.37230079712785
Iteration: 13, Func. Count: 179, Neg. LLF: 150.27235941799555
Iteration: 14, Func. Count: 192, Neg. LLF: 150.24825429991074
Iteration: 15, Func. Count: 205, Neg. LLF: 150.21929828532154
Iteration: 16, Func. Count: 218, Neg. LLF: 150.20653199500242
Iteration: 17, Func. Count: 231, Neg. LLF: 150.19445232648172
Iteration: 18, Func. Count: 244, Neg. LLF: 150.1575990553823
Iteration: 19, Func. Count: 257, Neg. LLF: 150.13203486462854
Iteration: 20, Func. Count: 270, Neg. LLF: 150.10546477442642
Iteration: 21, Func. Count: 283, Neg. LLF: 150.09168116438516
Iteration: 22, Func. Count: 296, Neg. LLF: 150.08125116718819
Iteration: 23, Func. Count: 309, Neg. LLF: 150.0803056852843
Iteration: 24, Func. Count: 322, Neg. LLF: 150.07961465041757
Iteration: 25, Func. Count: 335, Neg. LLF: 150.07938747171494
Iteration: 26, Func. Count: 348, Neg. LLF: 150.07909059494105
Iteration: 27, Func. Count: 361, Neg. LLF: 150.0790407582276
Iteration: 28, Func. Count: 374, Neg. LLF: 150.07903289254452
Iteration: 29, Func. Count: 386, Neg. LLF: 150.07903289251817
Optimization terminated successfully (Exit mode 0)
Current function value: 150.07903289254452
Iterations: 29
Function evaluations: 386
Gradient evaluations: 29
Iteration: 1, Func. Count: 15, Neg. LLF: 180.56328705471185
Iteration: 2, Func. Count: 30, Neg. LLF: 218.36495899927107
Iteration: 3, Func. Count: 45, Neg. LLF: 151.57452786893336
Iteration: 4, Func. Count: 60, Neg. LLF: 150.75891764173008
Iteration: 5, Func. Count: 74, Neg. LLF: 155.22810488780067
Iteration: 6, Func. Count: 89, Neg. LLF: 150.91054286324203
Iteration: 7, Func. Count: 104, Neg. LLF: 150.7544250925654
Iteration: 8, Func. Count: 119, Neg. LLF: 150.1149889916369
Iteration: 9, Func. Count: 133, Neg. LLF: 150.2158093991255
Iteration: 10, Func. Count: 148, Neg. LLF: 150.09130273714695
Iteration: 11, Func. Count: 162, Neg. LLF: 150.08603573673435
Iteration: 12, Func. Count: 176, Neg. LLF: 150.08270095750348
Iteration: 13, Func. Count: 190, Neg. LLF: 150.08061589864
Iteration: 14, Func. Count: 204, Neg. LLF: 150.07996829031833
Iteration: 15, Func. Count: 218, Neg. LLF: 150.07938489711196
Iteration: 16, Func. Count: 232, Neg. LLF: 150.07908737813298
Iteration: 17, Func. Count: 246, Neg. LLF: 150.07903505566662
Iteration: 18, Func. Count: 260, Neg. LLF: 150.07903233599998
Iteration: 19, Func. Count: 273, Neg. LLF: 150.07903244778407
Optimization terminated successfully (Exit mode 0)
Current function value: 150.07903233599998
Iterations: 19
Function evaluations: 273
Gradient evaluations: 19
Iteration: 1, Func. Count: 8, Neg. LLF: 159.0464537832248
Iteration: 2, Func. Count: 16, Neg. LLF: 159.4607610924044
Iteration: 3, Func. Count: 26, Neg. LLF: 160.55491357030053
Iteration: 4, Func. Count: 35, Neg. LLF: 156.67896437436258
Iteration: 5, Func. Count: 43, Neg. LLF: 156.05889695177754
Iteration: 6, Func. Count: 50, Neg. LLF: 155.8729903254717
Iteration: 7, Func. Count: 57, Neg. LLF: 155.85415327155826
Iteration: 8, Func. Count: 64, Neg. LLF: 155.8135570245982
Iteration: 9, Func. Count: 71, Neg. LLF: 155.77178363107197
Iteration: 10, Func. Count: 78, Neg. LLF: 155.57120690637032
Iteration: 11, Func. Count: 85, Neg. LLF: 155.5075562164918
Iteration: 12, Func. Count: 92, Neg. LLF: 155.49490085236047
Iteration: 13, Func. Count: 99, Neg. LLF: 155.49442732766548
Iteration: 14, Func. Count: 106, Neg. LLF: 155.49440644139952
Iteration: 15, Func. Count: 112, Neg. LLF: 155.49440644141256
Optimization terminated successfully (Exit mode 0)
Current function value: 155.49440644139952
Iterations: 15
Function evaluations: 112
Gradient evaluations: 15
Iteration: 1, Func. Count: 9, Neg. LLF: 2681.38171240801
Iteration: 2, Func. Count: 19, Neg. LLF: 242.14209947563828
Iteration: 3, Func. Count: 29, Neg. LLF: 201.83829476267007
Iteration: 4, Func. Count: 38, Neg. LLF: 156.32127018554968
Iteration: 5, Func. Count: 47, Neg. LLF: 154.079681433482
Iteration: 6, Func. Count: 55, Neg. LLF: 158.85169468052314
Iteration: 7, Func. Count: 64, Neg. LLF: 153.99632926139148
Iteration: 8, Func. Count: 72, Neg. LLF: 153.96985669500492
Iteration: 9, Func. Count: 80, Neg. LLF: 153.950495952517
Iteration: 10, Func. Count: 88, Neg. LLF: 153.94442106864835
Iteration: 11, Func. Count: 96, Neg. LLF: 153.93241108199948
Iteration: 12, Func. Count: 104, Neg. LLF: 153.9154149911781
Iteration: 13, Func. Count: 112, Neg. LLF: 153.9120250136532
Iteration: 14, Func. Count: 120, Neg. LLF: 153.90990071869928
Iteration: 15, Func. Count: 128, Neg. LLF: 153.90950069426015
Iteration: 16, Func. Count: 136, Neg. LLF: 153.90949093339424
Iteration: 17, Func. Count: 144, Neg. LLF: 153.90948861771182
Iteration: 18, Func. Count: 151, Neg. LLF: 153.90948861784895
Optimization terminated successfully (Exit mode 0)
Current function value: 153.90948861771182
Iterations: 18
Function evaluations: 151
Gradient evaluations: 18
Iteration: 1, Func. Count: 10, Neg. LLF: 417.6139571512752
Iteration: 2, Func. Count: 20, Neg. LLF: 1305.8904068139727
Iteration: 3, Func. Count: 30, Neg. LLF: 200.87428659347577
Iteration: 4, Func. Count: 40, Neg. LLF: 154.04997414505925
Iteration: 5, Func. Count: 50, Neg. LLF: 154.18948306676558
Iteration: 6, Func. Count: 60, Neg. LLF: 153.40520450008364
Iteration: 7, Func. Count: 69, Neg. LLF: 153.4620423906769
Iteration: 8, Func. Count: 79, Neg. LLF: 157.73074055759255
Iteration: 9, Func. Count: 90, Neg. LLF: 153.29397265666213
Iteration: 10, Func. Count: 99, Neg. LLF: 153.2910708590503
Iteration: 11, Func. Count: 108, Neg. LLF: 153.29092595983744
Iteration: 12, Func. Count: 117, Neg. LLF: 153.29071949928786
Iteration: 13, Func. Count: 126, Neg. LLF: 153.29063748291034
Iteration: 14, Func. Count: 135, Neg. LLF: 153.29061587993195
Iteration: 15, Func. Count: 144, Neg. LLF: 153.29061441347739
Iteration: 16, Func. Count: 152, Neg. LLF: 153.29061441351314
Optimization terminated successfully (Exit mode 0)
Current function value: 153.29061441347739
Iterations: 16
Function evaluations: 152
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 420.443454219545
Iteration: 2, Func. Count: 22, Neg. LLF: 721.9970498631119
Iteration: 3, Func. Count: 33, Neg. LLF: 193.19844543670405
Iteration: 4, Func. Count: 44, Neg. LLF: 154.3024769958153
Iteration: 5, Func. Count: 55, Neg. LLF: 153.4570957962644
Iteration: 6, Func. Count: 65, Neg. LLF: 155.5244516723785
Iteration: 7, Func. Count: 76, Neg. LLF: 153.96044245350666
Iteration: 8, Func. Count: 87, Neg. LLF: 153.38017851065288
Iteration: 9, Func. Count: 98, Neg. LLF: 153.20744265002807
Iteration: 10, Func. Count: 108, Neg. LLF: 153.20690340484467
Iteration: 11, Func. Count: 118, Neg. LLF: 153.20672539790635
Iteration: 12, Func. Count: 128, Neg. LLF: 153.2065324075275
Iteration: 13, Func. Count: 138, Neg. LLF: 153.20647916013826
Iteration: 14, Func. Count: 148, Neg. LLF: 153.2064660182757
Iteration: 15, Func. Count: 158, Neg. LLF: 153.20646540298125
Optimization terminated successfully (Exit mode 0)
Current function value: 153.20646540298125
Iterations: 15
Function evaluations: 158
Gradient evaluations: 15
Iteration: 1, Func. Count: 12, Neg. LLF: 422.59233782994147
Iteration: 2, Func. Count: 24, Neg. LLF: 48877.44828862292
Iteration: 3, Func. Count: 36, Neg. LLF: 189.42652897288158
Iteration: 4, Func. Count: 48, Neg. LLF: 154.5723069984738
Iteration: 5, Func. Count: 60, Neg. LLF: 153.5199168399004
Iteration: 6, Func. Count: 71, Neg. LLF: 159.8366832124678
Iteration: 7, Func. Count: 83, Neg. LLF: 153.9275557827967
Iteration: 8, Func. Count: 95, Neg. LLF: 153.44825290422864
Iteration: 9, Func. Count: 107, Neg. LLF: 153.24829488681777
Iteration: 10, Func. Count: 119, Neg. LLF: 153.20758126579352
Iteration: 11, Func. Count: 130, Neg. LLF: 153.20659356252258
Iteration: 12, Func. Count: 141, Neg. LLF: 153.2065289143002
Iteration: 13, Func. Count: 152, Neg. LLF: 153.20649152867819
Iteration: 14, Func. Count: 163, Neg. LLF: 153.2064790535058
Iteration: 15, Func. Count: 174, Neg. LLF: 153.2064665690578
Iteration: 16, Func. Count: 185, Neg. LLF: 153.2064654472398
Iteration: 17, Func. Count: 195, Neg. LLF: 153.2064654893172
Optimization terminated successfully (Exit mode 0)
Current function value: 153.2064654472398
Iterations: 17
Function evaluations: 195
Gradient evaluations: 17
Iteration: 1, Func. Count: 9, Neg. LLF: 159.3175134148261
Iteration: 2, Func. Count: 18, Neg. LLF: 158.54643490988653
Iteration: 3, Func. Count: 29, Neg. LLF: 158.1208643184731
Iteration: 4, Func. Count: 39, Neg. LLF: 164.47259961686328
Iteration: 5, Func. Count: 48, Neg. LLF: 155.32626200986667
Iteration: 6, Func. Count: 56, Neg. LLF: 155.311854344784
Iteration: 7, Func. Count: 64, Neg. LLF: 155.30568437237702
Iteration: 8, Func. Count: 72, Neg. LLF: 155.27649917284103
Iteration: 9, Func. Count: 80, Neg. LLF: 155.21520189027765
Iteration: 10, Func. Count: 88, Neg. LLF: 155.2101946364153
Iteration: 11, Func. Count: 96, Neg. LLF: 155.20860214186976
Iteration: 12, Func. Count: 104, Neg. LLF: 155.20855649823707
Iteration: 13, Func. Count: 112, Neg. LLF: 155.20855549457542
Iteration: 14, Func. Count: 119, Neg. LLF: 155.20855549457517
Optimization terminated successfully (Exit mode 0)
Current function value: 155.20855549457542
Iterations: 14
Function evaluations: 119
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 18099068.961953457
Iteration: 2, Func. Count: 21, Neg. LLF: 156.41064527407144
Iteration: 3, Func. Count: 31, Neg. LLF: 152.1037258573804
Iteration: 4, Func. Count: 40, Neg. LLF: 152.0954795569216
Iteration: 5, Func. Count: 49, Neg. LLF: 152.1430536090241
Iteration: 6, Func. Count: 59, Neg. LLF: 152.1027880548779
Iteration: 7, Func. Count: 69, Neg. LLF: 152.0844699052511
Iteration: 8, Func. Count: 78, Neg. LLF: 152.08435420040246
Iteration: 9, Func. Count: 87, Neg. LLF: 152.08435300321253
Iteration: 10, Func. Count: 95, Neg. LLF: 152.0843530028315
Optimization terminated successfully (Exit mode 0)
Current function value: 152.08435300321253
Iterations: 10
Function evaluations: 95
Gradient evaluations: 10
Iteration: 1, Func. Count: 11, Neg. LLF: 17883401.79309916
Iteration: 2, Func. Count: 23, Neg. LLF: 157.223965585842
Iteration: 3, Func. Count: 34, Neg. LLF: 152.64686010117867
Iteration: 4, Func. Count: 45, Neg. LLF: 152.19562792316742
Iteration: 5, Func. Count: 55, Neg. LLF: 152.17034502914638
Iteration: 6, Func. Count: 65, Neg. LLF: 152.13715176724455
Iteration: 7, Func. Count: 75, Neg. LLF: 152.12916685968642
Iteration: 8, Func. Count: 85, Neg. LLF: 152.11676222531156
Iteration: 9, Func. Count: 95, Neg. LLF: 152.1042793555471
Iteration: 10, Func. Count: 105, Neg. LLF: 152.08514796668103
Iteration: 11, Func. Count: 115, Neg. LLF: 152.08441913403902
Iteration: 12, Func. Count: 125, Neg. LLF: 152.0843564724452
Iteration: 13, Func. Count: 135, Neg. LLF: 152.08435330378654
Iteration: 14, Func. Count: 144, Neg. LLF: 152.08435330845745
Optimization terminated successfully (Exit mode 0)
Current function value: 152.08435330378654
Iterations: 14
Function evaluations: 144
Gradient evaluations: 14
Iteration: 1, Func. Count: 12, Neg. LLF: 414.13222454508497
Iteration: 2, Func. Count: 24, Neg. LLF: 183.31275491764302
Iteration: 3, Func. Count: 36, Neg. LLF: 153.2490667752638
Iteration: 4, Func. Count: 48, Neg. LLF: 152.5645161241292
Iteration: 5, Func. Count: 59, Neg. LLF: 152.85611648708556
Iteration: 6, Func. Count: 71, Neg. LLF: 152.16040406005186
Iteration: 7, Func. Count: 82, Neg. LLF: 159.81000485423112
Iteration: 8, Func. Count: 94, Neg. LLF: 152.13374826004227
Iteration: 9, Func. Count: 106, Neg. LLF: 151.97952819425115
Iteration: 10, Func. Count: 117, Neg. LLF: 151.97683056721908
Iteration: 11, Func. Count: 128, Neg. LLF: 151.97674941250503
Iteration: 12, Func. Count: 139, Neg. LLF: 151.97674180375873
Iteration: 13, Func. Count: 149, Neg. LLF: 151.9767418038648
Optimization terminated successfully (Exit mode 0)
Current function value: 151.97674180375873
Iterations: 13
Function evaluations: 149
Gradient evaluations: 13
Iteration: 1, Func. Count: 13, Neg. LLF: 378.92788035505953
Iteration: 2, Func. Count: 26, Neg. LLF: 3624137.68930724
Iteration: 3, Func. Count: 39, Neg. LLF: 170.979856982056
Iteration: 4, Func. Count: 52, Neg. LLF: 152.77607497588426
Iteration: 5, Func. Count: 64, Neg. LLF: 152.54172226477854
Iteration: 6, Func. Count: 76, Neg. LLF: 155.00897453307851
Iteration: 7, Func. Count: 89, Neg. LLF: 152.1873096856525
Iteration: 8, Func. Count: 101, Neg. LLF: 159.7909948774994
Iteration: 9, Func. Count: 114, Neg. LLF: 152.11295652993525
Iteration: 10, Func. Count: 127, Neg. LLF: 152.02422747901338
Iteration: 11, Func. Count: 139, Neg. LLF: 151.99380934670563
Iteration: 12, Func. Count: 151, Neg. LLF: 151.97830714294045
Iteration: 13, Func. Count: 163, Neg. LLF: 151.9769193349477
Iteration: 14, Func. Count: 175, Neg. LLF: 151.97675527430616
Iteration: 15, Func. Count: 187, Neg. LLF: 151.97674213526457
Iteration: 16, Func. Count: 199, Neg. LLF: 151.97674144253315
Optimization terminated successfully (Exit mode 0)
Current function value: 151.97674144253315
Iterations: 16
Function evaluations: 199
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 160.35659175835963
Iteration: 2, Func. Count: 20, Neg. LLF: 155.95484824209095
Iteration: 3, Func. Count: 31, Neg. LLF: 156.54781737893512
Iteration: 4, Func. Count: 41, Neg. LLF: 154.80001765740786
Iteration: 5, Func. Count: 50, Neg. LLF: 156.09647729839838
Iteration: 6, Func. Count: 60, Neg. LLF: 154.5934994401079
Iteration: 7, Func. Count: 69, Neg. LLF: 154.5567524432167
Iteration: 8, Func. Count: 78, Neg. LLF: 154.5471733158204
Iteration: 9, Func. Count: 87, Neg. LLF: 154.53838183077724
Iteration: 10, Func. Count: 96, Neg. LLF: 154.51994730476727
Iteration: 11, Func. Count: 105, Neg. LLF: 154.50915707559474
Iteration: 12, Func. Count: 114, Neg. LLF: 154.5044550949396
Iteration: 13, Func. Count: 123, Neg. LLF: 154.50329123132917
Iteration: 14, Func. Count: 132, Neg. LLF: 154.50306766219325
Iteration: 15, Func. Count: 141, Neg. LLF: 154.50303117030444
Iteration: 16, Func. Count: 150, Neg. LLF: 154.5030232588601
Iteration: 17, Func. Count: 159, Neg. LLF: 154.50302235707167
Optimization terminated successfully (Exit mode 0)
Current function value: 154.50302235707167
Iterations: 17
Function evaluations: 159
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 18262805.55199739
Iteration: 2, Func. Count: 23, Neg. LLF: 159.6150863160354
Iteration: 3, Func. Count: 35, Neg. LLF: 152.1213187932688
Iteration: 4, Func. Count: 46, Neg. LLF: 151.92057203399463
Iteration: 5, Func. Count: 56, Neg. LLF: 151.91846569034303
Iteration: 6, Func. Count: 66, Neg. LLF: 151.91832846242133
Iteration: 7, Func. Count: 76, Neg. LLF: 151.91832254434834
Iteration: 8, Func. Count: 86, Neg. LLF: 151.91832204139249
Optimization terminated successfully (Exit mode 0)
Current function value: 151.91832204139249
Iterations: 8
Function evaluations: 86
Gradient evaluations: 8
Iteration: 1, Func. Count: 12, Neg. LLF: 17897362.272321634
Iteration: 2, Func. Count: 25, Neg. LLF: 158.80610168392644
Iteration: 3, Func. Count: 37, Neg. LLF: 152.29690582083217
Iteration: 4, Func. Count: 48, Neg. LLF: 151.86527099285257
Iteration: 5, Func. Count: 59, Neg. LLF: 152.37292627292763
Iteration: 6, Func. Count: 71, Neg. LLF: 151.9018888525591
Iteration: 7, Func. Count: 83, Neg. LLF: 151.77093203676642
Iteration: 8, Func. Count: 95, Neg. LLF: 151.7429065688437
Iteration: 9, Func. Count: 106, Neg. LLF: 151.7405779658809
Iteration: 10, Func. Count: 117, Neg. LLF: 151.7403327606727
Iteration: 11, Func. Count: 128, Neg. LLF: 151.740173892022
Iteration: 12, Func. Count: 139, Neg. LLF: 151.74016721940512
Iteration: 13, Func. Count: 150, Neg. LLF: 151.74016563129095
Iteration: 14, Func. Count: 160, Neg. LLF: 151.7401656312263
Optimization terminated successfully (Exit mode 0)
Current function value: 151.74016563129095
Iterations: 14
Function evaluations: 160
Gradient evaluations: 14
Iteration: 1, Func. Count: 13, Neg. LLF: 414.1238311561669
Iteration: 2, Func. Count: 26, Neg. LLF: 254.86410568272527
Iteration: 3, Func. Count: 39, Neg. LLF: 153.10876894561665
Iteration: 4, Func. Count: 52, Neg. LLF: 152.33944819431554
Iteration: 5, Func. Count: 64, Neg. LLF: 153.2993892630043
Iteration: 6, Func. Count: 77, Neg. LLF: 152.1780568954853
Iteration: 7, Func. Count: 90, Neg. LLF: 151.9368055184072
Iteration: 8, Func. Count: 102, Neg. LLF: 151.86520498031592
Iteration: 9, Func. Count: 114, Neg. LLF: 151.86681087768233
Iteration: 10, Func. Count: 127, Neg. LLF: 152.6784223776728
Iteration: 11, Func. Count: 141, Neg. LLF: 151.82944877911714
Iteration: 12, Func. Count: 153, Neg. LLF: 151.8284028314361
Iteration: 13, Func. Count: 165, Neg. LLF: 151.8283924632584
Iteration: 14, Func. Count: 177, Neg. LLF: 151.82838939461857
Iteration: 15, Func. Count: 188, Neg. LLF: 151.82838939465046
Optimization terminated successfully (Exit mode 0)
Current function value: 151.82838939461857
Iterations: 15
Function evaluations: 188
Gradient evaluations: 15
Iteration: 1, Func. Count: 14, Neg. LLF: 254.41219488632802
Iteration: 2, Func. Count: 28, Neg. LLF: 807824.2465552138
Iteration: 3, Func. Count: 42, Neg. LLF: 163.82165145539437
Iteration: 4, Func. Count: 56, Neg. LLF: 153.00421379876258
Iteration: 5, Func. Count: 69, Neg. LLF: 153.309327352711
Iteration: 6, Func. Count: 83, Neg. LLF: 153.48306983715895
Iteration: 7, Func. Count: 97, Neg. LLF: 152.28699706671125
Iteration: 8, Func. Count: 111, Neg. LLF: 152.2310713338674
Iteration: 9, Func. Count: 124, Neg. LLF: 152.17495150112947
Iteration: 10, Func. Count: 137, Neg. LLF: 152.14919420658848
Iteration: 11, Func. Count: 150, Neg. LLF: 152.1369576088165
Iteration: 12, Func. Count: 163, Neg. LLF: 152.13390411082497
Iteration: 13, Func. Count: 176, Neg. LLF: 152.12601166054944
Iteration: 14, Func. Count: 189, Neg. LLF: 152.12034658891548
Iteration: 15, Func. Count: 203, Neg. LLF: 151.96432910942565
Iteration: 16, Func. Count: 216, Neg. LLF: 151.8453648513933
Iteration: 17, Func. Count: 229, Neg. LLF: 151.7735676194844
Iteration: 18, Func. Count: 242, Neg. LLF: 151.7457644518253
Iteration: 19, Func. Count: 255, Neg. LLF: 151.74093875942856
Iteration: 20, Func. Count: 268, Neg. LLF: 151.7403030119803
Iteration: 21, Func. Count: 281, Neg. LLF: 151.740202330648
Iteration: 22, Func. Count: 294, Neg. LLF: 151.74016724420974
Iteration: 23, Func. Count: 307, Neg. LLF: 151.74016551842325
Iteration: 24, Func. Count: 319, Neg. LLF: 151.74016555602498
Optimization terminated successfully (Exit mode 0)
Current function value: 151.74016551842325
Iterations: 24
Function evaluations: 319
Gradient evaluations: 24
Iteration: 1, Func. Count: 11, Neg. LLF: 160.26650470765517
Iteration: 2, Func. Count: 22, Neg. LLF: 155.99395995119772
Iteration: 3, Func. Count: 34, Neg. LLF: 156.43896364204747
Iteration: 4, Func. Count: 45, Neg. LLF: 155.93510825342256
Iteration: 5, Func. Count: 56, Neg. LLF: 154.5426908688654
Iteration: 6, Func. Count: 66, Neg. LLF: 156.547049742134
Iteration: 7, Func. Count: 77, Neg. LLF: 154.5217383929041
Iteration: 8, Func. Count: 88, Neg. LLF: 154.29862110846068
Iteration: 9, Func. Count: 98, Neg. LLF: 154.2692945257188
Iteration: 10, Func. Count: 108, Neg. LLF: 154.20160211831663
Iteration: 11, Func. Count: 118, Neg. LLF: 154.1416960659788
Iteration: 12, Func. Count: 128, Neg. LLF: 154.11205044191445
Iteration: 13, Func. Count: 138, Neg. LLF: 154.10166687944357
Iteration: 14, Func. Count: 148, Neg. LLF: 154.09142205268665
Iteration: 15, Func. Count: 158, Neg. LLF: 154.09035950174854
Iteration: 16, Func. Count: 168, Neg. LLF: 154.089821951093
Iteration: 17, Func. Count: 178, Neg. LLF: 154.08981365554428
Iteration: 18, Func. Count: 187, Neg. LLF: 154.08981365554192
Optimization terminated successfully (Exit mode 0)
Current function value: 154.08981365554428
Iterations: 18
Function evaluations: 187
Gradient evaluations: 18
Iteration: 1, Func. Count: 12, Neg. LLF: 18512957.071251817
Iteration: 2, Func. Count: 25, Neg. LLF: 192.8319328425537
Iteration: 3, Func. Count: 37, Neg. LLF: 152.63007677223675
Iteration: 4, Func. Count: 49, Neg. LLF: 151.47793957616472
Iteration: 5, Func. Count: 60, Neg. LLF: 151.45670315053806
Iteration: 6, Func. Count: 71, Neg. LLF: 151.45560272672807
Iteration: 7, Func. Count: 82, Neg. LLF: 151.455303765238
Iteration: 8, Func. Count: 93, Neg. LLF: 151.45526952314245
Iteration: 9, Func. Count: 104, Neg. LLF: 151.45525742494857
Iteration: 10, Func. Count: 115, Neg. LLF: 151.45525578482466
Iteration: 11, Func. Count: 125, Neg. LLF: 151.45525578474405
Optimization terminated successfully (Exit mode 0)
Current function value: 151.45525578482466
Iterations: 11
Function evaluations: 125
Gradient evaluations: 11
Iteration: 1, Func. Count: 13, Neg. LLF: 17828034.34166079
Iteration: 2, Func. Count: 27, Neg. LLF: 170.60595027501918
Iteration: 3, Func. Count: 40, Neg. LLF: 153.66003634490744
Iteration: 4, Func. Count: 53, Neg. LLF: 152.48632375230144
Iteration: 5, Func. Count: 66, Neg. LLF: 152.7193412444542
Iteration: 6, Func. Count: 79, Neg. LLF: 151.771210197906
Iteration: 7, Func. Count: 91, Neg. LLF: 151.81046650887362
Iteration: 8, Func. Count: 104, Neg. LLF: 159.90826652948977
Iteration: 9, Func. Count: 117, Neg. LLF: 151.59772926689513
Iteration: 10, Func. Count: 129, Neg. LLF: 151.5770087133296
Iteration: 11, Func. Count: 141, Neg. LLF: 151.5701638650777
Iteration: 12, Func. Count: 153, Neg. LLF: 151.56768931230138
Iteration: 13, Func. Count: 165, Neg. LLF: 151.56738002743847
Iteration: 14, Func. Count: 177, Neg. LLF: 151.56736045519102
Iteration: 15, Func. Count: 189, Neg. LLF: 151.56735696664396
Iteration: 16, Func. Count: 201, Neg. LLF: 151.56735604598063
Optimization terminated successfully (Exit mode 0)
Current function value: 151.56735604598063
Iterations: 16
Function evaluations: 201
Gradient evaluations: 16
Iteration: 1, Func. Count: 14, Neg. LLF: 334.85796427660773
Iteration: 2, Func. Count: 28, Neg. LLF: 13027.576527250498
Iteration: 3, Func. Count: 42, Neg. LLF: 155.1317452769724
Iteration: 4, Func. Count: 56, Neg. LLF: 154.9934939435237
Iteration: 5, Func. Count: 70, Neg. LLF: 152.4660082232917
Iteration: 6, Func. Count: 83, Neg. LLF: 153.26841770793945
Iteration: 7, Func. Count: 97, Neg. LLF: 153.43576941330443
Iteration: 8, Func. Count: 111, Neg. LLF: 152.67853241484156
Iteration: 9, Func. Count: 125, Neg. LLF: 151.83706744811192
Iteration: 10, Func. Count: 138, Neg. LLF: 151.8148082695573
Iteration: 11, Func. Count: 151, Neg. LLF: 151.8029820203247
Iteration: 12, Func. Count: 164, Neg. LLF: 151.80103056908592
Iteration: 13, Func. Count: 177, Neg. LLF: 151.80033929967246
Iteration: 14, Func. Count: 190, Neg. LLF: 151.79991691478688
Iteration: 15, Func. Count: 203, Neg. LLF: 151.79982460504908
Iteration: 16, Func. Count: 216, Neg. LLF: 151.7997359582962
Iteration: 17, Func. Count: 229, Neg. LLF: 151.79970032700604
Iteration: 18, Func. Count: 242, Neg. LLF: 151.7996929295459
Iteration: 19, Func. Count: 254, Neg. LLF: 151.79969292963924
Optimization terminated successfully (Exit mode 0)
Current function value: 151.7996929295459
Iterations: 19
Function evaluations: 254
Gradient evaluations: 19
Iteration: 1, Func. Count: 15, Neg. LLF: 223.7886893537092
Iteration: 2, Func. Count: 30, Neg. LLF: 2223569.826148938
Iteration: 3, Func. Count: 45, Neg. LLF: 161.36842364139758
Iteration: 4, Func. Count: 60, Neg. LLF: 154.79532514025422
Iteration: 5, Func. Count: 75, Neg. LLF: 152.14963612607295
Iteration: 6, Func. Count: 89, Neg. LLF: 154.22237773775925
Iteration: 7, Func. Count: 104, Neg. LLF: 152.8114528976879
Iteration: 8, Func. Count: 119, Neg. LLF: 152.08524420242745
Iteration: 9, Func. Count: 134, Neg. LLF: 151.85453828752543
Iteration: 10, Func. Count: 148, Neg. LLF: 151.82667345058132
Iteration: 11, Func. Count: 162, Neg. LLF: 151.8064746085079
Iteration: 12, Func. Count: 176, Neg. LLF: 151.80311494590333
Iteration: 13, Func. Count: 190, Neg. LLF: 151.8003995903521
Iteration: 14, Func. Count: 204, Neg. LLF: 151.799768858738
Iteration: 15, Func. Count: 218, Neg. LLF: 151.7996941936072
Iteration: 16, Func. Count: 232, Neg. LLF: 151.79969259629843
Iteration: 17, Func. Count: 245, Neg. LLF: 151.79969265261178
Optimization terminated successfully (Exit mode 0)
Current function value: 151.79969259629843
Iterations: 17
Function evaluations: 245
Gradient evaluations: 17
Iteration: 1, Func. Count: 12, Neg. LLF: 158.64775650707068
Iteration: 2, Func. Count: 24, Neg. LLF: 157.14376958463347
Iteration: 3, Func. Count: 36, Neg. LLF: 156.29817136177743
Iteration: 4, Func. Count: 48, Neg. LLF: 153.8259041028174
Iteration: 5, Func. Count: 60, Neg. LLF: 153.35087689147258
Iteration: 6, Func. Count: 72, Neg. LLF: 152.05381959172487
Iteration: 7, Func. Count: 83, Neg. LLF: 151.9663113890515
Iteration: 8, Func. Count: 94, Neg. LLF: 152.01789939869283
Iteration: 9, Func. Count: 106, Neg. LLF: 151.89364424396672
Iteration: 10, Func. Count: 117, Neg. LLF: 151.815845937681
Iteration: 11, Func. Count: 128, Neg. LLF: 151.7440213489696
Iteration: 12, Func. Count: 139, Neg. LLF: 151.73429301972615
Iteration: 13, Func. Count: 150, Neg. LLF: 151.73635580701097
Iteration: 14, Func. Count: 162, Neg. LLF: 151.7006761572567
Iteration: 15, Func. Count: 173, Neg. LLF: 151.69768868059177
Iteration: 16, Func. Count: 184, Neg. LLF: 151.6919806959772
Iteration: 17, Func. Count: 195, Neg. LLF: 151.69162710981033
Iteration: 18, Func. Count: 206, Neg. LLF: 151.69161487762852
Iteration: 19, Func. Count: 216, Neg. LLF: 151.69161487762676
Optimization terminated successfully (Exit mode 0)
Current function value: 151.69161487762852
Iterations: 19
Function evaluations: 216
Gradient evaluations: 19
Iteration: 1, Func. Count: 13, Neg. LLF: 18622473.908973962
Iteration: 2, Func. Count: 27, Neg. LLF: 190.44250308943649
Iteration: 3, Func. Count: 40, Neg. LLF: 153.4324518027301
Iteration: 4, Func. Count: 53, Neg. LLF: 151.9733141550497
Iteration: 5, Func. Count: 66, Neg. LLF: 181.07455669077322
Iteration: 6, Func. Count: 79, Neg. LLF: 150.52052639725022
Iteration: 7, Func. Count: 92, Neg. LLF: 150.17146114816717
Iteration: 8, Func. Count: 104, Neg. LLF: 150.14770058226438
Iteration: 9, Func. Count: 116, Neg. LLF: 150.14408103105228
Iteration: 10, Func. Count: 128, Neg. LLF: 150.14307563210184
Iteration: 11, Func. Count: 140, Neg. LLF: 150.14172035471475
Iteration: 12, Func. Count: 152, Neg. LLF: 150.13923758738457
Iteration: 13, Func. Count: 164, Neg. LLF: 150.1367572278554
Iteration: 14, Func. Count: 176, Neg. LLF: 150.13528995232397
Iteration: 15, Func. Count: 188, Neg. LLF: 150.13503744939987
Iteration: 16, Func. Count: 200, Neg. LLF: 150.13501770666744
Iteration: 17, Func. Count: 212, Neg. LLF: 150.13501632639986
Iteration: 18, Func. Count: 223, Neg. LLF: 150.13501632640043
Optimization terminated successfully (Exit mode 0)
Current function value: 150.13501632639986
Iterations: 18
Function evaluations: 223
Gradient evaluations: 18
Iteration: 1, Func. Count: 14, Neg. LLF: 17811409.335829753
Iteration: 2, Func. Count: 29, Neg. LLF: 3108167.9718424734
Iteration: 3, Func. Count: 43, Neg. LLF: 151.20549067419
Iteration: 4, Func. Count: 56, Neg. LLF: 166.44169295270268
Iteration: 5, Func. Count: 70, Neg. LLF: 153.7657450570082
Iteration: 6, Func. Count: 84, Neg. LLF: 150.33431637006598
Iteration: 7, Func. Count: 97, Neg. LLF: 150.36739803490164
Iteration: 8, Func. Count: 111, Neg. LLF: 152.56301471479276
Iteration: 9, Func. Count: 126, Neg. LLF: 150.20942505213702
Iteration: 10, Func. Count: 139, Neg. LLF: 150.1553590396633
Iteration: 11, Func. Count: 152, Neg. LLF: 150.1492062944891
Iteration: 12, Func. Count: 165, Neg. LLF: 150.1432338354926
Iteration: 13, Func. Count: 178, Neg. LLF: 150.1307923838221
Iteration: 14, Func. Count: 191, Neg. LLF: 150.12799477739298
Iteration: 15, Func. Count: 204, Neg. LLF: 150.12606817056832
Iteration: 16, Func. Count: 217, Neg. LLF: 150.12566833283697
Iteration: 17, Func. Count: 230, Neg. LLF: 150.12554649226132
Iteration: 18, Func. Count: 243, Neg. LLF: 150.12549286852382
Iteration: 19, Func. Count: 256, Neg. LLF: 150.1254517270334
Iteration: 20, Func. Count: 269, Neg. LLF: 150.12543225624333
Iteration: 21, Func. Count: 282, Neg. LLF: 150.12542884959035
Iteration: 22, Func. Count: 294, Neg. LLF: 150.12542884953797
Optimization terminated successfully (Exit mode 0)
Current function value: 150.12542884959035
Iterations: 22
Function evaluations: 294
Gradient evaluations: 22
Iteration: 1, Func. Count: 15, Neg. LLF: 180.43304392811768
Iteration: 2, Func. Count: 30, Neg. LLF: 216.86007012972337
Iteration: 3, Func. Count: 45, Neg. LLF: 151.0008066286991
Iteration: 4, Func. Count: 59, Neg. LLF: 150.50891162342563
Iteration: 5, Func. Count: 73, Neg. LLF: 156.33793571561515
Iteration: 6, Func. Count: 89, Neg. LLF: 150.90779999702627
Iteration: 7, Func. Count: 104, Neg. LLF: 150.18440565975405
Iteration: 8, Func. Count: 119, Neg. LLF: 150.1010100684769
Iteration: 9, Func. Count: 133, Neg. LLF: 150.66646066489443
Iteration: 10, Func. Count: 149, Neg. LLF: 150.0969942923131
Iteration: 11, Func. Count: 163, Neg. LLF: 150.08595023553505
Iteration: 12, Func. Count: 177, Neg. LLF: 150.08353230561485
Iteration: 13, Func. Count: 191, Neg. LLF: 150.0811731677515
Iteration: 14, Func. Count: 205, Neg. LLF: 150.08011843128068
Iteration: 15, Func. Count: 219, Neg. LLF: 150.07924420901068
Iteration: 16, Func. Count: 233, Neg. LLF: 150.07905599994817
Iteration: 17, Func. Count: 247, Neg. LLF: 150.07903405174716
Iteration: 18, Func. Count: 261, Neg. LLF: 150.07903252132203
Iteration: 19, Func. Count: 274, Neg. LLF: 150.07903252123216
Optimization terminated successfully (Exit mode 0)
Current function value: 150.07903252132203
Iterations: 19
Function evaluations: 274
Gradient evaluations: 19
Iteration: 1, Func. Count: 16, Neg. LLF: 180.63351756532492
Iteration: 2, Func. Count: 32, Neg. LLF: 370.0343118553477
Iteration: 3, Func. Count: 48, Neg. LLF: 151.58926701960215
Iteration: 4, Func. Count: 63, Neg. LLF: 150.80001766907125
Iteration: 5, Func. Count: 78, Neg. LLF: 165.6706647283263
Iteration: 6, Func. Count: 95, Neg. LLF: 150.52091822499546
Iteration: 7, Func. Count: 110, Neg. LLF: 150.4762058552593
Iteration: 8, Func. Count: 126, Neg. LLF: 151.33433264085906
Iteration: 9, Func. Count: 142, Neg. LLF: 150.21648006026177
Iteration: 10, Func. Count: 157, Neg. LLF: 150.13291347405686
Iteration: 11, Func. Count: 172, Neg. LLF: 150.102074836694
Iteration: 12, Func. Count: 187, Neg. LLF: 150.24544625827272
Iteration: 13, Func. Count: 203, Neg. LLF: 150.0860257873401
Iteration: 14, Func. Count: 218, Neg. LLF: 150.08400670987066
Iteration: 15, Func. Count: 233, Neg. LLF: 150.08127900148725
Iteration: 16, Func. Count: 248, Neg. LLF: 150.0798946339483
Iteration: 17, Func. Count: 263, Neg. LLF: 150.07927350256324
Iteration: 18, Func. Count: 278, Neg. LLF: 150.0790698596436
Iteration: 19, Func. Count: 293, Neg. LLF: 150.07903614653367
Iteration: 20, Func. Count: 308, Neg. LLF: 150.0790326424992
Iteration: 21, Func. Count: 322, Neg. LLF: 150.0790327542133
Optimization terminated successfully (Exit mode 0)
Current function value: 150.0790326424992
Iterations: 21
Function evaluations: 322
Gradient evaluations: 21
Iteration: 1, Func. Count: 6, Neg. LLF: 18387850.53814616
Iteration: 2, Func. Count: 13, Neg. LLF: 157.69779728614333
Iteration: 3, Func. Count: 19, Neg. LLF: 152.11000499125655
Iteration: 4, Func. Count: 24, Neg. LLF: 160.0231624300523
Iteration: 5, Func. Count: 30, Neg. LLF: 152.08955009539173
Iteration: 6, Func. Count: 35, Neg. LLF: 152.08481237677756
Iteration: 7, Func. Count: 40, Neg. LLF: 152.08438716447
Iteration: 8, Func. Count: 45, Neg. LLF: 152.0843533241701
Iteration: 9, Func. Count: 50, Neg. LLF: 152.08435259986334
Optimization terminated successfully (Exit mode 0)
Current function value: 152.08435259986334
Iterations: 9
Function evaluations: 50
Gradient evaluations: 9
Iteration: 1, Func. Count: 5, Neg. LLF: 153.445204337611
Iteration: 2, Func. Count: 10, Neg. LLF: 152.3646868807696
Iteration: 3, Func. Count: 15, Neg. LLF: 149.92947545863643
Iteration: 4, Func. Count: 19, Neg. LLF: 149.88425542838115
Iteration: 5, Func. Count: 23, Neg. LLF: 149.87776892647076
Iteration: 6, Func. Count: 27, Neg. LLF: 149.87724262095824
Iteration: 7, Func. Count: 31, Neg. LLF: 149.87656017926892
Iteration: 8, Func. Count: 35, Neg. LLF: 149.87586506471433
Iteration: 9, Func. Count: 39, Neg. LLF: 149.87567201688756
Iteration: 10, Func. Count: 43, Neg. LLF: 149.87564678923542
Iteration: 11, Func. Count: 47, Neg. LLF: 149.87564594713544
Optimization terminated successfully (Exit mode 0)
Current function value: 149.87564594713544
Iterations: 11
Function evaluations: 47
Gradient evaluations: 11
Iteration: 1, Func. Count: 6, Neg. LLF: 20706796.415722847
Iteration: 2, Func. Count: 13, Neg. LLF: 148.10169621208215
Iteration: 3, Func. Count: 19, Neg. LLF: 147.8178908177789
Iteration: 4, Func. Count: 24, Neg. LLF: 147.89921806151222
Iteration: 5, Func. Count: 30, Neg. LLF: 147.9493490667905
Iteration: 6, Func. Count: 36, Neg. LLF: 147.78905603728552
Iteration: 7, Func. Count: 41, Neg. LLF: 147.78843191119836
Iteration: 8, Func. Count: 46, Neg. LLF: 147.78841630184726
Iteration: 9, Func. Count: 51, Neg. LLF: 147.7884156363122
Optimization terminated successfully (Exit mode 0)
Current function value: 147.7884156363122
Iterations: 9
Function evaluations: 51
Gradient evaluations: 9
Iteration: 1, Func. Count: 7, Neg. LLF: 904.5661536323657
Iteration: 2, Func. Count: 14, Neg. LLF: 153.46431209998042
Iteration: 3, Func. Count: 21, Neg. LLF: 160.05671044468056
Iteration: 4, Func. Count: 28, Neg. LLF: 147.30742048145038
Iteration: 5, Func. Count: 34, Neg. LLF: 147.21682130587956
Iteration: 6, Func. Count: 40, Neg. LLF: 147.17077239647486
Iteration: 7, Func. Count: 46, Neg. LLF: 147.16219074989317
Iteration: 8, Func. Count: 52, Neg. LLF: 147.16067917539496
Iteration: 9, Func. Count: 58, Neg. LLF: 147.16063220303164
Iteration: 10, Func. Count: 63, Neg. LLF: 147.1606322030765
Optimization terminated successfully (Exit mode 0)
Current function value: 147.16063220303164
Iterations: 10
Function evaluations: 63
Gradient evaluations: 10
Iteration: 1, Func. Count: 8, Neg. LLF: 884.0404757063332
Iteration: 2, Func. Count: 16, Neg. LLF: 151.76531596305674
Iteration: 3, Func. Count: 24, Neg. LLF: 153.9356843482263
Iteration: 4, Func. Count: 32, Neg. LLF: 147.50323863247985
Iteration: 5, Func. Count: 39, Neg. LLF: 147.48481077256
Iteration: 6, Func. Count: 47, Neg. LLF: 147.32413241955086
Iteration: 7, Func. Count: 55, Neg. LLF: 147.22001373469428
Iteration: 8, Func. Count: 62, Neg. LLF: 147.177199022578
Iteration: 9, Func. Count: 69, Neg. LLF: 147.1698287403294
Iteration: 10, Func. Count: 76, Neg. LLF: 147.16084487493532
Iteration: 11, Func. Count: 83, Neg. LLF: 147.16070878093717
Iteration: 12, Func. Count: 90, Neg. LLF: 147.16063538227232
Iteration: 13, Func. Count: 97, Neg. LLF: 147.16063260900057
Iteration: 14, Func. Count: 103, Neg. LLF: 147.1606326120363
Optimization terminated successfully (Exit mode 0)
Current function value: 147.16063260900057
Iterations: 14
Function evaluations: 103
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 846.2268573870655
Iteration: 2, Func. Count: 18, Neg. LLF: 149.74939469024358
Iteration: 3, Func. Count: 27, Neg. LLF: 158.7307587404404
Iteration: 4, Func. Count: 36, Neg. LLF: 147.44065732029384
Iteration: 5, Func. Count: 44, Neg. LLF: 147.38419465050782
Iteration: 6, Func. Count: 53, Neg. LLF: 147.69001961414483
Iteration: 7, Func. Count: 62, Neg. LLF: 147.19186790664065
Iteration: 8, Func. Count: 70, Neg. LLF: 147.17432303162812
Iteration: 9, Func. Count: 78, Neg. LLF: 147.1726781149045
Iteration: 10, Func. Count: 86, Neg. LLF: 147.17107953820488
Iteration: 11, Func. Count: 94, Neg. LLF: 147.17009228117723
Iteration: 12, Func. Count: 102, Neg. LLF: 147.16858409329544
Iteration: 13, Func. Count: 110, Neg. LLF: 147.1679586258818
Iteration: 14, Func. Count: 118, Neg. LLF: 147.16763749099917
Iteration: 15, Func. Count: 126, Neg. LLF: 147.1674220274257
Iteration: 16, Func. Count: 134, Neg. LLF: 147.16703384653513
Iteration: 17, Func. Count: 142, Neg. LLF: 147.1642453541815
Iteration: 18, Func. Count: 150, Neg. LLF: 147.16089151405228
Iteration: 19, Func. Count: 158, Neg. LLF: 147.16065668886597
Iteration: 20, Func. Count: 166, Neg. LLF: 147.1606348475054
Iteration: 21, Func. Count: 174, Neg. LLF: 147.16063240275142
Iteration: 22, Func. Count: 181, Neg. LLF: 147.16063240415087
Optimization terminated successfully (Exit mode 0)
Current function value: 147.16063240275142
Iterations: 22
Function evaluations: 181
Gradient evaluations: 22
Iteration: 1, Func. Count: 6, Neg. LLF: 152.21921462585254
Iteration: 2, Func. Count: 12, Neg. LLF: 151.1661250525982
Iteration: 3, Func. Count: 19, Neg. LLF: 151.8295712020443
Iteration: 4, Func. Count: 25, Neg. LLF: 149.5426342419971
Iteration: 5, Func. Count: 30, Neg. LLF: 149.54800039798653
Iteration: 6, Func. Count: 36, Neg. LLF: 149.5016298434051
Iteration: 7, Func. Count: 41, Neg. LLF: 149.48803614391272
Iteration: 8, Func. Count: 46, Neg. LLF: 149.48122282201504
Iteration: 9, Func. Count: 51, Neg. LLF: 149.47989338748224
Iteration: 10, Func. Count: 56, Neg. LLF: 149.47959983791782
Iteration: 11, Func. Count: 61, Neg. LLF: 149.47931120468127
Iteration: 12, Func. Count: 66, Neg. LLF: 149.47900485215214
Iteration: 13, Func. Count: 71, Neg. LLF: 149.47889631512564
Iteration: 14, Func. Count: 76, Neg. LLF: 149.47888162602897
Iteration: 15, Func. Count: 80, Neg. LLF: 149.47888162604775
Optimization terminated successfully (Exit mode 0)
Current function value: 149.47888162602897
Iterations: 15
Function evaluations: 80
Gradient evaluations: 15
Iteration: 1, Func. Count: 7, Neg. LLF: 21594286.05892518
Iteration: 2, Func. Count: 15, Neg. LLF: 150.2360654134677
Iteration: 3, Func. Count: 22, Neg. LLF: 148.74968266522188
Iteration: 4, Func. Count: 29, Neg. LLF: 147.8671215701482
Iteration: 5, Func. Count: 35, Neg. LLF: 147.79221863053408
Iteration: 6, Func. Count: 41, Neg. LLF: 147.78883887831205
Iteration: 7, Func. Count: 47, Neg. LLF: 147.78842246673136
Iteration: 8, Func. Count: 53, Neg. LLF: 147.78841646933128
Iteration: 9, Func. Count: 58, Neg. LLF: 147.78841646996054
Optimization terminated successfully (Exit mode 0)
Current function value: 147.78841646933128
Iterations: 9
Function evaluations: 58
Gradient evaluations: 9
Iteration: 1, Func. Count: 8, Neg. LLF: 905.7672004665003
Iteration: 2, Func. Count: 16, Neg. LLF: 153.0493160086634
Iteration: 3, Func. Count: 24, Neg. LLF: 169.13162778927446
Iteration: 4, Func. Count: 32, Neg. LLF: 147.35313541361802
Iteration: 5, Func. Count: 39, Neg. LLF: 147.22985666605598
Iteration: 6, Func. Count: 46, Neg. LLF: 147.16968009216902
Iteration: 7, Func. Count: 53, Neg. LLF: 147.16359445783596
Iteration: 8, Func. Count: 60, Neg. LLF: 147.160961530501
Iteration: 9, Func. Count: 67, Neg. LLF: 147.16064014318388
Iteration: 10, Func. Count: 74, Neg. LLF: 147.16063225340355
Iteration: 11, Func. Count: 80, Neg. LLF: 147.16063225333446
Optimization terminated successfully (Exit mode 0)
Current function value: 147.16063225340355
Iterations: 11
Function evaluations: 80
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 881.0792321960902
Iteration: 2, Func. Count: 18, Neg. LLF: 150.5577234235625
Iteration: 3, Func. Count: 27, Neg. LLF: 157.667197718668
Iteration: 4, Func. Count: 36, Neg. LLF: 147.46354594904366
Iteration: 5, Func. Count: 44, Neg. LLF: 147.45593420167657
Iteration: 6, Func. Count: 53, Neg. LLF: 147.26997685523295
Iteration: 7, Func. Count: 61, Neg. LLF: 147.18803171681512
Iteration: 8, Func. Count: 69, Neg. LLF: 147.16802857848887
Iteration: 9, Func. Count: 77, Neg. LLF: 147.1607929431544
Iteration: 10, Func. Count: 85, Neg. LLF: 147.16064695040356
Iteration: 11, Func. Count: 93, Neg. LLF: 147.16063319963428
Iteration: 12, Func. Count: 101, Neg. LLF: 147.16063219643584
Iteration: 13, Func. Count: 108, Neg. LLF: 147.16063219955674
Optimization terminated successfully (Exit mode 0)
Current function value: 147.16063219643584
Iterations: 13
Function evaluations: 108
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 834.0388366151769
Iteration: 2, Func. Count: 20, Neg. LLF: 149.34801068904167
Iteration: 3, Func. Count: 30, Neg. LLF: 171.6359813943919
Iteration: 4, Func. Count: 40, Neg. LLF: 147.28999854692788
Iteration: 5, Func. Count: 49, Neg. LLF: 147.45700324913912
Iteration: 6, Func. Count: 59, Neg. LLF: 148.0500338910903
Iteration: 7, Func. Count: 69, Neg. LLF: 147.17866395657802
Iteration: 8, Func. Count: 78, Neg. LLF: 147.17502163910035
Iteration: 9, Func. Count: 87, Neg. LLF: 147.17314111434817
Iteration: 10, Func. Count: 96, Neg. LLF: 147.17067649988695
Iteration: 11, Func. Count: 105, Neg. LLF: 147.16864504361217
Iteration: 12, Func. Count: 114, Neg. LLF: 147.1681207814472
Iteration: 13, Func. Count: 123, Neg. LLF: 147.16777282620853
Iteration: 14, Func. Count: 132, Neg. LLF: 147.16747188881124
Iteration: 15, Func. Count: 141, Neg. LLF: 147.16721054873364
Iteration: 16, Func. Count: 150, Neg. LLF: 147.16528983628461
Iteration: 17, Func. Count: 159, Neg. LLF: 147.1608141289958
Iteration: 18, Func. Count: 168, Neg. LLF: 147.16065261773005
Iteration: 19, Func. Count: 177, Neg. LLF: 147.1606339622601
Iteration: 20, Func. Count: 186, Neg. LLF: 147.16063268093419
Iteration: 21, Func. Count: 195, Neg. LLF: 147.16063218551105
Optimization terminated successfully (Exit mode 0)
Current function value: 147.16063218551105
Iterations: 21
Function evaluations: 195
Gradient evaluations: 21
Iteration: 1, Func. Count: 7, Neg. LLF: 151.44049616302829
Iteration: 2, Func. Count: 14, Neg. LLF: 150.23595122200672
Iteration: 3, Func. Count: 22, Neg. LLF: 150.29287998600216
Iteration: 4, Func. Count: 29, Neg. LLF: 149.34673314728798
Iteration: 5, Func. Count: 36, Neg. LLF: 149.23212109727865
Iteration: 6, Func. Count: 42, Neg. LLF: 149.1872076669368
Iteration: 7, Func. Count: 48, Neg. LLF: 149.1537566432478
Iteration: 8, Func. Count: 54, Neg. LLF: 149.11948433367962
Iteration: 9, Func. Count: 60, Neg. LLF: 149.09605737371237
Iteration: 10, Func. Count: 66, Neg. LLF: 149.09439824182357
Iteration: 11, Func. Count: 72, Neg. LLF: 149.0930854322303
Iteration: 12, Func. Count: 78, Neg. LLF: 149.09142388843767
Iteration: 13, Func. Count: 84, Neg. LLF: 149.0912930878765
Iteration: 14, Func. Count: 90, Neg. LLF: 149.0912523218628
Iteration: 15, Func. Count: 95, Neg. LLF: 149.0912523218473
Optimization terminated successfully (Exit mode 0)
Current function value: 149.0912523218628
Iterations: 15
Function evaluations: 95
Gradient evaluations: 15
Iteration: 1, Func. Count: 8, Neg. LLF: 22117016.09251445
Iteration: 2, Func. Count: 17, Neg. LLF: 151.96490008414523
Iteration: 3, Func. Count: 25, Neg. LLF: 148.54611378856296
Iteration: 4, Func. Count: 33, Neg. LLF: 147.79610290683198
Iteration: 5, Func. Count: 40, Neg. LLF: 147.83131326254696
Iteration: 6, Func. Count: 48, Neg. LLF: 147.80608002425734
Iteration: 7, Func. Count: 56, Neg. LLF: 147.7503401831124
Iteration: 8, Func. Count: 63, Neg. LLF: 147.74890050274539
Iteration: 9, Func. Count: 70, Neg. LLF: 147.74876724292972
Iteration: 10, Func. Count: 77, Neg. LLF: 147.74874217648696
Iteration: 11, Func. Count: 84, Neg. LLF: 147.7487340417371
Iteration: 12, Func. Count: 90, Neg. LLF: 147.7487340415852
Optimization terminated successfully (Exit mode 0)
Current function value: 147.7487340417371
Iterations: 12
Function evaluations: 90
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 949.1162739242002
Iteration: 2, Func. Count: 18, Neg. LLF: 150.43809200803832
Iteration: 3, Func. Count: 27, Neg. LLF: 236.32506144142036
Iteration: 4, Func. Count: 37, Neg. LLF: 147.34058139441052
Iteration: 5, Func. Count: 45, Neg. LLF: 147.20546663094606
Iteration: 6, Func. Count: 53, Neg. LLF: 147.20588711162742
Iteration: 7, Func. Count: 62, Neg. LLF: 147.16068841211836
Iteration: 8, Func. Count: 70, Neg. LLF: 147.1606398210939
Iteration: 9, Func. Count: 78, Neg. LLF: 147.16063239722786
Iteration: 10, Func. Count: 85, Neg. LLF: 147.16063239719335
Optimization terminated successfully (Exit mode 0)
Current function value: 147.16063239722786
Iterations: 10
Function evaluations: 85
Gradient evaluations: 10
Iteration: 1, Func. Count: 10, Neg. LLF: 918.4783809788116
Iteration: 2, Func. Count: 20, Neg. LLF: 149.96437984625717
Iteration: 3, Func. Count: 30, Neg. LLF: 165.85218224609176
Iteration: 4, Func. Count: 40, Neg. LLF: 149.98637261957106
Iteration: 5, Func. Count: 50, Neg. LLF: 147.4724195988373
Iteration: 6, Func. Count: 59, Neg. LLF: 147.37656298183737
Iteration: 7, Func. Count: 69, Neg. LLF: 147.24212873354628
Iteration: 8, Func. Count: 78, Neg. LLF: 147.17641173234568
Iteration: 9, Func. Count: 87, Neg. LLF: 147.16518968811434
Iteration: 10, Func. Count: 96, Neg. LLF: 147.16157019486192
Iteration: 11, Func. Count: 105, Neg. LLF: 147.16065908977393
Iteration: 12, Func. Count: 114, Neg. LLF: 147.1606329475656
Iteration: 13, Func. Count: 123, Neg. LLF: 147.16063221992658
Optimization terminated successfully (Exit mode 0)
Current function value: 147.16063221992658
Iterations: 13
Function evaluations: 123
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 864.5205527862211
Iteration: 2, Func. Count: 22, Neg. LLF: 154.33774658537598
Iteration: 3, Func. Count: 33, Neg. LLF: 156.60469622403588
Iteration: 4, Func. Count: 44, Neg. LLF: 152.94672405216016
Iteration: 5, Func. Count: 55, Neg. LLF: 147.38056655149288
Iteration: 6, Func. Count: 65, Neg. LLF: 147.43175297800798
Iteration: 7, Func. Count: 76, Neg. LLF: 147.7874246350398
Iteration: 8, Func. Count: 87, Neg. LLF: 147.20309903970212
Iteration: 9, Func. Count: 97, Neg. LLF: 147.1868102028381
Iteration: 10, Func. Count: 107, Neg. LLF: 147.1818812330963
Iteration: 11, Func. Count: 117, Neg. LLF: 147.17654603345224
Iteration: 12, Func. Count: 127, Neg. LLF: 147.17377378407744
Iteration: 13, Func. Count: 137, Neg. LLF: 147.1704425395727
Iteration: 14, Func. Count: 147, Neg. LLF: 147.16764030492993
Iteration: 15, Func. Count: 157, Neg. LLF: 147.16725637559935
Iteration: 16, Func. Count: 167, Neg. LLF: 147.1671790643629
Iteration: 17, Func. Count: 177, Neg. LLF: 147.16690342269754
Iteration: 18, Func. Count: 187, Neg. LLF: 147.16255581931026
Iteration: 19, Func. Count: 197, Neg. LLF: 147.16139337610036
Iteration: 20, Func. Count: 207, Neg. LLF: 147.16079410717913
Iteration: 21, Func. Count: 217, Neg. LLF: 147.16063448552953
Iteration: 22, Func. Count: 227, Neg. LLF: 147.16063225752646
Iteration: 23, Func. Count: 236, Neg. LLF: 147.16063225872992
Optimization terminated successfully (Exit mode 0)
Current function value: 147.16063225752646
Iterations: 23
Function evaluations: 236
Gradient evaluations: 23
Iteration: 1, Func. Count: 8, Neg. LLF: 151.1838920966971
Iteration: 2, Func. Count: 16, Neg. LLF: 150.39239737662416
Iteration: 3, Func. Count: 25, Neg. LLF: 149.82503342504575
Iteration: 4, Func. Count: 33, Neg. LLF: 149.2843394906313
Iteration: 5, Func. Count: 40, Neg. LLF: 149.20044244292217
Iteration: 6, Func. Count: 47, Neg. LLF: 149.17075829317366
Iteration: 7, Func. Count: 54, Neg. LLF: 149.13576048353002
Iteration: 8, Func. Count: 61, Neg. LLF: 149.09749318271528
Iteration: 9, Func. Count: 68, Neg. LLF: 149.09444798659513
Iteration: 10, Func. Count: 75, Neg. LLF: 149.09329345111252
Iteration: 11, Func. Count: 82, Neg. LLF: 149.09170426874243
Iteration: 12, Func. Count: 89, Neg. LLF: 149.09129119703945
Iteration: 13, Func. Count: 96, Neg. LLF: 149.09125329676147
Iteration: 14, Func. Count: 103, Neg. LLF: 149.09125209291778
Iteration: 15, Func. Count: 109, Neg. LLF: 149.09125209375483
Optimization terminated successfully (Exit mode 0)
Current function value: 149.09125209291778
Iterations: 15
Function evaluations: 109
Gradient evaluations: 15
Iteration: 1, Func. Count: 9, Neg. LLF: 22082656.685931962
Iteration: 2, Func. Count: 19, Neg. LLF: 148.20750475001802
Iteration: 3, Func. Count: 28, Neg. LLF: 155.2184282083688
Iteration: 4, Func. Count: 38, Neg. LLF: 147.7762822207968
Iteration: 5, Func. Count: 46, Neg. LLF: 147.87454148102498
Iteration: 6, Func. Count: 55, Neg. LLF: 147.77715380391027
Iteration: 7, Func. Count: 64, Neg. LLF: 147.6953569320746
Iteration: 8, Func. Count: 72, Neg. LLF: 147.69346900789543
Iteration: 9, Func. Count: 80, Neg. LLF: 147.6927937939285
Iteration: 10, Func. Count: 88, Neg. LLF: 147.69260928792895
Iteration: 11, Func. Count: 96, Neg. LLF: 147.69240184713604
Iteration: 12, Func. Count: 104, Neg. LLF: 147.6921461893749
Iteration: 13, Func. Count: 112, Neg. LLF: 147.69199800091093
Iteration: 14, Func. Count: 120, Neg. LLF: 147.69196215846736
Iteration: 15, Func. Count: 128, Neg. LLF: 147.6919606633923
Iteration: 16, Func. Count: 135, Neg. LLF: 147.69196066338685
Optimization terminated successfully (Exit mode 0)
Current function value: 147.6919606633923
Iterations: 16
Function evaluations: 135
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 958.1896556957582
Iteration: 2, Func. Count: 20, Neg. LLF: 150.47899951218787
Iteration: 3, Func. Count: 30, Neg. LLF: 349.725984730119
Iteration: 4, Func. Count: 40, Neg. LLF: 147.27860259176774
Iteration: 5, Func. Count: 49, Neg. LLF: 147.2752144306919
Iteration: 6, Func. Count: 59, Neg. LLF: 147.441289134913
Iteration: 7, Func. Count: 69, Neg. LLF: 147.19027706358554
Iteration: 8, Func. Count: 78, Neg. LLF: 147.1728536550504
Iteration: 9, Func. Count: 87, Neg. LLF: 147.1667853614727
Iteration: 10, Func. Count: 96, Neg. LLF: 147.16099765458458
Iteration: 11, Func. Count: 105, Neg. LLF: 147.16051190952248
Iteration: 12, Func. Count: 114, Neg. LLF: 147.1604610985144
Iteration: 13, Func. Count: 123, Neg. LLF: 147.16045836909026
Iteration: 14, Func. Count: 131, Neg. LLF: 147.16045836915566
Optimization terminated successfully (Exit mode 0)
Current function value: 147.16045836909026
Iterations: 14
Function evaluations: 131
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 920.4614318135141
Iteration: 2, Func. Count: 22, Neg. LLF: 149.2641807536333
Iteration: 3, Func. Count: 33, Neg. LLF: 168.8990930538444
Iteration: 4, Func. Count: 44, Neg. LLF: 149.4956958592499
Iteration: 5, Func. Count: 55, Neg. LLF: 147.49591343958494
Iteration: 6, Func. Count: 65, Neg. LLF: 148.20887777927393
Iteration: 7, Func. Count: 76, Neg. LLF: 147.55424755638234
Iteration: 8, Func. Count: 87, Neg. LLF: 147.2036175483733
Iteration: 9, Func. Count: 97, Neg. LLF: 147.17741532711239
Iteration: 10, Func. Count: 107, Neg. LLF: 147.16360400250153
Iteration: 11, Func. Count: 117, Neg. LLF: 147.1606154503665
Iteration: 12, Func. Count: 127, Neg. LLF: 147.16048478495696
Iteration: 13, Func. Count: 137, Neg. LLF: 147.16045944501116
Iteration: 14, Func. Count: 147, Neg. LLF: 147.16045827879688
Iteration: 15, Func. Count: 156, Neg. LLF: 147.1604582825474
Optimization terminated successfully (Exit mode 0)
Current function value: 147.16045827879688
Iterations: 15
Function evaluations: 156
Gradient evaluations: 15
Iteration: 1, Func. Count: 12, Neg. LLF: 864.8129533750061
Iteration: 2, Func. Count: 24, Neg. LLF: 154.4097529652178
Iteration: 3, Func. Count: 36, Neg. LLF: 158.8502122969647
Iteration: 4, Func. Count: 48, Neg. LLF: 153.91159079571685
Iteration: 5, Func. Count: 60, Neg. LLF: 147.42054110861633
Iteration: 6, Func. Count: 71, Neg. LLF: 147.88110905669677
Iteration: 7, Func. Count: 83, Neg. LLF: 147.69173563263965
Iteration: 8, Func. Count: 95, Neg. LLF: 147.2173764425611
Iteration: 9, Func. Count: 106, Neg. LLF: 147.18938459004409
Iteration: 10, Func. Count: 117, Neg. LLF: 147.1830628833482
Iteration: 11, Func. Count: 128, Neg. LLF: 147.17574755676955
Iteration: 12, Func. Count: 139, Neg. LLF: 147.17308997729515
Iteration: 13, Func. Count: 150, Neg. LLF: 147.17091807243082
Iteration: 14, Func. Count: 161, Neg. LLF: 147.16823149342594
Iteration: 15, Func. Count: 172, Neg. LLF: 147.16725808583783
Iteration: 16, Func. Count: 183, Neg. LLF: 147.1670321903594
Iteration: 17, Func. Count: 194, Neg. LLF: 147.16684197024475
Iteration: 18, Func. Count: 205, Neg. LLF: 147.164234823117
Iteration: 19, Func. Count: 216, Neg. LLF: 147.16139081825597
Iteration: 20, Func. Count: 227, Neg. LLF: 147.16065008420296
Iteration: 21, Func. Count: 238, Neg. LLF: 147.16049753550078
Iteration: 22, Func. Count: 249, Neg. LLF: 147.1604597075072
Iteration: 23, Func. Count: 260, Neg. LLF: 147.16045819056373
Iteration: 24, Func. Count: 270, Neg. LLF: 147.1604581919722
Optimization terminated successfully (Exit mode 0)
Current function value: 147.16045819056373
Iterations: 24
Function evaluations: 270
Gradient evaluations: 24
Iteration: 1, Func. Count: 5, Neg. LLF: 152.63737046196545
Iteration: 2, Func. Count: 10, Neg. LLF: 151.9663219972748
Iteration: 3, Func. Count: 15, Neg. LLF: 151.15139794377126
Iteration: 4, Func. Count: 19, Neg. LLF: 151.0943891728457
Iteration: 5, Func. Count: 23, Neg. LLF: 151.08020858613008
Iteration: 6, Func. Count: 27, Neg. LLF: 151.0271270634837
Iteration: 7, Func. Count: 31, Neg. LLF: 151.02008305472293
Iteration: 8, Func. Count: 35, Neg. LLF: 151.01997186778468
Iteration: 9, Func. Count: 39, Neg. LLF: 151.01996972277684
Iteration: 10, Func. Count: 42, Neg. LLF: 151.01996972276348
Optimization terminated successfully (Exit mode 0)
Current function value: 151.01996972277684
Iterations: 10
Function evaluations: 42
Gradient evaluations: 10
Iteration: 1, Func. Count: 6, Neg. LLF: 422.99236874749414
Iteration: 2, Func. Count: 12, Neg. LLF: 152.5665266468918
Iteration: 3, Func. Count: 18, Neg. LLF: 149.0054255910571
Iteration: 4, Func. Count: 23, Neg. LLF: 159.8299407963874
Iteration: 5, Func. Count: 29, Neg. LLF: 153.96724216583834
Iteration: 6, Func. Count: 35, Neg. LLF: 156.29221494875168
Iteration: 7, Func. Count: 41, Neg. LLF: 151.31020006679609
Iteration: 8, Func. Count: 47, Neg. LLF: 149.55169263552327
Iteration: 9, Func. Count: 53, Neg. LLF: 148.1477180223073
Iteration: 10, Func. Count: 58, Neg. LLF: 148.11819015490644
Iteration: 11, Func. Count: 63, Neg. LLF: 148.12431824738312
Iteration: 12, Func. Count: 69, Neg. LLF: 148.1053297685305
Iteration: 13, Func. Count: 74, Neg. LLF: 148.10531816108286
Iteration: 14, Func. Count: 78, Neg. LLF: 148.105318160963
Optimization terminated successfully (Exit mode 0)
Current function value: 148.10531816108286
Iterations: 14
Function evaluations: 78
Gradient evaluations: 14
Iteration: 1, Func. Count: 7, Neg. LLF: 452.6215478181104
Iteration: 2, Func. Count: 14, Neg. LLF: 156.41837901344556
Iteration: 3, Func. Count: 21, Neg. LLF: 149.13936886519213
Iteration: 4, Func. Count: 27, Neg. LLF: 148.94011746022875
Iteration: 5, Func. Count: 34, Neg. LLF: 148.3382746251844
Iteration: 6, Func. Count: 40, Neg. LLF: 148.13033634849268
Iteration: 7, Func. Count: 46, Neg. LLF: 148.2537783912976
Iteration: 8, Func. Count: 53, Neg. LLF: 148.09441990839372
Iteration: 9, Func. Count: 59, Neg. LLF: 148.0943564546817
Iteration: 10, Func. Count: 65, Neg. LLF: 148.09435561678313
Optimization terminated successfully (Exit mode 0)
Current function value: 148.09435561678313
Iterations: 10
Function evaluations: 65
Gradient evaluations: 10
Iteration: 1, Func. Count: 8, Neg. LLF: 462.4178966986754
Iteration: 2, Func. Count: 16, Neg. LLF: 175.65966078422682
Iteration: 3, Func. Count: 24, Neg. LLF: 149.39958769828866
Iteration: 4, Func. Count: 32, Neg. LLF: 148.77177420741364
Iteration: 5, Func. Count: 39, Neg. LLF: 151.91153702649137
Iteration: 6, Func. Count: 47, Neg. LLF: 148.23999161367146
Iteration: 7, Func. Count: 54, Neg. LLF: 148.16784469613043
Iteration: 8, Func. Count: 61, Neg. LLF: 148.13848699876328
Iteration: 9, Func. Count: 68, Neg. LLF: 148.09732218677115
Iteration: 10, Func. Count: 75, Neg. LLF: 148.09493549357595
Iteration: 11, Func. Count: 82, Neg. LLF: 148.09442044496205
Iteration: 12, Func. Count: 89, Neg. LLF: 148.09435596773156
Iteration: 13, Func. Count: 95, Neg. LLF: 148.09435597418954
Optimization terminated successfully (Exit mode 0)
Current function value: 148.09435596773156
Iterations: 13
Function evaluations: 95
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 469.7465063510711
Iteration: 2, Func. Count: 18, Neg. LLF: 213.90319425027945
Iteration: 3, Func. Count: 27, Neg. LLF: 149.74733975233673
Iteration: 4, Func. Count: 36, Neg. LLF: 148.87472461165746
Iteration: 5, Func. Count: 44, Neg. LLF: 148.70592901089745
Iteration: 6, Func. Count: 52, Neg. LLF: 148.49553689863248
Iteration: 7, Func. Count: 60, Neg. LLF: 148.20194830195365
Iteration: 8, Func. Count: 68, Neg. LLF: 148.1072006866976
Iteration: 9, Func. Count: 76, Neg. LLF: 148.1077281959699
Iteration: 10, Func. Count: 85, Neg. LLF: 148.09436714588887
Iteration: 11, Func. Count: 93, Neg. LLF: 148.0943576417531
Iteration: 12, Func. Count: 101, Neg. LLF: 148.09435557541903
Iteration: 13, Func. Count: 108, Neg. LLF: 148.0943555857179
Optimization terminated successfully (Exit mode 0)
Current function value: 148.09435557541903
Iterations: 13
Function evaluations: 108
Gradient evaluations: 13
Iteration: 1, Func. Count: 6, Neg. LLF: 152.34559225555137
Iteration: 2, Func. Count: 12, Neg. LLF: 150.77914484583602
Iteration: 3, Func. Count: 18, Neg. LLF: 149.94850736391288
Iteration: 4, Func. Count: 24, Neg. LLF: 165.85496260851085
Iteration: 5, Func. Count: 30, Neg. LLF: 148.88528443402174
Iteration: 6, Func. Count: 35, Neg. LLF: 148.87246344005527
Iteration: 7, Func. Count: 40, Neg. LLF: 148.8594921397696
Iteration: 8, Func. Count: 45, Neg. LLF: 148.85449425604767
Iteration: 9, Func. Count: 50, Neg. LLF: 148.84310501435948
Iteration: 10, Func. Count: 55, Neg. LLF: 148.8418126183831
Iteration: 11, Func. Count: 60, Neg. LLF: 148.8416295928216
Iteration: 12, Func. Count: 65, Neg. LLF: 148.8416279715955
Iteration: 13, Func. Count: 69, Neg. LLF: 148.84162797159814
Optimization terminated successfully (Exit mode 0)
Current function value: 148.8416279715955
Iterations: 13
Function evaluations: 69
Gradient evaluations: 13
Iteration: 1, Func. Count: 7, Neg. LLF: 17442416.902271856
Iteration: 2, Func. Count: 15, Neg. LLF: 149.98791260443056
Iteration: 3, Func. Count: 22, Neg. LLF: 147.91732332700752
Iteration: 4, Func. Count: 28, Neg. LLF: 148.71726589127977
Iteration: 5, Func. Count: 35, Neg. LLF: 147.79485964154298
Iteration: 6, Func. Count: 41, Neg. LLF: 147.78975091912807
Iteration: 7, Func. Count: 47, Neg. LLF: 147.7884175092298
Iteration: 8, Func. Count: 53, Neg. LLF: 147.78841562348995
Iteration: 9, Func. Count: 58, Neg. LLF: 147.78841562332545
Optimization terminated successfully (Exit mode 0)
Current function value: 147.78841562348995
Iterations: 9
Function evaluations: 58
Gradient evaluations: 9
Iteration: 1, Func. Count: 8, Neg. LLF: 16583927.532486668
Iteration: 2, Func. Count: 17, Neg. LLF: 157.6763070765268
Iteration: 3, Func. Count: 25, Neg. LLF: 147.7884165816458
Iteration: 4, Func. Count: 32, Neg. LLF: 147.67575310150872
Iteration: 5, Func. Count: 40, Neg. LLF: 148.00185951773685
Iteration: 6, Func. Count: 48, Neg. LLF: 147.25256964967616
Iteration: 7, Func. Count: 55, Neg. LLF: 147.16467237059936
Iteration: 8, Func. Count: 62, Neg. LLF: 147.16141832911114
Iteration: 9, Func. Count: 69, Neg. LLF: 147.16074593577844
Iteration: 10, Func. Count: 76, Neg. LLF: 147.16063722270678
Iteration: 11, Func. Count: 83, Neg. LLF: 147.1606327394443
Iteration: 12, Func. Count: 90, Neg. LLF: 147.1606321650498
Optimization terminated successfully (Exit mode 0)
Current function value: 147.1606321650498
Iterations: 12
Function evaluations: 90
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 380.3804496141405
Iteration: 2, Func. Count: 18, Neg. LLF: 157.4990478165458
Iteration: 3, Func. Count: 27, Neg. LLF: 147.60706449136617
Iteration: 4, Func. Count: 35, Neg. LLF: 147.86645510086936
Iteration: 5, Func. Count: 44, Neg. LLF: 148.2713505865058
Iteration: 6, Func. Count: 53, Neg. LLF: 147.26144887433614
Iteration: 7, Func. Count: 61, Neg. LLF: 147.17046455131734
Iteration: 8, Func. Count: 69, Neg. LLF: 147.16552593458988
Iteration: 9, Func. Count: 77, Neg. LLF: 147.1608602867396
Iteration: 10, Func. Count: 85, Neg. LLF: 147.16068824587026
Iteration: 11, Func. Count: 93, Neg. LLF: 147.1606329826341
Iteration: 12, Func. Count: 101, Neg. LLF: 147.16063222584344
Optimization terminated successfully (Exit mode 0)
Current function value: 147.16063222584344
Iterations: 12
Function evaluations: 101
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 388.0726227648575
Iteration: 2, Func. Count: 20, Neg. LLF: 159.4822854702183
Iteration: 3, Func. Count: 30, Neg. LLF: 147.43713132822535
Iteration: 4, Func. Count: 39, Neg. LLF: 147.75971203119022
Iteration: 5, Func. Count: 49, Neg. LLF: 148.5330678112842
Iteration: 6, Func. Count: 59, Neg. LLF: 147.3026868428645
Iteration: 7, Func. Count: 69, Neg. LLF: 147.22410844067548
Iteration: 8, Func. Count: 78, Neg. LLF: 147.1982127291646
Iteration: 9, Func. Count: 87, Neg. LLF: 147.19103051657538
Iteration: 10, Func. Count: 96, Neg. LLF: 147.22284559288784
Iteration: 11, Func. Count: 106, Neg. LLF: 147.17700285054985
Iteration: 12, Func. Count: 115, Neg. LLF: 147.17156347189945
Iteration: 13, Func. Count: 124, Neg. LLF: 147.17008734855096
Iteration: 14, Func. Count: 133, Neg. LLF: 147.16876280144044
Iteration: 15, Func. Count: 142, Neg. LLF: 147.16780475301536
Iteration: 16, Func. Count: 151, Neg. LLF: 147.16738460339354
Iteration: 17, Func. Count: 160, Neg. LLF: 147.16723085726034
Iteration: 18, Func. Count: 169, Neg. LLF: 147.16560401915316
Iteration: 19, Func. Count: 178, Neg. LLF: 147.16166615093616
Iteration: 20, Func. Count: 187, Neg. LLF: 147.16073648629
Iteration: 21, Func. Count: 196, Neg. LLF: 147.16064680850187
Iteration: 22, Func. Count: 205, Neg. LLF: 147.16063321394446
Iteration: 23, Func. Count: 214, Neg. LLF: 147.16063225093666
Optimization terminated successfully (Exit mode 0)
Current function value: 147.16063225093666
Iterations: 23
Function evaluations: 214
Gradient evaluations: 23
Iteration: 1, Func. Count: 7, Neg. LLF: 152.29977911980458
Iteration: 2, Func. Count: 14, Neg. LLF: 150.95428414071253
Iteration: 3, Func. Count: 21, Neg. LLF: 149.9554501783467
Iteration: 4, Func. Count: 28, Neg. LLF: 158.81977747548657
Iteration: 5, Func. Count: 35, Neg. LLF: 148.8867388656774
Iteration: 6, Func. Count: 41, Neg. LLF: 148.86891516527322
Iteration: 7, Func. Count: 47, Neg. LLF: 148.8573082739977
Iteration: 8, Func. Count: 53, Neg. LLF: 148.85317907971353
Iteration: 9, Func. Count: 59, Neg. LLF: 148.84315510697738
Iteration: 10, Func. Count: 65, Neg. LLF: 148.84187775775243
Iteration: 11, Func. Count: 71, Neg. LLF: 148.84162992908762
Iteration: 12, Func. Count: 77, Neg. LLF: 148.8416279680456
Iteration: 13, Func. Count: 82, Neg. LLF: 148.84162798898777
Optimization terminated successfully (Exit mode 0)
Current function value: 148.8416279680456
Iterations: 13
Function evaluations: 82
Gradient evaluations: 13
Iteration: 1, Func. Count: 8, Neg. LLF: 18017860.845808342
Iteration: 2, Func. Count: 17, Neg. LLF: 149.05327172127292
Iteration: 3, Func. Count: 25, Neg. LLF: 150.2065070081554
Iteration: 4, Func. Count: 33, Neg. LLF: 148.10902334392446
Iteration: 5, Func. Count: 40, Neg. LLF: 147.8136432635023
Iteration: 6, Func. Count: 47, Neg. LLF: 147.79685331415706
Iteration: 7, Func. Count: 54, Neg. LLF: 147.78995197831375
Iteration: 8, Func. Count: 61, Neg. LLF: 147.7885371738319
Iteration: 9, Func. Count: 68, Neg. LLF: 147.78842048836924
Iteration: 10, Func. Count: 75, Neg. LLF: 147.78841561173144
Iteration: 11, Func. Count: 81, Neg. LLF: 147.78841561159396
Optimization terminated successfully (Exit mode 0)
Current function value: 147.78841561173144
Iterations: 11
Function evaluations: 81
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 16782036.585478213
Iteration: 2, Func. Count: 19, Neg. LLF: 162.911935258865
Iteration: 3, Func. Count: 28, Neg. LLF: 149.92315979621847
Iteration: 4, Func. Count: 37, Neg. LLF: 147.243348988042
Iteration: 5, Func. Count: 45, Neg. LLF: 148.56852049795518
Iteration: 6, Func. Count: 54, Neg. LLF: 147.1675034701525
Iteration: 7, Func. Count: 62, Neg. LLF: 147.1609208542193
Iteration: 8, Func. Count: 70, Neg. LLF: 147.16065210305206
Iteration: 9, Func. Count: 78, Neg. LLF: 147.16063285563715
Iteration: 10, Func. Count: 86, Neg. LLF: 147.1606321619641
Optimization terminated successfully (Exit mode 0)
Current function value: 147.1606321619641
Iterations: 10
Function evaluations: 86
Gradient evaluations: 10
Iteration: 1, Func. Count: 10, Neg. LLF: 380.74792930272656
Iteration: 2, Func. Count: 20, Neg. LLF: 162.90456672993315
Iteration: 3, Func. Count: 30, Neg. LLF: 147.71243390114486
Iteration: 4, Func. Count: 39, Neg. LLF: 147.59985497770745
Iteration: 5, Func. Count: 48, Neg. LLF: 147.99663849159404
Iteration: 6, Func. Count: 58, Neg. LLF: 147.28654445730044
Iteration: 7, Func. Count: 67, Neg. LLF: 147.22399630416245
Iteration: 8, Func. Count: 76, Neg. LLF: 147.22775163136905
Iteration: 9, Func. Count: 86, Neg. LLF: 147.17899152297574
Iteration: 10, Func. Count: 96, Neg. LLF: 147.1608776086325
Iteration: 11, Func. Count: 105, Neg. LLF: 147.1607116524299
Iteration: 12, Func. Count: 114, Neg. LLF: 147.1606367976465
Iteration: 13, Func. Count: 123, Neg. LLF: 147.16063226545663
Iteration: 14, Func. Count: 131, Neg. LLF: 147.16063226856204
Optimization terminated successfully (Exit mode 0)
Current function value: 147.16063226545663
Iterations: 14
Function evaluations: 131
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 385.3740490514604
Iteration: 2, Func. Count: 22, Neg. LLF: 169.73392289481464
Iteration: 3, Func. Count: 33, Neg. LLF: 147.62933256438453
Iteration: 4, Func. Count: 43, Neg. LLF: 147.57417203158948
Iteration: 5, Func. Count: 54, Neg. LLF: 147.49542363995525
Iteration: 6, Func. Count: 65, Neg. LLF: 147.36265553811987
Iteration: 7, Func. Count: 76, Neg. LLF: 147.27260989530163
Iteration: 8, Func. Count: 87, Neg. LLF: 147.19806449570837
Iteration: 9, Func. Count: 97, Neg. LLF: 147.21081608105357
Iteration: 10, Func. Count: 108, Neg. LLF: 147.174823386219
Iteration: 11, Func. Count: 118, Neg. LLF: 147.171230008511
Iteration: 12, Func. Count: 128, Neg. LLF: 147.16993246710524
Iteration: 13, Func. Count: 138, Neg. LLF: 147.16841764129802
Iteration: 14, Func. Count: 148, Neg. LLF: 147.16768635953483
Iteration: 15, Func. Count: 158, Neg. LLF: 147.1673767168322
Iteration: 16, Func. Count: 168, Neg. LLF: 147.16714462628852
Iteration: 17, Func. Count: 178, Neg. LLF: 147.1640999375159
Iteration: 18, Func. Count: 188, Neg. LLF: 147.16090903292212
Iteration: 19, Func. Count: 198, Neg. LLF: 147.1606916046953
Iteration: 20, Func. Count: 208, Neg. LLF: 147.16063400818808
Iteration: 21, Func. Count: 218, Neg. LLF: 147.1606321865151
Iteration: 22, Func. Count: 227, Neg. LLF: 147.16063218787497
Optimization terminated successfully (Exit mode 0)
Current function value: 147.1606321865151
Iterations: 22
Function evaluations: 227
Gradient evaluations: 22
Iteration: 1, Func. Count: 8, Neg. LLF: 151.74439013942694
Iteration: 2, Func. Count: 16, Neg. LLF: 149.6535876215278
Iteration: 3, Func. Count: 24, Neg. LLF: 150.22185043411375
Iteration: 4, Func. Count: 32, Neg. LLF: 155.60511915714758
Iteration: 5, Func. Count: 41, Neg. LLF: 148.7606493102806
Iteration: 6, Func. Count: 48, Neg. LLF: 148.7124909627057
Iteration: 7, Func. Count: 55, Neg. LLF: 148.6908823068209
Iteration: 8, Func. Count: 62, Neg. LLF: 148.65518290120116
Iteration: 9, Func. Count: 69, Neg. LLF: 148.63804213683738
Iteration: 10, Func. Count: 76, Neg. LLF: 148.61662864198186
Iteration: 11, Func. Count: 83, Neg. LLF: 148.610453146267
Iteration: 12, Func. Count: 90, Neg. LLF: 148.60988465273107
Iteration: 13, Func. Count: 97, Neg. LLF: 148.60984395869977
Iteration: 14, Func. Count: 104, Neg. LLF: 148.60984239275376
Iteration: 15, Func. Count: 110, Neg. LLF: 148.6098423927691
Optimization terminated successfully (Exit mode 0)
Current function value: 148.60984239275376
Iterations: 15
Function evaluations: 110
Gradient evaluations: 15
Iteration: 1, Func. Count: 9, Neg. LLF: 18386776.517633628
Iteration: 2, Func. Count: 19, Neg. LLF: 148.791044788353
Iteration: 3, Func. Count: 28, Neg. LLF: 152.533191570011
Iteration: 4, Func. Count: 37, Neg. LLF: 148.19182240780182
Iteration: 5, Func. Count: 46, Neg. LLF: 147.95704245756522
Iteration: 6, Func. Count: 55, Neg. LLF: 147.76001693171213
Iteration: 7, Func. Count: 63, Neg. LLF: 147.75040141020105
Iteration: 8, Func. Count: 71, Neg. LLF: 147.74886059873828
Iteration: 9, Func. Count: 79, Neg. LLF: 147.74873990706334
Iteration: 10, Func. Count: 87, Neg. LLF: 147.74873523420598
Iteration: 11, Func. Count: 95, Neg. LLF: 147.74873396630545
Iteration: 12, Func. Count: 102, Neg. LLF: 147.74873396634334
Optimization terminated successfully (Exit mode 0)
Current function value: 147.74873396630545
Iterations: 12
Function evaluations: 102
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 16998533.906613678
Iteration: 2, Func. Count: 21, Neg. LLF: 167.36666916758887
Iteration: 3, Func. Count: 31, Neg. LLF: 150.0007992765411
Iteration: 4, Func. Count: 41, Neg. LLF: 147.2183742196523
Iteration: 5, Func. Count: 50, Neg. LLF: 147.31833824892107
Iteration: 6, Func. Count: 60, Neg. LLF: 147.16485071538102
Iteration: 7, Func. Count: 69, Neg. LLF: 147.16113936664505
Iteration: 8, Func. Count: 78, Neg. LLF: 147.16064985190224
Iteration: 9, Func. Count: 87, Neg. LLF: 147.16063225257727
Iteration: 10, Func. Count: 95, Neg. LLF: 147.16063225262607
Optimization terminated successfully (Exit mode 0)
Current function value: 147.16063225257727
Iterations: 10
Function evaluations: 95
Gradient evaluations: 10
Iteration: 1, Func. Count: 11, Neg. LLF: 387.13444964202984
Iteration: 2, Func. Count: 22, Neg. LLF: 161.78303803017698
Iteration: 3, Func. Count: 33, Neg. LLF: 148.24472196553873
Iteration: 4, Func. Count: 43, Neg. LLF: 147.78505826078498
Iteration: 5, Func. Count: 53, Neg. LLF: 149.98297802332607
Iteration: 6, Func. Count: 65, Neg. LLF: 147.29663506921108
Iteration: 7, Func. Count: 75, Neg. LLF: 147.19941150484092
Iteration: 8, Func. Count: 85, Neg. LLF: 147.17774952226543
Iteration: 9, Func. Count: 95, Neg. LLF: 147.16400311612614
Iteration: 10, Func. Count: 105, Neg. LLF: 147.16149833066925
Iteration: 11, Func. Count: 115, Neg. LLF: 147.1606807659393
Iteration: 12, Func. Count: 125, Neg. LLF: 147.16064176126574
Iteration: 13, Func. Count: 135, Neg. LLF: 147.16063239802008
Iteration: 14, Func. Count: 144, Neg. LLF: 147.16063240097418
Optimization terminated successfully (Exit mode 0)
Current function value: 147.16063239802008
Iterations: 14
Function evaluations: 144
Gradient evaluations: 14
Iteration: 1, Func. Count: 12, Neg. LLF: 393.34095350887867
Iteration: 2, Func. Count: 24, Neg. LLF: 161.18588343287053
Iteration: 3, Func. Count: 36, Neg. LLF: 148.76057686229052
Iteration: 4, Func. Count: 48, Neg. LLF: 147.2754428205371
Iteration: 5, Func. Count: 59, Neg. LLF: 147.8302342000947
Iteration: 6, Func. Count: 71, Neg. LLF: 147.35380421932675
Iteration: 7, Func. Count: 83, Neg. LLF: 147.7464046519671
Iteration: 8, Func. Count: 95, Neg. LLF: 147.17168194570314
Iteration: 9, Func. Count: 106, Neg. LLF: 147.1656709602992
Iteration: 10, Func. Count: 117, Neg. LLF: 147.15412530345745
Iteration: 11, Func. Count: 128, Neg. LLF: 147.15332915431284
Iteration: 12, Func. Count: 139, Neg. LLF: 147.15302192766578
Iteration: 13, Func. Count: 150, Neg. LLF: 147.15300250071724
Iteration: 14, Func. Count: 161, Neg. LLF: 147.15299675542627
Iteration: 15, Func. Count: 171, Neg. LLF: 147.15299675548127
Optimization terminated successfully (Exit mode 0)
Current function value: 147.15299675542627
Iterations: 15
Function evaluations: 171
Gradient evaluations: 15
Iteration: 1, Func. Count: 9, Neg. LLF: 151.62774325203233
Iteration: 2, Func. Count: 18, Neg. LLF: 149.65927109572996
Iteration: 3, Func. Count: 27, Neg. LLF: 150.29288605394902
Iteration: 4, Func. Count: 36, Neg. LLF: 156.2786367609523
Iteration: 5, Func. Count: 46, Neg. LLF: 148.76594177203563
Iteration: 6, Func. Count: 54, Neg. LLF: 148.6951372134984
Iteration: 7, Func. Count: 62, Neg. LLF: 148.67089289727681
Iteration: 8, Func. Count: 70, Neg. LLF: 148.64573483465188
Iteration: 9, Func. Count: 78, Neg. LLF: 148.6309872265295
Iteration: 10, Func. Count: 86, Neg. LLF: 148.61028635414598
Iteration: 11, Func. Count: 94, Neg. LLF: 148.6098848685282
Iteration: 12, Func. Count: 102, Neg. LLF: 148.60984290175398
Iteration: 13, Func. Count: 109, Neg. LLF: 148.609842909184
Optimization terminated successfully (Exit mode 0)
Current function value: 148.60984290175398
Iterations: 13
Function evaluations: 109
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 17004932.571915507
Iteration: 2, Func. Count: 21, Neg. LLF: 167.20777767875893
Iteration: 3, Func. Count: 31, Neg. LLF: 150.29285732389565
Iteration: 4, Func. Count: 41, Neg. LLF: 147.7911740624026
Iteration: 5, Func. Count: 50, Neg. LLF: 147.99748742860376
Iteration: 6, Func. Count: 60, Neg. LLF: 147.70212902087627
Iteration: 7, Func. Count: 69, Neg. LLF: 147.70614383991628
Iteration: 8, Func. Count: 79, Neg. LLF: 147.6946671144832
Iteration: 9, Func. Count: 88, Neg. LLF: 147.69255083767567
Iteration: 10, Func. Count: 97, Neg. LLF: 147.69237189351938
Iteration: 11, Func. Count: 106, Neg. LLF: 147.69214279254896
Iteration: 12, Func. Count: 115, Neg. LLF: 147.69202166842595
Iteration: 13, Func. Count: 124, Neg. LLF: 147.69196666365553
Iteration: 14, Func. Count: 133, Neg. LLF: 147.6919610485294
Iteration: 15, Func. Count: 141, Neg. LLF: 147.69196104865557
Optimization terminated successfully (Exit mode 0)
Current function value: 147.6919610485294
Iterations: 15
Function evaluations: 141
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 384.84664370595635
Iteration: 2, Func. Count: 22, Neg. LLF: 161.07209546039456
Iteration: 3, Func. Count: 33, Neg. LLF: 149.24398065609392
Iteration: 4, Func. Count: 44, Neg. LLF: 147.51073949248146
Iteration: 5, Func. Count: 54, Neg. LLF: 151.54834736989577
Iteration: 6, Func. Count: 65, Neg. LLF: 147.42628191881468
Iteration: 7, Func. Count: 76, Neg. LLF: 147.23623958662733
Iteration: 8, Func. Count: 86, Neg. LLF: 147.19450967259834
Iteration: 9, Func. Count: 96, Neg. LLF: 147.16660758193137
Iteration: 10, Func. Count: 106, Neg. LLF: 147.16286233742164
Iteration: 11, Func. Count: 116, Neg. LLF: 147.16230278671156
Iteration: 12, Func. Count: 126, Neg. LLF: 147.16067620336926
Iteration: 13, Func. Count: 136, Neg. LLF: 147.1604783747001
Iteration: 14, Func. Count: 146, Neg. LLF: 147.16045865541096
Iteration: 15, Func. Count: 156, Neg. LLF: 147.16045814039583
Optimization terminated successfully (Exit mode 0)
Current function value: 147.16045814039583
Iterations: 15
Function evaluations: 156
Gradient evaluations: 15
Iteration: 1, Func. Count: 12, Neg. LLF: 390.81561881835796
Iteration: 2, Func. Count: 24, Neg. LLF: 160.46236775509198
Iteration: 3, Func. Count: 36, Neg. LLF: 148.58162869113758
Iteration: 4, Func. Count: 48, Neg. LLF: 147.54498834901284
Iteration: 5, Func. Count: 59, Neg. LLF: 149.0255063315056
Iteration: 6, Func. Count: 71, Neg. LLF: 147.37904874894716
Iteration: 7, Func. Count: 82, Neg. LLF: 147.201403117084
Iteration: 8, Func. Count: 93, Neg. LLF: 147.1754305947841
Iteration: 9, Func. Count: 104, Neg. LLF: 147.1635307348419
Iteration: 10, Func. Count: 115, Neg. LLF: 147.1608519970082
Iteration: 11, Func. Count: 126, Neg. LLF: 147.16070400338143
Iteration: 12, Func. Count: 137, Neg. LLF: 147.16046151955106
Iteration: 13, Func. Count: 148, Neg. LLF: 147.16045881859316
Iteration: 14, Func. Count: 159, Neg. LLF: 147.1604581528278
Optimization terminated successfully (Exit mode 0)
Current function value: 147.1604581528278
Iterations: 14
Function evaluations: 159
Gradient evaluations: 14
Iteration: 1, Func. Count: 13, Neg. LLF: 396.5051026361205
Iteration: 2, Func. Count: 26, Neg. LLF: 161.56105488048195
Iteration: 3, Func. Count: 39, Neg. LLF: 149.3342606749498
Iteration: 4, Func. Count: 52, Neg. LLF: 147.38758480760134
Iteration: 5, Func. Count: 64, Neg. LLF: 147.76690175948366
Iteration: 6, Func. Count: 77, Neg. LLF: 150.41484662477598
Iteration: 7, Func. Count: 91, Neg. LLF: 147.23049794597136
Iteration: 8, Func. Count: 104, Neg. LLF: 147.17792761541614
Iteration: 9, Func. Count: 116, Neg. LLF: 147.15557386155763
Iteration: 10, Func. Count: 128, Neg. LLF: 147.15359942035087
Iteration: 11, Func. Count: 140, Neg. LLF: 147.15310630552761
Iteration: 12, Func. Count: 152, Neg. LLF: 147.15301618964813
Iteration: 13, Func. Count: 164, Neg. LLF: 147.15300012092547
Iteration: 14, Func. Count: 176, Neg. LLF: 147.15299666007496
Iteration: 15, Func. Count: 187, Neg. LLF: 147.15299666014135
Optimization terminated successfully (Exit mode 0)
Current function value: 147.15299666007496
Iterations: 15
Function evaluations: 187
Gradient evaluations: 15
Iteration: 1, Func. Count: 6, Neg. LLF: 152.13826877502277
Iteration: 2, Func. Count: 11, Neg. LLF: 151.92404389488223
Iteration: 3, Func. Count: 16, Neg. LLF: 151.1627932377468
Iteration: 4, Func. Count: 21, Neg. LLF: 151.11844928052133
Iteration: 5, Func. Count: 26, Neg. LLF: 151.08504907494466
Iteration: 6, Func. Count: 31, Neg. LLF: 151.07527403185276
Iteration: 7, Func. Count: 36, Neg. LLF: 151.04025303139764
Iteration: 8, Func. Count: 41, Neg. LLF: 151.02430567800366
Iteration: 9, Func. Count: 46, Neg. LLF: 151.02016205970938
Iteration: 10, Func. Count: 51, Neg. LLF: 151.01996998504453
Iteration: 11, Func. Count: 55, Neg. LLF: 151.01997002599236
Optimization terminated successfully (Exit mode 0)
Current function value: 151.01996998504453
Iterations: 11
Function evaluations: 55
Gradient evaluations: 11
Iteration: 1, Func. Count: 7, Neg. LLF: 29191.662372366238
Iteration: 2, Func. Count: 15, Neg. LLF: 153.76311855080348
Iteration: 3, Func. Count: 22, Neg. LLF: 149.84438840479515
Iteration: 4, Func. Count: 29, Neg. LLF: 149.01462230430235
Iteration: 5, Func. Count: 35, Neg. LLF: 168.62836586207095
Iteration: 6, Func. Count: 45, Neg. LLF: 148.67324986523175
Iteration: 7, Func. Count: 51, Neg. LLF: 148.18374750122672
Iteration: 8, Func. Count: 57, Neg. LLF: 148.11689400047345
Iteration: 9, Func. Count: 63, Neg. LLF: 148.10576604428354
Iteration: 10, Func. Count: 69, Neg. LLF: 148.10532604572603
Iteration: 11, Func. Count: 75, Neg. LLF: 148.1053186105065
Iteration: 12, Func. Count: 80, Neg. LLF: 148.10531860997364
Optimization terminated successfully (Exit mode 0)
Current function value: 148.1053186105065
Iterations: 12
Function evaluations: 80
Gradient evaluations: 12
Iteration: 1, Func. Count: 8, Neg. LLF: 463.74822868954817
Iteration: 2, Func. Count: 16, Neg. LLF: 151.310763659072
Iteration: 3, Func. Count: 24, Neg. LLF: 149.4251320353259
Iteration: 4, Func. Count: 32, Neg. LLF: 148.27676279132515
Iteration: 5, Func. Count: 39, Neg. LLF: 161.48525809413616
Iteration: 6, Func. Count: 47, Neg. LLF: 148.123479177849
Iteration: 7, Func. Count: 54, Neg. LLF: 148.09481425616735
Iteration: 8, Func. Count: 61, Neg. LLF: 148.094387773813
Iteration: 9, Func. Count: 68, Neg. LLF: 148.0943561900556
Iteration: 10, Func. Count: 75, Neg. LLF: 148.09435557534073
Optimization terminated successfully (Exit mode 0)
Current function value: 148.09435557534073
Iterations: 10
Function evaluations: 75
Gradient evaluations: 10
Iteration: 1, Func. Count: 9, Neg. LLF: 470.51226290770313
Iteration: 2, Func. Count: 18, Neg. LLF: 153.04735744203504
Iteration: 3, Func. Count: 27, Neg. LLF: 150.2206225081157
Iteration: 4, Func. Count: 36, Neg. LLF: 149.02247784681487
Iteration: 5, Func. Count: 44, Neg. LLF: 148.70191126851702
Iteration: 6, Func. Count: 52, Neg. LLF: 148.40273460617948
Iteration: 7, Func. Count: 60, Neg. LLF: 148.11600571937205
Iteration: 8, Func. Count: 68, Neg. LLF: 148.12486758929776
Iteration: 9, Func. Count: 77, Neg. LLF: 148.0949510649584
Iteration: 10, Func. Count: 85, Neg. LLF: 148.09465506760927
Iteration: 11, Func. Count: 93, Neg. LLF: 148.09435586205
Iteration: 12, Func. Count: 100, Neg. LLF: 148.0943558684503
Optimization terminated successfully (Exit mode 0)
Current function value: 148.09435586205
Iterations: 12
Function evaluations: 100
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 480.6581939869722
Iteration: 2, Func. Count: 20, Neg. LLF: 152.7477222785012
Iteration: 3, Func. Count: 30, Neg. LLF: 149.360998116791
Iteration: 4, Func. Count: 40, Neg. LLF: 148.77505500616175
Iteration: 5, Func. Count: 49, Neg. LLF: 148.7480897197664
Iteration: 6, Func. Count: 59, Neg. LLF: 148.4233902342013
Iteration: 7, Func. Count: 68, Neg. LLF: 148.24441423160982
Iteration: 8, Func. Count: 77, Neg. LLF: 148.10768076477373
Iteration: 9, Func. Count: 86, Neg. LLF: 148.168988384358
Iteration: 10, Func. Count: 96, Neg. LLF: 148.0944122464102
Iteration: 11, Func. Count: 105, Neg. LLF: 148.09435590890564
Iteration: 12, Func. Count: 113, Neg. LLF: 148.09435591933573
Optimization terminated successfully (Exit mode 0)
Current function value: 148.09435590890564
Iterations: 12
Function evaluations: 113
Gradient evaluations: 12
Iteration: 1, Func. Count: 7, Neg. LLF: 151.94774260020134
Iteration: 2, Func. Count: 14, Neg. LLF: 151.73883735599637
Iteration: 3, Func. Count: 22, Neg. LLF: 155.70770756443994
Iteration: 4, Func. Count: 29, Neg. LLF: 148.91891678573708
Iteration: 5, Func. Count: 35, Neg. LLF: 148.8855468657537
Iteration: 6, Func. Count: 41, Neg. LLF: 148.86468991522693
Iteration: 7, Func. Count: 47, Neg. LLF: 148.85713251340897
Iteration: 8, Func. Count: 53, Neg. LLF: 148.8525486096827
Iteration: 9, Func. Count: 59, Neg. LLF: 148.84311184310474
Iteration: 10, Func. Count: 65, Neg. LLF: 148.8418968326957
Iteration: 11, Func. Count: 71, Neg. LLF: 148.84163209673127
Iteration: 12, Func. Count: 77, Neg. LLF: 148.84162814049964
Iteration: 13, Func. Count: 82, Neg. LLF: 148.84162814051183
Optimization terminated successfully (Exit mode 0)
Current function value: 148.84162814049964
Iterations: 13
Function evaluations: 82
Gradient evaluations: 13
Iteration: 1, Func. Count: 8, Neg. LLF: 19779181.528388865
Iteration: 2, Func. Count: 17, Neg. LLF: 148.20709690614052
Iteration: 3, Func. Count: 25, Neg. LLF: 149.50784000506803
Iteration: 4, Func. Count: 33, Neg. LLF: 147.92906727323128
Iteration: 5, Func. Count: 41, Neg. LLF: 147.79006487111224
Iteration: 6, Func. Count: 48, Neg. LLF: 147.78847654795484
Iteration: 7, Func. Count: 55, Neg. LLF: 147.78841800651276
Iteration: 8, Func. Count: 62, Neg. LLF: 147.78841617644326
Iteration: 9, Func. Count: 68, Neg. LLF: 147.7884161767541
Optimization terminated successfully (Exit mode 0)
Current function value: 147.78841617644326
Iterations: 9
Function evaluations: 68
Gradient evaluations: 9
Iteration: 1, Func. Count: 9, Neg. LLF: 16775565.901585625
Iteration: 2, Func. Count: 19, Neg. LLF: 160.58360767306291
Iteration: 3, Func. Count: 28, Neg. LLF: 148.98163267303443
Iteration: 4, Func. Count: 37, Neg. LLF: 147.20566139173425
Iteration: 5, Func. Count: 45, Neg. LLF: 148.69065054609982
Iteration: 6, Func. Count: 54, Neg. LLF: 147.1623679411934
Iteration: 7, Func. Count: 62, Neg. LLF: 147.16082942323376
Iteration: 8, Func. Count: 70, Neg. LLF: 147.16066276867235
Iteration: 9, Func. Count: 78, Neg. LLF: 147.16063249011484
Iteration: 10, Func. Count: 85, Neg. LLF: 147.16063249013538
Optimization terminated successfully (Exit mode 0)
Current function value: 147.16063249011484
Iterations: 10
Function evaluations: 85
Gradient evaluations: 10
Iteration: 1, Func. Count: 10, Neg. LLF: 389.7297828049776
Iteration: 2, Func. Count: 20, Neg. LLF: 158.37062511269238
Iteration: 3, Func. Count: 30, Neg. LLF: 147.6354911055877
Iteration: 4, Func. Count: 39, Neg. LLF: 147.4207111091788
Iteration: 5, Func. Count: 48, Neg. LLF: 149.5762592335783
Iteration: 6, Func. Count: 59, Neg. LLF: 147.21695801820712
Iteration: 7, Func. Count: 68, Neg. LLF: 147.35626794285824
Iteration: 8, Func. Count: 78, Neg. LLF: 147.1669375744066
Iteration: 9, Func. Count: 87, Neg. LLF: 147.16821253760952
Iteration: 10, Func. Count: 97, Neg. LLF: 147.16137066586978
Iteration: 11, Func. Count: 106, Neg. LLF: 147.16068071404342
Iteration: 12, Func. Count: 115, Neg. LLF: 147.16063487747817
Iteration: 13, Func. Count: 124, Neg. LLF: 147.1606321681459
Iteration: 14, Func. Count: 132, Neg. LLF: 147.16063217126532
Optimization terminated successfully (Exit mode 0)
Current function value: 147.1606321681459
Iterations: 14
Function evaluations: 132
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 399.4628121690144
Iteration: 2, Func. Count: 22, Neg. LLF: 160.86359744628106
Iteration: 3, Func. Count: 33, Neg. LLF: 147.92420119195143
Iteration: 4, Func. Count: 43, Neg. LLF: 147.42439015584168
Iteration: 5, Func. Count: 53, Neg. LLF: 150.71080753963835
Iteration: 6, Func. Count: 66, Neg. LLF: 147.72102058286745
Iteration: 7, Func. Count: 77, Neg. LLF: 147.25326487346717
Iteration: 8, Func. Count: 87, Neg. LLF: 147.17920146809195
Iteration: 9, Func. Count: 97, Neg. LLF: 147.17759148918228
Iteration: 10, Func. Count: 107, Neg. LLF: 147.17828553322377
Iteration: 11, Func. Count: 118, Neg. LLF: 147.1715893972976
Iteration: 12, Func. Count: 128, Neg. LLF: 147.17095599182628
Iteration: 13, Func. Count: 138, Neg. LLF: 147.17046423926604
Iteration: 14, Func. Count: 148, Neg. LLF: 147.16966251244008
Iteration: 15, Func. Count: 158, Neg. LLF: 147.16855050402583
Iteration: 16, Func. Count: 168, Neg. LLF: 147.16767950458794
Iteration: 17, Func. Count: 178, Neg. LLF: 147.1673658964005
Iteration: 18, Func. Count: 188, Neg. LLF: 147.16716403339908
Iteration: 19, Func. Count: 198, Neg. LLF: 147.1653113636167
Iteration: 20, Func. Count: 208, Neg. LLF: 147.16082179308106
Iteration: 21, Func. Count: 218, Neg. LLF: 147.16065233957482
Iteration: 22, Func. Count: 228, Neg. LLF: 147.16063418265597
Iteration: 23, Func. Count: 238, Neg. LLF: 147.1606322853031
Iteration: 24, Func. Count: 247, Neg. LLF: 147.16063228649566
Optimization terminated successfully (Exit mode 0)
Current function value: 147.1606322853031
Iterations: 24
Function evaluations: 247
Gradient evaluations: 24
Iteration: 1, Func. Count: 8, Neg. LLF: 151.6238709410376
Iteration: 2, Func. Count: 16, Neg. LLF: 149.60785924888836
Iteration: 3, Func. Count: 24, Neg. LLF: 150.19435982591153
Iteration: 4, Func. Count: 32, Neg. LLF: 149.1547640443936
Iteration: 5, Func. Count: 40, Neg. LLF: 148.86646445983206
Iteration: 6, Func. Count: 47, Neg. LLF: 148.8545819344816
Iteration: 7, Func. Count: 54, Neg. LLF: 148.8508930494029
Iteration: 8, Func. Count: 61, Neg. LLF: 148.846386009415
Iteration: 9, Func. Count: 68, Neg. LLF: 148.84239982159195
Iteration: 10, Func. Count: 75, Neg. LLF: 148.84168166892098
Iteration: 11, Func. Count: 82, Neg. LLF: 148.84162866429642
Iteration: 12, Func. Count: 89, Neg. LLF: 148.84162796228455
Optimization terminated successfully (Exit mode 0)
Current function value: 148.84162796228455
Iterations: 12
Function evaluations: 89
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 18271083.370282866
Iteration: 2, Func. Count: 19, Neg. LLF: 148.63009610214743
Iteration: 3, Func. Count: 28, Neg. LLF: 150.38537028620755
Iteration: 4, Func. Count: 37, Neg. LLF: 148.07066989738152
Iteration: 5, Func. Count: 45, Neg. LLF: 147.81119429518998
Iteration: 6, Func. Count: 53, Neg. LLF: 147.7948548038022
Iteration: 7, Func. Count: 61, Neg. LLF: 147.78967186566416
Iteration: 8, Func. Count: 69, Neg. LLF: 147.7884380198837
Iteration: 9, Func. Count: 77, Neg. LLF: 147.78841708057269
Iteration: 10, Func. Count: 85, Neg. LLF: 147.78841555848953
Iteration: 11, Func. Count: 92, Neg. LLF: 147.7884155585002
Optimization terminated successfully (Exit mode 0)
Current function value: 147.78841555848953
Iterations: 11
Function evaluations: 92
Gradient evaluations: 11
Iteration: 1, Func. Count: 10, Neg. LLF: 17035058.63760193
Iteration: 2, Func. Count: 21, Neg. LLF: 165.0855396324652
Iteration: 3, Func. Count: 31, Neg. LLF: 150.52603240260075
Iteration: 4, Func. Count: 41, Neg. LLF: 147.26900152711934
Iteration: 5, Func. Count: 50, Neg. LLF: 148.6194030321279
Iteration: 6, Func. Count: 60, Neg. LLF: 147.17058532324106
Iteration: 7, Func. Count: 69, Neg. LLF: 147.1613255293021
Iteration: 8, Func. Count: 78, Neg. LLF: 147.16070933658318
Iteration: 9, Func. Count: 87, Neg. LLF: 147.1606339345952
Iteration: 10, Func. Count: 96, Neg. LLF: 147.1606321668655
Iteration: 11, Func. Count: 104, Neg. LLF: 147.16063216685365
Optimization terminated successfully (Exit mode 0)
Current function value: 147.1606321668655
Iterations: 11
Function evaluations: 104
Gradient evaluations: 11
Iteration: 1, Func. Count: 11, Neg. LLF: 390.26174416886465
Iteration: 2, Func. Count: 22, Neg. LLF: 170.95438188224858
Iteration: 3, Func. Count: 33, Neg. LLF: 147.69753450759904
Iteration: 4, Func. Count: 43, Neg. LLF: 147.92029046920325
Iteration: 5, Func. Count: 54, Neg. LLF: 148.51804307913702
Iteration: 6, Func. Count: 65, Neg. LLF: 147.32520074710254
Iteration: 7, Func. Count: 75, Neg. LLF: 147.2188972050802
Iteration: 8, Func. Count: 85, Neg. LLF: 147.25071234410362
Iteration: 9, Func. Count: 96, Neg. LLF: 147.16274715934816
Iteration: 10, Func. Count: 106, Neg. LLF: 147.16095922656027
Iteration: 11, Func. Count: 116, Neg. LLF: 147.16069171590965
Iteration: 12, Func. Count: 126, Neg. LLF: 147.1606354244291
Iteration: 13, Func. Count: 136, Neg. LLF: 147.16063309485665
Iteration: 14, Func. Count: 146, Neg. LLF: 147.16063216157855
Optimization terminated successfully (Exit mode 0)
Current function value: 147.16063216157855
Iterations: 14
Function evaluations: 146
Gradient evaluations: 14
Iteration: 1, Func. Count: 12, Neg. LLF: 397.8508842662494
Iteration: 2, Func. Count: 24, Neg. LLF: 168.62288293889847
Iteration: 3, Func. Count: 36, Neg. LLF: 148.75893041374673
Iteration: 4, Func. Count: 48, Neg. LLF: 147.337781763583
Iteration: 5, Func. Count: 59, Neg. LLF: 152.1097465430741
Iteration: 6, Func. Count: 72, Neg. LLF: 147.33648666515697
Iteration: 7, Func. Count: 84, Neg. LLF: 148.18838177545123
Iteration: 8, Func. Count: 97, Neg. LLF: 147.22187334656337
Iteration: 9, Func. Count: 108, Neg. LLF: 147.2012105279269
Iteration: 10, Func. Count: 119, Neg. LLF: 147.18646002915824
Iteration: 11, Func. Count: 130, Neg. LLF: 147.17177834654322
Iteration: 12, Func. Count: 141, Neg. LLF: 147.16947114122067
Iteration: 13, Func. Count: 152, Neg. LLF: 147.16904002174329
Iteration: 14, Func. Count: 163, Neg. LLF: 147.16813787936837
Iteration: 15, Func. Count: 174, Neg. LLF: 147.16762897214377
Iteration: 16, Func. Count: 185, Neg. LLF: 147.1673336630657
Iteration: 17, Func. Count: 196, Neg. LLF: 147.1670240765652
Iteration: 18, Func. Count: 207, Neg. LLF: 147.1636956295182
Iteration: 19, Func. Count: 218, Neg. LLF: 147.16068409735917
Iteration: 20, Func. Count: 229, Neg. LLF: 147.1607305405121
Iteration: 21, Func. Count: 241, Neg. LLF: 147.16066983025368
Iteration: 22, Func. Count: 253, Neg. LLF: 147.16064572000374
Iteration: 23, Func. Count: 264, Neg. LLF: 151.6182607460027
Iteration: 24, Func. Count: 278, Neg. LLF: 147.16064942604115
Optimization terminated successfully (Exit mode 0)
Current function value: 147.1606321869308
Iterations: 25
Function evaluations: 279
Gradient evaluations: 24
Iteration: 1, Func. Count: 9, Neg. LLF: 151.24248225247766
Iteration: 2, Func. Count: 18, Neg. LLF: 150.72846080398608
Iteration: 3, Func. Count: 28, Neg. LLF: 152.03092502181104
Iteration: 4, Func. Count: 37, Neg. LLF: 149.32225902131742
Iteration: 5, Func. Count: 46, Neg. LLF: 148.71885056526213
Iteration: 6, Func. Count: 54, Neg. LLF: 148.6728653695829
Iteration: 7, Func. Count: 62, Neg. LLF: 148.64796313919945
Iteration: 8, Func. Count: 70, Neg. LLF: 148.63342819431543
Iteration: 9, Func. Count: 78, Neg. LLF: 148.61235567140713
Iteration: 10, Func. Count: 86, Neg. LLF: 148.61025831724973
Iteration: 11, Func. Count: 94, Neg. LLF: 148.60985070843324
Iteration: 12, Func. Count: 102, Neg. LLF: 148.6098426005663
Iteration: 13, Func. Count: 109, Neg. LLF: 148.60984260058504
Optimization terminated successfully (Exit mode 0)
Current function value: 148.6098426005663
Iterations: 13
Function evaluations: 109
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 18646187.19164205
Iteration: 2, Func. Count: 21, Neg. LLF: 148.53096755645788
Iteration: 3, Func. Count: 31, Neg. LLF: 148.29880271915863
Iteration: 4, Func. Count: 41, Neg. LLF: 148.64409403891656
Iteration: 5, Func. Count: 51, Neg. LLF: 147.81793417976021
Iteration: 6, Func. Count: 60, Neg. LLF: 147.7839277942144
Iteration: 7, Func. Count: 69, Neg. LLF: 147.7552055295152
Iteration: 8, Func. Count: 78, Neg. LLF: 147.7496779615864
Iteration: 9, Func. Count: 87, Neg. LLF: 147.7488677363558
Iteration: 10, Func. Count: 96, Neg. LLF: 147.7487412288244
Iteration: 11, Func. Count: 105, Neg. LLF: 147.74873406980998
Iteration: 12, Func. Count: 113, Neg. LLF: 147.74873406963184
Optimization terminated successfully (Exit mode 0)
Current function value: 147.74873406980998
Iterations: 12
Function evaluations: 113
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 2156.5357329709755
Iteration: 2, Func. Count: 23, Neg. LLF: 155.88894096428527
Iteration: 3, Func. Count: 34, Neg. LLF: 150.8970748341763
Iteration: 4, Func. Count: 45, Neg. LLF: 147.46245570789014
Iteration: 5, Func. Count: 55, Neg. LLF: 148.64117929278885
Iteration: 6, Func. Count: 66, Neg. LLF: 147.18381075095476
Iteration: 7, Func. Count: 76, Neg. LLF: 147.1636158133334
Iteration: 8, Func. Count: 86, Neg. LLF: 147.16083240125977
Iteration: 9, Func. Count: 96, Neg. LLF: 147.16063647938557
Iteration: 10, Func. Count: 106, Neg. LLF: 147.16063237926616
Iteration: 11, Func. Count: 115, Neg. LLF: 147.16063237924482
Optimization terminated successfully (Exit mode 0)
Current function value: 147.16063237926616
Iterations: 11
Function evaluations: 115
Gradient evaluations: 11
Iteration: 1, Func. Count: 12, Neg. LLF: 397.05788829830396
Iteration: 2, Func. Count: 24, Neg. LLF: 160.26346506109581
Iteration: 3, Func. Count: 36, Neg. LLF: 150.9199641449623
Iteration: 4, Func. Count: 48, Neg. LLF: 147.74666406584464
Iteration: 5, Func. Count: 59, Neg. LLF: 147.52170349520824
Iteration: 6, Func. Count: 70, Neg. LLF: 147.43687020034588
Iteration: 7, Func. Count: 81, Neg. LLF: 147.29241420033438
Iteration: 8, Func. Count: 92, Neg. LLF: 147.49772300546584
Iteration: 9, Func. Count: 104, Neg. LLF: 147.16490198655927
Iteration: 10, Func. Count: 115, Neg. LLF: 147.16278609291828
Iteration: 11, Func. Count: 126, Neg. LLF: 147.16074316814178
Iteration: 12, Func. Count: 137, Neg. LLF: 147.16063646190418
Iteration: 13, Func. Count: 148, Neg. LLF: 147.16063228167863
Iteration: 14, Func. Count: 158, Neg. LLF: 147.1606322846561
Optimization terminated successfully (Exit mode 0)
Current function value: 147.16063228167863
Iterations: 14
Function evaluations: 158
Gradient evaluations: 14
Iteration: 1, Func. Count: 13, Neg. LLF: 405.4289946529581
Iteration: 2, Func. Count: 26, Neg. LLF: 159.63257369574137
Iteration: 3, Func. Count: 39, Neg. LLF: 159.17056620673128
Iteration: 4, Func. Count: 52, Neg. LLF: 147.25068660412072
Iteration: 5, Func. Count: 64, Neg. LLF: 147.44466536368373
Iteration: 6, Func. Count: 77, Neg. LLF: 147.83544338535606
Iteration: 7, Func. Count: 90, Neg. LLF: 147.16543272044115
Iteration: 8, Func. Count: 102, Neg. LLF: 147.174915161364
Iteration: 9, Func. Count: 115, Neg. LLF: 147.15562701879995
Iteration: 10, Func. Count: 127, Neg. LLF: 147.1535675111766
Iteration: 11, Func. Count: 139, Neg. LLF: 147.1530877305878
Iteration: 12, Func. Count: 151, Neg. LLF: 147.15301467810622
Iteration: 13, Func. Count: 163, Neg. LLF: 147.15299934479876
Iteration: 14, Func. Count: 175, Neg. LLF: 147.1529972970476
Iteration: 15, Func. Count: 186, Neg. LLF: 147.15299729701374
Optimization terminated successfully (Exit mode 0)
Current function value: 147.1529972970476
Iterations: 15
Function evaluations: 186
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 151.14815953901243
Iteration: 2, Func. Count: 20, Neg. LLF: 150.73505454972394
Iteration: 3, Func. Count: 31, Neg. LLF: 151.35752420019662
Iteration: 4, Func. Count: 41, Neg. LLF: 149.3260120171601
Iteration: 5, Func. Count: 51, Neg. LLF: 148.72493822527704
Iteration: 6, Func. Count: 60, Neg. LLF: 148.6749385563205
Iteration: 7, Func. Count: 69, Neg. LLF: 148.6469831127837
Iteration: 8, Func. Count: 78, Neg. LLF: 148.63457694549672
Iteration: 9, Func. Count: 87, Neg. LLF: 148.61138031924807
Iteration: 10, Func. Count: 96, Neg. LLF: 148.6100727863057
Iteration: 11, Func. Count: 105, Neg. LLF: 148.60984557412453
Iteration: 12, Func. Count: 114, Neg. LLF: 148.6098424225844
Iteration: 13, Func. Count: 122, Neg. LLF: 148.60984243000556
Optimization terminated successfully (Exit mode 0)
Current function value: 148.6098424225844
Iterations: 13
Function evaluations: 122
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 17401010.388490394
Iteration: 2, Func. Count: 23, Neg. LLF: 154.30852916802894
Iteration: 3, Func. Count: 34, Neg. LLF: 155.0259963440907
Iteration: 4, Func. Count: 45, Neg. LLF: 147.80879306902455
Iteration: 5, Func. Count: 55, Neg. LLF: 148.24060985242696
Iteration: 6, Func. Count: 66, Neg. LLF: 147.99113387623834
Iteration: 7, Func. Count: 77, Neg. LLF: 147.69870674554457
Iteration: 8, Func. Count: 87, Neg. LLF: 147.69299403496493
Iteration: 9, Func. Count: 97, Neg. LLF: 147.69263086389643
Iteration: 10, Func. Count: 107, Neg. LLF: 147.69240302711052
Iteration: 11, Func. Count: 117, Neg. LLF: 147.69212406374504
Iteration: 12, Func. Count: 127, Neg. LLF: 147.69198770374018
Iteration: 13, Func. Count: 137, Neg. LLF: 147.69196132195836
Iteration: 14, Func. Count: 147, Neg. LLF: 147.6919606835873
Optimization terminated successfully (Exit mode 0)
Current function value: 147.6919606835873
Iterations: 14
Function evaluations: 147
Gradient evaluations: 14
Iteration: 1, Func. Count: 12, Neg. LLF: 2760.6576550091595
Iteration: 2, Func. Count: 25, Neg. LLF: 174.35746477141308
Iteration: 3, Func. Count: 37, Neg. LLF: 150.94424539606095
Iteration: 4, Func. Count: 49, Neg. LLF: 147.49723547654227
Iteration: 5, Func. Count: 60, Neg. LLF: 147.39543611779305
Iteration: 6, Func. Count: 71, Neg. LLF: 147.22313684429815
Iteration: 7, Func. Count: 82, Neg. LLF: 147.3192108038344
Iteration: 8, Func. Count: 94, Neg. LLF: 147.1762117322262
Iteration: 9, Func. Count: 105, Neg. LLF: 147.16488204494777
Iteration: 10, Func. Count: 116, Neg. LLF: 147.1610223658855
Iteration: 11, Func. Count: 127, Neg. LLF: 147.1604713450934
Iteration: 12, Func. Count: 138, Neg. LLF: 147.1604595834459
Iteration: 13, Func. Count: 149, Neg. LLF: 147.16045851710223
Iteration: 14, Func. Count: 159, Neg. LLF: 147.16045851738446
Optimization terminated successfully (Exit mode 0)
Current function value: 147.16045851710223
Iterations: 14
Function evaluations: 159
Gradient evaluations: 14
Iteration: 1, Func. Count: 13, Neg. LLF: 400.1224183994962
Iteration: 2, Func. Count: 26, Neg. LLF: 160.57591201982504
Iteration: 3, Func. Count: 39, Neg. LLF: 152.44220056249364
Iteration: 4, Func. Count: 52, Neg. LLF: 147.85526540862506
Iteration: 5, Func. Count: 64, Neg. LLF: 147.65877184336546
Iteration: 6, Func. Count: 76, Neg. LLF: 149.77573772681058
Iteration: 7, Func. Count: 89, Neg. LLF: 147.38962230595425
Iteration: 8, Func. Count: 101, Neg. LLF: 147.23520933342834
Iteration: 9, Func. Count: 113, Neg. LLF: 147.19087021114242
Iteration: 10, Func. Count: 125, Neg. LLF: 147.1715785674934
Iteration: 11, Func. Count: 137, Neg. LLF: 147.16431268581465
Iteration: 12, Func. Count: 149, Neg. LLF: 147.16125393191422
Iteration: 13, Func. Count: 161, Neg. LLF: 147.16054830008062
Iteration: 14, Func. Count: 173, Neg. LLF: 147.16046076165924
Iteration: 15, Func. Count: 185, Neg. LLF: 147.16045815953342
Iteration: 16, Func. Count: 196, Neg. LLF: 147.16045816330663
Optimization terminated successfully (Exit mode 0)
Current function value: 147.16045815953342
Iterations: 16
Function evaluations: 196
Gradient evaluations: 16
Iteration: 1, Func. Count: 14, Neg. LLF: 408.21656135090905
Iteration: 2, Func. Count: 28, Neg. LLF: 159.9161425527012
Iteration: 3, Func. Count: 42, Neg. LLF: 168.52661938768117
Iteration: 4, Func. Count: 56, Neg. LLF: 147.2803962111604
Iteration: 5, Func. Count: 69, Neg. LLF: 147.92752828544465
Iteration: 6, Func. Count: 83, Neg. LLF: 147.9965328431809
Iteration: 7, Func. Count: 98, Neg. LLF: 147.3679688535591
Iteration: 8, Func. Count: 112, Neg. LLF: 147.17522233364647
Iteration: 9, Func. Count: 125, Neg. LLF: 147.1554438614985
Iteration: 10, Func. Count: 138, Neg. LLF: 147.1536238181846
Iteration: 11, Func. Count: 151, Neg. LLF: 147.15304533268844
Iteration: 12, Func. Count: 164, Neg. LLF: 147.15299908031477
Iteration: 13, Func. Count: 177, Neg. LLF: 147.15299656937856
Iteration: 14, Func. Count: 189, Neg. LLF: 147.1529965694037
Optimization terminated successfully (Exit mode 0)
Current function value: 147.15299656937856
Iterations: 14
Function evaluations: 189
Gradient evaluations: 14
Iteration: 1, Func. Count: 7, Neg. LLF: 152.1150305841886
Iteration: 2, Func. Count: 13, Neg. LLF: 151.80394081077867
Iteration: 3, Func. Count: 19, Neg. LLF: 151.56015858655547
Iteration: 4, Func. Count: 25, Neg. LLF: 151.21840948711244
Iteration: 5, Func. Count: 31, Neg. LLF: 151.0990494405213
Iteration: 6, Func. Count: 37, Neg. LLF: 151.0676940888452
Iteration: 7, Func. Count: 43, Neg. LLF: 151.05949188372847
Iteration: 8, Func. Count: 49, Neg. LLF: 151.04458098458232
Iteration: 9, Func. Count: 55, Neg. LLF: 151.0255204014104
Iteration: 10, Func. Count: 61, Neg. LLF: 151.02089355156016
Iteration: 11, Func. Count: 67, Neg. LLF: 151.0200273642244
Iteration: 12, Func. Count: 73, Neg. LLF: 151.01996986167774
Iteration: 13, Func. Count: 78, Neg. LLF: 151.01996987654184
Optimization terminated successfully (Exit mode 0)
Current function value: 151.01996986167774
Iterations: 13
Function evaluations: 78
Gradient evaluations: 13
Iteration: 1, Func. Count: 8, Neg. LLF: 16421540.762133902
Iteration: 2, Func. Count: 17, Neg. LLF: 152.4284877108206
Iteration: 3, Func. Count: 25, Neg. LLF: 150.09243007129967
Iteration: 4, Func. Count: 33, Neg. LLF: 149.83530402905907
Iteration: 5, Func. Count: 41, Neg. LLF: 148.50544969983991
Iteration: 6, Func. Count: 48, Neg. LLF: 159.4217671776986
Iteration: 7, Func. Count: 56, Neg. LLF: 148.21862345306812
Iteration: 8, Func. Count: 63, Neg. LLF: 148.12939473825176
Iteration: 9, Func. Count: 70, Neg. LLF: 148.1101759252529
Iteration: 10, Func. Count: 77, Neg. LLF: 148.1192644258819
Iteration: 11, Func. Count: 85, Neg. LLF: 148.10532469633873
Iteration: 12, Func. Count: 92, Neg. LLF: 148.1053181268603
Iteration: 13, Func. Count: 98, Neg. LLF: 148.10531812677752
Optimization terminated successfully (Exit mode 0)
Current function value: 148.1053181268603
Iterations: 13
Function evaluations: 98
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 481.05247467797705
Iteration: 2, Func. Count: 18, Neg. LLF: 151.9450827604882
Iteration: 3, Func. Count: 27, Neg. LLF: 150.33819498820236
Iteration: 4, Func. Count: 36, Neg. LLF: 149.24357995983428
Iteration: 5, Func. Count: 45, Neg. LLF: 148.44651654013245
Iteration: 6, Func. Count: 53, Neg. LLF: 150.5387129393197
Iteration: 7, Func. Count: 62, Neg. LLF: 166.94343573614725
Iteration: 8, Func. Count: 71, Neg. LLF: 148.2194202694565
Iteration: 9, Func. Count: 79, Neg. LLF: 148.1888146082764
Iteration: 10, Func. Count: 88, Neg. LLF: 148.54720971184238
Iteration: 11, Func. Count: 97, Neg. LLF: 148.10364983810962
Iteration: 12, Func. Count: 105, Neg. LLF: 148.09847094753403
Iteration: 13, Func. Count: 113, Neg. LLF: 148.0946885970482
Iteration: 14, Func. Count: 121, Neg. LLF: 148.09441128565206
Iteration: 15, Func. Count: 129, Neg. LLF: 148.0943567019411
Iteration: 16, Func. Count: 137, Neg. LLF: 148.0943556379091
Iteration: 17, Func. Count: 144, Neg. LLF: 148.09435563783614
Optimization terminated successfully (Exit mode 0)
Current function value: 148.0943556379091
Iterations: 17
Function evaluations: 144
Gradient evaluations: 17
Iteration: 1, Func. Count: 10, Neg. LLF: 492.89313910460305
Iteration: 2, Func. Count: 20, Neg. LLF: 154.43948429872617
Iteration: 3, Func. Count: 30, Neg. LLF: 150.63165619637388
Iteration: 4, Func. Count: 40, Neg. LLF: 148.80461048735447
Iteration: 5, Func. Count: 49, Neg. LLF: 148.07761512707236
Iteration: 6, Func. Count: 58, Neg. LLF: 148.1334342132645
Iteration: 7, Func. Count: 68, Neg. LLF: 148.14848342735795
Iteration: 8, Func. Count: 78, Neg. LLF: 150.02051164233137
Iteration: 9, Func. Count: 88, Neg. LLF: 147.74189019498016
Iteration: 10, Func. Count: 97, Neg. LLF: 147.73174606421486
Iteration: 11, Func. Count: 106, Neg. LLF: 147.73006108463048
Iteration: 12, Func. Count: 115, Neg. LLF: 147.7300352810293
Iteration: 13, Func. Count: 123, Neg. LLF: 147.73003528097317
Optimization terminated successfully (Exit mode 0)
Current function value: 147.7300352810293
Iterations: 13
Function evaluations: 123
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 499.25160723338905
Iteration: 2, Func. Count: 22, Neg. LLF: 170.15407812326
Iteration: 3, Func. Count: 33, Neg. LLF: 151.95566306057495
Iteration: 4, Func. Count: 44, Neg. LLF: 149.5287572727289
Iteration: 5, Func. Count: 55, Neg. LLF: 148.5058720793527
Iteration: 6, Func. Count: 65, Neg. LLF: 148.74956284971012
Iteration: 7, Func. Count: 76, Neg. LLF: 148.2496959348441
Iteration: 8, Func. Count: 87, Neg. LLF: 148.22053753392748
Iteration: 9, Func. Count: 98, Neg. LLF: 147.82996121031354
Iteration: 10, Func. Count: 109, Neg. LLF: 147.73098895401046
Iteration: 11, Func. Count: 119, Neg. LLF: 147.73010654586568
Iteration: 12, Func. Count: 129, Neg. LLF: 147.7300588078203
Iteration: 13, Func. Count: 139, Neg. LLF: 147.73004049236488
Iteration: 14, Func. Count: 149, Neg. LLF: 147.7300364325873
Iteration: 15, Func. Count: 159, Neg. LLF: 147.73003510929973
Iteration: 16, Func. Count: 168, Neg. LLF: 147.73003520737996
Optimization terminated successfully (Exit mode 0)
Current function value: 147.73003510929973
Iterations: 16
Function evaluations: 168
Gradient evaluations: 16
Iteration: 1, Func. Count: 8, Neg. LLF: 151.68232886634695
Iteration: 2, Func. Count: 16, Neg. LLF: 151.65708633493534
Iteration: 3, Func. Count: 25, Neg. LLF: 153.2651836268138
Iteration: 4, Func. Count: 33, Neg. LLF: 148.882604781104
Iteration: 5, Func. Count: 40, Neg. LLF: 148.87131646299
Iteration: 6, Func. Count: 47, Neg. LLF: 148.86082053239136
Iteration: 7, Func. Count: 54, Neg. LLF: 148.85421743748503
Iteration: 8, Func. Count: 61, Neg. LLF: 148.84387127860876
Iteration: 9, Func. Count: 68, Neg. LLF: 148.8419218647503
Iteration: 10, Func. Count: 75, Neg. LLF: 148.8416370192501
Iteration: 11, Func. Count: 82, Neg. LLF: 148.84162812641657
Iteration: 12, Func. Count: 88, Neg. LLF: 148.8416281264166
Optimization terminated successfully (Exit mode 0)
Current function value: 148.84162812641657
Iterations: 12
Function evaluations: 88
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 19813149.610942997
Iteration: 2, Func. Count: 19, Neg. LLF: 148.21020648187925
Iteration: 3, Func. Count: 28, Neg. LLF: 149.51138518293754
Iteration: 4, Func. Count: 37, Neg. LLF: 147.92572391091213
Iteration: 5, Func. Count: 46, Neg. LLF: 147.78981506325204
Iteration: 6, Func. Count: 54, Neg. LLF: 147.78847486400076
Iteration: 7, Func. Count: 62, Neg. LLF: 147.78841730169628
Iteration: 8, Func. Count: 70, Neg. LLF: 147.78841599711006
Iteration: 9, Func. Count: 77, Neg. LLF: 147.7884159973677
Optimization terminated successfully (Exit mode 0)
Current function value: 147.78841599711006
Iterations: 9
Function evaluations: 77
Gradient evaluations: 9
Iteration: 1, Func. Count: 10, Neg. LLF: 16926000.220808867
Iteration: 2, Func. Count: 21, Neg. LLF: 160.76694243868752
Iteration: 3, Func. Count: 31, Neg. LLF: 149.12529807677825
Iteration: 4, Func. Count: 41, Neg. LLF: 147.2236678529467
Iteration: 5, Func. Count: 50, Neg. LLF: 148.72446223791533
Iteration: 6, Func. Count: 60, Neg. LLF: 147.16233496857262
Iteration: 7, Func. Count: 69, Neg. LLF: 147.16084012681506
Iteration: 8, Func. Count: 78, Neg. LLF: 147.16067323154056
Iteration: 9, Func. Count: 87, Neg. LLF: 147.16063353430962
Iteration: 10, Func. Count: 96, Neg. LLF: 147.16063219014424
Iteration: 11, Func. Count: 104, Neg. LLF: 147.16063219016885
Optimization terminated successfully (Exit mode 0)
Current function value: 147.16063219014424
Iterations: 11
Function evaluations: 104
Gradient evaluations: 11
Iteration: 1, Func. Count: 11, Neg. LLF: 404.7524491985015
Iteration: 2, Func. Count: 22, Neg. LLF: 157.0724360956814
Iteration: 3, Func. Count: 33, Neg. LLF: 148.75015329776647
Iteration: 4, Func. Count: 44, Neg. LLF: 147.6217203553232
Iteration: 5, Func. Count: 54, Neg. LLF: 147.7236251085185
Iteration: 6, Func. Count: 65, Neg. LLF: 147.44722505715265
Iteration: 7, Func. Count: 75, Neg. LLF: 147.47281948592638
Iteration: 8, Func. Count: 86, Neg. LLF: 147.37946107374373
Iteration: 9, Func. Count: 97, Neg. LLF: 147.35656771584735
Iteration: 10, Func. Count: 107, Neg. LLF: 147.35282617702083
Iteration: 11, Func. Count: 117, Neg. LLF: 147.35126533510086
Iteration: 12, Func. Count: 127, Neg. LLF: 147.3510044638647
Iteration: 13, Func. Count: 137, Neg. LLF: 147.3509488262118
Iteration: 14, Func. Count: 147, Neg. LLF: 147.35091555703247
Iteration: 15, Func. Count: 157, Neg. LLF: 147.35091464116837
Optimization terminated successfully (Exit mode 0)
Current function value: 147.35091464116837
Iterations: 15
Function evaluations: 157
Gradient evaluations: 15
Iteration: 1, Func. Count: 12, Neg. LLF: 413.1567046374274
Iteration: 2, Func. Count: 24, Neg. LLF: 164.24990285607473
Iteration: 3, Func. Count: 36, Neg. LLF: 148.8467493115215
Iteration: 4, Func. Count: 48, Neg. LLF: 147.69260664617815
Iteration: 5, Func. Count: 59, Neg. LLF: 147.33539695762258
Iteration: 6, Func. Count: 70, Neg. LLF: 150.945528091455
Iteration: 7, Func. Count: 84, Neg. LLF: 147.50215063859497
Iteration: 8, Func. Count: 96, Neg. LLF: 147.2325523242462
Iteration: 9, Func. Count: 107, Neg. LLF: 147.1927653235685
Iteration: 10, Func. Count: 118, Neg. LLF: 147.18788372013844
Iteration: 11, Func. Count: 129, Neg. LLF: 147.18420654675296
Iteration: 12, Func. Count: 140, Neg. LLF: 147.17894061097948
Iteration: 13, Func. Count: 151, Neg. LLF: 147.1763928082304
Iteration: 14, Func. Count: 162, Neg. LLF: 147.1723263835301
Iteration: 15, Func. Count: 173, Neg. LLF: 147.168934797976
Iteration: 16, Func. Count: 184, Neg. LLF: 147.1677860992958
Iteration: 17, Func. Count: 195, Neg. LLF: 147.16750880585232
Iteration: 18, Func. Count: 206, Neg. LLF: 147.16733520596546
Iteration: 19, Func. Count: 217, Neg. LLF: 147.16664808735965
Iteration: 20, Func. Count: 228, Neg. LLF: 147.161110573067
Iteration: 21, Func. Count: 239, Neg. LLF: 147.16081125604452
Iteration: 22, Func. Count: 250, Neg. LLF: 147.1606383223942
Iteration: 23, Func. Count: 261, Neg. LLF: 147.16064036279508
Iteration: 24, Func. Count: 273, Neg. LLF: 147.16063286709831
Optimization terminated successfully (Exit mode 0)
Current function value: 147.16063286709831
Iterations: 24
Function evaluations: 273
Gradient evaluations: 24
Iteration: 1, Func. Count: 9, Neg. LLF: 151.34858906512733
Iteration: 2, Func. Count: 18, Neg. LLF: 151.80668451346182
Iteration: 3, Func. Count: 28, Neg. LLF: 151.40466819917037
Iteration: 4, Func. Count: 37, Neg. LLF: 148.89448614218787
Iteration: 5, Func. Count: 45, Neg. LLF: 148.8759894778674
Iteration: 6, Func. Count: 53, Neg. LLF: 148.85891894009563
Iteration: 7, Func. Count: 61, Neg. LLF: 148.8548102074144
Iteration: 8, Func. Count: 69, Neg. LLF: 148.84467006351747
Iteration: 9, Func. Count: 77, Neg. LLF: 148.84238035883143
Iteration: 10, Func. Count: 85, Neg. LLF: 148.84164131055078
Iteration: 11, Func. Count: 93, Neg. LLF: 148.84162808487295
Iteration: 12, Func. Count: 100, Neg. LLF: 148.84162810581174
Optimization terminated successfully (Exit mode 0)
Current function value: 148.84162808487295
Iterations: 12
Function evaluations: 100
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 18395474.847198777
Iteration: 2, Func. Count: 21, Neg. LLF: 148.58458118675196
Iteration: 3, Func. Count: 31, Neg. LLF: 150.0065419773529
Iteration: 4, Func. Count: 41, Neg. LLF: 148.12731465100734
Iteration: 5, Func. Count: 51, Neg. LLF: 147.80716602538786
Iteration: 6, Func. Count: 60, Neg. LLF: 147.80320802324295
Iteration: 7, Func. Count: 70, Neg. LLF: 147.7897352264103
Iteration: 8, Func. Count: 79, Neg. LLF: 147.78842307026594
Iteration: 9, Func. Count: 88, Neg. LLF: 147.78841574825904
Iteration: 10, Func. Count: 96, Neg. LLF: 147.78841574821672
Optimization terminated successfully (Exit mode 0)
Current function value: 147.78841574825904
Iterations: 10
Function evaluations: 96
Gradient evaluations: 10
Iteration: 1, Func. Count: 11, Neg. LLF: 2853.387035442219
Iteration: 2, Func. Count: 23, Neg. LLF: 152.05570958950696
Iteration: 3, Func. Count: 34, Neg. LLF: 148.12364207719145
Iteration: 4, Func. Count: 44, Neg. LLF: 148.52740964519276
Iteration: 5, Func. Count: 55, Neg. LLF: 158.69808795612377
Iteration: 6, Func. Count: 66, Neg. LLF: 147.3172554345652
Iteration: 7, Func. Count: 76, Neg. LLF: 147.22383794849745
Iteration: 8, Func. Count: 86, Neg. LLF: 147.1692165777532
Iteration: 9, Func. Count: 96, Neg. LLF: 147.1630976373279
Iteration: 10, Func. Count: 106, Neg. LLF: 147.16070881415257
Iteration: 11, Func. Count: 116, Neg. LLF: 147.16064273955072
Iteration: 12, Func. Count: 126, Neg. LLF: 147.16063225504638
Iteration: 13, Func. Count: 135, Neg. LLF: 147.16063225515683
Optimization terminated successfully (Exit mode 0)
Current function value: 147.16063225504638
Iterations: 13
Function evaluations: 135
Gradient evaluations: 13
Iteration: 1, Func. Count: 12, Neg. LLF: 406.22818597644937
Iteration: 2, Func. Count: 24, Neg. LLF: 161.57280741298575
Iteration: 3, Func. Count: 36, Neg. LLF: 151.51869250981983
Iteration: 4, Func. Count: 48, Neg. LLF: 147.9096048650671
Iteration: 5, Func. Count: 59, Neg. LLF: 147.48568423098263
Iteration: 6, Func. Count: 70, Neg. LLF: 149.28869954593662
Iteration: 7, Func. Count: 84, Neg. LLF: 147.38672741114993
Iteration: 8, Func. Count: 95, Neg. LLF: 147.37929954305739
Iteration: 9, Func. Count: 107, Neg. LLF: 147.35400637551754
Iteration: 10, Func. Count: 118, Neg. LLF: 147.3518914489805
Iteration: 11, Func. Count: 129, Neg. LLF: 147.35124194332934
Iteration: 12, Func. Count: 140, Neg. LLF: 147.35092349334445
Iteration: 13, Func. Count: 151, Neg. LLF: 147.3509154712025
Iteration: 14, Func. Count: 162, Neg. LLF: 147.35091462245282
Optimization terminated successfully (Exit mode 0)
Current function value: 147.35091462245282
Iterations: 14
Function evaluations: 162
Gradient evaluations: 14
Iteration: 1, Func. Count: 13, Neg. LLF: 412.24350060723776
Iteration: 2, Func. Count: 26, Neg. LLF: 168.51596769271794
Iteration: 3, Func. Count: 39, Neg. LLF: 155.17670659665694
Iteration: 4, Func. Count: 52, Neg. LLF: 147.89929874949559
Iteration: 5, Func. Count: 64, Neg. LLF: 147.48334364812015
Iteration: 6, Func. Count: 76, Neg. LLF: 151.7112804711666
Iteration: 7, Func. Count: 91, Neg. LLF: 147.5940555837473
Iteration: 8, Func. Count: 104, Neg. LLF: 147.31050486769936
Iteration: 9, Func. Count: 116, Neg. LLF: 147.19709354745257
Iteration: 10, Func. Count: 128, Neg. LLF: 147.1841448771491
Iteration: 11, Func. Count: 140, Neg. LLF: 147.17897363361715
Iteration: 12, Func. Count: 152, Neg. LLF: 147.1748241691695
Iteration: 13, Func. Count: 164, Neg. LLF: 147.17408340865515
Iteration: 14, Func. Count: 176, Neg. LLF: 147.17310678260336
Iteration: 15, Func. Count: 188, Neg. LLF: 147.1704706038686
Iteration: 16, Func. Count: 200, Neg. LLF: 147.1684661692063
Iteration: 17, Func. Count: 212, Neg. LLF: 147.16765816609023
Iteration: 18, Func. Count: 224, Neg. LLF: 147.1674192522066
Iteration: 19, Func. Count: 236, Neg. LLF: 147.16718012090138
Iteration: 20, Func. Count: 248, Neg. LLF: 147.16429065748426
Iteration: 21, Func. Count: 260, Neg. LLF: 147.16069308552363
Iteration: 22, Func. Count: 272, Neg. LLF: 147.16064963589207
Iteration: 23, Func. Count: 284, Neg. LLF: 147.16064142429312
Iteration: 24, Func. Count: 296, Neg. LLF: 147.1606321714067
Iteration: 25, Func. Count: 307, Neg. LLF: 147.16063217280387
Optimization terminated successfully (Exit mode 0)
Current function value: 147.1606321714067
Iterations: 25
Function evaluations: 307
Gradient evaluations: 25
Iteration: 1, Func. Count: 10, Neg. LLF: 151.0765203912994
Iteration: 2, Func. Count: 20, Neg. LLF: 151.7496258781763
Iteration: 3, Func. Count: 32, Neg. LLF: 149.48857809500285
Iteration: 4, Func. Count: 42, Neg. LLF: 149.5302882219824
Iteration: 5, Func. Count: 53, Neg. LLF: 148.75303484726092
Iteration: 6, Func. Count: 62, Neg. LLF: 148.7201606478821
Iteration: 7, Func. Count: 71, Neg. LLF: 148.67749933713154
Iteration: 8, Func. Count: 80, Neg. LLF: 148.6539777444267
Iteration: 9, Func. Count: 89, Neg. LLF: 148.6223860211818
Iteration: 10, Func. Count: 98, Neg. LLF: 148.61186695872726
Iteration: 11, Func. Count: 107, Neg. LLF: 148.61004559133985
Iteration: 12, Func. Count: 116, Neg. LLF: 148.60985602682115
Iteration: 13, Func. Count: 125, Neg. LLF: 148.60984304513735
Iteration: 14, Func. Count: 134, Neg. LLF: 148.60984234333307
Optimization terminated successfully (Exit mode 0)
Current function value: 148.60984234333307
Iterations: 14
Function evaluations: 134
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 17522812.3617081
Iteration: 2, Func. Count: 23, Neg. LLF: 148.97531077467679
Iteration: 3, Func. Count: 34, Neg. LLF: 151.7733569446272
Iteration: 4, Func. Count: 45, Neg. LLF: 148.04949797065728
Iteration: 5, Func. Count: 55, Neg. LLF: 147.7819461572563
Iteration: 6, Func. Count: 65, Neg. LLF: 147.75953880655985
Iteration: 7, Func. Count: 75, Neg. LLF: 147.77311544116853
Iteration: 8, Func. Count: 86, Neg. LLF: 147.75045159515537
Iteration: 9, Func. Count: 96, Neg. LLF: 147.74884857799205
Iteration: 10, Func. Count: 106, Neg. LLF: 147.74874586370126
Iteration: 11, Func. Count: 116, Neg. LLF: 147.74873402696275
Iteration: 12, Func. Count: 125, Neg. LLF: 147.74873402682246
Optimization terminated successfully (Exit mode 0)
Current function value: 147.74873402696275
Iterations: 12
Function evaluations: 125
Gradient evaluations: 12
Iteration: 1, Func. Count: 12, Neg. LLF: 3979.45867615078
Iteration: 2, Func. Count: 25, Neg. LLF: 153.59115218045181
Iteration: 3, Func. Count: 37, Neg. LLF: 151.86466749643319
Iteration: 4, Func. Count: 49, Neg. LLF: 147.42256437660333
Iteration: 5, Func. Count: 60, Neg. LLF: 148.69991105710605
Iteration: 6, Func. Count: 72, Neg. LLF: 147.1862491884604
Iteration: 7, Func. Count: 83, Neg. LLF: 147.16472526350003
Iteration: 8, Func. Count: 94, Neg. LLF: 147.16114509895368
Iteration: 9, Func. Count: 105, Neg. LLF: 147.16064785159324
Iteration: 10, Func. Count: 116, Neg. LLF: 147.160632685247
Iteration: 11, Func. Count: 127, Neg. LLF: 147.16063216142763
Optimization terminated successfully (Exit mode 0)
Current function value: 147.16063216142763
Iterations: 11
Function evaluations: 127
Gradient evaluations: 11
Iteration: 1, Func. Count: 13, Neg. LLF: 412.161348658962
Iteration: 2, Func. Count: 26, Neg. LLF: 159.81042035903968
Iteration: 3, Func. Count: 39, Neg. LLF: 159.44356552943643
Iteration: 4, Func. Count: 52, Neg. LLF: 147.95041329691958
Iteration: 5, Func. Count: 64, Neg. LLF: 147.7362219816766
Iteration: 6, Func. Count: 76, Neg. LLF: 151.47945577244332
Iteration: 7, Func. Count: 90, Neg. LLF: 149.05424484098342
Iteration: 8, Func. Count: 104, Neg. LLF: 147.375388474058
Iteration: 9, Func. Count: 116, Neg. LLF: 147.34055154587284
Iteration: 10, Func. Count: 128, Neg. LLF: 147.32780873768417
Iteration: 11, Func. Count: 140, Neg. LLF: 147.32507309122116
Iteration: 12, Func. Count: 152, Neg. LLF: 147.32442456344486
Iteration: 13, Func. Count: 164, Neg. LLF: 147.32416591730637
Iteration: 14, Func. Count: 176, Neg. LLF: 147.32408769994203
Iteration: 15, Func. Count: 188, Neg. LLF: 147.3240787116371
Iteration: 16, Func. Count: 199, Neg. LLF: 147.3240787116384
Optimization terminated successfully (Exit mode 0)
Current function value: 147.3240787116371
Iterations: 16
Function evaluations: 199
Gradient evaluations: 16
Iteration: 1, Func. Count: 14, Neg. LLF: 418.31879986861134
Iteration: 2, Func. Count: 28, Neg. LLF: 169.92042292674964
Iteration: 3, Func. Count: 42, Neg. LLF: 180.66540287916783
Iteration: 4, Func. Count: 56, Neg. LLF: 148.08848840176
Iteration: 5, Func. Count: 69, Neg. LLF: 147.71965445450593
Iteration: 6, Func. Count: 82, Neg. LLF: 152.36043599399133
Iteration: 7, Func. Count: 98, Neg. LLF: 147.48762823608791
Iteration: 8, Func. Count: 111, Neg. LLF: 147.32261678387198
Iteration: 9, Func. Count: 124, Neg. LLF: 147.22312816409615
Iteration: 10, Func. Count: 137, Neg. LLF: 147.23391655586923
Iteration: 11, Func. Count: 151, Neg. LLF: 147.15382214939228
Iteration: 12, Func. Count: 164, Neg. LLF: 147.15302886588265
Iteration: 13, Func. Count: 177, Neg. LLF: 147.15299715945926
Iteration: 14, Func. Count: 189, Neg. LLF: 147.1529971594459
Optimization terminated successfully (Exit mode 0)
Current function value: 147.15299715945926
Iterations: 14
Function evaluations: 189
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 150.99384754998002
Iteration: 2, Func. Count: 22, Neg. LLF: 151.7350397178676
Iteration: 3, Func. Count: 35, Neg. LLF: 149.10183102267223
Iteration: 4, Func. Count: 45, Neg. LLF: 149.0121886140524
Iteration: 5, Func. Count: 55, Neg. LLF: 148.87378788596203
Iteration: 6, Func. Count: 65, Neg. LLF: 148.81513012578228
Iteration: 7, Func. Count: 76, Neg. LLF: 148.71024109610423
Iteration: 8, Func. Count: 86, Neg. LLF: 148.65803875006665
Iteration: 9, Func. Count: 96, Neg. LLF: 148.6417006832712
Iteration: 10, Func. Count: 106, Neg. LLF: 148.6107941702873
Iteration: 11, Func. Count: 116, Neg. LLF: 148.60997541466193
Iteration: 12, Func. Count: 126, Neg. LLF: 148.6098503883388
Iteration: 13, Func. Count: 136, Neg. LLF: 148.60984278812907
Iteration: 14, Func. Count: 145, Neg. LLF: 148.60984279556894
Optimization terminated successfully (Exit mode 0)
Current function value: 148.60984278812907
Iterations: 14
Function evaluations: 145
Gradient evaluations: 14
Iteration: 1, Func. Count: 12, Neg. LLF: 17588030.224844906
Iteration: 2, Func. Count: 25, Neg. LLF: 152.89832840466102
Iteration: 3, Func. Count: 37, Neg. LLF: 160.8371698670451
Iteration: 4, Func. Count: 49, Neg. LLF: 148.22226050972634
Iteration: 5, Func. Count: 60, Neg. LLF: 148.09890845091095
Iteration: 6, Func. Count: 72, Neg. LLF: 147.8279848914786
Iteration: 7, Func. Count: 84, Neg. LLF: 148.00389693004843
Iteration: 8, Func. Count: 96, Neg. LLF: 147.6933077431573
Iteration: 9, Func. Count: 107, Neg. LLF: 147.6923669455356
Iteration: 10, Func. Count: 118, Neg. LLF: 147.69219718288682
Iteration: 11, Func. Count: 129, Neg. LLF: 147.69212865849684
Iteration: 12, Func. Count: 140, Neg. LLF: 147.6920374487796
Iteration: 13, Func. Count: 151, Neg. LLF: 147.69197567222145
Iteration: 14, Func. Count: 162, Neg. LLF: 147.6919618540575
Iteration: 15, Func. Count: 173, Neg. LLF: 147.69196070435456
Iteration: 16, Func. Count: 183, Neg. LLF: 147.69196070439807
Optimization terminated successfully (Exit mode 0)
Current function value: 147.69196070435456
Iterations: 16
Function evaluations: 183
Gradient evaluations: 16
Iteration: 1, Func. Count: 13, Neg. LLF: 6577.056759286274
Iteration: 2, Func. Count: 27, Neg. LLF: 176.7179315007994
Iteration: 3, Func. Count: 40, Neg. LLF: 151.94237892480493
Iteration: 4, Func. Count: 53, Neg. LLF: 147.72128087374787
Iteration: 5, Func. Count: 65, Neg. LLF: 147.30688711170293
Iteration: 6, Func. Count: 77, Neg. LLF: 147.27393979477463
Iteration: 7, Func. Count: 89, Neg. LLF: 147.18645920590632
Iteration: 8, Func. Count: 101, Neg. LLF: 147.17096748382596
Iteration: 9, Func. Count: 113, Neg. LLF: 147.16353202002944
Iteration: 10, Func. Count: 125, Neg. LLF: 147.16084925017373
Iteration: 11, Func. Count: 137, Neg. LLF: 147.16047248720227
Iteration: 12, Func. Count: 149, Neg. LLF: 147.1604584476898
Iteration: 13, Func. Count: 160, Neg. LLF: 147.16045844769863
Optimization terminated successfully (Exit mode 0)
Current function value: 147.1604584476898
Iterations: 13
Function evaluations: 160
Gradient evaluations: 13
Iteration: 1, Func. Count: 14, Neg. LLF: 415.886219308539
Iteration: 2, Func. Count: 28, Neg. LLF: 162.07268839189405
Iteration: 3, Func. Count: 42, Neg. LLF: 187.5507665205673
Iteration: 4, Func. Count: 56, Neg. LLF: 148.509599950122
Iteration: 5, Func. Count: 70, Neg. LLF: 147.97107244999808
Iteration: 6, Func. Count: 83, Neg. LLF: 147.59540717458992
Iteration: 7, Func. Count: 96, Neg. LLF: 148.01833347259407
Iteration: 8, Func. Count: 112, Neg. LLF: 147.4400454779657
Iteration: 9, Func. Count: 125, Neg. LLF: 147.3520788787274
Iteration: 10, Func. Count: 138, Neg. LLF: 147.3366226362814
Iteration: 11, Func. Count: 151, Neg. LLF: 147.32746711918315
Iteration: 12, Func. Count: 164, Neg. LLF: 147.32531441178998
Iteration: 13, Func. Count: 177, Neg. LLF: 147.32438701346842
Iteration: 14, Func. Count: 190, Neg. LLF: 147.3241682036719
Iteration: 15, Func. Count: 203, Neg. LLF: 147.32409258041352
Iteration: 16, Func. Count: 216, Neg. LLF: 147.3240809450839
Iteration: 17, Func. Count: 229, Neg. LLF: 147.3240785373953
Iteration: 18, Func. Count: 241, Neg. LLF: 147.32407853742623
Optimization terminated successfully (Exit mode 0)
Current function value: 147.3240785373953
Iterations: 18
Function evaluations: 241
Gradient evaluations: 18
Iteration: 1, Func. Count: 15, Neg. LLF: 421.52541905822903
Iteration: 2, Func. Count: 30, Neg. LLF: 170.39669049153625
Iteration: 3, Func. Count: 45, Neg. LLF: 188.6785321636829
Iteration: 4, Func. Count: 60, Neg. LLF: 148.62083912077338
Iteration: 5, Func. Count: 75, Neg. LLF: 147.4531629634722
Iteration: 6, Func. Count: 89, Neg. LLF: 147.3335400608129
Iteration: 7, Func. Count: 104, Neg. LLF: 148.29219332674938
Iteration: 8, Func. Count: 120, Neg. LLF: 147.22000792718686
Iteration: 9, Func. Count: 135, Neg. LLF: 147.22718589681455
Iteration: 10, Func. Count: 150, Neg. LLF: 147.16447328262512
Iteration: 11, Func. Count: 164, Neg. LLF: 147.15375187262325
Iteration: 12, Func. Count: 178, Neg. LLF: 147.15322376999364
Iteration: 13, Func. Count: 192, Neg. LLF: 147.15308248240638
Iteration: 14, Func. Count: 206, Neg. LLF: 147.15302713886956
Iteration: 15, Func. Count: 220, Neg. LLF: 147.15300418394955
Iteration: 16, Func. Count: 234, Neg. LLF: 147.15299710071673
Iteration: 17, Func. Count: 248, Neg. LLF: 147.15299652117375
Optimization terminated successfully (Exit mode 0)
Current function value: 147.15299652117375
Iterations: 17
Function evaluations: 248
Gradient evaluations: 17
Iteration: 1, Func. Count: 8, Neg. LLF: 152.10088229668753
Iteration: 2, Func. Count: 15, Neg. LLF: 151.7629861157607
Iteration: 3, Func. Count: 22, Neg. LLF: 166.81436756240709
Iteration: 4, Func. Count: 30, Neg. LLF: 152.1725812203323
Iteration: 5, Func. Count: 38, Neg. LLF: 153.81024458663904
Iteration: 6, Func. Count: 47, Neg. LLF: 151.08727723432673
Iteration: 7, Func. Count: 54, Neg. LLF: 151.05815359954926
Iteration: 8, Func. Count: 61, Neg. LLF: 151.04720846628416
Iteration: 9, Func. Count: 68, Neg. LLF: 151.00425463486363
Iteration: 10, Func. Count: 75, Neg. LLF: 150.98794140390692
Iteration: 11, Func. Count: 82, Neg. LLF: 150.9873255412735
Iteration: 12, Func. Count: 89, Neg. LLF: 150.98730321155864
Iteration: 13, Func. Count: 96, Neg. LLF: 150.98730123967235
Iteration: 14, Func. Count: 102, Neg. LLF: 150.98730123965515
Optimization terminated successfully (Exit mode 0)
Current function value: 150.98730123967235
Iterations: 14
Function evaluations: 102
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 464.9528711291421
Iteration: 2, Func. Count: 18, Neg. LLF: 151.72707913531892
Iteration: 3, Func. Count: 27, Neg. LLF: 154.74247407049756
Iteration: 4, Func. Count: 36, Neg. LLF: 152.94948943676837
Iteration: 5, Func. Count: 45, Neg. LLF: 149.3275128853655
Iteration: 6, Func. Count: 53, Neg. LLF: 156.52225441940374
Iteration: 7, Func. Count: 62, Neg. LLF: 159.01605488412113
Iteration: 8, Func. Count: 73, Neg. LLF: 148.39831692684695
Iteration: 9, Func. Count: 81, Neg. LLF: 148.17963205713008
Iteration: 10, Func. Count: 89, Neg. LLF: 148.12711035494004
Iteration: 11, Func. Count: 97, Neg. LLF: 148.10537341893487
Iteration: 12, Func. Count: 105, Neg. LLF: 148.10533692028122
Iteration: 13, Func. Count: 113, Neg. LLF: 148.10533000717476
Iteration: 14, Func. Count: 121, Neg. LLF: 148.10532093074556
Iteration: 15, Func. Count: 129, Neg. LLF: 148.10531845421528
Iteration: 16, Func. Count: 136, Neg. LLF: 148.10531845406345
Optimization terminated successfully (Exit mode 0)
Current function value: 148.10531845421528
Iterations: 16
Function evaluations: 136
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 483.9514479164609
Iteration: 2, Func. Count: 20, Neg. LLF: 152.70934524507356
Iteration: 3, Func. Count: 30, Neg. LLF: 150.88952260571847
Iteration: 4, Func. Count: 40, Neg. LLF: 149.4503679286494
Iteration: 5, Func. Count: 50, Neg. LLF: 148.8284556708413
Iteration: 6, Func. Count: 59, Neg. LLF: 148.4191735308872
Iteration: 7, Func. Count: 68, Neg. LLF: 148.37858021135668
Iteration: 8, Func. Count: 77, Neg. LLF: 148.15739117517407
Iteration: 9, Func. Count: 86, Neg. LLF: 148.11828481491858
Iteration: 10, Func. Count: 95, Neg. LLF: 148.12200635477987
Iteration: 11, Func. Count: 105, Neg. LLF: 148.09439076584874
Iteration: 12, Func. Count: 114, Neg. LLF: 148.09436425611966
Iteration: 13, Func. Count: 123, Neg. LLF: 148.0943563696992
Iteration: 14, Func. Count: 132, Neg. LLF: 148.09435559524374
Optimization terminated successfully (Exit mode 0)
Current function value: 148.09435559524374
Iterations: 14
Function evaluations: 132
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 490.8319909331622
Iteration: 2, Func. Count: 22, Neg. LLF: 157.59563788736548
Iteration: 3, Func. Count: 33, Neg. LLF: 151.63486259267322
Iteration: 4, Func. Count: 44, Neg. LLF: 149.47795871505843
Iteration: 5, Func. Count: 55, Neg. LLF: 148.7860560421194
Iteration: 6, Func. Count: 65, Neg. LLF: 148.60029205716637
Iteration: 7, Func. Count: 75, Neg. LLF: 151.58865208584626
Iteration: 8, Func. Count: 87, Neg. LLF: 148.6279847717147
Iteration: 9, Func. Count: 98, Neg. LLF: 149.6656514886633
Iteration: 10, Func. Count: 109, Neg. LLF: 148.25968647858025
Iteration: 11, Func. Count: 119, Neg. LLF: 148.12386506685456
Iteration: 12, Func. Count: 129, Neg. LLF: 148.09647504259877
Iteration: 13, Func. Count: 139, Neg. LLF: 148.0944842921277
Iteration: 14, Func. Count: 149, Neg. LLF: 148.09437117859136
Iteration: 15, Func. Count: 159, Neg. LLF: 148.0943556483688
Iteration: 16, Func. Count: 168, Neg. LLF: 148.0943556548757
Optimization terminated successfully (Exit mode 0)
Current function value: 148.0943556483688
Iterations: 16
Function evaluations: 168
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 496.2174761089363
Iteration: 2, Func. Count: 24, Neg. LLF: 182.9552893151962
Iteration: 3, Func. Count: 36, Neg. LLF: 153.53894334868323
Iteration: 4, Func. Count: 48, Neg. LLF: 149.9199423207817
Iteration: 5, Func. Count: 60, Neg. LLF: 149.07008888113683
Iteration: 6, Func. Count: 72, Neg. LLF: 148.66182608219356
Iteration: 7, Func. Count: 83, Neg. LLF: 148.22853093490477
Iteration: 8, Func. Count: 94, Neg. LLF: 149.65900493006407
Iteration: 9, Func. Count: 106, Neg. LLF: 148.24880952470042
Iteration: 10, Func. Count: 118, Neg. LLF: 148.09510733802372
Iteration: 11, Func. Count: 129, Neg. LLF: 148.09440111712226
Iteration: 12, Func. Count: 140, Neg. LLF: 148.09436121400398
Iteration: 13, Func. Count: 151, Neg. LLF: 148.09435577460997
Iteration: 14, Func. Count: 161, Neg. LLF: 148.09435578496272
Optimization terminated successfully (Exit mode 0)
Current function value: 148.09435577460997
Iterations: 14
Function evaluations: 161
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 152.0840537839966
Iteration: 2, Func. Count: 18, Neg. LLF: 151.57069791592073
Iteration: 3, Func. Count: 29, Neg. LLF: 153.72411372842654
Iteration: 4, Func. Count: 38, Neg. LLF: 148.8783035724344
Iteration: 5, Func. Count: 46, Neg. LLF: 148.87082857986059
Iteration: 6, Func. Count: 54, Neg. LLF: 148.85884642764827
Iteration: 7, Func. Count: 62, Neg. LLF: 148.84523751305795
Iteration: 8, Func. Count: 70, Neg. LLF: 148.8422367882221
Iteration: 9, Func. Count: 78, Neg. LLF: 148.84164570091005
Iteration: 10, Func. Count: 86, Neg. LLF: 148.84162800050188
Iteration: 11, Func. Count: 93, Neg. LLF: 148.8416280005071
Optimization terminated successfully (Exit mode 0)
Current function value: 148.84162800050188
Iterations: 11
Function evaluations: 93
Gradient evaluations: 11
Iteration: 1, Func. Count: 10, Neg. LLF: 19821196.999353975
Iteration: 2, Func. Count: 21, Neg. LLF: 148.3268656396234
Iteration: 3, Func. Count: 31, Neg. LLF: 149.23900982661755
Iteration: 4, Func. Count: 41, Neg. LLF: 147.93054202063897
Iteration: 5, Func. Count: 51, Neg. LLF: 147.78948152024554
Iteration: 6, Func. Count: 60, Neg. LLF: 147.7884901247593
Iteration: 7, Func. Count: 69, Neg. LLF: 147.788416097078
Iteration: 8, Func. Count: 77, Neg. LLF: 147.78841609689323
Optimization terminated successfully (Exit mode 0)
Current function value: 147.788416097078
Iterations: 8
Function evaluations: 77
Gradient evaluations: 8
Iteration: 1, Func. Count: 11, Neg. LLF: 3270.651887747546
Iteration: 2, Func. Count: 23, Neg. LLF: 151.68932540121835
Iteration: 3, Func. Count: 34, Neg. LLF: 147.63695676141515
Iteration: 4, Func. Count: 44, Neg. LLF: 148.26949135628618
Iteration: 5, Func. Count: 55, Neg. LLF: 147.59145801185096
Iteration: 6, Func. Count: 66, Neg. LLF: 147.2082686411986
Iteration: 7, Func. Count: 76, Neg. LLF: 147.20836102919753
Iteration: 8, Func. Count: 87, Neg. LLF: 147.16399345321534
Iteration: 9, Func. Count: 97, Neg. LLF: 147.16090589283138
Iteration: 10, Func. Count: 107, Neg. LLF: 147.16064038364223
Iteration: 11, Func. Count: 117, Neg. LLF: 147.16063258847274
Iteration: 12, Func. Count: 126, Neg. LLF: 147.16063258832142
Optimization terminated successfully (Exit mode 0)
Current function value: 147.16063258847274
Iterations: 12
Function evaluations: 126
Gradient evaluations: 12
Iteration: 1, Func. Count: 12, Neg. LLF: 405.6492916949553
Iteration: 2, Func. Count: 24, Neg. LLF: 156.05096958938637
Iteration: 3, Func. Count: 36, Neg. LLF: 147.68630013733284
Iteration: 4, Func. Count: 47, Neg. LLF: 148.13505010160043
Iteration: 5, Func. Count: 59, Neg. LLF: 153.42658401785235
Iteration: 6, Func. Count: 72, Neg. LLF: 147.2787932829278
Iteration: 7, Func. Count: 83, Neg. LLF: 147.16943426309678
Iteration: 8, Func. Count: 94, Neg. LLF: 147.16235923241166
Iteration: 9, Func. Count: 105, Neg. LLF: 147.16070096958464
Iteration: 10, Func. Count: 116, Neg. LLF: 147.1607537565269
Iteration: 11, Func. Count: 128, Neg. LLF: 147.1606363990107
Iteration: 12, Func. Count: 139, Neg. LLF: 147.16063216634902
Iteration: 13, Func. Count: 149, Neg. LLF: 147.1606321694602
Optimization terminated successfully (Exit mode 0)
Current function value: 147.16063216634902
Iterations: 13
Function evaluations: 149
Gradient evaluations: 13
Iteration: 1, Func. Count: 13, Neg. LLF: 412.77646532291584
Iteration: 2, Func. Count: 26, Neg. LLF: 161.8199078165265
Iteration: 3, Func. Count: 39, Neg. LLF: 147.90567790854539
Iteration: 4, Func. Count: 51, Neg. LLF: 147.73369645600033
Iteration: 5, Func. Count: 64, Neg. LLF: 151.06050205487819
Iteration: 6, Func. Count: 78, Neg. LLF: 147.39494265608835
Iteration: 7, Func. Count: 91, Neg. LLF: 147.2713736016088
Iteration: 8, Func. Count: 103, Neg. LLF: 147.20749219858143
Iteration: 9, Func. Count: 115, Neg. LLF: 147.19908256424935
Iteration: 10, Func. Count: 127, Neg. LLF: 147.17836523878714
Iteration: 11, Func. Count: 139, Neg. LLF: 147.1733670520025
Iteration: 12, Func. Count: 151, Neg. LLF: 147.16980791178221
Iteration: 13, Func. Count: 163, Neg. LLF: 147.16855177071824
Iteration: 14, Func. Count: 175, Neg. LLF: 147.1678829234149
Iteration: 15, Func. Count: 187, Neg. LLF: 147.16750768368166
Iteration: 16, Func. Count: 199, Neg. LLF: 147.1671875264439
Iteration: 17, Func. Count: 211, Neg. LLF: 147.16599090357542
Iteration: 18, Func. Count: 223, Neg. LLF: 147.16255564487682
Iteration: 19, Func. Count: 235, Neg. LLF: 147.1607996776381
Iteration: 20, Func. Count: 247, Neg. LLF: 147.16063914644013
Iteration: 21, Func. Count: 259, Neg. LLF: 147.16065005081597
Optimization terminated successfully (Exit mode 0)
Current function value: 147.16063819128252
Iterations: 21
Function evaluations: 260
Gradient evaluations: 21
Iteration: 1, Func. Count: 10, Neg. LLF: 151.64302327922206
Iteration: 2, Func. Count: 20, Neg. LLF: 151.80885326906161
Iteration: 3, Func. Count: 32, Neg. LLF: 152.92167654178922
Iteration: 4, Func. Count: 42, Neg. LLF: 148.8840695659552
Iteration: 5, Func. Count: 51, Neg. LLF: 148.87199676731925
Iteration: 6, Func. Count: 60, Neg. LLF: 148.8632008423994
Iteration: 7, Func. Count: 69, Neg. LLF: 148.85265244011882
Iteration: 8, Func. Count: 78, Neg. LLF: 148.8457062439659
Iteration: 9, Func. Count: 87, Neg. LLF: 148.84265820082268
Iteration: 10, Func. Count: 96, Neg. LLF: 148.84175936518736
Iteration: 11, Func. Count: 105, Neg. LLF: 148.8416298816305
Iteration: 12, Func. Count: 114, Neg. LLF: 148.84162798624365
Iteration: 13, Func. Count: 122, Neg. LLF: 148.84162796530154
Optimization terminated successfully (Exit mode 0)
Current function value: 148.84162798624365
Iterations: 13
Function evaluations: 122
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 18394482.337831497
Iteration: 2, Func. Count: 23, Neg. LLF: 149.06959364271162
Iteration: 3, Func. Count: 34, Neg. LLF: 151.7717121309301
Iteration: 4, Func. Count: 45, Neg. LLF: 148.08486145333757
Iteration: 5, Func. Count: 55, Neg. LLF: 147.8134089192904
Iteration: 6, Func. Count: 65, Neg. LLF: 147.7974691778104
Iteration: 7, Func. Count: 75, Neg. LLF: 147.7893025480923
Iteration: 8, Func. Count: 85, Neg. LLF: 147.78851198805432
Iteration: 9, Func. Count: 95, Neg. LLF: 147.78841667668496
Iteration: 10, Func. Count: 105, Neg. LLF: 147.78841557357634
Iteration: 11, Func. Count: 114, Neg. LLF: 147.78841557350418
Optimization terminated successfully (Exit mode 0)
Current function value: 147.78841557357634
Iterations: 11
Function evaluations: 114
Gradient evaluations: 11
Iteration: 1, Func. Count: 12, Neg. LLF: 3723.8646725839335
Iteration: 2, Func. Count: 25, Neg. LLF: 154.13270998340587
Iteration: 3, Func. Count: 37, Neg. LLF: 148.3325135972545
Iteration: 4, Func. Count: 48, Neg. LLF: 147.97781711213102
Iteration: 5, Func. Count: 60, Neg. LLF: 161.36042597495822
Iteration: 6, Func. Count: 72, Neg. LLF: 147.9092663582831
Iteration: 7, Func. Count: 84, Neg. LLF: 147.37024812673087
Iteration: 8, Func. Count: 95, Neg. LLF: 147.21113952385255
Iteration: 9, Func. Count: 106, Neg. LLF: 147.1646588455648
Iteration: 10, Func. Count: 117, Neg. LLF: 147.16100849147293
Iteration: 11, Func. Count: 128, Neg. LLF: 147.16070444926947
Iteration: 12, Func. Count: 139, Neg. LLF: 147.16063240128514
Iteration: 13, Func. Count: 149, Neg. LLF: 147.1606324014664
Optimization terminated successfully (Exit mode 0)
Current function value: 147.16063240128514
Iterations: 13
Function evaluations: 149
Gradient evaluations: 13
Iteration: 1, Func. Count: 13, Neg. LLF: 406.26318434401145
Iteration: 2, Func. Count: 26, Neg. LLF: 161.57745500842748
Iteration: 3, Func. Count: 39, Neg. LLF: 148.8093673322152
Iteration: 4, Func. Count: 52, Neg. LLF: 147.56461312235916
Iteration: 5, Func. Count: 64, Neg. LLF: 148.72236367941136
Iteration: 6, Func. Count: 77, Neg. LLF: 147.3038350037154
Iteration: 7, Func. Count: 89, Neg. LLF: 147.32295517436833
Iteration: 8, Func. Count: 102, Neg. LLF: 147.30255986797115
Iteration: 9, Func. Count: 115, Neg. LLF: 147.17389496132623
Iteration: 10, Func. Count: 127, Neg. LLF: 147.1629280582048
Iteration: 11, Func. Count: 139, Neg. LLF: 147.16095037411117
Iteration: 12, Func. Count: 151, Neg. LLF: 147.16063441672625
Iteration: 13, Func. Count: 163, Neg. LLF: 147.1606331134544
Iteration: 14, Func. Count: 175, Neg. LLF: 147.16063216172853
Optimization terminated successfully (Exit mode 0)
Current function value: 147.16063216172853
Iterations: 14
Function evaluations: 175
Gradient evaluations: 14
Iteration: 1, Func. Count: 14, Neg. LLF: 411.2580845913959
Iteration: 2, Func. Count: 28, Neg. LLF: 168.05848241463534
Iteration: 3, Func. Count: 42, Neg. LLF: 152.57233113840743
Iteration: 4, Func. Count: 56, Neg. LLF: 147.44772235463807
Iteration: 5, Func. Count: 69, Neg. LLF: 147.6189627199046
Iteration: 6, Func. Count: 83, Neg. LLF: 148.6424432713626
Iteration: 7, Func. Count: 98, Neg. LLF: 147.33923714222848
Iteration: 8, Func. Count: 112, Neg. LLF: 147.22961281249945
Iteration: 9, Func. Count: 125, Neg. LLF: 147.19054365700606
Iteration: 10, Func. Count: 138, Neg. LLF: 147.1820767876164
Iteration: 11, Func. Count: 151, Neg. LLF: 147.1743040835596
Iteration: 12, Func. Count: 164, Neg. LLF: 147.1714372726362
Iteration: 13, Func. Count: 177, Neg. LLF: 147.16985695069718
Iteration: 14, Func. Count: 190, Neg. LLF: 147.16850020080767
Iteration: 15, Func. Count: 203, Neg. LLF: 147.16802764477734
Iteration: 16, Func. Count: 216, Neg. LLF: 147.16747229814484
Iteration: 17, Func. Count: 229, Neg. LLF: 147.16722961025135
Iteration: 18, Func. Count: 242, Neg. LLF: 147.1662100993305
Iteration: 19, Func. Count: 255, Neg. LLF: 147.16170605549587
Iteration: 20, Func. Count: 268, Neg. LLF: 147.16108983271772
Iteration: 21, Func. Count: 281, Neg. LLF: 147.1606604053664
Iteration: 22, Func. Count: 294, Neg. LLF: 147.16064269783115
Iteration: 23, Func. Count: 307, Neg. LLF: 147.16063220141965
Iteration: 24, Func. Count: 319, Neg. LLF: 147.16063220286182
Optimization terminated successfully (Exit mode 0)
Current function value: 147.16063220141965
Iterations: 24
Function evaluations: 319
Gradient evaluations: 24
Iteration: 1, Func. Count: 11, Neg. LLF: 151.2526210773643
Iteration: 2, Func. Count: 22, Neg. LLF: 151.76207036358585
Iteration: 3, Func. Count: 35, Neg. LLF: 150.4100877617613
Iteration: 4, Func. Count: 46, Neg. LLF: 150.75305302602365
Iteration: 5, Func. Count: 58, Neg. LLF: 148.74661188475451
Iteration: 6, Func. Count: 68, Neg. LLF: 148.7212852869429
Iteration: 7, Func. Count: 78, Neg. LLF: 148.68000038765064
Iteration: 8, Func. Count: 88, Neg. LLF: 148.6435415843958
Iteration: 9, Func. Count: 98, Neg. LLF: 148.61461964350255
Iteration: 10, Func. Count: 108, Neg. LLF: 148.61014709920778
Iteration: 11, Func. Count: 118, Neg. LLF: 148.609850550252
Iteration: 12, Func. Count: 128, Neg. LLF: 148.60984374331912
Iteration: 13, Func. Count: 138, Neg. LLF: 148.60984238015516
Iteration: 14, Func. Count: 147, Neg. LLF: 148.60984238016164
Optimization terminated successfully (Exit mode 0)
Current function value: 148.60984238015516
Iterations: 14
Function evaluations: 147
Gradient evaluations: 14
Iteration: 1, Func. Count: 12, Neg. LLF: 18752323.82966914
Iteration: 2, Func. Count: 25, Neg. LLF: 148.86699476312046
Iteration: 3, Func. Count: 37, Neg. LLF: 153.9006105392658
Iteration: 4, Func. Count: 49, Neg. LLF: 147.9069847142089
Iteration: 5, Func. Count: 60, Neg. LLF: 147.9038391730285
Iteration: 6, Func. Count: 72, Neg. LLF: 147.96029268139154
Iteration: 7, Func. Count: 84, Neg. LLF: 147.7512204271748
Iteration: 8, Func. Count: 95, Neg. LLF: 147.74895463601723
Iteration: 9, Func. Count: 106, Neg. LLF: 147.7487389911341
Iteration: 10, Func. Count: 117, Neg. LLF: 147.74873456544776
Iteration: 11, Func. Count: 128, Neg. LLF: 147.74873399745826
Optimization terminated successfully (Exit mode 0)
Current function value: 147.74873399745826
Iterations: 11
Function evaluations: 128
Gradient evaluations: 11
Iteration: 1, Func. Count: 13, Neg. LLF: 5502.483242940921
Iteration: 2, Func. Count: 27, Neg. LLF: 155.9873872964358
Iteration: 3, Func. Count: 40, Neg. LLF: 152.6007217519479
Iteration: 4, Func. Count: 53, Neg. LLF: 147.45359624579083
Iteration: 5, Func. Count: 65, Neg. LLF: 149.1975824688179
Iteration: 6, Func. Count: 78, Neg. LLF: 147.18950686817522
Iteration: 7, Func. Count: 90, Neg. LLF: 147.27073963707218
Iteration: 8, Func. Count: 103, Neg. LLF: 147.1618406516513
Iteration: 9, Func. Count: 115, Neg. LLF: 147.16073673155555
Iteration: 10, Func. Count: 127, Neg. LLF: 147.16063287445226
Iteration: 11, Func. Count: 139, Neg. LLF: 147.16063216350318
Optimization terminated successfully (Exit mode 0)
Current function value: 147.16063216350318
Iterations: 11
Function evaluations: 139
Gradient evaluations: 11
Iteration: 1, Func. Count: 14, Neg. LLF: 411.98795105178357
Iteration: 2, Func. Count: 28, Neg. LLF: 162.03163045602923
Iteration: 3, Func. Count: 42, Neg. LLF: 152.68897261729498
Iteration: 4, Func. Count: 56, Neg. LLF: 147.75949634420874
Iteration: 5, Func. Count: 69, Neg. LLF: 147.44572393853142
Iteration: 6, Func. Count: 82, Neg. LLF: 149.2765335560639
Iteration: 7, Func. Count: 97, Neg. LLF: 147.23153288709995
Iteration: 8, Func. Count: 110, Neg. LLF: 147.19388679035606
Iteration: 9, Func. Count: 123, Neg. LLF: 147.1653251877493
Iteration: 10, Func. Count: 136, Neg. LLF: 147.16076513338936
Iteration: 11, Func. Count: 149, Neg. LLF: 147.16076619106423
Iteration: 12, Func. Count: 163, Neg. LLF: 147.16063467179885
Iteration: 13, Func. Count: 176, Neg. LLF: 147.1606321606825
Iteration: 14, Func. Count: 188, Neg. LLF: 147.16063216381414
Optimization terminated successfully (Exit mode 0)
Current function value: 147.1606321606825
Iterations: 14
Function evaluations: 188
Gradient evaluations: 14
Iteration: 1, Func. Count: 15, Neg. LLF: 417.3128130243379
Iteration: 2, Func. Count: 30, Neg. LLF: 169.63279306893642
Iteration: 3, Func. Count: 45, Neg. LLF: 169.51913839578077
Iteration: 4, Func. Count: 60, Neg. LLF: 148.11062975820292
Iteration: 5, Func. Count: 74, Neg. LLF: 147.7083318216211
Iteration: 6, Func. Count: 88, Neg. LLF: 152.52790149594205
Iteration: 7, Func. Count: 105, Neg. LLF: 147.63217946284087
Iteration: 8, Func. Count: 120, Neg. LLF: 147.21549036422698
Iteration: 9, Func. Count: 134, Neg. LLF: 147.21709450530616
Iteration: 10, Func. Count: 149, Neg. LLF: 147.16354232623897
Iteration: 11, Func. Count: 163, Neg. LLF: 147.15358062439026
Iteration: 12, Func. Count: 177, Neg. LLF: 147.15302224401597
Iteration: 13, Func. Count: 191, Neg. LLF: 147.15299970071916
Iteration: 14, Func. Count: 205, Neg. LLF: 147.15299768997474
Iteration: 15, Func. Count: 219, Neg. LLF: 147.15299689513907
Optimization terminated successfully (Exit mode 0)
Current function value: 147.15299689513907
Iterations: 15
Function evaluations: 219
Gradient evaluations: 15
Iteration: 1, Func. Count: 12, Neg. LLF: 151.14342608244615
Iteration: 2, Func. Count: 24, Neg. LLF: 151.75977102023734
Iteration: 3, Func. Count: 38, Neg. LLF: 149.6113492603202
Iteration: 4, Func. Count: 50, Neg. LLF: 149.5558316488308
Iteration: 5, Func. Count: 63, Neg. LLF: 148.74438761590486
Iteration: 6, Func. Count: 74, Neg. LLF: 148.72075458897316
Iteration: 7, Func. Count: 85, Neg. LLF: 148.68201002689312
Iteration: 8, Func. Count: 96, Neg. LLF: 148.64257801554308
Iteration: 9, Func. Count: 107, Neg. LLF: 148.61540093273044
Iteration: 10, Func. Count: 118, Neg. LLF: 148.61016628933882
Iteration: 11, Func. Count: 129, Neg. LLF: 148.609852020248
Iteration: 12, Func. Count: 140, Neg. LLF: 148.60984388148324
Iteration: 13, Func. Count: 151, Neg. LLF: 148.609842409048
Iteration: 14, Func. Count: 161, Neg. LLF: 148.60984241647148
Optimization terminated successfully (Exit mode 0)
Current function value: 148.609842409048
Iterations: 14
Function evaluations: 161
Gradient evaluations: 14
Iteration: 1, Func. Count: 13, Neg. LLF: 17559268.21586105
Iteration: 2, Func. Count: 27, Neg. LLF: 151.43763195839006
Iteration: 3, Func. Count: 40, Neg. LLF: 154.90139714433934
Iteration: 4, Func. Count: 53, Neg. LLF: 148.30089496010194
Iteration: 5, Func. Count: 66, Neg. LLF: 148.03544071806195
Iteration: 6, Func. Count: 79, Neg. LLF: 147.8557895564412
Iteration: 7, Func. Count: 92, Neg. LLF: 147.7958925319403
Iteration: 8, Func. Count: 105, Neg. LLF: 147.69530092267044
Iteration: 9, Func. Count: 117, Neg. LLF: 147.69210567926805
Iteration: 10, Func. Count: 129, Neg. LLF: 147.69201752292258
Iteration: 11, Func. Count: 141, Neg. LLF: 147.69200267759257
Iteration: 12, Func. Count: 153, Neg. LLF: 147.691970416104
Iteration: 13, Func. Count: 165, Neg. LLF: 147.69196222412765
Iteration: 14, Func. Count: 177, Neg. LLF: 147.69196071500235
Iteration: 15, Func. Count: 188, Neg. LLF: 147.69196071503873
Optimization terminated successfully (Exit mode 0)
Current function value: 147.69196071500235
Iterations: 15
Function evaluations: 188
Gradient evaluations: 15
Iteration: 1, Func. Count: 14, Neg. LLF: 9877.694474922568
Iteration: 2, Func. Count: 29, Neg. LLF: 174.29476257120425
Iteration: 3, Func. Count: 43, Neg. LLF: 152.2467955827216
Iteration: 4, Func. Count: 57, Neg. LLF: 147.73598640702855
Iteration: 5, Func. Count: 70, Neg. LLF: 147.31386518928156
Iteration: 6, Func. Count: 83, Neg. LLF: 149.39144639763666
Iteration: 7, Func. Count: 98, Neg. LLF: 147.20349018225002
Iteration: 8, Func. Count: 111, Neg. LLF: 147.17921531209487
Iteration: 9, Func. Count: 124, Neg. LLF: 147.17028037397154
Iteration: 10, Func. Count: 137, Neg. LLF: 147.16266410616728
Iteration: 11, Func. Count: 150, Neg. LLF: 147.16064004780975
Iteration: 12, Func. Count: 163, Neg. LLF: 147.16047215613742
Iteration: 13, Func. Count: 176, Neg. LLF: 147.1604594809514
Iteration: 14, Func. Count: 189, Neg. LLF: 147.16045817562537
Iteration: 15, Func. Count: 201, Neg. LLF: 147.1604581756535
Optimization terminated successfully (Exit mode 0)
Current function value: 147.16045817562537
Iterations: 15
Function evaluations: 201
Gradient evaluations: 15
Iteration: 1, Func. Count: 15, Neg. LLF: 414.8596146852921
Iteration: 2, Func. Count: 30, Neg. LLF: 163.20032421834588
Iteration: 3, Func. Count: 45, Neg. LLF: 156.03692697177618
Iteration: 4, Func. Count: 60, Neg. LLF: 148.0149982441287
Iteration: 5, Func. Count: 74, Neg. LLF: 147.5324021869692
Iteration: 6, Func. Count: 88, Neg. LLF: 150.82419482516602
Iteration: 7, Func. Count: 104, Neg. LLF: 147.3276732961558
Iteration: 8, Func. Count: 118, Neg. LLF: 147.23107553219515
Iteration: 9, Func. Count: 132, Neg. LLF: 147.18367459683105
Iteration: 10, Func. Count: 146, Neg. LLF: 147.1660745786778
Iteration: 11, Func. Count: 160, Neg. LLF: 147.16293163435262
Iteration: 12, Func. Count: 174, Neg. LLF: 147.1607480801414
Iteration: 13, Func. Count: 188, Neg. LLF: 147.16045920171274
Iteration: 14, Func. Count: 202, Neg. LLF: 147.1604581516804
Iteration: 15, Func. Count: 215, Neg. LLF: 147.16045815540102
Optimization terminated successfully (Exit mode 0)
Current function value: 147.1604581516804
Iterations: 15
Function evaluations: 215
Gradient evaluations: 15
Iteration: 1, Func. Count: 16, Neg. LLF: 419.6736124318661
Iteration: 2, Func. Count: 32, Neg. LLF: 170.08516131979007
Iteration: 3, Func. Count: 48, Neg. LLF: 177.14161988027695
Iteration: 4, Func. Count: 64, Neg. LLF: 148.37596669692667
Iteration: 5, Func. Count: 80, Neg. LLF: 147.44808914644256
Iteration: 6, Func. Count: 95, Neg. LLF: 147.80263453994442
Iteration: 7, Func. Count: 111, Neg. LLF: 148.33417259246147
Iteration: 8, Func. Count: 128, Neg. LLF: 147.25938369151666
Iteration: 9, Func. Count: 143, Neg. LLF: 147.28869820666745
Iteration: 10, Func. Count: 159, Neg. LLF: 147.25031577965385
Iteration: 11, Func. Count: 175, Neg. LLF: 147.1965997353428
Iteration: 12, Func. Count: 190, Neg. LLF: 147.17772626893796
Iteration: 13, Func. Count: 205, Neg. LLF: 147.16307466767802
Iteration: 14, Func. Count: 220, Neg. LLF: 147.15925577164276
Iteration: 15, Func. Count: 235, Neg. LLF: 147.15456552841317
Iteration: 16, Func. Count: 250, Neg. LLF: 147.1531355400023
Iteration: 17, Func. Count: 265, Neg. LLF: 147.1530208900245
Iteration: 18, Func. Count: 280, Neg. LLF: 147.1530030131628
Iteration: 19, Func. Count: 295, Neg. LLF: 147.15299702491234
Iteration: 20, Func. Count: 309, Neg. LLF: 147.1529970249134
Optimization terminated successfully (Exit mode 0)
Current function value: 147.15299702491234
Iterations: 20
Function evaluations: 309
Gradient evaluations: 20
Iteration: 1, Func. Count: 6, Neg. LLF: 20706796.415722847
Iteration: 2, Func. Count: 13, Neg. LLF: 148.10169621208215
Iteration: 3, Func. Count: 19, Neg. LLF: 147.8178908177789
Iteration: 4, Func. Count: 24, Neg. LLF: 147.89921806151222
Iteration: 5, Func. Count: 30, Neg. LLF: 147.9493490667905
Iteration: 6, Func. Count: 36, Neg. LLF: 147.78905603728552
Iteration: 7, Func. Count: 41, Neg. LLF: 147.78843191119836
Iteration: 8, Func. Count: 46, Neg. LLF: 147.78841630184726
Iteration: 9, Func. Count: 51, Neg. LLF: 147.7884156363122
Optimization terminated successfully (Exit mode 0)
Current function value: 147.7884156363122
Iterations: 9
Function evaluations: 51
Gradient evaluations: 9
Iteration: 1, Func. Count: 5, Neg. LLF: 156.33496855334022
Iteration: 2, Func. Count: 10, Neg. LLF: 148.8409559115448
Iteration: 3, Func. Count: 14, Neg. LLF: 148.51787534074643
Iteration: 4, Func. Count: 19, Neg. LLF: 146.96744292309427
Iteration: 5, Func. Count: 23, Neg. LLF: 146.59623251907004
Iteration: 6, Func. Count: 27, Neg. LLF: 146.52244405890428
Iteration: 7, Func. Count: 31, Neg. LLF: 146.51418776038923
Iteration: 8, Func. Count: 35, Neg. LLF: 146.5139749226351
Iteration: 9, Func. Count: 39, Neg. LLF: 146.51397159716407
Iteration: 10, Func. Count: 42, Neg. LLF: 146.51397162429765
Optimization terminated successfully (Exit mode 0)
Current function value: 146.51397159716407
Iterations: 10
Function evaluations: 42
Gradient evaluations: 10
Iteration: 1, Func. Count: 6, Neg. LLF: 436.02280159940705
Iteration: 2, Func. Count: 13, Neg. LLF: 146.3377548368292
Iteration: 3, Func. Count: 18, Neg. LLF: 146.33424413242588
Iteration: 4, Func. Count: 23, Neg. LLF: 146.33364210290483
Iteration: 5, Func. Count: 28, Neg. LLF: 146.33362625273733
Iteration: 6, Func. Count: 33, Neg. LLF: 146.33359786016217
Iteration: 7, Func. Count: 38, Neg. LLF: 146.3335758062114
Iteration: 8, Func. Count: 43, Neg. LLF: 146.33357219753617
Iteration: 9, Func. Count: 47, Neg. LLF: 146.33357219789102
Optimization terminated successfully (Exit mode 0)
Current function value: 146.33357219753617
Iterations: 9
Function evaluations: 47
Gradient evaluations: 9
Iteration: 1, Func. Count: 7, Neg. LLF: 177.19224140170067
Iteration: 2, Func. Count: 15, Neg. LLF: 146.40018519258126
Iteration: 3, Func. Count: 21, Neg. LLF: 146.3934142369497
Iteration: 4, Func. Count: 27, Neg. LLF: 146.3868409091794
Iteration: 5, Func. Count: 33, Neg. LLF: 146.37942195997377
Iteration: 6, Func. Count: 39, Neg. LLF: 146.37846583942482
Iteration: 7, Func. Count: 45, Neg. LLF: 146.37434477778294
Iteration: 8, Func. Count: 51, Neg. LLF: 146.36979714218816
Iteration: 9, Func. Count: 57, Neg. LLF: 146.36733336023343
Iteration: 10, Func. Count: 63, Neg. LLF: 146.36378352204613
Iteration: 11, Func. Count: 69, Neg. LLF: 146.36206520447885
Iteration: 12, Func. Count: 75, Neg. LLF: 146.35756597914568
Iteration: 13, Func. Count: 81, Neg. LLF: 146.35278961342755
Iteration: 14, Func. Count: 87, Neg. LLF: 146.34981770533335
Iteration: 15, Func. Count: 93, Neg. LLF: 146.34930476467994
Iteration: 16, Func. Count: 99, Neg. LLF: 146.34928687100788
Iteration: 17, Func. Count: 105, Neg. LLF: 146.3492846653083
Iteration: 18, Func. Count: 110, Neg. LLF: 146.3492846650835
Optimization terminated successfully (Exit mode 0)
Current function value: 146.3492846653083
Iterations: 18
Function evaluations: 110
Gradient evaluations: 18
Iteration: 1, Func. Count: 8, Neg. LLF: 177.6193169041658
Iteration: 2, Func. Count: 17, Neg. LLF: 146.36624167148196
Iteration: 3, Func. Count: 24, Neg. LLF: 146.34740389121603
Iteration: 4, Func. Count: 31, Neg. LLF: 146.33065401487448
Iteration: 5, Func. Count: 38, Neg. LLF: 146.30885302242828
Iteration: 6, Func. Count: 45, Neg. LLF: 146.30795960835314
Iteration: 7, Func. Count: 52, Neg. LLF: 146.30731475591503
Iteration: 8, Func. Count: 59, Neg. LLF: 146.30721852006565
Iteration: 9, Func. Count: 66, Neg. LLF: 146.30712121553998
Iteration: 10, Func. Count: 73, Neg. LLF: 146.30698531019544
Iteration: 11, Func. Count: 80, Neg. LLF: 146.30665724661768
Iteration: 12, Func. Count: 87, Neg. LLF: 146.3062335520188
Iteration: 13, Func. Count: 94, Neg. LLF: 146.30593537664524
Iteration: 14, Func. Count: 101, Neg. LLF: 146.3058671617552
Iteration: 15, Func. Count: 108, Neg. LLF: 146.30586203695202
Iteration: 16, Func. Count: 114, Neg. LLF: 146.305862036974
Optimization terminated successfully (Exit mode 0)
Current function value: 146.30586203695202
Iterations: 16
Function evaluations: 114
Gradient evaluations: 16
Iteration: 1, Func. Count: 9, Neg. LLF: 177.76025183936002
Iteration: 2, Func. Count: 19, Neg. LLF: 146.36140097099056
Iteration: 3, Func. Count: 27, Neg. LLF: 146.34855786312866
Iteration: 4, Func. Count: 35, Neg. LLF: 146.33992628396373
Iteration: 5, Func. Count: 43, Neg. LLF: 146.32952381366854
Iteration: 6, Func. Count: 51, Neg. LLF: 146.31798475344036
Iteration: 7, Func. Count: 59, Neg. LLF: 146.30791358675052
Iteration: 8, Func. Count: 67, Neg. LLF: 146.3077818401969
Iteration: 9, Func. Count: 75, Neg. LLF: 146.30739291659927
Iteration: 10, Func. Count: 83, Neg. LLF: 146.30724178036616
Iteration: 11, Func. Count: 91, Neg. LLF: 146.30709227927912
Iteration: 12, Func. Count: 99, Neg. LLF: 146.3066538431985
Iteration: 13, Func. Count: 107, Neg. LLF: 146.30621468012197
Iteration: 14, Func. Count: 115, Neg. LLF: 146.305929396748
Iteration: 15, Func. Count: 123, Neg. LLF: 146.30586492974484
Iteration: 16, Func. Count: 131, Neg. LLF: 146.30586201063446
Iteration: 17, Func. Count: 138, Neg. LLF: 146.30586201311425
Optimization terminated successfully (Exit mode 0)
Current function value: 146.30586201063446
Iterations: 17
Function evaluations: 138
Gradient evaluations: 17
Iteration: 1, Func. Count: 6, Neg. LLF: 155.0964934104955
Iteration: 2, Func. Count: 12, Neg. LLF: 148.88922686835502
Iteration: 3, Func. Count: 17, Neg. LLF: 148.75536154110063
Iteration: 4, Func. Count: 23, Neg. LLF: 146.95719353825308
Iteration: 5, Func. Count: 28, Neg. LLF: 146.62835673847505
Iteration: 6, Func. Count: 33, Neg. LLF: 146.52394860401628
Iteration: 7, Func. Count: 38, Neg. LLF: 146.51428079287615
Iteration: 8, Func. Count: 43, Neg. LLF: 146.51397381207383
Iteration: 9, Func. Count: 48, Neg. LLF: 146.51397143880968
Iteration: 10, Func. Count: 52, Neg. LLF: 146.5139714814546
Optimization terminated successfully (Exit mode 0)
Current function value: 146.51397143880968
Iterations: 10
Function evaluations: 52
Gradient evaluations: 10
Iteration: 1, Func. Count: 7, Neg. LLF: 438.6496885680164
Iteration: 2, Func. Count: 15, Neg. LLF: 146.3362867651535
Iteration: 3, Func. Count: 21, Neg. LLF: 146.33440490935965
Iteration: 4, Func. Count: 27, Neg. LLF: 146.33364168976763
Iteration: 5, Func. Count: 33, Neg. LLF: 146.3336268983782
Iteration: 6, Func. Count: 39, Neg. LLF: 146.33358654246453
Iteration: 7, Func. Count: 45, Neg. LLF: 146.3335732958208
Iteration: 8, Func. Count: 51, Neg. LLF: 146.3335719896803
Iteration: 9, Func. Count: 56, Neg. LLF: 146.3335719898008
Optimization terminated successfully (Exit mode 0)
Current function value: 146.3335719896803
Iterations: 9
Function evaluations: 56
Gradient evaluations: 9
Iteration: 1, Func. Count: 8, Neg. LLF: 177.19005274383218
Iteration: 2, Func. Count: 17, Neg. LLF: 146.40040285812145
Iteration: 3, Func. Count: 24, Neg. LLF: 146.39527299927647
Iteration: 4, Func. Count: 31, Neg. LLF: 146.3838361307245
Iteration: 5, Func. Count: 38, Neg. LLF: 146.3781990728912
Iteration: 6, Func. Count: 45, Neg. LLF: 146.37723035660994
Iteration: 7, Func. Count: 52, Neg. LLF: 146.37324240669503
Iteration: 8, Func. Count: 59, Neg. LLF: 146.36912656460424
Iteration: 9, Func. Count: 66, Neg. LLF: 146.3678168143829
Iteration: 10, Func. Count: 73, Neg. LLF: 146.36286557249088
Iteration: 11, Func. Count: 80, Neg. LLF: 146.35951522568277
Iteration: 12, Func. Count: 87, Neg. LLF: 146.35305274355088
Iteration: 13, Func. Count: 94, Neg. LLF: 146.35037421147237
Iteration: 14, Func. Count: 101, Neg. LLF: 146.34929224174718
Iteration: 15, Func. Count: 108, Neg. LLF: 146.3492876892049
Iteration: 16, Func. Count: 115, Neg. LLF: 146.3492843412605
Iteration: 17, Func. Count: 121, Neg. LLF: 146.34928434126084
Optimization terminated successfully (Exit mode 0)
Current function value: 146.3492843412605
Iterations: 17
Function evaluations: 121
Gradient evaluations: 17
Iteration: 1, Func. Count: 9, Neg. LLF: 177.61841955154665
Iteration: 2, Func. Count: 19, Neg. LLF: 146.36478096166033
Iteration: 3, Func. Count: 27, Neg. LLF: 146.34166764099515
Iteration: 4, Func. Count: 35, Neg. LLF: 146.3150469636669
Iteration: 5, Func. Count: 43, Neg. LLF: 146.30784457478927
Iteration: 6, Func. Count: 51, Neg. LLF: 146.30752748869853
Iteration: 7, Func. Count: 59, Neg. LLF: 146.30746258351328
Iteration: 8, Func. Count: 67, Neg. LLF: 146.3071638581058
Iteration: 9, Func. Count: 75, Neg. LLF: 146.30684296011
Iteration: 10, Func. Count: 83, Neg. LLF: 146.3063161320565
Iteration: 11, Func. Count: 91, Neg. LLF: 146.30598346703894
Iteration: 12, Func. Count: 99, Neg. LLF: 146.3058707251697
Iteration: 13, Func. Count: 107, Neg. LLF: 146.3058620962748
Iteration: 14, Func. Count: 114, Neg. LLF: 146.30586209633074
Optimization terminated successfully (Exit mode 0)
Current function value: 146.3058620962748
Iterations: 14
Function evaluations: 114
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 177.74746524518088
Iteration: 2, Func. Count: 21, Neg. LLF: 146.35955976170783
Iteration: 3, Func. Count: 30, Neg. LLF: 146.34507937402103
Iteration: 4, Func. Count: 39, Neg. LLF: 146.33098042567445
Iteration: 5, Func. Count: 48, Neg. LLF: 146.32519333642853
Iteration: 6, Func. Count: 57, Neg. LLF: 146.3102617213529
Iteration: 7, Func. Count: 66, Neg. LLF: 146.3087682138938
Iteration: 8, Func. Count: 75, Neg. LLF: 146.30745030475327
Iteration: 9, Func. Count: 84, Neg. LLF: 146.30739653881486
Iteration: 10, Func. Count: 93, Neg. LLF: 146.30712572216945
Iteration: 11, Func. Count: 102, Neg. LLF: 146.30620576837637
Iteration: 12, Func. Count: 111, Neg. LLF: 146.30586781079828
Iteration: 13, Func. Count: 120, Neg. LLF: 146.3058620150753
Iteration: 14, Func. Count: 128, Neg. LLF: 146.30586201754073
Optimization terminated successfully (Exit mode 0)
Current function value: 146.3058620150753
Iterations: 14
Function evaluations: 128
Gradient evaluations: 14
Iteration: 1, Func. Count: 7, Neg. LLF: 155.57042925856481
Iteration: 2, Func. Count: 15, Neg. LLF: 151.8572229934522
Iteration: 3, Func. Count: 22, Neg. LLF: 148.7005056547568
Iteration: 4, Func. Count: 28, Neg. LLF: 146.61531278106278
Iteration: 5, Func. Count: 34, Neg. LLF: 146.4836627908807
Iteration: 6, Func. Count: 40, Neg. LLF: 146.44699100479866
Iteration: 7, Func. Count: 46, Neg. LLF: 146.4150714713037
Iteration: 8, Func. Count: 52, Neg. LLF: 146.4144463724161
Iteration: 9, Func. Count: 58, Neg. LLF: 146.4144390429106
Iteration: 10, Func. Count: 63, Neg. LLF: 146.4144390429193
Optimization terminated successfully (Exit mode 0)
Current function value: 146.4144390429106
Iterations: 10
Function evaluations: 63
Gradient evaluations: 10
Iteration: 1, Func. Count: 8, Neg. LLF: 443.0178199157134
Iteration: 2, Func. Count: 17, Neg. LLF: 146.33570394671938
Iteration: 3, Func. Count: 24, Neg. LLF: 146.3345651035919
Iteration: 4, Func. Count: 31, Neg. LLF: 146.3336492048033
Iteration: 5, Func. Count: 38, Neg. LLF: 146.333633042056
Iteration: 6, Func. Count: 45, Neg. LLF: 146.33357807153575
Iteration: 7, Func. Count: 52, Neg. LLF: 146.33357225639202
Iteration: 8, Func. Count: 58, Neg. LLF: 146.33357225667
Optimization terminated successfully (Exit mode 0)
Current function value: 146.33357225639202
Iterations: 8
Function evaluations: 58
Gradient evaluations: 8
Iteration: 1, Func. Count: 9, Neg. LLF: 166.8691241067227
Iteration: 2, Func. Count: 19, Neg. LLF: 177.10463088347507
Iteration: 3, Func. Count: 29, Neg. LLF: 146.32345235645545
Iteration: 4, Func. Count: 38, Neg. LLF: 146.26857143018566
Iteration: 5, Func. Count: 46, Neg. LLF: 146.2679655246196
Iteration: 6, Func. Count: 54, Neg. LLF: 146.26545305119845
Iteration: 7, Func. Count: 62, Neg. LLF: 146.2627628694437
Iteration: 8, Func. Count: 70, Neg. LLF: 146.25641237435295
Iteration: 9, Func. Count: 78, Neg. LLF: 146.2561170949282
Iteration: 10, Func. Count: 86, Neg. LLF: 146.2546476129635
Iteration: 11, Func. Count: 94, Neg. LLF: 146.25109896026257
Iteration: 12, Func. Count: 102, Neg. LLF: 146.24941139232507
Iteration: 13, Func. Count: 110, Neg. LLF: 146.2486987278109
Iteration: 14, Func. Count: 118, Neg. LLF: 146.24840776837812
Iteration: 15, Func. Count: 126, Neg. LLF: 146.24828450952916
Iteration: 16, Func. Count: 134, Neg. LLF: 146.24827527339082
Iteration: 17, Func. Count: 142, Neg. LLF: 146.24827279550044
Iteration: 18, Func. Count: 149, Neg. LLF: 146.2482727953713
Optimization terminated successfully (Exit mode 0)
Current function value: 146.24827279550044
Iterations: 18
Function evaluations: 149
Gradient evaluations: 18
Iteration: 1, Func. Count: 10, Neg. LLF: 166.2603715969561
Iteration: 2, Func. Count: 21, Neg. LLF: 149.79782175131544
Iteration: 3, Func. Count: 32, Neg. LLF: 146.28978444146256
Iteration: 4, Func. Count: 41, Neg. LLF: 146.26090900632306
Iteration: 5, Func. Count: 50, Neg. LLF: 146.25141522257903
Iteration: 6, Func. Count: 59, Neg. LLF: 146.24472246670163
Iteration: 7, Func. Count: 68, Neg. LLF: 146.24026264943782
Iteration: 8, Func. Count: 77, Neg. LLF: 146.23802405892332
Iteration: 9, Func. Count: 86, Neg. LLF: 146.23503931627073
Iteration: 10, Func. Count: 95, Neg. LLF: 146.23147812153513
Iteration: 11, Func. Count: 104, Neg. LLF: 146.22325284564852
Iteration: 12, Func. Count: 113, Neg. LLF: 146.21504303712166
Iteration: 13, Func. Count: 122, Neg. LLF: 146.20790777047225
Iteration: 14, Func. Count: 131, Neg. LLF: 146.20576587155242
Iteration: 15, Func. Count: 140, Neg. LLF: 146.2055579353127
Iteration: 16, Func. Count: 149, Neg. LLF: 146.20552240945713
Iteration: 17, Func. Count: 158, Neg. LLF: 146.2055127277393
Iteration: 18, Func. Count: 167, Neg. LLF: 146.20551170367867
Iteration: 19, Func. Count: 175, Neg. LLF: 146.20551170370769
Optimization terminated successfully (Exit mode 0)
Current function value: 146.20551170367867
Iterations: 19
Function evaluations: 175
Gradient evaluations: 19
Iteration: 1, Func. Count: 11, Neg. LLF: 177.78955530960985
Iteration: 2, Func. Count: 23, Neg. LLF: 157.15387519211947
Iteration: 3, Func. Count: 35, Neg. LLF: 146.28778523451308
Iteration: 4, Func. Count: 45, Neg. LLF: 146.25432321337848
Iteration: 5, Func. Count: 55, Neg. LLF: 146.24914454103342
Iteration: 6, Func. Count: 65, Neg. LLF: 146.24801882419646
Iteration: 7, Func. Count: 76, Neg. LLF: 146.23839253654072
Iteration: 8, Func. Count: 86, Neg. LLF: 146.23353084565198
Iteration: 9, Func. Count: 96, Neg. LLF: 146.22802303338648
Iteration: 10, Func. Count: 106, Neg. LLF: 146.21892039156435
Iteration: 11, Func. Count: 116, Neg. LLF: 146.21217673794445
Iteration: 12, Func. Count: 126, Neg. LLF: 146.2073725913474
Iteration: 13, Func. Count: 136, Neg. LLF: 146.20556833021615
Iteration: 14, Func. Count: 146, Neg. LLF: 146.20552186372421
Iteration: 15, Func. Count: 156, Neg. LLF: 146.20551707616016
Iteration: 16, Func. Count: 166, Neg. LLF: 146.20551220318703
Iteration: 17, Func. Count: 175, Neg. LLF: 146.20551221217255
Optimization terminated successfully (Exit mode 0)
Current function value: 146.20551220318703
Iterations: 17
Function evaluations: 175
Gradient evaluations: 17
Iteration: 1, Func. Count: 8, Neg. LLF: 154.73892807883286
Iteration: 2, Func. Count: 17, Neg. LLF: 151.86535017571188
Iteration: 3, Func. Count: 25, Neg. LLF: 148.41182603940686
Iteration: 4, Func. Count: 32, Neg. LLF: 146.5198639758904
Iteration: 5, Func. Count: 39, Neg. LLF: 146.44709039727258
Iteration: 6, Func. Count: 46, Neg. LLF: 146.42222096490949
Iteration: 7, Func. Count: 53, Neg. LLF: 146.41679172761454
Iteration: 8, Func. Count: 60, Neg. LLF: 146.4144488435615
Iteration: 9, Func. Count: 67, Neg. LLF: 146.41443917670642
Iteration: 10, Func. Count: 73, Neg. LLF: 146.41443918803952
Optimization terminated successfully (Exit mode 0)
Current function value: 146.41443917670642
Iterations: 10
Function evaluations: 73
Gradient evaluations: 10
Iteration: 1, Func. Count: 9, Neg. LLF: 161.9457385851175
Iteration: 2, Func. Count: 19, Neg. LLF: 163.6944915243929
Iteration: 3, Func. Count: 29, Neg. LLF: 146.57838788959165
Iteration: 4, Func. Count: 38, Neg. LLF: 146.23215810516183
Iteration: 5, Func. Count: 46, Neg. LLF: 146.21892138361446
Iteration: 6, Func. Count: 54, Neg. LLF: 146.2178392476723
Iteration: 7, Func. Count: 62, Neg. LLF: 146.21516061084347
Iteration: 8, Func. Count: 70, Neg. LLF: 146.20877987334433
Iteration: 9, Func. Count: 78, Neg. LLF: 146.205017175142
Iteration: 10, Func. Count: 86, Neg. LLF: 146.20286192897362
Iteration: 11, Func. Count: 94, Neg. LLF: 146.20273730826244
Iteration: 12, Func. Count: 102, Neg. LLF: 146.2027358704709
Iteration: 13, Func. Count: 109, Neg. LLF: 146.20273587039472
Optimization terminated successfully (Exit mode 0)
Current function value: 146.2027358704709
Iterations: 13
Function evaluations: 109
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 166.91619159572008
Iteration: 2, Func. Count: 21, Neg. LLF: 177.16492842131498
Iteration: 3, Func. Count: 32, Neg. LLF: 146.31724597797432
Iteration: 4, Func. Count: 42, Neg. LLF: 146.2686263852576
Iteration: 5, Func. Count: 51, Neg. LLF: 146.26798731586828
Iteration: 6, Func. Count: 60, Neg. LLF: 146.26522466891092
Iteration: 7, Func. Count: 69, Neg. LLF: 146.26225098527303
Iteration: 8, Func. Count: 78, Neg. LLF: 146.25622512532442
Iteration: 9, Func. Count: 87, Neg. LLF: 146.25590549490474
Iteration: 10, Func. Count: 96, Neg. LLF: 146.2546116034543
Iteration: 11, Func. Count: 105, Neg. LLF: 146.2532482998306
Iteration: 12, Func. Count: 114, Neg. LLF: 146.25054506558286
Iteration: 13, Func. Count: 123, Neg. LLF: 146.24901607946944
Iteration: 14, Func. Count: 132, Neg. LLF: 146.24855931132421
Iteration: 15, Func. Count: 141, Neg. LLF: 146.24831981338627
Iteration: 16, Func. Count: 150, Neg. LLF: 146.2488425700033
Iteration: 17, Func. Count: 160, Neg. LLF: 146.24824214990167
Iteration: 18, Func. Count: 169, Neg. LLF: 146.24823978957704
Iteration: 19, Func. Count: 177, Neg. LLF: 146.24823978954495
Optimization terminated successfully (Exit mode 0)
Current function value: 146.24823978957704
Iterations: 19
Function evaluations: 177
Gradient evaluations: 19
Iteration: 1, Func. Count: 11, Neg. LLF: 166.22466827119447
Iteration: 2, Func. Count: 23, Neg. LLF: 149.4999521902302
Iteration: 3, Func. Count: 35, Neg. LLF: 146.2915444603212
Iteration: 4, Func. Count: 45, Neg. LLF: 146.2640808814044
Iteration: 5, Func. Count: 55, Neg. LLF: 146.253403228383
Iteration: 6, Func. Count: 65, Neg. LLF: 146.2542992834323
Iteration: 7, Func. Count: 76, Neg. LLF: 146.24065247485672
Iteration: 8, Func. Count: 86, Neg. LLF: 146.2359035727519
Iteration: 9, Func. Count: 96, Neg. LLF: 146.23370144245354
Iteration: 10, Func. Count: 106, Neg. LLF: 146.22950905201935
Iteration: 11, Func. Count: 116, Neg. LLF: 146.2229476715133
Iteration: 12, Func. Count: 126, Neg. LLF: 146.2142122370561
Iteration: 13, Func. Count: 136, Neg. LLF: 146.20776923263833
Iteration: 14, Func. Count: 146, Neg. LLF: 146.20582868840685
Iteration: 15, Func. Count: 156, Neg. LLF: 146.20557779869188
Iteration: 16, Func. Count: 166, Neg. LLF: 146.2055231784998
Iteration: 17, Func. Count: 176, Neg. LLF: 146.2055126487793
Iteration: 18, Func. Count: 186, Neg. LLF: 146.20551165880408
Optimization terminated successfully (Exit mode 0)
Current function value: 146.20551165880408
Iterations: 18
Function evaluations: 186
Gradient evaluations: 18
Iteration: 1, Func. Count: 12, Neg. LLF: 177.7956264451262
Iteration: 2, Func. Count: 25, Neg. LLF: 157.8512730779412
Iteration: 3, Func. Count: 38, Neg. LLF: 146.2869176273452
Iteration: 4, Func. Count: 49, Neg. LLF: 146.25543353677494
Iteration: 5, Func. Count: 60, Neg. LLF: 146.25053292226238
Iteration: 6, Func. Count: 71, Neg. LLF: 146.24604686715514
Iteration: 7, Func. Count: 82, Neg. LLF: 146.23892429817596
Iteration: 8, Func. Count: 93, Neg. LLF: 146.23703577921626
Iteration: 9, Func. Count: 104, Neg. LLF: 146.23346319015064
Iteration: 10, Func. Count: 115, Neg. LLF: 146.22862342767078
Iteration: 11, Func. Count: 126, Neg. LLF: 146.21649846840938
Iteration: 12, Func. Count: 137, Neg. LLF: 146.21101383824458
Iteration: 13, Func. Count: 148, Neg. LLF: 146.20688868323927
Iteration: 14, Func. Count: 159, Neg. LLF: 146.20555747835385
Iteration: 15, Func. Count: 170, Neg. LLF: 146.20551227054398
Iteration: 16, Func. Count: 180, Neg. LLF: 146.20551227945086
Optimization terminated successfully (Exit mode 0)
Current function value: 146.20551227054398
Iterations: 16
Function evaluations: 180
Gradient evaluations: 16
Iteration: 1, Func. Count: 5, Neg. LLF: 149.3682863481197
Iteration: 2, Func. Count: 10, Neg. LLF: 148.88681177491392
Iteration: 3, Func. Count: 15, Neg. LLF: 147.6183692332066
Iteration: 4, Func. Count: 19, Neg. LLF: 146.98181822848392
Iteration: 5, Func. Count: 23, Neg. LLF: 146.69917050792563
Iteration: 6, Func. Count: 27, Neg. LLF: 146.52900613684582
Iteration: 7, Func. Count: 31, Neg. LLF: 146.51456549294647
Iteration: 8, Func. Count: 35, Neg. LLF: 146.51397449317074
Iteration: 9, Func. Count: 39, Neg. LLF: 146.51397133217955
Iteration: 10, Func. Count: 42, Neg. LLF: 146.51397136320475
Optimization terminated successfully (Exit mode 0)
Current function value: 146.51397133217955
Iterations: 10
Function evaluations: 42
Gradient evaluations: 10
Iteration: 1, Func. Count: 6, Neg. LLF: 428.670771716021
Iteration: 2, Func. Count: 13, Neg. LLF: 146.3460879528286
Iteration: 3, Func. Count: 18, Neg. LLF: 146.3336745471163
Iteration: 4, Func. Count: 23, Neg. LLF: 146.33363119303345
Iteration: 5, Func. Count: 28, Neg. LLF: 146.3336175668699
Iteration: 6, Func. Count: 33, Neg. LLF: 146.333576799262
Iteration: 7, Func. Count: 38, Neg. LLF: 146.3335722929928
Iteration: 8, Func. Count: 42, Neg. LLF: 146.3335722930608
Optimization terminated successfully (Exit mode 0)
Current function value: 146.3335722929928
Iterations: 8
Function evaluations: 42
Gradient evaluations: 8
Iteration: 1, Func. Count: 7, Neg. LLF: 177.2147874205929
Iteration: 2, Func. Count: 15, Neg. LLF: 146.4014887347582
Iteration: 3, Func. Count: 21, Neg. LLF: 146.39431753743804
Iteration: 4, Func. Count: 27, Neg. LLF: 146.38855247544356
Iteration: 5, Func. Count: 33, Neg. LLF: 146.37590087569149
Iteration: 6, Func. Count: 39, Neg. LLF: 146.3662245715951
Iteration: 7, Func. Count: 45, Neg. LLF: 146.35077430829742
Iteration: 8, Func. Count: 51, Neg. LLF: 146.34979877002633
Iteration: 9, Func. Count: 57, Neg. LLF: 146.34902762293711
Iteration: 10, Func. Count: 63, Neg. LLF: 146.34761426888466
Iteration: 11, Func. Count: 69, Neg. LLF: 146.3444020187275
Iteration: 12, Func. Count: 75, Neg. LLF: 146.33842306670255
Iteration: 13, Func. Count: 81, Neg. LLF: 146.33254846411205
Iteration: 14, Func. Count: 87, Neg. LLF: 146.32788931020434
Iteration: 15, Func. Count: 93, Neg. LLF: 146.32702428918077
Iteration: 16, Func. Count: 99, Neg. LLF: 146.3269865732506
Iteration: 17, Func. Count: 105, Neg. LLF: 146.3269846363797
Iteration: 18, Func. Count: 110, Neg. LLF: 146.32698463634233
Optimization terminated successfully (Exit mode 0)
Current function value: 146.3269846363797
Iterations: 18
Function evaluations: 110
Gradient evaluations: 18
Iteration: 1, Func. Count: 8, Neg. LLF: 177.58688924638352
Iteration: 2, Func. Count: 17, Neg. LLF: 146.36952837598417
Iteration: 3, Func. Count: 24, Neg. LLF: 146.35617844194763
Iteration: 4, Func. Count: 31, Neg. LLF: 146.34261688382347
Iteration: 5, Func. Count: 38, Neg. LLF: 146.31178242984478
Iteration: 6, Func. Count: 45, Neg. LLF: 146.30893235659528
Iteration: 7, Func. Count: 52, Neg. LLF: 146.30706143004696
Iteration: 8, Func. Count: 59, Neg. LLF: 146.3070230120806
Iteration: 9, Func. Count: 66, Neg. LLF: 146.30683728314133
Iteration: 10, Func. Count: 73, Neg. LLF: 146.3061810155025
Iteration: 11, Func. Count: 80, Neg. LLF: 146.3058659457972
Iteration: 12, Func. Count: 87, Neg. LLF: 146.305862009484
Iteration: 13, Func. Count: 93, Neg. LLF: 146.30586200949998
Optimization terminated successfully (Exit mode 0)
Current function value: 146.305862009484
Iterations: 13
Function evaluations: 93
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 177.69303003918253
Iteration: 2, Func. Count: 19, Neg. LLF: 146.36454576355425
Iteration: 3, Func. Count: 27, Neg. LLF: 146.35552212901842
Iteration: 4, Func. Count: 35, Neg. LLF: 146.34496700897157
Iteration: 5, Func. Count: 43, Neg. LLF: 146.32868002803932
Iteration: 6, Func. Count: 51, Neg. LLF: 146.32250856601516
Iteration: 7, Func. Count: 59, Neg. LLF: 146.30756171713236
Iteration: 8, Func. Count: 67, Neg. LLF: 146.30739157676328
Iteration: 9, Func. Count: 75, Neg. LLF: 146.30712052978672
Iteration: 10, Func. Count: 83, Neg. LLF: 146.3070552880859
Iteration: 11, Func. Count: 91, Neg. LLF: 146.30668323664455
Iteration: 12, Func. Count: 99, Neg. LLF: 146.30595020341846
Iteration: 13, Func. Count: 107, Neg. LLF: 146.30587809596497
Iteration: 14, Func. Count: 115, Neg. LLF: 146.30586200804282
Iteration: 15, Func. Count: 122, Neg. LLF: 146.3058620105062
Optimization terminated successfully (Exit mode 0)
Current function value: 146.30586200804282
Iterations: 15
Function evaluations: 122
Gradient evaluations: 15
Iteration: 1, Func. Count: 6, Neg. LLF: 149.895008864467
Iteration: 2, Func. Count: 12, Neg. LLF: 151.36550311773277
Iteration: 3, Func. Count: 18, Neg. LLF: 148.36390506861892
Iteration: 4, Func. Count: 24, Neg. LLF: 147.47600104412624
Iteration: 5, Func. Count: 29, Neg. LLF: 147.1744378422857
Iteration: 6, Func. Count: 34, Neg. LLF: 146.72081708053386
Iteration: 7, Func. Count: 39, Neg. LLF: 146.56412559334507
Iteration: 8, Func. Count: 44, Neg. LLF: 146.53996380635147
Iteration: 9, Func. Count: 49, Neg. LLF: 146.51505459458022
Iteration: 10, Func. Count: 54, Neg. LLF: 146.51420350596146
Iteration: 11, Func. Count: 59, Neg. LLF: 146.51397267179678
Iteration: 12, Func. Count: 64, Neg. LLF: 146.5139713475548
Iteration: 13, Func. Count: 68, Neg. LLF: 146.51397137466202
Optimization terminated successfully (Exit mode 0)
Current function value: 146.5139713475548
Iterations: 13
Function evaluations: 68
Gradient evaluations: 13
Iteration: 1, Func. Count: 7, Neg. LLF: 164.76118241727403
Iteration: 2, Func. Count: 15, Neg. LLF: 152.52910344078165
Iteration: 3, Func. Count: 23, Neg. LLF: 146.3952930487309
Iteration: 4, Func. Count: 29, Neg. LLF: 146.38693807299876
Iteration: 5, Func. Count: 35, Neg. LLF: 146.3867252198528
Iteration: 6, Func. Count: 41, Neg. LLF: 146.38620995026034
Iteration: 7, Func. Count: 47, Neg. LLF: 146.38493677827142
Iteration: 8, Func. Count: 53, Neg. LLF: 146.381413874553
Iteration: 9, Func. Count: 59, Neg. LLF: 146.3690648138432
Iteration: 10, Func. Count: 65, Neg. LLF: 146.44739905527186
Iteration: 11, Func. Count: 72, Neg. LLF: 146.62168908725224
Iteration: 12, Func. Count: 79, Neg. LLF: 146.45265636624265
Iteration: 13, Func. Count: 86, Neg. LLF: 146.34766431886234
Iteration: 14, Func. Count: 93, Neg. LLF: 146.33597050228084
Iteration: 15, Func. Count: 100, Neg. LLF: 146.33047614358145
Iteration: 16, Func. Count: 107, Neg. LLF: 146.3282883765356
Iteration: 17, Func. Count: 114, Neg. LLF: 146.32592510965057
Iteration: 18, Func. Count: 120, Neg. LLF: 146.32592458483325
Optimization terminated successfully (Exit mode 0)
Current function value: 146.32592458483325
Iterations: 18
Function evaluations: 120
Gradient evaluations: 18
Iteration: 1, Func. Count: 8, Neg. LLF: 176.93935662230894
Iteration: 2, Func. Count: 17, Neg. LLF: 147.57314933509826
Iteration: 3, Func. Count: 25, Neg. LLF: 146.38371897079716
Iteration: 4, Func. Count: 32, Neg. LLF: 146.37547520931872
Iteration: 5, Func. Count: 39, Neg. LLF: 146.37461686949248
Iteration: 6, Func. Count: 46, Neg. LLF: 146.37237231264305
Iteration: 7, Func. Count: 53, Neg. LLF: 146.3692608988009
Iteration: 8, Func. Count: 60, Neg. LLF: 146.35548795221385
Iteration: 9, Func. Count: 67, Neg. LLF: 146.35042883021623
Iteration: 10, Func. Count: 74, Neg. LLF: 146.34557094330168
Iteration: 11, Func. Count: 81, Neg. LLF: 146.3408330729146
Iteration: 12, Func. Count: 88, Neg. LLF: 146.34011943428123
Iteration: 13, Func. Count: 95, Neg. LLF: 146.33960960303065
Iteration: 14, Func. Count: 102, Neg. LLF: 146.33884485838675
Iteration: 15, Func. Count: 109, Neg. LLF: 146.33657197772
Iteration: 16, Func. Count: 116, Neg. LLF: 146.33129353357302
Iteration: 17, Func. Count: 123, Neg. LLF: 146.31947452055502
Iteration: 18, Func. Count: 130, Neg. LLF: 146.2919494376074
Iteration: 19, Func. Count: 137, Neg. LLF: 146.24850372890256
Iteration: 20, Func. Count: 144, Neg. LLF: 146.21736901863378
Iteration: 21, Func. Count: 151, Neg. LLF: 146.2342255501773
Iteration: 22, Func. Count: 159, Neg. LLF: 146.22309517409508
Iteration: 23, Func. Count: 167, Neg. LLF: 146.22398218324597
Iteration: 24, Func. Count: 175, Neg. LLF: 18379531.34898344
Iteration: 25, Func. Count: 186, Neg. LLF: 146.2093972341832
Iteration: 26, Func. Count: 194, Neg. LLF: 146.2074566013523
Iteration: 27, Func. Count: 201, Neg. LLF: 146.20624707070124
Iteration: 28, Func. Count: 208, Neg. LLF: 146.20619362162734
Iteration: 29, Func. Count: 215, Neg. LLF: 146.20618281460392
Iteration: 30, Func. Count: 221, Neg. LLF: 146.2061828146224
Optimization terminated successfully (Exit mode 0)
Current function value: 146.20618281460392
Iterations: 31
Function evaluations: 221
Gradient evaluations: 30
Iteration: 1, Func. Count: 9, Neg. LLF: 177.2981681882484
Iteration: 2, Func. Count: 19, Neg. LLF: 146.37158434854015
Iteration: 3, Func. Count: 27, Neg. LLF: 146.35759063831935
Iteration: 4, Func. Count: 35, Neg. LLF: 146.35531909907806
Iteration: 5, Func. Count: 43, Neg. LLF: 146.34881871373221
Iteration: 6, Func. Count: 51, Neg. LLF: 146.34820804282847
Iteration: 7, Func. Count: 59, Neg. LLF: 146.3476118978181
Iteration: 8, Func. Count: 67, Neg. LLF: 146.3458676782532
Iteration: 9, Func. Count: 75, Neg. LLF: 146.34276167922337
Iteration: 10, Func. Count: 83, Neg. LLF: 146.33895825460732
Iteration: 11, Func. Count: 91, Neg. LLF: 146.33584741471756
Iteration: 12, Func. Count: 99, Neg. LLF: 146.33434463316468
Iteration: 13, Func. Count: 107, Neg. LLF: 146.33419268756404
Iteration: 14, Func. Count: 115, Neg. LLF: 146.3341067028094
Iteration: 15, Func. Count: 123, Neg. LLF: 146.3340637756472
Iteration: 16, Func. Count: 131, Neg. LLF: 146.33406149866696
Iteration: 17, Func. Count: 138, Neg. LLF: 146.3340614986195
Optimization terminated successfully (Exit mode 0)
Current function value: 146.33406149866696
Iterations: 17
Function evaluations: 138
Gradient evaluations: 17
Iteration: 1, Func. Count: 10, Neg. LLF: 177.42533612014864
Iteration: 2, Func. Count: 21, Neg. LLF: 146.3664458898954
Iteration: 3, Func. Count: 30, Neg. LLF: 146.3572092064149
Iteration: 4, Func. Count: 39, Neg. LLF: 146.34978889028264
Iteration: 5, Func. Count: 48, Neg. LLF: 146.33634584796653
Iteration: 6, Func. Count: 57, Neg. LLF: 146.3272614799333
Iteration: 7, Func. Count: 66, Neg. LLF: 146.31555689851075
Iteration: 8, Func. Count: 75, Neg. LLF: 146.3075562304051
Iteration: 9, Func. Count: 84, Neg. LLF: 146.30749468561675
Iteration: 10, Func. Count: 93, Neg. LLF: 146.30721616691912
Iteration: 11, Func. Count: 102, Neg. LLF: 146.30685374437942
Iteration: 12, Func. Count: 111, Neg. LLF: 146.30663022707319
Iteration: 13, Func. Count: 120, Neg. LLF: 146.30613832811585
Iteration: 14, Func. Count: 129, Neg. LLF: 146.30592381085359
Iteration: 15, Func. Count: 138, Neg. LLF: 146.30586513460972
Iteration: 16, Func. Count: 147, Neg. LLF: 146.30586202741742
Iteration: 17, Func. Count: 156, Neg. LLF: 146.30778060227652
Optimization terminated successfully (Exit mode 0)
Current function value: 146.30586199554293
Iterations: 18
Function evaluations: 159
Gradient evaluations: 17
Iteration: 1, Func. Count: 7, Neg. LLF: 149.84006839038125
Iteration: 2, Func. Count: 14, Neg. LLF: 150.50887457335457
Iteration: 3, Func. Count: 21, Neg. LLF: 148.20780350940447
Iteration: 4, Func. Count: 27, Neg. LLF: 147.36778217114474
Iteration: 5, Func. Count: 33, Neg. LLF: 147.0099487584569
Iteration: 6, Func. Count: 39, Neg. LLF: 146.57268329298935
Iteration: 7, Func. Count: 45, Neg. LLF: 146.53823940118315
Iteration: 8, Func. Count: 51, Neg. LLF: 146.51495888478652
Iteration: 9, Func. Count: 57, Neg. LLF: 146.51402351536265
Iteration: 10, Func. Count: 63, Neg. LLF: 146.51397273549284
Iteration: 11, Func. Count: 69, Neg. LLF: 146.51397132966366
Iteration: 12, Func. Count: 74, Neg. LLF: 146.51397137230248
Optimization terminated successfully (Exit mode 0)
Current function value: 146.51397132966366
Iterations: 12
Function evaluations: 74
Gradient evaluations: 12
Iteration: 1, Func. Count: 8, Neg. LLF: 164.75701373270488
Iteration: 2, Func. Count: 17, Neg. LLF: 152.5388404808431
Iteration: 3, Func. Count: 26, Neg. LLF: 146.6418360692783
Iteration: 4, Func. Count: 34, Neg. LLF: 146.3902207357983
Iteration: 5, Func. Count: 41, Neg. LLF: 146.38218168326617
Iteration: 6, Func. Count: 48, Neg. LLF: 146.38188298023402
Iteration: 7, Func. Count: 55, Neg. LLF: 146.38138526106317
Iteration: 8, Func. Count: 62, Neg. LLF: 146.3783570211457
Iteration: 9, Func. Count: 69, Neg. LLF: 146.37352689760186
Iteration: 10, Func. Count: 76, Neg. LLF: 146.3690368928096
Iteration: 11, Func. Count: 83, Neg. LLF: 146.34354280813503
Iteration: 12, Func. Count: 90, Neg. LLF: 146.66540787029274
Iteration: 13, Func. Count: 98, Neg. LLF: 146.96964619773453
Iteration: 14, Func. Count: 106, Neg. LLF: 146.38225316993476
Iteration: 15, Func. Count: 114, Neg. LLF: 146.32786162707131
Iteration: 16, Func. Count: 122, Neg. LLF: 146.32614669408392
Iteration: 17, Func. Count: 130, Neg. LLF: 146.3259259164939
Iteration: 18, Func. Count: 137, Neg. LLF: 146.3259250633571
Optimization terminated successfully (Exit mode 0)
Current function value: 146.3259250633571
Iterations: 18
Function evaluations: 137
Gradient evaluations: 18
Iteration: 1, Func. Count: 9, Neg. LLF: 176.93712827920393
Iteration: 2, Func. Count: 19, Neg. LLF: 147.61159797298208
Iteration: 3, Func. Count: 28, Neg. LLF: 146.38338690145622
Iteration: 4, Func. Count: 36, Neg. LLF: 146.3762899781382
Iteration: 5, Func. Count: 44, Neg. LLF: 146.37516131513306
Iteration: 6, Func. Count: 52, Neg. LLF: 146.3720348569124
Iteration: 7, Func. Count: 60, Neg. LLF: 146.36660460562334
Iteration: 8, Func. Count: 68, Neg. LLF: 146.35521763899285
Iteration: 9, Func. Count: 76, Neg. LLF: 146.35272419329732
Iteration: 10, Func. Count: 84, Neg. LLF: 146.3490235295977
Iteration: 11, Func. Count: 92, Neg. LLF: 146.3469504213399
Iteration: 12, Func. Count: 100, Neg. LLF: 146.34615526949824
Iteration: 13, Func. Count: 108, Neg. LLF: 146.34563900221698
Iteration: 14, Func. Count: 116, Neg. LLF: 146.34467402641155
Iteration: 15, Func. Count: 124, Neg. LLF: 146.3424361666735
Iteration: 16, Func. Count: 132, Neg. LLF: 146.33724002489222
Iteration: 17, Func. Count: 140, Neg. LLF: 146.3265737667586
Iteration: 18, Func. Count: 148, Neg. LLF: 146.30110132147766
Iteration: 19, Func. Count: 156, Neg. LLF: 146.24113586471026
Iteration: 20, Func. Count: 164, Neg. LLF: 149.72890688736476
Iteration: 21, Func. Count: 174, Neg. LLF: 146.51254758549578
Iteration: 22, Func. Count: 183, Neg. LLF: 146.30161133979402
Iteration: 23, Func. Count: 192, Neg. LLF: 146.20636211035915
Iteration: 24, Func. Count: 200, Neg. LLF: 146.34526709944174
Iteration: 25, Func. Count: 210, Neg. LLF: 146.22905459138823
Iteration: 26, Func. Count: 220, Neg. LLF: 146.20850639479409
Iteration: 27, Func. Count: 229, Neg. LLF: 146.2061828142678
Iteration: 28, Func. Count: 236, Neg. LLF: 146.20618281427213
Optimization terminated successfully (Exit mode 0)
Current function value: 146.2061828142678
Iterations: 29
Function evaluations: 236
Gradient evaluations: 28
Iteration: 1, Func. Count: 10, Neg. LLF: 177.29720387148828
Iteration: 2, Func. Count: 21, Neg. LLF: 146.37085569793211
Iteration: 3, Func. Count: 30, Neg. LLF: 146.36103845952496
Iteration: 4, Func. Count: 39, Neg. LLF: 146.35707426093924
Iteration: 5, Func. Count: 48, Neg. LLF: 146.34874524568505
Iteration: 6, Func. Count: 57, Neg. LLF: 146.34685398478405
Iteration: 7, Func. Count: 66, Neg. LLF: 146.339971840206
Iteration: 8, Func. Count: 75, Neg. LLF: 146.33259243338804
Iteration: 9, Func. Count: 84, Neg. LLF: 146.31038806353354
Iteration: 10, Func. Count: 93, Neg. LLF: 146.3082006378967
Iteration: 11, Func. Count: 102, Neg. LLF: 146.30638311885076
Iteration: 12, Func. Count: 111, Neg. LLF: 146.3063660691555
Iteration: 13, Func. Count: 120, Neg. LLF: 146.30627458389685
Iteration: 14, Func. Count: 129, Neg. LLF: 146.30596951413185
Iteration: 15, Func. Count: 138, Neg. LLF: 146.30586319580493
Iteration: 16, Func. Count: 147, Neg. LLF: 146.30586206346877
Iteration: 17, Func. Count: 155, Neg. LLF: 146.30586206347903
Optimization terminated successfully (Exit mode 0)
Current function value: 146.30586206346877
Iterations: 17
Function evaluations: 155
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 177.41228564483598
Iteration: 2, Func. Count: 23, Neg. LLF: 146.36474614402925
Iteration: 3, Func. Count: 33, Neg. LLF: 146.35672504764878
Iteration: 4, Func. Count: 43, Neg. LLF: 146.34555602964505
Iteration: 5, Func. Count: 53, Neg. LLF: 146.32956954382036
Iteration: 6, Func. Count: 63, Neg. LLF: 146.3234904967715
Iteration: 7, Func. Count: 73, Neg. LLF: 146.30766777544883
Iteration: 8, Func. Count: 83, Neg. LLF: 146.30750875982156
Iteration: 9, Func. Count: 93, Neg. LLF: 146.3072685008787
Iteration: 10, Func. Count: 103, Neg. LLF: 146.30719459667603
Iteration: 11, Func. Count: 113, Neg. LLF: 146.3067690592534
Iteration: 12, Func. Count: 123, Neg. LLF: 146.30604565536993
Iteration: 13, Func. Count: 133, Neg. LLF: 146.30590430013612
Iteration: 14, Func. Count: 143, Neg. LLF: 146.3058620644371
Iteration: 15, Func. Count: 152, Neg. LLF: 146.30586206694502
Optimization terminated successfully (Exit mode 0)
Current function value: 146.3058620644371
Iterations: 15
Function evaluations: 152
Gradient evaluations: 15
Iteration: 1, Func. Count: 8, Neg. LLF: 154.5886409159576
Iteration: 2, Func. Count: 17, Neg. LLF: 149.0821848042538
Iteration: 3, Func. Count: 25, Neg. LLF: 147.72412025072754
Iteration: 4, Func. Count: 33, Neg. LLF: 147.04448649202757
Iteration: 5, Func. Count: 40, Neg. LLF: 146.77107219799896
Iteration: 6, Func. Count: 47, Neg. LLF: 146.4483643893506
Iteration: 7, Func. Count: 54, Neg. LLF: 146.38795280675765
Iteration: 8, Func. Count: 61, Neg. LLF: 146.37755010667524
Iteration: 9, Func. Count: 68, Neg. LLF: 146.3733435007461
Iteration: 10, Func. Count: 75, Neg. LLF: 146.37275544538488
Iteration: 11, Func. Count: 82, Neg. LLF: 146.37259748604504
Iteration: 12, Func. Count: 89, Neg. LLF: 146.3725907486407
Iteration: 13, Func. Count: 95, Neg. LLF: 146.37259074859185
Optimization terminated successfully (Exit mode 0)
Current function value: 146.3725907486407
Iterations: 13
Function evaluations: 95
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 167.1386782860058
Iteration: 2, Func. Count: 19, Neg. LLF: 154.75929642808458
Iteration: 3, Func. Count: 28, Neg. LLF: 150.03289884618297
Iteration: 4, Func. Count: 38, Neg. LLF: 147.74533491181376
Iteration: 5, Func. Count: 47, Neg. LLF: 146.0080317938061
Iteration: 6, Func. Count: 55, Neg. LLF: 146.00731154955645
Iteration: 7, Func. Count: 63, Neg. LLF: 146.00492497069874
Iteration: 8, Func. Count: 71, Neg. LLF: 146.0035661922284
Iteration: 9, Func. Count: 79, Neg. LLF: 146.0000950795214
Iteration: 10, Func. Count: 87, Neg. LLF: 145.99901018098197
Iteration: 11, Func. Count: 95, Neg. LLF: 145.99870189658702
Iteration: 12, Func. Count: 103, Neg. LLF: 145.99869773565442
Iteration: 13, Func. Count: 110, Neg. LLF: 145.99869773565698
Optimization terminated successfully (Exit mode 0)
Current function value: 145.99869773565442
Iterations: 13
Function evaluations: 110
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 166.9689058615449
Iteration: 2, Func. Count: 21, Neg. LLF: 158.66397660956852
Iteration: 3, Func. Count: 32, Neg. LLF: 156.0941770375464
Iteration: 4, Func. Count: 42, Neg. LLF: 146.03087002523245
Iteration: 5, Func. Count: 51, Neg. LLF: 146.00967078581152
Iteration: 6, Func. Count: 60, Neg. LLF: 145.98933246945606
Iteration: 7, Func. Count: 69, Neg. LLF: 145.9857490561569
Iteration: 8, Func. Count: 78, Neg. LLF: 145.9827593511769
Iteration: 9, Func. Count: 87, Neg. LLF: 145.9801470246112
Iteration: 10, Func. Count: 96, Neg. LLF: 145.97599661819407
Iteration: 11, Func. Count: 105, Neg. LLF: 145.97031885020706
Iteration: 12, Func. Count: 114, Neg. LLF: 145.9641183344665
Iteration: 13, Func. Count: 123, Neg. LLF: 145.95898255714593
Iteration: 14, Func. Count: 132, Neg. LLF: 145.95668900189227
Iteration: 15, Func. Count: 141, Neg. LLF: 145.9562904300068
Iteration: 16, Func. Count: 150, Neg. LLF: 145.95624162941309
Iteration: 17, Func. Count: 159, Neg. LLF: 145.95623745141827
Iteration: 18, Func. Count: 167, Neg. LLF: 145.95623745133514
Optimization terminated successfully (Exit mode 0)
Current function value: 145.95623745141827
Iterations: 18
Function evaluations: 167
Gradient evaluations: 18
Iteration: 1, Func. Count: 11, Neg. LLF: 165.7763148457945
Iteration: 2, Func. Count: 22, Neg. LLF: 149.27394972141204
Iteration: 3, Func. Count: 34, Neg. LLF: 154.51340698039795
Iteration: 4, Func. Count: 45, Neg. LLF: 146.34464356853823
Iteration: 5, Func. Count: 56, Neg. LLF: 146.04290808401342
Iteration: 6, Func. Count: 66, Neg. LLF: 146.022094528328
Iteration: 7, Func. Count: 76, Neg. LLF: 145.98596157071336
Iteration: 8, Func. Count: 86, Neg. LLF: 145.98063948272264
Iteration: 9, Func. Count: 96, Neg. LLF: 145.9793464318615
Iteration: 10, Func. Count: 106, Neg. LLF: 145.97277726815648
Iteration: 11, Func. Count: 116, Neg. LLF: 145.9663967744065
Iteration: 12, Func. Count: 126, Neg. LLF: 145.9600486068683
Iteration: 13, Func. Count: 136, Neg. LLF: 145.95748876648094
Iteration: 14, Func. Count: 146, Neg. LLF: 145.95657810358085
Iteration: 15, Func. Count: 156, Neg. LLF: 145.95629192714173
Iteration: 16, Func. Count: 166, Neg. LLF: 145.95624232337838
Iteration: 17, Func. Count: 176, Neg. LLF: 145.95623748667285
Iteration: 18, Func. Count: 185, Neg. LLF: 145.95623749603044
Optimization terminated successfully (Exit mode 0)
Current function value: 145.95623748667285
Iterations: 18
Function evaluations: 185
Gradient evaluations: 18
Iteration: 1, Func. Count: 12, Neg. LLF: 177.4532988223658
Iteration: 2, Func. Count: 25, Neg. LLF: 158.92458062625784
Iteration: 3, Func. Count: 38, Neg. LLF: 146.27582274889733
Iteration: 4, Func. Count: 49, Neg. LLF: 146.227737007065
Iteration: 5, Func. Count: 60, Neg. LLF: 146.14893925123224
Iteration: 6, Func. Count: 71, Neg. LLF: 146.1162144005319
Iteration: 7, Func. Count: 82, Neg. LLF: 146.09007340670354
Iteration: 8, Func. Count: 93, Neg. LLF: 146.05479085090283
Iteration: 9, Func. Count: 104, Neg. LLF: 146.03058111526252
Iteration: 10, Func. Count: 115, Neg. LLF: 146.04924002205658
Iteration: 11, Func. Count: 127, Neg. LLF: 146.08407160499476
Iteration: 12, Func. Count: 139, Neg. LLF: 146.0006273377905
Iteration: 13, Func. Count: 151, Neg. LLF: 145.9725690829693
Iteration: 14, Func. Count: 162, Neg. LLF: 145.96869441347812
Iteration: 15, Func. Count: 173, Neg. LLF: 145.96599687424907
Iteration: 16, Func. Count: 184, Neg. LLF: 145.96522650469734
Iteration: 17, Func. Count: 195, Neg. LLF: 145.96290705075904
Iteration: 18, Func. Count: 206, Neg. LLF: 145.96054284082294
Iteration: 19, Func. Count: 217, Neg. LLF: 145.95811748722969
Iteration: 20, Func. Count: 228, Neg. LLF: 145.95724757059048
Iteration: 21, Func. Count: 239, Neg. LLF: 145.95664953366688
Iteration: 22, Func. Count: 250, Neg. LLF: 145.95629171576547
Iteration: 23, Func. Count: 261, Neg. LLF: 145.9562420560463
Iteration: 24, Func. Count: 272, Neg. LLF: 145.95623746218592
Iteration: 25, Func. Count: 282, Neg. LLF: 145.956237492038
Optimization terminated successfully (Exit mode 0)
Current function value: 145.95623746218592
Iterations: 25
Function evaluations: 282
Gradient evaluations: 25
Iteration: 1, Func. Count: 9, Neg. LLF: 154.37250204716233
Iteration: 2, Func. Count: 19, Neg. LLF: 148.34814945027412
Iteration: 3, Func. Count: 28, Neg. LLF: 147.27331327396732
Iteration: 4, Func. Count: 36, Neg. LLF: 147.02923691581373
Iteration: 5, Func. Count: 44, Neg. LLF: 146.9302493425284
Iteration: 6, Func. Count: 52, Neg. LLF: 146.7070045631526
Iteration: 7, Func. Count: 60, Neg. LLF: 146.58776209184805
Iteration: 8, Func. Count: 68, Neg. LLF: 146.41854558211057
Iteration: 9, Func. Count: 76, Neg. LLF: 146.3799910553923
Iteration: 10, Func. Count: 84, Neg. LLF: 146.37355933041508
Iteration: 11, Func. Count: 92, Neg. LLF: 146.37266479794556
Iteration: 12, Func. Count: 100, Neg. LLF: 146.37259976825914
Iteration: 13, Func. Count: 108, Neg. LLF: 146.37259075968828
Iteration: 14, Func. Count: 115, Neg. LLF: 146.37259076374298
Optimization terminated successfully (Exit mode 0)
Current function value: 146.37259075968828
Iterations: 14
Function evaluations: 115
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 153.05868306625317
Iteration: 2, Func. Count: 20, Neg. LLF: 153.3532012756501
Iteration: 3, Func. Count: 30, Neg. LLF: 147.61225582204932
Iteration: 4, Func. Count: 40, Neg. LLF: 149.32135088977543
Iteration: 5, Func. Count: 50, Neg. LLF: 145.85668088109352
Iteration: 6, Func. Count: 59, Neg. LLF: 145.81312060072113
Iteration: 7, Func. Count: 68, Neg. LLF: 145.80763395216485
Iteration: 8, Func. Count: 77, Neg. LLF: 145.79963161330704
Iteration: 9, Func. Count: 86, Neg. LLF: 145.78647194737263
Iteration: 10, Func. Count: 95, Neg. LLF: 145.76214522358535
Iteration: 11, Func. Count: 104, Neg. LLF: 145.74949406101305
Iteration: 12, Func. Count: 113, Neg. LLF: 145.74624608009157
Iteration: 13, Func. Count: 122, Neg. LLF: 145.74616717139736
Iteration: 14, Func. Count: 131, Neg. LLF: 145.7461640104509
Iteration: 15, Func. Count: 139, Neg. LLF: 145.74616401034942
Optimization terminated successfully (Exit mode 0)
Current function value: 145.7461640104509
Iterations: 15
Function evaluations: 139
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 167.01619104049865
Iteration: 2, Func. Count: 23, Neg. LLF: 159.11015749319134
Iteration: 3, Func. Count: 35, Neg. LLF: 156.10255125480435
Iteration: 4, Func. Count: 46, Neg. LLF: 151.41135076651952
Iteration: 5, Func. Count: 57, Neg. LLF: 147.49153343166122
Iteration: 6, Func. Count: 68, Neg. LLF: 145.96724194721043
Iteration: 7, Func. Count: 78, Neg. LLF: 145.88418574110315
Iteration: 8, Func. Count: 88, Neg. LLF: 145.8971529536102
Iteration: 9, Func. Count: 99, Neg. LLF: 145.8543451962125
Iteration: 10, Func. Count: 109, Neg. LLF: 145.85501722498756
Iteration: 11, Func. Count: 120, Neg. LLF: 145.84726638282126
Iteration: 12, Func. Count: 130, Neg. LLF: 145.8464623715907
Iteration: 13, Func. Count: 140, Neg. LLF: 145.8460473280643
Iteration: 14, Func. Count: 150, Neg. LLF: 145.8459990553809
Iteration: 15, Func. Count: 160, Neg. LLF: 145.84589300009307
Iteration: 16, Func. Count: 170, Neg. LLF: 145.845752000753
Iteration: 17, Func. Count: 180, Neg. LLF: 145.845555191005
Iteration: 18, Func. Count: 190, Neg. LLF: 145.8454047808221
Iteration: 19, Func. Count: 200, Neg. LLF: 145.84532995776348
Iteration: 20, Func. Count: 210, Neg. LLF: 145.84529518162742
Iteration: 21, Func. Count: 220, Neg. LLF: 145.84528162494323
Iteration: 22, Func. Count: 230, Neg. LLF: 145.84527918156695
Iteration: 23, Func. Count: 239, Neg. LLF: 145.84527918154652
Optimization terminated successfully (Exit mode 0)
Current function value: 145.84527918156695
Iterations: 23
Function evaluations: 239
Gradient evaluations: 23
Iteration: 1, Func. Count: 12, Neg. LLF: 165.78013584266876
Iteration: 2, Func. Count: 24, Neg. LLF: 148.9097409818579
Iteration: 3, Func. Count: 37, Neg. LLF: 154.521222688123
Iteration: 4, Func. Count: 49, Neg. LLF: 146.35033102210525
Iteration: 5, Func. Count: 61, Neg. LLF: 146.0441937489896
Iteration: 6, Func. Count: 72, Neg. LLF: 145.94893090882718
Iteration: 7, Func. Count: 83, Neg. LLF: 145.90021168089294
Iteration: 8, Func. Count: 94, Neg. LLF: 146.0187987948162
Iteration: 9, Func. Count: 106, Neg. LLF: 145.85734274487115
Iteration: 10, Func. Count: 117, Neg. LLF: 145.85061264866684
Iteration: 11, Func. Count: 128, Neg. LLF: 145.84730146544393
Iteration: 12, Func. Count: 139, Neg. LLF: 145.84583301814317
Iteration: 13, Func. Count: 150, Neg. LLF: 145.8455150438909
Iteration: 14, Func. Count: 161, Neg. LLF: 145.8453348505516
Iteration: 15, Func. Count: 172, Neg. LLF: 145.84531633853246
Iteration: 16, Func. Count: 183, Neg. LLF: 145.84530873825267
Iteration: 17, Func. Count: 194, Neg. LLF: 145.84530626254053
Iteration: 18, Func. Count: 205, Neg. LLF: 145.84530318891163
Iteration: 19, Func. Count: 216, Neg. LLF: 145.84529978226507
Iteration: 20, Func. Count: 227, Neg. LLF: 145.84529382614812
Iteration: 21, Func. Count: 238, Neg. LLF: 145.8452860960677
Iteration: 22, Func. Count: 249, Neg. LLF: 145.84528058546294
Iteration: 23, Func. Count: 260, Neg. LLF: 145.8452791095705
Iteration: 24, Func. Count: 270, Neg. LLF: 145.8452791407269
Optimization terminated successfully (Exit mode 0)
Current function value: 145.8452791095705
Iterations: 24
Function evaluations: 270
Gradient evaluations: 24
Iteration: 1, Func. Count: 13, Neg. LLF: 177.4592638164397
Iteration: 2, Func. Count: 27, Neg. LLF: 159.92509348092216
Iteration: 3, Func. Count: 41, Neg. LLF: 146.27657243043146
Iteration: 4, Func. Count: 53, Neg. LLF: 146.23038600866033
Iteration: 5, Func. Count: 65, Neg. LLF: 146.14453063525335
Iteration: 6, Func. Count: 77, Neg. LLF: 146.1284226576263
Iteration: 7, Func. Count: 89, Neg. LLF: 146.10272279621847
Iteration: 8, Func. Count: 101, Neg. LLF: 146.068210085982
Iteration: 9, Func. Count: 113, Neg. LLF: 146.01879199888847
Iteration: 10, Func. Count: 125, Neg. LLF: 145.98166629858616
Iteration: 11, Func. Count: 137, Neg. LLF: 145.90116801418912
Iteration: 12, Func. Count: 149, Neg. LLF: 145.869005333694
Iteration: 13, Func. Count: 161, Neg. LLF: 146.28610039327623
Iteration: 14, Func. Count: 174, Neg. LLF: 145.8572868578351
Iteration: 15, Func. Count: 186, Neg. LLF: 145.84789485512235
Iteration: 16, Func. Count: 198, Neg. LLF: 145.84708586017248
Iteration: 17, Func. Count: 210, Neg. LLF: 145.84660976859493
Iteration: 18, Func. Count: 222, Neg. LLF: 145.8464826921755
Iteration: 19, Func. Count: 234, Neg. LLF: 145.84633693894025
Iteration: 20, Func. Count: 246, Neg. LLF: 145.84615926118576
Iteration: 21, Func. Count: 258, Neg. LLF: 145.8459266393414
Iteration: 22, Func. Count: 270, Neg. LLF: 145.84574168159793
Iteration: 23, Func. Count: 282, Neg. LLF: 145.84559584273842
Iteration: 24, Func. Count: 294, Neg. LLF: 145.84546777794216
Iteration: 25, Func. Count: 306, Neg. LLF: 145.84535018439226
Iteration: 26, Func. Count: 318, Neg. LLF: 145.84529132074238
Iteration: 27, Func. Count: 330, Neg. LLF: 145.84527970083434
Iteration: 28, Func. Count: 342, Neg. LLF: 145.8452789671029
Optimization terminated successfully (Exit mode 0)
Current function value: 145.8452789671029
Iterations: 28
Function evaluations: 342
Gradient evaluations: 28
Iteration: 1, Func. Count: 6, Neg. LLF: 149.43228517732862
Iteration: 2, Func. Count: 12, Neg. LLF: 151.01603809832255
Iteration: 3, Func. Count: 19, Neg. LLF: 149.53340833654667
Iteration: 4, Func. Count: 25, Neg. LLF: 147.6835522524618
Iteration: 5, Func. Count: 30, Neg. LLF: 147.34519684027228
Iteration: 6, Func. Count: 35, Neg. LLF: 147.03675696325257
Iteration: 7, Func. Count: 40, Neg. LLF: 146.81985427517273
Iteration: 8, Func. Count: 45, Neg. LLF: 146.54479613561287
Iteration: 9, Func. Count: 50, Neg. LLF: 146.51500919549343
Iteration: 10, Func. Count: 55, Neg. LLF: 146.51398907085903
Iteration: 11, Func. Count: 60, Neg. LLF: 146.513972472763
Iteration: 12, Func. Count: 65, Neg. LLF: 146.513971358837
Iteration: 13, Func. Count: 69, Neg. LLF: 146.51397137734176
Optimization terminated successfully (Exit mode 0)
Current function value: 146.513971358837
Iterations: 13
Function evaluations: 69
Gradient evaluations: 13
Iteration: 1, Func. Count: 7, Neg. LLF: 429.48726009799526
Iteration: 2, Func. Count: 15, Neg. LLF: 146.3479523600054
Iteration: 3, Func. Count: 21, Neg. LLF: 146.33369936889773
Iteration: 4, Func. Count: 27, Neg. LLF: 146.33363571938852
Iteration: 5, Func. Count: 33, Neg. LLF: 146.33362120629388
Iteration: 6, Func. Count: 39, Neg. LLF: 146.33357987095076
Iteration: 7, Func. Count: 45, Neg. LLF: 146.3335728273505
Iteration: 8, Func. Count: 51, Neg. LLF: 146.3335719646869
Optimization terminated successfully (Exit mode 0)
Current function value: 146.3335719646869
Iterations: 8
Function evaluations: 51
Gradient evaluations: 8
Iteration: 1, Func. Count: 8, Neg. LLF: 177.20845777892268
Iteration: 2, Func. Count: 17, Neg. LLF: 146.40395421235257
Iteration: 3, Func. Count: 24, Neg. LLF: 146.3975922314428
Iteration: 4, Func. Count: 31, Neg. LLF: 146.39272688501913
Iteration: 5, Func. Count: 38, Neg. LLF: 146.3793921772421
Iteration: 6, Func. Count: 45, Neg. LLF: 146.37564338283804
Iteration: 7, Func. Count: 52, Neg. LLF: 146.36666610241622
Iteration: 8, Func. Count: 59, Neg. LLF: 146.34215812760087
Iteration: 9, Func. Count: 66, Neg. LLF: 146.33829345815982
Iteration: 10, Func. Count: 73, Neg. LLF: 146.3377038125601
Iteration: 11, Func. Count: 80, Neg. LLF: 146.3346447359985
Iteration: 12, Func. Count: 87, Neg. LLF: 146.3313225932809
Iteration: 13, Func. Count: 94, Neg. LLF: 146.32816970308872
Iteration: 14, Func. Count: 101, Neg. LLF: 146.32702404703906
Iteration: 15, Func. Count: 108, Neg. LLF: 146.32699010302554
Iteration: 16, Func. Count: 115, Neg. LLF: 146.32698671160205
Iteration: 17, Func. Count: 122, Neg. LLF: 146.32698461285716
Iteration: 18, Func. Count: 128, Neg. LLF: 146.3269846128913
Optimization terminated successfully (Exit mode 0)
Current function value: 146.32698461285716
Iterations: 18
Function evaluations: 128
Gradient evaluations: 18
Iteration: 1, Func. Count: 9, Neg. LLF: 177.59232046444544
Iteration: 2, Func. Count: 19, Neg. LLF: 146.37051121196902
Iteration: 3, Func. Count: 27, Neg. LLF: 146.35756823429296
Iteration: 4, Func. Count: 35, Neg. LLF: 146.31624209643843
Iteration: 5, Func. Count: 43, Neg. LLF: 146.30761277239137
Iteration: 6, Func. Count: 51, Neg. LLF: 146.30745470149546
Iteration: 7, Func. Count: 59, Neg. LLF: 146.3073230690628
Iteration: 8, Func. Count: 67, Neg. LLF: 146.30720925897947
Iteration: 9, Func. Count: 75, Neg. LLF: 146.3069436771062
Iteration: 10, Func. Count: 83, Neg. LLF: 146.30657632274887
Iteration: 11, Func. Count: 91, Neg. LLF: 146.30614982226967
Iteration: 12, Func. Count: 99, Neg. LLF: 146.30591782059105
Iteration: 13, Func. Count: 107, Neg. LLF: 146.30586436704274
Iteration: 14, Func. Count: 115, Neg. LLF: 146.30586202123138
Iteration: 15, Func. Count: 122, Neg. LLF: 146.30586202127483
Optimization terminated successfully (Exit mode 0)
Current function value: 146.30586202123138
Iterations: 15
Function evaluations: 122
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 177.71474792613418
Iteration: 2, Func. Count: 21, Neg. LLF: 146.36388397067628
Iteration: 3, Func. Count: 30, Neg. LLF: 146.3543621518961
Iteration: 4, Func. Count: 39, Neg. LLF: 146.33422896685977
Iteration: 5, Func. Count: 48, Neg. LLF: 146.3299439530192
Iteration: 6, Func. Count: 57, Neg. LLF: 146.30884402745988
Iteration: 7, Func. Count: 66, Neg. LLF: 146.30775861813996
Iteration: 8, Func. Count: 75, Neg. LLF: 146.30737992192547
Iteration: 9, Func. Count: 84, Neg. LLF: 146.30732264297643
Iteration: 10, Func. Count: 93, Neg. LLF: 146.3069964529135
Iteration: 11, Func. Count: 102, Neg. LLF: 146.30600126558195
Iteration: 12, Func. Count: 111, Neg. LLF: 146.3058681297575
Iteration: 13, Func. Count: 120, Neg. LLF: 146.30586230647415
Iteration: 14, Func. Count: 128, Neg. LLF: 146.30586230890324
Optimization terminated successfully (Exit mode 0)
Current function value: 146.30586230647415
Iterations: 14
Function evaluations: 128
Gradient evaluations: 14
Iteration: 1, Func. Count: 7, Neg. LLF: 151.36266018935027
Iteration: 2, Func. Count: 14, Neg. LLF: 149.5909016136825
Iteration: 3, Func. Count: 21, Neg. LLF: 148.56399615446267
Iteration: 4, Func. Count: 28, Neg. LLF: 148.14219435604855
Iteration: 5, Func. Count: 35, Neg. LLF: 147.8707463887742
Iteration: 6, Func. Count: 42, Neg. LLF: 147.5337918496387
Iteration: 7, Func. Count: 48, Neg. LLF: 147.17451242655494
Iteration: 8, Func. Count: 54, Neg. LLF: 146.7130907596842
Iteration: 9, Func. Count: 60, Neg. LLF: 146.55358893770466
Iteration: 10, Func. Count: 66, Neg. LLF: 146.52583316261777
Iteration: 11, Func. Count: 72, Neg. LLF: 146.5141716914498
Iteration: 12, Func. Count: 78, Neg. LLF: 146.51400088067945
Iteration: 13, Func. Count: 84, Neg. LLF: 146.51397237489664
Iteration: 14, Func. Count: 90, Neg. LLF: 146.51397132711196
Iteration: 15, Func. Count: 95, Neg. LLF: 146.51397129999827
Optimization terminated successfully (Exit mode 0)
Current function value: 146.51397132711196
Iterations: 15
Function evaluations: 95
Gradient evaluations: 15
Iteration: 1, Func. Count: 8, Neg. LLF: 153.43408478805645
Iteration: 2, Func. Count: 16, Neg. LLF: 149.038078029339
Iteration: 3, Func. Count: 25, Neg. LLF: 146.47064142111375
Iteration: 4, Func. Count: 33, Neg. LLF: 146.39442312022805
Iteration: 5, Func. Count: 41, Neg. LLF: 146.36861311287794
Iteration: 6, Func. Count: 48, Neg. LLF: 146.36477240467497
Iteration: 7, Func. Count: 55, Neg. LLF: 146.3646918318303
Iteration: 8, Func. Count: 62, Neg. LLF: 146.36459316816956
Iteration: 9, Func. Count: 69, Neg. LLF: 146.3641698915663
Iteration: 10, Func. Count: 76, Neg. LLF: 146.36340962922017
Iteration: 11, Func. Count: 83, Neg. LLF: 146.36183538825324
Iteration: 12, Func. Count: 90, Neg. LLF: 146.35859344575684
Iteration: 13, Func. Count: 97, Neg. LLF: 146.32902300463786
Iteration: 14, Func. Count: 104, Neg. LLF: 146.41374241551677
Iteration: 15, Func. Count: 112, Neg. LLF: 146.32762164867628
Iteration: 16, Func. Count: 120, Neg. LLF: 146.32593996418944
Iteration: 17, Func. Count: 127, Neg. LLF: 146.3259246865484
Iteration: 18, Func. Count: 133, Neg. LLF: 146.32592468650577
Optimization terminated successfully (Exit mode 0)
Current function value: 146.3259246865484
Iterations: 18
Function evaluations: 133
Gradient evaluations: 18
Iteration: 1, Func. Count: 9, Neg. LLF: 176.93264923794095
Iteration: 2, Func. Count: 19, Neg. LLF: 147.55481666611703
Iteration: 3, Func. Count: 28, Neg. LLF: 146.38461666457732
Iteration: 4, Func. Count: 36, Neg. LLF: 146.37648615052757
Iteration: 5, Func. Count: 44, Neg. LLF: 146.37532168661997
Iteration: 6, Func. Count: 52, Neg. LLF: 146.37223499824768
Iteration: 7, Func. Count: 60, Neg. LLF: 146.37007699657897
Iteration: 8, Func. Count: 68, Neg. LLF: 146.3564682906743
Iteration: 9, Func. Count: 76, Neg. LLF: 146.35190671723177
Iteration: 10, Func. Count: 84, Neg. LLF: 146.3472874185041
Iteration: 11, Func. Count: 92, Neg. LLF: 146.3374599238424
Iteration: 12, Func. Count: 100, Neg. LLF: 146.33703077743434
Iteration: 13, Func. Count: 108, Neg. LLF: 146.33633274946718
Iteration: 14, Func. Count: 116, Neg. LLF: 146.33469788334975
Iteration: 15, Func. Count: 124, Neg. LLF: 146.33071437459222
Iteration: 16, Func. Count: 132, Neg. LLF: 146.322213444911
Iteration: 17, Func. Count: 140, Neg. LLF: 146.3041533997307
Iteration: 18, Func. Count: 148, Neg. LLF: 146.25261851968492
Iteration: 19, Func. Count: 156, Neg. LLF: 150.08144649001812
Iteration: 20, Func. Count: 165, Neg. LLF: 1247.4476359591367
Iteration: 21, Func. Count: 176, Neg. LLF: 155.41972215689006
Iteration: 22, Func. Count: 186, Neg. LLF: 146.2267339857436
Iteration: 23, Func. Count: 195, Neg. LLF: 146.22197146367836
Iteration: 24, Func. Count: 203, Neg. LLF: 146.2175058474403
Iteration: 25, Func. Count: 211, Neg. LLF: 146.2112179510182
Iteration: 26, Func. Count: 219, Neg. LLF: 146.2078045806201
Iteration: 27, Func. Count: 227, Neg. LLF: 146.20624058614155
Iteration: 28, Func. Count: 235, Neg. LLF: 146.20618612744113
Iteration: 29, Func. Count: 243, Neg. LLF: 146.20618281705907
Iteration: 30, Func. Count: 250, Neg. LLF: 146.2061828170306
Optimization terminated successfully (Exit mode 0)
Current function value: 146.20618281705907
Iterations: 31
Function evaluations: 250
Gradient evaluations: 30
Iteration: 1, Func. Count: 10, Neg. LLF: 177.3036042572946
Iteration: 2, Func. Count: 21, Neg. LLF: 146.37315637047308
Iteration: 3, Func. Count: 30, Neg. LLF: 146.36227692407334
Iteration: 4, Func. Count: 39, Neg. LLF: 146.33725967188138
Iteration: 5, Func. Count: 48, Neg. LLF: 146.31419661723817
Iteration: 6, Func. Count: 57, Neg. LLF: 146.30815051745319
Iteration: 7, Func. Count: 66, Neg. LLF: 146.30732772590073
Iteration: 8, Func. Count: 75, Neg. LLF: 146.30728254498027
Iteration: 9, Func. Count: 84, Neg. LLF: 146.307065871327
Iteration: 10, Func. Count: 93, Neg. LLF: 146.3062849135184
Iteration: 11, Func. Count: 102, Neg. LLF: 146.3058687943326
Iteration: 12, Func. Count: 111, Neg. LLF: 146.30586203636577
Iteration: 13, Func. Count: 119, Neg. LLF: 146.30586203640308
Optimization terminated successfully (Exit mode 0)
Current function value: 146.30586203636577
Iterations: 13
Function evaluations: 119
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 177.44669922937038
Iteration: 2, Func. Count: 23, Neg. LLF: 146.3657828795781
Iteration: 3, Func. Count: 33, Neg. LLF: 146.3564094731339
Iteration: 4, Func. Count: 43, Neg. LLF: 146.3441497455533
Iteration: 5, Func. Count: 53, Neg. LLF: 146.3355362886284
Iteration: 6, Func. Count: 63, Neg. LLF: 146.32965505899713
Iteration: 7, Func. Count: 73, Neg. LLF: 146.3077758460667
Iteration: 8, Func. Count: 83, Neg. LLF: 146.30770284492817
Iteration: 9, Func. Count: 93, Neg. LLF: 146.30746483847196
Iteration: 10, Func. Count: 103, Neg. LLF: 146.30714315906656
Iteration: 11, Func. Count: 113, Neg. LLF: 146.30656981770397
Iteration: 12, Func. Count: 123, Neg. LLF: 146.30609969655998
Iteration: 13, Func. Count: 133, Neg. LLF: 146.30589638008422
Iteration: 14, Func. Count: 143, Neg. LLF: 146.3058625665159
Iteration: 15, Func. Count: 153, Neg. LLF: 146.3058620227848
Optimization terminated successfully (Exit mode 0)
Current function value: 146.3058620227848
Iterations: 15
Function evaluations: 153
Gradient evaluations: 15
Iteration: 1, Func. Count: 8, Neg. LLF: 152.3491845079558
Iteration: 2, Func. Count: 17, Neg. LLF: 149.08115588398664
Iteration: 3, Func. Count: 25, Neg. LLF: 147.820369326466
Iteration: 4, Func. Count: 32, Neg. LLF: 147.38356899275246
Iteration: 5, Func. Count: 39, Neg. LLF: 147.57619799420357
Iteration: 6, Func. Count: 47, Neg. LLF: 147.4055466655696
Iteration: 7, Func. Count: 55, Neg. LLF: 147.06137311142948
Iteration: 8, Func. Count: 62, Neg. LLF: 146.75177451718267
Iteration: 9, Func. Count: 69, Neg. LLF: 146.50170929462058
Iteration: 10, Func. Count: 76, Neg. LLF: 146.4594287963358
Iteration: 11, Func. Count: 83, Neg. LLF: 146.45494703122893
Iteration: 12, Func. Count: 90, Neg. LLF: 146.45102273123373
Iteration: 13, Func. Count: 97, Neg. LLF: 146.4507190294389
Iteration: 14, Func. Count: 104, Neg. LLF: 146.4506034449917
Iteration: 15, Func. Count: 111, Neg. LLF: 146.45057818343153
Iteration: 16, Func. Count: 118, Neg. LLF: 146.45057461356893
Iteration: 17, Func. Count: 124, Neg. LLF: 146.45057457462622
Optimization terminated successfully (Exit mode 0)
Current function value: 146.45057461356893
Iterations: 17
Function evaluations: 124
Gradient evaluations: 17
Iteration: 1, Func. Count: 9, Neg. LLF: 157.872223156701
Iteration: 2, Func. Count: 18, Neg. LLF: 147.45717938482127
Iteration: 3, Func. Count: 28, Neg. LLF: 166.974543191741
Iteration: 4, Func. Count: 38, Neg. LLF: 146.75253299467914
Iteration: 5, Func. Count: 47, Neg. LLF: 146.33544205002391
Iteration: 6, Func. Count: 55, Neg. LLF: 146.3347267454392
Iteration: 7, Func. Count: 63, Neg. LLF: 146.33428373781908
Iteration: 8, Func. Count: 71, Neg. LLF: 146.33342229777188
Iteration: 9, Func. Count: 79, Neg. LLF: 146.32964953608206
Iteration: 10, Func. Count: 87, Neg. LLF: 146.31637837081823
Iteration: 11, Func. Count: 95, Neg. LLF: 146.31090433966205
Iteration: 12, Func. Count: 103, Neg. LLF: 146.29126153263405
Iteration: 13, Func. Count: 111, Neg. LLF: 146.28523441945762
Iteration: 14, Func. Count: 119, Neg. LLF: 146.2700409251352
Iteration: 15, Func. Count: 127, Neg. LLF: 146.263238299412
Iteration: 16, Func. Count: 135, Neg. LLF: 146.2618936135625
Iteration: 17, Func. Count: 143, Neg. LLF: 146.26184057591465
Iteration: 18, Func. Count: 151, Neg. LLF: 146.26182742783837
Iteration: 19, Func. Count: 159, Neg. LLF: 146.26182072064563
Iteration: 20, Func. Count: 166, Neg. LLF: 146.2618207206291
Optimization terminated successfully (Exit mode 0)
Current function value: 146.26182072064563
Iterations: 20
Function evaluations: 166
Gradient evaluations: 20
Iteration: 1, Func. Count: 10, Neg. LLF: 176.92928398840616
Iteration: 2, Func. Count: 21, Neg. LLF: 151.4290304557894
Iteration: 3, Func. Count: 32, Neg. LLF: 146.3996801930182
Iteration: 4, Func. Count: 41, Neg. LLF: 146.37337141458542
Iteration: 5, Func. Count: 50, Neg. LLF: 146.37135510542518
Iteration: 6, Func. Count: 59, Neg. LLF: 146.3661753224009
Iteration: 7, Func. Count: 68, Neg. LLF: 146.3409071502506
Iteration: 8, Func. Count: 77, Neg. LLF: 146.33964824362877
Iteration: 9, Func. Count: 86, Neg. LLF: 146.33845103934343
Iteration: 10, Func. Count: 95, Neg. LLF: 146.33779330490373
Iteration: 11, Func. Count: 104, Neg. LLF: 146.33724483963627
Iteration: 12, Func. Count: 113, Neg. LLF: 146.33621685954216
Iteration: 13, Func. Count: 122, Neg. LLF: 146.3332259167348
Iteration: 14, Func. Count: 131, Neg. LLF: 146.32557704833837
Iteration: 15, Func. Count: 140, Neg. LLF: 146.31764323125088
Iteration: 16, Func. Count: 149, Neg. LLF: 146.30075077184483
Iteration: 17, Func. Count: 158, Neg. LLF: 146.26749701150942
Iteration: 18, Func. Count: 167, Neg. LLF: 146.2648446837715
Iteration: 19, Func. Count: 176, Neg. LLF: 146.26198618728597
Iteration: 20, Func. Count: 185, Neg. LLF: 146.26193673122185
Iteration: 21, Func. Count: 194, Neg. LLF: 146.26189296854815
Iteration: 22, Func. Count: 203, Neg. LLF: 146.26186603288826
Iteration: 23, Func. Count: 212, Neg. LLF: 146.26182935206833
Iteration: 24, Func. Count: 221, Neg. LLF: 146.26182173949758
Iteration: 25, Func. Count: 230, Neg. LLF: 146.26182068337744
Iteration: 26, Func. Count: 238, Neg. LLF: 146.26182069588378
Optimization terminated successfully (Exit mode 0)
Current function value: 146.26182068337744
Iterations: 26
Function evaluations: 238
Gradient evaluations: 26
Iteration: 1, Func. Count: 11, Neg. LLF: 177.3013601685423
Iteration: 2, Func. Count: 23, Neg. LLF: 146.6155405749984
Iteration: 3, Func. Count: 34, Neg. LLF: 146.36992759010104
Iteration: 4, Func. Count: 44, Neg. LLF: 146.3519023731983
Iteration: 5, Func. Count: 54, Neg. LLF: 146.32428838339695
Iteration: 6, Func. Count: 64, Neg. LLF: 146.31789328103463
Iteration: 7, Func. Count: 74, Neg. LLF: 146.31497537448843
Iteration: 8, Func. Count: 84, Neg. LLF: 146.31315836464128
Iteration: 9, Func. Count: 94, Neg. LLF: 146.3129524668893
Iteration: 10, Func. Count: 104, Neg. LLF: 146.31284186446828
Iteration: 11, Func. Count: 114, Neg. LLF: 146.31282176481287
Iteration: 12, Func. Count: 124, Neg. LLF: 146.31268448520808
Iteration: 13, Func. Count: 134, Neg. LLF: 146.31163252577247
Iteration: 14, Func. Count: 144, Neg. LLF: 146.31497903242186
Iteration: 15, Func. Count: 155, Neg. LLF: 146.47435755305605
Iteration: 16, Func. Count: 166, Neg. LLF: 146.3123849142495
Iteration: 17, Func. Count: 177, Neg. LLF: 146.3018525813134
Iteration: 18, Func. Count: 187, Neg. LLF: 146.29835624986615
Iteration: 19, Func. Count: 197, Neg. LLF: 146.29773601251594
Iteration: 20, Func. Count: 207, Neg. LLF: 146.29741165159282
Iteration: 21, Func. Count: 217, Neg. LLF: 146.2974063282537
Iteration: 22, Func. Count: 227, Neg. LLF: 146.2974052927515
Iteration: 23, Func. Count: 236, Neg. LLF: 146.29740529274915
Optimization terminated successfully (Exit mode 0)
Current function value: 146.2974052927515
Iterations: 23
Function evaluations: 236
Gradient evaluations: 23
Iteration: 1, Func. Count: 12, Neg. LLF: 177.4329081703335
Iteration: 2, Func. Count: 25, Neg. LLF: 147.3748394169741
Iteration: 3, Func. Count: 38, Neg. LLF: 146.17295991146426
Iteration: 4, Func. Count: 49, Neg. LLF: 146.1597561761826
Iteration: 5, Func. Count: 60, Neg. LLF: 146.1498091591712
Iteration: 6, Func. Count: 71, Neg. LLF: 146.1428208990006
Iteration: 7, Func. Count: 82, Neg. LLF: 146.14176910421014
Iteration: 8, Func. Count: 93, Neg. LLF: 146.14149258033177
Iteration: 9, Func. Count: 104, Neg. LLF: 146.14063341852582
Iteration: 10, Func. Count: 115, Neg. LLF: 146.13814734661037
Iteration: 11, Func. Count: 126, Neg. LLF: 146.13427302195697
Iteration: 12, Func. Count: 137, Neg. LLF: 146.13029773147798
Iteration: 13, Func. Count: 148, Neg. LLF: 146.12862236571226
Iteration: 14, Func. Count: 159, Neg. LLF: 146.12809259838897
Iteration: 15, Func. Count: 170, Neg. LLF: 146.12808837007367
Iteration: 16, Func. Count: 180, Neg. LLF: 146.12808836989183
Optimization terminated successfully (Exit mode 0)
Current function value: 146.12808837007367
Iterations: 16
Function evaluations: 180
Gradient evaluations: 16
Iteration: 1, Func. Count: 9, Neg. LLF: 150.91965635375473
Iteration: 2, Func. Count: 18, Neg. LLF: 151.01171303286273
Iteration: 3, Func. Count: 27, Neg. LLF: 147.5157903509307
Iteration: 4, Func. Count: 35, Neg. LLF: 149.02159123112102
Iteration: 5, Func. Count: 44, Neg. LLF: 146.97440145633283
Iteration: 6, Func. Count: 52, Neg. LLF: 146.86831565706547
Iteration: 7, Func. Count: 60, Neg. LLF: 146.5948082986842
Iteration: 8, Func. Count: 68, Neg. LLF: 146.3910631198829
Iteration: 9, Func. Count: 76, Neg. LLF: 146.33508479964166
Iteration: 10, Func. Count: 84, Neg. LLF: 146.32418493141262
Iteration: 11, Func. Count: 92, Neg. LLF: 146.3240605675216
Iteration: 12, Func. Count: 100, Neg. LLF: 146.3240565847013
Iteration: 13, Func. Count: 108, Neg. LLF: 146.32405592730098
Optimization terminated successfully (Exit mode 0)
Current function value: 146.32405592730098
Iterations: 13
Function evaluations: 108
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 158.6019250841732
Iteration: 2, Func. Count: 21, Neg. LLF: 152.86785486452598
Iteration: 3, Func. Count: 31, Neg. LLF: 159.05634416440688
Iteration: 4, Func. Count: 41, Neg. LLF: 146.02083841253662
Iteration: 5, Func. Count: 50, Neg. LLF: 146.07415922565644
Iteration: 6, Func. Count: 60, Neg. LLF: 145.99409910257097
Iteration: 7, Func. Count: 69, Neg. LLF: 145.99374120275547
Iteration: 8, Func. Count: 78, Neg. LLF: 145.99363033701556
Iteration: 9, Func. Count: 87, Neg. LLF: 145.9935862441046
Iteration: 10, Func. Count: 96, Neg. LLF: 145.99344875241565
Iteration: 11, Func. Count: 105, Neg. LLF: 145.993200148611
Iteration: 12, Func. Count: 114, Neg. LLF: 145.99287189904967
Iteration: 13, Func. Count: 123, Neg. LLF: 145.99267451247192
Iteration: 14, Func. Count: 132, Neg. LLF: 145.99262245343414
Iteration: 15, Func. Count: 141, Neg. LLF: 145.99262102541314
Iteration: 16, Func. Count: 149, Neg. LLF: 145.99262102537702
Optimization terminated successfully (Exit mode 0)
Current function value: 145.99262102541314
Iterations: 16
Function evaluations: 149
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 166.93239622157535
Iteration: 2, Func. Count: 23, Neg. LLF: 154.1508033019068
Iteration: 3, Func. Count: 34, Neg. LLF: 153.28908398957057
Iteration: 4, Func. Count: 45, Neg. LLF: 146.160580442865
Iteration: 5, Func. Count: 56, Neg. LLF: 146.0415195658456
Iteration: 6, Func. Count: 66, Neg. LLF: 146.02307509186545
Iteration: 7, Func. Count: 76, Neg. LLF: 146.00079371717422
Iteration: 8, Func. Count: 86, Neg. LLF: 146.01842951624
Iteration: 9, Func. Count: 97, Neg. LLF: 145.9849557008943
Iteration: 10, Func. Count: 107, Neg. LLF: 145.98132413313374
Iteration: 11, Func. Count: 117, Neg. LLF: 145.9789865215816
Iteration: 12, Func. Count: 127, Neg. LLF: 145.97651162249554
Iteration: 13, Func. Count: 137, Neg. LLF: 145.9680373855429
Iteration: 14, Func. Count: 147, Neg. LLF: 145.96073151361796
Iteration: 15, Func. Count: 157, Neg. LLF: 145.95714248523174
Iteration: 16, Func. Count: 167, Neg. LLF: 145.9563541573424
Iteration: 17, Func. Count: 177, Neg. LLF: 145.95624985957434
Iteration: 18, Func. Count: 187, Neg. LLF: 145.95623780122722
Iteration: 19, Func. Count: 197, Neg. LLF: 145.95623720370529
Optimization terminated successfully (Exit mode 0)
Current function value: 145.95623720370529
Iterations: 19
Function evaluations: 197
Gradient evaluations: 19
Iteration: 1, Func. Count: 12, Neg. LLF: 165.7785318508225
Iteration: 2, Func. Count: 24, Neg. LLF: 154.26486065490505
Iteration: 3, Func. Count: 36, Neg. LLF: 155.33610060152378
Iteration: 4, Func. Count: 48, Neg. LLF: 146.08563308102498
Iteration: 5, Func. Count: 59, Neg. LLF: 146.00169664430138
Iteration: 6, Func. Count: 70, Neg. LLF: 145.98324940651585
Iteration: 7, Func. Count: 81, Neg. LLF: 145.98259874785845
Iteration: 8, Func. Count: 92, Neg. LLF: 145.98045324850253
Iteration: 9, Func. Count: 103, Neg. LLF: 145.97714334042556
Iteration: 10, Func. Count: 114, Neg. LLF: 145.96969056742776
Iteration: 11, Func. Count: 125, Neg. LLF: 145.962721057557
Iteration: 12, Func. Count: 136, Neg. LLF: 145.95758860487803
Iteration: 13, Func. Count: 147, Neg. LLF: 145.95635621518448
Iteration: 14, Func. Count: 158, Neg. LLF: 145.9562692396515
Iteration: 15, Func. Count: 169, Neg. LLF: 145.95624278113058
Iteration: 16, Func. Count: 180, Neg. LLF: 145.956238155373
Iteration: 17, Func. Count: 191, Neg. LLF: 145.95623730944948
Optimization terminated successfully (Exit mode 0)
Current function value: 145.95623730944948
Iterations: 17
Function evaluations: 191
Gradient evaluations: 17
Iteration: 1, Func. Count: 13, Neg. LLF: 177.4736020794675
Iteration: 2, Func. Count: 27, Neg. LLF: 156.83101133290225
Iteration: 3, Func. Count: 41, Neg. LLF: 147.57845680975586
Iteration: 4, Func. Count: 54, Neg. LLF: 146.1575654328961
Iteration: 5, Func. Count: 66, Neg. LLF: 146.0593234809442
Iteration: 6, Func. Count: 78, Neg. LLF: 146.0231281609642
Iteration: 7, Func. Count: 90, Neg. LLF: 146.00396594958056
Iteration: 8, Func. Count: 102, Neg. LLF: 145.9960593601581
Iteration: 9, Func. Count: 114, Neg. LLF: 145.9954253900988
Iteration: 10, Func. Count: 126, Neg. LLF: 145.99494216266015
Iteration: 11, Func. Count: 138, Neg. LLF: 145.99473119950082
Iteration: 12, Func. Count: 150, Neg. LLF: 145.99454592821243
Iteration: 13, Func. Count: 162, Neg. LLF: 145.9943646165509
Iteration: 14, Func. Count: 174, Neg. LLF: 145.9939087169586
Iteration: 15, Func. Count: 186, Neg. LLF: 145.99330590206546
Iteration: 16, Func. Count: 198, Neg. LLF: 145.9928305270406
Iteration: 17, Func. Count: 210, Neg. LLF: 145.99263838918048
Iteration: 18, Func. Count: 222, Neg. LLF: 145.99262107861477
Iteration: 19, Func. Count: 233, Neg. LLF: 145.99262111266182
Optimization terminated successfully (Exit mode 0)
Current function value: 145.99262107861477
Iterations: 19
Function evaluations: 233
Gradient evaluations: 19
Iteration: 1, Func. Count: 10, Neg. LLF: 150.98739867827902
Iteration: 2, Func. Count: 21, Neg. LLF: 151.61738528609112
Iteration: 3, Func. Count: 31, Neg. LLF: 147.7601780310957
Iteration: 4, Func. Count: 41, Neg. LLF: 147.17779637267617
Iteration: 5, Func. Count: 50, Neg. LLF: 147.04151611789845
Iteration: 6, Func. Count: 59, Neg. LLF: 147.85456466254047
Iteration: 7, Func. Count: 69, Neg. LLF: 146.80121146369623
Iteration: 8, Func. Count: 78, Neg. LLF: 146.68160754913904
Iteration: 9, Func. Count: 87, Neg. LLF: 146.46031940871572
Iteration: 10, Func. Count: 96, Neg. LLF: 146.37580076363028
Iteration: 11, Func. Count: 105, Neg. LLF: 146.34198055468184
Iteration: 12, Func. Count: 114, Neg. LLF: 146.336670189671
Iteration: 13, Func. Count: 123, Neg. LLF: 146.33370451830254
Iteration: 14, Func. Count: 132, Neg. LLF: 146.3298728999567
Iteration: 15, Func. Count: 141, Neg. LLF: 146.32535156407417
Iteration: 16, Func. Count: 150, Neg. LLF: 146.3248664946937
Iteration: 17, Func. Count: 159, Neg. LLF: 146.3240783832316
Iteration: 18, Func. Count: 168, Neg. LLF: 146.32406012320243
Iteration: 19, Func. Count: 177, Neg. LLF: 146.32405615116002
Iteration: 20, Func. Count: 185, Neg. LLF: 146.32405615809623
Optimization terminated successfully (Exit mode 0)
Current function value: 146.32405615116002
Iterations: 20
Function evaluations: 185
Gradient evaluations: 20
Iteration: 1, Func. Count: 11, Neg. LLF: 152.07407586334483
Iteration: 2, Func. Count: 22, Neg. LLF: 151.95179039989517
Iteration: 3, Func. Count: 33, Neg. LLF: 149.22034236609258
Iteration: 4, Func. Count: 44, Neg. LLF: 146.44113491422084
Iteration: 5, Func. Count: 55, Neg. LLF: 145.77904390946915
Iteration: 6, Func. Count: 66, Neg. LLF: 145.72977278336896
Iteration: 7, Func. Count: 76, Neg. LLF: 145.69282340493976
Iteration: 8, Func. Count: 86, Neg. LLF: 145.6814402406774
Iteration: 9, Func. Count: 96, Neg. LLF: 145.66873661990553
Iteration: 10, Func. Count: 106, Neg. LLF: 145.64536140794058
Iteration: 11, Func. Count: 116, Neg. LLF: 145.61254583235834
Iteration: 12, Func. Count: 126, Neg. LLF: 145.5613874106608
Iteration: 13, Func. Count: 136, Neg. LLF: 145.53340228069504
Iteration: 14, Func. Count: 146, Neg. LLF: 145.52448920088122
Iteration: 15, Func. Count: 156, Neg. LLF: 145.51808614687997
Iteration: 16, Func. Count: 166, Neg. LLF: 145.5179855634418
Iteration: 17, Func. Count: 176, Neg. LLF: 145.51797675242278
Iteration: 18, Func. Count: 186, Neg. LLF: 145.51797604030293
Optimization terminated successfully (Exit mode 0)
Current function value: 145.51797604030293
Iterations: 18
Function evaluations: 186
Gradient evaluations: 18
Iteration: 1, Func. Count: 12, Neg. LLF: 166.97981164917135
Iteration: 2, Func. Count: 25, Neg. LLF: 154.53785931663464
Iteration: 3, Func. Count: 37, Neg. LLF: 153.20288241039998
Iteration: 4, Func. Count: 49, Neg. LLF: 147.9635704116626
Iteration: 5, Func. Count: 61, Neg. LLF: 146.38629718918773
Iteration: 6, Func. Count: 73, Neg. LLF: 145.90271961294343
Iteration: 7, Func. Count: 84, Neg. LLF: 145.78894086372804
Iteration: 8, Func. Count: 95, Neg. LLF: 145.72810102875326
Iteration: 9, Func. Count: 106, Neg. LLF: 145.6937275564784
Iteration: 10, Func. Count: 117, Neg. LLF: 145.67773228339124
Iteration: 11, Func. Count: 128, Neg. LLF: 145.66390793370874
Iteration: 12, Func. Count: 139, Neg. LLF: 145.6298625633557
Iteration: 13, Func. Count: 150, Neg. LLF: 145.60515388914948
Iteration: 14, Func. Count: 161, Neg. LLF: 145.5666231603421
Iteration: 15, Func. Count: 172, Neg. LLF: 145.53128229780546
Iteration: 16, Func. Count: 183, Neg. LLF: 145.5248350632382
Iteration: 17, Func. Count: 194, Neg. LLF: 145.5213817683254
Iteration: 18, Func. Count: 205, Neg. LLF: 145.5189489026467
Iteration: 19, Func. Count: 216, Neg. LLF: 145.51807466752996
Iteration: 20, Func. Count: 227, Neg. LLF: 145.51797871104125
Iteration: 21, Func. Count: 238, Neg. LLF: 145.51797605201236
Iteration: 22, Func. Count: 248, Neg. LLF: 145.51797611069043
Optimization terminated successfully (Exit mode 0)
Current function value: 145.51797605201236
Iterations: 22
Function evaluations: 248
Gradient evaluations: 22
Iteration: 1, Func. Count: 13, Neg. LLF: 165.78083207546572
Iteration: 2, Func. Count: 26, Neg. LLF: 154.1502654215952
Iteration: 3, Func. Count: 39, Neg. LLF: 155.7066107172593
Iteration: 4, Func. Count: 52, Neg. LLF: 146.09068581403733
Iteration: 5, Func. Count: 64, Neg. LLF: 146.00218045612002
Iteration: 6, Func. Count: 76, Neg. LLF: 145.98253047006236
Iteration: 7, Func. Count: 89, Neg. LLF: 146.39401684215034
Iteration: 8, Func. Count: 102, Neg. LLF: 145.85837434643386
Iteration: 9, Func. Count: 114, Neg. LLF: 145.99700059709903
Iteration: 10, Func. Count: 127, Neg. LLF: 145.84955941356114
Iteration: 11, Func. Count: 139, Neg. LLF: 145.8468660230764
Iteration: 12, Func. Count: 151, Neg. LLF: 145.84585567066227
Iteration: 13, Func. Count: 163, Neg. LLF: 145.84544293399404
Iteration: 14, Func. Count: 175, Neg. LLF: 145.84539620595123
Iteration: 15, Func. Count: 187, Neg. LLF: 145.84538926512028
Iteration: 16, Func. Count: 199, Neg. LLF: 145.84537437635026
Iteration: 17, Func. Count: 211, Neg. LLF: 145.84533817337086
Iteration: 18, Func. Count: 223, Neg. LLF: 145.8452749094756
Iteration: 19, Func. Count: 235, Neg. LLF: 145.8451886106462
Iteration: 20, Func. Count: 247, Neg. LLF: 145.84512463018729
Iteration: 21, Func. Count: 259, Neg. LLF: 145.84510587658315
Iteration: 22, Func. Count: 271, Neg. LLF: 145.8451033685036
Iteration: 23, Func. Count: 282, Neg. LLF: 145.84510339748923
Optimization terminated successfully (Exit mode 0)
Current function value: 145.8451033685036
Iterations: 23
Function evaluations: 282
Gradient evaluations: 23
Iteration: 1, Func. Count: 14, Neg. LLF: 177.47947959561893
Iteration: 2, Func. Count: 29, Neg. LLF: 156.90439189347006
Iteration: 3, Func. Count: 44, Neg. LLF: 147.53324447020645
Iteration: 4, Func. Count: 58, Neg. LLF: 146.1570042850995
Iteration: 5, Func. Count: 71, Neg. LLF: 146.05214881859504
Iteration: 6, Func. Count: 84, Neg. LLF: 146.01305743823428
Iteration: 7, Func. Count: 97, Neg. LLF: 146.0378526455089
Iteration: 8, Func. Count: 111, Neg. LLF: 145.9379814114775
Iteration: 9, Func. Count: 124, Neg. LLF: 145.8208394757526
Iteration: 10, Func. Count: 137, Neg. LLF: 145.771737329989
Iteration: 11, Func. Count: 150, Neg. LLF: 145.72101692682918
Iteration: 12, Func. Count: 163, Neg. LLF: 145.68588912652228
Iteration: 13, Func. Count: 176, Neg. LLF: 145.6665531819827
Iteration: 14, Func. Count: 189, Neg. LLF: 145.62897690534754
Iteration: 15, Func. Count: 202, Neg. LLF: 145.59757306788103
Iteration: 16, Func. Count: 215, Neg. LLF: 145.56729742001698
Iteration: 17, Func. Count: 228, Neg. LLF: 145.54871578479376
Iteration: 18, Func. Count: 241, Neg. LLF: 145.53019296618643
Iteration: 19, Func. Count: 254, Neg. LLF: 145.52347749289447
Iteration: 20, Func. Count: 267, Neg. LLF: 145.5208943300755
Iteration: 21, Func. Count: 280, Neg. LLF: 145.51801701349692
Iteration: 22, Func. Count: 293, Neg. LLF: 145.5179777340615
Iteration: 23, Func. Count: 306, Neg. LLF: 145.5179761225201
Iteration: 24, Func. Count: 318, Neg. LLF: 145.5179761512673
Optimization terminated successfully (Exit mode 0)
Current function value: 145.5179761225201
Iterations: 24
Function evaluations: 318
Gradient evaluations: 24
Iteration: 1, Func. Count: 7, Neg. LLF: 150.17961013176654
Iteration: 2, Func. Count: 14, Neg. LLF: 148.8481002906342
Iteration: 3, Func. Count: 21, Neg. LLF: 146.86058153550567
Iteration: 4, Func. Count: 27, Neg. LLF: 147.46819052254983
Iteration: 5, Func. Count: 34, Neg. LLF: 148.90222175212045
Iteration: 6, Func. Count: 41, Neg. LLF: 146.55075378549148
Iteration: 7, Func. Count: 48, Neg. LLF: 146.42612684597665
Iteration: 8, Func. Count: 54, Neg. LLF: 146.34841055926242
Iteration: 9, Func. Count: 60, Neg. LLF: 146.2456096706234
Iteration: 10, Func. Count: 66, Neg. LLF: 146.09859522753771
Iteration: 11, Func. Count: 72, Neg. LLF: 146.0825545590739
Iteration: 12, Func. Count: 78, Neg. LLF: 146.07928004799777
Iteration: 13, Func. Count: 84, Neg. LLF: 146.0792368185437
Iteration: 14, Func. Count: 90, Neg. LLF: 146.07922275779183
Iteration: 15, Func. Count: 95, Neg. LLF: 146.07922275780314
Optimization terminated successfully (Exit mode 0)
Current function value: 146.07922275779183
Iterations: 15
Function evaluations: 95
Gradient evaluations: 15
Iteration: 1, Func. Count: 8, Neg. LLF: 155.27759507457245
Iteration: 2, Func. Count: 17, Neg. LLF: 155.85014370305626
Iteration: 3, Func. Count: 26, Neg. LLF: 146.34160279073774
Iteration: 4, Func. Count: 34, Neg. LLF: 146.25150246648687
Iteration: 5, Func. Count: 41, Neg. LLF: 146.25066754558307
Iteration: 6, Func. Count: 48, Neg. LLF: 146.24501813779
Iteration: 7, Func. Count: 55, Neg. LLF: 146.22902357430146
Iteration: 8, Func. Count: 62, Neg. LLF: 146.20287291209192
Iteration: 9, Func. Count: 69, Neg. LLF: 146.14582013440094
Iteration: 10, Func. Count: 76, Neg. LLF: 146.08282912865025
Iteration: 11, Func. Count: 83, Neg. LLF: 146.08218669620766
Iteration: 12, Func. Count: 90, Neg. LLF: 146.07980356698897
Iteration: 13, Func. Count: 97, Neg. LLF: 146.07944077911557
Iteration: 14, Func. Count: 104, Neg. LLF: 146.07933446390936
Iteration: 15, Func. Count: 111, Neg. LLF: 146.0792393410082
Iteration: 16, Func. Count: 118, Neg. LLF: 146.0792239024947
Iteration: 17, Func. Count: 125, Neg. LLF: 146.07922239422322
Iteration: 18, Func. Count: 131, Neg. LLF: 146.0792224001994
Optimization terminated successfully (Exit mode 0)
Current function value: 146.07922239422322
Iterations: 18
Function evaluations: 131
Gradient evaluations: 18
Iteration: 1, Func. Count: 9, Neg. LLF: 150.61404031079144
Iteration: 2, Func. Count: 19, Neg. LLF: 148.30609072190472
Iteration: 3, Func. Count: 28, Neg. LLF: 146.3810167591688
Iteration: 4, Func. Count: 37, Neg. LLF: 146.13991570638262
Iteration: 5, Func. Count: 45, Neg. LLF: 146.13851795211372
Iteration: 6, Func. Count: 53, Neg. LLF: 146.13825741898177
Iteration: 7, Func. Count: 61, Neg. LLF: 146.13651022760234
Iteration: 8, Func. Count: 69, Neg. LLF: 146.12739560699794
Iteration: 9, Func. Count: 77, Neg. LLF: 146.0912496842614
Iteration: 10, Func. Count: 85, Neg. LLF: 146.08064398128357
Iteration: 11, Func. Count: 93, Neg. LLF: 146.07932249227417
Iteration: 12, Func. Count: 101, Neg. LLF: 146.07924602870025
Iteration: 13, Func. Count: 109, Neg. LLF: 146.0792270003986
Iteration: 14, Func. Count: 117, Neg. LLF: 146.07922258734777
Iteration: 15, Func. Count: 124, Neg. LLF: 146.07922258756165
Optimization terminated successfully (Exit mode 0)
Current function value: 146.07922258734777
Iterations: 15
Function evaluations: 124
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 150.63705984559786
Iteration: 2, Func. Count: 21, Neg. LLF: 148.38193705427472
Iteration: 3, Func. Count: 31, Neg. LLF: 146.3613932446131
Iteration: 4, Func. Count: 41, Neg. LLF: 145.9165805303192
Iteration: 5, Func. Count: 50, Neg. LLF: 145.91392921363186
Iteration: 6, Func. Count: 59, Neg. LLF: 145.91359732821545
Iteration: 7, Func. Count: 68, Neg. LLF: 145.91357538110688
Iteration: 8, Func. Count: 77, Neg. LLF: 145.91348043263432
Iteration: 9, Func. Count: 86, Neg. LLF: 145.91330731046313
Iteration: 10, Func. Count: 95, Neg. LLF: 145.91302546063167
Iteration: 11, Func. Count: 104, Neg. LLF: 145.9127790014183
Iteration: 12, Func. Count: 113, Neg. LLF: 145.91267691052164
Iteration: 13, Func. Count: 122, Neg. LLF: 145.91266600969146
Iteration: 14, Func. Count: 130, Neg. LLF: 145.9126660096867
Optimization terminated successfully (Exit mode 0)
Current function value: 145.91266600969146
Iterations: 14
Function evaluations: 130
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 150.64543075301088
Iteration: 2, Func. Count: 23, Neg. LLF: 148.40976496948568
Iteration: 3, Func. Count: 34, Neg. LLF: 146.68750843654416
Iteration: 4, Func. Count: 45, Neg. LLF: 145.91906691305084
Iteration: 5, Func. Count: 55, Neg. LLF: 145.9139300484884
Iteration: 6, Func. Count: 65, Neg. LLF: 145.91359745711824
Iteration: 7, Func. Count: 75, Neg. LLF: 145.91357665236006
Iteration: 8, Func. Count: 85, Neg. LLF: 145.91348822455546
Iteration: 9, Func. Count: 95, Neg. LLF: 145.91323604088328
Iteration: 10, Func. Count: 105, Neg. LLF: 145.91294183255843
Iteration: 11, Func. Count: 115, Neg. LLF: 145.91271811291372
Iteration: 12, Func. Count: 125, Neg. LLF: 145.9126694759615
Iteration: 13, Func. Count: 135, Neg. LLF: 145.91266581524604
Iteration: 14, Func. Count: 144, Neg. LLF: 145.91266581687773
Optimization terminated successfully (Exit mode 0)
Current function value: 145.91266581524604
Iterations: 14
Function evaluations: 144
Gradient evaluations: 14
Iteration: 1, Func. Count: 8, Neg. LLF: 148.15126784608762
Iteration: 2, Func. Count: 16, Neg. LLF: 148.3730553392043
Iteration: 3, Func. Count: 24, Neg. LLF: 146.7879862065928
Iteration: 4, Func. Count: 32, Neg. LLF: 146.16673569886132
Iteration: 5, Func. Count: 39, Neg. LLF: 147.19274329860474
Iteration: 6, Func. Count: 47, Neg. LLF: 146.09757985635324
Iteration: 7, Func. Count: 54, Neg. LLF: 146.04840399672466
Iteration: 8, Func. Count: 61, Neg. LLF: 145.94245992474154
Iteration: 9, Func. Count: 68, Neg. LLF: 145.9234791727511
Iteration: 10, Func. Count: 75, Neg. LLF: 145.91816991949548
Iteration: 11, Func. Count: 82, Neg. LLF: 145.9179736324674
Iteration: 12, Func. Count: 89, Neg. LLF: 145.91797207915576
Iteration: 13, Func. Count: 95, Neg. LLF: 145.91797203927732
Optimization terminated successfully (Exit mode 0)
Current function value: 145.91797207915576
Iterations: 13
Function evaluations: 95
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 150.3246131106289
Iteration: 2, Func. Count: 19, Neg. LLF: 149.365821117753
Iteration: 3, Func. Count: 28, Neg. LLF: 151.9847757374068
Iteration: 4, Func. Count: 37, Neg. LLF: 146.09782224626466
Iteration: 5, Func. Count: 45, Neg. LLF: 146.09216981135626
Iteration: 6, Func. Count: 53, Neg. LLF: 146.07712572568494
Iteration: 7, Func. Count: 61, Neg. LLF: 146.0681116189743
Iteration: 8, Func. Count: 69, Neg. LLF: 146.04548364966448
Iteration: 9, Func. Count: 77, Neg. LLF: 146.02563038343544
Iteration: 10, Func. Count: 85, Neg. LLF: 145.96624906824294
Iteration: 11, Func. Count: 93, Neg. LLF: 145.93331199520807
Iteration: 12, Func. Count: 101, Neg. LLF: 145.92264451202647
Iteration: 13, Func. Count: 109, Neg. LLF: 145.91979331835412
Iteration: 14, Func. Count: 117, Neg. LLF: 145.91809682676796
Iteration: 15, Func. Count: 125, Neg. LLF: 145.9180184524514
Iteration: 16, Func. Count: 133, Neg. LLF: 145.91797438083913
Iteration: 17, Func. Count: 141, Neg. LLF: 145.91797241180254
Iteration: 18, Func. Count: 148, Neg. LLF: 145.9179724138409
Optimization terminated successfully (Exit mode 0)
Current function value: 145.91797241180254
Iterations: 18
Function evaluations: 148
Gradient evaluations: 18
Iteration: 1, Func. Count: 10, Neg. LLF: 150.6015005733508
Iteration: 2, Func. Count: 21, Neg. LLF: 146.72456577123097
Iteration: 3, Func. Count: 31, Neg. LLF: 151.2941890363237
Iteration: 4, Func. Count: 41, Neg. LLF: 146.08135529564277
Iteration: 5, Func. Count: 51, Neg. LLF: 145.9685034056423
Iteration: 6, Func. Count: 60, Neg. LLF: 145.96278378829737
Iteration: 7, Func. Count: 69, Neg. LLF: 145.96113398164476
Iteration: 8, Func. Count: 78, Neg. LLF: 145.96043905107433
Iteration: 9, Func. Count: 87, Neg. LLF: 145.95831072949835
Iteration: 10, Func. Count: 96, Neg. LLF: 145.95317910454324
Iteration: 11, Func. Count: 105, Neg. LLF: 145.94503444175075
Iteration: 12, Func. Count: 114, Neg. LLF: 145.93434191756555
Iteration: 13, Func. Count: 123, Neg. LLF: 145.92450763641804
Iteration: 14, Func. Count: 132, Neg. LLF: 145.91910898142663
Iteration: 15, Func. Count: 141, Neg. LLF: 145.91804592459135
Iteration: 16, Func. Count: 150, Neg. LLF: 145.9179752668281
Iteration: 17, Func. Count: 159, Neg. LLF: 145.91797156196313
Iteration: 18, Func. Count: 167, Neg. LLF: 145.91797156195233
Optimization terminated successfully (Exit mode 0)
Current function value: 145.91797156196313
Iterations: 18
Function evaluations: 167
Gradient evaluations: 18
Iteration: 1, Func. Count: 11, Neg. LLF: 150.62357375696217
Iteration: 2, Func. Count: 23, Neg. LLF: 148.36518831092496
Iteration: 3, Func. Count: 34, Neg. LLF: 148.5035104525817
Iteration: 4, Func. Count: 45, Neg. LLF: 146.29390705872447
Iteration: 5, Func. Count: 56, Neg. LLF: 145.90052683125654
Iteration: 6, Func. Count: 66, Neg. LLF: 145.89135140517973
Iteration: 7, Func. Count: 76, Neg. LLF: 145.89093578338233
Iteration: 8, Func. Count: 86, Neg. LLF: 145.89090764211298
Iteration: 9, Func. Count: 96, Neg. LLF: 145.89075825353137
Iteration: 10, Func. Count: 106, Neg. LLF: 145.89030483167716
Iteration: 11, Func. Count: 116, Neg. LLF: 145.88999394075253
Iteration: 12, Func. Count: 126, Neg. LLF: 145.88947176489847
Iteration: 13, Func. Count: 136, Neg. LLF: 145.8892543091494
Iteration: 14, Func. Count: 146, Neg. LLF: 145.88919554222227
Iteration: 15, Func. Count: 156, Neg. LLF: 145.88919142320907
Iteration: 16, Func. Count: 165, Neg. LLF: 145.88919142322598
Optimization terminated successfully (Exit mode 0)
Current function value: 145.88919142320907
Iterations: 16
Function evaluations: 165
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 150.6310820952692
Iteration: 2, Func. Count: 25, Neg. LLF: 148.3942244710821
Iteration: 3, Func. Count: 37, Neg. LLF: 147.98220724302496
Iteration: 4, Func. Count: 49, Neg. LLF: 146.0045440434229
Iteration: 5, Func. Count: 60, Neg. LLF: 145.89647993073442
Iteration: 6, Func. Count: 71, Neg. LLF: 145.891421564965
Iteration: 7, Func. Count: 82, Neg. LLF: 145.89098481593487
Iteration: 8, Func. Count: 93, Neg. LLF: 145.89093253169978
Iteration: 9, Func. Count: 104, Neg. LLF: 145.89088943650157
Iteration: 10, Func. Count: 115, Neg. LLF: 145.89071295269042
Iteration: 11, Func. Count: 126, Neg. LLF: 145.89039368999383
Iteration: 12, Func. Count: 137, Neg. LLF: 145.88986093344363
Iteration: 13, Func. Count: 148, Neg. LLF: 145.8894221308677
Iteration: 14, Func. Count: 159, Neg. LLF: 145.88922914111603
Iteration: 15, Func. Count: 170, Neg. LLF: 145.88919335571606
Iteration: 16, Func. Count: 181, Neg. LLF: 145.88919133167346
Iteration: 17, Func. Count: 191, Neg. LLF: 145.88919135019947
Optimization terminated successfully (Exit mode 0)
Current function value: 145.88919133167346
Iterations: 17
Function evaluations: 191
Gradient evaluations: 17
Iteration: 1, Func. Count: 9, Neg. LLF: 147.79689179389294
Iteration: 2, Func. Count: 18, Neg. LLF: 149.66872717730027
Iteration: 3, Func. Count: 27, Neg. LLF: 146.11870840086297
Iteration: 4, Func. Count: 35, Neg. LLF: 146.35779443585653
Iteration: 5, Func. Count: 44, Neg. LLF: 146.02004620775685
Iteration: 6, Func. Count: 52, Neg. LLF: 145.96613802606
Iteration: 7, Func. Count: 60, Neg. LLF: 145.93334574655623
Iteration: 8, Func. Count: 68, Neg. LLF: 145.90445864125311
Iteration: 9, Func. Count: 76, Neg. LLF: 145.8610507616219
Iteration: 10, Func. Count: 84, Neg. LLF: 145.85138807981994
Iteration: 11, Func. Count: 92, Neg. LLF: 145.84814762403883
Iteration: 12, Func. Count: 100, Neg. LLF: 145.84773936703846
Iteration: 13, Func. Count: 108, Neg. LLF: 145.84769655433055
Iteration: 14, Func. Count: 116, Neg. LLF: 145.84769219002266
Iteration: 15, Func. Count: 123, Neg. LLF: 145.84769215010263
Optimization terminated successfully (Exit mode 0)
Current function value: 145.84769219002266
Iterations: 15
Function evaluations: 123
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 148.89365827000609
Iteration: 2, Func. Count: 21, Neg. LLF: 148.75238019029632
Iteration: 3, Func. Count: 31, Neg. LLF: 159.50243343301918
Iteration: 4, Func. Count: 41, Neg. LLF: 146.12062558320517
Iteration: 5, Func. Count: 50, Neg. LLF: 146.15957896270473
Iteration: 6, Func. Count: 60, Neg. LLF: 146.09021767626072
Iteration: 7, Func. Count: 69, Neg. LLF: 146.08500095890744
Iteration: 8, Func. Count: 78, Neg. LLF: 146.05784101609436
Iteration: 9, Func. Count: 87, Neg. LLF: 145.98392910868628
Iteration: 10, Func. Count: 96, Neg. LLF: 145.89306938721876
Iteration: 11, Func. Count: 105, Neg. LLF: 145.86307115065134
Iteration: 12, Func. Count: 114, Neg. LLF: 145.85479803342622
Iteration: 13, Func. Count: 123, Neg. LLF: 145.85036830249217
Iteration: 14, Func. Count: 132, Neg. LLF: 145.8490058771199
Iteration: 15, Func. Count: 141, Neg. LLF: 145.8479991905175
Iteration: 16, Func. Count: 150, Neg. LLF: 145.84776969606946
Iteration: 17, Func. Count: 159, Neg. LLF: 145.84772487555463
Iteration: 18, Func. Count: 168, Neg. LLF: 145.84770484593597
Iteration: 19, Func. Count: 177, Neg. LLF: 145.84769664120523
Iteration: 20, Func. Count: 186, Neg. LLF: 145.84769372694365
Iteration: 21, Func. Count: 195, Neg. LLF: 145.84769228817845
Iteration: 22, Func. Count: 203, Neg. LLF: 145.84769229344184
Optimization terminated successfully (Exit mode 0)
Current function value: 145.84769228817845
Iterations: 22
Function evaluations: 203
Gradient evaluations: 22
Iteration: 1, Func. Count: 11, Neg. LLF: 150.60992229021295
Iteration: 2, Func. Count: 23, Neg. LLF: 146.33985822508663
Iteration: 3, Func. Count: 34, Neg. LLF: 153.51473860178666
Iteration: 4, Func. Count: 46, Neg. LLF: 145.9867036086742
Iteration: 5, Func. Count: 56, Neg. LLF: 145.9456672441045
Iteration: 6, Func. Count: 66, Neg. LLF: 145.94324807642917
Iteration: 7, Func. Count: 76, Neg. LLF: 145.94112538045357
Iteration: 8, Func. Count: 86, Neg. LLF: 145.92853236272097
Iteration: 9, Func. Count: 96, Neg. LLF: 145.90447648517963
Iteration: 10, Func. Count: 106, Neg. LLF: 145.88170160152316
Iteration: 11, Func. Count: 116, Neg. LLF: 145.8707206780082
Iteration: 12, Func. Count: 126, Neg. LLF: 145.86499367930867
Iteration: 13, Func. Count: 136, Neg. LLF: 145.85181398305986
Iteration: 14, Func. Count: 146, Neg. LLF: 145.84849208812466
Iteration: 15, Func. Count: 156, Neg. LLF: 145.84819211016398
Iteration: 16, Func. Count: 166, Neg. LLF: 145.84811372120362
Iteration: 17, Func. Count: 175, Neg. LLF: 145.84811373365628
Optimization terminated successfully (Exit mode 0)
Current function value: 145.84811372120362
Iterations: 17
Function evaluations: 175
Gradient evaluations: 17
Iteration: 1, Func. Count: 12, Neg. LLF: 150.63138801566032
Iteration: 2, Func. Count: 25, Neg. LLF: 148.36764995982585
Iteration: 3, Func. Count: 37, Neg. LLF: 148.61086599478162
Iteration: 4, Func. Count: 49, Neg. LLF: 146.1861454318991
Iteration: 5, Func. Count: 61, Neg. LLF: 145.8849596384937
Iteration: 6, Func. Count: 72, Neg. LLF: 145.8797391634485
Iteration: 7, Func. Count: 83, Neg. LLF: 145.87186594540074
Iteration: 8, Func. Count: 94, Neg. LLF: 145.87124378094046
Iteration: 9, Func. Count: 105, Neg. LLF: 145.87097342920626
Iteration: 10, Func. Count: 116, Neg. LLF: 145.86948468039293
Iteration: 11, Func. Count: 127, Neg. LLF: 145.8629608069911
Iteration: 12, Func. Count: 138, Neg. LLF: 145.85481662712914
Iteration: 13, Func. Count: 149, Neg. LLF: 145.8515375153923
Iteration: 14, Func. Count: 160, Neg. LLF: 145.84878994580131
Iteration: 15, Func. Count: 171, Neg. LLF: 145.8481595779372
Iteration: 16, Func. Count: 182, Neg. LLF: 145.84792611021982
Iteration: 17, Func. Count: 193, Neg. LLF: 145.8478316546824
Iteration: 18, Func. Count: 204, Neg. LLF: 145.84772419780276
Iteration: 19, Func. Count: 215, Neg. LLF: 145.8476949794727
Iteration: 20, Func. Count: 226, Neg. LLF: 145.84769215323266
Iteration: 21, Func. Count: 236, Neg. LLF: 145.8476921550819
Optimization terminated successfully (Exit mode 0)
Current function value: 145.84769215323266
Iterations: 21
Function evaluations: 236
Gradient evaluations: 21
Iteration: 1, Func. Count: 13, Neg. LLF: 150.63882801497715
Iteration: 2, Func. Count: 27, Neg. LLF: 148.11214602157528
Iteration: 3, Func. Count: 40, Neg. LLF: 151.05659295030028
Iteration: 4, Func. Count: 53, Neg. LLF: 146.10594397360748
Iteration: 5, Func. Count: 66, Neg. LLF: 145.88775884083827
Iteration: 6, Func. Count: 78, Neg. LLF: 145.89482730172918
Iteration: 7, Func. Count: 91, Neg. LLF: 145.872222796459
Iteration: 8, Func. Count: 103, Neg. LLF: 145.87138106630533
Iteration: 9, Func. Count: 115, Neg. LLF: 145.87063700252025
Iteration: 10, Func. Count: 127, Neg. LLF: 145.86999948773544
Iteration: 11, Func. Count: 139, Neg. LLF: 145.8694585296814
Iteration: 12, Func. Count: 151, Neg. LLF: 145.86784355282353
Iteration: 13, Func. Count: 163, Neg. LLF: 145.8646605832976
Iteration: 14, Func. Count: 175, Neg. LLF: 145.85923995684863
Iteration: 15, Func. Count: 187, Neg. LLF: 145.85324970917955
Iteration: 16, Func. Count: 199, Neg. LLF: 145.84922491049463
Iteration: 17, Func. Count: 211, Neg. LLF: 145.8482768189411
Iteration: 18, Func. Count: 223, Neg. LLF: 145.84800427829185
Iteration: 19, Func. Count: 235, Neg. LLF: 145.84787652587093
Iteration: 20, Func. Count: 247, Neg. LLF: 145.8477426208002
Iteration: 21, Func. Count: 259, Neg. LLF: 145.8476971715823
Iteration: 22, Func. Count: 271, Neg. LLF: 145.84769199850146
Iteration: 23, Func. Count: 282, Neg. LLF: 145.84769200865222
Optimization terminated successfully (Exit mode 0)
Current function value: 145.84769199850146
Iterations: 23
Function evaluations: 282
Gradient evaluations: 23
Iteration: 1, Func. Count: 10, Neg. LLF: 148.88903036977294
Iteration: 2, Func. Count: 20, Neg. LLF: 149.84859783938504
Iteration: 3, Func. Count: 30, Neg. LLF: 147.81397695785043
Iteration: 4, Func. Count: 40, Neg. LLF: 146.18800647834306
Iteration: 5, Func. Count: 49, Neg. LLF: 146.00856536724882
Iteration: 6, Func. Count: 58, Neg. LLF: 146.16089055749592
Iteration: 7, Func. Count: 68, Neg. LLF: 145.92516599990898
Iteration: 8, Func. Count: 77, Neg. LLF: 145.9014699698805
Iteration: 9, Func. Count: 86, Neg. LLF: 145.88043170839822
Iteration: 10, Func. Count: 95, Neg. LLF: 145.84794954890955
Iteration: 11, Func. Count: 104, Neg. LLF: 145.83161423059917
Iteration: 12, Func. Count: 113, Neg. LLF: 145.82013562248594
Iteration: 13, Func. Count: 122, Neg. LLF: 145.8069081766203
Iteration: 14, Func. Count: 131, Neg. LLF: 145.80375085245817
Iteration: 15, Func. Count: 140, Neg. LLF: 145.8035028455014
Iteration: 16, Func. Count: 149, Neg. LLF: 145.8034719324218
Iteration: 17, Func. Count: 158, Neg. LLF: 145.8034713088372
Optimization terminated successfully (Exit mode 0)
Current function value: 145.8034713088372
Iterations: 17
Function evaluations: 158
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 156.40560321419747
Iteration: 2, Func. Count: 23, Neg. LLF: 152.92065786953037
Iteration: 3, Func. Count: 34, Neg. LLF: 155.6354802113256
Iteration: 4, Func. Count: 46, Neg. LLF: 146.13972833360873
Iteration: 5, Func. Count: 57, Neg. LLF: 146.09076963012544
Iteration: 6, Func. Count: 68, Neg. LLF: 145.96340018108106
Iteration: 7, Func. Count: 78, Neg. LLF: 145.95912395246378
Iteration: 8, Func. Count: 88, Neg. LLF: 145.95875689301465
Iteration: 9, Func. Count: 98, Neg. LLF: 145.95861179072247
Iteration: 10, Func. Count: 108, Neg. LLF: 145.95837966171547
Iteration: 11, Func. Count: 118, Neg. LLF: 145.957808857781
Iteration: 12, Func. Count: 128, Neg. LLF: 145.95685870093715
Iteration: 13, Func. Count: 138, Neg. LLF: 145.95563841206365
Iteration: 14, Func. Count: 148, Neg. LLF: 145.9547338659565
Iteration: 15, Func. Count: 158, Neg. LLF: 145.95449346328698
Iteration: 16, Func. Count: 168, Neg. LLF: 145.95447289869446
Iteration: 17, Func. Count: 178, Neg. LLF: 145.95446923559254
Iteration: 18, Func. Count: 188, Neg. LLF: 145.95446754267232
Iteration: 19, Func. Count: 197, Neg. LLF: 145.95446754265112
Optimization terminated successfully (Exit mode 0)
Current function value: 145.95446754267232
Iterations: 19
Function evaluations: 197
Gradient evaluations: 19
Iteration: 1, Func. Count: 12, Neg. LLF: 150.87604111036748
Iteration: 2, Func. Count: 25, Neg. LLF: 148.31571802094143
Iteration: 3, Func. Count: 37, Neg. LLF: 150.63183166384286
Iteration: 4, Func. Count: 50, Neg. LLF: 146.59094462552585
Iteration: 5, Func. Count: 62, Neg. LLF: 145.94162587972104
Iteration: 6, Func. Count: 73, Neg. LLF: 145.93137457762555
Iteration: 7, Func. Count: 84, Neg. LLF: 145.919093944492
Iteration: 8, Func. Count: 95, Neg. LLF: 145.9124309619427
Iteration: 9, Func. Count: 106, Neg. LLF: 145.91250786291883
Iteration: 10, Func. Count: 118, Neg. LLF: 145.9120075937967
Iteration: 11, Func. Count: 129, Neg. LLF: 145.91197662442326
Iteration: 12, Func. Count: 140, Neg. LLF: 145.91184163572984
Iteration: 13, Func. Count: 151, Neg. LLF: 145.91152003737358
Iteration: 14, Func. Count: 162, Neg. LLF: 145.91027417022153
Iteration: 15, Func. Count: 173, Neg. LLF: 145.86976716410751
Iteration: 16, Func. Count: 184, Neg. LLF: 145.8470455491348
Iteration: 17, Func. Count: 195, Neg. LLF: 145.82579350864188
Iteration: 18, Func. Count: 206, Neg. LLF: 145.8221330321047
Iteration: 19, Func. Count: 217, Neg. LLF: 145.81560753101155
Iteration: 20, Func. Count: 228, Neg. LLF: 145.8067293464704
Iteration: 21, Func. Count: 239, Neg. LLF: 145.8040797204498
Iteration: 22, Func. Count: 250, Neg. LLF: 145.80359928747774
Iteration: 23, Func. Count: 261, Neg. LLF: 145.8034901954827
Iteration: 24, Func. Count: 272, Neg. LLF: 145.8034721303341
Iteration: 25, Func. Count: 283, Neg. LLF: 145.80347124498718
Optimization terminated successfully (Exit mode 0)
Current function value: 145.80347124498718
Iterations: 25
Function evaluations: 283
Gradient evaluations: 25
Iteration: 1, Func. Count: 13, Neg. LLF: 150.7757661666188
Iteration: 2, Func. Count: 27, Neg. LLF: 148.9570351682093
Iteration: 3, Func. Count: 40, Neg. LLF: 147.78040465227136
Iteration: 4, Func. Count: 53, Neg. LLF: 146.75203470536556
Iteration: 5, Func. Count: 66, Neg. LLF: 145.91524398430272
Iteration: 6, Func. Count: 78, Neg. LLF: 145.88709826358598
Iteration: 7, Func. Count: 90, Neg. LLF: 145.87156667889155
Iteration: 8, Func. Count: 102, Neg. LLF: 145.8694704173265
Iteration: 9, Func. Count: 114, Neg. LLF: 145.86907211838252
Iteration: 10, Func. Count: 126, Neg. LLF: 145.8685610344212
Iteration: 11, Func. Count: 138, Neg. LLF: 145.86738122331153
Iteration: 12, Func. Count: 150, Neg. LLF: 145.86421770892147
Iteration: 13, Func. Count: 162, Neg. LLF: 145.85875582359245
Iteration: 14, Func. Count: 174, Neg. LLF: 145.85187541328906
Iteration: 15, Func. Count: 186, Neg. LLF: 145.84286232938453
Iteration: 16, Func. Count: 198, Neg. LLF: 145.83495690483855
Iteration: 17, Func. Count: 210, Neg. LLF: 145.8228164989023
Iteration: 18, Func. Count: 222, Neg. LLF: 145.80785445444715
Iteration: 19, Func. Count: 234, Neg. LLF: 145.80625422240567
Iteration: 20, Func. Count: 246, Neg. LLF: 145.80356294422427
Iteration: 21, Func. Count: 258, Neg. LLF: 145.80350843953534
Iteration: 22, Func. Count: 270, Neg. LLF: 145.8034717983771
Iteration: 23, Func. Count: 281, Neg. LLF: 145.8034718088558
Optimization terminated successfully (Exit mode 0)
Current function value: 145.8034717983771
Iterations: 23
Function evaluations: 281
Gradient evaluations: 23
Iteration: 1, Func. Count: 14, Neg. LLF: 150.71722422614312
Iteration: 2, Func. Count: 29, Neg. LLF: 148.25739861145777
Iteration: 3, Func. Count: 43, Neg. LLF: 148.2297687289402
Iteration: 4, Func. Count: 57, Neg. LLF: 146.31807095438586
Iteration: 5, Func. Count: 71, Neg. LLF: 145.96608689582217
Iteration: 6, Func. Count: 84, Neg. LLF: 145.8962035827946
Iteration: 7, Func. Count: 97, Neg. LLF: 145.8708177764606
Iteration: 8, Func. Count: 110, Neg. LLF: 145.8712669400093
Iteration: 9, Func. Count: 124, Neg. LLF: 145.86866156853299
Iteration: 10, Func. Count: 137, Neg. LLF: 145.86793760619082
Iteration: 11, Func. Count: 150, Neg. LLF: 145.86679583645105
Iteration: 12, Func. Count: 163, Neg. LLF: 145.863646962173
Iteration: 13, Func. Count: 176, Neg. LLF: 145.85837887333258
Iteration: 14, Func. Count: 189, Neg. LLF: 145.84940404404372
Iteration: 15, Func. Count: 202, Neg. LLF: 145.8379313568494
Iteration: 16, Func. Count: 215, Neg. LLF: 145.82722248812567
Iteration: 17, Func. Count: 228, Neg. LLF: 145.81367887809824
Iteration: 18, Func. Count: 241, Neg. LLF: 145.80951384357408
Iteration: 19, Func. Count: 254, Neg. LLF: 145.80409057125541
Iteration: 20, Func. Count: 267, Neg. LLF: 145.80369633451323
Iteration: 21, Func. Count: 280, Neg. LLF: 145.80354359573516
Iteration: 22, Func. Count: 293, Neg. LLF: 145.80347818721083
Iteration: 23, Func. Count: 306, Neg. LLF: 145.80347161465033
Iteration: 24, Func. Count: 318, Neg. LLF: 145.80347161584902
Optimization terminated successfully (Exit mode 0)
Current function value: 145.80347161465033
Iterations: 24
Function evaluations: 318
Gradient evaluations: 24
Iteration: 1, Func. Count: 11, Neg. LLF: 148.59102017353771
Iteration: 2, Func. Count: 22, Neg. LLF: 150.00135982739377
Iteration: 3, Func. Count: 34, Neg. LLF: 147.92185127113405
Iteration: 4, Func. Count: 45, Neg. LLF: 146.3301929538935
Iteration: 5, Func. Count: 56, Neg. LLF: 145.94036564229526
Iteration: 6, Func. Count: 66, Neg. LLF: 145.84746400610592
Iteration: 7, Func. Count: 76, Neg. LLF: 145.9773703317933
Iteration: 8, Func. Count: 87, Neg. LLF: 145.7471418708942
Iteration: 9, Func. Count: 97, Neg. LLF: 145.74600538024836
Iteration: 10, Func. Count: 107, Neg. LLF: 145.74543248091976
Iteration: 11, Func. Count: 117, Neg. LLF: 145.74450181702562
Iteration: 12, Func. Count: 127, Neg. LLF: 145.74292680930677
Iteration: 13, Func. Count: 137, Neg. LLF: 145.73587190777116
Iteration: 14, Func. Count: 147, Neg. LLF: 145.73404558035224
Iteration: 15, Func. Count: 157, Neg. LLF: 145.73390162848622
Iteration: 16, Func. Count: 167, Neg. LLF: 145.73389606185165
Iteration: 17, Func. Count: 176, Neg. LLF: 145.733896061827
Optimization terminated successfully (Exit mode 0)
Current function value: 145.73389606185165
Iterations: 17
Function evaluations: 176
Gradient evaluations: 17
Iteration: 1, Func. Count: 12, Neg. LLF: 162.05348173430465
Iteration: 2, Func. Count: 25, Neg. LLF: 150.55744668139462
Iteration: 3, Func. Count: 37, Neg. LLF: 150.785801561394
Iteration: 4, Func. Count: 49, Neg. LLF: 156.60451554005317
Iteration: 5, Func. Count: 61, Neg. LLF: 145.73770776514294
Iteration: 6, Func. Count: 73, Neg. LLF: 145.4211341720679
Iteration: 7, Func. Count: 84, Neg. LLF: 145.38872425307216
Iteration: 8, Func. Count: 95, Neg. LLF: 146.1833999110421
Iteration: 9, Func. Count: 107, Neg. LLF: 145.36394796994136
Iteration: 10, Func. Count: 118, Neg. LLF: 145.3495583962774
Iteration: 11, Func. Count: 129, Neg. LLF: 145.3281785738758
Iteration: 12, Func. Count: 140, Neg. LLF: 145.2973330569631
Iteration: 13, Func. Count: 151, Neg. LLF: 145.28704498657441
Iteration: 14, Func. Count: 162, Neg. LLF: 145.2632792431478
Iteration: 15, Func. Count: 173, Neg. LLF: 145.25597516133138
Iteration: 16, Func. Count: 184, Neg. LLF: 145.25571173251322
Iteration: 17, Func. Count: 195, Neg. LLF: 145.25571027135828
Iteration: 18, Func. Count: 205, Neg. LLF: 145.25571027109982
Optimization terminated successfully (Exit mode 0)
Current function value: 145.25571027135828
Iterations: 18
Function evaluations: 205
Gradient evaluations: 18
Iteration: 1, Func. Count: 13, Neg. LLF: 150.87806660011026
Iteration: 2, Func. Count: 27, Neg. LLF: 148.32062748668588
Iteration: 3, Func. Count: 40, Neg. LLF: 150.51791812794588
Iteration: 4, Func. Count: 53, Neg. LLF: 146.21999690182713
Iteration: 5, Func. Count: 66, Neg. LLF: 146.1739811236445
Iteration: 6, Func. Count: 79, Neg. LLF: 145.72805908203844
Iteration: 7, Func. Count: 91, Neg. LLF: 145.68927176419155
Iteration: 8, Func. Count: 103, Neg. LLF: 145.68615813497746
Iteration: 9, Func. Count: 116, Neg. LLF: 145.66276561063134
Iteration: 10, Func. Count: 128, Neg. LLF: 145.6391954233312
Iteration: 11, Func. Count: 140, Neg. LLF: 145.58518266375432
Iteration: 12, Func. Count: 152, Neg. LLF: 145.51255980615613
Iteration: 13, Func. Count: 164, Neg. LLF: 145.46021624720325
Iteration: 14, Func. Count: 176, Neg. LLF: 145.36208722453287
Iteration: 15, Func. Count: 188, Neg. LLF: 145.27943909053997
Iteration: 16, Func. Count: 200, Neg. LLF: 145.26234388555898
Iteration: 17, Func. Count: 212, Neg. LLF: 145.25715389129468
Iteration: 18, Func. Count: 224, Neg. LLF: 145.25572827514358
Iteration: 19, Func. Count: 236, Neg. LLF: 145.25571877946575
Iteration: 20, Func. Count: 248, Neg. LLF: 145.25571020197947
Iteration: 21, Func. Count: 259, Neg. LLF: 145.255710244672
Optimization terminated successfully (Exit mode 0)
Current function value: 145.25571020197947
Iterations: 21
Function evaluations: 259
Gradient evaluations: 21
Iteration: 1, Func. Count: 14, Neg. LLF: 150.77800654727585
Iteration: 2, Func. Count: 29, Neg. LLF: 148.9617919235742
Iteration: 3, Func. Count: 43, Neg. LLF: 147.73050453112285
Iteration: 4, Func. Count: 57, Neg. LLF: 146.7708649866003
Iteration: 5, Func. Count: 71, Neg. LLF: 145.95389373716029
Iteration: 6, Func. Count: 84, Neg. LLF: 145.74172198964152
Iteration: 7, Func. Count: 97, Neg. LLF: 145.75655669025704
Iteration: 8, Func. Count: 111, Neg. LLF: 145.69059317759246
Iteration: 9, Func. Count: 124, Neg. LLF: 145.67619502193477
Iteration: 10, Func. Count: 137, Neg. LLF: 145.65803054620798
Iteration: 11, Func. Count: 150, Neg. LLF: 145.61823721213983
Iteration: 12, Func. Count: 163, Neg. LLF: 145.55963434699524
Iteration: 13, Func. Count: 176, Neg. LLF: 145.38917731069625
Iteration: 14, Func. Count: 189, Neg. LLF: 145.32442827105135
Iteration: 15, Func. Count: 202, Neg. LLF: 145.26892996026245
Iteration: 16, Func. Count: 215, Neg. LLF: 145.25998448098133
Iteration: 17, Func. Count: 228, Neg. LLF: 145.2557594753623
Iteration: 18, Func. Count: 241, Neg. LLF: 145.25571145183804
Iteration: 19, Func. Count: 254, Neg. LLF: 145.25571011509825
Iteration: 20, Func. Count: 266, Neg. LLF: 145.25571019205194
Optimization terminated successfully (Exit mode 0)
Current function value: 145.25571011509825
Iterations: 20
Function evaluations: 266
Gradient evaluations: 20
Iteration: 1, Func. Count: 15, Neg. LLF: 150.7202936147875
Iteration: 2, Func. Count: 31, Neg. LLF: 148.29425104029318
Iteration: 3, Func. Count: 46, Neg. LLF: 148.07399608198187
Iteration: 4, Func. Count: 61, Neg. LLF: 146.32542949749208
Iteration: 5, Func. Count: 76, Neg. LLF: 145.86243076504218
Iteration: 6, Func. Count: 90, Neg. LLF: 145.79354456800206
Iteration: 7, Func. Count: 104, Neg. LLF: 145.83996851458093
Iteration: 8, Func. Count: 119, Neg. LLF: 145.73807631215485
Iteration: 9, Func. Count: 133, Neg. LLF: 145.758846342917
Iteration: 10, Func. Count: 148, Neg. LLF: 145.6951405999283
Iteration: 11, Func. Count: 162, Neg. LLF: 145.6826363854025
Iteration: 12, Func. Count: 176, Neg. LLF: 145.66081453917474
Iteration: 13, Func. Count: 190, Neg. LLF: 145.62331175655132
Iteration: 14, Func. Count: 204, Neg. LLF: 145.50338205502365
Iteration: 15, Func. Count: 218, Neg. LLF: 145.37246845421612
Iteration: 16, Func. Count: 232, Neg. LLF: 145.29268405306743
Iteration: 17, Func. Count: 246, Neg. LLF: 145.27327822475434
Iteration: 18, Func. Count: 260, Neg. LLF: 145.2617636043569
Iteration: 19, Func. Count: 274, Neg. LLF: 145.2558082383724
Iteration: 20, Func. Count: 288, Neg. LLF: 145.25572010795506
Iteration: 21, Func. Count: 302, Neg. LLF: 145.25571103823202
Iteration: 22, Func. Count: 316, Neg. LLF: 145.25571009004537
Optimization terminated successfully (Exit mode 0)
Current function value: 145.25571009004537
Iterations: 22
Function evaluations: 316
Gradient evaluations: 22
Iteration: 1, Func. Count: 8, Neg. LLF: 150.08060547949162
Iteration: 2, Func. Count: 16, Neg. LLF: 148.97900164977418
Iteration: 3, Func. Count: 24, Neg. LLF: 146.71965980089303
Iteration: 4, Func. Count: 31, Neg. LLF: 148.46146380814167
Iteration: 5, Func. Count: 39, Neg. LLF: 146.60575679499556
Iteration: 6, Func. Count: 47, Neg. LLF: 146.52240217589815
Iteration: 7, Func. Count: 55, Neg. LLF: 146.38193915169552
Iteration: 8, Func. Count: 62, Neg. LLF: 146.154722942944
Iteration: 9, Func. Count: 69, Neg. LLF: 146.08406612334173
Iteration: 10, Func. Count: 76, Neg. LLF: 146.07936857531598
Iteration: 11, Func. Count: 83, Neg. LLF: 146.07922422467712
Iteration: 12, Func. Count: 90, Neg. LLF: 146.07922237276443
Iteration: 13, Func. Count: 96, Neg. LLF: 146.07922241373464
Optimization terminated successfully (Exit mode 0)
Current function value: 146.07922237276443
Iterations: 13
Function evaluations: 96
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 155.21406763819047
Iteration: 2, Func. Count: 19, Neg. LLF: 155.8536046039231
Iteration: 3, Func. Count: 29, Neg. LLF: 146.3817728869826
Iteration: 4, Func. Count: 38, Neg. LLF: 146.25127541034553
Iteration: 5, Func. Count: 46, Neg. LLF: 146.2504477265183
Iteration: 6, Func. Count: 54, Neg. LLF: 146.24538062756355
Iteration: 7, Func. Count: 62, Neg. LLF: 146.23447371255264
Iteration: 8, Func. Count: 70, Neg. LLF: 146.21078856737594
Iteration: 9, Func. Count: 78, Neg. LLF: 146.16798510978492
Iteration: 10, Func. Count: 86, Neg. LLF: 146.08295447210944
Iteration: 11, Func. Count: 94, Neg. LLF: 146.08213256888524
Iteration: 12, Func. Count: 102, Neg. LLF: 146.07979644889167
Iteration: 13, Func. Count: 110, Neg. LLF: 146.0793521554197
Iteration: 14, Func. Count: 118, Neg. LLF: 146.07929403604837
Iteration: 15, Func. Count: 126, Neg. LLF: 146.07922269898026
Iteration: 16, Func. Count: 133, Neg. LLF: 146.07922270491113
Optimization terminated successfully (Exit mode 0)
Current function value: 146.07922269898026
Iterations: 16
Function evaluations: 133
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 155.7862238975419
Iteration: 2, Func. Count: 21, Neg. LLF: 157.08685794647255
Iteration: 3, Func. Count: 31, Neg. LLF: 146.33214369113972
Iteration: 4, Func. Count: 41, Neg. LLF: 146.2205721151552
Iteration: 5, Func. Count: 50, Neg. LLF: 146.2172639480802
Iteration: 6, Func. Count: 59, Neg. LLF: 146.21584190742973
Iteration: 7, Func. Count: 68, Neg. LLF: 146.2068684195392
Iteration: 8, Func. Count: 77, Neg. LLF: 146.16917721176452
Iteration: 9, Func. Count: 86, Neg. LLF: 146.13497443370898
Iteration: 10, Func. Count: 95, Neg. LLF: 146.10702663929618
Iteration: 11, Func. Count: 104, Neg. LLF: 146.09388132787376
Iteration: 12, Func. Count: 113, Neg. LLF: 146.0868234938839
Iteration: 13, Func. Count: 122, Neg. LLF: 146.0840973318228
Iteration: 14, Func. Count: 131, Neg. LLF: 146.079641850553
Iteration: 15, Func. Count: 140, Neg. LLF: 146.079259019754
Iteration: 16, Func. Count: 149, Neg. LLF: 146.0792230156721
Iteration: 17, Func. Count: 158, Neg. LLF: 146.07922237884165
Optimization terminated successfully (Exit mode 0)
Current function value: 146.07922237884165
Iterations: 17
Function evaluations: 158
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 155.88229909003118
Iteration: 2, Func. Count: 23, Neg. LLF: 157.59423713746892
Iteration: 3, Func. Count: 34, Neg. LLF: 146.14725104564968
Iteration: 4, Func. Count: 44, Neg. LLF: 145.98957624302724
Iteration: 5, Func. Count: 54, Neg. LLF: 146.2443906343271
Iteration: 6, Func. Count: 66, Neg. LLF: 145.9734656244568
Iteration: 7, Func. Count: 76, Neg. LLF: 145.97114300264388
Iteration: 8, Func. Count: 86, Neg. LLF: 145.96738362132828
Iteration: 9, Func. Count: 96, Neg. LLF: 145.94485221934238
Iteration: 10, Func. Count: 106, Neg. LLF: 145.92001359196018
Iteration: 11, Func. Count: 116, Neg. LLF: 145.91386811054207
Iteration: 12, Func. Count: 126, Neg. LLF: 145.91278822758537
Iteration: 13, Func. Count: 136, Neg. LLF: 145.91267548365389
Iteration: 14, Func. Count: 146, Neg. LLF: 145.91266619827024
Iteration: 15, Func. Count: 155, Neg. LLF: 145.91266619823057
Optimization terminated successfully (Exit mode 0)
Current function value: 145.91266619827024
Iterations: 15
Function evaluations: 155
Gradient evaluations: 15
Iteration: 1, Func. Count: 12, Neg. LLF: 155.91626144858614
Iteration: 2, Func. Count: 25, Neg. LLF: 157.70226738708791
Iteration: 3, Func. Count: 37, Neg. LLF: 146.16203419601518
Iteration: 4, Func. Count: 48, Neg. LLF: 145.99584907823086
Iteration: 5, Func. Count: 59, Neg. LLF: 146.78876707811315
Iteration: 6, Func. Count: 72, Neg. LLF: 145.94112313572387
Iteration: 7, Func. Count: 83, Neg. LLF: 145.93912729939643
Iteration: 8, Func. Count: 94, Neg. LLF: 145.93822347836482
Iteration: 9, Func. Count: 105, Neg. LLF: 145.93758012699755
Iteration: 10, Func. Count: 116, Neg. LLF: 145.93373667791633
Iteration: 11, Func. Count: 127, Neg. LLF: 145.92243954230906
Iteration: 12, Func. Count: 138, Neg. LLF: 145.91572609325632
Iteration: 13, Func. Count: 149, Neg. LLF: 145.91272482320775
Iteration: 14, Func. Count: 160, Neg. LLF: 145.91268310632944
Iteration: 15, Func. Count: 171, Neg. LLF: 145.9126681339162
Iteration: 16, Func. Count: 182, Neg. LLF: 145.91266606151032
Iteration: 17, Func. Count: 192, Neg. LLF: 145.9126660631681
Optimization terminated successfully (Exit mode 0)
Current function value: 145.91266606151032
Iterations: 17
Function evaluations: 192
Gradient evaluations: 17
Iteration: 1, Func. Count: 9, Neg. LLF: 148.53310942169355
Iteration: 2, Func. Count: 18, Neg. LLF: 149.9740997668569
Iteration: 3, Func. Count: 27, Neg. LLF: 147.63000971502368
Iteration: 4, Func. Count: 36, Neg. LLF: 146.2091974602979
Iteration: 5, Func. Count: 44, Neg. LLF: 148.29893216659246
Iteration: 6, Func. Count: 53, Neg. LLF: 146.12143310865127
Iteration: 7, Func. Count: 61, Neg. LLF: 146.07446004830038
Iteration: 8, Func. Count: 69, Neg. LLF: 146.01057388880744
Iteration: 9, Func. Count: 77, Neg. LLF: 145.94408953986903
Iteration: 10, Func. Count: 85, Neg. LLF: 145.922047207203
Iteration: 11, Func. Count: 93, Neg. LLF: 145.9180960799662
Iteration: 12, Func. Count: 101, Neg. LLF: 145.91797797051592
Iteration: 13, Func. Count: 109, Neg. LLF: 145.917972315978
Iteration: 14, Func. Count: 116, Neg. LLF: 145.91797227608163
Optimization terminated successfully (Exit mode 0)
Current function value: 145.917972315978
Iterations: 14
Function evaluations: 116
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 150.3868161473269
Iteration: 2, Func. Count: 21, Neg. LLF: 149.40707788786102
Iteration: 3, Func. Count: 31, Neg. LLF: 150.16847570778086
Iteration: 4, Func. Count: 41, Neg. LLF: 146.09943502779146
Iteration: 5, Func. Count: 50, Neg. LLF: 146.1188841957666
Iteration: 6, Func. Count: 60, Neg. LLF: 146.08979077416208
Iteration: 7, Func. Count: 69, Neg. LLF: 146.07712006981117
Iteration: 8, Func. Count: 78, Neg. LLF: 146.0383742101585
Iteration: 9, Func. Count: 87, Neg. LLF: 145.9960422066116
Iteration: 10, Func. Count: 96, Neg. LLF: 145.95021473561258
Iteration: 11, Func. Count: 105, Neg. LLF: 145.92725232610968
Iteration: 12, Func. Count: 114, Neg. LLF: 145.92020027447583
Iteration: 13, Func. Count: 123, Neg. LLF: 145.9191907168753
Iteration: 14, Func. Count: 132, Neg. LLF: 145.91819349593644
Iteration: 15, Func. Count: 141, Neg. LLF: 145.91805893161546
Iteration: 16, Func. Count: 150, Neg. LLF: 145.91799619429008
Iteration: 17, Func. Count: 159, Neg. LLF: 145.91797657634254
Iteration: 18, Func. Count: 168, Neg. LLF: 145.91797223933426
Iteration: 19, Func. Count: 176, Neg. LLF: 145.91797224131753
Optimization terminated successfully (Exit mode 0)
Current function value: 145.91797223933426
Iterations: 19
Function evaluations: 176
Gradient evaluations: 19
Iteration: 1, Func. Count: 11, Neg. LLF: 155.72931894250615
Iteration: 2, Func. Count: 23, Neg. LLF: 156.83693375150148
Iteration: 3, Func. Count: 34, Neg. LLF: 150.0843669045454
Iteration: 4, Func. Count: 45, Neg. LLF: 146.1146989509208
Iteration: 5, Func. Count: 55, Neg. LLF: 146.1180404147796
Iteration: 6, Func. Count: 66, Neg. LLF: 146.08064961641765
Iteration: 7, Func. Count: 76, Neg. LLF: 146.07616464230483
Iteration: 8, Func. Count: 86, Neg. LLF: 146.05589069375588
Iteration: 9, Func. Count: 96, Neg. LLF: 145.98562334524368
Iteration: 10, Func. Count: 106, Neg. LLF: 145.94437527281855
Iteration: 11, Func. Count: 116, Neg. LLF: 145.92907108089966
Iteration: 12, Func. Count: 126, Neg. LLF: 145.92041575762312
Iteration: 13, Func. Count: 136, Neg. LLF: 145.91896944697567
Iteration: 14, Func. Count: 146, Neg. LLF: 145.91843148115865
Iteration: 15, Func. Count: 156, Neg. LLF: 145.9181360437105
Iteration: 16, Func. Count: 166, Neg. LLF: 145.91802717516293
Iteration: 17, Func. Count: 176, Neg. LLF: 145.9179847344737
Iteration: 18, Func. Count: 186, Neg. LLF: 145.91797277173401
Iteration: 19, Func. Count: 196, Neg. LLF: 145.9179715525648
Iteration: 20, Func. Count: 205, Neg. LLF: 145.91797155256995
Optimization terminated successfully (Exit mode 0)
Current function value: 145.9179715525648
Iterations: 20
Function evaluations: 205
Gradient evaluations: 20
Iteration: 1, Func. Count: 12, Neg. LLF: 155.81727106712333
Iteration: 2, Func. Count: 25, Neg. LLF: 157.33804488990944
Iteration: 3, Func. Count: 37, Neg. LLF: 147.62787649415458
Iteration: 4, Func. Count: 49, Neg. LLF: 146.01487320006126
Iteration: 5, Func. Count: 60, Neg. LLF: 145.99763653269062
Iteration: 6, Func. Count: 71, Neg. LLF: 145.975621539561
Iteration: 7, Func. Count: 82, Neg. LLF: 145.9607571392596
Iteration: 8, Func. Count: 93, Neg. LLF: 145.95565663926467
Iteration: 9, Func. Count: 104, Neg. LLF: 145.95178427243704
Iteration: 10, Func. Count: 115, Neg. LLF: 145.94394173236734
Iteration: 11, Func. Count: 126, Neg. LLF: 145.92714054177964
Iteration: 12, Func. Count: 137, Neg. LLF: 145.91113854793585
Iteration: 13, Func. Count: 148, Neg. LLF: 145.89934466179355
Iteration: 14, Func. Count: 159, Neg. LLF: 145.8916269317454
Iteration: 15, Func. Count: 170, Neg. LLF: 145.88932252786617
Iteration: 16, Func. Count: 181, Neg. LLF: 145.8891982152962
Iteration: 17, Func. Count: 192, Neg. LLF: 145.8891926662221
Iteration: 18, Func. Count: 203, Neg. LLF: 145.8891913833674
Iteration: 19, Func. Count: 213, Neg. LLF: 145.88919138333677
Optimization terminated successfully (Exit mode 0)
Current function value: 145.8891913833674
Iterations: 19
Function evaluations: 213
Gradient evaluations: 19
Iteration: 1, Func. Count: 13, Neg. LLF: 155.8505642366665
Iteration: 2, Func. Count: 27, Neg. LLF: 157.4803031668793
Iteration: 3, Func. Count: 40, Neg. LLF: 146.2877692760414
Iteration: 4, Func. Count: 53, Neg. LLF: 145.99750229742105
Iteration: 5, Func. Count: 65, Neg. LLF: 146.0244734111476
Iteration: 6, Func. Count: 78, Neg. LLF: 145.9401987385038
Iteration: 7, Func. Count: 90, Neg. LLF: 145.939015871238
Iteration: 8, Func. Count: 102, Neg. LLF: 145.93782262995944
Iteration: 9, Func. Count: 114, Neg. LLF: 145.93724160306311
Iteration: 10, Func. Count: 126, Neg. LLF: 145.93418078071397
Iteration: 11, Func. Count: 138, Neg. LLF: 145.92803054178967
Iteration: 12, Func. Count: 150, Neg. LLF: 145.9197303404016
Iteration: 13, Func. Count: 162, Neg. LLF: 145.9131296121287
Iteration: 14, Func. Count: 174, Neg. LLF: 145.90943366469003
Iteration: 15, Func. Count: 186, Neg. LLF: 145.90630328834004
Iteration: 16, Func. Count: 198, Neg. LLF: 145.90244220083662
Iteration: 17, Func. Count: 210, Neg. LLF: 145.89643906692908
Iteration: 18, Func. Count: 222, Neg. LLF: 145.89278378054598
Iteration: 19, Func. Count: 234, Neg. LLF: 145.8902793405758
Iteration: 20, Func. Count: 246, Neg. LLF: 145.88934473227252
Iteration: 21, Func. Count: 258, Neg. LLF: 145.88923163165305
Iteration: 22, Func. Count: 270, Neg. LLF: 145.88920630730908
Iteration: 23, Func. Count: 282, Neg. LLF: 145.8891953836965
Iteration: 24, Func. Count: 294, Neg. LLF: 145.88919170734127
Iteration: 25, Func. Count: 305, Neg. LLF: 145.88919172584204
Optimization terminated successfully (Exit mode 0)
Current function value: 145.88919170734127
Iterations: 25
Function evaluations: 305
Gradient evaluations: 25
Iteration: 1, Func. Count: 10, Neg. LLF: 148.73836503393147
Iteration: 2, Func. Count: 20, Neg. LLF: 151.20851489261648
Iteration: 3, Func. Count: 30, Neg. LLF: 146.2714935060733
Iteration: 4, Func. Count: 39, Neg. LLF: 147.17849439676291
Iteration: 5, Func. Count: 49, Neg. LLF: 146.00213095374295
Iteration: 6, Func. Count: 58, Neg. LLF: 145.9705163834294
Iteration: 7, Func. Count: 67, Neg. LLF: 145.9764336167591
Iteration: 8, Func. Count: 77, Neg. LLF: 145.90176571101622
Iteration: 9, Func. Count: 86, Neg. LLF: 145.8650084181236
Iteration: 10, Func. Count: 95, Neg. LLF: 145.8501636271111
Iteration: 11, Func. Count: 104, Neg. LLF: 145.84797250662254
Iteration: 12, Func. Count: 113, Neg. LLF: 145.84774497257456
Iteration: 13, Func. Count: 122, Neg. LLF: 145.8476953054519
Iteration: 14, Func. Count: 131, Neg. LLF: 145.84769186617075
Iteration: 15, Func. Count: 139, Neg. LLF: 145.847691826239
Optimization terminated successfully (Exit mode 0)
Current function value: 145.84769186617075
Iterations: 15
Function evaluations: 139
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 148.63093202941738
Iteration: 2, Func. Count: 23, Neg. LLF: 149.32226216660652
Iteration: 3, Func. Count: 34, Neg. LLF: 150.60192761014784
Iteration: 4, Func. Count: 45, Neg. LLF: 146.18475508089838
Iteration: 5, Func. Count: 55, Neg. LLF: 146.10588218952265
Iteration: 6, Func. Count: 65, Neg. LLF: 146.09320013211067
Iteration: 7, Func. Count: 75, Neg. LLF: 146.08580831382173
Iteration: 8, Func. Count: 85, Neg. LLF: 146.0775244096736
Iteration: 9, Func. Count: 95, Neg. LLF: 146.06143306944776
Iteration: 10, Func. Count: 105, Neg. LLF: 146.02719248483385
Iteration: 11, Func. Count: 115, Neg. LLF: 145.89205969441127
Iteration: 12, Func. Count: 125, Neg. LLF: 145.8654263967641
Iteration: 13, Func. Count: 135, Neg. LLF: 145.85796940325687
Iteration: 14, Func. Count: 145, Neg. LLF: 145.85092633896653
Iteration: 15, Func. Count: 155, Neg. LLF: 145.8488593630183
Iteration: 16, Func. Count: 165, Neg. LLF: 145.84815474385258
Iteration: 17, Func. Count: 175, Neg. LLF: 145.84781918560597
Iteration: 18, Func. Count: 185, Neg. LLF: 145.84772915891514
Iteration: 19, Func. Count: 195, Neg. LLF: 145.84770085238546
Iteration: 20, Func. Count: 205, Neg. LLF: 145.84769333953562
Iteration: 21, Func. Count: 215, Neg. LLF: 145.84769201436688
Iteration: 22, Func. Count: 224, Neg. LLF: 145.8476920195982
Optimization terminated successfully (Exit mode 0)
Current function value: 145.84769201436688
Iterations: 22
Function evaluations: 224
Gradient evaluations: 22
Iteration: 1, Func. Count: 12, Neg. LLF: 155.75311988418258
Iteration: 2, Func. Count: 25, Neg. LLF: 156.87679845796347
Iteration: 3, Func. Count: 37, Neg. LLF: 158.07170567926798
Iteration: 4, Func. Count: 49, Neg. LLF: 146.15312824710455
Iteration: 5, Func. Count: 60, Neg. LLF: 146.11662094987477
Iteration: 6, Func. Count: 71, Neg. LLF: 146.08670579341933
Iteration: 7, Func. Count: 82, Neg. LLF: 146.07870821675945
Iteration: 8, Func. Count: 93, Neg. LLF: 146.0715604039769
Iteration: 9, Func. Count: 104, Neg. LLF: 146.05509018801007
Iteration: 10, Func. Count: 115, Neg. LLF: 146.03798955522407
Iteration: 11, Func. Count: 126, Neg. LLF: 145.9924560029861
Iteration: 12, Func. Count: 137, Neg. LLF: 145.8689486977848
Iteration: 13, Func. Count: 148, Neg. LLF: 145.85370755855178
Iteration: 14, Func. Count: 159, Neg. LLF: 145.8493175079058
Iteration: 15, Func. Count: 170, Neg. LLF: 145.84854452294715
Iteration: 16, Func. Count: 181, Neg. LLF: 145.84782539278314
Iteration: 17, Func. Count: 192, Neg. LLF: 145.8477289239371
Iteration: 18, Func. Count: 203, Neg. LLF: 145.84770704246458
Iteration: 19, Func. Count: 214, Neg. LLF: 145.84769585798048
Iteration: 20, Func. Count: 225, Neg. LLF: 145.84769262045697
Iteration: 21, Func. Count: 235, Neg. LLF: 145.8476926290752
Optimization terminated successfully (Exit mode 0)
Current function value: 145.84769262045697
Iterations: 21
Function evaluations: 235
Gradient evaluations: 21
Iteration: 1, Func. Count: 13, Neg. LLF: 155.8381880593257
Iteration: 2, Func. Count: 27, Neg. LLF: 157.37345821795034
Iteration: 3, Func. Count: 40, Neg. LLF: 149.67548423736324
Iteration: 4, Func. Count: 53, Neg. LLF: 146.0295827799195
Iteration: 5, Func. Count: 65, Neg. LLF: 146.00888605109236
Iteration: 6, Func. Count: 77, Neg. LLF: 145.98644173892168
Iteration: 7, Func. Count: 89, Neg. LLF: 145.9683652987636
Iteration: 8, Func. Count: 101, Neg. LLF: 145.9642257097632
Iteration: 9, Func. Count: 113, Neg. LLF: 145.95469391808157
Iteration: 10, Func. Count: 125, Neg. LLF: 145.95080244673213
Iteration: 11, Func. Count: 137, Neg. LLF: 145.9410459451042
Iteration: 12, Func. Count: 149, Neg. LLF: 145.92269206952497
Iteration: 13, Func. Count: 161, Neg. LLF: 145.88478535884374
Iteration: 14, Func. Count: 173, Neg. LLF: 145.86050821062145
Iteration: 15, Func. Count: 185, Neg. LLF: 145.8547167009705
Iteration: 16, Func. Count: 197, Neg. LLF: 145.8532143949698
Iteration: 17, Func. Count: 209, Neg. LLF: 145.85106579503244
Iteration: 18, Func. Count: 221, Neg. LLF: 145.84944150638813
Iteration: 19, Func. Count: 233, Neg. LLF: 145.8484857038959
Iteration: 20, Func. Count: 245, Neg. LLF: 145.8479289771229
Iteration: 21, Func. Count: 257, Neg. LLF: 145.8478548297843
Iteration: 22, Func. Count: 269, Neg. LLF: 145.84778335382248
Iteration: 23, Func. Count: 281, Neg. LLF: 145.84772761770205
Iteration: 24, Func. Count: 293, Neg. LLF: 145.8477007550742
Iteration: 25, Func. Count: 305, Neg. LLF: 145.8476937399459
Iteration: 26, Func. Count: 317, Neg. LLF: 145.8476921598338
Iteration: 27, Func. Count: 328, Neg. LLF: 145.84769216164682
Optimization terminated successfully (Exit mode 0)
Current function value: 145.8476921598338
Iterations: 27
Function evaluations: 328
Gradient evaluations: 27
Iteration: 1, Func. Count: 14, Neg. LLF: 155.8698254302169
Iteration: 2, Func. Count: 29, Neg. LLF: 157.50473862569828
Iteration: 3, Func. Count: 43, Neg. LLF: 150.10247621291867
Iteration: 4, Func. Count: 57, Neg. LLF: 146.02461853868905
Iteration: 5, Func. Count: 70, Neg. LLF: 146.05961534523846
Iteration: 6, Func. Count: 84, Neg. LLF: 145.9527659671939
Iteration: 7, Func. Count: 97, Neg. LLF: 145.94344422252055
Iteration: 8, Func. Count: 110, Neg. LLF: 145.93900091012424
Iteration: 9, Func. Count: 123, Neg. LLF: 145.93744901965488
Iteration: 10, Func. Count: 136, Neg. LLF: 145.93467885184845
Iteration: 11, Func. Count: 149, Neg. LLF: 145.93421689029663
Iteration: 12, Func. Count: 162, Neg. LLF: 145.93318555392602
Iteration: 13, Func. Count: 175, Neg. LLF: 145.9273824714166
Iteration: 14, Func. Count: 188, Neg. LLF: 145.9155090092506
Iteration: 15, Func. Count: 201, Neg. LLF: 145.88700498779824
Iteration: 16, Func. Count: 214, Neg. LLF: 145.8746252330741
Iteration: 17, Func. Count: 227, Neg. LLF: 145.85941360847363
Iteration: 18, Func. Count: 240, Neg. LLF: 145.85622747722329
Iteration: 19, Func. Count: 253, Neg. LLF: 145.85076581173635
Iteration: 20, Func. Count: 266, Neg. LLF: 145.8490360710286
Iteration: 21, Func. Count: 279, Neg. LLF: 145.84836116182527
Iteration: 22, Func. Count: 292, Neg. LLF: 145.84796341127227
Iteration: 23, Func. Count: 305, Neg. LLF: 145.8477477231416
Iteration: 24, Func. Count: 318, Neg. LLF: 145.84770106629816
Iteration: 25, Func. Count: 331, Neg. LLF: 145.84769484905618
Iteration: 26, Func. Count: 344, Neg. LLF: 145.84769344312
Iteration: 27, Func. Count: 356, Neg. LLF: 145.847693453185
Optimization terminated successfully (Exit mode 0)
Current function value: 145.84769344312
Iterations: 27
Function evaluations: 356
Gradient evaluations: 27
Iteration: 1, Func. Count: 11, Neg. LLF: 149.31532082526823
Iteration: 2, Func. Count: 22, Neg. LLF: 149.2272791291522
Iteration: 3, Func. Count: 33, Neg. LLF: 149.0155780966212
Iteration: 4, Func. Count: 44, Neg. LLF: 146.37785225586182
Iteration: 5, Func. Count: 54, Neg. LLF: 146.01743313580488
Iteration: 6, Func. Count: 64, Neg. LLF: 145.9551159515227
Iteration: 7, Func. Count: 74, Neg. LLF: 145.98574785497792
Iteration: 8, Func. Count: 85, Neg. LLF: 145.8945514930181
Iteration: 9, Func. Count: 95, Neg. LLF: 145.8760076876011
Iteration: 10, Func. Count: 105, Neg. LLF: 145.84571744960405
Iteration: 11, Func. Count: 115, Neg. LLF: 145.83408045217675
Iteration: 12, Func. Count: 125, Neg. LLF: 145.80945319425868
Iteration: 13, Func. Count: 135, Neg. LLF: 145.8047854895748
Iteration: 14, Func. Count: 145, Neg. LLF: 145.803510489746
Iteration: 15, Func. Count: 155, Neg. LLF: 145.80347351533035
Iteration: 16, Func. Count: 165, Neg. LLF: 145.80347123851303
Iteration: 17, Func. Count: 174, Neg. LLF: 145.8034712385108
Optimization terminated successfully (Exit mode 0)
Current function value: 145.80347123851303
Iterations: 17
Function evaluations: 174
Gradient evaluations: 17
Iteration: 1, Func. Count: 12, Neg. LLF: 153.43022324680828
Iteration: 2, Func. Count: 25, Neg. LLF: 153.1710457156222
Iteration: 3, Func. Count: 37, Neg. LLF: 155.2333748756539
Iteration: 4, Func. Count: 49, Neg. LLF: 146.47628586632874
Iteration: 5, Func. Count: 61, Neg. LLF: 145.99790857244415
Iteration: 6, Func. Count: 72, Neg. LLF: 145.96264134405266
Iteration: 7, Func. Count: 83, Neg. LLF: 145.95976958222556
Iteration: 8, Func. Count: 94, Neg. LLF: 145.95856448827712
Iteration: 9, Func. Count: 105, Neg. LLF: 145.95845917829487
Iteration: 10, Func. Count: 116, Neg. LLF: 145.95820161014197
Iteration: 11, Func. Count: 127, Neg. LLF: 145.95771784200866
Iteration: 12, Func. Count: 138, Neg. LLF: 145.9567576265505
Iteration: 13, Func. Count: 149, Neg. LLF: 145.95563524476714
Iteration: 14, Func. Count: 160, Neg. LLF: 145.9547623834838
Iteration: 15, Func. Count: 171, Neg. LLF: 145.95450196108817
Iteration: 16, Func. Count: 182, Neg. LLF: 145.95447286612665
Iteration: 17, Func. Count: 193, Neg. LLF: 145.95446901401647
Iteration: 18, Func. Count: 204, Neg. LLF: 145.95446762373825
Iteration: 19, Func. Count: 214, Neg. LLF: 145.9544676237292
Optimization terminated successfully (Exit mode 0)
Current function value: 145.95446762373825
Iterations: 19
Function evaluations: 214
Gradient evaluations: 19
Iteration: 1, Func. Count: 13, Neg. LLF: 156.43665934154419
Iteration: 2, Func. Count: 27, Neg. LLF: 166.79077938095992
Iteration: 3, Func. Count: 41, Neg. LLF: 153.87718009885998
Iteration: 4, Func. Count: 54, Neg. LLF: 146.3349885131523
Iteration: 5, Func. Count: 67, Neg. LLF: 146.3873080706833
Iteration: 6, Func. Count: 80, Neg. LLF: 145.97012331412995
Iteration: 7, Func. Count: 92, Neg. LLF: 145.96504519229907
Iteration: 8, Func. Count: 104, Neg. LLF: 145.96277052798948
Iteration: 9, Func. Count: 116, Neg. LLF: 145.95907962070552
Iteration: 10, Func. Count: 128, Neg. LLF: 145.95152268326774
Iteration: 11, Func. Count: 140, Neg. LLF: 145.94406427022517
Iteration: 12, Func. Count: 152, Neg. LLF: 145.93328664353797
Iteration: 13, Func. Count: 164, Neg. LLF: 145.92281968390935
Iteration: 14, Func. Count: 176, Neg. LLF: 145.91572398154358
Iteration: 15, Func. Count: 188, Neg. LLF: 145.9080972134067
Iteration: 16, Func. Count: 200, Neg. LLF: 145.882135531288
Iteration: 17, Func. Count: 212, Neg. LLF: 145.8546929252647
Iteration: 18, Func. Count: 224, Neg. LLF: 145.8490749773339
Iteration: 19, Func. Count: 236, Neg. LLF: 145.83569135088644
Iteration: 20, Func. Count: 248, Neg. LLF: 145.82871433511875
Iteration: 21, Func. Count: 260, Neg. LLF: 145.81901731655384
Iteration: 22, Func. Count: 272, Neg. LLF: 145.8127958242011
Iteration: 23, Func. Count: 284, Neg. LLF: 145.80523160789815
Iteration: 24, Func. Count: 296, Neg. LLF: 145.80477070248511
Iteration: 25, Func. Count: 308, Neg. LLF: 145.81550185831745
Iteration: 26, Func. Count: 321, Neg. LLF: 145.86050420312702
Iteration: 27, Func. Count: 335, Neg. LLF: 145.80492220385835
Iteration: 28, Func. Count: 348, Neg. LLF: 145.80357947164384
Iteration: 29, Func. Count: 360, Neg. LLF: 145.8035111793409
Iteration: 30, Func. Count: 372, Neg. LLF: 145.80350860136915
Iteration: 31, Func. Count: 384, Neg. LLF: 145.80349385164251
Iteration: 32, Func. Count: 396, Neg. LLF: 145.80347151836162
Iteration: 33, Func. Count: 407, Neg. LLF: 145.80347154116166
Optimization terminated successfully (Exit mode 0)
Current function value: 145.80347151836162
Iterations: 34
Function evaluations: 407
Gradient evaluations: 33
Iteration: 1, Func. Count: 14, Neg. LLF: 155.92471896445434
Iteration: 2, Func. Count: 29, Neg. LLF: 157.78655512896262
Iteration: 3, Func. Count: 43, Neg. LLF: 150.63597324996005
Iteration: 4, Func. Count: 57, Neg. LLF: 146.1064672554351
Iteration: 5, Func. Count: 70, Neg. LLF: 146.13833591025812
Iteration: 6, Func. Count: 84, Neg. LLF: 146.59909655736845
Iteration: 7, Func. Count: 98, Neg. LLF: 146.007028749626
Iteration: 8, Func. Count: 111, Neg. LLF: 145.98825471054005
Iteration: 9, Func. Count: 124, Neg. LLF: 145.97924147558723
Iteration: 10, Func. Count: 137, Neg. LLF: 145.97133352810792
Iteration: 11, Func. Count: 150, Neg. LLF: 145.9353006495601
Iteration: 12, Func. Count: 163, Neg. LLF: 145.92970600928052
Iteration: 13, Func. Count: 176, Neg. LLF: 145.92742478708897
Iteration: 14, Func. Count: 189, Neg. LLF: 145.926224989313
Iteration: 15, Func. Count: 202, Neg. LLF: 145.92553063107573
Iteration: 16, Func. Count: 215, Neg. LLF: 145.9219202450739
Iteration: 17, Func. Count: 228, Neg. LLF: 145.91567661779996
Iteration: 18, Func. Count: 241, Neg. LLF: 145.90688510320732
Iteration: 19, Func. Count: 254, Neg. LLF: 145.89751353851688
Iteration: 20, Func. Count: 267, Neg. LLF: 145.86573460810828
Iteration: 21, Func. Count: 280, Neg. LLF: 145.85064058861343
Iteration: 22, Func. Count: 293, Neg. LLF: 145.84646288902277
Iteration: 23, Func. Count: 306, Neg. LLF: 145.84016947193354
Iteration: 24, Func. Count: 319, Neg. LLF: 145.83400798330933
Iteration: 25, Func. Count: 332, Neg. LLF: 145.8273387403755
Iteration: 26, Func. Count: 345, Neg. LLF: 145.8100902999056
Iteration: 27, Func. Count: 358, Neg. LLF: 145.80739071496765
Iteration: 28, Func. Count: 371, Neg. LLF: 145.80357117890648
Iteration: 29, Func. Count: 384, Neg. LLF: 145.8035227690166
Iteration: 30, Func. Count: 397, Neg. LLF: 145.8035096204556
Iteration: 31, Func. Count: 410, Neg. LLF: 145.8034759450963
Iteration: 32, Func. Count: 423, Neg. LLF: 145.80347663136618
Optimization terminated successfully (Exit mode 0)
Current function value: 145.80347588269106
Iterations: 32
Function evaluations: 424
Gradient evaluations: 32
Iteration: 1, Func. Count: 15, Neg. LLF: 155.1908214902434
Iteration: 2, Func. Count: 30, Neg. LLF: 177.5490303169588
Iteration: 3, Func. Count: 46, Neg. LLF: 160.5945357295879
Iteration: 4, Func. Count: 61, Neg. LLF: 146.69263756482277
Iteration: 5, Func. Count: 76, Neg. LLF: 145.94900299751984
Iteration: 6, Func. Count: 90, Neg. LLF: 145.96268507254135
Iteration: 7, Func. Count: 105, Neg. LLF: 145.91076364993864
Iteration: 8, Func. Count: 119, Neg. LLF: 145.91114142751067
Iteration: 9, Func. Count: 134, Neg. LLF: 145.90112417277842
Iteration: 10, Func. Count: 148, Neg. LLF: 145.90034416186063
Iteration: 11, Func. Count: 162, Neg. LLF: 145.90012282428103
Iteration: 12, Func. Count: 176, Neg. LLF: 145.90004719531697
Iteration: 13, Func. Count: 190, Neg. LLF: 145.89953275823592
Iteration: 14, Func. Count: 204, Neg. LLF: 145.89622414949352
Iteration: 15, Func. Count: 218, Neg. LLF: 145.88251862467743
Iteration: 16, Func. Count: 232, Neg. LLF: 145.87227799176324
Iteration: 17, Func. Count: 246, Neg. LLF: 145.8686626469204
Iteration: 18, Func. Count: 260, Neg. LLF: 145.8652705129272
Iteration: 19, Func. Count: 274, Neg. LLF: 145.86421271557276
Iteration: 20, Func. Count: 288, Neg. LLF: 145.86384928778415
Iteration: 21, Func. Count: 302, Neg. LLF: 145.86368850630072
Iteration: 22, Func. Count: 316, Neg. LLF: 145.86368404273537
Iteration: 23, Func. Count: 329, Neg. LLF: 145.86368404280648
Optimization terminated successfully (Exit mode 0)
Current function value: 145.86368404273537
Iterations: 23
Function evaluations: 329
Gradient evaluations: 23
Iteration: 1, Func. Count: 12, Neg. LLF: 148.72221825423426
Iteration: 2, Func. Count: 24, Neg. LLF: 150.19784576048815
Iteration: 3, Func. Count: 36, Neg. LLF: 147.8583403677747
Iteration: 4, Func. Count: 48, Neg. LLF: 146.43871530845425
Iteration: 5, Func. Count: 60, Neg. LLF: 146.73980336859816
Iteration: 6, Func. Count: 72, Neg. LLF: 146.36822855931374
Iteration: 7, Func. Count: 84, Neg. LLF: 145.8091566453545
Iteration: 8, Func. Count: 95, Neg. LLF: 145.75194258453934
Iteration: 9, Func. Count: 106, Neg. LLF: 145.74746129839556
Iteration: 10, Func. Count: 117, Neg. LLF: 145.74637004224059
Iteration: 11, Func. Count: 128, Neg. LLF: 145.74580122956203
Iteration: 12, Func. Count: 139, Neg. LLF: 145.74488739318645
Iteration: 13, Func. Count: 150, Neg. LLF: 145.74387178053277
Iteration: 14, Func. Count: 161, Neg. LLF: 145.73863486441834
Iteration: 15, Func. Count: 172, Neg. LLF: 145.7349390642552
Iteration: 16, Func. Count: 183, Neg. LLF: 145.7340886470413
Iteration: 17, Func. Count: 194, Neg. LLF: 145.7338981596122
Iteration: 18, Func. Count: 205, Neg. LLF: 145.7338959734133
Iteration: 19, Func. Count: 215, Neg. LLF: 145.7338959733988
Optimization terminated successfully (Exit mode 0)
Current function value: 145.7338959734133
Iterations: 19
Function evaluations: 215
Gradient evaluations: 19
Iteration: 1, Func. Count: 13, Neg. LLF: 148.1272238942507
Iteration: 2, Func. Count: 27, Neg. LLF: 152.0157604582777
Iteration: 3, Func. Count: 40, Neg. LLF: 150.34047803425455
Iteration: 4, Func. Count: 53, Neg. LLF: 147.57393383284818
Iteration: 5, Func. Count: 66, Neg. LLF: 148.5017269186526
Iteration: 6, Func. Count: 79, Neg. LLF: 145.46583469581816
Iteration: 7, Func. Count: 91, Neg. LLF: 145.40337812547628
Iteration: 8, Func. Count: 103, Neg. LLF: 145.3883120564286
Iteration: 9, Func. Count: 115, Neg. LLF: 145.3646890608755
Iteration: 10, Func. Count: 127, Neg. LLF: 145.3553458025374
Iteration: 11, Func. Count: 139, Neg. LLF: 145.34095712506593
Iteration: 12, Func. Count: 151, Neg. LLF: 145.2954818071896
Iteration: 13, Func. Count: 163, Neg. LLF: 145.27576116193435
Iteration: 14, Func. Count: 175, Neg. LLF: 145.2607371647725
Iteration: 15, Func. Count: 187, Neg. LLF: 145.25597518557868
Iteration: 16, Func. Count: 199, Neg. LLF: 145.25573349807652
Iteration: 17, Func. Count: 211, Neg. LLF: 145.25571170783715
Iteration: 18, Func. Count: 223, Neg. LLF: 145.25571010441507
Iteration: 19, Func. Count: 234, Neg. LLF: 145.25571010419603
Optimization terminated successfully (Exit mode 0)
Current function value: 145.25571010441507
Iterations: 19
Function evaluations: 234
Gradient evaluations: 19
Iteration: 1, Func. Count: 14, Neg. LLF: 156.45757886014175
Iteration: 2, Func. Count: 29, Neg. LLF: 166.82807857717623
Iteration: 3, Func. Count: 44, Neg. LLF: 153.56590207185232
Iteration: 4, Func. Count: 58, Neg. LLF: 151.73669877960157
Iteration: 5, Func. Count: 72, Neg. LLF: 147.48036613552574
Iteration: 6, Func. Count: 86, Neg. LLF: 146.6351740071358
Iteration: 7, Func. Count: 100, Neg. LLF: 145.78666551758027
Iteration: 8, Func. Count: 114, Neg. LLF: 145.53791702239883
Iteration: 9, Func. Count: 127, Neg. LLF: 145.4485207393334
Iteration: 10, Func. Count: 140, Neg. LLF: 145.41802764941716
Iteration: 11, Func. Count: 153, Neg. LLF: 145.39100205132172
Iteration: 12, Func. Count: 166, Neg. LLF: 145.37373078009844
Iteration: 13, Func. Count: 179, Neg. LLF: 145.35593484246508
Iteration: 14, Func. Count: 192, Neg. LLF: 145.33389145720253
Iteration: 15, Func. Count: 205, Neg. LLF: 145.30918720247442
Iteration: 16, Func. Count: 218, Neg. LLF: 145.27937821095077
Iteration: 17, Func. Count: 231, Neg. LLF: 145.26141073945738
Iteration: 18, Func. Count: 244, Neg. LLF: 145.2563867852143
Iteration: 19, Func. Count: 257, Neg. LLF: 145.2560409912742
Iteration: 20, Func. Count: 270, Neg. LLF: 145.2558069150487
Iteration: 21, Func. Count: 283, Neg. LLF: 145.25571091699294
Iteration: 22, Func. Count: 296, Neg. LLF: 145.25571014130514
Optimization terminated successfully (Exit mode 0)
Current function value: 145.25571014130514
Iterations: 22
Function evaluations: 296
Gradient evaluations: 22
Iteration: 1, Func. Count: 15, Neg. LLF: 155.9347659022774
Iteration: 2, Func. Count: 31, Neg. LLF: 157.7749196986704
Iteration: 3, Func. Count: 46, Neg. LLF: 150.74976316221694
Iteration: 4, Func. Count: 61, Neg. LLF: 146.09654059901828
Iteration: 5, Func. Count: 75, Neg. LLF: 146.1124508567541
Iteration: 6, Func. Count: 90, Neg. LLF: 146.97264939994074
Iteration: 7, Func. Count: 105, Neg. LLF: 145.9981535325894
Iteration: 8, Func. Count: 119, Neg. LLF: 145.99053728762348
Iteration: 9, Func. Count: 133, Neg. LLF: 145.97876485343934
Iteration: 10, Func. Count: 147, Neg. LLF: 145.9699907906905
Iteration: 11, Func. Count: 161, Neg. LLF: 145.93474324065826
Iteration: 12, Func. Count: 175, Neg. LLF: 145.92873413522412
Iteration: 13, Func. Count: 189, Neg. LLF: 145.92666303154775
Iteration: 14, Func. Count: 203, Neg. LLF: 145.92543519050568
Iteration: 15, Func. Count: 217, Neg. LLF: 145.92478171741044
Iteration: 16, Func. Count: 231, Neg. LLF: 145.92191852694592
Iteration: 17, Func. Count: 245, Neg. LLF: 145.91665178864514
Iteration: 18, Func. Count: 259, Neg. LLF: 145.90891836852475
Iteration: 19, Func. Count: 273, Neg. LLF: 145.90008384954416
Iteration: 20, Func. Count: 287, Neg. LLF: 145.87107557259918
Iteration: 21, Func. Count: 301, Neg. LLF: 145.85562287217226
Iteration: 22, Func. Count: 315, Neg. LLF: 145.86963915286037
Iteration: 23, Func. Count: 330, Neg. LLF: 145.84066404866837
Iteration: 24, Func. Count: 344, Neg. LLF: 145.8257947170609
Iteration: 25, Func. Count: 358, Neg. LLF: 145.81956140394212
Iteration: 26, Func. Count: 372, Neg. LLF: 145.81140513250298
Iteration: 27, Func. Count: 386, Neg. LLF: 145.8074654853128
Iteration: 28, Func. Count: 400, Neg. LLF: 145.80634973378565
Iteration: 29, Func. Count: 414, Neg. LLF: 145.8058839140924
Iteration: 30, Func. Count: 428, Neg. LLF: 145.8051664274871
Iteration: 31, Func. Count: 442, Neg. LLF: 145.80394833303723
Iteration: 32, Func. Count: 456, Neg. LLF: 145.8014887484154
Iteration: 33, Func. Count: 470, Neg. LLF: 145.79737108892334
Iteration: 34, Func. Count: 484, Neg. LLF: 145.77829558663683
Iteration: 35, Func. Count: 498, Neg. LLF: 146.04895329149088
Iteration: 36, Func. Count: 513, Neg. LLF: 145.8280965856972
Iteration: 37, Func. Count: 528, Neg. LLF: 145.76636385041147
Iteration: 38, Func. Count: 543, Neg. LLF: 145.65156068305544
Iteration: 39, Func. Count: 558, Neg. LLF: 145.41567978308436
Iteration: 40, Func. Count: 572, Neg. LLF: 145.3327231115413
Iteration: 41, Func. Count: 586, Neg. LLF: 145.28540023959332
Iteration: 42, Func. Count: 600, Neg. LLF: 145.26507564681575
Iteration: 43, Func. Count: 614, Neg. LLF: 145.25916009279942
Iteration: 44, Func. Count: 628, Neg. LLF: 145.25706659911708
Iteration: 45, Func. Count: 642, Neg. LLF: 145.2561000788359
Iteration: 46, Func. Count: 656, Neg. LLF: 145.25575536916236
Iteration: 47, Func. Count: 670, Neg. LLF: 145.2557362023854
Iteration: 48, Func. Count: 684, Neg. LLF: 145.25571364352334
Iteration: 49, Func. Count: 698, Neg. LLF: 145.25571022853575
Iteration: 50, Func. Count: 711, Neg. LLF: 145.2557103054947
Optimization terminated successfully (Exit mode 0)
Current function value: 145.25571022853575
Iterations: 51
Function evaluations: 711
Gradient evaluations: 50
Iteration: 1, Func. Count: 16, Neg. LLF: 155.22029156726572
Iteration: 2, Func. Count: 32, Neg. LLF: 177.55528770847212
Iteration: 3, Func. Count: 49, Neg. LLF: 160.58461397109508
Iteration: 4, Func. Count: 65, Neg. LLF: 146.41080051916887
Iteration: 5, Func. Count: 81, Neg. LLF: 145.96361483539073
Iteration: 6, Func. Count: 96, Neg. LLF: 145.97305907094378
Iteration: 7, Func. Count: 112, Neg. LLF: 145.90322656477034
Iteration: 8, Func. Count: 127, Neg. LLF: 145.90149033553865
Iteration: 9, Func. Count: 142, Neg. LLF: 145.9003421481917
Iteration: 10, Func. Count: 157, Neg. LLF: 145.89971170249058
Iteration: 11, Func. Count: 172, Neg. LLF: 145.89963801916372
Iteration: 12, Func. Count: 187, Neg. LLF: 145.8992227978891
Iteration: 13, Func. Count: 202, Neg. LLF: 145.89817563723653
Iteration: 14, Func. Count: 217, Neg. LLF: 145.89543997359334
Iteration: 15, Func. Count: 232, Neg. LLF: 145.8914345071036
Iteration: 16, Func. Count: 247, Neg. LLF: 145.88164384318978
Iteration: 17, Func. Count: 262, Neg. LLF: 145.8687666160502
Iteration: 18, Func. Count: 277, Neg. LLF: 145.8639963658618
Iteration: 19, Func. Count: 292, Neg. LLF: 145.86394292839583
Iteration: 20, Func. Count: 308, Neg. LLF: 145.8636891978752
Iteration: 21, Func. Count: 323, Neg. LLF: 145.86368387893512
Iteration: 22, Func. Count: 337, Neg. LLF: 145.86368387893157
Optimization terminated successfully (Exit mode 0)
Current function value: 145.86368387893512
Iterations: 22
Function evaluations: 337
Gradient evaluations: 22
Iteration: 1, Func. Count: 5, Neg. LLF: 149.3682863481197
Iteration: 2, Func. Count: 10, Neg. LLF: 148.88681177491392
Iteration: 3, Func. Count: 15, Neg. LLF: 147.6183692332066
Iteration: 4, Func. Count: 19, Neg. LLF: 146.98181822848392
Iteration: 5, Func. Count: 23, Neg. LLF: 146.69917050792563
Iteration: 6, Func. Count: 27, Neg. LLF: 146.52900613684582
Iteration: 7, Func. Count: 31, Neg. LLF: 146.51456549294647
Iteration: 8, Func. Count: 35, Neg. LLF: 146.51397449317074
Iteration: 9, Func. Count: 39, Neg. LLF: 146.51397133217955
Iteration: 10, Func. Count: 42, Neg. LLF: 146.51397136320475
Optimization terminated successfully (Exit mode 0)
Current function value: 146.51397133217955
Iterations: 10
Function evaluations: 42
Gradient evaluations: 10
Iteration: 1, Func. Count: 5, Neg. LLF: 154.48554791027863
Iteration: 2, Func. Count: 10, Neg. LLF: 148.08809488348604
Iteration: 3, Func. Count: 14, Neg. LLF: 147.64024088188276
Iteration: 4, Func. Count: 18, Neg. LLF: 146.72740193708734
Iteration: 5, Func. Count: 22, Neg. LLF: 146.5199659267571
Iteration: 6, Func. Count: 26, Neg. LLF: 146.2774002767291
Iteration: 7, Func. Count: 30, Neg. LLF: 146.27087471020133
Iteration: 8, Func. Count: 34, Neg. LLF: 146.2689965910971
Iteration: 9, Func. Count: 38, Neg. LLF: 146.26790783048625
Iteration: 10, Func. Count: 42, Neg. LLF: 146.26777607412333
Iteration: 11, Func. Count: 46, Neg. LLF: 146.26775443356837
Iteration: 12, Func. Count: 49, Neg. LLF: 146.2677544335595
Optimization terminated successfully (Exit mode 0)
Current function value: 146.26775443356837
Iterations: 12
Function evaluations: 49
Gradient evaluations: 12
Iteration: 1, Func. Count: 6, Neg. LLF: 154.6176000308386
Iteration: 2, Func. Count: 13, Neg. LLF: 146.9863686731489
Iteration: 3, Func. Count: 20, Neg. LLF: 146.70186057167174
Iteration: 4, Func. Count: 26, Neg. LLF: 146.6980366423934
Iteration: 5, Func. Count: 31, Neg. LLF: 146.68900315558912
Iteration: 6, Func. Count: 36, Neg. LLF: 146.63290692728177
Iteration: 7, Func. Count: 41, Neg. LLF: 146.27946051717078
Iteration: 8, Func. Count: 46, Neg. LLF: 146.27408110835535
Iteration: 9, Func. Count: 51, Neg. LLF: 146.2678185031716
Iteration: 10, Func. Count: 56, Neg. LLF: 146.26775476086263
Iteration: 11, Func. Count: 60, Neg. LLF: 146.26775478123707
Optimization terminated successfully (Exit mode 0)
Current function value: 146.26775476086263
Iterations: 11
Function evaluations: 60
Gradient evaluations: 11
Iteration: 1, Func. Count: 7, Neg. LLF: 154.57666242616227
Iteration: 2, Func. Count: 15, Neg. LLF: 146.7702692493662
Iteration: 3, Func. Count: 22, Neg. LLF: 146.67629669444563
Iteration: 4, Func. Count: 28, Neg. LLF: 146.66641531940746
Iteration: 5, Func. Count: 34, Neg. LLF: 146.66196215297472
Iteration: 6, Func. Count: 40, Neg. LLF: 146.6580561571042
Iteration: 7, Func. Count: 46, Neg. LLF: 146.64265761524948
Iteration: 8, Func. Count: 52, Neg. LLF: 146.52203055151352
Iteration: 9, Func. Count: 58, Neg. LLF: 146.31943326125582
Iteration: 10, Func. Count: 64, Neg. LLF: 146.2987082767983
Iteration: 11, Func. Count: 70, Neg. LLF: 146.27364408841947
Iteration: 12, Func. Count: 76, Neg. LLF: 146.2707506763546
Iteration: 13, Func. Count: 82, Neg. LLF: 146.2678339333139
Iteration: 14, Func. Count: 88, Neg. LLF: 146.26775684490514
Iteration: 15, Func. Count: 94, Neg. LLF: 146.26775458512276
Iteration: 16, Func. Count: 99, Neg. LLF: 146.2677546065557
Optimization terminated successfully (Exit mode 0)
Current function value: 146.26775458512276
Iterations: 16
Function evaluations: 99
Gradient evaluations: 16
Iteration: 1, Func. Count: 8, Neg. LLF: 154.6234189351903
Iteration: 2, Func. Count: 17, Neg. LLF: 146.62415114938386
Iteration: 3, Func. Count: 24, Neg. LLF: 146.72762475643432
Iteration: 4, Func. Count: 32, Neg. LLF: 146.60618344386913
Iteration: 5, Func. Count: 40, Neg. LLF: 146.5749575492066
Iteration: 6, Func. Count: 47, Neg. LLF: 146.57059247802707
Iteration: 7, Func. Count: 54, Neg. LLF: 146.5298963942673
Iteration: 8, Func. Count: 61, Neg. LLF: 146.34164528411023
Iteration: 9, Func. Count: 68, Neg. LLF: 146.3011013440493
Iteration: 10, Func. Count: 75, Neg. LLF: 146.27126097505982
Iteration: 11, Func. Count: 82, Neg. LLF: 146.26841523577704
Iteration: 12, Func. Count: 89, Neg. LLF: 146.26778870830515
Iteration: 13, Func. Count: 96, Neg. LLF: 146.26776900137355
Iteration: 14, Func. Count: 103, Neg. LLF: 146.26775639267018
Iteration: 15, Func. Count: 110, Neg. LLF: 146.2677545160392
Iteration: 16, Func. Count: 116, Neg. LLF: 146.2677545243279
Optimization terminated successfully (Exit mode 0)
Current function value: 146.2677545160392
Iterations: 16
Function evaluations: 116
Gradient evaluations: 16
Iteration: 1, Func. Count: 9, Neg. LLF: 150.13606489935734
Iteration: 2, Func. Count: 19, Neg. LLF: 148.98580753815156
Iteration: 3, Func. Count: 29, Neg. LLF: 146.249188601492
Iteration: 4, Func. Count: 37, Neg. LLF: 146.23296288090958
Iteration: 5, Func. Count: 45, Neg. LLF: 146.2281385670719
Iteration: 6, Func. Count: 53, Neg. LLF: 146.22535855035457
Iteration: 7, Func. Count: 61, Neg. LLF: 146.22513022803696
Iteration: 8, Func. Count: 69, Neg. LLF: 146.22477620067136
Iteration: 9, Func. Count: 77, Neg. LLF: 146.22399289425823
Iteration: 10, Func. Count: 85, Neg. LLF: 146.2222988059911
Iteration: 11, Func. Count: 93, Neg. LLF: 146.21955329041626
Iteration: 12, Func. Count: 101, Neg. LLF: 146.21656873243325
Iteration: 13, Func. Count: 109, Neg. LLF: 146.21508475136304
Iteration: 14, Func. Count: 117, Neg. LLF: 146.2149216617762
Iteration: 15, Func. Count: 125, Neg. LLF: 146.21491154872572
Iteration: 16, Func. Count: 133, Neg. LLF: 146.21491070460553
Optimization terminated successfully (Exit mode 0)
Current function value: 146.21491070460553
Iterations: 16
Function evaluations: 133
Gradient evaluations: 16
Iteration: 1, Func. Count: 6, Neg. LLF: 152.81838056052064
Iteration: 2, Func. Count: 12, Neg. LLF: 148.1357747494518
Iteration: 3, Func. Count: 17, Neg. LLF: 147.41964978328883
Iteration: 4, Func. Count: 22, Neg. LLF: 146.72694157194803
Iteration: 5, Func. Count: 27, Neg. LLF: 146.49850852900315
Iteration: 6, Func. Count: 32, Neg. LLF: 146.30340253498025
Iteration: 7, Func. Count: 37, Neg. LLF: 146.27691871769633
Iteration: 8, Func. Count: 42, Neg. LLF: 146.26959911390233
Iteration: 9, Func. Count: 47, Neg. LLF: 146.26849677162747
Iteration: 10, Func. Count: 52, Neg. LLF: 146.26800102124997
Iteration: 11, Func. Count: 57, Neg. LLF: 146.2677603287332
Iteration: 12, Func. Count: 62, Neg. LLF: 146.26775452969912
Iteration: 13, Func. Count: 66, Neg. LLF: 146.26775461333486
Optimization terminated successfully (Exit mode 0)
Current function value: 146.26775452969912
Iterations: 13
Function evaluations: 66
Gradient evaluations: 13
Iteration: 1, Func. Count: 7, Neg. LLF: 151.0654362753165
Iteration: 2, Func. Count: 15, Neg. LLF: 150.3101338278397
Iteration: 3, Func. Count: 23, Neg. LLF: 146.7022154479951
Iteration: 4, Func. Count: 29, Neg. LLF: 146.69937508226434
Iteration: 5, Func. Count: 35, Neg. LLF: 146.69659165465606
Iteration: 6, Func. Count: 41, Neg. LLF: 146.6935692305449
Iteration: 7, Func. Count: 47, Neg. LLF: 146.6727240443258
Iteration: 8, Func. Count: 53, Neg. LLF: 146.50375595883344
Iteration: 9, Func. Count: 59, Neg. LLF: 146.3594895251705
Iteration: 10, Func. Count: 65, Neg. LLF: 146.34276362322197
Iteration: 11, Func. Count: 71, Neg. LLF: 146.2986162348919
Iteration: 12, Func. Count: 77, Neg. LLF: 146.28748326321508
Iteration: 13, Func. Count: 83, Neg. LLF: 146.27481271111333
Iteration: 14, Func. Count: 89, Neg. LLF: 146.27012329703197
Iteration: 15, Func. Count: 95, Neg. LLF: 146.2685361772915
Iteration: 16, Func. Count: 101, Neg. LLF: 146.26791518517345
Iteration: 17, Func. Count: 107, Neg. LLF: 146.26777153410862
Iteration: 18, Func. Count: 113, Neg. LLF: 146.26775503982373
Iteration: 19, Func. Count: 119, Neg. LLF: 146.26775435008514
Optimization terminated successfully (Exit mode 0)
Current function value: 146.26775435008514
Iterations: 19
Function evaluations: 119
Gradient evaluations: 19
Iteration: 1, Func. Count: 8, Neg. LLF: 151.55908587171015
Iteration: 2, Func. Count: 17, Neg. LLF: 150.20576252209312
Iteration: 3, Func. Count: 25, Neg. LLF: 146.6824515625956
Iteration: 4, Func. Count: 32, Neg. LLF: 146.67568415197755
Iteration: 5, Func. Count: 39, Neg. LLF: 146.6689521195068
Iteration: 6, Func. Count: 46, Neg. LLF: 146.66535840873038
Iteration: 7, Func. Count: 53, Neg. LLF: 146.6596840045217
Iteration: 8, Func. Count: 60, Neg. LLF: 146.6517147105276
Iteration: 9, Func. Count: 67, Neg. LLF: 146.6084873105597
Iteration: 10, Func. Count: 74, Neg. LLF: 146.28507420934596
Iteration: 11, Func. Count: 81, Neg. LLF: 146.27657066353703
Iteration: 12, Func. Count: 88, Neg. LLF: 146.26788867113552
Iteration: 13, Func. Count: 95, Neg. LLF: 146.2677841563273
Iteration: 14, Func. Count: 102, Neg. LLF: 146.26775910678217
Iteration: 15, Func. Count: 109, Neg. LLF: 146.26775456340047
Iteration: 16, Func. Count: 115, Neg. LLF: 146.2677545848745
Optimization terminated successfully (Exit mode 0)
Current function value: 146.26775456340047
Iterations: 16
Function evaluations: 115
Gradient evaluations: 16
Iteration: 1, Func. Count: 9, Neg. LLF: 152.31290824987704
Iteration: 2, Func. Count: 20, Neg. LLF: 150.07967165030317
Iteration: 3, Func. Count: 29, Neg. LLF: 146.59772545411084
Iteration: 4, Func. Count: 37, Neg. LLF: 146.58166105625503
Iteration: 5, Func. Count: 45, Neg. LLF: 146.57570210862198
Iteration: 6, Func. Count: 53, Neg. LLF: 146.5721049436257
Iteration: 7, Func. Count: 61, Neg. LLF: 146.56386347617794
Iteration: 8, Func. Count: 69, Neg. LLF: 146.53959317422448
Iteration: 9, Func. Count: 77, Neg. LLF: 146.4607712239226
Iteration: 10, Func. Count: 85, Neg. LLF: 146.37795048311384
Iteration: 11, Func. Count: 93, Neg. LLF: 146.27930264393868
Iteration: 12, Func. Count: 101, Neg. LLF: 146.27145341689055
Iteration: 13, Func. Count: 109, Neg. LLF: 146.26843351310444
Iteration: 14, Func. Count: 117, Neg. LLF: 146.2678531554152
Iteration: 15, Func. Count: 125, Neg. LLF: 146.26777628206784
Iteration: 16, Func. Count: 133, Neg. LLF: 146.26775842512433
Iteration: 17, Func. Count: 141, Neg. LLF: 146.26775465553627
Iteration: 18, Func. Count: 148, Neg. LLF: 146.26775466381073
Optimization terminated successfully (Exit mode 0)
Current function value: 146.26775465553627
Iterations: 18
Function evaluations: 148
Gradient evaluations: 18
Iteration: 1, Func. Count: 10, Neg. LLF: 152.31235633664707
Iteration: 2, Func. Count: 21, Neg. LLF: 150.01963706723365
Iteration: 3, Func. Count: 31, Neg. LLF: 146.59462696390582
Iteration: 4, Func. Count: 41, Neg. LLF: 146.25256812084993
Iteration: 5, Func. Count: 50, Neg. LLF: 146.23446993867984
Iteration: 6, Func. Count: 59, Neg. LLF: 146.2259700374323
Iteration: 7, Func. Count: 68, Neg. LLF: 146.22574946555082
Iteration: 8, Func. Count: 77, Neg. LLF: 146.22532183607612
Iteration: 9, Func. Count: 86, Neg. LLF: 146.2242959306709
Iteration: 10, Func. Count: 95, Neg. LLF: 146.22246093551257
Iteration: 11, Func. Count: 104, Neg. LLF: 146.21994779641116
Iteration: 12, Func. Count: 113, Neg. LLF: 146.21775436722095
Iteration: 13, Func. Count: 122, Neg. LLF: 146.21613547757173
Iteration: 14, Func. Count: 131, Neg. LLF: 146.2152517341959
Iteration: 15, Func. Count: 140, Neg. LLF: 146.21499062434884
Iteration: 16, Func. Count: 149, Neg. LLF: 146.214922190712
Iteration: 17, Func. Count: 158, Neg. LLF: 146.2149113564005
Iteration: 18, Func. Count: 167, Neg. LLF: 146.21491070316466
Optimization terminated successfully (Exit mode 0)
Current function value: 146.21491070316466
Iterations: 18
Function evaluations: 167
Gradient evaluations: 18
Iteration: 1, Func. Count: 7, Neg. LLF: 151.63166955324664
Iteration: 2, Func. Count: 14, Neg. LLF: 148.0752773153735
Iteration: 3, Func. Count: 20, Neg. LLF: 147.4077779364109
Iteration: 4, Func. Count: 26, Neg. LLF: 146.27737425187559
Iteration: 5, Func. Count: 32, Neg. LLF: 146.27221188376353
Iteration: 6, Func. Count: 38, Neg. LLF: 146.26983180138086
Iteration: 7, Func. Count: 44, Neg. LLF: 146.26826125040367
Iteration: 8, Func. Count: 50, Neg. LLF: 146.26778516063482
Iteration: 9, Func. Count: 56, Neg. LLF: 146.2677555456078
Iteration: 10, Func. Count: 62, Neg. LLF: 146.26775435208944
Iteration: 11, Func. Count: 67, Neg. LLF: 146.26775444067474
Optimization terminated successfully (Exit mode 0)
Current function value: 146.26775435208944
Iterations: 11
Function evaluations: 67
Gradient evaluations: 11
Iteration: 1, Func. Count: 8, Neg. LLF: 151.2014676842011
Iteration: 2, Func. Count: 18, Neg. LLF: 150.18367368885058
Iteration: 3, Func. Count: 26, Neg. LLF: 146.7009474846696
Iteration: 4, Func. Count: 33, Neg. LLF: 146.69981477191806
Iteration: 5, Func. Count: 40, Neg. LLF: 146.69656809730938
Iteration: 6, Func. Count: 47, Neg. LLF: 146.69359245605312
Iteration: 7, Func. Count: 54, Neg. LLF: 146.6759482888767
Iteration: 8, Func. Count: 61, Neg. LLF: 146.56719751753283
Iteration: 9, Func. Count: 68, Neg. LLF: 146.41954631658248
Iteration: 10, Func. Count: 75, Neg. LLF: 146.39698561145397
Iteration: 11, Func. Count: 82, Neg. LLF: 146.33409069116902
Iteration: 12, Func. Count: 89, Neg. LLF: 146.30566672405618
Iteration: 13, Func. Count: 96, Neg. LLF: 146.2786920141483
Iteration: 14, Func. Count: 103, Neg. LLF: 146.2719604863514
Iteration: 15, Func. Count: 110, Neg. LLF: 146.26955575633025
Iteration: 16, Func. Count: 117, Neg. LLF: 146.2683929543445
Iteration: 17, Func. Count: 124, Neg. LLF: 146.2678684368514
Iteration: 18, Func. Count: 131, Neg. LLF: 146.26776102766127
Iteration: 19, Func. Count: 138, Neg. LLF: 146.26775442079074
Iteration: 20, Func. Count: 144, Neg. LLF: 146.2677544411929
Optimization terminated successfully (Exit mode 0)
Current function value: 146.26775442079074
Iterations: 20
Function evaluations: 144
Gradient evaluations: 20
Iteration: 1, Func. Count: 9, Neg. LLF: 151.87288810031905
Iteration: 2, Func. Count: 19, Neg. LLF: 150.15008507968122
Iteration: 3, Func. Count: 28, Neg. LLF: 146.6843825053012
Iteration: 4, Func. Count: 36, Neg. LLF: 146.67549287174702
Iteration: 5, Func. Count: 44, Neg. LLF: 146.66928138119934
Iteration: 6, Func. Count: 52, Neg. LLF: 146.6660322204251
Iteration: 7, Func. Count: 60, Neg. LLF: 146.65956129741474
Iteration: 8, Func. Count: 68, Neg. LLF: 146.65122692276032
Iteration: 9, Func. Count: 76, Neg. LLF: 146.5976624946702
Iteration: 10, Func. Count: 84, Neg. LLF: 146.2833373866885
Iteration: 11, Func. Count: 92, Neg. LLF: 146.27607318520924
Iteration: 12, Func. Count: 100, Neg. LLF: 146.267978518306
Iteration: 13, Func. Count: 108, Neg. LLF: 146.26780167979493
Iteration: 14, Func. Count: 116, Neg. LLF: 146.26776443775188
Iteration: 15, Func. Count: 124, Neg. LLF: 146.2677549422211
Iteration: 16, Func. Count: 132, Neg. LLF: 146.26775435608687
Optimization terminated successfully (Exit mode 0)
Current function value: 146.26775435608687
Iterations: 16
Function evaluations: 132
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 152.3205610135784
Iteration: 2, Func. Count: 22, Neg. LLF: 150.09149962995153
Iteration: 3, Func. Count: 32, Neg. LLF: 146.59823416958926
Iteration: 4, Func. Count: 41, Neg. LLF: 146.5812161972101
Iteration: 5, Func. Count: 50, Neg. LLF: 146.57564120070032
Iteration: 6, Func. Count: 59, Neg. LLF: 146.57178043607638
Iteration: 7, Func. Count: 68, Neg. LLF: 146.56377592915211
Iteration: 8, Func. Count: 77, Neg. LLF: 146.5403171420103
Iteration: 9, Func. Count: 86, Neg. LLF: 146.46197827489038
Iteration: 10, Func. Count: 95, Neg. LLF: 146.38203374615804
Iteration: 11, Func. Count: 104, Neg. LLF: 146.28499806605834
Iteration: 12, Func. Count: 113, Neg. LLF: 146.27158457786535
Iteration: 13, Func. Count: 122, Neg. LLF: 146.2688878075614
Iteration: 14, Func. Count: 131, Neg. LLF: 146.26787526319873
Iteration: 15, Func. Count: 140, Neg. LLF: 146.26777838915498
Iteration: 16, Func. Count: 149, Neg. LLF: 146.26775932975562
Iteration: 17, Func. Count: 158, Neg. LLF: 146.26775489478229
Iteration: 18, Func. Count: 166, Neg. LLF: 146.2677549030608
Optimization terminated successfully (Exit mode 0)
Current function value: 146.26775489478229
Iterations: 18
Function evaluations: 166
Gradient evaluations: 18
Iteration: 1, Func. Count: 11, Neg. LLF: 152.31972705910434
Iteration: 2, Func. Count: 23, Neg. LLF: 150.02809108781085
Iteration: 3, Func. Count: 34, Neg. LLF: 146.62521712780713
Iteration: 4, Func. Count: 45, Neg. LLF: 146.2509681745225
Iteration: 5, Func. Count: 55, Neg. LLF: 146.2359671385817
Iteration: 6, Func. Count: 65, Neg. LLF: 146.225990397441
Iteration: 7, Func. Count: 75, Neg. LLF: 146.2257741369786
Iteration: 8, Func. Count: 85, Neg. LLF: 146.22532187672036
Iteration: 9, Func. Count: 95, Neg. LLF: 146.22431068467765
Iteration: 10, Func. Count: 105, Neg. LLF: 146.2225060529559
Iteration: 11, Func. Count: 115, Neg. LLF: 146.2198830225338
Iteration: 12, Func. Count: 125, Neg. LLF: 146.2172038947454
Iteration: 13, Func. Count: 135, Neg. LLF: 146.21571372894468
Iteration: 14, Func. Count: 145, Neg. LLF: 146.21522002911848
Iteration: 15, Func. Count: 155, Neg. LLF: 146.21500062525192
Iteration: 16, Func. Count: 165, Neg. LLF: 146.21492320658152
Iteration: 17, Func. Count: 175, Neg. LLF: 146.21491179831162
Iteration: 18, Func. Count: 185, Neg. LLF: 146.21491074938604
Iteration: 19, Func. Count: 194, Neg. LLF: 146.21491074937745
Optimization terminated successfully (Exit mode 0)
Current function value: 146.21491074938604
Iterations: 19
Function evaluations: 194
Gradient evaluations: 19
Iteration: 1, Func. Count: 8, Neg. LLF: 151.5666835328813
Iteration: 2, Func. Count: 16, Neg. LLF: 151.27485167882267
Iteration: 3, Func. Count: 26, Neg. LLF: 147.7369734901725
Iteration: 4, Func. Count: 33, Neg. LLF: 146.50021617794215
Iteration: 5, Func. Count: 40, Neg. LLF: 146.31217441289382
Iteration: 6, Func. Count: 47, Neg. LLF: 146.27107610336165
Iteration: 7, Func. Count: 54, Neg. LLF: 146.26796131823824
Iteration: 8, Func. Count: 61, Neg. LLF: 146.26781564688844
Iteration: 9, Func. Count: 68, Neg. LLF: 146.2677878008629
Iteration: 10, Func. Count: 75, Neg. LLF: 146.26775448635664
Iteration: 11, Func. Count: 81, Neg. LLF: 146.26775451867007
Optimization terminated successfully (Exit mode 0)
Current function value: 146.26775448635664
Iterations: 11
Function evaluations: 81
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 151.36819628863623
Iteration: 2, Func. Count: 20, Neg. LLF: 150.16397470536063
Iteration: 3, Func. Count: 29, Neg. LLF: 146.70117663545574
Iteration: 4, Func. Count: 37, Neg. LLF: 146.69953290948524
Iteration: 5, Func. Count: 45, Neg. LLF: 146.6965141976147
Iteration: 6, Func. Count: 53, Neg. LLF: 146.69328565319668
Iteration: 7, Func. Count: 61, Neg. LLF: 146.67552107587463
Iteration: 8, Func. Count: 69, Neg. LLF: 146.54833585780835
Iteration: 9, Func. Count: 77, Neg. LLF: 146.41446944216082
Iteration: 10, Func. Count: 85, Neg. LLF: 146.39381245070535
Iteration: 11, Func. Count: 93, Neg. LLF: 146.32141081833737
Iteration: 12, Func. Count: 101, Neg. LLF: 146.2843901209163
Iteration: 13, Func. Count: 109, Neg. LLF: 146.27483711561436
Iteration: 14, Func. Count: 117, Neg. LLF: 146.27062225727502
Iteration: 15, Func. Count: 125, Neg. LLF: 146.26889394315535
Iteration: 16, Func. Count: 133, Neg. LLF: 146.2680683139356
Iteration: 17, Func. Count: 141, Neg. LLF: 146.26780081531825
Iteration: 18, Func. Count: 149, Neg. LLF: 146.267756072792
Iteration: 19, Func. Count: 157, Neg. LLF: 146.26775437526453
Iteration: 20, Func. Count: 164, Neg. LLF: 146.26775439567177
Optimization terminated successfully (Exit mode 0)
Current function value: 146.26775437526453
Iterations: 20
Function evaluations: 164
Gradient evaluations: 20
Iteration: 1, Func. Count: 10, Neg. LLF: 152.003169704073
Iteration: 2, Func. Count: 22, Neg. LLF: 150.16657428137265
Iteration: 3, Func. Count: 32, Neg. LLF: 146.67772347783665
Iteration: 4, Func. Count: 41, Neg. LLF: 146.67232066937402
Iteration: 5, Func. Count: 50, Neg. LLF: 146.66750551247534
Iteration: 6, Func. Count: 59, Neg. LLF: 146.66066593505528
Iteration: 7, Func. Count: 68, Neg. LLF: 146.65612668212546
Iteration: 8, Func. Count: 77, Neg. LLF: 146.62965954065274
Iteration: 9, Func. Count: 86, Neg. LLF: 146.45837537236048
Iteration: 10, Func. Count: 95, Neg. LLF: 146.28689159539468
Iteration: 11, Func. Count: 104, Neg. LLF: 146.28290062136662
Iteration: 12, Func. Count: 113, Neg. LLF: 146.27085690337262
Iteration: 13, Func. Count: 122, Neg. LLF: 146.26790685135126
Iteration: 14, Func. Count: 131, Neg. LLF: 146.26783639425338
Iteration: 15, Func. Count: 140, Neg. LLF: 146.26777501129752
Iteration: 16, Func. Count: 149, Neg. LLF: 146.2677567644492
Iteration: 17, Func. Count: 158, Neg. LLF: 146.26775441375702
Iteration: 18, Func. Count: 166, Neg. LLF: 146.26775443522007
Optimization terminated successfully (Exit mode 0)
Current function value: 146.26775441375702
Iterations: 18
Function evaluations: 166
Gradient evaluations: 18
Iteration: 1, Func. Count: 11, Neg. LLF: 152.3199896325546
Iteration: 2, Func. Count: 24, Neg. LLF: 150.0941043571255
Iteration: 3, Func. Count: 35, Neg. LLF: 146.5983150372005
Iteration: 4, Func. Count: 45, Neg. LLF: 146.58148363905687
Iteration: 5, Func. Count: 55, Neg. LLF: 146.5756522752891
Iteration: 6, Func. Count: 65, Neg. LLF: 146.5716707383028
Iteration: 7, Func. Count: 75, Neg. LLF: 146.56456649507396
Iteration: 8, Func. Count: 85, Neg. LLF: 146.54274091875456
Iteration: 9, Func. Count: 95, Neg. LLF: 146.48083834351664
Iteration: 10, Func. Count: 105, Neg. LLF: 146.37488506767036
Iteration: 11, Func. Count: 115, Neg. LLF: 146.28086316489953
Iteration: 12, Func. Count: 125, Neg. LLF: 146.2713366758557
Iteration: 13, Func. Count: 135, Neg. LLF: 146.26870555359116
Iteration: 14, Func. Count: 145, Neg. LLF: 146.267836154215
Iteration: 15, Func. Count: 155, Neg. LLF: 146.2677669236475
Iteration: 16, Func. Count: 165, Neg. LLF: 146.26775782329094
Iteration: 17, Func. Count: 175, Neg. LLF: 146.26775490357883
Iteration: 18, Func. Count: 184, Neg. LLF: 146.26775491184964
Optimization terminated successfully (Exit mode 0)
Current function value: 146.26775490357883
Iterations: 18
Function evaluations: 184
Gradient evaluations: 18
Iteration: 1, Func. Count: 12, Neg. LLF: 152.31922052184802
Iteration: 2, Func. Count: 25, Neg. LLF: 150.0295521546002
Iteration: 3, Func. Count: 37, Neg. LLF: 146.65221477413493
Iteration: 4, Func. Count: 49, Neg. LLF: 146.25059818905598
Iteration: 5, Func. Count: 60, Neg. LLF: 146.235270124362
Iteration: 6, Func. Count: 71, Neg. LLF: 146.2259897166783
Iteration: 7, Func. Count: 82, Neg. LLF: 146.2257800600234
Iteration: 8, Func. Count: 93, Neg. LLF: 146.22533754025866
Iteration: 9, Func. Count: 104, Neg. LLF: 146.224256291125
Iteration: 10, Func. Count: 115, Neg. LLF: 146.22216434198174
Iteration: 11, Func. Count: 126, Neg. LLF: 146.21908062674146
Iteration: 12, Func. Count: 137, Neg. LLF: 146.21626754469216
Iteration: 13, Func. Count: 148, Neg. LLF: 146.21511767563715
Iteration: 14, Func. Count: 159, Neg. LLF: 146.21496113687942
Iteration: 15, Func. Count: 170, Neg. LLF: 146.21493152612925
Iteration: 16, Func. Count: 181, Neg. LLF: 146.214916734984
Iteration: 17, Func. Count: 192, Neg. LLF: 146.21491172284803
Iteration: 18, Func. Count: 203, Neg. LLF: 146.21491073580566
Optimization terminated successfully (Exit mode 0)
Current function value: 146.21491073580566
Iterations: 18
Function evaluations: 203
Gradient evaluations: 18
Iteration: 1, Func. Count: 5, Neg. LLF: 148.41399209038258
Iteration: 2, Func. Count: 10, Neg. LLF: 147.01449459616805
Iteration: 3, Func. Count: 14, Neg. LLF: 146.45761840702332
Iteration: 4, Func. Count: 18, Neg. LLF: 146.37988222753935
Iteration: 5, Func. Count: 22, Neg. LLF: 146.3368065434784
Iteration: 6, Func. Count: 26, Neg. LLF: 146.32563617563062
Iteration: 7, Func. Count: 30, Neg. LLF: 146.32422174432054
Iteration: 8, Func. Count: 34, Neg. LLF: 146.324175655308
Iteration: 9, Func. Count: 38, Neg. LLF: 146.32417428655592
Iteration: 10, Func. Count: 41, Neg. LLF: 146.32417428656382
Optimization terminated successfully (Exit mode 0)
Current function value: 146.32417428655592
Iterations: 10
Function evaluations: 41
Gradient evaluations: 10
Iteration: 1, Func. Count: 6, Neg. LLF: 149.1493569007816
Iteration: 2, Func. Count: 13, Neg. LLF: 146.8887715943778
Iteration: 3, Func. Count: 19, Neg. LLF: 146.4663235592933
Iteration: 4, Func. Count: 24, Neg. LLF: 146.46628494907705
Iteration: 5, Func. Count: 30, Neg. LLF: 146.46599528360963
Iteration: 6, Func. Count: 35, Neg. LLF: 146.46466377880913
Iteration: 7, Func. Count: 40, Neg. LLF: 146.45506816437398
Iteration: 8, Func. Count: 45, Neg. LLF: 146.33529922670928
Iteration: 9, Func. Count: 50, Neg. LLF: 146.32559874666006
Iteration: 10, Func. Count: 55, Neg. LLF: 146.324189733809
Iteration: 11, Func. Count: 60, Neg. LLF: 146.3241765615558
Iteration: 12, Func. Count: 65, Neg. LLF: 146.32417481375867
Iteration: 13, Func. Count: 70, Neg. LLF: 146.3241742646279
Optimization terminated successfully (Exit mode 0)
Current function value: 146.3241742646279
Iterations: 13
Function evaluations: 70
Gradient evaluations: 13
Iteration: 1, Func. Count: 7, Neg. LLF: 151.13447883612923
Iteration: 2, Func. Count: 15, Neg. LLF: 146.4337487653431
Iteration: 3, Func. Count: 22, Neg. LLF: 146.37264780611787
Iteration: 4, Func. Count: 29, Neg. LLF: 146.37254398463955
Iteration: 5, Func. Count: 36, Neg. LLF: 146.37212120198728
Iteration: 6, Func. Count: 43, Neg. LLF: 146.37145162680667
Iteration: 7, Func. Count: 49, Neg. LLF: 146.3695121685053
Iteration: 8, Func. Count: 55, Neg. LLF: 146.36065465623125
Iteration: 9, Func. Count: 61, Neg. LLF: 146.33165699654353
Iteration: 10, Func. Count: 67, Neg. LLF: 146.32369189229235
Iteration: 11, Func. Count: 73, Neg. LLF: 146.32339552532633
Iteration: 12, Func. Count: 79, Neg. LLF: 146.32337905657357
Iteration: 13, Func. Count: 85, Neg. LLF: 146.3233760490542
Iteration: 14, Func. Count: 90, Neg. LLF: 146.32337604903228
Optimization terminated successfully (Exit mode 0)
Current function value: 146.3233760490542
Iterations: 14
Function evaluations: 90
Gradient evaluations: 14
Iteration: 1, Func. Count: 8, Neg. LLF: 151.77857050080962
Iteration: 2, Func. Count: 17, Neg. LLF: 146.30757580077662
Iteration: 3, Func. Count: 25, Neg. LLF: 146.20994435883605
Iteration: 4, Func. Count: 32, Neg. LLF: 146.19206885350616
Iteration: 5, Func. Count: 39, Neg. LLF: 146.40552089582232
Iteration: 6, Func. Count: 47, Neg. LLF: 146.17356268506163
Iteration: 7, Func. Count: 54, Neg. LLF: 146.1695859713811
Iteration: 8, Func. Count: 61, Neg. LLF: 146.1692326116631
Iteration: 9, Func. Count: 68, Neg. LLF: 146.1691133174636
Iteration: 10, Func. Count: 75, Neg. LLF: 146.16843911488638
Iteration: 11, Func. Count: 82, Neg. LLF: 146.16591754721466
Iteration: 12, Func. Count: 89, Neg. LLF: 146.16438974843464
Iteration: 13, Func. Count: 96, Neg. LLF: 146.16432828823537
Iteration: 14, Func. Count: 103, Neg. LLF: 146.16432246579643
Iteration: 15, Func. Count: 109, Neg. LLF: 146.16432246583733
Optimization terminated successfully (Exit mode 0)
Current function value: 146.16432246579643
Iterations: 15
Function evaluations: 109
Gradient evaluations: 15
Iteration: 1, Func. Count: 9, Neg. LLF: 156.0469046197683
Iteration: 2, Func. Count: 19, Neg. LLF: 147.12474800313092
Iteration: 3, Func. Count: 28, Neg. LLF: 146.2002258000964
Iteration: 4, Func. Count: 36, Neg. LLF: 146.170041520273
Iteration: 5, Func. Count: 44, Neg. LLF: 146.17181623976725
Iteration: 6, Func. Count: 53, Neg. LLF: 146.16927856822326
Iteration: 7, Func. Count: 61, Neg. LLF: 146.16915835093312
Iteration: 8, Func. Count: 69, Neg. LLF: 146.16851396401
Iteration: 9, Func. Count: 77, Neg. LLF: 146.1660833644217
Iteration: 10, Func. Count: 85, Neg. LLF: 146.1643384275699
Iteration: 11, Func. Count: 93, Neg. LLF: 146.16432215979972
Iteration: 12, Func. Count: 100, Neg. LLF: 146.16432217289443
Optimization terminated successfully (Exit mode 0)
Current function value: 146.16432215979972
Iterations: 12
Function evaluations: 100
Gradient evaluations: 12
Iteration: 1, Func. Count: 6, Neg. LLF: 148.56274723841327
Iteration: 2, Func. Count: 12, Neg. LLF: 151.03121981821437
Iteration: 3, Func. Count: 18, Neg. LLF: 147.05846520900872
Iteration: 4, Func. Count: 23, Neg. LLF: 146.59176748340676
Iteration: 5, Func. Count: 28, Neg. LLF: 146.46568413614537
Iteration: 6, Func. Count: 33, Neg. LLF: 146.34391354507352
Iteration: 7, Func. Count: 38, Neg. LLF: 146.2699500484442
Iteration: 8, Func. Count: 43, Neg. LLF: 146.25794917857303
Iteration: 9, Func. Count: 48, Neg. LLF: 146.25591680978766
Iteration: 10, Func. Count: 53, Neg. LLF: 146.2557349025942
Iteration: 11, Func. Count: 58, Neg. LLF: 146.2557291121134
Iteration: 12, Func. Count: 62, Neg. LLF: 146.2557291121131
Optimization terminated successfully (Exit mode 0)
Current function value: 146.2557291121134
Iterations: 12
Function evaluations: 62
Gradient evaluations: 12
Iteration: 1, Func. Count: 7, Neg. LLF: 150.10636496741148
Iteration: 2, Func. Count: 15, Neg. LLF: 147.1687314675383
Iteration: 3, Func. Count: 22, Neg. LLF: 146.68021793445897
Iteration: 4, Func. Count: 29, Neg. LLF: 146.45252091127762
Iteration: 5, Func. Count: 35, Neg. LLF: 146.45223255751307
Iteration: 6, Func. Count: 41, Neg. LLF: 146.45202039550438
Iteration: 7, Func. Count: 47, Neg. LLF: 146.4514701645083
Iteration: 8, Func. Count: 53, Neg. LLF: 146.44696614539433
Iteration: 9, Func. Count: 59, Neg. LLF: 146.34748772354942
Iteration: 10, Func. Count: 65, Neg. LLF: 146.17449734736567
Iteration: 11, Func. Count: 71, Neg. LLF: 146.08908388122333
Iteration: 12, Func. Count: 77, Neg. LLF: 146.04092733182316
Iteration: 13, Func. Count: 83, Neg. LLF: 146.03331794275115
Iteration: 14, Func. Count: 90, Neg. LLF: 145.95538960769557
Iteration: 15, Func. Count: 96, Neg. LLF: 145.95331603612692
Iteration: 16, Func. Count: 102, Neg. LLF: 145.95321255878062
Iteration: 17, Func. Count: 108, Neg. LLF: 145.95319681906645
Iteration: 18, Func. Count: 113, Neg. LLF: 145.95319681899758
Optimization terminated successfully (Exit mode 0)
Current function value: 145.95319681906645
Iterations: 18
Function evaluations: 113
Gradient evaluations: 18
Iteration: 1, Func. Count: 8, Neg. LLF: 151.97873854306908
Iteration: 2, Func. Count: 17, Neg. LLF: 152.11844017168468
Iteration: 3, Func. Count: 25, Neg. LLF: 146.70683526374603
Iteration: 4, Func. Count: 33, Neg. LLF: 146.3406415347688
Iteration: 5, Func. Count: 41, Neg. LLF: 146.34016636676654
Iteration: 6, Func. Count: 49, Neg. LLF: 146.33604417576913
Iteration: 7, Func. Count: 56, Neg. LLF: 146.335285536298
Iteration: 8, Func. Count: 63, Neg. LLF: 146.33205115546403
Iteration: 9, Func. Count: 70, Neg. LLF: 146.3202886375592
Iteration: 10, Func. Count: 77, Neg. LLF: 146.75991230891225
Iteration: 11, Func. Count: 85, Neg. LLF: 150.57017920321275
Iteration: 12, Func. Count: 93, Neg. LLF: 146.95201078137376
Iteration: 13, Func. Count: 101, Neg. LLF: 146.47060558381514
Iteration: 14, Func. Count: 109, Neg. LLF: 146.4288546755038
Iteration: 15, Func. Count: 117, Neg. LLF: 146.33554363392722
Iteration: 16, Func. Count: 125, Neg. LLF: 146.25716351730645
Iteration: 17, Func. Count: 132, Neg. LLF: 146.209669763138
Iteration: 18, Func. Count: 139, Neg. LLF: 146.01938473134072
Iteration: 19, Func. Count: 146, Neg. LLF: 145.96359984951636
Iteration: 20, Func. Count: 153, Neg. LLF: 145.9573150160086
Iteration: 21, Func. Count: 160, Neg. LLF: 145.95449080283714
Iteration: 22, Func. Count: 167, Neg. LLF: 145.95325844452697
Iteration: 23, Func. Count: 174, Neg. LLF: 145.95319730931422
Iteration: 24, Func. Count: 181, Neg. LLF: 145.95319677401602
Optimization terminated successfully (Exit mode 0)
Current function value: 145.95319677401602
Iterations: 24
Function evaluations: 181
Gradient evaluations: 24
Iteration: 1, Func. Count: 9, Neg. LLF: 153.8636882864149
Iteration: 2, Func. Count: 19, Neg. LLF: 147.63635405676044
Iteration: 3, Func. Count: 28, Neg. LLF: 146.2298173730346
Iteration: 4, Func. Count: 37, Neg. LLF: 146.1380853337624
Iteration: 5, Func. Count: 46, Neg. LLF: 146.05648497316105
Iteration: 6, Func. Count: 54, Neg. LLF: 146.059661442237
Iteration: 7, Func. Count: 63, Neg. LLF: 146.0438718411841
Iteration: 8, Func. Count: 71, Neg. LLF: 146.0372132241619
Iteration: 9, Func. Count: 79, Neg. LLF: 146.01711238028108
Iteration: 10, Func. Count: 87, Neg. LLF: 145.97782425539174
Iteration: 11, Func. Count: 95, Neg. LLF: 145.94858974928934
Iteration: 12, Func. Count: 103, Neg. LLF: 145.937037247397
Iteration: 13, Func. Count: 111, Neg. LLF: 145.93708209541924
Iteration: 14, Func. Count: 120, Neg. LLF: 145.93526267561955
Iteration: 15, Func. Count: 128, Neg. LLF: 145.93523576851487
Iteration: 16, Func. Count: 136, Neg. LLF: 145.935235184294
Optimization terminated successfully (Exit mode 0)
Current function value: 145.935235184294
Iterations: 16
Function evaluations: 136
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 159.61737929599047
Iteration: 2, Func. Count: 21, Neg. LLF: 146.3438308387281
Iteration: 3, Func. Count: 31, Neg. LLF: 146.23919380907435
Iteration: 4, Func. Count: 41, Neg. LLF: 146.08639730755527
Iteration: 5, Func. Count: 50, Neg. LLF: 146.25060527466775
Iteration: 6, Func. Count: 60, Neg. LLF: 146.33601708992543
Iteration: 7, Func. Count: 70, Neg. LLF: 146.05634928779295
Iteration: 8, Func. Count: 80, Neg. LLF: 146.04409509427515
Iteration: 9, Func. Count: 89, Neg. LLF: 146.0224005076746
Iteration: 10, Func. Count: 98, Neg. LLF: 145.99560117962585
Iteration: 11, Func. Count: 107, Neg. LLF: 145.96567822092726
Iteration: 12, Func. Count: 116, Neg. LLF: 145.93983005410723
Iteration: 13, Func. Count: 125, Neg. LLF: 145.93611805043122
Iteration: 14, Func. Count: 134, Neg. LLF: 145.9353228107594
Iteration: 15, Func. Count: 143, Neg. LLF: 145.9352456279715
Iteration: 16, Func. Count: 152, Neg. LLF: 145.9352372680407
Iteration: 17, Func. Count: 161, Neg. LLF: 145.93523517103583
Iteration: 18, Func. Count: 169, Neg. LLF: 145.93523521824932
Optimization terminated successfully (Exit mode 0)
Current function value: 145.93523517103583
Iterations: 18
Function evaluations: 169
Gradient evaluations: 18
Iteration: 1, Func. Count: 7, Neg. LLF: 148.4398365359339
Iteration: 2, Func. Count: 14, Neg. LLF: 148.16799659513015
Iteration: 3, Func. Count: 21, Neg. LLF: 146.85672887707955
Iteration: 4, Func. Count: 27, Neg. LLF: 146.76940694730004
Iteration: 5, Func. Count: 34, Neg. LLF: 146.3927704857693
Iteration: 6, Func. Count: 40, Neg. LLF: 146.29887589389838
Iteration: 7, Func. Count: 46, Neg. LLF: 146.26117722837628
Iteration: 8, Func. Count: 52, Neg. LLF: 146.2560382420031
Iteration: 9, Func. Count: 58, Neg. LLF: 146.2557520061544
Iteration: 10, Func. Count: 64, Neg. LLF: 146.25572940881926
Iteration: 11, Func. Count: 69, Neg. LLF: 146.25572948752895
Optimization terminated successfully (Exit mode 0)
Current function value: 146.25572940881926
Iterations: 11
Function evaluations: 69
Gradient evaluations: 11
Iteration: 1, Func. Count: 8, Neg. LLF: 152.44368250297106
Iteration: 2, Func. Count: 17, Neg. LLF: 147.04591588560646
Iteration: 3, Func. Count: 25, Neg. LLF: 146.68017801212542
Iteration: 4, Func. Count: 33, Neg. LLF: 146.45239925132114
Iteration: 5, Func. Count: 40, Neg. LLF: 146.45217248871725
Iteration: 6, Func. Count: 47, Neg. LLF: 146.45142421337303
Iteration: 7, Func. Count: 54, Neg. LLF: 146.44919985246338
Iteration: 8, Func. Count: 61, Neg. LLF: 146.4404536061618
Iteration: 9, Func. Count: 68, Neg. LLF: 146.4160462306503
Iteration: 10, Func. Count: 75, Neg. LLF: 146.2228667364956
Iteration: 11, Func. Count: 82, Neg. LLF: 149.36301748754087
Iteration: 12, Func. Count: 90, Neg. LLF: 146.19653203855503
Iteration: 13, Func. Count: 98, Neg. LLF: 145.9606427857258
Iteration: 14, Func. Count: 105, Neg. LLF: 145.9535424418931
Iteration: 15, Func. Count: 112, Neg. LLF: 145.95325475970662
Iteration: 16, Func. Count: 119, Neg. LLF: 145.9531975486339
Iteration: 17, Func. Count: 126, Neg. LLF: 145.95319678088947
Optimization terminated successfully (Exit mode 0)
Current function value: 145.95319678088947
Iterations: 17
Function evaluations: 126
Gradient evaluations: 17
Iteration: 1, Func. Count: 9, Neg. LLF: 156.13081743939378
Iteration: 2, Func. Count: 19, Neg. LLF: 150.29017896734834
Iteration: 3, Func. Count: 28, Neg. LLF: 146.6584495301309
Iteration: 4, Func. Count: 37, Neg. LLF: 146.33749991986926
Iteration: 5, Func. Count: 45, Neg. LLF: 146.33592080982416
Iteration: 6, Func. Count: 53, Neg. LLF: 146.33554821699687
Iteration: 7, Func. Count: 61, Neg. LLF: 146.3332549443793
Iteration: 8, Func. Count: 69, Neg. LLF: 146.3272910864463
Iteration: 9, Func. Count: 77, Neg. LLF: 146.27174415378883
Iteration: 10, Func. Count: 85, Neg. LLF: 146.13954500858992
Iteration: 11, Func. Count: 93, Neg. LLF: 146.13036946542755
Iteration: 12, Func. Count: 102, Neg. LLF: 146.1402231563669
Iteration: 13, Func. Count: 111, Neg. LLF: 146.03237034195138
Iteration: 14, Func. Count: 119, Neg. LLF: 145.95708202106553
Iteration: 15, Func. Count: 127, Neg. LLF: 145.95450741350564
Iteration: 16, Func. Count: 135, Neg. LLF: 145.95327030539258
Iteration: 17, Func. Count: 143, Neg. LLF: 145.9532015433094
Iteration: 18, Func. Count: 151, Neg. LLF: 145.9531967998414
Iteration: 19, Func. Count: 158, Neg. LLF: 145.95319681012543
Optimization terminated successfully (Exit mode 0)
Current function value: 145.9531967998414
Iterations: 19
Function evaluations: 158
Gradient evaluations: 19
Iteration: 1, Func. Count: 10, Neg. LLF: 154.18287325532745
Iteration: 2, Func. Count: 20, Neg. LLF: 147.52946135723832
Iteration: 3, Func. Count: 30, Neg. LLF: 146.2165613361716
Iteration: 4, Func. Count: 40, Neg. LLF: 146.2995109565206
Iteration: 5, Func. Count: 50, Neg. LLF: 146.05907496876875
Iteration: 6, Func. Count: 59, Neg. LLF: 146.0604555999179
Iteration: 7, Func. Count: 69, Neg. LLF: 146.05599662401468
Iteration: 8, Func. Count: 79, Neg. LLF: 146.04106227492608
Iteration: 9, Func. Count: 88, Neg. LLF: 146.00515352378298
Iteration: 10, Func. Count: 97, Neg. LLF: 145.98701960102363
Iteration: 11, Func. Count: 106, Neg. LLF: 145.94628639024285
Iteration: 12, Func. Count: 115, Neg. LLF: 145.93837064211868
Iteration: 13, Func. Count: 124, Neg. LLF: 145.93567028689344
Iteration: 14, Func. Count: 133, Neg. LLF: 145.93526909051238
Iteration: 15, Func. Count: 142, Neg. LLF: 145.9352389426536
Iteration: 16, Func. Count: 151, Neg. LLF: 145.93523521473756
Iteration: 17, Func. Count: 159, Neg. LLF: 145.9352352147073
Optimization terminated successfully (Exit mode 0)
Current function value: 145.93523521473756
Iterations: 17
Function evaluations: 159
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 159.06031573204356
Iteration: 2, Func. Count: 23, Neg. LLF: 146.321282898135
Iteration: 3, Func. Count: 34, Neg. LLF: 146.24096632632228
Iteration: 4, Func. Count: 45, Neg. LLF: 146.19084411498633
Iteration: 5, Func. Count: 56, Neg. LLF: 146.5351304661864
Iteration: 6, Func. Count: 67, Neg. LLF: 146.06107133501962
Iteration: 7, Func. Count: 77, Neg. LLF: 146.04645245180413
Iteration: 8, Func. Count: 87, Neg. LLF: 146.04201912312584
Iteration: 9, Func. Count: 97, Neg. LLF: 146.03229671757182
Iteration: 10, Func. Count: 107, Neg. LLF: 145.98698000624185
Iteration: 11, Func. Count: 117, Neg. LLF: 145.96165489002783
Iteration: 12, Func. Count: 127, Neg. LLF: 145.93663032256543
Iteration: 13, Func. Count: 137, Neg. LLF: 145.93551287548615
Iteration: 14, Func. Count: 147, Neg. LLF: 145.9353829786852
Iteration: 15, Func. Count: 157, Neg. LLF: 145.9352369983163
Iteration: 16, Func. Count: 167, Neg. LLF: 145.935235394519
Iteration: 17, Func. Count: 176, Neg. LLF: 145.93523544166206
Optimization terminated successfully (Exit mode 0)
Current function value: 145.935235394519
Iterations: 17
Function evaluations: 176
Gradient evaluations: 17
Iteration: 1, Func. Count: 8, Neg. LLF: 148.43959185183982
Iteration: 2, Func. Count: 16, Neg. LLF: 147.18856846834086
Iteration: 3, Func. Count: 23, Neg. LLF: 146.74014139506107
Iteration: 4, Func. Count: 30, Neg. LLF: 146.77001072614905
Iteration: 5, Func. Count: 38, Neg. LLF: 146.42992205098508
Iteration: 6, Func. Count: 45, Neg. LLF: 146.29805601424223
Iteration: 7, Func. Count: 52, Neg. LLF: 146.2659254804318
Iteration: 8, Func. Count: 59, Neg. LLF: 146.25673329464664
Iteration: 9, Func. Count: 66, Neg. LLF: 146.25587079873054
Iteration: 10, Func. Count: 73, Neg. LLF: 146.25574140254363
Iteration: 11, Func. Count: 80, Neg. LLF: 146.2557296259041
Iteration: 12, Func. Count: 87, Neg. LLF: 146.25572906072242
Optimization terminated successfully (Exit mode 0)
Current function value: 146.25572906072242
Iterations: 12
Function evaluations: 87
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 153.12340541520598
Iteration: 2, Func. Count: 19, Neg. LLF: 147.00538392489617
Iteration: 3, Func. Count: 28, Neg. LLF: 146.67827387450464
Iteration: 4, Func. Count: 37, Neg. LLF: 146.45240166776352
Iteration: 5, Func. Count: 45, Neg. LLF: 146.45220746544803
Iteration: 6, Func. Count: 53, Neg. LLF: 146.4515806458355
Iteration: 7, Func. Count: 61, Neg. LLF: 146.44852921025793
Iteration: 8, Func. Count: 69, Neg. LLF: 146.56432283213658
Iteration: 9, Func. Count: 78, Neg. LLF: 151.05358987335532
Iteration: 10, Func. Count: 87, Neg. LLF: 146.45672830067068
Iteration: 11, Func. Count: 96, Neg. LLF: 146.41737537084506
Iteration: 12, Func. Count: 104, Neg. LLF: 146.38848492808236
Iteration: 13, Func. Count: 112, Neg. LLF: 146.92244956117565
Iteration: 14, Func. Count: 121, Neg. LLF: 146.43329947014007
Iteration: 15, Func. Count: 130, Neg. LLF: 146.48163394889662
Iteration: 16, Func. Count: 139, Neg. LLF: 146.04622464348358
Iteration: 17, Func. Count: 147, Neg. LLF: 146.1346217419899
Iteration: 18, Func. Count: 156, Neg. LLF: 145.9808875001805
Iteration: 19, Func. Count: 164, Neg. LLF: 145.95437250022795
Iteration: 20, Func. Count: 172, Neg. LLF: 145.9532750035954
Iteration: 21, Func. Count: 180, Neg. LLF: 145.95320445250118
Iteration: 22, Func. Count: 188, Neg. LLF: 145.95319678539593
Iteration: 23, Func. Count: 195, Neg. LLF: 145.95319678540125
Optimization terminated successfully (Exit mode 0)
Current function value: 145.95319678539593
Iterations: 23
Function evaluations: 195
Gradient evaluations: 23
Iteration: 1, Func. Count: 10, Neg. LLF: 156.1777646147242
Iteration: 2, Func. Count: 21, Neg. LLF: 150.16592803638758
Iteration: 3, Func. Count: 31, Neg. LLF: 146.6477648421568
Iteration: 4, Func. Count: 41, Neg. LLF: 146.3387785824743
Iteration: 5, Func. Count: 50, Neg. LLF: 146.33841604441238
Iteration: 6, Func. Count: 60, Neg. LLF: 146.34173973420056
Iteration: 7, Func. Count: 70, Neg. LLF: 146.33535351676662
Iteration: 8, Func. Count: 79, Neg. LLF: 146.33252369492305
Iteration: 9, Func. Count: 88, Neg. LLF: 146.31177660545916
Iteration: 10, Func. Count: 97, Neg. LLF: 146.1113706680198
Iteration: 11, Func. Count: 106, Neg. LLF: 146.19060097615687
Iteration: 12, Func. Count: 116, Neg. LLF: 146.0547904219778
Iteration: 13, Func. Count: 125, Neg. LLF: 146.03013668856602
Iteration: 14, Func. Count: 134, Neg. LLF: 145.95969132591003
Iteration: 15, Func. Count: 143, Neg. LLF: 145.9544968524029
Iteration: 16, Func. Count: 152, Neg. LLF: 145.953404003422
Iteration: 17, Func. Count: 161, Neg. LLF: 145.95321416041173
Iteration: 18, Func. Count: 170, Neg. LLF: 145.95319693035998
Iteration: 19, Func. Count: 178, Neg. LLF: 145.9531969405588
Optimization terminated successfully (Exit mode 0)
Current function value: 145.95319693035998
Iterations: 19
Function evaluations: 178
Gradient evaluations: 19
Iteration: 1, Func. Count: 11, Neg. LLF: 154.18831332509254
Iteration: 2, Func. Count: 22, Neg. LLF: 147.5259908545591
Iteration: 3, Func. Count: 33, Neg. LLF: 146.21456327190018
Iteration: 4, Func. Count: 44, Neg. LLF: 146.29653174977685
Iteration: 5, Func. Count: 55, Neg. LLF: 146.06435105829047
Iteration: 6, Func. Count: 65, Neg. LLF: 146.0715695278654
Iteration: 7, Func. Count: 76, Neg. LLF: 146.05647698039357
Iteration: 8, Func. Count: 87, Neg. LLF: 146.04167852883916
Iteration: 9, Func. Count: 97, Neg. LLF: 146.00852620035926
Iteration: 10, Func. Count: 107, Neg. LLF: 145.97732424068232
Iteration: 11, Func. Count: 117, Neg. LLF: 145.94866313992296
Iteration: 12, Func. Count: 127, Neg. LLF: 145.93939144140512
Iteration: 13, Func. Count: 137, Neg. LLF: 145.93556453429628
Iteration: 14, Func. Count: 147, Neg. LLF: 145.93528281948275
Iteration: 15, Func. Count: 157, Neg. LLF: 145.93523851922566
Iteration: 16, Func. Count: 167, Neg. LLF: 145.935235184939
Iteration: 17, Func. Count: 176, Neg. LLF: 145.93523518491793
Optimization terminated successfully (Exit mode 0)
Current function value: 145.935235184939
Iterations: 17
Function evaluations: 176
Gradient evaluations: 17
Iteration: 1, Func. Count: 12, Neg. LLF: 158.27508541001242
Iteration: 2, Func. Count: 25, Neg. LLF: 146.30760220288101
Iteration: 3, Func. Count: 36, Neg. LLF: 146.21691615251424
Iteration: 4, Func. Count: 47, Neg. LLF: 147.26210102464069
Iteration: 5, Func. Count: 59, Neg. LLF: 146.17279083397304
Iteration: 6, Func. Count: 71, Neg. LLF: 146.3387321874206
Iteration: 7, Func. Count: 83, Neg. LLF: 146.05513678592678
Iteration: 8, Func. Count: 94, Neg. LLF: 146.04640502175718
Iteration: 9, Func. Count: 105, Neg. LLF: 146.04093416777607
Iteration: 10, Func. Count: 116, Neg. LLF: 146.03462060059857
Iteration: 11, Func. Count: 127, Neg. LLF: 146.01092268636137
Iteration: 12, Func. Count: 138, Neg. LLF: 145.98148799565635
Iteration: 13, Func. Count: 149, Neg. LLF: 145.942845984727
Iteration: 14, Func. Count: 160, Neg. LLF: 145.93578343233176
Iteration: 15, Func. Count: 171, Neg. LLF: 145.93537016133405
Iteration: 16, Func. Count: 182, Neg. LLF: 145.93524428719942
Iteration: 17, Func. Count: 193, Neg. LLF: 145.93523586297277
Iteration: 18, Func. Count: 204, Neg. LLF: 145.93523519327368
Optimization terminated successfully (Exit mode 0)
Current function value: 145.93523519327368
Iterations: 18
Function evaluations: 204
Gradient evaluations: 18
Iteration: 1, Func. Count: 9, Neg. LLF: 148.42764865702367
Iteration: 2, Func. Count: 18, Neg. LLF: 151.59707384889265
Iteration: 3, Func. Count: 28, Neg. LLF: 147.05559615361318
Iteration: 4, Func. Count: 36, Neg. LLF: 146.77438977595267
Iteration: 5, Func. Count: 44, Neg. LLF: 146.70787444946419
Iteration: 6, Func. Count: 52, Neg. LLF: 146.61225175708637
Iteration: 7, Func. Count: 60, Neg. LLF: 146.4734804263403
Iteration: 8, Func. Count: 68, Neg. LLF: 146.37227787413195
Iteration: 9, Func. Count: 76, Neg. LLF: 146.27123918564948
Iteration: 10, Func. Count: 84, Neg. LLF: 146.25691432420433
Iteration: 11, Func. Count: 92, Neg. LLF: 146.2557954088803
Iteration: 12, Func. Count: 100, Neg. LLF: 146.25573553803366
Iteration: 13, Func. Count: 108, Neg. LLF: 146.25572944706596
Iteration: 14, Func. Count: 115, Neg. LLF: 146.25572946696553
Optimization terminated successfully (Exit mode 0)
Current function value: 146.25572944706596
Iterations: 14
Function evaluations: 115
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 153.23694191637622
Iteration: 2, Func. Count: 21, Neg. LLF: 147.08329129276416
Iteration: 3, Func. Count: 31, Neg. LLF: 146.46805592587083
Iteration: 4, Func. Count: 40, Neg. LLF: 146.45873574286765
Iteration: 5, Func. Count: 49, Neg. LLF: 146.46188808917216
Iteration: 6, Func. Count: 59, Neg. LLF: 146.45238723898743
Iteration: 7, Func. Count: 68, Neg. LLF: 146.4519943025312
Iteration: 8, Func. Count: 77, Neg. LLF: 146.4516748106869
Iteration: 9, Func. Count: 86, Neg. LLF: 146.44890224261854
Iteration: 10, Func. Count: 95, Neg. LLF: 146.3938986012798
Iteration: 11, Func. Count: 104, Neg. LLF: 146.16692288753893
Iteration: 12, Func. Count: 113, Neg. LLF: 147.32943629341645
Iteration: 13, Func. Count: 123, Neg. LLF: 146.12147754949194
Iteration: 14, Func. Count: 133, Neg. LLF: 146.02969899617813
Iteration: 15, Func. Count: 143, Neg. LLF: 145.96305717015278
Iteration: 16, Func. Count: 152, Neg. LLF: 145.95573729928503
Iteration: 17, Func. Count: 161, Neg. LLF: 145.95272104767795
Iteration: 18, Func. Count: 170, Neg. LLF: 145.95199457061906
Iteration: 19, Func. Count: 179, Neg. LLF: 145.9519088057177
Iteration: 20, Func. Count: 188, Neg. LLF: 145.95190346574194
Iteration: 21, Func. Count: 196, Neg. LLF: 145.95190346578067
Optimization terminated successfully (Exit mode 0)
Current function value: 145.95190346574194
Iterations: 21
Function evaluations: 196
Gradient evaluations: 21
Iteration: 1, Func. Count: 11, Neg. LLF: 155.57599169402033
Iteration: 2, Func. Count: 23, Neg. LLF: 150.58858940022282
Iteration: 3, Func. Count: 34, Neg. LLF: 146.65429026229253
Iteration: 4, Func. Count: 45, Neg. LLF: 146.34187139996905
Iteration: 5, Func. Count: 55, Neg. LLF: 146.33870258482165
Iteration: 6, Func. Count: 65, Neg. LLF: 146.34820874976293
Iteration: 7, Func. Count: 76, Neg. LLF: 146.33542582637665
Iteration: 8, Func. Count: 86, Neg. LLF: 146.3347216902885
Iteration: 9, Func. Count: 96, Neg. LLF: 146.32922329130702
Iteration: 10, Func. Count: 106, Neg. LLF: 146.2729729979241
Iteration: 11, Func. Count: 116, Neg. LLF: 147.27792775029374
Iteration: 12, Func. Count: 127, Neg. LLF: 146.29016502583886
Iteration: 13, Func. Count: 138, Neg. LLF: 146.2076588543929
Iteration: 14, Func. Count: 148, Neg. LLF: 146.12098806188632
Iteration: 15, Func. Count: 158, Neg. LLF: 146.06523094395598
Iteration: 16, Func. Count: 168, Neg. LLF: 146.05629546301188
Iteration: 17, Func. Count: 178, Neg. LLF: 145.9713058438151
Iteration: 18, Func. Count: 188, Neg. LLF: 145.97471557756444
Iteration: 19, Func. Count: 199, Neg. LLF: 145.95390215606622
Iteration: 20, Func. Count: 209, Neg. LLF: 145.9522153423626
Iteration: 21, Func. Count: 219, Neg. LLF: 145.9519155946528
Iteration: 22, Func. Count: 229, Neg. LLF: 145.95190358054973
Iteration: 23, Func. Count: 238, Neg. LLF: 145.95190359156481
Optimization terminated successfully (Exit mode 0)
Current function value: 145.95190358054973
Iterations: 23
Function evaluations: 238
Gradient evaluations: 23
Iteration: 1, Func. Count: 12, Neg. LLF: 154.08455429192497
Iteration: 2, Func. Count: 24, Neg. LLF: 147.6722860529254
Iteration: 3, Func. Count: 36, Neg. LLF: 146.21400148613924
Iteration: 4, Func. Count: 48, Neg. LLF: 146.28566404505332
Iteration: 5, Func. Count: 60, Neg. LLF: 146.06447133879328
Iteration: 6, Func. Count: 71, Neg. LLF: 146.0754725817463
Iteration: 7, Func. Count: 83, Neg. LLF: 146.05490807793558
Iteration: 8, Func. Count: 95, Neg. LLF: 146.04154658674923
Iteration: 9, Func. Count: 106, Neg. LLF: 146.00909822375453
Iteration: 10, Func. Count: 117, Neg. LLF: 145.9881482349252
Iteration: 11, Func. Count: 128, Neg. LLF: 145.94935087116224
Iteration: 12, Func. Count: 139, Neg. LLF: 145.93972407270277
Iteration: 13, Func. Count: 150, Neg. LLF: 145.9358863614205
Iteration: 14, Func. Count: 161, Neg. LLF: 145.9353124445292
Iteration: 15, Func. Count: 172, Neg. LLF: 145.93524510382144
Iteration: 16, Func. Count: 183, Neg. LLF: 145.935235260491
Iteration: 17, Func. Count: 193, Neg. LLF: 145.9352352604513
Optimization terminated successfully (Exit mode 0)
Current function value: 145.935235260491
Iterations: 17
Function evaluations: 193
Gradient evaluations: 17
Iteration: 1, Func. Count: 13, Neg. LLF: 157.3394470817132
Iteration: 2, Func. Count: 27, Neg. LLF: 146.29402885133527
Iteration: 3, Func. Count: 39, Neg. LLF: 146.2147917838933
Iteration: 4, Func. Count: 52, Neg. LLF: 147.11266928712914
Iteration: 5, Func. Count: 65, Neg. LLF: 146.10435448168678
Iteration: 6, Func. Count: 78, Neg. LLF: 146.2779728648097
Iteration: 7, Func. Count: 91, Neg. LLF: 146.07634199998867
Iteration: 8, Func. Count: 104, Neg. LLF: 146.04427802412232
Iteration: 9, Func. Count: 116, Neg. LLF: 146.02356297613082
Iteration: 10, Func. Count: 128, Neg. LLF: 145.97801441507363
Iteration: 11, Func. Count: 140, Neg. LLF: 145.9528275502868
Iteration: 12, Func. Count: 152, Neg. LLF: 145.93984860031287
Iteration: 13, Func. Count: 164, Neg. LLF: 145.9362053232726
Iteration: 14, Func. Count: 176, Neg. LLF: 145.93527199921027
Iteration: 15, Func. Count: 188, Neg. LLF: 145.93523667931674
Iteration: 16, Func. Count: 200, Neg. LLF: 145.9352351964824
Iteration: 17, Func. Count: 211, Neg. LLF: 145.9352352436792
Optimization terminated successfully (Exit mode 0)
Current function value: 145.9352351964824
Iterations: 17
Function evaluations: 211
Gradient evaluations: 17
Iteration: 1, Func. Count: 6, Neg. LLF: 148.54464715149692
Iteration: 2, Func. Count: 12, Neg. LLF: 147.28732036558375
Iteration: 3, Func. Count: 18, Neg. LLF: 147.25744944930645
Iteration: 4, Func. Count: 24, Neg. LLF: 147.58260063156945
Iteration: 5, Func. Count: 30, Neg. LLF: 146.41331942263912
Iteration: 6, Func. Count: 35, Neg. LLF: 146.36516390435685
Iteration: 7, Func. Count: 40, Neg. LLF: 146.3255617534765
Iteration: 8, Func. Count: 45, Neg. LLF: 146.3242105905522
Iteration: 9, Func. Count: 50, Neg. LLF: 146.32417457872936
Iteration: 10, Func. Count: 54, Neg. LLF: 146.324174611153
Optimization terminated successfully (Exit mode 0)
Current function value: 146.32417457872936
Iterations: 10
Function evaluations: 54
Gradient evaluations: 10
Iteration: 1, Func. Count: 7, Neg. LLF: 148.7229120248027
Iteration: 2, Func. Count: 14, Neg. LLF: 149.067439097611
Iteration: 3, Func. Count: 22, Neg. LLF: 146.49955388025433
Iteration: 4, Func. Count: 28, Neg. LLF: 146.49875419559766
Iteration: 5, Func. Count: 34, Neg. LLF: 146.49720940525532
Iteration: 6, Func. Count: 40, Neg. LLF: 146.49659467156056
Iteration: 7, Func. Count: 46, Neg. LLF: 146.49304736340994
Iteration: 8, Func. Count: 52, Neg. LLF: 146.48684731906226
Iteration: 9, Func. Count: 58, Neg. LLF: 146.48094532314173
Iteration: 10, Func. Count: 64, Neg. LLF: 146.47410886121963
Iteration: 11, Func. Count: 70, Neg. LLF: 146.33232668239415
Iteration: 12, Func. Count: 76, Neg. LLF: 146.3275240077655
Iteration: 13, Func. Count: 82, Neg. LLF: 146.32435766120975
Iteration: 14, Func. Count: 88, Neg. LLF: 146.32428129172686
Iteration: 15, Func. Count: 94, Neg. LLF: 146.32418641302655
Iteration: 16, Func. Count: 100, Neg. LLF: 146.32417724342002
Iteration: 17, Func. Count: 106, Neg. LLF: 146.3241742902868
Iteration: 18, Func. Count: 111, Neg. LLF: 146.32417429832418
Optimization terminated successfully (Exit mode 0)
Current function value: 146.3241742902868
Iterations: 18
Function evaluations: 111
Gradient evaluations: 18
Iteration: 1, Func. Count: 8, Neg. LLF: 148.64561795815683
Iteration: 2, Func. Count: 17, Neg. LLF: 147.3708994161195
Iteration: 3, Func. Count: 25, Neg. LLF: 146.47314215809985
Iteration: 4, Func. Count: 33, Neg. LLF: 146.37449922905998
Iteration: 5, Func. Count: 40, Neg. LLF: 146.37432884818094
Iteration: 6, Func. Count: 48, Neg. LLF: 146.37237107527025
Iteration: 7, Func. Count: 55, Neg. LLF: 146.37202119379663
Iteration: 8, Func. Count: 62, Neg. LLF: 146.37156095416157
Iteration: 9, Func. Count: 69, Neg. LLF: 146.36993980491184
Iteration: 10, Func. Count: 76, Neg. LLF: 146.36619394282258
Iteration: 11, Func. Count: 83, Neg. LLF: 146.35463075483648
Iteration: 12, Func. Count: 90, Neg. LLF: 146.33755587767317
Iteration: 13, Func. Count: 97, Neg. LLF: 146.32838228064145
Iteration: 14, Func. Count: 104, Neg. LLF: 146.3241975250071
Iteration: 15, Func. Count: 111, Neg. LLF: 146.32357424370596
Iteration: 16, Func. Count: 118, Neg. LLF: 146.32339315031916
Iteration: 17, Func. Count: 125, Neg. LLF: 146.32337712563867
Iteration: 18, Func. Count: 132, Neg. LLF: 146.32337600948466
Iteration: 19, Func. Count: 138, Neg. LLF: 146.32337600945655
Optimization terminated successfully (Exit mode 0)
Current function value: 146.32337600948466
Iterations: 19
Function evaluations: 138
Gradient evaluations: 19
Iteration: 1, Func. Count: 9, Neg. LLF: 148.6387177802624
Iteration: 2, Func. Count: 19, Neg. LLF: 147.40135025922416
Iteration: 3, Func. Count: 28, Neg. LLF: 146.240451093607
Iteration: 4, Func. Count: 36, Neg. LLF: 146.19076647642942
Iteration: 5, Func. Count: 44, Neg. LLF: 146.53449894972854
Iteration: 6, Func. Count: 53, Neg. LLF: 146.17152985485467
Iteration: 7, Func. Count: 61, Neg. LLF: 146.17028435724617
Iteration: 8, Func. Count: 69, Neg. LLF: 146.17001953883806
Iteration: 9, Func. Count: 77, Neg. LLF: 146.16982541530376
Iteration: 10, Func. Count: 85, Neg. LLF: 146.16867783157355
Iteration: 11, Func. Count: 93, Neg. LLF: 146.16664103716454
Iteration: 12, Func. Count: 101, Neg. LLF: 146.16516792615008
Iteration: 13, Func. Count: 109, Neg. LLF: 146.16444047554302
Iteration: 14, Func. Count: 117, Neg. LLF: 146.1643301200834
Iteration: 15, Func. Count: 125, Neg. LLF: 146.16432234537163
Iteration: 16, Func. Count: 132, Neg. LLF: 146.1643223454027
Optimization terminated successfully (Exit mode 0)
Current function value: 146.16432234537163
Iterations: 16
Function evaluations: 132
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 148.65059400378607
Iteration: 2, Func. Count: 21, Neg. LLF: 147.37538087757304
Iteration: 3, Func. Count: 31, Neg. LLF: 146.34643381782988
Iteration: 4, Func. Count: 40, Neg. LLF: 146.1916652218167
Iteration: 5, Func. Count: 49, Neg. LLF: 146.52971252087514
Iteration: 6, Func. Count: 59, Neg. LLF: 146.1717185684208
Iteration: 7, Func. Count: 68, Neg. LLF: 146.17060267041455
Iteration: 8, Func. Count: 77, Neg. LLF: 146.17008058349563
Iteration: 9, Func. Count: 86, Neg. LLF: 146.16992840180285
Iteration: 10, Func. Count: 95, Neg. LLF: 146.16903591700827
Iteration: 11, Func. Count: 104, Neg. LLF: 146.1657955350044
Iteration: 12, Func. Count: 113, Neg. LLF: 146.16452173669404
Iteration: 13, Func. Count: 122, Neg. LLF: 146.16434820736941
Iteration: 14, Func. Count: 131, Neg. LLF: 146.16432369487822
Iteration: 15, Func. Count: 140, Neg. LLF: 146.1643221081478
Iteration: 16, Func. Count: 148, Neg. LLF: 146.16432212127705
Optimization terminated successfully (Exit mode 0)
Current function value: 146.1643221081478
Iterations: 16
Function evaluations: 148
Gradient evaluations: 16
Iteration: 1, Func. Count: 7, Neg. LLF: 148.49692646242215
Iteration: 2, Func. Count: 14, Neg. LLF: 149.1194408067992
Iteration: 3, Func. Count: 21, Neg. LLF: 146.9261139406732
Iteration: 4, Func. Count: 27, Neg. LLF: 148.05191426723357
Iteration: 5, Func. Count: 34, Neg. LLF: 147.17716836438387
Iteration: 6, Func. Count: 41, Neg. LLF: 146.4622423285805
Iteration: 7, Func. Count: 47, Neg. LLF: 146.34886571995435
Iteration: 8, Func. Count: 53, Neg. LLF: 146.2747950804853
Iteration: 9, Func. Count: 59, Neg. LLF: 146.25845054915246
Iteration: 10, Func. Count: 65, Neg. LLF: 146.25591934174005
Iteration: 11, Func. Count: 71, Neg. LLF: 146.25573251257106
Iteration: 12, Func. Count: 77, Neg. LLF: 146.25572905027025
Iteration: 13, Func. Count: 82, Neg. LLF: 146.25572905026854
Optimization terminated successfully (Exit mode 0)
Current function value: 146.25572905027025
Iterations: 13
Function evaluations: 82
Gradient evaluations: 13
Iteration: 1, Func. Count: 8, Neg. LLF: 151.48835596678697
Iteration: 2, Func. Count: 16, Neg. LLF: 155.84056307206885
Iteration: 3, Func. Count: 25, Neg. LLF: 146.1991764850273
Iteration: 4, Func. Count: 32, Neg. LLF: 146.12701483215423
Iteration: 5, Func. Count: 39, Neg. LLF: 146.10600704547608
Iteration: 6, Func. Count: 46, Neg. LLF: 145.9936070492668
Iteration: 7, Func. Count: 53, Neg. LLF: 146.01834809458444
Iteration: 8, Func. Count: 61, Neg. LLF: 145.95346033231084
Iteration: 9, Func. Count: 68, Neg. LLF: 145.95321741580693
Iteration: 10, Func. Count: 75, Neg. LLF: 145.95319890385971
Iteration: 11, Func. Count: 82, Neg. LLF: 145.9531968848996
Iteration: 12, Func. Count: 88, Neg. LLF: 145.95319688487825
Optimization terminated successfully (Exit mode 0)
Current function value: 145.9531968848996
Iterations: 12
Function evaluations: 88
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 148.63759036183822
Iteration: 2, Func. Count: 19, Neg. LLF: 149.43170636434346
Iteration: 3, Func. Count: 28, Neg. LLF: 146.50132313976556
Iteration: 4, Func. Count: 37, Neg. LLF: 146.96716279724657
Iteration: 5, Func. Count: 46, Neg. LLF: 146.33643597908
Iteration: 6, Func. Count: 54, Neg. LLF: 146.3355177573437
Iteration: 7, Func. Count: 62, Neg. LLF: 146.33554787697778
Iteration: 8, Func. Count: 71, Neg. LLF: 146.33420223030964
Iteration: 9, Func. Count: 79, Neg. LLF: 146.32969934724855
Iteration: 10, Func. Count: 87, Neg. LLF: 146.29068804822398
Iteration: 11, Func. Count: 95, Neg. LLF: 146.1028362864766
Iteration: 12, Func. Count: 103, Neg. LLF: 146.0680826628215
Iteration: 13, Func. Count: 111, Neg. LLF: 146.03733752707714
Iteration: 14, Func. Count: 119, Neg. LLF: 145.99399378646513
Iteration: 15, Func. Count: 127, Neg. LLF: 145.95871266101324
Iteration: 16, Func. Count: 135, Neg. LLF: 145.95361486878392
Iteration: 17, Func. Count: 143, Neg. LLF: 145.9532075463712
Iteration: 18, Func. Count: 151, Neg. LLF: 145.95319739385008
Iteration: 19, Func. Count: 159, Neg. LLF: 145.95319678100904
Optimization terminated successfully (Exit mode 0)
Current function value: 145.95319678100904
Iterations: 19
Function evaluations: 159
Gradient evaluations: 19
Iteration: 1, Func. Count: 10, Neg. LLF: 148.59145624309312
Iteration: 2, Func. Count: 21, Neg. LLF: 152.2549469034741
Iteration: 3, Func. Count: 31, Neg. LLF: 146.1488766736727
Iteration: 4, Func. Count: 40, Neg. LLF: 146.23851322493343
Iteration: 5, Func. Count: 50, Neg. LLF: 146.6876180047505
Iteration: 6, Func. Count: 60, Neg. LLF: 146.11328989997585
Iteration: 7, Func. Count: 70, Neg. LLF: 146.0452457904279
Iteration: 8, Func. Count: 79, Neg. LLF: 146.0413079368226
Iteration: 9, Func. Count: 88, Neg. LLF: 146.02065758715815
Iteration: 10, Func. Count: 97, Neg. LLF: 145.994567906988
Iteration: 11, Func. Count: 106, Neg. LLF: 145.95871562741436
Iteration: 12, Func. Count: 115, Neg. LLF: 145.93852064384984
Iteration: 13, Func. Count: 124, Neg. LLF: 145.93573897905992
Iteration: 14, Func. Count: 133, Neg. LLF: 145.93538816012622
Iteration: 15, Func. Count: 142, Neg. LLF: 145.935253482146
Iteration: 16, Func. Count: 151, Neg. LLF: 145.9352352954731
Iteration: 17, Func. Count: 159, Neg. LLF: 145.93523529551186
Optimization terminated successfully (Exit mode 0)
Current function value: 145.9352352954731
Iterations: 17
Function evaluations: 159
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 148.551752857048
Iteration: 2, Func. Count: 23, Neg. LLF: 148.39086507968528
Iteration: 3, Func. Count: 34, Neg. LLF: 146.25002221382758
Iteration: 4, Func. Count: 44, Neg. LLF: 146.23396926383765
Iteration: 5, Func. Count: 55, Neg. LLF: 146.8058544504494
Iteration: 6, Func. Count: 66, Neg. LLF: 146.0847908876561
Iteration: 7, Func. Count: 77, Neg. LLF: 146.04714162947695
Iteration: 8, Func. Count: 87, Neg. LLF: 146.0428834289189
Iteration: 9, Func. Count: 97, Neg. LLF: 146.0326672518365
Iteration: 10, Func. Count: 107, Neg. LLF: 146.00993577151104
Iteration: 11, Func. Count: 117, Neg. LLF: 145.9725425847683
Iteration: 12, Func. Count: 127, Neg. LLF: 145.9380536895286
Iteration: 13, Func. Count: 137, Neg. LLF: 145.93571535404539
Iteration: 14, Func. Count: 147, Neg. LLF: 145.93530116957396
Iteration: 15, Func. Count: 157, Neg. LLF: 145.93523938064584
Iteration: 16, Func. Count: 167, Neg. LLF: 145.9352357578906
Iteration: 17, Func. Count: 177, Neg. LLF: 145.935235169283
Optimization terminated successfully (Exit mode 0)
Current function value: 145.935235169283
Iterations: 17
Function evaluations: 177
Gradient evaluations: 17
Iteration: 1, Func. Count: 8, Neg. LLF: 149.72553561225163
Iteration: 2, Func. Count: 16, Neg. LLF: 148.32641120553942
Iteration: 3, Func. Count: 24, Neg. LLF: 147.05990830143304
Iteration: 4, Func. Count: 31, Neg. LLF: 146.42829570542744
Iteration: 5, Func. Count: 38, Neg. LLF: 146.29149990656066
Iteration: 6, Func. Count: 45, Neg. LLF: 146.239837863961
Iteration: 7, Func. Count: 52, Neg. LLF: 146.1441484632506
Iteration: 8, Func. Count: 59, Neg. LLF: 146.06125325317174
Iteration: 9, Func. Count: 66, Neg. LLF: 146.04292573256336
Iteration: 10, Func. Count: 73, Neg. LLF: 146.04048813435378
Iteration: 11, Func. Count: 80, Neg. LLF: 146.0403792932972
Iteration: 12, Func. Count: 87, Neg. LLF: 146.04036253135004
Iteration: 13, Func. Count: 94, Neg. LLF: 146.04036187939462
Optimization terminated successfully (Exit mode 0)
Current function value: 146.04036187939462
Iterations: 13
Function evaluations: 94
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 160.72537723909895
Iteration: 2, Func. Count: 18, Neg. LLF: 164.522661927844
Iteration: 3, Func. Count: 27, Neg. LLF: 146.0134897055792
Iteration: 4, Func. Count: 35, Neg. LLF: 145.41777942274206
Iteration: 5, Func. Count: 43, Neg. LLF: 145.40504873609203
Iteration: 6, Func. Count: 51, Neg. LLF: 145.39996456733797
Iteration: 7, Func. Count: 59, Neg. LLF: 145.39660925674568
Iteration: 8, Func. Count: 67, Neg. LLF: 145.39616824238968
Iteration: 9, Func. Count: 75, Neg. LLF: 145.39611752487411
Iteration: 10, Func. Count: 83, Neg. LLF: 145.3960358270042
Iteration: 11, Func. Count: 91, Neg. LLF: 145.39599356621454
Iteration: 12, Func. Count: 99, Neg. LLF: 145.39598273198922
Iteration: 13, Func. Count: 107, Neg. LLF: 145.3959821156529
Optimization terminated successfully (Exit mode 0)
Current function value: 145.3959821156529
Iterations: 13
Function evaluations: 107
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 148.68223693935016
Iteration: 2, Func. Count: 21, Neg. LLF: 151.14958140508782
Iteration: 3, Func. Count: 31, Neg. LLF: 145.78597380523973
Iteration: 4, Func. Count: 40, Neg. LLF: 145.7209211150338
Iteration: 5, Func. Count: 49, Neg. LLF: 146.3701299846817
Iteration: 6, Func. Count: 60, Neg. LLF: 145.66917707886333
Iteration: 7, Func. Count: 69, Neg. LLF: 145.62089214292703
Iteration: 8, Func. Count: 78, Neg. LLF: 145.59080207717895
Iteration: 9, Func. Count: 87, Neg. LLF: 145.56804706155785
Iteration: 10, Func. Count: 96, Neg. LLF: 145.49640809574174
Iteration: 11, Func. Count: 105, Neg. LLF: 145.46934075779768
Iteration: 12, Func. Count: 114, Neg. LLF: 145.4608890888849
Iteration: 13, Func. Count: 123, Neg. LLF: 145.45298689617118
Iteration: 14, Func. Count: 132, Neg. LLF: 145.44658538514807
Iteration: 15, Func. Count: 141, Neg. LLF: 145.44436020774867
Iteration: 16, Func. Count: 150, Neg. LLF: 145.44409576458125
Iteration: 17, Func. Count: 159, Neg. LLF: 145.44408811242153
Iteration: 18, Func. Count: 168, Neg. LLF: 145.44408684373482
Iteration: 19, Func. Count: 176, Neg. LLF: 145.4440868437231
Optimization terminated successfully (Exit mode 0)
Current function value: 145.44408684373482
Iterations: 19
Function evaluations: 176
Gradient evaluations: 19
Iteration: 1, Func. Count: 11, Neg. LLF: 148.44272424944094
Iteration: 2, Func. Count: 23, Neg. LLF: 151.19326823099857
Iteration: 3, Func. Count: 34, Neg. LLF: 146.0222815323469
Iteration: 4, Func. Count: 44, Neg. LLF: 145.9957588726721
Iteration: 5, Func. Count: 55, Neg. LLF: 145.85353676425026
Iteration: 6, Func. Count: 65, Neg. LLF: 145.63308880108664
Iteration: 7, Func. Count: 75, Neg. LLF: 146.0119200951413
Iteration: 8, Func. Count: 87, Neg. LLF: 145.5986186508524
Iteration: 9, Func. Count: 97, Neg. LLF: 145.54792822132904
Iteration: 10, Func. Count: 107, Neg. LLF: 145.51686803970995
Iteration: 11, Func. Count: 117, Neg. LLF: 145.49336871156564
Iteration: 12, Func. Count: 127, Neg. LLF: 145.47829926901846
Iteration: 13, Func. Count: 137, Neg. LLF: 145.44640450443208
Iteration: 14, Func. Count: 147, Neg. LLF: 145.4443227432115
Iteration: 15, Func. Count: 157, Neg. LLF: 145.44411766013692
Iteration: 16, Func. Count: 167, Neg. LLF: 145.444097391908
Iteration: 17, Func. Count: 177, Neg. LLF: 145.44408709217888
Iteration: 18, Func. Count: 186, Neg. LLF: 145.44408716305878
Optimization terminated successfully (Exit mode 0)
Current function value: 145.44408709217888
Iterations: 18
Function evaluations: 186
Gradient evaluations: 18
Iteration: 1, Func. Count: 12, Neg. LLF: 148.1534381165891
Iteration: 2, Func. Count: 25, Neg. LLF: 146.8701758162757
Iteration: 3, Func. Count: 37, Neg. LLF: 145.77597276469584
Iteration: 4, Func. Count: 48, Neg. LLF: 145.72493006778518
Iteration: 5, Func. Count: 59, Neg. LLF: 145.69404649342476
Iteration: 6, Func. Count: 70, Neg. LLF: 146.08356702052714
Iteration: 7, Func. Count: 83, Neg. LLF: 145.5875346917137
Iteration: 8, Func. Count: 94, Neg. LLF: 145.6993180715718
Iteration: 9, Func. Count: 106, Neg. LLF: 145.53803458905026
Iteration: 10, Func. Count: 117, Neg. LLF: 145.51700004410353
Iteration: 11, Func. Count: 128, Neg. LLF: 145.45104702881173
Iteration: 12, Func. Count: 139, Neg. LLF: 145.44559525892262
Iteration: 13, Func. Count: 150, Neg. LLF: 145.4447496797693
Iteration: 14, Func. Count: 161, Neg. LLF: 145.44436234684147
Iteration: 15, Func. Count: 172, Neg. LLF: 145.44425622096344
Iteration: 16, Func. Count: 183, Neg. LLF: 145.44411282241379
Iteration: 17, Func. Count: 194, Neg. LLF: 145.44409083158212
Iteration: 18, Func. Count: 205, Neg. LLF: 145.44408675105885
Iteration: 19, Func. Count: 215, Neg. LLF: 145.44408679506
Optimization terminated successfully (Exit mode 0)
Current function value: 145.44408675105885
Iterations: 19
Function evaluations: 215
Gradient evaluations: 19
Iteration: 1, Func. Count: 9, Neg. LLF: 148.2417294053836
Iteration: 2, Func. Count: 18, Neg. LLF: 146.84944731761863
Iteration: 3, Func. Count: 26, Neg. LLF: 146.52850196877543
Iteration: 4, Func. Count: 34, Neg. LLF: 146.5102122204215
Iteration: 5, Func. Count: 43, Neg. LLF: 146.2256098490453
Iteration: 6, Func. Count: 51, Neg. LLF: 146.11127080214263
Iteration: 7, Func. Count: 59, Neg. LLF: 146.07355455317338
Iteration: 8, Func. Count: 67, Neg. LLF: 146.04232164962534
Iteration: 9, Func. Count: 75, Neg. LLF: 146.04053305939206
Iteration: 10, Func. Count: 83, Neg. LLF: 146.04038485427327
Iteration: 11, Func. Count: 91, Neg. LLF: 146.04036241430364
Iteration: 12, Func. Count: 99, Neg. LLF: 146.04036190862766
Optimization terminated successfully (Exit mode 0)
Current function value: 146.04036190862766
Iterations: 12
Function evaluations: 99
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 160.7094526235192
Iteration: 2, Func. Count: 20, Neg. LLF: 164.5574516578798
Iteration: 3, Func. Count: 30, Neg. LLF: 146.04426577231922
Iteration: 4, Func. Count: 39, Neg. LLF: 145.41695558957855
Iteration: 5, Func. Count: 48, Neg. LLF: 145.4049449886827
Iteration: 6, Func. Count: 57, Neg. LLF: 145.39995795231425
Iteration: 7, Func. Count: 66, Neg. LLF: 145.39658944081904
Iteration: 8, Func. Count: 75, Neg. LLF: 145.39617806220403
Iteration: 9, Func. Count: 84, Neg. LLF: 145.39612433297887
Iteration: 10, Func. Count: 93, Neg. LLF: 145.39603689508354
Iteration: 11, Func. Count: 102, Neg. LLF: 145.39599341149955
Iteration: 12, Func. Count: 111, Neg. LLF: 145.39598270828893
Iteration: 13, Func. Count: 120, Neg. LLF: 145.3959821135258
Optimization terminated successfully (Exit mode 0)
Current function value: 145.3959821135258
Iterations: 13
Function evaluations: 120
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 148.6435166174286
Iteration: 2, Func. Count: 23, Neg. LLF: 151.13575766047563
Iteration: 3, Func. Count: 34, Neg. LLF: 145.78998723759776
Iteration: 4, Func. Count: 44, Neg. LLF: 145.72929749842416
Iteration: 5, Func. Count: 54, Neg. LLF: 146.57421623203803
Iteration: 6, Func. Count: 66, Neg. LLF: 145.6714445236301
Iteration: 7, Func. Count: 76, Neg. LLF: 145.62309853471552
Iteration: 8, Func. Count: 86, Neg. LLF: 145.58972157475446
Iteration: 9, Func. Count: 96, Neg. LLF: 145.56858355315836
Iteration: 10, Func. Count: 106, Neg. LLF: 145.48343880342108
Iteration: 11, Func. Count: 116, Neg. LLF: 145.46633113581794
Iteration: 12, Func. Count: 126, Neg. LLF: 145.45914931588183
Iteration: 13, Func. Count: 136, Neg. LLF: 145.44954121258976
Iteration: 14, Func. Count: 146, Neg. LLF: 145.44493237334316
Iteration: 15, Func. Count: 156, Neg. LLF: 145.4441994224216
Iteration: 16, Func. Count: 166, Neg. LLF: 145.44410719019524
Iteration: 17, Func. Count: 176, Neg. LLF: 145.4440888931465
Iteration: 18, Func. Count: 186, Neg. LLF: 145.44408679200706
Iteration: 19, Func. Count: 195, Neg. LLF: 145.444086791978
Optimization terminated successfully (Exit mode 0)
Current function value: 145.44408679200706
Iterations: 19
Function evaluations: 195
Gradient evaluations: 19
Iteration: 1, Func. Count: 12, Neg. LLF: 148.43470392867516
Iteration: 2, Func. Count: 25, Neg. LLF: 151.17647886338375
Iteration: 3, Func. Count: 37, Neg. LLF: 146.0150513255409
Iteration: 4, Func. Count: 48, Neg. LLF: 146.0100563808723
Iteration: 5, Func. Count: 60, Neg. LLF: 145.8155298456262
Iteration: 6, Func. Count: 71, Neg. LLF: 145.63261259404413
Iteration: 7, Func. Count: 82, Neg. LLF: 146.03267447072125
Iteration: 8, Func. Count: 95, Neg. LLF: 145.59727949949402
Iteration: 9, Func. Count: 106, Neg. LLF: 145.54567536414683
Iteration: 10, Func. Count: 117, Neg. LLF: 145.51616355639445
Iteration: 11, Func. Count: 128, Neg. LLF: 145.49227413833734
Iteration: 12, Func. Count: 139, Neg. LLF: 145.4770675156922
Iteration: 13, Func. Count: 150, Neg. LLF: 145.44696139440094
Iteration: 14, Func. Count: 161, Neg. LLF: 145.4444326265183
Iteration: 15, Func. Count: 172, Neg. LLF: 145.44414019022952
Iteration: 16, Func. Count: 183, Neg. LLF: 145.44410219275906
Iteration: 17, Func. Count: 194, Neg. LLF: 145.4440867908998
Iteration: 18, Func. Count: 204, Neg. LLF: 145.4440868618186
Optimization terminated successfully (Exit mode 0)
Current function value: 145.4440867908998
Iterations: 18
Function evaluations: 204
Gradient evaluations: 18
Iteration: 1, Func. Count: 13, Neg. LLF: 148.16143329406844
Iteration: 2, Func. Count: 27, Neg. LLF: 146.83816447587841
Iteration: 3, Func. Count: 40, Neg. LLF: 145.8003208733214
Iteration: 4, Func. Count: 52, Neg. LLF: 145.79480722519358
Iteration: 5, Func. Count: 65, Neg. LLF: 145.8430771893256
Iteration: 6, Func. Count: 78, Neg. LLF: 145.62167643689327
Iteration: 7, Func. Count: 90, Neg. LLF: 145.62388163045014
Iteration: 8, Func. Count: 103, Neg. LLF: 145.58133704396127
Iteration: 9, Func. Count: 115, Neg. LLF: 145.53514117163613
Iteration: 10, Func. Count: 127, Neg. LLF: 145.47049422182252
Iteration: 11, Func. Count: 139, Neg. LLF: 145.44803706876195
Iteration: 12, Func. Count: 151, Neg. LLF: 145.44491934825513
Iteration: 13, Func. Count: 163, Neg. LLF: 145.44417538381387
Iteration: 14, Func. Count: 175, Neg. LLF: 145.4441211492498
Iteration: 15, Func. Count: 187, Neg. LLF: 145.44409106480708
Iteration: 16, Func. Count: 199, Neg. LLF: 145.44408765525998
Iteration: 17, Func. Count: 211, Neg. LLF: 145.44408667412583
Optimization terminated successfully (Exit mode 0)
Current function value: 145.44408667412583
Iterations: 17
Function evaluations: 211
Gradient evaluations: 17
Iteration: 1, Func. Count: 10, Neg. LLF: 148.189663765758
Iteration: 2, Func. Count: 20, Neg. LLF: 150.23909227512434
Iteration: 3, Func. Count: 31, Neg. LLF: 147.01737880231218
Iteration: 4, Func. Count: 41, Neg. LLF: 146.51680149054664
Iteration: 5, Func. Count: 50, Neg. LLF: 146.50347794289928
Iteration: 6, Func. Count: 60, Neg. LLF: 146.40744090092855
Iteration: 7, Func. Count: 70, Neg. LLF: 146.26543909630837
Iteration: 8, Func. Count: 79, Neg. LLF: 146.11600100962457
Iteration: 9, Func. Count: 88, Neg. LLF: 146.05974984964746
Iteration: 10, Func. Count: 97, Neg. LLF: 146.0433458392522
Iteration: 11, Func. Count: 106, Neg. LLF: 146.04047448138584
Iteration: 12, Func. Count: 115, Neg. LLF: 146.04037319840552
Iteration: 13, Func. Count: 124, Neg. LLF: 146.04036195401875
Iteration: 14, Func. Count: 132, Neg. LLF: 146.04036196798336
Optimization terminated successfully (Exit mode 0)
Current function value: 146.04036195401875
Iterations: 14
Function evaluations: 132
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 160.71986864748374
Iteration: 2, Func. Count: 22, Neg. LLF: 164.62270003222827
Iteration: 3, Func. Count: 33, Neg. LLF: 171.85223958694792
Iteration: 4, Func. Count: 45, Neg. LLF: 145.95134739514612
Iteration: 5, Func. Count: 55, Neg. LLF: 145.40418622056404
Iteration: 6, Func. Count: 65, Neg. LLF: 145.39088207714443
Iteration: 7, Func. Count: 75, Neg. LLF: 145.38052302743012
Iteration: 8, Func. Count: 85, Neg. LLF: 145.37467387217913
Iteration: 9, Func. Count: 95, Neg. LLF: 145.3720134078736
Iteration: 10, Func. Count: 105, Neg. LLF: 145.3714634772446
Iteration: 11, Func. Count: 115, Neg. LLF: 145.37093483841207
Iteration: 12, Func. Count: 125, Neg. LLF: 145.37015704575626
Iteration: 13, Func. Count: 135, Neg. LLF: 145.36971015346987
Iteration: 14, Func. Count: 145, Neg. LLF: 145.36960382327615
Iteration: 15, Func. Count: 155, Neg. LLF: 145.36959792144657
Iteration: 16, Func. Count: 164, Neg. LLF: 145.36959792142363
Optimization terminated successfully (Exit mode 0)
Current function value: 145.36959792144657
Iterations: 16
Function evaluations: 164
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 148.62330690575317
Iteration: 2, Func. Count: 25, Neg. LLF: 151.14349668131806
Iteration: 3, Func. Count: 37, Neg. LLF: 145.79386487277046
Iteration: 4, Func. Count: 48, Neg. LLF: 145.73523059503776
Iteration: 5, Func. Count: 59, Neg. LLF: 146.76430165276602
Iteration: 6, Func. Count: 72, Neg. LLF: 145.6729602425173
Iteration: 7, Func. Count: 83, Neg. LLF: 145.62420106390104
Iteration: 8, Func. Count: 94, Neg. LLF: 145.58911392998704
Iteration: 9, Func. Count: 105, Neg. LLF: 145.5686548078206
Iteration: 10, Func. Count: 116, Neg. LLF: 145.48411587802613
Iteration: 11, Func. Count: 127, Neg. LLF: 145.68922693618862
Iteration: 12, Func. Count: 139, Neg. LLF: 145.46315029492055
Iteration: 13, Func. Count: 150, Neg. LLF: 145.4506247046966
Iteration: 14, Func. Count: 161, Neg. LLF: 145.44547505448529
Iteration: 15, Func. Count: 172, Neg. LLF: 145.43674737444297
Iteration: 16, Func. Count: 183, Neg. LLF: 145.43561666772982
Iteration: 17, Func. Count: 194, Neg. LLF: 145.435532177415
Iteration: 18, Func. Count: 205, Neg. LLF: 145.43552005231126
Iteration: 19, Func. Count: 216, Neg. LLF: 145.43551775378646
Iteration: 20, Func. Count: 226, Neg. LLF: 145.43551775382267
Optimization terminated successfully (Exit mode 0)
Current function value: 145.43551775378646
Iterations: 20
Function evaluations: 226
Gradient evaluations: 20
Iteration: 1, Func. Count: 13, Neg. LLF: 148.42939562251556
Iteration: 2, Func. Count: 27, Neg. LLF: 151.18230168657357
Iteration: 3, Func. Count: 40, Neg. LLF: 146.01456832990357
Iteration: 4, Func. Count: 52, Neg. LLF: 145.957332853343
Iteration: 5, Func. Count: 64, Neg. LLF: 145.786681573983
Iteration: 6, Func. Count: 76, Neg. LLF: 145.62456258895062
Iteration: 7, Func. Count: 88, Neg. LLF: 145.62918284251444
Iteration: 8, Func. Count: 101, Neg. LLF: 145.57089061021986
Iteration: 9, Func. Count: 113, Neg. LLF: 145.54453288642904
Iteration: 10, Func. Count: 125, Neg. LLF: 145.51522835108452
Iteration: 11, Func. Count: 137, Neg. LLF: 145.73157018365478
Iteration: 12, Func. Count: 150, Neg. LLF: 145.7627722727466
Iteration: 13, Func. Count: 163, Neg. LLF: 145.44709218909958
Iteration: 14, Func. Count: 175, Neg. LLF: 145.43701635392716
Iteration: 15, Func. Count: 187, Neg. LLF: 145.435707203211
Iteration: 16, Func. Count: 199, Neg. LLF: 145.43555989074872
Iteration: 17, Func. Count: 211, Neg. LLF: 145.4355225939563
Iteration: 18, Func. Count: 223, Neg. LLF: 145.4355179653234
Iteration: 19, Func. Count: 234, Neg. LLF: 145.43551804130797
Optimization terminated successfully (Exit mode 0)
Current function value: 145.4355179653234
Iterations: 19
Function evaluations: 234
Gradient evaluations: 19
Iteration: 1, Func. Count: 14, Neg. LLF: 148.16288087730348
Iteration: 2, Func. Count: 29, Neg. LLF: 146.83062119461206
Iteration: 3, Func. Count: 43, Neg. LLF: 145.80546567911534
Iteration: 4, Func. Count: 56, Neg. LLF: 145.78713145848974
Iteration: 5, Func. Count: 70, Neg. LLF: 145.85687619023506
Iteration: 6, Func. Count: 84, Neg. LLF: 145.62236151464384
Iteration: 7, Func. Count: 97, Neg. LLF: 145.6061902082341
Iteration: 8, Func. Count: 110, Neg. LLF: 145.5759179139569
Iteration: 9, Func. Count: 123, Neg. LLF: 145.55179120724114
Iteration: 10, Func. Count: 136, Neg. LLF: 145.47900466465006
Iteration: 11, Func. Count: 149, Neg. LLF: 145.72461090273234
Iteration: 12, Func. Count: 164, Neg. LLF: 145.56890484398062
Iteration: 13, Func. Count: 178, Neg. LLF: 145.43773790655266
Iteration: 14, Func. Count: 191, Neg. LLF: 145.4369067611601
Iteration: 15, Func. Count: 204, Neg. LLF: 145.43618704728266
Iteration: 16, Func. Count: 217, Neg. LLF: 145.43585161699224
Iteration: 17, Func. Count: 230, Neg. LLF: 145.43553884210698
Iteration: 18, Func. Count: 243, Neg. LLF: 145.435518446852
Iteration: 19, Func. Count: 256, Neg. LLF: 145.43551767556252
Optimization terminated successfully (Exit mode 0)
Current function value: 145.43551767556252
Iterations: 19
Function evaluations: 256
Gradient evaluations: 19
Iteration: 1, Func. Count: 7, Neg. LLF: 148.53915776447727
Iteration: 2, Func. Count: 14, Neg. LLF: 150.81276922628072
Iteration: 3, Func. Count: 22, Neg. LLF: 147.1229668218958
Iteration: 4, Func. Count: 29, Neg. LLF: 146.5642373332144
Iteration: 5, Func. Count: 35, Neg. LLF: 147.56054175264165
Iteration: 6, Func. Count: 42, Neg. LLF: 146.54934022612224
Iteration: 7, Func. Count: 49, Neg. LLF: 146.43992313908421
Iteration: 8, Func. Count: 55, Neg. LLF: 146.34556415754906
Iteration: 9, Func. Count: 61, Neg. LLF: 146.3259876338159
Iteration: 10, Func. Count: 67, Neg. LLF: 146.3229403633348
Iteration: 11, Func. Count: 73, Neg. LLF: 146.3226752005512
Iteration: 12, Func. Count: 79, Neg. LLF: 146.322668616673
Iteration: 13, Func. Count: 84, Neg. LLF: 146.3226686166888
Optimization terminated successfully (Exit mode 0)
Current function value: 146.322668616673
Iterations: 13
Function evaluations: 84
Gradient evaluations: 13
Iteration: 1, Func. Count: 8, Neg. LLF: 155.946421578562
Iteration: 2, Func. Count: 17, Neg. LLF: 149.20508842074818
Iteration: 3, Func. Count: 25, Neg. LLF: 146.46619858899567
Iteration: 4, Func. Count: 32, Neg. LLF: 146.5884825993747
Iteration: 5, Func. Count: 40, Neg. LLF: 146.46438072668678
Iteration: 6, Func. Count: 48, Neg. LLF: 146.456909015684
Iteration: 7, Func. Count: 55, Neg. LLF: 146.44774325071293
Iteration: 8, Func. Count: 62, Neg. LLF: 146.433605056523
Iteration: 9, Func. Count: 69, Neg. LLF: 146.42128188638463
Iteration: 10, Func. Count: 76, Neg. LLF: 146.41245226847192
Iteration: 11, Func. Count: 83, Neg. LLF: 146.4036034883339
Iteration: 12, Func. Count: 90, Neg. LLF: 146.33938640497686
Iteration: 13, Func. Count: 97, Neg. LLF: 146.3289741685853
Iteration: 14, Func. Count: 104, Neg. LLF: 146.32428539493554
Iteration: 15, Func. Count: 111, Neg. LLF: 146.32337118040516
Iteration: 16, Func. Count: 118, Neg. LLF: 146.32272327862822
Iteration: 17, Func. Count: 125, Neg. LLF: 146.3227042885351
Iteration: 18, Func. Count: 132, Neg. LLF: 146.32268439291892
Iteration: 19, Func. Count: 139, Neg. LLF: 146.32267235481413
Iteration: 20, Func. Count: 146, Neg. LLF: 146.32266876631965
Iteration: 21, Func. Count: 152, Neg. LLF: 146.32266877324574
Optimization terminated successfully (Exit mode 0)
Current function value: 146.32266876631965
Iterations: 21
Function evaluations: 152
Gradient evaluations: 21
Iteration: 1, Func. Count: 9, Neg. LLF: 148.63019732968158
Iteration: 2, Func. Count: 19, Neg. LLF: 147.36962537925504
Iteration: 3, Func. Count: 28, Neg. LLF: 146.38525387152748
Iteration: 4, Func. Count: 36, Neg. LLF: 146.37496925218318
Iteration: 5, Func. Count: 44, Neg. LLF: 146.373652359326
Iteration: 6, Func. Count: 52, Neg. LLF: 146.3735053382497
Iteration: 7, Func. Count: 61, Neg. LLF: 146.3720700138803
Iteration: 8, Func. Count: 69, Neg. LLF: 146.37177896813847
Iteration: 9, Func. Count: 77, Neg. LLF: 146.3696199762171
Iteration: 10, Func. Count: 85, Neg. LLF: 146.35678472070848
Iteration: 11, Func. Count: 93, Neg. LLF: 146.32814846539102
Iteration: 12, Func. Count: 101, Neg. LLF: 146.32320933339878
Iteration: 13, Func. Count: 109, Neg. LLF: 146.32269218158956
Iteration: 14, Func. Count: 117, Neg. LLF: 146.32267038179396
Iteration: 15, Func. Count: 125, Neg. LLF: 146.32266877478835
Iteration: 16, Func. Count: 132, Neg. LLF: 146.32266877511637
Optimization terminated successfully (Exit mode 0)
Current function value: 146.32266877478835
Iterations: 16
Function evaluations: 132
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 148.63652193377072
Iteration: 2, Func. Count: 21, Neg. LLF: 147.42835388840234
Iteration: 3, Func. Count: 31, Neg. LLF: 146.26752215137398
Iteration: 4, Func. Count: 40, Neg. LLF: 146.19865174526694
Iteration: 5, Func. Count: 49, Neg. LLF: 148.73158967042366
Iteration: 6, Func. Count: 60, Neg. LLF: 146.17001152944115
Iteration: 7, Func. Count: 69, Neg. LLF: 146.16856673086943
Iteration: 8, Func. Count: 78, Neg. LLF: 146.16765145108818
Iteration: 9, Func. Count: 87, Neg. LLF: 146.16720662733087
Iteration: 10, Func. Count: 96, Neg. LLF: 146.16471272124585
Iteration: 11, Func. Count: 105, Neg. LLF: 146.16049400575974
Iteration: 12, Func. Count: 114, Neg. LLF: 146.15936839036735
Iteration: 13, Func. Count: 123, Neg. LLF: 146.15901042234995
Iteration: 14, Func. Count: 132, Neg. LLF: 146.158999559949
Iteration: 15, Func. Count: 141, Neg. LLF: 146.15899882199815
Optimization terminated successfully (Exit mode 0)
Current function value: 146.15899882199815
Iterations: 15
Function evaluations: 141
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 148.63803293005142
Iteration: 2, Func. Count: 23, Neg. LLF: 147.40050723365434
Iteration: 3, Func. Count: 34, Neg. LLF: 146.55490373181684
Iteration: 4, Func. Count: 45, Neg. LLF: 146.21211100495714
Iteration: 5, Func. Count: 55, Neg. LLF: 146.26538624609418
Iteration: 6, Func. Count: 66, Neg. LLF: 146.21719312395325
Iteration: 7, Func. Count: 77, Neg. LLF: 146.1698710930117
Iteration: 8, Func. Count: 88, Neg. LLF: 146.1679418240547
Iteration: 9, Func. Count: 98, Neg. LLF: 146.16724815158517
Iteration: 10, Func. Count: 108, Neg. LLF: 146.16655315073578
Iteration: 11, Func. Count: 118, Neg. LLF: 146.1644184593465
Iteration: 12, Func. Count: 128, Neg. LLF: 146.16170477675206
Iteration: 13, Func. Count: 138, Neg. LLF: 146.15946040260047
Iteration: 14, Func. Count: 148, Neg. LLF: 146.15905726667523
Iteration: 15, Func. Count: 158, Neg. LLF: 146.15900141335314
Iteration: 16, Func. Count: 168, Neg. LLF: 146.15899881954135
Iteration: 17, Func. Count: 177, Neg. LLF: 146.1589988338974
Optimization terminated successfully (Exit mode 0)
Current function value: 146.15899881954135
Iterations: 17
Function evaluations: 177
Gradient evaluations: 17
Iteration: 1, Func. Count: 8, Neg. LLF: 148.20913970692112
Iteration: 2, Func. Count: 16, Neg. LLF: 147.23977919637434
Iteration: 3, Func. Count: 24, Neg. LLF: 147.2907112429185
Iteration: 4, Func. Count: 32, Neg. LLF: 148.96846515743235
Iteration: 5, Func. Count: 40, Neg. LLF: 147.34076036542467
Iteration: 6, Func. Count: 48, Neg. LLF: 146.6037248535571
Iteration: 7, Func. Count: 55, Neg. LLF: 147.69512877576764
Iteration: 8, Func. Count: 63, Neg. LLF: 146.4681959160514
Iteration: 9, Func. Count: 70, Neg. LLF: 146.28668040216107
Iteration: 10, Func. Count: 77, Neg. LLF: 146.2571509476753
Iteration: 11, Func. Count: 84, Neg. LLF: 146.25596740695497
Iteration: 12, Func. Count: 91, Neg. LLF: 146.2557930869958
Iteration: 13, Func. Count: 98, Neg. LLF: 146.25573795134437
Iteration: 14, Func. Count: 105, Neg. LLF: 146.25572906539585
Iteration: 15, Func. Count: 111, Neg. LLF: 146.25572906539307
Optimization terminated successfully (Exit mode 0)
Current function value: 146.25572906539585
Iterations: 15
Function evaluations: 111
Gradient evaluations: 15
Iteration: 1, Func. Count: 9, Neg. LLF: 148.58047386011725
Iteration: 2, Func. Count: 19, Neg. LLF: 151.09253350635208
Iteration: 3, Func. Count: 28, Neg. LLF: 147.33004396020272
Iteration: 4, Func. Count: 37, Neg. LLF: 147.22791772182407
Iteration: 5, Func. Count: 46, Neg. LLF: 146.3803185810002
Iteration: 6, Func. Count: 54, Neg. LLF: 146.37994260246052
Iteration: 7, Func. Count: 63, Neg. LLF: 146.37793110861267
Iteration: 8, Func. Count: 71, Neg. LLF: 146.37183740208778
Iteration: 9, Func. Count: 79, Neg. LLF: 146.361697295906
Iteration: 10, Func. Count: 87, Neg. LLF: 146.33218273827447
Iteration: 11, Func. Count: 95, Neg. LLF: 146.84351580267773
Iteration: 12, Func. Count: 104, Neg. LLF: 146.25427998746153
Iteration: 13, Func. Count: 112, Neg. LLF: 146.12713927246315
Iteration: 14, Func. Count: 120, Neg. LLF: 146.0391192364757
Iteration: 15, Func. Count: 128, Neg. LLF: 146.0101027042537
Iteration: 16, Func. Count: 136, Neg. LLF: 145.96414884841315
Iteration: 17, Func. Count: 144, Neg. LLF: 145.95683189795264
Iteration: 18, Func. Count: 152, Neg. LLF: 145.95369360094668
Iteration: 19, Func. Count: 160, Neg. LLF: 145.95324057239884
Iteration: 20, Func. Count: 168, Neg. LLF: 145.95320453026923
Iteration: 21, Func. Count: 176, Neg. LLF: 145.95319677506913
Iteration: 22, Func. Count: 183, Neg. LLF: 145.95319677506671
Optimization terminated successfully (Exit mode 0)
Current function value: 145.95319677506913
Iterations: 22
Function evaluations: 183
Gradient evaluations: 22
Iteration: 1, Func. Count: 10, Neg. LLF: 148.1083194337188
Iteration: 2, Func. Count: 20, Neg. LLF: 152.18997121610246
Iteration: 3, Func. Count: 30, Neg. LLF: 146.71954507256703
Iteration: 4, Func. Count: 40, Neg. LLF: 146.5728865042338
Iteration: 5, Func. Count: 50, Neg. LLF: 146.674130951999
Iteration: 6, Func. Count: 60, Neg. LLF: 146.3502810482376
Iteration: 7, Func. Count: 69, Neg. LLF: 146.33518911182753
Iteration: 8, Func. Count: 78, Neg. LLF: 146.3347313563099
Iteration: 9, Func. Count: 87, Neg. LLF: 146.33117688986772
Iteration: 10, Func. Count: 96, Neg. LLF: 146.3030754453697
Iteration: 11, Func. Count: 105, Neg. LLF: 146.33210912998902
Iteration: 12, Func. Count: 115, Neg. LLF: 146.25537554055128
Iteration: 13, Func. Count: 124, Neg. LLF: 146.20335886533914
Iteration: 14, Func. Count: 133, Neg. LLF: 146.18523014247398
Iteration: 15, Func. Count: 142, Neg. LLF: 146.0738515330282
Iteration: 16, Func. Count: 151, Neg. LLF: 146.0409905035468
Iteration: 17, Func. Count: 160, Neg. LLF: 145.99857775890118
Iteration: 18, Func. Count: 169, Neg. LLF: 145.9646589915668
Iteration: 19, Func. Count: 178, Neg. LLF: 145.9545839947414
Iteration: 20, Func. Count: 187, Neg. LLF: 145.95331068728106
Iteration: 21, Func. Count: 196, Neg. LLF: 145.95320012359568
Iteration: 22, Func. Count: 205, Neg. LLF: 145.95319685241284
Iteration: 23, Func. Count: 213, Neg. LLF: 145.95319686274615
Optimization terminated successfully (Exit mode 0)
Current function value: 145.95319685241284
Iterations: 23
Function evaluations: 213
Gradient evaluations: 23
Iteration: 1, Func. Count: 11, Neg. LLF: 147.96837885163092
Iteration: 2, Func. Count: 22, Neg. LLF: 152.24200738029782
Iteration: 3, Func. Count: 33, Neg. LLF: 146.32477435992087
Iteration: 4, Func. Count: 44, Neg. LLF: 146.14465464000148
Iteration: 5, Func. Count: 54, Neg. LLF: 146.6948139628793
Iteration: 6, Func. Count: 65, Neg. LLF: 146.4804895399442
Iteration: 7, Func. Count: 76, Neg. LLF: 146.12435754589524
Iteration: 8, Func. Count: 87, Neg. LLF: 146.0445473133692
Iteration: 9, Func. Count: 97, Neg. LLF: 146.0354385846741
Iteration: 10, Func. Count: 107, Neg. LLF: 146.0213953406726
Iteration: 11, Func. Count: 117, Neg. LLF: 145.96124524807098
Iteration: 12, Func. Count: 127, Neg. LLF: 145.95520276787033
Iteration: 13, Func. Count: 137, Neg. LLF: 145.93768116703146
Iteration: 14, Func. Count: 147, Neg. LLF: 145.93563233535693
Iteration: 15, Func. Count: 157, Neg. LLF: 145.93528261623678
Iteration: 16, Func. Count: 167, Neg. LLF: 145.93524385129996
Iteration: 17, Func. Count: 177, Neg. LLF: 145.9352352167917
Iteration: 18, Func. Count: 186, Neg. LLF: 145.9352352168335
Optimization terminated successfully (Exit mode 0)
Current function value: 145.9352352167917
Iterations: 18
Function evaluations: 186
Gradient evaluations: 18
Iteration: 1, Func. Count: 12, Neg. LLF: 148.5502480396446
Iteration: 2, Func. Count: 25, Neg. LLF: 148.149106632735
Iteration: 3, Func. Count: 37, Neg. LLF: 146.26810419032356
Iteration: 4, Func. Count: 48, Neg. LLF: 146.258381675818
Iteration: 5, Func. Count: 60, Neg. LLF: 150.58600968761175
Iteration: 6, Func. Count: 72, Neg. LLF: 146.07048867072743
Iteration: 7, Func. Count: 83, Neg. LLF: 146.04892299452223
Iteration: 8, Func. Count: 94, Neg. LLF: 146.04337262589436
Iteration: 9, Func. Count: 105, Neg. LLF: 146.03708883210197
Iteration: 10, Func. Count: 116, Neg. LLF: 146.02157065521675
Iteration: 11, Func. Count: 127, Neg. LLF: 145.99785646608026
Iteration: 12, Func. Count: 138, Neg. LLF: 145.96492759011176
Iteration: 13, Func. Count: 149, Neg. LLF: 145.94247452292902
Iteration: 14, Func. Count: 160, Neg. LLF: 145.936249827587
Iteration: 15, Func. Count: 171, Neg. LLF: 145.93544744400464
Iteration: 16, Func. Count: 182, Neg. LLF: 145.9352410734797
Iteration: 17, Func. Count: 193, Neg. LLF: 145.9352353418708
Iteration: 18, Func. Count: 203, Neg. LLF: 145.93523538902187
Optimization terminated successfully (Exit mode 0)
Current function value: 145.9352353418708
Iterations: 18
Function evaluations: 203
Gradient evaluations: 18
Iteration: 1, Func. Count: 9, Neg. LLF: 152.72023374023584
Iteration: 2, Func. Count: 19, Neg. LLF: 148.57116559842683
Iteration: 3, Func. Count: 29, Neg. LLF: 152.81430185720012
Iteration: 4, Func. Count: 39, Neg. LLF: 146.45082966026462
Iteration: 5, Func. Count: 47, Neg. LLF: 146.40092049180166
Iteration: 6, Func. Count: 55, Neg. LLF: 146.31317827743229
Iteration: 7, Func. Count: 63, Neg. LLF: 146.2451076543331
Iteration: 8, Func. Count: 71, Neg. LLF: 146.10123445623594
Iteration: 9, Func. Count: 79, Neg. LLF: 146.07971221864364
Iteration: 10, Func. Count: 87, Neg. LLF: 146.05746869044782
Iteration: 11, Func. Count: 95, Neg. LLF: 146.04437119060094
Iteration: 12, Func. Count: 103, Neg. LLF: 146.0410224338468
Iteration: 13, Func. Count: 111, Neg. LLF: 146.04043360310985
Iteration: 14, Func. Count: 119, Neg. LLF: 146.04036483021954
Iteration: 15, Func. Count: 127, Neg. LLF: 146.04036215316694
Iteration: 16, Func. Count: 134, Neg. LLF: 146.0403620634928
Optimization terminated successfully (Exit mode 0)
Current function value: 146.04036215316694
Iterations: 16
Function evaluations: 134
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 149.3117162884292
Iteration: 2, Func. Count: 21, Neg. LLF: 151.2221540389692
Iteration: 3, Func. Count: 31, Neg. LLF: 147.55764117824538
Iteration: 4, Func. Count: 41, Neg. LLF: 145.8731513285996
Iteration: 5, Func. Count: 50, Neg. LLF: 145.82396622196336
Iteration: 6, Func. Count: 59, Neg. LLF: 145.76560238944765
Iteration: 7, Func. Count: 68, Neg. LLF: 145.64887070211935
Iteration: 8, Func. Count: 77, Neg. LLF: 145.5285774069922
Iteration: 9, Func. Count: 86, Neg. LLF: 145.49272481624382
Iteration: 10, Func. Count: 95, Neg. LLF: 145.464304251974
Iteration: 11, Func. Count: 104, Neg. LLF: 145.42017562088097
Iteration: 12, Func. Count: 113, Neg. LLF: 145.40329623034913
Iteration: 13, Func. Count: 122, Neg. LLF: 145.3973263759214
Iteration: 14, Func. Count: 131, Neg. LLF: 145.3961036805098
Iteration: 15, Func. Count: 140, Neg. LLF: 145.39598554286732
Iteration: 16, Func. Count: 149, Neg. LLF: 145.39598213284165
Iteration: 17, Func. Count: 157, Neg. LLF: 145.39598213282966
Optimization terminated successfully (Exit mode 0)
Current function value: 145.39598213284165
Iterations: 17
Function evaluations: 157
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 148.49601847154867
Iteration: 2, Func. Count: 23, Neg. LLF: 151.2493047134842
Iteration: 3, Func. Count: 34, Neg. LLF: 145.80207463983717
Iteration: 4, Func. Count: 44, Neg. LLF: 145.7330883565532
Iteration: 5, Func. Count: 54, Neg. LLF: 145.7236008902467
Iteration: 6, Func. Count: 65, Neg. LLF: 145.62436977377865
Iteration: 7, Func. Count: 75, Neg. LLF: 145.59596229495597
Iteration: 8, Func. Count: 85, Neg. LLF: 145.57457291152747
Iteration: 9, Func. Count: 95, Neg. LLF: 145.48745885027503
Iteration: 10, Func. Count: 105, Neg. LLF: 145.4613121395215
Iteration: 11, Func. Count: 115, Neg. LLF: 145.45534596081072
Iteration: 12, Func. Count: 125, Neg. LLF: 145.4510236609697
Iteration: 13, Func. Count: 135, Neg. LLF: 145.44613315101032
Iteration: 14, Func. Count: 145, Neg. LLF: 145.44463570299212
Iteration: 15, Func. Count: 155, Neg. LLF: 145.4441691177451
Iteration: 16, Func. Count: 165, Neg. LLF: 145.44409745286794
Iteration: 17, Func. Count: 175, Neg. LLF: 145.44408673695085
Iteration: 18, Func. Count: 184, Neg. LLF: 145.44408673699402
Optimization terminated successfully (Exit mode 0)
Current function value: 145.44408673695085
Iterations: 18
Function evaluations: 184
Gradient evaluations: 18
Iteration: 1, Func. Count: 12, Neg. LLF: 148.39125885821718
Iteration: 2, Func. Count: 25, Neg. LLF: 151.17811309972248
Iteration: 3, Func. Count: 37, Neg. LLF: 146.13281548717063
Iteration: 4, Func. Count: 48, Neg. LLF: 145.89948511364938
Iteration: 5, Func. Count: 59, Neg. LLF: 150.73264028139394
Iteration: 6, Func. Count: 71, Neg. LLF: 145.7559183160083
Iteration: 7, Func. Count: 83, Neg. LLF: 145.6201986458705
Iteration: 8, Func. Count: 94, Neg. LLF: 145.5982433271832
Iteration: 9, Func. Count: 105, Neg. LLF: 145.57083167538474
Iteration: 10, Func. Count: 116, Neg. LLF: 145.5725560614966
Iteration: 11, Func. Count: 128, Neg. LLF: 145.505335872574
Iteration: 12, Func. Count: 139, Neg. LLF: 145.46219337010484
Iteration: 13, Func. Count: 150, Neg. LLF: 145.44926740440917
Iteration: 14, Func. Count: 161, Neg. LLF: 145.44570777859968
Iteration: 15, Func. Count: 172, Neg. LLF: 145.44414327056614
Iteration: 16, Func. Count: 183, Neg. LLF: 145.4440881973151
Iteration: 17, Func. Count: 194, Neg. LLF: 145.44408694062872
Iteration: 18, Func. Count: 204, Neg. LLF: 145.44408701154106
Optimization terminated successfully (Exit mode 0)
Current function value: 145.44408694062872
Iterations: 18
Function evaluations: 204
Gradient evaluations: 18
Iteration: 1, Func. Count: 13, Neg. LLF: 148.11918697781988
Iteration: 2, Func. Count: 27, Neg. LLF: 146.95281565356814
Iteration: 3, Func. Count: 40, Neg. LLF: 145.78014002315754
Iteration: 4, Func. Count: 52, Neg. LLF: 145.7355890185616
Iteration: 5, Func. Count: 64, Neg. LLF: 145.7678176022106
Iteration: 6, Func. Count: 77, Neg. LLF: 145.62159034008917
Iteration: 7, Func. Count: 89, Neg. LLF: 145.70612127166572
Iteration: 8, Func. Count: 102, Neg. LLF: 145.58880220347396
Iteration: 9, Func. Count: 114, Neg. LLF: 145.5550288650481
Iteration: 10, Func. Count: 126, Neg. LLF: 145.51218425950213
Iteration: 11, Func. Count: 138, Neg. LLF: 145.47172760931804
Iteration: 12, Func. Count: 150, Neg. LLF: 145.45418779050388
Iteration: 13, Func. Count: 162, Neg. LLF: 145.4458453341449
Iteration: 14, Func. Count: 174, Neg. LLF: 145.44434334545784
Iteration: 15, Func. Count: 186, Neg. LLF: 145.44413625735416
Iteration: 16, Func. Count: 198, Neg. LLF: 145.44408952698285
Iteration: 17, Func. Count: 210, Neg. LLF: 145.44408706716996
Iteration: 18, Func. Count: 221, Neg. LLF: 145.4440871112115
Optimization terminated successfully (Exit mode 0)
Current function value: 145.44408706716996
Iterations: 18
Function evaluations: 221
Gradient evaluations: 18
Iteration: 1, Func. Count: 10, Neg. LLF: 149.49565361483994
Iteration: 2, Func. Count: 20, Neg. LLF: 148.09319371834096
Iteration: 3, Func. Count: 30, Neg. LLF: 147.69559835202514
Iteration: 4, Func. Count: 40, Neg. LLF: 146.12332337531248
Iteration: 5, Func. Count: 49, Neg. LLF: 146.0481683893615
Iteration: 6, Func. Count: 59, Neg. LLF: 146.23830207386777
Iteration: 7, Func. Count: 69, Neg. LLF: 145.71657906692548
Iteration: 8, Func. Count: 78, Neg. LLF: 145.69519793698055
Iteration: 9, Func. Count: 87, Neg. LLF: 145.68396287778558
Iteration: 10, Func. Count: 96, Neg. LLF: 145.67687187968264
Iteration: 11, Func. Count: 105, Neg. LLF: 145.67026730457215
Iteration: 12, Func. Count: 114, Neg. LLF: 145.66307853015093
Iteration: 13, Func. Count: 123, Neg. LLF: 145.65763642664803
Iteration: 14, Func. Count: 132, Neg. LLF: 145.6560143730863
Iteration: 15, Func. Count: 141, Neg. LLF: 145.65582619738748
Iteration: 16, Func. Count: 150, Neg. LLF: 145.65580071644382
Iteration: 17, Func. Count: 159, Neg. LLF: 145.65579983239385
Optimization terminated successfully (Exit mode 0)
Current function value: 145.65579983239385
Iterations: 17
Function evaluations: 159
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 148.77508382864437
Iteration: 2, Func. Count: 23, Neg. LLF: 149.96706111444544
Iteration: 3, Func. Count: 34, Neg. LLF: 150.89303220557457
Iteration: 4, Func. Count: 45, Neg. LLF: 145.38632122055216
Iteration: 5, Func. Count: 55, Neg. LLF: 145.3793993443795
Iteration: 6, Func. Count: 65, Neg. LLF: 145.36623301720346
Iteration: 7, Func. Count: 75, Neg. LLF: 145.3530633733043
Iteration: 8, Func. Count: 85, Neg. LLF: 145.33326513475603
Iteration: 9, Func. Count: 95, Neg. LLF: 145.3138876832549
Iteration: 10, Func. Count: 105, Neg. LLF: 145.30222497712293
Iteration: 11, Func. Count: 115, Neg. LLF: 145.3001543362197
Iteration: 12, Func. Count: 125, Neg. LLF: 145.2997051959571
Iteration: 13, Func. Count: 135, Neg. LLF: 145.29964212359883
Iteration: 14, Func. Count: 145, Neg. LLF: 145.2995538779798
Iteration: 15, Func. Count: 155, Neg. LLF: 145.29953680496808
Iteration: 16, Func. Count: 165, Neg. LLF: 145.29953447072194
Iteration: 17, Func. Count: 174, Neg. LLF: 145.29953447071824
Optimization terminated successfully (Exit mode 0)
Current function value: 145.29953447072194
Iterations: 17
Function evaluations: 174
Gradient evaluations: 17
Iteration: 1, Func. Count: 12, Neg. LLF: 148.7738206159706
Iteration: 2, Func. Count: 25, Neg. LLF: 149.77531977643298
Iteration: 3, Func. Count: 37, Neg. LLF: 146.66067188347037
Iteration: 4, Func. Count: 49, Neg. LLF: 145.43454016143542
Iteration: 5, Func. Count: 60, Neg. LLF: 145.35249865784195
Iteration: 6, Func. Count: 71, Neg. LLF: 145.47052756901988
Iteration: 7, Func. Count: 83, Neg. LLF: 145.320631440826
Iteration: 8, Func. Count: 94, Neg. LLF: 145.3052819871423
Iteration: 9, Func. Count: 105, Neg. LLF: 145.26590591806172
Iteration: 10, Func. Count: 116, Neg. LLF: 145.2611774784889
Iteration: 11, Func. Count: 127, Neg. LLF: 145.2565029063334
Iteration: 12, Func. Count: 138, Neg. LLF: 145.2539360457969
Iteration: 13, Func. Count: 149, Neg. LLF: 145.25326788015045
Iteration: 14, Func. Count: 160, Neg. LLF: 145.2532036432751
Iteration: 15, Func. Count: 170, Neg. LLF: 145.25320364320368
Optimization terminated successfully (Exit mode 0)
Current function value: 145.2532036432751
Iterations: 15
Function evaluations: 170
Gradient evaluations: 15
Iteration: 1, Func. Count: 13, Neg. LLF: 148.40146293290883
Iteration: 2, Func. Count: 27, Neg. LLF: 148.95712698483868
Iteration: 3, Func. Count: 40, Neg. LLF: 161.59678180207513
Iteration: 4, Func. Count: 54, Neg. LLF: 146.0343734431927
Iteration: 5, Func. Count: 67, Neg. LLF: 145.4061672767033
Iteration: 6, Func. Count: 79, Neg. LLF: 145.38253283048445
Iteration: 7, Func. Count: 91, Neg. LLF: 145.37154025409157
Iteration: 8, Func. Count: 103, Neg. LLF: 145.36049850170627
Iteration: 9, Func. Count: 115, Neg. LLF: 145.3391572966417
Iteration: 10, Func. Count: 127, Neg. LLF: 145.3197310316523
Iteration: 11, Func. Count: 139, Neg. LLF: 145.30849198921868
Iteration: 12, Func. Count: 151, Neg. LLF: 145.30403728977308
Iteration: 13, Func. Count: 163, Neg. LLF: 145.29962097351233
Iteration: 14, Func. Count: 175, Neg. LLF: 145.2995410440611
Iteration: 15, Func. Count: 187, Neg. LLF: 145.2995350932497
Iteration: 16, Func. Count: 198, Neg. LLF: 145.2995351452537
Optimization terminated successfully (Exit mode 0)
Current function value: 145.2995350932497
Iterations: 16
Function evaluations: 198
Gradient evaluations: 16
Iteration: 1, Func. Count: 14, Neg. LLF: 147.66678104530746
Iteration: 2, Func. Count: 29, Neg. LLF: 148.76332580942093
Iteration: 3, Func. Count: 43, Neg. LLF: 156.99730190567593
Iteration: 4, Func. Count: 57, Neg. LLF: 146.51463299488654
Iteration: 5, Func. Count: 71, Neg. LLF: 145.8393432079362
Iteration: 6, Func. Count: 84, Neg. LLF: 145.54425506827022
Iteration: 7, Func. Count: 97, Neg. LLF: 145.388123580036
Iteration: 8, Func. Count: 110, Neg. LLF: 145.37630750166974
Iteration: 9, Func. Count: 123, Neg. LLF: 145.36859208290673
Iteration: 10, Func. Count: 136, Neg. LLF: 145.3438762993296
Iteration: 11, Func. Count: 149, Neg. LLF: 145.32036085620638
Iteration: 12, Func. Count: 162, Neg. LLF: 145.30201263606446
Iteration: 13, Func. Count: 175, Neg. LLF: 145.2995652378803
Iteration: 14, Func. Count: 188, Neg. LLF: 145.29954086305565
Iteration: 15, Func. Count: 201, Neg. LLF: 145.29953527131264
Iteration: 16, Func. Count: 214, Neg. LLF: 145.29953445418465
Optimization terminated successfully (Exit mode 0)
Current function value: 145.29953445418465
Iterations: 16
Function evaluations: 214
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 149.04158953612793
Iteration: 2, Func. Count: 22, Neg. LLF: 148.5029435785755
Iteration: 3, Func. Count: 33, Neg. LLF: 149.95429972794483
Iteration: 4, Func. Count: 44, Neg. LLF: 147.6033334265539
Iteration: 5, Func. Count: 55, Neg. LLF: 146.13405588091175
Iteration: 6, Func. Count: 65, Neg. LLF: 146.44972611446295
Iteration: 7, Func. Count: 76, Neg. LLF: 146.795125387577
Iteration: 8, Func. Count: 87, Neg. LLF: 145.78231351780462
Iteration: 9, Func. Count: 97, Neg. LLF: 145.89768524924622
Iteration: 10, Func. Count: 108, Neg. LLF: 145.72497503440124
Iteration: 11, Func. Count: 118, Neg. LLF: 145.7019493446938
Iteration: 12, Func. Count: 128, Neg. LLF: 145.68655950422337
Iteration: 13, Func. Count: 138, Neg. LLF: 145.67857815954417
Iteration: 14, Func. Count: 148, Neg. LLF: 145.67343057378085
Iteration: 15, Func. Count: 158, Neg. LLF: 145.66324096066288
Iteration: 16, Func. Count: 168, Neg. LLF: 145.65714743578036
Iteration: 17, Func. Count: 178, Neg. LLF: 145.65589463824335
Iteration: 18, Func. Count: 188, Neg. LLF: 145.65580612443395
Iteration: 19, Func. Count: 198, Neg. LLF: 145.65579976077288
Iteration: 20, Func. Count: 207, Neg. LLF: 145.65579977528137
Optimization terminated successfully (Exit mode 0)
Current function value: 145.65579976077288
Iterations: 20
Function evaluations: 207
Gradient evaluations: 20
Iteration: 1, Func. Count: 12, Neg. LLF: 148.7752008132996
Iteration: 2, Func. Count: 25, Neg. LLF: 149.99082738111306
Iteration: 3, Func. Count: 37, Neg. LLF: 150.90890077159594
Iteration: 4, Func. Count: 49, Neg. LLF: 145.3859921280726
Iteration: 5, Func. Count: 60, Neg. LLF: 145.37867200882286
Iteration: 6, Func. Count: 71, Neg. LLF: 145.36557697342087
Iteration: 7, Func. Count: 82, Neg. LLF: 145.35200019098903
Iteration: 8, Func. Count: 93, Neg. LLF: 145.33178386132127
Iteration: 9, Func. Count: 104, Neg. LLF: 145.31329621642922
Iteration: 10, Func. Count: 115, Neg. LLF: 145.86152231641995
Iteration: 11, Func. Count: 128, Neg. LLF: 145.30150026847198
Iteration: 12, Func. Count: 139, Neg. LLF: 145.29617577405344
Iteration: 13, Func. Count: 150, Neg. LLF: 145.29481895574588
Iteration: 14, Func. Count: 161, Neg. LLF: 145.29360645685503
Iteration: 15, Func. Count: 172, Neg. LLF: 145.29321220496595
Iteration: 16, Func. Count: 183, Neg. LLF: 145.2930532885597
Iteration: 17, Func. Count: 194, Neg. LLF: 145.29303009481734
Iteration: 18, Func. Count: 205, Neg. LLF: 145.29302875765046
Iteration: 19, Func. Count: 215, Neg. LLF: 145.29302875763747
Optimization terminated successfully (Exit mode 0)
Current function value: 145.29302875765046
Iterations: 19
Function evaluations: 215
Gradient evaluations: 19
Iteration: 1, Func. Count: 13, Neg. LLF: 148.77395609070578
Iteration: 2, Func. Count: 27, Neg. LLF: 149.78376818125867
Iteration: 3, Func. Count: 40, Neg. LLF: 146.68555544744459
Iteration: 4, Func. Count: 53, Neg. LLF: 145.44190192224576
Iteration: 5, Func. Count: 65, Neg. LLF: 145.3632695137883
Iteration: 6, Func. Count: 77, Neg. LLF: 145.67316156639617
Iteration: 7, Func. Count: 90, Neg. LLF: 145.32089134248713
Iteration: 8, Func. Count: 102, Neg. LLF: 145.30530380418057
Iteration: 9, Func. Count: 114, Neg. LLF: 145.26970119338233
Iteration: 10, Func. Count: 126, Neg. LLF: 145.6730282658557
Iteration: 11, Func. Count: 140, Neg. LLF: 145.25940965040917
Iteration: 12, Func. Count: 152, Neg. LLF: 145.2541132800557
Iteration: 13, Func. Count: 164, Neg. LLF: 145.2504336605872
Iteration: 14, Func. Count: 176, Neg. LLF: 145.24931875335318
Iteration: 15, Func. Count: 188, Neg. LLF: 145.24907972314972
Iteration: 16, Func. Count: 200, Neg. LLF: 145.24907412179186
Iteration: 17, Func. Count: 211, Neg. LLF: 145.24907412178695
Optimization terminated successfully (Exit mode 0)
Current function value: 145.24907412179186
Iterations: 17
Function evaluations: 211
Gradient evaluations: 17
Iteration: 1, Func. Count: 14, Neg. LLF: 148.33835585336914
Iteration: 2, Func. Count: 29, Neg. LLF: 148.96157913919743
Iteration: 3, Func. Count: 43, Neg. LLF: 161.39782432392684
Iteration: 4, Func. Count: 58, Neg. LLF: 146.03564683330922
Iteration: 5, Func. Count: 72, Neg. LLF: 145.40609505876802
Iteration: 6, Func. Count: 85, Neg. LLF: 145.38336027498082
Iteration: 7, Func. Count: 98, Neg. LLF: 145.37180609423734
Iteration: 8, Func. Count: 111, Neg. LLF: 145.36004178077334
Iteration: 9, Func. Count: 124, Neg. LLF: 145.34059743365273
Iteration: 10, Func. Count: 137, Neg. LLF: 145.3221799401696
Iteration: 11, Func. Count: 150, Neg. LLF: 145.3092743315796
Iteration: 12, Func. Count: 163, Neg. LLF: 145.32948953964552
Iteration: 13, Func. Count: 177, Neg. LLF: 145.29921069612678
Iteration: 14, Func. Count: 190, Neg. LLF: 145.2937753695828
Iteration: 15, Func. Count: 203, Neg. LLF: 145.29312693138078
Iteration: 16, Func. Count: 216, Neg. LLF: 145.29304933510488
Iteration: 17, Func. Count: 229, Neg. LLF: 145.29303202696656
Iteration: 18, Func. Count: 242, Neg. LLF: 145.29302897896147
Iteration: 19, Func. Count: 254, Neg. LLF: 145.29302903674454
Optimization terminated successfully (Exit mode 0)
Current function value: 145.29302897896147
Iterations: 19
Function evaluations: 254
Gradient evaluations: 19
Iteration: 1, Func. Count: 15, Neg. LLF: 147.68664143809062
Iteration: 2, Func. Count: 31, Neg. LLF: 148.75833489022324
Iteration: 3, Func. Count: 46, Neg. LLF: 157.0497273095501
Iteration: 4, Func. Count: 61, Neg. LLF: 146.53777912157497
Iteration: 5, Func. Count: 76, Neg. LLF: 145.8370486445236
Iteration: 6, Func. Count: 90, Neg. LLF: 145.54539837327562
Iteration: 7, Func. Count: 104, Neg. LLF: 145.39078634352163
Iteration: 8, Func. Count: 118, Neg. LLF: 145.37620297142368
Iteration: 9, Func. Count: 132, Neg. LLF: 145.3688773787096
Iteration: 10, Func. Count: 146, Neg. LLF: 145.34789135800114
Iteration: 11, Func. Count: 160, Neg. LLF: 145.32361472977232
Iteration: 12, Func. Count: 174, Neg. LLF: 145.3018443577259
Iteration: 13, Func. Count: 188, Neg. LLF: 145.30005565306544
Iteration: 14, Func. Count: 202, Neg. LLF: 145.30685945878466
Iteration: 15, Func. Count: 217, Neg. LLF: 145.2932381264872
Iteration: 16, Func. Count: 231, Neg. LLF: 145.2930610575779
Iteration: 17, Func. Count: 245, Neg. LLF: 145.2930333510416
Iteration: 18, Func. Count: 259, Neg. LLF: 145.2930289047185
Iteration: 19, Func. Count: 272, Neg. LLF: 145.293028957077
Optimization terminated successfully (Exit mode 0)
Current function value: 145.2930289047185
Iterations: 19
Function evaluations: 272
Gradient evaluations: 19
Iteration: 1, Func. Count: 8, Neg. LLF: 148.9182652522519
Iteration: 2, Func. Count: 16, Neg. LLF: 148.44623581561535
Iteration: 3, Func. Count: 24, Neg. LLF: 146.38807063040085
Iteration: 4, Func. Count: 31, Neg. LLF: 148.24872827855458
Iteration: 5, Func. Count: 39, Neg. LLF: 153.11243054611438
Iteration: 6, Func. Count: 47, Neg. LLF: 145.9903906502041
Iteration: 7, Func. Count: 54, Neg. LLF: 145.96449141367646
Iteration: 8, Func. Count: 61, Neg. LLF: 145.9269232030594
Iteration: 9, Func. Count: 68, Neg. LLF: 145.83406101512156
Iteration: 10, Func. Count: 75, Neg. LLF: 145.81750152452307
Iteration: 11, Func. Count: 82, Neg. LLF: 145.8158764476181
Iteration: 12, Func. Count: 89, Neg. LLF: 145.8158637998998
Iteration: 13, Func. Count: 96, Neg. LLF: 145.81586250349352
Iteration: 14, Func. Count: 102, Neg. LLF: 145.8158625035085
Optimization terminated successfully (Exit mode 0)
Current function value: 145.81586250349352
Iterations: 14
Function evaluations: 102
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 148.99729632025569
Iteration: 2, Func. Count: 19, Neg. LLF: 147.4373269593871
Iteration: 3, Func. Count: 28, Neg. LLF: 146.5265186872203
Iteration: 4, Func. Count: 37, Neg. LLF: 146.01919768684817
Iteration: 5, Func. Count: 45, Neg. LLF: 146.55898944990324
Iteration: 6, Func. Count: 54, Neg. LLF: 145.99591827966884
Iteration: 7, Func. Count: 62, Neg. LLF: 145.99019877861207
Iteration: 8, Func. Count: 70, Neg. LLF: 145.98227995124725
Iteration: 9, Func. Count: 78, Neg. LLF: 145.95977626994627
Iteration: 10, Func. Count: 86, Neg. LLF: 145.90485544903373
Iteration: 11, Func. Count: 94, Neg. LLF: 145.84900336646558
Iteration: 12, Func. Count: 102, Neg. LLF: 145.82557821951076
Iteration: 13, Func. Count: 110, Neg. LLF: 145.8168131247626
Iteration: 14, Func. Count: 118, Neg. LLF: 145.81602545131037
Iteration: 15, Func. Count: 126, Neg. LLF: 145.81586764732765
Iteration: 16, Func. Count: 134, Neg. LLF: 145.8158626515644
Iteration: 17, Func. Count: 141, Neg. LLF: 145.81586266082923
Optimization terminated successfully (Exit mode 0)
Current function value: 145.8158626515644
Iterations: 17
Function evaluations: 141
Gradient evaluations: 17
Iteration: 1, Func. Count: 10, Neg. LLF: 148.99638838576465
Iteration: 2, Func. Count: 21, Neg. LLF: 147.4389062738563
Iteration: 3, Func. Count: 31, Neg. LLF: 147.92845552364383
Iteration: 4, Func. Count: 41, Neg. LLF: 145.9701202979059
Iteration: 5, Func. Count: 50, Neg. LLF: 145.920373158292
Iteration: 6, Func. Count: 59, Neg. LLF: 145.91237578997928
Iteration: 7, Func. Count: 68, Neg. LLF: 145.90515041536244
Iteration: 8, Func. Count: 77, Neg. LLF: 145.9020600076736
Iteration: 9, Func. Count: 86, Neg. LLF: 145.89338887313355
Iteration: 10, Func. Count: 95, Neg. LLF: 145.87563435124264
Iteration: 11, Func. Count: 104, Neg. LLF: 145.8502206156721
Iteration: 12, Func. Count: 113, Neg. LLF: 145.82711394308893
Iteration: 13, Func. Count: 122, Neg. LLF: 145.84045534235642
Iteration: 14, Func. Count: 132, Neg. LLF: 145.8159946262971
Iteration: 15, Func. Count: 141, Neg. LLF: 145.81586335281594
Iteration: 16, Func. Count: 150, Neg. LLF: 145.81586247313194
Optimization terminated successfully (Exit mode 0)
Current function value: 145.81586247313194
Iterations: 16
Function evaluations: 150
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 148.99763945342423
Iteration: 2, Func. Count: 23, Neg. LLF: 147.44883754963115
Iteration: 3, Func. Count: 34, Neg. LLF: 147.8466844995063
Iteration: 4, Func. Count: 45, Neg. LLF: 146.13950671674968
Iteration: 5, Func. Count: 56, Neg. LLF: 145.91857444717058
Iteration: 6, Func. Count: 66, Neg. LLF: 145.90790494177742
Iteration: 7, Func. Count: 76, Neg. LLF: 145.90471527075368
Iteration: 8, Func. Count: 86, Neg. LLF: 145.89931341239406
Iteration: 9, Func. Count: 96, Neg. LLF: 145.88783492889812
Iteration: 10, Func. Count: 106, Neg. LLF: 145.867602267953
Iteration: 11, Func. Count: 116, Neg. LLF: 145.84142898030188
Iteration: 12, Func. Count: 126, Neg. LLF: 145.84129841787873
Iteration: 13, Func. Count: 137, Neg. LLF: 145.81653150432632
Iteration: 14, Func. Count: 147, Neg. LLF: 145.81596851855414
Iteration: 15, Func. Count: 157, Neg. LLF: 145.816029211244
Iteration: 16, Func. Count: 168, Neg. LLF: 145.81586272207335
Iteration: 17, Func. Count: 177, Neg. LLF: 145.8158627380158
Optimization terminated successfully (Exit mode 0)
Current function value: 145.81586272207335
Iterations: 17
Function evaluations: 177
Gradient evaluations: 17
Iteration: 1, Func. Count: 12, Neg. LLF: 148.99601472227326
Iteration: 2, Func. Count: 25, Neg. LLF: 147.4799925031669
Iteration: 3, Func. Count: 37, Neg. LLF: 148.015266804963
Iteration: 4, Func. Count: 49, Neg. LLF: 146.13489296788205
Iteration: 5, Func. Count: 61, Neg. LLF: 145.93112141157533
Iteration: 6, Func. Count: 72, Neg. LLF: 145.90860906187174
Iteration: 7, Func. Count: 83, Neg. LLF: 145.9047712592225
Iteration: 8, Func. Count: 94, Neg. LLF: 145.90101460218546
Iteration: 9, Func. Count: 105, Neg. LLF: 145.88924586707827
Iteration: 10, Func. Count: 116, Neg. LLF: 145.87060158621742
Iteration: 11, Func. Count: 127, Neg. LLF: 145.84360075211995
Iteration: 12, Func. Count: 138, Neg. LLF: 145.82016504538936
Iteration: 13, Func. Count: 149, Neg. LLF: 145.81649072058508
Iteration: 14, Func. Count: 160, Neg. LLF: 145.81593141704113
Iteration: 15, Func. Count: 171, Neg. LLF: 145.81586424606868
Iteration: 16, Func. Count: 182, Neg. LLF: 145.81586247893537
Iteration: 17, Func. Count: 192, Neg. LLF: 145.81586249008708
Optimization terminated successfully (Exit mode 0)
Current function value: 145.81586247893537
Iterations: 17
Function evaluations: 192
Gradient evaluations: 17
Iteration: 1, Func. Count: 9, Neg. LLF: 147.7729491256808
Iteration: 2, Func. Count: 18, Neg. LLF: 151.32659456826877
Iteration: 3, Func. Count: 28, Neg. LLF: 149.5512242716402
Iteration: 4, Func. Count: 37, Neg. LLF: 147.0399594662875
Iteration: 5, Func. Count: 46, Neg. LLF: 145.84165986545426
Iteration: 6, Func. Count: 54, Neg. LLF: 149.3371975563994
Iteration: 7, Func. Count: 64, Neg. LLF: 146.32026402574286
Iteration: 8, Func. Count: 73, Neg. LLF: 145.7585288755065
Iteration: 9, Func. Count: 81, Neg. LLF: 145.75529769759902
Iteration: 10, Func. Count: 89, Neg. LLF: 145.75107417861588
Iteration: 11, Func. Count: 97, Neg. LLF: 145.73635116845603
Iteration: 12, Func. Count: 105, Neg. LLF: 145.7294721837625
Iteration: 13, Func. Count: 113, Neg. LLF: 145.72676868795065
Iteration: 14, Func. Count: 121, Neg. LLF: 145.72604090430644
Iteration: 15, Func. Count: 129, Neg. LLF: 145.72584400647787
Iteration: 16, Func. Count: 137, Neg. LLF: 145.72582960537127
Iteration: 17, Func. Count: 145, Neg. LLF: 145.72582887754533
Optimization terminated successfully (Exit mode 0)
Current function value: 145.72582887754533
Iterations: 17
Function evaluations: 145
Gradient evaluations: 17
Iteration: 1, Func. Count: 10, Neg. LLF: 148.3460013350708
Iteration: 2, Func. Count: 21, Neg. LLF: 146.5407104179916
Iteration: 3, Func. Count: 31, Neg. LLF: 145.95973080911688
Iteration: 4, Func. Count: 41, Neg. LLF: 147.45443293135196
Iteration: 5, Func. Count: 51, Neg. LLF: 145.74345005473617
Iteration: 6, Func. Count: 60, Neg. LLF: 145.7273150766206
Iteration: 7, Func. Count: 69, Neg. LLF: 145.9366071033591
Iteration: 8, Func. Count: 80, Neg. LLF: 145.72897964648683
Iteration: 9, Func. Count: 90, Neg. LLF: 145.72243052198897
Iteration: 10, Func. Count: 99, Neg. LLF: 145.7223085196739
Iteration: 11, Func. Count: 108, Neg. LLF: 145.72218331324592
Iteration: 12, Func. Count: 117, Neg. LLF: 145.72145643813366
Iteration: 13, Func. Count: 126, Neg. LLF: 145.7201811812145
Iteration: 14, Func. Count: 135, Neg. LLF: 145.71756861077182
Iteration: 15, Func. Count: 144, Neg. LLF: 145.71439778494283
Iteration: 16, Func. Count: 153, Neg. LLF: 145.71049856975762
Iteration: 17, Func. Count: 162, Neg. LLF: 145.7084775596494
Iteration: 18, Func. Count: 171, Neg. LLF: 145.7084155733025
Iteration: 19, Func. Count: 180, Neg. LLF: 145.70841176814582
Iteration: 20, Func. Count: 188, Neg. LLF: 145.70841176822805
Optimization terminated successfully (Exit mode 0)
Current function value: 145.70841176814582
Iterations: 20
Function evaluations: 188
Gradient evaluations: 20
Iteration: 1, Func. Count: 11, Neg. LLF: 148.45984974830293
Iteration: 2, Func. Count: 23, Neg. LLF: 146.50962246343738
Iteration: 3, Func. Count: 34, Neg. LLF: 145.68539593878614
Iteration: 4, Func. Count: 44, Neg. LLF: 146.482775202468
Iteration: 5, Func. Count: 55, Neg. LLF: 146.45352806180665
Iteration: 6, Func. Count: 67, Neg. LLF: 146.03495617062418
Iteration: 7, Func. Count: 78, Neg. LLF: 145.62847012339054
Iteration: 8, Func. Count: 88, Neg. LLF: 145.62730588066307
Iteration: 9, Func. Count: 98, Neg. LLF: 145.62508412495183
Iteration: 10, Func. Count: 108, Neg. LLF: 145.6134344852671
Iteration: 11, Func. Count: 118, Neg. LLF: 145.60162611326604
Iteration: 12, Func. Count: 128, Neg. LLF: 145.5970296956619
Iteration: 13, Func. Count: 138, Neg. LLF: 145.595796663339
Iteration: 14, Func. Count: 148, Neg. LLF: 145.59578514975786
Iteration: 15, Func. Count: 158, Neg. LLF: 145.59578369574032
Iteration: 16, Func. Count: 167, Neg. LLF: 145.59578369573595
Optimization terminated successfully (Exit mode 0)
Current function value: 145.59578369574032
Iterations: 16
Function evaluations: 167
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 148.12696754397976
Iteration: 2, Func. Count: 25, Neg. LLF: 146.87289783708405
Iteration: 3, Func. Count: 37, Neg. LLF: 147.22524369593694
Iteration: 4, Func. Count: 49, Neg. LLF: 145.86485968093317
Iteration: 5, Func. Count: 61, Neg. LLF: 145.65245673067517
Iteration: 6, Func. Count: 72, Neg. LLF: 145.63387110296077
Iteration: 7, Func. Count: 83, Neg. LLF: 145.65616736144656
Iteration: 8, Func. Count: 95, Neg. LLF: 145.69501872956405
Iteration: 9, Func. Count: 107, Neg. LLF: 145.62733751221657
Iteration: 10, Func. Count: 118, Neg. LLF: 145.62586150092483
Iteration: 11, Func. Count: 129, Neg. LLF: 145.61754613150143
Iteration: 12, Func. Count: 140, Neg. LLF: 145.5964612465386
Iteration: 13, Func. Count: 151, Neg. LLF: 145.5958026385759
Iteration: 14, Func. Count: 162, Neg. LLF: 145.59578414472824
Iteration: 15, Func. Count: 172, Neg. LLF: 145.59578416029117
Optimization terminated successfully (Exit mode 0)
Current function value: 145.59578414472824
Iterations: 15
Function evaluations: 172
Gradient evaluations: 15
Iteration: 1, Func. Count: 13, Neg. LLF: 148.99815652034604
Iteration: 2, Func. Count: 27, Neg. LLF: 146.414857491317
Iteration: 3, Func. Count: 40, Neg. LLF: 149.12269996434907
Iteration: 4, Func. Count: 53, Neg. LLF: 145.70038628410785
Iteration: 5, Func. Count: 65, Neg. LLF: 145.64616528650015
Iteration: 6, Func. Count: 77, Neg. LLF: 146.51136024987386
Iteration: 7, Func. Count: 91, Neg. LLF: 145.6441885322598
Iteration: 8, Func. Count: 104, Neg. LLF: 145.6284488614174
Iteration: 9, Func. Count: 116, Neg. LLF: 145.6271334082857
Iteration: 10, Func. Count: 128, Neg. LLF: 145.6197839451273
Iteration: 11, Func. Count: 140, Neg. LLF: 145.59773996139157
Iteration: 12, Func. Count: 152, Neg. LLF: 145.59634352488055
Iteration: 13, Func. Count: 164, Neg. LLF: 145.59580190231662
Iteration: 14, Func. Count: 176, Neg. LLF: 145.59578626494996
Iteration: 15, Func. Count: 188, Neg. LLF: 145.59578374391174
Iteration: 16, Func. Count: 199, Neg. LLF: 145.59578379083874
Optimization terminated successfully (Exit mode 0)
Current function value: 145.59578374391174
Iterations: 16
Function evaluations: 199
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 147.607914642195
Iteration: 2, Func. Count: 20, Neg. LLF: 150.0359676122756
Iteration: 3, Func. Count: 31, Neg. LLF: 147.3331730206861
Iteration: 4, Func. Count: 41, Neg. LLF: 145.84129870512186
Iteration: 5, Func. Count: 50, Neg. LLF: 148.31732858312196
Iteration: 6, Func. Count: 61, Neg. LLF: 151.41237667768846
Iteration: 7, Func. Count: 71, Neg. LLF: 145.63821663531834
Iteration: 8, Func. Count: 80, Neg. LLF: 145.62477098246757
Iteration: 9, Func. Count: 89, Neg. LLF: 145.62137112073046
Iteration: 10, Func. Count: 98, Neg. LLF: 145.61815048087942
Iteration: 11, Func. Count: 107, Neg. LLF: 145.61704644755693
Iteration: 12, Func. Count: 116, Neg. LLF: 145.61377894860274
Iteration: 13, Func. Count: 125, Neg. LLF: 145.60891816949626
Iteration: 14, Func. Count: 134, Neg. LLF: 145.60623203949564
Iteration: 15, Func. Count: 143, Neg. LLF: 145.60570002031616
Iteration: 16, Func. Count: 152, Neg. LLF: 145.6056350383388
Iteration: 17, Func. Count: 161, Neg. LLF: 145.60563125508713
Iteration: 18, Func. Count: 169, Neg. LLF: 145.6056311769636
Optimization terminated successfully (Exit mode 0)
Current function value: 145.60563125508713
Iterations: 18
Function evaluations: 169
Gradient evaluations: 18
Iteration: 1, Func. Count: 11, Neg. LLF: 147.7408842633886
Iteration: 2, Func. Count: 23, Neg. LLF: 151.5936434642685
Iteration: 3, Func. Count: 34, Neg. LLF: 146.23262233833773
Iteration: 4, Func. Count: 45, Neg. LLF: 145.79475916804373
Iteration: 5, Func. Count: 56, Neg. LLF: 145.47205798079514
Iteration: 6, Func. Count: 66, Neg. LLF: 145.37397733975425
Iteration: 7, Func. Count: 76, Neg. LLF: 145.3620359178633
Iteration: 8, Func. Count: 86, Neg. LLF: 145.3450496818364
Iteration: 9, Func. Count: 96, Neg. LLF: 145.24636063710153
Iteration: 10, Func. Count: 106, Neg. LLF: 145.2608885239617
Iteration: 11, Func. Count: 117, Neg. LLF: 145.1795698235753
Iteration: 12, Func. Count: 127, Neg. LLF: 145.1717799541481
Iteration: 13, Func. Count: 137, Neg. LLF: 145.1712125246217
Iteration: 14, Func. Count: 147, Neg. LLF: 145.17116246068943
Iteration: 15, Func. Count: 157, Neg. LLF: 145.17113597647273
Iteration: 16, Func. Count: 167, Neg. LLF: 145.1711344922578
Iteration: 17, Func. Count: 176, Neg. LLF: 145.17113449225113
Optimization terminated successfully (Exit mode 0)
Current function value: 145.1711344922578
Iterations: 17
Function evaluations: 176
Gradient evaluations: 17
Iteration: 1, Func. Count: 12, Neg. LLF: 147.72947739585442
Iteration: 2, Func. Count: 25, Neg. LLF: 151.4771158211625
Iteration: 3, Func. Count: 37, Neg. LLF: 146.2803539671272
Iteration: 4, Func. Count: 49, Neg. LLF: 148.524217053176
Iteration: 5, Func. Count: 61, Neg. LLF: 145.5382948149511
Iteration: 6, Func. Count: 72, Neg. LLF: 145.38503708581118
Iteration: 7, Func. Count: 83, Neg. LLF: 145.3706504150623
Iteration: 8, Func. Count: 94, Neg. LLF: 145.35574333817786
Iteration: 9, Func. Count: 105, Neg. LLF: 145.2986312054439
Iteration: 10, Func. Count: 116, Neg. LLF: 145.2383651444686
Iteration: 11, Func. Count: 127, Neg. LLF: 145.2129401911163
Iteration: 12, Func. Count: 138, Neg. LLF: 145.1803080622665
Iteration: 13, Func. Count: 149, Neg. LLF: 145.17323809107467
Iteration: 14, Func. Count: 160, Neg. LLF: 145.17121632919242
Iteration: 15, Func. Count: 171, Neg. LLF: 145.17115164224964
Iteration: 16, Func. Count: 182, Neg. LLF: 145.1711345770294
Iteration: 17, Func. Count: 192, Neg. LLF: 145.171134595754
Optimization terminated successfully (Exit mode 0)
Current function value: 145.1711345770294
Iterations: 17
Function evaluations: 192
Gradient evaluations: 17
Iteration: 1, Func. Count: 13, Neg. LLF: 147.87628012435073
Iteration: 2, Func. Count: 27, Neg. LLF: 148.18519844128903
Iteration: 3, Func. Count: 40, Neg. LLF: 146.47249597833476
Iteration: 4, Func. Count: 53, Neg. LLF: 146.36525501409199
Iteration: 5, Func. Count: 66, Neg. LLF: 145.5712482580422
Iteration: 6, Func. Count: 78, Neg. LLF: 146.11521894865655
Iteration: 7, Func. Count: 92, Neg. LLF: 145.54176735646823
Iteration: 8, Func. Count: 104, Neg. LLF: 145.52353754335073
Iteration: 9, Func. Count: 116, Neg. LLF: 145.52171419777207
Iteration: 10, Func. Count: 128, Neg. LLF: 145.51849227890406
Iteration: 11, Func. Count: 140, Neg. LLF: 145.50918593627793
Iteration: 12, Func. Count: 152, Neg. LLF: 145.47709360234816
Iteration: 13, Func. Count: 164, Neg. LLF: 145.45973399677396
Iteration: 14, Func. Count: 176, Neg. LLF: 145.45561706682702
Iteration: 15, Func. Count: 188, Neg. LLF: 145.45549495336593
Iteration: 16, Func. Count: 200, Neg. LLF: 145.4554728913783
Iteration: 17, Func. Count: 212, Neg. LLF: 145.45547076949768
Iteration: 18, Func. Count: 224, Neg. LLF: 145.45547016161422
Optimization terminated successfully (Exit mode 0)
Current function value: 145.45547016161422
Iterations: 18
Function evaluations: 224
Gradient evaluations: 18
Iteration: 1, Func. Count: 14, Neg. LLF: 148.57312296579272
Iteration: 2, Func. Count: 29, Neg. LLF: 146.5421271670787
Iteration: 3, Func. Count: 43, Neg. LLF: 146.8464700922873
Iteration: 4, Func. Count: 57, Neg. LLF: 147.09771624237266
Iteration: 5, Func. Count: 71, Neg. LLF: 145.58953212768714
Iteration: 6, Func. Count: 84, Neg. LLF: 145.65198930848143
Iteration: 7, Func. Count: 98, Neg. LLF: 145.96232771417405
Iteration: 8, Func. Count: 112, Neg. LLF: 145.57542747412649
Iteration: 9, Func. Count: 126, Neg. LLF: 145.5275539161649
Iteration: 10, Func. Count: 139, Neg. LLF: 145.52276188185863
Iteration: 11, Func. Count: 152, Neg. LLF: 145.52242754066188
Iteration: 12, Func. Count: 166, Neg. LLF: 145.51288582300495
Iteration: 13, Func. Count: 179, Neg. LLF: 145.49712039016214
Iteration: 14, Func. Count: 192, Neg. LLF: 145.48372419449927
Iteration: 15, Func. Count: 205, Neg. LLF: 145.4687089869721
Iteration: 16, Func. Count: 218, Neg. LLF: 145.46013934479643
Iteration: 17, Func. Count: 231, Neg. LLF: 145.4555715791049
Iteration: 18, Func. Count: 244, Neg. LLF: 145.45548161252808
Iteration: 19, Func. Count: 257, Neg. LLF: 145.4554713848317
Iteration: 20, Func. Count: 270, Neg. LLF: 145.45547017466686
Iteration: 21, Func. Count: 282, Neg. LLF: 145.45547022075453
Optimization terminated successfully (Exit mode 0)
Current function value: 145.45547017466686
Iterations: 21
Function evaluations: 282
Gradient evaluations: 21
Iteration: 1, Func. Count: 11, Neg. LLF: 147.19006191510084
Iteration: 2, Func. Count: 22, Neg. LLF: 153.99087165746494
Iteration: 3, Func. Count: 33, Neg. LLF: 146.65814293465772
Iteration: 4, Func. Count: 44, Neg. LLF: 145.5091412141255
Iteration: 5, Func. Count: 54, Neg. LLF: 146.42935006400907
Iteration: 6, Func. Count: 66, Neg. LLF: 148.34805161999302
Iteration: 7, Func. Count: 77, Neg. LLF: 145.5500986418143
Iteration: 8, Func. Count: 88, Neg. LLF: 145.14585212618368
Iteration: 9, Func. Count: 98, Neg. LLF: 145.14147373418317
Iteration: 10, Func. Count: 108, Neg. LLF: 145.14103060404366
Iteration: 11, Func. Count: 118, Neg. LLF: 145.1408892928462
Iteration: 12, Func. Count: 128, Neg. LLF: 145.1408447241399
Iteration: 13, Func. Count: 138, Neg. LLF: 145.1407466534231
Iteration: 14, Func. Count: 148, Neg. LLF: 145.1406926978057
Iteration: 15, Func. Count: 158, Neg. LLF: 145.14062672960208
Iteration: 16, Func. Count: 168, Neg. LLF: 145.14059238462846
Iteration: 17, Func. Count: 178, Neg. LLF: 145.14058301794051
Iteration: 18, Func. Count: 188, Neg. LLF: 145.14058227103376
Optimization terminated successfully (Exit mode 0)
Current function value: 145.14058227103376
Iterations: 18
Function evaluations: 188
Gradient evaluations: 18
Iteration: 1, Func. Count: 12, Neg. LLF: 147.2754227946131
Iteration: 2, Func. Count: 25, Neg. LLF: 149.35070797228872
Iteration: 3, Func. Count: 37, Neg. LLF: 148.6581594436167
Iteration: 4, Func. Count: 49, Neg. LLF: 145.57548647279648
Iteration: 5, Func. Count: 61, Neg. LLF: 146.44368395162934
Iteration: 6, Func. Count: 73, Neg. LLF: 145.28649339465852
Iteration: 7, Func. Count: 85, Neg. LLF: 145.3855413045334
Iteration: 8, Func. Count: 97, Neg. LLF: 145.15783388792005
Iteration: 9, Func. Count: 108, Neg. LLF: 145.14277138675158
Iteration: 10, Func. Count: 119, Neg. LLF: 145.13897581973885
Iteration: 11, Func. Count: 130, Neg. LLF: 145.13657448161132
Iteration: 12, Func. Count: 141, Neg. LLF: 145.13551284276025
Iteration: 13, Func. Count: 152, Neg. LLF: 145.131832314617
Iteration: 14, Func. Count: 163, Neg. LLF: 145.12974543005237
Iteration: 15, Func. Count: 174, Neg. LLF: 145.12473119559448
Iteration: 16, Func. Count: 185, Neg. LLF: 145.1151739779674
Iteration: 17, Func. Count: 196, Neg. LLF: 145.1018547158743
Iteration: 18, Func. Count: 207, Neg. LLF: 145.09490370532416
Iteration: 19, Func. Count: 218, Neg. LLF: 145.09273653147457
Iteration: 20, Func. Count: 229, Neg. LLF: 145.0906063883972
Iteration: 21, Func. Count: 240, Neg. LLF: 145.08941976065603
Iteration: 22, Func. Count: 251, Neg. LLF: 145.08926360965057
Iteration: 23, Func. Count: 262, Neg. LLF: 145.08922511332344
Iteration: 24, Func. Count: 273, Neg. LLF: 145.08921759582645
Iteration: 25, Func. Count: 284, Neg. LLF: 145.0892156250476
Iteration: 26, Func. Count: 294, Neg. LLF: 145.08921562503812
Optimization terminated successfully (Exit mode 0)
Current function value: 145.0892156250476
Iterations: 26
Function evaluations: 294
Gradient evaluations: 26
Iteration: 1, Func. Count: 13, Neg. LLF: 147.10717744393247
Iteration: 2, Func. Count: 27, Neg. LLF: 149.1486816448629
Iteration: 3, Func. Count: 40, Neg. LLF: 145.99338079825858
Iteration: 4, Func. Count: 53, Neg. LLF: 145.67815367020705
Iteration: 5, Func. Count: 66, Neg. LLF: 146.6586265727463
Iteration: 6, Func. Count: 79, Neg. LLF: 145.4097581026665
Iteration: 7, Func. Count: 92, Neg. LLF: 145.21985411771277
Iteration: 8, Func. Count: 104, Neg. LLF: 145.45623807537015
Iteration: 9, Func. Count: 117, Neg. LLF: 145.16585041308792
Iteration: 10, Func. Count: 129, Neg. LLF: 145.1486301048743
Iteration: 11, Func. Count: 141, Neg. LLF: 145.1402406660121
Iteration: 12, Func. Count: 153, Neg. LLF: 145.1380796652644
Iteration: 13, Func. Count: 165, Neg. LLF: 145.1366156997814
Iteration: 14, Func. Count: 177, Neg. LLF: 145.13535532086092
Iteration: 15, Func. Count: 189, Neg. LLF: 145.1283412571636
Iteration: 16, Func. Count: 201, Neg. LLF: 145.12425780855781
Iteration: 17, Func. Count: 213, Neg. LLF: 145.11323453438214
Iteration: 18, Func. Count: 225, Neg. LLF: 145.09700058231263
Iteration: 19, Func. Count: 237, Neg. LLF: 145.09048800841472
Iteration: 20, Func. Count: 249, Neg. LLF: 145.08964896430643
Iteration: 21, Func. Count: 261, Neg. LLF: 145.08934728716056
Iteration: 22, Func. Count: 273, Neg. LLF: 145.08927174977353
Iteration: 23, Func. Count: 285, Neg. LLF: 145.08922129890624
Iteration: 24, Func. Count: 297, Neg. LLF: 145.08921628608704
Iteration: 25, Func. Count: 309, Neg. LLF: 145.08921541013294
Optimization terminated successfully (Exit mode 0)
Current function value: 145.08921541013294
Iterations: 25
Function evaluations: 309
Gradient evaluations: 25
Iteration: 1, Func. Count: 14, Neg. LLF: 147.26729850437687
Iteration: 2, Func. Count: 29, Neg. LLF: 149.03841502556105
Iteration: 3, Func. Count: 43, Neg. LLF: 146.4538663451745
Iteration: 4, Func. Count: 57, Neg. LLF: 145.72689686152972
Iteration: 5, Func. Count: 71, Neg. LLF: 145.37534849946118
Iteration: 6, Func. Count: 85, Neg. LLF: 146.76561688365325
Iteration: 7, Func. Count: 100, Neg. LLF: 145.18494679602313
Iteration: 8, Func. Count: 113, Neg. LLF: 145.14159925737994
Iteration: 9, Func. Count: 126, Neg. LLF: 145.14753714177547
Iteration: 10, Func. Count: 140, Neg. LLF: 145.13983902538055
Iteration: 11, Func. Count: 153, Neg. LLF: 145.13780557976628
Iteration: 12, Func. Count: 166, Neg. LLF: 145.13225786606242
Iteration: 13, Func. Count: 179, Neg. LLF: 145.12960981184713
Iteration: 14, Func. Count: 192, Neg. LLF: 145.1254396808783
Iteration: 15, Func. Count: 205, Neg. LLF: 145.121343527612
Iteration: 16, Func. Count: 218, Neg. LLF: 145.10435669958395
Iteration: 17, Func. Count: 231, Neg. LLF: 145.09665044552702
Iteration: 18, Func. Count: 244, Neg. LLF: 145.09237847178522
Iteration: 19, Func. Count: 257, Neg. LLF: 145.09035079656113
Iteration: 20, Func. Count: 270, Neg. LLF: 145.08933099438022
Iteration: 21, Func. Count: 283, Neg. LLF: 145.0892447353947
Iteration: 22, Func. Count: 296, Neg. LLF: 145.0892170598898
Iteration: 23, Func. Count: 309, Neg. LLF: 145.08921568512295
Iteration: 24, Func. Count: 321, Neg. LLF: 145.08921573345532
Optimization terminated successfully (Exit mode 0)
Current function value: 145.08921568512295
Iterations: 24
Function evaluations: 321
Gradient evaluations: 24
Iteration: 1, Func. Count: 15, Neg. LLF: 148.3280959791429
Iteration: 2, Func. Count: 31, Neg. LLF: 146.55021089762272
Iteration: 3, Func. Count: 46, Neg. LLF: 145.91420492746377
Iteration: 4, Func. Count: 61, Neg. LLF: 145.71638091378713
Iteration: 5, Func. Count: 76, Neg. LLF: 146.29690442008697
Iteration: 6, Func. Count: 92, Neg. LLF: 146.1496728543695
Iteration: 7, Func. Count: 107, Neg. LLF: 145.1525973042811
Iteration: 8, Func. Count: 121, Neg. LLF: 145.14222051564676
Iteration: 9, Func. Count: 135, Neg. LLF: 145.14238027555726
Iteration: 10, Func. Count: 150, Neg. LLF: 145.13948990373265
Iteration: 11, Func. Count: 164, Neg. LLF: 145.1383207108863
Iteration: 12, Func. Count: 178, Neg. LLF: 145.13287599458184
Iteration: 13, Func. Count: 192, Neg. LLF: 145.12885554514975
Iteration: 14, Func. Count: 206, Neg. LLF: 145.12139711589663
Iteration: 15, Func. Count: 220, Neg. LLF: 145.11784417928564
Iteration: 16, Func. Count: 234, Neg. LLF: 145.10339489950636
Iteration: 17, Func. Count: 248, Neg. LLF: 145.09548852376128
Iteration: 18, Func. Count: 262, Neg. LLF: 145.09258487719893
Iteration: 19, Func. Count: 276, Neg. LLF: 145.08945949012485
Iteration: 20, Func. Count: 290, Neg. LLF: 145.08925506016405
Iteration: 21, Func. Count: 304, Neg. LLF: 145.0892202317328
Iteration: 22, Func. Count: 318, Neg. LLF: 145.08921586526853
Iteration: 23, Func. Count: 332, Neg. LLF: 145.08921538675486
Optimization terminated successfully (Exit mode 0)
Current function value: 145.08921538675486
Iterations: 23
Function evaluations: 332
Gradient evaluations: 23
Iteration: 1, Func. Count: 12, Neg. LLF: 147.1284481767257
Iteration: 2, Func. Count: 24, Neg. LLF: 150.75694913944847
Iteration: 3, Func. Count: 36, Neg. LLF: 145.54656906090472
Iteration: 4, Func. Count: 47, Neg. LLF: 146.12711135901608
Iteration: 5, Func. Count: 59, Neg. LLF: 148.1331410427562
Iteration: 6, Func. Count: 73, Neg. LLF: 147.00196031020937
Iteration: 7, Func. Count: 85, Neg. LLF: 144.8883620888955
Iteration: 8, Func. Count: 96, Neg. LLF: 145.573487199589
Iteration: 9, Func. Count: 108, Neg. LLF: 144.82231755289092
Iteration: 10, Func. Count: 120, Neg. LLF: 144.71766450086395
Iteration: 11, Func. Count: 131, Neg. LLF: 144.70838932830972
Iteration: 12, Func. Count: 142, Neg. LLF: 144.69931968058756
Iteration: 13, Func. Count: 153, Neg. LLF: 144.67147957510068
Iteration: 14, Func. Count: 164, Neg. LLF: 144.66007114210677
Iteration: 15, Func. Count: 175, Neg. LLF: 144.65682715665326
Iteration: 16, Func. Count: 186, Neg. LLF: 144.6564663106993
Iteration: 17, Func. Count: 197, Neg. LLF: 144.65643640864937
Iteration: 18, Func. Count: 208, Neg. LLF: 144.65643231998155
Iteration: 19, Func. Count: 218, Neg. LLF: 144.65643231996816
Optimization terminated successfully (Exit mode 0)
Current function value: 144.65643231998155
Iterations: 19
Function evaluations: 218
Gradient evaluations: 19
Iteration: 1, Func. Count: 13, Neg. LLF: 147.74985258786
Iteration: 2, Func. Count: 27, Neg. LLF: 146.1852243367229
Iteration: 3, Func. Count: 40, Neg. LLF: 146.25103454462197
Iteration: 4, Func. Count: 53, Neg. LLF: 147.23621223756786
Iteration: 5, Func. Count: 66, Neg. LLF: 145.19834676653207
Iteration: 6, Func. Count: 79, Neg. LLF: 145.3356673274415
Iteration: 7, Func. Count: 92, Neg. LLF: 144.81557639544755
Iteration: 8, Func. Count: 104, Neg. LLF: 144.86917907814217
Iteration: 9, Func. Count: 117, Neg. LLF: 144.74653980291183
Iteration: 10, Func. Count: 129, Neg. LLF: 144.72096982262545
Iteration: 11, Func. Count: 141, Neg. LLF: 144.71059338326938
Iteration: 12, Func. Count: 153, Neg. LLF: 144.70263396844408
Iteration: 13, Func. Count: 165, Neg. LLF: 144.68898897771425
Iteration: 14, Func. Count: 177, Neg. LLF: 144.6712147021393
Iteration: 15, Func. Count: 189, Neg. LLF: 144.6582282657748
Iteration: 16, Func. Count: 201, Neg. LLF: 144.6567127200048
Iteration: 17, Func. Count: 213, Neg. LLF: 144.65644709218765
Iteration: 18, Func. Count: 225, Neg. LLF: 144.65643279987913
Iteration: 19, Func. Count: 236, Neg. LLF: 144.65643281704965
Optimization terminated successfully (Exit mode 0)
Current function value: 144.65643279987913
Iterations: 19
Function evaluations: 236
Gradient evaluations: 19
Iteration: 1, Func. Count: 14, Neg. LLF: 146.78060277372217
Iteration: 2, Func. Count: 29, Neg. LLF: 146.9631528415889
Iteration: 3, Func. Count: 43, Neg. LLF: 145.3707245028437
Iteration: 4, Func. Count: 57, Neg. LLF: 157.96048557696173
Iteration: 5, Func. Count: 72, Neg. LLF: 145.00307480509923
Iteration: 6, Func. Count: 86, Neg. LLF: 144.79220124028714
Iteration: 7, Func. Count: 99, Neg. LLF: 146.05279336138145
Iteration: 8, Func. Count: 113, Neg. LLF: 144.7693988339499
Iteration: 9, Func. Count: 127, Neg. LLF: 144.7268804083776
Iteration: 10, Func. Count: 140, Neg. LLF: 144.71494952675513
Iteration: 11, Func. Count: 153, Neg. LLF: 144.7042739237928
Iteration: 12, Func. Count: 166, Neg. LLF: 144.69122696649748
Iteration: 13, Func. Count: 179, Neg. LLF: 144.67692121571076
Iteration: 14, Func. Count: 192, Neg. LLF: 144.66257324887815
Iteration: 15, Func. Count: 205, Neg. LLF: 144.65743995044778
Iteration: 16, Func. Count: 218, Neg. LLF: 144.65653777176902
Iteration: 17, Func. Count: 231, Neg. LLF: 144.65643782763863
Iteration: 18, Func. Count: 244, Neg. LLF: 144.65643239322034
Iteration: 19, Func. Count: 256, Neg. LLF: 144.65643241232198
Optimization terminated successfully (Exit mode 0)
Current function value: 144.65643239322034
Iterations: 19
Function evaluations: 256
Gradient evaluations: 19
Iteration: 1, Func. Count: 15, Neg. LLF: 147.37397737145525
Iteration: 2, Func. Count: 31, Neg. LLF: 147.4618263652742
Iteration: 3, Func. Count: 46, Neg. LLF: 146.4531819953288
Iteration: 4, Func. Count: 61, Neg. LLF: 147.73983094647176
Iteration: 5, Func. Count: 77, Neg. LLF: 146.36313271591152
Iteration: 6, Func. Count: 92, Neg. LLF: 144.96666443458608
Iteration: 7, Func. Count: 106, Neg. LLF: 145.11960438876017
Iteration: 8, Func. Count: 121, Neg. LLF: 165.09159666278003
Iteration: 9, Func. Count: 136, Neg. LLF: 144.76362716574522
Iteration: 10, Func. Count: 150, Neg. LLF: 144.74497476836103
Iteration: 11, Func. Count: 164, Neg. LLF: 144.71840360367815
Iteration: 12, Func. Count: 178, Neg. LLF: 144.70801782030924
Iteration: 13, Func. Count: 192, Neg. LLF: 144.69596463562468
Iteration: 14, Func. Count: 206, Neg. LLF: 144.68812537739302
Iteration: 15, Func. Count: 220, Neg. LLF: 144.6764903104302
Iteration: 16, Func. Count: 234, Neg. LLF: 144.66367202176627
Iteration: 17, Func. Count: 248, Neg. LLF: 144.6575632442223
Iteration: 18, Func. Count: 262, Neg. LLF: 144.65663754429318
Iteration: 19, Func. Count: 276, Neg. LLF: 144.65643618651873
Iteration: 20, Func. Count: 290, Neg. LLF: 144.65643254160224
Iteration: 21, Func. Count: 303, Neg. LLF: 144.65643257906308
Optimization terminated successfully (Exit mode 0)
Current function value: 144.65643254160224
Iterations: 21
Function evaluations: 303
Gradient evaluations: 21
Iteration: 1, Func. Count: 16, Neg. LLF: 147.31786838341182
Iteration: 2, Func. Count: 33, Neg. LLF: 147.7317906354277
Iteration: 3, Func. Count: 49, Neg. LLF: 146.62227435851906
Iteration: 4, Func. Count: 65, Neg. LLF: 145.0425181604339
Iteration: 5, Func. Count: 80, Neg. LLF: 147.3522411332133
Iteration: 6, Func. Count: 97, Neg. LLF: 148.9627087265968
Iteration: 7, Func. Count: 114, Neg. LLF: 145.591705823283
Iteration: 8, Func. Count: 130, Neg. LLF: 144.89213981216375
Iteration: 9, Func. Count: 146, Neg. LLF: 144.7456349515697
Iteration: 10, Func. Count: 161, Neg. LLF: 144.73365957333596
Iteration: 11, Func. Count: 176, Neg. LLF: 144.71666516876363
Iteration: 12, Func. Count: 191, Neg. LLF: 144.70503729380218
Iteration: 13, Func. Count: 206, Neg. LLF: 144.69062165100348
Iteration: 14, Func. Count: 221, Neg. LLF: 144.67941528577242
Iteration: 15, Func. Count: 236, Neg. LLF: 144.6650732864622
Iteration: 16, Func. Count: 251, Neg. LLF: 144.6586150930212
Iteration: 17, Func. Count: 266, Neg. LLF: 144.65705552842624
Iteration: 18, Func. Count: 281, Neg. LLF: 144.65644826653147
Iteration: 19, Func. Count: 296, Neg. LLF: 144.65643365781128
Iteration: 20, Func. Count: 311, Neg. LLF: 144.6564323100488
Iteration: 21, Func. Count: 325, Neg. LLF: 144.6564323317775
Optimization terminated successfully (Exit mode 0)
Current function value: 144.6564323100488
Iterations: 21
Function evaluations: 325
Gradient evaluations: 21
Iteration: 1, Func. Count: 5, Neg. LLF: 154.48554791027863
Iteration: 2, Func. Count: 10, Neg. LLF: 148.08809488348604
Iteration: 3, Func. Count: 14, Neg. LLF: 147.64024088188276
Iteration: 4, Func. Count: 18, Neg. LLF: 146.72740193708734
Iteration: 5, Func. Count: 22, Neg. LLF: 146.5199659267571
Iteration: 6, Func. Count: 26, Neg. LLF: 146.2774002767291
Iteration: 7, Func. Count: 30, Neg. LLF: 146.27087471020133
Iteration: 8, Func. Count: 34, Neg. LLF: 146.2689965910971
Iteration: 9, Func. Count: 38, Neg. LLF: 146.26790783048625
Iteration: 10, Func. Count: 42, Neg. LLF: 146.26777607412333
Iteration: 11, Func. Count: 46, Neg. LLF: 146.26775443356837
Iteration: 12, Func. Count: 49, Neg. LLF: 146.2677544335595
Optimization terminated successfully (Exit mode 0)
Current function value: 146.26775443356837
Iterations: 12
Function evaluations: 49
Gradient evaluations: 12
Iteration: 1, Func. Count: 5, Neg. LLF: 150.66891031462825
Iteration: 2, Func. Count: 10, Neg. LLF: 143.95738318724767
Iteration: 3, Func. Count: 14, Neg. LLF: 144.6702354408623
Iteration: 4, Func. Count: 19, Neg. LLF: 143.1998474097374
Iteration: 5, Func. Count: 24, Neg. LLF: 142.7925362613699
Iteration: 6, Func. Count: 28, Neg. LLF: 142.72674252908178
Iteration: 7, Func. Count: 32, Neg. LLF: 142.7255118121283
Iteration: 8, Func. Count: 36, Neg. LLF: 142.72549879260407
Iteration: 9, Func. Count: 39, Neg. LLF: 142.72549879260487
Optimization terminated successfully (Exit mode 0)
Current function value: 142.72549879260407
Iterations: 9
Function evaluations: 39
Gradient evaluations: 9
Iteration: 1, Func. Count: 6, Neg. LLF: 144.74029287734467
Iteration: 2, Func. Count: 13, Neg. LLF: 146.66124613311763
Iteration: 3, Func. Count: 20, Neg. LLF: 143.1816821648742
Iteration: 4, Func. Count: 25, Neg. LLF: 143.17331111884673
Iteration: 5, Func. Count: 30, Neg. LLF: 143.11715800853523
Iteration: 6, Func. Count: 35, Neg. LLF: 142.74536308767796
Iteration: 7, Func. Count: 40, Neg. LLF: 142.73663549791624
Iteration: 8, Func. Count: 45, Neg. LLF: 142.72567556076
Iteration: 9, Func. Count: 50, Neg. LLF: 142.7255008795436
Iteration: 10, Func. Count: 55, Neg. LLF: 142.72549876664857
Iteration: 11, Func. Count: 59, Neg. LLF: 142.72549878773745
Optimization terminated successfully (Exit mode 0)
Current function value: 142.72549876664857
Iterations: 11
Function evaluations: 59
Gradient evaluations: 11
Iteration: 1, Func. Count: 7, Neg. LLF: 146.9897213292068
Iteration: 2, Func. Count: 15, Neg. LLF: 143.28610857178123
Iteration: 3, Func. Count: 22, Neg. LLF: 143.1757531020431
Iteration: 4, Func. Count: 28, Neg. LLF: 143.15127525341964
Iteration: 5, Func. Count: 34, Neg. LLF: 143.01170148854754
Iteration: 6, Func. Count: 40, Neg. LLF: 142.74360573817836
Iteration: 7, Func. Count: 46, Neg. LLF: 142.732057870282
Iteration: 8, Func. Count: 52, Neg. LLF: 142.72586886607954
Iteration: 9, Func. Count: 58, Neg. LLF: 142.72561066139886
Iteration: 10, Func. Count: 64, Neg. LLF: 142.7255087292905
Iteration: 11, Func. Count: 70, Neg. LLF: 142.7255008709541
Iteration: 12, Func. Count: 76, Neg. LLF: 142.72549944097392
Iteration: 13, Func. Count: 81, Neg. LLF: 142.72549945986012
Optimization terminated successfully (Exit mode 0)
Current function value: 142.72549944097392
Iterations: 13
Function evaluations: 81
Gradient evaluations: 13
Iteration: 1, Func. Count: 8, Neg. LLF: 143.5215034088725
Iteration: 2, Func. Count: 16, Neg. LLF: 143.68391725212345
Iteration: 3, Func. Count: 24, Neg. LLF: 143.2394061703091
Iteration: 4, Func. Count: 32, Neg. LLF: 143.12150080520547
Iteration: 5, Func. Count: 39, Neg. LLF: 143.11502346071424
Iteration: 6, Func. Count: 46, Neg. LLF: 143.103277774298
Iteration: 7, Func. Count: 53, Neg. LLF: 143.06527766790947
Iteration: 8, Func. Count: 60, Neg. LLF: 143.0169158606148
Iteration: 9, Func. Count: 67, Neg. LLF: 142.86702122867817
Iteration: 10, Func. Count: 74, Neg. LLF: 142.75413211299482
Iteration: 11, Func. Count: 81, Neg. LLF: 142.73405023138986
Iteration: 12, Func. Count: 88, Neg. LLF: 142.72586535206645
Iteration: 13, Func. Count: 95, Neg. LLF: 142.7255627233884
Iteration: 14, Func. Count: 102, Neg. LLF: 142.72552254596968
Iteration: 15, Func. Count: 109, Neg. LLF: 142.72550193639304
Iteration: 16, Func. Count: 116, Neg. LLF: 142.72549898366913
Iteration: 17, Func. Count: 122, Neg. LLF: 142.72549899087056
Optimization terminated successfully (Exit mode 0)
Current function value: 142.72549898366913
Iterations: 17
Function evaluations: 122
Gradient evaluations: 17
Iteration: 1, Func. Count: 9, Neg. LLF: 154.64375585334324
Iteration: 2, Func. Count: 19, Neg. LLF: 142.91705988644125
Iteration: 3, Func. Count: 27, Neg. LLF: 143.02799785726052
Iteration: 4, Func. Count: 36, Neg. LLF: 142.85624124044253
Iteration: 5, Func. Count: 44, Neg. LLF: 142.85272717514536
Iteration: 6, Func. Count: 52, Neg. LLF: 142.85010280269503
Iteration: 7, Func. Count: 60, Neg. LLF: 142.83896373534256
Iteration: 8, Func. Count: 68, Neg. LLF: 142.82391858061817
Iteration: 9, Func. Count: 76, Neg. LLF: 142.8008784016268
Iteration: 10, Func. Count: 84, Neg. LLF: 142.77167152211487
Iteration: 11, Func. Count: 92, Neg. LLF: 142.73837981715403
Iteration: 12, Func. Count: 100, Neg. LLF: 142.72852565760735
Iteration: 13, Func. Count: 108, Neg. LLF: 142.72585504112283
Iteration: 14, Func. Count: 116, Neg. LLF: 142.72550760265625
Iteration: 15, Func. Count: 124, Neg. LLF: 142.72549920844338
Iteration: 16, Func. Count: 131, Neg. LLF: 142.72549920994888
Optimization terminated successfully (Exit mode 0)
Current function value: 142.72549920844338
Iterations: 16
Function evaluations: 131
Gradient evaluations: 16
Iteration: 1, Func. Count: 6, Neg. LLF: 148.50414631060718
Iteration: 2, Func. Count: 12, Neg. LLF: 144.06609043363216
Iteration: 3, Func. Count: 17, Neg. LLF: 143.21920398674067
Iteration: 4, Func. Count: 22, Neg. LLF: 143.0576066345449
Iteration: 5, Func. Count: 28, Neg. LLF: 142.74523974437122
Iteration: 6, Func. Count: 33, Neg. LLF: 142.73243259302888
Iteration: 7, Func. Count: 38, Neg. LLF: 142.7263727452327
Iteration: 8, Func. Count: 43, Neg. LLF: 142.72554908631918
Iteration: 9, Func. Count: 48, Neg. LLF: 142.72549915305325
Iteration: 10, Func. Count: 52, Neg. LLF: 142.72549924300245
Optimization terminated successfully (Exit mode 0)
Current function value: 142.72549915305325
Iterations: 10
Function evaluations: 52
Gradient evaluations: 10
Iteration: 1, Func. Count: 7, Neg. LLF: 149.47515690984366
Iteration: 2, Func. Count: 16, Neg. LLF: 146.8533848635976
Iteration: 3, Func. Count: 24, Neg. LLF: 143.18138752565625
Iteration: 4, Func. Count: 30, Neg. LLF: 143.17357528978297
Iteration: 5, Func. Count: 36, Neg. LLF: 143.16296454047995
Iteration: 6, Func. Count: 42, Neg. LLF: 143.09128916093596
Iteration: 7, Func. Count: 48, Neg. LLF: 142.76230754504036
Iteration: 8, Func. Count: 54, Neg. LLF: 142.74603694335073
Iteration: 9, Func. Count: 60, Neg. LLF: 142.72713244530686
Iteration: 10, Func. Count: 66, Neg. LLF: 142.7258662341757
Iteration: 11, Func. Count: 72, Neg. LLF: 142.7256090263578
Iteration: 12, Func. Count: 78, Neg. LLF: 142.72552099672254
Iteration: 13, Func. Count: 84, Neg. LLF: 142.72550004320763
Iteration: 14, Func. Count: 90, Neg. LLF: 142.7254987771005
Iteration: 15, Func. Count: 95, Neg. LLF: 142.72549879820951
Optimization terminated successfully (Exit mode 0)
Current function value: 142.7254987771005
Iterations: 15
Function evaluations: 95
Gradient evaluations: 15
Iteration: 1, Func. Count: 8, Neg. LLF: 156.99914527179038
Iteration: 2, Func. Count: 16, Neg. LLF: 142.91522025783723
Iteration: 3, Func. Count: 23, Neg. LLF: 143.65387931698547
Iteration: 4, Func. Count: 31, Neg. LLF: 142.85867839040935
Iteration: 5, Func. Count: 38, Neg. LLF: 142.8577596485894
Iteration: 6, Func. Count: 45, Neg. LLF: 142.85759055576978
Iteration: 7, Func. Count: 52, Neg. LLF: 142.85695194976114
Iteration: 8, Func. Count: 59, Neg. LLF: 142.85603105713403
Iteration: 9, Func. Count: 66, Neg. LLF: 142.85374554402316
Iteration: 10, Func. Count: 73, Neg. LLF: 142.84901574232896
Iteration: 11, Func. Count: 80, Neg. LLF: 142.84899412665212
Iteration: 12, Func. Count: 86, Neg. LLF: 142.84899410769904
Optimization terminated successfully (Exit mode 0)
Current function value: 142.84899412665212
Iterations: 12
Function evaluations: 86
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 154.03306721439054
Iteration: 2, Func. Count: 18, Neg. LLF: 142.99878377791453
Iteration: 3, Func. Count: 26, Neg. LLF: 142.95814408323136
Iteration: 4, Func. Count: 34, Neg. LLF: 142.88704257931116
Iteration: 5, Func. Count: 42, Neg. LLF: 142.86696849737436
Iteration: 6, Func. Count: 50, Neg. LLF: 142.890878608164
Iteration: 7, Func. Count: 59, Neg. LLF: 142.86276315529415
Iteration: 8, Func. Count: 67, Neg. LLF: 142.862121812197
Iteration: 9, Func. Count: 75, Neg. LLF: 142.86052552964998
Iteration: 10, Func. Count: 83, Neg. LLF: 142.8600548383211
Iteration: 11, Func. Count: 91, Neg. LLF: 142.8588236162158
Iteration: 12, Func. Count: 99, Neg. LLF: 142.85857387383606
Iteration: 13, Func. Count: 107, Neg. LLF: 142.8574013724202
Iteration: 14, Func. Count: 115, Neg. LLF: 142.85538224204012
Iteration: 15, Func. Count: 123, Neg. LLF: 142.85105965946892
Iteration: 16, Func. Count: 131, Neg. LLF: 142.85009297270886
Iteration: 17, Func. Count: 139, Neg. LLF: 142.84915707778543
Iteration: 18, Func. Count: 147, Neg. LLF: 142.84899245037988
Iteration: 19, Func. Count: 155, Neg. LLF: 142.8489917850232
Optimization terminated successfully (Exit mode 0)
Current function value: 142.8489917850232
Iterations: 19
Function evaluations: 155
Gradient evaluations: 19
Iteration: 1, Func. Count: 10, Neg. LLF: 156.49275000525498
Iteration: 2, Func. Count: 20, Neg. LLF: 143.10288906282832
Iteration: 3, Func. Count: 29, Neg. LLF: 143.03919319330208
Iteration: 4, Func. Count: 38, Neg. LLF: 143.10481572061127
Iteration: 5, Func. Count: 48, Neg. LLF: 142.99249064437836
Iteration: 6, Func. Count: 58, Neg. LLF: 143.1015542363859
Iteration: 7, Func. Count: 68, Neg. LLF: 142.9303430211663
Iteration: 8, Func. Count: 77, Neg. LLF: 142.9299209443048
Iteration: 9, Func. Count: 86, Neg. LLF: 142.9259941604706
Iteration: 10, Func. Count: 95, Neg. LLF: 142.89335719081373
Iteration: 11, Func. Count: 104, Neg. LLF: 142.83240371834185
Iteration: 12, Func. Count: 113, Neg. LLF: 143.15441749093725
Iteration: 13, Func. Count: 123, Neg. LLF: 142.72419270629644
Iteration: 14, Func. Count: 133, Neg. LLF: 142.64077057847553
Iteration: 15, Func. Count: 142, Neg. LLF: 142.63441518320582
Iteration: 16, Func. Count: 151, Neg. LLF: 142.63432297009211
Iteration: 17, Func. Count: 160, Neg. LLF: 142.63432224856635
Optimization terminated successfully (Exit mode 0)
Current function value: 142.63432224856635
Iterations: 17
Function evaluations: 160
Gradient evaluations: 17
Iteration: 1, Func. Count: 7, Neg. LLF: 147.7313955919577
Iteration: 2, Func. Count: 14, Neg. LLF: 144.20746388876526
Iteration: 3, Func. Count: 20, Neg. LLF: 143.72753170877283
Iteration: 4, Func. Count: 26, Neg. LLF: 142.813723508528
Iteration: 5, Func. Count: 32, Neg. LLF: 142.79777190544343
Iteration: 6, Func. Count: 39, Neg. LLF: 142.7268273629617
Iteration: 7, Func. Count: 45, Neg. LLF: 142.7262611235701
Iteration: 8, Func. Count: 51, Neg. LLF: 142.72551181662823
Iteration: 9, Func. Count: 57, Neg. LLF: 142.72549989713426
Iteration: 10, Func. Count: 63, Neg. LLF: 142.72549875144463
Iteration: 11, Func. Count: 68, Neg. LLF: 142.72549882624875
Optimization terminated successfully (Exit mode 0)
Current function value: 142.72549875144463
Iterations: 11
Function evaluations: 68
Gradient evaluations: 11
Iteration: 1, Func. Count: 8, Neg. LLF: 149.47608856868837
Iteration: 2, Func. Count: 18, Neg. LLF: 146.86030935713868
Iteration: 3, Func. Count: 27, Neg. LLF: 143.18135238977308
Iteration: 4, Func. Count: 34, Neg. LLF: 143.17381231823092
Iteration: 5, Func. Count: 41, Neg. LLF: 143.16494452968382
Iteration: 6, Func. Count: 48, Neg. LLF: 143.11426023707014
Iteration: 7, Func. Count: 55, Neg. LLF: 142.75491921751902
Iteration: 8, Func. Count: 62, Neg. LLF: 142.73972312099536
Iteration: 9, Func. Count: 69, Neg. LLF: 142.72658351599537
Iteration: 10, Func. Count: 76, Neg. LLF: 142.72573731336917
Iteration: 11, Func. Count: 83, Neg. LLF: 142.7255646133958
Iteration: 12, Func. Count: 90, Neg. LLF: 142.72550901941034
Iteration: 13, Func. Count: 97, Neg. LLF: 142.7254992038788
Iteration: 14, Func. Count: 103, Neg. LLF: 142.72549922501858
Optimization terminated successfully (Exit mode 0)
Current function value: 142.7254992038788
Iterations: 14
Function evaluations: 103
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 157.1126896849062
Iteration: 2, Func. Count: 18, Neg. LLF: 142.9099278329695
Iteration: 3, Func. Count: 26, Neg. LLF: 144.5930996932549
Iteration: 4, Func. Count: 35, Neg. LLF: 142.85723858138422
Iteration: 5, Func. Count: 43, Neg. LLF: 142.8569650633632
Iteration: 6, Func. Count: 51, Neg. LLF: 142.8568211627454
Iteration: 7, Func. Count: 59, Neg. LLF: 142.8560496403999
Iteration: 8, Func. Count: 67, Neg. LLF: 142.85481928758213
Iteration: 9, Func. Count: 75, Neg. LLF: 142.8504467391649
Iteration: 10, Func. Count: 83, Neg. LLF: 142.8493397738129
Iteration: 11, Func. Count: 91, Neg. LLF: 142.84912864413909
Iteration: 12, Func. Count: 99, Neg. LLF: 142.84899633272664
Iteration: 13, Func. Count: 107, Neg. LLF: 142.84899191568306
Iteration: 14, Func. Count: 114, Neg. LLF: 142.8489919006067
Optimization terminated successfully (Exit mode 0)
Current function value: 142.84899191568306
Iterations: 14
Function evaluations: 114
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 154.13311767919416
Iteration: 2, Func. Count: 20, Neg. LLF: 143.0095020252786
Iteration: 3, Func. Count: 29, Neg. LLF: 142.97225281706588
Iteration: 4, Func. Count: 38, Neg. LLF: 142.89378564284945
Iteration: 5, Func. Count: 47, Neg. LLF: 142.87369188621753
Iteration: 6, Func. Count: 56, Neg. LLF: 142.87631733715077
Iteration: 7, Func. Count: 66, Neg. LLF: 142.8627647284796
Iteration: 8, Func. Count: 75, Neg. LLF: 142.862262565044
Iteration: 9, Func. Count: 84, Neg. LLF: 142.8606289002548
Iteration: 10, Func. Count: 93, Neg. LLF: 142.86039318228802
Iteration: 11, Func. Count: 102, Neg. LLF: 142.8603571989446
Iteration: 12, Func. Count: 111, Neg. LLF: 142.8603351297757
Iteration: 13, Func. Count: 120, Neg. LLF: 142.8598402512009
Iteration: 14, Func. Count: 129, Neg. LLF: 142.85970954227432
Iteration: 15, Func. Count: 138, Neg. LLF: 142.85905080166873
Iteration: 16, Func. Count: 147, Neg. LLF: 142.85623606776102
Iteration: 17, Func. Count: 156, Neg. LLF: 142.84902334572138
Iteration: 18, Func. Count: 165, Neg. LLF: 142.84966764728523
Iteration: 19, Func. Count: 175, Neg. LLF: 142.84899452526903
Optimization terminated successfully (Exit mode 0)
Current function value: 142.84899452526903
Iterations: 19
Function evaluations: 175
Gradient evaluations: 19
Iteration: 1, Func. Count: 11, Neg. LLF: 156.61044185379592
Iteration: 2, Func. Count: 22, Neg. LLF: 143.10857445942486
Iteration: 3, Func. Count: 32, Neg. LLF: 143.04668130730417
Iteration: 4, Func. Count: 42, Neg. LLF: 143.17242076063565
Iteration: 5, Func. Count: 53, Neg. LLF: 143.00507016773864
Iteration: 6, Func. Count: 64, Neg. LLF: 143.01681508614504
Iteration: 7, Func. Count: 75, Neg. LLF: 142.93046560371937
Iteration: 8, Func. Count: 85, Neg. LLF: 142.92956293922234
Iteration: 9, Func. Count: 95, Neg. LLF: 142.92889752512517
Iteration: 10, Func. Count: 105, Neg. LLF: 142.92383562544472
Iteration: 11, Func. Count: 115, Neg. LLF: 142.86370621077074
Iteration: 12, Func. Count: 125, Neg. LLF: 142.885156638618
Iteration: 13, Func. Count: 136, Neg. LLF: 143.8927165069576
Iteration: 14, Func. Count: 147, Neg. LLF: 142.70185744849982
Iteration: 15, Func. Count: 157, Neg. LLF: 142.6507584859882
Iteration: 16, Func. Count: 167, Neg. LLF: 142.64749960910535
Iteration: 17, Func. Count: 178, Neg. LLF: 142.6344455082739
Iteration: 18, Func. Count: 188, Neg. LLF: 142.6343303872463
Iteration: 19, Func. Count: 198, Neg. LLF: 142.63432235738082
Iteration: 20, Func. Count: 207, Neg. LLF: 142.6343223251644
Optimization terminated successfully (Exit mode 0)
Current function value: 142.63432235738082
Iterations: 20
Function evaluations: 207
Gradient evaluations: 20
Iteration: 1, Func. Count: 8, Neg. LLF: 148.1756839559588
Iteration: 2, Func. Count: 16, Neg. LLF: 147.25989062933627
Iteration: 3, Func. Count: 25, Neg. LLF: 143.84661082474523
Iteration: 4, Func. Count: 32, Neg. LLF: 142.99810144866655
Iteration: 5, Func. Count: 39, Neg. LLF: 142.79743859362864
Iteration: 6, Func. Count: 46, Neg. LLF: 142.7396152064202
Iteration: 7, Func. Count: 53, Neg. LLF: 142.7284965401802
Iteration: 8, Func. Count: 60, Neg. LLF: 142.7267916630155
Iteration: 9, Func. Count: 67, Neg. LLF: 142.7260515782784
Iteration: 10, Func. Count: 74, Neg. LLF: 142.7255090301191
Iteration: 11, Func. Count: 81, Neg. LLF: 142.72549900621624
Iteration: 12, Func. Count: 87, Neg. LLF: 142.7254990365005
Optimization terminated successfully (Exit mode 0)
Current function value: 142.72549900621624
Iterations: 12
Function evaluations: 87
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 149.46899666622957
Iteration: 2, Func. Count: 20, Neg. LLF: 146.85499541438102
Iteration: 3, Func. Count: 30, Neg. LLF: 143.18176919182036
Iteration: 4, Func. Count: 38, Neg. LLF: 143.1739621490015
Iteration: 5, Func. Count: 46, Neg. LLF: 143.16584998557613
Iteration: 6, Func. Count: 54, Neg. LLF: 143.12056700383155
Iteration: 7, Func. Count: 62, Neg. LLF: 142.78442293944792
Iteration: 8, Func. Count: 70, Neg. LLF: 142.74841101810264
Iteration: 9, Func. Count: 78, Neg. LLF: 142.73142114306643
Iteration: 10, Func. Count: 86, Neg. LLF: 142.72601322424342
Iteration: 11, Func. Count: 94, Neg. LLF: 142.72557345384067
Iteration: 12, Func. Count: 102, Neg. LLF: 142.7255153682826
Iteration: 13, Func. Count: 110, Neg. LLF: 142.72550233156582
Iteration: 14, Func. Count: 118, Neg. LLF: 142.72549922421925
Iteration: 15, Func. Count: 125, Neg. LLF: 142.72549924533948
Optimization terminated successfully (Exit mode 0)
Current function value: 142.72549922421925
Iterations: 15
Function evaluations: 125
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 157.129634310064
Iteration: 2, Func. Count: 20, Neg. LLF: 142.90775695284748
Iteration: 3, Func. Count: 29, Neg. LLF: 144.56000728365666
Iteration: 4, Func. Count: 39, Neg. LLF: 142.85720759101508
Iteration: 5, Func. Count: 48, Neg. LLF: 142.85694290727162
Iteration: 6, Func. Count: 57, Neg. LLF: 142.85679971665678
Iteration: 7, Func. Count: 66, Neg. LLF: 142.85605258263982
Iteration: 8, Func. Count: 75, Neg. LLF: 142.85485063863842
Iteration: 9, Func. Count: 84, Neg. LLF: 142.85064390179716
Iteration: 10, Func. Count: 93, Neg. LLF: 142.84935600484923
Iteration: 11, Func. Count: 102, Neg. LLF: 142.8491386420934
Iteration: 12, Func. Count: 111, Neg. LLF: 142.848993845246
Iteration: 13, Func. Count: 120, Neg. LLF: 142.84899177315518
Iteration: 14, Func. Count: 128, Neg. LLF: 142.8489917581944
Optimization terminated successfully (Exit mode 0)
Current function value: 142.84899177315518
Iterations: 14
Function evaluations: 128
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 154.21686464423516
Iteration: 2, Func. Count: 22, Neg. LLF: 142.97549804343797
Iteration: 3, Func. Count: 32, Neg. LLF: 142.96544642708838
Iteration: 4, Func. Count: 43, Neg. LLF: 142.87031495653036
Iteration: 5, Func. Count: 53, Neg. LLF: 142.90762427854688
Iteration: 6, Func. Count: 64, Neg. LLF: 142.86291223866897
Iteration: 7, Func. Count: 74, Neg. LLF: 142.86218498080498
Iteration: 8, Func. Count: 84, Neg. LLF: 142.86192333091915
Iteration: 9, Func. Count: 94, Neg. LLF: 142.86063455363845
Iteration: 10, Func. Count: 104, Neg. LLF: 142.8587178008337
Iteration: 11, Func. Count: 114, Neg. LLF: 142.85581927985552
Iteration: 12, Func. Count: 124, Neg. LLF: 142.8552542163446
Iteration: 13, Func. Count: 134, Neg. LLF: 142.85092563278192
Iteration: 14, Func. Count: 144, Neg. LLF: 142.85026614854257
Iteration: 15, Func. Count: 154, Neg. LLF: 142.84921411423483
Iteration: 16, Func. Count: 164, Neg. LLF: 142.84907572349417
Iteration: 17, Func. Count: 174, Neg. LLF: 142.8490050003559
Iteration: 18, Func. Count: 184, Neg. LLF: 152.34218056232888
Optimization terminated successfully (Exit mode 0)
Current function value: 142.84900498587743
Iterations: 18
Function evaluations: 194
Gradient evaluations: 18
Iteration: 1, Func. Count: 12, Neg. LLF: 156.6105355485591
Iteration: 2, Func. Count: 24, Neg. LLF: 143.10633144796998
Iteration: 3, Func. Count: 35, Neg. LLF: 143.04083342876737
Iteration: 4, Func. Count: 46, Neg. LLF: 143.14727664925553
Iteration: 5, Func. Count: 58, Neg. LLF: 142.99897815364497
Iteration: 6, Func. Count: 70, Neg. LLF: 143.12743821294563
Iteration: 7, Func. Count: 82, Neg. LLF: 142.93030155408618
Iteration: 8, Func. Count: 93, Neg. LLF: 142.9298777431071
Iteration: 9, Func. Count: 104, Neg. LLF: 142.9257140757723
Iteration: 10, Func. Count: 115, Neg. LLF: 142.85407065684984
Iteration: 11, Func. Count: 126, Neg. LLF: 142.65915272268796
Iteration: 12, Func. Count: 137, Neg. LLF: 142.67836619975793
Iteration: 13, Func. Count: 149, Neg. LLF: 142.6347229178973
Iteration: 14, Func. Count: 160, Neg. LLF: 142.63415137375551
Iteration: 15, Func. Count: 171, Neg. LLF: 142.6343094117527
Iteration: 16, Func. Count: 182, Neg. LLF: 142.6345642858911
Iteration: 17, Func. Count: 194, Neg. LLF: 142.6346314301826
Iteration: 18, Func. Count: 206, Neg. LLF: 142.63460921790832
Iteration: 19, Func. Count: 218, Neg. LLF: 142.63432274555117
Iteration: 20, Func. Count: 230, Neg. LLF: 142.63432222362556
Iteration: 21, Func. Count: 240, Neg. LLF: 142.63432219153304
Optimization terminated successfully (Exit mode 0)
Current function value: 142.63432222362556
Iterations: 22
Function evaluations: 240
Gradient evaluations: 21
Iteration: 1, Func. Count: 5, Neg. LLF: 145.30004143819778
Iteration: 2, Func. Count: 10, Neg. LLF: 144.05070000663792
Iteration: 3, Func. Count: 15, Neg. LLF: 142.7681202890117
Iteration: 4, Func. Count: 19, Neg. LLF: 142.7264932233038
Iteration: 5, Func. Count: 23, Neg. LLF: 142.71141699731646
Iteration: 6, Func. Count: 27, Neg. LLF: 142.7063514194213
Iteration: 7, Func. Count: 31, Neg. LLF: 142.70622708771612
Iteration: 8, Func. Count: 35, Neg. LLF: 142.7062235662662
Iteration: 9, Func. Count: 38, Neg. LLF: 142.7062235662902
Optimization terminated successfully (Exit mode 0)
Current function value: 142.7062235662662
Iterations: 9
Function evaluations: 38
Gradient evaluations: 9
Iteration: 1, Func. Count: 6, Neg. LLF: 164.6620505078826
Iteration: 2, Func. Count: 13, Neg. LLF: 143.42540939508928
Iteration: 3, Func. Count: 19, Neg. LLF: 142.78728120068627
Iteration: 4, Func. Count: 25, Neg. LLF: 142.78690219701429
Iteration: 5, Func. Count: 30, Neg. LLF: 142.7868861798628
Iteration: 6, Func. Count: 35, Neg. LLF: 142.7867977455537
Iteration: 7, Func. Count: 40, Neg. LLF: 142.78633771988436
Iteration: 8, Func. Count: 45, Neg. LLF: 142.7830856136236
Iteration: 9, Func. Count: 50, Neg. LLF: 142.70718811356633
Iteration: 10, Func. Count: 55, Neg. LLF: 142.70635205494253
Iteration: 11, Func. Count: 60, Neg. LLF: 142.70622920869758
Iteration: 12, Func. Count: 65, Neg. LLF: 142.70622438866238
Iteration: 13, Func. Count: 70, Neg. LLF: 142.706223591706
Optimization terminated successfully (Exit mode 0)
Current function value: 142.706223591706
Iterations: 13
Function evaluations: 70
Gradient evaluations: 13
Iteration: 1, Func. Count: 7, Neg. LLF: 150.8870313193733
Iteration: 2, Func. Count: 15, Neg. LLF: 142.74170077111322
Iteration: 3, Func. Count: 22, Neg. LLF: 142.74370074276757
Iteration: 4, Func. Count: 29, Neg. LLF: 142.7260987534236
Iteration: 5, Func. Count: 35, Neg. LLF: 142.72319463220248
Iteration: 6, Func. Count: 41, Neg. LLF: 142.7120932807966
Iteration: 7, Func. Count: 47, Neg. LLF: 142.70373084274368
Iteration: 8, Func. Count: 53, Neg. LLF: 142.69698673011584
Iteration: 9, Func. Count: 59, Neg. LLF: 142.69404419953878
Iteration: 10, Func. Count: 65, Neg. LLF: 142.69399866846976
Iteration: 11, Func. Count: 71, Neg. LLF: 142.69399649783054
Iteration: 12, Func. Count: 76, Neg. LLF: 142.69399649776847
Optimization terminated successfully (Exit mode 0)
Current function value: 142.69399649783054
Iterations: 12
Function evaluations: 76
Gradient evaluations: 12
Iteration: 1, Func. Count: 8, Neg. LLF: 143.9480220384497
Iteration: 2, Func. Count: 17, Neg. LLF: 143.04490894921045
Iteration: 3, Func. Count: 25, Neg. LLF: 142.75843074861635
Iteration: 4, Func. Count: 33, Neg. LLF: 142.61228483895212
Iteration: 5, Func. Count: 40, Neg. LLF: 142.61049721261085
Iteration: 6, Func. Count: 47, Neg. LLF: 142.6069955912845
Iteration: 7, Func. Count: 54, Neg. LLF: 142.58963908768266
Iteration: 8, Func. Count: 61, Neg. LLF: 142.57897560890578
Iteration: 9, Func. Count: 68, Neg. LLF: 142.57552051482443
Iteration: 10, Func. Count: 75, Neg. LLF: 142.57530746877595
Iteration: 11, Func. Count: 82, Neg. LLF: 142.5752998713209
Iteration: 12, Func. Count: 88, Neg. LLF: 142.57529987135803
Optimization terminated successfully (Exit mode 0)
Current function value: 142.5752998713209
Iterations: 12
Function evaluations: 88
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 160.16704308073847
Iteration: 2, Func. Count: 19, Neg. LLF: 143.90089554809248
Iteration: 3, Func. Count: 28, Neg. LLF: 142.76090640253005
Iteration: 4, Func. Count: 37, Neg. LLF: 142.6126378508369
Iteration: 5, Func. Count: 45, Neg. LLF: 142.61325061856544
Iteration: 6, Func. Count: 54, Neg. LLF: 142.60800362208965
Iteration: 7, Func. Count: 62, Neg. LLF: 142.6026151087629
Iteration: 8, Func. Count: 70, Neg. LLF: 142.58887558783675
Iteration: 9, Func. Count: 78, Neg. LLF: 142.57914253351586
Iteration: 10, Func. Count: 86, Neg. LLF: 142.5755217951886
Iteration: 11, Func. Count: 94, Neg. LLF: 142.57530922659322
Iteration: 12, Func. Count: 102, Neg. LLF: 142.5753011626305
Iteration: 13, Func. Count: 110, Neg. LLF: 142.57530005605855
Iteration: 14, Func. Count: 117, Neg. LLF: 142.57530007866185
Optimization terminated successfully (Exit mode 0)
Current function value: 142.57530005605855
Iterations: 14
Function evaluations: 117
Gradient evaluations: 14
Iteration: 1, Func. Count: 6, Neg. LLF: 145.39823221067354
Iteration: 2, Func. Count: 12, Neg. LLF: 148.54835008232325
Iteration: 3, Func. Count: 18, Neg. LLF: 143.72799436383576
Iteration: 4, Func. Count: 24, Neg. LLF: 142.98494095900176
Iteration: 5, Func. Count: 29, Neg. LLF: 142.7071293107687
Iteration: 6, Func. Count: 34, Neg. LLF: 142.65163204470716
Iteration: 7, Func. Count: 39, Neg. LLF: 142.63287605576355
Iteration: 8, Func. Count: 44, Neg. LLF: 142.63227650440064
Iteration: 9, Func. Count: 49, Neg. LLF: 142.6321730773368
Iteration: 10, Func. Count: 54, Neg. LLF: 142.63215253539465
Iteration: 11, Func. Count: 58, Neg. LLF: 142.63215253540898
Optimization terminated successfully (Exit mode 0)
Current function value: 142.63215253539465
Iterations: 11
Function evaluations: 58
Gradient evaluations: 11
Iteration: 1, Func. Count: 7, Neg. LLF: 159.5484349174524
Iteration: 2, Func. Count: 15, Neg. LLF: 143.14994670870576
Iteration: 3, Func. Count: 22, Neg. LLF: 143.27121657638844
Iteration: 4, Func. Count: 29, Neg. LLF: 142.7705408019752
Iteration: 5, Func. Count: 35, Neg. LLF: 142.76913690150536
Iteration: 6, Func. Count: 41, Neg. LLF: 142.76690252324596
Iteration: 7, Func. Count: 47, Neg. LLF: 142.75216251003962
Iteration: 8, Func. Count: 53, Neg. LLF: 142.7531099173974
Iteration: 9, Func. Count: 60, Neg. LLF: 142.78942471305436
Iteration: 10, Func. Count: 67, Neg. LLF: 142.8382812963266
Iteration: 11, Func. Count: 74, Neg. LLF: 142.80804519782112
Iteration: 12, Func. Count: 81, Neg. LLF: 142.4733044018759
Iteration: 13, Func. Count: 87, Neg. LLF: 142.44676124877046
Iteration: 14, Func. Count: 94, Neg. LLF: 142.32805474274886
Iteration: 15, Func. Count: 100, Neg. LLF: 142.2749193280824
Iteration: 16, Func. Count: 106, Neg. LLF: 142.27367149203513
Iteration: 17, Func. Count: 112, Neg. LLF: 142.27346136018548
Iteration: 18, Func. Count: 118, Neg. LLF: 142.27345921052805
Iteration: 19, Func. Count: 123, Neg. LLF: 142.273459210499
Optimization terminated successfully (Exit mode 0)
Current function value: 142.27345921052805
Iterations: 19
Function evaluations: 123
Gradient evaluations: 19
Iteration: 1, Func. Count: 8, Neg. LLF: 153.14097418897313
Iteration: 2, Func. Count: 17, Neg. LLF: 147.62183460153815
Iteration: 3, Func. Count: 25, Neg. LLF: 142.9208676246485
Iteration: 4, Func. Count: 33, Neg. LLF: 142.69037477642695
Iteration: 5, Func. Count: 41, Neg. LLF: 142.69264056858628
Iteration: 6, Func. Count: 49, Neg. LLF: 142.6867287838784
Iteration: 7, Func. Count: 56, Neg. LLF: 142.68375991862254
Iteration: 8, Func. Count: 63, Neg. LLF: 142.64322740412587
Iteration: 9, Func. Count: 70, Neg. LLF: 142.54498372499629
Iteration: 10, Func. Count: 77, Neg. LLF: 142.7142484947685
Iteration: 11, Func. Count: 85, Neg. LLF: 142.42790649376497
Iteration: 12, Func. Count: 92, Neg. LLF: 142.31685004623733
Iteration: 13, Func. Count: 99, Neg. LLF: 142.2870862417472
Iteration: 14, Func. Count: 106, Neg. LLF: 142.27751086129152
Iteration: 15, Func. Count: 113, Neg. LLF: 142.2736513321005
Iteration: 16, Func. Count: 120, Neg. LLF: 142.27348214786886
Iteration: 17, Func. Count: 127, Neg. LLF: 142.27345921117072
Iteration: 18, Func. Count: 133, Neg. LLF: 142.2734592226667
Optimization terminated successfully (Exit mode 0)
Current function value: 142.27345921117072
Iterations: 18
Function evaluations: 133
Gradient evaluations: 18
Iteration: 1, Func. Count: 9, Neg. LLF: 147.30902078905766
Iteration: 2, Func. Count: 18, Neg. LLF: 149.67611896543522
Iteration: 3, Func. Count: 27, Neg. LLF: 142.61495131042065
Iteration: 4, Func. Count: 36, Neg. LLF: 142.7973194695816
Iteration: 5, Func. Count: 45, Neg. LLF: 142.5732071855194
Iteration: 6, Func. Count: 54, Neg. LLF: 142.47278087696907
Iteration: 7, Func. Count: 62, Neg. LLF: 142.46930741654353
Iteration: 8, Func. Count: 70, Neg. LLF: 142.4617919772871
Iteration: 9, Func. Count: 78, Neg. LLF: 142.43948542890712
Iteration: 10, Func. Count: 86, Neg. LLF: 142.4286071972469
Iteration: 11, Func. Count: 94, Neg. LLF: 142.42183128509362
Iteration: 12, Func. Count: 102, Neg. LLF: 142.42167201882998
Iteration: 13, Func. Count: 110, Neg. LLF: 142.42160641780742
Iteration: 14, Func. Count: 118, Neg. LLF: 142.42160537401497
Iteration: 15, Func. Count: 125, Neg. LLF: 142.4216053740129
Optimization terminated successfully (Exit mode 0)
Current function value: 142.42160537401497
Iterations: 15
Function evaluations: 125
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 155.00061634456904
Iteration: 2, Func. Count: 21, Neg. LLF: 142.7856229868375
Iteration: 3, Func. Count: 31, Neg. LLF: 142.62644444735267
Iteration: 4, Func. Count: 41, Neg. LLF: 142.56857480080836
Iteration: 5, Func. Count: 51, Neg. LLF: 143.28336683352856
Iteration: 6, Func. Count: 61, Neg. LLF: 142.48323308380665
Iteration: 7, Func. Count: 70, Neg. LLF: 142.47344236670196
Iteration: 8, Func. Count: 79, Neg. LLF: 142.46989672017398
Iteration: 9, Func. Count: 88, Neg. LLF: 142.46725062322795
Iteration: 10, Func. Count: 97, Neg. LLF: 142.45051600307093
Iteration: 11, Func. Count: 106, Neg. LLF: 142.42586782362903
Iteration: 12, Func. Count: 115, Neg. LLF: 142.42263972179134
Iteration: 13, Func. Count: 124, Neg. LLF: 142.4218660974218
Iteration: 14, Func. Count: 133, Neg. LLF: 142.42164512584878
Iteration: 15, Func. Count: 142, Neg. LLF: 142.42160688527795
Iteration: 16, Func. Count: 151, Neg. LLF: 142.4216054788384
Iteration: 17, Func. Count: 159, Neg. LLF: 142.42160552116854
Optimization terminated successfully (Exit mode 0)
Current function value: 142.4216054788384
Iterations: 17
Function evaluations: 159
Gradient evaluations: 17
Iteration: 1, Func. Count: 7, Neg. LLF: 145.35880841828055
Iteration: 2, Func. Count: 14, Neg. LLF: 146.9973281914346
Iteration: 3, Func. Count: 21, Neg. LLF: 143.01929612874403
Iteration: 4, Func. Count: 27, Neg. LLF: 143.01973309594308
Iteration: 5, Func. Count: 34, Neg. LLF: 142.66633338510476
Iteration: 6, Func. Count: 40, Neg. LLF: 142.63628665852826
Iteration: 7, Func. Count: 46, Neg. LLF: 142.63241572706534
Iteration: 8, Func. Count: 52, Neg. LLF: 142.63215286625672
Iteration: 9, Func. Count: 58, Neg. LLF: 142.6321522085376
Optimization terminated successfully (Exit mode 0)
Current function value: 142.6321522085376
Iterations: 9
Function evaluations: 58
Gradient evaluations: 9
Iteration: 1, Func. Count: 8, Neg. LLF: 159.61553728889794
Iteration: 2, Func. Count: 17, Neg. LLF: 143.1462558775393
Iteration: 3, Func. Count: 25, Neg. LLF: 143.2268790431622
Iteration: 4, Func. Count: 33, Neg. LLF: 142.77011846748917
Iteration: 5, Func. Count: 40, Neg. LLF: 142.76904420877253
Iteration: 6, Func. Count: 47, Neg. LLF: 142.75893282772182
Iteration: 7, Func. Count: 54, Neg. LLF: 143.88655933219556
Iteration: 8, Func. Count: 62, Neg. LLF: 144.69478916432564
Iteration: 9, Func. Count: 70, Neg. LLF: 144.33460714814893
Iteration: 10, Func. Count: 78, Neg. LLF: 142.7535297514888
Iteration: 11, Func. Count: 86, Neg. LLF: 142.6509997762492
Iteration: 12, Func. Count: 93, Neg. LLF: 142.56079962958123
Iteration: 13, Func. Count: 100, Neg. LLF: 142.56918554938662
Iteration: 14, Func. Count: 108, Neg. LLF: 142.28459531475656
Iteration: 15, Func. Count: 115, Neg. LLF: 142.28005725514618
Iteration: 16, Func. Count: 122, Neg. LLF: 142.27355903757743
Iteration: 17, Func. Count: 129, Neg. LLF: 142.2734748101166
Iteration: 18, Func. Count: 136, Neg. LLF: 142.27345920969748
Iteration: 19, Func. Count: 142, Neg. LLF: 142.2734592096815
Optimization terminated successfully (Exit mode 0)
Current function value: 142.27345920969748
Iterations: 19
Function evaluations: 142
Gradient evaluations: 19
Iteration: 1, Func. Count: 9, Neg. LLF: 153.06859818520016
Iteration: 2, Func. Count: 19, Neg. LLF: 147.70989175000324
Iteration: 3, Func. Count: 28, Neg. LLF: 142.9145539096822
Iteration: 4, Func. Count: 37, Neg. LLF: 142.69047127667707
Iteration: 5, Func. Count: 45, Neg. LLF: 142.68967287891334
Iteration: 6, Func. Count: 54, Neg. LLF: 142.68627463701907
Iteration: 7, Func. Count: 62, Neg. LLF: 142.68525007017678
Iteration: 8, Func. Count: 70, Neg. LLF: 142.6806272635765
Iteration: 9, Func. Count: 78, Neg. LLF: 142.61239289760329
Iteration: 10, Func. Count: 86, Neg. LLF: 142.4079088069901
Iteration: 11, Func. Count: 94, Neg. LLF: 142.61033549389288
Iteration: 12, Func. Count: 103, Neg. LLF: 142.34813465895053
Iteration: 13, Func. Count: 111, Neg. LLF: 142.29346290106125
Iteration: 14, Func. Count: 119, Neg. LLF: 142.27362536677563
Iteration: 15, Func. Count: 127, Neg. LLF: 142.27346320268703
Iteration: 16, Func. Count: 135, Neg. LLF: 142.27345934615153
Iteration: 17, Func. Count: 142, Neg. LLF: 142.27345935763614
Optimization terminated successfully (Exit mode 0)
Current function value: 142.27345934615153
Iterations: 17
Function evaluations: 142
Gradient evaluations: 17
Iteration: 1, Func. Count: 10, Neg. LLF: 150.4839748302337
Iteration: 2, Func. Count: 21, Neg. LLF: 149.67083161498496
Iteration: 3, Func. Count: 31, Neg. LLF: 142.6546706169151
Iteration: 4, Func. Count: 41, Neg. LLF: 142.6890173195573
Iteration: 5, Func. Count: 51, Neg. LLF: 142.48666287090904
Iteration: 6, Func. Count: 60, Neg. LLF: 142.47910862366643
Iteration: 7, Func. Count: 69, Neg. LLF: 142.48822765089471
Iteration: 8, Func. Count: 79, Neg. LLF: 142.46847112037938
Iteration: 9, Func. Count: 88, Neg. LLF: 142.46531449644917
Iteration: 10, Func. Count: 97, Neg. LLF: 142.44713856835236
Iteration: 11, Func. Count: 106, Neg. LLF: 142.4292728217766
Iteration: 12, Func. Count: 115, Neg. LLF: 142.4231195828703
Iteration: 13, Func. Count: 124, Neg. LLF: 142.42201619316796
Iteration: 14, Func. Count: 133, Neg. LLF: 142.4216210530085
Iteration: 15, Func. Count: 142, Neg. LLF: 142.42160557224452
Iteration: 16, Func. Count: 150, Neg. LLF: 142.4216055722105
Optimization terminated successfully (Exit mode 0)
Current function value: 142.42160557224452
Iterations: 16
Function evaluations: 150
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 154.89764026364634
Iteration: 2, Func. Count: 23, Neg. LLF: 142.78309225286543
Iteration: 3, Func. Count: 34, Neg. LLF: 142.62910643534354
Iteration: 4, Func. Count: 45, Neg. LLF: 142.49227940445056
Iteration: 5, Func. Count: 55, Neg. LLF: 142.7169104313209
Iteration: 6, Func. Count: 66, Neg. LLF: 142.56555306900535
Iteration: 7, Func. Count: 77, Neg. LLF: 142.47849532471463
Iteration: 8, Func. Count: 88, Neg. LLF: 142.469936788202
Iteration: 9, Func. Count: 98, Neg. LLF: 142.4649795977348
Iteration: 10, Func. Count: 108, Neg. LLF: 142.4444526839458
Iteration: 11, Func. Count: 118, Neg. LLF: 142.43082460603867
Iteration: 12, Func. Count: 128, Neg. LLF: 142.42227328262572
Iteration: 13, Func. Count: 138, Neg. LLF: 142.42176271810635
Iteration: 14, Func. Count: 148, Neg. LLF: 142.42160630932855
Iteration: 15, Func. Count: 158, Neg. LLF: 142.42160547704967
Optimization terminated successfully (Exit mode 0)
Current function value: 142.42160547704967
Iterations: 15
Function evaluations: 158
Gradient evaluations: 15
Iteration: 1, Func. Count: 8, Neg. LLF: 145.49544411373577
Iteration: 2, Func. Count: 16, Neg. LLF: 146.91093853537387
Iteration: 3, Func. Count: 25, Neg. LLF: 143.40752283372845
Iteration: 4, Func. Count: 32, Neg. LLF: 143.06294997846595
Iteration: 5, Func. Count: 39, Neg. LLF: 142.80381701498868
Iteration: 6, Func. Count: 46, Neg. LLF: 142.6876743792854
Iteration: 7, Func. Count: 53, Neg. LLF: 142.64069188140832
Iteration: 8, Func. Count: 60, Neg. LLF: 142.63298959002165
Iteration: 9, Func. Count: 67, Neg. LLF: 142.6323861831172
Iteration: 10, Func. Count: 74, Neg. LLF: 142.6321819809913
Iteration: 11, Func. Count: 81, Neg. LLF: 142.63215361198482
Iteration: 12, Func. Count: 88, Neg. LLF: 142.63215222090344
Iteration: 13, Func. Count: 94, Neg. LLF: 142.63215228246054
Optimization terminated successfully (Exit mode 0)
Current function value: 142.63215222090344
Iterations: 13
Function evaluations: 94
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 159.546475130912
Iteration: 2, Func. Count: 19, Neg. LLF: 143.1435311095564
Iteration: 3, Func. Count: 28, Neg. LLF: 143.12693896798112
Iteration: 4, Func. Count: 37, Neg. LLF: 142.77007898562343
Iteration: 5, Func. Count: 45, Neg. LLF: 142.76900078077819
Iteration: 6, Func. Count: 53, Neg. LLF: 142.75904536202628
Iteration: 7, Func. Count: 61, Neg. LLF: 142.5232996392131
Iteration: 8, Func. Count: 69, Neg. LLF: 143.09624079779132
Iteration: 9, Func. Count: 78, Neg. LLF: 142.46828988780962
Iteration: 10, Func. Count: 87, Neg. LLF: 142.27861364794816
Iteration: 11, Func. Count: 95, Neg. LLF: 143.4767061869149
Iteration: 12, Func. Count: 104, Neg. LLF: 142.27368381127818
Iteration: 13, Func. Count: 112, Neg. LLF: 142.2734669045777
Iteration: 14, Func. Count: 120, Neg. LLF: 142.2734637392277
Iteration: 15, Func. Count: 128, Neg. LLF: 142.27345927235214
Iteration: 16, Func. Count: 135, Neg. LLF: 142.27345927236715
Optimization terminated successfully (Exit mode 0)
Current function value: 142.27345927235214
Iterations: 16
Function evaluations: 135
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 153.0129243064221
Iteration: 2, Func. Count: 21, Neg. LLF: 147.75087482922018
Iteration: 3, Func. Count: 31, Neg. LLF: 142.9108200656376
Iteration: 4, Func. Count: 41, Neg. LLF: 142.6907619840092
Iteration: 5, Func. Count: 50, Neg. LLF: 142.68972390002773
Iteration: 6, Func. Count: 59, Neg. LLF: 142.686060592593
Iteration: 7, Func. Count: 68, Neg. LLF: 142.68462869869012
Iteration: 8, Func. Count: 77, Neg. LLF: 142.67505833065786
Iteration: 9, Func. Count: 86, Neg. LLF: 142.54162036341006
Iteration: 10, Func. Count: 95, Neg. LLF: 142.3562566231033
Iteration: 11, Func. Count: 104, Neg. LLF: 142.28787348571586
Iteration: 12, Func. Count: 113, Neg. LLF: 142.37010682119484
Iteration: 13, Func. Count: 123, Neg. LLF: 142.27436594493392
Iteration: 14, Func. Count: 132, Neg. LLF: 142.27348194027715
Iteration: 15, Func. Count: 141, Neg. LLF: 142.2734595370367
Iteration: 16, Func. Count: 149, Neg. LLF: 142.27345954849534
Optimization terminated successfully (Exit mode 0)
Current function value: 142.2734595370367
Iterations: 16
Function evaluations: 149
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 150.41393245267054
Iteration: 2, Func. Count: 23, Neg. LLF: 149.6679201553709
Iteration: 3, Func. Count: 34, Neg. LLF: 142.66562240136292
Iteration: 4, Func. Count: 45, Neg. LLF: 142.66334813812887
Iteration: 5, Func. Count: 56, Neg. LLF: 142.4833744457073
Iteration: 6, Func. Count: 66, Neg. LLF: 142.47937429065905
Iteration: 7, Func. Count: 76, Neg. LLF: 142.49051725547784
Iteration: 8, Func. Count: 87, Neg. LLF: 142.46837569337518
Iteration: 9, Func. Count: 97, Neg. LLF: 142.46543033659472
Iteration: 10, Func. Count: 107, Neg. LLF: 142.44892423662722
Iteration: 11, Func. Count: 117, Neg. LLF: 142.43245666133728
Iteration: 12, Func. Count: 127, Neg. LLF: 142.42322970369662
Iteration: 13, Func. Count: 137, Neg. LLF: 142.42196613838308
Iteration: 14, Func. Count: 147, Neg. LLF: 142.4216317307683
Iteration: 15, Func. Count: 157, Neg. LLF: 142.42160744545663
Iteration: 16, Func. Count: 167, Neg. LLF: 142.42160553752868
Iteration: 17, Func. Count: 176, Neg. LLF: 142.4216055374617
Optimization terminated successfully (Exit mode 0)
Current function value: 142.42160553752868
Iterations: 17
Function evaluations: 176
Gradient evaluations: 17
Iteration: 1, Func. Count: 12, Neg. LLF: 154.78825105791913
Iteration: 2, Func. Count: 25, Neg. LLF: 142.78414965364036
Iteration: 3, Func. Count: 37, Neg. LLF: 142.62601148222802
Iteration: 4, Func. Count: 49, Neg. LLF: 142.4882588803757
Iteration: 5, Func. Count: 60, Neg. LLF: 142.52481799609723
Iteration: 6, Func. Count: 72, Neg. LLF: 142.9607009331581
Iteration: 7, Func. Count: 84, Neg. LLF: 142.4790885394041
Iteration: 8, Func. Count: 96, Neg. LLF: 142.46977980942924
Iteration: 9, Func. Count: 107, Neg. LLF: 142.46509851411366
Iteration: 10, Func. Count: 118, Neg. LLF: 142.4454784396795
Iteration: 11, Func. Count: 129, Neg. LLF: 142.43244675937197
Iteration: 12, Func. Count: 140, Neg. LLF: 142.4223149294998
Iteration: 13, Func. Count: 151, Neg. LLF: 142.42211229075542
Iteration: 14, Func. Count: 163, Neg. LLF: 142.4216075857203
Iteration: 15, Func. Count: 174, Neg. LLF: 142.4216058976563
Iteration: 16, Func. Count: 185, Neg. LLF: 142.42160528624936
Optimization terminated successfully (Exit mode 0)
Current function value: 142.42160528624936
Iterations: 16
Function evaluations: 185
Gradient evaluations: 16
Iteration: 1, Func. Count: 9, Neg. LLF: 144.53158913255766
Iteration: 2, Func. Count: 18, Neg. LLF: 143.70195444740534
Iteration: 3, Func. Count: 27, Neg. LLF: 143.09315959157658
Iteration: 4, Func. Count: 35, Neg. LLF: 143.72927268967263
Iteration: 5, Func. Count: 44, Neg. LLF: 142.96340188205988
Iteration: 6, Func. Count: 53, Neg. LLF: 142.77391544984846
Iteration: 7, Func. Count: 61, Neg. LLF: 142.64645586170946
Iteration: 8, Func. Count: 69, Neg. LLF: 142.63369599183645
Iteration: 9, Func. Count: 77, Neg. LLF: 142.63223053325586
Iteration: 10, Func. Count: 85, Neg. LLF: 142.63215557320237
Iteration: 11, Func. Count: 93, Neg. LLF: 142.63215220808
Iteration: 12, Func. Count: 100, Neg. LLF: 142.6321522182759
Optimization terminated successfully (Exit mode 0)
Current function value: 142.63215220808
Iterations: 12
Function evaluations: 100
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 159.29383886679332
Iteration: 2, Func. Count: 21, Neg. LLF: 143.1484167374723
Iteration: 3, Func. Count: 31, Neg. LLF: 143.10916302984697
Iteration: 4, Func. Count: 41, Neg. LLF: 142.77010841781942
Iteration: 5, Func. Count: 50, Neg. LLF: 142.76904989295915
Iteration: 6, Func. Count: 59, Neg. LLF: 142.75944278841408
Iteration: 7, Func. Count: 68, Neg. LLF: 142.58081872896804
Iteration: 8, Func. Count: 77, Neg. LLF: 142.9377487203256
Iteration: 9, Func. Count: 87, Neg. LLF: 142.8860702684728
Iteration: 10, Func. Count: 97, Neg. LLF: 142.28857111223476
Iteration: 11, Func. Count: 106, Neg. LLF: 142.39814647247448
Iteration: 12, Func. Count: 116, Neg. LLF: 142.27417382009313
Iteration: 13, Func. Count: 125, Neg. LLF: 142.27359538653334
Iteration: 14, Func. Count: 134, Neg. LLF: 142.27347196268516
Iteration: 15, Func. Count: 143, Neg. LLF: 142.27345925946278
Iteration: 16, Func. Count: 151, Neg. LLF: 142.2734592594857
Optimization terminated successfully (Exit mode 0)
Current function value: 142.27345925946278
Iterations: 16
Function evaluations: 151
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 152.87035398528857
Iteration: 2, Func. Count: 23, Neg. LLF: 148.0106300930739
Iteration: 3, Func. Count: 34, Neg. LLF: 142.9103144746213
Iteration: 4, Func. Count: 45, Neg. LLF: 142.69163197953202
Iteration: 5, Func. Count: 55, Neg. LLF: 142.69063043209502
Iteration: 6, Func. Count: 66, Neg. LLF: 142.68647608400966
Iteration: 7, Func. Count: 76, Neg. LLF: 142.68498695674893
Iteration: 8, Func. Count: 86, Neg. LLF: 142.67484293239437
Iteration: 9, Func. Count: 96, Neg. LLF: 142.63234023025572
Iteration: 10, Func. Count: 106, Neg. LLF: 142.5250376756998
Iteration: 11, Func. Count: 116, Neg. LLF: 142.44371861587814
Iteration: 12, Func. Count: 126, Neg. LLF: 142.30226487879798
Iteration: 13, Func. Count: 136, Neg. LLF: 142.2882864465872
Iteration: 14, Func. Count: 146, Neg. LLF: 142.27416659685045
Iteration: 15, Func. Count: 156, Neg. LLF: 142.27349844371616
Iteration: 16, Func. Count: 166, Neg. LLF: 142.27345968827018
Iteration: 17, Func. Count: 176, Neg. LLF: 142.2734592225422
Optimization terminated successfully (Exit mode 0)
Current function value: 142.2734592225422
Iterations: 17
Function evaluations: 176
Gradient evaluations: 17
Iteration: 1, Func. Count: 12, Neg. LLF: 148.6944090976422
Iteration: 2, Func. Count: 24, Neg. LLF: 149.72111119975764
Iteration: 3, Func. Count: 36, Neg. LLF: 142.6019645168656
Iteration: 4, Func. Count: 48, Neg. LLF: 142.81006839748318
Iteration: 5, Func. Count: 60, Neg. LLF: 142.50636078183913
Iteration: 6, Func. Count: 72, Neg. LLF: 142.4852796894696
Iteration: 7, Func. Count: 83, Neg. LLF: 142.47178562643424
Iteration: 8, Func. Count: 94, Neg. LLF: 142.4683361901164
Iteration: 9, Func. Count: 105, Neg. LLF: 142.46500863949396
Iteration: 10, Func. Count: 116, Neg. LLF: 142.44489634637134
Iteration: 11, Func. Count: 127, Neg. LLF: 142.42692171309668
Iteration: 12, Func. Count: 138, Neg. LLF: 142.42235791502253
Iteration: 13, Func. Count: 149, Neg. LLF: 142.4218157689304
Iteration: 14, Func. Count: 160, Neg. LLF: 142.421625069743
Iteration: 15, Func. Count: 171, Neg. LLF: 142.42160722310066
Iteration: 16, Func. Count: 182, Neg. LLF: 142.4216057725281
Iteration: 17, Func. Count: 192, Neg. LLF: 142.4216057726325
Optimization terminated successfully (Exit mode 0)
Current function value: 142.4216057725281
Iterations: 17
Function evaluations: 192
Gradient evaluations: 17
Iteration: 1, Func. Count: 13, Neg. LLF: 154.61665595951348
Iteration: 2, Func. Count: 27, Neg. LLF: 142.79171777359505
Iteration: 3, Func. Count: 40, Neg. LLF: 142.61212068946017
Iteration: 4, Func. Count: 53, Neg. LLF: 142.48816223236648
Iteration: 5, Func. Count: 65, Neg. LLF: 142.48219604317094
Iteration: 6, Func. Count: 77, Neg. LLF: 142.68038696791365
Iteration: 7, Func. Count: 90, Neg. LLF: 142.51793705069895
Iteration: 8, Func. Count: 103, Neg. LLF: 142.470165254646
Iteration: 9, Func. Count: 115, Neg. LLF: 142.46745269853076
Iteration: 10, Func. Count: 127, Neg. LLF: 142.45240193516736
Iteration: 11, Func. Count: 139, Neg. LLF: 142.43678548696863
Iteration: 12, Func. Count: 151, Neg. LLF: 142.4264362670891
Iteration: 13, Func. Count: 163, Neg. LLF: 142.42166604165715
Iteration: 14, Func. Count: 175, Neg. LLF: 142.4216369117706
Iteration: 15, Func. Count: 187, Neg. LLF: 142.42160596175677
Iteration: 16, Func. Count: 199, Neg. LLF: 142.42160563545661
Optimization terminated successfully (Exit mode 0)
Current function value: 142.42160563545661
Iterations: 16
Function evaluations: 199
Gradient evaluations: 16
Iteration: 1, Func. Count: 6, Neg. LLF: 145.99121938667196
Iteration: 2, Func. Count: 12, Neg. LLF: 146.74696326890404
Iteration: 3, Func. Count: 19, Neg. LLF: 143.19952802546308
Iteration: 4, Func. Count: 24, Neg. LLF: 143.61679813812867
Iteration: 5, Func. Count: 30, Neg. LLF: 142.7466366343717
Iteration: 6, Func. Count: 35, Neg. LLF: 142.71735740954807
Iteration: 7, Func. Count: 40, Neg. LLF: 142.70657865286591
Iteration: 8, Func. Count: 45, Neg. LLF: 142.70622917920534
Iteration: 9, Func. Count: 50, Neg. LLF: 142.7062236156
Iteration: 10, Func. Count: 54, Neg. LLF: 142.70622364222987
Optimization terminated successfully (Exit mode 0)
Current function value: 142.7062236156
Iterations: 10
Function evaluations: 54
Gradient evaluations: 10
Iteration: 1, Func. Count: 7, Neg. LLF: 145.6266255856114
Iteration: 2, Func. Count: 15, Neg. LLF: 143.49674148291487
Iteration: 3, Func. Count: 22, Neg. LLF: 142.80527944590003
Iteration: 4, Func. Count: 28, Neg. LLF: 142.79123164700837
Iteration: 5, Func. Count: 34, Neg. LLF: 142.78723370149476
Iteration: 6, Func. Count: 40, Neg. LLF: 142.78693453896656
Iteration: 7, Func. Count: 46, Neg. LLF: 142.78689310068424
Iteration: 8, Func. Count: 52, Neg. LLF: 142.78687489391706
Iteration: 9, Func. Count: 58, Neg. LLF: 142.78675351151665
Iteration: 10, Func. Count: 64, Neg. LLF: 142.78599395387096
Iteration: 11, Func. Count: 70, Neg. LLF: 142.77369654278976
Iteration: 12, Func. Count: 76, Neg. LLF: 142.7178239331604
Iteration: 13, Func. Count: 82, Neg. LLF: 142.71487881163483
Iteration: 14, Func. Count: 88, Neg. LLF: 142.70659033011555
Iteration: 15, Func. Count: 94, Neg. LLF: 142.70626438341685
Iteration: 16, Func. Count: 100, Neg. LLF: 142.70623006980378
Iteration: 17, Func. Count: 106, Neg. LLF: 142.7062239291092
Iteration: 18, Func. Count: 111, Neg. LLF: 142.706223934249
Optimization terminated successfully (Exit mode 0)
Current function value: 142.7062239291092
Iterations: 18
Function evaluations: 111
Gradient evaluations: 18
Iteration: 1, Func. Count: 8, Neg. LLF: 145.13460998059645
Iteration: 2, Func. Count: 17, Neg. LLF: 144.295894301551
Iteration: 3, Func. Count: 25, Neg. LLF: 142.89482436135725
Iteration: 4, Func. Count: 33, Neg. LLF: 142.73007399049297
Iteration: 5, Func. Count: 40, Neg. LLF: 142.73216427865222
Iteration: 6, Func. Count: 48, Neg. LLF: 142.72547957659458
Iteration: 7, Func. Count: 55, Neg. LLF: 142.72482908837443
Iteration: 8, Func. Count: 62, Neg. LLF: 142.72345471481688
Iteration: 9, Func. Count: 69, Neg. LLF: 142.71912672479263
Iteration: 10, Func. Count: 76, Neg. LLF: 142.71298422439506
Iteration: 11, Func. Count: 83, Neg. LLF: 142.70384434473715
Iteration: 12, Func. Count: 90, Neg. LLF: 142.69579111772512
Iteration: 13, Func. Count: 97, Neg. LLF: 142.69438016044128
Iteration: 14, Func. Count: 104, Neg. LLF: 142.69405741043514
Iteration: 15, Func. Count: 111, Neg. LLF: 142.6939982527553
Iteration: 16, Func. Count: 118, Neg. LLF: 142.69399606146217
Iteration: 17, Func. Count: 124, Neg. LLF: 142.69399606147113
Optimization terminated successfully (Exit mode 0)
Current function value: 142.69399606146217
Iterations: 17
Function evaluations: 124
Gradient evaluations: 17
Iteration: 1, Func. Count: 9, Neg. LLF: 146.19687062187782
Iteration: 2, Func. Count: 19, Neg. LLF: 144.24912006661214
Iteration: 3, Func. Count: 28, Neg. LLF: 142.91334643978243
Iteration: 4, Func. Count: 37, Neg. LLF: 142.61880100433254
Iteration: 5, Func. Count: 45, Neg. LLF: 142.62398546798627
Iteration: 6, Func. Count: 54, Neg. LLF: 142.61074793367018
Iteration: 7, Func. Count: 62, Neg. LLF: 142.60722343903157
Iteration: 8, Func. Count: 70, Neg. LLF: 142.60364213088093
Iteration: 9, Func. Count: 78, Neg. LLF: 142.59290766117678
Iteration: 10, Func. Count: 86, Neg. LLF: 142.5832320213795
Iteration: 11, Func. Count: 94, Neg. LLF: 142.57745684021202
Iteration: 12, Func. Count: 102, Neg. LLF: 142.57540325466357
Iteration: 13, Func. Count: 110, Neg. LLF: 142.57530312073837
Iteration: 14, Func. Count: 118, Neg. LLF: 142.57529941512965
Iteration: 15, Func. Count: 125, Neg. LLF: 142.57529941513766
Optimization terminated successfully (Exit mode 0)
Current function value: 142.57529941512965
Iterations: 15
Function evaluations: 125
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 146.20089847071333
Iteration: 2, Func. Count: 21, Neg. LLF: 144.25525944872547
Iteration: 3, Func. Count: 31, Neg. LLF: 142.88184570728677
Iteration: 4, Func. Count: 40, Neg. LLF: 142.65242399531604
Iteration: 5, Func. Count: 49, Neg. LLF: 142.7029114199241
Iteration: 6, Func. Count: 59, Neg. LLF: 142.62788023175025
Iteration: 7, Func. Count: 69, Neg. LLF: 142.60800188175793
Iteration: 8, Func. Count: 78, Neg. LLF: 142.60353949170002
Iteration: 9, Func. Count: 87, Neg. LLF: 142.59522257737305
Iteration: 10, Func. Count: 96, Neg. LLF: 142.5842839756289
Iteration: 11, Func. Count: 105, Neg. LLF: 142.577182706294
Iteration: 12, Func. Count: 114, Neg. LLF: 142.57538296123502
Iteration: 13, Func. Count: 123, Neg. LLF: 142.57530206392224
Iteration: 14, Func. Count: 132, Neg. LLF: 142.57529946496334
Iteration: 15, Func. Count: 140, Neg. LLF: 142.57529948756732
Optimization terminated successfully (Exit mode 0)
Current function value: 142.57529946496334
Iterations: 15
Function evaluations: 140
Gradient evaluations: 15
Iteration: 1, Func. Count: 7, Neg. LLF: 145.34459519172728
Iteration: 2, Func. Count: 14, Neg. LLF: 147.12849080313762
Iteration: 3, Func. Count: 21, Neg. LLF: 143.33509500435233
Iteration: 4, Func. Count: 27, Neg. LLF: 143.21343746325354
Iteration: 5, Func. Count: 34, Neg. LLF: 142.83648355007685
Iteration: 6, Func. Count: 40, Neg. LLF: 142.68892483045892
Iteration: 7, Func. Count: 46, Neg. LLF: 142.64389151751308
Iteration: 8, Func. Count: 52, Neg. LLF: 142.6327168865551
Iteration: 9, Func. Count: 58, Neg. LLF: 142.63216178675785
Iteration: 10, Func. Count: 64, Neg. LLF: 142.63215227162206
Iteration: 11, Func. Count: 69, Neg. LLF: 142.6321522716371
Optimization terminated successfully (Exit mode 0)
Current function value: 142.63215227162206
Iterations: 11
Function evaluations: 69
Gradient evaluations: 11
Iteration: 1, Func. Count: 8, Neg. LLF: 145.28520124920797
Iteration: 2, Func. Count: 17, Neg. LLF: 149.0176683565092
Iteration: 3, Func. Count: 25, Neg. LLF: 142.78724358216934
Iteration: 4, Func. Count: 32, Neg. LLF: 142.77067584045827
Iteration: 5, Func. Count: 39, Neg. LLF: 142.76899017647108
Iteration: 6, Func. Count: 46, Neg. LLF: 142.76729970988094
Iteration: 7, Func. Count: 53, Neg. LLF: 142.76473116440198
Iteration: 8, Func. Count: 60, Neg. LLF: 142.73505093342246
Iteration: 9, Func. Count: 67, Neg. LLF: 142.3466665743262
Iteration: 10, Func. Count: 74, Neg. LLF: 142.37613277238856
Iteration: 11, Func. Count: 82, Neg. LLF: 142.27471206473632
Iteration: 12, Func. Count: 89, Neg. LLF: 142.27442520612274
Iteration: 13, Func. Count: 97, Neg. LLF: 142.27346861164546
Iteration: 14, Func. Count: 104, Neg. LLF: 142.27345922392038
Iteration: 15, Func. Count: 110, Neg. LLF: 142.27345922391393
Optimization terminated successfully (Exit mode 0)
Current function value: 142.27345922392038
Iterations: 15
Function evaluations: 110
Gradient evaluations: 15
Iteration: 1, Func. Count: 9, Neg. LLF: 145.81447560472327
Iteration: 2, Func. Count: 19, Neg. LLF: 149.1566539507773
Iteration: 3, Func. Count: 28, Neg. LLF: 143.26645823632524
Iteration: 4, Func. Count: 37, Neg. LLF: 142.884549633937
Iteration: 5, Func. Count: 46, Neg. LLF: 142.69281944747613
Iteration: 6, Func. Count: 54, Neg. LLF: 142.69103484981989
Iteration: 7, Func. Count: 63, Neg. LLF: 142.68612273752922
Iteration: 8, Func. Count: 71, Neg. LLF: 142.68435300057934
Iteration: 9, Func. Count: 79, Neg. LLF: 142.66541878310764
Iteration: 10, Func. Count: 87, Neg. LLF: 142.4705968982915
Iteration: 11, Func. Count: 95, Neg. LLF: 142.49961946772706
Iteration: 12, Func. Count: 104, Neg. LLF: 142.36928439105114
Iteration: 13, Func. Count: 112, Neg. LLF: 142.32144968601554
Iteration: 14, Func. Count: 120, Neg. LLF: 142.28405380925452
Iteration: 15, Func. Count: 128, Neg. LLF: 142.27410608203513
Iteration: 16, Func. Count: 136, Neg. LLF: 142.27352205620528
Iteration: 17, Func. Count: 144, Neg. LLF: 142.2734597456362
Iteration: 18, Func. Count: 152, Neg. LLF: 142.27345923333618
Optimization terminated successfully (Exit mode 0)
Current function value: 142.27345923333618
Iterations: 18
Function evaluations: 152
Gradient evaluations: 18
Iteration: 1, Func. Count: 10, Neg. LLF: 145.22105941656613
Iteration: 2, Func. Count: 21, Neg. LLF: 148.99598379751313
Iteration: 3, Func. Count: 31, Neg. LLF: 143.37365350533338
Iteration: 4, Func. Count: 41, Neg. LLF: 142.53801244404312
Iteration: 5, Func. Count: 50, Neg. LLF: 142.50004944424148
Iteration: 6, Func. Count: 59, Neg. LLF: 142.51301669663454
Iteration: 7, Func. Count: 69, Neg. LLF: 142.47255557751004
Iteration: 8, Func. Count: 78, Neg. LLF: 142.46946922964713
Iteration: 9, Func. Count: 87, Neg. LLF: 142.46667501545966
Iteration: 10, Func. Count: 96, Neg. LLF: 142.46189356512147
Iteration: 11, Func. Count: 105, Neg. LLF: 142.44258661288586
Iteration: 12, Func. Count: 114, Neg. LLF: 142.42849678528117
Iteration: 13, Func. Count: 123, Neg. LLF: 142.42237401604248
Iteration: 14, Func. Count: 132, Neg. LLF: 142.4216527335227
Iteration: 15, Func. Count: 141, Neg. LLF: 142.42161594323653
Iteration: 16, Func. Count: 150, Neg. LLF: 142.42160684858618
Iteration: 17, Func. Count: 159, Neg. LLF: 142.42160538331015
Iteration: 18, Func. Count: 167, Neg. LLF: 142.421605383261
Optimization terminated successfully (Exit mode 0)
Current function value: 142.42160538331015
Iterations: 18
Function evaluations: 167
Gradient evaluations: 18
Iteration: 1, Func. Count: 11, Neg. LLF: 145.51828945145147
Iteration: 2, Func. Count: 23, Neg. LLF: 148.79960532876441
Iteration: 3, Func. Count: 34, Neg. LLF: 142.77778155693233
Iteration: 4, Func. Count: 44, Neg. LLF: 142.9525197949796
Iteration: 5, Func. Count: 55, Neg. LLF: 145.69432224122787
Iteration: 6, Func. Count: 67, Neg. LLF: 142.4773828581528
Iteration: 7, Func. Count: 77, Neg. LLF: 142.47215340867152
Iteration: 8, Func. Count: 87, Neg. LLF: 142.47132176638988
Iteration: 9, Func. Count: 97, Neg. LLF: 142.46688969870692
Iteration: 10, Func. Count: 107, Neg. LLF: 142.4625389062012
Iteration: 11, Func. Count: 117, Neg. LLF: 142.4447866807006
Iteration: 12, Func. Count: 127, Neg. LLF: 142.43232194922788
Iteration: 13, Func. Count: 137, Neg. LLF: 142.42423997588298
Iteration: 14, Func. Count: 147, Neg. LLF: 142.42223005955233
Iteration: 15, Func. Count: 157, Neg. LLF: 142.42166443914581
Iteration: 16, Func. Count: 167, Neg. LLF: 142.4216129537931
Iteration: 17, Func. Count: 177, Neg. LLF: 142.42160548474396
Iteration: 18, Func. Count: 186, Neg. LLF: 142.42160552695353
Optimization terminated successfully (Exit mode 0)
Current function value: 142.42160548474396
Iterations: 18
Function evaluations: 186
Gradient evaluations: 18
Iteration: 1, Func. Count: 8, Neg. LLF: 147.17976814892523
Iteration: 2, Func. Count: 16, Neg. LLF: 144.11708646098677
Iteration: 3, Func. Count: 24, Neg. LLF: 142.4066055792141
Iteration: 4, Func. Count: 31, Neg. LLF: 142.25979608348845
Iteration: 5, Func. Count: 38, Neg. LLF: 142.17496761141206
Iteration: 6, Func. Count: 45, Neg. LLF: 142.15386302719324
Iteration: 7, Func. Count: 52, Neg. LLF: 142.1394819118677
Iteration: 8, Func. Count: 59, Neg. LLF: 142.13393656249474
Iteration: 9, Func. Count: 66, Neg. LLF: 142.127767352508
Iteration: 10, Func. Count: 73, Neg. LLF: 142.12596161082914
Iteration: 11, Func. Count: 80, Neg. LLF: 142.1255085146784
Iteration: 12, Func. Count: 87, Neg. LLF: 142.1254869836282
Iteration: 13, Func. Count: 94, Neg. LLF: 142.1254858533307
Iteration: 14, Func. Count: 100, Neg. LLF: 142.12548574480923
Optimization terminated successfully (Exit mode 0)
Current function value: 142.1254858533307
Iterations: 14
Function evaluations: 100
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 144.24760337411516
Iteration: 2, Func. Count: 19, Neg. LLF: 146.20776675359667
Iteration: 3, Func. Count: 28, Neg. LLF: 142.32594329064398
Iteration: 4, Func. Count: 36, Neg. LLF: 142.02389570150117
Iteration: 5, Func. Count: 44, Neg. LLF: 142.01445559262646
Iteration: 6, Func. Count: 53, Neg. LLF: 141.92518753928
Iteration: 7, Func. Count: 61, Neg. LLF: 141.93332764568055
Iteration: 8, Func. Count: 70, Neg. LLF: 141.7310534432963
Iteration: 9, Func. Count: 78, Neg. LLF: 141.65359598865666
Iteration: 10, Func. Count: 86, Neg. LLF: 141.6123760448175
Iteration: 11, Func. Count: 94, Neg. LLF: 141.59077319636702
Iteration: 12, Func. Count: 102, Neg. LLF: 141.5692479142942
Iteration: 13, Func. Count: 110, Neg. LLF: 141.56731869922672
Iteration: 14, Func. Count: 118, Neg. LLF: 141.56706113804796
Iteration: 15, Func. Count: 126, Neg. LLF: 141.56705852505
Iteration: 16, Func. Count: 133, Neg. LLF: 141.56705852503524
Optimization terminated successfully (Exit mode 0)
Current function value: 141.56705852505
Iterations: 16
Function evaluations: 133
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 144.5416766953213
Iteration: 2, Func. Count: 21, Neg. LLF: 146.31055838889796
Iteration: 3, Func. Count: 31, Neg. LLF: 141.86825041728534
Iteration: 4, Func. Count: 40, Neg. LLF: 142.1092946778325
Iteration: 5, Func. Count: 51, Neg. LLF: 145.43081232783763
Iteration: 6, Func. Count: 61, Neg. LLF: 141.7791783192638
Iteration: 7, Func. Count: 71, Neg. LLF: 141.60285678805238
Iteration: 8, Func. Count: 80, Neg. LLF: 141.55644344995818
Iteration: 9, Func. Count: 89, Neg. LLF: 141.52371697719786
Iteration: 10, Func. Count: 98, Neg. LLF: 141.50562833253323
Iteration: 11, Func. Count: 107, Neg. LLF: 141.4916715487169
Iteration: 12, Func. Count: 116, Neg. LLF: 141.48813256551202
Iteration: 13, Func. Count: 125, Neg. LLF: 141.48373149916918
Iteration: 14, Func. Count: 134, Neg. LLF: 141.48364156012786
Iteration: 15, Func. Count: 143, Neg. LLF: 141.48363461804794
Iteration: 16, Func. Count: 152, Neg. LLF: 141.48363393545446
Optimization terminated successfully (Exit mode 0)
Current function value: 141.48363393545446
Iterations: 16
Function evaluations: 152
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 145.30783241290982
Iteration: 2, Func. Count: 23, Neg. LLF: 146.67892190049702
Iteration: 3, Func. Count: 34, Neg. LLF: 141.83260274772726
Iteration: 4, Func. Count: 44, Neg. LLF: 141.8867124863899
Iteration: 5, Func. Count: 55, Neg. LLF: 142.61941647067724
Iteration: 6, Func. Count: 66, Neg. LLF: 141.62791557836493
Iteration: 7, Func. Count: 76, Neg. LLF: 141.6049316885106
Iteration: 8, Func. Count: 86, Neg. LLF: 141.67577854981522
Iteration: 9, Func. Count: 97, Neg. LLF: 141.54199230905195
Iteration: 10, Func. Count: 107, Neg. LLF: 141.521767913077
Iteration: 11, Func. Count: 117, Neg. LLF: 141.49570947840414
Iteration: 12, Func. Count: 127, Neg. LLF: 141.4870741047556
Iteration: 13, Func. Count: 137, Neg. LLF: 141.48384308370106
Iteration: 14, Func. Count: 147, Neg. LLF: 141.48363694170303
Iteration: 15, Func. Count: 157, Neg. LLF: 141.48363408765647
Iteration: 16, Func. Count: 166, Neg. LLF: 141.48363415807083
Optimization terminated successfully (Exit mode 0)
Current function value: 141.48363408765647
Iterations: 16
Function evaluations: 166
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 144.73457148685043
Iteration: 2, Func. Count: 25, Neg. LLF: 146.1105449212547
Iteration: 3, Func. Count: 37, Neg. LLF: 141.83187973404577
Iteration: 4, Func. Count: 48, Neg. LLF: 141.93960881040024
Iteration: 5, Func. Count: 60, Neg. LLF: 142.26062381836203
Iteration: 6, Func. Count: 72, Neg. LLF: 141.66162412524199
Iteration: 7, Func. Count: 83, Neg. LLF: 141.72994243971843
Iteration: 8, Func. Count: 95, Neg. LLF: 141.57881670775416
Iteration: 9, Func. Count: 106, Neg. LLF: 141.55393733392017
Iteration: 10, Func. Count: 117, Neg. LLF: 141.5206841299567
Iteration: 11, Func. Count: 128, Neg. LLF: 141.49598257497968
Iteration: 12, Func. Count: 139, Neg. LLF: 141.48993783962877
Iteration: 13, Func. Count: 150, Neg. LLF: 141.48385807173733
Iteration: 14, Func. Count: 161, Neg. LLF: 141.4836650589593
Iteration: 15, Func. Count: 172, Neg. LLF: 141.48364040898832
Iteration: 16, Func. Count: 183, Neg. LLF: 141.48363394145935
Iteration: 17, Func. Count: 193, Neg. LLF: 141.4836339986422
Optimization terminated successfully (Exit mode 0)
Current function value: 141.48363394145935
Iterations: 17
Function evaluations: 193
Gradient evaluations: 17
Iteration: 1, Func. Count: 9, Neg. LLF: 144.9093642563554
Iteration: 2, Func. Count: 18, Neg. LLF: 146.62901187144567
Iteration: 3, Func. Count: 28, Neg. LLF: 142.31131329211365
Iteration: 4, Func. Count: 36, Neg. LLF: 142.2234918540333
Iteration: 5, Func. Count: 44, Neg. LLF: 142.16372898067075
Iteration: 6, Func. Count: 52, Neg. LLF: 142.14254955032922
Iteration: 7, Func. Count: 60, Neg. LLF: 142.1359772607579
Iteration: 8, Func. Count: 68, Neg. LLF: 142.12939540284557
Iteration: 9, Func. Count: 76, Neg. LLF: 142.12764207369597
Iteration: 10, Func. Count: 84, Neg. LLF: 142.12611717185075
Iteration: 11, Func. Count: 92, Neg. LLF: 142.12558751075315
Iteration: 12, Func. Count: 100, Neg. LLF: 142.1254905101688
Iteration: 13, Func. Count: 108, Neg. LLF: 142.1254858945413
Iteration: 14, Func. Count: 115, Neg. LLF: 142.1254859732956
Optimization terminated successfully (Exit mode 0)
Current function value: 142.1254858945413
Iterations: 14
Function evaluations: 115
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 144.21663538025376
Iteration: 2, Func. Count: 21, Neg. LLF: 146.19618595961416
Iteration: 3, Func. Count: 31, Neg. LLF: 142.18343469042867
Iteration: 4, Func. Count: 40, Neg. LLF: 142.0366213839166
Iteration: 5, Func. Count: 49, Neg. LLF: 142.20092046197976
Iteration: 6, Func. Count: 59, Neg. LLF: 141.91983587295033
Iteration: 7, Func. Count: 68, Neg. LLF: 141.90522255975938
Iteration: 8, Func. Count: 78, Neg. LLF: 141.73424827362368
Iteration: 9, Func. Count: 87, Neg. LLF: 141.6736181213246
Iteration: 10, Func. Count: 96, Neg. LLF: 141.60719492957483
Iteration: 11, Func. Count: 105, Neg. LLF: 141.5898402516566
Iteration: 12, Func. Count: 114, Neg. LLF: 141.56936900495205
Iteration: 13, Func. Count: 123, Neg. LLF: 141.5672605365265
Iteration: 14, Func. Count: 132, Neg. LLF: 141.56706365923878
Iteration: 15, Func. Count: 141, Neg. LLF: 141.56705860169785
Iteration: 16, Func. Count: 149, Neg. LLF: 141.56705860175856
Optimization terminated successfully (Exit mode 0)
Current function value: 141.56705860169785
Iterations: 16
Function evaluations: 149
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 144.84423307809402
Iteration: 2, Func. Count: 23, Neg. LLF: 146.30350973088187
Iteration: 3, Func. Count: 34, Neg. LLF: 141.86432654213215
Iteration: 4, Func. Count: 44, Neg. LLF: 142.09979720284335
Iteration: 5, Func. Count: 56, Neg. LLF: 144.70709500315047
Iteration: 6, Func. Count: 67, Neg. LLF: 141.76386937825288
Iteration: 7, Func. Count: 78, Neg. LLF: 141.61041071607087
Iteration: 8, Func. Count: 88, Neg. LLF: 141.55702828713498
Iteration: 9, Func. Count: 98, Neg. LLF: 141.52814727628171
Iteration: 10, Func. Count: 108, Neg. LLF: 141.50902519560046
Iteration: 11, Func. Count: 118, Neg. LLF: 141.49139454820013
Iteration: 12, Func. Count: 128, Neg. LLF: 141.48836698000787
Iteration: 13, Func. Count: 138, Neg. LLF: 141.48374606650356
Iteration: 14, Func. Count: 148, Neg. LLF: 141.48363784535812
Iteration: 15, Func. Count: 158, Neg. LLF: 141.48363435830382
Iteration: 16, Func. Count: 167, Neg. LLF: 141.4836343583149
Optimization terminated successfully (Exit mode 0)
Current function value: 141.48363435830382
Iterations: 16
Function evaluations: 167
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 145.2839174599651
Iteration: 2, Func. Count: 25, Neg. LLF: 146.68265877341878
Iteration: 3, Func. Count: 37, Neg. LLF: 141.83369201062166
Iteration: 4, Func. Count: 48, Neg. LLF: 141.89363024369172
Iteration: 5, Func. Count: 60, Neg. LLF: 142.6205101812043
Iteration: 6, Func. Count: 72, Neg. LLF: 141.628508536208
Iteration: 7, Func. Count: 83, Neg. LLF: 141.61639233651684
Iteration: 8, Func. Count: 94, Neg. LLF: 141.6118338545403
Iteration: 9, Func. Count: 106, Neg. LLF: 141.5422930384824
Iteration: 10, Func. Count: 117, Neg. LLF: 141.52293045452905
Iteration: 11, Func. Count: 128, Neg. LLF: 141.49315472531302
Iteration: 12, Func. Count: 139, Neg. LLF: 141.48620671657932
Iteration: 13, Func. Count: 150, Neg. LLF: 141.4837583629983
Iteration: 14, Func. Count: 161, Neg. LLF: 141.48363490521706
Iteration: 15, Func. Count: 172, Neg. LLF: 141.4836339535307
Optimization terminated successfully (Exit mode 0)
Current function value: 141.4836339535307
Iterations: 15
Function evaluations: 172
Gradient evaluations: 15
Iteration: 1, Func. Count: 13, Neg. LLF: 144.73820294802624
Iteration: 2, Func. Count: 27, Neg. LLF: 146.1160960968034
Iteration: 3, Func. Count: 40, Neg. LLF: 141.83359285889034
Iteration: 4, Func. Count: 52, Neg. LLF: 141.94969471126427
Iteration: 5, Func. Count: 65, Neg. LLF: 142.28467486397648
Iteration: 6, Func. Count: 78, Neg. LLF: 141.66204436345126
Iteration: 7, Func. Count: 90, Neg. LLF: 141.73340735749838
Iteration: 8, Func. Count: 103, Neg. LLF: 141.5784663953802
Iteration: 9, Func. Count: 115, Neg. LLF: 141.55429321422088
Iteration: 10, Func. Count: 127, Neg. LLF: 141.52088172711655
Iteration: 11, Func. Count: 139, Neg. LLF: 141.49556447190653
Iteration: 12, Func. Count: 151, Neg. LLF: 141.48968234158616
Iteration: 13, Func. Count: 163, Neg. LLF: 141.4838675200981
Iteration: 14, Func. Count: 175, Neg. LLF: 141.483656111218
Iteration: 15, Func. Count: 187, Neg. LLF: 141.48363922979493
Iteration: 16, Func. Count: 199, Neg. LLF: 141.48363394112167
Iteration: 17, Func. Count: 210, Neg. LLF: 141.48363399829339
Optimization terminated successfully (Exit mode 0)
Current function value: 141.48363394112167
Iterations: 17
Function evaluations: 210
Gradient evaluations: 17
Iteration: 1, Func. Count: 10, Neg. LLF: 144.53230191864733
Iteration: 2, Func. Count: 20, Neg. LLF: 148.64066388591638
Iteration: 3, Func. Count: 31, Neg. LLF: 142.41336690446954
Iteration: 4, Func. Count: 40, Neg. LLF: 142.23557536385326
Iteration: 5, Func. Count: 49, Neg. LLF: 142.4593591355918
Iteration: 6, Func. Count: 59, Neg. LLF: 142.16047865275218
Iteration: 7, Func. Count: 68, Neg. LLF: 142.14291225791916
Iteration: 8, Func. Count: 77, Neg. LLF: 142.13428048897285
Iteration: 9, Func. Count: 86, Neg. LLF: 142.13140317392333
Iteration: 10, Func. Count: 95, Neg. LLF: 142.12514731812243
Iteration: 11, Func. Count: 104, Neg. LLF: 142.12436133951627
Iteration: 12, Func. Count: 113, Neg. LLF: 142.12428703300145
Iteration: 13, Func. Count: 122, Neg. LLF: 142.12428616975646
Optimization terminated successfully (Exit mode 0)
Current function value: 142.12428616975646
Iterations: 13
Function evaluations: 122
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 144.21802170515247
Iteration: 2, Func. Count: 23, Neg. LLF: 146.19596513134616
Iteration: 3, Func. Count: 34, Neg. LLF: 142.11578958971242
Iteration: 4, Func. Count: 44, Neg. LLF: 142.05542134637076
Iteration: 5, Func. Count: 54, Neg. LLF: 141.97216524653624
Iteration: 6, Func. Count: 64, Neg. LLF: 141.93032262318889
Iteration: 7, Func. Count: 74, Neg. LLF: 141.8606269864004
Iteration: 8, Func. Count: 84, Neg. LLF: 141.78376545416847
Iteration: 9, Func. Count: 94, Neg. LLF: 141.76480586135057
Iteration: 10, Func. Count: 105, Neg. LLF: 141.59993558118106
Iteration: 11, Func. Count: 115, Neg. LLF: 141.580014136079
Iteration: 12, Func. Count: 125, Neg. LLF: 141.57047202606714
Iteration: 13, Func. Count: 135, Neg. LLF: 141.56730253747585
Iteration: 14, Func. Count: 145, Neg. LLF: 141.56707588429842
Iteration: 15, Func. Count: 155, Neg. LLF: 141.5670589844649
Iteration: 16, Func. Count: 165, Neg. LLF: 141.56705844720935
Optimization terminated successfully (Exit mode 0)
Current function value: 141.56705844720935
Iterations: 16
Function evaluations: 165
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 145.23837458508123
Iteration: 2, Func. Count: 25, Neg. LLF: 146.31020825499007
Iteration: 3, Func. Count: 37, Neg. LLF: 141.86126000642477
Iteration: 4, Func. Count: 48, Neg. LLF: 142.08944368881677
Iteration: 5, Func. Count: 61, Neg. LLF: 144.57221078954115
Iteration: 6, Func. Count: 74, Neg. LLF: 141.68105768665356
Iteration: 7, Func. Count: 86, Neg. LLF: 141.6748846351789
Iteration: 8, Func. Count: 98, Neg. LLF: 141.55182236574788
Iteration: 9, Func. Count: 109, Neg. LLF: 141.51821332939923
Iteration: 10, Func. Count: 120, Neg. LLF: 141.50250012291067
Iteration: 11, Func. Count: 131, Neg. LLF: 141.49421844128779
Iteration: 12, Func. Count: 142, Neg. LLF: 141.48728973065403
Iteration: 13, Func. Count: 153, Neg. LLF: 141.48381099025107
Iteration: 14, Func. Count: 164, Neg. LLF: 141.4836452596398
Iteration: 15, Func. Count: 175, Neg. LLF: 141.4836342203065
Iteration: 16, Func. Count: 185, Neg. LLF: 141.48363422034873
Optimization terminated successfully (Exit mode 0)
Current function value: 141.4836342203065
Iterations: 16
Function evaluations: 185
Gradient evaluations: 16
Iteration: 1, Func. Count: 13, Neg. LLF: 145.26736462410472
Iteration: 2, Func. Count: 27, Neg. LLF: 146.69508605008733
Iteration: 3, Func. Count: 40, Neg. LLF: 141.8386908372201
Iteration: 4, Func. Count: 52, Neg. LLF: 141.90365449735768
Iteration: 5, Func. Count: 65, Neg. LLF: 142.81397859691126
Iteration: 6, Func. Count: 78, Neg. LLF: 141.6303101288058
Iteration: 7, Func. Count: 90, Neg. LLF: 141.64502932289255
Iteration: 8, Func. Count: 103, Neg. LLF: 141.5650583410243
Iteration: 9, Func. Count: 115, Neg. LLF: 141.5404478140313
Iteration: 10, Func. Count: 127, Neg. LLF: 141.51955126551863
Iteration: 11, Func. Count: 139, Neg. LLF: 141.4934062197732
Iteration: 12, Func. Count: 151, Neg. LLF: 141.48531586532815
Iteration: 13, Func. Count: 163, Neg. LLF: 141.48375945531413
Iteration: 14, Func. Count: 175, Neg. LLF: 141.4836510680341
Iteration: 15, Func. Count: 187, Neg. LLF: 141.48363453805715
Iteration: 16, Func. Count: 199, Neg. LLF: 141.48363393934713
Optimization terminated successfully (Exit mode 0)
Current function value: 141.48363393934713
Iterations: 16
Function evaluations: 199
Gradient evaluations: 16
Iteration: 1, Func. Count: 14, Neg. LLF: 144.73062281137817
Iteration: 2, Func. Count: 29, Neg. LLF: 146.1266512206918
Iteration: 3, Func. Count: 43, Neg. LLF: 141.83368008838363
Iteration: 4, Func. Count: 56, Neg. LLF: 141.96061671446026
Iteration: 5, Func. Count: 70, Neg. LLF: 142.32054309305514
Iteration: 6, Func. Count: 84, Neg. LLF: 141.66055227223333
Iteration: 7, Func. Count: 97, Neg. LLF: 141.7337375132916
Iteration: 8, Func. Count: 111, Neg. LLF: 141.57755423301185
Iteration: 9, Func. Count: 124, Neg. LLF: 141.55350731926853
Iteration: 10, Func. Count: 137, Neg. LLF: 141.5196497445413
Iteration: 11, Func. Count: 150, Neg. LLF: 141.49526477367772
Iteration: 12, Func. Count: 163, Neg. LLF: 141.48943870945075
Iteration: 13, Func. Count: 176, Neg. LLF: 141.4838528275873
Iteration: 14, Func. Count: 189, Neg. LLF: 141.48364976652687
Iteration: 15, Func. Count: 202, Neg. LLF: 141.48363771045214
Iteration: 16, Func. Count: 215, Neg. LLF: 141.48363395754026
Iteration: 17, Func. Count: 227, Neg. LLF: 141.48363401469916
Optimization terminated successfully (Exit mode 0)
Current function value: 141.48363395754026
Iterations: 17
Function evaluations: 227
Gradient evaluations: 17
Iteration: 1, Func. Count: 7, Neg. LLF: 145.7709951202189
Iteration: 2, Func. Count: 14, Neg. LLF: 146.5658624893159
Iteration: 3, Func. Count: 22, Neg. LLF: 144.3812554032225
Iteration: 4, Func. Count: 29, Neg. LLF: 142.82628595508527
Iteration: 5, Func. Count: 35, Neg. LLF: 142.75367922659672
Iteration: 6, Func. Count: 41, Neg. LLF: 142.717666560388
Iteration: 7, Func. Count: 47, Neg. LLF: 142.68437231653928
Iteration: 8, Func. Count: 53, Neg. LLF: 142.68272005105564
Iteration: 9, Func. Count: 59, Neg. LLF: 142.68267299743945
Iteration: 10, Func. Count: 65, Neg. LLF: 142.68267179271433
Iteration: 11, Func. Count: 70, Neg. LLF: 142.68267179276344
Optimization terminated successfully (Exit mode 0)
Current function value: 142.68267179271433
Iterations: 11
Function evaluations: 70
Gradient evaluations: 11
Iteration: 1, Func. Count: 8, Neg. LLF: 146.0131692997373
Iteration: 2, Func. Count: 17, Neg. LLF: 144.24705369085675
Iteration: 3, Func. Count: 25, Neg. LLF: 142.79460439848293
Iteration: 4, Func. Count: 32, Neg. LLF: 142.73734825653264
Iteration: 5, Func. Count: 39, Neg. LLF: 142.75503292768548
Iteration: 6, Func. Count: 47, Neg. LLF: 142.72112655937357
Iteration: 7, Func. Count: 54, Neg. LLF: 142.71986042328786
Iteration: 8, Func. Count: 61, Neg. LLF: 142.7192354632837
Iteration: 9, Func. Count: 68, Neg. LLF: 142.71894034732944
Iteration: 10, Func. Count: 75, Neg. LLF: 142.71711089537817
Iteration: 11, Func. Count: 82, Neg. LLF: 142.71024307654832
Iteration: 12, Func. Count: 89, Neg. LLF: 142.70362257648702
Iteration: 13, Func. Count: 96, Neg. LLF: 142.69103678182785
Iteration: 14, Func. Count: 103, Neg. LLF: 142.68442011708288
Iteration: 15, Func. Count: 110, Neg. LLF: 142.6828719398619
Iteration: 16, Func. Count: 117, Neg. LLF: 142.6826963847652
Iteration: 17, Func. Count: 124, Neg. LLF: 142.6826721808297
Iteration: 18, Func. Count: 130, Neg. LLF: 142.68267218240982
Optimization terminated successfully (Exit mode 0)
Current function value: 142.6826721808297
Iterations: 18
Function evaluations: 130
Gradient evaluations: 18
Iteration: 1, Func. Count: 9, Neg. LLF: 146.0050430651851
Iteration: 2, Func. Count: 19, Neg. LLF: 144.2010582664103
Iteration: 3, Func. Count: 28, Neg. LLF: 142.79814935810083
Iteration: 4, Func. Count: 36, Neg. LLF: 142.72077991273412
Iteration: 5, Func. Count: 44, Neg. LLF: 142.7207683976365
Iteration: 6, Func. Count: 53, Neg. LLF: 142.71954131512524
Iteration: 7, Func. Count: 61, Neg. LLF: 142.71921081054913
Iteration: 8, Func. Count: 69, Neg. LLF: 142.7179791189149
Iteration: 9, Func. Count: 77, Neg. LLF: 142.71598074638206
Iteration: 10, Func. Count: 85, Neg. LLF: 142.71226423055154
Iteration: 11, Func. Count: 93, Neg. LLF: 142.70874586502623
Iteration: 12, Func. Count: 101, Neg. LLF: 142.69835213198104
Iteration: 13, Func. Count: 109, Neg. LLF: 142.68909307846064
Iteration: 14, Func. Count: 117, Neg. LLF: 142.68322919717414
Iteration: 15, Func. Count: 125, Neg. LLF: 142.6828023422588
Iteration: 16, Func. Count: 133, Neg. LLF: 142.6826862707862
Iteration: 17, Func. Count: 141, Neg. LLF: 142.6826731630041
Iteration: 18, Func. Count: 149, Neg. LLF: 142.68267199808926
Iteration: 19, Func. Count: 156, Neg. LLF: 142.6826720002371
Optimization terminated successfully (Exit mode 0)
Current function value: 142.68267199808926
Iterations: 19
Function evaluations: 156
Gradient evaluations: 19
Iteration: 1, Func. Count: 10, Neg. LLF: 146.042685254986
Iteration: 2, Func. Count: 21, Neg. LLF: 144.24200210059226
Iteration: 3, Func. Count: 31, Neg. LLF: 142.72887929601202
Iteration: 4, Func. Count: 40, Neg. LLF: 142.8574698655387
Iteration: 5, Func. Count: 50, Neg. LLF: 143.2532575161596
Iteration: 6, Func. Count: 60, Neg. LLF: 142.60989445561566
Iteration: 7, Func. Count: 69, Neg. LLF: 142.6067295759357
Iteration: 8, Func. Count: 78, Neg. LLF: 142.60205364895972
Iteration: 9, Func. Count: 87, Neg. LLF: 142.57643890181416
Iteration: 10, Func. Count: 96, Neg. LLF: 142.56596439065044
Iteration: 11, Func. Count: 105, Neg. LLF: 142.5613357679196
Iteration: 12, Func. Count: 114, Neg. LLF: 142.56077595892114
Iteration: 13, Func. Count: 123, Neg. LLF: 142.56069461619384
Iteration: 14, Func. Count: 132, Neg. LLF: 142.56069253439802
Iteration: 15, Func. Count: 140, Neg. LLF: 142.56069253444448
Optimization terminated successfully (Exit mode 0)
Current function value: 142.56069253439802
Iterations: 15
Function evaluations: 140
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 150.2391678657622
Iteration: 2, Func. Count: 23, Neg. LLF: 149.79978578104595
Iteration: 3, Func. Count: 34, Neg. LLF: 143.1354974344868
Iteration: 4, Func. Count: 45, Neg. LLF: 142.88760528018543
Iteration: 5, Func. Count: 55, Neg. LLF: 142.85773509804991
Iteration: 6, Func. Count: 65, Neg. LLF: 142.835707105804
Iteration: 7, Func. Count: 75, Neg. LLF: 142.81291118393625
Iteration: 8, Func. Count: 85, Neg. LLF: 142.76763091086903
Iteration: 9, Func. Count: 95, Neg. LLF: 142.63980430087742
Iteration: 10, Func. Count: 105, Neg. LLF: 142.5940864175864
Iteration: 11, Func. Count: 115, Neg. LLF: 142.56416787849093
Iteration: 12, Func. Count: 125, Neg. LLF: 142.56149838068634
Iteration: 13, Func. Count: 135, Neg. LLF: 142.5609473772374
Iteration: 14, Func. Count: 145, Neg. LLF: 142.56078721167572
Iteration: 15, Func. Count: 155, Neg. LLF: 142.56072057279005
Iteration: 16, Func. Count: 165, Neg. LLF: 142.56069455467212
Iteration: 17, Func. Count: 175, Neg. LLF: 142.56069247716135
Iteration: 18, Func. Count: 184, Neg. LLF: 142.56069250156546
Optimization terminated successfully (Exit mode 0)
Current function value: 142.56069247716135
Iterations: 18
Function evaluations: 184
Gradient evaluations: 18
Iteration: 1, Func. Count: 8, Neg. LLF: 146.51350602461005
Iteration: 2, Func. Count: 17, Neg. LLF: 147.08628671600243
Iteration: 3, Func. Count: 26, Neg. LLF: 145.81530725711872
Iteration: 4, Func. Count: 35, Neg. LLF: 143.19958696196744
Iteration: 5, Func. Count: 42, Neg. LLF: 143.19669854789623
Iteration: 6, Func. Count: 50, Neg. LLF: 143.09937874704406
Iteration: 7, Func. Count: 58, Neg. LLF: 142.75539136703898
Iteration: 8, Func. Count: 65, Neg. LLF: 142.64471124291575
Iteration: 9, Func. Count: 72, Neg. LLF: 142.63291569489047
Iteration: 10, Func. Count: 79, Neg. LLF: 142.63189037046584
Iteration: 11, Func. Count: 86, Neg. LLF: 142.63186178539564
Iteration: 12, Func. Count: 93, Neg. LLF: 142.63186021191453
Iteration: 13, Func. Count: 99, Neg. LLF: 142.63186021192647
Optimization terminated successfully (Exit mode 0)
Current function value: 142.63186021191453
Iterations: 13
Function evaluations: 99
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 145.48869214426907
Iteration: 2, Func. Count: 19, Neg. LLF: 149.2660219656827
Iteration: 3, Func. Count: 28, Neg. LLF: 145.9535796801202
Iteration: 4, Func. Count: 37, Neg. LLF: 142.69786335015854
Iteration: 5, Func. Count: 45, Neg. LLF: 143.00344248827727
Iteration: 6, Func. Count: 54, Neg. LLF: 142.69849432281447
Iteration: 7, Func. Count: 63, Neg. LLF: 142.67307185474505
Iteration: 8, Func. Count: 71, Neg. LLF: 142.6705120522378
Iteration: 9, Func. Count: 79, Neg. LLF: 142.6640140855393
Iteration: 10, Func. Count: 87, Neg. LLF: 142.6375145283429
Iteration: 11, Func. Count: 95, Neg. LLF: 142.82960491043636
Iteration: 12, Func. Count: 104, Neg. LLF: 144.71071933074782
Iteration: 13, Func. Count: 113, Neg. LLF: 142.95289984144688
Iteration: 14, Func. Count: 122, Neg. LLF: 142.78105333628974
Iteration: 15, Func. Count: 131, Neg. LLF: 142.552483953938
Iteration: 16, Func. Count: 140, Neg. LLF: 142.43746103317395
Iteration: 17, Func. Count: 148, Neg. LLF: 142.35506020480662
Iteration: 18, Func. Count: 156, Neg. LLF: 142.30516561644592
Iteration: 19, Func. Count: 164, Neg. LLF: 142.27873900239933
Iteration: 20, Func. Count: 172, Neg. LLF: 142.27432757317843
Iteration: 21, Func. Count: 180, Neg. LLF: 142.2736922734303
Iteration: 22, Func. Count: 188, Neg. LLF: 142.27347495461893
Iteration: 23, Func. Count: 196, Neg. LLF: 142.27345952759816
Iteration: 24, Func. Count: 203, Neg. LLF: 142.27345952761488
Optimization terminated successfully (Exit mode 0)
Current function value: 142.27345952759816
Iterations: 24
Function evaluations: 203
Gradient evaluations: 24
Iteration: 1, Func. Count: 10, Neg. LLF: 145.25263541503742
Iteration: 2, Func. Count: 20, Neg. LLF: 148.95386645118646
Iteration: 3, Func. Count: 30, Neg. LLF: 143.03178201588577
Iteration: 4, Func. Count: 40, Neg. LLF: 142.73172109606497
Iteration: 5, Func. Count: 50, Neg. LLF: 142.68633920584958
Iteration: 6, Func. Count: 59, Neg. LLF: 142.69169354722618
Iteration: 7, Func. Count: 69, Neg. LLF: 142.6875177620951
Iteration: 8, Func. Count: 79, Neg. LLF: 142.68250021268818
Iteration: 9, Func. Count: 88, Neg. LLF: 142.65555000402463
Iteration: 10, Func. Count: 97, Neg. LLF: 142.45343788670138
Iteration: 11, Func. Count: 106, Neg. LLF: 142.31749782458795
Iteration: 12, Func. Count: 115, Neg. LLF: 142.3035927968726
Iteration: 13, Func. Count: 124, Neg. LLF: 142.2781732199421
Iteration: 14, Func. Count: 133, Neg. LLF: 142.27409874932653
Iteration: 15, Func. Count: 142, Neg. LLF: 142.27349885373454
Iteration: 16, Func. Count: 151, Neg. LLF: 142.27346207801222
Iteration: 17, Func. Count: 160, Neg. LLF: 142.2734592079701
Iteration: 18, Func. Count: 168, Neg. LLF: 142.27345921944706
Optimization terminated successfully (Exit mode 0)
Current function value: 142.2734592079701
Iterations: 18
Function evaluations: 168
Gradient evaluations: 18
Iteration: 1, Func. Count: 11, Neg. LLF: 145.91775969425345
Iteration: 2, Func. Count: 23, Neg. LLF: 149.1127300900873
Iteration: 3, Func. Count: 34, Neg. LLF: 142.80603433291253
Iteration: 4, Func. Count: 45, Neg. LLF: 142.61605934358641
Iteration: 5, Func. Count: 56, Neg. LLF: 142.4789901443504
Iteration: 6, Func. Count: 66, Neg. LLF: 142.53025491892808
Iteration: 7, Func. Count: 77, Neg. LLF: 142.48786880090148
Iteration: 8, Func. Count: 88, Neg. LLF: 142.46776216010878
Iteration: 9, Func. Count: 98, Neg. LLF: 142.4641989232739
Iteration: 10, Func. Count: 108, Neg. LLF: 142.44721525348137
Iteration: 11, Func. Count: 118, Neg. LLF: 142.43820170163158
Iteration: 12, Func. Count: 128, Neg. LLF: 142.42711790327056
Iteration: 13, Func. Count: 138, Neg. LLF: 142.42393755909964
Iteration: 14, Func. Count: 148, Neg. LLF: 142.42210955017273
Iteration: 15, Func. Count: 158, Neg. LLF: 142.42163856985658
Iteration: 16, Func. Count: 168, Neg. LLF: 142.4216053358377
Iteration: 17, Func. Count: 177, Neg. LLF: 142.4216053358143
Optimization terminated successfully (Exit mode 0)
Current function value: 142.4216053358377
Iterations: 17
Function evaluations: 177
Gradient evaluations: 17
Iteration: 1, Func. Count: 12, Neg. LLF: 145.7901730905323
Iteration: 2, Func. Count: 25, Neg. LLF: 149.22735752413462
Iteration: 3, Func. Count: 37, Neg. LLF: 142.79395170620853
Iteration: 4, Func. Count: 49, Neg. LLF: 142.56312584201825
Iteration: 5, Func. Count: 60, Neg. LLF: 142.98642642004538
Iteration: 6, Func. Count: 72, Neg. LLF: 143.0313306333802
Iteration: 7, Func. Count: 84, Neg. LLF: 142.47694032727063
Iteration: 8, Func. Count: 95, Neg. LLF: 142.46918898662025
Iteration: 9, Func. Count: 106, Neg. LLF: 142.46648904454145
Iteration: 10, Func. Count: 117, Neg. LLF: 142.4619602598892
Iteration: 11, Func. Count: 128, Neg. LLF: 142.44725307574288
Iteration: 12, Func. Count: 139, Neg. LLF: 142.43581316570948
Iteration: 13, Func. Count: 150, Neg. LLF: 142.42506666454256
Iteration: 14, Func. Count: 161, Neg. LLF: 142.42214192892416
Iteration: 15, Func. Count: 172, Neg. LLF: 142.42164456934032
Iteration: 16, Func. Count: 183, Neg. LLF: 142.42160905124328
Iteration: 17, Func. Count: 194, Neg. LLF: 142.42160536178608
Iteration: 18, Func. Count: 204, Neg. LLF: 142.42160540400903
Optimization terminated successfully (Exit mode 0)
Current function value: 142.42160536178608
Iterations: 18
Function evaluations: 204
Gradient evaluations: 18
Iteration: 1, Func. Count: 9, Neg. LLF: 148.67438305318842
Iteration: 2, Func. Count: 19, Neg. LLF: 144.87216689742806
Iteration: 3, Func. Count: 29, Neg. LLF: 147.3533550862557
Iteration: 4, Func. Count: 39, Neg. LLF: 142.2980933802363
Iteration: 5, Func. Count: 47, Neg. LLF: 142.2222384096792
Iteration: 6, Func. Count: 55, Neg. LLF: 142.1592083323228
Iteration: 7, Func. Count: 63, Neg. LLF: 142.1461433561207
Iteration: 8, Func. Count: 71, Neg. LLF: 142.13515078487535
Iteration: 9, Func. Count: 79, Neg. LLF: 142.13235725081856
Iteration: 10, Func. Count: 87, Neg. LLF: 142.12847268753777
Iteration: 11, Func. Count: 95, Neg. LLF: 142.12684017076563
Iteration: 12, Func. Count: 103, Neg. LLF: 142.12577745241256
Iteration: 13, Func. Count: 111, Neg. LLF: 142.12551955988613
Iteration: 14, Func. Count: 119, Neg. LLF: 142.12548749756078
Iteration: 15, Func. Count: 127, Neg. LLF: 142.1254858758186
Iteration: 16, Func. Count: 134, Neg. LLF: 142.1254857673039
Optimization terminated successfully (Exit mode 0)
Current function value: 142.1254858758186
Iterations: 16
Function evaluations: 134
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 146.6977425675458
Iteration: 2, Func. Count: 21, Neg. LLF: 146.5771268557276
Iteration: 3, Func. Count: 31, Neg. LLF: 142.64625706783497
Iteration: 4, Func. Count: 40, Neg. LLF: 142.1089517196705
Iteration: 5, Func. Count: 49, Neg. LLF: 142.076447844362
Iteration: 6, Func. Count: 58, Neg. LLF: 141.98173308605132
Iteration: 7, Func. Count: 67, Neg. LLF: 141.93632525798319
Iteration: 8, Func. Count: 76, Neg. LLF: 141.83441264575706
Iteration: 9, Func. Count: 85, Neg. LLF: 141.7489646963185
Iteration: 10, Func. Count: 94, Neg. LLF: 141.71989304809975
Iteration: 11, Func. Count: 104, Neg. LLF: 141.59486974408472
Iteration: 12, Func. Count: 113, Neg. LLF: 141.56980653263435
Iteration: 13, Func. Count: 122, Neg. LLF: 141.56991322962133
Iteration: 14, Func. Count: 132, Neg. LLF: 141.56707361340293
Iteration: 15, Func. Count: 141, Neg. LLF: 141.56705854045947
Iteration: 16, Func. Count: 149, Neg. LLF: 141.56705854042198
Optimization terminated successfully (Exit mode 0)
Current function value: 141.56705854045947
Iterations: 16
Function evaluations: 149
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 146.59100657560774
Iteration: 2, Func. Count: 23, Neg. LLF: 146.5681018093231
Iteration: 3, Func. Count: 34, Neg. LLF: 141.86561964852996
Iteration: 4, Func. Count: 44, Neg. LLF: 141.67133590394718
Iteration: 5, Func. Count: 54, Neg. LLF: 142.43520372759335
Iteration: 6, Func. Count: 66, Neg. LLF: 141.6504975078569
Iteration: 7, Func. Count: 77, Neg. LLF: 141.55756472105892
Iteration: 8, Func. Count: 87, Neg. LLF: 141.62622794302584
Iteration: 9, Func. Count: 98, Neg. LLF: 141.5063619794771
Iteration: 10, Func. Count: 108, Neg. LLF: 141.49424100538846
Iteration: 11, Func. Count: 118, Neg. LLF: 141.4904644343689
Iteration: 12, Func. Count: 128, Neg. LLF: 141.48380987415302
Iteration: 13, Func. Count: 138, Neg. LLF: 141.48364465014353
Iteration: 14, Func. Count: 148, Neg. LLF: 141.48363472141236
Iteration: 15, Func. Count: 158, Neg. LLF: 141.4836340128473
Optimization terminated successfully (Exit mode 0)
Current function value: 141.4836340128473
Iterations: 15
Function evaluations: 158
Gradient evaluations: 15
Iteration: 1, Func. Count: 12, Neg. LLF: 145.87453982275753
Iteration: 2, Func. Count: 25, Neg. LLF: 147.23755404408917
Iteration: 3, Func. Count: 37, Neg. LLF: 142.36525839921825
Iteration: 4, Func. Count: 48, Neg. LLF: 141.86911767461336
Iteration: 5, Func. Count: 59, Neg. LLF: 152.3202209405852
Iteration: 6, Func. Count: 72, Neg. LLF: 141.6866462365973
Iteration: 7, Func. Count: 83, Neg. LLF: 141.64505128625257
Iteration: 8, Func. Count: 94, Neg. LLF: 141.697712923866
Iteration: 9, Func. Count: 106, Neg. LLF: 141.58987205956666
Iteration: 10, Func. Count: 117, Neg. LLF: 141.55503975076903
Iteration: 11, Func. Count: 128, Neg. LLF: 141.53667181146074
Iteration: 12, Func. Count: 139, Neg. LLF: 141.5096771745558
Iteration: 13, Func. Count: 150, Neg. LLF: 141.4890883769777
Iteration: 14, Func. Count: 161, Neg. LLF: 141.48607425157286
Iteration: 15, Func. Count: 172, Neg. LLF: 141.48408159196185
Iteration: 16, Func. Count: 183, Neg. LLF: 141.4836577799638
Iteration: 17, Func. Count: 194, Neg. LLF: 141.4836341305268
Iteration: 18, Func. Count: 204, Neg. LLF: 141.48363420088776
Optimization terminated successfully (Exit mode 0)
Current function value: 141.4836341305268
Iterations: 18
Function evaluations: 204
Gradient evaluations: 18
Iteration: 1, Func. Count: 13, Neg. LLF: 144.76448054058554
Iteration: 2, Func. Count: 27, Neg. LLF: 146.66455079444083
Iteration: 3, Func. Count: 40, Neg. LLF: 141.96346535255975
Iteration: 4, Func. Count: 52, Neg. LLF: 141.8071016841408
Iteration: 5, Func. Count: 64, Neg. LLF: 143.530447922417
Iteration: 6, Func. Count: 77, Neg. LLF: 141.66097209403566
Iteration: 7, Func. Count: 89, Neg. LLF: 141.6077916938988
Iteration: 8, Func. Count: 101, Neg. LLF: 141.67216176678656
Iteration: 9, Func. Count: 114, Neg. LLF: 141.55421309218062
Iteration: 10, Func. Count: 126, Neg. LLF: 141.5111307200937
Iteration: 11, Func. Count: 138, Neg. LLF: 141.500293394182
Iteration: 12, Func. Count: 150, Neg. LLF: 141.48656459456052
Iteration: 13, Func. Count: 162, Neg. LLF: 141.48398477899514
Iteration: 14, Func. Count: 174, Neg. LLF: 141.48367594754012
Iteration: 15, Func. Count: 186, Neg. LLF: 141.4836382662346
Iteration: 16, Func. Count: 198, Neg. LLF: 141.48363397638806
Iteration: 17, Func. Count: 209, Neg. LLF: 141.48363403359104
Optimization terminated successfully (Exit mode 0)
Current function value: 141.48363397638806
Iterations: 17
Function evaluations: 209
Gradient evaluations: 17
Iteration: 1, Func. Count: 10, Neg. LLF: 148.8261934462438
Iteration: 2, Func. Count: 21, Neg. LLF: 144.8955643503364
Iteration: 3, Func. Count: 32, Neg. LLF: 142.91356729112474
Iteration: 4, Func. Count: 41, Neg. LLF: 142.19933234274313
Iteration: 5, Func. Count: 50, Neg. LLF: 144.10002885464948
Iteration: 6, Func. Count: 60, Neg. LLF: 141.92339435156688
Iteration: 7, Func. Count: 69, Neg. LLF: 141.90062169714642
Iteration: 8, Func. Count: 78, Neg. LLF: 141.8974964383708
Iteration: 9, Func. Count: 87, Neg. LLF: 141.89716002126855
Iteration: 10, Func. Count: 96, Neg. LLF: 141.89627659682907
Iteration: 11, Func. Count: 105, Neg. LLF: 141.89589492786754
Iteration: 12, Func. Count: 114, Neg. LLF: 141.8957942056878
Iteration: 13, Func. Count: 123, Neg. LLF: 141.89578933048674
Iteration: 14, Func. Count: 131, Neg. LLF: 141.8957892487547
Optimization terminated successfully (Exit mode 0)
Current function value: 141.89578933048674
Iterations: 14
Function evaluations: 131
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 145.89620022443705
Iteration: 2, Func. Count: 23, Neg. LLF: 145.1963837827766
Iteration: 3, Func. Count: 34, Neg. LLF: 143.8756488204348
Iteration: 4, Func. Count: 45, Neg. LLF: 141.9103473354899
Iteration: 5, Func. Count: 55, Neg. LLF: 142.08146177152418
Iteration: 6, Func. Count: 66, Neg. LLF: 141.9772510292085
Iteration: 7, Func. Count: 77, Neg. LLF: 141.78372304207056
Iteration: 8, Func. Count: 87, Neg. LLF: 141.70155852866168
Iteration: 9, Func. Count: 97, Neg. LLF: 141.6616766865995
Iteration: 10, Func. Count: 107, Neg. LLF: 141.63422882944332
Iteration: 11, Func. Count: 117, Neg. LLF: 141.5785822728905
Iteration: 12, Func. Count: 127, Neg. LLF: 141.5699334434474
Iteration: 13, Func. Count: 137, Neg. LLF: 141.56734487354447
Iteration: 14, Func. Count: 147, Neg. LLF: 141.56709855832756
Iteration: 15, Func. Count: 157, Neg. LLF: 141.56707211108184
Iteration: 16, Func. Count: 167, Neg. LLF: 141.56706452606824
Iteration: 17, Func. Count: 177, Neg. LLF: 141.56705905753412
Iteration: 18, Func. Count: 186, Neg. LLF: 141.5670590575761
Optimization terminated successfully (Exit mode 0)
Current function value: 141.56705905753412
Iterations: 18
Function evaluations: 186
Gradient evaluations: 18
Iteration: 1, Func. Count: 12, Neg. LLF: 146.9844007300642
Iteration: 2, Func. Count: 24, Neg. LLF: 146.95294532982462
Iteration: 3, Func. Count: 36, Neg. LLF: 144.1180472746232
Iteration: 4, Func. Count: 48, Neg. LLF: 141.61042229623334
Iteration: 5, Func. Count: 59, Neg. LLF: 144.9684963654288
Iteration: 6, Func. Count: 71, Neg. LLF: 142.11302186740943
Iteration: 7, Func. Count: 84, Neg. LLF: 141.91558602867738
Iteration: 8, Func. Count: 96, Neg. LLF: 141.41711013583614
Iteration: 9, Func. Count: 107, Neg. LLF: 141.40798665647677
Iteration: 10, Func. Count: 118, Neg. LLF: 141.38868510952986
Iteration: 11, Func. Count: 129, Neg. LLF: 141.38686260337477
Iteration: 12, Func. Count: 140, Neg. LLF: 141.38505895436012
Iteration: 13, Func. Count: 151, Neg. LLF: 141.38465408831638
Iteration: 14, Func. Count: 162, Neg. LLF: 141.38448625384055
Iteration: 15, Func. Count: 173, Neg. LLF: 141.38448071112762
Iteration: 16, Func. Count: 183, Neg. LLF: 141.38448071115707
Optimization terminated successfully (Exit mode 0)
Current function value: 141.38448071112762
Iterations: 16
Function evaluations: 183
Gradient evaluations: 16
Iteration: 1, Func. Count: 13, Neg. LLF: 145.4603107628646
Iteration: 2, Func. Count: 27, Neg. LLF: 145.5105908600753
Iteration: 3, Func. Count: 40, Neg. LLF: 145.32027928079282
Iteration: 4, Func. Count: 53, Neg. LLF: 142.51060600632647
Iteration: 5, Func. Count: 65, Neg. LLF: 142.1202147497862
Iteration: 6, Func. Count: 77, Neg. LLF: 141.81547947376063
Iteration: 7, Func. Count: 89, Neg. LLF: 141.76142681207713
Iteration: 8, Func. Count: 101, Neg. LLF: 142.92919547329953
Iteration: 9, Func. Count: 115, Neg. LLF: 141.50627581719604
Iteration: 10, Func. Count: 127, Neg. LLF: 141.41898493805158
Iteration: 11, Func. Count: 139, Neg. LLF: 141.40976051492655
Iteration: 12, Func. Count: 151, Neg. LLF: 141.3964800462571
Iteration: 13, Func. Count: 163, Neg. LLF: 141.39022384798233
Iteration: 14, Func. Count: 175, Neg. LLF: 141.3875918556819
Iteration: 15, Func. Count: 187, Neg. LLF: 141.38569123511172
Iteration: 16, Func. Count: 199, Neg. LLF: 141.38477955081612
Iteration: 17, Func. Count: 211, Neg. LLF: 141.3845011611046
Iteration: 18, Func. Count: 223, Neg. LLF: 141.3844832374011
Iteration: 19, Func. Count: 235, Neg. LLF: 141.38448064018846
Iteration: 20, Func. Count: 246, Neg. LLF: 141.3844807013712
Optimization terminated successfully (Exit mode 0)
Current function value: 141.38448064018846
Iterations: 20
Function evaluations: 246
Gradient evaluations: 20
Iteration: 1, Func. Count: 14, Neg. LLF: 144.17127894655093
Iteration: 2, Func. Count: 29, Neg. LLF: 147.1025855639691
Iteration: 3, Func. Count: 43, Neg. LLF: 142.6084734944603
Iteration: 4, Func. Count: 57, Neg. LLF: 142.82376208101087
Iteration: 5, Func. Count: 71, Neg. LLF: 141.93157471291443
Iteration: 6, Func. Count: 84, Neg. LLF: 141.82600822216776
Iteration: 7, Func. Count: 98, Neg. LLF: 143.46869659689125
Iteration: 8, Func. Count: 112, Neg. LLF: 141.46321341356045
Iteration: 9, Func. Count: 125, Neg. LLF: 141.43090958115113
Iteration: 10, Func. Count: 138, Neg. LLF: 141.4091370969566
Iteration: 11, Func. Count: 151, Neg. LLF: 141.39732411438197
Iteration: 12, Func. Count: 164, Neg. LLF: 141.38951700424246
Iteration: 13, Func. Count: 177, Neg. LLF: 141.3877058581033
Iteration: 14, Func. Count: 190, Neg. LLF: 141.38529843459656
Iteration: 15, Func. Count: 203, Neg. LLF: 141.3844947986437
Iteration: 16, Func. Count: 216, Neg. LLF: 141.3844805848247
Iteration: 17, Func. Count: 228, Neg. LLF: 141.38448062904317
Optimization terminated successfully (Exit mode 0)
Current function value: 141.3844805848247
Iterations: 17
Function evaluations: 228
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 148.44336259955006
Iteration: 2, Func. Count: 23, Neg. LLF: 145.2117655065871
Iteration: 3, Func. Count: 35, Neg. LLF: 146.2098038111148
Iteration: 4, Func. Count: 47, Neg. LLF: 142.36501310523883
Iteration: 5, Func. Count: 57, Neg. LLF: 142.35747725399156
Iteration: 6, Func. Count: 68, Neg. LLF: 142.05364994665302
Iteration: 7, Func. Count: 78, Neg. LLF: 141.93899873482314
Iteration: 8, Func. Count: 88, Neg. LLF: 141.90353769938815
Iteration: 9, Func. Count: 98, Neg. LLF: 141.89803068215116
Iteration: 10, Func. Count: 108, Neg. LLF: 141.89711359561005
Iteration: 11, Func. Count: 118, Neg. LLF: 141.89667645340495
Iteration: 12, Func. Count: 128, Neg. LLF: 141.89626904790117
Iteration: 13, Func. Count: 138, Neg. LLF: 141.89594815632415
Iteration: 14, Func. Count: 148, Neg. LLF: 141.89581175428543
Iteration: 15, Func. Count: 158, Neg. LLF: 141.89579034340824
Iteration: 16, Func. Count: 168, Neg. LLF: 141.8957889369008
Iteration: 17, Func. Count: 177, Neg. LLF: 141.89578894531525
Optimization terminated successfully (Exit mode 0)
Current function value: 141.8957889369008
Iterations: 17
Function evaluations: 177
Gradient evaluations: 17
Iteration: 1, Func. Count: 12, Neg. LLF: 145.8713339997601
Iteration: 2, Func. Count: 25, Neg. LLF: 145.21659832489794
Iteration: 3, Func. Count: 37, Neg. LLF: 143.96217984906613
Iteration: 4, Func. Count: 49, Neg. LLF: 141.90900117081273
Iteration: 5, Func. Count: 60, Neg. LLF: 142.08409139401746
Iteration: 6, Func. Count: 72, Neg. LLF: 141.97962325546558
Iteration: 7, Func. Count: 84, Neg. LLF: 141.78385976217908
Iteration: 8, Func. Count: 95, Neg. LLF: 141.707634806198
Iteration: 9, Func. Count: 106, Neg. LLF: 141.66689497639038
Iteration: 10, Func. Count: 117, Neg. LLF: 141.63611721063847
Iteration: 11, Func. Count: 128, Neg. LLF: 141.58476329406375
Iteration: 12, Func. Count: 139, Neg. LLF: 141.5718127221579
Iteration: 13, Func. Count: 150, Neg. LLF: 141.5676035073414
Iteration: 14, Func. Count: 161, Neg. LLF: 141.56710016255622
Iteration: 15, Func. Count: 172, Neg. LLF: 141.56706248817042
Iteration: 16, Func. Count: 183, Neg. LLF: 141.56705981691582
Iteration: 17, Func. Count: 194, Neg. LLF: 141.56705894980595
Optimization terminated successfully (Exit mode 0)
Current function value: 141.56705894980595
Iterations: 17
Function evaluations: 194
Gradient evaluations: 17
Iteration: 1, Func. Count: 13, Neg. LLF: 146.95424710210239
Iteration: 2, Func. Count: 26, Neg. LLF: 146.97617826494
Iteration: 3, Func. Count: 39, Neg. LLF: 144.24527130455002
Iteration: 4, Func. Count: 52, Neg. LLF: 141.64890993856585
Iteration: 5, Func. Count: 64, Neg. LLF: 144.80701192484727
Iteration: 6, Func. Count: 77, Neg. LLF: 142.11903640808566
Iteration: 7, Func. Count: 91, Neg. LLF: 142.1725929030145
Iteration: 8, Func. Count: 104, Neg. LLF: 141.41932123140845
Iteration: 9, Func. Count: 116, Neg. LLF: 141.40827947219523
Iteration: 10, Func. Count: 128, Neg. LLF: 141.39492357260525
Iteration: 11, Func. Count: 140, Neg. LLF: 141.3880170402978
Iteration: 12, Func. Count: 152, Neg. LLF: 141.3859873130867
Iteration: 13, Func. Count: 164, Neg. LLF: 141.38507677129053
Iteration: 14, Func. Count: 176, Neg. LLF: 141.38464591272964
Iteration: 15, Func. Count: 188, Neg. LLF: 141.38449733154363
Iteration: 16, Func. Count: 200, Neg. LLF: 141.38448106386696
Iteration: 17, Func. Count: 212, Neg. LLF: 141.38448039064394
Optimization terminated successfully (Exit mode 0)
Current function value: 141.38448039064394
Iterations: 17
Function evaluations: 212
Gradient evaluations: 17
Iteration: 1, Func. Count: 14, Neg. LLF: 145.4071280931663
Iteration: 2, Func. Count: 29, Neg. LLF: 145.50459215543182
Iteration: 3, Func. Count: 43, Neg. LLF: 145.4713794102247
Iteration: 4, Func. Count: 57, Neg. LLF: 142.51997772018922
Iteration: 5, Func. Count: 70, Neg. LLF: 142.13677940675927
Iteration: 6, Func. Count: 83, Neg. LLF: 141.86500357099143
Iteration: 7, Func. Count: 96, Neg. LLF: 141.8949084605983
Iteration: 8, Func. Count: 110, Neg. LLF: 142.01093471621581
Iteration: 9, Func. Count: 124, Neg. LLF: 141.44145321118435
Iteration: 10, Func. Count: 137, Neg. LLF: 141.41034277508476
Iteration: 11, Func. Count: 150, Neg. LLF: 141.39799873092718
Iteration: 12, Func. Count: 163, Neg. LLF: 141.39140623049337
Iteration: 13, Func. Count: 176, Neg. LLF: 141.38821422692146
Iteration: 14, Func. Count: 189, Neg. LLF: 141.38608239110837
Iteration: 15, Func. Count: 202, Neg. LLF: 141.38479276218015
Iteration: 16, Func. Count: 215, Neg. LLF: 141.38449852056982
Iteration: 17, Func. Count: 228, Neg. LLF: 141.38448084890643
Iteration: 18, Func. Count: 241, Neg. LLF: 141.38448033458175
Optimization terminated successfully (Exit mode 0)
Current function value: 141.38448033458175
Iterations: 18
Function evaluations: 241
Gradient evaluations: 18
Iteration: 1, Func. Count: 15, Neg. LLF: 144.1363341804617
Iteration: 2, Func. Count: 31, Neg. LLF: 147.11561418628185
Iteration: 3, Func. Count: 46, Neg. LLF: 142.58129616785283
Iteration: 4, Func. Count: 61, Neg. LLF: 142.83672326968545
Iteration: 5, Func. Count: 76, Neg. LLF: 141.91914538147006
Iteration: 6, Func. Count: 90, Neg. LLF: 141.85081308610782
Iteration: 7, Func. Count: 105, Neg. LLF: 144.2958212022207
Iteration: 8, Func. Count: 120, Neg. LLF: 141.46570087535238
Iteration: 9, Func. Count: 134, Neg. LLF: 141.43108713303366
Iteration: 10, Func. Count: 148, Neg. LLF: 141.40935883862733
Iteration: 11, Func. Count: 162, Neg. LLF: 141.39824890681288
Iteration: 12, Func. Count: 176, Neg. LLF: 141.38915070366838
Iteration: 13, Func. Count: 190, Neg. LLF: 141.38755393819443
Iteration: 14, Func. Count: 204, Neg. LLF: 141.38547484811173
Iteration: 15, Func. Count: 218, Neg. LLF: 141.3844869187709
Iteration: 16, Func. Count: 232, Neg. LLF: 141.3844805939197
Iteration: 17, Func. Count: 245, Neg. LLF: 141.3844806381352
Optimization terminated successfully (Exit mode 0)
Current function value: 141.3844805939197
Iterations: 17
Function evaluations: 245
Gradient evaluations: 17
Iteration: 1, Func. Count: 8, Neg. LLF: 145.63629160407726
Iteration: 2, Func. Count: 17, Neg. LLF: 145.61988997184875
Iteration: 3, Func. Count: 26, Neg. LLF: 147.66533668471797
Iteration: 4, Func. Count: 35, Neg. LLF: 142.51538929368425
Iteration: 5, Func. Count: 42, Neg. LLF: 143.66143070030085
Iteration: 6, Func. Count: 50, Neg. LLF: 142.37393536758952
Iteration: 7, Func. Count: 57, Neg. LLF: 142.29676241599805
Iteration: 8, Func. Count: 64, Neg. LLF: 142.30108884529182
Iteration: 9, Func. Count: 72, Neg. LLF: 142.25085208644762
Iteration: 10, Func. Count: 79, Neg. LLF: 142.2469265546149
Iteration: 11, Func. Count: 86, Neg. LLF: 142.24687989774867
Iteration: 12, Func. Count: 93, Neg. LLF: 142.2468794049897
Optimization terminated successfully (Exit mode 0)
Current function value: 142.2468794049897
Iterations: 12
Function evaluations: 93
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 144.64578611767178
Iteration: 2, Func. Count: 19, Neg. LLF: 143.08108364678944
Iteration: 3, Func. Count: 28, Neg. LLF: 143.92625748166287
Iteration: 4, Func. Count: 37, Neg. LLF: 142.48735642587434
Iteration: 5, Func. Count: 45, Neg. LLF: 142.69509914935222
Iteration: 6, Func. Count: 54, Neg. LLF: 142.4570088332822
Iteration: 7, Func. Count: 62, Neg. LLF: 142.43246970261558
Iteration: 8, Func. Count: 70, Neg. LLF: 142.39114132512353
Iteration: 9, Func. Count: 78, Neg. LLF: 142.31960461655794
Iteration: 10, Func. Count: 86, Neg. LLF: 142.2621244037714
Iteration: 11, Func. Count: 94, Neg. LLF: 142.2471498424498
Iteration: 12, Func. Count: 102, Neg. LLF: 142.24689675583065
Iteration: 13, Func. Count: 110, Neg. LLF: 142.24687987577644
Iteration: 14, Func. Count: 117, Neg. LLF: 142.24687988785067
Optimization terminated successfully (Exit mode 0)
Current function value: 142.24687987577644
Iterations: 14
Function evaluations: 117
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 144.78242750175238
Iteration: 2, Func. Count: 21, Neg. LLF: 143.20893950137264
Iteration: 3, Func. Count: 31, Neg. LLF: 144.4488412285604
Iteration: 4, Func. Count: 41, Neg. LLF: 142.4252688548311
Iteration: 5, Func. Count: 50, Neg. LLF: 142.41388644060217
Iteration: 6, Func. Count: 59, Neg. LLF: 142.3936864759664
Iteration: 7, Func. Count: 68, Neg. LLF: 142.37039627751778
Iteration: 8, Func. Count: 77, Neg. LLF: 142.30777223805487
Iteration: 9, Func. Count: 86, Neg. LLF: 142.26262010493147
Iteration: 10, Func. Count: 95, Neg. LLF: 142.3957286257868
Iteration: 11, Func. Count: 105, Neg. LLF: 142.24746553441352
Iteration: 12, Func. Count: 114, Neg. LLF: 142.246939201379
Iteration: 13, Func. Count: 123, Neg. LLF: 142.24687944228782
Iteration: 14, Func. Count: 131, Neg. LLF: 142.24687944828813
Optimization terminated successfully (Exit mode 0)
Current function value: 142.24687944228782
Iterations: 14
Function evaluations: 131
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 144.6155435915926
Iteration: 2, Func. Count: 23, Neg. LLF: 144.10550006270964
Iteration: 3, Func. Count: 34, Neg. LLF: 144.32487803818182
Iteration: 4, Func. Count: 45, Neg. LLF: 142.54641440828465
Iteration: 5, Func. Count: 55, Neg. LLF: 142.4196605831308
Iteration: 6, Func. Count: 65, Neg. LLF: 142.4054703957153
Iteration: 7, Func. Count: 75, Neg. LLF: 142.3928763597778
Iteration: 8, Func. Count: 85, Neg. LLF: 142.35391301566094
Iteration: 9, Func. Count: 95, Neg. LLF: 142.30612677401896
Iteration: 10, Func. Count: 105, Neg. LLF: 142.25887804463136
Iteration: 11, Func. Count: 115, Neg. LLF: 142.28257426053685
Iteration: 12, Func. Count: 126, Neg. LLF: 142.24688911108922
Iteration: 13, Func. Count: 136, Neg. LLF: 142.24687955546153
Iteration: 14, Func. Count: 145, Neg. LLF: 142.24687958283215
Optimization terminated successfully (Exit mode 0)
Current function value: 142.24687955546153
Iterations: 14
Function evaluations: 145
Gradient evaluations: 14
Iteration: 1, Func. Count: 12, Neg. LLF: 144.76768481079475
Iteration: 2, Func. Count: 25, Neg. LLF: 143.8437685579773
Iteration: 3, Func. Count: 37, Neg. LLF: 144.4851604693944
Iteration: 4, Func. Count: 49, Neg. LLF: 142.83838255856236
Iteration: 5, Func. Count: 61, Neg. LLF: 142.42678347783894
Iteration: 6, Func. Count: 72, Neg. LLF: 142.40265666084147
Iteration: 7, Func. Count: 83, Neg. LLF: 142.39056078203959
Iteration: 8, Func. Count: 94, Neg. LLF: 142.34232495470127
Iteration: 9, Func. Count: 105, Neg. LLF: 142.3013685589315
Iteration: 10, Func. Count: 116, Neg. LLF: 142.30295738883308
Iteration: 11, Func. Count: 128, Neg. LLF: 142.24952977610363
Iteration: 12, Func. Count: 139, Neg. LLF: 142.2474144140237
Iteration: 13, Func. Count: 150, Neg. LLF: 142.2469096069932
Iteration: 14, Func. Count: 161, Neg. LLF: 142.2468805968523
Iteration: 15, Func. Count: 172, Neg. LLF: 142.24687939300946
Iteration: 16, Func. Count: 182, Neg. LLF: 142.2468794163135
Optimization terminated successfully (Exit mode 0)
Current function value: 142.24687939300946
Iterations: 16
Function evaluations: 182
Gradient evaluations: 16
Iteration: 1, Func. Count: 9, Neg. LLF: 144.4665182069948
Iteration: 2, Func. Count: 18, Neg. LLF: 147.87053477949684
Iteration: 3, Func. Count: 28, Neg. LLF: 146.4804975231264
Iteration: 4, Func. Count: 37, Neg. LLF: 142.33978960353153
Iteration: 5, Func. Count: 45, Neg. LLF: 145.9072336264705
Iteration: 6, Func. Count: 55, Neg. LLF: 143.74150529606337
Iteration: 7, Func. Count: 65, Neg. LLF: 142.1917114276885
Iteration: 8, Func. Count: 74, Neg. LLF: 142.16934941339264
Iteration: 9, Func. Count: 82, Neg. LLF: 142.1527433225176
Iteration: 10, Func. Count: 90, Neg. LLF: 142.13762722370865
Iteration: 11, Func. Count: 98, Neg. LLF: 142.12299978463037
Iteration: 12, Func. Count: 106, Neg. LLF: 142.12004257712735
Iteration: 13, Func. Count: 114, Neg. LLF: 142.1195727347675
Iteration: 14, Func. Count: 122, Neg. LLF: 142.1194644176203
Iteration: 15, Func. Count: 130, Neg. LLF: 142.11942719904465
Iteration: 16, Func. Count: 138, Neg. LLF: 142.11942463695183
Iteration: 17, Func. Count: 145, Neg. LLF: 142.1194246369671
Optimization terminated successfully (Exit mode 0)
Current function value: 142.11942463695183
Iterations: 17
Function evaluations: 145
Gradient evaluations: 17
Iteration: 1, Func. Count: 10, Neg. LLF: 144.773158984178
Iteration: 2, Func. Count: 21, Neg. LLF: 149.72040807883195
Iteration: 3, Func. Count: 31, Neg. LLF: 143.26177836231776
Iteration: 4, Func. Count: 41, Neg. LLF: 143.44734172647784
Iteration: 5, Func. Count: 51, Neg. LLF: 142.5077750768813
Iteration: 6, Func. Count: 61, Neg. LLF: 142.16759931070288
Iteration: 7, Func. Count: 70, Neg. LLF: 142.1430541176512
Iteration: 8, Func. Count: 79, Neg. LLF: 142.76843977196032
Iteration: 9, Func. Count: 90, Neg. LLF: 142.13493329813866
Iteration: 10, Func. Count: 99, Neg. LLF: 142.13436655574327
Iteration: 11, Func. Count: 108, Neg. LLF: 142.1341695522973
Iteration: 12, Func. Count: 117, Neg. LLF: 142.13297950909728
Iteration: 13, Func. Count: 126, Neg. LLF: 142.12793639004036
Iteration: 14, Func. Count: 135, Neg. LLF: 142.12025005187448
Iteration: 15, Func. Count: 144, Neg. LLF: 142.1194579792688
Iteration: 16, Func. Count: 153, Neg. LLF: 142.11942523459768
Iteration: 17, Func. Count: 162, Neg. LLF: 142.11942455258213
Optimization terminated successfully (Exit mode 0)
Current function value: 142.11942455258213
Iterations: 17
Function evaluations: 162
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 144.80278775310512
Iteration: 2, Func. Count: 23, Neg. LLF: 149.83402215366246
Iteration: 3, Func. Count: 34, Neg. LLF: 143.22743769994028
Iteration: 4, Func. Count: 45, Neg. LLF: 143.72836458561812
Iteration: 5, Func. Count: 56, Neg. LLF: 142.3929605925252
Iteration: 6, Func. Count: 67, Neg. LLF: 143.02909449201118
Iteration: 7, Func. Count: 78, Neg. LLF: 142.15356127704058
Iteration: 8, Func. Count: 88, Neg. LLF: 142.18542656856195
Iteration: 9, Func. Count: 99, Neg. LLF: 142.1353096195903
Iteration: 10, Func. Count: 109, Neg. LLF: 142.13349321404613
Iteration: 11, Func. Count: 119, Neg. LLF: 142.1332350457777
Iteration: 12, Func. Count: 129, Neg. LLF: 142.13256927508482
Iteration: 13, Func. Count: 139, Neg. LLF: 142.1314514972568
Iteration: 14, Func. Count: 149, Neg. LLF: 142.12876339145754
Iteration: 15, Func. Count: 159, Neg. LLF: 142.124876436871
Iteration: 16, Func. Count: 169, Neg. LLF: 142.12131750559186
Iteration: 17, Func. Count: 179, Neg. LLF: 142.11958294411048
Iteration: 18, Func. Count: 189, Neg. LLF: 142.11943302798562
Iteration: 19, Func. Count: 199, Neg. LLF: 142.1194247385346
Iteration: 20, Func. Count: 208, Neg. LLF: 142.11942473908755
Optimization terminated successfully (Exit mode 0)
Current function value: 142.1194247385346
Iterations: 20
Function evaluations: 208
Gradient evaluations: 20
Iteration: 1, Func. Count: 12, Neg. LLF: 144.80578864152304
Iteration: 2, Func. Count: 25, Neg. LLF: 149.7744620624107
Iteration: 3, Func. Count: 37, Neg. LLF: 143.1727630358704
Iteration: 4, Func. Count: 49, Neg. LLF: 146.17117659660389
Iteration: 5, Func. Count: 61, Neg. LLF: 142.44308461106857
Iteration: 6, Func. Count: 73, Neg. LLF: 143.1439483489682
Iteration: 7, Func. Count: 85, Neg. LLF: 142.19745926674457
Iteration: 8, Func. Count: 96, Neg. LLF: 142.17807175256232
Iteration: 9, Func. Count: 107, Neg. LLF: 142.14190513993972
Iteration: 10, Func. Count: 118, Neg. LLF: 142.12785377165858
Iteration: 11, Func. Count: 129, Neg. LLF: 142.12764887459076
Iteration: 12, Func. Count: 140, Neg. LLF: 142.127605686172
Iteration: 13, Func. Count: 151, Neg. LLF: 142.12740492664827
Iteration: 14, Func. Count: 162, Neg. LLF: 142.12720660106567
Iteration: 15, Func. Count: 173, Neg. LLF: 142.12706337317817
Iteration: 16, Func. Count: 184, Neg. LLF: 142.12703322740987
Iteration: 17, Func. Count: 195, Neg. LLF: 142.127031196258
Iteration: 18, Func. Count: 205, Neg. LLF: 142.12703122432802
Optimization terminated successfully (Exit mode 0)
Current function value: 142.127031196258
Iterations: 18
Function evaluations: 205
Gradient evaluations: 18
Iteration: 1, Func. Count: 13, Neg. LLF: 144.7554054351077
Iteration: 2, Func. Count: 27, Neg. LLF: 149.82234848996387
Iteration: 3, Func. Count: 40, Neg. LLF: 143.2678979863586
Iteration: 4, Func. Count: 53, Neg. LLF: 148.10488519296464
Iteration: 5, Func. Count: 66, Neg. LLF: 142.35823695507776
Iteration: 6, Func. Count: 79, Neg. LLF: 143.00476953093425
Iteration: 7, Func. Count: 92, Neg. LLF: 142.21652797072622
Iteration: 8, Func. Count: 104, Neg. LLF: 142.56199031018315
Iteration: 9, Func. Count: 117, Neg. LLF: 142.16537259624644
Iteration: 10, Func. Count: 129, Neg. LLF: 142.1434437700565
Iteration: 11, Func. Count: 141, Neg. LLF: 142.13432923319934
Iteration: 12, Func. Count: 153, Neg. LLF: 142.1327695732007
Iteration: 13, Func. Count: 165, Neg. LLF: 142.13255782598603
Iteration: 14, Func. Count: 177, Neg. LLF: 142.1322434369429
Iteration: 15, Func. Count: 189, Neg. LLF: 142.1318940247104
Iteration: 16, Func. Count: 201, Neg. LLF: 142.1305616708787
Iteration: 17, Func. Count: 213, Neg. LLF: 142.12788488567946
Iteration: 18, Func. Count: 225, Neg. LLF: 142.12225043243535
Iteration: 19, Func. Count: 237, Neg. LLF: 142.12038716268324
Iteration: 20, Func. Count: 249, Neg. LLF: 142.1195014405788
Iteration: 21, Func. Count: 261, Neg. LLF: 142.1194328106159
Iteration: 22, Func. Count: 273, Neg. LLF: 142.11942477988745
Iteration: 23, Func. Count: 284, Neg. LLF: 142.11942481395334
Optimization terminated successfully (Exit mode 0)
Current function value: 142.11942477988745
Iterations: 23
Function evaluations: 284
Gradient evaluations: 23
Iteration: 1, Func. Count: 10, Neg. LLF: 148.5881363131812
Iteration: 2, Func. Count: 21, Neg. LLF: 144.86078045068513
Iteration: 3, Func. Count: 32, Neg. LLF: 147.69333959264503
Iteration: 4, Func. Count: 43, Neg. LLF: 142.36747813966406
Iteration: 5, Func. Count: 53, Neg. LLF: 141.98850568785997
Iteration: 6, Func. Count: 62, Neg. LLF: 142.26722014214798
Iteration: 7, Func. Count: 72, Neg. LLF: 142.86273623404782
Iteration: 8, Func. Count: 83, Neg. LLF: 141.78326674906273
Iteration: 9, Func. Count: 92, Neg. LLF: 141.7492710499853
Iteration: 10, Func. Count: 101, Neg. LLF: 141.74464665202365
Iteration: 11, Func. Count: 110, Neg. LLF: 141.73623802753775
Iteration: 12, Func. Count: 119, Neg. LLF: 141.73344196520557
Iteration: 13, Func. Count: 128, Neg. LLF: 141.73247121837966
Iteration: 14, Func. Count: 137, Neg. LLF: 141.7321836509148
Iteration: 15, Func. Count: 146, Neg. LLF: 141.73203702140748
Iteration: 16, Func. Count: 155, Neg. LLF: 141.7320018295203
Iteration: 17, Func. Count: 164, Neg. LLF: 141.7319969199296
Iteration: 18, Func. Count: 172, Neg. LLF: 141.73199682777914
Optimization terminated successfully (Exit mode 0)
Current function value: 141.7319969199296
Iterations: 18
Function evaluations: 172
Gradient evaluations: 18
Iteration: 1, Func. Count: 11, Neg. LLF: 148.07899011086434
Iteration: 2, Func. Count: 23, Neg. LLF: 144.48203557707333
Iteration: 3, Func. Count: 35, Neg. LLF: 142.5956892710681
Iteration: 4, Func. Count: 46, Neg. LLF: 141.8664269111306
Iteration: 5, Func. Count: 56, Neg. LLF: 142.25065806337562
Iteration: 6, Func. Count: 67, Neg. LLF: 145.92285046015513
Iteration: 7, Func. Count: 78, Neg. LLF: 141.5564149443651
Iteration: 8, Func. Count: 88, Neg. LLF: 141.62884915424007
Iteration: 9, Func. Count: 99, Neg. LLF: 141.52181538931669
Iteration: 10, Func. Count: 109, Neg. LLF: 141.51221664585535
Iteration: 11, Func. Count: 119, Neg. LLF: 141.49731664785767
Iteration: 12, Func. Count: 129, Neg. LLF: 141.48658402882705
Iteration: 13, Func. Count: 139, Neg. LLF: 141.47604955652855
Iteration: 14, Func. Count: 149, Neg. LLF: 141.4701915947181
Iteration: 15, Func. Count: 159, Neg. LLF: 141.4692599418264
Iteration: 16, Func. Count: 169, Neg. LLF: 141.4692260219158
Iteration: 17, Func. Count: 179, Neg. LLF: 141.46922068894463
Iteration: 18, Func. Count: 189, Neg. LLF: 141.46921930907507
Iteration: 19, Func. Count: 198, Neg. LLF: 141.4692193090596
Optimization terminated successfully (Exit mode 0)
Current function value: 141.46921930907507
Iterations: 19
Function evaluations: 198
Gradient evaluations: 19
Iteration: 1, Func. Count: 12, Neg. LLF: 147.37728687905738
Iteration: 2, Func. Count: 24, Neg. LLF: 144.52466343913994
Iteration: 3, Func. Count: 37, Neg. LLF: 143.75290231562443
Iteration: 4, Func. Count: 49, Neg. LLF: 142.5630600396545
Iteration: 5, Func. Count: 61, Neg. LLF: 143.24728013787768
Iteration: 6, Func. Count: 73, Neg. LLF: 142.4451634752359
Iteration: 7, Func. Count: 85, Neg. LLF: 141.56286103607653
Iteration: 8, Func. Count: 96, Neg. LLF: 141.54130301761944
Iteration: 9, Func. Count: 107, Neg. LLF: 141.52418150641006
Iteration: 10, Func. Count: 118, Neg. LLF: 141.5166317543977
Iteration: 11, Func. Count: 129, Neg. LLF: 141.5026903965895
Iteration: 12, Func. Count: 140, Neg. LLF: 141.4852610511902
Iteration: 13, Func. Count: 151, Neg. LLF: 141.4744431521485
Iteration: 14, Func. Count: 162, Neg. LLF: 141.46967931932946
Iteration: 15, Func. Count: 173, Neg. LLF: 141.46927150222973
Iteration: 16, Func. Count: 184, Neg. LLF: 141.46922732245574
Iteration: 17, Func. Count: 195, Neg. LLF: 141.46921979060878
Iteration: 18, Func. Count: 206, Neg. LLF: 141.46921923518582
Optimization terminated successfully (Exit mode 0)
Current function value: 141.46921923518582
Iterations: 18
Function evaluations: 206
Gradient evaluations: 18
Iteration: 1, Func. Count: 13, Neg. LLF: 146.86751062771324
Iteration: 2, Func. Count: 27, Neg. LLF: 147.64016593699986
Iteration: 3, Func. Count: 40, Neg. LLF: 146.92281285549723
Iteration: 4, Func. Count: 53, Neg. LLF: 142.7976328702643
Iteration: 5, Func. Count: 66, Neg. LLF: 142.1680417174764
Iteration: 6, Func. Count: 79, Neg. LLF: 142.0560101415715
Iteration: 7, Func. Count: 92, Neg. LLF: 141.7828478295484
Iteration: 8, Func. Count: 104, Neg. LLF: 141.6885150439319
Iteration: 9, Func. Count: 116, Neg. LLF: 141.92479119029775
Iteration: 10, Func. Count: 129, Neg. LLF: 141.54635774191195
Iteration: 11, Func. Count: 141, Neg. LLF: 141.53667493786583
Iteration: 12, Func. Count: 153, Neg. LLF: 141.52366907511572
Iteration: 13, Func. Count: 165, Neg. LLF: 141.49763648237732
Iteration: 14, Func. Count: 177, Neg. LLF: 141.48511537990774
Iteration: 15, Func. Count: 189, Neg. LLF: 141.4765733454263
Iteration: 16, Func. Count: 201, Neg. LLF: 141.4706668414969
Iteration: 17, Func. Count: 213, Neg. LLF: 141.46957903917132
Iteration: 18, Func. Count: 225, Neg. LLF: 141.4692412397679
Iteration: 19, Func. Count: 237, Neg. LLF: 141.4692202430511
Iteration: 20, Func. Count: 249, Neg. LLF: 141.46921934285464
Optimization terminated successfully (Exit mode 0)
Current function value: 141.46921934285464
Iterations: 20
Function evaluations: 249
Gradient evaluations: 20
Iteration: 1, Func. Count: 14, Neg. LLF: 144.4910659921879
Iteration: 2, Func. Count: 29, Neg. LLF: 147.43450479260483
Iteration: 3, Func. Count: 43, Neg. LLF: 143.61983796835483
Iteration: 4, Func. Count: 57, Neg. LLF: 142.67607050320532
Iteration: 5, Func. Count: 71, Neg. LLF: 142.1410340379738
Iteration: 6, Func. Count: 85, Neg. LLF: 143.8396980743065
Iteration: 7, Func. Count: 99, Neg. LLF: 141.61898970378718
Iteration: 8, Func. Count: 112, Neg. LLF: 141.5651406894451
Iteration: 9, Func. Count: 125, Neg. LLF: 141.54853908784193
Iteration: 10, Func. Count: 138, Neg. LLF: 141.53693226604952
Iteration: 11, Func. Count: 151, Neg. LLF: 141.52484893414606
Iteration: 12, Func. Count: 164, Neg. LLF: 141.50639766380036
Iteration: 13, Func. Count: 177, Neg. LLF: 141.48457804732905
Iteration: 14, Func. Count: 190, Neg. LLF: 141.4746635664955
Iteration: 15, Func. Count: 203, Neg. LLF: 141.46956809177584
Iteration: 16, Func. Count: 216, Neg. LLF: 141.46924188183522
Iteration: 17, Func. Count: 229, Neg. LLF: 141.46922055220304
Iteration: 18, Func. Count: 242, Neg. LLF: 141.46921925894188
Iteration: 19, Func. Count: 254, Neg. LLF: 141.4692193258063
Optimization terminated successfully (Exit mode 0)
Current function value: 141.46921925894188
Iterations: 19
Function evaluations: 254
Gradient evaluations: 19
Iteration: 1, Func. Count: 11, Neg. LLF: 148.61732133049674
Iteration: 2, Func. Count: 23, Neg. LLF: 144.94859728869613
Iteration: 3, Func. Count: 35, Neg. LLF: 143.56594172397863
Iteration: 4, Func. Count: 47, Neg. LLF: 142.1142740340089
Iteration: 5, Func. Count: 58, Neg. LLF: 144.91192877329576
Iteration: 6, Func. Count: 70, Neg. LLF: 141.4281322060185
Iteration: 7, Func. Count: 80, Neg. LLF: 141.38632777507348
Iteration: 8, Func. Count: 90, Neg. LLF: 141.37833538508696
Iteration: 9, Func. Count: 100, Neg. LLF: 141.3782492407712
Iteration: 10, Func. Count: 110, Neg. LLF: 141.37822937795556
Iteration: 11, Func. Count: 120, Neg. LLF: 141.37821636130744
Iteration: 12, Func. Count: 130, Neg. LLF: 141.37820277022098
Iteration: 13, Func. Count: 140, Neg. LLF: 141.37819860139922
Iteration: 14, Func. Count: 150, Neg. LLF: 141.37819790250694
Optimization terminated successfully (Exit mode 0)
Current function value: 141.37819790250694
Iterations: 14
Function evaluations: 150
Gradient evaluations: 14
Iteration: 1, Func. Count: 12, Neg. LLF: 146.92396178507855
Iteration: 2, Func. Count: 25, Neg. LLF: 144.29506630609717
Iteration: 3, Func. Count: 38, Neg. LLF: 142.1586117277608
Iteration: 4, Func. Count: 49, Neg. LLF: 144.9895966037614
Iteration: 5, Func. Count: 62, Neg. LLF: 163.64051662065225
Iteration: 6, Func. Count: 75, Neg. LLF: 142.09603873513296
Iteration: 7, Func. Count: 87, Neg. LLF: 141.38828343063625
Iteration: 8, Func. Count: 98, Neg. LLF: 141.37953374086234
Iteration: 9, Func. Count: 109, Neg. LLF: 141.3786465549087
Iteration: 10, Func. Count: 120, Neg. LLF: 141.3783548338921
Iteration: 11, Func. Count: 131, Neg. LLF: 141.37823751490424
Iteration: 12, Func. Count: 142, Neg. LLF: 141.37821871339597
Iteration: 13, Func. Count: 153, Neg. LLF: 141.37821349135265
Iteration: 14, Func. Count: 164, Neg. LLF: 141.37820679488564
Iteration: 15, Func. Count: 175, Neg. LLF: 141.37820082811842
Iteration: 16, Func. Count: 186, Neg. LLF: 141.37819824273225
Iteration: 17, Func. Count: 196, Neg. LLF: 141.37819824968466
Optimization terminated successfully (Exit mode 0)
Current function value: 141.37819824273225
Iterations: 17
Function evaluations: 196
Gradient evaluations: 17
Iteration: 1, Func. Count: 13, Neg. LLF: 146.95026592576843
Iteration: 2, Func. Count: 26, Neg. LLF: 144.20581129316375
Iteration: 3, Func. Count: 40, Neg. LLF: 143.45022762274158
Iteration: 4, Func. Count: 53, Neg. LLF: 145.70264688783456
Iteration: 5, Func. Count: 66, Neg. LLF: 141.87681194962977
Iteration: 6, Func. Count: 79, Neg. LLF: 145.0960973001269
Iteration: 7, Func. Count: 93, Neg. LLF: 141.40723407234742
Iteration: 8, Func. Count: 105, Neg. LLF: 141.86904555330952
Iteration: 9, Func. Count: 118, Neg. LLF: 141.3824606296961
Iteration: 10, Func. Count: 130, Neg. LLF: 141.37939372171678
Iteration: 11, Func. Count: 142, Neg. LLF: 141.37900067668102
Iteration: 12, Func. Count: 154, Neg. LLF: 141.37880910779757
Iteration: 13, Func. Count: 166, Neg. LLF: 141.37846104827307
Iteration: 14, Func. Count: 178, Neg. LLF: 141.37824547477706
Iteration: 15, Func. Count: 190, Neg. LLF: 141.3782057029123
Iteration: 16, Func. Count: 202, Neg. LLF: 141.3781987038533
Iteration: 17, Func. Count: 214, Neg. LLF: 141.3781979125493
Optimization terminated successfully (Exit mode 0)
Current function value: 141.3781979125493
Iterations: 17
Function evaluations: 214
Gradient evaluations: 17
Iteration: 1, Func. Count: 14, Neg. LLF: 147.61207578361484
Iteration: 2, Func. Count: 28, Neg. LLF: 142.78726483797655
Iteration: 3, Func. Count: 42, Neg. LLF: 145.85972220768923
Iteration: 4, Func. Count: 56, Neg. LLF: 143.3020237735786
Iteration: 5, Func. Count: 70, Neg. LLF: 143.38292920384592
Iteration: 6, Func. Count: 84, Neg. LLF: 141.87962599498266
Iteration: 7, Func. Count: 98, Neg. LLF: 141.81278800196796
Iteration: 8, Func. Count: 112, Neg. LLF: 141.39588030928485
Iteration: 9, Func. Count: 125, Neg. LLF: 142.9015861975314
Iteration: 10, Func. Count: 140, Neg. LLF: 141.37887578444764
Iteration: 11, Func. Count: 153, Neg. LLF: 141.37869660659885
Iteration: 12, Func. Count: 166, Neg. LLF: 141.37854810672647
Iteration: 13, Func. Count: 179, Neg. LLF: 141.37838854759988
Iteration: 14, Func. Count: 192, Neg. LLF: 141.37822850132906
Iteration: 15, Func. Count: 205, Neg. LLF: 141.37819979219745
Iteration: 16, Func. Count: 218, Neg. LLF: 141.37819790263018
Iteration: 17, Func. Count: 230, Neg. LLF: 141.3781979805346
Optimization terminated successfully (Exit mode 0)
Current function value: 141.37819790263018
Iterations: 17
Function evaluations: 230
Gradient evaluations: 17
Iteration: 1, Func. Count: 15, Neg. LLF: 144.45955710404198
Iteration: 2, Func. Count: 31, Neg. LLF: 145.37356740791
Iteration: 3, Func. Count: 46, Neg. LLF: 144.18701580604582
Iteration: 4, Func. Count: 61, Neg. LLF: 142.70479888441636
Iteration: 5, Func. Count: 76, Neg. LLF: 141.69785227442833
Iteration: 6, Func. Count: 90, Neg. LLF: 141.81250958683012
Iteration: 7, Func. Count: 105, Neg. LLF: 156.77135101278708
Iteration: 8, Func. Count: 120, Neg. LLF: 141.42707402848447
Iteration: 9, Func. Count: 134, Neg. LLF: 141.39164418436673
Iteration: 10, Func. Count: 148, Neg. LLF: 141.38184121488618
Iteration: 11, Func. Count: 162, Neg. LLF: 141.37918002288075
Iteration: 12, Func. Count: 176, Neg. LLF: 141.3783033101698
Iteration: 13, Func. Count: 190, Neg. LLF: 141.37821297324268
Iteration: 14, Func. Count: 204, Neg. LLF: 141.37819900740402
Iteration: 15, Func. Count: 217, Neg. LLF: 141.37819905800737
Optimization terminated successfully (Exit mode 0)
Current function value: 141.37819900740402
Iterations: 15
Function evaluations: 217
Gradient evaluations: 15
Iteration: 1, Func. Count: 12, Neg. LLF: 145.66352936491597
Iteration: 2, Func. Count: 24, Neg. LLF: 146.17651173328193
Iteration: 3, Func. Count: 36, Neg. LLF: 147.602958161201
Iteration: 4, Func. Count: 48, Neg. LLF: 143.13946804327676
Iteration: 5, Func. Count: 60, Neg. LLF: 145.39549968398302
Iteration: 6, Func. Count: 72, Neg. LLF: 142.77731301568775
Iteration: 7, Func. Count: 84, Neg. LLF: 142.03150606315745
Iteration: 8, Func. Count: 96, Neg. LLF: 141.185613035287
Iteration: 9, Func. Count: 107, Neg. LLF: 141.47638369453622
Iteration: 10, Func. Count: 119, Neg. LLF: 141.16909024787685
Iteration: 11, Func. Count: 131, Neg. LLF: 141.11375012351183
Iteration: 12, Func. Count: 142, Neg. LLF: 141.10932692967276
Iteration: 13, Func. Count: 153, Neg. LLF: 141.10835950502758
Iteration: 14, Func. Count: 164, Neg. LLF: 141.10781880202234
Iteration: 15, Func. Count: 175, Neg. LLF: 141.10647687061493
Iteration: 16, Func. Count: 186, Neg. LLF: 141.1062525506672
Iteration: 17, Func. Count: 197, Neg. LLF: 141.10622256850596
Iteration: 18, Func. Count: 208, Neg. LLF: 141.10622180565528
Optimization terminated successfully (Exit mode 0)
Current function value: 141.10622180565528
Iterations: 18
Function evaluations: 208
Gradient evaluations: 18
Iteration: 1, Func. Count: 13, Neg. LLF: 145.27524136390676
Iteration: 2, Func. Count: 27, Neg. LLF: 146.17645226861637
Iteration: 3, Func. Count: 40, Neg. LLF: 145.53513677566858
Iteration: 4, Func. Count: 53, Neg. LLF: 141.91311976797692
Iteration: 5, Func. Count: 66, Neg. LLF: 142.21662021899886
Iteration: 6, Func. Count: 79, Neg. LLF: 142.79206733995036
Iteration: 7, Func. Count: 92, Neg. LLF: 141.99782479891795
Iteration: 8, Func. Count: 105, Neg. LLF: 141.15002954825948
Iteration: 9, Func. Count: 117, Neg. LLF: 141.12427777023694
Iteration: 10, Func. Count: 129, Neg. LLF: 141.11417912611287
Iteration: 11, Func. Count: 141, Neg. LLF: 141.11180240491456
Iteration: 12, Func. Count: 153, Neg. LLF: 141.11008394603653
Iteration: 13, Func. Count: 165, Neg. LLF: 141.10867919849764
Iteration: 14, Func. Count: 177, Neg. LLF: 141.1066496227366
Iteration: 15, Func. Count: 189, Neg. LLF: 141.10626141888275
Iteration: 16, Func. Count: 201, Neg. LLF: 141.10622434844043
Iteration: 17, Func. Count: 213, Neg. LLF: 141.10622195401837
Iteration: 18, Func. Count: 224, Neg. LLF: 141.10622196923492
Optimization terminated successfully (Exit mode 0)
Current function value: 141.10622195401837
Iterations: 18
Function evaluations: 224
Gradient evaluations: 18
Iteration: 1, Func. Count: 14, Neg. LLF: 144.90352270617961
Iteration: 2, Func. Count: 29, Neg. LLF: 143.47673858279933
Iteration: 3, Func. Count: 43, Neg. LLF: 146.5440441906376
Iteration: 4, Func. Count: 57, Neg. LLF: 142.10413709648097
Iteration: 5, Func. Count: 71, Neg. LLF: 141.79103000054494
Iteration: 6, Func. Count: 85, Neg. LLF: 142.35005837419115
Iteration: 7, Func. Count: 99, Neg. LLF: 141.827361360785
Iteration: 8, Func. Count: 113, Neg. LLF: 141.23034590656968
Iteration: 9, Func. Count: 126, Neg. LLF: 141.1483689569745
Iteration: 10, Func. Count: 139, Neg. LLF: 141.16362206242678
Iteration: 11, Func. Count: 153, Neg. LLF: 141.11342232996637
Iteration: 12, Func. Count: 166, Neg. LLF: 141.11030402541556
Iteration: 13, Func. Count: 179, Neg. LLF: 141.10952296006337
Iteration: 14, Func. Count: 192, Neg. LLF: 141.10749938125986
Iteration: 15, Func. Count: 205, Neg. LLF: 141.10654096397758
Iteration: 16, Func. Count: 218, Neg. LLF: 141.10624417162293
Iteration: 17, Func. Count: 231, Neg. LLF: 141.10622297489417
Iteration: 18, Func. Count: 244, Neg. LLF: 141.1062218571405
Iteration: 19, Func. Count: 256, Neg. LLF: 141.10622187915064
Optimization terminated successfully (Exit mode 0)
Current function value: 141.1062218571405
Iterations: 19
Function evaluations: 256
Gradient evaluations: 19
Iteration: 1, Func. Count: 15, Neg. LLF: 145.47186564743745
Iteration: 2, Func. Count: 31, Neg. LLF: 143.6569223001493
Iteration: 3, Func. Count: 46, Neg. LLF: 149.2002696276254
Iteration: 4, Func. Count: 61, Neg. LLF: 142.02831051144537
Iteration: 5, Func. Count: 76, Neg. LLF: 144.77098567856558
Iteration: 6, Func. Count: 91, Neg. LLF: 142.0671519565903
Iteration: 7, Func. Count: 106, Neg. LLF: 148.00402570846023
Iteration: 8, Func. Count: 121, Neg. LLF: 141.31468564721666
Iteration: 9, Func. Count: 135, Neg. LLF: 141.14254414947683
Iteration: 10, Func. Count: 149, Neg. LLF: 141.11677381809088
Iteration: 11, Func. Count: 163, Neg. LLF: 141.11208623411773
Iteration: 12, Func. Count: 177, Neg. LLF: 141.10918321444052
Iteration: 13, Func. Count: 191, Neg. LLF: 141.10844635404806
Iteration: 14, Func. Count: 205, Neg. LLF: 141.10763806792826
Iteration: 15, Func. Count: 219, Neg. LLF: 141.1068734629776
Iteration: 16, Func. Count: 233, Neg. LLF: 141.10636516675714
Iteration: 17, Func. Count: 247, Neg. LLF: 141.1062366945572
Iteration: 18, Func. Count: 261, Neg. LLF: 141.10622263244434
Iteration: 19, Func. Count: 275, Neg. LLF: 141.1062218250288
Optimization terminated successfully (Exit mode 0)
Current function value: 141.1062218250288
Iterations: 19
Function evaluations: 275
Gradient evaluations: 19
Iteration: 1, Func. Count: 16, Neg. LLF: 145.10858291081968
Iteration: 2, Func. Count: 33, Neg. LLF: 142.99837515980394
Iteration: 3, Func. Count: 49, Neg. LLF: 153.37903090409748
Iteration: 4, Func. Count: 65, Neg. LLF: 141.86274994528142
Iteration: 5, Func. Count: 81, Neg. LLF: 142.83605668621203
Iteration: 6, Func. Count: 97, Neg. LLF: 141.73107827330034
Iteration: 7, Func. Count: 113, Neg. LLF: 141.29481455926887
Iteration: 8, Func. Count: 128, Neg. LLF: 141.50426915327154
Iteration: 9, Func. Count: 144, Neg. LLF: 141.259572622571
Iteration: 10, Func. Count: 160, Neg. LLF: 141.12045930246768
Iteration: 11, Func. Count: 175, Neg. LLF: 141.11185387581705
Iteration: 12, Func. Count: 190, Neg. LLF: 141.11010282907628
Iteration: 13, Func. Count: 205, Neg. LLF: 141.10901950070726
Iteration: 14, Func. Count: 220, Neg. LLF: 141.10775110280335
Iteration: 15, Func. Count: 235, Neg. LLF: 141.10667179549802
Iteration: 16, Func. Count: 250, Neg. LLF: 141.10628834647238
Iteration: 17, Func. Count: 265, Neg. LLF: 141.1062272309121
Iteration: 18, Func. Count: 280, Neg. LLF: 141.1062220639248
Iteration: 19, Func. Count: 294, Neg. LLF: 141.10622211528317
Optimization terminated successfully (Exit mode 0)
Current function value: 141.1062220639248
Iterations: 19
Function evaluations: 294
Gradient evaluations: 19
Iteration: 1, Func. Count: 5, Neg. LLF: 145.30004143819778
Iteration: 2, Func. Count: 10, Neg. LLF: 144.05070000663792
Iteration: 3, Func. Count: 15, Neg. LLF: 142.7681202890117
Iteration: 4, Func. Count: 19, Neg. LLF: 142.7264932233038
Iteration: 5, Func. Count: 23, Neg. LLF: 142.71141699731646
Iteration: 6, Func. Count: 27, Neg. LLF: 142.7063514194213
Iteration: 7, Func. Count: 31, Neg. LLF: 142.70622708771612
Iteration: 8, Func. Count: 35, Neg. LLF: 142.7062235662662
Iteration: 9, Func. Count: 38, Neg. LLF: 142.7062235662902
Optimization terminated successfully (Exit mode 0)
Current function value: 142.7062235662662
Iterations: 9
Function evaluations: 38
Gradient evaluations: 9
Iteration: 1, Func. Count: 5, Neg. LLF: 148.74968017670372
Iteration: 2, Func. Count: 10, Neg. LLF: 142.37081981961325
Iteration: 3, Func. Count: 14, Neg. LLF: 142.37177752900254
Iteration: 4, Func. Count: 19, Neg. LLF: 141.0911665756303
Iteration: 5, Func. Count: 23, Neg. LLF: 141.03766382023352
Iteration: 6, Func. Count: 27, Neg. LLF: 141.0282886679985
Iteration: 7, Func. Count: 31, Neg. LLF: 141.02353288155575
Iteration: 8, Func. Count: 35, Neg. LLF: 141.02351171091576
Iteration: 9, Func. Count: 38, Neg. LLF: 141.02351171091217
Optimization terminated successfully (Exit mode 0)
Current function value: 141.02351171091576
Iterations: 9
Function evaluations: 38
Gradient evaluations: 9
Iteration: 1, Func. Count: 6, Neg. LLF: 146.46975874732806
Iteration: 2, Func. Count: 13, Neg. LLF: 142.58241019315022
Iteration: 3, Func. Count: 20, Neg. LLF: 141.64394200065828
Iteration: 4, Func. Count: 25, Neg. LLF: 141.62209479224308
Iteration: 5, Func. Count: 30, Neg. LLF: 141.5063749160848
Iteration: 6, Func. Count: 35, Neg. LLF: 141.18192605028995
Iteration: 7, Func. Count: 40, Neg. LLF: 141.08674021285643
Iteration: 8, Func. Count: 45, Neg. LLF: 141.02396835128596
Iteration: 9, Func. Count: 50, Neg. LLF: 141.02370229706017
Iteration: 10, Func. Count: 55, Neg. LLF: 141.02355113479697
Iteration: 11, Func. Count: 60, Neg. LLF: 141.02351458020723
Iteration: 12, Func. Count: 65, Neg. LLF: 141.02351173635813
Iteration: 13, Func. Count: 69, Neg. LLF: 141.02351176704775
Optimization terminated successfully (Exit mode 0)
Current function value: 141.02351173635813
Iterations: 13
Function evaluations: 69
Gradient evaluations: 13
Iteration: 1, Func. Count: 7, Neg. LLF: 144.3635924092696
Iteration: 2, Func. Count: 14, Neg. LLF: 145.11108254586014
Iteration: 3, Func. Count: 22, Neg. LLF: 141.60789298412095
Iteration: 4, Func. Count: 28, Neg. LLF: 141.56317938898118
Iteration: 5, Func. Count: 34, Neg. LLF: 141.53409082761783
Iteration: 6, Func. Count: 40, Neg. LLF: 141.4099611743927
Iteration: 7, Func. Count: 46, Neg. LLF: 141.2120713687687
Iteration: 8, Func. Count: 52, Neg. LLF: 141.1122271403425
Iteration: 9, Func. Count: 58, Neg. LLF: 141.0388503570632
Iteration: 10, Func. Count: 64, Neg. LLF: 141.02876337804076
Iteration: 11, Func. Count: 70, Neg. LLF: 141.02403959646918
Iteration: 12, Func. Count: 76, Neg. LLF: 141.02361255666548
Iteration: 13, Func. Count: 82, Neg. LLF: 141.0235260105378
Iteration: 14, Func. Count: 88, Neg. LLF: 141.02351275422518
Iteration: 15, Func. Count: 94, Neg. LLF: 141.02351171019336
Iteration: 16, Func. Count: 99, Neg. LLF: 141.02351173409315
Optimization terminated successfully (Exit mode 0)
Current function value: 141.02351171019336
Iterations: 16
Function evaluations: 99
Gradient evaluations: 16
Iteration: 1, Func. Count: 8, Neg. LLF: 149.50293896498818
Iteration: 2, Func. Count: 17, Neg. LLF: 142.28862422328982
Iteration: 3, Func. Count: 25, Neg. LLF: 141.54721205477293
Iteration: 4, Func. Count: 32, Neg. LLF: 141.51204553742198
Iteration: 5, Func. Count: 39, Neg. LLF: 141.13356978709697
Iteration: 6, Func. Count: 46, Neg. LLF: 141.02921123174852
Iteration: 7, Func. Count: 53, Neg. LLF: 141.02487164054403
Iteration: 8, Func. Count: 60, Neg. LLF: 141.02384235199256
Iteration: 9, Func. Count: 67, Neg. LLF: 141.02353269249664
Iteration: 10, Func. Count: 74, Neg. LLF: 141.02351427893458
Iteration: 11, Func. Count: 81, Neg. LLF: 141.02351191474747
Iteration: 12, Func. Count: 87, Neg. LLF: 141.02351192361888
Optimization terminated successfully (Exit mode 0)
Current function value: 141.02351191474747
Iterations: 12
Function evaluations: 87
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 144.54513834010515
Iteration: 2, Func. Count: 18, Neg. LLF: 143.15696636918003
Iteration: 3, Func. Count: 27, Neg. LLF: 141.2134383196099
Iteration: 4, Func. Count: 35, Neg. LLF: 141.28215604520892
Iteration: 5, Func. Count: 44, Neg. LLF: 141.08683885822688
Iteration: 6, Func. Count: 52, Neg. LLF: 141.08067267277875
Iteration: 7, Func. Count: 60, Neg. LLF: 141.05040033058464
Iteration: 8, Func. Count: 68, Neg. LLF: 141.02759585676972
Iteration: 9, Func. Count: 76, Neg. LLF: 141.01072149703518
Iteration: 10, Func. Count: 84, Neg. LLF: 141.0061793620919
Iteration: 11, Func. Count: 92, Neg. LLF: 141.00576745948524
Iteration: 12, Func. Count: 100, Neg. LLF: 141.00568323261584
Iteration: 13, Func. Count: 108, Neg. LLF: 141.0056311318248
Iteration: 14, Func. Count: 116, Neg. LLF: 141.0056232794555
Iteration: 15, Func. Count: 123, Neg. LLF: 141.0056232795187
Optimization terminated successfully (Exit mode 0)
Current function value: 141.0056232794555
Iterations: 15
Function evaluations: 123
Gradient evaluations: 15
Iteration: 1, Func. Count: 6, Neg. LLF: 146.93804230797116
Iteration: 2, Func. Count: 12, Neg. LLF: 142.45501250451736
Iteration: 3, Func. Count: 17, Neg. LLF: 142.29932303519425
Iteration: 4, Func. Count: 23, Neg. LLF: 141.04685919040273
Iteration: 5, Func. Count: 28, Neg. LLF: 141.026218662074
Iteration: 6, Func. Count: 33, Neg. LLF: 141.0241578675475
Iteration: 7, Func. Count: 38, Neg. LLF: 141.02376781936053
Iteration: 8, Func. Count: 43, Neg. LLF: 141.02356776717804
Iteration: 9, Func. Count: 48, Neg. LLF: 141.02351371434054
Iteration: 10, Func. Count: 53, Neg. LLF: 141.02351170780798
Iteration: 11, Func. Count: 57, Neg. LLF: 141.02351181123464
Optimization terminated successfully (Exit mode 0)
Current function value: 141.02351170780798
Iterations: 11
Function evaluations: 57
Gradient evaluations: 11
Iteration: 1, Func. Count: 7, Neg. LLF: 147.20208900715912
Iteration: 2, Func. Count: 16, Neg. LLF: 144.8308875532759
Iteration: 3, Func. Count: 23, Neg. LLF: 141.64658452136155
Iteration: 4, Func. Count: 29, Neg. LLF: 141.63011358103668
Iteration: 5, Func. Count: 35, Neg. LLF: 141.61298366028254
Iteration: 6, Func. Count: 41, Neg. LLF: 141.50883425690301
Iteration: 7, Func. Count: 47, Neg. LLF: 141.15451630334806
Iteration: 8, Func. Count: 53, Neg. LLF: 141.12732039228766
Iteration: 9, Func. Count: 59, Neg. LLF: 141.05365990483958
Iteration: 10, Func. Count: 65, Neg. LLF: 141.03742069342775
Iteration: 11, Func. Count: 71, Neg. LLF: 141.02985869533168
Iteration: 12, Func. Count: 77, Neg. LLF: 141.02541797065234
Iteration: 13, Func. Count: 83, Neg. LLF: 141.02368640152943
Iteration: 14, Func. Count: 89, Neg. LLF: 141.0235213992218
Iteration: 15, Func. Count: 95, Neg. LLF: 141.02351181006566
Iteration: 16, Func. Count: 100, Neg. LLF: 141.0235118407633
Optimization terminated successfully (Exit mode 0)
Current function value: 141.02351181006566
Iterations: 16
Function evaluations: 100
Gradient evaluations: 16
Iteration: 1, Func. Count: 8, Neg. LLF: 147.16564778076153
Iteration: 2, Func. Count: 18, Neg. LLF: 144.69653051941086
Iteration: 3, Func. Count: 26, Neg. LLF: 141.60960360321238
Iteration: 4, Func. Count: 33, Neg. LLF: 141.5671189676214
Iteration: 5, Func. Count: 40, Neg. LLF: 141.5381759987397
Iteration: 6, Func. Count: 47, Neg. LLF: 141.4034696600734
Iteration: 7, Func. Count: 54, Neg. LLF: 141.2472453881297
Iteration: 8, Func. Count: 61, Neg. LLF: 141.1186207693541
Iteration: 9, Func. Count: 68, Neg. LLF: 141.05856654036432
Iteration: 10, Func. Count: 75, Neg. LLF: 141.02736638404795
Iteration: 11, Func. Count: 82, Neg. LLF: 141.02507175112996
Iteration: 12, Func. Count: 89, Neg. LLF: 141.02383211703034
Iteration: 13, Func. Count: 96, Neg. LLF: 141.0236121114826
Iteration: 14, Func. Count: 103, Neg. LLF: 141.02352578224227
Iteration: 15, Func. Count: 110, Neg. LLF: 141.02351282870657
Iteration: 16, Func. Count: 117, Neg. LLF: 141.0235116907575
Iteration: 17, Func. Count: 123, Neg. LLF: 141.02351171465062
Optimization terminated successfully (Exit mode 0)
Current function value: 141.0235116907575
Iterations: 17
Function evaluations: 123
Gradient evaluations: 17
Iteration: 1, Func. Count: 9, Neg. LLF: 147.13704567785126
Iteration: 2, Func. Count: 20, Neg. LLF: 144.59053738314736
Iteration: 3, Func. Count: 29, Neg. LLF: 141.58858467476227
Iteration: 4, Func. Count: 37, Neg. LLF: 141.54349355995348
Iteration: 5, Func. Count: 45, Neg. LLF: 141.50233112037637
Iteration: 6, Func. Count: 53, Neg. LLF: 141.4372669010942
Iteration: 7, Func. Count: 61, Neg. LLF: 141.31316071554522
Iteration: 8, Func. Count: 69, Neg. LLF: 141.07863365931604
Iteration: 9, Func. Count: 77, Neg. LLF: 141.0561791315875
Iteration: 10, Func. Count: 85, Neg. LLF: 141.02745943176876
Iteration: 11, Func. Count: 93, Neg. LLF: 141.02432627239244
Iteration: 12, Func. Count: 101, Neg. LLF: 141.02353485317053
Iteration: 13, Func. Count: 109, Neg. LLF: 141.0235206134125
Iteration: 14, Func. Count: 117, Neg. LLF: 141.02351445978198
Iteration: 15, Func. Count: 125, Neg. LLF: 141.02351195221505
Iteration: 16, Func. Count: 132, Neg. LLF: 141.0235119610969
Optimization terminated successfully (Exit mode 0)
Current function value: 141.02351195221505
Iterations: 16
Function evaluations: 132
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 147.11501528243994
Iteration: 2, Func. Count: 22, Neg. LLF: 144.52431564420593
Iteration: 3, Func. Count: 32, Neg. LLF: 141.20598173939428
Iteration: 4, Func. Count: 41, Neg. LLF: 141.14528619077743
Iteration: 5, Func. Count: 50, Neg. LLF: 141.07851347219005
Iteration: 6, Func. Count: 59, Neg. LLF: 141.06004744321788
Iteration: 7, Func. Count: 68, Neg. LLF: 141.05716850935613
Iteration: 8, Func. Count: 77, Neg. LLF: 141.04932919965518
Iteration: 9, Func. Count: 86, Neg. LLF: 141.03647040141237
Iteration: 10, Func. Count: 95, Neg. LLF: 141.0184670750093
Iteration: 11, Func. Count: 104, Neg. LLF: 141.00687023267028
Iteration: 12, Func. Count: 113, Neg. LLF: 141.0057140320156
Iteration: 13, Func. Count: 122, Neg. LLF: 141.00565631412326
Iteration: 14, Func. Count: 131, Neg. LLF: 141.0056234354155
Iteration: 15, Func. Count: 139, Neg. LLF: 141.00562343548043
Optimization terminated successfully (Exit mode 0)
Current function value: 141.0056234354155
Iterations: 15
Function evaluations: 139
Gradient evaluations: 15
Iteration: 1, Func. Count: 7, Neg. LLF: 145.58935907117183
Iteration: 2, Func. Count: 14, Neg. LLF: 142.25710252198908
Iteration: 3, Func. Count: 20, Neg. LLF: 141.37909559497663
Iteration: 4, Func. Count: 26, Neg. LLF: 142.38813686141054
Iteration: 5, Func. Count: 33, Neg. LLF: 141.0427235786349
Iteration: 6, Func. Count: 39, Neg. LLF: 141.0326225249494
Iteration: 7, Func. Count: 45, Neg. LLF: 141.02701719348073
Iteration: 8, Func. Count: 51, Neg. LLF: 141.02360381812704
Iteration: 9, Func. Count: 57, Neg. LLF: 141.02351362354582
Iteration: 10, Func. Count: 63, Neg. LLF: 141.0235116737355
Iteration: 11, Func. Count: 68, Neg. LLF: 141.02351175586855
Optimization terminated successfully (Exit mode 0)
Current function value: 141.0235116737355
Iterations: 11
Function evaluations: 68
Gradient evaluations: 11
Iteration: 1, Func. Count: 8, Neg. LLF: 147.21053038413257
Iteration: 2, Func. Count: 18, Neg. LLF: 144.8414285375739
Iteration: 3, Func. Count: 26, Neg. LLF: 141.64664343940748
Iteration: 4, Func. Count: 33, Neg. LLF: 141.63025149279508
Iteration: 5, Func. Count: 40, Neg. LLF: 141.61287749148264
Iteration: 6, Func. Count: 47, Neg. LLF: 141.52901041365203
Iteration: 7, Func. Count: 54, Neg. LLF: 141.16878661335068
Iteration: 8, Func. Count: 61, Neg. LLF: 141.13632798682227
Iteration: 9, Func. Count: 68, Neg. LLF: 141.05418429988137
Iteration: 10, Func. Count: 75, Neg. LLF: 141.03404823149447
Iteration: 11, Func. Count: 82, Neg. LLF: 141.02791350631747
Iteration: 12, Func. Count: 89, Neg. LLF: 141.02491809369184
Iteration: 13, Func. Count: 96, Neg. LLF: 141.02365174281343
Iteration: 14, Func. Count: 103, Neg. LLF: 141.02352012674984
Iteration: 15, Func. Count: 110, Neg. LLF: 141.02351179468644
Iteration: 16, Func. Count: 116, Neg. LLF: 141.02351182538055
Optimization terminated successfully (Exit mode 0)
Current function value: 141.02351179468644
Iterations: 16
Function evaluations: 116
Gradient evaluations: 16
Iteration: 1, Func. Count: 9, Neg. LLF: 147.17548811740696
Iteration: 2, Func. Count: 20, Neg. LLF: 144.70960354116602
Iteration: 3, Func. Count: 29, Neg. LLF: 141.608772427006
Iteration: 4, Func. Count: 37, Neg. LLF: 141.56669033017516
Iteration: 5, Func. Count: 45, Neg. LLF: 141.53843258327348
Iteration: 6, Func. Count: 53, Neg. LLF: 141.39530489774816
Iteration: 7, Func. Count: 61, Neg. LLF: 141.19202616404013
Iteration: 8, Func. Count: 69, Neg. LLF: 141.11747970490242
Iteration: 9, Func. Count: 77, Neg. LLF: 141.04338811296356
Iteration: 10, Func. Count: 85, Neg. LLF: 141.0305085513229
Iteration: 11, Func. Count: 93, Neg. LLF: 141.02495650356477
Iteration: 12, Func. Count: 101, Neg. LLF: 141.02404126059233
Iteration: 13, Func. Count: 109, Neg. LLF: 141.02361396763985
Iteration: 14, Func. Count: 117, Neg. LLF: 141.02352533546483
Iteration: 15, Func. Count: 125, Neg. LLF: 141.02351202524443
Iteration: 16, Func. Count: 132, Neg. LLF: 141.02351204911307
Optimization terminated successfully (Exit mode 0)
Current function value: 141.02351202524443
Iterations: 16
Function evaluations: 132
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 147.14819889206592
Iteration: 2, Func. Count: 22, Neg. LLF: 144.60102729938103
Iteration: 3, Func. Count: 32, Neg. LLF: 141.5868004343566
Iteration: 4, Func. Count: 41, Neg. LLF: 141.54193701484363
Iteration: 5, Func. Count: 50, Neg. LLF: 141.50135209530046
Iteration: 6, Func. Count: 59, Neg. LLF: 141.4334979417623
Iteration: 7, Func. Count: 68, Neg. LLF: 141.30810116023062
Iteration: 8, Func. Count: 77, Neg. LLF: 141.07999785437227
Iteration: 9, Func. Count: 86, Neg. LLF: 141.05625907952162
Iteration: 10, Func. Count: 95, Neg. LLF: 141.02620976775688
Iteration: 11, Func. Count: 104, Neg. LLF: 141.02409866044354
Iteration: 12, Func. Count: 113, Neg. LLF: 141.02354058212603
Iteration: 13, Func. Count: 122, Neg. LLF: 141.02352588683885
Iteration: 14, Func. Count: 131, Neg. LLF: 141.02351264300398
Iteration: 15, Func. Count: 140, Neg. LLF: 141.02351172817868
Optimization terminated successfully (Exit mode 0)
Current function value: 141.02351172817868
Iterations: 15
Function evaluations: 140
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 147.12712352902315
Iteration: 2, Func. Count: 24, Neg. LLF: 144.53279078809948
Iteration: 3, Func. Count: 35, Neg. LLF: 141.20333206114208
Iteration: 4, Func. Count: 45, Neg. LLF: 141.14302599195557
Iteration: 5, Func. Count: 55, Neg. LLF: 141.07846941368763
Iteration: 6, Func. Count: 65, Neg. LLF: 141.06009391298872
Iteration: 7, Func. Count: 75, Neg. LLF: 141.05723092129648
Iteration: 8, Func. Count: 85, Neg. LLF: 141.04948345117108
Iteration: 9, Func. Count: 95, Neg. LLF: 141.03653454967582
Iteration: 10, Func. Count: 105, Neg. LLF: 141.01826869517282
Iteration: 11, Func. Count: 115, Neg. LLF: 141.00666708554442
Iteration: 12, Func. Count: 125, Neg. LLF: 141.0056558960224
Iteration: 13, Func. Count: 135, Neg. LLF: 141.0056345281493
Iteration: 14, Func. Count: 145, Neg. LLF: 141.0056231391149
Iteration: 15, Func. Count: 154, Neg. LLF: 141.00562313917519
Optimization terminated successfully (Exit mode 0)
Current function value: 141.0056231391149
Iterations: 15
Function evaluations: 154
Gradient evaluations: 15
Iteration: 1, Func. Count: 8, Neg. LLF: 145.85631307397975
Iteration: 2, Func. Count: 16, Neg. LLF: 145.51699042349165
Iteration: 3, Func. Count: 26, Neg. LLF: 141.8214665958692
Iteration: 4, Func. Count: 33, Neg. LLF: 141.39361717809297
Iteration: 5, Func. Count: 40, Neg. LLF: 141.0956592769459
Iteration: 6, Func. Count: 47, Neg. LLF: 141.0612104827166
Iteration: 7, Func. Count: 54, Neg. LLF: 141.03029395397792
Iteration: 8, Func. Count: 61, Neg. LLF: 141.02407609184064
Iteration: 9, Func. Count: 68, Neg. LLF: 141.02351371521897
Iteration: 10, Func. Count: 75, Neg. LLF: 141.02351175057655
Iteration: 11, Func. Count: 81, Neg. LLF: 141.02351178334314
Optimization terminated successfully (Exit mode 0)
Current function value: 141.02351175057655
Iterations: 11
Function evaluations: 81
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 147.20253536976446
Iteration: 2, Func. Count: 20, Neg. LLF: 144.83678269589655
Iteration: 3, Func. Count: 29, Neg. LLF: 141.64813545107322
Iteration: 4, Func. Count: 37, Neg. LLF: 141.62997908317826
Iteration: 5, Func. Count: 45, Neg. LLF: 141.6127977721254
Iteration: 6, Func. Count: 53, Neg. LLF: 141.53571537893825
Iteration: 7, Func. Count: 61, Neg. LLF: 141.1727509485279
Iteration: 8, Func. Count: 69, Neg. LLF: 141.1401304619925
Iteration: 9, Func. Count: 77, Neg. LLF: 141.04480352233517
Iteration: 10, Func. Count: 85, Neg. LLF: 141.03098225233526
Iteration: 11, Func. Count: 93, Neg. LLF: 141.02662220949523
Iteration: 12, Func. Count: 101, Neg. LLF: 141.024330931127
Iteration: 13, Func. Count: 109, Neg. LLF: 141.02357934956058
Iteration: 14, Func. Count: 117, Neg. LLF: 141.02351494822088
Iteration: 15, Func. Count: 125, Neg. LLF: 141.02351169767016
Iteration: 16, Func. Count: 132, Neg. LLF: 141.02351172835515
Optimization terminated successfully (Exit mode 0)
Current function value: 141.02351169767016
Iterations: 16
Function evaluations: 132
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 147.16787621973558
Iteration: 2, Func. Count: 22, Neg. LLF: 144.70600708401588
Iteration: 3, Func. Count: 32, Neg. LLF: 141.61005014219356
Iteration: 4, Func. Count: 41, Neg. LLF: 141.5666002973593
Iteration: 5, Func. Count: 50, Neg. LLF: 141.53848467318835
Iteration: 6, Func. Count: 59, Neg. LLF: 141.40101082671336
Iteration: 7, Func. Count: 68, Neg. LLF: 141.24311798609202
Iteration: 8, Func. Count: 77, Neg. LLF: 141.12041564401616
Iteration: 9, Func. Count: 86, Neg. LLF: 141.05283430886732
Iteration: 10, Func. Count: 95, Neg. LLF: 141.02717423258625
Iteration: 11, Func. Count: 104, Neg. LLF: 141.02493695173683
Iteration: 12, Func. Count: 113, Neg. LLF: 141.02383718972246
Iteration: 13, Func. Count: 122, Neg. LLF: 141.0236087431498
Iteration: 14, Func. Count: 131, Neg. LLF: 141.02352442621975
Iteration: 15, Func. Count: 140, Neg. LLF: 141.02351260237634
Iteration: 16, Func. Count: 149, Neg. LLF: 141.02351168625478
Optimization terminated successfully (Exit mode 0)
Current function value: 141.02351168625478
Iterations: 16
Function evaluations: 149
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 147.14145827708222
Iteration: 2, Func. Count: 24, Neg. LLF: 144.59768448383127
Iteration: 3, Func. Count: 35, Neg. LLF: 141.58881778856025
Iteration: 4, Func. Count: 45, Neg. LLF: 141.54130425766337
Iteration: 5, Func. Count: 55, Neg. LLF: 141.50165936502077
Iteration: 6, Func. Count: 65, Neg. LLF: 141.43302900189863
Iteration: 7, Func. Count: 75, Neg. LLF: 141.3011001104375
Iteration: 8, Func. Count: 85, Neg. LLF: 141.08667606597547
Iteration: 9, Func. Count: 95, Neg. LLF: 141.05974117580948
Iteration: 10, Func. Count: 105, Neg. LLF: 141.0260739757789
Iteration: 11, Func. Count: 115, Neg. LLF: 141.0240916450747
Iteration: 12, Func. Count: 125, Neg. LLF: 141.02355243469597
Iteration: 13, Func. Count: 135, Neg. LLF: 141.02353178199925
Iteration: 14, Func. Count: 145, Neg. LLF: 141.02351230934545
Iteration: 15, Func. Count: 155, Neg. LLF: 141.0235116985569
Optimization terminated successfully (Exit mode 0)
Current function value: 141.0235116985569
Iterations: 15
Function evaluations: 155
Gradient evaluations: 15
Iteration: 1, Func. Count: 12, Neg. LLF: 147.120442056189
Iteration: 2, Func. Count: 26, Neg. LLF: 144.52931662930803
Iteration: 3, Func. Count: 38, Neg. LLF: 141.20737243341887
Iteration: 4, Func. Count: 49, Neg. LLF: 141.14866817847653
Iteration: 5, Func. Count: 60, Neg. LLF: 141.08019805910857
Iteration: 6, Func. Count: 71, Neg. LLF: 141.05794387777968
Iteration: 7, Func. Count: 82, Neg. LLF: 141.05511039243615
Iteration: 8, Func. Count: 93, Neg. LLF: 141.04902112070488
Iteration: 9, Func. Count: 104, Neg. LLF: 141.03690697526994
Iteration: 10, Func. Count: 115, Neg. LLF: 141.0197744618882
Iteration: 11, Func. Count: 126, Neg. LLF: 141.0070364261293
Iteration: 12, Func. Count: 137, Neg. LLF: 141.0056456367336
Iteration: 13, Func. Count: 148, Neg. LLF: 141.00562887727747
Iteration: 14, Func. Count: 159, Neg. LLF: 141.0056231350336
Iteration: 15, Func. Count: 169, Neg. LLF: 141.0056231349703
Optimization terminated successfully (Exit mode 0)
Current function value: 141.0056231350336
Iterations: 15
Function evaluations: 169
Gradient evaluations: 15
Iteration: 1, Func. Count: 5, Neg. LLF: 142.92458258679898
Iteration: 2, Func. Count: 10, Neg. LLF: 141.9382572295013
Iteration: 3, Func. Count: 15, Neg. LLF: 140.82350592845293
Iteration: 4, Func. Count: 19, Neg. LLF: 140.77555546161742
Iteration: 5, Func. Count: 23, Neg. LLF: 140.7684662009629
Iteration: 6, Func. Count: 27, Neg. LLF: 140.76684791893828
Iteration: 7, Func. Count: 31, Neg. LLF: 140.76636937334462
Iteration: 8, Func. Count: 35, Neg. LLF: 140.7663637459939
Iteration: 9, Func. Count: 38, Neg. LLF: 140.76636374602867
Optimization terminated successfully (Exit mode 0)
Current function value: 140.7663637459939
Iterations: 9
Function evaluations: 38
Gradient evaluations: 9
Iteration: 1, Func. Count: 6, Neg. LLF: 142.1292836971449
Iteration: 2, Func. Count: 13, Neg. LLF: 145.20372737229698
Iteration: 3, Func. Count: 20, Neg. LLF: 140.83841767627388
Iteration: 4, Func. Count: 25, Neg. LLF: 140.83319726105577
Iteration: 5, Func. Count: 30, Neg. LLF: 140.82617958500157
Iteration: 6, Func. Count: 35, Neg. LLF: 140.82546002370927
Iteration: 7, Func. Count: 40, Neg. LLF: 140.82538985335898
Iteration: 8, Func. Count: 45, Neg. LLF: 140.82538842629307
Iteration: 9, Func. Count: 49, Neg. LLF: 140.82538842630842
Optimization terminated successfully (Exit mode 0)
Current function value: 140.82538842629307
Iterations: 9
Function evaluations: 49
Gradient evaluations: 9
Iteration: 1, Func. Count: 7, Neg. LLF: 143.56539102780368
Iteration: 2, Func. Count: 15, Neg. LLF: 141.8218932658437
Iteration: 3, Func. Count: 22, Neg. LLF: 140.7541797772551
Iteration: 4, Func. Count: 29, Neg. LLF: 140.68999729003013
Iteration: 5, Func. Count: 36, Neg. LLF: 140.68848402523747
Iteration: 6, Func. Count: 43, Neg. LLF: 140.68829653815854
Iteration: 7, Func. Count: 49, Neg. LLF: 140.68822565745285
Iteration: 8, Func. Count: 55, Neg. LLF: 140.68811406421815
Iteration: 9, Func. Count: 61, Neg. LLF: 140.68795997106523
Iteration: 10, Func. Count: 67, Neg. LLF: 140.68786824517076
Iteration: 11, Func. Count: 73, Neg. LLF: 140.6878468944334
Iteration: 12, Func. Count: 79, Neg. LLF: 140.6878451404327
Iteration: 13, Func. Count: 84, Neg. LLF: 140.6878451404196
Optimization terminated successfully (Exit mode 0)
Current function value: 140.6878451404327
Iterations: 13
Function evaluations: 84
Gradient evaluations: 13
Iteration: 1, Func. Count: 8, Neg. LLF: 143.51770636104933
Iteration: 2, Func. Count: 17, Neg. LLF: 141.80708939607038
Iteration: 3, Func. Count: 25, Neg. LLF: 140.70199902195625
Iteration: 4, Func. Count: 33, Neg. LLF: 140.603918044024
Iteration: 5, Func. Count: 40, Neg. LLF: 140.58771150770423
Iteration: 6, Func. Count: 47, Neg. LLF: 140.58291484138462
Iteration: 7, Func. Count: 54, Neg. LLF: 140.582368209965
Iteration: 8, Func. Count: 61, Neg. LLF: 140.5822478882222
Iteration: 9, Func. Count: 68, Neg. LLF: 140.58201915827624
Iteration: 10, Func. Count: 75, Neg. LLF: 140.58163495907428
Iteration: 11, Func. Count: 82, Neg. LLF: 140.58136181162004
Iteration: 12, Func. Count: 89, Neg. LLF: 140.5812784715387
Iteration: 13, Func. Count: 96, Neg. LLF: 140.58127148741696
Iteration: 14, Func. Count: 102, Neg. LLF: 140.58127148739433
Optimization terminated successfully (Exit mode 0)
Current function value: 140.58127148741696
Iterations: 14
Function evaluations: 102
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 143.46755055898115
Iteration: 2, Func. Count: 19, Neg. LLF: 141.7542940483997
Iteration: 3, Func. Count: 28, Neg. LLF: 140.84811388716616
Iteration: 4, Func. Count: 37, Neg. LLF: 140.60093185773184
Iteration: 5, Func. Count: 45, Neg. LLF: 140.692765975385
Iteration: 6, Func. Count: 54, Neg. LLF: 140.58226603343505
Iteration: 7, Func. Count: 62, Neg. LLF: 140.58215792450818
Iteration: 8, Func. Count: 70, Neg. LLF: 140.58204884244748
Iteration: 9, Func. Count: 78, Neg. LLF: 140.58154303323846
Iteration: 10, Func. Count: 86, Neg. LLF: 140.5813052985126
Iteration: 11, Func. Count: 94, Neg. LLF: 140.58127393228474
Iteration: 12, Func. Count: 102, Neg. LLF: 140.58127131713036
Iteration: 13, Func. Count: 109, Neg. LLF: 140.58127135133333
Optimization terminated successfully (Exit mode 0)
Current function value: 140.58127131713036
Iterations: 13
Function evaluations: 109
Gradient evaluations: 13
Iteration: 1, Func. Count: 6, Neg. LLF: 143.04016575287392
Iteration: 2, Func. Count: 12, Neg. LLF: 146.77945689283868
Iteration: 3, Func. Count: 18, Neg. LLF: 141.95546562659484
Iteration: 4, Func. Count: 24, Neg. LLF: 140.91568412980297
Iteration: 5, Func. Count: 29, Neg. LLF: 140.75598729209773
Iteration: 6, Func. Count: 34, Neg. LLF: 140.72300415290297
Iteration: 7, Func. Count: 39, Neg. LLF: 140.7145684716817
Iteration: 8, Func. Count: 44, Neg. LLF: 140.71404692439282
Iteration: 9, Func. Count: 49, Neg. LLF: 140.71389944526334
Iteration: 10, Func. Count: 54, Neg. LLF: 140.7138979622947
Iteration: 11, Func. Count: 58, Neg. LLF: 140.71389796230193
Optimization terminated successfully (Exit mode 0)
Current function value: 140.7138979622947
Iterations: 11
Function evaluations: 58
Gradient evaluations: 11
Iteration: 1, Func. Count: 7, Neg. LLF: 142.14556632843605
Iteration: 2, Func. Count: 15, Neg. LLF: 162.47550790264845
Iteration: 3, Func. Count: 22, Neg. LLF: 140.41859367759366
Iteration: 4, Func. Count: 28, Neg. LLF: 140.3101269285969
Iteration: 5, Func. Count: 34, Neg. LLF: 140.17695438256854
Iteration: 6, Func. Count: 40, Neg. LLF: 140.7819091500451
Iteration: 7, Func. Count: 47, Neg. LLF: 140.12408185052954
Iteration: 8, Func. Count: 54, Neg. LLF: 139.92301232209238
Iteration: 9, Func. Count: 60, Neg. LLF: 139.91480127114818
Iteration: 10, Func. Count: 66, Neg. LLF: 139.914676777885
Iteration: 11, Func. Count: 72, Neg. LLF: 139.91466254714217
Iteration: 12, Func. Count: 77, Neg. LLF: 139.91466254730412
Optimization terminated successfully (Exit mode 0)
Current function value: 139.91466254714217
Iterations: 12
Function evaluations: 77
Gradient evaluations: 12
Iteration: 1, Func. Count: 8, Neg. LLF: 142.91483386794334
Iteration: 2, Func. Count: 16, Neg. LLF: 147.22913444678346
Iteration: 3, Func. Count: 24, Neg. LLF: 141.73089025413202
Iteration: 4, Func. Count: 32, Neg. LLF: 140.66689678199538
Iteration: 5, Func. Count: 40, Neg. LLF: 140.70829605399624
Iteration: 6, Func. Count: 48, Neg. LLF: 140.66679013048946
Iteration: 7, Func. Count: 56, Neg. LLF: 140.64382804911645
Iteration: 8, Func. Count: 63, Neg. LLF: 140.60806401729062
Iteration: 9, Func. Count: 70, Neg. LLF: 140.19251696912
Iteration: 10, Func. Count: 77, Neg. LLF: 140.1371585856181
Iteration: 11, Func. Count: 84, Neg. LLF: 140.07652192255733
Iteration: 12, Func. Count: 91, Neg. LLF: 140.05550577985827
Iteration: 13, Func. Count: 98, Neg. LLF: 139.99443852362162
Iteration: 14, Func. Count: 105, Neg. LLF: 139.91935885689077
Iteration: 15, Func. Count: 112, Neg. LLF: 139.91515400865867
Iteration: 16, Func. Count: 119, Neg. LLF: 139.9146747327953
Iteration: 17, Func. Count: 126, Neg. LLF: 139.9146652569288
Iteration: 18, Func. Count: 133, Neg. LLF: 139.91466225773655
Iteration: 19, Func. Count: 139, Neg. LLF: 139.91466227175496
Optimization terminated successfully (Exit mode 0)
Current function value: 139.91466225773655
Iterations: 19
Function evaluations: 139
Gradient evaluations: 19
Iteration: 1, Func. Count: 9, Neg. LLF: 143.09695832850048
Iteration: 2, Func. Count: 18, Neg. LLF: 143.33243272834542
Iteration: 3, Func. Count: 27, Neg. LLF: 142.28950895746453
Iteration: 4, Func. Count: 36, Neg. LLF: 141.12708133815593
Iteration: 5, Func. Count: 45, Neg. LLF: 140.54136812046752
Iteration: 6, Func. Count: 54, Neg. LLF: 140.4112654294262
Iteration: 7, Func. Count: 62, Neg. LLF: 140.34179266240554
Iteration: 8, Func. Count: 70, Neg. LLF: 140.28609253755113
Iteration: 9, Func. Count: 78, Neg. LLF: 140.21745231826537
Iteration: 10, Func. Count: 86, Neg. LLF: 140.22266266930367
Iteration: 11, Func. Count: 95, Neg. LLF: 140.18795061916725
Iteration: 12, Func. Count: 103, Neg. LLF: 140.1837633635343
Iteration: 13, Func. Count: 111, Neg. LLF: 140.18295624881011
Iteration: 14, Func. Count: 119, Neg. LLF: 140.18283147246174
Iteration: 15, Func. Count: 127, Neg. LLF: 140.18282596709514
Iteration: 16, Func. Count: 134, Neg. LLF: 140.18282596705674
Optimization terminated successfully (Exit mode 0)
Current function value: 140.18282596709514
Iterations: 16
Function evaluations: 134
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 142.7287511720368
Iteration: 2, Func. Count: 20, Neg. LLF: 147.21298676090933
Iteration: 3, Func. Count: 30, Neg. LLF: 141.0644402919013
Iteration: 4, Func. Count: 40, Neg. LLF: 141.02178179006356
Iteration: 5, Func. Count: 50, Neg. LLF: 140.68821846070458
Iteration: 6, Func. Count: 60, Neg. LLF: 140.44354371442932
Iteration: 7, Func. Count: 69, Neg. LLF: 140.40328358239162
Iteration: 8, Func. Count: 78, Neg. LLF: 140.3724815060038
Iteration: 9, Func. Count: 87, Neg. LLF: 140.32383744856307
Iteration: 10, Func. Count: 96, Neg. LLF: 140.23707754644406
Iteration: 11, Func. Count: 105, Neg. LLF: 140.35747169081444
Iteration: 12, Func. Count: 115, Neg. LLF: 140.20748526596893
Iteration: 13, Func. Count: 125, Neg. LLF: 140.1856066489863
Iteration: 14, Func. Count: 134, Neg. LLF: 140.18292796924501
Iteration: 15, Func. Count: 143, Neg. LLF: 140.18283711331424
Iteration: 16, Func. Count: 152, Neg. LLF: 140.18282677149062
Iteration: 17, Func. Count: 161, Neg. LLF: 140.18282578619795
Optimization terminated successfully (Exit mode 0)
Current function value: 140.18282578619795
Iterations: 17
Function evaluations: 161
Gradient evaluations: 17
Iteration: 1, Func. Count: 7, Neg. LLF: 142.9399223130785
Iteration: 2, Func. Count: 14, Neg. LLF: 144.5928280895369
Iteration: 3, Func. Count: 21, Neg. LLF: 141.1918117468323
Iteration: 4, Func. Count: 27, Neg. LLF: 141.21217290497086
Iteration: 5, Func. Count: 34, Neg. LLF: 140.72208068132588
Iteration: 6, Func. Count: 40, Neg. LLF: 140.71522346639298
Iteration: 7, Func. Count: 46, Neg. LLF: 140.71401924485696
Iteration: 8, Func. Count: 52, Neg. LLF: 140.71391072439064
Iteration: 9, Func. Count: 58, Neg. LLF: 140.7139007894304
Iteration: 10, Func. Count: 64, Neg. LLF: 140.71389795526628
Iteration: 11, Func. Count: 69, Neg. LLF: 140.7138980422275
Optimization terminated successfully (Exit mode 0)
Current function value: 140.71389795526628
Iterations: 11
Function evaluations: 69
Gradient evaluations: 11
Iteration: 1, Func. Count: 8, Neg. LLF: 142.1632657085133
Iteration: 2, Func. Count: 17, Neg. LLF: 162.49132174529225
Iteration: 3, Func. Count: 25, Neg. LLF: 140.41446993906152
Iteration: 4, Func. Count: 32, Neg. LLF: 140.30796268312963
Iteration: 5, Func. Count: 39, Neg. LLF: 140.18423365122558
Iteration: 6, Func. Count: 46, Neg. LLF: 141.20769913643687
Iteration: 7, Func. Count: 54, Neg. LLF: 140.0120551997049
Iteration: 8, Func. Count: 61, Neg. LLF: 139.9287239884891
Iteration: 9, Func. Count: 68, Neg. LLF: 139.91598785323538
Iteration: 10, Func. Count: 75, Neg. LLF: 139.9146917715202
Iteration: 11, Func. Count: 82, Neg. LLF: 139.914663997292
Iteration: 12, Func. Count: 89, Neg. LLF: 139.91466230555116
Iteration: 13, Func. Count: 95, Neg. LLF: 139.91466230552385
Optimization terminated successfully (Exit mode 0)
Current function value: 139.91466230555116
Iterations: 13
Function evaluations: 95
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 143.00169262311564
Iteration: 2, Func. Count: 18, Neg. LLF: 147.23928692867764
Iteration: 3, Func. Count: 27, Neg. LLF: 141.70797018057385
Iteration: 4, Func. Count: 36, Neg. LLF: 140.65799419485415
Iteration: 5, Func. Count: 44, Neg. LLF: 140.77217311881134
Iteration: 6, Func. Count: 53, Neg. LLF: 140.684172700492
Iteration: 7, Func. Count: 62, Neg. LLF: 140.6434168048534
Iteration: 8, Func. Count: 70, Neg. LLF: 140.636304096535
Iteration: 9, Func. Count: 78, Neg. LLF: 140.55524962036833
Iteration: 10, Func. Count: 86, Neg. LLF: 140.19701782317867
Iteration: 11, Func. Count: 94, Neg. LLF: 142.55370124065016
Iteration: 12, Func. Count: 103, Neg. LLF: 140.08570772097337
Iteration: 13, Func. Count: 111, Neg. LLF: 140.04000230621673
Iteration: 14, Func. Count: 119, Neg. LLF: 140.01628125941772
Iteration: 15, Func. Count: 127, Neg. LLF: 139.93392324044424
Iteration: 16, Func. Count: 135, Neg. LLF: 139.9232360004004
Iteration: 17, Func. Count: 143, Neg. LLF: 139.91483580822862
Iteration: 18, Func. Count: 151, Neg. LLF: 139.91466860188189
Iteration: 19, Func. Count: 159, Neg. LLF: 139.9146623753094
Iteration: 20, Func. Count: 166, Neg. LLF: 139.91466238928166
Optimization terminated successfully (Exit mode 0)
Current function value: 139.9146623753094
Iterations: 20
Function evaluations: 166
Gradient evaluations: 20
Iteration: 1, Func. Count: 10, Neg. LLF: 142.95486734354873
Iteration: 2, Func. Count: 20, Neg. LLF: 141.73434970034822
Iteration: 3, Func. Count: 30, Neg. LLF: 148.34228658310727
Iteration: 4, Func. Count: 41, Neg. LLF: 141.32607162864159
Iteration: 5, Func. Count: 51, Neg. LLF: 140.5334329453744
Iteration: 6, Func. Count: 61, Neg. LLF: 140.40773969529457
Iteration: 7, Func. Count: 70, Neg. LLF: 140.3168668073182
Iteration: 8, Func. Count: 79, Neg. LLF: 140.22103678909525
Iteration: 9, Func. Count: 88, Neg. LLF: 140.18902370933512
Iteration: 10, Func. Count: 97, Neg. LLF: 140.19387845002265
Iteration: 11, Func. Count: 107, Neg. LLF: 140.18298403328262
Iteration: 12, Func. Count: 116, Neg. LLF: 140.18287958393182
Iteration: 13, Func. Count: 125, Neg. LLF: 140.18283292681892
Iteration: 14, Func. Count: 134, Neg. LLF: 140.18282629300236
Iteration: 15, Func. Count: 142, Neg. LLF: 140.18282629297005
Optimization terminated successfully (Exit mode 0)
Current function value: 140.18282629300236
Iterations: 15
Function evaluations: 142
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 143.09049404105403
Iteration: 2, Func. Count: 22, Neg. LLF: 147.31907441779938
Iteration: 3, Func. Count: 33, Neg. LLF: 140.9077299451316
Iteration: 4, Func. Count: 44, Neg. LLF: 141.01271930332072
Iteration: 5, Func. Count: 55, Neg. LLF: 140.572049803299
Iteration: 6, Func. Count: 66, Neg. LLF: 140.87138506043942
Iteration: 7, Func. Count: 77, Neg. LLF: 140.4106559497864
Iteration: 8, Func. Count: 87, Neg. LLF: 140.38332458125885
Iteration: 9, Func. Count: 97, Neg. LLF: 140.33883230446307
Iteration: 10, Func. Count: 107, Neg. LLF: 140.27863654098536
Iteration: 11, Func. Count: 117, Neg. LLF: 140.24013274759545
Iteration: 12, Func. Count: 127, Neg. LLF: 140.19088146676924
Iteration: 13, Func. Count: 137, Neg. LLF: 140.53561409016328
Iteration: 14, Func. Count: 148, Neg. LLF: 140.18926500307558
Iteration: 15, Func. Count: 159, Neg. LLF: 140.18297894214442
Iteration: 16, Func. Count: 169, Neg. LLF: 140.18285437419095
Iteration: 17, Func. Count: 179, Neg. LLF: 140.18282647629076
Iteration: 18, Func. Count: 189, Neg. LLF: 140.182825792592
Optimization terminated successfully (Exit mode 0)
Current function value: 140.182825792592
Iterations: 18
Function evaluations: 189
Gradient evaluations: 18
Iteration: 1, Func. Count: 8, Neg. LLF: 143.12508304458723
Iteration: 2, Func. Count: 16, Neg. LLF: 144.28694162931
Iteration: 3, Func. Count: 24, Neg. LLF: 141.24275033870813
Iteration: 4, Func. Count: 31, Neg. LLF: 141.5787112090505
Iteration: 5, Func. Count: 39, Neg. LLF: 140.76936939368866
Iteration: 6, Func. Count: 46, Neg. LLF: 140.72497344773257
Iteration: 7, Func. Count: 53, Neg. LLF: 140.71652822343768
Iteration: 8, Func. Count: 60, Neg. LLF: 140.71397119209215
Iteration: 9, Func. Count: 67, Neg. LLF: 140.7138989389059
Iteration: 10, Func. Count: 74, Neg. LLF: 140.71389796924413
Optimization terminated successfully (Exit mode 0)
Current function value: 140.71389796924413
Iterations: 10
Function evaluations: 74
Gradient evaluations: 10
Iteration: 1, Func. Count: 9, Neg. LLF: 142.16406502722967
Iteration: 2, Func. Count: 19, Neg. LLF: 162.5455402981001
Iteration: 3, Func. Count: 28, Neg. LLF: 140.41173791730458
Iteration: 4, Func. Count: 36, Neg. LLF: 140.30562586857948
Iteration: 5, Func. Count: 44, Neg. LLF: 140.1872819397583
Iteration: 6, Func. Count: 52, Neg. LLF: 142.12552783383072
Iteration: 7, Func. Count: 61, Neg. LLF: 140.00607451081433
Iteration: 8, Func. Count: 69, Neg. LLF: 139.92870594742914
Iteration: 9, Func. Count: 77, Neg. LLF: 139.91551335433644
Iteration: 10, Func. Count: 85, Neg. LLF: 139.91472109937908
Iteration: 11, Func. Count: 93, Neg. LLF: 139.91466415575624
Iteration: 12, Func. Count: 101, Neg. LLF: 139.91466228848606
Iteration: 13, Func. Count: 108, Neg. LLF: 139.91466228848432
Optimization terminated successfully (Exit mode 0)
Current function value: 139.91466228848606
Iterations: 13
Function evaluations: 108
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 143.0725314958462
Iteration: 2, Func. Count: 20, Neg. LLF: 147.2537739445544
Iteration: 3, Func. Count: 30, Neg. LLF: 141.6906342927649
Iteration: 4, Func. Count: 40, Neg. LLF: 140.66118449537322
Iteration: 5, Func. Count: 49, Neg. LLF: 140.8040774943205
Iteration: 6, Func. Count: 59, Neg. LLF: 140.7003130985439
Iteration: 7, Func. Count: 69, Neg. LLF: 140.6436995953531
Iteration: 8, Func. Count: 78, Neg. LLF: 140.6385058387562
Iteration: 9, Func. Count: 87, Neg. LLF: 140.6011659242541
Iteration: 10, Func. Count: 96, Neg. LLF: 140.21818185735808
Iteration: 11, Func. Count: 105, Neg. LLF: 140.2661942091114
Iteration: 12, Func. Count: 115, Neg. LLF: 140.13274495737375
Iteration: 13, Func. Count: 125, Neg. LLF: 140.03238008153966
Iteration: 14, Func. Count: 134, Neg. LLF: 139.96710040480818
Iteration: 15, Func. Count: 143, Neg. LLF: 139.92591239419266
Iteration: 16, Func. Count: 152, Neg. LLF: 139.91595693811118
Iteration: 17, Func. Count: 161, Neg. LLF: 139.91481386000638
Iteration: 18, Func. Count: 170, Neg. LLF: 139.91469293307995
Iteration: 19, Func. Count: 179, Neg. LLF: 139.91466617301398
Iteration: 20, Func. Count: 188, Neg. LLF: 139.9146632457451
Iteration: 21, Func. Count: 197, Neg. LLF: 139.91466150150652
Iteration: 22, Func. Count: 205, Neg. LLF: 139.91466151557432
Optimization terminated successfully (Exit mode 0)
Current function value: 139.91466150150652
Iterations: 22
Function evaluations: 205
Gradient evaluations: 22
Iteration: 1, Func. Count: 11, Neg. LLF: 142.90755809111178
Iteration: 2, Func. Count: 22, Neg. LLF: 144.28821011825573
Iteration: 3, Func. Count: 33, Neg. LLF: 142.66701621604506
Iteration: 4, Func. Count: 44, Neg. LLF: 140.90913072330437
Iteration: 5, Func. Count: 55, Neg. LLF: 140.5439690470765
Iteration: 6, Func. Count: 66, Neg. LLF: 140.42631620532438
Iteration: 7, Func. Count: 76, Neg. LLF: 140.3843875575773
Iteration: 8, Func. Count: 86, Neg. LLF: 140.32764422294804
Iteration: 9, Func. Count: 96, Neg. LLF: 140.27205865641278
Iteration: 10, Func. Count: 106, Neg. LLF: 140.21248158940162
Iteration: 11, Func. Count: 116, Neg. LLF: 140.19183509994915
Iteration: 12, Func. Count: 126, Neg. LLF: 140.19263041486371
Iteration: 13, Func. Count: 137, Neg. LLF: 140.18407407235682
Iteration: 14, Func. Count: 147, Neg. LLF: 140.1828767031069
Iteration: 15, Func. Count: 157, Neg. LLF: 140.182828815982
Iteration: 16, Func. Count: 167, Neg. LLF: 140.18282590254373
Iteration: 17, Func. Count: 176, Neg. LLF: 140.18282590260333
Optimization terminated successfully (Exit mode 0)
Current function value: 140.18282590254373
Iterations: 17
Function evaluations: 176
Gradient evaluations: 17
Iteration: 1, Func. Count: 12, Neg. LLF: 143.1742036699755
Iteration: 2, Func. Count: 24, Neg. LLF: 147.32017555878338
Iteration: 3, Func. Count: 36, Neg. LLF: 140.88754786651208
Iteration: 4, Func. Count: 48, Neg. LLF: 141.03354996465245
Iteration: 5, Func. Count: 60, Neg. LLF: 140.57232433031635
Iteration: 6, Func. Count: 72, Neg. LLF: 140.95818432835318
Iteration: 7, Func. Count: 84, Neg. LLF: 140.41086293307401
Iteration: 8, Func. Count: 95, Neg. LLF: 140.38337224248843
Iteration: 9, Func. Count: 106, Neg. LLF: 140.33796554554337
Iteration: 10, Func. Count: 117, Neg. LLF: 140.27944347217533
Iteration: 11, Func. Count: 128, Neg. LLF: 140.24067279441087
Iteration: 12, Func. Count: 139, Neg. LLF: 140.18928050858037
Iteration: 13, Func. Count: 150, Neg. LLF: 140.52382430195962
Iteration: 14, Func. Count: 162, Neg. LLF: 140.1862412023319
Iteration: 15, Func. Count: 174, Neg. LLF: 140.18299831066935
Iteration: 16, Func. Count: 185, Neg. LLF: 140.18285813930186
Iteration: 17, Func. Count: 196, Neg. LLF: 140.18282668466682
Iteration: 18, Func. Count: 207, Neg. LLF: 140.18282584068697
Optimization terminated successfully (Exit mode 0)
Current function value: 140.18282584068697
Iterations: 18
Function evaluations: 207
Gradient evaluations: 18
Iteration: 1, Func. Count: 9, Neg. LLF: 142.9811258637019
Iteration: 2, Func. Count: 18, Neg. LLF: 145.2847452361785
Iteration: 3, Func. Count: 28, Neg. LLF: 141.1860363525301
Iteration: 4, Func. Count: 36, Neg. LLF: 141.3015399879089
Iteration: 5, Func. Count: 45, Neg. LLF: 140.85095399355762
Iteration: 6, Func. Count: 53, Neg. LLF: 140.8425703484658
Iteration: 7, Func. Count: 62, Neg. LLF: 140.7702854041237
Iteration: 8, Func. Count: 70, Neg. LLF: 140.73380128373407
Iteration: 9, Func. Count: 78, Neg. LLF: 140.7174214654558
Iteration: 10, Func. Count: 86, Neg. LLF: 140.71243994455256
Iteration: 11, Func. Count: 94, Neg. LLF: 140.7120424989189
Iteration: 12, Func. Count: 102, Neg. LLF: 140.71203823134573
Iteration: 13, Func. Count: 109, Neg. LLF: 140.71203823131913
Optimization terminated successfully (Exit mode 0)
Current function value: 140.71203823134573
Iterations: 13
Function evaluations: 109
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 142.1422847292176
Iteration: 2, Func. Count: 21, Neg. LLF: 162.6260525296351
Iteration: 3, Func. Count: 31, Neg. LLF: 140.41347608264448
Iteration: 4, Func. Count: 40, Neg. LLF: 140.30162666093653
Iteration: 5, Func. Count: 49, Neg. LLF: 140.18144376606287
Iteration: 6, Func. Count: 58, Neg. LLF: 141.00452423751926
Iteration: 7, Func. Count: 68, Neg. LLF: 140.00559701680467
Iteration: 8, Func. Count: 77, Neg. LLF: 139.92590436525214
Iteration: 9, Func. Count: 86, Neg. LLF: 139.91570179598628
Iteration: 10, Func. Count: 95, Neg. LLF: 139.9146755820726
Iteration: 11, Func. Count: 104, Neg. LLF: 139.91466246630412
Iteration: 12, Func. Count: 112, Neg. LLF: 139.91466246644273
Optimization terminated successfully (Exit mode 0)
Current function value: 139.91466246630412
Iterations: 12
Function evaluations: 112
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 143.08320686181912
Iteration: 2, Func. Count: 22, Neg. LLF: 147.28240208291172
Iteration: 3, Func. Count: 33, Neg. LLF: 141.69885078491887
Iteration: 4, Func. Count: 44, Neg. LLF: 140.6665403681705
Iteration: 5, Func. Count: 54, Neg. LLF: 140.84101468875414
Iteration: 6, Func. Count: 65, Neg. LLF: 140.70650758017538
Iteration: 7, Func. Count: 76, Neg. LLF: 140.64443466411942
Iteration: 8, Func. Count: 86, Neg. LLF: 140.64000791568722
Iteration: 9, Func. Count: 96, Neg. LLF: 140.60206990152
Iteration: 10, Func. Count: 106, Neg. LLF: 140.187714907814
Iteration: 11, Func. Count: 116, Neg. LLF: 140.12792062764376
Iteration: 12, Func. Count: 126, Neg. LLF: 140.10235499139816
Iteration: 13, Func. Count: 136, Neg. LLF: 140.0893021569488
Iteration: 14, Func. Count: 147, Neg. LLF: 140.0222984617457
Iteration: 15, Func. Count: 157, Neg. LLF: 139.9446738505065
Iteration: 16, Func. Count: 167, Neg. LLF: 139.9240937267564
Iteration: 17, Func. Count: 177, Neg. LLF: 139.91480917074875
Iteration: 18, Func. Count: 187, Neg. LLF: 139.9146639146845
Iteration: 19, Func. Count: 197, Neg. LLF: 139.91466235939762
Iteration: 20, Func. Count: 206, Neg. LLF: 139.91466237340504
Optimization terminated successfully (Exit mode 0)
Current function value: 139.91466235939762
Iterations: 20
Function evaluations: 206
Gradient evaluations: 20
Iteration: 1, Func. Count: 12, Neg. LLF: 142.88871788107753
Iteration: 2, Func. Count: 24, Neg. LLF: 145.62687420966114
Iteration: 3, Func. Count: 36, Neg. LLF: 142.32530066809719
Iteration: 4, Func. Count: 48, Neg. LLF: 140.94394377079345
Iteration: 5, Func. Count: 60, Neg. LLF: 140.54547158672645
Iteration: 6, Func. Count: 72, Neg. LLF: 140.43612846840742
Iteration: 7, Func. Count: 83, Neg. LLF: 140.38907712112933
Iteration: 8, Func. Count: 94, Neg. LLF: 140.3705637238948
Iteration: 9, Func. Count: 105, Neg. LLF: 140.30447696257022
Iteration: 10, Func. Count: 116, Neg. LLF: 140.23899983899713
Iteration: 11, Func. Count: 127, Neg. LLF: 140.22648909364082
Iteration: 12, Func. Count: 138, Neg. LLF: 140.19077371096986
Iteration: 13, Func. Count: 149, Neg. LLF: 140.20463552716828
Iteration: 14, Func. Count: 161, Neg. LLF: 140.1832283287432
Iteration: 15, Func. Count: 172, Neg. LLF: 140.1828471738233
Iteration: 16, Func. Count: 183, Neg. LLF: 140.18282631450643
Iteration: 17, Func. Count: 193, Neg. LLF: 140.18282631452252
Optimization terminated successfully (Exit mode 0)
Current function value: 140.18282631450643
Iterations: 17
Function evaluations: 193
Gradient evaluations: 17
Iteration: 1, Func. Count: 13, Neg. LLF: 143.1835961559023
Iteration: 2, Func. Count: 26, Neg. LLF: 147.3401736253557
Iteration: 3, Func. Count: 39, Neg. LLF: 140.8592243276066
Iteration: 4, Func. Count: 52, Neg. LLF: 141.06483506081622
Iteration: 5, Func. Count: 65, Neg. LLF: 140.5748340543461
Iteration: 6, Func. Count: 78, Neg. LLF: 140.92511382348798
Iteration: 7, Func. Count: 91, Neg. LLF: 140.4104875769777
Iteration: 8, Func. Count: 103, Neg. LLF: 140.38251283786093
Iteration: 9, Func. Count: 115, Neg. LLF: 140.33635585324106
Iteration: 10, Func. Count: 127, Neg. LLF: 140.2796672560987
Iteration: 11, Func. Count: 139, Neg. LLF: 140.24066300351222
Iteration: 12, Func. Count: 151, Neg. LLF: 140.18861678469113
Iteration: 13, Func. Count: 163, Neg. LLF: 140.5095178900488
Iteration: 14, Func. Count: 176, Neg. LLF: 140.18490683222174
Iteration: 15, Func. Count: 188, Neg. LLF: 140.18306688178689
Iteration: 16, Func. Count: 200, Neg. LLF: 140.1828785046045
Iteration: 17, Func. Count: 212, Neg. LLF: 140.1828337534776
Iteration: 18, Func. Count: 224, Neg. LLF: 140.18282602845304
Iteration: 19, Func. Count: 235, Neg. LLF: 140.1828260966122
Optimization terminated successfully (Exit mode 0)
Current function value: 140.18282602845304
Iterations: 19
Function evaluations: 235
Gradient evaluations: 19
Iteration: 1, Func. Count: 6, Neg. LLF: 143.43137018412438
Iteration: 2, Func. Count: 12, Neg. LLF: 141.87944167519933
Iteration: 3, Func. Count: 18, Neg. LLF: 140.98786095498866
Iteration: 4, Func. Count: 23, Neg. LLF: 142.16155592278804
Iteration: 5, Func. Count: 30, Neg. LLF: 140.77377510596983
Iteration: 6, Func. Count: 35, Neg. LLF: 140.76740120034643
Iteration: 7, Func. Count: 40, Neg. LLF: 140.76656923945728
Iteration: 8, Func. Count: 45, Neg. LLF: 140.76636398281454
Iteration: 9, Func. Count: 49, Neg. LLF: 140.76636399534246
Optimization terminated successfully (Exit mode 0)
Current function value: 140.76636398281454
Iterations: 9
Function evaluations: 49
Gradient evaluations: 9
Iteration: 1, Func. Count: 7, Neg. LLF: 148.67049784480326
Iteration: 2, Func. Count: 14, Neg. LLF: 148.69803575559635
Iteration: 3, Func. Count: 22, Neg. LLF: 140.8493595918859
Iteration: 4, Func. Count: 28, Neg. LLF: 140.84304135738228
Iteration: 5, Func. Count: 34, Neg. LLF: 140.8365230298213
Iteration: 6, Func. Count: 40, Neg. LLF: 140.8352776930523
Iteration: 7, Func. Count: 46, Neg. LLF: 140.83340619227644
Iteration: 8, Func. Count: 52, Neg. LLF: 140.82730114789237
Iteration: 9, Func. Count: 58, Neg. LLF: 140.82566336591046
Iteration: 10, Func. Count: 64, Neg. LLF: 140.82539697067128
Iteration: 11, Func. Count: 70, Neg. LLF: 140.82538852905853
Iteration: 12, Func. Count: 75, Neg. LLF: 140.82538852901456
Optimization terminated successfully (Exit mode 0)
Current function value: 140.82538852905853
Iterations: 12
Function evaluations: 75
Gradient evaluations: 12
Iteration: 1, Func. Count: 8, Neg. LLF: 143.86714325110563
Iteration: 2, Func. Count: 16, Neg. LLF: 141.89729840340513
Iteration: 3, Func. Count: 24, Neg. LLF: 144.04857682082823
Iteration: 4, Func. Count: 32, Neg. LLF: 140.76645052255887
Iteration: 5, Func. Count: 39, Neg. LLF: 140.77182318256445
Iteration: 6, Func. Count: 47, Neg. LLF: 140.92056948984853
Iteration: 7, Func. Count: 55, Neg. LLF: 140.6911341862539
Iteration: 8, Func. Count: 63, Neg. LLF: 140.68867365614145
Iteration: 9, Func. Count: 70, Neg. LLF: 140.6886451594083
Iteration: 10, Func. Count: 77, Neg. LLF: 140.68848855035534
Iteration: 11, Func. Count: 84, Neg. LLF: 140.6882618015431
Iteration: 12, Func. Count: 91, Neg. LLF: 140.68801695240558
Iteration: 13, Func. Count: 98, Neg. LLF: 140.68787214894274
Iteration: 14, Func. Count: 105, Neg. LLF: 140.68784735773946
Iteration: 15, Func. Count: 112, Neg. LLF: 140.68784516069374
Iteration: 16, Func. Count: 118, Neg. LLF: 140.68784516068885
Optimization terminated successfully (Exit mode 0)
Current function value: 140.68784516069374
Iterations: 16
Function evaluations: 118
Gradient evaluations: 16
Iteration: 1, Func. Count: 9, Neg. LLF: 143.82256274645857
Iteration: 2, Func. Count: 18, Neg. LLF: 141.8301093172363
Iteration: 3, Func. Count: 27, Neg. LLF: 144.8321077232764
Iteration: 4, Func. Count: 36, Neg. LLF: 141.12527957944656
Iteration: 5, Func. Count: 45, Neg. LLF: 140.78512846303178
Iteration: 6, Func. Count: 54, Neg. LLF: 140.5894428261082
Iteration: 7, Func. Count: 62, Neg. LLF: 140.5838640355838
Iteration: 8, Func. Count: 70, Neg. LLF: 140.58320958263766
Iteration: 9, Func. Count: 78, Neg. LLF: 140.58300297748522
Iteration: 10, Func. Count: 86, Neg. LLF: 140.5826897692556
Iteration: 11, Func. Count: 94, Neg. LLF: 140.58208030279437
Iteration: 12, Func. Count: 102, Neg. LLF: 140.58154157196284
Iteration: 13, Func. Count: 110, Neg. LLF: 140.58130501925694
Iteration: 14, Func. Count: 118, Neg. LLF: 140.58127265042333
Iteration: 15, Func. Count: 126, Neg. LLF: 140.58127130100203
Iteration: 16, Func. Count: 133, Neg. LLF: 140.5812713009971
Optimization terminated successfully (Exit mode 0)
Current function value: 140.58127130100203
Iterations: 16
Function evaluations: 133
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 143.8598244023315
Iteration: 2, Func. Count: 20, Neg. LLF: 141.80653976393177
Iteration: 3, Func. Count: 30, Neg. LLF: 145.36934639226067
Iteration: 4, Func. Count: 40, Neg. LLF: 141.51154916777608
Iteration: 5, Func. Count: 50, Neg. LLF: 140.71890607965508
Iteration: 6, Func. Count: 60, Neg. LLF: 140.5947158697127
Iteration: 7, Func. Count: 69, Neg. LLF: 140.5836918181855
Iteration: 8, Func. Count: 78, Neg. LLF: 140.58291893171105
Iteration: 9, Func. Count: 87, Neg. LLF: 140.58275320078005
Iteration: 10, Func. Count: 96, Neg. LLF: 140.58249449045238
Iteration: 11, Func. Count: 105, Neg. LLF: 140.58191856485766
Iteration: 12, Func. Count: 114, Neg. LLF: 140.58146963289101
Iteration: 13, Func. Count: 123, Neg. LLF: 140.5812917955093
Iteration: 14, Func. Count: 132, Neg. LLF: 140.58127213150541
Iteration: 15, Func. Count: 141, Neg. LLF: 140.5812712904751
Optimization terminated successfully (Exit mode 0)
Current function value: 140.5812712904751
Iterations: 15
Function evaluations: 141
Gradient evaluations: 15
Iteration: 1, Func. Count: 7, Neg. LLF: 143.0349014431416
Iteration: 2, Func. Count: 14, Neg. LLF: 145.50138121403225
Iteration: 3, Func. Count: 21, Neg. LLF: 141.08642775542512
Iteration: 4, Func. Count: 27, Neg. LLF: 142.57209962047105
Iteration: 5, Func. Count: 35, Neg. LLF: 140.97857338190119
Iteration: 6, Func. Count: 42, Neg. LLF: 141.42959914767206
Iteration: 7, Func. Count: 49, Neg. LLF: 140.7217397370823
Iteration: 8, Func. Count: 55, Neg. LLF: 140.71547431592785
Iteration: 9, Func. Count: 61, Neg. LLF: 140.71390969513914
Iteration: 10, Func. Count: 67, Neg. LLF: 140.7138984570055
Iteration: 11, Func. Count: 73, Neg. LLF: 140.71389794718925
Optimization terminated successfully (Exit mode 0)
Current function value: 140.71389794718925
Iterations: 11
Function evaluations: 73
Gradient evaluations: 11
Iteration: 1, Func. Count: 8, Neg. LLF: 144.38628602460972
Iteration: 2, Func. Count: 16, Neg. LLF: 147.5539790030439
Iteration: 3, Func. Count: 24, Neg. LLF: 141.054001578993
Iteration: 4, Func. Count: 32, Neg. LLF: 140.30175017677433
Iteration: 5, Func. Count: 39, Neg. LLF: 142.0993840683271
Iteration: 6, Func. Count: 47, Neg. LLF: 140.10524113749824
Iteration: 7, Func. Count: 54, Neg. LLF: 140.6665436837972
Iteration: 8, Func. Count: 62, Neg. LLF: 139.92565959457679
Iteration: 9, Func. Count: 69, Neg. LLF: 139.91592489922726
Iteration: 10, Func. Count: 76, Neg. LLF: 139.91477559213845
Iteration: 11, Func. Count: 83, Neg. LLF: 139.9146625776868
Iteration: 12, Func. Count: 89, Neg. LLF: 139.9146625776662
Optimization terminated successfully (Exit mode 0)
Current function value: 139.9146625776868
Iterations: 12
Function evaluations: 89
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 142.9656295980675
Iteration: 2, Func. Count: 19, Neg. LLF: 147.33558025144137
Iteration: 3, Func. Count: 28, Neg. LLF: 141.5425790778767
Iteration: 4, Func. Count: 37, Neg. LLF: 140.7711080655403
Iteration: 5, Func. Count: 46, Neg. LLF: 140.7153297377456
Iteration: 6, Func. Count: 55, Neg. LLF: 140.6535636246215
Iteration: 7, Func. Count: 63, Neg. LLF: 140.64448679551157
Iteration: 8, Func. Count: 71, Neg. LLF: 140.63965143581842
Iteration: 9, Func. Count: 79, Neg. LLF: 140.58430399903975
Iteration: 10, Func. Count: 87, Neg. LLF: 140.3398206822277
Iteration: 11, Func. Count: 95, Neg. LLF: 140.89288828681077
Iteration: 12, Func. Count: 104, Neg. LLF: 140.24089950789838
Iteration: 13, Func. Count: 112, Neg. LLF: 140.13883802350415
Iteration: 14, Func. Count: 120, Neg. LLF: 140.0563436509746
Iteration: 15, Func. Count: 128, Neg. LLF: 140.00668770906105
Iteration: 16, Func. Count: 136, Neg. LLF: 139.92154409954674
Iteration: 17, Func. Count: 144, Neg. LLF: 139.91605704271123
Iteration: 18, Func. Count: 152, Neg. LLF: 139.91479967442746
Iteration: 19, Func. Count: 160, Neg. LLF: 139.914670401381
Iteration: 20, Func. Count: 168, Neg. LLF: 139.91466316788205
Iteration: 21, Func. Count: 176, Neg. LLF: 139.91466224326376
Optimization terminated successfully (Exit mode 0)
Current function value: 139.91466224326376
Iterations: 21
Function evaluations: 176
Gradient evaluations: 21
Iteration: 1, Func. Count: 10, Neg. LLF: 142.76734978024487
Iteration: 2, Func. Count: 21, Neg. LLF: 147.18724946533334
Iteration: 3, Func. Count: 31, Neg. LLF: 141.68174948801047
Iteration: 4, Func. Count: 41, Neg. LLF: 140.61448777527644
Iteration: 5, Func. Count: 50, Neg. LLF: 140.51025293653032
Iteration: 6, Func. Count: 60, Neg. LLF: 140.66361362001575
Iteration: 7, Func. Count: 70, Neg. LLF: 140.40964405148688
Iteration: 8, Func. Count: 79, Neg. LLF: 140.37656244554177
Iteration: 9, Func. Count: 88, Neg. LLF: 140.30817179067628
Iteration: 10, Func. Count: 97, Neg. LLF: 140.25962001370323
Iteration: 11, Func. Count: 106, Neg. LLF: 140.2305300951409
Iteration: 12, Func. Count: 115, Neg. LLF: 140.20740681665248
Iteration: 13, Func. Count: 124, Neg. LLF: 140.1874159419607
Iteration: 14, Func. Count: 133, Neg. LLF: 140.18338927687543
Iteration: 15, Func. Count: 142, Neg. LLF: 140.18290817055913
Iteration: 16, Func. Count: 151, Neg. LLF: 140.1828328422818
Iteration: 17, Func. Count: 160, Neg. LLF: 140.18282595633195
Iteration: 18, Func. Count: 168, Neg. LLF: 140.18282595625422
Optimization terminated successfully (Exit mode 0)
Current function value: 140.18282595633195
Iterations: 18
Function evaluations: 168
Gradient evaluations: 18
Iteration: 1, Func. Count: 11, Neg. LLF: 143.66609846165537
Iteration: 2, Func. Count: 22, Neg. LLF: 147.0429539668591
Iteration: 3, Func. Count: 33, Neg. LLF: 142.0289483951272
Iteration: 4, Func. Count: 44, Neg. LLF: 140.98973354336914
Iteration: 5, Func. Count: 55, Neg. LLF: 140.71786805817305
Iteration: 6, Func. Count: 66, Neg. LLF: 140.4958155444472
Iteration: 7, Func. Count: 76, Neg. LLF: 140.42570359295294
Iteration: 8, Func. Count: 86, Neg. LLF: 140.44316595310838
Iteration: 9, Func. Count: 97, Neg. LLF: 140.38599787161166
Iteration: 10, Func. Count: 107, Neg. LLF: 140.31848689822326
Iteration: 11, Func. Count: 117, Neg. LLF: 140.2452018858676
Iteration: 12, Func. Count: 127, Neg. LLF: 140.1918316466694
Iteration: 13, Func. Count: 137, Neg. LLF: 140.2433263210352
Iteration: 14, Func. Count: 148, Neg. LLF: 140.18382249917073
Iteration: 15, Func. Count: 158, Neg. LLF: 140.18286742169215
Iteration: 16, Func. Count: 168, Neg. LLF: 140.18282837200098
Iteration: 17, Func. Count: 178, Neg. LLF: 140.182825953513
Iteration: 18, Func. Count: 187, Neg. LLF: 140.18282602162526
Optimization terminated successfully (Exit mode 0)
Current function value: 140.182825953513
Iterations: 18
Function evaluations: 187
Gradient evaluations: 18
Iteration: 1, Func. Count: 8, Neg. LLF: 146.73532522657672
Iteration: 2, Func. Count: 16, Neg. LLF: 142.05624218035808
Iteration: 3, Func. Count: 24, Neg. LLF: 140.3170454002775
Iteration: 4, Func. Count: 31, Neg. LLF: 140.14137906844906
Iteration: 5, Func. Count: 38, Neg. LLF: 140.0226980787663
Iteration: 6, Func. Count: 45, Neg. LLF: 140.02069550433734
Iteration: 7, Func. Count: 52, Neg. LLF: 140.02020529750385
Iteration: 8, Func. Count: 59, Neg. LLF: 140.01957911933582
Iteration: 9, Func. Count: 66, Neg. LLF: 140.01940640999925
Iteration: 10, Func. Count: 73, Neg. LLF: 140.0193513817947
Iteration: 11, Func. Count: 80, Neg. LLF: 140.01934905819604
Iteration: 12, Func. Count: 86, Neg. LLF: 140.01934892780739
Optimization terminated successfully (Exit mode 0)
Current function value: 140.01934905819604
Iterations: 12
Function evaluations: 86
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 155.24938846999274
Iteration: 2, Func. Count: 18, Neg. LLF: 156.2181192104724
Iteration: 3, Func. Count: 27, Neg. LLF: 139.86803358179316
Iteration: 4, Func. Count: 35, Neg. LLF: 139.2417735125176
Iteration: 5, Func. Count: 43, Neg. LLF: 139.23675946547547
Iteration: 6, Func. Count: 51, Neg. LLF: 139.22629151376006
Iteration: 7, Func. Count: 59, Neg. LLF: 139.2238666666144
Iteration: 8, Func. Count: 67, Neg. LLF: 139.2234527027638
Iteration: 9, Func. Count: 75, Neg. LLF: 139.2234460001361
Iteration: 10, Func. Count: 83, Neg. LLF: 139.2234448439117
Iteration: 11, Func. Count: 91, Neg. LLF: 139.22344390849833
Optimization terminated successfully (Exit mode 0)
Current function value: 139.22344390849833
Iterations: 11
Function evaluations: 91
Gradient evaluations: 11
Iteration: 1, Func. Count: 10, Neg. LLF: 143.88484986863682
Iteration: 2, Func. Count: 20, Neg. LLF: 145.33905127985267
Iteration: 3, Func. Count: 30, Neg. LLF: 140.82691525595618
Iteration: 4, Func. Count: 40, Neg. LLF: 139.8246242186717
Iteration: 5, Func. Count: 49, Neg. LLF: 201.86920235827165
Iteration: 6, Func. Count: 60, Neg. LLF: 139.52696097445306
Iteration: 7, Func. Count: 69, Neg. LLF: 141.36222368706092
Iteration: 8, Func. Count: 79, Neg. LLF: 139.4210942625108
Iteration: 9, Func. Count: 88, Neg. LLF: 139.2814580958953
Iteration: 10, Func. Count: 97, Neg. LLF: 139.26188071753097
Iteration: 11, Func. Count: 106, Neg. LLF: 139.25221208729835
Iteration: 12, Func. Count: 115, Neg. LLF: 139.24626089960074
Iteration: 13, Func. Count: 124, Neg. LLF: 139.2436448173406
Iteration: 14, Func. Count: 133, Neg. LLF: 139.24292664341604
Iteration: 15, Func. Count: 142, Neg. LLF: 139.2424244708423
Iteration: 16, Func. Count: 151, Neg. LLF: 139.241109693562
Iteration: 17, Func. Count: 160, Neg. LLF: 139.22453750950837
Iteration: 18, Func. Count: 169, Neg. LLF: 139.22398195746837
Iteration: 19, Func. Count: 178, Neg. LLF: 139.22355674876925
Iteration: 20, Func. Count: 187, Neg. LLF: 139.22346761639307
Iteration: 21, Func. Count: 196, Neg. LLF: 139.2234475025217
Iteration: 22, Func. Count: 205, Neg. LLF: 139.22344452471086
Iteration: 23, Func. Count: 214, Neg. LLF: 139.22344385597822
Optimization terminated successfully (Exit mode 0)
Current function value: 139.22344385597822
Iterations: 23
Function evaluations: 214
Gradient evaluations: 23
Iteration: 1, Func. Count: 11, Neg. LLF: 143.36543770009447
Iteration: 2, Func. Count: 22, Neg. LLF: 145.88533367580243
Iteration: 3, Func. Count: 33, Neg. LLF: 144.30334167923237
Iteration: 4, Func. Count: 44, Neg. LLF: 139.89996518526965
Iteration: 5, Func. Count: 54, Neg. LLF: 141.84474083555702
Iteration: 6, Func. Count: 66, Neg. LLF: 140.6781110069662
Iteration: 7, Func. Count: 78, Neg. LLF: 139.824701273164
Iteration: 8, Func. Count: 89, Neg. LLF: 139.4930205180977
Iteration: 9, Func. Count: 99, Neg. LLF: 139.4294127352934
Iteration: 10, Func. Count: 109, Neg. LLF: 139.3180745160712
Iteration: 11, Func. Count: 119, Neg. LLF: 139.26147873160082
Iteration: 12, Func. Count: 129, Neg. LLF: 139.25111381568487
Iteration: 13, Func. Count: 139, Neg. LLF: 139.24864968719595
Iteration: 14, Func. Count: 149, Neg. LLF: 139.24530268639117
Iteration: 15, Func. Count: 159, Neg. LLF: 139.24325444506763
Iteration: 16, Func. Count: 169, Neg. LLF: 139.2422973490225
Iteration: 17, Func. Count: 179, Neg. LLF: 139.24157381638392
Iteration: 18, Func. Count: 189, Neg. LLF: 139.2247151483214
Iteration: 19, Func. Count: 199, Neg. LLF: 139.22388231515828
Iteration: 20, Func. Count: 209, Neg. LLF: 139.22349694668387
Iteration: 21, Func. Count: 219, Neg. LLF: 139.22345415291457
Iteration: 22, Func. Count: 229, Neg. LLF: 139.22344397277286
Iteration: 23, Func. Count: 238, Neg. LLF: 139.22344405280222
Optimization terminated successfully (Exit mode 0)
Current function value: 139.22344397277286
Iterations: 23
Function evaluations: 238
Gradient evaluations: 23
Iteration: 1, Func. Count: 12, Neg. LLF: 142.55852864315412
Iteration: 2, Func. Count: 24, Neg. LLF: 145.32470724665157
Iteration: 3, Func. Count: 36, Neg. LLF: 140.97722241900198
Iteration: 4, Func. Count: 48, Neg. LLF: 139.92471144677194
Iteration: 5, Func. Count: 59, Neg. LLF: 168.3129970234901
Iteration: 6, Func. Count: 72, Neg. LLF: 140.04420400360092
Iteration: 7, Func. Count: 84, Neg. LLF: 140.3136583177057
Iteration: 8, Func. Count: 96, Neg. LLF: 139.4850303838999
Iteration: 9, Func. Count: 107, Neg. LLF: 139.401943305041
Iteration: 10, Func. Count: 118, Neg. LLF: 139.27129930859596
Iteration: 11, Func. Count: 129, Neg. LLF: 139.25393341432857
Iteration: 12, Func. Count: 140, Neg. LLF: 139.24741157309768
Iteration: 13, Func. Count: 151, Neg. LLF: 139.2452873033724
Iteration: 14, Func. Count: 162, Neg. LLF: 139.2443395260413
Iteration: 15, Func. Count: 173, Neg. LLF: 139.24282427295316
Iteration: 16, Func. Count: 184, Neg. LLF: 139.24212991520147
Iteration: 17, Func. Count: 195, Neg. LLF: 139.23936385805274
Iteration: 18, Func. Count: 206, Neg. LLF: 139.22401646925348
Iteration: 19, Func. Count: 217, Neg. LLF: 139.22386177289317
Iteration: 20, Func. Count: 228, Neg. LLF: 139.22350449787598
Iteration: 21, Func. Count: 239, Neg. LLF: 139.22347066424487
Iteration: 22, Func. Count: 250, Neg. LLF: 139.22344485619976
Iteration: 23, Func. Count: 261, Neg. LLF: 139.22344377119214
Iteration: 24, Func. Count: 271, Neg. LLF: 139.2234438609934
Optimization terminated successfully (Exit mode 0)
Current function value: 139.22344377119214
Iterations: 24
Function evaluations: 271
Gradient evaluations: 24
Iteration: 1, Func. Count: 9, Neg. LLF: 142.66583599031625
Iteration: 2, Func. Count: 18, Neg. LLF: 142.55125745484594
Iteration: 3, Func. Count: 27, Neg. LLF: 140.19441223645865
Iteration: 4, Func. Count: 35, Neg. LLF: 140.10803156089298
Iteration: 5, Func. Count: 43, Neg. LLF: 140.02361805260952
Iteration: 6, Func. Count: 51, Neg. LLF: 140.02163461875284
Iteration: 7, Func. Count: 59, Neg. LLF: 140.0205537180482
Iteration: 8, Func. Count: 67, Neg. LLF: 140.0197749688377
Iteration: 9, Func. Count: 75, Neg. LLF: 140.01939406791692
Iteration: 10, Func. Count: 83, Neg. LLF: 140.01935263480368
Iteration: 11, Func. Count: 91, Neg. LLF: 140.01934958889137
Iteration: 12, Func. Count: 98, Neg. LLF: 140.01934968504943
Optimization terminated successfully (Exit mode 0)
Current function value: 140.01934958889137
Iterations: 12
Function evaluations: 98
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 155.25904725464005
Iteration: 2, Func. Count: 20, Neg. LLF: 156.27264580354446
Iteration: 3, Func. Count: 30, Neg. LLF: 139.89400839458241
Iteration: 4, Func. Count: 39, Neg. LLF: 139.2426216278498
Iteration: 5, Func. Count: 48, Neg. LLF: 139.23727088606708
Iteration: 6, Func. Count: 57, Neg. LLF: 139.22646611753828
Iteration: 7, Func. Count: 66, Neg. LLF: 139.2239078032462
Iteration: 8, Func. Count: 75, Neg. LLF: 139.22345629522613
Iteration: 9, Func. Count: 84, Neg. LLF: 139.22344778261157
Iteration: 10, Func. Count: 93, Neg. LLF: 139.22344563118327
Iteration: 11, Func. Count: 102, Neg. LLF: 139.22344399562945
Iteration: 12, Func. Count: 110, Neg. LLF: 139.22344399555965
Optimization terminated successfully (Exit mode 0)
Current function value: 139.22344399562945
Iterations: 12
Function evaluations: 110
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 143.78161282791672
Iteration: 2, Func. Count: 22, Neg. LLF: 145.3342602033408
Iteration: 3, Func. Count: 33, Neg. LLF: 140.84954724048438
Iteration: 4, Func. Count: 44, Neg. LLF: 139.82640599490728
Iteration: 5, Func. Count: 54, Neg. LLF: 201.56309434702578
Iteration: 6, Func. Count: 66, Neg. LLF: 139.52607355593275
Iteration: 7, Func. Count: 76, Neg. LLF: 141.26084590836174
Iteration: 8, Func. Count: 87, Neg. LLF: 139.42042486588164
Iteration: 9, Func. Count: 97, Neg. LLF: 139.28368785815337
Iteration: 10, Func. Count: 107, Neg. LLF: 139.26207963929133
Iteration: 11, Func. Count: 117, Neg. LLF: 139.25255805377915
Iteration: 12, Func. Count: 127, Neg. LLF: 139.246290196541
Iteration: 13, Func. Count: 137, Neg. LLF: 139.243680844918
Iteration: 14, Func. Count: 147, Neg. LLF: 139.24286204620765
Iteration: 15, Func. Count: 157, Neg. LLF: 139.24237266093954
Iteration: 16, Func. Count: 167, Neg. LLF: 139.24086663248448
Iteration: 17, Func. Count: 177, Neg. LLF: 139.22457340032963
Iteration: 18, Func. Count: 187, Neg. LLF: 139.2242153261365
Iteration: 19, Func. Count: 197, Neg. LLF: 139.223572670356
Iteration: 20, Func. Count: 207, Neg. LLF: 139.223487061015
Iteration: 21, Func. Count: 217, Neg. LLF: 139.2234489157216
Iteration: 22, Func. Count: 227, Neg. LLF: 139.2234450925579
Iteration: 23, Func. Count: 237, Neg. LLF: 139.22344385666042
Iteration: 24, Func. Count: 246, Neg. LLF: 139.22344386435546
Optimization terminated successfully (Exit mode 0)
Current function value: 139.22344385666042
Iterations: 24
Function evaluations: 246
Gradient evaluations: 24
Iteration: 1, Func. Count: 12, Neg. LLF: 143.31478998149447
Iteration: 2, Func. Count: 24, Neg. LLF: 145.8874778881742
Iteration: 3, Func. Count: 36, Neg. LLF: 144.4496045452723
Iteration: 4, Func. Count: 48, Neg. LLF: 139.90530786860438
Iteration: 5, Func. Count: 59, Neg. LLF: 141.90356228951973
Iteration: 6, Func. Count: 72, Neg. LLF: 140.7404069088194
Iteration: 7, Func. Count: 85, Neg. LLF: 139.8123270464683
Iteration: 8, Func. Count: 97, Neg. LLF: 139.494014615824
Iteration: 9, Func. Count: 108, Neg. LLF: 139.43066543546263
Iteration: 10, Func. Count: 119, Neg. LLF: 139.3201827925423
Iteration: 11, Func. Count: 130, Neg. LLF: 139.26178500299127
Iteration: 12, Func. Count: 141, Neg. LLF: 139.25149184161228
Iteration: 13, Func. Count: 152, Neg. LLF: 139.24879249091836
Iteration: 14, Func. Count: 163, Neg. LLF: 139.24547471985514
Iteration: 15, Func. Count: 174, Neg. LLF: 139.24327156245448
Iteration: 16, Func. Count: 185, Neg. LLF: 139.242316434801
Iteration: 17, Func. Count: 196, Neg. LLF: 139.24163990645437
Iteration: 18, Func. Count: 207, Neg. LLF: 139.22483114557173
Iteration: 19, Func. Count: 218, Neg. LLF: 139.22400482685356
Iteration: 20, Func. Count: 229, Neg. LLF: 139.22351005754058
Iteration: 21, Func. Count: 240, Neg. LLF: 139.22345694804287
Iteration: 22, Func. Count: 251, Neg. LLF: 139.22344404680365
Iteration: 23, Func. Count: 261, Neg. LLF: 139.2234441268202
Optimization terminated successfully (Exit mode 0)
Current function value: 139.22344404680365
Iterations: 23
Function evaluations: 261
Gradient evaluations: 23
Iteration: 1, Func. Count: 13, Neg. LLF: 142.56321848321792
Iteration: 2, Func. Count: 26, Neg. LLF: 145.32432519733624
Iteration: 3, Func. Count: 39, Neg. LLF: 140.9966844972448
Iteration: 4, Func. Count: 52, Neg. LLF: 139.92960098549975
Iteration: 5, Func. Count: 64, Neg. LLF: 165.71429188026372
Iteration: 6, Func. Count: 78, Neg. LLF: 140.20212020582167
Iteration: 7, Func. Count: 91, Neg. LLF: 140.31173077417853
Iteration: 8, Func. Count: 104, Neg. LLF: 139.4865852912225
Iteration: 9, Func. Count: 116, Neg. LLF: 139.4126525212198
Iteration: 10, Func. Count: 128, Neg. LLF: 139.2713925124522
Iteration: 11, Func. Count: 140, Neg. LLF: 139.25385700376552
Iteration: 12, Func. Count: 152, Neg. LLF: 139.24795530828357
Iteration: 13, Func. Count: 164, Neg. LLF: 139.2454696066683
Iteration: 14, Func. Count: 176, Neg. LLF: 139.2444064320631
Iteration: 15, Func. Count: 188, Neg. LLF: 139.24290873386695
Iteration: 16, Func. Count: 200, Neg. LLF: 139.24216648397072
Iteration: 17, Func. Count: 212, Neg. LLF: 139.24012526859906
Iteration: 18, Func. Count: 224, Neg. LLF: 139.22416020191037
Iteration: 19, Func. Count: 236, Neg. LLF: 139.22382231276566
Iteration: 20, Func. Count: 248, Neg. LLF: 139.22351468156083
Iteration: 21, Func. Count: 260, Neg. LLF: 139.22346605413554
Iteration: 22, Func. Count: 272, Neg. LLF: 139.22344404789226
Iteration: 23, Func. Count: 283, Neg. LLF: 139.22344413770065
Optimization terminated successfully (Exit mode 0)
Current function value: 139.22344404789226
Iterations: 23
Function evaluations: 283
Gradient evaluations: 23
Iteration: 1, Func. Count: 10, Neg. LLF: 142.56006289489133
Iteration: 2, Func. Count: 20, Neg. LLF: 143.5685424906227
Iteration: 3, Func. Count: 31, Neg. LLF: 140.67407352531373
Iteration: 4, Func. Count: 40, Neg. LLF: 140.31422464479724
Iteration: 5, Func. Count: 49, Neg. LLF: 141.49087148901629
Iteration: 6, Func. Count: 59, Neg. LLF: 140.01917199659076
Iteration: 7, Func. Count: 68, Neg. LLF: 140.0251591223979
Iteration: 8, Func. Count: 78, Neg. LLF: 140.0080324758474
Iteration: 9, Func. Count: 88, Neg. LLF: 140.00356495677372
Iteration: 10, Func. Count: 97, Neg. LLF: 140.00338673167326
Iteration: 11, Func. Count: 106, Neg. LLF: 140.00332183003422
Iteration: 12, Func. Count: 115, Neg. LLF: 140.00330092683288
Iteration: 13, Func. Count: 124, Neg. LLF: 140.00328437993284
Iteration: 14, Func. Count: 133, Neg. LLF: 140.00328217396392
Iteration: 15, Func. Count: 141, Neg. LLF: 140.0032821740066
Optimization terminated successfully (Exit mode 0)
Current function value: 140.00328217396392
Iterations: 15
Function evaluations: 141
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 155.2746190904084
Iteration: 2, Func. Count: 22, Neg. LLF: 156.35170359357042
Iteration: 3, Func. Count: 33, Neg. LLF: 139.92042502384407
Iteration: 4, Func. Count: 43, Neg. LLF: 139.24256268740845
Iteration: 5, Func. Count: 53, Neg. LLF: 139.23676254996113
Iteration: 6, Func. Count: 63, Neg. LLF: 139.22642629440247
Iteration: 7, Func. Count: 73, Neg. LLF: 139.2238365719658
Iteration: 8, Func. Count: 83, Neg. LLF: 139.2234574840192
Iteration: 9, Func. Count: 93, Neg. LLF: 139.2234559750534
Iteration: 10, Func. Count: 104, Neg. LLF: 139.2234521759496
Iteration: 11, Func. Count: 115, Neg. LLF: 139.22344585749997
Iteration: 12, Func. Count: 125, Neg. LLF: 139.22344386908938
Iteration: 13, Func. Count: 134, Neg. LLF: 139.22344386908873
Optimization terminated successfully (Exit mode 0)
Current function value: 139.22344386908938
Iterations: 13
Function evaluations: 134
Gradient evaluations: 13
Iteration: 1, Func. Count: 12, Neg. LLF: 143.7137371443657
Iteration: 2, Func. Count: 24, Neg. LLF: 145.35043332334203
Iteration: 3, Func. Count: 36, Neg. LLF: 140.86519614186227
Iteration: 4, Func. Count: 48, Neg. LLF: 139.82753077099187
Iteration: 5, Func. Count: 59, Neg. LLF: 199.97221321469544
Iteration: 6, Func. Count: 72, Neg. LLF: 139.5265013561832
Iteration: 7, Func. Count: 83, Neg. LLF: 141.1918685997292
Iteration: 8, Func. Count: 95, Neg. LLF: 139.41950846722676
Iteration: 9, Func. Count: 106, Neg. LLF: 139.28400197251176
Iteration: 10, Func. Count: 117, Neg. LLF: 139.26207715831822
Iteration: 11, Func. Count: 128, Neg. LLF: 139.2524975167754
Iteration: 12, Func. Count: 139, Neg. LLF: 139.2462720559943
Iteration: 13, Func. Count: 150, Neg. LLF: 139.24366530188547
Iteration: 14, Func. Count: 161, Neg. LLF: 139.24284858406426
Iteration: 15, Func. Count: 172, Neg. LLF: 139.24234731257837
Iteration: 16, Func. Count: 183, Neg. LLF: 139.2406665086543
Iteration: 17, Func. Count: 194, Neg. LLF: 139.22446799054208
Iteration: 18, Func. Count: 205, Neg. LLF: 139.2242749037704
Iteration: 19, Func. Count: 217, Neg. LLF: 139.2235602220626
Iteration: 20, Func. Count: 228, Neg. LLF: 139.2234607991496
Iteration: 21, Func. Count: 239, Neg. LLF: 139.22344622464098
Iteration: 22, Func. Count: 250, Neg. LLF: 139.22344440223074
Iteration: 23, Func. Count: 261, Neg. LLF: 139.2234438103655
Optimization terminated successfully (Exit mode 0)
Current function value: 139.2234438103655
Iterations: 23
Function evaluations: 261
Gradient evaluations: 23
Iteration: 1, Func. Count: 13, Neg. LLF: 143.2886068533148
Iteration: 2, Func. Count: 26, Neg. LLF: 145.90306467828222
Iteration: 3, Func. Count: 39, Neg. LLF: 144.522635005935
Iteration: 4, Func. Count: 52, Neg. LLF: 139.9050624959402
Iteration: 5, Func. Count: 64, Neg. LLF: 141.90024970966115
Iteration: 6, Func. Count: 78, Neg. LLF: 140.73961394809186
Iteration: 7, Func. Count: 92, Neg. LLF: 139.81213434333642
Iteration: 8, Func. Count: 105, Neg. LLF: 139.4946417512809
Iteration: 9, Func. Count: 117, Neg. LLF: 139.43107925023745
Iteration: 10, Func. Count: 129, Neg. LLF: 139.3206237523826
Iteration: 11, Func. Count: 141, Neg. LLF: 139.26188315997274
Iteration: 12, Func. Count: 153, Neg. LLF: 139.25146312555847
Iteration: 13, Func. Count: 165, Neg. LLF: 139.24879459712508
Iteration: 14, Func. Count: 177, Neg. LLF: 139.24544473052316
Iteration: 15, Func. Count: 189, Neg. LLF: 139.24326892667693
Iteration: 16, Func. Count: 201, Neg. LLF: 139.24231404760653
Iteration: 17, Func. Count: 213, Neg. LLF: 139.24163044633724
Iteration: 18, Func. Count: 225, Neg. LLF: 139.22480444397112
Iteration: 19, Func. Count: 237, Neg. LLF: 139.22398565471107
Iteration: 20, Func. Count: 249, Neg. LLF: 139.22350801262505
Iteration: 21, Func. Count: 261, Neg. LLF: 139.22345676055394
Iteration: 22, Func. Count: 273, Neg. LLF: 139.22344404204972
Iteration: 23, Func. Count: 284, Neg. LLF: 139.2234441220649
Optimization terminated successfully (Exit mode 0)
Current function value: 139.22344404204972
Iterations: 23
Function evaluations: 284
Gradient evaluations: 23
Iteration: 1, Func. Count: 14, Neg. LLF: 142.55470237337917
Iteration: 2, Func. Count: 28, Neg. LLF: 145.3375644088076
Iteration: 3, Func. Count: 42, Neg. LLF: 141.0015262228748
Iteration: 4, Func. Count: 56, Neg. LLF: 139.93101023547027
Iteration: 5, Func. Count: 69, Neg. LLF: 164.97119596478626
Iteration: 6, Func. Count: 84, Neg. LLF: 140.25427966921822
Iteration: 7, Func. Count: 98, Neg. LLF: 140.30885799330946
Iteration: 8, Func. Count: 112, Neg. LLF: 139.48769908313832
Iteration: 9, Func. Count: 125, Neg. LLF: 139.41642580543956
Iteration: 10, Func. Count: 138, Neg. LLF: 139.2725342378545
Iteration: 11, Func. Count: 151, Neg. LLF: 139.25400029362186
Iteration: 12, Func. Count: 164, Neg. LLF: 139.24827197311288
Iteration: 13, Func. Count: 177, Neg. LLF: 139.24563420311637
Iteration: 14, Func. Count: 190, Neg. LLF: 139.2443764063083
Iteration: 15, Func. Count: 203, Neg. LLF: 139.24300878682996
Iteration: 16, Func. Count: 216, Neg. LLF: 139.24220348591416
Iteration: 17, Func. Count: 229, Neg. LLF: 139.24058991662574
Iteration: 18, Func. Count: 242, Neg. LLF: 139.22425358014164
Iteration: 19, Func. Count: 255, Neg. LLF: 139.22381665359347
Iteration: 20, Func. Count: 268, Neg. LLF: 139.22350485278866
Iteration: 21, Func. Count: 281, Neg. LLF: 139.22345563866804
Iteration: 22, Func. Count: 294, Neg. LLF: 139.22344386356767
Iteration: 23, Func. Count: 306, Neg. LLF: 139.2234439533421
Optimization terminated successfully (Exit mode 0)
Current function value: 139.22344386356767
Iterations: 23
Function evaluations: 306
Gradient evaluations: 23
Iteration: 1, Func. Count: 7, Neg. LLF: 143.46045620116027
Iteration: 2, Func. Count: 14, Neg. LLF: 144.60069526690563
Iteration: 3, Func. Count: 22, Neg. LLF: 142.226131853079
Iteration: 4, Func. Count: 29, Neg. LLF: 140.70253756991434
Iteration: 5, Func. Count: 35, Neg. LLF: 140.76742186957767
Iteration: 6, Func. Count: 42, Neg. LLF: 140.7876518204572
Iteration: 7, Func. Count: 49, Neg. LLF: 140.67635382233888
Iteration: 8, Func. Count: 55, Neg. LLF: 140.67041874423825
Iteration: 9, Func. Count: 61, Neg. LLF: 140.6701242515931
Iteration: 10, Func. Count: 67, Neg. LLF: 140.67012047533015
Iteration: 11, Func. Count: 72, Neg. LLF: 140.67012047536213
Optimization terminated successfully (Exit mode 0)
Current function value: 140.67012047533015
Iterations: 11
Function evaluations: 72
Gradient evaluations: 11
Iteration: 1, Func. Count: 8, Neg. LLF: 143.78969979053517
Iteration: 2, Func. Count: 17, Neg. LLF: 142.0415820145085
Iteration: 3, Func. Count: 25, Neg. LLF: 141.6759298115054
Iteration: 4, Func. Count: 33, Neg. LLF: 140.6931315705091
Iteration: 5, Func. Count: 40, Neg. LLF: 140.67807931684416
Iteration: 6, Func. Count: 47, Neg. LLF: 140.6773908691673
Iteration: 7, Func. Count: 54, Neg. LLF: 140.67721536819823
Iteration: 8, Func. Count: 61, Neg. LLF: 140.67682981687432
Iteration: 9, Func. Count: 68, Neg. LLF: 140.67466057282533
Iteration: 10, Func. Count: 75, Neg. LLF: 140.66755053622566
Iteration: 11, Func. Count: 82, Neg. LLF: 140.66607418783462
Iteration: 12, Func. Count: 89, Neg. LLF: 140.66581207546028
Iteration: 13, Func. Count: 96, Neg. LLF: 140.66566323183406
Iteration: 14, Func. Count: 103, Neg. LLF: 140.6656597816607
Iteration: 15, Func. Count: 109, Neg. LLF: 140.66565978163112
Optimization terminated successfully (Exit mode 0)
Current function value: 140.6656597816607
Iterations: 15
Function evaluations: 109
Gradient evaluations: 15
Iteration: 1, Func. Count: 9, Neg. LLF: 143.7711869437906
Iteration: 2, Func. Count: 18, Neg. LLF: 141.87228685689175
Iteration: 3, Func. Count: 27, Neg. LLF: 144.78850952521495
Iteration: 4, Func. Count: 36, Neg. LLF: 141.44340147742125
Iteration: 5, Func. Count: 45, Neg. LLF: 140.795897114112
Iteration: 6, Func. Count: 54, Neg. LLF: 140.68986903043253
Iteration: 7, Func. Count: 62, Neg. LLF: 140.67802228072046
Iteration: 8, Func. Count: 70, Neg. LLF: 140.677372920079
Iteration: 9, Func. Count: 79, Neg. LLF: 140.6738752421114
Iteration: 10, Func. Count: 87, Neg. LLF: 140.67369993328177
Iteration: 11, Func. Count: 95, Neg. LLF: 140.6731219871831
Iteration: 12, Func. Count: 103, Neg. LLF: 140.6718574583656
Iteration: 13, Func. Count: 111, Neg. LLF: 140.66980336282097
Iteration: 14, Func. Count: 119, Neg. LLF: 140.6674613694545
Iteration: 15, Func. Count: 127, Neg. LLF: 140.66597152483013
Iteration: 16, Func. Count: 135, Neg. LLF: 140.66570622666416
Iteration: 17, Func. Count: 143, Neg. LLF: 140.66566288377248
Iteration: 18, Func. Count: 151, Neg. LLF: 140.66565974505897
Iteration: 19, Func. Count: 158, Neg. LLF: 140.66565974535237
Optimization terminated successfully (Exit mode 0)
Current function value: 140.66565974505897
Iterations: 19
Function evaluations: 158
Gradient evaluations: 19
Iteration: 1, Func. Count: 10, Neg. LLF: 143.79376553365384
Iteration: 2, Func. Count: 20, Neg. LLF: 141.84460326128695
Iteration: 3, Func. Count: 30, Neg. LLF: 147.80973204759138
Iteration: 4, Func. Count: 40, Neg. LLF: 143.19212083499187
Iteration: 5, Func. Count: 50, Neg. LLF: 140.8432235821168
Iteration: 6, Func. Count: 60, Neg. LLF: 140.56272083934402
Iteration: 7, Func. Count: 69, Neg. LLF: 140.56989331385893
Iteration: 8, Func. Count: 79, Neg. LLF: 140.55802515771464
Iteration: 9, Func. Count: 88, Neg. LLF: 140.5539172264337
Iteration: 10, Func. Count: 97, Neg. LLF: 140.55084637901783
Iteration: 11, Func. Count: 106, Neg. LLF: 140.5434816157827
Iteration: 12, Func. Count: 115, Neg. LLF: 140.53726307511945
Iteration: 13, Func. Count: 124, Neg. LLF: 140.53572193211778
Iteration: 14, Func. Count: 133, Neg. LLF: 140.53555227990242
Iteration: 15, Func. Count: 142, Neg. LLF: 140.53554568590022
Iteration: 16, Func. Count: 150, Neg. LLF: 140.53554568590653
Optimization terminated successfully (Exit mode 0)
Current function value: 140.53554568590022
Iterations: 16
Function evaluations: 150
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 143.78499405176026
Iteration: 2, Func. Count: 22, Neg. LLF: 141.80148369737216
Iteration: 3, Func. Count: 33, Neg. LLF: 146.80812199652536
Iteration: 4, Func. Count: 44, Neg. LLF: 141.5297234315781
Iteration: 5, Func. Count: 55, Neg. LLF: 146.9717165435548
Iteration: 6, Func. Count: 66, Neg. LLF: 140.5642042185482
Iteration: 7, Func. Count: 76, Neg. LLF: 140.56907959713234
Iteration: 8, Func. Count: 87, Neg. LLF: 140.55563382407206
Iteration: 9, Func. Count: 97, Neg. LLF: 140.55322614586427
Iteration: 10, Func. Count: 107, Neg. LLF: 140.54721483251478
Iteration: 11, Func. Count: 117, Neg. LLF: 140.54085872635824
Iteration: 12, Func. Count: 127, Neg. LLF: 140.53662289660775
Iteration: 13, Func. Count: 137, Neg. LLF: 140.53565932677964
Iteration: 14, Func. Count: 147, Neg. LLF: 140.53555114260647
Iteration: 15, Func. Count: 157, Neg. LLF: 140.5355456276684
Iteration: 16, Func. Count: 166, Neg. LLF: 140.535545658876
Optimization terminated successfully (Exit mode 0)
Current function value: 140.5355456276684
Iterations: 16
Function evaluations: 166
Gradient evaluations: 16
Iteration: 1, Func. Count: 8, Neg. LLF: 144.01269441394354
Iteration: 2, Func. Count: 17, Neg. LLF: 145.021116855986
Iteration: 3, Func. Count: 26, Neg. LLF: 143.45109454886602
Iteration: 4, Func. Count: 35, Neg. LLF: 140.92203257739712
Iteration: 5, Func. Count: 42, Neg. LLF: 140.86750247112258
Iteration: 6, Func. Count: 49, Neg. LLF: 141.0517093308406
Iteration: 7, Func. Count: 57, Neg. LLF: 140.74863251060228
Iteration: 8, Func. Count: 64, Neg. LLF: 140.70839451812535
Iteration: 9, Func. Count: 71, Neg. LLF: 140.66333350114854
Iteration: 10, Func. Count: 78, Neg. LLF: 140.66271713280992
Iteration: 11, Func. Count: 85, Neg. LLF: 140.6626556151675
Iteration: 12, Func. Count: 92, Neg. LLF: 140.66264581740825
Iteration: 13, Func. Count: 99, Neg. LLF: 140.66264393757004
Iteration: 14, Func. Count: 105, Neg. LLF: 140.66264393758118
Optimization terminated successfully (Exit mode 0)
Current function value: 140.66264393757004
Iterations: 14
Function evaluations: 105
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 143.78383777032715
Iteration: 2, Func. Count: 19, Neg. LLF: 147.37068310218385
Iteration: 3, Func. Count: 28, Neg. LLF: 143.72243952645994
Iteration: 4, Func. Count: 37, Neg. LLF: 141.10481911157518
Iteration: 5, Func. Count: 46, Neg. LLF: 140.68681995169442
Iteration: 6, Func. Count: 54, Neg. LLF: 140.63593856597927
Iteration: 7, Func. Count: 62, Neg. LLF: 140.6278528717392
Iteration: 8, Func. Count: 70, Neg. LLF: 140.6216994704058
Iteration: 9, Func. Count: 78, Neg. LLF: 140.61589735352285
Iteration: 10, Func. Count: 86, Neg. LLF: 140.58389094233348
Iteration: 11, Func. Count: 94, Neg. LLF: 140.5177785688311
Iteration: 12, Func. Count: 102, Neg. LLF: 140.17366027250495
Iteration: 13, Func. Count: 110, Neg. LLF: 140.4598821621624
Iteration: 14, Func. Count: 119, Neg. LLF: 139.96246143405605
Iteration: 15, Func. Count: 127, Neg. LLF: 139.9848425073311
Iteration: 16, Func. Count: 136, Neg. LLF: 139.92030531446449
Iteration: 17, Func. Count: 144, Neg. LLF: 139.91564583577593
Iteration: 18, Func. Count: 152, Neg. LLF: 139.91470307225347
Iteration: 19, Func. Count: 160, Neg. LLF: 139.91466275268147
Iteration: 20, Func. Count: 167, Neg. LLF: 139.91466275264114
Optimization terminated successfully (Exit mode 0)
Current function value: 139.91466275268147
Iterations: 20
Function evaluations: 167
Gradient evaluations: 20
Iteration: 1, Func. Count: 10, Neg. LLF: 143.4297889896923
Iteration: 2, Func. Count: 20, Neg. LLF: 147.21227952862193
Iteration: 3, Func. Count: 30, Neg. LLF: 141.92365325592365
Iteration: 4, Func. Count: 40, Neg. LLF: 141.02388346387946
Iteration: 5, Func. Count: 50, Neg. LLF: 140.92779139005907
Iteration: 6, Func. Count: 60, Neg. LLF: 141.43221878745447
Iteration: 7, Func. Count: 70, Neg. LLF: 140.6402061353251
Iteration: 8, Func. Count: 79, Neg. LLF: 140.62658646610907
Iteration: 9, Func. Count: 88, Neg. LLF: 140.61673765676534
Iteration: 10, Func. Count: 97, Neg. LLF: 140.610509828962
Iteration: 11, Func. Count: 106, Neg. LLF: 140.5531022572263
Iteration: 12, Func. Count: 115, Neg. LLF: 140.28294024334076
Iteration: 13, Func. Count: 124, Neg. LLF: 141.63130029521028
Iteration: 14, Func. Count: 134, Neg. LLF: 140.5263977625904
Iteration: 15, Func. Count: 144, Neg. LLF: 140.04851752700768
Iteration: 16, Func. Count: 153, Neg. LLF: 139.9514960022128
Iteration: 17, Func. Count: 162, Neg. LLF: 139.91547910287252
Iteration: 18, Func. Count: 171, Neg. LLF: 139.9152290655325
Iteration: 19, Func. Count: 180, Neg. LLF: 139.91468035762972
Iteration: 20, Func. Count: 189, Neg. LLF: 139.91466479165092
Iteration: 21, Func. Count: 198, Neg. LLF: 139.91466226943768
Iteration: 22, Func. Count: 206, Neg. LLF: 139.9146622834876
Optimization terminated successfully (Exit mode 0)
Current function value: 139.91466226943768
Iterations: 22
Function evaluations: 206
Gradient evaluations: 22
Iteration: 1, Func. Count: 11, Neg. LLF: 143.0782420484012
Iteration: 2, Func. Count: 22, Neg. LLF: 147.23647750593355
Iteration: 3, Func. Count: 33, Neg. LLF: 141.69338265423906
Iteration: 4, Func. Count: 44, Neg. LLF: 144.0809967211482
Iteration: 5, Func. Count: 55, Neg. LLF: 140.6629645764507
Iteration: 6, Func. Count: 66, Neg. LLF: 140.44495374878178
Iteration: 7, Func. Count: 76, Neg. LLF: 140.4470324139292
Iteration: 8, Func. Count: 87, Neg. LLF: 140.54191020477467
Iteration: 9, Func. Count: 98, Neg. LLF: 140.4081876655443
Iteration: 10, Func. Count: 108, Neg. LLF: 140.36135445956825
Iteration: 11, Func. Count: 118, Neg. LLF: 140.31568794278834
Iteration: 12, Func. Count: 128, Neg. LLF: 140.26180195355911
Iteration: 13, Func. Count: 138, Neg. LLF: 140.22435202141446
Iteration: 14, Func. Count: 148, Neg. LLF: 140.19923746973353
Iteration: 15, Func. Count: 158, Neg. LLF: 140.19003952147722
Iteration: 16, Func. Count: 168, Neg. LLF: 140.18358310465769
Iteration: 17, Func. Count: 178, Neg. LLF: 140.18308393759796
Iteration: 18, Func. Count: 188, Neg. LLF: 140.18288918294667
Iteration: 19, Func. Count: 198, Neg. LLF: 140.1828467198751
Iteration: 20, Func. Count: 208, Neg. LLF: 140.18282603562176
Iteration: 21, Func. Count: 217, Neg. LLF: 140.18282603549704
Optimization terminated successfully (Exit mode 0)
Current function value: 140.18282603562176
Iterations: 21
Function evaluations: 217
Gradient evaluations: 21
Iteration: 1, Func. Count: 12, Neg. LLF: 143.61269351579728
Iteration: 2, Func. Count: 24, Neg. LLF: 147.16925436744333
Iteration: 3, Func. Count: 36, Neg. LLF: 141.33754040722746
Iteration: 4, Func. Count: 48, Neg. LLF: 143.5489646625711
Iteration: 5, Func. Count: 60, Neg. LLF: 140.67918420545985
Iteration: 6, Func. Count: 72, Neg. LLF: 140.45458497309525
Iteration: 7, Func. Count: 83, Neg. LLF: 140.4461523998783
Iteration: 8, Func. Count: 95, Neg. LLF: 140.50268231622482
Iteration: 9, Func. Count: 107, Neg. LLF: 140.40942838932386
Iteration: 10, Func. Count: 118, Neg. LLF: 140.3809550289588
Iteration: 11, Func. Count: 129, Neg. LLF: 140.35397836588317
Iteration: 12, Func. Count: 140, Neg. LLF: 140.30550974752043
Iteration: 13, Func. Count: 151, Neg. LLF: 140.2696320524715
Iteration: 14, Func. Count: 162, Neg. LLF: 140.19542040143736
Iteration: 15, Func. Count: 173, Neg. LLF: 140.18990121909744
Iteration: 16, Func. Count: 184, Neg. LLF: 140.18436068038568
Iteration: 17, Func. Count: 195, Neg. LLF: 140.18317975322026
Iteration: 18, Func. Count: 206, Neg. LLF: 140.18282990514535
Iteration: 19, Func. Count: 217, Neg. LLF: 140.1828268315071
Iteration: 20, Func. Count: 228, Neg. LLF: 140.18282608592676
Optimization terminated successfully (Exit mode 0)
Current function value: 140.18282608592676
Iterations: 20
Function evaluations: 228
Gradient evaluations: 20
Iteration: 1, Func. Count: 9, Neg. LLF: 146.88520617695082
Iteration: 2, Func. Count: 19, Neg. LLF: 143.2002661553132
Iteration: 3, Func. Count: 29, Neg. LLF: 145.57926143563193
Iteration: 4, Func. Count: 39, Neg. LLF: 140.17889458383428
Iteration: 5, Func. Count: 47, Neg. LLF: 140.11175735003343
Iteration: 6, Func. Count: 55, Neg. LLF: 140.05319304018371
Iteration: 7, Func. Count: 63, Neg. LLF: 140.02603801982434
Iteration: 8, Func. Count: 71, Neg. LLF: 140.01998869374492
Iteration: 9, Func. Count: 79, Neg. LLF: 140.01963715376831
Iteration: 10, Func. Count: 87, Neg. LLF: 140.0194372240539
Iteration: 11, Func. Count: 95, Neg. LLF: 140.01940317766827
Iteration: 12, Func. Count: 103, Neg. LLF: 140.01935997940015
Iteration: 13, Func. Count: 111, Neg. LLF: 140.01935030396788
Iteration: 14, Func. Count: 119, Neg. LLF: 140.0193490157116
Iteration: 15, Func. Count: 126, Neg. LLF: 140.01934888531733
Optimization terminated successfully (Exit mode 0)
Current function value: 140.0193490157116
Iterations: 15
Function evaluations: 126
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 146.3219206450637
Iteration: 2, Func. Count: 21, Neg. LLF: 142.19616845851482
Iteration: 3, Func. Count: 32, Neg. LLF: 140.53267716491254
Iteration: 4, Func. Count: 41, Neg. LLF: 140.39468943602412
Iteration: 5, Func. Count: 50, Neg. LLF: 141.7037996521928
Iteration: 6, Func. Count: 60, Neg. LLF: 140.00761496577192
Iteration: 7, Func. Count: 69, Neg. LLF: 139.9211323091255
Iteration: 8, Func. Count: 78, Neg. LLF: 139.82933045521273
Iteration: 9, Func. Count: 87, Neg. LLF: 139.55211919446427
Iteration: 10, Func. Count: 96, Neg. LLF: 139.47197001633754
Iteration: 11, Func. Count: 105, Neg. LLF: 139.29453190210003
Iteration: 12, Func. Count: 114, Neg. LLF: 139.23774734199134
Iteration: 13, Func. Count: 123, Neg. LLF: 139.2321869755009
Iteration: 14, Func. Count: 132, Neg. LLF: 139.22710870347186
Iteration: 15, Func. Count: 141, Neg. LLF: 139.22407127248076
Iteration: 16, Func. Count: 150, Neg. LLF: 139.22348940862474
Iteration: 17, Func. Count: 159, Neg. LLF: 139.22344528928392
Iteration: 18, Func. Count: 168, Neg. LLF: 139.22344385197755
Iteration: 19, Func. Count: 176, Neg. LLF: 139.2234438519854
Optimization terminated successfully (Exit mode 0)
Current function value: 139.22344385197755
Iterations: 19
Function evaluations: 176
Gradient evaluations: 19
Iteration: 1, Func. Count: 11, Neg. LLF: 147.75872185515283
Iteration: 2, Func. Count: 22, Neg. LLF: 143.7582593474451
Iteration: 3, Func. Count: 33, Neg. LLF: 142.83619497371745
Iteration: 4, Func. Count: 44, Neg. LLF: 139.85311337045957
Iteration: 5, Func. Count: 54, Neg. LLF: 142.54001864452894
Iteration: 6, Func. Count: 65, Neg. LLF: 140.20410588463858
Iteration: 7, Func. Count: 76, Neg. LLF: 139.81544452705398
Iteration: 8, Func. Count: 87, Neg. LLF: 139.4786904608644
Iteration: 9, Func. Count: 97, Neg. LLF: 139.38287350718443
Iteration: 10, Func. Count: 107, Neg. LLF: 139.3006213580992
Iteration: 11, Func. Count: 117, Neg. LLF: 139.27763981153643
Iteration: 12, Func. Count: 127, Neg. LLF: 139.2604943004813
Iteration: 13, Func. Count: 137, Neg. LLF: 139.25006367001077
Iteration: 14, Func. Count: 147, Neg. LLF: 139.24531954257884
Iteration: 15, Func. Count: 157, Neg. LLF: 139.2441045111558
Iteration: 16, Func. Count: 167, Neg. LLF: 139.24340221988484
Iteration: 17, Func. Count: 177, Neg. LLF: 139.24286463133956
Iteration: 18, Func. Count: 187, Neg. LLF: 139.24212141543003
Iteration: 19, Func. Count: 197, Neg. LLF: 139.23675949628748
Iteration: 20, Func. Count: 207, Neg. LLF: 139.22384117726963
Iteration: 21, Func. Count: 217, Neg. LLF: 139.22377784631098
Iteration: 22, Func. Count: 228, Neg. LLF: 139.22346441851067
Iteration: 23, Func. Count: 238, Neg. LLF: 139.22345433339498
Iteration: 24, Func. Count: 248, Neg. LLF: 139.22344463886392
Iteration: 25, Func. Count: 258, Neg. LLF: 139.2234438656121
Optimization terminated successfully (Exit mode 0)
Current function value: 139.2234438656121
Iterations: 25
Function evaluations: 258
Gradient evaluations: 25
Iteration: 1, Func. Count: 12, Neg. LLF: 144.1058661299279
Iteration: 2, Func. Count: 24, Neg. LLF: 146.3207206114847
Iteration: 3, Func. Count: 36, Neg. LLF: 151.96736398989816
Iteration: 4, Func. Count: 48, Neg. LLF: 139.91918295796953
Iteration: 5, Func. Count: 59, Neg. LLF: 144.3245263363813
Iteration: 6, Func. Count: 72, Neg. LLF: 140.84056896190134
Iteration: 7, Func. Count: 85, Neg. LLF: 139.8692076110862
Iteration: 8, Func. Count: 97, Neg. LLF: 139.5425837843032
Iteration: 9, Func. Count: 108, Neg. LLF: 139.46383074983905
Iteration: 10, Func. Count: 119, Neg. LLF: 139.35399112981221
Iteration: 11, Func. Count: 130, Neg. LLF: 139.28647692318057
Iteration: 12, Func. Count: 141, Neg. LLF: 139.25846126339096
Iteration: 13, Func. Count: 152, Neg. LLF: 139.2511851465563
Iteration: 14, Func. Count: 163, Neg. LLF: 139.24814122820544
Iteration: 15, Func. Count: 174, Neg. LLF: 139.24383215544012
Iteration: 16, Func. Count: 185, Neg. LLF: 139.2425604210171
Iteration: 17, Func. Count: 196, Neg. LLF: 139.2421207871563
Iteration: 18, Func. Count: 207, Neg. LLF: 139.2404420332731
Iteration: 19, Func. Count: 218, Neg. LLF: 139.22508723638433
Iteration: 20, Func. Count: 229, Neg. LLF: 139.22406979036649
Iteration: 21, Func. Count: 240, Neg. LLF: 139.22363379694394
Iteration: 22, Func. Count: 251, Neg. LLF: 139.22348588678605
Iteration: 23, Func. Count: 262, Neg. LLF: 139.2234477134903
Iteration: 24, Func. Count: 273, Neg. LLF: 139.2234438023632
Iteration: 25, Func. Count: 283, Neg. LLF: 139.22344388241925
Optimization terminated successfully (Exit mode 0)
Current function value: 139.2234438023632
Iterations: 25
Function evaluations: 283
Gradient evaluations: 25
Iteration: 1, Func. Count: 13, Neg. LLF: 143.03530956725302
Iteration: 2, Func. Count: 26, Neg. LLF: 146.12384702608244
Iteration: 3, Func. Count: 39, Neg. LLF: 146.55984155357922
Iteration: 4, Func. Count: 52, Neg. LLF: 140.08131026015522
Iteration: 5, Func. Count: 64, Neg. LLF: 146.7218683396339
Iteration: 6, Func. Count: 78, Neg. LLF: 142.74751817762456
Iteration: 7, Func. Count: 92, Neg. LLF: 139.75932170757562
Iteration: 8, Func. Count: 104, Neg. LLF: 139.62023689182524
Iteration: 9, Func. Count: 116, Neg. LLF: 139.4854398947863
Iteration: 10, Func. Count: 128, Neg. LLF: 139.41295385290633
Iteration: 11, Func. Count: 140, Neg. LLF: 139.35106650977946
Iteration: 12, Func. Count: 152, Neg. LLF: 139.26547720028594
Iteration: 13, Func. Count: 164, Neg. LLF: 139.25817506455314
Iteration: 14, Func. Count: 176, Neg. LLF: 139.24829302414057
Iteration: 15, Func. Count: 188, Neg. LLF: 139.24417799075223
Iteration: 16, Func. Count: 200, Neg. LLF: 139.24287006873263
Iteration: 17, Func. Count: 212, Neg. LLF: 139.24246518916175
Iteration: 18, Func. Count: 224, Neg. LLF: 139.2418036405692
Iteration: 19, Func. Count: 236, Neg. LLF: 139.22426879396915
Iteration: 20, Func. Count: 248, Neg. LLF: 139.22375931584043
Iteration: 21, Func. Count: 260, Neg. LLF: 139.223444010455
Iteration: 22, Func. Count: 271, Neg. LLF: 139.22344410021987
Optimization terminated successfully (Exit mode 0)
Current function value: 139.223444010455
Iterations: 22
Function evaluations: 271
Gradient evaluations: 22
Iteration: 1, Func. Count: 10, Neg. LLF: 146.4012681896936
Iteration: 2, Func. Count: 21, Neg. LLF: 143.01827622613433
Iteration: 3, Func. Count: 32, Neg. LLF: 140.83595359368303
Iteration: 4, Func. Count: 42, Neg. LLF: 140.1100368249921
Iteration: 5, Func. Count: 51, Neg. LLF: 139.75364882778473
Iteration: 6, Func. Count: 60, Neg. LLF: 139.66197095718414
Iteration: 7, Func. Count: 69, Neg. LLF: 139.62986917823545
Iteration: 8, Func. Count: 78, Neg. LLF: 139.61448099166796
Iteration: 9, Func. Count: 87, Neg. LLF: 139.607706891251
Iteration: 10, Func. Count: 96, Neg. LLF: 139.60104832696732
Iteration: 11, Func. Count: 105, Neg. LLF: 139.59769575162144
Iteration: 12, Func. Count: 114, Neg. LLF: 139.59421819208734
Iteration: 13, Func. Count: 123, Neg. LLF: 139.5930329351509
Iteration: 14, Func. Count: 132, Neg. LLF: 139.59291202662573
Iteration: 15, Func. Count: 141, Neg. LLF: 139.59289390638943
Iteration: 16, Func. Count: 150, Neg. LLF: 139.59288560487963
Iteration: 17, Func. Count: 159, Neg. LLF: 139.59288472786977
Optimization terminated successfully (Exit mode 0)
Current function value: 139.59288472786977
Iterations: 17
Function evaluations: 159
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 143.5468484516164
Iteration: 2, Func. Count: 22, Neg. LLF: 143.86944399986217
Iteration: 3, Func. Count: 33, Neg. LLF: 161.7462969234487
Iteration: 4, Func. Count: 45, Neg. LLF: 139.8062874875702
Iteration: 5, Func. Count: 55, Neg. LLF: 140.10493526548098
Iteration: 6, Func. Count: 66, Neg. LLF: 139.62226988370847
Iteration: 7, Func. Count: 76, Neg. LLF: 140.56740515873273
Iteration: 8, Func. Count: 87, Neg. LLF: 139.3918433434765
Iteration: 9, Func. Count: 97, Neg. LLF: 139.26403903784558
Iteration: 10, Func. Count: 107, Neg. LLF: 139.23814368593037
Iteration: 11, Func. Count: 117, Neg. LLF: 139.22556187471935
Iteration: 12, Func. Count: 127, Neg. LLF: 139.21746923493367
Iteration: 13, Func. Count: 137, Neg. LLF: 139.21544594208558
Iteration: 14, Func. Count: 147, Neg. LLF: 139.2146998439307
Iteration: 15, Func. Count: 157, Neg. LLF: 139.21461781943333
Iteration: 16, Func. Count: 167, Neg. LLF: 139.2145880789412
Iteration: 17, Func. Count: 177, Neg. LLF: 139.2145871320541
Optimization terminated successfully (Exit mode 0)
Current function value: 139.2145871320541
Iterations: 17
Function evaluations: 177
Gradient evaluations: 17
Iteration: 1, Func. Count: 12, Neg. LLF: 144.83211174277153
Iteration: 2, Func. Count: 24, Neg. LLF: 143.37537101599867
Iteration: 3, Func. Count: 36, Neg. LLF: 147.09650648568655
Iteration: 4, Func. Count: 48, Neg. LLF: 139.37042414703095
Iteration: 5, Func. Count: 59, Neg. LLF: 140.30789363206628
Iteration: 6, Func. Count: 71, Neg. LLF: 139.25711259711974
Iteration: 7, Func. Count: 82, Neg. LLF: 139.48429024403595
Iteration: 8, Func. Count: 94, Neg. LLF: 139.1597935496271
Iteration: 9, Func. Count: 105, Neg. LLF: 139.14200061457055
Iteration: 10, Func. Count: 116, Neg. LLF: 139.13376063849637
Iteration: 11, Func. Count: 127, Neg. LLF: 139.1327824955264
Iteration: 12, Func. Count: 138, Neg. LLF: 139.1318122785491
Iteration: 13, Func. Count: 149, Neg. LLF: 139.13145475189702
Iteration: 14, Func. Count: 160, Neg. LLF: 139.13123107237905
Iteration: 15, Func. Count: 171, Neg. LLF: 139.13121907714242
Iteration: 16, Func. Count: 182, Neg. LLF: 139.1312184185501
Optimization terminated successfully (Exit mode 0)
Current function value: 139.1312184185501
Iterations: 16
Function evaluations: 182
Gradient evaluations: 16
Iteration: 1, Func. Count: 13, Neg. LLF: 145.0828553854081
Iteration: 2, Func. Count: 26, Neg. LLF: 143.71756189364808
Iteration: 3, Func. Count: 39, Neg. LLF: 173.72622760739674
Iteration: 4, Func. Count: 53, Neg. LLF: 141.17896497128154
Iteration: 5, Func. Count: 66, Neg. LLF: 141.1011494024057
Iteration: 6, Func. Count: 79, Neg. LLF: 140.87119631592188
Iteration: 7, Func. Count: 92, Neg. LLF: 139.87375125556312
Iteration: 8, Func. Count: 104, Neg. LLF: 139.91191924498648
Iteration: 9, Func. Count: 117, Neg. LLF: 139.80479839558475
Iteration: 10, Func. Count: 129, Neg. LLF: 139.76906046803043
Iteration: 11, Func. Count: 141, Neg. LLF: 139.80190642056618
Iteration: 12, Func. Count: 154, Neg. LLF: 139.72268412268528
Iteration: 13, Func. Count: 166, Neg. LLF: 139.68820842151425
Iteration: 14, Func. Count: 178, Neg. LLF: 139.67005319901435
Iteration: 15, Func. Count: 190, Neg. LLF: 139.66261715118767
Iteration: 16, Func. Count: 202, Neg. LLF: 139.65510518523286
Iteration: 17, Func. Count: 214, Neg. LLF: 139.65211248430472
Iteration: 18, Func. Count: 226, Neg. LLF: 139.65160377686814
Iteration: 19, Func. Count: 238, Neg. LLF: 139.65156623780453
Iteration: 20, Func. Count: 250, Neg. LLF: 139.65156344328545
Iteration: 21, Func. Count: 261, Neg. LLF: 139.65156344331285
Optimization terminated successfully (Exit mode 0)
Current function value: 139.65156344328545
Iterations: 21
Function evaluations: 261
Gradient evaluations: 21
Iteration: 1, Func. Count: 14, Neg. LLF: 142.5053049042437
Iteration: 2, Func. Count: 28, Neg. LLF: 143.04334966821443
Iteration: 3, Func. Count: 42, Neg. LLF: 144.83282557007166
Iteration: 4, Func. Count: 56, Neg. LLF: 141.14744673453765
Iteration: 5, Func. Count: 70, Neg. LLF: 142.33462073165245
Iteration: 6, Func. Count: 84, Neg. LLF: 139.86667138981792
Iteration: 7, Func. Count: 97, Neg. LLF: 139.97719610189108
Iteration: 8, Func. Count: 111, Neg. LLF: 139.90567585488324
Iteration: 9, Func. Count: 125, Neg. LLF: 139.8340374752625
Iteration: 10, Func. Count: 139, Neg. LLF: 139.7499535673065
Iteration: 11, Func. Count: 152, Neg. LLF: 139.91128747994694
Iteration: 12, Func. Count: 166, Neg. LLF: 139.68967495784653
Iteration: 13, Func. Count: 179, Neg. LLF: 139.67593024785114
Iteration: 14, Func. Count: 192, Neg. LLF: 139.66452751715215
Iteration: 15, Func. Count: 205, Neg. LLF: 139.65791980902625
Iteration: 16, Func. Count: 218, Neg. LLF: 139.6522168224379
Iteration: 17, Func. Count: 231, Neg. LLF: 139.65162857654482
Iteration: 18, Func. Count: 244, Neg. LLF: 139.65156428161967
Iteration: 19, Func. Count: 257, Neg. LLF: 139.6515634263693
Optimization terminated successfully (Exit mode 0)
Current function value: 139.6515634263693
Iterations: 19
Function evaluations: 257
Gradient evaluations: 19
Iteration: 1, Func. Count: 11, Neg. LLF: 144.12247998756578
Iteration: 2, Func. Count: 23, Neg. LLF: 142.9563653634276
Iteration: 3, Func. Count: 35, Neg. LLF: 141.26018308781607
Iteration: 4, Func. Count: 46, Neg. LLF: 140.15424343325117
Iteration: 5, Func. Count: 56, Neg. LLF: 139.7397128868108
Iteration: 6, Func. Count: 66, Neg. LLF: 139.643835686673
Iteration: 7, Func. Count: 76, Neg. LLF: 139.6155197001995
Iteration: 8, Func. Count: 86, Neg. LLF: 139.65844119730593
Iteration: 9, Func. Count: 97, Neg. LLF: 139.60687698794732
Iteration: 10, Func. Count: 107, Neg. LLF: 139.60168231899536
Iteration: 11, Func. Count: 117, Neg. LLF: 139.59631443077532
Iteration: 12, Func. Count: 127, Neg. LLF: 139.593603535793
Iteration: 13, Func. Count: 137, Neg. LLF: 139.59294256792404
Iteration: 14, Func. Count: 147, Neg. LLF: 139.59289347929038
Iteration: 15, Func. Count: 157, Neg. LLF: 139.59288679465308
Iteration: 16, Func. Count: 167, Neg. LLF: 139.5928850944906
Iteration: 17, Func. Count: 176, Neg. LLF: 139.59288511531673
Optimization terminated successfully (Exit mode 0)
Current function value: 139.5928850944906
Iterations: 17
Function evaluations: 176
Gradient evaluations: 17
Iteration: 1, Func. Count: 12, Neg. LLF: 143.52118411164963
Iteration: 2, Func. Count: 24, Neg. LLF: 143.89533182569318
Iteration: 3, Func. Count: 36, Neg. LLF: 161.4369514500175
Iteration: 4, Func. Count: 49, Neg. LLF: 139.80488391743256
Iteration: 5, Func. Count: 60, Neg. LLF: 140.1082226735189
Iteration: 6, Func. Count: 72, Neg. LLF: 139.63039618065176
Iteration: 7, Func. Count: 83, Neg. LLF: 140.25577413073623
Iteration: 8, Func. Count: 95, Neg. LLF: 139.39280881268482
Iteration: 9, Func. Count: 106, Neg. LLF: 139.26580073576272
Iteration: 10, Func. Count: 117, Neg. LLF: 139.2366861099058
Iteration: 11, Func. Count: 128, Neg. LLF: 139.22626432603525
Iteration: 12, Func. Count: 139, Neg. LLF: 139.21799699301283
Iteration: 13, Func. Count: 150, Neg. LLF: 139.21545022217774
Iteration: 14, Func. Count: 161, Neg. LLF: 139.2146525640913
Iteration: 15, Func. Count: 172, Neg. LLF: 139.21471722644273
Iteration: 16, Func. Count: 184, Neg. LLF: 139.21467916061525
Iteration: 17, Func. Count: 196, Neg. LLF: 139.2145872037658
Iteration: 18, Func. Count: 206, Neg. LLF: 139.21458720381642
Optimization terminated successfully (Exit mode 0)
Current function value: 139.2145872037658
Iterations: 18
Function evaluations: 206
Gradient evaluations: 18
Iteration: 1, Func. Count: 13, Neg. LLF: 144.79952679999724
Iteration: 2, Func. Count: 26, Neg. LLF: 143.40525901971142
Iteration: 3, Func. Count: 39, Neg. LLF: 147.43330700142715
Iteration: 4, Func. Count: 52, Neg. LLF: 139.36893674816758
Iteration: 5, Func. Count: 64, Neg. LLF: 140.3154338520211
Iteration: 6, Func. Count: 77, Neg. LLF: 139.2496635736618
Iteration: 7, Func. Count: 89, Neg. LLF: 139.41279565853466
Iteration: 8, Func. Count: 102, Neg. LLF: 139.15931938551628
Iteration: 9, Func. Count: 114, Neg. LLF: 139.14233558220042
Iteration: 10, Func. Count: 126, Neg. LLF: 139.1364656032689
Iteration: 11, Func. Count: 138, Neg. LLF: 139.13237847076428
Iteration: 12, Func. Count: 150, Neg. LLF: 139.1318500329881
Iteration: 13, Func. Count: 162, Neg. LLF: 139.13127389738082
Iteration: 14, Func. Count: 174, Neg. LLF: 139.13122562433003
Iteration: 15, Func. Count: 186, Neg. LLF: 139.1312185703912
Iteration: 16, Func. Count: 197, Neg. LLF: 139.13121857042947
Optimization terminated successfully (Exit mode 0)
Current function value: 139.1312185703912
Iterations: 16
Function evaluations: 197
Gradient evaluations: 16
Iteration: 1, Func. Count: 14, Neg. LLF: 145.07483667386265
Iteration: 2, Func. Count: 28, Neg. LLF: 143.72964587828383
Iteration: 3, Func. Count: 42, Neg. LLF: 174.23080818980526
Iteration: 4, Func. Count: 57, Neg. LLF: 140.99461366373177
Iteration: 5, Func. Count: 71, Neg. LLF: 140.9410174142028
Iteration: 6, Func. Count: 85, Neg. LLF: 140.83219473535723
Iteration: 7, Func. Count: 99, Neg. LLF: 139.87303799451692
Iteration: 8, Func. Count: 112, Neg. LLF: 139.90167137386516
Iteration: 9, Func. Count: 126, Neg. LLF: 139.83380466601548
Iteration: 10, Func. Count: 140, Neg. LLF: 139.7665612137109
Iteration: 11, Func. Count: 153, Neg. LLF: 139.7368746160389
Iteration: 12, Func. Count: 166, Neg. LLF: 139.6931592072287
Iteration: 13, Func. Count: 179, Neg. LLF: 139.67538989729405
Iteration: 14, Func. Count: 192, Neg. LLF: 139.66606602053352
Iteration: 15, Func. Count: 205, Neg. LLF: 139.65664347507527
Iteration: 16, Func. Count: 218, Neg. LLF: 139.65183292983005
Iteration: 17, Func. Count: 231, Neg. LLF: 139.65162245844502
Iteration: 18, Func. Count: 244, Neg. LLF: 139.65156858847712
Iteration: 19, Func. Count: 257, Neg. LLF: 139.65156345304612
Iteration: 20, Func. Count: 269, Neg. LLF: 139.6515634530117
Optimization terminated successfully (Exit mode 0)
Current function value: 139.65156345304612
Iterations: 20
Function evaluations: 269
Gradient evaluations: 20
Iteration: 1, Func. Count: 15, Neg. LLF: 142.5087072365651
Iteration: 2, Func. Count: 30, Neg. LLF: 143.02731026118607
Iteration: 3, Func. Count: 45, Neg. LLF: 144.65535293564588
Iteration: 4, Func. Count: 60, Neg. LLF: 141.3291811293105
Iteration: 5, Func. Count: 75, Neg. LLF: 142.27367243269535
Iteration: 6, Func. Count: 90, Neg. LLF: 139.89620222115914
Iteration: 7, Func. Count: 104, Neg. LLF: 139.97226712385398
Iteration: 8, Func. Count: 119, Neg. LLF: 139.90223811689637
Iteration: 9, Func. Count: 134, Neg. LLF: 139.90456582271707
Iteration: 10, Func. Count: 149, Neg. LLF: 139.76931209304374
Iteration: 11, Func. Count: 163, Neg. LLF: 139.75341083041351
Iteration: 12, Func. Count: 177, Neg. LLF: 139.72004760396214
Iteration: 13, Func. Count: 191, Neg. LLF: 139.67585058443825
Iteration: 14, Func. Count: 205, Neg. LLF: 139.6610658220619
Iteration: 15, Func. Count: 219, Neg. LLF: 139.65262355614675
Iteration: 16, Func. Count: 233, Neg. LLF: 139.65174913799763
Iteration: 17, Func. Count: 247, Neg. LLF: 139.65156606318175
Iteration: 18, Func. Count: 261, Neg. LLF: 139.65156358088194
Iteration: 19, Func. Count: 274, Neg. LLF: 139.65156363988055
Optimization terminated successfully (Exit mode 0)
Current function value: 139.65156358088194
Iterations: 19
Function evaluations: 274
Gradient evaluations: 19
Iteration: 1, Func. Count: 8, Neg. LLF: 144.14038203865198
Iteration: 2, Func. Count: 17, Neg. LLF: 143.02175833881302
Iteration: 3, Func. Count: 26, Neg. LLF: 145.72453479493814
Iteration: 4, Func. Count: 35, Neg. LLF: 140.61994446508984
Iteration: 5, Func. Count: 43, Neg. LLF: 140.4224538486084
Iteration: 6, Func. Count: 50, Neg. LLF: 140.38638211797047
Iteration: 7, Func. Count: 57, Neg. LLF: 140.89941273753908
Iteration: 8, Func. Count: 66, Neg. LLF: 140.34432204299702
Iteration: 9, Func. Count: 73, Neg. LLF: 140.33621510932986
Iteration: 10, Func. Count: 80, Neg. LLF: 140.33607377955326
Iteration: 11, Func. Count: 87, Neg. LLF: 140.33606667720275
Iteration: 12, Func. Count: 94, Neg. LLF: 140.33606563379354
Iteration: 13, Func. Count: 100, Neg. LLF: 140.33606563380425
Optimization terminated successfully (Exit mode 0)
Current function value: 140.33606563379354
Iterations: 13
Function evaluations: 100
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 142.64302061249492
Iteration: 2, Func. Count: 19, Neg. LLF: 141.94958229873595
Iteration: 3, Func. Count: 28, Neg. LLF: 143.0179547199636
Iteration: 4, Func. Count: 37, Neg. LLF: 141.72203786467517
Iteration: 5, Func. Count: 46, Neg. LLF: 140.51907151054533
Iteration: 6, Func. Count: 55, Neg. LLF: 140.44569300993058
Iteration: 7, Func. Count: 63, Neg. LLF: 140.42263617509852
Iteration: 8, Func. Count: 71, Neg. LLF: 140.4140592261286
Iteration: 9, Func. Count: 79, Neg. LLF: 140.35758628818056
Iteration: 10, Func. Count: 87, Neg. LLF: 140.33701036988714
Iteration: 11, Func. Count: 95, Neg. LLF: 140.33622375795198
Iteration: 12, Func. Count: 103, Neg. LLF: 140.33606585384243
Iteration: 13, Func. Count: 110, Neg. LLF: 140.33606586296034
Optimization terminated successfully (Exit mode 0)
Current function value: 140.33606585384243
Iterations: 13
Function evaluations: 110
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 142.81013960748763
Iteration: 2, Func. Count: 21, Neg. LLF: 141.94898607398113
Iteration: 3, Func. Count: 31, Neg. LLF: 143.0581817253052
Iteration: 4, Func. Count: 41, Neg. LLF: 141.14063664453386
Iteration: 5, Func. Count: 51, Neg. LLF: 140.41736877651445
Iteration: 6, Func. Count: 60, Neg. LLF: 140.42654972621463
Iteration: 7, Func. Count: 70, Neg. LLF: 140.44587571699137
Iteration: 8, Func. Count: 80, Neg. LLF: 140.39135907878537
Iteration: 9, Func. Count: 89, Neg. LLF: 140.38275974020416
Iteration: 10, Func. Count: 98, Neg. LLF: 140.3643659640472
Iteration: 11, Func. Count: 107, Neg. LLF: 140.34270778574577
Iteration: 12, Func. Count: 116, Neg. LLF: 140.3377361945688
Iteration: 13, Func. Count: 125, Neg. LLF: 140.33625567118932
Iteration: 14, Func. Count: 134, Neg. LLF: 140.33607774534266
Iteration: 15, Func. Count: 143, Neg. LLF: 140.33606626260303
Iteration: 16, Func. Count: 152, Neg. LLF: 140.33606559964454
Optimization terminated successfully (Exit mode 0)
Current function value: 140.33606559964454
Iterations: 16
Function evaluations: 152
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 143.57941240942472
Iteration: 2, Func. Count: 22, Neg. LLF: 141.92876135187447
Iteration: 3, Func. Count: 33, Neg. LLF: 142.8450211622503
Iteration: 4, Func. Count: 44, Neg. LLF: 142.00797592073027
Iteration: 5, Func. Count: 55, Neg. LLF: 142.39858220577008
Iteration: 6, Func. Count: 66, Neg. LLF: 140.41197670040532
Iteration: 7, Func. Count: 76, Neg. LLF: 140.4161090094523
Iteration: 8, Func. Count: 87, Neg. LLF: 140.39473873520026
Iteration: 9, Func. Count: 97, Neg. LLF: 140.38950922825924
Iteration: 10, Func. Count: 107, Neg. LLF: 140.3723351889251
Iteration: 11, Func. Count: 117, Neg. LLF: 140.3513093616844
Iteration: 12, Func. Count: 127, Neg. LLF: 140.33847873060387
Iteration: 13, Func. Count: 137, Neg. LLF: 140.33648329692082
Iteration: 14, Func. Count: 147, Neg. LLF: 140.3360793027886
Iteration: 15, Func. Count: 157, Neg. LLF: 140.3360658766037
Iteration: 16, Func. Count: 166, Neg. LLF: 140.33606589718087
Optimization terminated successfully (Exit mode 0)
Current function value: 140.3360658766037
Iterations: 16
Function evaluations: 166
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 143.5716707630386
Iteration: 2, Func. Count: 24, Neg. LLF: 141.88587465746102
Iteration: 3, Func. Count: 36, Neg. LLF: 142.808412076879
Iteration: 4, Func. Count: 48, Neg. LLF: 148.25957478425372
Iteration: 5, Func. Count: 60, Neg. LLF: 140.81309387734038
Iteration: 6, Func. Count: 72, Neg. LLF: 140.41112629138925
Iteration: 7, Func. Count: 83, Neg. LLF: 140.40591114295466
Iteration: 8, Func. Count: 94, Neg. LLF: 140.39147715956662
Iteration: 9, Func. Count: 105, Neg. LLF: 140.38822913740023
Iteration: 10, Func. Count: 116, Neg. LLF: 140.3783009645876
Iteration: 11, Func. Count: 127, Neg. LLF: 140.3385588116603
Iteration: 12, Func. Count: 138, Neg. LLF: 140.33621429516378
Iteration: 13, Func. Count: 149, Neg. LLF: 140.33606861915075
Iteration: 14, Func. Count: 160, Neg. LLF: 140.33606590015452
Iteration: 15, Func. Count: 170, Neg. LLF: 140.33606592895646
Optimization terminated successfully (Exit mode 0)
Current function value: 140.33606590015452
Iterations: 15
Function evaluations: 170
Gradient evaluations: 15
Iteration: 1, Func. Count: 9, Neg. LLF: 142.65042661286643
Iteration: 2, Func. Count: 18, Neg. LLF: 145.4677174975
Iteration: 3, Func. Count: 27, Neg. LLF: 143.75916640220692
Iteration: 4, Func. Count: 36, Neg. LLF: 141.70241990391963
Iteration: 5, Func. Count: 45, Neg. LLF: 141.74500795040268
Iteration: 6, Func. Count: 54, Neg. LLF: 141.6285409572395
Iteration: 7, Func. Count: 63, Neg. LLF: 140.58142687141475
Iteration: 8, Func. Count: 72, Neg. LLF: 140.09785486316628
Iteration: 9, Func. Count: 80, Neg. LLF: 140.0933730727345
Iteration: 10, Func. Count: 88, Neg. LLF: 140.09270975286682
Iteration: 11, Func. Count: 96, Neg. LLF: 140.09111205409874
Iteration: 12, Func. Count: 104, Neg. LLF: 140.09044513951963
Iteration: 13, Func. Count: 112, Neg. LLF: 140.09026009662952
Iteration: 14, Func. Count: 120, Neg. LLF: 140.09025236850155
Iteration: 15, Func. Count: 127, Neg. LLF: 140.09025236847302
Optimization terminated successfully (Exit mode 0)
Current function value: 140.09025236850155
Iterations: 15
Function evaluations: 127
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 142.9807685308082
Iteration: 2, Func. Count: 21, Neg. LLF: 147.96080516959893
Iteration: 3, Func. Count: 31, Neg. LLF: 145.1640604545951
Iteration: 4, Func. Count: 41, Neg. LLF: 141.10723201639598
Iteration: 5, Func. Count: 51, Neg. LLF: 140.5587270094021
Iteration: 6, Func. Count: 61, Neg. LLF: 141.83724782251636
Iteration: 7, Func. Count: 71, Neg. LLF: 140.4231061259346
Iteration: 8, Func. Count: 81, Neg. LLF: 140.0478844703277
Iteration: 9, Func. Count: 90, Neg. LLF: 140.04258052844426
Iteration: 10, Func. Count: 99, Neg. LLF: 140.0405200178417
Iteration: 11, Func. Count: 108, Neg. LLF: 140.027767700334
Iteration: 12, Func. Count: 117, Neg. LLF: 139.98205782067592
Iteration: 13, Func. Count: 126, Neg. LLF: 139.97773534356566
Iteration: 14, Func. Count: 135, Neg. LLF: 139.97622967986882
Iteration: 15, Func. Count: 144, Neg. LLF: 139.97581443104278
Iteration: 16, Func. Count: 153, Neg. LLF: 139.97578075972416
Iteration: 17, Func. Count: 162, Neg. LLF: 139.97578071743987
Optimization terminated successfully (Exit mode 0)
Current function value: 139.97577987347304
Iterations: 17
Function evaluations: 163
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 143.00413729878633
Iteration: 2, Func. Count: 22, Neg. LLF: 148.5868365976183
Iteration: 3, Func. Count: 33, Neg. LLF: 149.34683490002072
Iteration: 4, Func. Count: 44, Neg. LLF: 143.218540223476
Iteration: 5, Func. Count: 55, Neg. LLF: 144.65218354477875
Iteration: 6, Func. Count: 66, Neg. LLF: 142.4080565933312
Iteration: 7, Func. Count: 77, Neg. LLF: 140.12886487757913
Iteration: 8, Func. Count: 88, Neg. LLF: 140.2470202411599
Iteration: 9, Func. Count: 99, Neg. LLF: 140.0495169482332
Iteration: 10, Func. Count: 109, Neg. LLF: 140.04550071799008
Iteration: 11, Func. Count: 119, Neg. LLF: 140.04258889401532
Iteration: 12, Func. Count: 129, Neg. LLF: 140.03889605479583
Iteration: 13, Func. Count: 139, Neg. LLF: 140.0356297601644
Iteration: 14, Func. Count: 149, Neg. LLF: 140.03081251297672
Iteration: 15, Func. Count: 159, Neg. LLF: 140.0008962908983
Iteration: 16, Func. Count: 169, Neg. LLF: 139.9784083560107
Iteration: 17, Func. Count: 179, Neg. LLF: 139.9765138677268
Iteration: 18, Func. Count: 189, Neg. LLF: 139.97603190891772
Iteration: 19, Func. Count: 199, Neg. LLF: 139.9757933565493
Iteration: 20, Func. Count: 209, Neg. LLF: 139.97578735399767
Iteration: 21, Func. Count: 219, Neg. LLF: 139.97578152148353
Iteration: 22, Func. Count: 229, Neg. LLF: 139.9757805673777
Optimization terminated successfully (Exit mode 0)
Current function value: 139.9757805673777
Iterations: 22
Function evaluations: 229
Gradient evaluations: 22
Iteration: 1, Func. Count: 12, Neg. LLF: 142.9907200279797
Iteration: 2, Func. Count: 24, Neg. LLF: 148.62234877507385
Iteration: 3, Func. Count: 36, Neg. LLF: 152.62881540972606
Iteration: 4, Func. Count: 48, Neg. LLF: 142.71222175516314
Iteration: 5, Func. Count: 60, Neg. LLF: 146.06040037308966
Iteration: 6, Func. Count: 72, Neg. LLF: 140.58161970783326
Iteration: 7, Func. Count: 84, Neg. LLF: 141.91541172913844
Iteration: 8, Func. Count: 96, Neg. LLF: 140.12405075192697
Iteration: 9, Func. Count: 108, Neg. LLF: 140.1030883605031
Iteration: 10, Func. Count: 120, Neg. LLF: 140.04866783570765
Iteration: 11, Func. Count: 131, Neg. LLF: 140.04435595360462
Iteration: 12, Func. Count: 142, Neg. LLF: 140.04239451274654
Iteration: 13, Func. Count: 153, Neg. LLF: 140.03991029019951
Iteration: 14, Func. Count: 164, Neg. LLF: 140.03363129410408
Iteration: 15, Func. Count: 175, Neg. LLF: 140.0255233205818
Iteration: 16, Func. Count: 186, Neg. LLF: 140.0043924361418
Iteration: 17, Func. Count: 197, Neg. LLF: 139.98772953194245
Iteration: 18, Func. Count: 208, Neg. LLF: 139.97995162726622
Iteration: 19, Func. Count: 219, Neg. LLF: 139.97640853728282
Iteration: 20, Func. Count: 230, Neg. LLF: 139.976085003863
Iteration: 21, Func. Count: 241, Neg. LLF: 139.97591297328069
Iteration: 22, Func. Count: 252, Neg. LLF: 139.9758133026675
Iteration: 23, Func. Count: 263, Neg. LLF: 139.9757820933779
Iteration: 24, Func. Count: 274, Neg. LLF: 139.97577989844433
Iteration: 25, Func. Count: 284, Neg. LLF: 139.9757799383286
Optimization terminated successfully (Exit mode 0)
Current function value: 139.97577989844433
Iterations: 25
Function evaluations: 284
Gradient evaluations: 25
Iteration: 1, Func. Count: 13, Neg. LLF: 142.9523668712344
Iteration: 2, Func. Count: 26, Neg. LLF: 148.35535888465657
Iteration: 3, Func. Count: 39, Neg. LLF: 150.7583495604151
Iteration: 4, Func. Count: 52, Neg. LLF: 142.44746063050346
Iteration: 5, Func. Count: 65, Neg. LLF: 143.43321753897823
Iteration: 6, Func. Count: 78, Neg. LLF: 141.90314011134362
Iteration: 7, Func. Count: 91, Neg. LLF: 140.2318688172347
Iteration: 8, Func. Count: 104, Neg. LLF: 141.07794705853456
Iteration: 9, Func. Count: 117, Neg. LLF: 140.05433987674502
Iteration: 10, Func. Count: 129, Neg. LLF: 140.04877322971652
Iteration: 11, Func. Count: 141, Neg. LLF: 140.04591113176136
Iteration: 12, Func. Count: 153, Neg. LLF: 140.04365380217698
Iteration: 13, Func. Count: 165, Neg. LLF: 140.04091761896132
Iteration: 14, Func. Count: 177, Neg. LLF: 140.03621367066498
Iteration: 15, Func. Count: 189, Neg. LLF: 140.03056629574164
Iteration: 16, Func. Count: 201, Neg. LLF: 140.00281351914143
Iteration: 17, Func. Count: 213, Neg. LLF: 139.98450796939187
Iteration: 18, Func. Count: 225, Neg. LLF: 139.97815639119705
Iteration: 19, Func. Count: 237, Neg. LLF: 139.97601013392935
Iteration: 20, Func. Count: 249, Neg. LLF: 139.97589915912306
Iteration: 21, Func. Count: 261, Neg. LLF: 139.9758181639756
Iteration: 22, Func. Count: 273, Neg. LLF: 139.97578308156784
Iteration: 23, Func. Count: 285, Neg. LLF: 139.97577984836585
Iteration: 24, Func. Count: 296, Neg. LLF: 139.97577989845553
Optimization terminated successfully (Exit mode 0)
Current function value: 139.97577984836585
Iterations: 24
Function evaluations: 296
Gradient evaluations: 24
Iteration: 1, Func. Count: 10, Neg. LLF: 146.8294678969442
Iteration: 2, Func. Count: 21, Neg. LLF: 143.15989862547139
Iteration: 3, Func. Count: 32, Neg. LLF: 146.64792384612332
Iteration: 4, Func. Count: 43, Neg. LLF: 140.17837296246586
Iteration: 5, Func. Count: 53, Neg. LLF: 140.92024035642243
Iteration: 6, Func. Count: 64, Neg. LLF: 140.02621864519332
Iteration: 7, Func. Count: 74, Neg. LLF: 139.78472020623693
Iteration: 8, Func. Count: 83, Neg. LLF: 139.76965441488656
Iteration: 9, Func. Count: 92, Neg. LLF: 139.75502796376387
Iteration: 10, Func. Count: 101, Neg. LLF: 139.74589788497337
Iteration: 11, Func. Count: 110, Neg. LLF: 139.74419297696804
Iteration: 12, Func. Count: 119, Neg. LLF: 139.74323325985335
Iteration: 13, Func. Count: 128, Neg. LLF: 139.74089143160865
Iteration: 14, Func. Count: 137, Neg. LLF: 139.74051615548672
Iteration: 15, Func. Count: 146, Neg. LLF: 139.74043449929505
Iteration: 16, Func. Count: 155, Neg. LLF: 139.7404110679987
Iteration: 17, Func. Count: 164, Neg. LLF: 139.7404038342684
Iteration: 18, Func. Count: 172, Neg. LLF: 139.7404037343967
Optimization terminated successfully (Exit mode 0)
Current function value: 139.7404038342684
Iterations: 18
Function evaluations: 172
Gradient evaluations: 18
Iteration: 1, Func. Count: 11, Neg. LLF: 147.7439892866341
Iteration: 2, Func. Count: 22, Neg. LLF: 142.47190508594406
Iteration: 3, Func. Count: 34, Neg. LLF: 142.62540674394108
Iteration: 4, Func. Count: 45, Neg. LLF: 140.91415355544018
Iteration: 5, Func. Count: 56, Neg. LLF: 141.91936721484763
Iteration: 6, Func. Count: 67, Neg. LLF: 140.3293057572686
Iteration: 7, Func. Count: 78, Neg. LLF: 139.48268251545394
Iteration: 8, Func. Count: 88, Neg. LLF: 139.4279498615248
Iteration: 9, Func. Count: 98, Neg. LLF: 139.3921501013927
Iteration: 10, Func. Count: 108, Neg. LLF: 139.33001295626198
Iteration: 11, Func. Count: 118, Neg. LLF: 139.2556826866375
Iteration: 12, Func. Count: 128, Neg. LLF: 139.41799393261223
Iteration: 13, Func. Count: 139, Neg. LLF: 139.21458895513135
Iteration: 14, Func. Count: 149, Neg. LLF: 139.21052527383134
Iteration: 15, Func. Count: 159, Neg. LLF: 139.20934953610842
Iteration: 16, Func. Count: 169, Neg. LLF: 139.20886235385495
Iteration: 17, Func. Count: 179, Neg. LLF: 139.2086356992146
Iteration: 18, Func. Count: 189, Neg. LLF: 139.2086203453135
Iteration: 19, Func. Count: 198, Neg. LLF: 139.20862034529955
Optimization terminated successfully (Exit mode 0)
Current function value: 139.2086203453135
Iterations: 19
Function evaluations: 198
Gradient evaluations: 19
Iteration: 1, Func. Count: 12, Neg. LLF: 147.7386168486488
Iteration: 2, Func. Count: 24, Neg. LLF: 142.82597710697414
Iteration: 3, Func. Count: 37, Neg. LLF: 142.1537220537274
Iteration: 4, Func. Count: 49, Neg. LLF: 140.11438567499266
Iteration: 5, Func. Count: 61, Neg. LLF: 140.7852648587042
Iteration: 6, Func. Count: 73, Neg. LLF: 139.79382148354705
Iteration: 7, Func. Count: 85, Neg. LLF: 139.49767249424477
Iteration: 8, Func. Count: 96, Neg. LLF: 139.50364441639906
Iteration: 9, Func. Count: 108, Neg. LLF: 139.38492861145005
Iteration: 10, Func. Count: 119, Neg. LLF: 139.29837756178338
Iteration: 11, Func. Count: 130, Neg. LLF: 140.86027394189256
Iteration: 12, Func. Count: 143, Neg. LLF: 139.2481238360471
Iteration: 13, Func. Count: 154, Neg. LLF: 139.21870435973076
Iteration: 14, Func. Count: 165, Neg. LLF: 139.20959757776154
Iteration: 15, Func. Count: 176, Neg. LLF: 139.20902520619674
Iteration: 16, Func. Count: 187, Neg. LLF: 139.20877049290206
Iteration: 17, Func. Count: 198, Neg. LLF: 139.20864140982462
Iteration: 18, Func. Count: 209, Neg. LLF: 139.20862149176892
Iteration: 19, Func. Count: 220, Neg. LLF: 139.20862024755985
Iteration: 20, Func. Count: 230, Neg. LLF: 139.2086202571748
Optimization terminated successfully (Exit mode 0)
Current function value: 139.20862024755985
Iterations: 20
Function evaluations: 230
Gradient evaluations: 20
Iteration: 1, Func. Count: 13, Neg. LLF: 147.72231995466774
Iteration: 2, Func. Count: 26, Neg. LLF: 140.8861655097105
Iteration: 3, Func. Count: 39, Neg. LLF: 146.49369451324657
Iteration: 4, Func. Count: 52, Neg. LLF: 148.39878876537475
Iteration: 5, Func. Count: 66, Neg. LLF: 140.46063610722865
Iteration: 6, Func. Count: 79, Neg. LLF: 140.90563872046255
Iteration: 7, Func. Count: 92, Neg. LLF: 139.72523235674655
Iteration: 8, Func. Count: 104, Neg. LLF: 139.75090191574552
Iteration: 9, Func. Count: 117, Neg. LLF: 139.6018648957616
Iteration: 10, Func. Count: 129, Neg. LLF: 139.4972237404242
Iteration: 11, Func. Count: 141, Neg. LLF: 139.46058709366068
Iteration: 12, Func. Count: 153, Neg. LLF: 139.37537036118457
Iteration: 13, Func. Count: 165, Neg. LLF: 139.33339484011555
Iteration: 14, Func. Count: 177, Neg. LLF: 139.28341315303297
Iteration: 15, Func. Count: 189, Neg. LLF: 139.28454507302357
Iteration: 16, Func. Count: 202, Neg. LLF: 139.35991193566298
Iteration: 17, Func. Count: 215, Neg. LLF: 139.22289923306752
Iteration: 18, Func. Count: 227, Neg. LLF: 139.21496742707177
Iteration: 19, Func. Count: 239, Neg. LLF: 139.21066349344503
Iteration: 20, Func. Count: 251, Neg. LLF: 139.2091617459585
Iteration: 21, Func. Count: 263, Neg. LLF: 139.20875612418
Iteration: 22, Func. Count: 275, Neg. LLF: 139.20864835326836
Iteration: 23, Func. Count: 287, Neg. LLF: 139.2086214056364
Iteration: 24, Func. Count: 299, Neg. LLF: 139.20862025137578
Iteration: 25, Func. Count: 310, Neg. LLF: 139.20862032418378
Optimization terminated successfully (Exit mode 0)
Current function value: 139.20862025137578
Iterations: 25
Function evaluations: 310
Gradient evaluations: 25
Iteration: 1, Func. Count: 14, Neg. LLF: 147.70861083303166
Iteration: 2, Func. Count: 28, Neg. LLF: 142.99465568774355
Iteration: 3, Func. Count: 43, Neg. LLF: 141.20713026401415
Iteration: 4, Func. Count: 57, Neg. LLF: 145.8522019394103
Iteration: 5, Func. Count: 71, Neg. LLF: 141.2393699520023
Iteration: 6, Func. Count: 85, Neg. LLF: 140.29325918561483
Iteration: 7, Func. Count: 99, Neg. LLF: 139.71798273255783
Iteration: 8, Func. Count: 112, Neg. LLF: 139.85588344987883
Iteration: 9, Func. Count: 126, Neg. LLF: 139.79108475802013
Iteration: 10, Func. Count: 140, Neg. LLF: 139.89501443469746
Iteration: 11, Func. Count: 154, Neg. LLF: 139.4517292035549
Iteration: 12, Func. Count: 167, Neg. LLF: 139.40767515213577
Iteration: 13, Func. Count: 180, Neg. LLF: 139.32889916947056
Iteration: 14, Func. Count: 193, Neg. LLF: 139.2847934612612
Iteration: 15, Func. Count: 206, Neg. LLF: 139.49960353624928
Iteration: 16, Func. Count: 220, Neg. LLF: 139.25859734048845
Iteration: 17, Func. Count: 233, Neg. LLF: 139.22658475956771
Iteration: 18, Func. Count: 246, Neg. LLF: 139.21963093621778
Iteration: 19, Func. Count: 259, Neg. LLF: 139.2102816352999
Iteration: 20, Func. Count: 272, Neg. LLF: 139.2092815354647
Iteration: 21, Func. Count: 285, Neg. LLF: 139.20871855927632
Iteration: 22, Func. Count: 298, Neg. LLF: 139.208628380623
Iteration: 23, Func. Count: 311, Neg. LLF: 139.20862056439935
Iteration: 24, Func. Count: 323, Neg. LLF: 139.20862064057457
Optimization terminated successfully (Exit mode 0)
Current function value: 139.20862056439935
Iterations: 24
Function evaluations: 323
Gradient evaluations: 24
Iteration: 1, Func. Count: 11, Neg. LLF: 146.83852543243364
Iteration: 2, Func. Count: 23, Neg. LLF: 142.5679657453136
Iteration: 3, Func. Count: 35, Neg. LLF: 143.59116595147316
Iteration: 4, Func. Count: 46, Neg. LLF: 142.10073830376288
Iteration: 5, Func. Count: 58, Neg. LLF: 140.42492814614928
Iteration: 6, Func. Count: 69, Neg. LLF: 139.30463728068804
Iteration: 7, Func. Count: 79, Neg. LLF: 139.19361752264842
Iteration: 8, Func. Count: 89, Neg. LLF: 139.31224623603194
Iteration: 9, Func. Count: 100, Neg. LLF: 139.18105157376
Iteration: 10, Func. Count: 110, Neg. LLF: 139.16686602921763
Iteration: 11, Func. Count: 120, Neg. LLF: 139.16370395304205
Iteration: 12, Func. Count: 130, Neg. LLF: 139.16249265399233
Iteration: 13, Func. Count: 140, Neg. LLF: 139.1624045736399
Iteration: 14, Func. Count: 150, Neg. LLF: 139.16236258870404
Iteration: 15, Func. Count: 160, Neg. LLF: 139.1623583678557
Iteration: 16, Func. Count: 170, Neg. LLF: 139.16235754886054
Optimization terminated successfully (Exit mode 0)
Current function value: 139.16235754886054
Iterations: 16
Function evaluations: 170
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 144.63345190883922
Iteration: 2, Func. Count: 24, Neg. LLF: 141.9185233534022
Iteration: 3, Func. Count: 37, Neg. LLF: 145.83765708731124
Iteration: 4, Func. Count: 49, Neg. LLF: 139.87480804050696
Iteration: 5, Func. Count: 61, Neg. LLF: 145.44118949073484
Iteration: 6, Func. Count: 73, Neg. LLF: 140.1549535510289
Iteration: 7, Func. Count: 85, Neg. LLF: 139.26724333166996
Iteration: 8, Func. Count: 96, Neg. LLF: 139.30713609096554
Iteration: 9, Func. Count: 108, Neg. LLF: 139.24408723748914
Iteration: 10, Func. Count: 120, Neg. LLF: 139.17500425582713
Iteration: 11, Func. Count: 131, Neg. LLF: 139.1719681891173
Iteration: 12, Func. Count: 142, Neg. LLF: 139.16306576007756
Iteration: 13, Func. Count: 153, Neg. LLF: 139.1624831539597
Iteration: 14, Func. Count: 164, Neg. LLF: 139.16237046931414
Iteration: 15, Func. Count: 175, Neg. LLF: 139.1623597513612
Iteration: 16, Func. Count: 186, Neg. LLF: 139.16235763326753
Iteration: 17, Func. Count: 196, Neg. LLF: 139.16235763813856
Optimization terminated successfully (Exit mode 0)
Current function value: 139.16235763326753
Iterations: 17
Function evaluations: 196
Gradient evaluations: 17
Iteration: 1, Func. Count: 13, Neg. LLF: 146.48487525417258
Iteration: 2, Func. Count: 26, Neg. LLF: 141.9264065973159
Iteration: 3, Func. Count: 40, Neg. LLF: 142.04585363750988
Iteration: 4, Func. Count: 53, Neg. LLF: 139.75223689848357
Iteration: 5, Func. Count: 65, Neg. LLF: 143.7097784007857
Iteration: 6, Func. Count: 79, Neg. LLF: 142.20729799851932
Iteration: 7, Func. Count: 93, Neg. LLF: 139.52073745484336
Iteration: 8, Func. Count: 106, Neg. LLF: 139.50443298345775
Iteration: 9, Func. Count: 119, Neg. LLF: 139.19466904761993
Iteration: 10, Func. Count: 131, Neg. LLF: 139.18404100913824
Iteration: 11, Func. Count: 143, Neg. LLF: 139.173475264939
Iteration: 12, Func. Count: 155, Neg. LLF: 139.1658831490277
Iteration: 13, Func. Count: 167, Neg. LLF: 139.16359380443785
Iteration: 14, Func. Count: 179, Neg. LLF: 139.1629936277736
Iteration: 15, Func. Count: 191, Neg. LLF: 139.1628167380238
Iteration: 16, Func. Count: 203, Neg. LLF: 139.16250374051967
Iteration: 17, Func. Count: 215, Neg. LLF: 139.1623946867299
Iteration: 18, Func. Count: 227, Neg. LLF: 139.16236092158186
Iteration: 19, Func. Count: 239, Neg. LLF: 139.1623576785861
Iteration: 20, Func. Count: 250, Neg. LLF: 139.1623576798613
Optimization terminated successfully (Exit mode 0)
Current function value: 139.1623576785861
Iterations: 20
Function evaluations: 250
Gradient evaluations: 20
Iteration: 1, Func. Count: 14, Neg. LLF: 145.13369874968458
Iteration: 2, Func. Count: 28, Neg. LLF: 139.88814801517125
Iteration: 3, Func. Count: 41, Neg. LLF: 165.8763983282851
Iteration: 4, Func. Count: 56, Neg. LLF: 142.32587201573247
Iteration: 5, Func. Count: 70, Neg. LLF: 146.72985520143203
Iteration: 6, Func. Count: 85, Neg. LLF: 141.73411144378514
Iteration: 7, Func. Count: 99, Neg. LLF: 139.25874744291085
Iteration: 8, Func. Count: 112, Neg. LLF: 139.24027188824576
Iteration: 9, Func. Count: 125, Neg. LLF: 139.19042508367522
Iteration: 10, Func. Count: 138, Neg. LLF: 139.1821566000803
Iteration: 11, Func. Count: 151, Neg. LLF: 139.17256945495487
Iteration: 12, Func. Count: 164, Neg. LLF: 139.16521917948066
Iteration: 13, Func. Count: 177, Neg. LLF: 139.16427301523393
Iteration: 14, Func. Count: 190, Neg. LLF: 139.16363795448996
Iteration: 15, Func. Count: 203, Neg. LLF: 139.16276737312714
Iteration: 16, Func. Count: 216, Neg. LLF: 139.16243195276567
Iteration: 17, Func. Count: 229, Neg. LLF: 139.16236171846472
Iteration: 18, Func. Count: 242, Neg. LLF: 139.16235757253145
Iteration: 19, Func. Count: 254, Neg. LLF: 139.16235765760152
Optimization terminated successfully (Exit mode 0)
Current function value: 139.16235757253145
Iterations: 19
Function evaluations: 254
Gradient evaluations: 19
Iteration: 1, Func. Count: 15, Neg. LLF: 145.32203272068702
Iteration: 2, Func. Count: 30, Neg. LLF: 142.17859379921265
Iteration: 3, Func. Count: 46, Neg. LLF: 141.57029463871032
Iteration: 4, Func. Count: 61, Neg. LLF: 139.98806704154677
Iteration: 5, Func. Count: 76, Neg. LLF: 144.2438300703942
Iteration: 6, Func. Count: 91, Neg. LLF: 140.0921461995125
Iteration: 7, Func. Count: 106, Neg. LLF: 139.63156003577862
Iteration: 8, Func. Count: 121, Neg. LLF: 139.201922963894
Iteration: 9, Func. Count: 135, Neg. LLF: 139.24043856963547
Iteration: 10, Func. Count: 150, Neg. LLF: 139.17460054525938
Iteration: 11, Func. Count: 164, Neg. LLF: 139.16994355641827
Iteration: 12, Func. Count: 178, Neg. LLF: 139.16630324608911
Iteration: 13, Func. Count: 192, Neg. LLF: 139.16301629409745
Iteration: 14, Func. Count: 206, Neg. LLF: 139.16247848622808
Iteration: 15, Func. Count: 220, Neg. LLF: 139.1623605722913
Iteration: 16, Func. Count: 234, Neg. LLF: 139.16235775344506
Iteration: 17, Func. Count: 247, Neg. LLF: 139.16235780964539
Optimization terminated successfully (Exit mode 0)
Current function value: 139.16235775344506
Iterations: 17
Function evaluations: 247
Gradient evaluations: 17
Iteration: 1, Func. Count: 12, Neg. LLF: 143.72729490773887
Iteration: 2, Func. Count: 25, Neg. LLF: 144.57070185954683
Iteration: 3, Func. Count: 37, Neg. LLF: 143.38954323530146
Iteration: 4, Func. Count: 49, Neg. LLF: 139.23821606090567
Iteration: 5, Func. Count: 60, Neg. LLF: 139.36054170667862
Iteration: 6, Func. Count: 72, Neg. LLF: 139.78769287240397
Iteration: 7, Func. Count: 84, Neg. LLF: 139.09885249009497
Iteration: 8, Func. Count: 96, Neg. LLF: 138.86395759503665
Iteration: 9, Func. Count: 107, Neg. LLF: 138.85403611879846
Iteration: 10, Func. Count: 118, Neg. LLF: 138.84761104019307
Iteration: 11, Func. Count: 129, Neg. LLF: 138.8434018816521
Iteration: 12, Func. Count: 140, Neg. LLF: 138.84240195419378
Iteration: 13, Func. Count: 151, Neg. LLF: 138.8418674181737
Iteration: 14, Func. Count: 162, Neg. LLF: 138.84156659440296
Iteration: 15, Func. Count: 173, Neg. LLF: 138.84147461518612
Iteration: 16, Func. Count: 184, Neg. LLF: 138.84146163165644
Iteration: 17, Func. Count: 195, Neg. LLF: 138.84146097824436
Optimization terminated successfully (Exit mode 0)
Current function value: 138.84146097824436
Iterations: 17
Function evaluations: 195
Gradient evaluations: 17
Iteration: 1, Func. Count: 13, Neg. LLF: 142.8425972661747
Iteration: 2, Func. Count: 27, Neg. LLF: 145.15971243375077
Iteration: 3, Func. Count: 40, Neg. LLF: 143.96643228827816
Iteration: 4, Func. Count: 53, Neg. LLF: 139.93053600999866
Iteration: 5, Func. Count: 66, Neg. LLF: 141.6737944322715
Iteration: 6, Func. Count: 79, Neg. LLF: 140.65723221540895
Iteration: 7, Func. Count: 92, Neg. LLF: 139.98759621223067
Iteration: 8, Func. Count: 105, Neg. LLF: 139.15648405829472
Iteration: 9, Func. Count: 117, Neg. LLF: 138.89930854458657
Iteration: 10, Func. Count: 129, Neg. LLF: 138.86123019190603
Iteration: 11, Func. Count: 141, Neg. LLF: 138.84596611331025
Iteration: 12, Func. Count: 153, Neg. LLF: 138.8425245808012
Iteration: 13, Func. Count: 165, Neg. LLF: 138.84204516696852
Iteration: 14, Func. Count: 177, Neg. LLF: 138.84187658101555
Iteration: 15, Func. Count: 189, Neg. LLF: 138.84155448403192
Iteration: 16, Func. Count: 201, Neg. LLF: 138.8414924195357
Iteration: 17, Func. Count: 213, Neg. LLF: 138.84146150574483
Iteration: 18, Func. Count: 224, Neg. LLF: 138.84146152530124
Optimization terminated successfully (Exit mode 0)
Current function value: 138.84146150574483
Iterations: 18
Function evaluations: 224
Gradient evaluations: 18
Iteration: 1, Func. Count: 14, Neg. LLF: 143.18041593991188
Iteration: 2, Func. Count: 29, Neg. LLF: 142.60581056225405
Iteration: 3, Func. Count: 43, Neg. LLF: 144.9071588577469
Iteration: 4, Func. Count: 57, Neg. LLF: 140.33277091620235
Iteration: 5, Func. Count: 71, Neg. LLF: 140.07708599453338
Iteration: 6, Func. Count: 85, Neg. LLF: 140.64374800808713
Iteration: 7, Func. Count: 99, Neg. LLF: 140.3622950109507
Iteration: 8, Func. Count: 113, Neg. LLF: 139.00499529429072
Iteration: 9, Func. Count: 126, Neg. LLF: 138.87916592610316
Iteration: 10, Func. Count: 139, Neg. LLF: 138.84677644251832
Iteration: 11, Func. Count: 152, Neg. LLF: 138.84393679200684
Iteration: 12, Func. Count: 165, Neg. LLF: 138.84301801075875
Iteration: 13, Func. Count: 178, Neg. LLF: 138.84239119403108
Iteration: 14, Func. Count: 191, Neg. LLF: 138.84160297068976
Iteration: 15, Func. Count: 204, Neg. LLF: 138.84148181489653
Iteration: 16, Func. Count: 217, Neg. LLF: 138.8414619872944
Iteration: 17, Func. Count: 230, Neg. LLF: 138.8414610541253
Optimization terminated successfully (Exit mode 0)
Current function value: 138.8414610541253
Iterations: 17
Function evaluations: 230
Gradient evaluations: 17
Iteration: 1, Func. Count: 15, Neg. LLF: 143.69764247547948
Iteration: 2, Func. Count: 31, Neg. LLF: 141.93449291423678
Iteration: 3, Func. Count: 46, Neg. LLF: 141.11441988042063
Iteration: 4, Func. Count: 61, Neg. LLF: 149.01550775296548
Iteration: 5, Func. Count: 76, Neg. LLF: 139.59090488911932
Iteration: 6, Func. Count: 91, Neg. LLF: 139.25740215612274
Iteration: 7, Func. Count: 105, Neg. LLF: 140.4050569877211
Iteration: 8, Func. Count: 120, Neg. LLF: 140.8168370451447
Iteration: 9, Func. Count: 135, Neg. LLF: 138.90089612020503
Iteration: 10, Func. Count: 149, Neg. LLF: 138.879843598847
Iteration: 11, Func. Count: 164, Neg. LLF: 138.84490488205907
Iteration: 12, Func. Count: 178, Neg. LLF: 138.8437057385217
Iteration: 13, Func. Count: 192, Neg. LLF: 138.8427497614241
Iteration: 14, Func. Count: 206, Neg. LLF: 138.84207842764343
Iteration: 15, Func. Count: 220, Neg. LLF: 138.84157549372742
Iteration: 16, Func. Count: 234, Neg. LLF: 138.841472323931
Iteration: 17, Func. Count: 248, Neg. LLF: 138.84146133627922
Iteration: 18, Func. Count: 261, Neg. LLF: 138.84146141361134
Optimization terminated successfully (Exit mode 0)
Current function value: 138.84146133627922
Iterations: 18
Function evaluations: 261
Gradient evaluations: 18
Iteration: 1, Func. Count: 16, Neg. LLF: 143.37876684015652
Iteration: 2, Func. Count: 33, Neg. LLF: 139.82374067172105
Iteration: 3, Func. Count: 48, Neg. LLF: 143.1092340013398
Iteration: 4, Func. Count: 65, Neg. LLF: 144.51988155753108
Iteration: 5, Func. Count: 82, Neg. LLF: 147.0124674183527
Iteration: 6, Func. Count: 98, Neg. LLF: 140.5383848084204
Iteration: 7, Func. Count: 114, Neg. LLF: 139.95802530794717
Iteration: 8, Func. Count: 130, Neg. LLF: 138.94559748876767
Iteration: 9, Func. Count: 145, Neg. LLF: 138.86919327716691
Iteration: 10, Func. Count: 160, Neg. LLF: 138.8466614168689
Iteration: 11, Func. Count: 175, Neg. LLF: 138.84525241307122
Iteration: 12, Func. Count: 190, Neg. LLF: 138.84371439583265
Iteration: 13, Func. Count: 205, Neg. LLF: 138.84283145009903
Iteration: 14, Func. Count: 220, Neg. LLF: 138.8419589821391
Iteration: 15, Func. Count: 235, Neg. LLF: 138.84163086452034
Iteration: 16, Func. Count: 250, Neg. LLF: 138.84147449990868
Iteration: 17, Func. Count: 265, Neg. LLF: 138.8414614743575
Iteration: 18, Func. Count: 279, Neg. LLF: 138.84146154133978
Optimization terminated successfully (Exit mode 0)
Current function value: 138.8414614743575
Iterations: 18
Function evaluations: 279
Gradient evaluations: 18
Iteration: 1, Func. Count: 5, Neg. LLF: 142.92458258679898
Iteration: 2, Func. Count: 10, Neg. LLF: 141.9382572295013
Iteration: 3, Func. Count: 15, Neg. LLF: 140.82350592845293
Iteration: 4, Func. Count: 19, Neg. LLF: 140.77555546161742
Iteration: 5, Func. Count: 23, Neg. LLF: 140.7684662009629
Iteration: 6, Func. Count: 27, Neg. LLF: 140.76684791893828
Iteration: 7, Func. Count: 31, Neg. LLF: 140.76636937334462
Iteration: 8, Func. Count: 35, Neg. LLF: 140.7663637459939
Iteration: 9, Func. Count: 38, Neg. LLF: 140.76636374602867
Optimization terminated successfully (Exit mode 0)
Current function value: 140.7663637459939
Iterations: 9
Function evaluations: 38
Gradient evaluations: 9
Iteration: 1, Func. Count: 5, Neg. LLF: 146.4799980839308
Iteration: 2, Func. Count: 10, Neg. LLF: 140.89290431829133
Iteration: 3, Func. Count: 14, Neg. LLF: 141.30534704940456
Iteration: 4, Func. Count: 19, Neg. LLF: 139.75610844922755
Iteration: 5, Func. Count: 23, Neg. LLF: 139.7197960565394
Iteration: 6, Func. Count: 27, Neg. LLF: 139.71615424907117
Iteration: 7, Func. Count: 31, Neg. LLF: 139.71471788367467
Iteration: 8, Func. Count: 35, Neg. LLF: 139.7144600190358
Iteration: 9, Func. Count: 39, Neg. LLF: 139.71441682361572
Iteration: 10, Func. Count: 43, Neg. LLF: 139.71441609440342
Optimization terminated successfully (Exit mode 0)
Current function value: 139.71441609440342
Iterations: 10
Function evaluations: 43
Gradient evaluations: 10
Iteration: 1, Func. Count: 6, Neg. LLF: 144.12543389018109
Iteration: 2, Func. Count: 13, Neg. LLF: 140.84014921585305
Iteration: 3, Func. Count: 19, Neg. LLF: 140.34130935851312
Iteration: 4, Func. Count: 24, Neg. LLF: 140.24213123165586
Iteration: 5, Func. Count: 29, Neg. LLF: 139.76620325881575
Iteration: 6, Func. Count: 34, Neg. LLF: 139.73255581158293
Iteration: 7, Func. Count: 39, Neg. LLF: 139.7189170964261
Iteration: 8, Func. Count: 44, Neg. LLF: 139.7154842393342
Iteration: 9, Func. Count: 49, Neg. LLF: 139.714688309526
Iteration: 10, Func. Count: 54, Neg. LLF: 139.71448346257446
Iteration: 11, Func. Count: 59, Neg. LLF: 139.71442151665244
Iteration: 12, Func. Count: 64, Neg. LLF: 139.71441632782324
Iteration: 13, Func. Count: 68, Neg. LLF: 139.7144163602302
Optimization terminated successfully (Exit mode 0)
Current function value: 139.71441632782324
Iterations: 13
Function evaluations: 68
Gradient evaluations: 13
Iteration: 1, Func. Count: 7, Neg. LLF: 146.82527775764498
Iteration: 2, Func. Count: 15, Neg. LLF: 140.25607175430548
Iteration: 3, Func. Count: 21, Neg. LLF: 140.20767546869962
Iteration: 4, Func. Count: 27, Neg. LLF: 140.40159884341193
Iteration: 5, Func. Count: 34, Neg. LLF: 139.93616660110052
Iteration: 6, Func. Count: 40, Neg. LLF: 139.7500142295891
Iteration: 7, Func. Count: 46, Neg. LLF: 139.72950546077158
Iteration: 8, Func. Count: 52, Neg. LLF: 139.71816831733796
Iteration: 9, Func. Count: 58, Neg. LLF: 139.7158720616628
Iteration: 10, Func. Count: 64, Neg. LLF: 139.71445798601675
Iteration: 11, Func. Count: 70, Neg. LLF: 139.7144181663215
Iteration: 12, Func. Count: 76, Neg. LLF: 139.71441628728806
Iteration: 13, Func. Count: 81, Neg. LLF: 139.71441630701707
Optimization terminated successfully (Exit mode 0)
Current function value: 139.71441628728806
Iterations: 13
Function evaluations: 81
Gradient evaluations: 13
Iteration: 1, Func. Count: 8, Neg. LLF: 148.3636688037724
Iteration: 2, Func. Count: 17, Neg. LLF: 140.3317721786954
Iteration: 3, Func. Count: 25, Neg. LLF: 140.21840848677553
Iteration: 4, Func. Count: 32, Neg. LLF: 140.16710860135854
Iteration: 5, Func. Count: 39, Neg. LLF: 140.08893810762174
Iteration: 6, Func. Count: 46, Neg. LLF: 139.994189335487
Iteration: 7, Func. Count: 53, Neg. LLF: 139.8487462188522
Iteration: 8, Func. Count: 60, Neg. LLF: 139.72555458037962
Iteration: 9, Func. Count: 67, Neg. LLF: 139.71766771061755
Iteration: 10, Func. Count: 74, Neg. LLF: 139.71451560169507
Iteration: 11, Func. Count: 81, Neg. LLF: 139.7144505792494
Iteration: 12, Func. Count: 88, Neg. LLF: 139.7144200884146
Iteration: 13, Func. Count: 95, Neg. LLF: 139.7144168656605
Iteration: 14, Func. Count: 102, Neg. LLF: 139.7144162377029
Optimization terminated successfully (Exit mode 0)
Current function value: 139.7144162377029
Iterations: 14
Function evaluations: 102
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 143.3092628487144
Iteration: 2, Func. Count: 19, Neg. LLF: 140.69337525125079
Iteration: 3, Func. Count: 28, Neg. LLF: 139.9834847868796
Iteration: 4, Func. Count: 36, Neg. LLF: 139.88708817228178
Iteration: 5, Func. Count: 44, Neg. LLF: 139.806659251093
Iteration: 6, Func. Count: 52, Neg. LLF: 139.7579657036755
Iteration: 7, Func. Count: 60, Neg. LLF: 139.7446606873698
Iteration: 8, Func. Count: 68, Neg. LLF: 139.73429103083797
Iteration: 9, Func. Count: 76, Neg. LLF: 139.7255492930988
Iteration: 10, Func. Count: 84, Neg. LLF: 139.71119974904903
Iteration: 11, Func. Count: 92, Neg. LLF: 139.69835813509758
Iteration: 12, Func. Count: 100, Neg. LLF: 139.6918533543363
Iteration: 13, Func. Count: 108, Neg. LLF: 139.69099690564934
Iteration: 14, Func. Count: 116, Neg. LLF: 139.690922401549
Iteration: 15, Func. Count: 124, Neg. LLF: 139.690912255969
Iteration: 16, Func. Count: 131, Neg. LLF: 139.6909122559602
Optimization terminated successfully (Exit mode 0)
Current function value: 139.690912255969
Iterations: 16
Function evaluations: 131
Gradient evaluations: 16
Iteration: 1, Func. Count: 6, Neg. LLF: 145.57324719194122
Iteration: 2, Func. Count: 12, Neg. LLF: 141.20042006960637
Iteration: 3, Func. Count: 17, Neg. LLF: 139.87741857234025
Iteration: 4, Func. Count: 22, Neg. LLF: 139.76615936062984
Iteration: 5, Func. Count: 27, Neg. LLF: 139.7312000974878
Iteration: 6, Func. Count: 32, Neg. LLF: 139.71760096456245
Iteration: 7, Func. Count: 37, Neg. LLF: 139.71452434120752
Iteration: 8, Func. Count: 42, Neg. LLF: 139.71441736047294
Iteration: 9, Func. Count: 47, Neg. LLF: 139.71441630567745
Iteration: 10, Func. Count: 51, Neg. LLF: 139.71441640283922
Optimization terminated successfully (Exit mode 0)
Current function value: 139.71441630567745
Iterations: 10
Function evaluations: 51
Gradient evaluations: 10
Iteration: 1, Func. Count: 7, Neg. LLF: 145.68512244444162
Iteration: 2, Func. Count: 15, Neg. LLF: 143.27918957637235
Iteration: 3, Func. Count: 22, Neg. LLF: 140.34528486293166
Iteration: 4, Func. Count: 28, Neg. LLF: 140.33674219895386
Iteration: 5, Func. Count: 34, Neg. LLF: 140.3041037314525
Iteration: 6, Func. Count: 40, Neg. LLF: 140.23155172635995
Iteration: 7, Func. Count: 46, Neg. LLF: 139.8288271009079
Iteration: 8, Func. Count: 52, Neg. LLF: 139.7563297694828
Iteration: 9, Func. Count: 58, Neg. LLF: 139.7191246523516
Iteration: 10, Func. Count: 64, Neg. LLF: 139.71599829119714
Iteration: 11, Func. Count: 70, Neg. LLF: 139.71451308809776
Iteration: 12, Func. Count: 76, Neg. LLF: 139.71443484551318
Iteration: 13, Func. Count: 82, Neg. LLF: 139.7144189324085
Iteration: 14, Func. Count: 88, Neg. LLF: 139.71441636706615
Iteration: 15, Func. Count: 93, Neg. LLF: 139.7144163994742
Optimization terminated successfully (Exit mode 0)
Current function value: 139.71441636706615
Iterations: 15
Function evaluations: 93
Gradient evaluations: 15
Iteration: 1, Func. Count: 8, Neg. LLF: 145.69329704651338
Iteration: 2, Func. Count: 17, Neg. LLF: 143.31323443611964
Iteration: 3, Func. Count: 25, Neg. LLF: 140.2887801557816
Iteration: 4, Func. Count: 32, Neg. LLF: 140.23745898138228
Iteration: 5, Func. Count: 39, Neg. LLF: 140.19676586605746
Iteration: 6, Func. Count: 46, Neg. LLF: 140.1564670767961
Iteration: 7, Func. Count: 53, Neg. LLF: 140.0822906701544
Iteration: 8, Func. Count: 60, Neg. LLF: 139.95794681363157
Iteration: 9, Func. Count: 67, Neg. LLF: 139.75526097334966
Iteration: 10, Func. Count: 74, Neg. LLF: 139.73694858267984
Iteration: 11, Func. Count: 81, Neg. LLF: 139.71506891681662
Iteration: 12, Func. Count: 88, Neg. LLF: 139.7144807299661
Iteration: 13, Func. Count: 95, Neg. LLF: 139.7144210288866
Iteration: 14, Func. Count: 102, Neg. LLF: 139.71441623314672
Iteration: 15, Func. Count: 108, Neg. LLF: 139.71441625287324
Optimization terminated successfully (Exit mode 0)
Current function value: 139.71441623314672
Iterations: 15
Function evaluations: 108
Gradient evaluations: 15
Iteration: 1, Func. Count: 9, Neg. LLF: 145.6769288063359
Iteration: 2, Func. Count: 19, Neg. LLF: 143.2004402859731
Iteration: 3, Func. Count: 28, Neg. LLF: 140.49770658358702
Iteration: 4, Func. Count: 37, Neg. LLF: 140.20575313846211
Iteration: 5, Func. Count: 45, Neg. LLF: 140.16838288793713
Iteration: 6, Func. Count: 53, Neg. LLF: 140.10652643758795
Iteration: 7, Func. Count: 61, Neg. LLF: 139.83553858749912
Iteration: 8, Func. Count: 69, Neg. LLF: 139.73377407742555
Iteration: 9, Func. Count: 77, Neg. LLF: 139.7195545810788
Iteration: 10, Func. Count: 85, Neg. LLF: 139.71458869014955
Iteration: 11, Func. Count: 93, Neg. LLF: 139.71443590894407
Iteration: 12, Func. Count: 101, Neg. LLF: 139.71442010405386
Iteration: 13, Func. Count: 109, Neg. LLF: 139.7144174661422
Iteration: 14, Func. Count: 117, Neg. LLF: 139.71441618005764
Iteration: 15, Func. Count: 124, Neg. LLF: 139.71441619565027
Optimization terminated successfully (Exit mode 0)
Current function value: 139.71441618005764
Iterations: 15
Function evaluations: 124
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 145.66683608897412
Iteration: 2, Func. Count: 21, Neg. LLF: 143.15944879334555
Iteration: 3, Func. Count: 31, Neg. LLF: 140.58490216202165
Iteration: 4, Func. Count: 41, Neg. LLF: 139.84481608478762
Iteration: 5, Func. Count: 50, Neg. LLF: 139.79274152778223
Iteration: 6, Func. Count: 59, Neg. LLF: 139.7852703703039
Iteration: 7, Func. Count: 68, Neg. LLF: 139.77481275460775
Iteration: 8, Func. Count: 77, Neg. LLF: 139.7638680976784
Iteration: 9, Func. Count: 86, Neg. LLF: 139.72428178641286
Iteration: 10, Func. Count: 95, Neg. LLF: 139.6955052969826
Iteration: 11, Func. Count: 104, Neg. LLF: 139.69171776506676
Iteration: 12, Func. Count: 113, Neg. LLF: 139.69109764588154
Iteration: 13, Func. Count: 122, Neg. LLF: 139.69097972673168
Iteration: 14, Func. Count: 131, Neg. LLF: 139.69092557116073
Iteration: 15, Func. Count: 140, Neg. LLF: 139.690913092954
Iteration: 16, Func. Count: 149, Neg. LLF: 139.69091195416783
Iteration: 17, Func. Count: 157, Neg. LLF: 139.69091195415695
Optimization terminated successfully (Exit mode 0)
Current function value: 139.69091195416783
Iterations: 17
Function evaluations: 157
Gradient evaluations: 17
Iteration: 1, Func. Count: 7, Neg. LLF: 144.30255046353372
Iteration: 2, Func. Count: 14, Neg. LLF: 140.9439568351016
Iteration: 3, Func. Count: 20, Neg. LLF: 140.25755422689758
Iteration: 4, Func. Count: 26, Neg. LLF: 139.90473937936116
Iteration: 5, Func. Count: 32, Neg. LLF: 139.7922311506055
Iteration: 6, Func. Count: 38, Neg. LLF: 139.73424285547867
Iteration: 7, Func. Count: 44, Neg. LLF: 139.7159301303881
Iteration: 8, Func. Count: 50, Neg. LLF: 139.71443084641692
Iteration: 9, Func. Count: 56, Neg. LLF: 139.7144169939449
Iteration: 10, Func. Count: 62, Neg. LLF: 139.7144160848832
Optimization terminated successfully (Exit mode 0)
Current function value: 139.7144160848832
Iterations: 10
Function evaluations: 62
Gradient evaluations: 10
Iteration: 1, Func. Count: 8, Neg. LLF: 145.70737077627712
Iteration: 2, Func. Count: 18, Neg. LLF: 143.4323149578867
Iteration: 3, Func. Count: 26, Neg. LLF: 140.35676072439185
Iteration: 4, Func. Count: 33, Neg. LLF: 140.33374482318217
Iteration: 5, Func. Count: 40, Neg. LLF: 140.30011760718784
Iteration: 6, Func. Count: 47, Neg. LLF: 140.1108592682601
Iteration: 7, Func. Count: 54, Neg. LLF: 139.8137343130236
Iteration: 8, Func. Count: 61, Neg. LLF: 139.78653381135655
Iteration: 9, Func. Count: 68, Neg. LLF: 139.7451577120007
Iteration: 10, Func. Count: 75, Neg. LLF: 139.72909780831102
Iteration: 11, Func. Count: 82, Neg. LLF: 139.7199956085083
Iteration: 12, Func. Count: 89, Neg. LLF: 139.7161827994414
Iteration: 13, Func. Count: 96, Neg. LLF: 139.7146203313826
Iteration: 14, Func. Count: 103, Neg. LLF: 139.7144249520835
Iteration: 15, Func. Count: 110, Neg. LLF: 139.71441630475937
Iteration: 16, Func. Count: 116, Neg. LLF: 139.71441633720048
Optimization terminated successfully (Exit mode 0)
Current function value: 139.71441630475937
Iterations: 16
Function evaluations: 116
Gradient evaluations: 16
Iteration: 1, Func. Count: 9, Neg. LLF: 145.6854382758329
Iteration: 2, Func. Count: 19, Neg. LLF: 143.31973552879455
Iteration: 3, Func. Count: 28, Neg. LLF: 140.28711370881146
Iteration: 4, Func. Count: 36, Neg. LLF: 140.24583890015376
Iteration: 5, Func. Count: 44, Neg. LLF: 140.1925082564804
Iteration: 6, Func. Count: 52, Neg. LLF: 140.1558587835347
Iteration: 7, Func. Count: 60, Neg. LLF: 140.06841253751242
Iteration: 8, Func. Count: 68, Neg. LLF: 139.93237545982552
Iteration: 9, Func. Count: 76, Neg. LLF: 139.7532234005171
Iteration: 10, Func. Count: 84, Neg. LLF: 139.73703860099536
Iteration: 11, Func. Count: 92, Neg. LLF: 139.71503388924532
Iteration: 12, Func. Count: 100, Neg. LLF: 139.7144447128304
Iteration: 13, Func. Count: 108, Neg. LLF: 139.71441805577953
Iteration: 14, Func. Count: 116, Neg. LLF: 139.7144161722295
Iteration: 15, Func. Count: 123, Neg. LLF: 139.7144161919457
Optimization terminated successfully (Exit mode 0)
Current function value: 139.7144161722295
Iterations: 15
Function evaluations: 123
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 145.66939151217002
Iteration: 2, Func. Count: 21, Neg. LLF: 143.20524506979902
Iteration: 3, Func. Count: 31, Neg. LLF: 140.4884245931319
Iteration: 4, Func. Count: 41, Neg. LLF: 140.20787506374148
Iteration: 5, Func. Count: 50, Neg. LLF: 140.16729810949374
Iteration: 6, Func. Count: 59, Neg. LLF: 140.11170210862178
Iteration: 7, Func. Count: 68, Neg. LLF: 139.8930963403724
Iteration: 8, Func. Count: 77, Neg. LLF: 139.72127915920768
Iteration: 9, Func. Count: 86, Neg. LLF: 139.71677673032815
Iteration: 10, Func. Count: 95, Neg. LLF: 139.71460881204888
Iteration: 11, Func. Count: 104, Neg. LLF: 139.71445165497383
Iteration: 12, Func. Count: 113, Neg. LLF: 139.7144199530084
Iteration: 13, Func. Count: 122, Neg. LLF: 139.7144171318409
Iteration: 14, Func. Count: 131, Neg. LLF: 139.71441609787152
Iteration: 15, Func. Count: 139, Neg. LLF: 139.7144161134746
Optimization terminated successfully (Exit mode 0)
Current function value: 139.71441609787152
Iterations: 15
Function evaluations: 139
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 145.6588962006446
Iteration: 2, Func. Count: 23, Neg. LLF: 143.16185215809946
Iteration: 3, Func. Count: 34, Neg. LLF: 140.55608494340717
Iteration: 4, Func. Count: 45, Neg. LLF: 139.84259736049898
Iteration: 5, Func. Count: 55, Neg. LLF: 139.79595790820795
Iteration: 6, Func. Count: 65, Neg. LLF: 139.7981793392939
Iteration: 7, Func. Count: 76, Neg. LLF: 139.7784640645311
Iteration: 8, Func. Count: 86, Neg. LLF: 139.74593510974526
Iteration: 9, Func. Count: 96, Neg. LLF: 139.72227095824596
Iteration: 10, Func. Count: 106, Neg. LLF: 139.6993270014244
Iteration: 11, Func. Count: 116, Neg. LLF: 139.69240214531362
Iteration: 12, Func. Count: 126, Neg. LLF: 139.69147495102928
Iteration: 13, Func. Count: 136, Neg. LLF: 139.69108692301853
Iteration: 14, Func. Count: 146, Neg. LLF: 139.6909257734143
Iteration: 15, Func. Count: 156, Neg. LLF: 139.69091250550724
Iteration: 16, Func. Count: 165, Neg. LLF: 139.6909125054993
Optimization terminated successfully (Exit mode 0)
Current function value: 139.69091250550724
Iterations: 16
Function evaluations: 165
Gradient evaluations: 16
Iteration: 1, Func. Count: 8, Neg. LLF: 144.64415847631992
Iteration: 2, Func. Count: 16, Neg. LLF: 142.33815579444047
Iteration: 3, Func. Count: 24, Neg. LLF: 140.2457821838563
Iteration: 4, Func. Count: 31, Neg. LLF: 140.58620395086564
Iteration: 5, Func. Count: 39, Neg. LLF: 139.89777422346916
Iteration: 6, Func. Count: 46, Neg. LLF: 139.7824314760044
Iteration: 7, Func. Count: 53, Neg. LLF: 139.727522477941
Iteration: 8, Func. Count: 60, Neg. LLF: 139.7155438371868
Iteration: 9, Func. Count: 67, Neg. LLF: 139.71444075911754
Iteration: 10, Func. Count: 74, Neg. LLF: 139.71441625978298
Iteration: 11, Func. Count: 80, Neg. LLF: 139.71441630709526
Optimization terminated successfully (Exit mode 0)
Current function value: 139.71441625978298
Iterations: 11
Function evaluations: 80
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 145.7006925764898
Iteration: 2, Func. Count: 20, Neg. LLF: 143.42659017764387
Iteration: 3, Func. Count: 29, Neg. LLF: 140.35788193221072
Iteration: 4, Func. Count: 37, Neg. LLF: 140.33362264800613
Iteration: 5, Func. Count: 45, Neg. LLF: 140.30036965322472
Iteration: 6, Func. Count: 53, Neg. LLF: 140.12309299941305
Iteration: 7, Func. Count: 61, Neg. LLF: 139.81669101454145
Iteration: 8, Func. Count: 69, Neg. LLF: 139.78903211121366
Iteration: 9, Func. Count: 77, Neg. LLF: 139.74367722363468
Iteration: 10, Func. Count: 85, Neg. LLF: 139.72822778184403
Iteration: 11, Func. Count: 93, Neg. LLF: 139.71982681380024
Iteration: 12, Func. Count: 101, Neg. LLF: 139.7161116049873
Iteration: 13, Func. Count: 109, Neg. LLF: 139.71460189248913
Iteration: 14, Func. Count: 117, Neg. LLF: 139.71442394004293
Iteration: 15, Func. Count: 125, Neg. LLF: 139.7144162612777
Iteration: 16, Func. Count: 132, Neg. LLF: 139.71441629371301
Optimization terminated successfully (Exit mode 0)
Current function value: 139.7144162612777
Iterations: 16
Function evaluations: 132
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 145.6786803731513
Iteration: 2, Func. Count: 21, Neg. LLF: 143.3149565351902
Iteration: 3, Func. Count: 31, Neg. LLF: 140.28546449616556
Iteration: 4, Func. Count: 40, Neg. LLF: 140.24590662615455
Iteration: 5, Func. Count: 49, Neg. LLF: 140.19198898677004
Iteration: 6, Func. Count: 58, Neg. LLF: 140.15544409864003
Iteration: 7, Func. Count: 67, Neg. LLF: 140.06728801071503
Iteration: 8, Func. Count: 76, Neg. LLF: 139.92981012364865
Iteration: 9, Func. Count: 85, Neg. LLF: 139.7530949204124
Iteration: 10, Func. Count: 94, Neg. LLF: 139.73699416805053
Iteration: 11, Func. Count: 103, Neg. LLF: 139.71507888654438
Iteration: 12, Func. Count: 112, Neg. LLF: 139.71444767445288
Iteration: 13, Func. Count: 121, Neg. LLF: 139.71441804674438
Iteration: 14, Func. Count: 130, Neg. LLF: 139.71441617294715
Iteration: 15, Func. Count: 138, Neg. LLF: 139.7144161926638
Optimization terminated successfully (Exit mode 0)
Current function value: 139.71441617294715
Iterations: 15
Function evaluations: 138
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 145.66248611156507
Iteration: 2, Func. Count: 23, Neg. LLF: 143.20047768353018
Iteration: 3, Func. Count: 34, Neg. LLF: 140.49105649236677
Iteration: 4, Func. Count: 45, Neg. LLF: 140.207795214731
Iteration: 5, Func. Count: 55, Neg. LLF: 140.167945653481
Iteration: 6, Func. Count: 65, Neg. LLF: 140.1135020064251
Iteration: 7, Func. Count: 75, Neg. LLF: 139.8987351473361
Iteration: 8, Func. Count: 85, Neg. LLF: 139.72037640122485
Iteration: 9, Func. Count: 95, Neg. LLF: 139.71642606218867
Iteration: 10, Func. Count: 105, Neg. LLF: 139.71458367582522
Iteration: 11, Func. Count: 115, Neg. LLF: 139.71444710892203
Iteration: 12, Func. Count: 125, Neg. LLF: 139.71441931792907
Iteration: 13, Func. Count: 135, Neg. LLF: 139.71441683215684
Iteration: 14, Func. Count: 145, Neg. LLF: 139.71441609538053
Optimization terminated successfully (Exit mode 0)
Current function value: 139.71441609538053
Iterations: 14
Function evaluations: 145
Gradient evaluations: 14
Iteration: 1, Func. Count: 12, Neg. LLF: 145.65221522387068
Iteration: 2, Func. Count: 25, Neg. LLF: 143.15704476238898
Iteration: 3, Func. Count: 37, Neg. LLF: 140.5664195864399
Iteration: 4, Func. Count: 49, Neg. LLF: 139.84125118941367
Iteration: 5, Func. Count: 60, Neg. LLF: 139.79479815469688
Iteration: 6, Func. Count: 71, Neg. LLF: 139.7967197158315
Iteration: 7, Func. Count: 83, Neg. LLF: 139.77797681153956
Iteration: 8, Func. Count: 94, Neg. LLF: 139.75114548608403
Iteration: 9, Func. Count: 105, Neg. LLF: 139.727117337153
Iteration: 10, Func. Count: 116, Neg. LLF: 139.70196399307602
Iteration: 11, Func. Count: 127, Neg. LLF: 139.69252144356008
Iteration: 12, Func. Count: 138, Neg. LLF: 139.6914130554112
Iteration: 13, Func. Count: 149, Neg. LLF: 139.69111304600608
Iteration: 14, Func. Count: 160, Neg. LLF: 139.69092815264955
Iteration: 15, Func. Count: 171, Neg. LLF: 139.69091261983894
Iteration: 16, Func. Count: 182, Neg. LLF: 139.69091193763225
Optimization terminated successfully (Exit mode 0)
Current function value: 139.69091193763225
Iterations: 16
Function evaluations: 182
Gradient evaluations: 16
Iteration: 1, Func. Count: 5, Neg. LLF: 141.27482604179136
Iteration: 2, Func. Count: 10, Neg. LLF: 139.5629053254019
Iteration: 3, Func. Count: 14, Neg. LLF: 139.25528276140358
Iteration: 4, Func. Count: 18, Neg. LLF: 139.1769783030527
Iteration: 5, Func. Count: 22, Neg. LLF: 139.1733180661377
Iteration: 6, Func. Count: 26, Neg. LLF: 139.17187554845523
Iteration: 7, Func. Count: 30, Neg. LLF: 139.17184829042304
Iteration: 8, Func. Count: 34, Neg. LLF: 139.17184734072472
Optimization terminated successfully (Exit mode 0)
Current function value: 139.17184734072472
Iterations: 8
Function evaluations: 34
Gradient evaluations: 8
Iteration: 1, Func. Count: 6, Neg. LLF: 146.99996327059017
Iteration: 2, Func. Count: 12, Neg. LLF: 148.44669938194505
Iteration: 3, Func. Count: 19, Neg. LLF: 138.934067357761
Iteration: 4, Func. Count: 25, Neg. LLF: 138.90622775066623
Iteration: 5, Func. Count: 30, Neg. LLF: 138.89779109492187
Iteration: 6, Func. Count: 35, Neg. LLF: 138.89521003563186
Iteration: 7, Func. Count: 40, Neg. LLF: 138.89461990780447
Iteration: 8, Func. Count: 45, Neg. LLF: 138.8945934762094
Iteration: 9, Func. Count: 49, Neg. LLF: 138.89459347620075
Optimization terminated successfully (Exit mode 0)
Current function value: 138.8945934762094
Iterations: 9
Function evaluations: 49
Gradient evaluations: 9
Iteration: 1, Func. Count: 7, Neg. LLF: 146.9842989308764
Iteration: 2, Func. Count: 14, Neg. LLF: 147.86503336405838
Iteration: 3, Func. Count: 21, Neg. LLF: 138.84124442692342
Iteration: 4, Func. Count: 27, Neg. LLF: 138.85537972762518
Iteration: 5, Func. Count: 34, Neg. LLF: 138.83218526493303
Iteration: 6, Func. Count: 40, Neg. LLF: 138.83110054829777
Iteration: 7, Func. Count: 47, Neg. LLF: 138.82428180543096
Iteration: 8, Func. Count: 53, Neg. LLF: 138.81666293027817
Iteration: 9, Func. Count: 59, Neg. LLF: 138.81646059149102
Iteration: 10, Func. Count: 65, Neg. LLF: 138.81642440379684
Iteration: 11, Func. Count: 70, Neg. LLF: 138.816424403788
Optimization terminated successfully (Exit mode 0)
Current function value: 138.81642440379684
Iterations: 11
Function evaluations: 70
Gradient evaluations: 11
Iteration: 1, Func. Count: 8, Neg. LLF: 141.8537633234298
Iteration: 2, Func. Count: 16, Neg. LLF: 140.17537135367198
Iteration: 3, Func. Count: 24, Neg. LLF: 142.8694114305785
Iteration: 4, Func. Count: 32, Neg. LLF: 138.89906846652255
Iteration: 5, Func. Count: 40, Neg. LLF: 138.94607032036168
Iteration: 6, Func. Count: 48, Neg. LLF: 138.84793453818904
Iteration: 7, Func. Count: 56, Neg. LLF: 138.8364479389886
Iteration: 8, Func. Count: 63, Neg. LLF: 138.826641045795
Iteration: 9, Func. Count: 70, Neg. LLF: 138.8186833959533
Iteration: 10, Func. Count: 77, Neg. LLF: 138.81572871607753
Iteration: 11, Func. Count: 84, Neg. LLF: 138.81466532426728
Iteration: 12, Func. Count: 91, Neg. LLF: 138.81459420857115
Iteration: 13, Func. Count: 98, Neg. LLF: 138.81458284585491
Iteration: 14, Func. Count: 104, Neg. LLF: 138.81458284580233
Optimization terminated successfully (Exit mode 0)
Current function value: 138.81458284585491
Iterations: 14
Function evaluations: 104
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 141.79547878706802
Iteration: 2, Func. Count: 18, Neg. LLF: 140.11164193694646
Iteration: 3, Func. Count: 27, Neg. LLF: 143.05768610499433
Iteration: 4, Func. Count: 36, Neg. LLF: 138.8860558247267
Iteration: 5, Func. Count: 44, Neg. LLF: 139.17049459024975
Iteration: 6, Func. Count: 53, Neg. LLF: 138.87441689385207
Iteration: 7, Func. Count: 62, Neg. LLF: 138.84021082537538
Iteration: 8, Func. Count: 70, Neg. LLF: 138.83686372986122
Iteration: 9, Func. Count: 78, Neg. LLF: 138.83168665369215
Iteration: 10, Func. Count: 86, Neg. LLF: 138.82360227569194
Iteration: 11, Func. Count: 94, Neg. LLF: 138.81809480055716
Iteration: 12, Func. Count: 102, Neg. LLF: 138.81633011194532
Iteration: 13, Func. Count: 110, Neg. LLF: 138.8148928405271
Iteration: 14, Func. Count: 118, Neg. LLF: 138.8146337184237
Iteration: 15, Func. Count: 126, Neg. LLF: 138.8145851733337
Iteration: 16, Func. Count: 134, Neg. LLF: 138.81458273956807
Iteration: 17, Func. Count: 141, Neg. LLF: 138.8145827902933
Optimization terminated successfully (Exit mode 0)
Current function value: 138.81458273956807
Iterations: 17
Function evaluations: 141
Gradient evaluations: 17
Iteration: 1, Func. Count: 6, Neg. LLF: 141.2649152625265
Iteration: 2, Func. Count: 12, Neg. LLF: 143.25769652038443
Iteration: 3, Func. Count: 18, Neg. LLF: 139.22194262678775
Iteration: 4, Func. Count: 23, Neg. LLF: 139.67072933448938
Iteration: 5, Func. Count: 29, Neg. LLF: 139.13741589841246
Iteration: 6, Func. Count: 35, Neg. LLF: 139.1159734920421
Iteration: 7, Func. Count: 40, Neg. LLF: 139.11399480528024
Iteration: 8, Func. Count: 45, Neg. LLF: 139.11398622259046
Iteration: 9, Func. Count: 49, Neg. LLF: 139.113986222585
Optimization terminated successfully (Exit mode 0)
Current function value: 139.11398622259046
Iterations: 9
Function evaluations: 49
Gradient evaluations: 9
Iteration: 1, Func. Count: 7, Neg. LLF: 160.4982637163651
Iteration: 2, Func. Count: 14, Neg. LLF: 142.87752096925234
Iteration: 3, Func. Count: 21, Neg. LLF: 138.66999485585723
Iteration: 4, Func. Count: 27, Neg. LLF: 141.64827372388518
Iteration: 5, Func. Count: 34, Neg. LLF: 138.45847333605235
Iteration: 6, Func. Count: 40, Neg. LLF: 138.10945014367528
Iteration: 7, Func. Count: 46, Neg. LLF: 138.06105333780394
Iteration: 8, Func. Count: 52, Neg. LLF: 138.01589617201955
Iteration: 9, Func. Count: 58, Neg. LLF: 138.01055670128997
Iteration: 10, Func. Count: 64, Neg. LLF: 138.0081604603743
Iteration: 11, Func. Count: 70, Neg. LLF: 138.00814655064755
Iteration: 12, Func. Count: 76, Neg. LLF: 138.00814223875284
Iteration: 13, Func. Count: 81, Neg. LLF: 138.0081422387557
Optimization terminated successfully (Exit mode 0)
Current function value: 138.00814223875284
Iterations: 13
Function evaluations: 81
Gradient evaluations: 13
Iteration: 1, Func. Count: 8, Neg. LLF: 160.69985115369016
Iteration: 2, Func. Count: 16, Neg. LLF: 142.0459763848821
Iteration: 3, Func. Count: 24, Neg. LLF: 139.79827289750364
Iteration: 4, Func. Count: 32, Neg. LLF: 138.5917309527025
Iteration: 5, Func. Count: 40, Neg. LLF: 138.4899561266756
Iteration: 6, Func. Count: 47, Neg. LLF: 147.4294997364853
Iteration: 7, Func. Count: 55, Neg. LLF: 138.32911796397613
Iteration: 8, Func. Count: 62, Neg. LLF: 138.45253127827002
Iteration: 9, Func. Count: 70, Neg. LLF: 138.1635001122751
Iteration: 10, Func. Count: 77, Neg. LLF: 138.06895984650208
Iteration: 11, Func. Count: 84, Neg. LLF: 138.01222772010962
Iteration: 12, Func. Count: 91, Neg. LLF: 138.0087960047512
Iteration: 13, Func. Count: 98, Neg. LLF: 138.00814643638898
Iteration: 14, Func. Count: 105, Neg. LLF: 138.00814334158858
Iteration: 15, Func. Count: 112, Neg. LLF: 138.00814223987592
Iteration: 16, Func. Count: 118, Neg. LLF: 138.00814225709811
Optimization terminated successfully (Exit mode 0)
Current function value: 138.00814223987592
Iterations: 16
Function evaluations: 118
Gradient evaluations: 16
Iteration: 1, Func. Count: 9, Neg. LLF: 141.3075158714416
Iteration: 2, Func. Count: 18, Neg. LLF: 141.7690607934638
Iteration: 3, Func. Count: 27, Neg. LLF: 140.61577905557414
Iteration: 4, Func. Count: 36, Neg. LLF: 139.03516682707962
Iteration: 5, Func. Count: 45, Neg. LLF: 138.85914032819048
Iteration: 6, Func. Count: 54, Neg. LLF: 138.76343218372625
Iteration: 7, Func. Count: 62, Neg. LLF: 138.6654728481893
Iteration: 8, Func. Count: 70, Neg. LLF: 138.55422122146427
Iteration: 9, Func. Count: 78, Neg. LLF: 138.44572969818034
Iteration: 10, Func. Count: 86, Neg. LLF: 138.57944830903125
Iteration: 11, Func. Count: 95, Neg. LLF: 138.37911617899155
Iteration: 12, Func. Count: 103, Neg. LLF: 138.356975529
Iteration: 13, Func. Count: 111, Neg. LLF: 138.21595619670987
Iteration: 14, Func. Count: 119, Neg. LLF: 138.17726782959397
Iteration: 15, Func. Count: 127, Neg. LLF: 138.099848010352
Iteration: 16, Func. Count: 135, Neg. LLF: 138.05238926610494
Iteration: 17, Func. Count: 143, Neg. LLF: 138.0206621619472
Iteration: 18, Func. Count: 151, Neg. LLF: 138.00996144898406
Iteration: 19, Func. Count: 159, Neg. LLF: 138.00831584952812
Iteration: 20, Func. Count: 167, Neg. LLF: 138.00814410452762
Iteration: 21, Func. Count: 175, Neg. LLF: 138.00814228249763
Iteration: 22, Func. Count: 182, Neg. LLF: 138.0081423379289
Optimization terminated successfully (Exit mode 0)
Current function value: 138.00814228249763
Iterations: 22
Function evaluations: 182
Gradient evaluations: 22
Iteration: 1, Func. Count: 10, Neg. LLF: 141.37688413610138
Iteration: 2, Func. Count: 20, Neg. LLF: 145.56931886634996
Iteration: 3, Func. Count: 30, Neg. LLF: 140.16194077398615
Iteration: 4, Func. Count: 40, Neg. LLF: 139.10854952620983
Iteration: 5, Func. Count: 50, Neg. LLF: 138.7807805205746
Iteration: 6, Func. Count: 59, Neg. LLF: 138.7738406241526
Iteration: 7, Func. Count: 68, Neg. LLF: 138.6011574562827
Iteration: 8, Func. Count: 77, Neg. LLF: 138.71925769393746
Iteration: 9, Func. Count: 87, Neg. LLF: 138.77786695460364
Iteration: 10, Func. Count: 97, Neg. LLF: 138.45225940819566
Iteration: 11, Func. Count: 106, Neg. LLF: 138.43173707652224
Iteration: 12, Func. Count: 115, Neg. LLF: 138.3832292681003
Iteration: 13, Func. Count: 124, Neg. LLF: 138.3769665668513
Iteration: 14, Func. Count: 133, Neg. LLF: 138.37180644342624
Iteration: 15, Func. Count: 142, Neg. LLF: 138.29337345542908
Iteration: 16, Func. Count: 151, Neg. LLF: 138.24798999955752
Iteration: 17, Func. Count: 160, Neg. LLF: 138.18181061424468
Iteration: 18, Func. Count: 169, Neg. LLF: 138.15101911251128
Iteration: 19, Func. Count: 178, Neg. LLF: 138.10081497551556
Iteration: 20, Func. Count: 187, Neg. LLF: 138.0102522592602
Iteration: 21, Func. Count: 196, Neg. LLF: 138.00850540416045
Iteration: 22, Func. Count: 205, Neg. LLF: 138.00820481035092
Iteration: 23, Func. Count: 214, Neg. LLF: 138.0081431343914
Iteration: 24, Func. Count: 223, Neg. LLF: 138.00814225058548
Optimization terminated successfully (Exit mode 0)
Current function value: 138.00814225058548
Iterations: 24
Function evaluations: 223
Gradient evaluations: 24
Iteration: 1, Func. Count: 7, Neg. LLF: 141.32998051692635
Iteration: 2, Func. Count: 14, Neg. LLF: 139.84874525516645
Iteration: 3, Func. Count: 20, Neg. LLF: 139.6306905901269
Iteration: 4, Func. Count: 26, Neg. LLF: 140.0253553617889
Iteration: 5, Func. Count: 33, Neg. LLF: 139.19234932263544
Iteration: 6, Func. Count: 39, Neg. LLF: 139.1273614727118
Iteration: 7, Func. Count: 45, Neg. LLF: 139.1147951820914
Iteration: 8, Func. Count: 51, Neg. LLF: 139.11405706072895
Iteration: 9, Func. Count: 57, Neg. LLF: 139.1140048493276
Iteration: 10, Func. Count: 63, Neg. LLF: 139.11398624714698
Iteration: 11, Func. Count: 68, Neg. LLF: 139.11398631929222
Optimization terminated successfully (Exit mode 0)
Current function value: 139.11398624714698
Iterations: 11
Function evaluations: 68
Gradient evaluations: 11
Iteration: 1, Func. Count: 8, Neg. LLF: 160.50815451467145
Iteration: 2, Func. Count: 16, Neg. LLF: 142.88558188257332
Iteration: 3, Func. Count: 24, Neg. LLF: 138.66456679848494
Iteration: 4, Func. Count: 31, Neg. LLF: 142.21833253612206
Iteration: 5, Func. Count: 39, Neg. LLF: 138.41957520090918
Iteration: 6, Func. Count: 46, Neg. LLF: 138.10760822725635
Iteration: 7, Func. Count: 53, Neg. LLF: 138.0507720245909
Iteration: 8, Func. Count: 60, Neg. LLF: 138.01747833275337
Iteration: 9, Func. Count: 67, Neg. LLF: 138.0086722795568
Iteration: 10, Func. Count: 74, Neg. LLF: 138.00814871264805
Iteration: 11, Func. Count: 81, Neg. LLF: 138.00814370444513
Iteration: 12, Func. Count: 88, Neg. LLF: 138.00814223977554
Iteration: 13, Func. Count: 94, Neg. LLF: 138.00814223978756
Optimization terminated successfully (Exit mode 0)
Current function value: 138.00814223977554
Iterations: 13
Function evaluations: 94
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 160.6904233025389
Iteration: 2, Func. Count: 18, Neg. LLF: 142.04413042862075
Iteration: 3, Func. Count: 27, Neg. LLF: 139.77783400015437
Iteration: 4, Func. Count: 36, Neg. LLF: 138.59326812536202
Iteration: 5, Func. Count: 45, Neg. LLF: 138.49740205387937
Iteration: 6, Func. Count: 53, Neg. LLF: 149.90442446834282
Iteration: 7, Func. Count: 62, Neg. LLF: 138.32321141909
Iteration: 8, Func. Count: 70, Neg. LLF: 138.37586283657959
Iteration: 9, Func. Count: 79, Neg. LLF: 138.1563629960063
Iteration: 10, Func. Count: 87, Neg. LLF: 138.07109461690442
Iteration: 11, Func. Count: 95, Neg. LLF: 138.00964991715497
Iteration: 12, Func. Count: 103, Neg. LLF: 138.00831238776533
Iteration: 13, Func. Count: 111, Neg. LLF: 138.0081503873403
Iteration: 14, Func. Count: 119, Neg. LLF: 138.00814400119017
Iteration: 15, Func. Count: 127, Neg. LLF: 138.00814223818574
Iteration: 16, Func. Count: 134, Neg. LLF: 138.00814225541438
Optimization terminated successfully (Exit mode 0)
Current function value: 138.00814223818574
Iterations: 16
Function evaluations: 134
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 141.55646370487122
Iteration: 2, Func. Count: 20, Neg. LLF: 145.95166916594638
Iteration: 3, Func. Count: 30, Neg. LLF: 140.19144911687002
Iteration: 4, Func. Count: 40, Neg. LLF: 139.08010171355326
Iteration: 5, Func. Count: 50, Neg. LLF: 138.92427681923303
Iteration: 6, Func. Count: 60, Neg. LLF: 138.74190585989425
Iteration: 7, Func. Count: 69, Neg. LLF: 138.6526223876617
Iteration: 8, Func. Count: 78, Neg. LLF: 138.571320530923
Iteration: 9, Func. Count: 87, Neg. LLF: 138.4084375860113
Iteration: 10, Func. Count: 96, Neg. LLF: 138.85793782249388
Iteration: 11, Func. Count: 106, Neg. LLF: 138.2730162563305
Iteration: 12, Func. Count: 115, Neg. LLF: 138.25874294414157
Iteration: 13, Func. Count: 124, Neg. LLF: 138.23769026493738
Iteration: 14, Func. Count: 133, Neg. LLF: 138.17079941346555
Iteration: 15, Func. Count: 142, Neg. LLF: 138.07523527583936
Iteration: 16, Func. Count: 151, Neg. LLF: 138.01489329127057
Iteration: 17, Func. Count: 160, Neg. LLF: 138.0108347059725
Iteration: 18, Func. Count: 169, Neg. LLF: 138.00877983126713
Iteration: 19, Func. Count: 178, Neg. LLF: 138.00822010717422
Iteration: 20, Func. Count: 187, Neg. LLF: 138.00814474063472
Iteration: 21, Func. Count: 196, Neg. LLF: 138.0081423256663
Iteration: 22, Func. Count: 204, Neg. LLF: 138.00814238106827
Optimization terminated successfully (Exit mode 0)
Current function value: 138.0081423256663
Iterations: 22
Function evaluations: 204
Gradient evaluations: 22
Iteration: 1, Func. Count: 11, Neg. LLF: 141.79951452304414
Iteration: 2, Func. Count: 22, Neg. LLF: 144.57727172444208
Iteration: 3, Func. Count: 33, Neg. LLF: 140.26040320924523
Iteration: 4, Func. Count: 44, Neg. LLF: 139.55653960669008
Iteration: 5, Func. Count: 55, Neg. LLF: 139.04380943367627
Iteration: 6, Func. Count: 66, Neg. LLF: 138.79652390810617
Iteration: 7, Func. Count: 76, Neg. LLF: 138.72377329392464
Iteration: 8, Func. Count: 86, Neg. LLF: 138.66106785640736
Iteration: 9, Func. Count: 96, Neg. LLF: 139.63921221709543
Iteration: 10, Func. Count: 108, Neg. LLF: 138.50005983398555
Iteration: 11, Func. Count: 118, Neg. LLF: 138.44591842435503
Iteration: 12, Func. Count: 128, Neg. LLF: 138.39600021683748
Iteration: 13, Func. Count: 138, Neg. LLF: 138.3715114295289
Iteration: 14, Func. Count: 148, Neg. LLF: 138.34731556863565
Iteration: 15, Func. Count: 158, Neg. LLF: 138.2654923579173
Iteration: 16, Func. Count: 168, Neg. LLF: 138.2352756754858
Iteration: 17, Func. Count: 178, Neg. LLF: 138.18460739948347
Iteration: 18, Func. Count: 188, Neg. LLF: 138.10734566798172
Iteration: 19, Func. Count: 198, Neg. LLF: 138.0327546716888
Iteration: 20, Func. Count: 208, Neg. LLF: 138.01397235696385
Iteration: 21, Func. Count: 218, Neg. LLF: 138.00908223454775
Iteration: 22, Func. Count: 228, Neg. LLF: 138.00819106028288
Iteration: 23, Func. Count: 238, Neg. LLF: 138.008163558226
Iteration: 24, Func. Count: 248, Neg. LLF: 138.00814365431057
Iteration: 25, Func. Count: 258, Neg. LLF: 138.00814226284135
Iteration: 26, Func. Count: 267, Neg. LLF: 138.0081423643799
Optimization terminated successfully (Exit mode 0)
Current function value: 138.00814226284135
Iterations: 26
Function evaluations: 267
Gradient evaluations: 26
Iteration: 1, Func. Count: 8, Neg. LLF: 141.6009094269901
Iteration: 2, Func. Count: 16, Neg. LLF: 142.25856121021727
Iteration: 3, Func. Count: 25, Neg. LLF: 139.29930470718176
Iteration: 4, Func. Count: 32, Neg. LLF: 139.3406793920833
Iteration: 5, Func. Count: 40, Neg. LLF: 139.246401733409
Iteration: 6, Func. Count: 48, Neg. LLF: 139.1435446121734
Iteration: 7, Func. Count: 55, Neg. LLF: 139.1277593861368
Iteration: 8, Func. Count: 62, Neg. LLF: 139.1141431277282
Iteration: 9, Func. Count: 69, Neg. LLF: 139.11398992011164
Iteration: 10, Func. Count: 76, Neg. LLF: 139.11398656146253
Iteration: 11, Func. Count: 82, Neg. LLF: 139.11398657953083
Optimization terminated successfully (Exit mode 0)
Current function value: 139.11398656146253
Iterations: 11
Function evaluations: 82
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 160.53900365575305
Iteration: 2, Func. Count: 18, Neg. LLF: 142.87699098640408
Iteration: 3, Func. Count: 27, Neg. LLF: 138.6604388404948
Iteration: 4, Func. Count: 35, Neg. LLF: 142.44146315858788
Iteration: 5, Func. Count: 44, Neg. LLF: 138.39725245194316
Iteration: 6, Func. Count: 52, Neg. LLF: 138.112218053472
Iteration: 7, Func. Count: 60, Neg. LLF: 138.04370571447308
Iteration: 8, Func. Count: 68, Neg. LLF: 138.02194508044815
Iteration: 9, Func. Count: 76, Neg. LLF: 138.00829188979083
Iteration: 10, Func. Count: 84, Neg. LLF: 138.00814469189652
Iteration: 11, Func. Count: 92, Neg. LLF: 138.0081433533702
Iteration: 12, Func. Count: 100, Neg. LLF: 138.008142239874
Iteration: 13, Func. Count: 107, Neg. LLF: 138.00814223989403
Optimization terminated successfully (Exit mode 0)
Current function value: 138.008142239874
Iterations: 13
Function evaluations: 107
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 160.71834347454305
Iteration: 2, Func. Count: 20, Neg. LLF: 142.04886240020372
Iteration: 3, Func. Count: 30, Neg. LLF: 139.80558029593536
Iteration: 4, Func. Count: 40, Neg. LLF: 138.59339986338628
Iteration: 5, Func. Count: 50, Neg. LLF: 138.49818177592402
Iteration: 6, Func. Count: 59, Neg. LLF: 150.17701222349817
Iteration: 7, Func. Count: 69, Neg. LLF: 138.3248953453835
Iteration: 8, Func. Count: 78, Neg. LLF: 138.3736099301492
Iteration: 9, Func. Count: 88, Neg. LLF: 138.1579095704261
Iteration: 10, Func. Count: 97, Neg. LLF: 138.07401981468135
Iteration: 11, Func. Count: 106, Neg. LLF: 138.00941961668906
Iteration: 12, Func. Count: 115, Neg. LLF: 138.00830096015113
Iteration: 13, Func. Count: 124, Neg. LLF: 138.00815187309158
Iteration: 14, Func. Count: 133, Neg. LLF: 138.0081440796064
Iteration: 15, Func. Count: 142, Neg. LLF: 138.00814223782936
Iteration: 16, Func. Count: 150, Neg. LLF: 138.00814225505712
Optimization terminated successfully (Exit mode 0)
Current function value: 138.00814223782936
Iterations: 16
Function evaluations: 150
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 141.62267922438187
Iteration: 2, Func. Count: 22, Neg. LLF: 145.97338577804547
Iteration: 3, Func. Count: 33, Neg. LLF: 140.193107091414
Iteration: 4, Func. Count: 44, Neg. LLF: 139.1040614070253
Iteration: 5, Func. Count: 55, Neg. LLF: 138.94986832971225
Iteration: 6, Func. Count: 66, Neg. LLF: 138.7530547618348
Iteration: 7, Func. Count: 76, Neg. LLF: 138.662876785128
Iteration: 8, Func. Count: 86, Neg. LLF: 138.57538300763645
Iteration: 9, Func. Count: 96, Neg. LLF: 138.4158575226224
Iteration: 10, Func. Count: 106, Neg. LLF: 139.7260866203883
Iteration: 11, Func. Count: 117, Neg. LLF: 138.3407887884654
Iteration: 12, Func. Count: 127, Neg. LLF: 138.29935455920253
Iteration: 13, Func. Count: 137, Neg. LLF: 138.23001269737094
Iteration: 14, Func. Count: 147, Neg. LLF: 138.19208913210053
Iteration: 15, Func. Count: 157, Neg. LLF: 138.14508163264767
Iteration: 16, Func. Count: 167, Neg. LLF: 138.03427742690408
Iteration: 17, Func. Count: 177, Neg. LLF: 138.00983945503705
Iteration: 18, Func. Count: 187, Neg. LLF: 138.0084348287874
Iteration: 19, Func. Count: 197, Neg. LLF: 138.0081877525058
Iteration: 20, Func. Count: 207, Neg. LLF: 138.0081436335543
Iteration: 21, Func. Count: 217, Neg. LLF: 138.00814226270523
Iteration: 22, Func. Count: 226, Neg. LLF: 138.00814231809343
Optimization terminated successfully (Exit mode 0)
Current function value: 138.00814226270523
Iterations: 22
Function evaluations: 226
Gradient evaluations: 22
Iteration: 1, Func. Count: 12, Neg. LLF: 141.81148648094432
Iteration: 2, Func. Count: 24, Neg. LLF: 144.17598259625908
Iteration: 3, Func. Count: 36, Neg. LLF: 140.26603202955218
Iteration: 4, Func. Count: 48, Neg. LLF: 139.61659303918222
Iteration: 5, Func. Count: 60, Neg. LLF: 139.0488841345978
Iteration: 6, Func. Count: 72, Neg. LLF: 138.79676989485617
Iteration: 7, Func. Count: 83, Neg. LLF: 138.72420672611105
Iteration: 8, Func. Count: 94, Neg. LLF: 138.65768419145346
Iteration: 9, Func. Count: 105, Neg. LLF: 139.6247138104848
Iteration: 10, Func. Count: 117, Neg. LLF: 138.50987885758113
Iteration: 11, Func. Count: 128, Neg. LLF: 138.4225467164437
Iteration: 12, Func. Count: 139, Neg. LLF: 138.38114772489396
Iteration: 13, Func. Count: 150, Neg. LLF: 138.37659943190036
Iteration: 14, Func. Count: 161, Neg. LLF: 138.35525381434636
Iteration: 15, Func. Count: 172, Neg. LLF: 138.30411867883652
Iteration: 16, Func. Count: 183, Neg. LLF: 138.2182489980683
Iteration: 17, Func. Count: 194, Neg. LLF: 138.20642502128504
Iteration: 18, Func. Count: 205, Neg. LLF: 138.17909109552212
Iteration: 19, Func. Count: 216, Neg. LLF: 138.05917399749273
Iteration: 20, Func. Count: 227, Neg. LLF: 138.01766510950102
Iteration: 21, Func. Count: 238, Neg. LLF: 138.01018826945023
Iteration: 22, Func. Count: 249, Neg. LLF: 138.00838826387744
Iteration: 23, Func. Count: 260, Neg. LLF: 138.0081530619708
Iteration: 24, Func. Count: 271, Neg. LLF: 138.00814240907692
Iteration: 25, Func. Count: 281, Neg. LLF: 138.00814251068937
Optimization terminated successfully (Exit mode 0)
Current function value: 138.00814240907692
Iterations: 25
Function evaluations: 281
Gradient evaluations: 25
Iteration: 1, Func. Count: 9, Neg. LLF: 141.30203851087987
Iteration: 2, Func. Count: 18, Neg. LLF: 142.5103396184323
Iteration: 3, Func. Count: 28, Neg. LLF: 139.9745686280782
Iteration: 4, Func. Count: 38, Neg. LLF: 142.16522417212917
Iteration: 5, Func. Count: 47, Neg. LLF: 139.7971019496893
Iteration: 6, Func. Count: 56, Neg. LLF: 139.22960127975182
Iteration: 7, Func. Count: 64, Neg. LLF: 139.16508981244854
Iteration: 8, Func. Count: 72, Neg. LLF: 139.13409903272097
Iteration: 9, Func. Count: 80, Neg. LLF: 139.11517254072623
Iteration: 10, Func. Count: 88, Neg. LLF: 139.1140722168075
Iteration: 11, Func. Count: 96, Neg. LLF: 139.1139878747884
Iteration: 12, Func. Count: 104, Neg. LLF: 139.1139862191129
Iteration: 13, Func. Count: 111, Neg. LLF: 139.11398622709692
Optimization terminated successfully (Exit mode 0)
Current function value: 139.1139862191129
Iterations: 13
Function evaluations: 111
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 160.5469815970479
Iteration: 2, Func. Count: 20, Neg. LLF: 142.82725622736987
Iteration: 3, Func. Count: 30, Neg. LLF: 138.66041128992785
Iteration: 4, Func. Count: 39, Neg. LLF: 142.27467299525543
Iteration: 5, Func. Count: 49, Neg. LLF: 138.3980188428227
Iteration: 6, Func. Count: 58, Neg. LLF: 138.11168136169627
Iteration: 7, Func. Count: 67, Neg. LLF: 138.04255956592678
Iteration: 8, Func. Count: 76, Neg. LLF: 138.02096397677823
Iteration: 9, Func. Count: 85, Neg. LLF: 138.00832173622285
Iteration: 10, Func. Count: 94, Neg. LLF: 138.0081624994898
Iteration: 11, Func. Count: 103, Neg. LLF: 138.00814641276605
Iteration: 12, Func. Count: 112, Neg. LLF: 138.00814225718872
Iteration: 13, Func. Count: 120, Neg. LLF: 138.00814225720262
Optimization terminated successfully (Exit mode 0)
Current function value: 138.00814225718872
Iterations: 13
Function evaluations: 120
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 160.71944178488565
Iteration: 2, Func. Count: 22, Neg. LLF: 142.01539538991497
Iteration: 3, Func. Count: 33, Neg. LLF: 139.8178301618076
Iteration: 4, Func. Count: 44, Neg. LLF: 138.59230286589576
Iteration: 5, Func. Count: 55, Neg. LLF: 138.50045240982524
Iteration: 6, Func. Count: 65, Neg. LLF: 150.60521258139948
Iteration: 7, Func. Count: 76, Neg. LLF: 138.32748287366522
Iteration: 8, Func. Count: 86, Neg. LLF: 138.35356174501842
Iteration: 9, Func. Count: 97, Neg. LLF: 138.16003527230905
Iteration: 10, Func. Count: 107, Neg. LLF: 138.07337123140255
Iteration: 11, Func. Count: 117, Neg. LLF: 138.00889438263786
Iteration: 12, Func. Count: 127, Neg. LLF: 138.00820561990582
Iteration: 13, Func. Count: 137, Neg. LLF: 138.00814405287565
Iteration: 14, Func. Count: 147, Neg. LLF: 138.00814310013052
Optimization terminated successfully (Exit mode 0)
Current function value: 138.00814310013052
Iterations: 14
Function evaluations: 147
Gradient evaluations: 14
Iteration: 1, Func. Count: 12, Neg. LLF: 141.63469571201796
Iteration: 2, Func. Count: 24, Neg. LLF: 145.98458146053196
Iteration: 3, Func. Count: 36, Neg. LLF: 140.19819975277332
Iteration: 4, Func. Count: 48, Neg. LLF: 139.11204991757302
Iteration: 5, Func. Count: 60, Neg. LLF: 138.9524682987498
Iteration: 6, Func. Count: 72, Neg. LLF: 138.75703578595875
Iteration: 7, Func. Count: 83, Neg. LLF: 138.66717318182546
Iteration: 8, Func. Count: 94, Neg. LLF: 138.57840901487018
Iteration: 9, Func. Count: 105, Neg. LLF: 138.41423757586682
Iteration: 10, Func. Count: 116, Neg. LLF: 140.17074104782725
Iteration: 11, Func. Count: 128, Neg. LLF: 138.31188652187961
Iteration: 12, Func. Count: 139, Neg. LLF: 138.368206891441
Iteration: 13, Func. Count: 151, Neg. LLF: 138.2149808010376
Iteration: 14, Func. Count: 162, Neg. LLF: 138.18906463083283
Iteration: 15, Func. Count: 173, Neg. LLF: 138.1068210710419
Iteration: 16, Func. Count: 184, Neg. LLF: 138.02828601252565
Iteration: 17, Func. Count: 195, Neg. LLF: 138.0154141368912
Iteration: 18, Func. Count: 206, Neg. LLF: 138.00916528760195
Iteration: 19, Func. Count: 217, Neg. LLF: 138.00817167003237
Iteration: 20, Func. Count: 228, Neg. LLF: 138.0081433622191
Iteration: 21, Func. Count: 239, Neg. LLF: 138.00814224018455
Iteration: 22, Func. Count: 249, Neg. LLF: 138.00814229554092
Optimization terminated successfully (Exit mode 0)
Current function value: 138.00814224018455
Iterations: 22
Function evaluations: 249
Gradient evaluations: 22
Iteration: 1, Func. Count: 13, Neg. LLF: 141.80446777723986
Iteration: 2, Func. Count: 26, Neg. LLF: 144.015405610177
Iteration: 3, Func. Count: 39, Neg. LLF: 140.27409179165218
Iteration: 4, Func. Count: 52, Neg. LLF: 139.6369442219947
Iteration: 5, Func. Count: 65, Neg. LLF: 139.0521232739514
Iteration: 6, Func. Count: 78, Neg. LLF: 138.79996479408553
Iteration: 7, Func. Count: 90, Neg. LLF: 138.7268210017734
Iteration: 8, Func. Count: 102, Neg. LLF: 138.67636854110398
Iteration: 9, Func. Count: 114, Neg. LLF: 139.32428763499738
Iteration: 10, Func. Count: 127, Neg. LLF: 138.5228545107602
Iteration: 11, Func. Count: 139, Neg. LLF: 138.42998922220772
Iteration: 12, Func. Count: 151, Neg. LLF: 138.38190895100368
Iteration: 13, Func. Count: 163, Neg. LLF: 138.3792539340614
Iteration: 14, Func. Count: 176, Neg. LLF: 138.3552707092435
Iteration: 15, Func. Count: 188, Neg. LLF: 138.29628903943697
Iteration: 16, Func. Count: 200, Neg. LLF: 138.2868260328515
Iteration: 17, Func. Count: 212, Neg. LLF: 138.26307238428464
Iteration: 18, Func. Count: 224, Neg. LLF: 138.17924962274105
Iteration: 19, Func. Count: 236, Neg. LLF: 138.031566274307
Iteration: 20, Func. Count: 248, Neg. LLF: 138.0128808741537
Iteration: 21, Func. Count: 260, Neg. LLF: 138.0105054148494
Iteration: 22, Func. Count: 272, Neg. LLF: 138.00894593208525
Iteration: 23, Func. Count: 284, Neg. LLF: 138.00818635248817
Iteration: 24, Func. Count: 296, Neg. LLF: 138.00814428826345
Iteration: 25, Func. Count: 308, Neg. LLF: 138.00814237431265
Iteration: 26, Func. Count: 319, Neg. LLF: 138.00814247583756
Optimization terminated successfully (Exit mode 0)
Current function value: 138.00814237431265
Iterations: 26
Function evaluations: 319
Gradient evaluations: 26
Iteration: 1, Func. Count: 6, Neg. LLF: 141.69018251029132
Iteration: 2, Func. Count: 12, Neg. LLF: 141.95266331952752
Iteration: 3, Func. Count: 19, Neg. LLF: 139.56398488104892
Iteration: 4, Func. Count: 24, Neg. LLF: 139.24781780128376
Iteration: 5, Func. Count: 29, Neg. LLF: 139.1876064771448
Iteration: 6, Func. Count: 34, Neg. LLF: 139.17983987204582
Iteration: 7, Func. Count: 39, Neg. LLF: 139.16847900696553
Iteration: 8, Func. Count: 44, Neg. LLF: 139.16616706028415
Iteration: 9, Func. Count: 49, Neg. LLF: 139.16512539413242
Iteration: 10, Func. Count: 54, Neg. LLF: 139.16498322062134
Iteration: 11, Func. Count: 59, Neg. LLF: 139.1649627277326
Iteration: 12, Func. Count: 63, Neg. LLF: 139.1649627277323
Optimization terminated successfully (Exit mode 0)
Current function value: 139.1649627277326
Iterations: 12
Function evaluations: 63
Gradient evaluations: 12
Iteration: 1, Func. Count: 7, Neg. LLF: 147.35141746041808
Iteration: 2, Func. Count: 14, Neg. LLF: 148.72684851538375
Iteration: 3, Func. Count: 22, Neg. LLF: 138.9213471995271
Iteration: 4, Func. Count: 29, Neg. LLF: 138.90796846009033
Iteration: 5, Func. Count: 35, Neg. LLF: 138.90301904033925
Iteration: 6, Func. Count: 41, Neg. LLF: 138.90070535514144
Iteration: 7, Func. Count: 47, Neg. LLF: 138.89599811796995
Iteration: 8, Func. Count: 53, Neg. LLF: 138.89420884503625
Iteration: 9, Func. Count: 59, Neg. LLF: 138.89406137470974
Iteration: 10, Func. Count: 65, Neg. LLF: 138.89405772205757
Iteration: 11, Func. Count: 70, Neg. LLF: 138.8940577220548
Optimization terminated successfully (Exit mode 0)
Current function value: 138.89405772205757
Iterations: 11
Function evaluations: 70
Gradient evaluations: 11
Iteration: 1, Func. Count: 8, Neg. LLF: 147.20193804009597
Iteration: 2, Func. Count: 16, Neg. LLF: 147.75262002949313
Iteration: 3, Func. Count: 24, Neg. LLF: 138.85969750003116
Iteration: 4, Func. Count: 31, Neg. LLF: 138.84510804244064
Iteration: 5, Func. Count: 38, Neg. LLF: 138.83392713635868
Iteration: 6, Func. Count: 45, Neg. LLF: 138.86632094981647
Iteration: 7, Func. Count: 53, Neg. LLF: 138.82800533822447
Iteration: 8, Func. Count: 60, Neg. LLF: 138.82283249866984
Iteration: 9, Func. Count: 67, Neg. LLF: 138.8176219533391
Iteration: 10, Func. Count: 74, Neg. LLF: 138.81646219022326
Iteration: 11, Func. Count: 81, Neg. LLF: 138.8164245729805
Iteration: 12, Func. Count: 87, Neg. LLF: 138.8164245729499
Optimization terminated successfully (Exit mode 0)
Current function value: 138.8164245729805
Iterations: 12
Function evaluations: 87
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 142.00747496740723
Iteration: 2, Func. Count: 18, Neg. LLF: 140.15790244766248
Iteration: 3, Func. Count: 27, Neg. LLF: 144.05309436155636
Iteration: 4, Func. Count: 36, Neg. LLF: 139.0010685567351
Iteration: 5, Func. Count: 45, Neg. LLF: 138.88006355109937
Iteration: 6, Func. Count: 54, Neg. LLF: 138.98231478487224
Iteration: 7, Func. Count: 63, Neg. LLF: 138.8769275090168
Iteration: 8, Func. Count: 72, Neg. LLF: 138.82582136538994
Iteration: 9, Func. Count: 80, Neg. LLF: 138.8206574998009
Iteration: 10, Func. Count: 88, Neg. LLF: 138.80731661562083
Iteration: 11, Func. Count: 96, Neg. LLF: 138.8066630598164
Iteration: 12, Func. Count: 104, Neg. LLF: 138.8065995291391
Iteration: 13, Func. Count: 112, Neg. LLF: 138.80659818494593
Iteration: 14, Func. Count: 119, Neg. LLF: 138.8065981849799
Optimization terminated successfully (Exit mode 0)
Current function value: 138.80659818494593
Iterations: 14
Function evaluations: 119
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 142.02281120440955
Iteration: 2, Func. Count: 20, Neg. LLF: 140.12557556628562
Iteration: 3, Func. Count: 30, Neg. LLF: 144.63821936977604
Iteration: 4, Func. Count: 40, Neg. LLF: 139.07796205143637
Iteration: 5, Func. Count: 50, Neg. LLF: 138.98140960078806
Iteration: 6, Func. Count: 60, Neg. LLF: 139.01383100869631
Iteration: 7, Func. Count: 70, Neg. LLF: 138.87016600007385
Iteration: 8, Func. Count: 80, Neg. LLF: 138.85918223138754
Iteration: 9, Func. Count: 90, Neg. LLF: 138.8258071564539
Iteration: 10, Func. Count: 99, Neg. LLF: 138.82229273996182
Iteration: 11, Func. Count: 108, Neg. LLF: 138.81006234374541
Iteration: 12, Func. Count: 117, Neg. LLF: 138.80705554022168
Iteration: 13, Func. Count: 126, Neg. LLF: 138.8066095466738
Iteration: 14, Func. Count: 135, Neg. LLF: 138.80659817198733
Iteration: 15, Func. Count: 143, Neg. LLF: 138.8065982226489
Optimization terminated successfully (Exit mode 0)
Current function value: 138.80659817198733
Iterations: 15
Function evaluations: 143
Gradient evaluations: 15
Iteration: 1, Func. Count: 7, Neg. LLF: 141.42576707870032
Iteration: 2, Func. Count: 14, Neg. LLF: 141.0795492067621
Iteration: 3, Func. Count: 22, Neg. LLF: 140.0531898045169
Iteration: 4, Func. Count: 29, Neg. LLF: 139.32673671309294
Iteration: 5, Func. Count: 35, Neg. LLF: 139.90874665608993
Iteration: 6, Func. Count: 42, Neg. LLF: 139.2649986082367
Iteration: 7, Func. Count: 49, Neg. LLF: 139.1357203923293
Iteration: 8, Func. Count: 55, Neg. LLF: 139.1092927838581
Iteration: 9, Func. Count: 61, Neg. LLF: 139.10532208384458
Iteration: 10, Func. Count: 67, Neg. LLF: 139.10513371082493
Iteration: 11, Func. Count: 73, Neg. LLF: 139.10509210454572
Iteration: 12, Func. Count: 79, Neg. LLF: 139.1050904611455
Iteration: 13, Func. Count: 84, Neg. LLF: 139.1050904611384
Optimization terminated successfully (Exit mode 0)
Current function value: 139.1050904611455
Iterations: 13
Function evaluations: 84
Gradient evaluations: 13
Iteration: 1, Func. Count: 8, Neg. LLF: 144.7893426349063
Iteration: 2, Func. Count: 16, Neg. LLF: 161.39602018689305
Iteration: 3, Func. Count: 25, Neg. LLF: 139.0840977791789
Iteration: 4, Func. Count: 33, Neg. LLF: 138.56847760351206
Iteration: 5, Func. Count: 40, Neg. LLF: 138.63884218612463
Iteration: 6, Func. Count: 48, Neg. LLF: 138.22048500603856
Iteration: 7, Func. Count: 55, Neg. LLF: 138.43268241914893
Iteration: 8, Func. Count: 63, Neg. LLF: 138.02323892191117
Iteration: 9, Func. Count: 70, Neg. LLF: 138.00906715202942
Iteration: 10, Func. Count: 77, Neg. LLF: 138.0081945824213
Iteration: 11, Func. Count: 84, Neg. LLF: 138.00814348307517
Iteration: 12, Func. Count: 91, Neg. LLF: 138.00814224372724
Iteration: 13, Func. Count: 97, Neg. LLF: 138.00814224373164
Optimization terminated successfully (Exit mode 0)
Current function value: 138.00814224372724
Iterations: 13
Function evaluations: 97
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 142.08545744386626
Iteration: 2, Func. Count: 18, Neg. LLF: 145.835867320278
Iteration: 3, Func. Count: 27, Neg. LLF: 140.16961750116852
Iteration: 4, Func. Count: 36, Neg. LLF: 139.42486848163887
Iteration: 5, Func. Count: 45, Neg. LLF: 138.8958567151686
Iteration: 6, Func. Count: 54, Neg. LLF: 139.00341114950007
Iteration: 7, Func. Count: 63, Neg. LLF: 138.85197543074597
Iteration: 8, Func. Count: 71, Neg. LLF: 138.8351382268327
Iteration: 9, Func. Count: 79, Neg. LLF: 138.76784612869724
Iteration: 10, Func. Count: 87, Neg. LLF: 139.0547650707452
Iteration: 11, Func. Count: 96, Neg. LLF: 139.3238283749817
Iteration: 12, Func. Count: 105, Neg. LLF: 139.12859278141013
Iteration: 13, Func. Count: 114, Neg. LLF: 138.76165439299768
Iteration: 14, Func. Count: 123, Neg. LLF: 139.98700214133092
Iteration: 15, Func. Count: 132, Neg. LLF: 138.45482294795607
Iteration: 16, Func. Count: 140, Neg. LLF: 138.36274897439952
Iteration: 17, Func. Count: 148, Neg. LLF: 138.17642848578117
Iteration: 18, Func. Count: 156, Neg. LLF: 138.10426108440777
Iteration: 19, Func. Count: 164, Neg. LLF: 138.0278607056957
Iteration: 20, Func. Count: 172, Neg. LLF: 138.01502717919053
Iteration: 21, Func. Count: 180, Neg. LLF: 138.0089539005885
Iteration: 22, Func. Count: 188, Neg. LLF: 138.00819834872595
Iteration: 23, Func. Count: 196, Neg. LLF: 138.00814407001803
Iteration: 24, Func. Count: 204, Neg. LLF: 138.00814228850086
Iteration: 25, Func. Count: 211, Neg. LLF: 138.00814230572377
Optimization terminated successfully (Exit mode 0)
Current function value: 138.00814228850086
Iterations: 25
Function evaluations: 211
Gradient evaluations: 25
Iteration: 1, Func. Count: 10, Neg. LLF: 140.86143431618774
Iteration: 2, Func. Count: 20, Neg. LLF: 145.84028977761292
Iteration: 3, Func. Count: 30, Neg. LLF: 140.782485215427
Iteration: 4, Func. Count: 40, Neg. LLF: 140.33940998932934
Iteration: 5, Func. Count: 50, Neg. LLF: 139.35119029392948
Iteration: 6, Func. Count: 60, Neg. LLF: 138.8865571463355
Iteration: 7, Func. Count: 70, Neg. LLF: 138.74803075248892
Iteration: 8, Func. Count: 79, Neg. LLF: 138.70521053299936
Iteration: 9, Func. Count: 88, Neg. LLF: 138.61162081569478
Iteration: 10, Func. Count: 97, Neg. LLF: 138.54826303016605
Iteration: 11, Func. Count: 106, Neg. LLF: 138.48176923141284
Iteration: 12, Func. Count: 115, Neg. LLF: 138.57471800234967
Iteration: 13, Func. Count: 125, Neg. LLF: 138.43084870069146
Iteration: 14, Func. Count: 135, Neg. LLF: 138.37510249785956
Iteration: 15, Func. Count: 144, Neg. LLF: 138.37167933778878
Iteration: 16, Func. Count: 153, Neg. LLF: 138.24987001132567
Iteration: 17, Func. Count: 162, Neg. LLF: 138.20592159646682
Iteration: 18, Func. Count: 171, Neg. LLF: 138.16413663062903
Iteration: 19, Func. Count: 180, Neg. LLF: 138.01489754610333
Iteration: 20, Func. Count: 189, Neg. LLF: 138.0101111571238
Iteration: 21, Func. Count: 198, Neg. LLF: 138.00817088782452
Iteration: 22, Func. Count: 207, Neg. LLF: 138.0081737317782
Iteration: 23, Func. Count: 217, Neg. LLF: 138.00814248494984
Iteration: 24, Func. Count: 225, Neg. LLF: 138.00814254016134
Optimization terminated successfully (Exit mode 0)
Current function value: 138.00814248494984
Iterations: 24
Function evaluations: 225
Gradient evaluations: 24
Iteration: 1, Func. Count: 11, Neg. LLF: 141.9227457789671
Iteration: 2, Func. Count: 22, Neg. LLF: 145.43178192455503
Iteration: 3, Func. Count: 33, Neg. LLF: 140.2661592766212
Iteration: 4, Func. Count: 44, Neg. LLF: 139.38796701256294
Iteration: 5, Func. Count: 55, Neg. LLF: 138.92197478953113
Iteration: 6, Func. Count: 66, Neg. LLF: 139.09212944303187
Iteration: 7, Func. Count: 77, Neg. LLF: 138.76615646238915
Iteration: 8, Func. Count: 87, Neg. LLF: 138.83921078380985
Iteration: 9, Func. Count: 98, Neg. LLF: 138.6832721793356
Iteration: 10, Func. Count: 108, Neg. LLF: 138.57867034707064
Iteration: 11, Func. Count: 118, Neg. LLF: 139.78286219898683
Iteration: 12, Func. Count: 129, Neg. LLF: 138.63878907045557
Iteration: 13, Func. Count: 140, Neg. LLF: 138.39734548545968
Iteration: 14, Func. Count: 150, Neg. LLF: 138.3846023046352
Iteration: 15, Func. Count: 160, Neg. LLF: 138.37500008794518
Iteration: 16, Func. Count: 170, Neg. LLF: 138.3696535565012
Iteration: 17, Func. Count: 180, Neg. LLF: 138.21112507521414
Iteration: 18, Func. Count: 190, Neg. LLF: 138.20023259191703
Iteration: 19, Func. Count: 200, Neg. LLF: 138.16430003218983
Iteration: 20, Func. Count: 210, Neg. LLF: 138.08733921023182
Iteration: 21, Func. Count: 220, Neg. LLF: 138.02479780007636
Iteration: 22, Func. Count: 230, Neg. LLF: 138.01259073306394
Iteration: 23, Func. Count: 240, Neg. LLF: 138.00841159493189
Iteration: 24, Func. Count: 250, Neg. LLF: 138.00856670934758
Iteration: 25, Func. Count: 261, Neg. LLF: 138.00814303930426
Iteration: 26, Func. Count: 271, Neg. LLF: 138.0081422391678
Optimization terminated successfully (Exit mode 0)
Current function value: 138.0081422391678
Iterations: 26
Function evaluations: 271
Gradient evaluations: 26
Iteration: 1, Func. Count: 8, Neg. LLF: 145.963908260771
Iteration: 2, Func. Count: 17, Neg. LLF: 140.23751191030945
Iteration: 3, Func. Count: 25, Neg. LLF: 138.4448881735183
Iteration: 4, Func. Count: 32, Neg. LLF: 138.20097685069777
Iteration: 5, Func. Count: 39, Neg. LLF: 138.18342132172072
Iteration: 6, Func. Count: 46, Neg. LLF: 138.177830972691
Iteration: 7, Func. Count: 53, Neg. LLF: 138.177608786317
Iteration: 8, Func. Count: 60, Neg. LLF: 138.17742427373776
Iteration: 9, Func. Count: 67, Neg. LLF: 138.1773891426995
Iteration: 10, Func. Count: 74, Neg. LLF: 138.17738414726173
Iteration: 11, Func. Count: 81, Neg. LLF: 138.17738225002654
Iteration: 12, Func. Count: 88, Neg. LLF: 138.17738118151084
Iteration: 13, Func. Count: 94, Neg. LLF: 138.1773810608438
Optimization terminated successfully (Exit mode 0)
Current function value: 138.17738118151084
Iterations: 13
Function evaluations: 94
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 155.4642208825563
Iteration: 2, Func. Count: 18, Neg. LLF: 156.57152940694107
Iteration: 3, Func. Count: 27, Neg. LLF: 138.86176791822243
Iteration: 4, Func. Count: 36, Neg. LLF: 137.10431411871483
Iteration: 5, Func. Count: 44, Neg. LLF: 137.07319538358658
Iteration: 6, Func. Count: 52, Neg. LLF: 137.0648474546391
Iteration: 7, Func. Count: 60, Neg. LLF: 137.06376160438253
Iteration: 8, Func. Count: 68, Neg. LLF: 137.06367602614608
Iteration: 9, Func. Count: 76, Neg. LLF: 137.06360614942764
Iteration: 10, Func. Count: 84, Neg. LLF: 137.06359856876304
Iteration: 11, Func. Count: 92, Neg. LLF: 137.06359802454338
Optimization terminated successfully (Exit mode 0)
Current function value: 137.06359802454338
Iterations: 11
Function evaluations: 92
Gradient evaluations: 11
Iteration: 1, Func. Count: 10, Neg. LLF: 155.32590953578182
Iteration: 2, Func. Count: 20, Neg. LLF: 156.06893313341413
Iteration: 3, Func. Count: 30, Neg. LLF: 139.9718628147691
Iteration: 4, Func. Count: 40, Neg. LLF: 138.36886137251528
Iteration: 5, Func. Count: 50, Neg. LLF: 137.28591043179208
Iteration: 6, Func. Count: 59, Neg. LLF: 137.1400770790858
Iteration: 7, Func. Count: 68, Neg. LLF: 137.0888652023469
Iteration: 8, Func. Count: 77, Neg. LLF: 137.07187686584146
Iteration: 9, Func. Count: 86, Neg. LLF: 137.06653588277374
Iteration: 10, Func. Count: 95, Neg. LLF: 137.06500837394813
Iteration: 11, Func. Count: 104, Neg. LLF: 137.06369225681237
Iteration: 12, Func. Count: 113, Neg. LLF: 137.06360247314288
Iteration: 13, Func. Count: 122, Neg. LLF: 137.0635980706385
Iteration: 14, Func. Count: 130, Neg. LLF: 137.06359810040107
Optimization terminated successfully (Exit mode 0)
Current function value: 137.0635980706385
Iterations: 14
Function evaluations: 130
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 142.75842367122655
Iteration: 2, Func. Count: 22, Neg. LLF: 144.62474636016438
Iteration: 3, Func. Count: 33, Neg. LLF: 147.07015638135886
Iteration: 4, Func. Count: 44, Neg. LLF: 138.13628505913022
Iteration: 5, Func. Count: 54, Neg. LLF: 142.52766788665127
Iteration: 6, Func. Count: 65, Neg. LLF: 138.31070854178483
Iteration: 7, Func. Count: 76, Neg. LLF: 137.86253193854205
Iteration: 8, Func. Count: 87, Neg. LLF: 137.5978835269482
Iteration: 9, Func. Count: 97, Neg. LLF: 137.40408733790662
Iteration: 10, Func. Count: 107, Neg. LLF: 137.26422609915556
Iteration: 11, Func. Count: 117, Neg. LLF: 137.16307698681396
Iteration: 12, Func. Count: 127, Neg. LLF: 137.09683524540816
Iteration: 13, Func. Count: 137, Neg. LLF: 137.0716202430184
Iteration: 14, Func. Count: 147, Neg. LLF: 137.06453220937692
Iteration: 15, Func. Count: 157, Neg. LLF: 137.06371869493233
Iteration: 16, Func. Count: 167, Neg. LLF: 137.06360067737518
Iteration: 17, Func. Count: 177, Neg. LLF: 137.06359805168654
Iteration: 18, Func. Count: 186, Neg. LLF: 137.06359814300805
Optimization terminated successfully (Exit mode 0)
Current function value: 137.06359805168654
Iterations: 18
Function evaluations: 186
Gradient evaluations: 18
Iteration: 1, Func. Count: 12, Neg. LLF: 141.18659091009923
Iteration: 2, Func. Count: 24, Neg. LLF: 142.88770406328436
Iteration: 3, Func. Count: 36, Neg. LLF: 141.05773019782146
Iteration: 4, Func. Count: 48, Neg. LLF: 138.20140211285783
Iteration: 5, Func. Count: 59, Neg. LLF: 151.0466075156614
Iteration: 6, Func. Count: 71, Neg. LLF: 138.32682526468489
Iteration: 7, Func. Count: 83, Neg. LLF: 138.06364423732487
Iteration: 8, Func. Count: 95, Neg. LLF: 137.6549957387214
Iteration: 9, Func. Count: 106, Neg. LLF: 137.47362524348884
Iteration: 10, Func. Count: 117, Neg. LLF: 137.2956715535171
Iteration: 11, Func. Count: 128, Neg. LLF: 137.21106027906524
Iteration: 12, Func. Count: 139, Neg. LLF: 137.09151176857367
Iteration: 13, Func. Count: 150, Neg. LLF: 137.0700358248959
Iteration: 14, Func. Count: 161, Neg. LLF: 137.06390285376736
Iteration: 15, Func. Count: 172, Neg. LLF: 137.06367098178936
Iteration: 16, Func. Count: 183, Neg. LLF: 137.0636001591268
Iteration: 17, Func. Count: 194, Neg. LLF: 137.06359805903946
Iteration: 18, Func. Count: 204, Neg. LLF: 137.06359816431987
Optimization terminated successfully (Exit mode 0)
Current function value: 137.06359805903946
Iterations: 18
Function evaluations: 204
Gradient evaluations: 18
Iteration: 1, Func. Count: 9, Neg. LLF: 141.16767062266436
Iteration: 2, Func. Count: 18, Neg. LLF: 144.77005115954984
Iteration: 3, Func. Count: 27, Neg. LLF: 138.2337968998021
Iteration: 4, Func. Count: 35, Neg. LLF: 138.2119934333052
Iteration: 5, Func. Count: 43, Neg. LLF: 138.182675092089
Iteration: 6, Func. Count: 51, Neg. LLF: 138.18001496136554
Iteration: 7, Func. Count: 59, Neg. LLF: 138.17828371977072
Iteration: 8, Func. Count: 67, Neg. LLF: 138.17748713645256
Iteration: 9, Func. Count: 75, Neg. LLF: 138.17741339046654
Iteration: 10, Func. Count: 83, Neg. LLF: 138.17738482685175
Iteration: 11, Func. Count: 91, Neg. LLF: 138.17738122609083
Iteration: 12, Func. Count: 98, Neg. LLF: 138.1773813005017
Optimization terminated successfully (Exit mode 0)
Current function value: 138.17738122609083
Iterations: 12
Function evaluations: 98
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 155.4756112107419
Iteration: 2, Func. Count: 20, Neg. LLF: 156.62005891217376
Iteration: 3, Func. Count: 30, Neg. LLF: 138.93088727518523
Iteration: 4, Func. Count: 40, Neg. LLF: 137.10503229252842
Iteration: 5, Func. Count: 49, Neg. LLF: 137.07330555257155
Iteration: 6, Func. Count: 58, Neg. LLF: 137.06474533193506
Iteration: 7, Func. Count: 67, Neg. LLF: 137.0637571439594
Iteration: 8, Func. Count: 76, Neg. LLF: 137.06366815191086
Iteration: 9, Func. Count: 85, Neg. LLF: 137.06361266596477
Iteration: 10, Func. Count: 94, Neg. LLF: 137.0635992281701
Iteration: 11, Func. Count: 103, Neg. LLF: 137.0635980458066
Iteration: 12, Func. Count: 111, Neg. LLF: 137.0635980457706
Optimization terminated successfully (Exit mode 0)
Current function value: 137.0635980458066
Iterations: 12
Function evaluations: 111
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 155.34056276992493
Iteration: 2, Func. Count: 22, Neg. LLF: 156.09931707912963
Iteration: 3, Func. Count: 33, Neg. LLF: 140.01737185984192
Iteration: 4, Func. Count: 44, Neg. LLF: 138.3645540822231
Iteration: 5, Func. Count: 55, Neg. LLF: 137.28823084257834
Iteration: 6, Func. Count: 65, Neg. LLF: 137.1414928446337
Iteration: 7, Func. Count: 75, Neg. LLF: 137.08816376017734
Iteration: 8, Func. Count: 85, Neg. LLF: 137.0717586583714
Iteration: 9, Func. Count: 95, Neg. LLF: 137.06628763734523
Iteration: 10, Func. Count: 105, Neg. LLF: 137.06489900487566
Iteration: 11, Func. Count: 115, Neg. LLF: 137.06365806057718
Iteration: 12, Func. Count: 125, Neg. LLF: 137.06360044164367
Iteration: 13, Func. Count: 135, Neg. LLF: 137.0635980496113
Iteration: 14, Func. Count: 144, Neg. LLF: 137.06359807935752
Optimization terminated successfully (Exit mode 0)
Current function value: 137.0635980496113
Iterations: 14
Function evaluations: 144
Gradient evaluations: 14
Iteration: 1, Func. Count: 12, Neg. LLF: 142.61974730472784
Iteration: 2, Func. Count: 24, Neg. LLF: 144.63553703073734
Iteration: 3, Func. Count: 36, Neg. LLF: 147.17513258318166
Iteration: 4, Func. Count: 48, Neg. LLF: 138.13944533039873
Iteration: 5, Func. Count: 59, Neg. LLF: 142.87545674958082
Iteration: 6, Func. Count: 71, Neg. LLF: 138.37267467769576
Iteration: 7, Func. Count: 83, Neg. LLF: 137.88469659298863
Iteration: 8, Func. Count: 95, Neg. LLF: 137.60072570292587
Iteration: 9, Func. Count: 106, Neg. LLF: 137.40351878361503
Iteration: 10, Func. Count: 117, Neg. LLF: 137.25358364542737
Iteration: 11, Func. Count: 128, Neg. LLF: 137.16106995977663
Iteration: 12, Func. Count: 139, Neg. LLF: 137.0963796667548
Iteration: 13, Func. Count: 150, Neg. LLF: 137.07192898531255
Iteration: 14, Func. Count: 161, Neg. LLF: 137.06497123364184
Iteration: 15, Func. Count: 172, Neg. LLF: 137.06375487478348
Iteration: 16, Func. Count: 183, Neg. LLF: 137.06359906205586
Iteration: 17, Func. Count: 194, Neg. LLF: 137.06359803039
Iteration: 18, Func. Count: 204, Neg. LLF: 137.06359812173486
Optimization terminated successfully (Exit mode 0)
Current function value: 137.06359803039
Iterations: 18
Function evaluations: 204
Gradient evaluations: 18
Iteration: 1, Func. Count: 13, Neg. LLF: 141.1552595585089
Iteration: 2, Func. Count: 26, Neg. LLF: 141.91230659797722
Iteration: 3, Func. Count: 39, Neg. LLF: 141.18746219067833
Iteration: 4, Func. Count: 52, Neg. LLF: 138.20548610619022
Iteration: 5, Func. Count: 64, Neg. LLF: 150.2378852395572
Iteration: 6, Func. Count: 77, Neg. LLF: 138.3156093369799
Iteration: 7, Func. Count: 90, Neg. LLF: 138.06474295012922
Iteration: 8, Func. Count: 103, Neg. LLF: 137.65523579716543
Iteration: 9, Func. Count: 115, Neg. LLF: 137.47190524963742
Iteration: 10, Func. Count: 127, Neg. LLF: 137.2922286920758
Iteration: 11, Func. Count: 139, Neg. LLF: 137.21030951742307
Iteration: 12, Func. Count: 151, Neg. LLF: 137.0837183806861
Iteration: 13, Func. Count: 163, Neg. LLF: 137.06848054988433
Iteration: 14, Func. Count: 175, Neg. LLF: 137.06374051244734
Iteration: 15, Func. Count: 187, Neg. LLF: 137.0636692682227
Iteration: 16, Func. Count: 199, Neg. LLF: 137.06359974837366
Iteration: 17, Func. Count: 211, Neg. LLF: 137.06359814642505
Iteration: 18, Func. Count: 222, Neg. LLF: 137.0635982516684
Optimization terminated successfully (Exit mode 0)
Current function value: 137.06359814642505
Iterations: 18
Function evaluations: 222
Gradient evaluations: 18
Iteration: 1, Func. Count: 10, Neg. LLF: 140.68692676115052
Iteration: 2, Func. Count: 20, Neg. LLF: 141.2739618827773
Iteration: 3, Func. Count: 31, Neg. LLF: 138.39954310606043
Iteration: 4, Func. Count: 40, Neg. LLF: 139.08086547512806
Iteration: 5, Func. Count: 50, Neg. LLF: 138.985636033591
Iteration: 6, Func. Count: 60, Neg. LLF: 138.18858545981053
Iteration: 7, Func. Count: 69, Neg. LLF: 138.18508785514678
Iteration: 8, Func. Count: 78, Neg. LLF: 138.17999026515994
Iteration: 9, Func. Count: 87, Neg. LLF: 138.1777285783899
Iteration: 10, Func. Count: 96, Neg. LLF: 138.1773172206164
Iteration: 11, Func. Count: 105, Neg. LLF: 138.17727559997945
Iteration: 12, Func. Count: 114, Neg. LLF: 138.17726353813543
Iteration: 13, Func. Count: 123, Neg. LLF: 138.1772498149697
Iteration: 14, Func. Count: 132, Neg. LLF: 138.1772489027806
Optimization terminated successfully (Exit mode 0)
Current function value: 138.1772489027806
Iterations: 14
Function evaluations: 132
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 155.46844379483588
Iteration: 2, Func. Count: 22, Neg. LLF: 156.67105249775022
Iteration: 3, Func. Count: 33, Neg. LLF: 138.98168101429835
Iteration: 4, Func. Count: 44, Neg. LLF: 137.10488790542462
Iteration: 5, Func. Count: 54, Neg. LLF: 137.07331349076784
Iteration: 6, Func. Count: 64, Neg. LLF: 137.0647149431073
Iteration: 7, Func. Count: 74, Neg. LLF: 137.0637544468374
Iteration: 8, Func. Count: 84, Neg. LLF: 137.0636668987997
Iteration: 9, Func. Count: 94, Neg. LLF: 137.06361274468296
Iteration: 10, Func. Count: 104, Neg. LLF: 137.06359923673205
Iteration: 11, Func. Count: 114, Neg. LLF: 137.0635980470147
Iteration: 12, Func. Count: 123, Neg. LLF: 137.0635980469778
Optimization terminated successfully (Exit mode 0)
Current function value: 137.0635980470147
Iterations: 12
Function evaluations: 123
Gradient evaluations: 12
Iteration: 1, Func. Count: 12, Neg. LLF: 155.33389051717455
Iteration: 2, Func. Count: 24, Neg. LLF: 156.12475603463685
Iteration: 3, Func. Count: 36, Neg. LLF: 140.03451593899948
Iteration: 4, Func. Count: 48, Neg. LLF: 138.365589722792
Iteration: 5, Func. Count: 60, Neg. LLF: 137.28637793545744
Iteration: 6, Func. Count: 71, Neg. LLF: 137.14090813596238
Iteration: 7, Func. Count: 82, Neg. LLF: 137.0879159946549
Iteration: 8, Func. Count: 93, Neg. LLF: 137.07161800419993
Iteration: 9, Func. Count: 104, Neg. LLF: 137.06640662605108
Iteration: 10, Func. Count: 115, Neg. LLF: 137.06494531246273
Iteration: 11, Func. Count: 126, Neg. LLF: 137.0636728515359
Iteration: 12, Func. Count: 137, Neg. LLF: 137.0636011405007
Iteration: 13, Func. Count: 148, Neg. LLF: 137.0635980426738
Iteration: 14, Func. Count: 158, Neg. LLF: 137.0635980724202
Optimization terminated successfully (Exit mode 0)
Current function value: 137.0635980426738
Iterations: 14
Function evaluations: 158
Gradient evaluations: 14
Iteration: 1, Func. Count: 13, Neg. LLF: 142.56386432643995
Iteration: 2, Func. Count: 26, Neg. LLF: 144.64642608565887
Iteration: 3, Func. Count: 39, Neg. LLF: 147.18990399387008
Iteration: 4, Func. Count: 52, Neg. LLF: 138.1389960149029
Iteration: 5, Func. Count: 64, Neg. LLF: 142.89687807883575
Iteration: 6, Func. Count: 77, Neg. LLF: 138.3502258258405
Iteration: 7, Func. Count: 90, Neg. LLF: 137.89206702144403
Iteration: 8, Func. Count: 103, Neg. LLF: 137.60210999619372
Iteration: 9, Func. Count: 115, Neg. LLF: 137.4062145294882
Iteration: 10, Func. Count: 127, Neg. LLF: 137.25838126627036
Iteration: 11, Func. Count: 139, Neg. LLF: 137.1623956916814
Iteration: 12, Func. Count: 151, Neg. LLF: 137.0974682696019
Iteration: 13, Func. Count: 163, Neg. LLF: 137.072134100251
Iteration: 14, Func. Count: 175, Neg. LLF: 137.06496659041596
Iteration: 15, Func. Count: 187, Neg. LLF: 137.06376057604953
Iteration: 16, Func. Count: 199, Neg. LLF: 137.063599390104
Iteration: 17, Func. Count: 211, Neg. LLF: 137.0635980341452
Iteration: 18, Func. Count: 222, Neg. LLF: 137.06359812548683
Optimization terminated successfully (Exit mode 0)
Current function value: 137.0635980341452
Iterations: 18
Function evaluations: 222
Gradient evaluations: 18
Iteration: 1, Func. Count: 14, Neg. LLF: 141.13100155258977
Iteration: 2, Func. Count: 28, Neg. LLF: 141.75957284416438
Iteration: 3, Func. Count: 42, Neg. LLF: 141.17866009245412
Iteration: 4, Func. Count: 56, Neg. LLF: 138.20452064942762
Iteration: 5, Func. Count: 69, Neg. LLF: 150.20304684532312
Iteration: 6, Func. Count: 83, Neg. LLF: 138.31075445002367
Iteration: 7, Func. Count: 97, Neg. LLF: 138.0703314676926
Iteration: 8, Func. Count: 111, Neg. LLF: 137.6566172296413
Iteration: 9, Func. Count: 124, Neg. LLF: 137.47303529561773
Iteration: 10, Func. Count: 137, Neg. LLF: 137.29363247233928
Iteration: 11, Func. Count: 150, Neg. LLF: 137.2109815409476
Iteration: 12, Func. Count: 163, Neg. LLF: 137.08448550807609
Iteration: 13, Func. Count: 176, Neg. LLF: 137.06861397828504
Iteration: 14, Func. Count: 189, Neg. LLF: 137.06372799638245
Iteration: 15, Func. Count: 202, Neg. LLF: 137.06365279700537
Iteration: 16, Func. Count: 215, Neg. LLF: 137.06360011941328
Iteration: 17, Func. Count: 228, Neg. LLF: 137.06359816714854
Iteration: 18, Func. Count: 240, Neg. LLF: 137.06359827238742
Optimization terminated successfully (Exit mode 0)
Current function value: 137.06359816714854
Iterations: 18
Function evaluations: 240
Gradient evaluations: 18
Iteration: 1, Func. Count: 7, Neg. LLF: 141.8183422787914
Iteration: 2, Func. Count: 14, Neg. LLF: 141.53116222020634
Iteration: 3, Func. Count: 21, Neg. LLF: 138.79524398790144
Iteration: 4, Func. Count: 27, Neg. LLF: 140.2334712902007
Iteration: 5, Func. Count: 34, Neg. LLF: 138.7278515715832
Iteration: 6, Func. Count: 40, Neg. LLF: 138.67919674729063
Iteration: 7, Func. Count: 46, Neg. LLF: 138.68961605308306
Iteration: 8, Func. Count: 53, Neg. LLF: 138.67270599690673
Iteration: 9, Func. Count: 59, Neg. LLF: 138.67053183994824
Iteration: 10, Func. Count: 65, Neg. LLF: 138.66855060159006
Iteration: 11, Func. Count: 71, Neg. LLF: 138.66833781316143
Iteration: 12, Func. Count: 77, Neg. LLF: 138.66832963432032
Iteration: 13, Func. Count: 82, Neg. LLF: 138.6683296343303
Optimization terminated successfully (Exit mode 0)
Current function value: 138.66832963432032
Iterations: 13
Function evaluations: 82
Gradient evaluations: 13
Iteration: 1, Func. Count: 8, Neg. LLF: 147.17662525505241
Iteration: 2, Func. Count: 16, Neg. LLF: 148.66968581973333
Iteration: 3, Func. Count: 24, Neg. LLF: 140.5157917287801
Iteration: 4, Func. Count: 32, Neg. LLF: 138.70456278210344
Iteration: 5, Func. Count: 40, Neg. LLF: 138.64726475408042
Iteration: 6, Func. Count: 47, Neg. LLF: 138.63798856892186
Iteration: 7, Func. Count: 54, Neg. LLF: 138.6085209550902
Iteration: 8, Func. Count: 61, Neg. LLF: 138.60334383891072
Iteration: 9, Func. Count: 68, Neg. LLF: 138.60097265151666
Iteration: 10, Func. Count: 75, Neg. LLF: 138.60080029375436
Iteration: 11, Func. Count: 82, Neg. LLF: 138.6007881991635
Iteration: 12, Func. Count: 89, Neg. LLF: 138.60078759123016
Optimization terminated successfully (Exit mode 0)
Current function value: 138.60078759123016
Iterations: 12
Function evaluations: 89
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 142.00259581488405
Iteration: 2, Func. Count: 18, Neg. LLF: 140.2406515501094
Iteration: 3, Func. Count: 27, Neg. LLF: 147.38823968061098
Iteration: 4, Func. Count: 36, Neg. LLF: 138.77173749330794
Iteration: 5, Func. Count: 45, Neg. LLF: 141.2407004218936
Iteration: 6, Func. Count: 54, Neg. LLF: 138.6830068884237
Iteration: 7, Func. Count: 63, Neg. LLF: 138.6208931521828
Iteration: 8, Func. Count: 71, Neg. LLF: 138.61798129929295
Iteration: 9, Func. Count: 79, Neg. LLF: 138.60639811925478
Iteration: 10, Func. Count: 87, Neg. LLF: 138.60197549023
Iteration: 11, Func. Count: 95, Neg. LLF: 138.60086694844364
Iteration: 12, Func. Count: 103, Neg. LLF: 138.6007879091106
Iteration: 13, Func. Count: 110, Neg. LLF: 138.60078791395046
Optimization terminated successfully (Exit mode 0)
Current function value: 138.6007879091106
Iterations: 13
Function evaluations: 110
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 142.01560624318756
Iteration: 2, Func. Count: 20, Neg. LLF: 140.2006326382986
Iteration: 3, Func. Count: 30, Neg. LLF: 148.61968332493277
Iteration: 4, Func. Count: 40, Neg. LLF: 139.24780314544432
Iteration: 5, Func. Count: 50, Neg. LLF: 138.76262873997183
Iteration: 6, Func. Count: 60, Neg. LLF: 138.73333899432617
Iteration: 7, Func. Count: 70, Neg. LLF: 138.6327203703135
Iteration: 8, Func. Count: 80, Neg. LLF: 138.6083718052043
Iteration: 9, Func. Count: 89, Neg. LLF: 138.6072803380298
Iteration: 10, Func. Count: 98, Neg. LLF: 138.6068860256177
Iteration: 11, Func. Count: 107, Neg. LLF: 138.6063943001366
Iteration: 12, Func. Count: 116, Neg. LLF: 138.60626919603652
Iteration: 13, Func. Count: 125, Neg. LLF: 138.606248018865
Iteration: 14, Func. Count: 134, Neg. LLF: 138.60624738188915
Optimization terminated successfully (Exit mode 0)
Current function value: 138.60624738188915
Iterations: 14
Function evaluations: 134
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 142.00629226121978
Iteration: 2, Func. Count: 22, Neg. LLF: 140.1488175800765
Iteration: 3, Func. Count: 33, Neg. LLF: 150.32011646030125
Iteration: 4, Func. Count: 44, Neg. LLF: 139.4143987586883
Iteration: 5, Func. Count: 55, Neg. LLF: 138.77733202920714
Iteration: 6, Func. Count: 66, Neg. LLF: 138.6339352683862
Iteration: 7, Func. Count: 76, Neg. LLF: 139.26376062698176
Iteration: 8, Func. Count: 88, Neg. LLF: 138.61215793519088
Iteration: 9, Func. Count: 98, Neg. LLF: 138.60754862035913
Iteration: 10, Func. Count: 108, Neg. LLF: 138.6072962417685
Iteration: 11, Func. Count: 118, Neg. LLF: 138.60668879811993
Iteration: 12, Func. Count: 128, Neg. LLF: 138.60632670455698
Iteration: 13, Func. Count: 138, Neg. LLF: 138.60625342949814
Iteration: 14, Func. Count: 148, Neg. LLF: 138.60624746446064
Iteration: 15, Func. Count: 157, Neg. LLF: 138.60624750999784
Optimization terminated successfully (Exit mode 0)
Current function value: 138.60624746446064
Iterations: 15
Function evaluations: 157
Gradient evaluations: 15
Iteration: 1, Func. Count: 8, Neg. LLF: 142.68305663403422
Iteration: 2, Func. Count: 17, Neg. LLF: 141.77473292706796
Iteration: 3, Func. Count: 26, Neg. LLF: 140.72550042804247
Iteration: 4, Func. Count: 35, Neg. LLF: 138.8075934547219
Iteration: 5, Func. Count: 43, Neg. LLF: 138.7132378515692
Iteration: 6, Func. Count: 51, Neg. LLF: 138.6730242230331
Iteration: 7, Func. Count: 59, Neg. LLF: 138.67378735513108
Iteration: 8, Func. Count: 67, Neg. LLF: 138.66832230721909
Iteration: 9, Func. Count: 74, Neg. LLF: 138.667307406907
Iteration: 10, Func. Count: 81, Neg. LLF: 138.66653968936635
Iteration: 11, Func. Count: 88, Neg. LLF: 138.66623412617363
Iteration: 12, Func. Count: 95, Neg. LLF: 138.6661878331403
Iteration: 13, Func. Count: 102, Neg. LLF: 138.666184096405
Iteration: 14, Func. Count: 108, Neg. LLF: 138.6661840963981
Optimization terminated successfully (Exit mode 0)
Current function value: 138.666184096405
Iterations: 14
Function evaluations: 108
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 160.57024650254144
Iteration: 2, Func. Count: 18, Neg. LLF: 141.64530128128047
Iteration: 3, Func. Count: 27, Neg. LLF: 141.96013358355418
Iteration: 4, Func. Count: 36, Neg. LLF: 146.5909988152219
Iteration: 5, Func. Count: 46, Neg. LLF: 138.3142729090502
Iteration: 6, Func. Count: 54, Neg. LLF: 138.3644795346208
Iteration: 7, Func. Count: 63, Neg. LLF: 138.2731445835239
Iteration: 8, Func. Count: 71, Neg. LLF: 138.23891213669438
Iteration: 9, Func. Count: 79, Neg. LLF: 138.14757068998304
Iteration: 10, Func. Count: 87, Neg. LLF: 138.0989132111361
Iteration: 11, Func. Count: 95, Neg. LLF: 138.00947873585145
Iteration: 12, Func. Count: 103, Neg. LLF: 138.00980567917233
Iteration: 13, Func. Count: 112, Neg. LLF: 138.0081485575684
Iteration: 14, Func. Count: 120, Neg. LLF: 138.0081434417602
Iteration: 15, Func. Count: 127, Neg. LLF: 138.00814344179355
Optimization terminated successfully (Exit mode 0)
Current function value: 138.0081434417602
Iterations: 15
Function evaluations: 127
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 141.43315171901767
Iteration: 2, Func. Count: 20, Neg. LLF: 145.99628524953852
Iteration: 3, Func. Count: 30, Neg. LLF: 142.48067555893928
Iteration: 4, Func. Count: 40, Neg. LLF: 139.5851522964105
Iteration: 5, Func. Count: 50, Neg. LLF: 139.1281045356335
Iteration: 6, Func. Count: 60, Neg. LLF: 138.71719220385063
Iteration: 7, Func. Count: 70, Neg. LLF: 138.585482391562
Iteration: 8, Func. Count: 79, Neg. LLF: 138.56068448374847
Iteration: 9, Func. Count: 88, Neg. LLF: 138.5277583736134
Iteration: 10, Func. Count: 97, Neg. LLF: 138.421000190326
Iteration: 11, Func. Count: 106, Neg. LLF: 138.32761336106532
Iteration: 12, Func. Count: 115, Neg. LLF: 138.2136094663453
Iteration: 13, Func. Count: 124, Neg. LLF: 138.22865209457834
Iteration: 14, Func. Count: 134, Neg. LLF: 138.15317612626458
Iteration: 15, Func. Count: 143, Neg. LLF: 138.04391623664554
Iteration: 16, Func. Count: 152, Neg. LLF: 138.02098087406458
Iteration: 17, Func. Count: 161, Neg. LLF: 138.0175897319641
Iteration: 18, Func. Count: 171, Neg. LLF: 138.00814727935227
Iteration: 19, Func. Count: 180, Neg. LLF: 138.00814304991482
Iteration: 20, Func. Count: 189, Neg. LLF: 138.00814224358567
Optimization terminated successfully (Exit mode 0)
Current function value: 138.00814224358567
Iterations: 20
Function evaluations: 189
Gradient evaluations: 20
Iteration: 1, Func. Count: 11, Neg. LLF: 141.97447250243627
Iteration: 2, Func. Count: 23, Neg. LLF: 145.75781664915658
Iteration: 3, Func. Count: 34, Neg. LLF: 140.900527942002
Iteration: 4, Func. Count: 45, Neg. LLF: 138.827011236062
Iteration: 5, Func. Count: 56, Neg. LLF: 138.49279282059427
Iteration: 6, Func. Count: 66, Neg. LLF: 138.50718158999808
Iteration: 7, Func. Count: 77, Neg. LLF: 138.48034768361626
Iteration: 8, Func. Count: 88, Neg. LLF: 138.48515050921117
Iteration: 9, Func. Count: 99, Neg. LLF: 138.5540141789871
Iteration: 10, Func. Count: 110, Neg. LLF: 138.51378335858502
Iteration: 11, Func. Count: 121, Neg. LLF: 138.34148658688048
Iteration: 12, Func. Count: 131, Neg. LLF: 138.3399829903244
Iteration: 13, Func. Count: 141, Neg. LLF: 138.3395606448685
Iteration: 14, Func. Count: 151, Neg. LLF: 138.33934780769766
Iteration: 15, Func. Count: 161, Neg. LLF: 138.3392769620704
Iteration: 16, Func. Count: 171, Neg. LLF: 138.3392679821864
Iteration: 17, Func. Count: 181, Neg. LLF: 138.3392628854371
Iteration: 18, Func. Count: 191, Neg. LLF: 138.33926030223168
Iteration: 19, Func. Count: 201, Neg. LLF: 138.33925971576463
Optimization terminated successfully (Exit mode 0)
Current function value: 138.33925971576463
Iterations: 19
Function evaluations: 201
Gradient evaluations: 19
Iteration: 1, Func. Count: 12, Neg. LLF: 141.42876452419802
Iteration: 2, Func. Count: 24, Neg. LLF: 143.8397641752568
Iteration: 3, Func. Count: 36, Neg. LLF: 143.0611491190649
Iteration: 4, Func. Count: 48, Neg. LLF: 141.1292139926177
Iteration: 5, Func. Count: 60, Neg. LLF: 139.3599764044801
Iteration: 6, Func. Count: 72, Neg. LLF: 139.8028797053317
Iteration: 7, Func. Count: 84, Neg. LLF: 138.52243811934258
Iteration: 8, Func. Count: 95, Neg. LLF: 138.5038552613445
Iteration: 9, Func. Count: 106, Neg. LLF: 138.45905600099144
Iteration: 10, Func. Count: 117, Neg. LLF: 138.42194847511868
Iteration: 11, Func. Count: 128, Neg. LLF: 138.38695431985062
Iteration: 12, Func. Count: 139, Neg. LLF: 139.01278900555263
Iteration: 13, Func. Count: 151, Neg. LLF: 138.34479540004892
Iteration: 14, Func. Count: 162, Neg. LLF: 138.34077827516862
Iteration: 15, Func. Count: 173, Neg. LLF: 138.33953972143632
Iteration: 16, Func. Count: 184, Neg. LLF: 138.33934423742514
Iteration: 17, Func. Count: 195, Neg. LLF: 138.3392798674048
Iteration: 18, Func. Count: 206, Neg. LLF: 138.3392612019054
Iteration: 19, Func. Count: 217, Neg. LLF: 138.33925975868226
Iteration: 20, Func. Count: 227, Neg. LLF: 138.33925982316885
Optimization terminated successfully (Exit mode 0)
Current function value: 138.33925975868226
Iterations: 20
Function evaluations: 227
Gradient evaluations: 20
Iteration: 1, Func. Count: 9, Neg. LLF: 146.10703945528684
Iteration: 2, Func. Count: 19, Neg. LLF: 141.41780147029857
Iteration: 3, Func. Count: 29, Neg. LLF: 142.46983600776446
Iteration: 4, Func. Count: 39, Neg. LLF: 138.43578376045613
Iteration: 5, Func. Count: 47, Neg. LLF: 138.37735631349003
Iteration: 6, Func. Count: 55, Neg. LLF: 138.27672888846683
Iteration: 7, Func. Count: 63, Neg. LLF: 138.17943612751284
Iteration: 8, Func. Count: 71, Neg. LLF: 138.14202912236806
Iteration: 9, Func. Count: 79, Neg. LLF: 138.13377942543698
Iteration: 10, Func. Count: 87, Neg. LLF: 138.12533038305185
Iteration: 11, Func. Count: 95, Neg. LLF: 138.12228773967763
Iteration: 12, Func. Count: 103, Neg. LLF: 138.12147920541122
Iteration: 13, Func. Count: 111, Neg. LLF: 138.12140268152973
Iteration: 14, Func. Count: 119, Neg. LLF: 138.1213976550142
Iteration: 15, Func. Count: 126, Neg. LLF: 138.121397551076
Optimization terminated successfully (Exit mode 0)
Current function value: 138.1213976550142
Iterations: 15
Function evaluations: 126
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 155.29799098480316
Iteration: 2, Func. Count: 20, Neg. LLF: 156.60228483752525
Iteration: 3, Func. Count: 30, Neg. LLF: 144.90393619852594
Iteration: 4, Func. Count: 40, Neg. LLF: 137.1447063427879
Iteration: 5, Func. Count: 49, Neg. LLF: 137.0942726099995
Iteration: 6, Func. Count: 58, Neg. LLF: 137.06833377603667
Iteration: 7, Func. Count: 67, Neg. LLF: 137.06364985606442
Iteration: 8, Func. Count: 76, Neg. LLF: 137.06360211958432
Iteration: 9, Func. Count: 85, Neg. LLF: 137.06359857146663
Iteration: 10, Func. Count: 93, Neg. LLF: 137.06359857155704
Optimization terminated successfully (Exit mode 0)
Current function value: 137.06359857146663
Iterations: 10
Function evaluations: 93
Gradient evaluations: 10
Iteration: 1, Func. Count: 11, Neg. LLF: 146.86625912168606
Iteration: 2, Func. Count: 22, Neg. LLF: 140.85632291026013
Iteration: 3, Func. Count: 34, Neg. LLF: 139.66996442950972
Iteration: 4, Func. Count: 45, Neg. LLF: 138.14976902060707
Iteration: 5, Func. Count: 55, Neg. LLF: 145.02243127764325
Iteration: 6, Func. Count: 66, Neg. LLF: 141.05780186052743
Iteration: 7, Func. Count: 77, Neg. LLF: 138.02804151657534
Iteration: 8, Func. Count: 88, Neg. LLF: 137.64882854260998
Iteration: 9, Func. Count: 98, Neg. LLF: 137.56939402727588
Iteration: 10, Func. Count: 108, Neg. LLF: 137.50586746644947
Iteration: 11, Func. Count: 118, Neg. LLF: 137.35398927139295
Iteration: 12, Func. Count: 128, Neg. LLF: 137.309666059522
Iteration: 13, Func. Count: 138, Neg. LLF: 137.1553761373695
Iteration: 14, Func. Count: 148, Neg. LLF: 137.0929931653928
Iteration: 15, Func. Count: 158, Neg. LLF: 137.06530087126794
Iteration: 16, Func. Count: 168, Neg. LLF: 137.063927694185
Iteration: 17, Func. Count: 178, Neg. LLF: 137.06374420582915
Iteration: 18, Func. Count: 188, Neg. LLF: 137.06364306821933
Iteration: 19, Func. Count: 198, Neg. LLF: 137.06359819661327
Iteration: 20, Func. Count: 207, Neg. LLF: 137.06359822621272
Optimization terminated successfully (Exit mode 0)
Current function value: 137.06359819661327
Iterations: 20
Function evaluations: 207
Gradient evaluations: 20
Iteration: 1, Func. Count: 12, Neg. LLF: 145.67208896133016
Iteration: 2, Func. Count: 24, Neg. LLF: 140.96196772473292
Iteration: 3, Func. Count: 36, Neg. LLF: 140.70873680172488
Iteration: 4, Func. Count: 48, Neg. LLF: 143.7210228400768
Iteration: 5, Func. Count: 60, Neg. LLF: 140.0985796996042
Iteration: 6, Func. Count: 72, Neg. LLF: 138.19295919264565
Iteration: 7, Func. Count: 83, Neg. LLF: 138.12300507964218
Iteration: 8, Func. Count: 95, Neg. LLF: 137.93317406284822
Iteration: 9, Func. Count: 107, Neg. LLF: 138.10412627870164
Iteration: 10, Func. Count: 119, Neg. LLF: 137.60654828154026
Iteration: 11, Func. Count: 130, Neg. LLF: 137.47246210076813
Iteration: 12, Func. Count: 141, Neg. LLF: 137.43691140640038
Iteration: 13, Func. Count: 152, Neg. LLF: 137.26958667273766
Iteration: 14, Func. Count: 163, Neg. LLF: 137.19058933556985
Iteration: 15, Func. Count: 174, Neg. LLF: 137.07478301964576
Iteration: 16, Func. Count: 185, Neg. LLF: 137.06665725952962
Iteration: 17, Func. Count: 196, Neg. LLF: 137.0636357659877
Iteration: 18, Func. Count: 207, Neg. LLF: 137.0636058676977
Iteration: 19, Func. Count: 218, Neg. LLF: 137.06359838609558
Iteration: 20, Func. Count: 228, Neg. LLF: 137.06359847753583
Optimization terminated successfully (Exit mode 0)
Current function value: 137.06359838609558
Iterations: 20
Function evaluations: 228
Gradient evaluations: 20
Iteration: 1, Func. Count: 13, Neg. LLF: 142.15450126161943
Iteration: 2, Func. Count: 26, Neg. LLF: 139.6593133324429
Iteration: 3, Func. Count: 39, Neg. LLF: 139.47612526771985
Iteration: 4, Func. Count: 52, Neg. LLF: 143.03049306095994
Iteration: 5, Func. Count: 65, Neg. LLF: 145.38567465393677
Iteration: 6, Func. Count: 78, Neg. LLF: 138.190748314851
Iteration: 7, Func. Count: 90, Neg. LLF: 138.13884872250847
Iteration: 8, Func. Count: 103, Neg. LLF: 137.8181515996241
Iteration: 9, Func. Count: 115, Neg. LLF: 137.75291140892904
Iteration: 10, Func. Count: 127, Neg. LLF: 137.61180769381969
Iteration: 11, Func. Count: 139, Neg. LLF: 137.49987830576714
Iteration: 12, Func. Count: 151, Neg. LLF: 139.33702800980726
Iteration: 13, Func. Count: 164, Neg. LLF: 137.37462658175315
Iteration: 14, Func. Count: 176, Neg. LLF: 137.2025631251565
Iteration: 15, Func. Count: 188, Neg. LLF: 137.096124632552
Iteration: 16, Func. Count: 200, Neg. LLF: 137.06663035047308
Iteration: 17, Func. Count: 212, Neg. LLF: 137.06425822775654
Iteration: 18, Func. Count: 224, Neg. LLF: 137.06372661814086
Iteration: 19, Func. Count: 236, Neg. LLF: 137.06360767726684
Iteration: 20, Func. Count: 248, Neg. LLF: 137.06359834174813
Iteration: 21, Func. Count: 259, Neg. LLF: 137.06359844691153
Optimization terminated successfully (Exit mode 0)
Current function value: 137.06359834174813
Iterations: 21
Function evaluations: 259
Gradient evaluations: 21
Iteration: 1, Func. Count: 10, Neg. LLF: 145.50791249733743
Iteration: 2, Func. Count: 21, Neg. LLF: 140.86767360101675
Iteration: 3, Func. Count: 31, Neg. LLF: 138.0397599416427
Iteration: 4, Func. Count: 40, Neg. LLF: 138.2244096258724
Iteration: 5, Func. Count: 50, Neg. LLF: 137.71659088636906
Iteration: 6, Func. Count: 59, Neg. LLF: 137.5306114628862
Iteration: 7, Func. Count: 68, Neg. LLF: 137.4645836910459
Iteration: 8, Func. Count: 77, Neg. LLF: 137.34783082036031
Iteration: 9, Func. Count: 86, Neg. LLF: 137.16392931207227
Iteration: 10, Func. Count: 95, Neg. LLF: 136.92476380576892
Iteration: 11, Func. Count: 104, Neg. LLF: 136.74228498709329
Iteration: 12, Func. Count: 113, Neg. LLF: 136.53871965599916
Iteration: 13, Func. Count: 122, Neg. LLF: 136.51074585173697
Iteration: 14, Func. Count: 131, Neg. LLF: 136.50809367114823
Iteration: 15, Func. Count: 140, Neg. LLF: 136.50793459433177
Iteration: 16, Func. Count: 149, Neg. LLF: 136.50793333212886
Iteration: 17, Func. Count: 157, Neg. LLF: 136.5079332660638
Optimization terminated successfully (Exit mode 0)
Current function value: 136.50793333212886
Iterations: 17
Function evaluations: 157
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 148.69283251813974
Iteration: 2, Func. Count: 22, Neg. LLF: 146.12235053035747
Iteration: 3, Func. Count: 33, Neg. LLF: 137.593532549559
Iteration: 4, Func. Count: 43, Neg. LLF: 137.04677985206322
Iteration: 5, Func. Count: 53, Neg. LLF: 139.62491845012414
Iteration: 6, Func. Count: 65, Neg. LLF: 136.89969023078956
Iteration: 7, Func. Count: 75, Neg. LLF: 136.97761373244705
Iteration: 8, Func. Count: 86, Neg. LLF: 136.77309503894418
Iteration: 9, Func. Count: 96, Neg. LLF: 136.93506262371946
Iteration: 10, Func. Count: 107, Neg. LLF: 136.86714485881424
Iteration: 11, Func. Count: 118, Neg. LLF: 136.54622509121222
Iteration: 12, Func. Count: 128, Neg. LLF: 136.50698406691058
Iteration: 13, Func. Count: 138, Neg. LLF: 136.4907137081619
Iteration: 14, Func. Count: 148, Neg. LLF: 136.48478661632126
Iteration: 15, Func. Count: 158, Neg. LLF: 136.48211384673124
Iteration: 16, Func. Count: 168, Neg. LLF: 136.48124292312093
Iteration: 17, Func. Count: 178, Neg. LLF: 136.4808526000051
Iteration: 18, Func. Count: 188, Neg. LLF: 136.48078918928573
Iteration: 19, Func. Count: 198, Neg. LLF: 136.48078186873553
Iteration: 20, Func. Count: 207, Neg. LLF: 136.48078185372333
Optimization terminated successfully (Exit mode 0)
Current function value: 136.48078186873553
Iterations: 20
Function evaluations: 207
Gradient evaluations: 20
Iteration: 1, Func. Count: 12, Neg. LLF: 143.86395990994677
Iteration: 2, Func. Count: 24, Neg. LLF: 139.65556127391983
Iteration: 3, Func. Count: 36, Neg. LLF: 141.5244105574451
Iteration: 4, Func. Count: 48, Neg. LLF: 138.23305846927082
Iteration: 5, Func. Count: 60, Neg. LLF: 137.37500831069053
Iteration: 6, Func. Count: 71, Neg. LLF: 138.24563334332575
Iteration: 7, Func. Count: 83, Neg. LLF: 138.7640677474323
Iteration: 8, Func. Count: 96, Neg. LLF: 137.0928018158582
Iteration: 9, Func. Count: 107, Neg. LLF: 137.07778241231713
Iteration: 10, Func. Count: 118, Neg. LLF: 137.06031206373595
Iteration: 11, Func. Count: 129, Neg. LLF: 137.05552255791153
Iteration: 12, Func. Count: 140, Neg. LLF: 137.00998416034966
Iteration: 13, Func. Count: 151, Neg. LLF: 136.85703224637876
Iteration: 14, Func. Count: 162, Neg. LLF: 136.70519531495341
Iteration: 15, Func. Count: 173, Neg. LLF: 137.09567349211932
Iteration: 16, Func. Count: 185, Neg. LLF: 136.57522945529317
Iteration: 17, Func. Count: 196, Neg. LLF: 136.57853557746472
Iteration: 18, Func. Count: 208, Neg. LLF: 136.51177899633439
Iteration: 19, Func. Count: 220, Neg. LLF: 136.48569038803763
Iteration: 20, Func. Count: 231, Neg. LLF: 136.4815859337132
Iteration: 21, Func. Count: 242, Neg. LLF: 136.4809012225893
Iteration: 22, Func. Count: 253, Neg. LLF: 136.48078354674442
Iteration: 23, Func. Count: 264, Neg. LLF: 136.4807815247472
Iteration: 24, Func. Count: 274, Neg. LLF: 136.4807816138747
Optimization terminated successfully (Exit mode 0)
Current function value: 136.4807815247472
Iterations: 24
Function evaluations: 274
Gradient evaluations: 24
Iteration: 1, Func. Count: 13, Neg. LLF: 143.9172835126897
Iteration: 2, Func. Count: 26, Neg. LLF: 140.6292276401642
Iteration: 3, Func. Count: 39, Neg. LLF: 141.47497560365883
Iteration: 4, Func. Count: 52, Neg. LLF: 139.15106174782463
Iteration: 5, Func. Count: 65, Neg. LLF: 139.87277103968412
Iteration: 6, Func. Count: 78, Neg. LLF: 139.70600091118192
Iteration: 7, Func. Count: 91, Neg. LLF: 137.53696813658757
Iteration: 8, Func. Count: 103, Neg. LLF: 137.49596655157444
Iteration: 9, Func. Count: 115, Neg. LLF: 137.35529697690615
Iteration: 10, Func. Count: 127, Neg. LLF: 143.57726464760546
Iteration: 11, Func. Count: 140, Neg. LLF: 137.10440008794598
Iteration: 12, Func. Count: 152, Neg. LLF: 137.0263545008998
Iteration: 13, Func. Count: 164, Neg. LLF: 137.21935669944864
Iteration: 14, Func. Count: 177, Neg. LLF: 136.8667527277462
Iteration: 15, Func. Count: 189, Neg. LLF: 136.82459220707364
Iteration: 16, Func. Count: 201, Neg. LLF: 136.76580215213463
Iteration: 17, Func. Count: 213, Neg. LLF: 136.7612461155515
Iteration: 18, Func. Count: 226, Neg. LLF: 136.73899079392055
Iteration: 19, Func. Count: 239, Neg. LLF: 136.64075949847714
Iteration: 20, Func. Count: 251, Neg. LLF: 136.5123823285722
Iteration: 21, Func. Count: 263, Neg. LLF: 136.49273500120017
Iteration: 22, Func. Count: 275, Neg. LLF: 136.48618483524422
Iteration: 23, Func. Count: 287, Neg. LLF: 136.4850797232839
Iteration: 24, Func. Count: 299, Neg. LLF: 136.48378868925087
Iteration: 25, Func. Count: 311, Neg. LLF: 136.48144831070096
Iteration: 26, Func. Count: 323, Neg. LLF: 136.48091046711178
Iteration: 27, Func. Count: 335, Neg. LLF: 136.48078202165726
Iteration: 28, Func. Count: 347, Neg. LLF: 136.4807815046759
Optimization terminated successfully (Exit mode 0)
Current function value: 136.4807815046759
Iterations: 28
Function evaluations: 347
Gradient evaluations: 28
Iteration: 1, Func. Count: 14, Neg. LLF: 141.5284929455084
Iteration: 2, Func. Count: 28, Neg. LLF: 140.37038055480824
Iteration: 3, Func. Count: 42, Neg. LLF: 140.74851246713843
Iteration: 4, Func. Count: 56, Neg. LLF: 139.17434506024597
Iteration: 5, Func. Count: 70, Neg. LLF: 141.1160866379316
Iteration: 6, Func. Count: 84, Neg. LLF: 137.66894788310495
Iteration: 7, Func. Count: 97, Neg. LLF: 139.35217567272082
Iteration: 8, Func. Count: 111, Neg. LLF: 137.66155423355764
Iteration: 9, Func. Count: 125, Neg. LLF: 137.0636214113452
Iteration: 10, Func. Count: 138, Neg. LLF: 136.73616886982518
Iteration: 11, Func. Count: 151, Neg. LLF: 136.6678114205014
Iteration: 12, Func. Count: 165, Neg. LLF: 136.64788194704562
Iteration: 13, Func. Count: 179, Neg. LLF: 136.52813290584524
Iteration: 14, Func. Count: 192, Neg. LLF: 136.5091410472338
Iteration: 15, Func. Count: 205, Neg. LLF: 136.4815545527869
Iteration: 16, Func. Count: 218, Neg. LLF: 136.4807951288119
Iteration: 17, Func. Count: 231, Neg. LLF: 136.48078355000482
Iteration: 18, Func. Count: 244, Neg. LLF: 136.48078185233553
Iteration: 19, Func. Count: 256, Neg. LLF: 136.48078204091973
Optimization terminated successfully (Exit mode 0)
Current function value: 136.48078185233553
Iterations: 19
Function evaluations: 256
Gradient evaluations: 19
Iteration: 1, Func. Count: 11, Neg. LLF: 144.05392602969908
Iteration: 2, Func. Count: 23, Neg. LLF: 140.74636918255632
Iteration: 3, Func. Count: 34, Neg. LLF: 138.28797184002934
Iteration: 4, Func. Count: 44, Neg. LLF: 137.80275412715417
Iteration: 5, Func. Count: 54, Neg. LLF: 139.17172383917915
Iteration: 6, Func. Count: 65, Neg. LLF: 137.44419951638946
Iteration: 7, Func. Count: 75, Neg. LLF: 137.33263994664043
Iteration: 8, Func. Count: 85, Neg. LLF: 137.22404705371088
Iteration: 9, Func. Count: 95, Neg. LLF: 137.57323654521034
Iteration: 10, Func. Count: 106, Neg. LLF: 140.19452591125824
Iteration: 11, Func. Count: 117, Neg. LLF: 137.64291975948765
Iteration: 12, Func. Count: 128, Neg. LLF: 136.79727841131375
Iteration: 13, Func. Count: 139, Neg. LLF: 137.5280731879922
Iteration: 14, Func. Count: 151, Neg. LLF: 137.46067799481725
Iteration: 15, Func. Count: 162, Neg. LLF: 136.51088145905604
Iteration: 16, Func. Count: 172, Neg. LLF: 136.50796166547556
Iteration: 17, Func. Count: 182, Neg. LLF: 136.50793542045497
Iteration: 18, Func. Count: 192, Neg. LLF: 136.50793328307716
Iteration: 19, Func. Count: 201, Neg. LLF: 136.5079333320249
Optimization terminated successfully (Exit mode 0)
Current function value: 136.50793328307716
Iterations: 19
Function evaluations: 201
Gradient evaluations: 19
Iteration: 1, Func. Count: 12, Neg. LLF: 148.56491942509444
Iteration: 2, Func. Count: 24, Neg. LLF: 146.25288053641037
Iteration: 3, Func. Count: 36, Neg. LLF: 138.14666070710197
Iteration: 4, Func. Count: 48, Neg. LLF: 137.06029134630705
Iteration: 5, Func. Count: 59, Neg. LLF: 139.30506892677764
Iteration: 6, Func. Count: 71, Neg. LLF: 136.92706473990248
Iteration: 7, Func. Count: 82, Neg. LLF: 137.22118935254687
Iteration: 8, Func. Count: 94, Neg. LLF: 136.7936124116499
Iteration: 9, Func. Count: 105, Neg. LLF: 137.09698790162417
Iteration: 10, Func. Count: 117, Neg. LLF: 136.83253411912764
Iteration: 11, Func. Count: 129, Neg. LLF: 136.63069794110388
Iteration: 12, Func. Count: 140, Neg. LLF: 136.53716230676574
Iteration: 13, Func. Count: 151, Neg. LLF: 136.50065513027198
Iteration: 14, Func. Count: 162, Neg. LLF: 136.49493868076104
Iteration: 15, Func. Count: 173, Neg. LLF: 136.48356949138955
Iteration: 16, Func. Count: 184, Neg. LLF: 136.48160178155922
Iteration: 17, Func. Count: 195, Neg. LLF: 136.48088059965127
Iteration: 18, Func. Count: 206, Neg. LLF: 136.4807829670572
Iteration: 19, Func. Count: 217, Neg. LLF: 136.48078150085567
Iteration: 20, Func. Count: 227, Neg. LLF: 136.48078148573512
Optimization terminated successfully (Exit mode 0)
Current function value: 136.48078150085567
Iterations: 20
Function evaluations: 227
Gradient evaluations: 20
Iteration: 1, Func. Count: 13, Neg. LLF: 143.81314207801265
Iteration: 2, Func. Count: 26, Neg. LLF: 139.76453440166114
Iteration: 3, Func. Count: 39, Neg. LLF: 141.59653936955237
Iteration: 4, Func. Count: 52, Neg. LLF: 138.1207203147306
Iteration: 5, Func. Count: 64, Neg. LLF: 138.92360039351044
Iteration: 6, Func. Count: 78, Neg. LLF: 144.33388774116958
Iteration: 7, Func. Count: 92, Neg. LLF: 138.22531608620662
Iteration: 8, Func. Count: 105, Neg. LLF: 137.1788395571259
Iteration: 9, Func. Count: 117, Neg. LLF: 137.13464626357677
Iteration: 10, Func. Count: 129, Neg. LLF: 137.0870732959181
Iteration: 11, Func. Count: 141, Neg. LLF: 137.06662245763937
Iteration: 12, Func. Count: 153, Neg. LLF: 137.05182742784731
Iteration: 13, Func. Count: 165, Neg. LLF: 136.94777587842538
Iteration: 14, Func. Count: 177, Neg. LLF: 137.02835133581883
Iteration: 15, Func. Count: 190, Neg. LLF: 136.70501677287044
Iteration: 16, Func. Count: 202, Neg. LLF: 136.62901280224162
Iteration: 17, Func. Count: 214, Neg. LLF: 137.0250648754446
Iteration: 18, Func. Count: 227, Neg. LLF: 136.5690469722182
Iteration: 19, Func. Count: 240, Neg. LLF: 136.50837904257523
Iteration: 20, Func. Count: 252, Neg. LLF: 136.49365398254704
Iteration: 21, Func. Count: 264, Neg. LLF: 136.48546940802248
Iteration: 22, Func. Count: 276, Neg. LLF: 136.48191203536788
Iteration: 23, Func. Count: 288, Neg. LLF: 136.48126888805282
Iteration: 24, Func. Count: 300, Neg. LLF: 136.48080939027707
Iteration: 25, Func. Count: 312, Neg. LLF: 136.48078282427838
Iteration: 26, Func. Count: 324, Neg. LLF: 136.48078156845636
Iteration: 27, Func. Count: 335, Neg. LLF: 136.4807816576355
Optimization terminated successfully (Exit mode 0)
Current function value: 136.48078156845636
Iterations: 27
Function evaluations: 335
Gradient evaluations: 27
Iteration: 1, Func. Count: 14, Neg. LLF: 143.9070736471476
Iteration: 2, Func. Count: 28, Neg. LLF: 140.83313495247813
Iteration: 3, Func. Count: 42, Neg. LLF: 141.53727989709432
Iteration: 4, Func. Count: 56, Neg. LLF: 139.12620518929734
Iteration: 5, Func. Count: 70, Neg. LLF: 139.75556861684197
Iteration: 6, Func. Count: 84, Neg. LLF: 140.00621511329004
Iteration: 7, Func. Count: 98, Neg. LLF: 137.5583366378889
Iteration: 8, Func. Count: 111, Neg. LLF: 137.49594216952153
Iteration: 9, Func. Count: 124, Neg. LLF: 137.2589772229546
Iteration: 10, Func. Count: 137, Neg. LLF: 137.99235983777956
Iteration: 11, Func. Count: 151, Neg. LLF: 137.03560483039465
Iteration: 12, Func. Count: 164, Neg. LLF: 136.9637678082594
Iteration: 13, Func. Count: 177, Neg. LLF: 136.9892295272426
Iteration: 14, Func. Count: 191, Neg. LLF: 136.76701224248308
Iteration: 15, Func. Count: 204, Neg. LLF: 136.6610142883366
Iteration: 16, Func. Count: 217, Neg. LLF: 136.66053246287515
Iteration: 17, Func. Count: 231, Neg. LLF: 136.53368930498615
Iteration: 18, Func. Count: 244, Neg. LLF: 136.55850673875122
Iteration: 19, Func. Count: 258, Neg. LLF: 136.4990637048889
Iteration: 20, Func. Count: 271, Neg. LLF: 136.4856479276228
Iteration: 21, Func. Count: 284, Neg. LLF: 136.48358382889035
Iteration: 22, Func. Count: 297, Neg. LLF: 136.48221404486972
Iteration: 23, Func. Count: 310, Neg. LLF: 136.48080980463814
Iteration: 24, Func. Count: 323, Neg. LLF: 136.48078195979727
Iteration: 25, Func. Count: 335, Neg. LLF: 136.4807821706598
Optimization terminated successfully (Exit mode 0)
Current function value: 136.48078195979727
Iterations: 25
Function evaluations: 335
Gradient evaluations: 25
Iteration: 1, Func. Count: 15, Neg. LLF: 141.487793756893
Iteration: 2, Func. Count: 30, Neg. LLF: 140.30242693962688
Iteration: 3, Func. Count: 45, Neg. LLF: 140.72171199890337
Iteration: 4, Func. Count: 60, Neg. LLF: 139.21138910727373
Iteration: 5, Func. Count: 75, Neg. LLF: 141.0091934888094
Iteration: 6, Func. Count: 90, Neg. LLF: 137.66112086547264
Iteration: 7, Func. Count: 104, Neg. LLF: 139.76712239124907
Iteration: 8, Func. Count: 119, Neg. LLF: 137.6859486975057
Iteration: 9, Func. Count: 134, Neg. LLF: 137.0473070430923
Iteration: 10, Func. Count: 148, Neg. LLF: 136.68391186768216
Iteration: 11, Func. Count: 162, Neg. LLF: 136.67713880004584
Iteration: 12, Func. Count: 177, Neg. LLF: 136.58178167913823
Iteration: 13, Func. Count: 191, Neg. LLF: 136.55061480261222
Iteration: 14, Func. Count: 205, Neg. LLF: 136.530708518216
Iteration: 15, Func. Count: 219, Neg. LLF: 136.49726349507364
Iteration: 16, Func. Count: 233, Neg. LLF: 136.4848223861046
Iteration: 17, Func. Count: 247, Neg. LLF: 136.48099394341406
Iteration: 18, Func. Count: 261, Neg. LLF: 136.4807914750729
Iteration: 19, Func. Count: 275, Neg. LLF: 136.48078241726503
Iteration: 20, Func. Count: 289, Neg. LLF: 136.48078154054596
Optimization terminated successfully (Exit mode 0)
Current function value: 136.48078154054596
Iterations: 20
Function evaluations: 289
Gradient evaluations: 20
Iteration: 1, Func. Count: 8, Neg. LLF: 141.62802182817353
Iteration: 2, Func. Count: 16, Neg. LLF: 143.33546380578827
Iteration: 3, Func. Count: 24, Neg. LLF: 138.95270997797897
Iteration: 4, Func. Count: 31, Neg. LLF: 141.71598315329422
Iteration: 5, Func. Count: 39, Neg. LLF: 140.58660912433814
Iteration: 6, Func. Count: 48, Neg. LLF: 138.83858747419066
Iteration: 7, Func. Count: 56, Neg. LLF: 138.59294610939386
Iteration: 8, Func. Count: 64, Neg. LLF: 138.84648182569336
Iteration: 9, Func. Count: 72, Neg. LLF: 138.5581367914866
Iteration: 10, Func. Count: 79, Neg. LLF: 138.5571744238808
Iteration: 11, Func. Count: 86, Neg. LLF: 138.55639380295688
Iteration: 12, Func. Count: 93, Neg. LLF: 138.55593081054664
Iteration: 13, Func. Count: 100, Neg. LLF: 138.55584200488707
Iteration: 14, Func. Count: 107, Neg. LLF: 138.55581829589215
Iteration: 15, Func. Count: 114, Neg. LLF: 138.55581676458405
Iteration: 16, Func. Count: 120, Neg. LLF: 138.55581676460096
Optimization terminated successfully (Exit mode 0)
Current function value: 138.55581676458405
Iterations: 16
Function evaluations: 120
Gradient evaluations: 16
Iteration: 1, Func. Count: 9, Neg. LLF: 141.8555200136433
Iteration: 2, Func. Count: 18, Neg. LLF: 140.3670351459518
Iteration: 3, Func. Count: 27, Neg. LLF: 146.23836028490265
Iteration: 4, Func. Count: 36, Neg. LLF: 141.52427736670887
Iteration: 5, Func. Count: 45, Neg. LLF: 138.63173726137896
Iteration: 6, Func. Count: 53, Neg. LLF: 140.73653561123794
Iteration: 7, Func. Count: 62, Neg. LLF: 138.8656594713928
Iteration: 8, Func. Count: 71, Neg. LLF: 138.58769727130434
Iteration: 9, Func. Count: 80, Neg. LLF: 138.56776887458983
Iteration: 10, Func. Count: 89, Neg. LLF: 138.5617385082661
Iteration: 11, Func. Count: 97, Neg. LLF: 138.56008936769607
Iteration: 12, Func. Count: 105, Neg. LLF: 138.55760137005427
Iteration: 13, Func. Count: 113, Neg. LLF: 138.55641542869108
Iteration: 14, Func. Count: 121, Neg. LLF: 138.5559718511654
Iteration: 15, Func. Count: 129, Neg. LLF: 138.5558309089311
Iteration: 16, Func. Count: 137, Neg. LLF: 138.55581718099853
Iteration: 17, Func. Count: 144, Neg. LLF: 138.55581718291793
Optimization terminated successfully (Exit mode 0)
Current function value: 138.55581718099853
Iterations: 17
Function evaluations: 144
Gradient evaluations: 17
Iteration: 1, Func. Count: 10, Neg. LLF: 141.87435364961647
Iteration: 2, Func. Count: 20, Neg. LLF: 140.32358648498152
Iteration: 3, Func. Count: 30, Neg. LLF: 146.28716634576878
Iteration: 4, Func. Count: 40, Neg. LLF: 141.3659584935794
Iteration: 5, Func. Count: 50, Neg. LLF: 138.61099974077027
Iteration: 6, Func. Count: 59, Neg. LLF: 141.23392670246773
Iteration: 7, Func. Count: 69, Neg. LLF: 138.59674704896005
Iteration: 8, Func. Count: 79, Neg. LLF: 138.58061341441214
Iteration: 9, Func. Count: 89, Neg. LLF: 138.58613203067284
Iteration: 10, Func. Count: 99, Neg. LLF: 138.56078043372338
Iteration: 11, Func. Count: 108, Neg. LLF: 138.56034788353438
Iteration: 12, Func. Count: 117, Neg. LLF: 138.5573617673937
Iteration: 13, Func. Count: 126, Neg. LLF: 138.5559233135816
Iteration: 14, Func. Count: 135, Neg. LLF: 138.55583266219656
Iteration: 15, Func. Count: 144, Neg. LLF: 138.5558176286849
Iteration: 16, Func. Count: 153, Neg. LLF: 138.55581682045135
Optimization terminated successfully (Exit mode 0)
Current function value: 138.55581682045135
Iterations: 16
Function evaluations: 153
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 141.86735128733085
Iteration: 2, Func. Count: 22, Neg. LLF: 140.2786209748977
Iteration: 3, Func. Count: 33, Neg. LLF: 146.54394226461906
Iteration: 4, Func. Count: 44, Neg. LLF: 141.229237670519
Iteration: 5, Func. Count: 55, Neg. LLF: 138.77608776286286
Iteration: 6, Func. Count: 66, Neg. LLF: 139.75542139704436
Iteration: 7, Func. Count: 77, Neg. LLF: 138.77994989592298
Iteration: 8, Func. Count: 88, Neg. LLF: 138.56990783306225
Iteration: 9, Func. Count: 98, Neg. LLF: 138.56140075996427
Iteration: 10, Func. Count: 108, Neg. LLF: 138.56074401188405
Iteration: 11, Func. Count: 118, Neg. LLF: 138.56030098051096
Iteration: 12, Func. Count: 128, Neg. LLF: 138.55844327864355
Iteration: 13, Func. Count: 138, Neg. LLF: 138.55594159798665
Iteration: 14, Func. Count: 148, Neg. LLF: 138.5558478493989
Iteration: 15, Func. Count: 158, Neg. LLF: 138.55581983431205
Iteration: 16, Func. Count: 168, Neg. LLF: 138.55581680286846
Iteration: 17, Func. Count: 177, Neg. LLF: 138.5558168121767
Optimization terminated successfully (Exit mode 0)
Current function value: 138.55581680286846
Iterations: 17
Function evaluations: 177
Gradient evaluations: 17
Iteration: 1, Func. Count: 12, Neg. LLF: 141.8638187822876
Iteration: 2, Func. Count: 24, Neg. LLF: 140.23759529679916
Iteration: 3, Func. Count: 36, Neg. LLF: 146.9243460359889
Iteration: 4, Func. Count: 48, Neg. LLF: 141.1885207838601
Iteration: 5, Func. Count: 60, Neg. LLF: 138.78278401645872
Iteration: 6, Func. Count: 72, Neg. LLF: 139.8427304883482
Iteration: 7, Func. Count: 84, Neg. LLF: 138.64429795919966
Iteration: 8, Func. Count: 96, Neg. LLF: 138.56877436249553
Iteration: 9, Func. Count: 107, Neg. LLF: 138.56791378333298
Iteration: 10, Func. Count: 119, Neg. LLF: 138.56168706172318
Iteration: 11, Func. Count: 130, Neg. LLF: 138.560560361787
Iteration: 12, Func. Count: 141, Neg. LLF: 138.56016187971915
Iteration: 13, Func. Count: 152, Neg. LLF: 138.5574653767846
Iteration: 14, Func. Count: 163, Neg. LLF: 138.556086512668
Iteration: 15, Func. Count: 174, Neg. LLF: 138.55585531563779
Iteration: 16, Func. Count: 185, Neg. LLF: 138.55582295592822
Iteration: 17, Func. Count: 196, Neg. LLF: 138.55581684905118
Iteration: 18, Func. Count: 206, Neg. LLF: 138.55581689055063
Optimization terminated successfully (Exit mode 0)
Current function value: 138.55581684905118
Iterations: 18
Function evaluations: 206
Gradient evaluations: 18
Iteration: 1, Func. Count: 9, Neg. LLF: 142.3854231018826
Iteration: 2, Func. Count: 19, Neg. LLF: 141.8403484642563
Iteration: 3, Func. Count: 29, Neg. LLF: 141.73118297913632
Iteration: 4, Func. Count: 39, Neg. LLF: 138.6281252640324
Iteration: 5, Func. Count: 48, Neg. LLF: 138.80529754249582
Iteration: 6, Func. Count: 57, Neg. LLF: 138.5800953532881
Iteration: 7, Func. Count: 66, Neg. LLF: 138.34033971582767
Iteration: 8, Func. Count: 74, Neg. LLF: 138.39684350943267
Iteration: 9, Func. Count: 83, Neg. LLF: 138.32656409091817
Iteration: 10, Func. Count: 91, Neg. LLF: 138.3233124779015
Iteration: 11, Func. Count: 99, Neg. LLF: 138.31935262357115
Iteration: 12, Func. Count: 107, Neg. LLF: 138.31900018236536
Iteration: 13, Func. Count: 115, Neg. LLF: 138.31881255758717
Iteration: 14, Func. Count: 123, Neg. LLF: 138.3188047887672
Iteration: 15, Func. Count: 130, Neg. LLF: 138.3188047887532
Optimization terminated successfully (Exit mode 0)
Current function value: 138.3188047887672
Iterations: 15
Function evaluations: 130
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 141.94771457392298
Iteration: 2, Func. Count: 20, Neg. LLF: 147.149280308956
Iteration: 3, Func. Count: 30, Neg. LLF: 159.56538971710202
Iteration: 4, Func. Count: 40, Neg. LLF: 141.26152242111107
Iteration: 5, Func. Count: 50, Neg. LLF: 140.36915010780896
Iteration: 6, Func. Count: 60, Neg. LLF: 139.16575991916082
Iteration: 7, Func. Count: 70, Neg. LLF: 139.2799485841848
Iteration: 8, Func. Count: 80, Neg. LLF: 138.35286148218913
Iteration: 9, Func. Count: 90, Neg. LLF: 138.38695909202028
Iteration: 10, Func. Count: 100, Neg. LLF: 138.26688818337922
Iteration: 11, Func. Count: 109, Neg. LLF: 138.25322499282845
Iteration: 12, Func. Count: 118, Neg. LLF: 138.2255426785095
Iteration: 13, Func. Count: 127, Neg. LLF: 138.19335125368755
Iteration: 14, Func. Count: 136, Neg. LLF: 138.18171413465402
Iteration: 15, Func. Count: 145, Neg. LLF: 138.17720385296985
Iteration: 16, Func. Count: 154, Neg. LLF: 138.17265769057036
Iteration: 17, Func. Count: 163, Neg. LLF: 138.14826595480534
Iteration: 18, Func. Count: 172, Neg. LLF: 138.11775526807926
Iteration: 19, Func. Count: 181, Neg. LLF: 138.03990596180702
Iteration: 20, Func. Count: 190, Neg. LLF: 138.0235659351849
Iteration: 21, Func. Count: 199, Neg. LLF: 138.0115855497113
Iteration: 22, Func. Count: 208, Neg. LLF: 138.0092219726872
Iteration: 23, Func. Count: 217, Neg. LLF: 138.0081498611229
Iteration: 24, Func. Count: 226, Neg. LLF: 138.0081442801813
Iteration: 25, Func. Count: 235, Neg. LLF: 138.0081422980635
Iteration: 26, Func. Count: 243, Neg. LLF: 138.0081422982594
Optimization terminated successfully (Exit mode 0)
Current function value: 138.0081422980635
Iterations: 26
Function evaluations: 243
Gradient evaluations: 26
Iteration: 1, Func. Count: 11, Neg. LLF: 142.05045323269044
Iteration: 2, Func. Count: 22, Neg. LLF: 147.01888964378404
Iteration: 3, Func. Count: 33, Neg. LLF: 154.07754376449677
Iteration: 4, Func. Count: 44, Neg. LLF: 141.23515068225214
Iteration: 5, Func. Count: 55, Neg. LLF: 139.06423194635698
Iteration: 6, Func. Count: 66, Neg. LLF: 140.21874564100932
Iteration: 7, Func. Count: 77, Neg. LLF: 140.1174269170328
Iteration: 8, Func. Count: 88, Neg. LLF: 138.42515916074714
Iteration: 9, Func. Count: 99, Neg. LLF: 138.27388859782675
Iteration: 10, Func. Count: 109, Neg. LLF: 138.2656848162638
Iteration: 11, Func. Count: 119, Neg. LLF: 138.2529262381357
Iteration: 12, Func. Count: 129, Neg. LLF: 138.22247320148463
Iteration: 13, Func. Count: 139, Neg. LLF: 138.20575677377664
Iteration: 14, Func. Count: 149, Neg. LLF: 138.18056186177344
Iteration: 15, Func. Count: 159, Neg. LLF: 138.17571847152018
Iteration: 16, Func. Count: 169, Neg. LLF: 138.16487725697823
Iteration: 17, Func. Count: 179, Neg. LLF: 138.11689353394016
Iteration: 18, Func. Count: 189, Neg. LLF: 138.11662006486412
Iteration: 19, Func. Count: 200, Neg. LLF: 138.03474781373586
Iteration: 20, Func. Count: 210, Neg. LLF: 138.0126016373909
Iteration: 21, Func. Count: 220, Neg. LLF: 138.0087120092413
Iteration: 22, Func. Count: 230, Neg. LLF: 138.00860088510802
Iteration: 23, Func. Count: 240, Neg. LLF: 138.00856189006737
Iteration: 24, Func. Count: 250, Neg. LLF: 138.00826522013355
Iteration: 25, Func. Count: 260, Neg. LLF: 139.6535902860225
Iteration: 26, Func. Count: 273, Neg. LLF: 138.01008361089922
Iteration: 27, Func. Count: 284, Neg. LLF: 138.0081443960102
Iteration: 28, Func. Count: 294, Neg. LLF: 138.00814228339252
Iteration: 29, Func. Count: 303, Neg. LLF: 138.00814230062247
Optimization terminated successfully (Exit mode 0)
Current function value: 138.00814228339252
Iterations: 30
Function evaluations: 303
Gradient evaluations: 29
Iteration: 1, Func. Count: 12, Neg. LLF: 145.5020635152101
Iteration: 2, Func. Count: 24, Neg. LLF: 139.67240013682994
Iteration: 3, Func. Count: 37, Neg. LLF: 139.5103854914561
Iteration: 4, Func. Count: 49, Neg. LLF: 139.4742327381343
Iteration: 5, Func. Count: 61, Neg. LLF: 138.85417957937645
Iteration: 6, Func. Count: 73, Neg. LLF: 139.52793553591465
Iteration: 7, Func. Count: 85, Neg. LLF: 138.34020083531985
Iteration: 8, Func. Count: 96, Neg. LLF: 138.37561670549053
Iteration: 9, Func. Count: 108, Neg. LLF: 138.54465934109686
Iteration: 10, Func. Count: 120, Neg. LLF: 138.27508285039966
Iteration: 11, Func. Count: 131, Neg. LLF: 138.22501216988945
Iteration: 12, Func. Count: 142, Neg. LLF: 138.2030056613614
Iteration: 13, Func. Count: 153, Neg. LLF: 138.1931713010607
Iteration: 14, Func. Count: 164, Neg. LLF: 138.18160510632913
Iteration: 15, Func. Count: 175, Neg. LLF: 138.17146802180122
Iteration: 16, Func. Count: 186, Neg. LLF: 138.15899069404927
Iteration: 17, Func. Count: 197, Neg. LLF: 138.1153755697408
Iteration: 18, Func. Count: 208, Neg. LLF: 138.05859852719334
Iteration: 19, Func. Count: 219, Neg. LLF: 138.0146829760474
Iteration: 20, Func. Count: 230, Neg. LLF: 138.0130566042529
Iteration: 21, Func. Count: 241, Neg. LLF: 138.0093970136553
Iteration: 22, Func. Count: 252, Neg. LLF: 138.00905894528879
Iteration: 23, Func. Count: 263, Neg. LLF: 138.00932858424258
Iteration: 24, Func. Count: 275, Neg. LLF: 158.54620869481374
Iteration: 25, Func. Count: 289, Neg. LLF: 138.00891852718195
Iteration: 26, Func. Count: 301, Neg. LLF: 138.00817629688297
Iteration: 27, Func. Count: 312, Neg. LLF: 138.00827042564205
Iteration: 28, Func. Count: 324, Neg. LLF: 138.00814252857214
Iteration: 29, Func. Count: 334, Neg. LLF: 138.00814258395113
Optimization terminated successfully (Exit mode 0)
Current function value: 138.00814252857214
Iterations: 30
Function evaluations: 334
Gradient evaluations: 29
Iteration: 1, Func. Count: 13, Neg. LLF: 140.87921409812876
Iteration: 2, Func. Count: 26, Neg. LLF: 142.17542423282697
Iteration: 3, Func. Count: 39, Neg. LLF: 143.69348585815084
Iteration: 4, Func. Count: 52, Neg. LLF: 148.54601641048737
Iteration: 5, Func. Count: 65, Neg. LLF: 138.71774092583834
Iteration: 6, Func. Count: 78, Neg. LLF: 140.95804117063292
Iteration: 7, Func. Count: 91, Neg. LLF: 138.42115357686623
Iteration: 8, Func. Count: 104, Neg. LLF: 138.32849431208862
Iteration: 9, Func. Count: 116, Neg. LLF: 138.28726757650298
Iteration: 10, Func. Count: 128, Neg. LLF: 138.2800795098867
Iteration: 11, Func. Count: 140, Neg. LLF: 138.26133997945067
Iteration: 12, Func. Count: 152, Neg. LLF: 138.2201714973765
Iteration: 13, Func. Count: 164, Neg. LLF: 138.19364614629635
Iteration: 14, Func. Count: 176, Neg. LLF: 138.1834247061421
Iteration: 15, Func. Count: 188, Neg. LLF: 138.17837062589524
Iteration: 16, Func. Count: 200, Neg. LLF: 138.172251953164
Iteration: 17, Func. Count: 212, Neg. LLF: 138.14564082381284
Iteration: 18, Func. Count: 224, Neg. LLF: 138.13239736146363
Iteration: 19, Func. Count: 236, Neg. LLF: 138.06491496412812
Iteration: 20, Func. Count: 248, Neg. LLF: 138.01163899807517
Iteration: 21, Func. Count: 260, Neg. LLF: 138.00859115785576
Iteration: 22, Func. Count: 272, Neg. LLF: 138.00827326301956
Iteration: 23, Func. Count: 284, Neg. LLF: 138.00823559016504
Iteration: 24, Func. Count: 296, Neg. LLF: 138.008143076659
Iteration: 25, Func. Count: 308, Neg. LLF: 138.11458352894556
Optimization terminated successfully (Exit mode 0)
Current function value: 138.00814229948287
Iterations: 26
Function evaluations: 311
Gradient evaluations: 25
Iteration: 1, Func. Count: 10, Neg. LLF: 145.81516101353634
Iteration: 2, Func. Count: 21, Neg. LLF: 141.73631082454568
Iteration: 3, Func. Count: 32, Neg. LLF: 144.3190595242161
Iteration: 4, Func. Count: 43, Neg. LLF: 139.0993416374638
Iteration: 5, Func. Count: 54, Neg. LLF: 138.13551850929608
Iteration: 6, Func. Count: 63, Neg. LLF: 138.2868092453162
Iteration: 7, Func. Count: 73, Neg. LLF: 138.03437630952732
Iteration: 8, Func. Count: 82, Neg. LLF: 137.97344144092904
Iteration: 9, Func. Count: 91, Neg. LLF: 137.95154183222337
Iteration: 10, Func. Count: 100, Neg. LLF: 137.94721455361906
Iteration: 11, Func. Count: 109, Neg. LLF: 137.94532779558526
Iteration: 12, Func. Count: 118, Neg. LLF: 137.94322312767162
Iteration: 13, Func. Count: 127, Neg. LLF: 137.94289412238632
Iteration: 14, Func. Count: 136, Neg. LLF: 137.94285114439393
Iteration: 15, Func. Count: 145, Neg. LLF: 137.9428504186352
Optimization terminated successfully (Exit mode 0)
Current function value: 137.9428504186352
Iterations: 15
Function evaluations: 145
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 146.71432883558663
Iteration: 2, Func. Count: 22, Neg. LLF: 141.10948773100367
Iteration: 3, Func. Count: 34, Neg. LLF: 141.58816865754383
Iteration: 4, Func. Count: 45, Neg. LLF: 138.82157874110123
Iteration: 5, Func. Count: 56, Neg. LLF: 139.54694314757356
Iteration: 6, Func. Count: 67, Neg. LLF: 138.4916889047259
Iteration: 7, Func. Count: 78, Neg. LLF: 137.77011054834963
Iteration: 8, Func. Count: 88, Neg. LLF: 138.21012147382285
Iteration: 9, Func. Count: 99, Neg. LLF: 137.61245568490418
Iteration: 10, Func. Count: 109, Neg. LLF: 137.52042321005365
Iteration: 11, Func. Count: 119, Neg. LLF: 137.37147063767753
Iteration: 12, Func. Count: 129, Neg. LLF: 137.2353262964916
Iteration: 13, Func. Count: 139, Neg. LLF: 137.13154802707254
Iteration: 14, Func. Count: 149, Neg. LLF: 137.06605806351655
Iteration: 15, Func. Count: 159, Neg. LLF: 137.06575654683903
Iteration: 16, Func. Count: 170, Neg. LLF: 137.06366465022688
Iteration: 17, Func. Count: 180, Neg. LLF: 137.0635991968524
Iteration: 18, Func. Count: 190, Neg. LLF: 137.06359816902457
Iteration: 19, Func. Count: 199, Neg. LLF: 137.06359816899254
Optimization terminated successfully (Exit mode 0)
Current function value: 137.06359816902457
Iterations: 19
Function evaluations: 199
Gradient evaluations: 19
Iteration: 1, Func. Count: 12, Neg. LLF: 146.7270262598031
Iteration: 2, Func. Count: 24, Neg. LLF: 140.9348007561557
Iteration: 3, Func. Count: 37, Neg. LLF: 143.41818525601204
Iteration: 4, Func. Count: 49, Neg. LLF: 138.55453896996946
Iteration: 5, Func. Count: 61, Neg. LLF: 139.15945085470133
Iteration: 6, Func. Count: 73, Neg. LLF: 139.26661634062265
Iteration: 7, Func. Count: 85, Neg. LLF: 137.88078104915178
Iteration: 8, Func. Count: 96, Neg. LLF: 137.76388034551678
Iteration: 9, Func. Count: 107, Neg. LLF: 137.64903783601986
Iteration: 10, Func. Count: 118, Neg. LLF: 137.51250943996408
Iteration: 11, Func. Count: 129, Neg. LLF: 137.26875595966533
Iteration: 12, Func. Count: 140, Neg. LLF: 137.11715465499861
Iteration: 13, Func. Count: 151, Neg. LLF: 137.07178133640983
Iteration: 14, Func. Count: 162, Neg. LLF: 137.06652312445516
Iteration: 15, Func. Count: 173, Neg. LLF: 137.06366709603236
Iteration: 16, Func. Count: 184, Neg. LLF: 137.06360734313586
Iteration: 17, Func. Count: 195, Neg. LLF: 137.06359822976302
Iteration: 18, Func. Count: 205, Neg. LLF: 137.0635982594697
Optimization terminated successfully (Exit mode 0)
Current function value: 137.06359822976302
Iterations: 18
Function evaluations: 205
Gradient evaluations: 18
Iteration: 1, Func. Count: 13, Neg. LLF: 146.70662623026317
Iteration: 2, Func. Count: 26, Neg. LLF: 145.0604521392589
Iteration: 3, Func. Count: 39, Neg. LLF: 172.05461585139727
Iteration: 4, Func. Count: 53, Neg. LLF: 139.44091287961112
Iteration: 5, Func. Count: 66, Neg. LLF: 139.43351449566015
Iteration: 6, Func. Count: 79, Neg. LLF: 138.08378623486087
Iteration: 7, Func. Count: 91, Neg. LLF: 137.96718437942545
Iteration: 8, Func. Count: 103, Neg. LLF: 139.31298335734903
Iteration: 9, Func. Count: 117, Neg. LLF: 137.7308524516352
Iteration: 10, Func. Count: 129, Neg. LLF: 137.65508435120196
Iteration: 11, Func. Count: 141, Neg. LLF: 137.49263742896525
Iteration: 12, Func. Count: 153, Neg. LLF: 137.17863321399162
Iteration: 13, Func. Count: 165, Neg. LLF: 137.08484432684267
Iteration: 14, Func. Count: 177, Neg. LLF: 137.0702204205744
Iteration: 15, Func. Count: 189, Neg. LLF: 137.06450216650674
Iteration: 16, Func. Count: 201, Neg. LLF: 137.0639280540273
Iteration: 17, Func. Count: 213, Neg. LLF: 137.06361157327686
Iteration: 18, Func. Count: 225, Neg. LLF: 137.0635985900945
Iteration: 19, Func. Count: 237, Neg. LLF: 137.06359802263046
Optimization terminated successfully (Exit mode 0)
Current function value: 137.06359802263046
Iterations: 19
Function evaluations: 237
Gradient evaluations: 19
Iteration: 1, Func. Count: 14, Neg. LLF: 146.69450938328296
Iteration: 2, Func. Count: 28, Neg. LLF: 139.95356935619597
Iteration: 3, Func. Count: 42, Neg. LLF: 148.78329495567365
Iteration: 4, Func. Count: 56, Neg. LLF: 150.26969806358667
Iteration: 5, Func. Count: 71, Neg. LLF: 139.04260655842668
Iteration: 6, Func. Count: 85, Neg. LLF: 138.56616869787496
Iteration: 7, Func. Count: 99, Neg. LLF: 137.88692391823903
Iteration: 8, Func. Count: 112, Neg. LLF: 137.83545323137292
Iteration: 9, Func. Count: 125, Neg. LLF: 137.95043790884026
Iteration: 10, Func. Count: 139, Neg. LLF: 137.79446650749355
Iteration: 11, Func. Count: 153, Neg. LLF: 137.44471564085876
Iteration: 12, Func. Count: 166, Neg. LLF: 137.4039088561159
Iteration: 13, Func. Count: 179, Neg. LLF: 137.25890872840247
Iteration: 14, Func. Count: 192, Neg. LLF: 137.18772016719421
Iteration: 15, Func. Count: 205, Neg. LLF: 137.10067732947536
Iteration: 16, Func. Count: 218, Neg. LLF: 137.0802971322784
Iteration: 17, Func. Count: 231, Neg. LLF: 137.06672449183722
Iteration: 18, Func. Count: 244, Neg. LLF: 137.06395171918285
Iteration: 19, Func. Count: 257, Neg. LLF: 137.06361145756262
Iteration: 20, Func. Count: 270, Neg. LLF: 137.0635980492848
Iteration: 21, Func. Count: 282, Neg. LLF: 137.06359815459496
Optimization terminated successfully (Exit mode 0)
Current function value: 137.0635980492848
Iterations: 21
Function evaluations: 282
Gradient evaluations: 21
Iteration: 1, Func. Count: 11, Neg. LLF: 146.3911144576235
Iteration: 2, Func. Count: 23, Neg. LLF: 140.86361089289412
Iteration: 3, Func. Count: 35, Neg. LLF: 140.02605350356924
Iteration: 4, Func. Count: 46, Neg. LLF: 143.7211996276426
Iteration: 5, Func. Count: 57, Neg. LLF: 137.91481427158567
Iteration: 6, Func. Count: 67, Neg. LLF: 137.87727413543087
Iteration: 7, Func. Count: 78, Neg. LLF: 137.5466454955008
Iteration: 8, Func. Count: 89, Neg. LLF: 137.28810008143387
Iteration: 9, Func. Count: 99, Neg. LLF: 137.1988135680897
Iteration: 10, Func. Count: 109, Neg. LLF: 137.12568993358786
Iteration: 11, Func. Count: 119, Neg. LLF: 136.97281416217086
Iteration: 12, Func. Count: 129, Neg. LLF: 136.78422381251156
Iteration: 13, Func. Count: 139, Neg. LLF: 136.51177857974494
Iteration: 14, Func. Count: 149, Neg. LLF: 136.50401273229372
Iteration: 15, Func. Count: 160, Neg. LLF: 136.4818354898625
Iteration: 16, Func. Count: 170, Neg. LLF: 136.48168509739162
Iteration: 17, Func. Count: 180, Neg. LLF: 136.48166959997076
Iteration: 18, Func. Count: 190, Neg. LLF: 136.4816621772122
Iteration: 19, Func. Count: 200, Neg. LLF: 136.48165047510648
Iteration: 20, Func. Count: 210, Neg. LLF: 136.48163913209794
Iteration: 21, Func. Count: 220, Neg. LLF: 136.4816309273044
Iteration: 22, Func. Count: 230, Neg. LLF: 136.48162901200195
Iteration: 23, Func. Count: 239, Neg. LLF: 136.4816289476921
Optimization terminated successfully (Exit mode 0)
Current function value: 136.48162901200195
Iterations: 23
Function evaluations: 239
Gradient evaluations: 23
Iteration: 1, Func. Count: 12, Neg. LLF: 143.50247069822942
Iteration: 2, Func. Count: 24, Neg. LLF: 140.247503994608
Iteration: 3, Func. Count: 37, Neg. LLF: 149.40722298394337
Iteration: 4, Func. Count: 49, Neg. LLF: 138.292366334327
Iteration: 5, Func. Count: 61, Neg. LLF: 138.6532046651055
Iteration: 6, Func. Count: 73, Neg. LLF: 138.7197271077191
Iteration: 7, Func. Count: 85, Neg. LLF: 137.9014038957362
Iteration: 8, Func. Count: 97, Neg. LLF: 137.1797727729488
Iteration: 9, Func. Count: 108, Neg. LLF: 137.1374584079246
Iteration: 10, Func. Count: 119, Neg. LLF: 136.72559089671142
Iteration: 11, Func. Count: 130, Neg. LLF: 136.53384528755933
Iteration: 12, Func. Count: 141, Neg. LLF: 136.6930174714654
Iteration: 13, Func. Count: 153, Neg. LLF: 136.4969198615022
Iteration: 14, Func. Count: 164, Neg. LLF: 136.4864889018285
Iteration: 15, Func. Count: 175, Neg. LLF: 136.48419362735913
Iteration: 16, Func. Count: 186, Neg. LLF: 136.4823166263491
Iteration: 17, Func. Count: 197, Neg. LLF: 136.48171233620985
Iteration: 18, Func. Count: 208, Neg. LLF: 136.48163147625746
Iteration: 19, Func. Count: 219, Neg. LLF: 136.4816289479053
Iteration: 20, Func. Count: 229, Neg. LLF: 136.48162893715713
Optimization terminated successfully (Exit mode 0)
Current function value: 136.4816289479053
Iterations: 20
Function evaluations: 229
Gradient evaluations: 20
Iteration: 1, Func. Count: 13, Neg. LLF: 146.73734380635716
Iteration: 2, Func. Count: 26, Neg. LLF: 139.92203197802075
Iteration: 3, Func. Count: 39, Neg. LLF: 142.75887658930782
Iteration: 4, Func. Count: 52, Neg. LLF: 137.76215901517432
Iteration: 5, Func. Count: 64, Neg. LLF: 138.08653623665478
Iteration: 6, Func. Count: 77, Neg. LLF: 137.81707117253256
Iteration: 7, Func. Count: 90, Neg. LLF: 137.75222367403563
Iteration: 8, Func. Count: 103, Neg. LLF: 137.91014778286296
Iteration: 9, Func. Count: 116, Neg. LLF: 137.16817385544695
Iteration: 10, Func. Count: 128, Neg. LLF: 137.11024113529763
Iteration: 11, Func. Count: 140, Neg. LLF: 136.61878941215852
Iteration: 12, Func. Count: 152, Neg. LLF: 136.63315226664275
Iteration: 13, Func. Count: 165, Neg. LLF: 136.6899395716269
Iteration: 14, Func. Count: 178, Neg. LLF: 136.5156132059107
Iteration: 15, Func. Count: 190, Neg. LLF: 136.49176622189694
Iteration: 16, Func. Count: 202, Neg. LLF: 136.487585192798
Iteration: 17, Func. Count: 214, Neg. LLF: 136.48659010412038
Iteration: 18, Func. Count: 226, Neg. LLF: 136.4838210262138
Iteration: 19, Func. Count: 238, Neg. LLF: 136.4827844926631
Iteration: 20, Func. Count: 250, Neg. LLF: 136.48165411334273
Iteration: 21, Func. Count: 262, Neg. LLF: 136.4816400889365
Iteration: 22, Func. Count: 274, Neg. LLF: 136.4816295142017
Iteration: 23, Func. Count: 285, Neg. LLF: 136.48162961667404
Optimization terminated successfully (Exit mode 0)
Current function value: 136.4816295142017
Iterations: 23
Function evaluations: 285
Gradient evaluations: 23
Iteration: 1, Func. Count: 14, Neg. LLF: 144.2693155706222
Iteration: 2, Func. Count: 28, Neg. LLF: 141.4504109976478
Iteration: 3, Func. Count: 42, Neg. LLF: 146.40630972602983
Iteration: 4, Func. Count: 56, Neg. LLF: 139.26186546273064
Iteration: 5, Func. Count: 70, Neg. LLF: 147.57328907142877
Iteration: 6, Func. Count: 84, Neg. LLF: 138.31944444518857
Iteration: 7, Func. Count: 98, Neg. LLF: 137.35850653571296
Iteration: 8, Func. Count: 111, Neg. LLF: 137.22522051370078
Iteration: 9, Func. Count: 124, Neg. LLF: 137.17759830205168
Iteration: 10, Func. Count: 137, Neg. LLF: 137.08777012063535
Iteration: 11, Func. Count: 150, Neg. LLF: 136.89281553926835
Iteration: 12, Func. Count: 163, Neg. LLF: 136.63603140807015
Iteration: 13, Func. Count: 176, Neg. LLF: 137.93590191456073
Iteration: 14, Func. Count: 190, Neg. LLF: 136.5167336000906
Iteration: 15, Func. Count: 203, Neg. LLF: 136.49754789790782
Iteration: 16, Func. Count: 216, Neg. LLF: 136.48777248424986
Iteration: 17, Func. Count: 229, Neg. LLF: 136.4810071643931
Iteration: 18, Func. Count: 242, Neg. LLF: 136.48081775046606
Iteration: 19, Func. Count: 255, Neg. LLF: 136.4807864356901
Iteration: 20, Func. Count: 268, Neg. LLF: 136.4807824505885
Iteration: 21, Func. Count: 281, Neg. LLF: 136.48078151198138
Optimization terminated successfully (Exit mode 0)
Current function value: 136.48078151198138
Iterations: 21
Function evaluations: 281
Gradient evaluations: 21
Iteration: 1, Func. Count: 15, Neg. LLF: 144.87049047423417
Iteration: 2, Func. Count: 30, Neg. LLF: 139.87623227648191
Iteration: 3, Func. Count: 45, Neg. LLF: 142.94174803970688
Iteration: 4, Func. Count: 60, Neg. LLF: 138.685055983248
Iteration: 5, Func. Count: 75, Neg. LLF: 148.0936810344722
Iteration: 6, Func. Count: 90, Neg. LLF: 137.4791834367096
Iteration: 7, Func. Count: 104, Neg. LLF: 137.53654201015706
Iteration: 8, Func. Count: 119, Neg. LLF: 138.80409063923557
Iteration: 9, Func. Count: 134, Neg. LLF: 137.21106829547875
Iteration: 10, Func. Count: 148, Neg. LLF: 137.1465041877811
Iteration: 11, Func. Count: 162, Neg. LLF: 137.07959439579685
Iteration: 12, Func. Count: 176, Neg. LLF: 136.6854376577361
Iteration: 13, Func. Count: 190, Neg. LLF: 136.61971888948372
Iteration: 14, Func. Count: 204, Neg. LLF: 136.53218242521584
Iteration: 15, Func. Count: 218, Neg. LLF: 136.4982749350092
Iteration: 16, Func. Count: 232, Neg. LLF: 136.48699124742768
Iteration: 17, Func. Count: 246, Neg. LLF: 136.48402051405276
Iteration: 18, Func. Count: 260, Neg. LLF: 136.48191779544908
Iteration: 19, Func. Count: 274, Neg. LLF: 136.48165826964376
Iteration: 20, Func. Count: 288, Neg. LLF: 136.48164398462717
Iteration: 21, Func. Count: 302, Neg. LLF: 136.48162989353978
Iteration: 22, Func. Count: 316, Neg. LLF: 136.48162891978635
Optimization terminated successfully (Exit mode 0)
Current function value: 136.48162891978635
Iterations: 22
Function evaluations: 316
Gradient evaluations: 22
Iteration: 1, Func. Count: 12, Neg. LLF: 142.27855239646587
Iteration: 2, Func. Count: 24, Neg. LLF: 140.7787112526755
Iteration: 3, Func. Count: 36, Neg. LLF: 139.11674313044844
Iteration: 4, Func. Count: 48, Neg. LLF: 138.08289565721617
Iteration: 5, Func. Count: 60, Neg. LLF: 137.48838088472408
Iteration: 6, Func. Count: 71, Neg. LLF: 140.22360670404598
Iteration: 7, Func. Count: 83, Neg. LLF: 138.27829905333152
Iteration: 8, Func. Count: 95, Neg. LLF: 136.67935866107632
Iteration: 9, Func. Count: 106, Neg. LLF: 136.62122229062976
Iteration: 10, Func. Count: 117, Neg. LLF: 136.5896776470584
Iteration: 11, Func. Count: 128, Neg. LLF: 136.4181240367608
Iteration: 12, Func. Count: 139, Neg. LLF: 136.3176703319585
Iteration: 13, Func. Count: 150, Neg. LLF: 136.2838823464918
Iteration: 14, Func. Count: 161, Neg. LLF: 136.2465034070831
Iteration: 15, Func. Count: 172, Neg. LLF: 136.22969686335043
Iteration: 16, Func. Count: 183, Neg. LLF: 136.22726347296657
Iteration: 17, Func. Count: 194, Neg. LLF: 136.22718426279744
Iteration: 18, Func. Count: 205, Neg. LLF: 136.22717650744914
Iteration: 19, Func. Count: 215, Neg. LLF: 136.2271764555157
Optimization terminated successfully (Exit mode 0)
Current function value: 136.22717650744914
Iterations: 19
Function evaluations: 215
Gradient evaluations: 19
Iteration: 1, Func. Count: 13, Neg. LLF: 141.69046734018303
Iteration: 2, Func. Count: 27, Neg. LLF: 141.64277790865214
Iteration: 3, Func. Count: 40, Neg. LLF: 138.59848677730193
Iteration: 4, Func. Count: 53, Neg. LLF: 141.59615038673624
Iteration: 5, Func. Count: 66, Neg. LLF: 138.09709225566277
Iteration: 6, Func. Count: 79, Neg. LLF: 138.4041557308913
Iteration: 7, Func. Count: 92, Neg. LLF: 137.08873897286736
Iteration: 8, Func. Count: 104, Neg. LLF: 136.8039471900277
Iteration: 9, Func. Count: 116, Neg. LLF: 136.69206813718154
Iteration: 10, Func. Count: 129, Neg. LLF: 136.4930191576903
Iteration: 11, Func. Count: 141, Neg. LLF: 136.25043443059386
Iteration: 12, Func. Count: 153, Neg. LLF: 136.23955818965328
Iteration: 13, Func. Count: 165, Neg. LLF: 136.23322008056093
Iteration: 14, Func. Count: 177, Neg. LLF: 136.2280580091731
Iteration: 15, Func. Count: 189, Neg. LLF: 136.22730152617316
Iteration: 16, Func. Count: 201, Neg. LLF: 136.2272025787906
Iteration: 17, Func. Count: 213, Neg. LLF: 136.2271792049713
Iteration: 18, Func. Count: 225, Neg. LLF: 136.2271762240946
Iteration: 19, Func. Count: 236, Neg. LLF: 136.2271762683672
Optimization terminated successfully (Exit mode 0)
Current function value: 136.2271762240946
Iterations: 19
Function evaluations: 236
Gradient evaluations: 19
Iteration: 1, Func. Count: 14, Neg. LLF: 141.4046157681871
Iteration: 2, Func. Count: 28, Neg. LLF: 138.54306788805292
Iteration: 3, Func. Count: 41, Neg. LLF: 144.06565280670094
Iteration: 4, Func. Count: 57, Neg. LLF: 172.96171540009942
Iteration: 5, Func. Count: 71, Neg. LLF: 141.30406855154706
Iteration: 6, Func. Count: 85, Neg. LLF: 138.07079408219857
Iteration: 7, Func. Count: 99, Neg. LLF: 138.70550683555854
Iteration: 8, Func. Count: 113, Neg. LLF: 136.76635279929383
Iteration: 9, Func. Count: 126, Neg. LLF: 136.709980745185
Iteration: 10, Func. Count: 139, Neg. LLF: 136.63528617144107
Iteration: 11, Func. Count: 152, Neg. LLF: 136.52319570229852
Iteration: 12, Func. Count: 165, Neg. LLF: 136.3182143415828
Iteration: 13, Func. Count: 178, Neg. LLF: 136.23366658387715
Iteration: 14, Func. Count: 191, Neg. LLF: 136.22858820966812
Iteration: 15, Func. Count: 204, Neg. LLF: 136.22768710563696
Iteration: 16, Func. Count: 217, Neg. LLF: 136.2275802365926
Iteration: 17, Func. Count: 230, Neg. LLF: 136.22740955940833
Iteration: 18, Func. Count: 243, Neg. LLF: 136.22720636818963
Iteration: 19, Func. Count: 256, Neg. LLF: 136.2271784004307
Iteration: 20, Func. Count: 269, Neg. LLF: 136.22717617878402
Iteration: 21, Func. Count: 281, Neg. LLF: 136.22717632945586
Optimization terminated successfully (Exit mode 0)
Current function value: 136.22717617878402
Iterations: 21
Function evaluations: 281
Gradient evaluations: 21
Iteration: 1, Func. Count: 15, Neg. LLF: 141.87649867455613
Iteration: 2, Func. Count: 31, Neg. LLF: 141.3675952451051
Iteration: 3, Func. Count: 46, Neg. LLF: 140.27752727640552
Iteration: 4, Func. Count: 61, Neg. LLF: 137.810939966058
Iteration: 5, Func. Count: 76, Neg. LLF: 139.43316920125045
Iteration: 6, Func. Count: 91, Neg. LLF: 137.73769534584545
Iteration: 7, Func. Count: 106, Neg. LLF: 138.90182664042493
Iteration: 8, Func. Count: 121, Neg. LLF: 136.76985818054604
Iteration: 9, Func. Count: 135, Neg. LLF: 136.69428465128306
Iteration: 10, Func. Count: 149, Neg. LLF: 136.6519671112138
Iteration: 11, Func. Count: 163, Neg. LLF: 136.53307659370543
Iteration: 12, Func. Count: 177, Neg. LLF: 136.2482065382565
Iteration: 13, Func. Count: 191, Neg. LLF: 136.2338877331474
Iteration: 14, Func. Count: 205, Neg. LLF: 136.22828631737886
Iteration: 15, Func. Count: 219, Neg. LLF: 136.2272419270051
Iteration: 16, Func. Count: 233, Neg. LLF: 136.22719017725208
Iteration: 17, Func. Count: 247, Neg. LLF: 136.22717926614573
Iteration: 18, Func. Count: 261, Neg. LLF: 136.22717610331773
Iteration: 19, Func. Count: 274, Neg. LLF: 136.22717639227338
Optimization terminated successfully (Exit mode 0)
Current function value: 136.22717610331773
Iterations: 19
Function evaluations: 274
Gradient evaluations: 19
Iteration: 1, Func. Count: 16, Neg. LLF: 141.58055333978834
Iteration: 2, Func. Count: 33, Neg. LLF: 138.03983428309857
Iteration: 3, Func. Count: 48, Neg. LLF: 143.35842661098823
Iteration: 4, Func. Count: 65, Neg. LLF: 147.69435427308076
Iteration: 5, Func. Count: 81, Neg. LLF: 139.92462300102375
Iteration: 6, Func. Count: 97, Neg. LLF: 138.14205735914126
Iteration: 7, Func. Count: 113, Neg. LLF: 136.93662103297441
Iteration: 8, Func. Count: 128, Neg. LLF: 136.74070156103951
Iteration: 9, Func. Count: 143, Neg. LLF: 136.6893359164856
Iteration: 10, Func. Count: 158, Neg. LLF: 136.59452020763055
Iteration: 11, Func. Count: 173, Neg. LLF: 136.3624687782842
Iteration: 12, Func. Count: 188, Neg. LLF: 136.30335144075835
Iteration: 13, Func. Count: 203, Neg. LLF: 136.2943597515678
Iteration: 14, Func. Count: 219, Neg. LLF: 136.23312251562956
Iteration: 15, Func. Count: 234, Neg. LLF: 136.22999019401476
Iteration: 16, Func. Count: 249, Neg. LLF: 136.22846787936834
Iteration: 17, Func. Count: 264, Neg. LLF: 136.22736826228638
Iteration: 18, Func. Count: 279, Neg. LLF: 136.2271899149819
Iteration: 19, Func. Count: 294, Neg. LLF: 136.22717842925528
Iteration: 20, Func. Count: 309, Neg. LLF: 136.22717613433807
Iteration: 21, Func. Count: 323, Neg. LLF: 136.22717637870832
Optimization terminated successfully (Exit mode 0)
Current function value: 136.22717613433807
Iterations: 21
Function evaluations: 323
Gradient evaluations: 21
Iteration: 1, Func. Count: 5, Neg. LLF: 141.27482604179136
Iteration: 2, Func. Count: 10, Neg. LLF: 139.5629053254019
Iteration: 3, Func. Count: 14, Neg. LLF: 139.25528276140358
Iteration: 4, Func. Count: 18, Neg. LLF: 139.1769783030527
Iteration: 5, Func. Count: 22, Neg. LLF: 139.1733180661377
Iteration: 6, Func. Count: 26, Neg. LLF: 139.17187554845523
Iteration: 7, Func. Count: 30, Neg. LLF: 139.17184829042304
Iteration: 8, Func. Count: 34, Neg. LLF: 139.17184734072472
Optimization terminated successfully (Exit mode 0)
Current function value: 139.17184734072472
Iterations: 8
Function evaluations: 34
Gradient evaluations: 8
Iteration: 1, Func. Count: 5, Neg. LLF: 147.89094018873283
Iteration: 2, Func. Count: 10, Neg. LLF: 142.0765476534528
Iteration: 3, Func. Count: 14, Neg. LLF: 140.21390354897562
Iteration: 4, Func. Count: 18, Neg. LLF: 140.17179109933073
Iteration: 5, Func. Count: 23, Neg. LLF: 140.09711363145388
Iteration: 6, Func. Count: 27, Neg. LLF: 140.0968547825473
Iteration: 7, Func. Count: 31, Neg. LLF: 140.09681277255007
Iteration: 8, Func. Count: 35, Neg. LLF: 140.0967956856381
Iteration: 9, Func. Count: 38, Neg. LLF: 140.09679568561347
Optimization terminated successfully (Exit mode 0)
Current function value: 140.0967956856381
Iterations: 9
Function evaluations: 38
Gradient evaluations: 9
Iteration: 1, Func. Count: 6, Neg. LLF: 149.05246533873282
Iteration: 2, Func. Count: 13, Neg. LLF: 141.17957574122556
Iteration: 3, Func. Count: 19, Neg. LLF: 140.96836214440228
Iteration: 4, Func. Count: 25, Neg. LLF: 140.75741675092138
Iteration: 5, Func. Count: 30, Neg. LLF: 140.62177127648147
Iteration: 6, Func. Count: 35, Neg. LLF: 140.11485686182547
Iteration: 7, Func. Count: 40, Neg. LLF: 140.10351498444956
Iteration: 8, Func. Count: 45, Neg. LLF: 140.09744368180722
Iteration: 9, Func. Count: 50, Neg. LLF: 140.0969816850564
Iteration: 10, Func. Count: 55, Neg. LLF: 140.09685994355797
Iteration: 11, Func. Count: 60, Neg. LLF: 140.0968032117716
Iteration: 12, Func. Count: 65, Neg. LLF: 140.09679592066448
Iteration: 13, Func. Count: 69, Neg. LLF: 140.0967959574884
Optimization terminated successfully (Exit mode 0)
Current function value: 140.09679592066448
Iterations: 13
Function evaluations: 69
Gradient evaluations: 13
Iteration: 1, Func. Count: 7, Neg. LLF: 148.17611149095296
Iteration: 2, Func. Count: 15, Neg. LLF: 141.46269203596572
Iteration: 3, Func. Count: 22, Neg. LLF: 140.8516950430249
Iteration: 4, Func. Count: 29, Neg. LLF: 140.64198835996015
Iteration: 5, Func. Count: 35, Neg. LLF: 140.58066966671313
Iteration: 6, Func. Count: 41, Neg. LLF: 140.46709423936494
Iteration: 7, Func. Count: 47, Neg. LLF: 140.12324368085268
Iteration: 8, Func. Count: 53, Neg. LLF: 140.10094832405173
Iteration: 9, Func. Count: 59, Neg. LLF: 140.09710580165702
Iteration: 10, Func. Count: 65, Neg. LLF: 140.0968642708915
Iteration: 11, Func. Count: 71, Neg. LLF: 140.09680423049844
Iteration: 12, Func. Count: 77, Neg. LLF: 140.09679842775964
Iteration: 13, Func. Count: 83, Neg. LLF: 140.09679570649732
Iteration: 14, Func. Count: 88, Neg. LLF: 140.09679573067703
Optimization terminated successfully (Exit mode 0)
Current function value: 140.09679570649732
Iterations: 14
Function evaluations: 88
Gradient evaluations: 14
Iteration: 1, Func. Count: 8, Neg. LLF: 145.70450395244004
Iteration: 2, Func. Count: 16, Neg. LLF: 142.70671227400777
Iteration: 3, Func. Count: 24, Neg. LLF: 141.0005280180683
Iteration: 4, Func. Count: 32, Neg. LLF: 140.58304662693118
Iteration: 5, Func. Count: 39, Neg. LLF: 140.57909724874204
Iteration: 6, Func. Count: 47, Neg. LLF: 140.4879180259718
Iteration: 7, Func. Count: 54, Neg. LLF: 140.19497095785692
Iteration: 8, Func. Count: 61, Neg. LLF: 140.11386474209579
Iteration: 9, Func. Count: 68, Neg. LLF: 140.1002508631526
Iteration: 10, Func. Count: 75, Neg. LLF: 140.09683106022976
Iteration: 11, Func. Count: 82, Neg. LLF: 140.09681125518404
Iteration: 12, Func. Count: 89, Neg. LLF: 140.0967956937232
Iteration: 13, Func. Count: 95, Neg. LLF: 140.09679569708047
Optimization terminated successfully (Exit mode 0)
Current function value: 140.0967956937232
Iterations: 13
Function evaluations: 95
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 144.08732975380744
Iteration: 2, Func. Count: 18, Neg. LLF: 144.5032777053385
Iteration: 3, Func. Count: 27, Neg. LLF: 140.36732555356062
Iteration: 4, Func. Count: 35, Neg. LLF: 140.27582747032318
Iteration: 5, Func. Count: 43, Neg. LLF: 140.2095045244365
Iteration: 6, Func. Count: 51, Neg. LLF: 140.174653529135
Iteration: 7, Func. Count: 59, Neg. LLF: 140.16596066278598
Iteration: 8, Func. Count: 67, Neg. LLF: 140.1369758076152
Iteration: 9, Func. Count: 75, Neg. LLF: 140.11700741298444
Iteration: 10, Func. Count: 83, Neg. LLF: 140.0974053315804
Iteration: 11, Func. Count: 91, Neg. LLF: 140.09174759483108
Iteration: 12, Func. Count: 99, Neg. LLF: 140.0906564193671
Iteration: 13, Func. Count: 107, Neg. LLF: 140.09045466148464
Iteration: 14, Func. Count: 115, Neg. LLF: 140.0904417610151
Iteration: 15, Func. Count: 123, Neg. LLF: 140.09044075511795
Iteration: 16, Func. Count: 130, Neg. LLF: 140.09044075511545
Optimization terminated successfully (Exit mode 0)
Current function value: 140.09044075511795
Iterations: 16
Function evaluations: 130
Gradient evaluations: 16
Iteration: 1, Func. Count: 6, Neg. LLF: 147.63142333537704
Iteration: 2, Func. Count: 12, Neg. LLF: 143.2816828563658
Iteration: 3, Func. Count: 18, Neg. LLF: 140.39978718941217
Iteration: 4, Func. Count: 23, Neg. LLF: 140.10425291246747
Iteration: 5, Func. Count: 28, Neg. LLF: 140.10101880574132
Iteration: 6, Func. Count: 33, Neg. LLF: 140.09774093701026
Iteration: 7, Func. Count: 38, Neg. LLF: 140.09679889714067
Iteration: 8, Func. Count: 43, Neg. LLF: 140.09679562163163
Iteration: 9, Func. Count: 47, Neg. LLF: 140.0967957309899
Optimization terminated successfully (Exit mode 0)
Current function value: 140.09679562163163
Iterations: 9
Function evaluations: 47
Gradient evaluations: 9
Iteration: 1, Func. Count: 7, Neg. LLF: 145.5816173013044
Iteration: 2, Func. Count: 16, Neg. LLF: 143.27080619755674
Iteration: 3, Func. Count: 23, Neg. LLF: 140.80874670248696
Iteration: 4, Func. Count: 29, Neg. LLF: 140.7610914980056
Iteration: 5, Func. Count: 35, Neg. LLF: 140.7343147242534
Iteration: 6, Func. Count: 41, Neg. LLF: 140.6043135612262
Iteration: 7, Func. Count: 47, Neg. LLF: 140.21003526108368
Iteration: 8, Func. Count: 53, Neg. LLF: 140.1805954737193
Iteration: 9, Func. Count: 59, Neg. LLF: 140.1195458215017
Iteration: 10, Func. Count: 65, Neg. LLF: 140.10801521746356
Iteration: 11, Func. Count: 71, Neg. LLF: 140.10137980709743
Iteration: 12, Func. Count: 77, Neg. LLF: 140.09789508559476
Iteration: 13, Func. Count: 83, Neg. LLF: 140.09687092925253
Iteration: 14, Func. Count: 89, Neg. LLF: 140.09679917849598
Iteration: 15, Func. Count: 95, Neg. LLF: 140.09679558484697
Iteration: 16, Func. Count: 100, Neg. LLF: 140.0967956216194
Optimization terminated successfully (Exit mode 0)
Current function value: 140.09679558484697
Iterations: 16
Function evaluations: 100
Gradient evaluations: 16
Iteration: 1, Func. Count: 8, Neg. LLF: 145.57518485337434
Iteration: 2, Func. Count: 17, Neg. LLF: 143.2581061266612
Iteration: 3, Func. Count: 25, Neg. LLF: 140.9366660040494
Iteration: 4, Func. Count: 33, Neg. LLF: 140.65683579312858
Iteration: 5, Func. Count: 40, Neg. LLF: 140.60463982199943
Iteration: 6, Func. Count: 47, Neg. LLF: 140.48867826058788
Iteration: 7, Func. Count: 54, Neg. LLF: 140.1806138371407
Iteration: 8, Func. Count: 61, Neg. LLF: 140.13541571299268
Iteration: 9, Func. Count: 68, Neg. LLF: 140.09786768932335
Iteration: 10, Func. Count: 75, Neg. LLF: 140.0969731058074
Iteration: 11, Func. Count: 82, Neg. LLF: 140.09679568232286
Iteration: 12, Func. Count: 88, Neg. LLF: 140.09679570652915
Optimization terminated successfully (Exit mode 0)
Current function value: 140.09679568232286
Iterations: 12
Function evaluations: 88
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 145.56208628763392
Iteration: 2, Func. Count: 19, Neg. LLF: 143.2169999802845
Iteration: 3, Func. Count: 28, Neg. LLF: 141.76303590049858
Iteration: 4, Func. Count: 37, Neg. LLF: 140.59821523589076
Iteration: 5, Func. Count: 45, Neg. LLF: 140.56517781997053
Iteration: 6, Func. Count: 53, Neg. LLF: 140.48098516197993
Iteration: 7, Func. Count: 61, Neg. LLF: 140.27259918918196
Iteration: 8, Func. Count: 69, Neg. LLF: 140.11867691942663
Iteration: 9, Func. Count: 77, Neg. LLF: 140.10262440544136
Iteration: 10, Func. Count: 85, Neg. LLF: 140.0975546382217
Iteration: 11, Func. Count: 93, Neg. LLF: 140.0969541228668
Iteration: 12, Func. Count: 101, Neg. LLF: 140.09681418159906
Iteration: 13, Func. Count: 109, Neg. LLF: 140.0968019150288
Iteration: 14, Func. Count: 117, Neg. LLF: 140.09679563633318
Iteration: 15, Func. Count: 124, Neg. LLF: 140.09679563969982
Optimization terminated successfully (Exit mode 0)
Current function value: 140.09679563633318
Iterations: 15
Function evaluations: 124
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 145.57043270916978
Iteration: 2, Func. Count: 21, Neg. LLF: 143.19413323786338
Iteration: 3, Func. Count: 31, Neg. LLF: 142.9422062487406
Iteration: 4, Func. Count: 41, Neg. LLF: 140.31914980181253
Iteration: 5, Func. Count: 50, Neg. LLF: 140.25643216994732
Iteration: 6, Func. Count: 59, Neg. LLF: 140.2074459381911
Iteration: 7, Func. Count: 68, Neg. LLF: 140.18464834582804
Iteration: 8, Func. Count: 77, Neg. LLF: 140.1705528213348
Iteration: 9, Func. Count: 86, Neg. LLF: 140.14082650626742
Iteration: 10, Func. Count: 95, Neg. LLF: 140.11010827511322
Iteration: 11, Func. Count: 104, Neg. LLF: 140.09213647591574
Iteration: 12, Func. Count: 113, Neg. LLF: 140.090633243354
Iteration: 13, Func. Count: 122, Neg. LLF: 140.09047733690124
Iteration: 14, Func. Count: 131, Neg. LLF: 140.09044076871538
Iteration: 15, Func. Count: 139, Neg. LLF: 140.09044076873724
Optimization terminated successfully (Exit mode 0)
Current function value: 140.09044076871538
Iterations: 15
Function evaluations: 139
Gradient evaluations: 15
Iteration: 1, Func. Count: 7, Neg. LLF: 145.45681612236692
Iteration: 2, Func. Count: 14, Neg. LLF: 142.2463817117621
Iteration: 3, Func. Count: 20, Neg. LLF: 140.46465336426832
Iteration: 4, Func. Count: 26, Neg. LLF: 140.28217714201173
Iteration: 5, Func. Count: 32, Neg. LLF: 140.24428887696334
Iteration: 6, Func. Count: 38, Neg. LLF: 140.14422916671535
Iteration: 7, Func. Count: 44, Neg. LLF: 140.11599654292164
Iteration: 8, Func. Count: 50, Neg. LLF: 140.09816369149638
Iteration: 9, Func. Count: 56, Neg. LLF: 140.09686312012266
Iteration: 10, Func. Count: 62, Neg. LLF: 140.09679558150455
Iteration: 11, Func. Count: 67, Neg. LLF: 140.09679565283125
Optimization terminated successfully (Exit mode 0)
Current function value: 140.09679558150455
Iterations: 11
Function evaluations: 67
Gradient evaluations: 11
Iteration: 1, Func. Count: 8, Neg. LLF: 145.6224542386939
Iteration: 2, Func. Count: 18, Neg. LLF: 143.3598784611702
Iteration: 3, Func. Count: 26, Neg. LLF: 140.82011442900142
Iteration: 4, Func. Count: 33, Neg. LLF: 140.76009618698725
Iteration: 5, Func. Count: 40, Neg. LLF: 140.73366745634874
Iteration: 6, Func. Count: 47, Neg. LLF: 140.54478352178216
Iteration: 7, Func. Count: 54, Neg. LLF: 140.21388261557544
Iteration: 8, Func. Count: 61, Neg. LLF: 140.1765293604263
Iteration: 9, Func. Count: 68, Neg. LLF: 140.12923963560556
Iteration: 10, Func. Count: 75, Neg. LLF: 140.11370533784816
Iteration: 11, Func. Count: 82, Neg. LLF: 140.10374803540105
Iteration: 12, Func. Count: 89, Neg. LLF: 140.0995925096438
Iteration: 13, Func. Count: 96, Neg. LLF: 140.09728579685873
Iteration: 14, Func. Count: 103, Neg. LLF: 140.0968309843995
Iteration: 15, Func. Count: 110, Neg. LLF: 140.09679698392372
Iteration: 16, Func. Count: 117, Neg. LLF: 140.0967955721273
Iteration: 17, Func. Count: 123, Neg. LLF: 140.09679560889185
Optimization terminated successfully (Exit mode 0)
Current function value: 140.0967955721273
Iterations: 17
Function evaluations: 123
Gradient evaluations: 17
Iteration: 1, Func. Count: 9, Neg. LLF: 145.62403017598317
Iteration: 2, Func. Count: 19, Neg. LLF: 143.38056468381387
Iteration: 3, Func. Count: 28, Neg. LLF: 140.84622177015223
Iteration: 4, Func. Count: 36, Neg. LLF: 140.678658741916
Iteration: 5, Func. Count: 44, Neg. LLF: 140.66241561866832
Iteration: 6, Func. Count: 52, Neg. LLF: 140.5861828292264
Iteration: 7, Func. Count: 60, Neg. LLF: 140.43883899567962
Iteration: 8, Func. Count: 68, Neg. LLF: 140.17779720261856
Iteration: 9, Func. Count: 76, Neg. LLF: 140.12977085152488
Iteration: 10, Func. Count: 84, Neg. LLF: 140.10071266382084
Iteration: 11, Func. Count: 92, Neg. LLF: 140.09773440154444
Iteration: 12, Func. Count: 100, Neg. LLF: 140.09689176057992
Iteration: 13, Func. Count: 108, Neg. LLF: 140.09680695220865
Iteration: 14, Func. Count: 116, Neg. LLF: 140.0967958831066
Iteration: 15, Func. Count: 123, Neg. LLF: 140.096795907338
Optimization terminated successfully (Exit mode 0)
Current function value: 140.0967958831066
Iterations: 15
Function evaluations: 123
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 145.62327612475852
Iteration: 2, Func. Count: 21, Neg. LLF: 143.34300855171193
Iteration: 3, Func. Count: 31, Neg. LLF: 141.2980582713804
Iteration: 4, Func. Count: 41, Neg. LLF: 140.60236220485154
Iteration: 5, Func. Count: 50, Neg. LLF: 140.55521987668638
Iteration: 6, Func. Count: 59, Neg. LLF: 140.3679019812192
Iteration: 7, Func. Count: 68, Neg. LLF: 140.13629331803557
Iteration: 8, Func. Count: 77, Neg. LLF: 140.11416579508588
Iteration: 9, Func. Count: 86, Neg. LLF: 140.09705804340717
Iteration: 10, Func. Count: 95, Neg. LLF: 140.0968165715586
Iteration: 11, Func. Count: 104, Neg. LLF: 140.09679920297793
Iteration: 12, Func. Count: 113, Neg. LLF: 140.09679629855657
Iteration: 13, Func. Count: 122, Neg. LLF: 140.09679557431946
Optimization terminated successfully (Exit mode 0)
Current function value: 140.09679557431946
Iterations: 13
Function evaluations: 122
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 145.63886588692054
Iteration: 2, Func. Count: 23, Neg. LLF: 143.30887070503397
Iteration: 3, Func. Count: 34, Neg. LLF: 142.843044236854
Iteration: 4, Func. Count: 45, Neg. LLF: 140.31614896188398
Iteration: 5, Func. Count: 55, Neg. LLF: 140.26063906528987
Iteration: 6, Func. Count: 65, Neg. LLF: 140.2136058585543
Iteration: 7, Func. Count: 75, Neg. LLF: 140.19605571584617
Iteration: 8, Func. Count: 85, Neg. LLF: 140.1700014442339
Iteration: 9, Func. Count: 95, Neg. LLF: 140.14220131198599
Iteration: 10, Func. Count: 105, Neg. LLF: 140.10346759611474
Iteration: 11, Func. Count: 115, Neg. LLF: 140.09167604293765
Iteration: 12, Func. Count: 125, Neg. LLF: 140.090611177797
Iteration: 13, Func. Count: 135, Neg. LLF: 140.09045848699864
Iteration: 14, Func. Count: 145, Neg. LLF: 140.09044120207994
Iteration: 15, Func. Count: 155, Neg. LLF: 140.09044058422248
Optimization terminated successfully (Exit mode 0)
Current function value: 140.09044058422248
Iterations: 15
Function evaluations: 155
Gradient evaluations: 15
Iteration: 1, Func. Count: 8, Neg. LLF: 145.48146826095928
Iteration: 2, Func. Count: 16, Neg. LLF: 143.55441302538148
Iteration: 3, Func. Count: 26, Neg. LLF: 147.77802746388076
Iteration: 4, Func. Count: 34, Neg. LLF: 140.41043078389615
Iteration: 5, Func. Count: 41, Neg. LLF: 140.14584754028388
Iteration: 6, Func. Count: 48, Neg. LLF: 140.12114875645955
Iteration: 7, Func. Count: 55, Neg. LLF: 140.10898111312434
Iteration: 8, Func. Count: 62, Neg. LLF: 140.09885213704501
Iteration: 9, Func. Count: 69, Neg. LLF: 140.09693273167406
Iteration: 10, Func. Count: 76, Neg. LLF: 140.0967968115014
Iteration: 11, Func. Count: 83, Neg. LLF: 140.0967955637176
Iteration: 12, Func. Count: 89, Neg. LLF: 140.09679557179254
Optimization terminated successfully (Exit mode 0)
Current function value: 140.0967955637176
Iterations: 12
Function evaluations: 89
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 145.6173308194278
Iteration: 2, Func. Count: 20, Neg. LLF: 143.35861834600405
Iteration: 3, Func. Count: 29, Neg. LLF: 140.8231820326655
Iteration: 4, Func. Count: 37, Neg. LLF: 140.75969602687877
Iteration: 5, Func. Count: 45, Neg. LLF: 140.73329064857782
Iteration: 6, Func. Count: 53, Neg. LLF: 140.5518163663992
Iteration: 7, Func. Count: 61, Neg. LLF: 140.2216837587044
Iteration: 8, Func. Count: 69, Neg. LLF: 140.17993471368806
Iteration: 9, Func. Count: 77, Neg. LLF: 140.13021489191826
Iteration: 10, Func. Count: 85, Neg. LLF: 140.1141326727977
Iteration: 11, Func. Count: 93, Neg. LLF: 140.103487206664
Iteration: 12, Func. Count: 101, Neg. LLF: 140.09956901701852
Iteration: 13, Func. Count: 109, Neg. LLF: 140.097355202225
Iteration: 14, Func. Count: 117, Neg. LLF: 140.09684261113398
Iteration: 15, Func. Count: 125, Neg. LLF: 140.0967976922411
Iteration: 16, Func. Count: 133, Neg. LLF: 140.09679558437458
Iteration: 17, Func. Count: 140, Neg. LLF: 140.09679562113865
Optimization terminated successfully (Exit mode 0)
Current function value: 140.09679558437458
Iterations: 17
Function evaluations: 140
Gradient evaluations: 17
Iteration: 1, Func. Count: 10, Neg. LLF: 145.61957127628273
Iteration: 2, Func. Count: 21, Neg. LLF: 143.38092804565707
Iteration: 3, Func. Count: 31, Neg. LLF: 140.84142244032063
Iteration: 4, Func. Count: 40, Neg. LLF: 140.67833182163602
Iteration: 5, Func. Count: 49, Neg. LLF: 140.66078879574607
Iteration: 6, Func. Count: 58, Neg. LLF: 140.5833736299954
Iteration: 7, Func. Count: 67, Neg. LLF: 140.43191013297667
Iteration: 8, Func. Count: 76, Neg. LLF: 140.2243018826133
Iteration: 9, Func. Count: 85, Neg. LLF: 140.12669919576388
Iteration: 10, Func. Count: 94, Neg. LLF: 140.10020843307757
Iteration: 11, Func. Count: 103, Neg. LLF: 140.09693891647387
Iteration: 12, Func. Count: 112, Neg. LLF: 140.0968146307723
Iteration: 13, Func. Count: 121, Neg. LLF: 140.0968015291901
Iteration: 14, Func. Count: 130, Neg. LLF: 140.09679650592676
Iteration: 15, Func. Count: 139, Neg. LLF: 140.0967956129225
Optimization terminated successfully (Exit mode 0)
Current function value: 140.0967956129225
Iterations: 15
Function evaluations: 139
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 145.61967306102608
Iteration: 2, Func. Count: 23, Neg. LLF: 143.3437416890996
Iteration: 3, Func. Count: 34, Neg. LLF: 141.27372584792397
Iteration: 4, Func. Count: 45, Neg. LLF: 140.6021494884392
Iteration: 5, Func. Count: 55, Neg. LLF: 140.55520391127882
Iteration: 6, Func. Count: 65, Neg. LLF: 140.37929040633747
Iteration: 7, Func. Count: 75, Neg. LLF: 140.13482443450218
Iteration: 8, Func. Count: 85, Neg. LLF: 140.1140046236308
Iteration: 9, Func. Count: 95, Neg. LLF: 140.09710631598446
Iteration: 10, Func. Count: 105, Neg. LLF: 140.09680912677865
Iteration: 11, Func. Count: 115, Neg. LLF: 140.09679999075385
Iteration: 12, Func. Count: 125, Neg. LLF: 140.09679559346162
Iteration: 13, Func. Count: 134, Neg. LLF: 140.0967955968201
Optimization terminated successfully (Exit mode 0)
Current function value: 140.09679559346162
Iterations: 13
Function evaluations: 134
Gradient evaluations: 13
Iteration: 1, Func. Count: 12, Neg. LLF: 145.63542711523908
Iteration: 2, Func. Count: 25, Neg. LLF: 143.30875521240432
Iteration: 3, Func. Count: 37, Neg. LLF: 142.8498622871482
Iteration: 4, Func. Count: 49, Neg. LLF: 140.31539851358988
Iteration: 5, Func. Count: 60, Neg. LLF: 140.25997148017075
Iteration: 6, Func. Count: 71, Neg. LLF: 140.2141393280405
Iteration: 7, Func. Count: 82, Neg. LLF: 140.19672954368582
Iteration: 8, Func. Count: 93, Neg. LLF: 140.16983043213332
Iteration: 9, Func. Count: 104, Neg. LLF: 140.14159898790726
Iteration: 10, Func. Count: 115, Neg. LLF: 140.10313265070656
Iteration: 11, Func. Count: 126, Neg. LLF: 140.0916848366719
Iteration: 12, Func. Count: 137, Neg. LLF: 140.0906047036727
Iteration: 13, Func. Count: 148, Neg. LLF: 140.09045755073726
Iteration: 14, Func. Count: 159, Neg. LLF: 140.09044118650274
Iteration: 15, Func. Count: 170, Neg. LLF: 140.09044058676045
Optimization terminated successfully (Exit mode 0)
Current function value: 140.09044058676045
Iterations: 15
Function evaluations: 170
Gradient evaluations: 15
Iteration: 1, Func. Count: 5, Neg. LLF: 141.98250268992828
Iteration: 2, Func. Count: 10, Neg. LLF: 140.3362016896183
Iteration: 3, Func. Count: 14, Neg. LLF: 140.17588075135163
Iteration: 4, Func. Count: 18, Neg. LLF: 139.96671029226428
Iteration: 5, Func. Count: 22, Neg. LLF: 139.95965237238946
Iteration: 6, Func. Count: 26, Neg. LLF: 139.95872272451166
Iteration: 7, Func. Count: 30, Neg. LLF: 139.9585674735762
Iteration: 8, Func. Count: 34, Neg. LLF: 139.95852487757568
Iteration: 9, Func. Count: 37, Neg. LLF: 139.958524877549
Optimization terminated successfully (Exit mode 0)
Current function value: 139.95852487757568
Iterations: 9
Function evaluations: 37
Gradient evaluations: 9
Iteration: 1, Func. Count: 6, Neg. LLF: 146.4723587721441
Iteration: 2, Func. Count: 12, Neg. LLF: 147.35566647882197
Iteration: 3, Func. Count: 19, Neg. LLF: 139.80462439702725
Iteration: 4, Func. Count: 25, Neg. LLF: 139.7954445188286
Iteration: 5, Func. Count: 30, Neg. LLF: 139.7930719104334
Iteration: 6, Func. Count: 35, Neg. LLF: 139.78345265154965
Iteration: 7, Func. Count: 40, Neg. LLF: 139.78146350308864
Iteration: 8, Func. Count: 45, Neg. LLF: 139.78127333046282
Iteration: 9, Func. Count: 50, Neg. LLF: 139.78127038952522
Iteration: 10, Func. Count: 54, Neg. LLF: 139.78127038952
Optimization terminated successfully (Exit mode 0)
Current function value: 139.78127038952522
Iterations: 10
Function evaluations: 54
Gradient evaluations: 10
Iteration: 1, Func. Count: 7, Neg. LLF: 146.68513108353832
Iteration: 2, Func. Count: 14, Neg. LLF: 147.46674669769732
Iteration: 3, Func. Count: 21, Neg. LLF: 139.69972578754565
Iteration: 4, Func. Count: 28, Neg. LLF: 139.68178655990704
Iteration: 5, Func. Count: 35, Neg. LLF: 139.6707122972194
Iteration: 6, Func. Count: 41, Neg. LLF: 139.67039550639691
Iteration: 7, Func. Count: 48, Neg. LLF: 139.6670407055761
Iteration: 8, Func. Count: 54, Neg. LLF: 139.66390992877328
Iteration: 9, Func. Count: 60, Neg. LLF: 139.6634230729138
Iteration: 10, Func. Count: 66, Neg. LLF: 139.66341298029516
Iteration: 11, Func. Count: 71, Neg. LLF: 139.66341298032845
Optimization terminated successfully (Exit mode 0)
Current function value: 139.66341298029516
Iterations: 11
Function evaluations: 71
Gradient evaluations: 11
Iteration: 1, Func. Count: 8, Neg. LLF: 142.39082497539485
Iteration: 2, Func. Count: 16, Neg. LLF: 140.87788856456152
Iteration: 3, Func. Count: 24, Neg. LLF: 143.19219799523086
Iteration: 4, Func. Count: 32, Neg. LLF: 139.94796588863235
Iteration: 5, Func. Count: 40, Neg. LLF: 139.6328530905262
Iteration: 6, Func. Count: 47, Neg. LLF: 139.63209474053275
Iteration: 7, Func. Count: 54, Neg. LLF: 139.6272093146004
Iteration: 8, Func. Count: 61, Neg. LLF: 139.622152514726
Iteration: 9, Func. Count: 68, Neg. LLF: 139.6112094843494
Iteration: 10, Func. Count: 75, Neg. LLF: 139.60646618453728
Iteration: 11, Func. Count: 82, Neg. LLF: 139.60585794553845
Iteration: 12, Func. Count: 89, Neg. LLF: 139.60583293163631
Iteration: 13, Func. Count: 95, Neg. LLF: 139.6058329315976
Optimization terminated successfully (Exit mode 0)
Current function value: 139.60583293163631
Iterations: 13
Function evaluations: 95
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 142.3299917725115
Iteration: 2, Func. Count: 18, Neg. LLF: 140.83751648986956
Iteration: 3, Func. Count: 27, Neg. LLF: 143.28315928593983
Iteration: 4, Func. Count: 36, Neg. LLF: 139.71116747539278
Iteration: 5, Func. Count: 44, Neg. LLF: 139.86070802096106
Iteration: 6, Func. Count: 53, Neg. LLF: 139.76050796116732
Iteration: 7, Func. Count: 62, Neg. LLF: 139.63039166656773
Iteration: 8, Func. Count: 70, Neg. LLF: 139.62734362601216
Iteration: 9, Func. Count: 78, Neg. LLF: 139.61933723962545
Iteration: 10, Func. Count: 86, Neg. LLF: 139.6114839111583
Iteration: 11, Func. Count: 94, Neg. LLF: 139.60685525201896
Iteration: 12, Func. Count: 102, Neg. LLF: 139.60588469538382
Iteration: 13, Func. Count: 110, Neg. LLF: 139.60583286440868
Iteration: 14, Func. Count: 117, Neg. LLF: 139.60583290740524
Optimization terminated successfully (Exit mode 0)
Current function value: 139.60583286440868
Iterations: 14
Function evaluations: 117
Gradient evaluations: 14
Iteration: 1, Func. Count: 6, Neg. LLF: 142.0119420213879
Iteration: 2, Func. Count: 12, Neg. LLF: 142.56897351252886
Iteration: 3, Func. Count: 18, Neg. LLF: 140.06192436485307
Iteration: 4, Func. Count: 23, Neg. LLF: 140.35642746066296
Iteration: 5, Func. Count: 29, Neg. LLF: 139.8758351924989
Iteration: 6, Func. Count: 34, Neg. LLF: 139.8643878430841
Iteration: 7, Func. Count: 39, Neg. LLF: 139.8630641454611
Iteration: 8, Func. Count: 44, Neg. LLF: 139.863015908607
Iteration: 9, Func. Count: 48, Neg. LLF: 139.86301590861387
Optimization terminated successfully (Exit mode 0)
Current function value: 139.863015908607
Iterations: 9
Function evaluations: 48
Gradient evaluations: 9
Iteration: 1, Func. Count: 7, Neg. LLF: 141.03686329308476
Iteration: 2, Func. Count: 14, Neg. LLF: 165.10087158617256
Iteration: 3, Func. Count: 22, Neg. LLF: 139.74178230479927
Iteration: 4, Func. Count: 29, Neg. LLF: 139.39611206675846
Iteration: 5, Func. Count: 35, Neg. LLF: 147.8675563845505
Iteration: 6, Func. Count: 43, Neg. LLF: 139.0094642000761
Iteration: 7, Func. Count: 49, Neg. LLF: 138.90703433910286
Iteration: 8, Func. Count: 55, Neg. LLF: 138.80540693431098
Iteration: 9, Func. Count: 61, Neg. LLF: 138.78632279313928
Iteration: 10, Func. Count: 67, Neg. LLF: 138.78505295149662
Iteration: 11, Func. Count: 73, Neg. LLF: 138.78495949584118
Iteration: 12, Func. Count: 79, Neg. LLF: 138.78495030565603
Iteration: 13, Func. Count: 84, Neg. LLF: 138.78495030578284
Optimization terminated successfully (Exit mode 0)
Current function value: 138.78495030565603
Iterations: 13
Function evaluations: 84
Gradient evaluations: 13
Iteration: 1, Func. Count: 8, Neg. LLF: 162.36958911466942
Iteration: 2, Func. Count: 16, Neg. LLF: 141.93321497172747
Iteration: 3, Func. Count: 24, Neg. LLF: 139.86701614940046
Iteration: 4, Func. Count: 32, Neg. LLF: 139.4875725546061
Iteration: 5, Func. Count: 40, Neg. LLF: 139.32698512985527
Iteration: 6, Func. Count: 47, Neg. LLF: 139.155652316373
Iteration: 7, Func. Count: 54, Neg. LLF: 139.09783545024072
Iteration: 8, Func. Count: 62, Neg. LLF: 138.91904125752805
Iteration: 9, Func. Count: 69, Neg. LLF: 138.80787964113964
Iteration: 10, Func. Count: 76, Neg. LLF: 138.82413540744463
Iteration: 11, Func. Count: 84, Neg. LLF: 138.7860322293671
Iteration: 12, Func. Count: 91, Neg. LLF: 138.78496169192772
Iteration: 13, Func. Count: 98, Neg. LLF: 138.78495137159194
Iteration: 14, Func. Count: 105, Neg. LLF: 138.78494994724292
Iteration: 15, Func. Count: 111, Neg. LLF: 138.78494996360686
Optimization terminated successfully (Exit mode 0)
Current function value: 138.78494994724292
Iterations: 15
Function evaluations: 111
Gradient evaluations: 15
Iteration: 1, Func. Count: 9, Neg. LLF: 141.873296154145
Iteration: 2, Func. Count: 18, Neg. LLF: 146.96933035564948
Iteration: 3, Func. Count: 27, Neg. LLF: 141.04646451013653
Iteration: 4, Func. Count: 36, Neg. LLF: 139.97224005411292
Iteration: 5, Func. Count: 45, Neg. LLF: 139.5958428963575
Iteration: 6, Func. Count: 53, Neg. LLF: 139.56553657540962
Iteration: 7, Func. Count: 61, Neg. LLF: 139.58006770634645
Iteration: 8, Func. Count: 70, Neg. LLF: 139.49097065268938
Iteration: 9, Func. Count: 78, Neg. LLF: 139.2927316516128
Iteration: 10, Func. Count: 86, Neg. LLF: 139.74091016428432
Iteration: 11, Func. Count: 95, Neg. LLF: 139.19578914147283
Iteration: 12, Func. Count: 103, Neg. LLF: 139.2930524318571
Iteration: 13, Func. Count: 112, Neg. LLF: 139.1631846594055
Iteration: 14, Func. Count: 120, Neg. LLF: 139.15348658750042
Iteration: 15, Func. Count: 128, Neg. LLF: 138.95750464698847
Iteration: 16, Func. Count: 136, Neg. LLF: 138.88976234973305
Iteration: 17, Func. Count: 144, Neg. LLF: 138.84382867158308
Iteration: 18, Func. Count: 152, Neg. LLF: 138.7927038909571
Iteration: 19, Func. Count: 160, Neg. LLF: 138.78583648777504
Iteration: 20, Func. Count: 168, Neg. LLF: 138.78506056531208
Iteration: 21, Func. Count: 176, Neg. LLF: 138.7849921574913
Iteration: 22, Func. Count: 184, Neg. LLF: 138.78495006486241
Iteration: 23, Func. Count: 191, Neg. LLF: 138.78495011674937
Optimization terminated successfully (Exit mode 0)
Current function value: 138.78495006486241
Iterations: 23
Function evaluations: 191
Gradient evaluations: 23
Iteration: 1, Func. Count: 10, Neg. LLF: 142.03477467543865
Iteration: 2, Func. Count: 20, Neg. LLF: 147.110837437707
Iteration: 3, Func. Count: 30, Neg. LLF: 139.863763387554
Iteration: 4, Func. Count: 40, Neg. LLF: 139.6716489032802
Iteration: 5, Func. Count: 49, Neg. LLF: 139.67627410083907
Iteration: 6, Func. Count: 59, Neg. LLF: 139.6225384396975
Iteration: 7, Func. Count: 69, Neg. LLF: 139.56478469311398
Iteration: 8, Func. Count: 78, Neg. LLF: 139.4976403218662
Iteration: 9, Func. Count: 87, Neg. LLF: 139.37386336480364
Iteration: 10, Func. Count: 96, Neg. LLF: 140.50951376472437
Iteration: 11, Func. Count: 106, Neg. LLF: 139.25909569073303
Iteration: 12, Func. Count: 115, Neg. LLF: 139.1792021507004
Iteration: 13, Func. Count: 124, Neg. LLF: 139.16742754190386
Iteration: 14, Func. Count: 133, Neg. LLF: 139.16747590451467
Iteration: 15, Func. Count: 143, Neg. LLF: 139.15768928921338
Iteration: 16, Func. Count: 152, Neg. LLF: 139.08377071479418
Iteration: 17, Func. Count: 161, Neg. LLF: 138.96264016273273
Iteration: 18, Func. Count: 170, Neg. LLF: 138.94405972789983
Iteration: 19, Func. Count: 179, Neg. LLF: 138.87753885032512
Iteration: 20, Func. Count: 188, Neg. LLF: 138.8193396100587
Iteration: 21, Func. Count: 197, Neg. LLF: 138.79465992765074
Iteration: 22, Func. Count: 206, Neg. LLF: 138.787365702319
Iteration: 23, Func. Count: 215, Neg. LLF: 138.78499296562674
Iteration: 24, Func. Count: 224, Neg. LLF: 138.78495069796796
Iteration: 25, Func. Count: 233, Neg. LLF: 138.78693471067436
Optimization terminated successfully (Exit mode 0)
Current function value: 138.78495066912822
Iterations: 26
Function evaluations: 236
Gradient evaluations: 25
Iteration: 1, Func. Count: 7, Neg. LLF: 141.9955864226322
Iteration: 2, Func. Count: 14, Neg. LLF: 140.66132167838975
Iteration: 3, Func. Count: 20, Neg. LLF: 139.92041512434506
Iteration: 4, Func. Count: 26, Neg. LLF: 139.91629675980894
Iteration: 5, Func. Count: 33, Neg. LLF: 139.87441071677657
Iteration: 6, Func. Count: 39, Neg. LLF: 139.86523805196973
Iteration: 7, Func. Count: 45, Neg. LLF: 139.8632800846437
Iteration: 8, Func. Count: 51, Neg. LLF: 139.863060771244
Iteration: 9, Func. Count: 57, Neg. LLF: 139.86301579666636
Iteration: 10, Func. Count: 62, Neg. LLF: 139.8630158866061
Optimization terminated successfully (Exit mode 0)
Current function value: 139.86301579666636
Iterations: 10
Function evaluations: 62
Gradient evaluations: 10
Iteration: 1, Func. Count: 8, Neg. LLF: 141.04468874797
Iteration: 2, Func. Count: 16, Neg. LLF: 165.14186598974123
Iteration: 3, Func. Count: 25, Neg. LLF: 139.75318303821348
Iteration: 4, Func. Count: 33, Neg. LLF: 139.38582182139126
Iteration: 5, Func. Count: 40, Neg. LLF: 149.10905567952233
Iteration: 6, Func. Count: 49, Neg. LLF: 138.98734386295519
Iteration: 7, Func. Count: 56, Neg. LLF: 138.95211278622753
Iteration: 8, Func. Count: 64, Neg. LLF: 138.79303145703452
Iteration: 9, Func. Count: 71, Neg. LLF: 138.78860847819635
Iteration: 10, Func. Count: 78, Neg. LLF: 138.78506482343252
Iteration: 11, Func. Count: 85, Neg. LLF: 138.7849670965135
Iteration: 12, Func. Count: 92, Neg. LLF: 138.78495001925955
Iteration: 13, Func. Count: 98, Neg. LLF: 138.78495001928326
Optimization terminated successfully (Exit mode 0)
Current function value: 138.78495001925955
Iterations: 13
Function evaluations: 98
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 162.35186896257238
Iteration: 2, Func. Count: 18, Neg. LLF: 141.93423975551084
Iteration: 3, Func. Count: 27, Neg. LLF: 139.9353447002871
Iteration: 4, Func. Count: 36, Neg. LLF: 139.49822116165797
Iteration: 5, Func. Count: 45, Neg. LLF: 139.32020413087284
Iteration: 6, Func. Count: 53, Neg. LLF: 139.18031726612625
Iteration: 7, Func. Count: 61, Neg. LLF: 139.0134547700822
Iteration: 8, Func. Count: 69, Neg. LLF: 139.02184924319596
Iteration: 9, Func. Count: 78, Neg. LLF: 138.79182449327612
Iteration: 10, Func. Count: 86, Neg. LLF: 138.78979517681898
Iteration: 11, Func. Count: 94, Neg. LLF: 138.78511986531285
Iteration: 12, Func. Count: 102, Neg. LLF: 138.78495768300118
Iteration: 13, Func. Count: 110, Neg. LLF: 138.78494996520377
Iteration: 14, Func. Count: 117, Neg. LLF: 138.78494998153414
Optimization terminated successfully (Exit mode 0)
Current function value: 138.78494996520377
Iterations: 14
Function evaluations: 117
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 142.39248472847422
Iteration: 2, Func. Count: 20, Neg. LLF: 146.26610043102713
Iteration: 3, Func. Count: 30, Neg. LLF: 141.16807124344476
Iteration: 4, Func. Count: 40, Neg. LLF: 140.00593200737887
Iteration: 5, Func. Count: 50, Neg. LLF: 139.61624404361305
Iteration: 6, Func. Count: 59, Neg. LLF: 139.93157731523743
Iteration: 7, Func. Count: 69, Neg. LLF: 139.55807589257319
Iteration: 8, Func. Count: 78, Neg. LLF: 139.51219627088793
Iteration: 9, Func. Count: 87, Neg. LLF: 139.43038920433156
Iteration: 10, Func. Count: 96, Neg. LLF: 139.62693195625576
Iteration: 11, Func. Count: 106, Neg. LLF: 139.21108190737596
Iteration: 12, Func. Count: 115, Neg. LLF: 139.48874717389253
Iteration: 13, Func. Count: 125, Neg. LLF: 139.1605732987564
Iteration: 14, Func. Count: 134, Neg. LLF: 139.08741881766971
Iteration: 15, Func. Count: 143, Neg. LLF: 138.94572803063295
Iteration: 16, Func. Count: 152, Neg. LLF: 138.90495539441997
Iteration: 17, Func. Count: 161, Neg. LLF: 138.79937637972014
Iteration: 18, Func. Count: 170, Neg. LLF: 138.7852632283174
Iteration: 19, Func. Count: 179, Neg. LLF: 138.7851041809281
Iteration: 20, Func. Count: 188, Neg. LLF: 138.78495296355644
Iteration: 21, Func. Count: 197, Neg. LLF: 138.7849510313798
Iteration: 22, Func. Count: 206, Neg. LLF: 138.78494996913557
Iteration: 23, Func. Count: 214, Neg. LLF: 138.7849500210183
Optimization terminated successfully (Exit mode 0)
Current function value: 138.78494996913557
Iterations: 23
Function evaluations: 214
Gradient evaluations: 23
Iteration: 1, Func. Count: 11, Neg. LLF: 142.3216251473309
Iteration: 2, Func. Count: 22, Neg. LLF: 141.59621248765112
Iteration: 3, Func. Count: 33, Neg. LLF: 140.2020658163329
Iteration: 4, Func. Count: 44, Neg. LLF: 139.7371106492496
Iteration: 5, Func. Count: 55, Neg. LLF: 139.6990066648391
Iteration: 6, Func. Count: 66, Neg. LLF: 139.57354253752072
Iteration: 7, Func. Count: 76, Neg. LLF: 139.64988111177337
Iteration: 8, Func. Count: 87, Neg. LLF: 139.51643344077468
Iteration: 9, Func. Count: 97, Neg. LLF: 139.41239787531538
Iteration: 10, Func. Count: 107, Neg. LLF: 139.52159048712136
Iteration: 11, Func. Count: 118, Neg. LLF: 139.3647293465724
Iteration: 12, Func. Count: 129, Neg. LLF: 139.1929726909996
Iteration: 13, Func. Count: 139, Neg. LLF: 139.19284114946282
Iteration: 14, Func. Count: 150, Neg. LLF: 139.15930781895355
Iteration: 15, Func. Count: 160, Neg. LLF: 139.03541008672477
Iteration: 16, Func. Count: 170, Neg. LLF: 138.96914245053966
Iteration: 17, Func. Count: 180, Neg. LLF: 138.91475695922307
Iteration: 18, Func. Count: 190, Neg. LLF: 138.8231344605112
Iteration: 19, Func. Count: 200, Neg. LLF: 138.79520763222453
Iteration: 20, Func. Count: 210, Neg. LLF: 138.78758731509805
Iteration: 21, Func. Count: 220, Neg. LLF: 138.78503322561468
Iteration: 22, Func. Count: 230, Neg. LLF: 138.78495170725196
Iteration: 23, Func. Count: 240, Neg. LLF: 138.78494995902452
Iteration: 24, Func. Count: 249, Neg. LLF: 138.78495006025537
Optimization terminated successfully (Exit mode 0)
Current function value: 138.78494995902452
Iterations: 24
Function evaluations: 249
Gradient evaluations: 24
Iteration: 1, Func. Count: 8, Neg. LLF: 142.0982302452502
Iteration: 2, Func. Count: 16, Neg. LLF: 143.43116616603038
Iteration: 3, Func. Count: 25, Neg. LLF: 140.2598744999143
Iteration: 4, Func. Count: 32, Neg. LLF: 140.7273383415341
Iteration: 5, Func. Count: 40, Neg. LLF: 139.96172396498872
Iteration: 6, Func. Count: 47, Neg. LLF: 139.91012311409258
Iteration: 7, Func. Count: 54, Neg. LLF: 139.87095845507113
Iteration: 8, Func. Count: 61, Neg. LLF: 139.86324712189455
Iteration: 9, Func. Count: 68, Neg. LLF: 139.86302958323336
Iteration: 10, Func. Count: 75, Neg. LLF: 139.8630160884536
Iteration: 11, Func. Count: 81, Neg. LLF: 139.86301612673682
Optimization terminated successfully (Exit mode 0)
Current function value: 139.8630160884536
Iterations: 11
Function evaluations: 81
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 141.05139881240927
Iteration: 2, Func. Count: 18, Neg. LLF: 165.1864532248785
Iteration: 3, Func. Count: 28, Neg. LLF: 139.74831316200962
Iteration: 4, Func. Count: 37, Neg. LLF: 139.37877425993457
Iteration: 5, Func. Count: 45, Neg. LLF: 148.10369689366513
Iteration: 6, Func. Count: 55, Neg. LLF: 138.9702189289991
Iteration: 7, Func. Count: 63, Neg. LLF: 139.0096457232635
Iteration: 8, Func. Count: 72, Neg. LLF: 138.79517308428973
Iteration: 9, Func. Count: 80, Neg. LLF: 138.7863083596392
Iteration: 10, Func. Count: 88, Neg. LLF: 138.7850584740055
Iteration: 11, Func. Count: 96, Neg. LLF: 138.784956854072
Iteration: 12, Func. Count: 104, Neg. LLF: 138.7849500521361
Iteration: 13, Func. Count: 111, Neg. LLF: 138.7849500521693
Optimization terminated successfully (Exit mode 0)
Current function value: 138.7849500521361
Iterations: 13
Function evaluations: 111
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 162.37494293785804
Iteration: 2, Func. Count: 20, Neg. LLF: 141.94597544014914
Iteration: 3, Func. Count: 30, Neg. LLF: 139.97159924420149
Iteration: 4, Func. Count: 40, Neg. LLF: 139.5025114155702
Iteration: 5, Func. Count: 50, Neg. LLF: 139.32099901290238
Iteration: 6, Func. Count: 59, Neg. LLF: 139.2100398016059
Iteration: 7, Func. Count: 68, Neg. LLF: 139.0012658601348
Iteration: 8, Func. Count: 77, Neg. LLF: 139.0529628129571
Iteration: 9, Func. Count: 87, Neg. LLF: 138.7963329924349
Iteration: 10, Func. Count: 96, Neg. LLF: 138.80160692333587
Iteration: 11, Func. Count: 106, Neg. LLF: 138.7851304783894
Iteration: 12, Func. Count: 115, Neg. LLF: 138.78495901138922
Iteration: 13, Func. Count: 124, Neg. LLF: 138.7849499467089
Iteration: 14, Func. Count: 132, Neg. LLF: 138.78494996311883
Optimization terminated successfully (Exit mode 0)
Current function value: 138.7849499467089
Iterations: 14
Function evaluations: 132
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 142.40691154004207
Iteration: 2, Func. Count: 22, Neg. LLF: 145.7884602744986
Iteration: 3, Func. Count: 33, Neg. LLF: 141.17376070313057
Iteration: 4, Func. Count: 44, Neg. LLF: 140.03046236699245
Iteration: 5, Func. Count: 55, Neg. LLF: 139.61210960242946
Iteration: 6, Func. Count: 65, Neg. LLF: 139.9179146835088
Iteration: 7, Func. Count: 76, Neg. LLF: 139.55693673890744
Iteration: 8, Func. Count: 86, Neg. LLF: 139.5108190675911
Iteration: 9, Func. Count: 96, Neg. LLF: 139.42033815127257
Iteration: 10, Func. Count: 106, Neg. LLF: 139.5579137688665
Iteration: 11, Func. Count: 117, Neg. LLF: 139.23682158045804
Iteration: 12, Func. Count: 127, Neg. LLF: 139.3976680388227
Iteration: 13, Func. Count: 138, Neg. LLF: 139.18523074429538
Iteration: 14, Func. Count: 148, Neg. LLF: 139.1592546852533
Iteration: 15, Func. Count: 158, Neg. LLF: 139.1249184840728
Iteration: 16, Func. Count: 168, Neg. LLF: 139.03354836318744
Iteration: 17, Func. Count: 178, Neg. LLF: 139.0923563524089
Iteration: 18, Func. Count: 189, Neg. LLF: 138.9441598573033
Iteration: 19, Func. Count: 199, Neg. LLF: 138.89299312945474
Iteration: 20, Func. Count: 209, Neg. LLF: 138.8267370785501
Iteration: 21, Func. Count: 219, Neg. LLF: 138.79776712503508
Iteration: 22, Func. Count: 229, Neg. LLF: 138.7882062522305
Iteration: 23, Func. Count: 239, Neg. LLF: 138.78502887408297
Iteration: 24, Func. Count: 249, Neg. LLF: 138.78495087684126
Iteration: 25, Func. Count: 259, Neg. LLF: 138.78495039391646
Optimization terminated successfully (Exit mode 0)
Current function value: 138.78495039391646
Iterations: 25
Function evaluations: 259
Gradient evaluations: 25
Iteration: 1, Func. Count: 12, Neg. LLF: 142.33170417214168
Iteration: 2, Func. Count: 24, Neg. LLF: 141.5210052732524
Iteration: 3, Func. Count: 36, Neg. LLF: 140.24598285469125
Iteration: 4, Func. Count: 48, Neg. LLF: 139.72809728940737
Iteration: 5, Func. Count: 60, Neg. LLF: 139.6879349040233
Iteration: 6, Func. Count: 72, Neg. LLF: 139.57232632640813
Iteration: 7, Func. Count: 83, Neg. LLF: 139.6279343690275
Iteration: 8, Func. Count: 95, Neg. LLF: 139.518021164091
Iteration: 9, Func. Count: 106, Neg. LLF: 139.42160716226985
Iteration: 10, Func. Count: 117, Neg. LLF: 139.62298789123125
Iteration: 11, Func. Count: 129, Neg. LLF: 140.4860514714982
Iteration: 12, Func. Count: 141, Neg. LLF: 139.2378523202086
Iteration: 13, Func. Count: 153, Neg. LLF: 139.17399381771958
Iteration: 14, Func. Count: 164, Neg. LLF: 139.16647141087742
Iteration: 15, Func. Count: 175, Neg. LLF: 139.14634574802858
Iteration: 16, Func. Count: 186, Neg. LLF: 138.97980006750728
Iteration: 17, Func. Count: 197, Neg. LLF: 138.9588495736877
Iteration: 18, Func. Count: 208, Neg. LLF: 138.93294035493813
Iteration: 19, Func. Count: 219, Neg. LLF: 138.86889692268252
Iteration: 20, Func. Count: 230, Neg. LLF: 138.80601791291315
Iteration: 21, Func. Count: 241, Neg. LLF: 138.78935745490963
Iteration: 22, Func. Count: 252, Neg. LLF: 138.78563493008187
Iteration: 23, Func. Count: 263, Neg. LLF: 138.78503130285944
Iteration: 24, Func. Count: 274, Neg. LLF: 138.784957101645
Iteration: 25, Func. Count: 285, Neg. LLF: 138.78494994009827
Iteration: 26, Func. Count: 295, Neg. LLF: 138.7849500413775
Optimization terminated successfully (Exit mode 0)
Current function value: 138.78494994009827
Iterations: 26
Function evaluations: 295
Gradient evaluations: 26
Iteration: 1, Func. Count: 9, Neg. LLF: 142.00532090693363
Iteration: 2, Func. Count: 18, Neg. LLF: 142.79279089906606
Iteration: 3, Func. Count: 28, Neg. LLF: 140.48573585163535
Iteration: 4, Func. Count: 37, Neg. LLF: 141.19120939836074
Iteration: 5, Func. Count: 46, Neg. LLF: 140.78016935427578
Iteration: 6, Func. Count: 55, Neg. LLF: 139.99900483489768
Iteration: 7, Func. Count: 63, Neg. LLF: 140.0300853810263
Iteration: 8, Func. Count: 72, Neg. LLF: 139.90467870908958
Iteration: 9, Func. Count: 80, Neg. LLF: 139.85913303857143
Iteration: 10, Func. Count: 88, Neg. LLF: 139.84104293094376
Iteration: 11, Func. Count: 96, Neg. LLF: 139.83762502655233
Iteration: 12, Func. Count: 104, Neg. LLF: 139.83754870065434
Iteration: 13, Func. Count: 112, Neg. LLF: 139.8375440582213
Iteration: 14, Func. Count: 119, Neg. LLF: 139.8375440582743
Optimization terminated successfully (Exit mode 0)
Current function value: 139.8375440582213
Iterations: 14
Function evaluations: 119
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 140.9242983065963
Iteration: 2, Func. Count: 20, Neg. LLF: 164.71124492767376
Iteration: 3, Func. Count: 31, Neg. LLF: 139.75504517299726
Iteration: 4, Func. Count: 41, Neg. LLF: 139.36273271323986
Iteration: 5, Func. Count: 50, Neg. LLF: 145.89571902805858
Iteration: 6, Func. Count: 61, Neg. LLF: 138.93729301409644
Iteration: 7, Func. Count: 70, Neg. LLF: 142.0431637767157
Iteration: 8, Func. Count: 80, Neg. LLF: 138.8831466304192
Iteration: 9, Func. Count: 90, Neg. LLF: 138.7856243777046
Iteration: 10, Func. Count: 99, Neg. LLF: 138.78495835274222
Iteration: 11, Func. Count: 108, Neg. LLF: 138.78495018960956
Iteration: 12, Func. Count: 116, Neg. LLF: 138.78495018969733
Optimization terminated successfully (Exit mode 0)
Current function value: 138.78495018960956
Iterations: 12
Function evaluations: 116
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 162.38782611117503
Iteration: 2, Func. Count: 22, Neg. LLF: 141.92000460041828
Iteration: 3, Func. Count: 33, Neg. LLF: 140.01034829598467
Iteration: 4, Func. Count: 44, Neg. LLF: 139.5037093776061
Iteration: 5, Func. Count: 55, Neg. LLF: 139.32272838740062
Iteration: 6, Func. Count: 65, Neg. LLF: 139.29157251988104
Iteration: 7, Func. Count: 75, Neg. LLF: 139.03537489104207
Iteration: 8, Func. Count: 85, Neg. LLF: 138.93058067737326
Iteration: 9, Func. Count: 95, Neg. LLF: 138.8246721560865
Iteration: 10, Func. Count: 105, Neg. LLF: 138.80293713629638
Iteration: 11, Func. Count: 115, Neg. LLF: 138.78713644552397
Iteration: 12, Func. Count: 125, Neg. LLF: 138.78497921781505
Iteration: 13, Func. Count: 135, Neg. LLF: 138.78494998019139
Iteration: 14, Func. Count: 144, Neg. LLF: 138.7849499964844
Optimization terminated successfully (Exit mode 0)
Current function value: 138.78494998019139
Iterations: 14
Function evaluations: 144
Gradient evaluations: 14
Iteration: 1, Func. Count: 12, Neg. LLF: 142.40230078826195
Iteration: 2, Func. Count: 24, Neg. LLF: 145.63228333696594
Iteration: 3, Func. Count: 36, Neg. LLF: 141.17877322499155
Iteration: 4, Func. Count: 48, Neg. LLF: 140.0411515885268
Iteration: 5, Func. Count: 60, Neg. LLF: 139.6080505809067
Iteration: 6, Func. Count: 71, Neg. LLF: 139.89518261812572
Iteration: 7, Func. Count: 83, Neg. LLF: 139.5569654886249
Iteration: 8, Func. Count: 94, Neg. LLF: 139.50996556200693
Iteration: 9, Func. Count: 105, Neg. LLF: 139.4157243212669
Iteration: 10, Func. Count: 116, Neg. LLF: 139.53222942442704
Iteration: 11, Func. Count: 128, Neg. LLF: 139.25484252497614
Iteration: 12, Func. Count: 139, Neg. LLF: 139.40047098223084
Iteration: 13, Func. Count: 151, Neg. LLF: 139.20126707109443
Iteration: 14, Func. Count: 163, Neg. LLF: 139.16244557079446
Iteration: 15, Func. Count: 174, Neg. LLF: 139.12585775933238
Iteration: 16, Func. Count: 185, Neg. LLF: 139.0155815494785
Iteration: 17, Func. Count: 196, Neg. LLF: 138.9877816783914
Iteration: 18, Func. Count: 207, Neg. LLF: 138.9333495097548
Iteration: 19, Func. Count: 218, Neg. LLF: 138.82291291526397
Iteration: 20, Func. Count: 229, Neg. LLF: 138.79781269411882
Iteration: 21, Func. Count: 240, Neg. LLF: 138.7862452446198
Iteration: 22, Func. Count: 251, Neg. LLF: 138.78506613334386
Iteration: 23, Func. Count: 262, Neg. LLF: 138.78495306854865
Iteration: 24, Func. Count: 273, Neg. LLF: 138.78494993904633
Iteration: 25, Func. Count: 283, Neg. LLF: 138.78494999091797
Optimization terminated successfully (Exit mode 0)
Current function value: 138.78494993904633
Iterations: 25
Function evaluations: 283
Gradient evaluations: 25
Iteration: 1, Func. Count: 13, Neg. LLF: 142.32549917082457
Iteration: 2, Func. Count: 26, Neg. LLF: 141.48615253702224
Iteration: 3, Func. Count: 39, Neg. LLF: 140.3048764031871
Iteration: 4, Func. Count: 52, Neg. LLF: 139.83525826478524
Iteration: 5, Func. Count: 65, Neg. LLF: 139.6408799627763
Iteration: 6, Func. Count: 77, Neg. LLF: 139.57153571564803
Iteration: 7, Func. Count: 89, Neg. LLF: 139.570640585615
Iteration: 8, Func. Count: 102, Neg. LLF: 139.71422797792485
Iteration: 9, Func. Count: 115, Neg. LLF: 139.47471188672193
Iteration: 10, Func. Count: 127, Neg. LLF: 139.357834510706
Iteration: 11, Func. Count: 139, Neg. LLF: 139.52878790168515
Iteration: 12, Func. Count: 152, Neg. LLF: 139.90472178491785
Iteration: 13, Func. Count: 165, Neg. LLF: 139.1802213625717
Iteration: 14, Func. Count: 177, Neg. LLF: 139.1659406657462
Iteration: 15, Func. Count: 189, Neg. LLF: 139.15706913836695
Iteration: 16, Func. Count: 201, Neg. LLF: 139.01995697853192
Iteration: 17, Func. Count: 213, Neg. LLF: 138.97241242196708
Iteration: 18, Func. Count: 225, Neg. LLF: 138.89426986753537
Iteration: 19, Func. Count: 237, Neg. LLF: 138.80862564050207
Iteration: 20, Func. Count: 249, Neg. LLF: 138.79577587706854
Iteration: 21, Func. Count: 261, Neg. LLF: 138.78841417283587
Iteration: 22, Func. Count: 273, Neg. LLF: 138.78508490139
Iteration: 23, Func. Count: 285, Neg. LLF: 138.78499572687835
Iteration: 24, Func. Count: 297, Neg. LLF: 138.7849518435386
Iteration: 25, Func. Count: 309, Neg. LLF: 138.7881472365956
Optimization terminated successfully (Exit mode 0)
Current function value: 138.78495181781506
Iterations: 26
Function evaluations: 312
Gradient evaluations: 25
Iteration: 1, Func. Count: 6, Neg. LLF: 142.03289374237733
Iteration: 2, Func. Count: 12, Neg. LLF: 140.45153695555518
Iteration: 3, Func. Count: 17, Neg. LLF: 146.42419236905636
Iteration: 4, Func. Count: 24, Neg. LLF: 140.08933791151156
Iteration: 5, Func. Count: 29, Neg. LLF: 139.95875890108982
Iteration: 6, Func. Count: 34, Neg. LLF: 139.95717471452048
Iteration: 7, Func. Count: 39, Neg. LLF: 139.95705010765514
Iteration: 8, Func. Count: 44, Neg. LLF: 139.95704298604397
Iteration: 9, Func. Count: 49, Neg. LLF: 139.95704147548273
Iteration: 10, Func. Count: 54, Neg. LLF: 139.95704087343
Optimization terminated successfully (Exit mode 0)
Current function value: 139.95704087343
Iterations: 10
Function evaluations: 54
Gradient evaluations: 10
Iteration: 1, Func. Count: 7, Neg. LLF: 146.72689507241304
Iteration: 2, Func. Count: 14, Neg. LLF: 147.35236603521892
Iteration: 3, Func. Count: 22, Neg. LLF: 139.81705157016378
Iteration: 4, Func. Count: 28, Neg. LLF: 139.7990613467466
Iteration: 5, Func. Count: 34, Neg. LLF: 139.7941510627745
Iteration: 6, Func. Count: 40, Neg. LLF: 139.79215706607567
Iteration: 7, Func. Count: 46, Neg. LLF: 139.78423936603085
Iteration: 8, Func. Count: 52, Neg. LLF: 139.78197251929632
Iteration: 9, Func. Count: 58, Neg. LLF: 139.7812801864894
Iteration: 10, Func. Count: 64, Neg. LLF: 139.78127039139628
Iteration: 11, Func. Count: 69, Neg. LLF: 139.78127039137811
Optimization terminated successfully (Exit mode 0)
Current function value: 139.78127039139628
Iterations: 11
Function evaluations: 69
Gradient evaluations: 11
Iteration: 1, Func. Count: 8, Neg. LLF: 146.62274897989278
Iteration: 2, Func. Count: 16, Neg. LLF: 147.10869355865339
Iteration: 3, Func. Count: 24, Neg. LLF: 139.92642248038962
Iteration: 4, Func. Count: 32, Neg. LLF: 139.68764016432996
Iteration: 5, Func. Count: 39, Neg. LLF: 139.67631430397017
Iteration: 6, Func. Count: 46, Neg. LLF: 139.67229115483525
Iteration: 7, Func. Count: 53, Neg. LLF: 139.66942474518692
Iteration: 8, Func. Count: 60, Neg. LLF: 139.6683685392946
Iteration: 9, Func. Count: 67, Neg. LLF: 139.66710671206576
Iteration: 10, Func. Count: 74, Neg. LLF: 139.6643321195969
Iteration: 11, Func. Count: 81, Neg. LLF: 139.66349819796133
Iteration: 12, Func. Count: 88, Neg. LLF: 139.6634147829201
Iteration: 13, Func. Count: 95, Neg. LLF: 139.6634130304577
Iteration: 14, Func. Count: 101, Neg. LLF: 139.66341303042913
Optimization terminated successfully (Exit mode 0)
Current function value: 139.6634130304577
Iterations: 14
Function evaluations: 101
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 142.399218559454
Iteration: 2, Func. Count: 18, Neg. LLF: 140.8490303528932
Iteration: 3, Func. Count: 27, Neg. LLF: 143.8997012512406
Iteration: 4, Func. Count: 36, Neg. LLF: 140.16138177969887
Iteration: 5, Func. Count: 45, Neg. LLF: 139.77235160702284
Iteration: 6, Func. Count: 54, Neg. LLF: 139.646613316566
Iteration: 7, Func. Count: 62, Neg. LLF: 139.6279838083109
Iteration: 8, Func. Count: 70, Neg. LLF: 140.20219241653203
Iteration: 9, Func. Count: 80, Neg. LLF: 139.62243431986352
Iteration: 10, Func. Count: 88, Neg. LLF: 139.61855715850453
Iteration: 11, Func. Count: 96, Neg. LLF: 139.61080990412609
Iteration: 12, Func. Count: 104, Neg. LLF: 139.60431592100497
Iteration: 13, Func. Count: 112, Neg. LLF: 139.60203499325144
Iteration: 14, Func. Count: 120, Neg. LLF: 139.6016644936144
Iteration: 15, Func. Count: 128, Neg. LLF: 139.6016596405558
Iteration: 16, Func. Count: 135, Neg. LLF: 139.60165964048014
Optimization terminated successfully (Exit mode 0)
Current function value: 139.6016596405558
Iterations: 16
Function evaluations: 135
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 142.38926098745046
Iteration: 2, Func. Count: 20, Neg. LLF: 140.8255432292713
Iteration: 3, Func. Count: 30, Neg. LLF: 144.04372017254173
Iteration: 4, Func. Count: 40, Neg. LLF: 140.47694517576252
Iteration: 5, Func. Count: 50, Neg. LLF: 139.79302878479396
Iteration: 6, Func. Count: 60, Neg. LLF: 139.64617783585794
Iteration: 7, Func. Count: 69, Neg. LLF: 139.62789038066362
Iteration: 8, Func. Count: 78, Neg. LLF: 140.16622822711932
Iteration: 9, Func. Count: 89, Neg. LLF: 139.62377821734427
Iteration: 10, Func. Count: 98, Neg. LLF: 139.61568282533605
Iteration: 11, Func. Count: 107, Neg. LLF: 139.60802799643614
Iteration: 12, Func. Count: 116, Neg. LLF: 139.6029336666824
Iteration: 13, Func. Count: 125, Neg. LLF: 139.60176994203982
Iteration: 14, Func. Count: 134, Neg. LLF: 139.60166007836398
Iteration: 15, Func. Count: 143, Neg. LLF: 139.60165950906446
Optimization terminated successfully (Exit mode 0)
Current function value: 139.60165950906446
Iterations: 15
Function evaluations: 143
Gradient evaluations: 15
Iteration: 1, Func. Count: 7, Neg. LLF: 141.99872122561462
Iteration: 2, Func. Count: 14, Neg. LLF: 141.2327976560296
Iteration: 3, Func. Count: 21, Neg. LLF: 141.9131948111995
Iteration: 4, Func. Count: 28, Neg. LLF: 140.63104763905042
Iteration: 5, Func. Count: 35, Neg. LLF: 139.96821740817725
Iteration: 6, Func. Count: 41, Neg. LLF: 139.9090663321578
Iteration: 7, Func. Count: 47, Neg. LLF: 139.89093467200254
Iteration: 8, Func. Count: 53, Neg. LLF: 139.8664814995449
Iteration: 9, Func. Count: 59, Neg. LLF: 139.86396833248898
Iteration: 10, Func. Count: 65, Neg. LLF: 139.86284728482292
Iteration: 11, Func. Count: 71, Neg. LLF: 139.86274687581403
Iteration: 12, Func. Count: 77, Neg. LLF: 139.8627443369059
Iteration: 13, Func. Count: 82, Neg. LLF: 139.86274433691096
Optimization terminated successfully (Exit mode 0)
Current function value: 139.8627443369059
Iterations: 13
Function evaluations: 82
Gradient evaluations: 13
Iteration: 1, Func. Count: 8, Neg. LLF: 141.57921218057606
Iteration: 2, Func. Count: 16, Neg. LLF: 163.96248885719788
Iteration: 3, Func. Count: 25, Neg. LLF: 140.1089336906523
Iteration: 4, Func. Count: 33, Neg. LLF: 139.50632040765296
Iteration: 5, Func. Count: 40, Neg. LLF: 140.78737332937803
Iteration: 6, Func. Count: 48, Neg. LLF: 139.2786596365064
Iteration: 7, Func. Count: 55, Neg. LLF: 139.01567914987726
Iteration: 8, Func. Count: 62, Neg. LLF: 139.56913346951913
Iteration: 9, Func. Count: 70, Neg. LLF: 138.83180717512113
Iteration: 10, Func. Count: 77, Neg. LLF: 138.78951077497322
Iteration: 11, Func. Count: 84, Neg. LLF: 138.78526620281573
Iteration: 12, Func. Count: 91, Neg. LLF: 138.78496357740312
Iteration: 13, Func. Count: 98, Neg. LLF: 138.78495108149914
Iteration: 14, Func. Count: 105, Neg. LLF: 138.7849499860337
Iteration: 15, Func. Count: 111, Neg. LLF: 138.7849499860375
Optimization terminated successfully (Exit mode 0)
Current function value: 138.7849499860337
Iterations: 15
Function evaluations: 111
Gradient evaluations: 15
Iteration: 1, Func. Count: 9, Neg. LLF: 142.41333529961807
Iteration: 2, Func. Count: 18, Neg. LLF: 147.2256495181691
Iteration: 3, Func. Count: 27, Neg. LLF: 141.06313390632982
Iteration: 4, Func. Count: 36, Neg. LLF: 139.9136050963775
Iteration: 5, Func. Count: 45, Neg. LLF: 139.78217351731107
Iteration: 6, Func. Count: 54, Neg. LLF: 140.08887238979074
Iteration: 7, Func. Count: 63, Neg. LLF: 139.71601105219824
Iteration: 8, Func. Count: 71, Neg. LLF: 139.7063111670943
Iteration: 9, Func. Count: 79, Neg. LLF: 139.63282629610785
Iteration: 10, Func. Count: 87, Neg. LLF: 140.0530026722996
Iteration: 11, Func. Count: 96, Neg. LLF: 140.1992132024264
Iteration: 12, Func. Count: 105, Neg. LLF: 143.5554820173469
Iteration: 13, Func. Count: 114, Neg. LLF: 140.1805606634012
Iteration: 14, Func. Count: 123, Neg. LLF: 139.7527889895547
Iteration: 15, Func. Count: 132, Neg. LLF: 139.42369172131174
Iteration: 16, Func. Count: 140, Neg. LLF: 139.40585136852582
Iteration: 17, Func. Count: 149, Neg. LLF: 139.20706693605234
Iteration: 18, Func. Count: 157, Neg. LLF: 138.95614749947262
Iteration: 19, Func. Count: 165, Neg. LLF: 138.8152194583858
Iteration: 20, Func. Count: 173, Neg. LLF: 138.79267019365147
Iteration: 21, Func. Count: 181, Neg. LLF: 138.78574086440543
Iteration: 22, Func. Count: 189, Neg. LLF: 138.78497569248125
Iteration: 23, Func. Count: 197, Neg. LLF: 138.78495040278776
Iteration: 24, Func. Count: 205, Neg. LLF: 138.78494995729878
Optimization terminated successfully (Exit mode 0)
Current function value: 138.78494995729878
Iterations: 24
Function evaluations: 205
Gradient evaluations: 24
Iteration: 1, Func. Count: 10, Neg. LLF: 141.41327734883265
Iteration: 2, Func. Count: 20, Neg. LLF: 147.21761063046716
Iteration: 3, Func. Count: 30, Neg. LLF: 141.27870718040816
Iteration: 4, Func. Count: 40, Neg. LLF: 140.6317166055716
Iteration: 5, Func. Count: 50, Neg. LLF: 139.98834679853493
Iteration: 6, Func. Count: 60, Neg. LLF: 139.6546562228877
Iteration: 7, Func. Count: 70, Neg. LLF: 139.57420456520515
Iteration: 8, Func. Count: 79, Neg. LLF: 139.53655837933502
Iteration: 9, Func. Count: 88, Neg. LLF: 139.4627088942653
Iteration: 10, Func. Count: 97, Neg. LLF: 139.8382448777984
Iteration: 11, Func. Count: 108, Neg. LLF: 139.29843945078144
Iteration: 12, Func. Count: 117, Neg. LLF: 139.19426394787104
Iteration: 13, Func. Count: 126, Neg. LLF: 139.39224713177646
Iteration: 14, Func. Count: 136, Neg. LLF: 139.1549465327103
Iteration: 15, Func. Count: 145, Neg. LLF: 139.1262519059307
Iteration: 16, Func. Count: 154, Neg. LLF: 139.04079213715482
Iteration: 17, Func. Count: 163, Neg. LLF: 139.01011917836345
Iteration: 18, Func. Count: 172, Neg. LLF: 138.98407057780477
Iteration: 19, Func. Count: 181, Neg. LLF: 138.86320786353772
Iteration: 20, Func. Count: 190, Neg. LLF: 138.79447287689723
Iteration: 21, Func. Count: 199, Neg. LLF: 138.786534082978
Iteration: 22, Func. Count: 208, Neg. LLF: 138.78502283419397
Iteration: 23, Func. Count: 217, Neg. LLF: 138.78495111420588
Iteration: 24, Func. Count: 226, Neg. LLF: 138.78495004775635
Iteration: 25, Func. Count: 234, Neg. LLF: 138.78495009960477
Optimization terminated successfully (Exit mode 0)
Current function value: 138.78495004775635
Iterations: 25
Function evaluations: 234
Gradient evaluations: 25
Iteration: 1, Func. Count: 11, Neg. LLF: 142.24539678845352
Iteration: 2, Func. Count: 22, Neg. LLF: 146.9309631865344
Iteration: 3, Func. Count: 33, Neg. LLF: 141.19995648058776
Iteration: 4, Func. Count: 44, Neg. LLF: 140.14526630432624
Iteration: 5, Func. Count: 55, Neg. LLF: 139.86121856402218
Iteration: 6, Func. Count: 66, Neg. LLF: 139.59714814599224
Iteration: 7, Func. Count: 76, Neg. LLF: 139.58276379402733
Iteration: 8, Func. Count: 86, Neg. LLF: 139.5331525344227
Iteration: 9, Func. Count: 96, Neg. LLF: 139.48425575628224
Iteration: 10, Func. Count: 106, Neg. LLF: 141.2552372915414
Iteration: 11, Func. Count: 117, Neg. LLF: 139.3117682594709
Iteration: 12, Func. Count: 127, Neg. LLF: 139.3120117423448
Iteration: 13, Func. Count: 138, Neg. LLF: 139.184414316489
Iteration: 14, Func. Count: 148, Neg. LLF: 139.16581734000204
Iteration: 15, Func. Count: 158, Neg. LLF: 139.15543389730922
Iteration: 16, Func. Count: 168, Neg. LLF: 139.05528621480198
Iteration: 17, Func. Count: 178, Neg. LLF: 139.04352509165315
Iteration: 18, Func. Count: 188, Neg. LLF: 139.02740261241945
Iteration: 19, Func. Count: 198, Neg. LLF: 138.9212216662261
Iteration: 20, Func. Count: 208, Neg. LLF: 138.79395198336266
Iteration: 21, Func. Count: 218, Neg. LLF: 138.78795697982147
Iteration: 22, Func. Count: 228, Neg. LLF: 138.78531412141425
Iteration: 23, Func. Count: 238, Neg. LLF: 138.78496950347926
Iteration: 24, Func. Count: 248, Neg. LLF: 138.78495037577648
Iteration: 25, Func. Count: 257, Neg. LLF: 138.78495047710348
Optimization terminated successfully (Exit mode 0)
Current function value: 138.78495037577648
Iterations: 25
Function evaluations: 257
Gradient evaluations: 25
Iteration: 1, Func. Count: 8, Neg. LLF: 141.8034520884845
Iteration: 2, Func. Count: 16, Neg. LLF: 142.79293308395395
Iteration: 3, Func. Count: 25, Neg. LLF: 139.5501997635752
Iteration: 4, Func. Count: 32, Neg. LLF: 139.51033982187434
Iteration: 5, Func. Count: 39, Neg. LLF: 139.47954837769194
Iteration: 6, Func. Count: 46, Neg. LLF: 139.432130095965
Iteration: 7, Func. Count: 53, Neg. LLF: 139.41846861557767
Iteration: 8, Func. Count: 60, Neg. LLF: 139.40693916371956
Iteration: 9, Func. Count: 67, Neg. LLF: 139.40617530276734
Iteration: 10, Func. Count: 74, Neg. LLF: 139.40612149583555
Iteration: 11, Func. Count: 81, Neg. LLF: 139.406117167248
Iteration: 12, Func. Count: 87, Neg. LLF: 139.406117041335
Optimization terminated successfully (Exit mode 0)
Current function value: 139.406117167248
Iterations: 12
Function evaluations: 87
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 156.76598457013841
Iteration: 2, Func. Count: 18, Neg. LLF: 142.21042270239315
Iteration: 3, Func. Count: 27, Neg. LLF: 138.20296713742465
Iteration: 4, Func. Count: 35, Neg. LLF: 138.18339759973975
Iteration: 5, Func. Count: 44, Neg. LLF: 138.07680150893293
Iteration: 6, Func. Count: 52, Neg. LLF: 138.0670415871961
Iteration: 7, Func. Count: 60, Neg. LLF: 138.065777707962
Iteration: 8, Func. Count: 68, Neg. LLF: 138.06378664844763
Iteration: 9, Func. Count: 76, Neg. LLF: 138.06377946647507
Iteration: 10, Func. Count: 83, Neg. LLF: 138.06377946653515
Optimization terminated successfully (Exit mode 0)
Current function value: 138.06377946647507
Iterations: 10
Function evaluations: 83
Gradient evaluations: 10
Iteration: 1, Func. Count: 10, Neg. LLF: 156.89495252747062
Iteration: 2, Func. Count: 20, Neg. LLF: 158.42350738096087
Iteration: 3, Func. Count: 30, Neg. LLF: 139.3707395471727
Iteration: 4, Func. Count: 40, Neg. LLF: 138.68372117676284
Iteration: 5, Func. Count: 49, Neg. LLF: 138.50790344962388
Iteration: 6, Func. Count: 58, Neg. LLF: 138.6638582474545
Iteration: 7, Func. Count: 68, Neg. LLF: 138.1060249269445
Iteration: 8, Func. Count: 77, Neg. LLF: 138.07178523457745
Iteration: 9, Func. Count: 86, Neg. LLF: 138.0651196211127
Iteration: 10, Func. Count: 95, Neg. LLF: 138.0643516611699
Iteration: 11, Func. Count: 104, Neg. LLF: 138.0640334309164
Iteration: 12, Func. Count: 113, Neg. LLF: 138.06379087055038
Iteration: 13, Func. Count: 122, Neg. LLF: 138.06377993701219
Iteration: 14, Func. Count: 131, Neg. LLF: 138.0637793600658
Optimization terminated successfully (Exit mode 0)
Current function value: 138.0637793600658
Iterations: 14
Function evaluations: 131
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 141.5366863764843
Iteration: 2, Func. Count: 22, Neg. LLF: 145.86175693168306
Iteration: 3, Func. Count: 33, Neg. LLF: 139.6123952632938
Iteration: 4, Func. Count: 43, Neg. LLF: 143.2189294170353
Iteration: 5, Func. Count: 55, Neg. LLF: 149.29297940387758
Iteration: 6, Func. Count: 66, Neg. LLF: 138.9463624643371
Iteration: 7, Func. Count: 76, Neg. LLF: 139.15324880246382
Iteration: 8, Func. Count: 87, Neg. LLF: 138.66390996651015
Iteration: 9, Func. Count: 97, Neg. LLF: 138.38957477143856
Iteration: 10, Func. Count: 107, Neg. LLF: 138.239675659617
Iteration: 11, Func. Count: 117, Neg. LLF: 138.17581834647953
Iteration: 12, Func. Count: 127, Neg. LLF: 138.1290044381112
Iteration: 13, Func. Count: 137, Neg. LLF: 138.08008002258643
Iteration: 14, Func. Count: 147, Neg. LLF: 138.0662694127096
Iteration: 15, Func. Count: 157, Neg. LLF: 138.0644026138646
Iteration: 16, Func. Count: 167, Neg. LLF: 138.06392454402436
Iteration: 17, Func. Count: 177, Neg. LLF: 138.06380736808146
Iteration: 18, Func. Count: 187, Neg. LLF: 138.0637795576444
Iteration: 19, Func. Count: 196, Neg. LLF: 138.06377963241346
Optimization terminated successfully (Exit mode 0)
Current function value: 138.0637795576444
Iterations: 19
Function evaluations: 196
Gradient evaluations: 19
Iteration: 1, Func. Count: 12, Neg. LLF: 141.3631511443808
Iteration: 2, Func. Count: 24, Neg. LLF: 140.26628835570756
Iteration: 3, Func. Count: 36, Neg. LLF: 139.3813773161803
Iteration: 4, Func. Count: 47, Neg. LLF: 141.37227783704924
Iteration: 5, Func. Count: 60, Neg. LLF: 143.37259633896653
Iteration: 6, Func. Count: 72, Neg. LLF: 139.01244626546915
Iteration: 7, Func. Count: 84, Neg. LLF: 138.84803078898867
Iteration: 8, Func. Count: 95, Neg. LLF: 138.6108661576233
Iteration: 9, Func. Count: 106, Neg. LLF: 138.72692597574334
Iteration: 10, Func. Count: 118, Neg. LLF: 138.30427726511238
Iteration: 11, Func. Count: 129, Neg. LLF: 138.22242437733226
Iteration: 12, Func. Count: 140, Neg. LLF: 138.17661028421838
Iteration: 13, Func. Count: 151, Neg. LLF: 138.12829970864908
Iteration: 14, Func. Count: 162, Neg. LLF: 138.0665331375222
Iteration: 15, Func. Count: 173, Neg. LLF: 138.06438635585656
Iteration: 16, Func. Count: 184, Neg. LLF: 138.063831102485
Iteration: 17, Func. Count: 195, Neg. LLF: 138.06378301609593
Iteration: 18, Func. Count: 206, Neg. LLF: 138.0637794579887
Iteration: 19, Func. Count: 216, Neg. LLF: 138.06377954771034
Optimization terminated successfully (Exit mode 0)
Current function value: 138.0637794579887
Iterations: 19
Function evaluations: 216
Gradient evaluations: 19
Iteration: 1, Func. Count: 9, Neg. LLF: 142.0067341978166
Iteration: 2, Func. Count: 18, Neg. LLF: 142.54400781258082
Iteration: 3, Func. Count: 28, Neg. LLF: 139.79443989450144
Iteration: 4, Func. Count: 36, Neg. LLF: 139.78280257341945
Iteration: 5, Func. Count: 45, Neg. LLF: 139.56280010970534
Iteration: 6, Func. Count: 53, Neg. LLF: 139.50131652060907
Iteration: 7, Func. Count: 61, Neg. LLF: 139.46597405705094
Iteration: 8, Func. Count: 69, Neg. LLF: 139.43598733596664
Iteration: 9, Func. Count: 77, Neg. LLF: 139.41482829166137
Iteration: 10, Func. Count: 85, Neg. LLF: 139.41119242093492
Iteration: 11, Func. Count: 93, Neg. LLF: 139.40668371523319
Iteration: 12, Func. Count: 101, Neg. LLF: 139.4061786674838
Iteration: 13, Func. Count: 109, Neg. LLF: 139.40611860336864
Iteration: 14, Func. Count: 117, Neg. LLF: 139.40611669073843
Iteration: 15, Func. Count: 124, Neg. LLF: 139.40611675932766
Optimization terminated successfully (Exit mode 0)
Current function value: 139.40611669073843
Iterations: 15
Function evaluations: 124
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 156.77298869185776
Iteration: 2, Func. Count: 20, Neg. LLF: 142.20045730608732
Iteration: 3, Func. Count: 30, Neg. LLF: 138.2093299503794
Iteration: 4, Func. Count: 39, Neg. LLF: 138.17880638869838
Iteration: 5, Func. Count: 49, Neg. LLF: 138.07776562720153
Iteration: 6, Func. Count: 58, Neg. LLF: 138.06696602544503
Iteration: 7, Func. Count: 67, Neg. LLF: 138.06561001080422
Iteration: 8, Func. Count: 76, Neg. LLF: 138.06382562945979
Iteration: 9, Func. Count: 85, Neg. LLF: 138.0637972861624
Iteration: 10, Func. Count: 94, Neg. LLF: 138.06378229728722
Iteration: 11, Func. Count: 103, Neg. LLF: 138.06377970293593
Iteration: 12, Func. Count: 111, Neg. LLF: 138.06377970288554
Optimization terminated successfully (Exit mode 0)
Current function value: 138.06377970293593
Iterations: 12
Function evaluations: 111
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 156.89697829334463
Iteration: 2, Func. Count: 22, Neg. LLF: 158.47880476367453
Iteration: 3, Func. Count: 33, Neg. LLF: 139.37329427423109
Iteration: 4, Func. Count: 44, Neg. LLF: 138.687881284628
Iteration: 5, Func. Count: 54, Neg. LLF: 138.5160161472518
Iteration: 6, Func. Count: 64, Neg. LLF: 138.70287869527957
Iteration: 7, Func. Count: 75, Neg. LLF: 138.10273153867797
Iteration: 8, Func. Count: 85, Neg. LLF: 138.07106844373044
Iteration: 9, Func. Count: 95, Neg. LLF: 138.06499716001397
Iteration: 10, Func. Count: 105, Neg. LLF: 138.06434628486065
Iteration: 11, Func. Count: 115, Neg. LLF: 138.06400277783834
Iteration: 12, Func. Count: 125, Neg. LLF: 138.06379257693717
Iteration: 13, Func. Count: 135, Neg. LLF: 138.06377987885892
Iteration: 14, Func. Count: 144, Neg. LLF: 138.06377989743282
Optimization terminated successfully (Exit mode 0)
Current function value: 138.06377987885892
Iterations: 14
Function evaluations: 144
Gradient evaluations: 14
Iteration: 1, Func. Count: 12, Neg. LLF: 141.53616249415361
Iteration: 2, Func. Count: 24, Neg. LLF: 145.8627311434709
Iteration: 3, Func. Count: 36, Neg. LLF: 139.6104581748083
Iteration: 4, Func. Count: 47, Neg. LLF: 143.25561460120647
Iteration: 5, Func. Count: 60, Neg. LLF: 149.22985674276237
Iteration: 6, Func. Count: 72, Neg. LLF: 138.9542168642486
Iteration: 7, Func. Count: 83, Neg. LLF: 139.1650584166239
Iteration: 8, Func. Count: 95, Neg. LLF: 138.66255135588838
Iteration: 9, Func. Count: 106, Neg. LLF: 138.41315345829977
Iteration: 10, Func. Count: 117, Neg. LLF: 138.23622969330003
Iteration: 11, Func. Count: 128, Neg. LLF: 138.17332292662158
Iteration: 12, Func. Count: 139, Neg. LLF: 138.1389247918589
Iteration: 13, Func. Count: 150, Neg. LLF: 138.0889775902968
Iteration: 14, Func. Count: 161, Neg. LLF: 138.06728604132613
Iteration: 15, Func. Count: 172, Neg. LLF: 138.06401219318042
Iteration: 16, Func. Count: 183, Neg. LLF: 138.0637871343437
Iteration: 17, Func. Count: 194, Neg. LLF: 138.063779773212
Iteration: 18, Func. Count: 204, Neg. LLF: 138.06377984806437
Optimization terminated successfully (Exit mode 0)
Current function value: 138.063779773212
Iterations: 18
Function evaluations: 204
Gradient evaluations: 18
Iteration: 1, Func. Count: 13, Neg. LLF: 141.3827295085065
Iteration: 2, Func. Count: 26, Neg. LLF: 140.17602149936573
Iteration: 3, Func. Count: 39, Neg. LLF: 139.39938219196225
Iteration: 4, Func. Count: 51, Neg. LLF: 141.28891667785177
Iteration: 5, Func. Count: 65, Neg. LLF: 143.56391651839994
Iteration: 6, Func. Count: 78, Neg. LLF: 139.00764346011135
Iteration: 7, Func. Count: 91, Neg. LLF: 138.85615132638353
Iteration: 8, Func. Count: 103, Neg. LLF: 138.60636984042148
Iteration: 9, Func. Count: 115, Neg. LLF: 138.61330627684455
Iteration: 10, Func. Count: 128, Neg. LLF: 138.3492349568812
Iteration: 11, Func. Count: 140, Neg. LLF: 138.22813836609703
Iteration: 12, Func. Count: 152, Neg. LLF: 138.18059962972055
Iteration: 13, Func. Count: 164, Neg. LLF: 138.12667014804745
Iteration: 14, Func. Count: 176, Neg. LLF: 138.0723633795779
Iteration: 15, Func. Count: 188, Neg. LLF: 138.06577370024513
Iteration: 16, Func. Count: 200, Neg. LLF: 138.06428829511145
Iteration: 17, Func. Count: 212, Neg. LLF: 138.06389222438523
Iteration: 18, Func. Count: 224, Neg. LLF: 138.0637809035967
Iteration: 19, Func. Count: 236, Neg. LLF: 138.06377934920107
Iteration: 20, Func. Count: 247, Neg. LLF: 138.06377943894674
Optimization terminated successfully (Exit mode 0)
Current function value: 138.06377934920107
Iterations: 20
Function evaluations: 247
Gradient evaluations: 20
Iteration: 1, Func. Count: 10, Neg. LLF: 142.1639384130547
Iteration: 2, Func. Count: 20, Neg. LLF: 141.16480120573215
Iteration: 3, Func. Count: 30, Neg. LLF: 139.9716087786159
Iteration: 4, Func. Count: 39, Neg. LLF: 139.6912158966032
Iteration: 5, Func. Count: 49, Neg. LLF: 140.88948339170173
Iteration: 6, Func. Count: 59, Neg. LLF: 139.32028804171767
Iteration: 7, Func. Count: 68, Neg. LLF: 139.30991435236385
Iteration: 8, Func. Count: 77, Neg. LLF: 139.30731785704842
Iteration: 9, Func. Count: 87, Neg. LLF: 139.29142492403733
Iteration: 10, Func. Count: 96, Neg. LLF: 139.2909167931232
Iteration: 11, Func. Count: 105, Neg. LLF: 139.289277535833
Iteration: 12, Func. Count: 114, Neg. LLF: 139.28885806634207
Iteration: 13, Func. Count: 123, Neg. LLF: 139.28874512424
Iteration: 14, Func. Count: 132, Neg. LLF: 139.2887328798924
Iteration: 15, Func. Count: 141, Neg. LLF: 139.28873159419746
Iteration: 16, Func. Count: 149, Neg. LLF: 139.2887315941931
Optimization terminated successfully (Exit mode 0)
Current function value: 139.28873159419746
Iterations: 16
Function evaluations: 149
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 156.78454894932273
Iteration: 2, Func. Count: 22, Neg. LLF: 142.18106122659285
Iteration: 3, Func. Count: 33, Neg. LLF: 138.214347109012
Iteration: 4, Func. Count: 43, Neg. LLF: 138.17927639326166
Iteration: 5, Func. Count: 53, Neg. LLF: 138.07612302615775
Iteration: 6, Func. Count: 63, Neg. LLF: 138.06733040283757
Iteration: 7, Func. Count: 73, Neg. LLF: 138.0651689021403
Iteration: 8, Func. Count: 83, Neg. LLF: 138.06435663148542
Iteration: 9, Func. Count: 93, Neg. LLF: 138.06382419230172
Iteration: 10, Func. Count: 103, Neg. LLF: 138.06378572042897
Iteration: 11, Func. Count: 113, Neg. LLF: 138.06378040969255
Iteration: 12, Func. Count: 123, Neg. LLF: 138.06377950928828
Optimization terminated successfully (Exit mode 0)
Current function value: 138.06377950928828
Iterations: 12
Function evaluations: 123
Gradient evaluations: 12
Iteration: 1, Func. Count: 12, Neg. LLF: 156.90223126859863
Iteration: 2, Func. Count: 24, Neg. LLF: 158.54975787206402
Iteration: 3, Func. Count: 36, Neg. LLF: 139.3743932068945
Iteration: 4, Func. Count: 48, Neg. LLF: 138.69515308260574
Iteration: 5, Func. Count: 59, Neg. LLF: 138.51420982916363
Iteration: 6, Func. Count: 70, Neg. LLF: 138.72988035161788
Iteration: 7, Func. Count: 82, Neg. LLF: 138.10056608852065
Iteration: 8, Func. Count: 93, Neg. LLF: 138.07072931783236
Iteration: 9, Func. Count: 104, Neg. LLF: 138.06498727465282
Iteration: 10, Func. Count: 115, Neg. LLF: 138.06437839257504
Iteration: 11, Func. Count: 126, Neg. LLF: 138.0639759601693
Iteration: 12, Func. Count: 137, Neg. LLF: 138.06379367252399
Iteration: 13, Func. Count: 148, Neg. LLF: 138.06377989230464
Iteration: 14, Func. Count: 159, Neg. LLF: 138.06377935125508
Optimization terminated successfully (Exit mode 0)
Current function value: 138.06377935125508
Iterations: 14
Function evaluations: 159
Gradient evaluations: 14
Iteration: 1, Func. Count: 13, Neg. LLF: 141.52818783173515
Iteration: 2, Func. Count: 26, Neg. LLF: 145.4712075775685
Iteration: 3, Func. Count: 39, Neg. LLF: 139.61071154241966
Iteration: 4, Func. Count: 51, Neg. LLF: 143.2771557427887
Iteration: 5, Func. Count: 65, Neg. LLF: 151.21880420624697
Iteration: 6, Func. Count: 78, Neg. LLF: 139.06685131937033
Iteration: 7, Func. Count: 90, Neg. LLF: 139.3844228896755
Iteration: 8, Func. Count: 103, Neg. LLF: 138.6567373324606
Iteration: 9, Func. Count: 115, Neg. LLF: 138.52065631172337
Iteration: 10, Func. Count: 127, Neg. LLF: 138.21780573007584
Iteration: 11, Func. Count: 139, Neg. LLF: 138.18643443412958
Iteration: 12, Func. Count: 151, Neg. LLF: 138.11327343786675
Iteration: 13, Func. Count: 163, Neg. LLF: 138.08235455125208
Iteration: 14, Func. Count: 175, Neg. LLF: 138.066295189782
Iteration: 15, Func. Count: 187, Neg. LLF: 138.0638904551414
Iteration: 16, Func. Count: 199, Neg. LLF: 138.06378415695892
Iteration: 17, Func. Count: 211, Neg. LLF: 138.06377935985898
Iteration: 18, Func. Count: 222, Neg. LLF: 138.06377943457807
Optimization terminated successfully (Exit mode 0)
Current function value: 138.06377935985898
Iterations: 18
Function evaluations: 222
Gradient evaluations: 18
Iteration: 1, Func. Count: 14, Neg. LLF: 141.38130682743355
Iteration: 2, Func. Count: 28, Neg. LLF: 140.15197374023865
Iteration: 3, Func. Count: 42, Neg. LLF: 146.23960973196995
Iteration: 4, Func. Count: 56, Neg. LLF: 141.21024101334933
Iteration: 5, Func. Count: 70, Neg. LLF: 139.23188393060062
Iteration: 6, Func. Count: 83, Neg. LLF: 139.54594548701368
Iteration: 7, Func. Count: 98, Neg. LLF: 141.96087933363415
Iteration: 8, Func. Count: 112, Neg. LLF: 138.758837082965
Iteration: 9, Func. Count: 125, Neg. LLF: 138.6324751202588
Iteration: 10, Func. Count: 138, Neg. LLF: 139.20478834082465
Iteration: 11, Func. Count: 152, Neg. LLF: 138.28340824357085
Iteration: 12, Func. Count: 165, Neg. LLF: 138.20181913011783
Iteration: 13, Func. Count: 178, Neg. LLF: 138.1529981012153
Iteration: 14, Func. Count: 191, Neg. LLF: 138.08566407754762
Iteration: 15, Func. Count: 204, Neg. LLF: 138.06909025859076
Iteration: 16, Func. Count: 217, Neg. LLF: 138.0648507557324
Iteration: 17, Func. Count: 230, Neg. LLF: 138.0639915799204
Iteration: 18, Func. Count: 243, Neg. LLF: 138.06379047848424
Iteration: 19, Func. Count: 256, Neg. LLF: 138.06377962900027
Iteration: 20, Func. Count: 268, Neg. LLF: 138.06377971877077
Optimization terminated successfully (Exit mode 0)
Current function value: 138.06377962900027
Iterations: 20
Function evaluations: 268
Gradient evaluations: 20
Iteration: 1, Func. Count: 7, Neg. LLF: 142.19717067427464
Iteration: 2, Func. Count: 14, Neg. LLF: 143.008201318541
Iteration: 3, Func. Count: 22, Neg. LLF: 139.64214429693234
Iteration: 4, Func. Count: 28, Neg. LLF: 140.10316354328933
Iteration: 5, Func. Count: 36, Neg. LLF: 139.8193688449137
Iteration: 6, Func. Count: 43, Neg. LLF: 139.63080436471495
Iteration: 7, Func. Count: 49, Neg. LLF: 139.63056101109183
Iteration: 8, Func. Count: 55, Neg. LLF: 139.6303343483972
Iteration: 9, Func. Count: 61, Neg. LLF: 139.63020232030763
Iteration: 10, Func. Count: 67, Neg. LLF: 139.63019046871528
Iteration: 11, Func. Count: 73, Neg. LLF: 139.63018990572033
Optimization terminated successfully (Exit mode 0)
Current function value: 139.63018990572033
Iterations: 11
Function evaluations: 73
Gradient evaluations: 11
Iteration: 1, Func. Count: 8, Neg. LLF: 146.8561724235617
Iteration: 2, Func. Count: 16, Neg. LLF: 147.7618707060305
Iteration: 3, Func. Count: 24, Neg. LLF: 142.36843322095655
Iteration: 4, Func. Count: 32, Neg. LLF: 139.52840191636597
Iteration: 5, Func. Count: 39, Neg. LLF: 139.5002024204921
Iteration: 6, Func. Count: 46, Neg. LLF: 139.4943914078093
Iteration: 7, Func. Count: 53, Neg. LLF: 139.49225458115788
Iteration: 8, Func. Count: 60, Neg. LLF: 139.48968406099254
Iteration: 9, Func. Count: 67, Neg. LLF: 139.48449028318734
Iteration: 10, Func. Count: 74, Neg. LLF: 139.48230573351515
Iteration: 11, Func. Count: 81, Neg. LLF: 139.481817245549
Iteration: 12, Func. Count: 88, Neg. LLF: 139.48178494904977
Iteration: 13, Func. Count: 95, Neg. LLF: 139.4817835037364
Iteration: 14, Func. Count: 101, Neg. LLF: 139.48178350374107
Optimization terminated successfully (Exit mode 0)
Current function value: 139.4817835037364
Iterations: 14
Function evaluations: 101
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 142.51039073673184
Iteration: 2, Func. Count: 18, Neg. LLF: 140.95993438024675
Iteration: 3, Func. Count: 27, Neg. LLF: 147.0650413010196
Iteration: 4, Func. Count: 36, Neg. LLF: 141.44285356295802
Iteration: 5, Func. Count: 45, Neg. LLF: 139.57613680464934
Iteration: 6, Func. Count: 53, Neg. LLF: 139.5282012992133
Iteration: 7, Func. Count: 61, Neg. LLF: 139.53128966951493
Iteration: 8, Func. Count: 70, Neg. LLF: 139.5227992950502
Iteration: 9, Func. Count: 78, Neg. LLF: 139.5039546122903
Iteration: 10, Func. Count: 86, Neg. LLF: 139.48964821368565
Iteration: 11, Func. Count: 94, Neg. LLF: 139.4824889492332
Iteration: 12, Func. Count: 102, Neg. LLF: 139.4818250361063
Iteration: 13, Func. Count: 110, Neg. LLF: 139.48178509017256
Iteration: 14, Func. Count: 118, Neg. LLF: 139.48178357327922
Iteration: 15, Func. Count: 125, Neg. LLF: 139.4817835796133
Optimization terminated successfully (Exit mode 0)
Current function value: 139.48178357327922
Iterations: 15
Function evaluations: 125
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 142.50222606993574
Iteration: 2, Func. Count: 20, Neg. LLF: 140.93171735879753
Iteration: 3, Func. Count: 30, Neg. LLF: 147.57175005712094
Iteration: 4, Func. Count: 40, Neg. LLF: 143.76650581118395
Iteration: 5, Func. Count: 50, Neg. LLF: 139.49513060985538
Iteration: 6, Func. Count: 59, Neg. LLF: 139.4687665443297
Iteration: 7, Func. Count: 68, Neg. LLF: 139.44949754406028
Iteration: 8, Func. Count: 77, Neg. LLF: 139.44613502052056
Iteration: 9, Func. Count: 86, Neg. LLF: 139.47147865009484
Iteration: 10, Func. Count: 97, Neg. LLF: 139.4462003887449
Iteration: 11, Func. Count: 107, Neg. LLF: 139.44443515472676
Iteration: 12, Func. Count: 116, Neg. LLF: 139.44282545965098
Iteration: 13, Func. Count: 125, Neg. LLF: 139.4422821487109
Iteration: 14, Func. Count: 134, Neg. LLF: 139.4422813732434
Optimization terminated successfully (Exit mode 0)
Current function value: 139.4422813732434
Iterations: 14
Function evaluations: 134
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 142.48218883756283
Iteration: 2, Func. Count: 22, Neg. LLF: 140.89162583410962
Iteration: 3, Func. Count: 33, Neg. LLF: 148.03421882209676
Iteration: 4, Func. Count: 44, Neg. LLF: 143.70666368689962
Iteration: 5, Func. Count: 55, Neg. LLF: 139.65961615143357
Iteration: 6, Func. Count: 66, Neg. LLF: 139.45332791214616
Iteration: 7, Func. Count: 76, Neg. LLF: 139.44666563849202
Iteration: 8, Func. Count: 86, Neg. LLF: 139.66179876618918
Iteration: 9, Func. Count: 98, Neg. LLF: 139.44537448312414
Iteration: 10, Func. Count: 108, Neg. LLF: 139.44467727644252
Iteration: 11, Func. Count: 118, Neg. LLF: 139.44328283262527
Iteration: 12, Func. Count: 128, Neg. LLF: 139.44246475702548
Iteration: 13, Func. Count: 138, Neg. LLF: 139.44229463677468
Iteration: 14, Func. Count: 148, Neg. LLF: 139.44228154558544
Iteration: 15, Func. Count: 157, Neg. LLF: 139.44228158114615
Optimization terminated successfully (Exit mode 0)
Current function value: 139.44228154558544
Iterations: 15
Function evaluations: 157
Gradient evaluations: 15
Iteration: 1, Func. Count: 8, Neg. LLF: 142.01106640560184
Iteration: 2, Func. Count: 16, Neg. LLF: 142.42694070023887
Iteration: 3, Func. Count: 25, Neg. LLF: 141.16774503146
Iteration: 4, Func. Count: 33, Neg. LLF: 140.72345700118183
Iteration: 5, Func. Count: 41, Neg. LLF: 140.24784304718847
Iteration: 6, Func. Count: 49, Neg. LLF: 139.66675763439613
Iteration: 7, Func. Count: 57, Neg. LLF: 139.655142392768
Iteration: 8, Func. Count: 65, Neg. LLF: 139.63657129900653
Iteration: 9, Func. Count: 72, Neg. LLF: 139.63230394772503
Iteration: 10, Func. Count: 79, Neg. LLF: 139.629340803518
Iteration: 11, Func. Count: 86, Neg. LLF: 139.62786096349595
Iteration: 12, Func. Count: 93, Neg. LLF: 139.62784661214982
Iteration: 13, Func. Count: 99, Neg. LLF: 139.6278466121238
Optimization terminated successfully (Exit mode 0)
Current function value: 139.62784661214982
Iterations: 13
Function evaluations: 99
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 146.31398990546938
Iteration: 2, Func. Count: 18, Neg. LLF: 163.00992564599457
Iteration: 3, Func. Count: 28, Neg. LLF: 147.42254881235093
Iteration: 4, Func. Count: 37, Neg. LLF: 139.2404164417258
Iteration: 5, Func. Count: 45, Neg. LLF: 139.24741773584296
Iteration: 6, Func. Count: 54, Neg. LLF: 139.55313326787416
Iteration: 7, Func. Count: 63, Neg. LLF: 139.1576825898132
Iteration: 8, Func. Count: 71, Neg. LLF: 139.05304352767416
Iteration: 9, Func. Count: 79, Neg. LLF: 138.93311688791061
Iteration: 10, Func. Count: 87, Neg. LLF: 138.7940228681134
Iteration: 11, Func. Count: 95, Neg. LLF: 138.79582479390305
Iteration: 12, Func. Count: 104, Neg. LLF: 138.7854496888077
Iteration: 13, Func. Count: 112, Neg. LLF: 138.78500776861543
Iteration: 14, Func. Count: 120, Neg. LLF: 138.78496465904863
Iteration: 15, Func. Count: 128, Neg. LLF: 138.78494994566276
Iteration: 16, Func. Count: 135, Neg. LLF: 138.78494994567257
Optimization terminated successfully (Exit mode 0)
Current function value: 138.78494994566276
Iterations: 16
Function evaluations: 135
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 142.48349200897667
Iteration: 2, Func. Count: 20, Neg. LLF: 147.2584468615424
Iteration: 3, Func. Count: 30, Neg. LLF: 142.83166265246692
Iteration: 4, Func. Count: 40, Neg. LLF: 139.8710041005082
Iteration: 5, Func. Count: 50, Neg. LLF: 140.56614035032004
Iteration: 6, Func. Count: 60, Neg. LLF: 139.6123787106788
Iteration: 7, Func. Count: 70, Neg. LLF: 139.52191412105222
Iteration: 8, Func. Count: 79, Neg. LLF: 139.50024018158058
Iteration: 9, Func. Count: 88, Neg. LLF: 139.48713412329118
Iteration: 10, Func. Count: 97, Neg. LLF: 139.40345694560963
Iteration: 11, Func. Count: 106, Neg. LLF: 139.49614814529758
Iteration: 12, Func. Count: 116, Neg. LLF: 140.11631790122095
Iteration: 13, Func. Count: 126, Neg. LLF: 139.20268534367298
Iteration: 14, Func. Count: 136, Neg. LLF: 139.1219427813071
Iteration: 15, Func. Count: 145, Neg. LLF: 139.04556842016174
Iteration: 16, Func. Count: 154, Neg. LLF: 138.91702611202356
Iteration: 17, Func. Count: 163, Neg. LLF: 138.85350430684096
Iteration: 18, Func. Count: 172, Neg. LLF: 138.78855323425756
Iteration: 19, Func. Count: 181, Neg. LLF: 138.78571565431767
Iteration: 20, Func. Count: 190, Neg. LLF: 138.78495692671004
Iteration: 21, Func. Count: 199, Neg. LLF: 138.78495002306073
Iteration: 22, Func. Count: 207, Neg. LLF: 138.78495003953168
Optimization terminated successfully (Exit mode 0)
Current function value: 138.78495002306073
Iterations: 22
Function evaluations: 207
Gradient evaluations: 22
Iteration: 1, Func. Count: 11, Neg. LLF: 141.93511400303464
Iteration: 2, Func. Count: 22, Neg. LLF: 143.5403131430417
Iteration: 3, Func. Count: 33, Neg. LLF: 143.32618308631774
Iteration: 4, Func. Count: 44, Neg. LLF: 140.58430933301526
Iteration: 5, Func. Count: 55, Neg. LLF: 139.47500598568934
Iteration: 6, Func. Count: 65, Neg. LLF: 139.4018731622598
Iteration: 7, Func. Count: 75, Neg. LLF: 139.40105743163892
Iteration: 8, Func. Count: 86, Neg. LLF: 139.36047171190629
Iteration: 9, Func. Count: 96, Neg. LLF: 139.33363944014303
Iteration: 10, Func. Count: 106, Neg. LLF: 139.26970081781067
Iteration: 11, Func. Count: 116, Neg. LLF: 139.2258403773693
Iteration: 12, Func. Count: 126, Neg. LLF: 139.22518927926836
Iteration: 13, Func. Count: 137, Neg. LLF: 139.25679231242526
Iteration: 14, Func. Count: 148, Neg. LLF: 139.19872561784808
Iteration: 15, Func. Count: 158, Neg. LLF: 139.20389931468827
Iteration: 16, Func. Count: 169, Neg. LLF: 139.19611821942237
Iteration: 17, Func. Count: 179, Neg. LLF: 139.19525200711547
Iteration: 18, Func. Count: 189, Neg. LLF: 139.19102609175124
Iteration: 19, Func. Count: 199, Neg. LLF: 139.17427628993175
Iteration: 20, Func. Count: 209, Neg. LLF: 139.16971060933975
Iteration: 21, Func. Count: 219, Neg. LLF: 139.13476436826107
Iteration: 22, Func. Count: 229, Neg. LLF: 139.00270448327416
Iteration: 23, Func. Count: 239, Neg. LLF: 139.58903987635924
Iteration: 24, Func. Count: 250, Neg. LLF: 146.97424001708606
Iteration: 25, Func. Count: 262, Neg. LLF: 138.82216415784924
Iteration: 26, Func. Count: 272, Neg. LLF: 138.8491920772342
Iteration: 27, Func. Count: 283, Neg. LLF: 138.79209141018544
Iteration: 28, Func. Count: 293, Neg. LLF: 138.78506680612708
Iteration: 29, Func. Count: 303, Neg. LLF: 138.78495310166852
Iteration: 30, Func. Count: 313, Neg. LLF: 138.78494999192515
Iteration: 31, Func. Count: 322, Neg. LLF: 138.78495004370427
Optimization terminated successfully (Exit mode 0)
Current function value: 138.78494999192515
Iterations: 32
Function evaluations: 322
Gradient evaluations: 31
Iteration: 1, Func. Count: 12, Neg. LLF: 142.1255649037556
Iteration: 2, Func. Count: 24, Neg. LLF: 146.88799319984528
Iteration: 3, Func. Count: 36, Neg. LLF: 142.8427000264353
Iteration: 4, Func. Count: 48, Neg. LLF: 139.78370323321332
Iteration: 5, Func. Count: 60, Neg. LLF: 139.48881119365902
Iteration: 6, Func. Count: 71, Neg. LLF: 139.40106875615828
Iteration: 7, Func. Count: 82, Neg. LLF: 139.41672230948097
Iteration: 8, Func. Count: 94, Neg. LLF: 139.36567550010355
Iteration: 9, Func. Count: 105, Neg. LLF: 139.32445305474693
Iteration: 10, Func. Count: 116, Neg. LLF: 139.26807961658744
Iteration: 11, Func. Count: 127, Neg. LLF: 139.3465959146955
Iteration: 12, Func. Count: 139, Neg. LLF: 139.3194490653267
Iteration: 13, Func. Count: 151, Neg. LLF: 139.21328602167716
Iteration: 14, Func. Count: 162, Neg. LLF: 139.24602092439315
Iteration: 15, Func. Count: 174, Neg. LLF: 139.2007995441942
Iteration: 16, Func. Count: 185, Neg. LLF: 139.19696567495637
Iteration: 17, Func. Count: 196, Neg. LLF: 139.19614599580882
Iteration: 18, Func. Count: 207, Neg. LLF: 139.19476582322096
Iteration: 19, Func. Count: 218, Neg. LLF: 139.17850071943
Iteration: 20, Func. Count: 229, Neg. LLF: 139.17319778902848
Iteration: 21, Func. Count: 240, Neg. LLF: 139.1674281487908
Iteration: 22, Func. Count: 251, Neg. LLF: 139.15484548971722
Iteration: 23, Func. Count: 262, Neg. LLF: 139.08327385830208
Iteration: 24, Func. Count: 273, Neg. LLF: 139.06259729878792
Iteration: 25, Func. Count: 284, Neg. LLF: 138.9516232151238
Iteration: 26, Func. Count: 295, Neg. LLF: 138.87598156482443
Iteration: 27, Func. Count: 306, Neg. LLF: 296.632780896861
Iteration: 28, Func. Count: 319, Neg. LLF: 138.92982357833836
Iteration: 29, Func. Count: 331, Neg. LLF: 138.78660617800696
Iteration: 30, Func. Count: 342, Neg. LLF: 138.7965024004144
Iteration: 31, Func. Count: 354, Neg. LLF: 138.7849507136548
Iteration: 32, Func. Count: 365, Neg. LLF: 138.78494994069928
Optimization terminated successfully (Exit mode 0)
Current function value: 138.78494994069928
Iterations: 33
Function evaluations: 365
Gradient evaluations: 32
Iteration: 1, Func. Count: 9, Neg. LLF: 146.95577515808174
Iteration: 2, Func. Count: 19, Neg. LLF: 142.124902706443
Iteration: 3, Func. Count: 29, Neg. LLF: 144.50033585409264
Iteration: 4, Func. Count: 39, Neg. LLF: 139.60657363332825
Iteration: 5, Func. Count: 47, Neg. LLF: 139.43592999576478
Iteration: 6, Func. Count: 55, Neg. LLF: 139.42115194954195
Iteration: 7, Func. Count: 63, Neg. LLF: 139.4140650321328
Iteration: 8, Func. Count: 71, Neg. LLF: 139.40606037798582
Iteration: 9, Func. Count: 79, Neg. LLF: 139.39588591084092
Iteration: 10, Func. Count: 87, Neg. LLF: 139.39105643900524
Iteration: 11, Func. Count: 95, Neg. LLF: 139.38779095509162
Iteration: 12, Func. Count: 103, Neg. LLF: 139.38545123291624
Iteration: 13, Func. Count: 111, Neg. LLF: 139.38378711302383
Iteration: 14, Func. Count: 119, Neg. LLF: 139.38368070561424
Iteration: 15, Func. Count: 127, Neg. LLF: 139.3836410520105
Iteration: 16, Func. Count: 135, Neg. LLF: 139.38364032681554
Optimization terminated successfully (Exit mode 0)
Current function value: 139.38364032681554
Iterations: 16
Function evaluations: 135
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 156.74110504187277
Iteration: 2, Func. Count: 20, Neg. LLF: 138.29931208075948
Iteration: 3, Func. Count: 29, Neg. LLF: 139.3581380059304
Iteration: 4, Func. Count: 39, Neg. LLF: 138.23313272658547
Iteration: 5, Func. Count: 49, Neg. LLF: 138.0976333681358
Iteration: 6, Func. Count: 58, Neg. LLF: 138.06766032362745
Iteration: 7, Func. Count: 67, Neg. LLF: 138.06528301655374
Iteration: 8, Func. Count: 76, Neg. LLF: 138.06454963981415
Iteration: 9, Func. Count: 85, Neg. LLF: 138.06378039470331
Iteration: 10, Func. Count: 94, Neg. LLF: 138.0637793446325
Iteration: 11, Func. Count: 102, Neg. LLF: 138.0637793446469
Optimization terminated successfully (Exit mode 0)
Current function value: 138.0637793446325
Iterations: 11
Function evaluations: 102
Gradient evaluations: 11
Iteration: 1, Func. Count: 11, Neg. LLF: 141.74189636871333
Iteration: 2, Func. Count: 22, Neg. LLF: 145.70827034059224
Iteration: 3, Func. Count: 33, Neg. LLF: 139.3545777319836
Iteration: 4, Func. Count: 43, Neg. LLF: 141.60883593472659
Iteration: 5, Func. Count: 55, Neg. LLF: 147.6473728715215
Iteration: 6, Func. Count: 66, Neg. LLF: 138.7479556305361
Iteration: 7, Func. Count: 76, Neg. LLF: 139.09646961800223
Iteration: 8, Func. Count: 87, Neg. LLF: 138.5605349501647
Iteration: 9, Func. Count: 97, Neg. LLF: 138.41460777657537
Iteration: 10, Func. Count: 107, Neg. LLF: 138.35001593712838
Iteration: 11, Func. Count: 117, Neg. LLF: 138.32111085878526
Iteration: 12, Func. Count: 127, Neg. LLF: 138.27648697181513
Iteration: 13, Func. Count: 137, Neg. LLF: 138.1983083247542
Iteration: 14, Func. Count: 147, Neg. LLF: 138.11565459728283
Iteration: 15, Func. Count: 157, Neg. LLF: 138.090820351073
Iteration: 16, Func. Count: 167, Neg. LLF: 138.07839113870602
Iteration: 17, Func. Count: 177, Neg. LLF: 138.06594502084874
Iteration: 18, Func. Count: 187, Neg. LLF: 138.0638874174449
Iteration: 19, Func. Count: 197, Neg. LLF: 138.06378866130717
Iteration: 20, Func. Count: 207, Neg. LLF: 138.063779342256
Iteration: 21, Func. Count: 216, Neg. LLF: 138.06377936082708
Optimization terminated successfully (Exit mode 0)
Current function value: 138.063779342256
Iterations: 21
Function evaluations: 216
Gradient evaluations: 21
Iteration: 1, Func. Count: 12, Neg. LLF: 141.78937821576721
Iteration: 2, Func. Count: 24, Neg. LLF: 146.09457616666728
Iteration: 3, Func. Count: 36, Neg. LLF: 144.8153451958383
Iteration: 4, Func. Count: 48, Neg. LLF: 142.6161588831086
Iteration: 5, Func. Count: 60, Neg. LLF: 141.11360900972414
Iteration: 6, Func. Count: 72, Neg. LLF: 140.00674454271422
Iteration: 7, Func. Count: 84, Neg. LLF: 139.26742973033237
Iteration: 8, Func. Count: 95, Neg. LLF: 139.12277488557683
Iteration: 9, Func. Count: 106, Neg. LLF: 139.14114228451626
Iteration: 10, Func. Count: 118, Neg. LLF: 138.85036245281051
Iteration: 11, Func. Count: 129, Neg. LLF: 138.99833548191435
Iteration: 12, Func. Count: 141, Neg. LLF: 138.57974653409602
Iteration: 13, Func. Count: 152, Neg. LLF: 138.42828520726937
Iteration: 14, Func. Count: 163, Neg. LLF: 138.31786652616745
Iteration: 15, Func. Count: 174, Neg. LLF: 138.19874617557446
Iteration: 16, Func. Count: 185, Neg. LLF: 138.12780293474438
Iteration: 17, Func. Count: 196, Neg. LLF: 138.07601777231218
Iteration: 18, Func. Count: 207, Neg. LLF: 138.06529420469937
Iteration: 19, Func. Count: 218, Neg. LLF: 138.06413889731414
Iteration: 20, Func. Count: 229, Neg. LLF: 138.0637892684638
Iteration: 21, Func. Count: 240, Neg. LLF: 138.06378019570312
Iteration: 22, Func. Count: 251, Neg. LLF: 138.06377936195474
Optimization terminated successfully (Exit mode 0)
Current function value: 138.06377936195474
Iterations: 22
Function evaluations: 251
Gradient evaluations: 22
Iteration: 1, Func. Count: 13, Neg. LLF: 141.55868647904742
Iteration: 2, Func. Count: 26, Neg. LLF: 140.83477061615764
Iteration: 3, Func. Count: 39, Neg. LLF: 144.10896283331851
Iteration: 4, Func. Count: 52, Neg. LLF: 141.08221605689604
Iteration: 5, Func. Count: 65, Neg. LLF: 140.4565471714773
Iteration: 6, Func. Count: 78, Neg. LLF: 140.33282543730223
Iteration: 7, Func. Count: 91, Neg. LLF: 139.2349423763563
Iteration: 8, Func. Count: 103, Neg. LLF: 139.03936859681016
Iteration: 9, Func. Count: 115, Neg. LLF: 139.13401557660032
Iteration: 10, Func. Count: 128, Neg. LLF: 140.3594315510926
Iteration: 11, Func. Count: 141, Neg. LLF: 138.50759341770737
Iteration: 12, Func. Count: 153, Neg. LLF: 138.36092943512222
Iteration: 13, Func. Count: 165, Neg. LLF: 138.23834955790454
Iteration: 14, Func. Count: 177, Neg. LLF: 138.17743353493327
Iteration: 15, Func. Count: 189, Neg. LLF: 138.12244108352493
Iteration: 16, Func. Count: 201, Neg. LLF: 138.08293252364663
Iteration: 17, Func. Count: 213, Neg. LLF: 138.0669502215877
Iteration: 18, Func. Count: 225, Neg. LLF: 138.0643110570313
Iteration: 19, Func. Count: 237, Neg. LLF: 138.06382961922628
Iteration: 20, Func. Count: 249, Neg. LLF: 138.06378263949432
Iteration: 21, Func. Count: 261, Neg. LLF: 138.06377935352785
Iteration: 22, Func. Count: 272, Neg. LLF: 138.0637794432614
Optimization terminated successfully (Exit mode 0)
Current function value: 138.06377935352785
Iterations: 22
Function evaluations: 272
Gradient evaluations: 22
Iteration: 1, Func. Count: 10, Neg. LLF: 143.10896452342382
Iteration: 2, Func. Count: 20, Neg. LLF: 142.0491680435093
Iteration: 3, Func. Count: 31, Neg. LLF: 140.51802451679066
Iteration: 4, Func. Count: 41, Neg. LLF: 140.2208411372554
Iteration: 5, Func. Count: 51, Neg. LLF: 139.20504713406038
Iteration: 6, Func. Count: 60, Neg. LLF: 138.9536702909715
Iteration: 7, Func. Count: 69, Neg. LLF: 138.83127770529723
Iteration: 8, Func. Count: 78, Neg. LLF: 138.80572537979512
Iteration: 9, Func. Count: 87, Neg. LLF: 138.79265622659352
Iteration: 10, Func. Count: 96, Neg. LLF: 138.7620797897545
Iteration: 11, Func. Count: 105, Neg. LLF: 138.68829007819062
Iteration: 12, Func. Count: 114, Neg. LLF: 138.54182854558582
Iteration: 13, Func. Count: 123, Neg. LLF: 138.48572285640037
Iteration: 14, Func. Count: 132, Neg. LLF: 138.4226039898495
Iteration: 15, Func. Count: 141, Neg. LLF: 138.37772388911435
Iteration: 16, Func. Count: 150, Neg. LLF: 138.36251852540795
Iteration: 17, Func. Count: 159, Neg. LLF: 138.35126997000225
Iteration: 18, Func. Count: 168, Neg. LLF: 138.34925837719146
Iteration: 19, Func. Count: 177, Neg. LLF: 138.3488348764921
Iteration: 20, Func. Count: 186, Neg. LLF: 138.3487609134945
Iteration: 21, Func. Count: 195, Neg. LLF: 138.34876621373363
Iteration: 22, Func. Count: 204, Neg. LLF: 138.34875904859953
Iteration: 23, Func. Count: 213, Neg. LLF: 138.34876515871167
Iteration: 24, Func. Count: 223, Neg. LLF: 138.34876515346102
Iteration: 25, Func. Count: 233, Neg. LLF: 138.3487651526027
Iteration: 26, Func. Count: 252, Neg. LLF: 138.34876515280877
Iteration: 27, Func. Count: 262, Neg. LLF: 138.34876515258605
Iteration: 28, Func. Count: 274, Neg. LLF: 138.34876515275354
Iteration: 29, Func. Count: 284, Neg. LLF: 138.34876515264727
Iteration: 30, Func. Count: 299, Neg. LLF: 138.3487651528015
Iteration: 31, Func. Count: 310, Neg. LLF: 138.34876257800852
Optimization terminated successfully (Exit mode 0)
Current function value: 138.34876266542554
Iterations: 35
Function evaluations: 310
Gradient evaluations: 31
Iteration: 1, Func. Count: 11, Neg. LLF: 146.7671076141687
Iteration: 2, Func. Count: 22, Neg. LLF: 151.5953971896594
Iteration: 3, Func. Count: 33, Neg. LLF: 140.19977527428745
Iteration: 4, Func. Count: 44, Neg. LLF: 138.24290394423116
Iteration: 5, Func. Count: 54, Neg. LLF: 138.23377216633432
Iteration: 6, Func. Count: 65, Neg. LLF: 138.01676348870856
Iteration: 7, Func. Count: 75, Neg. LLF: 137.99948045673764
Iteration: 8, Func. Count: 85, Neg. LLF: 137.99245273062184
Iteration: 9, Func. Count: 95, Neg. LLF: 137.99174750715264
Iteration: 10, Func. Count: 105, Neg. LLF: 137.99164017107765
Iteration: 11, Func. Count: 115, Neg. LLF: 137.9916086463422
Iteration: 12, Func. Count: 125, Neg. LLF: 137.9916077686793
Optimization terminated successfully (Exit mode 0)
Current function value: 137.9916077686793
Iterations: 12
Function evaluations: 125
Gradient evaluations: 12
Iteration: 1, Func. Count: 12, Neg. LLF: 142.30941475668692
Iteration: 2, Func. Count: 24, Neg. LLF: 143.01106755372595
Iteration: 3, Func. Count: 36, Neg. LLF: 145.46406225221003
Iteration: 4, Func. Count: 48, Neg. LLF: 139.3120390849628
Iteration: 5, Func. Count: 60, Neg. LLF: 138.945616824377
Iteration: 6, Func. Count: 72, Neg. LLF: 147.38183202697226
Iteration: 7, Func. Count: 85, Neg. LLF: 138.3437934621091
Iteration: 8, Func. Count: 96, Neg. LLF: 138.35060738049262
Iteration: 9, Func. Count: 108, Neg. LLF: 138.46628686892126
Iteration: 10, Func. Count: 120, Neg. LLF: 138.07600642837014
Iteration: 11, Func. Count: 131, Neg. LLF: 138.06495611600357
Iteration: 12, Func. Count: 142, Neg. LLF: 138.06024776466967
Iteration: 13, Func. Count: 153, Neg. LLF: 138.0521279794166
Iteration: 14, Func. Count: 164, Neg. LLF: 138.04735227337514
Iteration: 15, Func. Count: 175, Neg. LLF: 138.04655893944098
Iteration: 16, Func. Count: 186, Neg. LLF: 138.0464832904185
Iteration: 17, Func. Count: 197, Neg. LLF: 138.04647626641133
Iteration: 18, Func. Count: 207, Neg. LLF: 138.046476266406
Optimization terminated successfully (Exit mode 0)
Current function value: 138.04647626641133
Iterations: 18
Function evaluations: 207
Gradient evaluations: 18
Iteration: 1, Func. Count: 13, Neg. LLF: 140.93605844068037
Iteration: 2, Func. Count: 26, Neg. LLF: 142.9731536598366
Iteration: 3, Func. Count: 39, Neg. LLF: 149.60452303701788
Iteration: 4, Func. Count: 52, Neg. LLF: 139.04134087721079
Iteration: 5, Func. Count: 64, Neg. LLF: 140.44367773399412
Iteration: 6, Func. Count: 77, Neg. LLF: 139.1746260063656
Iteration: 7, Func. Count: 90, Neg. LLF: 139.30671643534703
Iteration: 8, Func. Count: 103, Neg. LLF: 138.8689612707789
Iteration: 9, Func. Count: 115, Neg. LLF: 138.7302027169614
Iteration: 10, Func. Count: 127, Neg. LLF: 138.74326378899593
Iteration: 11, Func. Count: 140, Neg. LLF: 138.74038854006045
Iteration: 12, Func. Count: 153, Neg. LLF: 138.63504658773377
Iteration: 13, Func. Count: 165, Neg. LLF: 138.61786964630883
Iteration: 14, Func. Count: 177, Neg. LLF: 138.5984514192926
Iteration: 15, Func. Count: 189, Neg. LLF: 138.5905735567804
Iteration: 16, Func. Count: 201, Neg. LLF: 138.58758210842967
Iteration: 17, Func. Count: 213, Neg. LLF: 138.54703914031484
Iteration: 18, Func. Count: 225, Neg. LLF: 138.71647227915403
Iteration: 19, Func. Count: 238, Neg. LLF: 138.51560350799986
Iteration: 20, Func. Count: 250, Neg. LLF: 138.4529823318843
Iteration: 21, Func. Count: 262, Neg. LLF: 138.37737932136102
Iteration: 22, Func. Count: 274, Neg. LLF: 138.33912549298958
Iteration: 23, Func. Count: 286, Neg. LLF: 138.31244858513682
Iteration: 24, Func. Count: 298, Neg. LLF: 138.25971025734003
Iteration: 25, Func. Count: 310, Neg. LLF: 138.13700892014796
Iteration: 26, Func. Count: 322, Neg. LLF: 138.0852771528794
Iteration: 27, Func. Count: 334, Neg. LLF: 138.04316547150134
Iteration: 28, Func. Count: 346, Neg. LLF: 138.00847674140275
Iteration: 29, Func. Count: 358, Neg. LLF: 137.9985884495322
Iteration: 30, Func. Count: 370, Neg. LLF: 137.99175954708937
Iteration: 31, Func. Count: 382, Neg. LLF: 137.99164230885424
Iteration: 32, Func. Count: 394, Neg. LLF: 137.99160801322535
Iteration: 33, Func. Count: 406, Neg. LLF: 137.99160615516084
Iteration: 34, Func. Count: 417, Neg. LLF: 137.9916062149545
Optimization terminated successfully (Exit mode 0)
Current function value: 137.99160615516084
Iterations: 34
Function evaluations: 417
Gradient evaluations: 34
Iteration: 1, Func. Count: 14, Neg. LLF: 140.68450007036196
Iteration: 2, Func. Count: 28, Neg. LLF: 142.39588378240055
Iteration: 3, Func. Count: 42, Neg. LLF: 142.87353121404996
Iteration: 4, Func. Count: 56, Neg. LLF: 140.02125173274703
Iteration: 5, Func. Count: 70, Neg. LLF: 140.52896749417317
Iteration: 6, Func. Count: 84, Neg. LLF: 138.60519561362028
Iteration: 7, Func. Count: 97, Neg. LLF: 138.3807449900771
Iteration: 8, Func. Count: 110, Neg. LLF: 139.35407080092338
Iteration: 9, Func. Count: 125, Neg. LLF: 138.05257508003402
Iteration: 10, Func. Count: 138, Neg. LLF: 138.04987674687226
Iteration: 11, Func. Count: 151, Neg. LLF: 138.04900014378921
Iteration: 12, Func. Count: 164, Neg. LLF: 138.0479732922187
Iteration: 13, Func. Count: 177, Neg. LLF: 138.04693705477766
Iteration: 14, Func. Count: 190, Neg. LLF: 138.0465389337291
Iteration: 15, Func. Count: 203, Neg. LLF: 138.04647843382227
Iteration: 16, Func. Count: 216, Neg. LLF: 138.04647592465912
Iteration: 17, Func. Count: 228, Neg. LLF: 138.04647595979824
Optimization terminated successfully (Exit mode 0)
Current function value: 138.04647592465912
Iterations: 17
Function evaluations: 228
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 142.08340445943372
Iteration: 2, Func. Count: 22, Neg. LLF: 142.55788949618088
Iteration: 3, Func. Count: 33, Neg. LLF: 138.99904451917612
Iteration: 4, Func. Count: 43, Neg. LLF: 139.76981031270995
Iteration: 5, Func. Count: 54, Neg. LLF: 138.93077144508348
Iteration: 6, Func. Count: 65, Neg. LLF: 139.55881892164732
Iteration: 7, Func. Count: 76, Neg. LLF: 138.80795284936798
Iteration: 8, Func. Count: 86, Neg. LLF: 138.79270334799742
Iteration: 9, Func. Count: 96, Neg. LLF: 138.7608097454615
Iteration: 10, Func. Count: 106, Neg. LLF: 138.7389647838361
Iteration: 11, Func. Count: 116, Neg. LLF: 138.7226605153944
Iteration: 12, Func. Count: 126, Neg. LLF: 138.6276435264653
Iteration: 13, Func. Count: 136, Neg. LLF: 138.57957686304005
Iteration: 14, Func. Count: 146, Neg. LLF: 138.42178218577982
Iteration: 15, Func. Count: 156, Neg. LLF: 138.36597043913727
Iteration: 16, Func. Count: 166, Neg. LLF: 138.35940177083637
Iteration: 17, Func. Count: 176, Neg. LLF: 138.3509100101433
Iteration: 18, Func. Count: 186, Neg. LLF: 138.3461584647407
Iteration: 19, Func. Count: 196, Neg. LLF: 138.34894331113705
Iteration: 20, Func. Count: 207, Neg. LLF: 138.3488290909292
Iteration: 21, Func. Count: 218, Neg. LLF: 138.34877459561994
Iteration: 22, Func. Count: 229, Neg. LLF: 138.34877178081425
Iteration: 23, Func. Count: 239, Neg. LLF: 138.3487690763474
Iteration: 24, Func. Count: 249, Neg. LLF: 138.34876579262942
Iteration: 25, Func. Count: 259, Neg. LLF: 138.34876515465888
Optimization terminated successfully (Exit mode 0)
Current function value: 138.34876515465888
Iterations: 26
Function evaluations: 259
Gradient evaluations: 25
Iteration: 1, Func. Count: 12, Neg. LLF: 146.67601805059104
Iteration: 2, Func. Count: 24, Neg. LLF: 151.52892786384206
Iteration: 3, Func. Count: 36, Neg. LLF: 140.07979096182493
Iteration: 4, Func. Count: 48, Neg. LLF: 138.237995684668
Iteration: 5, Func. Count: 59, Neg. LLF: 138.21947807034493
Iteration: 6, Func. Count: 71, Neg. LLF: 138.0165310456956
Iteration: 7, Func. Count: 82, Neg. LLF: 137.99899175207048
Iteration: 8, Func. Count: 93, Neg. LLF: 137.9923481685828
Iteration: 9, Func. Count: 104, Neg. LLF: 137.99170795740963
Iteration: 10, Func. Count: 115, Neg. LLF: 137.99163553619297
Iteration: 11, Func. Count: 126, Neg. LLF: 137.99161122491336
Iteration: 12, Func. Count: 137, Neg. LLF: 137.99160965350677
Iteration: 13, Func. Count: 148, Neg. LLF: 137.9916062131763
Iteration: 14, Func. Count: 158, Neg. LLF: 137.99160621309977
Optimization terminated successfully (Exit mode 0)
Current function value: 137.9916062131763
Iterations: 14
Function evaluations: 158
Gradient evaluations: 14
Iteration: 1, Func. Count: 13, Neg. LLF: 142.28403807265298
Iteration: 2, Func. Count: 26, Neg. LLF: 143.01706667652184
Iteration: 3, Func. Count: 39, Neg. LLF: 145.2885602193521
Iteration: 4, Func. Count: 52, Neg. LLF: 139.32216325283844
Iteration: 5, Func. Count: 65, Neg. LLF: 138.96447378960525
Iteration: 6, Func. Count: 78, Neg. LLF: 146.74636753551
Iteration: 7, Func. Count: 92, Neg. LLF: 138.37036522133698
Iteration: 8, Func. Count: 104, Neg. LLF: 138.37435719783667
Iteration: 9, Func. Count: 117, Neg. LLF: 140.86364834322478
Iteration: 10, Func. Count: 131, Neg. LLF: 138.08111500851655
Iteration: 11, Func. Count: 143, Neg. LLF: 138.07152126840333
Iteration: 12, Func. Count: 155, Neg. LLF: 138.06289984860382
Iteration: 13, Func. Count: 167, Neg. LLF: 138.05947119296644
Iteration: 14, Func. Count: 179, Neg. LLF: 138.05080358314945
Iteration: 15, Func. Count: 191, Neg. LLF: 138.04848251109053
Iteration: 16, Func. Count: 203, Neg. LLF: 138.04683328569317
Iteration: 17, Func. Count: 215, Neg. LLF: 138.04659608803306
Iteration: 18, Func. Count: 227, Neg. LLF: 138.04653573364757
Iteration: 19, Func. Count: 239, Neg. LLF: 138.046483402852
Iteration: 20, Func. Count: 251, Neg. LLF: 138.04647638518514
Iteration: 21, Func. Count: 262, Neg. LLF: 138.0464763852332
Optimization terminated successfully (Exit mode 0)
Current function value: 138.04647638518514
Iterations: 21
Function evaluations: 262
Gradient evaluations: 21
Iteration: 1, Func. Count: 14, Neg. LLF: 140.8859103773844
Iteration: 2, Func. Count: 28, Neg. LLF: 142.9521280089559
Iteration: 3, Func. Count: 42, Neg. LLF: 148.8981578161696
Iteration: 4, Func. Count: 56, Neg. LLF: 139.0207674112012
Iteration: 5, Func. Count: 69, Neg. LLF: 140.25234264369516
Iteration: 6, Func. Count: 83, Neg. LLF: 139.21707669752675
Iteration: 7, Func. Count: 97, Neg. LLF: 139.14693773231386
Iteration: 8, Func. Count: 111, Neg. LLF: 138.8659040218244
Iteration: 9, Func. Count: 124, Neg. LLF: 138.7791729681729
Iteration: 10, Func. Count: 137, Neg. LLF: 138.7560677402692
Iteration: 11, Func. Count: 151, Neg. LLF: 138.6681118293001
Iteration: 12, Func. Count: 164, Neg. LLF: 138.65757357984035
Iteration: 13, Func. Count: 177, Neg. LLF: 138.6289545689453
Iteration: 14, Func. Count: 190, Neg. LLF: 138.61147119731967
Iteration: 15, Func. Count: 203, Neg. LLF: 138.5975378455476
Iteration: 16, Func. Count: 216, Neg. LLF: 138.58629305993625
Iteration: 17, Func. Count: 229, Neg. LLF: 138.56685332844054
Iteration: 18, Func. Count: 242, Neg. LLF: 138.53298766233752
Iteration: 19, Func. Count: 255, Neg. LLF: 138.42412160101975
Iteration: 20, Func. Count: 268, Neg. LLF: 138.3422663747737
Iteration: 21, Func. Count: 281, Neg. LLF: 138.29290469249875
Iteration: 22, Func. Count: 294, Neg. LLF: 138.1912758013817
Iteration: 23, Func. Count: 307, Neg. LLF: 138.1442417351737
Iteration: 24, Func. Count: 320, Neg. LLF: 138.06895106802423
Iteration: 25, Func. Count: 333, Neg. LLF: 138.04049160235905
Iteration: 26, Func. Count: 346, Neg. LLF: 138.0114592899581
Iteration: 27, Func. Count: 359, Neg. LLF: 137.9951792980119
Iteration: 28, Func. Count: 372, Neg. LLF: 137.99219231037682
Iteration: 29, Func. Count: 385, Neg. LLF: 137.99169330437297
Iteration: 30, Func. Count: 398, Neg. LLF: 137.99162156960003
Iteration: 31, Func. Count: 411, Neg. LLF: 137.99160723833333
Iteration: 32, Func. Count: 424, Neg. LLF: 137.99160577411033
Iteration: 33, Func. Count: 436, Neg. LLF: 137.9916058340309
Optimization terminated successfully (Exit mode 0)
Current function value: 137.99160577411033
Iterations: 33
Function evaluations: 436
Gradient evaluations: 33
Iteration: 1, Func. Count: 15, Neg. LLF: 140.70198297068626
Iteration: 2, Func. Count: 30, Neg. LLF: 142.3872665101952
Iteration: 3, Func. Count: 45, Neg. LLF: 142.77211162369542
Iteration: 4, Func. Count: 60, Neg. LLF: 140.1943667175987
Iteration: 5, Func. Count: 75, Neg. LLF: 140.61409508643334
Iteration: 6, Func. Count: 90, Neg. LLF: 138.60037178664942
Iteration: 7, Func. Count: 104, Neg. LLF: 138.45590025206607
Iteration: 8, Func. Count: 118, Neg. LLF: 140.07985795078116
Iteration: 9, Func. Count: 133, Neg. LLF: 138.08691024522642
Iteration: 10, Func. Count: 147, Neg. LLF: 139.2936082816821
Iteration: 11, Func. Count: 163, Neg. LLF: 138.08768452413094
Iteration: 12, Func. Count: 178, Neg. LLF: 138.05252224394474
Iteration: 13, Func. Count: 192, Neg. LLF: 138.0511521261615
Iteration: 14, Func. Count: 206, Neg. LLF: 138.0503531408122
Iteration: 15, Func. Count: 220, Neg. LLF: 138.04880601361364
Iteration: 16, Func. Count: 234, Neg. LLF: 138.04740591912525
Iteration: 17, Func. Count: 248, Neg. LLF: 138.046538908165
Iteration: 18, Func. Count: 262, Neg. LLF: 138.04647854656483
Iteration: 19, Func. Count: 276, Neg. LLF: 138.04647590512698
Iteration: 20, Func. Count: 289, Neg. LLF: 138.04647594029584
Optimization terminated successfully (Exit mode 0)
Current function value: 138.04647590512698
Iterations: 20
Function evaluations: 289
Gradient evaluations: 20
Iteration: 1, Func. Count: 8, Neg. LLF: 142.46177269089253
Iteration: 2, Func. Count: 17, Neg. LLF: 142.8260086601661
Iteration: 3, Func. Count: 25, Neg. LLF: 143.4854662756083
Iteration: 4, Func. Count: 34, Neg. LLF: 139.23917561368611
Iteration: 5, Func. Count: 41, Neg. LLF: 139.28154788387985
Iteration: 6, Func. Count: 49, Neg. LLF: 139.20704066482446
Iteration: 7, Func. Count: 57, Neg. LLF: 139.1420034557195
Iteration: 8, Func. Count: 64, Neg. LLF: 139.14160593842104
Iteration: 9, Func. Count: 71, Neg. LLF: 139.14158509923286
Iteration: 10, Func. Count: 78, Neg. LLF: 139.14341362318532
Iteration: 11, Func. Count: 87, Neg. LLF: 139.1415781167479
Iteration: 12, Func. Count: 95, Neg. LLF: 139.14152191067873
Iteration: 13, Func. Count: 102, Neg. LLF: 139.1415210209947
Optimization terminated successfully (Exit mode 0)
Current function value: 139.1415210209947
Iterations: 13
Function evaluations: 102
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 141.87526119727693
Iteration: 2, Func. Count: 19, Neg. LLF: 141.2739616941739
Iteration: 3, Func. Count: 28, Neg. LLF: 139.21382775083583
Iteration: 4, Func. Count: 36, Neg. LLF: 139.4059310501693
Iteration: 5, Func. Count: 45, Neg. LLF: 141.43379267551683
Iteration: 6, Func. Count: 55, Neg. LLF: 139.17369884753657
Iteration: 7, Func. Count: 64, Neg. LLF: 139.1456505126959
Iteration: 8, Func. Count: 72, Neg. LLF: 139.2271515399287
Iteration: 9, Func. Count: 81, Neg. LLF: 139.1426832383039
Iteration: 10, Func. Count: 89, Neg. LLF: 139.14251065056936
Iteration: 11, Func. Count: 97, Neg. LLF: 139.14185570860909
Iteration: 12, Func. Count: 105, Neg. LLF: 139.1415216049199
Iteration: 13, Func. Count: 113, Neg. LLF: 139.14152102951064
Optimization terminated successfully (Exit mode 0)
Current function value: 139.14152102951064
Iterations: 13
Function evaluations: 113
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 141.0917328473625
Iteration: 2, Func. Count: 21, Neg. LLF: 141.20973165558172
Iteration: 3, Func. Count: 31, Neg. LLF: 140.86931486558714
Iteration: 4, Func. Count: 41, Neg. LLF: 147.6930092656005
Iteration: 5, Func. Count: 51, Neg. LLF: 139.22330011558395
Iteration: 6, Func. Count: 60, Neg. LLF: 139.20177597344752
Iteration: 7, Func. Count: 70, Neg. LLF: 139.2155184546929
Iteration: 8, Func. Count: 80, Neg. LLF: 139.18158184443485
Iteration: 9, Func. Count: 90, Neg. LLF: 139.1442045851144
Iteration: 10, Func. Count: 99, Neg. LLF: 139.1437294491029
Iteration: 11, Func. Count: 108, Neg. LLF: 139.14265168295879
Iteration: 12, Func. Count: 117, Neg. LLF: 139.14164900208635
Iteration: 13, Func. Count: 126, Neg. LLF: 139.1415269504766
Iteration: 14, Func. Count: 135, Neg. LLF: 139.14152111512422
Iteration: 15, Func. Count: 143, Neg. LLF: 139.1415211228954
Optimization terminated successfully (Exit mode 0)
Current function value: 139.14152111512422
Iterations: 15
Function evaluations: 143
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 141.2045673657215
Iteration: 2, Func. Count: 22, Neg. LLF: 141.0083555366693
Iteration: 3, Func. Count: 33, Neg. LLF: 146.74853519641582
Iteration: 4, Func. Count: 44, Neg. LLF: 141.10995054257035
Iteration: 5, Func. Count: 55, Neg. LLF: 139.17302188008392
Iteration: 6, Func. Count: 65, Neg. LLF: 139.19041672541903
Iteration: 7, Func. Count: 76, Neg. LLF: 139.36362299004375
Iteration: 8, Func. Count: 88, Neg. LLF: 139.1808450746098
Iteration: 9, Func. Count: 99, Neg. LLF: 139.14623226490917
Iteration: 10, Func. Count: 109, Neg. LLF: 139.14479819427373
Iteration: 11, Func. Count: 119, Neg. LLF: 139.14306030657107
Iteration: 12, Func. Count: 129, Neg. LLF: 139.14179721337499
Iteration: 13, Func. Count: 139, Neg. LLF: 139.1415342925748
Iteration: 14, Func. Count: 149, Neg. LLF: 139.14152125889325
Iteration: 15, Func. Count: 158, Neg. LLF: 139.14152128358168
Optimization terminated successfully (Exit mode 0)
Current function value: 139.14152125889325
Iterations: 15
Function evaluations: 158
Gradient evaluations: 15
Iteration: 1, Func. Count: 12, Neg. LLF: 140.9801596947441
Iteration: 2, Func. Count: 25, Neg. LLF: 141.03564705129716
Iteration: 3, Func. Count: 37, Neg. LLF: 139.87071058622058
Iteration: 4, Func. Count: 49, Neg. LLF: 141.17566215879742
Iteration: 5, Func. Count: 61, Neg. LLF: 139.15124634399405
Iteration: 6, Func. Count: 72, Neg. LLF: 139.1983298540104
Iteration: 7, Func. Count: 84, Neg. LLF: 139.30197655007566
Iteration: 8, Func. Count: 96, Neg. LLF: 139.14832302672443
Iteration: 9, Func. Count: 108, Neg. LLF: 139.14411132118607
Iteration: 10, Func. Count: 119, Neg. LLF: 139.14300581184196
Iteration: 11, Func. Count: 130, Neg. LLF: 139.14196398417036
Iteration: 12, Func. Count: 141, Neg. LLF: 139.14153721049868
Iteration: 13, Func. Count: 152, Neg. LLF: 139.14152149513322
Iteration: 14, Func. Count: 162, Neg. LLF: 139.14152153175152
Optimization terminated successfully (Exit mode 0)
Current function value: 139.14152149513322
Iterations: 14
Function evaluations: 162
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 141.7353266629997
Iteration: 2, Func. Count: 18, Neg. LLF: 143.49412276986178
Iteration: 3, Func. Count: 27, Neg. LLF: 142.8511883984548
Iteration: 4, Func. Count: 36, Neg. LLF: 141.95702822145893
Iteration: 5, Func. Count: 45, Neg. LLF: 141.1130051882827
Iteration: 6, Func. Count: 54, Neg. LLF: 141.31229804363423
Iteration: 7, Func. Count: 64, Neg. LLF: 138.95915551442218
Iteration: 8, Func. Count: 73, Neg. LLF: 138.90728795826453
Iteration: 9, Func. Count: 81, Neg. LLF: 139.25604786579993
Iteration: 10, Func. Count: 90, Neg. LLF: 138.88875112346153
Iteration: 11, Func. Count: 98, Neg. LLF: 138.88715354533463
Iteration: 12, Func. Count: 106, Neg. LLF: 138.88703540864512
Iteration: 13, Func. Count: 114, Neg. LLF: 138.88703080284992
Iteration: 14, Func. Count: 121, Neg. LLF: 138.88703080286038
Optimization terminated successfully (Exit mode 0)
Current function value: 138.88703080284992
Iterations: 14
Function evaluations: 121
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 141.90097197702443
Iteration: 2, Func. Count: 20, Neg. LLF: 143.34444707219197
Iteration: 3, Func. Count: 30, Neg. LLF: 140.52997217068713
Iteration: 4, Func. Count: 40, Neg. LLF: 145.01598136412332
Iteration: 5, Func. Count: 50, Neg. LLF: 139.6063142385685
Iteration: 6, Func. Count: 60, Neg. LLF: 140.42614900149485
Iteration: 7, Func. Count: 70, Neg. LLF: 138.8988688510544
Iteration: 8, Func. Count: 79, Neg. LLF: 138.8854421132327
Iteration: 9, Func. Count: 88, Neg. LLF: 138.8734488472785
Iteration: 10, Func. Count: 97, Neg. LLF: 138.8689594218566
Iteration: 11, Func. Count: 106, Neg. LLF: 138.88689130807393
Iteration: 12, Func. Count: 116, Neg. LLF: 138.8558918575555
Iteration: 13, Func. Count: 125, Neg. LLF: 138.85027401837482
Iteration: 14, Func. Count: 134, Neg. LLF: 138.84826301798978
Iteration: 15, Func. Count: 143, Neg. LLF: 138.8482005419372
Iteration: 16, Func. Count: 152, Neg. LLF: 138.848199461733
Iteration: 17, Func. Count: 160, Neg. LLF: 138.84819946173752
Optimization terminated successfully (Exit mode 0)
Current function value: 138.848199461733
Iterations: 17
Function evaluations: 160
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 141.9171215124431
Iteration: 2, Func. Count: 22, Neg. LLF: 147.69278459747028
Iteration: 3, Func. Count: 33, Neg. LLF: 143.95457493576268
Iteration: 4, Func. Count: 44, Neg. LLF: 141.5748612313949
Iteration: 5, Func. Count: 55, Neg. LLF: 141.78129883941637
Iteration: 6, Func. Count: 66, Neg. LLF: 139.2113383844095
Iteration: 7, Func. Count: 77, Neg. LLF: 138.98654313508158
Iteration: 8, Func. Count: 88, Neg. LLF: 138.8924710883779
Iteration: 9, Func. Count: 98, Neg. LLF: 138.99814315308973
Iteration: 10, Func. Count: 109, Neg. LLF: 138.87831501776753
Iteration: 11, Func. Count: 119, Neg. LLF: 138.86865698400015
Iteration: 12, Func. Count: 129, Neg. LLF: 138.86579771911022
Iteration: 13, Func. Count: 139, Neg. LLF: 138.85263749158548
Iteration: 14, Func. Count: 149, Neg. LLF: 138.84861606939913
Iteration: 15, Func. Count: 159, Neg. LLF: 138.84825190959825
Iteration: 16, Func. Count: 169, Neg. LLF: 138.84821467856665
Iteration: 17, Func. Count: 179, Neg. LLF: 138.8481996208419
Iteration: 18, Func. Count: 188, Neg. LLF: 138.8481996332694
Optimization terminated successfully (Exit mode 0)
Current function value: 138.8481996208419
Iterations: 18
Function evaluations: 188
Gradient evaluations: 18
Iteration: 1, Func. Count: 12, Neg. LLF: 141.89775483426834
Iteration: 2, Func. Count: 24, Neg. LLF: 147.63502224320246
Iteration: 3, Func. Count: 36, Neg. LLF: 143.9725267541745
Iteration: 4, Func. Count: 48, Neg. LLF: 141.3629044137631
Iteration: 5, Func. Count: 60, Neg. LLF: 142.2569419919313
Iteration: 6, Func. Count: 72, Neg. LLF: 139.05853433546062
Iteration: 7, Func. Count: 84, Neg. LLF: 141.1159965066804
Iteration: 8, Func. Count: 96, Neg. LLF: 138.89866551423674
Iteration: 9, Func. Count: 107, Neg. LLF: 138.89184395123507
Iteration: 10, Func. Count: 118, Neg. LLF: 138.9792501867001
Iteration: 11, Func. Count: 130, Neg. LLF: 138.8692462902559
Iteration: 12, Func. Count: 141, Neg. LLF: 138.86559136950558
Iteration: 13, Func. Count: 152, Neg. LLF: 138.85528702633675
Iteration: 14, Func. Count: 163, Neg. LLF: 138.85013373602538
Iteration: 15, Func. Count: 174, Neg. LLF: 138.84840292494127
Iteration: 16, Func. Count: 185, Neg. LLF: 138.84820745728695
Iteration: 17, Func. Count: 196, Neg. LLF: 138.848199917954
Iteration: 18, Func. Count: 206, Neg. LLF: 138.84819994935773
Optimization terminated successfully (Exit mode 0)
Current function value: 138.848199917954
Iterations: 18
Function evaluations: 206
Gradient evaluations: 18
Iteration: 1, Func. Count: 13, Neg. LLF: 141.86498946974424
Iteration: 2, Func. Count: 26, Neg. LLF: 147.65189534315218
Iteration: 3, Func. Count: 39, Neg. LLF: 143.8134197336308
Iteration: 4, Func. Count: 52, Neg. LLF: 141.25592038943992
Iteration: 5, Func. Count: 65, Neg. LLF: 141.6350453243424
Iteration: 6, Func. Count: 78, Neg. LLF: 139.20327885982235
Iteration: 7, Func. Count: 91, Neg. LLF: 139.0856545362179
Iteration: 8, Func. Count: 104, Neg. LLF: 138.89388498659724
Iteration: 9, Func. Count: 116, Neg. LLF: 139.0556152958708
Iteration: 10, Func. Count: 129, Neg. LLF: 138.87877621426594
Iteration: 11, Func. Count: 141, Neg. LLF: 138.8706457870005
Iteration: 12, Func. Count: 153, Neg. LLF: 138.8677874917229
Iteration: 13, Func. Count: 165, Neg. LLF: 138.85557423241332
Iteration: 14, Func. Count: 177, Neg. LLF: 138.8490148978467
Iteration: 15, Func. Count: 189, Neg. LLF: 138.84827289960558
Iteration: 16, Func. Count: 201, Neg. LLF: 138.84821137712643
Iteration: 17, Func. Count: 213, Neg. LLF: 138.84820006844055
Iteration: 18, Func. Count: 225, Neg. LLF: 138.84819951805414
Optimization terminated successfully (Exit mode 0)
Current function value: 138.84819951805414
Iterations: 18
Function evaluations: 225
Gradient evaluations: 18
Iteration: 1, Func. Count: 10, Neg. LLF: 147.02409433930274
Iteration: 2, Func. Count: 21, Neg. LLF: 141.71186433732072
Iteration: 3, Func. Count: 32, Neg. LLF: 144.32103716227232
Iteration: 4, Func. Count: 43, Neg. LLF: 139.25043155686524
Iteration: 5, Func. Count: 53, Neg. LLF: 140.27790002065922
Iteration: 6, Func. Count: 63, Neg. LLF: 138.71328998725832
Iteration: 7, Func. Count: 72, Neg. LLF: 138.6331121883872
Iteration: 8, Func. Count: 81, Neg. LLF: 138.59912288752992
Iteration: 9, Func. Count: 90, Neg. LLF: 138.5838100432513
Iteration: 10, Func. Count: 99, Neg. LLF: 138.573972675861
Iteration: 11, Func. Count: 108, Neg. LLF: 138.5693804900514
Iteration: 12, Func. Count: 117, Neg. LLF: 138.56569770244056
Iteration: 13, Func. Count: 126, Neg. LLF: 138.5617623220752
Iteration: 14, Func. Count: 135, Neg. LLF: 138.5616490129914
Iteration: 15, Func. Count: 144, Neg. LLF: 138.56163512919468
Iteration: 16, Func. Count: 153, Neg. LLF: 138.5616344190227
Optimization terminated successfully (Exit mode 0)
Current function value: 138.5616344190227
Iterations: 16
Function evaluations: 153
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 142.03034140317357
Iteration: 2, Func. Count: 22, Neg. LLF: 142.04908420651586
Iteration: 3, Func. Count: 34, Neg. LLF: 140.2954329572438
Iteration: 4, Func. Count: 45, Neg. LLF: 141.29698557841945
Iteration: 5, Func. Count: 56, Neg. LLF: 140.51417342047014
Iteration: 6, Func. Count: 67, Neg. LLF: 138.71163252283765
Iteration: 7, Func. Count: 77, Neg. LLF: 140.3184332652857
Iteration: 8, Func. Count: 88, Neg. LLF: 138.8299947387458
Iteration: 9, Func. Count: 99, Neg. LLF: 138.573905037522
Iteration: 10, Func. Count: 110, Neg. LLF: 138.46329750354562
Iteration: 11, Func. Count: 120, Neg. LLF: 138.41966944277226
Iteration: 12, Func. Count: 130, Neg. LLF: 138.3102389073343
Iteration: 13, Func. Count: 140, Neg. LLF: 138.25108406140689
Iteration: 14, Func. Count: 150, Neg. LLF: 138.19985344446357
Iteration: 15, Func. Count: 160, Neg. LLF: 138.18060078685738
Iteration: 16, Func. Count: 170, Neg. LLF: 138.1049166608934
Iteration: 17, Func. Count: 180, Neg. LLF: 138.06655010776814
Iteration: 18, Func. Count: 190, Neg. LLF: 138.06412309580435
Iteration: 19, Func. Count: 200, Neg. LLF: 138.06378262524208
Iteration: 20, Func. Count: 210, Neg. LLF: 138.06377950213172
Iteration: 21, Func. Count: 219, Neg. LLF: 138.06377950208778
Optimization terminated successfully (Exit mode 0)
Current function value: 138.06377950213172
Iterations: 21
Function evaluations: 219
Gradient evaluations: 21
Iteration: 1, Func. Count: 12, Neg. LLF: 142.2898724493128
Iteration: 2, Func. Count: 24, Neg. LLF: 141.55742187574143
Iteration: 3, Func. Count: 36, Neg. LLF: 141.47182775662284
Iteration: 4, Func. Count: 48, Neg. LLF: 140.91318119307763
Iteration: 5, Func. Count: 60, Neg. LLF: 141.43112308817567
Iteration: 6, Func. Count: 72, Neg. LLF: 139.50711284433262
Iteration: 7, Func. Count: 84, Neg. LLF: 140.512254850142
Iteration: 8, Func. Count: 96, Neg. LLF: 138.57473809774723
Iteration: 9, Func. Count: 107, Neg. LLF: 138.55765883406661
Iteration: 10, Func. Count: 118, Neg. LLF: 138.5764130636386
Iteration: 11, Func. Count: 130, Neg. LLF: 138.5157534366349
Iteration: 12, Func. Count: 141, Neg. LLF: 138.41789821093406
Iteration: 13, Func. Count: 152, Neg. LLF: 138.32876117346441
Iteration: 14, Func. Count: 163, Neg. LLF: 138.2106807683817
Iteration: 15, Func. Count: 174, Neg. LLF: 138.13768634527966
Iteration: 16, Func. Count: 185, Neg. LLF: 138.0864600423348
Iteration: 17, Func. Count: 196, Neg. LLF: 138.07092969651376
Iteration: 18, Func. Count: 207, Neg. LLF: 138.0647872202817
Iteration: 19, Func. Count: 218, Neg. LLF: 138.06379962011758
Iteration: 20, Func. Count: 229, Neg. LLF: 138.06378409041756
Iteration: 21, Func. Count: 240, Neg. LLF: 138.06377992470584
Iteration: 22, Func. Count: 250, Neg. LLF: 138.06377994319362
Optimization terminated successfully (Exit mode 0)
Current function value: 138.06377992470584
Iterations: 22
Function evaluations: 250
Gradient evaluations: 22
Iteration: 1, Func. Count: 13, Neg. LLF: 144.59801678849976
Iteration: 2, Func. Count: 26, Neg. LLF: 142.23289262713632
Iteration: 3, Func. Count: 40, Neg. LLF: 140.13825363473862
Iteration: 4, Func. Count: 53, Neg. LLF: 144.45437431107214
Iteration: 5, Func. Count: 66, Neg. LLF: 140.00700996558956
Iteration: 6, Func. Count: 79, Neg. LLF: 142.96651916855137
Iteration: 7, Func. Count: 92, Neg. LLF: 138.68556423469695
Iteration: 8, Func. Count: 104, Neg. LLF: 138.59088795117384
Iteration: 9, Func. Count: 116, Neg. LLF: 138.60619618376938
Iteration: 10, Func. Count: 129, Neg. LLF: 138.5581238483518
Iteration: 11, Func. Count: 141, Neg. LLF: 138.49474846506934
Iteration: 12, Func. Count: 153, Neg. LLF: 138.3634952155948
Iteration: 13, Func. Count: 165, Neg. LLF: 138.2997213029474
Iteration: 14, Func. Count: 177, Neg. LLF: 138.2394956273316
Iteration: 15, Func. Count: 189, Neg. LLF: 138.19231002536424
Iteration: 16, Func. Count: 201, Neg. LLF: 138.07006794034288
Iteration: 17, Func. Count: 213, Neg. LLF: 138.0697884942513
Iteration: 18, Func. Count: 226, Neg. LLF: 138.06380199433355
Iteration: 19, Func. Count: 238, Neg. LLF: 138.06378186810662
Iteration: 20, Func. Count: 250, Neg. LLF: 138.06378058291776
Iteration: 21, Func. Count: 262, Neg. LLF: 138.06377944453843
Iteration: 22, Func. Count: 273, Neg. LLF: 138.063779519276
Optimization terminated successfully (Exit mode 0)
Current function value: 138.06377944453843
Iterations: 22
Function evaluations: 273
Gradient evaluations: 22
Iteration: 1, Func. Count: 14, Neg. LLF: 141.31896082175666
Iteration: 2, Func. Count: 28, Neg. LLF: 145.89846129494416
Iteration: 3, Func. Count: 42, Neg. LLF: 143.95416724451073
Iteration: 4, Func. Count: 56, Neg. LLF: 143.95742263278117
Iteration: 5, Func. Count: 70, Neg. LLF: 141.94570771636427
Iteration: 6, Func. Count: 84, Neg. LLF: 138.8042677171835
Iteration: 7, Func. Count: 97, Neg. LLF: 139.01449629790196
Iteration: 8, Func. Count: 111, Neg. LLF: 139.7098956043315
Iteration: 9, Func. Count: 125, Neg. LLF: 138.5759600126165
Iteration: 10, Func. Count: 138, Neg. LLF: 138.55919470641373
Iteration: 11, Func. Count: 151, Neg. LLF: 138.508500153046
Iteration: 12, Func. Count: 164, Neg. LLF: 138.4352012804559
Iteration: 13, Func. Count: 177, Neg. LLF: 138.37154580267784
Iteration: 14, Func. Count: 190, Neg. LLF: 138.39438394225664
Iteration: 15, Func. Count: 204, Neg. LLF: 138.22797943033933
Iteration: 16, Func. Count: 217, Neg. LLF: 138.17826757523582
Iteration: 17, Func. Count: 230, Neg. LLF: 138.07977210290105
Iteration: 18, Func. Count: 243, Neg. LLF: 138.0704549856597
Iteration: 19, Func. Count: 256, Neg. LLF: 138.06426582659893
Iteration: 20, Func. Count: 269, Neg. LLF: 138.06396813174788
Iteration: 21, Func. Count: 282, Neg. LLF: 138.06380135126759
Iteration: 22, Func. Count: 295, Neg. LLF: 138.06378542654943
Iteration: 23, Func. Count: 308, Neg. LLF: 138.0637789986609
Iteration: 24, Func. Count: 320, Neg. LLF: 138.06377908841114
Optimization terminated successfully (Exit mode 0)
Current function value: 138.0637789986609
Iterations: 24
Function evaluations: 320
Gradient evaluations: 24
Iteration: 1, Func. Count: 11, Neg. LLF: 144.79074545775018
Iteration: 2, Func. Count: 22, Neg. LLF: 141.69380109515703
Iteration: 3, Func. Count: 34, Neg. LLF: 142.12180232177727
Iteration: 4, Func. Count: 45, Neg. LLF: 140.48642390620736
Iteration: 5, Func. Count: 56, Neg. LLF: 138.5981898503585
Iteration: 6, Func. Count: 66, Neg. LLF: 139.00747977513493
Iteration: 7, Func. Count: 77, Neg. LLF: 141.54551542138023
Iteration: 8, Func. Count: 89, Neg. LLF: 138.15247087536983
Iteration: 9, Func. Count: 99, Neg. LLF: 138.14769836858466
Iteration: 10, Func. Count: 110, Neg. LLF: 138.07219416720415
Iteration: 11, Func. Count: 120, Neg. LLF: 138.04616828314906
Iteration: 12, Func. Count: 130, Neg. LLF: 138.00906866995894
Iteration: 13, Func. Count: 140, Neg. LLF: 137.99854584668958
Iteration: 14, Func. Count: 150, Neg. LLF: 137.99400941417153
Iteration: 15, Func. Count: 160, Neg. LLF: 137.99356874779897
Iteration: 16, Func. Count: 170, Neg. LLF: 137.9934431753657
Iteration: 17, Func. Count: 180, Neg. LLF: 137.9933035926555
Iteration: 18, Func. Count: 190, Neg. LLF: 137.9933017134111
Iteration: 19, Func. Count: 200, Neg. LLF: 137.99330082473625
Optimization terminated successfully (Exit mode 0)
Current function value: 137.99330082473625
Iterations: 19
Function evaluations: 200
Gradient evaluations: 19
Iteration: 1, Func. Count: 12, Neg. LLF: 142.4352182760535
Iteration: 2, Func. Count: 24, Neg. LLF: 140.60287010261507
Iteration: 3, Func. Count: 36, Neg. LLF: 146.6968483033523
Iteration: 4, Func. Count: 48, Neg. LLF: 138.90583478401072
Iteration: 5, Func. Count: 60, Neg. LLF: 140.66039059548982
Iteration: 6, Func. Count: 72, Neg. LLF: 138.7666065610763
Iteration: 7, Func. Count: 84, Neg. LLF: 138.12288653943685
Iteration: 8, Func. Count: 95, Neg. LLF: 138.05955947746799
Iteration: 9, Func. Count: 106, Neg. LLF: 138.0280133715919
Iteration: 10, Func. Count: 117, Neg. LLF: 138.02920430225285
Iteration: 11, Func. Count: 129, Neg. LLF: 138.03571157746978
Iteration: 12, Func. Count: 141, Neg. LLF: 137.9986016904642
Iteration: 13, Func. Count: 152, Neg. LLF: 137.99352356850522
Iteration: 14, Func. Count: 163, Neg. LLF: 137.9933252580932
Iteration: 15, Func. Count: 174, Neg. LLF: 137.99330218956558
Iteration: 16, Func. Count: 185, Neg. LLF: 137.99330087718855
Iteration: 17, Func. Count: 196, Neg. LLF: 137.99330030896732
Optimization terminated successfully (Exit mode 0)
Current function value: 137.99330030896732
Iterations: 17
Function evaluations: 196
Gradient evaluations: 17
Iteration: 1, Func. Count: 13, Neg. LLF: 142.89381795797703
Iteration: 2, Func. Count: 26, Neg. LLF: 142.3406752497333
Iteration: 3, Func. Count: 40, Neg. LLF: 140.44602273067667
Iteration: 4, Func. Count: 53, Neg. LLF: 138.55469250724727
Iteration: 5, Func. Count: 65, Neg. LLF: 139.38627153733188
Iteration: 6, Func. Count: 78, Neg. LLF: 139.49826094210115
Iteration: 7, Func. Count: 92, Neg. LLF: 138.50940392572974
Iteration: 8, Func. Count: 105, Neg. LLF: 139.84734863407007
Iteration: 9, Func. Count: 118, Neg. LLF: 138.06620781641735
Iteration: 10, Func. Count: 130, Neg. LLF: 138.04470402226414
Iteration: 11, Func. Count: 142, Neg. LLF: 138.00813054688754
Iteration: 12, Func. Count: 154, Neg. LLF: 137.99675709526076
Iteration: 13, Func. Count: 166, Neg. LLF: 137.99402738748566
Iteration: 14, Func. Count: 178, Neg. LLF: 137.9936450232889
Iteration: 15, Func. Count: 190, Neg. LLF: 137.99330595141
Iteration: 16, Func. Count: 202, Neg. LLF: 137.99330054587028
Iteration: 17, Func. Count: 213, Neg. LLF: 137.99330056028197
Optimization terminated successfully (Exit mode 0)
Current function value: 137.99330054587028
Iterations: 17
Function evaluations: 213
Gradient evaluations: 17
Iteration: 1, Func. Count: 14, Neg. LLF: 143.12477538424014
Iteration: 2, Func. Count: 28, Neg. LLF: 142.0555655908242
Iteration: 3, Func. Count: 43, Neg. LLF: 139.71408890294109
Iteration: 4, Func. Count: 57, Neg. LLF: 140.2319234313511
Iteration: 5, Func. Count: 71, Neg. LLF: 142.4556006006942
Iteration: 6, Func. Count: 85, Neg. LLF: 138.32205960976313
Iteration: 7, Func. Count: 98, Neg. LLF: 138.5961951718066
Iteration: 8, Func. Count: 112, Neg. LLF: 138.164717953249
Iteration: 9, Func. Count: 126, Neg. LLF: 138.0607646006224
Iteration: 10, Func. Count: 139, Neg. LLF: 138.19371457099524
Iteration: 11, Func. Count: 153, Neg. LLF: 138.0246751265336
Iteration: 12, Func. Count: 166, Neg. LLF: 138.01088803743554
Iteration: 13, Func. Count: 179, Neg. LLF: 137.99372439319558
Iteration: 14, Func. Count: 192, Neg. LLF: 137.9933491420762
Iteration: 15, Func. Count: 205, Neg. LLF: 137.9933043751378
Iteration: 16, Func. Count: 218, Neg. LLF: 137.99330051377905
Iteration: 17, Func. Count: 230, Neg. LLF: 137.9933005912852
Optimization terminated successfully (Exit mode 0)
Current function value: 137.99330051377905
Iterations: 17
Function evaluations: 230
Gradient evaluations: 17
Iteration: 1, Func. Count: 15, Neg. LLF: 142.85048158335152
Iteration: 2, Func. Count: 30, Neg. LLF: 141.67642276990316
Iteration: 3, Func. Count: 46, Neg. LLF: 139.8612648744884
Iteration: 4, Func. Count: 61, Neg. LLF: 140.40728500516445
Iteration: 5, Func. Count: 76, Neg. LLF: 141.99773194770944
Iteration: 6, Func. Count: 91, Neg. LLF: 138.18812170626632
Iteration: 7, Func. Count: 105, Neg. LLF: 138.20542144638677
Iteration: 8, Func. Count: 120, Neg. LLF: 138.0587238466396
Iteration: 9, Func. Count: 134, Neg. LLF: 138.03851783367764
Iteration: 10, Func. Count: 148, Neg. LLF: 138.01314006073451
Iteration: 11, Func. Count: 162, Neg. LLF: 138.11678071137604
Iteration: 12, Func. Count: 177, Neg. LLF: 137.99610399237827
Iteration: 13, Func. Count: 191, Neg. LLF: 137.9936261884856
Iteration: 14, Func. Count: 205, Neg. LLF: 137.99330516077808
Iteration: 15, Func. Count: 219, Neg. LLF: 137.99330065218655
Iteration: 16, Func. Count: 232, Neg. LLF: 137.9933006860101
Optimization terminated successfully (Exit mode 0)
Current function value: 137.99330065218655
Iterations: 16
Function evaluations: 232
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 141.44291954694975
Iteration: 2, Func. Count: 24, Neg. LLF: 140.0538435639501
Iteration: 3, Func. Count: 36, Neg. LLF: 138.295009300698
Iteration: 4, Func. Count: 47, Neg. LLF: 140.2690146233459
Iteration: 5, Func. Count: 59, Neg. LLF: 142.20297724538378
Iteration: 6, Func. Count: 71, Neg. LLF: 139.00536094601276
Iteration: 7, Func. Count: 83, Neg. LLF: 138.7532672072074
Iteration: 8, Func. Count: 95, Neg. LLF: 137.6986358509852
Iteration: 9, Func. Count: 106, Neg. LLF: 137.68433942089854
Iteration: 10, Func. Count: 117, Neg. LLF: 137.66874356447917
Iteration: 11, Func. Count: 128, Neg. LLF: 137.6502272366454
Iteration: 12, Func. Count: 139, Neg. LLF: 137.63392092101722
Iteration: 13, Func. Count: 150, Neg. LLF: 137.62543054460266
Iteration: 14, Func. Count: 161, Neg. LLF: 137.62247940451934
Iteration: 15, Func. Count: 172, Neg. LLF: 137.61961394899572
Iteration: 16, Func. Count: 183, Neg. LLF: 137.61949620983623
Iteration: 17, Func. Count: 194, Neg. LLF: 137.6194553409983
Iteration: 18, Func. Count: 205, Neg. LLF: 137.61943226740127
Iteration: 19, Func. Count: 216, Neg. LLF: 137.61942839755324
Iteration: 20, Func. Count: 226, Neg. LLF: 137.61942837870828
Optimization terminated successfully (Exit mode 0)
Current function value: 137.61942839755324
Iterations: 20
Function evaluations: 226
Gradient evaluations: 20
Iteration: 1, Func. Count: 13, Neg. LLF: 139.89893298920396
Iteration: 2, Func. Count: 27, Neg. LLF: 141.8989228088011
Iteration: 3, Func. Count: 40, Neg. LLF: 138.70075006237167
Iteration: 4, Func. Count: 52, Neg. LLF: 141.63662714624235
Iteration: 5, Func. Count: 66, Neg. LLF: 155.4579042761294
Iteration: 6, Func. Count: 80, Neg. LLF: 154.04516389556832
Iteration: 7, Func. Count: 93, Neg. LLF: 138.41902721442307
Iteration: 8, Func. Count: 106, Neg. LLF: 137.85405122793424
Iteration: 9, Func. Count: 118, Neg. LLF: 137.79158202822063
Iteration: 10, Func. Count: 130, Neg. LLF: 137.71846903714817
Iteration: 11, Func. Count: 142, Neg. LLF: 137.6892530640635
Iteration: 12, Func. Count: 154, Neg. LLF: 137.6763235776072
Iteration: 13, Func. Count: 166, Neg. LLF: 137.64367754687456
Iteration: 14, Func. Count: 178, Neg. LLF: 137.62806156497592
Iteration: 15, Func. Count: 190, Neg. LLF: 137.62132897773378
Iteration: 16, Func. Count: 202, Neg. LLF: 137.61964846859834
Iteration: 17, Func. Count: 214, Neg. LLF: 137.61944415685193
Iteration: 18, Func. Count: 226, Neg. LLF: 137.61943073930058
Iteration: 19, Func. Count: 238, Neg. LLF: 137.61942913654923
Iteration: 20, Func. Count: 249, Neg. LLF: 137.61942917065983
Optimization terminated successfully (Exit mode 0)
Current function value: 137.61942913654923
Iterations: 20
Function evaluations: 249
Gradient evaluations: 20
Iteration: 1, Func. Count: 14, Neg. LLF: 139.10324324928544
Iteration: 2, Func. Count: 28, Neg. LLF: 140.40764333446714
Iteration: 3, Func. Count: 42, Neg. LLF: 138.03888567564698
Iteration: 4, Func. Count: 55, Neg. LLF: 139.25817366783915
Iteration: 5, Func. Count: 69, Neg. LLF: 142.55540750328288
Iteration: 6, Func. Count: 83, Neg. LLF: 137.70379052969864
Iteration: 7, Func. Count: 96, Neg. LLF: 137.74875819885432
Iteration: 8, Func. Count: 110, Neg. LLF: 137.66495268918774
Iteration: 9, Func. Count: 123, Neg. LLF: 137.65088156756622
Iteration: 10, Func. Count: 136, Neg. LLF: 137.6320723313021
Iteration: 11, Func. Count: 149, Neg. LLF: 137.62349411758078
Iteration: 12, Func. Count: 162, Neg. LLF: 137.621332198103
Iteration: 13, Func. Count: 175, Neg. LLF: 137.62007893579604
Iteration: 14, Func. Count: 188, Neg. LLF: 137.61955062951282
Iteration: 15, Func. Count: 201, Neg. LLF: 137.61943793949288
Iteration: 16, Func. Count: 214, Neg. LLF: 137.61942870720753
Iteration: 17, Func. Count: 227, Neg. LLF: 137.61942806612524
Optimization terminated successfully (Exit mode 0)
Current function value: 137.61942806612524
Iterations: 17
Function evaluations: 227
Gradient evaluations: 17
Iteration: 1, Func. Count: 15, Neg. LLF: 139.76885316409525
Iteration: 2, Func. Count: 30, Neg. LLF: 140.37979541026937
Iteration: 3, Func. Count: 45, Neg. LLF: 138.13295457133478
Iteration: 4, Func. Count: 59, Neg. LLF: 139.43586759076194
Iteration: 5, Func. Count: 74, Neg. LLF: 141.4160384771726
Iteration: 6, Func. Count: 89, Neg. LLF: 138.93251501049917
Iteration: 7, Func. Count: 104, Neg. LLF: 138.6468273414856
Iteration: 8, Func. Count: 119, Neg. LLF: 137.71402928411163
Iteration: 9, Func. Count: 133, Neg. LLF: 137.67085941925671
Iteration: 10, Func. Count: 147, Neg. LLF: 137.66185819005818
Iteration: 11, Func. Count: 161, Neg. LLF: 137.64549615457508
Iteration: 12, Func. Count: 175, Neg. LLF: 137.62604711120744
Iteration: 13, Func. Count: 189, Neg. LLF: 137.6203684864927
Iteration: 14, Func. Count: 203, Neg. LLF: 137.61972280503298
Iteration: 15, Func. Count: 217, Neg. LLF: 137.61956671976407
Iteration: 16, Func. Count: 231, Neg. LLF: 137.61944208323192
Iteration: 17, Func. Count: 245, Neg. LLF: 137.61943020018015
Iteration: 18, Func. Count: 259, Neg. LLF: 137.61942842952993
Iteration: 19, Func. Count: 272, Neg. LLF: 137.61942851824293
Optimization terminated successfully (Exit mode 0)
Current function value: 137.61942842952993
Iterations: 19
Function evaluations: 272
Gradient evaluations: 19
Iteration: 1, Func. Count: 16, Neg. LLF: 139.55179514756003
Iteration: 2, Func. Count: 32, Neg. LLF: 140.99599923068016
Iteration: 3, Func. Count: 48, Neg. LLF: 138.0499661632501
Iteration: 4, Func. Count: 63, Neg. LLF: 140.3819068784632
Iteration: 5, Func. Count: 79, Neg. LLF: 142.55497929727628
Iteration: 6, Func. Count: 96, Neg. LLF: 140.9340388546976
Iteration: 7, Func. Count: 112, Neg. LLF: 137.95593669982281
Iteration: 8, Func. Count: 128, Neg. LLF: 137.68912532063203
Iteration: 9, Func. Count: 143, Neg. LLF: 137.66986739575532
Iteration: 10, Func. Count: 158, Neg. LLF: 137.6553966045192
Iteration: 11, Func. Count: 173, Neg. LLF: 137.64533309746835
Iteration: 12, Func. Count: 188, Neg. LLF: 137.6306266844463
Iteration: 13, Func. Count: 203, Neg. LLF: 137.62282632626219
Iteration: 14, Func. Count: 218, Neg. LLF: 137.61998478714057
Iteration: 15, Func. Count: 233, Neg. LLF: 137.61948905849556
Iteration: 16, Func. Count: 248, Neg. LLF: 137.61943369598671
Iteration: 17, Func. Count: 263, Neg. LLF: 137.6194292560845
Iteration: 18, Func. Count: 278, Neg. LLF: 137.6194282916882
Optimization terminated successfully (Exit mode 0)
Current function value: 137.6194282916882
Iterations: 18
Function evaluations: 278
Gradient evaluations: 18
Iteration: 1, Func. Count: 5, Neg. LLF: 141.98250268992828
Iteration: 2, Func. Count: 10, Neg. LLF: 140.3362016896183
Iteration: 3, Func. Count: 14, Neg. LLF: 140.17588075135163
Iteration: 4, Func. Count: 18, Neg. LLF: 139.96671029226428
Iteration: 5, Func. Count: 22, Neg. LLF: 139.95965237238946
Iteration: 6, Func. Count: 26, Neg. LLF: 139.95872272451166
Iteration: 7, Func. Count: 30, Neg. LLF: 139.9585674735762
Iteration: 8, Func. Count: 34, Neg. LLF: 139.95852487757568
Iteration: 9, Func. Count: 37, Neg. LLF: 139.958524877549
Optimization terminated successfully (Exit mode 0)
Current function value: 139.95852487757568
Iterations: 9
Function evaluations: 37
Gradient evaluations: 9
Iteration: 1, Func. Count: 5, Neg. LLF: 145.81726376310178
Iteration: 2, Func. Count: 10, Neg. LLF: 141.01891857660473
Iteration: 3, Func. Count: 15, Neg. LLF: 137.98994295374368
Iteration: 4, Func. Count: 19, Neg. LLF: 137.89627483612668
Iteration: 5, Func. Count: 23, Neg. LLF: 137.88337319584963
Iteration: 6, Func. Count: 27, Neg. LLF: 137.88180230879436
Iteration: 7, Func. Count: 31, Neg. LLF: 137.8816953561608
Iteration: 8, Func. Count: 35, Neg. LLF: 137.8816442680694
Iteration: 9, Func. Count: 39, Neg. LLF: 137.88163053848172
Iteration: 10, Func. Count: 43, Neg. LLF: 137.88162998416473
Optimization terminated successfully (Exit mode 0)
Current function value: 137.88162998416473
Iterations: 10
Function evaluations: 43
Gradient evaluations: 10
Iteration: 1, Func. Count: 6, Neg. LLF: 147.5877560921283
Iteration: 2, Func. Count: 13, Neg. LLF: 140.09047308789815
Iteration: 3, Func. Count: 19, Neg. LLF: 138.71905512824426
Iteration: 4, Func. Count: 25, Neg. LLF: 138.6165428693495
Iteration: 5, Func. Count: 30, Neg. LLF: 138.55808193435414
Iteration: 6, Func. Count: 35, Neg. LLF: 138.08786228603486
Iteration: 7, Func. Count: 40, Neg. LLF: 138.00335791739846
Iteration: 8, Func. Count: 45, Neg. LLF: 137.90179164012613
Iteration: 9, Func. Count: 50, Neg. LLF: 137.88676526097072
Iteration: 10, Func. Count: 55, Neg. LLF: 137.88274241985445
Iteration: 11, Func. Count: 60, Neg. LLF: 137.88198832421182
Iteration: 12, Func. Count: 65, Neg. LLF: 137.88166484424193
Iteration: 13, Func. Count: 70, Neg. LLF: 137.8816310439974
Iteration: 14, Func. Count: 75, Neg. LLF: 137.88162998054443
Iteration: 15, Func. Count: 79, Neg. LLF: 137.881630032554
Optimization terminated successfully (Exit mode 0)
Current function value: 137.88162998054443
Iterations: 15
Function evaluations: 79
Gradient evaluations: 15
Iteration: 1, Func. Count: 7, Neg. LLF: 140.4455552905513
Iteration: 2, Func. Count: 14, Neg. LLF: 143.3386778676775
Iteration: 3, Func. Count: 22, Neg. LLF: 138.32822017200436
Iteration: 4, Func. Count: 28, Neg. LLF: 138.25967972345356
Iteration: 5, Func. Count: 34, Neg. LLF: 138.22576474255726
Iteration: 6, Func. Count: 40, Neg. LLF: 138.10114353381272
Iteration: 7, Func. Count: 46, Neg. LLF: 137.9514724604869
Iteration: 8, Func. Count: 52, Neg. LLF: 137.91257001322623
Iteration: 9, Func. Count: 58, Neg. LLF: 137.88367741786243
Iteration: 10, Func. Count: 64, Neg. LLF: 137.8819664494043
Iteration: 11, Func. Count: 70, Neg. LLF: 137.88166148991326
Iteration: 12, Func. Count: 76, Neg. LLF: 137.88163151495954
Iteration: 13, Func. Count: 82, Neg. LLF: 137.88162999153198
Iteration: 14, Func. Count: 87, Neg. LLF: 137.88163000899735
Optimization terminated successfully (Exit mode 0)
Current function value: 137.88162999153198
Iterations: 14
Function evaluations: 87
Gradient evaluations: 14
Iteration: 1, Func. Count: 8, Neg. LLF: 140.46670075412396
Iteration: 2, Func. Count: 16, Neg. LLF: 146.6454477510249
Iteration: 3, Func. Count: 25, Neg. LLF: 138.2671175257438
Iteration: 4, Func. Count: 32, Neg. LLF: 138.17843669629644
Iteration: 5, Func. Count: 39, Neg. LLF: 138.1379510585373
Iteration: 6, Func. Count: 46, Neg. LLF: 138.13239691845033
Iteration: 7, Func. Count: 54, Neg. LLF: 138.0050593268534
Iteration: 8, Func. Count: 61, Neg. LLF: 137.90337701149525
Iteration: 9, Func. Count: 68, Neg. LLF: 137.88126973544493
Iteration: 10, Func. Count: 75, Neg. LLF: 137.8782282321562
Iteration: 11, Func. Count: 82, Neg. LLF: 137.87801854930967
Iteration: 12, Func. Count: 89, Neg. LLF: 137.87801491752515
Iteration: 13, Func. Count: 96, Neg. LLF: 137.8780138634404
Iteration: 14, Func. Count: 102, Neg. LLF: 137.87801386346226
Optimization terminated successfully (Exit mode 0)
Current function value: 137.8780138634404
Iterations: 14
Function evaluations: 102
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 140.4356513451547
Iteration: 2, Func. Count: 18, Neg. LLF: 142.83318367245735
Iteration: 3, Func. Count: 28, Neg. LLF: 138.04987400151683
Iteration: 4, Func. Count: 36, Neg. LLF: 137.99078973757088
Iteration: 5, Func. Count: 44, Neg. LLF: 137.884628371007
Iteration: 6, Func. Count: 52, Neg. LLF: 137.8725969761792
Iteration: 7, Func. Count: 60, Neg. LLF: 137.86552100668683
Iteration: 8, Func. Count: 68, Neg. LLF: 137.86161708555338
Iteration: 9, Func. Count: 76, Neg. LLF: 137.8554652008438
Iteration: 10, Func. Count: 84, Neg. LLF: 137.84970358107702
Iteration: 11, Func. Count: 92, Neg. LLF: 137.8468692351147
Iteration: 12, Func. Count: 100, Neg. LLF: 137.84659514359853
Iteration: 13, Func. Count: 108, Neg. LLF: 137.8465801290494
Iteration: 14, Func. Count: 116, Neg. LLF: 137.8465789310153
Iteration: 15, Func. Count: 123, Neg. LLF: 137.8465789310036
Optimization terminated successfully (Exit mode 0)
Current function value: 137.8465789310153
Iterations: 15
Function evaluations: 123
Gradient evaluations: 15
Iteration: 1, Func. Count: 6, Neg. LLF: 144.55026257892462
Iteration: 2, Func. Count: 12, Neg. LLF: 141.85377232239676
Iteration: 3, Func. Count: 18, Neg. LLF: 138.2620702598257
Iteration: 4, Func. Count: 23, Neg. LLF: 137.96143497473122
Iteration: 5, Func. Count: 28, Neg. LLF: 137.926332022917
Iteration: 6, Func. Count: 33, Neg. LLF: 137.8987909519299
Iteration: 7, Func. Count: 38, Neg. LLF: 137.88941809895334
Iteration: 8, Func. Count: 43, Neg. LLF: 137.8816783035292
Iteration: 9, Func. Count: 48, Neg. LLF: 137.88163009655548
Iteration: 10, Func. Count: 52, Neg. LLF: 137.88163023123326
Optimization terminated successfully (Exit mode 0)
Current function value: 137.88163009655548
Iterations: 10
Function evaluations: 52
Gradient evaluations: 10
Iteration: 1, Func. Count: 7, Neg. LLF: 142.72979985997108
Iteration: 2, Func. Count: 15, Neg. LLF: 140.59426093788866
Iteration: 3, Func. Count: 22, Neg. LLF: 138.66346817924529
Iteration: 4, Func. Count: 28, Neg. LLF: 138.62168916056686
Iteration: 5, Func. Count: 34, Neg. LLF: 138.60803273877184
Iteration: 6, Func. Count: 40, Neg. LLF: 138.55678956615407
Iteration: 7, Func. Count: 46, Neg. LLF: 138.46541406678173
Iteration: 8, Func. Count: 52, Neg. LLF: 138.07223580630645
Iteration: 9, Func. Count: 58, Neg. LLF: 137.97896225071887
Iteration: 10, Func. Count: 64, Neg. LLF: 137.88637691940596
Iteration: 11, Func. Count: 70, Neg. LLF: 137.8821577281384
Iteration: 12, Func. Count: 76, Neg. LLF: 137.8816870613124
Iteration: 13, Func. Count: 82, Neg. LLF: 137.88165946720758
Iteration: 14, Func. Count: 88, Neg. LLF: 137.88164387226738
Iteration: 15, Func. Count: 94, Neg. LLF: 137.8816326421095
Iteration: 16, Func. Count: 100, Neg. LLF: 137.88163017719586
Iteration: 17, Func. Count: 105, Neg. LLF: 137.88163022922484
Optimization terminated successfully (Exit mode 0)
Current function value: 137.88163017719586
Iterations: 17
Function evaluations: 105
Gradient evaluations: 17
Iteration: 1, Func. Count: 8, Neg. LLF: 142.74208618766926
Iteration: 2, Func. Count: 17, Neg. LLF: 140.55545154061687
Iteration: 3, Func. Count: 25, Neg. LLF: 138.60974038309334
Iteration: 4, Func. Count: 32, Neg. LLF: 138.25840674632826
Iteration: 5, Func. Count: 39, Neg. LLF: 138.2382608747019
Iteration: 6, Func. Count: 46, Neg. LLF: 138.193241543001
Iteration: 7, Func. Count: 53, Neg. LLF: 138.13309851679332
Iteration: 8, Func. Count: 60, Neg. LLF: 137.91940485838876
Iteration: 9, Func. Count: 67, Neg. LLF: 137.89149365877134
Iteration: 10, Func. Count: 74, Neg. LLF: 137.88186036924617
Iteration: 11, Func. Count: 81, Neg. LLF: 137.8816550947538
Iteration: 12, Func. Count: 88, Neg. LLF: 137.88163697425193
Iteration: 13, Func. Count: 95, Neg. LLF: 137.88163031538082
Iteration: 14, Func. Count: 101, Neg. LLF: 137.88163033287466
Optimization terminated successfully (Exit mode 0)
Current function value: 137.88163031538082
Iterations: 14
Function evaluations: 101
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 142.7379873604105
Iteration: 2, Func. Count: 19, Neg. LLF: 140.45438285909972
Iteration: 3, Func. Count: 28, Neg. LLF: 140.2019614112448
Iteration: 4, Func. Count: 37, Neg. LLF: 138.19717065944138
Iteration: 5, Func. Count: 45, Neg. LLF: 138.23212555098385
Iteration: 6, Func. Count: 54, Neg. LLF: 138.14201525354372
Iteration: 7, Func. Count: 62, Neg. LLF: 137.99099831851933
Iteration: 8, Func. Count: 70, Neg. LLF: 137.9410626169903
Iteration: 9, Func. Count: 78, Neg. LLF: 137.9054468987371
Iteration: 10, Func. Count: 86, Neg. LLF: 137.89694388173214
Iteration: 11, Func. Count: 94, Neg. LLF: 137.8871019933635
Iteration: 12, Func. Count: 102, Neg. LLF: 137.88270875168112
Iteration: 13, Func. Count: 110, Neg. LLF: 137.87878916574846
Iteration: 14, Func. Count: 118, Neg. LLF: 137.87807896554966
Iteration: 15, Func. Count: 126, Neg. LLF: 137.8780159846906
Iteration: 16, Func. Count: 134, Neg. LLF: 137.87801382941743
Iteration: 17, Func. Count: 141, Neg. LLF: 137.87801382943113
Optimization terminated successfully (Exit mode 0)
Current function value: 137.87801382941743
Iterations: 17
Function evaluations: 141
Gradient evaluations: 17
Iteration: 1, Func. Count: 10, Neg. LLF: 142.7389417427746
Iteration: 2, Func. Count: 21, Neg. LLF: 140.41147941320682
Iteration: 3, Func. Count: 31, Neg. LLF: 141.4760984960127
Iteration: 4, Func. Count: 41, Neg. LLF: 137.97717678219226
Iteration: 5, Func. Count: 50, Neg. LLF: 138.00598142836049
Iteration: 6, Func. Count: 60, Neg. LLF: 137.91524773442728
Iteration: 7, Func. Count: 69, Neg. LLF: 137.89668853228065
Iteration: 8, Func. Count: 78, Neg. LLF: 137.86825197312106
Iteration: 9, Func. Count: 87, Neg. LLF: 137.86638177552103
Iteration: 10, Func. Count: 96, Neg. LLF: 137.85713772523653
Iteration: 11, Func. Count: 105, Neg. LLF: 137.85081574532964
Iteration: 12, Func. Count: 114, Neg. LLF: 137.8472419176897
Iteration: 13, Func. Count: 123, Neg. LLF: 137.84658838503225
Iteration: 14, Func. Count: 132, Neg. LLF: 137.84657894751993
Iteration: 15, Func. Count: 140, Neg. LLF: 137.84657894754437
Optimization terminated successfully (Exit mode 0)
Current function value: 137.84657894751993
Iterations: 15
Function evaluations: 140
Gradient evaluations: 15
Iteration: 1, Func. Count: 7, Neg. LLF: 142.50513384123747
Iteration: 2, Func. Count: 14, Neg. LLF: 140.23528126999094
Iteration: 3, Func. Count: 21, Neg. LLF: 140.31792550778556
Iteration: 4, Func. Count: 28, Neg. LLF: 138.23406199584574
Iteration: 5, Func. Count: 34, Neg. LLF: 138.09212774774554
Iteration: 6, Func. Count: 40, Neg. LLF: 137.99634651653582
Iteration: 7, Func. Count: 46, Neg. LLF: 137.9118647516828
Iteration: 8, Func. Count: 52, Neg. LLF: 137.8890085994922
Iteration: 9, Func. Count: 58, Neg. LLF: 137.88174716433576
Iteration: 10, Func. Count: 64, Neg. LLF: 137.8816322124991
Iteration: 11, Func. Count: 70, Neg. LLF: 137.881630147354
Iteration: 12, Func. Count: 75, Neg. LLF: 137.8816301957089
Optimization terminated successfully (Exit mode 0)
Current function value: 137.881630147354
Iterations: 12
Function evaluations: 75
Gradient evaluations: 12
Iteration: 1, Func. Count: 8, Neg. LLF: 142.89215645920524
Iteration: 2, Func. Count: 17, Neg. LLF: 141.00147754862465
Iteration: 3, Func. Count: 25, Neg. LLF: 138.66319973059333
Iteration: 4, Func. Count: 32, Neg. LLF: 138.82017887487706
Iteration: 5, Func. Count: 40, Neg. LLF: 138.61242274984156
Iteration: 6, Func. Count: 47, Neg. LLF: 138.49646624317194
Iteration: 7, Func. Count: 54, Neg. LLF: 137.97398048438254
Iteration: 8, Func. Count: 61, Neg. LLF: 137.9323258930863
Iteration: 9, Func. Count: 68, Neg. LLF: 137.8986621154216
Iteration: 10, Func. Count: 75, Neg. LLF: 137.88565974886527
Iteration: 11, Func. Count: 82, Neg. LLF: 137.8828846198204
Iteration: 12, Func. Count: 89, Neg. LLF: 137.88178645777222
Iteration: 13, Func. Count: 96, Neg. LLF: 137.88164814473444
Iteration: 14, Func. Count: 103, Neg. LLF: 137.8816300452552
Iteration: 15, Func. Count: 109, Neg. LLF: 137.88163009725486
Optimization terminated successfully (Exit mode 0)
Current function value: 137.8816300452552
Iterations: 15
Function evaluations: 109
Gradient evaluations: 15
Iteration: 1, Func. Count: 9, Neg. LLF: 142.91729657524527
Iteration: 2, Func. Count: 19, Neg. LLF: 141.14188809385232
Iteration: 3, Func. Count: 28, Neg. LLF: 138.36437508999
Iteration: 4, Func. Count: 36, Neg. LLF: 138.45296668648362
Iteration: 5, Func. Count: 45, Neg. LLF: 138.27586039715973
Iteration: 6, Func. Count: 53, Neg. LLF: 138.23098673886054
Iteration: 7, Func. Count: 61, Neg. LLF: 138.106538308113
Iteration: 8, Func. Count: 69, Neg. LLF: 137.96545870026085
Iteration: 9, Func. Count: 77, Neg. LLF: 137.89271180768588
Iteration: 10, Func. Count: 85, Neg. LLF: 137.88408749648198
Iteration: 11, Func. Count: 93, Neg. LLF: 137.8816491832564
Iteration: 12, Func. Count: 101, Neg. LLF: 137.8816322289418
Iteration: 13, Func. Count: 109, Neg. LLF: 137.88163020942727
Iteration: 14, Func. Count: 116, Neg. LLF: 137.8816302268536
Optimization terminated successfully (Exit mode 0)
Current function value: 137.88163020942727
Iterations: 14
Function evaluations: 116
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 22778503.347886045
Iteration: 2, Func. Count: 21, Neg. LLF: 138.56423154501368
Iteration: 3, Func. Count: 30, Neg. LLF: 138.40156747915546
Iteration: 4, Func. Count: 39, Neg. LLF: 138.3998428803072
Iteration: 5, Func. Count: 49, Neg. LLF: 138.3910872755516
Iteration: 6, Func. Count: 58, Neg. LLF: 138.38880098330276
Iteration: 7, Func. Count: 67, Neg. LLF: 138.3852947905542
Iteration: 8, Func. Count: 76, Neg. LLF: 138.38329366022822
Iteration: 9, Func. Count: 85, Neg. LLF: 138.38238982877638
Iteration: 10, Func. Count: 94, Neg. LLF: 138.38222262473627
Iteration: 11, Func. Count: 103, Neg. LLF: 138.38221958852753
Iteration: 12, Func. Count: 112, Neg. LLF: 138.38221893488154
Optimization terminated successfully (Exit mode 0)
Current function value: 138.38221893488154
Iterations: 12
Function evaluations: 112
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 22775962.809279326
Iteration: 2, Func. Count: 23, Neg. LLF: 138.55996055609916
Iteration: 3, Func. Count: 33, Neg. LLF: 138.41914113527562
Iteration: 4, Func. Count: 43, Neg. LLF: 140.33028834801715
Iteration: 5, Func. Count: 54, Neg. LLF: 138.40356933346416
Iteration: 6, Func. Count: 65, Neg. LLF: 138.36027372023
Iteration: 7, Func. Count: 75, Neg. LLF: 138.35839317947259
Iteration: 8, Func. Count: 85, Neg. LLF: 138.3566478490798
Iteration: 9, Func. Count: 95, Neg. LLF: 138.35646027727068
Iteration: 10, Func. Count: 105, Neg. LLF: 138.35640389252862
Iteration: 11, Func. Count: 114, Neg. LLF: 138.35640389271987
Optimization terminated successfully (Exit mode 0)
Current function value: 138.35640389252862
Iterations: 11
Function evaluations: 114
Gradient evaluations: 11
Iteration: 1, Func. Count: 8, Neg. LLF: 142.91170698633326
Iteration: 2, Func. Count: 16, Neg. LLF: 141.24864965164628
Iteration: 3, Func. Count: 25, Neg. LLF: 149.04697166702218
Iteration: 4, Func. Count: 33, Neg. LLF: 138.3768347010167
Iteration: 5, Func. Count: 40, Neg. LLF: 137.973101737953
Iteration: 6, Func. Count: 47, Neg. LLF: 137.9154380348986
Iteration: 7, Func. Count: 54, Neg. LLF: 137.8995871353663
Iteration: 8, Func. Count: 61, Neg. LLF: 137.8804603923722
Iteration: 9, Func. Count: 68, Neg. LLF: 137.8782991508262
Iteration: 10, Func. Count: 75, Neg. LLF: 137.87731448377824
Iteration: 11, Func. Count: 82, Neg. LLF: 137.8773035102319
Iteration: 12, Func. Count: 88, Neg. LLF: 137.87730351017444
Optimization terminated successfully (Exit mode 0)
Current function value: 137.8773035102319
Iterations: 12
Function evaluations: 88
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 142.88523915551713
Iteration: 2, Func. Count: 19, Neg. LLF: 140.99655121613426
Iteration: 3, Func. Count: 28, Neg. LLF: 140.1660797827029
Iteration: 4, Func. Count: 38, Neg. LLF: 141.02918241914003
Iteration: 5, Func. Count: 47, Neg. LLF: 139.02159158038606
Iteration: 6, Func. Count: 56, Neg. LLF: 138.60374327387623
Iteration: 7, Func. Count: 64, Neg. LLF: 138.5545542569144
Iteration: 8, Func. Count: 72, Neg. LLF: 138.09215067264515
Iteration: 9, Func. Count: 80, Neg. LLF: 137.92436219369577
Iteration: 10, Func. Count: 88, Neg. LLF: 137.8971102059643
Iteration: 11, Func. Count: 96, Neg. LLF: 137.8804588806131
Iteration: 12, Func. Count: 104, Neg. LLF: 137.8779954181425
Iteration: 13, Func. Count: 112, Neg. LLF: 137.87741269359478
Iteration: 14, Func. Count: 120, Neg. LLF: 137.87731983368897
Iteration: 15, Func. Count: 128, Neg. LLF: 137.87730424943499
Iteration: 16, Func. Count: 136, Neg. LLF: 137.8773033831151
Optimization terminated successfully (Exit mode 0)
Current function value: 137.8773033831151
Iterations: 16
Function evaluations: 136
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 142.91074606826254
Iteration: 2, Func. Count: 21, Neg. LLF: 141.14157148852888
Iteration: 3, Func. Count: 31, Neg. LLF: 138.35748764905097
Iteration: 4, Func. Count: 40, Neg. LLF: 138.43673523556836
Iteration: 5, Func. Count: 50, Neg. LLF: 140.30407570175575
Iteration: 6, Func. Count: 61, Neg. LLF: 138.28765044604597
Iteration: 7, Func. Count: 70, Neg. LLF: 138.21872911793346
Iteration: 8, Func. Count: 79, Neg. LLF: 138.1391931908663
Iteration: 9, Func. Count: 88, Neg. LLF: 138.03200394608507
Iteration: 10, Func. Count: 97, Neg. LLF: 137.9008847556129
Iteration: 11, Func. Count: 106, Neg. LLF: 137.88235584339972
Iteration: 12, Func. Count: 115, Neg. LLF: 137.87796855608025
Iteration: 13, Func. Count: 124, Neg. LLF: 137.8773642989426
Iteration: 14, Func. Count: 133, Neg. LLF: 137.87730823100915
Iteration: 15, Func. Count: 142, Neg. LLF: 137.8773038451482
Iteration: 16, Func. Count: 150, Neg. LLF: 137.87730386202068
Optimization terminated successfully (Exit mode 0)
Current function value: 137.8773038451482
Iterations: 16
Function evaluations: 150
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 22778356.666399565
Iteration: 2, Func. Count: 23, Neg. LLF: 138.5656510063382
Iteration: 3, Func. Count: 33, Neg. LLF: 138.40052584943436
Iteration: 4, Func. Count: 43, Neg. LLF: 138.39841976343624
Iteration: 5, Func. Count: 54, Neg. LLF: 138.3901718682865
Iteration: 6, Func. Count: 64, Neg. LLF: 138.38813012228604
Iteration: 7, Func. Count: 74, Neg. LLF: 138.38474338417265
Iteration: 8, Func. Count: 84, Neg. LLF: 138.38303164280848
Iteration: 9, Func. Count: 94, Neg. LLF: 138.38226311511838
Iteration: 10, Func. Count: 104, Neg. LLF: 138.3822234201586
Iteration: 11, Func. Count: 114, Neg. LLF: 138.38221921359622
Iteration: 12, Func. Count: 123, Neg. LLF: 138.38221921400415
Optimization terminated successfully (Exit mode 0)
Current function value: 138.38221921359622
Iterations: 12
Function evaluations: 123
Gradient evaluations: 12
Iteration: 1, Func. Count: 12, Neg. LLF: 22775543.98406681
Iteration: 2, Func. Count: 25, Neg. LLF: 138.56033450872718
Iteration: 3, Func. Count: 36, Neg. LLF: 138.41925894516305
Iteration: 4, Func. Count: 47, Neg. LLF: 140.38686923758667
Iteration: 5, Func. Count: 59, Neg. LLF: 138.37448224082777
Iteration: 6, Func. Count: 70, Neg. LLF: 138.40476579485826
Iteration: 7, Func. Count: 82, Neg. LLF: 138.35836152659778
Iteration: 8, Func. Count: 93, Neg. LLF: 138.35640730714317
Iteration: 9, Func. Count: 104, Neg. LLF: 138.3564037832478
Iteration: 10, Func. Count: 114, Neg. LLF: 138.3564037833734
Optimization terminated successfully (Exit mode 0)
Current function value: 138.3564037832478
Iterations: 10
Function evaluations: 114
Gradient evaluations: 10
Iteration: 1, Func. Count: 5, Neg. LLF: 138.60456753378546
Iteration: 2, Func. Count: 10, Neg. LLF: 137.28785136605987
Iteration: 3, Func. Count: 15, Neg. LLF: 136.91666736773675
Iteration: 4, Func. Count: 19, Neg. LLF: 136.88854831141524
Iteration: 5, Func. Count: 23, Neg. LLF: 136.8869207554247
Iteration: 6, Func. Count: 27, Neg. LLF: 136.8868643068567
Iteration: 7, Func. Count: 31, Neg. LLF: 136.88684432670595
Iteration: 8, Func. Count: 35, Neg. LLF: 136.88684352377544
Optimization terminated successfully (Exit mode 0)
Current function value: 136.88684352377544
Iterations: 8
Function evaluations: 35
Gradient evaluations: 8
Iteration: 1, Func. Count: 6, Neg. LLF: 143.33864750521067
Iteration: 2, Func. Count: 12, Neg. LLF: 149.11482237031973
Iteration: 3, Func. Count: 18, Neg. LLF: 136.54238498485014
Iteration: 4, Func. Count: 24, Neg. LLF: 136.46140750117243
Iteration: 5, Func. Count: 29, Neg. LLF: 136.3937141639158
Iteration: 6, Func. Count: 34, Neg. LLF: 136.3558472312781
Iteration: 7, Func. Count: 39, Neg. LLF: 136.34109349956083
Iteration: 8, Func. Count: 44, Neg. LLF: 136.33928209227122
Iteration: 9, Func. Count: 49, Neg. LLF: 136.3392338184737
Iteration: 10, Func. Count: 54, Neg. LLF: 136.3392283438022
Iteration: 11, Func. Count: 59, Neg. LLF: 136.33922782586984
Optimization terminated successfully (Exit mode 0)
Current function value: 136.33922782586984
Iterations: 11
Function evaluations: 59
Gradient evaluations: 11
Iteration: 1, Func. Count: 7, Neg. LLF: 143.04150520330808
Iteration: 2, Func. Count: 14, Neg. LLF: 147.65582191346772
Iteration: 3, Func. Count: 21, Neg. LLF: 136.4147368573954
Iteration: 4, Func. Count: 28, Neg. LLF: 136.11058072074474
Iteration: 5, Func. Count: 34, Neg. LLF: 136.05075726314405
Iteration: 6, Func. Count: 40, Neg. LLF: 136.30132485768863
Iteration: 7, Func. Count: 48, Neg. LLF: 136.01803872922608
Iteration: 8, Func. Count: 54, Neg. LLF: 136.00951614175017
Iteration: 9, Func. Count: 60, Neg. LLF: 136.0083656800056
Iteration: 10, Func. Count: 66, Neg. LLF: 136.0082913453201
Iteration: 11, Func. Count: 71, Neg. LLF: 136.00829134538017
Optimization terminated successfully (Exit mode 0)
Current function value: 136.0082913453201
Iterations: 11
Function evaluations: 71
Gradient evaluations: 11
Iteration: 1, Func. Count: 8, Neg. LLF: 144.2160618023233
Iteration: 2, Func. Count: 16, Neg. LLF: 155.4649499128303
Iteration: 3, Func. Count: 24, Neg. LLF: 137.95517156752086
Iteration: 4, Func. Count: 32, Neg. LLF: 136.0935508838581
Iteration: 5, Func. Count: 39, Neg. LLF: 136.3431260429754
Iteration: 6, Func. Count: 47, Neg. LLF: 136.01193592021363
Iteration: 7, Func. Count: 54, Neg. LLF: 136.0085012826055
Iteration: 8, Func. Count: 61, Neg. LLF: 136.00834660582566
Iteration: 9, Func. Count: 68, Neg. LLF: 136.0083079564309
Iteration: 10, Func. Count: 75, Neg. LLF: 136.00829169544124
Iteration: 11, Func. Count: 82, Neg. LLF: 136.00829086549024
Optimization terminated successfully (Exit mode 0)
Current function value: 136.00829086549024
Iterations: 11
Function evaluations: 82
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 138.65412358799182
Iteration: 2, Func. Count: 18, Neg. LLF: 137.38478219335718
Iteration: 3, Func. Count: 27, Neg. LLF: 144.85706453046706
Iteration: 4, Func. Count: 36, Neg. LLF: 136.37769646049284
Iteration: 5, Func. Count: 44, Neg. LLF: 141.79070720702688
Iteration: 6, Func. Count: 53, Neg. LLF: 136.26784167962762
Iteration: 7, Func. Count: 61, Neg. LLF: 136.29814107720344
Iteration: 8, Func. Count: 70, Neg. LLF: 136.08476339779287
Iteration: 9, Func. Count: 78, Neg. LLF: 136.01157179727525
Iteration: 10, Func. Count: 86, Neg. LLF: 136.00837894687413
Iteration: 11, Func. Count: 94, Neg. LLF: 136.00839215874367
Iteration: 12, Func. Count: 103, Neg. LLF: 136.00829096653356
Iteration: 13, Func. Count: 110, Neg. LLF: 136.00829102246698
Optimization terminated successfully (Exit mode 0)
Current function value: 136.00829096653356
Iterations: 13
Function evaluations: 110
Gradient evaluations: 13
Iteration: 1, Func. Count: 6, Neg. LLF: 138.49495289631335
Iteration: 2, Func. Count: 12, Neg. LLF: 137.44769770143122
Iteration: 3, Func. Count: 18, Neg. LLF: 136.94795278641718
Iteration: 4, Func. Count: 23, Neg. LLF: 137.22526223894852
Iteration: 5, Func. Count: 29, Neg. LLF: 136.8541278389124
Iteration: 6, Func. Count: 34, Neg. LLF: 136.85279677292561
Iteration: 7, Func. Count: 39, Neg. LLF: 136.8522084182223
Iteration: 8, Func. Count: 44, Neg. LLF: 136.85218207648953
Iteration: 9, Func. Count: 48, Neg. LLF: 136.8521820764695
Optimization terminated successfully (Exit mode 0)
Current function value: 136.85218207648953
Iterations: 9
Function evaluations: 48
Gradient evaluations: 9
Iteration: 1, Func. Count: 7, Neg. LLF: 161.0370548311526
Iteration: 2, Func. Count: 14, Neg. LLF: 137.6743811655595
Iteration: 3, Func. Count: 21, Neg. LLF: 136.5931234174889
Iteration: 4, Func. Count: 28, Neg. LLF: 136.95667435691422
Iteration: 5, Func. Count: 35, Neg. LLF: 137.8004143244394
Iteration: 6, Func. Count: 42, Neg. LLF: 136.21723826207
Iteration: 7, Func. Count: 48, Neg. LLF: 137.92722545007024
Iteration: 8, Func. Count: 55, Neg. LLF: 137.44950279776592
Iteration: 9, Func. Count: 62, Neg. LLF: 136.14972578533522
Iteration: 10, Func. Count: 69, Neg. LLF: 136.05588844176881
Iteration: 11, Func. Count: 75, Neg. LLF: 136.05749031908653
Iteration: 12, Func. Count: 82, Neg. LLF: 136.05430202903432
Iteration: 13, Func. Count: 88, Neg. LLF: 136.05423600975502
Iteration: 14, Func. Count: 94, Neg. LLF: 136.05422367059344
Iteration: 15, Func. Count: 100, Neg. LLF: 136.05422056745292
Iteration: 16, Func. Count: 105, Neg. LLF: 136.05422056744715
Optimization terminated successfully (Exit mode 0)
Current function value: 136.05422056745292
Iterations: 16
Function evaluations: 105
Gradient evaluations: 16
Iteration: 1, Func. Count: 8, Neg. LLF: 159.73280653977963
Iteration: 2, Func. Count: 16, Neg. LLF: 138.1351612155573
Iteration: 3, Func. Count: 24, Neg. LLF: 141.31845394036262
Iteration: 4, Func. Count: 32, Neg. LLF: 140.92877541360303
Iteration: 5, Func. Count: 40, Neg. LLF: 136.68167947355806
Iteration: 6, Func. Count: 48, Neg. LLF: 136.069347704771
Iteration: 7, Func. Count: 55, Neg. LLF: 136.3315847107079
Iteration: 8, Func. Count: 63, Neg. LLF: 136.05540173589483
Iteration: 9, Func. Count: 71, Neg. LLF: 136.03089015239942
Iteration: 10, Func. Count: 78, Neg. LLF: 136.0095423834812
Iteration: 11, Func. Count: 85, Neg. LLF: 136.00856116686424
Iteration: 12, Func. Count: 92, Neg. LLF: 136.00828094333997
Iteration: 13, Func. Count: 99, Neg. LLF: 136.00827448039877
Iteration: 14, Func. Count: 105, Neg. LLF: 136.00827448045973
Optimization terminated successfully (Exit mode 0)
Current function value: 136.00827448039877
Iterations: 14
Function evaluations: 105
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 138.41067175947597
Iteration: 2, Func. Count: 18, Neg. LLF: 144.66909080806457
Iteration: 3, Func. Count: 27, Neg. LLF: 139.27016992965355
Iteration: 4, Func. Count: 36, Neg. LLF: 137.0641194759455
Iteration: 5, Func. Count: 45, Neg. LLF: 136.39172919149243
Iteration: 6, Func. Count: 53, Neg. LLF: 136.68541052216833
Iteration: 7, Func. Count: 62, Neg. LLF: 136.1950407347106
Iteration: 8, Func. Count: 70, Neg. LLF: 136.58538074588725
Iteration: 9, Func. Count: 79, Neg. LLF: 136.10593107999563
Iteration: 10, Func. Count: 88, Neg. LLF: 136.02348133707548
Iteration: 11, Func. Count: 96, Neg. LLF: 136.0089134952996
Iteration: 12, Func. Count: 104, Neg. LLF: 136.00859620490567
Iteration: 13, Func. Count: 112, Neg. LLF: 136.00828061772543
Iteration: 14, Func. Count: 120, Neg. LLF: 136.00827480143073
Iteration: 15, Func. Count: 128, Neg. LLF: 136.0082742151697
Optimization terminated successfully (Exit mode 0)
Current function value: 136.0082742151697
Iterations: 15
Function evaluations: 128
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 138.36975380279418
Iteration: 2, Func. Count: 20, Neg. LLF: 144.5173322555324
Iteration: 3, Func. Count: 30, Neg. LLF: 138.84698130110047
Iteration: 4, Func. Count: 40, Neg. LLF: 137.00392313683147
Iteration: 5, Func. Count: 50, Neg. LLF: 136.62596621821893
Iteration: 6, Func. Count: 60, Neg. LLF: 136.3875126440696
Iteration: 7, Func. Count: 69, Neg. LLF: 136.2404674844325
Iteration: 8, Func. Count: 78, Neg. LLF: 136.4424580718961
Iteration: 9, Func. Count: 88, Neg. LLF: 136.37118746795937
Iteration: 10, Func. Count: 98, Neg. LLF: 136.03512069154488
Iteration: 11, Func. Count: 107, Neg. LLF: 136.02023473091808
Iteration: 12, Func. Count: 116, Neg. LLF: 136.01070914794238
Iteration: 13, Func. Count: 125, Neg. LLF: 136.0124456565023
Iteration: 14, Func. Count: 135, Neg. LLF: 136.00830125131057
Iteration: 15, Func. Count: 144, Neg. LLF: 136.0082743654898
Iteration: 16, Func. Count: 152, Neg. LLF: 136.00827442146928
Optimization terminated successfully (Exit mode 0)
Current function value: 136.0082743654898
Iterations: 16
Function evaluations: 152
Gradient evaluations: 16
Iteration: 1, Func. Count: 7, Neg. LLF: 138.5526720173632
Iteration: 2, Func. Count: 14, Neg. LLF: 137.0666896015271
Iteration: 3, Func. Count: 20, Neg. LLF: 136.95141455665748
Iteration: 4, Func. Count: 26, Neg. LLF: 137.1708817579474
Iteration: 5, Func. Count: 33, Neg. LLF: 136.8563675639184
Iteration: 6, Func. Count: 39, Neg. LLF: 136.85225720269068
Iteration: 7, Func. Count: 45, Neg. LLF: 136.85219780636757
Iteration: 8, Func. Count: 51, Neg. LLF: 136.85218388013163
Iteration: 9, Func. Count: 57, Neg. LLF: 136.8521819642678
Iteration: 10, Func. Count: 62, Neg. LLF: 136.85218206670785
Optimization terminated successfully (Exit mode 0)
Current function value: 136.8521819642678
Iterations: 10
Function evaluations: 62
Gradient evaluations: 10
Iteration: 1, Func. Count: 8, Neg. LLF: 161.62731051956166
Iteration: 2, Func. Count: 16, Neg. LLF: 141.73472109631643
Iteration: 3, Func. Count: 24, Neg. LLF: 140.9815600541823
Iteration: 4, Func. Count: 32, Neg. LLF: 137.0740487636453
Iteration: 5, Func. Count: 40, Neg. LLF: 136.35376869878175
Iteration: 6, Func. Count: 47, Neg. LLF: 136.2430354185086
Iteration: 7, Func. Count: 54, Neg. LLF: 136.13331466317604
Iteration: 8, Func. Count: 61, Neg. LLF: 136.1820214132991
Iteration: 9, Func. Count: 69, Neg. LLF: 136.05772375506868
Iteration: 10, Func. Count: 76, Neg. LLF: 136.05492013176857
Iteration: 11, Func. Count: 83, Neg. LLF: 136.05424813522646
Iteration: 12, Func. Count: 90, Neg. LLF: 136.0542216577052
Iteration: 13, Func. Count: 97, Neg. LLF: 136.05422058865548
Iteration: 14, Func. Count: 103, Neg. LLF: 136.0542205885847
Optimization terminated successfully (Exit mode 0)
Current function value: 136.05422058865548
Iterations: 14
Function evaluations: 103
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 162.06559828958302
Iteration: 2, Func. Count: 18, Neg. LLF: 141.4470680509002
Iteration: 3, Func. Count: 27, Neg. LLF: 142.67266138160505
Iteration: 4, Func. Count: 36, Neg. LLF: 139.36757732030978
Iteration: 5, Func. Count: 45, Neg. LLF: 136.24180812375187
Iteration: 6, Func. Count: 54, Neg. LLF: 136.05944951728787
Iteration: 7, Func. Count: 62, Neg. LLF: 136.03577632991747
Iteration: 8, Func. Count: 70, Neg. LLF: 136.02178902124936
Iteration: 9, Func. Count: 78, Neg. LLF: 136.01339056186072
Iteration: 10, Func. Count: 86, Neg. LLF: 136.0094707627293
Iteration: 11, Func. Count: 94, Neg. LLF: 136.00828289162382
Iteration: 12, Func. Count: 102, Neg. LLF: 136.0082742988952
Iteration: 13, Func. Count: 109, Neg. LLF: 136.00827429892254
Optimization terminated successfully (Exit mode 0)
Current function value: 136.0082742988952
Iterations: 13
Function evaluations: 109
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 161.95284127296077
Iteration: 2, Func. Count: 20, Neg. LLF: 140.83518070668273
Iteration: 3, Func. Count: 30, Neg. LLF: 141.67349933458553
Iteration: 4, Func. Count: 40, Neg. LLF: 142.10392825056857
Iteration: 5, Func. Count: 50, Neg. LLF: 136.28100888190525
Iteration: 6, Func. Count: 60, Neg. LLF: 136.10267177035783
Iteration: 7, Func. Count: 69, Neg. LLF: 136.23301075083108
Iteration: 8, Func. Count: 80, Neg. LLF: 136.12195601227003
Iteration: 9, Func. Count: 90, Neg. LLF: 136.03372893589565
Iteration: 10, Func. Count: 99, Neg. LLF: 136.0167028945475
Iteration: 11, Func. Count: 108, Neg. LLF: 136.00988959287173
Iteration: 12, Func. Count: 117, Neg. LLF: 136.00841844072107
Iteration: 13, Func. Count: 126, Neg. LLF: 136.00827872515737
Iteration: 14, Func. Count: 135, Neg. LLF: 136.0082747436771
Iteration: 15, Func. Count: 143, Neg. LLF: 136.00827476233567
Optimization terminated successfully (Exit mode 0)
Current function value: 136.0082747436771
Iterations: 15
Function evaluations: 143
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 138.6705941849953
Iteration: 2, Func. Count: 22, Neg. LLF: 139.16949960348992
Iteration: 3, Func. Count: 33, Neg. LLF: 139.4399799514295
Iteration: 4, Func. Count: 44, Neg. LLF: 144.36834896012135
Iteration: 5, Func. Count: 55, Neg. LLF: 137.10753519962836
Iteration: 6, Func. Count: 66, Neg. LLF: 136.36591591430516
Iteration: 7, Func. Count: 76, Neg. LLF: 136.27790856657694
Iteration: 8, Func. Count: 86, Neg. LLF: 136.10011412626372
Iteration: 9, Func. Count: 96, Neg. LLF: 136.24007916266694
Iteration: 10, Func. Count: 107, Neg. LLF: 136.04467246636256
Iteration: 11, Func. Count: 118, Neg. LLF: 136.21127994031892
Iteration: 12, Func. Count: 129, Neg. LLF: 136.0082985805006
Iteration: 13, Func. Count: 139, Neg. LLF: 136.00827492529768
Iteration: 14, Func. Count: 149, Neg. LLF: 136.00827426643943
Optimization terminated successfully (Exit mode 0)
Current function value: 136.00827426643943
Iterations: 14
Function evaluations: 149
Gradient evaluations: 14
Iteration: 1, Func. Count: 8, Neg. LLF: 139.53304495393016
Iteration: 2, Func. Count: 16, Neg. LLF: 140.77792644741626
Iteration: 3, Func. Count: 25, Neg. LLF: 140.98634543729733
Iteration: 4, Func. Count: 33, Neg. LLF: 136.40252912359426
Iteration: 5, Func. Count: 40, Neg. LLF: 136.35494028029743
Iteration: 6, Func. Count: 47, Neg. LLF: 136.29371979542879
Iteration: 7, Func. Count: 54, Neg. LLF: 136.26219146186577
Iteration: 8, Func. Count: 61, Neg. LLF: 136.25190950654198
Iteration: 9, Func. Count: 68, Neg. LLF: 136.25012123966115
Iteration: 10, Func. Count: 75, Neg. LLF: 136.249411645377
Iteration: 11, Func. Count: 82, Neg. LLF: 136.249399808147
Iteration: 12, Func. Count: 89, Neg. LLF: 136.24939885142598
Optimization terminated successfully (Exit mode 0)
Current function value: 136.24939885142598
Iterations: 12
Function evaluations: 89
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 161.69892279977313
Iteration: 2, Func. Count: 18, Neg. LLF: 142.1323541532099
Iteration: 3, Func. Count: 27, Neg. LLF: 137.78710183728913
Iteration: 4, Func. Count: 36, Neg. LLF: 138.18118460199483
Iteration: 5, Func. Count: 45, Neg. LLF: 136.00714116052762
Iteration: 6, Func. Count: 54, Neg. LLF: 135.76576213094197
Iteration: 7, Func. Count: 62, Neg. LLF: 135.75544272433217
Iteration: 8, Func. Count: 70, Neg. LLF: 136.00188238785432
Iteration: 9, Func. Count: 79, Neg. LLF: 135.73112879590704
Iteration: 10, Func. Count: 87, Neg. LLF: 135.7292977677782
Iteration: 11, Func. Count: 95, Neg. LLF: 135.72898849005725
Iteration: 12, Func. Count: 103, Neg. LLF: 135.72890915475134
Iteration: 13, Func. Count: 111, Neg. LLF: 135.72886331842128
Iteration: 14, Func. Count: 119, Neg. LLF: 135.72884253364026
Iteration: 15, Func. Count: 127, Neg. LLF: 135.72884024941618
Iteration: 16, Func. Count: 134, Neg. LLF: 135.72884024942502
Optimization terminated successfully (Exit mode 0)
Current function value: 135.72884024941618
Iterations: 16
Function evaluations: 134
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 162.11691433262573
Iteration: 2, Func. Count: 20, Neg. LLF: 141.47859550967024
Iteration: 3, Func. Count: 30, Neg. LLF: 138.1970125744
Iteration: 4, Func. Count: 40, Neg. LLF: 138.43429008128825
Iteration: 5, Func. Count: 50, Neg. LLF: 135.7869998345782
Iteration: 6, Func. Count: 60, Neg. LLF: 136.16241318842563
Iteration: 7, Func. Count: 70, Neg. LLF: 140.0596480758743
Iteration: 8, Func. Count: 80, Neg. LLF: 135.62692253329703
Iteration: 9, Func. Count: 90, Neg. LLF: 135.59564538390342
Iteration: 10, Func. Count: 99, Neg. LLF: 135.59252634675846
Iteration: 11, Func. Count: 108, Neg. LLF: 135.59229958338508
Iteration: 12, Func. Count: 117, Neg. LLF: 135.59222975416165
Iteration: 13, Func. Count: 126, Neg. LLF: 135.5921917574473
Iteration: 14, Func. Count: 134, Neg. LLF: 135.5921917574131
Optimization terminated successfully (Exit mode 0)
Current function value: 135.5921917574473
Iterations: 14
Function evaluations: 134
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 162.00260312332227
Iteration: 2, Func. Count: 22, Neg. LLF: 137.9422780047561
Iteration: 3, Func. Count: 33, Neg. LLF: 138.26606467069197
Iteration: 4, Func. Count: 44, Neg. LLF: 157.79014760046604
Iteration: 5, Func. Count: 55, Neg. LLF: 136.9843458345229
Iteration: 6, Func. Count: 66, Neg. LLF: 135.9006920467132
Iteration: 7, Func. Count: 77, Neg. LLF: 136.05743680711757
Iteration: 8, Func. Count: 88, Neg. LLF: 135.63800209960976
Iteration: 9, Func. Count: 98, Neg. LLF: 135.60657015593048
Iteration: 10, Func. Count: 108, Neg. LLF: 135.5926208831015
Iteration: 11, Func. Count: 118, Neg. LLF: 135.5922241460763
Iteration: 12, Func. Count: 128, Neg. LLF: 135.5921937832005
Iteration: 13, Func. Count: 138, Neg. LLF: 135.59219181532393
Iteration: 14, Func. Count: 147, Neg. LLF: 135.59219184128546
Optimization terminated successfully (Exit mode 0)
Current function value: 135.59219181532393
Iterations: 14
Function evaluations: 147
Gradient evaluations: 14
Iteration: 1, Func. Count: 12, Neg. LLF: 138.6866292789017
Iteration: 2, Func. Count: 24, Neg. LLF: 139.07104248747146
Iteration: 3, Func. Count: 36, Neg. LLF: 146.2335100022944
Iteration: 4, Func. Count: 48, Neg. LLF: 138.15668053679602
Iteration: 5, Func. Count: 60, Neg. LLF: 145.5212222221906
Iteration: 6, Func. Count: 72, Neg. LLF: 137.11907699385768
Iteration: 7, Func. Count: 84, Neg. LLF: 139.8504408987179
Iteration: 8, Func. Count: 96, Neg. LLF: 141.53173104821548
Iteration: 9, Func. Count: 108, Neg. LLF: 136.15927378371578
Iteration: 10, Func. Count: 120, Neg. LLF: 135.65923745398288
Iteration: 11, Func. Count: 131, Neg. LLF: 135.62216898228994
Iteration: 12, Func. Count: 142, Neg. LLF: 135.60297398330354
Iteration: 13, Func. Count: 153, Neg. LLF: 135.59300632179938
Iteration: 14, Func. Count: 164, Neg. LLF: 135.59224244473586
Iteration: 15, Func. Count: 175, Neg. LLF: 135.59219368605932
Iteration: 16, Func. Count: 186, Neg. LLF: 135.5921916422377
Iteration: 17, Func. Count: 196, Neg. LLF: 135.59219169617458
Optimization terminated successfully (Exit mode 0)
Current function value: 135.5921916422377
Iterations: 17
Function evaluations: 196
Gradient evaluations: 17
Iteration: 1, Func. Count: 9, Neg. LLF: 138.71185000483146
Iteration: 2, Func. Count: 18, Neg. LLF: 138.38351025380265
Iteration: 3, Func. Count: 28, Neg. LLF: 139.29322254813428
Iteration: 4, Func. Count: 39, Neg. LLF: 137.08591220986503
Iteration: 5, Func. Count: 48, Neg. LLF: 136.5811859187127
Iteration: 6, Func. Count: 57, Neg. LLF: 136.1457553958169
Iteration: 7, Func. Count: 65, Neg. LLF: 136.05918967073364
Iteration: 8, Func. Count: 73, Neg. LLF: 136.01052551815837
Iteration: 9, Func. Count: 81, Neg. LLF: 136.00045148315584
Iteration: 10, Func. Count: 89, Neg. LLF: 135.99923675349112
Iteration: 11, Func. Count: 97, Neg. LLF: 135.99913256876914
Iteration: 12, Func. Count: 105, Neg. LLF: 135.99912956223838
Iteration: 13, Func. Count: 112, Neg. LLF: 135.99912956229463
Optimization terminated successfully (Exit mode 0)
Current function value: 135.99912956223838
Iterations: 13
Function evaluations: 112
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 161.6990485754181
Iteration: 2, Func. Count: 20, Neg. LLF: 141.1159639086195
Iteration: 3, Func. Count: 30, Neg. LLF: 137.81519769886953
Iteration: 4, Func. Count: 40, Neg. LLF: 138.34444482128043
Iteration: 5, Func. Count: 50, Neg. LLF: 138.42795813027084
Iteration: 6, Func. Count: 60, Neg. LLF: 137.21223460951788
Iteration: 7, Func. Count: 70, Neg. LLF: 136.43207231348597
Iteration: 8, Func. Count: 80, Neg. LLF: 135.80476025025575
Iteration: 9, Func. Count: 90, Neg. LLF: 135.72759368451958
Iteration: 10, Func. Count: 99, Neg. LLF: 135.72302710488847
Iteration: 11, Func. Count: 108, Neg. LLF: 135.7225331490466
Iteration: 12, Func. Count: 117, Neg. LLF: 135.72252126593773
Iteration: 13, Func. Count: 126, Neg. LLF: 135.72251971794725
Iteration: 14, Func. Count: 134, Neg. LLF: 135.722519717941
Optimization terminated successfully (Exit mode 0)
Current function value: 135.72251971794725
Iterations: 14
Function evaluations: 134
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 162.12177803519103
Iteration: 2, Func. Count: 22, Neg. LLF: 141.4753207131535
Iteration: 3, Func. Count: 33, Neg. LLF: 138.19089539495056
Iteration: 4, Func. Count: 44, Neg. LLF: 138.4536417447922
Iteration: 5, Func. Count: 55, Neg. LLF: 153.89808287858273
Iteration: 6, Func. Count: 67, Neg. LLF: 136.46732119190222
Iteration: 7, Func. Count: 78, Neg. LLF: 135.94088836997693
Iteration: 8, Func. Count: 89, Neg. LLF: 135.76391136492643
Iteration: 9, Func. Count: 100, Neg. LLF: 135.5974512927248
Iteration: 10, Func. Count: 110, Neg. LLF: 135.59204483219898
Iteration: 11, Func. Count: 120, Neg. LLF: 135.5937826038445
Iteration: 12, Func. Count: 131, Neg. LLF: 135.59021296417808
Iteration: 13, Func. Count: 141, Neg. LLF: 135.59008361965348
Iteration: 14, Func. Count: 151, Neg. LLF: 135.59001269308885
Iteration: 15, Func. Count: 161, Neg. LLF: 135.59000943819154
Iteration: 16, Func. Count: 170, Neg. LLF: 135.59000943818575
Optimization terminated successfully (Exit mode 0)
Current function value: 135.59000943819154
Iterations: 16
Function evaluations: 170
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 162.00690194869526
Iteration: 2, Func. Count: 24, Neg. LLF: 137.90146121039413
Iteration: 3, Func. Count: 36, Neg. LLF: 138.6439045483391
Iteration: 4, Func. Count: 48, Neg. LLF: 159.61495922418092
Iteration: 5, Func. Count: 60, Neg. LLF: 137.813925567627
Iteration: 6, Func. Count: 72, Neg. LLF: 135.8538966272259
Iteration: 7, Func. Count: 84, Neg. LLF: 135.8981853886529
Iteration: 8, Func. Count: 96, Neg. LLF: 136.15385375645482
Iteration: 9, Func. Count: 108, Neg. LLF: 135.681168346605
Iteration: 10, Func. Count: 120, Neg. LLF: 135.60049876768278
Iteration: 11, Func. Count: 131, Neg. LLF: 135.59042189025922
Iteration: 12, Func. Count: 142, Neg. LLF: 135.59002967699803
Iteration: 13, Func. Count: 153, Neg. LLF: 135.59001052193022
Iteration: 14, Func. Count: 164, Neg. LLF: 135.59000931261212
Iteration: 15, Func. Count: 174, Neg. LLF: 135.5900093422323
Optimization terminated successfully (Exit mode 0)
Current function value: 135.59000931261212
Iterations: 15
Function evaluations: 174
Gradient evaluations: 15
Iteration: 1, Func. Count: 13, Neg. LLF: 138.67728487731628
Iteration: 2, Func. Count: 26, Neg. LLF: 139.01955552774132
Iteration: 3, Func. Count: 39, Neg. LLF: 146.33139758390593
Iteration: 4, Func. Count: 52, Neg. LLF: 138.91382540157278
Iteration: 5, Func. Count: 65, Neg. LLF: 151.35820802541332
Iteration: 6, Func. Count: 78, Neg. LLF: 136.67079191112995
Iteration: 7, Func. Count: 91, Neg. LLF: 136.5523529889161
Iteration: 8, Func. Count: 104, Neg. LLF: 136.24846315951
Iteration: 9, Func. Count: 117, Neg. LLF: 136.6178818954128
Iteration: 10, Func. Count: 130, Neg. LLF: 135.6325543159402
Iteration: 11, Func. Count: 142, Neg. LLF: 135.655898689068
Iteration: 12, Func. Count: 155, Neg. LLF: 135.59527122679768
Iteration: 13, Func. Count: 167, Neg. LLF: 135.5909439949293
Iteration: 14, Func. Count: 179, Neg. LLF: 135.59018075232896
Iteration: 15, Func. Count: 191, Neg. LLF: 135.59004439099346
Iteration: 16, Func. Count: 203, Neg. LLF: 135.59000938121898
Iteration: 17, Func. Count: 214, Neg. LLF: 135.5900094330165
Optimization terminated successfully (Exit mode 0)
Current function value: 135.59000938121898
Iterations: 17
Function evaluations: 214
Gradient evaluations: 17
Iteration: 1, Func. Count: 6, Neg. LLF: 139.23987845385423
Iteration: 2, Func. Count: 12, Neg. LLF: 139.42467328709225
Iteration: 3, Func. Count: 18, Neg. LLF: 137.03709309458822
Iteration: 4, Func. Count: 24, Neg. LLF: 137.11257628162784
Iteration: 5, Func. Count: 30, Neg. LLF: 136.86654689413308
Iteration: 6, Func. Count: 35, Neg. LLF: 136.85738103463174
Iteration: 7, Func. Count: 40, Neg. LLF: 136.85426394866812
Iteration: 8, Func. Count: 45, Neg. LLF: 136.85275916442012
Iteration: 9, Func. Count: 50, Neg. LLF: 136.85264123183325
Iteration: 10, Func. Count: 55, Neg. LLF: 136.85263892571587
Iteration: 11, Func. Count: 59, Neg. LLF: 136.85263892571544
Optimization terminated successfully (Exit mode 0)
Current function value: 136.85263892571587
Iterations: 11
Function evaluations: 59
Gradient evaluations: 11
Iteration: 1, Func. Count: 7, Neg. LLF: 143.01165242990862
Iteration: 2, Func. Count: 14, Neg. LLF: 146.2964454073742
Iteration: 3, Func. Count: 21, Neg. LLF: 136.7908010139456
Iteration: 4, Func. Count: 28, Neg. LLF: 136.44411654782996
Iteration: 5, Func. Count: 34, Neg. LLF: 136.50038817443883
Iteration: 6, Func. Count: 41, Neg. LLF: 136.35420605394205
Iteration: 7, Func. Count: 47, Neg. LLF: 136.3405705788905
Iteration: 8, Func. Count: 53, Neg. LLF: 136.33935471689486
Iteration: 9, Func. Count: 59, Neg. LLF: 136.33923653074538
Iteration: 10, Func. Count: 65, Neg. LLF: 136.33922782449804
Iteration: 11, Func. Count: 70, Neg. LLF: 136.33922782449875
Optimization terminated successfully (Exit mode 0)
Current function value: 136.33922782449804
Iterations: 11
Function evaluations: 70
Gradient evaluations: 11
Iteration: 1, Func. Count: 8, Neg. LLF: 142.66016404327917
Iteration: 2, Func. Count: 16, Neg. LLF: 144.90706488840308
Iteration: 3, Func. Count: 24, Neg. LLF: 136.13067144480416
Iteration: 4, Func. Count: 31, Neg. LLF: 136.42165568690123
Iteration: 5, Func. Count: 39, Neg. LLF: 137.67979329404793
Iteration: 6, Func. Count: 47, Neg. LLF: 136.01607259350078
Iteration: 7, Func. Count: 54, Neg. LLF: 135.9997112710612
Iteration: 8, Func. Count: 61, Neg. LLF: 135.99585558277835
Iteration: 9, Func. Count: 68, Neg. LLF: 135.9944762701242
Iteration: 10, Func. Count: 75, Neg. LLF: 135.99443229349137
Iteration: 11, Func. Count: 82, Neg. LLF: 135.994431690566
Optimization terminated successfully (Exit mode 0)
Current function value: 135.994431690566
Iterations: 11
Function evaluations: 82
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 138.79505635882683
Iteration: 2, Func. Count: 18, Neg. LLF: 137.34301538780375
Iteration: 3, Func. Count: 27, Neg. LLF: 147.2300123400481
Iteration: 4, Func. Count: 36, Neg. LLF: 136.55655951227607
Iteration: 5, Func. Count: 45, Neg. LLF: 136.35338087514464
Iteration: 6, Func. Count: 53, Neg. LLF: 142.3065372185183
Iteration: 7, Func. Count: 62, Neg. LLF: 136.2125135592784
Iteration: 8, Func. Count: 70, Neg. LLF: 136.0944466002625
Iteration: 9, Func. Count: 78, Neg. LLF: 136.09880442167045
Iteration: 10, Func. Count: 87, Neg. LLF: 135.99591968023577
Iteration: 11, Func. Count: 95, Neg. LLF: 135.9945484709252
Iteration: 12, Func. Count: 103, Neg. LLF: 135.9944377106418
Iteration: 13, Func. Count: 111, Neg. LLF: 135.99443182676163
Iteration: 14, Func. Count: 118, Neg. LLF: 135.99443183983254
Optimization terminated successfully (Exit mode 0)
Current function value: 135.99443182676163
Iterations: 14
Function evaluations: 118
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 138.77394386100684
Iteration: 2, Func. Count: 20, Neg. LLF: 137.30736980524
Iteration: 3, Func. Count: 30, Neg. LLF: 147.0278911438986
Iteration: 4, Func. Count: 40, Neg. LLF: 136.72109604791504
Iteration: 5, Func. Count: 50, Neg. LLF: 136.3402337351818
Iteration: 6, Func. Count: 59, Neg. LLF: 142.05456059385418
Iteration: 7, Func. Count: 69, Neg. LLF: 136.21166468798958
Iteration: 8, Func. Count: 78, Neg. LLF: 136.03883847107636
Iteration: 9, Func. Count: 87, Neg. LLF: 135.99949600056325
Iteration: 10, Func. Count: 96, Neg. LLF: 135.9946098602991
Iteration: 11, Func. Count: 105, Neg. LLF: 135.99447589242718
Iteration: 12, Func. Count: 114, Neg. LLF: 135.9944327206535
Iteration: 13, Func. Count: 123, Neg. LLF: 135.9944317073119
Iteration: 14, Func. Count: 131, Neg. LLF: 135.9944317622272
Optimization terminated successfully (Exit mode 0)
Current function value: 135.9944317073119
Iterations: 14
Function evaluations: 131
Gradient evaluations: 14
Iteration: 1, Func. Count: 7, Neg. LLF: 138.8473438866667
Iteration: 2, Func. Count: 14, Neg. LLF: 137.1050242815862
Iteration: 3, Func. Count: 21, Neg. LLF: 141.94713428384438
Iteration: 4, Func. Count: 29, Neg. LLF: 136.8415974252335
Iteration: 5, Func. Count: 35, Neg. LLF: 136.83184706893016
Iteration: 6, Func. Count: 41, Neg. LLF: 136.87001666318037
Iteration: 7, Func. Count: 48, Neg. LLF: 136.8223042969135
Iteration: 8, Func. Count: 54, Neg. LLF: 136.8197344631785
Iteration: 9, Func. Count: 60, Neg. LLF: 136.81845724600515
Iteration: 10, Func. Count: 66, Neg. LLF: 136.8184092195189
Iteration: 11, Func. Count: 72, Neg. LLF: 136.81840780805018
Iteration: 12, Func. Count: 77, Neg. LLF: 136.8184078080475
Optimization terminated successfully (Exit mode 0)
Current function value: 136.81840780805018
Iterations: 12
Function evaluations: 77
Gradient evaluations: 12
Iteration: 1, Func. Count: 8, Neg. LLF: 160.26308549390927
Iteration: 2, Func. Count: 16, Neg. LLF: 142.4320395829475
Iteration: 3, Func. Count: 24, Neg. LLF: 143.28627924528897
Iteration: 4, Func. Count: 33, Neg. LLF: 138.4081003199203
Iteration: 5, Func. Count: 41, Neg. LLF: 136.3091165581406
Iteration: 6, Func. Count: 48, Neg. LLF: 136.22842383777956
Iteration: 7, Func. Count: 55, Neg. LLF: 136.1789977920862
Iteration: 8, Func. Count: 62, Neg. LLF: 136.09603885239704
Iteration: 9, Func. Count: 69, Neg. LLF: 136.06543106919594
Iteration: 10, Func. Count: 76, Neg. LLF: 136.0557944739416
Iteration: 11, Func. Count: 83, Neg. LLF: 136.05444358453246
Iteration: 12, Func. Count: 90, Neg. LLF: 136.05425561601714
Iteration: 13, Func. Count: 97, Neg. LLF: 136.05422104161323
Iteration: 14, Func. Count: 104, Neg. LLF: 136.05422051577327
Optimization terminated successfully (Exit mode 0)
Current function value: 136.05422051577327
Iterations: 14
Function evaluations: 104
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 139.10415428155278
Iteration: 2, Func. Count: 18, Neg. LLF: 144.6916261793814
Iteration: 3, Func. Count: 27, Neg. LLF: 138.83968098560916
Iteration: 4, Func. Count: 36, Neg. LLF: 143.37890312547538
Iteration: 5, Func. Count: 45, Neg. LLF: 136.38217779028142
Iteration: 6, Func. Count: 53, Neg. LLF: 144.39161031905078
Iteration: 7, Func. Count: 62, Neg. LLF: 136.22618377359115
Iteration: 8, Func. Count: 70, Neg. LLF: 136.0369927970765
Iteration: 9, Func. Count: 78, Neg. LLF: 136.01396162466335
Iteration: 10, Func. Count: 86, Neg. LLF: 135.9916984020785
Iteration: 11, Func. Count: 94, Neg. LLF: 135.98945967337787
Iteration: 12, Func. Count: 102, Neg. LLF: 135.98909805865233
Iteration: 13, Func. Count: 110, Neg. LLF: 135.98907466666563
Iteration: 14, Func. Count: 118, Neg. LLF: 135.989072777611
Iteration: 15, Func. Count: 125, Neg. LLF: 135.98907277755646
Optimization terminated successfully (Exit mode 0)
Current function value: 135.989072777611
Iterations: 15
Function evaluations: 125
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 138.91206283362342
Iteration: 2, Func. Count: 20, Neg. LLF: 144.66607469149253
Iteration: 3, Func. Count: 30, Neg. LLF: 139.13480520539431
Iteration: 4, Func. Count: 40, Neg. LLF: 141.58769186954922
Iteration: 5, Func. Count: 50, Neg. LLF: 136.41694960765827
Iteration: 6, Func. Count: 59, Neg. LLF: 139.30234758660566
Iteration: 7, Func. Count: 70, Neg. LLF: 136.46278202643234
Iteration: 8, Func. Count: 80, Neg. LLF: 136.24630183941665
Iteration: 9, Func. Count: 89, Neg. LLF: 136.12666889533853
Iteration: 10, Func. Count: 98, Neg. LLF: 136.0446292420959
Iteration: 11, Func. Count: 107, Neg. LLF: 136.0013497498605
Iteration: 12, Func. Count: 116, Neg. LLF: 135.99159218639878
Iteration: 13, Func. Count: 125, Neg. LLF: 135.98934227097175
Iteration: 14, Func. Count: 134, Neg. LLF: 135.98912102075798
Iteration: 15, Func. Count: 143, Neg. LLF: 135.98907423860854
Iteration: 16, Func. Count: 152, Neg. LLF: 135.9890726368719
Iteration: 17, Func. Count: 160, Neg. LLF: 135.98907265206836
Optimization terminated successfully (Exit mode 0)
Current function value: 135.9890726368719
Iterations: 17
Function evaluations: 160
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 138.81470060737212
Iteration: 2, Func. Count: 22, Neg. LLF: 144.66975223200953
Iteration: 3, Func. Count: 33, Neg. LLF: 139.11095815441962
Iteration: 4, Func. Count: 44, Neg. LLF: 141.71778185411117
Iteration: 5, Func. Count: 55, Neg. LLF: 136.43965774592968
Iteration: 6, Func. Count: 65, Neg. LLF: 139.66334258678808
Iteration: 7, Func. Count: 77, Neg. LLF: 136.49971374018128
Iteration: 8, Func. Count: 88, Neg. LLF: 136.2684470328741
Iteration: 9, Func. Count: 98, Neg. LLF: 136.02026362694494
Iteration: 10, Func. Count: 108, Neg. LLF: 136.0005924789241
Iteration: 11, Func. Count: 118, Neg. LLF: 135.9921958413894
Iteration: 12, Func. Count: 128, Neg. LLF: 135.98923309216468
Iteration: 13, Func. Count: 138, Neg. LLF: 135.98908247996462
Iteration: 14, Func. Count: 148, Neg. LLF: 135.98907291758965
Iteration: 15, Func. Count: 157, Neg. LLF: 135.98907297359506
Optimization terminated successfully (Exit mode 0)
Current function value: 135.98907291758965
Iterations: 15
Function evaluations: 157
Gradient evaluations: 15
Iteration: 1, Func. Count: 8, Neg. LLF: 143.2590230399572
Iteration: 2, Func. Count: 16, Neg. LLF: 137.74809204353824
Iteration: 3, Func. Count: 24, Neg. LLF: 136.18880887389557
Iteration: 4, Func. Count: 31, Neg. LLF: 136.01927608590103
Iteration: 5, Func. Count: 38, Neg. LLF: 136.33310041726054
Iteration: 6, Func. Count: 46, Neg. LLF: 135.58837413486054
Iteration: 7, Func. Count: 53, Neg. LLF: 135.47723476370436
Iteration: 8, Func. Count: 60, Neg. LLF: 135.43645092873615
Iteration: 9, Func. Count: 67, Neg. LLF: 135.40153280511907
Iteration: 10, Func. Count: 74, Neg. LLF: 135.40022313604945
Iteration: 11, Func. Count: 81, Neg. LLF: 135.40003740150004
Iteration: 12, Func. Count: 88, Neg. LLF: 135.40003211770963
Iteration: 13, Func. Count: 95, Neg. LLF: 135.40003138952918
Optimization terminated successfully (Exit mode 0)
Current function value: 135.40003138952918
Iterations: 13
Function evaluations: 95
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 150.92876968939387
Iteration: 2, Func. Count: 18, Neg. LLF: 142.22421972881634
Iteration: 3, Func. Count: 27, Neg. LLF: 143.89553591335456
Iteration: 4, Func. Count: 36, Neg. LLF: 135.82796004379782
Iteration: 5, Func. Count: 45, Neg. LLF: 135.08940882790426
Iteration: 6, Func. Count: 53, Neg. LLF: 135.0382132482363
Iteration: 7, Func. Count: 61, Neg. LLF: 134.98710016112454
Iteration: 8, Func. Count: 69, Neg. LLF: 135.02256973675483
Iteration: 9, Func. Count: 78, Neg. LLF: 134.96072897937557
Iteration: 10, Func. Count: 86, Neg. LLF: 134.96017660517393
Iteration: 11, Func. Count: 94, Neg. LLF: 134.96015949017794
Iteration: 12, Func. Count: 102, Neg. LLF: 134.96015748720217
Iteration: 13, Func. Count: 109, Neg. LLF: 134.96015748721786
Optimization terminated successfully (Exit mode 0)
Current function value: 134.96015748720217
Iterations: 13
Function evaluations: 109
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 151.0024458841941
Iteration: 2, Func. Count: 20, Neg. LLF: 154.05012187280002
Iteration: 3, Func. Count: 30, Neg. LLF: 148.94240790152205
Iteration: 4, Func. Count: 40, Neg. LLF: 139.27685683009446
Iteration: 5, Func. Count: 50, Neg. LLF: 135.91884811201433
Iteration: 6, Func. Count: 60, Neg. LLF: 136.86012203871846
Iteration: 7, Func. Count: 70, Neg. LLF: 135.22600918676116
Iteration: 8, Func. Count: 80, Neg. LLF: 134.98725629767662
Iteration: 9, Func. Count: 89, Neg. LLF: 134.9630385658292
Iteration: 10, Func. Count: 98, Neg. LLF: 134.958357836363
Iteration: 11, Func. Count: 107, Neg. LLF: 134.95817137365145
Iteration: 12, Func. Count: 116, Neg. LLF: 134.95812446239435
Iteration: 13, Func. Count: 125, Neg. LLF: 134.9581218830417
Iteration: 14, Func. Count: 133, Neg. LLF: 134.95812188300113
Optimization terminated successfully (Exit mode 0)
Current function value: 134.9581218830417
Iterations: 14
Function evaluations: 133
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 137.6212437357249
Iteration: 2, Func. Count: 22, Neg. LLF: 138.9546583933249
Iteration: 3, Func. Count: 33, Neg. LLF: 137.13106360694294
Iteration: 4, Func. Count: 44, Neg. LLF: 136.51082528523602
Iteration: 5, Func. Count: 55, Neg. LLF: 138.65601067241548
Iteration: 6, Func. Count: 66, Neg. LLF: 141.47989298649318
Iteration: 7, Func. Count: 77, Neg. LLF: 135.3071347398094
Iteration: 8, Func. Count: 87, Neg. LLF: 135.37905712061834
Iteration: 9, Func. Count: 98, Neg. LLF: 137.1964174851317
Iteration: 10, Func. Count: 109, Neg. LLF: 135.0009223109967
Iteration: 11, Func. Count: 119, Neg. LLF: 135.00136492496478
Iteration: 12, Func. Count: 130, Neg. LLF: 134.9679446055811
Iteration: 13, Func. Count: 140, Neg. LLF: 134.95952913550124
Iteration: 14, Func. Count: 150, Neg. LLF: 134.95851927857237
Iteration: 15, Func. Count: 160, Neg. LLF: 134.9582159986635
Iteration: 16, Func. Count: 170, Neg. LLF: 134.95814740635117
Iteration: 17, Func. Count: 180, Neg. LLF: 134.9581330632319
Iteration: 18, Func. Count: 190, Neg. LLF: 134.95812248184606
Iteration: 19, Func. Count: 200, Neg. LLF: 134.95812164458516
Optimization terminated successfully (Exit mode 0)
Current function value: 134.95812164458516
Iterations: 19
Function evaluations: 200
Gradient evaluations: 19
Iteration: 1, Func. Count: 12, Neg. LLF: 137.83179562036193
Iteration: 2, Func. Count: 24, Neg. LLF: 136.54169939112694
Iteration: 3, Func. Count: 35, Neg. LLF: 137.2057390766136
Iteration: 4, Func. Count: 47, Neg. LLF: 138.20331008975685
Iteration: 5, Func. Count: 59, Neg. LLF: 143.20675902099856
Iteration: 6, Func. Count: 71, Neg. LLF: 136.28060498217755
Iteration: 7, Func. Count: 83, Neg. LLF: 135.46451822282322
Iteration: 8, Func. Count: 95, Neg. LLF: 135.19084385729602
Iteration: 9, Func. Count: 106, Neg. LLF: 135.16533861072566
Iteration: 10, Func. Count: 117, Neg. LLF: 135.13122027968927
Iteration: 11, Func. Count: 128, Neg. LLF: 135.12800390952071
Iteration: 12, Func. Count: 139, Neg. LLF: 135.12739465396194
Iteration: 13, Func. Count: 150, Neg. LLF: 135.12565207364884
Iteration: 14, Func. Count: 161, Neg. LLF: 135.1231427481511
Iteration: 15, Func. Count: 172, Neg. LLF: 135.73930694558115
Iteration: 16, Func. Count: 184, Neg. LLF: 135.83456307972904
Iteration: 17, Func. Count: 196, Neg. LLF: 135.73594194599295
Iteration: 18, Func. Count: 209, Neg. LLF: 135.11944640391323
Iteration: 19, Func. Count: 220, Neg. LLF: 135.1178039564471
Iteration: 20, Func. Count: 231, Neg. LLF: 135.10927308986874
Iteration: 21, Func. Count: 242, Neg. LLF: 135.0657549885435
Iteration: 22, Func. Count: 253, Neg. LLF: 135.03485477650102
Iteration: 23, Func. Count: 264, Neg. LLF: 135.0105474036163
Iteration: 24, Func. Count: 275, Neg. LLF: 134.9904769253998
Iteration: 25, Func. Count: 286, Neg. LLF: 134.96904067478727
Iteration: 26, Func. Count: 297, Neg. LLF: 134.9593814551568
Iteration: 27, Func. Count: 308, Neg. LLF: 134.9584060088243
Iteration: 28, Func. Count: 319, Neg. LLF: 134.95816406574278
Iteration: 29, Func. Count: 330, Neg. LLF: 134.95812644852026
Iteration: 30, Func. Count: 341, Neg. LLF: 134.95812192066558
Iteration: 31, Func. Count: 351, Neg. LLF: 134.95812205215464
Optimization terminated successfully (Exit mode 0)
Current function value: 134.95812192066558
Iterations: 31
Function evaluations: 351
Gradient evaluations: 31
Iteration: 1, Func. Count: 9, Neg. LLF: 139.38138160691315
Iteration: 2, Func. Count: 18, Neg. LLF: 139.21066222366076
Iteration: 3, Func. Count: 28, Neg. LLF: 136.8475943987534
Iteration: 4, Func. Count: 37, Neg. LLF: 136.183377511042
Iteration: 5, Func. Count: 45, Neg. LLF: 135.85026912130758
Iteration: 6, Func. Count: 53, Neg. LLF: 135.71496902209938
Iteration: 7, Func. Count: 61, Neg. LLF: 135.53381221826788
Iteration: 8, Func. Count: 69, Neg. LLF: 135.47361270871593
Iteration: 9, Func. Count: 77, Neg. LLF: 135.4163061770429
Iteration: 10, Func. Count: 85, Neg. LLF: 135.40396909495007
Iteration: 11, Func. Count: 93, Neg. LLF: 135.40007834276344
Iteration: 12, Func. Count: 101, Neg. LLF: 135.4000459727128
Iteration: 13, Func. Count: 109, Neg. LLF: 135.40003810615102
Iteration: 14, Func. Count: 117, Neg. LLF: 135.40003188297968
Iteration: 15, Func. Count: 124, Neg. LLF: 135.4000319235249
Optimization terminated successfully (Exit mode 0)
Current function value: 135.40003188297968
Iterations: 15
Function evaluations: 124
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 150.94678345975333
Iteration: 2, Func. Count: 20, Neg. LLF: 138.82059477949696
Iteration: 3, Func. Count: 30, Neg. LLF: 143.1823527832849
Iteration: 4, Func. Count: 40, Neg. LLF: 150.11783399494158
Iteration: 5, Func. Count: 50, Neg. LLF: 138.24361202940625
Iteration: 6, Func. Count: 60, Neg. LLF: 135.2027093324614
Iteration: 7, Func. Count: 69, Neg. LLF: 135.1995899250454
Iteration: 8, Func. Count: 79, Neg. LLF: 134.9933925851901
Iteration: 9, Func. Count: 88, Neg. LLF: 134.97994871047248
Iteration: 10, Func. Count: 97, Neg. LLF: 134.96214586117486
Iteration: 11, Func. Count: 106, Neg. LLF: 134.96046809657813
Iteration: 12, Func. Count: 115, Neg. LLF: 134.96019174423097
Iteration: 13, Func. Count: 124, Neg. LLF: 134.96016223758642
Iteration: 14, Func. Count: 133, Neg. LLF: 134.96015751230533
Iteration: 15, Func. Count: 141, Neg. LLF: 134.96015751229376
Optimization terminated successfully (Exit mode 0)
Current function value: 134.96015751230533
Iterations: 15
Function evaluations: 141
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 151.01279326525645
Iteration: 2, Func. Count: 22, Neg. LLF: 154.1183930375372
Iteration: 3, Func. Count: 33, Neg. LLF: 149.34666772653398
Iteration: 4, Func. Count: 44, Neg. LLF: 143.44812822367504
Iteration: 5, Func. Count: 55, Neg. LLF: 139.53316145812963
Iteration: 6, Func. Count: 66, Neg. LLF: 135.83668761874907
Iteration: 7, Func. Count: 77, Neg. LLF: 135.29473595199747
Iteration: 8, Func. Count: 87, Neg. LLF: 135.07138226832916
Iteration: 9, Func. Count: 97, Neg. LLF: 135.02273561159896
Iteration: 10, Func. Count: 107, Neg. LLF: 134.97894293360247
Iteration: 11, Func. Count: 117, Neg. LLF: 134.96289537421487
Iteration: 12, Func. Count: 127, Neg. LLF: 134.95995696872322
Iteration: 13, Func. Count: 137, Neg. LLF: 134.9583367066204
Iteration: 14, Func. Count: 147, Neg. LLF: 134.95819849356783
Iteration: 15, Func. Count: 157, Neg. LLF: 134.95812374200494
Iteration: 16, Func. Count: 167, Neg. LLF: 134.95812183983472
Iteration: 17, Func. Count: 176, Neg. LLF: 134.9581218398267
Optimization terminated successfully (Exit mode 0)
Current function value: 134.95812183983472
Iterations: 17
Function evaluations: 176
Gradient evaluations: 17
Iteration: 1, Func. Count: 12, Neg. LLF: 137.62823027144938
Iteration: 2, Func. Count: 24, Neg. LLF: 138.42333482787774
Iteration: 3, Func. Count: 36, Neg. LLF: 137.07174131003794
Iteration: 4, Func. Count: 48, Neg. LLF: 136.55198458506607
Iteration: 5, Func. Count: 60, Neg. LLF: 138.72914972935956
Iteration: 6, Func. Count: 72, Neg. LLF: 140.75157900124415
Iteration: 7, Func. Count: 84, Neg. LLF: 135.31264581585302
Iteration: 8, Func. Count: 95, Neg. LLF: 135.3324737983462
Iteration: 9, Func. Count: 107, Neg. LLF: 138.09288986603642
Iteration: 10, Func. Count: 119, Neg. LLF: 135.0141839314834
Iteration: 11, Func. Count: 130, Neg. LLF: 135.01897791949543
Iteration: 12, Func. Count: 142, Neg. LLF: 134.96949294603067
Iteration: 13, Func. Count: 153, Neg. LLF: 134.95974328295452
Iteration: 14, Func. Count: 164, Neg. LLF: 134.9587179242725
Iteration: 15, Func. Count: 175, Neg. LLF: 134.9582444032727
Iteration: 16, Func. Count: 186, Neg. LLF: 134.95815502398864
Iteration: 17, Func. Count: 197, Neg. LLF: 134.95813571223948
Iteration: 18, Func. Count: 208, Neg. LLF: 134.95812471503712
Iteration: 19, Func. Count: 219, Neg. LLF: 134.95812189146724
Iteration: 20, Func. Count: 229, Neg. LLF: 134.95812195921792
Optimization terminated successfully (Exit mode 0)
Current function value: 134.95812189146724
Iterations: 20
Function evaluations: 229
Gradient evaluations: 20
Iteration: 1, Func. Count: 13, Neg. LLF: 138.01810300445126
Iteration: 2, Func. Count: 26, Neg. LLF: 136.25336817523225
Iteration: 3, Func. Count: 38, Neg. LLF: 138.64490647674162
Iteration: 4, Func. Count: 52, Neg. LLF: 142.92177642838388
Iteration: 5, Func. Count: 65, Neg. LLF: 140.92165987393986
Iteration: 6, Func. Count: 78, Neg. LLF: 135.7059306775665
Iteration: 7, Func. Count: 91, Neg. LLF: 135.43065919290368
Iteration: 8, Func. Count: 103, Neg. LLF: 135.36788089247835
Iteration: 9, Func. Count: 116, Neg. LLF: 135.1457120256507
Iteration: 10, Func. Count: 128, Neg. LLF: 135.12875308568468
Iteration: 11, Func. Count: 140, Neg. LLF: 135.13330947823374
Iteration: 12, Func. Count: 153, Neg. LLF: 135.12531718410085
Iteration: 13, Func. Count: 165, Neg. LLF: 135.1226755563625
Iteration: 14, Func. Count: 177, Neg. LLF: 136.1409885773155
Iteration: 15, Func. Count: 190, Neg. LLF: 136.07509062388297
Iteration: 16, Func. Count: 203, Neg. LLF: 135.12292300755962
Iteration: 17, Func. Count: 216, Neg. LLF: 135.1195885894281
Iteration: 18, Func. Count: 228, Neg. LLF: 135.11741149446337
Iteration: 19, Func. Count: 240, Neg. LLF: 135.11219069219476
Iteration: 20, Func. Count: 252, Neg. LLF: 135.07178328617337
Iteration: 21, Func. Count: 264, Neg. LLF: 135.31250846149942
Iteration: 22, Func. Count: 277, Neg. LLF: 135.0238727296456
Iteration: 23, Func. Count: 289, Neg. LLF: 134.9715479435128
Iteration: 24, Func. Count: 301, Neg. LLF: 134.9639938583684
Iteration: 25, Func. Count: 313, Neg. LLF: 134.95888840757246
Iteration: 26, Func. Count: 325, Neg. LLF: 134.95836768546042
Iteration: 27, Func. Count: 337, Neg. LLF: 134.95825950218028
Iteration: 28, Func. Count: 349, Neg. LLF: 134.95815321979737
Iteration: 29, Func. Count: 361, Neg. LLF: 134.95812913903853
Iteration: 30, Func. Count: 373, Neg. LLF: 134.9581224624761
Iteration: 31, Func. Count: 385, Neg. LLF: 134.9581216944594
Optimization terminated successfully (Exit mode 0)
Current function value: 134.9581216944594
Iterations: 31
Function evaluations: 385
Gradient evaluations: 31
Iteration: 1, Func. Count: 10, Neg. LLF: 138.65939047619517
Iteration: 2, Func. Count: 20, Neg. LLF: 138.2885034054204
Iteration: 3, Func. Count: 31, Neg. LLF: 138.1037986473504
Iteration: 4, Func. Count: 43, Neg. LLF: 135.91921602485044
Iteration: 5, Func. Count: 52, Neg. LLF: 135.95599381574786
Iteration: 6, Func. Count: 62, Neg. LLF: 136.73808437059634
Iteration: 7, Func. Count: 72, Neg. LLF: 135.2740963306595
Iteration: 8, Func. Count: 81, Neg. LLF: 135.04797536849586
Iteration: 9, Func. Count: 90, Neg. LLF: 134.9479460304319
Iteration: 10, Func. Count: 99, Neg. LLF: 134.92340510267113
Iteration: 11, Func. Count: 108, Neg. LLF: 134.9197412363997
Iteration: 12, Func. Count: 117, Neg. LLF: 134.9184892439791
Iteration: 13, Func. Count: 126, Neg. LLF: 134.917531729436
Iteration: 14, Func. Count: 135, Neg. LLF: 134.91750716468303
Iteration: 15, Func. Count: 144, Neg. LLF: 134.91750455822378
Iteration: 16, Func. Count: 152, Neg. LLF: 134.91750455817066
Optimization terminated successfully (Exit mode 0)
Current function value: 134.91750455822378
Iterations: 16
Function evaluations: 152
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 150.95098705194135
Iteration: 2, Func. Count: 22, Neg. LLF: 138.0395933810805
Iteration: 3, Func. Count: 33, Neg. LLF: 142.3761140270668
Iteration: 4, Func. Count: 44, Neg. LLF: 139.99435948267768
Iteration: 5, Func. Count: 55, Neg. LLF: 136.5376626068387
Iteration: 6, Func. Count: 66, Neg. LLF: 138.13295496122618
Iteration: 7, Func. Count: 77, Neg. LLF: 135.4955530455101
Iteration: 8, Func. Count: 88, Neg. LLF: 135.1258644376781
Iteration: 9, Func. Count: 98, Neg. LLF: 135.01616184843118
Iteration: 10, Func. Count: 108, Neg. LLF: 134.98129304769537
Iteration: 11, Func. Count: 118, Neg. LLF: 134.96933882326476
Iteration: 12, Func. Count: 128, Neg. LLF: 134.94696275422874
Iteration: 13, Func. Count: 138, Neg. LLF: 134.93838574935984
Iteration: 14, Func. Count: 148, Neg. LLF: 134.92676068616106
Iteration: 15, Func. Count: 158, Neg. LLF: 134.92275788294123
Iteration: 16, Func. Count: 168, Neg. LLF: 134.91886430028498
Iteration: 17, Func. Count: 178, Neg. LLF: 134.91764885709483
Iteration: 18, Func. Count: 188, Neg. LLF: 134.91752921751504
Iteration: 19, Func. Count: 198, Neg. LLF: 134.91751130189934
Iteration: 20, Func. Count: 208, Neg. LLF: 134.9175060962723
Iteration: 21, Func. Count: 218, Neg. LLF: 134.91750481333372
Iteration: 22, Func. Count: 227, Neg. LLF: 134.91750481441068
Optimization terminated successfully (Exit mode 0)
Current function value: 134.91750481333372
Iterations: 22
Function evaluations: 227
Gradient evaluations: 22
Iteration: 1, Func. Count: 12, Neg. LLF: 151.01822981723822
Iteration: 2, Func. Count: 24, Neg. LLF: 154.14295854118942
Iteration: 3, Func. Count: 36, Neg. LLF: 149.17592047133596
Iteration: 4, Func. Count: 48, Neg. LLF: 138.36650141313166
Iteration: 5, Func. Count: 60, Neg. LLF: 155.04548516597256
Iteration: 6, Func. Count: 72, Neg. LLF: 135.04796104508577
Iteration: 7, Func. Count: 83, Neg. LLF: 135.31489107548836
Iteration: 8, Func. Count: 95, Neg. LLF: 135.16230726127432
Iteration: 9, Func. Count: 107, Neg. LLF: 134.97160890550543
Iteration: 10, Func. Count: 119, Neg. LLF: 134.87122003195495
Iteration: 11, Func. Count: 130, Neg. LLF: 134.85023772235468
Iteration: 12, Func. Count: 141, Neg. LLF: 134.84832860111908
Iteration: 13, Func. Count: 152, Neg. LLF: 134.84751004591007
Iteration: 14, Func. Count: 163, Neg. LLF: 134.84745581825456
Iteration: 15, Func. Count: 174, Neg. LLF: 134.84744931622566
Iteration: 16, Func. Count: 184, Neg. LLF: 134.84744931627947
Optimization terminated successfully (Exit mode 0)
Current function value: 134.84744931622566
Iterations: 16
Function evaluations: 184
Gradient evaluations: 16
Iteration: 1, Func. Count: 13, Neg. LLF: 137.61452568366636
Iteration: 2, Func. Count: 26, Neg. LLF: 138.427260841723
Iteration: 3, Func. Count: 39, Neg. LLF: 151.2516773846799
Iteration: 4, Func. Count: 52, Neg. LLF: 147.88199957551956
Iteration: 5, Func. Count: 65, Neg. LLF: 136.01549465555007
Iteration: 6, Func. Count: 78, Neg. LLF: 135.50627336888186
Iteration: 7, Func. Count: 91, Neg. LLF: 135.29629023754347
Iteration: 8, Func. Count: 104, Neg. LLF: 135.9313523439128
Iteration: 9, Func. Count: 117, Neg. LLF: 135.24463706873823
Iteration: 10, Func. Count: 130, Neg. LLF: 135.2795943023581
Iteration: 11, Func. Count: 143, Neg. LLF: 134.85244465143046
Iteration: 12, Func. Count: 155, Neg. LLF: 134.8499302702763
Iteration: 13, Func. Count: 167, Neg. LLF: 134.84784190344524
Iteration: 14, Func. Count: 179, Neg. LLF: 134.84746863535614
Iteration: 15, Func. Count: 191, Neg. LLF: 134.84745292911035
Iteration: 16, Func. Count: 203, Neg. LLF: 134.84744935412078
Iteration: 17, Func. Count: 214, Neg. LLF: 134.84744941032002
Optimization terminated successfully (Exit mode 0)
Current function value: 134.84744935412078
Iterations: 17
Function evaluations: 214
Gradient evaluations: 17
Iteration: 1, Func. Count: 14, Neg. LLF: 138.0196812127947
Iteration: 2, Func. Count: 28, Neg. LLF: 136.23947802337577
Iteration: 3, Func. Count: 41, Neg. LLF: 146.88343197026623
Iteration: 4, Func. Count: 55, Neg. LLF: 143.11372265177195
Iteration: 5, Func. Count: 69, Neg. LLF: 137.1833585342983
Iteration: 6, Func. Count: 83, Neg. LLF: 135.69515296510195
Iteration: 7, Func. Count: 97, Neg. LLF: 135.5141353443667
Iteration: 8, Func. Count: 111, Neg. LLF: 135.1656699475379
Iteration: 9, Func. Count: 125, Neg. LLF: 135.5871866822602
Iteration: 10, Func. Count: 139, Neg. LLF: 136.0420329337773
Iteration: 11, Func. Count: 153, Neg. LLF: 135.86871230211327
Iteration: 12, Func. Count: 167, Neg. LLF: 134.89196767039428
Iteration: 13, Func. Count: 181, Neg. LLF: 134.98407717340208
Iteration: 14, Func. Count: 195, Neg. LLF: 134.84752871891388
Iteration: 15, Func. Count: 208, Neg. LLF: 134.84746347273764
Iteration: 16, Func. Count: 221, Neg. LLF: 134.84745314976644
Iteration: 17, Func. Count: 234, Neg. LLF: 134.8474491545866
Iteration: 18, Func. Count: 246, Neg. LLF: 134.847449274756
Optimization terminated successfully (Exit mode 0)
Current function value: 134.8474491545866
Iterations: 18
Function evaluations: 246
Gradient evaluations: 18
Iteration: 1, Func. Count: 7, Neg. LLF: 138.90549807037038
Iteration: 2, Func. Count: 14, Neg. LLF: 139.13130972059332
Iteration: 3, Func. Count: 22, Neg. LLF: 136.50921821951476
Iteration: 4, Func. Count: 29, Neg. LLF: 136.11688694754034
Iteration: 5, Func. Count: 35, Neg. LLF: 136.14867181758027
Iteration: 6, Func. Count: 42, Neg. LLF: 136.503638632688
Iteration: 7, Func. Count: 49, Neg. LLF: 135.72181824662115
Iteration: 8, Func. Count: 55, Neg. LLF: 135.66241143993474
Iteration: 9, Func. Count: 61, Neg. LLF: 135.65178207972542
Iteration: 10, Func. Count: 67, Neg. LLF: 135.6504265828867
Iteration: 11, Func. Count: 73, Neg. LLF: 135.65026307068564
Iteration: 12, Func. Count: 79, Neg. LLF: 135.65025960878413
Iteration: 13, Func. Count: 84, Neg. LLF: 135.65025960879618
Optimization terminated successfully (Exit mode 0)
Current function value: 135.65025960878413
Iterations: 13
Function evaluations: 84
Gradient evaluations: 13
Iteration: 1, Func. Count: 8, Neg. LLF: 142.19131696825485
Iteration: 2, Func. Count: 16, Neg. LLF: 145.27345989389767
Iteration: 3, Func. Count: 24, Neg. LLF: 162.8914171417087
Iteration: 4, Func. Count: 32, Neg. LLF: 136.47042196004355
Iteration: 5, Func. Count: 40, Neg. LLF: 135.8258408937904
Iteration: 6, Func. Count: 48, Neg. LLF: 135.63618056439893
Iteration: 7, Func. Count: 55, Neg. LLF: 135.636257223045
Iteration: 8, Func. Count: 63, Neg. LLF: 135.62746031710495
Iteration: 9, Func. Count: 70, Neg. LLF: 135.6241919867114
Iteration: 10, Func. Count: 77, Neg. LLF: 135.62358119417533
Iteration: 11, Func. Count: 84, Neg. LLF: 135.62327518315865
Iteration: 12, Func. Count: 91, Neg. LLF: 135.6232647589522
Iteration: 13, Func. Count: 98, Neg. LLF: 135.62326340774442
Iteration: 14, Func. Count: 104, Neg. LLF: 135.62326340780047
Optimization terminated successfully (Exit mode 0)
Current function value: 135.62326340774442
Iterations: 14
Function evaluations: 104
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 138.64380090293454
Iteration: 2, Func. Count: 18, Neg. LLF: 137.4635893063265
Iteration: 3, Func. Count: 27, Neg. LLF: 153.0407086159729
Iteration: 4, Func. Count: 36, Neg. LLF: 137.37050484551887
Iteration: 5, Func. Count: 45, Neg. LLF: 135.80613186031064
Iteration: 6, Func. Count: 53, Neg. LLF: 150.98306904608518
Iteration: 7, Func. Count: 63, Neg. LLF: 135.73509638450327
Iteration: 8, Func. Count: 71, Neg. LLF: 135.6473374138136
Iteration: 9, Func. Count: 79, Neg. LLF: 135.67386294898535
Iteration: 10, Func. Count: 88, Neg. LLF: 135.62702551531294
Iteration: 11, Func. Count: 96, Neg. LLF: 135.6233802688823
Iteration: 12, Func. Count: 104, Neg. LLF: 135.62326473530666
Iteration: 13, Func. Count: 112, Neg. LLF: 135.62326312807278
Iteration: 14, Func. Count: 119, Neg. LLF: 135.62326313623498
Optimization terminated successfully (Exit mode 0)
Current function value: 135.62326312807278
Iterations: 14
Function evaluations: 119
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 138.62537837779337
Iteration: 2, Func. Count: 20, Neg. LLF: 137.3646969887035
Iteration: 3, Func. Count: 30, Neg. LLF: 152.68663424689575
Iteration: 4, Func. Count: 40, Neg. LLF: 135.89538584625322
Iteration: 5, Func. Count: 49, Neg. LLF: 143.16929270119496
Iteration: 6, Func. Count: 59, Neg. LLF: 138.80912562964662
Iteration: 7, Func. Count: 69, Neg. LLF: 135.75338243137642
Iteration: 8, Func. Count: 78, Neg. LLF: 135.65828112112462
Iteration: 9, Func. Count: 87, Neg. LLF: 135.71930494305715
Iteration: 10, Func. Count: 97, Neg. LLF: 135.62734300418492
Iteration: 11, Func. Count: 106, Neg. LLF: 135.62339141168366
Iteration: 12, Func. Count: 115, Neg. LLF: 135.62326708978821
Iteration: 13, Func. Count: 124, Neg. LLF: 135.62326311210208
Iteration: 14, Func. Count: 132, Neg. LLF: 135.6232631451334
Optimization terminated successfully (Exit mode 0)
Current function value: 135.62326311210208
Iterations: 14
Function evaluations: 132
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 138.6269008377213
Iteration: 2, Func. Count: 22, Neg. LLF: 137.3285866647435
Iteration: 3, Func. Count: 33, Neg. LLF: 153.14383482127576
Iteration: 4, Func. Count: 44, Neg. LLF: 136.28751264500306
Iteration: 5, Func. Count: 55, Neg. LLF: 136.66998005568988
Iteration: 6, Func. Count: 66, Neg. LLF: 136.16234345666143
Iteration: 7, Func. Count: 77, Neg. LLF: 135.7417505484049
Iteration: 8, Func. Count: 87, Neg. LLF: 135.72755774941535
Iteration: 9, Func. Count: 98, Neg. LLF: 135.6855538796863
Iteration: 10, Func. Count: 109, Neg. LLF: 135.63420536662235
Iteration: 11, Func. Count: 119, Neg. LLF: 135.62631695095175
Iteration: 12, Func. Count: 129, Neg. LLF: 135.6234614204941
Iteration: 13, Func. Count: 139, Neg. LLF: 135.62327261832016
Iteration: 14, Func. Count: 149, Neg. LLF: 135.62326338175552
Iteration: 15, Func. Count: 158, Neg. LLF: 135.62326342717716
Optimization terminated successfully (Exit mode 0)
Current function value: 135.62326338175552
Iterations: 15
Function evaluations: 158
Gradient evaluations: 15
Iteration: 1, Func. Count: 8, Neg. LLF: 137.68296800026383
Iteration: 2, Func. Count: 16, Neg. LLF: 141.41043737861136
Iteration: 3, Func. Count: 24, Neg. LLF: 137.42679248187747
Iteration: 4, Func. Count: 32, Neg. LLF: 137.37166910928102
Iteration: 5, Func. Count: 40, Neg. LLF: 136.18797477660124
Iteration: 6, Func. Count: 48, Neg. LLF: 136.46328231424158
Iteration: 7, Func. Count: 56, Neg. LLF: 147.55347193531603
Iteration: 8, Func. Count: 64, Neg. LLF: 135.7211616752248
Iteration: 9, Func. Count: 71, Neg. LLF: 135.64214643764782
Iteration: 10, Func. Count: 78, Neg. LLF: 135.63305381675724
Iteration: 11, Func. Count: 85, Neg. LLF: 135.6311634966801
Iteration: 12, Func. Count: 92, Neg. LLF: 135.63085361308742
Iteration: 13, Func. Count: 99, Neg. LLF: 135.63081817736298
Iteration: 14, Func. Count: 106, Neg. LLF: 135.63081748607559
Optimization terminated successfully (Exit mode 0)
Current function value: 135.63081748607559
Iterations: 14
Function evaluations: 106
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 138.17716772700737
Iteration: 2, Func. Count: 18, Neg. LLF: 140.40307812820896
Iteration: 3, Func. Count: 27, Neg. LLF: 137.70668024749372
Iteration: 4, Func. Count: 36, Neg. LLF: 138.48723848783337
Iteration: 5, Func. Count: 45, Neg. LLF: 137.25134515344868
Iteration: 6, Func. Count: 54, Neg. LLF: 135.87213506474646
Iteration: 7, Func. Count: 62, Neg. LLF: 143.18445202869813
Iteration: 8, Func. Count: 71, Neg. LLF: 135.64745960177777
Iteration: 9, Func. Count: 79, Neg. LLF: 135.59952102648057
Iteration: 10, Func. Count: 87, Neg. LLF: 135.5192685096013
Iteration: 11, Func. Count: 95, Neg. LLF: 135.49279503663095
Iteration: 12, Func. Count: 103, Neg. LLF: 135.48433512893155
Iteration: 13, Func. Count: 111, Neg. LLF: 135.48252715230996
Iteration: 14, Func. Count: 119, Neg. LLF: 135.48218761108848
Iteration: 15, Func. Count: 127, Neg. LLF: 135.48212872618615
Iteration: 16, Func. Count: 135, Neg. LLF: 135.48212782069336
Optimization terminated successfully (Exit mode 0)
Current function value: 135.48212782069336
Iterations: 16
Function evaluations: 135
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 138.51251255046841
Iteration: 2, Func. Count: 20, Neg. LLF: 139.65964106334386
Iteration: 3, Func. Count: 30, Neg. LLF: 141.65667901890944
Iteration: 4, Func. Count: 40, Neg. LLF: 138.93365742962388
Iteration: 5, Func. Count: 50, Neg. LLF: 136.06577032463554
Iteration: 6, Func. Count: 59, Neg. LLF: 142.92560118309984
Iteration: 7, Func. Count: 70, Neg. LLF: 141.37593890809785
Iteration: 8, Func. Count: 80, Neg. LLF: 135.6846294214527
Iteration: 9, Func. Count: 89, Neg. LLF: 136.49203314742442
Iteration: 10, Func. Count: 99, Neg. LLF: 135.54187317738595
Iteration: 11, Func. Count: 109, Neg. LLF: 135.48781598283273
Iteration: 12, Func. Count: 118, Neg. LLF: 135.4823912776026
Iteration: 13, Func. Count: 127, Neg. LLF: 135.48221761161508
Iteration: 14, Func. Count: 136, Neg. LLF: 135.48216783315797
Iteration: 15, Func. Count: 145, Neg. LLF: 135.48212844792974
Iteration: 16, Func. Count: 153, Neg. LLF: 135.48212846832655
Optimization terminated successfully (Exit mode 0)
Current function value: 135.48212844792974
Iterations: 16
Function evaluations: 153
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 138.63077858094255
Iteration: 2, Func. Count: 22, Neg. LLF: 144.79800158478588
Iteration: 3, Func. Count: 33, Neg. LLF: 139.92692371484787
Iteration: 4, Func. Count: 44, Neg. LLF: 136.94882429296973
Iteration: 5, Func. Count: 55, Neg. LLF: 136.1053185034613
Iteration: 6, Func. Count: 66, Neg. LLF: 135.79906370236492
Iteration: 7, Func. Count: 76, Neg. LLF: 138.50170852538886
Iteration: 8, Func. Count: 87, Neg. LLF: 136.3254999217084
Iteration: 9, Func. Count: 98, Neg. LLF: 135.53316919325047
Iteration: 10, Func. Count: 108, Neg. LLF: 135.50218503048941
Iteration: 11, Func. Count: 118, Neg. LLF: 135.48679851429685
Iteration: 12, Func. Count: 128, Neg. LLF: 135.48280460841863
Iteration: 13, Func. Count: 138, Neg. LLF: 135.48226150328048
Iteration: 14, Func. Count: 148, Neg. LLF: 135.48216383967736
Iteration: 15, Func. Count: 158, Neg. LLF: 135.4821372481925
Iteration: 16, Func. Count: 168, Neg. LLF: 135.4821283083758
Iteration: 17, Func. Count: 177, Neg. LLF: 135.4821283391709
Optimization terminated successfully (Exit mode 0)
Current function value: 135.4821283083758
Iterations: 17
Function evaluations: 177
Gradient evaluations: 17
Iteration: 1, Func. Count: 12, Neg. LLF: 138.65936658423252
Iteration: 2, Func. Count: 24, Neg. LLF: 144.81926634063265
Iteration: 3, Func. Count: 36, Neg. LLF: 139.79084369110146
Iteration: 4, Func. Count: 48, Neg. LLF: 137.20519974629158
Iteration: 5, Func. Count: 60, Neg. LLF: 136.01799990217913
Iteration: 6, Func. Count: 71, Neg. LLF: 140.20365945037875
Iteration: 7, Func. Count: 83, Neg. LLF: 138.74691066066836
Iteration: 8, Func. Count: 95, Neg. LLF: 135.88181370869728
Iteration: 9, Func. Count: 107, Neg. LLF: 135.74519534570535
Iteration: 10, Func. Count: 119, Neg. LLF: 135.54991827711413
Iteration: 11, Func. Count: 130, Neg. LLF: 135.55875556278772
Iteration: 12, Func. Count: 142, Neg. LLF: 135.48301558432624
Iteration: 13, Func. Count: 153, Neg. LLF: 135.48235298955697
Iteration: 14, Func. Count: 164, Neg. LLF: 135.48214181014077
Iteration: 15, Func. Count: 175, Neg. LLF: 135.48213302180548
Iteration: 16, Func. Count: 186, Neg. LLF: 135.48212889438938
Iteration: 17, Func. Count: 197, Neg. LLF: 135.48212782595337
Iteration: 18, Func. Count: 207, Neg. LLF: 135.48212788454862
Optimization terminated successfully (Exit mode 0)
Current function value: 135.48212782595337
Iterations: 18
Function evaluations: 207
Gradient evaluations: 18
Iteration: 1, Func. Count: 9, Neg. LLF: 142.94623027226658
Iteration: 2, Func. Count: 18, Neg. LLF: 138.4345974872317
Iteration: 3, Func. Count: 27, Neg. LLF: 142.50525370006437
Iteration: 4, Func. Count: 36, Neg. LLF: 139.7391693678145
Iteration: 5, Func. Count: 45, Neg. LLF: 135.9807265748588
Iteration: 6, Func. Count: 53, Neg. LLF: 135.64725982309656
Iteration: 7, Func. Count: 61, Neg. LLF: 135.46017287989258
Iteration: 8, Func. Count: 69, Neg. LLF: 138.77488849573587
Iteration: 9, Func. Count: 78, Neg. LLF: 137.77173910194475
Iteration: 10, Func. Count: 87, Neg. LLF: 135.30529206344795
Iteration: 11, Func. Count: 96, Neg. LLF: 135.09916090746336
Iteration: 12, Func. Count: 104, Neg. LLF: 135.07922754619182
Iteration: 13, Func. Count: 112, Neg. LLF: 135.07786011816074
Iteration: 14, Func. Count: 120, Neg. LLF: 135.07770557855622
Iteration: 15, Func. Count: 128, Neg. LLF: 135.077687109913
Iteration: 16, Func. Count: 136, Neg. LLF: 135.07768571445902
Iteration: 17, Func. Count: 143, Neg. LLF: 135.07768562504847
Optimization terminated successfully (Exit mode 0)
Current function value: 135.07768571445902
Iterations: 17
Function evaluations: 143
Gradient evaluations: 17
Iteration: 1, Func. Count: 10, Neg. LLF: 150.8200930890585
Iteration: 2, Func. Count: 20, Neg. LLF: 137.50083769083608
Iteration: 3, Func. Count: 30, Neg. LLF: 152.08123648317212
Iteration: 4, Func. Count: 40, Neg. LLF: 142.1680098578672
Iteration: 5, Func. Count: 50, Neg. LLF: 135.28566968789067
Iteration: 6, Func. Count: 59, Neg. LLF: 136.42662347006112
Iteration: 7, Func. Count: 69, Neg. LLF: 135.52436046176265
Iteration: 8, Func. Count: 79, Neg. LLF: 135.13652398336498
Iteration: 9, Func. Count: 89, Neg. LLF: 135.08312631841744
Iteration: 10, Func. Count: 98, Neg. LLF: 135.0790781306907
Iteration: 11, Func. Count: 107, Neg. LLF: 135.07771667751615
Iteration: 12, Func. Count: 116, Neg. LLF: 135.077690165242
Iteration: 13, Func. Count: 125, Neg. LLF: 135.07768623216734
Iteration: 14, Func. Count: 134, Neg. LLF: 135.07768552840162
Optimization terminated successfully (Exit mode 0)
Current function value: 135.07768552840162
Iterations: 14
Function evaluations: 134
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 139.64867981493714
Iteration: 2, Func. Count: 22, Neg. LLF: 137.76332633026274
Iteration: 3, Func. Count: 33, Neg. LLF: 136.00526455848578
Iteration: 4, Func. Count: 43, Neg. LLF: 137.38535706007295
Iteration: 5, Func. Count: 55, Neg. LLF: 138.38086895939438
Iteration: 6, Func. Count: 66, Neg. LLF: 135.34224209667897
Iteration: 7, Func. Count: 76, Neg. LLF: 135.2878294189825
Iteration: 8, Func. Count: 86, Neg. LLF: 135.24365782086716
Iteration: 9, Func. Count: 96, Neg. LLF: 135.10406858203442
Iteration: 10, Func. Count: 106, Neg. LLF: 135.0806450617027
Iteration: 11, Func. Count: 116, Neg. LLF: 135.66399059179054
Iteration: 12, Func. Count: 127, Neg. LLF: 135.0552262054188
Iteration: 13, Func. Count: 137, Neg. LLF: 135.04141024134628
Iteration: 14, Func. Count: 147, Neg. LLF: 135.06060415246642
Iteration: 15, Func. Count: 158, Neg. LLF: 135.05807855935842
Iteration: 16, Func. Count: 169, Neg. LLF: 134.99879942226153
Iteration: 17, Func. Count: 179, Neg. LLF: 134.97602134219156
Iteration: 18, Func. Count: 189, Neg. LLF: 134.96196327367525
Iteration: 19, Func. Count: 199, Neg. LLF: 134.96068708846533
Iteration: 20, Func. Count: 209, Neg. LLF: 134.95856248540525
Iteration: 21, Func. Count: 219, Neg. LLF: 134.95825129771484
Iteration: 22, Func. Count: 229, Neg. LLF: 134.95813694270888
Iteration: 23, Func. Count: 239, Neg. LLF: 134.95812274543465
Iteration: 24, Func. Count: 249, Neg. LLF: 134.95812174717372
Optimization terminated successfully (Exit mode 0)
Current function value: 134.95812174717372
Iterations: 24
Function evaluations: 249
Gradient evaluations: 24
Iteration: 1, Func. Count: 12, Neg. LLF: 138.80833159040336
Iteration: 2, Func. Count: 24, Neg. LLF: 138.52638120626395
Iteration: 3, Func. Count: 36, Neg. LLF: 135.87755777972166
Iteration: 4, Func. Count: 47, Neg. LLF: 143.06462899227702
Iteration: 5, Func. Count: 59, Neg. LLF: 138.39896028085036
Iteration: 6, Func. Count: 71, Neg. LLF: 136.61102047678196
Iteration: 7, Func. Count: 83, Neg. LLF: 135.4013989067908
Iteration: 8, Func. Count: 95, Neg. LLF: 135.41329796052585
Iteration: 9, Func. Count: 107, Neg. LLF: 135.386443557817
Iteration: 10, Func. Count: 119, Neg. LLF: 135.12451258663586
Iteration: 11, Func. Count: 131, Neg. LLF: 135.0445928758983
Iteration: 12, Func. Count: 142, Neg. LLF: 135.0386126578156
Iteration: 13, Func. Count: 153, Neg. LLF: 135.0373712992878
Iteration: 14, Func. Count: 164, Neg. LLF: 135.03724677374737
Iteration: 15, Func. Count: 175, Neg. LLF: 135.03724234087207
Iteration: 16, Func. Count: 185, Neg. LLF: 135.03724234089432
Optimization terminated successfully (Exit mode 0)
Current function value: 135.03724234087207
Iterations: 16
Function evaluations: 185
Gradient evaluations: 16
Iteration: 1, Func. Count: 13, Neg. LLF: 137.67665917891358
Iteration: 2, Func. Count: 26, Neg. LLF: 136.2486201169063
Iteration: 3, Func. Count: 38, Neg. LLF: 145.53146620254728
Iteration: 4, Func. Count: 51, Neg. LLF: 138.43171448433512
Iteration: 5, Func. Count: 64, Neg. LLF: 141.78953609565409
Iteration: 6, Func. Count: 77, Neg. LLF: 137.33083724800076
Iteration: 7, Func. Count: 90, Neg. LLF: 136.43414040156918
Iteration: 8, Func. Count: 103, Neg. LLF: 135.42209740207292
Iteration: 9, Func. Count: 116, Neg. LLF: 135.235104815026
Iteration: 10, Func. Count: 129, Neg. LLF: 135.05104985584478
Iteration: 11, Func. Count: 141, Neg. LLF: 135.15918366354893
Iteration: 12, Func. Count: 154, Neg. LLF: 135.0703246000095
Iteration: 13, Func. Count: 167, Neg. LLF: 135.03987570798978
Iteration: 14, Func. Count: 179, Neg. LLF: 135.0387562271108
Iteration: 15, Func. Count: 191, Neg. LLF: 135.03763158483497
Iteration: 16, Func. Count: 203, Neg. LLF: 135.03732387779385
Iteration: 17, Func. Count: 215, Neg. LLF: 135.03725367266816
Iteration: 18, Func. Count: 227, Neg. LLF: 135.03724297857443
Iteration: 19, Func. Count: 238, Neg. LLF: 135.03724305344295
Optimization terminated successfully (Exit mode 0)
Current function value: 135.03724297857443
Iterations: 19
Function evaluations: 238
Gradient evaluations: 19
Iteration: 1, Func. Count: 10, Neg. LLF: 139.1155536979601
Iteration: 2, Func. Count: 20, Neg. LLF: 138.82557479008398
Iteration: 3, Func. Count: 30, Neg. LLF: 138.08122950523588
Iteration: 4, Func. Count: 40, Neg. LLF: 137.3012289033228
Iteration: 5, Func. Count: 50, Neg. LLF: 137.54194447915327
Iteration: 6, Func. Count: 60, Neg. LLF: 136.24507091444346
Iteration: 7, Func. Count: 70, Neg. LLF: 135.40072546264804
Iteration: 8, Func. Count: 79, Neg. LLF: 134.8242116449073
Iteration: 9, Func. Count: 88, Neg. LLF: 134.75524871279603
Iteration: 10, Func. Count: 98, Neg. LLF: 134.47176944285695
Iteration: 11, Func. Count: 107, Neg. LLF: 134.1870614656431
Iteration: 12, Func. Count: 116, Neg. LLF: 134.10851286280254
Iteration: 13, Func. Count: 125, Neg. LLF: 134.07350997792625
Iteration: 14, Func. Count: 134, Neg. LLF: 134.06796278343035
Iteration: 15, Func. Count: 143, Neg. LLF: 134.06770932273525
Iteration: 16, Func. Count: 152, Neg. LLF: 134.0677037458955
Iteration: 17, Func. Count: 160, Neg. LLF: 134.0677036233143
Optimization terminated successfully (Exit mode 0)
Current function value: 134.0677037458955
Iterations: 17
Function evaluations: 160
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 150.8248061839343
Iteration: 2, Func. Count: 22, Neg. LLF: 136.87587003644887
Iteration: 3, Func. Count: 33, Neg. LLF: 146.0974213883696
Iteration: 4, Func. Count: 44, Neg. LLF: 150.86158862088087
Iteration: 5, Func. Count: 55, Neg. LLF: 136.84739596407672
Iteration: 6, Func. Count: 66, Neg. LLF: 135.20992564255678
Iteration: 7, Func. Count: 77, Neg. LLF: 135.2144846754358
Iteration: 8, Func. Count: 88, Neg. LLF: 134.54661805309485
Iteration: 9, Func. Count: 98, Neg. LLF: 134.55596963242047
Iteration: 10, Func. Count: 109, Neg. LLF: 134.20941677808085
Iteration: 11, Func. Count: 119, Neg. LLF: 134.0958627792578
Iteration: 12, Func. Count: 129, Neg. LLF: 134.07072321863154
Iteration: 13, Func. Count: 139, Neg. LLF: 134.06867850718737
Iteration: 14, Func. Count: 149, Neg. LLF: 134.06787043555727
Iteration: 15, Func. Count: 159, Neg. LLF: 134.06774582609975
Iteration: 16, Func. Count: 169, Neg. LLF: 134.06770447959806
Iteration: 17, Func. Count: 179, Neg. LLF: 134.0677005163281
Iteration: 18, Func. Count: 189, Neg. LLF: 134.06770387696835
Iteration: 19, Func. Count: 200, Neg. LLF: 134.0677037993895
Iteration: 20, Func. Count: 211, Neg. LLF: 134.06770370573307
Iteration: 21, Func. Count: 220, Neg. LLF: 134.06770381974843
Optimization terminated successfully (Exit mode 0)
Current function value: 134.06770370573307
Iterations: 22
Function evaluations: 220
Gradient evaluations: 21
Iteration: 1, Func. Count: 12, Neg. LLF: 137.55358974408145
Iteration: 2, Func. Count: 24, Neg. LLF: 135.74204856982124
Iteration: 3, Func. Count: 35, Neg. LLF: 136.6157122978362
Iteration: 4, Func. Count: 47, Neg. LLF: 143.59350190847886
Iteration: 5, Func. Count: 59, Neg. LLF: 135.16330767564722
Iteration: 6, Func. Count: 71, Neg. LLF: 138.29188830369222
Iteration: 7, Func. Count: 83, Neg. LLF: 134.5896803760791
Iteration: 8, Func. Count: 94, Neg. LLF: 134.72412322104995
Iteration: 9, Func. Count: 106, Neg. LLF: 136.72043776285915
Iteration: 10, Func. Count: 118, Neg. LLF: 134.25276195587765
Iteration: 11, Func. Count: 129, Neg. LLF: 134.1665773020018
Iteration: 12, Func. Count: 140, Neg. LLF: 134.08101541327005
Iteration: 13, Func. Count: 151, Neg. LLF: 134.06964770157123
Iteration: 14, Func. Count: 162, Neg. LLF: 134.06781222220872
Iteration: 15, Func. Count: 173, Neg. LLF: 134.06771205365536
Iteration: 16, Func. Count: 184, Neg. LLF: 134.0677040578758
Iteration: 17, Func. Count: 194, Neg. LLF: 134.0677040821687
Optimization terminated successfully (Exit mode 0)
Current function value: 134.0677040578758
Iterations: 17
Function evaluations: 194
Gradient evaluations: 17
Iteration: 1, Func. Count: 13, Neg. LLF: 137.5761841290189
Iteration: 2, Func. Count: 26, Neg. LLF: 139.31797944730155
Iteration: 3, Func. Count: 39, Neg. LLF: 144.16748655676605
Iteration: 4, Func. Count: 52, Neg. LLF: 140.45044630233332
Iteration: 5, Func. Count: 65, Neg. LLF: 140.33612557996807
Iteration: 6, Func. Count: 78, Neg. LLF: 251.0329020113311
Iteration: 7, Func. Count: 91, Neg. LLF: 135.26570556573304
Iteration: 8, Func. Count: 103, Neg. LLF: 139.52800942698917
Iteration: 9, Func. Count: 116, Neg. LLF: 135.06561953875988
Iteration: 10, Func. Count: 128, Neg. LLF: 134.71469336982983
Iteration: 11, Func. Count: 140, Neg. LLF: 134.3427274322284
Iteration: 12, Func. Count: 152, Neg. LLF: 134.17483537736405
Iteration: 13, Func. Count: 164, Neg. LLF: 134.08680320833093
Iteration: 14, Func. Count: 176, Neg. LLF: 134.07422713732154
Iteration: 15, Func. Count: 188, Neg. LLF: 134.06699526997383
Iteration: 16, Func. Count: 200, Neg. LLF: 134.0846745751807
Iteration: 17, Func. Count: 213, Neg. LLF: 134.07087901690898
Iteration: 18, Func. Count: 226, Neg. LLF: 134.06818306258234
Iteration: 19, Func. Count: 239, Neg. LLF: 134.06770436642188
Iteration: 20, Func. Count: 250, Neg. LLF: 134.0677045291261
Optimization terminated successfully (Exit mode 0)
Current function value: 134.06770436642188
Iterations: 21
Function evaluations: 250
Gradient evaluations: 20
Iteration: 1, Func. Count: 14, Neg. LLF: 138.223889353433
Iteration: 2, Func. Count: 28, Neg. LLF: 136.8425343370572
Iteration: 3, Func. Count: 42, Neg. LLF: 142.5950846151262
Iteration: 4, Func. Count: 56, Neg. LLF: 139.2722483199152
Iteration: 5, Func. Count: 70, Neg. LLF: 137.48761975190547
Iteration: 6, Func. Count: 84, Neg. LLF: 136.83078655573723
Iteration: 7, Func. Count: 98, Neg. LLF: 135.09414113366358
Iteration: 8, Func. Count: 111, Neg. LLF: 134.75376705304066
Iteration: 9, Func. Count: 124, Neg. LLF: 134.746513224153
Iteration: 10, Func. Count: 138, Neg. LLF: 134.54669023944123
Iteration: 11, Func. Count: 151, Neg. LLF: 134.4019024872979
Iteration: 12, Func. Count: 164, Neg. LLF: 134.22435886454647
Iteration: 13, Func. Count: 177, Neg. LLF: 134.07460912872196
Iteration: 14, Func. Count: 190, Neg. LLF: 134.06869055240733
Iteration: 15, Func. Count: 203, Neg. LLF: 134.0677369313443
Iteration: 16, Func. Count: 216, Neg. LLF: 134.06770636738523
Iteration: 17, Func. Count: 229, Neg. LLF: 134.06770397826725
Iteration: 18, Func. Count: 241, Neg. LLF: 134.06770425047512
Optimization terminated successfully (Exit mode 0)
Current function value: 134.06770397826725
Iterations: 18
Function evaluations: 241
Gradient evaluations: 18
Iteration: 1, Func. Count: 11, Neg. LLF: 138.07000760506085
Iteration: 2, Func. Count: 22, Neg. LLF: 138.17406959973297
Iteration: 3, Func. Count: 33, Neg. LLF: 136.86802037782084
Iteration: 4, Func. Count: 44, Neg. LLF: 136.97416680945454
Iteration: 5, Func. Count: 55, Neg. LLF: 136.94349385258977
Iteration: 6, Func. Count: 66, Neg. LLF: 135.23777563474454
Iteration: 7, Func. Count: 76, Neg. LLF: 150.86906691552375
Iteration: 8, Func. Count: 87, Neg. LLF: 134.70467242555995
Iteration: 9, Func. Count: 97, Neg. LLF: 134.782021622878
Iteration: 10, Func. Count: 108, Neg. LLF: 134.68750911611747
Iteration: 11, Func. Count: 119, Neg. LLF: 134.5618084584912
Iteration: 12, Func. Count: 129, Neg. LLF: 134.493884693981
Iteration: 13, Func. Count: 139, Neg. LLF: 134.35437436647342
Iteration: 14, Func. Count: 149, Neg. LLF: 134.17182302286704
Iteration: 15, Func. Count: 159, Neg. LLF: 134.0715300852726
Iteration: 16, Func. Count: 169, Neg. LLF: 134.06850864686126
Iteration: 17, Func. Count: 179, Neg. LLF: 134.06801956266983
Iteration: 18, Func. Count: 189, Neg. LLF: 134.06768644107837
Iteration: 19, Func. Count: 199, Neg. LLF: 134.06766750969896
Iteration: 20, Func. Count: 209, Neg. LLF: 134.0677070985794
Iteration: 21, Func. Count: 220, Neg. LLF: 134.0677044287843
Iteration: 22, Func. Count: 231, Neg. LLF: 134.06770383922841
Iteration: 23, Func. Count: 240, Neg. LLF: 134.06770388169062
Optimization terminated successfully (Exit mode 0)
Current function value: 134.06770383922841
Iterations: 24
Function evaluations: 240
Gradient evaluations: 23
Iteration: 1, Func. Count: 12, Neg. LLF: 150.63384474775134
Iteration: 2, Func. Count: 24, Neg. LLF: 136.90996682506324
Iteration: 3, Func. Count: 36, Neg. LLF: 146.17084490304381
Iteration: 4, Func. Count: 48, Neg. LLF: 151.23920155837516
Iteration: 5, Func. Count: 60, Neg. LLF: 136.62002578129793
Iteration: 6, Func. Count: 72, Neg. LLF: 135.12106743755845
Iteration: 7, Func. Count: 83, Neg. LLF: 135.3088887616408
Iteration: 8, Func. Count: 95, Neg. LLF: 139.96284889288475
Iteration: 9, Func. Count: 107, Neg. LLF: 134.47372323159576
Iteration: 10, Func. Count: 118, Neg. LLF: 134.29258933125683
Iteration: 11, Func. Count: 129, Neg. LLF: 134.156627595556
Iteration: 12, Func. Count: 140, Neg. LLF: 134.081649258238
Iteration: 13, Func. Count: 151, Neg. LLF: 134.0690784029062
Iteration: 14, Func. Count: 162, Neg. LLF: 134.0678422487752
Iteration: 15, Func. Count: 173, Neg. LLF: 134.06770969650708
Iteration: 16, Func. Count: 184, Neg. LLF: 134.06770517490804
Iteration: 17, Func. Count: 195, Neg. LLF: 134.06774600198102
Optimization terminated successfully (Exit mode 0)
Current function value: 134.06770432897082
Iterations: 18
Function evaluations: 196
Gradient evaluations: 17
Iteration: 1, Func. Count: 13, Neg. LLF: 137.48278033843394
Iteration: 2, Func. Count: 26, Neg. LLF: 135.8473419287899
Iteration: 3, Func. Count: 38, Neg. LLF: 138.89193914014493
Iteration: 4, Func. Count: 51, Neg. LLF: 141.64827174391698
Iteration: 5, Func. Count: 64, Neg. LLF: 139.00426873693365
Iteration: 6, Func. Count: 77, Neg. LLF: 137.27721568120154
Iteration: 7, Func. Count: 90, Neg. LLF: 136.04253032559495
Iteration: 8, Func. Count: 103, Neg. LLF: 134.533054698662
Iteration: 9, Func. Count: 115, Neg. LLF: 134.36911251673888
Iteration: 10, Func. Count: 127, Neg. LLF: 134.21834575128554
Iteration: 11, Func. Count: 139, Neg. LLF: 134.10621455747992
Iteration: 12, Func. Count: 151, Neg. LLF: 134.0726865347715
Iteration: 13, Func. Count: 163, Neg. LLF: 134.06839363014205
Iteration: 14, Func. Count: 175, Neg. LLF: 134.06771654880825
Iteration: 15, Func. Count: 187, Neg. LLF: 134.0677042101638
Iteration: 16, Func. Count: 199, Neg. LLF: 134.06770371281638
Optimization terminated successfully (Exit mode 0)
Current function value: 134.06770371281638
Iterations: 16
Function evaluations: 199
Gradient evaluations: 16
Iteration: 1, Func. Count: 14, Neg. LLF: 137.5773922408664
Iteration: 2, Func. Count: 28, Neg. LLF: 139.2366281371421
Iteration: 3, Func. Count: 42, Neg. LLF: 148.1464248291872
Iteration: 4, Func. Count: 56, Neg. LLF: 145.91214357923786
Iteration: 5, Func. Count: 70, Neg. LLF: 140.61528079092665
Iteration: 6, Func. Count: 84, Neg. LLF: 9400247.455222826
Iteration: 7, Func. Count: 98, Neg. LLF: 135.41845154761626
Iteration: 8, Func. Count: 111, Neg. LLF: 140.13467627116324
Iteration: 9, Func. Count: 125, Neg. LLF: 135.38131638986602
Iteration: 10, Func. Count: 139, Neg. LLF: 134.7802830288487
Iteration: 11, Func. Count: 152, Neg. LLF: 134.7237561690417
Iteration: 12, Func. Count: 165, Neg. LLF: 134.7178308582881
Iteration: 13, Func. Count: 179, Neg. LLF: 134.61587745286917
Iteration: 14, Func. Count: 192, Neg. LLF: 134.58346230441782
Iteration: 15, Func. Count: 205, Neg. LLF: 134.55396663765913
Iteration: 16, Func. Count: 218, Neg. LLF: 134.46432969092038
Iteration: 17, Func. Count: 231, Neg. LLF: 134.23940503697116
Iteration: 18, Func. Count: 244, Neg. LLF: 134.15930933870905
Iteration: 19, Func. Count: 257, Neg. LLF: 134.08665445247928
Iteration: 20, Func. Count: 270, Neg. LLF: 134.07085320326283
Iteration: 21, Func. Count: 283, Neg. LLF: 134.06990588307835
Iteration: 22, Func. Count: 296, Neg. LLF: 134.06924687250273
Iteration: 23, Func. Count: 309, Neg. LLF: 134.06807204805165
Iteration: 24, Func. Count: 322, Neg. LLF: 134.0680240932253
Iteration: 25, Func. Count: 335, Neg. LLF: 134.0677129632471
Iteration: 26, Func. Count: 348, Neg. LLF: 134.06784818860746
Iteration: 27, Func. Count: 362, Neg. LLF: 134.06770700281086
Optimization terminated successfully (Exit mode 0)
Current function value: 134.06770479960483
Iterations: 28
Function evaluations: 363
Gradient evaluations: 27
Iteration: 1, Func. Count: 15, Neg. LLF: 138.28453970921055
Iteration: 2, Func. Count: 30, Neg. LLF: 136.83018751190926
Iteration: 3, Func. Count: 45, Neg. LLF: 144.60966469594607
Iteration: 4, Func. Count: 60, Neg. LLF: 137.07510845723013
Iteration: 5, Func. Count: 75, Neg. LLF: 149.05737787629525
Iteration: 6, Func. Count: 90, Neg. LLF: 146.16038657327857
Iteration: 7, Func. Count: 105, Neg. LLF: 135.0242380848387
Iteration: 8, Func. Count: 119, Neg. LLF: 134.97135286299036
Iteration: 9, Func. Count: 134, Neg. LLF: 135.59493065499018
Iteration: 10, Func. Count: 149, Neg. LLF: 134.55537659967155
Iteration: 11, Func. Count: 163, Neg. LLF: 134.56616099415407
Iteration: 12, Func. Count: 178, Neg. LLF: 134.47807331374645
Iteration: 13, Func. Count: 192, Neg. LLF: 134.1144624336142
Iteration: 14, Func. Count: 206, Neg. LLF: 134.07362640376405
Iteration: 15, Func. Count: 220, Neg. LLF: 134.06905119422453
Iteration: 16, Func. Count: 234, Neg. LLF: 134.06774042300907
Iteration: 17, Func. Count: 248, Neg. LLF: 134.0677073026194
Iteration: 18, Func. Count: 262, Neg. LLF: 134.06770234029236
Iteration: 19, Func. Count: 276, Neg. LLF: 134.06770533114957
Optimization terminated successfully (Exit mode 0)
Current function value: 134.06770246094825
Iterations: 20
Function evaluations: 277
Gradient evaluations: 19
Iteration: 1, Func. Count: 8, Neg. LLF: 138.25366751459413
Iteration: 2, Func. Count: 16, Neg. LLF: 139.32058255833343
Iteration: 3, Func. Count: 25, Neg. LLF: 136.27833551989409
Iteration: 4, Func. Count: 32, Neg. LLF: 136.0562460242215
Iteration: 5, Func. Count: 39, Neg. LLF: 145.1359083260709
Iteration: 6, Func. Count: 48, Neg. LLF: 137.57576657304404
Iteration: 7, Func. Count: 56, Neg. LLF: 135.7048777980247
Iteration: 8, Func. Count: 63, Neg. LLF: 135.6401657346667
Iteration: 9, Func. Count: 70, Neg. LLF: 135.63113066500918
Iteration: 10, Func. Count: 77, Neg. LLF: 135.62149741931398
Iteration: 11, Func. Count: 84, Neg. LLF: 135.61914975704477
Iteration: 12, Func. Count: 91, Neg. LLF: 135.61893297578533
Iteration: 13, Func. Count: 98, Neg. LLF: 135.61892151118298
Iteration: 14, Func. Count: 105, Neg. LLF: 135.6189208454428
Optimization terminated successfully (Exit mode 0)
Current function value: 135.6189208454428
Iterations: 14
Function evaluations: 105
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 138.47334335761064
Iteration: 2, Func. Count: 18, Neg. LLF: 137.49442580326212
Iteration: 3, Func. Count: 27, Neg. LLF: 153.5575446672054
Iteration: 4, Func. Count: 36, Neg. LLF: 140.84919778755602
Iteration: 5, Func. Count: 45, Neg. LLF: 140.46460969368434
Iteration: 6, Func. Count: 54, Neg. LLF: 135.77683974888407
Iteration: 7, Func. Count: 62, Neg. LLF: 137.8090768834548
Iteration: 8, Func. Count: 72, Neg. LLF: 135.7526569190676
Iteration: 9, Func. Count: 81, Neg. LLF: 135.63785914490933
Iteration: 10, Func. Count: 89, Neg. LLF: 135.6234696828814
Iteration: 11, Func. Count: 97, Neg. LLF: 135.6203459717265
Iteration: 12, Func. Count: 105, Neg. LLF: 135.61908586384305
Iteration: 13, Func. Count: 113, Neg. LLF: 135.6189430033119
Iteration: 14, Func. Count: 121, Neg. LLF: 135.61892226336184
Iteration: 15, Func. Count: 129, Neg. LLF: 135.61892087657594
Iteration: 16, Func. Count: 136, Neg. LLF: 135.61892087676225
Optimization terminated successfully (Exit mode 0)
Current function value: 135.61892087657594
Iterations: 16
Function evaluations: 136
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 138.45761156565797
Iteration: 2, Func. Count: 20, Neg. LLF: 137.4620488908606
Iteration: 3, Func. Count: 30, Neg. LLF: 152.70306400055685
Iteration: 4, Func. Count: 40, Neg. LLF: 140.49535341110854
Iteration: 5, Func. Count: 50, Neg. LLF: 146.0759615962043
Iteration: 6, Func. Count: 60, Neg. LLF: 135.72832862976603
Iteration: 7, Func. Count: 69, Neg. LLF: 140.80091113483925
Iteration: 8, Func. Count: 79, Neg. LLF: 135.63160061610597
Iteration: 9, Func. Count: 88, Neg. LLF: 135.62191238789794
Iteration: 10, Func. Count: 97, Neg. LLF: 135.6197486558059
Iteration: 11, Func. Count: 106, Neg. LLF: 135.61904672996283
Iteration: 12, Func. Count: 115, Neg. LLF: 135.6189275440663
Iteration: 13, Func. Count: 124, Neg. LLF: 135.61892112244553
Iteration: 14, Func. Count: 132, Neg. LLF: 135.61892112805984
Optimization terminated successfully (Exit mode 0)
Current function value: 135.61892112244553
Iterations: 14
Function evaluations: 132
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 138.4571023348563
Iteration: 2, Func. Count: 22, Neg. LLF: 137.39999308274056
Iteration: 3, Func. Count: 33, Neg. LLF: 150.24426828800028
Iteration: 4, Func. Count: 44, Neg. LLF: 140.08862110660877
Iteration: 5, Func. Count: 55, Neg. LLF: 140.31683444450383
Iteration: 6, Func. Count: 66, Neg. LLF: 135.72296886777016
Iteration: 7, Func. Count: 76, Neg. LLF: 169.95979333987898
Iteration: 8, Func. Count: 88, Neg. LLF: 135.65920746619827
Iteration: 9, Func. Count: 98, Neg. LLF: 135.62568107341278
Iteration: 10, Func. Count: 108, Neg. LLF: 135.62135866484846
Iteration: 11, Func. Count: 118, Neg. LLF: 135.61933517839276
Iteration: 12, Func. Count: 128, Neg. LLF: 135.61892609303672
Iteration: 13, Func. Count: 138, Neg. LLF: 135.61892097143203
Iteration: 14, Func. Count: 147, Neg. LLF: 135.61892100315347
Optimization terminated successfully (Exit mode 0)
Current function value: 135.61892097143203
Iterations: 14
Function evaluations: 147
Gradient evaluations: 14
Iteration: 1, Func. Count: 12, Neg. LLF: 138.45804875607487
Iteration: 2, Func. Count: 24, Neg. LLF: 137.37401992738506
Iteration: 3, Func. Count: 36, Neg. LLF: 149.96505587448573
Iteration: 4, Func. Count: 48, Neg. LLF: 139.95609072263875
Iteration: 5, Func. Count: 60, Neg. LLF: 139.07704365943377
Iteration: 6, Func. Count: 72, Neg. LLF: 135.7262402762723
Iteration: 7, Func. Count: 83, Neg. LLF: 191.29598140392602
Iteration: 8, Func. Count: 96, Neg. LLF: 135.67430530141544
Iteration: 9, Func. Count: 107, Neg. LLF: 135.63214225215876
Iteration: 10, Func. Count: 118, Neg. LLF: 135.62167720375024
Iteration: 11, Func. Count: 129, Neg. LLF: 135.61961394268997
Iteration: 12, Func. Count: 140, Neg. LLF: 135.61892684839424
Iteration: 13, Func. Count: 151, Neg. LLF: 135.61892111811764
Iteration: 14, Func. Count: 161, Neg. LLF: 135.61892115715412
Optimization terminated successfully (Exit mode 0)
Current function value: 135.61892111811764
Iterations: 14
Function evaluations: 161
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 138.26710367914413
Iteration: 2, Func. Count: 18, Neg. LLF: 140.99202744349478
Iteration: 3, Func. Count: 27, Neg. LLF: 140.34980783457078
Iteration: 4, Func. Count: 36, Neg. LLF: 138.27021817157052
Iteration: 5, Func. Count: 45, Neg. LLF: 137.97729080579003
Iteration: 6, Func. Count: 54, Neg. LLF: 136.391914133131
Iteration: 7, Func. Count: 63, Neg. LLF: 136.01577464067202
Iteration: 8, Func. Count: 72, Neg. LLF: 135.64827316617016
Iteration: 9, Func. Count: 81, Neg. LLF: 137.72004417109966
Iteration: 10, Func. Count: 91, Neg. LLF: 135.50931772006024
Iteration: 11, Func. Count: 99, Neg. LLF: 135.48106261731334
Iteration: 12, Func. Count: 107, Neg. LLF: 135.476695529368
Iteration: 13, Func. Count: 115, Neg. LLF: 135.4765443529957
Iteration: 14, Func. Count: 123, Neg. LLF: 135.4765144429498
Iteration: 15, Func. Count: 131, Neg. LLF: 135.47651301018996
Iteration: 16, Func. Count: 138, Neg. LLF: 135.4765130101912
Optimization terminated successfully (Exit mode 0)
Current function value: 135.47651301018996
Iterations: 16
Function evaluations: 138
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 138.35718077967684
Iteration: 2, Func. Count: 20, Neg. LLF: 146.18088096286635
Iteration: 3, Func. Count: 30, Neg. LLF: 150.61967434048094
Iteration: 4, Func. Count: 40, Neg. LLF: 136.85653073838722
Iteration: 5, Func. Count: 50, Neg. LLF: 178.84020974048016
Iteration: 6, Func. Count: 60, Neg. LLF: 137.80640063270846
Iteration: 7, Func. Count: 70, Neg. LLF: 136.05365175891376
Iteration: 8, Func. Count: 80, Neg. LLF: 135.51875839855248
Iteration: 9, Func. Count: 89, Neg. LLF: 142.54325749749603
Iteration: 10, Func. Count: 99, Neg. LLF: 135.43350164504844
Iteration: 11, Func. Count: 108, Neg. LLF: 135.40923295158322
Iteration: 12, Func. Count: 117, Neg. LLF: 135.4085325919067
Iteration: 13, Func. Count: 126, Neg. LLF: 135.40846714932454
Iteration: 14, Func. Count: 135, Neg. LLF: 135.40845753636353
Iteration: 15, Func. Count: 144, Neg. LLF: 135.40845700667242
Optimization terminated successfully (Exit mode 0)
Current function value: 135.40845700667242
Iterations: 15
Function evaluations: 144
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 141.30596971595958
Iteration: 2, Func. Count: 22, Neg. LLF: 138.3154593696882
Iteration: 3, Func. Count: 34, Neg. LLF: 140.1018144145441
Iteration: 4, Func. Count: 45, Neg. LLF: 136.264552842422
Iteration: 5, Func. Count: 56, Neg. LLF: 139.21241381469892
Iteration: 6, Func. Count: 67, Neg. LLF: 137.6089185123143
Iteration: 7, Func. Count: 78, Neg. LLF: 135.60832775893797
Iteration: 8, Func. Count: 88, Neg. LLF: 136.82515297227553
Iteration: 9, Func. Count: 99, Neg. LLF: 135.58539228021354
Iteration: 10, Func. Count: 110, Neg. LLF: 135.41055181856933
Iteration: 11, Func. Count: 120, Neg. LLF: 135.40909584723826
Iteration: 12, Func. Count: 130, Neg. LLF: 135.4085139306563
Iteration: 13, Func. Count: 140, Neg. LLF: 135.4084653941622
Iteration: 14, Func. Count: 150, Neg. LLF: 135.40845756605938
Iteration: 15, Func. Count: 159, Neg. LLF: 135.40845759289107
Optimization terminated successfully (Exit mode 0)
Current function value: 135.40845756605938
Iterations: 15
Function evaluations: 159
Gradient evaluations: 15
Iteration: 1, Func. Count: 12, Neg. LLF: 144.86661553144094
Iteration: 2, Func. Count: 24, Neg. LLF: 138.46690586631988
Iteration: 3, Func. Count: 37, Neg. LLF: 140.2066568474559
Iteration: 4, Func. Count: 49, Neg. LLF: 136.1567188657801
Iteration: 5, Func. Count: 60, Neg. LLF: 143.17852031168974
Iteration: 6, Func. Count: 72, Neg. LLF: 139.65489426205747
Iteration: 7, Func. Count: 84, Neg. LLF: 136.35618318204374
Iteration: 8, Func. Count: 96, Neg. LLF: 135.6275289489522
Iteration: 9, Func. Count: 107, Neg. LLF: 140.8939477119457
Iteration: 10, Func. Count: 119, Neg. LLF: 135.46718268292017
Iteration: 11, Func. Count: 130, Neg. LLF: 135.43086095304565
Iteration: 12, Func. Count: 141, Neg. LLF: 135.41567622897142
Iteration: 13, Func. Count: 152, Neg. LLF: 135.41163577998506
Iteration: 14, Func. Count: 163, Neg. LLF: 135.41001247742867
Iteration: 15, Func. Count: 174, Neg. LLF: 135.40944644957796
Iteration: 16, Func. Count: 185, Neg. LLF: 135.408755728098
Iteration: 17, Func. Count: 196, Neg. LLF: 135.4085115753687
Iteration: 18, Func. Count: 207, Neg. LLF: 135.40846260372592
Iteration: 19, Func. Count: 218, Neg. LLF: 135.40845771845957
Iteration: 20, Func. Count: 229, Neg. LLF: 135.40845707998628
Optimization terminated successfully (Exit mode 0)
Current function value: 135.40845707998628
Iterations: 20
Function evaluations: 229
Gradient evaluations: 20
Iteration: 1, Func. Count: 13, Neg. LLF: 140.22121987807108
Iteration: 2, Func. Count: 26, Neg. LLF: 138.31950896957395
Iteration: 3, Func. Count: 40, Neg. LLF: 140.09183951937922
Iteration: 4, Func. Count: 53, Neg. LLF: 136.17957911756406
Iteration: 5, Func. Count: 65, Neg. LLF: 155.30560986923345
Iteration: 6, Func. Count: 78, Neg. LLF: 138.80333257629522
Iteration: 7, Func. Count: 91, Neg. LLF: 135.65452018505968
Iteration: 8, Func. Count: 103, Neg. LLF: 137.17634284412136
Iteration: 9, Func. Count: 116, Neg. LLF: 135.70085991787644
Iteration: 10, Func. Count: 129, Neg. LLF: 135.80027454223193
Iteration: 11, Func. Count: 142, Neg. LLF: 135.43282195289112
Iteration: 12, Func. Count: 154, Neg. LLF: 135.4118801436375
Iteration: 13, Func. Count: 166, Neg. LLF: 135.41043030704373
Iteration: 14, Func. Count: 178, Neg. LLF: 135.40962701959998
Iteration: 15, Func. Count: 190, Neg. LLF: 135.40911254808734
Iteration: 16, Func. Count: 202, Neg. LLF: 135.4086802858177
Iteration: 17, Func. Count: 214, Neg. LLF: 135.40848637731682
Iteration: 18, Func. Count: 226, Neg. LLF: 135.4084585224354
Iteration: 19, Func. Count: 238, Neg. LLF: 135.40845704042772
Iteration: 20, Func. Count: 249, Neg. LLF: 135.40845708785287
Optimization terminated successfully (Exit mode 0)
Current function value: 135.40845704042772
Iterations: 20
Function evaluations: 249
Gradient evaluations: 20
Iteration: 1, Func. Count: 10, Neg. LLF: 142.68250303159732
Iteration: 2, Func. Count: 20, Neg. LLF: 138.3932181338697
Iteration: 3, Func. Count: 31, Neg. LLF: 138.53998435519827
Iteration: 4, Func. Count: 41, Neg. LLF: 139.374254367255
Iteration: 5, Func. Count: 51, Neg. LLF: 136.83112847916072
Iteration: 6, Func. Count: 61, Neg. LLF: 135.29744653275736
Iteration: 7, Func. Count: 70, Neg. LLF: 135.52542066490338
Iteration: 8, Func. Count: 80, Neg. LLF: 136.24785850045922
Iteration: 9, Func. Count: 91, Neg. LLF: 135.70683734277372
Iteration: 10, Func. Count: 101, Neg. LLF: 134.7092962750806
Iteration: 11, Func. Count: 110, Neg. LLF: 134.69101401435634
Iteration: 12, Func. Count: 119, Neg. LLF: 134.6880967392795
Iteration: 13, Func. Count: 128, Neg. LLF: 134.68743044978015
Iteration: 14, Func. Count: 137, Neg. LLF: 134.68740540887006
Iteration: 15, Func. Count: 146, Neg. LLF: 134.68739772016315
Iteration: 16, Func. Count: 154, Neg. LLF: 134.68739760608483
Optimization terminated successfully (Exit mode 0)
Current function value: 134.68739772016315
Iterations: 16
Function evaluations: 154
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 143.46268398393613
Iteration: 2, Func. Count: 22, Neg. LLF: 137.68119366402715
Iteration: 3, Func. Count: 33, Neg. LLF: 136.9346926638254
Iteration: 4, Func. Count: 44, Neg. LLF: 138.54308881809678
Iteration: 5, Func. Count: 55, Neg. LLF: 136.6231943591552
Iteration: 6, Func. Count: 66, Neg. LLF: 139.57916978737063
Iteration: 7, Func. Count: 77, Neg. LLF: 136.22064908526337
Iteration: 8, Func. Count: 88, Neg. LLF: 136.08854644150844
Iteration: 9, Func. Count: 99, Neg. LLF: 134.75087906230306
Iteration: 10, Func. Count: 109, Neg. LLF: 135.09720719050148
Iteration: 11, Func. Count: 120, Neg. LLF: 134.74731403266372
Iteration: 12, Func. Count: 131, Neg. LLF: 134.6513175606932
Iteration: 13, Func. Count: 141, Neg. LLF: 134.65099512671358
Iteration: 14, Func. Count: 151, Neg. LLF: 134.65089843407688
Iteration: 15, Func. Count: 161, Neg. LLF: 134.65086555117256
Iteration: 16, Func. Count: 171, Neg. LLF: 134.6508614028691
Iteration: 17, Func. Count: 181, Neg. LLF: 134.65086027024094
Iteration: 18, Func. Count: 190, Neg. LLF: 134.65086027023688
Optimization terminated successfully (Exit mode 0)
Current function value: 134.65086027024094
Iterations: 18
Function evaluations: 190
Gradient evaluations: 18
Iteration: 1, Func. Count: 12, Neg. LLF: 143.46612388217795
Iteration: 2, Func. Count: 24, Neg. LLF: 137.18581165308044
Iteration: 3, Func. Count: 37, Neg. LLF: 136.8031519447475
Iteration: 4, Func. Count: 49, Neg. LLF: 136.82367514783363
Iteration: 5, Func. Count: 61, Neg. LLF: 137.70549470877867
Iteration: 6, Func. Count: 73, Neg. LLF: 135.82614552889666
Iteration: 7, Func. Count: 85, Neg. LLF: 136.73427100673248
Iteration: 8, Func. Count: 97, Neg. LLF: 136.5401484360499
Iteration: 9, Func. Count: 109, Neg. LLF: 134.76607700771643
Iteration: 10, Func. Count: 120, Neg. LLF: 134.69135077086725
Iteration: 11, Func. Count: 131, Neg. LLF: 134.67385649866992
Iteration: 12, Func. Count: 142, Neg. LLF: 134.66639490332048
Iteration: 13, Func. Count: 153, Neg. LLF: 134.65837831089448
Iteration: 14, Func. Count: 164, Neg. LLF: 134.6512103070142
Iteration: 15, Func. Count: 175, Neg. LLF: 134.65088550704286
Iteration: 16, Func. Count: 186, Neg. LLF: 134.65086202415458
Iteration: 17, Func. Count: 197, Neg. LLF: 134.65086025975236
Iteration: 18, Func. Count: 207, Neg. LLF: 134.6508602816257
Optimization terminated successfully (Exit mode 0)
Current function value: 134.65086025975236
Iterations: 18
Function evaluations: 207
Gradient evaluations: 18
Iteration: 1, Func. Count: 13, Neg. LLF: 143.45857546133905
Iteration: 2, Func. Count: 26, Neg. LLF: 137.50516027243307
Iteration: 3, Func. Count: 40, Neg. LLF: 136.70741223940294
Iteration: 4, Func. Count: 53, Neg. LLF: 137.3830368234518
Iteration: 5, Func. Count: 66, Neg. LLF: 137.99845371880102
Iteration: 6, Func. Count: 79, Neg. LLF: 136.76261011870588
Iteration: 7, Func. Count: 92, Neg. LLF: 136.4132390186323
Iteration: 8, Func. Count: 105, Neg. LLF: 136.65402434164181
Iteration: 9, Func. Count: 118, Neg. LLF: 134.72015393073767
Iteration: 10, Func. Count: 130, Neg. LLF: 134.69359024126328
Iteration: 11, Func. Count: 142, Neg. LLF: 134.673989733017
Iteration: 12, Func. Count: 154, Neg. LLF: 134.6656719353938
Iteration: 13, Func. Count: 166, Neg. LLF: 134.65613801464133
Iteration: 14, Func. Count: 178, Neg. LLF: 134.6519890692716
Iteration: 15, Func. Count: 190, Neg. LLF: 134.6509015486086
Iteration: 16, Func. Count: 202, Neg. LLF: 134.65086065544386
Iteration: 17, Func. Count: 213, Neg. LLF: 134.65086073306148
Optimization terminated successfully (Exit mode 0)
Current function value: 134.65086065544386
Iterations: 17
Function evaluations: 213
Gradient evaluations: 17
Iteration: 1, Func. Count: 14, Neg. LLF: 139.20595563859652
Iteration: 2, Func. Count: 28, Neg. LLF: 138.01315532695116
Iteration: 3, Func. Count: 43, Neg. LLF: 137.90188750971973
Iteration: 4, Func. Count: 57, Neg. LLF: 145.9405039191484
Iteration: 5, Func. Count: 71, Neg. LLF: 137.52833670331398
Iteration: 6, Func. Count: 85, Neg. LLF: 134.98105066298598
Iteration: 7, Func. Count: 98, Neg. LLF: 137.38100922936076
Iteration: 8, Func. Count: 112, Neg. LLF: 136.39197097837382
Iteration: 9, Func. Count: 127, Neg. LLF: 134.7307718124688
Iteration: 10, Func. Count: 140, Neg. LLF: 134.6893006625136
Iteration: 11, Func. Count: 153, Neg. LLF: 134.6712267579568
Iteration: 12, Func. Count: 166, Neg. LLF: 134.6684640858934
Iteration: 13, Func. Count: 179, Neg. LLF: 134.66281513300186
Iteration: 14, Func. Count: 192, Neg. LLF: 134.66020540416744
Iteration: 15, Func. Count: 205, Neg. LLF: 134.6544699801828
Iteration: 16, Func. Count: 218, Neg. LLF: 134.65207636870943
Iteration: 17, Func. Count: 231, Neg. LLF: 134.6509390334954
Iteration: 18, Func. Count: 244, Neg. LLF: 134.65086183644038
Iteration: 19, Func. Count: 257, Neg. LLF: 134.65086024748746
Iteration: 20, Func. Count: 269, Neg. LLF: 134.65086037924902
Optimization terminated successfully (Exit mode 0)
Current function value: 134.65086024748746
Iterations: 20
Function evaluations: 269
Gradient evaluations: 20
Iteration: 1, Func. Count: 11, Neg. LLF: 143.0148499843372
Iteration: 2, Func. Count: 22, Neg. LLF: 138.78560586515826
Iteration: 3, Func. Count: 34, Neg. LLF: 138.2207894025352
Iteration: 4, Func. Count: 45, Neg. LLF: 137.89372787080728
Iteration: 5, Func. Count: 56, Neg. LLF: 137.35692935640373
Iteration: 6, Func. Count: 67, Neg. LLF: 135.1748417101035
Iteration: 7, Func. Count: 77, Neg. LLF: 136.21523771035933
Iteration: 8, Func. Count: 88, Neg. LLF: 138.33540375732454
Iteration: 9, Func. Count: 100, Neg. LLF: 134.48724119890713
Iteration: 10, Func. Count: 110, Neg. LLF: 134.4424215305436
Iteration: 11, Func. Count: 120, Neg. LLF: 134.41904764546172
Iteration: 12, Func. Count: 130, Neg. LLF: 134.40592870319068
Iteration: 13, Func. Count: 140, Neg. LLF: 134.3848709690202
Iteration: 14, Func. Count: 150, Neg. LLF: 134.18976334443477
Iteration: 15, Func. Count: 160, Neg. LLF: 134.09706869693335
Iteration: 16, Func. Count: 170, Neg. LLF: 134.07293300957406
Iteration: 17, Func. Count: 180, Neg. LLF: 134.068903952691
Iteration: 18, Func. Count: 190, Neg. LLF: 134.06839161140311
Iteration: 19, Func. Count: 200, Neg. LLF: 134.06774795407355
Iteration: 20, Func. Count: 210, Neg. LLF: 134.06770548136927
Iteration: 21, Func. Count: 220, Neg. LLF: 134.06770184167232
Iteration: 22, Func. Count: 230, Neg. LLF: 134.06770234347127
Iteration: 23, Func. Count: 250, Neg. LLF: 134.06770382580103
Iteration: 24, Func. Count: 261, Neg. LLF: 134.06770370851086
Optimization terminated successfully (Exit mode 0)
Current function value: 134.067702657294
Iterations: 25
Function evaluations: 262
Gradient evaluations: 24
Iteration: 1, Func. Count: 12, Neg. LLF: 142.51808380781114
Iteration: 2, Func. Count: 24, Neg. LLF: 137.7264043067858
Iteration: 3, Func. Count: 36, Neg. LLF: 137.09465981645414
Iteration: 4, Func. Count: 48, Neg. LLF: 140.57223978350322
Iteration: 5, Func. Count: 60, Neg. LLF: 137.4005837241919
Iteration: 6, Func. Count: 72, Neg. LLF: 148.48438402335202
Iteration: 7, Func. Count: 84, Neg. LLF: 136.64868084652292
Iteration: 8, Func. Count: 96, Neg. LLF: 136.21703399964386
Iteration: 9, Func. Count: 108, Neg. LLF: 134.72329492021137
Iteration: 10, Func. Count: 119, Neg. LLF: 134.65862417413425
Iteration: 11, Func. Count: 131, Neg. LLF: 134.5629644444844
Iteration: 12, Func. Count: 143, Neg. LLF: 134.40896143461612
Iteration: 13, Func. Count: 154, Neg. LLF: 134.37933168973038
Iteration: 14, Func. Count: 165, Neg. LLF: 134.33468940490505
Iteration: 15, Func. Count: 176, Neg. LLF: 134.1876874961292
Iteration: 16, Func. Count: 187, Neg. LLF: 134.13623772880055
Iteration: 17, Func. Count: 198, Neg. LLF: 134.08579398138767
Iteration: 18, Func. Count: 209, Neg. LLF: 134.07232747393616
Iteration: 19, Func. Count: 220, Neg. LLF: 134.06818219679718
Iteration: 20, Func. Count: 231, Neg. LLF: 134.06772255351007
Iteration: 21, Func. Count: 242, Neg. LLF: 134.06771544033842
Iteration: 22, Func. Count: 253, Neg. LLF: 134.06769579164487
Iteration: 23, Func. Count: 264, Neg. LLF: 134.06769490832374
Iteration: 24, Func. Count: 285, Neg. LLF: 134.0677000730176
Iteration: 25, Func. Count: 306, Neg. LLF: 134.06769979082767
Iteration: 26, Func. Count: 327, Neg. LLF: 134.06770372012673
Iteration: 27, Func. Count: 339, Neg. LLF: 134.0677037068997
Iteration: 28, Func. Count: 351, Neg. LLF: 134.06770370600782
Iteration: 29, Func. Count: 363, Neg. LLF: 134.06770370557473
Iteration: 30, Func. Count: 376, Neg. LLF: 134.06769986183033
Optimization terminated successfully (Exit mode 0)
Current function value: 134.06769974781415
Iterations: 34
Function evaluations: 376
Gradient evaluations: 30
Iteration: 1, Func. Count: 13, Neg. LLF: 143.46493842584132
Iteration: 2, Func. Count: 26, Neg. LLF: 137.20274280111093
Iteration: 3, Func. Count: 40, Neg. LLF: 136.8760984373291
Iteration: 4, Func. Count: 53, Neg. LLF: 135.5123718135986
Iteration: 5, Func. Count: 66, Neg. LLF: 135.51500108083465
Iteration: 6, Func. Count: 79, Neg. LLF: 135.44593474145898
Iteration: 7, Func. Count: 92, Neg. LLF: 135.11336315742906
Iteration: 8, Func. Count: 105, Neg. LLF: 134.5609218807921
Iteration: 9, Func. Count: 118, Neg. LLF: 134.43028095883466
Iteration: 10, Func. Count: 130, Neg. LLF: 134.39956449585642
Iteration: 11, Func. Count: 142, Neg. LLF: 134.37813737055137
Iteration: 12, Func. Count: 154, Neg. LLF: 134.25919271083703
Iteration: 13, Func. Count: 166, Neg. LLF: 134.09023798583365
Iteration: 14, Func. Count: 178, Neg. LLF: 134.07041113321142
Iteration: 15, Func. Count: 190, Neg. LLF: 134.0683451762768
Iteration: 16, Func. Count: 202, Neg. LLF: 134.06774489748895
Iteration: 17, Func. Count: 214, Neg. LLF: 134.067734648422
Iteration: 18, Func. Count: 226, Neg. LLF: 134.06773728413674
Optimization terminated successfully (Exit mode 0)
Current function value: 134.06773373188773
Iterations: 18
Function evaluations: 227
Gradient evaluations: 18
Iteration: 1, Func. Count: 14, Neg. LLF: 143.45695576956786
Iteration: 2, Func. Count: 28, Neg. LLF: 137.53343405590562
Iteration: 3, Func. Count: 43, Neg. LLF: 136.72488455488966
Iteration: 4, Func. Count: 57, Neg. LLF: 137.6616153264192
Iteration: 5, Func. Count: 71, Neg. LLF: 137.37000602549008
Iteration: 6, Func. Count: 85, Neg. LLF: 135.65533220230952
Iteration: 7, Func. Count: 99, Neg. LLF: 136.13815824714584
Iteration: 8, Func. Count: 113, Neg. LLF: 134.62828690909208
Iteration: 9, Func. Count: 126, Neg. LLF: 134.52086064481162
Iteration: 10, Func. Count: 139, Neg. LLF: 134.48283174789518
Iteration: 11, Func. Count: 153, Neg. LLF: 134.40361959491858
Iteration: 12, Func. Count: 166, Neg. LLF: 134.3919778985911
Iteration: 13, Func. Count: 179, Neg. LLF: 134.3437599196585
Iteration: 14, Func. Count: 192, Neg. LLF: 134.20357893871855
Iteration: 15, Func. Count: 205, Neg. LLF: 134.07383360610157
Iteration: 16, Func. Count: 218, Neg. LLF: 134.0685262015249
Iteration: 17, Func. Count: 231, Neg. LLF: 134.0676516857829
Iteration: 18, Func. Count: 244, Neg. LLF: 134.06779526395871
Iteration: 19, Func. Count: 258, Neg. LLF: 134.0677117135939
Iteration: 20, Func. Count: 272, Neg. LLF: 134.06770585330972
Iteration: 21, Func. Count: 286, Neg. LLF: 134.06770370770627
Iteration: 22, Func. Count: 298, Neg. LLF: 134.06770387057827
Optimization terminated successfully (Exit mode 0)
Current function value: 134.06770370770627
Iterations: 23
Function evaluations: 298
Gradient evaluations: 22
Iteration: 1, Func. Count: 15, Neg. LLF: 138.92135802606018
Iteration: 2, Func. Count: 30, Neg. LLF: 138.05248005383459
Iteration: 3, Func. Count: 46, Neg. LLF: 137.97291025530663
Iteration: 4, Func. Count: 61, Neg. LLF: 143.4807334503507
Iteration: 5, Func. Count: 76, Neg. LLF: 137.00314003265072
Iteration: 6, Func. Count: 91, Neg. LLF: 137.28926062709198
Iteration: 7, Func. Count: 106, Neg. LLF: 135.05744632622074
Iteration: 8, Func. Count: 120, Neg. LLF: 134.4502151125383
Iteration: 9, Func. Count: 134, Neg. LLF: 134.99829551891182
Iteration: 10, Func. Count: 149, Neg. LLF: 134.41601097586323
Iteration: 11, Func. Count: 163, Neg. LLF: 134.40426249537654
Iteration: 12, Func. Count: 177, Neg. LLF: 134.3921601622165
Iteration: 13, Func. Count: 191, Neg. LLF: 134.33370508547102
Iteration: 14, Func. Count: 205, Neg. LLF: 134.17733601973532
Iteration: 15, Func. Count: 219, Neg. LLF: 134.12025060944745
Iteration: 16, Func. Count: 233, Neg. LLF: 134.06920524522818
Iteration: 17, Func. Count: 247, Neg. LLF: 134.0677503077431
Iteration: 18, Func. Count: 261, Neg. LLF: 134.06773253197954
Iteration: 19, Func. Count: 275, Neg. LLF: 134.06768638897273
Iteration: 20, Func. Count: 289, Neg. LLF: 134.06772760544266
Iteration: 21, Func. Count: 304, Neg. LLF: 134.06771075851154
Iteration: 22, Func. Count: 319, Neg. LLF: 134.06770397369368
Iteration: 23, Func. Count: 334, Neg. LLF: 134.06770370836406
Iteration: 24, Func. Count: 347, Neg. LLF: 134.06770398059933
Optimization terminated successfully (Exit mode 0)
Current function value: 134.06770370836406
Iterations: 25
Function evaluations: 347
Gradient evaluations: 24
Iteration: 1, Func. Count: 12, Neg. LLF: 139.1904910941291
Iteration: 2, Func. Count: 24, Neg. LLF: 144.97766485453383
Iteration: 3, Func. Count: 36, Neg. LLF: 137.41643052222088
Iteration: 4, Func. Count: 48, Neg. LLF: 135.81944212473445
Iteration: 5, Func. Count: 61, Neg. LLF: 135.49834196301703
Iteration: 6, Func. Count: 72, Neg. LLF: 137.14851356871256
Iteration: 7, Func. Count: 84, Neg. LLF: 138.5574053043946
Iteration: 8, Func. Count: 97, Neg. LLF: 134.7268824242118
Iteration: 9, Func. Count: 108, Neg. LLF: 134.89189538991926
Iteration: 10, Func. Count: 120, Neg. LLF: 136.051946990634
Iteration: 11, Func. Count: 132, Neg. LLF: 134.40805484738806
Iteration: 12, Func. Count: 143, Neg. LLF: 134.32947370791845
Iteration: 13, Func. Count: 154, Neg. LLF: 134.2727413268765
Iteration: 14, Func. Count: 165, Neg. LLF: 134.19884748070274
Iteration: 15, Func. Count: 176, Neg. LLF: 134.06333717640504
Iteration: 16, Func. Count: 187, Neg. LLF: 134.03917569861326
Iteration: 17, Func. Count: 198, Neg. LLF: 134.02833629016254
Iteration: 18, Func. Count: 209, Neg. LLF: 134.02515678658435
Iteration: 19, Func. Count: 220, Neg. LLF: 134.02438575290952
Iteration: 20, Func. Count: 231, Neg. LLF: 134.0239304447806
Iteration: 21, Func. Count: 242, Neg. LLF: 134.02385468062442
Iteration: 22, Func. Count: 253, Neg. LLF: 134.02383221598828
Iteration: 23, Func. Count: 264, Neg. LLF: 134.02383041114922
Iteration: 24, Func. Count: 274, Neg. LLF: 134.02383036836096
Optimization terminated successfully (Exit mode 0)
Current function value: 134.02383041114922
Iterations: 24
Function evaluations: 274
Gradient evaluations: 24
Iteration: 1, Func. Count: 13, Neg. LLF: 138.14272486968306
Iteration: 2, Func. Count: 26, Neg. LLF: 138.17642599065982
Iteration: 3, Func. Count: 39, Neg. LLF: 155.6928233514713
Iteration: 4, Func. Count: 53, Neg. LLF: 141.76690339738178
Iteration: 5, Func. Count: 66, Neg. LLF: 137.65613721169788
Iteration: 6, Func. Count: 79, Neg. LLF: 136.07320126307596
Iteration: 7, Func. Count: 92, Neg. LLF: 139.14096083340266
Iteration: 8, Func. Count: 105, Neg. LLF: 136.864054522104
Iteration: 9, Func. Count: 118, Neg. LLF: 135.51803574030936
Iteration: 10, Func. Count: 131, Neg. LLF: 134.51155914470544
Iteration: 11, Func. Count: 143, Neg. LLF: 134.40058408689467
Iteration: 12, Func. Count: 155, Neg. LLF: 134.3451887514134
Iteration: 13, Func. Count: 167, Neg. LLF: 134.2973664766111
Iteration: 14, Func. Count: 179, Neg. LLF: 134.1764179157616
Iteration: 15, Func. Count: 191, Neg. LLF: 134.1108272658758
Iteration: 16, Func. Count: 203, Neg. LLF: 134.0574715177635
Iteration: 17, Func. Count: 215, Neg. LLF: 134.02943066807964
Iteration: 18, Func. Count: 227, Neg. LLF: 134.0243594111594
Iteration: 19, Func. Count: 239, Neg. LLF: 134.02388825469723
Iteration: 20, Func. Count: 251, Neg. LLF: 134.02386640151667
Iteration: 21, Func. Count: 263, Neg. LLF: 134.023835043152
Iteration: 22, Func. Count: 275, Neg. LLF: 134.0238307545452
Iteration: 23, Func. Count: 286, Neg. LLF: 134.0238308569985
Optimization terminated successfully (Exit mode 0)
Current function value: 134.0238307545452
Iterations: 23
Function evaluations: 286
Gradient evaluations: 23
Iteration: 1, Func. Count: 14, Neg. LLF: 137.5503964091311
Iteration: 2, Func. Count: 28, Neg. LLF: 137.93210692250167
Iteration: 3, Func. Count: 42, Neg. LLF: 156.64341450608447
Iteration: 4, Func. Count: 57, Neg. LLF: 142.7304028726991
Iteration: 5, Func. Count: 71, Neg. LLF: 136.67283495558124
Iteration: 6, Func. Count: 85, Neg. LLF: 137.17852816389325
Iteration: 7, Func. Count: 99, Neg. LLF: 136.68005167818112
Iteration: 8, Func. Count: 113, Neg. LLF: 134.9686487927855
Iteration: 9, Func. Count: 127, Neg. LLF: 135.5571115050004
Iteration: 10, Func. Count: 141, Neg. LLF: 134.41503150042382
Iteration: 11, Func. Count: 154, Neg. LLF: 134.3697968697094
Iteration: 12, Func. Count: 167, Neg. LLF: 134.3339003489545
Iteration: 13, Func. Count: 180, Neg. LLF: 134.25097988169145
Iteration: 14, Func. Count: 193, Neg. LLF: 134.0531942403197
Iteration: 15, Func. Count: 206, Neg. LLF: 134.03345032570257
Iteration: 16, Func. Count: 219, Neg. LLF: 134.02664138438317
Iteration: 17, Func. Count: 232, Neg. LLF: 134.02446746361937
Iteration: 18, Func. Count: 245, Neg. LLF: 134.02427701874498
Iteration: 19, Func. Count: 258, Neg. LLF: 134.02384072467243
Iteration: 20, Func. Count: 271, Neg. LLF: 134.02383210213534
Iteration: 21, Func. Count: 284, Neg. LLF: 134.02383091989336
Iteration: 22, Func. Count: 297, Neg. LLF: 134.02382868309155
Iteration: 23, Func. Count: 310, Neg. LLF: 134.023830338495
Iteration: 24, Func. Count: 323, Neg. LLF: 134.0238246417201
Optimization terminated successfully (Exit mode 0)
Current function value: 134.02383033295567
Iterations: 24
Function evaluations: 333
Gradient evaluations: 24
Iteration: 1, Func. Count: 15, Neg. LLF: 137.99077759488944
Iteration: 2, Func. Count: 30, Neg. LLF: 138.28566981740465
Iteration: 3, Func. Count: 45, Neg. LLF: 147.82812355431085
Iteration: 4, Func. Count: 61, Neg. LLF: 142.38983981560605
Iteration: 5, Func. Count: 76, Neg. LLF: 137.14416273872064
Iteration: 6, Func. Count: 91, Neg. LLF: 136.88546829388508
Iteration: 7, Func. Count: 106, Neg. LLF: 137.36710783376986
Iteration: 8, Func. Count: 121, Neg. LLF: 135.79027987583086
Iteration: 9, Func. Count: 136, Neg. LLF: 136.37988357519333
Iteration: 10, Func. Count: 151, Neg. LLF: 134.5343668945753
Iteration: 11, Func. Count: 165, Neg. LLF: 134.39895795299293
Iteration: 12, Func. Count: 179, Neg. LLF: 134.36455052626715
Iteration: 13, Func. Count: 193, Neg. LLF: 134.30936463933807
Iteration: 14, Func. Count: 207, Neg. LLF: 134.12770699870163
Iteration: 15, Func. Count: 221, Neg. LLF: 134.0462955529864
Iteration: 16, Func. Count: 235, Neg. LLF: 134.0328938894598
Iteration: 17, Func. Count: 249, Neg. LLF: 134.02395191907783
Iteration: 18, Func. Count: 263, Neg. LLF: 134.02389370711205
Iteration: 19, Func. Count: 277, Neg. LLF: 134.02386923652355
Iteration: 20, Func. Count: 291, Neg. LLF: 134.02383298943323
Iteration: 21, Func. Count: 305, Neg. LLF: 134.02383092161887
Iteration: 22, Func. Count: 318, Neg. LLF: 134.02383112482428
Optimization terminated successfully (Exit mode 0)
Current function value: 134.02383092161887
Iterations: 22
Function evaluations: 318
Gradient evaluations: 22
Iteration: 1, Func. Count: 16, Neg. LLF: 138.0607634353335
Iteration: 2, Func. Count: 32, Neg. LLF: 138.5579572479072
Iteration: 3, Func. Count: 48, Neg. LLF: 139.04937972857167
Iteration: 4, Func. Count: 65, Neg. LLF: 142.45338536322404
Iteration: 5, Func. Count: 81, Neg. LLF: 138.36207139981536
Iteration: 6, Func. Count: 97, Neg. LLF: 139.37939400202464
Iteration: 7, Func. Count: 113, Neg. LLF: 138.20137829527826
Iteration: 8, Func. Count: 129, Neg. LLF: 139.60703824611005
Iteration: 9, Func. Count: 145, Neg. LLF: 137.28110019188503
Iteration: 10, Func. Count: 161, Neg. LLF: 135.08796460302239
Iteration: 11, Func. Count: 177, Neg. LLF: 137.03623891020854
Iteration: 12, Func. Count: 193, Neg. LLF: 134.46991579654681
Iteration: 13, Func. Count: 208, Neg. LLF: 134.3959882353703
Iteration: 14, Func. Count: 223, Neg. LLF: 134.34448810509684
Iteration: 15, Func. Count: 238, Neg. LLF: 134.2958389971149
Iteration: 16, Func. Count: 253, Neg. LLF: 134.16978841267377
Iteration: 17, Func. Count: 268, Neg. LLF: 134.13473592008813
Iteration: 18, Func. Count: 283, Neg. LLF: 134.05576689408082
Iteration: 19, Func. Count: 298, Neg. LLF: 134.02877224795174
Iteration: 20, Func. Count: 313, Neg. LLF: 134.02404231968623
Iteration: 21, Func. Count: 328, Neg. LLF: 134.02395170016305
Iteration: 22, Func. Count: 343, Neg. LLF: 134.02391482839255
Iteration: 23, Func. Count: 358, Neg. LLF: 134.02384730523676
Iteration: 24, Func. Count: 373, Neg. LLF: 134.02382892375732
Iteration: 25, Func. Count: 388, Neg. LLF: 134.02382701386628
Iteration: 26, Func. Count: 403, Neg. LLF: 134.02383027133877
Iteration: 27, Func. Count: 417, Neg. LLF: 134.02383057808032
Optimization terminated successfully (Exit mode 0)
Current function value: 134.02383027133877
Iterations: 27
Function evaluations: 417
Gradient evaluations: 27
Iteration: 1, Func. Count: 5, Neg. LLF: 138.60456753378546
Iteration: 2, Func. Count: 10, Neg. LLF: 137.28785136605987
Iteration: 3, Func. Count: 15, Neg. LLF: 136.91666736773675
Iteration: 4, Func. Count: 19, Neg. LLF: 136.88854831141524
Iteration: 5, Func. Count: 23, Neg. LLF: 136.8869207554247
Iteration: 6, Func. Count: 27, Neg. LLF: 136.8868643068567
Iteration: 7, Func. Count: 31, Neg. LLF: 136.88684432670595
Iteration: 8, Func. Count: 35, Neg. LLF: 136.88684352377544
Optimization terminated successfully (Exit mode 0)
Current function value: 136.88684352377544
Iterations: 8
Function evaluations: 35
Gradient evaluations: 8
Iteration: 1, Func. Count: 5, Neg. LLF: 142.48427806045322
Iteration: 2, Func. Count: 10, Neg. LLF: 139.16275685811425
Iteration: 3, Func. Count: 15, Neg. LLF: 133.78072100629714
Iteration: 4, Func. Count: 19, Neg. LLF: 133.67201026995662
Iteration: 5, Func. Count: 23, Neg. LLF: 133.6379459116164
Iteration: 6, Func. Count: 27, Neg. LLF: 133.62538299827156
Iteration: 7, Func. Count: 31, Neg. LLF: 133.62414335893155
Iteration: 8, Func. Count: 35, Neg. LLF: 133.62405592046184
Iteration: 9, Func. Count: 39, Neg. LLF: 133.62405271104845
Iteration: 10, Func. Count: 42, Neg. LLF: 133.62405271104728
Optimization terminated successfully (Exit mode 0)
Current function value: 133.62405271104845
Iterations: 10
Function evaluations: 42
Gradient evaluations: 10
Iteration: 1, Func. Count: 6, Neg. LLF: 136.10972451294424
Iteration: 2, Func. Count: 12, Neg. LLF: 136.52347394273764
Iteration: 3, Func. Count: 19, Neg. LLF: 134.55428428871693
Iteration: 4, Func. Count: 24, Neg. LLF: 134.28456084932716
Iteration: 5, Func. Count: 29, Neg. LLF: 133.68805501940744
Iteration: 6, Func. Count: 34, Neg. LLF: 133.63783346395948
Iteration: 7, Func. Count: 39, Neg. LLF: 133.62490239224445
Iteration: 8, Func. Count: 44, Neg. LLF: 133.62412534747807
Iteration: 9, Func. Count: 49, Neg. LLF: 133.62405274124637
Iteration: 10, Func. Count: 53, Neg. LLF: 133.62405279372388
Optimization terminated successfully (Exit mode 0)
Current function value: 133.62405274124637
Iterations: 10
Function evaluations: 53
Gradient evaluations: 10
Iteration: 1, Func. Count: 7, Neg. LLF: 136.48612321989796
Iteration: 2, Func. Count: 14, Neg. LLF: 140.8751212414981
Iteration: 3, Func. Count: 21, Neg. LLF: 134.4837957857594
Iteration: 4, Func. Count: 27, Neg. LLF: 134.15511555647336
Iteration: 5, Func. Count: 33, Neg. LLF: 133.68607569534862
Iteration: 6, Func. Count: 39, Neg. LLF: 133.63618624596535
Iteration: 7, Func. Count: 45, Neg. LLF: 133.6248137261483
Iteration: 8, Func. Count: 51, Neg. LLF: 133.62413254938758
Iteration: 9, Func. Count: 57, Neg. LLF: 133.62405812393678
Iteration: 10, Func. Count: 63, Neg. LLF: 133.62405377623503
Iteration: 11, Func. Count: 69, Neg. LLF: 133.62405271228397
Iteration: 12, Func. Count: 74, Neg. LLF: 133.62405277487142
Optimization terminated successfully (Exit mode 0)
Current function value: 133.62405271228397
Iterations: 12
Function evaluations: 74
Gradient evaluations: 12
Iteration: 1, Func. Count: 8, Neg. LLF: 137.3401870575165
Iteration: 2, Func. Count: 16, Neg. LLF: 138.35874342615975
Iteration: 3, Func. Count: 24, Neg. LLF: 137.1187455181714
Iteration: 4, Func. Count: 32, Neg. LLF: 134.2195239850129
Iteration: 5, Func. Count: 39, Neg. LLF: 134.01750930988058
Iteration: 6, Func. Count: 46, Neg. LLF: 133.81272288415025
Iteration: 7, Func. Count: 53, Neg. LLF: 133.6414241454665
Iteration: 8, Func. Count: 60, Neg. LLF: 133.62545602515922
Iteration: 9, Func. Count: 67, Neg. LLF: 133.62134511095496
Iteration: 10, Func. Count: 74, Neg. LLF: 133.62117308202517
Iteration: 11, Func. Count: 81, Neg. LLF: 133.62115224971834
Iteration: 12, Func. Count: 88, Neg. LLF: 133.62115109620566
Iteration: 13, Func. Count: 94, Neg. LLF: 133.62115109622397
Optimization terminated successfully (Exit mode 0)
Current function value: 133.62115109620566
Iterations: 13
Function evaluations: 94
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 138.0984185781296
Iteration: 2, Func. Count: 18, Neg. LLF: 136.57709209590556
Iteration: 3, Func. Count: 27, Neg. LLF: 137.40846057448093
Iteration: 4, Func. Count: 36, Neg. LLF: 133.76788636323622
Iteration: 5, Func. Count: 44, Neg. LLF: 133.6960593922831
Iteration: 6, Func. Count: 52, Neg. LLF: 133.64007978025938
Iteration: 7, Func. Count: 60, Neg. LLF: 133.62140413123808
Iteration: 8, Func. Count: 68, Neg. LLF: 133.61823998370326
Iteration: 9, Func. Count: 76, Neg. LLF: 133.6058999996132
Iteration: 10, Func. Count: 84, Neg. LLF: 133.59998948558533
Iteration: 11, Func. Count: 92, Neg. LLF: 133.596547129371
Iteration: 12, Func. Count: 100, Neg. LLF: 133.59608323427062
Iteration: 13, Func. Count: 108, Neg. LLF: 133.59605545076684
Iteration: 14, Func. Count: 116, Neg. LLF: 133.5960538802161
Iteration: 15, Func. Count: 123, Neg. LLF: 133.59605388021177
Optimization terminated successfully (Exit mode 0)
Current function value: 133.5960538802161
Iterations: 15
Function evaluations: 123
Gradient evaluations: 15
Iteration: 1, Func. Count: 6, Neg. LLF: 141.3706698398373
Iteration: 2, Func. Count: 12, Neg. LLF: 143.55557195336118
Iteration: 3, Func. Count: 18, Neg. LLF: 134.07455255707634
Iteration: 4, Func. Count: 23, Neg. LLF: 133.86257686619476
Iteration: 5, Func. Count: 28, Neg. LLF: 133.99154332137817
Iteration: 6, Func. Count: 34, Neg. LLF: 133.66402432505245
Iteration: 7, Func. Count: 39, Neg. LLF: 133.6293565198439
Iteration: 8, Func. Count: 44, Neg. LLF: 133.62416542418921
Iteration: 9, Func. Count: 49, Neg. LLF: 133.6240535677023
Iteration: 10, Func. Count: 54, Neg. LLF: 133.62405270768528
Optimization terminated successfully (Exit mode 0)
Current function value: 133.62405270768528
Iterations: 10
Function evaluations: 54
Gradient evaluations: 10
Iteration: 1, Func. Count: 7, Neg. LLF: 138.65487297786555
Iteration: 2, Func. Count: 15, Neg. LLF: 136.1386636430173
Iteration: 3, Func. Count: 22, Neg. LLF: 134.6825698459815
Iteration: 4, Func. Count: 28, Neg. LLF: 134.58578411999767
Iteration: 5, Func. Count: 34, Neg. LLF: 134.4475968251262
Iteration: 6, Func. Count: 40, Neg. LLF: 134.15099670899016
Iteration: 7, Func. Count: 46, Neg. LLF: 133.75696784462406
Iteration: 8, Func. Count: 52, Neg. LLF: 133.68836318835645
Iteration: 9, Func. Count: 58, Neg. LLF: 133.6277451918092
Iteration: 10, Func. Count: 64, Neg. LLF: 133.62458413198735
Iteration: 11, Func. Count: 70, Neg. LLF: 133.6241877672684
Iteration: 12, Func. Count: 76, Neg. LLF: 133.62407361919966
Iteration: 13, Func. Count: 82, Neg. LLF: 133.624053699221
Iteration: 14, Func. Count: 88, Neg. LLF: 133.62405272464193
Optimization terminated successfully (Exit mode 0)
Current function value: 133.62405272464193
Iterations: 14
Function evaluations: 88
Gradient evaluations: 14
Iteration: 1, Func. Count: 8, Neg. LLF: 138.7331063253027
Iteration: 2, Func. Count: 17, Neg. LLF: 136.13987480481478
Iteration: 3, Func. Count: 25, Neg. LLF: 135.2085385152378
Iteration: 4, Func. Count: 33, Neg. LLF: 134.81813849317155
Iteration: 5, Func. Count: 41, Neg. LLF: 134.38354691272272
Iteration: 6, Func. Count: 48, Neg. LLF: 134.23958807733487
Iteration: 7, Func. Count: 55, Neg. LLF: 133.6615701945031
Iteration: 8, Func. Count: 62, Neg. LLF: 133.63818336570128
Iteration: 9, Func. Count: 69, Neg. LLF: 133.6246284151436
Iteration: 10, Func. Count: 76, Neg. LLF: 133.62411775658808
Iteration: 11, Func. Count: 83, Neg. LLF: 133.62406609008846
Iteration: 12, Func. Count: 90, Neg. LLF: 133.62405619758795
Iteration: 13, Func. Count: 97, Neg. LLF: 133.6240529083766
Iteration: 14, Func. Count: 103, Neg. LLF: 133.62405297097928
Optimization terminated successfully (Exit mode 0)
Current function value: 133.6240529083766
Iterations: 14
Function evaluations: 103
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 138.81983777049808
Iteration: 2, Func. Count: 19, Neg. LLF: 136.09408012851574
Iteration: 3, Func. Count: 28, Neg. LLF: 136.01931651215608
Iteration: 4, Func. Count: 37, Neg. LLF: 134.59808551075832
Iteration: 5, Func. Count: 46, Neg. LLF: 134.04516190424792
Iteration: 6, Func. Count: 54, Neg. LLF: 133.86988459630618
Iteration: 7, Func. Count: 62, Neg. LLF: 133.6696411485043
Iteration: 8, Func. Count: 70, Neg. LLF: 133.6273405073231
Iteration: 9, Func. Count: 78, Neg. LLF: 133.6217460515886
Iteration: 10, Func. Count: 86, Neg. LLF: 133.62121722646862
Iteration: 11, Func. Count: 94, Neg. LLF: 133.62115980423246
Iteration: 12, Func. Count: 102, Neg. LLF: 133.6211515947003
Iteration: 13, Func. Count: 110, Neg. LLF: 133.6211510474194
Optimization terminated successfully (Exit mode 0)
Current function value: 133.6211510474194
Iterations: 13
Function evaluations: 110
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 138.89228929345225
Iteration: 2, Func. Count: 21, Neg. LLF: 136.08284799339327
Iteration: 3, Func. Count: 31, Neg. LLF: 136.59308004901567
Iteration: 4, Func. Count: 41, Neg. LLF: 133.8208777259854
Iteration: 5, Func. Count: 50, Neg. LLF: 133.75920463421716
Iteration: 6, Func. Count: 59, Neg. LLF: 133.6454525243439
Iteration: 7, Func. Count: 68, Neg. LLF: 133.62025375433248
Iteration: 8, Func. Count: 77, Neg. LLF: 133.61290297554726
Iteration: 9, Func. Count: 86, Neg. LLF: 133.60980896019623
Iteration: 10, Func. Count: 95, Neg. LLF: 133.6064937915637
Iteration: 11, Func. Count: 104, Neg. LLF: 133.60263260124353
Iteration: 12, Func. Count: 113, Neg. LLF: 133.59855076030067
Iteration: 13, Func. Count: 122, Neg. LLF: 133.59643740179675
Iteration: 14, Func. Count: 131, Neg. LLF: 133.59608256124886
Iteration: 15, Func. Count: 140, Neg. LLF: 133.5960555035344
Iteration: 16, Func. Count: 149, Neg. LLF: 133.5960538503718
Iteration: 17, Func. Count: 157, Neg. LLF: 133.59605385036318
Optimization terminated successfully (Exit mode 0)
Current function value: 133.5960538503718
Iterations: 17
Function evaluations: 157
Gradient evaluations: 17
Iteration: 1, Func. Count: 7, Neg. LLF: 138.74629632538688
Iteration: 2, Func. Count: 14, Neg. LLF: 139.64967342051125
Iteration: 3, Func. Count: 21, Neg. LLF: 134.22978001602803
Iteration: 4, Func. Count: 27, Neg. LLF: 134.0871977666462
Iteration: 5, Func. Count: 33, Neg. LLF: 133.66286192642102
Iteration: 6, Func. Count: 39, Neg. LLF: 133.63606801777587
Iteration: 7, Func. Count: 45, Neg. LLF: 133.62435206137062
Iteration: 8, Func. Count: 51, Neg. LLF: 133.62405387852078
Iteration: 9, Func. Count: 57, Neg. LLF: 133.62405270706944
Iteration: 10, Func. Count: 62, Neg. LLF: 133.62405286120753
Optimization terminated successfully (Exit mode 0)
Current function value: 133.62405270706944
Iterations: 10
Function evaluations: 62
Gradient evaluations: 10
Iteration: 1, Func. Count: 8, Neg. LLF: 138.76104492919936
Iteration: 2, Func. Count: 17, Neg. LLF: 136.7914467647629
Iteration: 3, Func. Count: 25, Neg. LLF: 134.5954472098912
Iteration: 4, Func. Count: 32, Neg. LLF: 136.29638538776177
Iteration: 5, Func. Count: 40, Neg. LLF: 134.33078375969805
Iteration: 6, Func. Count: 47, Neg. LLF: 134.06759791567978
Iteration: 7, Func. Count: 54, Neg. LLF: 133.6806651180997
Iteration: 8, Func. Count: 61, Neg. LLF: 133.64650470593133
Iteration: 9, Func. Count: 68, Neg. LLF: 133.62844638512067
Iteration: 10, Func. Count: 75, Neg. LLF: 133.62498232169946
Iteration: 11, Func. Count: 82, Neg. LLF: 133.62425805864783
Iteration: 12, Func. Count: 89, Neg. LLF: 133.62407812820402
Iteration: 13, Func. Count: 96, Neg. LLF: 133.6240535787831
Iteration: 14, Func. Count: 103, Neg. LLF: 133.62405272095089
Optimization terminated successfully (Exit mode 0)
Current function value: 133.62405272095089
Iterations: 14
Function evaluations: 103
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 22616235.128623705
Iteration: 2, Func. Count: 19, Neg. LLF: 134.76564082517876
Iteration: 3, Func. Count: 27, Neg. LLF: 134.35568790328807
Iteration: 4, Func. Count: 35, Neg. LLF: 134.58320405243592
Iteration: 5, Func. Count: 44, Neg. LLF: 134.29066803278687
Iteration: 6, Func. Count: 53, Neg. LLF: 134.27116496962554
Iteration: 7, Func. Count: 61, Neg. LLF: 134.2690927716578
Iteration: 8, Func. Count: 69, Neg. LLF: 134.2682704363922
Iteration: 9, Func. Count: 77, Neg. LLF: 134.26606634346658
Iteration: 10, Func. Count: 85, Neg. LLF: 134.26323431876304
Iteration: 11, Func. Count: 93, Neg. LLF: 134.24345654073292
Iteration: 12, Func. Count: 101, Neg. LLF: 134.2413629253093
Iteration: 13, Func. Count: 109, Neg. LLF: 22501799.804556973
Iteration: 14, Func. Count: 121, Neg. LLF: 134.24136486962126
Iteration: 15, Func. Count: 130, Neg. LLF: 134.24121310224245
Iteration: 16, Func. Count: 137, Neg. LLF: 134.24121310322326
Optimization terminated successfully (Exit mode 0)
Current function value: 134.24121310224245
Iterations: 17
Function evaluations: 137
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 22612010.676086713
Iteration: 2, Func. Count: 21, Neg. LLF: 134.73489981100533
Iteration: 3, Func. Count: 30, Neg. LLF: 134.33720745423545
Iteration: 4, Func. Count: 39, Neg. LLF: 134.34183134438138
Iteration: 5, Func. Count: 49, Neg. LLF: 134.29437648808275
Iteration: 6, Func. Count: 58, Neg. LLF: 134.2901461609713
Iteration: 7, Func. Count: 67, Neg. LLF: 134.2869797107778
Iteration: 8, Func. Count: 76, Neg. LLF: 134.28499634977695
Iteration: 9, Func. Count: 85, Neg. LLF: 134.28588434210604
Iteration: 10, Func. Count: 95, Neg. LLF: 134.28499438365213
Iteration: 11, Func. Count: 105, Neg. LLF: 134.27667879770078
Iteration: 12, Func. Count: 114, Neg. LLF: 134.27245621660862
Iteration: 13, Func. Count: 123, Neg. LLF: 134.2687634786879
Iteration: 14, Func. Count: 132, Neg. LLF: 134.26659564152826
Iteration: 15, Func. Count: 141, Neg. LLF: 134.2645012786662
Iteration: 16, Func. Count: 150, Neg. LLF: 134.25736058021351
Iteration: 17, Func. Count: 159, Neg. LLF: 134.2413767101544
Iteration: 18, Func. Count: 168, Neg. LLF: 135.7565313687931
Iteration: 19, Func. Count: 179, Neg. LLF: 22485799.87526827
Iteration: 20, Func. Count: 192, Neg. LLF: 134.2432069697605
Iteration: 21, Func. Count: 202, Neg. LLF: 134.24121311080853
Iteration: 22, Func. Count: 210, Neg. LLF: 134.24121311419808
Optimization terminated successfully (Exit mode 0)
Current function value: 134.24121311080853
Iterations: 23
Function evaluations: 210
Gradient evaluations: 22
Iteration: 1, Func. Count: 11, Neg. LLF: 22601660.286060218
Iteration: 2, Func. Count: 23, Neg. LLF: 134.7170587188525
Iteration: 3, Func. Count: 33, Neg. LLF: 134.32437832831147
Iteration: 4, Func. Count: 43, Neg. LLF: 134.33190102956638
Iteration: 5, Func. Count: 54, Neg. LLF: 134.34075411425374
Iteration: 6, Func. Count: 65, Neg. LLF: 134.34190766340603
Iteration: 7, Func. Count: 76, Neg. LLF: 134.31180081516987
Iteration: 8, Func. Count: 86, Neg. LLF: 134.31172937938433
Iteration: 9, Func. Count: 96, Neg. LLF: 134.31172624135033
Iteration: 10, Func. Count: 105, Neg. LLF: 134.31172624110698
Optimization terminated successfully (Exit mode 0)
Current function value: 134.31172624135033
Iterations: 10
Function evaluations: 105
Gradient evaluations: 10
Iteration: 1, Func. Count: 8, Neg. LLF: 139.42729339509086
Iteration: 2, Func. Count: 16, Neg. LLF: 139.53091657293984
Iteration: 3, Func. Count: 25, Neg. LLF: 139.1718085829913
Iteration: 4, Func. Count: 33, Neg. LLF: 134.26175531272324
Iteration: 5, Func. Count: 40, Neg. LLF: 133.96704865134708
Iteration: 6, Func. Count: 47, Neg. LLF: 133.79084815145177
Iteration: 7, Func. Count: 54, Neg. LLF: 134.00865202660574
Iteration: 8, Func. Count: 62, Neg. LLF: 133.6376988630403
Iteration: 9, Func. Count: 69, Neg. LLF: 133.6193898010286
Iteration: 10, Func. Count: 76, Neg. LLF: 133.61677344666327
Iteration: 11, Func. Count: 83, Neg. LLF: 133.61630344386487
Iteration: 12, Func. Count: 90, Neg. LLF: 133.61630124398914
Iteration: 13, Func. Count: 96, Neg. LLF: 133.6163012439614
Optimization terminated successfully (Exit mode 0)
Current function value: 133.61630124398914
Iterations: 13
Function evaluations: 96
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 138.75341436368313
Iteration: 2, Func. Count: 19, Neg. LLF: 136.78836328216312
Iteration: 3, Func. Count: 28, Neg. LLF: 137.00455320083498
Iteration: 4, Func. Count: 38, Neg. LLF: 134.76192647873006
Iteration: 5, Func. Count: 46, Neg. LLF: 134.4026884840191
Iteration: 6, Func. Count: 54, Neg. LLF: 134.24122024086995
Iteration: 7, Func. Count: 62, Neg. LLF: 133.75076012712825
Iteration: 8, Func. Count: 70, Neg. LLF: 133.66883296025162
Iteration: 9, Func. Count: 78, Neg. LLF: 133.61876402007454
Iteration: 10, Func. Count: 86, Neg. LLF: 133.61711113370373
Iteration: 11, Func. Count: 94, Neg. LLF: 133.6167467435496
Iteration: 12, Func. Count: 102, Neg. LLF: 133.6164045965762
Iteration: 13, Func. Count: 110, Neg. LLF: 133.61631134314317
Iteration: 14, Func. Count: 118, Neg. LLF: 133.61630152715273
Iteration: 15, Func. Count: 125, Neg. LLF: 133.61630157946286
Optimization terminated successfully (Exit mode 0)
Current function value: 133.61630152715273
Iterations: 15
Function evaluations: 125
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 22615583.31721321
Iteration: 2, Func. Count: 21, Neg. LLF: 134.76593659125464
Iteration: 3, Func. Count: 30, Neg. LLF: 134.3530042585866
Iteration: 4, Func. Count: 39, Neg. LLF: 134.56244303750987
Iteration: 5, Func. Count: 49, Neg. LLF: 134.29041934115355
Iteration: 6, Func. Count: 59, Neg. LLF: 134.27190175276473
Iteration: 7, Func. Count: 68, Neg. LLF: 134.26902319641312
Iteration: 8, Func. Count: 77, Neg. LLF: 134.26831441930045
Iteration: 9, Func. Count: 86, Neg. LLF: 134.26579317783361
Iteration: 10, Func. Count: 95, Neg. LLF: 134.2628911086626
Iteration: 11, Func. Count: 104, Neg. LLF: 134.24139124131298
Iteration: 12, Func. Count: 113, Neg. LLF: 134.25197388581907
Iteration: 13, Func. Count: 123, Neg. LLF: 151.54930697245106
Optimization terminated successfully (Exit mode 0)
Current function value: 134.24121447879094
Iterations: 14
Function evaluations: 128
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 22613344.485535108
Iteration: 2, Func. Count: 23, Neg. LLF: 134.74010087245892
Iteration: 3, Func. Count: 33, Neg. LLF: 134.33297330196135
Iteration: 4, Func. Count: 43, Neg. LLF: 134.34446472900703
Iteration: 5, Func. Count: 54, Neg. LLF: 134.2933781722226
Iteration: 6, Func. Count: 64, Neg. LLF: 134.28980652887262
Iteration: 7, Func. Count: 74, Neg. LLF: 134.28617358206486
Iteration: 8, Func. Count: 84, Neg. LLF: 134.28344005159408
Iteration: 9, Func. Count: 94, Neg. LLF: 134.27963361576155
Iteration: 10, Func. Count: 104, Neg. LLF: 134.27885310815662
Iteration: 11, Func. Count: 115, Neg. LLF: 134.27236774996675
Iteration: 12, Func. Count: 125, Neg. LLF: 134.2691300324704
Iteration: 13, Func. Count: 135, Neg. LLF: 134.26729230805168
Iteration: 14, Func. Count: 145, Neg. LLF: 134.26532157091532
Iteration: 15, Func. Count: 155, Neg. LLF: 134.2606219887529
Iteration: 16, Func. Count: 165, Neg. LLF: 134.2415279858311
Iteration: 17, Func. Count: 175, Neg. LLF: 136.1653943745274
Iteration: 18, Func. Count: 187, Neg. LLF: 180.03651638294343
Optimization terminated successfully (Exit mode 0)
Current function value: 134.2412446294761
Iterations: 19
Function evaluations: 192
Gradient evaluations: 18
Iteration: 1, Func. Count: 12, Neg. LLF: 22602223.102338545
Iteration: 2, Func. Count: 25, Neg. LLF: 134.72147802794447
Iteration: 3, Func. Count: 36, Neg. LLF: 134.3446828112826
Iteration: 4, Func. Count: 47, Neg. LLF: 134.36984253118644
Iteration: 5, Func. Count: 59, Neg. LLF: 134.36235656094112
Iteration: 6, Func. Count: 71, Neg. LLF: 134.52893772522862
Iteration: 7, Func. Count: 83, Neg. LLF: 134.3119577822566
Iteration: 8, Func. Count: 94, Neg. LLF: 134.3117873144865
Iteration: 9, Func. Count: 105, Neg. LLF: 134.31172908726117
Iteration: 10, Func. Count: 116, Neg. LLF: 134.3117261118325
Iteration: 11, Func. Count: 126, Neg. LLF: 134.3117261117843
Optimization terminated successfully (Exit mode 0)
Current function value: 134.3117261118325
Iterations: 11
Function evaluations: 126
Gradient evaluations: 11
Iteration: 1, Func. Count: 5, Neg. LLF: 134.2581044952468
Iteration: 2, Func. Count: 10, Neg. LLF: 152.76120836185203
Iteration: 3, Func. Count: 15, Neg. LLF: 129.76727754255987
Iteration: 4, Func. Count: 19, Neg. LLF: 129.71054567388143
Iteration: 5, Func. Count: 23, Neg. LLF: 129.7055951955246
Iteration: 6, Func. Count: 27, Neg. LLF: 129.70547985026354
Iteration: 7, Func. Count: 30, Neg. LLF: 129.70547985030566
Optimization terminated successfully (Exit mode 0)
Current function value: 129.70547985026354
Iterations: 7
Function evaluations: 30
Gradient evaluations: 7
Iteration: 1, Func. Count: 6, Neg. LLF: 135.76615767997842
Iteration: 2, Func. Count: 12, Neg. LLF: 145.7615347893663
Iteration: 3, Func. Count: 18, Neg. LLF: 132.63583903492597
Iteration: 4, Func. Count: 24, Neg. LLF: 129.42500306783487
Iteration: 5, Func. Count: 29, Neg. LLF: 129.40841726620712
Iteration: 6, Func. Count: 34, Neg. LLF: 129.4049798041834
Iteration: 7, Func. Count: 39, Neg. LLF: 129.4041896518485
Iteration: 8, Func. Count: 44, Neg. LLF: 129.4041735449939
Iteration: 9, Func. Count: 48, Neg. LLF: 129.4041735449431
Optimization terminated successfully (Exit mode 0)
Current function value: 129.4041735449939
Iterations: 9
Function evaluations: 48
Gradient evaluations: 9
Iteration: 1, Func. Count: 7, Neg. LLF: 135.2807593845503
Iteration: 2, Func. Count: 14, Neg. LLF: 144.33573531806024
Iteration: 3, Func. Count: 21, Neg. LLF: 135.28784434417747
Iteration: 4, Func. Count: 28, Neg. LLF: 129.33007497959767
Iteration: 5, Func. Count: 34, Neg. LLF: 129.8615344357377
Iteration: 6, Func. Count: 41, Neg. LLF: 129.29679344426197
Iteration: 7, Func. Count: 47, Neg. LLF: 129.29392001190993
Iteration: 8, Func. Count: 53, Neg. LLF: 129.28721129298063
Iteration: 9, Func. Count: 59, Neg. LLF: 129.28651257010713
Iteration: 10, Func. Count: 65, Neg. LLF: 129.28648283497196
Iteration: 11, Func. Count: 71, Neg. LLF: 129.2864811205001
Iteration: 12, Func. Count: 76, Neg. LLF: 129.2864811204378
Optimization terminated successfully (Exit mode 0)
Current function value: 129.2864811205001
Iterations: 12
Function evaluations: 76
Gradient evaluations: 12
Iteration: 1, Func. Count: 8, Neg. LLF: 134.87813397319897
Iteration: 2, Func. Count: 16, Neg. LLF: 146.55089713396194
Iteration: 3, Func. Count: 24, Neg. LLF: 135.05280395987862
Iteration: 4, Func. Count: 32, Neg. LLF: 129.63705111586748
Iteration: 5, Func. Count: 40, Neg. LLF: 129.54684229965375
Iteration: 6, Func. Count: 48, Neg. LLF: 129.39086215941134
Iteration: 7, Func. Count: 56, Neg. LLF: 129.25843782142744
Iteration: 8, Func. Count: 63, Neg. LLF: 129.286886962368
Iteration: 9, Func. Count: 71, Neg. LLF: 129.25712627702293
Iteration: 10, Func. Count: 78, Neg. LLF: 129.25695980127327
Iteration: 11, Func. Count: 85, Neg. LLF: 129.2569087043647
Iteration: 12, Func. Count: 92, Neg. LLF: 129.25690592506453
Iteration: 13, Func. Count: 98, Neg. LLF: 129.25690592503815
Optimization terminated successfully (Exit mode 0)
Current function value: 129.25690592506453
Iterations: 13
Function evaluations: 98
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 131.71073343106465
Iteration: 2, Func. Count: 18, Neg. LLF: 129.9222302166716
Iteration: 3, Func. Count: 26, Neg. LLF: 1790.3843517817816
Iteration: 4, Func. Count: 36, Neg. LLF: 132.77813039059217
Iteration: 5, Func. Count: 45, Neg. LLF: 145.3646960974941
Iteration: 6, Func. Count: 55, Neg. LLF: 130.63201274645502
Iteration: 7, Func. Count: 64, Neg. LLF: 129.33976667597588
Iteration: 8, Func. Count: 73, Neg. LLF: 129.4085702298907
Iteration: 9, Func. Count: 82, Neg. LLF: 129.26168485472587
Iteration: 10, Func. Count: 90, Neg. LLF: 129.25911515354153
Iteration: 11, Func. Count: 98, Neg. LLF: 129.25756057159478
Iteration: 12, Func. Count: 106, Neg. LLF: 129.25713828123708
Iteration: 13, Func. Count: 114, Neg. LLF: 129.25694427706844
Iteration: 14, Func. Count: 122, Neg. LLF: 129.25690946259465
Iteration: 15, Func. Count: 130, Neg. LLF: 129.25690597250977
Iteration: 16, Func. Count: 137, Neg. LLF: 129.2569060311343
Optimization terminated successfully (Exit mode 0)
Current function value: 129.25690597250977
Iterations: 16
Function evaluations: 137
Gradient evaluations: 16
Iteration: 1, Func. Count: 6, Neg. LLF: 134.85887748737085
Iteration: 2, Func. Count: 12, Neg. LLF: 142.61405704370443
Iteration: 3, Func. Count: 18, Neg. LLF: 133.45411284594874
Iteration: 4, Func. Count: 24, Neg. LLF: 129.73563737509565
Iteration: 5, Func. Count: 29, Neg. LLF: 129.70501685576954
Iteration: 6, Func. Count: 34, Neg. LLF: 129.70409443889693
Iteration: 7, Func. Count: 39, Neg. LLF: 129.70403147033505
Iteration: 8, Func. Count: 44, Neg. LLF: 129.70401271242045
Iteration: 9, Func. Count: 48, Neg. LLF: 129.70401271242486
Optimization terminated successfully (Exit mode 0)
Current function value: 129.70401271242045
Iterations: 9
Function evaluations: 48
Gradient evaluations: 9
Iteration: 1, Func. Count: 7, Neg. LLF: 157.45042229120804
Iteration: 2, Func. Count: 14, Neg. LLF: 135.89770703571745
Iteration: 3, Func. Count: 21, Neg. LLF: 135.94143868453557
Iteration: 4, Func. Count: 28, Neg. LLF: 135.9516997346613
Iteration: 5, Func. Count: 35, Neg. LLF: 129.4765020652217
Iteration: 6, Func. Count: 42, Neg. LLF: 129.39129716874004
Iteration: 7, Func. Count: 49, Neg. LLF: 129.18010603004205
Iteration: 8, Func. Count: 55, Neg. LLF: 129.1576942170425
Iteration: 9, Func. Count: 61, Neg. LLF: 129.1473319126029
Iteration: 10, Func. Count: 67, Neg. LLF: 129.1444556287442
Iteration: 11, Func. Count: 73, Neg. LLF: 129.1443663071067
Iteration: 12, Func. Count: 79, Neg. LLF: 129.1443582825827
Iteration: 13, Func. Count: 84, Neg. LLF: 129.1443582825003
Optimization terminated successfully (Exit mode 0)
Current function value: 129.1443582825827
Iterations: 13
Function evaluations: 84
Gradient evaluations: 13
Iteration: 1, Func. Count: 8, Neg. LLF: 142.17425327148356
Iteration: 2, Func. Count: 16, Neg. LLF: 131.93783687239943
Iteration: 3, Func. Count: 24, Neg. LLF: 130.36640175169106
Iteration: 4, Func. Count: 32, Neg. LLF: 160.41518811802501
Iteration: 5, Func. Count: 40, Neg. LLF: 134.4329735062837
Iteration: 6, Func. Count: 48, Neg. LLF: 157.13819673144639
Iteration: 7, Func. Count: 56, Neg. LLF: 132.74849045552625
Iteration: 8, Func. Count: 64, Neg. LLF: 129.26504382577042
Iteration: 9, Func. Count: 72, Neg. LLF: 129.12860146177587
Iteration: 10, Func. Count: 79, Neg. LLF: 129.1090723604539
Iteration: 11, Func. Count: 86, Neg. LLF: 129.1030006555704
Iteration: 12, Func. Count: 93, Neg. LLF: 129.09948411325533
Iteration: 13, Func. Count: 100, Neg. LLF: 129.09787240604945
Iteration: 14, Func. Count: 107, Neg. LLF: 129.09722561735143
Iteration: 15, Func. Count: 114, Neg. LLF: 129.0971444958541
Iteration: 16, Func. Count: 121, Neg. LLF: 129.09713673227353
Iteration: 17, Func. Count: 127, Neg. LLF: 129.0971367323095
Optimization terminated successfully (Exit mode 0)
Current function value: 129.09713673227353
Iterations: 17
Function evaluations: 127
Gradient evaluations: 17
Iteration: 1, Func. Count: 9, Neg. LLF: 140.76028760208735
Iteration: 2, Func. Count: 18, Neg. LLF: 132.51044165530072
Iteration: 3, Func. Count: 27, Neg. LLF: 132.5969189698762
Iteration: 4, Func. Count: 36, Neg. LLF: 137.01238150411203
Iteration: 5, Func. Count: 45, Neg. LLF: 159.0684207714184
Iteration: 6, Func. Count: 54, Neg. LLF: 163.2392660368063
Iteration: 7, Func. Count: 63, Neg. LLF: 140.16127619369956
Iteration: 8, Func. Count: 72, Neg. LLF: 130.91347950120579
Iteration: 9, Func. Count: 81, Neg. LLF: 145.68997482329934
Iteration: 10, Func. Count: 90, Neg. LLF: 129.08975433115413
Iteration: 11, Func. Count: 98, Neg. LLF: 129.08220414857698
Iteration: 12, Func. Count: 106, Neg. LLF: 129.07893450486333
Iteration: 13, Func. Count: 114, Neg. LLF: 129.07847869430248
Iteration: 14, Func. Count: 122, Neg. LLF: 129.07845804715103
Iteration: 15, Func. Count: 130, Neg. LLF: 129.07845568695947
Iteration: 16, Func. Count: 137, Neg. LLF: 129.07845568692252
Optimization terminated successfully (Exit mode 0)
Current function value: 129.07845568695947
Iterations: 16
Function evaluations: 137
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 134.16775785529086
Iteration: 2, Func. Count: 20, Neg. LLF: 133.73400764397064
Iteration: 3, Func. Count: 30, Neg. LLF: 143.1616025459834
Iteration: 4, Func. Count: 40, Neg. LLF: 131.40177664371475
Iteration: 5, Func. Count: 50, Neg. LLF: 2025.777676578364
Iteration: 6, Func. Count: 60, Neg. LLF: 229.27118334891057
Iteration: 7, Func. Count: 70, Neg. LLF: 139.4124189428216
Iteration: 8, Func. Count: 80, Neg. LLF: 130.91985531163522
Iteration: 9, Func. Count: 90, Neg. LLF: 129.13257371456456
Iteration: 10, Func. Count: 99, Neg. LLF: 129.08683117280253
Iteration: 11, Func. Count: 108, Neg. LLF: 129.0816288029239
Iteration: 12, Func. Count: 117, Neg. LLF: 129.0793068270433
Iteration: 13, Func. Count: 126, Neg. LLF: 129.0787249440687
Iteration: 14, Func. Count: 135, Neg. LLF: 129.07846834054874
Iteration: 15, Func. Count: 144, Neg. LLF: 129.0784574140529
Iteration: 16, Func. Count: 153, Neg. LLF: 129.0784556166299
Iteration: 17, Func. Count: 161, Neg. LLF: 129.0784556866744
Optimization terminated successfully (Exit mode 0)
Current function value: 129.0784556166299
Iterations: 17
Function evaluations: 161
Gradient evaluations: 17
Iteration: 1, Func. Count: 7, Neg. LLF: 135.66408895225283
Iteration: 2, Func. Count: 14, Neg. LLF: 143.85156973128912
Iteration: 3, Func. Count: 21, Neg. LLF: 130.46839226014356
Iteration: 4, Func. Count: 28, Neg. LLF: 129.72438096218684
Iteration: 5, Func. Count: 34, Neg. LLF: 129.7047662397377
Iteration: 6, Func. Count: 40, Neg. LLF: 129.70407686260594
Iteration: 7, Func. Count: 46, Neg. LLF: 129.7040250501872
Iteration: 8, Func. Count: 52, Neg. LLF: 129.7040127175849
Iteration: 9, Func. Count: 57, Neg. LLF: 129.70401277918222
Optimization terminated successfully (Exit mode 0)
Current function value: 129.7040127175849
Iterations: 9
Function evaluations: 57
Gradient evaluations: 9
Iteration: 1, Func. Count: 8, Neg. LLF: 159.1680455015743
Iteration: 2, Func. Count: 16, Neg. LLF: 133.15900160556035
Iteration: 3, Func. Count: 24, Neg. LLF: 138.2177769790479
Iteration: 4, Func. Count: 32, Neg. LLF: 139.76191974555772
Iteration: 5, Func. Count: 40, Neg. LLF: 129.34875138245675
Iteration: 6, Func. Count: 47, Neg. LLF: 129.20962546281166
Iteration: 7, Func. Count: 54, Neg. LLF: 129.16641799388367
Iteration: 8, Func. Count: 61, Neg. LLF: 129.15164919721195
Iteration: 9, Func. Count: 68, Neg. LLF: 129.1453739883249
Iteration: 10, Func. Count: 75, Neg. LLF: 129.14450849456392
Iteration: 11, Func. Count: 82, Neg. LLF: 129.1443648139016
Iteration: 12, Func. Count: 89, Neg. LLF: 129.14435830442648
Iteration: 13, Func. Count: 95, Neg. LLF: 129.14435830451066
Optimization terminated successfully (Exit mode 0)
Current function value: 129.14435830442648
Iterations: 13
Function evaluations: 95
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 158.44656080205962
Iteration: 2, Func. Count: 18, Neg. LLF: 133.2688960122671
Iteration: 3, Func. Count: 27, Neg. LLF: 139.6337389312569
Iteration: 4, Func. Count: 36, Neg. LLF: 143.15334151384428
Iteration: 5, Func. Count: 45, Neg. LLF: 132.81483838228468
Iteration: 6, Func. Count: 54, Neg. LLF: 129.6963631377017
Iteration: 7, Func. Count: 63, Neg. LLF: 129.1676156485901
Iteration: 8, Func. Count: 72, Neg. LLF: 129.09764199603413
Iteration: 9, Func. Count: 80, Neg. LLF: 129.097365732579
Iteration: 10, Func. Count: 88, Neg. LLF: 129.0972136021519
Iteration: 11, Func. Count: 96, Neg. LLF: 129.09714048107344
Iteration: 12, Func. Count: 104, Neg. LLF: 129.0971364057502
Iteration: 13, Func. Count: 111, Neg. LLF: 129.09713640573045
Optimization terminated successfully (Exit mode 0)
Current function value: 129.0971364057502
Iterations: 13
Function evaluations: 111
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 157.93292337486488
Iteration: 2, Func. Count: 20, Neg. LLF: 133.98645692724077
Iteration: 3, Func. Count: 30, Neg. LLF: 159.44105192266684
Iteration: 4, Func. Count: 40, Neg. LLF: 149.2993279397838
Iteration: 5, Func. Count: 50, Neg. LLF: 130.67100561826786
Iteration: 6, Func. Count: 60, Neg. LLF: 129.3907413369705
Iteration: 7, Func. Count: 70, Neg. LLF: 129.21147643320833
Iteration: 8, Func. Count: 80, Neg. LLF: 129.64671881241782
Iteration: 9, Func. Count: 90, Neg. LLF: 129.08140456717348
Iteration: 10, Func. Count: 99, Neg. LLF: 129.08027102837977
Iteration: 11, Func. Count: 108, Neg. LLF: 129.0786569083278
Iteration: 12, Func. Count: 117, Neg. LLF: 129.07847292900433
Iteration: 13, Func. Count: 126, Neg. LLF: 129.07845565746615
Iteration: 14, Func. Count: 134, Neg. LLF: 129.07845565750358
Optimization terminated successfully (Exit mode 0)
Current function value: 129.07845565746615
Iterations: 14
Function evaluations: 134
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 133.38670754248724
Iteration: 2, Func. Count: 22, Neg. LLF: 136.64692482505004
Iteration: 3, Func. Count: 33, Neg. LLF: 131.5637024837222
Iteration: 4, Func. Count: 44, Neg. LLF: 131.89551250413547
Iteration: 5, Func. Count: 55, Neg. LLF: 130.4130883798693
Iteration: 6, Func. Count: 66, Neg. LLF: 181.60186021303477
Iteration: 7, Func. Count: 77, Neg. LLF: 130.43657268086622
Iteration: 8, Func. Count: 88, Neg. LLF: 134.62486373666837
Iteration: 9, Func. Count: 99, Neg. LLF: 133.46930241177972
Iteration: 10, Func. Count: 110, Neg. LLF: 129.54324996663976
Iteration: 11, Func. Count: 121, Neg. LLF: 129.08567053438628
Iteration: 12, Func. Count: 131, Neg. LLF: 129.08149104605565
Iteration: 13, Func. Count: 141, Neg. LLF: 129.079283469005
Iteration: 14, Func. Count: 151, Neg. LLF: 129.0786713245512
Iteration: 15, Func. Count: 161, Neg. LLF: 129.07847936218386
Iteration: 16, Func. Count: 171, Neg. LLF: 129.07845662498175
Iteration: 17, Func. Count: 181, Neg. LLF: 129.07845562759604
Optimization terminated successfully (Exit mode 0)
Current function value: 129.07845562759604
Iterations: 17
Function evaluations: 181
Gradient evaluations: 17
Iteration: 1, Func. Count: 8, Neg. LLF: 134.2075260311174
Iteration: 2, Func. Count: 16, Neg. LLF: 153.32861115143442
Iteration: 3, Func. Count: 24, Neg. LLF: 129.78878578540323
Iteration: 4, Func. Count: 31, Neg. LLF: 129.71419113677234
Iteration: 5, Func. Count: 38, Neg. LLF: 129.7040498187107
Iteration: 6, Func. Count: 45, Neg. LLF: 129.70401520549783
Iteration: 7, Func. Count: 52, Neg. LLF: 129.70401279786242
Iteration: 8, Func. Count: 58, Neg. LLF: 129.70401290096333
Optimization terminated successfully (Exit mode 0)
Current function value: 129.70401279786242
Iterations: 8
Function evaluations: 58
Gradient evaluations: 8
Iteration: 1, Func. Count: 9, Neg. LLF: 159.18103195578908
Iteration: 2, Func. Count: 18, Neg. LLF: 133.1860925787979
Iteration: 3, Func. Count: 27, Neg. LLF: 138.24636885637588
Iteration: 4, Func. Count: 36, Neg. LLF: 139.8373892321386
Iteration: 5, Func. Count: 45, Neg. LLF: 129.32263437717256
Iteration: 6, Func. Count: 53, Neg. LLF: 129.20489874828377
Iteration: 7, Func. Count: 61, Neg. LLF: 129.16400739974824
Iteration: 8, Func. Count: 69, Neg. LLF: 129.1503346422118
Iteration: 9, Func. Count: 77, Neg. LLF: 129.1452221595699
Iteration: 10, Func. Count: 85, Neg. LLF: 129.14446004788007
Iteration: 11, Func. Count: 93, Neg. LLF: 129.1443632132163
Iteration: 12, Func. Count: 101, Neg. LLF: 129.14435819328597
Iteration: 13, Func. Count: 108, Neg. LLF: 129.14435819334827
Optimization terminated successfully (Exit mode 0)
Current function value: 129.14435819328597
Iterations: 13
Function evaluations: 108
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 158.45742448602212
Iteration: 2, Func. Count: 20, Neg. LLF: 133.25323161301017
Iteration: 3, Func. Count: 30, Neg. LLF: 139.60324067032724
Iteration: 4, Func. Count: 40, Neg. LLF: 143.0841035795455
Iteration: 5, Func. Count: 50, Neg. LLF: 132.9188968592439
Iteration: 6, Func. Count: 60, Neg. LLF: 129.68490446817407
Iteration: 7, Func. Count: 70, Neg. LLF: 129.17515322073172
Iteration: 8, Func. Count: 80, Neg. LLF: 129.09764118393656
Iteration: 9, Func. Count: 89, Neg. LLF: 129.0973643869946
Iteration: 10, Func. Count: 98, Neg. LLF: 129.09721401722453
Iteration: 11, Func. Count: 107, Neg. LLF: 129.09714123332796
Iteration: 12, Func. Count: 116, Neg. LLF: 129.09713643293216
Iteration: 13, Func. Count: 124, Neg. LLF: 129.09713643291167
Optimization terminated successfully (Exit mode 0)
Current function value: 129.09713643293216
Iterations: 13
Function evaluations: 124
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 157.9541013186777
Iteration: 2, Func. Count: 22, Neg. LLF: 133.99148872347055
Iteration: 3, Func. Count: 33, Neg. LLF: 156.51208172678804
Iteration: 4, Func. Count: 44, Neg. LLF: 148.92947633185992
Iteration: 5, Func. Count: 55, Neg. LLF: 130.72809914805413
Iteration: 6, Func. Count: 66, Neg. LLF: 129.3997493184863
Iteration: 7, Func. Count: 77, Neg. LLF: 129.1931755594917
Iteration: 8, Func. Count: 88, Neg. LLF: 129.67014452677958
Iteration: 9, Func. Count: 99, Neg. LLF: 129.08151304109683
Iteration: 10, Func. Count: 109, Neg. LLF: 129.08031489556842
Iteration: 11, Func. Count: 119, Neg. LLF: 129.07864027563096
Iteration: 12, Func. Count: 129, Neg. LLF: 129.0784716373005
Iteration: 13, Func. Count: 139, Neg. LLF: 129.07845566593224
Iteration: 14, Func. Count: 148, Neg. LLF: 129.07845566597268
Optimization terminated successfully (Exit mode 0)
Current function value: 129.07845566593224
Iterations: 14
Function evaluations: 148
Gradient evaluations: 14
Iteration: 1, Func. Count: 12, Neg. LLF: 131.8104582025321
Iteration: 2, Func. Count: 24, Neg. LLF: 140.76735494544178
Iteration: 3, Func. Count: 36, Neg. LLF: 148.96252351241318
Iteration: 4, Func. Count: 48, Neg. LLF: 133.3384954105098
Iteration: 5, Func. Count: 60, Neg. LLF: 142.4313976977404
Iteration: 6, Func. Count: 72, Neg. LLF: 139.28256488815
Iteration: 7, Func. Count: 84, Neg. LLF: 625.0560112853085
Iteration: 8, Func. Count: 96, Neg. LLF: 131.96071049044812
Iteration: 9, Func. Count: 108, Neg. LLF: 129.95214855368837
Iteration: 10, Func. Count: 120, Neg. LLF: 129.34482840695992
Iteration: 11, Func. Count: 132, Neg. LLF: 129.10155417731505
Iteration: 12, Func. Count: 143, Neg. LLF: 129.086638873414
Iteration: 13, Func. Count: 154, Neg. LLF: 129.08030862906085
Iteration: 14, Func. Count: 165, Neg. LLF: 129.078727058357
Iteration: 15, Func. Count: 176, Neg. LLF: 129.07846511349356
Iteration: 16, Func. Count: 187, Neg. LLF: 129.07845585317355
Iteration: 17, Func. Count: 197, Neg. LLF: 129.07845592315113
Optimization terminated successfully (Exit mode 0)
Current function value: 129.07845585317355
Iterations: 17
Function evaluations: 197
Gradient evaluations: 17
Iteration: 1, Func. Count: 9, Neg. LLF: 134.3227878809065
Iteration: 2, Func. Count: 18, Neg. LLF: 148.89050451485858
Iteration: 3, Func. Count: 27, Neg. LLF: 138.19586082515164
Iteration: 4, Func. Count: 38, Neg. LLF: 129.7539724522451
Iteration: 5, Func. Count: 46, Neg. LLF: 129.5764405474795
Iteration: 6, Func. Count: 54, Neg. LLF: 129.52805989598136
Iteration: 7, Func. Count: 62, Neg. LLF: 129.5165074671901
Iteration: 8, Func. Count: 70, Neg. LLF: 129.51589564487787
Iteration: 9, Func. Count: 78, Neg. LLF: 129.51579977162038
Iteration: 10, Func. Count: 86, Neg. LLF: 129.51579872830138
Iteration: 11, Func. Count: 93, Neg. LLF: 129.51579872828864
Optimization terminated successfully (Exit mode 0)
Current function value: 129.51579872830138
Iterations: 11
Function evaluations: 93
Gradient evaluations: 11
Iteration: 1, Func. Count: 10, Neg. LLF: 159.16980932209165
Iteration: 2, Func. Count: 20, Neg. LLF: 133.21677996793383
Iteration: 3, Func. Count: 30, Neg. LLF: 136.9752881242015
Iteration: 4, Func. Count: 40, Neg. LLF: 9206085.316073062
Iteration: 5, Func. Count: 51, Neg. LLF: 130.79182475112364
Iteration: 6, Func. Count: 61, Neg. LLF: 129.5213853162462
Iteration: 7, Func. Count: 71, Neg. LLF: 129.33435151773497
Iteration: 8, Func. Count: 81, Neg. LLF: 129.17203004054898
Iteration: 9, Func. Count: 90, Neg. LLF: 129.15476066085898
Iteration: 10, Func. Count: 99, Neg. LLF: 129.1470947392002
Iteration: 11, Func. Count: 108, Neg. LLF: 129.14479762127286
Iteration: 12, Func. Count: 117, Neg. LLF: 129.14438250027703
Iteration: 13, Func. Count: 126, Neg. LLF: 129.14436023974022
Iteration: 14, Func. Count: 135, Neg. LLF: 129.14435848372176
Iteration: 15, Func. Count: 143, Neg. LLF: 129.14435848370465
Optimization terminated successfully (Exit mode 0)
Current function value: 129.14435848372176
Iterations: 15
Function evaluations: 143
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 158.44965752886785
Iteration: 2, Func. Count: 22, Neg. LLF: 133.25214964051136
Iteration: 3, Func. Count: 33, Neg. LLF: 139.67902694940312
Iteration: 4, Func. Count: 44, Neg. LLF: 62223.43507433115
Iteration: 5, Func. Count: 55, Neg. LLF: 129.99440637478332
Iteration: 6, Func. Count: 66, Neg. LLF: 129.3603469227747
Iteration: 7, Func. Count: 77, Neg. LLF: 129.1325960463307
Iteration: 8, Func. Count: 88, Neg. LLF: 129.10433519479125
Iteration: 9, Func. Count: 98, Neg. LLF: 129.11510648257152
Iteration: 10, Func. Count: 109, Neg. LLF: 129.10475965641314
Iteration: 11, Func. Count: 120, Neg. LLF: 129.09851453849808
Iteration: 12, Func. Count: 130, Neg. LLF: 129.09764745147498
Iteration: 13, Func. Count: 140, Neg. LLF: 129.09713992690232
Iteration: 14, Func. Count: 150, Neg. LLF: 129.0971363654397
Iteration: 15, Func. Count: 159, Neg. LLF: 129.09713636545587
Optimization terminated successfully (Exit mode 0)
Current function value: 129.0971363654397
Iterations: 15
Function evaluations: 159
Gradient evaluations: 15
Iteration: 1, Func. Count: 12, Neg. LLF: 157.9520792243215
Iteration: 2, Func. Count: 24, Neg. LLF: 133.9887270465856
Iteration: 3, Func. Count: 36, Neg. LLF: 156.1554200718579
Iteration: 4, Func. Count: 48, Neg. LLF: 148.9297067022026
Iteration: 5, Func. Count: 60, Neg. LLF: 130.6854118769479
Iteration: 6, Func. Count: 72, Neg. LLF: 129.3921807140282
Iteration: 7, Func. Count: 84, Neg. LLF: 129.20533138041833
Iteration: 8, Func. Count: 96, Neg. LLF: 130.14781158931896
Iteration: 9, Func. Count: 109, Neg. LLF: 129.08162586056204
Iteration: 10, Func. Count: 120, Neg. LLF: 129.08036168883407
Iteration: 11, Func. Count: 131, Neg. LLF: 129.07891458710074
Iteration: 12, Func. Count: 142, Neg. LLF: 129.07847441190904
Iteration: 13, Func. Count: 153, Neg. LLF: 129.07845651206776
Iteration: 14, Func. Count: 164, Neg. LLF: 129.07845548898135
Iteration: 15, Func. Count: 174, Neg. LLF: 129.0784554890047
Optimization terminated successfully (Exit mode 0)
Current function value: 129.07845548898135
Iterations: 15
Function evaluations: 174
Gradient evaluations: 15
Iteration: 1, Func. Count: 13, Neg. LLF: 131.78515249377614
Iteration: 2, Func. Count: 26, Neg. LLF: 140.78989315380582
Iteration: 3, Func. Count: 39, Neg. LLF: 148.86829104611928
Iteration: 4, Func. Count: 52, Neg. LLF: 133.38446191244373
Iteration: 5, Func. Count: 65, Neg. LLF: 142.3781717353462
Iteration: 6, Func. Count: 78, Neg. LLF: 2010.501458380271
Iteration: 7, Func. Count: 91, Neg. LLF: 713.5412606261351
Iteration: 8, Func. Count: 104, Neg. LLF: 130.0698713317833
Iteration: 9, Func. Count: 117, Neg. LLF: 131.6026677358062
Iteration: 10, Func. Count: 130, Neg. LLF: 129.1212562191149
Iteration: 11, Func. Count: 142, Neg. LLF: 129.21107871165674
Iteration: 12, Func. Count: 155, Neg. LLF: 129.09396258849102
Iteration: 13, Func. Count: 167, Neg. LLF: 129.07973563464535
Iteration: 14, Func. Count: 179, Neg. LLF: 129.07898572080904
Iteration: 15, Func. Count: 191, Neg. LLF: 129.07854587217446
Iteration: 16, Func. Count: 203, Neg. LLF: 129.07846650281778
Iteration: 17, Func. Count: 215, Neg. LLF: 129.07845567910402
Iteration: 18, Func. Count: 226, Neg. LLF: 129.0784557491916
Optimization terminated successfully (Exit mode 0)
Current function value: 129.07845567910402
Iterations: 18
Function evaluations: 226
Gradient evaluations: 18
Iteration: 1, Func. Count: 6, Neg. LLF: 132.93622468148052
Iteration: 2, Func. Count: 12, Neg. LLF: 149.68341764399347
Iteration: 3, Func. Count: 18, Neg. LLF: 129.75363112220873
Iteration: 4, Func. Count: 23, Neg. LLF: 234.74708180476463
Iteration: 5, Func. Count: 29, Neg. LLF: 129.61597675001158
Iteration: 6, Func. Count: 34, Neg. LLF: 129.61263263800495
Iteration: 7, Func. Count: 39, Neg. LLF: 129.6118652866556
Iteration: 8, Func. Count: 44, Neg. LLF: 129.61166578437562
Iteration: 9, Func. Count: 49, Neg. LLF: 129.61155386923838
Iteration: 10, Func. Count: 53, Neg. LLF: 129.6115538691685
Optimization terminated successfully (Exit mode 0)
Current function value: 129.61155386923838
Iterations: 10
Function evaluations: 53
Gradient evaluations: 10
Iteration: 1, Func. Count: 7, Neg. LLF: 134.15171107969914
Iteration: 2, Func. Count: 14, Neg. LLF: 135.64547597181843
Iteration: 3, Func. Count: 21, Neg. LLF: 129.98705276161542
Iteration: 4, Func. Count: 28, Neg. LLF: 129.53056297244947
Iteration: 5, Func. Count: 35, Neg. LLF: 129.40665538966124
Iteration: 6, Func. Count: 41, Neg. LLF: 129.40535844204774
Iteration: 7, Func. Count: 47, Neg. LLF: 129.4042610299107
Iteration: 8, Func. Count: 53, Neg. LLF: 129.4041849918929
Iteration: 9, Func. Count: 59, Neg. LLF: 129.40417329453385
Iteration: 10, Func. Count: 64, Neg. LLF: 129.40417329456497
Optimization terminated successfully (Exit mode 0)
Current function value: 129.40417329453385
Iterations: 10
Function evaluations: 64
Gradient evaluations: 10
Iteration: 1, Func. Count: 8, Neg. LLF: 133.66632473324603
Iteration: 2, Func. Count: 16, Neg. LLF: 135.38969239264918
Iteration: 3, Func. Count: 24, Neg. LLF: 130.58182499430106
Iteration: 4, Func. Count: 32, Neg. LLF: 129.34074343652907
Iteration: 5, Func. Count: 40, Neg. LLF: 129.73402773404078
Iteration: 6, Func. Count: 48, Neg. LLF: 129.29413957843602
Iteration: 7, Func. Count: 56, Neg. LLF: 129.28689739625187
Iteration: 8, Func. Count: 63, Neg. LLF: 129.286578893605
Iteration: 9, Func. Count: 70, Neg. LLF: 129.2864809092766
Iteration: 10, Func. Count: 76, Neg. LLF: 129.28648090925074
Optimization terminated successfully (Exit mode 0)
Current function value: 129.2864809092766
Iterations: 10
Function evaluations: 76
Gradient evaluations: 10
Iteration: 1, Func. Count: 9, Neg. LLF: 131.27675351044792
Iteration: 2, Func. Count: 17, Neg. LLF: 136.21247932252223
Iteration: 3, Func. Count: 26, Neg. LLF: 143.39500096300551
Iteration: 4, Func. Count: 36, Neg. LLF: 150.7485656158442
Iteration: 5, Func. Count: 45, Neg. LLF: 140.328275030858
Iteration: 6, Func. Count: 54, Neg. LLF: 166.22012295939996
Iteration: 7, Func. Count: 63, Neg. LLF: 151.0930050364295
Iteration: 8, Func. Count: 72, Neg. LLF: 244.87234628331035
Iteration: 9, Func. Count: 81, Neg. LLF: 130.11643608111834
Iteration: 10, Func. Count: 90, Neg. LLF: 129.2892434855543
Iteration: 11, Func. Count: 98, Neg. LLF: 129.255566983032
Iteration: 12, Func. Count: 106, Neg. LLF: 129.2492195875063
Iteration: 13, Func. Count: 114, Neg. LLF: 129.24300703212722
Iteration: 14, Func. Count: 122, Neg. LLF: 129.24036319294203
Iteration: 15, Func. Count: 130, Neg. LLF: 129.24014076902805
Iteration: 16, Func. Count: 138, Neg. LLF: 129.23988326485707
Iteration: 17, Func. Count: 146, Neg. LLF: 129.23982313059176
Iteration: 18, Func. Count: 154, Neg. LLF: 129.23981884255116
Iteration: 19, Func. Count: 161, Neg. LLF: 129.23981884258907
Optimization terminated successfully (Exit mode 0)
Current function value: 129.23981884255116
Iterations: 19
Function evaluations: 161
Gradient evaluations: 19
Iteration: 1, Func. Count: 10, Neg. LLF: 131.21798972846412
Iteration: 2, Func. Count: 19, Neg. LLF: 135.65147993920166
Iteration: 3, Func. Count: 29, Neg. LLF: 133.03582548999015
Iteration: 4, Func. Count: 40, Neg. LLF: 154.8349079338337
Iteration: 5, Func. Count: 50, Neg. LLF: 141.30168774105226
Iteration: 6, Func. Count: 60, Neg. LLF: 161.70372413469707
Iteration: 7, Func. Count: 70, Neg. LLF: 172.0148169484673
Iteration: 8, Func. Count: 80, Neg. LLF: 135.00363486087306
Iteration: 9, Func. Count: 90, Neg. LLF: 175.26450416280696
Iteration: 10, Func. Count: 100, Neg. LLF: 129.2583187195074
Iteration: 11, Func. Count: 109, Neg. LLF: 129.24482665082326
Iteration: 12, Func. Count: 118, Neg. LLF: 129.24120964121315
Iteration: 13, Func. Count: 127, Neg. LLF: 129.2402011578556
Iteration: 14, Func. Count: 136, Neg. LLF: 129.2399937795874
Iteration: 15, Func. Count: 145, Neg. LLF: 129.23985724725455
Iteration: 16, Func. Count: 154, Neg. LLF: 129.2398221919251
Iteration: 17, Func. Count: 163, Neg. LLF: 129.23981887933584
Iteration: 18, Func. Count: 171, Neg. LLF: 129.23981893108717
Optimization terminated successfully (Exit mode 0)
Current function value: 129.23981887933584
Iterations: 18
Function evaluations: 171
Gradient evaluations: 18
Iteration: 1, Func. Count: 7, Neg. LLF: 132.7283677857194
Iteration: 2, Func. Count: 14, Neg. LLF: 139.1410218194895
Iteration: 3, Func. Count: 21, Neg. LLF: 132.58821939556572
Iteration: 4, Func. Count: 28, Neg. LLF: 129.7166038718345
Iteration: 5, Func. Count: 34, Neg. LLF: 141.69567692596885
Iteration: 6, Func. Count: 41, Neg. LLF: 129.98817109129843
Iteration: 7, Func. Count: 48, Neg. LLF: 129.60968961757496
Iteration: 8, Func. Count: 54, Neg. LLF: 129.60861891319823
Iteration: 9, Func. Count: 60, Neg. LLF: 129.60846685128962
Iteration: 10, Func. Count: 66, Neg. LLF: 129.60842939446354
Iteration: 11, Func. Count: 71, Neg. LLF: 129.60842939446343
Optimization terminated successfully (Exit mode 0)
Current function value: 129.60842939446354
Iterations: 11
Function evaluations: 71
Gradient evaluations: 11
Iteration: 1, Func. Count: 8, Neg. LLF: 154.33998176751487
Iteration: 2, Func. Count: 16, Neg. LLF: 132.504975401813
Iteration: 3, Func. Count: 24, Neg. LLF: 135.72415354149845
Iteration: 4, Func. Count: 32, Neg. LLF: 134.65872090437878
Iteration: 5, Func. Count: 40, Neg. LLF: 129.47344130771086
Iteration: 6, Func. Count: 47, Neg. LLF: 129.26495964706663
Iteration: 7, Func. Count: 54, Neg. LLF: 129.1801429757709
Iteration: 8, Func. Count: 61, Neg. LLF: 129.17418172357608
Iteration: 9, Func. Count: 69, Neg. LLF: 129.14805776691742
Iteration: 10, Func. Count: 76, Neg. LLF: 129.1446497743063
Iteration: 11, Func. Count: 83, Neg. LLF: 129.14439820378092
Iteration: 12, Func. Count: 90, Neg. LLF: 129.14435956814305
Iteration: 13, Func. Count: 97, Neg. LLF: 129.1443581803946
Iteration: 14, Func. Count: 103, Neg. LLF: 129.14435818046337
Optimization terminated successfully (Exit mode 0)
Current function value: 129.1443581803946
Iterations: 14
Function evaluations: 103
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 132.27174999862459
Iteration: 2, Func. Count: 18, Neg. LLF: 133.0052437340145
Iteration: 3, Func. Count: 27, Neg. LLF: 140.08001585279789
Iteration: 4, Func. Count: 36, Neg. LLF: 129.55842913597223
Iteration: 5, Func. Count: 44, Neg. LLF: 164.7794986339829
Iteration: 6, Func. Count: 53, Neg. LLF: 130.31955016357475
Iteration: 7, Func. Count: 62, Neg. LLF: 130.3987120975383
Iteration: 8, Func. Count: 71, Neg. LLF: 129.48886447935698
Iteration: 9, Func. Count: 80, Neg. LLF: 129.17913668083767
Iteration: 10, Func. Count: 88, Neg. LLF: 129.11863343650904
Iteration: 11, Func. Count: 96, Neg. LLF: 129.10697828575186
Iteration: 12, Func. Count: 104, Neg. LLF: 129.09998812745587
Iteration: 13, Func. Count: 112, Neg. LLF: 129.0984144941072
Iteration: 14, Func. Count: 120, Neg. LLF: 129.0972123014299
Iteration: 15, Func. Count: 128, Neg. LLF: 129.09713771803132
Iteration: 16, Func. Count: 136, Neg. LLF: 129.09713654776644
Iteration: 17, Func. Count: 143, Neg. LLF: 129.09713654769098
Optimization terminated successfully (Exit mode 0)
Current function value: 129.09713654776644
Iterations: 17
Function evaluations: 143
Gradient evaluations: 17
Iteration: 1, Func. Count: 10, Neg. LLF: 131.90040074425877
Iteration: 2, Func. Count: 20, Neg. LLF: 140.54706383733006
Iteration: 3, Func. Count: 30, Neg. LLF: 135.9659567426492
Iteration: 4, Func. Count: 40, Neg. LLF: 149.4478815110619
Iteration: 5, Func. Count: 50, Neg. LLF: 129.54094240650474
Iteration: 6, Func. Count: 60, Neg. LLF: 543.7374052303858
Iteration: 7, Func. Count: 71, Neg. LLF: 135.6034022039558
Iteration: 8, Func. Count: 81, Neg. LLF: 131.6968752897007
Iteration: 9, Func. Count: 91, Neg. LLF: 130.05249404165733
Iteration: 10, Func. Count: 101, Neg. LLF: 129.15028189355698
Iteration: 11, Func. Count: 110, Neg. LLF: 129.1055062124625
Iteration: 12, Func. Count: 119, Neg. LLF: 129.08945466788862
Iteration: 13, Func. Count: 128, Neg. LLF: 129.08373589854287
Iteration: 14, Func. Count: 137, Neg. LLF: 129.0798745263285
Iteration: 15, Func. Count: 146, Neg. LLF: 129.07868696909154
Iteration: 16, Func. Count: 155, Neg. LLF: 129.07847254533024
Iteration: 17, Func. Count: 164, Neg. LLF: 129.07846263421845
Iteration: 18, Func. Count: 173, Neg. LLF: 129.07845559895517
Iteration: 19, Func. Count: 181, Neg. LLF: 129.07845559891712
Optimization terminated successfully (Exit mode 0)
Current function value: 129.07845559895517
Iterations: 19
Function evaluations: 181
Gradient evaluations: 19
Iteration: 1, Func. Count: 11, Neg. LLF: 131.67876198686653
Iteration: 2, Func. Count: 22, Neg. LLF: 140.0174167507336
Iteration: 3, Func. Count: 33, Neg. LLF: 137.73741871760046
Iteration: 4, Func. Count: 44, Neg. LLF: 134.99134853376566
Iteration: 5, Func. Count: 55, Neg. LLF: 131.84764070641077
Iteration: 6, Func. Count: 66, Neg. LLF: 163.28776376376896
Iteration: 7, Func. Count: 77, Neg. LLF: 135.20504994219615
Iteration: 8, Func. Count: 88, Neg. LLF: 134.9499285545021
Iteration: 9, Func. Count: 99, Neg. LLF: 135.76125817982262
Iteration: 10, Func. Count: 110, Neg. LLF: 129.2108311830532
Iteration: 11, Func. Count: 120, Neg. LLF: 129.21155224294054
Iteration: 12, Func. Count: 131, Neg. LLF: 129.15297722715937
Iteration: 13, Func. Count: 141, Neg. LLF: 129.1050774023785
Iteration: 14, Func. Count: 151, Neg. LLF: 129.08713999246572
Iteration: 15, Func. Count: 161, Neg. LLF: 129.08238356823904
Iteration: 16, Func. Count: 171, Neg. LLF: 129.07944634588802
Iteration: 17, Func. Count: 181, Neg. LLF: 129.07864996646921
Iteration: 18, Func. Count: 191, Neg. LLF: 129.07848813791082
Iteration: 19, Func. Count: 201, Neg. LLF: 129.07845979208338
Iteration: 20, Func. Count: 211, Neg. LLF: 129.07845573432576
Iteration: 21, Func. Count: 220, Neg. LLF: 129.0784558043095
Optimization terminated successfully (Exit mode 0)
Current function value: 129.07845573432576
Iterations: 21
Function evaluations: 220
Gradient evaluations: 21
Iteration: 1, Func. Count: 8, Neg. LLF: 133.74222303600706
Iteration: 2, Func. Count: 16, Neg. LLF: 142.5905496627319
Iteration: 3, Func. Count: 24, Neg. LLF: 129.7353295705081
Iteration: 4, Func. Count: 31, Neg. LLF: 130.94511439574202
Iteration: 5, Func. Count: 39, Neg. LLF: 129.6976433779036
Iteration: 6, Func. Count: 47, Neg. LLF: 129.3307218076576
Iteration: 7, Func. Count: 54, Neg. LLF: 129.30312975710405
Iteration: 8, Func. Count: 61, Neg. LLF: 129.29678982833528
Iteration: 9, Func. Count: 68, Neg. LLF: 129.28974469429076
Iteration: 10, Func. Count: 75, Neg. LLF: 129.28501661567157
Iteration: 11, Func. Count: 82, Neg. LLF: 129.28346938754106
Iteration: 12, Func. Count: 89, Neg. LLF: 129.28323252940535
Iteration: 13, Func. Count: 96, Neg. LLF: 129.28320934415882
Iteration: 14, Func. Count: 103, Neg. LLF: 129.28320747813484
Iteration: 15, Func. Count: 109, Neg. LLF: 129.28320741464614
Optimization terminated successfully (Exit mode 0)
Current function value: 129.28320747813484
Iterations: 15
Function evaluations: 109
Gradient evaluations: 15
Iteration: 1, Func. Count: 9, Neg. LLF: 150.50321973936337
Iteration: 2, Func. Count: 18, Neg. LLF: 135.65156130137294
Iteration: 3, Func. Count: 27, Neg. LLF: 149.62221236813946
Iteration: 4, Func. Count: 36, Neg. LLF: 135.88987811556316
Iteration: 5, Func. Count: 45, Neg. LLF: 129.08063260993075
Iteration: 6, Func. Count: 53, Neg. LLF: 129.06230609354063
Iteration: 7, Func. Count: 62, Neg. LLF: 129.11744738842995
Iteration: 8, Func. Count: 71, Neg. LLF: 128.93894380936504
Iteration: 9, Func. Count: 79, Neg. LLF: 128.93858075341777
Iteration: 10, Func. Count: 87, Neg. LLF: 128.93854252749048
Iteration: 11, Func. Count: 95, Neg. LLF: 128.93854028500616
Iteration: 12, Func. Count: 102, Neg. LLF: 128.93854028498984
Optimization terminated successfully (Exit mode 0)
Current function value: 128.93854028500616
Iterations: 12
Function evaluations: 102
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 149.9272806845037
Iteration: 2, Func. Count: 20, Neg. LLF: 168.92936666592266
Iteration: 3, Func. Count: 30, Neg. LLF: 141.71270934564427
Iteration: 4, Func. Count: 40, Neg. LLF: 132.45746681308316
Iteration: 5, Func. Count: 50, Neg. LLF: 131.01255656762532
Iteration: 6, Func. Count: 60, Neg. LLF: 129.02933803649537
Iteration: 7, Func. Count: 70, Neg. LLF: 128.85021665327253
Iteration: 8, Func. Count: 79, Neg. LLF: 128.84702146863475
Iteration: 9, Func. Count: 88, Neg. LLF: 128.8462100681981
Iteration: 10, Func. Count: 97, Neg. LLF: 128.84519028886615
Iteration: 11, Func. Count: 106, Neg. LLF: 128.84517200712574
Iteration: 12, Func. Count: 115, Neg. LLF: 128.84516788714876
Iteration: 13, Func. Count: 123, Neg. LLF: 128.84516788723042
Optimization terminated successfully (Exit mode 0)
Current function value: 128.84516788714876
Iterations: 13
Function evaluations: 123
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 140.16521202986775
Iteration: 2, Func. Count: 22, Neg. LLF: 133.35978246093745
Iteration: 3, Func. Count: 33, Neg. LLF: 130.05819774791235
Iteration: 4, Func. Count: 43, Neg. LLF: 145.3018078347813
Iteration: 5, Func. Count: 54, Neg. LLF: 135.07579756855537
Iteration: 6, Func. Count: 65, Neg. LLF: 144.18568292356423
Iteration: 7, Func. Count: 76, Neg. LLF: 129.39196816201354
Iteration: 8, Func. Count: 87, Neg. LLF: 129.37557581352988
Iteration: 9, Func. Count: 98, Neg. LLF: 138.26375965159215
Iteration: 10, Func. Count: 109, Neg. LLF: 128.79765046842505
Iteration: 11, Func. Count: 119, Neg. LLF: 128.79437558917624
Iteration: 12, Func. Count: 129, Neg. LLF: 128.79329725784675
Iteration: 13, Func. Count: 139, Neg. LLF: 128.79227058818452
Iteration: 14, Func. Count: 149, Neg. LLF: 128.79209421489472
Iteration: 15, Func. Count: 159, Neg. LLF: 128.79199903483502
Iteration: 16, Func. Count: 169, Neg. LLF: 128.79198913831192
Iteration: 17, Func. Count: 179, Neg. LLF: 128.79198659458427
Iteration: 18, Func. Count: 188, Neg. LLF: 128.79198659464427
Optimization terminated successfully (Exit mode 0)
Current function value: 128.79198659458427
Iterations: 18
Function evaluations: 188
Gradient evaluations: 18
Iteration: 1, Func. Count: 12, Neg. LLF: 133.79986698974523
Iteration: 2, Func. Count: 24, Neg. LLF: 134.98415067277804
Iteration: 3, Func. Count: 36, Neg. LLF: 132.7461886085409
Iteration: 4, Func. Count: 48, Neg. LLF: 134.459045862824
Iteration: 5, Func. Count: 60, Neg. LLF: 2154007.489539519
Iteration: 6, Func. Count: 72, Neg. LLF: 131.41332475591722
Iteration: 7, Func. Count: 84, Neg. LLF: 230.99888269048054
Iteration: 8, Func. Count: 96, Neg. LLF: 129.01652100063708
Iteration: 9, Func. Count: 108, Neg. LLF: 132.52228516843823
Iteration: 10, Func. Count: 120, Neg. LLF: 128.79372130900322
Iteration: 11, Func. Count: 131, Neg. LLF: 128.792053520788
Iteration: 12, Func. Count: 142, Neg. LLF: 128.79200202148144
Iteration: 13, Func. Count: 153, Neg. LLF: 128.79198722059067
Iteration: 14, Func. Count: 164, Neg. LLF: 128.79198626441612
Optimization terminated successfully (Exit mode 0)
Current function value: 128.79198626441612
Iterations: 14
Function evaluations: 164
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 134.21162850920268
Iteration: 2, Func. Count: 18, Neg. LLF: 149.80293228915008
Iteration: 3, Func. Count: 27, Neg. LLF: 129.90307321808322
Iteration: 4, Func. Count: 35, Neg. LLF: 129.36434190811832
Iteration: 5, Func. Count: 43, Neg. LLF: 130.01196259121602
Iteration: 6, Func. Count: 52, Neg. LLF: 129.286722586543
Iteration: 7, Func. Count: 60, Neg. LLF: 129.2834356966377
Iteration: 8, Func. Count: 68, Neg. LLF: 129.283223435012
Iteration: 9, Func. Count: 76, Neg. LLF: 129.28321155968942
Iteration: 10, Func. Count: 84, Neg. LLF: 129.2832082907781
Iteration: 11, Func. Count: 92, Neg. LLF: 129.28320746088843
Optimization terminated successfully (Exit mode 0)
Current function value: 129.28320746088843
Iterations: 11
Function evaluations: 92
Gradient evaluations: 11
Iteration: 1, Func. Count: 10, Neg. LLF: 150.50856237277856
Iteration: 2, Func. Count: 20, Neg. LLF: 135.6055543123886
Iteration: 3, Func. Count: 30, Neg. LLF: 147.26821841965705
Iteration: 4, Func. Count: 40, Neg. LLF: 136.91716027352575
Iteration: 5, Func. Count: 50, Neg. LLF: 129.08408029474202
Iteration: 6, Func. Count: 59, Neg. LLF: 129.04963854398352
Iteration: 7, Func. Count: 69, Neg. LLF: 129.1113302828305
Iteration: 8, Func. Count: 79, Neg. LLF: 128.9389636928326
Iteration: 9, Func. Count: 88, Neg. LLF: 128.93858433155052
Iteration: 10, Func. Count: 97, Neg. LLF: 128.93854272955727
Iteration: 11, Func. Count: 106, Neg. LLF: 128.9385402853519
Iteration: 12, Func. Count: 114, Neg. LLF: 128.93854028535918
Optimization terminated successfully (Exit mode 0)
Current function value: 128.9385402853519
Iterations: 12
Function evaluations: 114
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 149.9320298631044
Iteration: 2, Func. Count: 22, Neg. LLF: 168.94181552033683
Iteration: 3, Func. Count: 33, Neg. LLF: 141.89589484617574
Iteration: 4, Func. Count: 44, Neg. LLF: 132.43326439629857
Iteration: 5, Func. Count: 55, Neg. LLF: 130.9560539881388
Iteration: 6, Func. Count: 66, Neg. LLF: 129.02531556551887
Iteration: 7, Func. Count: 77, Neg. LLF: 128.85014535037797
Iteration: 8, Func. Count: 87, Neg. LLF: 128.84701669387937
Iteration: 9, Func. Count: 97, Neg. LLF: 128.84613338988177
Iteration: 10, Func. Count: 107, Neg. LLF: 128.84519026825603
Iteration: 11, Func. Count: 117, Neg. LLF: 128.84517218620775
Iteration: 12, Func. Count: 127, Neg. LLF: 128.84516787238837
Iteration: 13, Func. Count: 136, Neg. LLF: 128.84516787247045
Optimization terminated successfully (Exit mode 0)
Current function value: 128.84516787238837
Iterations: 13
Function evaluations: 136
Gradient evaluations: 13
Iteration: 1, Func. Count: 12, Neg. LLF: 131.8483361286006
Iteration: 2, Func. Count: 24, Neg. LLF: 132.522649851511
Iteration: 3, Func. Count: 36, Neg. LLF: 143.43342279031856
Iteration: 4, Func. Count: 48, Neg. LLF: 141.36258264001677
Iteration: 5, Func. Count: 60, Neg. LLF: 237.4386520061879
Iteration: 6, Func. Count: 72, Neg. LLF: 173.55810070839894
Iteration: 7, Func. Count: 84, Neg. LLF: 204.36697554387553
Iteration: 8, Func. Count: 96, Neg. LLF: 130.15726692615758
Iteration: 9, Func. Count: 108, Neg. LLF: 128.89940817333442
Iteration: 10, Func. Count: 120, Neg. LLF: 128.81832336243733
Iteration: 11, Func. Count: 131, Neg. LLF: 128.79446549792996
Iteration: 12, Func. Count: 142, Neg. LLF: 128.79243398840768
Iteration: 13, Func. Count: 153, Neg. LLF: 128.79205391462173
Iteration: 14, Func. Count: 164, Neg. LLF: 128.79199169730086
Iteration: 15, Func. Count: 175, Neg. LLF: 128.79198668520047
Iteration: 16, Func. Count: 186, Neg. LLF: 128.79198615786723
Optimization terminated successfully (Exit mode 0)
Current function value: 128.79198615786723
Iterations: 16
Function evaluations: 186
Gradient evaluations: 16
Iteration: 1, Func. Count: 13, Neg. LLF: 131.10470837620935
Iteration: 2, Func. Count: 25, Neg. LLF: 134.41999417470996
Iteration: 3, Func. Count: 38, Neg. LLF: 140.30883181279341
Iteration: 4, Func. Count: 52, Neg. LLF: 155.36266863753173
Iteration: 5, Func. Count: 65, Neg. LLF: 141.58577949596793
Iteration: 6, Func. Count: 78, Neg. LLF: 163.23833104827978
Iteration: 7, Func. Count: 91, Neg. LLF: 144.4156929207862
Iteration: 8, Func. Count: 104, Neg. LLF: 149.49930368186514
Iteration: 9, Func. Count: 117, Neg. LLF: 146.5203683208182
Iteration: 10, Func. Count: 130, Neg. LLF: 129.62485526970474
Iteration: 11, Func. Count: 143, Neg. LLF: 128.83878908487577
Iteration: 12, Func. Count: 155, Neg. LLF: 128.8639739030236
Iteration: 13, Func. Count: 168, Neg. LLF: 128.81797007108113
Iteration: 14, Func. Count: 180, Neg. LLF: 128.80255880436093
Iteration: 15, Func. Count: 192, Neg. LLF: 128.79335319412894
Iteration: 16, Func. Count: 204, Neg. LLF: 128.79266295250744
Iteration: 17, Func. Count: 216, Neg. LLF: 128.79232727737408
Iteration: 18, Func. Count: 228, Neg. LLF: 128.79212399345863
Iteration: 19, Func. Count: 240, Neg. LLF: 128.7920032565653
Iteration: 20, Func. Count: 252, Neg. LLF: 128.7919867216646
Iteration: 21, Func. Count: 264, Neg. LLF: 128.7919861340783
Optimization terminated successfully (Exit mode 0)
Current function value: 128.7919861340783
Iterations: 21
Function evaluations: 264
Gradient evaluations: 21
Iteration: 1, Func. Count: 10, Neg. LLF: 132.62214963474497
Iteration: 2, Func. Count: 20, Neg. LLF: 144.70743812266147
Iteration: 3, Func. Count: 30, Neg. LLF: 134.92879653756128
Iteration: 4, Func. Count: 41, Neg. LLF: 129.70809415940374
Iteration: 5, Func. Count: 50, Neg. LLF: 160.57070002059217
Iteration: 6, Func. Count: 60, Neg. LLF: 138.3375769531449
Iteration: 7, Func. Count: 70, Neg. LLF: 129.03423573031168
Iteration: 8, Func. Count: 79, Neg. LLF: 128.99480001233587
Iteration: 9, Func. Count: 88, Neg. LLF: 128.94077891856983
Iteration: 10, Func. Count: 97, Neg. LLF: 128.90219134038276
Iteration: 11, Func. Count: 106, Neg. LLF: 128.88649452339453
Iteration: 12, Func. Count: 115, Neg. LLF: 128.8832976884777
Iteration: 13, Func. Count: 124, Neg. LLF: 128.88321948996278
Iteration: 14, Func. Count: 133, Neg. LLF: 128.8832132483301
Iteration: 15, Func. Count: 141, Neg. LLF: 128.88321324824227
Optimization terminated successfully (Exit mode 0)
Current function value: 128.8832132483301
Iterations: 15
Function evaluations: 141
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 150.48851495914252
Iteration: 2, Func. Count: 22, Neg. LLF: 135.55701919962263
Iteration: 3, Func. Count: 33, Neg. LLF: 146.3593339308786
Iteration: 4, Func. Count: 44, Neg. LLF: 591.1862700040991
Iteration: 5, Func. Count: 55, Neg. LLF: 147.42164106327579
Iteration: 6, Func. Count: 66, Neg. LLF: 129.02388850920877
Iteration: 7, Func. Count: 76, Neg. LLF: 128.90122041539513
Iteration: 8, Func. Count: 86, Neg. LLF: 128.95068757982773
Iteration: 9, Func. Count: 97, Neg. LLF: 128.88498070491983
Iteration: 10, Func. Count: 107, Neg. LLF: 128.8823694359588
Iteration: 11, Func. Count: 117, Neg. LLF: 128.88183783413803
Iteration: 12, Func. Count: 127, Neg. LLF: 128.8816234906127
Iteration: 13, Func. Count: 137, Neg. LLF: 128.88154537822302
Iteration: 14, Func. Count: 147, Neg. LLF: 128.88152562144995
Iteration: 15, Func. Count: 157, Neg. LLF: 128.88152217516281
Iteration: 16, Func. Count: 166, Neg. LLF: 128.881522175166
Optimization terminated successfully (Exit mode 0)
Current function value: 128.88152217516281
Iterations: 16
Function evaluations: 166
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 149.92827115206094
Iteration: 2, Func. Count: 24, Neg. LLF: 168.95919243767324
Iteration: 3, Func. Count: 36, Neg. LLF: 142.21173652288874
Iteration: 4, Func. Count: 48, Neg. LLF: 132.4047502944142
Iteration: 5, Func. Count: 60, Neg. LLF: 563.3435927791342
Iteration: 6, Func. Count: 72, Neg. LLF: 128.8338476449899
Iteration: 7, Func. Count: 83, Neg. LLF: 128.78650548175236
Iteration: 8, Func. Count: 94, Neg. LLF: 128.9627188783783
Iteration: 9, Func. Count: 106, Neg. LLF: 128.78125313135425
Iteration: 10, Func. Count: 117, Neg. LLF: 128.78075714969967
Iteration: 11, Func. Count: 128, Neg. LLF: 128.78062672738898
Iteration: 12, Func. Count: 139, Neg. LLF: 128.78062041509244
Iteration: 13, Func. Count: 149, Neg. LLF: 128.78062041512183
Optimization terminated successfully (Exit mode 0)
Current function value: 128.78062041509244
Iterations: 13
Function evaluations: 149
Gradient evaluations: 13
Iteration: 1, Func. Count: 13, Neg. LLF: 131.81210302526608
Iteration: 2, Func. Count: 26, Neg. LLF: 132.43007835146256
Iteration: 3, Func. Count: 39, Neg. LLF: 157.46251182714164
Iteration: 4, Func. Count: 52, Neg. LLF: 166.70954535517748
Iteration: 5, Func. Count: 65, Neg. LLF: 1148.0121457740527
Iteration: 6, Func. Count: 78, Neg. LLF: 143.08276065768183
Iteration: 7, Func. Count: 91, Neg. LLF: 173.49407718866604
Iteration: 8, Func. Count: 104, Neg. LLF: 133.27420322178017
Iteration: 9, Func. Count: 117, Neg. LLF: 128.87671575615062
Iteration: 10, Func. Count: 129, Neg. LLF: 128.8678547295114
Iteration: 11, Func. Count: 142, Neg. LLF: 129.1168229888442
Iteration: 12, Func. Count: 155, Neg. LLF: 128.77672715149575
Iteration: 13, Func. Count: 167, Neg. LLF: 128.7763800866755
Iteration: 14, Func. Count: 179, Neg. LLF: 128.77636543616524
Iteration: 15, Func. Count: 191, Neg. LLF: 128.77636487215068
Optimization terminated successfully (Exit mode 0)
Current function value: 128.77636487215068
Iterations: 15
Function evaluations: 191
Gradient evaluations: 15
Iteration: 1, Func. Count: 14, Neg. LLF: 131.10167204900998
Iteration: 2, Func. Count: 27, Neg. LLF: 132.58709997778283
Iteration: 3, Func. Count: 41, Neg. LLF: 146.00688322566853
Iteration: 4, Func. Count: 55, Neg. LLF: 163.61454836042083
Iteration: 5, Func. Count: 69, Neg. LLF: 146.18296670808874
Iteration: 6, Func. Count: 83, Neg. LLF: 183.10866187460564
Iteration: 7, Func. Count: 97, Neg. LLF: 898891.7978983686
Iteration: 8, Func. Count: 111, Neg. LLF: 138.8602779644788
Iteration: 9, Func. Count: 125, Neg. LLF: 132.14999798685795
Iteration: 10, Func. Count: 139, Neg. LLF: 128.91138770350827
Iteration: 11, Func. Count: 153, Neg. LLF: 128.88345885554793
Iteration: 12, Func. Count: 167, Neg. LLF: 128.85117184029022
Iteration: 13, Func. Count: 181, Neg. LLF: 128.7862139864135
Iteration: 14, Func. Count: 194, Neg. LLF: 128.7771862848633
Iteration: 15, Func. Count: 207, Neg. LLF: 128.7764461534807
Iteration: 16, Func. Count: 220, Neg. LLF: 128.77639154511397
Iteration: 17, Func. Count: 233, Neg. LLF: 128.77636601684694
Iteration: 18, Func. Count: 246, Neg. LLF: 128.77636523143508
Optimization terminated successfully (Exit mode 0)
Current function value: 128.77636523143508
Iterations: 18
Function evaluations: 246
Gradient evaluations: 18
Iteration: 1, Func. Count: 7, Neg. LLF: 132.65676151105785
Iteration: 2, Func. Count: 14, Neg. LLF: 144.72361346325158
Iteration: 3, Func. Count: 21, Neg. LLF: 129.72974308411844
Iteration: 4, Func. Count: 27, Neg. LLF: 185.46631862933532
Iteration: 5, Func. Count: 34, Neg. LLF: 144.57260483153271
Iteration: 6, Func. Count: 41, Neg. LLF: 129.3516069262452
Iteration: 7, Func. Count: 47, Neg. LLF: 129.51264878103137
Iteration: 8, Func. Count: 54, Neg. LLF: 129.29895711609106
Iteration: 9, Func. Count: 60, Neg. LLF: 129.29731701841212
Iteration: 10, Func. Count: 66, Neg. LLF: 129.2967251728811
Iteration: 11, Func. Count: 72, Neg. LLF: 129.29635598889274
Iteration: 12, Func. Count: 78, Neg. LLF: 129.29633055518363
Iteration: 13, Func. Count: 84, Neg. LLF: 129.29632942767313
Iteration: 14, Func. Count: 89, Neg. LLF: 129.29632942767202
Optimization terminated successfully (Exit mode 0)
Current function value: 129.29632942767313
Iterations: 14
Function evaluations: 89
Gradient evaluations: 14
Iteration: 1, Func. Count: 8, Neg. LLF: 133.11864606144678
Iteration: 2, Func. Count: 16, Neg. LLF: 134.77573566125747
Iteration: 3, Func. Count: 24, Neg. LLF: 162.04004334334863
Iteration: 4, Func. Count: 32, Neg. LLF: 130.88320118641977
Iteration: 5, Func. Count: 40, Neg. LLF: 129.2407544549888
Iteration: 6, Func. Count: 47, Neg. LLF: 129.2133187539626
Iteration: 7, Func. Count: 54, Neg. LLF: 129.209583923056
Iteration: 8, Func. Count: 61, Neg. LLF: 129.20869989340724
Iteration: 9, Func. Count: 68, Neg. LLF: 129.20858219513738
Iteration: 10, Func. Count: 75, Neg. LLF: 129.20854354358778
Iteration: 11, Func. Count: 82, Neg. LLF: 129.2085425073991
Iteration: 12, Func. Count: 88, Neg. LLF: 129.20854250739916
Optimization terminated successfully (Exit mode 0)
Current function value: 129.2085425073991
Iterations: 12
Function evaluations: 88
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 132.67638968608276
Iteration: 2, Func. Count: 18, Neg. LLF: 133.9161059053289
Iteration: 3, Func. Count: 27, Neg. LLF: 131.57584443599708
Iteration: 4, Func. Count: 36, Neg. LLF: 129.77845953328088
Iteration: 5, Func. Count: 45, Neg. LLF: 129.2782932481486
Iteration: 6, Func. Count: 54, Neg. LLF: 129.22527601183182
Iteration: 7, Func. Count: 62, Neg. LLF: 129.21040029344198
Iteration: 8, Func. Count: 70, Neg. LLF: 129.20903048868394
Iteration: 9, Func. Count: 78, Neg. LLF: 129.2085742118096
Iteration: 10, Func. Count: 86, Neg. LLF: 129.20854341094025
Iteration: 11, Func. Count: 94, Neg. LLF: 129.20854246467388
Optimization terminated successfully (Exit mode 0)
Current function value: 129.20854246467388
Iterations: 11
Function evaluations: 94
Gradient evaluations: 11
Iteration: 1, Func. Count: 10, Neg. LLF: 131.0816081971138
Iteration: 2, Func. Count: 19, Neg. LLF: 133.99526133984295
Iteration: 3, Func. Count: 29, Neg. LLF: 130.10866253468112
Iteration: 4, Func. Count: 38, Neg. LLF: 139.3986018590301
Iteration: 5, Func. Count: 49, Neg. LLF: 154.83857814812137
Iteration: 6, Func. Count: 60, Neg. LLF: 131.20195404942237
Iteration: 7, Func. Count: 71, Neg. LLF: 129.82994850553834
Iteration: 8, Func. Count: 81, Neg. LLF: 132.63850736519692
Iteration: 9, Func. Count: 91, Neg. LLF: 129.19237368020273
Iteration: 10, Func. Count: 100, Neg. LLF: 129.19017395395267
Iteration: 11, Func. Count: 109, Neg. LLF: 129.18968743188393
Iteration: 12, Func. Count: 118, Neg. LLF: 129.1895332909607
Iteration: 13, Func. Count: 127, Neg. LLF: 129.18951746660983
Iteration: 14, Func. Count: 136, Neg. LLF: 129.18950932127373
Iteration: 15, Func. Count: 145, Neg. LLF: 129.18950620191305
Iteration: 16, Func. Count: 153, Neg. LLF: 129.1895062019843
Optimization terminated successfully (Exit mode 0)
Current function value: 129.18950620191305
Iterations: 16
Function evaluations: 153
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 131.08116544087633
Iteration: 2, Func. Count: 21, Neg. LLF: 133.90987264113488
Iteration: 3, Func. Count: 32, Neg. LLF: 130.1663786132332
Iteration: 4, Func. Count: 42, Neg. LLF: 139.53210504207172
Iteration: 5, Func. Count: 54, Neg. LLF: 157.7997227749563
Iteration: 6, Func. Count: 66, Neg. LLF: 131.38197745251284
Iteration: 7, Func. Count: 78, Neg. LLF: 129.90748839153045
Iteration: 8, Func. Count: 89, Neg. LLF: 130.81731313554545
Iteration: 9, Func. Count: 100, Neg. LLF: 129.19184978435706
Iteration: 10, Func. Count: 110, Neg. LLF: 129.19009824656644
Iteration: 11, Func. Count: 120, Neg. LLF: 129.18970303561252
Iteration: 12, Func. Count: 130, Neg. LLF: 129.18954054845864
Iteration: 13, Func. Count: 140, Neg. LLF: 129.18952068178524
Iteration: 14, Func. Count: 150, Neg. LLF: 129.18950879028154
Iteration: 15, Func. Count: 160, Neg. LLF: 129.189506078588
Iteration: 16, Func. Count: 169, Neg. LLF: 129.18950612704467
Optimization terminated successfully (Exit mode 0)
Current function value: 129.189506078588
Iterations: 16
Function evaluations: 169
Gradient evaluations: 16
Iteration: 1, Func. Count: 8, Neg. LLF: 132.60733150927612
Iteration: 2, Func. Count: 16, Neg. LLF: 138.55119447356475
Iteration: 3, Func. Count: 24, Neg. LLF: 138.82334502112008
Iteration: 4, Func. Count: 32, Neg. LLF: 135.34285098483338
Iteration: 5, Func. Count: 40, Neg. LLF: 177.9071502479683
Iteration: 6, Func. Count: 48, Neg. LLF: 129.41368299084027
Iteration: 7, Func. Count: 55, Neg. LLF: 159.96711005553766
Iteration: 8, Func. Count: 64, Neg. LLF: 129.64320630675786
Iteration: 9, Func. Count: 72, Neg. LLF: 129.28484642884234
Iteration: 10, Func. Count: 79, Neg. LLF: 129.28242054186433
Iteration: 11, Func. Count: 86, Neg. LLF: 129.28205164925498
Iteration: 12, Func. Count: 93, Neg. LLF: 129.2819169773073
Iteration: 13, Func. Count: 100, Neg. LLF: 129.28188563167816
Iteration: 14, Func. Count: 107, Neg. LLF: 129.28187846569853
Iteration: 15, Func. Count: 113, Neg. LLF: 129.2818784656893
Optimization terminated successfully (Exit mode 0)
Current function value: 129.28187846569853
Iterations: 15
Function evaluations: 113
Gradient evaluations: 15
Iteration: 1, Func. Count: 9, Neg. LLF: 132.8715618788431
Iteration: 2, Func. Count: 18, Neg. LLF: 133.3806444900746
Iteration: 3, Func. Count: 27, Neg. LLF: 142.78486960470198
Iteration: 4, Func. Count: 36, Neg. LLF: 138.221059528313
Iteration: 5, Func. Count: 45, Neg. LLF: 2684.4847433866075
Iteration: 6, Func. Count: 54, Neg. LLF: 137.03348681024178
Iteration: 7, Func. Count: 63, Neg. LLF: 130.57701247050986
Iteration: 8, Func. Count: 72, Neg. LLF: 133.54289530423932
Iteration: 9, Func. Count: 81, Neg. LLF: 129.14171545540958
Iteration: 10, Func. Count: 89, Neg. LLF: 129.12639459408624
Iteration: 11, Func. Count: 97, Neg. LLF: 129.11639645579487
Iteration: 12, Func. Count: 105, Neg. LLF: 129.11242912811423
Iteration: 13, Func. Count: 113, Neg. LLF: 129.11068236993336
Iteration: 14, Func. Count: 121, Neg. LLF: 129.11035146916265
Iteration: 15, Func. Count: 129, Neg. LLF: 129.11034082829246
Iteration: 16, Func. Count: 137, Neg. LLF: 129.11033887605137
Iteration: 17, Func. Count: 144, Neg. LLF: 129.11033887604864
Optimization terminated successfully (Exit mode 0)
Current function value: 129.11033887605137
Iterations: 17
Function evaluations: 144
Gradient evaluations: 17
Iteration: 1, Func. Count: 10, Neg. LLF: 133.53340862653204
Iteration: 2, Func. Count: 20, Neg. LLF: 134.21891932931553
Iteration: 3, Func. Count: 30, Neg. LLF: 143.87793394990916
Iteration: 4, Func. Count: 40, Neg. LLF: 138.40368303295517
Iteration: 5, Func. Count: 50, Neg. LLF: 138.14398399177048
Iteration: 6, Func. Count: 60, Neg. LLF: 180.0719230017224
Iteration: 7, Func. Count: 70, Neg. LLF: 166.11630722879838
Iteration: 8, Func. Count: 80, Neg. LLF: 132.6847011957613
Iteration: 9, Func. Count: 90, Neg. LLF: 129.29071173551804
Iteration: 10, Func. Count: 100, Neg. LLF: 129.15186686167863
Iteration: 11, Func. Count: 109, Neg. LLF: 129.12892527035794
Iteration: 12, Func. Count: 118, Neg. LLF: 129.1162409503805
Iteration: 13, Func. Count: 127, Neg. LLF: 129.11240332058196
Iteration: 14, Func. Count: 136, Neg. LLF: 129.11109385928287
Iteration: 15, Func. Count: 145, Neg. LLF: 129.11041858097315
Iteration: 16, Func. Count: 154, Neg. LLF: 129.11034821510938
Iteration: 17, Func. Count: 163, Neg. LLF: 129.11033922524038
Iteration: 18, Func. Count: 171, Neg. LLF: 129.1103392272536
Optimization terminated successfully (Exit mode 0)
Current function value: 129.11033922524038
Iterations: 18
Function evaluations: 171
Gradient evaluations: 18
Iteration: 1, Func. Count: 11, Neg. LLF: 131.66755435825277
Iteration: 2, Func. Count: 22, Neg. LLF: 140.60304316545484
Iteration: 3, Func. Count: 33, Neg. LLF: 139.88921559768636
Iteration: 4, Func. Count: 44, Neg. LLF: 135.8828832046783
Iteration: 5, Func. Count: 55, Neg. LLF: 131.5397465559237
Iteration: 6, Func. Count: 66, Neg. LLF: 9767.187696131878
Iteration: 7, Func. Count: 77, Neg. LLF: 129.17357247217205
Iteration: 8, Func. Count: 87, Neg. LLF: 136.51072623899668
Iteration: 9, Func. Count: 99, Neg. LLF: 129.3650136748442
Iteration: 10, Func. Count: 110, Neg. LLF: 129.31646483440335
Iteration: 11, Func. Count: 121, Neg. LLF: 129.08915036157222
Iteration: 12, Func. Count: 131, Neg. LLF: 129.08091594182585
Iteration: 13, Func. Count: 141, Neg. LLF: 129.07877691269852
Iteration: 14, Func. Count: 151, Neg. LLF: 129.0783106890604
Iteration: 15, Func. Count: 161, Neg. LLF: 129.07828321232574
Iteration: 16, Func. Count: 171, Neg. LLF: 129.07828054120517
Iteration: 17, Func. Count: 181, Neg. LLF: 129.07827986533127
Optimization terminated successfully (Exit mode 0)
Current function value: 129.07827986533127
Iterations: 17
Function evaluations: 181
Gradient evaluations: 17
Iteration: 1, Func. Count: 12, Neg. LLF: 131.4359741275923
Iteration: 2, Func. Count: 23, Neg. LLF: 136.261977809656
Iteration: 3, Func. Count: 35, Neg. LLF: 137.31543327040086
Iteration: 4, Func. Count: 48, Neg. LLF: 146.50195953939763
Iteration: 5, Func. Count: 60, Neg. LLF: 155.35895464910902
Iteration: 6, Func. Count: 72, Neg. LLF: 155.98617646079813
Iteration: 7, Func. Count: 84, Neg. LLF: 161.78714303111371
Iteration: 8, Func. Count: 96, Neg. LLF: 151.38135003409207
Iteration: 9, Func. Count: 108, Neg. LLF: 150.1119067542004
Iteration: 10, Func. Count: 120, Neg. LLF: 129.86203762373069
Iteration: 11, Func. Count: 132, Neg. LLF: 129.36775760344355
Iteration: 12, Func. Count: 144, Neg. LLF: 129.1222376410956
Iteration: 13, Func. Count: 155, Neg. LLF: 129.110268304995
Iteration: 14, Func. Count: 166, Neg. LLF: 129.0946847132583
Iteration: 15, Func. Count: 177, Neg. LLF: 129.0809737593359
Iteration: 16, Func. Count: 188, Neg. LLF: 129.07853804409805
Iteration: 17, Func. Count: 199, Neg. LLF: 129.07842288239073
Iteration: 18, Func. Count: 210, Neg. LLF: 129.0783778299133
Iteration: 19, Func. Count: 221, Neg. LLF: 129.07831102662075
Iteration: 20, Func. Count: 232, Neg. LLF: 129.07828542074714
Iteration: 21, Func. Count: 243, Neg. LLF: 129.0782802153847
Iteration: 22, Func. Count: 253, Neg. LLF: 129.07828027283608
Optimization terminated successfully (Exit mode 0)
Current function value: 129.0782802153847
Iterations: 22
Function evaluations: 253
Gradient evaluations: 22
Iteration: 1, Func. Count: 9, Neg. LLF: 140.90662723971442
Iteration: 2, Func. Count: 18, Neg. LLF: 132.19965332620563
Iteration: 3, Func. Count: 27, Neg. LLF: 131.45142360568633
Iteration: 4, Func. Count: 36, Neg. LLF: 129.81175522070134
Iteration: 5, Func. Count: 44, Neg. LLF: 137.31002964425173
Iteration: 6, Func. Count: 53, Neg. LLF: 152.3409232355205
Iteration: 7, Func. Count: 62, Neg. LLF: 130.8660490491958
Iteration: 8, Func. Count: 71, Neg. LLF: 129.12639028155937
Iteration: 9, Func. Count: 79, Neg. LLF: 129.08798377528407
Iteration: 10, Func. Count: 87, Neg. LLF: 129.07802060761026
Iteration: 11, Func. Count: 95, Neg. LLF: 129.06960079297204
Iteration: 12, Func. Count: 103, Neg. LLF: 129.05877390622197
Iteration: 13, Func. Count: 111, Neg. LLF: 129.05162002481575
Iteration: 14, Func. Count: 119, Neg. LLF: 129.0470791191297
Iteration: 15, Func. Count: 127, Neg. LLF: 129.04574349217592
Iteration: 16, Func. Count: 135, Neg. LLF: 129.0454205712097
Iteration: 17, Func. Count: 143, Neg. LLF: 129.04536984106497
Iteration: 18, Func. Count: 151, Neg. LLF: 129.0453646249344
Iteration: 19, Func. Count: 158, Neg. LLF: 129.0453645802054
Optimization terminated successfully (Exit mode 0)
Current function value: 129.0453646249344
Iterations: 19
Function evaluations: 158
Gradient evaluations: 19
Iteration: 1, Func. Count: 10, Neg. LLF: 148.87954980548616
Iteration: 2, Func. Count: 20, Neg. LLF: 134.8805142796178
Iteration: 3, Func. Count: 30, Neg. LLF: 137.98728254768153
Iteration: 4, Func. Count: 40, Neg. LLF: 167.09294944836577
Iteration: 5, Func. Count: 50, Neg. LLF: 129.06099447416105
Iteration: 6, Func. Count: 59, Neg. LLF: 129.15064918108843
Iteration: 7, Func. Count: 69, Neg. LLF: 129.03516818567883
Iteration: 8, Func. Count: 79, Neg. LLF: 128.9973557469607
Iteration: 9, Func. Count: 88, Neg. LLF: 128.9655371614471
Iteration: 10, Func. Count: 97, Neg. LLF: 128.95166940200951
Iteration: 11, Func. Count: 106, Neg. LLF: 128.93997793265973
Iteration: 12, Func. Count: 115, Neg. LLF: 128.93869499462457
Iteration: 13, Func. Count: 124, Neg. LLF: 128.93855899807977
Iteration: 14, Func. Count: 133, Neg. LLF: 128.93854369920948
Iteration: 15, Func. Count: 142, Neg. LLF: 128.9385402534634
Iteration: 16, Func. Count: 150, Neg. LLF: 128.93854025345271
Optimization terminated successfully (Exit mode 0)
Current function value: 128.9385402534634
Iterations: 16
Function evaluations: 150
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 140.6762462446211
Iteration: 2, Func. Count: 22, Neg. LLF: 133.18113355760048
Iteration: 3, Func. Count: 33, Neg. LLF: 129.81162483827518
Iteration: 4, Func. Count: 43, Neg. LLF: 158.65743798102932
Iteration: 5, Func. Count: 54, Neg. LLF: 139.52154922929688
Iteration: 6, Func. Count: 65, Neg. LLF: 170.6264231511266
Iteration: 7, Func. Count: 76, Neg. LLF: 129.232099681235
Iteration: 8, Func. Count: 87, Neg. LLF: 129.08605438159935
Iteration: 9, Func. Count: 97, Neg. LLF: 129.04258773935948
Iteration: 10, Func. Count: 107, Neg. LLF: 128.99040363888474
Iteration: 11, Func. Count: 117, Neg. LLF: 128.9046734648165
Iteration: 12, Func. Count: 127, Neg. LLF: 128.88426127051446
Iteration: 13, Func. Count: 137, Neg. LLF: 128.86440589297692
Iteration: 14, Func. Count: 147, Neg. LLF: 128.85414253833346
Iteration: 15, Func. Count: 157, Neg. LLF: 128.84813355252058
Iteration: 16, Func. Count: 167, Neg. LLF: 128.8460995553781
Iteration: 17, Func. Count: 177, Neg. LLF: 128.84549080669365
Iteration: 18, Func. Count: 187, Neg. LLF: 128.84532543272397
Iteration: 19, Func. Count: 197, Neg. LLF: 128.84517796435662
Iteration: 20, Func. Count: 207, Neg. LLF: 128.84516818694212
Iteration: 21, Func. Count: 217, Neg. LLF: 128.84516749427303
Optimization terminated successfully (Exit mode 0)
Current function value: 128.84516749427303
Iterations: 21
Function evaluations: 217
Gradient evaluations: 21
Iteration: 1, Func. Count: 12, Neg. LLF: 140.3530463665868
Iteration: 2, Func. Count: 24, Neg. LLF: 133.25950109124554
Iteration: 3, Func. Count: 36, Neg. LLF: 129.84360967114358
Iteration: 4, Func. Count: 47, Neg. LLF: 149.61383758695325
Iteration: 5, Func. Count: 60, Neg. LLF: 155.6060524677243
Iteration: 6, Func. Count: 72, Neg. LLF: 135.54949622965717
Iteration: 7, Func. Count: 85, Neg. LLF: 130.69567982972325
Iteration: 8, Func. Count: 97, Neg. LLF: 128.92953223611283
Iteration: 9, Func. Count: 109, Neg. LLF: 128.85906625004253
Iteration: 10, Func. Count: 121, Neg. LLF: 128.81409487705125
Iteration: 11, Func. Count: 132, Neg. LLF: 128.80906574201356
Iteration: 12, Func. Count: 143, Neg. LLF: 128.80697288688808
Iteration: 13, Func. Count: 154, Neg. LLF: 128.80628269396522
Iteration: 14, Func. Count: 165, Neg. LLF: 128.8061008464597
Iteration: 15, Func. Count: 176, Neg. LLF: 128.80593150017197
Iteration: 16, Func. Count: 187, Neg. LLF: 128.80591372096845
Iteration: 17, Func. Count: 198, Neg. LLF: 128.80591192342192
Iteration: 18, Func. Count: 208, Neg. LLF: 128.8059119234292
Optimization terminated successfully (Exit mode 0)
Current function value: 128.80591192342192
Iterations: 18
Function evaluations: 208
Gradient evaluations: 18
Iteration: 1, Func. Count: 13, Neg. LLF: 140.15143717928507
Iteration: 2, Func. Count: 26, Neg. LLF: 132.5431863518406
Iteration: 3, Func. Count: 39, Neg. LLF: 129.8948514467507
Iteration: 4, Func. Count: 51, Neg. LLF: 154.61762548442948
Iteration: 5, Func. Count: 65, Neg. LLF: 159.7032517318288
Iteration: 6, Func. Count: 78, Neg. LLF: 140.0710208258852
Iteration: 7, Func. Count: 91, Neg. LLF: 132.68086841023862
Iteration: 8, Func. Count: 104, Neg. LLF: 128.8534602224827
Iteration: 9, Func. Count: 116, Neg. LLF: 128.87653650682918
Iteration: 10, Func. Count: 129, Neg. LLF: 128.82304121759773
Iteration: 11, Func. Count: 141, Neg. LLF: 128.8131538326139
Iteration: 12, Func. Count: 153, Neg. LLF: 128.8030280209235
Iteration: 13, Func. Count: 165, Neg. LLF: 128.79950573427809
Iteration: 14, Func. Count: 177, Neg. LLF: 128.79463168091627
Iteration: 15, Func. Count: 189, Neg. LLF: 128.7923379856637
Iteration: 16, Func. Count: 201, Neg. LLF: 128.79207513321938
Iteration: 17, Func. Count: 213, Neg. LLF: 128.79202295731147
Iteration: 18, Func. Count: 225, Neg. LLF: 128.79199968647234
Iteration: 19, Func. Count: 237, Neg. LLF: 128.79198707009405
Iteration: 20, Func. Count: 249, Neg. LLF: 128.79198616086018
Optimization terminated successfully (Exit mode 0)
Current function value: 128.79198616086018
Iterations: 20
Function evaluations: 249
Gradient evaluations: 20
Iteration: 1, Func. Count: 10, Neg. LLF: 138.50832789011022
Iteration: 2, Func. Count: 20, Neg. LLF: 134.0512423567839
Iteration: 3, Func. Count: 30, Neg. LLF: 133.5726815802359
Iteration: 4, Func. Count: 40, Neg. LLF: 129.17835476496887
Iteration: 5, Func. Count: 49, Neg. LLF: 131.526286383864
Iteration: 6, Func. Count: 59, Neg. LLF: 130.09405684482726
Iteration: 7, Func. Count: 69, Neg. LLF: 128.5304851666718
Iteration: 8, Func. Count: 78, Neg. LLF: 128.46090589565446
Iteration: 9, Func. Count: 87, Neg. LLF: 128.43571749753468
Iteration: 10, Func. Count: 96, Neg. LLF: 128.43045371536326
Iteration: 11, Func. Count: 105, Neg. LLF: 128.42939322833632
Iteration: 12, Func. Count: 114, Neg. LLF: 128.42910507922136
Iteration: 13, Func. Count: 123, Neg. LLF: 128.4290896879552
Iteration: 14, Func. Count: 132, Neg. LLF: 128.42908618859582
Iteration: 15, Func. Count: 140, Neg. LLF: 128.429086103263
Optimization terminated successfully (Exit mode 0)
Current function value: 128.42908618859582
Iterations: 15
Function evaluations: 140
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 145.19744783073583
Iteration: 2, Func. Count: 22, Neg. LLF: 132.60329945933836
Iteration: 3, Func. Count: 33, Neg. LLF: 132.94009357566296
Iteration: 4, Func. Count: 44, Neg. LLF: 134.85324744421507
Iteration: 5, Func. Count: 55, Neg. LLF: 130.67871270723722
Iteration: 6, Func. Count: 66, Neg. LLF: 128.96886190949832
Iteration: 7, Func. Count: 77, Neg. LLF: 128.45959783809863
Iteration: 8, Func. Count: 87, Neg. LLF: 128.43903219676332
Iteration: 9, Func. Count: 97, Neg. LLF: 128.43388302883574
Iteration: 10, Func. Count: 107, Neg. LLF: 128.43037704939925
Iteration: 11, Func. Count: 117, Neg. LLF: 128.42930593177155
Iteration: 12, Func. Count: 127, Neg. LLF: 128.4290999574166
Iteration: 13, Func. Count: 137, Neg. LLF: 128.4290894694369
Iteration: 14, Func. Count: 147, Neg. LLF: 128.4290864315333
Iteration: 15, Func. Count: 156, Neg. LLF: 128.42908644593342
Optimization terminated successfully (Exit mode 0)
Current function value: 128.4290864315333
Iterations: 15
Function evaluations: 156
Gradient evaluations: 15
Iteration: 1, Func. Count: 12, Neg. LLF: 148.233853748571
Iteration: 2, Func. Count: 24, Neg. LLF: 135.64633561408036
Iteration: 3, Func. Count: 36, Neg. LLF: 150.28220251244298
Iteration: 4, Func. Count: 48, Neg. LLF: 154.70820406277213
Iteration: 5, Func. Count: 60, Neg. LLF: 129.37411506396356
Iteration: 6, Func. Count: 72, Neg. LLF: 129.94360940785825
Iteration: 7, Func. Count: 84, Neg. LLF: 129.16984092748436
Iteration: 8, Func. Count: 96, Neg. LLF: 128.4544929518364
Iteration: 9, Func. Count: 107, Neg. LLF: 128.43508233821154
Iteration: 10, Func. Count: 118, Neg. LLF: 128.43023951441143
Iteration: 11, Func. Count: 129, Neg. LLF: 128.4292912041975
Iteration: 12, Func. Count: 140, Neg. LLF: 128.42914976223244
Iteration: 13, Func. Count: 151, Neg. LLF: 128.42910233762984
Iteration: 14, Func. Count: 162, Neg. LLF: 128.42908911420827
Iteration: 15, Func. Count: 173, Neg. LLF: 128.42908661719042
Iteration: 16, Func. Count: 183, Neg. LLF: 128.4290866342165
Optimization terminated successfully (Exit mode 0)
Current function value: 128.42908661719042
Iterations: 16
Function evaluations: 183
Gradient evaluations: 16
Iteration: 1, Func. Count: 13, Neg. LLF: 132.30297752594984
Iteration: 2, Func. Count: 26, Neg. LLF: 134.90430455688286
Iteration: 3, Func. Count: 39, Neg. LLF: 131.94738231273897
Iteration: 4, Func. Count: 52, Neg. LLF: 134.8270232949487
Iteration: 5, Func. Count: 65, Neg. LLF: 145.45265456391738
Iteration: 6, Func. Count: 78, Neg. LLF: 136.99220152101836
Iteration: 7, Func. Count: 91, Neg. LLF: 130.49346660717907
Iteration: 8, Func. Count: 104, Neg. LLF: 132.26039745496846
Iteration: 9, Func. Count: 117, Neg. LLF: 128.55695213556092
Iteration: 10, Func. Count: 130, Neg. LLF: 128.39282712664738
Iteration: 11, Func. Count: 142, Neg. LLF: 128.39115736926885
Iteration: 12, Func. Count: 154, Neg. LLF: 128.39101814837636
Iteration: 13, Func. Count: 166, Neg. LLF: 128.39091181706047
Iteration: 14, Func. Count: 178, Neg. LLF: 128.39090969272897
Iteration: 15, Func. Count: 189, Neg. LLF: 128.390909692701
Optimization terminated successfully (Exit mode 0)
Current function value: 128.39090969272897
Iterations: 15
Function evaluations: 189
Gradient evaluations: 15
Iteration: 1, Func. Count: 14, Neg. LLF: 131.0013965456389
Iteration: 2, Func. Count: 27, Neg. LLF: 131.3893564783333
Iteration: 3, Func. Count: 41, Neg. LLF: 145.9124097870993
Iteration: 4, Func. Count: 55, Neg. LLF: 133.24962798941164
Iteration: 5, Func. Count: 69, Neg. LLF: 169.64324093446345
Iteration: 6, Func. Count: 83, Neg. LLF: 158.7448877649465
Iteration: 7, Func. Count: 97, Neg. LLF: 136.48497192097471
Iteration: 8, Func. Count: 111, Neg. LLF: 134.50913524744084
Iteration: 9, Func. Count: 125, Neg. LLF: 129.8811889274173
Iteration: 10, Func. Count: 139, Neg. LLF: 129.1980508732935
Iteration: 11, Func. Count: 153, Neg. LLF: 128.41383891823867
Iteration: 12, Func. Count: 166, Neg. LLF: 128.39887894333765
Iteration: 13, Func. Count: 179, Neg. LLF: 128.3932861908431
Iteration: 14, Func. Count: 192, Neg. LLF: 128.39097338221168
Iteration: 15, Func. Count: 205, Neg. LLF: 128.39091398000835
Iteration: 16, Func. Count: 218, Neg. LLF: 128.39090951540933
Iteration: 17, Func. Count: 230, Neg. LLF: 128.39090957824266
Optimization terminated successfully (Exit mode 0)
Current function value: 128.39090951540933
Iterations: 17
Function evaluations: 230
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 132.40600798251927
Iteration: 2, Func. Count: 22, Neg. LLF: 138.86996301401254
Iteration: 3, Func. Count: 33, Neg. LLF: 129.14005017965883
Iteration: 4, Func. Count: 43, Neg. LLF: 129.71540243531499
Iteration: 5, Func. Count: 54, Neg. LLF: 178.15091872285157
Iteration: 6, Func. Count: 65, Neg. LLF: 140.58413021243203
Iteration: 7, Func. Count: 76, Neg. LLF: 130.30406225879972
Iteration: 8, Func. Count: 87, Neg. LLF: 128.47955629010366
Iteration: 9, Func. Count: 98, Neg. LLF: 129.40226136208076
Iteration: 10, Func. Count: 109, Neg. LLF: 128.40736896174332
Iteration: 11, Func. Count: 119, Neg. LLF: 128.40588741189416
Iteration: 12, Func. Count: 129, Neg. LLF: 128.40479718443552
Iteration: 13, Func. Count: 139, Neg. LLF: 128.40470297548686
Iteration: 14, Func. Count: 149, Neg. LLF: 128.4046741020077
Iteration: 15, Func. Count: 159, Neg. LLF: 128.40466548826825
Iteration: 16, Func. Count: 169, Neg. LLF: 128.40466437912002
Iteration: 17, Func. Count: 178, Neg. LLF: 128.40466437912244
Optimization terminated successfully (Exit mode 0)
Current function value: 128.40466437912002
Iterations: 17
Function evaluations: 178
Gradient evaluations: 17
Iteration: 1, Func. Count: 12, Neg. LLF: 144.9736656574045
Iteration: 2, Func. Count: 24, Neg. LLF: 132.65603795567966
Iteration: 3, Func. Count: 36, Neg. LLF: 132.80154596547794
Iteration: 4, Func. Count: 48, Neg. LLF: 131.48566870846057
Iteration: 5, Func. Count: 60, Neg. LLF: 131.6041234264387
Iteration: 6, Func. Count: 72, Neg. LLF: 130.84620795866735
Iteration: 7, Func. Count: 84, Neg. LLF: 128.44073212346123
Iteration: 8, Func. Count: 95, Neg. LLF: 128.52087842349303
Iteration: 9, Func. Count: 107, Neg. LLF: 128.4141695675835
Iteration: 10, Func. Count: 118, Neg. LLF: 128.40616648898117
Iteration: 11, Func. Count: 129, Neg. LLF: 128.40561576903505
Iteration: 12, Func. Count: 140, Neg. LLF: 128.40471939782884
Iteration: 13, Func. Count: 151, Neg. LLF: 128.40466591497812
Iteration: 14, Func. Count: 162, Neg. LLF: 128.40466436878265
Iteration: 15, Func. Count: 172, Neg. LLF: 128.40466438488318
Optimization terminated successfully (Exit mode 0)
Current function value: 128.40466436878265
Iterations: 15
Function evaluations: 172
Gradient evaluations: 15
Iteration: 1, Func. Count: 13, Neg. LLF: 148.23854845312016
Iteration: 2, Func. Count: 26, Neg. LLF: 135.64542187189548
Iteration: 3, Func. Count: 39, Neg. LLF: 154.52815437059112
Iteration: 4, Func. Count: 52, Neg. LLF: 151.7571154947148
Iteration: 5, Func. Count: 65, Neg. LLF: 131.59862487509488
Iteration: 6, Func. Count: 78, Neg. LLF: 130.7006964175431
Iteration: 7, Func. Count: 91, Neg. LLF: 129.2105245865077
Iteration: 8, Func. Count: 104, Neg. LLF: 128.43330746881568
Iteration: 9, Func. Count: 116, Neg. LLF: 128.50753554099697
Iteration: 10, Func. Count: 129, Neg. LLF: 128.41535291940735
Iteration: 11, Func. Count: 141, Neg. LLF: 128.40527303604895
Iteration: 12, Func. Count: 153, Neg. LLF: 128.40483122527272
Iteration: 13, Func. Count: 165, Neg. LLF: 128.4047023328235
Iteration: 14, Func. Count: 177, Neg. LLF: 128.40467343501112
Iteration: 15, Func. Count: 189, Neg. LLF: 128.40466610107777
Iteration: 16, Func. Count: 201, Neg. LLF: 128.40466461510826
Iteration: 17, Func. Count: 212, Neg. LLF: 128.40466463478057
Optimization terminated successfully (Exit mode 0)
Current function value: 128.40466461510826
Iterations: 17
Function evaluations: 212
Gradient evaluations: 17
Iteration: 1, Func. Count: 14, Neg. LLF: 132.22377871514936
Iteration: 2, Func. Count: 28, Neg. LLF: 134.51561462705757
Iteration: 3, Func. Count: 42, Neg. LLF: 132.9491997733618
Iteration: 4, Func. Count: 56, Neg. LLF: 146.28113771936162
Iteration: 5, Func. Count: 70, Neg. LLF: 1056.1477141599948
Iteration: 6, Func. Count: 84, Neg. LLF: 131.33375360232017
Iteration: 7, Func. Count: 98, Neg. LLF: 130.28180182586425
Iteration: 8, Func. Count: 112, Neg. LLF: 128.7597345975518
Iteration: 9, Func. Count: 126, Neg. LLF: 128.4139237882797
Iteration: 10, Func. Count: 139, Neg. LLF: 128.4094663430284
Iteration: 11, Func. Count: 153, Neg. LLF: 128.50193816996986
Iteration: 12, Func. Count: 167, Neg. LLF: 128.39737781041688
Iteration: 13, Func. Count: 181, Neg. LLF: 128.39019129618154
Iteration: 14, Func. Count: 194, Neg. LLF: 128.38993300653408
Iteration: 15, Func. Count: 207, Neg. LLF: 128.38992680759046
Iteration: 16, Func. Count: 220, Neg. LLF: 128.38992598862873
Optimization terminated successfully (Exit mode 0)
Current function value: 128.38992598862873
Iterations: 16
Function evaluations: 220
Gradient evaluations: 16
Iteration: 1, Func. Count: 15, Neg. LLF: 130.98196308464586
Iteration: 2, Func. Count: 29, Neg. LLF: 131.44120282505617
Iteration: 3, Func. Count: 44, Neg. LLF: 148.41795392821055
Iteration: 4, Func. Count: 59, Neg. LLF: 137.0895145067691
Iteration: 5, Func. Count: 74, Neg. LLF: 154.83193472674492
Iteration: 6, Func. Count: 89, Neg. LLF: 136.44430264875754
Iteration: 7, Func. Count: 104, Neg. LLF: 140.55687921249609
Iteration: 8, Func. Count: 119, Neg. LLF: 135.0013652428447
Iteration: 9, Func. Count: 134, Neg. LLF: 130.51621334703958
Iteration: 10, Func. Count: 149, Neg. LLF: 129.42276422639154
Iteration: 11, Func. Count: 164, Neg. LLF: 129.05790046353331
Iteration: 12, Func. Count: 179, Neg. LLF: 128.43126261604206
Iteration: 13, Func. Count: 194, Neg. LLF: 128.46669148760378
Iteration: 14, Func. Count: 209, Neg. LLF: 128.3943570212242
Iteration: 15, Func. Count: 223, Neg. LLF: 128.39037510828985
Iteration: 16, Func. Count: 237, Neg. LLF: 128.38999836698258
Iteration: 17, Func. Count: 251, Neg. LLF: 128.38992643257447
Iteration: 18, Func. Count: 265, Neg. LLF: 128.38992592450015
Optimization terminated successfully (Exit mode 0)
Current function value: 128.38992592450015
Iterations: 18
Function evaluations: 265
Gradient evaluations: 18
Iteration: 1, Func. Count: 8, Neg. LLF: 131.85805060712568
Iteration: 2, Func. Count: 16, Neg. LLF: 144.7963329404749
Iteration: 3, Func. Count: 25, Neg. LLF: 133.04270226612567
Iteration: 4, Func. Count: 33, Neg. LLF: 129.2457100608822
Iteration: 5, Func. Count: 40, Neg. LLF: 144.15530529019355
Iteration: 6, Func. Count: 48, Neg. LLF: 136.71480608371266
Iteration: 7, Func. Count: 56, Neg. LLF: 129.92406892847828
Iteration: 8, Func. Count: 64, Neg. LLF: 129.03004173117057
Iteration: 9, Func. Count: 71, Neg. LLF: 129.02850715771797
Iteration: 10, Func. Count: 78, Neg. LLF: 129.0280752802653
Iteration: 11, Func. Count: 85, Neg. LLF: 129.0278256636997
Iteration: 12, Func. Count: 92, Neg. LLF: 129.02781412953098
Iteration: 13, Func. Count: 99, Neg. LLF: 129.02781274671867
Iteration: 14, Func. Count: 105, Neg. LLF: 129.0278127467091
Optimization terminated successfully (Exit mode 0)
Current function value: 129.02781274671867
Iterations: 14
Function evaluations: 105
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 130.87380902794055
Iteration: 2, Func. Count: 17, Neg. LLF: 131.7731946240745
Iteration: 3, Func. Count: 27, Neg. LLF: 143.40428148555915
Iteration: 4, Func. Count: 36, Neg. LLF: 136.7090278512117
Iteration: 5, Func. Count: 45, Neg. LLF: 157.24018059060504
Iteration: 6, Func. Count: 54, Neg. LLF: 149.62111424411876
Iteration: 7, Func. Count: 63, Neg. LLF: 134.7564089945538
Iteration: 8, Func. Count: 72, Neg. LLF: 129.3373724731553
Iteration: 9, Func. Count: 81, Neg. LLF: 129.09751924029368
Iteration: 10, Func. Count: 90, Neg. LLF: 129.02878146289098
Iteration: 11, Func. Count: 98, Neg. LLF: 129.02788984516
Iteration: 12, Func. Count: 106, Neg. LLF: 129.02781823964534
Iteration: 13, Func. Count: 114, Neg. LLF: 129.02781272151867
Iteration: 14, Func. Count: 121, Neg. LLF: 129.02781272576038
Optimization terminated successfully (Exit mode 0)
Current function value: 129.02781272151867
Iterations: 14
Function evaluations: 121
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 130.86880666567737
Iteration: 2, Func. Count: 19, Neg. LLF: 131.6833847969266
Iteration: 3, Func. Count: 30, Neg. LLF: 142.6979079728194
Iteration: 4, Func. Count: 40, Neg. LLF: 136.74724196495225
Iteration: 5, Func. Count: 50, Neg. LLF: 160.756682830695
Iteration: 6, Func. Count: 60, Neg. LLF: 150.07904849458006
Iteration: 7, Func. Count: 70, Neg. LLF: 135.22470011525434
Iteration: 8, Func. Count: 80, Neg. LLF: 129.36147001251115
Iteration: 9, Func. Count: 90, Neg. LLF: 129.10276886057335
Iteration: 10, Func. Count: 100, Neg. LLF: 129.02861808973304
Iteration: 11, Func. Count: 109, Neg. LLF: 129.02786498757087
Iteration: 12, Func. Count: 118, Neg. LLF: 129.02781852846704
Iteration: 13, Func. Count: 127, Neg. LLF: 129.02781265592506
Iteration: 14, Func. Count: 135, Neg. LLF: 129.02781266882016
Optimization terminated successfully (Exit mode 0)
Current function value: 129.02781265592506
Iterations: 14
Function evaluations: 135
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 130.87235143274893
Iteration: 2, Func. Count: 21, Neg. LLF: 131.74489911454185
Iteration: 3, Func. Count: 33, Neg. LLF: 142.9088698402577
Iteration: 4, Func. Count: 44, Neg. LLF: 136.75509401709445
Iteration: 5, Func. Count: 55, Neg. LLF: 162.86474734600503
Iteration: 6, Func. Count: 66, Neg. LLF: 149.9263335263111
Iteration: 7, Func. Count: 77, Neg. LLF: 133.37663895956908
Iteration: 8, Func. Count: 88, Neg. LLF: 129.4744930175676
Iteration: 9, Func. Count: 99, Neg. LLF: 129.06251301134108
Iteration: 10, Func. Count: 110, Neg. LLF: 129.0291320501645
Iteration: 11, Func. Count: 120, Neg. LLF: 129.0279105275644
Iteration: 12, Func. Count: 130, Neg. LLF: 129.02781738100413
Iteration: 13, Func. Count: 140, Neg. LLF: 129.02781271850418
Iteration: 14, Func. Count: 149, Neg. LLF: 129.02781274890805
Optimization terminated successfully (Exit mode 0)
Current function value: 129.02781271850418
Iterations: 14
Function evaluations: 149
Gradient evaluations: 14
Iteration: 1, Func. Count: 12, Neg. LLF: 130.86839669401525
Iteration: 2, Func. Count: 23, Neg. LLF: 131.90835342960224
Iteration: 3, Func. Count: 36, Neg. LLF: 141.24081774787064
Iteration: 4, Func. Count: 48, Neg. LLF: 136.54867963497622
Iteration: 5, Func. Count: 60, Neg. LLF: 169.37025694992968
Iteration: 6, Func. Count: 72, Neg. LLF: 150.50781943828156
Iteration: 7, Func. Count: 84, Neg. LLF: 132.00330328733995
Iteration: 8, Func. Count: 96, Neg. LLF: 129.38100697771677
Iteration: 9, Func. Count: 108, Neg. LLF: 129.0596901597309
Iteration: 10, Func. Count: 120, Neg. LLF: 129.0285319392935
Iteration: 11, Func. Count: 131, Neg. LLF: 129.02788342376428
Iteration: 12, Func. Count: 142, Neg. LLF: 129.02781730150048
Iteration: 13, Func. Count: 153, Neg. LLF: 129.02781265963577
Iteration: 14, Func. Count: 163, Neg. LLF: 129.0278127113756
Optimization terminated successfully (Exit mode 0)
Current function value: 129.02781265963577
Iterations: 14
Function evaluations: 163
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 133.73592186635454
Iteration: 2, Func. Count: 18, Neg. LLF: 135.1234324858948
Iteration: 3, Func. Count: 27, Neg. LLF: 139.55913183589408
Iteration: 4, Func. Count: 36, Neg. LLF: 137.59940350466866
Iteration: 5, Func. Count: 45, Neg. LLF: 6902.738972846999
Iteration: 6, Func. Count: 54, Neg. LLF: 144.65914227445495
Iteration: 7, Func. Count: 63, Neg. LLF: 133.78525741283073
Iteration: 8, Func. Count: 72, Neg. LLF: 129.22506422796909
Iteration: 9, Func. Count: 81, Neg. LLF: 129.96375191170122
Iteration: 10, Func. Count: 90, Neg. LLF: 128.89461437331462
Iteration: 11, Func. Count: 99, Neg. LLF: 128.87182278556088
Iteration: 12, Func. Count: 107, Neg. LLF: 128.86904897860958
Iteration: 13, Func. Count: 115, Neg. LLF: 128.86828803604286
Iteration: 14, Func. Count: 123, Neg. LLF: 128.86782933902376
Iteration: 15, Func. Count: 131, Neg. LLF: 128.86779137545346
Iteration: 16, Func. Count: 138, Neg. LLF: 128.86779137542578
Optimization terminated successfully (Exit mode 0)
Current function value: 128.86779137545346
Iterations: 16
Function evaluations: 138
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 133.40507434903714
Iteration: 2, Func. Count: 20, Neg. LLF: 143.49178697975978
Iteration: 3, Func. Count: 30, Neg. LLF: 140.1115501219506
Iteration: 4, Func. Count: 40, Neg. LLF: 171.21137442546092
Iteration: 5, Func. Count: 50, Neg. LLF: 149.0890719184116
Iteration: 6, Func. Count: 60, Neg. LLF: 64847.68518997955
Iteration: 7, Func. Count: 70, Neg. LLF: 130.85588579281816
Iteration: 8, Func. Count: 80, Neg. LLF: 174.13325782188474
Iteration: 9, Func. Count: 90, Neg. LLF: 129.6857809890353
Iteration: 10, Func. Count: 100, Neg. LLF: 128.85289897954283
Iteration: 11, Func. Count: 109, Neg. LLF: 128.8441065616017
Iteration: 12, Func. Count: 118, Neg. LLF: 128.8428591408892
Iteration: 13, Func. Count: 127, Neg. LLF: 128.84261341726884
Iteration: 14, Func. Count: 136, Neg. LLF: 128.84258659535033
Iteration: 15, Func. Count: 145, Neg. LLF: 128.84258477101778
Iteration: 16, Func. Count: 153, Neg. LLF: 128.84258477097544
Optimization terminated successfully (Exit mode 0)
Current function value: 128.84258477101778
Iterations: 16
Function evaluations: 153
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 133.3767990415868
Iteration: 2, Func. Count: 22, Neg. LLF: 143.51685629723474
Iteration: 3, Func. Count: 33, Neg. LLF: 140.07842295542582
Iteration: 4, Func. Count: 44, Neg. LLF: 166.2006557746423
Iteration: 5, Func. Count: 55, Neg. LLF: 146.0903641333473
Iteration: 6, Func. Count: 66, Neg. LLF: 38611.43440959515
Iteration: 7, Func. Count: 77, Neg. LLF: 129.61169786520088
Iteration: 8, Func. Count: 88, Neg. LLF: 175.86893675648696
Iteration: 9, Func. Count: 99, Neg. LLF: 128.96909998833354
Iteration: 10, Func. Count: 110, Neg. LLF: 129.11687955680944
Iteration: 11, Func. Count: 121, Neg. LLF: 128.84370596305115
Iteration: 12, Func. Count: 131, Neg. LLF: 128.8427092396929
Iteration: 13, Func. Count: 141, Neg. LLF: 128.8425941419723
Iteration: 14, Func. Count: 151, Neg. LLF: 128.84258726623784
Iteration: 15, Func. Count: 161, Neg. LLF: 128.84258567982192
Iteration: 16, Func. Count: 171, Neg. LLF: 128.84258455476728
Iteration: 17, Func. Count: 180, Neg. LLF: 128.84258456968266
Optimization terminated successfully (Exit mode 0)
Current function value: 128.84258455476728
Iterations: 17
Function evaluations: 180
Gradient evaluations: 17
Iteration: 1, Func. Count: 12, Neg. LLF: 133.2431236862109
Iteration: 2, Func. Count: 24, Neg. LLF: 143.0209820356844
Iteration: 3, Func. Count: 36, Neg. LLF: 132.60968793582674
Iteration: 4, Func. Count: 48, Neg. LLF: 184.94501736422154
Iteration: 5, Func. Count: 60, Neg. LLF: 146.8878977953512
Iteration: 6, Func. Count: 72, Neg. LLF: 208.90486758733377
Iteration: 7, Func. Count: 84, Neg. LLF: 129.3680952372799
Iteration: 8, Func. Count: 96, Neg. LLF: 134.0364913094459
Iteration: 9, Func. Count: 108, Neg. LLF: 128.93285691050983
Iteration: 10, Func. Count: 120, Neg. LLF: 129.07083747762513
Iteration: 11, Func. Count: 132, Neg. LLF: 128.84335314694388
Iteration: 12, Func. Count: 143, Neg. LLF: 128.84266292781652
Iteration: 13, Func. Count: 154, Neg. LLF: 128.84260359811105
Iteration: 14, Func. Count: 165, Neg. LLF: 128.84259243035115
Iteration: 15, Func. Count: 176, Neg. LLF: 128.84258523171025
Iteration: 16, Func. Count: 187, Neg. LLF: 128.8425844669714
Optimization terminated successfully (Exit mode 0)
Current function value: 128.8425844669714
Iterations: 16
Function evaluations: 187
Gradient evaluations: 16
Iteration: 1, Func. Count: 13, Neg. LLF: 133.02560496457977
Iteration: 2, Func. Count: 26, Neg. LLF: 142.36922990768454
Iteration: 3, Func. Count: 39, Neg. LLF: 131.1013956448573
Iteration: 4, Func. Count: 52, Neg. LLF: 190.0118887059643
Iteration: 5, Func. Count: 65, Neg. LLF: 143.8889525754048
Iteration: 6, Func. Count: 78, Neg. LLF: 525.934156182882
Iteration: 7, Func. Count: 91, Neg. LLF: 130.6594008802544
Iteration: 8, Func. Count: 104, Neg. LLF: 128.94985318122366
Iteration: 9, Func. Count: 116, Neg. LLF: 131.31019051079966
Iteration: 10, Func. Count: 129, Neg. LLF: 128.91985323644798
Iteration: 11, Func. Count: 142, Neg. LLF: 128.85366859559005
Iteration: 12, Func. Count: 155, Neg. LLF: 128.8436171683123
Iteration: 13, Func. Count: 167, Neg. LLF: 128.84285342095095
Iteration: 14, Func. Count: 179, Neg. LLF: 128.84268211995817
Iteration: 15, Func. Count: 191, Neg. LLF: 128.84258828945417
Iteration: 16, Func. Count: 203, Neg. LLF: 128.84258470210736
Iteration: 17, Func. Count: 214, Neg. LLF: 128.84258475878988
Optimization terminated successfully (Exit mode 0)
Current function value: 128.84258470210736
Iterations: 17
Function evaluations: 214
Gradient evaluations: 17
Iteration: 1, Func. Count: 10, Neg. LLF: 139.49525056003947
Iteration: 2, Func. Count: 20, Neg. LLF: 132.8130438482956
Iteration: 3, Func. Count: 31, Neg. LLF: 137.65426097821523
Iteration: 4, Func. Count: 41, Neg. LLF: 131.70436375380012
Iteration: 5, Func. Count: 51, Neg. LLF: 129.50262854585205
Iteration: 6, Func. Count: 60, Neg. LLF: 134.41296219595452
Iteration: 7, Func. Count: 70, Neg. LLF: 130.44935913948157
Iteration: 8, Func. Count: 80, Neg. LLF: 128.68238926992387
Iteration: 9, Func. Count: 89, Neg. LLF: 152.67148149621437
Iteration: 10, Func. Count: 99, Neg. LLF: 128.59965929537756
Iteration: 11, Func. Count: 108, Neg. LLF: 128.57911658717433
Iteration: 12, Func. Count: 117, Neg. LLF: 128.57774510241444
Iteration: 13, Func. Count: 126, Neg. LLF: 128.57672796918328
Iteration: 14, Func. Count: 135, Neg. LLF: 128.57573851717476
Iteration: 15, Func. Count: 144, Neg. LLF: 128.57530704728035
Iteration: 16, Func. Count: 153, Neg. LLF: 128.57519764865916
Iteration: 17, Func. Count: 162, Neg. LLF: 128.57519016850708
Iteration: 18, Func. Count: 170, Neg. LLF: 128.57519011611424
Optimization terminated successfully (Exit mode 0)
Current function value: 128.57519016850708
Iterations: 18
Function evaluations: 170
Gradient evaluations: 18
Iteration: 1, Func. Count: 11, Neg. LLF: 139.59001950417624
Iteration: 2, Func. Count: 22, Neg. LLF: 131.52852903485808
Iteration: 3, Func. Count: 33, Neg. LLF: 131.2919849163235
Iteration: 4, Func. Count: 44, Neg. LLF: 220.85114863620583
Iteration: 5, Func. Count: 55, Neg. LLF: 133.88857308798592
Iteration: 6, Func. Count: 66, Neg. LLF: 130.31328223937314
Iteration: 7, Func. Count: 77, Neg. LLF: 129.67996659345178
Iteration: 8, Func. Count: 88, Neg. LLF: 129.1978204600431
Iteration: 9, Func. Count: 99, Neg. LLF: 128.81084791565394
Iteration: 10, Func. Count: 110, Neg. LLF: 128.57882742247662
Iteration: 11, Func. Count: 120, Neg. LLF: 128.59219898922055
Iteration: 12, Func. Count: 131, Neg. LLF: 128.57568131812937
Iteration: 13, Func. Count: 141, Neg. LLF: 128.57521764453983
Iteration: 14, Func. Count: 151, Neg. LLF: 128.57519043809205
Iteration: 15, Func. Count: 161, Neg. LLF: 128.57518976154938
Optimization terminated successfully (Exit mode 0)
Current function value: 128.57518976154938
Iterations: 15
Function evaluations: 161
Gradient evaluations: 15
Iteration: 1, Func. Count: 12, Neg. LLF: 139.53363323612214
Iteration: 2, Func. Count: 24, Neg. LLF: 132.14397143023274
Iteration: 3, Func. Count: 36, Neg. LLF: 131.15396703724497
Iteration: 4, Func. Count: 48, Neg. LLF: 411.5843556700704
Iteration: 5, Func. Count: 60, Neg. LLF: 151.15864408997084
Iteration: 6, Func. Count: 72, Neg. LLF: 135.9427588369449
Iteration: 7, Func. Count: 84, Neg. LLF: 131.32351956616108
Iteration: 8, Func. Count: 96, Neg. LLF: 131.0236952651404
Iteration: 9, Func. Count: 108, Neg. LLF: 128.66915711897565
Iteration: 10, Func. Count: 120, Neg. LLF: 128.76390194951028
Iteration: 11, Func. Count: 132, Neg. LLF: 128.58729767782742
Iteration: 12, Func. Count: 143, Neg. LLF: 128.57852236068862
Iteration: 13, Func. Count: 154, Neg. LLF: 128.57789345366257
Iteration: 14, Func. Count: 165, Neg. LLF: 128.57908026352345
Iteration: 15, Func. Count: 177, Neg. LLF: 128.57622394192018
Iteration: 16, Func. Count: 188, Neg. LLF: 128.57525968193428
Iteration: 17, Func. Count: 199, Neg. LLF: 128.57519800729662
Iteration: 18, Func. Count: 210, Neg. LLF: 128.57519006933242
Iteration: 19, Func. Count: 220, Neg. LLF: 128.5751900708816
Optimization terminated successfully (Exit mode 0)
Current function value: 128.57519006933242
Iterations: 19
Function evaluations: 220
Gradient evaluations: 19
Iteration: 1, Func. Count: 13, Neg. LLF: 139.63427240642815
Iteration: 2, Func. Count: 26, Neg. LLF: 132.34118890018811
Iteration: 3, Func. Count: 39, Neg. LLF: 131.38160597771048
Iteration: 4, Func. Count: 52, Neg. LLF: 207.4565405735877
Iteration: 5, Func. Count: 65, Neg. LLF: 177.38456991384885
Iteration: 6, Func. Count: 78, Neg. LLF: 137.06295672206943
Iteration: 7, Func. Count: 91, Neg. LLF: 130.92814956910246
Iteration: 8, Func. Count: 104, Neg. LLF: 131.39040454175
Iteration: 9, Func. Count: 117, Neg. LLF: 128.63881519580698
Iteration: 10, Func. Count: 129, Neg. LLF: 128.59538510405687
Iteration: 11, Func. Count: 141, Neg. LLF: 128.6331587884795
Iteration: 12, Func. Count: 154, Neg. LLF: 128.57917526694598
Iteration: 13, Func. Count: 166, Neg. LLF: 128.57786557144618
Iteration: 14, Func. Count: 178, Neg. LLF: 128.57623625077173
Iteration: 15, Func. Count: 190, Neg. LLF: 128.57533345303082
Iteration: 16, Func. Count: 202, Neg. LLF: 128.57520080026154
Iteration: 17, Func. Count: 214, Neg. LLF: 128.57519073470166
Iteration: 18, Func. Count: 226, Neg. LLF: 128.57518971830797
Iteration: 19, Func. Count: 237, Neg. LLF: 128.5751897481503
Optimization terminated successfully (Exit mode 0)
Current function value: 128.57518971830797
Iterations: 19
Function evaluations: 237
Gradient evaluations: 19
Iteration: 1, Func. Count: 14, Neg. LLF: 139.53832176828496
Iteration: 2, Func. Count: 28, Neg. LLF: 131.9772560817177
Iteration: 3, Func. Count: 42, Neg. LLF: 136.36671612671807
Iteration: 4, Func. Count: 56, Neg. LLF: 203.7259632795824
Iteration: 5, Func. Count: 70, Neg. LLF: 144.5419773982638
Iteration: 6, Func. Count: 84, Neg. LLF: 215.00826188000008
Iteration: 7, Func. Count: 98, Neg. LLF: 129.85904636037102
Iteration: 8, Func. Count: 112, Neg. LLF: 132.9793741744225
Iteration: 9, Func. Count: 126, Neg. LLF: 129.12835043771415
Iteration: 10, Func. Count: 140, Neg. LLF: 128.58750325090648
Iteration: 11, Func. Count: 153, Neg. LLF: 128.67625369258732
Iteration: 12, Func. Count: 167, Neg. LLF: 128.5877861628304
Iteration: 13, Func. Count: 181, Neg. LLF: 128.57831013767833
Iteration: 14, Func. Count: 194, Neg. LLF: 128.5766169291899
Iteration: 15, Func. Count: 207, Neg. LLF: 128.57580258840275
Iteration: 16, Func. Count: 220, Neg. LLF: 128.57527627509344
Iteration: 17, Func. Count: 233, Neg. LLF: 128.57519611633552
Iteration: 18, Func. Count: 246, Neg. LLF: 128.57519009193848
Iteration: 19, Func. Count: 258, Neg. LLF: 128.57519013647158
Optimization terminated successfully (Exit mode 0)
Current function value: 128.57519009193848
Iterations: 19
Function evaluations: 258
Gradient evaluations: 19
Iteration: 1, Func. Count: 11, Neg. LLF: 135.2075338272127
Iteration: 2, Func. Count: 22, Neg. LLF: 134.19697697705647
Iteration: 3, Func. Count: 33, Neg. LLF: 135.71380590533977
Iteration: 4, Func. Count: 45, Neg. LLF: 129.03381046186365
Iteration: 5, Func. Count: 55, Neg. LLF: 133.282556356026
Iteration: 6, Func. Count: 66, Neg. LLF: 130.68585302183487
Iteration: 7, Func. Count: 77, Neg. LLF: 129.00217201766105
Iteration: 8, Func. Count: 88, Neg. LLF: 130.98822481886833
Iteration: 9, Func. Count: 99, Neg. LLF: 128.41236297889225
Iteration: 10, Func. Count: 110, Neg. LLF: 128.22933547277938
Iteration: 11, Func. Count: 120, Neg. LLF: 128.22335833519017
Iteration: 12, Func. Count: 130, Neg. LLF: 128.2225794126137
Iteration: 13, Func. Count: 140, Neg. LLF: 128.22238740248505
Iteration: 14, Func. Count: 150, Neg. LLF: 128.222371569743
Iteration: 15, Func. Count: 160, Neg. LLF: 128.2223705811524
Optimization terminated successfully (Exit mode 0)
Current function value: 128.2223705811524
Iterations: 15
Function evaluations: 160
Gradient evaluations: 15
Iteration: 1, Func. Count: 12, Neg. LLF: 137.01248033113993
Iteration: 2, Func. Count: 24, Neg. LLF: 131.885482034857
Iteration: 3, Func. Count: 36, Neg. LLF: 133.45213488547114
Iteration: 4, Func. Count: 49, Neg. LLF: 155.52955339377664
Iteration: 5, Func. Count: 61, Neg. LLF: 166.18909968858557
Iteration: 6, Func. Count: 73, Neg. LLF: 163.14775414119052
Iteration: 7, Func. Count: 85, Neg. LLF: 132.75539268877253
Iteration: 8, Func. Count: 97, Neg. LLF: 129.20383061115254
Iteration: 9, Func. Count: 109, Neg. LLF: 128.45517578938805
Iteration: 10, Func. Count: 121, Neg. LLF: 128.26272963517866
Iteration: 11, Func. Count: 132, Neg. LLF: 128.23027808394093
Iteration: 12, Func. Count: 143, Neg. LLF: 128.22449235587732
Iteration: 13, Func. Count: 154, Neg. LLF: 128.2226478462465
Iteration: 14, Func. Count: 165, Neg. LLF: 128.22241617127082
Iteration: 15, Func. Count: 176, Neg. LLF: 128.22237561534303
Iteration: 16, Func. Count: 187, Neg. LLF: 128.22237084712444
Iteration: 17, Func. Count: 197, Neg. LLF: 128.22237086358345
Optimization terminated successfully (Exit mode 0)
Current function value: 128.22237084712444
Iterations: 17
Function evaluations: 197
Gradient evaluations: 17
Iteration: 1, Func. Count: 13, Neg. LLF: 139.5421498848692
Iteration: 2, Func. Count: 26, Neg. LLF: 132.1389014593187
Iteration: 3, Func. Count: 39, Neg. LLF: 131.8851186782192
Iteration: 4, Func. Count: 53, Neg. LLF: 238.97196016297357
Iteration: 5, Func. Count: 66, Neg. LLF: 152.70658434409214
Iteration: 6, Func. Count: 79, Neg. LLF: 140.99434688232157
Iteration: 7, Func. Count: 92, Neg. LLF: 144.91786681962347
Iteration: 8, Func. Count: 105, Neg. LLF: 129.50044635420377
Iteration: 9, Func. Count: 118, Neg. LLF: 128.27850244712383
Iteration: 10, Func. Count: 130, Neg. LLF: 128.27217280217528
Iteration: 11, Func. Count: 143, Neg. LLF: 128.36191834509123
Iteration: 12, Func. Count: 156, Neg. LLF: 128.22969886170966
Iteration: 13, Func. Count: 168, Neg. LLF: 128.2230825287479
Iteration: 14, Func. Count: 180, Neg. LLF: 128.22239059122103
Iteration: 15, Func. Count: 192, Neg. LLF: 128.22237169857925
Iteration: 16, Func. Count: 204, Neg. LLF: 128.22237058731196
Iteration: 17, Func. Count: 215, Neg. LLF: 128.2223706133597
Optimization terminated successfully (Exit mode 0)
Current function value: 128.22237058731196
Iterations: 17
Function evaluations: 215
Gradient evaluations: 17
Iteration: 1, Func. Count: 14, Neg. LLF: 139.50735597833778
Iteration: 2, Func. Count: 28, Neg. LLF: 132.69466733853181
Iteration: 3, Func. Count: 42, Neg. LLF: 129.10840509181574
Iteration: 4, Func. Count: 55, Neg. LLF: 485.08424984478444
Iteration: 5, Func. Count: 69, Neg. LLF: 133.24272685260522
Iteration: 6, Func. Count: 83, Neg. LLF: 133.61752623115905
Iteration: 7, Func. Count: 97, Neg. LLF: 128.50205162669477
Iteration: 8, Func. Count: 111, Neg. LLF: 128.24694477310092
Iteration: 9, Func. Count: 125, Neg. LLF: 128.46748436539465
Iteration: 10, Func. Count: 139, Neg. LLF: 128.22289876466786
Iteration: 11, Func. Count: 152, Neg. LLF: 128.2225156054038
Iteration: 12, Func. Count: 165, Neg. LLF: 128.22239213061607
Iteration: 13, Func. Count: 178, Neg. LLF: 128.2223790081255
Iteration: 14, Func. Count: 191, Neg. LLF: 128.22237156980378
Iteration: 15, Func. Count: 204, Neg. LLF: 128.2223706341683
Optimization terminated successfully (Exit mode 0)
Current function value: 128.2223706341683
Iterations: 15
Function evaluations: 204
Gradient evaluations: 15
Iteration: 1, Func. Count: 15, Neg. LLF: 139.46301236358025
Iteration: 2, Func. Count: 30, Neg. LLF: 131.76093961553758
Iteration: 3, Func. Count: 45, Neg. LLF: 130.90491292871826
Iteration: 4, Func. Count: 60, Neg. LLF: 1359454.8251101708
Iteration: 5, Func. Count: 75, Neg. LLF: 134.66261474304198
Iteration: 6, Func. Count: 90, Neg. LLF: 135.447840205302
Iteration: 7, Func. Count: 105, Neg. LLF: 128.5502268644445
Iteration: 8, Func. Count: 120, Neg. LLF: 128.59895673375985
Iteration: 9, Func. Count: 135, Neg. LLF: 128.25731043326405
Iteration: 10, Func. Count: 149, Neg. LLF: 128.2240022449943
Iteration: 11, Func. Count: 163, Neg. LLF: 128.2225831391082
Iteration: 12, Func. Count: 177, Neg. LLF: 128.22237885125796
Iteration: 13, Func. Count: 191, Neg. LLF: 128.22237150077459
Iteration: 14, Func. Count: 205, Neg. LLF: 128.2223705708923
Optimization terminated successfully (Exit mode 0)
Current function value: 128.2223705708923
Iterations: 14
Function evaluations: 205
Gradient evaluations: 14
Iteration: 1, Func. Count: 12, Neg. LLF: 134.02459249872254
Iteration: 2, Func. Count: 24, Neg. LLF: 142.2668054529047
Iteration: 3, Func. Count: 36, Neg. LLF: 137.6111147335539
Iteration: 4, Func. Count: 48, Neg. LLF: 136.4155007336145
Iteration: 5, Func. Count: 60, Neg. LLF: 149.71831555229983
Iteration: 6, Func. Count: 72, Neg. LLF: 143.59259883789593
Iteration: 7, Func. Count: 84, Neg. LLF: 138.64383905532205
Iteration: 8, Func. Count: 96, Neg. LLF: 132.84110384896894
Iteration: 9, Func. Count: 108, Neg. LLF: 129.3648520278983
Iteration: 10, Func. Count: 120, Neg. LLF: 130.05182881568973
Iteration: 11, Func. Count: 132, Neg. LLF: 128.4504722023665
Iteration: 12, Func. Count: 144, Neg. LLF: 128.10579439335459
Iteration: 13, Func. Count: 155, Neg. LLF: 128.10292417927184
Iteration: 14, Func. Count: 166, Neg. LLF: 128.10264355470002
Iteration: 15, Func. Count: 177, Neg. LLF: 128.10235463543387
Iteration: 16, Func. Count: 188, Neg. LLF: 128.102308901475
Iteration: 17, Func. Count: 199, Neg. LLF: 128.1022845059832
Iteration: 18, Func. Count: 210, Neg. LLF: 128.10228315677085
Iteration: 19, Func. Count: 220, Neg. LLF: 128.10228315679063
Optimization terminated successfully (Exit mode 0)
Current function value: 128.10228315677085
Iterations: 19
Function evaluations: 220
Gradient evaluations: 19
Iteration: 1, Func. Count: 13, Neg. LLF: 132.14926099633487
Iteration: 2, Func. Count: 26, Neg. LLF: 136.44761337284953
Iteration: 3, Func. Count: 39, Neg. LLF: 136.0642025276403
Iteration: 4, Func. Count: 52, Neg. LLF: 129.42206109242304
Iteration: 5, Func. Count: 65, Neg. LLF: 35840.426191430735
Iteration: 6, Func. Count: 78, Neg. LLF: 145.06960616341388
Iteration: 7, Func. Count: 91, Neg. LLF: 128.93327951389807
Iteration: 8, Func. Count: 104, Neg. LLF: 139.76046994590533
Iteration: 9, Func. Count: 117, Neg. LLF: 128.15360117103808
Iteration: 10, Func. Count: 129, Neg. LLF: 130.50519427854917
Iteration: 11, Func. Count: 142, Neg. LLF: 128.12805782585002
Iteration: 12, Func. Count: 155, Neg. LLF: 128.1131219013201
Iteration: 13, Func. Count: 168, Neg. LLF: 128.1023701292123
Iteration: 14, Func. Count: 180, Neg. LLF: 128.10230609230942
Iteration: 15, Func. Count: 192, Neg. LLF: 128.10228444716685
Iteration: 16, Func. Count: 204, Neg. LLF: 128.10228357617072
Optimization terminated successfully (Exit mode 0)
Current function value: 128.10228357617072
Iterations: 16
Function evaluations: 204
Gradient evaluations: 16
Iteration: 1, Func. Count: 14, Neg. LLF: 132.1040510112872
Iteration: 2, Func. Count: 28, Neg. LLF: 136.37991498420644
Iteration: 3, Func. Count: 42, Neg. LLF: 129.69108228029154
Iteration: 4, Func. Count: 56, Neg. LLF: 138.75868677437595
Iteration: 5, Func. Count: 70, Neg. LLF: 156.44341941564886
Iteration: 6, Func. Count: 84, Neg. LLF: 332.45108239063114
Iteration: 7, Func. Count: 98, Neg. LLF: 219.6588485395859
Iteration: 8, Func. Count: 112, Neg. LLF: 129.75765204927114
Iteration: 9, Func. Count: 126, Neg. LLF: 128.48350841001152
Iteration: 10, Func. Count: 140, Neg. LLF: 128.64984615552092
Iteration: 11, Func. Count: 154, Neg. LLF: 128.1103974153769
Iteration: 12, Func. Count: 167, Neg. LLF: 128.1028928832956
Iteration: 13, Func. Count: 180, Neg. LLF: 128.10248109567135
Iteration: 14, Func. Count: 193, Neg. LLF: 128.10235089799212
Iteration: 15, Func. Count: 206, Neg. LLF: 128.10228564846892
Iteration: 16, Func. Count: 219, Neg. LLF: 128.1022833132404
Iteration: 17, Func. Count: 231, Neg. LLF: 128.1022833473444
Optimization terminated successfully (Exit mode 0)
Current function value: 128.1022833132404
Iterations: 17
Function evaluations: 231
Gradient evaluations: 17
Iteration: 1, Func. Count: 15, Neg. LLF: 132.09764246648598
Iteration: 2, Func. Count: 30, Neg. LLF: 136.82684832444858
Iteration: 3, Func. Count: 45, Neg. LLF: 131.785348353946
Iteration: 4, Func. Count: 61, Neg. LLF: 130.21713010128423
Iteration: 5, Func. Count: 76, Neg. LLF: 131.92717145044247
Iteration: 6, Func. Count: 91, Neg. LLF: 837.0551704829355
Iteration: 7, Func. Count: 107, Neg. LLF: 144.40179741609472
Iteration: 8, Func. Count: 122, Neg. LLF: 128.5911203108798
Iteration: 9, Func. Count: 137, Neg. LLF: 128.42438464534806
Iteration: 10, Func. Count: 152, Neg. LLF: 128.1469136353597
Iteration: 11, Func. Count: 166, Neg. LLF: 128.10487217958504
Iteration: 12, Func. Count: 180, Neg. LLF: 128.10277017632646
Iteration: 13, Func. Count: 194, Neg. LLF: 128.10237077918478
Iteration: 14, Func. Count: 208, Neg. LLF: 128.10231284762006
Iteration: 15, Func. Count: 222, Neg. LLF: 128.1022836976726
Iteration: 16, Func. Count: 235, Neg. LLF: 128.1022837370125
Optimization terminated successfully (Exit mode 0)
Current function value: 128.1022836976726
Iterations: 16
Function evaluations: 235
Gradient evaluations: 16
Iteration: 1, Func. Count: 16, Neg. LLF: 132.05886120883866
Iteration: 2, Func. Count: 32, Neg. LLF: 136.93984835813382
Iteration: 3, Func. Count: 48, Neg. LLF: 129.7091837999123
Iteration: 4, Func. Count: 63, Neg. LLF: 137.72743075768727
Iteration: 5, Func. Count: 79, Neg. LLF: 424.276864881339
Iteration: 6, Func. Count: 96, Neg. LLF: 143.9208973700878
Iteration: 7, Func. Count: 112, Neg. LLF: 131.50477456378837
Iteration: 8, Func. Count: 128, Neg. LLF: 136.33234597737285
Iteration: 9, Func. Count: 144, Neg. LLF: 130.0438898002127
Iteration: 10, Func. Count: 160, Neg. LLF: 129.39747616282727
Iteration: 11, Func. Count: 176, Neg. LLF: 128.26176773122953
Iteration: 12, Func. Count: 192, Neg. LLF: 128.1917451891758
Iteration: 13, Func. Count: 208, Neg. LLF: 128.12002925569737
Iteration: 14, Func. Count: 223, Neg. LLF: 128.10831516234427
Iteration: 15, Func. Count: 238, Neg. LLF: 128.10285809377677
Iteration: 16, Func. Count: 253, Neg. LLF: 128.1023047302833
Iteration: 17, Func. Count: 268, Neg. LLF: 128.10228526002697
Iteration: 18, Func. Count: 283, Neg. LLF: 128.1022833107983
Iteration: 19, Func. Count: 297, Neg. LLF: 128.10228336238526
Optimization terminated successfully (Exit mode 0)
Current function value: 128.1022833107983
Iterations: 19
Function evaluations: 297
Gradient evaluations: 19
Iteration: 1, Func. Count: 5, Neg. LLF: 134.2581044952468
Iteration: 2, Func. Count: 10, Neg. LLF: 152.76120836185203
Iteration: 3, Func. Count: 15, Neg. LLF: 129.76727754255987
Iteration: 4, Func. Count: 19, Neg. LLF: 129.71054567388143
Iteration: 5, Func. Count: 23, Neg. LLF: 129.7055951955246
Iteration: 6, Func. Count: 27, Neg. LLF: 129.70547985026354
Iteration: 7, Func. Count: 30, Neg. LLF: 129.70547985030566
Optimization terminated successfully (Exit mode 0)
Current function value: 129.70547985026354
Iterations: 7
Function evaluations: 30
Gradient evaluations: 7
Iteration: 1, Func. Count: 5, Neg. LLF: 141.12306079726065
Iteration: 2, Func. Count: 11, Neg. LLF: 133.69909846513912
Iteration: 3, Func. Count: 15, Neg. LLF: 137.09149575134202
Iteration: 4, Func. Count: 20, Neg. LLF: 133.20349280034264
Iteration: 5, Func. Count: 24, Neg. LLF: 133.20029440756224
Iteration: 6, Func. Count: 28, Neg. LLF: 133.20008812287867
Iteration: 7, Func. Count: 32, Neg. LLF: 133.20000108624598
Iteration: 8, Func. Count: 36, Neg. LLF: 133.19999859745982
Iteration: 9, Func. Count: 39, Neg. LLF: 133.19999859747367
Optimization terminated successfully (Exit mode 0)
Current function value: 133.19999859745982
Iterations: 9
Function evaluations: 39
Gradient evaluations: 9
Iteration: 1, Func. Count: 6, Neg. LLF: 137.5023716761847
Iteration: 2, Func. Count: 12, Neg. LLF: 136.15857580072526
Iteration: 3, Func. Count: 19, Neg. LLF: 134.09312511448155
Iteration: 4, Func. Count: 24, Neg. LLF: 133.26617828667634
Iteration: 5, Func. Count: 29, Neg. LLF: 133.2360019420374
Iteration: 6, Func. Count: 34, Neg. LLF: 133.21025421909098
Iteration: 7, Func. Count: 39, Neg. LLF: 133.20224331123862
Iteration: 8, Func. Count: 44, Neg. LLF: 133.20008259307485
Iteration: 9, Func. Count: 49, Neg. LLF: 133.20000616338746
Iteration: 10, Func. Count: 54, Neg. LLF: 133.20000145988098
Iteration: 11, Func. Count: 59, Neg. LLF: 133.19999885689938
Iteration: 12, Func. Count: 63, Neg. LLF: 133.19999890903605
Optimization terminated successfully (Exit mode 0)
Current function value: 133.19999885689938
Iterations: 12
Function evaluations: 63
Gradient evaluations: 12
Iteration: 1, Func. Count: 7, Neg. LLF: 20269529.032384455
Iteration: 2, Func. Count: 15, Neg. LLF: 136.6335777962594
Iteration: 3, Func. Count: 22, Neg. LLF: 133.72390764119723
Iteration: 4, Func. Count: 29, Neg. LLF: 131.94645837489847
Iteration: 5, Func. Count: 35, Neg. LLF: 131.99199871514975
Iteration: 6, Func. Count: 42, Neg. LLF: 132.14226596181697
Iteration: 7, Func. Count: 49, Neg. LLF: 130.1880290898357
Iteration: 8, Func. Count: 55, Neg. LLF: 130.16346508842818
Iteration: 9, Func. Count: 61, Neg. LLF: 130.15684771356283
Iteration: 10, Func. Count: 67, Neg. LLF: 130.15646863357216
Iteration: 11, Func. Count: 72, Neg. LLF: 130.15646863320083
Optimization terminated successfully (Exit mode 0)
Current function value: 130.15646863357216
Iterations: 11
Function evaluations: 72
Gradient evaluations: 11
Iteration: 1, Func. Count: 8, Neg. LLF: 21534315.91366876
Iteration: 2, Func. Count: 17, Neg. LLF: 137.92757717711152
Iteration: 3, Func. Count: 25, Neg. LLF: 137.82740021952205
Iteration: 4, Func. Count: 33, Neg. LLF: 131.9171197543135
Iteration: 5, Func. Count: 41, Neg. LLF: 130.60747447786966
Iteration: 6, Func. Count: 48, Neg. LLF: 135.9824859776905
Iteration: 7, Func. Count: 57, Neg. LLF: 131.03564275593925
Iteration: 8, Func. Count: 65, Neg. LLF: 130.4585632669588
Iteration: 9, Func. Count: 73, Neg. LLF: 130.19197102252974
Iteration: 10, Func. Count: 80, Neg. LLF: 130.19047691902324
Iteration: 11, Func. Count: 87, Neg. LLF: 130.19005126953007
Iteration: 12, Func. Count: 94, Neg. LLF: 130.19003904870596
Iteration: 13, Func. Count: 100, Neg. LLF: 130.19003904870823
Optimization terminated successfully (Exit mode 0)
Current function value: 130.19003904870596
Iterations: 13
Function evaluations: 100
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 21833047.8650258
Iteration: 2, Func. Count: 18, Neg. LLF: 132.1650295594016
Iteration: 3, Func. Count: 26, Neg. LLF: 130.16019985043772
Iteration: 4, Func. Count: 34, Neg. LLF: 130.10621749984406
Iteration: 5, Func. Count: 42, Neg. LLF: 136.4422809698526
Iteration: 6, Func. Count: 51, Neg. LLF: 129.97676168489676
Iteration: 7, Func. Count: 59, Neg. LLF: 129.97615087042522
Iteration: 8, Func. Count: 67, Neg. LLF: 129.97614976283296
Iteration: 9, Func. Count: 74, Neg. LLF: 129.9761497628203
Optimization terminated successfully (Exit mode 0)
Current function value: 129.97614976283296
Iterations: 9
Function evaluations: 74
Gradient evaluations: 9
Iteration: 1, Func. Count: 6, Neg. LLF: 140.45125454062338
Iteration: 2, Func. Count: 12, Neg. LLF: 143.1586991540686
Iteration: 3, Func. Count: 18, Neg. LLF: 133.68443729501746
Iteration: 4, Func. Count: 23, Neg. LLF: 133.47675097137974
Iteration: 5, Func. Count: 28, Neg. LLF: 133.8739593699205
Iteration: 6, Func. Count: 34, Neg. LLF: 133.26452679533173
Iteration: 7, Func. Count: 39, Neg. LLF: 133.211877350026
Iteration: 8, Func. Count: 44, Neg. LLF: 133.20096833653378
Iteration: 9, Func. Count: 49, Neg. LLF: 133.20000982316986
Iteration: 10, Func. Count: 54, Neg. LLF: 133.19999866668616
Iteration: 11, Func. Count: 58, Neg. LLF: 133.1999987951855
Optimization terminated successfully (Exit mode 0)
Current function value: 133.19999866668616
Iterations: 11
Function evaluations: 58
Gradient evaluations: 11
Iteration: 1, Func. Count: 7, Neg. LLF: 18788652.39463552
Iteration: 2, Func. Count: 15, Neg. LLF: 139.17455288812144
Iteration: 3, Func. Count: 22, Neg. LLF: 134.79040374817941
Iteration: 4, Func. Count: 29, Neg. LLF: 133.22534579208553
Iteration: 5, Func. Count: 36, Neg. LLF: 131.63641852695474
Iteration: 6, Func. Count: 42, Neg. LLF: 130.99999996221527
Iteration: 7, Func. Count: 48, Neg. LLF: 151.74260844243446
Iteration: 8, Func. Count: 58, Neg. LLF: 130.24911824923697
Iteration: 9, Func. Count: 64, Neg. LLF: 130.1893560013687
Iteration: 10, Func. Count: 70, Neg. LLF: 130.1861933606303
Iteration: 11, Func. Count: 76, Neg. LLF: 130.1852135113122
Iteration: 12, Func. Count: 81, Neg. LLF: 130.18521351293631
Optimization terminated successfully (Exit mode 0)
Current function value: 130.1852135113122
Iterations: 12
Function evaluations: 81
Gradient evaluations: 12
Iteration: 1, Func. Count: 8, Neg. LLF: 18771027.100501623
Iteration: 2, Func. Count: 17, Neg. LLF: 133.86367762994342
Iteration: 3, Func. Count: 25, Neg. LLF: 131.5582242194853
Iteration: 4, Func. Count: 32, Neg. LLF: 131.0887763097808
Iteration: 5, Func. Count: 40, Neg. LLF: 130.2281393263866
Iteration: 6, Func. Count: 47, Neg. LLF: 130.1621295386091
Iteration: 7, Func. Count: 54, Neg. LLF: 130.15653633772882
Iteration: 8, Func. Count: 61, Neg. LLF: 130.15646856465358
Iteration: 9, Func. Count: 67, Neg. LLF: 130.15646856447412
Optimization terminated successfully (Exit mode 0)
Current function value: 130.15646856465358
Iterations: 9
Function evaluations: 67
Gradient evaluations: 9
Iteration: 1, Func. Count: 9, Neg. LLF: 18744658.589590285
Iteration: 2, Func. Count: 18, Neg. LLF: 10837994.653174043
Iteration: 3, Func. Count: 28, Neg. LLF: 130.61545401810048
Iteration: 4, Func. Count: 36, Neg. LLF: 130.55907746925632
Iteration: 5, Func. Count: 45, Neg. LLF: 245.3962004028251
Iteration: 6, Func. Count: 55, Neg. LLF: 130.19807065611639
Iteration: 7, Func. Count: 63, Neg. LLF: 130.3341077233861
Iteration: 8, Func. Count: 72, Neg. LLF: 130.19096231611755
Iteration: 9, Func. Count: 80, Neg. LLF: 130.19006779732334
Iteration: 10, Func. Count: 88, Neg. LLF: 130.19003897643344
Iteration: 11, Func. Count: 95, Neg. LLF: 130.1900389759598
Optimization terminated successfully (Exit mode 0)
Current function value: 130.19003897643344
Iterations: 11
Function evaluations: 95
Gradient evaluations: 11
Iteration: 1, Func. Count: 10, Neg. LLF: 22164696.405153796
Iteration: 2, Func. Count: 20, Neg. LLF: 137.98836371607572
Iteration: 3, Func. Count: 30, Neg. LLF: 134.27441460403256
Iteration: 4, Func. Count: 40, Neg. LLF: 130.6812609181468
Iteration: 5, Func. Count: 49, Neg. LLF: 130.15935827168778
Iteration: 6, Func. Count: 58, Neg. LLF: 129.981883810492
Iteration: 7, Func. Count: 67, Neg. LLF: 129.97621871473584
Iteration: 8, Func. Count: 76, Neg. LLF: 129.9761498051325
Iteration: 9, Func. Count: 84, Neg. LLF: 129.97614980524645
Optimization terminated successfully (Exit mode 0)
Current function value: 129.9761498051325
Iterations: 9
Function evaluations: 84
Gradient evaluations: 9
Iteration: 1, Func. Count: 7, Neg. LLF: 138.19983359854012
Iteration: 2, Func. Count: 14, Neg. LLF: 140.49238386508512
Iteration: 3, Func. Count: 21, Neg. LLF: 133.8329793854545
Iteration: 4, Func. Count: 27, Neg. LLF: 133.6865779496813
Iteration: 5, Func. Count: 33, Neg. LLF: 133.27027971222577
Iteration: 6, Func. Count: 39, Neg. LLF: 133.23691377787577
Iteration: 7, Func. Count: 45, Neg. LLF: 133.20244142449124
Iteration: 8, Func. Count: 51, Neg. LLF: 133.20013455138297
Iteration: 9, Func. Count: 57, Neg. LLF: 133.19999896133203
Iteration: 10, Func. Count: 62, Neg. LLF: 133.1999991074637
Optimization terminated successfully (Exit mode 0)
Current function value: 133.19999896133203
Iterations: 10
Function evaluations: 62
Gradient evaluations: 10
Iteration: 1, Func. Count: 8, Neg. LLF: 18800898.491448883
Iteration: 2, Func. Count: 17, Neg. LLF: 139.313613275594
Iteration: 3, Func. Count: 25, Neg. LLF: 134.92164724484113
Iteration: 4, Func. Count: 33, Neg. LLF: 133.4027679383132
Iteration: 5, Func. Count: 41, Neg. LLF: 130.3073884931092
Iteration: 6, Func. Count: 48, Neg. LLF: 138.57436393048766
Iteration: 7, Func. Count: 56, Neg. LLF: 130.21416194964226
Iteration: 8, Func. Count: 63, Neg. LLF: 137.29233739340506
Iteration: 9, Func. Count: 73, Neg. LLF: 134.2868474460686
Iteration: 10, Func. Count: 82, Neg. LLF: 130.1852130537284
Iteration: 11, Func. Count: 88, Neg. LLF: 130.18521305373443
Optimization terminated successfully (Exit mode 0)
Current function value: 130.1852130537284
Iterations: 12
Function evaluations: 88
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 18784123.733601082
Iteration: 2, Func. Count: 19, Neg. LLF: 133.97280068906682
Iteration: 3, Func. Count: 28, Neg. LLF: 131.59323914494513
Iteration: 4, Func. Count: 36, Neg. LLF: 131.24799641306285
Iteration: 5, Func. Count: 45, Neg. LLF: 130.26026892790946
Iteration: 6, Func. Count: 53, Neg. LLF: 130.16413133913926
Iteration: 7, Func. Count: 61, Neg. LLF: 130.15654357264697
Iteration: 8, Func. Count: 69, Neg. LLF: 130.15646859471082
Iteration: 9, Func. Count: 76, Neg. LLF: 130.1564685945561
Optimization terminated successfully (Exit mode 0)
Current function value: 130.15646859471082
Iterations: 9
Function evaluations: 76
Gradient evaluations: 9
Iteration: 1, Func. Count: 10, Neg. LLF: 18757365.28419318
Iteration: 2, Func. Count: 20, Neg. LLF: 10898985.8053589
Iteration: 3, Func. Count: 31, Neg. LLF: 130.71257299166194
Iteration: 4, Func. Count: 40, Neg. LLF: 130.62219519322048
Iteration: 5, Func. Count: 50, Neg. LLF: 203.1739238842536
Iteration: 6, Func. Count: 61, Neg. LLF: 130.48647477088986
Iteration: 7, Func. Count: 71, Neg. LLF: 130.19310340678084
Iteration: 8, Func. Count: 80, Neg. LLF: 130.19107200758668
Iteration: 9, Func. Count: 89, Neg. LLF: 130.19011804578923
Iteration: 10, Func. Count: 98, Neg. LLF: 130.1900418347715
Iteration: 11, Func. Count: 107, Neg. LLF: 130.1900386486232
Iteration: 12, Func. Count: 115, Neg. LLF: 130.19003864842563
Optimization terminated successfully (Exit mode 0)
Current function value: 130.1900386486232
Iterations: 12
Function evaluations: 115
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 18736556.22806557
Iteration: 2, Func. Count: 22, Neg. LLF: 10749153.066922456
Iteration: 3, Func. Count: 34, Neg. LLF: 130.82924008899528
Iteration: 4, Func. Count: 44, Neg. LLF: 133.45173445010735
Iteration: 5, Func. Count: 55, Neg. LLF: 135.64941102168623
Iteration: 6, Func. Count: 66, Neg. LLF: 130.47739760529967
Iteration: 7, Func. Count: 77, Neg. LLF: 130.17003200793357
Iteration: 8, Func. Count: 87, Neg. LLF: 130.15178347883642
Iteration: 9, Func. Count: 97, Neg. LLF: 130.14108864543817
Iteration: 10, Func. Count: 107, Neg. LLF: 130.12538078374692
Iteration: 11, Func. Count: 117, Neg. LLF: 130.08706765987083
Iteration: 12, Func. Count: 127, Neg. LLF: 130.03935418472696
Iteration: 13, Func. Count: 137, Neg. LLF: 129.98034284446229
Iteration: 14, Func. Count: 147, Neg. LLF: 18744220.589841086
Iteration: 15, Func. Count: 160, Neg. LLF: 130.09216260085827
Iteration: 16, Func. Count: 171, Neg. LLF: 129.97614976240865
Iteration: 17, Func. Count: 180, Neg. LLF: 129.9761497624053
Optimization terminated successfully (Exit mode 0)
Current function value: 129.97614976240865
Iterations: 18
Function evaluations: 180
Gradient evaluations: 17
Iteration: 1, Func. Count: 8, Neg. LLF: 138.91163367603585
Iteration: 2, Func. Count: 16, Neg. LLF: 140.29850173252828
Iteration: 3, Func. Count: 24, Neg. LLF: 134.97665514387728
Iteration: 4, Func. Count: 31, Neg. LLF: 133.87093843104284
Iteration: 5, Func. Count: 38, Neg. LLF: 133.59370113686433
Iteration: 6, Func. Count: 45, Neg. LLF: 133.4792564165787
Iteration: 7, Func. Count: 52, Neg. LLF: 133.27043787826395
Iteration: 8, Func. Count: 59, Neg. LLF: 133.479576975724
Iteration: 9, Func. Count: 67, Neg. LLF: 133.21551013164878
Iteration: 10, Func. Count: 74, Neg. LLF: 133.19627785605502
Iteration: 11, Func. Count: 81, Neg. LLF: 133.19532255777065
Iteration: 12, Func. Count: 88, Neg. LLF: 133.19529579206835
Iteration: 13, Func. Count: 94, Neg. LLF: 133.1952957920617
Optimization terminated successfully (Exit mode 0)
Current function value: 133.19529579206835
Iterations: 13
Function evaluations: 94
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 18797857.072755
Iteration: 2, Func. Count: 19, Neg. LLF: 139.3170611921163
Iteration: 3, Func. Count: 28, Neg. LLF: 134.9278530069255
Iteration: 4, Func. Count: 37, Neg. LLF: 133.40803227972572
Iteration: 5, Func. Count: 46, Neg. LLF: 130.31903470596833
Iteration: 6, Func. Count: 54, Neg. LLF: 138.5101059426552
Iteration: 7, Func. Count: 63, Neg. LLF: 130.2141367784946
Iteration: 8, Func. Count: 71, Neg. LLF: 130.28350954168792
Iteration: 9, Func. Count: 80, Neg. LLF: 18612832.75458024
Iteration: 10, Func. Count: 92, Neg. LLF: 130.18652251295282
Iteration: 11, Func. Count: 100, Neg. LLF: 130.18521393145727
Iteration: 12, Func. Count: 108, Neg. LLF: 130.18521305446473
Optimization terminated successfully (Exit mode 0)
Current function value: 130.18521305446473
Iterations: 13
Function evaluations: 108
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 18782458.53051332
Iteration: 2, Func. Count: 21, Neg. LLF: 133.977909054198
Iteration: 3, Func. Count: 31, Neg. LLF: 131.60261689351574
Iteration: 4, Func. Count: 40, Neg. LLF: 131.31381042863427
Iteration: 5, Func. Count: 50, Neg. LLF: 130.287317716723
Iteration: 6, Func. Count: 59, Neg. LLF: 130.16529757505225
Iteration: 7, Func. Count: 68, Neg. LLF: 130.15655775618856
Iteration: 8, Func. Count: 77, Neg. LLF: 130.15646863533925
Iteration: 9, Func. Count: 85, Neg. LLF: 130.15646863519183
Optimization terminated successfully (Exit mode 0)
Current function value: 130.15646863533925
Iterations: 9
Function evaluations: 85
Gradient evaluations: 9
Iteration: 1, Func. Count: 11, Neg. LLF: 18757206.320132744
Iteration: 2, Func. Count: 22, Neg. LLF: 10896877.833499333
Iteration: 3, Func. Count: 34, Neg. LLF: 130.74274543487869
Iteration: 4, Func. Count: 44, Neg. LLF: 130.63781245438298
Iteration: 5, Func. Count: 55, Neg. LLF: 208.1599026362516
Iteration: 6, Func. Count: 67, Neg. LLF: 130.49207046407437
Iteration: 7, Func. Count: 78, Neg. LLF: 130.19344486291848
Iteration: 8, Func. Count: 88, Neg. LLF: 130.1912137290357
Iteration: 9, Func. Count: 98, Neg. LLF: 130.19011207432501
Iteration: 10, Func. Count: 108, Neg. LLF: 130.19004207953543
Iteration: 11, Func. Count: 118, Neg. LLF: 130.19003863533317
Iteration: 12, Func. Count: 127, Neg. LLF: 130.19003863517432
Optimization terminated successfully (Exit mode 0)
Current function value: 130.19003863533317
Iterations: 12
Function evaluations: 127
Gradient evaluations: 12
Iteration: 1, Func. Count: 12, Neg. LLF: 18736071.638222232
Iteration: 2, Func. Count: 24, Neg. LLF: 10745437.045816598
Iteration: 3, Func. Count: 37, Neg. LLF: 130.8232296366881
Iteration: 4, Func. Count: 48, Neg. LLF: 133.54037247528714
Iteration: 5, Func. Count: 60, Neg. LLF: 135.6937032082958
Iteration: 6, Func. Count: 72, Neg. LLF: 130.4865589521521
Iteration: 7, Func. Count: 84, Neg. LLF: 130.16973351591872
Iteration: 8, Func. Count: 95, Neg. LLF: 130.15174305503584
Iteration: 9, Func. Count: 106, Neg. LLF: 130.14098528446485
Iteration: 10, Func. Count: 117, Neg. LLF: 130.124998691376
Iteration: 11, Func. Count: 128, Neg. LLF: 130.08743538645322
Iteration: 12, Func. Count: 139, Neg. LLF: 130.04053372164623
Iteration: 13, Func. Count: 150, Neg. LLF: 129.98037707022965
Iteration: 14, Func. Count: 161, Neg. LLF: 18744782.93553673
Iteration: 15, Func. Count: 175, Neg. LLF: 130.09307196847993
Iteration: 16, Func. Count: 187, Neg. LLF: 129.9761497624416
Iteration: 17, Func. Count: 197, Neg. LLF: 129.97614976243557
Optimization terminated successfully (Exit mode 0)
Current function value: 129.9761497624416
Iterations: 18
Function evaluations: 197
Gradient evaluations: 17
Iteration: 1, Func. Count: 5, Neg. LLF: 134.78008329158004
Iteration: 2, Func. Count: 10, Neg. LLF: 151.30186660586529
Iteration: 3, Func. Count: 15, Neg. LLF: 128.26527709841267
Iteration: 4, Func. Count: 19, Neg. LLF: 128.1685497271913
Iteration: 5, Func. Count: 23, Neg. LLF: 128.13147742136528
Iteration: 6, Func. Count: 27, Neg. LLF: 128.12868935749816
Iteration: 7, Func. Count: 31, Neg. LLF: 128.12847115427087
Iteration: 8, Func. Count: 35, Neg. LLF: 128.12844581285023
Iteration: 9, Func. Count: 39, Neg. LLF: 128.12844376679544
Iteration: 10, Func. Count: 42, Neg. LLF: 128.12844376679337
Optimization terminated successfully (Exit mode 0)
Current function value: 128.12844376679544
Iterations: 10
Function evaluations: 42
Gradient evaluations: 10
Iteration: 1, Func. Count: 6, Neg. LLF: 21902426.773502957
Iteration: 2, Func. Count: 12, Neg. LLF: 946.9242336591261
Iteration: 3, Func. Count: 18, Neg. LLF: 151.4998427679684
Iteration: 4, Func. Count: 24, Neg. LLF: 127.97910198436021
Iteration: 5, Func. Count: 29, Neg. LLF: 127.84585736041782
Iteration: 6, Func. Count: 34, Neg. LLF: 127.74939586751852
Iteration: 7, Func. Count: 39, Neg. LLF: 127.71148583584811
Iteration: 8, Func. Count: 44, Neg. LLF: 127.69292844955382
Iteration: 9, Func. Count: 49, Neg. LLF: 127.68925603340412
Iteration: 10, Func. Count: 54, Neg. LLF: 127.68771074214713
Iteration: 11, Func. Count: 59, Neg. LLF: 127.68717498883645
Iteration: 12, Func. Count: 64, Neg. LLF: 127.6871462653905
Iteration: 13, Func. Count: 69, Neg. LLF: 127.68714554300125
Optimization terminated successfully (Exit mode 0)
Current function value: 127.68714554300125
Iterations: 13
Function evaluations: 69
Gradient evaluations: 13
Iteration: 1, Func. Count: 7, Neg. LLF: 20139821.781754367
Iteration: 2, Func. Count: 14, Neg. LLF: 19657.835006063517
Iteration: 3, Func. Count: 21, Neg. LLF: 142.6565944213931
Iteration: 4, Func. Count: 28, Neg. LLF: 128.07503369585416
Iteration: 5, Func. Count: 34, Neg. LLF: 127.98833121192752
Iteration: 6, Func. Count: 41, Neg. LLF: 131.1111601347952
Iteration: 7, Func. Count: 48, Neg. LLF: 127.61487793951905
Iteration: 8, Func. Count: 54, Neg. LLF: 127.60565937985845
Iteration: 9, Func. Count: 60, Neg. LLF: 127.59861387188057
Iteration: 10, Func. Count: 66, Neg. LLF: 127.59404358374066
Iteration: 11, Func. Count: 72, Neg. LLF: 127.59321987193859
Iteration: 12, Func. Count: 78, Neg. LLF: 127.59310389183412
Iteration: 13, Func. Count: 84, Neg. LLF: 127.59308742965722
Iteration: 14, Func. Count: 90, Neg. LLF: 127.59308623071882
Iteration: 15, Func. Count: 95, Neg. LLF: 127.5930862306916
Optimization terminated successfully (Exit mode 0)
Current function value: 127.59308623071882
Iterations: 15
Function evaluations: 95
Gradient evaluations: 15
Iteration: 1, Func. Count: 8, Neg. LLF: 133.2898501807564
Iteration: 2, Func. Count: 16, Neg. LLF: 268.8770593294189
Iteration: 3, Func. Count: 24, Neg. LLF: 136.73743630971242
Iteration: 4, Func. Count: 32, Neg. LLF: 127.77609366172177
Iteration: 5, Func. Count: 40, Neg. LLF: 128.17853503165477
Iteration: 6, Func. Count: 48, Neg. LLF: 127.74867390603865
Iteration: 7, Func. Count: 56, Neg. LLF: 127.72485258624407
Iteration: 8, Func. Count: 64, Neg. LLF: 127.5765352329396
Iteration: 9, Func. Count: 71, Neg. LLF: 127.5764332236005
Iteration: 10, Func. Count: 78, Neg. LLF: 127.57643194379163
Iteration: 11, Func. Count: 84, Neg. LLF: 127.57643194381923
Optimization terminated successfully (Exit mode 0)
Current function value: 127.57643194379163
Iterations: 11
Function evaluations: 84
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 132.6219233931093
Iteration: 2, Func. Count: 18, Neg. LLF: 206.48933955431224
Iteration: 3, Func. Count: 27, Neg. LLF: 134.48537807480164
Iteration: 4, Func. Count: 36, Neg. LLF: 127.92722252341328
Iteration: 5, Func. Count: 45, Neg. LLF: 129.39126405002133
Iteration: 6, Func. Count: 54, Neg. LLF: 127.80060190582616
Iteration: 7, Func. Count: 63, Neg. LLF: 127.66034647490343
Iteration: 8, Func. Count: 72, Neg. LLF: 127.58302117316937
Iteration: 9, Func. Count: 80, Neg. LLF: 127.57716882340328
Iteration: 10, Func. Count: 88, Neg. LLF: 127.5764746005432
Iteration: 11, Func. Count: 96, Neg. LLF: 127.5764336778562
Iteration: 12, Func. Count: 104, Neg. LLF: 127.57643185238683
Iteration: 13, Func. Count: 111, Neg. LLF: 127.5764319091721
Optimization terminated successfully (Exit mode 0)
Current function value: 127.57643185238683
Iterations: 13
Function evaluations: 111
Gradient evaluations: 13
Iteration: 1, Func. Count: 6, Neg. LLF: 136.7543713188577
Iteration: 2, Func. Count: 12, Neg. LLF: 139.47843859091597
Iteration: 3, Func. Count: 18, Neg. LLF: 132.43991583938754
Iteration: 4, Func. Count: 24, Neg. LLF: 128.1835140828679
Iteration: 5, Func. Count: 29, Neg. LLF: 128.13481045497048
Iteration: 6, Func. Count: 34, Neg. LLF: 128.12646938325776
Iteration: 7, Func. Count: 39, Neg. LLF: 128.12606989486235
Iteration: 8, Func. Count: 44, Neg. LLF: 128.126023868251
Iteration: 9, Func. Count: 49, Neg. LLF: 128.1260202898551
Iteration: 10, Func. Count: 53, Neg. LLF: 128.12602028984855
Optimization terminated successfully (Exit mode 0)
Current function value: 128.1260202898551
Iterations: 10
Function evaluations: 53
Gradient evaluations: 10
Iteration: 1, Func. Count: 7, Neg. LLF: 6191116.409151019
Iteration: 2, Func. Count: 14, Neg. LLF: 129.42489574936673
Iteration: 3, Func. Count: 21, Neg. LLF: 158.85003507400234
Iteration: 4, Func. Count: 28, Neg. LLF: 129.36571622124296
Iteration: 5, Func. Count: 35, Neg. LLF: 130.21723871560937
Iteration: 6, Func. Count: 42, Neg. LLF: 127.43295962354914
Iteration: 7, Func. Count: 48, Neg. LLF: 127.4304257963594
Iteration: 8, Func. Count: 54, Neg. LLF: 127.43034570715744
Iteration: 9, Func. Count: 60, Neg. LLF: 127.43033593048243
Iteration: 10, Func. Count: 65, Neg. LLF: 127.43033593049621
Optimization terminated successfully (Exit mode 0)
Current function value: 127.43033593048243
Iterations: 10
Function evaluations: 65
Gradient evaluations: 10
Iteration: 1, Func. Count: 8, Neg. LLF: 162.0891765241912
Iteration: 2, Func. Count: 16, Neg. LLF: 136.87189906138306
Iteration: 3, Func. Count: 24, Neg. LLF: 172.27862527884437
Iteration: 4, Func. Count: 32, Neg. LLF: 132.60161975006395
Iteration: 5, Func. Count: 40, Neg. LLF: 128.7563268720622
Iteration: 6, Func. Count: 48, Neg. LLF: 128.10665043259817
Iteration: 7, Func. Count: 56, Neg. LLF: 127.6214723961154
Iteration: 8, Func. Count: 64, Neg. LLF: 127.37669271670633
Iteration: 9, Func. Count: 71, Neg. LLF: 127.37099597863909
Iteration: 10, Func. Count: 78, Neg. LLF: 127.37088142788285
Iteration: 11, Func. Count: 85, Neg. LLF: 127.37081215437388
Iteration: 12, Func. Count: 92, Neg. LLF: 127.37079536771788
Iteration: 13, Func. Count: 99, Neg. LLF: 127.37078444876207
Iteration: 14, Func. Count: 105, Neg. LLF: 127.37078444887398
Optimization terminated successfully (Exit mode 0)
Current function value: 127.37078444876207
Iterations: 14
Function evaluations: 105
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 160.92746846515075
Iteration: 2, Func. Count: 18, Neg. LLF: 165.4022528585797
Iteration: 3, Func. Count: 27, Neg. LLF: 129.2178254404123
Iteration: 4, Func. Count: 36, Neg. LLF: 7446058.189163352
Iteration: 5, Func. Count: 45, Neg. LLF: 130.1914493856248
Iteration: 6, Func. Count: 54, Neg. LLF: 132.13301356554967
Iteration: 7, Func. Count: 63, Neg. LLF: 128.0114875837762
Iteration: 8, Func. Count: 72, Neg. LLF: 127.51065072059386
Iteration: 9, Func. Count: 81, Neg. LLF: 127.34351048887868
Iteration: 10, Func. Count: 89, Neg. LLF: 127.34202763252262
Iteration: 11, Func. Count: 97, Neg. LLF: 127.34088363372746
Iteration: 12, Func. Count: 105, Neg. LLF: 127.34071141423279
Iteration: 13, Func. Count: 113, Neg. LLF: 127.34069333141649
Iteration: 14, Func. Count: 121, Neg. LLF: 127.34069261347604
Optimization terminated successfully (Exit mode 0)
Current function value: 127.34069261347604
Iterations: 14
Function evaluations: 121
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 159.49007328916832
Iteration: 2, Func. Count: 20, Neg. LLF: 139.14662795941084
Iteration: 3, Func. Count: 30, Neg. LLF: 129.49980492962445
Iteration: 4, Func. Count: 40, Neg. LLF: 208384.5957920535
Iteration: 5, Func. Count: 50, Neg. LLF: 130.04002777342205
Iteration: 6, Func. Count: 60, Neg. LLF: 128.71983222694473
Iteration: 7, Func. Count: 70, Neg. LLF: 127.58775714178971
Iteration: 8, Func. Count: 80, Neg. LLF: 127.35322684258836
Iteration: 9, Func. Count: 89, Neg. LLF: 127.3460551796006
Iteration: 10, Func. Count: 98, Neg. LLF: 127.34293897922579
Iteration: 11, Func. Count: 107, Neg. LLF: 127.34089921284777
Iteration: 12, Func. Count: 116, Neg. LLF: 127.34070085265597
Iteration: 13, Func. Count: 125, Neg. LLF: 127.34069378322259
Iteration: 14, Func. Count: 134, Neg. LLF: 127.34069267996479
Iteration: 15, Func. Count: 142, Neg. LLF: 127.34069273866022
Optimization terminated successfully (Exit mode 0)
Current function value: 127.34069267996479
Iterations: 15
Function evaluations: 142
Gradient evaluations: 15
Iteration: 1, Func. Count: 7, Neg. LLF: 137.30299281749342
Iteration: 2, Func. Count: 14, Neg. LLF: 140.95279194779414
Iteration: 3, Func. Count: 21, Neg. LLF: 128.97643234370588
Iteration: 4, Func. Count: 28, Neg. LLF: 128.14275194348014
Iteration: 5, Func. Count: 34, Neg. LLF: 128.1274666924214
Iteration: 6, Func. Count: 40, Neg. LLF: 128.12612225896015
Iteration: 7, Func. Count: 46, Neg. LLF: 128.12602690306755
Iteration: 8, Func. Count: 52, Neg. LLF: 128.1260202231659
Iteration: 9, Func. Count: 57, Neg. LLF: 128.12602028854639
Optimization terminated successfully (Exit mode 0)
Current function value: 128.1260202231659
Iterations: 9
Function evaluations: 57
Gradient evaluations: 9
Iteration: 1, Func. Count: 8, Neg. LLF: 6191007.31060016
Iteration: 2, Func. Count: 16, Neg. LLF: 129.3933418925702
Iteration: 3, Func. Count: 24, Neg. LLF: 159.1544910326395
Iteration: 4, Func. Count: 32, Neg. LLF: 129.73303518038892
Iteration: 5, Func. Count: 40, Neg. LLF: 130.26941271911144
Iteration: 6, Func. Count: 48, Neg. LLF: 127.43278536407449
Iteration: 7, Func. Count: 55, Neg. LLF: 127.43040751560785
Iteration: 8, Func. Count: 62, Neg. LLF: 127.43034365451807
Iteration: 9, Func. Count: 69, Neg. LLF: 127.43033564114299
Iteration: 10, Func. Count: 75, Neg. LLF: 127.4303356411004
Optimization terminated successfully (Exit mode 0)
Current function value: 127.43033564114299
Iterations: 10
Function evaluations: 75
Gradient evaluations: 10
Iteration: 1, Func. Count: 9, Neg. LLF: 7868270.597983329
Iteration: 2, Func. Count: 18, Neg. LLF: 129.60444026126598
Iteration: 3, Func. Count: 27, Neg. LLF: 158.1787037989074
Iteration: 4, Func. Count: 36, Neg. LLF: 133.69115391129398
Iteration: 5, Func. Count: 45, Neg. LLF: 129.21709650006298
Iteration: 6, Func. Count: 54, Neg. LLF: 127.37956560724618
Iteration: 7, Func. Count: 62, Neg. LLF: 128.05245075383283
Iteration: 8, Func. Count: 71, Neg. LLF: 127.37109655993008
Iteration: 9, Func. Count: 79, Neg. LLF: 127.37085581116031
Iteration: 10, Func. Count: 87, Neg. LLF: 127.37078598816113
Iteration: 11, Func. Count: 95, Neg. LLF: 127.37078447260079
Iteration: 12, Func. Count: 102, Neg. LLF: 127.37078447250971
Optimization terminated successfully (Exit mode 0)
Current function value: 127.37078447260079
Iterations: 12
Function evaluations: 102
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 162.25176139999755
Iteration: 2, Func. Count: 20, Neg. LLF: 135.54314992095328
Iteration: 3, Func. Count: 30, Neg. LLF: 377.88962240042014
Iteration: 4, Func. Count: 40, Neg. LLF: 136.98898538312054
Iteration: 5, Func. Count: 50, Neg. LLF: 129.4773287789628
Iteration: 6, Func. Count: 60, Neg. LLF: 127.74479480787194
Iteration: 7, Func. Count: 70, Neg. LLF: 127.37623456347757
Iteration: 8, Func. Count: 80, Neg. LLF: 127.45087342158413
Iteration: 9, Func. Count: 90, Neg. LLF: 127.34128115812543
Iteration: 10, Func. Count: 99, Neg. LLF: 127.3408420243812
Iteration: 11, Func. Count: 108, Neg. LLF: 127.3407009328149
Iteration: 12, Func. Count: 117, Neg. LLF: 127.34069289926946
Iteration: 13, Func. Count: 125, Neg. LLF: 127.34069289923202
Optimization terminated successfully (Exit mode 0)
Current function value: 127.34069289926946
Iterations: 13
Function evaluations: 125
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 161.79104807275323
Iteration: 2, Func. Count: 22, Neg. LLF: 133.85867173284777
Iteration: 3, Func. Count: 33, Neg. LLF: 522.7121539175845
Iteration: 4, Func. Count: 44, Neg. LLF: 148.05261800510115
Iteration: 5, Func. Count: 55, Neg. LLF: 131.61178529532432
Iteration: 6, Func. Count: 66, Neg. LLF: 133.53366010070624
Iteration: 7, Func. Count: 77, Neg. LLF: 127.36422683814115
Iteration: 8, Func. Count: 87, Neg. LLF: 127.54432712181938
Iteration: 9, Func. Count: 98, Neg. LLF: 127.3427319127487
Iteration: 10, Func. Count: 108, Neg. LLF: 127.34127563645177
Iteration: 11, Func. Count: 118, Neg. LLF: 127.340901713013
Iteration: 12, Func. Count: 128, Neg. LLF: 127.34069723774648
Iteration: 13, Func. Count: 138, Neg. LLF: 127.3406926350837
Iteration: 14, Func. Count: 147, Neg. LLF: 127.3406926937665
Optimization terminated successfully (Exit mode 0)
Current function value: 127.3406926350837
Iterations: 14
Function evaluations: 147
Gradient evaluations: 14
Iteration: 1, Func. Count: 8, Neg. LLF: 135.02412244962295
Iteration: 2, Func. Count: 16, Neg. LLF: 149.66441663524236
Iteration: 3, Func. Count: 24, Neg. LLF: 128.2755107241681
Iteration: 4, Func. Count: 31, Neg. LLF: 128.2664027335346
Iteration: 5, Func. Count: 39, Neg. LLF: 128.1304988939752
Iteration: 6, Func. Count: 46, Neg. LLF: 128.12619005942602
Iteration: 7, Func. Count: 53, Neg. LLF: 128.12602905684443
Iteration: 8, Func. Count: 60, Neg. LLF: 128.12602021840732
Iteration: 9, Func. Count: 66, Neg. LLF: 128.1260202912319
Optimization terminated successfully (Exit mode 0)
Current function value: 128.12602021840732
Iterations: 9
Function evaluations: 66
Gradient evaluations: 9
Iteration: 1, Func. Count: 9, Neg. LLF: 6189394.8178251
Iteration: 2, Func. Count: 18, Neg. LLF: 129.36891276058768
Iteration: 3, Func. Count: 27, Neg. LLF: 159.43186800740636
Iteration: 4, Func. Count: 36, Neg. LLF: 129.9319787785631
Iteration: 5, Func. Count: 45, Neg. LLF: 130.33548758826413
Iteration: 6, Func. Count: 54, Neg. LLF: 127.43278829074089
Iteration: 7, Func. Count: 62, Neg. LLF: 127.43040900133181
Iteration: 8, Func. Count: 70, Neg. LLF: 127.4303442495757
Iteration: 9, Func. Count: 78, Neg. LLF: 127.43033586284696
Iteration: 10, Func. Count: 85, Neg. LLF: 127.43033586274518
Optimization terminated successfully (Exit mode 0)
Current function value: 127.43033586284696
Iterations: 10
Function evaluations: 85
Gradient evaluations: 10
Iteration: 1, Func. Count: 10, Neg. LLF: 7869151.678222742
Iteration: 2, Func. Count: 20, Neg. LLF: 129.58818474307373
Iteration: 3, Func. Count: 30, Neg. LLF: 158.6588335155708
Iteration: 4, Func. Count: 40, Neg. LLF: 133.7211586681839
Iteration: 5, Func. Count: 50, Neg. LLF: 129.23180277191432
Iteration: 6, Func. Count: 60, Neg. LLF: 127.37763629195877
Iteration: 7, Func. Count: 69, Neg. LLF: 127.37118041389436
Iteration: 8, Func. Count: 78, Neg. LLF: 127.38154415655063
Iteration: 9, Func. Count: 88, Neg. LLF: 127.37083164968742
Iteration: 10, Func. Count: 97, Neg. LLF: 127.37078661386143
Iteration: 11, Func. Count: 106, Neg. LLF: 127.37078448755064
Iteration: 12, Func. Count: 114, Neg. LLF: 127.37078448745461
Optimization terminated successfully (Exit mode 0)
Current function value: 127.37078448755064
Iterations: 12
Function evaluations: 114
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 162.2888861440583
Iteration: 2, Func. Count: 22, Neg. LLF: 135.54508689250486
Iteration: 3, Func. Count: 33, Neg. LLF: 388.12366410534423
Iteration: 4, Func. Count: 44, Neg. LLF: 137.13685784381795
Iteration: 5, Func. Count: 55, Neg. LLF: 129.48592642517627
Iteration: 6, Func. Count: 66, Neg. LLF: 127.66823786294776
Iteration: 7, Func. Count: 77, Neg. LLF: 127.39290722663277
Iteration: 8, Func. Count: 88, Neg. LLF: 127.47193772482778
Iteration: 9, Func. Count: 99, Neg. LLF: 127.34119927242732
Iteration: 10, Func. Count: 109, Neg. LLF: 127.34082241423778
Iteration: 11, Func. Count: 119, Neg. LLF: 127.34069889414647
Iteration: 12, Func. Count: 129, Neg. LLF: 127.3406928283432
Iteration: 13, Func. Count: 138, Neg. LLF: 127.34069282831194
Optimization terminated successfully (Exit mode 0)
Current function value: 127.3406928283432
Iterations: 13
Function evaluations: 138
Gradient evaluations: 13
Iteration: 1, Func. Count: 12, Neg. LLF: 161.82045457630306
Iteration: 2, Func. Count: 24, Neg. LLF: 133.869181535814
Iteration: 3, Func. Count: 36, Neg. LLF: 545.1983113724815
Iteration: 4, Func. Count: 48, Neg. LLF: 147.93752824404575
Iteration: 5, Func. Count: 60, Neg. LLF: 131.65777848221205
Iteration: 6, Func. Count: 72, Neg. LLF: 133.6890981437437
Iteration: 7, Func. Count: 84, Neg. LLF: 127.36585414387709
Iteration: 8, Func. Count: 95, Neg. LLF: 127.52185656622876
Iteration: 9, Func. Count: 107, Neg. LLF: 127.34289755562386
Iteration: 10, Func. Count: 118, Neg. LLF: 127.34126817485344
Iteration: 11, Func. Count: 129, Neg. LLF: 127.3409065249085
Iteration: 12, Func. Count: 140, Neg. LLF: 127.34069964257833
Iteration: 13, Func. Count: 151, Neg. LLF: 127.34069265495017
Iteration: 14, Func. Count: 161, Neg. LLF: 127.34069271362793
Optimization terminated successfully (Exit mode 0)
Current function value: 127.34069265495017
Iterations: 14
Function evaluations: 161
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 135.10248654556824
Iteration: 2, Func. Count: 18, Neg. LLF: 146.32692068715437
Iteration: 3, Func. Count: 27, Neg. LLF: 135.49881206585553
Iteration: 4, Func. Count: 38, Neg. LLF: 128.22194678616555
Iteration: 5, Func. Count: 46, Neg. LLF: 128.22844838043386
Iteration: 6, Func. Count: 55, Neg. LLF: 127.94571065308764
Iteration: 7, Func. Count: 63, Neg. LLF: 127.94073680027444
Iteration: 8, Func. Count: 71, Neg. LLF: 127.94036417460626
Iteration: 9, Func. Count: 79, Neg. LLF: 127.94033353394155
Iteration: 10, Func. Count: 86, Neg. LLF: 127.94033353382686
Optimization terminated successfully (Exit mode 0)
Current function value: 127.94033353394155
Iterations: 10
Function evaluations: 86
Gradient evaluations: 10
Iteration: 1, Func. Count: 10, Neg. LLF: 6181255.604356166
Iteration: 2, Func. Count: 20, Neg. LLF: 129.36248610121902
Iteration: 3, Func. Count: 30, Neg. LLF: 159.49757961036127
Iteration: 4, Func. Count: 40, Neg. LLF: 130.03148747613588
Iteration: 5, Func. Count: 50, Neg. LLF: 130.31085453290015
Iteration: 6, Func. Count: 60, Neg. LLF: 127.43278487428653
Iteration: 7, Func. Count: 69, Neg. LLF: 127.43041191420345
Iteration: 8, Func. Count: 78, Neg. LLF: 127.43034596197356
Iteration: 9, Func. Count: 87, Neg. LLF: 127.43033557620053
Iteration: 10, Func. Count: 95, Neg. LLF: 127.43033557623576
Optimization terminated successfully (Exit mode 0)
Current function value: 127.43033557620053
Iterations: 10
Function evaluations: 95
Gradient evaluations: 10
Iteration: 1, Func. Count: 11, Neg. LLF: 7867026.746254965
Iteration: 2, Func. Count: 22, Neg. LLF: 129.5948472165726
Iteration: 3, Func. Count: 33, Neg. LLF: 158.56235396483353
Iteration: 4, Func. Count: 44, Neg. LLF: 133.73274527918988
Iteration: 5, Func. Count: 55, Neg. LLF: 129.2276354540669
Iteration: 6, Func. Count: 66, Neg. LLF: 127.37760299120256
Iteration: 7, Func. Count: 76, Neg. LLF: 127.414364687918
Iteration: 8, Func. Count: 87, Neg. LLF: 127.38195147847256
Iteration: 9, Func. Count: 98, Neg. LLF: 127.37085917157715
Iteration: 10, Func. Count: 108, Neg. LLF: 127.37078623204084
Iteration: 11, Func. Count: 118, Neg. LLF: 127.37078451690441
Iteration: 12, Func. Count: 127, Neg. LLF: 127.3707845168076
Optimization terminated successfully (Exit mode 0)
Current function value: 127.37078451690441
Iterations: 12
Function evaluations: 127
Gradient evaluations: 12
Iteration: 1, Func. Count: 12, Neg. LLF: 162.28066307330883
Iteration: 2, Func. Count: 24, Neg. LLF: 135.54745664273653
Iteration: 3, Func. Count: 36, Neg. LLF: 391.5693225047895
Iteration: 4, Func. Count: 48, Neg. LLF: 137.02759864660678
Iteration: 5, Func. Count: 60, Neg. LLF: 129.46320537302765
Iteration: 6, Func. Count: 72, Neg. LLF: 127.60501148384694
Iteration: 7, Func. Count: 84, Neg. LLF: 127.4065695680185
Iteration: 8, Func. Count: 96, Neg. LLF: 127.48554440325677
Iteration: 9, Func. Count: 108, Neg. LLF: 127.34118035030248
Iteration: 10, Func. Count: 119, Neg. LLF: 127.34081149407626
Iteration: 11, Func. Count: 130, Neg. LLF: 127.34069784241018
Iteration: 12, Func. Count: 141, Neg. LLF: 127.34069278823307
Iteration: 13, Func. Count: 151, Neg. LLF: 127.34069278821087
Optimization terminated successfully (Exit mode 0)
Current function value: 127.34069278823307
Iterations: 13
Function evaluations: 151
Gradient evaluations: 13
Iteration: 1, Func. Count: 13, Neg. LLF: 161.8223018217855
Iteration: 2, Func. Count: 26, Neg. LLF: 133.87484250064608
Iteration: 3, Func. Count: 39, Neg. LLF: 556.4194805992063
Iteration: 4, Func. Count: 52, Neg. LLF: 147.92867844974194
Iteration: 5, Func. Count: 65, Neg. LLF: 131.67533683904082
Iteration: 6, Func. Count: 78, Neg. LLF: 133.59819724558645
Iteration: 7, Func. Count: 91, Neg. LLF: 127.37487585131997
Iteration: 8, Func. Count: 103, Neg. LLF: 127.50728368818531
Iteration: 9, Func. Count: 116, Neg. LLF: 127.3438943353637
Iteration: 10, Func. Count: 128, Neg. LLF: 127.34134247606076
Iteration: 11, Func. Count: 140, Neg. LLF: 127.34095249769527
Iteration: 12, Func. Count: 152, Neg. LLF: 127.34070825403671
Iteration: 13, Func. Count: 164, Neg. LLF: 127.34069276635634
Iteration: 14, Func. Count: 175, Neg. LLF: 127.34069282499794
Optimization terminated successfully (Exit mode 0)
Current function value: 127.34069276635634
Iterations: 14
Function evaluations: 175
Gradient evaluations: 14
Iteration: 1, Func. Count: 6, Neg. LLF: 132.659276793789
Iteration: 2, Func. Count: 12, Neg. LLF: 165.56843017924314
Iteration: 3, Func. Count: 18, Neg. LLF: 128.25168050240586
Iteration: 4, Func. Count: 23, Neg. LLF: 181.839721980126
Iteration: 5, Func. Count: 29, Neg. LLF: 128.037117291885
Iteration: 6, Func. Count: 34, Neg. LLF: 128.0108609534096
Iteration: 7, Func. Count: 39, Neg. LLF: 128.00920284986532
Iteration: 8, Func. Count: 44, Neg. LLF: 128.00885289064365
Iteration: 9, Func. Count: 49, Neg. LLF: 128.00878446107984
Iteration: 10, Func. Count: 54, Neg. LLF: 128.0087673817209
Iteration: 11, Func. Count: 59, Neg. LLF: 128.00876317027738
Iteration: 12, Func. Count: 64, Neg. LLF: 128.00876234294657
Optimization terminated successfully (Exit mode 0)
Current function value: 128.00876234294657
Iterations: 12
Function evaluations: 64
Gradient evaluations: 12
Iteration: 1, Func. Count: 7, Neg. LLF: 349.5647087807369
Iteration: 2, Func. Count: 14, Neg. LLF: 307.83190599836746
Iteration: 3, Func. Count: 21, Neg. LLF: 177.69218745420932
Iteration: 4, Func. Count: 28, Neg. LLF: 130.26159201413356
Iteration: 5, Func. Count: 35, Neg. LLF: 127.79423028451899
Iteration: 6, Func. Count: 41, Neg. LLF: 127.76151724440867
Iteration: 7, Func. Count: 47, Neg. LLF: 127.68907308404395
Iteration: 8, Func. Count: 53, Neg. LLF: 127.68728486104712
Iteration: 9, Func. Count: 59, Neg. LLF: 127.68714949577792
Iteration: 10, Func. Count: 65, Neg. LLF: 127.6871455976044
Iteration: 11, Func. Count: 70, Neg. LLF: 127.68714559758638
Optimization terminated successfully (Exit mode 0)
Current function value: 127.6871455976044
Iterations: 11
Function evaluations: 70
Gradient evaluations: 11
Iteration: 1, Func. Count: 8, Neg. LLF: 19336912.235944778
Iteration: 2, Func. Count: 16, Neg. LLF: 2263.4573213320937
Iteration: 3, Func. Count: 24, Neg. LLF: 131.1023337075528
Iteration: 4, Func. Count: 32, Neg. LLF: 140.25096017983742
Iteration: 5, Func. Count: 40, Neg. LLF: 128.2484104192882
Iteration: 6, Func. Count: 48, Neg. LLF: 127.98236359183566
Iteration: 7, Func. Count: 56, Neg. LLF: 128.14372064933215
Iteration: 8, Func. Count: 64, Neg. LLF: 127.6588215289047
Iteration: 9, Func. Count: 71, Neg. LLF: 127.59380404034735
Iteration: 10, Func. Count: 78, Neg. LLF: 127.59320737827755
Iteration: 11, Func. Count: 85, Neg. LLF: 127.5931043963255
Iteration: 12, Func. Count: 92, Neg. LLF: 127.59308698497644
Iteration: 13, Func. Count: 99, Neg. LLF: 127.5930862178405
Optimization terminated successfully (Exit mode 0)
Current function value: 127.5930862178405
Iterations: 13
Function evaluations: 99
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 18951756.060317043
Iteration: 2, Func. Count: 18, Neg. LLF: 607.3970234913357
Iteration: 3, Func. Count: 27, Neg. LLF: 128.84154751027165
Iteration: 4, Func. Count: 35, Neg. LLF: 140.99440208230146
Iteration: 5, Func. Count: 44, Neg. LLF: 131.27490614975676
Iteration: 6, Func. Count: 54, Neg. LLF: 141.09241347547578
Iteration: 7, Func. Count: 64, Neg. LLF: 127.97958028307882
Iteration: 8, Func. Count: 73, Neg. LLF: 128.22165847533188
Iteration: 9, Func. Count: 82, Neg. LLF: 127.59259334446047
Iteration: 10, Func. Count: 90, Neg. LLF: 127.58098037437789
Iteration: 11, Func. Count: 98, Neg. LLF: 127.55932035398922
Iteration: 12, Func. Count: 106, Neg. LLF: 127.55815427296149
Iteration: 13, Func. Count: 114, Neg. LLF: 127.55774064418749
Iteration: 14, Func. Count: 122, Neg. LLF: 127.55770376695239
Iteration: 15, Func. Count: 130, Neg. LLF: 127.55768956103786
Iteration: 16, Func. Count: 138, Neg. LLF: 127.55768831269148
Iteration: 17, Func. Count: 145, Neg. LLF: 127.55768831273794
Optimization terminated successfully (Exit mode 0)
Current function value: 127.55768831269148
Iterations: 17
Function evaluations: 145
Gradient evaluations: 17
Iteration: 1, Func. Count: 10, Neg. LLF: 131.47947659814054
Iteration: 2, Func. Count: 20, Neg. LLF: 139.74920743814943
Iteration: 3, Func. Count: 30, Neg. LLF: 130.35877892619138
Iteration: 4, Func. Count: 40, Neg. LLF: 128.5955843417092
Iteration: 5, Func. Count: 50, Neg. LLF: 128.2348492747729
Iteration: 6, Func. Count: 60, Neg. LLF: 127.89134271915223
Iteration: 7, Func. Count: 70, Neg. LLF: 127.56052382284203
Iteration: 8, Func. Count: 79, Neg. LLF: 127.59121350032824
Iteration: 9, Func. Count: 89, Neg. LLF: 127.55806385611432
Iteration: 10, Func. Count: 98, Neg. LLF: 127.55771070133223
Iteration: 11, Func. Count: 107, Neg. LLF: 127.55768824896133
Iteration: 12, Func. Count: 115, Neg. LLF: 127.55768829886293
Optimization terminated successfully (Exit mode 0)
Current function value: 127.55768824896133
Iterations: 12
Function evaluations: 115
Gradient evaluations: 12
Iteration: 1, Func. Count: 7, Neg. LLF: 133.1997346193257
Iteration: 2, Func. Count: 14, Neg. LLF: 150.96841818667752
Iteration: 3, Func. Count: 21, Neg. LLF: 131.99620219918114
Iteration: 4, Func. Count: 28, Neg. LLF: 128.1483907471562
Iteration: 5, Func. Count: 34, Neg. LLF: 256.45085303236147
Iteration: 6, Func. Count: 41, Neg. LLF: 128.66290738077728
Iteration: 7, Func. Count: 48, Neg. LLF: 128.00509862193903
Iteration: 8, Func. Count: 54, Neg. LLF: 128.00187414028676
Iteration: 9, Func. Count: 60, Neg. LLF: 128.00170314431588
Iteration: 10, Func. Count: 66, Neg. LLF: 128.00165148573387
Iteration: 11, Func. Count: 72, Neg. LLF: 128.00164482371147
Iteration: 12, Func. Count: 77, Neg. LLF: 128.0016448237096
Optimization terminated successfully (Exit mode 0)
Current function value: 128.00164482371147
Iterations: 12
Function evaluations: 77
Gradient evaluations: 12
Iteration: 1, Func. Count: 8, Neg. LLF: 981.0731855345148
Iteration: 2, Func. Count: 16, Neg. LLF: 130.65966067020742
Iteration: 3, Func. Count: 24, Neg. LLF: 128.6851173186531
Iteration: 4, Func. Count: 32, Neg. LLF: 130.51946892169428
Iteration: 5, Func. Count: 40, Neg. LLF: 127.65039616326075
Iteration: 6, Func. Count: 48, Neg. LLF: 127.58985103908846
Iteration: 7, Func. Count: 56, Neg. LLF: 127.4338912365312
Iteration: 8, Func. Count: 63, Neg. LLF: 127.4319225512772
Iteration: 9, Func. Count: 70, Neg. LLF: 127.43039324106056
Iteration: 10, Func. Count: 77, Neg. LLF: 127.43035179643955
Iteration: 11, Func. Count: 84, Neg. LLF: 127.43033683073864
Iteration: 12, Func. Count: 91, Neg. LLF: 127.43033558496874
Iteration: 13, Func. Count: 97, Neg. LLF: 127.43033558500373
Optimization terminated successfully (Exit mode 0)
Current function value: 127.43033558496874
Iterations: 13
Function evaluations: 97
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 156.37508685135492
Iteration: 2, Func. Count: 18, Neg. LLF: 138.3610496816042
Iteration: 3, Func. Count: 27, Neg. LLF: 180.23135047241487
Iteration: 4, Func. Count: 36, Neg. LLF: 139.27103877469935
Iteration: 5, Func. Count: 45, Neg. LLF: 129.43869103215306
Iteration: 6, Func. Count: 54, Neg. LLF: 127.47970270325592
Iteration: 7, Func. Count: 62, Neg. LLF: 127.58782420408735
Iteration: 8, Func. Count: 71, Neg. LLF: 128.5517519298678
Iteration: 9, Func. Count: 80, Neg. LLF: 127.37170214895953
Iteration: 10, Func. Count: 88, Neg. LLF: 127.3708320278787
Iteration: 11, Func. Count: 96, Neg. LLF: 127.37079923019758
Iteration: 12, Func. Count: 104, Neg. LLF: 127.37078513910997
Iteration: 13, Func. Count: 111, Neg. LLF: 127.3707851391196
Optimization terminated successfully (Exit mode 0)
Current function value: 127.37078513910997
Iterations: 13
Function evaluations: 111
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 155.61825889733706
Iteration: 2, Func. Count: 20, Neg. LLF: 137.12834621859048
Iteration: 3, Func. Count: 30, Neg. LLF: 194.5934801530446
Iteration: 4, Func. Count: 40, Neg. LLF: 138.81716420639293
Iteration: 5, Func. Count: 50, Neg. LLF: 129.20565711578882
Iteration: 6, Func. Count: 60, Neg. LLF: 127.88708020198168
Iteration: 7, Func. Count: 70, Neg. LLF: 127.74043794343356
Iteration: 8, Func. Count: 80, Neg. LLF: 127.40275020352713
Iteration: 9, Func. Count: 90, Neg. LLF: 127.37970752501747
Iteration: 10, Func. Count: 100, Neg. LLF: 127.3475892765288
Iteration: 11, Func. Count: 109, Neg. LLF: 127.3415579488575
Iteration: 12, Func. Count: 118, Neg. LLF: 127.34108726296432
Iteration: 13, Func. Count: 127, Neg. LLF: 127.34070543731505
Iteration: 14, Func. Count: 136, Neg. LLF: 127.3406935129054
Iteration: 15, Func. Count: 145, Neg. LLF: 127.34069261720565
Optimization terminated successfully (Exit mode 0)
Current function value: 127.34069261720565
Iterations: 15
Function evaluations: 145
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 154.94225043277618
Iteration: 2, Func. Count: 22, Neg. LLF: 133.366251733034
Iteration: 3, Func. Count: 33, Neg. LLF: 236.67272470769436
Iteration: 4, Func. Count: 44, Neg. LLF: 140.81881899677717
Iteration: 5, Func. Count: 55, Neg. LLF: 134.1255341957905
Iteration: 6, Func. Count: 66, Neg. LLF: 129.9496884022433
Iteration: 7, Func. Count: 77, Neg. LLF: 127.47480236919833
Iteration: 8, Func. Count: 87, Neg. LLF: 127.45273373497955
Iteration: 9, Func. Count: 98, Neg. LLF: 127.84673913825294
Iteration: 10, Func. Count: 109, Neg. LLF: 127.37512854847041
Iteration: 11, Func. Count: 120, Neg. LLF: 127.34088167285223
Iteration: 12, Func. Count: 130, Neg. LLF: 127.34072241215554
Iteration: 13, Func. Count: 140, Neg. LLF: 127.34070488090703
Iteration: 14, Func. Count: 150, Neg. LLF: 127.34069433993096
Iteration: 15, Func. Count: 160, Neg. LLF: 127.3406926469983
Iteration: 16, Func. Count: 169, Neg. LLF: 127.34069270566789
Optimization terminated successfully (Exit mode 0)
Current function value: 127.3406926469983
Iterations: 16
Function evaluations: 169
Gradient evaluations: 16
Iteration: 1, Func. Count: 8, Neg. LLF: 135.93793973653143
Iteration: 2, Func. Count: 16, Neg. LLF: 142.18161173099332
Iteration: 3, Func. Count: 24, Neg. LLF: 128.7511595363652
Iteration: 4, Func. Count: 31, Neg. LLF: 128.6394281949704
Iteration: 5, Func. Count: 39, Neg. LLF: 151.88015482907443
Iteration: 6, Func. Count: 47, Neg. LLF: 127.99641016816916
Iteration: 7, Func. Count: 55, Neg. LLF: 127.57862476925538
Iteration: 8, Func. Count: 62, Neg. LLF: 127.57580761464104
Iteration: 9, Func. Count: 69, Neg. LLF: 127.57506586955883
Iteration: 10, Func. Count: 76, Neg. LLF: 127.57449020717667
Iteration: 11, Func. Count: 83, Neg. LLF: 127.57446222232329
Iteration: 12, Func. Count: 90, Neg. LLF: 127.57445233441554
Iteration: 13, Func. Count: 96, Neg. LLF: 127.57445227325903
Optimization terminated successfully (Exit mode 0)
Current function value: 127.57445233441554
Iterations: 13
Function evaluations: 96
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 675.1626568237297
Iteration: 2, Func. Count: 18, Neg. LLF: 337.544247521201
Iteration: 3, Func. Count: 28, Neg. LLF: 143.4177983130384
Iteration: 4, Func. Count: 37, Neg. LLF: 137.36203062150238
Iteration: 5, Func. Count: 46, Neg. LLF: 128.51437153124064
Iteration: 6, Func. Count: 55, Neg. LLF: 127.32019832274726
Iteration: 7, Func. Count: 63, Neg. LLF: 127.25795543146009
Iteration: 8, Func. Count: 71, Neg. LLF: 127.24550718740706
Iteration: 9, Func. Count: 79, Neg. LLF: 127.24409570959052
Iteration: 10, Func. Count: 87, Neg. LLF: 127.24313773154783
Iteration: 11, Func. Count: 95, Neg. LLF: 127.24305505368949
Iteration: 12, Func. Count: 103, Neg. LLF: 127.243049297956
Iteration: 13, Func. Count: 110, Neg. LLF: 127.24304929798966
Optimization terminated successfully (Exit mode 0)
Current function value: 127.243049297956
Iterations: 13
Function evaluations: 110
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 7842931.383419359
Iteration: 2, Func. Count: 20, Neg. LLF: 129.4435731969099
Iteration: 3, Func. Count: 30, Neg. LLF: 131.13782172170556
Iteration: 4, Func. Count: 40, Neg. LLF: 128.1453737697376
Iteration: 5, Func. Count: 50, Neg. LLF: 127.24910444320408
Iteration: 6, Func. Count: 60, Neg. LLF: 127.5392871178898
Iteration: 7, Func. Count: 70, Neg. LLF: 127.1357895287292
Iteration: 8, Func. Count: 80, Neg. LLF: 127.09544844150999
Iteration: 9, Func. Count: 89, Neg. LLF: 127.09198156833
Iteration: 10, Func. Count: 98, Neg. LLF: 127.08724743731518
Iteration: 11, Func. Count: 107, Neg. LLF: 127.08702067889631
Iteration: 12, Func. Count: 116, Neg. LLF: 127.08699378107298
Iteration: 13, Func. Count: 124, Neg. LLF: 127.08699378108265
Optimization terminated successfully (Exit mode 0)
Current function value: 127.08699378107298
Iterations: 13
Function evaluations: 124
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 7906940.796452109
Iteration: 2, Func. Count: 22, Neg. LLF: 132.21296072519326
Iteration: 3, Func. Count: 33, Neg. LLF: 135.92248249214504
Iteration: 4, Func. Count: 44, Neg. LLF: 129.66006672782345
Iteration: 5, Func. Count: 55, Neg. LLF: 128.1322956278005
Iteration: 6, Func. Count: 66, Neg. LLF: 128.26579797081058
Iteration: 7, Func. Count: 77, Neg. LLF: 127.17206655039823
Iteration: 8, Func. Count: 88, Neg. LLF: 127.02391705152203
Iteration: 9, Func. Count: 98, Neg. LLF: 127.04354929067956
Iteration: 10, Func. Count: 109, Neg. LLF: 127.00817593199336
Iteration: 11, Func. Count: 119, Neg. LLF: 127.00637855268789
Iteration: 12, Func. Count: 129, Neg. LLF: 127.00624037952232
Iteration: 13, Func. Count: 139, Neg. LLF: 127.00622843948692
Iteration: 14, Func. Count: 149, Neg. LLF: 127.0062276772668
Optimization terminated successfully (Exit mode 0)
Current function value: 127.0062276772668
Iterations: 14
Function evaluations: 149
Gradient evaluations: 14
Iteration: 1, Func. Count: 12, Neg. LLF: 151.86449988219894
Iteration: 2, Func. Count: 24, Neg. LLF: 155.20062681840494
Iteration: 3, Func. Count: 36, Neg. LLF: 134.14493420779846
Iteration: 4, Func. Count: 48, Neg. LLF: 159.96684553470305
Iteration: 5, Func. Count: 60, Neg. LLF: 148.61595905379642
Iteration: 6, Func. Count: 72, Neg. LLF: 135.9118643018754
Iteration: 7, Func. Count: 84, Neg. LLF: 128.28041393376225
Iteration: 8, Func. Count: 96, Neg. LLF: 127.01952552327215
Iteration: 9, Func. Count: 107, Neg. LLF: 127.00994606549803
Iteration: 10, Func. Count: 118, Neg. LLF: 127.00758471180914
Iteration: 11, Func. Count: 129, Neg. LLF: 127.00636948090651
Iteration: 12, Func. Count: 140, Neg. LLF: 127.00624401719827
Iteration: 13, Func. Count: 151, Neg. LLF: 127.00623141321917
Iteration: 14, Func. Count: 162, Neg. LLF: 127.00622770296057
Iteration: 15, Func. Count: 172, Neg. LLF: 127.0062277519268
Optimization terminated successfully (Exit mode 0)
Current function value: 127.00622770296057
Iterations: 15
Function evaluations: 172
Gradient evaluations: 15
Iteration: 1, Func. Count: 9, Neg. LLF: 134.897937684891
Iteration: 2, Func. Count: 18, Neg. LLF: 155.20141536228266
Iteration: 3, Func. Count: 27, Neg. LLF: 128.33732846547315
Iteration: 4, Func. Count: 35, Neg. LLF: 127.68676232028757
Iteration: 5, Func. Count: 43, Neg. LLF: 128.90187273776456
Iteration: 6, Func. Count: 52, Neg. LLF: 127.58316686598519
Iteration: 7, Func. Count: 60, Neg. LLF: 127.57562767413108
Iteration: 8, Func. Count: 68, Neg. LLF: 127.57451508015764
Iteration: 9, Func. Count: 76, Neg. LLF: 127.57445407252753
Iteration: 10, Func. Count: 84, Neg. LLF: 127.57445275272741
Iteration: 11, Func. Count: 91, Neg. LLF: 127.57445282669958
Optimization terminated successfully (Exit mode 0)
Current function value: 127.57445275272741
Iterations: 11
Function evaluations: 91
Gradient evaluations: 11
Iteration: 1, Func. Count: 10, Neg. LLF: 684.8211418204992
Iteration: 2, Func. Count: 20, Neg. LLF: 335.93705152967516
Iteration: 3, Func. Count: 31, Neg. LLF: 143.5696851363822
Iteration: 4, Func. Count: 41, Neg. LLF: 137.21549833087684
Iteration: 5, Func. Count: 51, Neg. LLF: 128.50807121281255
Iteration: 6, Func. Count: 61, Neg. LLF: 127.31660346379887
Iteration: 7, Func. Count: 70, Neg. LLF: 127.2570817313389
Iteration: 8, Func. Count: 79, Neg. LLF: 127.2453793714616
Iteration: 9, Func. Count: 88, Neg. LLF: 127.24404157423977
Iteration: 10, Func. Count: 97, Neg. LLF: 127.24312592163092
Iteration: 11, Func. Count: 106, Neg. LLF: 127.24305432898883
Iteration: 12, Func. Count: 115, Neg. LLF: 127.24304927576411
Iteration: 13, Func. Count: 123, Neg. LLF: 127.24304927579591
Optimization terminated successfully (Exit mode 0)
Current function value: 127.24304927576411
Iterations: 13
Function evaluations: 123
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 7842577.544071812
Iteration: 2, Func. Count: 22, Neg. LLF: 129.4506411743438
Iteration: 3, Func. Count: 33, Neg. LLF: 131.10085962831485
Iteration: 4, Func. Count: 44, Neg. LLF: 128.4046903270463
Iteration: 5, Func. Count: 55, Neg. LLF: 127.25199062015601
Iteration: 6, Func. Count: 66, Neg. LLF: 127.3830591131628
Iteration: 7, Func. Count: 77, Neg. LLF: 127.1391141703971
Iteration: 8, Func. Count: 88, Neg. LLF: 127.09695768044729
Iteration: 9, Func. Count: 98, Neg. LLF: 127.09225351269698
Iteration: 10, Func. Count: 108, Neg. LLF: 127.08731156773058
Iteration: 11, Func. Count: 118, Neg. LLF: 127.08702902653364
Iteration: 12, Func. Count: 128, Neg. LLF: 127.08699406594685
Iteration: 13, Func. Count: 138, Neg. LLF: 127.08699335501586
Optimization terminated successfully (Exit mode 0)
Current function value: 127.08699335501586
Iterations: 13
Function evaluations: 138
Gradient evaluations: 13
Iteration: 1, Func. Count: 12, Neg. LLF: 7898332.352711711
Iteration: 2, Func. Count: 24, Neg. LLF: 132.79553994893394
Iteration: 3, Func. Count: 36, Neg. LLF: 133.94844241073233
Iteration: 4, Func. Count: 48, Neg. LLF: 129.6688046501391
Iteration: 5, Func. Count: 60, Neg. LLF: 127.38064513784803
Iteration: 6, Func. Count: 72, Neg. LLF: 127.85406433364406
Iteration: 7, Func. Count: 84, Neg. LLF: 127.2390291312426
Iteration: 8, Func. Count: 96, Neg. LLF: 127.0143502255455
Iteration: 9, Func. Count: 107, Neg. LLF: 127.0116716042119
Iteration: 10, Func. Count: 118, Neg. LLF: 127.00641022606474
Iteration: 11, Func. Count: 129, Neg. LLF: 127.00624290508199
Iteration: 12, Func. Count: 140, Neg. LLF: 127.00622888319165
Iteration: 13, Func. Count: 151, Neg. LLF: 127.00622759593159
Iteration: 14, Func. Count: 161, Neg. LLF: 127.0062275958934
Optimization terminated successfully (Exit mode 0)
Current function value: 127.00622759593159
Iterations: 14
Function evaluations: 161
Gradient evaluations: 14
Iteration: 1, Func. Count: 13, Neg. LLF: 152.06694555469372
Iteration: 2, Func. Count: 26, Neg. LLF: 180.65000491524262
Iteration: 3, Func. Count: 39, Neg. LLF: 182.48687268728412
Iteration: 4, Func. Count: 52, Neg. LLF: 191.3348288993194
Iteration: 5, Func. Count: 65, Neg. LLF: 162.14996164348366
Iteration: 6, Func. Count: 78, Neg. LLF: 129.1248374966634
Iteration: 7, Func. Count: 91, Neg. LLF: 128.32446999788115
Iteration: 8, Func. Count: 104, Neg. LLF: 127.23196012869008
Iteration: 9, Func. Count: 116, Neg. LLF: 127.02898813258872
Iteration: 10, Func. Count: 128, Neg. LLF: 127.02383208334793
Iteration: 11, Func. Count: 141, Neg. LLF: 127.00816274380968
Iteration: 12, Func. Count: 153, Neg. LLF: 127.00638328398641
Iteration: 13, Func. Count: 165, Neg. LLF: 127.0062316864119
Iteration: 14, Func. Count: 177, Neg. LLF: 127.00622782945473
Iteration: 15, Func. Count: 188, Neg. LLF: 127.00622787854311
Optimization terminated successfully (Exit mode 0)
Current function value: 127.00622782945473
Iterations: 15
Function evaluations: 188
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 132.64996884210652
Iteration: 2, Func. Count: 20, Neg. LLF: 154.46151613932892
Iteration: 3, Func. Count: 30, Neg. LLF: 128.4785550505964
Iteration: 4, Func. Count: 39, Neg. LLF: 152.25627324130036
Iteration: 5, Func. Count: 49, Neg. LLF: 662.2046477728616
Iteration: 6, Func. Count: 59, Neg. LLF: 133.54515989867934
Iteration: 7, Func. Count: 69, Neg. LLF: 128.8622928206173
Iteration: 8, Func. Count: 79, Neg. LLF: 127.33034508462852
Iteration: 9, Func. Count: 89, Neg. LLF: 127.34722754787578
Iteration: 10, Func. Count: 99, Neg. LLF: 127.20191067211412
Iteration: 11, Func. Count: 108, Neg. LLF: 127.20147709652201
Iteration: 12, Func. Count: 117, Neg. LLF: 127.20129345851055
Iteration: 13, Func. Count: 126, Neg. LLF: 127.2012722392683
Iteration: 14, Func. Count: 135, Neg. LLF: 127.20126342616508
Iteration: 15, Func. Count: 144, Neg. LLF: 127.20126000579145
Iteration: 16, Func. Count: 152, Neg. LLF: 127.2012600058463
Optimization terminated successfully (Exit mode 0)
Current function value: 127.20126000579145
Iterations: 16
Function evaluations: 152
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 704.661604151259
Iteration: 2, Func. Count: 22, Neg. LLF: 335.271281847115
Iteration: 3, Func. Count: 34, Neg. LLF: 143.69550860959956
Iteration: 4, Func. Count: 45, Neg. LLF: 137.1287153738092
Iteration: 5, Func. Count: 56, Neg. LLF: 128.51276398739458
Iteration: 6, Func. Count: 67, Neg. LLF: 127.31726241673988
Iteration: 7, Func. Count: 77, Neg. LLF: 128.18704829098587
Iteration: 8, Func. Count: 88, Neg. LLF: 127.61406282911433
Iteration: 9, Func. Count: 99, Neg. LLF: 127.24746157801792
Iteration: 10, Func. Count: 109, Neg. LLF: 127.24599270900178
Iteration: 11, Func. Count: 119, Neg. LLF: 127.24375427922449
Iteration: 12, Func. Count: 129, Neg. LLF: 127.2432539001623
Iteration: 13, Func. Count: 139, Neg. LLF: 127.24310179439581
Iteration: 14, Func. Count: 149, Neg. LLF: 127.2430581285477
Iteration: 15, Func. Count: 159, Neg. LLF: 127.24305106167569
Iteration: 16, Func. Count: 169, Neg. LLF: 127.24304923303343
Iteration: 17, Func. Count: 178, Neg. LLF: 127.24304923304767
Optimization terminated successfully (Exit mode 0)
Current function value: 127.24304923303343
Iterations: 17
Function evaluations: 178
Gradient evaluations: 17
Iteration: 1, Func. Count: 12, Neg. LLF: 7843156.737376451
Iteration: 2, Func. Count: 24, Neg. LLF: 129.46352113676596
Iteration: 3, Func. Count: 36, Neg. LLF: 131.06688172318005
Iteration: 4, Func. Count: 48, Neg. LLF: 141.28795194491693
Iteration: 5, Func. Count: 61, Neg. LLF: 127.61639318515172
Iteration: 6, Func. Count: 73, Neg. LLF: 127.1389422884495
Iteration: 7, Func. Count: 84, Neg. LLF: 127.16046227904545
Iteration: 8, Func. Count: 96, Neg. LLF: 127.17923705145887
Iteration: 9, Func. Count: 108, Neg. LLF: 127.09755039772404
Iteration: 10, Func. Count: 120, Neg. LLF: 127.04943571672489
Iteration: 11, Func. Count: 131, Neg. LLF: 127.04890228416524
Iteration: 12, Func. Count: 142, Neg. LLF: 127.0487842131582
Iteration: 13, Func. Count: 153, Neg. LLF: 127.04874582238455
Iteration: 14, Func. Count: 163, Neg. LLF: 127.04874582228278
Optimization terminated successfully (Exit mode 0)
Current function value: 127.04874582238455
Iterations: 14
Function evaluations: 163
Gradient evaluations: 14
Iteration: 1, Func. Count: 13, Neg. LLF: 7899845.033697504
Iteration: 2, Func. Count: 26, Neg. LLF: 132.85983487123002
Iteration: 3, Func. Count: 39, Neg. LLF: 133.8856782993341
Iteration: 4, Func. Count: 52, Neg. LLF: 129.65112268871175
Iteration: 5, Func. Count: 65, Neg. LLF: 127.23689946329996
Iteration: 6, Func. Count: 77, Neg. LLF: 128.19452417197326
Iteration: 7, Func. Count: 90, Neg. LLF: 128.85743156791588
Iteration: 8, Func. Count: 103, Neg. LLF: 128.78453991326396
Iteration: 9, Func. Count: 116, Neg. LLF: 127.58036012305001
Iteration: 10, Func. Count: 129, Neg. LLF: 127.14730049875294
Iteration: 11, Func. Count: 142, Neg. LLF: 127.30971874673645
Iteration: 12, Func. Count: 155, Neg. LLF: 127.012928419599
Iteration: 13, Func. Count: 167, Neg. LLF: 127.00740295719419
Iteration: 14, Func. Count: 179, Neg. LLF: 127.0063213824268
Iteration: 15, Func. Count: 191, Neg. LLF: 127.00601987850006
Iteration: 16, Func. Count: 203, Neg. LLF: 127.00597713770308
Iteration: 17, Func. Count: 215, Neg. LLF: 127.00597281970838
Iteration: 18, Func. Count: 226, Neg. LLF: 127.00597281971226
Optimization terminated successfully (Exit mode 0)
Current function value: 127.00597281970838
Iterations: 18
Function evaluations: 226
Gradient evaluations: 18
Iteration: 1, Func. Count: 14, Neg. LLF: 152.0821270398755
Iteration: 2, Func. Count: 28, Neg. LLF: 180.70117558950855
Iteration: 3, Func. Count: 42, Neg. LLF: 182.65672117662194
Iteration: 4, Func. Count: 56, Neg. LLF: 191.65211884104377
Iteration: 5, Func. Count: 70, Neg. LLF: 162.42496897357526
Iteration: 6, Func. Count: 84, Neg. LLF: 129.84904240344838
Iteration: 7, Func. Count: 98, Neg. LLF: 128.3791039749322
Iteration: 8, Func. Count: 112, Neg. LLF: 127.28093017471663
Iteration: 9, Func. Count: 126, Neg. LLF: 127.0401310891283
Iteration: 10, Func. Count: 139, Neg. LLF: 127.06957576903118
Iteration: 11, Func. Count: 153, Neg. LLF: 127.0275327947852
Iteration: 12, Func. Count: 167, Neg. LLF: 127.00670129991747
Iteration: 13, Func. Count: 180, Neg. LLF: 127.00669365234455
Iteration: 14, Func. Count: 194, Neg. LLF: 127.00618162848984
Iteration: 15, Func. Count: 208, Neg. LLF: 127.00598306570312
Iteration: 16, Func. Count: 221, Neg. LLF: 127.00597183520267
Iteration: 17, Func. Count: 233, Neg. LLF: 127.0059718848381
Optimization terminated successfully (Exit mode 0)
Current function value: 127.00597183520267
Iterations: 17
Function evaluations: 233
Gradient evaluations: 17
Iteration: 1, Func. Count: 7, Neg. LLF: 131.6326965100228
Iteration: 2, Func. Count: 14, Neg. LLF: 154.33846118156464
Iteration: 3, Func. Count: 21, Neg. LLF: 128.21367575494276
Iteration: 4, Func. Count: 27, Neg. LLF: 136.54516928362656
Iteration: 5, Func. Count: 34, Neg. LLF: 129.00692010847968
Iteration: 6, Func. Count: 41, Neg. LLF: 131.797981349949
Iteration: 7, Func. Count: 48, Neg. LLF: 127.64104542429207
Iteration: 8, Func. Count: 54, Neg. LLF: 127.63801640459486
Iteration: 9, Func. Count: 60, Neg. LLF: 127.63714299824684
Iteration: 10, Func. Count: 66, Neg. LLF: 127.6371192076214
Iteration: 11, Func. Count: 72, Neg. LLF: 127.6370984782817
Iteration: 12, Func. Count: 78, Neg. LLF: 127.63709311322432
Iteration: 13, Func. Count: 83, Neg. LLF: 127.63709311322825
Optimization terminated successfully (Exit mode 0)
Current function value: 127.63709311322432
Iterations: 13
Function evaluations: 83
Gradient evaluations: 13
Iteration: 1, Func. Count: 8, Neg. LLF: 184.01941148559519
Iteration: 2, Func. Count: 16, Neg. LLF: 406414.00320141506
Iteration: 3, Func. Count: 24, Neg. LLF: 148.2543488723545
Iteration: 4, Func. Count: 32, Neg. LLF: 129.63073169188655
Iteration: 5, Func. Count: 40, Neg. LLF: 129.8294429220567
Iteration: 6, Func. Count: 48, Neg. LLF: 127.72380729683127
Iteration: 7, Func. Count: 56, Neg. LLF: 127.57222426740915
Iteration: 8, Func. Count: 63, Neg. LLF: 127.54340239903271
Iteration: 9, Func. Count: 70, Neg. LLF: 127.5343996486324
Iteration: 10, Func. Count: 77, Neg. LLF: 127.53308156182158
Iteration: 11, Func. Count: 84, Neg. LLF: 127.53294830166638
Iteration: 12, Func. Count: 91, Neg. LLF: 127.53293998279034
Iteration: 13, Func. Count: 98, Neg. LLF: 127.53293928816898
Optimization terminated successfully (Exit mode 0)
Current function value: 127.53293928816898
Iterations: 13
Function evaluations: 98
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 450.5804425847836
Iteration: 2, Func. Count: 18, Neg. LLF: 2547.758277655863
Iteration: 3, Func. Count: 27, Neg. LLF: 157.10845577768848
Iteration: 4, Func. Count: 36, Neg. LLF: 129.62747100441746
Iteration: 5, Func. Count: 45, Neg. LLF: 128.2401232727893
Iteration: 6, Func. Count: 54, Neg. LLF: 127.75072329568951
Iteration: 7, Func. Count: 63, Neg. LLF: 127.56391748023026
Iteration: 8, Func. Count: 71, Neg. LLF: 127.54585081522033
Iteration: 9, Func. Count: 79, Neg. LLF: 127.53450769189628
Iteration: 10, Func. Count: 87, Neg. LLF: 127.53317548159409
Iteration: 11, Func. Count: 95, Neg. LLF: 127.53296695291887
Iteration: 12, Func. Count: 103, Neg. LLF: 127.53293931017708
Iteration: 13, Func. Count: 110, Neg. LLF: 127.53293931464474
Optimization terminated successfully (Exit mode 0)
Current function value: 127.53293931017708
Iterations: 13
Function evaluations: 110
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 18718557.034893
Iteration: 2, Func. Count: 20, Neg. LLF: 1716.3297775377773
Iteration: 3, Func. Count: 30, Neg. LLF: 131.37470941631224
Iteration: 4, Func. Count: 40, Neg. LLF: 130.53506097442326
Iteration: 5, Func. Count: 50, Neg. LLF: 127.88416500908374
Iteration: 6, Func. Count: 60, Neg. LLF: 128.97304086512443
Iteration: 7, Func. Count: 70, Neg. LLF: 127.78735762420281
Iteration: 8, Func. Count: 80, Neg. LLF: 127.7603061904269
Iteration: 9, Func. Count: 90, Neg. LLF: 127.54532194885986
Iteration: 10, Func. Count: 99, Neg. LLF: 127.50453370714676
Iteration: 11, Func. Count: 108, Neg. LLF: 127.50008184878722
Iteration: 12, Func. Count: 117, Neg. LLF: 127.49948749497472
Iteration: 13, Func. Count: 126, Neg. LLF: 127.4994227584356
Iteration: 14, Func. Count: 135, Neg. LLF: 127.49942068409447
Iteration: 15, Func. Count: 143, Neg. LLF: 127.49942068410705
Optimization terminated successfully (Exit mode 0)
Current function value: 127.49942068409447
Iterations: 15
Function evaluations: 143
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 18718020.694529377
Iteration: 2, Func. Count: 22, Neg. LLF: 2987.2414972021475
Iteration: 3, Func. Count: 33, Neg. LLF: 128.62964108235656
Iteration: 4, Func. Count: 43, Neg. LLF: 128.24279108029637
Iteration: 5, Func. Count: 54, Neg. LLF: 133.4306247060228
Iteration: 6, Func. Count: 65, Neg. LLF: 129.88770580903727
Iteration: 7, Func. Count: 77, Neg. LLF: 128.6070475486943
Iteration: 8, Func. Count: 88, Neg. LLF: 127.82311984609446
Iteration: 9, Func. Count: 99, Neg. LLF: 127.52033400071956
Iteration: 10, Func. Count: 109, Neg. LLF: 127.51086951611042
Iteration: 11, Func. Count: 119, Neg. LLF: 127.50580954201155
Iteration: 12, Func. Count: 129, Neg. LLF: 127.50100346140317
Iteration: 13, Func. Count: 139, Neg. LLF: 127.49957626800621
Iteration: 14, Func. Count: 149, Neg. LLF: 127.49942787411366
Iteration: 15, Func. Count: 159, Neg. LLF: 127.49942076797375
Iteration: 16, Func. Count: 168, Neg. LLF: 127.49942081064715
Optimization terminated successfully (Exit mode 0)
Current function value: 127.49942076797375
Iterations: 16
Function evaluations: 168
Gradient evaluations: 16
Iteration: 1, Func. Count: 8, Neg. LLF: 132.9292439177574
Iteration: 2, Func. Count: 16, Neg. LLF: 149.1971933746808
Iteration: 3, Func. Count: 24, Neg. LLF: 131.5905564000102
Iteration: 4, Func. Count: 32, Neg. LLF: 135.50075449029504
Iteration: 5, Func. Count: 40, Neg. LLF: 371.4764551459719
Iteration: 6, Func. Count: 48, Neg. LLF: 128.51801925566588
Iteration: 7, Func. Count: 56, Neg. LLF: 133.10128446895882
Iteration: 8, Func. Count: 64, Neg. LLF: 127.68267667652948
Iteration: 9, Func. Count: 72, Neg. LLF: 127.6256548400535
Iteration: 10, Func. Count: 79, Neg. LLF: 127.62432495795609
Iteration: 11, Func. Count: 86, Neg. LLF: 127.6241875475109
Iteration: 12, Func. Count: 93, Neg. LLF: 127.62416201692594
Iteration: 13, Func. Count: 100, Neg. LLF: 127.62414351295048
Iteration: 14, Func. Count: 107, Neg. LLF: 127.62414260033617
Optimization terminated successfully (Exit mode 0)
Current function value: 127.62414260033617
Iterations: 14
Function evaluations: 107
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 445.120779510166
Iteration: 2, Func. Count: 18, Neg. LLF: 134.0108981769364
Iteration: 3, Func. Count: 27, Neg. LLF: 136.5690154986295
Iteration: 4, Func. Count: 36, Neg. LLF: 131.69271598248994
Iteration: 5, Func. Count: 45, Neg. LLF: 135.16190243886396
Iteration: 6, Func. Count: 54, Neg. LLF: 127.74807532286864
Iteration: 7, Func. Count: 63, Neg. LLF: 128.2752168452486
Iteration: 8, Func. Count: 72, Neg. LLF: 127.42698012694106
Iteration: 9, Func. Count: 80, Neg. LLF: 127.42170948318577
Iteration: 10, Func. Count: 88, Neg. LLF: 127.42077089784742
Iteration: 11, Func. Count: 96, Neg. LLF: 127.42053523856904
Iteration: 12, Func. Count: 104, Neg. LLF: 127.42047843082935
Iteration: 13, Func. Count: 112, Neg. LLF: 127.42046781593616
Iteration: 14, Func. Count: 120, Neg. LLF: 127.42046704976796
Optimization terminated successfully (Exit mode 0)
Current function value: 127.42046704976796
Iterations: 14
Function evaluations: 120
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 135.4093434404396
Iteration: 2, Func. Count: 20, Neg. LLF: 134.76884407864335
Iteration: 3, Func. Count: 30, Neg. LLF: 137.37017954185166
Iteration: 4, Func. Count: 40, Neg. LLF: 871.5005226016335
Iteration: 5, Func. Count: 50, Neg. LLF: 143.38788011433064
Iteration: 6, Func. Count: 60, Neg. LLF: 148.3296016714623
Iteration: 7, Func. Count: 70, Neg. LLF: 161.719139038231
Iteration: 8, Func. Count: 80, Neg. LLF: 128.9135639433519
Iteration: 9, Func. Count: 90, Neg. LLF: 131.25835877629862
Iteration: 10, Func. Count: 100, Neg. LLF: 127.4715288950077
Iteration: 11, Func. Count: 109, Neg. LLF: 127.44564834274345
Iteration: 12, Func. Count: 118, Neg. LLF: 127.66194068832084
Iteration: 13, Func. Count: 128, Neg. LLF: 127.42565814356486
Iteration: 14, Func. Count: 137, Neg. LLF: 127.4218151168888
Iteration: 15, Func. Count: 146, Neg. LLF: 127.42031285509829
Iteration: 16, Func. Count: 155, Neg. LLF: 127.41810648959206
Iteration: 17, Func. Count: 164, Neg. LLF: 127.38790327546745
Iteration: 18, Func. Count: 173, Neg. LLF: 127.37859157120576
Iteration: 19, Func. Count: 182, Neg. LLF: 127.37434345321375
Iteration: 20, Func. Count: 191, Neg. LLF: 127.37205919905772
Iteration: 21, Func. Count: 200, Neg. LLF: 127.37100395597416
Iteration: 22, Func. Count: 209, Neg. LLF: 127.37083974377033
Iteration: 23, Func. Count: 218, Neg. LLF: 127.37079302880278
Iteration: 24, Func. Count: 227, Neg. LLF: 127.37078451801261
Iteration: 25, Func. Count: 235, Neg. LLF: 127.37078451796934
Optimization terminated successfully (Exit mode 0)
Current function value: 127.37078451801261
Iterations: 25
Function evaluations: 235
Gradient evaluations: 25
Iteration: 1, Func. Count: 11, Neg. LLF: 131.62867406784395
Iteration: 2, Func. Count: 22, Neg. LLF: 134.99968300778497
Iteration: 3, Func. Count: 33, Neg. LLF: 128.38047764645765
Iteration: 4, Func. Count: 43, Neg. LLF: 138.6256698170437
Iteration: 5, Func. Count: 54, Neg. LLF: 144.27567828445922
Iteration: 6, Func. Count: 66, Neg. LLF: 134.14455448736047
Iteration: 7, Func. Count: 77, Neg. LLF: 128.6361840294373
Iteration: 8, Func. Count: 88, Neg. LLF: 130.89425189164015
Iteration: 9, Func. Count: 99, Neg. LLF: 127.35509154709986
Iteration: 10, Func. Count: 109, Neg. LLF: 127.53878088992634
Iteration: 11, Func. Count: 120, Neg. LLF: 127.33495295211456
Iteration: 12, Func. Count: 130, Neg. LLF: 127.33307080947787
Iteration: 13, Func. Count: 140, Neg. LLF: 127.33280229173596
Iteration: 14, Func. Count: 150, Neg. LLF: 127.33275256843991
Iteration: 15, Func. Count: 160, Neg. LLF: 127.33269506520202
Iteration: 16, Func. Count: 170, Neg. LLF: 127.3326776484461
Iteration: 17, Func. Count: 180, Neg. LLF: 127.33266966170198
Iteration: 18, Func. Count: 190, Neg. LLF: 127.33266763974281
Iteration: 19, Func. Count: 199, Neg. LLF: 127.33266763975554
Optimization terminated successfully (Exit mode 0)
Current function value: 127.33266763974281
Iterations: 19
Function evaluations: 199
Gradient evaluations: 19
Iteration: 1, Func. Count: 12, Neg. LLF: 152.653407117759
Iteration: 2, Func. Count: 24, Neg. LLF: 132.52597370294276
Iteration: 3, Func. Count: 36, Neg. LLF: 154.60817148813797
Iteration: 4, Func. Count: 48, Neg. LLF: 139.35736051535838
Iteration: 5, Func. Count: 60, Neg. LLF: 154.27880726249563
Iteration: 6, Func. Count: 72, Neg. LLF: 131.92420593046666
Iteration: 7, Func. Count: 84, Neg. LLF: 129.45918530815953
Iteration: 8, Func. Count: 96, Neg. LLF: 127.38391745812093
Iteration: 9, Func. Count: 107, Neg. LLF: 127.34987926094568
Iteration: 10, Func. Count: 118, Neg. LLF: 127.34251610521821
Iteration: 11, Func. Count: 129, Neg. LLF: 127.33426443989751
Iteration: 12, Func. Count: 140, Neg. LLF: 127.33304639708007
Iteration: 13, Func. Count: 151, Neg. LLF: 127.33271552176389
Iteration: 14, Func. Count: 162, Neg. LLF: 127.33267558600943
Iteration: 15, Func. Count: 173, Neg. LLF: 127.33266754119724
Iteration: 16, Func. Count: 183, Neg. LLF: 127.33266758499259
Optimization terminated successfully (Exit mode 0)
Current function value: 127.33266754119724
Iterations: 16
Function evaluations: 183
Gradient evaluations: 16
Iteration: 1, Func. Count: 9, Neg. LLF: 141.7888433490233
Iteration: 2, Func. Count: 18, Neg. LLF: 133.14813937853074
Iteration: 3, Func. Count: 27, Neg. LLF: 138.5995136418557
Iteration: 4, Func. Count: 36, Neg. LLF: 128.1433264994045
Iteration: 5, Func. Count: 44, Neg. LLF: 142.9475194054787
Iteration: 6, Func. Count: 53, Neg. LLF: 128.03943726413956
Iteration: 7, Func. Count: 62, Neg. LLF: 176.5698014412687
Iteration: 8, Func. Count: 71, Neg. LLF: 127.40016868844845
Iteration: 9, Func. Count: 79, Neg. LLF: 127.34643339222994
Iteration: 10, Func. Count: 87, Neg. LLF: 127.32219403144701
Iteration: 11, Func. Count: 95, Neg. LLF: 127.31470632837697
Iteration: 12, Func. Count: 103, Neg. LLF: 127.30855308848683
Iteration: 13, Func. Count: 111, Neg. LLF: 127.30835048580727
Iteration: 14, Func. Count: 119, Neg. LLF: 127.3083328678037
Iteration: 15, Func. Count: 127, Neg. LLF: 127.30832805610461
Iteration: 16, Func. Count: 135, Neg. LLF: 127.30832744434288
Optimization terminated successfully (Exit mode 0)
Current function value: 127.30832744434288
Iterations: 16
Function evaluations: 135
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 340.53537937356174
Iteration: 2, Func. Count: 20, Neg. LLF: 416.8233932481636
Iteration: 3, Func. Count: 30, Neg. LLF: 3650.065553411799
Iteration: 4, Func. Count: 40, Neg. LLF: 129.33790915304772
Iteration: 5, Func. Count: 50, Neg. LLF: 135.75640891184625
Iteration: 6, Func. Count: 60, Neg. LLF: 127.9396731493634
Iteration: 7, Func. Count: 70, Neg. LLF: 127.29672826692106
Iteration: 8, Func. Count: 79, Neg. LLF: 127.25052285164524
Iteration: 9, Func. Count: 88, Neg. LLF: 127.24371093469075
Iteration: 10, Func. Count: 97, Neg. LLF: 127.2432431819521
Iteration: 11, Func. Count: 106, Neg. LLF: 127.24307517819642
Iteration: 12, Func. Count: 115, Neg. LLF: 127.24305618731368
Iteration: 13, Func. Count: 124, Neg. LLF: 127.24304957107191
Iteration: 14, Func. Count: 132, Neg. LLF: 127.24304957106115
Optimization terminated successfully (Exit mode 0)
Current function value: 127.24304957107191
Iterations: 14
Function evaluations: 132
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 4915450.426087389
Iteration: 2, Func. Count: 22, Neg. LLF: 500.7049174548576
Iteration: 3, Func. Count: 33, Neg. LLF: 479.6095022782525
Iteration: 4, Func. Count: 44, Neg. LLF: 142.6843359414336
Iteration: 5, Func. Count: 55, Neg. LLF: 128.0968362712079
Iteration: 6, Func. Count: 66, Neg. LLF: 127.1746293847874
Iteration: 7, Func. Count: 76, Neg. LLF: 127.29714162188908
Iteration: 8, Func. Count: 87, Neg. LLF: 127.09679100661779
Iteration: 9, Func. Count: 97, Neg. LLF: 127.11128095187489
Iteration: 10, Func. Count: 108, Neg. LLF: 127.08829245967108
Iteration: 11, Func. Count: 118, Neg. LLF: 127.08761011048296
Iteration: 12, Func. Count: 128, Neg. LLF: 127.08717486795322
Iteration: 13, Func. Count: 138, Neg. LLF: 127.08703585301866
Iteration: 14, Func. Count: 148, Neg. LLF: 127.08699537859525
Iteration: 15, Func. Count: 158, Neg. LLF: 127.08699338705547
Iteration: 16, Func. Count: 167, Neg. LLF: 127.08699338706508
Optimization terminated successfully (Exit mode 0)
Current function value: 127.08699338705547
Iterations: 16
Function evaluations: 167
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 8064369.854734602
Iteration: 2, Func. Count: 24, Neg. LLF: 136.98194585400702
Iteration: 3, Func. Count: 36, Neg. LLF: 130.09531130144435
Iteration: 4, Func. Count: 48, Neg. LLF: 138.20728977566077
Iteration: 5, Func. Count: 60, Neg. LLF: 130.715096686907
Iteration: 6, Func. Count: 72, Neg. LLF: 128.59941875338748
Iteration: 7, Func. Count: 84, Neg. LLF: 127.0579759222336
Iteration: 8, Func. Count: 95, Neg. LLF: 127.12153122281265
Iteration: 9, Func. Count: 107, Neg. LLF: 127.64419978365056
Iteration: 10, Func. Count: 119, Neg. LLF: 127.01108420075686
Iteration: 11, Func. Count: 130, Neg. LLF: 127.0070315255174
Iteration: 12, Func. Count: 141, Neg. LLF: 127.00631933799593
Iteration: 13, Func. Count: 152, Neg. LLF: 127.00623135157504
Iteration: 14, Func. Count: 163, Neg. LLF: 127.00622779520911
Iteration: 15, Func. Count: 173, Neg. LLF: 127.00622779525239
Optimization terminated successfully (Exit mode 0)
Current function value: 127.00622779520911
Iterations: 15
Function evaluations: 173
Gradient evaluations: 15
Iteration: 1, Func. Count: 13, Neg. LLF: 7844432.116342662
Iteration: 2, Func. Count: 26, Neg. LLF: 137.35214289860144
Iteration: 3, Func. Count: 39, Neg. LLF: 132.31709669867448
Iteration: 4, Func. Count: 52, Neg. LLF: 129.8157512275145
Iteration: 5, Func. Count: 65, Neg. LLF: 129.65038220467315
Iteration: 6, Func. Count: 78, Neg. LLF: 127.63230712835143
Iteration: 7, Func. Count: 91, Neg. LLF: 127.18754829318559
Iteration: 8, Func. Count: 103, Neg. LLF: 128.20512400215742
Iteration: 9, Func. Count: 116, Neg. LLF: 127.33588160663525
Iteration: 10, Func. Count: 129, Neg. LLF: 127.01015316297888
Iteration: 11, Func. Count: 141, Neg. LLF: 127.006416837274
Iteration: 12, Func. Count: 153, Neg. LLF: 127.00625838854633
Iteration: 13, Func. Count: 165, Neg. LLF: 127.00623015889494
Iteration: 14, Func. Count: 177, Neg. LLF: 127.00622769753126
Iteration: 15, Func. Count: 188, Neg. LLF: 127.00622774654995
Optimization terminated successfully (Exit mode 0)
Current function value: 127.00622769753126
Iterations: 15
Function evaluations: 188
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 142.69364255169157
Iteration: 2, Func. Count: 20, Neg. LLF: 131.9847038111895
Iteration: 3, Func. Count: 30, Neg. LLF: 133.85012789360007
Iteration: 4, Func. Count: 40, Neg. LLF: 129.00233016844282
Iteration: 5, Func. Count: 50, Neg. LLF: 128.2176408567858
Iteration: 6, Func. Count: 60, Neg. LLF: 137.10702367998692
Iteration: 7, Func. Count: 70, Neg. LLF: 127.3071662168017
Iteration: 8, Func. Count: 80, Neg. LLF: 126.85585945398897
Iteration: 9, Func. Count: 89, Neg. LLF: 126.82328469755255
Iteration: 10, Func. Count: 98, Neg. LLF: 126.80116390065861
Iteration: 11, Func. Count: 107, Neg. LLF: 126.8006895718929
Iteration: 12, Func. Count: 116, Neg. LLF: 126.80056640036975
Iteration: 13, Func. Count: 125, Neg. LLF: 126.8005482998437
Iteration: 14, Func. Count: 134, Neg. LLF: 126.80054706107087
Iteration: 15, Func. Count: 142, Neg. LLF: 126.80054698550646
Optimization terminated successfully (Exit mode 0)
Current function value: 126.80054706107087
Iterations: 15
Function evaluations: 142
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 342.22085843664536
Iteration: 2, Func. Count: 22, Neg. LLF: 411.582754935304
Iteration: 3, Func. Count: 33, Neg. LLF: 3115.3047466461444
Iteration: 4, Func. Count: 44, Neg. LLF: 132.31600250672204
Iteration: 5, Func. Count: 55, Neg. LLF: 130.16447080984275
Iteration: 6, Func. Count: 66, Neg. LLF: 128.62376471859343
Iteration: 7, Func. Count: 77, Neg. LLF: 126.8955970397632
Iteration: 8, Func. Count: 87, Neg. LLF: 126.87626706406407
Iteration: 9, Func. Count: 97, Neg. LLF: 126.86312277868177
Iteration: 10, Func. Count: 107, Neg. LLF: 126.85769348710572
Iteration: 11, Func. Count: 117, Neg. LLF: 126.84803670685066
Iteration: 12, Func. Count: 127, Neg. LLF: 126.81634364394532
Iteration: 13, Func. Count: 137, Neg. LLF: 126.80744652081478
Iteration: 14, Func. Count: 147, Neg. LLF: 126.80123061759704
Iteration: 15, Func. Count: 157, Neg. LLF: 126.80069153517957
Iteration: 16, Func. Count: 167, Neg. LLF: 126.8005570608555
Iteration: 17, Func. Count: 177, Neg. LLF: 126.80055018630468
Iteration: 18, Func. Count: 187, Neg. LLF: 126.80054861327453
Iteration: 19, Func. Count: 197, Neg. LLF: 126.80054757858167
Iteration: 20, Func. Count: 206, Neg. LLF: 126.80054759025191
Optimization terminated successfully (Exit mode 0)
Current function value: 126.80054757858167
Iterations: 20
Function evaluations: 206
Gradient evaluations: 20
Iteration: 1, Func. Count: 12, Neg. LLF: 4914982.646431158
Iteration: 2, Func. Count: 24, Neg. LLF: 530.2931279336638
Iteration: 3, Func. Count: 36, Neg. LLF: 491.2971687767103
Iteration: 4, Func. Count: 48, Neg. LLF: 142.1800000405361
Iteration: 5, Func. Count: 60, Neg. LLF: 127.74170660099135
Iteration: 6, Func. Count: 71, Neg. LLF: 128.959406890341
Iteration: 7, Func. Count: 83, Neg. LLF: 128.4681395017495
Iteration: 8, Func. Count: 95, Neg. LLF: 127.08941435825173
Iteration: 9, Func. Count: 107, Neg. LLF: 126.91264399293622
Iteration: 10, Func. Count: 119, Neg. LLF: 126.83235862859159
Iteration: 11, Func. Count: 130, Neg. LLF: 126.81936819246135
Iteration: 12, Func. Count: 141, Neg. LLF: 126.81295335599206
Iteration: 13, Func. Count: 152, Neg. LLF: 126.80880955497895
Iteration: 14, Func. Count: 163, Neg. LLF: 126.8063143252033
Iteration: 15, Func. Count: 174, Neg. LLF: 126.80401091239503
Iteration: 16, Func. Count: 185, Neg. LLF: 126.8017845445793
Iteration: 17, Func. Count: 196, Neg. LLF: 126.80087104954747
Iteration: 18, Func. Count: 207, Neg. LLF: 126.80064196844184
Iteration: 19, Func. Count: 218, Neg. LLF: 126.80059821660468
Iteration: 20, Func. Count: 229, Neg. LLF: 126.80056274935455
Iteration: 21, Func. Count: 240, Neg. LLF: 126.80054894494567
Iteration: 22, Func. Count: 251, Neg. LLF: 126.80054705143752
Iteration: 23, Func. Count: 261, Neg. LLF: 126.80054705407541
Optimization terminated successfully (Exit mode 0)
Current function value: 126.80054705143752
Iterations: 23
Function evaluations: 261
Gradient evaluations: 23
Iteration: 1, Func. Count: 13, Neg. LLF: 8058340.211030622
Iteration: 2, Func. Count: 26, Neg. LLF: 137.0373384218333
Iteration: 3, Func. Count: 39, Neg. LLF: 129.96618372217603
Iteration: 4, Func. Count: 52, Neg. LLF: 140.6100156887112
Iteration: 5, Func. Count: 65, Neg. LLF: 129.28837628509476
Iteration: 6, Func. Count: 78, Neg. LLF: 133.73300048258673
Iteration: 7, Func. Count: 91, Neg. LLF: 126.88983109032525
Iteration: 8, Func. Count: 103, Neg. LLF: 127.9383746123735
Iteration: 9, Func. Count: 116, Neg. LLF: 126.74246851313058
Iteration: 10, Func. Count: 128, Neg. LLF: 126.70868030082556
Iteration: 11, Func. Count: 140, Neg. LLF: 126.70569851991196
Iteration: 12, Func. Count: 152, Neg. LLF: 126.7046609138042
Iteration: 13, Func. Count: 164, Neg. LLF: 126.70448533018589
Iteration: 14, Func. Count: 176, Neg. LLF: 126.70446210811667
Iteration: 15, Func. Count: 188, Neg. LLF: 126.70445817053364
Iteration: 16, Func. Count: 199, Neg. LLF: 126.70445817069148
Optimization terminated successfully (Exit mode 0)
Current function value: 126.70445817053364
Iterations: 16
Function evaluations: 199
Gradient evaluations: 16
Iteration: 1, Func. Count: 14, Neg. LLF: 8060462.806848326
Iteration: 2, Func. Count: 28, Neg. LLF: 139.50960358000117
Iteration: 3, Func. Count: 42, Neg. LLF: 130.11525763041956
Iteration: 4, Func. Count: 56, Neg. LLF: 129.817556271428
Iteration: 5, Func. Count: 70, Neg. LLF: 130.9396034677898
Iteration: 6, Func. Count: 84, Neg. LLF: 127.22415379621943
Iteration: 7, Func. Count: 98, Neg. LLF: 126.74265966467193
Iteration: 8, Func. Count: 111, Neg. LLF: 126.72028879663263
Iteration: 9, Func. Count: 124, Neg. LLF: 126.76356681293068
Iteration: 10, Func. Count: 138, Neg. LLF: 126.70482692121048
Iteration: 11, Func. Count: 151, Neg. LLF: 126.70447669406937
Iteration: 12, Func. Count: 164, Neg. LLF: 126.70445991381867
Iteration: 13, Func. Count: 177, Neg. LLF: 126.70445774742244
Iteration: 14, Func. Count: 189, Neg. LLF: 126.70445780298304
Optimization terminated successfully (Exit mode 0)
Current function value: 126.70445774742244
Iterations: 14
Function evaluations: 189
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 132.81180319673442
Iteration: 2, Func. Count: 22, Neg. LLF: 148.98296572719255
Iteration: 3, Func. Count: 33, Neg. LLF: 129.9175427578687
Iteration: 4, Func. Count: 45, Neg. LLF: 127.61844396329185
Iteration: 5, Func. Count: 55, Neg. LLF: 151.38540168830488
Iteration: 6, Func. Count: 66, Neg. LLF: 139.94077719045376
Iteration: 7, Func. Count: 77, Neg. LLF: 146.51719687508896
Iteration: 8, Func. Count: 88, Neg. LLF: 128.23694617763076
Iteration: 9, Func. Count: 99, Neg. LLF: 126.96799918081068
Iteration: 10, Func. Count: 110, Neg. LLF: 126.79844866769722
Iteration: 11, Func. Count: 120, Neg. LLF: 126.78823222231478
Iteration: 12, Func. Count: 130, Neg. LLF: 126.78412100095544
Iteration: 13, Func. Count: 140, Neg. LLF: 126.78270330477439
Iteration: 14, Func. Count: 150, Neg. LLF: 126.78238516427714
Iteration: 15, Func. Count: 160, Neg. LLF: 126.7823232577693
Iteration: 16, Func. Count: 170, Neg. LLF: 126.78230677827347
Iteration: 17, Func. Count: 180, Neg. LLF: 126.78230444343542
Iteration: 18, Func. Count: 189, Neg. LLF: 126.78230444344999
Optimization terminated successfully (Exit mode 0)
Current function value: 126.78230444343542
Iterations: 18
Function evaluations: 189
Gradient evaluations: 18
Iteration: 1, Func. Count: 12, Neg. LLF: 345.32444343618664
Iteration: 2, Func. Count: 24, Neg. LLF: 407.84590360123076
Iteration: 3, Func. Count: 36, Neg. LLF: 3089.9828951366685
Iteration: 4, Func. Count: 48, Neg. LLF: 132.35363313830734
Iteration: 5, Func. Count: 60, Neg. LLF: 130.16732234777706
Iteration: 6, Func. Count: 72, Neg. LLF: 128.5824176953835
Iteration: 7, Func. Count: 84, Neg. LLF: 126.89643025818224
Iteration: 8, Func. Count: 95, Neg. LLF: 126.87624963804636
Iteration: 9, Func. Count: 106, Neg. LLF: 126.86343559833668
Iteration: 10, Func. Count: 117, Neg. LLF: 126.85786790577214
Iteration: 11, Func. Count: 128, Neg. LLF: 126.84855267710067
Iteration: 12, Func. Count: 139, Neg. LLF: 126.81632396611198
Iteration: 13, Func. Count: 150, Neg. LLF: 126.8071896893568
Iteration: 14, Func. Count: 161, Neg. LLF: 126.79466209052845
Iteration: 15, Func. Count: 172, Neg. LLF: 126.78671182672086
Iteration: 16, Func. Count: 183, Neg. LLF: 126.78280277078956
Iteration: 17, Func. Count: 194, Neg. LLF: 126.7824769916487
Iteration: 18, Func. Count: 205, Neg. LLF: 126.78237175522611
Iteration: 19, Func. Count: 216, Neg. LLF: 126.78235041859858
Iteration: 20, Func. Count: 227, Neg. LLF: 126.78230873219704
Iteration: 21, Func. Count: 238, Neg. LLF: 126.78230471411916
Iteration: 22, Func. Count: 248, Neg. LLF: 126.78230472897106
Optimization terminated successfully (Exit mode 0)
Current function value: 126.78230471411916
Iterations: 22
Function evaluations: 248
Gradient evaluations: 22
Iteration: 1, Func. Count: 13, Neg. LLF: 4915388.013440872
Iteration: 2, Func. Count: 26, Neg. LLF: 527.1382886357468
Iteration: 3, Func. Count: 39, Neg. LLF: 540.3449284996525
Iteration: 4, Func. Count: 52, Neg. LLF: 141.92735922542408
Iteration: 5, Func. Count: 65, Neg. LLF: 127.76668760702229
Iteration: 6, Func. Count: 77, Neg. LLF: 128.9724659822526
Iteration: 7, Func. Count: 90, Neg. LLF: 128.68779248175917
Iteration: 8, Func. Count: 103, Neg. LLF: 127.6033404251123
Iteration: 9, Func. Count: 116, Neg. LLF: 126.91139429790535
Iteration: 10, Func. Count: 128, Neg. LLF: 126.87737906495754
Iteration: 11, Func. Count: 140, Neg. LLF: 127.12892135759483
Iteration: 12, Func. Count: 153, Neg. LLF: 126.81974271838722
Iteration: 13, Func. Count: 165, Neg. LLF: 126.82005430545432
Iteration: 14, Func. Count: 178, Neg. LLF: 126.80507229552826
Iteration: 15, Func. Count: 190, Neg. LLF: 126.79146356172836
Iteration: 16, Func. Count: 202, Neg. LLF: 126.78623730241864
Iteration: 17, Func. Count: 214, Neg. LLF: 126.78316684063506
Iteration: 18, Func. Count: 226, Neg. LLF: 126.78243456991986
Iteration: 19, Func. Count: 238, Neg. LLF: 126.78238568361527
Iteration: 20, Func. Count: 250, Neg. LLF: 126.78232044815377
Iteration: 21, Func. Count: 262, Neg. LLF: 126.78230791963628
Iteration: 22, Func. Count: 274, Neg. LLF: 126.78230443568646
Iteration: 23, Func. Count: 285, Neg. LLF: 126.78230444254571
Optimization terminated successfully (Exit mode 0)
Current function value: 126.78230443568646
Iterations: 23
Function evaluations: 285
Gradient evaluations: 23
Iteration: 1, Func. Count: 14, Neg. LLF: 8059064.393115093
Iteration: 2, Func. Count: 28, Neg. LLF: 137.0553700059526
Iteration: 3, Func. Count: 42, Neg. LLF: 130.00916527987147
Iteration: 4, Func. Count: 56, Neg. LLF: 140.54975464210295
Iteration: 5, Func. Count: 70, Neg. LLF: 129.3910053512667
Iteration: 6, Func. Count: 84, Neg. LLF: 132.31780188836964
Iteration: 7, Func. Count: 98, Neg. LLF: 126.89107505675491
Iteration: 8, Func. Count: 111, Neg. LLF: 128.0464255146509
Iteration: 9, Func. Count: 125, Neg. LLF: 126.74088343171101
Iteration: 10, Func. Count: 138, Neg. LLF: 126.70892212659949
Iteration: 11, Func. Count: 151, Neg. LLF: 126.70582118226761
Iteration: 12, Func. Count: 164, Neg. LLF: 126.70465887181487
Iteration: 13, Func. Count: 177, Neg. LLF: 126.704491265031
Iteration: 14, Func. Count: 190, Neg. LLF: 126.70446173173252
Iteration: 15, Func. Count: 203, Neg. LLF: 126.70445825866655
Iteration: 16, Func. Count: 216, Neg. LLF: 126.70445764191794
Optimization terminated successfully (Exit mode 0)
Current function value: 126.70445764191794
Iterations: 16
Function evaluations: 216
Gradient evaluations: 16
Iteration: 1, Func. Count: 15, Neg. LLF: 8061036.898488938
Iteration: 2, Func. Count: 30, Neg. LLF: 139.49775454769815
Iteration: 3, Func. Count: 45, Neg. LLF: 130.16180017651638
Iteration: 4, Func. Count: 60, Neg. LLF: 129.19938227958147
Iteration: 5, Func. Count: 75, Neg. LLF: 130.55510887269625
Iteration: 6, Func. Count: 90, Neg. LLF: 127.13645600467456
Iteration: 7, Func. Count: 105, Neg. LLF: 126.75529899019052
Iteration: 8, Func. Count: 119, Neg. LLF: 126.71592070106766
Iteration: 9, Func. Count: 133, Neg. LLF: 126.77628918017
Iteration: 10, Func. Count: 148, Neg. LLF: 126.70468161320505
Iteration: 11, Func. Count: 162, Neg. LLF: 126.70447755883772
Iteration: 12, Func. Count: 176, Neg. LLF: 126.70445978278316
Iteration: 13, Func. Count: 190, Neg. LLF: 126.70445768366808
Iteration: 14, Func. Count: 203, Neg. LLF: 126.70445773920473
Optimization terminated successfully (Exit mode 0)
Current function value: 126.70445768366808
Iterations: 14
Function evaluations: 203
Gradient evaluations: 14
Iteration: 1, Func. Count: 8, Neg. LLF: 130.54017736642652
Iteration: 2, Func. Count: 16, Neg. LLF: 144.2747747721133
Iteration: 3, Func. Count: 25, Neg. LLF: 131.08545746685238
Iteration: 4, Func. Count: 33, Neg. LLF: 127.97150005937007
Iteration: 5, Func. Count: 40, Neg. LLF: 137.78228511107352
Iteration: 6, Func. Count: 48, Neg. LLF: 131.6061756991375
Iteration: 7, Func. Count: 57, Neg. LLF: 128.21044609183872
Iteration: 8, Func. Count: 65, Neg. LLF: 127.86869174805841
Iteration: 9, Func. Count: 73, Neg. LLF: 127.36504773900255
Iteration: 10, Func. Count: 80, Neg. LLF: 127.36074942233483
Iteration: 11, Func. Count: 87, Neg. LLF: 127.35973340110633
Iteration: 12, Func. Count: 94, Neg. LLF: 127.35895446642388
Iteration: 13, Func. Count: 101, Neg. LLF: 127.35893572665108
Iteration: 14, Func. Count: 108, Neg. LLF: 127.3589319777141
Iteration: 15, Func. Count: 114, Neg. LLF: 127.35893197777158
Optimization terminated successfully (Exit mode 0)
Current function value: 127.3589319777141
Iterations: 15
Function evaluations: 114
Gradient evaluations: 15
Iteration: 1, Func. Count: 9, Neg. LLF: 130.55108178605886
Iteration: 2, Func. Count: 18, Neg. LLF: 136.23025982012481
Iteration: 3, Func. Count: 27, Neg. LLF: 329.1093094096513
Iteration: 4, Func. Count: 37, Neg. LLF: 130.57946757912683
Iteration: 5, Func. Count: 46, Neg. LLF: 130.0756652193072
Iteration: 6, Func. Count: 55, Neg. LLF: 127.40891826195997
Iteration: 7, Func. Count: 63, Neg. LLF: 127.54603275318043
Iteration: 8, Func. Count: 72, Neg. LLF: 127.36416900598967
Iteration: 9, Func. Count: 80, Neg. LLF: 127.35978094775068
Iteration: 10, Func. Count: 88, Neg. LLF: 127.3589579449631
Iteration: 11, Func. Count: 96, Neg. LLF: 127.35893427986855
Iteration: 12, Func. Count: 104, Neg. LLF: 127.35893169919046
Iteration: 13, Func. Count: 111, Neg. LLF: 127.35893170401162
Optimization terminated successfully (Exit mode 0)
Current function value: 127.35893169919046
Iterations: 13
Function evaluations: 111
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 130.55396163707908
Iteration: 2, Func. Count: 19, Neg. LLF: 129.93610698192657
Iteration: 3, Func. Count: 30, Neg. LLF: 149.59915218644088
Iteration: 4, Func. Count: 41, Neg. LLF: 156.157002826994
Iteration: 5, Func. Count: 51, Neg. LLF: 141.45023968825998
Iteration: 6, Func. Count: 61, Neg. LLF: 128.05352147213395
Iteration: 7, Func. Count: 71, Neg. LLF: 127.7370365642851
Iteration: 8, Func. Count: 81, Neg. LLF: 127.46958595991093
Iteration: 9, Func. Count: 91, Neg. LLF: 127.39618851743172
Iteration: 10, Func. Count: 101, Neg. LLF: 127.36216677991148
Iteration: 11, Func. Count: 110, Neg. LLF: 127.35901887783787
Iteration: 12, Func. Count: 119, Neg. LLF: 127.35895905732329
Iteration: 13, Func. Count: 128, Neg. LLF: 127.35893207577513
Iteration: 14, Func. Count: 136, Neg. LLF: 127.35893208780436
Optimization terminated successfully (Exit mode 0)
Current function value: 127.35893207577513
Iterations: 14
Function evaluations: 136
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 130.67887419522168
Iteration: 2, Func. Count: 21, Neg. LLF: 130.23810009448476
Iteration: 3, Func. Count: 33, Neg. LLF: 151.69959952347347
Iteration: 4, Func. Count: 45, Neg. LLF: 161.2806630146483
Iteration: 5, Func. Count: 56, Neg. LLF: 141.17433317614194
Iteration: 6, Func. Count: 67, Neg. LLF: 127.91507544272099
Iteration: 7, Func. Count: 78, Neg. LLF: 127.64320022428971
Iteration: 8, Func. Count: 89, Neg. LLF: 127.48045818644832
Iteration: 9, Func. Count: 100, Neg. LLF: 127.3702485532786
Iteration: 10, Func. Count: 110, Neg. LLF: 127.36258279602897
Iteration: 11, Func. Count: 120, Neg. LLF: 127.35971578209885
Iteration: 12, Func. Count: 130, Neg. LLF: 127.35909106352518
Iteration: 13, Func. Count: 140, Neg. LLF: 127.35897662220181
Iteration: 14, Func. Count: 150, Neg. LLF: 127.3589321956275
Iteration: 15, Func. Count: 160, Neg. LLF: 127.35893144565974
Optimization terminated successfully (Exit mode 0)
Current function value: 127.35893144565974
Iterations: 15
Function evaluations: 160
Gradient evaluations: 15
Iteration: 1, Func. Count: 12, Neg. LLF: 130.84593588368028
Iteration: 2, Func. Count: 23, Neg. LLF: 130.77942560167443
Iteration: 3, Func. Count: 36, Neg. LLF: 175.26947055311973
Iteration: 4, Func. Count: 49, Neg. LLF: 172.7969284526572
Iteration: 5, Func. Count: 61, Neg. LLF: 141.20294339297593
Iteration: 6, Func. Count: 73, Neg. LLF: 128.14044273973158
Iteration: 7, Func. Count: 85, Neg. LLF: 127.6374571323446
Iteration: 8, Func. Count: 97, Neg. LLF: 127.56920437157838
Iteration: 9, Func. Count: 109, Neg. LLF: 127.37214657533977
Iteration: 10, Func. Count: 120, Neg. LLF: 127.36984941205223
Iteration: 11, Func. Count: 132, Neg. LLF: 127.36001301024696
Iteration: 12, Func. Count: 143, Neg. LLF: 127.35917157923468
Iteration: 13, Func. Count: 154, Neg. LLF: 127.35897449990655
Iteration: 14, Func. Count: 165, Neg. LLF: 127.35895159065703
Iteration: 15, Func. Count: 176, Neg. LLF: 127.3589337462319
Iteration: 16, Func. Count: 187, Neg. LLF: 127.35893161889454
Iteration: 17, Func. Count: 197, Neg. LLF: 127.35893166591782
Optimization terminated successfully (Exit mode 0)
Current function value: 127.35893161889454
Iterations: 17
Function evaluations: 197
Gradient evaluations: 17
Iteration: 1, Func. Count: 9, Neg. LLF: 133.75068703561413
Iteration: 2, Func. Count: 18, Neg. LLF: 144.36804706266037
Iteration: 3, Func. Count: 27, Neg. LLF: 138.83192070414495
Iteration: 4, Func. Count: 36, Neg. LLF: 140.35898013354065
Iteration: 5, Func. Count: 45, Neg. LLF: 736.9702079806916
Iteration: 6, Func. Count: 54, Neg. LLF: 175.1683788339165
Iteration: 7, Func. Count: 63, Neg. LLF: 135.94981514717665
Iteration: 8, Func. Count: 72, Neg. LLF: 132.63172591238336
Iteration: 9, Func. Count: 81, Neg. LLF: 129.09385423020143
Iteration: 10, Func. Count: 90, Neg. LLF: 127.20946425477905
Iteration: 11, Func. Count: 99, Neg. LLF: 127.38923046526492
Iteration: 12, Func. Count: 108, Neg. LLF: 127.18348299655747
Iteration: 13, Func. Count: 116, Neg. LLF: 127.180940952424
Iteration: 14, Func. Count: 124, Neg. LLF: 127.18060343720573
Iteration: 15, Func. Count: 132, Neg. LLF: 127.18059218483815
Iteration: 16, Func. Count: 139, Neg. LLF: 127.18059218486387
Optimization terminated successfully (Exit mode 0)
Current function value: 127.18059218483815
Iterations: 16
Function evaluations: 139
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 133.23718612270181
Iteration: 2, Func. Count: 20, Neg. LLF: 147.71696491146594
Iteration: 3, Func. Count: 30, Neg. LLF: 139.85802019383175
Iteration: 4, Func. Count: 40, Neg. LLF: 207095.56787973357
Iteration: 5, Func. Count: 50, Neg. LLF: 937.2278834930133
Iteration: 6, Func. Count: 60, Neg. LLF: 631.5406919750268
Iteration: 7, Func. Count: 70, Neg. LLF: 135.58499441911982
Iteration: 8, Func. Count: 80, Neg. LLF: 130.22680415117873
Iteration: 9, Func. Count: 90, Neg. LLF: 341.1396552176512
Iteration: 10, Func. Count: 101, Neg. LLF: 127.20342004889919
Iteration: 11, Func. Count: 111, Neg. LLF: 127.15564397373045
Iteration: 12, Func. Count: 120, Neg. LLF: 127.15041527844531
Iteration: 13, Func. Count: 129, Neg. LLF: 127.14978642748945
Iteration: 14, Func. Count: 138, Neg. LLF: 127.14959634959119
Iteration: 15, Func. Count: 147, Neg. LLF: 127.14959309802609
Iteration: 16, Func. Count: 156, Neg. LLF: 127.14959073259958
Iteration: 17, Func. Count: 164, Neg. LLF: 127.14959073255518
Optimization terminated successfully (Exit mode 0)
Current function value: 127.14959073259958
Iterations: 17
Function evaluations: 164
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 133.10179904737143
Iteration: 2, Func. Count: 22, Neg. LLF: 147.57045889324255
Iteration: 3, Func. Count: 33, Neg. LLF: 139.9091033693233
Iteration: 4, Func. Count: 44, Neg. LLF: 17257.67000044793
Iteration: 5, Func. Count: 55, Neg. LLF: 267.8744350827771
Iteration: 6, Func. Count: 66, Neg. LLF: 639.1426938938584
Iteration: 7, Func. Count: 77, Neg. LLF: 132.9678501666432
Iteration: 8, Func. Count: 88, Neg. LLF: 132.56760519971772
Iteration: 9, Func. Count: 99, Neg. LLF: 140.42049528569686
Iteration: 10, Func. Count: 111, Neg. LLF: 128.50553672629692
Iteration: 11, Func. Count: 122, Neg. LLF: 127.15798506735142
Iteration: 12, Func. Count: 132, Neg. LLF: 127.1511876090096
Iteration: 13, Func. Count: 142, Neg. LLF: 127.15001362624253
Iteration: 14, Func. Count: 152, Neg. LLF: 127.14962282467545
Iteration: 15, Func. Count: 162, Neg. LLF: 127.1495981341567
Iteration: 16, Func. Count: 172, Neg. LLF: 127.14959341844315
Iteration: 17, Func. Count: 182, Neg. LLF: 127.14959121548583
Iteration: 18, Func. Count: 192, Neg. LLF: 127.14959025860682
Optimization terminated successfully (Exit mode 0)
Current function value: 127.14959025860682
Iterations: 18
Function evaluations: 192
Gradient evaluations: 18
Iteration: 1, Func. Count: 12, Neg. LLF: 132.8709670877644
Iteration: 2, Func. Count: 24, Neg. LLF: 146.58521596557932
Iteration: 3, Func. Count: 36, Neg. LLF: 139.92189201919635
Iteration: 4, Func. Count: 48, Neg. LLF: 146456.1945812039
Iteration: 5, Func. Count: 60, Neg. LLF: 919.5929092717026
Iteration: 6, Func. Count: 72, Neg. LLF: 670.7348416797053
Iteration: 7, Func. Count: 84, Neg. LLF: 133.627584730978
Iteration: 8, Func. Count: 96, Neg. LLF: 131.38963382323377
Iteration: 9, Func. Count: 108, Neg. LLF: 127.24770588088661
Iteration: 10, Func. Count: 120, Neg. LLF: 142.61300374439602
Iteration: 11, Func. Count: 133, Neg. LLF: 127.16031782363413
Iteration: 12, Func. Count: 144, Neg. LLF: 127.15088912309034
Iteration: 13, Func. Count: 155, Neg. LLF: 127.14983329447735
Iteration: 14, Func. Count: 166, Neg. LLF: 127.14960584393187
Iteration: 15, Func. Count: 177, Neg. LLF: 127.14959496824684
Iteration: 16, Func. Count: 188, Neg. LLF: 127.14959208553611
Iteration: 17, Func. Count: 199, Neg. LLF: 127.1495905401534
Iteration: 18, Func. Count: 209, Neg. LLF: 127.14959056830928
Optimization terminated successfully (Exit mode 0)
Current function value: 127.1495905401534
Iterations: 18
Function evaluations: 209
Gradient evaluations: 18
Iteration: 1, Func. Count: 13, Neg. LLF: 132.5177601759029
Iteration: 2, Func. Count: 26, Neg. LLF: 145.2232727977359
Iteration: 3, Func. Count: 39, Neg. LLF: 140.17322997104307
Iteration: 4, Func. Count: 52, Neg. LLF: 30660.76380516266
Iteration: 5, Func. Count: 65, Neg. LLF: 1152.1535462293177
Iteration: 6, Func. Count: 78, Neg. LLF: 786.0361706144582
Iteration: 7, Func. Count: 91, Neg. LLF: 137.61580959545162
Iteration: 8, Func. Count: 104, Neg. LLF: 131.36201630631183
Iteration: 9, Func. Count: 117, Neg. LLF: 127.48760581580571
Iteration: 10, Func. Count: 130, Neg. LLF: 143.46425926549662
Iteration: 11, Func. Count: 143, Neg. LLF: 127.1543791811571
Iteration: 12, Func. Count: 155, Neg. LLF: 127.15060455396046
Iteration: 13, Func. Count: 167, Neg. LLF: 127.14962034947783
Iteration: 14, Func. Count: 179, Neg. LLF: 127.14959534296601
Iteration: 15, Func. Count: 191, Neg. LLF: 127.14959295667167
Iteration: 16, Func. Count: 203, Neg. LLF: 127.1495902867482
Iteration: 17, Func. Count: 214, Neg. LLF: 127.14959032858346
Optimization terminated successfully (Exit mode 0)
Current function value: 127.1495902867482
Iterations: 17
Function evaluations: 214
Gradient evaluations: 17
Iteration: 1, Func. Count: 10, Neg. LLF: 139.3303862801077
Iteration: 2, Func. Count: 20, Neg. LLF: 131.64460666980116
Iteration: 3, Func. Count: 31, Neg. LLF: 138.85531088236354
Iteration: 4, Func. Count: 41, Neg. LLF: 131.23291380989448
Iteration: 5, Func. Count: 51, Neg. LLF: 127.8244481894885
Iteration: 6, Func. Count: 60, Neg. LLF: 181.39205385806872
Iteration: 7, Func. Count: 70, Neg. LLF: 129.45612310497614
Iteration: 8, Func. Count: 80, Neg. LLF: 127.10748041881631
Iteration: 9, Func. Count: 89, Neg. LLF: 152.87423994098262
Iteration: 10, Func. Count: 99, Neg. LLF: 126.93597188407828
Iteration: 11, Func. Count: 108, Neg. LLF: 126.88805141613749
Iteration: 12, Func. Count: 117, Neg. LLF: 126.87394731110912
Iteration: 13, Func. Count: 126, Neg. LLF: 126.8540540172946
Iteration: 14, Func. Count: 135, Neg. LLF: 126.84729784532479
Iteration: 15, Func. Count: 144, Neg. LLF: 126.84638453241938
Iteration: 16, Func. Count: 153, Neg. LLF: 126.84632266964266
Iteration: 17, Func. Count: 162, Neg. LLF: 126.84631808443771
Iteration: 18, Func. Count: 170, Neg. LLF: 126.8463180319456
Optimization terminated successfully (Exit mode 0)
Current function value: 126.84631808443771
Iterations: 18
Function evaluations: 170
Gradient evaluations: 18
Iteration: 1, Func. Count: 11, Neg. LLF: 149.263857394623
Iteration: 2, Func. Count: 22, Neg. LLF: 135.77712873569897
Iteration: 3, Func. Count: 33, Neg. LLF: 227.96659879123246
Iteration: 4, Func. Count: 44, Neg. LLF: 915.1612216584002
Iteration: 5, Func. Count: 55, Neg. LLF: 134.5943666537297
Iteration: 6, Func. Count: 66, Neg. LLF: 127.00568128567468
Iteration: 7, Func. Count: 76, Neg. LLF: 126.98393382099734
Iteration: 8, Func. Count: 87, Neg. LLF: 127.02895241910656
Iteration: 9, Func. Count: 98, Neg. LLF: 126.93079558596334
Iteration: 10, Func. Count: 109, Neg. LLF: 126.8483835994728
Iteration: 11, Func. Count: 119, Neg. LLF: 126.84671848448927
Iteration: 12, Func. Count: 129, Neg. LLF: 126.84635104171808
Iteration: 13, Func. Count: 139, Neg. LLF: 126.84632570437863
Iteration: 14, Func. Count: 149, Neg. LLF: 126.84632050901948
Iteration: 15, Func. Count: 159, Neg. LLF: 126.84631784511669
Iteration: 16, Func. Count: 168, Neg. LLF: 126.84631785603273
Optimization terminated successfully (Exit mode 0)
Current function value: 126.84631784511669
Iterations: 16
Function evaluations: 168
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 149.55055347681775
Iteration: 2, Func. Count: 24, Neg. LLF: 176.41700162213317
Iteration: 3, Func. Count: 36, Neg. LLF: 170.37109596064445
Iteration: 4, Func. Count: 48, Neg. LLF: 147.3027445355506
Iteration: 5, Func. Count: 60, Neg. LLF: 218.49645357252916
Iteration: 6, Func. Count: 72, Neg. LLF: 128.24613515376635
Iteration: 7, Func. Count: 84, Neg. LLF: 127.30057996705573
Iteration: 8, Func. Count: 96, Neg. LLF: 126.89963332480366
Iteration: 9, Func. Count: 107, Neg. LLF: 126.91750944576476
Iteration: 10, Func. Count: 119, Neg. LLF: 127.0012101861384
Iteration: 11, Func. Count: 131, Neg. LLF: 126.85191575957883
Iteration: 12, Func. Count: 142, Neg. LLF: 126.84705804172738
Iteration: 13, Func. Count: 153, Neg. LLF: 126.84675536805103
Iteration: 14, Func. Count: 164, Neg. LLF: 126.84664391987633
Iteration: 15, Func. Count: 175, Neg. LLF: 126.84661013082868
Iteration: 16, Func. Count: 186, Neg. LLF: 126.84660241038054
Iteration: 17, Func. Count: 197, Neg. LLF: 126.84660171075716
Optimization terminated successfully (Exit mode 0)
Current function value: 126.84660171075716
Iterations: 17
Function evaluations: 197
Gradient evaluations: 17
Iteration: 1, Func. Count: 13, Neg. LLF: 150.2024413766751
Iteration: 2, Func. Count: 26, Neg. LLF: 177.59828726515974
Iteration: 3, Func. Count: 39, Neg. LLF: 170.83827402057426
Iteration: 4, Func. Count: 52, Neg. LLF: 457.604663639582
Iteration: 5, Func. Count: 65, Neg. LLF: 131.26075502961632
Iteration: 6, Func. Count: 78, Neg. LLF: 131.66896224997203
Iteration: 7, Func. Count: 91, Neg. LLF: 127.34042119783938
Iteration: 8, Func. Count: 104, Neg. LLF: 127.02503261606915
Iteration: 9, Func. Count: 117, Neg. LLF: 127.42771646109402
Iteration: 10, Func. Count: 130, Neg. LLF: 126.8546811503784
Iteration: 11, Func. Count: 142, Neg. LLF: 126.84823894231603
Iteration: 12, Func. Count: 154, Neg. LLF: 126.84704809404629
Iteration: 13, Func. Count: 166, Neg. LLF: 126.84661918412982
Iteration: 14, Func. Count: 178, Neg. LLF: 126.84660292804998
Iteration: 15, Func. Count: 190, Neg. LLF: 126.84660194445206
Optimization terminated successfully (Exit mode 0)
Current function value: 126.84660194445206
Iterations: 15
Function evaluations: 190
Gradient evaluations: 15
Iteration: 1, Func. Count: 14, Neg. LLF: 151.00163986182557
Iteration: 2, Func. Count: 28, Neg. LLF: 177.86897866323935
Iteration: 3, Func. Count: 42, Neg. LLF: 213407.98329284307
Iteration: 4, Func. Count: 56, Neg. LLF: 1032.4023882444935
Iteration: 5, Func. Count: 70, Neg. LLF: 140.80989922398993
Iteration: 6, Func. Count: 84, Neg. LLF: 139.31052788781076
Iteration: 7, Func. Count: 98, Neg. LLF: 127.93764465084486
Iteration: 8, Func. Count: 112, Neg. LLF: 127.06410212430544
Iteration: 9, Func. Count: 125, Neg. LLF: 128.63484634625098
Iteration: 10, Func. Count: 139, Neg. LLF: 127.86288202835887
Iteration: 11, Func. Count: 153, Neg. LLF: 126.86320958720191
Iteration: 12, Func. Count: 166, Neg. LLF: 126.84759376262416
Iteration: 13, Func. Count: 179, Neg. LLF: 126.84677519135813
Iteration: 14, Func. Count: 192, Neg. LLF: 126.84663379535469
Iteration: 15, Func. Count: 205, Neg. LLF: 126.84660308570035
Iteration: 16, Func. Count: 218, Neg. LLF: 126.846601868273
Iteration: 17, Func. Count: 230, Neg. LLF: 126.84660190884772
Optimization terminated successfully (Exit mode 0)
Current function value: 126.846601868273
Iterations: 17
Function evaluations: 230
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 137.90799550202664
Iteration: 2, Func. Count: 22, Neg. LLF: 131.78919509692943
Iteration: 3, Func. Count: 34, Neg. LLF: 141.31932706755302
Iteration: 4, Func. Count: 45, Neg. LLF: 130.75047376553658
Iteration: 5, Func. Count: 56, Neg. LLF: 130.32898475821872
Iteration: 6, Func. Count: 67, Neg. LLF: 139.58474454988456
Iteration: 7, Func. Count: 78, Neg. LLF: 135.11695208492188
Iteration: 8, Func. Count: 89, Neg. LLF: 128.54981987689004
Iteration: 9, Func. Count: 100, Neg. LLF: 129.5814581629535
Iteration: 10, Func. Count: 111, Neg. LLF: 126.63241236336725
Iteration: 11, Func. Count: 121, Neg. LLF: 126.58129273831113
Iteration: 12, Func. Count: 131, Neg. LLF: 126.57887589609494
Iteration: 13, Func. Count: 142, Neg. LLF: 126.56884448721421
Iteration: 14, Func. Count: 152, Neg. LLF: 126.56863144911233
Iteration: 15, Func. Count: 162, Neg. LLF: 126.56862531899492
Iteration: 16, Func. Count: 171, Neg. LLF: 126.56862525249386
Optimization terminated successfully (Exit mode 0)
Current function value: 126.56862531899492
Iterations: 16
Function evaluations: 171
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 149.28008669237744
Iteration: 2, Func. Count: 24, Neg. LLF: 133.83240350171542
Iteration: 3, Func. Count: 36, Neg. LLF: 171.31542320944362
Iteration: 4, Func. Count: 48, Neg. LLF: 67012.49750731162
Iteration: 5, Func. Count: 60, Neg. LLF: 129.03507014014642
Iteration: 6, Func. Count: 72, Neg. LLF: 128.21671842435865
Iteration: 7, Func. Count: 84, Neg. LLF: 127.22187660200363
Iteration: 8, Func. Count: 96, Neg. LLF: 126.6320300118255
Iteration: 9, Func. Count: 107, Neg. LLF: 126.57795547097041
Iteration: 10, Func. Count: 118, Neg. LLF: 126.5696868778577
Iteration: 11, Func. Count: 129, Neg. LLF: 126.56868759084269
Iteration: 12, Func. Count: 140, Neg. LLF: 126.56862613274464
Iteration: 13, Func. Count: 151, Neg. LLF: 126.56862512164369
Iteration: 14, Func. Count: 161, Neg. LLF: 126.56862513776525
Optimization terminated successfully (Exit mode 0)
Current function value: 126.56862512164369
Iterations: 14
Function evaluations: 161
Gradient evaluations: 14
Iteration: 1, Func. Count: 13, Neg. LLF: 149.55510146745743
Iteration: 2, Func. Count: 26, Neg. LLF: 176.42574709394722
Iteration: 3, Func. Count: 39, Neg. LLF: 171.00296782729578
Iteration: 4, Func. Count: 52, Neg. LLF: 138.32444048252185
Iteration: 5, Func. Count: 65, Neg. LLF: 364.7329548304809
Iteration: 6, Func. Count: 78, Neg. LLF: 126.90846924378066
Iteration: 7, Func. Count: 90, Neg. LLF: 127.96398621374806
Iteration: 8, Func. Count: 103, Neg. LLF: 127.68093803495836
Iteration: 9, Func. Count: 116, Neg. LLF: 126.63178313260052
Iteration: 10, Func. Count: 129, Neg. LLF: 126.57624178615785
Iteration: 11, Func. Count: 141, Neg. LLF: 126.57115239779283
Iteration: 12, Func. Count: 153, Neg. LLF: 126.56985749008483
Iteration: 13, Func. Count: 165, Neg. LLF: 126.56867900175472
Iteration: 14, Func. Count: 177, Neg. LLF: 126.5686314285064
Iteration: 15, Func. Count: 189, Neg. LLF: 126.5686261559198
Iteration: 16, Func. Count: 201, Neg. LLF: 126.56862527334825
Optimization terminated successfully (Exit mode 0)
Current function value: 126.56862527334825
Iterations: 16
Function evaluations: 201
Gradient evaluations: 16
Iteration: 1, Func. Count: 14, Neg. LLF: 150.19665890363132
Iteration: 2, Func. Count: 28, Neg. LLF: 177.60452700581305
Iteration: 3, Func. Count: 42, Neg. LLF: 170.5291411877105
Iteration: 4, Func. Count: 56, Neg. LLF: 69011.19032945932
Iteration: 5, Func. Count: 70, Neg. LLF: 128.31114606219722
Iteration: 6, Func. Count: 84, Neg. LLF: 184.91095083675154
Iteration: 7, Func. Count: 98, Neg. LLF: 126.73702005046817
Iteration: 8, Func. Count: 111, Neg. LLF: 126.6311853681852
Iteration: 9, Func. Count: 124, Neg. LLF: 127.25502805350793
Iteration: 10, Func. Count: 138, Neg. LLF: 126.58442146493584
Iteration: 11, Func. Count: 151, Neg. LLF: 126.57333616465243
Iteration: 12, Func. Count: 164, Neg. LLF: 126.56985703260754
Iteration: 13, Func. Count: 177, Neg. LLF: 126.56890181395686
Iteration: 14, Func. Count: 190, Neg. LLF: 126.56863875785915
Iteration: 15, Func. Count: 203, Neg. LLF: 126.56863006081765
Iteration: 16, Func. Count: 216, Neg. LLF: 126.56862591641607
Iteration: 17, Func. Count: 229, Neg. LLF: 126.56862495373419
Optimization terminated successfully (Exit mode 0)
Current function value: 126.56862495373419
Iterations: 17
Function evaluations: 229
Gradient evaluations: 17
Iteration: 1, Func. Count: 15, Neg. LLF: 150.97559759936814
Iteration: 2, Func. Count: 30, Neg. LLF: 177.81632800903233
Iteration: 3, Func. Count: 45, Neg. LLF: 14284.33517315718
Iteration: 4, Func. Count: 60, Neg. LLF: 2061.2300558762163
Iteration: 5, Func. Count: 75, Neg. LLF: 131.3579008157943
Iteration: 6, Func. Count: 90, Neg. LLF: 192.32053957752464
Iteration: 7, Func. Count: 105, Neg. LLF: 129.1365086487245
Iteration: 8, Func. Count: 120, Neg. LLF: 126.60567258290554
Iteration: 9, Func. Count: 134, Neg. LLF: 126.70629970317304
Iteration: 10, Func. Count: 149, Neg. LLF: 126.57654708612579
Iteration: 11, Func. Count: 163, Neg. LLF: 126.5712005566847
Iteration: 12, Func. Count: 177, Neg. LLF: 126.56910800306015
Iteration: 13, Func. Count: 191, Neg. LLF: 126.56863646827208
Iteration: 14, Func. Count: 205, Neg. LLF: 126.568626672672
Iteration: 15, Func. Count: 219, Neg. LLF: 126.56862516346817
Iteration: 16, Func. Count: 232, Neg. LLF: 126.56862520108824
Optimization terminated successfully (Exit mode 0)
Current function value: 126.56862516346817
Iterations: 16
Function evaluations: 232
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 133.38905268026681
Iteration: 2, Func. Count: 24, Neg. LLF: 146.49707085116745
Iteration: 3, Func. Count: 36, Neg. LLF: 135.04056685658415
Iteration: 4, Func. Count: 48, Neg. LLF: 138.21277509684603
Iteration: 5, Func. Count: 60, Neg. LLF: 5611839.867045926
Iteration: 6, Func. Count: 72, Neg. LLF: 1771815.7534483608
Iteration: 7, Func. Count: 84, Neg. LLF: 129.655002815587
Iteration: 8, Func. Count: 96, Neg. LLF: 132.3259803954051
Iteration: 9, Func. Count: 108, Neg. LLF: 127.40739946427958
Iteration: 10, Func. Count: 120, Neg. LLF: 127.6351625707082
Iteration: 11, Func. Count: 132, Neg. LLF: 126.91509986621769
Iteration: 12, Func. Count: 144, Neg. LLF: 126.44761613028959
Iteration: 13, Func. Count: 155, Neg. LLF: 126.43256443536482
Iteration: 14, Func. Count: 166, Neg. LLF: 126.42804249525243
Iteration: 15, Func. Count: 177, Neg. LLF: 126.4267272146065
Iteration: 16, Func. Count: 188, Neg. LLF: 126.42661701510251
Iteration: 17, Func. Count: 199, Neg. LLF: 126.42659179830763
Iteration: 18, Func. Count: 210, Neg. LLF: 126.42658706723104
Iteration: 19, Func. Count: 221, Neg. LLF: 126.4265848961183
Iteration: 20, Func. Count: 231, Neg. LLF: 126.42658489607179
Optimization terminated successfully (Exit mode 0)
Current function value: 126.4265848961183
Iterations: 20
Function evaluations: 231
Gradient evaluations: 20
Iteration: 1, Func. Count: 13, Neg. LLF: 149.29453760820027
Iteration: 2, Func. Count: 26, Neg. LLF: 134.61264932565538
Iteration: 3, Func. Count: 39, Neg. LLF: 138.6856159117863
Iteration: 4, Func. Count: 52, Neg. LLF: 630.2892514920569
Iteration: 5, Func. Count: 65, Neg. LLF: 129.74636640257262
Iteration: 6, Func. Count: 78, Neg. LLF: 127.22882326494035
Iteration: 7, Func. Count: 91, Neg. LLF: 126.54548340917465
Iteration: 8, Func. Count: 103, Neg. LLF: 126.57677035971435
Iteration: 9, Func. Count: 116, Neg. LLF: 127.72986005169402
Iteration: 10, Func. Count: 129, Neg. LLF: 126.50510313226964
Iteration: 11, Func. Count: 142, Neg. LLF: 126.42721432400502
Iteration: 12, Func. Count: 154, Neg. LLF: 126.4266475272403
Iteration: 13, Func. Count: 166, Neg. LLF: 126.42660366530193
Iteration: 14, Func. Count: 178, Neg. LLF: 126.42658669432491
Iteration: 15, Func. Count: 190, Neg. LLF: 126.42658518090327
Iteration: 16, Func. Count: 202, Neg. LLF: 126.4265843755325
Optimization terminated successfully (Exit mode 0)
Current function value: 126.4265843755325
Iterations: 16
Function evaluations: 202
Gradient evaluations: 16
Iteration: 1, Func. Count: 14, Neg. LLF: 132.65182472647857
Iteration: 2, Func. Count: 28, Neg. LLF: 137.5724172589889
Iteration: 3, Func. Count: 42, Neg. LLF: 173.7951197335105
Iteration: 4, Func. Count: 56, Neg. LLF: 148.58569642334453
Iteration: 5, Func. Count: 70, Neg. LLF: 135.34645282021643
Iteration: 6, Func. Count: 84, Neg. LLF: 129.96010271676244
Iteration: 7, Func. Count: 98, Neg. LLF: 130.9615850248173
Iteration: 8, Func. Count: 112, Neg. LLF: 126.87250020279461
Iteration: 9, Func. Count: 126, Neg. LLF: 126.44702247029458
Iteration: 10, Func. Count: 139, Neg. LLF: 126.43692331463657
Iteration: 11, Func. Count: 152, Neg. LLF: 126.42892837015903
Iteration: 12, Func. Count: 165, Neg. LLF: 126.4293007510601
Iteration: 13, Func. Count: 179, Neg. LLF: 126.42873848908167
Iteration: 14, Func. Count: 193, Neg. LLF: 126.42658596514744
Iteration: 15, Func. Count: 206, Neg. LLF: 126.4265843976857
Iteration: 16, Func. Count: 218, Neg. LLF: 126.42658442559153
Optimization terminated successfully (Exit mode 0)
Current function value: 126.4265843976857
Iterations: 16
Function evaluations: 218
Gradient evaluations: 16
Iteration: 1, Func. Count: 15, Neg. LLF: 130.42550838144322
Iteration: 2, Func. Count: 30, Neg. LLF: 185.52064708949598
Iteration: 3, Func. Count: 45, Neg. LLF: 133.364274956631
Iteration: 4, Func. Count: 60, Neg. LLF: 132.26693742903834
Iteration: 5, Func. Count: 75, Neg. LLF: 135.56032559144913
Iteration: 6, Func. Count: 90, Neg. LLF: 139.51874846886605
Iteration: 7, Func. Count: 105, Neg. LLF: 128.59294188349472
Iteration: 8, Func. Count: 120, Neg. LLF: 127.58724831646244
Iteration: 9, Func. Count: 135, Neg. LLF: 129.5522577799376
Iteration: 10, Func. Count: 150, Neg. LLF: 126.43725576578603
Iteration: 11, Func. Count: 164, Neg. LLF: 126.43341014287232
Iteration: 12, Func. Count: 178, Neg. LLF: 126.427864930631
Iteration: 13, Func. Count: 192, Neg. LLF: 126.42719101197135
Iteration: 14, Func. Count: 206, Neg. LLF: 126.42664999114558
Iteration: 15, Func. Count: 220, Neg. LLF: 126.42659074015985
Iteration: 16, Func. Count: 234, Neg. LLF: 126.42658453913675
Iteration: 17, Func. Count: 247, Neg. LLF: 126.42658456453098
Optimization terminated successfully (Exit mode 0)
Current function value: 126.42658453913675
Iterations: 17
Function evaluations: 247
Gradient evaluations: 17
Iteration: 1, Func. Count: 16, Neg. LLF: 132.67981639513044
Iteration: 2, Func. Count: 32, Neg. LLF: 181.06538047751164
Iteration: 3, Func. Count: 48, Neg. LLF: 129.60367309829746
Iteration: 4, Func. Count: 64, Neg. LLF: 139.14859476469792
Iteration: 5, Func. Count: 80, Neg. LLF: 142.26733341127317
Iteration: 6, Func. Count: 96, Neg. LLF: 128.34667481821126
Iteration: 7, Func. Count: 112, Neg. LLF: 147.35251557450394
Iteration: 8, Func. Count: 128, Neg. LLF: 129.78768847103976
Iteration: 9, Func. Count: 144, Neg. LLF: 128.0196787072391
Iteration: 10, Func. Count: 160, Neg. LLF: 126.48093816879158
Iteration: 11, Func. Count: 175, Neg. LLF: 126.45956854682987
Iteration: 12, Func. Count: 190, Neg. LLF: 126.47512626108863
Iteration: 13, Func. Count: 206, Neg. LLF: 126.4303455413314
Iteration: 14, Func. Count: 221, Neg. LLF: 126.42740825953621
Iteration: 15, Func. Count: 236, Neg. LLF: 126.42661287263232
Iteration: 16, Func. Count: 251, Neg. LLF: 126.42658642272406
Iteration: 17, Func. Count: 266, Neg. LLF: 126.42658435401466
Iteration: 18, Func. Count: 280, Neg. LLF: 126.42658438498012
Optimization terminated successfully (Exit mode 0)
Current function value: 126.42658435401466
Iterations: 18
Function evaluations: 280
Gradient evaluations: 18
Iteration: 1, Func. Count: 5, Neg. LLF: 134.78008329158004
Iteration: 2, Func. Count: 10, Neg. LLF: 151.30186660586529
Iteration: 3, Func. Count: 15, Neg. LLF: 128.26527709841267
Iteration: 4, Func. Count: 19, Neg. LLF: 128.1685497271913
Iteration: 5, Func. Count: 23, Neg. LLF: 128.13147742136528
Iteration: 6, Func. Count: 27, Neg. LLF: 128.12868935749816
Iteration: 7, Func. Count: 31, Neg. LLF: 128.12847115427087
Iteration: 8, Func. Count: 35, Neg. LLF: 128.12844581285023
Iteration: 9, Func. Count: 39, Neg. LLF: 128.12844376679544
Iteration: 10, Func. Count: 42, Neg. LLF: 128.12844376679337
Optimization terminated successfully (Exit mode 0)
Current function value: 128.12844376679544
Iterations: 10
Function evaluations: 42
Gradient evaluations: 10
Iteration: 1, Func. Count: 5, Neg. LLF: 139.43869999799801
Iteration: 2, Func. Count: 10, Neg. LLF: 141.17774260440567
Iteration: 3, Func. Count: 15, Neg. LLF: 132.4696413224522
Iteration: 4, Func. Count: 19, Neg. LLF: 132.29070544185478
Iteration: 5, Func. Count: 23, Neg. LLF: 132.24376846576067
Iteration: 6, Func. Count: 27, Neg. LLF: 132.20352459796604
Iteration: 7, Func. Count: 31, Neg. LLF: 132.19313989502834
Iteration: 8, Func. Count: 35, Neg. LLF: 132.1904592207112
Iteration: 9, Func. Count: 39, Neg. LLF: 132.19044606138579
Iteration: 10, Func. Count: 42, Neg. LLF: 132.19044606139113
Optimization terminated successfully (Exit mode 0)
Current function value: 132.19044606138579
Iterations: 10
Function evaluations: 42
Gradient evaluations: 10
Iteration: 1, Func. Count: 6, Neg. LLF: 40702708.72427864
Iteration: 2, Func. Count: 13, Neg. LLF: 154.41138406812726
Iteration: 3, Func. Count: 20, Neg. LLF: 127.9453241272605
Iteration: 4, Func. Count: 25, Neg. LLF: 135.66945853873048
Iteration: 5, Func. Count: 31, Neg. LLF: 129.48045416830215
Iteration: 6, Func. Count: 38, Neg. LLF: 126.56070876062458
Iteration: 7, Func. Count: 43, Neg. LLF: 126.71560081285833
Iteration: 8, Func. Count: 49, Neg. LLF: 126.61023208914071
Iteration: 9, Func. Count: 55, Neg. LLF: 126.37823910191737
Iteration: 10, Func. Count: 60, Neg. LLF: 126.35977114827614
Iteration: 11, Func. Count: 65, Neg. LLF: 126.3596227618187
Iteration: 12, Func. Count: 70, Neg. LLF: 126.35961945618848
Iteration: 13, Func. Count: 74, Neg. LLF: 126.35961945712695
Optimization terminated successfully (Exit mode 0)
Current function value: 126.35961945618848
Iterations: 13
Function evaluations: 74
Gradient evaluations: 13
Iteration: 1, Func. Count: 7, Neg. LLF: 25315814.33366527
Iteration: 2, Func. Count: 14, Neg. LLF: 137.24713828126352
Iteration: 3, Func. Count: 21, Neg. LLF: 134.66647783646482
Iteration: 4, Func. Count: 28, Neg. LLF: 129.6839361659818
Iteration: 5, Func. Count: 35, Neg. LLF: 126.87777302192299
Iteration: 6, Func. Count: 41, Neg. LLF: 127.45082978701029
Iteration: 7, Func. Count: 48, Neg. LLF: 126.56850566774925
Iteration: 8, Func. Count: 55, Neg. LLF: 126.4777191647539
Iteration: 9, Func. Count: 61, Neg. LLF: 126.45056924685814
Iteration: 10, Func. Count: 67, Neg. LLF: 126.42989659752496
Iteration: 11, Func. Count: 73, Neg. LLF: 126.39497369684857
Iteration: 12, Func. Count: 79, Neg. LLF: 126.36143833854831
Iteration: 13, Func. Count: 85, Neg. LLF: 126.36261203532821
Iteration: 14, Func. Count: 92, Neg. LLF: 126.3596302940507
Iteration: 15, Func. Count: 98, Neg. LLF: 126.35961932914265
Iteration: 16, Func. Count: 103, Neg. LLF: 126.3596193318586
Optimization terminated successfully (Exit mode 0)
Current function value: 126.35961932914265
Iterations: 16
Function evaluations: 103
Gradient evaluations: 16
Iteration: 1, Func. Count: 8, Neg. LLF: 24965214.84230399
Iteration: 2, Func. Count: 16, Neg. LLF: 231.43142137736257
Iteration: 3, Func. Count: 25, Neg. LLF: 149.3968467461819
Iteration: 4, Func. Count: 33, Neg. LLF: 126.07397411979231
Iteration: 5, Func. Count: 40, Neg. LLF: 127.96938274645372
Iteration: 6, Func. Count: 48, Neg. LLF: 125.86757197929444
Iteration: 7, Func. Count: 55, Neg. LLF: 126.5824112539393
Iteration: 8, Func. Count: 64, Neg. LLF: 125.91432071456111
Iteration: 9, Func. Count: 72, Neg. LLF: 125.7824570875075
Iteration: 10, Func. Count: 79, Neg. LLF: 125.70529244539046
Iteration: 11, Func. Count: 86, Neg. LLF: 125.69422361349223
Iteration: 12, Func. Count: 93, Neg. LLF: 125.69234789596605
Iteration: 13, Func. Count: 100, Neg. LLF: 125.69190358984356
Iteration: 14, Func. Count: 107, Neg. LLF: 125.6918832106215
Iteration: 15, Func. Count: 113, Neg. LLF: 125.69188321057985
Optimization terminated successfully (Exit mode 0)
Current function value: 125.6918832106215
Iterations: 15
Function evaluations: 113
Gradient evaluations: 15
Iteration: 1, Func. Count: 9, Neg. LLF: 269.0402639912138
Iteration: 2, Func. Count: 18, Neg. LLF: 613.8660114174995
Iteration: 3, Func. Count: 27, Neg. LLF: 248.02972260609837
Iteration: 4, Func. Count: 36, Neg. LLF: 148.12752535840823
Iteration: 5, Func. Count: 45, Neg. LLF: 154.66254688579977
Iteration: 6, Func. Count: 54, Neg. LLF: 136.066834469518
Iteration: 7, Func. Count: 63, Neg. LLF: 131.21597533516268
Iteration: 8, Func. Count: 72, Neg. LLF: 126.92208536455196
Iteration: 9, Func. Count: 80, Neg. LLF: 126.0846815191735
Iteration: 10, Func. Count: 88, Neg. LLF: 125.89841783953473
Iteration: 11, Func. Count: 96, Neg. LLF: 125.77776799035139
Iteration: 12, Func. Count: 104, Neg. LLF: 126.24930815897844
Iteration: 13, Func. Count: 114, Neg. LLF: 131.15684136717795
Iteration: 14, Func. Count: 123, Neg. LLF: 125.7185516414068
Iteration: 15, Func. Count: 132, Neg. LLF: 125.68556781871291
Iteration: 16, Func. Count: 140, Neg. LLF: 125.68555323141646
Iteration: 17, Func. Count: 148, Neg. LLF: 125.68554087026159
Iteration: 18, Func. Count: 155, Neg. LLF: 125.68554087050947
Optimization terminated successfully (Exit mode 0)
Current function value: 125.68554087026159
Iterations: 18
Function evaluations: 155
Gradient evaluations: 18
Iteration: 1, Func. Count: 6, Neg. LLF: 138.087332093872
Iteration: 2, Func. Count: 12, Neg. LLF: 144.79536671628205
Iteration: 3, Func. Count: 18, Neg. LLF: 132.63839476544987
Iteration: 4, Func. Count: 23, Neg. LLF: 132.48311104765278
Iteration: 5, Func. Count: 28, Neg. LLF: 132.50402457153564
Iteration: 6, Func. Count: 34, Neg. LLF: 132.2340011155588
Iteration: 7, Func. Count: 39, Neg. LLF: 132.19756110701607
Iteration: 8, Func. Count: 44, Neg. LLF: 132.1906608109757
Iteration: 9, Func. Count: 49, Neg. LLF: 132.1904465983597
Iteration: 10, Func. Count: 54, Neg. LLF: 132.19044603904445
Optimization terminated successfully (Exit mode 0)
Current function value: 132.19044603904445
Iterations: 10
Function evaluations: 54
Gradient evaluations: 10
Iteration: 1, Func. Count: 7, Neg. LLF: 43178095.89921954
Iteration: 2, Func. Count: 15, Neg. LLF: 162.02418590314656
Iteration: 3, Func. Count: 23, Neg. LLF: 127.952483655936
Iteration: 4, Func. Count: 29, Neg. LLF: 129.03057081387362
Iteration: 5, Func. Count: 37, Neg. LLF: 127.95490226394554
Iteration: 6, Func. Count: 44, Neg. LLF: 128.18334275815693
Iteration: 7, Func. Count: 51, Neg. LLF: 126.66716535979167
Iteration: 8, Func. Count: 57, Neg. LLF: 126.50869701779301
Iteration: 9, Func. Count: 63, Neg. LLF: 126.39909078736963
Iteration: 10, Func. Count: 69, Neg. LLF: 126.35985798026681
Iteration: 11, Func. Count: 75, Neg. LLF: 126.35962760749725
Iteration: 12, Func. Count: 81, Neg. LLF: 126.35961939068072
Iteration: 13, Func. Count: 86, Neg. LLF: 126.35961939131491
Optimization terminated successfully (Exit mode 0)
Current function value: 126.35961939068072
Iterations: 13
Function evaluations: 86
Gradient evaluations: 13
Iteration: 1, Func. Count: 8, Neg. LLF: 25901484.148222353
Iteration: 2, Func. Count: 16, Neg. LLF: 240.93544446662995
Iteration: 3, Func. Count: 24, Neg. LLF: 182.6535074655659
Iteration: 4, Func. Count: 32, Neg. LLF: 127.8123450667037
Iteration: 5, Func. Count: 39, Neg. LLF: 128.39740049813307
Iteration: 6, Func. Count: 47, Neg. LLF: 126.96829154366041
Iteration: 7, Func. Count: 54, Neg. LLF: 127.21482366749825
Iteration: 8, Func. Count: 62, Neg. LLF: 126.65744870504402
Iteration: 9, Func. Count: 69, Neg. LLF: 126.53640025280028
Iteration: 10, Func. Count: 76, Neg. LLF: 126.52966329184173
Iteration: 11, Func. Count: 83, Neg. LLF: 126.52237500722654
Iteration: 12, Func. Count: 90, Neg. LLF: 126.52232998398657
Iteration: 13, Func. Count: 98, Neg. LLF: 126.52196543672684
Iteration: 14, Func. Count: 105, Neg. LLF: 126.52196422841409
Iteration: 15, Func. Count: 111, Neg. LLF: 126.5219642284714
Optimization terminated successfully (Exit mode 0)
Current function value: 126.52196422841409
Iterations: 15
Function evaluations: 111
Gradient evaluations: 15
Iteration: 1, Func. Count: 9, Neg. LLF: 25387667.82243545
Iteration: 2, Func. Count: 18, Neg. LLF: 164.66249000670214
Iteration: 3, Func. Count: 28, Neg. LLF: 162.7143910173605
Iteration: 4, Func. Count: 37, Neg. LLF: 129.6699589547491
Iteration: 5, Func. Count: 46, Neg. LLF: 127.47102606122917
Iteration: 6, Func. Count: 55, Neg. LLF: 125.82304293330925
Iteration: 7, Func. Count: 63, Neg. LLF: 127.42062972776127
Iteration: 8, Func. Count: 73, Neg. LLF: 125.74002689776474
Iteration: 9, Func. Count: 81, Neg. LLF: 125.69878982539358
Iteration: 10, Func. Count: 89, Neg. LLF: 125.69545073349704
Iteration: 11, Func. Count: 97, Neg. LLF: 125.69293595474278
Iteration: 12, Func. Count: 105, Neg. LLF: 125.69206312055172
Iteration: 13, Func. Count: 113, Neg. LLF: 125.69189037919355
Iteration: 14, Func. Count: 121, Neg. LLF: 125.69188274871051
Iteration: 15, Func. Count: 128, Neg. LLF: 125.69188274875857
Optimization terminated successfully (Exit mode 0)
Current function value: 125.69188274871051
Iterations: 15
Function evaluations: 128
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 255.04757834399746
Iteration: 2, Func. Count: 20, Neg. LLF: 18654643.950201474
Iteration: 3, Func. Count: 30, Neg. LLF: 167.60997971165352
Iteration: 4, Func. Count: 40, Neg. LLF: 144.340490786035
Iteration: 5, Func. Count: 50, Neg. LLF: 141.20914046681264
Iteration: 6, Func. Count: 60, Neg. LLF: 135.43153459875512
Iteration: 7, Func. Count: 70, Neg. LLF: 130.05729633420376
Iteration: 8, Func. Count: 80, Neg. LLF: 127.67317979782932
Iteration: 9, Func. Count: 90, Neg. LLF: 126.27948685253051
Iteration: 10, Func. Count: 99, Neg. LLF: 130.8787541001428
Iteration: 11, Func. Count: 111, Neg. LLF: 126.6921591939374
Iteration: 12, Func. Count: 121, Neg. LLF: 125.69562129007434
Iteration: 13, Func. Count: 130, Neg. LLF: 125.68996661912179
Iteration: 14, Func. Count: 139, Neg. LLF: 125.6873570745617
Iteration: 15, Func. Count: 148, Neg. LLF: 125.68555353468108
Iteration: 16, Func. Count: 157, Neg. LLF: 125.68554079815407
Iteration: 17, Func. Count: 165, Neg. LLF: 125.68554079833844
Optimization terminated successfully (Exit mode 0)
Current function value: 125.68554079815407
Iterations: 17
Function evaluations: 165
Gradient evaluations: 17
Iteration: 1, Func. Count: 7, Neg. LLF: 135.10199060085557
Iteration: 2, Func. Count: 14, Neg. LLF: 130.81954176952686
Iteration: 3, Func. Count: 20, Neg. LLF: 130.6180552959284
Iteration: 4, Func. Count: 26, Neg. LLF: 130.83045623947956
Iteration: 5, Func. Count: 33, Neg. LLF: 128.95235732665438
Iteration: 6, Func. Count: 39, Neg. LLF: 128.88313829662576
Iteration: 7, Func. Count: 45, Neg. LLF: 128.87848215541482
Iteration: 8, Func. Count: 51, Neg. LLF: 128.87637772073649
Iteration: 9, Func. Count: 57, Neg. LLF: 128.87635852538128
Iteration: 10, Func. Count: 62, Neg. LLF: 128.8763585203348
Optimization terminated successfully (Exit mode 0)
Current function value: 128.87635852538128
Iterations: 10
Function evaluations: 62
Gradient evaluations: 10
Iteration: 1, Func. Count: 8, Neg. LLF: 45523417.02361672
Iteration: 2, Func. Count: 17, Neg. LLF: 164.63200138547506
Iteration: 3, Func. Count: 26, Neg. LLF: 147.42349969673256
Iteration: 4, Func. Count: 34, Neg. LLF: 132.3437733956141
Iteration: 5, Func. Count: 42, Neg. LLF: 129.1882093507553
Iteration: 6, Func. Count: 50, Neg. LLF: 127.07772043709731
Iteration: 7, Func. Count: 57, Neg. LLF: 127.3247183541965
Iteration: 8, Func. Count: 65, Neg. LLF: 126.71670358318553
Iteration: 9, Func. Count: 72, Neg. LLF: 126.71457933941753
Iteration: 10, Func. Count: 80, Neg. LLF: 126.55941528360128
Iteration: 11, Func. Count: 87, Neg. LLF: 126.43537268194456
Iteration: 12, Func. Count: 94, Neg. LLF: 126.37528782292121
Iteration: 13, Func. Count: 101, Neg. LLF: 126.3628724188472
Iteration: 14, Func. Count: 108, Neg. LLF: 126.36194400491961
Iteration: 15, Func. Count: 115, Neg. LLF: 15968616.196167348
Iteration: 16, Func. Count: 126, Neg. LLF: 126.38960368292817
Iteration: 17, Func. Count: 135, Neg. LLF: 126.35983695461226
Iteration: 18, Func. Count: 142, Neg. LLF: 126.35961956140407
Optimization terminated successfully (Exit mode 0)
Current function value: 126.35961956003709
Iterations: 19
Function evaluations: 142
Gradient evaluations: 18
Iteration: 1, Func. Count: 9, Neg. LLF: 27289543.56719087
Iteration: 2, Func. Count: 18, Neg. LLF: 330.7779405790363
Iteration: 3, Func. Count: 27, Neg. LLF: 133.1785296229645
Iteration: 4, Func. Count: 36, Neg. LLF: 127.07146081276142
Iteration: 5, Func. Count: 44, Neg. LLF: 126.57485838312955
Iteration: 6, Func. Count: 52, Neg. LLF: 126.88729626265146
Iteration: 7, Func. Count: 61, Neg. LLF: 126.53344169810656
Iteration: 8, Func. Count: 69, Neg. LLF: 126.52307397089629
Iteration: 9, Func. Count: 77, Neg. LLF: 126.5219656303456
Iteration: 10, Func. Count: 85, Neg. LLF: 126.52196422239184
Iteration: 11, Func. Count: 92, Neg. LLF: 126.52196422239682
Optimization terminated successfully (Exit mode 0)
Current function value: 126.52196422239184
Iterations: 11
Function evaluations: 92
Gradient evaluations: 11
Iteration: 1, Func. Count: 10, Neg. LLF: 26818363.08821845
Iteration: 2, Func. Count: 20, Neg. LLF: 310.6716224919987
Iteration: 3, Func. Count: 30, Neg. LLF: 248.23217649256426
Iteration: 4, Func. Count: 40, Neg. LLF: 126.09886244945679
Iteration: 5, Func. Count: 49, Neg. LLF: 125.91733888305868
Iteration: 6, Func. Count: 58, Neg. LLF: 125.76342884993107
Iteration: 7, Func. Count: 67, Neg. LLF: 125.7145116831478
Iteration: 8, Func. Count: 76, Neg. LLF: 125.70613305358314
Iteration: 9, Func. Count: 85, Neg. LLF: 125.6926073008732
Iteration: 10, Func. Count: 94, Neg. LLF: 125.69198942269931
Iteration: 11, Func. Count: 103, Neg. LLF: 125.69188276688712
Iteration: 12, Func. Count: 111, Neg. LLF: 125.69188276686955
Optimization terminated successfully (Exit mode 0)
Current function value: 125.69188276688712
Iterations: 12
Function evaluations: 111
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 257.4502526537681
Iteration: 2, Func. Count: 22, Neg. LLF: 33841531.881237864
Iteration: 3, Func. Count: 33, Neg. LLF: 154.8498051054448
Iteration: 4, Func. Count: 44, Neg. LLF: 139.21125970657147
Iteration: 5, Func. Count: 55, Neg. LLF: 136.201901105068
Iteration: 6, Func. Count: 66, Neg. LLF: 131.51058443840648
Iteration: 7, Func. Count: 77, Neg. LLF: 127.4540819164265
Iteration: 8, Func. Count: 88, Neg. LLF: 136.61574061263676
Iteration: 9, Func. Count: 99, Neg. LLF: 125.86352706851969
Iteration: 10, Func. Count: 109, Neg. LLF: 126.50656854742103
Iteration: 11, Func. Count: 121, Neg. LLF: 127.1583678377946
Iteration: 12, Func. Count: 133, Neg. LLF: 125.68800810035069
Iteration: 13, Func. Count: 143, Neg. LLF: 125.68640351045708
Iteration: 14, Func. Count: 153, Neg. LLF: 125.6872703077316
Iteration: 15, Func. Count: 164, Neg. LLF: 125.6855702203794
Iteration: 16, Func. Count: 174, Neg. LLF: 125.68554053576803
Iteration: 17, Func. Count: 183, Neg. LLF: 125.68554053584575
Optimization terminated successfully (Exit mode 0)
Current function value: 125.68554053576803
Iterations: 17
Function evaluations: 183
Gradient evaluations: 17
Iteration: 1, Func. Count: 8, Neg. LLF: 135.1039949354476
Iteration: 2, Func. Count: 17, Neg. LLF: 132.59024639010224
Iteration: 3, Func. Count: 25, Neg. LLF: 147.21501141296423
Iteration: 4, Func. Count: 33, Neg. LLF: 127.56426983533004
Iteration: 5, Func. Count: 40, Neg. LLF: 129.06669734652718
Iteration: 6, Func. Count: 48, Neg. LLF: 127.0249614582317
Iteration: 7, Func. Count: 55, Neg. LLF: 126.90635646986844
Iteration: 8, Func. Count: 62, Neg. LLF: 126.90382929373342
Iteration: 9, Func. Count: 69, Neg. LLF: 126.90295342210511
Iteration: 10, Func. Count: 76, Neg. LLF: 126.90237081174868
Iteration: 11, Func. Count: 83, Neg. LLF: 126.90234658020078
Iteration: 12, Func. Count: 90, Neg. LLF: 126.90234302817743
Iteration: 13, Func. Count: 96, Neg. LLF: 126.90234301622237
Optimization terminated successfully (Exit mode 0)
Current function value: 126.90234302817743
Iterations: 13
Function evaluations: 96
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 45210789.39231051
Iteration: 2, Func. Count: 19, Neg. LLF: 160.48794155734055
Iteration: 3, Func. Count: 29, Neg. LLF: 130.18039261270982
Iteration: 4, Func. Count: 38, Neg. LLF: 127.65416352648619
Iteration: 5, Func. Count: 46, Neg. LLF: 133.16843989910504
Iteration: 6, Func. Count: 57, Neg. LLF: 128.2264999320128
Iteration: 7, Func. Count: 66, Neg. LLF: 126.95451737660511
Iteration: 8, Func. Count: 74, Neg. LLF: 126.6670375056593
Iteration: 9, Func. Count: 82, Neg. LLF: 126.43320698602396
Iteration: 10, Func. Count: 90, Neg. LLF: 126.67560660012035
Iteration: 11, Func. Count: 99, Neg. LLF: 126.36245132888214
Iteration: 12, Func. Count: 107, Neg. LLF: 126.35963189518822
Iteration: 13, Func. Count: 115, Neg. LLF: 126.35961940212967
Iteration: 14, Func. Count: 122, Neg. LLF: 126.35961940141557
Optimization terminated successfully (Exit mode 0)
Current function value: 126.35961940212967
Iterations: 14
Function evaluations: 122
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 27463875.881112028
Iteration: 2, Func. Count: 20, Neg. LLF: 650.895532081628
Iteration: 3, Func. Count: 30, Neg. LLF: 179.94876213115703
Iteration: 4, Func. Count: 41, Neg. LLF: 127.94032739799171
Iteration: 5, Func. Count: 50, Neg. LLF: 127.01905654758615
Iteration: 6, Func. Count: 59, Neg. LLF: 126.62041516762703
Iteration: 7, Func. Count: 68, Neg. LLF: 126.5548000189984
Iteration: 8, Func. Count: 77, Neg. LLF: 126.56592660105704
Iteration: 9, Func. Count: 87, Neg. LLF: 126.53136554467672
Iteration: 10, Func. Count: 97, Neg. LLF: 126.52196563072575
Iteration: 11, Func. Count: 106, Neg. LLF: 126.52196422928428
Iteration: 12, Func. Count: 114, Neg. LLF: 126.52196422941559
Optimization terminated successfully (Exit mode 0)
Current function value: 126.52196422928428
Iterations: 12
Function evaluations: 114
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 27117459.05823643
Iteration: 2, Func. Count: 22, Neg. LLF: 436.64183716358133
Iteration: 3, Func. Count: 33, Neg. LLF: 207.8928930700137
Iteration: 4, Func. Count: 45, Neg. LLF: 126.31786494686908
Iteration: 5, Func. Count: 55, Neg. LLF: 125.94420681621376
Iteration: 6, Func. Count: 65, Neg. LLF: 125.73252091671385
Iteration: 7, Func. Count: 75, Neg. LLF: 125.77331671922398
Iteration: 8, Func. Count: 86, Neg. LLF: 125.6920581996585
Iteration: 9, Func. Count: 96, Neg. LLF: 125.69189377431506
Iteration: 10, Func. Count: 106, Neg. LLF: 125.69188813236444
Iteration: 11, Func. Count: 116, Neg. LLF: 125.69188269137574
Iteration: 12, Func. Count: 125, Neg. LLF: 125.69188269139349
Optimization terminated successfully (Exit mode 0)
Current function value: 125.69188269137574
Iterations: 12
Function evaluations: 125
Gradient evaluations: 12
Iteration: 1, Func. Count: 12, Neg. LLF: 212.67996915407858
Iteration: 2, Func. Count: 24, Neg. LLF: 330.90636441191714
Iteration: 3, Func. Count: 36, Neg. LLF: 14024.78735435226
Iteration: 4, Func. Count: 48, Neg. LLF: 473443.44371032756
Iteration: 5, Func. Count: 60, Neg. LLF: 587.7170911560463
Iteration: 6, Func. Count: 72, Neg. LLF: 133.7485468265211
Iteration: 7, Func. Count: 84, Neg. LLF: 128.31315917848733
Iteration: 8, Func. Count: 96, Neg. LLF: 127.25984759045139
Iteration: 9, Func. Count: 107, Neg. LLF: 127.68450317145371
Iteration: 10, Func. Count: 120, Neg. LLF: 126.9383742880542
Iteration: 11, Func. Count: 131, Neg. LLF: 126.63032908558142
Iteration: 12, Func. Count: 142, Neg. LLF: 128.95708064483625
Iteration: 13, Func. Count: 155, Neg. LLF: 126.35404353272098
Iteration: 14, Func. Count: 166, Neg. LLF: 126.29416934513448
Iteration: 15, Func. Count: 177, Neg. LLF: 126.21890697136412
Iteration: 16, Func. Count: 188, Neg. LLF: 126.31607630787994
Iteration: 17, Func. Count: 200, Neg. LLF: 126.13603072473857
Iteration: 18, Func. Count: 211, Neg. LLF: 126.12589378703132
Iteration: 19, Func. Count: 222, Neg. LLF: 126.12462481758526
Iteration: 20, Func. Count: 233, Neg. LLF: 126.12406976693937
Iteration: 21, Func. Count: 244, Neg. LLF: 126.1240344778558
Iteration: 22, Func. Count: 255, Neg. LLF: 126.12403167543333
Iteration: 23, Func. Count: 265, Neg. LLF: 126.12403167542206
Optimization terminated successfully (Exit mode 0)
Current function value: 126.12403167543333
Iterations: 23
Function evaluations: 265
Gradient evaluations: 23
Iteration: 1, Func. Count: 5, Neg. LLF: 135.89630160215364
Iteration: 2, Func. Count: 10, Neg. LLF: 147.13205384116213
Iteration: 3, Func. Count: 15, Neg. LLF: 126.1391940892112
Iteration: 4, Func. Count: 19, Neg. LLF: 126.38913563377294
Iteration: 5, Func. Count: 24, Neg. LLF: 125.81138278310387
Iteration: 6, Func. Count: 28, Neg. LLF: 125.80576470932628
Iteration: 7, Func. Count: 32, Neg. LLF: 125.80542287399078
Iteration: 8, Func. Count: 36, Neg. LLF: 125.80539701216195
Iteration: 9, Func. Count: 39, Neg. LLF: 125.80539701215676
Optimization terminated successfully (Exit mode 0)
Current function value: 125.80539701216195
Iterations: 9
Function evaluations: 39
Gradient evaluations: 9
Iteration: 1, Func. Count: 6, Neg. LLF: 19109556.58311736
Iteration: 2, Func. Count: 12, Neg. LLF: 145.53391359137686
Iteration: 3, Func. Count: 18, Neg. LLF: 139.99094730968676
Iteration: 4, Func. Count: 24, Neg. LLF: 125.3129426925144
Iteration: 5, Func. Count: 30, Neg. LLF: 125.16427527638308
Iteration: 6, Func. Count: 35, Neg. LLF: 125.15966986351384
Iteration: 7, Func. Count: 40, Neg. LLF: 125.15780769578288
Iteration: 8, Func. Count: 45, Neg. LLF: 125.15712573091449
Iteration: 9, Func. Count: 50, Neg. LLF: 125.15709298251059
Iteration: 10, Func. Count: 55, Neg. LLF: 125.15709244573233
Optimization terminated successfully (Exit mode 0)
Current function value: 125.15709244573233
Iterations: 10
Function evaluations: 55
Gradient evaluations: 10
Iteration: 1, Func. Count: 7, Neg. LLF: 17501417.882178392
Iteration: 2, Func. Count: 14, Neg. LLF: 137.65755107954018
Iteration: 3, Func. Count: 21, Neg. LLF: 131.11496073382605
Iteration: 4, Func. Count: 28, Neg. LLF: 126.54116190368548
Iteration: 5, Func. Count: 35, Neg. LLF: 124.98964875695701
Iteration: 6, Func. Count: 42, Neg. LLF: 124.96611156775796
Iteration: 7, Func. Count: 49, Neg. LLF: 124.89305694296169
Iteration: 8, Func. Count: 55, Neg. LLF: 124.89222942095144
Iteration: 9, Func. Count: 61, Neg. LLF: 124.89189041356299
Iteration: 10, Func. Count: 67, Neg. LLF: 124.8917334214616
Iteration: 11, Func. Count: 73, Neg. LLF: 124.89172284432875
Iteration: 12, Func. Count: 79, Neg. LLF: 124.89172226889768
Optimization terminated successfully (Exit mode 0)
Current function value: 124.89172226889768
Iterations: 12
Function evaluations: 79
Gradient evaluations: 12
Iteration: 1, Func. Count: 8, Neg. LLF: 16797864.64228715
Iteration: 2, Func. Count: 16, Neg. LLF: 127.99067418000847
Iteration: 3, Func. Count: 24, Neg. LLF: 127.814806860035
Iteration: 4, Func. Count: 32, Neg. LLF: 126.31817286190423
Iteration: 5, Func. Count: 40, Neg. LLF: 124.99983120898399
Iteration: 6, Func. Count: 47, Neg. LLF: 128.63210086675727
Iteration: 7, Func. Count: 55, Neg. LLF: 125.00705307503726
Iteration: 8, Func. Count: 63, Neg. LLF: 125.01860253906344
Iteration: 9, Func. Count: 71, Neg. LLF: 124.88251525355356
Iteration: 10, Func. Count: 78, Neg. LLF: 124.8816524688899
Iteration: 11, Func. Count: 85, Neg. LLF: 124.88163611539231
Iteration: 12, Func. Count: 92, Neg. LLF: 124.88163499978512
Iteration: 13, Func. Count: 98, Neg. LLF: 124.8816349997547
Optimization terminated successfully (Exit mode 0)
Current function value: 124.88163499978512
Iterations: 13
Function evaluations: 98
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 16518484.336244235
Iteration: 2, Func. Count: 18, Neg. LLF: 140.37558816052174
Iteration: 3, Func. Count: 27, Neg. LLF: 125.91144656518924
Iteration: 4, Func. Count: 35, Neg. LLF: 125.80768988493233
Iteration: 5, Func. Count: 44, Neg. LLF: 126.63534442211034
Iteration: 6, Func. Count: 53, Neg. LLF: 125.36572291671357
Iteration: 7, Func. Count: 62, Neg. LLF: 125.08015139151503
Iteration: 8, Func. Count: 71, Neg. LLF: 124.98984671951848
Iteration: 9, Func. Count: 80, Neg. LLF: 124.90443155032646
Iteration: 10, Func. Count: 89, Neg. LLF: 124.88349222311636
Iteration: 11, Func. Count: 97, Neg. LLF: 124.88167380036555
Iteration: 12, Func. Count: 105, Neg. LLF: 124.88163877573113
Iteration: 13, Func. Count: 113, Neg. LLF: 124.88163605782368
Iteration: 14, Func. Count: 121, Neg. LLF: 124.88163499713721
Iteration: 15, Func. Count: 128, Neg. LLF: 124.88163506467941
Optimization terminated successfully (Exit mode 0)
Current function value: 124.88163499713721
Iterations: 15
Function evaluations: 128
Gradient evaluations: 15
Iteration: 1, Func. Count: 6, Neg. LLF: 138.7628241447866
Iteration: 2, Func. Count: 12, Neg. LLF: 136.09844418950536
Iteration: 3, Func. Count: 18, Neg. LLF: 126.32604417829626
Iteration: 4, Func. Count: 23, Neg. LLF: 129.53766718701124
Iteration: 5, Func. Count: 29, Neg. LLF: 125.79285394620067
Iteration: 6, Func. Count: 34, Neg. LLF: 125.78114213376591
Iteration: 7, Func. Count: 39, Neg. LLF: 125.78005169845586
Iteration: 8, Func. Count: 44, Neg. LLF: 125.77984316770868
Iteration: 9, Func. Count: 49, Neg. LLF: 125.77982958080052
Iteration: 10, Func. Count: 53, Neg. LLF: 125.77982958079339
Optimization terminated successfully (Exit mode 0)
Current function value: 125.77982958080052
Iterations: 10
Function evaluations: 53
Gradient evaluations: 10
Iteration: 1, Func. Count: 7, Neg. LLF: 4206763.8988820715
Iteration: 2, Func. Count: 14, Neg. LLF: 127.52300067987919
Iteration: 3, Func. Count: 21, Neg. LLF: 213.28303395368704
Iteration: 4, Func. Count: 29, Neg. LLF: 126.45670236747186
Iteration: 5, Func. Count: 36, Neg. LLF: 126.59200106829715
Iteration: 6, Func. Count: 43, Neg. LLF: 125.13513573537028
Iteration: 7, Func. Count: 49, Neg. LLF: 125.13360311761784
Iteration: 8, Func. Count: 55, Neg. LLF: 125.13342967112796
Iteration: 9, Func. Count: 61, Neg. LLF: 125.1334288475583
Optimization terminated successfully (Exit mode 0)
Current function value: 125.1334288475583
Iterations: 9
Function evaluations: 61
Gradient evaluations: 9
Iteration: 1, Func. Count: 8, Neg. LLF: 25764950.886242796
Iteration: 2, Func. Count: 16, Neg. LLF: 145.48319401446125
Iteration: 3, Func. Count: 24, Neg. LLF: 178.09823577494603
Iteration: 4, Func. Count: 32, Neg. LLF: 131.24759060858887
Iteration: 5, Func. Count: 40, Neg. LLF: 125.04853483236136
Iteration: 6, Func. Count: 48, Neg. LLF: 124.93466973348943
Iteration: 7, Func. Count: 56, Neg. LLF: 125.0074630302214
Iteration: 8, Func. Count: 64, Neg. LLF: 124.88863362319135
Iteration: 9, Func. Count: 71, Neg. LLF: 124.8880503614403
Iteration: 10, Func. Count: 78, Neg. LLF: 124.88791148544534
Iteration: 11, Func. Count: 85, Neg. LLF: 124.88789924635465
Iteration: 12, Func. Count: 92, Neg. LLF: 124.8878981870998
Iteration: 13, Func. Count: 98, Neg. LLF: 124.8878981871133
Optimization terminated successfully (Exit mode 0)
Current function value: 124.8878981870998
Iterations: 13
Function evaluations: 98
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 22988549.824960638
Iteration: 2, Func. Count: 18, Neg. LLF: 136.1873609527312
Iteration: 3, Func. Count: 27, Neg. LLF: 210.06563182176336
Iteration: 4, Func. Count: 36, Neg. LLF: 124.95391279751688
Iteration: 5, Func. Count: 44, Neg. LLF: 126.61883984628278
Iteration: 6, Func. Count: 53, Neg. LLF: 125.33986156198381
Iteration: 7, Func. Count: 62, Neg. LLF: 125.07540296978806
Iteration: 8, Func. Count: 71, Neg. LLF: 124.8807495127116
Iteration: 9, Func. Count: 80, Neg. LLF: 124.87038563149254
Iteration: 10, Func. Count: 88, Neg. LLF: 124.87021933005202
Iteration: 11, Func. Count: 96, Neg. LLF: 124.87010133443738
Iteration: 12, Func. Count: 104, Neg. LLF: 124.87008449586894
Iteration: 13, Func. Count: 112, Neg. LLF: 124.87008047388778
Iteration: 14, Func. Count: 119, Neg. LLF: 124.87008047379949
Optimization terminated successfully (Exit mode 0)
Current function value: 124.87008047388778
Iterations: 14
Function evaluations: 119
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 21049570.437099773
Iteration: 2, Func. Count: 20, Neg. LLF: 161.87346993593732
Iteration: 3, Func. Count: 30, Neg. LLF: 145.11152600137115
Iteration: 4, Func. Count: 40, Neg. LLF: 125.38493778853167
Iteration: 5, Func. Count: 49, Neg. LLF: 126.63771866102944
Iteration: 6, Func. Count: 59, Neg. LLF: 125.76688871533071
Iteration: 7, Func. Count: 70, Neg. LLF: 126.05788465985769
Iteration: 8, Func. Count: 80, Neg. LLF: 124.94608621568881
Iteration: 9, Func. Count: 90, Neg. LLF: 124.87775750223543
Iteration: 10, Func. Count: 99, Neg. LLF: 124.8714834257152
Iteration: 11, Func. Count: 108, Neg. LLF: 124.8706820193849
Iteration: 12, Func. Count: 117, Neg. LLF: 124.87011224575484
Iteration: 13, Func. Count: 126, Neg. LLF: 124.87008801228792
Iteration: 14, Func. Count: 135, Neg. LLF: 124.8700803462598
Iteration: 15, Func. Count: 143, Neg. LLF: 124.8700804143208
Optimization terminated successfully (Exit mode 0)
Current function value: 124.8700803462598
Iterations: 15
Function evaluations: 143
Gradient evaluations: 15
Iteration: 1, Func. Count: 7, Neg. LLF: 139.32541220298805
Iteration: 2, Func. Count: 14, Neg. LLF: 136.9801505793588
Iteration: 3, Func. Count: 21, Neg. LLF: 126.08619114275854
Iteration: 4, Func. Count: 27, Neg. LLF: 142.84773459104954
Iteration: 5, Func. Count: 34, Neg. LLF: 125.84330004920146
Iteration: 6, Func. Count: 40, Neg. LLF: 125.78313745974957
Iteration: 7, Func. Count: 46, Neg. LLF: 125.77996129998269
Iteration: 8, Func. Count: 52, Neg. LLF: 125.7798313913078
Iteration: 9, Func. Count: 58, Neg. LLF: 125.77982963718212
Iteration: 10, Func. Count: 63, Neg. LLF: 125.77982968126973
Optimization terminated successfully (Exit mode 0)
Current function value: 125.77982963718212
Iterations: 10
Function evaluations: 63
Gradient evaluations: 10
Iteration: 1, Func. Count: 8, Neg. LLF: 4224158.231910766
Iteration: 2, Func. Count: 16, Neg. LLF: 135.70197923264834
Iteration: 3, Func. Count: 24, Neg. LLF: 127.97349678829292
Iteration: 4, Func. Count: 32, Neg. LLF: 138.83741139457382
Iteration: 5, Func. Count: 40, Neg. LLF: 125.74768581132535
Iteration: 6, Func. Count: 48, Neg. LLF: 125.13803651122043
Iteration: 7, Func. Count: 55, Neg. LLF: 125.13420946376837
Iteration: 8, Func. Count: 62, Neg. LLF: 125.13359893039832
Iteration: 9, Func. Count: 69, Neg. LLF: 125.13347014520673
Iteration: 10, Func. Count: 76, Neg. LLF: 125.13342974475296
Iteration: 11, Func. Count: 83, Neg. LLF: 125.13342888866387
Optimization terminated successfully (Exit mode 0)
Current function value: 125.13342888866387
Iterations: 11
Function evaluations: 83
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 5148521.371201079
Iteration: 2, Func. Count: 18, Neg. LLF: 133.9277406830091
Iteration: 3, Func. Count: 27, Neg. LLF: 196.00081476702266
Iteration: 4, Func. Count: 37, Neg. LLF: 128.81532616670475
Iteration: 5, Func. Count: 46, Neg. LLF: 126.44177937848005
Iteration: 6, Func. Count: 55, Neg. LLF: 124.97411780162963
Iteration: 7, Func. Count: 63, Neg. LLF: 124.93141663291274
Iteration: 8, Func. Count: 71, Neg. LLF: 124.89831733600523
Iteration: 9, Func. Count: 79, Neg. LLF: 124.88861095844078
Iteration: 10, Func. Count: 87, Neg. LLF: 124.88797447479429
Iteration: 11, Func. Count: 95, Neg. LLF: 124.8879202863814
Iteration: 12, Func. Count: 103, Neg. LLF: 124.88790049593607
Iteration: 13, Func. Count: 111, Neg. LLF: 124.88789877127267
Iteration: 14, Func. Count: 119, Neg. LLF: 124.8878981907608
Optimization terminated successfully (Exit mode 0)
Current function value: 124.8878981907608
Iterations: 14
Function evaluations: 119
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 23244393.961170755
Iteration: 2, Func. Count: 20, Neg. LLF: 132.5325852030986
Iteration: 3, Func. Count: 30, Neg. LLF: 148.02265039854703
Iteration: 4, Func. Count: 40, Neg. LLF: 128.78677592791266
Iteration: 5, Func. Count: 50, Neg. LLF: 126.53135262600382
Iteration: 6, Func. Count: 60, Neg. LLF: 125.01814685869621
Iteration: 7, Func. Count: 69, Neg. LLF: 125.21120252719571
Iteration: 8, Func. Count: 79, Neg. LLF: 125.03114539818802
Iteration: 9, Func. Count: 89, Neg. LLF: 124.89203541658827
Iteration: 10, Func. Count: 99, Neg. LLF: 124.87023311322329
Iteration: 11, Func. Count: 108, Neg. LLF: 124.87010859488979
Iteration: 12, Func. Count: 117, Neg. LLF: 124.87008996617041
Iteration: 13, Func. Count: 126, Neg. LLF: 124.87008059022014
Iteration: 14, Func. Count: 134, Neg. LLF: 124.87008059018162
Optimization terminated successfully (Exit mode 0)
Current function value: 124.87008059022014
Iterations: 14
Function evaluations: 134
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 21676238.785017397
Iteration: 2, Func. Count: 22, Neg. LLF: 146.91590356628038
Iteration: 3, Func. Count: 33, Neg. LLF: 141.309934469893
Iteration: 4, Func. Count: 44, Neg. LLF: 130.28597235438093
Iteration: 5, Func. Count: 55, Neg. LLF: 125.22234309651157
Iteration: 6, Func. Count: 65, Neg. LLF: 125.98992889362432
Iteration: 7, Func. Count: 76, Neg. LLF: 128.00340781384523
Iteration: 8, Func. Count: 87, Neg. LLF: 125.44553941013272
Iteration: 9, Func. Count: 98, Neg. LLF: 124.8823473949019
Iteration: 10, Func. Count: 108, Neg. LLF: 124.87238858650863
Iteration: 11, Func. Count: 118, Neg. LLF: 124.87072415003165
Iteration: 12, Func. Count: 128, Neg. LLF: 124.87018162870821
Iteration: 13, Func. Count: 138, Neg. LLF: 124.87010015503631
Iteration: 14, Func. Count: 148, Neg. LLF: 124.87008179880297
Iteration: 15, Func. Count: 158, Neg. LLF: 124.87008056917334
Iteration: 16, Func. Count: 167, Neg. LLF: 124.87008063727208
Optimization terminated successfully (Exit mode 0)
Current function value: 124.87008056917334
Iterations: 16
Function evaluations: 167
Gradient evaluations: 16
Iteration: 1, Func. Count: 8, Neg. LLF: 142.1677922719743
Iteration: 2, Func. Count: 16, Neg. LLF: 135.0927935847899
Iteration: 3, Func. Count: 24, Neg. LLF: 126.05063763885622
Iteration: 4, Func. Count: 31, Neg. LLF: 128.5805020767387
Iteration: 5, Func. Count: 39, Neg. LLF: 125.82850975051403
Iteration: 6, Func. Count: 46, Neg. LLF: 125.78251397545992
Iteration: 7, Func. Count: 53, Neg. LLF: 125.77989235087422
Iteration: 8, Func. Count: 60, Neg. LLF: 125.77983004365505
Iteration: 9, Func. Count: 66, Neg. LLF: 125.77983008869886
Optimization terminated successfully (Exit mode 0)
Current function value: 125.77983004365505
Iterations: 9
Function evaluations: 66
Gradient evaluations: 9
Iteration: 1, Func. Count: 9, Neg. LLF: 21497875.88999837
Iteration: 2, Func. Count: 18, Neg. LLF: 141.96628200246724
Iteration: 3, Func. Count: 27, Neg. LLF: 141.59978368011664
Iteration: 4, Func. Count: 36, Neg. LLF: 125.18793153857999
Iteration: 5, Func. Count: 44, Neg. LLF: 125.97064104054473
Iteration: 6, Func. Count: 53, Neg. LLF: 125.13711231795307
Iteration: 7, Func. Count: 61, Neg. LLF: 125.13394274855318
Iteration: 8, Func. Count: 69, Neg. LLF: 125.13347605886999
Iteration: 9, Func. Count: 77, Neg. LLF: 125.13344722329539
Iteration: 10, Func. Count: 85, Neg. LLF: 125.1334298452513
Iteration: 11, Func. Count: 93, Neg. LLF: 125.13342890827494
Optimization terminated successfully (Exit mode 0)
Current function value: 125.13342890827494
Iterations: 11
Function evaluations: 93
Gradient evaluations: 11
Iteration: 1, Func. Count: 10, Neg. LLF: 5260662.867932829
Iteration: 2, Func. Count: 20, Neg. LLF: 137.5141192598321
Iteration: 3, Func. Count: 30, Neg. LLF: 203.38874332607264
Iteration: 4, Func. Count: 40, Neg. LLF: 127.33794200214805
Iteration: 5, Func. Count: 50, Neg. LLF: 126.52147567539367
Iteration: 6, Func. Count: 60, Neg. LLF: 124.99607091632592
Iteration: 7, Func. Count: 69, Neg. LLF: 124.9179493395532
Iteration: 8, Func. Count: 78, Neg. LLF: 124.89627664157412
Iteration: 9, Func. Count: 87, Neg. LLF: 124.88918627116857
Iteration: 10, Func. Count: 96, Neg. LLF: 124.88827150319806
Iteration: 11, Func. Count: 105, Neg. LLF: 124.88793027395492
Iteration: 12, Func. Count: 114, Neg. LLF: 124.88790307777381
Iteration: 13, Func. Count: 123, Neg. LLF: 124.88789871921134
Iteration: 14, Func. Count: 131, Neg. LLF: 124.88789871915901
Optimization terminated successfully (Exit mode 0)
Current function value: 124.88789871921134
Iterations: 14
Function evaluations: 131
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 24589131.05924954
Iteration: 2, Func. Count: 22, Neg. LLF: 134.8520731397092
Iteration: 3, Func. Count: 33, Neg. LLF: 200.98869320878615
Iteration: 4, Func. Count: 45, Neg. LLF: 130.1949464217565
Iteration: 5, Func. Count: 56, Neg. LLF: 125.85282438762827
Iteration: 6, Func. Count: 67, Neg. LLF: 125.01764041501839
Iteration: 7, Func. Count: 78, Neg. LLF: 124.94673652182749
Iteration: 8, Func. Count: 89, Neg. LLF: 124.89335955694173
Iteration: 9, Func. Count: 99, Neg. LLF: 124.87137786162454
Iteration: 10, Func. Count: 109, Neg. LLF: 124.87053461976991
Iteration: 11, Func. Count: 119, Neg. LLF: 124.87013008943828
Iteration: 12, Func. Count: 129, Neg. LLF: 124.87010319320056
Iteration: 13, Func. Count: 139, Neg. LLF: 124.8700807594061
Iteration: 14, Func. Count: 148, Neg. LLF: 124.87008075938319
Optimization terminated successfully (Exit mode 0)
Current function value: 124.8700807594061
Iterations: 14
Function evaluations: 148
Gradient evaluations: 14
Iteration: 1, Func. Count: 12, Neg. LLF: 23256419.605249077
Iteration: 2, Func. Count: 24, Neg. LLF: 135.583743536679
Iteration: 3, Func. Count: 36, Neg. LLF: 142.63953708675123
Iteration: 4, Func. Count: 48, Neg. LLF: 136.52385228088696
Iteration: 5, Func. Count: 60, Neg. LLF: 126.43031913180009
Iteration: 6, Func. Count: 72, Neg. LLF: 125.05139029037281
Iteration: 7, Func. Count: 83, Neg. LLF: 125.00007823613815
Iteration: 8, Func. Count: 95, Neg. LLF: 126.11682124752133
Iteration: 9, Func. Count: 107, Neg. LLF: 124.87199803970925
Iteration: 10, Func. Count: 118, Neg. LLF: 124.87078666985178
Iteration: 11, Func. Count: 129, Neg. LLF: 124.87028840088884
Iteration: 12, Func. Count: 140, Neg. LLF: 124.87014350241648
Iteration: 13, Func. Count: 151, Neg. LLF: 124.87010868372637
Iteration: 14, Func. Count: 162, Neg. LLF: 124.87008438884598
Iteration: 15, Func. Count: 173, Neg. LLF: 124.87008068756242
Iteration: 16, Func. Count: 183, Neg. LLF: 124.87008075548502
Optimization terminated successfully (Exit mode 0)
Current function value: 124.87008068756242
Iterations: 16
Function evaluations: 183
Gradient evaluations: 16
Iteration: 1, Func. Count: 9, Neg. LLF: 138.02253451650304
Iteration: 2, Func. Count: 18, Neg. LLF: 136.09890724024586
Iteration: 3, Func. Count: 27, Neg. LLF: 126.0044763505244
Iteration: 4, Func. Count: 35, Neg. LLF: 39247.275658270875
Iteration: 5, Func. Count: 44, Neg. LLF: 126.31964642086409
Iteration: 6, Func. Count: 53, Neg. LLF: 125.62689748380018
Iteration: 7, Func. Count: 61, Neg. LLF: 125.61308232426877
Iteration: 8, Func. Count: 69, Neg. LLF: 125.60267007199371
Iteration: 9, Func. Count: 77, Neg. LLF: 125.60052188387021
Iteration: 10, Func. Count: 85, Neg. LLF: 125.60045035691019
Iteration: 11, Func. Count: 93, Neg. LLF: 125.6004498555031
Optimization terminated successfully (Exit mode 0)
Current function value: 125.6004498555031
Iterations: 11
Function evaluations: 93
Gradient evaluations: 11
Iteration: 1, Func. Count: 10, Neg. LLF: 19525730.14445781
Iteration: 2, Func. Count: 20, Neg. LLF: 146.26264322556307
Iteration: 3, Func. Count: 30, Neg. LLF: 136.27548326225573
Iteration: 4, Func. Count: 40, Neg. LLF: 126.80173546993483
Iteration: 5, Func. Count: 50, Neg. LLF: 125.74913847888668
Iteration: 6, Func. Count: 60, Neg. LLF: 125.13583272745562
Iteration: 7, Func. Count: 69, Neg. LLF: 125.13376966121776
Iteration: 8, Func. Count: 78, Neg. LLF: 125.13354522821336
Iteration: 9, Func. Count: 87, Neg. LLF: 125.13345222745305
Iteration: 10, Func. Count: 96, Neg. LLF: 125.13343068773442
Iteration: 11, Func. Count: 105, Neg. LLF: 125.13342887632795
Iteration: 12, Func. Count: 113, Neg. LLF: 125.13342887632587
Optimization terminated successfully (Exit mode 0)
Current function value: 125.13342887632795
Iterations: 12
Function evaluations: 113
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 25704647.551670063
Iteration: 2, Func. Count: 22, Neg. LLF: 138.09741931008665
Iteration: 3, Func. Count: 33, Neg. LLF: 200.10035902827116
Iteration: 4, Func. Count: 44, Neg. LLF: 125.17539662171077
Iteration: 5, Func. Count: 54, Neg. LLF: 127.33096617678424
Iteration: 6, Func. Count: 65, Neg. LLF: 125.9214501925024
Iteration: 7, Func. Count: 76, Neg. LLF: 124.95351176473078
Iteration: 8, Func. Count: 87, Neg. LLF: 124.89171896872661
Iteration: 9, Func. Count: 97, Neg. LLF: 124.88940314488265
Iteration: 10, Func. Count: 107, Neg. LLF: 124.88808396383074
Iteration: 11, Func. Count: 117, Neg. LLF: 124.88791492092638
Iteration: 12, Func. Count: 127, Neg. LLF: 124.88789958274427
Iteration: 13, Func. Count: 137, Neg. LLF: 124.88789833084422
Iteration: 14, Func. Count: 146, Neg. LLF: 124.88789833084289
Optimization terminated successfully (Exit mode 0)
Current function value: 124.88789833084422
Iterations: 14
Function evaluations: 146
Gradient evaluations: 14
Iteration: 1, Func. Count: 12, Neg. LLF: 23950050.70201223
Iteration: 2, Func. Count: 24, Neg. LLF: 134.30725412059826
Iteration: 3, Func. Count: 36, Neg. LLF: 194.72566649608427
Iteration: 4, Func. Count: 49, Neg. LLF: 133.79163957424367
Iteration: 5, Func. Count: 61, Neg. LLF: 125.53030058368229
Iteration: 6, Func. Count: 73, Neg. LLF: 125.0734266449886
Iteration: 7, Func. Count: 85, Neg. LLF: 124.91160665250793
Iteration: 8, Func. Count: 96, Neg. LLF: 124.89282969180324
Iteration: 9, Func. Count: 107, Neg. LLF: 124.91788618087264
Iteration: 10, Func. Count: 119, Neg. LLF: 124.87063024529448
Iteration: 11, Func. Count: 130, Neg. LLF: 124.87012111966243
Iteration: 12, Func. Count: 141, Neg. LLF: 124.8700826432954
Iteration: 13, Func. Count: 152, Neg. LLF: 124.87008082758054
Iteration: 14, Func. Count: 163, Neg. LLF: 124.87008024912825
Optimization terminated successfully (Exit mode 0)
Current function value: 124.87008024912825
Iterations: 14
Function evaluations: 163
Gradient evaluations: 14
Iteration: 1, Func. Count: 13, Neg. LLF: 22627844.47821888
Iteration: 2, Func. Count: 26, Neg. LLF: 136.11718259365884
Iteration: 3, Func. Count: 39, Neg. LLF: 131.663458081999
Iteration: 4, Func. Count: 52, Neg. LLF: 154.84961674904415
Iteration: 5, Func. Count: 65, Neg. LLF: 126.10103300746405
Iteration: 6, Func. Count: 78, Neg. LLF: 125.11672502758637
Iteration: 7, Func. Count: 90, Neg. LLF: 125.10114002408943
Iteration: 8, Func. Count: 103, Neg. LLF: 127.9534001213351
Iteration: 9, Func. Count: 116, Neg. LLF: 124.88494989612751
Iteration: 10, Func. Count: 128, Neg. LLF: 124.87171421838958
Iteration: 11, Func. Count: 140, Neg. LLF: 124.87060769063349
Iteration: 12, Func. Count: 152, Neg. LLF: 124.87014958326816
Iteration: 13, Func. Count: 164, Neg. LLF: 124.87008876014234
Iteration: 14, Func. Count: 176, Neg. LLF: 124.87008338227186
Iteration: 15, Func. Count: 188, Neg. LLF: 124.87008055642912
Iteration: 16, Func. Count: 199, Neg. LLF: 124.87008062436634
Optimization terminated successfully (Exit mode 0)
Current function value: 124.87008055642912
Iterations: 16
Function evaluations: 199
Gradient evaluations: 16
Iteration: 1, Func. Count: 6, Neg. LLF: 131.64531420709238
Iteration: 2, Func. Count: 12, Neg. LLF: 162.00836992437507
Iteration: 3, Func. Count: 18, Neg. LLF: 126.1210406790537
Iteration: 4, Func. Count: 23, Neg. LLF: 190.05144961199505
Iteration: 5, Func. Count: 29, Neg. LLF: 125.99497739066297
Iteration: 6, Func. Count: 35, Neg. LLF: 125.65889801695273
Iteration: 7, Func. Count: 40, Neg. LLF: 125.65749629471485
Iteration: 8, Func. Count: 45, Neg. LLF: 125.65722233167729
Iteration: 9, Func. Count: 50, Neg. LLF: 125.65707045950529
Iteration: 10, Func. Count: 55, Neg. LLF: 125.65705153793411
Iteration: 11, Func. Count: 60, Neg. LLF: 125.65705042301101
Iteration: 12, Func. Count: 64, Neg. LLF: 125.6570504230358
Optimization terminated successfully (Exit mode 0)
Current function value: 125.65705042301101
Iterations: 12
Function evaluations: 64
Gradient evaluations: 12
Iteration: 1, Func. Count: 7, Neg. LLF: 17869162.6882709
Iteration: 2, Func. Count: 14, Neg. LLF: 162.4739449858438
Iteration: 3, Func. Count: 21, Neg. LLF: 144.0886435954049
Iteration: 4, Func. Count: 28, Neg. LLF: 125.44784616624946
Iteration: 5, Func. Count: 34, Neg. LLF: 125.21588344871843
Iteration: 6, Func. Count: 40, Neg. LLF: 125.19192225751489
Iteration: 7, Func. Count: 46, Neg. LLF: 125.16822861132148
Iteration: 8, Func. Count: 52, Neg. LLF: 125.16107254238146
Iteration: 9, Func. Count: 58, Neg. LLF: 125.1572231562634
Iteration: 10, Func. Count: 64, Neg. LLF: 125.15710223563966
Iteration: 11, Func. Count: 70, Neg. LLF: 125.15709251536926
Iteration: 12, Func. Count: 75, Neg. LLF: 125.15709251540272
Optimization terminated successfully (Exit mode 0)
Current function value: 125.15709251536926
Iterations: 12
Function evaluations: 75
Gradient evaluations: 12
Iteration: 1, Func. Count: 8, Neg. LLF: 16703170.471253255
Iteration: 2, Func. Count: 16, Neg. LLF: 162.1925747545505
Iteration: 3, Func. Count: 24, Neg. LLF: 132.7529832522213
Iteration: 4, Func. Count: 32, Neg. LLF: 127.67455800156644
Iteration: 5, Func. Count: 40, Neg. LLF: 125.02568079152078
Iteration: 6, Func. Count: 47, Neg. LLF: 128.84482748173116
Iteration: 7, Func. Count: 55, Neg. LLF: 124.93317977710733
Iteration: 8, Func. Count: 62, Neg. LLF: 124.90604059847931
Iteration: 9, Func. Count: 69, Neg. LLF: 124.90017424931698
Iteration: 10, Func. Count: 76, Neg. LLF: 124.89218639295463
Iteration: 11, Func. Count: 83, Neg. LLF: 124.89176472261768
Iteration: 12, Func. Count: 90, Neg. LLF: 124.89172336904751
Iteration: 13, Func. Count: 97, Neg. LLF: 124.89172233614113
Iteration: 14, Func. Count: 103, Neg. LLF: 124.89172233615734
Optimization terminated successfully (Exit mode 0)
Current function value: 124.89172233614113
Iterations: 14
Function evaluations: 103
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 16294911.525292749
Iteration: 2, Func. Count: 18, Neg. LLF: 149.36605650955906
Iteration: 3, Func. Count: 27, Neg. LLF: 127.20177033584731
Iteration: 4, Func. Count: 36, Neg. LLF: 129.53738752355835
Iteration: 5, Func. Count: 45, Neg. LLF: 125.05100402561116
Iteration: 6, Func. Count: 53, Neg. LLF: 127.93056500234277
Iteration: 7, Func. Count: 62, Neg. LLF: 126.36384832428517
Iteration: 8, Func. Count: 71, Neg. LLF: 125.43035069947746
Iteration: 9, Func. Count: 81, Neg. LLF: 124.8790745057349
Iteration: 10, Func. Count: 89, Neg. LLF: 124.87818839036855
Iteration: 11, Func. Count: 97, Neg. LLF: 124.8780348106921
Iteration: 12, Func. Count: 105, Neg. LLF: 124.87775637048207
Iteration: 13, Func. Count: 113, Neg. LLF: 124.87771594014998
Iteration: 14, Func. Count: 121, Neg. LLF: 124.87770955421851
Iteration: 15, Func. Count: 128, Neg. LLF: 124.87770955427757
Optimization terminated successfully (Exit mode 0)
Current function value: 124.87770955421851
Iterations: 15
Function evaluations: 128
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 16197068.053039644
Iteration: 2, Func. Count: 20, Neg. LLF: 137.65905522714797
Iteration: 3, Func. Count: 30, Neg. LLF: 126.40335956298165
Iteration: 4, Func. Count: 40, Neg. LLF: 130.04464126313306
Iteration: 5, Func. Count: 50, Neg. LLF: 125.04586652080168
Iteration: 6, Func. Count: 59, Neg. LLF: 125.44333559807635
Iteration: 7, Func. Count: 69, Neg. LLF: 126.77952435128788
Iteration: 8, Func. Count: 79, Neg. LLF: 125.40294789769423
Iteration: 9, Func. Count: 89, Neg. LLF: 124.90899872639515
Iteration: 10, Func. Count: 99, Neg. LLF: 124.88155693648714
Iteration: 11, Func. Count: 109, Neg. LLF: 124.87944743055967
Iteration: 12, Func. Count: 118, Neg. LLF: 124.87904409107547
Iteration: 13, Func. Count: 127, Neg. LLF: 124.8783976299912
Iteration: 14, Func. Count: 136, Neg. LLF: 124.87790519054218
Iteration: 15, Func. Count: 145, Neg. LLF: 124.87777192397948
Iteration: 16, Func. Count: 154, Neg. LLF: 124.87771210164183
Iteration: 17, Func. Count: 163, Neg. LLF: 124.87770961003083
Iteration: 18, Func. Count: 171, Neg. LLF: 124.8777096721784
Optimization terminated successfully (Exit mode 0)
Current function value: 124.87770961003083
Iterations: 18
Function evaluations: 171
Gradient evaluations: 18
Iteration: 1, Func. Count: 7, Neg. LLF: 132.70444198430556
Iteration: 2, Func. Count: 14, Neg. LLF: 147.4486956249108
Iteration: 3, Func. Count: 21, Neg. LLF: 126.37245732253297
Iteration: 4, Func. Count: 27, Neg. LLF: 133.25672821252533
Iteration: 5, Func. Count: 34, Neg. LLF: 9064.941729494209
Iteration: 6, Func. Count: 41, Neg. LLF: 125.7165726517082
Iteration: 7, Func. Count: 48, Neg. LLF: 125.62219436105006
Iteration: 8, Func. Count: 54, Neg. LLF: 125.61690443395736
Iteration: 9, Func. Count: 60, Neg. LLF: 125.61552369773169
Iteration: 10, Func. Count: 66, Neg. LLF: 125.6153886883822
Iteration: 11, Func. Count: 72, Neg. LLF: 125.61536562877798
Iteration: 12, Func. Count: 78, Neg. LLF: 125.61536304540148
Iteration: 13, Func. Count: 83, Neg. LLF: 125.61536304541347
Optimization terminated successfully (Exit mode 0)
Current function value: 125.61536304540148
Iterations: 13
Function evaluations: 83
Gradient evaluations: 13
Iteration: 1, Func. Count: 8, Neg. LLF: 5115280.221715383
Iteration: 2, Func. Count: 16, Neg. LLF: 128.54477196084605
Iteration: 3, Func. Count: 24, Neg. LLF: 131.62104614035744
Iteration: 4, Func. Count: 32, Neg. LLF: 136.81188336589
Iteration: 5, Func. Count: 40, Neg. LLF: 129.0533267281228
Iteration: 6, Func. Count: 48, Neg. LLF: 125.13434114391093
Iteration: 7, Func. Count: 55, Neg. LLF: 125.13356726018927
Iteration: 8, Func. Count: 62, Neg. LLF: 125.13342904298811
Iteration: 9, Func. Count: 68, Neg. LLF: 125.13342904297319
Optimization terminated successfully (Exit mode 0)
Current function value: 125.13342904298811
Iterations: 9
Function evaluations: 68
Gradient evaluations: 9
Iteration: 1, Func. Count: 9, Neg. LLF: 5156901.544653408
Iteration: 2, Func. Count: 18, Neg. LLF: 136.79173055559554
Iteration: 3, Func. Count: 27, Neg. LLF: 136.23482978916294
Iteration: 4, Func. Count: 36, Neg. LLF: 139.6318434766669
Iteration: 5, Func. Count: 45, Neg. LLF: 128.66583135822458
Iteration: 6, Func. Count: 54, Neg. LLF: 125.00608597685815
Iteration: 7, Func. Count: 62, Neg. LLF: 125.44986509926385
Iteration: 8, Func. Count: 71, Neg. LLF: 124.9122949518515
Iteration: 9, Func. Count: 80, Neg. LLF: 124.88871412248592
Iteration: 10, Func. Count: 88, Neg. LLF: 124.88800723384213
Iteration: 11, Func. Count: 96, Neg. LLF: 124.88791042150388
Iteration: 12, Func. Count: 104, Neg. LLF: 124.88789836194407
Iteration: 13, Func. Count: 111, Neg. LLF: 124.8878983620088
Optimization terminated successfully (Exit mode 0)
Current function value: 124.88789836194407
Iterations: 13
Function evaluations: 111
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 20851615.21495473
Iteration: 2, Func. Count: 20, Neg. LLF: 134.15881095668544
Iteration: 3, Func. Count: 30, Neg. LLF: 157.32482812576478
Iteration: 4, Func. Count: 41, Neg. LLF: 132.74889053946308
Iteration: 5, Func. Count: 51, Neg. LLF: 126.84931874638252
Iteration: 6, Func. Count: 61, Neg. LLF: 125.04470373932045
Iteration: 7, Func. Count: 71, Neg. LLF: 124.95998765980617
Iteration: 8, Func. Count: 81, Neg. LLF: 125.07746749130553
Iteration: 9, Func. Count: 91, Neg. LLF: 124.87851464878848
Iteration: 10, Func. Count: 100, Neg. LLF: 124.87638596447138
Iteration: 11, Func. Count: 109, Neg. LLF: 124.87614381728457
Iteration: 12, Func. Count: 118, Neg. LLF: 124.87609963093578
Iteration: 13, Func. Count: 127, Neg. LLF: 124.8760462413945
Iteration: 14, Func. Count: 136, Neg. LLF: 124.8734815937798
Iteration: 15, Func. Count: 145, Neg. LLF: 124.87171285062887
Iteration: 16, Func. Count: 154, Neg. LLF: 124.87019894768939
Iteration: 17, Func. Count: 163, Neg. LLF: 124.87009839307707
Iteration: 18, Func. Count: 172, Neg. LLF: 124.87008126067262
Iteration: 19, Func. Count: 181, Neg. LLF: 124.87008014901272
Iteration: 20, Func. Count: 189, Neg. LLF: 124.87008014899766
Optimization terminated successfully (Exit mode 0)
Current function value: 124.87008014901272
Iterations: 20
Function evaluations: 189
Gradient evaluations: 20
Iteration: 1, Func. Count: 11, Neg. LLF: 19614348.45663764
Iteration: 2, Func. Count: 22, Neg. LLF: 140.03371358429675
Iteration: 3, Func. Count: 33, Neg. LLF: 152.07548198768205
Iteration: 4, Func. Count: 44, Neg. LLF: 125.66125239914966
Iteration: 5, Func. Count: 54, Neg. LLF: 127.4192962815826
Iteration: 6, Func. Count: 65, Neg. LLF: 132.27984557272063
Iteration: 7, Func. Count: 77, Neg. LLF: 128.47035609454971
Iteration: 8, Func. Count: 88, Neg. LLF: 124.92526412052298
Iteration: 9, Func. Count: 98, Neg. LLF: 126.17878166778148
Iteration: 10, Func. Count: 109, Neg. LLF: 124.88290414969605
Iteration: 11, Func. Count: 119, Neg. LLF: 124.87755850554412
Iteration: 12, Func. Count: 129, Neg. LLF: 124.87628115580232
Iteration: 13, Func. Count: 139, Neg. LLF: 124.87615157328018
Iteration: 14, Func. Count: 149, Neg. LLF: 124.87611781453533
Iteration: 15, Func. Count: 159, Neg. LLF: 124.8760896854017
Iteration: 16, Func. Count: 169, Neg. LLF: 124.87418924546077
Iteration: 17, Func. Count: 179, Neg. LLF: 124.87197050080171
Iteration: 18, Func. Count: 189, Neg. LLF: 124.870695143041
Iteration: 19, Func. Count: 199, Neg. LLF: 124.87011630466053
Iteration: 20, Func. Count: 209, Neg. LLF: 124.8700908224897
Iteration: 21, Func. Count: 219, Neg. LLF: 124.87008089927679
Iteration: 22, Func. Count: 229, Neg. LLF: 124.87008024134487
Optimization terminated successfully (Exit mode 0)
Current function value: 124.87008024134487
Iterations: 22
Function evaluations: 229
Gradient evaluations: 22
Iteration: 1, Func. Count: 8, Neg. LLF: 135.4961724794308
Iteration: 2, Func. Count: 16, Neg. LLF: 141.8760656943147
Iteration: 3, Func. Count: 24, Neg. LLF: 126.38570911028461
Iteration: 4, Func. Count: 31, Neg. LLF: 141.73755843169118
Iteration: 5, Func. Count: 39, Neg. LLF: 139.93551480555223
Iteration: 6, Func. Count: 47, Neg. LLF: 126.42718454794796
Iteration: 7, Func. Count: 55, Neg. LLF: 125.47716343892365
Iteration: 8, Func. Count: 62, Neg. LLF: 125.44205107910508
Iteration: 9, Func. Count: 69, Neg. LLF: 125.44133922190264
Iteration: 10, Func. Count: 76, Neg. LLF: 125.441046332715
Iteration: 11, Func. Count: 83, Neg. LLF: 125.44099883765371
Iteration: 12, Func. Count: 90, Neg. LLF: 125.44097597129269
Iteration: 13, Func. Count: 97, Neg. LLF: 125.44097507149752
Optimization terminated successfully (Exit mode 0)
Current function value: 125.44097507149752
Iterations: 13
Function evaluations: 97
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 2769413.601443131
Iteration: 2, Func. Count: 18, Neg. LLF: 296.05084381993356
Iteration: 3, Func. Count: 28, Neg. LLF: 135.39384589982632
Iteration: 4, Func. Count: 37, Neg. LLF: 126.62340890866243
Iteration: 5, Func. Count: 46, Neg. LLF: 125.54778248070438
Iteration: 6, Func. Count: 55, Neg. LLF: 125.10076226445665
Iteration: 7, Func. Count: 63, Neg. LLF: 125.0916280384451
Iteration: 8, Func. Count: 71, Neg. LLF: 125.0813111845359
Iteration: 9, Func. Count: 79, Neg. LLF: 125.07981999997813
Iteration: 10, Func. Count: 87, Neg. LLF: 125.07942098077991
Iteration: 11, Func. Count: 95, Neg. LLF: 125.07934067352225
Iteration: 12, Func. Count: 103, Neg. LLF: 125.07929168288874
Iteration: 13, Func. Count: 111, Neg. LLF: 125.07928127988976
Iteration: 14, Func. Count: 119, Neg. LLF: 125.07927819713876
Iteration: 15, Func. Count: 126, Neg. LLF: 125.07927819706906
Optimization terminated successfully (Exit mode 0)
Current function value: 125.07927819713876
Iterations: 15
Function evaluations: 126
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 5146570.402110331
Iteration: 2, Func. Count: 20, Neg. LLF: 134.95708281248753
Iteration: 3, Func. Count: 30, Neg. LLF: 128.82162257513255
Iteration: 4, Func. Count: 40, Neg. LLF: 126.53487276578822
Iteration: 5, Func. Count: 50, Neg. LLF: 125.0156263806179
Iteration: 6, Func. Count: 60, Neg. LLF: 124.83257588753669
Iteration: 7, Func. Count: 69, Neg. LLF: 124.80211767791403
Iteration: 8, Func. Count: 78, Neg. LLF: 124.80681435992375
Iteration: 9, Func. Count: 88, Neg. LLF: 124.79691455512386
Iteration: 10, Func. Count: 97, Neg. LLF: 124.80431910660815
Iteration: 11, Func. Count: 107, Neg. LLF: 124.79549001435296
Iteration: 12, Func. Count: 116, Neg. LLF: 124.79545276904828
Iteration: 13, Func. Count: 125, Neg. LLF: 124.79544415168368
Iteration: 14, Func. Count: 133, Neg. LLF: 124.79544415167203
Optimization terminated successfully (Exit mode 0)
Current function value: 124.79544415168368
Iterations: 14
Function evaluations: 133
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 5119338.827221691
Iteration: 2, Func. Count: 22, Neg. LLF: 135.82613628544058
Iteration: 3, Func. Count: 33, Neg. LLF: 205.80011452548447
Iteration: 4, Func. Count: 44, Neg. LLF: 125.36999675283403
Iteration: 5, Func. Count: 54, Neg. LLF: 136.81336329909985
Iteration: 6, Func. Count: 65, Neg. LLF: 125.51214280597229
Iteration: 7, Func. Count: 77, Neg. LLF: 131.3271709153693
Iteration: 8, Func. Count: 88, Neg. LLF: 125.32454300057165
Iteration: 9, Func. Count: 99, Neg. LLF: 124.76522924134869
Iteration: 10, Func. Count: 110, Neg. LLF: 124.69620875379832
Iteration: 11, Func. Count: 120, Neg. LLF: 124.69501766212538
Iteration: 12, Func. Count: 130, Neg. LLF: 124.69485934863977
Iteration: 13, Func. Count: 140, Neg. LLF: 124.69480394470823
Iteration: 14, Func. Count: 150, Neg. LLF: 124.69479903674963
Iteration: 15, Func. Count: 160, Neg. LLF: 124.69479590505443
Iteration: 16, Func. Count: 169, Neg. LLF: 124.69479590515735
Optimization terminated successfully (Exit mode 0)
Current function value: 124.69479590505443
Iterations: 16
Function evaluations: 169
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 19931186.132715728
Iteration: 2, Func. Count: 24, Neg. LLF: 145.07109711881216
Iteration: 3, Func. Count: 36, Neg. LLF: 218.97619213417084
Iteration: 4, Func. Count: 48, Neg. LLF: 127.30401372779802
Iteration: 5, Func. Count: 60, Neg. LLF: 127.58295042386318
Iteration: 6, Func. Count: 72, Neg. LLF: 125.22528016220512
Iteration: 7, Func. Count: 84, Neg. LLF: 124.82058903426945
Iteration: 8, Func. Count: 95, Neg. LLF: 125.0983987778016
Iteration: 9, Func. Count: 107, Neg. LLF: 124.75434539254229
Iteration: 10, Func. Count: 119, Neg. LLF: 124.69509906755611
Iteration: 11, Func. Count: 130, Neg. LLF: 124.69484746756416
Iteration: 12, Func. Count: 141, Neg. LLF: 124.69481799476098
Iteration: 13, Func. Count: 152, Neg. LLF: 124.69480518013359
Iteration: 14, Func. Count: 163, Neg. LLF: 124.69479723707667
Iteration: 15, Func. Count: 174, Neg. LLF: 124.69479552105288
Iteration: 16, Func. Count: 184, Neg. LLF: 124.69479557192724
Optimization terminated successfully (Exit mode 0)
Current function value: 124.69479552105288
Iterations: 16
Function evaluations: 184
Gradient evaluations: 16
Iteration: 1, Func. Count: 9, Neg. LLF: 134.75578941571843
Iteration: 2, Func. Count: 18, Neg. LLF: 145.59368309252122
Iteration: 3, Func. Count: 27, Neg. LLF: 126.02705652956989
Iteration: 4, Func. Count: 35, Neg. LLF: 6542.4295424330585
Iteration: 5, Func. Count: 44, Neg. LLF: 126.38304142884589
Iteration: 6, Func. Count: 53, Neg. LLF: 125.48700190867378
Iteration: 7, Func. Count: 61, Neg. LLF: 125.49386703911523
Iteration: 8, Func. Count: 70, Neg. LLF: 125.44362815372901
Iteration: 9, Func. Count: 78, Neg. LLF: 125.44161601636303
Iteration: 10, Func. Count: 86, Neg. LLF: 125.44106499638733
Iteration: 11, Func. Count: 94, Neg. LLF: 125.44097789459842
Iteration: 12, Func. Count: 102, Neg. LLF: 125.44097497438663
Iteration: 13, Func. Count: 109, Neg. LLF: 125.44097503082058
Optimization terminated successfully (Exit mode 0)
Current function value: 125.44097497438663
Iterations: 13
Function evaluations: 109
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 2788579.8975414056
Iteration: 2, Func. Count: 20, Neg. LLF: 152.22595138661188
Iteration: 3, Func. Count: 30, Neg. LLF: 127.7878114469185
Iteration: 4, Func. Count: 40, Neg. LLF: 127.35797835657822
Iteration: 5, Func. Count: 50, Neg. LLF: 125.20997777435448
Iteration: 6, Func. Count: 59, Neg. LLF: 125.16104818212575
Iteration: 7, Func. Count: 68, Neg. LLF: 125.10224051658192
Iteration: 8, Func. Count: 77, Neg. LLF: 125.1310778545961
Iteration: 9, Func. Count: 87, Neg. LLF: 125.08079509316826
Iteration: 10, Func. Count: 96, Neg. LLF: 125.07955743335005
Iteration: 11, Func. Count: 105, Neg. LLF: 125.0792847000609
Iteration: 12, Func. Count: 114, Neg. LLF: 125.07927819479708
Iteration: 13, Func. Count: 122, Neg. LLF: 125.07927819477092
Optimization terminated successfully (Exit mode 0)
Current function value: 125.07927819479708
Iterations: 13
Function evaluations: 122
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 5246728.988839541
Iteration: 2, Func. Count: 22, Neg. LLF: 134.09988446431439
Iteration: 3, Func. Count: 33, Neg. LLF: 131.53670934627485
Iteration: 4, Func. Count: 44, Neg. LLF: 126.10893982852822
Iteration: 5, Func. Count: 55, Neg. LLF: 124.90276245201218
Iteration: 6, Func. Count: 65, Neg. LLF: 125.37930951247021
Iteration: 7, Func. Count: 76, Neg. LLF: 125.16429180921637
Iteration: 8, Func. Count: 87, Neg. LLF: 124.93453900969726
Iteration: 9, Func. Count: 98, Neg. LLF: 124.7962022882972
Iteration: 10, Func. Count: 108, Neg. LLF: 124.79561758623025
Iteration: 11, Func. Count: 118, Neg. LLF: 124.79550666202648
Iteration: 12, Func. Count: 128, Neg. LLF: 124.79544516525276
Iteration: 13, Func. Count: 138, Neg. LLF: 124.79544379475237
Iteration: 14, Func. Count: 147, Neg. LLF: 124.79544379468568
Optimization terminated successfully (Exit mode 0)
Current function value: 124.79544379475237
Iterations: 14
Function evaluations: 147
Gradient evaluations: 14
Iteration: 1, Func. Count: 12, Neg. LLF: 5160748.249433457
Iteration: 2, Func. Count: 24, Neg. LLF: 147.699680898326
Iteration: 3, Func. Count: 36, Neg. LLF: 208.56986770779562
Iteration: 4, Func. Count: 48, Neg. LLF: 129.41370989954234
Iteration: 5, Func. Count: 60, Neg. LLF: 126.56182783998983
Iteration: 6, Func. Count: 72, Neg. LLF: 127.3927020750977
Iteration: 7, Func. Count: 84, Neg. LLF: 124.81452195605709
Iteration: 8, Func. Count: 95, Neg. LLF: 125.28076777361782
Iteration: 9, Func. Count: 107, Neg. LLF: 124.75194963740365
Iteration: 10, Func. Count: 119, Neg. LLF: 124.69554691024915
Iteration: 11, Func. Count: 130, Neg. LLF: 124.69502833546557
Iteration: 12, Func. Count: 141, Neg. LLF: 124.69487611539242
Iteration: 13, Func. Count: 152, Neg. LLF: 124.69482294288437
Iteration: 14, Func. Count: 163, Neg. LLF: 124.69480304457474
Iteration: 15, Func. Count: 174, Neg. LLF: 124.6947961630336
Iteration: 16, Func. Count: 185, Neg. LLF: 124.69479540036969
Optimization terminated successfully (Exit mode 0)
Current function value: 124.69479540036969
Iterations: 16
Function evaluations: 185
Gradient evaluations: 16
Iteration: 1, Func. Count: 13, Neg. LLF: 20941639.03135349
Iteration: 2, Func. Count: 26, Neg. LLF: 178.6064796463717
Iteration: 3, Func. Count: 39, Neg. LLF: 228.12763767125696
Iteration: 4, Func. Count: 52, Neg. LLF: 125.2356014610925
Iteration: 5, Func. Count: 64, Neg. LLF: 143.41951424208267
Iteration: 6, Func. Count: 77, Neg. LLF: 126.23393746933385
Iteration: 7, Func. Count: 90, Neg. LLF: 126.31600908464678
Iteration: 8, Func. Count: 104, Neg. LLF: 124.71402106746436
Iteration: 9, Func. Count: 116, Neg. LLF: 124.7149751161721
Iteration: 10, Func. Count: 129, Neg. LLF: 124.69845249034883
Iteration: 11, Func. Count: 141, Neg. LLF: 124.69519695476623
Iteration: 12, Func. Count: 153, Neg. LLF: 124.69486697285583
Iteration: 13, Func. Count: 165, Neg. LLF: 124.69479849018892
Iteration: 14, Func. Count: 177, Neg. LLF: 124.69479676446545
Iteration: 15, Func. Count: 189, Neg. LLF: 124.69479576693627
Optimization terminated successfully (Exit mode 0)
Current function value: 124.69479576693627
Iterations: 15
Function evaluations: 189
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 132.0805285232161
Iteration: 2, Func. Count: 20, Neg. LLF: 149.2603077513202
Iteration: 3, Func. Count: 30, Neg. LLF: 125.99349578963853
Iteration: 4, Func. Count: 39, Neg. LLF: 2607.1549920532025
Iteration: 5, Func. Count: 49, Neg. LLF: 2472569.5685129897
Iteration: 6, Func. Count: 59, Neg. LLF: 3289.169744718964
Iteration: 7, Func. Count: 69, Neg. LLF: 125.22527887736832
Iteration: 8, Func. Count: 78, Neg. LLF: 125.16764452349175
Iteration: 9, Func. Count: 87, Neg. LLF: 125.15186668166157
Iteration: 10, Func. Count: 97, Neg. LLF: 125.11849797912775
Iteration: 11, Func. Count: 106, Neg. LLF: 125.11775421447281
Iteration: 12, Func. Count: 115, Neg. LLF: 125.11715056962117
Iteration: 13, Func. Count: 124, Neg. LLF: 125.11712872456603
Iteration: 14, Func. Count: 133, Neg. LLF: 125.11712449160879
Iteration: 15, Func. Count: 141, Neg. LLF: 125.11712449164447
Optimization terminated successfully (Exit mode 0)
Current function value: 125.11712449160879
Iterations: 15
Function evaluations: 141
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 19652794.10398533
Iteration: 2, Func. Count: 22, Neg. LLF: 240.8284206140395
Iteration: 3, Func. Count: 33, Neg. LLF: 147.89589500440235
Iteration: 4, Func. Count: 44, Neg. LLF: 148.9527836363643
Iteration: 5, Func. Count: 55, Neg. LLF: 125.76420403803051
Iteration: 6, Func. Count: 66, Neg. LLF: 125.11640905991277
Iteration: 7, Func. Count: 76, Neg. LLF: 125.12701812060276
Iteration: 8, Func. Count: 87, Neg. LLF: 125.08605294262608
Iteration: 9, Func. Count: 97, Neg. LLF: 125.08257602513308
Iteration: 10, Func. Count: 107, Neg. LLF: 125.08024365057653
Iteration: 11, Func. Count: 117, Neg. LLF: 125.07955877139128
Iteration: 12, Func. Count: 127, Neg. LLF: 125.07936579964075
Iteration: 13, Func. Count: 137, Neg. LLF: 125.07931161657943
Iteration: 14, Func. Count: 147, Neg. LLF: 125.07928098638284
Iteration: 15, Func. Count: 157, Neg. LLF: 125.07927817247055
Iteration: 16, Func. Count: 166, Neg. LLF: 125.07927817243048
Optimization terminated successfully (Exit mode 0)
Current function value: 125.07927817247055
Iterations: 16
Function evaluations: 166
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 5188020.1440732125
Iteration: 2, Func. Count: 24, Neg. LLF: 131.4829074880814
Iteration: 3, Func. Count: 36, Neg. LLF: 143.24599494607875
Iteration: 4, Func. Count: 48, Neg. LLF: 125.03750963958514
Iteration: 5, Func. Count: 59, Neg. LLF: 129.2147662192573
Iteration: 6, Func. Count: 72, Neg. LLF: 126.29493169272759
Iteration: 7, Func. Count: 85, Neg. LLF: 126.30102483796172
Iteration: 8, Func. Count: 97, Neg. LLF: 124.8691876759917
Iteration: 9, Func. Count: 109, Neg. LLF: 124.82864573059875
Iteration: 10, Func. Count: 121, Neg. LLF: 124.79094005802487
Iteration: 11, Func. Count: 132, Neg. LLF: 124.78843067929493
Iteration: 12, Func. Count: 143, Neg. LLF: 124.78784436748472
Iteration: 13, Func. Count: 154, Neg. LLF: 124.78764767933852
Iteration: 14, Func. Count: 165, Neg. LLF: 124.78764128707702
Iteration: 15, Func. Count: 175, Neg. LLF: 124.78764128704982
Optimization terminated successfully (Exit mode 0)
Current function value: 124.78764128707702
Iterations: 15
Function evaluations: 175
Gradient evaluations: 15
Iteration: 1, Func. Count: 13, Neg. LLF: 21602119.8856847
Iteration: 2, Func. Count: 26, Neg. LLF: 165.91627350688012
Iteration: 3, Func. Count: 39, Neg. LLF: 214.38669936831403
Iteration: 4, Func. Count: 52, Neg. LLF: 129.3332837456197
Iteration: 5, Func. Count: 65, Neg. LLF: 126.17365137632642
Iteration: 6, Func. Count: 78, Neg. LLF: 127.88800171357467
Iteration: 7, Func. Count: 91, Neg. LLF: 124.83684276228854
Iteration: 8, Func. Count: 103, Neg. LLF: 125.47109630128753
Iteration: 9, Func. Count: 116, Neg. LLF: 124.72584110620944
Iteration: 10, Func. Count: 128, Neg. LLF: 124.69610476022214
Iteration: 11, Func. Count: 140, Neg. LLF: 124.69504941121424
Iteration: 12, Func. Count: 152, Neg. LLF: 124.69486288967866
Iteration: 13, Func. Count: 164, Neg. LLF: 124.69480097733994
Iteration: 14, Func. Count: 176, Neg. LLF: 124.69479744204311
Iteration: 15, Func. Count: 188, Neg. LLF: 124.69479595029557
Iteration: 16, Func. Count: 199, Neg. LLF: 124.69479595030792
Optimization terminated successfully (Exit mode 0)
Current function value: 124.69479595029557
Iterations: 16
Function evaluations: 199
Gradient evaluations: 16
Iteration: 1, Func. Count: 14, Neg. LLF: 20800358.418620076
Iteration: 2, Func. Count: 28, Neg. LLF: 159.18652273675437
Iteration: 3, Func. Count: 42, Neg. LLF: 215.33861864343396
Iteration: 4, Func. Count: 56, Neg. LLF: 124.94499400771551
Iteration: 5, Func. Count: 69, Neg. LLF: 127.01991364978456
Iteration: 6, Func. Count: 83, Neg. LLF: 127.42012839685194
Iteration: 7, Func. Count: 98, Neg. LLF: 125.02066286552478
Iteration: 8, Func. Count: 112, Neg. LLF: 125.355764882139
Iteration: 9, Func. Count: 126, Neg. LLF: 124.69642377165374
Iteration: 10, Func. Count: 139, Neg. LLF: 124.69651340719611
Iteration: 11, Func. Count: 153, Neg. LLF: 124.69504983504224
Iteration: 12, Func. Count: 166, Neg. LLF: 124.69488385915973
Iteration: 13, Func. Count: 179, Neg. LLF: 124.69484720770426
Iteration: 14, Func. Count: 192, Neg. LLF: 124.69480025268871
Iteration: 15, Func. Count: 205, Neg. LLF: 124.69479563226021
Iteration: 16, Func. Count: 217, Neg. LLF: 124.69479568320538
Optimization terminated successfully (Exit mode 0)
Current function value: 124.69479563226021
Iterations: 16
Function evaluations: 217
Gradient evaluations: 16
Iteration: 1, Func. Count: 7, Neg. LLF: 129.9567593573458
Iteration: 2, Func. Count: 14, Neg. LLF: 155.5972055237765
Iteration: 3, Func. Count: 21, Neg. LLF: 126.05533531731898
Iteration: 4, Func. Count: 27, Neg. LLF: 142.6067230653923
Iteration: 5, Func. Count: 34, Neg. LLF: 172.82237029028738
Iteration: 6, Func. Count: 41, Neg. LLF: 155.3775456217963
Iteration: 7, Func. Count: 48, Neg. LLF: 124.93964379592099
Iteration: 8, Func. Count: 54, Neg. LLF: 124.81375124363466
Iteration: 9, Func. Count: 60, Neg. LLF: 124.82939881162743
Iteration: 10, Func. Count: 67, Neg. LLF: 124.79015929258672
Iteration: 11, Func. Count: 73, Neg. LLF: 124.78822751579152
Iteration: 12, Func. Count: 79, Neg. LLF: 124.78758340419827
Iteration: 13, Func. Count: 85, Neg. LLF: 124.7873658679189
Iteration: 14, Func. Count: 91, Neg. LLF: 124.78734063747243
Iteration: 15, Func. Count: 97, Neg. LLF: 124.78733945708018
Iteration: 16, Func. Count: 102, Neg. LLF: 124.78733945709308
Optimization terminated successfully (Exit mode 0)
Current function value: 124.78733945708018
Iterations: 16
Function evaluations: 102
Gradient evaluations: 16
Iteration: 1, Func. Count: 8, Neg. LLF: 17400939.83497917
Iteration: 2, Func. Count: 16, Neg. LLF: 163.22216004330326
Iteration: 3, Func. Count: 24, Neg. LLF: 135.57632611947807
Iteration: 4, Func. Count: 32, Neg. LLF: 125.01054286338024
Iteration: 5, Func. Count: 39, Neg. LLF: 125.50332559685829
Iteration: 6, Func. Count: 47, Neg. LLF: 126.22355072023957
Iteration: 7, Func. Count: 55, Neg. LLF: 124.7191073051703
Iteration: 8, Func. Count: 62, Neg. LLF: 124.71046100575617
Iteration: 9, Func. Count: 69, Neg. LLF: 124.70782859585539
Iteration: 10, Func. Count: 76, Neg. LLF: 124.70673254920601
Iteration: 11, Func. Count: 83, Neg. LLF: 124.7067039957132
Iteration: 12, Func. Count: 90, Neg. LLF: 124.70669671900981
Iteration: 13, Func. Count: 97, Neg. LLF: 124.70667712472583
Iteration: 14, Func. Count: 104, Neg. LLF: 124.7066759088359
Iteration: 15, Func. Count: 110, Neg. LLF: 124.70667590885242
Optimization terminated successfully (Exit mode 0)
Current function value: 124.7066759088359
Iterations: 15
Function evaluations: 110
Gradient evaluations: 15
Iteration: 1, Func. Count: 9, Neg. LLF: 16449762.698998949
Iteration: 2, Func. Count: 18, Neg. LLF: 180.62879601702775
Iteration: 3, Func. Count: 27, Neg. LLF: 128.14772065050815
Iteration: 4, Func. Count: 36, Neg. LLF: 129.65090777572266
Iteration: 5, Func. Count: 45, Neg. LLF: 125.06816602147369
Iteration: 6, Func. Count: 53, Neg. LLF: 126.05571008347192
Iteration: 7, Func. Count: 62, Neg. LLF: 125.10322132516959
Iteration: 8, Func. Count: 71, Neg. LLF: 124.73512504491426
Iteration: 9, Func. Count: 79, Neg. LLF: 124.70926771334517
Iteration: 10, Func. Count: 87, Neg. LLF: 124.70774176529454
Iteration: 11, Func. Count: 95, Neg. LLF: 124.70748446975638
Iteration: 12, Func. Count: 103, Neg. LLF: 124.70674039673705
Iteration: 13, Func. Count: 111, Neg. LLF: 124.70667604830827
Iteration: 14, Func. Count: 118, Neg. LLF: 124.70667605187937
Optimization terminated successfully (Exit mode 0)
Current function value: 124.70667604830827
Iterations: 14
Function evaluations: 118
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 16173344.39547641
Iteration: 2, Func. Count: 20, Neg. LLF: 165.13322347509643
Iteration: 3, Func. Count: 30, Neg. LLF: 126.11157393609587
Iteration: 4, Func. Count: 40, Neg. LLF: 136.47450814794772
Iteration: 5, Func. Count: 50, Neg. LLF: 124.87577008827013
Iteration: 6, Func. Count: 59, Neg. LLF: 130.29768016543025
Iteration: 7, Func. Count: 69, Neg. LLF: 124.88346072460696
Iteration: 8, Func. Count: 79, Neg. LLF: 124.68727363147188
Iteration: 9, Func. Count: 88, Neg. LLF: 124.70253333474245
Iteration: 10, Func. Count: 98, Neg. LLF: 124.66649206590333
Iteration: 11, Func. Count: 107, Neg. LLF: 124.66343034390664
Iteration: 12, Func. Count: 116, Neg. LLF: 124.66142869483299
Iteration: 13, Func. Count: 125, Neg. LLF: 124.65923209549007
Iteration: 14, Func. Count: 134, Neg. LLF: 124.65865874323593
Iteration: 15, Func. Count: 143, Neg. LLF: 124.6584856929802
Iteration: 16, Func. Count: 152, Neg. LLF: 124.65844026449827
Iteration: 17, Func. Count: 161, Neg. LLF: 124.65843321530792
Iteration: 18, Func. Count: 169, Neg. LLF: 124.65843321540365
Optimization terminated successfully (Exit mode 0)
Current function value: 124.65843321530792
Iterations: 18
Function evaluations: 169
Gradient evaluations: 18
Iteration: 1, Func. Count: 11, Neg. LLF: 16111252.827427058
Iteration: 2, Func. Count: 22, Neg. LLF: 142.84585884019762
Iteration: 3, Func. Count: 33, Neg. LLF: 125.66381962365685
Iteration: 4, Func. Count: 43, Neg. LLF: 128.03613020787358
Iteration: 5, Func. Count: 54, Neg. LLF: 131.39247382634503
Iteration: 6, Func. Count: 65, Neg. LLF: 125.03948199184589
Iteration: 7, Func. Count: 76, Neg. LLF: 124.85348490685463
Iteration: 8, Func. Count: 87, Neg. LLF: 124.95474292156068
Iteration: 9, Func. Count: 98, Neg. LLF: 124.67581073697964
Iteration: 10, Func. Count: 108, Neg. LLF: 124.66311428147829
Iteration: 11, Func. Count: 118, Neg. LLF: 124.6597067465796
Iteration: 12, Func. Count: 128, Neg. LLF: 124.65861536582922
Iteration: 13, Func. Count: 138, Neg. LLF: 124.65850537434368
Iteration: 14, Func. Count: 148, Neg. LLF: 124.65846047860272
Iteration: 15, Func. Count: 158, Neg. LLF: 124.65843838419671
Iteration: 16, Func. Count: 168, Neg. LLF: 124.65843301041126
Iteration: 17, Func. Count: 177, Neg. LLF: 124.65843304562118
Optimization terminated successfully (Exit mode 0)
Current function value: 124.65843301041126
Iterations: 17
Function evaluations: 177
Gradient evaluations: 17
Iteration: 1, Func. Count: 8, Neg. LLF: 137.3672425423125
Iteration: 2, Func. Count: 16, Neg. LLF: 130.99946761226312
Iteration: 3, Func. Count: 24, Neg. LLF: 129.31644644821785
Iteration: 4, Func. Count: 32, Neg. LLF: 127.01450783949453
Iteration: 5, Func. Count: 40, Neg. LLF: 168.2730130415649
Iteration: 6, Func. Count: 48, Neg. LLF: 148.08190809360968
Iteration: 7, Func. Count: 56, Neg. LLF: 125.09564275890332
Iteration: 8, Func. Count: 64, Neg. LLF: 124.71966441608309
Iteration: 9, Func. Count: 71, Neg. LLF: 124.71076693828344
Iteration: 10, Func. Count: 78, Neg. LLF: 124.71019580124945
Iteration: 11, Func. Count: 85, Neg. LLF: 124.71016934700712
Iteration: 12, Func. Count: 92, Neg. LLF: 124.71016364587284
Iteration: 13, Func. Count: 98, Neg. LLF: 124.71016364585428
Optimization terminated successfully (Exit mode 0)
Current function value: 124.71016364587284
Iterations: 13
Function evaluations: 98
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 5032968.4695024295
Iteration: 2, Func. Count: 18, Neg. LLF: 132.7117038612751
Iteration: 3, Func. Count: 27, Neg. LLF: 127.31068931051398
Iteration: 4, Func. Count: 36, Neg. LLF: 140.9867899520018
Iteration: 5, Func. Count: 45, Neg. LLF: 125.51723914698375
Iteration: 6, Func. Count: 54, Neg. LLF: 124.97434151093228
Iteration: 7, Func. Count: 63, Neg. LLF: 124.76325442313262
Iteration: 8, Func. Count: 72, Neg. LLF: 124.6688310166246
Iteration: 9, Func. Count: 80, Neg. LLF: 124.66748899901954
Iteration: 10, Func. Count: 88, Neg. LLF: 124.66664753759643
Iteration: 11, Func. Count: 96, Neg. LLF: 124.66578312360443
Iteration: 12, Func. Count: 104, Neg. LLF: 124.66558408045998
Iteration: 13, Func. Count: 112, Neg. LLF: 124.66552745758693
Iteration: 14, Func. Count: 120, Neg. LLF: 124.6655208404646
Iteration: 15, Func. Count: 127, Neg. LLF: 124.66552084047186
Optimization terminated successfully (Exit mode 0)
Current function value: 124.6655208404646
Iterations: 15
Function evaluations: 127
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 5277851.938831428
Iteration: 2, Func. Count: 20, Neg. LLF: 139.79860510800293
Iteration: 3, Func. Count: 30, Neg. LLF: 134.26464023139505
Iteration: 4, Func. Count: 40, Neg. LLF: 129.29334344961237
Iteration: 5, Func. Count: 50, Neg. LLF: 126.23824324497082
Iteration: 6, Func. Count: 60, Neg. LLF: 124.80911983473182
Iteration: 7, Func. Count: 69, Neg. LLF: 124.81492107362422
Iteration: 8, Func. Count: 79, Neg. LLF: 124.88645618386684
Iteration: 9, Func. Count: 89, Neg. LLF: 124.68268863948785
Iteration: 10, Func. Count: 98, Neg. LLF: 124.66922425631756
Iteration: 11, Func. Count: 107, Neg. LLF: 124.66704211428143
Iteration: 12, Func. Count: 116, Neg. LLF: 124.66585713915823
Iteration: 13, Func. Count: 125, Neg. LLF: 124.66566841424954
Iteration: 14, Func. Count: 134, Neg. LLF: 124.66552422209637
Iteration: 15, Func. Count: 143, Neg. LLF: 124.66552072384317
Iteration: 16, Func. Count: 151, Neg. LLF: 124.66552072686821
Optimization terminated successfully (Exit mode 0)
Current function value: 124.66552072384317
Iterations: 16
Function evaluations: 151
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 20493695.29402686
Iteration: 2, Func. Count: 22, Neg. LLF: 179.220488050568
Iteration: 3, Func. Count: 33, Neg. LLF: 237.5158693373975
Iteration: 4, Func. Count: 44, Neg. LLF: 133.90188914440432
Iteration: 5, Func. Count: 55, Neg. LLF: 125.01011994657125
Iteration: 6, Func. Count: 65, Neg. LLF: 125.21049158459519
Iteration: 7, Func. Count: 76, Neg. LLF: 125.38569499221357
Iteration: 8, Func. Count: 87, Neg. LLF: 124.69071795872554
Iteration: 9, Func. Count: 97, Neg. LLF: 124.77098408804729
Iteration: 10, Func. Count: 108, Neg. LLF: 124.66275694706503
Iteration: 11, Func. Count: 119, Neg. LLF: 124.65371855821442
Iteration: 12, Func. Count: 129, Neg. LLF: 124.6520884513261
Iteration: 13, Func. Count: 139, Neg. LLF: 124.65166328485233
Iteration: 14, Func. Count: 149, Neg. LLF: 124.65145657004994
Iteration: 15, Func. Count: 159, Neg. LLF: 124.65136949697376
Iteration: 16, Func. Count: 169, Neg. LLF: 124.65134849990373
Iteration: 17, Func. Count: 179, Neg. LLF: 124.65134440565217
Iteration: 18, Func. Count: 189, Neg. LLF: 124.65133945825141
Iteration: 19, Func. Count: 198, Neg. LLF: 124.6513394581894
Optimization terminated successfully (Exit mode 0)
Current function value: 124.65133945825141
Iterations: 19
Function evaluations: 198
Gradient evaluations: 19
Iteration: 1, Func. Count: 12, Neg. LLF: 19371206.221591856
Iteration: 2, Func. Count: 24, Neg. LLF: 170.81427740847008
Iteration: 3, Func. Count: 36, Neg. LLF: 243.56083158581023
Iteration: 4, Func. Count: 49, Neg. LLF: 134.23449808920608
Iteration: 5, Func. Count: 61, Neg. LLF: 124.85627593884122
Iteration: 6, Func. Count: 72, Neg. LLF: 125.4826138842482
Iteration: 7, Func. Count: 84, Neg. LLF: 124.80231598620884
Iteration: 8, Func. Count: 96, Neg. LLF: 124.75005095922994
Iteration: 9, Func. Count: 108, Neg. LLF: 124.65922425999403
Iteration: 10, Func. Count: 119, Neg. LLF: 124.65437074705231
Iteration: 11, Func. Count: 130, Neg. LLF: 124.65346478807307
Iteration: 12, Func. Count: 141, Neg. LLF: 124.65223224482365
Iteration: 13, Func. Count: 152, Neg. LLF: 124.65175396404365
Iteration: 14, Func. Count: 163, Neg. LLF: 124.6513732133996
Iteration: 15, Func. Count: 174, Neg. LLF: 124.65134201527256
Iteration: 16, Func. Count: 185, Neg. LLF: 124.65133914991848
Iteration: 17, Func. Count: 195, Neg. LLF: 124.65133918389283
Optimization terminated successfully (Exit mode 0)
Current function value: 124.65133914991848
Iterations: 17
Function evaluations: 195
Gradient evaluations: 17
Iteration: 1, Func. Count: 9, Neg. LLF: 138.86193514546866
Iteration: 2, Func. Count: 18, Neg. LLF: 128.65958472263225
Iteration: 3, Func. Count: 27, Neg. LLF: 127.80148542224475
Iteration: 4, Func. Count: 36, Neg. LLF: 137.7788070651598
Iteration: 5, Func. Count: 45, Neg. LLF: 128.27358203993947
Iteration: 6, Func. Count: 54, Neg. LLF: 608.6033856207617
Iteration: 7, Func. Count: 63, Neg. LLF: 129.1849006621031
Iteration: 8, Func. Count: 72, Neg. LLF: 126.22623548504637
Iteration: 9, Func. Count: 81, Neg. LLF: 124.72795433096496
Iteration: 10, Func. Count: 89, Neg. LLF: 124.71441467825535
Iteration: 11, Func. Count: 97, Neg. LLF: 124.71100925640692
Iteration: 12, Func. Count: 105, Neg. LLF: 124.71022635648805
Iteration: 13, Func. Count: 113, Neg. LLF: 124.7101784209851
Iteration: 14, Func. Count: 121, Neg. LLF: 124.71016694130248
Iteration: 15, Func. Count: 129, Neg. LLF: 124.7101635187388
Iteration: 16, Func. Count: 136, Neg. LLF: 124.71016350284788
Optimization terminated successfully (Exit mode 0)
Current function value: 124.7101635187388
Iterations: 16
Function evaluations: 136
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 2741016.9989520838
Iteration: 2, Func. Count: 20, Neg. LLF: 136.8656183744406
Iteration: 3, Func. Count: 30, Neg. LLF: 126.43522105094054
Iteration: 4, Func. Count: 40, Neg. LLF: 127.84854112735799
Iteration: 5, Func. Count: 50, Neg. LLF: 130.56407410425112
Iteration: 6, Func. Count: 60, Neg. LLF: 124.80129206255916
Iteration: 7, Func. Count: 69, Neg. LLF: 124.69220907364634
Iteration: 8, Func. Count: 78, Neg. LLF: 124.66982591886439
Iteration: 9, Func. Count: 87, Neg. LLF: 124.66641569604889
Iteration: 10, Func. Count: 96, Neg. LLF: 124.66578056545355
Iteration: 11, Func. Count: 105, Neg. LLF: 124.6656295170133
Iteration: 12, Func. Count: 114, Neg. LLF: 124.66554138381755
Iteration: 13, Func. Count: 123, Neg. LLF: 124.66552926009597
Iteration: 14, Func. Count: 132, Neg. LLF: 124.66552125201521
Iteration: 15, Func. Count: 141, Neg. LLF: 124.66552053209102
Optimization terminated successfully (Exit mode 0)
Current function value: 124.66552053209102
Iterations: 15
Function evaluations: 141
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 5241179.421124146
Iteration: 2, Func. Count: 22, Neg. LLF: 132.70322320335057
Iteration: 3, Func. Count: 33, Neg. LLF: 139.1849752253157
Iteration: 4, Func. Count: 44, Neg. LLF: 127.81208308596361
Iteration: 5, Func. Count: 55, Neg. LLF: 125.23630563395785
Iteration: 6, Func. Count: 66, Neg. LLF: 124.75347807674471
Iteration: 7, Func. Count: 76, Neg. LLF: 124.8012122948007
Iteration: 8, Func. Count: 87, Neg. LLF: 124.90925233808977
Iteration: 9, Func. Count: 98, Neg. LLF: 124.68084471019058
Iteration: 10, Func. Count: 108, Neg. LLF: 124.67201710300189
Iteration: 11, Func. Count: 118, Neg. LLF: 124.66842344746198
Iteration: 12, Func. Count: 128, Neg. LLF: 124.66583374476815
Iteration: 13, Func. Count: 138, Neg. LLF: 124.66568226422766
Iteration: 14, Func. Count: 148, Neg. LLF: 124.66553829378229
Iteration: 15, Func. Count: 158, Neg. LLF: 124.66552321167411
Iteration: 16, Func. Count: 168, Neg. LLF: 124.66552055231729
Iteration: 17, Func. Count: 177, Neg. LLF: 124.66552055542384
Optimization terminated successfully (Exit mode 0)
Current function value: 124.66552055231729
Iterations: 17
Function evaluations: 177
Gradient evaluations: 17
Iteration: 1, Func. Count: 12, Neg. LLF: 20367263.602630064
Iteration: 2, Func. Count: 24, Neg. LLF: 151.36840700813184
Iteration: 3, Func. Count: 36, Neg. LLF: 220.8465462251516
Iteration: 4, Func. Count: 48, Neg. LLF: 126.89439642667662
Iteration: 5, Func. Count: 60, Neg. LLF: 126.79384231072166
Iteration: 6, Func. Count: 72, Neg. LLF: 124.79079702942892
Iteration: 7, Func. Count: 83, Neg. LLF: 124.70401946138482
Iteration: 8, Func. Count: 94, Neg. LLF: 125.25204248685539
Iteration: 9, Func. Count: 107, Neg. LLF: 124.68517268155485
Iteration: 10, Func. Count: 119, Neg. LLF: 124.63925200613
Iteration: 11, Func. Count: 130, Neg. LLF: 124.63733792826706
Iteration: 12, Func. Count: 141, Neg. LLF: 124.637063132637
Iteration: 13, Func. Count: 152, Neg. LLF: 124.63701200017083
Iteration: 14, Func. Count: 163, Neg. LLF: 124.63699760178216
Iteration: 15, Func. Count: 174, Neg. LLF: 124.63699546381304
Iteration: 16, Func. Count: 185, Neg. LLF: 124.63699402943112
Iteration: 17, Func. Count: 195, Neg. LLF: 124.63699402936041
Optimization terminated successfully (Exit mode 0)
Current function value: 124.63699402943112
Iterations: 17
Function evaluations: 195
Gradient evaluations: 17
Iteration: 1, Func. Count: 13, Neg. LLF: 19531735.808988467
Iteration: 2, Func. Count: 26, Neg. LLF: 173.64843842672084
Iteration: 3, Func. Count: 39, Neg. LLF: 216.1995671445655
Iteration: 4, Func. Count: 52, Neg. LLF: 135.60216198909666
Iteration: 5, Func. Count: 65, Neg. LLF: 127.77772022357973
Iteration: 6, Func. Count: 78, Neg. LLF: 124.94328689587053
Iteration: 7, Func. Count: 90, Neg. LLF: 124.90189928150573
Iteration: 8, Func. Count: 103, Neg. LLF: 124.96859746970128
Iteration: 9, Func. Count: 116, Neg. LLF: 124.7114044069046
Iteration: 10, Func. Count: 129, Neg. LLF: 124.67245549843597
Iteration: 11, Func. Count: 142, Neg. LLF: 124.64089421771911
Iteration: 12, Func. Count: 154, Neg. LLF: 124.63922672356541
Iteration: 13, Func. Count: 166, Neg. LLF: 124.63826390173014
Iteration: 14, Func. Count: 178, Neg. LLF: 124.63732735301208
Iteration: 15, Func. Count: 190, Neg. LLF: 124.63708067780479
Iteration: 16, Func. Count: 202, Neg. LLF: 124.63701378795217
Iteration: 17, Func. Count: 214, Neg. LLF: 124.6369986479845
Iteration: 18, Func. Count: 226, Neg. LLF: 124.63699478283549
Iteration: 19, Func. Count: 238, Neg. LLF: 124.63699394066587
Optimization terminated successfully (Exit mode 0)
Current function value: 124.63699394066587
Iterations: 19
Function evaluations: 238
Gradient evaluations: 19
Iteration: 1, Func. Count: 10, Neg. LLF: 142.12162186566928
Iteration: 2, Func. Count: 20, Neg. LLF: 128.01722709853425
Iteration: 3, Func. Count: 30, Neg. LLF: 126.97680349452445
Iteration: 4, Func. Count: 40, Neg. LLF: 132.0233514315512
Iteration: 5, Func. Count: 50, Neg. LLF: 169.3174415231013
Iteration: 6, Func. Count: 60, Neg. LLF: 372.53720597977286
Iteration: 7, Func. Count: 70, Neg. LLF: 132.91139385905393
Iteration: 8, Func. Count: 80, Neg. LLF: 125.10412578872072
Iteration: 9, Func. Count: 90, Neg. LLF: 124.47019470381906
Iteration: 10, Func. Count: 99, Neg. LLF: 124.46017666487143
Iteration: 11, Func. Count: 108, Neg. LLF: 124.45342591492184
Iteration: 12, Func. Count: 117, Neg. LLF: 124.44372066657183
Iteration: 13, Func. Count: 126, Neg. LLF: 124.13363600960898
Iteration: 14, Func. Count: 135, Neg. LLF: 124.04901848312021
Iteration: 15, Func. Count: 144, Neg. LLF: 123.9886687311446
Iteration: 16, Func. Count: 153, Neg. LLF: 123.97892216537564
Iteration: 17, Func. Count: 162, Neg. LLF: 123.97151203024751
Iteration: 18, Func. Count: 171, Neg. LLF: 123.96606336770658
Iteration: 19, Func. Count: 180, Neg. LLF: 123.96268953253053
Iteration: 20, Func. Count: 189, Neg. LLF: 123.96267389394058
Iteration: 21, Func. Count: 198, Neg. LLF: 123.96267241370167
Iteration: 22, Func. Count: 206, Neg. LLF: 123.96267254492948
Optimization terminated successfully (Exit mode 0)
Current function value: 123.96267241370167
Iterations: 23
Function evaluations: 206
Gradient evaluations: 22
Iteration: 1, Func. Count: 11, Neg. LLF: 802418.7967307089
Iteration: 2, Func. Count: 22, Neg. LLF: 707.9954216719195
Iteration: 3, Func. Count: 33, Neg. LLF: 137.9661355336052
Iteration: 4, Func. Count: 44, Neg. LLF: 125.29698787666543
Iteration: 5, Func. Count: 55, Neg. LLF: 127.4418917228157
Iteration: 6, Func. Count: 66, Neg. LLF: 124.74876139668419
Iteration: 7, Func. Count: 77, Neg. LLF: 124.09143703621068
Iteration: 8, Func. Count: 87, Neg. LLF: 123.99583901967769
Iteration: 9, Func. Count: 97, Neg. LLF: 123.91478144936704
Iteration: 10, Func. Count: 107, Neg. LLF: 123.88927384566104
Iteration: 11, Func. Count: 117, Neg. LLF: 123.85191961607237
Iteration: 12, Func. Count: 127, Neg. LLF: 123.82948870930558
Iteration: 13, Func. Count: 137, Neg. LLF: 123.81909570541158
Iteration: 14, Func. Count: 147, Neg. LLF: 123.81803293839025
Iteration: 15, Func. Count: 157, Neg. LLF: 123.81782780031813
Iteration: 16, Func. Count: 167, Neg. LLF: 123.81776582198808
Iteration: 17, Func. Count: 177, Neg. LLF: 123.8177511939502
Iteration: 18, Func. Count: 187, Neg. LLF: 123.81774887843669
Iteration: 19, Func. Count: 196, Neg. LLF: 123.81774887843476
Optimization terminated successfully (Exit mode 0)
Current function value: 123.81774887843669
Iterations: 19
Function evaluations: 196
Gradient evaluations: 19
Iteration: 1, Func. Count: 12, Neg. LLF: 5152457.32784678
Iteration: 2, Func. Count: 24, Neg. LLF: 154.3304004545356
Iteration: 3, Func. Count: 36, Neg. LLF: 145.88713125607637
Iteration: 4, Func. Count: 48, Neg. LLF: 176.56252070745418
Iteration: 5, Func. Count: 60, Neg. LLF: 124.31570168994863
Iteration: 6, Func. Count: 71, Neg. LLF: 124.90031690896552
Iteration: 7, Func. Count: 83, Neg. LLF: 124.05110809438342
Iteration: 8, Func. Count: 94, Neg. LLF: 123.92158162439324
Iteration: 9, Func. Count: 105, Neg. LLF: 123.87741432006754
Iteration: 10, Func. Count: 116, Neg. LLF: 123.8326683645119
Iteration: 11, Func. Count: 127, Neg. LLF: 123.8222546801558
Iteration: 12, Func. Count: 138, Neg. LLF: 123.81829672442245
Iteration: 13, Func. Count: 149, Neg. LLF: 123.81780059688735
Iteration: 14, Func. Count: 160, Neg. LLF: 123.81775418934494
Iteration: 15, Func. Count: 171, Neg. LLF: 123.81774887280541
Iteration: 16, Func. Count: 181, Neg. LLF: 123.81774891525295
Optimization terminated successfully (Exit mode 0)
Current function value: 123.81774887280541
Iterations: 16
Function evaluations: 181
Gradient evaluations: 16
Iteration: 1, Func. Count: 13, Neg. LLF: 21305308.073043603
Iteration: 2, Func. Count: 26, Neg. LLF: 734.4368724992582
Iteration: 3, Func. Count: 39, Neg. LLF: 156.78553435659842
Iteration: 4, Func. Count: 52, Neg. LLF: 135.53854334698607
Iteration: 5, Func. Count: 65, Neg. LLF: 129.26552310643893
Iteration: 6, Func. Count: 78, Neg. LLF: 127.55483858778392
Iteration: 7, Func. Count: 91, Neg. LLF: 124.38527843820388
Iteration: 8, Func. Count: 103, Neg. LLF: 124.30596007515976
Iteration: 9, Func. Count: 115, Neg. LLF: 124.23045607338236
Iteration: 10, Func. Count: 127, Neg. LLF: 123.92588749377464
Iteration: 11, Func. Count: 139, Neg. LLF: 123.88151021532947
Iteration: 12, Func. Count: 151, Neg. LLF: 123.85806289247088
Iteration: 13, Func. Count: 163, Neg. LLF: 123.83088588323481
Iteration: 14, Func. Count: 175, Neg. LLF: 123.82333314475582
Iteration: 15, Func. Count: 187, Neg. LLF: 123.81908077443683
Iteration: 16, Func. Count: 199, Neg. LLF: 123.81816635892943
Iteration: 17, Func. Count: 211, Neg. LLF: 123.81784343959382
Iteration: 18, Func. Count: 223, Neg. LLF: 123.81775978789578
Iteration: 19, Func. Count: 235, Neg. LLF: 123.81774942603137
Iteration: 20, Func. Count: 247, Neg. LLF: 123.81774879088906
Optimization terminated successfully (Exit mode 0)
Current function value: 123.81774879088906
Iterations: 20
Function evaluations: 247
Gradient evaluations: 20
Iteration: 1, Func. Count: 14, Neg. LLF: 20557935.400763042
Iteration: 2, Func. Count: 28, Neg. LLF: 451.4644703715707
Iteration: 3, Func. Count: 42, Neg. LLF: 158.46330590874413
Iteration: 4, Func. Count: 56, Neg. LLF: 124.99657208056259
Iteration: 5, Func. Count: 69, Neg. LLF: 131.5586959670428
Iteration: 6, Func. Count: 83, Neg. LLF: 128.50394156543197
Iteration: 7, Func. Count: 97, Neg. LLF: 126.27991397446239
Iteration: 8, Func. Count: 111, Neg. LLF: 124.39632970828704
Iteration: 9, Func. Count: 125, Neg. LLF: 124.26463227365784
Iteration: 10, Func. Count: 138, Neg. LLF: 124.14686698700103
Iteration: 11, Func. Count: 151, Neg. LLF: 123.92990364094982
Iteration: 12, Func. Count: 164, Neg. LLF: 123.90431437903324
Iteration: 13, Func. Count: 177, Neg. LLF: 123.87324414659723
Iteration: 14, Func. Count: 190, Neg. LLF: 123.85119423477666
Iteration: 15, Func. Count: 203, Neg. LLF: 123.83747934638876
Iteration: 16, Func. Count: 216, Neg. LLF: 123.82263205249272
Iteration: 17, Func. Count: 229, Neg. LLF: 123.81922400140289
Iteration: 18, Func. Count: 242, Neg. LLF: 123.81805454448346
Iteration: 19, Func. Count: 255, Neg. LLF: 123.81779815326227
Iteration: 20, Func. Count: 268, Neg. LLF: 123.81775544182213
Iteration: 21, Func. Count: 281, Neg. LLF: 123.81774982591475
Iteration: 22, Func. Count: 294, Neg. LLF: 123.81774904247402
Optimization terminated successfully (Exit mode 0)
Current function value: 123.81774904247402
Iterations: 22
Function evaluations: 294
Gradient evaluations: 22
Iteration: 1, Func. Count: 11, Neg. LLF: 133.56034163552314
Iteration: 2, Func. Count: 22, Neg. LLF: 146.40924027441358
Iteration: 3, Func. Count: 33, Neg. LLF: 125.98306209869051
Iteration: 4, Func. Count: 43, Neg. LLF: 4792113.011249433
Iteration: 5, Func. Count: 54, Neg. LLF: 4271699.805422619
Iteration: 6, Func. Count: 65, Neg. LLF: 125.44074098075916
Iteration: 7, Func. Count: 76, Neg. LLF: 124.9349473546788
Iteration: 8, Func. Count: 87, Neg. LLF: 124.72727064877844
Iteration: 9, Func. Count: 98, Neg. LLF: 127.00559963013494
Iteration: 10, Func. Count: 110, Neg. LLF: 124.52408896161147
Iteration: 11, Func. Count: 120, Neg. LLF: 124.4917080017348
Iteration: 12, Func. Count: 130, Neg. LLF: 124.46719350366448
Iteration: 13, Func. Count: 140, Neg. LLF: 124.45545758996461
Iteration: 14, Func. Count: 150, Neg. LLF: 124.44711875149959
Iteration: 15, Func. Count: 160, Neg. LLF: 124.22945518254244
Iteration: 16, Func. Count: 170, Neg. LLF: 124.03433639370002
Iteration: 17, Func. Count: 180, Neg. LLF: 124.00905298789053
Iteration: 18, Func. Count: 190, Neg. LLF: 123.99904417633034
Iteration: 19, Func. Count: 200, Neg. LLF: 123.98894176915107
Iteration: 20, Func. Count: 210, Neg. LLF: 123.98172941586544
Iteration: 21, Func. Count: 220, Neg. LLF: 123.97899758064914
Iteration: 22, Func. Count: 230, Neg. LLF: 123.97653069101256
Iteration: 23, Func. Count: 240, Neg. LLF: 123.96902486185556
Iteration: 24, Func. Count: 250, Neg. LLF: 123.96494917019211
Iteration: 25, Func. Count: 260, Neg. LLF: 123.96275915906905
Iteration: 26, Func. Count: 270, Neg. LLF: 123.9664901548612
Iteration: 27, Func. Count: 281, Neg. LLF: 123.96273405571615
Iteration: 28, Func. Count: 292, Neg. LLF: 123.96334385243443
Iteration: 29, Func. Count: 303, Neg. LLF: 123.96268839853532
Optimization terminated successfully (Exit mode 0)
Current function value: 123.9626712253793
Iterations: 30
Function evaluations: 304
Gradient evaluations: 29
Iteration: 1, Func. Count: 12, Neg. LLF: 786859.5379215004
Iteration: 2, Func. Count: 24, Neg. LLF: 390.09967348467404
Iteration: 3, Func. Count: 36, Neg. LLF: 141.28013645814653
Iteration: 4, Func. Count: 48, Neg. LLF: 125.66446167602984
Iteration: 5, Func. Count: 60, Neg. LLF: 132.53541637278954
Iteration: 6, Func. Count: 72, Neg. LLF: 124.71971287988862
Iteration: 7, Func. Count: 84, Neg. LLF: 124.39240948289624
Iteration: 8, Func. Count: 95, Neg. LLF: 124.06468509266999
Iteration: 9, Func. Count: 106, Neg. LLF: 124.10036762037656
Iteration: 10, Func. Count: 118, Neg. LLF: 123.92981898447198
Iteration: 11, Func. Count: 129, Neg. LLF: 123.84993836117559
Iteration: 12, Func. Count: 140, Neg. LLF: 123.8231102632328
Iteration: 13, Func. Count: 151, Neg. LLF: 123.81864921014021
Iteration: 14, Func. Count: 162, Neg. LLF: 123.81789220695035
Iteration: 15, Func. Count: 173, Neg. LLF: 123.81777782801426
Iteration: 16, Func. Count: 184, Neg. LLF: 123.81775260607932
Iteration: 17, Func. Count: 195, Neg. LLF: 123.81774889603273
Iteration: 18, Func. Count: 205, Neg. LLF: 123.81774889601623
Optimization terminated successfully (Exit mode 0)
Current function value: 123.81774889603273
Iterations: 18
Function evaluations: 205
Gradient evaluations: 18
Iteration: 1, Func. Count: 13, Neg. LLF: 5330712.069788408
Iteration: 2, Func. Count: 26, Neg. LLF: 229.63714297405727
Iteration: 3, Func. Count: 39, Neg. LLF: 167.73750650472533
Iteration: 4, Func. Count: 52, Neg. LLF: 209.17696946291167
Iteration: 5, Func. Count: 65, Neg. LLF: 124.45256974874837
Iteration: 6, Func. Count: 77, Neg. LLF: 125.90320716255196
Iteration: 7, Func. Count: 90, Neg. LLF: 124.25234259567273
Iteration: 8, Func. Count: 102, Neg. LLF: 124.10938687568041
Iteration: 9, Func. Count: 114, Neg. LLF: 123.9268001404991
Iteration: 10, Func. Count: 126, Neg. LLF: 123.85223456477279
Iteration: 11, Func. Count: 138, Neg. LLF: 123.82887866083212
Iteration: 12, Func. Count: 150, Neg. LLF: 123.81950006061973
Iteration: 13, Func. Count: 162, Neg. LLF: 123.81837907490973
Iteration: 14, Func. Count: 174, Neg. LLF: 123.81777653101861
Iteration: 15, Func. Count: 186, Neg. LLF: 123.81775303790913
Iteration: 16, Func. Count: 198, Neg. LLF: 123.81774887378955
Iteration: 17, Func. Count: 209, Neg. LLF: 123.81774891622086
Optimization terminated successfully (Exit mode 0)
Current function value: 123.81774887378955
Iterations: 17
Function evaluations: 209
Gradient evaluations: 17
Iteration: 1, Func. Count: 14, Neg. LLF: 21183051.180014934
Iteration: 2, Func. Count: 28, Neg. LLF: 182.7723423194217
Iteration: 3, Func. Count: 42, Neg. LLF: 151.92707079813445
Iteration: 4, Func. Count: 56, Neg. LLF: 128.27705080544064
Iteration: 5, Func. Count: 70, Neg. LLF: 125.57079578049476
Iteration: 6, Func. Count: 84, Neg. LLF: 129.31193389490699
Iteration: 7, Func. Count: 98, Neg. LLF: 124.53174103165682
Iteration: 8, Func. Count: 111, Neg. LLF: 124.45107470881533
Iteration: 9, Func. Count: 124, Neg. LLF: 124.88744095279706
Iteration: 10, Func. Count: 138, Neg. LLF: 124.35442117183084
Iteration: 11, Func. Count: 151, Neg. LLF: 124.21973524930604
Iteration: 12, Func. Count: 164, Neg. LLF: 124.11763529812804
Iteration: 13, Func. Count: 177, Neg. LLF: 123.9319099912483
Iteration: 14, Func. Count: 190, Neg. LLF: 123.87591914381319
Iteration: 15, Func. Count: 203, Neg. LLF: 123.85997418390099
Iteration: 16, Func. Count: 216, Neg. LLF: 123.84089849072699
Iteration: 17, Func. Count: 229, Neg. LLF: 123.82833407151408
Iteration: 18, Func. Count: 242, Neg. LLF: 123.82038083153796
Iteration: 19, Func. Count: 255, Neg. LLF: 123.81813408695062
Iteration: 20, Func. Count: 268, Neg. LLF: 123.81781978158517
Iteration: 21, Func. Count: 281, Neg. LLF: 123.81775809879731
Iteration: 22, Func. Count: 294, Neg. LLF: 123.81775091829277
Iteration: 23, Func. Count: 307, Neg. LLF: 123.81774885371195
Iteration: 24, Func. Count: 319, Neg. LLF: 123.81774906064265
Optimization terminated successfully (Exit mode 0)
Current function value: 123.81774885371195
Iterations: 24
Function evaluations: 319
Gradient evaluations: 24
Iteration: 1, Func. Count: 15, Neg. LLF: 20405820.2628339
Iteration: 2, Func. Count: 30, Neg. LLF: 162.71734649182426
Iteration: 3, Func. Count: 45, Neg. LLF: 158.49720170793984
Iteration: 4, Func. Count: 60, Neg. LLF: 131.3119861235066
Iteration: 5, Func. Count: 75, Neg. LLF: 124.54305222515897
Iteration: 6, Func. Count: 89, Neg. LLF: 125.18958149549745
Iteration: 7, Func. Count: 104, Neg. LLF: 124.5461724441993
Iteration: 8, Func. Count: 119, Neg. LLF: 124.2973334714611
Iteration: 9, Func. Count: 133, Neg. LLF: 124.26603787641301
Iteration: 10, Func. Count: 147, Neg. LLF: 124.17595534296248
Iteration: 11, Func. Count: 161, Neg. LLF: 123.97627858516485
Iteration: 12, Func. Count: 175, Neg. LLF: 123.89459629796539
Iteration: 13, Func. Count: 189, Neg. LLF: 123.87369422102995
Iteration: 14, Func. Count: 203, Neg. LLF: 123.83378086576184
Iteration: 15, Func. Count: 217, Neg. LLF: 123.82139006349179
Iteration: 16, Func. Count: 231, Neg. LLF: 123.81819030760848
Iteration: 17, Func. Count: 245, Neg. LLF: 123.81783307732137
Iteration: 18, Func. Count: 259, Neg. LLF: 123.81776272456987
Iteration: 19, Func. Count: 273, Neg. LLF: 123.8177504624756
Iteration: 20, Func. Count: 287, Neg. LLF: 123.81774903420812
Iteration: 21, Func. Count: 300, Neg. LLF: 123.81774916103846
Optimization terminated successfully (Exit mode 0)
Current function value: 123.81774903420812
Iterations: 21
Function evaluations: 300
Gradient evaluations: 21
Iteration: 1, Func. Count: 8, Neg. LLF: 130.1158898906335
Iteration: 2, Func. Count: 16, Neg. LLF: 142.37066325969644
Iteration: 3, Func. Count: 24, Neg. LLF: 129.11529052497727
Iteration: 4, Func. Count: 32, Neg. LLF: 125.37035279735927
Iteration: 5, Func. Count: 39, Neg. LLF: 658.3333682943355
Iteration: 6, Func. Count: 47, Neg. LLF: 126.88829653187557
Iteration: 7, Func. Count: 55, Neg. LLF: 176.84579464740716
Iteration: 8, Func. Count: 63, Neg. LLF: 124.40536765114365
Iteration: 9, Func. Count: 70, Neg. LLF: 124.38036734070104
Iteration: 10, Func. Count: 77, Neg. LLF: 124.37279687358168
Iteration: 11, Func. Count: 84, Neg. LLF: 124.37237631000518
Iteration: 12, Func. Count: 91, Neg. LLF: 124.37221804547714
Iteration: 13, Func. Count: 98, Neg. LLF: 124.37219444547355
Iteration: 14, Func. Count: 105, Neg. LLF: 124.37219142220346
Iteration: 15, Func. Count: 111, Neg. LLF: 124.37219142220722
Optimization terminated successfully (Exit mode 0)
Current function value: 124.37219142220346
Iterations: 15
Function evaluations: 111
Gradient evaluations: 15
Iteration: 1, Func. Count: 9, Neg. LLF: 16810599.98687771
Iteration: 2, Func. Count: 18, Neg. LLF: 163.07878444695766
Iteration: 3, Func. Count: 27, Neg. LLF: 126.55453378585617
Iteration: 4, Func. Count: 36, Neg. LLF: 127.79033446292271
Iteration: 5, Func. Count: 45, Neg. LLF: 124.48373513228918
Iteration: 6, Func. Count: 53, Neg. LLF: 126.47080706476952
Iteration: 7, Func. Count: 62, Neg. LLF: 124.40802183048578
Iteration: 8, Func. Count: 70, Neg. LLF: 124.39627524131036
Iteration: 9, Func. Count: 78, Neg. LLF: 124.39125122247765
Iteration: 10, Func. Count: 86, Neg. LLF: 124.37402409801834
Iteration: 11, Func. Count: 94, Neg. LLF: 124.37249781767068
Iteration: 12, Func. Count: 102, Neg. LLF: 124.3723369236947
Iteration: 13, Func. Count: 110, Neg. LLF: 124.37221827980206
Iteration: 14, Func. Count: 118, Neg. LLF: 124.37219145329918
Iteration: 15, Func. Count: 125, Neg. LLF: 124.37219146031948
Optimization terminated successfully (Exit mode 0)
Current function value: 124.37219145329918
Iterations: 15
Function evaluations: 125
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 16160200.931243688
Iteration: 2, Func. Count: 20, Neg. LLF: 157.07593527734252
Iteration: 3, Func. Count: 30, Neg. LLF: 126.86809762164383
Iteration: 4, Func. Count: 40, Neg. LLF: 126.98930411467896
Iteration: 5, Func. Count: 50, Neg. LLF: 125.75834757828707
Iteration: 6, Func. Count: 60, Neg. LLF: 137.11336523703628
Iteration: 7, Func. Count: 70, Neg. LLF: 124.45283176933822
Iteration: 8, Func. Count: 79, Neg. LLF: 125.16138876521632
Iteration: 9, Func. Count: 89, Neg. LLF: 124.41942190172574
Iteration: 10, Func. Count: 98, Neg. LLF: 124.40558807876948
Iteration: 11, Func. Count: 107, Neg. LLF: 124.38901228843118
Iteration: 12, Func. Count: 116, Neg. LLF: 124.3787676746675
Iteration: 13, Func. Count: 125, Neg. LLF: 124.37534636078438
Iteration: 14, Func. Count: 134, Neg. LLF: 124.37220456019206
Iteration: 15, Func. Count: 143, Neg. LLF: 124.3716090926328
Iteration: 16, Func. Count: 152, Neg. LLF: 124.37155741154031
Iteration: 17, Func. Count: 161, Neg. LLF: 124.37155690488373
Optimization terminated successfully (Exit mode 0)
Current function value: 124.37155690488373
Iterations: 17
Function evaluations: 161
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 16019180.367504902
Iteration: 2, Func. Count: 22, Neg. LLF: 140.38251393578793
Iteration: 3, Func. Count: 33, Neg. LLF: 128.15211274774882
Iteration: 4, Func. Count: 44, Neg. LLF: 125.6545226607719
Iteration: 5, Func. Count: 55, Neg. LLF: 125.41289556280876
Iteration: 6, Func. Count: 66, Neg. LLF: 124.80789380085024
Iteration: 7, Func. Count: 77, Neg. LLF: 124.51601995598507
Iteration: 8, Func. Count: 87, Neg. LLF: 126.13351225413999
Iteration: 9, Func. Count: 98, Neg. LLF: 124.3963733780266
Iteration: 10, Func. Count: 108, Neg. LLF: 124.37605426952516
Iteration: 11, Func. Count: 118, Neg. LLF: 124.37247649708542
Iteration: 12, Func. Count: 128, Neg. LLF: 124.37180900228974
Iteration: 13, Func. Count: 138, Neg. LLF: 124.37155913536543
Iteration: 14, Func. Count: 148, Neg. LLF: 124.3715575926174
Iteration: 15, Func. Count: 158, Neg. LLF: 124.37155689685245
Optimization terminated successfully (Exit mode 0)
Current function value: 124.37155689685245
Iterations: 15
Function evaluations: 158
Gradient evaluations: 15
Iteration: 1, Func. Count: 12, Neg. LLF: 229.4564539827587
Iteration: 2, Func. Count: 24, Neg. LLF: 496.8272314984345
Iteration: 3, Func. Count: 36, Neg. LLF: 176.48270370963522
Iteration: 4, Func. Count: 48, Neg. LLF: 154.42297346661698
Iteration: 5, Func. Count: 60, Neg. LLF: 126.93693059513082
Iteration: 6, Func. Count: 72, Neg. LLF: 186.780305305528
Iteration: 7, Func. Count: 84, Neg. LLF: 126.46387570530189
Iteration: 8, Func. Count: 96, Neg. LLF: 124.38773811194399
Iteration: 9, Func. Count: 107, Neg. LLF: 124.39615969543333
Iteration: 10, Func. Count: 119, Neg. LLF: 124.37447527335299
Iteration: 11, Func. Count: 130, Neg. LLF: 124.37192330882758
Iteration: 12, Func. Count: 141, Neg. LLF: 124.37169570502417
Iteration: 13, Func. Count: 152, Neg. LLF: 124.37159935820718
Iteration: 14, Func. Count: 163, Neg. LLF: 124.37157625954018
Iteration: 15, Func. Count: 174, Neg. LLF: 124.37155742173304
Iteration: 16, Func. Count: 184, Neg. LLF: 124.3715574436058
Optimization terminated successfully (Exit mode 0)
Current function value: 124.37155742173304
Iterations: 16
Function evaluations: 184
Gradient evaluations: 16
Iteration: 1, Func. Count: 9, Neg. LLF: 132.4403091144083
Iteration: 2, Func. Count: 18, Neg. LLF: 136.38635496526376
Iteration: 3, Func. Count: 27, Neg. LLF: 140.30354909209098
Iteration: 4, Func. Count: 36, Neg. LLF: 316.2074542608804
Iteration: 5, Func. Count: 45, Neg. LLF: 296.2836187193661
Iteration: 6, Func. Count: 54, Neg. LLF: 137.58934042279364
Iteration: 7, Func. Count: 63, Neg. LLF: 159.56417232760518
Iteration: 8, Func. Count: 72, Neg. LLF: 126.19800058030441
Iteration: 9, Func. Count: 81, Neg. LLF: 127.19184884874649
Iteration: 10, Func. Count: 90, Neg. LLF: 124.41330306865675
Iteration: 11, Func. Count: 98, Neg. LLF: 124.38334986003407
Iteration: 12, Func. Count: 106, Neg. LLF: 124.368194863592
Iteration: 13, Func. Count: 114, Neg. LLF: 124.36590443315818
Iteration: 14, Func. Count: 122, Neg. LLF: 124.36564291017925
Iteration: 15, Func. Count: 130, Neg. LLF: 124.36561285921579
Iteration: 16, Func. Count: 137, Neg. LLF: 124.3656128591809
Optimization terminated successfully (Exit mode 0)
Current function value: 124.36561285921579
Iterations: 16
Function evaluations: 137
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 5214497.07936157
Iteration: 2, Func. Count: 20, Neg. LLF: 132.31194625998046
Iteration: 3, Func. Count: 30, Neg. LLF: 128.23111647779825
Iteration: 4, Func. Count: 40, Neg. LLF: 142.40248525403914
Iteration: 5, Func. Count: 50, Neg. LLF: 124.63268124253395
Iteration: 6, Func. Count: 59, Neg. LLF: 125.61100295191731
Iteration: 7, Func. Count: 69, Neg. LLF: 126.29517017976055
Iteration: 8, Func. Count: 79, Neg. LLF: 124.53214708492672
Iteration: 9, Func. Count: 89, Neg. LLF: 124.36667712281641
Iteration: 10, Func. Count: 98, Neg. LLF: 124.36589659196646
Iteration: 11, Func. Count: 107, Neg. LLF: 124.36578465612813
Iteration: 12, Func. Count: 116, Neg. LLF: 124.36566883309796
Iteration: 13, Func. Count: 125, Neg. LLF: 124.36563331310072
Iteration: 14, Func. Count: 134, Neg. LLF: 124.36561648611938
Iteration: 15, Func. Count: 143, Neg. LLF: 124.36561326245952
Iteration: 16, Func. Count: 152, Neg. LLF: 124.36561253124674
Optimization terminated successfully (Exit mode 0)
Current function value: 124.36561253124674
Iterations: 16
Function evaluations: 152
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 5185451.754179179
Iteration: 2, Func. Count: 22, Neg. LLF: 143.3028822343498
Iteration: 3, Func. Count: 33, Neg. LLF: 152.77950411141458
Iteration: 4, Func. Count: 44, Neg. LLF: 132.74019498126108
Iteration: 5, Func. Count: 55, Neg. LLF: 124.99313439979036
Iteration: 6, Func. Count: 66, Neg. LLF: 125.55333499714577
Iteration: 7, Func. Count: 77, Neg. LLF: 124.4300380433218
Iteration: 8, Func. Count: 87, Neg. LLF: 126.00285548326552
Iteration: 9, Func. Count: 98, Neg. LLF: 124.38998645390424
Iteration: 10, Func. Count: 108, Neg. LLF: 124.36749651542921
Iteration: 11, Func. Count: 118, Neg. LLF: 124.36309308128874
Iteration: 12, Func. Count: 128, Neg. LLF: 124.36118190109248
Iteration: 13, Func. Count: 138, Neg. LLF: 124.3604575398633
Iteration: 14, Func. Count: 148, Neg. LLF: 124.36025476905225
Iteration: 15, Func. Count: 158, Neg. LLF: 124.35998900036195
Iteration: 16, Func. Count: 168, Neg. LLF: 124.3599327588572
Iteration: 17, Func. Count: 178, Neg. LLF: 124.35991441252244
Iteration: 18, Func. Count: 188, Neg. LLF: 124.3599130657128
Iteration: 19, Func. Count: 197, Neg. LLF: 124.35991306571891
Optimization terminated successfully (Exit mode 0)
Current function value: 124.3599130657128
Iterations: 19
Function evaluations: 197
Gradient evaluations: 19
Iteration: 1, Func. Count: 12, Neg. LLF: 19671561.23138294
Iteration: 2, Func. Count: 24, Neg. LLF: 198.20134729669664
Iteration: 3, Func. Count: 36, Neg. LLF: 222.89884525411165
Iteration: 4, Func. Count: 48, Neg. LLF: 132.53646429243486
Iteration: 5, Func. Count: 60, Neg. LLF: 125.37588088779484
Iteration: 6, Func. Count: 72, Neg. LLF: 125.97818748665226
Iteration: 7, Func. Count: 84, Neg. LLF: 124.41826317981523
Iteration: 8, Func. Count: 95, Neg. LLF: 125.28331728528218
Iteration: 9, Func. Count: 107, Neg. LLF: 124.38400749220332
Iteration: 10, Func. Count: 118, Neg. LLF: 124.37013954251793
Iteration: 11, Func. Count: 129, Neg. LLF: 124.36370868258125
Iteration: 12, Func. Count: 140, Neg. LLF: 124.36050064066323
Iteration: 13, Func. Count: 151, Neg. LLF: 124.3601293214154
Iteration: 14, Func. Count: 162, Neg. LLF: 124.35998085078829
Iteration: 15, Func. Count: 173, Neg. LLF: 124.35996423090323
Iteration: 16, Func. Count: 184, Neg. LLF: 124.35992309663297
Iteration: 17, Func. Count: 195, Neg. LLF: 124.35991545402827
Iteration: 18, Func. Count: 206, Neg. LLF: 124.35991316796017
Iteration: 19, Func. Count: 216, Neg. LLF: 124.35991319526471
Optimization terminated successfully (Exit mode 0)
Current function value: 124.35991316796017
Iterations: 19
Function evaluations: 216
Gradient evaluations: 19
Iteration: 1, Func. Count: 13, Neg. LLF: 18635132.868150838
Iteration: 2, Func. Count: 26, Neg. LLF: 170.60722857381504
Iteration: 3, Func. Count: 39, Neg. LLF: 225.8498213850473
Iteration: 4, Func. Count: 53, Neg. LLF: 133.02035884160426
Iteration: 5, Func. Count: 66, Neg. LLF: 124.8923346536204
Iteration: 6, Func. Count: 78, Neg. LLF: 127.45701245335445
Iteration: 7, Func. Count: 91, Neg. LLF: 124.66194525790725
Iteration: 8, Func. Count: 104, Neg. LLF: 124.41421136291589
Iteration: 9, Func. Count: 116, Neg. LLF: 125.67029381440247
Iteration: 10, Func. Count: 129, Neg. LLF: 124.36624269296419
Iteration: 11, Func. Count: 141, Neg. LLF: 124.3620551411502
Iteration: 12, Func. Count: 153, Neg. LLF: 124.36102172217386
Iteration: 13, Func. Count: 165, Neg. LLF: 124.36070586626143
Iteration: 14, Func. Count: 177, Neg. LLF: 124.36036780533479
Iteration: 15, Func. Count: 189, Neg. LLF: 124.3600095554454
Iteration: 16, Func. Count: 201, Neg. LLF: 124.35993248090212
Iteration: 17, Func. Count: 213, Neg. LLF: 124.3599143944344
Iteration: 18, Func. Count: 225, Neg. LLF: 124.35991338640385
Iteration: 19, Func. Count: 236, Neg. LLF: 124.35991341511048
Optimization terminated successfully (Exit mode 0)
Current function value: 124.35991338640385
Iterations: 19
Function evaluations: 236
Gradient evaluations: 19
Iteration: 1, Func. Count: 10, Neg. LLF: 132.6631409053294
Iteration: 2, Func. Count: 20, Neg. LLF: 136.01182503842278
Iteration: 3, Func. Count: 30, Neg. LLF: 139.9288768937465
Iteration: 4, Func. Count: 40, Neg. LLF: 166.19010862807676
Iteration: 5, Func. Count: 50, Neg. LLF: 14460.965509921276
Iteration: 6, Func. Count: 60, Neg. LLF: 172.2601100542982
Iteration: 7, Func. Count: 70, Neg. LLF: 506.81932411892785
Iteration: 8, Func. Count: 80, Neg. LLF: 127.02326212324175
Iteration: 9, Func. Count: 90, Neg. LLF: 126.85547064425624
Iteration: 10, Func. Count: 100, Neg. LLF: 124.43715726361414
Iteration: 11, Func. Count: 109, Neg. LLF: 124.39609462065029
Iteration: 12, Func. Count: 118, Neg. LLF: 124.38308501840247
Iteration: 13, Func. Count: 127, Neg. LLF: 124.36703326000875
Iteration: 14, Func. Count: 136, Neg. LLF: 124.3658018525769
Iteration: 15, Func. Count: 145, Neg. LLF: 124.36563048656481
Iteration: 16, Func. Count: 154, Neg. LLF: 124.36561343012828
Iteration: 17, Func. Count: 163, Neg. LLF: 124.36561253981775
Optimization terminated successfully (Exit mode 0)
Current function value: 124.36561253981775
Iterations: 17
Function evaluations: 163
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 2686049.2258439707
Iteration: 2, Func. Count: 22, Neg. LLF: 137.9601975728614
Iteration: 3, Func. Count: 33, Neg. LLF: 127.0175809742318
Iteration: 4, Func. Count: 44, Neg. LLF: 131.2304442731074
Iteration: 5, Func. Count: 55, Neg. LLF: 133.78117495101696
Iteration: 6, Func. Count: 66, Neg. LLF: 126.87393372254091
Iteration: 7, Func. Count: 77, Neg. LLF: 124.38953044148712
Iteration: 8, Func. Count: 87, Neg. LLF: 124.41633159341697
Iteration: 9, Func. Count: 98, Neg. LLF: 124.36742672614052
Iteration: 10, Func. Count: 108, Neg. LLF: 124.36654218721208
Iteration: 11, Func. Count: 118, Neg. LLF: 124.3659528041427
Iteration: 12, Func. Count: 128, Neg. LLF: 124.3656430990765
Iteration: 13, Func. Count: 138, Neg. LLF: 124.3656137953734
Iteration: 14, Func. Count: 148, Neg. LLF: 124.36561259557176
Iteration: 15, Func. Count: 157, Neg. LLF: 124.36561260262468
Optimization terminated successfully (Exit mode 0)
Current function value: 124.36561259557176
Iterations: 15
Function evaluations: 157
Gradient evaluations: 15
Iteration: 1, Func. Count: 12, Neg. LLF: 5176660.511047091
Iteration: 2, Func. Count: 24, Neg. LLF: 136.94877728424188
Iteration: 3, Func. Count: 36, Neg. LLF: 141.38862594327918
Iteration: 4, Func. Count: 48, Neg. LLF: 130.59517003282144
Iteration: 5, Func. Count: 60, Neg. LLF: 124.88319518207756
Iteration: 6, Func. Count: 71, Neg. LLF: 125.46976803551067
Iteration: 7, Func. Count: 83, Neg. LLF: 125.36416349686812
Iteration: 8, Func. Count: 96, Neg. LLF: 124.44877869588011
Iteration: 9, Func. Count: 107, Neg. LLF: 128.68162578843132
Iteration: 10, Func. Count: 119, Neg. LLF: 124.40528735757016
Iteration: 11, Func. Count: 130, Neg. LLF: 124.37540019876977
Iteration: 12, Func. Count: 141, Neg. LLF: 124.3605361712902
Iteration: 13, Func. Count: 152, Neg. LLF: 124.35996204356475
Iteration: 14, Func. Count: 163, Neg. LLF: 124.35992821431422
Iteration: 15, Func. Count: 174, Neg. LLF: 124.35991704685355
Iteration: 16, Func. Count: 185, Neg. LLF: 124.3599157072462
Iteration: 17, Func. Count: 196, Neg. LLF: 124.35991418879392
Iteration: 18, Func. Count: 207, Neg. LLF: 124.35991319699612
Optimization terminated successfully (Exit mode 0)
Current function value: 124.35991319699612
Iterations: 18
Function evaluations: 207
Gradient evaluations: 18
Iteration: 1, Func. Count: 13, Neg. LLF: 19594605.051997464
Iteration: 2, Func. Count: 26, Neg. LLF: 142.40941669171093
Iteration: 3, Func. Count: 39, Neg. LLF: 174.3224783527146
Iteration: 4, Func. Count: 52, Neg. LLF: 137.6922878728063
Iteration: 5, Func. Count: 65, Neg. LLF: 124.95006219449954
Iteration: 6, Func. Count: 77, Neg. LLF: 126.14291535814952
Iteration: 7, Func. Count: 90, Neg. LLF: 124.42348174109922
Iteration: 8, Func. Count: 102, Neg. LLF: 125.17032722143013
Iteration: 9, Func. Count: 116, Neg. LLF: 124.39633081422846
Iteration: 10, Func. Count: 128, Neg. LLF: 124.37182194538987
Iteration: 11, Func. Count: 140, Neg. LLF: 124.36540232488609
Iteration: 12, Func. Count: 152, Neg. LLF: 124.3603351768651
Iteration: 13, Func. Count: 164, Neg. LLF: 124.36005262110531
Iteration: 14, Func. Count: 176, Neg. LLF: 124.3600120064983
Iteration: 15, Func. Count: 188, Neg. LLF: 124.35997779521726
Iteration: 16, Func. Count: 200, Neg. LLF: 124.35993230623522
Iteration: 17, Func. Count: 212, Neg. LLF: 124.35991691109258
Iteration: 18, Func. Count: 224, Neg. LLF: 124.35991344315482
Iteration: 19, Func. Count: 235, Neg. LLF: 124.35991347040185
Optimization terminated successfully (Exit mode 0)
Current function value: 124.35991344315482
Iterations: 19
Function evaluations: 235
Gradient evaluations: 19
Iteration: 1, Func. Count: 14, Neg. LLF: 18820415.999273967
Iteration: 2, Func. Count: 28, Neg. LLF: 135.89106965052284
Iteration: 3, Func. Count: 42, Neg. LLF: 151.040328982892
Iteration: 4, Func. Count: 56, Neg. LLF: 136.24185520271342
Iteration: 5, Func. Count: 70, Neg. LLF: 125.00385561235062
Iteration: 6, Func. Count: 83, Neg. LLF: 126.29721458501527
Iteration: 7, Func. Count: 97, Neg. LLF: 124.48841766487442
Iteration: 8, Func. Count: 110, Neg. LLF: 129.85127692879792
Iteration: 9, Func. Count: 125, Neg. LLF: 124.443691029627
Iteration: 10, Func. Count: 138, Neg. LLF: 124.38087348216418
Iteration: 11, Func. Count: 151, Neg. LLF: 124.37037464365237
Iteration: 12, Func. Count: 164, Neg. LLF: 124.36523465611761
Iteration: 13, Func. Count: 177, Neg. LLF: 124.3632146197749
Iteration: 14, Func. Count: 190, Neg. LLF: 124.36237116225067
Iteration: 15, Func. Count: 203, Neg. LLF: 124.36093894550878
Iteration: 16, Func. Count: 216, Neg. LLF: 124.3601497490767
Iteration: 17, Func. Count: 229, Neg. LLF: 124.3599641037496
Iteration: 18, Func. Count: 242, Neg. LLF: 124.35991478040839
Iteration: 19, Func. Count: 255, Neg. LLF: 124.3599131218515
Iteration: 20, Func. Count: 267, Neg. LLF: 124.35991315046697
Optimization terminated successfully (Exit mode 0)
Current function value: 124.3599131218515
Iterations: 20
Function evaluations: 267
Gradient evaluations: 20
Iteration: 1, Func. Count: 11, Neg. LLF: 136.41556380891504
Iteration: 2, Func. Count: 22, Neg. LLF: 144.1263715002885
Iteration: 3, Func. Count: 33, Neg. LLF: 125.85195582834614
Iteration: 4, Func. Count: 43, Neg. LLF: 127.9528677202011
Iteration: 5, Func. Count: 54, Neg. LLF: 134.09240774585544
Iteration: 6, Func. Count: 65, Neg. LLF: 124.67850689357249
Iteration: 7, Func. Count: 76, Neg. LLF: 124.65700072355506
Iteration: 8, Func. Count: 87, Neg. LLF: 124.63105580790852
Iteration: 9, Func. Count: 98, Neg. LLF: 124.27686815359905
Iteration: 10, Func. Count: 108, Neg. LLF: 124.22846292360083
Iteration: 11, Func. Count: 118, Neg. LLF: 124.08570623239699
Iteration: 12, Func. Count: 128, Neg. LLF: 124.05973844007504
Iteration: 13, Func. Count: 138, Neg. LLF: 123.97189048864298
Iteration: 14, Func. Count: 148, Neg. LLF: 123.96208913428266
Iteration: 15, Func. Count: 158, Neg. LLF: 123.9512806906105
Iteration: 16, Func. Count: 168, Neg. LLF: 123.94552108573201
Iteration: 17, Func. Count: 178, Neg. LLF: 123.94297600568302
Iteration: 18, Func. Count: 188, Neg. LLF: 123.94259845795733
Iteration: 19, Func. Count: 198, Neg. LLF: 123.94254573354465
Iteration: 20, Func. Count: 208, Neg. LLF: 123.94254241513552
Iteration: 21, Func. Count: 218, Neg. LLF: 123.9425407252773
Iteration: 22, Func. Count: 227, Neg. LLF: 123.94254062303996
Optimization terminated successfully (Exit mode 0)
Current function value: 123.9425407252773
Iterations: 23
Function evaluations: 227
Gradient evaluations: 22
Iteration: 1, Func. Count: 12, Neg. LLF: 778066.4101745335
Iteration: 2, Func. Count: 24, Neg. LLF: 568.5324418361749
Iteration: 3, Func. Count: 36, Neg. LLF: 133.1555668897315
Iteration: 4, Func. Count: 48, Neg. LLF: 127.26960752974281
Iteration: 5, Func. Count: 60, Neg. LLF: 126.5217062376749
Iteration: 6, Func. Count: 72, Neg. LLF: 126.02327527444506
Iteration: 7, Func. Count: 84, Neg. LLF: 124.31969041255208
Iteration: 8, Func. Count: 95, Neg. LLF: 124.18685575421128
Iteration: 9, Func. Count: 106, Neg. LLF: 124.02386655489312
Iteration: 10, Func. Count: 117, Neg. LLF: 123.99057176647491
Iteration: 11, Func. Count: 128, Neg. LLF: 123.90158895793223
Iteration: 12, Func. Count: 139, Neg. LLF: 123.86365047245998
Iteration: 13, Func. Count: 150, Neg. LLF: 123.82808245590356
Iteration: 14, Func. Count: 161, Neg. LLF: 123.81969099393868
Iteration: 15, Func. Count: 172, Neg. LLF: 123.81824359676831
Iteration: 16, Func. Count: 183, Neg. LLF: 123.81783002257212
Iteration: 17, Func. Count: 194, Neg. LLF: 123.81776715541892
Iteration: 18, Func. Count: 205, Neg. LLF: 123.81775797050148
Iteration: 19, Func. Count: 216, Neg. LLF: 123.81775106821512
Iteration: 20, Func. Count: 227, Neg. LLF: 123.81774912053702
Iteration: 21, Func. Count: 237, Neg. LLF: 123.81774912055411
Optimization terminated successfully (Exit mode 0)
Current function value: 123.81774912053702
Iterations: 21
Function evaluations: 237
Gradient evaluations: 21
Iteration: 1, Func. Count: 13, Neg. LLF: 5220397.225949508
Iteration: 2, Func. Count: 26, Neg. LLF: 227.56041617497885
Iteration: 3, Func. Count: 39, Neg. LLF: 153.8501147586785
Iteration: 4, Func. Count: 52, Neg. LLF: 164.33750194734674
Iteration: 5, Func. Count: 65, Neg. LLF: 124.74549533504762
Iteration: 6, Func. Count: 77, Neg. LLF: 124.71454803184406
Iteration: 7, Func. Count: 90, Neg. LLF: 124.60019915913479
Iteration: 8, Func. Count: 103, Neg. LLF: 125.5753528902403
Iteration: 9, Func. Count: 116, Neg. LLF: 124.17127324952823
Iteration: 10, Func. Count: 128, Neg. LLF: 124.07777768955545
Iteration: 11, Func. Count: 140, Neg. LLF: 124.03962136762549
Iteration: 12, Func. Count: 152, Neg. LLF: 124.00681631720873
Iteration: 13, Func. Count: 164, Neg. LLF: 123.95857174805407
Iteration: 14, Func. Count: 176, Neg. LLF: 123.92986546618047
Iteration: 15, Func. Count: 188, Neg. LLF: 123.9122942450152
Iteration: 16, Func. Count: 200, Neg. LLF: 123.91142546724731
Iteration: 17, Func. Count: 212, Neg. LLF: 123.91138452411036
Iteration: 18, Func. Count: 224, Neg. LLF: 123.91138152829703
Iteration: 19, Func. Count: 235, Neg. LLF: 123.91138152830874
Optimization terminated successfully (Exit mode 0)
Current function value: 123.91138152829703
Iterations: 19
Function evaluations: 235
Gradient evaluations: 19
Iteration: 1, Func. Count: 14, Neg. LLF: 20513902.283536986
Iteration: 2, Func. Count: 28, Neg. LLF: 684.7005995692064
Iteration: 3, Func. Count: 42, Neg. LLF: 150.3991959475886
Iteration: 4, Func. Count: 56, Neg. LLF: 136.72492379775915
Iteration: 5, Func. Count: 70, Neg. LLF: 126.9598471786015
Iteration: 6, Func. Count: 84, Neg. LLF: 124.76218252025431
Iteration: 7, Func. Count: 97, Neg. LLF: 126.13430636046326
Iteration: 8, Func. Count: 111, Neg. LLF: 124.98929598638125
Iteration: 9, Func. Count: 126, Neg. LLF: 124.36434958145793
Iteration: 10, Func. Count: 140, Neg. LLF: 125.04159517695645
Iteration: 11, Func. Count: 154, Neg. LLF: 124.26870652621704
Iteration: 12, Func. Count: 167, Neg. LLF: 124.21836372025848
Iteration: 13, Func. Count: 180, Neg. LLF: 124.07128564272018
Iteration: 14, Func. Count: 193, Neg. LLF: 124.03732900269095
Iteration: 15, Func. Count: 206, Neg. LLF: 123.9793154136696
Iteration: 16, Func. Count: 219, Neg. LLF: 123.91681015973101
Iteration: 17, Func. Count: 232, Neg. LLF: 123.85731490425228
Iteration: 18, Func. Count: 245, Neg. LLF: 123.84107239423838
Iteration: 19, Func. Count: 258, Neg. LLF: 123.82586799206432
Iteration: 20, Func. Count: 271, Neg. LLF: 123.82299002247821
Iteration: 21, Func. Count: 284, Neg. LLF: 123.81859803202903
Iteration: 22, Func. Count: 297, Neg. LLF: 123.81799476553294
Iteration: 23, Func. Count: 310, Neg. LLF: 123.81780994092145
Iteration: 24, Func. Count: 323, Neg. LLF: 123.81777472722023
Iteration: 25, Func. Count: 336, Neg. LLF: 123.81775677575352
Iteration: 26, Func. Count: 349, Neg. LLF: 123.81775020519045
Iteration: 27, Func. Count: 361, Neg. LLF: 123.81775041190112
Optimization terminated successfully (Exit mode 0)
Current function value: 123.81775020519045
Iterations: 27
Function evaluations: 361
Gradient evaluations: 27
Iteration: 1, Func. Count: 15, Neg. LLF: 19788363.138324812
Iteration: 2, Func. Count: 30, Neg. LLF: 1234.4765770762376
Iteration: 3, Func. Count: 45, Neg. LLF: 153.59978594012946
Iteration: 4, Func. Count: 60, Neg. LLF: 126.63915726380331
Iteration: 5, Func. Count: 75, Neg. LLF: 125.54897236999908
Iteration: 6, Func. Count: 90, Neg. LLF: 127.47579209378608
Iteration: 7, Func. Count: 106, Neg. LLF: 124.87761671302336
Iteration: 8, Func. Count: 121, Neg. LLF: 124.43993216925324
Iteration: 9, Func. Count: 135, Neg. LLF: 124.72303340360023
Iteration: 10, Func. Count: 150, Neg. LLF: 124.56876687732047
Iteration: 11, Func. Count: 165, Neg. LLF: 124.2517968000014
Iteration: 12, Func. Count: 179, Neg. LLF: 124.20788220366664
Iteration: 13, Func. Count: 193, Neg. LLF: 124.05068491817956
Iteration: 14, Func. Count: 207, Neg. LLF: 124.01381067315799
Iteration: 15, Func. Count: 221, Neg. LLF: 123.98059894884126
Iteration: 16, Func. Count: 235, Neg. LLF: 123.89463292920689
Iteration: 17, Func. Count: 249, Neg. LLF: 123.84463871981586
Iteration: 18, Func. Count: 263, Neg. LLF: 123.82411211419732
Iteration: 19, Func. Count: 277, Neg. LLF: 123.81863676829246
Iteration: 20, Func. Count: 291, Neg. LLF: 123.81793354974165
Iteration: 21, Func. Count: 305, Neg. LLF: 123.81777907968903
Iteration: 22, Func. Count: 319, Neg. LLF: 123.81775215371793
Iteration: 23, Func. Count: 333, Neg. LLF: 123.81774986760331
Iteration: 24, Func. Count: 347, Neg. LLF: 123.81873467946444
Optimization terminated successfully (Exit mode 0)
Current function value: 123.81774971132378
Iterations: 25
Function evaluations: 349
Gradient evaluations: 24
Iteration: 1, Func. Count: 12, Neg. LLF: 135.6425381656036
Iteration: 2, Func. Count: 24, Neg. LLF: 147.2383600687587
Iteration: 3, Func. Count: 36, Neg. LLF: 125.52422887715008
Iteration: 4, Func. Count: 47, Neg. LLF: 1583.6725268012847
Iteration: 5, Func. Count: 59, Neg. LLF: 783000.4574545037
Iteration: 6, Func. Count: 72, Neg. LLF: 127.39826203800129
Iteration: 7, Func. Count: 85, Neg. LLF: 252.4804888631707
Iteration: 8, Func. Count: 97, Neg. LLF: 123.67540662314518
Iteration: 9, Func. Count: 108, Neg. LLF: 123.51481185341112
Iteration: 10, Func. Count: 119, Neg. LLF: 123.34348311973417
Iteration: 11, Func. Count: 130, Neg. LLF: 123.3055628311512
Iteration: 12, Func. Count: 141, Neg. LLF: 123.29080366367712
Iteration: 13, Func. Count: 152, Neg. LLF: 123.28630677964269
Iteration: 14, Func. Count: 163, Neg. LLF: 123.2847778825589
Iteration: 15, Func. Count: 174, Neg. LLF: 123.28439843117597
Iteration: 16, Func. Count: 185, Neg. LLF: 123.28431329661824
Iteration: 17, Func. Count: 196, Neg. LLF: 123.28427810832102
Iteration: 18, Func. Count: 207, Neg. LLF: 123.28425041728977
Iteration: 19, Func. Count: 218, Neg. LLF: 123.28423144104141
Iteration: 20, Func. Count: 229, Neg. LLF: 123.284223983482
Iteration: 21, Func. Count: 240, Neg. LLF: 123.28421468754037
Iteration: 22, Func. Count: 251, Neg. LLF: 123.28421080107024
Iteration: 23, Func. Count: 262, Neg. LLF: 123.28420996637418
Optimization terminated successfully (Exit mode 0)
Current function value: 123.28420996637418
Iterations: 23
Function evaluations: 262
Gradient evaluations: 23
Iteration: 1, Func. Count: 13, Neg. LLF: 153.11741120404426
Iteration: 2, Func. Count: 26, Neg. LLF: 265.4176031693411
Iteration: 3, Func. Count: 39, Neg. LLF: 132.50289572015373
Iteration: 4, Func. Count: 52, Neg. LLF: 131.48696093907208
Iteration: 5, Func. Count: 65, Neg. LLF: 125.81262971556849
Iteration: 6, Func. Count: 78, Neg. LLF: 125.36075491261889
Iteration: 7, Func. Count: 91, Neg. LLF: 123.89066409702608
Iteration: 8, Func. Count: 103, Neg. LLF: 123.81244986455397
Iteration: 9, Func. Count: 115, Neg. LLF: 123.68512471572423
Iteration: 10, Func. Count: 127, Neg. LLF: 123.42896738375816
Iteration: 11, Func. Count: 139, Neg. LLF: 123.3266842183832
Iteration: 12, Func. Count: 151, Neg. LLF: 123.29999127153035
Iteration: 13, Func. Count: 163, Neg. LLF: 123.29122750112873
Iteration: 14, Func. Count: 175, Neg. LLF: 123.2845715710625
Iteration: 15, Func. Count: 187, Neg. LLF: 123.28428735403062
Iteration: 16, Func. Count: 199, Neg. LLF: 123.2842271360262
Iteration: 17, Func. Count: 211, Neg. LLF: 123.28421557576922
Iteration: 18, Func. Count: 223, Neg. LLF: 123.28421176841985
Iteration: 19, Func. Count: 235, Neg. LLF: 123.28421014902031
Iteration: 20, Func. Count: 246, Neg. LLF: 123.28421019542205
Optimization terminated successfully (Exit mode 0)
Current function value: 123.28421014902031
Iterations: 20
Function evaluations: 246
Gradient evaluations: 20
Iteration: 1, Func. Count: 14, Neg. LLF: 21853912.233759202
Iteration: 2, Func. Count: 28, Neg. LLF: 159.38644914461926
Iteration: 3, Func. Count: 42, Neg. LLF: 155.11006801033457
Iteration: 4, Func. Count: 56, Neg. LLF: 134.2879647601675
Iteration: 5, Func. Count: 70, Neg. LLF: 125.49725007766374
Iteration: 6, Func. Count: 84, Neg. LLF: 127.00257700005693
Iteration: 7, Func. Count: 98, Neg. LLF: 124.11533726177011
Iteration: 8, Func. Count: 111, Neg. LLF: 124.02977975822748
Iteration: 9, Func. Count: 124, Neg. LLF: 124.27743422406009
Iteration: 10, Func. Count: 138, Neg. LLF: 124.3255183204461
Iteration: 11, Func. Count: 152, Neg. LLF: 124.04554540208262
Iteration: 12, Func. Count: 166, Neg. LLF: 123.85013734842127
Iteration: 13, Func. Count: 179, Neg. LLF: 123.90558803774555
Iteration: 14, Func. Count: 193, Neg. LLF: 123.81887446215063
Iteration: 15, Func. Count: 206, Neg. LLF: 123.81171073975092
Iteration: 16, Func. Count: 219, Neg. LLF: 123.8038417679085
Iteration: 17, Func. Count: 232, Neg. LLF: 123.7993149211029
Iteration: 18, Func. Count: 245, Neg. LLF: 123.79735750829529
Iteration: 19, Func. Count: 258, Neg. LLF: 123.79655511245892
Iteration: 20, Func. Count: 271, Neg. LLF: 123.79608477323313
Iteration: 21, Func. Count: 284, Neg. LLF: 123.79585867480873
Iteration: 22, Func. Count: 297, Neg. LLF: 123.79577465603093
Iteration: 23, Func. Count: 310, Neg. LLF: 123.7957179119026
Iteration: 24, Func. Count: 323, Neg. LLF: 123.79569092432692
Iteration: 25, Func. Count: 336, Neg. LLF: 123.7956815925726
Iteration: 26, Func. Count: 349, Neg. LLF: 123.79567945671107
Iteration: 27, Func. Count: 361, Neg. LLF: 123.79567947259342
Optimization terminated successfully (Exit mode 0)
Current function value: 123.79567945671107
Iterations: 27
Function evaluations: 361
Gradient evaluations: 27
Iteration: 1, Func. Count: 15, Neg. LLF: 20439696.527763285
Iteration: 2, Func. Count: 30, Neg. LLF: 182.8795456745334
Iteration: 3, Func. Count: 45, Neg. LLF: 142.62838968354782
Iteration: 4, Func. Count: 60, Neg. LLF: 129.96903128814103
Iteration: 5, Func. Count: 75, Neg. LLF: 130.59490923178643
Iteration: 6, Func. Count: 90, Neg. LLF: 125.75353630939486
Iteration: 7, Func. Count: 105, Neg. LLF: 126.76197859328552
Iteration: 8, Func. Count: 120, Neg. LLF: 124.02198941125845
Iteration: 9, Func. Count: 134, Neg. LLF: 124.0409059024908
Iteration: 10, Func. Count: 149, Neg. LLF: 123.94653837909162
Iteration: 11, Func. Count: 163, Neg. LLF: 123.89722834656148
Iteration: 12, Func. Count: 177, Neg. LLF: 123.84411982797178
Iteration: 13, Func. Count: 191, Neg. LLF: 123.83096177919299
Iteration: 14, Func. Count: 205, Neg. LLF: 123.81924172279565
Iteration: 15, Func. Count: 219, Neg. LLF: 123.80921891877483
Iteration: 16, Func. Count: 233, Neg. LLF: 123.80176625405319
Iteration: 17, Func. Count: 247, Neg. LLF: 123.79761866457584
Iteration: 18, Func. Count: 261, Neg. LLF: 123.79623792757987
Iteration: 19, Func. Count: 275, Neg. LLF: 123.79599751944085
Iteration: 20, Func. Count: 289, Neg. LLF: 123.79591915775373
Iteration: 21, Func. Count: 303, Neg. LLF: 123.79583302105948
Iteration: 22, Func. Count: 317, Neg. LLF: 123.79575338626586
Iteration: 23, Func. Count: 331, Neg. LLF: 123.79570457201491
Iteration: 24, Func. Count: 345, Neg. LLF: 123.79568721575181
Iteration: 25, Func. Count: 359, Neg. LLF: 123.79568156817994
Iteration: 26, Func. Count: 373, Neg. LLF: 123.79567948375633
Iteration: 27, Func. Count: 386, Neg. LLF: 123.79567959105586
Optimization terminated successfully (Exit mode 0)
Current function value: 123.79567948375633
Iterations: 27
Function evaluations: 386
Gradient evaluations: 27
Iteration: 1, Func. Count: 16, Neg. LLF: 19724210.82654918
Iteration: 2, Func. Count: 32, Neg. LLF: 192.5019410301564
Iteration: 3, Func. Count: 48, Neg. LLF: 147.1840829787239
Iteration: 4, Func. Count: 64, Neg. LLF: 127.20046733889016
Iteration: 5, Func. Count: 80, Neg. LLF: 124.30452878909131
Iteration: 6, Func. Count: 95, Neg. LLF: 126.23222688284667
Iteration: 7, Func. Count: 111, Neg. LLF: 124.66418914607709
Iteration: 8, Func. Count: 127, Neg. LLF: 124.25940865483847
Iteration: 9, Func. Count: 143, Neg. LLF: 123.91683209713636
Iteration: 10, Func. Count: 158, Neg. LLF: 123.49131230182971
Iteration: 11, Func. Count: 173, Neg. LLF: 123.4128247866158
Iteration: 12, Func. Count: 188, Neg. LLF: 123.31204752268117
Iteration: 13, Func. Count: 203, Neg. LLF: 123.28990958119941
Iteration: 14, Func. Count: 218, Neg. LLF: 123.28584321310296
Iteration: 15, Func. Count: 233, Neg. LLF: 123.28468157577328
Iteration: 16, Func. Count: 248, Neg. LLF: 123.2845837467371
Iteration: 17, Func. Count: 263, Neg. LLF: 123.28429466765677
Iteration: 18, Func. Count: 278, Neg. LLF: 123.28539978516768
Iteration: 19, Func. Count: 294, Neg. LLF: 123.28770460317985
Iteration: 20, Func. Count: 310, Neg. LLF: 123.28504505094672
Iteration: 21, Func. Count: 326, Neg. LLF: 123.28421562838643
Iteration: 22, Func. Count: 341, Neg. LLF: 123.28424307924956
Iteration: 23, Func. Count: 357, Neg. LLF: 123.28421013517956
Iteration: 24, Func. Count: 371, Neg. LLF: 123.28421030630447
Optimization terminated successfully (Exit mode 0)
Current function value: 123.28421013517956
Iterations: 25
Function evaluations: 371
Gradient evaluations: 24
Iteration: 1, Func. Count: 5, Neg. LLF: 135.89630160215364
Iteration: 2, Func. Count: 10, Neg. LLF: 147.13205384116213
Iteration: 3, Func. Count: 15, Neg. LLF: 126.1391940892112
Iteration: 4, Func. Count: 19, Neg. LLF: 126.38913563377294
Iteration: 5, Func. Count: 24, Neg. LLF: 125.81138278310387
Iteration: 6, Func. Count: 28, Neg. LLF: 125.80576470932628
Iteration: 7, Func. Count: 32, Neg. LLF: 125.80542287399078
Iteration: 8, Func. Count: 36, Neg. LLF: 125.80539701216195
Iteration: 9, Func. Count: 39, Neg. LLF: 125.80539701215676
Optimization terminated successfully (Exit mode 0)
Current function value: 125.80539701216195
Iterations: 9
Function evaluations: 39
Gradient evaluations: 9
Iteration: 1, Func. Count: 5, Neg. LLF: 126.37049046326113
Iteration: 2, Func. Count: 11, Neg. LLF: 165.4047677319155
Iteration: 3, Func. Count: 16, Neg. LLF: 116.61513511394513
Iteration: 4, Func. Count: 20, Neg. LLF: 116.59991306875021
Iteration: 5, Func. Count: 24, Neg. LLF: 116.59700057540584
Iteration: 6, Func. Count: 28, Neg. LLF: 116.5943628179126
Iteration: 7, Func. Count: 32, Neg. LLF: 116.5935327428877
Iteration: 8, Func. Count: 36, Neg. LLF: 116.59347987781915
Iteration: 9, Func. Count: 40, Neg. LLF: 116.59347875211614
Iteration: 10, Func. Count: 43, Neg. LLF: 116.59347875212208
Optimization terminated successfully (Exit mode 0)
Current function value: 116.59347875211614
Iterations: 10
Function evaluations: 43
Gradient evaluations: 10
Iteration: 1, Func. Count: 6, Neg. LLF: 17060328.009146977
Iteration: 2, Func. Count: 12, Neg. LLF: 4736190.17000932
Iteration: 3, Func. Count: 18, Neg. LLF: 118.76962083049175
Iteration: 4, Func. Count: 24, Neg. LLF: 117.01005145615846
Iteration: 5, Func. Count: 29, Neg. LLF: 117.02299430673726
Iteration: 6, Func. Count: 35, Neg. LLF: 117.0018999497617
Iteration: 7, Func. Count: 40, Neg. LLF: 117.001553037113
Iteration: 8, Func. Count: 45, Neg. LLF: 117.00155183243464
Iteration: 9, Func. Count: 49, Neg. LLF: 117.00155183242148
Optimization terminated successfully (Exit mode 0)
Current function value: 117.00155183243464
Iterations: 9
Function evaluations: 49
Gradient evaluations: 9
Iteration: 1, Func. Count: 7, Neg. LLF: 17000086.119739998
Iteration: 2, Func. Count: 14, Neg. LLF: 4748128.699466382
Iteration: 3, Func. Count: 21, Neg. LLF: 118.04273183083909
Iteration: 4, Func. Count: 28, Neg. LLF: 116.77531260997368
Iteration: 5, Func. Count: 35, Neg. LLF: 116.93645740296984
Iteration: 6, Func. Count: 42, Neg. LLF: 117.67140412532727
Iteration: 7, Func. Count: 49, Neg. LLF: 116.69662262342761
Iteration: 8, Func. Count: 55, Neg. LLF: 116.6955917958979
Iteration: 9, Func. Count: 61, Neg. LLF: 116.69543633690574
Iteration: 10, Func. Count: 67, Neg. LLF: 116.69531145253343
Iteration: 11, Func. Count: 73, Neg. LLF: 116.69530332358015
Iteration: 12, Func. Count: 79, Neg. LLF: 116.69530228591329
Iteration: 13, Func. Count: 84, Neg. LLF: 116.69530228591225
Optimization terminated successfully (Exit mode 0)
Current function value: 116.69530228591329
Iterations: 13
Function evaluations: 84
Gradient evaluations: 13
Iteration: 1, Func. Count: 8, Neg. LLF: 123.6994724138126
Iteration: 2, Func. Count: 16, Neg. LLF: 178.00653223456058
Iteration: 3, Func. Count: 24, Neg. LLF: 128.76106494162204
Iteration: 4, Func. Count: 32, Neg. LLF: 4779602.428393281
Iteration: 5, Func. Count: 40, Neg. LLF: 115.61041548495099
Iteration: 6, Func. Count: 47, Neg. LLF: 115.60122155824504
Iteration: 7, Func. Count: 54, Neg. LLF: 115.59920600686192
Iteration: 8, Func. Count: 61, Neg. LLF: 115.5966121499241
Iteration: 9, Func. Count: 68, Neg. LLF: 115.59550693958019
Iteration: 10, Func. Count: 75, Neg. LLF: 115.59488460689245
Iteration: 11, Func. Count: 82, Neg. LLF: 115.59483047090009
Iteration: 12, Func. Count: 89, Neg. LLF: 115.59482550218112
Iteration: 13, Func. Count: 95, Neg. LLF: 115.59482550218145
Optimization terminated successfully (Exit mode 0)
Current function value: 115.59482550218112
Iterations: 13
Function evaluations: 95
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 123.40471619392484
Iteration: 2, Func. Count: 18, Neg. LLF: 158.37425934857941
Iteration: 3, Func. Count: 27, Neg. LLF: 132.49413593944013
Iteration: 4, Func. Count: 36, Neg. LLF: 166.11367875158473
Iteration: 5, Func. Count: 45, Neg. LLF: 115.61563042949437
Iteration: 6, Func. Count: 53, Neg. LLF: 115.59803377517761
Iteration: 7, Func. Count: 61, Neg. LLF: 115.59496328285739
Iteration: 8, Func. Count: 69, Neg. LLF: 115.5948998335541
Iteration: 9, Func. Count: 77, Neg. LLF: 115.59482681691983
Iteration: 10, Func. Count: 85, Neg. LLF: 115.59482549459968
Iteration: 11, Func. Count: 92, Neg. LLF: 115.59482555766449
Optimization terminated successfully (Exit mode 0)
Current function value: 115.59482549459968
Iterations: 11
Function evaluations: 92
Gradient evaluations: 11
Iteration: 1, Func. Count: 6, Neg. LLF: 125.80078507029144
Iteration: 2, Func. Count: 13, Neg. LLF: 191.9850743600784
Iteration: 3, Func. Count: 19, Neg. LLF: 116.62214810533415
Iteration: 4, Func. Count: 24, Neg. LLF: 116.60559243921757
Iteration: 5, Func. Count: 29, Neg. LLF: 116.59974114154456
Iteration: 6, Func. Count: 34, Neg. LLF: 116.59630290689167
Iteration: 7, Func. Count: 39, Neg. LLF: 116.5956693903926
Iteration: 8, Func. Count: 44, Neg. LLF: 116.5939191081566
Iteration: 9, Func. Count: 49, Neg. LLF: 116.59353584876202
Iteration: 10, Func. Count: 54, Neg. LLF: 116.59348058377958
Iteration: 11, Func. Count: 59, Neg. LLF: 116.59347876990057
Iteration: 12, Func. Count: 63, Neg. LLF: 116.59347894516473
Optimization terminated successfully (Exit mode 0)
Current function value: 116.59347876990057
Iterations: 12
Function evaluations: 63
Gradient evaluations: 12
Iteration: 1, Func. Count: 7, Neg. LLF: 29120160.36908632
Iteration: 2, Func. Count: 15, Neg. LLF: 213.11799929778775
Iteration: 3, Func. Count: 23, Neg. LLF: 118.527946161564
Iteration: 4, Func. Count: 29, Neg. LLF: 118.13191869319432
Iteration: 5, Func. Count: 35, Neg. LLF: 119.22371002802021
Iteration: 6, Func. Count: 42, Neg. LLF: 119.41906881875403
Iteration: 7, Func. Count: 49, Neg. LLF: 119.0116252426697
Iteration: 8, Func. Count: 56, Neg. LLF: 117.66789145357622
Iteration: 9, Func. Count: 62, Neg. LLF: 117.39650529042478
Iteration: 10, Func. Count: 68, Neg. LLF: 117.56361542573298
Iteration: 11, Func. Count: 75, Neg. LLF: 117.05623709914326
Iteration: 12, Func. Count: 81, Neg. LLF: 117.03934731590451
Iteration: 13, Func. Count: 87, Neg. LLF: 117.02098613444925
Iteration: 14, Func. Count: 93, Neg. LLF: 117.00572336761697
Iteration: 15, Func. Count: 99, Neg. LLF: 117.00193438821847
Iteration: 16, Func. Count: 105, Neg. LLF: 117.00157310358301
Iteration: 17, Func. Count: 111, Neg. LLF: 117.00155629471479
Iteration: 18, Func. Count: 117, Neg. LLF: 117.00155246323895
Iteration: 19, Func. Count: 123, Neg. LLF: 117.00155185827771
Optimization terminated successfully (Exit mode 0)
Current function value: 117.00155185827771
Iterations: 19
Function evaluations: 123
Gradient evaluations: 19
Iteration: 1, Func. Count: 8, Neg. LLF: 5302129.360442039
Iteration: 2, Func. Count: 16, Neg. LLF: 19592596.275423188
Iteration: 3, Func. Count: 24, Neg. LLF: 125.6851209657736
Iteration: 4, Func. Count: 32, Neg. LLF: 125.49741906914242
Iteration: 5, Func. Count: 40, Neg. LLF: 116.90054129733355
Iteration: 6, Func. Count: 47, Neg. LLF: 117.30310928285094
Iteration: 7, Func. Count: 55, Neg. LLF: 116.70554213832072
Iteration: 8, Func. Count: 62, Neg. LLF: 116.69575244770954
Iteration: 9, Func. Count: 69, Neg. LLF: 116.69555339812545
Iteration: 10, Func. Count: 76, Neg. LLF: 116.69534317381594
Iteration: 11, Func. Count: 83, Neg. LLF: 116.69531675681985
Iteration: 12, Func. Count: 90, Neg. LLF: 116.69530250696033
Iteration: 13, Func. Count: 96, Neg. LLF: 116.69530250693552
Optimization terminated successfully (Exit mode 0)
Current function value: 116.69530250696033
Iterations: 13
Function evaluations: 96
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 5221041.263541703
Iteration: 2, Func. Count: 18, Neg. LLF: 18445520.66606513
Iteration: 3, Func. Count: 27, Neg. LLF: 127.11824839793431
Iteration: 4, Func. Count: 36, Neg. LLF: 130.58526636513045
Iteration: 5, Func. Count: 45, Neg. LLF: 115.70892880462912
Iteration: 6, Func. Count: 53, Neg. LLF: 115.61790346182356
Iteration: 7, Func. Count: 61, Neg. LLF: 115.59776645851315
Iteration: 8, Func. Count: 69, Neg. LLF: 115.59583756928963
Iteration: 9, Func. Count: 77, Neg. LLF: 115.59558880282042
Iteration: 10, Func. Count: 85, Neg. LLF: 115.59504274713699
Iteration: 11, Func. Count: 93, Neg. LLF: 115.59487129461723
Iteration: 12, Func. Count: 101, Neg. LLF: 115.59482706003708
Iteration: 13, Func. Count: 109, Neg. LLF: 115.59482549895755
Iteration: 14, Func. Count: 116, Neg. LLF: 115.59482549894688
Optimization terminated successfully (Exit mode 0)
Current function value: 115.59482549895755
Iterations: 14
Function evaluations: 116
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 5207101.049007441
Iteration: 2, Func. Count: 20, Neg. LLF: 139.28332278430017
Iteration: 3, Func. Count: 30, Neg. LLF: 243.5149955765734
Iteration: 4, Func. Count: 40, Neg. LLF: 202.6846451579068
Iteration: 5, Func. Count: 50, Neg. LLF: 115.69791709690797
Iteration: 6, Func. Count: 59, Neg. LLF: 116.77535574763817
Iteration: 7, Func. Count: 69, Neg. LLF: 115.65294924495291
Iteration: 8, Func. Count: 79, Neg. LLF: 115.59721596134565
Iteration: 9, Func. Count: 88, Neg. LLF: 115.59507985988226
Iteration: 10, Func. Count: 97, Neg. LLF: 115.59495227065298
Iteration: 11, Func. Count: 106, Neg. LLF: 115.59486199077489
Iteration: 12, Func. Count: 115, Neg. LLF: 115.5948285161596
Iteration: 13, Func. Count: 124, Neg. LLF: 115.59482661073449
Iteration: 14, Func. Count: 133, Neg. LLF: 115.59482562055011
Optimization terminated successfully (Exit mode 0)
Current function value: 115.59482562055011
Iterations: 14
Function evaluations: 133
Gradient evaluations: 14
Iteration: 1, Func. Count: 7, Neg. LLF: 121.67002599153146
Iteration: 2, Func. Count: 15, Neg. LLF: 147.0130310597303
Iteration: 3, Func. Count: 22, Neg. LLF: 116.61229954714081
Iteration: 4, Func. Count: 28, Neg. LLF: 116.60700519064682
Iteration: 5, Func. Count: 34, Neg. LLF: 116.6044114699055
Iteration: 6, Func. Count: 40, Neg. LLF: 116.60280149417561
Iteration: 7, Func. Count: 46, Neg. LLF: 116.5987293108262
Iteration: 8, Func. Count: 52, Neg. LLF: 116.59524149537808
Iteration: 9, Func. Count: 58, Neg. LLF: 116.59364105558218
Iteration: 10, Func. Count: 64, Neg. LLF: 116.59348547544903
Iteration: 11, Func. Count: 70, Neg. LLF: 116.59347893004332
Iteration: 12, Func. Count: 75, Neg. LLF: 116.59347900903906
Optimization terminated successfully (Exit mode 0)
Current function value: 116.59347893004332
Iterations: 12
Function evaluations: 75
Gradient evaluations: 12
Iteration: 1, Func. Count: 8, Neg. LLF: 31561771.32574061
Iteration: 2, Func. Count: 17, Neg. LLF: 184.6595050802186
Iteration: 3, Func. Count: 26, Neg. LLF: 117.8626396657022
Iteration: 4, Func. Count: 33, Neg. LLF: 119.72780131637653
Iteration: 5, Func. Count: 42, Neg. LLF: 117.76155566507866
Iteration: 6, Func. Count: 50, Neg. LLF: 116.82712750106995
Iteration: 7, Func. Count: 57, Neg. LLF: 116.48256043080343
Iteration: 8, Func. Count: 64, Neg. LLF: 116.48318294295676
Iteration: 9, Func. Count: 72, Neg. LLF: 116.44497578829322
Iteration: 10, Func. Count: 79, Neg. LLF: 116.43421813400812
Iteration: 11, Func. Count: 86, Neg. LLF: 116.41716983197735
Iteration: 12, Func. Count: 93, Neg. LLF: 116.38382315202571
Iteration: 13, Func. Count: 100, Neg. LLF: 116.34930721014233
Iteration: 14, Func. Count: 107, Neg. LLF: 116.31547214319626
Iteration: 15, Func. Count: 114, Neg. LLF: 116.25909966887262
Iteration: 16, Func. Count: 121, Neg. LLF: 116.25080365487352
Iteration: 17, Func. Count: 128, Neg. LLF: 116.24937941002317
Iteration: 18, Func. Count: 135, Neg. LLF: 116.24933614468776
Iteration: 19, Func. Count: 142, Neg. LLF: 116.24930657991689
Iteration: 20, Func. Count: 148, Neg. LLF: 116.24930658000635
Optimization terminated successfully (Exit mode 0)
Current function value: 116.24930657991689
Iterations: 20
Function evaluations: 148
Gradient evaluations: 20
Iteration: 1, Func. Count: 9, Neg. LLF: 5404534.329031799
Iteration: 2, Func. Count: 18, Neg. LLF: 18216478.542447027
Iteration: 3, Func. Count: 27, Neg. LLF: 134.6544311972098
Iteration: 4, Func. Count: 36, Neg. LLF: 134.40680853873843
Iteration: 5, Func. Count: 45, Neg. LLF: 116.6173626375395
Iteration: 6, Func. Count: 53, Neg. LLF: 118.04384667868098
Iteration: 7, Func. Count: 62, Neg. LLF: 116.3006959210844
Iteration: 8, Func. Count: 70, Neg. LLF: 116.26921440709242
Iteration: 9, Func. Count: 78, Neg. LLF: 116.24977106600898
Iteration: 10, Func. Count: 86, Neg. LLF: 116.24938782790221
Iteration: 11, Func. Count: 94, Neg. LLF: 116.24934379580118
Iteration: 12, Func. Count: 102, Neg. LLF: 116.24931488379909
Iteration: 13, Func. Count: 110, Neg. LLF: 116.24930644324074
Iteration: 14, Func. Count: 117, Neg. LLF: 116.24930651077742
Optimization terminated successfully (Exit mode 0)
Current function value: 116.24930644324074
Iterations: 14
Function evaluations: 117
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 5349869.898504221
Iteration: 2, Func. Count: 20, Neg. LLF: 17628331.166616965
Iteration: 3, Func. Count: 30, Neg. LLF: 133.13159308987946
Iteration: 4, Func. Count: 40, Neg. LLF: 118.7115170658287
Iteration: 5, Func. Count: 50, Neg. LLF: 115.74240981234054
Iteration: 6, Func. Count: 59, Neg. LLF: 117.17239542544631
Iteration: 7, Func. Count: 69, Neg. LLF: 115.54850650964012
Iteration: 8, Func. Count: 78, Neg. LLF: 115.54621632311127
Iteration: 9, Func. Count: 87, Neg. LLF: 115.54561681452282
Iteration: 10, Func. Count: 96, Neg. LLF: 115.54548940985886
Iteration: 11, Func. Count: 105, Neg. LLF: 115.54547815944817
Iteration: 12, Func. Count: 114, Neg. LLF: 115.54546646546164
Iteration: 13, Func. Count: 122, Neg. LLF: 115.54546646546117
Optimization terminated successfully (Exit mode 0)
Current function value: 115.54546646546164
Iterations: 13
Function evaluations: 122
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 5380902.350206041
Iteration: 2, Func. Count: 22, Neg. LLF: 17335094.644732364
Iteration: 3, Func. Count: 33, Neg. LLF: 124.08476231043176
Iteration: 4, Func. Count: 44, Neg. LLF: 118.86199424817741
Iteration: 5, Func. Count: 55, Neg. LLF: 115.66363893508503
Iteration: 6, Func. Count: 65, Neg. LLF: 115.96926441802013
Iteration: 7, Func. Count: 76, Neg. LLF: 115.61692003542831
Iteration: 8, Func. Count: 86, Neg. LLF: 117.30541926892117
Iteration: 9, Func. Count: 97, Neg. LLF: 116.8490054494601
Iteration: 10, Func. Count: 108, Neg. LLF: 115.56039384661709
Iteration: 11, Func. Count: 119, Neg. LLF: 115.5468183265054
Iteration: 12, Func. Count: 129, Neg. LLF: 115.54630353316934
Iteration: 13, Func. Count: 139, Neg. LLF: 115.54575255513477
Iteration: 14, Func. Count: 149, Neg. LLF: 115.54557712848177
Iteration: 15, Func. Count: 159, Neg. LLF: 115.54548875268793
Iteration: 16, Func. Count: 169, Neg. LLF: 115.54546850458291
Iteration: 17, Func. Count: 179, Neg. LLF: 115.54546614699724
Iteration: 18, Func. Count: 188, Neg. LLF: 115.5454662151198
Optimization terminated successfully (Exit mode 0)
Current function value: 115.54546614699724
Iterations: 18
Function evaluations: 188
Gradient evaluations: 18
Iteration: 1, Func. Count: 8, Neg. LLF: 124.57709558046692
Iteration: 2, Func. Count: 17, Neg. LLF: 148.6607906944652
Iteration: 3, Func. Count: 25, Neg. LLF: 119.3584220888445
Iteration: 4, Func. Count: 33, Neg. LLF: 141.38147601252587
Iteration: 5, Func. Count: 41, Neg. LLF: 416794.9210259174
Iteration: 6, Func. Count: 49, Neg. LLF: 114.94485171526817
Iteration: 7, Func. Count: 56, Neg. LLF: 114.83891810868961
Iteration: 8, Func. Count: 63, Neg. LLF: 114.8205719594513
Iteration: 9, Func. Count: 70, Neg. LLF: 114.80416084213559
Iteration: 10, Func. Count: 77, Neg. LLF: 114.79867093168497
Iteration: 11, Func. Count: 84, Neg. LLF: 114.79162341594527
Iteration: 12, Func. Count: 91, Neg. LLF: 114.78783893912676
Iteration: 13, Func. Count: 98, Neg. LLF: 114.78698097954162
Iteration: 14, Func. Count: 105, Neg. LLF: 114.78693178751578
Iteration: 15, Func. Count: 112, Neg. LLF: 114.78692964754914
Iteration: 16, Func. Count: 118, Neg. LLF: 114.78692964755399
Optimization terminated successfully (Exit mode 0)
Current function value: 114.78692964754914
Iterations: 16
Function evaluations: 118
Gradient evaluations: 16
Iteration: 1, Func. Count: 9, Neg. LLF: 31725456.262628004
Iteration: 2, Func. Count: 19, Neg. LLF: 465.326993829352
Iteration: 3, Func. Count: 29, Neg. LLF: 117.95578123574404
Iteration: 4, Func. Count: 37, Neg. LLF: 118.79329704299676
Iteration: 5, Func. Count: 47, Neg. LLF: 118.14736951359575
Iteration: 6, Func. Count: 56, Neg. LLF: 116.87143102576509
Iteration: 7, Func. Count: 64, Neg. LLF: 115.65286723926792
Iteration: 8, Func. Count: 72, Neg. LLF: 115.48638568560975
Iteration: 9, Func. Count: 80, Neg. LLF: 115.3967396487598
Iteration: 10, Func. Count: 88, Neg. LLF: 115.31700689500434
Iteration: 11, Func. Count: 96, Neg. LLF: 115.1994193296158
Iteration: 12, Func. Count: 104, Neg. LLF: 115.13801822383718
Iteration: 13, Func. Count: 112, Neg. LLF: 115.06641837461592
Iteration: 14, Func. Count: 120, Neg. LLF: 115.03150743178324
Iteration: 15, Func. Count: 128, Neg. LLF: 115.0198593276388
Iteration: 16, Func. Count: 136, Neg. LLF: 115.00742874489583
Iteration: 17, Func. Count: 144, Neg. LLF: 115.00118619472619
Iteration: 18, Func. Count: 152, Neg. LLF: 114.99401269528205
Iteration: 19, Func. Count: 160, Neg. LLF: 114.98138146677228
Iteration: 20, Func. Count: 168, Neg. LLF: 114.95101246097084
Iteration: 21, Func. Count: 176, Neg. LLF: 114.89516707005656
Iteration: 22, Func. Count: 184, Neg. LLF: 114.83683012323799
Iteration: 23, Func. Count: 192, Neg. LLF: 114.79541924169004
Iteration: 24, Func. Count: 200, Neg. LLF: 114.78714039781991
Iteration: 25, Func. Count: 208, Neg. LLF: 114.78693648144818
Iteration: 26, Func. Count: 216, Neg. LLF: 114.78693094082288
Iteration: 27, Func. Count: 224, Neg. LLF: 114.78692963306261
Iteration: 28, Func. Count: 231, Neg. LLF: 114.78692969536372
Optimization terminated successfully (Exit mode 0)
Current function value: 114.78692963306261
Iterations: 28
Function evaluations: 231
Gradient evaluations: 28
Iteration: 1, Func. Count: 10, Neg. LLF: 5335559.340827991
Iteration: 2, Func. Count: 20, Neg. LLF: 6772514.616650749
Iteration: 3, Func. Count: 30, Neg. LLF: 1217162.0288779947
Iteration: 4, Func. Count: 40, Neg. LLF: 146158.5130009483
Iteration: 5, Func. Count: 50, Neg. LLF: 119.73820475187766
Iteration: 6, Func. Count: 60, Neg. LLF: 114.83178221757763
Iteration: 7, Func. Count: 69, Neg. LLF: 114.80248151562918
Iteration: 8, Func. Count: 78, Neg. LLF: 114.79227207315066
Iteration: 9, Func. Count: 87, Neg. LLF: 114.78781544158112
Iteration: 10, Func. Count: 96, Neg. LLF: 114.78736685986176
Iteration: 11, Func. Count: 105, Neg. LLF: 114.78697194044464
Iteration: 12, Func. Count: 114, Neg. LLF: 114.78694028549123
Iteration: 13, Func. Count: 123, Neg. LLF: 114.7869332002049
Iteration: 14, Func. Count: 132, Neg. LLF: 114.7869314912727
Iteration: 15, Func. Count: 141, Neg. LLF: 114.78693024431963
Iteration: 16, Func. Count: 149, Neg. LLF: 114.78693031444831
Optimization terminated successfully (Exit mode 0)
Current function value: 114.78693024431963
Iterations: 16
Function evaluations: 149
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 5313069.301095975
Iteration: 2, Func. Count: 22, Neg. LLF: 5973954.931538069
Iteration: 3, Func. Count: 33, Neg. LLF: 999792.3541358598
Iteration: 4, Func. Count: 44, Neg. LLF: 96685.23647542283
Iteration: 5, Func. Count: 55, Neg. LLF: 142.22923488155402
Iteration: 6, Func. Count: 66, Neg. LLF: 114.85195707842398
Iteration: 7, Func. Count: 76, Neg. LLF: 114.80329366857832
Iteration: 8, Func. Count: 86, Neg. LLF: 114.78852434238951
Iteration: 9, Func. Count: 96, Neg. LLF: 114.78796583719426
Iteration: 10, Func. Count: 106, Neg. LLF: 114.78717412575025
Iteration: 11, Func. Count: 116, Neg. LLF: 114.78696917790319
Iteration: 12, Func. Count: 126, Neg. LLF: 114.78693648266417
Iteration: 13, Func. Count: 136, Neg. LLF: 114.78693202546305
Iteration: 14, Func. Count: 146, Neg. LLF: 114.78693035218022
Iteration: 15, Func. Count: 155, Neg. LLF: 114.78693041544653
Optimization terminated successfully (Exit mode 0)
Current function value: 114.78693035218022
Iterations: 15
Function evaluations: 155
Gradient evaluations: 15
Iteration: 1, Func. Count: 12, Neg. LLF: 5334053.433768938
Iteration: 2, Func. Count: 24, Neg. LLF: 17301445.232193634
Iteration: 3, Func. Count: 36, Neg. LLF: 1263078.2624762587
Iteration: 4, Func. Count: 48, Neg. LLF: 94715.21613865823
Iteration: 5, Func. Count: 60, Neg. LLF: 191.68339591747727
Iteration: 6, Func. Count: 72, Neg. LLF: 114.90577952177728
Iteration: 7, Func. Count: 83, Neg. LLF: 114.84414113175042
Iteration: 8, Func. Count: 94, Neg. LLF: 114.8250865566593
Iteration: 9, Func. Count: 105, Neg. LLF: 114.79223281603903
Iteration: 10, Func. Count: 116, Neg. LLF: 114.78859953329913
Iteration: 11, Func. Count: 127, Neg. LLF: 114.78749804622723
Iteration: 12, Func. Count: 138, Neg. LLF: 114.78704279155085
Iteration: 13, Func. Count: 149, Neg. LLF: 114.78694098160888
Iteration: 14, Func. Count: 160, Neg. LLF: 114.78693193586446
Iteration: 15, Func. Count: 171, Neg. LLF: 114.78693095298279
Optimization terminated successfully (Exit mode 0)
Current function value: 114.78693095298279
Iterations: 15
Function evaluations: 171
Gradient evaluations: 15
Iteration: 1, Func. Count: 5, Neg. LLF: 118.91739483231088
Iteration: 2, Func. Count: 10, Neg. LLF: 120.80453763956069
Iteration: 3, Func. Count: 15, Neg. LLF: 116.5587561167902
Iteration: 4, Func. Count: 19, Neg. LLF: 116.4611477443038
Iteration: 5, Func. Count: 23, Neg. LLF: 116.43985371425875
Iteration: 6, Func. Count: 27, Neg. LLF: 116.43969206783548
Iteration: 7, Func. Count: 31, Neg. LLF: 116.43968862520111
Iteration: 8, Func. Count: 34, Neg. LLF: 116.43968862521324
Optimization terminated successfully (Exit mode 0)
Current function value: 116.43968862520111
Iterations: 8
Function evaluations: 34
Gradient evaluations: 8
Iteration: 1, Func. Count: 6, Neg. LLF: 3762.8176107190056
Iteration: 2, Func. Count: 12, Neg. LLF: 617.6823591657767
Iteration: 3, Func. Count: 18, Neg. LLF: 122.7018928567267
Iteration: 4, Func. Count: 24, Neg. LLF: 118.14747596589521
Iteration: 5, Func. Count: 30, Neg. LLF: 115.99103168088676
Iteration: 6, Func. Count: 36, Neg. LLF: 115.88413404952526
Iteration: 7, Func. Count: 41, Neg. LLF: 115.88232792285177
Iteration: 8, Func. Count: 46, Neg. LLF: 115.88197053170622
Iteration: 9, Func. Count: 51, Neg. LLF: 115.88196979989118
Optimization terminated successfully (Exit mode 0)
Current function value: 115.88196979989118
Iterations: 9
Function evaluations: 51
Gradient evaluations: 9
Iteration: 1, Func. Count: 7, Neg. LLF: 17729351.48395473
Iteration: 2, Func. Count: 14, Neg. LLF: 673.5910131663936
Iteration: 3, Func. Count: 21, Neg. LLF: 131.75856360419058
Iteration: 4, Func. Count: 28, Neg. LLF: 123.65277409289673
Iteration: 5, Func. Count: 35, Neg. LLF: 116.04237902566666
Iteration: 6, Func. Count: 42, Neg. LLF: 115.63849615767846
Iteration: 7, Func. Count: 48, Neg. LLF: 115.63571635899144
Iteration: 8, Func. Count: 54, Neg. LLF: 115.63504094779174
Iteration: 9, Func. Count: 60, Neg. LLF: 115.63496124662653
Iteration: 10, Func. Count: 66, Neg. LLF: 115.63495700390934
Iteration: 11, Func. Count: 71, Neg. LLF: 115.63495700394787
Optimization terminated successfully (Exit mode 0)
Current function value: 115.63495700390934
Iterations: 11
Function evaluations: 71
Gradient evaluations: 11
Iteration: 1, Func. Count: 8, Neg. LLF: 4239.352676008804
Iteration: 2, Func. Count: 16, Neg. LLF: 913.3736109488628
Iteration: 3, Func. Count: 24, Neg. LLF: 129.58371586026269
Iteration: 4, Func. Count: 32, Neg. LLF: 124.9436664035618
Iteration: 5, Func. Count: 40, Neg. LLF: 115.76056601126476
Iteration: 6, Func. Count: 47, Neg. LLF: 115.64986097756189
Iteration: 7, Func. Count: 54, Neg. LLF: 115.63685644221475
Iteration: 8, Func. Count: 61, Neg. LLF: 115.63528166777829
Iteration: 9, Func. Count: 68, Neg. LLF: 115.63498663166219
Iteration: 10, Func. Count: 75, Neg. LLF: 115.63495770287602
Iteration: 11, Func. Count: 82, Neg. LLF: 115.63495697522582
Optimization terminated successfully (Exit mode 0)
Current function value: 115.63495697522582
Iterations: 11
Function evaluations: 82
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 119.82573865441339
Iteration: 2, Func. Count: 18, Neg. LLF: 159.74586183566416
Iteration: 3, Func. Count: 27, Neg. LLF: 9235616.43831971
Iteration: 4, Func. Count: 36, Neg. LLF: 119.23279093877376
Iteration: 5, Func. Count: 45, Neg. LLF: 115.83446090997239
Iteration: 6, Func. Count: 53, Neg. LLF: 115.68952297910208
Iteration: 7, Func. Count: 61, Neg. LLF: 115.65546425389576
Iteration: 8, Func. Count: 69, Neg. LLF: 115.63593414937606
Iteration: 9, Func. Count: 77, Neg. LLF: 115.63498494240997
Iteration: 10, Func. Count: 85, Neg. LLF: 115.63495810816055
Iteration: 11, Func. Count: 93, Neg. LLF: 115.63495704352543
Iteration: 12, Func. Count: 100, Neg. LLF: 115.6349571061395
Optimization terminated successfully (Exit mode 0)
Current function value: 115.63495704352543
Iterations: 12
Function evaluations: 100
Gradient evaluations: 12
Iteration: 1, Func. Count: 6, Neg. LLF: 118.33596976597323
Iteration: 2, Func. Count: 12, Neg. LLF: 118.44382267458045
Iteration: 3, Func. Count: 19, Neg. LLF: 116.49294515719244
Iteration: 4, Func. Count: 25, Neg. LLF: 115.6643391681358
Iteration: 5, Func. Count: 30, Neg. LLF: 115.6050531873048
Iteration: 6, Func. Count: 35, Neg. LLF: 115.60165403052423
Iteration: 7, Func. Count: 40, Neg. LLF: 115.60158515518681
Iteration: 8, Func. Count: 45, Neg. LLF: 115.60158391419705
Iteration: 9, Func. Count: 49, Neg. LLF: 115.60158391419478
Optimization terminated successfully (Exit mode 0)
Current function value: 115.60158391419705
Iterations: 9
Function evaluations: 49
Gradient evaluations: 9
Iteration: 1, Func. Count: 7, Neg. LLF: 361.7247487012365
Iteration: 2, Func. Count: 14, Neg. LLF: 141.5507627521809
Iteration: 3, Func. Count: 21, Neg. LLF: 121.84264591876024
Iteration: 4, Func. Count: 28, Neg. LLF: 115.70518921420589
Iteration: 5, Func. Count: 35, Neg. LLF: 115.7742364290418
Iteration: 6, Func. Count: 42, Neg. LLF: 115.50440138526996
Iteration: 7, Func. Count: 49, Neg. LLF: 115.49143331819074
Iteration: 8, Func. Count: 55, Neg. LLF: 115.49140168261222
Iteration: 9, Func. Count: 60, Neg. LLF: 115.49140168257486
Optimization terminated successfully (Exit mode 0)
Current function value: 115.49140168261222
Iterations: 9
Function evaluations: 60
Gradient evaluations: 9
Iteration: 1, Func. Count: 8, Neg. LLF: 434.3093964040401
Iteration: 2, Func. Count: 16, Neg. LLF: 239.85503697033582
Iteration: 3, Func. Count: 24, Neg. LLF: 123.18824321634467
Iteration: 4, Func. Count: 32, Neg. LLF: 117.08823852114286
Iteration: 5, Func. Count: 40, Neg. LLF: 114.96016925718432
Iteration: 6, Func. Count: 47, Neg. LLF: 114.87031448114837
Iteration: 7, Func. Count: 54, Neg. LLF: 114.83785294955008
Iteration: 8, Func. Count: 61, Neg. LLF: 114.8051702807892
Iteration: 9, Func. Count: 68, Neg. LLF: 114.80253909166217
Iteration: 10, Func. Count: 75, Neg. LLF: 114.80222107044086
Iteration: 11, Func. Count: 82, Neg. LLF: 114.8022063516674
Iteration: 12, Func. Count: 89, Neg. LLF: 114.80220483044448
Iteration: 13, Func. Count: 95, Neg. LLF: 114.80220483043296
Optimization terminated successfully (Exit mode 0)
Current function value: 114.80220483044448
Iterations: 13
Function evaluations: 95
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 374.384891840286
Iteration: 2, Func. Count: 18, Neg. LLF: 222.0380254954953
Iteration: 3, Func. Count: 27, Neg. LLF: 146.39173679259272
Iteration: 4, Func. Count: 36, Neg. LLF: 115.55459043135993
Iteration: 5, Func. Count: 45, Neg. LLF: 114.86559154131311
Iteration: 6, Func. Count: 53, Neg. LLF: 115.13052850523212
Iteration: 7, Func. Count: 62, Neg. LLF: 114.8531801157184
Iteration: 8, Func. Count: 71, Neg. LLF: 114.80852952383776
Iteration: 9, Func. Count: 79, Neg. LLF: 114.81081296734837
Iteration: 10, Func. Count: 88, Neg. LLF: 114.80339811925776
Iteration: 11, Func. Count: 96, Neg. LLF: 114.8022083340177
Iteration: 12, Func. Count: 104, Neg. LLF: 114.80220492209017
Iteration: 13, Func. Count: 111, Neg. LLF: 114.80220493001715
Optimization terminated successfully (Exit mode 0)
Current function value: 114.80220492209017
Iterations: 13
Function evaluations: 111
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 120.4636555230177
Iteration: 2, Func. Count: 20, Neg. LLF: 120.26341079204661
Iteration: 3, Func. Count: 30, Neg. LLF: 135.48269589972082
Iteration: 4, Func. Count: 40, Neg. LLF: 1256.8089136556875
Iteration: 5, Func. Count: 50, Neg. LLF: 117.36248579733329
Iteration: 6, Func. Count: 60, Neg. LLF: 144.63562015252225
Iteration: 7, Func. Count: 70, Neg. LLF: 114.86243298848832
Iteration: 8, Func. Count: 79, Neg. LLF: 117.26401231552454
Iteration: 9, Func. Count: 90, Neg. LLF: 114.83073058230659
Iteration: 10, Func. Count: 99, Neg. LLF: 114.81299277876046
Iteration: 11, Func. Count: 108, Neg. LLF: 114.80295574239265
Iteration: 12, Func. Count: 117, Neg. LLF: 114.80228291248378
Iteration: 13, Func. Count: 126, Neg. LLF: 114.80220529324475
Iteration: 14, Func. Count: 135, Neg. LLF: 114.80220476673836
Optimization terminated successfully (Exit mode 0)
Current function value: 114.80220476673836
Iterations: 14
Function evaluations: 135
Gradient evaluations: 14
Iteration: 1, Func. Count: 7, Neg. LLF: 118.24619235421937
Iteration: 2, Func. Count: 14, Neg. LLF: 118.77605773127482
Iteration: 3, Func. Count: 22, Neg. LLF: 116.814793868423
Iteration: 4, Func. Count: 29, Neg. LLF: 115.95931908674368
Iteration: 5, Func. Count: 36, Neg. LLF: 115.60285822718508
Iteration: 6, Func. Count: 42, Neg. LLF: 115.6016844168305
Iteration: 7, Func. Count: 48, Neg. LLF: 115.60159130892714
Iteration: 8, Func. Count: 54, Neg. LLF: 115.60158434723007
Iteration: 9, Func. Count: 59, Neg. LLF: 115.60158443619837
Optimization terminated successfully (Exit mode 0)
Current function value: 115.60158434723007
Iterations: 9
Function evaluations: 59
Gradient evaluations: 9
Iteration: 1, Func. Count: 8, Neg. LLF: 204.15355845876164
Iteration: 2, Func. Count: 16, Neg. LLF: 122.96743578432057
Iteration: 3, Func. Count: 24, Neg. LLF: 131.08700394312632
Iteration: 4, Func. Count: 32, Neg. LLF: 123.28203955045731
Iteration: 5, Func. Count: 40, Neg. LLF: 120.32870249041824
Iteration: 6, Func. Count: 48, Neg. LLF: 115.49837354947896
Iteration: 7, Func. Count: 55, Neg. LLF: 115.49358992977729
Iteration: 8, Func. Count: 62, Neg. LLF: 115.49145520486849
Iteration: 9, Func. Count: 69, Neg. LLF: 115.49141738430542
Iteration: 10, Func. Count: 76, Neg. LLF: 115.49140126877386
Iteration: 11, Func. Count: 82, Neg. LLF: 115.49140126876621
Optimization terminated successfully (Exit mode 0)
Current function value: 115.49140126877386
Iterations: 11
Function evaluations: 82
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 209.7397435499221
Iteration: 2, Func. Count: 18, Neg. LLF: 117.22363980555774
Iteration: 3, Func. Count: 27, Neg. LLF: 218.4358516073583
Iteration: 4, Func. Count: 36, Neg. LLF: 130.9121249137366
Iteration: 5, Func. Count: 45, Neg. LLF: 126.97146590788935
Iteration: 6, Func. Count: 54, Neg. LLF: 115.48834931582901
Iteration: 7, Func. Count: 63, Neg. LLF: 114.83491911336755
Iteration: 8, Func. Count: 71, Neg. LLF: 114.90867830426194
Iteration: 9, Func. Count: 80, Neg. LLF: 114.80333091878785
Iteration: 10, Func. Count: 88, Neg. LLF: 114.80226893957946
Iteration: 11, Func. Count: 96, Neg. LLF: 114.8022057803517
Iteration: 12, Func. Count: 104, Neg. LLF: 114.80220474554876
Iteration: 13, Func. Count: 111, Neg. LLF: 114.80220474554577
Optimization terminated successfully (Exit mode 0)
Current function value: 114.80220474554876
Iterations: 13
Function evaluations: 111
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 187.24250406282718
Iteration: 2, Func. Count: 20, Neg. LLF: 133.83719363661064
Iteration: 3, Func. Count: 30, Neg. LLF: 136.56900332271505
Iteration: 4, Func. Count: 40, Neg. LLF: 128.94828567184376
Iteration: 5, Func. Count: 50, Neg. LLF: 117.92094783547134
Iteration: 6, Func. Count: 60, Neg. LLF: 114.87429301074395
Iteration: 7, Func. Count: 69, Neg. LLF: 114.86730479398386
Iteration: 8, Func. Count: 79, Neg. LLF: 116.12040175017282
Iteration: 9, Func. Count: 89, Neg. LLF: 114.80725759674806
Iteration: 10, Func. Count: 98, Neg. LLF: 114.80224614714791
Iteration: 11, Func. Count: 107, Neg. LLF: 114.80220726357177
Iteration: 12, Func. Count: 116, Neg. LLF: 114.8022048521496
Iteration: 13, Func. Count: 124, Neg. LLF: 114.80220486010123
Optimization terminated successfully (Exit mode 0)
Current function value: 114.8022048521496
Iterations: 13
Function evaluations: 124
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 121.05954577292897
Iteration: 2, Func. Count: 22, Neg. LLF: 134.88983191453627
Iteration: 3, Func. Count: 33, Neg. LLF: 136.09237633216102
Iteration: 4, Func. Count: 44, Neg. LLF: 166.16872634516537
Iteration: 5, Func. Count: 55, Neg. LLF: 124.67037440670714
Iteration: 6, Func. Count: 66, Neg. LLF: 115.14563063702755
Iteration: 7, Func. Count: 76, Neg. LLF: 114.97156106704
Iteration: 8, Func. Count: 86, Neg. LLF: 116.165873627583
Iteration: 9, Func. Count: 98, Neg. LLF: 115.53458221463576
Iteration: 10, Func. Count: 109, Neg. LLF: 114.80748383519773
Iteration: 11, Func. Count: 119, Neg. LLF: 114.80255115097276
Iteration: 12, Func. Count: 129, Neg. LLF: 114.80222593864575
Iteration: 13, Func. Count: 139, Neg. LLF: 114.80220538676996
Iteration: 14, Func. Count: 149, Neg. LLF: 114.80220476378484
Optimization terminated successfully (Exit mode 0)
Current function value: 114.80220476378484
Iterations: 14
Function evaluations: 149
Gradient evaluations: 14
Iteration: 1, Func. Count: 8, Neg. LLF: 120.2787135253347
Iteration: 2, Func. Count: 16, Neg. LLF: 119.53262659807235
Iteration: 3, Func. Count: 25, Neg. LLF: 118.93929861554143
Iteration: 4, Func. Count: 33, Neg. LLF: 123.79703190194498
Iteration: 5, Func. Count: 41, Neg. LLF: 117.69798173838346
Iteration: 6, Func. Count: 49, Neg. LLF: 115.17382642375911
Iteration: 7, Func. Count: 56, Neg. LLF: 115.15637666843452
Iteration: 8, Func. Count: 63, Neg. LLF: 115.15569947358534
Iteration: 9, Func. Count: 70, Neg. LLF: 115.15568502935464
Iteration: 10, Func. Count: 77, Neg. LLF: 115.15568372505106
Iteration: 11, Func. Count: 83, Neg. LLF: 115.15568372505149
Optimization terminated successfully (Exit mode 0)
Current function value: 115.15568372505106
Iterations: 11
Function evaluations: 83
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 210.28314938545205
Iteration: 2, Func. Count: 18, Neg. LLF: 622.831941449922
Iteration: 3, Func. Count: 27, Neg. LLF: 149.062503964602
Iteration: 4, Func. Count: 36, Neg. LLF: 130.55912062604514
Iteration: 5, Func. Count: 45, Neg. LLF: 115.71209681977835
Iteration: 6, Func. Count: 54, Neg. LLF: 115.31084588467314
Iteration: 7, Func. Count: 63, Neg. LLF: 115.34030147867841
Iteration: 8, Func. Count: 72, Neg. LLF: 115.03597459898174
Iteration: 9, Func. Count: 81, Neg. LLF: 114.97125759961718
Iteration: 10, Func. Count: 89, Neg. LLF: 114.97056096596796
Iteration: 11, Func. Count: 97, Neg. LLF: 114.97052199306033
Iteration: 12, Func. Count: 105, Neg. LLF: 114.9705121273353
Iteration: 13, Func. Count: 113, Neg. LLF: 114.97051127787441
Optimization terminated successfully (Exit mode 0)
Current function value: 114.97051127787441
Iterations: 13
Function evaluations: 113
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 228.02385162562112
Iteration: 2, Func. Count: 20, Neg. LLF: 326.57960024021963
Iteration: 3, Func. Count: 30, Neg. LLF: 147.2382046078712
Iteration: 4, Func. Count: 40, Neg. LLF: 137.47162881936774
Iteration: 5, Func. Count: 50, Neg. LLF: 130.86738507928064
Iteration: 6, Func. Count: 60, Neg. LLF: 116.88812736245679
Iteration: 7, Func. Count: 70, Neg. LLF: 114.88164946946635
Iteration: 8, Func. Count: 79, Neg. LLF: 114.80446669706134
Iteration: 9, Func. Count: 88, Neg. LLF: 114.80368081721863
Iteration: 10, Func. Count: 98, Neg. LLF: 114.78199443479603
Iteration: 11, Func. Count: 107, Neg. LLF: 114.78163423900091
Iteration: 12, Func. Count: 116, Neg. LLF: 114.78158663650179
Iteration: 13, Func. Count: 125, Neg. LLF: 114.78158347426583
Iteration: 14, Func. Count: 133, Neg. LLF: 114.78158347430384
Optimization terminated successfully (Exit mode 0)
Current function value: 114.78158347426583
Iterations: 14
Function evaluations: 133
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 211.41864940455824
Iteration: 2, Func. Count: 22, Neg. LLF: 183.79958430883522
Iteration: 3, Func. Count: 33, Neg. LLF: 389.21831614511444
Iteration: 4, Func. Count: 44, Neg. LLF: 119.74953155913376
Iteration: 5, Func. Count: 55, Neg. LLF: 116.98921053414531
Iteration: 6, Func. Count: 66, Neg. LLF: 126.65386848037657
Iteration: 7, Func. Count: 77, Neg. LLF: 115.4891807476174
Iteration: 8, Func. Count: 88, Neg. LLF: 114.85288080699677
Iteration: 9, Func. Count: 98, Neg. LLF: 115.1079289128956
Iteration: 10, Func. Count: 109, Neg. LLF: 114.80876965209546
Iteration: 11, Func. Count: 119, Neg. LLF: 114.78840388114038
Iteration: 12, Func. Count: 129, Neg. LLF: 114.78231514166514
Iteration: 13, Func. Count: 139, Neg. LLF: 114.78165905655514
Iteration: 14, Func. Count: 149, Neg. LLF: 114.78159939775122
Iteration: 15, Func. Count: 159, Neg. LLF: 114.7815848075195
Iteration: 16, Func. Count: 169, Neg. LLF: 114.78158320766083
Iteration: 17, Func. Count: 178, Neg. LLF: 114.78158320803522
Optimization terminated successfully (Exit mode 0)
Current function value: 114.78158320766083
Iterations: 17
Function evaluations: 178
Gradient evaluations: 17
Iteration: 1, Func. Count: 12, Neg. LLF: 203.79603616441898
Iteration: 2, Func. Count: 24, Neg. LLF: 3238016.361669539
Iteration: 3, Func. Count: 36, Neg. LLF: 2828.024332003522
Iteration: 4, Func. Count: 48, Neg. LLF: 121.57224900707068
Iteration: 5, Func. Count: 60, Neg. LLF: 139.03608841741706
Iteration: 6, Func. Count: 72, Neg. LLF: 125.67782630537408
Iteration: 7, Func. Count: 84, Neg. LLF: 114.94180185865707
Iteration: 8, Func. Count: 95, Neg. LLF: 115.13204974153238
Iteration: 9, Func. Count: 107, Neg. LLF: 114.93913664762714
Iteration: 10, Func. Count: 119, Neg. LLF: 114.80346835478032
Iteration: 11, Func. Count: 130, Neg. LLF: 114.7920997187827
Iteration: 12, Func. Count: 141, Neg. LLF: 114.78555386263723
Iteration: 13, Func. Count: 152, Neg. LLF: 114.7825875131244
Iteration: 14, Func. Count: 163, Neg. LLF: 114.78166432795977
Iteration: 15, Func. Count: 174, Neg. LLF: 114.7815856641677
Iteration: 16, Func. Count: 185, Neg. LLF: 114.78158321104637
Iteration: 17, Func. Count: 195, Neg. LLF: 114.78158325647938
Optimization terminated successfully (Exit mode 0)
Current function value: 114.78158321104637
Iterations: 17
Function evaluations: 195
Gradient evaluations: 17
Iteration: 1, Func. Count: 9, Neg. LLF: 118.52338526845044
Iteration: 2, Func. Count: 18, Neg. LLF: 118.9486760024165
Iteration: 3, Func. Count: 28, Neg. LLF: 144.00281761315162
Iteration: 4, Func. Count: 37, Neg. LLF: 117.52764282315404
Iteration: 5, Func. Count: 46, Neg. LLF: 324.2808706936338
Iteration: 6, Func. Count: 55, Neg. LLF: 119.28404289804078
Iteration: 7, Func. Count: 64, Neg. LLF: 114.97286647871634
Iteration: 8, Func. Count: 73, Neg. LLF: 114.6290304174964
Iteration: 9, Func. Count: 81, Neg. LLF: 114.61803806106754
Iteration: 10, Func. Count: 89, Neg. LLF: 114.95598627914686
Iteration: 11, Func. Count: 98, Neg. LLF: 115.27920566119377
Iteration: 12, Func. Count: 107, Neg. LLF: 115.27161579102003
Iteration: 13, Func. Count: 116, Neg. LLF: 114.72835085045794
Iteration: 14, Func. Count: 125, Neg. LLF: 114.58933974988506
Iteration: 15, Func. Count: 134, Neg. LLF: 114.58054075073612
Iteration: 16, Func. Count: 142, Neg. LLF: 114.57947490745784
Iteration: 17, Func. Count: 150, Neg. LLF: 114.57933582017952
Iteration: 18, Func. Count: 158, Neg. LLF: 114.57933233514713
Iteration: 19, Func. Count: 165, Neg. LLF: 114.57933233512962
Optimization terminated successfully (Exit mode 0)
Current function value: 114.57933233514713
Iterations: 19
Function evaluations: 165
Gradient evaluations: 19
Iteration: 1, Func. Count: 10, Neg. LLF: 192.23844102029835
Iteration: 2, Func. Count: 20, Neg. LLF: 8991.692077895146
Iteration: 3, Func. Count: 30, Neg. LLF: 141.3142909315068
Iteration: 4, Func. Count: 40, Neg. LLF: 126.03922514244584
Iteration: 5, Func. Count: 50, Neg. LLF: 116.4230253206352
Iteration: 6, Func. Count: 60, Neg. LLF: 115.37155642596211
Iteration: 7, Func. Count: 70, Neg. LLF: 116.18991444520908
Iteration: 8, Func. Count: 80, Neg. LLF: 114.60720452962144
Iteration: 9, Func. Count: 89, Neg. LLF: 114.59040524876481
Iteration: 10, Func. Count: 98, Neg. LLF: 114.58408680120844
Iteration: 11, Func. Count: 107, Neg. LLF: 114.58054334618973
Iteration: 12, Func. Count: 116, Neg. LLF: 114.57973903600502
Iteration: 13, Func. Count: 125, Neg. LLF: 114.57950494231774
Iteration: 14, Func. Count: 134, Neg. LLF: 114.57937803964013
Iteration: 15, Func. Count: 143, Neg. LLF: 114.57933968729259
Iteration: 16, Func. Count: 152, Neg. LLF: 114.57933322677441
Iteration: 17, Func. Count: 161, Neg. LLF: 114.5793323392248
Optimization terminated successfully (Exit mode 0)
Current function value: 114.5793323392248
Iterations: 17
Function evaluations: 161
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 203.07407877782975
Iteration: 2, Func. Count: 22, Neg. LLF: 9669762.570267014
Iteration: 3, Func. Count: 33, Neg. LLF: 165.07544184228487
Iteration: 4, Func. Count: 44, Neg. LLF: 118.94448778381944
Iteration: 5, Func. Count: 55, Neg. LLF: 116.73221139895504
Iteration: 6, Func. Count: 66, Neg. LLF: 120.36794755189369
Iteration: 7, Func. Count: 77, Neg. LLF: 115.33356950759111
Iteration: 8, Func. Count: 88, Neg. LLF: 114.6422719003435
Iteration: 9, Func. Count: 98, Neg. LLF: 114.60340840092402
Iteration: 10, Func. Count: 108, Neg. LLF: 114.58263788443051
Iteration: 11, Func. Count: 118, Neg. LLF: 114.5803648669283
Iteration: 12, Func. Count: 128, Neg. LLF: 114.57957923819701
Iteration: 13, Func. Count: 138, Neg. LLF: 114.57934053122823
Iteration: 14, Func. Count: 148, Neg. LLF: 114.5793328511806
Iteration: 15, Func. Count: 157, Neg. LLF: 114.57933287583758
Optimization terminated successfully (Exit mode 0)
Current function value: 114.5793328511806
Iterations: 15
Function evaluations: 157
Gradient evaluations: 15
Iteration: 1, Func. Count: 12, Neg. LLF: 191.68072065850694
Iteration: 2, Func. Count: 24, Neg. LLF: 1452.1164578833766
Iteration: 3, Func. Count: 36, Neg. LLF: 3544091.4349122094
Iteration: 4, Func. Count: 48, Neg. LLF: 123.88024959735002
Iteration: 5, Func. Count: 60, Neg. LLF: 120.87202131007179
Iteration: 6, Func. Count: 72, Neg. LLF: 115.40745781920235
Iteration: 7, Func. Count: 84, Neg. LLF: 115.10018154539573
Iteration: 8, Func. Count: 96, Neg. LLF: 114.66066691616611
Iteration: 9, Func. Count: 107, Neg. LLF: 114.60235358111547
Iteration: 10, Func. Count: 118, Neg. LLF: 114.5805656839624
Iteration: 11, Func. Count: 129, Neg. LLF: 114.57983575564718
Iteration: 12, Func. Count: 140, Neg. LLF: 114.5795129763103
Iteration: 13, Func. Count: 151, Neg. LLF: 114.57936046061933
Iteration: 14, Func. Count: 162, Neg. LLF: 114.57933808216953
Iteration: 15, Func. Count: 173, Neg. LLF: 114.57933245424435
Iteration: 16, Func. Count: 183, Neg. LLF: 114.57933250815736
Optimization terminated successfully (Exit mode 0)
Current function value: 114.57933245424435
Iterations: 16
Function evaluations: 183
Gradient evaluations: 16
Iteration: 1, Func. Count: 13, Neg. LLF: 121.4332105398934
Iteration: 2, Func. Count: 26, Neg. LLF: 143.885625560077
Iteration: 3, Func. Count: 39, Neg. LLF: 169.2671782093238
Iteration: 4, Func. Count: 52, Neg. LLF: 587.3178323083498
Iteration: 5, Func. Count: 65, Neg. LLF: 2986414.739702597
Iteration: 6, Func. Count: 78, Neg. LLF: 115.89044285084938
Iteration: 7, Func. Count: 91, Neg. LLF: 114.64664358005065
Iteration: 8, Func. Count: 103, Neg. LLF: 114.5865188434762
Iteration: 9, Func. Count: 115, Neg. LLF: 114.5813798450061
Iteration: 10, Func. Count: 127, Neg. LLF: 114.57979062039387
Iteration: 11, Func. Count: 139, Neg. LLF: 114.57934637579874
Iteration: 12, Func. Count: 151, Neg. LLF: 114.5793327555348
Iteration: 13, Func. Count: 163, Neg. LLF: 114.57933224098211
Optimization terminated successfully (Exit mode 0)
Current function value: 114.57933224098211
Iterations: 13
Function evaluations: 163
Gradient evaluations: 13
Iteration: 1, Func. Count: 6, Neg. LLF: 118.84929942129361
Iteration: 2, Func. Count: 12, Neg. LLF: 117.50299933291268
Iteration: 3, Func. Count: 18, Neg. LLF: 165.44113756353954
Iteration: 4, Func. Count: 24, Neg. LLF: 125.43758771325037
Iteration: 5, Func. Count: 30, Neg. LLF: 116.67151570583832
Iteration: 6, Func. Count: 36, Neg. LLF: 116.32448094317084
Iteration: 7, Func. Count: 41, Neg. LLF: 116.28993894638735
Iteration: 8, Func. Count: 46, Neg. LLF: 116.2879636064861
Iteration: 9, Func. Count: 51, Neg. LLF: 116.28790521598391
Iteration: 10, Func. Count: 55, Neg. LLF: 116.28790521595705
Optimization terminated successfully (Exit mode 0)
Current function value: 116.28790521598391
Iterations: 10
Function evaluations: 55
Gradient evaluations: 10
Iteration: 1, Func. Count: 7, Neg. LLF: 158.54212554681854
Iteration: 2, Func. Count: 14, Neg. LLF: 16967642.445216216
Iteration: 3, Func. Count: 21, Neg. LLF: 141.20120417918918
Iteration: 4, Func. Count: 28, Neg. LLF: 116.92117261131386
Iteration: 5, Func. Count: 35, Neg. LLF: 116.59657288038332
Iteration: 6, Func. Count: 42, Neg. LLF: 115.89550401277847
Iteration: 7, Func. Count: 48, Neg. LLF: 115.89500230793278
Iteration: 8, Func. Count: 55, Neg. LLF: 115.88220153027017
Iteration: 9, Func. Count: 61, Neg. LLF: 115.88197259032707
Iteration: 10, Func. Count: 67, Neg. LLF: 115.88196988971322
Iteration: 11, Func. Count: 72, Neg. LLF: 115.88196988968849
Optimization terminated successfully (Exit mode 0)
Current function value: 115.88196988971322
Iterations: 11
Function evaluations: 72
Gradient evaluations: 11
Iteration: 1, Func. Count: 8, Neg. LLF: 175.19211855582424
Iteration: 2, Func. Count: 16, Neg. LLF: 17029588.424487747
Iteration: 3, Func. Count: 24, Neg. LLF: 183.1730639791248
Iteration: 4, Func. Count: 32, Neg. LLF: 121.55750764547773
Iteration: 5, Func. Count: 40, Neg. LLF: 116.6310726185797
Iteration: 6, Func. Count: 48, Neg. LLF: 115.65993425072475
Iteration: 7, Func. Count: 55, Neg. LLF: 115.71991287977193
Iteration: 8, Func. Count: 63, Neg. LLF: 115.63588959691738
Iteration: 9, Func. Count: 70, Neg. LLF: 115.63503327982879
Iteration: 10, Func. Count: 77, Neg. LLF: 115.6349625291963
Iteration: 11, Func. Count: 84, Neg. LLF: 115.634956987372
Iteration: 12, Func. Count: 90, Neg. LLF: 115.63495698736232
Optimization terminated successfully (Exit mode 0)
Current function value: 115.634956987372
Iterations: 12
Function evaluations: 90
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 177.3019056250476
Iteration: 2, Func. Count: 18, Neg. LLF: 17201839.984243583
Iteration: 3, Func. Count: 27, Neg. LLF: 210.5255476960076
Iteration: 4, Func. Count: 36, Neg. LLF: 121.52952041046387
Iteration: 5, Func. Count: 45, Neg. LLF: 116.58208149516183
Iteration: 6, Func. Count: 54, Neg. LLF: 115.67674557247106
Iteration: 7, Func. Count: 62, Neg. LLF: 115.86149609493837
Iteration: 8, Func. Count: 71, Neg. LLF: 115.63706554695054
Iteration: 9, Func. Count: 79, Neg. LLF: 115.63502121740628
Iteration: 10, Func. Count: 87, Neg. LLF: 115.63495840248449
Iteration: 11, Func. Count: 95, Neg. LLF: 115.6349570039057
Iteration: 12, Func. Count: 102, Neg. LLF: 115.63495703848567
Optimization terminated successfully (Exit mode 0)
Current function value: 115.6349570039057
Iterations: 12
Function evaluations: 102
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 187.8911542474225
Iteration: 2, Func. Count: 20, Neg. LLF: 373.1939015856489
Iteration: 3, Func. Count: 30, Neg. LLF: 1671.4205441225513
Iteration: 4, Func. Count: 40, Neg. LLF: 4697.55524492075
Iteration: 5, Func. Count: 50, Neg. LLF: 116.52098612514413
Iteration: 6, Func. Count: 60, Neg. LLF: 115.70056889684328
Iteration: 7, Func. Count: 69, Neg. LLF: 115.64960494172759
Iteration: 8, Func. Count: 78, Neg. LLF: 115.63613002731795
Iteration: 9, Func. Count: 87, Neg. LLF: 115.63502838420986
Iteration: 10, Func. Count: 96, Neg. LLF: 115.63495728735816
Iteration: 11, Func. Count: 104, Neg. LLF: 115.63495735004791
Optimization terminated successfully (Exit mode 0)
Current function value: 115.63495728735816
Iterations: 11
Function evaluations: 104
Gradient evaluations: 11
Iteration: 1, Func. Count: 7, Neg. LLF: 118.15720939925544
Iteration: 2, Func. Count: 14, Neg. LLF: 118.09864481974694
Iteration: 3, Func. Count: 21, Neg. LLF: 121.67604292416856
Iteration: 4, Func. Count: 28, Neg. LLF: 115.69018117934476
Iteration: 5, Func. Count: 34, Neg. LLF: 128.60710010728104
Iteration: 6, Func. Count: 41, Neg. LLF: 115.73458878163264
Iteration: 7, Func. Count: 48, Neg. LLF: 115.60912409532175
Iteration: 8, Func. Count: 54, Neg. LLF: 115.60211183345349
Iteration: 9, Func. Count: 60, Neg. LLF: 115.60134144611706
Iteration: 10, Func. Count: 66, Neg. LLF: 115.6013037142016
Iteration: 11, Func. Count: 72, Neg. LLF: 115.60128555152933
Iteration: 12, Func. Count: 78, Neg. LLF: 115.60128451388434
Iteration: 13, Func. Count: 83, Neg. LLF: 115.60128451388765
Optimization terminated successfully (Exit mode 0)
Current function value: 115.60128451388434
Iterations: 13
Function evaluations: 83
Gradient evaluations: 13
Iteration: 1, Func. Count: 8, Neg. LLF: 151.5981312801784
Iteration: 2, Func. Count: 16, Neg. LLF: 134.7488791503806
Iteration: 3, Func. Count: 24, Neg. LLF: 150.1569165296515
Iteration: 4, Func. Count: 32, Neg. LLF: 123.03811550767982
Iteration: 5, Func. Count: 40, Neg. LLF: 117.20283343515581
Iteration: 6, Func. Count: 48, Neg. LLF: 115.5482539351738
Iteration: 7, Func. Count: 55, Neg. LLF: 115.49936723368884
Iteration: 8, Func. Count: 62, Neg. LLF: 115.49164867092388
Iteration: 9, Func. Count: 69, Neg. LLF: 115.4914243147795
Iteration: 10, Func. Count: 76, Neg. LLF: 115.4914013270504
Iteration: 11, Func. Count: 82, Neg. LLF: 115.49140132702158
Optimization terminated successfully (Exit mode 0)
Current function value: 115.4914013270504
Iterations: 11
Function evaluations: 82
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 201.23291158583157
Iteration: 2, Func. Count: 18, Neg. LLF: 290.21997086883954
Iteration: 3, Func. Count: 27, Neg. LLF: 120.52964923521225
Iteration: 4, Func. Count: 36, Neg. LLF: 116.66918927310246
Iteration: 5, Func. Count: 45, Neg. LLF: 117.44244160381585
Iteration: 6, Func. Count: 54, Neg. LLF: 114.8506587534607
Iteration: 7, Func. Count: 62, Neg. LLF: 114.94796518421607
Iteration: 8, Func. Count: 71, Neg. LLF: 114.80346739561166
Iteration: 9, Func. Count: 79, Neg. LLF: 114.8023581254063
Iteration: 10, Func. Count: 87, Neg. LLF: 114.8022341941553
Iteration: 11, Func. Count: 95, Neg. LLF: 114.80220954274104
Iteration: 12, Func. Count: 103, Neg. LLF: 114.80220488362674
Iteration: 13, Func. Count: 110, Neg. LLF: 114.80220488360902
Optimization terminated successfully (Exit mode 0)
Current function value: 114.80220488362674
Iterations: 13
Function evaluations: 110
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 195.2001731733262
Iteration: 2, Func. Count: 20, Neg. LLF: 593.5477041832241
Iteration: 3, Func. Count: 30, Neg. LLF: 187.23886389487868
Iteration: 4, Func. Count: 40, Neg. LLF: 117.14805548079005
Iteration: 5, Func. Count: 50, Neg. LLF: 119.07429046126123
Iteration: 6, Func. Count: 60, Neg. LLF: 114.98360283282864
Iteration: 7, Func. Count: 69, Neg. LLF: 114.84022104709122
Iteration: 8, Func. Count: 78, Neg. LLF: 115.11829997903227
Iteration: 9, Func. Count: 88, Neg. LLF: 114.84948938829265
Iteration: 10, Func. Count: 98, Neg. LLF: 114.80239868337219
Iteration: 11, Func. Count: 107, Neg. LLF: 114.80221059684948
Iteration: 12, Func. Count: 116, Neg. LLF: 114.80220498816948
Iteration: 13, Func. Count: 124, Neg. LLF: 114.80220499617396
Optimization terminated successfully (Exit mode 0)
Current function value: 114.80220498816948
Iterations: 13
Function evaluations: 124
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 117.35245938334296
Iteration: 2, Func. Count: 22, Neg. LLF: 203.97917826448315
Iteration: 3, Func. Count: 33, Neg. LLF: 120.03695617115457
Iteration: 4, Func. Count: 44, Neg. LLF: 357.0498297098218
Iteration: 5, Func. Count: 55, Neg. LLF: 372.5401925470846
Iteration: 6, Func. Count: 66, Neg. LLF: 115.31018010481137
Iteration: 7, Func. Count: 77, Neg. LLF: 116.3298837252454
Iteration: 8, Func. Count: 88, Neg. LLF: 115.13779348936481
Iteration: 9, Func. Count: 99, Neg. LLF: 114.80397517664716
Iteration: 10, Func. Count: 109, Neg. LLF: 114.80258424740997
Iteration: 11, Func. Count: 119, Neg. LLF: 114.802219759777
Iteration: 12, Func. Count: 129, Neg. LLF: 114.8022052595359
Iteration: 13, Func. Count: 138, Neg. LLF: 114.80220531726582
Optimization terminated successfully (Exit mode 0)
Current function value: 114.8022052595359
Iterations: 13
Function evaluations: 138
Gradient evaluations: 13
Iteration: 1, Func. Count: 8, Neg. LLF: 118.42553534956663
Iteration: 2, Func. Count: 16, Neg. LLF: 118.62461713322715
Iteration: 3, Func. Count: 25, Neg. LLF: 117.0705081540305
Iteration: 4, Func. Count: 33, Neg. LLF: 150.10137293586178
Iteration: 5, Func. Count: 41, Neg. LLF: 127.89555157087275
Iteration: 6, Func. Count: 49, Neg. LLF: 115.45844501307369
Iteration: 7, Func. Count: 56, Neg. LLF: 115.381148409719
Iteration: 8, Func. Count: 63, Neg. LLF: 115.37185448997762
Iteration: 9, Func. Count: 70, Neg. LLF: 115.3688142423286
Iteration: 10, Func. Count: 77, Neg. LLF: 115.36861658819103
Iteration: 11, Func. Count: 84, Neg. LLF: 115.36860025987194
Iteration: 12, Func. Count: 91, Neg. LLF: 115.36859965563887
Optimization terminated successfully (Exit mode 0)
Current function value: 115.36859965563887
Iterations: 12
Function evaluations: 91
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 168.87622584078113
Iteration: 2, Func. Count: 18, Neg. LLF: 158.60811350161958
Iteration: 3, Func. Count: 27, Neg. LLF: 4835252.0687055355
Iteration: 4, Func. Count: 36, Neg. LLF: 125.15768204112052
Iteration: 5, Func. Count: 45, Neg. LLF: 116.59384021029678
Iteration: 6, Func. Count: 54, Neg. LLF: 115.68704166377495
Iteration: 7, Func. Count: 63, Neg. LLF: 115.58313355166523
Iteration: 8, Func. Count: 72, Neg. LLF: 115.4759312446815
Iteration: 9, Func. Count: 80, Neg. LLF: 115.46839860632421
Iteration: 10, Func. Count: 88, Neg. LLF: 115.4682832428913
Iteration: 11, Func. Count: 96, Neg. LLF: 115.46827487336378
Iteration: 12, Func. Count: 104, Neg. LLF: 115.46827341827095
Iteration: 13, Func. Count: 111, Neg. LLF: 115.46827341827075
Optimization terminated successfully (Exit mode 0)
Current function value: 115.46827341827095
Iterations: 13
Function evaluations: 111
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 170.9925087072365
Iteration: 2, Func. Count: 20, Neg. LLF: 230.71911813412632
Iteration: 3, Func. Count: 30, Neg. LLF: 141.97688499572308
Iteration: 4, Func. Count: 40, Neg. LLF: 125.46024106570012
Iteration: 5, Func. Count: 50, Neg. LLF: 121.16622316928509
Iteration: 6, Func. Count: 60, Neg. LLF: 115.45102631187186
Iteration: 7, Func. Count: 69, Neg. LLF: 116.20165956070646
Iteration: 8, Func. Count: 79, Neg. LLF: 114.94254461899857
Iteration: 9, Func. Count: 88, Neg. LLF: 114.84721741591795
Iteration: 10, Func. Count: 97, Neg. LLF: 114.81023104165595
Iteration: 11, Func. Count: 106, Neg. LLF: 114.80422469652517
Iteration: 12, Func. Count: 115, Neg. LLF: 114.802617240651
Iteration: 13, Func. Count: 124, Neg. LLF: 114.80226640662465
Iteration: 14, Func. Count: 133, Neg. LLF: 114.8022058756781
Iteration: 15, Func. Count: 142, Neg. LLF: 114.80220475670386
Iteration: 16, Func. Count: 150, Neg. LLF: 114.80220475671284
Optimization terminated successfully (Exit mode 0)
Current function value: 114.80220475670386
Iterations: 16
Function evaluations: 150
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 164.23381266133214
Iteration: 2, Func. Count: 22, Neg. LLF: 832.3406183337968
Iteration: 3, Func. Count: 33, Neg. LLF: 12991.910195254206
Iteration: 4, Func. Count: 44, Neg. LLF: 122.75524242604806
Iteration: 5, Func. Count: 55, Neg. LLF: 115.91808346856382
Iteration: 6, Func. Count: 66, Neg. LLF: 115.68613404982125
Iteration: 7, Func. Count: 77, Neg. LLF: 116.69775516898808
Iteration: 8, Func. Count: 88, Neg. LLF: 114.87341018534146
Iteration: 9, Func. Count: 98, Neg. LLF: 114.81947101484747
Iteration: 10, Func. Count: 108, Neg. LLF: 114.80512326731211
Iteration: 11, Func. Count: 118, Neg. LLF: 114.80282052551325
Iteration: 12, Func. Count: 128, Neg. LLF: 114.80221783617493
Iteration: 13, Func. Count: 138, Neg. LLF: 114.80220509091197
Iteration: 14, Func. Count: 147, Neg. LLF: 114.80220509870814
Optimization terminated successfully (Exit mode 0)
Current function value: 114.80220509091197
Iterations: 14
Function evaluations: 147
Gradient evaluations: 14
Iteration: 1, Func. Count: 12, Neg. LLF: 150.0584405389675
Iteration: 2, Func. Count: 24, Neg. LLF: 177.0310635209402
Iteration: 3, Func. Count: 36, Neg. LLF: 121.98024753666868
Iteration: 4, Func. Count: 48, Neg. LLF: 129.03603901415465
Iteration: 5, Func. Count: 60, Neg. LLF: 132.07739762734042
Iteration: 6, Func. Count: 72, Neg. LLF: 116.13452937604742
Iteration: 7, Func. Count: 84, Neg. LLF: 115.06682715311959
Iteration: 8, Func. Count: 95, Neg. LLF: 115.60830911658876
Iteration: 9, Func. Count: 107, Neg. LLF: 114.94739900691854
Iteration: 10, Func. Count: 118, Neg. LLF: 114.83222564219068
Iteration: 11, Func. Count: 129, Neg. LLF: 114.83412827859247
Iteration: 12, Func. Count: 141, Neg. LLF: 114.80300326102201
Iteration: 13, Func. Count: 152, Neg. LLF: 114.80234295157103
Iteration: 14, Func. Count: 163, Neg. LLF: 114.80222348761956
Iteration: 15, Func. Count: 174, Neg. LLF: 114.80220496566002
Iteration: 16, Func. Count: 184, Neg. LLF: 114.80220502330158
Optimization terminated successfully (Exit mode 0)
Current function value: 114.80220496566002
Iterations: 16
Function evaluations: 184
Gradient evaluations: 16
Iteration: 1, Func. Count: 9, Neg. LLF: 119.07410159670431
Iteration: 2, Func. Count: 18, Neg. LLF: 118.30270067622018
Iteration: 3, Func. Count: 28, Neg. LLF: 115.87860209276188
Iteration: 4, Func. Count: 36, Neg. LLF: 152.36079849784974
Iteration: 5, Func. Count: 45, Neg. LLF: 116.75500976841327
Iteration: 6, Func. Count: 54, Neg. LLF: 118.5305297404975
Iteration: 7, Func. Count: 63, Neg. LLF: 115.38697314038639
Iteration: 8, Func. Count: 71, Neg. LLF: 115.3735444832309
Iteration: 9, Func. Count: 79, Neg. LLF: 115.36943534295237
Iteration: 10, Func. Count: 87, Neg. LLF: 115.36887314354634
Iteration: 11, Func. Count: 95, Neg. LLF: 115.36862431432995
Iteration: 12, Func. Count: 103, Neg. LLF: 115.36860469225093
Iteration: 13, Func. Count: 111, Neg. LLF: 115.36859973604271
Iteration: 14, Func. Count: 118, Neg. LLF: 115.3685997714135
Optimization terminated successfully (Exit mode 0)
Current function value: 115.36859973604271
Iterations: 14
Function evaluations: 118
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 167.1490287084564
Iteration: 2, Func. Count: 20, Neg. LLF: 162.50678745232895
Iteration: 3, Func. Count: 30, Neg. LLF: 203.77393805062775
Iteration: 4, Func. Count: 40, Neg. LLF: 124.95797052633748
Iteration: 5, Func. Count: 50, Neg. LLF: 115.64756117931488
Iteration: 6, Func. Count: 59, Neg. LLF: 116.46288887349073
Iteration: 7, Func. Count: 69, Neg. LLF: 115.47622351712842
Iteration: 8, Func. Count: 79, Neg. LLF: 115.24659656532758
Iteration: 9, Func. Count: 89, Neg. LLF: 114.99726833015605
Iteration: 10, Func. Count: 99, Neg. LLF: 114.9783873519866
Iteration: 11, Func. Count: 108, Neg. LLF: 114.97136762309574
Iteration: 12, Func. Count: 117, Neg. LLF: 114.97072177157722
Iteration: 13, Func. Count: 126, Neg. LLF: 114.97053552143961
Iteration: 14, Func. Count: 135, Neg. LLF: 114.97051699446347
Iteration: 15, Func. Count: 144, Neg. LLF: 114.97051164585207
Iteration: 16, Func. Count: 152, Neg. LLF: 114.97051164589006
Optimization terminated successfully (Exit mode 0)
Current function value: 114.97051164585207
Iterations: 16
Function evaluations: 152
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 171.4102380509206
Iteration: 2, Func. Count: 22, Neg. LLF: 215.708101687189
Iteration: 3, Func. Count: 33, Neg. LLF: 171.7355758519717
Iteration: 4, Func. Count: 44, Neg. LLF: 130.23788264032086
Iteration: 5, Func. Count: 55, Neg. LLF: 117.29298378792613
Iteration: 6, Func. Count: 66, Neg. LLF: 116.23717653013925
Iteration: 7, Func. Count: 77, Neg. LLF: 115.63547060150884
Iteration: 8, Func. Count: 88, Neg. LLF: 114.81032555346161
Iteration: 9, Func. Count: 98, Neg. LLF: 114.78762112647422
Iteration: 10, Func. Count: 108, Neg. LLF: 114.78352072395553
Iteration: 11, Func. Count: 118, Neg. LLF: 114.781888823089
Iteration: 12, Func. Count: 128, Neg. LLF: 114.78159338808919
Iteration: 13, Func. Count: 138, Neg. LLF: 114.78158324431121
Iteration: 14, Func. Count: 147, Neg. LLF: 114.78158324428846
Optimization terminated successfully (Exit mode 0)
Current function value: 114.78158324431121
Iterations: 14
Function evaluations: 147
Gradient evaluations: 14
Iteration: 1, Func. Count: 12, Neg. LLF: 166.5744052245447
Iteration: 2, Func. Count: 24, Neg. LLF: 4298.0297005004295
Iteration: 3, Func. Count: 36, Neg. LLF: 8424.891823866823
Iteration: 4, Func. Count: 48, Neg. LLF: 124.80456597668307
Iteration: 5, Func. Count: 60, Neg. LLF: 115.10479894848477
Iteration: 6, Func. Count: 71, Neg. LLF: 115.48207524191662
Iteration: 7, Func. Count: 83, Neg. LLF: 122.43555653446845
Iteration: 8, Func. Count: 95, Neg. LLF: 114.81486785410415
Iteration: 9, Func. Count: 106, Neg. LLF: 114.82158876562691
Iteration: 10, Func. Count: 118, Neg. LLF: 114.7835707756424
Iteration: 11, Func. Count: 129, Neg. LLF: 114.78175103876896
Iteration: 12, Func. Count: 140, Neg. LLF: 114.78160851991932
Iteration: 13, Func. Count: 151, Neg. LLF: 114.7815853972362
Iteration: 14, Func. Count: 162, Neg. LLF: 114.78158331477158
Iteration: 15, Func. Count: 172, Neg. LLF: 114.78158331519316
Optimization terminated successfully (Exit mode 0)
Current function value: 114.78158331477158
Iterations: 15
Function evaluations: 172
Gradient evaluations: 15
Iteration: 1, Func. Count: 13, Neg. LLF: 164.5485622075022
Iteration: 2, Func. Count: 26, Neg. LLF: 247.50284557268708
Iteration: 3, Func. Count: 39, Neg. LLF: 123.75901597657108
Iteration: 4, Func. Count: 52, Neg. LLF: 118.03759025842254
Iteration: 5, Func. Count: 65, Neg. LLF: 151.8701957268414
Iteration: 6, Func. Count: 78, Neg. LLF: 115.5171448898757
Iteration: 7, Func. Count: 91, Neg. LLF: 115.74897117234946
Iteration: 8, Func. Count: 104, Neg. LLF: 114.80578215932017
Iteration: 9, Func. Count: 116, Neg. LLF: 115.05820344641269
Iteration: 10, Func. Count: 130, Neg. LLF: 114.80508330544046
Iteration: 11, Func. Count: 143, Neg. LLF: 114.78332967915804
Iteration: 12, Func. Count: 155, Neg. LLF: 114.78184609537739
Iteration: 13, Func. Count: 167, Neg. LLF: 114.78160123245672
Iteration: 14, Func. Count: 179, Neg. LLF: 114.78158337395088
Iteration: 15, Func. Count: 190, Neg. LLF: 114.78158341938179
Optimization terminated successfully (Exit mode 0)
Current function value: 114.78158337395088
Iterations: 15
Function evaluations: 190
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 118.57183002151189
Iteration: 2, Func. Count: 20, Neg. LLF: 118.89731755940878
Iteration: 3, Func. Count: 31, Neg. LLF: 125.74233791785764
Iteration: 4, Func. Count: 41, Neg. LLF: 117.51698214312363
Iteration: 5, Func. Count: 51, Neg. LLF: 373.21201895150506
Iteration: 6, Func. Count: 61, Neg. LLF: 115.97414706342296
Iteration: 7, Func. Count: 71, Neg. LLF: 114.91023249290103
Iteration: 8, Func. Count: 81, Neg. LLF: 114.63222390536929
Iteration: 9, Func. Count: 90, Neg. LLF: 114.61171633138203
Iteration: 10, Func. Count: 99, Neg. LLF: 114.59147376695178
Iteration: 11, Func. Count: 108, Neg. LLF: 114.60674943300675
Iteration: 12, Func. Count: 118, Neg. LLF: 114.58005229671961
Iteration: 13, Func. Count: 127, Neg. LLF: 114.57937798845218
Iteration: 14, Func. Count: 136, Neg. LLF: 114.5793393848523
Iteration: 15, Func. Count: 145, Neg. LLF: 114.57933227795029
Iteration: 16, Func. Count: 153, Neg. LLF: 114.57933227795927
Optimization terminated successfully (Exit mode 0)
Current function value: 114.57933227795029
Iterations: 16
Function evaluations: 153
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 160.8837305555381
Iteration: 2, Func. Count: 22, Neg. LLF: 292.413265396283
Iteration: 3, Func. Count: 33, Neg. LLF: 196.71724901653536
Iteration: 4, Func. Count: 44, Neg. LLF: 126.0922729194424
Iteration: 5, Func. Count: 55, Neg. LLF: 115.82520849617599
Iteration: 6, Func. Count: 66, Neg. LLF: 115.74755027176457
Iteration: 7, Func. Count: 77, Neg. LLF: 116.62252925561945
Iteration: 8, Func. Count: 88, Neg. LLF: 114.63260510272039
Iteration: 9, Func. Count: 98, Neg. LLF: 114.59490791787582
Iteration: 10, Func. Count: 108, Neg. LLF: 114.58714461984218
Iteration: 11, Func. Count: 118, Neg. LLF: 114.58363492998988
Iteration: 12, Func. Count: 128, Neg. LLF: 114.58043836690203
Iteration: 13, Func. Count: 138, Neg. LLF: 114.57987422600768
Iteration: 14, Func. Count: 148, Neg. LLF: 114.5797120882162
Iteration: 15, Func. Count: 158, Neg. LLF: 114.57953460500248
Iteration: 16, Func. Count: 168, Neg. LLF: 114.57939268732693
Iteration: 17, Func. Count: 178, Neg. LLF: 114.57934212622224
Iteration: 18, Func. Count: 188, Neg. LLF: 114.5793337503169
Iteration: 19, Func. Count: 198, Neg. LLF: 114.57933280184191
Optimization terminated successfully (Exit mode 0)
Current function value: 114.57933280184191
Iterations: 19
Function evaluations: 198
Gradient evaluations: 19
Iteration: 1, Func. Count: 12, Neg. LLF: 166.56012729609466
Iteration: 2, Func. Count: 24, Neg. LLF: 45386.24911674931
Iteration: 3, Func. Count: 36, Neg. LLF: 16458.182429157772
Iteration: 4, Func. Count: 48, Neg. LLF: 125.30094213472562
Iteration: 5, Func. Count: 60, Neg. LLF: 115.51614079770752
Iteration: 6, Func. Count: 71, Neg. LLF: 115.64709337760223
Iteration: 7, Func. Count: 83, Neg. LLF: 120.1089280219225
Iteration: 8, Func. Count: 96, Neg. LLF: 114.99520301216289
Iteration: 9, Func. Count: 107, Neg. LLF: 114.76162871083731
Iteration: 10, Func. Count: 118, Neg. LLF: 114.69174088447359
Iteration: 11, Func. Count: 129, Neg. LLF: 114.60964200135861
Iteration: 12, Func. Count: 140, Neg. LLF: 114.59238865380529
Iteration: 13, Func. Count: 151, Neg. LLF: 114.58449176691798
Iteration: 14, Func. Count: 162, Neg. LLF: 114.58182945820118
Iteration: 15, Func. Count: 173, Neg. LLF: 114.58073112576021
Iteration: 16, Func. Count: 184, Neg. LLF: 114.58022792872832
Iteration: 17, Func. Count: 195, Neg. LLF: 114.57971899339397
Iteration: 18, Func. Count: 206, Neg. LLF: 114.57942561585054
Iteration: 19, Func. Count: 217, Neg. LLF: 114.57934436213742
Iteration: 20, Func. Count: 228, Neg. LLF: 114.5793336741267
Iteration: 21, Func. Count: 239, Neg. LLF: 114.5793324369869
Iteration: 22, Func. Count: 249, Neg. LLF: 114.57933246175878
Optimization terminated successfully (Exit mode 0)
Current function value: 114.5793324369869
Iterations: 22
Function evaluations: 249
Gradient evaluations: 22
Iteration: 1, Func. Count: 13, Neg. LLF: 164.7241968260849
Iteration: 2, Func. Count: 26, Neg. LLF: 9143595.280320793
Iteration: 3, Func. Count: 39, Neg. LLF: 209.5524121539794
Iteration: 4, Func. Count: 52, Neg. LLF: 123.82235506133651
Iteration: 5, Func. Count: 65, Neg. LLF: 115.18761440435809
Iteration: 6, Func. Count: 77, Neg. LLF: 114.7358413172193
Iteration: 7, Func. Count: 89, Neg. LLF: 123.33438255029736
Iteration: 8, Func. Count: 102, Neg. LLF: 114.58442912231584
Iteration: 9, Func. Count: 114, Neg. LLF: 114.57973361699395
Iteration: 10, Func. Count: 126, Neg. LLF: 114.5793912718356
Iteration: 11, Func. Count: 138, Neg. LLF: 114.57935751310808
Iteration: 12, Func. Count: 150, Neg. LLF: 114.57934855114186
Iteration: 13, Func. Count: 162, Neg. LLF: 114.57934559737113
Iteration: 14, Func. Count: 174, Neg. LLF: 114.57933500374871
Iteration: 15, Func. Count: 186, Neg. LLF: 114.57933271504372
Iteration: 16, Func. Count: 197, Neg. LLF: 114.57933276900718
Optimization terminated successfully (Exit mode 0)
Current function value: 114.57933271504372
Iterations: 16
Function evaluations: 197
Gradient evaluations: 16
Iteration: 1, Func. Count: 14, Neg. LLF: 120.66051045553996
Iteration: 2, Func. Count: 28, Neg. LLF: 123.7603970566262
Iteration: 3, Func. Count: 42, Neg. LLF: 179.2955461911949
Iteration: 4, Func. Count: 56, Neg. LLF: 2515.210559947523
Iteration: 5, Func. Count: 70, Neg. LLF: 126.59287662449871
Iteration: 6, Func. Count: 84, Neg. LLF: 277.77684795561123
Iteration: 7, Func. Count: 98, Neg. LLF: 116.83545151643406
Iteration: 8, Func. Count: 112, Neg. LLF: 114.60639226692504
Iteration: 9, Func. Count: 125, Neg. LLF: 114.58613982131195
Iteration: 10, Func. Count: 138, Neg. LLF: 114.58016523542615
Iteration: 11, Func. Count: 151, Neg. LLF: 114.57976751705179
Iteration: 12, Func. Count: 164, Neg. LLF: 114.57939876663777
Iteration: 13, Func. Count: 177, Neg. LLF: 114.57935085979199
Iteration: 14, Func. Count: 190, Neg. LLF: 114.5793367130393
Iteration: 15, Func. Count: 203, Neg. LLF: 114.57933301756457
Iteration: 16, Func. Count: 216, Neg. LLF: 114.57933229092191
Optimization terminated successfully (Exit mode 0)
Current function value: 114.57933229092191
Iterations: 16
Function evaluations: 216
Gradient evaluations: 16
Iteration: 1, Func. Count: 7, Neg. LLF: 118.89829765902427
Iteration: 2, Func. Count: 14, Neg. LLF: 123.74629808343082
Iteration: 3, Func. Count: 21, Neg. LLF: 120.62248695247565
Iteration: 4, Func. Count: 28, Neg. LLF: 130.2276438415159
Iteration: 5, Func. Count: 35, Neg. LLF: 136.65210802320615
Iteration: 6, Func. Count: 42, Neg. LLF: 122.13604927597947
Iteration: 7, Func. Count: 49, Neg. LLF: 115.70723631461415
Iteration: 8, Func. Count: 56, Neg. LLF: 115.26312287281222
Iteration: 9, Func. Count: 62, Neg. LLF: 115.2517890708461
Iteration: 10, Func. Count: 68, Neg. LLF: 115.2508150438428
Iteration: 11, Func. Count: 74, Neg. LLF: 115.25026668318583
Iteration: 12, Func. Count: 80, Neg. LLF: 115.2502241311562
Iteration: 13, Func. Count: 86, Neg. LLF: 115.25022198359085
Iteration: 14, Func. Count: 91, Neg. LLF: 115.2502219835954
Optimization terminated successfully (Exit mode 0)
Current function value: 115.25022198359085
Iterations: 14
Function evaluations: 91
Gradient evaluations: 14
Iteration: 1, Func. Count: 8, Neg. LLF: 156.58247998657112
Iteration: 2, Func. Count: 16, Neg. LLF: 65267.26929477193
Iteration: 3, Func. Count: 24, Neg. LLF: 139.38513794654415
Iteration: 4, Func. Count: 32, Neg. LLF: 116.32898702182699
Iteration: 5, Func. Count: 40, Neg. LLF: 115.34513852575733
Iteration: 6, Func. Count: 47, Neg. LLF: 115.36540468508193
Iteration: 7, Func. Count: 55, Neg. LLF: 115.75925959460724
Iteration: 8, Func. Count: 63, Neg. LLF: 115.25693506893688
Iteration: 9, Func. Count: 70, Neg. LLF: 115.25088672559032
Iteration: 10, Func. Count: 77, Neg. LLF: 115.25050086737694
Iteration: 11, Func. Count: 84, Neg. LLF: 115.25022734558867
Iteration: 12, Func. Count: 91, Neg. LLF: 115.25022213561229
Iteration: 13, Func. Count: 97, Neg. LLF: 115.25022216347298
Optimization terminated successfully (Exit mode 0)
Current function value: 115.25022213561229
Iterations: 13
Function evaluations: 97
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 175.21488641895866
Iteration: 2, Func. Count: 18, Neg. LLF: 17624135.563330837
Iteration: 3, Func. Count: 27, Neg. LLF: 154.8354054401699
Iteration: 4, Func. Count: 36, Neg. LLF: 120.03316375961617
Iteration: 5, Func. Count: 45, Neg. LLF: 116.41478264674045
Iteration: 6, Func. Count: 54, Neg. LLF: 115.89323502060391
Iteration: 7, Func. Count: 63, Neg. LLF: 115.36599048157476
Iteration: 8, Func. Count: 72, Neg. LLF: 115.2062974406496
Iteration: 9, Func. Count: 80, Neg. LLF: 115.1905228534554
Iteration: 10, Func. Count: 88, Neg. LLF: 115.18943803646243
Iteration: 11, Func. Count: 96, Neg. LLF: 115.1890777799282
Iteration: 12, Func. Count: 104, Neg. LLF: 115.18904537855092
Iteration: 13, Func. Count: 112, Neg. LLF: 115.18903433596718
Iteration: 14, Func. Count: 120, Neg. LLF: 115.18902755471697
Iteration: 15, Func. Count: 127, Neg. LLF: 115.18902755480507
Optimization terminated successfully (Exit mode 0)
Current function value: 115.18902755471697
Iterations: 15
Function evaluations: 127
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 182.35917275318525
Iteration: 2, Func. Count: 20, Neg. LLF: 17981612.840151113
Iteration: 3, Func. Count: 30, Neg. LLF: 158.09910644753325
Iteration: 4, Func. Count: 40, Neg. LLF: 118.86337614254305
Iteration: 5, Func. Count: 50, Neg. LLF: 118.09329613379273
Iteration: 6, Func. Count: 60, Neg. LLF: 115.38280381547591
Iteration: 7, Func. Count: 69, Neg. LLF: 115.83778528632136
Iteration: 8, Func. Count: 79, Neg. LLF: 115.58992382239408
Iteration: 9, Func. Count: 89, Neg. LLF: 115.19116651670366
Iteration: 10, Func. Count: 98, Neg. LLF: 115.18972739349904
Iteration: 11, Func. Count: 107, Neg. LLF: 115.18904702591216
Iteration: 12, Func. Count: 116, Neg. LLF: 115.18903379706451
Iteration: 13, Func. Count: 125, Neg. LLF: 115.18902766090146
Iteration: 14, Func. Count: 133, Neg. LLF: 115.18902766528066
Optimization terminated successfully (Exit mode 0)
Current function value: 115.18902766090146
Iterations: 14
Function evaluations: 133
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 185.3103590217058
Iteration: 2, Func. Count: 22, Neg. LLF: 18382565.230634354
Iteration: 3, Func. Count: 33, Neg. LLF: 161.6268150780503
Iteration: 4, Func. Count: 44, Neg. LLF: 131.54164734203334
Iteration: 5, Func. Count: 55, Neg. LLF: 132.5478379390955
Iteration: 6, Func. Count: 66, Neg. LLF: 126.72175061735011
Iteration: 7, Func. Count: 77, Neg. LLF: 116.51807954184403
Iteration: 8, Func. Count: 88, Neg. LLF: 115.28151391755249
Iteration: 9, Func. Count: 98, Neg. LLF: 115.24129474080713
Iteration: 10, Func. Count: 108, Neg. LLF: 115.27424399959877
Iteration: 11, Func. Count: 119, Neg. LLF: 115.19495073129436
Iteration: 12, Func. Count: 129, Neg. LLF: 115.19197763992376
Iteration: 13, Func. Count: 139, Neg. LLF: 115.19073353409313
Iteration: 14, Func. Count: 149, Neg. LLF: 115.18936018842614
Iteration: 15, Func. Count: 159, Neg. LLF: 115.18920888390045
Iteration: 16, Func. Count: 169, Neg. LLF: 115.18905632290674
Iteration: 17, Func. Count: 179, Neg. LLF: 115.18902973386749
Iteration: 18, Func. Count: 189, Neg. LLF: 115.18902723997684
Iteration: 19, Func. Count: 198, Neg. LLF: 115.18902725838741
Optimization terminated successfully (Exit mode 0)
Current function value: 115.18902723997684
Iterations: 19
Function evaluations: 198
Gradient evaluations: 19
Iteration: 1, Func. Count: 8, Neg. LLF: 117.13624929700067
Iteration: 2, Func. Count: 16, Neg. LLF: 118.15049304406881
Iteration: 3, Func. Count: 24, Neg. LLF: 117.01242762373816
Iteration: 4, Func. Count: 32, Neg. LLF: 136529.43941563566
Iteration: 5, Func. Count: 40, Neg. LLF: 116.94981770244948
Iteration: 6, Func. Count: 48, Neg. LLF: 114.41908008931516
Iteration: 7, Func. Count: 56, Neg. LLF: 114.07575094240963
Iteration: 8, Func. Count: 64, Neg. LLF: 115.57771153771304
Iteration: 9, Func. Count: 72, Neg. LLF: 113.92380589855618
Iteration: 10, Func. Count: 79, Neg. LLF: 113.92307871252993
Iteration: 11, Func. Count: 86, Neg. LLF: 113.9229827668321
Iteration: 12, Func. Count: 93, Neg. LLF: 113.92296401550738
Iteration: 13, Func. Count: 100, Neg. LLF: 113.92296092535199
Iteration: 14, Func. Count: 106, Neg. LLF: 113.92296092534593
Optimization terminated successfully (Exit mode 0)
Current function value: 113.92296092535199
Iterations: 14
Function evaluations: 106
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 204.74808478700146
Iteration: 2, Func. Count: 18, Neg. LLF: 171.57674645542002
Iteration: 3, Func. Count: 27, Neg. LLF: 162.94031751184093
Iteration: 4, Func. Count: 36, Neg. LLF: 392.524738727987
Iteration: 5, Func. Count: 45, Neg. LLF: 3121.061853612728
Iteration: 6, Func. Count: 54, Neg. LLF: 118.77718390454349
Iteration: 7, Func. Count: 63, Neg. LLF: 116.26689921909887
Iteration: 8, Func. Count: 72, Neg. LLF: 114.17825425522217
Iteration: 9, Func. Count: 80, Neg. LLF: 114.3459955715422
Iteration: 10, Func. Count: 89, Neg. LLF: 113.96889907088432
Iteration: 11, Func. Count: 97, Neg. LLF: 113.92840052527619
Iteration: 12, Func. Count: 105, Neg. LLF: 113.93249367919417
Iteration: 13, Func. Count: 114, Neg. LLF: 113.92302000793924
Iteration: 14, Func. Count: 122, Neg. LLF: 113.92298630598614
Iteration: 15, Func. Count: 130, Neg. LLF: 113.92296409233548
Iteration: 16, Func. Count: 138, Neg. LLF: 113.9229610548015
Iteration: 17, Func. Count: 145, Neg. LLF: 113.92296109468201
Optimization terminated successfully (Exit mode 0)
Current function value: 113.9229610548015
Iterations: 17
Function evaluations: 145
Gradient evaluations: 17
Iteration: 1, Func. Count: 10, Neg. LLF: 216.6769430280311
Iteration: 2, Func. Count: 20, Neg. LLF: 4031.464162804934
Iteration: 3, Func. Count: 30, Neg. LLF: 436.40547123349677
Iteration: 4, Func. Count: 40, Neg. LLF: 278.75234328377337
Iteration: 5, Func. Count: 50, Neg. LLF: 1128.8010980830181
Iteration: 6, Func. Count: 60, Neg. LLF: 273.2875220196509
Iteration: 7, Func. Count: 70, Neg. LLF: 117.12682102041445
Iteration: 8, Func. Count: 80, Neg. LLF: 114.26698756687037
Iteration: 9, Func. Count: 89, Neg. LLF: 114.57229418737867
Iteration: 10, Func. Count: 99, Neg. LLF: 115.45968512652263
Iteration: 11, Func. Count: 110, Neg. LLF: 114.02010382054361
Iteration: 12, Func. Count: 120, Neg. LLF: 113.828689452092
Iteration: 13, Func. Count: 129, Neg. LLF: 113.82163988093544
Iteration: 14, Func. Count: 138, Neg. LLF: 113.82062385691968
Iteration: 15, Func. Count: 147, Neg. LLF: 113.82050460597875
Iteration: 16, Func. Count: 156, Neg. LLF: 113.82043868320076
Iteration: 17, Func. Count: 165, Neg. LLF: 113.82043122183738
Iteration: 18, Func. Count: 174, Neg. LLF: 113.82042907918377
Iteration: 19, Func. Count: 182, Neg. LLF: 113.82042907919237
Optimization terminated successfully (Exit mode 0)
Current function value: 113.82042907918377
Iterations: 19
Function evaluations: 182
Gradient evaluations: 19
Iteration: 1, Func. Count: 11, Neg. LLF: 211.75186794550842
Iteration: 2, Func. Count: 22, Neg. LLF: 565.9816666839394
Iteration: 3, Func. Count: 33, Neg. LLF: 413.8264204920037
Iteration: 4, Func. Count: 44, Neg. LLF: 12513.230010865194
Iteration: 5, Func. Count: 55, Neg. LLF: 52012.09548764399
Iteration: 6, Func. Count: 66, Neg. LLF: 501.7561958252483
Iteration: 7, Func. Count: 77, Neg. LLF: 114.59143450973386
Iteration: 8, Func. Count: 87, Neg. LLF: 116.18749644958147
Iteration: 9, Func. Count: 99, Neg. LLF: 125.60731636790503
Iteration: 10, Func. Count: 110, Neg. LLF: 115.18547148657042
Iteration: 11, Func. Count: 121, Neg. LLF: 113.95824339463915
Iteration: 12, Func. Count: 132, Neg. LLF: 115.34037262901967
Iteration: 13, Func. Count: 143, Neg. LLF: 113.84152297456393
Iteration: 14, Func. Count: 153, Neg. LLF: 113.82691389164258
Iteration: 15, Func. Count: 163, Neg. LLF: 113.8109133615636
Iteration: 16, Func. Count: 173, Neg. LLF: 113.80627803133056
Iteration: 17, Func. Count: 183, Neg. LLF: 113.80550638511144
Iteration: 18, Func. Count: 193, Neg. LLF: 113.80531120397686
Iteration: 19, Func. Count: 203, Neg. LLF: 113.80506373355779
Iteration: 20, Func. Count: 213, Neg. LLF: 113.80441856356474
Iteration: 21, Func. Count: 223, Neg. LLF: 113.79808049909784
Iteration: 22, Func. Count: 233, Neg. LLF: 113.79711819800839
Iteration: 23, Func. Count: 243, Neg. LLF: 113.79625914046791
Iteration: 24, Func. Count: 253, Neg. LLF: 113.79615184260943
Iteration: 25, Func. Count: 263, Neg. LLF: 113.79605532731975
Iteration: 26, Func. Count: 273, Neg. LLF: 113.79604034154266
Iteration: 27, Func. Count: 283, Neg. LLF: 113.79603576364883
Iteration: 28, Func. Count: 292, Neg. LLF: 113.79603575854122
Optimization terminated successfully (Exit mode 0)
Current function value: 113.79603576364883
Iterations: 28
Function evaluations: 292
Gradient evaluations: 28
Iteration: 1, Func. Count: 12, Neg. LLF: 121.52055008843129
Iteration: 2, Func. Count: 24, Neg. LLF: 125.62347410509935
Iteration: 3, Func. Count: 36, Neg. LLF: 5980794.993329672
Iteration: 4, Func. Count: 48, Neg. LLF: 1004.6036366267803
Iteration: 5, Func. Count: 60, Neg. LLF: 213.92288582936013
Iteration: 6, Func. Count: 72, Neg. LLF: 117.12872506593573
Iteration: 7, Func. Count: 84, Neg. LLF: 116.83941544730503
Iteration: 8, Func. Count: 96, Neg. LLF: 116.35469128348014
Iteration: 9, Func. Count: 108, Neg. LLF: 113.86476969119603
Iteration: 10, Func. Count: 119, Neg. LLF: 115.86466946005977
Iteration: 11, Func. Count: 131, Neg. LLF: 114.45024647857713
Iteration: 12, Func. Count: 143, Neg. LLF: 113.8376665694179
Iteration: 13, Func. Count: 155, Neg. LLF: 113.80556818715628
Iteration: 14, Func. Count: 166, Neg. LLF: 113.80520197249311
Iteration: 15, Func. Count: 177, Neg. LLF: 113.8050463410954
Iteration: 16, Func. Count: 188, Neg. LLF: 113.80484026076562
Iteration: 17, Func. Count: 199, Neg. LLF: 113.79882245782053
Iteration: 18, Func. Count: 210, Neg. LLF: 113.79687380772678
Iteration: 19, Func. Count: 221, Neg. LLF: 113.79610884759212
Iteration: 20, Func. Count: 232, Neg. LLF: 113.79604306672627
Iteration: 21, Func. Count: 243, Neg. LLF: 113.79603575295215
Iteration: 22, Func. Count: 253, Neg. LLF: 113.79603579134226
Optimization terminated successfully (Exit mode 0)
Current function value: 113.79603575295215
Iterations: 22
Function evaluations: 253
Gradient evaluations: 22
Iteration: 1, Func. Count: 9, Neg. LLF: 118.41845246830128
Iteration: 2, Func. Count: 18, Neg. LLF: 119.9665288080219
Iteration: 3, Func. Count: 28, Neg. LLF: 118.88195905817824
Iteration: 4, Func. Count: 38, Neg. LLF: 126.18529734619631
Iteration: 5, Func. Count: 47, Neg. LLF: 617.598413220367
Iteration: 6, Func. Count: 56, Neg. LLF: 1804.278514827035
Iteration: 7, Func. Count: 65, Neg. LLF: 117.89994502766618
Iteration: 8, Func. Count: 74, Neg. LLF: 114.5770231393539
Iteration: 9, Func. Count: 83, Neg. LLF: 114.08205874369037
Iteration: 10, Func. Count: 92, Neg. LLF: 113.92746784216868
Iteration: 11, Func. Count: 100, Neg. LLF: 113.92434976726301
Iteration: 12, Func. Count: 108, Neg. LLF: 113.92310630530915
Iteration: 13, Func. Count: 116, Neg. LLF: 113.92299383167561
Iteration: 14, Func. Count: 124, Neg. LLF: 113.92296506469324
Iteration: 15, Func. Count: 132, Neg. LLF: 113.92296089219705
Iteration: 16, Func. Count: 139, Neg. LLF: 113.92296094194792
Optimization terminated successfully (Exit mode 0)
Current function value: 113.92296089219705
Iterations: 16
Function evaluations: 139
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 176.76973544057955
Iteration: 2, Func. Count: 20, Neg. LLF: 110561.40946650028
Iteration: 3, Func. Count: 30, Neg. LLF: 156.91845622819193
Iteration: 4, Func. Count: 40, Neg. LLF: 136.29111378756107
Iteration: 5, Func. Count: 50, Neg. LLF: 119.56085801917975
Iteration: 6, Func. Count: 60, Neg. LLF: 117.53577351171288
Iteration: 7, Func. Count: 70, Neg. LLF: 114.21487082642074
Iteration: 8, Func. Count: 79, Neg. LLF: 114.4166653969594
Iteration: 9, Func. Count: 89, Neg. LLF: 114.04470919640453
Iteration: 10, Func. Count: 98, Neg. LLF: 113.94305804589098
Iteration: 11, Func. Count: 107, Neg. LLF: 113.93114662245527
Iteration: 12, Func. Count: 116, Neg. LLF: 113.92546066879463
Iteration: 13, Func. Count: 125, Neg. LLF: 113.92372519672391
Iteration: 14, Func. Count: 134, Neg. LLF: 113.9229840513131
Iteration: 15, Func. Count: 143, Neg. LLF: 113.92296154520274
Iteration: 16, Func. Count: 152, Neg. LLF: 113.92296089212368
Optimization terminated successfully (Exit mode 0)
Current function value: 113.92296089212368
Iterations: 16
Function evaluations: 152
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 178.55004398501822
Iteration: 2, Func. Count: 22, Neg. LLF: 9397705.517166868
Iteration: 3, Func. Count: 33, Neg. LLF: 202.2131637853239
Iteration: 4, Func. Count: 44, Neg. LLF: 237.82679651185254
Iteration: 5, Func. Count: 55, Neg. LLF: 677.3667205752281
Iteration: 6, Func. Count: 66, Neg. LLF: 153.22653178609303
Iteration: 7, Func. Count: 77, Neg. LLF: 121.99900710083512
Iteration: 8, Func. Count: 88, Neg. LLF: 115.01389706500058
Iteration: 9, Func. Count: 99, Neg. LLF: 115.29551457371404
Iteration: 10, Func. Count: 110, Neg. LLF: 113.85570731510794
Iteration: 11, Func. Count: 120, Neg. LLF: 113.84005005435539
Iteration: 12, Func. Count: 130, Neg. LLF: 113.84296770821003
Iteration: 13, Func. Count: 141, Neg. LLF: 113.8274632498191
Iteration: 14, Func. Count: 151, Neg. LLF: 113.82095999649961
Iteration: 15, Func. Count: 161, Neg. LLF: 113.82050162994656
Iteration: 16, Func. Count: 171, Neg. LLF: 113.82045593595176
Iteration: 17, Func. Count: 181, Neg. LLF: 113.820444062043
Iteration: 18, Func. Count: 191, Neg. LLF: 113.82042955143605
Iteration: 19, Func. Count: 201, Neg. LLF: 113.82042878040389
Optimization terminated successfully (Exit mode 0)
Current function value: 113.82042878040389
Iterations: 19
Function evaluations: 201
Gradient evaluations: 19
Iteration: 1, Func. Count: 12, Neg. LLF: 174.27801182755303
Iteration: 2, Func. Count: 24, Neg. LLF: 8956214.212673107
Iteration: 3, Func. Count: 36, Neg. LLF: 161.99058272756847
Iteration: 4, Func. Count: 48, Neg. LLF: 280.8558296011347
Iteration: 5, Func. Count: 60, Neg. LLF: 477.8691993069913
Iteration: 6, Func. Count: 72, Neg. LLF: 274.78303406901716
Iteration: 7, Func. Count: 84, Neg. LLF: 122.93328089235673
Iteration: 8, Func. Count: 96, Neg. LLF: 116.17991436892575
Iteration: 9, Func. Count: 108, Neg. LLF: 114.17667664616037
Iteration: 10, Func. Count: 119, Neg. LLF: 114.87589518094047
Iteration: 11, Func. Count: 131, Neg. LLF: 114.15940210445441
Iteration: 12, Func. Count: 143, Neg. LLF: 115.27025620107966
Iteration: 13, Func. Count: 156, Neg. LLF: 113.82938496795116
Iteration: 14, Func. Count: 167, Neg. LLF: 113.80857601047174
Iteration: 15, Func. Count: 178, Neg. LLF: 113.80497421969875
Iteration: 16, Func. Count: 189, Neg. LLF: 113.80462844096361
Iteration: 17, Func. Count: 200, Neg. LLF: 113.80431164053931
Iteration: 18, Func. Count: 211, Neg. LLF: 113.80006628786433
Iteration: 19, Func. Count: 222, Neg. LLF: 113.79857249533907
Iteration: 20, Func. Count: 233, Neg. LLF: 113.79642247184485
Iteration: 21, Func. Count: 244, Neg. LLF: 113.796164247898
Iteration: 22, Func. Count: 255, Neg. LLF: 113.79604440886835
Iteration: 23, Func. Count: 266, Neg. LLF: 113.79603722885162
Iteration: 24, Func. Count: 277, Neg. LLF: 113.79603562038423
Iteration: 25, Func. Count: 287, Neg. LLF: 113.79603561529352
Optimization terminated successfully (Exit mode 0)
Current function value: 113.79603562038423
Iterations: 25
Function evaluations: 287
Gradient evaluations: 25
Iteration: 1, Func. Count: 13, Neg. LLF: 120.8606009595007
Iteration: 2, Func. Count: 26, Neg. LLF: 123.4581004514263
Iteration: 3, Func. Count: 39, Neg. LLF: 240.50076407381925
Iteration: 4, Func. Count: 52, Neg. LLF: 13260.223751983456
Iteration: 5, Func. Count: 65, Neg. LLF: 1211.0612690304558
Iteration: 6, Func. Count: 78, Neg. LLF: 126.8080985176832
Iteration: 7, Func. Count: 91, Neg. LLF: 115.61051398068969
Iteration: 8, Func. Count: 104, Neg. LLF: 116.21261112838005
Iteration: 9, Func. Count: 117, Neg. LLF: 114.18453993968868
Iteration: 10, Func. Count: 130, Neg. LLF: 113.9123670387501
Iteration: 11, Func. Count: 142, Neg. LLF: 113.95343503943887
Iteration: 12, Func. Count: 155, Neg. LLF: 115.18322523032658
Iteration: 13, Func. Count: 168, Neg. LLF: 113.81904593607187
Iteration: 14, Func. Count: 180, Neg. LLF: 113.80739823228497
Iteration: 15, Func. Count: 192, Neg. LLF: 113.80568446488896
Iteration: 16, Func. Count: 204, Neg. LLF: 113.80533071951768
Iteration: 17, Func. Count: 216, Neg. LLF: 113.80522669977148
Iteration: 18, Func. Count: 228, Neg. LLF: 113.8049381791032
Iteration: 19, Func. Count: 240, Neg. LLF: 113.79821195489119
Iteration: 20, Func. Count: 252, Neg. LLF: 113.79656245527524
Iteration: 21, Func. Count: 264, Neg. LLF: 113.79604434231767
Iteration: 22, Func. Count: 276, Neg. LLF: 113.79603617902023
Iteration: 23, Func. Count: 288, Neg. LLF: 113.79603556251864
Optimization terminated successfully (Exit mode 0)
Current function value: 113.79603556251864
Iterations: 23
Function evaluations: 288
Gradient evaluations: 23
Iteration: 1, Func. Count: 10, Neg. LLF: 118.55345976501914
Iteration: 2, Func. Count: 20, Neg. LLF: 119.48111615824968
Iteration: 3, Func. Count: 31, Neg. LLF: 117.86660665484261
Iteration: 4, Func. Count: 41, Neg. LLF: 116.63356078553511
Iteration: 5, Func. Count: 51, Neg. LLF: 1367153.6830385732
Iteration: 6, Func. Count: 61, Neg. LLF: 113.76408117811059
Iteration: 7, Func. Count: 70, Neg. LLF: 113.69508325864491
Iteration: 8, Func. Count: 79, Neg. LLF: 113.6685841299544
Iteration: 9, Func. Count: 88, Neg. LLF: 113.66379958939983
Iteration: 10, Func. Count: 97, Neg. LLF: 113.65658428844542
Iteration: 11, Func. Count: 106, Neg. LLF: 113.65629460984819
Iteration: 12, Func. Count: 115, Neg. LLF: 113.65628282383673
Iteration: 13, Func. Count: 124, Neg. LLF: 113.65627509978144
Iteration: 14, Func. Count: 132, Neg. LLF: 113.65627501082126
Optimization terminated successfully (Exit mode 0)
Current function value: 113.65627509978144
Iterations: 14
Function evaluations: 132
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 174.05398201093175
Iteration: 2, Func. Count: 22, Neg. LLF: 9569070.298175257
Iteration: 3, Func. Count: 33, Neg. LLF: 327.64727126271526
Iteration: 4, Func. Count: 44, Neg. LLF: 137.3614701385097
Iteration: 5, Func. Count: 55, Neg. LLF: 136.30004292331594
Iteration: 6, Func. Count: 66, Neg. LLF: 127.61484560138815
Iteration: 7, Func. Count: 77, Neg. LLF: 116.25364281712568
Iteration: 8, Func. Count: 88, Neg. LLF: 114.45506517286134
Iteration: 9, Func. Count: 98, Neg. LLF: 114.13441612827009
Iteration: 10, Func. Count: 108, Neg. LLF: 114.52398511364218
Iteration: 11, Func. Count: 119, Neg. LLF: 113.96810598368486
Iteration: 12, Func. Count: 129, Neg. LLF: 113.93340784836222
Iteration: 13, Func. Count: 139, Neg. LLF: 113.92481463512232
Iteration: 14, Func. Count: 149, Neg. LLF: 113.9222841846373
Iteration: 15, Func. Count: 159, Neg. LLF: 113.92168599096725
Iteration: 16, Func. Count: 169, Neg. LLF: 113.92143758376768
Iteration: 17, Func. Count: 179, Neg. LLF: 113.92136746745591
Iteration: 18, Func. Count: 189, Neg. LLF: 113.92136191623077
Iteration: 19, Func. Count: 198, Neg. LLF: 113.92136195813137
Optimization terminated successfully (Exit mode 0)
Current function value: 113.92136191623077
Iterations: 19
Function evaluations: 198
Gradient evaluations: 19
Iteration: 1, Func. Count: 12, Neg. LLF: 177.66472912314794
Iteration: 2, Func. Count: 24, Neg. LLF: 9748078.560139082
Iteration: 3, Func. Count: 36, Neg. LLF: 259.9938165216812
Iteration: 4, Func. Count: 48, Neg. LLF: 146.12780435699838
Iteration: 5, Func. Count: 60, Neg. LLF: 436.4001883368068
Iteration: 6, Func. Count: 72, Neg. LLF: 288.9154698088909
Iteration: 7, Func. Count: 84, Neg. LLF: 120.37258844293989
Iteration: 8, Func. Count: 96, Neg. LLF: 115.74624339972188
Iteration: 9, Func. Count: 108, Neg. LLF: 114.8488802226092
Iteration: 10, Func. Count: 120, Neg. LLF: 113.93039646282833
Iteration: 11, Func. Count: 131, Neg. LLF: 113.93465813222775
Iteration: 12, Func. Count: 143, Neg. LLF: 113.95852740706891
Iteration: 13, Func. Count: 155, Neg. LLF: 113.80264348265212
Iteration: 14, Func. Count: 166, Neg. LLF: 113.79775690543389
Iteration: 15, Func. Count: 177, Neg. LLF: 113.79662209896048
Iteration: 16, Func. Count: 188, Neg. LLF: 113.79638762888459
Iteration: 17, Func. Count: 199, Neg. LLF: 113.79625424358987
Iteration: 18, Func. Count: 210, Neg. LLF: 113.7961714783295
Iteration: 19, Func. Count: 221, Neg. LLF: 113.79616234400694
Iteration: 20, Func. Count: 232, Neg. LLF: 113.7961602930673
Iteration: 21, Func. Count: 242, Neg. LLF: 113.79616029300645
Optimization terminated successfully (Exit mode 0)
Current function value: 113.7961602930673
Iterations: 21
Function evaluations: 242
Gradient evaluations: 21
Iteration: 1, Func. Count: 13, Neg. LLF: 175.3353130373122
Iteration: 2, Func. Count: 26, Neg. LLF: 9396918.17874821
Iteration: 3, Func. Count: 39, Neg. LLF: 309.80467362810174
Iteration: 4, Func. Count: 52, Neg. LLF: 156.15577890210457
Iteration: 5, Func. Count: 65, Neg. LLF: 313.56483459162894
Iteration: 6, Func. Count: 78, Neg. LLF: 284.1965320940191
Iteration: 7, Func. Count: 91, Neg. LLF: 118.79916003989213
Iteration: 8, Func. Count: 104, Neg. LLF: 115.19570815038878
Iteration: 9, Func. Count: 117, Neg. LLF: 115.04880468910933
Iteration: 10, Func. Count: 130, Neg. LLF: 114.02773305521195
Iteration: 11, Func. Count: 142, Neg. LLF: 113.88289431027069
Iteration: 12, Func. Count: 154, Neg. LLF: 116.25479368872256
Iteration: 13, Func. Count: 167, Neg. LLF: 113.77713290918159
Iteration: 14, Func. Count: 179, Neg. LLF: 113.7819899362421
Iteration: 15, Func. Count: 192, Neg. LLF: 113.76594425041448
Iteration: 16, Func. Count: 204, Neg. LLF: 113.76373026572574
Iteration: 17, Func. Count: 216, Neg. LLF: 113.75944215283006
Iteration: 18, Func. Count: 228, Neg. LLF: 113.75316176630493
Iteration: 19, Func. Count: 240, Neg. LLF: 113.75166264417246
Iteration: 20, Func. Count: 252, Neg. LLF: 113.74730069180478
Iteration: 21, Func. Count: 264, Neg. LLF: 113.7470517165605
Iteration: 22, Func. Count: 276, Neg. LLF: 113.74703288466814
Iteration: 23, Func. Count: 288, Neg. LLF: 113.74702695525448
Iteration: 24, Func. Count: 300, Neg. LLF: 113.74702564182219
Iteration: 25, Func. Count: 311, Neg. LLF: 113.74702563256626
Optimization terminated successfully (Exit mode 0)
Current function value: 113.74702564182219
Iterations: 25
Function evaluations: 311
Gradient evaluations: 25
Iteration: 1, Func. Count: 14, Neg. LLF: 174.14537264102506
Iteration: 2, Func. Count: 28, Neg. LLF: 8918661.588962175
Iteration: 3, Func. Count: 42, Neg. LLF: 266.3306101010584
Iteration: 4, Func. Count: 56, Neg. LLF: 198.65460946451893
Iteration: 5, Func. Count: 70, Neg. LLF: 286.47042131625915
Iteration: 6, Func. Count: 84, Neg. LLF: 127.43526206379812
Iteration: 7, Func. Count: 98, Neg. LLF: 117.25909369121779
Iteration: 8, Func. Count: 112, Neg. LLF: 115.9397508083422
Iteration: 9, Func. Count: 126, Neg. LLF: 115.16676999843575
Iteration: 10, Func. Count: 140, Neg. LLF: 113.91660926422287
Iteration: 11, Func. Count: 153, Neg. LLF: 115.02469208547468
Iteration: 12, Func. Count: 167, Neg. LLF: 119.34220248351757
Iteration: 13, Func. Count: 182, Neg. LLF: 113.85425611903378
Iteration: 14, Func. Count: 196, Neg. LLF: 113.76829892538052
Iteration: 15, Func. Count: 209, Neg. LLF: 113.76715185501173
Iteration: 16, Func. Count: 222, Neg. LLF: 113.76630418938078
Iteration: 17, Func. Count: 235, Neg. LLF: 113.76355963066838
Iteration: 18, Func. Count: 248, Neg. LLF: 113.75549700900098
Iteration: 19, Func. Count: 261, Neg. LLF: 113.75424728701891
Iteration: 20, Func. Count: 274, Neg. LLF: 113.74969924678912
Iteration: 21, Func. Count: 287, Neg. LLF: 113.74809756031436
Iteration: 22, Func. Count: 300, Neg. LLF: 113.74737429601043
Iteration: 23, Func. Count: 313, Neg. LLF: 113.74719493656463
Iteration: 24, Func. Count: 326, Neg. LLF: 113.74710286417107
Iteration: 25, Func. Count: 339, Neg. LLF: 113.74704290219996
Iteration: 26, Func. Count: 352, Neg. LLF: 113.74702706976784
Iteration: 27, Func. Count: 365, Neg. LLF: 113.74702538200337
Iteration: 28, Func. Count: 377, Neg. LLF: 113.74702541897543
Optimization terminated successfully (Exit mode 0)
Current function value: 113.74702538200337
Iterations: 28
Function evaluations: 377
Gradient evaluations: 28
Iteration: 1, Func. Count: 11, Neg. LLF: 118.78693269410455
Iteration: 2, Func. Count: 22, Neg. LLF: 125.2722080231563
Iteration: 3, Func. Count: 33, Neg. LLF: 115.88623664480897
Iteration: 4, Func. Count: 44, Neg. LLF: 9519362.231508953
Iteration: 5, Func. Count: 55, Neg. LLF: 2573239.1359339505
Iteration: 6, Func. Count: 66, Neg. LLF: 114.3324131474847
Iteration: 7, Func. Count: 76, Neg. LLF: 114.68898538839801
Iteration: 8, Func. Count: 87, Neg. LLF: 114.90071786509326
Iteration: 9, Func. Count: 98, Neg. LLF: 114.4597115531414
Iteration: 10, Func. Count: 109, Neg. LLF: 114.0416297588769
Iteration: 11, Func. Count: 120, Neg. LLF: 113.93486960177665
Iteration: 12, Func. Count: 130, Neg. LLF: 113.92843617716395
Iteration: 13, Func. Count: 140, Neg. LLF: 113.92192758786113
Iteration: 14, Func. Count: 150, Neg. LLF: 113.9203817590835
Iteration: 15, Func. Count: 160, Neg. LLF: 113.91977254550957
Iteration: 16, Func. Count: 170, Neg. LLF: 113.91974367654345
Iteration: 17, Func. Count: 180, Neg. LLF: 113.91974057099998
Iteration: 18, Func. Count: 189, Neg. LLF: 113.91974057104039
Optimization terminated successfully (Exit mode 0)
Current function value: 113.91974057099998
Iterations: 18
Function evaluations: 189
Gradient evaluations: 18
Iteration: 1, Func. Count: 12, Neg. LLF: 165.4603039407492
Iteration: 2, Func. Count: 24, Neg. LLF: 9607019.302859943
Iteration: 3, Func. Count: 36, Neg. LLF: 906.4451947137167
Iteration: 4, Func. Count: 48, Neg. LLF: 128.2494626523311
Iteration: 5, Func. Count: 60, Neg. LLF: 131.2787785982221
Iteration: 6, Func. Count: 72, Neg. LLF: 126.41175305761989
Iteration: 7, Func. Count: 84, Neg. LLF: 116.40481396753374
Iteration: 8, Func. Count: 96, Neg. LLF: 114.36513663520901
Iteration: 9, Func. Count: 107, Neg. LLF: 114.3107499124223
Iteration: 10, Func. Count: 119, Neg. LLF: 114.35510838622992
Iteration: 11, Func. Count: 131, Neg. LLF: 115.83974737268825
Iteration: 12, Func. Count: 143, Neg. LLF: 113.95965916439445
Iteration: 13, Func. Count: 154, Neg. LLF: 113.92926071082908
Iteration: 14, Func. Count: 165, Neg. LLF: 113.9225657808894
Iteration: 15, Func. Count: 176, Neg. LLF: 113.92027972008866
Iteration: 16, Func. Count: 187, Neg. LLF: 113.91997581005812
Iteration: 17, Func. Count: 198, Neg. LLF: 113.91976654899364
Iteration: 18, Func. Count: 209, Neg. LLF: 113.91974721767218
Iteration: 19, Func. Count: 220, Neg. LLF: 113.91974057146405
Iteration: 20, Func. Count: 230, Neg. LLF: 113.919740615084
Optimization terminated successfully (Exit mode 0)
Current function value: 113.91974057146405
Iterations: 20
Function evaluations: 230
Gradient evaluations: 20
Iteration: 1, Func. Count: 13, Neg. LLF: 170.53662102996242
Iteration: 2, Func. Count: 26, Neg. LLF: 11446896.155360337
Iteration: 3, Func. Count: 39, Neg. LLF: 5122.70378300518
Iteration: 4, Func. Count: 52, Neg. LLF: 141.1039333014047
Iteration: 5, Func. Count: 65, Neg. LLF: 528.5347118271123
Iteration: 6, Func. Count: 78, Neg. LLF: 271.58958241268897
Iteration: 7, Func. Count: 91, Neg. LLF: 123.0730505003305
Iteration: 8, Func. Count: 104, Neg. LLF: 118.23326382925931
Iteration: 9, Func. Count: 117, Neg. LLF: 114.63720030478939
Iteration: 10, Func. Count: 130, Neg. LLF: 115.0343838973719
Iteration: 11, Func. Count: 143, Neg. LLF: 114.95686250231327
Iteration: 12, Func. Count: 156, Neg. LLF: 114.21032026827969
Iteration: 13, Func. Count: 169, Neg. LLF: 113.8258981929732
Iteration: 14, Func. Count: 181, Neg. LLF: 113.81322554450229
Iteration: 15, Func. Count: 193, Neg. LLF: 113.79844557771291
Iteration: 16, Func. Count: 205, Neg. LLF: 113.79548412892419
Iteration: 17, Func. Count: 217, Neg. LLF: 113.79351552445925
Iteration: 18, Func. Count: 229, Neg. LLF: 113.79296454965473
Iteration: 19, Func. Count: 241, Neg. LLF: 113.79285488391493
Iteration: 20, Func. Count: 253, Neg. LLF: 113.7927809141864
Iteration: 21, Func. Count: 265, Neg. LLF: 113.79274500061612
Iteration: 22, Func. Count: 277, Neg. LLF: 113.792740178145
Iteration: 23, Func. Count: 288, Neg. LLF: 113.79274017818118
Optimization terminated successfully (Exit mode 0)
Current function value: 113.792740178145
Iterations: 23
Function evaluations: 288
Gradient evaluations: 23
Iteration: 1, Func. Count: 14, Neg. LLF: 171.164169436177
Iteration: 2, Func. Count: 28, Neg. LLF: 9534630.828696704
Iteration: 3, Func. Count: 42, Neg. LLF: 1790.1847363150177
Iteration: 4, Func. Count: 56, Neg. LLF: 215.19360393808432
Iteration: 5, Func. Count: 70, Neg. LLF: 262.3377110626415
Iteration: 6, Func. Count: 84, Neg. LLF: 173.71949880058975
Iteration: 7, Func. Count: 98, Neg. LLF: 118.73720579659268
Iteration: 8, Func. Count: 112, Neg. LLF: 114.71112567075352
Iteration: 9, Func. Count: 126, Neg. LLF: 115.10712310281042
Iteration: 10, Func. Count: 140, Neg. LLF: 113.87598504909354
Iteration: 11, Func. Count: 153, Neg. LLF: 113.87117229653292
Iteration: 12, Func. Count: 167, Neg. LLF: 114.09188408390168
Iteration: 13, Func. Count: 181, Neg. LLF: 113.76627726585374
Iteration: 14, Func. Count: 194, Neg. LLF: 113.76351907375641
Iteration: 15, Func. Count: 207, Neg. LLF: 113.75669606328631
Iteration: 16, Func. Count: 220, Neg. LLF: 113.75458527466195
Iteration: 17, Func. Count: 233, Neg. LLF: 113.75136490292455
Iteration: 18, Func. Count: 246, Neg. LLF: 113.74867161724806
Iteration: 19, Func. Count: 259, Neg. LLF: 113.74757801931074
Iteration: 20, Func. Count: 272, Neg. LLF: 113.747181948437
Iteration: 21, Func. Count: 285, Neg. LLF: 113.74709420442731
Iteration: 22, Func. Count: 298, Neg. LLF: 113.74705238162609
Iteration: 23, Func. Count: 311, Neg. LLF: 113.74703157231545
Iteration: 24, Func. Count: 324, Neg. LLF: 113.74702678034058
Iteration: 25, Func. Count: 337, Neg. LLF: 113.74702564483565
Iteration: 26, Func. Count: 349, Neg. LLF: 113.7470256354312
Optimization terminated successfully (Exit mode 0)
Current function value: 113.74702564483565
Iterations: 26
Function evaluations: 349
Gradient evaluations: 26
Iteration: 1, Func. Count: 15, Neg. LLF: 120.75644966264966
Iteration: 2, Func. Count: 30, Neg. LLF: 128.90371661194462
Iteration: 3, Func. Count: 45, Neg. LLF: 130.1530060600136
Iteration: 4, Func. Count: 60, Neg. LLF: 158.4863708755806
Iteration: 5, Func. Count: 75, Neg. LLF: 356.8334786702479
Iteration: 6, Func. Count: 90, Neg. LLF: 121.3571547391226
Iteration: 7, Func. Count: 105, Neg. LLF: 115.54314369629618
Iteration: 8, Func. Count: 120, Neg. LLF: 117.13390111567988
Iteration: 9, Func. Count: 135, Neg. LLF: 113.84851694316627
Iteration: 10, Func. Count: 149, Neg. LLF: 117.70220405499633
Iteration: 11, Func. Count: 164, Neg. LLF: 114.9887763527691
Iteration: 12, Func. Count: 179, Neg. LLF: 114.13013960107567
Iteration: 13, Func. Count: 194, Neg. LLF: 113.8013849523225
Iteration: 14, Func. Count: 209, Neg. LLF: 113.77202228838843
Iteration: 15, Func. Count: 223, Neg. LLF: 113.76797795946693
Iteration: 16, Func. Count: 237, Neg. LLF: 113.76522899073284
Iteration: 17, Func. Count: 251, Neg. LLF: 113.75106300851806
Iteration: 18, Func. Count: 265, Neg. LLF: 113.74830170988085
Iteration: 19, Func. Count: 279, Neg. LLF: 113.74746970305038
Iteration: 20, Func. Count: 293, Neg. LLF: 113.74721435273523
Iteration: 21, Func. Count: 307, Neg. LLF: 113.74707615117897
Iteration: 22, Func. Count: 321, Neg. LLF: 113.7470317685163
Iteration: 23, Func. Count: 335, Neg. LLF: 113.74702561924784
Iteration: 24, Func. Count: 348, Neg. LLF: 113.7470256562527
Optimization terminated successfully (Exit mode 0)
Current function value: 113.74702561924784
Iterations: 24
Function evaluations: 348
Gradient evaluations: 24
Iteration: 1, Func. Count: 8, Neg. LLF: 119.76677194970887
Iteration: 2, Func. Count: 16, Neg. LLF: 144.84336798612807
Iteration: 3, Func. Count: 24, Neg. LLF: 117.08094901938622
Iteration: 4, Func. Count: 32, Neg. LLF: 127.88278769237023
Iteration: 5, Func. Count: 40, Neg. LLF: 129.19101098153263
Iteration: 6, Func. Count: 48, Neg. LLF: 117.22566037114333
Iteration: 7, Func. Count: 56, Neg. LLF: 116.27727600772955
Iteration: 8, Func. Count: 64, Neg. LLF: 115.45606762225928
Iteration: 9, Func. Count: 72, Neg. LLF: 115.25784238487222
Iteration: 10, Func. Count: 79, Neg. LLF: 115.2536799589275
Iteration: 11, Func. Count: 86, Neg. LLF: 115.25110115515653
Iteration: 12, Func. Count: 93, Neg. LLF: 115.25031765839523
Iteration: 13, Func. Count: 100, Neg. LLF: 115.25022499088881
Iteration: 14, Func. Count: 107, Neg. LLF: 115.25022193476276
Iteration: 15, Func. Count: 113, Neg. LLF: 115.25022199094128
Optimization terminated successfully (Exit mode 0)
Current function value: 115.25022193476276
Iterations: 15
Function evaluations: 113
Gradient evaluations: 15
Iteration: 1, Func. Count: 9, Neg. LLF: 148.13517820437548
Iteration: 2, Func. Count: 18, Neg. LLF: 1511.0909964995444
Iteration: 3, Func. Count: 27, Neg. LLF: 141.33945418224096
Iteration: 4, Func. Count: 36, Neg. LLF: 116.08243795247682
Iteration: 5, Func. Count: 44, Neg. LLF: 145.12315218664472
Iteration: 6, Func. Count: 53, Neg. LLF: 115.79126813813299
Iteration: 7, Func. Count: 61, Neg. LLF: 115.60265440102918
Iteration: 8, Func. Count: 69, Neg. LLF: 115.48137478567286
Iteration: 9, Func. Count: 77, Neg. LLF: 115.32207072662071
Iteration: 10, Func. Count: 85, Neg. LLF: 115.2815659783263
Iteration: 11, Func. Count: 93, Neg. LLF: 115.25466559978003
Iteration: 12, Func. Count: 101, Neg. LLF: 115.25156078709699
Iteration: 13, Func. Count: 109, Neg. LLF: 115.25036171554308
Iteration: 14, Func. Count: 117, Neg. LLF: 115.25024552189424
Iteration: 15, Func. Count: 125, Neg. LLF: 115.25022273618283
Iteration: 16, Func. Count: 133, Neg. LLF: 115.25022193541074
Optimization terminated successfully (Exit mode 0)
Current function value: 115.25022193541074
Iterations: 16
Function evaluations: 133
Gradient evaluations: 16
Iteration: 1, Func. Count: 10, Neg. LLF: 161.28156148590304
Iteration: 2, Func. Count: 20, Neg. LLF: 9522.656210926183
Iteration: 3, Func. Count: 30, Neg. LLF: 157.08688439734416
Iteration: 4, Func. Count: 40, Neg. LLF: 117.44456135776912
Iteration: 5, Func. Count: 50, Neg. LLF: 115.62637719439923
Iteration: 6, Func. Count: 59, Neg. LLF: 115.94922869366151
Iteration: 7, Func. Count: 69, Neg. LLF: 117.40942855299629
Iteration: 8, Func. Count: 79, Neg. LLF: 115.21521360266965
Iteration: 9, Func. Count: 88, Neg. LLF: 115.19599309697999
Iteration: 10, Func. Count: 97, Neg. LLF: 115.18964285504303
Iteration: 11, Func. Count: 106, Neg. LLF: 115.18923211201252
Iteration: 12, Func. Count: 115, Neg. LLF: 115.18907401814826
Iteration: 13, Func. Count: 124, Neg. LLF: 115.18903675136451
Iteration: 14, Func. Count: 133, Neg. LLF: 115.18902879325022
Iteration: 15, Func. Count: 142, Neg. LLF: 115.18902726684591
Iteration: 16, Func. Count: 150, Neg. LLF: 115.18902726686085
Optimization terminated successfully (Exit mode 0)
Current function value: 115.18902726684591
Iterations: 16
Function evaluations: 150
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 167.32978049760194
Iteration: 2, Func. Count: 22, Neg. LLF: 17962643.19264942
Iteration: 3, Func. Count: 33, Neg. LLF: 150.6400025270916
Iteration: 4, Func. Count: 44, Neg. LLF: 126.06073472121955
Iteration: 5, Func. Count: 55, Neg. LLF: 126.65110493933757
Iteration: 6, Func. Count: 66, Neg. LLF: 125.70799628951724
Iteration: 7, Func. Count: 77, Neg. LLF: 120.8205930738252
Iteration: 8, Func. Count: 88, Neg. LLF: 116.02122401081937
Iteration: 9, Func. Count: 99, Neg. LLF: 115.26222482146382
Iteration: 10, Func. Count: 109, Neg. LLF: 115.36548937030395
Iteration: 11, Func. Count: 120, Neg. LLF: 115.21314256314817
Iteration: 12, Func. Count: 130, Neg. LLF: 115.19687248049478
Iteration: 13, Func. Count: 140, Neg. LLF: 115.1921503626042
Iteration: 14, Func. Count: 150, Neg. LLF: 115.19018207243703
Iteration: 15, Func. Count: 160, Neg. LLF: 115.18904228515855
Iteration: 16, Func. Count: 170, Neg. LLF: 115.1890304494704
Iteration: 17, Func. Count: 180, Neg. LLF: 115.18902722232765
Iteration: 18, Func. Count: 189, Neg. LLF: 115.18902722678597
Optimization terminated successfully (Exit mode 0)
Current function value: 115.18902722232765
Iterations: 18
Function evaluations: 189
Gradient evaluations: 18
Iteration: 1, Func. Count: 12, Neg. LLF: 172.57064208601741
Iteration: 2, Func. Count: 24, Neg. LLF: 18615109.09424296
Iteration: 3, Func. Count: 36, Neg. LLF: 151.74598207765416
Iteration: 4, Func. Count: 48, Neg. LLF: 127.43728417391222
Iteration: 5, Func. Count: 60, Neg. LLF: 128.2942363647023
Iteration: 6, Func. Count: 72, Neg. LLF: 126.11639747233701
Iteration: 7, Func. Count: 84, Neg. LLF: 117.6922539612437
Iteration: 8, Func. Count: 96, Neg. LLF: 115.51026828087065
Iteration: 9, Func. Count: 107, Neg. LLF: 115.68002575994572
Iteration: 10, Func. Count: 119, Neg. LLF: 117.10898989906966
Iteration: 11, Func. Count: 132, Neg. LLF: 115.2056808833159
Iteration: 12, Func. Count: 143, Neg. LLF: 115.57628708407577
Iteration: 13, Func. Count: 155, Neg. LLF: 115.18935808247404
Iteration: 14, Func. Count: 166, Neg. LLF: 115.18909455243264
Iteration: 15, Func. Count: 177, Neg. LLF: 115.18905171168177
Iteration: 16, Func. Count: 188, Neg. LLF: 115.18902980285446
Iteration: 17, Func. Count: 199, Neg. LLF: 115.18902754338156
Iteration: 18, Func. Count: 209, Neg. LLF: 115.18902756193955
Optimization terminated successfully (Exit mode 0)
Current function value: 115.18902754338156
Iterations: 18
Function evaluations: 209
Gradient evaluations: 18
Iteration: 1, Func. Count: 9, Neg. LLF: 119.39643093752444
Iteration: 2, Func. Count: 18, Neg. LLF: 120.93458473913375
Iteration: 3, Func. Count: 27, Neg. LLF: 114.88158963094546
Iteration: 4, Func. Count: 35, Neg. LLF: 212.61224849060196
Iteration: 5, Func. Count: 44, Neg. LLF: 3442.6225143772954
Iteration: 6, Func. Count: 53, Neg. LLF: 116.29873304242189
Iteration: 7, Func. Count: 62, Neg. LLF: 114.0813205965943
Iteration: 8, Func. Count: 71, Neg. LLF: 113.92462537688934
Iteration: 9, Func. Count: 79, Neg. LLF: 113.92314053622967
Iteration: 10, Func. Count: 87, Neg. LLF: 113.92296635370458
Iteration: 11, Func. Count: 95, Neg. LLF: 113.92296095167204
Iteration: 12, Func. Count: 102, Neg. LLF: 113.922960951666
Optimization terminated successfully (Exit mode 0)
Current function value: 113.92296095167204
Iterations: 12
Function evaluations: 102
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 143.45739290281702
Iteration: 2, Func. Count: 20, Neg. LLF: 8884.421063964648
Iteration: 3, Func. Count: 30, Neg. LLF: 134.5812443016517
Iteration: 4, Func. Count: 40, Neg. LLF: 115.70480639292919
Iteration: 5, Func. Count: 50, Neg. LLF: 125.06896646825648
Iteration: 6, Func. Count: 60, Neg. LLF: 114.22647783858379
Iteration: 7, Func. Count: 69, Neg. LLF: 115.42499657188438
Iteration: 8, Func. Count: 79, Neg. LLF: 133.32915909608016
Iteration: 9, Func. Count: 89, Neg. LLF: 113.98669178893148
Iteration: 10, Func. Count: 98, Neg. LLF: 113.93187862484521
Iteration: 11, Func. Count: 107, Neg. LLF: 113.9251939619692
Iteration: 12, Func. Count: 116, Neg. LLF: 113.92333394011858
Iteration: 13, Func. Count: 125, Neg. LLF: 113.92300028802472
Iteration: 14, Func. Count: 134, Neg. LLF: 113.92296402412912
Iteration: 15, Func. Count: 143, Neg. LLF: 113.92296162872779
Iteration: 16, Func. Count: 151, Neg. LLF: 113.92296166865803
Optimization terminated successfully (Exit mode 0)
Current function value: 113.92296162872779
Iterations: 16
Function evaluations: 151
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 191.58792143851483
Iteration: 2, Func. Count: 22, Neg. LLF: 4577.471662220959
Iteration: 3, Func. Count: 33, Neg. LLF: 796.4527901402209
Iteration: 4, Func. Count: 44, Neg. LLF: 161.24441378391123
Iteration: 5, Func. Count: 55, Neg. LLF: 1156.8653141290015
Iteration: 6, Func. Count: 66, Neg. LLF: 292.51257216020105
Iteration: 7, Func. Count: 77, Neg. LLF: 125.76015438275785
Iteration: 8, Func. Count: 88, Neg. LLF: 119.26762622311477
Iteration: 9, Func. Count: 99, Neg. LLF: 114.44679950220099
Iteration: 10, Func. Count: 110, Neg. LLF: 114.36671437656643
Iteration: 11, Func. Count: 121, Neg. LLF: 113.8630808615488
Iteration: 12, Func. Count: 131, Neg. LLF: 113.80287846988423
Iteration: 13, Func. Count: 141, Neg. LLF: 113.79981211354854
Iteration: 14, Func. Count: 152, Neg. LLF: 113.78649223360613
Iteration: 15, Func. Count: 162, Neg. LLF: 113.77688669259202
Iteration: 16, Func. Count: 172, Neg. LLF: 113.77508256964126
Iteration: 17, Func. Count: 182, Neg. LLF: 113.7746400069685
Iteration: 18, Func. Count: 192, Neg. LLF: 113.77457263360425
Iteration: 19, Func. Count: 202, Neg. LLF: 113.77456553165975
Iteration: 20, Func. Count: 211, Neg. LLF: 113.7745655180394
Optimization terminated successfully (Exit mode 0)
Current function value: 113.77456553165975
Iterations: 20
Function evaluations: 211
Gradient evaluations: 20
Iteration: 1, Func. Count: 12, Neg. LLF: 121.24049119021373
Iteration: 2, Func. Count: 24, Neg. LLF: 127.62221281023339
Iteration: 3, Func. Count: 36, Neg. LLF: 188.76535870956792
Iteration: 4, Func. Count: 48, Neg. LLF: 5515.831131144646
Iteration: 5, Func. Count: 60, Neg. LLF: 301.57796331610257
Iteration: 6, Func. Count: 72, Neg. LLF: 122.21081792901143
Iteration: 7, Func. Count: 84, Neg. LLF: 115.33333777476231
Iteration: 8, Func. Count: 96, Neg. LLF: 118.08404333513249
Iteration: 9, Func. Count: 108, Neg. LLF: 114.28263329577416
Iteration: 10, Func. Count: 120, Neg. LLF: 114.4871459372414
Iteration: 11, Func. Count: 132, Neg. LLF: 113.93395156537623
Iteration: 12, Func. Count: 144, Neg. LLF: 113.95652994292305
Iteration: 13, Func. Count: 156, Neg. LLF: 113.80661137257137
Iteration: 14, Func. Count: 167, Neg. LLF: 113.80578644234758
Iteration: 15, Func. Count: 178, Neg. LLF: 113.80521610068219
Iteration: 16, Func. Count: 189, Neg. LLF: 113.80510390283716
Iteration: 17, Func. Count: 200, Neg. LLF: 113.80466301956582
Iteration: 18, Func. Count: 211, Neg. LLF: 113.79798216375254
Iteration: 19, Func. Count: 222, Neg. LLF: 113.79640691098537
Iteration: 20, Func. Count: 233, Neg. LLF: 113.7952534562372
Iteration: 21, Func. Count: 244, Neg. LLF: 113.79500612390721
Iteration: 22, Func. Count: 255, Neg. LLF: 113.79474660157521
Iteration: 23, Func. Count: 266, Neg. LLF: 113.79414357547111
Iteration: 24, Func. Count: 277, Neg. LLF: 113.79158231658214
Iteration: 25, Func. Count: 288, Neg. LLF: 113.7868226171408
Iteration: 26, Func. Count: 299, Neg. LLF: 113.78179611944483
Iteration: 27, Func. Count: 310, Neg. LLF: 113.77605975861103
Iteration: 28, Func. Count: 321, Neg. LLF: 113.77480837517489
Iteration: 29, Func. Count: 332, Neg. LLF: 113.77457660744983
Iteration: 30, Func. Count: 343, Neg. LLF: 113.77456553230986
Iteration: 31, Func. Count: 354, Neg. LLF: 113.77456409333011
Iteration: 32, Func. Count: 365, Neg. LLF: 113.7745651694867
Iteration: 33, Func. Count: 375, Neg. LLF: 113.7745651616331
Optimization terminated successfully (Exit mode 0)
Current function value: 113.7745651694867
Iterations: 33
Function evaluations: 375
Gradient evaluations: 33
Iteration: 1, Func. Count: 13, Neg. LLF: 121.2595754657311
Iteration: 2, Func. Count: 26, Neg. LLF: 126.35918566852592
Iteration: 3, Func. Count: 39, Neg. LLF: 194.75354513568163
Iteration: 4, Func. Count: 52, Neg. LLF: 2040.2806154833675
Iteration: 5, Func. Count: 65, Neg. LLF: 317.67756774225165
Iteration: 6, Func. Count: 78, Neg. LLF: 121.18627874701471
Iteration: 7, Func. Count: 91, Neg. LLF: 117.6944717164149
Iteration: 8, Func. Count: 104, Neg. LLF: 186.82395896090304
Iteration: 9, Func. Count: 117, Neg. LLF: 114.14406623157853
Iteration: 10, Func. Count: 130, Neg. LLF: 114.62638055892081
Iteration: 11, Func. Count: 143, Neg. LLF: 114.88922771936595
Iteration: 12, Func. Count: 156, Neg. LLF: 113.82464907996764
Iteration: 13, Func. Count: 168, Neg. LLF: 113.80725981839468
Iteration: 14, Func. Count: 180, Neg. LLF: 113.80697592577216
Iteration: 15, Func. Count: 193, Neg. LLF: 113.80528619973545
Iteration: 16, Func. Count: 205, Neg. LLF: 113.80515905069666
Iteration: 17, Func. Count: 217, Neg. LLF: 113.80498555037337
Iteration: 18, Func. Count: 229, Neg. LLF: 113.80235373567777
Iteration: 19, Func. Count: 241, Neg. LLF: 113.79690133711956
Iteration: 20, Func. Count: 253, Neg. LLF: 113.79638549678293
Iteration: 21, Func. Count: 265, Neg. LLF: 113.7949297634684
Iteration: 22, Func. Count: 277, Neg. LLF: 113.79415819214398
Iteration: 23, Func. Count: 289, Neg. LLF: 113.78883676873512
Iteration: 24, Func. Count: 301, Neg. LLF: 113.78629399598096
Iteration: 25, Func. Count: 313, Neg. LLF: 113.77923793320556
Iteration: 26, Func. Count: 325, Neg. LLF: 113.77577124286532
Iteration: 27, Func. Count: 337, Neg. LLF: 113.77462288065534
Iteration: 28, Func. Count: 349, Neg. LLF: 113.77456998505147
Iteration: 29, Func. Count: 361, Neg. LLF: 113.77456671035154
Iteration: 30, Func. Count: 373, Neg. LLF: 113.77456520392063
Iteration: 31, Func. Count: 384, Neg. LLF: 113.7745652232441
Optimization terminated successfully (Exit mode 0)
Current function value: 113.77456520392063
Iterations: 31
Function evaluations: 384
Gradient evaluations: 31
Iteration: 1, Func. Count: 10, Neg. LLF: 119.34451983915866
Iteration: 2, Func. Count: 20, Neg. LLF: 125.52173065528724
Iteration: 3, Func. Count: 30, Neg. LLF: 122.00636925424998
Iteration: 4, Func. Count: 41, Neg. LLF: 114.15325077591942
Iteration: 5, Func. Count: 50, Neg. LLF: 233.30853018836976
Iteration: 6, Func. Count: 61, Neg. LLF: 114.01271063323838
Iteration: 7, Func. Count: 70, Neg. LLF: 113.92841207768993
Iteration: 8, Func. Count: 79, Neg. LLF: 113.92761903115108
Iteration: 9, Func. Count: 89, Neg. LLF: 113.92402343029951
Iteration: 10, Func. Count: 98, Neg. LLF: 113.92296479140748
Iteration: 11, Func. Count: 107, Neg. LLF: 113.92296119165763
Iteration: 12, Func. Count: 115, Neg. LLF: 113.92296124142537
Optimization terminated successfully (Exit mode 0)
Current function value: 113.92296119165763
Iterations: 12
Function evaluations: 115
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 164.5987562232945
Iteration: 2, Func. Count: 22, Neg. LLF: 168.09576396788273
Iteration: 3, Func. Count: 33, Neg. LLF: 5202438.525791008
Iteration: 4, Func. Count: 44, Neg. LLF: 179.9491396109836
Iteration: 5, Func. Count: 55, Neg. LLF: 327.0900944576131
Iteration: 6, Func. Count: 66, Neg. LLF: 118.181194598609
Iteration: 7, Func. Count: 77, Neg. LLF: 115.26319238778737
Iteration: 8, Func. Count: 88, Neg. LLF: 115.94593359650695
Iteration: 9, Func. Count: 99, Neg. LLF: 113.99996243476191
Iteration: 10, Func. Count: 109, Neg. LLF: 113.97730813283967
Iteration: 11, Func. Count: 119, Neg. LLF: 113.93718037610192
Iteration: 12, Func. Count: 129, Neg. LLF: 113.92903404280125
Iteration: 13, Func. Count: 139, Neg. LLF: 113.92381605464179
Iteration: 14, Func. Count: 149, Neg. LLF: 113.92322239080276
Iteration: 15, Func. Count: 159, Neg. LLF: 113.92298888620198
Iteration: 16, Func. Count: 169, Neg. LLF: 113.92296437238653
Iteration: 17, Func. Count: 179, Neg. LLF: 113.92296090325911
Iteration: 18, Func. Count: 188, Neg. LLF: 113.92296094314318
Optimization terminated successfully (Exit mode 0)
Current function value: 113.92296090325911
Iterations: 18
Function evaluations: 188
Gradient evaluations: 18
Iteration: 1, Func. Count: 12, Neg. LLF: 166.63523209210544
Iteration: 2, Func. Count: 24, Neg. LLF: 393.21268905927286
Iteration: 3, Func. Count: 36, Neg. LLF: 126.20086167379422
Iteration: 4, Func. Count: 48, Neg. LLF: 400.4660037232092
Iteration: 5, Func. Count: 60, Neg. LLF: 166.43995455246596
Iteration: 6, Func. Count: 72, Neg. LLF: 137.81326323285182
Iteration: 7, Func. Count: 84, Neg. LLF: 132.70865653933444
Iteration: 8, Func. Count: 96, Neg. LLF: 123.65469711710827
Iteration: 9, Func. Count: 108, Neg. LLF: 115.35450248524737
Iteration: 10, Func. Count: 120, Neg. LLF: 115.21776118789448
Iteration: 11, Func. Count: 132, Neg. LLF: 113.89283032340428
Iteration: 12, Func. Count: 143, Neg. LLF: 114.3884642060658
Iteration: 13, Func. Count: 155, Neg. LLF: 113.79475145606861
Iteration: 14, Func. Count: 166, Neg. LLF: 113.77953815905319
Iteration: 15, Func. Count: 177, Neg. LLF: 113.77665053643518
Iteration: 16, Func. Count: 188, Neg. LLF: 113.77566564225117
Iteration: 17, Func. Count: 199, Neg. LLF: 113.77466812424467
Iteration: 18, Func. Count: 210, Neg. LLF: 113.77458863431835
Iteration: 19, Func. Count: 221, Neg. LLF: 113.77457404334406
Iteration: 20, Func. Count: 232, Neg. LLF: 113.77456724814871
Iteration: 21, Func. Count: 243, Neg. LLF: 113.7745654242321
Iteration: 22, Func. Count: 253, Neg. LLF: 113.77456541076928
Optimization terminated successfully (Exit mode 0)
Current function value: 113.7745654242321
Iterations: 22
Function evaluations: 253
Gradient evaluations: 22
Iteration: 1, Func. Count: 13, Neg. LLF: 163.32879522643216
Iteration: 2, Func. Count: 26, Neg. LLF: 9042458.957955003
Iteration: 3, Func. Count: 39, Neg. LLF: 162.25132397794863
Iteration: 4, Func. Count: 52, Neg. LLF: 4600.317616437109
Iteration: 5, Func. Count: 65, Neg. LLF: 278.9842232681606
Iteration: 6, Func. Count: 78, Neg. LLF: 403.5236285569369
Iteration: 7, Func. Count: 91, Neg. LLF: 120.56296457093521
Iteration: 8, Func. Count: 104, Neg. LLF: 114.75920032372821
Iteration: 9, Func. Count: 117, Neg. LLF: 115.02964449359025
Iteration: 10, Func. Count: 130, Neg. LLF: 113.86238151110553
Iteration: 11, Func. Count: 142, Neg. LLF: 114.0347987782069
Iteration: 12, Func. Count: 155, Neg. LLF: 113.92169914405054
Iteration: 13, Func. Count: 168, Neg. LLF: 113.80556746570748
Iteration: 14, Func. Count: 180, Neg. LLF: 113.80493967353236
Iteration: 15, Func. Count: 192, Neg. LLF: 113.80480728372059
Iteration: 16, Func. Count: 204, Neg. LLF: 113.80430691087672
Iteration: 17, Func. Count: 216, Neg. LLF: 113.8005824303683
Iteration: 18, Func. Count: 228, Neg. LLF: 113.79986201985452
Iteration: 19, Func. Count: 240, Neg. LLF: 113.79533807499288
Iteration: 20, Func. Count: 252, Neg. LLF: 113.78930256241672
Iteration: 21, Func. Count: 264, Neg. LLF: 113.78402497563306
Iteration: 22, Func. Count: 276, Neg. LLF: 113.77885340194932
Iteration: 23, Func. Count: 288, Neg. LLF: 113.77714685913281
Iteration: 24, Func. Count: 300, Neg. LLF: 113.7758337566681
Iteration: 25, Func. Count: 312, Neg. LLF: 113.77526826969164
Iteration: 26, Func. Count: 324, Neg. LLF: 113.77460417077762
Iteration: 27, Func. Count: 336, Neg. LLF: 113.77456718469541
Iteration: 28, Func. Count: 348, Neg. LLF: 113.77456526382589
Iteration: 29, Func. Count: 359, Neg. LLF: 113.77456525598271
Optimization terminated successfully (Exit mode 0)
Current function value: 113.77456526382589
Iterations: 29
Function evaluations: 359
Gradient evaluations: 29
Iteration: 1, Func. Count: 14, Neg. LLF: 120.61884425349103
Iteration: 2, Func. Count: 28, Neg. LLF: 125.03415538582752
Iteration: 3, Func. Count: 42, Neg. LLF: 218.30295777890174
Iteration: 4, Func. Count: 56, Neg. LLF: 205.48941423165238
Iteration: 5, Func. Count: 70, Neg. LLF: 566.5880274061565
Iteration: 6, Func. Count: 84, Neg. LLF: 594.0577271330801
Iteration: 7, Func. Count: 98, Neg. LLF: 118.03718698735972
Iteration: 8, Func. Count: 112, Neg. LLF: 279.7073138412639
Iteration: 9, Func. Count: 126, Neg. LLF: 114.30841104142004
Iteration: 10, Func. Count: 140, Neg. LLF: 114.29013055881812
Iteration: 11, Func. Count: 154, Neg. LLF: 113.94205807987392
Iteration: 12, Func. Count: 168, Neg. LLF: 114.11468067145702
Iteration: 13, Func. Count: 182, Neg. LLF: 113.84076407349755
Iteration: 14, Func. Count: 195, Neg. LLF: 113.806604323108
Iteration: 15, Func. Count: 208, Neg. LLF: 113.80537481182125
Iteration: 16, Func. Count: 221, Neg. LLF: 113.80503861984734
Iteration: 17, Func. Count: 234, Neg. LLF: 113.80500352278413
Iteration: 18, Func. Count: 247, Neg. LLF: 113.80468665749862
Iteration: 19, Func. Count: 260, Neg. LLF: 113.7992964014335
Iteration: 20, Func. Count: 273, Neg. LLF: 113.79797894532715
Iteration: 21, Func. Count: 286, Neg. LLF: 113.7958863400197
Iteration: 22, Func. Count: 299, Neg. LLF: 113.79505816138519
Iteration: 23, Func. Count: 312, Neg. LLF: 113.79441196320106
Iteration: 24, Func. Count: 325, Neg. LLF: 113.79271922829574
Iteration: 25, Func. Count: 338, Neg. LLF: 113.78386900572215
Iteration: 26, Func. Count: 351, Neg. LLF: 113.78000843840488
Iteration: 27, Func. Count: 364, Neg. LLF: 113.77578867040744
Iteration: 28, Func. Count: 377, Neg. LLF: 113.7747757798805
Iteration: 29, Func. Count: 390, Neg. LLF: 113.77457682805021
Iteration: 30, Func. Count: 403, Neg. LLF: 113.77456585324279
Iteration: 31, Func. Count: 416, Neg. LLF: 113.77456458646623
Iteration: 32, Func. Count: 429, Neg. LLF: 113.77456604236744
Optimization terminated successfully (Exit mode 0)
Current function value: 113.77456461248994
Iterations: 33
Function evaluations: 431
Gradient evaluations: 32
Iteration: 1, Func. Count: 11, Neg. LLF: 118.64693173783049
Iteration: 2, Func. Count: 22, Neg. LLF: 124.5889073126436
Iteration: 3, Func. Count: 33, Neg. LLF: 115.3431025335844
Iteration: 4, Func. Count: 43, Neg. LLF: 118.76939134392393
Iteration: 5, Func. Count: 54, Neg. LLF: 218.39074795107587
Iteration: 6, Func. Count: 65, Neg. LLF: 114.98678379109379
Iteration: 7, Func. Count: 76, Neg. LLF: 115.04704599599785
Iteration: 8, Func. Count: 87, Neg. LLF: 114.23568450672
Iteration: 9, Func. Count: 98, Neg. LLF: 113.67033603851345
Iteration: 10, Func. Count: 108, Neg. LLF: 113.66235379266298
Iteration: 11, Func. Count: 118, Neg. LLF: 113.65805040898488
Iteration: 12, Func. Count: 128, Neg. LLF: 113.65668832926127
Iteration: 13, Func. Count: 138, Neg. LLF: 113.65633880066477
Iteration: 14, Func. Count: 148, Neg. LLF: 113.65627896943842
Iteration: 15, Func. Count: 158, Neg. LLF: 113.65627530130845
Iteration: 16, Func. Count: 167, Neg. LLF: 113.65627521236068
Optimization terminated successfully (Exit mode 0)
Current function value: 113.65627530130845
Iterations: 16
Function evaluations: 167
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 165.55187481990134
Iteration: 2, Func. Count: 24, Neg. LLF: 170.58402980076477
Iteration: 3, Func. Count: 36, Neg. LLF: 4658344.490225945
Iteration: 4, Func. Count: 48, Neg. LLF: 152.368095667293
Iteration: 5, Func. Count: 60, Neg. LLF: 152.64648569327778
Iteration: 6, Func. Count: 72, Neg. LLF: 317.68546090824054
Iteration: 7, Func. Count: 84, Neg. LLF: 117.4351621383349
Iteration: 8, Func. Count: 96, Neg. LLF: 114.16054720878788
Iteration: 9, Func. Count: 107, Neg. LLF: 114.3830978984857
Iteration: 10, Func. Count: 119, Neg. LLF: 114.06174148924964
Iteration: 11, Func. Count: 131, Neg. LLF: 113.96704614945973
Iteration: 12, Func. Count: 143, Neg. LLF: 113.92800211265909
Iteration: 13, Func. Count: 154, Neg. LLF: 113.92310671156619
Iteration: 14, Func. Count: 165, Neg. LLF: 113.92219782240322
Iteration: 15, Func. Count: 176, Neg. LLF: 113.92142743124681
Iteration: 16, Func. Count: 187, Neg. LLF: 113.92136729658067
Iteration: 17, Func. Count: 198, Neg. LLF: 113.92136178735848
Iteration: 18, Func. Count: 208, Neg. LLF: 113.92136182921058
Optimization terminated successfully (Exit mode 0)
Current function value: 113.92136178735848
Iterations: 18
Function evaluations: 208
Gradient evaluations: 18
Iteration: 1, Func. Count: 13, Neg. LLF: 168.3226630351717
Iteration: 2, Func. Count: 26, Neg. LLF: 324.53557521887006
Iteration: 3, Func. Count: 39, Neg. LLF: 158.41115484967744
Iteration: 4, Func. Count: 52, Neg. LLF: 269.0657013254543
Iteration: 5, Func. Count: 65, Neg. LLF: 519.0965989785725
Iteration: 6, Func. Count: 78, Neg. LLF: 123.85757284626418
Iteration: 7, Func. Count: 91, Neg. LLF: 131.6755154575137
Iteration: 8, Func. Count: 104, Neg. LLF: 115.4831159971335
Iteration: 9, Func. Count: 117, Neg. LLF: 126.66804369922974
Iteration: 10, Func. Count: 130, Neg. LLF: 114.1413632284673
Iteration: 11, Func. Count: 143, Neg. LLF: 114.00234874280122
Iteration: 12, Func. Count: 156, Neg. LLF: 113.82492133595167
Iteration: 13, Func. Count: 168, Neg. LLF: 113.79524626138912
Iteration: 14, Func. Count: 180, Neg. LLF: 113.78066399179868
Iteration: 15, Func. Count: 192, Neg. LLF: 113.77509048403982
Iteration: 16, Func. Count: 204, Neg. LLF: 113.7742775945401
Iteration: 17, Func. Count: 216, Neg. LLF: 113.77402504878837
Iteration: 18, Func. Count: 228, Neg. LLF: 113.7738825248663
Iteration: 19, Func. Count: 240, Neg. LLF: 113.77382551178997
Iteration: 20, Func. Count: 252, Neg. LLF: 113.77381131528603
Iteration: 21, Func. Count: 264, Neg. LLF: 113.77381049466852
Optimization terminated successfully (Exit mode 0)
Current function value: 113.77381049466852
Iterations: 21
Function evaluations: 264
Gradient evaluations: 21
Iteration: 1, Func. Count: 14, Neg. LLF: 166.28290734882634
Iteration: 2, Func. Count: 28, Neg. LLF: 9455535.216671994
Iteration: 3, Func. Count: 42, Neg. LLF: 233.49285741726305
Iteration: 4, Func. Count: 56, Neg. LLF: 1309.8238635988423
Iteration: 5, Func. Count: 70, Neg. LLF: 372.4299294623135
Iteration: 6, Func. Count: 84, Neg. LLF: 20449.72648197574
Iteration: 7, Func. Count: 98, Neg. LLF: 122.96084551023986
Iteration: 8, Func. Count: 112, Neg. LLF: 115.38094332395862
Iteration: 9, Func. Count: 126, Neg. LLF: 113.98170896940942
Iteration: 10, Func. Count: 139, Neg. LLF: 113.94150489536126
Iteration: 11, Func. Count: 153, Neg. LLF: 114.28325414834994
Iteration: 12, Func. Count: 167, Neg. LLF: 113.80086588724046
Iteration: 13, Func. Count: 181, Neg. LLF: 115.03535367586574
Iteration: 14, Func. Count: 195, Neg. LLF: 113.76585092498324
Iteration: 15, Func. Count: 208, Neg. LLF: 113.7632389654775
Iteration: 16, Func. Count: 221, Neg. LLF: 113.7553850240799
Iteration: 17, Func. Count: 234, Neg. LLF: 113.75378989151288
Iteration: 18, Func. Count: 247, Neg. LLF: 113.74962350498973
Iteration: 19, Func. Count: 260, Neg. LLF: 113.74850144215391
Iteration: 20, Func. Count: 273, Neg. LLF: 113.7472266624407
Iteration: 21, Func. Count: 286, Neg. LLF: 113.74706661014382
Iteration: 22, Func. Count: 299, Neg. LLF: 113.74703833170838
Iteration: 23, Func. Count: 312, Neg. LLF: 113.74703114174693
Iteration: 24, Func. Count: 325, Neg. LLF: 113.74702615078397
Iteration: 25, Func. Count: 338, Neg. LLF: 113.7470253765187
Optimization terminated successfully (Exit mode 0)
Current function value: 113.7470253765187
Iterations: 25
Function evaluations: 338
Gradient evaluations: 25
Iteration: 1, Func. Count: 15, Neg. LLF: 120.57450049179086
Iteration: 2, Func. Count: 30, Neg. LLF: 124.88360634178314
Iteration: 3, Func. Count: 45, Neg. LLF: 130.3580696672969
Iteration: 4, Func. Count: 60, Neg. LLF: 292.1478757284294
Iteration: 5, Func. Count: 75, Neg. LLF: 128.78218097469704
Iteration: 6, Func. Count: 90, Neg. LLF: 1036.5875841519119
Iteration: 7, Func. Count: 105, Neg. LLF: 117.56609724341035
Iteration: 8, Func. Count: 120, Neg. LLF: 151.78523446289358
Iteration: 9, Func. Count: 135, Neg. LLF: 114.66185191525724
Iteration: 10, Func. Count: 150, Neg. LLF: 114.4865656557847
Iteration: 11, Func. Count: 165, Neg. LLF: 114.2334043733215
Iteration: 12, Func. Count: 180, Neg. LLF: 113.78936306304074
Iteration: 13, Func. Count: 194, Neg. LLF: 113.83821014274137
Iteration: 14, Func. Count: 209, Neg. LLF: 113.87239643937856
Iteration: 15, Func. Count: 224, Neg. LLF: 113.76931654408776
Iteration: 16, Func. Count: 238, Neg. LLF: 113.76714452727187
Iteration: 17, Func. Count: 252, Neg. LLF: 113.76514106610895
Iteration: 18, Func. Count: 266, Neg. LLF: 113.75135601225281
Iteration: 19, Func. Count: 280, Neg. LLF: 113.7480296917056
Iteration: 20, Func. Count: 294, Neg. LLF: 113.74709213350454
Iteration: 21, Func. Count: 308, Neg. LLF: 113.74703351360303
Iteration: 22, Func. Count: 322, Neg. LLF: 113.74702582728351
Iteration: 23, Func. Count: 335, Neg. LLF: 113.74702586416254
Optimization terminated successfully (Exit mode 0)
Current function value: 113.74702582728351
Iterations: 23
Function evaluations: 335
Gradient evaluations: 23
Iteration: 1, Func. Count: 12, Neg. LLF: 118.96475939559673
Iteration: 2, Func. Count: 24, Neg. LLF: 130.32978631537586
Iteration: 3, Func. Count: 36, Neg. LLF: 115.9764409478307
Iteration: 4, Func. Count: 49, Neg. LLF: 145.2603906614447
Iteration: 5, Func. Count: 61, Neg. LLF: 1435680.6681592467
Iteration: 6, Func. Count: 73, Neg. LLF: 114.72799705860432
Iteration: 7, Func. Count: 85, Neg. LLF: 113.74562451981778
Iteration: 8, Func. Count: 96, Neg. LLF: 113.7050937635128
Iteration: 9, Func. Count: 107, Neg. LLF: 113.68110863963794
Iteration: 10, Func. Count: 118, Neg. LLF: 113.65868592149779
Iteration: 11, Func. Count: 129, Neg. LLF: 113.65644640926882
Iteration: 12, Func. Count: 140, Neg. LLF: 113.65630785234849
Iteration: 13, Func. Count: 151, Neg. LLF: 113.65627607266218
Iteration: 14, Func. Count: 162, Neg. LLF: 113.65627526489828
Optimization terminated successfully (Exit mode 0)
Current function value: 113.65627526489828
Iterations: 14
Function evaluations: 162
Gradient evaluations: 14
Iteration: 1, Func. Count: 13, Neg. LLF: 159.11851156338372
Iteration: 2, Func. Count: 26, Neg. LLF: 246.47286172621168
Iteration: 3, Func. Count: 39, Neg. LLF: 394.6411341089768
Iteration: 4, Func. Count: 52, Neg. LLF: 128.07072770786345
Iteration: 5, Func. Count: 65, Neg. LLF: 141.73967935057553
Iteration: 6, Func. Count: 78, Neg. LLF: 353.17347217630646
Iteration: 7, Func. Count: 91, Neg. LLF: 120.90949275305337
Iteration: 8, Func. Count: 104, Neg. LLF: 115.5360436428944
Iteration: 9, Func. Count: 117, Neg. LLF: 118.72046663565841
Iteration: 10, Func. Count: 130, Neg. LLF: 114.03989012396025
Iteration: 11, Func. Count: 142, Neg. LLF: 114.11234668463253
Iteration: 12, Func. Count: 155, Neg. LLF: 114.07324734028784
Iteration: 13, Func. Count: 168, Neg. LLF: 113.9341603284239
Iteration: 14, Func. Count: 180, Neg. LLF: 113.92326869942721
Iteration: 15, Func. Count: 192, Neg. LLF: 113.92001804808292
Iteration: 16, Func. Count: 204, Neg. LLF: 113.91979844802947
Iteration: 17, Func. Count: 216, Neg. LLF: 113.91976236349404
Iteration: 18, Func. Count: 228, Neg. LLF: 113.91974936978234
Iteration: 19, Func. Count: 240, Neg. LLF: 113.91974118992711
Iteration: 20, Func. Count: 252, Neg. LLF: 113.91974057984483
Optimization terminated successfully (Exit mode 0)
Current function value: 113.91974057984483
Iterations: 20
Function evaluations: 252
Gradient evaluations: 20
Iteration: 1, Func. Count: 14, Neg. LLF: 162.83588168379055
Iteration: 2, Func. Count: 28, Neg. LLF: 11513058.398025401
Iteration: 3, Func. Count: 42, Neg. LLF: 255.07861133376707
Iteration: 4, Func. Count: 56, Neg. LLF: 2111.774948702817
Iteration: 5, Func. Count: 70, Neg. LLF: 271.3477102935759
Iteration: 6, Func. Count: 84, Neg. LLF: 21732.55505069029
Iteration: 7, Func. Count: 98, Neg. LLF: 128.59023773591457
Iteration: 8, Func. Count: 112, Neg. LLF: 115.56216763085642
Iteration: 9, Func. Count: 126, Neg. LLF: 115.03700906346067
Iteration: 10, Func. Count: 140, Neg. LLF: 113.86939769392214
Iteration: 11, Func. Count: 153, Neg. LLF: 113.87812604196134
Iteration: 12, Func. Count: 167, Neg. LLF: 115.44782041222902
Iteration: 13, Func. Count: 181, Neg. LLF: 113.80659950269772
Iteration: 14, Func. Count: 194, Neg. LLF: 113.79685819296743
Iteration: 15, Func. Count: 207, Neg. LLF: 113.79424890271876
Iteration: 16, Func. Count: 220, Neg. LLF: 113.79364390049835
Iteration: 17, Func. Count: 233, Neg. LLF: 113.79314477978858
Iteration: 18, Func. Count: 246, Neg. LLF: 113.79286993290418
Iteration: 19, Func. Count: 259, Neg. LLF: 113.79275194162905
Iteration: 20, Func. Count: 272, Neg. LLF: 113.79274091238186
Iteration: 21, Func. Count: 285, Neg. LLF: 113.7927399049396
Iteration: 22, Func. Count: 297, Neg. LLF: 113.79273990496061
Optimization terminated successfully (Exit mode 0)
Current function value: 113.7927399049396
Iterations: 22
Function evaluations: 297
Gradient evaluations: 22
Iteration: 1, Func. Count: 15, Neg. LLF: 162.84988341444094
Iteration: 2, Func. Count: 30, Neg. LLF: 9667653.889778832
Iteration: 3, Func. Count: 45, Neg. LLF: 1254.3820082834657
Iteration: 4, Func. Count: 60, Neg. LLF: 703.7282305320855
Iteration: 5, Func. Count: 75, Neg. LLF: 2202.64581033176
Iteration: 6, Func. Count: 90, Neg. LLF: 763.2574695482399
Iteration: 7, Func. Count: 105, Neg. LLF: 130.0758081971382
Iteration: 8, Func. Count: 120, Neg. LLF: 115.60637005767602
Iteration: 9, Func. Count: 135, Neg. LLF: 115.0855322109109
Iteration: 10, Func. Count: 150, Neg. LLF: 114.26424779838067
Iteration: 11, Func. Count: 165, Neg. LLF: 113.8970342652857
Iteration: 12, Func. Count: 179, Neg. LLF: 114.5763777703331
Iteration: 13, Func. Count: 194, Neg. LLF: 113.78385518669887
Iteration: 14, Func. Count: 208, Neg. LLF: 113.97050328632459
Iteration: 15, Func. Count: 223, Neg. LLF: 113.76836480993228
Iteration: 16, Func. Count: 238, Neg. LLF: 113.75146972408461
Iteration: 17, Func. Count: 253, Neg. LLF: 113.73966181213159
Iteration: 18, Func. Count: 267, Neg. LLF: 113.73399750583343
Iteration: 19, Func. Count: 281, Neg. LLF: 113.72920971462764
Iteration: 20, Func. Count: 295, Neg. LLF: 113.73612633602569
Iteration: 21, Func. Count: 310, Neg. LLF: 113.70313724975509
Iteration: 22, Func. Count: 324, Neg. LLF: 113.67590348304698
Iteration: 23, Func. Count: 338, Neg. LLF: 113.66043956414421
Iteration: 24, Func. Count: 352, Neg. LLF: 113.65853010170035
Iteration: 25, Func. Count: 366, Neg. LLF: 113.65833342404402
Iteration: 26, Func. Count: 380, Neg. LLF: 113.65833184540317
Iteration: 27, Func. Count: 393, Neg. LLF: 113.65833181150444
Optimization terminated successfully (Exit mode 0)
Current function value: 113.65833184540317
Iterations: 27
Function evaluations: 393
Gradient evaluations: 27
Iteration: 1, Func. Count: 16, Neg. LLF: 120.50407805045786
Iteration: 2, Func. Count: 32, Neg. LLF: 128.78687781799684
Iteration: 3, Func. Count: 48, Neg. LLF: 119.70613967987266
Iteration: 4, Func. Count: 64, Neg. LLF: 564.2733364329714
Iteration: 5, Func. Count: 80, Neg. LLF: 118.46608383453604
Iteration: 6, Func. Count: 96, Neg. LLF: 437.87312363922814
Iteration: 7, Func. Count: 112, Neg. LLF: 115.19076123177034
Iteration: 8, Func. Count: 128, Neg. LLF: 116.1406390346694
Iteration: 9, Func. Count: 144, Neg. LLF: 126.76669415484947
Iteration: 10, Func. Count: 160, Neg. LLF: 113.81987886132343
Iteration: 11, Func. Count: 175, Neg. LLF: 113.9021945135934
Iteration: 12, Func. Count: 191, Neg. LLF: 114.43935715416221
Iteration: 13, Func. Count: 207, Neg. LLF: 113.77063535342363
Iteration: 14, Func. Count: 222, Neg. LLF: 113.76801200162095
Iteration: 15, Func. Count: 237, Neg. LLF: 113.76587243777477
Iteration: 16, Func. Count: 252, Neg. LLF: 113.75248392161156
Iteration: 17, Func. Count: 267, Neg. LLF: 113.74812798822819
Iteration: 18, Func. Count: 282, Neg. LLF: 113.74723209420972
Iteration: 19, Func. Count: 297, Neg. LLF: 113.74709302220542
Iteration: 20, Func. Count: 312, Neg. LLF: 113.74704549089644
Iteration: 21, Func. Count: 327, Neg. LLF: 113.7470280989125
Iteration: 22, Func. Count: 342, Neg. LLF: 113.74702542406396
Iteration: 23, Func. Count: 356, Neg. LLF: 113.74702546100347
Optimization terminated successfully (Exit mode 0)
Current function value: 113.74702542406396
Iterations: 23
Function evaluations: 356
Gradient evaluations: 23
Iteration: 1, Func. Count: 5, Neg. LLF: 118.91739483231088
Iteration: 2, Func. Count: 10, Neg. LLF: 120.80453763956069
Iteration: 3, Func. Count: 15, Neg. LLF: 116.5587561167902
Iteration: 4, Func. Count: 19, Neg. LLF: 116.4611477443038
Iteration: 5, Func. Count: 23, Neg. LLF: 116.43985371425875
Iteration: 6, Func. Count: 27, Neg. LLF: 116.43969206783548
Iteration: 7, Func. Count: 31, Neg. LLF: 116.43968862520111
Iteration: 8, Func. Count: 34, Neg. LLF: 116.43968862521324
Optimization terminated successfully (Exit mode 0)
Current function value: 116.43968862520111
Iterations: 8
Function evaluations: 34
Gradient evaluations: 8
Iteration: 1, Func. Count: 5, Neg. LLF: 121.74062798962633
Iteration: 2, Func. Count: 11, Neg. LLF: 131.31209854169384
Iteration: 3, Func. Count: 16, Neg. LLF: 112.8133971606724
Iteration: 4, Func. Count: 21, Neg. LLF: 112.4395954790569
Iteration: 5, Func. Count: 25, Neg. LLF: 112.39996785943075
Iteration: 6, Func. Count: 29, Neg. LLF: 112.39055278596194
Iteration: 7, Func. Count: 33, Neg. LLF: 112.38669564747225
Iteration: 8, Func. Count: 37, Neg. LLF: 112.38667451470822
Iteration: 9, Func. Count: 40, Neg. LLF: 112.3866745147077
Optimization terminated successfully (Exit mode 0)
Current function value: 112.38667451470822
Iterations: 9
Function evaluations: 40
Gradient evaluations: 9
Iteration: 1, Func. Count: 6, Neg. LLF: 167.07754238986828
Iteration: 2, Func. Count: 14, Neg. LLF: 133.59470478544637
Iteration: 3, Func. Count: 20, Neg. LLF: 111.5659348495267
Iteration: 4, Func. Count: 25, Neg. LLF: 111.54080679708876
Iteration: 5, Func. Count: 30, Neg. LLF: 111.52724025487436
Iteration: 6, Func. Count: 35, Neg. LLF: 111.52642918534299
Iteration: 7, Func. Count: 40, Neg. LLF: 111.52635435130227
Iteration: 8, Func. Count: 45, Neg. LLF: 111.52635371806493
Optimization terminated successfully (Exit mode 0)
Current function value: 111.52635371806493
Iterations: 8
Function evaluations: 45
Gradient evaluations: 8
Iteration: 1, Func. Count: 7, Neg. LLF: 157.80606037486731
Iteration: 2, Func. Count: 14, Neg. LLF: 115.59951931438896
Iteration: 3, Func. Count: 22, Neg. LLF: 119.61090315988751
Iteration: 4, Func. Count: 29, Neg. LLF: 112.97367653860174
Iteration: 5, Func. Count: 36, Neg. LLF: 111.09606898896958
Iteration: 6, Func. Count: 42, Neg. LLF: 111.09503327202846
Iteration: 7, Func. Count: 48, Neg. LLF: 111.0948993770449
Iteration: 8, Func. Count: 54, Neg. LLF: 111.09489876095091
Optimization terminated successfully (Exit mode 0)
Current function value: 111.09489876095091
Iterations: 8
Function evaluations: 54
Gradient evaluations: 8
Iteration: 1, Func. Count: 8, Neg. LLF: 18667114.74439466
Iteration: 2, Func. Count: 16, Neg. LLF: 125.94622483402284
Iteration: 3, Func. Count: 24, Neg. LLF: 110.67427998719384
Iteration: 4, Func. Count: 31, Neg. LLF: 111.27698385370336
Iteration: 5, Func. Count: 39, Neg. LLF: 109.81599429426596
Iteration: 6, Func. Count: 46, Neg. LLF: 109.59945409705269
Iteration: 7, Func. Count: 53, Neg. LLF: 109.51298317452782
Iteration: 8, Func. Count: 60, Neg. LLF: 109.504921076527
Iteration: 9, Func. Count: 67, Neg. LLF: 109.49144662670265
Iteration: 10, Func. Count: 74, Neg. LLF: 109.4904537934711
Iteration: 11, Func. Count: 81, Neg. LLF: 109.49041219196161
Iteration: 12, Func. Count: 87, Neg. LLF: 109.49041202966372
Optimization terminated successfully (Exit mode 0)
Current function value: 109.49041219196161
Iterations: 12
Function evaluations: 87
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 18432512.761648696
Iteration: 2, Func. Count: 19, Neg. LLF: 194.49212596072044
Iteration: 3, Func. Count: 28, Neg. LLF: 116.77881723629594
Iteration: 4, Func. Count: 37, Neg. LLF: 110.11952015069305
Iteration: 5, Func. Count: 45, Neg. LLF: 111.01340807556211
Iteration: 6, Func. Count: 54, Neg. LLF: 109.5642143086093
Iteration: 7, Func. Count: 62, Neg. LLF: 109.53345917589712
Iteration: 8, Func. Count: 70, Neg. LLF: 109.50780040504107
Iteration: 9, Func. Count: 78, Neg. LLF: 109.49577458888352
Iteration: 10, Func. Count: 86, Neg. LLF: 109.49254901549374
Iteration: 11, Func. Count: 94, Neg. LLF: 109.49055595874673
Iteration: 12, Func. Count: 102, Neg. LLF: 109.49041481818027
Iteration: 13, Func. Count: 110, Neg. LLF: 109.49041208227575
Iteration: 14, Func. Count: 117, Neg. LLF: 109.49041206792934
Optimization terminated successfully (Exit mode 0)
Current function value: 109.49041208227575
Iterations: 14
Function evaluations: 117
Gradient evaluations: 14
Iteration: 1, Func. Count: 6, Neg. LLF: 129.41254023241785
Iteration: 2, Func. Count: 13, Neg. LLF: 153.36545794640264
Iteration: 3, Func. Count: 19, Neg. LLF: 112.62009715579154
Iteration: 4, Func. Count: 24, Neg. LLF: 112.4641862296919
Iteration: 5, Func. Count: 29, Neg. LLF: 112.42197738817403
Iteration: 6, Func. Count: 34, Neg. LLF: 112.39129987920424
Iteration: 7, Func. Count: 39, Neg. LLF: 112.38696926790952
Iteration: 8, Func. Count: 44, Neg. LLF: 112.38667695718554
Iteration: 9, Func. Count: 49, Neg. LLF: 112.38667434473572
Iteration: 10, Func. Count: 53, Neg. LLF: 112.38667440012091
Optimization terminated successfully (Exit mode 0)
Current function value: 112.38667434473572
Iterations: 10
Function evaluations: 53
Gradient evaluations: 10
Iteration: 1, Func. Count: 7, Neg. LLF: 121.14084782084272
Iteration: 2, Func. Count: 15, Neg. LLF: 325.29822360949686
Iteration: 3, Func. Count: 23, Neg. LLF: 124.21505659816984
Iteration: 4, Func. Count: 31, Neg. LLF: 111.53893205420789
Iteration: 5, Func. Count: 37, Neg. LLF: 111.53345744039225
Iteration: 6, Func. Count: 43, Neg. LLF: 111.52820563778607
Iteration: 7, Func. Count: 49, Neg. LLF: 111.52655033168595
Iteration: 8, Func. Count: 55, Neg. LLF: 111.52635816363272
Iteration: 9, Func. Count: 61, Neg. LLF: 111.52635391866625
Iteration: 10, Func. Count: 66, Neg. LLF: 111.52635389331412
Optimization terminated successfully (Exit mode 0)
Current function value: 111.52635391866625
Iterations: 10
Function evaluations: 66
Gradient evaluations: 10
Iteration: 1, Func. Count: 8, Neg. LLF: 116.73043809076762
Iteration: 2, Func. Count: 18, Neg. LLF: 198.42275479156407
Iteration: 3, Func. Count: 26, Neg. LLF: 114.00198906529464
Iteration: 4, Func. Count: 34, Neg. LLF: 113.09665242571293
Iteration: 5, Func. Count: 42, Neg. LLF: 111.11672459619128
Iteration: 6, Func. Count: 49, Neg. LLF: 111.0970387768923
Iteration: 7, Func. Count: 56, Neg. LLF: 111.09552029935968
Iteration: 8, Func. Count: 63, Neg. LLF: 111.09502948772052
Iteration: 9, Func. Count: 70, Neg. LLF: 111.09490802146199
Iteration: 10, Func. Count: 77, Neg. LLF: 111.0948990388243
Iteration: 11, Func. Count: 83, Neg. LLF: 111.0948989923488
Optimization terminated successfully (Exit mode 0)
Current function value: 111.0948990388243
Iterations: 11
Function evaluations: 83
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 134.26224835958118
Iteration: 2, Func. Count: 18, Neg. LLF: 232.08373843253992
Iteration: 3, Func. Count: 28, Neg. LLF: 115.9805307841788
Iteration: 4, Func. Count: 37, Neg. LLF: 110.14462615246747
Iteration: 5, Func. Count: 45, Neg. LLF: 110.05944865074244
Iteration: 6, Func. Count: 53, Neg. LLF: 110.07758827731358
Iteration: 7, Func. Count: 62, Neg. LLF: 109.88311140766994
Iteration: 8, Func. Count: 70, Neg. LLF: 109.56685182370794
Iteration: 9, Func. Count: 78, Neg. LLF: 109.5131847262015
Iteration: 10, Func. Count: 86, Neg. LLF: 109.49081740333541
Iteration: 11, Func. Count: 94, Neg. LLF: 109.49043095737035
Iteration: 12, Func. Count: 102, Neg. LLF: 109.49041152306282
Iteration: 13, Func. Count: 110, Neg. LLF: 109.49066331069385
Optimization terminated successfully (Exit mode 0)
Current function value: 109.49041147676174
Iterations: 14
Function evaluations: 112
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 199.45106384008227
Iteration: 2, Func. Count: 20, Neg. LLF: 113.46864801635627
Iteration: 3, Func. Count: 31, Neg. LLF: 120.67874282963477
Iteration: 4, Func. Count: 41, Neg. LLF: 110.17153067248015
Iteration: 5, Func. Count: 50, Neg. LLF: 110.30934785827557
Iteration: 6, Func. Count: 60, Neg. LLF: 110.5194697779018
Iteration: 7, Func. Count: 70, Neg. LLF: 109.7766170351714
Iteration: 8, Func. Count: 79, Neg. LLF: 109.7696232423729
Iteration: 9, Func. Count: 89, Neg. LLF: 109.63403992338112
Iteration: 10, Func. Count: 98, Neg. LLF: 109.51106820427614
Iteration: 11, Func. Count: 107, Neg. LLF: 109.50274686781714
Iteration: 12, Func. Count: 116, Neg. LLF: 109.49107397690733
Iteration: 13, Func. Count: 125, Neg. LLF: 109.4904495448618
Iteration: 14, Func. Count: 134, Neg. LLF: 109.49041215404273
Iteration: 15, Func. Count: 142, Neg. LLF: 109.49041213973464
Optimization terminated successfully (Exit mode 0)
Current function value: 109.49041215404273
Iterations: 15
Function evaluations: 142
Gradient evaluations: 15
Iteration: 1, Func. Count: 7, Neg. LLF: 126.45099946584561
Iteration: 2, Func. Count: 15, Neg. LLF: 184.498798905995
Iteration: 3, Func. Count: 22, Neg. LLF: 112.07976720866455
Iteration: 4, Func. Count: 28, Neg. LLF: 111.93820530177649
Iteration: 5, Func. Count: 34, Neg. LLF: 111.98054236536291
Iteration: 6, Func. Count: 41, Neg. LLF: 111.8999294829983
Iteration: 7, Func. Count: 47, Neg. LLF: 111.89651703180049
Iteration: 8, Func. Count: 53, Neg. LLF: 111.89641897398161
Iteration: 9, Func. Count: 59, Neg. LLF: 111.89641836246894
Optimization terminated successfully (Exit mode 0)
Current function value: 111.89641836246894
Iterations: 9
Function evaluations: 59
Gradient evaluations: 9
Iteration: 1, Func. Count: 8, Neg. LLF: 118.6213412516615
Iteration: 2, Func. Count: 16, Neg. LLF: 157.40183645297031
Iteration: 3, Func. Count: 24, Neg. LLF: 114.66725007284955
Iteration: 4, Func. Count: 33, Neg. LLF: 116.00337894878702
Iteration: 5, Func. Count: 41, Neg. LLF: 112.63519302965639
Iteration: 6, Func. Count: 49, Neg. LLF: 111.05857880280472
Iteration: 7, Func. Count: 56, Neg. LLF: 111.04133792254778
Iteration: 8, Func. Count: 63, Neg. LLF: 111.03525217622546
Iteration: 9, Func. Count: 70, Neg. LLF: 111.03491882203171
Iteration: 10, Func. Count: 77, Neg. LLF: 111.03491188216431
Iteration: 11, Func. Count: 83, Neg. LLF: 111.03491188208113
Optimization terminated successfully (Exit mode 0)
Current function value: 111.03491188216431
Iterations: 11
Function evaluations: 83
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 117.4272684241739
Iteration: 2, Func. Count: 20, Neg. LLF: 208.46770477060485
Iteration: 3, Func. Count: 29, Neg. LLF: 115.58371900834041
Iteration: 4, Func. Count: 38, Neg. LLF: 116.06847648771807
Iteration: 5, Func. Count: 47, Neg. LLF: 111.06562034755476
Iteration: 6, Func. Count: 55, Neg. LLF: 111.06159414315864
Iteration: 7, Func. Count: 63, Neg. LLF: 111.06065220557157
Iteration: 8, Func. Count: 71, Neg. LLF: 111.05936517818147
Iteration: 9, Func. Count: 79, Neg. LLF: 111.0589163382225
Iteration: 10, Func. Count: 87, Neg. LLF: 111.05881861192272
Iteration: 11, Func. Count: 95, Neg. LLF: 111.05881531695393
Iteration: 12, Func. Count: 102, Neg. LLF: 111.05881529945061
Optimization terminated successfully (Exit mode 0)
Current function value: 111.05881531695393
Iterations: 12
Function evaluations: 102
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 139.2705063352809
Iteration: 2, Func. Count: 20, Neg. LLF: 916.201989531482
Iteration: 3, Func. Count: 31, Neg. LLF: 114.62879092386532
Iteration: 4, Func. Count: 41, Neg. LLF: 110.9244822675206
Iteration: 5, Func. Count: 51, Neg. LLF: 109.37878445915696
Iteration: 6, Func. Count: 60, Neg. LLF: 109.41800395813685
Iteration: 7, Func. Count: 70, Neg. LLF: 109.20685594255455
Iteration: 8, Func. Count: 79, Neg. LLF: 109.19252525419414
Iteration: 9, Func. Count: 88, Neg. LLF: 109.19153207570285
Iteration: 10, Func. Count: 97, Neg. LLF: 109.1912345092328
Iteration: 11, Func. Count: 106, Neg. LLF: 109.19123149309787
Iteration: 12, Func. Count: 115, Neg. LLF: 109.191230963712
Optimization terminated successfully (Exit mode 0)
Current function value: 109.191230963712
Iterations: 12
Function evaluations: 115
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 663.5689883958487
Iteration: 2, Func. Count: 22, Neg. LLF: 117.34497033607121
Iteration: 3, Func. Count: 34, Neg. LLF: 142.59782754783217
Iteration: 4, Func. Count: 45, Neg. LLF: 110.69959615378205
Iteration: 5, Func. Count: 55, Neg. LLF: 109.36959278839682
Iteration: 6, Func. Count: 65, Neg. LLF: 109.27883564251974
Iteration: 7, Func. Count: 75, Neg. LLF: 109.22023984978587
Iteration: 8, Func. Count: 85, Neg. LLF: 109.1929951997843
Iteration: 9, Func. Count: 95, Neg. LLF: 109.1915135595889
Iteration: 10, Func. Count: 105, Neg. LLF: 109.1912315563833
Iteration: 11, Func. Count: 115, Neg. LLF: 109.19123096963133
Optimization terminated successfully (Exit mode 0)
Current function value: 109.19123096963133
Iterations: 11
Function evaluations: 115
Gradient evaluations: 11
Iteration: 1, Func. Count: 8, Neg. LLF: 125.06338376961027
Iteration: 2, Func. Count: 17, Neg. LLF: 183.3525662000889
Iteration: 3, Func. Count: 25, Neg. LLF: 134.6109028805832
Iteration: 4, Func. Count: 33, Neg. LLF: 813313.7339027862
Iteration: 5, Func. Count: 41, Neg. LLF: 115.41203663409514
Iteration: 6, Func. Count: 49, Neg. LLF: 110.07458606972948
Iteration: 7, Func. Count: 56, Neg. LLF: 110.04453749191524
Iteration: 8, Func. Count: 63, Neg. LLF: 110.04178731734248
Iteration: 9, Func. Count: 70, Neg. LLF: 110.04061619540398
Iteration: 10, Func. Count: 77, Neg. LLF: 110.03925723212359
Iteration: 11, Func. Count: 84, Neg. LLF: 110.03876255830966
Iteration: 12, Func. Count: 91, Neg. LLF: 110.03869430122771
Iteration: 13, Func. Count: 98, Neg. LLF: 110.0386913649424
Iteration: 14, Func. Count: 104, Neg. LLF: 110.03869136494848
Optimization terminated successfully (Exit mode 0)
Current function value: 110.0386913649424
Iterations: 14
Function evaluations: 104
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 125.1681213927479
Iteration: 2, Func. Count: 18, Neg. LLF: 151.35773916685102
Iteration: 3, Func. Count: 27, Neg. LLF: 116.52524977850865
Iteration: 4, Func. Count: 36, Neg. LLF: 111.70254451766434
Iteration: 5, Func. Count: 45, Neg. LLF: 112.59873818066865
Iteration: 6, Func. Count: 54, Neg. LLF: 110.1150321549324
Iteration: 7, Func. Count: 62, Neg. LLF: 110.06331385195134
Iteration: 8, Func. Count: 70, Neg. LLF: 110.04216571528289
Iteration: 9, Func. Count: 78, Neg. LLF: 110.03906847225146
Iteration: 10, Func. Count: 86, Neg. LLF: 110.03887052529001
Iteration: 11, Func. Count: 94, Neg. LLF: 110.03874844430797
Iteration: 12, Func. Count: 102, Neg. LLF: 110.03869820247624
Iteration: 13, Func. Count: 110, Neg. LLF: 110.03869180975224
Iteration: 14, Func. Count: 117, Neg. LLF: 110.0386918321928
Optimization terminated successfully (Exit mode 0)
Current function value: 110.03869180975224
Iterations: 14
Function evaluations: 117
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 139.7694427663477
Iteration: 2, Func. Count: 20, Neg. LLF: 178.92487030818214
Iteration: 3, Func. Count: 30, Neg. LLF: 113.12321335308724
Iteration: 4, Func. Count: 40, Neg. LLF: 113.59484983510632
Iteration: 5, Func. Count: 50, Neg. LLF: 110.27977820458
Iteration: 6, Func. Count: 59, Neg. LLF: 112.72051908476999
Iteration: 7, Func. Count: 69, Neg. LLF: 110.20819316298584
Iteration: 8, Func. Count: 78, Neg. LLF: 110.12275765833195
Iteration: 9, Func. Count: 87, Neg. LLF: 110.11409992248026
Iteration: 10, Func. Count: 96, Neg. LLF: 110.10141925249225
Iteration: 11, Func. Count: 105, Neg. LLF: 110.09865606118399
Iteration: 12, Func. Count: 114, Neg. LLF: 110.0979039941529
Iteration: 13, Func. Count: 123, Neg. LLF: 110.09781254052638
Iteration: 14, Func. Count: 132, Neg. LLF: 110.09766754700308
Iteration: 15, Func. Count: 141, Neg. LLF: 110.09765584394741
Iteration: 16, Func. Count: 150, Neg. LLF: 110.09765447457026
Iteration: 17, Func. Count: 158, Neg. LLF: 110.0976544505411
Optimization terminated successfully (Exit mode 0)
Current function value: 110.09765447457026
Iterations: 17
Function evaluations: 158
Gradient evaluations: 17
Iteration: 1, Func. Count: 11, Neg. LLF: 175.32290313692974
Iteration: 2, Func. Count: 22, Neg. LLF: 172.51256281745063
Iteration: 3, Func. Count: 33, Neg. LLF: 112.55564991738667
Iteration: 4, Func. Count: 44, Neg. LLF: 110.89870431268496
Iteration: 5, Func. Count: 55, Neg. LLF: 109.31924236123487
Iteration: 6, Func. Count: 65, Neg. LLF: 110.34045850295264
Iteration: 7, Func. Count: 76, Neg. LLF: 109.31244068436206
Iteration: 8, Func. Count: 87, Neg. LLF: 109.13800539488786
Iteration: 9, Func. Count: 97, Neg. LLF: 109.13058456756312
Iteration: 10, Func. Count: 107, Neg. LLF: 109.1266969224378
Iteration: 11, Func. Count: 117, Neg. LLF: 109.12602827723097
Iteration: 12, Func. Count: 127, Neg. LLF: 109.12594893847265
Iteration: 13, Func. Count: 137, Neg. LLF: 109.12594364371671
Iteration: 14, Func. Count: 147, Neg. LLF: 109.12594298727477
Optimization terminated successfully (Exit mode 0)
Current function value: 109.12594298727477
Iterations: 14
Function evaluations: 147
Gradient evaluations: 14
Iteration: 1, Func. Count: 12, Neg. LLF: 3328203.753082066
Iteration: 2, Func. Count: 24, Neg. LLF: 114.79625149392125
Iteration: 3, Func. Count: 36, Neg. LLF: 125.68866852100801
Iteration: 4, Func. Count: 48, Neg. LLF: 113.25620195158548
Iteration: 5, Func. Count: 60, Neg. LLF: 110.62852311698839
Iteration: 6, Func. Count: 72, Neg. LLF: 111.24218519470844
Iteration: 7, Func. Count: 84, Neg. LLF: 109.08172257062174
Iteration: 8, Func. Count: 95, Neg. LLF: 109.06482609661994
Iteration: 9, Func. Count: 106, Neg. LLF: 109.04326657837085
Iteration: 10, Func. Count: 117, Neg. LLF: 109.01992350692682
Iteration: 11, Func. Count: 128, Neg. LLF: 109.0082851494335
Iteration: 12, Func. Count: 139, Neg. LLF: 109.00309127671464
Iteration: 13, Func. Count: 150, Neg. LLF: 109.00252264214664
Iteration: 14, Func. Count: 161, Neg. LLF: 109.00236205420953
Iteration: 15, Func. Count: 172, Neg. LLF: 109.00234144064147
Iteration: 16, Func. Count: 182, Neg. LLF: 109.00234137438939
Optimization terminated successfully (Exit mode 0)
Current function value: 109.00234144064147
Iterations: 16
Function evaluations: 182
Gradient evaluations: 16
Iteration: 1, Func. Count: 5, Neg. LLF: 126.45008575924669
Iteration: 2, Func. Count: 11, Neg. LLF: 118.5718482358799
Iteration: 3, Func. Count: 16, Neg. LLF: 113.23407803041542
Iteration: 4, Func. Count: 21, Neg. LLF: 111.85402380687476
Iteration: 5, Func. Count: 26, Neg. LLF: 111.81121928348935
Iteration: 6, Func. Count: 30, Neg. LLF: 111.81033391834286
Iteration: 7, Func. Count: 34, Neg. LLF: 111.81030083291095
Iteration: 8, Func. Count: 38, Neg. LLF: 111.81028996051094
Iteration: 9, Func. Count: 41, Neg. LLF: 111.81028996050757
Optimization terminated successfully (Exit mode 0)
Current function value: 111.81028996051094
Iterations: 9
Function evaluations: 41
Gradient evaluations: 9
Iteration: 1, Func. Count: 6, Neg. LLF: 126.67860118654528
Iteration: 2, Func. Count: 12, Neg. LLF: 120.37314004190758
Iteration: 3, Func. Count: 19, Neg. LLF: 113.34445203771075
Iteration: 4, Func. Count: 26, Neg. LLF: 111.71648310732694
Iteration: 5, Func. Count: 31, Neg. LLF: 111.71181127150196
Iteration: 6, Func. Count: 36, Neg. LLF: 111.71138963812716
Iteration: 7, Func. Count: 41, Neg. LLF: 111.71102421669448
Iteration: 8, Func. Count: 46, Neg. LLF: 111.71100136636328
Iteration: 9, Func. Count: 51, Neg. LLF: 111.71100033504027
Iteration: 10, Func. Count: 55, Neg. LLF: 111.71100033504092
Optimization terminated successfully (Exit mode 0)
Current function value: 111.71100033504027
Iterations: 10
Function evaluations: 55
Gradient evaluations: 10
Iteration: 1, Func. Count: 7, Neg. LLF: 129.73039637315338
Iteration: 2, Func. Count: 14, Neg. LLF: 121.13175290585697
Iteration: 3, Func. Count: 22, Neg. LLF: 113.41135972963525
Iteration: 4, Func. Count: 29, Neg. LLF: 111.56683660384665
Iteration: 5, Func. Count: 35, Neg. LLF: 111.54301831197843
Iteration: 6, Func. Count: 41, Neg. LLF: 111.54057389630405
Iteration: 7, Func. Count: 47, Neg. LLF: 111.54003672195039
Iteration: 8, Func. Count: 53, Neg. LLF: 111.53970803375596
Iteration: 9, Func. Count: 59, Neg. LLF: 111.5397008250088
Iteration: 10, Func. Count: 64, Neg. LLF: 111.53970082496166
Optimization terminated successfully (Exit mode 0)
Current function value: 111.5397008250088
Iterations: 10
Function evaluations: 64
Gradient evaluations: 10
Iteration: 1, Func. Count: 8, Neg. LLF: 131.83625187375713
Iteration: 2, Func. Count: 16, Neg. LLF: 124.49558754546973
Iteration: 3, Func. Count: 25, Neg. LLF: 111.54613573078015
Iteration: 4, Func. Count: 32, Neg. LLF: 112.44506509685324
Iteration: 5, Func. Count: 41, Neg. LLF: 111.54159058707036
Iteration: 6, Func. Count: 48, Neg. LLF: 111.53971853522849
Iteration: 7, Func. Count: 55, Neg. LLF: 111.53970111257435
Iteration: 8, Func. Count: 61, Neg. LLF: 111.53970114028257
Optimization terminated successfully (Exit mode 0)
Current function value: 111.53970111257435
Iterations: 8
Function evaluations: 61
Gradient evaluations: 8
Iteration: 1, Func. Count: 9, Neg. LLF: 119.26702409682731
Iteration: 2, Func. Count: 18, Neg. LLF: 113.75127175585396
Iteration: 3, Func. Count: 27, Neg. LLF: 111.64018707533232
Iteration: 4, Func. Count: 35, Neg. LLF: 114.09502383774598
Iteration: 5, Func. Count: 44, Neg. LLF: 111.54295615091513
Iteration: 6, Func. Count: 52, Neg. LLF: 111.54001996562856
Iteration: 7, Func. Count: 60, Neg. LLF: 111.53983016454717
Iteration: 8, Func. Count: 68, Neg. LLF: 111.53971660375561
Iteration: 9, Func. Count: 76, Neg. LLF: 111.53970145949839
Iteration: 10, Func. Count: 84, Neg. LLF: 111.5397006907276
Optimization terminated successfully (Exit mode 0)
Current function value: 111.5397006907276
Iterations: 10
Function evaluations: 84
Gradient evaluations: 10
Iteration: 1, Func. Count: 6, Neg. LLF: 128.95197653719313
Iteration: 2, Func. Count: 12, Neg. LLF: 119.55821427926192
Iteration: 3, Func. Count: 18, Neg. LLF: 113.33488317039699
Iteration: 4, Func. Count: 24, Neg. LLF: 113.0861215979858
Iteration: 5, Func. Count: 30, Neg. LLF: 112.0266826042723
Iteration: 6, Func. Count: 36, Neg. LLF: 111.66992804783926
Iteration: 7, Func. Count: 41, Neg. LLF: 111.66462080996206
Iteration: 8, Func. Count: 46, Neg. LLF: 111.6635422484985
Iteration: 9, Func. Count: 51, Neg. LLF: 111.66341985443245
Iteration: 10, Func. Count: 56, Neg. LLF: 111.66341871332234
Iteration: 11, Func. Count: 60, Neg. LLF: 111.66341871332034
Optimization terminated successfully (Exit mode 0)
Current function value: 111.66341871332234
Iterations: 11
Function evaluations: 60
Gradient evaluations: 11
Iteration: 1, Func. Count: 7, Neg. LLF: 124.92678634465652
Iteration: 2, Func. Count: 14, Neg. LLF: 114.11843142728655
Iteration: 3, Func. Count: 21, Neg. LLF: 112.93538204234558
Iteration: 4, Func. Count: 29, Neg. LLF: 111.68428967524945
Iteration: 5, Func. Count: 36, Neg. LLF: 111.54831072916572
Iteration: 6, Func. Count: 42, Neg. LLF: 111.53923131365163
Iteration: 7, Func. Count: 48, Neg. LLF: 111.53131801038694
Iteration: 8, Func. Count: 54, Neg. LLF: 111.53062995181794
Iteration: 9, Func. Count: 60, Neg. LLF: 111.53057555088235
Iteration: 10, Func. Count: 65, Neg. LLF: 111.53057555090028
Optimization terminated successfully (Exit mode 0)
Current function value: 111.53057555088235
Iterations: 10
Function evaluations: 65
Gradient evaluations: 10
Iteration: 1, Func. Count: 8, Neg. LLF: 144.10247438140286
Iteration: 2, Func. Count: 16, Neg. LLF: 115.04773117876456
Iteration: 3, Func. Count: 24, Neg. LLF: 114.10169080936726
Iteration: 4, Func. Count: 32, Neg. LLF: 111.32686793508549
Iteration: 5, Func. Count: 40, Neg. LLF: 111.12763427352566
Iteration: 6, Func. Count: 48, Neg. LLF: 110.509965653285
Iteration: 7, Func. Count: 55, Neg. LLF: 110.49692108337538
Iteration: 8, Func. Count: 62, Neg. LLF: 110.49474992287882
Iteration: 9, Func. Count: 69, Neg. LLF: 110.49445793345569
Iteration: 10, Func. Count: 76, Neg. LLF: 110.49441617438345
Iteration: 11, Func. Count: 83, Neg. LLF: 110.49441399982226
Iteration: 12, Func. Count: 89, Neg. LLF: 110.49441399979641
Optimization terminated successfully (Exit mode 0)
Current function value: 110.49441399982226
Iterations: 12
Function evaluations: 89
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 18535165.630892135
Iteration: 2, Func. Count: 18, Neg. LLF: 124.88054377453902
Iteration: 3, Func. Count: 27, Neg. LLF: 110.99445760385973
Iteration: 4, Func. Count: 36, Neg. LLF: 111.33886941699303
Iteration: 5, Func. Count: 45, Neg. LLF: 109.81757676859162
Iteration: 6, Func. Count: 53, Neg. LLF: 109.67499357181194
Iteration: 7, Func. Count: 61, Neg. LLF: 109.60126786883839
Iteration: 8, Func. Count: 69, Neg. LLF: 109.69209359599337
Iteration: 9, Func. Count: 78, Neg. LLF: 109.51257764163236
Iteration: 10, Func. Count: 86, Neg. LLF: 109.49482011695014
Iteration: 11, Func. Count: 94, Neg. LLF: 109.49047882071525
Iteration: 12, Func. Count: 102, Neg. LLF: 109.49041370241802
Iteration: 13, Func. Count: 110, Neg. LLF: 109.49041203014531
Iteration: 14, Func. Count: 117, Neg. LLF: 109.49041186806312
Optimization terminated successfully (Exit mode 0)
Current function value: 109.49041203014531
Iterations: 14
Function evaluations: 117
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 18360860.805405725
Iteration: 2, Func. Count: 21, Neg. LLF: 177.28213984838243
Iteration: 3, Func. Count: 31, Neg. LLF: 114.35434618024894
Iteration: 4, Func. Count: 41, Neg. LLF: 110.15634422188623
Iteration: 5, Func. Count: 50, Neg. LLF: 111.44380721897592
Iteration: 6, Func. Count: 60, Neg. LLF: 109.64248273514224
Iteration: 7, Func. Count: 69, Neg. LLF: 109.5990488911508
Iteration: 8, Func. Count: 78, Neg. LLF: 109.55863862093663
Iteration: 9, Func. Count: 87, Neg. LLF: 109.51152251718604
Iteration: 10, Func. Count: 96, Neg. LLF: 109.49367809106597
Iteration: 11, Func. Count: 105, Neg. LLF: 109.49083589055151
Iteration: 12, Func. Count: 114, Neg. LLF: 109.49039466122088
Iteration: 13, Func. Count: 123, Neg. LLF: 109.51438326465552
Iteration: 14, Func. Count: 134, Neg. LLF: 109.49050964263508
Iteration: 15, Func. Count: 144, Neg. LLF: 109.49045860541766
Iteration: 16, Func. Count: 154, Neg. LLF: 109.49041202447913
Iteration: 17, Func. Count: 162, Neg. LLF: 109.49041201002765
Optimization terminated successfully (Exit mode 0)
Current function value: 109.49041202447913
Iterations: 18
Function evaluations: 162
Gradient evaluations: 17
Iteration: 1, Func. Count: 7, Neg. LLF: 119.13835309776275
Iteration: 2, Func. Count: 14, Neg. LLF: 121.85176838955773
Iteration: 3, Func. Count: 21, Neg. LLF: 112.67052657521812
Iteration: 4, Func. Count: 28, Neg. LLF: 113.16077369633902
Iteration: 5, Func. Count: 35, Neg. LLF: 111.80613582556802
Iteration: 6, Func. Count: 41, Neg. LLF: 111.70750731139232
Iteration: 7, Func. Count: 47, Neg. LLF: 111.68567436008347
Iteration: 8, Func. Count: 53, Neg. LLF: 111.6641237673745
Iteration: 9, Func. Count: 59, Neg. LLF: 111.6634284697139
Iteration: 10, Func. Count: 65, Neg. LLF: 111.66341870358852
Iteration: 11, Func. Count: 70, Neg. LLF: 111.66341874076682
Optimization terminated successfully (Exit mode 0)
Current function value: 111.66341870358852
Iterations: 11
Function evaluations: 70
Gradient evaluations: 11
Iteration: 1, Func. Count: 8, Neg. LLF: 120.9899449317592
Iteration: 2, Func. Count: 16, Neg. LLF: 117.20898012077332
Iteration: 3, Func. Count: 25, Neg. LLF: 113.21870179070841
Iteration: 4, Func. Count: 33, Neg. LLF: 112.43548391952238
Iteration: 5, Func. Count: 41, Neg. LLF: 111.54719958942
Iteration: 6, Func. Count: 48, Neg. LLF: 111.54033704761977
Iteration: 7, Func. Count: 55, Neg. LLF: 111.53148895635007
Iteration: 8, Func. Count: 62, Neg. LLF: 111.53065805341744
Iteration: 9, Func. Count: 69, Neg. LLF: 111.53057653045995
Iteration: 10, Func. Count: 76, Neg. LLF: 111.5305750852238
Iteration: 11, Func. Count: 82, Neg. LLF: 111.53057508522075
Optimization terminated successfully (Exit mode 0)
Current function value: 111.5305750852238
Iterations: 11
Function evaluations: 82
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 121.02795877542077
Iteration: 2, Func. Count: 18, Neg. LLF: 114.07449215689486
Iteration: 3, Func. Count: 27, Neg. LLF: 114.37410343661192
Iteration: 4, Func. Count: 36, Neg. LLF: 152.8591527752764
Iteration: 5, Func. Count: 45, Neg. LLF: 114.50747698146222
Iteration: 6, Func. Count: 54, Neg. LLF: 111.03258827542268
Iteration: 7, Func. Count: 63, Neg. LLF: 110.49838850446032
Iteration: 8, Func. Count: 71, Neg. LLF: 110.49568064662571
Iteration: 9, Func. Count: 79, Neg. LLF: 110.49449378467466
Iteration: 10, Func. Count: 87, Neg. LLF: 110.49444186078317
Iteration: 11, Func. Count: 95, Neg. LLF: 110.49441689487206
Iteration: 12, Func. Count: 103, Neg. LLF: 110.49441389753731
Iteration: 13, Func. Count: 110, Neg. LLF: 110.49441389752599
Optimization terminated successfully (Exit mode 0)
Current function value: 110.49441389753731
Iterations: 13
Function evaluations: 110
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 118.72475483122253
Iteration: 2, Func. Count: 20, Neg. LLF: 121.14066393610486
Iteration: 3, Func. Count: 30, Neg. LLF: 117.98424377482831
Iteration: 4, Func. Count: 40, Neg. LLF: 151.1510607166075
Iteration: 5, Func. Count: 50, Neg. LLF: 112.07010862635896
Iteration: 6, Func. Count: 60, Neg. LLF: 110.60728005079213
Iteration: 7, Func. Count: 69, Neg. LLF: 110.57171545457454
Iteration: 8, Func. Count: 79, Neg. LLF: 110.49711332655961
Iteration: 9, Func. Count: 88, Neg. LLF: 110.49557973165746
Iteration: 10, Func. Count: 97, Neg. LLF: 110.49447553099188
Iteration: 11, Func. Count: 106, Neg. LLF: 110.49442260442422
Iteration: 12, Func. Count: 115, Neg. LLF: 110.49441444811353
Iteration: 13, Func. Count: 124, Neg. LLF: 110.49441380944204
Optimization terminated successfully (Exit mode 0)
Current function value: 110.49441380944204
Iterations: 13
Function evaluations: 124
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 117.66234949538094
Iteration: 2, Func. Count: 22, Neg. LLF: 113.51232431395594
Iteration: 3, Func. Count: 33, Neg. LLF: 114.83926667048334
Iteration: 4, Func. Count: 44, Neg. LLF: 126.81126537623184
Iteration: 5, Func. Count: 55, Neg. LLF: 113.53180553048553
Iteration: 6, Func. Count: 66, Neg. LLF: 110.60759975305403
Iteration: 7, Func. Count: 76, Neg. LLF: 110.55540355420273
Iteration: 8, Func. Count: 86, Neg. LLF: 110.51161197375785
Iteration: 9, Func. Count: 96, Neg. LLF: 110.49647513640784
Iteration: 10, Func. Count: 106, Neg. LLF: 110.49464197664689
Iteration: 11, Func. Count: 116, Neg. LLF: 110.49446273442133
Iteration: 12, Func. Count: 126, Neg. LLF: 110.49441465127681
Iteration: 13, Func. Count: 136, Neg. LLF: 110.49441378836481
Optimization terminated successfully (Exit mode 0)
Current function value: 110.49441378836481
Iterations: 13
Function evaluations: 136
Gradient evaluations: 13
Iteration: 1, Func. Count: 8, Neg. LLF: 127.47265150859296
Iteration: 2, Func. Count: 17, Neg. LLF: 115.20796224427916
Iteration: 3, Func. Count: 26, Neg. LLF: 120.53133906066944
Iteration: 4, Func. Count: 34, Neg. LLF: 112.52002055718384
Iteration: 5, Func. Count: 42, Neg. LLF: 111.05283399694251
Iteration: 6, Func. Count: 50, Neg. LLF: 110.48839482077756
Iteration: 7, Func. Count: 57, Neg. LLF: 110.48640729613183
Iteration: 8, Func. Count: 64, Neg. LLF: 110.48559401483003
Iteration: 9, Func. Count: 71, Neg. LLF: 110.48544469867305
Iteration: 10, Func. Count: 78, Neg. LLF: 110.48543270853095
Iteration: 11, Func. Count: 85, Neg. LLF: 110.4854288462461
Iteration: 12, Func. Count: 91, Neg. LLF: 110.48542884623866
Optimization terminated successfully (Exit mode 0)
Current function value: 110.4854288462461
Iterations: 12
Function evaluations: 91
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 141.29703921802349
Iteration: 2, Func. Count: 18, Neg. LLF: 116.56564780381088
Iteration: 3, Func. Count: 27, Neg. LLF: 115.76084873723
Iteration: 4, Func. Count: 36, Neg. LLF: 111.37133644699625
Iteration: 5, Func. Count: 45, Neg. LLF: 110.74179045560307
Iteration: 6, Func. Count: 53, Neg. LLF: 110.50560116638002
Iteration: 7, Func. Count: 61, Neg. LLF: 110.49051164727672
Iteration: 8, Func. Count: 69, Neg. LLF: 110.48559001139166
Iteration: 9, Func. Count: 77, Neg. LLF: 110.48544159160718
Iteration: 10, Func. Count: 85, Neg. LLF: 110.48542935112604
Iteration: 11, Func. Count: 93, Neg. LLF: 110.48542868957108
Optimization terminated successfully (Exit mode 0)
Current function value: 110.48542868957108
Iterations: 11
Function evaluations: 93
Gradient evaluations: 11
Iteration: 1, Func. Count: 10, Neg. LLF: 140.49721369833395
Iteration: 2, Func. Count: 20, Neg. LLF: 116.78229036236432
Iteration: 3, Func. Count: 30, Neg. LLF: 117.33507995610998
Iteration: 4, Func. Count: 40, Neg. LLF: 113.9897136101511
Iteration: 5, Func. Count: 50, Neg. LLF: 111.25149682654869
Iteration: 6, Func. Count: 60, Neg. LLF: 110.45935519083986
Iteration: 7, Func. Count: 69, Neg. LLF: 110.43601994604255
Iteration: 8, Func. Count: 78, Neg. LLF: 110.4291141460678
Iteration: 9, Func. Count: 87, Neg. LLF: 110.42512371339348
Iteration: 10, Func. Count: 96, Neg. LLF: 110.42460562826345
Iteration: 11, Func. Count: 105, Neg. LLF: 110.4245838240541
Iteration: 12, Func. Count: 113, Neg. LLF: 110.42458382404384
Optimization terminated successfully (Exit mode 0)
Current function value: 110.4245838240541
Iterations: 12
Function evaluations: 113
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 141.00935863725087
Iteration: 2, Func. Count: 22, Neg. LLF: 116.7637195842544
Iteration: 3, Func. Count: 33, Neg. LLF: 112.8150249159877
Iteration: 4, Func. Count: 44, Neg. LLF: 116.31458042919819
Iteration: 5, Func. Count: 55, Neg. LLF: 111.37230963009688
Iteration: 6, Func. Count: 66, Neg. LLF: 110.43738436659858
Iteration: 7, Func. Count: 76, Neg. LLF: 110.42973279041217
Iteration: 8, Func. Count: 86, Neg. LLF: 110.42518361657939
Iteration: 9, Func. Count: 96, Neg. LLF: 110.42471545344108
Iteration: 10, Func. Count: 106, Neg. LLF: 110.424600749326
Iteration: 11, Func. Count: 116, Neg. LLF: 110.42458365319061
Iteration: 12, Func. Count: 125, Neg. LLF: 110.42458365979033
Optimization terminated successfully (Exit mode 0)
Current function value: 110.42458365319061
Iterations: 12
Function evaluations: 125
Gradient evaluations: 12
Iteration: 1, Func. Count: 12, Neg. LLF: 139.99557788465074
Iteration: 2, Func. Count: 24, Neg. LLF: 116.06125236840128
Iteration: 3, Func. Count: 36, Neg. LLF: 113.15651660222927
Iteration: 4, Func. Count: 48, Neg. LLF: 113.72644056467485
Iteration: 5, Func. Count: 60, Neg. LLF: 112.29277427893692
Iteration: 6, Func. Count: 72, Neg. LLF: 119.36800833276762
Iteration: 7, Func. Count: 84, Neg. LLF: 110.44525649338591
Iteration: 8, Func. Count: 95, Neg. LLF: 110.43726525753112
Iteration: 9, Func. Count: 106, Neg. LLF: 110.43368430082742
Iteration: 10, Func. Count: 117, Neg. LLF: 110.4280740951554
Iteration: 11, Func. Count: 128, Neg. LLF: 110.42619118451904
Iteration: 12, Func. Count: 139, Neg. LLF: 110.42494248674832
Iteration: 13, Func. Count: 150, Neg. LLF: 110.4246615782833
Iteration: 14, Func. Count: 161, Neg. LLF: 110.42458822105151
Iteration: 15, Func. Count: 172, Neg. LLF: 110.42458407467657
Iteration: 16, Func. Count: 183, Neg. LLF: 110.4245831493827
Optimization terminated successfully (Exit mode 0)
Current function value: 110.4245831493827
Iterations: 16
Function evaluations: 183
Gradient evaluations: 16
Iteration: 1, Func. Count: 9, Neg. LLF: 122.84166649248415
Iteration: 2, Func. Count: 19, Neg. LLF: 116.81999429310324
Iteration: 3, Func. Count: 29, Neg. LLF: 114.74215566613714
Iteration: 4, Func. Count: 38, Neg. LLF: 110.40813078768376
Iteration: 5, Func. Count: 46, Neg. LLF: 111.6041183416206
Iteration: 6, Func. Count: 55, Neg. LLF: 110.83685991554685
Iteration: 7, Func. Count: 64, Neg. LLF: 110.06609890450991
Iteration: 8, Func. Count: 72, Neg. LLF: 110.13833818463696
Iteration: 9, Func. Count: 81, Neg. LLF: 110.03960415145448
Iteration: 10, Func. Count: 89, Neg. LLF: 110.03877189473614
Iteration: 11, Func. Count: 97, Neg. LLF: 110.03871866742503
Iteration: 12, Func. Count: 105, Neg. LLF: 110.03869592583631
Iteration: 13, Func. Count: 113, Neg. LLF: 110.03869175576988
Iteration: 14, Func. Count: 120, Neg. LLF: 110.03869175576442
Optimization terminated successfully (Exit mode 0)
Current function value: 110.03869175576988
Iterations: 14
Function evaluations: 120
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 136.43058204406898
Iteration: 2, Func. Count: 20, Neg. LLF: 115.69205667726223
Iteration: 3, Func. Count: 30, Neg. LLF: 110.78058583708027
Iteration: 4, Func. Count: 40, Neg. LLF: 112.50588141715251
Iteration: 5, Func. Count: 50, Neg. LLF: 110.99441094874433
Iteration: 6, Func. Count: 60, Neg. LLF: 110.05313810993121
Iteration: 7, Func. Count: 69, Neg. LLF: 110.04082249138432
Iteration: 8, Func. Count: 78, Neg. LLF: 110.03892033515761
Iteration: 9, Func. Count: 87, Neg. LLF: 110.03871977368729
Iteration: 10, Func. Count: 96, Neg. LLF: 110.03869347770642
Iteration: 11, Func. Count: 105, Neg. LLF: 110.03869131204121
Iteration: 12, Func. Count: 113, Neg. LLF: 110.03869133441401
Optimization terminated successfully (Exit mode 0)
Current function value: 110.03869131204121
Iterations: 12
Function evaluations: 113
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 136.83325300990947
Iteration: 2, Func. Count: 22, Neg. LLF: 115.72469408063968
Iteration: 3, Func. Count: 33, Neg. LLF: 113.3179506712772
Iteration: 4, Func. Count: 44, Neg. LLF: 110.7556742382807
Iteration: 5, Func. Count: 55, Neg. LLF: 111.2483129974254
Iteration: 6, Func. Count: 66, Neg. LLF: 110.49269882000202
Iteration: 7, Func. Count: 77, Neg. LLF: 110.06002606543788
Iteration: 8, Func. Count: 87, Neg. LLF: 110.04307800259058
Iteration: 9, Func. Count: 97, Neg. LLF: 110.03902602628689
Iteration: 10, Func. Count: 107, Neg. LLF: 110.03869417365313
Iteration: 11, Func. Count: 117, Neg. LLF: 110.03869134388076
Iteration: 12, Func. Count: 126, Neg. LLF: 110.03869136249972
Optimization terminated successfully (Exit mode 0)
Current function value: 110.03869134388076
Iterations: 12
Function evaluations: 126
Gradient evaluations: 12
Iteration: 1, Func. Count: 12, Neg. LLF: 135.8471359984074
Iteration: 2, Func. Count: 24, Neg. LLF: 115.2919631321862
Iteration: 3, Func. Count: 36, Neg. LLF: 114.74024774635207
Iteration: 4, Func. Count: 48, Neg. LLF: 111.46350465130286
Iteration: 5, Func. Count: 60, Neg. LLF: 110.88212978275656
Iteration: 6, Func. Count: 72, Neg. LLF: 111.62756164512273
Iteration: 7, Func. Count: 84, Neg. LLF: 109.99278772854251
Iteration: 8, Func. Count: 95, Neg. LLF: 109.97161878314408
Iteration: 9, Func. Count: 106, Neg. LLF: 109.85065385690004
Iteration: 10, Func. Count: 117, Neg. LLF: 109.21450912440993
Iteration: 11, Func. Count: 128, Neg. LLF: 109.14830224042782
Iteration: 12, Func. Count: 139, Neg. LLF: 109.13769771929246
Iteration: 13, Func. Count: 150, Neg. LLF: 109.13115307852036
Iteration: 14, Func. Count: 161, Neg. LLF: 109.12699070865412
Iteration: 15, Func. Count: 172, Neg. LLF: 109.12612861132239
Iteration: 16, Func. Count: 183, Neg. LLF: 109.12595370553936
Iteration: 17, Func. Count: 194, Neg. LLF: 109.12594307758147
Iteration: 18, Func. Count: 204, Neg. LLF: 109.1259429828136
Optimization terminated successfully (Exit mode 0)
Current function value: 109.12594307758147
Iterations: 18
Function evaluations: 204
Gradient evaluations: 18
Iteration: 1, Func. Count: 13, Neg. LLF: 134.62007360642397
Iteration: 2, Func. Count: 26, Neg. LLF: 115.19485508611555
Iteration: 3, Func. Count: 39, Neg. LLF: 116.88140351386306
Iteration: 4, Func. Count: 52, Neg. LLF: 112.3909318542602
Iteration: 5, Func. Count: 65, Neg. LLF: 109.99343929536994
Iteration: 6, Func. Count: 77, Neg. LLF: 138.05177283471744
Iteration: 7, Func. Count: 90, Neg. LLF: 118.68271044201686
Iteration: 8, Func. Count: 103, Neg. LLF: 113.12202886760794
Iteration: 9, Func. Count: 116, Neg. LLF: 110.53964707747167
Iteration: 10, Func. Count: 129, Neg. LLF: 109.26870745632236
Iteration: 11, Func. Count: 141, Neg. LLF: 109.16278292234354
Iteration: 12, Func. Count: 153, Neg. LLF: 109.09904966900234
Iteration: 13, Func. Count: 165, Neg. LLF: 109.02612150157432
Iteration: 14, Func. Count: 177, Neg. LLF: 109.00812199387592
Iteration: 15, Func. Count: 189, Neg. LLF: 109.00289198958542
Iteration: 16, Func. Count: 201, Neg. LLF: 109.00251079249344
Iteration: 17, Func. Count: 213, Neg. LLF: 109.00235603167363
Iteration: 18, Func. Count: 225, Neg. LLF: 109.00234200282674
Iteration: 19, Func. Count: 237, Neg. LLF: 109.00234143538334
Optimization terminated successfully (Exit mode 0)
Current function value: 109.00234143538334
Iterations: 19
Function evaluations: 237
Gradient evaluations: 19
Iteration: 1, Func. Count: 6, Neg. LLF: 119.4496257170821
Iteration: 2, Func. Count: 13, Neg. LLF: 118.3190732964426
Iteration: 3, Func. Count: 19, Neg. LLF: 111.90109729718519
Iteration: 4, Func. Count: 25, Neg. LLF: 111.86942343854983
Iteration: 5, Func. Count: 31, Neg. LLF: 113.3271852941916
Iteration: 6, Func. Count: 37, Neg. LLF: 111.75864002840902
Iteration: 7, Func. Count: 42, Neg. LLF: 111.75822374628339
Iteration: 8, Func. Count: 47, Neg. LLF: 111.75822291582733
Optimization terminated successfully (Exit mode 0)
Current function value: 111.75822291582733
Iterations: 8
Function evaluations: 47
Gradient evaluations: 8
Iteration: 1, Func. Count: 7, Neg. LLF: 116.16339508539137
Iteration: 2, Func. Count: 14, Neg. LLF: 114.44582134060735
Iteration: 3, Func. Count: 21, Neg. LLF: 115.89164112944627
Iteration: 4, Func. Count: 28, Neg. LLF: 114.92951260810217
Iteration: 5, Func. Count: 35, Neg. LLF: 111.71871471386359
Iteration: 6, Func. Count: 41, Neg. LLF: 111.71390448387932
Iteration: 7, Func. Count: 47, Neg. LLF: 111.71103608448608
Iteration: 8, Func. Count: 53, Neg. LLF: 111.71100279202506
Iteration: 9, Func. Count: 59, Neg. LLF: 111.71100082020304
Iteration: 10, Func. Count: 64, Neg. LLF: 111.71100082016314
Optimization terminated successfully (Exit mode 0)
Current function value: 111.71100082020304
Iterations: 10
Function evaluations: 64
Gradient evaluations: 10
Iteration: 1, Func. Count: 8, Neg. LLF: 116.34520855932385
Iteration: 2, Func. Count: 16, Neg. LLF: 114.55802679510955
Iteration: 3, Func. Count: 24, Neg. LLF: 119.3770253107247
Iteration: 4, Func. Count: 32, Neg. LLF: 117.08115792874064
Iteration: 5, Func. Count: 40, Neg. LLF: 111.54970526851069
Iteration: 6, Func. Count: 47, Neg. LLF: 111.54159839794622
Iteration: 7, Func. Count: 54, Neg. LLF: 111.54007910105354
Iteration: 8, Func. Count: 61, Neg. LLF: 111.53980917647876
Iteration: 9, Func. Count: 68, Neg. LLF: 111.53970911371464
Iteration: 10, Func. Count: 75, Neg. LLF: 111.53970071229408
Iteration: 11, Func. Count: 81, Neg. LLF: 111.5397007122682
Optimization terminated successfully (Exit mode 0)
Current function value: 111.53970071229408
Iterations: 11
Function evaluations: 81
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 116.18642141436318
Iteration: 2, Func. Count: 18, Neg. LLF: 114.46193355719106
Iteration: 3, Func. Count: 27, Neg. LLF: 119.38140312776584
Iteration: 4, Func. Count: 36, Neg. LLF: 117.55907491909316
Iteration: 5, Func. Count: 45, Neg. LLF: 111.55654105603793
Iteration: 6, Func. Count: 53, Neg. LLF: 111.54133326736745
Iteration: 7, Func. Count: 61, Neg. LLF: 111.5401202233013
Iteration: 8, Func. Count: 69, Neg. LLF: 111.53984098789284
Iteration: 9, Func. Count: 77, Neg. LLF: 111.53971929383619
Iteration: 10, Func. Count: 85, Neg. LLF: 111.53970124044713
Iteration: 11, Func. Count: 93, Neg. LLF: 111.5397006891469
Optimization terminated successfully (Exit mode 0)
Current function value: 111.5397006891469
Iterations: 11
Function evaluations: 93
Gradient evaluations: 11
Iteration: 1, Func. Count: 10, Neg. LLF: 116.18927105839991
Iteration: 2, Func. Count: 20, Neg. LLF: 114.37890707680826
Iteration: 3, Func. Count: 30, Neg. LLF: 120.50972224311917
Iteration: 4, Func. Count: 40, Neg. LLF: 118.43831053012644
Iteration: 5, Func. Count: 50, Neg. LLF: 111.55006632903151
Iteration: 6, Func. Count: 59, Neg. LLF: 111.54105273900278
Iteration: 7, Func. Count: 68, Neg. LLF: 111.54011907667723
Iteration: 8, Func. Count: 77, Neg. LLF: 111.53985715287645
Iteration: 9, Func. Count: 86, Neg. LLF: 111.53971297185758
Iteration: 10, Func. Count: 95, Neg. LLF: 111.53970104899797
Iteration: 11, Func. Count: 103, Neg. LLF: 111.53970107738303
Optimization terminated successfully (Exit mode 0)
Current function value: 111.53970104899797
Iterations: 11
Function evaluations: 103
Gradient evaluations: 11
Iteration: 1, Func. Count: 7, Neg. LLF: 125.24850599781949
Iteration: 2, Func. Count: 15, Neg. LLF: 125.48903781775414
Iteration: 3, Func. Count: 23, Neg. LLF: 116.5125058444583
Iteration: 4, Func. Count: 31, Neg. LLF: 112.27563664766727
Iteration: 5, Func. Count: 38, Neg. LLF: 111.63292158601041
Iteration: 6, Func. Count: 45, Neg. LLF: 111.587897589793
Iteration: 7, Func. Count: 51, Neg. LLF: 111.58721257219563
Iteration: 8, Func. Count: 57, Neg. LLF: 111.58717286392137
Iteration: 9, Func. Count: 63, Neg. LLF: 111.58716808124947
Iteration: 10, Func. Count: 68, Neg. LLF: 111.58716808125364
Optimization terminated successfully (Exit mode 0)
Current function value: 111.58716808124947
Iterations: 10
Function evaluations: 68
Gradient evaluations: 10
Iteration: 1, Func. Count: 8, Neg. LLF: 114.38527136705687
Iteration: 2, Func. Count: 16, Neg. LLF: 141.91009426732865
Iteration: 3, Func. Count: 24, Neg. LLF: 113.74273517778852
Iteration: 4, Func. Count: 33, Neg. LLF: 116.67956003333364
Iteration: 5, Func. Count: 42, Neg. LLF: 111.61971439271943
Iteration: 6, Func. Count: 49, Neg. LLF: 111.59397082443438
Iteration: 7, Func. Count: 56, Neg. LLF: 111.54217083748006
Iteration: 8, Func. Count: 63, Neg. LLF: 111.53542236593793
Iteration: 9, Func. Count: 70, Neg. LLF: 111.5317745708956
Iteration: 10, Func. Count: 77, Neg. LLF: 111.53076795063178
Iteration: 11, Func. Count: 84, Neg. LLF: 111.53057651651274
Iteration: 12, Func. Count: 91, Neg. LLF: 111.53057509925091
Iteration: 13, Func. Count: 97, Neg. LLF: 111.5305750992319
Optimization terminated successfully (Exit mode 0)
Current function value: 111.53057509925091
Iterations: 13
Function evaluations: 97
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 143.30277420417954
Iteration: 2, Func. Count: 18, Neg. LLF: 118.95358005430226
Iteration: 3, Func. Count: 28, Neg. LLF: 126.63170581287895
Iteration: 4, Func. Count: 37, Neg. LLF: 110.91752016322515
Iteration: 5, Func. Count: 45, Neg. LLF: 110.91762635968294
Iteration: 6, Func. Count: 54, Neg. LLF: 110.75514589065409
Iteration: 7, Func. Count: 62, Neg. LLF: 110.56109724354687
Iteration: 8, Func. Count: 70, Neg. LLF: 110.54312950078592
Iteration: 9, Func. Count: 78, Neg. LLF: 110.53638440968534
Iteration: 10, Func. Count: 86, Neg. LLF: 110.52064749243173
Iteration: 11, Func. Count: 94, Neg. LLF: 110.51028728484464
Iteration: 12, Func. Count: 102, Neg. LLF: 110.50040072780995
Iteration: 13, Func. Count: 110, Neg. LLF: 110.49607825462493
Iteration: 14, Func. Count: 118, Neg. LLF: 110.49444802833186
Iteration: 15, Func. Count: 126, Neg. LLF: 110.49441755664397
Iteration: 16, Func. Count: 134, Neg. LLF: 110.4944156394506
Iteration: 17, Func. Count: 142, Neg. LLF: 110.49441378704006
Iteration: 18, Func. Count: 149, Neg. LLF: 110.49441378704083
Optimization terminated successfully (Exit mode 0)
Current function value: 110.49441378704006
Iterations: 18
Function evaluations: 149
Gradient evaluations: 18
Iteration: 1, Func. Count: 10, Neg. LLF: 15959125.11824683
Iteration: 2, Func. Count: 20, Neg. LLF: 123.84436773684445
Iteration: 3, Func. Count: 30, Neg. LLF: 111.75573099250363
Iteration: 4, Func. Count: 40, Neg. LLF: 110.3204171276421
Iteration: 5, Func. Count: 49, Neg. LLF: 109.72640821817805
Iteration: 6, Func. Count: 58, Neg. LLF: 109.56443742141612
Iteration: 7, Func. Count: 67, Neg. LLF: 109.49589298544169
Iteration: 8, Func. Count: 76, Neg. LLF: 109.49089796974029
Iteration: 9, Func. Count: 85, Neg. LLF: 109.49043193876902
Iteration: 10, Func. Count: 94, Neg. LLF: 109.49041231083119
Iteration: 11, Func. Count: 102, Neg. LLF: 109.49041214873591
Optimization terminated successfully (Exit mode 0)
Current function value: 109.49041231083119
Iterations: 11
Function evaluations: 102
Gradient evaluations: 11
Iteration: 1, Func. Count: 11, Neg. LLF: 15862479.321038194
Iteration: 2, Func. Count: 23, Neg. LLF: 152.1813745184165
Iteration: 3, Func. Count: 34, Neg. LLF: 111.39055355381996
Iteration: 4, Func. Count: 45, Neg. LLF: 109.97585280837656
Iteration: 5, Func. Count: 55, Neg. LLF: 109.98412968316107
Iteration: 6, Func. Count: 66, Neg. LLF: 109.58028914078562
Iteration: 7, Func. Count: 76, Neg. LLF: 109.51134076555273
Iteration: 8, Func. Count: 86, Neg. LLF: 109.49326091206387
Iteration: 9, Func. Count: 96, Neg. LLF: 109.4912506122624
Iteration: 10, Func. Count: 106, Neg. LLF: 109.49061787773891
Iteration: 11, Func. Count: 116, Neg. LLF: 109.49046147725771
Iteration: 12, Func. Count: 126, Neg. LLF: 109.49044128462504
Iteration: 13, Func. Count: 136, Neg. LLF: 109.4910620036827
Optimization terminated successfully (Exit mode 0)
Current function value: 109.49044043288993
Iterations: 14
Function evaluations: 138
Gradient evaluations: 13
Iteration: 1, Func. Count: 8, Neg. LLF: 119.74540152959858
Iteration: 2, Func. Count: 17, Neg. LLF: 121.55917943678827
Iteration: 3, Func. Count: 26, Neg. LLF: 113.42264710826431
Iteration: 4, Func. Count: 34, Neg. LLF: 111.65605574222545
Iteration: 5, Func. Count: 41, Neg. LLF: 111.55639490406325
Iteration: 6, Func. Count: 48, Neg. LLF: 111.7389126297763
Iteration: 7, Func. Count: 56, Neg. LLF: 111.45940836305472
Iteration: 8, Func. Count: 63, Neg. LLF: 111.45415469697355
Iteration: 9, Func. Count: 70, Neg. LLF: 111.45341716129151
Iteration: 10, Func. Count: 77, Neg. LLF: 111.45333523281067
Iteration: 11, Func. Count: 84, Neg. LLF: 111.45333131658565
Iteration: 12, Func. Count: 91, Neg. LLF: 111.45333071965574
Optimization terminated successfully (Exit mode 0)
Current function value: 111.45333071965574
Iterations: 12
Function evaluations: 91
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 119.48647868715075
Iteration: 2, Func. Count: 19, Neg. LLF: 156.67489068465102
Iteration: 3, Func. Count: 28, Neg. LLF: 115.75183590785296
Iteration: 4, Func. Count: 38, Neg. LLF: 112.28776984407983
Iteration: 5, Func. Count: 47, Neg. LLF: 111.54981927557907
Iteration: 6, Func. Count: 55, Neg. LLF: 111.78318335545416
Iteration: 7, Func. Count: 65, Neg. LLF: 111.54277274613578
Iteration: 8, Func. Count: 73, Neg. LLF: 111.53486300599505
Iteration: 9, Func. Count: 81, Neg. LLF: 111.53169524976839
Iteration: 10, Func. Count: 89, Neg. LLF: 111.53076720922304
Iteration: 11, Func. Count: 97, Neg. LLF: 111.5306218420139
Iteration: 12, Func. Count: 105, Neg. LLF: 111.5305904075384
Iteration: 13, Func. Count: 113, Neg. LLF: 111.53057798033161
Iteration: 14, Func. Count: 121, Neg. LLF: 111.53057520091012
Iteration: 15, Func. Count: 128, Neg. LLF: 111.5305752008935
Optimization terminated successfully (Exit mode 0)
Current function value: 111.53057520091012
Iterations: 15
Function evaluations: 128
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 128.36360423346053
Iteration: 2, Func. Count: 20, Neg. LLF: 133.59424469318284
Iteration: 3, Func. Count: 30, Neg. LLF: 117.36391178247233
Iteration: 4, Func. Count: 40, Neg. LLF: 118.17674415578547
Iteration: 5, Func. Count: 50, Neg. LLF: 110.67790695949049
Iteration: 6, Func. Count: 59, Neg. LLF: 110.50486282592317
Iteration: 7, Func. Count: 68, Neg. LLF: 110.50058608459231
Iteration: 8, Func. Count: 77, Neg. LLF: 110.49518048720353
Iteration: 9, Func. Count: 86, Neg. LLF: 110.4945993820521
Iteration: 10, Func. Count: 95, Neg. LLF: 110.49442067771622
Iteration: 11, Func. Count: 104, Neg. LLF: 110.49441640435533
Iteration: 12, Func. Count: 113, Neg. LLF: 110.49441486869344
Iteration: 13, Func. Count: 122, Neg. LLF: 110.49441406563393
Optimization terminated successfully (Exit mode 0)
Current function value: 110.49441406563393
Iterations: 13
Function evaluations: 122
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 127.2295073867283
Iteration: 2, Func. Count: 22, Neg. LLF: 297.3852685251138
Iteration: 3, Func. Count: 34, Neg. LLF: 117.0834240945992
Iteration: 4, Func. Count: 45, Neg. LLF: 110.12886473237076
Iteration: 5, Func. Count: 55, Neg. LLF: 110.07792523802975
Iteration: 6, Func. Count: 65, Neg. LLF: 110.05557857735803
Iteration: 7, Func. Count: 76, Neg. LLF: 109.84266572607862
Iteration: 8, Func. Count: 86, Neg. LLF: 109.51961069055406
Iteration: 9, Func. Count: 96, Neg. LLF: 109.4963343556545
Iteration: 10, Func. Count: 106, Neg. LLF: 109.49528869832655
Iteration: 11, Func. Count: 116, Neg. LLF: 109.49114019959107
Iteration: 12, Func. Count: 126, Neg. LLF: 109.49046446386586
Iteration: 13, Func. Count: 136, Neg. LLF: 109.5751101739258
Iteration: 14, Func. Count: 148, Neg. LLF: 109.49325806786399
Iteration: 15, Func. Count: 159, Neg. LLF: 109.49132690730285
Iteration: 16, Func. Count: 170, Neg. LLF: 109.49041202716731
Iteration: 17, Func. Count: 179, Neg. LLF: 109.49041186509064
Optimization terminated successfully (Exit mode 0)
Current function value: 109.49041202716731
Iterations: 18
Function evaluations: 179
Gradient evaluations: 17
Iteration: 1, Func. Count: 12, Neg. LLF: 161.45480332333912
Iteration: 2, Func. Count: 24, Neg. LLF: 113.6976895799535
Iteration: 3, Func. Count: 36, Neg. LLF: 118.50544752314377
Iteration: 4, Func. Count: 48, Neg. LLF: 110.68229047898672
Iteration: 5, Func. Count: 59, Neg. LLF: 110.12028304978848
Iteration: 6, Func. Count: 70, Neg. LLF: 114.94097023039771
Iteration: 7, Func. Count: 82, Neg. LLF: 109.65211323109693
Iteration: 8, Func. Count: 93, Neg. LLF: 109.5334081906954
Iteration: 9, Func. Count: 104, Neg. LLF: 109.50726027018099
Iteration: 10, Func. Count: 115, Neg. LLF: 109.49352857138093
Iteration: 11, Func. Count: 126, Neg. LLF: 109.49054599452238
Iteration: 12, Func. Count: 137, Neg. LLF: 109.49041243707306
Iteration: 13, Func. Count: 147, Neg. LLF: 109.49041242254401
Optimization terminated successfully (Exit mode 0)
Current function value: 109.49041243707306
Iterations: 13
Function evaluations: 147
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 118.38540918985606
Iteration: 2, Func. Count: 19, Neg. LLF: 116.24766928806784
Iteration: 3, Func. Count: 29, Neg. LLF: 115.19919673682534
Iteration: 4, Func. Count: 38, Neg. LLF: 122.55629668554559
Iteration: 5, Func. Count: 47, Neg. LLF: 110.83262931365628
Iteration: 6, Func. Count: 55, Neg. LLF: 110.49139774124396
Iteration: 7, Func. Count: 63, Neg. LLF: 110.4869574025008
Iteration: 8, Func. Count: 71, Neg. LLF: 110.48544292615495
Iteration: 9, Func. Count: 79, Neg. LLF: 110.48543015418345
Iteration: 10, Func. Count: 87, Neg. LLF: 110.48542882986476
Iteration: 11, Func. Count: 94, Neg. LLF: 110.48542882987024
Optimization terminated successfully (Exit mode 0)
Current function value: 110.48542882986476
Iterations: 11
Function evaluations: 94
Gradient evaluations: 11
Iteration: 1, Func. Count: 10, Neg. LLF: 113.69791833103845
Iteration: 2, Func. Count: 20, Neg. LLF: 118.85834742084548
Iteration: 3, Func. Count: 30, Neg. LLF: 115.17417286002478
Iteration: 4, Func. Count: 40, Neg. LLF: 114.75081168134032
Iteration: 5, Func. Count: 50, Neg. LLF: 113.70326309470016
Iteration: 6, Func. Count: 60, Neg. LLF: 110.5538329987457
Iteration: 7, Func. Count: 69, Neg. LLF: 110.51669225454656
Iteration: 8, Func. Count: 78, Neg. LLF: 110.49281410064337
Iteration: 9, Func. Count: 87, Neg. LLF: 110.48668038985215
Iteration: 10, Func. Count: 96, Neg. LLF: 110.48577351097873
Iteration: 11, Func. Count: 105, Neg. LLF: 110.48543229865314
Iteration: 12, Func. Count: 114, Neg. LLF: 110.48542885400582
Iteration: 13, Func. Count: 122, Neg. LLF: 110.48542888582989
Optimization terminated successfully (Exit mode 0)
Current function value: 110.48542885400582
Iterations: 13
Function evaluations: 122
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 129.7826188320149
Iteration: 2, Func. Count: 22, Neg. LLF: 140.04874454535684
Iteration: 3, Func. Count: 33, Neg. LLF: 116.08017472718963
Iteration: 4, Func. Count: 44, Neg. LLF: 112.68386384739492
Iteration: 5, Func. Count: 55, Neg. LLF: 114.90937988810711
Iteration: 6, Func. Count: 66, Neg. LLF: 110.45360751887829
Iteration: 7, Func. Count: 76, Neg. LLF: 110.43277731789809
Iteration: 8, Func. Count: 86, Neg. LLF: 110.42952252933675
Iteration: 9, Func. Count: 96, Neg. LLF: 110.42682964638561
Iteration: 10, Func. Count: 106, Neg. LLF: 110.42530277029753
Iteration: 11, Func. Count: 116, Neg. LLF: 110.42461420279564
Iteration: 12, Func. Count: 126, Neg. LLF: 110.42458909776055
Iteration: 13, Func. Count: 136, Neg. LLF: 110.4245849589709
Iteration: 14, Func. Count: 146, Neg. LLF: 110.4245837583601
Iteration: 15, Func. Count: 155, Neg. LLF: 110.42458375843081
Optimization terminated successfully (Exit mode 0)
Current function value: 110.4245837583601
Iterations: 15
Function evaluations: 155
Gradient evaluations: 15
Iteration: 1, Func. Count: 12, Neg. LLF: 129.31649520799536
Iteration: 2, Func. Count: 24, Neg. LLF: 457.92196872386734
Iteration: 3, Func. Count: 37, Neg. LLF: 116.38474982460606
Iteration: 4, Func. Count: 49, Neg. LLF: 112.17573433349861
Iteration: 5, Func. Count: 61, Neg. LLF: 109.40278356778548
Iteration: 6, Func. Count: 72, Neg. LLF: 109.48475107299934
Iteration: 7, Func. Count: 84, Neg. LLF: 109.22260752658617
Iteration: 8, Func. Count: 95, Neg. LLF: 109.19731605532073
Iteration: 9, Func. Count: 106, Neg. LLF: 109.19238983380113
Iteration: 10, Func. Count: 117, Neg. LLF: 109.19128437912494
Iteration: 11, Func. Count: 128, Neg. LLF: 109.19123479049915
Iteration: 12, Func. Count: 139, Neg. LLF: 109.19123140374596
Iteration: 13, Func. Count: 149, Neg. LLF: 109.19123128798475
Optimization terminated successfully (Exit mode 0)
Current function value: 109.19123140374596
Iterations: 13
Function evaluations: 149
Gradient evaluations: 13
Iteration: 1, Func. Count: 13, Neg. LLF: 238.74528425455418
Iteration: 2, Func. Count: 26, Neg. LLF: 119.54551837929277
Iteration: 3, Func. Count: 39, Neg. LLF: 116.88095929881638
Iteration: 4, Func. Count: 52, Neg. LLF: 111.34795531791713
Iteration: 5, Func. Count: 65, Neg. LLF: 109.52633886666172
Iteration: 6, Func. Count: 77, Neg. LLF: 111.46992944515581
Iteration: 7, Func. Count: 90, Neg. LLF: 109.25144909093181
Iteration: 8, Func. Count: 102, Neg. LLF: 109.20280117117599
Iteration: 9, Func. Count: 114, Neg. LLF: 109.19417590164085
Iteration: 10, Func. Count: 126, Neg. LLF: 109.19223006167752
Iteration: 11, Func. Count: 138, Neg. LLF: 109.19159072211036
Iteration: 12, Func. Count: 150, Neg. LLF: 109.19127033822005
Iteration: 13, Func. Count: 162, Neg. LLF: 109.19123164785341
Iteration: 14, Func. Count: 174, Neg. LLF: 109.19123099643731
Optimization terminated successfully (Exit mode 0)
Current function value: 109.19123099643731
Iterations: 14
Function evaluations: 174
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 114.35437041062546
Iteration: 2, Func. Count: 20, Neg. LLF: 112.93977711597968
Iteration: 3, Func. Count: 30, Neg. LLF: 113.73421171141459
Iteration: 4, Func. Count: 40, Neg. LLF: 112.86405876368217
Iteration: 5, Func. Count: 50, Neg. LLF: 3985661.997304759
Iteration: 6, Func. Count: 60, Neg. LLF: 110.11193653261346
Iteration: 7, Func. Count: 69, Neg. LLF: 110.05295701859426
Iteration: 8, Func. Count: 78, Neg. LLF: 110.03962173130536
Iteration: 9, Func. Count: 87, Neg. LLF: 110.03882408154762
Iteration: 10, Func. Count: 96, Neg. LLF: 110.03873491175241
Iteration: 11, Func. Count: 105, Neg. LLF: 110.0386914569122
Iteration: 12, Func. Count: 113, Neg. LLF: 110.0386914569215
Optimization terminated successfully (Exit mode 0)
Current function value: 110.0386914569122
Iterations: 12
Function evaluations: 113
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 114.54568433783872
Iteration: 2, Func. Count: 22, Neg. LLF: 114.71256912899912
Iteration: 3, Func. Count: 33, Neg. LLF: 114.2508867536287
Iteration: 4, Func. Count: 44, Neg. LLF: 114.55576145717832
Iteration: 5, Func. Count: 55, Neg. LLF: 110.545735694681
Iteration: 6, Func. Count: 66, Neg. LLF: 110.49547166861717
Iteration: 7, Func. Count: 77, Neg. LLF: 110.08885715127936
Iteration: 8, Func. Count: 87, Neg. LLF: 110.04132018420968
Iteration: 9, Func. Count: 97, Neg. LLF: 110.03879440275259
Iteration: 10, Func. Count: 107, Neg. LLF: 110.03869442104896
Iteration: 11, Func. Count: 117, Neg. LLF: 110.0386913162419
Iteration: 12, Func. Count: 126, Neg. LLF: 110.03869133862679
Optimization terminated successfully (Exit mode 0)
Current function value: 110.0386913162419
Iterations: 12
Function evaluations: 126
Gradient evaluations: 12
Iteration: 1, Func. Count: 12, Neg. LLF: 115.54732957784
Iteration: 2, Func. Count: 24, Neg. LLF: 111.4907033919582
Iteration: 3, Func. Count: 36, Neg. LLF: 114.04436136040704
Iteration: 4, Func. Count: 48, Neg. LLF: 110.8902544665881
Iteration: 5, Func. Count: 60, Neg. LLF: 110.93305570941794
Iteration: 6, Func. Count: 72, Neg. LLF: 113.58244924859211
Iteration: 7, Func. Count: 84, Neg. LLF: 110.06825401216877
Iteration: 8, Func. Count: 95, Neg. LLF: 110.04587778296424
Iteration: 9, Func. Count: 106, Neg. LLF: 110.03887654089257
Iteration: 10, Func. Count: 117, Neg. LLF: 110.0386949691585
Iteration: 11, Func. Count: 128, Neg. LLF: 110.03869136906117
Iteration: 12, Func. Count: 138, Neg. LLF: 110.03869138767993
Optimization terminated successfully (Exit mode 0)
Current function value: 110.03869136906117
Iterations: 12
Function evaluations: 138
Gradient evaluations: 12
Iteration: 1, Func. Count: 13, Neg. LLF: 167.558738878671
Iteration: 2, Func. Count: 26, Neg. LLF: 216.3947476638774
Iteration: 3, Func. Count: 39, Neg. LLF: 116.27140546272462
Iteration: 4, Func. Count: 52, Neg. LLF: 111.0067761300644
Iteration: 5, Func. Count: 65, Neg. LLF: 109.53464439782563
Iteration: 6, Func. Count: 77, Neg. LLF: 113.74468321732874
Iteration: 7, Func. Count: 90, Neg. LLF: 109.26501705252407
Iteration: 8, Func. Count: 102, Neg. LLF: 109.17913055223491
Iteration: 9, Func. Count: 114, Neg. LLF: 109.14025096911686
Iteration: 10, Func. Count: 126, Neg. LLF: 109.135000731055
Iteration: 11, Func. Count: 138, Neg. LLF: 109.12641019867728
Iteration: 12, Func. Count: 150, Neg. LLF: 109.1261066312665
Iteration: 13, Func. Count: 162, Neg. LLF: 109.12595215990802
Iteration: 14, Func. Count: 174, Neg. LLF: 109.12594481005674
Iteration: 15, Func. Count: 186, Neg. LLF: 109.1259430271984
Iteration: 16, Func. Count: 197, Neg. LLF: 109.12594293244244
Optimization terminated successfully (Exit mode 0)
Current function value: 109.1259430271984
Iterations: 16
Function evaluations: 197
Gradient evaluations: 16
Iteration: 1, Func. Count: 14, Neg. LLF: 3017102.068817399
Iteration: 2, Func. Count: 28, Neg. LLF: 115.23585678796302
Iteration: 3, Func. Count: 42, Neg. LLF: 125.37892868794073
Iteration: 4, Func. Count: 56, Neg. LLF: 112.93329385924558
Iteration: 5, Func. Count: 70, Neg. LLF: 110.651848322167
Iteration: 6, Func. Count: 84, Neg. LLF: 109.13928861829669
Iteration: 7, Func. Count: 97, Neg. LLF: 109.070078269288
Iteration: 8, Func. Count: 110, Neg. LLF: 109.03193008759779
Iteration: 9, Func. Count: 123, Neg. LLF: 109.00619610234426
Iteration: 10, Func. Count: 136, Neg. LLF: 109.00299939053413
Iteration: 11, Func. Count: 149, Neg. LLF: 109.00236034974591
Iteration: 12, Func. Count: 162, Neg. LLF: 109.00234218366967
Iteration: 13, Func. Count: 175, Neg. LLF: 109.00234147910433
Optimization terminated successfully (Exit mode 0)
Current function value: 109.00234147910433
Iterations: 13
Function evaluations: 175
Gradient evaluations: 13
Iteration: 1, Func. Count: 7, Neg. LLF: 117.80388287317264
Iteration: 2, Func. Count: 15, Neg. LLF: 119.42721742346583
Iteration: 3, Func. Count: 22, Neg. LLF: 111.60657154677997
Iteration: 4, Func. Count: 29, Neg. LLF: 111.4831675513302
Iteration: 5, Func. Count: 36, Neg. LLF: 111.31746761521063
Iteration: 6, Func. Count: 42, Neg. LLF: 111.26441235128343
Iteration: 7, Func. Count: 48, Neg. LLF: 111.26085121773825
Iteration: 8, Func. Count: 54, Neg. LLF: 111.26043025240124
Iteration: 9, Func. Count: 60, Neg. LLF: 111.26042637047601
Iteration: 10, Func. Count: 65, Neg. LLF: 111.26042637045751
Optimization terminated successfully (Exit mode 0)
Current function value: 111.26042637047601
Iterations: 10
Function evaluations: 65
Gradient evaluations: 10
Iteration: 1, Func. Count: 8, Neg. LLF: 115.98433616111411
Iteration: 2, Func. Count: 16, Neg. LLF: 115.02321142242931
Iteration: 3, Func. Count: 24, Neg. LLF: 115.74569546470931
Iteration: 4, Func. Count: 32, Neg. LLF: 111.38805012884244
Iteration: 5, Func. Count: 39, Neg. LLF: 112.55921059344091
Iteration: 6, Func. Count: 47, Neg. LLF: 111.26709993592019
Iteration: 7, Func. Count: 54, Neg. LLF: 111.26105877140509
Iteration: 8, Func. Count: 61, Neg. LLF: 111.26045223147774
Iteration: 9, Func. Count: 68, Neg. LLF: 111.26042637625581
Iteration: 10, Func. Count: 74, Neg. LLF: 111.26042640165447
Optimization terminated successfully (Exit mode 0)
Current function value: 111.26042637625581
Iterations: 10
Function evaluations: 74
Gradient evaluations: 10
Iteration: 1, Func. Count: 9, Neg. LLF: 115.98088683842717
Iteration: 2, Func. Count: 18, Neg. LLF: 115.1995907002677
Iteration: 3, Func. Count: 27, Neg. LLF: 118.22039224958543
Iteration: 4, Func. Count: 36, Neg. LLF: 113.27170630475835
Iteration: 5, Func. Count: 45, Neg. LLF: 113.22638632873087
Iteration: 6, Func. Count: 54, Neg. LLF: 111.33757659461455
Iteration: 7, Func. Count: 62, Neg. LLF: 111.27659467311071
Iteration: 8, Func. Count: 70, Neg. LLF: 111.26084184556368
Iteration: 9, Func. Count: 78, Neg. LLF: 111.26046948131342
Iteration: 10, Func. Count: 86, Neg. LLF: 111.26042749447922
Iteration: 11, Func. Count: 94, Neg. LLF: 111.26042646805304
Iteration: 12, Func. Count: 101, Neg. LLF: 111.26042647149865
Optimization terminated successfully (Exit mode 0)
Current function value: 111.26042646805304
Iterations: 12
Function evaluations: 101
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 115.99024851854222
Iteration: 2, Func. Count: 20, Neg. LLF: 115.17002412559975
Iteration: 3, Func. Count: 30, Neg. LLF: 119.83737589085368
Iteration: 4, Func. Count: 40, Neg. LLF: 111.63908920069908
Iteration: 5, Func. Count: 49, Neg. LLF: 112.60423857913605
Iteration: 6, Func. Count: 59, Neg. LLF: 111.93674602748949
Iteration: 7, Func. Count: 69, Neg. LLF: 111.30935806902694
Iteration: 8, Func. Count: 78, Neg. LLF: 111.2783885891683
Iteration: 9, Func. Count: 87, Neg. LLF: 111.26279249175599
Iteration: 10, Func. Count: 96, Neg. LLF: 111.26055135577147
Iteration: 11, Func. Count: 105, Neg. LLF: 111.26043644926784
Iteration: 12, Func. Count: 114, Neg. LLF: 111.26042735610038
Iteration: 13, Func. Count: 123, Neg. LLF: 111.26042635524342
Iteration: 14, Func. Count: 131, Neg. LLF: 111.26042637232524
Optimization terminated successfully (Exit mode 0)
Current function value: 111.26042635524342
Iterations: 14
Function evaluations: 131
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 115.91999282732546
Iteration: 2, Func. Count: 22, Neg. LLF: 115.17016859024882
Iteration: 3, Func. Count: 33, Neg. LLF: 121.6003956172656
Iteration: 4, Func. Count: 44, Neg. LLF: 112.03191920784506
Iteration: 5, Func. Count: 55, Neg. LLF: 112.8221426942176
Iteration: 6, Func. Count: 66, Neg. LLF: 111.31353903085126
Iteration: 7, Func. Count: 76, Neg. LLF: 111.3736666021866
Iteration: 8, Func. Count: 87, Neg. LLF: 111.26867831785273
Iteration: 9, Func. Count: 97, Neg. LLF: 111.26107108270365
Iteration: 10, Func. Count: 107, Neg. LLF: 111.26043430393571
Iteration: 11, Func. Count: 117, Neg. LLF: 111.26042687803883
Iteration: 12, Func. Count: 127, Neg. LLF: 111.26042634434859
Optimization terminated successfully (Exit mode 0)
Current function value: 111.26042634434859
Iterations: 12
Function evaluations: 127
Gradient evaluations: 12
Iteration: 1, Func. Count: 8, Neg. LLF: 125.2170313223085
Iteration: 2, Func. Count: 17, Neg. LLF: 114.7422258645822
Iteration: 3, Func. Count: 25, Neg. LLF: 118.29468395513847
Iteration: 4, Func. Count: 33, Neg. LLF: 115.23030476372308
Iteration: 5, Func. Count: 41, Neg. LLF: 110.2577194007658
Iteration: 6, Func. Count: 48, Neg. LLF: 113.29467686991947
Iteration: 7, Func. Count: 57, Neg. LLF: 112.75231415140422
Iteration: 8, Func. Count: 66, Neg. LLF: 110.05830308868472
Iteration: 9, Func. Count: 73, Neg. LLF: 110.05574202567536
Iteration: 10, Func. Count: 80, Neg. LLF: 110.05567282140561
Iteration: 11, Func. Count: 87, Neg. LLF: 110.05566957333612
Iteration: 12, Func. Count: 93, Neg. LLF: 110.0556695733444
Optimization terminated successfully (Exit mode 0)
Current function value: 110.05566957333612
Iterations: 12
Function evaluations: 93
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 127.44701011462043
Iteration: 2, Func. Count: 18, Neg. LLF: 112.16576105678075
Iteration: 3, Func. Count: 27, Neg. LLF: 111.19426382381505
Iteration: 4, Func. Count: 36, Neg. LLF: 116.12132481849825
Iteration: 5, Func. Count: 45, Neg. LLF: 110.09874623692014
Iteration: 6, Func. Count: 53, Neg. LLF: 120.33816166099201
Iteration: 7, Func. Count: 63, Neg. LLF: 110.05621254793954
Iteration: 8, Func. Count: 71, Neg. LLF: 110.05574657108264
Iteration: 9, Func. Count: 79, Neg. LLF: 110.05567586737124
Iteration: 10, Func. Count: 87, Neg. LLF: 110.0556698352478
Iteration: 11, Func. Count: 94, Neg. LLF: 110.05566986464768
Optimization terminated successfully (Exit mode 0)
Current function value: 110.0556698352478
Iterations: 11
Function evaluations: 94
Gradient evaluations: 11
Iteration: 1, Func. Count: 10, Neg. LLF: 123.04826853998634
Iteration: 2, Func. Count: 20, Neg. LLF: 112.4342740147673
Iteration: 3, Func. Count: 30, Neg. LLF: 111.20433295041514
Iteration: 4, Func. Count: 40, Neg. LLF: 116.3290338229366
Iteration: 5, Func. Count: 50, Neg. LLF: 356.5392890879253
Iteration: 6, Func. Count: 60, Neg. LLF: 109.86727968500529
Iteration: 7, Func. Count: 69, Neg. LLF: 109.83138884240078
Iteration: 8, Func. Count: 78, Neg. LLF: 109.81607005488571
Iteration: 9, Func. Count: 87, Neg. LLF: 109.81320980410293
Iteration: 10, Func. Count: 96, Neg. LLF: 109.81312359079631
Iteration: 11, Func. Count: 105, Neg. LLF: 109.8131057624016
Iteration: 12, Func. Count: 113, Neg. LLF: 109.81310576238975
Optimization terminated successfully (Exit mode 0)
Current function value: 109.8131057624016
Iterations: 12
Function evaluations: 113
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 16008737.556511354
Iteration: 2, Func. Count: 22, Neg. LLF: 123.8855855655601
Iteration: 3, Func. Count: 33, Neg. LLF: 111.76549201774185
Iteration: 4, Func. Count: 44, Neg. LLF: 110.24296487504898
Iteration: 5, Func. Count: 54, Neg. LLF: 109.6608706638723
Iteration: 6, Func. Count: 64, Neg. LLF: 109.82364077478316
Iteration: 7, Func. Count: 75, Neg. LLF: 109.49201730031636
Iteration: 8, Func. Count: 85, Neg. LLF: 109.45465434276522
Iteration: 9, Func. Count: 95, Neg. LLF: 109.43409185873529
Iteration: 10, Func. Count: 105, Neg. LLF: 109.43312988187456
Iteration: 11, Func. Count: 116, Neg. LLF: 109.4237384526191
Iteration: 12, Func. Count: 126, Neg. LLF: 109.42163800799808
Iteration: 13, Func. Count: 136, Neg. LLF: 109.42157272208176
Iteration: 14, Func. Count: 146, Neg. LLF: 109.42156501065499
Iteration: 15, Func. Count: 155, Neg. LLF: 109.4215648765147
Optimization terminated successfully (Exit mode 0)
Current function value: 109.42156501065499
Iterations: 15
Function evaluations: 155
Gradient evaluations: 15
Iteration: 1, Func. Count: 12, Neg. LLF: 125.45052913697171
Iteration: 2, Func. Count: 24, Neg. LLF: 112.89975052051867
Iteration: 3, Func. Count: 36, Neg. LLF: 111.52897261831447
Iteration: 4, Func. Count: 48, Neg. LLF: 116.12787716343108
Iteration: 5, Func. Count: 60, Neg. LLF: 161.3765857699894
Iteration: 6, Func. Count: 72, Neg. LLF: 109.88620504401497
Iteration: 7, Func. Count: 83, Neg. LLF: 114.26686514034972
Iteration: 8, Func. Count: 95, Neg. LLF: 110.8593294977443
Iteration: 9, Func. Count: 107, Neg. LLF: 109.77750756575536
Iteration: 10, Func. Count: 118, Neg. LLF: 109.74498152424819
Iteration: 11, Func. Count: 129, Neg. LLF: 109.73651725316336
Iteration: 12, Func. Count: 140, Neg. LLF: 109.71031461031724
Iteration: 13, Func. Count: 151, Neg. LLF: 109.63125262918767
Iteration: 14, Func. Count: 162, Neg. LLF: 109.50963494039533
Iteration: 15, Func. Count: 173, Neg. LLF: 109.45390560025426
Iteration: 16, Func. Count: 184, Neg. LLF: 109.65940249475466
Iteration: 17, Func. Count: 196, Neg. LLF: 109.42904906592638
Iteration: 18, Func. Count: 207, Neg. LLF: 109.42199156136451
Iteration: 19, Func. Count: 218, Neg. LLF: 109.42159202618008
Iteration: 20, Func. Count: 229, Neg. LLF: 109.421561124178
Iteration: 21, Func. Count: 240, Neg. LLF: 109.42154862090419
Optimization terminated successfully (Exit mode 0)
Current function value: 109.42156110338698
Iterations: 21
Function evaluations: 250
Gradient evaluations: 21
Iteration: 1, Func. Count: 9, Neg. LLF: 116.35201643089489
Iteration: 2, Func. Count: 18, Neg. LLF: 124.39969649436273
Iteration: 3, Func. Count: 27, Neg. LLF: 110.1896619524332
Iteration: 4, Func. Count: 35, Neg. LLF: 111.73099437860361
Iteration: 5, Func. Count: 45, Neg. LLF: 111.45910864165776
Iteration: 6, Func. Count: 54, Neg. LLF: 110.26725277571641
Iteration: 7, Func. Count: 63, Neg. LLF: 110.05670854257093
Iteration: 8, Func. Count: 71, Neg. LLF: 110.05597356067197
Iteration: 9, Func. Count: 79, Neg. LLF: 110.05567107853886
Iteration: 10, Func. Count: 87, Neg. LLF: 110.05566969350089
Iteration: 11, Func. Count: 94, Neg. LLF: 110.05566963540105
Optimization terminated successfully (Exit mode 0)
Current function value: 110.05566969350089
Iterations: 11
Function evaluations: 94
Gradient evaluations: 11
Iteration: 1, Func. Count: 10, Neg. LLF: 117.19036439166044
Iteration: 2, Func. Count: 20, Neg. LLF: 111.32116930503403
Iteration: 3, Func. Count: 29, Neg. LLF: 110.69503154944077
Iteration: 4, Func. Count: 38, Neg. LLF: 191.70220135168847
Iteration: 5, Func. Count: 48, Neg. LLF: 116.96629424212612
Iteration: 6, Func. Count: 59, Neg. LLF: 114.23071409430767
Iteration: 7, Func. Count: 69, Neg. LLF: 110.76841007629177
Iteration: 8, Func. Count: 79, Neg. LLF: 110.06144154173603
Iteration: 9, Func. Count: 88, Neg. LLF: 110.05627951104861
Iteration: 10, Func. Count: 97, Neg. LLF: 110.05570703437104
Iteration: 11, Func. Count: 106, Neg. LLF: 110.05567037169504
Iteration: 12, Func. Count: 115, Neg. LLF: 110.05566944623268
Optimization terminated successfully (Exit mode 0)
Current function value: 110.05566944623268
Iterations: 12
Function evaluations: 115
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 116.94501092833193
Iteration: 2, Func. Count: 22, Neg. LLF: 111.07166308338037
Iteration: 3, Func. Count: 32, Neg. LLF: 110.34489483399751
Iteration: 4, Func. Count: 42, Neg. LLF: 305.02501856350904
Iteration: 5, Func. Count: 53, Neg. LLF: 122.53300031884535
Iteration: 6, Func. Count: 64, Neg. LLF: 110.76144000775443
Iteration: 7, Func. Count: 75, Neg. LLF: 109.85989323672162
Iteration: 8, Func. Count: 85, Neg. LLF: 109.82276368523064
Iteration: 9, Func. Count: 95, Neg. LLF: 109.81475338890314
Iteration: 10, Func. Count: 105, Neg. LLF: 109.81323811980349
Iteration: 11, Func. Count: 115, Neg. LLF: 109.81313914613136
Iteration: 12, Func. Count: 125, Neg. LLF: 109.81311932119401
Iteration: 13, Func. Count: 135, Neg. LLF: 109.81310690805124
Iteration: 14, Func. Count: 145, Neg. LLF: 109.813105541373
Iteration: 15, Func. Count: 154, Neg. LLF: 109.81310554138207
Optimization terminated successfully (Exit mode 0)
Current function value: 109.813105541373
Iterations: 15
Function evaluations: 154
Gradient evaluations: 15
Iteration: 1, Func. Count: 12, Neg. LLF: 116.70444867312098
Iteration: 2, Func. Count: 24, Neg. LLF: 111.15576612268835
Iteration: 3, Func. Count: 35, Neg. LLF: 113.96868020169919
Iteration: 4, Func. Count: 47, Neg. LLF: 243.13561823352262
Iteration: 5, Func. Count: 59, Neg. LLF: 11909717.636023678
Iteration: 6, Func. Count: 71, Neg. LLF: 115.8583882852303
Iteration: 7, Func. Count: 83, Neg. LLF: 110.8111260853235
Iteration: 8, Func. Count: 95, Neg. LLF: 110.08662319268252
Iteration: 9, Func. Count: 107, Neg. LLF: 109.81402818352205
Iteration: 10, Func. Count: 118, Neg. LLF: 109.9444635354253
Iteration: 11, Func. Count: 130, Neg. LLF: 109.8066169002762
Iteration: 12, Func. Count: 141, Neg. LLF: 109.79892112037052
Iteration: 13, Func. Count: 152, Neg. LLF: 109.77241287416639
Iteration: 14, Func. Count: 163, Neg. LLF: 109.7651307103369
Iteration: 15, Func. Count: 174, Neg. LLF: 109.74424001529081
Iteration: 16, Func. Count: 185, Neg. LLF: 109.73498487185789
Iteration: 17, Func. Count: 196, Neg. LLF: 109.70755480962612
Iteration: 18, Func. Count: 207, Neg. LLF: 109.80078415794104
Iteration: 19, Func. Count: 219, Neg. LLF: 114.04337025882077
Iteration: 20, Func. Count: 232, Neg. LLF: 115.78157325181853
Iteration: 21, Func. Count: 245, Neg. LLF: 109.75795014555688
Iteration: 22, Func. Count: 258, Neg. LLF: 8140704.522707525
Iteration: 23, Func. Count: 271, Neg. LLF: 110.32217106869258
Iteration: 24, Func. Count: 283, Neg. LLF: 109.8240059156048
Iteration: 25, Func. Count: 295, Neg. LLF: 109.87404003954957
Iteration: 26, Func. Count: 307, Neg. LLF: 109.60420904963227
Iteration: 27, Func. Count: 319, Neg. LLF: 109.452676296393
Iteration: 28, Func. Count: 331, Neg. LLF: 109.44051868982582
Iteration: 29, Func. Count: 343, Neg. LLF: 109.42169383884891
Iteration: 30, Func. Count: 354, Neg. LLF: 109.42156923408226
Iteration: 31, Func. Count: 365, Neg. LLF: 109.42157123723706
Iteration: 32, Func. Count: 376, Neg. LLF: 109.42156514448685
Optimization terminated successfully (Exit mode 0)
Current function value: 109.42156527839381
Iterations: 33
Function evaluations: 376
Gradient evaluations: 32
Iteration: 1, Func. Count: 13, Neg. LLF: 116.65584119480225
Iteration: 2, Func. Count: 26, Neg. LLF: 111.33238306270728
Iteration: 3, Func. Count: 39, Neg. LLF: 111.88490440048753
Iteration: 4, Func. Count: 52, Neg. LLF: 159.37285537354808
Iteration: 5, Func. Count: 65, Neg. LLF: 174.0438232384915
Iteration: 6, Func. Count: 78, Neg. LLF: 110.24691473149977
Iteration: 7, Func. Count: 91, Neg. LLF: 109.89233050338075
Iteration: 8, Func. Count: 103, Neg. LLF: 110.80075889833306
Iteration: 9, Func. Count: 116, Neg. LLF: 110.65621848853698
Iteration: 10, Func. Count: 129, Neg. LLF: 109.77723830459011
Iteration: 11, Func. Count: 141, Neg. LLF: 109.74406592366007
Iteration: 12, Func. Count: 153, Neg. LLF: 109.73456429182365
Iteration: 13, Func. Count: 165, Neg. LLF: 109.72454317326837
Iteration: 14, Func. Count: 177, Neg. LLF: 109.71156172861474
Iteration: 15, Func. Count: 189, Neg. LLF: 109.62376559178057
Iteration: 16, Func. Count: 201, Neg. LLF: 109.50577528024903
Iteration: 17, Func. Count: 213, Neg. LLF: 109.57425461918888
Iteration: 18, Func. Count: 226, Neg. LLF: 109.5144824555253
Iteration: 19, Func. Count: 239, Neg. LLF: 109.43562512326015
Iteration: 20, Func. Count: 252, Neg. LLF: 109.42162675880448
Iteration: 21, Func. Count: 264, Neg. LLF: 109.42156591814795
Iteration: 22, Func. Count: 276, Neg. LLF: 109.42156506501372
Optimization terminated successfully (Exit mode 0)
Current function value: 109.42156506501372
Iterations: 22
Function evaluations: 276
Gradient evaluations: 22
Iteration: 1, Func. Count: 10, Neg. LLF: 114.75892346759687
Iteration: 2, Func. Count: 20, Neg. LLF: 113.38131598453208
Iteration: 3, Func. Count: 31, Neg. LLF: 111.62188127006384
Iteration: 4, Func. Count: 41, Neg. LLF: 132.94395631597968
Iteration: 5, Func. Count: 51, Neg. LLF: 237.77036197755888
Iteration: 6, Func. Count: 61, Neg. LLF: 110.14281817265494
Iteration: 7, Func. Count: 70, Neg. LLF: 110.41298910258948
Iteration: 8, Func. Count: 81, Neg. LLF: 110.59167208370616
Iteration: 9, Func. Count: 91, Neg. LLF: 110.02327872164818
Iteration: 10, Func. Count: 100, Neg. LLF: 110.02204731985941
Iteration: 11, Func. Count: 109, Neg. LLF: 110.02192906356255
Iteration: 12, Func. Count: 118, Neg. LLF: 110.02192028452099
Iteration: 13, Func. Count: 127, Neg. LLF: 110.02191962168264
Optimization terminated successfully (Exit mode 0)
Current function value: 110.02191962168264
Iterations: 13
Function evaluations: 127
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 119.63152301893638
Iteration: 2, Func. Count: 22, Neg. LLF: 113.94217088153482
Iteration: 3, Func. Count: 34, Neg. LLF: 111.32718612598845
Iteration: 4, Func. Count: 45, Neg. LLF: 127.33724978579829
Iteration: 5, Func. Count: 56, Neg. LLF: 112.97039680885
Iteration: 6, Func. Count: 67, Neg. LLF: 110.12708661528359
Iteration: 7, Func. Count: 77, Neg. LLF: 113.74891116601476
Iteration: 8, Func. Count: 89, Neg. LLF: 110.5127490066977
Iteration: 9, Func. Count: 100, Neg. LLF: 110.02292578597356
Iteration: 10, Func. Count: 110, Neg. LLF: 110.02196279367672
Iteration: 11, Func. Count: 120, Neg. LLF: 110.02192548105032
Iteration: 12, Func. Count: 130, Neg. LLF: 110.02192076970339
Iteration: 13, Func. Count: 140, Neg. LLF: 110.02191958195472
Iteration: 14, Func. Count: 149, Neg. LLF: 110.02191960806766
Optimization terminated successfully (Exit mode 0)
Current function value: 110.02191958195472
Iterations: 14
Function evaluations: 149
Gradient evaluations: 14
Iteration: 1, Func. Count: 12, Neg. LLF: 117.66326026704529
Iteration: 2, Func. Count: 24, Neg. LLF: 116.03380149577292
Iteration: 3, Func. Count: 37, Neg. LLF: 110.76809763377824
Iteration: 4, Func. Count: 48, Neg. LLF: 113.7642727969419
Iteration: 5, Func. Count: 61, Neg. LLF: 122.95271306744758
Iteration: 6, Func. Count: 73, Neg. LLF: 113.47457045431398
Iteration: 7, Func. Count: 85, Neg. LLF: 113.59921854021965
Iteration: 8, Func. Count: 97, Neg. LLF: 110.63039097165453
Iteration: 9, Func. Count: 109, Neg. LLF: 109.8574751721265
Iteration: 10, Func. Count: 120, Neg. LLF: 109.82854732072211
Iteration: 11, Func. Count: 131, Neg. LLF: 109.81300504479887
Iteration: 12, Func. Count: 142, Neg. LLF: 109.81151503189959
Iteration: 13, Func. Count: 153, Neg. LLF: 109.81090328507075
Iteration: 14, Func. Count: 164, Neg. LLF: 109.81061300785674
Iteration: 15, Func. Count: 175, Neg. LLF: 109.8106067104103
Iteration: 16, Func. Count: 186, Neg. LLF: 109.8106055220894
Iteration: 17, Func. Count: 196, Neg. LLF: 109.81060552208525
Optimization terminated successfully (Exit mode 0)
Current function value: 109.8106055220894
Iterations: 17
Function evaluations: 196
Gradient evaluations: 17
Iteration: 1, Func. Count: 13, Neg. LLF: 118.90910579221942
Iteration: 2, Func. Count: 26, Neg. LLF: 113.28754089100683
Iteration: 3, Func. Count: 40, Neg. LLF: 110.7287520893707
Iteration: 4, Func. Count: 52, Neg. LLF: 111.87330402393385
Iteration: 5, Func. Count: 66, Neg. LLF: 130.43592846816983
Iteration: 6, Func. Count: 79, Neg. LLF: 113.7720777796351
Iteration: 7, Func. Count: 92, Neg. LLF: 112.1211405023242
Iteration: 8, Func. Count: 105, Neg. LLF: 116.46154119681613
Iteration: 9, Func. Count: 118, Neg. LLF: 110.11346438930676
Iteration: 10, Func. Count: 131, Neg. LLF: 110.1360671004135
Iteration: 11, Func. Count: 144, Neg. LLF: 109.81741340211339
Iteration: 12, Func. Count: 157, Neg. LLF: 109.728346354561
Iteration: 13, Func. Count: 169, Neg. LLF: 109.70022639241968
Iteration: 14, Func. Count: 181, Neg. LLF: 109.67781564435802
Iteration: 15, Func. Count: 193, Neg. LLF: 109.6576122706517
Iteration: 16, Func. Count: 205, Neg. LLF: 110.33444117005224
Iteration: 17, Func. Count: 218, Neg. LLF: 110.0502705330661
Iteration: 18, Func. Count: 231, Neg. LLF: 109.82931876942001
Iteration: 19, Func. Count: 244, Neg. LLF: 118.93763277878101
Iteration: 20, Func. Count: 258, Neg. LLF: 109.59677679657304
Iteration: 21, Func. Count: 271, Neg. LLF: 109.24970405533769
Iteration: 22, Func. Count: 283, Neg. LLF: 117.97485599523186
Iteration: 23, Func. Count: 296, Neg. LLF: 109.62040478496763
Iteration: 24, Func. Count: 309, Neg. LLF: 109.29172111011285
Iteration: 25, Func. Count: 322, Neg. LLF: 109.20506403859584
Iteration: 26, Func. Count: 335, Neg. LLF: 109.19123592914737
Iteration: 27, Func. Count: 347, Neg. LLF: 109.1912309883907
Iteration: 28, Func. Count: 358, Neg. LLF: 109.19123087278322
Optimization terminated successfully (Exit mode 0)
Current function value: 109.1912309883907
Iterations: 29
Function evaluations: 358
Gradient evaluations: 28
Iteration: 1, Func. Count: 14, Neg. LLF: 117.19709714622594
Iteration: 2, Func. Count: 28, Neg. LLF: 111.85718403249844
Iteration: 3, Func. Count: 42, Neg. LLF: 111.9274138994463
Iteration: 4, Func. Count: 56, Neg. LLF: 158.63651504683787
Iteration: 5, Func. Count: 70, Neg. LLF: 113.36731845833312
Iteration: 6, Func. Count: 84, Neg. LLF: 117.18469338130151
Iteration: 7, Func. Count: 98, Neg. LLF: 110.75969210933815
Iteration: 8, Func. Count: 112, Neg. LLF: 109.90927532443682
Iteration: 9, Func. Count: 125, Neg. LLF: 110.04161895896061
Iteration: 10, Func. Count: 139, Neg. LLF: 110.87002854429967
Iteration: 11, Func. Count: 153, Neg. LLF: 109.71920300228243
Iteration: 12, Func. Count: 166, Neg. LLF: 109.70134390990714
Iteration: 13, Func. Count: 179, Neg. LLF: 109.680797060306
Iteration: 14, Func. Count: 192, Neg. LLF: 109.64949610686203
Iteration: 15, Func. Count: 205, Neg. LLF: 110.0145684628531
Iteration: 16, Func. Count: 219, Neg. LLF: 109.82411879381031
Iteration: 17, Func. Count: 233, Neg. LLF: 109.62203698883654
Iteration: 18, Func. Count: 247, Neg. LLF: 115.37223938758164
Iteration: 19, Func. Count: 262, Neg. LLF: 109.36332356846943
Iteration: 20, Func. Count: 275, Neg. LLF: 110.5324688504072
Iteration: 21, Func. Count: 290, Neg. LLF: 134.19339800260482
Iteration: 22, Func. Count: 305, Neg. LLF: 109.23633953683513
Iteration: 23, Func. Count: 318, Neg. LLF: 109.21784735451173
Iteration: 24, Func. Count: 331, Neg. LLF: 109.19828077069448
Iteration: 25, Func. Count: 344, Neg. LLF: 109.19163372941952
Iteration: 26, Func. Count: 357, Neg. LLF: 109.19132755430704
Iteration: 27, Func. Count: 370, Neg. LLF: 109.19123813784012
Iteration: 28, Func. Count: 383, Neg. LLF: 109.19123245816934
Iteration: 29, Func. Count: 396, Neg. LLF: 109.19123123753187
Iteration: 30, Func. Count: 408, Neg. LLF: 109.19123120288171
Optimization terminated successfully (Exit mode 0)
Current function value: 109.19123123753187
Iterations: 30
Function evaluations: 408
Gradient evaluations: 30
Iteration: 1, Func. Count: 11, Neg. LLF: 114.95229261736675
Iteration: 2, Func. Count: 23, Neg. LLF: 118.23186892429318
Iteration: 3, Func. Count: 35, Neg. LLF: 113.92650290182907
Iteration: 4, Func. Count: 47, Neg. LLF: 112.59056466178498
Iteration: 5, Func. Count: 58, Neg. LLF: 163.9814123118968
Iteration: 6, Func. Count: 69, Neg. LLF: 110.07408210016222
Iteration: 7, Func. Count: 79, Neg. LLF: 109.97660605444047
Iteration: 8, Func. Count: 89, Neg. LLF: 110.43426846050455
Iteration: 9, Func. Count: 101, Neg. LLF: 109.96387236581441
Iteration: 10, Func. Count: 111, Neg. LLF: 109.95671511581422
Iteration: 11, Func. Count: 121, Neg. LLF: 109.94817509190926
Iteration: 12, Func. Count: 131, Neg. LLF: 109.94403799391839
Iteration: 13, Func. Count: 141, Neg. LLF: 109.94343831921385
Iteration: 14, Func. Count: 151, Neg. LLF: 109.94320609355717
Iteration: 15, Func. Count: 161, Neg. LLF: 109.94319956736565
Iteration: 16, Func. Count: 171, Neg. LLF: 109.94319886439182
Optimization terminated successfully (Exit mode 0)
Current function value: 109.94319886439182
Iterations: 16
Function evaluations: 171
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 121.29113491942229
Iteration: 2, Func. Count: 24, Neg. LLF: 113.83724906943377
Iteration: 3, Func. Count: 36, Neg. LLF: 114.39133307068168
Iteration: 4, Func. Count: 48, Neg. LLF: 115.87265471989113
Iteration: 5, Func. Count: 60, Neg. LLF: 110.36618319128416
Iteration: 6, Func. Count: 72, Neg. LLF: 109.96562013316462
Iteration: 7, Func. Count: 83, Neg. LLF: 111.68521098172168
Iteration: 8, Func. Count: 96, Neg. LLF: 110.10351474674238
Iteration: 9, Func. Count: 108, Neg. LLF: 109.95489820981528
Iteration: 10, Func. Count: 120, Neg. LLF: 109.94346271846561
Iteration: 11, Func. Count: 131, Neg. LLF: 109.94320183314947
Iteration: 12, Func. Count: 142, Neg. LLF: 109.94319992006542
Iteration: 13, Func. Count: 153, Neg. LLF: 109.94319902607133
Optimization terminated successfully (Exit mode 0)
Current function value: 109.94319902607133
Iterations: 13
Function evaluations: 153
Gradient evaluations: 13
Iteration: 1, Func. Count: 13, Neg. LLF: 120.490757268184
Iteration: 2, Func. Count: 26, Neg. LLF: 113.52411536557406
Iteration: 3, Func. Count: 39, Neg. LLF: 110.95178328524833
Iteration: 4, Func. Count: 52, Neg. LLF: 119.58423169378297
Iteration: 5, Func. Count: 65, Neg. LLF: 110.283817110693
Iteration: 6, Func. Count: 77, Neg. LLF: 110.25499229220281
Iteration: 7, Func. Count: 90, Neg. LLF: 111.118652102091
Iteration: 8, Func. Count: 103, Neg. LLF: 110.19000309378762
Iteration: 9, Func. Count: 116, Neg. LLF: 109.99623023343837
Iteration: 10, Func. Count: 129, Neg. LLF: 109.81379696756085
Iteration: 11, Func. Count: 141, Neg. LLF: 109.77632396906719
Iteration: 12, Func. Count: 153, Neg. LLF: 109.76423281132908
Iteration: 13, Func. Count: 165, Neg. LLF: 109.76358845881163
Iteration: 14, Func. Count: 177, Neg. LLF: 109.76354293483078
Iteration: 15, Func. Count: 189, Neg. LLF: 109.76353655619518
Iteration: 16, Func. Count: 201, Neg. LLF: 109.76353530062045
Iteration: 17, Func. Count: 212, Neg. LLF: 109.76353530050594
Optimization terminated successfully (Exit mode 0)
Current function value: 109.76353530062045
Iterations: 17
Function evaluations: 212
Gradient evaluations: 17
Iteration: 1, Func. Count: 14, Neg. LLF: 120.72548699296577
Iteration: 2, Func. Count: 28, Neg. LLF: 111.99157474140179
Iteration: 3, Func. Count: 42, Neg. LLF: 112.27055404426852
Iteration: 4, Func. Count: 56, Neg. LLF: 122.88956590679251
Iteration: 5, Func. Count: 70, Neg. LLF: 109.9802262705431
Iteration: 6, Func. Count: 83, Neg. LLF: 116.13132572176329
Iteration: 7, Func. Count: 97, Neg. LLF: 110.26342792466754
Iteration: 8, Func. Count: 111, Neg. LLF: 111.48648577458725
Iteration: 9, Func. Count: 126, Neg. LLF: 109.76486209396721
Iteration: 10, Func. Count: 139, Neg. LLF: 109.39853932401223
Iteration: 11, Func. Count: 152, Neg. LLF: 109.76537029956964
Iteration: 12, Func. Count: 166, Neg. LLF: 109.27775944742989
Iteration: 13, Func. Count: 179, Neg. LLF: 109.17608145806255
Iteration: 14, Func. Count: 192, Neg. LLF: 109.1555329236981
Iteration: 15, Func. Count: 205, Neg. LLF: 109.1281934327118
Iteration: 16, Func. Count: 218, Neg. LLF: 109.12650095102123
Iteration: 17, Func. Count: 231, Neg. LLF: 109.1260452506512
Iteration: 18, Func. Count: 244, Neg. LLF: 109.12594598749621
Iteration: 19, Func. Count: 257, Neg. LLF: 109.12594376272743
Iteration: 20, Func. Count: 270, Neg. LLF: 109.12594292672296
Optimization terminated successfully (Exit mode 0)
Current function value: 109.12594292672296
Iterations: 20
Function evaluations: 270
Gradient evaluations: 20
Iteration: 1, Func. Count: 15, Neg. LLF: 120.64215253819266
Iteration: 2, Func. Count: 30, Neg. LLF: 112.22591218959415
Iteration: 3, Func. Count: 45, Neg. LLF: 112.4669877044596
Iteration: 4, Func. Count: 60, Neg. LLF: 121.8190831512339
Iteration: 5, Func. Count: 75, Neg. LLF: 113.3166827337057
Iteration: 6, Func. Count: 90, Neg. LLF: 126.23045863366858
Iteration: 7, Func. Count: 105, Neg. LLF: 109.5479712081503
Iteration: 8, Func. Count: 119, Neg. LLF: 109.19752570629699
Iteration: 9, Func. Count: 133, Neg. LLF: 109.40459169900559
Iteration: 10, Func. Count: 148, Neg. LLF: 109.04408803092855
Iteration: 11, Func. Count: 162, Neg. LLF: 109.0102737307209
Iteration: 12, Func. Count: 176, Neg. LLF: 109.00543101020072
Iteration: 13, Func. Count: 190, Neg. LLF: 109.00312019161206
Iteration: 14, Func. Count: 204, Neg. LLF: 109.00242975055063
Iteration: 15, Func. Count: 218, Neg. LLF: 109.0023490723396
Iteration: 16, Func. Count: 232, Neg. LLF: 109.00234096475455
Iteration: 17, Func. Count: 246, Neg. LLF: 109.00234012512462
Optimization terminated successfully (Exit mode 0)
Current function value: 109.00234047235612
Iterations: 17
Function evaluations: 247
Gradient evaluations: 17
Iteration: 1, Func. Count: 8, Neg. LLF: 118.17042429526778
Iteration: 2, Func. Count: 17, Neg. LLF: 121.029352809148
Iteration: 3, Func. Count: 25, Neg. LLF: 113.52067681004736
Iteration: 4, Func. Count: 33, Neg. LLF: 111.4157664982551
Iteration: 5, Func. Count: 40, Neg. LLF: 111.27701458001378
Iteration: 6, Func. Count: 47, Neg. LLF: 111.2660149267383
Iteration: 7, Func. Count: 54, Neg. LLF: 111.26078710910942
Iteration: 8, Func. Count: 61, Neg. LLF: 111.26042737453956
Iteration: 9, Func. Count: 68, Neg. LLF: 111.26042633327785
Iteration: 10, Func. Count: 74, Neg. LLF: 111.26042641195761
Optimization terminated successfully (Exit mode 0)
Current function value: 111.26042633327785
Iterations: 10
Function evaluations: 74
Gradient evaluations: 10
Iteration: 1, Func. Count: 9, Neg. LLF: 115.85603519683004
Iteration: 2, Func. Count: 18, Neg. LLF: 114.6872659680905
Iteration: 3, Func. Count: 27, Neg. LLF: 116.8951070974901
Iteration: 4, Func. Count: 36, Neg. LLF: 113.91200297968565
Iteration: 5, Func. Count: 45, Neg. LLF: 111.49008776378989
Iteration: 6, Func. Count: 53, Neg. LLF: 111.28666725078766
Iteration: 7, Func. Count: 61, Neg. LLF: 111.26083086660923
Iteration: 8, Func. Count: 69, Neg. LLF: 111.26045118308836
Iteration: 9, Func. Count: 77, Neg. LLF: 111.26042707043023
Iteration: 10, Func. Count: 85, Neg. LLF: 111.26042636761372
Optimization terminated successfully (Exit mode 0)
Current function value: 111.26042636761372
Iterations: 10
Function evaluations: 85
Gradient evaluations: 10
Iteration: 1, Func. Count: 10, Neg. LLF: 115.92386400180057
Iteration: 2, Func. Count: 20, Neg. LLF: 114.71925622786704
Iteration: 3, Func. Count: 30, Neg. LLF: 121.40787441606477
Iteration: 4, Func. Count: 40, Neg. LLF: 117.97251116701
Iteration: 5, Func. Count: 50, Neg. LLF: 111.50905954795962
Iteration: 6, Func. Count: 59, Neg. LLF: 111.33996127250666
Iteration: 7, Func. Count: 68, Neg. LLF: 111.31730576909658
Iteration: 8, Func. Count: 77, Neg. LLF: 111.27475073461468
Iteration: 9, Func. Count: 86, Neg. LLF: 111.26201298244
Iteration: 10, Func. Count: 95, Neg. LLF: 111.26053588361721
Iteration: 11, Func. Count: 104, Neg. LLF: 111.26043298817133
Iteration: 12, Func. Count: 113, Neg. LLF: 111.26042671064694
Iteration: 13, Func. Count: 121, Neg. LLF: 111.26042671398491
Optimization terminated successfully (Exit mode 0)
Current function value: 111.26042671064694
Iterations: 13
Function evaluations: 121
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 115.85591739037147
Iteration: 2, Func. Count: 22, Neg. LLF: 114.63833963535619
Iteration: 3, Func. Count: 33, Neg. LLF: 121.97492889655003
Iteration: 4, Func. Count: 44, Neg. LLF: 115.57378931095974
Iteration: 5, Func. Count: 55, Neg. LLF: 112.00559708466342
Iteration: 6, Func. Count: 66, Neg. LLF: 111.33525156907496
Iteration: 7, Func. Count: 76, Neg. LLF: 111.29236056064693
Iteration: 8, Func. Count: 86, Neg. LLF: 111.27283180424932
Iteration: 9, Func. Count: 96, Neg. LLF: 111.26062798082576
Iteration: 10, Func. Count: 106, Neg. LLF: 111.26043905066825
Iteration: 11, Func. Count: 116, Neg. LLF: 111.26042639263802
Iteration: 12, Func. Count: 125, Neg. LLF: 111.26042640969365
Optimization terminated successfully (Exit mode 0)
Current function value: 111.26042639263802
Iterations: 12
Function evaluations: 125
Gradient evaluations: 12
Iteration: 1, Func. Count: 12, Neg. LLF: 115.71553280803958
Iteration: 2, Func. Count: 24, Neg. LLF: 114.6434419279594
Iteration: 3, Func. Count: 36, Neg. LLF: 123.45343499002676
Iteration: 4, Func. Count: 48, Neg. LLF: 111.97777083353499
Iteration: 5, Func. Count: 60, Neg. LLF: 113.03184306358158
Iteration: 6, Func. Count: 72, Neg. LLF: 111.30965624745716
Iteration: 7, Func. Count: 83, Neg. LLF: 111.68344180457204
Iteration: 8, Func. Count: 95, Neg. LLF: 111.2671392745995
Iteration: 9, Func. Count: 106, Neg. LLF: 111.26160277857929
Iteration: 10, Func. Count: 117, Neg. LLF: 111.2604406133715
Iteration: 11, Func. Count: 128, Neg. LLF: 111.26042726001329
Iteration: 12, Func. Count: 139, Neg. LLF: 111.260426334794
Optimization terminated successfully (Exit mode 0)
Current function value: 111.260426334794
Iterations: 12
Function evaluations: 139
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 123.1141058668113
Iteration: 2, Func. Count: 19, Neg. LLF: 115.0294597204082
Iteration: 3, Func. Count: 28, Neg. LLF: 118.63734960135305
Iteration: 4, Func. Count: 37, Neg. LLF: 128.0000338648767
Iteration: 5, Func. Count: 46, Neg. LLF: 110.46551326753293
Iteration: 6, Func. Count: 55, Neg. LLF: 110.06459553927297
Iteration: 7, Func. Count: 63, Neg. LLF: 116.73955144420549
Iteration: 8, Func. Count: 72, Neg. LLF: 110.0443587738824
Iteration: 9, Func. Count: 80, Neg. LLF: 110.04315666564055
Iteration: 10, Func. Count: 88, Neg. LLF: 110.0431295283053
Iteration: 11, Func. Count: 96, Neg. LLF: 110.04311863582252
Iteration: 12, Func. Count: 104, Neg. LLF: 110.04311759013868
Iteration: 13, Func. Count: 111, Neg. LLF: 110.04311759015151
Optimization terminated successfully (Exit mode 0)
Current function value: 110.04311759013868
Iterations: 13
Function evaluations: 111
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 125.76430396620532
Iteration: 2, Func. Count: 20, Neg. LLF: 111.07649704886916
Iteration: 3, Func. Count: 29, Neg. LLF: 112.01024825213872
Iteration: 4, Func. Count: 39, Neg. LLF: 115.52115249849767
Iteration: 5, Func. Count: 49, Neg. LLF: 117.43581587400891
Iteration: 6, Func. Count: 59, Neg. LLF: 113.22509233646737
Iteration: 7, Func. Count: 69, Neg. LLF: 110.23675556182108
Iteration: 8, Func. Count: 78, Neg. LLF: 110.07371222274443
Iteration: 9, Func. Count: 87, Neg. LLF: 110.04953301298687
Iteration: 10, Func. Count: 96, Neg. LLF: 110.04520779047134
Iteration: 11, Func. Count: 105, Neg. LLF: 110.0431370665054
Iteration: 12, Func. Count: 114, Neg. LLF: 110.04311857250279
Iteration: 13, Func. Count: 123, Neg. LLF: 110.0431172209395
Iteration: 14, Func. Count: 131, Neg. LLF: 110.04311725507539
Optimization terminated successfully (Exit mode 0)
Current function value: 110.0431172209395
Iterations: 14
Function evaluations: 131
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 145.25138386957596
Iteration: 2, Func. Count: 22, Neg. LLF: 118.4260024681824
Iteration: 3, Func. Count: 34, Neg. LLF: 127.7136143526077
Iteration: 4, Func. Count: 45, Neg. LLF: 110.90311141320525
Iteration: 5, Func. Count: 55, Neg. LLF: 110.87595871632855
Iteration: 6, Func. Count: 66, Neg. LLF: 110.68904664522444
Iteration: 7, Func. Count: 76, Neg. LLF: 110.5407675416723
Iteration: 8, Func. Count: 86, Neg. LLF: 110.52002417171632
Iteration: 9, Func. Count: 96, Neg. LLF: 110.50953578262542
Iteration: 10, Func. Count: 106, Neg. LLF: 111.4705141015487
Iteration: 11, Func. Count: 117, Neg. LLF: 111.486957659186
Iteration: 12, Func. Count: 128, Neg. LLF: 111.49417282458874
Iteration: 13, Func. Count: 139, Neg. LLF: 111.19449823322442
Iteration: 14, Func. Count: 150, Neg. LLF: 110.95150703185294
Iteration: 15, Func. Count: 161, Neg. LLF: 110.88593134897005
Iteration: 16, Func. Count: 172, Neg. LLF: 110.04420941352298
Iteration: 17, Func. Count: 183, Neg. LLF: 109.85354039627427
Iteration: 18, Func. Count: 193, Neg. LLF: 109.78734137392237
Iteration: 19, Func. Count: 203, Neg. LLF: 109.76012168727179
Iteration: 20, Func. Count: 213, Neg. LLF: 109.75632533518319
Iteration: 21, Func. Count: 223, Neg. LLF: 109.75415102419895
Iteration: 22, Func. Count: 233, Neg. LLF: 109.75124850449716
Iteration: 23, Func. Count: 243, Neg. LLF: 109.7467120966785
Iteration: 24, Func. Count: 253, Neg. LLF: 109.74021271676241
Iteration: 25, Func. Count: 263, Neg. LLF: 109.7311414582868
Iteration: 26, Func. Count: 273, Neg. LLF: 109.72152026502856
Iteration: 27, Func. Count: 283, Neg. LLF: 109.71530876707192
Iteration: 28, Func. Count: 293, Neg. LLF: 109.71338365405381
Iteration: 29, Func. Count: 303, Neg. LLF: 109.71314710855935
Iteration: 30, Func. Count: 313, Neg. LLF: 109.71307915759809
Iteration: 31, Func. Count: 323, Neg. LLF: 109.71307852059823
Optimization terminated successfully (Exit mode 0)
Current function value: 109.71307852059823
Iterations: 31
Function evaluations: 323
Gradient evaluations: 31
Iteration: 1, Func. Count: 12, Neg. LLF: 15942494.015673753
Iteration: 2, Func. Count: 24, Neg. LLF: 123.73285449268853
Iteration: 3, Func. Count: 36, Neg. LLF: 111.95280852352003
Iteration: 4, Func. Count: 48, Neg. LLF: 110.26011865320075
Iteration: 5, Func. Count: 59, Neg. LLF: 109.58566303655806
Iteration: 6, Func. Count: 70, Neg. LLF: 109.68964211790947
Iteration: 7, Func. Count: 82, Neg. LLF: 109.55292318181182
Iteration: 8, Func. Count: 94, Neg. LLF: 109.45328339434931
Iteration: 9, Func. Count: 105, Neg. LLF: 109.4822875713673
Iteration: 10, Func. Count: 117, Neg. LLF: 109.4252412381552
Iteration: 11, Func. Count: 128, Neg. LLF: 109.42222133040565
Iteration: 12, Func. Count: 139, Neg. LLF: 109.42175195825803
Iteration: 13, Func. Count: 150, Neg. LLF: 109.42163637982723
Iteration: 14, Func. Count: 161, Neg. LLF: 109.42158834501333
Iteration: 15, Func. Count: 172, Neg. LLF: 109.42156519005717
Iteration: 16, Func. Count: 182, Neg. LLF: 109.42156505587248
Optimization terminated successfully (Exit mode 0)
Current function value: 109.42156519005717
Iterations: 16
Function evaluations: 182
Gradient evaluations: 16
Iteration: 1, Func. Count: 13, Neg. LLF: 15837609.56635833
Iteration: 2, Func. Count: 27, Neg. LLF: 155.0520656784626
Iteration: 3, Func. Count: 40, Neg. LLF: 111.8275059275066
Iteration: 4, Func. Count: 53, Neg. LLF: 109.99983273644756
Iteration: 5, Func. Count: 65, Neg. LLF: 111.84469540405459
Iteration: 6, Func. Count: 78, Neg. LLF: 109.62098527152334
Iteration: 7, Func. Count: 90, Neg. LLF: 109.54163682945713
Iteration: 8, Func. Count: 102, Neg. LLF: 109.43583062614798
Iteration: 9, Func. Count: 114, Neg. LLF: 109.42097464874523
Iteration: 10, Func. Count: 126, Neg. LLF: 109.58378769911839
Iteration: 11, Func. Count: 140, Neg. LLF: 109.53640717945716
Iteration: 12, Func. Count: 154, Neg. LLF: 109.4257314315099
Iteration: 13, Func. Count: 167, Neg. LLF: 109.42552148544692
Iteration: 14, Func. Count: 180, Neg. LLF: 109.42156499754788
Iteration: 15, Func. Count: 191, Neg. LLF: 109.42156496234362
Optimization terminated successfully (Exit mode 0)
Current function value: 109.42156499754788
Iterations: 16
Function evaluations: 191
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 114.79302269847929
Iteration: 2, Func. Count: 20, Neg. LLF: 125.11068723601004
Iteration: 3, Func. Count: 30, Neg. LLF: 114.32913708233444
Iteration: 4, Func. Count: 40, Neg. LLF: 646.6479542907435
Iteration: 5, Func. Count: 50, Neg. LLF: 110.21814424202839
Iteration: 6, Func. Count: 59, Neg. LLF: 113.79420262696236
Iteration: 7, Func. Count: 69, Neg. LLF: 111.96055342219502
Iteration: 8, Func. Count: 80, Neg. LLF: 110.0441106065235
Iteration: 9, Func. Count: 89, Neg. LLF: 110.0432445742573
Iteration: 10, Func. Count: 98, Neg. LLF: 110.04316167362212
Iteration: 11, Func. Count: 107, Neg. LLF: 110.04313022295669
Iteration: 12, Func. Count: 116, Neg. LLF: 110.0431190432141
Iteration: 13, Func. Count: 125, Neg. LLF: 110.04311754328656
Iteration: 14, Func. Count: 133, Neg. LLF: 110.04311760318541
Optimization terminated successfully (Exit mode 0)
Current function value: 110.04311754328656
Iterations: 14
Function evaluations: 133
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 116.10801643516653
Iteration: 2, Func. Count: 22, Neg. LLF: 112.20067538837029
Iteration: 3, Func. Count: 33, Neg. LLF: 115.57186059338237
Iteration: 4, Func. Count: 44, Neg. LLF: 113.37802690391814
Iteration: 5, Func. Count: 55, Neg. LLF: 110.18815122804745
Iteration: 6, Func. Count: 65, Neg. LLF: 146.77180713924463
Iteration: 7, Func. Count: 76, Neg. LLF: 110.50245037371629
Iteration: 8, Func. Count: 87, Neg. LLF: 110.04679865168922
Iteration: 9, Func. Count: 97, Neg. LLF: 110.04402089821396
Iteration: 10, Func. Count: 107, Neg. LLF: 110.04329437834258
Iteration: 11, Func. Count: 117, Neg. LLF: 110.04312072114986
Iteration: 12, Func. Count: 127, Neg. LLF: 110.04311754444167
Iteration: 13, Func. Count: 136, Neg. LLF: 110.0431175785922
Optimization terminated successfully (Exit mode 0)
Current function value: 110.04311754444167
Iterations: 13
Function evaluations: 136
Gradient evaluations: 13
Iteration: 1, Func. Count: 12, Neg. LLF: 116.47082685547207
Iteration: 2, Func. Count: 24, Neg. LLF: 111.78484152271027
Iteration: 3, Func. Count: 36, Neg. LLF: 115.96427284270996
Iteration: 4, Func. Count: 48, Neg. LLF: 114.88155321049123
Iteration: 5, Func. Count: 60, Neg. LLF: 668.8502586389758
Iteration: 6, Func. Count: 72, Neg. LLF: 110.00722231118448
Iteration: 7, Func. Count: 83, Neg. LLF: 115.93206040857287
Iteration: 8, Func. Count: 95, Neg. LLF: 111.46742758018796
Iteration: 9, Func. Count: 107, Neg. LLF: 109.78060219380707
Iteration: 10, Func. Count: 118, Neg. LLF: 109.72789259970853
Iteration: 11, Func. Count: 129, Neg. LLF: 109.71553846728222
Iteration: 12, Func. Count: 140, Neg. LLF: 109.71336899343235
Iteration: 13, Func. Count: 151, Neg. LLF: 109.7131336015424
Iteration: 14, Func. Count: 162, Neg. LLF: 109.71308941436706
Iteration: 15, Func. Count: 173, Neg. LLF: 109.71307902567632
Iteration: 16, Func. Count: 183, Neg. LLF: 109.71307901848746
Optimization terminated successfully (Exit mode 0)
Current function value: 109.71307902567632
Iterations: 16
Function evaluations: 183
Gradient evaluations: 16
Iteration: 1, Func. Count: 13, Neg. LLF: 127.77688830757029
Iteration: 2, Func. Count: 26, Neg. LLF: 303.84082760926304
Iteration: 3, Func. Count: 40, Neg. LLF: 116.95048397408355
Iteration: 4, Func. Count: 53, Neg. LLF: 110.12747645637049
Iteration: 5, Func. Count: 65, Neg. LLF: 110.09580520993762
Iteration: 6, Func. Count: 78, Neg. LLF: 109.90244514162413
Iteration: 7, Func. Count: 90, Neg. LLF: 109.57859914185244
Iteration: 8, Func. Count: 102, Neg. LLF: 109.45403179745044
Iteration: 9, Func. Count: 114, Neg. LLF: 109.42629661493328
Iteration: 10, Func. Count: 126, Neg. LLF: 109.42183829407657
Iteration: 11, Func. Count: 138, Neg. LLF: 109.4216070592957
Iteration: 12, Func. Count: 150, Neg. LLF: 109.42157953669263
Iteration: 13, Func. Count: 162, Neg. LLF: 109.42156568869254
Iteration: 14, Func. Count: 173, Neg. LLF: 109.42156555439176
Optimization terminated successfully (Exit mode 0)
Current function value: 109.42156568869254
Iterations: 14
Function evaluations: 173
Gradient evaluations: 14
Iteration: 1, Func. Count: 14, Neg. LLF: 115.8424330400302
Iteration: 2, Func. Count: 28, Neg. LLF: 112.45300297538192
Iteration: 3, Func. Count: 42, Neg. LLF: 116.98539765185178
Iteration: 4, Func. Count: 56, Neg. LLF: 118.14663538324267
Iteration: 5, Func. Count: 70, Neg. LLF: 509307.3127088821
Iteration: 6, Func. Count: 84, Neg. LLF: 118.04924867856225
Iteration: 7, Func. Count: 98, Neg. LLF: 110.1448140071566
Iteration: 8, Func. Count: 112, Neg. LLF: 109.84231206599547
Iteration: 9, Func. Count: 125, Neg. LLF: 109.88875466063753
Iteration: 10, Func. Count: 139, Neg. LLF: 109.89922471049628
Iteration: 11, Func. Count: 153, Neg. LLF: 109.77368285405643
Iteration: 12, Func. Count: 166, Neg. LLF: 109.74223855237632
Iteration: 13, Func. Count: 179, Neg. LLF: 109.72642461795384
Iteration: 14, Func. Count: 192, Neg. LLF: 109.7105839327052
Iteration: 15, Func. Count: 205, Neg. LLF: 109.59461949496465
Iteration: 16, Func. Count: 218, Neg. LLF: 109.76881499466846
Iteration: 17, Func. Count: 232, Neg. LLF: 110.3050747657686
Iteration: 18, Func. Count: 246, Neg. LLF: 109.43058213718322
Iteration: 19, Func. Count: 259, Neg. LLF: 109.42266608661322
Iteration: 20, Func. Count: 272, Neg. LLF: 109.42172503060148
Iteration: 21, Func. Count: 285, Neg. LLF: 109.42158788158655
Iteration: 22, Func. Count: 298, Neg. LLF: 109.42150374767802
Iteration: 23, Func. Count: 312, Neg. LLF: 109.43345792797626
Iteration: 24, Func. Count: 327, Neg. LLF: 109.42255533160105
Iteration: 25, Func. Count: 342, Neg. LLF: 109.4215758043748
Iteration: 26, Func. Count: 356, Neg. LLF: 109.42158439456472
Iteration: 27, Func. Count: 370, Neg. LLF: 109.42156588354561
Iteration: 28, Func. Count: 383, Neg. LLF: 109.42156499725972
Optimization terminated successfully (Exit mode 0)
Current function value: 109.42156499725972
Iterations: 29
Function evaluations: 383
Gradient evaluations: 28
Iteration: 1, Func. Count: 11, Neg. LLF: 115.41637325628044
Iteration: 2, Func. Count: 23, Neg. LLF: 118.89440808050051
Iteration: 3, Func. Count: 35, Neg. LLF: 116.37720075469952
Iteration: 4, Func. Count: 46, Neg. LLF: 115.2205459760998
Iteration: 5, Func. Count: 57, Neg. LLF: 115.28504505798661
Iteration: 6, Func. Count: 68, Neg. LLF: 110.24337186341974
Iteration: 7, Func. Count: 78, Neg. LLF: 137.98704699574918
Iteration: 8, Func. Count: 90, Neg. LLF: 111.67734378054902
Iteration: 9, Func. Count: 101, Neg. LLF: 109.98519886922743
Iteration: 10, Func. Count: 111, Neg. LLF: 109.9621603815825
Iteration: 11, Func. Count: 121, Neg. LLF: 109.95123465681132
Iteration: 12, Func. Count: 131, Neg. LLF: 109.91521761283308
Iteration: 13, Func. Count: 141, Neg. LLF: 109.87221078338344
Iteration: 14, Func. Count: 151, Neg. LLF: 109.86756562006862
Iteration: 15, Func. Count: 161, Neg. LLF: 109.86087950914329
Iteration: 16, Func. Count: 171, Neg. LLF: 109.86031402249688
Iteration: 17, Func. Count: 181, Neg. LLF: 109.85996159034914
Iteration: 18, Func. Count: 191, Neg. LLF: 109.85993420193385
Iteration: 19, Func. Count: 201, Neg. LLF: 109.85992472709553
Iteration: 20, Func. Count: 210, Neg. LLF: 109.85992472262932
Optimization terminated successfully (Exit mode 0)
Current function value: 109.85992472709553
Iterations: 20
Function evaluations: 210
Gradient evaluations: 20
Iteration: 1, Func. Count: 12, Neg. LLF: 116.12650626055972
Iteration: 2, Func. Count: 24, Neg. LLF: 118.87185754052591
Iteration: 3, Func. Count: 36, Neg. LLF: 110.72653434413833
Iteration: 4, Func. Count: 47, Neg. LLF: 204.63937322945284
Iteration: 5, Func. Count: 59, Neg. LLF: 115.0753526319224
Iteration: 6, Func. Count: 72, Neg. LLF: 110.65258774406975
Iteration: 7, Func. Count: 84, Neg. LLF: 110.43865348512821
Iteration: 8, Func. Count: 96, Neg. LLF: 109.96760894090157
Iteration: 9, Func. Count: 107, Neg. LLF: 109.93713011394439
Iteration: 10, Func. Count: 118, Neg. LLF: 109.91611983162008
Iteration: 11, Func. Count: 129, Neg. LLF: 109.8786833966798
Iteration: 12, Func. Count: 140, Neg. LLF: 109.87177324646613
Iteration: 13, Func. Count: 151, Neg. LLF: 109.86017820222338
Iteration: 14, Func. Count: 162, Neg. LLF: 109.86000696156657
Iteration: 15, Func. Count: 173, Neg. LLF: 109.85993486631901
Iteration: 16, Func. Count: 184, Neg. LLF: 109.85992578259943
Iteration: 17, Func. Count: 195, Neg. LLF: 109.85992427884362
Iteration: 18, Func. Count: 205, Neg. LLF: 109.85992431482681
Optimization terminated successfully (Exit mode 0)
Current function value: 109.85992427884362
Iterations: 18
Function evaluations: 205
Gradient evaluations: 18
Iteration: 1, Func. Count: 13, Neg. LLF: 121.5435260748865
Iteration: 2, Func. Count: 26, Neg. LLF: 116.26888326580669
Iteration: 3, Func. Count: 40, Neg. LLF: 111.52268421519831
Iteration: 4, Func. Count: 53, Neg. LLF: 114.07458021676904
Iteration: 5, Func. Count: 66, Neg. LLF: 120.60255266607106
Iteration: 6, Func. Count: 79, Neg. LLF: 113.74357001113701
Iteration: 7, Func. Count: 92, Neg. LLF: 113.52489977609667
Iteration: 8, Func. Count: 105, Neg. LLF: 109.92558522770646
Iteration: 9, Func. Count: 117, Neg. LLF: 111.02682328189942
Iteration: 10, Func. Count: 130, Neg. LLF: 109.95212660381974
Iteration: 11, Func. Count: 143, Neg. LLF: 109.69423985169692
Iteration: 12, Func. Count: 155, Neg. LLF: 109.67686101911785
Iteration: 13, Func. Count: 167, Neg. LLF: 109.67526789958833
Iteration: 14, Func. Count: 179, Neg. LLF: 109.67476120177608
Iteration: 15, Func. Count: 191, Neg. LLF: 109.67467065551294
Iteration: 16, Func. Count: 203, Neg. LLF: 109.67463558556268
Iteration: 17, Func. Count: 215, Neg. LLF: 109.67463342816922
Iteration: 18, Func. Count: 226, Neg. LLF: 109.67463341746016
Optimization terminated successfully (Exit mode 0)
Current function value: 109.67463342816922
Iterations: 18
Function evaluations: 226
Gradient evaluations: 18
Iteration: 1, Func. Count: 14, Neg. LLF: 121.34678259607949
Iteration: 2, Func. Count: 28, Neg. LLF: 112.13894482644048
Iteration: 3, Func. Count: 42, Neg. LLF: 113.40516957870074
Iteration: 4, Func. Count: 56, Neg. LLF: 135.54701268021364
Iteration: 5, Func. Count: 70, Neg. LLF: 162.5876409310626
Iteration: 6, Func. Count: 84, Neg. LLF: 132.13142612942767
Iteration: 7, Func. Count: 98, Neg. LLF: 110.01213978622349
Iteration: 8, Func. Count: 111, Neg. LLF: 116.43234313314333
Iteration: 9, Func. Count: 125, Neg. LLF: 112.92589759807194
Iteration: 10, Func. Count: 139, Neg. LLF: 109.76472761666821
Iteration: 11, Func. Count: 152, Neg. LLF: 109.71074924488568
Iteration: 12, Func. Count: 165, Neg. LLF: 109.69269852425602
Iteration: 13, Func. Count: 178, Neg. LLF: 109.62943134226923
Iteration: 14, Func. Count: 191, Neg. LLF: 109.60081747262404
Iteration: 15, Func. Count: 204, Neg. LLF: 109.47873750057057
Iteration: 16, Func. Count: 218, Neg. LLF: 109.21043088212576
Iteration: 17, Func. Count: 231, Neg. LLF: 109.19489696518603
Iteration: 18, Func. Count: 244, Neg. LLF: 109.19195610130238
Iteration: 19, Func. Count: 257, Neg. LLF: 109.1914004500168
Iteration: 20, Func. Count: 270, Neg. LLF: 109.19124825367014
Iteration: 21, Func. Count: 283, Neg. LLF: 109.19123217087764
Iteration: 22, Func. Count: 296, Neg. LLF: 109.19123095648415
Iteration: 23, Func. Count: 308, Neg. LLF: 109.19123084086618
Optimization terminated successfully (Exit mode 0)
Current function value: 109.19123095648415
Iterations: 23
Function evaluations: 308
Gradient evaluations: 23
Iteration: 1, Func. Count: 15, Neg. LLF: 121.01544673948358
Iteration: 2, Func. Count: 30, Neg. LLF: 112.541933528336
Iteration: 3, Func. Count: 45, Neg. LLF: 113.36830751511377
Iteration: 4, Func. Count: 60, Neg. LLF: 155.973344732002
Iteration: 5, Func. Count: 75, Neg. LLF: 110.35698026294854
Iteration: 6, Func. Count: 89, Neg. LLF: 201.75316182337227
Iteration: 7, Func. Count: 104, Neg. LLF: 113.84768622208794
Iteration: 8, Func. Count: 120, Neg. LLF: 109.85686590169125
Iteration: 9, Func. Count: 134, Neg. LLF: 110.31085591476747
Iteration: 10, Func. Count: 149, Neg. LLF: 109.7974676391371
Iteration: 11, Func. Count: 164, Neg. LLF: 109.8396614167847
Iteration: 12, Func. Count: 179, Neg. LLF: 109.7147959056855
Iteration: 13, Func. Count: 193, Neg. LLF: 109.70113772174395
Iteration: 14, Func. Count: 207, Neg. LLF: 109.67785448316053
Iteration: 15, Func. Count: 221, Neg. LLF: 109.6452743811552
Iteration: 16, Func. Count: 235, Neg. LLF: 109.74897763350552
Iteration: 17, Func. Count: 250, Neg. LLF: 109.61805648860458
Iteration: 18, Func. Count: 265, Neg. LLF: 109.56739131944344
Iteration: 19, Func. Count: 280, Neg. LLF: 109.53722899607386
Iteration: 20, Func. Count: 295, Neg. LLF: 109.38983515264519
Iteration: 21, Func. Count: 309, Neg. LLF: 109.26853460740872
Iteration: 22, Func. Count: 323, Neg. LLF: 113.83158237227953
Iteration: 23, Func. Count: 339, Neg. LLF: 109.19843892907384
Iteration: 24, Func. Count: 353, Neg. LLF: 109.19184480707936
Iteration: 25, Func. Count: 367, Neg. LLF: 109.19124403358238
Iteration: 26, Func. Count: 381, Neg. LLF: 109.19123179142797
Iteration: 27, Func. Count: 395, Neg. LLF: 109.19175520929477
Optimization terminated successfully (Exit mode 0)
Current function value: 109.19123138212142
Iterations: 28
Function evaluations: 397
Gradient evaluations: 27
Iteration: 1, Func. Count: 12, Neg. LLF: 115.10178215990126
Iteration: 2, Func. Count: 25, Neg. LLF: 116.34944315589847
Iteration: 3, Func. Count: 38, Neg. LLF: 116.29782299393914
Iteration: 4, Func. Count: 50, Neg. LLF: 117.74423720154422
Iteration: 5, Func. Count: 62, Neg. LLF: 158.521059407613
Iteration: 6, Func. Count: 74, Neg. LLF: 110.10785132337502
Iteration: 7, Func. Count: 85, Neg. LLF: 110.71202522136873
Iteration: 8, Func. Count: 98, Neg. LLF: 111.2123014268276
Iteration: 9, Func. Count: 110, Neg. LLF: 109.9498753163386
Iteration: 10, Func. Count: 121, Neg. LLF: 110.01026496323807
Iteration: 11, Func. Count: 133, Neg. LLF: 109.94424884307932
Iteration: 12, Func. Count: 144, Neg. LLF: 109.94344643904496
Iteration: 13, Func. Count: 155, Neg. LLF: 109.94325489815564
Iteration: 14, Func. Count: 166, Neg. LLF: 109.9432027679417
Iteration: 15, Func. Count: 177, Neg. LLF: 109.94319961187372
Iteration: 16, Func. Count: 188, Neg. LLF: 109.94319887978425
Optimization terminated successfully (Exit mode 0)
Current function value: 109.94319887978425
Iterations: 16
Function evaluations: 188
Gradient evaluations: 16
Iteration: 1, Func. Count: 13, Neg. LLF: 117.87414111655055
Iteration: 2, Func. Count: 26, Neg. LLF: 112.76689797398956
Iteration: 3, Func. Count: 39, Neg. LLF: 117.65338230370139
Iteration: 4, Func. Count: 52, Neg. LLF: 113.1433174646016
Iteration: 5, Func. Count: 65, Neg. LLF: 111.74134493820264
Iteration: 6, Func. Count: 78, Neg. LLF: 113.92171513480686
Iteration: 7, Func. Count: 91, Neg. LLF: 110.00935083476118
Iteration: 8, Func. Count: 103, Neg. LLF: 109.9700817537283
Iteration: 9, Func. Count: 115, Neg. LLF: 109.95538316598807
Iteration: 10, Func. Count: 127, Neg. LLF: 109.93913662242207
Iteration: 11, Func. Count: 139, Neg. LLF: 109.93293171433274
Iteration: 12, Func. Count: 151, Neg. LLF: 109.9251298004217
Iteration: 13, Func. Count: 163, Neg. LLF: 109.8978992023884
Iteration: 14, Func. Count: 175, Neg. LLF: 109.883937175976
Iteration: 15, Func. Count: 187, Neg. LLF: 109.87027898900244
Iteration: 16, Func. Count: 199, Neg. LLF: 109.85796751872051
Iteration: 17, Func. Count: 211, Neg. LLF: 109.8540484578684
Iteration: 18, Func. Count: 223, Neg. LLF: 109.85229819335711
Iteration: 19, Func. Count: 235, Neg. LLF: 109.8520872947358
Iteration: 20, Func. Count: 247, Neg. LLF: 109.85204329257633
Iteration: 21, Func. Count: 259, Neg. LLF: 109.85203938070354
Iteration: 22, Func. Count: 270, Neg. LLF: 109.85203941461377
Optimization terminated successfully (Exit mode 0)
Current function value: 109.85203938070354
Iterations: 22
Function evaluations: 270
Gradient evaluations: 22
Iteration: 1, Func. Count: 14, Neg. LLF: 120.75848919545452
Iteration: 2, Func. Count: 28, Neg. LLF: 117.35000049607709
Iteration: 3, Func. Count: 42, Neg. LLF: 121.56904414711848
Iteration: 4, Func. Count: 56, Neg. LLF: 119.9957695996408
Iteration: 5, Func. Count: 70, Neg. LLF: 112.9573692663425
Iteration: 6, Func. Count: 84, Neg. LLF: 110.43384387680065
Iteration: 7, Func. Count: 98, Neg. LLF: 109.89396345544367
Iteration: 8, Func. Count: 111, Neg. LLF: 110.62041102031559
Iteration: 9, Func. Count: 125, Neg. LLF: 109.93086048180668
Iteration: 10, Func. Count: 139, Neg. LLF: 109.84313625705413
Iteration: 11, Func. Count: 153, Neg. LLF: 109.78241465792819
Iteration: 12, Func. Count: 166, Neg. LLF: 109.71656404320348
Iteration: 13, Func. Count: 179, Neg. LLF: 109.69715885796653
Iteration: 14, Func. Count: 192, Neg. LLF: 109.68017703354651
Iteration: 15, Func. Count: 205, Neg. LLF: 109.6727972735402
Iteration: 16, Func. Count: 218, Neg. LLF: 109.67022443392972
Iteration: 17, Func. Count: 231, Neg. LLF: 109.66999785490388
Iteration: 18, Func. Count: 244, Neg. LLF: 109.66993804007377
Iteration: 19, Func. Count: 257, Neg. LLF: 109.66993254533507
Iteration: 20, Func. Count: 269, Neg. LLF: 109.66993253257459
Optimization terminated successfully (Exit mode 0)
Current function value: 109.66993254533507
Iterations: 20
Function evaluations: 269
Gradient evaluations: 20
Iteration: 1, Func. Count: 15, Neg. LLF: 167.7606785642349
Iteration: 2, Func. Count: 30, Neg. LLF: 226.1930246335757
Iteration: 3, Func. Count: 45, Neg. LLF: 116.35145497950639
Iteration: 4, Func. Count: 60, Neg. LLF: 111.06523149504821
Iteration: 5, Func. Count: 75, Neg. LLF: 109.6057896953369
Iteration: 6, Func. Count: 89, Neg. LLF: 112.86000889230444
Iteration: 7, Func. Count: 104, Neg. LLF: 109.26893881945735
Iteration: 8, Func. Count: 118, Neg. LLF: 109.17663594255276
Iteration: 9, Func. Count: 132, Neg. LLF: 109.13886899477245
Iteration: 10, Func. Count: 146, Neg. LLF: 109.13768768978348
Iteration: 11, Func. Count: 161, Neg. LLF: 109.1260631989866
Iteration: 12, Func. Count: 175, Neg. LLF: 109.12596980946394
Iteration: 13, Func. Count: 189, Neg. LLF: 109.12594442119777
Iteration: 14, Func. Count: 203, Neg. LLF: 109.1259432856679
Iteration: 15, Func. Count: 216, Neg. LLF: 109.12594319089132
Optimization terminated successfully (Exit mode 0)
Current function value: 109.1259432856679
Iterations: 15
Function evaluations: 216
Gradient evaluations: 15
Iteration: 1, Func. Count: 16, Neg. LLF: 3015928.6600883254
Iteration: 2, Func. Count: 32, Neg. LLF: 115.62903435677153
Iteration: 3, Func. Count: 48, Neg. LLF: 124.4794114662858
Iteration: 4, Func. Count: 64, Neg. LLF: 112.9603763960167
Iteration: 5, Func. Count: 80, Neg. LLF: 110.61900578768756
Iteration: 6, Func. Count: 96, Neg. LLF: 109.12853650409441
Iteration: 7, Func. Count: 111, Neg. LLF: 109.06683033788877
Iteration: 8, Func. Count: 126, Neg. LLF: 109.03053361214302
Iteration: 9, Func. Count: 141, Neg. LLF: 109.00567783966416
Iteration: 10, Func. Count: 156, Neg. LLF: 109.00268283552464
Iteration: 11, Func. Count: 171, Neg. LLF: 109.00236805851104
Iteration: 12, Func. Count: 186, Neg. LLF: 109.00235050787805
Iteration: 13, Func. Count: 201, Neg. LLF: 109.00234152862241
Iteration: 14, Func. Count: 215, Neg. LLF: 109.00234146245752
Optimization terminated successfully (Exit mode 0)
Current function value: 109.00234152862241
Iterations: 14
Function evaluations: 215
Gradient evaluations: 14
Iteration: 1, Func. Count: 5, Neg. LLF: 126.45008575924669
Iteration: 2, Func. Count: 11, Neg. LLF: 118.5718482358799
Iteration: 3, Func. Count: 16, Neg. LLF: 113.23407803041542
Iteration: 4, Func. Count: 21, Neg. LLF: 111.85402380687476
Iteration: 5, Func. Count: 26, Neg. LLF: 111.81121928348935
Iteration: 6, Func. Count: 30, Neg. LLF: 111.81033391834286
Iteration: 7, Func. Count: 34, Neg. LLF: 111.81030083291095
Iteration: 8, Func. Count: 38, Neg. LLF: 111.81028996051094
Iteration: 9, Func. Count: 41, Neg. LLF: 111.81028996050757
Optimization terminated successfully (Exit mode 0)
Current function value: 111.81028996051094
Iterations: 9
Function evaluations: 41
Gradient evaluations: 9
Iteration: 1, Func. Count: 5, Neg. LLF: 120.16338099986133
Iteration: 2, Func. Count: 11, Neg. LLF: 123.17302760573797
Iteration: 3, Func. Count: 16, Neg. LLF: 111.70982249125954
Iteration: 4, Func. Count: 21, Neg. LLF: 111.24545371083066
Iteration: 5, Func. Count: 25, Neg. LLF: 111.16992507602134
Iteration: 6, Func. Count: 29, Neg. LLF: 111.15258082451709
Iteration: 7, Func. Count: 33, Neg. LLF: 111.14708864427898
Iteration: 8, Func. Count: 37, Neg. LLF: 111.14703819871129
Iteration: 9, Func. Count: 40, Neg. LLF: 111.14703819872544
Optimization terminated successfully (Exit mode 0)
Current function value: 111.14703819871129
Iterations: 9
Function evaluations: 40
Gradient evaluations: 9
Iteration: 1, Func. Count: 6, Neg. LLF: 124.16635569165683
Iteration: 2, Func. Count: 12, Neg. LLF: 686.0622566527273
Iteration: 3, Func. Count: 19, Neg. LLF: 113.53172859600333
Iteration: 4, Func. Count: 25, Neg. LLF: 109.75576023683149
Iteration: 5, Func. Count: 30, Neg. LLF: 109.75105500483399
Iteration: 6, Func. Count: 35, Neg. LLF: 109.74439297955682
Iteration: 7, Func. Count: 40, Neg. LLF: 109.74375821032537
Iteration: 8, Func. Count: 45, Neg. LLF: 109.74369738482207
Iteration: 9, Func. Count: 50, Neg. LLF: 109.74369680786246
Optimization terminated successfully (Exit mode 0)
Current function value: 109.74369680786246
Iterations: 9
Function evaluations: 50
Gradient evaluations: 9
Iteration: 1, Func. Count: 7, Neg. LLF: 35796425.388325654
Iteration: 2, Func. Count: 15, Neg. LLF: 496.9348593630231
Iteration: 3, Func. Count: 23, Neg. LLF: 156.44134660512287
Iteration: 4, Func. Count: 30, Neg. LLF: 111.02058281469482
Iteration: 5, Func. Count: 37, Neg. LLF: 109.37802012041354
Iteration: 6, Func. Count: 43, Neg. LLF: 109.36665450414282
Iteration: 7, Func. Count: 49, Neg. LLF: 109.35937474359464
Iteration: 8, Func. Count: 55, Neg. LLF: 109.35886425347627
Iteration: 9, Func. Count: 61, Neg. LLF: 109.35879348963871
Iteration: 10, Func. Count: 67, Neg. LLF: 109.35879294197612
Optimization terminated successfully (Exit mode 0)
Current function value: 109.35879294197612
Iterations: 10
Function evaluations: 67
Gradient evaluations: 10
Iteration: 1, Func. Count: 8, Neg. LLF: 53718218.578047186
Iteration: 2, Func. Count: 17, Neg. LLF: 317.89622794181895
Iteration: 3, Func. Count: 26, Neg. LLF: 161.4075449692699
Iteration: 4, Func. Count: 34, Neg. LLF: 108.4919272827126
Iteration: 5, Func. Count: 41, Neg. LLF: 108.36267464877062
Iteration: 6, Func. Count: 48, Neg. LLF: 108.31025895936294
Iteration: 7, Func. Count: 55, Neg. LLF: 108.29976971217734
Iteration: 8, Func. Count: 62, Neg. LLF: 108.29884085959598
Iteration: 9, Func. Count: 69, Neg. LLF: 108.2985814309099
Iteration: 10, Func. Count: 76, Neg. LLF: 108.29856940138936
Iteration: 11, Func. Count: 83, Neg. LLF: 108.29855579983301
Iteration: 12, Func. Count: 90, Neg. LLF: 108.29855438454331
Iteration: 13, Func. Count: 96, Neg. LLF: 108.29855431710581
Optimization terminated successfully (Exit mode 0)
Current function value: 108.29855438454331
Iterations: 13
Function evaluations: 96
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 51400843.409365065
Iteration: 2, Func. Count: 19, Neg. LLF: 226.83229746398524
Iteration: 3, Func. Count: 29, Neg. LLF: 149.54088043384604
Iteration: 4, Func. Count: 38, Neg. LLF: 108.50070197629647
Iteration: 5, Func. Count: 46, Neg. LLF: 108.34288325802768
Iteration: 6, Func. Count: 54, Neg. LLF: 109.45381403695343
Iteration: 7, Func. Count: 64, Neg. LLF: 108.31372674427962
Iteration: 8, Func. Count: 72, Neg. LLF: 108.30046327753601
Iteration: 9, Func. Count: 80, Neg. LLF: 108.29861402289879
Iteration: 10, Func. Count: 88, Neg. LLF: 108.29810575812672
Iteration: 11, Func. Count: 96, Neg. LLF: 108.29792577071218
Iteration: 12, Func. Count: 104, Neg. LLF: 108.29790736158971
Iteration: 13, Func. Count: 112, Neg. LLF: 108.29790637845939
Optimization terminated successfully (Exit mode 0)
Current function value: 108.29790637845939
Iterations: 13
Function evaluations: 112
Gradient evaluations: 13
Iteration: 1, Func. Count: 6, Neg. LLF: 124.66339061085549
Iteration: 2, Func. Count: 13, Neg. LLF: 148.65727971059394
Iteration: 3, Func. Count: 19, Neg. LLF: 111.31043879079827
Iteration: 4, Func. Count: 24, Neg. LLF: 111.20638370551627
Iteration: 5, Func. Count: 29, Neg. LLF: 111.15056844364965
Iteration: 6, Func. Count: 34, Neg. LLF: 111.14723964451892
Iteration: 7, Func. Count: 39, Neg. LLF: 111.14708715093198
Iteration: 8, Func. Count: 44, Neg. LLF: 111.14703837138947
Iteration: 9, Func. Count: 48, Neg. LLF: 111.1470384219731
Optimization terminated successfully (Exit mode 0)
Current function value: 111.14703837138947
Iterations: 9
Function evaluations: 48
Gradient evaluations: 9
Iteration: 1, Func. Count: 7, Neg. LLF: 119.45728186382614
Iteration: 2, Func. Count: 15, Neg. LLF: 339.8137938273174
Iteration: 3, Func. Count: 23, Neg. LLF: 110.4606608182176
Iteration: 4, Func. Count: 30, Neg. LLF: 109.76762923646567
Iteration: 5, Func. Count: 36, Neg. LLF: 109.75134947521735
Iteration: 6, Func. Count: 42, Neg. LLF: 109.74504522086602
Iteration: 7, Func. Count: 48, Neg. LLF: 109.74372208621992
Iteration: 8, Func. Count: 54, Neg. LLF: 109.74369707890328
Iteration: 9, Func. Count: 59, Neg. LLF: 109.74369702057604
Optimization terminated successfully (Exit mode 0)
Current function value: 109.74369707890328
Iterations: 9
Function evaluations: 59
Gradient evaluations: 9
Iteration: 1, Func. Count: 8, Neg. LLF: 21734986.728159253
Iteration: 2, Func. Count: 16, Neg. LLF: 129.70277391391804
Iteration: 3, Func. Count: 24, Neg. LLF: 118.70504351452409
Iteration: 4, Func. Count: 32, Neg. LLF: 111.31192080382165
Iteration: 5, Func. Count: 40, Neg. LLF: 110.56961987447379
Iteration: 6, Func. Count: 48, Neg. LLF: 109.39085429343747
Iteration: 7, Func. Count: 55, Neg. LLF: 109.36904938080254
Iteration: 8, Func. Count: 62, Neg. LLF: 109.36094525791566
Iteration: 9, Func. Count: 69, Neg. LLF: 109.35910399668195
Iteration: 10, Func. Count: 76, Neg. LLF: 109.35881810206202
Iteration: 11, Func. Count: 83, Neg. LLF: 109.35879317243898
Iteration: 12, Func. Count: 89, Neg. LLF: 109.3587931035622
Optimization terminated successfully (Exit mode 0)
Current function value: 109.35879317243898
Iterations: 12
Function evaluations: 89
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 24362648.25764294
Iteration: 2, Func. Count: 18, Neg. LLF: 124.2459508387151
Iteration: 3, Func. Count: 27, Neg. LLF: 110.52827885712955
Iteration: 4, Func. Count: 36, Neg. LLF: 108.82160320027013
Iteration: 5, Func. Count: 44, Neg. LLF: 108.63117973709124
Iteration: 6, Func. Count: 52, Neg. LLF: 108.33031423892132
Iteration: 7, Func. Count: 60, Neg. LLF: 108.30901354035898
Iteration: 8, Func. Count: 68, Neg. LLF: 108.31620564351628
Iteration: 9, Func. Count: 77, Neg. LLF: 108.2987752723569
Iteration: 10, Func. Count: 85, Neg. LLF: 108.29860276350321
Iteration: 11, Func. Count: 93, Neg. LLF: 108.29855906290716
Iteration: 12, Func. Count: 101, Neg. LLF: 108.29855443659679
Iteration: 13, Func. Count: 108, Neg. LLF: 108.2985543691868
Optimization terminated successfully (Exit mode 0)
Current function value: 108.29855443659679
Iterations: 13
Function evaluations: 108
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 24606026.06601648
Iteration: 2, Func. Count: 21, Neg. LLF: 347.7224821908401
Iteration: 3, Func. Count: 32, Neg. LLF: 214.93305956154725
Iteration: 4, Func. Count: 42, Neg. LLF: 116.0214820708733
Iteration: 5, Func. Count: 52, Neg. LLF: 108.41374950540046
Iteration: 6, Func. Count: 61, Neg. LLF: 108.34284121435373
Iteration: 7, Func. Count: 70, Neg. LLF: 108.30480019647212
Iteration: 8, Func. Count: 79, Neg. LLF: 108.30014188743333
Iteration: 9, Func. Count: 88, Neg. LLF: 108.29944581060862
Iteration: 10, Func. Count: 97, Neg. LLF: 108.2980292650932
Iteration: 11, Func. Count: 106, Neg. LLF: 108.29795474047555
Iteration: 12, Func. Count: 115, Neg. LLF: 108.29792717492079
Iteration: 13, Func. Count: 124, Neg. LLF: 108.29790902575104
Iteration: 14, Func. Count: 133, Neg. LLF: 108.2979064570034
Iteration: 15, Func. Count: 141, Neg. LLF: 108.2979063892615
Optimization terminated successfully (Exit mode 0)
Current function value: 108.2979064570034
Iterations: 15
Function evaluations: 141
Gradient evaluations: 15
Iteration: 1, Func. Count: 7, Neg. LLF: 124.30671139134141
Iteration: 2, Func. Count: 15, Neg. LLF: 178.57836282092904
Iteration: 3, Func. Count: 22, Neg. LLF: 111.0458869127503
Iteration: 4, Func. Count: 29, Neg. LLF: 110.49553262421378
Iteration: 5, Func. Count: 35, Neg. LLF: 110.47762251396473
Iteration: 6, Func. Count: 41, Neg. LLF: 110.9685480311569
Iteration: 7, Func. Count: 48, Neg. LLF: 110.46448162718588
Iteration: 8, Func. Count: 54, Neg. LLF: 110.4641863458682
Iteration: 9, Func. Count: 60, Neg. LLF: 110.46417243850331
Iteration: 10, Func. Count: 66, Neg. LLF: 110.46417071764722
Iteration: 11, Func. Count: 71, Neg. LLF: 110.4641707176407
Optimization terminated successfully (Exit mode 0)
Current function value: 110.46417071764722
Iterations: 11
Function evaluations: 71
Gradient evaluations: 11
Iteration: 1, Func. Count: 8, Neg. LLF: 122.9198021846015
Iteration: 2, Func. Count: 16, Neg. LLF: 184.18160613992941
Iteration: 3, Func. Count: 24, Neg. LLF: 112.81499881744256
Iteration: 4, Func. Count: 32, Neg. LLF: 117.39883138893592
Iteration: 5, Func. Count: 40, Neg. LLF: 111.59205463533796
Iteration: 6, Func. Count: 48, Neg. LLF: 109.7704300732001
Iteration: 7, Func. Count: 56, Neg. LLF: 109.35794243645101
Iteration: 8, Func. Count: 63, Neg. LLF: 109.35080729777827
Iteration: 9, Func. Count: 70, Neg. LLF: 109.34677176759992
Iteration: 10, Func. Count: 77, Neg. LLF: 109.34533589926019
Iteration: 11, Func. Count: 84, Neg. LLF: 109.34525772342873
Iteration: 12, Func. Count: 91, Neg. LLF: 109.34523919347464
Iteration: 13, Func. Count: 97, Neg. LLF: 109.34523919353259
Optimization terminated successfully (Exit mode 0)
Current function value: 109.34523919347464
Iterations: 13
Function evaluations: 97
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 20270930.332565702
Iteration: 2, Func. Count: 18, Neg. LLF: 121.2027040228748
Iteration: 3, Func. Count: 28, Neg. LLF: 113.45491006036266
Iteration: 4, Func. Count: 37, Neg. LLF: 109.43090336209362
Iteration: 5, Func. Count: 45, Neg. LLF: 111.16732330487837
Iteration: 6, Func. Count: 54, Neg. LLF: 109.33859425876416
Iteration: 7, Func. Count: 62, Neg. LLF: 109.32384201296034
Iteration: 8, Func. Count: 71, Neg. LLF: 109.26445898690426
Iteration: 9, Func. Count: 79, Neg. LLF: 109.2549929953938
Iteration: 10, Func. Count: 87, Neg. LLF: 109.25475575961507
Iteration: 11, Func. Count: 95, Neg. LLF: 109.2544118610669
Iteration: 12, Func. Count: 103, Neg. LLF: 109.25436166132148
Iteration: 13, Func. Count: 111, Neg. LLF: 109.25435019833346
Iteration: 14, Func. Count: 118, Neg. LLF: 109.2543501627585
Optimization terminated successfully (Exit mode 0)
Current function value: 109.25435019833346
Iterations: 14
Function evaluations: 118
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 23459946.903563395
Iteration: 2, Func. Count: 20, Neg. LLF: 120.0254778161074
Iteration: 3, Func. Count: 30, Neg. LLF: 122.47526480176074
Iteration: 4, Func. Count: 40, Neg. LLF: 107.92556110578793
Iteration: 5, Func. Count: 49, Neg. LLF: 112.06394061519299
Iteration: 6, Func. Count: 59, Neg. LLF: 107.74087149643488
Iteration: 7, Func. Count: 68, Neg. LLF: 107.67622859011024
Iteration: 8, Func. Count: 77, Neg. LLF: 107.67169841941889
Iteration: 9, Func. Count: 86, Neg. LLF: 107.67025345352124
Iteration: 10, Func. Count: 95, Neg. LLF: 107.67017930188486
Iteration: 11, Func. Count: 104, Neg. LLF: 107.67017738907218
Iteration: 12, Func. Count: 112, Neg. LLF: 107.670177345562
Optimization terminated successfully (Exit mode 0)
Current function value: 107.67017738907218
Iterations: 12
Function evaluations: 112
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 24571769.673066948
Iteration: 2, Func. Count: 23, Neg. LLF: 287.76633306800903
Iteration: 3, Func. Count: 34, Neg. LLF: 1881394.5988211513
Iteration: 4, Func. Count: 45, Neg. LLF: 142.5907966227091
Iteration: 5, Func. Count: 56, Neg. LLF: 108.07472479625243
Iteration: 6, Func. Count: 66, Neg. LLF: 108.90289279319256
Iteration: 7, Func. Count: 78, Neg. LLF: 107.96575284286739
Iteration: 8, Func. Count: 89, Neg. LLF: 107.6682818169388
Iteration: 9, Func. Count: 99, Neg. LLF: 107.65641640561829
Iteration: 10, Func. Count: 109, Neg. LLF: 107.65058622602596
Iteration: 11, Func. Count: 119, Neg. LLF: 107.64861207635879
Iteration: 12, Func. Count: 129, Neg. LLF: 107.64847539871022
Iteration: 13, Func. Count: 139, Neg. LLF: 107.64847242461789
Iteration: 14, Func. Count: 148, Neg. LLF: 107.64847236685372
Optimization terminated successfully (Exit mode 0)
Current function value: 107.64847242461789
Iterations: 14
Function evaluations: 148
Gradient evaluations: 14
Iteration: 1, Func. Count: 8, Neg. LLF: 121.22759662765378
Iteration: 2, Func. Count: 17, Neg. LLF: 188.22428129597077
Iteration: 3, Func. Count: 25, Neg. LLF: 154.3737193289131
Iteration: 4, Func. Count: 33, Neg. LLF: 1390697.1803841125
Iteration: 5, Func. Count: 41, Neg. LLF: 108.4670792302563
Iteration: 6, Func. Count: 48, Neg. LLF: 110.0190325567753
Iteration: 7, Func. Count: 56, Neg. LLF: 108.44095650844721
Iteration: 8, Func. Count: 64, Neg. LLF: 108.3725262131438
Iteration: 9, Func. Count: 71, Neg. LLF: 108.36728462078071
Iteration: 10, Func. Count: 78, Neg. LLF: 108.36280302515077
Iteration: 11, Func. Count: 85, Neg. LLF: 108.36119398406436
Iteration: 12, Func. Count: 92, Neg. LLF: 108.36096058741785
Iteration: 13, Func. Count: 99, Neg. LLF: 108.360942623999
Iteration: 14, Func. Count: 106, Neg. LLF: 108.36094204874115
Optimization terminated successfully (Exit mode 0)
Current function value: 108.36094204874115
Iterations: 14
Function evaluations: 106
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 121.93438234845615
Iteration: 2, Func. Count: 18, Neg. LLF: 176.74065007062228
Iteration: 3, Func. Count: 27, Neg. LLF: 113.47119877457499
Iteration: 4, Func. Count: 36, Neg. LLF: 110.65950152194179
Iteration: 5, Func. Count: 45, Neg. LLF: 108.54164840371814
Iteration: 6, Func. Count: 53, Neg. LLF: 110.77103773531033
Iteration: 7, Func. Count: 62, Neg. LLF: 108.5100535608417
Iteration: 8, Func. Count: 71, Neg. LLF: 108.36802048936329
Iteration: 9, Func. Count: 79, Neg. LLF: 108.36411570253811
Iteration: 10, Func. Count: 87, Neg. LLF: 108.3620406452553
Iteration: 11, Func. Count: 95, Neg. LLF: 108.36168650228781
Iteration: 12, Func. Count: 103, Neg. LLF: 108.36103863160986
Iteration: 13, Func. Count: 111, Neg. LLF: 108.36094629344836
Iteration: 14, Func. Count: 119, Neg. LLF: 108.36094206951682
Iteration: 15, Func. Count: 126, Neg. LLF: 108.3609420925635
Optimization terminated successfully (Exit mode 0)
Current function value: 108.36094206951682
Iterations: 15
Function evaluations: 126
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 20201093.273510307
Iteration: 2, Func. Count: 20, Neg. LLF: 118.73124567857764
Iteration: 3, Func. Count: 31, Neg. LLF: 140.85922828883173
Iteration: 4, Func. Count: 41, Neg. LLF: 111.61888291921477
Iteration: 5, Func. Count: 51, Neg. LLF: 108.49924293933661
Iteration: 6, Func. Count: 60, Neg. LLF: 112.0980280780483
Iteration: 7, Func. Count: 70, Neg. LLF: 108.31397175450836
Iteration: 8, Func. Count: 79, Neg. LLF: 108.30248951637319
Iteration: 9, Func. Count: 88, Neg. LLF: 108.30217702407862
Iteration: 10, Func. Count: 97, Neg. LLF: 108.30210344199664
Iteration: 11, Func. Count: 106, Neg. LLF: 108.30208035234448
Iteration: 12, Func. Count: 115, Neg. LLF: 108.30204998972424
Iteration: 13, Func. Count: 124, Neg. LLF: 108.30204714542542
Iteration: 14, Func. Count: 132, Neg. LLF: 108.3020471026898
Optimization terminated successfully (Exit mode 0)
Current function value: 108.30204714542542
Iterations: 14
Function evaluations: 132
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 23971853.159296
Iteration: 2, Func. Count: 22, Neg. LLF: 118.41880320528844
Iteration: 3, Func. Count: 33, Neg. LLF: 125.56346757725507
Iteration: 4, Func. Count: 44, Neg. LLF: 111.11366767387918
Iteration: 5, Func. Count: 55, Neg. LLF: 110.85022967536308
Iteration: 6, Func. Count: 66, Neg. LLF: 110.22721652705036
Iteration: 7, Func. Count: 77, Neg. LLF: 107.5973649857113
Iteration: 8, Func. Count: 87, Neg. LLF: 108.1690323051054
Iteration: 9, Func. Count: 98, Neg. LLF: 107.5559856247478
Iteration: 10, Func. Count: 109, Neg. LLF: 107.51083492674445
Iteration: 11, Func. Count: 119, Neg. LLF: 107.51069047306058
Iteration: 12, Func. Count: 129, Neg. LLF: 107.51063881274543
Iteration: 13, Func. Count: 139, Neg. LLF: 107.51062048992054
Iteration: 14, Func. Count: 149, Neg. LLF: 107.51061774551137
Iteration: 15, Func. Count: 159, Neg. LLF: 107.51061492494604
Iteration: 16, Func. Count: 168, Neg. LLF: 107.5106148887176
Optimization terminated successfully (Exit mode 0)
Current function value: 107.51061492494604
Iterations: 16
Function evaluations: 168
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 39684881.45616687
Iteration: 2, Func. Count: 25, Neg. LLF: 263.835211991362
Iteration: 3, Func. Count: 37, Neg. LLF: 136.66451327611685
Iteration: 4, Func. Count: 49, Neg. LLF: 126.17592712314035
Iteration: 5, Func. Count: 61, Neg. LLF: 121.9587563957087
Iteration: 6, Func. Count: 73, Neg. LLF: 107.43980715666777
Iteration: 7, Func. Count: 84, Neg. LLF: 107.49672532055119
Iteration: 8, Func. Count: 96, Neg. LLF: 107.41066788838918
Iteration: 9, Func. Count: 107, Neg. LLF: 107.38923230757257
Iteration: 10, Func. Count: 118, Neg. LLF: 107.38270414662927
Iteration: 11, Func. Count: 129, Neg. LLF: 107.37964743957207
Iteration: 12, Func. Count: 140, Neg. LLF: 107.37830147781436
Iteration: 13, Func. Count: 151, Neg. LLF: 107.37736743557855
Iteration: 14, Func. Count: 162, Neg. LLF: 107.37690116904265
Iteration: 15, Func. Count: 173, Neg. LLF: 107.37678819689043
Iteration: 16, Func. Count: 184, Neg. LLF: 107.37677961981268
Iteration: 17, Func. Count: 194, Neg. LLF: 107.37677956568926
Optimization terminated successfully (Exit mode 0)
Current function value: 107.37677961981268
Iterations: 17
Function evaluations: 194
Gradient evaluations: 17
Iteration: 1, Func. Count: 5, Neg. LLF: 126.77715698097134
Iteration: 2, Func. Count: 11, Neg. LLF: 119.60147143793874
Iteration: 3, Func. Count: 16, Neg. LLF: 112.06692652320321
Iteration: 4, Func. Count: 21, Neg. LLF: 110.5580963548937
Iteration: 5, Func. Count: 25, Neg. LLF: 110.52065893181856
Iteration: 6, Func. Count: 29, Neg. LLF: 110.51891048630362
Iteration: 7, Func. Count: 33, Neg. LLF: 110.51859954240871
Iteration: 8, Func. Count: 37, Neg. LLF: 110.5185613653157
Iteration: 9, Func. Count: 41, Neg. LLF: 110.5185569153221
Iteration: 10, Func. Count: 44, Neg. LLF: 110.5185569153065
Optimization terminated successfully (Exit mode 0)
Current function value: 110.5185569153221
Iterations: 10
Function evaluations: 44
Gradient evaluations: 10
Iteration: 1, Func. Count: 6, Neg. LLF: 123.47885331361836
Iteration: 2, Func. Count: 12, Neg. LLF: 112.58713466802205
Iteration: 3, Func. Count: 19, Neg. LLF: 112.8802066026095
Iteration: 4, Func. Count: 26, Neg. LLF: 110.28068415226284
Iteration: 5, Func. Count: 31, Neg. LLF: 110.2789767388504
Iteration: 6, Func. Count: 36, Neg. LLF: 110.27892129505084
Iteration: 7, Func. Count: 41, Neg. LLF: 110.27892041265777
Optimization terminated successfully (Exit mode 0)
Current function value: 110.27892041265777
Iterations: 7
Function evaluations: 41
Gradient evaluations: 7
Iteration: 1, Func. Count: 7, Neg. LLF: 122.41540054015627
Iteration: 2, Func. Count: 14, Neg. LLF: 114.73768916439802
Iteration: 3, Func. Count: 22, Neg. LLF: 112.97501166054997
Iteration: 4, Func. Count: 30, Neg. LLF: 110.06180876154171
Iteration: 5, Func. Count: 36, Neg. LLF: 110.0520110244029
Iteration: 6, Func. Count: 42, Neg. LLF: 110.0470128337649
Iteration: 7, Func. Count: 48, Neg. LLF: 110.04667816040516
Iteration: 8, Func. Count: 54, Neg. LLF: 110.04658830631745
Iteration: 9, Func. Count: 59, Neg. LLF: 110.04658830629205
Optimization terminated successfully (Exit mode 0)
Current function value: 110.04658830631745
Iterations: 9
Function evaluations: 59
Gradient evaluations: 9
Iteration: 1, Func. Count: 8, Neg. LLF: 135.33033226717217
Iteration: 2, Func. Count: 16, Neg. LLF: 121.4478373293345
Iteration: 3, Func. Count: 25, Neg. LLF: 110.12029166590229
Iteration: 4, Func. Count: 32, Neg. LLF: 112.37559057865067
Iteration: 5, Func. Count: 40, Neg. LLF: 110.07111282262412
Iteration: 6, Func. Count: 47, Neg. LLF: 110.05509690354599
Iteration: 7, Func. Count: 54, Neg. LLF: 110.05140831514662
Iteration: 8, Func. Count: 61, Neg. LLF: 110.04662877719326
Iteration: 9, Func. Count: 68, Neg. LLF: 110.04658954125816
Iteration: 10, Func. Count: 75, Neg. LLF: 110.0465882664759
Iteration: 11, Func. Count: 81, Neg. LLF: 110.04658831672351
Optimization terminated successfully (Exit mode 0)
Current function value: 110.0465882664759
Iterations: 11
Function evaluations: 81
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 124.97109909650453
Iteration: 2, Func. Count: 18, Neg. LLF: 119.29738782479039
Iteration: 3, Func. Count: 28, Neg. LLF: 110.06605364080652
Iteration: 4, Func. Count: 36, Neg. LLF: 111.54625450449916
Iteration: 5, Func. Count: 46, Neg. LLF: 110.05445843663568
Iteration: 6, Func. Count: 54, Neg. LLF: 110.04841676522655
Iteration: 7, Func. Count: 62, Neg. LLF: 110.04724777815835
Iteration: 8, Func. Count: 70, Neg. LLF: 110.04658907928666
Iteration: 9, Func. Count: 78, Neg. LLF: 110.04658825394155
Optimization terminated successfully (Exit mode 0)
Current function value: 110.04658825394155
Iterations: 9
Function evaluations: 78
Gradient evaluations: 9
Iteration: 1, Func. Count: 6, Neg. LLF: 129.52506527367024
Iteration: 2, Func. Count: 13, Neg. LLF: 116.37691302411343
Iteration: 3, Func. Count: 19, Neg. LLF: 112.41289497934905
Iteration: 4, Func. Count: 25, Neg. LLF: 112.12018998084503
Iteration: 5, Func. Count: 31, Neg. LLF: 110.38373815559322
Iteration: 6, Func. Count: 36, Neg. LLF: 110.36353234773075
Iteration: 7, Func. Count: 41, Neg. LLF: 110.36269847206098
Iteration: 8, Func. Count: 46, Neg. LLF: 110.36263390980005
Iteration: 9, Func. Count: 51, Neg. LLF: 110.36263041222401
Iteration: 10, Func. Count: 55, Neg. LLF: 110.36263041220572
Optimization terminated successfully (Exit mode 0)
Current function value: 110.36263041222401
Iterations: 10
Function evaluations: 55
Gradient evaluations: 10
Iteration: 1, Func. Count: 7, Neg. LLF: 123.69548986194285
Iteration: 2, Func. Count: 14, Neg. LLF: 447.42436615758373
Iteration: 3, Func. Count: 22, Neg. LLF: 114.48965187372977
Iteration: 4, Func. Count: 29, Neg. LLF: 109.77191307262181
Iteration: 5, Func. Count: 35, Neg. LLF: 109.77364165303271
Iteration: 6, Func. Count: 42, Neg. LLF: 109.74479593056014
Iteration: 7, Func. Count: 48, Neg. LLF: 109.74374711427708
Iteration: 8, Func. Count: 54, Neg. LLF: 109.74369721255275
Iteration: 9, Func. Count: 59, Neg. LLF: 109.74369715470003
Optimization terminated successfully (Exit mode 0)
Current function value: 109.74369721255275
Iterations: 9
Function evaluations: 59
Gradient evaluations: 9
Iteration: 1, Func. Count: 8, Neg. LLF: 33766317.757084176
Iteration: 2, Func. Count: 17, Neg. LLF: 447.11673119201225
Iteration: 3, Func. Count: 26, Neg. LLF: 152.3144343934991
Iteration: 4, Func. Count: 34, Neg. LLF: 113.2467171453779
Iteration: 5, Func. Count: 42, Neg. LLF: 109.44091686959884
Iteration: 6, Func. Count: 49, Neg. LLF: 115.72846849504823
Iteration: 7, Func. Count: 57, Neg. LLF: 109.33291634201811
Iteration: 8, Func. Count: 65, Neg. LLF: 109.04795447812364
Iteration: 9, Func. Count: 72, Neg. LLF: 109.02173334230582
Iteration: 10, Func. Count: 79, Neg. LLF: 109.0102830019063
Iteration: 11, Func. Count: 86, Neg. LLF: 109.00443785867886
Iteration: 12, Func. Count: 93, Neg. LLF: 109.00377843198261
Iteration: 13, Func. Count: 100, Neg. LLF: 109.00306464498978
Iteration: 14, Func. Count: 107, Neg. LLF: 109.00196063139354
Iteration: 15, Func. Count: 114, Neg. LLF: 109.00079488916748
Iteration: 16, Func. Count: 121, Neg. LLF: 109.00011718126999
Iteration: 17, Func. Count: 128, Neg. LLF: 108.99994938045528
Iteration: 18, Func. Count: 135, Neg. LLF: 108.99992897967392
Iteration: 19, Func. Count: 142, Neg. LLF: 108.9999266612345
Iteration: 20, Func. Count: 148, Neg. LLF: 108.99992666116172
Optimization terminated successfully (Exit mode 0)
Current function value: 108.9999266612345
Iterations: 20
Function evaluations: 148
Gradient evaluations: 20
Iteration: 1, Func. Count: 9, Neg. LLF: 51855031.001433305
Iteration: 2, Func. Count: 19, Neg. LLF: 333.8970766826178
Iteration: 3, Func. Count: 29, Neg. LLF: 159.56584133011543
Iteration: 4, Func. Count: 38, Neg. LLF: 109.05271585612961
Iteration: 5, Func. Count: 46, Neg. LLF: 108.31957009566023
Iteration: 6, Func. Count: 54, Neg. LLF: 108.30879781389929
Iteration: 7, Func. Count: 62, Neg. LLF: 108.30149131900076
Iteration: 8, Func. Count: 70, Neg. LLF: 108.29938820511191
Iteration: 9, Func. Count: 78, Neg. LLF: 108.29857124604253
Iteration: 10, Func. Count: 86, Neg. LLF: 108.29855786673008
Iteration: 11, Func. Count: 94, Neg. LLF: 108.29855599681173
Iteration: 12, Func. Count: 102, Neg. LLF: 108.29855437980821
Iteration: 13, Func. Count: 109, Neg. LLF: 108.2985543123235
Optimization terminated successfully (Exit mode 0)
Current function value: 108.29855437980821
Iterations: 13
Function evaluations: 109
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 50182656.41580856
Iteration: 2, Func. Count: 21, Neg. LLF: 233.9694747815878
Iteration: 3, Func. Count: 32, Neg. LLF: 149.79118942492318
Iteration: 4, Func. Count: 42, Neg. LLF: 109.19169749855945
Iteration: 5, Func. Count: 51, Neg. LLF: 108.30928703054384
Iteration: 6, Func. Count: 60, Neg. LLF: 109.94316495945566
Iteration: 7, Func. Count: 71, Neg. LLF: 108.30266899975847
Iteration: 8, Func. Count: 80, Neg. LLF: 108.29899092021093
Iteration: 9, Func. Count: 89, Neg. LLF: 108.29804435445438
Iteration: 10, Func. Count: 98, Neg. LLF: 108.29791709790726
Iteration: 11, Func. Count: 107, Neg. LLF: 108.29790756717937
Iteration: 12, Func. Count: 115, Neg. LLF: 108.29790749927193
Optimization terminated successfully (Exit mode 0)
Current function value: 108.29790756717937
Iterations: 12
Function evaluations: 115
Gradient evaluations: 12
Iteration: 1, Func. Count: 7, Neg. LLF: 125.03693205146766
Iteration: 2, Func. Count: 14, Neg. LLF: 124.24796465146223
Iteration: 3, Func. Count: 21, Neg. LLF: 111.41771426186878
Iteration: 4, Func. Count: 28, Neg. LLF: 112.79773879091078
Iteration: 5, Func. Count: 35, Neg. LLF: 110.47948556226842
Iteration: 6, Func. Count: 41, Neg. LLF: 110.43625724731689
Iteration: 7, Func. Count: 47, Neg. LLF: 110.41115705716174
Iteration: 8, Func. Count: 53, Neg. LLF: 110.36407860204608
Iteration: 9, Func. Count: 59, Neg. LLF: 110.36267820630482
Iteration: 10, Func. Count: 65, Neg. LLF: 110.36263173036053
Iteration: 11, Func. Count: 71, Neg. LLF: 110.3626303325602
Iteration: 12, Func. Count: 76, Neg. LLF: 110.36263036411015
Optimization terminated successfully (Exit mode 0)
Current function value: 110.3626303325602
Iterations: 12
Function evaluations: 76
Gradient evaluations: 12
Iteration: 1, Func. Count: 8, Neg. LLF: 124.1255386206924
Iteration: 2, Func. Count: 16, Neg. LLF: 120.43567965037624
Iteration: 3, Func. Count: 24, Neg. LLF: 111.53121787345228
Iteration: 4, Func. Count: 32, Neg. LLF: 111.3931606535169
Iteration: 5, Func. Count: 40, Neg. LLF: 110.21445539609697
Iteration: 6, Func. Count: 48, Neg. LLF: 110.03185801820626
Iteration: 7, Func. Count: 55, Neg. LLF: 110.02332379317009
Iteration: 8, Func. Count: 62, Neg. LLF: 110.02242462577976
Iteration: 9, Func. Count: 69, Neg. LLF: 110.02230242750746
Iteration: 10, Func. Count: 76, Neg. LLF: 110.02229266513723
Iteration: 11, Func. Count: 82, Neg. LLF: 110.02229266525325
Optimization terminated successfully (Exit mode 0)
Current function value: 110.02229266513723
Iterations: 11
Function evaluations: 82
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 122.57043361867998
Iteration: 2, Func. Count: 18, Neg. LLF: 113.32346876764106
Iteration: 3, Func. Count: 27, Neg. LLF: 120.27796981056717
Iteration: 4, Func. Count: 36, Neg. LLF: 119.5098210114814
Iteration: 5, Func. Count: 45, Neg. LLF: 110.87162502416128
Iteration: 6, Func. Count: 54, Neg. LLF: 109.62811236747984
Iteration: 7, Func. Count: 63, Neg. LLF: 109.06895718634948
Iteration: 8, Func. Count: 71, Neg. LLF: 109.01935735131156
Iteration: 9, Func. Count: 79, Neg. LLF: 109.00665758058561
Iteration: 10, Func. Count: 87, Neg. LLF: 109.00076251057682
Iteration: 11, Func. Count: 95, Neg. LLF: 109.0002594547204
Iteration: 12, Func. Count: 103, Neg. LLF: 108.99993361862956
Iteration: 13, Func. Count: 111, Neg. LLF: 108.99992700855847
Iteration: 14, Func. Count: 118, Neg. LLF: 108.9999270084931
Optimization terminated successfully (Exit mode 0)
Current function value: 108.99992700855847
Iterations: 14
Function evaluations: 118
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 119.95940343236424
Iteration: 2, Func. Count: 20, Neg. LLF: 122.29695569131424
Iteration: 3, Func. Count: 30, Neg. LLF: 113.12008343848791
Iteration: 4, Func. Count: 40, Neg. LLF: 128.34060042145725
Iteration: 5, Func. Count: 50, Neg. LLF: 112.26254889579181
Iteration: 6, Func. Count: 60, Neg. LLF: 109.33674029796951
Iteration: 7, Func. Count: 70, Neg. LLF: 109.11422984490883
Iteration: 8, Func. Count: 79, Neg. LLF: 109.01965710489009
Iteration: 9, Func. Count: 88, Neg. LLF: 109.00435425805891
Iteration: 10, Func. Count: 97, Neg. LLF: 109.00030771910711
Iteration: 11, Func. Count: 106, Neg. LLF: 108.99999244448327
Iteration: 12, Func. Count: 115, Neg. LLF: 108.99992866699232
Iteration: 13, Func. Count: 124, Neg. LLF: 108.99992675997674
Iteration: 14, Func. Count: 132, Neg. LLF: 108.99992676424853
Optimization terminated successfully (Exit mode 0)
Current function value: 108.99992675997674
Iterations: 14
Function evaluations: 132
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 116.73530361691523
Iteration: 2, Func. Count: 22, Neg. LLF: 123.27883829928531
Iteration: 3, Func. Count: 33, Neg. LLF: 114.31643862931863
Iteration: 4, Func. Count: 44, Neg. LLF: 197.93199583143195
Iteration: 5, Func. Count: 55, Neg. LLF: 112.05069276631329
Iteration: 6, Func. Count: 66, Neg. LLF: 109.19320011212594
Iteration: 7, Func. Count: 76, Neg. LLF: 109.06047581664988
Iteration: 8, Func. Count: 86, Neg. LLF: 109.11870183731868
Iteration: 9, Func. Count: 97, Neg. LLF: 109.00081688158441
Iteration: 10, Func. Count: 107, Neg. LLF: 108.99999944492745
Iteration: 11, Func. Count: 117, Neg. LLF: 108.99992708594522
Iteration: 12, Func. Count: 127, Neg. LLF: 108.99992645835809
Optimization terminated successfully (Exit mode 0)
Current function value: 108.99992645835809
Iterations: 12
Function evaluations: 127
Gradient evaluations: 12
Iteration: 1, Func. Count: 8, Neg. LLF: 131.90521227247416
Iteration: 2, Func. Count: 17, Neg. LLF: 120.72735902982564
Iteration: 3, Func. Count: 26, Neg. LLF: 115.69195996581051
Iteration: 4, Func. Count: 34, Neg. LLF: 109.42011677292541
Iteration: 5, Func. Count: 42, Neg. LLF: 110.29667489151146
Iteration: 6, Func. Count: 50, Neg. LLF: 108.92769833345945
Iteration: 7, Func. Count: 57, Neg. LLF: 108.92511579090267
Iteration: 8, Func. Count: 64, Neg. LLF: 108.92488774236243
Iteration: 9, Func. Count: 71, Neg. LLF: 108.92481115263625
Iteration: 10, Func. Count: 78, Neg. LLF: 108.9247974993593
Iteration: 11, Func. Count: 85, Neg. LLF: 108.92479391599458
Iteration: 12, Func. Count: 92, Neg. LLF: 108.92479307088429
Optimization terminated successfully (Exit mode 0)
Current function value: 108.92479307088429
Iterations: 12
Function evaluations: 92
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 154.47805329520847
Iteration: 2, Func. Count: 18, Neg. LLF: 114.9861516935863
Iteration: 3, Func. Count: 27, Neg. LLF: 117.34646587698786
Iteration: 4, Func. Count: 36, Neg. LLF: 109.43708695798605
Iteration: 5, Func. Count: 45, Neg. LLF: 109.22425521318459
Iteration: 6, Func. Count: 54, Neg. LLF: 108.96605503526146
Iteration: 7, Func. Count: 62, Neg. LLF: 108.92675849483133
Iteration: 8, Func. Count: 70, Neg. LLF: 108.92495932478843
Iteration: 9, Func. Count: 78, Neg. LLF: 108.92482272111883
Iteration: 10, Func. Count: 86, Neg. LLF: 108.92479347618035
Iteration: 11, Func. Count: 93, Neg. LLF: 108.92479350156044
Optimization terminated successfully (Exit mode 0)
Current function value: 108.92479347618035
Iterations: 11
Function evaluations: 93
Gradient evaluations: 11
Iteration: 1, Func. Count: 10, Neg. LLF: 153.44971939069188
Iteration: 2, Func. Count: 20, Neg. LLF: 116.18058921432927
Iteration: 3, Func. Count: 30, Neg. LLF: 119.00771846675717
Iteration: 4, Func. Count: 40, Neg. LLF: 113.48160731370984
Iteration: 5, Func. Count: 50, Neg. LLF: 110.26300760730763
Iteration: 6, Func. Count: 60, Neg. LLF: 108.89933644729891
Iteration: 7, Func. Count: 69, Neg. LLF: 108.89520615165134
Iteration: 8, Func. Count: 78, Neg. LLF: 108.89108650247242
Iteration: 9, Func. Count: 87, Neg. LLF: 108.8909942912423
Iteration: 10, Func. Count: 96, Neg. LLF: 108.89099102656884
Iteration: 11, Func. Count: 104, Neg. LLF: 108.890991026536
Optimization terminated successfully (Exit mode 0)
Current function value: 108.89099102656884
Iterations: 11
Function evaluations: 104
Gradient evaluations: 11
Iteration: 1, Func. Count: 11, Neg. LLF: 150.66412108801015
Iteration: 2, Func. Count: 22, Neg. LLF: 115.1771424425295
Iteration: 3, Func. Count: 33, Neg. LLF: 121.21827805854545
Iteration: 4, Func. Count: 44, Neg. LLF: 113.76682803990995
Iteration: 5, Func. Count: 56, Neg. LLF: 109.722076825871
Iteration: 6, Func. Count: 67, Neg. LLF: 108.90299863767623
Iteration: 7, Func. Count: 77, Neg. LLF: 108.89396543939938
Iteration: 8, Func. Count: 87, Neg. LLF: 108.89127888003712
Iteration: 9, Func. Count: 97, Neg. LLF: 108.89106131710987
Iteration: 10, Func. Count: 107, Neg. LLF: 108.89099239901266
Iteration: 11, Func. Count: 117, Neg. LLF: 108.8909909763121
Iteration: 12, Func. Count: 126, Neg. LLF: 108.89099099815864
Optimization terminated successfully (Exit mode 0)
Current function value: 108.8909909763121
Iterations: 12
Function evaluations: 126
Gradient evaluations: 12
Iteration: 1, Func. Count: 12, Neg. LLF: 149.03239489429555
Iteration: 2, Func. Count: 24, Neg. LLF: 114.81813251814452
Iteration: 3, Func. Count: 36, Neg. LLF: 115.59606165543182
Iteration: 4, Func. Count: 48, Neg. LLF: 111.10742859650306
Iteration: 5, Func. Count: 60, Neg. LLF: 117.00375508212767
Iteration: 6, Func. Count: 73, Neg. LLF: 108.90181104445632
Iteration: 7, Func. Count: 84, Neg. LLF: 108.9144967124744
Iteration: 8, Func. Count: 96, Neg. LLF: 108.89162783271696
Iteration: 9, Func. Count: 107, Neg. LLF: 108.89108219519503
Iteration: 10, Func. Count: 118, Neg. LLF: 108.89100104015637
Iteration: 11, Func. Count: 129, Neg. LLF: 108.89099460710216
Iteration: 12, Func. Count: 140, Neg. LLF: 108.8909913360289
Iteration: 13, Func. Count: 150, Neg. LLF: 108.89099133972395
Optimization terminated successfully (Exit mode 0)
Current function value: 108.8909913360289
Iterations: 13
Function evaluations: 150
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 127.02964717977137
Iteration: 2, Func. Count: 19, Neg. LLF: 122.59720820579122
Iteration: 3, Func. Count: 29, Neg. LLF: 112.2844429497882
Iteration: 4, Func. Count: 38, Neg. LLF: 108.53440475553617
Iteration: 5, Func. Count: 46, Neg. LLF: 108.40817076625918
Iteration: 6, Func. Count: 54, Neg. LLF: 109.59715755035064
Iteration: 7, Func. Count: 63, Neg. LLF: 108.36179167594481
Iteration: 8, Func. Count: 71, Neg. LLF: 108.36114523507081
Iteration: 9, Func. Count: 79, Neg. LLF: 108.36102728100472
Iteration: 10, Func. Count: 87, Neg. LLF: 108.36095257126132
Iteration: 11, Func. Count: 95, Neg. LLF: 108.36094636508263
Iteration: 12, Func. Count: 103, Neg. LLF: 108.36094228916834
Iteration: 13, Func. Count: 110, Neg. LLF: 108.36094228916292
Optimization terminated successfully (Exit mode 0)
Current function value: 108.36094228916834
Iterations: 13
Function evaluations: 110
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 147.71546481367224
Iteration: 2, Func. Count: 20, Neg. LLF: 114.10275250159565
Iteration: 3, Func. Count: 30, Neg. LLF: 112.18246778620369
Iteration: 4, Func. Count: 40, Neg. LLF: 110.05837348708161
Iteration: 5, Func. Count: 50, Neg. LLF: 108.88717456617394
Iteration: 6, Func. Count: 60, Neg. LLF: 108.38689618166413
Iteration: 7, Func. Count: 69, Neg. LLF: 108.3656047730508
Iteration: 8, Func. Count: 78, Neg. LLF: 108.36243632509661
Iteration: 9, Func. Count: 87, Neg. LLF: 108.36104353882065
Iteration: 10, Func. Count: 96, Neg. LLF: 108.3609650180125
Iteration: 11, Func. Count: 105, Neg. LLF: 108.36094245223242
Iteration: 12, Func. Count: 113, Neg. LLF: 108.36094247523377
Optimization terminated successfully (Exit mode 0)
Current function value: 108.36094245223242
Iterations: 12
Function evaluations: 113
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 146.224026371527
Iteration: 2, Func. Count: 22, Neg. LLF: 114.6771742947611
Iteration: 3, Func. Count: 33, Neg. LLF: 113.79059495944978
Iteration: 4, Func. Count: 44, Neg. LLF: 109.94818970450936
Iteration: 5, Func. Count: 55, Neg. LLF: 109.17144705447859
Iteration: 6, Func. Count: 66, Neg. LLF: 108.45837111944863
Iteration: 7, Func. Count: 76, Neg. LLF: 108.37841201174632
Iteration: 8, Func. Count: 86, Neg. LLF: 108.36921362742831
Iteration: 9, Func. Count: 96, Neg. LLF: 108.36098734481283
Iteration: 10, Func. Count: 106, Neg. LLF: 108.3609477439977
Iteration: 11, Func. Count: 116, Neg. LLF: 108.3609431966771
Iteration: 12, Func. Count: 126, Neg. LLF: 108.36094204191991
Iteration: 13, Func. Count: 135, Neg. LLF: 108.36094206684162
Optimization terminated successfully (Exit mode 0)
Current function value: 108.36094204191991
Iterations: 13
Function evaluations: 135
Gradient evaluations: 13
Iteration: 1, Func. Count: 12, Neg. LLF: 143.95654035362813
Iteration: 2, Func. Count: 24, Neg. LLF: 114.17424989176446
Iteration: 3, Func. Count: 36, Neg. LLF: 118.33225954961277
Iteration: 4, Func. Count: 48, Neg. LLF: 109.74130743170622
Iteration: 5, Func. Count: 60, Neg. LLF: 109.13751041579158
Iteration: 6, Func. Count: 72, Neg. LLF: 109.87773451900004
Iteration: 7, Func. Count: 84, Neg. LLF: 108.31472875893729
Iteration: 8, Func. Count: 95, Neg. LLF: 108.39915072681329
Iteration: 9, Func. Count: 107, Neg. LLF: 108.18274095501626
Iteration: 10, Func. Count: 118, Neg. LLF: 107.64048348786658
Iteration: 11, Func. Count: 129, Neg. LLF: 107.55636619244687
Iteration: 12, Func. Count: 140, Neg. LLF: 108.84233415861176
Iteration: 13, Func. Count: 152, Neg. LLF: 107.77106745476584
Iteration: 14, Func. Count: 164, Neg. LLF: 107.51630314224575
Iteration: 15, Func. Count: 175, Neg. LLF: 107.5112768058934
Iteration: 16, Func. Count: 186, Neg. LLF: 107.51086503986218
Iteration: 17, Func. Count: 197, Neg. LLF: 107.51065445734187
Iteration: 18, Func. Count: 208, Neg. LLF: 107.51061796124837
Iteration: 19, Func. Count: 219, Neg. LLF: 107.51061502952199
Iteration: 20, Func. Count: 229, Neg. LLF: 107.51061499330918
Optimization terminated successfully (Exit mode 0)
Current function value: 107.51061502952199
Iterations: 20
Function evaluations: 229
Gradient evaluations: 20
Iteration: 1, Func. Count: 13, Neg. LLF: 142.2858353958199
Iteration: 2, Func. Count: 26, Neg. LLF: 114.50202929504543
Iteration: 3, Func. Count: 39, Neg. LLF: 118.33253361381685
Iteration: 4, Func. Count: 52, Neg. LLF: 110.44754984654583
Iteration: 5, Func. Count: 65, Neg. LLF: 107.9987794377898
Iteration: 6, Func. Count: 77, Neg. LLF: 440.66627728202917
Iteration: 7, Func. Count: 90, Neg. LLF: 107.68076089524449
Iteration: 8, Func. Count: 102, Neg. LLF: 108.43192755018465
Iteration: 9, Func. Count: 115, Neg. LLF: 107.81598527834464
Iteration: 10, Func. Count: 128, Neg. LLF: 107.54323902075052
Iteration: 11, Func. Count: 141, Neg. LLF: 107.43410589418248
Iteration: 12, Func. Count: 153, Neg. LLF: 107.43021736365316
Iteration: 13, Func. Count: 165, Neg. LLF: 107.42509455442644
Iteration: 14, Func. Count: 177, Neg. LLF: 107.41864223039917
Iteration: 15, Func. Count: 189, Neg. LLF: 107.39232292846575
Iteration: 16, Func. Count: 201, Neg. LLF: 107.7009668104792
Iteration: 17, Func. Count: 214, Neg. LLF: 107.41019095631206
Iteration: 18, Func. Count: 227, Neg. LLF: 107.37760646459485
Iteration: 19, Func. Count: 239, Neg. LLF: 107.37698220304863
Iteration: 20, Func. Count: 251, Neg. LLF: 107.3769825174436
Iteration: 21, Func. Count: 264, Neg. LLF: 107.37678142065239
Iteration: 22, Func. Count: 276, Neg. LLF: 107.37677955511373
Iteration: 23, Func. Count: 287, Neg. LLF: 107.37677950105639
Optimization terminated successfully (Exit mode 0)
Current function value: 107.37677955511373
Iterations: 23
Function evaluations: 287
Gradient evaluations: 23
Iteration: 1, Func. Count: 6, Neg. LLF: 121.8782140257048
Iteration: 2, Func. Count: 13, Neg. LLF: 154.47209791913693
Iteration: 3, Func. Count: 20, Neg. LLF: 113.99392953146872
Iteration: 4, Func. Count: 27, Neg. LLF: 110.5901518953642
Iteration: 5, Func. Count: 33, Neg. LLF: 110.39007435094376
Iteration: 6, Func. Count: 38, Neg. LLF: 110.38403376923877
Iteration: 7, Func. Count: 43, Neg. LLF: 110.38398631825967
Iteration: 8, Func. Count: 47, Neg. LLF: 110.38398631826763
Optimization terminated successfully (Exit mode 0)
Current function value: 110.38398631825967
Iterations: 8
Function evaluations: 47
Gradient evaluations: 8
Iteration: 1, Func. Count: 7, Neg. LLF: 116.56097013178572
Iteration: 2, Func. Count: 14, Neg. LLF: 114.21866731134767
Iteration: 3, Func. Count: 21, Neg. LLF: 111.48576175735725
Iteration: 4, Func. Count: 28, Neg. LLF: 114.49839781299926
Iteration: 5, Func. Count: 35, Neg. LLF: 110.28944915649512
Iteration: 6, Func. Count: 41, Neg. LLF: 110.28077482594853
Iteration: 7, Func. Count: 47, Neg. LLF: 110.28201438557652
Iteration: 8, Func. Count: 54, Neg. LLF: 110.2789456625495
Iteration: 9, Func. Count: 60, Neg. LLF: 110.27892452264443
Iteration: 10, Func. Count: 66, Neg. LLF: 110.27892042709641
Iteration: 11, Func. Count: 71, Neg. LLF: 110.27892042708915
Optimization terminated successfully (Exit mode 0)
Current function value: 110.27892042709641
Iterations: 11
Function evaluations: 71
Gradient evaluations: 11
Iteration: 1, Func. Count: 8, Neg. LLF: 116.71194327772037
Iteration: 2, Func. Count: 16, Neg. LLF: 114.32059782752424
Iteration: 3, Func. Count: 24, Neg. LLF: 110.58359890935236
Iteration: 4, Func. Count: 32, Neg. LLF: 121.70726514582186
Iteration: 5, Func. Count: 40, Neg. LLF: 110.06591311654796
Iteration: 6, Func. Count: 47, Neg. LLF: 110.05588227913417
Iteration: 7, Func. Count: 54, Neg. LLF: 110.046968362588
Iteration: 8, Func. Count: 61, Neg. LLF: 110.04659536588379
Iteration: 9, Func. Count: 68, Neg. LLF: 110.04658825334181
Iteration: 10, Func. Count: 74, Neg. LLF: 110.04658825333844
Optimization terminated successfully (Exit mode 0)
Current function value: 110.04658825334181
Iterations: 10
Function evaluations: 74
Gradient evaluations: 10
Iteration: 1, Func. Count: 9, Neg. LLF: 116.52152441186406
Iteration: 2, Func. Count: 18, Neg. LLF: 113.87242851030803
Iteration: 3, Func. Count: 27, Neg. LLF: 133.43849038863195
Iteration: 4, Func. Count: 36, Neg. LLF: 120.1998306753428
Iteration: 5, Func. Count: 45, Neg. LLF: 110.07042479720832
Iteration: 6, Func. Count: 53, Neg. LLF: 110.05652083361537
Iteration: 7, Func. Count: 61, Neg. LLF: 110.04797519332381
Iteration: 8, Func. Count: 69, Neg. LLF: 110.04664124692904
Iteration: 9, Func. Count: 77, Neg. LLF: 110.04659048085475
Iteration: 10, Func. Count: 85, Neg. LLF: 110.04658825604352
Iteration: 11, Func. Count: 92, Neg. LLF: 110.04658830628118
Optimization terminated successfully (Exit mode 0)
Current function value: 110.04658825604352
Iterations: 11
Function evaluations: 92
Gradient evaluations: 11
Iteration: 1, Func. Count: 10, Neg. LLF: 116.46599000981402
Iteration: 2, Func. Count: 20, Neg. LLF: 113.82109379545162
Iteration: 3, Func. Count: 30, Neg. LLF: 141.2093052124801
Iteration: 4, Func. Count: 40, Neg. LLF: 121.93537140018209
Iteration: 5, Func. Count: 50, Neg. LLF: 110.06488881730719
Iteration: 6, Func. Count: 59, Neg. LLF: 110.05254188302735
Iteration: 7, Func. Count: 68, Neg. LLF: 110.04744026385617
Iteration: 8, Func. Count: 77, Neg. LLF: 110.04665775501346
Iteration: 9, Func. Count: 86, Neg. LLF: 110.04658986819449
Iteration: 10, Func. Count: 95, Neg. LLF: 110.04658826456436
Iteration: 11, Func. Count: 103, Neg. LLF: 110.04658830584951
Optimization terminated successfully (Exit mode 0)
Current function value: 110.04658826456436
Iterations: 11
Function evaluations: 103
Gradient evaluations: 11
Iteration: 1, Func. Count: 7, Neg. LLF: 133.76938140638143
Iteration: 2, Func. Count: 15, Neg. LLF: 126.35270033227087
Iteration: 3, Func. Count: 22, Neg. LLF: 116.18979757545648
Iteration: 4, Func. Count: 30, Neg. LLF: 110.95693312869962
Iteration: 5, Func. Count: 37, Neg. LLF: 110.25524651851357
Iteration: 6, Func. Count: 44, Neg. LLF: 110.21884841509228
Iteration: 7, Func. Count: 50, Neg. LLF: 110.21572867268996
Iteration: 8, Func. Count: 56, Neg. LLF: 110.21572601222951
Iteration: 9, Func. Count: 61, Neg. LLF: 110.21572601223265
Optimization terminated successfully (Exit mode 0)
Current function value: 110.21572601222951
Iterations: 9
Function evaluations: 61
Gradient evaluations: 9
Iteration: 1, Func. Count: 8, Neg. LLF: 122.68778732398887
Iteration: 2, Func. Count: 16, Neg. LLF: 400.0765461185098
Iteration: 3, Func. Count: 25, Neg. LLF: 114.53692549816984
Iteration: 4, Func. Count: 33, Neg. LLF: 109.77120632191914
Iteration: 5, Func. Count: 40, Neg. LLF: 109.76869322880707
Iteration: 6, Func. Count: 48, Neg. LLF: 109.74478270966193
Iteration: 7, Func. Count: 55, Neg. LLF: 109.74372359939031
Iteration: 8, Func. Count: 62, Neg. LLF: 109.74369722475772
Iteration: 9, Func. Count: 68, Neg. LLF: 109.74369716659986
Optimization terminated successfully (Exit mode 0)
Current function value: 109.74369722475772
Iterations: 9
Function evaluations: 68
Gradient evaluations: 9
Iteration: 1, Func. Count: 9, Neg. LLF: 31317936.631485302
Iteration: 2, Func. Count: 19, Neg. LLF: 354.23037829139656
Iteration: 3, Func. Count: 29, Neg. LLF: 153.2434085139482
Iteration: 4, Func. Count: 38, Neg. LLF: 113.25680877913744
Iteration: 5, Func. Count: 47, Neg. LLF: 109.32624280096283
Iteration: 6, Func. Count: 55, Neg. LLF: 116.62177553718675
Iteration: 7, Func. Count: 65, Neg. LLF: 109.10222321459412
Iteration: 8, Func. Count: 73, Neg. LLF: 109.01405800966045
Iteration: 9, Func. Count: 81, Neg. LLF: 109.00805638129573
Iteration: 10, Func. Count: 89, Neg. LLF: 109.00554299516149
Iteration: 11, Func. Count: 97, Neg. LLF: 109.00434418419178
Iteration: 12, Func. Count: 105, Neg. LLF: 109.00326097578976
Iteration: 13, Func. Count: 113, Neg. LLF: 109.00167422079116
Iteration: 14, Func. Count: 121, Neg. LLF: 109.00061101558951
Iteration: 15, Func. Count: 129, Neg. LLF: 109.00008344038486
Iteration: 16, Func. Count: 137, Neg. LLF: 108.99994924519608
Iteration: 17, Func. Count: 145, Neg. LLF: 108.99992851872287
Iteration: 18, Func. Count: 153, Neg. LLF: 108.99992653172417
Iteration: 19, Func. Count: 160, Neg. LLF: 108.99992653168263
Optimization terminated successfully (Exit mode 0)
Current function value: 108.99992653172417
Iterations: 19
Function evaluations: 160
Gradient evaluations: 19
Iteration: 1, Func. Count: 10, Neg. LLF: 50248107.27391404
Iteration: 2, Func. Count: 21, Neg. LLF: 318.1607653626355
Iteration: 3, Func. Count: 32, Neg. LLF: 164.57776733318917
Iteration: 4, Func. Count: 42, Neg. LLF: 108.55503969663111
Iteration: 5, Func. Count: 51, Neg. LLF: 108.35803455453578
Iteration: 6, Func. Count: 60, Neg. LLF: 108.31231231095828
Iteration: 7, Func. Count: 69, Neg. LLF: 108.3004392257058
Iteration: 8, Func. Count: 78, Neg. LLF: 108.29907014259193
Iteration: 9, Func. Count: 87, Neg. LLF: 108.29858529095625
Iteration: 10, Func. Count: 96, Neg. LLF: 108.29856974028213
Iteration: 11, Func. Count: 105, Neg. LLF: 108.29855700491247
Iteration: 12, Func. Count: 114, Neg. LLF: 108.29855450454092
Iteration: 13, Func. Count: 122, Neg. LLF: 108.2985544371233
Optimization terminated successfully (Exit mode 0)
Current function value: 108.29855450454092
Iterations: 13
Function evaluations: 122
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 48669068.5815843
Iteration: 2, Func. Count: 23, Neg. LLF: 233.4574172981105
Iteration: 3, Func. Count: 35, Neg. LLF: 148.96200862400048
Iteration: 4, Func. Count: 46, Neg. LLF: 108.57326075509151
Iteration: 5, Func. Count: 56, Neg. LLF: 108.31371096491289
Iteration: 6, Func. Count: 66, Neg. LLF: 109.202798720184
Iteration: 7, Func. Count: 78, Neg. LLF: 108.3030202104815
Iteration: 8, Func. Count: 88, Neg. LLF: 108.29829120517735
Iteration: 9, Func. Count: 98, Neg. LLF: 108.29800312289213
Iteration: 10, Func. Count: 108, Neg. LLF: 108.29791049637728
Iteration: 11, Func. Count: 118, Neg. LLF: 108.29790791187486
Iteration: 12, Func. Count: 128, Neg. LLF: 108.29790634390046
Iteration: 13, Func. Count: 137, Neg. LLF: 108.29790627602549
Optimization terminated successfully (Exit mode 0)
Current function value: 108.29790634390046
Iterations: 13
Function evaluations: 137
Gradient evaluations: 13
Iteration: 1, Func. Count: 8, Neg. LLF: 129.09320803779252
Iteration: 2, Func. Count: 17, Neg. LLF: 124.54315969991586
Iteration: 3, Func. Count: 25, Neg. LLF: 113.79110380289141
Iteration: 4, Func. Count: 33, Neg. LLF: 110.76599025332399
Iteration: 5, Func. Count: 41, Neg. LLF: 110.14495936823259
Iteration: 6, Func. Count: 48, Neg. LLF: 110.09147181806175
Iteration: 7, Func. Count: 55, Neg. LLF: 110.09920072922439
Iteration: 8, Func. Count: 63, Neg. LLF: 110.0843339043157
Iteration: 9, Func. Count: 70, Neg. LLF: 110.08421165276889
Iteration: 10, Func. Count: 77, Neg. LLF: 110.08418153991425
Iteration: 11, Func. Count: 83, Neg. LLF: 110.08418151985009
Optimization terminated successfully (Exit mode 0)
Current function value: 110.08418153991425
Iterations: 11
Function evaluations: 83
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 116.22102565504962
Iteration: 2, Func. Count: 20, Neg. LLF: 280.47661696167853
Iteration: 3, Func. Count: 29, Neg. LLF: 111.9045673674153
Iteration: 4, Func. Count: 38, Neg. LLF: 109.927721544879
Iteration: 5, Func. Count: 46, Neg. LLF: 109.75087191705413
Iteration: 6, Func. Count: 54, Neg. LLF: 109.74502780447477
Iteration: 7, Func. Count: 62, Neg. LLF: 109.74384599411907
Iteration: 8, Func. Count: 70, Neg. LLF: 109.74369750300023
Iteration: 9, Func. Count: 78, Neg. LLF: 109.74369679184869
Optimization terminated successfully (Exit mode 0)
Current function value: 109.74369679184869
Iterations: 9
Function evaluations: 78
Gradient evaluations: 9
Iteration: 1, Func. Count: 10, Neg. LLF: 1943.0700351931096
Iteration: 2, Func. Count: 20, Neg. LLF: 124.18248716418157
Iteration: 3, Func. Count: 31, Neg. LLF: 109.60537667068562
Iteration: 4, Func. Count: 40, Neg. LLF: 110.45426226755242
Iteration: 5, Func. Count: 50, Neg. LLF: 112.21681398894805
Iteration: 6, Func. Count: 60, Neg. LLF: 109.31702045361497
Iteration: 7, Func. Count: 70, Neg. LLF: 109.02173308071934
Iteration: 8, Func. Count: 79, Neg. LLF: 109.00580353063431
Iteration: 9, Func. Count: 88, Neg. LLF: 109.00307327161869
Iteration: 10, Func. Count: 97, Neg. LLF: 109.00028238040424
Iteration: 11, Func. Count: 106, Neg. LLF: 108.99999344319266
Iteration: 12, Func. Count: 115, Neg. LLF: 108.99993033684238
Iteration: 13, Func. Count: 124, Neg. LLF: 108.99992658487879
Iteration: 14, Func. Count: 132, Neg. LLF: 108.99992658493672
Optimization terminated successfully (Exit mode 0)
Current function value: 108.99992658487879
Iterations: 14
Function evaluations: 132
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 22511684.742288925
Iteration: 2, Func. Count: 22, Neg. LLF: 121.95682162908842
Iteration: 3, Func. Count: 33, Neg. LLF: 109.62116181743528
Iteration: 4, Func. Count: 44, Neg. LLF: 108.78535365166829
Iteration: 5, Func. Count: 54, Neg. LLF: 109.59874713663476
Iteration: 6, Func. Count: 65, Neg. LLF: 108.89929773740923
Iteration: 7, Func. Count: 76, Neg. LLF: 108.30325894832173
Iteration: 8, Func. Count: 86, Neg. LLF: 108.29891918103262
Iteration: 9, Func. Count: 96, Neg. LLF: 108.298565079401
Iteration: 10, Func. Count: 106, Neg. LLF: 108.29855449436508
Iteration: 11, Func. Count: 115, Neg. LLF: 108.29855442690763
Optimization terminated successfully (Exit mode 0)
Current function value: 108.29855449436508
Iterations: 11
Function evaluations: 115
Gradient evaluations: 11
Iteration: 1, Func. Count: 12, Neg. LLF: 23330520.6459464
Iteration: 2, Func. Count: 25, Neg. LLF: 204.2089294420973
Iteration: 3, Func. Count: 37, Neg. LLF: 157.60032924029485
Iteration: 4, Func. Count: 49, Neg. LLF: 115.42246338784715
Iteration: 5, Func. Count: 61, Neg. LLF: 109.93201539637451
Iteration: 6, Func. Count: 73, Neg. LLF: 108.77096905498715
Iteration: 7, Func. Count: 84, Neg. LLF: 108.44246671925785
Iteration: 8, Func. Count: 95, Neg. LLF: 108.32493219884633
Iteration: 9, Func. Count: 106, Neg. LLF: 108.30606829726817
Iteration: 10, Func. Count: 117, Neg. LLF: 108.30230878133158
Iteration: 11, Func. Count: 128, Neg. LLF: 108.29885141832935
Iteration: 12, Func. Count: 139, Neg. LLF: 108.29838827791365
Iteration: 13, Func. Count: 150, Neg. LLF: 108.29793877611094
Iteration: 14, Func. Count: 161, Neg. LLF: 108.29790814518185
Iteration: 15, Func. Count: 172, Neg. LLF: 108.29790634221095
Iteration: 16, Func. Count: 182, Neg. LLF: 108.29790627431733
Optimization terminated successfully (Exit mode 0)
Current function value: 108.29790634221095
Iterations: 16
Function evaluations: 182
Gradient evaluations: 16
Iteration: 1, Func. Count: 9, Neg. LLF: 122.4417523117093
Iteration: 2, Func. Count: 19, Neg. LLF: 116.32862529102779
Iteration: 3, Func. Count: 29, Neg. LLF: 121.25663802918655
Iteration: 4, Func. Count: 38, Neg. LLF: 118.70247904466501
Iteration: 5, Func. Count: 47, Neg. LLF: 109.29324762917561
Iteration: 6, Func. Count: 55, Neg. LLF: 108.94874485340911
Iteration: 7, Func. Count: 63, Neg. LLF: 108.93540313688496
Iteration: 8, Func. Count: 71, Neg. LLF: 108.9248980856721
Iteration: 9, Func. Count: 79, Neg. LLF: 108.92479866663365
Iteration: 10, Func. Count: 87, Neg. LLF: 108.92479338464045
Iteration: 11, Func. Count: 94, Neg. LLF: 108.92479338460868
Optimization terminated successfully (Exit mode 0)
Current function value: 108.92479338464045
Iterations: 11
Function evaluations: 94
Gradient evaluations: 11
Iteration: 1, Func. Count: 10, Neg. LLF: 122.12401196962361
Iteration: 2, Func. Count: 20, Neg. LLF: 113.37656733182376
Iteration: 3, Func. Count: 30, Neg. LLF: 118.23086266880377
Iteration: 4, Func. Count: 40, Neg. LLF: 110.44962684940788
Iteration: 5, Func. Count: 50, Neg. LLF: 109.07248207087147
Iteration: 6, Func. Count: 59, Neg. LLF: 109.15658196378205
Iteration: 7, Func. Count: 69, Neg. LLF: 108.92765711865059
Iteration: 8, Func. Count: 78, Neg. LLF: 108.92502633173821
Iteration: 9, Func. Count: 87, Neg. LLF: 108.92489145630375
Iteration: 10, Func. Count: 96, Neg. LLF: 108.92479513749136
Iteration: 11, Func. Count: 105, Neg. LLF: 108.92479320354184
Iteration: 12, Func. Count: 113, Neg. LLF: 108.92479322888087
Optimization terminated successfully (Exit mode 0)
Current function value: 108.92479320354184
Iterations: 12
Function evaluations: 113
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 16695084.132256439
Iteration: 2, Func. Count: 22, Neg. LLF: 117.72223639051171
Iteration: 3, Func. Count: 34, Neg. LLF: 122.39780104149888
Iteration: 4, Func. Count: 45, Neg. LLF: 117.0805270049653
Iteration: 5, Func. Count: 56, Neg. LLF: 109.45191533448636
Iteration: 6, Func. Count: 67, Neg. LLF: 110.30355670346292
Iteration: 7, Func. Count: 78, Neg. LLF: 109.06905488091505
Iteration: 8, Func. Count: 88, Neg. LLF: 109.27535765200086
Iteration: 9, Func. Count: 99, Neg. LLF: 108.93311781128817
Iteration: 10, Func. Count: 109, Neg. LLF: 108.91861415853688
Iteration: 11, Func. Count: 119, Neg. LLF: 108.90703548973762
Iteration: 12, Func. Count: 129, Neg. LLF: 108.89823768867812
Iteration: 13, Func. Count: 139, Neg. LLF: 108.89160093063326
Iteration: 14, Func. Count: 149, Neg. LLF: 108.89111393505942
Iteration: 15, Func. Count: 159, Neg. LLF: 108.89107085221585
Iteration: 16, Func. Count: 169, Neg. LLF: 108.89104830573464
Iteration: 17, Func. Count: 179, Neg. LLF: 108.89102438064819
Iteration: 18, Func. Count: 189, Neg. LLF: 108.89100516168078
Iteration: 19, Func. Count: 199, Neg. LLF: 108.89099464369693
Iteration: 20, Func. Count: 209, Neg. LLF: 108.89099147040798
Iteration: 21, Func. Count: 218, Neg. LLF: 108.89099147044074
Optimization terminated successfully (Exit mode 0)
Current function value: 108.89099147040798
Iterations: 21
Function evaluations: 218
Gradient evaluations: 21
Iteration: 1, Func. Count: 12, Neg. LLF: 21535355.115554303
Iteration: 2, Func. Count: 24, Neg. LLF: 117.79048521298921
Iteration: 3, Func. Count: 36, Neg. LLF: 129.68350367934198
Iteration: 4, Func. Count: 48, Neg. LLF: 107.86998410455548
Iteration: 5, Func. Count: 59, Neg. LLF: 107.92108703408338
Iteration: 6, Func. Count: 71, Neg. LLF: 108.81567492833378
Iteration: 7, Func. Count: 83, Neg. LLF: 107.6753762517943
Iteration: 8, Func. Count: 94, Neg. LLF: 107.67067661607682
Iteration: 9, Func. Count: 105, Neg. LLF: 107.6701981367536
Iteration: 10, Func. Count: 116, Neg. LLF: 107.67017769665323
Iteration: 11, Func. Count: 126, Neg. LLF: 107.67017765302683
Optimization terminated successfully (Exit mode 0)
Current function value: 107.67017769665323
Iterations: 11
Function evaluations: 126
Gradient evaluations: 11
Iteration: 1, Func. Count: 13, Neg. LLF: 22731443.03267712
Iteration: 2, Func. Count: 27, Neg. LLF: 239.44352620590277
Iteration: 3, Func. Count: 40, Neg. LLF: 237.57661466059116
Iteration: 4, Func. Count: 53, Neg. LLF: 131.87158246134075
Iteration: 5, Func. Count: 66, Neg. LLF: 108.1940009126198
Iteration: 6, Func. Count: 78, Neg. LLF: 108.54869679175573
Iteration: 7, Func. Count: 91, Neg. LLF: 109.76148870964857
Iteration: 8, Func. Count: 105, Neg. LLF: 107.68352870824205
Iteration: 9, Func. Count: 117, Neg. LLF: 107.65608980681398
Iteration: 10, Func. Count: 129, Neg. LLF: 107.65241005725228
Iteration: 11, Func. Count: 141, Neg. LLF: 107.64972938316114
Iteration: 12, Func. Count: 153, Neg. LLF: 107.64868169392831
Iteration: 13, Func. Count: 165, Neg. LLF: 107.64847906481266
Iteration: 14, Func. Count: 177, Neg. LLF: 107.6484724407413
Iteration: 15, Func. Count: 188, Neg. LLF: 107.64847238298589
Optimization terminated successfully (Exit mode 0)
Current function value: 107.6484724407413
Iterations: 15
Function evaluations: 188
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 116.49188814013243
Iteration: 2, Func. Count: 20, Neg. LLF: 114.62423738829477
Iteration: 3, Func. Count: 31, Neg. LLF: 119.12548797611356
Iteration: 4, Func. Count: 41, Neg. LLF: 110.49649760072356
Iteration: 5, Func. Count: 51, Neg. LLF: 108.49057826716658
Iteration: 6, Func. Count: 60, Neg. LLF: 109.07893014604701
Iteration: 7, Func. Count: 70, Neg. LLF: 108.39577989223473
Iteration: 8, Func. Count: 80, Neg. LLF: 108.36172399796168
Iteration: 9, Func. Count: 89, Neg. LLF: 108.3615591939807
Iteration: 10, Func. Count: 99, Neg. LLF: 108.36095010366856
Iteration: 11, Func. Count: 108, Neg. LLF: 108.36094209087028
Iteration: 12, Func. Count: 116, Neg. LLF: 108.36094209086949
Optimization terminated successfully (Exit mode 0)
Current function value: 108.36094209087028
Iterations: 12
Function evaluations: 116
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 116.43436024988225
Iteration: 2, Func. Count: 22, Neg. LLF: 109.27953093382325
Iteration: 3, Func. Count: 32, Neg. LLF: 116.29272019579558
Iteration: 4, Func. Count: 43, Neg. LLF: 108.50717558608297
Iteration: 5, Func. Count: 53, Neg. LLF: 111.33321601381417
Iteration: 6, Func. Count: 64, Neg. LLF: 108.42470444952775
Iteration: 7, Func. Count: 75, Neg. LLF: 108.38959738222084
Iteration: 8, Func. Count: 86, Neg. LLF: 108.36106810861159
Iteration: 9, Func. Count: 96, Neg. LLF: 108.3609425202771
Iteration: 10, Func. Count: 105, Neg. LLF: 108.36094254338016
Optimization terminated successfully (Exit mode 0)
Current function value: 108.3609425202771
Iterations: 10
Function evaluations: 105
Gradient evaluations: 10
Iteration: 1, Func. Count: 12, Neg. LLF: 16559249.16159331
Iteration: 2, Func. Count: 24, Neg. LLF: 115.73052674342777
Iteration: 3, Func. Count: 37, Neg. LLF: 142.9452069926918
Iteration: 4, Func. Count: 49, Neg. LLF: 115.65533751876129
Iteration: 5, Func. Count: 61, Neg. LLF: 109.70642770724695
Iteration: 6, Func. Count: 73, Neg. LLF: 108.52729892760952
Iteration: 7, Func. Count: 84, Neg. LLF: 108.32225969092805
Iteration: 8, Func. Count: 95, Neg. LLF: 108.30892352642645
Iteration: 9, Func. Count: 106, Neg. LLF: 108.30495714843629
Iteration: 10, Func. Count: 117, Neg. LLF: 108.30359153361387
Iteration: 11, Func. Count: 128, Neg. LLF: 108.30216680567753
Iteration: 12, Func. Count: 139, Neg. LLF: 108.30205836420438
Iteration: 13, Func. Count: 150, Neg. LLF: 108.30204694770988
Iteration: 14, Func. Count: 160, Neg. LLF: 108.30204690499993
Optimization terminated successfully (Exit mode 0)
Current function value: 108.30204694770988
Iterations: 14
Function evaluations: 160
Gradient evaluations: 14
Iteration: 1, Func. Count: 13, Neg. LLF: 21855372.550995626
Iteration: 2, Func. Count: 26, Neg. LLF: 115.97933350026298
Iteration: 3, Func. Count: 39, Neg. LLF: 127.15816400939836
Iteration: 4, Func. Count: 52, Neg. LLF: 118.12354061900437
Iteration: 5, Func. Count: 65, Neg. LLF: 108.3607189486512
Iteration: 6, Func. Count: 77, Neg. LLF: 110.60074392353575
Iteration: 7, Func. Count: 90, Neg. LLF: 109.81269553700938
Iteration: 8, Func. Count: 104, Neg. LLF: 108.63966413958066
Iteration: 9, Func. Count: 117, Neg. LLF: 107.52808510344049
Iteration: 10, Func. Count: 129, Neg. LLF: 107.51773393539341
Iteration: 11, Func. Count: 141, Neg. LLF: 107.51431226139572
Iteration: 12, Func. Count: 153, Neg. LLF: 107.5120397355791
Iteration: 13, Func. Count: 165, Neg. LLF: 107.51094139227249
Iteration: 14, Func. Count: 177, Neg. LLF: 107.51062106520939
Iteration: 15, Func. Count: 189, Neg. LLF: 107.51061493446292
Iteration: 16, Func. Count: 200, Neg. LLF: 107.51061489819386
Optimization terminated successfully (Exit mode 0)
Current function value: 107.51061493446292
Iterations: 16
Function evaluations: 200
Gradient evaluations: 16
Iteration: 1, Func. Count: 14, Neg. LLF: 23885960.875709504
Iteration: 2, Func. Count: 29, Neg. LLF: 308.872938169253
Iteration: 3, Func. Count: 43, Neg. LLF: 1099.0763851485822
Iteration: 4, Func. Count: 57, Neg. LLF: 125.63334585291446
Iteration: 5, Func. Count: 71, Neg. LLF: 137.66937617113538
Iteration: 6, Func. Count: 85, Neg. LLF: 107.95562022188955
Iteration: 7, Func. Count: 98, Neg. LLF: 107.42544715310179
Iteration: 8, Func. Count: 111, Neg. LLF: 107.40744451765326
Iteration: 9, Func. Count: 124, Neg. LLF: 107.39074101129337
Iteration: 10, Func. Count: 137, Neg. LLF: 107.3833980208742
Iteration: 11, Func. Count: 150, Neg. LLF: 107.3805183597502
Iteration: 12, Func. Count: 163, Neg. LLF: 107.37839190648418
Iteration: 13, Func. Count: 176, Neg. LLF: 107.37714695339233
Iteration: 14, Func. Count: 189, Neg. LLF: 107.37687731758352
Iteration: 15, Func. Count: 202, Neg. LLF: 107.37680728684855
Iteration: 16, Func. Count: 215, Neg. LLF: 107.37678296451422
Iteration: 17, Func. Count: 228, Neg. LLF: 107.37677940279134
Iteration: 18, Func. Count: 240, Neg. LLF: 107.37677934866699
Optimization terminated successfully (Exit mode 0)
Current function value: 107.37677940279134
Iterations: 18
Function evaluations: 240
Gradient evaluations: 18
Iteration: 1, Func. Count: 7, Neg. LLF: 117.19578047023946
Iteration: 2, Func. Count: 15, Neg. LLF: 125.27626507908619
Iteration: 3, Func. Count: 22, Neg. LLF: 120.27022853752774
Iteration: 4, Func. Count: 29, Neg. LLF: 111.54828256814989
Iteration: 5, Func. Count: 36, Neg. LLF: 109.48695120561221
Iteration: 6, Func. Count: 42, Neg. LLF: 109.48305802835803
Iteration: 7, Func. Count: 48, Neg. LLF: 109.48149855910532
Iteration: 8, Func. Count: 54, Neg. LLF: 109.48146415527815
Iteration: 9, Func. Count: 60, Neg. LLF: 109.48146291394002
Iteration: 10, Func. Count: 65, Neg. LLF: 109.48146291393901
Optimization terminated successfully (Exit mode 0)
Current function value: 109.48146291394002
Iterations: 10
Function evaluations: 65
Gradient evaluations: 10
Iteration: 1, Func. Count: 8, Neg. LLF: 115.62165606054971
Iteration: 2, Func. Count: 16, Neg. LLF: 115.68136694645492
Iteration: 3, Func. Count: 24, Neg. LLF: 123.85909652131143
Iteration: 4, Func. Count: 32, Neg. LLF: 109.70181340355248
Iteration: 5, Func. Count: 39, Neg. LLF: 109.80737102697958
Iteration: 6, Func. Count: 47, Neg. LLF: 109.48588304110535
Iteration: 7, Func. Count: 54, Neg. LLF: 109.48193369707681
Iteration: 8, Func. Count: 61, Neg. LLF: 109.48147079899212
Iteration: 9, Func. Count: 68, Neg. LLF: 109.4814635702335
Iteration: 10, Func. Count: 75, Neg. LLF: 109.48146292129857
Optimization terminated successfully (Exit mode 0)
Current function value: 109.48146292129857
Iterations: 10
Function evaluations: 75
Gradient evaluations: 10
Iteration: 1, Func. Count: 9, Neg. LLF: 115.62146543480405
Iteration: 2, Func. Count: 18, Neg. LLF: 115.5723212397707
Iteration: 3, Func. Count: 27, Neg. LLF: 91962.98158480493
Iteration: 4, Func. Count: 36, Neg. LLF: 119.5550267088843
Iteration: 5, Func. Count: 45, Neg. LLF: 109.52282802893635
Iteration: 6, Func. Count: 53, Neg. LLF: 109.53967424670162
Iteration: 7, Func. Count: 62, Neg. LLF: 109.48506271257251
Iteration: 8, Func. Count: 70, Neg. LLF: 109.48168788441289
Iteration: 9, Func. Count: 78, Neg. LLF: 109.48147816348003
Iteration: 10, Func. Count: 86, Neg. LLF: 109.4814630185066
Iteration: 11, Func. Count: 93, Neg. LLF: 109.48146302746285
Optimization terminated successfully (Exit mode 0)
Current function value: 109.4814630185066
Iterations: 11
Function evaluations: 93
Gradient evaluations: 11
Iteration: 1, Func. Count: 10, Neg. LLF: 115.56304885302012
Iteration: 2, Func. Count: 20, Neg. LLF: 115.33543087876212
Iteration: 3, Func. Count: 30, Neg. LLF: 468.4897682765491
Iteration: 4, Func. Count: 40, Neg. LLF: 113.85498375037025
Iteration: 5, Func. Count: 50, Neg. LLF: 109.53073741723732
Iteration: 6, Func. Count: 59, Neg. LLF: 109.48889369863757
Iteration: 7, Func. Count: 68, Neg. LLF: 109.48228270917073
Iteration: 8, Func. Count: 77, Neg. LLF: 109.48155189450341
Iteration: 9, Func. Count: 86, Neg. LLF: 109.48146708742942
Iteration: 10, Func. Count: 95, Neg. LLF: 109.48146292759101
Iteration: 11, Func. Count: 103, Neg. LLF: 109.48146296688661
Optimization terminated successfully (Exit mode 0)
Current function value: 109.48146292759101
Iterations: 11
Function evaluations: 103
Gradient evaluations: 11
Iteration: 1, Func. Count: 11, Neg. LLF: 115.54834170954126
Iteration: 2, Func. Count: 22, Neg. LLF: 115.3707530154776
Iteration: 3, Func. Count: 33, Neg. LLF: 476.9667370865984
Iteration: 4, Func. Count: 44, Neg. LLF: 114.4230388479759
Iteration: 5, Func. Count: 55, Neg. LLF: 109.51922083690064
Iteration: 6, Func. Count: 65, Neg. LLF: 109.486852510289
Iteration: 7, Func. Count: 75, Neg. LLF: 109.48247195760143
Iteration: 8, Func. Count: 85, Neg. LLF: 109.48161118098446
Iteration: 9, Func. Count: 95, Neg. LLF: 109.48147342598168
Iteration: 10, Func. Count: 105, Neg. LLF: 109.48146298844601
Iteration: 11, Func. Count: 114, Neg. LLF: 109.48146301187482
Optimization terminated successfully (Exit mode 0)
Current function value: 109.48146298844601
Iterations: 11
Function evaluations: 114
Gradient evaluations: 11
Iteration: 1, Func. Count: 8, Neg. LLF: 128.5620920728321
Iteration: 2, Func. Count: 17, Neg. LLF: 121.51133452516784
Iteration: 3, Func. Count: 25, Neg. LLF: 113.99358329669678
Iteration: 4, Func. Count: 33, Neg. LLF: 108.95268436791926
Iteration: 5, Func. Count: 41, Neg. LLF: 108.12036289832753
Iteration: 6, Func. Count: 48, Neg. LLF: 112.78322309254882
Iteration: 7, Func. Count: 57, Neg. LLF: 108.11106346225196
Iteration: 8, Func. Count: 64, Neg. LLF: 108.0981482391485
Iteration: 9, Func. Count: 71, Neg. LLF: 108.09771921533418
Iteration: 10, Func. Count: 78, Neg. LLF: 108.09766498554241
Iteration: 11, Func. Count: 85, Neg. LLF: 108.09765739033533
Iteration: 12, Func. Count: 91, Neg. LLF: 108.09765739032078
Optimization terminated successfully (Exit mode 0)
Current function value: 108.09765739033533
Iterations: 12
Function evaluations: 91
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 132.0072967229444
Iteration: 2, Func. Count: 18, Neg. LLF: 109.1490819773599
Iteration: 3, Func. Count: 26, Neg. LLF: 110.01997280227384
Iteration: 4, Func. Count: 36, Neg. LLF: 115.57176826510917
Iteration: 5, Func. Count: 45, Neg. LLF: 112.80767600611563
Iteration: 6, Func. Count: 54, Neg. LLF: 108.21667610265358
Iteration: 7, Func. Count: 62, Neg. LLF: 108.1642365815889
Iteration: 8, Func. Count: 70, Neg. LLF: 108.11336424307108
Iteration: 9, Func. Count: 78, Neg. LLF: 108.09882137192388
Iteration: 10, Func. Count: 86, Neg. LLF: 108.09770235822559
Iteration: 11, Func. Count: 94, Neg. LLF: 108.09765919082434
Iteration: 12, Func. Count: 102, Neg. LLF: 108.09765732099025
Iteration: 13, Func. Count: 109, Neg. LLF: 108.09765738847011
Optimization terminated successfully (Exit mode 0)
Current function value: 108.09765732099025
Iterations: 13
Function evaluations: 109
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 31366772.512944244
Iteration: 2, Func. Count: 21, Neg. LLF: 368.81731078741376
Iteration: 3, Func. Count: 32, Neg. LLF: 153.50494228759803
Iteration: 4, Func. Count: 42, Neg. LLF: 113.24278089447539
Iteration: 5, Func. Count: 52, Neg. LLF: 109.3349170112678
Iteration: 6, Func. Count: 61, Neg. LLF: 116.81153094822812
Iteration: 7, Func. Count: 71, Neg. LLF: 109.09082806306691
Iteration: 8, Func. Count: 80, Neg. LLF: 109.38363065765967
Iteration: 9, Func. Count: 90, Neg. LLF: 109.5559682215045
Iteration: 10, Func. Count: 100, Neg. LLF: 109.3660153056626
Iteration: 11, Func. Count: 110, Neg. LLF: 108.14321184634257
Iteration: 12, Func. Count: 119, Neg. LLF: 108.8809666269323
Iteration: 13, Func. Count: 130, Neg. LLF: 108.3072712870731
Iteration: 14, Func. Count: 140, Neg. LLF: 107.99972287357996
Iteration: 15, Func. Count: 149, Neg. LLF: 107.99893780867757
Iteration: 16, Func. Count: 158, Neg. LLF: 107.99786464370628
Iteration: 17, Func. Count: 167, Neg. LLF: 107.99718019049456
Iteration: 18, Func. Count: 176, Neg. LLF: 107.99608765966265
Iteration: 19, Func. Count: 185, Neg. LLF: 107.99450606836083
Iteration: 20, Func. Count: 194, Neg. LLF: 107.99256613319469
Iteration: 21, Func. Count: 203, Neg. LLF: 107.99122043593628
Iteration: 22, Func. Count: 212, Neg. LLF: 107.99068946978677
Iteration: 23, Func. Count: 221, Neg. LLF: 107.9905304877377
Iteration: 24, Func. Count: 230, Neg. LLF: 107.99049840309937
Iteration: 25, Func. Count: 239, Neg. LLF: 107.99049446192251
Iteration: 26, Func. Count: 247, Neg. LLF: 107.99049446190244
Optimization terminated successfully (Exit mode 0)
Current function value: 107.99049446192251
Iterations: 26
Function evaluations: 247
Gradient evaluations: 26
Iteration: 1, Func. Count: 11, Neg. LLF: 50341051.721071824
Iteration: 2, Func. Count: 23, Neg. LLF: 310.32120814276
Iteration: 3, Func. Count: 35, Neg. LLF: 167.17726792494378
Iteration: 4, Func. Count: 46, Neg. LLF: 108.51144394146047
Iteration: 5, Func. Count: 56, Neg. LLF: 108.36294691362077
Iteration: 6, Func. Count: 66, Neg. LLF: 108.31054057037713
Iteration: 7, Func. Count: 76, Neg. LLF: 108.29993857865163
Iteration: 8, Func. Count: 86, Neg. LLF: 108.29889530150055
Iteration: 9, Func. Count: 96, Neg. LLF: 108.29857248142001
Iteration: 10, Func. Count: 106, Neg. LLF: 108.29856372531678
Iteration: 11, Func. Count: 116, Neg. LLF: 108.29855566618696
Iteration: 12, Func. Count: 126, Neg. LLF: 108.29855438944763
Iteration: 13, Func. Count: 135, Neg. LLF: 108.29855432201327
Optimization terminated successfully (Exit mode 0)
Current function value: 108.29855438944763
Iterations: 13
Function evaluations: 135
Gradient evaluations: 13
Iteration: 1, Func. Count: 12, Neg. LLF: 131.61975643667776
Iteration: 2, Func. Count: 24, Neg. LLF: 109.70305794228551
Iteration: 3, Func. Count: 36, Neg. LLF: 109.61239897085235
Iteration: 4, Func. Count: 48, Neg. LLF: 191.3639332539851
Iteration: 5, Func. Count: 60, Neg. LLF: 210.03497382083356
Iteration: 6, Func. Count: 72, Neg. LLF: 107.99836562595699
Iteration: 7, Func. Count: 83, Neg. LLF: 139.92460671404027
Iteration: 8, Func. Count: 96, Neg. LLF: 107.95547474885015
Iteration: 9, Func. Count: 107, Neg. LLF: 107.94556878157483
Iteration: 10, Func. Count: 118, Neg. LLF: 107.94485614215832
Iteration: 11, Func. Count: 129, Neg. LLF: 107.94478791537217
Iteration: 12, Func. Count: 140, Neg. LLF: 107.94477857478218
Iteration: 13, Func. Count: 150, Neg. LLF: 107.94477857478591
Optimization terminated successfully (Exit mode 0)
Current function value: 107.94477857478218
Iterations: 13
Function evaluations: 150
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 123.07307865157094
Iteration: 2, Func. Count: 19, Neg. LLF: 113.6009189525941
Iteration: 3, Func. Count: 29, Neg. LLF: 123.03898110695958
Iteration: 4, Func. Count: 38, Neg. LLF: 110.08120208682942
Iteration: 5, Func. Count: 47, Neg. LLF: 108.32031115954626
Iteration: 6, Func. Count: 55, Neg. LLF: 108.12802945148921
Iteration: 7, Func. Count: 63, Neg. LLF: 108.10231107246871
Iteration: 8, Func. Count: 71, Neg. LLF: 108.09806976576749
Iteration: 9, Func. Count: 79, Neg. LLF: 108.09776424313323
Iteration: 10, Func. Count: 87, Neg. LLF: 108.0976596429861
Iteration: 11, Func. Count: 95, Neg. LLF: 108.09765745591717
Iteration: 12, Func. Count: 102, Neg. LLF: 108.09765751548014
Optimization terminated successfully (Exit mode 0)
Current function value: 108.09765745591717
Iterations: 12
Function evaluations: 102
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 121.95534628543008
Iteration: 2, Func. Count: 20, Neg. LLF: 109.57087654473479
Iteration: 3, Func. Count: 29, Neg. LLF: 109.91425509819949
Iteration: 4, Func. Count: 39, Neg. LLF: 9029405.034449723
Iteration: 5, Func. Count: 49, Neg. LLF: 119.09494219483727
Iteration: 6, Func. Count: 59, Neg. LLF: 110.78118573457054
Iteration: 7, Func. Count: 69, Neg. LLF: 108.11818354222503
Iteration: 8, Func. Count: 78, Neg. LLF: 108.10524000481038
Iteration: 9, Func. Count: 87, Neg. LLF: 108.09796541425052
Iteration: 10, Func. Count: 96, Neg. LLF: 108.09768561523234
Iteration: 11, Func. Count: 105, Neg. LLF: 108.09765914451505
Iteration: 12, Func. Count: 114, Neg. LLF: 108.09765721306093
Iteration: 13, Func. Count: 122, Neg. LLF: 108.09765728055699
Optimization terminated successfully (Exit mode 0)
Current function value: 108.09765721306093
Iterations: 13
Function evaluations: 122
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 121.34210880699986
Iteration: 2, Func. Count: 22, Neg. LLF: 109.09748095928296
Iteration: 3, Func. Count: 32, Neg. LLF: 108.87319248669755
Iteration: 4, Func. Count: 42, Neg. LLF: 1329.0522187270265
Iteration: 5, Func. Count: 53, Neg. LLF: 114.41820385044193
Iteration: 6, Func. Count: 65, Neg. LLF: 127.68400989288128
Iteration: 7, Func. Count: 76, Neg. LLF: 108.03953729085326
Iteration: 8, Func. Count: 86, Neg. LLF: 108.00417436507624
Iteration: 9, Func. Count: 96, Neg. LLF: 107.9991561680146
Iteration: 10, Func. Count: 106, Neg. LLF: 107.99261244748175
Iteration: 11, Func. Count: 116, Neg. LLF: 107.99101164983435
Iteration: 12, Func. Count: 126, Neg. LLF: 107.99050611042529
Iteration: 13, Func. Count: 136, Neg. LLF: 107.99049640941448
Iteration: 14, Func. Count: 146, Neg. LLF: 107.99049461215223
Iteration: 15, Func. Count: 155, Neg. LLF: 107.99049461221422
Optimization terminated successfully (Exit mode 0)
Current function value: 107.99049461215223
Iterations: 15
Function evaluations: 155
Gradient evaluations: 15
Iteration: 1, Func. Count: 12, Neg. LLF: 120.87531036881643
Iteration: 2, Func. Count: 24, Neg. LLF: 109.5425714041054
Iteration: 3, Func. Count: 35, Neg. LLF: 112.49649834570228
Iteration: 4, Func. Count: 47, Neg. LLF: 191.056139171158
Iteration: 5, Func. Count: 59, Neg. LLF: 1152.052295378883
Iteration: 6, Func. Count: 71, Neg. LLF: 110.46815385999025
Iteration: 7, Func. Count: 83, Neg. LLF: 108.04661361163004
Iteration: 8, Func. Count: 94, Neg. LLF: 107.99729513213106
Iteration: 9, Func. Count: 105, Neg. LLF: 107.9933464429245
Iteration: 10, Func. Count: 116, Neg. LLF: 107.99201836338635
Iteration: 11, Func. Count: 127, Neg. LLF: 107.99080189582945
Iteration: 12, Func. Count: 138, Neg. LLF: 107.9905183999315
Iteration: 13, Func. Count: 149, Neg. LLF: 107.99049585924278
Iteration: 14, Func. Count: 160, Neg. LLF: 107.99049431040716
Iteration: 15, Func. Count: 170, Neg. LLF: 107.99049432681842
Optimization terminated successfully (Exit mode 0)
Current function value: 107.99049431040716
Iterations: 15
Function evaluations: 170
Gradient evaluations: 15
Iteration: 1, Func. Count: 13, Neg. LLF: 118.53574347354218
Iteration: 2, Func. Count: 26, Neg. LLF: 109.37780577461592
Iteration: 3, Func. Count: 38, Neg. LLF: 108.67731239561914
Iteration: 4, Func. Count: 50, Neg. LLF: 1496.0642263699049
Iteration: 5, Func. Count: 63, Neg. LLF: 130.23504691336245
Iteration: 6, Func. Count: 77, Neg. LLF: 116.46555137309093
Iteration: 7, Func. Count: 90, Neg. LLF: 109.2865763039957
Iteration: 8, Func. Count: 103, Neg. LLF: 108.00689977456534
Iteration: 9, Func. Count: 116, Neg. LLF: 107.95157181295247
Iteration: 10, Func. Count: 128, Neg. LLF: 107.94709639271605
Iteration: 11, Func. Count: 140, Neg. LLF: 107.94484472984578
Iteration: 12, Func. Count: 152, Neg. LLF: 107.94479130900517
Iteration: 13, Func. Count: 164, Neg. LLF: 107.9447798568864
Iteration: 14, Func. Count: 176, Neg. LLF: 107.9447786832758
Iteration: 15, Func. Count: 187, Neg. LLF: 107.94477868331228
Optimization terminated successfully (Exit mode 0)
Current function value: 107.9447786832758
Iterations: 15
Function evaluations: 187
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 118.20960356714994
Iteration: 2, Func. Count: 20, Neg. LLF: 117.75046611592276
Iteration: 3, Func. Count: 30, Neg. LLF: 116.00790827266093
Iteration: 4, Func. Count: 40, Neg. LLF: 5068795.416707629
Iteration: 5, Func. Count: 50, Neg. LLF: 166.03047733821785
Iteration: 6, Func. Count: 60, Neg. LLF: 108.65196097466406
Iteration: 7, Func. Count: 70, Neg. LLF: 108.08440828721524
Iteration: 8, Func. Count: 79, Neg. LLF: 111.63652209751046
Iteration: 9, Func. Count: 89, Neg. LLF: 108.07531022721915
Iteration: 10, Func. Count: 98, Neg. LLF: 108.07347847837865
Iteration: 11, Func. Count: 107, Neg. LLF: 108.07347291613466
Iteration: 12, Func. Count: 115, Neg. LLF: 108.0734729161195
Optimization terminated successfully (Exit mode 0)
Current function value: 108.07347291613466
Iterations: 12
Function evaluations: 115
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 119.83525208169974
Iteration: 2, Func. Count: 22, Neg. LLF: 110.2834398362753
Iteration: 3, Func. Count: 33, Neg. LLF: 113.433711787269
Iteration: 4, Func. Count: 44, Neg. LLF: 111.23865552819196
Iteration: 5, Func. Count: 55, Neg. LLF: 146.51583754426983
Iteration: 6, Func. Count: 66, Neg. LLF: 108.1204198502291
Iteration: 7, Func. Count: 76, Neg. LLF: 112.40584747656894
Iteration: 8, Func. Count: 87, Neg. LLF: 108.10703230353928
Iteration: 9, Func. Count: 98, Neg. LLF: 108.07438253086376
Iteration: 10, Func. Count: 108, Neg. LLF: 108.07353292778954
Iteration: 11, Func. Count: 118, Neg. LLF: 108.07348059288091
Iteration: 12, Func. Count: 128, Neg. LLF: 108.07347276942029
Iteration: 13, Func. Count: 137, Neg. LLF: 108.07347283073132
Optimization terminated successfully (Exit mode 0)
Current function value: 108.07347276942029
Iterations: 13
Function evaluations: 137
Gradient evaluations: 13
Iteration: 1, Func. Count: 12, Neg. LLF: 119.5573686135276
Iteration: 2, Func. Count: 24, Neg. LLF: 109.80032873148757
Iteration: 3, Func. Count: 36, Neg. LLF: 111.75100446717634
Iteration: 4, Func. Count: 48, Neg. LLF: 5873.685375001425
Iteration: 5, Func. Count: 60, Neg. LLF: 108.29729951070365
Iteration: 6, Func. Count: 71, Neg. LLF: 109.96570169740471
Iteration: 7, Func. Count: 83, Neg. LLF: 113.50596586366152
Iteration: 8, Func. Count: 95, Neg. LLF: 107.99940523603898
Iteration: 9, Func. Count: 106, Neg. LLF: 107.99174311475579
Iteration: 10, Func. Count: 117, Neg. LLF: 107.99022211171282
Iteration: 11, Func. Count: 128, Neg. LLF: 107.98929685142558
Iteration: 12, Func. Count: 139, Neg. LLF: 107.989063448709
Iteration: 13, Func. Count: 150, Neg. LLF: 107.98904972317528
Iteration: 14, Func. Count: 161, Neg. LLF: 107.98904526546893
Iteration: 15, Func. Count: 171, Neg. LLF: 107.98904526551028
Optimization terminated successfully (Exit mode 0)
Current function value: 107.98904526546893
Iterations: 15
Function evaluations: 171
Gradient evaluations: 15
Iteration: 1, Func. Count: 13, Neg. LLF: 121.72082173533649
Iteration: 2, Func. Count: 26, Neg. LLF: 109.8180110182223
Iteration: 3, Func. Count: 39, Neg. LLF: 111.35849108150072
Iteration: 4, Func. Count: 52, Neg. LLF: 230.23042880033574
Iteration: 5, Func. Count: 65, Neg. LLF: 148.27257191601424
Iteration: 6, Func. Count: 78, Neg. LLF: 108.12634087850634
Iteration: 7, Func. Count: 90, Neg. LLF: 108.02969038425049
Iteration: 8, Func. Count: 102, Neg. LLF: 108.20791451757592
Iteration: 9, Func. Count: 115, Neg. LLF: 107.99130711232735
Iteration: 10, Func. Count: 127, Neg. LLF: 107.9897958337651
Iteration: 11, Func. Count: 139, Neg. LLF: 107.98920019740915
Iteration: 12, Func. Count: 151, Neg. LLF: 107.98904845918202
Iteration: 13, Func. Count: 163, Neg. LLF: 107.98904484339796
Iteration: 14, Func. Count: 174, Neg. LLF: 107.9890448589961
Optimization terminated successfully (Exit mode 0)
Current function value: 107.98904484339796
Iterations: 14
Function evaluations: 174
Gradient evaluations: 14
Iteration: 1, Func. Count: 14, Neg. LLF: 119.2971674237471
Iteration: 2, Func. Count: 28, Neg. LLF: 109.11142752451963
Iteration: 3, Func. Count: 41, Neg. LLF: 114.68492653380876
Iteration: 4, Func. Count: 55, Neg. LLF: 256.04662077832296
Iteration: 5, Func. Count: 69, Neg. LLF: 20262.465205667402
Iteration: 6, Func. Count: 83, Neg. LLF: 129.04963418828368
Iteration: 7, Func. Count: 97, Neg. LLF: 336.3434041482952
Iteration: 8, Func. Count: 111, Neg. LLF: 108.19347901466925
Iteration: 9, Func. Count: 125, Neg. LLF: 107.95086584545004
Iteration: 10, Func. Count: 138, Neg. LLF: 107.939980021514
Iteration: 11, Func. Count: 151, Neg. LLF: 107.93798347682115
Iteration: 12, Func. Count: 164, Neg. LLF: 107.93663071883786
Iteration: 13, Func. Count: 177, Neg. LLF: 107.93654203997859
Iteration: 14, Func. Count: 190, Neg. LLF: 107.93652491726874
Iteration: 15, Func. Count: 202, Neg. LLF: 107.93652491731535
Optimization terminated successfully (Exit mode 0)
Current function value: 107.93652491726874
Iterations: 15
Function evaluations: 202
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 115.13662276408246
Iteration: 2, Func. Count: 23, Neg. LLF: 116.15485462367138
Iteration: 3, Func. Count: 35, Neg. LLF: 118.3366635281952
Iteration: 4, Func. Count: 46, Neg. LLF: 110.60246027017973
Iteration: 5, Func. Count: 57, Neg. LLF: 108.23769303714333
Iteration: 6, Func. Count: 67, Neg. LLF: 108.20417179998917
Iteration: 7, Func. Count: 78, Neg. LLF: 119.19014814828887
Iteration: 8, Func. Count: 90, Neg. LLF: 108.08448233526448
Iteration: 9, Func. Count: 100, Neg. LLF: 108.07461860738327
Iteration: 10, Func. Count: 110, Neg. LLF: 108.07357590268644
Iteration: 11, Func. Count: 120, Neg. LLF: 108.07347962273249
Iteration: 12, Func. Count: 130, Neg. LLF: 108.07347315707112
Iteration: 13, Func. Count: 139, Neg. LLF: 108.07347316311925
Optimization terminated successfully (Exit mode 0)
Current function value: 108.07347315707112
Iterations: 13
Function evaluations: 139
Gradient evaluations: 13
Iteration: 1, Func. Count: 12, Neg. LLF: 124.39229349478939
Iteration: 2, Func. Count: 24, Neg. LLF: 111.20030521978751
Iteration: 3, Func. Count: 36, Neg. LLF: 112.45626277180868
Iteration: 4, Func. Count: 48, Neg. LLF: 110.62333742077976
Iteration: 5, Func. Count: 60, Neg. LLF: 108.80755694246261
Iteration: 6, Func. Count: 72, Neg. LLF: 108.17938170230973
Iteration: 7, Func. Count: 83, Neg. LLF: 108.39567626150783
Iteration: 8, Func. Count: 95, Neg. LLF: 108.74883161477567
Iteration: 9, Func. Count: 107, Neg. LLF: 108.07835879055658
Iteration: 10, Func. Count: 118, Neg. LLF: 108.07527066578872
Iteration: 11, Func. Count: 129, Neg. LLF: 108.07350008783602
Iteration: 12, Func. Count: 140, Neg. LLF: 108.0734775161657
Iteration: 13, Func. Count: 151, Neg. LLF: 108.07347274676445
Iteration: 14, Func. Count: 161, Neg. LLF: 108.0734728080789
Optimization terminated successfully (Exit mode 0)
Current function value: 108.07347274676445
Iterations: 14
Function evaluations: 161
Gradient evaluations: 14
Iteration: 1, Func. Count: 13, Neg. LLF: 124.70280415028566
Iteration: 2, Func. Count: 26, Neg. LLF: 110.36553511997803
Iteration: 3, Func. Count: 39, Neg. LLF: 112.34358121345556
Iteration: 4, Func. Count: 52, Neg. LLF: 115.64566155932383
Iteration: 5, Func. Count: 65, Neg. LLF: 108.22180960771463
Iteration: 6, Func. Count: 77, Neg. LLF: 108.20973981761584
Iteration: 7, Func. Count: 90, Neg. LLF: 109.06138641627147
Iteration: 8, Func. Count: 104, Neg. LLF: 108.00107585504557
Iteration: 9, Func. Count: 116, Neg. LLF: 107.99209072383277
Iteration: 10, Func. Count: 128, Neg. LLF: 107.98955230575793
Iteration: 11, Func. Count: 140, Neg. LLF: 107.98925062766543
Iteration: 12, Func. Count: 152, Neg. LLF: 107.989059415293
Iteration: 13, Func. Count: 164, Neg. LLF: 107.98904642453773
Iteration: 14, Func. Count: 176, Neg. LLF: 107.98904473460948
Iteration: 15, Func. Count: 187, Neg. LLF: 107.98904473460264
Optimization terminated successfully (Exit mode 0)
Current function value: 107.98904473460948
Iterations: 15
Function evaluations: 187
Gradient evaluations: 15
Iteration: 1, Func. Count: 14, Neg. LLF: 124.83762257401489
Iteration: 2, Func. Count: 28, Neg. LLF: 109.91398407908477
Iteration: 3, Func. Count: 42, Neg. LLF: 113.57436826870719
Iteration: 4, Func. Count: 56, Neg. LLF: 114.40999290229087
Iteration: 5, Func. Count: 70, Neg. LLF: 109.65223722145201
Iteration: 6, Func. Count: 84, Neg. LLF: 108.24505746618263
Iteration: 7, Func. Count: 97, Neg. LLF: 108.10926112565423
Iteration: 8, Func. Count: 110, Neg. LLF: 109.58414703093082
Iteration: 9, Func. Count: 125, Neg. LLF: 108.00530128412777
Iteration: 10, Func. Count: 138, Neg. LLF: 107.99253777091401
Iteration: 11, Func. Count: 151, Neg. LLF: 107.98953531926466
Iteration: 12, Func. Count: 164, Neg. LLF: 107.98925229188733
Iteration: 13, Func. Count: 177, Neg. LLF: 107.98904551293042
Iteration: 14, Func. Count: 190, Neg. LLF: 107.98904484985604
Optimization terminated successfully (Exit mode 0)
Current function value: 107.98904484985604
Iterations: 14
Function evaluations: 190
Gradient evaluations: 14
Iteration: 1, Func. Count: 15, Neg. LLF: 124.85262912084397
Iteration: 2, Func. Count: 30, Neg. LLF: 110.52821500991608
Iteration: 3, Func. Count: 45, Neg. LLF: 113.57226796032641
Iteration: 4, Func. Count: 60, Neg. LLF: 112.61674814909749
Iteration: 5, Func. Count: 75, Neg. LLF: 120.8659849526942
Iteration: 6, Func. Count: 90, Neg. LLF: 110.5805478809031
Iteration: 7, Func. Count: 105, Neg. LLF: 108.10846305682567
Iteration: 8, Func. Count: 119, Neg. LLF: 107.90196866439629
Iteration: 9, Func. Count: 134, Neg. LLF: 107.42031564224347
Iteration: 10, Func. Count: 148, Neg. LLF: 107.41509478311818
Iteration: 11, Func. Count: 162, Neg. LLF: 107.41049701209175
Iteration: 12, Func. Count: 176, Neg. LLF: 107.40084687826585
Iteration: 13, Func. Count: 190, Neg. LLF: 107.49404979385959
Iteration: 14, Func. Count: 205, Neg. LLF: 107.41803512548236
Iteration: 15, Func. Count: 220, Neg. LLF: 107.38415224778524
Iteration: 16, Func. Count: 234, Neg. LLF: 107.3789065617804
Iteration: 17, Func. Count: 248, Neg. LLF: 107.37730802736598
Iteration: 18, Func. Count: 262, Neg. LLF: 107.37680849788663
Iteration: 19, Func. Count: 276, Neg. LLF: 107.37678144270738
Iteration: 20, Func. Count: 290, Neg. LLF: 107.37677983660804
Iteration: 21, Func. Count: 304, Neg. LLF: 107.37677923498887
Optimization terminated successfully (Exit mode 0)
Current function value: 107.37677923498887
Iterations: 21
Function evaluations: 304
Gradient evaluations: 21
Iteration: 1, Func. Count: 8, Neg. LLF: 117.80931469040132
Iteration: 2, Func. Count: 17, Neg. LLF: 126.33162831071115
Iteration: 3, Func. Count: 25, Neg. LLF: 124.5469136511048
Iteration: 4, Func. Count: 33, Neg. LLF: 112.12489422948498
Iteration: 5, Func. Count: 41, Neg. LLF: 109.49407240820193
Iteration: 6, Func. Count: 48, Neg. LLF: 109.48717905542064
Iteration: 7, Func. Count: 55, Neg. LLF: 109.48386803293788
Iteration: 8, Func. Count: 62, Neg. LLF: 109.48240697646135
Iteration: 9, Func. Count: 69, Neg. LLF: 109.48153856763842
Iteration: 10, Func. Count: 76, Neg. LLF: 109.48146641501035
Iteration: 11, Func. Count: 83, Neg. LLF: 109.48146293562756
Iteration: 12, Func. Count: 89, Neg. LLF: 109.4814630743327
Optimization terminated successfully (Exit mode 0)
Current function value: 109.48146293562756
Iterations: 12
Function evaluations: 89
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 115.22862469621266
Iteration: 2, Func. Count: 18, Neg. LLF: 114.28078671976456
Iteration: 3, Func. Count: 27, Neg. LLF: 131.926707697041
Iteration: 4, Func. Count: 36, Neg. LLF: 120.79371426335277
Iteration: 5, Func. Count: 45, Neg. LLF: 109.52896649668615
Iteration: 6, Func. Count: 53, Neg. LLF: 109.494697586718
Iteration: 7, Func. Count: 61, Neg. LLF: 109.48601432564915
Iteration: 8, Func. Count: 69, Neg. LLF: 109.48210387386112
Iteration: 9, Func. Count: 77, Neg. LLF: 109.4815310645653
Iteration: 10, Func. Count: 85, Neg. LLF: 109.48146538676143
Iteration: 11, Func. Count: 93, Neg. LLF: 109.48146315729599
Iteration: 12, Func. Count: 100, Neg. LLF: 109.48146320506117
Optimization terminated successfully (Exit mode 0)
Current function value: 109.48146315729599
Iterations: 12
Function evaluations: 100
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 115.22888980574521
Iteration: 2, Func. Count: 20, Neg. LLF: 114.30254781022411
Iteration: 3, Func. Count: 30, Neg. LLF: 1908.7650623535658
Iteration: 4, Func. Count: 40, Neg. LLF: 135.65225523695048
Iteration: 5, Func. Count: 50, Neg. LLF: 109.52588706170839
Iteration: 6, Func. Count: 59, Neg. LLF: 109.77720177893129
Iteration: 7, Func. Count: 69, Neg. LLF: 109.48434507399946
Iteration: 8, Func. Count: 78, Neg. LLF: 109.48207543282355
Iteration: 9, Func. Count: 87, Neg. LLF: 109.48147878900858
Iteration: 10, Func. Count: 96, Neg. LLF: 109.48146305003745
Iteration: 11, Func. Count: 104, Neg. LLF: 109.48146305900407
Optimization terminated successfully (Exit mode 0)
Current function value: 109.48146305003745
Iterations: 11
Function evaluations: 104
Gradient evaluations: 11
Iteration: 1, Func. Count: 11, Neg. LLF: 115.16920341196813
Iteration: 2, Func. Count: 22, Neg. LLF: 109.70066626455228
Iteration: 3, Func. Count: 32, Neg. LLF: 116.14340489395616
Iteration: 4, Func. Count: 43, Neg. LLF: 112.19074987688627
Iteration: 5, Func. Count: 55, Neg. LLF: 110.80438528753882
Iteration: 6, Func. Count: 66, Neg. LLF: 109.5139379620539
Iteration: 7, Func. Count: 76, Neg. LLF: 109.49323046767498
Iteration: 8, Func. Count: 86, Neg. LLF: 109.48241818529172
Iteration: 9, Func. Count: 96, Neg. LLF: 109.48148328787292
Iteration: 10, Func. Count: 106, Neg. LLF: 109.4814632100286
Iteration: 11, Func. Count: 115, Neg. LLF: 109.48146324928796
Optimization terminated successfully (Exit mode 0)
Current function value: 109.4814632100286
Iterations: 11
Function evaluations: 115
Gradient evaluations: 11
Iteration: 1, Func. Count: 12, Neg. LLF: 115.00383930939488
Iteration: 2, Func. Count: 24, Neg. LLF: 111.58718317348556
Iteration: 3, Func. Count: 36, Neg. LLF: 111.63288548230749
Iteration: 4, Func. Count: 48, Neg. LLF: 113.29443517715279
Iteration: 5, Func. Count: 60, Neg. LLF: 110.76686867697045
Iteration: 6, Func. Count: 72, Neg. LLF: 109.51986551389643
Iteration: 7, Func. Count: 83, Neg. LLF: 109.49398385841472
Iteration: 8, Func. Count: 94, Neg. LLF: 109.48503142044873
Iteration: 9, Func. Count: 105, Neg. LLF: 109.48149352857084
Iteration: 10, Func. Count: 116, Neg. LLF: 109.48146349219431
Iteration: 11, Func. Count: 127, Neg. LLF: 109.48146291370836
Optimization terminated successfully (Exit mode 0)
Current function value: 109.48146291370836
Iterations: 11
Function evaluations: 127
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 126.66303655397392
Iteration: 2, Func. Count: 19, Neg. LLF: 121.25987615611058
Iteration: 3, Func. Count: 28, Neg. LLF: 115.38198630663851
Iteration: 4, Func. Count: 37, Neg. LLF: 110.2915625635473
Iteration: 5, Func. Count: 46, Neg. LLF: 108.17343478025855
Iteration: 6, Func. Count: 54, Neg. LLF: 108.11478640325934
Iteration: 7, Func. Count: 62, Neg. LLF: 109.07835330153135
Iteration: 8, Func. Count: 72, Neg. LLF: 108.10105584180599
Iteration: 9, Func. Count: 80, Neg. LLF: 108.09782016689601
Iteration: 10, Func. Count: 88, Neg. LLF: 108.09769947230174
Iteration: 11, Func. Count: 96, Neg. LLF: 108.09765739007618
Iteration: 12, Func. Count: 103, Neg. LLF: 108.09765739005692
Optimization terminated successfully (Exit mode 0)
Current function value: 108.09765739007618
Iterations: 12
Function evaluations: 103
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 124.16447241277862
Iteration: 2, Func. Count: 20, Neg. LLF: 486.1315055703287
Iteration: 3, Func. Count: 31, Neg. LLF: 113.53414158441126
Iteration: 4, Func. Count: 41, Neg. LLF: 109.75370663740004
Iteration: 5, Func. Count: 50, Neg. LLF: 109.74467699221617
Iteration: 6, Func. Count: 59, Neg. LLF: 109.74409773900396
Iteration: 7, Func. Count: 68, Neg. LLF: 109.74378272058986
Iteration: 8, Func. Count: 77, Neg. LLF: 109.74370273520198
Iteration: 9, Func. Count: 86, Neg. LLF: 109.74369694189758
Iteration: 10, Func. Count: 94, Neg. LLF: 109.74369688376235
Optimization terminated successfully (Exit mode 0)
Current function value: 109.74369694189758
Iterations: 10
Function evaluations: 94
Gradient evaluations: 10
Iteration: 1, Func. Count: 11, Neg. LLF: 31104047.34755357
Iteration: 2, Func. Count: 23, Neg. LLF: 351.2452410842978
Iteration: 3, Func. Count: 35, Neg. LLF: 154.25709644748449
Iteration: 4, Func. Count: 46, Neg. LLF: 113.25002518079877
Iteration: 5, Func. Count: 57, Neg. LLF: 109.310991495026
Iteration: 6, Func. Count: 67, Neg. LLF: 116.71478602429494
Iteration: 7, Func. Count: 79, Neg. LLF: 109.10774246730237
Iteration: 8, Func. Count: 89, Neg. LLF: 108.89807847934046
Iteration: 9, Func. Count: 99, Neg. LLF: 109.03969307580803
Iteration: 10, Func. Count: 110, Neg. LLF: 108.19605844551657
Iteration: 11, Func. Count: 120, Neg. LLF: 108.09319141655507
Iteration: 12, Func. Count: 130, Neg. LLF: 108.03570562455094
Iteration: 13, Func. Count: 140, Neg. LLF: 108.00613700053248
Iteration: 14, Func. Count: 150, Neg. LLF: 107.99498243885093
Iteration: 15, Func. Count: 160, Neg. LLF: 107.99406015649177
Iteration: 16, Func. Count: 170, Neg. LLF: 107.99381458573095
Iteration: 17, Func. Count: 180, Neg. LLF: 107.99334599615473
Iteration: 18, Func. Count: 190, Neg. LLF: 107.99275860156403
Iteration: 19, Func. Count: 200, Neg. LLF: 107.9918989760639
Iteration: 20, Func. Count: 210, Neg. LLF: 107.99107446649273
Iteration: 21, Func. Count: 220, Neg. LLF: 107.99061855988172
Iteration: 22, Func. Count: 230, Neg. LLF: 107.99050742679188
Iteration: 23, Func. Count: 240, Neg. LLF: 107.99049487761027
Iteration: 24, Func. Count: 250, Neg. LLF: 107.99049420083078
Optimization terminated successfully (Exit mode 0)
Current function value: 107.99049420083078
Iterations: 24
Function evaluations: 250
Gradient evaluations: 24
Iteration: 1, Func. Count: 12, Neg. LLF: 50016351.461050354
Iteration: 2, Func. Count: 25, Neg. LLF: 308.2508197570901
Iteration: 3, Func. Count: 38, Neg. LLF: 167.80380463168214
Iteration: 4, Func. Count: 50, Neg. LLF: 108.54796672722823
Iteration: 5, Func. Count: 61, Neg. LLF: 108.35523044538627
Iteration: 6, Func. Count: 72, Neg. LLF: 108.31164290263108
Iteration: 7, Func. Count: 83, Neg. LLF: 108.30058987537583
Iteration: 8, Func. Count: 94, Neg. LLF: 108.29915799142844
Iteration: 9, Func. Count: 105, Neg. LLF: 108.29859565349952
Iteration: 10, Func. Count: 116, Neg. LLF: 108.29857467941797
Iteration: 11, Func. Count: 127, Neg. LLF: 108.29855691480009
Iteration: 12, Func. Count: 138, Neg. LLF: 108.29855446541171
Iteration: 13, Func. Count: 148, Neg. LLF: 108.29855439800906
Optimization terminated successfully (Exit mode 0)
Current function value: 108.29855446541171
Iterations: 13
Function evaluations: 148
Gradient evaluations: 13
Iteration: 1, Func. Count: 13, Neg. LLF: 48436528.78926013
Iteration: 2, Func. Count: 27, Neg. LLF: 229.8463760616794
Iteration: 3, Func. Count: 41, Neg. LLF: 148.43837879025293
Iteration: 4, Func. Count: 54, Neg. LLF: 116.60127515771384
Iteration: 5, Func. Count: 67, Neg. LLF: 110.95426966736919
Iteration: 6, Func. Count: 80, Neg. LLF: 110.92547051660067
Iteration: 7, Func. Count: 93, Neg. LLF: 109.85249233835044
Iteration: 8, Func. Count: 106, Neg. LLF: 108.74150315030282
Iteration: 9, Func. Count: 119, Neg. LLF: 108.25687934762786
Iteration: 10, Func. Count: 131, Neg. LLF: 108.98400335570294
Iteration: 11, Func. Count: 144, Neg. LLF: 110.47375244010063
Iteration: 12, Func. Count: 158, Neg. LLF: 108.01766232598742
Iteration: 13, Func. Count: 170, Neg. LLF: 107.97311978359427
Iteration: 14, Func. Count: 182, Neg. LLF: 107.95942875793858
Iteration: 15, Func. Count: 194, Neg. LLF: 107.95163229280863
Iteration: 16, Func. Count: 206, Neg. LLF: 107.94797816178966
Iteration: 17, Func. Count: 218, Neg. LLF: 107.94776007292003
Iteration: 18, Func. Count: 230, Neg. LLF: 107.94772809639814
Iteration: 19, Func. Count: 242, Neg. LLF: 107.9476977156351
Iteration: 20, Func. Count: 254, Neg. LLF: 107.9476308140436
Iteration: 21, Func. Count: 266, Neg. LLF: 107.94745595225501
Iteration: 22, Func. Count: 278, Neg. LLF: 107.94706529517389
Iteration: 23, Func. Count: 290, Neg. LLF: 107.9463292641189
Iteration: 24, Func. Count: 302, Neg. LLF: 107.94541809415006
Iteration: 25, Func. Count: 314, Neg. LLF: 107.94488161715908
Iteration: 26, Func. Count: 326, Neg. LLF: 107.9447840042936
Iteration: 27, Func. Count: 338, Neg. LLF: 107.94477865002499
Iteration: 28, Func. Count: 349, Neg. LLF: 107.94477865002338
Optimization terminated successfully (Exit mode 0)
Current function value: 107.94477865002499
Iterations: 28
Function evaluations: 349
Gradient evaluations: 28
Iteration: 1, Func. Count: 10, Neg. LLF: 121.31068887298028
Iteration: 2, Func. Count: 21, Neg. LLF: 113.72380602567075
Iteration: 3, Func. Count: 32, Neg. LLF: 119.91762558137792
Iteration: 4, Func. Count: 42, Neg. LLF: 179.10061208144856
Iteration: 5, Func. Count: 52, Neg. LLF: 109.72700402308169
Iteration: 6, Func. Count: 62, Neg. LLF: 108.14459298206029
Iteration: 7, Func. Count: 71, Neg. LLF: 108.10570812606528
Iteration: 8, Func. Count: 80, Neg. LLF: 108.0994517786833
Iteration: 9, Func. Count: 89, Neg. LLF: 108.0979396947506
Iteration: 10, Func. Count: 98, Neg. LLF: 108.09768781757309
Iteration: 11, Func. Count: 107, Neg. LLF: 108.09765982328452
Iteration: 12, Func. Count: 116, Neg. LLF: 108.09765818897756
Iteration: 13, Func. Count: 125, Neg. LLF: 108.09765721606576
Optimization terminated successfully (Exit mode 0)
Current function value: 108.09765721606576
Iterations: 13
Function evaluations: 125
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 116.5021981621585
Iteration: 2, Func. Count: 23, Neg. LLF: 290.50652013281547
Iteration: 3, Func. Count: 34, Neg. LLF: 110.53839711112276
Iteration: 4, Func. Count: 45, Neg. LLF: 110.95448042993567
Iteration: 5, Func. Count: 56, Neg. LLF: 131.97505109505371
Iteration: 6, Func. Count: 68, Neg. LLF: 108.62093291001372
Iteration: 7, Func. Count: 78, Neg. LLF: 109.02503932829887
Iteration: 8, Func. Count: 90, Neg. LLF: 108.36747944552384
Iteration: 9, Func. Count: 100, Neg. LLF: 108.3063295744602
Iteration: 10, Func. Count: 110, Neg. LLF: 108.27210799904603
Iteration: 11, Func. Count: 120, Neg. LLF: 108.23291053015825
Iteration: 12, Func. Count: 130, Neg. LLF: 108.19972537171586
Iteration: 13, Func. Count: 140, Neg. LLF: 108.18571275493791
Iteration: 14, Func. Count: 150, Neg. LLF: 108.17707414857851
Iteration: 15, Func. Count: 160, Neg. LLF: 108.16222776728961
Iteration: 16, Func. Count: 170, Neg. LLF: 108.1364533459358
Iteration: 17, Func. Count: 180, Neg. LLF: 108.11200479793773
Iteration: 18, Func. Count: 190, Neg. LLF: 108.09967570607186
Iteration: 19, Func. Count: 200, Neg. LLF: 108.09767091685686
Iteration: 20, Func. Count: 210, Neg. LLF: 108.09765808745465
Iteration: 21, Func. Count: 220, Neg. LLF: 108.09765733588284
Optimization terminated successfully (Exit mode 0)
Current function value: 108.09765733588284
Iterations: 21
Function evaluations: 220
Gradient evaluations: 21
Iteration: 1, Func. Count: 12, Neg. LLF: 7270.841904001415
Iteration: 2, Func. Count: 24, Neg. LLF: 123.99673975957224
Iteration: 3, Func. Count: 36, Neg. LLF: 122.61434588944437
Iteration: 4, Func. Count: 48, Neg. LLF: 114.59193282193708
Iteration: 5, Func. Count: 60, Neg. LLF: 115.17998670998736
Iteration: 6, Func. Count: 72, Neg. LLF: 109.26365090726047
Iteration: 7, Func. Count: 83, Neg. LLF: 109.02274877324734
Iteration: 8, Func. Count: 94, Neg. LLF: 111.30658619430125
Iteration: 9, Func. Count: 106, Neg. LLF: 113.22034730741453
Iteration: 10, Func. Count: 118, Neg. LLF: 112.75951640689813
Iteration: 11, Func. Count: 130, Neg. LLF: 112.32267318589217
Iteration: 12, Func. Count: 142, Neg. LLF: 112.23081754435557
Iteration: 13, Func. Count: 154, Neg. LLF: 16582.92012431161
Iteration: 14, Func. Count: 166, Neg. LLF: 111.90212391439287
Iteration: 15, Func. Count: 178, Neg. LLF: 108.53142233303147
Iteration: 16, Func. Count: 190, Neg. LLF: 108.44881669602589
Iteration: 17, Func. Count: 201, Neg. LLF: 108.41962474765943
Iteration: 18, Func. Count: 212, Neg. LLF: 108.39956459763158
Iteration: 19, Func. Count: 223, Neg. LLF: 108.34867694931809
Iteration: 20, Func. Count: 234, Neg. LLF: 108.30329462352734
Iteration: 21, Func. Count: 245, Neg. LLF: 108.21080467095017
Iteration: 22, Func. Count: 256, Neg. LLF: 108.15501664253469
Iteration: 23, Func. Count: 267, Neg. LLF: 108.05879523178534
Iteration: 24, Func. Count: 278, Neg. LLF: 108.04282422970566
Iteration: 25, Func. Count: 289, Neg. LLF: 108.02142059728334
Iteration: 26, Func. Count: 300, Neg. LLF: 108.01453742539476
Iteration: 27, Func. Count: 311, Neg. LLF: 107.9951860033949
Iteration: 28, Func. Count: 322, Neg. LLF: 107.99102911932705
Iteration: 29, Func. Count: 333, Neg. LLF: 107.99050251004039
Iteration: 30, Func. Count: 344, Neg. LLF: 107.9904943065336
Iteration: 31, Func. Count: 354, Neg. LLF: 107.99049430657355
Optimization terminated successfully (Exit mode 0)
Current function value: 107.9904943065336
Iterations: 31
Function evaluations: 354
Gradient evaluations: 31
Iteration: 1, Func. Count: 13, Neg. LLF: 22389787.941486135
Iteration: 2, Func. Count: 26, Neg. LLF: 121.62873792572192
Iteration: 3, Func. Count: 39, Neg. LLF: 109.35792283438067
Iteration: 4, Func. Count: 51, Neg. LLF: 109.16693023338294
Iteration: 5, Func. Count: 64, Neg. LLF: 141.27726641293236
Iteration: 6, Func. Count: 77, Neg. LLF: 111.69395993468817
Iteration: 7, Func. Count: 90, Neg. LLF: 108.38912038410487
Iteration: 8, Func. Count: 102, Neg. LLF: 108.34249758467888
Iteration: 9, Func. Count: 114, Neg. LLF: 108.32383025054047
Iteration: 10, Func. Count: 126, Neg. LLF: 108.3040049742276
Iteration: 11, Func. Count: 138, Neg. LLF: 108.2985888744115
Iteration: 12, Func. Count: 150, Neg. LLF: 108.29855747144101
Iteration: 13, Func. Count: 162, Neg. LLF: 108.29855621630739
Iteration: 14, Func. Count: 174, Neg. LLF: 108.2985542840871
Iteration: 15, Func. Count: 185, Neg. LLF: 108.29855421655051
Optimization terminated successfully (Exit mode 0)
Current function value: 108.2985542840871
Iterations: 15
Function evaluations: 185
Gradient evaluations: 15
Iteration: 1, Func. Count: 14, Neg. LLF: 22851909.90290572
Iteration: 2, Func. Count: 29, Neg. LLF: 205.1686274538185
Iteration: 3, Func. Count: 43, Neg. LLF: 161.92943628943218
Iteration: 4, Func. Count: 57, Neg. LLF: 111.90770313994012
Iteration: 5, Func. Count: 71, Neg. LLF: 109.07418923893454
Iteration: 6, Func. Count: 84, Neg. LLF: 112.63741505674827
Iteration: 7, Func. Count: 98, Neg. LLF: 147.20245679441845
Iteration: 8, Func. Count: 112, Neg. LLF: 109.7255137518723
Iteration: 9, Func. Count: 126, Neg. LLF: 108.06377672162581
Iteration: 10, Func. Count: 139, Neg. LLF: 108.02606157011732
Iteration: 11, Func. Count: 152, Neg. LLF: 107.99307902032403
Iteration: 12, Func. Count: 165, Neg. LLF: 107.98608666010443
Iteration: 13, Func. Count: 178, Neg. LLF: 107.98241776020821
Iteration: 14, Func. Count: 191, Neg. LLF: 107.97849953292882
Iteration: 15, Func. Count: 204, Neg. LLF: 107.97248166838305
Iteration: 16, Func. Count: 217, Neg. LLF: 107.96269222317342
Iteration: 17, Func. Count: 230, Neg. LLF: 107.95379313409323
Iteration: 18, Func. Count: 243, Neg. LLF: 107.94814839405198
Iteration: 19, Func. Count: 256, Neg. LLF: 107.94533681252194
Iteration: 20, Func. Count: 269, Neg. LLF: 107.9448650454011
Iteration: 21, Func. Count: 282, Neg. LLF: 107.9448001227021
Iteration: 22, Func. Count: 295, Neg. LLF: 107.94478099787246
Iteration: 23, Func. Count: 308, Neg. LLF: 107.94477876557619
Iteration: 24, Func. Count: 320, Neg. LLF: 107.94477876557269
Optimization terminated successfully (Exit mode 0)
Current function value: 107.94477876557619
Iterations: 24
Function evaluations: 320
Gradient evaluations: 24
Iteration: 1, Func. Count: 11, Neg. LLF: 114.69808898674736
Iteration: 2, Func. Count: 23, Neg. LLF: 114.5784025935402
Iteration: 3, Func. Count: 35, Neg. LLF: 118.41041062573625
Iteration: 4, Func. Count: 46, Neg. LLF: 113.96611363311183
Iteration: 5, Func. Count: 57, Neg. LLF: 186.82027773862094
Iteration: 6, Func. Count: 68, Neg. LLF: 108.30947898491706
Iteration: 7, Func. Count: 78, Neg. LLF: 108.56601802262577
Iteration: 8, Func. Count: 90, Neg. LLF: 110.05538471432463
Iteration: 9, Func. Count: 101, Neg. LLF: 108.07772933530887
Iteration: 10, Func. Count: 111, Neg. LLF: 108.07497006587772
Iteration: 11, Func. Count: 121, Neg. LLF: 108.07364502446447
Iteration: 12, Func. Count: 131, Neg. LLF: 108.07348299302126
Iteration: 13, Func. Count: 141, Neg. LLF: 108.07347316010598
Iteration: 14, Func. Count: 150, Neg. LLF: 108.07347316009415
Optimization terminated successfully (Exit mode 0)
Current function value: 108.07347316010598
Iterations: 14
Function evaluations: 150
Gradient evaluations: 14
Iteration: 1, Func. Count: 12, Neg. LLF: 117.59308729107616
Iteration: 2, Func. Count: 25, Neg. LLF: 312.5645438112994
Iteration: 3, Func. Count: 37, Neg. LLF: 113.51503787933822
Iteration: 4, Func. Count: 49, Neg. LLF: 115.74469919937016
Iteration: 5, Func. Count: 61, Neg. LLF: 113.73500512928106
Iteration: 6, Func. Count: 73, Neg. LLF: 108.89499836482143
Iteration: 7, Func. Count: 84, Neg. LLF: 110.71807979475282
Iteration: 8, Func. Count: 96, Neg. LLF: 109.62357887604298
Iteration: 9, Func. Count: 108, Neg. LLF: 108.42435086206278
Iteration: 10, Func. Count: 119, Neg. LLF: 108.28128941629566
Iteration: 11, Func. Count: 130, Neg. LLF: 108.22895039076224
Iteration: 12, Func. Count: 141, Neg. LLF: 108.19064251424639
Iteration: 13, Func. Count: 152, Neg. LLF: 108.15037152993943
Iteration: 14, Func. Count: 163, Neg. LLF: 108.11220784683037
Iteration: 15, Func. Count: 174, Neg. LLF: 108.09867674114646
Iteration: 16, Func. Count: 185, Neg. LLF: 108.09252283636407
Iteration: 17, Func. Count: 196, Neg. LLF: 108.0864471722244
Iteration: 18, Func. Count: 207, Neg. LLF: 108.0785353872554
Iteration: 19, Func. Count: 218, Neg. LLF: 108.0745708191685
Iteration: 20, Func. Count: 229, Neg. LLF: 108.07352806867489
Iteration: 21, Func. Count: 240, Neg. LLF: 108.07347292493267
Iteration: 22, Func. Count: 250, Neg. LLF: 108.07347298620849
Optimization terminated successfully (Exit mode 0)
Current function value: 108.07347292493267
Iterations: 22
Function evaluations: 250
Gradient evaluations: 22
Iteration: 1, Func. Count: 13, Neg. LLF: 16647023.248705927
Iteration: 2, Func. Count: 26, Neg. LLF: 117.40004345188203
Iteration: 3, Func. Count: 40, Neg. LLF: 123.23383827371428
Iteration: 4, Func. Count: 53, Neg. LLF: 117.47142644784311
Iteration: 5, Func. Count: 66, Neg. LLF: 109.40450445381238
Iteration: 6, Func. Count: 78, Neg. LLF: 110.19066531726884
Iteration: 7, Func. Count: 91, Neg. LLF: 109.25697040329126
Iteration: 8, Func. Count: 104, Neg. LLF: 109.16018361545524
Iteration: 9, Func. Count: 117, Neg. LLF: 110.10273144939677
Iteration: 10, Func. Count: 130, Neg. LLF: 108.82012562592811
Iteration: 11, Func. Count: 143, Neg. LLF: 109.22046749162382
Iteration: 12, Func. Count: 156, Neg. LLF: 108.97575271194978
Iteration: 13, Func. Count: 169, Neg. LLF: 108.28230235024002
Iteration: 14, Func. Count: 182, Neg. LLF: 108.10968525441663
Iteration: 15, Func. Count: 194, Neg. LLF: 108.49487941872161
Iteration: 16, Func. Count: 207, Neg. LLF: 108.02910358176867
Iteration: 17, Func. Count: 219, Neg. LLF: 108.00274468537336
Iteration: 18, Func. Count: 231, Neg. LLF: 107.99531269102731
Iteration: 19, Func. Count: 243, Neg. LLF: 107.99274236261341
Iteration: 20, Func. Count: 255, Neg. LLF: 107.99099752784062
Iteration: 21, Func. Count: 267, Neg. LLF: 107.99071223720618
Iteration: 22, Func. Count: 279, Neg. LLF: 107.98987114486303
Iteration: 23, Func. Count: 291, Neg. LLF: 107.98936558750238
Iteration: 24, Func. Count: 303, Neg. LLF: 107.98908801639124
Iteration: 25, Func. Count: 315, Neg. LLF: 107.98904749374552
Iteration: 26, Func. Count: 327, Neg. LLF: 107.98904474405201
Iteration: 27, Func. Count: 338, Neg. LLF: 107.98904474405246
Optimization terminated successfully (Exit mode 0)
Current function value: 107.98904474405201
Iterations: 27
Function evaluations: 338
Gradient evaluations: 27
Iteration: 1, Func. Count: 14, Neg. LLF: 21282653.63898622
Iteration: 2, Func. Count: 28, Neg. LLF: 117.68194003898793
Iteration: 3, Func. Count: 43, Neg. LLF: 133.88943738941072
Iteration: 4, Func. Count: 57, Neg. LLF: 107.93766213237834
Iteration: 5, Func. Count: 70, Neg. LLF: 107.82408035581491
Iteration: 6, Func. Count: 83, Neg. LLF: 107.77811131096446
Iteration: 7, Func. Count: 96, Neg. LLF: 107.67495195488459
Iteration: 8, Func. Count: 109, Neg. LLF: 107.67045410006853
Iteration: 9, Func. Count: 122, Neg. LLF: 107.6701943185316
Iteration: 10, Func. Count: 135, Neg. LLF: 107.67018168251816
Iteration: 11, Func. Count: 148, Neg. LLF: 107.67017732051994
Iteration: 12, Func. Count: 160, Neg. LLF: 107.67017727692627
Optimization terminated successfully (Exit mode 0)
Current function value: 107.67017732051994
Iterations: 12
Function evaluations: 160
Gradient evaluations: 12
Iteration: 1, Func. Count: 15, Neg. LLF: 22651638.973908845
Iteration: 2, Func. Count: 31, Neg. LLF: 240.13861512162862
Iteration: 3, Func. Count: 46, Neg. LLF: 253.7339621205919
Iteration: 4, Func. Count: 61, Neg. LLF: 116.27861968285373
Iteration: 5, Func. Count: 76, Neg. LLF: 109.90808787210328
Iteration: 6, Func. Count: 91, Neg. LLF: 108.33331607691672
Iteration: 7, Func. Count: 105, Neg. LLF: 107.7705935307952
Iteration: 8, Func. Count: 119, Neg. LLF: 119.8749931483515
Iteration: 9, Func. Count: 135, Neg. LLF: 107.66082517920046
Iteration: 10, Func. Count: 149, Neg. LLF: 107.65473043365748
Iteration: 11, Func. Count: 163, Neg. LLF: 107.6501847671689
Iteration: 12, Func. Count: 177, Neg. LLF: 107.64892538457224
Iteration: 13, Func. Count: 191, Neg. LLF: 107.64857066663794
Iteration: 14, Func. Count: 205, Neg. LLF: 107.64847641826131
Iteration: 15, Func. Count: 219, Neg. LLF: 107.64847251013094
Iteration: 16, Func. Count: 232, Neg. LLF: 107.64847245248968
Optimization terminated successfully (Exit mode 0)
Current function value: 107.64847251013094
Iterations: 16
Function evaluations: 232
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 115.28035913635122
Iteration: 2, Func. Count: 25, Neg. LLF: 114.12034755268314
Iteration: 3, Func. Count: 38, Neg. LLF: 114.17076160725827
Iteration: 4, Func. Count: 50, Neg. LLF: 113.6811932861236
Iteration: 5, Func. Count: 62, Neg. LLF: 3512595.336171463
Iteration: 6, Func. Count: 74, Neg. LLF: 108.18107492322777
Iteration: 7, Func. Count: 85, Neg. LLF: 108.14972397144128
Iteration: 8, Func. Count: 97, Neg. LLF: 108.0915596996868
Iteration: 9, Func. Count: 108, Neg. LLF: 108.07624412243436
Iteration: 10, Func. Count: 119, Neg. LLF: 108.07401598836312
Iteration: 11, Func. Count: 130, Neg. LLF: 108.07353557447965
Iteration: 12, Func. Count: 141, Neg. LLF: 108.07347351776956
Iteration: 13, Func. Count: 152, Neg. LLF: 108.0734726890306
Optimization terminated successfully (Exit mode 0)
Current function value: 108.0734726890306
Iterations: 13
Function evaluations: 152
Gradient evaluations: 13
Iteration: 1, Func. Count: 13, Neg. LLF: 119.28050568781592
Iteration: 2, Func. Count: 26, Neg. LLF: 112.70942098174362
Iteration: 3, Func. Count: 39, Neg. LLF: 116.59688475026722
Iteration: 4, Func. Count: 52, Neg. LLF: 109.03854569992674
Iteration: 5, Func. Count: 65, Neg. LLF: 109.4806903877608
Iteration: 6, Func. Count: 78, Neg. LLF: 108.2292530149075
Iteration: 7, Func. Count: 90, Neg. LLF: 108.09275616335806
Iteration: 8, Func. Count: 102, Neg. LLF: 109.81395370716551
Iteration: 9, Func. Count: 116, Neg. LLF: 108.07529472780766
Iteration: 10, Func. Count: 128, Neg. LLF: 108.07351053451501
Iteration: 11, Func. Count: 140, Neg. LLF: 108.07347624129811
Iteration: 12, Func. Count: 152, Neg. LLF: 108.07347345521735
Iteration: 13, Func. Count: 164, Neg. LLF: 108.07347251129458
Optimization terminated successfully (Exit mode 0)
Current function value: 108.07347251129458
Iterations: 13
Function evaluations: 164
Gradient evaluations: 13
Iteration: 1, Func. Count: 14, Neg. LLF: 16516987.50231384
Iteration: 2, Func. Count: 28, Neg. LLF: 115.52463808876453
Iteration: 3, Func. Count: 43, Neg. LLF: 143.233047767115
Iteration: 4, Func. Count: 57, Neg. LLF: 117.88053615523349
Iteration: 5, Func. Count: 71, Neg. LLF: 109.9632003080137
Iteration: 6, Func. Count: 85, Neg. LLF: 108.43689746698496
Iteration: 7, Func. Count: 98, Neg. LLF: 108.31747628495822
Iteration: 8, Func. Count: 111, Neg. LLF: 108.32217441358254
Iteration: 9, Func. Count: 125, Neg. LLF: 108.34512600247436
Iteration: 10, Func. Count: 139, Neg. LLF: 108.30039507717638
Iteration: 11, Func. Count: 152, Neg. LLF: 108.29942258990285
Iteration: 12, Func. Count: 165, Neg. LLF: 108.29864238821756
Iteration: 13, Func. Count: 178, Neg. LLF: 108.29854022145301
Iteration: 14, Func. Count: 191, Neg. LLF: 108.29852689680114
Iteration: 15, Func. Count: 203, Neg. LLF: 108.29852685814504
Optimization terminated successfully (Exit mode 0)
Current function value: 108.29852689680114
Iterations: 15
Function evaluations: 203
Gradient evaluations: 15
Iteration: 1, Func. Count: 15, Neg. LLF: 21791154.689380977
Iteration: 2, Func. Count: 30, Neg. LLF: 115.9845321619962
Iteration: 3, Func. Count: 45, Neg. LLF: 127.3563483183926
Iteration: 4, Func. Count: 60, Neg. LLF: 116.7585592160442
Iteration: 5, Func. Count: 75, Neg. LLF: 108.40792753721976
Iteration: 6, Func. Count: 89, Neg. LLF: 110.30578332916885
Iteration: 7, Func. Count: 104, Neg. LLF: 109.74242017053568
Iteration: 8, Func. Count: 120, Neg. LLF: 108.70680821192289
Iteration: 9, Func. Count: 135, Neg. LLF: 107.52569190552965
Iteration: 10, Func. Count: 149, Neg. LLF: 107.51727485955955
Iteration: 11, Func. Count: 163, Neg. LLF: 107.51387526089816
Iteration: 12, Func. Count: 177, Neg. LLF: 107.51186897744756
Iteration: 13, Func. Count: 191, Neg. LLF: 107.51079742411957
Iteration: 14, Func. Count: 205, Neg. LLF: 107.51061696317804
Iteration: 15, Func. Count: 219, Neg. LLF: 107.51061489683852
Iteration: 16, Func. Count: 232, Neg. LLF: 107.51061486059632
Optimization terminated successfully (Exit mode 0)
Current function value: 107.51061489683852
Iterations: 16
Function evaluations: 232
Gradient evaluations: 16
Iteration: 1, Func. Count: 16, Neg. LLF: 23792562.056021634
Iteration: 2, Func. Count: 33, Neg. LLF: 305.85457598810547
Iteration: 3, Func. Count: 49, Neg. LLF: 703.162054060599
Iteration: 4, Func. Count: 65, Neg. LLF: 126.24904920769576
Iteration: 5, Func. Count: 81, Neg. LLF: 136.05585345622933
Iteration: 6, Func. Count: 97, Neg. LLF: 107.80572171671542
Iteration: 7, Func. Count: 112, Neg. LLF: 107.42015424180516
Iteration: 8, Func. Count: 127, Neg. LLF: 107.40273355552412
Iteration: 9, Func. Count: 142, Neg. LLF: 107.39075494955532
Iteration: 10, Func. Count: 157, Neg. LLF: 107.38476842645747
Iteration: 11, Func. Count: 172, Neg. LLF: 107.3811434588986
Iteration: 12, Func. Count: 187, Neg. LLF: 107.3785803294509
Iteration: 13, Func. Count: 202, Neg. LLF: 107.37708026736125
Iteration: 14, Func. Count: 217, Neg. LLF: 107.37682508154593
Iteration: 15, Func. Count: 232, Neg. LLF: 107.37679117688614
Iteration: 16, Func. Count: 247, Neg. LLF: 107.37678131333435
Iteration: 17, Func. Count: 262, Neg. LLF: 107.37677933710948
Iteration: 18, Func. Count: 276, Neg. LLF: 107.37677928294542
Optimization terminated successfully (Exit mode 0)
Current function value: 107.37677933710948
Iterations: 18
Function evaluations: 276
Gradient evaluations: 18
Iteration: 1, Func. Count: 5, Neg. LLF: 126.77715698097134
Iteration: 2, Func. Count: 11, Neg. LLF: 119.60147143793874
Iteration: 3, Func. Count: 16, Neg. LLF: 112.06692652320321
Iteration: 4, Func. Count: 21, Neg. LLF: 110.5580963548937
Iteration: 5, Func. Count: 25, Neg. LLF: 110.52065893181856
Iteration: 6, Func. Count: 29, Neg. LLF: 110.51891048630362
Iteration: 7, Func. Count: 33, Neg. LLF: 110.51859954240871
Iteration: 8, Func. Count: 37, Neg. LLF: 110.5185613653157
Iteration: 9, Func. Count: 41, Neg. LLF: 110.5185569153221
Iteration: 10, Func. Count: 44, Neg. LLF: 110.5185569153065
Optimization terminated successfully (Exit mode 0)
Current function value: 110.5185569153221
Iterations: 10
Function evaluations: 44
Gradient evaluations: 10
Iteration: 1, Func. Count: 5, Neg. LLF: 121.97139505344772
Iteration: 2, Func. Count: 11, Neg. LLF: 134.1669809751989
Iteration: 3, Func. Count: 16, Neg. LLF: 110.11838329239924
Iteration: 4, Func. Count: 21, Neg. LLF: 109.58462029575333
Iteration: 5, Func. Count: 25, Neg. LLF: 109.47809814224468
Iteration: 6, Func. Count: 29, Neg. LLF: 109.45534370672169
Iteration: 7, Func. Count: 33, Neg. LLF: 109.45005116211242
Iteration: 8, Func. Count: 37, Neg. LLF: 109.44999114557619
Iteration: 9, Func. Count: 41, Neg. LLF: 109.44999020003402
Optimization terminated successfully (Exit mode 0)
Current function value: 109.44999020003402
Iterations: 9
Function evaluations: 41
Gradient evaluations: 9
Iteration: 1, Func. Count: 6, Neg. LLF: 77494738.76103024
Iteration: 2, Func. Count: 13, Neg. LLF: 378.26118487642054
Iteration: 3, Func. Count: 20, Neg. LLF: 168.54725738587936
Iteration: 4, Func. Count: 26, Neg. LLF: 107.30159208439721
Iteration: 5, Func. Count: 31, Neg. LLF: 107.29200829069254
Iteration: 6, Func. Count: 36, Neg. LLF: 107.2878121064919
Iteration: 7, Func. Count: 41, Neg. LLF: 107.2875700639446
Iteration: 8, Func. Count: 46, Neg. LLF: 107.28756516999661
Iteration: 9, Func. Count: 50, Neg. LLF: 107.28756508146681
Optimization terminated successfully (Exit mode 0)
Current function value: 107.28756516999661
Iterations: 9
Function evaluations: 50
Gradient evaluations: 9
Iteration: 1, Func. Count: 7, Neg. LLF: 88630937.38593833
Iteration: 2, Func. Count: 15, Neg. LLF: 239.9573734469713
Iteration: 3, Func. Count: 23, Neg. LLF: 153.42552536744535
Iteration: 4, Func. Count: 30, Neg. LLF: 107.26643858766226
Iteration: 5, Func. Count: 37, Neg. LLF: 106.9227482191709
Iteration: 6, Func. Count: 43, Neg. LLF: 106.91930988088373
Iteration: 7, Func. Count: 49, Neg. LLF: 106.91891190850096
Iteration: 8, Func. Count: 55, Neg. LLF: 106.91889126905131
Iteration: 9, Func. Count: 61, Neg. LLF: 106.91888283694682
Iteration: 10, Func. Count: 66, Neg. LLF: 106.91888274831861
Optimization terminated successfully (Exit mode 0)
Current function value: 106.91888283694682
Iterations: 10
Function evaluations: 66
Gradient evaluations: 10
Iteration: 1, Func. Count: 8, Neg. LLF: 90564476.00036195
Iteration: 2, Func. Count: 17, Neg. LLF: 145.447269466957
Iteration: 3, Func. Count: 25, Neg. LLF: 260.8943494085136
Iteration: 4, Func. Count: 34, Neg. LLF: 106.57170674552408
Iteration: 5, Func. Count: 41, Neg. LLF: 105.82494017274163
Iteration: 6, Func. Count: 48, Neg. LLF: 105.80462131836563
Iteration: 7, Func. Count: 55, Neg. LLF: 105.77491726334893
Iteration: 8, Func. Count: 62, Neg. LLF: 105.77422573490482
Iteration: 9, Func. Count: 69, Neg. LLF: 105.77419168490918
Iteration: 10, Func. Count: 76, Neg. LLF: 105.77418787568178
Iteration: 11, Func. Count: 82, Neg. LLF: 105.77418781719317
Optimization terminated successfully (Exit mode 0)
Current function value: 105.77418787568178
Iterations: 11
Function evaluations: 82
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 85259640.12394927
Iteration: 2, Func. Count: 19, Neg. LLF: 107.91220364250437
Iteration: 3, Func. Count: 28, Neg. LLF: 121.88379890678635
Iteration: 4, Func. Count: 38, Neg. LLF: 117.79269437037743
Iteration: 5, Func. Count: 47, Neg. LLF: 105.80611566067476
Iteration: 6, Func. Count: 55, Neg. LLF: 105.78874121811093
Iteration: 7, Func. Count: 63, Neg. LLF: 105.78432491061406
Iteration: 8, Func. Count: 71, Neg. LLF: 105.77445884112551
Iteration: 9, Func. Count: 79, Neg. LLF: 105.7741962828046
Iteration: 10, Func. Count: 87, Neg. LLF: 105.77418804951927
Iteration: 11, Func. Count: 94, Neg. LLF: 105.77418802611761
Optimization terminated successfully (Exit mode 0)
Current function value: 105.77418804951927
Iterations: 11
Function evaluations: 94
Gradient evaluations: 11
Iteration: 1, Func. Count: 6, Neg. LLF: 124.51730721402087
Iteration: 2, Func. Count: 13, Neg. LLF: 147.24060219532416
Iteration: 3, Func. Count: 19, Neg. LLF: 109.67412231847685
Iteration: 4, Func. Count: 24, Neg. LLF: 109.4988010046482
Iteration: 5, Func. Count: 29, Neg. LLF: 109.45946761539106
Iteration: 6, Func. Count: 34, Neg. LLF: 109.45088030532187
Iteration: 7, Func. Count: 39, Neg. LLF: 109.45004755252528
Iteration: 8, Func. Count: 44, Neg. LLF: 109.4499913011957
Iteration: 9, Func. Count: 49, Neg. LLF: 109.44999017687603
Iteration: 10, Func. Count: 53, Neg. LLF: 109.44999023617459
Optimization terminated successfully (Exit mode 0)
Current function value: 109.44999017687603
Iterations: 10
Function evaluations: 53
Gradient evaluations: 10
Iteration: 1, Func. Count: 7, Neg. LLF: 47955543.96551406
Iteration: 2, Func. Count: 15, Neg. LLF: 571.5255012743427
Iteration: 3, Func. Count: 23, Neg. LLF: 182.39132266307067
Iteration: 4, Func. Count: 30, Neg. LLF: 107.31544646727718
Iteration: 5, Func. Count: 36, Neg. LLF: 107.29773395385796
Iteration: 6, Func. Count: 42, Neg. LLF: 107.2901055742672
Iteration: 7, Func. Count: 48, Neg. LLF: 107.28773381089614
Iteration: 8, Func. Count: 54, Neg. LLF: 107.28757671439607
Iteration: 9, Func. Count: 60, Neg. LLF: 107.28756520192735
Iteration: 10, Func. Count: 65, Neg. LLF: 107.28756511333495
Optimization terminated successfully (Exit mode 0)
Current function value: 107.28756520192735
Iterations: 10
Function evaluations: 65
Gradient evaluations: 10
Iteration: 1, Func. Count: 8, Neg. LLF: 70457849.71016473
Iteration: 2, Func. Count: 17, Neg. LLF: 393.3430083653746
Iteration: 3, Func. Count: 26, Neg. LLF: 236.8039722065366
Iteration: 4, Func. Count: 34, Neg. LLF: 108.56083384350633
Iteration: 5, Func. Count: 42, Neg. LLF: 106.98702552563527
Iteration: 6, Func. Count: 49, Neg. LLF: 106.92758209197744
Iteration: 7, Func. Count: 56, Neg. LLF: 106.92048115500805
Iteration: 8, Func. Count: 63, Neg. LLF: 106.91902940528527
Iteration: 9, Func. Count: 70, Neg. LLF: 106.91888755101131
Iteration: 10, Func. Count: 77, Neg. LLF: 106.9188834013361
Iteration: 11, Func. Count: 84, Neg. LLF: 106.91888283178298
Optimization terminated successfully (Exit mode 0)
Current function value: 106.91888283178298
Iterations: 11
Function evaluations: 84
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 73571601.15137951
Iteration: 2, Func. Count: 19, Neg. LLF: 262.115570791809
Iteration: 3, Func. Count: 28, Neg. LLF: 7224044.753658602
Iteration: 4, Func. Count: 37, Neg. LLF: 109.66357450265865
Iteration: 5, Func. Count: 46, Neg. LLF: 105.87958703763049
Iteration: 6, Func. Count: 54, Neg. LLF: 105.8342999504533
Iteration: 7, Func. Count: 62, Neg. LLF: 105.78035859613624
Iteration: 8, Func. Count: 70, Neg. LLF: 105.77625043300965
Iteration: 9, Func. Count: 78, Neg. LLF: 105.77422546157439
Iteration: 10, Func. Count: 86, Neg. LLF: 105.77419458588865
Iteration: 11, Func. Count: 94, Neg. LLF: 105.77418986290913
Iteration: 12, Func. Count: 102, Neg. LLF: 105.77418791774733
Iteration: 13, Func. Count: 109, Neg. LLF: 105.7741878593089
Optimization terminated successfully (Exit mode 0)
Current function value: 105.77418791774733
Iterations: 13
Function evaluations: 109
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 70650675.3599886
Iteration: 2, Func. Count: 21, Neg. LLF: 158.8346402401033
Iteration: 3, Func. Count: 31, Neg. LLF: 147.6143551598896
Iteration: 4, Func. Count: 42, Neg. LLF: 110.38965752544338
Iteration: 5, Func. Count: 52, Neg. LLF: 105.93534484054854
Iteration: 6, Func. Count: 61, Neg. LLF: 105.84861909763858
Iteration: 7, Func. Count: 70, Neg. LLF: 105.84481369788612
Iteration: 8, Func. Count: 80, Neg. LLF: 105.79203817559207
Iteration: 9, Func. Count: 89, Neg. LLF: 105.77464603598773
Iteration: 10, Func. Count: 98, Neg. LLF: 105.77420277204354
Iteration: 11, Func. Count: 107, Neg. LLF: 105.77418957548873
Iteration: 12, Func. Count: 116, Neg. LLF: 105.77418811572804
Iteration: 13, Func. Count: 124, Neg. LLF: 105.774188092326
Optimization terminated successfully (Exit mode 0)
Current function value: 105.77418811572804
Iterations: 13
Function evaluations: 124
Gradient evaluations: 13
Iteration: 1, Func. Count: 7, Neg. LLF: 124.01928409547006
Iteration: 2, Func. Count: 15, Neg. LLF: 201.88026141467222
Iteration: 3, Func. Count: 22, Neg. LLF: 109.43218458498191
Iteration: 4, Func. Count: 29, Neg. LLF: 108.84014541247952
Iteration: 5, Func. Count: 35, Neg. LLF: 108.73970857239054
Iteration: 6, Func. Count: 41, Neg. LLF: 108.72467240996609
Iteration: 7, Func. Count: 47, Neg. LLF: 108.72314617999253
Iteration: 8, Func. Count: 53, Neg. LLF: 108.72306281359086
Iteration: 9, Func. Count: 59, Neg. LLF: 108.72305457703408
Iteration: 10, Func. Count: 64, Neg. LLF: 108.72305457708241
Optimization terminated successfully (Exit mode 0)
Current function value: 108.72305457703408
Iterations: 10
Function evaluations: 64
Gradient evaluations: 10
Iteration: 1, Func. Count: 8, Neg. LLF: 45331768.33293391
Iteration: 2, Func. Count: 17, Neg. LLF: 535.8815420169853
Iteration: 3, Func. Count: 26, Neg. LLF: 278.2411955180941
Iteration: 4, Func. Count: 34, Neg. LLF: 160.52669998547051
Iteration: 5, Func. Count: 42, Neg. LLF: 106.9351571328609
Iteration: 6, Func. Count: 49, Neg. LLF: 106.89577465385148
Iteration: 7, Func. Count: 56, Neg. LLF: 106.8543109468749
Iteration: 8, Func. Count: 63, Neg. LLF: 106.84710156229826
Iteration: 9, Func. Count: 70, Neg. LLF: 106.84573650304618
Iteration: 10, Func. Count: 77, Neg. LLF: 106.84568836146121
Iteration: 11, Func. Count: 84, Neg. LLF: 106.8456877624836
Optimization terminated successfully (Exit mode 0)
Current function value: 106.8456877624836
Iterations: 11
Function evaluations: 84
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 65802338.42739093
Iteration: 2, Func. Count: 19, Neg. LLF: 325.69841818833584
Iteration: 3, Func. Count: 28, Neg. LLF: 7257028.727061679
Iteration: 4, Func. Count: 37, Neg. LLF: 120.35319220782016
Iteration: 5, Func. Count: 46, Neg. LLF: 106.87752460927466
Iteration: 6, Func. Count: 54, Neg. LLF: 106.75192224284137
Iteration: 7, Func. Count: 62, Neg. LLF: 106.86658153488585
Iteration: 8, Func. Count: 71, Neg. LLF: 106.71989409380087
Iteration: 9, Func. Count: 79, Neg. LLF: 106.71595199507145
Iteration: 10, Func. Count: 87, Neg. LLF: 106.7133441768252
Iteration: 11, Func. Count: 95, Neg. LLF: 106.71312492591332
Iteration: 12, Func. Count: 103, Neg. LLF: 106.71311948284158
Iteration: 13, Func. Count: 110, Neg. LLF: 106.71311943197928
Optimization terminated successfully (Exit mode 0)
Current function value: 106.71311948284158
Iterations: 13
Function evaluations: 110
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 69189601.26350142
Iteration: 2, Func. Count: 21, Neg. LLF: 193.17399358762518
Iteration: 3, Func. Count: 31, Neg. LLF: 1720947.119209716
Iteration: 4, Func. Count: 41, Neg. LLF: 145.32736522299524
Iteration: 5, Func. Count: 51, Neg. LLF: 106.78127560408944
Iteration: 6, Func. Count: 61, Neg. LLF: 107.52511824790447
Iteration: 7, Func. Count: 71, Neg. LLF: 106.98653598687092
Iteration: 8, Func. Count: 81, Neg. LLF: 105.86655774568388
Iteration: 9, Func. Count: 91, Neg. LLF: 106.8403682338748
Iteration: 10, Func. Count: 101, Neg. LLF: 105.4963722719768
Iteration: 11, Func. Count: 110, Neg. LLF: 105.48883736587555
Iteration: 12, Func. Count: 119, Neg. LLF: 105.4846987338928
Iteration: 13, Func. Count: 128, Neg. LLF: 105.48307239822284
Iteration: 14, Func. Count: 137, Neg. LLF: 105.48302533155776
Iteration: 15, Func. Count: 146, Neg. LLF: 105.48302072796662
Iteration: 16, Func. Count: 154, Neg. LLF: 105.48302069755336
Optimization terminated successfully (Exit mode 0)
Current function value: 105.48302072796662
Iterations: 16
Function evaluations: 154
Gradient evaluations: 16
Iteration: 1, Func. Count: 11, Neg. LLF: 68075788.84792937
Iteration: 2, Func. Count: 23, Neg. LLF: 375.34487912096307
Iteration: 3, Func. Count: 34, Neg. LLF: 300.71961187522083
Iteration: 4, Func. Count: 46, Neg. LLF: 132.6355185880221
Iteration: 5, Func. Count: 57, Neg. LLF: 107.14735960626305
Iteration: 6, Func. Count: 68, Neg. LLF: 107.1413614699299
Iteration: 7, Func. Count: 79, Neg. LLF: 106.66311302415357
Iteration: 8, Func. Count: 90, Neg. LLF: 106.93566021509923
Iteration: 9, Func. Count: 101, Neg. LLF: 105.52060972428777
Iteration: 10, Func. Count: 111, Neg. LLF: 105.49370851859594
Iteration: 11, Func. Count: 121, Neg. LLF: 105.48472583132943
Iteration: 12, Func. Count: 131, Neg. LLF: 105.48345317111131
Iteration: 13, Func. Count: 141, Neg. LLF: 105.48315336971751
Iteration: 14, Func. Count: 151, Neg. LLF: 105.4830382955373
Iteration: 15, Func. Count: 161, Neg. LLF: 105.48302190843795
Iteration: 16, Func. Count: 171, Neg. LLF: 105.48302056689546
Iteration: 17, Func. Count: 180, Neg. LLF: 105.48302053887026
Optimization terminated successfully (Exit mode 0)
Current function value: 105.48302056689546
Iterations: 17
Function evaluations: 180
Gradient evaluations: 17
Iteration: 1, Func. Count: 8, Neg. LLF: 121.61373750668162
Iteration: 2, Func. Count: 17, Neg. LLF: 191.66285018105413
Iteration: 3, Func. Count: 25, Neg. LLF: 1825776.1188583823
Iteration: 4, Func. Count: 33, Neg. LLF: 1072062.261567894
Iteration: 5, Func. Count: 41, Neg. LLF: 108.10565705538392
Iteration: 6, Func. Count: 49, Neg. LLF: 113.35144228256274
Iteration: 7, Func. Count: 57, Neg. LLF: 106.43529053256611
Iteration: 8, Func. Count: 64, Neg. LLF: 106.43110007309402
Iteration: 9, Func. Count: 71, Neg. LLF: 106.42980478034083
Iteration: 10, Func. Count: 78, Neg. LLF: 106.42772067119537
Iteration: 11, Func. Count: 85, Neg. LLF: 106.42719350019084
Iteration: 12, Func. Count: 92, Neg. LLF: 106.42712224392227
Iteration: 13, Func. Count: 99, Neg. LLF: 106.4271186577241
Iteration: 14, Func. Count: 105, Neg. LLF: 106.42711865773182
Optimization terminated successfully (Exit mode 0)
Current function value: 106.4271186577241
Iterations: 14
Function evaluations: 105
Gradient evaluations: 14
Iteration: 1, Func. Count: 9, Neg. LLF: 43554249.180811286
Iteration: 2, Func. Count: 19, Neg. LLF: 426.25861177698397
Iteration: 3, Func. Count: 29, Neg. LLF: 2278800.405345983
Iteration: 4, Func. Count: 38, Neg. LLF: 145.3644631060369
Iteration: 5, Func. Count: 47, Neg. LLF: 106.94914642634603
Iteration: 6, Func. Count: 55, Neg. LLF: 107.26350176909511
Iteration: 7, Func. Count: 64, Neg. LLF: 106.86355888288956
Iteration: 8, Func. Count: 72, Neg. LLF: 106.82124236795131
Iteration: 9, Func. Count: 80, Neg. LLF: 106.81441054361419
Iteration: 10, Func. Count: 88, Neg. LLF: 106.81333959660894
Iteration: 11, Func. Count: 96, Neg. LLF: 106.81325938517783
Iteration: 12, Func. Count: 104, Neg. LLF: 106.81325654274347
Iteration: 13, Func. Count: 111, Neg. LLF: 106.8132565109601
Optimization terminated successfully (Exit mode 0)
Current function value: 106.81325654274347
Iterations: 13
Function evaluations: 111
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 65137333.537033
Iteration: 2, Func. Count: 21, Neg. LLF: 316.7080544736304
Iteration: 3, Func. Count: 31, Neg. LLF: 7836889.621106994
Iteration: 4, Func. Count: 41, Neg. LLF: 133.70366212562692
Iteration: 5, Func. Count: 51, Neg. LLF: 119.12405443603107
Iteration: 6, Func. Count: 61, Neg. LLF: 106.00138674771414
Iteration: 7, Func. Count: 70, Neg. LLF: 105.81357686085302
Iteration: 8, Func. Count: 79, Neg. LLF: 105.80686553744226
Iteration: 9, Func. Count: 88, Neg. LLF: 105.80443803880156
Iteration: 10, Func. Count: 97, Neg. LLF: 105.80040922630644
Iteration: 11, Func. Count: 106, Neg. LLF: 105.79966243063063
Iteration: 12, Func. Count: 115, Neg. LLF: 105.7993430314309
Iteration: 13, Func. Count: 124, Neg. LLF: 105.79931430210516
Iteration: 14, Func. Count: 133, Neg. LLF: 105.79931325098306
Iteration: 15, Func. Count: 141, Neg. LLF: 105.79931320358911
Optimization terminated successfully (Exit mode 0)
Current function value: 105.79931325098306
Iterations: 15
Function evaluations: 141
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 69178797.29930446
Iteration: 2, Func. Count: 23, Neg. LLF: 197.48238844960207
Iteration: 3, Func. Count: 34, Neg. LLF: 116.41225450529964
Iteration: 4, Func. Count: 45, Neg. LLF: 149.8778912785871
Iteration: 5, Func. Count: 56, Neg. LLF: 115.85741724047182
Iteration: 6, Func. Count: 67, Neg. LLF: 107.24382809705573
Iteration: 7, Func. Count: 78, Neg. LLF: 107.20840043863306
Iteration: 8, Func. Count: 89, Neg. LLF: 105.6806920701673
Iteration: 9, Func. Count: 100, Neg. LLF: 105.28454598611373
Iteration: 10, Func. Count: 110, Neg. LLF: 105.27899367369436
Iteration: 11, Func. Count: 120, Neg. LLF: 105.2737388196835
Iteration: 12, Func. Count: 130, Neg. LLF: 105.27250032496755
Iteration: 13, Func. Count: 140, Neg. LLF: 105.27147493404998
Iteration: 14, Func. Count: 150, Neg. LLF: 105.27114671603104
Iteration: 15, Func. Count: 160, Neg. LLF: 105.27107105213142
Iteration: 16, Func. Count: 170, Neg. LLF: 105.27105023556486
Iteration: 17, Func. Count: 180, Neg. LLF: 105.27104097401616
Iteration: 18, Func. Count: 190, Neg. LLF: 105.27103909617628
Iteration: 19, Func. Count: 199, Neg. LLF: 105.27103906463432
Optimization terminated successfully (Exit mode 0)
Current function value: 105.27103909617628
Iterations: 19
Function evaluations: 199
Gradient evaluations: 19
Iteration: 1, Func. Count: 12, Neg. LLF: 69185572.01772256
Iteration: 2, Func. Count: 25, Neg. LLF: 7105293.920930897
Iteration: 3, Func. Count: 37, Neg. LLF: 301.7782875539578
Iteration: 4, Func. Count: 50, Neg. LLF: 117.82358388209772
Iteration: 5, Func. Count: 62, Neg. LLF: 107.16109945212102
Iteration: 6, Func. Count: 74, Neg. LLF: 107.42229375664203
Iteration: 7, Func. Count: 86, Neg. LLF: 105.13114711217003
Iteration: 8, Func. Count: 97, Neg. LLF: 107.59794081768305
Iteration: 9, Func. Count: 109, Neg. LLF: 105.05966149607583
Iteration: 10, Func. Count: 120, Neg. LLF: 105.01905887672433
Iteration: 11, Func. Count: 131, Neg. LLF: 104.94665639318879
Iteration: 12, Func. Count: 142, Neg. LLF: 104.68294042336052
Iteration: 13, Func. Count: 153, Neg. LLF: 104.67410069296403
Iteration: 14, Func. Count: 164, Neg. LLF: 104.66712408327034
Iteration: 15, Func. Count: 175, Neg. LLF: 104.6620220629933
Iteration: 16, Func. Count: 186, Neg. LLF: 104.65488573010683
Iteration: 17, Func. Count: 197, Neg. LLF: 104.65464813161854
Iteration: 18, Func. Count: 208, Neg. LLF: 104.65457316107506
Iteration: 19, Func. Count: 219, Neg. LLF: 104.6545507041146
Iteration: 20, Func. Count: 230, Neg. LLF: 104.65454940090379
Iteration: 21, Func. Count: 240, Neg. LLF: 104.6545493272136
Optimization terminated successfully (Exit mode 0)
Current function value: 104.65454940090379
Iterations: 21
Function evaluations: 240
Gradient evaluations: 21
Iteration: 1, Func. Count: 5, Neg. LLF: 121.00915878275815
Iteration: 2, Func. Count: 11, Neg. LLF: 117.41241785551193
Iteration: 3, Func. Count: 16, Neg. LLF: 110.56417769076424
Iteration: 4, Func. Count: 21, Neg. LLF: 108.7690410988241
Iteration: 5, Func. Count: 25, Neg. LLF: 108.76321354903432
Iteration: 6, Func. Count: 29, Neg. LLF: 108.76207759575583
Iteration: 7, Func. Count: 33, Neg. LLF: 108.76186217072838
Iteration: 8, Func. Count: 37, Neg. LLF: 108.76185782618309
Iteration: 9, Func. Count: 40, Neg. LLF: 108.76185782618029
Optimization terminated successfully (Exit mode 0)
Current function value: 108.76185782618309
Iterations: 9
Function evaluations: 40
Gradient evaluations: 9
Iteration: 1, Func. Count: 6, Neg. LLF: 122.81956684473121
Iteration: 2, Func. Count: 12, Neg. LLF: 125.0252449475744
Iteration: 3, Func. Count: 19, Neg. LLF: 109.58699431365568
Iteration: 4, Func. Count: 25, Neg. LLF: 108.5203843728449
Iteration: 5, Func. Count: 30, Neg. LLF: 108.51903859369924
Iteration: 6, Func. Count: 35, Neg. LLF: 108.51898534908439
Iteration: 7, Func. Count: 39, Neg. LLF: 108.51898534908986
Optimization terminated successfully (Exit mode 0)
Current function value: 108.51898534908439
Iterations: 7
Function evaluations: 39
Gradient evaluations: 7
Iteration: 1, Func. Count: 7, Neg. LLF: 120.8735578402543
Iteration: 2, Func. Count: 14, Neg. LLF: 126.68748426701376
Iteration: 3, Func. Count: 22, Neg. LLF: 108.44121409501565
Iteration: 4, Func. Count: 29, Neg. LLF: 108.57027846745343
Iteration: 5, Func. Count: 36, Neg. LLF: 108.09924948548961
Iteration: 6, Func. Count: 42, Neg. LLF: 108.09676740517345
Iteration: 7, Func. Count: 48, Neg. LLF: 108.09616294650442
Iteration: 8, Func. Count: 54, Neg. LLF: 108.09615909377695
Iteration: 9, Func. Count: 59, Neg. LLF: 108.09615909372994
Optimization terminated successfully (Exit mode 0)
Current function value: 108.09615909377695
Iterations: 9
Function evaluations: 59
Gradient evaluations: 9
Iteration: 1, Func. Count: 8, Neg. LLF: 128.750172857105
Iteration: 2, Func. Count: 16, Neg. LLF: 118.31914356834196
Iteration: 3, Func. Count: 25, Neg. LLF: 108.21089409424937
Iteration: 4, Func. Count: 32, Neg. LLF: 114.54815454224656
Iteration: 5, Func. Count: 40, Neg. LLF: 108.11502964619693
Iteration: 6, Func. Count: 47, Neg. LLF: 108.0989946281387
Iteration: 7, Func. Count: 54, Neg. LLF: 108.09662922548478
Iteration: 8, Func. Count: 61, Neg. LLF: 108.09616229288984
Iteration: 9, Func. Count: 68, Neg. LLF: 108.09615880795798
Iteration: 10, Func. Count: 74, Neg. LLF: 108.0961588477185
Optimization terminated successfully (Exit mode 0)
Current function value: 108.09615880795798
Iterations: 10
Function evaluations: 74
Gradient evaluations: 10
Iteration: 1, Func. Count: 9, Neg. LLF: 122.4433799659409
Iteration: 2, Func. Count: 18, Neg. LLF: 113.89927549929006
Iteration: 3, Func. Count: 27, Neg. LLF: 108.47343269451471
Iteration: 4, Func. Count: 35, Neg. LLF: 113.04489117375012
Iteration: 5, Func. Count: 44, Neg. LLF: 108.2114172065271
Iteration: 6, Func. Count: 52, Neg. LLF: 108.10903100844868
Iteration: 7, Func. Count: 60, Neg. LLF: 108.09872296161471
Iteration: 8, Func. Count: 68, Neg. LLF: 108.09664232226783
Iteration: 9, Func. Count: 76, Neg. LLF: 108.09616539169616
Iteration: 10, Func. Count: 84, Neg. LLF: 108.09615871950508
Iteration: 11, Func. Count: 91, Neg. LLF: 108.09615874545727
Optimization terminated successfully (Exit mode 0)
Current function value: 108.09615871950508
Iterations: 11
Function evaluations: 91
Gradient evaluations: 11
Iteration: 1, Func. Count: 6, Neg. LLF: 119.31774965927563
Iteration: 2, Func. Count: 13, Neg. LLF: 112.76155916054859
Iteration: 3, Func. Count: 19, Neg. LLF: 111.07640328720215
Iteration: 4, Func. Count: 25, Neg. LLF: 108.61414882764585
Iteration: 5, Func. Count: 30, Neg. LLF: 108.70488814538679
Iteration: 6, Func. Count: 36, Neg. LLF: 108.61442076537267
Iteration: 7, Func. Count: 42, Neg. LLF: 108.60299156212487
Iteration: 8, Func. Count: 47, Neg. LLF: 108.60283900878284
Iteration: 9, Func. Count: 52, Neg. LLF: 108.60283772502112
Iteration: 10, Func. Count: 56, Neg. LLF: 108.60283772502936
Optimization terminated successfully (Exit mode 0)
Current function value: 108.60283772502112
Iterations: 10
Function evaluations: 56
Gradient evaluations: 10
Iteration: 1, Func. Count: 7, Neg. LLF: 71783586.36040609
Iteration: 2, Func. Count: 15, Neg. LLF: 406.69065641579704
Iteration: 3, Func. Count: 23, Neg. LLF: 167.08788606754672
Iteration: 4, Func. Count: 30, Neg. LLF: 107.29708864405399
Iteration: 5, Func. Count: 36, Neg. LLF: 107.29006884162774
Iteration: 6, Func. Count: 42, Neg. LLF: 107.28786247505079
Iteration: 7, Func. Count: 48, Neg. LLF: 107.28756717984655
Iteration: 8, Func. Count: 54, Neg. LLF: 107.28756517727582
Iteration: 9, Func. Count: 59, Neg. LLF: 107.28756508887145
Optimization terminated successfully (Exit mode 0)
Current function value: 107.28756517727582
Iterations: 9
Function evaluations: 59
Gradient evaluations: 9
Iteration: 1, Func. Count: 8, Neg. LLF: 83278969.27622925
Iteration: 2, Func. Count: 17, Neg. LLF: 252.40387214732513
Iteration: 3, Func. Count: 26, Neg. LLF: 153.2428953839522
Iteration: 4, Func. Count: 34, Neg. LLF: 106.71589171294775
Iteration: 5, Func. Count: 41, Neg. LLF: 107.89212597629833
Iteration: 6, Func. Count: 49, Neg. LLF: 106.64279976977986
Iteration: 7, Func. Count: 56, Neg. LLF: 106.62858427926541
Iteration: 8, Func. Count: 63, Neg. LLF: 106.628419848084
Iteration: 9, Func. Count: 70, Neg. LLF: 106.62841632472558
Iteration: 10, Func. Count: 76, Neg. LLF: 106.62841630279391
Optimization terminated successfully (Exit mode 0)
Current function value: 106.62841632472558
Iterations: 10
Function evaluations: 76
Gradient evaluations: 10
Iteration: 1, Func. Count: 9, Neg. LLF: 85150286.7589682
Iteration: 2, Func. Count: 19, Neg. LLF: 147.28056619953168
Iteration: 3, Func. Count: 28, Neg. LLF: 361.80633822855947
Iteration: 4, Func. Count: 38, Neg. LLF: 107.97115306026885
Iteration: 5, Func. Count: 47, Neg. LLF: 105.83473821844406
Iteration: 6, Func. Count: 55, Neg. LLF: 105.82475998697704
Iteration: 7, Func. Count: 64, Neg. LLF: 105.77643262249606
Iteration: 8, Func. Count: 72, Neg. LLF: 105.77446546990073
Iteration: 9, Func. Count: 80, Neg. LLF: 105.77419050176756
Iteration: 10, Func. Count: 88, Neg. LLF: 105.77418789139239
Iteration: 11, Func. Count: 95, Neg. LLF: 105.77418783290523
Optimization terminated successfully (Exit mode 0)
Current function value: 105.77418789139239
Iterations: 11
Function evaluations: 95
Gradient evaluations: 11
Iteration: 1, Func. Count: 10, Neg. LLF: 69399356.60361862
Iteration: 2, Func. Count: 21, Neg. LLF: 141.53342804335446
Iteration: 3, Func. Count: 31, Neg. LLF: 145.8066056711043
Iteration: 4, Func. Count: 41, Neg. LLF: 110.78877308331082
Iteration: 5, Func. Count: 51, Neg. LLF: 105.82136363839376
Iteration: 6, Func. Count: 60, Neg. LLF: 105.79410139878546
Iteration: 7, Func. Count: 69, Neg. LLF: 105.78146622567226
Iteration: 8, Func. Count: 78, Neg. LLF: 105.77449937674618
Iteration: 9, Func. Count: 87, Neg. LLF: 105.77419868401087
Iteration: 10, Func. Count: 96, Neg. LLF: 105.77418868799244
Iteration: 11, Func. Count: 105, Neg. LLF: 105.77418789148585
Optimization terminated successfully (Exit mode 0)
Current function value: 105.77418789148585
Iterations: 11
Function evaluations: 105
Gradient evaluations: 11
Iteration: 1, Func. Count: 7, Neg. LLF: 121.46983261644476
Iteration: 2, Func. Count: 15, Neg. LLF: 117.23804284160042
Iteration: 3, Func. Count: 22, Neg. LLF: 110.6278034058135
Iteration: 4, Func. Count: 29, Neg. LLF: 110.51240781219167
Iteration: 5, Func. Count: 36, Neg. LLF: 108.6050485837118
Iteration: 6, Func. Count: 42, Neg. LLF: 108.60305893641387
Iteration: 7, Func. Count: 48, Neg. LLF: 108.60286231761843
Iteration: 8, Func. Count: 54, Neg. LLF: 108.60283933309336
Iteration: 9, Func. Count: 60, Neg. LLF: 108.60283748406246
Iteration: 10, Func. Count: 65, Neg. LLF: 108.60283752469877
Optimization terminated successfully (Exit mode 0)
Current function value: 108.60283748406246
Iterations: 10
Function evaluations: 65
Gradient evaluations: 10
Iteration: 1, Func. Count: 8, Neg. LLF: 43149178.04674477
Iteration: 2, Func. Count: 17, Neg. LLF: 316.96580654941783
Iteration: 3, Func. Count: 26, Neg. LLF: 186.30496507939688
Iteration: 4, Func. Count: 35, Neg. LLF: 107.29845532060381
Iteration: 5, Func. Count: 42, Neg. LLF: 107.2889336578786
Iteration: 6, Func. Count: 49, Neg. LLF: 107.28771367284702
Iteration: 7, Func. Count: 56, Neg. LLF: 107.28761040036753
Iteration: 8, Func. Count: 63, Neg. LLF: 107.28756520616572
Iteration: 9, Func. Count: 69, Neg. LLF: 107.28756511757852
Optimization terminated successfully (Exit mode 0)
Current function value: 107.28756520616572
Iterations: 9
Function evaluations: 69
Gradient evaluations: 9
Iteration: 1, Func. Count: 9, Neg. LLF: 65549059.09560148
Iteration: 2, Func. Count: 19, Neg. LLF: 396.48769343501493
Iteration: 3, Func. Count: 29, Neg. LLF: 272.74754312026334
Iteration: 4, Func. Count: 38, Neg. LLF: 108.63148722899537
Iteration: 5, Func. Count: 47, Neg. LLF: 106.72161589709624
Iteration: 6, Func. Count: 55, Neg. LLF: 106.80370989501695
Iteration: 7, Func. Count: 64, Neg. LLF: 106.63709731860662
Iteration: 8, Func. Count: 72, Neg. LLF: 106.63550226628115
Iteration: 9, Func. Count: 80, Neg. LLF: 106.63457230957042
Iteration: 10, Func. Count: 88, Neg. LLF: 106.63138146524389
Iteration: 11, Func. Count: 96, Neg. LLF: 106.62937537542555
Iteration: 12, Func. Count: 104, Neg. LLF: 106.6285018151247
Iteration: 13, Func. Count: 112, Neg. LLF: 106.62841716770549
Iteration: 14, Func. Count: 120, Neg. LLF: 106.62841616310604
Iteration: 15, Func. Count: 127, Neg. LLF: 106.6284161411145
Optimization terminated successfully (Exit mode 0)
Current function value: 106.62841616310604
Iterations: 15
Function evaluations: 127
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 69459559.37891765
Iteration: 2, Func. Count: 21, Neg. LLF: 274.68389016578465
Iteration: 3, Func. Count: 31, Neg. LLF: 6952753.2941800505
Iteration: 4, Func. Count: 41, Neg. LLF: 109.67492763901824
Iteration: 5, Func. Count: 51, Neg. LLF: 105.89879681894762
Iteration: 6, Func. Count: 60, Neg. LLF: 105.82562922649308
Iteration: 7, Func. Count: 69, Neg. LLF: 105.78663140209524
Iteration: 8, Func. Count: 78, Neg. LLF: 105.77679482775196
Iteration: 9, Func. Count: 87, Neg. LLF: 105.77437548623877
Iteration: 10, Func. Count: 96, Neg. LLF: 105.77424259955393
Iteration: 11, Func. Count: 105, Neg. LLF: 105.77419702474157
Iteration: 12, Func. Count: 114, Neg. LLF: 105.77418811186246
Iteration: 13, Func. Count: 122, Neg. LLF: 105.77418805336794
Optimization terminated successfully (Exit mode 0)
Current function value: 105.77418811186246
Iterations: 13
Function evaluations: 122
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 31734668.162445385
Iteration: 2, Func. Count: 23, Neg. LLF: 142.38005310366515
Iteration: 3, Func. Count: 34, Neg. LLF: 111.59561884032934
Iteration: 4, Func. Count: 45, Neg. LLF: 115.23357787008345
Iteration: 5, Func. Count: 56, Neg. LLF: 106.96838731574586
Iteration: 6, Func. Count: 66, Neg. LLF: 106.69266586882033
Iteration: 7, Func. Count: 76, Neg. LLF: 108.94310706648034
Iteration: 8, Func. Count: 87, Neg. LLF: 106.20604199091345
Iteration: 9, Func. Count: 97, Neg. LLF: 106.27574491274169
Iteration: 10, Func. Count: 108, Neg. LLF: 105.89327201608054
Iteration: 11, Func. Count: 118, Neg. LLF: 105.79273711934455
Iteration: 12, Func. Count: 128, Neg. LLF: 105.78097260181534
Iteration: 13, Func. Count: 138, Neg. LLF: 105.7744391810424
Iteration: 14, Func. Count: 148, Neg. LLF: 105.77418937729803
Iteration: 15, Func. Count: 158, Neg. LLF: 105.77418791798745
Iteration: 16, Func. Count: 167, Neg. LLF: 105.77418789442436
Optimization terminated successfully (Exit mode 0)
Current function value: 105.77418791798745
Iterations: 16
Function evaluations: 167
Gradient evaluations: 16
Iteration: 1, Func. Count: 8, Neg. LLF: 128.21429693644347
Iteration: 2, Func. Count: 17, Neg. LLF: 119.66122556931852
Iteration: 3, Func. Count: 26, Neg. LLF: 113.2640349429224
Iteration: 4, Func. Count: 35, Neg. LLF: 108.20453348035959
Iteration: 5, Func. Count: 43, Neg. LLF: 107.73156772959445
Iteration: 6, Func. Count: 51, Neg. LLF: 107.07360247233296
Iteration: 7, Func. Count: 58, Neg. LLF: 107.07121315515718
Iteration: 8, Func. Count: 65, Neg. LLF: 107.07050370705603
Iteration: 9, Func. Count: 72, Neg. LLF: 107.07040976961372
Iteration: 10, Func. Count: 79, Neg. LLF: 107.07036990576242
Iteration: 11, Func. Count: 85, Neg. LLF: 107.07036990573847
Optimization terminated successfully (Exit mode 0)
Current function value: 107.07036990576242
Iterations: 11
Function evaluations: 85
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 39945714.55482726
Iteration: 2, Func. Count: 19, Neg. LLF: 319.59533025624216
Iteration: 3, Func. Count: 29, Neg. LLF: 264.02098112929554
Iteration: 4, Func. Count: 38, Neg. LLF: 130.1835898841746
Iteration: 5, Func. Count: 47, Neg. LLF: 106.91182074080548
Iteration: 6, Func. Count: 55, Neg. LLF: 106.87661039207713
Iteration: 7, Func. Count: 63, Neg. LLF: 106.8504066553463
Iteration: 8, Func. Count: 71, Neg. LLF: 106.84606530676137
Iteration: 9, Func. Count: 79, Neg. LLF: 106.8456997848031
Iteration: 10, Func. Count: 87, Neg. LLF: 106.84568800977988
Iteration: 11, Func. Count: 94, Neg. LLF: 106.84568797080557
Optimization terminated successfully (Exit mode 0)
Current function value: 106.84568800977988
Iterations: 11
Function evaluations: 94
Gradient evaluations: 11
Iteration: 1, Func. Count: 10, Neg. LLF: 158.95157983172962
Iteration: 2, Func. Count: 20, Neg. LLF: 115.46556460622844
Iteration: 3, Func. Count: 30, Neg. LLF: 122.88380199252974
Iteration: 4, Func. Count: 40, Neg. LLF: 116.64622365801877
Iteration: 5, Func. Count: 51, Neg. LLF: 108.91874991419822
Iteration: 6, Func. Count: 61, Neg. LLF: 106.93523477852608
Iteration: 7, Func. Count: 70, Neg. LLF: 106.88622141911468
Iteration: 8, Func. Count: 79, Neg. LLF: 106.72199396894297
Iteration: 9, Func. Count: 88, Neg. LLF: 106.76544378583372
Iteration: 10, Func. Count: 98, Neg. LLF: 106.64551212625942
Iteration: 11, Func. Count: 108, Neg. LLF: 106.62707192116719
Iteration: 12, Func. Count: 117, Neg. LLF: 106.6265430895445
Iteration: 13, Func. Count: 126, Neg. LLF: 106.62653014554839
Iteration: 14, Func. Count: 135, Neg. LLF: 106.62652391196444
Iteration: 15, Func. Count: 143, Neg. LLF: 106.62652389106248
Optimization terminated successfully (Exit mode 0)
Current function value: 106.62652391196444
Iterations: 15
Function evaluations: 143
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 154.44347273142782
Iteration: 2, Func. Count: 22, Neg. LLF: 114.72470594013812
Iteration: 3, Func. Count: 33, Neg. LLF: 131.2013825327493
Iteration: 4, Func. Count: 44, Neg. LLF: 113.40559855158776
Iteration: 5, Func. Count: 56, Neg. LLF: 108.60528421113828
Iteration: 6, Func. Count: 67, Neg. LLF: 106.52598849788845
Iteration: 7, Func. Count: 77, Neg. LLF: 106.26182944161044
Iteration: 8, Func. Count: 87, Neg. LLF: 106.14909266289074
Iteration: 9, Func. Count: 97, Neg. LLF: 107.56111545606002
Iteration: 10, Func. Count: 108, Neg. LLF: 106.23116413148796
Iteration: 11, Func. Count: 119, Neg. LLF: 105.65280749747058
Iteration: 12, Func. Count: 129, Neg. LLF: 105.78798768474168
Iteration: 13, Func. Count: 140, Neg. LLF: 105.984743558854
Iteration: 14, Func. Count: 151, Neg. LLF: 105.49352646796828
Iteration: 15, Func. Count: 161, Neg. LLF: 105.48487572749498
Iteration: 16, Func. Count: 171, Neg. LLF: 105.48343314083509
Iteration: 17, Func. Count: 181, Neg. LLF: 105.48302591573142
Iteration: 18, Func. Count: 191, Neg. LLF: 105.48302096749102
Iteration: 19, Func. Count: 200, Neg. LLF: 105.48302093716578
Optimization terminated successfully (Exit mode 0)
Current function value: 105.48302096749102
Iterations: 19
Function evaluations: 200
Gradient evaluations: 19
Iteration: 1, Func. Count: 12, Neg. LLF: 154.61187132561818
Iteration: 2, Func. Count: 24, Neg. LLF: 114.77825041049323
Iteration: 3, Func. Count: 36, Neg. LLF: 128.27148399830122
Iteration: 4, Func. Count: 48, Neg. LLF: 111.31660873737287
Iteration: 5, Func. Count: 60, Neg. LLF: 109.47336815975567
Iteration: 6, Func. Count: 72, Neg. LLF: 106.83695611681219
Iteration: 7, Func. Count: 83, Neg. LLF: 106.60433453424871
Iteration: 8, Func. Count: 94, Neg. LLF: 106.55532855529114
Iteration: 9, Func. Count: 105, Neg. LLF: 106.54816868003573
Iteration: 10, Func. Count: 116, Neg. LLF: 106.542609508682
Iteration: 11, Func. Count: 127, Neg. LLF: 106.53891590383711
Iteration: 12, Func. Count: 138, Neg. LLF: 106.53843868672764
Iteration: 13, Func. Count: 149, Neg. LLF: 106.53814329691325
Iteration: 14, Func. Count: 160, Neg. LLF: 106.53803057289355
Iteration: 15, Func. Count: 171, Neg. LLF: 106.5380271773819
Iteration: 16, Func. Count: 181, Neg. LLF: 106.53802715758292
Optimization terminated successfully (Exit mode 0)
Current function value: 106.5380271773819
Iterations: 16
Function evaluations: 181
Gradient evaluations: 16
Iteration: 1, Func. Count: 9, Neg. LLF: 120.56819196294049
Iteration: 2, Func. Count: 19, Neg. LLF: 118.12124468775121
Iteration: 3, Func. Count: 29, Neg. LLF: 108.57012277441969
Iteration: 4, Func. Count: 38, Neg. LLF: 106.8922557956957
Iteration: 5, Func. Count: 46, Neg. LLF: 106.68175429815119
Iteration: 6, Func. Count: 54, Neg. LLF: 112.1465372367333
Iteration: 7, Func. Count: 64, Neg. LLF: 106.45420140495699
Iteration: 8, Func. Count: 72, Neg. LLF: 106.44179603387431
Iteration: 9, Func. Count: 80, Neg. LLF: 106.4287276238434
Iteration: 10, Func. Count: 88, Neg. LLF: 106.4279230697503
Iteration: 11, Func. Count: 96, Neg. LLF: 106.42713416350038
Iteration: 12, Func. Count: 104, Neg. LLF: 106.42712290527203
Iteration: 13, Func. Count: 112, Neg. LLF: 106.42711856216818
Iteration: 14, Func. Count: 119, Neg. LLF: 106.42711856216764
Optimization terminated successfully (Exit mode 0)
Current function value: 106.42711856216818
Iterations: 14
Function evaluations: 119
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 148.15574342901215
Iteration: 2, Func. Count: 20, Neg. LLF: 113.17320073496744
Iteration: 3, Func. Count: 30, Neg. LLF: 113.72827992289774
Iteration: 4, Func. Count: 40, Neg. LLF: 108.55558690293756
Iteration: 5, Func. Count: 50, Neg. LLF: 107.24401177406776
Iteration: 6, Func. Count: 60, Neg. LLF: 106.48359743721046
Iteration: 7, Func. Count: 69, Neg. LLF: 106.43144904208111
Iteration: 8, Func. Count: 78, Neg. LLF: 106.42832820603768
Iteration: 9, Func. Count: 87, Neg. LLF: 106.42738853634053
Iteration: 10, Func. Count: 96, Neg. LLF: 106.42713595467615
Iteration: 11, Func. Count: 105, Neg. LLF: 106.42711963435127
Iteration: 12, Func. Count: 114, Neg. LLF: 106.42711857388525
Iteration: 13, Func. Count: 122, Neg. LLF: 106.42711859894314
Optimization terminated successfully (Exit mode 0)
Current function value: 106.42711857388525
Iterations: 13
Function evaluations: 122
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 146.75973384260365
Iteration: 2, Func. Count: 22, Neg. LLF: 114.20686896161799
Iteration: 3, Func. Count: 33, Neg. LLF: 116.47153465525857
Iteration: 4, Func. Count: 44, Neg. LLF: 107.9156650134263
Iteration: 5, Func. Count: 55, Neg. LLF: 108.57545147695657
Iteration: 6, Func. Count: 66, Neg. LLF: 106.46878350278301
Iteration: 7, Func. Count: 76, Neg. LLF: 106.33028671291363
Iteration: 8, Func. Count: 86, Neg. LLF: 105.97161786096076
Iteration: 9, Func. Count: 96, Neg. LLF: 106.02743207553293
Iteration: 10, Func. Count: 107, Neg. LLF: 105.83993764371618
Iteration: 11, Func. Count: 117, Neg. LLF: 105.81272240148704
Iteration: 12, Func. Count: 127, Neg. LLF: 105.80030909114568
Iteration: 13, Func. Count: 137, Neg. LLF: 105.79956519584697
Iteration: 14, Func. Count: 147, Neg. LLF: 105.79934308769717
Iteration: 15, Func. Count: 157, Neg. LLF: 105.79931732398447
Iteration: 16, Func. Count: 167, Neg. LLF: 105.7993132360863
Iteration: 17, Func. Count: 176, Neg. LLF: 105.79931318865411
Optimization terminated successfully (Exit mode 0)
Current function value: 105.7993132360863
Iterations: 17
Function evaluations: 176
Gradient evaluations: 17
Iteration: 1, Func. Count: 12, Neg. LLF: 143.23171894670568
Iteration: 2, Func. Count: 24, Neg. LLF: 113.90093712486055
Iteration: 3, Func. Count: 36, Neg. LLF: 120.57203143021388
Iteration: 4, Func. Count: 48, Neg. LLF: 107.57364765321397
Iteration: 5, Func. Count: 60, Neg. LLF: 105.97422030793182
Iteration: 6, Func. Count: 71, Neg. LLF: 240.3784809757724
Iteration: 7, Func. Count: 83, Neg. LLF: 107.4061760173679
Iteration: 8, Func. Count: 95, Neg. LLF: 105.66880259594883
Iteration: 9, Func. Count: 107, Neg. LLF: 105.4310977296446
Iteration: 10, Func. Count: 119, Neg. LLF: 105.28322851090432
Iteration: 11, Func. Count: 130, Neg. LLF: 105.27690784940926
Iteration: 12, Func. Count: 141, Neg. LLF: 105.27170956400873
Iteration: 13, Func. Count: 152, Neg. LLF: 105.27119441036005
Iteration: 14, Func. Count: 163, Neg. LLF: 105.27107827979536
Iteration: 15, Func. Count: 174, Neg. LLF: 105.27104089993442
Iteration: 16, Func. Count: 185, Neg. LLF: 105.27103909112603
Iteration: 17, Func. Count: 195, Neg. LLF: 105.27103905956383
Optimization terminated successfully (Exit mode 0)
Current function value: 105.27103909112603
Iterations: 17
Function evaluations: 195
Gradient evaluations: 17
Iteration: 1, Func. Count: 13, Neg. LLF: 143.46344518677157
Iteration: 2, Func. Count: 26, Neg. LLF: 114.57099288605994
Iteration: 3, Func. Count: 39, Neg. LLF: 119.2474437013793
Iteration: 4, Func. Count: 52, Neg. LLF: 106.22928354864261
Iteration: 5, Func. Count: 64, Neg. LLF: 107.66920921761704
Iteration: 6, Func. Count: 77, Neg. LLF: 111.86628526996189
Iteration: 7, Func. Count: 90, Neg. LLF: 105.43975618625328
Iteration: 8, Func. Count: 102, Neg. LLF: 105.2948095059699
Iteration: 9, Func. Count: 115, Neg. LLF: 104.88353144834859
Iteration: 10, Func. Count: 127, Neg. LLF: 104.67502012526482
Iteration: 11, Func. Count: 139, Neg. LLF: 104.659651097437
Iteration: 12, Func. Count: 151, Neg. LLF: 104.6545815300952
Iteration: 13, Func. Count: 163, Neg. LLF: 104.65455289093656
Iteration: 14, Func. Count: 175, Neg. LLF: 104.6545502342268
Iteration: 15, Func. Count: 187, Neg. LLF: 104.65454938367176
Optimization terminated successfully (Exit mode 0)
Current function value: 104.65454938367176
Iterations: 15
Function evaluations: 187
Gradient evaluations: 15
Iteration: 1, Func. Count: 6, Neg. LLF: 122.16100691659707
Iteration: 2, Func. Count: 13, Neg. LLF: 154.18534766001503
Iteration: 3, Func. Count: 20, Neg. LLF: 110.48262246968505
Iteration: 4, Func. Count: 27, Neg. LLF: 108.82433433167215
Iteration: 5, Func. Count: 33, Neg. LLF: 108.63739700179424
Iteration: 6, Func. Count: 38, Neg. LLF: 108.63177887309187
Iteration: 7, Func. Count: 43, Neg. LLF: 108.63172167250515
Iteration: 8, Func. Count: 47, Neg. LLF: 108.63172167255394
Optimization terminated successfully (Exit mode 0)
Current function value: 108.63172167250515
Iterations: 8
Function evaluations: 47
Gradient evaluations: 8
Iteration: 1, Func. Count: 7, Neg. LLF: 116.53112176898948
Iteration: 2, Func. Count: 14, Neg. LLF: 112.8993550457054
Iteration: 3, Func. Count: 21, Neg. LLF: 113.89099298321702
Iteration: 4, Func. Count: 29, Neg. LLF: 108.65342603705298
Iteration: 5, Func. Count: 36, Neg. LLF: 108.53414672270617
Iteration: 6, Func. Count: 42, Neg. LLF: 108.52253382177315
Iteration: 7, Func. Count: 48, Neg. LLF: 108.52749685688576
Iteration: 8, Func. Count: 55, Neg. LLF: 108.51926813923433
Iteration: 9, Func. Count: 61, Neg. LLF: 108.51898926982051
Iteration: 10, Func. Count: 67, Neg. LLF: 108.5189852428585
Iteration: 11, Func. Count: 72, Neg. LLF: 108.51898524290986
Optimization terminated successfully (Exit mode 0)
Current function value: 108.5189852428585
Iterations: 11
Function evaluations: 72
Gradient evaluations: 11
Iteration: 1, Func. Count: 8, Neg. LLF: 116.46314710816586
Iteration: 2, Func. Count: 16, Neg. LLF: 113.67610771165712
Iteration: 3, Func. Count: 24, Neg. LLF: 117.20184642511727
Iteration: 4, Func. Count: 32, Neg. LLF: 109.9916687599511
Iteration: 5, Func. Count: 40, Neg. LLF: 108.14702293761727
Iteration: 6, Func. Count: 47, Neg. LLF: 108.12640772718109
Iteration: 7, Func. Count: 54, Neg. LLF: 108.10618017817167
Iteration: 8, Func. Count: 61, Neg. LLF: 108.09684793036836
Iteration: 9, Func. Count: 68, Neg. LLF: 108.09623605266643
Iteration: 10, Func. Count: 75, Neg. LLF: 108.09615933122245
Iteration: 11, Func. Count: 82, Neg. LLF: 108.096158725375
Optimization terminated successfully (Exit mode 0)
Current function value: 108.096158725375
Iterations: 11
Function evaluations: 82
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 116.46963259323374
Iteration: 2, Func. Count: 18, Neg. LLF: 113.31513442464077
Iteration: 3, Func. Count: 27, Neg. LLF: 109.00428504238371
Iteration: 4, Func. Count: 36, Neg. LLF: 150.55509368098146
Iteration: 5, Func. Count: 45, Neg. LLF: 108.12586069490304
Iteration: 6, Func. Count: 53, Neg. LLF: 108.10588117829319
Iteration: 7, Func. Count: 61, Neg. LLF: 108.09663004337966
Iteration: 8, Func. Count: 69, Neg. LLF: 108.09622815651083
Iteration: 9, Func. Count: 77, Neg. LLF: 108.09616092117614
Iteration: 10, Func. Count: 85, Neg. LLF: 108.09615887637507
Iteration: 11, Func. Count: 92, Neg. LLF: 108.09615891609464
Optimization terminated successfully (Exit mode 0)
Current function value: 108.09615887637507
Iterations: 11
Function evaluations: 92
Gradient evaluations: 11
Iteration: 1, Func. Count: 10, Neg. LLF: 116.6846128180244
Iteration: 2, Func. Count: 20, Neg. LLF: 113.38783514113837
Iteration: 3, Func. Count: 30, Neg. LLF: 117.40995522206053
Iteration: 4, Func. Count: 40, Neg. LLF: 186.87489010567728
Iteration: 5, Func. Count: 50, Neg. LLF: 108.13825003761214
Iteration: 6, Func. Count: 59, Neg. LLF: 108.11109043292751
Iteration: 7, Func. Count: 68, Neg. LLF: 108.09663082281509
Iteration: 8, Func. Count: 77, Neg. LLF: 108.09619283516062
Iteration: 9, Func. Count: 86, Neg. LLF: 108.09616327661244
Iteration: 10, Func. Count: 95, Neg. LLF: 108.09615870470967
Iteration: 11, Func. Count: 103, Neg. LLF: 108.09615873064186
Optimization terminated successfully (Exit mode 0)
Current function value: 108.09615870470967
Iterations: 11
Function evaluations: 103
Gradient evaluations: 11
Iteration: 1, Func. Count: 7, Neg. LLF: 130.79912415189636
Iteration: 2, Func. Count: 15, Neg. LLF: 126.45358894402996
Iteration: 3, Func. Count: 22, Neg. LLF: 114.79872002544674
Iteration: 4, Func. Count: 30, Neg. LLF: 109.04413330609725
Iteration: 5, Func. Count: 37, Neg. LLF: 108.58426159118655
Iteration: 6, Func. Count: 44, Neg. LLF: 108.46758031107386
Iteration: 7, Func. Count: 50, Neg. LLF: 108.46598978891635
Iteration: 8, Func. Count: 56, Neg. LLF: 108.46597300451946
Iteration: 9, Func. Count: 62, Neg. LLF: 108.46596946863102
Iteration: 10, Func. Count: 67, Neg. LLF: 108.46596946864483
Optimization terminated successfully (Exit mode 0)
Current function value: 108.46596946863102
Iterations: 10
Function evaluations: 67
Gradient evaluations: 10
Iteration: 1, Func. Count: 8, Neg. LLF: 69853572.17363326
Iteration: 2, Func. Count: 17, Neg. LLF: 416.54398691259496
Iteration: 3, Func. Count: 26, Neg. LLF: 166.89007561521896
Iteration: 4, Func. Count: 34, Neg. LLF: 107.29790201040214
Iteration: 5, Func. Count: 41, Neg. LLF: 107.2902140112957
Iteration: 6, Func. Count: 48, Neg. LLF: 107.28795565307713
Iteration: 7, Func. Count: 55, Neg. LLF: 107.28756716842503
Iteration: 8, Func. Count: 62, Neg. LLF: 107.28756516911808
Iteration: 9, Func. Count: 68, Neg. LLF: 107.287565080685
Optimization terminated successfully (Exit mode 0)
Current function value: 107.28756516911808
Iterations: 9
Function evaluations: 68
Gradient evaluations: 9
Iteration: 1, Func. Count: 9, Neg. LLF: 80766638.11817648
Iteration: 2, Func. Count: 19, Neg. LLF: 244.88708795478598
Iteration: 3, Func. Count: 29, Neg. LLF: 151.97840452118362
Iteration: 4, Func. Count: 38, Neg. LLF: 110.34705205172702
Iteration: 5, Func. Count: 48, Neg. LLF: 106.87118756505531
Iteration: 6, Func. Count: 56, Neg. LLF: 106.69986871108152
Iteration: 7, Func. Count: 64, Neg. LLF: 106.63426846159778
Iteration: 8, Func. Count: 72, Neg. LLF: 106.62965186408583
Iteration: 9, Func. Count: 80, Neg. LLF: 106.62869503240435
Iteration: 10, Func. Count: 88, Neg. LLF: 106.62852091512207
Iteration: 11, Func. Count: 96, Neg. LLF: 106.62844987661504
Iteration: 12, Func. Count: 104, Neg. LLF: 106.62841920306661
Iteration: 13, Func. Count: 112, Neg. LLF: 106.62841627790937
Iteration: 14, Func. Count: 119, Neg. LLF: 106.62841625598988
Optimization terminated successfully (Exit mode 0)
Current function value: 106.62841627790937
Iterations: 14
Function evaluations: 119
Gradient evaluations: 14
Iteration: 1, Func. Count: 10, Neg. LLF: 83481941.83193344
Iteration: 2, Func. Count: 21, Neg. LLF: 146.7170952678621
Iteration: 3, Func. Count: 31, Neg. LLF: 334.37057369526224
Iteration: 4, Func. Count: 42, Neg. LLF: 106.79987663803486
Iteration: 5, Func. Count: 51, Neg. LLF: 105.89019189309384
Iteration: 6, Func. Count: 60, Neg. LLF: 105.87698137241975
Iteration: 7, Func. Count: 70, Neg. LLF: 105.77698931077869
Iteration: 8, Func. Count: 79, Neg. LLF: 105.77420008040934
Iteration: 9, Func. Count: 88, Neg. LLF: 105.77418877020119
Iteration: 10, Func. Count: 97, Neg. LLF: 105.77418788640557
Optimization terminated successfully (Exit mode 0)
Current function value: 105.77418788640557
Iterations: 10
Function evaluations: 97
Gradient evaluations: 10
Iteration: 1, Func. Count: 11, Neg. LLF: 79848526.78048751
Iteration: 2, Func. Count: 23, Neg. LLF: 109.78964002962825
Iteration: 3, Func. Count: 34, Neg. LLF: 167.50017033525398
Iteration: 4, Func. Count: 46, Neg. LLF: 106.001156135804
Iteration: 5, Func. Count: 56, Neg. LLF: 106.50949044956208
Iteration: 6, Func. Count: 67, Neg. LLF: 106.51538409511556
Iteration: 7, Func. Count: 78, Neg. LLF: 105.77550116723374
Iteration: 8, Func. Count: 88, Neg. LLF: 105.7742127031083
Iteration: 9, Func. Count: 98, Neg. LLF: 105.77418805511073
Iteration: 10, Func. Count: 107, Neg. LLF: 105.77418803165185
Optimization terminated successfully (Exit mode 0)
Current function value: 105.77418805511073
Iterations: 10
Function evaluations: 107
Gradient evaluations: 10
Iteration: 1, Func. Count: 8, Neg. LLF: 131.01474622414514
Iteration: 2, Func. Count: 17, Neg. LLF: 125.20217580322563
Iteration: 3, Func. Count: 25, Neg. LLF: 112.98140618111533
Iteration: 4, Func. Count: 34, Neg. LLF: 110.40272322990994
Iteration: 5, Func. Count: 42, Neg. LLF: 108.35876398961167
Iteration: 6, Func. Count: 49, Neg. LLF: 108.3702905922447
Iteration: 7, Func. Count: 57, Neg. LLF: 108.33021212225658
Iteration: 8, Func. Count: 65, Neg. LLF: 108.30435484522786
Iteration: 9, Func. Count: 72, Neg. LLF: 108.30411572680936
Iteration: 10, Func. Count: 79, Neg. LLF: 108.30410899584841
Iteration: 11, Func. Count: 85, Neg. LLF: 108.3041089661646
Optimization terminated successfully (Exit mode 0)
Current function value: 108.30410899584841
Iterations: 11
Function evaluations: 85
Gradient evaluations: 11
Iteration: 1, Func. Count: 9, Neg. LLF: 41498023.68761264
Iteration: 2, Func. Count: 19, Neg. LLF: 220.4026437178137
Iteration: 3, Func. Count: 29, Neg. LLF: 131.48133902607384
Iteration: 4, Func. Count: 39, Neg. LLF: 107.3059730623593
Iteration: 5, Func. Count: 47, Neg. LLF: 107.28797435759677
Iteration: 6, Func. Count: 55, Neg. LLF: 107.28756629900592
Iteration: 7, Func. Count: 63, Neg. LLF: 107.28756517998049
Iteration: 8, Func. Count: 70, Neg. LLF: 107.2875650914703
Optimization terminated successfully (Exit mode 0)
Current function value: 107.28756517998049
Iterations: 8
Function evaluations: 70
Gradient evaluations: 8
Iteration: 1, Func. Count: 10, Neg. LLF: 63321054.56854862
Iteration: 2, Func. Count: 21, Neg. LLF: 386.845658953371
Iteration: 3, Func. Count: 32, Neg. LLF: 327.2024762204925
Iteration: 4, Func. Count: 42, Neg. LLF: 107.67194529894789
Iteration: 5, Func. Count: 52, Neg. LLF: 106.64376005580823
Iteration: 6, Func. Count: 61, Neg. LLF: 106.62988522128316
Iteration: 7, Func. Count: 70, Neg. LLF: 106.62942366038469
Iteration: 8, Func. Count: 79, Neg. LLF: 106.62914958039758
Iteration: 9, Func. Count: 88, Neg. LLF: 106.62861189502114
Iteration: 10, Func. Count: 97, Neg. LLF: 106.62844564220653
Iteration: 11, Func. Count: 106, Neg. LLF: 106.62841748589354
Iteration: 12, Func. Count: 115, Neg. LLF: 106.62841621923995
Iteration: 13, Func. Count: 123, Neg. LLF: 106.6284161973085
Optimization terminated successfully (Exit mode 0)
Current function value: 106.62841621923995
Iterations: 13
Function evaluations: 123
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 67469853.76524013
Iteration: 2, Func. Count: 23, Neg. LLF: 268.6978432637809
Iteration: 3, Func. Count: 34, Neg. LLF: 7218015.071859518
Iteration: 4, Func. Count: 45, Neg. LLF: 109.68125405610401
Iteration: 5, Func. Count: 56, Neg. LLF: 105.89322073126914
Iteration: 6, Func. Count: 66, Neg. LLF: 105.83453944870408
Iteration: 7, Func. Count: 76, Neg. LLF: 105.781236957277
Iteration: 8, Func. Count: 86, Neg. LLF: 105.77632552949669
Iteration: 9, Func. Count: 96, Neg. LLF: 105.77422881607453
Iteration: 10, Func. Count: 106, Neg. LLF: 105.77420308974233
Iteration: 11, Func. Count: 116, Neg. LLF: 105.77418988326798
Iteration: 12, Func. Count: 126, Neg. LLF: 105.7741879048856
Iteration: 13, Func. Count: 135, Neg. LLF: 105.77418784637293
Optimization terminated successfully (Exit mode 0)
Current function value: 105.7741879048856
Iterations: 13
Function evaluations: 135
Gradient evaluations: 13
Iteration: 1, Func. Count: 12, Neg. LLF: 65860237.38637443
Iteration: 2, Func. Count: 25, Neg. LLF: 163.64895791635772
Iteration: 3, Func. Count: 37, Neg. LLF: 114.13931064856173
Iteration: 4, Func. Count: 49, Neg. LLF: 111.11066245639536
Iteration: 5, Func. Count: 61, Neg. LLF: 107.3193551181562
Iteration: 6, Func. Count: 73, Neg. LLF: 105.98997888988971
Iteration: 7, Func. Count: 84, Neg. LLF: 106.65252584385736
Iteration: 8, Func. Count: 96, Neg. LLF: 105.7991569577908
Iteration: 9, Func. Count: 107, Neg. LLF: 105.7786518688048
Iteration: 10, Func. Count: 118, Neg. LLF: 105.77542113350681
Iteration: 11, Func. Count: 129, Neg. LLF: 105.77419681541019
Iteration: 12, Func. Count: 140, Neg. LLF: 105.77418811422555
Iteration: 13, Func. Count: 150, Neg. LLF: 105.77418809094542
Optimization terminated successfully (Exit mode 0)
Current function value: 105.77418811422555
Iterations: 13
Function evaluations: 150
Gradient evaluations: 13
Iteration: 1, Func. Count: 9, Neg. LLF: 122.81963466058272
Iteration: 2, Func. Count: 19, Neg. LLF: 115.00656216000714
Iteration: 3, Func. Count: 29, Neg. LLF: 122.98336456398322
Iteration: 4, Func. Count: 38, Neg. LLF: 116.85677964372474
Iteration: 5, Func. Count: 47, Neg. LLF: 108.61059716616458
Iteration: 6, Func. Count: 56, Neg. LLF: 107.07439402613163
Iteration: 7, Func. Count: 64, Neg. LLF: 107.07060082277276
Iteration: 8, Func. Count: 72, Neg. LLF: 107.07037922794657
Iteration: 9, Func. Count: 80, Neg. LLF: 107.07037158261883
Iteration: 10, Func. Count: 88, Neg. LLF: 107.07036970865262
Iteration: 11, Func. Count: 95, Neg. LLF: 107.0703697086661
Optimization terminated successfully (Exit mode 0)
Current function value: 107.07036970865262
Iterations: 11
Function evaluations: 95
Gradient evaluations: 11
Iteration: 1, Func. Count: 10, Neg. LLF: 38084675.55452273
Iteration: 2, Func. Count: 21, Neg. LLF: 208.3536796736906
Iteration: 3, Func. Count: 31, Neg. LLF: 197.23864448480518
Iteration: 4, Func. Count: 41, Neg. LLF: 114.04501483990794
Iteration: 5, Func. Count: 51, Neg. LLF: 107.00147778223997
Iteration: 6, Func. Count: 60, Neg. LLF: 106.85443387215916
Iteration: 7, Func. Count: 69, Neg. LLF: 106.8501684641842
Iteration: 8, Func. Count: 78, Neg. LLF: 106.84697388818854
Iteration: 9, Func. Count: 87, Neg. LLF: 106.84578025313321
Iteration: 10, Func. Count: 96, Neg. LLF: 106.84568882164312
Iteration: 11, Func. Count: 105, Neg. LLF: 106.8456877460014
Iteration: 12, Func. Count: 113, Neg. LLF: 106.84568770717479
Optimization terminated successfully (Exit mode 0)
Current function value: 106.8456877460014
Iterations: 12
Function evaluations: 113
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 58438848.35690021
Iteration: 2, Func. Count: 23, Neg. LLF: 326.4199178469325
Iteration: 3, Func. Count: 34, Neg. LLF: 7261358.496557726
Iteration: 4, Func. Count: 45, Neg. LLF: 117.73163923864031
Iteration: 5, Func. Count: 56, Neg. LLF: 112.14571713147669
Iteration: 6, Func. Count: 67, Neg. LLF: 107.51005838456305
Iteration: 7, Func. Count: 78, Neg. LLF: 106.86593002447617
Iteration: 8, Func. Count: 88, Neg. LLF: 106.78205106218978
Iteration: 9, Func. Count: 98, Neg. LLF: 106.72265663723852
Iteration: 10, Func. Count: 108, Neg. LLF: 106.71514081453049
Iteration: 11, Func. Count: 118, Neg. LLF: 106.71409762084129
Iteration: 12, Func. Count: 128, Neg. LLF: 106.71353441784463
Iteration: 13, Func. Count: 138, Neg. LLF: 106.7132554506091
Iteration: 14, Func. Count: 148, Neg. LLF: 106.71317074539571
Iteration: 15, Func. Count: 158, Neg. LLF: 106.71312344844587
Iteration: 16, Func. Count: 168, Neg. LLF: 106.71311948502905
Iteration: 17, Func. Count: 177, Neg. LLF: 106.71311943400866
Optimization terminated successfully (Exit mode 0)
Current function value: 106.71311948502905
Iterations: 17
Function evaluations: 177
Gradient evaluations: 17
Iteration: 1, Func. Count: 12, Neg. LLF: 62799601.65432091
Iteration: 2, Func. Count: 25, Neg. LLF: 203.5135141827199
Iteration: 3, Func. Count: 37, Neg. LLF: 1743432.2347175512
Iteration: 4, Func. Count: 49, Neg. LLF: 145.16832669922718
Iteration: 5, Func. Count: 61, Neg. LLF: 106.89143028186338
Iteration: 6, Func. Count: 73, Neg. LLF: 107.67027925387777
Iteration: 7, Func. Count: 85, Neg. LLF: 107.6662793909205
Iteration: 8, Func. Count: 97, Neg. LLF: 106.68236283659036
Iteration: 9, Func. Count: 109, Neg. LLF: 106.48798336701064
Iteration: 10, Func. Count: 121, Neg. LLF: 105.51718426791389
Iteration: 11, Func. Count: 132, Neg. LLF: 105.49355970614029
Iteration: 12, Func. Count: 143, Neg. LLF: 105.48628517328348
Iteration: 13, Func. Count: 154, Neg. LLF: 105.48318761709692
Iteration: 14, Func. Count: 165, Neg. LLF: 105.48302851256838
Iteration: 15, Func. Count: 176, Neg. LLF: 105.48302076566965
Iteration: 16, Func. Count: 186, Neg. LLF: 105.48302073540471
Optimization terminated successfully (Exit mode 0)
Current function value: 105.48302076566965
Iterations: 16
Function evaluations: 186
Gradient evaluations: 16
Iteration: 1, Func. Count: 13, Neg. LLF: 62887335.24813309
Iteration: 2, Func. Count: 27, Neg. LLF: 277.6130726613663
Iteration: 3, Func. Count: 40, Neg. LLF: 342.0032727495495
Iteration: 4, Func. Count: 54, Neg. LLF: 133.74483695475766
Iteration: 5, Func. Count: 67, Neg. LLF: 120.82523649245155
Iteration: 6, Func. Count: 80, Neg. LLF: 107.1721387086868
Iteration: 7, Func. Count: 93, Neg. LLF: 107.01788004370269
Iteration: 8, Func. Count: 106, Neg. LLF: 106.84504318822151
Iteration: 9, Func. Count: 119, Neg. LLF: 106.11381099204847
Iteration: 10, Func. Count: 132, Neg. LLF: 106.39030316308566
Iteration: 11, Func. Count: 145, Neg. LLF: 105.62988269393055
Iteration: 12, Func. Count: 157, Neg. LLF: 105.52076063842388
Iteration: 13, Func. Count: 169, Neg. LLF: 105.49916363862215
Iteration: 14, Func. Count: 181, Neg. LLF: 105.48685575382271
Iteration: 15, Func. Count: 193, Neg. LLF: 105.4832660982336
Iteration: 16, Func. Count: 205, Neg. LLF: 105.48303151193504
Iteration: 17, Func. Count: 217, Neg. LLF: 105.48302299307758
Iteration: 18, Func. Count: 229, Neg. LLF: 105.48302095691301
Iteration: 19, Func. Count: 240, Neg. LLF: 105.48302092872609
Optimization terminated successfully (Exit mode 0)
Current function value: 105.48302095691301
Iterations: 19
Function evaluations: 240
Gradient evaluations: 19
Iteration: 1, Func. Count: 10, Neg. LLF: 113.50802268040285
Iteration: 2, Func. Count: 20, Neg. LLF: 120.20595442343328
Iteration: 3, Func. Count: 30, Neg. LLF: 108.1987936810145
Iteration: 4, Func. Count: 40, Neg. LLF: 123.25576714711657
Iteration: 5, Func. Count: 50, Neg. LLF: 107.9247942409391
Iteration: 6, Func. Count: 60, Neg. LLF: 106.95666782399128
Iteration: 7, Func. Count: 70, Neg. LLF: 106.43572204624152
Iteration: 8, Func. Count: 79, Neg. LLF: 106.42766736365415
Iteration: 9, Func. Count: 88, Neg. LLF: 106.42717233705538
Iteration: 10, Func. Count: 97, Neg. LLF: 106.42712356408077
Iteration: 11, Func. Count: 106, Neg. LLF: 106.42711878913562
Iteration: 12, Func. Count: 114, Neg. LLF: 106.42711878916526
Optimization terminated successfully (Exit mode 0)
Current function value: 106.42711878913562
Iterations: 12
Function evaluations: 114
Gradient evaluations: 12
Iteration: 1, Func. Count: 11, Neg. LLF: 36482487.29304306
Iteration: 2, Func. Count: 22, Neg. LLF: 124.18820829021006
Iteration: 3, Func. Count: 34, Neg. LLF: 149.53361038753926
Iteration: 4, Func. Count: 45, Neg. LLF: 107.07947221804585
Iteration: 5, Func. Count: 55, Neg. LLF: 112.57946685068143
Iteration: 6, Func. Count: 66, Neg. LLF: 108.66021105953507
Iteration: 7, Func. Count: 77, Neg. LLF: 106.86117891624431
Iteration: 8, Func. Count: 87, Neg. LLF: 106.81513519588849
Iteration: 9, Func. Count: 97, Neg. LLF: 106.81401843793452
Iteration: 10, Func. Count: 107, Neg. LLF: 106.81366930257376
Iteration: 11, Func. Count: 117, Neg. LLF: 106.8132884527289
Iteration: 12, Func. Count: 127, Neg. LLF: 106.81325777590718
Iteration: 13, Func. Count: 137, Neg. LLF: 106.8132563284526
Iteration: 14, Func. Count: 146, Neg. LLF: 106.81325629671686
Optimization terminated successfully (Exit mode 0)
Current function value: 106.8132563284526
Iterations: 14
Function evaluations: 146
Gradient evaluations: 14
Iteration: 1, Func. Count: 12, Neg. LLF: 57599074.98368191
Iteration: 2, Func. Count: 25, Neg. LLF: 320.63879108108284
Iteration: 3, Func. Count: 37, Neg. LLF: 6477871.101131111
Iteration: 4, Func. Count: 49, Neg. LLF: 132.47590590063675
Iteration: 5, Func. Count: 61, Neg. LLF: 119.60100648289392
Iteration: 6, Func. Count: 73, Neg. LLF: 105.95795981170978
Iteration: 7, Func. Count: 84, Neg. LLF: 105.8186320787983
Iteration: 8, Func. Count: 95, Neg. LLF: 105.81038459148756
Iteration: 9, Func. Count: 106, Neg. LLF: 105.80584128281558
Iteration: 10, Func. Count: 117, Neg. LLF: 105.8008015368139
Iteration: 11, Func. Count: 128, Neg. LLF: 105.79974684418976
Iteration: 12, Func. Count: 139, Neg. LLF: 105.79935700897055
Iteration: 13, Func. Count: 150, Neg. LLF: 105.79931483673191
Iteration: 14, Func. Count: 161, Neg. LLF: 105.79931326532935
Iteration: 15, Func. Count: 171, Neg. LLF: 105.79931321794842
Optimization terminated successfully (Exit mode 0)
Current function value: 105.79931326532935
Iterations: 15
Function evaluations: 171
Gradient evaluations: 15
Iteration: 1, Func. Count: 13, Neg. LLF: 62587198.93666575
Iteration: 2, Func. Count: 27, Neg. LLF: 207.04323430209146
Iteration: 3, Func. Count: 40, Neg. LLF: 120.80237120402842
Iteration: 4, Func. Count: 53, Neg. LLF: 125.73778501084699
Iteration: 5, Func. Count: 66, Neg. LLF: 116.32207016283408
Iteration: 6, Func. Count: 79, Neg. LLF: 107.66734752607547
Iteration: 7, Func. Count: 92, Neg. LLF: 107.51476142764939
Iteration: 8, Func. Count: 105, Neg. LLF: 106.05896856506995
Iteration: 9, Func. Count: 118, Neg. LLF: 105.3099497572954
Iteration: 10, Func. Count: 130, Neg. LLF: 105.28466978852384
Iteration: 11, Func. Count: 142, Neg. LLF: 105.27638326610692
Iteration: 12, Func. Count: 154, Neg. LLF: 105.27333032025771
Iteration: 13, Func. Count: 166, Neg. LLF: 105.27210875604194
Iteration: 14, Func. Count: 178, Neg. LLF: 105.27127697482368
Iteration: 15, Func. Count: 190, Neg. LLF: 105.27108091876882
Iteration: 16, Func. Count: 202, Neg. LLF: 105.27104245386565
Iteration: 17, Func. Count: 214, Neg. LLF: 105.27103911874786
Iteration: 18, Func. Count: 225, Neg. LLF: 105.27103908714827
Optimization terminated successfully (Exit mode 0)
Current function value: 105.27103911874786
Iterations: 18
Function evaluations: 225
Gradient evaluations: 18
Iteration: 1, Func. Count: 14, Neg. LLF: 63786062.2684813
Iteration: 2, Func. Count: 29, Neg. LLF: 642.6787734393461
Iteration: 3, Func. Count: 43, Neg. LLF: 310.80664727357953
Iteration: 4, Func. Count: 58, Neg. LLF: 118.07910593885522
Iteration: 5, Func. Count: 72, Neg. LLF: 107.80295557706631
Iteration: 6, Func. Count: 86, Neg. LLF: 107.6557493570264
Iteration: 7, Func. Count: 100, Neg. LLF: 105.23942776385431
Iteration: 8, Func. Count: 113, Neg. LLF: 107.25732125100254
Iteration: 9, Func. Count: 127, Neg. LLF: 105.06898523530364
Iteration: 10, Func. Count: 140, Neg. LLF: 105.03120866188341
Iteration: 11, Func. Count: 153, Neg. LLF: 105.01230500007132
Iteration: 12, Func. Count: 166, Neg. LLF: 104.73389756444107
Iteration: 13, Func. Count: 179, Neg. LLF: 104.71320987160395
Iteration: 14, Func. Count: 193, Neg. LLF: 104.66098091318808
Iteration: 15, Func. Count: 206, Neg. LLF: 104.6570322046339
Iteration: 16, Func. Count: 219, Neg. LLF: 104.655602028104
Iteration: 17, Func. Count: 232, Neg. LLF: 104.6546598299801
Iteration: 18, Func. Count: 245, Neg. LLF: 104.65457478923629
Iteration: 19, Func. Count: 258, Neg. LLF: 104.65455636746829
Iteration: 20, Func. Count: 271, Neg. LLF: 104.65455023701259
Iteration: 21, Func. Count: 284, Neg. LLF: 104.6545493816343
Optimization terminated successfully (Exit mode 0)
Current function value: 104.6545493816343
Iterations: 21
Function evaluations: 284
Gradient evaluations: 21
Iteration: 1, Func. Count: 7, Neg. LLF: 116.67828251206072
Iteration: 2, Func. Count: 15, Neg. LLF: 130.39545231767613
Iteration: 3, Func. Count: 22, Neg. LLF: 138.1413666255847
Iteration: 4, Func. Count: 29, Neg. LLF: 179.54550642770047
Iteration: 5, Func. Count: 36, Neg. LLF: 107.46791842699102
Iteration: 6, Func. Count: 42, Neg. LLF: 107.46476020797441
Iteration: 7, Func. Count: 48, Neg. LLF: 107.46309207421315
Iteration: 8, Func. Count: 54, Neg. LLF: 107.46306459948035
Iteration: 9, Func. Count: 59, Neg. LLF: 107.46306459950983
Optimization terminated successfully (Exit mode 0)
Current function value: 107.46306459948035
Iterations: 9
Function evaluations: 59
Gradient evaluations: 9
Iteration: 1, Func. Count: 8, Neg. LLF: 114.98679896688805
Iteration: 2, Func. Count: 16, Neg. LLF: 115.06263525934614
Iteration: 3, Func. Count: 24, Neg. LLF: 506.9317548275994
Iteration: 4, Func. Count: 32, Neg. LLF: 124.4443064650425
Iteration: 5, Func. Count: 40, Neg. LLF: 107.49168447415619
Iteration: 6, Func. Count: 47, Neg. LLF: 107.4658608989104
Iteration: 7, Func. Count: 54, Neg. LLF: 107.46365937697537
Iteration: 8, Func. Count: 61, Neg. LLF: 107.46314307999114
Iteration: 9, Func. Count: 68, Neg. LLF: 107.46309928860794
Iteration: 10, Func. Count: 75, Neg. LLF: 107.4630686012206
Iteration: 11, Func. Count: 82, Neg. LLF: 107.4630645547793
Iteration: 12, Func. Count: 88, Neg. LLF: 107.46306461145609
Optimization terminated successfully (Exit mode 0)
Current function value: 107.4630645547793
Iterations: 12
Function evaluations: 88
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 115.07273011824773
Iteration: 2, Func. Count: 18, Neg. LLF: 115.45938078719776
Iteration: 3, Func. Count: 27, Neg. LLF: 1783.5454496742752
Iteration: 4, Func. Count: 36, Neg. LLF: 162.8792143691011
Iteration: 5, Func. Count: 45, Neg. LLF: 107.48531713136347
Iteration: 6, Func. Count: 53, Neg. LLF: 107.46818199409876
Iteration: 7, Func. Count: 61, Neg. LLF: 107.46380530471791
Iteration: 8, Func. Count: 69, Neg. LLF: 107.46306985912335
Iteration: 9, Func. Count: 77, Neg. LLF: 107.46306420659745
Iteration: 10, Func. Count: 84, Neg. LLF: 107.46306421862035
Optimization terminated successfully (Exit mode 0)
Current function value: 107.46306420659745
Iterations: 10
Function evaluations: 84
Gradient evaluations: 10
Iteration: 1, Func. Count: 10, Neg. LLF: 115.15152430994007
Iteration: 2, Func. Count: 20, Neg. LLF: 108.57485903891586
Iteration: 3, Func. Count: 30, Neg. LLF: 177.7875168314931
Iteration: 4, Func. Count: 40, Neg. LLF: 114.30619999758763
Iteration: 5, Func. Count: 50, Neg. LLF: 107.68998142035629
Iteration: 6, Func. Count: 59, Neg. LLF: 107.48122497132988
Iteration: 7, Func. Count: 68, Neg. LLF: 107.46566963590895
Iteration: 8, Func. Count: 77, Neg. LLF: 107.46318461093576
Iteration: 9, Func. Count: 86, Neg. LLF: 107.4630807112815
Iteration: 10, Func. Count: 95, Neg. LLF: 107.46306420328784
Iteration: 11, Func. Count: 103, Neg. LLF: 107.46306423063066
Optimization terminated successfully (Exit mode 0)
Current function value: 107.46306420328784
Iterations: 11
Function evaluations: 103
Gradient evaluations: 11
Iteration: 1, Func. Count: 11, Neg. LLF: 115.39768628923088
Iteration: 2, Func. Count: 22, Neg. LLF: 108.44060049975506
Iteration: 3, Func. Count: 32, Neg. LLF: 114.39691247166381
Iteration: 4, Func. Count: 43, Neg. LLF: 116.24807872716347
Iteration: 5, Func. Count: 55, Neg. LLF: 114.61123573090376
Iteration: 6, Func. Count: 66, Neg. LLF: 107.59337632641278
Iteration: 7, Func. Count: 76, Neg. LLF: 107.50496725865843
Iteration: 8, Func. Count: 86, Neg. LLF: 107.47627433979731
Iteration: 9, Func. Count: 96, Neg. LLF: 107.46352939453408
Iteration: 10, Func. Count: 106, Neg. LLF: 107.46309929940284
Iteration: 11, Func. Count: 116, Neg. LLF: 107.46306425823967
Iteration: 12, Func. Count: 125, Neg. LLF: 107.46306427337205
Optimization terminated successfully (Exit mode 0)
Current function value: 107.46306425823967
Iterations: 12
Function evaluations: 125
Gradient evaluations: 12
Iteration: 1, Func. Count: 8, Neg. LLF: 127.74576535986192
Iteration: 2, Func. Count: 17, Neg. LLF: 123.23807483983231
Iteration: 3, Func. Count: 25, Neg. LLF: 110.25640173759658
Iteration: 4, Func. Count: 33, Neg. LLF: 107.16778695760053
Iteration: 5, Func. Count: 41, Neg. LLF: 106.07862986250522
Iteration: 6, Func. Count: 48, Neg. LLF: 478.1763650831712
Iteration: 7, Func. Count: 57, Neg. LLF: 106.07410539209322
Iteration: 8, Func. Count: 65, Neg. LLF: 106.02641966736279
Iteration: 9, Func. Count: 72, Neg. LLF: 106.0255765986004
Iteration: 10, Func. Count: 79, Neg. LLF: 106.02546528681937
Iteration: 11, Func. Count: 86, Neg. LLF: 106.02544395591539
Iteration: 12, Func. Count: 92, Neg. LLF: 106.02544395591666
Optimization terminated successfully (Exit mode 0)
Current function value: 106.02544395591539
Iterations: 12
Function evaluations: 92
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 69868179.495842
Iteration: 2, Func. Count: 19, Neg. LLF: 418.1558223988
Iteration: 3, Func. Count: 29, Neg. LLF: 166.75690953599536
Iteration: 4, Func. Count: 38, Neg. LLF: 107.29764458072452
Iteration: 5, Func. Count: 46, Neg. LLF: 107.29011225495093
Iteration: 6, Func. Count: 54, Neg. LLF: 107.28796060330852
Iteration: 7, Func. Count: 62, Neg. LLF: 107.28756737990054
Iteration: 8, Func. Count: 70, Neg. LLF: 107.28756518157495
Iteration: 9, Func. Count: 77, Neg. LLF: 107.28756509318157
Optimization terminated successfully (Exit mode 0)
Current function value: 107.28756518157495
Iterations: 9
Function evaluations: 77
Gradient evaluations: 9
Iteration: 1, Func. Count: 10, Neg. LLF: 80823648.43213512
Iteration: 2, Func. Count: 21, Neg. LLF: 239.59645950334004
Iteration: 3, Func. Count: 32, Neg. LLF: 152.3765669959971
Iteration: 4, Func. Count: 42, Neg. LLF: 110.75536629295605
Iteration: 5, Func. Count: 53, Neg. LLF: 106.86255429617489
Iteration: 6, Func. Count: 62, Neg. LLF: 106.70860719921168
Iteration: 7, Func. Count: 71, Neg. LLF: 106.63345544373843
Iteration: 8, Func. Count: 80, Neg. LLF: 106.62956129682416
Iteration: 9, Func. Count: 89, Neg. LLF: 106.62867188036992
Iteration: 10, Func. Count: 98, Neg. LLF: 106.62850947257635
Iteration: 11, Func. Count: 107, Neg. LLF: 106.62844578637211
Iteration: 12, Func. Count: 116, Neg. LLF: 106.62841870108117
Iteration: 13, Func. Count: 125, Neg. LLF: 106.62841625605203
Iteration: 14, Func. Count: 133, Neg. LLF: 106.62841623413728
Optimization terminated successfully (Exit mode 0)
Current function value: 106.62841625605203
Iterations: 14
Function evaluations: 133
Gradient evaluations: 14
Iteration: 1, Func. Count: 11, Neg. LLF: 83488747.34518546
Iteration: 2, Func. Count: 23, Neg. LLF: 147.19569419757548
Iteration: 3, Func. Count: 34, Neg. LLF: 295.83501080194105
Iteration: 4, Func. Count: 46, Neg. LLF: 106.57699117729027
Iteration: 5, Func. Count: 56, Neg. LLF: 105.85664160098447
Iteration: 6, Func. Count: 66, Neg. LLF: 105.81257161877954
Iteration: 7, Func. Count: 76, Neg. LLF: 105.78094273289567
Iteration: 8, Func. Count: 86, Neg. LLF: 106.04675328929524
Iteration: 9, Func. Count: 98, Neg. LLF: 105.77300739650637
Iteration: 10, Func. Count: 108, Neg. LLF: 105.77273179054735
Iteration: 11, Func. Count: 118, Neg. LLF: 105.77270876215411
Iteration: 12, Func. Count: 127, Neg. LLF: 105.7727087074932
Optimization terminated successfully (Exit mode 0)
Current function value: 105.77270876215411
Iterations: 12
Function evaluations: 127
Gradient evaluations: 12
Iteration: 1, Func. Count: 12, Neg. LLF: 79920619.15681316
Iteration: 2, Func. Count: 25, Neg. LLF: 109.6420573957431
Iteration: 3, Func. Count: 37, Neg. LLF: 181.20113606223873
Iteration: 4, Func. Count: 50, Neg. LLF: 111.79332138582153
Iteration: 5, Func. Count: 62, Neg. LLF: 106.38725291110929
Iteration: 6, Func. Count: 73, Neg. LLF: 110.66621794367497
Iteration: 7, Func. Count: 85, Neg. LLF: 117.28377714400057
Iteration: 8, Func. Count: 97, Neg. LLF: 105.79442212732567
Iteration: 9, Func. Count: 108, Neg. LLF: 105.7839292545036
Iteration: 10, Func. Count: 119, Neg. LLF: 105.77326284448975
Iteration: 11, Func. Count: 130, Neg. LLF: 105.77287069130963
Iteration: 12, Func. Count: 141, Neg. LLF: 105.7727418608154
Iteration: 13, Func. Count: 152, Neg. LLF: 105.77271207617015
Iteration: 14, Func. Count: 163, Neg. LLF: 105.77270861145965
Iteration: 15, Func. Count: 173, Neg. LLF: 105.77270858907077
Optimization terminated successfully (Exit mode 0)
Current function value: 105.77270861145965
Iterations: 15
Function evaluations: 173
Gradient evaluations: 15
Iteration: 1, Func. Count: 9, Neg. LLF: 125.19902411831492
Iteration: 2, Func. Count: 19, Neg. LLF: 112.47492814843945
Iteration: 3, Func. Count: 29, Neg. LLF: 124.49377424342441
Iteration: 4, Func. Count: 38, Neg. LLF: 107.45436591380341
Iteration: 5, Func. Count: 47, Neg. LLF: 106.19397480936642
Iteration: 6, Func. Count: 55, Neg. LLF: 108.13522756354602
Iteration: 7, Func. Count: 65, Neg. LLF: 108.84394366536009
Iteration: 8, Func. Count: 75, Neg. LLF: 106.02864134345279
Iteration: 9, Func. Count: 83, Neg. LLF: 106.02571136399287
Iteration: 10, Func. Count: 91, Neg. LLF: 106.02547333949357
Iteration: 11, Func. Count: 99, Neg. LLF: 106.0254443681631
Iteration: 12, Func. Count: 106, Neg. LLF: 106.02544430413651
Optimization terminated successfully (Exit mode 0)
Current function value: 106.0254443681631
Iterations: 12
Function evaluations: 106
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 41512198.7708729
Iteration: 2, Func. Count: 21, Neg. LLF: 230.78546143756765
Iteration: 3, Func. Count: 32, Neg. LLF: 140.83066936705546
Iteration: 4, Func. Count: 43, Neg. LLF: 107.30385561645453
Iteration: 5, Func. Count: 52, Neg. LLF: 107.28802723919665
Iteration: 6, Func. Count: 61, Neg. LLF: 107.28757572944659
Iteration: 7, Func. Count: 70, Neg. LLF: 107.28756827850097
Iteration: 8, Func. Count: 79, Neg. LLF: 107.28756517402864
Iteration: 9, Func. Count: 87, Neg. LLF: 107.28756508552866
Optimization terminated successfully (Exit mode 0)
Current function value: 107.28756517402864
Iterations: 9
Function evaluations: 87
Gradient evaluations: 9
Iteration: 1, Func. Count: 11, Neg. LLF: 63219935.93321783
Iteration: 2, Func. Count: 23, Neg. LLF: 381.145822183699
Iteration: 3, Func. Count: 35, Neg. LLF: 371.8402465856639
Iteration: 4, Func. Count: 46, Neg. LLF: 107.5775855913714
Iteration: 5, Func. Count: 57, Neg. LLF: 106.64681684188815
Iteration: 6, Func. Count: 67, Neg. LLF: 106.62935755156475
Iteration: 7, Func. Count: 77, Neg. LLF: 106.62882819179517
Iteration: 8, Func. Count: 87, Neg. LLF: 106.62869773469089
Iteration: 9, Func. Count: 97, Neg. LLF: 106.62859505929319
Iteration: 10, Func. Count: 107, Neg. LLF: 106.62848652583415
Iteration: 11, Func. Count: 117, Neg. LLF: 106.62842812168468
Iteration: 12, Func. Count: 127, Neg. LLF: 106.62841695113164
Iteration: 13, Func. Count: 137, Neg. LLF: 106.62841618697333
Optimization terminated successfully (Exit mode 0)
Current function value: 106.62841618697333
Iterations: 13
Function evaluations: 137
Gradient evaluations: 13
Iteration: 1, Func. Count: 12, Neg. LLF: 67348089.27686353
Iteration: 2, Func. Count: 25, Neg. LLF: 262.9221167524175
Iteration: 3, Func. Count: 37, Neg. LLF: 7183475.491187529
Iteration: 4, Func. Count: 49, Neg. LLF: 107.09519396128454
Iteration: 5, Func. Count: 61, Neg. LLF: 105.94808220393321
Iteration: 6, Func. Count: 72, Neg. LLF: 107.44113532454645
Iteration: 7, Func. Count: 84, Neg. LLF: 105.86756393530227
Iteration: 8, Func. Count: 95, Neg. LLF: 105.80798578985703
Iteration: 9, Func. Count: 106, Neg. LLF: 105.81092158361825
Iteration: 10, Func. Count: 118, Neg. LLF: 105.77534023335724
Iteration: 11, Func. Count: 129, Neg. LLF: 105.77342548092712
Iteration: 12, Func. Count: 140, Neg. LLF: 105.77294429178426
Iteration: 13, Func. Count: 151, Neg. LLF: 105.77271021134399
Iteration: 14, Func. Count: 162, Neg. LLF: 105.7727087424783
Iteration: 15, Func. Count: 172, Neg. LLF: 105.77270868783167
Optimization terminated successfully (Exit mode 0)
Current function value: 105.7727087424783
Iterations: 15
Function evaluations: 172
Gradient evaluations: 15
Iteration: 1, Func. Count: 13, Neg. LLF: 119.26601361276671
Iteration: 2, Func. Count: 26, Neg. LLF: 108.08724781286757
Iteration: 3, Func. Count: 39, Neg. LLF: 128.9004020592453
Iteration: 4, Func. Count: 52, Neg. LLF: 193.52979913878463
Iteration: 5, Func. Count: 65, Neg. LLF: 135.238991735068
Iteration: 6, Func. Count: 78, Neg. LLF: 116.89172440257161
Iteration: 7, Func. Count: 91, Neg. LLF: 108.4212338986795
Iteration: 8, Func. Count: 104, Neg. LLF: 107.08995588265216
Iteration: 9, Func. Count: 117, Neg. LLF: 105.88293474049645
Iteration: 10, Func. Count: 129, Neg. LLF: 107.1679371535671
Iteration: 11, Func. Count: 142, Neg. LLF: 106.09591732020587
Iteration: 12, Func. Count: 155, Neg. LLF: 105.82200132321061
Iteration: 13, Func. Count: 167, Neg. LLF: 105.82745005999183
Iteration: 14, Func. Count: 180, Neg. LLF: 105.80817503799477
Iteration: 15, Func. Count: 192, Neg. LLF: 105.80698620655673
Iteration: 16, Func. Count: 204, Neg. LLF: 105.80583936905313
Iteration: 17, Func. Count: 216, Neg. LLF: 105.80207707018178
Iteration: 18, Func. Count: 228, Neg. LLF: 105.80063690029885
Iteration: 19, Func. Count: 240, Neg. LLF: 105.7983317517385
Iteration: 20, Func. Count: 252, Neg. LLF: 105.79774326596433
Iteration: 21, Func. Count: 264, Neg. LLF: 105.79754785362559
Iteration: 22, Func. Count: 276, Neg. LLF: 105.79753974072675
Iteration: 23, Func. Count: 288, Neg. LLF: 105.79753859420317
Iteration: 24, Func. Count: 299, Neg. LLF: 105.79753858931744
Optimization terminated successfully (Exit mode 0)
Current function value: 105.79753859420317
Iterations: 24
Function evaluations: 299
Gradient evaluations: 24
Iteration: 1, Func. Count: 10, Neg. LLF: 118.68631293598484
Iteration: 2, Func. Count: 20, Neg. LLF: 116.46816361891732
Iteration: 3, Func. Count: 30, Neg. LLF: 117.23620283807847
Iteration: 4, Func. Count: 40, Neg. LLF: 4321077.609929432
Iteration: 5, Func. Count: 50, Neg. LLF: 199.7509164775074
Iteration: 6, Func. Count: 60, Neg. LLF: 107.16482236554207
Iteration: 7, Func. Count: 70, Neg. LLF: 106.03682895349785
Iteration: 8, Func. Count: 79, Neg. LLF: 106.0046034520134
Iteration: 9, Func. Count: 88, Neg. LLF: 107.32698528200132
Iteration: 10, Func. Count: 99, Neg. LLF: 105.99589735727969
Iteration: 11, Func. Count: 108, Neg. LLF: 105.99583146993915
Iteration: 12, Func. Count: 117, Neg. LLF: 105.99582298169715
Iteration: 13, Func. Count: 125, Neg. LLF: 105.99582298170299
Optimization terminated successfully (Exit mode 0)
Current function value: 105.99582298169715
Iterations: 13
Function evaluations: 125
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 38152268.01962554
Iteration: 2, Func. Count: 23, Neg. LLF: 215.47721094517257
Iteration: 3, Func. Count: 34, Neg. LLF: 210.13663746028837
Iteration: 4, Func. Count: 45, Neg. LLF: 114.76203572670661
Iteration: 5, Func. Count: 56, Neg. LLF: 107.00895250400674
Iteration: 6, Func. Count: 66, Neg. LLF: 106.85592684011587
Iteration: 7, Func. Count: 76, Neg. LLF: 106.85103041493309
Iteration: 8, Func. Count: 86, Neg. LLF: 106.84714933423228
Iteration: 9, Func. Count: 96, Neg. LLF: 106.84580014805587
Iteration: 10, Func. Count: 106, Neg. LLF: 106.84568898080384
Iteration: 11, Func. Count: 116, Neg. LLF: 106.84568774543646
Iteration: 12, Func. Count: 125, Neg. LLF: 106.84568770660786
Optimization terminated successfully (Exit mode 0)
Current function value: 106.84568774543646
Iterations: 12
Function evaluations: 125
Gradient evaluations: 12
Iteration: 1, Func. Count: 12, Neg. LLF: 58403736.132013634
Iteration: 2, Func. Count: 25, Neg. LLF: 323.29707206362446
Iteration: 3, Func. Count: 37, Neg. LLF: 7395997.661698655
Iteration: 4, Func. Count: 49, Neg. LLF: 117.62972687781031
Iteration: 5, Func. Count: 61, Neg. LLF: 111.4798177237665
Iteration: 6, Func. Count: 73, Neg. LLF: 107.36452066548121
Iteration: 7, Func. Count: 85, Neg. LLF: 106.87186101779581
Iteration: 8, Func. Count: 96, Neg. LLF: 106.85634542061442
Iteration: 9, Func. Count: 107, Neg. LLF: 106.766992880563
Iteration: 10, Func. Count: 118, Neg. LLF: 106.73464934839843
Iteration: 11, Func. Count: 129, Neg. LLF: 106.73015244837838
Iteration: 12, Func. Count: 140, Neg. LLF: 106.72658134190557
Iteration: 13, Func. Count: 151, Neg. LLF: 106.71690195613898
Iteration: 14, Func. Count: 162, Neg. LLF: 106.71491295377508
Iteration: 15, Func. Count: 173, Neg. LLF: 106.71338718789569
Iteration: 16, Func. Count: 184, Neg. LLF: 106.71314096878471
Iteration: 17, Func. Count: 195, Neg. LLF: 106.71311940338073
Iteration: 18, Func. Count: 205, Neg. LLF: 106.71311935240374
Optimization terminated successfully (Exit mode 0)
Current function value: 106.71311940338073
Iterations: 18
Function evaluations: 205
Gradient evaluations: 18
Iteration: 1, Func. Count: 13, Neg. LLF: 62731163.58047983
Iteration: 2, Func. Count: 27, Neg. LLF: 203.31863291080202
Iteration: 3, Func. Count: 40, Neg. LLF: 1741721.6658744917
Iteration: 4, Func. Count: 53, Neg. LLF: 145.91873759965694
Iteration: 5, Func. Count: 66, Neg. LLF: 107.13293384348327
Iteration: 6, Func. Count: 79, Neg. LLF: 110.05986291407842
Iteration: 7, Func. Count: 92, Neg. LLF: 107.21970082720468
Iteration: 8, Func. Count: 105, Neg. LLF: 107.5679119140585
Iteration: 9, Func. Count: 118, Neg. LLF: 106.7447674966272
Iteration: 10, Func. Count: 131, Neg. LLF: 106.23459374949174
Iteration: 11, Func. Count: 144, Neg. LLF: 105.66067235305488
Iteration: 12, Func. Count: 156, Neg. LLF: 105.62396455571013
Iteration: 13, Func. Count: 168, Neg. LLF: 105.66905245711696
Iteration: 14, Func. Count: 181, Neg. LLF: 105.5203274392477
Iteration: 15, Func. Count: 193, Neg. LLF: 105.49696227851649
Iteration: 16, Func. Count: 205, Neg. LLF: 105.49006347320416
Iteration: 17, Func. Count: 217, Neg. LLF: 105.48691427664112
Iteration: 18, Func. Count: 229, Neg. LLF: 105.48320522068607
Iteration: 19, Func. Count: 241, Neg. LLF: 105.48302819959216
Iteration: 20, Func. Count: 253, Neg. LLF: 105.48302061794605
Iteration: 21, Func. Count: 264, Neg. LLF: 105.48302058749924
Optimization terminated successfully (Exit mode 0)
Current function value: 105.48302061794605
Iterations: 21
Function evaluations: 264
Gradient evaluations: 21
Iteration: 1, Func. Count: 14, Neg. LLF: 124.76784566338213
Iteration: 2, Func. Count: 28, Neg. LLF: 109.0404188446191
Iteration: 3, Func. Count: 42, Neg. LLF: 109.98190265555954
Iteration: 4, Func. Count: 56, Neg. LLF: 214.31980430820082
Iteration: 5, Func. Count: 70, Neg. LLF: 124.59971689159654
Iteration: 6, Func. Count: 84, Neg. LLF: 106.1173733834949
Iteration: 7, Func. Count: 97, Neg. LLF: 114.95526470790954
Iteration: 8, Func. Count: 111, Neg. LLF: 111.52898045288644
Iteration: 9, Func. Count: 125, Neg. LLF: 106.79082148455201
Iteration: 10, Func. Count: 139, Neg. LLF: 106.04667233924062
Iteration: 11, Func. Count: 153, Neg. LLF: 105.93533071093265
Iteration: 12, Func. Count: 167, Neg. LLF: 105.5750363379288
Iteration: 13, Func. Count: 180, Neg. LLF: 106.05520977333128
Iteration: 14, Func. Count: 194, Neg. LLF: 105.53735697707657
Iteration: 15, Func. Count: 207, Neg. LLF: 105.50968452658135
Iteration: 16, Func. Count: 220, Neg. LLF: 105.47895324889804
Iteration: 17, Func. Count: 233, Neg. LLF: 105.4768798247733
Iteration: 18, Func. Count: 246, Neg. LLF: 105.47458167374246
Iteration: 19, Func. Count: 259, Neg. LLF: 105.47375870137327
Iteration: 20, Func. Count: 272, Neg. LLF: 105.47297288327235
Iteration: 21, Func. Count: 285, Neg. LLF: 105.4729020907947
Iteration: 22, Func. Count: 298, Neg. LLF: 105.47290033715574
Iteration: 23, Func. Count: 310, Neg. LLF: 105.47290030952468
Optimization terminated successfully (Exit mode 0)
Current function value: 105.47290033715574
Iterations: 23
Function evaluations: 310
Gradient evaluations: 23
Iteration: 1, Func. Count: 11, Neg. LLF: 114.50662636688864
Iteration: 2, Func. Count: 23, Neg. LLF: 113.09816331567396
Iteration: 3, Func. Count: 35, Neg. LLF: 117.73824270258687
Iteration: 4, Func. Count: 46, Neg. LLF: 112.60232943149938
Iteration: 5, Func. Count: 57, Neg. LLF: 218.51853055072667
Iteration: 6, Func. Count: 68, Neg. LLF: 106.94396044113344
Iteration: 7, Func. Count: 79, Neg. LLF: 106.03598437576031
Iteration: 8, Func. Count: 89, Neg. LLF: 106.00432694515293
Iteration: 9, Func. Count: 99, Neg. LLF: 106.06656924946152
Iteration: 10, Func. Count: 110, Neg. LLF: 106.01804953764429
Iteration: 11, Func. Count: 121, Neg. LLF: 105.99322242842605
Iteration: 12, Func. Count: 131, Neg. LLF: 105.99009816616679
Iteration: 13, Func. Count: 141, Neg. LLF: 105.99001317720118
Iteration: 14, Func. Count: 151, Neg. LLF: 105.9900028498334
Iteration: 15, Func. Count: 161, Neg. LLF: 105.99000105832012
Iteration: 16, Func. Count: 170, Neg. LLF: 105.99000105829658
Optimization terminated successfully (Exit mode 0)
Current function value: 105.99000105832012
Iterations: 16
Function evaluations: 170
Gradient evaluations: 16
Iteration: 1, Func. Count: 12, Neg. LLF: 36477339.44636838
Iteration: 2, Func. Count: 24, Neg. LLF: 123.79879569560875
Iteration: 3, Func. Count: 37, Neg. LLF: 154.97037230565843
Iteration: 4, Func. Count: 49, Neg. LLF: 107.02649596382008
Iteration: 5, Func. Count: 60, Neg. LLF: 112.3594323777408
Iteration: 6, Func. Count: 72, Neg. LLF: 108.34569930325127
Iteration: 7, Func. Count: 84, Neg. LLF: 106.84542586356278
Iteration: 8, Func. Count: 95, Neg. LLF: 106.81484730911905
Iteration: 9, Func. Count: 106, Neg. LLF: 106.81406049170633
Iteration: 10, Func. Count: 117, Neg. LLF: 106.81359715650412
Iteration: 11, Func. Count: 128, Neg. LLF: 106.81328342254021
Iteration: 12, Func. Count: 139, Neg. LLF: 106.81325736694212
Iteration: 13, Func. Count: 150, Neg. LLF: 106.81325632914123
Iteration: 14, Func. Count: 160, Neg. LLF: 106.81325629742157
Optimization terminated successfully (Exit mode 0)
Current function value: 106.81325632914123
Iterations: 14
Function evaluations: 160
Gradient evaluations: 14
Iteration: 1, Func. Count: 13, Neg. LLF: 57522769.751401804
Iteration: 2, Func. Count: 27, Neg. LLF: 318.1179992921245
Iteration: 3, Func. Count: 40, Neg. LLF: 6166719.527787659
Iteration: 4, Func. Count: 53, Neg. LLF: 132.64849612813325
Iteration: 5, Func. Count: 66, Neg. LLF: 119.54422258369866
Iteration: 6, Func. Count: 79, Neg. LLF: 105.93117983951696
Iteration: 7, Func. Count: 91, Neg. LLF: 105.81874158729337
Iteration: 8, Func. Count: 103, Neg. LLF: 105.84388827351127
Iteration: 9, Func. Count: 116, Neg. LLF: 105.81773487171643
Iteration: 10, Func. Count: 129, Neg. LLF: 105.80504838849443
Iteration: 11, Func. Count: 141, Neg. LLF: 105.79949075362791
Iteration: 12, Func. Count: 153, Neg. LLF: 105.79885241182699
Iteration: 13, Func. Count: 165, Neg. LLF: 105.79863255182819
Iteration: 14, Func. Count: 177, Neg. LLF: 105.79862352315025
Iteration: 15, Func. Count: 189, Neg. LLF: 105.79862215439147
Iteration: 16, Func. Count: 200, Neg. LLF: 105.79862210916166
Optimization terminated successfully (Exit mode 0)
Current function value: 105.79862215439147
Iterations: 16
Function evaluations: 200
Gradient evaluations: 16
Iteration: 1, Func. Count: 14, Neg. LLF: 62463760.00244946
Iteration: 2, Func. Count: 29, Neg. LLF: 208.85373031771283
Iteration: 3, Func. Count: 43, Neg. LLF: 121.02108365968405
Iteration: 4, Func. Count: 57, Neg. LLF: 126.28281763462162
Iteration: 5, Func. Count: 71, Neg. LLF: 116.81262769430349
Iteration: 6, Func. Count: 85, Neg. LLF: 107.6536835431536
Iteration: 7, Func. Count: 99, Neg. LLF: 107.54687364788754
Iteration: 8, Func. Count: 113, Neg. LLF: 106.24088412688681
Iteration: 9, Func. Count: 127, Neg. LLF: 105.32573248450986
Iteration: 10, Func. Count: 140, Neg. LLF: 105.28380736145697
Iteration: 11, Func. Count: 153, Neg. LLF: 105.2778611468548
Iteration: 12, Func. Count: 166, Neg. LLF: 105.27371001165825
Iteration: 13, Func. Count: 179, Neg. LLF: 105.27220660454515
Iteration: 14, Func. Count: 192, Neg. LLF: 105.2713752342108
Iteration: 15, Func. Count: 205, Neg. LLF: 105.27109520380645
Iteration: 16, Func. Count: 218, Neg. LLF: 105.27104313393104
Iteration: 17, Func. Count: 231, Neg. LLF: 105.2710391128468
Iteration: 18, Func. Count: 243, Neg. LLF: 105.27103908123698
Optimization terminated successfully (Exit mode 0)
Current function value: 105.2710391128468
Iterations: 18
Function evaluations: 243
Gradient evaluations: 18
Iteration: 1, Func. Count: 15, Neg. LLF: 63685168.69377251
Iteration: 2, Func. Count: 31, Neg. LLF: 1134.1432382017917
Iteration: 3, Func. Count: 46, Neg. LLF: 316.920076596113
Iteration: 4, Func. Count: 62, Neg. LLF: 118.03427510999978
Iteration: 5, Func. Count: 77, Neg. LLF: 107.77024129807607
Iteration: 6, Func. Count: 92, Neg. LLF: 107.6876198529255
Iteration: 7, Func. Count: 107, Neg. LLF: 105.26261815606834
Iteration: 8, Func. Count: 121, Neg. LLF: 107.42478208428291
Iteration: 9, Func. Count: 136, Neg. LLF: 105.08758314583145
Iteration: 10, Func. Count: 150, Neg. LLF: 105.03498707532808
Iteration: 11, Func. Count: 164, Neg. LLF: 105.01984999597634
Iteration: 12, Func. Count: 178, Neg. LLF: 104.87850342653002
Iteration: 13, Func. Count: 192, Neg. LLF: 104.66402024385435
Iteration: 14, Func. Count: 206, Neg. LLF: 104.6595187526744
Iteration: 15, Func. Count: 220, Neg. LLF: 104.65687390555595
Iteration: 16, Func. Count: 234, Neg. LLF: 104.65516391906398
Iteration: 17, Func. Count: 248, Neg. LLF: 104.65465512343121
Iteration: 18, Func. Count: 262, Neg. LLF: 104.65456576176229
Iteration: 19, Func. Count: 276, Neg. LLF: 104.6545533184757
Iteration: 20, Func. Count: 290, Neg. LLF: 104.65455098053172
Iteration: 21, Func. Count: 304, Neg. LLF: 104.65454947483873
Iteration: 22, Func. Count: 318, Neg. LLF: 104.65454818779207
Iteration: 23, Func. Count: 332, Neg. LLF: 104.65456429056573
Optimization terminated successfully (Exit mode 0)
Current function value: 104.6545482096707
Iterations: 24
Function evaluations: 334
Gradient evaluations: 23
Iteration: 1, Func. Count: 8, Neg. LLF: 115.87706066454231
Iteration: 2, Func. Count: 17, Neg. LLF: 125.79760413762097
Iteration: 3, Func. Count: 25, Neg. LLF: 124.97060391863091
Iteration: 4, Func. Count: 33, Neg. LLF: 178.54709659350084
Iteration: 5, Func. Count: 41, Neg. LLF: 107.47637073367369
Iteration: 6, Func. Count: 48, Neg. LLF: 107.46771230807282
Iteration: 7, Func. Count: 55, Neg. LLF: 107.46343744256875
Iteration: 8, Func. Count: 62, Neg. LLF: 107.46309632861458
Iteration: 9, Func. Count: 69, Neg. LLF: 107.46306484072804
Iteration: 10, Func. Count: 75, Neg. LLF: 107.46306498722538
Optimization terminated successfully (Exit mode 0)
Current function value: 107.46306484072804
Iterations: 10
Function evaluations: 75
Gradient evaluations: 10
Iteration: 1, Func. Count: 9, Neg. LLF: 113.77420172198326
Iteration: 2, Func. Count: 18, Neg. LLF: 111.14119909987842
Iteration: 3, Func. Count: 27, Neg. LLF: 767.606467532621
Iteration: 4, Func. Count: 36, Neg. LLF: 130.85266532895545
Iteration: 5, Func. Count: 45, Neg. LLF: 107.48675792546575
Iteration: 6, Func. Count: 53, Neg. LLF: 107.46789954792689
Iteration: 7, Func. Count: 61, Neg. LLF: 107.46468707925713
Iteration: 8, Func. Count: 69, Neg. LLF: 107.46332329864816
Iteration: 9, Func. Count: 77, Neg. LLF: 107.46313816887415
Iteration: 10, Func. Count: 85, Neg. LLF: 107.46306966123856
Iteration: 11, Func. Count: 93, Neg. LLF: 107.46306457919118
Iteration: 12, Func. Count: 100, Neg. LLF: 107.46306463591111
Optimization terminated successfully (Exit mode 0)
Current function value: 107.46306457919118
Iterations: 12
Function evaluations: 100
Gradient evaluations: 12
Iteration: 1, Func. Count: 10, Neg. LLF: 113.71811453288551
Iteration: 2, Func. Count: 20, Neg. LLF: 108.57607414330074
Iteration: 3, Func. Count: 29, Neg. LLF: 519.6251996548375
Iteration: 4, Func. Count: 39, Neg. LLF: 117.30790354194617
Iteration: 5, Func. Count: 50, Neg. LLF: 141.30683496320782
Iteration: 6, Func. Count: 60, Neg. LLF: 107.72112396008566
Iteration: 7, Func. Count: 70, Neg. LLF: 107.53596116760912
Iteration: 8, Func. Count: 79, Neg. LLF: 107.46944622730172
Iteration: 9, Func. Count: 88, Neg. LLF: 107.46446854828011
Iteration: 10, Func. Count: 97, Neg. LLF: 107.46312698656682
Iteration: 11, Func. Count: 106, Neg. LLF: 107.46306618696748
Iteration: 12, Func. Count: 115, Neg. LLF: 107.46306472418354
Iteration: 13, Func. Count: 123, Neg. LLF: 107.46306473621146
Optimization terminated successfully (Exit mode 0)
Current function value: 107.46306472418354
Iterations: 13
Function evaluations: 123
Gradient evaluations: 13
Iteration: 1, Func. Count: 11, Neg. LLF: 113.77312915567951
Iteration: 2, Func. Count: 22, Neg. LLF: 109.55973917937345
Iteration: 3, Func. Count: 33, Neg. LLF: 115.304365401453
Iteration: 4, Func. Count: 44, Neg. LLF: 113.07541257227373
Iteration: 5, Func. Count: 55, Neg. LLF: 111.8802180240383
Iteration: 6, Func. Count: 66, Neg. LLF: 107.49422856657274
Iteration: 7, Func. Count: 76, Neg. LLF: 107.46636151604493
Iteration: 8, Func. Count: 86, Neg. LLF: 107.4640296587536
Iteration: 9, Func. Count: 96, Neg. LLF: 107.4630743040416
Iteration: 10, Func. Count: 106, Neg. LLF: 107.46306455415095
Iteration: 11, Func. Count: 115, Neg. LLF: 107.4630645814761
Optimization terminated successfully (Exit mode 0)
Current function value: 107.46306455415095
Iterations: 11
Function evaluations: 115
Gradient evaluations: 11
Iteration: 1, Func. Count: 12, Neg. LLF: 113.87815666984068
Iteration: 2, Func. Count: 24, Neg. LLF: 109.89653270171128
Iteration: 3, Func. Count: 36, Neg. LLF: 117.92491991613356
Iteration: 4, Func. Count: 48, Neg. LLF: 118.80920727253378
Iteration: 5, Func. Count: 60, Neg. LLF: 116.22812570760516
Iteration: 6, Func. Count: 72, Neg. LLF: 107.52875763963057
Iteration: 7, Func. Count: 83, Neg. LLF: 109.82590475571374
Iteration: 8, Func. Count: 95, Neg. LLF: 107.46952212782735
Iteration: 9, Func. Count: 106, Neg. LLF: 107.46341899782858
Iteration: 10, Func. Count: 117, Neg. LLF: 107.46306801102348
Iteration: 11, Func. Count: 128, Neg. LLF: 107.46306422010599
Iteration: 12, Func. Count: 138, Neg. LLF: 107.46306423521503
Optimization terminated successfully (Exit mode 0)
Current function value: 107.46306422010599
Iterations: 12
Function evaluations: 138
Gradient evaluations: 12
Iteration: 1, Func. Count: 9, Neg. LLF: 122.21028716767961
Iteration: 2, Func. Count: 19, Neg. LLF: 120.01257038260275
Iteration: 3, Func. Count: 28, Neg. LLF: 113.42361149501724
Iteration: 4, Func. Count: 37, Neg. LLF: 112.48172336987724
Iteration: 5, Func. Count: 46, Neg. LLF: 106.33344840015573
Iteration: 6, Func. Count: 54, Neg. LLF: 152.4946465021754
Iteration: 7, Func. Count: 64, Neg. LLF: 110.59123222166025
Iteration: 8, Func. Count: 74, Neg. LLF: 106.03001673777088
Iteration: 9, Func. Count: 82, Neg. LLF: 106.02607698004536
Iteration: 10, Func. Count: 90, Neg. LLF: 106.02559587691798
Iteration: 11, Func. Count: 98, Neg. LLF: 106.02544859055844
Iteration: 12, Func. Count: 106, Neg. LLF: 106.02544420438247
Iteration: 13, Func. Count: 113, Neg. LLF: 106.02544420439818
Optimization terminated successfully (Exit mode 0)
Current function value: 106.02544420438247
Iterations: 13
Function evaluations: 113
Gradient evaluations: 13
Iteration: 1, Func. Count: 10, Neg. LLF: 69528905.20791231
Iteration: 2, Func. Count: 21, Neg. LLF: 419.54183013036703
Iteration: 3, Func. Count: 32, Neg. LLF: 166.5734143522335
Iteration: 4, Func. Count: 42, Neg. LLF: 107.29793603092148
Iteration: 5, Func. Count: 51, Neg. LLF: 107.29015314917513
Iteration: 6, Func. Count: 60, Neg. LLF: 107.2879798035022
Iteration: 7, Func. Count: 69, Neg. LLF: 107.28756654755017
Iteration: 8, Func. Count: 78, Neg. LLF: 107.28756516478688
Iteration: 9, Func. Count: 86, Neg. LLF: 107.28756507633265
Optimization terminated successfully (Exit mode 0)
Current function value: 107.28756516478688
Iterations: 9
Function evaluations: 86
Gradient evaluations: 9
Iteration: 1, Func. Count: 11, Neg. LLF: 80312602.87945364
Iteration: 2, Func. Count: 23, Neg. LLF: 236.2547317761171
Iteration: 3, Func. Count: 35, Neg. LLF: 152.9063385353503
Iteration: 4, Func. Count: 46, Neg. LLF: 111.83055309576064
Iteration: 5, Func. Count: 58, Neg. LLF: 106.8637233033189
Iteration: 6, Func. Count: 68, Neg. LLF: 106.71352720323489
Iteration: 7, Func. Count: 78, Neg. LLF: 106.63314134845294
Iteration: 8, Func. Count: 88, Neg. LLF: 106.62952107727855
Iteration: 9, Func. Count: 98, Neg. LLF: 106.62867093996152
Iteration: 10, Func. Count: 108, Neg. LLF: 106.62850354357083
Iteration: 11, Func. Count: 118, Neg. LLF: 106.62844461485615
Iteration: 12, Func. Count: 128, Neg. LLF: 106.62841859439656
Iteration: 13, Func. Count: 138, Neg. LLF: 106.62841625303857
Iteration: 14, Func. Count: 147, Neg. LLF: 106.62841623112642
Optimization terminated successfully (Exit mode 0)
Current function value: 106.62841625303857
Iterations: 14
Function evaluations: 147
Gradient evaluations: 14
Iteration: 1, Func. Count: 12, Neg. LLF: 82982013.89037752
Iteration: 2, Func. Count: 25, Neg. LLF: 147.2249930071866
Iteration: 3, Func. Count: 37, Neg. LLF: 292.672614228141
Iteration: 4, Func. Count: 50, Neg. LLF: 106.69428528534888
Iteration: 5, Func. Count: 61, Neg. LLF: 105.89094991036262
Iteration: 6, Func. Count: 72, Neg. LLF: 105.8623745915929
Iteration: 7, Func. Count: 84, Neg. LLF: 105.79371053999444
Iteration: 8, Func. Count: 95, Neg. LLF: 105.78053117385933
Iteration: 9, Func. Count: 106, Neg. LLF: 105.77454605548635
Iteration: 10, Func. Count: 117, Neg. LLF: 105.77278521439561
Iteration: 11, Func. Count: 128, Neg. LLF: 105.77271163507696
Iteration: 12, Func. Count: 139, Neg. LLF: 105.77270879980244
Iteration: 13, Func. Count: 149, Neg. LLF: 105.77270874516392
Optimization terminated successfully (Exit mode 0)
Current function value: 105.77270879980244
Iterations: 13
Function evaluations: 149
Gradient evaluations: 13
Iteration: 1, Func. Count: 13, Neg. LLF: 79328297.38513243
Iteration: 2, Func. Count: 27, Neg. LLF: 109.78105430585792
Iteration: 3, Func. Count: 40, Neg. LLF: 186.68688703758994
Iteration: 4, Func. Count: 54, Neg. LLF: 111.83692163201152
Iteration: 5, Func. Count: 67, Neg. LLF: 106.40891356090103
Iteration: 6, Func. Count: 79, Neg. LLF: 110.62546057741955
Iteration: 7, Func. Count: 92, Neg. LLF: 117.75524145418774
Iteration: 8, Func. Count: 105, Neg. LLF: 105.7950272526891
Iteration: 9, Func. Count: 117, Neg. LLF: 105.78571480036729
Iteration: 10, Func. Count: 129, Neg. LLF: 105.77322613339469
Iteration: 11, Func. Count: 141, Neg. LLF: 105.77284621401051
Iteration: 12, Func. Count: 153, Neg. LLF: 105.772732550329
Iteration: 13, Func. Count: 165, Neg. LLF: 105.77271355259772
Iteration: 14, Func. Count: 177, Neg. LLF: 105.77270859437408
Iteration: 15, Func. Count: 188, Neg. LLF: 105.77270857197959
Optimization terminated successfully (Exit mode 0)
Current function value: 105.77270859437408
Iterations: 15
Function evaluations: 188
Gradient evaluations: 15
Iteration: 1, Func. Count: 10, Neg. LLF: 120.21331335384333
Iteration: 2, Func. Count: 21, Neg. LLF: 112.20649798682199
Iteration: 3, Func. Count: 32, Neg. LLF: 123.42494906237914
Iteration: 4, Func. Count: 42, Neg. LLF: 164.89791816510336
Iteration: 5, Func. Count: 52, Neg. LLF: 110.39419594665456
Iteration: 6, Func. Count: 62, Neg. LLF: 106.3960795266893
Iteration: 7, Func. Count: 71, Neg. LLF: 116.36843787537575
Iteration: 8, Func. Count: 82, Neg. LLF: 111.13075982599729
Iteration: 9, Func. Count: 93, Neg. LLF: 106.03025505415843
Iteration: 10, Func. Count: 102, Neg. LLF: 106.02777335091456
Iteration: 11, Func. Count: 111, Neg. LLF: 106.02584742258266
Iteration: 12, Func. Count: 120, Neg. LLF: 106.02560892963312
Iteration: 13, Func. Count: 129, Neg. LLF: 106.02544707490048
Iteration: 14, Func. Count: 138, Neg. LLF: 106.0254447367188
Iteration: 15, Func. Count: 147, Neg. LLF: 106.02544398041773
Optimization terminated successfully (Exit mode 0)
Current function value: 106.02544398041773
Iterations: 15
Function evaluations: 147
Gradient evaluations: 15
Iteration: 1, Func. Count: 11, Neg. LLF: 41443200.80817828
Iteration: 2, Func. Count: 23, Neg. LLF: 225.5516904761884
Iteration: 3, Func. Count: 35, Neg. LLF: 137.8355749897933
Iteration: 4, Func. Count: 47, Neg. LLF: 107.30368313344867
Iteration: 5, Func. Count: 57, Neg. LLF: 107.28800331802813
Iteration: 6, Func. Count: 67, Neg. LLF: 107.28757109394274
Iteration: 7, Func. Count: 77, Neg. LLF: 107.287566799627
Iteration: 8, Func. Count: 87, Neg. LLF: 107.28756520127132
Iteration: 9, Func. Count: 96, Neg. LLF: 107.2875651127714
Optimization terminated successfully (Exit mode 0)
Current function value: 107.28756520127132
Iterations: 9
Function evaluations: 96
Gradient evaluations: 9
Iteration: 1, Func. Count: 12, Neg. LLF: 62935563.02310471
Iteration: 2, Func. Count: 25, Neg. LLF: 377.6020130732048
Iteration: 3, Func. Count: 38, Neg. LLF: 396.63540648426624
Iteration: 4, Func. Count: 50, Neg. LLF: 107.44922346016844
Iteration: 5, Func. Count: 62, Neg. LLF: 106.66428258068804
Iteration: 6, Func. Count: 73, Neg. LLF: 106.6340611650508
Iteration: 7, Func. Count: 84, Neg. LLF: 106.62979828401023
Iteration: 8, Func. Count: 95, Neg. LLF: 106.6285501932631
Iteration: 9, Func. Count: 106, Neg. LLF: 106.62852332456471
Iteration: 10, Func. Count: 117, Neg. LLF: 106.62843971095026
Iteration: 11, Func. Count: 128, Neg. LLF: 106.62841978445144
Iteration: 12, Func. Count: 139, Neg. LLF: 106.62841626141142
Iteration: 13, Func. Count: 149, Neg. LLF: 106.62841623936599
Optimization terminated successfully (Exit mode 0)
Current function value: 106.62841626141142
Iterations: 13
Function evaluations: 149
Gradient evaluations: 13
Iteration: 1, Func. Count: 13, Neg. LLF: 66993325.861672476
Iteration: 2, Func. Count: 27, Neg. LLF: 261.62656061530186
Iteration: 3, Func. Count: 40, Neg. LLF: 7244603.942284812
Iteration: 4, Func. Count: 53, Neg. LLF: 107.01202206689548
Iteration: 5, Func. Count: 65, Neg. LLF: 106.42605543207496
Iteration: 6, Func. Count: 77, Neg. LLF: 107.94050063162119
Iteration: 7, Func. Count: 90, Neg. LLF: 106.09610614300843
Iteration: 8, Func. Count: 103, Neg. LLF: 105.81853846081513
Iteration: 9, Func. Count: 116, Neg. LLF: 105.7772161305364
Iteration: 10, Func. Count: 128, Neg. LLF: 105.77430087844526
Iteration: 11, Func. Count: 140, Neg. LLF: 105.77355145478117
Iteration: 12, Func. Count: 152, Neg. LLF: 105.77275180570432
Iteration: 13, Func. Count: 164, Neg. LLF: 105.77271200645211
Iteration: 14, Func. Count: 176, Neg. LLF: 105.77270886202429
Iteration: 15, Func. Count: 187, Neg. LLF: 105.77270880748851
Optimization terminated successfully (Exit mode 0)
Current function value: 105.77270886202429
Iterations: 15
Function evaluations: 187
Gradient evaluations: 15
Iteration: 1, Func. Count: 14, Neg. LLF: 65336272.64391362
Iteration: 2, Func. Count: 29, Neg. LLF: 162.75200701188047
Iteration: 3, Func. Count: 43, Neg. LLF: 141.14452246847335
Iteration: 4, Func. Count: 57, Neg. LLF: 112.89036966414109
Iteration: 5, Func. Count: 71, Neg. LLF: 107.38845630832989
Iteration: 6, Func. Count: 85, Neg. LLF: 106.01756037404483
Iteration: 7, Func. Count: 98, Neg. LLF: 106.18358855456476
Iteration: 8, Func. Count: 112, Neg. LLF: 105.99563601336398
Iteration: 9, Func. Count: 126, Neg. LLF: 106.29671817314346
Iteration: 10, Func. Count: 140, Neg. LLF: 105.84336174259634
Iteration: 11, Func. Count: 154, Neg. LLF: 105.81280137131722
Iteration: 12, Func. Count: 167, Neg. LLF: 105.80241894569889
Iteration: 13, Func. Count: 180, Neg. LLF: 105.80003967297365
Iteration: 14, Func. Count: 193, Neg. LLF: 105.7991524869392
Iteration: 15, Func. Count: 206, Neg. LLF: 105.79830317954983
Iteration: 16, Func. Count: 219, Neg. LLF: 105.79803489349688
Iteration: 17, Func. Count: 232, Neg. LLF: 105.79775310397623
Iteration: 18, Func. Count: 245, Neg. LLF: 105.79759459581403
Iteration: 19, Func. Count: 258, Neg. LLF: 105.79754443189675
Iteration: 20, Func. Count: 271, Neg. LLF: 105.79753886543581
Iteration: 21, Func. Count: 283, Neg. LLF: 105.7975388607572
Optimization terminated successfully (Exit mode 0)
Current function value: 105.79753886543581
Iterations: 21
Function evaluations: 283
Gradient evaluations: 21
Iteration: 1, Func. Count: 11, Neg. LLF: 114.72522403727798
Iteration: 2, Func. Count: 23, Neg. LLF: 115.44731478928773
Iteration: 3, Func. Count: 35, Neg. LLF: 118.9644646518849
Iteration: 4, Func. Count: 46, Neg. LLF: 111.62211729835707
Iteration: 5, Func. Count: 57, Neg. LLF: 229.21554788535485
Iteration: 6, Func. Count: 68, Neg. LLF: 107.05257784216597
Iteration: 7, Func. Count: 79, Neg. LLF: 106.01915618655215
Iteration: 8, Func. Count: 89, Neg. LLF: 116.47485732683619
Iteration: 9, Func. Count: 101, Neg. LLF: 105.99870947873912
Iteration: 10, Func. Count: 111, Neg. LLF: 105.99603760323741
Iteration: 11, Func. Count: 121, Neg. LLF: 105.99584083896444
Iteration: 12, Func. Count: 131, Neg. LLF: 105.99582529782288
Iteration: 13, Func. Count: 141, Neg. LLF: 105.99582332406948
Iteration: 14, Func. Count: 150, Neg. LLF: 105.99582332404427
Optimization terminated successfully (Exit mode 0)
Current function value: 105.99582332406948
Iterations: 14
Function evaluations: 150
Gradient evaluations: 14
Iteration: 1, Func. Count: 12, Neg. LLF: 38205484.89895836
Iteration: 2, Func. Count: 25, Neg. LLF: 216.20117078427418
Iteration: 3, Func. Count: 37, Neg. LLF: 214.94791190149982
Iteration: 4, Func. Count: 49, Neg. LLF: 114.68944715546668
Iteration: 5, Func. Count: 61, Neg. LLF: 107.00768934323452
Iteration: 6, Func. Count: 72, Neg. LLF: 106.85612527235122
Iteration: 7, Func. Count: 83, Neg. LLF: 106.85118785759707
Iteration: 8, Func. Count: 94, Neg. LLF: 106.84703393328272
Iteration: 9, Func. Count: 105, Neg. LLF: 106.84579157239642
Iteration: 10, Func. Count: 116, Neg. LLF: 106.84568871346082
Iteration: 11, Func. Count: 127, Neg. LLF: 106.84568774437379
Optimization terminated successfully (Exit mode 0)
Current function value: 106.84568774437379
Iterations: 11
Function evaluations: 127
Gradient evaluations: 11
Iteration: 1, Func. Count: 13, Neg. LLF: 58214544.319601156
Iteration: 2, Func. Count: 27, Neg. LLF: 319.3390799593034
Iteration: 3, Func. Count: 40, Neg. LLF: 7507217.647485597
Iteration: 4, Func. Count: 53, Neg. LLF: 117.5859222637628
Iteration: 5, Func. Count: 66, Neg. LLF: 110.8349852673314
Iteration: 6, Func. Count: 79, Neg. LLF: 107.237088597177
Iteration: 7, Func. Count: 92, Neg. LLF: 106.8631964061671
Iteration: 8, Func. Count: 104, Neg. LLF: 106.67876037331732
Iteration: 9, Func. Count: 116, Neg. LLF: 106.63340848811941
Iteration: 10, Func. Count: 128, Neg. LLF: 106.62840656081545
Iteration: 11, Func. Count: 140, Neg. LLF: 106.62766262272616
Iteration: 12, Func. Count: 152, Neg. LLF: 106.62728050901778
Iteration: 13, Func. Count: 164, Neg. LLF: 106.62698851666079
Iteration: 14, Func. Count: 176, Neg. LLF: 106.62672417144213
Iteration: 15, Func. Count: 188, Neg. LLF: 106.62656802310904
Iteration: 16, Func. Count: 200, Neg. LLF: 106.62652754210599
Iteration: 17, Func. Count: 212, Neg. LLF: 106.62652358859691
Iteration: 18, Func. Count: 223, Neg. LLF: 106.62652356762351
Optimization terminated successfully (Exit mode 0)
Current function value: 106.62652358859691
Iterations: 18
Function evaluations: 223
Gradient evaluations: 18
Iteration: 1, Func. Count: 14, Neg. LLF: 62475378.98172642
Iteration: 2, Func. Count: 29, Neg. LLF: 202.43403033802727
Iteration: 3, Func. Count: 43, Neg. LLF: 1740803.4525240036
Iteration: 4, Func. Count: 57, Neg. LLF: 147.1994528049705
Iteration: 5, Func. Count: 71, Neg. LLF: 107.17172734124249
Iteration: 6, Func. Count: 85, Neg. LLF: 110.2873808838351
Iteration: 7, Func. Count: 99, Neg. LLF: 107.27774817282885
Iteration: 8, Func. Count: 113, Neg. LLF: 107.51445376895948
Iteration: 9, Func. Count: 127, Neg. LLF: 106.76586061818355
Iteration: 10, Func. Count: 141, Neg. LLF: 106.1346532972133
Iteration: 11, Func. Count: 155, Neg. LLF: 105.62000494124771
Iteration: 12, Func. Count: 168, Neg. LLF: 105.64479140467542
Iteration: 13, Func. Count: 182, Neg. LLF: 105.63321620818913
Iteration: 14, Func. Count: 196, Neg. LLF: 105.49239820260698
Iteration: 15, Func. Count: 209, Neg. LLF: 105.49069553383066
Iteration: 16, Func. Count: 223, Neg. LLF: 105.48529861138893
Iteration: 17, Func. Count: 236, Neg. LLF: 105.48349796256667
Iteration: 18, Func. Count: 249, Neg. LLF: 105.48316335016291
Iteration: 19, Func. Count: 262, Neg. LLF: 105.48302264784965
Iteration: 20, Func. Count: 275, Neg. LLF: 105.48302068040458
Iteration: 21, Func. Count: 287, Neg. LLF: 105.48302065006574
Optimization terminated successfully (Exit mode 0)
Current function value: 105.48302068040458
Iterations: 21
Function evaluations: 287
Gradient evaluations: 21
Iteration: 1, Func. Count: 15, Neg. LLF: 62524085.95517158
Iteration: 2, Func. Count: 31, Neg. LLF: 325.17586433088957
Iteration: 3, Func. Count: 46, Neg. LLF: 334.85827535943736
Iteration: 4, Func. Count: 62, Neg. LLF: 133.80890437894487
Iteration: 5, Func. Count: 77, Neg. LLF: 120.91373259226135
Iteration: 6, Func. Count: 92, Neg. LLF: 107.217979502128
Iteration: 7, Func. Count: 107, Neg. LLF: 107.04683542746629
Iteration: 8, Func. Count: 122, Neg. LLF: 106.86569439037704
Iteration: 9, Func. Count: 137, Neg. LLF: 106.56007119562896
Iteration: 10, Func. Count: 152, Neg. LLF: 106.35545806217955
Iteration: 11, Func. Count: 167, Neg. LLF: 105.57632573695832
Iteration: 12, Func. Count: 181, Neg. LLF: 105.50600509354422
Iteration: 13, Func. Count: 195, Neg. LLF: 105.49263134738652
Iteration: 14, Func. Count: 209, Neg. LLF: 105.48505601846466
Iteration: 15, Func. Count: 223, Neg. LLF: 105.48321552667181
Iteration: 16, Func. Count: 237, Neg. LLF: 105.48302240428731
Iteration: 17, Func. Count: 251, Neg. LLF: 105.48302058516549
Iteration: 18, Func. Count: 264, Neg. LLF: 105.48302055711068
Optimization terminated successfully (Exit mode 0)
Current function value: 105.48302058516549
Iterations: 18
Function evaluations: 264
Gradient evaluations: 18
Iteration: 1, Func. Count: 12, Neg. LLF: 113.29689846848657
Iteration: 2, Func. Count: 25, Neg. LLF: 112.60162412504232
Iteration: 3, Func. Count: 38, Neg. LLF: 112.13777815305116
Iteration: 4, Func. Count: 50, Neg. LLF: 125.39863066879907
Iteration: 5, Func. Count: 62, Neg. LLF: 47008.32136592807
Iteration: 6, Func. Count: 74, Neg. LLF: 106.46720192757346
Iteration: 7, Func. Count: 85, Neg. LLF: 106.28835681231803
Iteration: 8, Func. Count: 97, Neg. LLF: 106.0948956849521
Iteration: 9, Func. Count: 108, Neg. LLF: 106.04301274712707
Iteration: 10, Func. Count: 119, Neg. LLF: 106.03230011781613
Iteration: 11, Func. Count: 131, Neg. LLF: 106.00384644284661
Iteration: 12, Func. Count: 142, Neg. LLF: 105.99225485009983
Iteration: 13, Func. Count: 153, Neg. LLF: 105.9907612815609
Iteration: 14, Func. Count: 164, Neg. LLF: 105.9900299836719
Iteration: 15, Func. Count: 175, Neg. LLF: 105.9900081865748
Iteration: 16, Func. Count: 186, Neg. LLF: 105.99000197598505
Iteration: 17, Func. Count: 197, Neg. LLF: 105.99000096712369
Iteration: 18, Func. Count: 207, Neg. LLF: 105.9900009671181
Optimization terminated successfully (Exit mode 0)
Current function value: 105.99000096712369
Iterations: 18
Function evaluations: 207
Gradient evaluations: 18
Iteration: 1, Func. Count: 13, Neg. LLF: 36497990.241339326
Iteration: 2, Func. Count: 26, Neg. LLF: 122.93567883520211
Iteration: 3, Func. Count: 40, Neg. LLF: 166.68652177796923
Iteration: 4, Func. Count: 53, Neg. LLF: 106.99840671936204
Iteration: 5, Func. Count: 65, Neg. LLF: 112.02786276501013
Iteration: 6, Func. Count: 78, Neg. LLF: 108.22214296988919
Iteration: 7, Func. Count: 91, Neg. LLF: 106.83999896104307
Iteration: 8, Func. Count: 103, Neg. LLF: 106.81473838219398
Iteration: 9, Func. Count: 115, Neg. LLF: 106.81405643568026
Iteration: 10, Func. Count: 127, Neg. LLF: 106.81351515748372
Iteration: 11, Func. Count: 139, Neg. LLF: 106.81327854214942
Iteration: 12, Func. Count: 151, Neg. LLF: 106.81325701492231
Iteration: 13, Func. Count: 163, Neg. LLF: 106.81325632635055
Optimization terminated successfully (Exit mode 0)
Current function value: 106.81325632635055
Iterations: 13
Function evaluations: 163
Gradient evaluations: 13
Iteration: 1, Func. Count: 14, Neg. LLF: 57380730.537970595
Iteration: 2, Func. Count: 29, Neg. LLF: 316.1165989921313
Iteration: 3, Func. Count: 43, Neg. LLF: 6229592.402356242
Iteration: 4, Func. Count: 57, Neg. LLF: 130.29775495308513
Iteration: 5, Func. Count: 71, Neg. LLF: 119.83022215738085
Iteration: 6, Func. Count: 85, Neg. LLF: 105.91691090263281
Iteration: 7, Func. Count: 98, Neg. LLF: 105.81874577625342
Iteration: 8, Func. Count: 111, Neg. LLF: 105.84734961335657
Iteration: 9, Func. Count: 125, Neg. LLF: 105.81434165976395
Iteration: 10, Func. Count: 138, Neg. LLF: 105.80496815537015
Iteration: 11, Func. Count: 151, Neg. LLF: 105.80192092111403
Iteration: 12, Func. Count: 164, Neg. LLF: 105.79919851434909
Iteration: 13, Func. Count: 177, Neg. LLF: 105.79869636520705
Iteration: 14, Func. Count: 190, Neg. LLF: 105.7986275824171
Iteration: 15, Func. Count: 203, Neg. LLF: 105.79862295342204
Iteration: 16, Func. Count: 216, Neg. LLF: 105.79862210718737
Optimization terminated successfully (Exit mode 0)
Current function value: 105.79862210718737
Iterations: 16
Function evaluations: 216
Gradient evaluations: 16
Iteration: 1, Func. Count: 15, Neg. LLF: 62266379.04555804
Iteration: 2, Func. Count: 31, Neg. LLF: 208.59252845530835
Iteration: 3, Func. Count: 46, Neg. LLF: 120.47844478362039
Iteration: 4, Func. Count: 61, Neg. LLF: 127.73717176524812
Iteration: 5, Func. Count: 76, Neg. LLF: 117.90223715119494
Iteration: 6, Func. Count: 91, Neg. LLF: 107.59755456488072
Iteration: 7, Func. Count: 106, Neg. LLF: 107.54514240093036
Iteration: 8, Func. Count: 121, Neg. LLF: 106.17952573349763
Iteration: 9, Func. Count: 136, Neg. LLF: 105.32230256565029
Iteration: 10, Func. Count: 150, Neg. LLF: 105.28398210102564
Iteration: 11, Func. Count: 164, Neg. LLF: 105.27826538475713
Iteration: 12, Func. Count: 178, Neg. LLF: 105.27369081161501
Iteration: 13, Func. Count: 192, Neg. LLF: 105.2722892582199
Iteration: 14, Func. Count: 206, Neg. LLF: 105.27138156593054
Iteration: 15, Func. Count: 220, Neg. LLF: 105.271102339316
Iteration: 16, Func. Count: 234, Neg. LLF: 105.27104392926978
Iteration: 17, Func. Count: 248, Neg. LLF: 105.271039148739
Iteration: 18, Func. Count: 261, Neg. LLF: 105.2710391171324
Optimization terminated successfully (Exit mode 0)
Current function value: 105.271039148739
Iterations: 18
Function evaluations: 261
Gradient evaluations: 18
Iteration: 1, Func. Count: 16, Neg. LLF: 63408752.41479976
Iteration: 2, Func. Count: 33, Neg. LLF: 1217.0001172608593
Iteration: 3, Func. Count: 49, Neg. LLF: 312.2440312631913
Iteration: 4, Func. Count: 66, Neg. LLF: 117.92589334451135
Iteration: 5, Func. Count: 82, Neg. LLF: 107.40136041571182
Iteration: 6, Func. Count: 98, Neg. LLF: 107.85375872856318
Iteration: 7, Func. Count: 114, Neg. LLF: 105.26470679439628
Iteration: 8, Func. Count: 129, Neg. LLF: 109.5128056064958
Iteration: 9, Func. Count: 145, Neg. LLF: 105.32889181604897
Iteration: 10, Func. Count: 161, Neg. LLF: 105.04346336664406
Iteration: 11, Func. Count: 176, Neg. LLF: 105.01901811874451
Iteration: 12, Func. Count: 191, Neg. LLF: 104.81766287737995
Iteration: 13, Func. Count: 206, Neg. LLF: 104.66510729338921
Iteration: 14, Func. Count: 221, Neg. LLF: 104.65920070682105
Iteration: 15, Func. Count: 236, Neg. LLF: 104.6562250992125
Iteration: 16, Func. Count: 251, Neg. LLF: 104.65509910022774
Iteration: 17, Func. Count: 266, Neg. LLF: 104.65461709859021
Iteration: 18, Func. Count: 281, Neg. LLF: 104.65457545215679
Iteration: 19, Func. Count: 296, Neg. LLF: 104.65455458767887
Iteration: 20, Func. Count: 311, Neg. LLF: 104.65454994204572
Iteration: 21, Func. Count: 325, Neg. LLF: 104.65454986835857
Optimization terminated successfully (Exit mode 0)
Current function value: 104.65454994204572
Iterations: 21
Function evaluations: 325
Gradient evaluations: 21
Iteration: 1, Func. Count: 6, Neg. LLF: 77494738.76103024
Iteration: 2, Func. Count: 13, Neg. LLF: 378.26118487642054
Iteration: 3, Func. Count: 20, Neg. LLF: 168.54725738587936
Iteration: 4, Func. Count: 26, Neg. LLF: 107.30159208439721
Iteration: 5, Func. Count: 31, Neg. LLF: 107.29200829069254
Iteration: 6, Func. Count: 36, Neg. LLF: 107.2878121064919
Iteration: 7, Func. Count: 41, Neg. LLF: 107.2875700639446
Iteration: 8, Func. Count: 46, Neg. LLF: 107.28756516999661
Iteration: 9, Func. Count: 50, Neg. LLF: 107.28756508146681
Optimization terminated successfully (Exit mode 0)
Current function value: 107.28756516999661
Iterations: 9
Function evaluations: 50
Gradient evaluations: 9
stock_df['Predictions'] = stock_df['Predictions'].astype(float)
# Dropping the Nans
pred_df = stock_df['Predictions'].astype(float).shift(1).dropna()
# Plotting for each stock
for stock in stocks:
# Plotting the volatility and comparing the results
fig = go.Figure()
fig.add_trace(go.Scatter(x=pred_df.index,
y=pred_df[stock],
name='Average Prediction',
mode='lines'))
fig.add_trace(go.Scatter(x=pred_df.index,
y=stock_df['Diff'][stock].tail(len(pred_df)),
name='Actual',
mode='lines'))
fig.update_layout(title=f'{pred_ahead} Day Average Volatility Comparison for {stock}',
xaxis_title='Date',
yaxis_title='% Change')
fig.show()
def position_decision(num, thres=2, short=True):
"""
If the forecasted volatility is low, then we buy.
Optional: if it's is high, then we short.
Otherwise, we don't do anything.
"""
if short and (num > thres or num < -thres):
return -1
elif num < thres and num > -thres:
return 1
else:
return 0
trade_df = {}
# Establishing the DF for the volatility predictions
vol_pred = stock_df['Predictions'].astype(float).dropna()
# Scaling the data in the predictions
scaler = StandardScaler()
vol_pred = pd.DataFrame(scaler.fit_transform(vol_pred),
index=vol_pred.index,
columns=vol_pred.columns)
# Getting positions
trade_df['Positions'] = vol_pred.applymap(lambda x: position_decision(x,
thres=.5,
short=True) / len(stocks))
# Preventing lookahead bias
trade_df['Positions'] = trade_df['Positions'].shift(2).dropna()
# Getting the log returns
trade_df['LogReturns'] = stock_df['Close'].loc[trade_df['Positions'].index].apply(np.log).diff().dropna()
display(vol_pred)
display(trade_df['LogReturns'])
display(trade_df['Positions'])
| F | FIT | GE | GPRO | |
|---|---|---|---|---|
| Date | ||||
| 2019-09-23 | -0.759051 | 1.835108 | -0.709983 | -0.417778 |
| 2019-09-24 | -0.759051 | 1.835108 | -0.709983 | -0.417778 |
| 2019-09-25 | -0.759051 | 1.835108 | -0.709983 | -0.417778 |
| 2019-09-26 | -0.759051 | 1.835108 | -0.709983 | -0.417778 |
| 2019-09-27 | -0.759051 | 1.835108 | -0.709983 | -0.417778 |
| ... | ... | ... | ... | ... |
| 2020-09-11 | -0.659067 | -0.562161 | -0.509363 | -0.232592 |
| 2020-09-14 | -0.659067 | -0.562161 | -0.509363 | -0.232592 |
| 2020-09-15 | -0.659067 | -0.562161 | -0.509363 | -0.232592 |
| 2020-09-16 | -0.659067 | -0.562161 | -0.509363 | -0.232592 |
| 2020-09-17 | -0.659067 | -0.562161 | -0.509363 | -0.232592 |
250 rows × 4 columns
| F | FIT | GE | GPRO | |
|---|---|---|---|---|
| Date | ||||
| 2019-09-26 | -0.006543 | -0.033379 | -0.015402 | 0.012903 |
| 2019-09-27 | -0.006586 | 0.018112 | 0.002215 | 0.071127 |
| 2019-09-30 | 0.008772 | -0.023347 | -0.011124 | 0.031344 |
| 2019-10-01 | -0.028795 | -0.015873 | -0.037611 | 0.018156 |
| 2019-10-02 | -0.033127 | -0.024293 | -0.011682 | -0.028820 |
| ... | ... | ... | ... | ... |
| 2020-09-11 | 0.012941 | 0.001591 | -0.008368 | -0.010610 |
| 2020-09-14 | 0.016998 | 0.012638 | 0.033061 | 0.026317 |
| 2020-09-15 | -0.011300 | 0.001569 | -0.008163 | 0.010336 |
| 2020-09-16 | -0.002845 | 0.009360 | 0.101254 | 0.035357 |
| 2020-09-17 | 0.036368 | -0.001554 | 0.043485 | -0.002485 |
247 rows × 4 columns
| F | FIT | GE | GPRO | |
|---|---|---|---|---|
| Date | ||||
| 2019-09-25 | -0.25 | -0.25 | -0.25 | 0.25 |
| 2019-09-26 | -0.25 | -0.25 | -0.25 | 0.25 |
| 2019-09-27 | -0.25 | -0.25 | -0.25 | 0.25 |
| 2019-09-30 | -0.25 | -0.25 | -0.25 | 0.25 |
| 2019-10-01 | -0.25 | -0.25 | -0.25 | 0.25 |
| ... | ... | ... | ... | ... |
| 2020-09-11 | 0.25 | 0.25 | 0.25 | -0.25 |
| 2020-09-14 | 0.25 | 0.25 | 0.25 | -0.25 |
| 2020-09-15 | -0.25 | -0.25 | -0.25 | 0.25 |
| 2020-09-16 | -0.25 | -0.25 | -0.25 | 0.25 |
| 2020-09-17 | -0.25 | -0.25 | -0.25 | 0.25 |
248 rows × 4 columns
pos = trade_df['Positions'].apply(pd.value_counts)
# Plotting total positions
fig = px.bar(pos,
x=pos.index,
y=pos.columns,
title='Total Positions',
labels={'variable':'Stocks',
'value':'Count of Positions',
'index':'Position'})
fig.show()
# Returns
returns = trade_df['Positions'] * trade_df['LogReturns']
# Calculating the performance as we take the cumulative sum of the returns and transform the values back to normal
performance = returns.cumsum().apply(np.exp)
# Plotting the performance per stock
px.line(performance,
x=performance.index,
y=performance.columns,
title='Returns Using GARCH',
labels={'variable':'Stocks',
'value':'Returns'})
# Returns for the portfolio
returns = (trade_df['Positions'] * trade_df['LogReturns']).sum(axis=1)
# Returns for SPY
spy = yf.download('SPY', start=returns.index[0])
spy = spy['Close'].apply(np.log).diff().dropna().cumsum().apply(np.exp)
# Calculating the performance as we take the cumulative sum of the returns and transform the values back to normal
performance = returns.cumsum().apply(np.exp)
# Plotting the comparison between SPY returns and GARCH returns
fig = go.Figure()
fig.add_trace(go.Scatter(x=spy.index,
y=spy,
name='SPY Returns',
mode='lines'))
fig.add_trace(go.Scatter(x=performance.index,
y=performance.values,
name='GARCH Returns on Portfolio',
mode='lines'))
fig.update_layout(title='SPY vs GARCH Overall Portfolio Returns',
xaxis_title='Date',
yaxis_title='Returns')
fig.show()
[*********************100%***********************] 1 of 1 completed